🐐 GOAT Shell

Current path: var/softaculous/omp/



ā¬†ļø Go up: softaculous

šŸ“„ Viewing: 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: `omp3501`
--


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

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

--
-- 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 {$pressName}. 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 {$pressName}, 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{$pressSignature}'),
(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 {$pressName}', 'In light of your expertise, we have taken the liberty of registering your name in the reviewer database for {$pressName}. 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 {$pressName}', '<p>Dear {$recipientName},</p><p>Thank you for your submission to {$pressName}. 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 {$pressName} as a venue for your work.</p>{$pressSignature}'),
(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 {$pressName}. 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 {$pressName} as a venue for your work.</p><p>Kind regards,</p>{$pressSignature}'),
(8, 'EDITOR_ASSIGN', 'en', 'Editor Assigned', 'You have been assigned as an editor on a submission to {$pressName}', '<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 {$pressName}, 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>{$pressSignature}'),
(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 {$pressName}. 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 {$pressName}?', '<p>Dear {$recipientName},</p><p>We recently cancelled our request for you to review a submission, {$submissionTitle}, for {$pressName}. 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 {$pressName}', '<p>Dear {$recipientName},</p><p>Recently, you declined our request to review a submission, "{$submissionTitle}", for {$pressName}. 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 {$pressName}. 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 {$pressName}. 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{$pressSignature}<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="{$pressUrl}">{$pressName}</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 {$pressName}. 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 {$pressName}. 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 {$pressName}, 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 {$pressName}. 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 {$pressName} 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>{$pressSignature}'),
(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 {$pressName}', '<p>Dear {$recipientName},</p><p>An editor has made changes to your review assignment for {$pressName}. 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 {$pressName}', '<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 {$pressName} 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 {$pressName} 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 {$pressName} 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 {$pressName}. 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 {$pressName}.</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 {$pressName} 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 {$pressName}. 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 {$pressName}, 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 {$pressName} 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 {$pressName} 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="{$pressUrl}">{$pressName}</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{$pressSignature}'),
(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 {$pressName}', 'Please enter your message.'),
(44, 'DISCUSSION_NOTIFICATION_REVIEW', 'en', 'Discussion (Review)', 'A message regarding {$pressName}', 'Please enter your message.'),
(45, 'DISCUSSION_NOTIFICATION_COPYEDITING', 'en', 'Discussion (Copyediting)', 'A message regarding {$pressName}', 'Please enter your message.'),
(46, 'DISCUSSION_NOTIFICATION_PRODUCTION', 'en', 'Discussion (Production)', 'A message regarding {$pressName}', '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 />{$pressName}</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 {$pressName}.</p><p>Kind regards,</p>{$signature}'),
(48, 'EDITOR_ASSIGN_SUBMISSION', 'en', 'Assign Editor', 'You have been assigned as an editor on a submission to {$pressName}', '<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 {$pressName}, 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>{$pressSignature}'),
(49, 'EDITOR_ASSIGN_REVIEW', 'en', 'Assign Editor', 'You have been assigned as an editor on a submission to {$pressName}', '<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 {$pressName}', '<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 />{$pressName}</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 />{$pressName}</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 {$pressName} 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{$pressName} URL: {$pressUrl}<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 {$pressName} 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="{$pressUrl}">{$pressName}</a>.</p>'),
(56, 'EDITORIAL_REMINDER', 'en', 'Editorial Reminder', 'Outstanding editorial tasks for {$pressName}', '<p>Dear {$recipientName},</p><p>You are currently assigned to {$numberOfSubmissions} submissions in <a href="{$pressUrl}">{$pressName}</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 {$pressName}', '<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="{$pressUrl}">{$pressName}</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="{$pressUrl}">{$pressName}</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 {$pressName}.<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 {$pressName}</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 {$pressName}.\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 {$pressName}</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 {$pressName}</p>        <p>At {$pressName}, 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 {$pressName}.</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>{$pressName}</p>    </div></div><style>{$emailTemplateStyle}</style>'),
(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 {$pressName}.</p>        <p>This is a notice to let you know that you have been removed from the following role at {$pressName}: <b>{$roleRemoved}</b>.</p>        <p>Your account with {$pressName} 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>{$pressName}</p>    </div></div><style>{$emailTemplateStyle}</style>'),
(64, '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 {$pressName}.\n<br>\n<br>\nYou have previously authorized {$pressName} 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 {$pressName}</a><br/>\n<br>\n<br>\nIf you have any questions, please contact me.<br>\n<br>\n{$principalContactSignature}<br>\n'),
(65, 'MANUAL_PAYMENT_NOTIFICATION', 'en', 'Manual Payment Notify', 'Manual Payment Notification', 'A manual payment needs to be processed for the press {$pressName} 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=117038 ;


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

INSERT INTO `rors` VALUES
(1, 'https://ror.org/0002pcv65', 'en', 1, 'https://ror.org/0002pcv65 National University of RĆ­o Cuarto Universidad Nacional de RĆ­o Cuarto'),
(2, 'https://ror.org/0003ewr82', 'no_lang_code', 1, 'https://ror.org/0003ewr82 Bundelkhand University'),
(3, 'https://ror.org/0004gzs06', 'en', 1, 'https://ror.org/0004gzs06 Hokuyukai Neurology Hospital åŒ»ē™‚ę³•äŗŗåŒ—ē„ä¼š åŒ—ē„ä¼šē„žēµŒå†…ē§‘ē—…é™¢'),
(4, 'https://ror.org/0006swh35', 'en', 1, 'https://ror.org/0006swh35 First Affiliated Hospital of Xiamen University åŽ¦é—Øå¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(5, 'https://ror.org/000849h34', 'en', 1, 'https://ror.org/000849h34 Liverpool Heart and Chest Hospital'),
(6, 'https://ror.org/0008s4w86', 'en', 1, 'https://ror.org/0008s4w86 Piedmont Atlanta Hospital'),
(7, 'https://ror.org/000917t60', 'en', 1, 'https://ror.org/000917t60 Autonomous University of San Luis Potosí Universidad Autónoma de San Luis Potosí'),
(8, 'https://ror.org/000a2sx58', 'en', 1, 'https://ror.org/000a2sx58 Centre for European Policy Studies'),
(9, 'https://ror.org/000bvba82', 'no_lang_code', 1, 'https://ror.org/000bvba82 Biomarker Technologies (China) ē™¾čæˆå®¢ē”Ÿē‰©ē§‘ęŠ€'),
(10, 'https://ror.org/000bxzc63', 'en', 1, 'https://ror.org/000bxzc63 Max Planck Institute for Medical Research Max-Planck-Institut für Medizinische Forschung'),
(11, 'https://ror.org/000c39f30', 'en', 1, 'https://ror.org/000c39f30 Al Ain Hospital مستؓفى Ų§Ł„Ų¹ŁŠŁ†'),
(12, 'https://ror.org/000ezn412', 'en', 1, 'https://ror.org/000ezn412 Sawai Man Singh Hospital'),
(13, 'https://ror.org/000f32327', 'en', 1, 'https://ror.org/000f32327 Saint Vincent Hospital'),
(14, 'https://ror.org/000fvwg06', 'en', 1, 'https://ror.org/000fvwg06 Queen Sirikit National Institute of Child Health'),
(15, 'https://ror.org/000jd8a09', 'no_lang_code', 1, 'https://ror.org/000jd8a09 Mafraq Hospital مستؓفى المفرق'),
(16, 'https://ror.org/000kb2a90', 'en', 1, 'https://ror.org/000kb2a90 Mymensingh Medical College Hospital ময়মনসিংহ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(17, 'https://ror.org/000ke5995', 'en', 1, 'https://ror.org/000ke5995 Western Galilee Hospital'),
(18, 'https://ror.org/000p7hm12', 'en', 1, 'https://ror.org/000p7hm12 National Skin Centre'),
(19, 'https://ror.org/000pfrh90', 'en', 1, 'https://ror.org/000pfrh90 Baptist Hospital of Miami'),
(20, 'https://ror.org/000qzf213', 'en', 1, 'https://ror.org/000qzf213 Korea University of Science and Technology ź³¼ķ•™źø°ģˆ ģ—°ķ•©ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(21, 'https://ror.org/000rgm762', 'en', 1, 'https://ror.org/000rgm762 VA Connecticut Healthcare System'),
(22, 'https://ror.org/000rs7940', 'fr', 1, 'https://ror.org/000rs7940 HƓpital de la Providence'),
(23, 'https://ror.org/000rxe202', 'no_lang_code', 1, 'https://ror.org/000rxe202 Medical Decision Logic'),
(24, 'https://ror.org/000tm9s39', 'fr', 1, 'https://ror.org/000tm9s39 Centre Hospitalier Saint-Charles'),
(25, 'https://ror.org/000tqtb97', 'no_lang_code', 1, 'https://ror.org/000tqtb97 Rafik Hariri University Hospital مستؓفى Ų±ŁŁŠŁ‚ Ų§Ł„Ų­Ų±ŁŠŲ±ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠā€Žā€Ž'),
(26, 'https://ror.org/000vg5909', 'en', 1, 'https://ror.org/000vg5909 Health & Medical Publishing Group'),
(27, 'https://ror.org/000vjzq57', 'en', 1, 'https://ror.org/000vjzq57 Memphis VA Medical Center'),
(28, 'https://ror.org/000vvpv33', 'en', 1, 'https://ror.org/000vvpv33 Social Insurance Yokohama Central Hospital ęØŖęµœäø­å¤®ē—…é™¢'),
(29, 'https://ror.org/000w57b95', 'en', 1, 'https://ror.org/000w57b95 Institute of Public Health Instituti i Shƫndetit Publik'),
(30, 'https://ror.org/000yct867', 'en', 1, 'https://ror.org/000yct867 Bridgeport Hospital'),
(31, 'https://ror.org/000ywep40', 'en', 1, 'https://ror.org/000ywep40 NHS Tayside'),
(32, 'https://ror.org/000zamq06', 'en', 1, 'https://ror.org/000zamq06 Franklin W. Olin College of Engineering'),
(33, 'https://ror.org/0011azt19', 'en', 1, 'https://ror.org/0011azt19 Saint Agnes Hospital'),
(34, 'https://ror.org/0011qv509', 'en', 1, 'https://ror.org/0011qv509 University of Tennessee Health Science Center'),
(35, 'https://ror.org/0015hpp74', 'en', 1, 'https://ror.org/0015hpp74 Hannah Research Foundation'),
(36, 'https://ror.org/0015hye09', 'no_lang_code', 1, 'https://ror.org/0015hye09 Tokyo Metropolitan Ohtsuka Hospital ę±äŗ¬éƒ½ē«‹å¤§å”šē—…é™¢'),
(37, 'https://ror.org/0015r4831', 'en', 1, 'https://ror.org/0015r4831 Government Medical College Bhavnagar'),
(38, 'https://ror.org/00184ca40', 'no_lang_code', 1, 'https://ror.org/00184ca40 Ballard Power Systems (Canada)'),
(39, 'https://ror.org/00186jw56', 'en', 1, 'https://ror.org/00186jw56 Northwestern Health Sciences University'),
(40, 'https://ror.org/00186nd07', 'en', 1, 'https://ror.org/00186nd07 Gajara Raja Medical College'),
(41, 'https://ror.org/00190t495', 'en', 1, 'https://ror.org/00190t495 National Center for Complementary and Integrative Health'),
(42, 'https://ror.org/001b4cb05', 'en', 1, 'https://ror.org/001b4cb05 National University of Trujillo Universidad Nacional de Trujillo'),
(43, 'https://ror.org/001be0c19', 'en', 1, 'https://ror.org/001be0c19 Centennial Medical Center'),
(44, 'https://ror.org/001c9fg13', 'ro', 1, 'https://ror.org/001c9fg13 Unitatea Executiva Pentru Finantarea Invatamantului Superior Si A Cercetarii Stiintifice Universitare'),
(45, 'https://ror.org/001c9gn96', 'en', 1, 'https://ror.org/001c9gn96 University of Science and Arts of Oklahoma'),
(46, 'https://ror.org/001g7jx32', 'en', 1, 'https://ror.org/001g7jx32 New Britain General Hospital'),
(47, 'https://ror.org/001hsnn10', 'en', 1, 'https://ror.org/001hsnn10 Medical Technology and Practice Patterns Institute'),
(48, 'https://ror.org/001hv0k59', 'en', 1, 'https://ror.org/001hv0k59 Toyota Technological Institute č±Šē”°å·„ę„­å¤§å­¦'),
(49, 'https://ror.org/001hz0050', 'en', 1, 'https://ror.org/001hz0050 Capital Regional District'),
(50, 'https://ror.org/001m5qg34', 'en', 1, 'https://ror.org/001m5qg34 Darent Valley Hospital'),
(51, 'https://ror.org/001rzdq81', 'no_lang_code', 1, 'https://ror.org/001rzdq81 State of The Art'),
(52, 'https://ror.org/001v19997', 'tr', 1, 'https://ror.org/001v19997 Eskişehir Osmangazi Üniversitesi Tıp Fakültesi Hastanesi'),
(53, 'https://ror.org/001v2ey71', 'en', 1, 'https://ror.org/001v2ey71 The Fourth People''s Hospital'),
(54, 'https://ror.org/001wpa366', 'fr', 1, 'https://ror.org/001wpa366 HIA du Val-de-Grâce à Paris, HÓpital d''instruction des armées du Val-de-Grâce'),
(55, 'https://ror.org/001x4vz59', 'en', 1, 'https://ror.org/001x4vz59 St Mary''s Hospital'),
(56, 'https://ror.org/001xq1j98', 'en', 1, 'https://ror.org/001xq1j98 Covenant Health'),
(57, 'https://ror.org/001yjqf23', 'en', 1, 'https://ror.org/001yjqf23 Kuang Tien General Hospital å…‰ē”°ē¶œåˆé†«é™¢'),
(58, 'https://ror.org/001zf8v27', 'en', 1, 'https://ror.org/001zf8v27 Institute for Interdisciplinary Studies of Austrian Universities'),
(59, 'https://ror.org/0020hse07', 'en', 1, 'https://ror.org/0020hse07 Aberdeen Maternity Hospital'),
(60, 'https://ror.org/0020x6414', 'en', 1, 'https://ror.org/0020x6414 Hunter Medical Research Institute'),
(61, 'https://ror.org/0022b3c04', 'en', 1, 'https://ror.org/0022b3c04 Nottingham City Hospital'),
(62, 'https://ror.org/00243c192', 'en', 1, 'https://ror.org/00243c192 Monroe Community Hospital'),
(63, 'https://ror.org/0024aa414', 'en', 1, 'https://ror.org/0024aa414 National Institute of Public Health å›½ē«‹äæå„åŒ»ē™‚ē§‘å­¦é™¢'),
(64, 'https://ror.org/0024qhz65', 'en', 1, 'https://ror.org/0024qhz65 Bir Hospital ą¤¬ą„€ą¤° ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(65, 'https://ror.org/0025e3007', 'no_lang_code', 1, 'https://ror.org/0025e3007 TIBCO Software (United States)'),
(66, 'https://ror.org/0025g8755', 'en', 1, 'https://ror.org/0025g8755 Luigi Sacco Hospital Ospedale Luigi Sacco'),
(67, 'https://ror.org/0026m8b31', 'it', 1, 'https://ror.org/0026m8b31 Ospedale San Paolo'),
(68, 'https://ror.org/00274we69', 'no_lang_code', 1, 'https://ror.org/00274we69 Himchan Hospital ė¶€ķ‰ ķž˜ģ°¬ė³‘ģ›'),
(69, 'https://ror.org/0028g5429', 'en', 1, 'https://ror.org/0028g5429 Community Medical Center'),
(70, 'https://ror.org/0029a9d62', 'en', 1, 'https://ror.org/0029a9d62 California Pacific University'),
(71, 'https://ror.org/0029f7m05', 'en', 1, 'https://ror.org/0029f7m05 Geological Society of America'),
(72, 'https://ror.org/0029n1t76', 'en', 1, 'https://ror.org/0029n1t76 Southern Taiwan University of Science and Technology'),
(73, 'https://ror.org/002bjfj29', 'de', 1, 'https://ror.org/002bjfj29 München Klinik Schwabing'),
(74, 'https://ror.org/002f2sy95', 'en', 1, 'https://ror.org/002f2sy95 Avila University'),
(75, 'https://ror.org/002g9dc27', 'en', 1, 'https://ror.org/002g9dc27 Inoue Hospital äŗ•äøŠē—…é™¢'),
(76, 'https://ror.org/002gmks55', 'pt', 1, 'https://ror.org/002gmks55 Instituto Superior de Educação e Trabalho'),
(77, 'https://ror.org/002hsbm82', 'en', 1, 'https://ror.org/002hsbm82 Tufts Medical Center'),
(78, 'https://ror.org/002k8gm39', 'en', 1, 'https://ror.org/002k8gm39 Vikram University ą¤µą¤æą¤•ą„ą¤°ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(79, 'https://ror.org/002ksg449', 'en', 1, 'https://ror.org/002ksg449 Mary Crowley Cancer Research Center'),
(80, 'https://ror.org/002nav185', 'en', 1, 'https://ror.org/002nav185 Seoul Medical Center ģ„œģšø ģ˜ė£Œģ›'),
(81, 'https://ror.org/002q1t780', 'en', 1, 'https://ror.org/002q1t780 Henrietta Egleston Hospital for Children'),
(82, 'https://ror.org/002rw7y37', 'no_lang_code', 1, 'https://ror.org/002rw7y37 Aoyama Gakuin University 青山学院大学'),
(83, 'https://ror.org/002tz8e96', 'en', 1, 'https://ror.org/002tz8e96 Shaikh Zayed Hospital'),
(84, 'https://ror.org/002x0mf51', 'tr', 1, 'https://ror.org/002x0mf51 Mareşal Ƈakmak Askeri Hastanesi'),
(85, 'https://ror.org/002yfn631', 'en', 1, 'https://ror.org/002yfn631 Kuakini Medical Center'),
(86, 'https://ror.org/002zf4a56', 'en', 1, 'https://ror.org/002zf4a56 Waikato Hospital'),
(87, 'https://ror.org/002ztb251', 'en', 1, 'https://ror.org/002ztb251 Ganesh Shankar Vidyarthi Memorial Medical College ą¤—ą¤£ą„‡ą¤¶ शंकर ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤°ą„ą¤„ą„€ ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(88, 'https://ror.org/0030d2559', 'en', 1, 'https://ror.org/0030d2559 Escola Médico-Cirúrgica de Goa Goa Medical College'),
(89, 'https://ror.org/0031afh91', 'en', 1, 'https://ror.org/0031afh91 Henan Provincial Institute of Occupational Health čŒäøšå„åŗ·ę²³å—ēœē ”ē©¶ę‰€'),
(90, 'https://ror.org/0031nsg68', 'en', 1, 'https://ror.org/0031nsg68 Hankyong National University ķ•œź²½ėŒ€ķ•™źµ'),
(91, 'https://ror.org/0032p1p15', 'en', 1, 'https://ror.org/0032p1p15 Chubu National Hospital äø­éƒØå›½ē«‹ē—…é™¢'),
(92, 'https://ror.org/00337p258', 'no_lang_code', 1, 'https://ror.org/00337p258 Koshien University ē”²å­åœ’å¤§å­¦'),
(93, 'https://ror.org/00372qc85', 'en', 1, 'https://ror.org/00372qc85 National Institute of Biomedical Imaging and Bioengineering'),
(94, 'https://ror.org/0037yf233', 'en', 1, 'https://ror.org/0037yf233 Exploratorium'),
(95, 'https://ror.org/0038gz437', 'en', 1, 'https://ror.org/0038gz437 Newman University'),
(96, 'https://ror.org/0038nst28', 'no_lang_code', 1, 'https://ror.org/0038nst28 Kwangju Christian Hospital ź“‘ģ£¼źø°ė…ė³‘ģ›'),
(97, 'https://ror.org/003ammk23', 'en', 1, 'https://ror.org/003ammk23 Walsh University'),
(98, 'https://ror.org/003dzgw21', 'fr', 1, 'https://ror.org/003dzgw21 Centre Technique Des Industries De La Fonderie'),
(99, 'https://ror.org/003g7k569', 'no_lang_code', 1, 'https://ror.org/003g7k569 Litron Laboratories (United States)'),
(100, 'https://ror.org/003hhqx84', 'it', 1, 'https://ror.org/003hhqx84 Ospedale Antonio Cardarelli'),
(101, 'https://ror.org/003hjp881', 'pt', 1, 'https://ror.org/003hjp881 Hospital Madre Teresa'),
(102, 'https://ror.org/003j5cv40', 'en', 1, 'https://ror.org/003j5cv40 Haskins Laboratories'),
(103, 'https://ror.org/003k75717', 'en', 1, 'https://ror.org/003k75717 Advocate Health Care'),
(104, 'https://ror.org/003m0tv02', 'en', 1, 'https://ror.org/003m0tv02 Michigan Public Health Institute'),
(105, 'https://ror.org/003mte806', 'pt', 1, 'https://ror.org/003mte806 Instituto Superior de Administração e Línguas'),
(106, 'https://ror.org/003ncyx50', 'no_lang_code', 1, 'https://ror.org/003ncyx50 Lourdes Hospital'),
(107, 'https://ror.org/003nj8h62', 'en', 1, 'https://ror.org/003nj8h62 L-Isptar San Luqa St. Luke''s Hospital'),
(108, 'https://ror.org/003nvpm64', 'en', 1, 'https://ror.org/003nvpm64 Christchurch Hospital'),
(109, 'https://ror.org/003rmx748', 'en', 1, 'https://ror.org/003rmx748 Holy Spirit Northside Private Hospital'),
(110, 'https://ror.org/003sav189', 'de', 1, 'https://ror.org/003sav189 Institute for Information Technology Oldenburger Institut für Informatik'),
(111, 'https://ror.org/003sav965', 'en', 1, 'https://ror.org/003sav965 Tianjin Medical University General Hospital å¤©ę“„åŒ»ē§‘å¤§å­¦ę€»åŒ»é™¢'),
(112, 'https://ror.org/003sphj24', 'en', 1, 'https://ror.org/003sphj24 Soroka Medical Center'),
(113, 'https://ror.org/003sqpd76', 'en', 1, 'https://ror.org/003sqpd76 Agruicultural Research Institute'),
(114, 'https://ror.org/003sw8164', 'en', 1, 'https://ror.org/003sw8164 Inland Hospital Sykehuset Innlandet'),
(115, 'https://ror.org/003t0xc83', 'en', 1, 'https://ror.org/003t0xc83 Glenbrook Hospital'),
(116, 'https://ror.org/003vfy751', 'fr', 1, 'https://ror.org/003vfy751 University of Burundi UniversitƩ du Burundi'),
(117, 'https://ror.org/003vkcj31', 'en', 1, 'https://ror.org/003vkcj31 University of Teacher Education Fukuoka ē¦å²”ę•™č‚²å¤§å­¦'),
(118, 'https://ror.org/003x8tf04', 'no_lang_code', 1, 'https://ror.org/003x8tf04 Profilarbed (Luxembourg)'),
(119, 'https://ror.org/003zecf96', 'es', 1, 'https://ror.org/003zecf96 Hospital San Agustin'),
(120, 'https://ror.org/004106086', 'en', 1, 'https://ror.org/004106086 Sendai Red Cross Hospital ä»™å°čµ¤åå­—ē—…é™¢'),
(121, 'https://ror.org/00414dg76', 'en', 1, 'https://ror.org/00414dg76 Rady Children''s Hospital-San Diego'),
(122, 'https://ror.org/0041bpv82', 'en', 1, 'https://ror.org/0041bpv82 Hospital Sultanah Aminah Sultanah Aminah Hospital'),
(123, 'https://ror.org/004350h06', 'en', 1, 'https://ror.org/004350h06 Saint Vincent Hospital'),
(124, 'https://ror.org/00458wv14', 'en', 1, 'https://ror.org/00458wv14 Tianjin Beichen Hospital'),
(125, 'https://ror.org/0046mja08', 'en', 1, 'https://ror.org/0046mja08 An-Najah National University Ų¬Ų§Ł…Ų¹Ų© النجاح Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(126, 'https://ror.org/0048myj07', 'it', 1, 'https://ror.org/0048myj07 Ospedale del Ceppo'),
(127, 'https://ror.org/0049erg63', 'en', 1, 'https://ror.org/0049erg63 Kookmin University źµ­ėÆ¼ėŒ€ķ•™źµ'),
(128, 'https://ror.org/004a7s815', 'sv', 1, 'https://ror.org/004a7s815 Blekingesjukhuset'),
(129, 'https://ror.org/004cj7n30', 'en', 1, 'https://ror.org/004cj7n30 King''s Cross Hospital'),
(130, 'https://ror.org/004dwfr15', 'en', 1, 'https://ror.org/004dwfr15 Kursk State Medical University ŠšŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(131, 'https://ror.org/004fmj330', 'no_lang_code', 1, 'https://ror.org/004fmj330 Technical Resources International (United States)'),
(132, 'https://ror.org/004gqpt18', 'de', 1, 'https://ror.org/004gqpt18 Landeskrankenhaus Feldkirch'),
(133, 'https://ror.org/004jktf35', 'en', 1, 'https://ror.org/004jktf35 Swedish Medical Center'),
(134, 'https://ror.org/004kyan19', 'en', 1, 'https://ror.org/004kyan19 Maricopa County Community College District'),
(135, 'https://ror.org/004nhy279', 'en', 1, 'https://ror.org/004nhy279 Barnet Hospital'),
(136, 'https://ror.org/004q6ee74', 'no_lang_code', 1, 'https://ror.org/004q6ee74 Technical Research Associates (United States)'),
(137, 'https://ror.org/004qj2391', 'es', 1, 'https://ror.org/004qj2391 Hospital General De Segovia'),
(138, 'https://ror.org/004rs4477', 'en', 1, 'https://ror.org/004rs4477 Masonic Medical Research Laboratory'),
(139, 'https://ror.org/004srrf86', 'en', 1, 'https://ror.org/004srrf86 Abilene Christian University Universidad Cristiana de Abilene'),
(140, 'https://ror.org/004sxt390', 'en', 1, 'https://ror.org/004sxt390 North Park University'),
(141, 'https://ror.org/004t34t94', 'no_lang_code', 1, 'https://ror.org/004t34t94 Tsuchiura Kyodo General Hospital ē·åˆē—…é™¢ åœŸęµ¦å”åŒē—…é™¢'),
(142, 'https://ror.org/004we6052', 'en', 1, 'https://ror.org/004we6052 Holy Family Hospital'),
(143, 'https://ror.org/0050r1b65', 'en', 1, 'https://ror.org/0050r1b65 Third Affiliated Hospital of Southern Medical University å—ę–¹åŒ»ē§‘å¤§å­¦ē¬¬äø‰é™„å±žåŒ»é™¢'),
(144, 'https://ror.org/0050ra204', 'it', 1, 'https://ror.org/0050ra204 Centro Studi Sui Sistemi Di Trasporto Spa'),
(145, 'https://ror.org/00514rc81', 'en', 1, 'https://ror.org/00514rc81 Royal Hallamshire Hospital'),
(146, 'https://ror.org/00520ze08', 'en', 1, 'https://ror.org/00520ze08 South Carolina State University'),
(147, 'https://ror.org/0055d0g64', 'en', 1, 'https://ror.org/0055d0g64 Academia de la Fuerza AƩrea de los Estados Unidos United States Air Force Academy'),
(148, 'https://ror.org/0057da036', 'en', 1, 'https://ror.org/0057da036 Mercy San Juan Medical Center'),
(149, 'https://ror.org/0057s8s52', 'en', 1, 'https://ror.org/0057s8s52 John D. Dingell VA Medical Center'),
(150, 'https://ror.org/00582g326', 'en', 1, 'https://ror.org/00582g326 Indian Institute of Technology Roorkee ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą„ą¤”ą¤¼ą¤•ą„€ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®°ąÆ‚ą®°ąÆą®•ąÆą®•ą®æ ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°°ą±‚ą°°ą±ą°•ą±€ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“±ąµ‚ąµ¼ą“•ąµą“•ą“æ'),
(151, 'https://ror.org/005927371', 'en', 1, 'https://ror.org/005927371 Ching Kuo Institute of Management and Health ē¶“åœ‹ē®”ē†ęšØå„åŗ·å­øé™¢'),
(152, 'https://ror.org/0059h1f24', 'en', 1, 'https://ror.org/0059h1f24 Prefectural University of Hiroshima ēœŒē«‹åŗƒå³¶å¤§å­¦'),
(153, 'https://ror.org/0059hys23', 'fr', 1, 'https://ror.org/0059hys23 HƓpital Farhat Hached'),
(154, 'https://ror.org/005b2mc68', 'no_lang_code', 1, 'https://ror.org/005b2mc68 NEC (United Kingdom)'),
(155, 'https://ror.org/005bty106', 'en', 1, 'https://ror.org/005bty106 Eulji University ģ„ģ§€ėŒ€ķ•™źµ'),
(156, 'https://ror.org/005ezrx44', 'en', 1, 'https://ror.org/005ezrx44 South-West State University Юго-ЗапаГный Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(157, 'https://ror.org/005fgpm31', 'en', 1, 'https://ror.org/005fgpm31 Dayanand Medical College & Hospital'),
(158, 'https://ror.org/005gkfa10', 'en', 1, 'https://ror.org/005gkfa10 National Changhua University of Education åœ‹ē«‹å½°åŒ–åø«ēÆ„å¤§å­ø'),
(159, 'https://ror.org/005h65c20', 'en', 1, 'https://ror.org/005h65c20 Metropolitan Hospital Center'),
(160, 'https://ror.org/005h6qd35', 'en', 1, 'https://ror.org/005h6qd35 Government Medical College'),
(161, 'https://ror.org/005qv5373', 'en', 1, 'https://ror.org/005qv5373 Wakayama Medical University å’Œę­Œå±±ēœŒē«‹åŒ»ē§‘å¤§å­¦'),
(162, 'https://ror.org/005qzv038', 'en', 1, 'https://ror.org/005qzv038 Munson Medical Center'),
(163, 'https://ror.org/005r9p256', 'en', 1, 'https://ror.org/005r9p256 Royal Derby Hospital'),
(164, 'https://ror.org/005s69p38', 'it', 1, 'https://ror.org/005s69p38 Azienda Ospedaliera Ospedale San Carlo Borromeo'),
(165, 'https://ror.org/005t72d47', 'en', 1, 'https://ror.org/005t72d47 Antrim Area Hospital'),
(166, 'https://ror.org/005tw0h26', 'en', 1, 'https://ror.org/005tw0h26 University Clinical Center of Kosovo'),
(167, 'https://ror.org/005w9jb47', 'en', 1, 'https://ror.org/005w9jb47 Lawrence University Universidad Lawrence'),
(168, 'https://ror.org/005wpyn57', 'en', 1, 'https://ror.org/005wpyn57 Children''s Hospital Mansoura University'),
(169, 'https://ror.org/005yg7304', 'no_lang_code', 1, 'https://ror.org/005yg7304 STAR Analytical Services'),
(170, 'https://ror.org/005ywsr52', 'en', 1, 'https://ror.org/005ywsr52 Friends University'),
(171, 'https://ror.org/005zah758', 'en', 1, 'https://ror.org/005zah758 Southern Nazarene University'),
(172, 'https://ror.org/0060t0j89', 'en', 1, 'https://ror.org/0060t0j89 Biblioteca Nacional de Medicina United States National Library of Medicine'),
(173, 'https://ror.org/0065kgn45', 'en', 1, 'https://ror.org/0065kgn45 Center for Studying Health System Change'),
(174, 'https://ror.org/0065mvt73', 'es', 1, 'https://ror.org/0065mvt73 Hospital Costa del Sol'),
(175, 'https://ror.org/006776986', 'no_lang_code', 1, 'https://ror.org/006776986 Wonkwang University ģ›ź“‘ėŒ€ķ•™źµ'),
(176, 'https://ror.org/0067dx910', 'en', 1, 'https://ror.org/0067dx910 Missouri Baptist Medical Center'),
(177, 'https://ror.org/00682eh61', 'en', 1, 'https://ror.org/00682eh61 Detroit Receiving Hospital'),
(178, 'https://ror.org/0069p7h69', 'en', 1, 'https://ror.org/0069p7h69 Tokushima Breast Care Clinic ćØćć—ć¾ćƒ–ćƒ¬ć‚¹ćƒˆć‚±ć‚¢ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(179, 'https://ror.org/006bvjm48', 'en', 1, 'https://ror.org/006bvjm48 Hengyang Normal University'),
(180, 'https://ror.org/006c1jc70', 'en', 1, 'https://ror.org/006c1jc70 UK Material Technology Research Institute'),
(181, 'https://ror.org/006c6a937', 'no_lang_code', 1, 'https://ror.org/006c6a937 Intelligent Hearing Systems (United States)'),
(182, 'https://ror.org/006cvnv84', 'en', 1, 'https://ror.org/006cvnv84 Social Science Research Council'),
(183, 'https://ror.org/006f92m60', 'en', 1, 'https://ror.org/006f92m60 Duchess of Kent Children''s Hospital å¤§å£ē’°ę ¹å¾·å…¬ēˆµå¤«äŗŗå…’ē«„é†«é™¢'),
(184, 'https://ror.org/006g42111', 'en', 1, 'https://ror.org/006g42111 Birmingham–Southern College'),
(185, 'https://ror.org/006gdh317', 'en', 1, 'https://ror.org/006gdh317 Meijo Hospital ååŸŽē—…é™¢'),
(186, 'https://ror.org/006gvnw06', 'en', 1, 'https://ror.org/006gvnw06 North Dakota Department of Health'),
(187, 'https://ror.org/006j1e620', 'en', 1, 'https://ror.org/006j1e620 Georgia Department of Human Services'),
(188, 'https://ror.org/006jjmw19', 'en', 1, 'https://ror.org/006jjmw19 Hospital de la Universidad de Colorado University of Colorado Hospital'),
(189, 'https://ror.org/006jxzx88', 'en', 1, 'https://ror.org/006jxzx88 Bond University'),
(190, 'https://ror.org/006k2kk72', 'en', 1, 'https://ror.org/006k2kk72 Düsseldorf University Hospital Universitätsklinikum Düsseldorf'),
(191, 'https://ror.org/006kce638', 'es', 1, 'https://ror.org/006kce638 Instituto Tecnológico del Calzado y Conexas'),
(192, 'https://ror.org/006nc8n95', 'pt', 1, 'https://ror.org/006nc8n95 Mackenzie Presbyterian University Universidade Presbiteriana Mackenzie'),
(193, 'https://ror.org/006pw7k84', 'en', 1, 'https://ror.org/006pw7k84 Ambrose Alli University YunifƔsƭtƬ Ambrose Alli'),
(194, 'https://ror.org/006qqk144', 'no_lang_code', 1, 'https://ror.org/006qqk144 Fukui Prefectural Hospital ē¦äŗ•ēœŒē«‹ē—…é™¢'),
(195, 'https://ror.org/006qssd78', 'pt', 1, 'https://ror.org/006qssd78 Universidade do Sul de Santa Catarina'),
(196, 'https://ror.org/006rhxn50', 'no_lang_code', 1, 'https://ror.org/006rhxn50 FORCE Technology (Denmark)'),
(197, 'https://ror.org/006t60p65', 'en', 1, 'https://ror.org/006t60p65 LeTourneau University'),
(198, 'https://ror.org/006x15235', 'en', 1, 'https://ror.org/006x15235 Instituto Nacional de Engenharia, Tecnologia e Inovação National Institute of Engineering, Technology and Innovation'),
(199, 'https://ror.org/006x9gw30', 'no_lang_code', 1, 'https://ror.org/006x9gw30 Koronis Biomedical Technologies (United States)'),
(200, 'https://ror.org/006xsx833', 'nl', 1, 'https://ror.org/006xsx833 Geneeskundige en Gezondheidsdienst'),
(201, 'https://ror.org/006xyf785', 'en', 1, 'https://ror.org/006xyf785 James A. Haley Veterans'' Hospital'),
(202, 'https://ror.org/006y27614', 'en', 1, 'https://ror.org/006y27614 Keesler Medical Center'),
(203, 'https://ror.org/006yqdy38', 'en', 1, 'https://ror.org/006yqdy38 Min Sheng General Hospital ę•ē››ē¶œåˆé†«é™¢'),
(204, 'https://ror.org/0070ga397', 'en', 1, 'https://ror.org/0070ga397 John F. Kennedy Medical Center'),
(205, 'https://ror.org/0071a2k97', 'en', 1, 'https://ror.org/0071a2k97 Queen Elizabeth II Medical Centre'),
(206, 'https://ror.org/00756eb27', 'no_lang_code', 1, 'https://ror.org/00756eb27 Barlow Scientific'),
(207, 'https://ror.org/0077fnc39', 'en', 1, 'https://ror.org/0077fnc39 Greater Baltimore Medical Center'),
(208, 'https://ror.org/0077pzv34', 'en', 1, 'https://ror.org/0077pzv34 Manitoba Health'),
(209, 'https://ror.org/0077tm911', 'en', 1, 'https://ror.org/0077tm911 Iowa Department of Human Services'),
(210, 'https://ror.org/007b9cn27', 'en', 1, 'https://ror.org/007b9cn27 National Polytechnic University of Armenia Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ ÕŗÕøÕ¬Õ«ÕæÕ„Õ­Õ¶Õ«ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(211, 'https://ror.org/007dga614', 'en', 1, 'https://ror.org/007dga614 Bloomsburg University'),
(212, 'https://ror.org/007e71662', 'en', 1, 'https://ror.org/007e71662 Miyagi Children''s Hospital å®®åŸŽēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(213, 'https://ror.org/007evha27', 'en', 1, 'https://ror.org/007evha27 Cooper Medical School of Rowan University'),
(214, 'https://ror.org/007f1da21', 'en', 1, 'https://ror.org/007f1da21 University of Baghdad Ų¬Ų§Ł…Ų¹Ų© ŲØŲŗŲÆŲ§ŲÆ'),
(215, 'https://ror.org/007fenw03', 'en', 1, 'https://ror.org/007fenw03 Government Medical College ą“—ą“µąµŗą“®ąµ†ą“Øąµą“±ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“¤ą“æą“°ąµą“µą“Øą“Øąµą“¤ą“Ŗąµą“°ą“‚'),
(216, 'https://ror.org/007fyq698', 'en', 1, 'https://ror.org/007fyq698 VA Salt Lake City Healthcare System'),
(217, 'https://ror.org/007h1g065', 'en', 1, 'https://ror.org/007h1g065 Universidad de Tampa University of Tampa'),
(218, 'https://ror.org/007hzv648', 'fr', 1, 'https://ror.org/007hzv648 HƓpital Saint Lazare'),
(219, 'https://ror.org/007jxr441', 'en', 1, 'https://ror.org/007jxr441 Society For Developmental Biology'),
(220, 'https://ror.org/007n03h88', 'en', 1, 'https://ror.org/007n03h88 Purdue Research Foundation'),
(221, 'https://ror.org/007sp7t15', 'en', 1, 'https://ror.org/007sp7t15 INTEGRIS Baptist Medical Center'),
(222, 'https://ror.org/007tn5k56', 'en', 1, 'https://ror.org/007tn5k56 Seton Hall University'),
(223, 'https://ror.org/007vcvm35', 'en', 1, 'https://ror.org/007vcvm35 North Karelia Central Hospital Pohjois-Karjalan Sairaanhoito- Ja Sosiaalipalvelujen KuntayhtymƤ'),
(224, 'https://ror.org/007x9se63', 'en', 1, 'https://ror.org/007x9se63 Center for Devices and Radiological Health'),
(225, 'https://ror.org/007xad319', 'en', 1, 'https://ror.org/007xad319 Gezondheidsraad The Health Council of the Netherlands'),
(226, 'https://ror.org/007xcwj53', 'de', 1, 'https://ror.org/007xcwj53 Klinikum Klagenfurt'),
(227, 'https://ror.org/0080acb59', 'en', 1, 'https://ror.org/0080acb59 John Radcliffe Hospital'),
(228, 'https://ror.org/00839we02', 'en', 1, 'https://ror.org/00839we02 Acadia University'),
(229, 'https://ror.org/0084g8g60', 'tr', 1, 'https://ror.org/0084g8g60 Bayındır Hastanesi'),
(230, 'https://ror.org/0084te143', 'fr', 1, 'https://ror.org/0084te143 Centre Hospitalier Universitaire de BesanƧon'),
(231, 'https://ror.org/0086ms749', 'en', 1, 'https://ror.org/0086ms749 Arnold Palmer Hospital for Children'),
(232, 'https://ror.org/0086rpr26', 'en', 1, 'https://ror.org/0086rpr26 University of Sargodha'),
(233, 'https://ror.org/008a4de11', 'en', 1, 'https://ror.org/008a4de11 Manhattan Eye, Ear and Throat Hospital'),
(234, 'https://ror.org/008c4hs90', 'no_lang_code', 1, 'https://ror.org/008c4hs90 Niigata Prefectural Shibata Hospital ę–°ę½ŸēœŒē«‹ę–°ē™ŗē”°ē—…é™¢'),
(235, 'https://ror.org/008dmmd16', 'fr', 1, 'https://ror.org/008dmmd16 HƓpital Ophtalmique Jules-Gonin'),
(236, 'https://ror.org/008encc97', 'en', 1, 'https://ror.org/008encc97 East–West Center'),
(237, 'https://ror.org/008hybe55', 'en', 1, 'https://ror.org/008hybe55 JILA, Joint Institute for Laboratory Astrophysics'),
(238, 'https://ror.org/008j59125', 'en', 1, 'https://ror.org/008j59125 Aintree University Hospital'),
(239, 'https://ror.org/008jvv944', 'fr', 1, 'https://ror.org/008jvv944 HƩma-QuƩbec'),
(240, 'https://ror.org/008ms5s18', 'en', 1, 'https://ror.org/008ms5s18 Lamar University'),
(241, 'https://ror.org/008p85724', 'en', 1, 'https://ror.org/008p85724 Guangdong Province Stomatological Hospital å¹æäøœēœå£č…”åŒ»é™¢'),
(242, 'https://ror.org/008pwh115', 'en', 1, 'https://ror.org/008pwh115 Florida Memorial University'),
(243, 'https://ror.org/008r2d260', 'en', 1, 'https://ror.org/008r2d260 Louisiana State University Hospital'),
(244, 'https://ror.org/008rqvc37', 'en', 1, 'https://ror.org/008rqvc37 Lata Medical Research Foundation'),
(245, 'https://ror.org/008wtrs16', 'pt', 1, 'https://ror.org/008wtrs16 Instituto Superior de CiĆŖncias Educativas'),
(246, 'https://ror.org/008x57b05', 'en', 1, 'https://ror.org/008x57b05 Universiteit Antwerpen University of Antwerp UniversitƤt Antwerpen UniversitƩ d''Anvers'),
(247, 'https://ror.org/008x85y42', 'no_lang_code', 1, 'https://ror.org/008x85y42 Hospital Bqyhallh ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ŲØŁ‚ŪŒŲ©Ų§Ł„Ł„Ł‡'),
(248, 'https://ror.org/008xr7e22', 'en', 1, 'https://ror.org/008xr7e22 Mercy Health System'),
(249, 'https://ror.org/008zj0x80', 'en', 1, 'https://ror.org/008zj0x80 Hackensack University Medical Center'),
(250, 'https://ror.org/0091mqf26', 'en', 1, 'https://ror.org/0091mqf26 Oita Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ å¤§åˆ†åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(251, 'https://ror.org/0092qhe76', 'no_lang_code', 1, 'https://ror.org/0092qhe76 Sanaria'),
(252, 'https://ror.org/0093xcb35', 'en', 1, 'https://ror.org/0093xcb35 Ashikaga Red Cross Hospital č¶³åˆ©čµ¤åå­—ē—…é™¢'),
(253, 'https://ror.org/00944ve71', 'en', 1, 'https://ror.org/00944ve71 National Central University'),
(254, 'https://ror.org/00947s692', 'en', 1, 'https://ror.org/00947s692 Kurashiki Central Hospital 倉敷中央病院'),
(255, 'https://ror.org/00952fj37', 'en', 1, 'https://ror.org/00952fj37 Jinnah Postgraduate Medical Center'),
(256, 'https://ror.org/009543z50', 'en', 1, 'https://ror.org/009543z50 Northwestern Memorial Hospital'),
(257, 'https://ror.org/0098kke80', 'no_lang_code', 1, 'https://ror.org/0098kke80 Rakuten (Japan) ę„½å¤©ę Ŗå¼ä¼šē¤¾'),
(258, 'https://ror.org/0099kc363', 'en', 1, 'https://ror.org/0099kc363 Sardar Patel Medical College'),
(259, 'https://ror.org/009afvb77', 'en', 1, 'https://ror.org/009afvb77 Provincial Laboratory of Public Health'),
(260, 'https://ror.org/009at8f10', 'fr', 1, 'https://ror.org/009at8f10 HƓpital Laveran'),
(261, 'https://ror.org/009c06z12', 'en', 1, 'https://ror.org/009c06z12 Intermountain Medical Center'),
(262, 'https://ror.org/009djsq06', 'en', 1, 'https://ror.org/009djsq06 King Abdulaziz Medical City Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ² Ų§Ł„Ų·ŲØŁŠŲ© للحرس Ų§Ł„ŁˆŲ·Ł†ŁŠ'),
(263, 'https://ror.org/009e5cd49', 'en', 1, 'https://ror.org/009e5cd49 Sun Moon University ģ„ ė¬øėŒ€ķ•™źµ'),
(264, 'https://ror.org/009ek3139', 'en', 1, 'https://ror.org/009ek3139 Falun Hospital'),
(265, 'https://ror.org/009erh992', 'en', 1, 'https://ror.org/009erh992 Sharp Rees-Stealy Medical Group'),
(266, 'https://ror.org/009fhc817', 'pl', 1, 'https://ror.org/009fhc817 Szpital im Tadeusza Marciniaka'),
(267, 'https://ror.org/009fnyh39', 'en', 1, 'https://ror.org/009fnyh39 Malabar Institute of Medical Sciences'),
(268, 'https://ror.org/009gqrs30', 'pt', 1, 'https://ror.org/009gqrs30 Hospital Moinhos de Vento'),
(269, 'https://ror.org/009hj8759', 'en', 1, 'https://ror.org/009hj8759 Grady Memorial Hospital'),
(270, 'https://ror.org/009k7c907', 'en', 1, 'https://ror.org/009k7c907 Northern Health'),
(271, 'https://ror.org/009nscf91', 'fr', 1, 'https://ror.org/009nscf91 Centre Hospitalier Universitaire Mohammed VI'),
(272, 'https://ror.org/009p4eg54', 'en', 1, 'https://ror.org/009p4eg54 Tilka Manjhi Bhagalpur University तिलका ą¤®ą¤¾ą¤‚ą¤ą„€ ą¤­ą¤¾ą¤—ą¤²ą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(273, 'https://ror.org/009q6vg88', 'no_lang_code', 1, 'https://ror.org/009q6vg88 Virogenomics BioDevelopment (United States)'),
(274, 'https://ror.org/009qqcw96', 'en', 1, 'https://ror.org/009qqcw96 Lehigh Valley Hospital Muhlenberg'),
(275, 'https://ror.org/009raxq57', 'en', 1, 'https://ror.org/009raxq57 Mercy Medical Center'),
(276, 'https://ror.org/009rt9f88', 'en', 1, 'https://ror.org/009rt9f88 Inova Loudoun Hospital'),
(277, 'https://ror.org/009sa0g06', 'en', 1, 'https://ror.org/009sa0g06 Royal Liverpool and Broadgreen University Hospital NHS Trust'),
(278, 'https://ror.org/009szpe27', 'en', 1, 'https://ror.org/009szpe27 Armed Forces Health Surveillance Center'),
(279, 'https://ror.org/009vheq40', 'en', 1, 'https://ror.org/009vheq40 Churchill Hospital'),
(280, 'https://ror.org/009x1kj44', 'pl', 1, 'https://ror.org/009x1kj44 University Children’s Hospital Uniwersytecki Szpital Dziecięcy'),
(281, 'https://ror.org/009z5t729', 'en', 1, 'https://ror.org/009z5t729 Cook Children''s Medical Center'),
(282, 'https://ror.org/00a0jsq62', 'en', 1, 'https://ror.org/00a0jsq62 London School of Hygiene & Tropical Medicine'),
(283, 'https://ror.org/00a0pt066', 'en', 1, 'https://ror.org/00a0pt066 MultiCare Good Samaritan Hospital'),
(284, 'https://ror.org/00a3dqw47', 'en', 1, 'https://ror.org/00a3dqw47 Eastern State Hospital'),
(285, 'https://ror.org/00a43vs85', 'en', 1, 'https://ror.org/00a43vs85 Ya''an Polytechnic College é›…å®‰čŒäøšęŠ€ęœÆå­¦é™¢'),
(286, 'https://ror.org/00a53nq42', 'en', 1, 'https://ror.org/00a53nq42 Cancer Hospital of Shantou University Medical College ę±•å¤“å¤§å­¦åŒ»å­¦é™¢é™„å±žč‚æē˜¤åŒ»é™¢'),
(287, 'https://ror.org/00a858n67', 'en', 1, 'https://ror.org/00a858n67 Royal United Hospital'),
(288, 'https://ror.org/00a8tg325', 'en', 1, 'https://ror.org/00a8tg325 Korea Institute of Radiological and Medical Sciences ķ•œźµ­ 방사선 과학 ģ—°źµ¬ģ†Œ'),
(289, 'https://ror.org/00a98yf63', 'en', 1, 'https://ror.org/00a98yf63 Second Affiliated Hospital of Guangzhou Medical University å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(290, 'https://ror.org/00a99v816', 'no_lang_code', 1, 'https://ror.org/00a99v816'),
(291, 'https://ror.org/00ac5y077', 'pt', 1, 'https://ror.org/00ac5y077 Instituto Superior Autónomo de Estudos Politécnicos'),
(292, 'https://ror.org/00adjy062', 'no_lang_code', 1, 'https://ror.org/00adjy062 Performance Plants (Canada)'),
(293, 'https://ror.org/00ae33288', 'en', 1, 'https://ror.org/00ae33288 London Metropolitan University'),
(294, 'https://ror.org/00af3sa43', 'en', 1, 'https://ror.org/00af3sa43 Isfahan University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ اصفهان'),
(295, 'https://ror.org/00aff0y51', 'tr', 1, 'https://ror.org/00aff0y51 Dr. BehƧet Uz Ƈocuk Hastalıkları Hastanesi'),
(296, 'https://ror.org/00afgv297', 'es', 1, 'https://ror.org/00afgv297 Hospital General San Juan de Dios'),
(297, 'https://ror.org/00aft1q37', 'en', 1, 'https://ror.org/00aft1q37 Sejong University ģ„øģ¢…ėŒ€ķ•™źµ'),
(298, 'https://ror.org/00agkba13', 'en', 1, 'https://ror.org/00agkba13 Martha Jefferson Hospital'),
(299, 'https://ror.org/00agrkd75', 'en', 1, 'https://ror.org/00agrkd75 Computing Research Association'),
(300, 'https://ror.org/00ajg8537', 'tr', 1, 'https://ror.org/00ajg8537 Gaziantep Onkoloji Hastanesi'),
(301, 'https://ror.org/00ajykz30', 'en', 1, 'https://ror.org/00ajykz30 UK Water Industry Research'),
(302, 'https://ror.org/00akdyv48', 'en', 1, 'https://ror.org/00akdyv48 Centre mƩdical de kettering Kettering Medical Center'),
(303, 'https://ror.org/00apdsa62', 'en', 1, 'https://ror.org/00apdsa62 Privolzhsky Research Medical University ŠŸŃ€ŠøŠ²Š¾Š»Š¶ŃŠŗŠøŠ¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(304, 'https://ror.org/00aqz1698', 'en', 1, 'https://ror.org/00aqz1698 Milwaukee Public Museum'),
(305, 'https://ror.org/00aqz8k66', 'en', 1, 'https://ror.org/00aqz8k66 Florida Hospital Cancer Institute'),
(306, 'https://ror.org/00asaax56', 'en', 1, 'https://ror.org/00asaax56 Accreditation Council for Graduate Medical Education'),
(307, 'https://ror.org/00av3hs56', 'en', 1, 'https://ror.org/00av3hs56 Chubu Rosai Hospital äø­éƒØć‚ć†ć•ć„ē—…é™¢'),
(308, 'https://ror.org/00av5yz18', 'en', 1, 'https://ror.org/00av5yz18 Health and Safety Executive'),
(309, 'https://ror.org/00awd9g61', 'en', 1, 'https://ror.org/00awd9g61 The Graduate Center, CUNY'),
(310, 'https://ror.org/00azwtc53', 'no_lang_code', 1, 'https://ror.org/00azwtc53 Swedish Nuclear Fuel and Waste Management (Sweden)'),
(311, 'https://ror.org/00b0m1444', 'en', 1, 'https://ror.org/00b0m1444 Loewenstein Hospital Rehabilitation Center'),
(312, 'https://ror.org/00b4emx12', 'en', 1, 'https://ror.org/00b4emx12 North Shore Medical Center'),
(313, 'https://ror.org/00b4wat71', 'en', 1, 'https://ror.org/00b4wat71 Shadyside Hospital'),
(314, 'https://ror.org/00b7yvh50', 'en', 1, 'https://ror.org/00b7yvh50 Prefectural University of Kumamoto ē†Šęœ¬ēœŒē«‹å¤§å­¦'),
(315, 'https://ror.org/00b7zsw47', 'de', 1, 'https://ror.org/00b7zsw47 Klinik Schillerhƶhe'),
(316, 'https://ror.org/00baajx12', 'en', 1, 'https://ror.org/00baajx12 Rood and Riddle Equine Hospital'),
(317, 'https://ror.org/00baak391', 'en', 1, 'https://ror.org/00baak391 National Human Genome Research Institute'),
(318, 'https://ror.org/00bb01z14', 'en', 1, 'https://ror.org/00bb01z14 Vladivostok State Medical University Тихоокеанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(319, 'https://ror.org/00bbeqy02', 'en', 1, 'https://ror.org/00bbeqy02 Guru Angad Dev Veterinary and Animal Sciences University ਗੁਰੂ ਅੰਗਦ ਦੇਵ ąØµą©ˆąØŸąØØąØ°ą©€ ਅਤੇ ਐਨੀਮਲ ąØøąØ¾ąØ‡ą©°ąØøąØœąØ¼ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(320, 'https://ror.org/00bjck208', 'en', 1, 'https://ror.org/00bjck208 Glasgow Royal Infirmary'),
(321, 'https://ror.org/00bkxry42', 'en', 1, 'https://ror.org/00bkxry42 Fraunhofer Institut für Mikrotechnik und Mikrosysteme Fraunhofer Institute for Microengineering and Microsystems'),
(322, 'https://ror.org/00bmv4102', 'nl', 1, 'https://ror.org/00bmv4102 Emma Children’s Hospital Emma Kinderziekenhuis'),
(323, 'https://ror.org/00bmzhb16', 'en', 1, 'https://ror.org/00bmzhb16 Gembloux Agro-Bio Tech'),
(324, 'https://ror.org/00bpn0984', 'it', 1, 'https://ror.org/00bpn0984 Ospedale San Paolo'),
(325, 'https://ror.org/00bq4rw46', 'es', 1, 'https://ror.org/00bq4rw46 Hospital Italiano de Buenos Aires'),
(326, 'https://ror.org/00bq8v746', 'no_lang_code', 1, 'https://ror.org/00bq8v746 Aomori Prefectural Central Hospital é’ę£®ēœŒē«‹äø­å¤®ē—…é™¢'),
(327, 'https://ror.org/00bs3zm56', 'no_lang_code', 1, 'https://ror.org/00bs3zm56 Nagasaki Municipal Hospital é•·å“ŽćæćŖćØćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼åø‚ę°‘ē—…é™¢'),
(328, 'https://ror.org/00bsyjc58', 'en', 1, 'https://ror.org/00bsyjc58 Kanchi Mamunivar Centre for Post Graduate Studies'),
(329, 'https://ror.org/00btty905', 'en', 1, 'https://ror.org/00btty905 Ireland Army Community Hospital'),
(330, 'https://ror.org/00bwhj131', 'en', 1, 'https://ror.org/00bwhj131 Newark Beth Israel Medical Center'),
(331, 'https://ror.org/00bx6dj65', 'en', 1, 'https://ror.org/00bx6dj65 Hosei University 法政大学'),
(332, 'https://ror.org/00bx71042', 'en', 1, 'https://ror.org/00bx71042 Coombe Women & Infants University Hospital Ospidéal Ollscoile Ban agus NaíonÔn an Chúim'),
(333, 'https://ror.org/00bxj7497', 'en', 1, 'https://ror.org/00bxj7497 Vidant Medical Center'),
(334, 'https://ror.org/00bxsm637', 'no_lang_code', 1, 'https://ror.org/00bxsm637 MTU Aero Engines (Germany)'),
(335, 'https://ror.org/00byr8j11', 'en', 1, 'https://ror.org/00byr8j11 National Science Teachers Association'),
(336, 'https://ror.org/00bz3ax41', 'en', 1, 'https://ror.org/00bz3ax41 University of Dubuque UniversitƩ de dubuque'),
(337, 'https://ror.org/00bz6qm80', 'en', 1, 'https://ror.org/00bz6qm80 Dillard University'),
(338, 'https://ror.org/00c01js51', 'en', 1, 'https://ror.org/00c01js51 The Ohio State University Wexner Medical Center'),
(339, 'https://ror.org/00c051916', 'fr', 1, 'https://ror.org/00c051916 Centre Technique des Industries MƩcaniques Technical Centre for Mechanical Industry'),
(340, 'https://ror.org/00c099g34', 'en', 1, 'https://ror.org/00c099g34 First People''s Hospital of Yunnan Province äŗ‘å—ēœē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(341, 'https://ror.org/00c879s84', 'en', 1, 'https://ror.org/00c879s84 Groote Schuur Hospital'),
(342, 'https://ror.org/00c8t7d47', 'tr', 1, 'https://ror.org/00c8t7d47 Gülhane Askerî Tıp Akademisi'),
(343, 'https://ror.org/00c8v4891', 'en', 1, 'https://ror.org/00c8v4891 Long Island Jewish Medical Center'),
(344, 'https://ror.org/00c9syb98', 'en', 1, 'https://ror.org/00c9syb98 Merlin Park University Hospital'),
(345, 'https://ror.org/00cb9nn43', 'en', 1, 'https://ror.org/00cb9nn43 American Dental Association'),
(346, 'https://ror.org/00cb9w016', 'en', 1, 'https://ror.org/00cb9w016 Ain Shams University Ų¬Ų§Ł…Ų¹Ų© Ų¹ŁŠŁ† Ų“Ł…Ų³'),
(347, 'https://ror.org/00ccec020', 'pt', 1, 'https://ror.org/00ccec020 Universidade do Oeste Paulista University of Western SĆ£o Paulo'),
(348, 'https://ror.org/00cckeg37', 'en', 1, 'https://ror.org/00cckeg37 Southern Polytechnic State University'),
(349, 'https://ror.org/00cd86r95', 'en', 1, 'https://ror.org/00cd86r95 Frontier Medical College ŁŲ±Ł†Ł¹ŪŒŲ¦Ų± Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(350, 'https://ror.org/00cd9s024', 'en', 1, 'https://ror.org/00cd9s024 Shanghai Children''s Medical Center äøŠęµ·å„æē«„åŒ»å­¦äø­åæƒ'),
(351, 'https://ror.org/00cdwy346', 'en', 1, 'https://ror.org/00cdwy346 Freeman Hospital'),
(352, 'https://ror.org/00cdz3124', 'es', 1, 'https://ror.org/00cdz3124 Hospital General Universitario Santa MarĆ­a del Rosell'),
(353, 'https://ror.org/00ceh2v36', 'en', 1, 'https://ror.org/00ceh2v36 Hiratsuka City Hospital å¹³å”šåø‚ę°‘ē—…é™¢'),
(354, 'https://ror.org/00cfdk448', 'en', 1, 'https://ror.org/00cfdk448 Royal Cornwall Hospital'),
(355, 'https://ror.org/00cfm3y81', 'es', 1, 'https://ror.org/00cfm3y81 Hospital General Universitario Morales Meseguer'),
(356, 'https://ror.org/00cgjx575', 'en', 1, 'https://ror.org/00cgjx575 TRTech'),
(357, 'https://ror.org/00chbca67', 'en', 1, 'https://ror.org/00chbca67 Bhabha Atomic Research Center Hospital'),
(358, 'https://ror.org/00chfja07', 'en', 1, 'https://ror.org/00chfja07 Seoul National University of Science and Technology ģ„œģšøź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(359, 'https://ror.org/00chxjy07', 'en', 1, 'https://ror.org/00chxjy07 Fundação Conservatório Regional de Gaia Gaia Regional Conservatory Foundation'),
(360, 'https://ror.org/00cmfmh53', 'it', 1, 'https://ror.org/00cmfmh53 Azienda Ospedaliera G.Rummo'),
(361, 'https://ror.org/00cmk4n56', 'it', 1, 'https://ror.org/00cmk4n56 Krankenhaus Bozen Ospedale di Bolzano'),
(362, 'https://ror.org/00cr15z55', 'en', 1, 'https://ror.org/00cr15z55 St. Elizabeth''s Medical Center'),
(363, 'https://ror.org/00cr96696', 'en', 1, 'https://ror.org/00cr96696 Center for Clinical Research and Prevention Center for Klinisk Forskning og Forebyggelse'),
(364, 'https://ror.org/00ctk8b26', 'en', 1, 'https://ror.org/00ctk8b26 Bristol City Council'),
(365, 'https://ror.org/00cwrhn79', 'en', 1, 'https://ror.org/00cwrhn79 Saint Vincent''s Catholic Medical Center'),
(366, 'https://ror.org/00d0r9b26', 'hu', 1, 'https://ror.org/00d0r9b26 Heim PÔl GyermekkórhÔz PÔl Heim Children''s Hospital'),
(367, 'https://ror.org/00d0zag42', 'no_lang_code', 1, 'https://ror.org/00d0zag42 Wooridul Hospital ģš°ė¦¬ė“¤ 병원'),
(368, 'https://ror.org/00d264c35', 'en', 1, 'https://ror.org/00d264c35 Frederiksberg Hospital'),
(369, 'https://ror.org/00d80zx46', 'en', 1, 'https://ror.org/00d80zx46 Chang Gung University'),
(370, 'https://ror.org/00d973h41', 'en', 1, 'https://ror.org/00d973h41 Sƶdertƶrn University Sƶdertƶrns hƶgskola'),
(371, 'https://ror.org/00d9qf519', 'en', 1, 'https://ror.org/00d9qf519 Topiwala National Medical College & BYL Nair Charitable Hospital'),
(372, 'https://ror.org/00dc7s858', 'en', 1, 'https://ror.org/00dc7s858 Jiangxi Agricultural University ę±Ÿč„æå†œäøšå¤§å­¦'),
(373, 'https://ror.org/00ded8656', 'en', 1, 'https://ror.org/00ded8656 Pine Rest Christian Mental Health Services'),
(374, 'https://ror.org/00dfape04', 'en', 1, 'https://ror.org/00dfape04 Good Moonhwa Hospital ģ¢‹ģ€ė¬øķ™”ė³‘ģ›'),
(375, 'https://ror.org/00dpx3e98', 'en', 1, 'https://ror.org/00dpx3e98 American Meteorological Society'),
(376, 'https://ror.org/00dr1cn74', 'en', 1, 'https://ror.org/00dr1cn74 Hangzhou Center for Disease Control and Prevention ę­å·žåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(377, 'https://ror.org/00dr54257', 'en', 1, 'https://ror.org/00dr54257 Alcorn State University'),
(378, 'https://ror.org/00drynx17', 'en', 1, 'https://ror.org/00drynx17 Fukuoka Institute of Health and Environmental Sciences ē¦å²”ēœŒäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(379, 'https://ror.org/00dt08z19', 'en', 1, 'https://ror.org/00dt08z19 Argyll and Bute Hospital'),
(380, 'https://ror.org/00dv9aw81', 'no_lang_code', 1, 'https://ror.org/00dv9aw81 Experimental Pathology Laboratories'),
(381, 'https://ror.org/00dwz8y55', 'en', 1, 'https://ror.org/00dwz8y55 Sheppard Pratt Health System'),
(382, 'https://ror.org/00e16h982', 'en', 1, 'https://ror.org/00e16h982 Osun State University'),
(383, 'https://ror.org/00e49gy82', 'en', 1, 'https://ror.org/00e49gy82 China University of Political Science and Law 中国政法大学'),
(384, 'https://ror.org/00e4zxr41', 'en', 1, 'https://ror.org/00e4zxr41 Ross University School of Veterinary Medicine'),
(385, 'https://ror.org/00e7ez509', 'no_lang_code', 1, 'https://ror.org/00e7ez509 Daegu Fatima Hospital ėŒ€źµ¬ķŒŒķ‹°ė§ˆė³‘ģ›'),
(386, 'https://ror.org/00e7taa66', 'en', 1, 'https://ror.org/00e7taa66 Ingalls Memorial Hospital'),
(387, 'https://ror.org/00e7vmq69', 'en', 1, 'https://ror.org/00e7vmq69 Polytechnic University of the Philippines'),
(388, 'https://ror.org/00e9xa106', 'en', 1, 'https://ror.org/00e9xa106 University of Maine at Machias'),
(389, 'https://ror.org/00eekd641', 'en', 1, 'https://ror.org/00eekd641 Robert Wood Johnson University Hospital'),
(390, 'https://ror.org/00eg8ch54', 'en', 1, 'https://ror.org/00eg8ch54 Hebrew Hospital'),
(391, 'https://ror.org/00egdv862', 'no_lang_code', 1, 'https://ror.org/00egdv862 Hongik University ķ™ģµėŒ€ķ•™źµ'),
(392, 'https://ror.org/00eh7f421', 'no_lang_code', 1, 'https://ror.org/00eh7f421 E-Da Hospital'),
(393, 'https://ror.org/00ek9j693', 'en', 1, 'https://ror.org/00ek9j693 Bloodworks Northwest'),
(394, 'https://ror.org/00em04n91', 'en', 1, 'https://ror.org/00em04n91 Moscow State University of Civil Engineering Московский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š”Ń‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Университет'),
(395, 'https://ror.org/00emz0366', 'no_lang_code', 1, 'https://ror.org/00emz0366 Woosuk University ģš°ģ„ėŒ€ķ•™źµ'),
(396, 'https://ror.org/00en92979', 'en', 1, 'https://ror.org/00en92979 Kaohsiung Municipal Kai-Syuan Psychiatric Hospital'),
(397, 'https://ror.org/00enq8e33', 'en', 1, 'https://ror.org/00enq8e33 Aurelia Hospital'),
(398, 'https://ror.org/00envkz24', 'en', 1, 'https://ror.org/00envkz24 Greenlane Clinical Centre'),
(399, 'https://ror.org/00ep78v21', 'en', 1, 'https://ror.org/00ep78v21 Advocate Good Samaritan Hospital'),
(400, 'https://ror.org/00ey54k21', 'pt', 1, 'https://ror.org/00ey54k21 Universidade de Ribeirão Preto University of Ribeirão Preto'),
(401, 'https://ror.org/00eyk9919', 'en', 1, 'https://ror.org/00eyk9919 Holy Family Hospital ŪŁˆŁ„ŪŒ ŁŪŒŁ…Ł„ŪŒ ہسپتال'),
(402, 'https://ror.org/00eysw063', 'en', 1, 'https://ror.org/00eysw063 Liverpool Women''s Hospital'),
(403, 'https://ror.org/00f1xkb20', 'no_lang_code', 1, 'https://ror.org/00f1xkb20 Robosoft (France)'),
(404, 'https://ror.org/00f200z37', 'en', 1, 'https://ror.org/00f200z37 Chonnam National University Hospital'),
(405, 'https://ror.org/00f2gwr16', 'en', 1, 'https://ror.org/00f2gwr16 Lankenau Medical Center'),
(406, 'https://ror.org/00f2txz25', 'no_lang_code', 1, 'https://ror.org/00f2txz25 Kitasato University 北里大学'),
(407, 'https://ror.org/00f2ymb10', 'en', 1, 'https://ror.org/00f2ymb10 Chesapeake Research Consortium'),
(408, 'https://ror.org/00f2z7n96', 'en', 1, 'https://ror.org/00f2z7n96 RAND Corporation'),
(409, 'https://ror.org/00f4kgf41', 'en', 1, 'https://ror.org/00f4kgf41 Gaziantep Children''s Hospital Gaziantep Ƈocuk Hastanesi'),
(410, 'https://ror.org/00f93yb19', 'en', 1, 'https://ror.org/00f93yb19 McKay Dee Hospital'),
(411, 'https://ror.org/00f9c2f73', 'en', 1, 'https://ror.org/00f9c2f73 GF Jooste Hospital'),
(412, 'https://ror.org/00fb7mg36', 'no_lang_code', 1, 'https://ror.org/00fb7mg36 San-ikukai Hospital č³›č‚²ä¼šē—…é™¢'),
(413, 'https://ror.org/00fbafs03', 'no_lang_code', 1, 'https://ror.org/00fbafs03 MBN Nanomaterialia (Italy)'),
(414, 'https://ror.org/00fc19b96', 'en', 1, 'https://ror.org/00fc19b96 Aomori Rosai Hospital é’ę£®åŠ“ē½ē—…é™¢'),
(415, 'https://ror.org/00fd4q681', 'en', 1, 'https://ror.org/00fd4q681 Krishna Institute of Medical Sciences'),
(416, 'https://ror.org/00fd9sj13', 'en', 1, 'https://ror.org/00fd9sj13 Daegu Catholic University Medical Center ėŒ€źµ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµė³‘ģ› ėŖØė°”ģ¼'),
(417, 'https://ror.org/00ff4bt20', 'en', 1, 'https://ror.org/00ff4bt20 Arcadia University'),
(418, 'https://ror.org/00fg98b82', 'en', 1, 'https://ror.org/00fg98b82 Kaiser Permanente San Diego Medical Center'),
(419, 'https://ror.org/00fgdyv87', 'no_lang_code', 1, 'https://ror.org/00fgdyv87 Hindu Rao Hospital'),
(420, 'https://ror.org/00fh72m39', 'en', 1, 'https://ror.org/00fh72m39 Vladimir State University for the Humanities ВлаГимирский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(421, 'https://ror.org/00fj3a809', 'en', 1, 'https://ror.org/00fj3a809 Good Samaritan Regional Medical Center'),
(422, 'https://ror.org/00fjv1g65', 'en', 1, 'https://ror.org/00fjv1g65 Kunming Children''s Hospital ę˜†ę˜Žåø‚å„æē«„åŒ»é™¢'),
(423, 'https://ror.org/00fk0yb75', 'en', 1, 'https://ror.org/00fk0yb75 Plastic Surgery Hospital'),
(424, 'https://ror.org/00fpw9a48', 'no_lang_code', 1, 'https://ror.org/00fpw9a48 Hamburg Ship Model Basin Hamburgische Schiffbau-Versuchsanstalt (Germany)'),
(425, 'https://ror.org/00fq5ev96', 'en', 1, 'https://ror.org/00fq5ev96 John B. Pierce Laboratory'),
(426, 'https://ror.org/00fqdfs68', 'en', 1, 'https://ror.org/00fqdfs68 Kuopio University Hospital'),
(427, 'https://ror.org/00fqdgv63', 'en', 1, 'https://ror.org/00fqdgv63 Lankenau Heart Institute'),
(428, 'https://ror.org/00fqtfz78', 'en', 1, 'https://ror.org/00fqtfz78 Beebe Healthcare'),
(429, 'https://ror.org/00ft41876', 'en', 1, 'https://ror.org/00ft41876 Marion duPont Scott Equine Medical Center'),
(430, 'https://ror.org/00ftebr67', 'en', 1, 'https://ror.org/00ftebr67 Wesley Medical Center');
INSERT INTO `rors` VALUES
(431, 'https://ror.org/00fthae95', 'en', 1, 'https://ror.org/00fthae95 Daping Hospital ē¬¬äø‰å†›åŒ»å¤§å­¦å¤§åŖåŒ»é™¢'),
(432, 'https://ror.org/00ftwze80', 'en', 1, 'https://ror.org/00ftwze80 University Dental Hospital on Cardiff University'),
(433, 'https://ror.org/00fv61j67', 'en', 1, 'https://ror.org/00fv61j67 MRC Laboratory for Molecular Cell Biology'),
(434, 'https://ror.org/00fvyjk73', 'en', 1, 'https://ror.org/00fvyjk73 Colby College'),
(435, 'https://ror.org/00fwdyt59', 'en', 1, 'https://ror.org/00fwdyt59 George Washington University Hospital'),
(436, 'https://ror.org/00fwhaq79', 'en', 1, 'https://ror.org/00fwhaq79 Lee University'),
(437, 'https://ror.org/00fxgea47', 'no_lang_code', 1, 'https://ror.org/00fxgea47 Novartis (China) åŒ—äŗ¬čÆŗåŽåˆ¶čÆęœ‰é™å…¬åø'),
(438, 'https://ror.org/00fz8k419', 'de', 1, 'https://ror.org/00fz8k419 HFR Freiburg Kantonsspital'),
(439, 'https://ror.org/00g1rc256', 'en', 1, 'https://ror.org/00g1rc256 Central DuPage Hospital'),
(440, 'https://ror.org/00g3pqv36', 'en', 1, 'https://ror.org/00g3pqv36 First Affiliated Hospital of Jiangxi Medical College'),
(441, 'https://ror.org/00g578s43', 'no_lang_code', 1, 'https://ror.org/00g578s43 Oregon Center For Applied Science (United States)'),
(442, 'https://ror.org/00g58cv73', 'en', 1, 'https://ror.org/00g58cv73 Chowan University'),
(443, 'https://ror.org/00g651r29', 'en', 1, 'https://ror.org/00g651r29 Maimonides Medical Center'),
(444, 'https://ror.org/00g6ka752', 'en', 1, 'https://ror.org/00g6ka752 Ferdowsi University of Mashhad دانؓگاه فردوسی مؓهد'),
(445, 'https://ror.org/00g972x47', 'en', 1, 'https://ror.org/00g972x47 Usmanu Danfodiyo University Teaching Hospital, Sokoto'),
(446, 'https://ror.org/00g9xaj16', 'en', 1, 'https://ror.org/00g9xaj16 Saint Agnes Medical Center'),
(447, 'https://ror.org/00gahk913', 'en', 1, 'https://ror.org/00gahk913 Sendai Nishitaga National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹ä»™å°č„æå¤šč³€ē—…é™¢'),
(448, 'https://ror.org/00gbcc509', 'en', 1, 'https://ror.org/00gbcc509 Gyeongsang National University Hospital'),
(449, 'https://ror.org/00gdcs242', 'en', 1, 'https://ror.org/00gdcs242 MESA Hospital Mesa Hastanesi'),
(450, 'https://ror.org/00gdxq105', 'en', 1, 'https://ror.org/00gdxq105 Vermont Department of Mental Health'),
(451, 'https://ror.org/00gffbx54', 'fr', 1, 'https://ror.org/00gffbx54 HĆ“pital La Rabta المستؓفى Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ الرابطة'),
(452, 'https://ror.org/00ghjek97', 'en', 1, 'https://ror.org/00ghjek97 Orel State University named after I.S. Turgenev ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. Š”. Š¢ŃƒŃ€Š³ŠµŠ½ŠµŠ²Š°'),
(453, 'https://ror.org/00gjahp83', 'en', 1, 'https://ror.org/00gjahp83 Midwestern Regional Medical Center'),
(454, 'https://ror.org/00gkd5869', 'en', 1, 'https://ror.org/00gkd5869 Lagos University Teaching Hospital'),
(455, 'https://ror.org/00gr1q288', 'en', 1, 'https://ror.org/00gr1q288 Tokai University Hachioji Hospital ę±ęµ·å¤§å­¦åŒ»å­¦éƒØä»˜å±žå…«ēŽ‹å­ē—…é™¢'),
(456, 'https://ror.org/00gs85y70', 'en', 1, 'https://ror.org/00gs85y70 Bellin Memorial Hospital'),
(457, 'https://ror.org/00gtcbp88', 'pt', 1, 'https://ror.org/00gtcbp88 Universidade de Pernambuco University of Pernambuco'),
(458, 'https://ror.org/00gv7aj90', 'es', 1, 'https://ror.org/00gv7aj90 Hospital Barros Luco-Trudeau'),
(459, 'https://ror.org/00gvw6327', 'en', 1, 'https://ror.org/00gvw6327 King George''s Medical University ą¤›ą¤¤ą„ą¤°ą¤Ŗą¤¤ą¤æ ą¤¶ą¤¾ą¤¹ą„‚ą¤œą„€ महाराज ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(460, 'https://ror.org/00gw6hy83', 'en', 1, 'https://ror.org/00gw6hy83 Rotherham General Hospital'),
(461, 'https://ror.org/00h04da97', 'en', 1, 'https://ror.org/00h04da97 McNeese State University'),
(462, 'https://ror.org/00h1apf46', 'fr', 1, 'https://ror.org/00h1apf46 Centre Hospitalier Universitaire de Yopougon'),
(463, 'https://ror.org/00h2bj464', 'en', 1, 'https://ror.org/00h2bj464 Deaconess Hospital'),
(464, 'https://ror.org/00h55v928', 'en', 1, 'https://ror.org/00h55v928 Helwan University Ų¬Ų§Ł…Ų¹Ų© Ų­Ł„ŁˆŲ§Ł†'),
(465, 'https://ror.org/00h7y2d26', 'no_lang_code', 1, 'https://ror.org/00h7y2d26 Sensimetrics Corporation'),
(466, 'https://ror.org/00h85x510', 'no_lang_code', 1, 'https://ror.org/00h85x510 Tembec'),
(467, 'https://ror.org/00h974d79', 'pt', 1, 'https://ror.org/00h974d79 Instituto de Estudos Superiores Financeiros e Fiscais'),
(468, 'https://ror.org/00hb4yd20', 'en', 1, 'https://ror.org/00hb4yd20 MGMA Health Care Consulting Group'),
(469, 'https://ror.org/00hbq5j06', 'no_lang_code', 1, 'https://ror.org/00hbq5j06 Ecogenomics (Japan)'),
(470, 'https://ror.org/00hby5j36', 'pt', 1, 'https://ror.org/00hby5j36 Hospital FelĆ­cio Rocho'),
(471, 'https://ror.org/00hdf8e67', 'en', 1, 'https://ror.org/00hdf8e67 Jawaharlal Nehru Medical College'),
(472, 'https://ror.org/00hfbva78', 'en', 1, 'https://ror.org/00hfbva78 General Hospital of Guangzhou Military Command å¹æå·žå†›åŒŗå¹æå·žę€»åŒ»é™¢'),
(473, 'https://ror.org/00hhkn466', 'en', 1, 'https://ror.org/00hhkn466 Japan Society for the Promotion of Science ę—„ęœ¬å­¦č”“ęŒÆčˆˆä¼š'),
(474, 'https://ror.org/00hhwej14', 'en', 1, 'https://ror.org/00hhwej14 Royal Hampshire County Hospital'),
(475, 'https://ror.org/00hm23551', 'no_lang_code', 1, 'https://ror.org/00hm23551 Nishinomiya Municipal Central Hospital 脿宮市立中央病院'),
(476, 'https://ror.org/00hm9kt34', 'sv', 1, 'https://ror.org/00hm9kt34 Danderyds sjukhus'),
(477, 'https://ror.org/00hmeez77', 'en', 1, 'https://ror.org/00hmeez77 Barzilai Medical Center'),
(478, 'https://ror.org/00hn92440', 'en', 1, 'https://ror.org/00hn92440 Broomfield Hospital'),
(479, 'https://ror.org/00hnyb151', 'no_lang_code', 1, 'https://ror.org/00hnyb151 Luna Innovations (United States)'),
(480, 'https://ror.org/00hp6as40', 'en', 1, 'https://ror.org/00hp6as40 Mammoth Hospital'),
(481, 'https://ror.org/00hpnj894', 'es', 1, 'https://ror.org/00hpnj894 Hospital ClĆ­nico Universitario de Valencia'),
(482, 'https://ror.org/00hpqmv06', 'en', 1, 'https://ror.org/00hpqmv06 Ministry of Health'),
(483, 'https://ror.org/00hqkan37', 'en', 1, 'https://ror.org/00hqkan37 Lebanese American University الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ©'),
(484, 'https://ror.org/00hswnf74', 'no_lang_code', 1, 'https://ror.org/00hswnf74 Shizuoka City Shimizu Hospital é™å²”åø‚ē«‹ęø…ę°“ē—…é™¢'),
(485, 'https://ror.org/00htwgm11', 'en', 1, 'https://ror.org/00htwgm11 National University of Salta Universidad Nacional de Salta'),
(486, 'https://ror.org/00hw84d70', 'en', 1, 'https://ror.org/00hw84d70 Baba Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗćƒšć‚¬ć‚µć‚¹ é¦¬å “čØ˜åæµē—…é™¢'),
(487, 'https://ror.org/00hwsxp30', 'tr', 1, 'https://ror.org/00hwsxp30 Ankara Fizik Tedavi ve Rehabilitasyon Eğitim ve Araştırma Hastanesi'),
(488, 'https://ror.org/00hx9k210', 'en', 1, 'https://ror.org/00hx9k210 Sasebo City General Hospital ä½äø–äæåø‚ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(489, 'https://ror.org/00hysg385', 'en', 1, 'https://ror.org/00hysg385 Sinai Grace Hospital'),
(490, 'https://ror.org/00j0b8v53', 'en', 1, 'https://ror.org/00j0b8v53 Regional Medical Research Center ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤—ą¤æą¤Øą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(491, 'https://ror.org/00j0z5m32', 'en', 1, 'https://ror.org/00j0z5m32 Alabama Department of Public Health'),
(492, 'https://ror.org/00j2n4x83', 'en', 1, 'https://ror.org/00j2n4x83 Narayana Dental College and Hospital'),
(493, 'https://ror.org/00j2wht38', 'en', 1, 'https://ror.org/00j2wht38 Virginia Department of Health'),
(494, 'https://ror.org/00j4k1h63', 'en', 1, 'https://ror.org/00j4k1h63 National Institute of Environmental Health Sciences'),
(495, 'https://ror.org/00j4pe902', 'en', 1, 'https://ror.org/00j4pe902 Maharaja Krishna Chandra Gajapati Medical College and Hospital'),
(496, 'https://ror.org/00j4pze04', 'es', 1, 'https://ror.org/00j4pze04 Hospital de Basurto'),
(497, 'https://ror.org/00j6r8583', 'en', 1, 'https://ror.org/00j6r8583 Swami Keshwanand Rajasthan Agricultural University'),
(498, 'https://ror.org/00j899309', 'no_lang_code', 1, 'https://ror.org/00j899309 Inflexxion (United States)'),
(499, 'https://ror.org/00j8ram51', 'en', 1, 'https://ror.org/00j8ram51 Cambridge Military Hospital'),
(500, 'https://ror.org/00j8xcs04', 'en', 1, 'https://ror.org/00j8xcs04 Sir Sayajirao General Hospital Medical College'),
(501, 'https://ror.org/00j9c2840', 'en', 1, 'https://ror.org/00j9c2840 Oslo University Hospital'),
(502, 'https://ror.org/00j9f7w81', 'es', 1, 'https://ror.org/00j9f7w81 Hospital Terrassa'),
(503, 'https://ror.org/00jbkk316', 'en', 1, 'https://ror.org/00jbkk316 Buffalo VA Medical Center'),
(504, 'https://ror.org/00jc57298', 'en', 1, 'https://ror.org/00jc57298 Central Baptist Hospital'),
(505, 'https://ror.org/00jffx511', 'en', 1, 'https://ror.org/00jffx511 PRIST University'),
(506, 'https://ror.org/00jh2w590', 'en', 1, 'https://ror.org/00jh2w590 New Mexico Department of Health'),
(507, 'https://ror.org/00jhae347', 'no_lang_code', 1, 'https://ror.org/00jhae347 Medical Protective'),
(508, 'https://ror.org/00jhyq802', 'en', 1, 'https://ror.org/00jhyq802 Regent University'),
(509, 'https://ror.org/00jjeh629', 'en', 1, 'https://ror.org/00jjeh629 Harvard–MIT Division of Health Sciences and Technology'),
(510, 'https://ror.org/00jjvav84', 'en', 1, 'https://ror.org/00jjvav84 The Hamner Institutes for Health Sciences'),
(511, 'https://ror.org/00jk4qh27', 'no_lang_code', 1, 'https://ror.org/00jk4qh27 TECO'),
(512, 'https://ror.org/00jkkm943', 'pt', 1, 'https://ror.org/00jkkm943 Instituto Superior Manuel Teixeira Gomes'),
(513, 'https://ror.org/00jpae132', 'en', 1, 'https://ror.org/00jpae132 Hillingdon Hospital'),
(514, 'https://ror.org/00jpq0w62', 'fr', 1, 'https://ror.org/00jpq0w62 Centre Hospitalier Universitaire de Tours'),
(515, 'https://ror.org/00jq51013', 'en', 1, 'https://ror.org/00jq51013 Cardinal Glennon Children’s Medical Center'),
(516, 'https://ror.org/00jv89z46', 'en', 1, 'https://ror.org/00jv89z46 Louisiana Board of Regents'),
(517, 'https://ror.org/00jw56w10', 'nl', 1, 'https://ror.org/00jw56w10 Slingeland Ziekenhuis'),
(518, 'https://ror.org/00jy2zq62', 'en', 1, 'https://ror.org/00jy2zq62 Gifu Prefectural Tajimi Hospital å²é˜œēœŒē«‹å¤šę²»č¦‹ē—…é™¢'),
(519, 'https://ror.org/00jy5cn48', 'en', 1, 'https://ror.org/00jy5cn48 Meitan General Hospital ē…¤ē‚­ę€»åŒ»é™¢'),
(520, 'https://ror.org/00jy9e726', 'en', 1, 'https://ror.org/00jy9e726 Capital University'),
(521, 'https://ror.org/00jyx0v10', 'en', 1, 'https://ror.org/00jyx0v10 Alfred I. duPont Hospital for Children'),
(522, 'https://ror.org/00jzexr10', 'en', 1, 'https://ror.org/00jzexr10 Astrakhan State Technical University Астраханский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(523, 'https://ror.org/00k1crd82', 'en', 1, 'https://ror.org/00k1crd82 Museum of Science'),
(524, 'https://ror.org/00k1xr956', 'en', 1, 'https://ror.org/00k1xr956 Grady Health System'),
(525, 'https://ror.org/00k27zs44', 'no_lang_code', 1, 'https://ror.org/00k27zs44 Oxford Biomedical Research'),
(526, 'https://ror.org/00k49k182', 'es', 1, 'https://ror.org/00k49k182 Hospital Virgen de la Luz'),
(527, 'https://ror.org/00k57ac30', 'pt', 1, 'https://ror.org/00k57ac30 Instituto Superior de Novas ProfissƵes'),
(528, 'https://ror.org/00k5m1279', 'en', 1, 'https://ror.org/00k5m1279 West Virginia University at Parkersburg'),
(529, 'https://ror.org/00k5vcj72', 'en', 1, 'https://ror.org/00k5vcj72 Molde Hospital Molde sjukehus'),
(530, 'https://ror.org/00k7r7f88', 'en', 1, 'https://ror.org/00k7r7f88 Xuan Wu Hospital of the Capital Medical University åŒ—äŗ¬åø‚č€å¹“ē—…åŒ»ē–—ē ”ē©¶äø­åæƒ'),
(531, 'https://ror.org/00k7zpp15', 'en', 1, 'https://ror.org/00k7zpp15 California Animal Hospital'),
(532, 'https://ror.org/00k8adf88', 'en', 1, 'https://ror.org/00k8adf88 Ahmedabad Civil Hospital'),
(533, 'https://ror.org/00k8kp236', 'en', 1, 'https://ror.org/00k8kp236 Applied Technology Council'),
(534, 'https://ror.org/00k9e1m49', 'en', 1, 'https://ror.org/00k9e1m49 Sri Devaraj Urs Medical College'),
(535, 'https://ror.org/00kays408', 'pt', 1, 'https://ror.org/00kays408 Universidade Gama Filho, University Gama Filho'),
(536, 'https://ror.org/00kde4z41', 'pt', 1, 'https://ror.org/00kde4z41 Lutheran University of Brazil Universidad Luterana de Brasil Universidade Luterana do Brasil'),
(537, 'https://ror.org/00kfr4659', 'en', 1, 'https://ror.org/00kfr4659 Mito Red Cross Hospital ę°“ęˆøčµ¤åå­—ē—…é™¢'),
(538, 'https://ror.org/00kg66g91', 'en', 1, 'https://ror.org/00kg66g91 Women & Children''s Hospital of Buffalo'),
(539, 'https://ror.org/00kgerq53', 'en', 1, 'https://ror.org/00kgerq53 Hawaii Department of Health'),
(540, 'https://ror.org/00khh5r84', 'en', 1, 'https://ror.org/00khh5r84 Tokyo Gakugei University ę±äŗ¬å­¦čŠøå¤§å­¦'),
(541, 'https://ror.org/00kmzgn35', 'en', 1, 'https://ror.org/00kmzgn35 Hawke''s Bay Hospital'),
(542, 'https://ror.org/00kmzyw28', 'tr', 1, 'https://ror.org/00kmzyw28 Ankara Atatürk Eğitim ve Araştırma Hastanesi'),
(543, 'https://ror.org/00kne5276', 'no_lang_code', 1, 'https://ror.org/00kne5276 Hektoen Institute'),
(544, 'https://ror.org/00knyd990', 'en', 1, 'https://ror.org/00knyd990 UK Intelligent Systems Research Institute'),
(545, 'https://ror.org/00krab219', 'en', 1, 'https://ror.org/00krab219 Nippon Medical School ę—„ęœ¬åŒ»ē§‘å¤§å­¦'),
(546, 'https://ror.org/00ktqrd38', 'en', 1, 'https://ror.org/00ktqrd38 Kyoto Prefectural University äŗ¬éƒ½åŗœē«‹å¤§å­¦'),
(547, 'https://ror.org/00kv9pj15', 'no_lang_code', 1, 'https://ror.org/00kv9pj15 BT Group (United Kingdom)'),
(548, 'https://ror.org/00kx7fe64', 'en', 1, 'https://ror.org/00kx7fe64 Fukui Red Cross Hospital ē¦äŗ•čµ¤åå­—ē—…é™¢'),
(549, 'https://ror.org/00ky3az31', 'en', 1, 'https://ror.org/00ky3az31 VA Puget Sound Health Care System'),
(550, 'https://ror.org/00kym4953', 'no_lang_code', 1, 'https://ror.org/00kym4953 Gemite Group'),
(551, 'https://ror.org/00kzych23', 'en', 1, 'https://ror.org/00kzych23 Nippon Sport Science University ę—„ęœ¬ä½“č‚²å¤§å­¦'),
(552, 'https://ror.org/00m1n2078', 'no_lang_code', 1, 'https://ror.org/00m1n2078 CAE (Canada)'),
(553, 'https://ror.org/00m2ag473', 'en', 1, 'https://ror.org/00m2ag473 Archbold Biological Station'),
(554, 'https://ror.org/00m2etp60', 'en', 1, 'https://ror.org/00m2etp60 Holy Family Hospital Nazareth'),
(555, 'https://ror.org/00m4gxn44', 'en', 1, 'https://ror.org/00m4gxn44 Government Medical College'),
(556, 'https://ror.org/00m4rwq02', 'en', 1, 'https://ror.org/00m4rwq02 Christopher Newport University'),
(557, 'https://ror.org/00m5fzs56', 'en', 1, 'https://ror.org/00m5fzs56 Maebashi Red Cross Hospital å‰ę©‹čµ¤åå­—ē—…é™¢'),
(558, 'https://ror.org/00m72p590', 'en', 1, 'https://ror.org/00m72p590 Saint Joseph''s Hospital'),
(559, 'https://ror.org/00m72wv30', 'en', 1, 'https://ror.org/00m72wv30 St. Joseph''s Hospital and Medical Center'),
(560, 'https://ror.org/00m8prc86', 'no_lang_code', 1, 'https://ror.org/00m8prc86 Deutsche Telekom (Germany) German Telecom'),
(561, 'https://ror.org/00m8tc820', 'en', 1, 'https://ror.org/00m8tc820 Kanazawa Medical Center é‡‘ę²¢åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(562, 'https://ror.org/00m9c2804', 'en', 1, 'https://ror.org/00m9c2804 Philadelphia College of Osteopathic Medicine'),
(563, 'https://ror.org/00m9ydx43', 'en', 1, 'https://ror.org/00m9ydx43 National Hospital Organization Mito Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ę°“ęˆøåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(564, 'https://ror.org/00mbaq869', 'en', 1, 'https://ror.org/00mbaq869 Timescape Surveys'),
(565, 'https://ror.org/00mbhee72', 'en', 1, 'https://ror.org/00mbhee72 University Medical Center of Princeton'),
(566, 'https://ror.org/00mbsbt95', 'it', 1, 'https://ror.org/00mbsbt95 Ospedale San Giovanni Bellinzona'),
(567, 'https://ror.org/00mc5wj35', 'en', 1, 'https://ror.org/00mc5wj35 Mudanjiang Medical University ē‰”äø¹ę±ŸåŒ»å­¦é™¢'),
(568, 'https://ror.org/00mc91w09', 'it', 1, 'https://ror.org/00mc91w09 Ospedale Cisanello'),
(569, 'https://ror.org/00mch1v74', 'en', 1, 'https://ror.org/00mch1v74 John Muir Medical Center'),
(570, 'https://ror.org/00mczdx43', 'en', 1, 'https://ror.org/00mczdx43 National University of San Luis Universidad Nacional de San Luis'),
(571, 'https://ror.org/00md77g41', 'it', 1, 'https://ror.org/00md77g41 Casa Sollievo della Sofferenza Home for Relief of the Suffering'),
(572, 'https://ror.org/00menq219', 'en', 1, 'https://ror.org/00menq219 Naruto University of Education 鳓門教育大学'),
(573, 'https://ror.org/00meyvj69', 'en', 1, 'https://ror.org/00meyvj69 St. Lawrence River Institute of Environmental Sciences'),
(574, 'https://ror.org/00mj4n083', 'en', 1, 'https://ror.org/00mj4n083 St. Francis Hospital'),
(575, 'https://ror.org/00mj9k629', 'en', 1, 'https://ror.org/00mj9k629 Children''s Hospital Colorado'),
(576, 'https://ror.org/00mjaaf25', 'en', 1, 'https://ror.org/00mjaaf25 National School of Public Health'),
(577, 'https://ror.org/00mjawt10', 'en', 1, 'https://ror.org/00mjawt10 National Sun Yat-sen University'),
(578, 'https://ror.org/00mmq5f59', 'en', 1, 'https://ror.org/00mmq5f59 Mahatma Phule Krishi Vidyapeeth'),
(579, 'https://ror.org/00mns7k70', 'en', 1, 'https://ror.org/00mns7k70 Savannah State University UniversitĆ© d''Ɖtat de Savannah'),
(580, 'https://ror.org/00mrhvv69', 'en', 1, 'https://ror.org/00mrhvv69 Kementerian Kesihatan Singapura Ministry of Health ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®šąÆą®•ą®¾ą®¤ą®¾ą®° ą®…ą®®ąÆˆą®šąÆą®šą®•ą®®ąÆ ę–°åŠ å”å«ē”ŸéƒØ'),
(581, 'https://ror.org/00mrw8k38', 'en', 1, 'https://ror.org/00mrw8k38 Ramkhamhaeng University ดหาวณทยาคัยราดคำแหง'),
(582, 'https://ror.org/00mtrzx11', 'es', 1, 'https://ror.org/00mtrzx11 Hospital Nacional Cayetano Heredia'),
(583, 'https://ror.org/00mvp1q86', 'en', 1, 'https://ror.org/00mvp1q86 Hemwati Nandan Bahuguna Garhwal University गढ़वाल ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(584, 'https://ror.org/00mwdv335', 'en', 1, 'https://ror.org/00mwdv335 AcadƩmie new-yorkaise de mƩdecine New York Academy of Medicine'),
(585, 'https://ror.org/00mwhaw71', 'en', 1, 'https://ror.org/00mwhaw71 Mae Fah Luang University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąø”ą¹ˆąøŸą¹‰ąø²ąø«ąø„ąø§ąø‡'),
(586, 'https://ror.org/00mynj496', 'no_lang_code', 1, 'https://ror.org/00mynj496 Glazer Medical Solutions (United States)'),
(587, 'https://ror.org/00mz0c648', 'en', 1, 'https://ror.org/00mz0c648 Boise VA Medical Center'),
(588, 'https://ror.org/00n14a494', 'en', 1, 'https://ror.org/00n14a494 Korea Polar Research Institute ź·¹ģ§€ģ—°źµ¬ģ†Œ'),
(589, 'https://ror.org/00n1w4965', 'en', 1, 'https://ror.org/00n1w4965 MedStar Union Memorial Hospital'),
(590, 'https://ror.org/00n2w1t65', 'en', 1, 'https://ror.org/00n2w1t65 Presbyterian Hospital'),
(591, 'https://ror.org/00n3e1d98', 'en', 1, 'https://ror.org/00n3e1d98 Takasaki University of Health and Welfare é«˜å“Žå„åŗ·ē¦ē„‰å¤§å­¦'),
(592, 'https://ror.org/00n5htd36', 'en', 1, 'https://ror.org/00n5htd36 Westmar University'),
(593, 'https://ror.org/00n8yb347', 'en', 1, 'https://ror.org/00n8yb347 Bệnh viện Chợ Rįŗ«y Cho Ray Hospital'),
(594, 'https://ror.org/00n9v4y14', 'en', 1, 'https://ror.org/00n9v4y14 Good Samaritan Hospital'),
(595, 'https://ror.org/00nas2c56', 'no_lang_code', 1, 'https://ror.org/00nas2c56 Ericsson (Canada)'),
(596, 'https://ror.org/00nebyg34', 'en', 1, 'https://ror.org/00nebyg34 Central Maine Medical Center'),
(597, 'https://ror.org/00nf20x22', 'en', 1, 'https://ror.org/00nf20x22 Indira Gandhi Medical College and Research Institute'),
(598, 'https://ror.org/00ng6k310', 'en', 1, 'https://ror.org/00ng6k310 Chapel Allerton Hospital'),
(599, 'https://ror.org/00ngrq502', 'en', 1, 'https://ror.org/00ngrq502 Arak University دانؓگاه Ų§Ų±Ų§Ś©'),
(600, 'https://ror.org/00nh9x179', 'en', 1, 'https://ror.org/00nh9x179 St Bartholomew''s Hospital'),
(601, 'https://ror.org/00njz5525', 'en', 1, 'https://ror.org/00njz5525 Juravinski Hospital'),
(602, 'https://ror.org/00nk17n43', 'en', 1, 'https://ror.org/00nk17n43 University of Maine at Presque Isle'),
(603, 'https://ror.org/00nm7k655', 'en', 1, 'https://ror.org/00nm7k655 James Paget University Hospital'),
(604, 'https://ror.org/00nmnnk78', 'en', 1, 'https://ror.org/00nmnnk78 University Medical Center of El Paso'),
(605, 'https://ror.org/00nqxe643', 'en', 1, 'https://ror.org/00nqxe643 Cama and Albless Hospital'),
(606, 'https://ror.org/00nr17z89', 'en', 1, 'https://ror.org/00nr17z89 VA Palo Alto Health Care System'),
(607, 'https://ror.org/00nrgkr20', 'it', 1, 'https://ror.org/00nrgkr20 Cattinara Hospital Ospedale di Cattinara'),
(608, 'https://ror.org/00nrtez23', 'it', 1, 'https://ror.org/00nrtez23 Azienda Ospedaliero Universitaria San Giovanni Battista'),
(609, 'https://ror.org/00ns3e792', 'en', 1, 'https://ror.org/00ns3e792 King Edward Memorial Hospital'),
(610, 'https://ror.org/00nsz0a92', 'en', 1, 'https://ror.org/00nsz0a92 Omaha VA Medical Center'),
(611, 'https://ror.org/00nthx533', 'en', 1, 'https://ror.org/00nthx533 Geological Survey of India ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤­ą„‚ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤øą¤°ą„ą¤µą„‡ą¤•ą„ą¤·ą¤£'),
(612, 'https://ror.org/00nvxt968', 'de', 1, 'https://ror.org/00nvxt968 UniversitƤtsklinikum des Saarlandes'),
(613, 'https://ror.org/00nwc4v84', 'tr', 1, 'https://ror.org/00nwc4v84 İstanbul Eğitim ve Araştırma Hastanesi'),
(614, 'https://ror.org/00nx6aa03', 'en', 1, 'https://ror.org/00nx6aa03 Mater Research'),
(615, 'https://ror.org/00nxna028', 'en', 1, 'https://ror.org/00nxna028 HR Wallingford'),
(616, 'https://ror.org/00nyr7p12', 'en', 1, 'https://ror.org/00nyr7p12 Gauhati Medical College and Hospital ą¦—ą§Œą¦¹ą¦¾ą¦Ÿą§€ ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(617, 'https://ror.org/00nyxxr91', 'en', 1, 'https://ror.org/00nyxxr91 Peking University Cancer Hospital åŒ—äŗ¬å¤§å­¦č‚æē˜¤åŒ»é™¢'),
(618, 'https://ror.org/00nz9t738', 'en', 1, 'https://ror.org/00nz9t738 Ferrarotto Hospital'),
(619, 'https://ror.org/00nzje529', 'en', 1, 'https://ror.org/00nzje529 Antioch University New England'),
(620, 'https://ror.org/00p2tmy87', 'pt', 1, 'https://ror.org/00p2tmy87 Instituto Superior de Espinho'),
(621, 'https://ror.org/00p2x3741', 'en', 1, 'https://ror.org/00p2x3741 Southend Hospital'),
(622, 'https://ror.org/00p82hn55', 'en', 1, 'https://ror.org/00p82hn55 Salus University'),
(623, 'https://ror.org/00p8b0t20', 'en', 1, 'https://ror.org/00p8b0t20 Belarusian State Medical University Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(624, 'https://ror.org/00p8xqj61', 'en', 1, 'https://ror.org/00p8xqj61 Karpov Institute of Physical Chemistry Акционерное общество ŠžŃ€Š“ена Š¢Ń€ŃƒŠ“ового ŠšŃ€Š°ŃŠ½Š¾Š³Š¾ Знамени Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ физико-химический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š›.ŠÆ. ŠšŠ°Ń€ŠæŠ¾Š²Š°'),
(625, 'https://ror.org/00p9h0053', 'en', 1, 'https://ror.org/00p9h0053 Natural History Museum of Los Angeles County'),
(626, 'https://ror.org/00paq4p43', 'en', 1, 'https://ror.org/00paq4p43 Bay Pines VA Healthcare System'),
(627, 'https://ror.org/00pb8h375', 'en', 1, 'https://ror.org/00pb8h375 Bauman Moscow State Technical University Московский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š­. Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(628, 'https://ror.org/00pbh0a34', 'en', 1, 'https://ror.org/00pbh0a34 British Museum Yr Amgueddfa Brydeinig'),
(629, 'https://ror.org/00pcrz470', 'en', 1, 'https://ror.org/00pcrz470 Chengdu University of Traditional Chinese Medicine ęˆéƒ½äø­åŒ»čÆå¤§å­¦'),
(630, 'https://ror.org/00pczg388', 'en', 1, 'https://ror.org/00pczg388 Sinclair Community College'),
(631, 'https://ror.org/00pefnv05', 'en', 1, 'https://ror.org/00pefnv05 Museum of Heilongjiang Province é»‘é¾™ę±Ÿēœåšē‰©é¦†'),
(632, 'https://ror.org/00pf0g237', 'no_lang_code', 1, 'https://ror.org/00pf0g237 Theragen'),
(633, 'https://ror.org/00pg98t08', 'en', 1, 'https://ror.org/00pg98t08 Francis Marion University'),
(634, 'https://ror.org/00pg9d188', 'en', 1, 'https://ror.org/00pg9d188 Al Noor Hospitals'),
(635, 'https://ror.org/00pk1yr39', 'en', 1, 'https://ror.org/00pk1yr39 SĆørlandet Hospital Arendal SĆørlandet Sykehus HF'),
(636, 'https://ror.org/00pmcf502', 'no_lang_code', 1, 'https://ror.org/00pmcf502 Talisman Energy'),
(637, 'https://ror.org/00prpaj09', 'no_lang_code', 1, 'https://ror.org/00prpaj09 Alion Science and Technology (United States)'),
(638, 'https://ror.org/00pw0pp06', 'en', 1, 'https://ror.org/00pw0pp06 Graz University Hospital Univ. Klinikum Graz'),
(639, 'https://ror.org/00q09pe49', 'en', 1, 'https://ror.org/00q09pe49 National Taiwan University of Science and Technology'),
(640, 'https://ror.org/00q38e504', 'no_lang_code', 1, 'https://ror.org/00q38e504 Lerdsin Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ą¹€ąø„ąø“ąø”ąøŖąø“ąø™'),
(641, 'https://ror.org/00q5txg88', 'en', 1, 'https://ror.org/00q5txg88 Plains Health Centre'),
(642, 'https://ror.org/00q6w3x44', 'en', 1, 'https://ror.org/00q6w3x44 Ellis Hospital'),
(643, 'https://ror.org/00q6wbs64', 'no_lang_code', 1, 'https://ror.org/00q6wbs64 Tianjin Huanhu Hospital å¤©ę“„åø‚ēŽÆę¹–åŒ»é™¢'),
(644, 'https://ror.org/00q75av54', 'en', 1, 'https://ror.org/00q75av54 South Tyneside District Hospital'),
(645, 'https://ror.org/00qctrq52', 'en', 1, 'https://ror.org/00qctrq52 Manipal College of Medical Sciences'),
(646, 'https://ror.org/00qdkc036', 'no_lang_code', 1, 'https://ror.org/00qdkc036 Hoshigaoka Medical Center ę˜Ÿćƒ¶äø˜åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(647, 'https://ror.org/00qdsfq65', 'en', 1, 'https://ror.org/00qdsfq65 Korea National Institute of Health'),
(648, 'https://ror.org/00qexeh70', 'en', 1, 'https://ror.org/00qexeh70 Middlesex Hospital'),
(649, 'https://ror.org/00qezxe61', 'no_lang_code', 1, 'https://ror.org/00qezxe61 Ikeda Municipal Hospital 池田市立病院'),
(650, 'https://ror.org/00qfq7b40', 'no_lang_code', 1, 'https://ror.org/00qfq7b40 PerkinElmer Biosignal'),
(651, 'https://ror.org/00qhe6a56', 'no_lang_code', 1, 'https://ror.org/00qhe6a56 Miltenyi Biotec (Germany)'),
(652, 'https://ror.org/00qkhxq50', 'en', 1, 'https://ror.org/00qkhxq50 Jessa Hospital Jessa Ziekenhuis'),
(653, 'https://ror.org/00qm2vr07', 'en', 1, 'https://ror.org/00qm2vr07 Nakamura Gakuen University äø­ę‘å­¦åœ’å¤§å­¦'),
(654, 'https://ror.org/00qmnd673', 'en', 1, 'https://ror.org/00qmnd673 Kindai University Hospital čæ‘ē•æå¤§å­¦åŒ»å­¦éƒØ é™„å±žē—…é™¢'),
(655, 'https://ror.org/00qp1n828', 'en', 1, 'https://ror.org/00qp1n828 King George Hospital'),
(656, 'https://ror.org/00qpv3w06', 'en', 1, 'https://ror.org/00qpv3w06 Amref Health Africa'),
(657, 'https://ror.org/00qt4k071', 'it', 1, 'https://ror.org/00qt4k071 Ospedale San Filippo Neri'),
(658, 'https://ror.org/00qt5ka73', 'no_lang_code', 1, 'https://ror.org/00qt5ka73 Arttic (France)'),
(659, 'https://ror.org/00qvx5329', 'en', 1, 'https://ror.org/00qvx5329 Doheny Eye Institute'),
(660, 'https://ror.org/00qwj7906', 'no_lang_code', 1, 'https://ror.org/00qwj7906 EA Technology'),
(661, 'https://ror.org/00qwnam72', 'en', 1, 'https://ror.org/00qwnam72 Chiba Institute of Technology åƒč‘‰å·„ę„­å¤§å­¦'),
(662, 'https://ror.org/00qz24g20', 'en', 1, 'https://ror.org/00qz24g20 University of North Carolina Health Care'),
(663, 'https://ror.org/00qzd4032', 'no_lang_code', 1, 'https://ror.org/00qzd4032 Quality Biological'),
(664, 'https://ror.org/00r1hxj45', 'en', 1, 'https://ror.org/00r1hxj45 Noor Eye Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ś†Ų“Ł…ā€ŒŁ¾Ų²Ų“Ś©ŪŒ Ł†ŁˆŲ±'),
(665, 'https://ror.org/00r2gde63', 'en', 1, 'https://ror.org/00r2gde63 Ascamm Technologic Center Centro Tecnológico Ascamm'),
(666, 'https://ror.org/00r59hk87', 'en', 1, 'https://ror.org/00r59hk87 North Kansas City Hospital'),
(667, 'https://ror.org/00r5kgd36', 'en', 1, 'https://ror.org/00r5kgd36 Nenagh Hospital OspidƩal an Aonaigh'),
(668, 'https://ror.org/00r5mr697', 'en', 1, 'https://ror.org/00r5mr697 Western New Mexico University'),
(669, 'https://ror.org/00r66pz14', 'en', 1, 'https://ror.org/00r66pz14 Natural England'),
(670, 'https://ror.org/00r67fz39', 'en', 1, 'https://ror.org/00r67fz39 Second Affiliated Hospital of Chongqing Medical University'),
(671, 'https://ror.org/00r9g7t11', 'en', 1, 'https://ror.org/00r9g7t11 Oregon University System'),
(672, 'https://ror.org/00ra1fg11', 'en', 1, 'https://ror.org/00ra1fg11 Pennsylvania Department of Health'),
(673, 'https://ror.org/00rey4c89', 'no_lang_code', 1, 'https://ror.org/00rey4c89 General Electric (Canada)'),
(674, 'https://ror.org/00rgv0036', 'en', 1, 'https://ror.org/00rgv0036 Cameron University'),
(675, 'https://ror.org/00rh8m666', 'en', 1, 'https://ror.org/00rh8m666 Institute For Defense Analyses Instituto de AnƔlisis de la Defensa'),
(676, 'https://ror.org/00rkxs190', 'no_lang_code', 1, 'https://ror.org/00rkxs190 TDA Research (United States)'),
(677, 'https://ror.org/00rm3wf49', 'en', 1, 'https://ror.org/00rm3wf49 Lilavati Hospital & Research Centre'),
(678, 'https://ror.org/00rpfyx16', 'en', 1, 'https://ror.org/00rpfyx16 Belvidere Hospital'),
(679, 'https://ror.org/00rsqg119', 'en', 1, 'https://ror.org/00rsqg119 King Edward VII Hospital'),
(680, 'https://ror.org/00rt1d436', 'en', 1, 'https://ror.org/00rt1d436 American Psychological Association'),
(681, 'https://ror.org/00rws8x56', 'en', 1, 'https://ror.org/00rws8x56 Gimpo Airport Wooridul Spine Hospital ģ„œģšøģš°ė¦¬ė“¤ė³‘ģ›'),
(682, 'https://ror.org/00rz5xc38', 'en', 1, 'https://ror.org/00rz5xc38 Mississippi Valley State University'),
(683, 'https://ror.org/00rzeqe23', 'en', 1, 'https://ror.org/00rzeqe23 Institut postgraduĆ”lnĆ­ho vzdělĆ”vĆ”nĆ­ ve zdravotnictvĆ­ Institute for Postgraduate Medical Education'),
(684, 'https://ror.org/00s31qp90', 'en', 1, 'https://ror.org/00s31qp90 Operation PAR'),
(685, 'https://ror.org/00s4vhs88', 'es', 1, 'https://ror.org/00s4vhs88 Doctor NegrĆ­n University Hospital Hospital Universitario de Gran Canaria Doctor NegrĆ­n'),
(686, 'https://ror.org/00s58vq35', 'en', 1, 'https://ror.org/00s58vq35 Instituto Superior Bissaya Barreto'),
(687, 'https://ror.org/00s5x0w83', 'es', 1, 'https://ror.org/00s5x0w83 Almirante Nef Naval Hospital Hospital Naval Almirante Nef'),
(688, 'https://ror.org/00s7qjp35', 'pt', 1, 'https://ror.org/00s7qjp35 Universidade Vale do Rio Verde'),
(689, 'https://ror.org/00s9dpb54', 'en', 1, 'https://ror.org/00s9dpb54 Myongji University ėŖ…ģ§€ėŒ€ķ•™źµ'),
(690, 'https://ror.org/00sbqe313', 'en', 1, 'https://ror.org/00sbqe313 Sacred Heart Medical Center'),
(691, 'https://ror.org/00se0qr64', 'en', 1, 'https://ror.org/00se0qr64 Summit Oaks Hospital'),
(692, 'https://ror.org/00sf92s91', 'en', 1, 'https://ror.org/00sf92s91 Lehigh Valley Health Network'),
(693, 'https://ror.org/00sge8677', 'en', 1, 'https://ror.org/00sge8677 BRAC University ą¦¬ą§ą¦°ą§ą¦Æą¦¾ą¦• ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(694, 'https://ror.org/00sh4ma05', 'en', 1, 'https://ror.org/00sh4ma05 Southwestern Oregon Community College'),
(695, 'https://ror.org/00shmxd32', 'en', 1, 'https://ror.org/00shmxd32 PBMA''s H.V. Desai Eye Hospital'),
(696, 'https://ror.org/00skrw306', 'en', 1, 'https://ror.org/00skrw306 Colorado Department of Human Services'),
(697, 'https://ror.org/00skwgg83', 'en', 1, 'https://ror.org/00skwgg83 Fukuoka Women''s University ē¦å²”å„³å­å¤§å­¦'),
(698, 'https://ror.org/00sm8k518', 'it', 1, 'https://ror.org/00sm8k518 Azienda Ospedaliera Universitaria Integrata Verona'),
(699, 'https://ror.org/00smwky98', 'no_lang_code', 1, 'https://ror.org/00smwky98 Tokushima Bunri University 徳島文理大学'),
(700, 'https://ror.org/00snwj435', 'en', 1, 'https://ror.org/00snwj435 Shriners Hospitals for Children - Portland'),
(701, 'https://ror.org/00spnmn10', 'no_lang_code', 1, 'https://ror.org/00spnmn10 Whalen Biomedical'),
(702, 'https://ror.org/00spys463', 'en', 1, 'https://ror.org/00spys463 Los Angeles Medical Center'),
(703, 'https://ror.org/00sqp6g97', 'fr', 1, 'https://ror.org/00sqp6g97 Centre hospitalier Emile Roux'),
(704, 'https://ror.org/00swp5c87', 'en', 1, 'https://ror.org/00swp5c87 Gynuity Health Projects'),
(705, 'https://ror.org/00swtwf35', 'en', 1, 'https://ror.org/00swtwf35 Chest Diseases Hospital المستؓفى Ų§Ł„ŲµŲÆŲ±ŁŠ'),
(706, 'https://ror.org/00swv7d52', 'en', 1, 'https://ror.org/00swv7d52 Penn Presbyterian Medical Center'),
(707, 'https://ror.org/00sxe0e68', 'en', 1, 'https://ror.org/00sxe0e68 Harper University Hospital'),
(708, 'https://ror.org/00t0h7472', 'pt', 1, 'https://ror.org/00t0h7472 Escola Superior de Educadores de Infância Maria Ulrich'),
(709, 'https://ror.org/00t0n9020', 'en', 1, 'https://ror.org/00t0n9020 Kaplan Medical Center ×ž×Ø×›×– רפואי קפלן'),
(710, 'https://ror.org/00t1xpx62', 'fr', 1, 'https://ror.org/00t1xpx62 HƓpital Kirchberg'),
(711, 'https://ror.org/00t2n7611', 'da', 1, 'https://ror.org/00t2n7611 Roskilde Hospital Roskilde Sygehus'),
(712, 'https://ror.org/00t30ch44', 'en', 1, 'https://ror.org/00t30ch44 Midwestern State University UniversitĆ© d''Ɖtat du midwest'),
(713, 'https://ror.org/00t3s0v26', 'en', 1, 'https://ror.org/00t3s0v26 Lok Nayak Jai Prakash Narayan Hospital'),
(714, 'https://ror.org/00t47w971', 'en', 1, 'https://ror.org/00t47w971 Clayton State University'),
(715, 'https://ror.org/00t60zh31', 'en', 1, 'https://ror.org/00t60zh31 Kaiser Permanente'),
(716, 'https://ror.org/00t61fh47', 'en', 1, 'https://ror.org/00t61fh47 Ijinkai Takeda General Hospital ę­¦ē”°ē·åˆē—…é™¢ćÆ'),
(717, 'https://ror.org/00t9hhv14', 'en', 1, 'https://ror.org/00t9hhv14 University of South Carolina Upstate'),
(718, 'https://ror.org/00tapj019', 'en', 1, 'https://ror.org/00tapj019 Asociación de Universidades Americanas Association des universités américaines Association of American Universities'),
(719, 'https://ror.org/00tb6zr84', 'en', 1, 'https://ror.org/00tb6zr84 American School Health Association'),
(720, 'https://ror.org/00tcmr651', 'en', 1, 'https://ror.org/00tcmr651 Kathmandu Medical College Teaching Hospital'),
(721, 'https://ror.org/00tdzhd41', 'es', 1, 'https://ror.org/00tdzhd41 Hospital FernƔndez'),
(722, 'https://ror.org/00te55z70', 'fi', 1, 'https://ror.org/00te55z70 Mikkelin keskussairaala'),
(723, 'https://ror.org/00tfedq56', 'en', 1, 'https://ror.org/00tfedq56 Center for Medical, Agricultural and Veterinary Entomology'),
(724, 'https://ror.org/00tg1yh20', 'no_lang_code', 1, 'https://ror.org/00tg1yh20 Aetna (United States)'),
(725, 'https://ror.org/00tjv0s33', 'en', 1, 'https://ror.org/00tjv0s33 Keimyung University ź³„ėŖ…ėŒ€ķ•™źµ'),
(726, 'https://ror.org/00tkrd758', 'en', 1, 'https://ror.org/00tkrd758 Gartnavel General Hospital'),
(727, 'https://ror.org/00tnppw48', 'en', 1, 'https://ror.org/00tnppw48 Adran yr Amgylchedd, Bwyd a Materion Gwledig Department for Environment Food and Rural Affairs'),
(728, 'https://ror.org/00tq7xg10', 'en', 1, 'https://ror.org/00tq7xg10 Suzuka University of Medical Science éˆ“é¹æåŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(729, 'https://ror.org/00trhvv58', 'en', 1, 'https://ror.org/00trhvv58 Shriners Hospitals for Children - Greenville'),
(730, 'https://ror.org/00tt53p64', 'en', 1, 'https://ror.org/00tt53p64 SRC'),
(731, 'https://ror.org/00tta1k37', 'en', 1, 'https://ror.org/00tta1k37 FolktandvƄrden VƤstra Gƶtaland Public Dental Service VƤstra Gƶtaland'),
(732, 'https://ror.org/00tw3jy02', 'en', 1, 'https://ror.org/00tw3jy02 MRC Laboratory of Molecular Biology'),
(733, 'https://ror.org/00tze5d69', 'en', 1, 'https://ror.org/00tze5d69 Teikyo University Hospital åøäŗ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(734, 'https://ror.org/00tzmb306', 'en', 1, 'https://ror.org/00tzmb306 Danish Maritime Institute'),
(735, 'https://ror.org/00v3ak792', 'en', 1, 'https://ror.org/00v3ak792 Universidad de Dallas University of Dallas UniversitƩ de Dallas'),
(736, 'https://ror.org/00v4dac24', 'en', 1, 'https://ror.org/00v4dac24 Leeds Teaching Hospitals NHS Trust'),
(737, 'https://ror.org/00v5h4y49', 'en', 1, 'https://ror.org/00v5h4y49 Derriford Hospital'),
(738, 'https://ror.org/00v6af077', 'en', 1, 'https://ror.org/00v6af077 Calvary Hospital'),
(739, 'https://ror.org/00v6s9648', 'en', 1, 'https://ror.org/00v6s9648 University of Worcester'),
(740, 'https://ror.org/00v81k483', 'en', 1, 'https://ror.org/00v81k483 Mokpo National University ėŖ©ķ¬ėŒ€ķ•™źµ'),
(741, 'https://ror.org/00v8fdc16', 'en', 1, 'https://ror.org/00v8fdc16 Autonomous University of Queretaro Universidad Autónoma de Querétaro'),
(742, 'https://ror.org/00var5q80', 'en', 1, 'https://ror.org/00var5q80 American Geophysical Union'),
(743, 'https://ror.org/00vbnvy39', 'en', 1, 'https://ror.org/00vbnvy39 Montgomery General Hospital'),
(744, 'https://ror.org/00vcyhn10', 'pt', 1, 'https://ror.org/00vcyhn10 Catholic University of Santos Universidade Católica de Santos'),
(745, 'https://ror.org/00vdhsr35', 'en', 1, 'https://ror.org/00vdhsr35 Marywood University'),
(746, 'https://ror.org/00vhhbt37', 'en', 1, 'https://ror.org/00vhhbt37 Howard Payne University'),
(747, 'https://ror.org/00vhr7p75', 'en', 1, 'https://ror.org/00vhr7p75 Battle Hospital'),
(748, 'https://ror.org/00vjb5165', 'en', 1, 'https://ror.org/00vjb5165 Ministry of Health'),
(749, 'https://ror.org/00vkrxq08', 'en', 1, 'https://ror.org/00vkrxq08 University Malaya Medical Centre'),
(750, 'https://ror.org/00vmdr162', 'en', 1, 'https://ror.org/00vmdr162 Kyoritsu Women''s University 共立儳子大学'),
(751, 'https://ror.org/00vmr1p37', 'en', 1, 'https://ror.org/00vmr1p37 Seacroft Hospital'),
(752, 'https://ror.org/00vpv1x26', 'en', 1, 'https://ror.org/00vpv1x26 Tokyo Medical University Hachioji Medical Center ę±äŗ¬åŒ»ē§‘å¤§å­¦å…«ēŽ‹å­åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(753, 'https://ror.org/00vpw9h05', 'en', 1, 'https://ror.org/00vpw9h05 Honolulu Community College'),
(754, 'https://ror.org/00vqhxg21', 'no_lang_code', 1, 'https://ror.org/00vqhxg21 SMEC (Australia)'),
(755, 'https://ror.org/00vv7qz60', 'no_lang_code', 1, 'https://ror.org/00vv7qz60 Fukuoka Hospital ē¦å²”ē—…é™¢'),
(756, 'https://ror.org/00vvvt117', 'en', 1, 'https://ror.org/00vvvt117 Sookmyung Women''s University ģˆ™ėŖ…ģ—¬ģžėŒ€ķ•™źµ'),
(757, 'https://ror.org/00vx2w009', 'en', 1, 'https://ror.org/00vx2w009 Lapin keskussairaala Lapland Central Hospital'),
(758, 'https://ror.org/00vxe3x87', 'de', 1, 'https://ror.org/00vxe3x87 Sternwarte Stuttgart, Stuttgart Observatory'),
(759, 'https://ror.org/00vyyx863', 'en', 1, 'https://ror.org/00vyyx863 Eastern Health'),
(760, 'https://ror.org/00vznbp60', 'no_lang_code', 1, 'https://ror.org/00vznbp60 Alpha Universe'),
(761, 'https://ror.org/00vzw9736', 'no_lang_code', 1, 'https://ror.org/00vzw9736 Kariya Toyota General Hospital åˆˆč°·č±Šē”°ē·åˆē—…é™¢'),
(762, 'https://ror.org/00vzzhs86', 'no_lang_code', 1, 'https://ror.org/00vzzhs86 Sir Hurkisondas Nurrotumdas Medical Research Society'),
(763, 'https://ror.org/00w1fsg08', 'en', 1, 'https://ror.org/00w1fsg08 Hyogo Prefectural Awaji Medical Center å…µåŗ«ēœŒē«‹ę·”č·ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(764, 'https://ror.org/00w6bqp33', 'en', 1, 'https://ror.org/00w6bqp33 National University of Health Sciences'),
(765, 'https://ror.org/00w6r1881', 'en', 1, 'https://ror.org/00w6r1881 Institute of Nanostructured Materials Istituto per lo Studio dei Materiali Nanostrutturati'),
(766, 'https://ror.org/00w7dj406', 'en', 1, 'https://ror.org/00w7dj406 American Society of Health-System Pharmacists'),
(767, 'https://ror.org/00w7vnc45', 'en', 1, 'https://ror.org/00w7vnc45 America''s Health Insurance Plans'),
(768, 'https://ror.org/00w81q081', 'fr', 1, 'https://ror.org/00w81q081 HƓpital Albert Calmette'),
(769, 'https://ror.org/00w93dg44', 'en', 1, 'https://ror.org/00w93dg44 Na Homolce Hospital Nemocnice Na Homolce'),
(770, 'https://ror.org/00watgv28', 'en', 1, 'https://ror.org/00watgv28 College of Saint Benedict and Saint John''s University Collège de saint benedict et université de saint jean'),
(771, 'https://ror.org/00wbzw723', 'en', 1, 'https://ror.org/00wbzw723 University of Washington Medical Center'),
(772, 'https://ror.org/00wc07928', 'en', 1, 'https://ror.org/00wc07928 University of LomƩ UniversitƩ de LomƩ'),
(773, 'https://ror.org/00we60833', 'en', 1, 'https://ror.org/00we60833 Women''s & Children''s Health Research Institute'),
(774, 'https://ror.org/00wejpz79', 'en', 1, 'https://ror.org/00wejpz79 Hyogo University of Teacher Education 兵庫教育大学'),
(775, 'https://ror.org/00wemg618', 'en', 1, 'https://ror.org/00wemg618 Youjiang Medical College for Nationalities å³ę±Ÿę°‘ę—åŒ»å­¦é™¢'),
(776, 'https://ror.org/00wfvh315', 'en', 1, 'https://ror.org/00wfvh315 Charles Sturt University'),
(777, 'https://ror.org/00wfvxt55', 'en', 1, 'https://ror.org/00wfvxt55 Minnesota Department of Human Services'),
(778, 'https://ror.org/00wg2b048', 'en', 1, 'https://ror.org/00wg2b048 Royal University Hospital'),
(779, 'https://ror.org/00whfdj78', 'no_lang_code', 1, 'https://ror.org/00whfdj78 BioTek (United States)'),
(780, 'https://ror.org/00wk9vd23', 'en', 1, 'https://ror.org/00wk9vd23 Regionshospitalet Skive Skive Hospital'),
(781, 'https://ror.org/00wkhef66', 'en', 1, 'https://ror.org/00wkhef66 Reinier de Graaf Hospital'),
(782, 'https://ror.org/00wksha49', 'en', 1, 'https://ror.org/00wksha49 National Institute of Biological Sciences, Beijing åŒ—äŗ¬ē”Ÿå‘½ē§‘å­¦ē ”ē©¶ę‰€'),
(783, 'https://ror.org/00wm07d60', 'en', 1, 'https://ror.org/00wm07d60 Van Andel Institute'),
(784, 'https://ror.org/00wmm6v75', 'en', 1, 'https://ror.org/00wmm6v75 American University of Beirut Medical Center'),
(785, 'https://ror.org/00wn7d965', 'en', 1, 'https://ror.org/00wn7d965 University of Virginia Health System'),
(786, 'https://ror.org/00wpte173', 'en', 1, 'https://ror.org/00wpte173 Grey Nuns Community Hospital'),
(787, 'https://ror.org/00wr13y59', 'en', 1, 'https://ror.org/00wr13y59 Lutheran Medical Center'),
(788, 'https://ror.org/00wspbn44', 'en', 1, 'https://ror.org/00wspbn44 Canterbury Health Laboratories'),
(789, 'https://ror.org/00wt7xg39', 'no_lang_code', 1, 'https://ror.org/00wt7xg39 Westat (United States)'),
(790, 'https://ror.org/00wtgx181', 'en', 1, 'https://ror.org/00wtgx181 Highland Hospital'),
(791, 'https://ror.org/00wtq7t14', 'en', 1, 'https://ror.org/00wtq7t14 Governors State University'),
(792, 'https://ror.org/00wygsf57', 'en', 1, 'https://ror.org/00wygsf57 Dongseo University ė™ģ„œėŒ€ķ•™źµ'),
(793, 'https://ror.org/00wys9y90', 'en', 1, 'https://ror.org/00wys9y90 Herlev Hospital'),
(794, 'https://ror.org/00wyx7h61', 'en', 1, 'https://ror.org/00wyx7h61 Royal Alexandra Hospital'),
(795, 'https://ror.org/00wzdr059', 'en', 1, 'https://ror.org/00wzdr059 St. Paul''s Hospital'),
(796, 'https://ror.org/00wzt9y79', 'en', 1, 'https://ror.org/00wzt9y79 Ohio Cancer Research Associates'),
(797, 'https://ror.org/00x396v48', 'en', 1, 'https://ror.org/00x396v48 Mendota Mental Health Institute'),
(798, 'https://ror.org/00x3rpv59', 'en', 1, 'https://ror.org/00x3rpv59 Tomsk State Pedagogical University Томский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(799, 'https://ror.org/00x5b2p37', 'en', 1, 'https://ror.org/00x5b2p37 Carroll College'),
(800, 'https://ror.org/00x8ccz20', 'en', 1, 'https://ror.org/00x8ccz20 University of Wisconsin–La Crosse UniversitĆ© du Wisconsin–La Crosse'),
(801, 'https://ror.org/00xb4cb83', 'en', 1, 'https://ror.org/00xb4cb83 Southern Arizona VA Health Care System'),
(802, 'https://ror.org/00xdn8y92', 'en', 1, 'https://ror.org/00xdn8y92 Punjabi University ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ąØŖą©°ąØœąØ¾ąØ¬ą©€ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(803, 'https://ror.org/00xhz2q61', 'en', 1, 'https://ror.org/00xhz2q61 Seoul Veterans Hospital'),
(804, 'https://ror.org/00xmkp704', 'en', 1, 'https://ror.org/00xmkp704 Ghent University Hospital Universitair Ziekenhuis Gent'),
(805, 'https://ror.org/00xmn3c34', 'en', 1, 'https://ror.org/00xmn3c34 Monmouth Medical Center'),
(806, 'https://ror.org/00xmzb398', 'pt', 1, 'https://ror.org/00xmzb398 Hospital Alemão Oswaldo Cruz'),
(807, 'https://ror.org/00xnmcq32', 'en', 1, 'https://ror.org/00xnmcq32 Grey''s Hospital'),
(808, 'https://ror.org/00xpcm295', 'en', 1, 'https://ror.org/00xpcm295 Wyoming State Department of Health'),
(809, 'https://ror.org/00xwgyp12', 'pt', 1, 'https://ror.org/00xwgyp12 Federal Rural University of Rio de Janeiro Universidade Federal Rural do Rio de Janeiro'),
(810, 'https://ror.org/00xyeez13', 'en', 1, 'https://ror.org/00xyeez13 Kunming University of Science and Technology ę˜†ę˜Žē†å·„å¤§å­¦'),
(811, 'https://ror.org/00xz7ma09', 'fr', 1, 'https://ror.org/00xz7ma09 HƓpital rƩgional'),
(812, 'https://ror.org/00xznf773', 'en', 1, 'https://ror.org/00xznf773 Auburn Community Hospital'),
(813, 'https://ror.org/00y1kmp77', 'en', 1, 'https://ror.org/00y1kmp77 NIMTS Hospital'),
(814, 'https://ror.org/00y64dx33', 'en', 1, 'https://ror.org/00y64dx33 Monroe Carell Jr. Children''s Hospital'),
(815, 'https://ror.org/00y6akb91', 'no_lang_code', 1, 'https://ror.org/00y6akb91 Revolution Analytics (United States)'),
(816, 'https://ror.org/00ydm0027', 'en', 1, 'https://ror.org/00ydm0027 University of Maine at Farmington'),
(817, 'https://ror.org/00yeama42', 'no_lang_code', 1, 'https://ror.org/00yeama42 Compact Membrane Systems (United States)'),
(818, 'https://ror.org/00yep6g06', 'en', 1, 'https://ror.org/00yep6g06 Kaiser Foundation Hospital'),
(819, 'https://ror.org/00yesn553', 'en', 1, 'https://ror.org/00yesn553 Iranian Institute for Health Sciences Research'),
(820, 'https://ror.org/00yeysh84', 'en', 1, 'https://ror.org/00yeysh84 Lake Superior State University UniversitĆ© d''Ɖtat du lac supĆ©rieur'),
(821, 'https://ror.org/00yghrj63', 'en', 1, 'https://ror.org/00yghrj63 Hendrix College'),
(822, 'https://ror.org/00ygzyy93', 'en', 1, 'https://ror.org/00ygzyy93 Independent University of Moscow ŠŠµŠ·Š°Š²ŠøŃŠøŠ¼Ń‹Š¹ Московский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(823, 'https://ror.org/00yhnba62', 'en', 1, 'https://ror.org/00yhnba62 Qatar University Universidad de Catar Ų¬Ų§Ł…Ų¹Ų© قطر'),
(824, 'https://ror.org/00yj3jn96', 'en', 1, 'https://ror.org/00yj3jn96 Hunterdon Medical Center'),
(825, 'https://ror.org/00ykktm91', 'pt', 1, 'https://ror.org/00ykktm91 Instituto Superior de Línguas e Administração'),
(826, 'https://ror.org/00ym4dr28', 'pt', 1, 'https://ror.org/00ym4dr28 Hospital Militar Principal'),
(827, 'https://ror.org/00yp6m473', 'en', 1, 'https://ror.org/00yp6m473 Udmurt State University Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(828, 'https://ror.org/00ys1hz88', 'en', 1, 'https://ror.org/00ys1hz88 Nagaoka University of Technology é•·å²”ęŠ€č”“ē§‘å­¦å¤§å­¦'),
(829, 'https://ror.org/00ysvbp68', 'en', 1, 'https://ror.org/00ysvbp68 Institute of Post Graduate Medical Education and Research'),
(830, 'https://ror.org/00yw5v481', 'en', 1, 'https://ror.org/00yw5v481 Prince George''s Community College'),
(831, 'https://ror.org/00yx91b22', 'en', 1, 'https://ror.org/00yx91b22 Barnsley Hospital NHS Foundation Trust'),
(832, 'https://ror.org/00yyp2526', 'en', 1, 'https://ror.org/00yyp2526 Silsoe Research Institute'),
(833, 'https://ror.org/00z0drp11', 'no_lang_code', 1, 'https://ror.org/00z0drp11 Agnico Eagle (Canada)'),
(834, 'https://ror.org/00z0ne711', 'en', 1, 'https://ror.org/00z0ne711 Saint Francis Hospital'),
(835, 'https://ror.org/00z0xmg52', 'it', 1, 'https://ror.org/00z0xmg52 Ospedale Santa Maria alle Scotte Santa Maria alle Scotte Hospital'),
(836, 'https://ror.org/00z1vyk43', 'en', 1, 'https://ror.org/00z1vyk43 King Fahd Armed Forces Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد Ł„Ł„Ł‚ŁˆŲ§ŲŖ المسلحة'),
(837, 'https://ror.org/00z28d984', 'it', 1, 'https://ror.org/00z28d984 Azienda ospedaliera "Bianchi-Melacrino-Morelli"'),
(838, 'https://ror.org/00z2qhk53', 'en', 1, 'https://ror.org/00z2qhk53 University of Wisconsin–Superior UniversitĆ© du Wisconsin–Superior'),
(839, 'https://ror.org/00z769k62', 'pt', 1, 'https://ror.org/00z769k62 Hospital de Faro EPE'),
(840, 'https://ror.org/00z847107', 'pt', 1, 'https://ror.org/00z847107 Escola Superior de Educação de Torres Novas'),
(841, 'https://ror.org/00z9qkg54', 'en', 1, 'https://ror.org/00z9qkg54 Highland Hospital'),
(842, 'https://ror.org/00z9zsj19', 'en', 1, 'https://ror.org/00z9zsj19 Butler Hospital'),
(843, 'https://ror.org/00zat6v61', 'en', 1, 'https://ror.org/00zat6v61 Guangzhou Medical University å¹æå·žåŒ»ē§‘å¤§å­¦'),
(844, 'https://ror.org/00zb26x20', 'en', 1, 'https://ror.org/00zb26x20 Ural State University of Economics Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(845, 'https://ror.org/00zbht122', 'es', 1, 'https://ror.org/00zbht122 Hospital Xeral Calde'),
(846, 'https://ror.org/00zc7y345', 'pt', 1, 'https://ror.org/00zc7y345 Hospital de São José'),
(847, 'https://ror.org/00zcy2665', 'en', 1, 'https://ror.org/00zcy2665 Vestfold University College'),
(848, 'https://ror.org/00zdnkx70', 'en', 1, 'https://ror.org/00zdnkx70 National Tsing Hua University'),
(849, 'https://ror.org/00zfzef50', 'en', 1, 'https://ror.org/00zfzef50 National Development and Research Institutes'),
(850, 'https://ror.org/00zhvdn11', 'en', 1, 'https://ror.org/00zhvdn11 Tunghai University ę±ęµ·å¤§å­ø'),
(851, 'https://ror.org/00zjtek40', 'tr', 1, 'https://ror.org/00zjtek40 Dicle Üniversitesi Hastaneleri'),
(852, 'https://ror.org/00znqwq11', 'en', 1, 'https://ror.org/00znqwq11 VA San Diego Healthcare System'),
(853, 'https://ror.org/00zpz3d35', 'en', 1, 'https://ror.org/00zpz3d35 Nevill Hall Hospital'),
(854, 'https://ror.org/00zq17821', 'en', 1, 'https://ror.org/00zq17821 General Hospital of Athens G. Genimatas'),
(855, 'https://ror.org/00zrn3e14', 'es', 1, 'https://ror.org/00zrn3e14 Hospital del Salvador'),
(856, 'https://ror.org/00zszzj16', 'en', 1, 'https://ror.org/00zszzj16 Al Amal Hospital Jeddah'),
(857, 'https://ror.org/00ztyx381', 'en', 1, 'https://ror.org/00ztyx381 Latrobe Regional Hospital'),
(858, 'https://ror.org/00zydn239', 'tr', 1, 'https://ror.org/00zydn239 Adana Numune Eğitim ve Araştırma Hastanesi'),
(859, 'https://ror.org/00zyk6d86', 'es', 1, 'https://ror.org/00zyk6d86 Hospital Alto Deba'),
(860, 'https://ror.org/00zz54311', 'en', 1, 'https://ror.org/00zz54311 Australian Centre for Sexual Health'),
(861, 'https://ror.org/00zzcmy73', 'en', 1, 'https://ror.org/00zzcmy73 Hellenic Red Cross Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒĻ‚ Ī•ĻĻ…ĪøĻĻŒĻ‚ Ī£Ļ„Ī±Ļ…ĻĻŒĻ‚'),
(862, 'https://ror.org/0101aa973', 'en', 1, 'https://ror.org/0101aa973 Hollywood Private Hospital'),
(863, 'https://ror.org/0103a0295', 'no_lang_code', 1, 'https://ror.org/0103a0295 Teleflex (Canada)'),
(864, 'https://ror.org/0103dxn66', 'no_lang_code', 1, 'https://ror.org/0103dxn66 Shanghai Changzheng Hospital');
INSERT INTO `rors` VALUES
(865, 'https://ror.org/0103jbm17', 'en', 1, 'https://ror.org/0103jbm17 Golden Jubilee National Hospital'),
(866, 'https://ror.org/010567a58', 'fr', 1, 'https://ror.org/010567a58 Centre Hospitalier Universitaire Amiens-Picardie'),
(867, 'https://ror.org/01056ge55', 'en', 1, 'https://ror.org/01056ge55 Canisius College'),
(868, 'https://ror.org/0105k4695', 'no_lang_code', 1, 'https://ror.org/0105k4695 Novogene Bioinformatics Institute'),
(869, 'https://ror.org/0107t3e14', 'en', 1, 'https://ror.org/0107t3e14 Akron Children''s Hospital'),
(870, 'https://ror.org/010826a91', 'en', 1, 'https://ror.org/010826a91 Shanghai Ninth People''s Hospital äøŠęµ·ē¬¬ä¹äŗŗę°‘åŒ»é™¢'),
(871, 'https://ror.org/0108e1t34', 'en', 1, 'https://ror.org/0108e1t34 Applied Research and Communications Fund'),
(872, 'https://ror.org/0108gdg43', 'en', 1, 'https://ror.org/0108gdg43 Sri Ramachandra Institute of Higher Education and Research ą¤¶ą„ą¤°ą„€ ą¤°ą¤¾ą¤®ą¤šą¤‚ą¤¦ą„ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤¾ą¤²ą¤æą¤œ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®šą®æą®±ąÆ€ ą®‡ą®°ą®¾ą®®ą®šąÆą®šą®ØąÆą®¤ą®æą®°ą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®ÆąÆą®µąÆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(873, 'https://ror.org/010acrp16', 'en', 1, 'https://ror.org/010acrp16 University of West Alabama'),
(874, 'https://ror.org/010bdq555', 'en', 1, 'https://ror.org/010bdq555 Michigan Health Council'),
(875, 'https://ror.org/010bsbc18', 'pt', 1, 'https://ror.org/010bsbc18 Hospital Prof. Dr. Fernando Fonseca'),
(876, 'https://ror.org/010bv4c75', 'no_lang_code', 1, 'https://ror.org/010bv4c75 Tsukuba Memorial Hospital ē­‘ę³¢čØ˜åæµē—…é™¢'),
(877, 'https://ror.org/010d4kb47', 'it', 1, 'https://ror.org/010d4kb47 Ospedale Sant''Anna'),
(878, 'https://ror.org/010ezwq65', 'no_lang_code', 1, 'https://ror.org/010ezwq65 Praxis (United States)'),
(879, 'https://ror.org/010gbda42', 'en', 1, 'https://ror.org/010gbda42 Government Medical College and Hospital'),
(880, 'https://ror.org/010gckf65', 'en', 1, 'https://ror.org/010gckf65 Sikkim Manipal University'),
(881, 'https://ror.org/010gpfc02', 'no', 1, 'https://ror.org/010gpfc02 BƦrum Sykehus'),
(882, 'https://ror.org/010h7bv12', 'no_lang_code', 1, 'https://ror.org/010h7bv12 Integrated Plant Genetics (United States)'),
(883, 'https://ror.org/010hq5p48', 'it', 1, 'https://ror.org/010hq5p48 Ospedale Sacro Cuore Don Calabria'),
(884, 'https://ror.org/010jskt71', 'en', 1, 'https://ror.org/010jskt71 Embry–Riddle Aeronautical University'),
(885, 'https://ror.org/010jx2260', 'en', 1, 'https://ror.org/010jx2260 National Institute of Agricultural Botany'),
(886, 'https://ror.org/010kthv55', 'no_lang_code', 1, 'https://ror.org/010kthv55 Nakadōri General Hospital äø­é€šē·åˆē—…é™¢'),
(887, 'https://ror.org/010md9d18', 'en', 1, 'https://ror.org/010md9d18 Oklahoma City VA Medical Center'),
(888, 'https://ror.org/010n41y16', 'en', 1, 'https://ror.org/010n41y16 Southeast Missouri State University'),
(889, 'https://ror.org/010njnb56', 'en', 1, 'https://ror.org/010njnb56 Craig Hospital'),
(890, 'https://ror.org/010ns0q29', 'en', 1, 'https://ror.org/010ns0q29 North Memorial Medical Center'),
(891, 'https://ror.org/010q6ek40', 'tr', 1, 'https://ror.org/010q6ek40 Haseki Eğitim ve Araştırma Hastanesi'),
(892, 'https://ror.org/010s72f83', 'en', 1, 'https://ror.org/010s72f83 South Infirmary Victoria University Hospital'),
(893, 'https://ror.org/010tb3a87', 'en', 1, 'https://ror.org/010tb3a87 Nagatomi Neurosurgical Hospital ę°øå†Øč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(894, 'https://ror.org/010tmdc88', 'it', 1, 'https://ror.org/010tmdc88 Ospedale Maggiore Carlo Alberto Pizzardi'),
(895, 'https://ror.org/010wh8q62', 'en', 1, 'https://ror.org/010wh8q62 Raja Isteri Pengiran Anak Saleha Hospital'),
(896, 'https://ror.org/010zy0m59', 'en', 1, 'https://ror.org/010zy0m59 Kemerovo State Medical Academy ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(897, 'https://ror.org/0112eam10', 'en', 1, 'https://ror.org/0112eam10 Canadian Institute for Health Information'),
(898, 'https://ror.org/0112t7451', 'en', 1, 'https://ror.org/0112t7451 Presidio Ospedaliero San Salvatore - Pesaro San Salvatore Hospital'),
(899, 'https://ror.org/0116mdr21', 'en', 1, 'https://ror.org/0116mdr21 Graduate Hospital'),
(900, 'https://ror.org/0119j8n26', 'no_lang_code', 1, 'https://ror.org/0119j8n26 Glsynthesis'),
(901, 'https://ror.org/011ac6r71', 'en', 1, 'https://ror.org/011ac6r71 Glanrhyd Hospital'),
(902, 'https://ror.org/011apjk30', 'fr', 1, 'https://ror.org/011apjk30 Centre Hospitalier Universitaire Brugmann'),
(903, 'https://ror.org/011as4z76', 'fr', 1, 'https://ror.org/011as4z76 Centre Hospitalier Jean-Rostand'),
(904, 'https://ror.org/011bdtx65', 'en', 1, 'https://ror.org/011bdtx65 Cheng Shiu University'),
(905, 'https://ror.org/011ezgm44', 'en', 1, 'https://ror.org/011ezgm44 Dowling College'),
(906, 'https://ror.org/011fkz177', 'en', 1, 'https://ror.org/011fkz177 St. Luke''s Hospital'),
(907, 'https://ror.org/011hn1c89', 'en', 1, 'https://ror.org/011hn1c89 National Hospital of Sri Lanka'),
(908, 'https://ror.org/011hz4254', 'en', 1, 'https://ror.org/011hz4254 CRUK/MRC Oxford Institute for Radiation Oncology'),
(909, 'https://ror.org/011jgwj89', 'en', 1, 'https://ror.org/011jgwj89 Iranian Academy of Medical Sciences فرهنگستان Ų¹Ł„ŁˆŁ… پزؓکی Ų¬Ł…Ł‡ŁˆŲ±ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ±Ų§Ł†ā€Žā€Ž'),
(910, 'https://ror.org/011mkef94', 'en', 1, 'https://ror.org/011mkef94 Kaiser Permanente Walnut Creek Medical Center'),
(911, 'https://ror.org/011p8xd65', 'en', 1, 'https://ror.org/011p8xd65 Prince Philip Dental Hospital č²č‡˜ē‰™ē§‘é†«é™¢'),
(912, 'https://ror.org/011qwff60', 'en', 1, 'https://ror.org/011qwff60 Riverview Medical Center'),
(913, 'https://ror.org/011r34n61', 'en', 1, 'https://ror.org/011r34n61 Indira Gandhi Government Medical College & Hospital इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ व ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(914, 'https://ror.org/011r8ce56', 'en', 1, 'https://ror.org/011r8ce56 Linyi People''s Hospital äø“ę²‚åø‚äŗŗę°‘åŒ»é™¢'),
(915, 'https://ror.org/011t2cn48', 'en', 1, 'https://ror.org/011t2cn48 St. Luke''s-Roosevelt Hospital Center'),
(916, 'https://ror.org/011tm7n37', 'no_lang_code', 1, 'https://ror.org/011tm7n37 Panasonic (Japan) ćƒ‘ćƒŠć‚½ćƒ‹ćƒƒć‚Æ'),
(917, 'https://ror.org/011tz3351', 'en', 1, 'https://ror.org/011tz3351 Queens Hospital Center'),
(918, 'https://ror.org/011x7hd11', 'de', 1, 'https://ror.org/011x7hd11 München Klinik Bogenhausen'),
(919, 'https://ror.org/011xca688', 'en', 1, 'https://ror.org/011xca688 Himeji Dokkyo University å§«č·ÆēØå”å¤§å­¦'),
(920, 'https://ror.org/011xhcs96', 'en', 1, 'https://ror.org/011xhcs96 Affiliated Hospital of Xuzhou Medical College'),
(921, 'https://ror.org/011ygts35', 'en', 1, 'https://ror.org/011ygts35 University Clinic of Traumatology'),
(922, 'https://ror.org/0120mb525', 'nl', 1, 'https://ror.org/0120mb525 Spaarne Ziekenhuis'),
(923, 'https://ror.org/0120w8n36', 'en', 1, 'https://ror.org/0120w8n36 Muhlenberg Regional Medical Center'),
(924, 'https://ror.org/01233dh94', 'en', 1, 'https://ror.org/01233dh94 Prince Philip Hospital'),
(925, 'https://ror.org/01244fm76', 'en', 1, 'https://ror.org/01244fm76 University of Tennessee at Martin'),
(926, 'https://ror.org/0124e9159', 'sv', 1, 'https://ror.org/0124e9159 Hallands sjukhus Kungsbacka'),
(927, 'https://ror.org/0125csy75', 'de', 1, 'https://ror.org/0125csy75 Klinikum Region Hannover'),
(928, 'https://ror.org/0127ytz78', 'en', 1, 'https://ror.org/0127ytz78 Anqing Normal University å®‰åŗ†åøˆčŒƒå­¦é™¢'),
(929, 'https://ror.org/012ae7p27', 'no_lang_code', 1, 'https://ror.org/012ae7p27 Italtel (Italy)'),
(930, 'https://ror.org/012bh1w56', 'fr', 1, 'https://ror.org/012bh1w56 HƓpital 20 Aoƻt'),
(931, 'https://ror.org/012bk6h61', 'da', 1, 'https://ror.org/012bk6h61 Medicinsk-historisk Museum i NƦstved'),
(932, 'https://ror.org/012dxyr07', 'en', 1, 'https://ror.org/012dxyr07 University of Agriculture in Krakow Uniwersytet Rolniczy im. Hugona Kołłątaja w Krakowie'),
(933, 'https://ror.org/012eghd53', 'en', 1, 'https://ror.org/012eghd53 Rotorua Hospital'),
(934, 'https://ror.org/012gg9483', 'pt', 1, 'https://ror.org/012gg9483 Universidade Cidade de SĆ£o Paulo'),
(935, 'https://ror.org/012habm93', 'pt', 1, 'https://ror.org/012habm93 Hospital de Egas Moniz'),
(936, 'https://ror.org/012nfex57', 'no_lang_code', 1, 'https://ror.org/012nfex57 Rakuwakai Otowa Hospital ę“›å’Œä¼šéŸ³ē¾½ē—…é™¢'),
(937, 'https://ror.org/012nkbb42', 'en', 1, 'https://ror.org/012nkbb42 St Vincent''s Health'),
(938, 'https://ror.org/012p63287', 'en', 1, 'https://ror.org/012p63287 Rijksuniversiteit Groningen University of Groningen'),
(939, 'https://ror.org/012qr1y49', 'en', 1, 'https://ror.org/012qr1y49 Ministry of Health وزارة الصحة'),
(940, 'https://ror.org/012r5qt14', 'en', 1, 'https://ror.org/012r5qt14 Manitoba Pork Council'),
(941, 'https://ror.org/012vbac09', 'en', 1, 'https://ror.org/012vbac09 Doctors Medical Center'),
(942, 'https://ror.org/012wm7481', 'no_lang_code', 1, 'https://ror.org/012wm7481 Huadong Hospital å¤ę—¦å¤§å­¦é™„å±žåŽäøœåŒ»é™¢'),
(943, 'https://ror.org/012yc3523', 'no_lang_code', 1, 'https://ror.org/012yc3523 COM DEV International'),
(944, 'https://ror.org/012zkqp76', 'en', 1, 'https://ror.org/012zkqp76 Delaware Division of Public Health'),
(945, 'https://ror.org/0133j5m54', 'en', 1, 'https://ror.org/0133j5m54 SkellefteƄ Hospital SkellefteƄ Lasarett'),
(946, 'https://ror.org/0137gef36', 'no_lang_code', 1, 'https://ror.org/0137gef36 Yogi Vemana University யோகி வேமனா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ యోగి వేమన ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(947, 'https://ror.org/01381hr71', 'no_lang_code', 1, 'https://ror.org/01381hr71 Golder Associates (Canada)'),
(948, 'https://ror.org/0138ysz16', 'en', 1, 'https://ror.org/0138ysz16 Gifu Municipal Hospital å²é˜œåø‚ę°‘ē—…é™¢'),
(949, 'https://ror.org/013e0zm98', 'en', 1, 'https://ror.org/013e0zm98 Beijing Technology and Business University åŒ—äŗ¬å·„å•†å¤§å­¦'),
(950, 'https://ror.org/013e4n276', 'en', 1, 'https://ror.org/013e4n276 Beijing Tongren Hospital é¦–éƒ½åŒ»ē§‘å¤§å­¦é™„å±žåŒ—äŗ¬åŒä»åŒ»é™¢'),
(951, 'https://ror.org/013e76m06', 'no_lang_code', 1, 'https://ror.org/013e76m06 Kangbuk Samsung Hospital 강북삼성병원'),
(952, 'https://ror.org/013e81n30', 'en', 1, 'https://ror.org/013e81n30 University of Alberta Hospital'),
(953, 'https://ror.org/013ennz48', 'en', 1, 'https://ror.org/013ennz48 Lesley University'),
(954, 'https://ror.org/013habd96', 'en', 1, 'https://ror.org/013habd96 Twin Cities Public Television'),
(955, 'https://ror.org/013pk4y14', 'en', 1, 'https://ror.org/013pk4y14 Kazan State Medical University Казанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(956, 'https://ror.org/013pz1582', 'en', 1, 'https://ror.org/013pz1582 Lewis & Clark College'),
(957, 'https://ror.org/013q2cj53', 'en', 1, 'https://ror.org/013q2cj53 Universeum'),
(958, 'https://ror.org/013qdbe28', 'tr', 1, 'https://ror.org/013qdbe28 Ankara Numune Eğitim ve Araştırma Hastanesi'),
(959, 'https://ror.org/013qhbw17', 'fr', 1, 'https://ror.org/013qhbw17 HƓpital Mongi Slim'),
(960, 'https://ror.org/013s4zk47', 'en', 1, 'https://ror.org/013s4zk47 Hiroshima General Hospital åŗƒå³¶ē·åˆē—…é™¢'),
(961, 'https://ror.org/013sgak22', 'en', 1, 'https://ror.org/013sgak22 Northwest Community Hospital'),
(962, 'https://ror.org/013vyke20', 'en', 1, 'https://ror.org/013vyke20 Environment Agency Austria Umweltbundesamt'),
(963, 'https://ror.org/013vzz882', 'en', 1, 'https://ror.org/013vzz882 Indraprastha Apollo Hospitals'),
(964, 'https://ror.org/013wvjj62', 'en', 1, 'https://ror.org/013wvjj62 Yokohama Welfare Service Association'),
(965, 'https://ror.org/013x5cp73', 'en', 1, 'https://ror.org/013x5cp73 Johns Hopkins All Children''s Hospital'),
(966, 'https://ror.org/013zjb662', 'en', 1, 'https://ror.org/013zjb662 National University of Kaohsiung'),
(967, 'https://ror.org/01435q086', 'es', 1, 'https://ror.org/01435q086 Hospital Universitario Fundación Alcorcón'),
(968, 'https://ror.org/014405c23', 'pt', 1, 'https://ror.org/014405c23 Hospital do EspĆ­rito Santo'),
(969, 'https://ror.org/0149j8908', 'pt', 1, 'https://ror.org/0149j8908 Universidade Santa Úrsula'),
(970, 'https://ror.org/014f77s28', 'en', 1, 'https://ror.org/014f77s28 Cheng Hsin General Hospital'),
(971, 'https://ror.org/014fz7968', 'en', 1, 'https://ror.org/014fz7968 Sojo University 哇城大学'),
(972, 'https://ror.org/014gqa478', 'en', 1, 'https://ror.org/014gqa478 University Health Care System'),
(973, 'https://ror.org/014haym76', 'no_lang_code', 1, 'https://ror.org/014haym76 Fukuoka Tokushukai Hospital ē¦å²”å¾³ę“²ä¼šē—…é™¢'),
(974, 'https://ror.org/014mgn481', 'no_lang_code', 1, 'https://ror.org/014mgn481 Maizuru Municipal Hospital åø‚ē«‹čˆžé¶“åø‚ę°‘ē—…é™¢'),
(975, 'https://ror.org/014n7rf11', 'en', 1, 'https://ror.org/014n7rf11 Moscow State Aviation Technological University Российский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. Š­. Циолковского'),
(976, 'https://ror.org/014nx0w70', 'es', 1, 'https://ror.org/014nx0w70 Hospital Universitario Austral'),
(977, 'https://ror.org/014tckg45', 'en', 1, 'https://ror.org/014tckg45 Crichton Royal Hospital'),
(978, 'https://ror.org/014ttpa29', 'en', 1, 'https://ror.org/014ttpa29 Bangour Village Hospital'),
(979, 'https://ror.org/014v12a39', 'es', 1, 'https://ror.org/014v12a39 Health Research Institute of the Hospital Clínico San Carlos Instituto de Investigación Sanitaria del Hospital Clínico San Carlos'),
(980, 'https://ror.org/014v2t028', 'en', 1, 'https://ror.org/014v2t028 Shandong Pingyi Tianyu Museum of Natural History å±±äøœēœå¤©å®‡č‡Ŗē„¶åšē‰©é¦†'),
(981, 'https://ror.org/014wfj781', 'en', 1, 'https://ror.org/014wfj781 Jacksonville State University UniversitĆ© d''Ɖtat de jacksonville'),
(982, 'https://ror.org/014x8q810', 'de', 1, 'https://ror.org/014x8q810 Centre for Solar Energy and Hydrogen Research Baden-Württemberg Zentrum für Sonnenenergie- und Wasserstoff-Forschung Baden-Württemberg'),
(983, 'https://ror.org/014xqzt56', 'no_lang_code', 1, 'https://ror.org/014xqzt56 Boramae Medical Center ė³“ė¼ė§¤ 병원'),
(984, 'https://ror.org/01509dj67', 'en', 1, 'https://ror.org/01509dj67 MedStar Franklin Square Medical Center'),
(985, 'https://ror.org/0150ewf57', 'en', 1, 'https://ror.org/0150ewf57 Dhaka Medical College and Hospital ঢাকা মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(986, 'https://ror.org/015178j52', 'en', 1, 'https://ror.org/015178j52 Wested'),
(987, 'https://ror.org/0152bt112', 'en', 1, 'https://ror.org/0152bt112 Health Sciences and Nutrition'),
(988, 'https://ror.org/0152hn881', 'en', 1, 'https://ror.org/0152hn881 Tianjin Medical University Cancer Institute and Hospital å¤©ę“„åŒ»ē§‘å¤§å­¦č‚æē˜¤åŒ»é™¢'),
(989, 'https://ror.org/0152ray34', 'no_lang_code', 1, 'https://ror.org/0152ray34 Maharat Nakhon Ratchasima Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø£ąø²ąøŠąø™ąø„ąø£ąø£ąø²ąøŠąøŖąøµąø”ąø²'),
(990, 'https://ror.org/015566d55', 'en', 1, 'https://ror.org/015566d55 University of Azad Jammu and Kashmir'),
(991, 'https://ror.org/015803449', 'en', 1, 'https://ror.org/015803449 South London and Maudsley NHS Foundation Trust'),
(992, 'https://ror.org/0159cmf83', 'en', 1, 'https://ror.org/0159cmf83 St Peter''s Hospital'),
(993, 'https://ror.org/015a1ak54', 'en', 1, 'https://ror.org/015a1ak54 York College, City University of New York'),
(994, 'https://ror.org/015a6df35', 'no_lang_code', 1, 'https://ror.org/015a6df35 En Chu Kong Hospital č”Œå¤©å®®é†«ē™‚åæ—ę„­é†«ē™‚č²”åœ˜ę³•äŗŗę©äø»å…¬é†«é™¢'),
(995, 'https://ror.org/015b6az38', 'en', 1, 'https://ror.org/015b6az38 Mackay Memorial Hospital 馬偕瓀念醫院'),
(996, 'https://ror.org/015dyrs73', 'en', 1, 'https://ror.org/015dyrs73 Queen Elizabeth Hospital'),
(997, 'https://ror.org/015e6tf70', 'en', 1, 'https://ror.org/015e6tf70 Madonna Rehabilitation Hospital'),
(998, 'https://ror.org/015h2da09', 'en', 1, 'https://ror.org/015h2da09 Boston Public Health Commission'),
(999, 'https://ror.org/015j35893', 'en', 1, 'https://ror.org/015j35893 English Heritage'),
(1000, 'https://ror.org/015nmh932', 'no_lang_code', 1, 'https://ror.org/015nmh932 Kai Research (United States)'),
(1001, 'https://ror.org/015nth639', 'en', 1, 'https://ror.org/015nth639 MRC Cancer Unit'),
(1002, 'https://ror.org/015nymp25', 'en', 1, 'https://ror.org/015nymp25 Edith Nourse Rogers Memorial Veterans Hospital'),
(1003, 'https://ror.org/015qjqf64', 'en', 1, 'https://ror.org/015qjqf64 Stiftung TierƤrztliche Hochschule Hannover University of Veterinary Medicine Hannover, Foundation'),
(1004, 'https://ror.org/015qmyq14', 'en', 1, 'https://ror.org/015qmyq14 Catholic University of Health and Allied Sciences'),
(1005, 'https://ror.org/015rc4h95', 'en', 1, 'https://ror.org/015rc4h95 Hamanomachi Hospital ęµœć®ē”ŗē—…é™¢'),
(1006, 'https://ror.org/015tmw922', 'en', 1, 'https://ror.org/015tmw922 Providence Portland Medical Center'),
(1007, 'https://ror.org/015v9d997', 'en', 1, 'https://ror.org/015v9d997 Jeonju University ģ „ģ£¼ėŒ€ķ•™źµ'),
(1008, 'https://ror.org/015yzft41', 'pt', 1, 'https://ror.org/015yzft41 Instituto Superior PolitƩcnico do Oeste'),
(1009, 'https://ror.org/01600wh70', 'en', 1, 'https://ror.org/01600wh70 University of Toledo Medical Center'),
(1010, 'https://ror.org/01605g366', 'en', 1, 'https://ror.org/01605g366 Kyoto City Hospital äŗ¬éƒ½åø‚ē«‹ē—…é™¢'),
(1011, 'https://ror.org/01616f936', 'en', 1, 'https://ror.org/01616f936 Jefferson College of Health Sciences'),
(1012, 'https://ror.org/0163qhr63', 'en', 1, 'https://ror.org/0163qhr63 Hanusch Hospital Hanusch-Krankenhaus'),
(1013, 'https://ror.org/0166mge61', 'es', 1, 'https://ror.org/0166mge61 Hospital San Juan de Dios'),
(1014, 'https://ror.org/01673gn35', 'en', 1, 'https://ror.org/01673gn35 Affiliated Hospital of North Sichuan Medical College 川北医学院附属医院'),
(1015, 'https://ror.org/0167c0661', 'no_lang_code', 1, 'https://ror.org/0167c0661 Exodus (Greece)'),
(1016, 'https://ror.org/01683nj06', 'en', 1, 'https://ror.org/01683nj06 Mangla Hospital and Research Center'),
(1017, 'https://ror.org/01692sz90', 'no_lang_code', 1, 'https://ror.org/01692sz90 Juntendo University 順天堂大学'),
(1018, 'https://ror.org/0169n7f49', 'en', 1, 'https://ror.org/0169n7f49 251 Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Αεροπορίας Hellenic Airforce General Hospital'),
(1019, 'https://ror.org/016a0n751', 'en', 1, 'https://ror.org/016a0n751 Azerbaijan Medical University Azərbaycan Tibb Universiteti АзербайГжанский меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1020, 'https://ror.org/016bbv872', 'en', 1, 'https://ror.org/016bbv872 Hahnemann University Hospital'),
(1021, 'https://ror.org/016c9ds94', 'en', 1, 'https://ror.org/016c9ds94 Kanagawa Prefectural Institute of Public Health ē„žå„ˆå·ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(1022, 'https://ror.org/016dxxy13', 'en', 1, 'https://ror.org/016dxxy13 Ministry of Health ąøąø£ąø°ąø—ąø£ąø§ąø‡ąøŖąø²ąø˜ąø²ąø£ąø“ąøŖąøøąø‚'),
(1023, 'https://ror.org/016jc2h42', 'en', 1, 'https://ror.org/016jc2h42 Sint Lucas Andreas Hospital Sint Lucas Andreas Ziekenhuis'),
(1024, 'https://ror.org/016je1253', 'en', 1, 'https://ror.org/016je1253 Government Medical College'),
(1025, 'https://ror.org/016m8pd54', 'en', 1, 'https://ror.org/016m8pd54 Morgan Stanley Children''s Hospital'),
(1026, 'https://ror.org/016nh4b93', 'en', 1, 'https://ror.org/016nh4b93 Mercy Children''s Hospital'),
(1027, 'https://ror.org/016qd7r37', 'es', 1, 'https://ror.org/016qd7r37 Hospital Universitario de Maracaibo'),
(1028, 'https://ror.org/016tyxe19', 'en', 1, 'https://ror.org/016tyxe19 New Mexico Highlands University'),
(1029, 'https://ror.org/016v1bv58', 'es', 1, 'https://ror.org/016v1bv58 Hospital Clínico de la Universidad Católica'),
(1030, 'https://ror.org/016yv6y68', 'en', 1, 'https://ror.org/016yv6y68 Dakota State University'),
(1031, 'https://ror.org/016zre027', 'en', 1, 'https://ror.org/016zre027 University of Ontario Institute of Technology'),
(1032, 'https://ror.org/01703db54', 'en', 1, 'https://ror.org/01703db54 National Institute of Advanced Industrial Science and Technology ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(1033, 'https://ror.org/0171atz91', 'no_lang_code', 1, 'https://ror.org/0171atz91 Iogen Corporation'),
(1034, 'https://ror.org/01735bk60', 'sv', 1, 'https://ror.org/01735bk60 Gƶteborgs barnsjukhus'),
(1035, 'https://ror.org/017383496', 'en', 1, 'https://ror.org/017383496 Aultman Hospital'),
(1036, 'https://ror.org/0176arq92', 'en', 1, 'https://ror.org/0176arq92 Milwaukee VA Medical Center'),
(1037, 'https://ror.org/0176jt031', 'en', 1, 'https://ror.org/0176jt031 Huston–Tillotson University'),
(1038, 'https://ror.org/0176wfg98', 'en', 1, 'https://ror.org/0176wfg98 Gleneagles Hospital'),
(1039, 'https://ror.org/0176x9269', 'no_lang_code', 1, 'https://ror.org/0176x9269 Hatyai Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø«ąø²ąø”ą¹ƒąø«ąøą¹ˆ'),
(1040, 'https://ror.org/0176yjw32', 'pt', 1, 'https://ror.org/0176yjw32 Federal University of Minas Gerais Universidade Federal de Minas Gerais UniversitƩ fƩdƩrale du minas gerais'),
(1041, 'https://ror.org/01786mp71', 'en', 1, 'https://ror.org/01786mp71 Institute of Agrobiological Sciences ē”Ÿē‰©ę©Ÿčƒ½åˆ©ē”Øē ”ē©¶éƒØé–€'),
(1042, 'https://ror.org/017b7j426', 'no_lang_code', 1, 'https://ror.org/017b7j426 Altera (United States)'),
(1043, 'https://ror.org/017c6at71', 'en', 1, 'https://ror.org/017c6at71 University of North Carolina at Asheville'),
(1044, 'https://ror.org/017c9f638', 'en', 1, 'https://ror.org/017c9f638 Burwood Hospital'),
(1045, 'https://ror.org/017dm4063', 'en', 1, 'https://ror.org/017dm4063 Departamento de Salud Pública del Condado de Los Ángeles Los Angeles County Department of Public Health'),
(1046, 'https://ror.org/017g36q02', 'en', 1, 'https://ror.org/017g36q02 Municipality of Amaroussion'),
(1047, 'https://ror.org/017h1mj21', 'en', 1, 'https://ror.org/017h1mj21 Kaiser Permanente Hayward Medical Center'),
(1048, 'https://ror.org/017hkng22', 'en', 1, 'https://ror.org/017hkng22 Ehime University 愛媛大学'),
(1049, 'https://ror.org/017j2n938', 'en', 1, 'https://ror.org/017j2n938 Kobe Central Hospital ē„žęˆøäø­å¤®ē—…é™¢'),
(1050, 'https://ror.org/017kgtg39', 'en', 1, 'https://ror.org/017kgtg39 Fukuoka Children''s Hospital and Medical Center for Infectious Diseases ē¦å²”åø‚ē«‹ć“ć©ć‚‚ē—…é™¢'),
(1051, 'https://ror.org/017m05e51', 'en', 1, 'https://ror.org/017m05e51 Health Policy Alternatives, Inc.'),
(1052, 'https://ror.org/017ph0934', 'en', 1, 'https://ror.org/017ph0934 Ulusal ve Uluslararası Ekonomi Üniversitesi University of National and World Economy Университет за национално Šø световно стопанство'),
(1053, 'https://ror.org/017pz3h73', 'en', 1, 'https://ror.org/017pz3h73 Urban Institute'),
(1054, 'https://ror.org/017q2rt66', 'en', 1, 'https://ror.org/017q2rt66 Mercy University Hospital'),
(1055, 'https://ror.org/017t1dh18', 'fr', 1, 'https://ror.org/017t1dh18 HƓpital Max Fourestier'),
(1056, 'https://ror.org/017vgxg86', 'no_lang_code', 1, 'https://ror.org/017vgxg86 Ford (Germany)'),
(1057, 'https://ror.org/017wcm924', 'en', 1, 'https://ror.org/017wcm924 University System of Georgia'),
(1058, 'https://ror.org/017xnm587', 'en', 1, 'https://ror.org/017xnm587 Soongsil University ģˆ­ģ‹¤ėŒ€ķ•™źµ'),
(1059, 'https://ror.org/017ztfb41', 'en', 1, 'https://ror.org/017ztfb41 San Francisco Department of Public Health'),
(1060, 'https://ror.org/01818mf51', 'no_lang_code', 1, 'https://ror.org/01818mf51 Messerschmitt-Bƶlkow-Blohm (Germany)'),
(1061, 'https://ror.org/018224621', 'en', 1, 'https://ror.org/018224621 American Academy of Arts and Sciences'),
(1062, 'https://ror.org/018224j82', 'en', 1, 'https://ror.org/018224j82 Buena Vista University'),
(1063, 'https://ror.org/0183m5185', 'en', 1, 'https://ror.org/0183m5185 Wonkwang University Medical Center ģ›ź“‘ėŒ€ķ•™źµė³‘ģ›'),
(1064, 'https://ror.org/0184gbk60', 'en', 1, 'https://ror.org/0184gbk60 Steinbeis Foundation Steinbeis-Stiftung'),
(1065, 'https://ror.org/0184p1881', 'en', 1, 'https://ror.org/0184p1881 Nevada Department of Health and Human Services'),
(1066, 'https://ror.org/0187t0j49', 'en', 1, 'https://ror.org/0187t0j49 John Hunter Hospital'),
(1067, 'https://ror.org/018dx8725', 'en', 1, 'https://ror.org/018dx8725 Sparrow Hospital'),
(1068, 'https://ror.org/018k7fz65', 'en', 1, 'https://ror.org/018k7fz65 Ministry of Health įž€įŸ’įžšįžŸįž½įž„įžŸįž»įžįž¶įž—įž·įž”įž¶įž›'),
(1069, 'https://ror.org/018mgzn65', 'en', 1, 'https://ror.org/018mgzn65 Baylor Medical Center at Garland'),
(1070, 'https://ror.org/018pq0b08', 'no_lang_code', 1, 'https://ror.org/018pq0b08 Niigata Prefectural Central Hospital ę–°ę½ŸēœŒē«‹äø­å¤®ē—…é™¢'),
(1071, 'https://ror.org/018s10n18', 'en', 1, 'https://ror.org/018s10n18 Jewish Hospital'),
(1072, 'https://ror.org/018s6xs98', 'en', 1, 'https://ror.org/018s6xs98 International Cooperative Administrative Support Services'),
(1073, 'https://ror.org/018txrr13', 'en', 1, 'https://ror.org/018txrr13 VA Ann Arbor Healthcare System'),
(1074, 'https://ror.org/018vqfn69', 'en', 1, 'https://ror.org/018vqfn69 Matsunami General Hospital ę¾ę³¢ē—…é™¢'),
(1075, 'https://ror.org/0190kj665', 'es', 1, 'https://ror.org/0190kj665 Hospital General de Granollers'),
(1076, 'https://ror.org/0193sb042', 'en', 1, 'https://ror.org/0193sb042 Henry Ford Hospital HƓpital henry ford'),
(1077, 'https://ror.org/0195twz09', 'en', 1, 'https://ror.org/0195twz09 St. Luke''s Episcopal Hospital'),
(1078, 'https://ror.org/019621n74', 'en', 1, 'https://ror.org/019621n74 Public Health Institute'),
(1079, 'https://ror.org/019641589', 'en', 1, 'https://ror.org/019641589 Inje University Haeundae Paik Hospital ģøģ œ ėŒ€ķ•™źµ ķ•“ģš“ėŒ€ 백병원'),
(1080, 'https://ror.org/019br0e98', 'no_lang_code', 1, 'https://ror.org/019br0e98 Metabolic Solutions'),
(1081, 'https://ror.org/019bxes45', 'en', 1, 'https://ror.org/019bxes45 University Dental Hospital of Manchester'),
(1082, 'https://ror.org/019bz1656', 'en', 1, 'https://ror.org/019bz1656 Clinical Center University of Sarajevo'),
(1083, 'https://ror.org/019e4d354', 'en', 1, 'https://ror.org/019e4d354 Government Medical College ਸਰਕਾਰੀ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ąØ•ąØ¾ąØ²ąØœ'),
(1084, 'https://ror.org/019e4dr88', 'en', 1, 'https://ror.org/019e4dr88 Erie County Medical Center'),
(1085, 'https://ror.org/019f36t97', 'en', 1, 'https://ror.org/019f36t97 Royal Berkshire Hospital'),
(1086, 'https://ror.org/019hb9542', 'en', 1, 'https://ror.org/019hb9542 St Helier Hospital'),
(1087, 'https://ror.org/019ja9e37', 'no_lang_code', 1, 'https://ror.org/019ja9e37 Atomic Energy (Canada) Ɖnergie atomique du Canada'),
(1088, 'https://ror.org/019k4jq75', 'en', 1, 'https://ror.org/019k4jq75 Brooklyn College College de Brooklyn de la Universidad de la Ciudad de Nueva York'),
(1089, 'https://ror.org/019kgqr73', 'en', 1, 'https://ror.org/019kgqr73 The University of Texas at Arlington UniversitƩ du Texas Ơ Arlington'),
(1090, 'https://ror.org/019krky16', 'en', 1, 'https://ror.org/019krky16 Medical Group Management Association'),
(1091, 'https://ror.org/019my5047', 'en', 1, 'https://ror.org/019my5047 Royal London Hospital'),
(1092, 'https://ror.org/019myg640', 'de', 1, 'https://ror.org/019myg640 Krankenanstalt Rudolfstiftung der Stadt Wien'),
(1093, 'https://ror.org/019rjbt98', 'en', 1, 'https://ror.org/019rjbt98 Colorado Department of Public Health and Environment'),
(1094, 'https://ror.org/019s1t671', 'en', 1, 'https://ror.org/019s1t671 Montgomery County Department of Health and Human Services'),
(1095, 'https://ror.org/019tq3436', 'en', 1, 'https://ror.org/019tq3436 Far Eastern Memorial Hospital'),
(1096, 'https://ror.org/019tstz42', 'sv', 1, 'https://ror.org/019tstz42 Ersta sjukhus'),
(1097, 'https://ror.org/019wt1929', 'en', 1, 'https://ror.org/019wt1929 Sheffield Hallam University'),
(1098, 'https://ror.org/019x0cx75', 'no_lang_code', 1, 'https://ror.org/019x0cx75 Science and Engineering Services (United States)'),
(1099, 'https://ror.org/019z71f50', 'en', 1, 'https://ror.org/019z71f50 National Taipei University of Nursing and Health Science åœ‹ē«‹č‡ŗåŒ—č­·ē†å„åŗ·å¤§å­ø'),
(1100, 'https://ror.org/019z9dk17', 'en', 1, 'https://ror.org/019z9dk17 Mount Elizabeth Hospital ą®®ą®µąÆą®£ąÆą®ŸąÆ ą®Žą®²ą®æą®šą®ŖąÆ†ą®¤ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(1101, 'https://ror.org/019zp2770', 'en', 1, 'https://ror.org/019zp2770 Upstate University Hospital'),
(1102, 'https://ror.org/01a0h9c53', 'no_lang_code', 1, 'https://ror.org/01a0h9c53 Kingston Process Metallurgy (Canada)'),
(1103, 'https://ror.org/01a1mbs69', 'en', 1, 'https://ror.org/01a1mbs69 Princess of Wales Hospital'),
(1104, 'https://ror.org/01a1x1d92', 'no_lang_code', 1, 'https://ror.org/01a1x1d92 Ruttonjee Hospital 律敦治醫院'),
(1105, 'https://ror.org/01a3mef16', 'en', 1, 'https://ror.org/01a3mef16 Pondicherry University ą¤Ŗą„‰ą¤Øą„ą¤”ą¤æą¤šą„‡ą¤°ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®ŖąÆą®¤ąÆą®µąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°Ŗą°¾ą°‚ą°”ą°æą°šą±ą°šą±‡ą°°ą°æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą“Ŗąµ‹ą“£ąµą“Ÿą“æą“šąµą“šąµ‡ą“°ą“æ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(1106, 'https://ror.org/01a3zyd02', 'it', 1, 'https://ror.org/01a3zyd02 Ospedale Regionale di Locarno'),
(1107, 'https://ror.org/01a423692', 'no_lang_code', 1, 'https://ror.org/01a423692 Aastrom Biosciences (United States)'),
(1108, 'https://ror.org/01a4bac78', 'en', 1, 'https://ror.org/01a4bac78 Cantox Health Sciences International'),
(1109, 'https://ror.org/01a4d6k20', 'en', 1, 'https://ror.org/01a4d6k20 Jawaharlal Nehru Medical College'),
(1110, 'https://ror.org/01a4gqp27', 'en', 1, 'https://ror.org/01a4gqp27 Harry S. Truman Memorial Veterans'' Hospital'),
(1111, 'https://ror.org/01a6tsm75', 'en', 1, 'https://ror.org/01a6tsm75 Hillel Yaffe Medical Center'),
(1112, 'https://ror.org/01adsjd47', 'no_lang_code', 1, 'https://ror.org/01adsjd47 Seonam University'),
(1113, 'https://ror.org/01aeq1t78', 'en', 1, 'https://ror.org/01aeq1t78 Shriners Hospitals for Children - Cincinnati'),
(1114, 'https://ror.org/01agth861', 'en', 1, 'https://ror.org/01agth861 American Association of Physics Teachers'),
(1115, 'https://ror.org/01akfrh45', 'no_lang_code', 1, 'https://ror.org/01akfrh45 Farwaniya Hospital مستؓفى Ų§Ł„ŁŲ±ŁˆŲ§Ł†ŁŠŲ©'),
(1116, 'https://ror.org/01ans1m53', 'no_lang_code', 1, 'https://ror.org/01ans1m53 SomaGenics (United States)'),
(1117, 'https://ror.org/01apd5369', 'en', 1, 'https://ror.org/01apd5369 John Paul II Hospital Krakowski Szpital Specjalistyczny im. Jana Pawła II'),
(1118, 'https://ror.org/01apvbh93', 'en', 1, 'https://ror.org/01apvbh93 Akademiska sjukhuset Uppsala University Hospital'),
(1119, 'https://ror.org/01ar9e455', 'en', 1, 'https://ror.org/01ar9e455 The Aerospace Corporation'),
(1120, 'https://ror.org/01aryec24', 'en', 1, 'https://ror.org/01aryec24 Southeastern Oklahoma State University'),
(1121, 'https://ror.org/01as10d06', 'en', 1, 'https://ror.org/01as10d06 Harrisburg Hospital'),
(1122, 'https://ror.org/01atr9m08', 'no_lang_code', 1, 'https://ror.org/01atr9m08 Biotex (United States)'),
(1123, 'https://ror.org/01atwky19', 'en', 1, 'https://ror.org/01atwky19 North Oaks Health System'),
(1124, 'https://ror.org/01aw2gs83', 'en', 1, 'https://ror.org/01aw2gs83 Nagasaki Kawatana Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹é•·å“Žå·ę£šåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1125, 'https://ror.org/01ayg2409', 'no_lang_code', 1, 'https://ror.org/01ayg2409 Juniata College'),
(1126, 'https://ror.org/01ayqmq97', 'en', 1, 'https://ror.org/01ayqmq97 Rajendra Hospital'),
(1127, 'https://ror.org/01azs0t89', 'es', 1, 'https://ror.org/01azs0t89 Hospital Carmen y Severo Ochoa'),
(1128, 'https://ror.org/01b1c8m98', 'en', 1, 'https://ror.org/01b1c8m98 Ministry of Health وزارة الصحة'),
(1129, 'https://ror.org/01b1r6152', 'en', 1, 'https://ror.org/01b1r6152 Kowloon Hospital 九龍醫院'),
(1130, 'https://ror.org/01b2c5015', 'es', 1, 'https://ror.org/01b2c5015 Hospital Sierrallana'),
(1131, 'https://ror.org/01b2wv937', 'en', 1, 'https://ror.org/01b2wv937 New York State Office of Mental Health'),
(1132, 'https://ror.org/01b330649', 'no_lang_code', 1, 'https://ror.org/01b330649 Nova Research Company (United States)'),
(1133, 'https://ror.org/01b3dvp57', 'en', 1, 'https://ror.org/01b3dvp57 Garvan Institute of Medical Research'),
(1134, 'https://ror.org/01b5d7p48', 'no_lang_code', 1, 'https://ror.org/01b5d7p48 Schlumberger (France)'),
(1135, 'https://ror.org/01b6d9h22', 'hr', 1, 'https://ror.org/01b6d9h22 Klinička bolnica Merkur'),
(1136, 'https://ror.org/01b78mz79', 'pt', 1, 'https://ror.org/01b78mz79 Federal University of Santa Maria Universidad Federal de Santa MarĆ­a Universidade Federal de Santa Maria'),
(1137, 'https://ror.org/01b8f4h92', 'no_lang_code', 1, 'https://ror.org/01b8f4h92 Athens Technology Center (Greece)'),
(1138, 'https://ror.org/01b8kcc49', 'en', 1, 'https://ror.org/01b8kcc49 National Cheng Kung University'),
(1139, 'https://ror.org/01banz567', 'en', 1, 'https://ror.org/01banz567 Kyushu University of Health and Welfare ä¹å·žäæå„ē¦ē„‰å¤§å­¦'),
(1140, 'https://ror.org/01bbs6821', 'en', 1, 'https://ror.org/01bbs6821 Fisk University Universidad de Fisk'),
(1141, 'https://ror.org/01bbyhp53', 'en', 1, 'https://ror.org/01bbyhp53 Basingstoke and North Hampshire Hospital'),
(1142, 'https://ror.org/01bchmt70', 'fr', 1, 'https://ror.org/01bchmt70 Centre Hospitalier d''Orsay'),
(1143, 'https://ror.org/01bcp3a67', 'en', 1, 'https://ror.org/01bcp3a67 Benenden Hospital'),
(1144, 'https://ror.org/01bdr6121', 'en', 1, 'https://ror.org/01bdr6121 University of Guilan دانؓگاه ŚÆŪŒŁ„Ų§Ł†'),
(1145, 'https://ror.org/01bgafn72', 'no_lang_code', 1, 'https://ror.org/01bgafn72 Hamad General Hospital'),
(1146, 'https://ror.org/01bgds823', 'en', 1, 'https://ror.org/01bgds823 Affiliated Hospital of Chengde Medical College ę‰æå¾·åŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(1147, 'https://ror.org/01bhkfn26', 'en', 1, 'https://ror.org/01bhkfn26 Southern Command Hospital'),
(1148, 'https://ror.org/01bk73674', 'en', 1, 'https://ror.org/01bk73674 Chengdu Military General Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ęˆéƒ½å†›åŒŗę€»åŒ»é™¢'),
(1149, 'https://ror.org/01bkdwe73', 'pt', 1, 'https://ror.org/01bkdwe73 Hospital Heliópolis'),
(1150, 'https://ror.org/01bmj6z20', 'en', 1, 'https://ror.org/01bmj6z20 Maesot General Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ą¹ąø”ą¹ˆąøŖąø­ąø”'),
(1151, 'https://ror.org/01bn4rh74', 'en', 1, 'https://ror.org/01bn4rh74 Heritage Valley Beaver'),
(1152, 'https://ror.org/01bnyxq20', 'es', 1, 'https://ror.org/01bnyxq20 Hospital Ramos MejĆ­a'),
(1153, 'https://ror.org/01bry7z39', 'en', 1, 'https://ror.org/01bry7z39 Northwest Nazarene University'),
(1154, 'https://ror.org/01bt82v32', 'en', 1, 'https://ror.org/01bt82v32 Northern Light Mercy Hospital'),
(1155, 'https://ror.org/01bthtp68', 'no_lang_code', 1, 'https://ror.org/01bthtp68 Corixa Corporation'),
(1156, 'https://ror.org/01btjc831', 'it', 1, 'https://ror.org/01btjc831 Ospedale San Giacomo Apostolo'),
(1157, 'https://ror.org/01bvmk374', 'no_lang_code', 1, 'https://ror.org/01bvmk374 GIUNTI Intenational Division (Italy)'),
(1158, 'https://ror.org/01bw9xe44', 'en', 1, 'https://ror.org/01bw9xe44 Academy of Georgofili Accademia dei Georgofili'),
(1159, 'https://ror.org/01bx8ja67', 'no_lang_code', 1, 'https://ror.org/01bx8ja67 Maharaja Sayajirao University of Baroda મહારાજા ąŖøąŖÆąŖ¾ąŖœą«€ąŖ°ąŖ¾ąŖµ ąŖµąŖæąŖ¶ą«ąŖµąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖ²ąŖÆ ą®®ą®•ą®¾ą®°ą®¾ą®œą®¾ ą®šą®¾ą®Æą®¾ą®œą®æą®°ą®¾ą®µąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(1160, 'https://ror.org/01by1qv45', 'en', 1, 'https://ror.org/01by1qv45 Santa Casa Hospital'),
(1161, 'https://ror.org/01byf4846', 'es', 1, 'https://ror.org/01byf4846 Fundación Hospital de Jove'),
(1162, 'https://ror.org/01bywqg69', 'no_lang_code', 1, 'https://ror.org/01bywqg69 Automotive Fuel Cell Cooperation (Canada)'),
(1163, 'https://ror.org/01bzpky79', 'en', 1, 'https://ror.org/01bzpky79 Ajou University Hospital 아주 ėŒ€ķ•™źµ 병원'),
(1164, 'https://ror.org/01c2dee93', 'en', 1, 'https://ror.org/01c2dee93 Baystate Franklin Medical Center'),
(1165, 'https://ror.org/01c2wzp81', 'tr', 1, 'https://ror.org/01c2wzp81 Dr Lütfi Kırdar Kartal Eğitim ve Araştırma Hastanesi'),
(1166, 'https://ror.org/01c3hyk82', 'en', 1, 'https://ror.org/01c3hyk82 Shih Chien University'),
(1167, 'https://ror.org/01c524129', 'en', 1, 'https://ror.org/01c524129 King Fahd Military Medical Complex'),
(1168, 'https://ror.org/01c5cqy87', 'en', 1, 'https://ror.org/01c5cqy87 General Hospital of Serres Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī£ĪµĻĻĻŽĪ½'),
(1169, 'https://ror.org/01c5j0443', 'fr', 1, 'https://ror.org/01c5j0443 Institut d''Ɖconomie Rurale'),
(1170, 'https://ror.org/01c74sd89', 'no_lang_code', 1, 'https://ror.org/01c74sd89 STMicroelectronics (France)'),
(1171, 'https://ror.org/01c804c94', 'no_lang_code', 1, 'https://ror.org/01c804c94 First Point Scientific'),
(1172, 'https://ror.org/01cb0kd74', 'en', 1, 'https://ror.org/01cb0kd74 Royal Hospital for Children'),
(1173, 'https://ror.org/01cgbsh11', 'en', 1, 'https://ror.org/01cgbsh11 Hutt Hospital'),
(1174, 'https://ror.org/01ch4qb51', 'en', 1, 'https://ror.org/01ch4qb51 Mercy Hospital for Women'),
(1175, 'https://ror.org/01cjd8n57', 'no_lang_code', 1, 'https://ror.org/01cjd8n57 Nagasaki Rousai Hospital é•·å“ŽåŠ“ē½ē—…é™¢'),
(1176, 'https://ror.org/01ckz8750', 'no_lang_code', 1, 'https://ror.org/01ckz8750 Lickenbrock'),
(1177, 'https://ror.org/01cmpkr67', 'no_lang_code', 1, 'https://ror.org/01cmpkr67 Materials Modification (United States)'),
(1178, 'https://ror.org/01cpcy908', 'en', 1, 'https://ror.org/01cpcy908 McLaren Regional Medical Center'),
(1179, 'https://ror.org/01cqcrc47', 'en', 1, 'https://ror.org/01cqcrc47 Rangsit University ดหาวณทยาคัยรังสณต'),
(1180, 'https://ror.org/01cqmqj90', 'en', 1, 'https://ror.org/01cqmqj90 Hadassah Medical Center Ł…Ų±ŁƒŲ² هداسا Ų§Ł„Ų·ŲØŁŠ'),
(1181, 'https://ror.org/01cqx0m58', 'en', 1, 'https://ror.org/01cqx0m58 Centro Italiano Ricerche Aerospaziali Italian Aerospace Research Centre'),
(1182, 'https://ror.org/01cqxk816', 'en', 1, 'https://ror.org/01cqxk816 University of West Georgia'),
(1183, 'https://ror.org/01ctb0h41', 'en', 1, 'https://ror.org/01ctb0h41 Triangle Coalition For Science and Technology Education'),
(1184, 'https://ror.org/01cv0eh48', 'en', 1, 'https://ror.org/01cv0eh48 Royal Belfast Hospital for Sick Children'),
(1185, 'https://ror.org/01cw77n16', 'en', 1, 'https://ror.org/01cw77n16 Fairfield Infectious Diseases Hospital'),
(1186, 'https://ror.org/01cwbae71', 'en', 1, 'https://ror.org/01cwbae71 Hannam University ķ•œė‚ØėŒ€ķ•™źµ'),
(1187, 'https://ror.org/01cx2sj34', 'pl', 1, 'https://ror.org/01cx2sj34 Centrum Medyczne Kształcenia Podyplomowego'),
(1188, 'https://ror.org/01cyv3m84', 'en', 1, 'https://ror.org/01cyv3m84 Ospedale di Santa Maria Nuova Santa Maria Nuova Hospital'),
(1189, 'https://ror.org/01czx1v82', 'en', 1, 'https://ror.org/01czx1v82 Huzhou Central Hospital ę¹–å·žåø‚äø­åæƒåŒ»é™¢'),
(1190, 'https://ror.org/01d00rw04', 'en', 1, 'https://ror.org/01d00rw04 KPC Medical College and Hospital কেপিসি মেঔিকাল ą¦•ą¦²ą§‡ą¦œ ও কে ą¦ą¦ø রায় টিবি হাসপাতাল'),
(1191, 'https://ror.org/01d012874', 'es', 1, 'https://ror.org/01d012874 ClĆ­nica La Luz, Hospital La Luz'),
(1192, 'https://ror.org/01d261e32', 'en', 1, 'https://ror.org/01d261e32 Furness General Hospital'),
(1193, 'https://ror.org/01d2e9e05', 'en', 1, 'https://ror.org/01d2e9e05 Maternity and Children''s Hospital'),
(1194, 'https://ror.org/01d2sy711', 'no_lang_code', 1, 'https://ror.org/01d2sy711 E-One Moli Energy (Canada)'),
(1195, 'https://ror.org/01d3gh658', 'en', 1, 'https://ror.org/01d3gh658 Centraal Militair Hospitaal Central Military Hospital'),
(1196, 'https://ror.org/01d59nd22', 'en', 1, 'https://ror.org/01d59nd22 Federal Ministry of Health وزارة الصحة Ų§Ł„Ų„ŲŖŲ­Ų§ŲÆŁŠŲ©'),
(1197, 'https://ror.org/01d692d57', 'en', 1, 'https://ror.org/01d692d57 University of Sindh سندھ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(1198, 'https://ror.org/01d86hn60', 'it', 1, 'https://ror.org/01d86hn60 Ospedale San Carlo'),
(1199, 'https://ror.org/01d9cs377', 'en', 1, 'https://ror.org/01d9cs377 University Health System'),
(1200, 'https://ror.org/01dcrt245', 'en', 1, 'https://ror.org/01dcrt245 Dubai Health Authority Ł‡ŁŠŲ¦Ų© الصحة بدبي'),
(1201, 'https://ror.org/01defpn95', 'en', 1, 'https://ror.org/01defpn95 Sathyabama Institute of Science and Technology ą®šą®¤ąÆą®Æą®Ŗą®¾ą®®ą®¾ ą®Ŗā€Œą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°øą°¤ą±ą°Æą°­ą°¾ą°® ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(1202, 'https://ror.org/01df9ep43', 'en', 1, 'https://ror.org/01df9ep43 Era''s Lucknow Medical College and Hospital'),
(1203, 'https://ror.org/01dgc8k02', 'it', 1, 'https://ror.org/01dgc8k02 Ospedale Cristo Re'),
(1204, 'https://ror.org/01dgn5344', 'en', 1, 'https://ror.org/01dgn5344 Rider University Universidad Rider UniversitƩ de rider'),
(1205, 'https://ror.org/01djnr762', 'no_lang_code', 1, 'https://ror.org/01djnr762 Dalsa Corporation'),
(1206, 'https://ror.org/01dk3f134', 'no_lang_code', 1, 'https://ror.org/01dk3f134 Tokyo Metropolitan Bokutoh Hospital ę±äŗ¬éƒ½ē«‹å¢Øę±ē—…é™¢'),
(1207, 'https://ror.org/01dk7q852', 'no_lang_code', 1, 'https://ror.org/01dk7q852 Cardiovascular Center Hokkaido Ohno Hospital åæƒč‡“č”€ē®”ć‚»ćƒ³ć‚æćƒ¼åŒ—ęµ·é“å¤§é‡Žē—…é™¢'),
(1208, 'https://ror.org/01dkn0c77', 'pt', 1, 'https://ror.org/01dkn0c77 Hospital Santa Izabel'),
(1209, 'https://ror.org/01dkvrg87', 'en', 1, 'https://ror.org/01dkvrg87 Sabbatsberg Hospital Sabbatsbergs Sjukhus'),
(1210, 'https://ror.org/01dm04760', 'en', 1, 'https://ror.org/01dm04760 Lexington VA Health Care System'),
(1211, 'https://ror.org/01dm18990', 'en', 1, 'https://ror.org/01dm18990 Lakeshore Hospital'),
(1212, 'https://ror.org/01dmyj570', 'en', 1, 'https://ror.org/01dmyj570 Shriners Hospitals for Children - Northern California'),
(1213, 'https://ror.org/01dpw6893', 'en', 1, 'https://ror.org/01dpw6893 Scripps Memorial Hospital'),
(1214, 'https://ror.org/01dqhdd78', 'en', 1, 'https://ror.org/01dqhdd78 Clatterbridge Hospital Ysbyty Clattebridge'),
(1215, 'https://ror.org/01dspcb60', 'en', 1, 'https://ror.org/01dspcb60 Jiangxi Provincial People''s Hospital ę±Ÿč„æēœäŗŗę°‘åŒ»é™¢'),
(1216, 'https://ror.org/01dsw4m23', 'en', 1, 'https://ror.org/01dsw4m23 Repatriation General Hospital'),
(1217, 'https://ror.org/01dsy9055', 'en', 1, 'https://ror.org/01dsy9055 University Hospital Ayr'),
(1218, 'https://ror.org/01dszvc69', 'en', 1, 'https://ror.org/01dszvc69 Sapporo Azabu Neurosurgical Hospital ęœ­å¹Œéŗ»ē”Ÿč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(1219, 'https://ror.org/01dxm2p72', 'no_lang_code', 1, 'https://ror.org/01dxm2p72 Saipem (Italy) SocietĆ  Anonima Italiana Perforazioni E Montaggi'),
(1220, 'https://ror.org/01dzpsy49', 'en', 1, 'https://ror.org/01dzpsy49 Nara City Hospital åø‚ē«‹å„ˆč‰Æē—…é™¢'),
(1221, 'https://ror.org/01e2avb80', 'en', 1, 'https://ror.org/01e2avb80 Prince George''s Hospital Center'),
(1222, 'https://ror.org/01e320272', 'fr', 1, 'https://ror.org/01e320272 HƓpital Saint-Philibert'),
(1223, 'https://ror.org/01e4pq116', 'fr', 1, 'https://ror.org/01e4pq116 HƓpital Saint Charles'),
(1224, 'https://ror.org/01e4pq504', 'en', 1, 'https://ror.org/01e4pq504 Portland Community College'),
(1225, 'https://ror.org/01e4z3q24', 'en', 1, 'https://ror.org/01e4z3q24 Priest Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąø‡ąø†ą¹Œ'),
(1226, 'https://ror.org/01e5t7e46', 'no_lang_code', 1, 'https://ror.org/01e5t7e46 Nanomaterials Research (United States)'),
(1227, 'https://ror.org/01e87ch81', 'en', 1, 'https://ror.org/01e87ch81 Oregon Museum of Science and Industry'),
(1228, 'https://ror.org/01ec7xj20', 'en', 1, 'https://ror.org/01ec7xj20 Jaswant Rai Speciality Hospital'),
(1229, 'https://ror.org/01ecnnp60', 'en', 1, 'https://ror.org/01ecnnp60 Jackson State University UniversitĆ© d''Ɖtat de Jackson'),
(1230, 'https://ror.org/01eedy375', 'en', 1, 'https://ror.org/01eedy375 Alabama State University'),
(1231, 'https://ror.org/01eeehv22', 'no_lang_code', 1, 'https://ror.org/01eeehv22 Bell Helicopter Textron (Canada)'),
(1232, 'https://ror.org/01eff5662', 'en', 1, 'https://ror.org/01eff5662 Beijing Chao-Yang Hospital åŒ—äŗ¬ęœé˜³åŒ»é™¢'),
(1233, 'https://ror.org/01efrfk30', 'en', 1, 'https://ror.org/01efrfk30 Stetson University'),
(1234, 'https://ror.org/01egdsz94', 'en', 1, 'https://ror.org/01egdsz94 Baptist Health System'),
(1235, 'https://ror.org/01egmr022', 'no_lang_code', 1, 'https://ror.org/01egmr022 Nantong Tumor Hospital å—é€šåø‚č‚æē˜¤åŒ»é™¢'),
(1236, 'https://ror.org/01ej92a17', 'en', 1, 'https://ror.org/01ej92a17 Sandviken Hospital Sandviken sykehus'),
(1237, 'https://ror.org/01ejxf797', 'en', 1, 'https://ror.org/01ejxf797 Mohamed I University UniversitĆ© Mohammed Ier Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ Ų§Ł„Ų£ŁˆŁ„'),
(1238, 'https://ror.org/01ek0ym72', 'pl', 1, 'https://ror.org/01ek0ym72 4. Wojskowy Szpital Kliniczny z Polikliniką'),
(1239, 'https://ror.org/01ekg2j77', 'en', 1, 'https://ror.org/01ekg2j77 Blood Systems Research Institute'),
(1240, 'https://ror.org/01eksj726', 'en', 1, 'https://ror.org/01eksj726 Konyang University Hospital ķ•œģ–‘ ėŒ€ķ•™źµ 병원'),
(1241, 'https://ror.org/01emnh554', 'no_lang_code', 1, 'https://ror.org/01emnh554 Saga-Ken Medical Centre Koseikan ä½č³€ēœŒåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼å„½ē”Ÿé¤Ø'),
(1242, 'https://ror.org/01emtgd92', 'en', 1, 'https://ror.org/01emtgd92 Mansfield University'),
(1243, 'https://ror.org/01emxrg90', 'pt', 1, 'https://ror.org/01emxrg90 Hospital Pedro Hispano'),
(1244, 'https://ror.org/01eq8c489', 'en', 1, 'https://ror.org/01eq8c489 Lady Reading Hospital'),
(1245, 'https://ror.org/01eqjmz45', 'en', 1, 'https://ror.org/01eqjmz45 Hokko Memorial Hospital åŒ—å…‰čØ˜åæµē—…é™¢'),
(1246, 'https://ror.org/01es3w453', 'no_lang_code', 1, 'https://ror.org/01es3w453 Northwest Media (United States)'),
(1247, 'https://ror.org/01espdw89', 'en', 1, 'https://ror.org/01espdw89 Beijing Chest Hospital'),
(1248, 'https://ror.org/01ev5nj79', 'es', 1, 'https://ror.org/01ev5nj79 Hospital MƩdica Sur'),
(1249, 'https://ror.org/01ev6gy70', 'en', 1, 'https://ror.org/01ev6gy70 Escola Naval Portuguese Naval School'),
(1250, 'https://ror.org/01evb6z23', 'en', 1, 'https://ror.org/01evb6z23 King University'),
(1251, 'https://ror.org/01ew49p77', 'en', 1, 'https://ror.org/01ew49p77 Malcom Randall VA Medical Center'),
(1252, 'https://ror.org/01eyb5f38', 'en', 1, 'https://ror.org/01eyb5f38 Kern Medical Center'),
(1253, 'https://ror.org/01f4y0525', 'en', 1, 'https://ror.org/01f4y0525 College of Medical Sciences'),
(1254, 'https://ror.org/01f97j659', 'en', 1, 'https://ror.org/01f97j659 Anyang Academy of Agricultural Sciences å®‰é˜³åø‚å†œäøšē§‘å­¦é™¢'),
(1255, 'https://ror.org/01fbdn283', 'en', 1, 'https://ror.org/01fbdn283 Magee-Womens Hospital'),
(1256, 'https://ror.org/01fbz6h17', 'en', 1, 'https://ror.org/01fbz6h17 Denver Health Medical Center'),
(1257, 'https://ror.org/01fd8g905', 'en', 1, 'https://ror.org/01fd8g905 University of Montevallo'),
(1258, 'https://ror.org/01fkbmk11', 'en', 1, 'https://ror.org/01fkbmk11 Maritime Research Institute Netherlands'),
(1259, 'https://ror.org/01fksx040', 'en', 1, 'https://ror.org/01fksx040 Gaustad Hospital Gaustad Sykehus'),
(1260, 'https://ror.org/01fm87m50', 'en', 1, 'https://ror.org/01fm87m50 Rambam Health Care Campus ×Ø×ž×‘"ם - הקריה הרפואית ×œ×‘×Ø×™××•×Ŗ ×”××“×ā€Ž مؓفى رمبام'),
(1261, 'https://ror.org/01fmz4h16', 'no_lang_code', 1, 'https://ror.org/01fmz4h16 Hirosakiaiseikai Hospital å¼˜å‰ę„›ęˆä¼šē—…é™¢'),
(1262, 'https://ror.org/01fpnj063', 'en', 1, 'https://ror.org/01fpnj063 Catholic University of Korea ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(1263, 'https://ror.org/01fv1ds98', 'no_lang_code', 1, 'https://ror.org/01fv1ds98 Yuan Ze University'),
(1264, 'https://ror.org/01fvf0d84', 'en', 1, 'https://ror.org/01fvf0d84 Tajen University'),
(1265, 'https://ror.org/01fvnb423', 'en', 1, 'https://ror.org/01fvnb423 Presbyterian Medical Center ģ˜ˆģˆ˜ė³‘ģ›'),
(1266, 'https://ror.org/01fxd7077', 'en', 1, 'https://ror.org/01fxd7077 Center for Health Care Law'),
(1267, 'https://ror.org/01fxdkm29', 'en', 1, 'https://ror.org/01fxdkm29 Doshisha University åŒåæ—ē¤¾å¤§å­¦'),
(1268, 'https://ror.org/01fzm0693', 'en', 1, 'https://ror.org/01fzm0693 Abbott Northwestern Hospital'),
(1269, 'https://ror.org/01g171x08', 'en', 1, 'https://ror.org/01g171x08 Alice Ho Miu Ling Nethersole Hospital é›…éŗ—ę°ä½•å¦™é½”é‚£ę‰“ē“ é†«é™¢'),
(1270, 'https://ror.org/01g246z62', 'en', 1, 'https://ror.org/01g246z62 International Union of Railways Union internationale des chemins de fer'),
(1271, 'https://ror.org/01g2xkw11', 'pt', 1, 'https://ror.org/01g2xkw11 Instituto Superior de Gestão e Administração de Santarém'),
(1272, 'https://ror.org/01g312x22', 'no_lang_code', 1, 'https://ror.org/01g312x22 BG Group (United Kingdom)'),
(1273, 'https://ror.org/01g3pwn65', 'en', 1, 'https://ror.org/01g3pwn65 Mississippi Department of Mental Health'),
(1274, 'https://ror.org/01g63ab19', 'en', 1, 'https://ror.org/01g63ab19 Northside Hospital'),
(1275, 'https://ror.org/01g67by91', 'en', 1, 'https://ror.org/01g67by91 Mercer University Health Sciences Center'),
(1276, 'https://ror.org/01gaptw32', 'es', 1, 'https://ror.org/01gaptw32 Hospital de HellĆ­n'),
(1277, 'https://ror.org/01gcc9p15', 'en', 1, 'https://ror.org/01gcc9p15 Saint John''s Health Center'),
(1278, 'https://ror.org/01gd3da15', 'no_lang_code', 1, 'https://ror.org/01gd3da15 Stantec (Canada)'),
(1279, 'https://ror.org/01gezbc84', 'en', 1, 'https://ror.org/01gezbc84 Japanese Red Cross Medical Center ę—„ęœ¬čµ¤åå­—ē¤¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1280, 'https://ror.org/01ggyr403', 'en', 1, 'https://ror.org/01ggyr403 Canadian Foundation for Healthcare Improvement'),
(1281, 'https://ror.org/01ghsr491', 'no_lang_code', 1, 'https://ror.org/01ghsr491 Trevigen'),
(1282, 'https://ror.org/01gqe3t73', 'no_lang_code', 1, 'https://ror.org/01gqe3t73 Sangji University ģƒģ§€ėŒ€ķ•™źµ'),
(1283, 'https://ror.org/01grdhw06', 'en', 1, 'https://ror.org/01grdhw06 Center for Tuberculosis Control of Guangdong Province å¹æäøœēœē»“ę øē—…ęŽ§åˆ¶'),
(1284, 'https://ror.org/01grq2104', 'en', 1, 'https://ror.org/01grq2104 Torrey Pines Institute For Molecular Studies'),
(1285, 'https://ror.org/01gst4g14', 'en', 1, 'https://ror.org/01gst4g14 New York City Department of Health and Mental Hygiene'),
(1286, 'https://ror.org/01gt7sg63', 'pt', 1, 'https://ror.org/01gt7sg63 Universidade de TaubatƩ University of TaubatƩ');
INSERT INTO `rors` VALUES
(1287, 'https://ror.org/01gvfxs59', 'en', 1, 'https://ror.org/01gvfxs59 National Sagamihara Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹ē›øęØ”åŽŸē—…é™¢'),
(1288, 'https://ror.org/01gxs7p86', 'en', 1, 'https://ror.org/01gxs7p86 Christiana Hospital'),
(1289, 'https://ror.org/01gynte55', 'en', 1, 'https://ror.org/01gynte55 Sharp Memorial Hospital'),
(1290, 'https://ror.org/01gzkdv90', 'en', 1, 'https://ror.org/01gzkdv90 Kun Shan University'),
(1291, 'https://ror.org/01h0x7c18', 'en', 1, 'https://ror.org/01h0x7c18 PBR Laboratories'),
(1292, 'https://ror.org/01h22ap11', 'en', 1, 'https://ror.org/01h22ap11 Penn State Milton S. Hershey Medical Center'),
(1293, 'https://ror.org/01h29af62', 'no_lang_code', 1, 'https://ror.org/01h29af62 Spartan Bioscience (Canada)'),
(1294, 'https://ror.org/01h2hg078', 'en', 1, 'https://ror.org/01h2hg078 Birjand University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŪŒŲ±Ų¬Ł†ŲÆ'),
(1295, 'https://ror.org/01h2jcs31', 'en', 1, 'https://ror.org/01h2jcs31 Jewish Hospital'),
(1296, 'https://ror.org/01h4hqc60', 'en', 1, 'https://ror.org/01h4hqc60 Transylvania University'),
(1297, 'https://ror.org/01h6pd645', 'no_lang_code', 1, 'https://ror.org/01h6pd645 SurModics (United States)'),
(1298, 'https://ror.org/01h89k731', 'no_lang_code', 1, 'https://ror.org/01h89k731 TXT e-solutions (Italy)'),
(1299, 'https://ror.org/01h9xtf29', 'no_lang_code', 1, 'https://ror.org/01h9xtf29 Friday Systems (United States)'),
(1300, 'https://ror.org/01h9y0t02', 'en', 1, 'https://ror.org/01h9y0t02 Mount Sinai Hospital'),
(1301, 'https://ror.org/01ha5h612', 'en', 1, 'https://ror.org/01ha5h612 Princess Margaret Rose Orthopaedic Hospital'),
(1302, 'https://ror.org/01ha6bm93', 'no_lang_code', 1, 'https://ror.org/01ha6bm93 Progenra (United States)'),
(1303, 'https://ror.org/01hcyya48', 'en', 1, 'https://ror.org/01hcyya48 Cincinnati Children''s Hospital Medical Center'),
(1304, 'https://ror.org/01hhasq22', 'cs', 1, 'https://ror.org/01hhasq22 Výzkumný Ústav ZdravĆ­ DĆ­těte'),
(1305, 'https://ror.org/01hhczc28', 'en', 1, 'https://ror.org/01hhczc28 University of Benin Teaching Hospital'),
(1306, 'https://ror.org/01hkncq81', 'en', 1, 'https://ror.org/01hkncq81 Hiroshima City Asa Citizens Hospital åŗƒå³¶åø‚ē«‹å®‰ä½åø‚ę°‘ē—…é™¢'),
(1307, 'https://ror.org/01hs43g67', 'en', 1, 'https://ror.org/01hs43g67 Mississippi University for Women'),
(1308, 'https://ror.org/01hssm416', 'en', 1, 'https://ror.org/01hssm416 St John''s Hospital'),
(1309, 'https://ror.org/01hsw0492', 'en', 1, 'https://ror.org/01hsw0492 Gesellschaft für Chemische Technik und Biotechnologie Society for Chemical Engineering and Biotechnology'),
(1310, 'https://ror.org/01hy1ab69', 'en', 1, 'https://ror.org/01hy1ab69 Michigan Surgical Hospital'),
(1311, 'https://ror.org/01hy4qx27', 'en', 1, 'https://ror.org/01hy4qx27 University of Minnesota, Duluth'),
(1312, 'https://ror.org/01hyxtd05', 'no_lang_code', 1, 'https://ror.org/01hyxtd05 Neova Technologies Inc.'),
(1313, 'https://ror.org/01hzdv945', 'en', 1, 'https://ror.org/01hzdv945 Chaudhary Charan Singh University ą¤šą„Œą¤§ą¤°ą„€ चरण सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ சௌதரி ą®šą®°ą®£ąÆ ą®šą®æą®™ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(1314, 'https://ror.org/01j0n2h15', 'en', 1, 'https://ror.org/01j0n2h15 Universidad de Phoenix University of Phoenix UniversitƩ de phoenix'),
(1315, 'https://ror.org/01j0qa041', 'it', 1, 'https://ror.org/01j0qa041 Ospedali Riuniti di Ancona'),
(1316, 'https://ror.org/01j17xg39', 'en', 1, 'https://ror.org/01j17xg39 New York Hospital Queens'),
(1317, 'https://ror.org/01j25h453', 'en', 1, 'https://ror.org/01j25h453 Kelowna General Hospital'),
(1318, 'https://ror.org/01j6t9363', 'fr', 1, 'https://ror.org/01j6t9363 HĆ“pital Razi de La Manouba مستؓفئ Ų§Ł„Ų±Ų§Ų²ŁŠ'),
(1319, 'https://ror.org/01j780996', 'de', 1, 'https://ror.org/01j780996 Leopoldina Krankenhaus Schweinfurt'),
(1320, 'https://ror.org/01j7azy31', 'tr', 1, 'https://ror.org/01j7azy31 Dr Sami Ulus Ƈocuk Sağlığı ve Hastalıkları Eğitim ve Araştırma Hastanesi'),
(1321, 'https://ror.org/01j8kmv80', 'en', 1, 'https://ror.org/01j8kmv80 Golmud People''s Hospital ę ¼å°”ęœØåø‚äŗŗę°‘åŒ»é™¢'),
(1322, 'https://ror.org/01ja5zt45', 'en', 1, 'https://ror.org/01ja5zt45 District of Columbia Department of Health'),
(1323, 'https://ror.org/01jaaym28', 'en', 1, 'https://ror.org/01jaaym28 Shimane University 島根大学'),
(1324, 'https://ror.org/01jckan13', 'en', 1, 'https://ror.org/01jckan13 Kin-ikyo Chuo Hospital å‹¤åŒ»å”äø­å¤®ē—…é™¢'),
(1325, 'https://ror.org/01jdekv92', 'en', 1, 'https://ror.org/01jdekv92 Berkeley Geochronology Center'),
(1326, 'https://ror.org/01je6q363', 'fr', 1, 'https://ror.org/01je6q363 Centre Technique Industriel De La Construction Metallique'),
(1327, 'https://ror.org/01jfr3w16', 'en', 1, 'https://ror.org/01jfr3w16 Pacific Institute For Research and Evaluation'),
(1328, 'https://ror.org/01jg3a168', 'en', 1, 'https://ror.org/01jg3a168 Gosford Hospital'),
(1329, 'https://ror.org/01jh1mm11', 'en', 1, 'https://ror.org/01jh1mm11 Istanbul Florence Nightingale Hospital İstanbul Florence Nightingale Hastanesi'),
(1330, 'https://ror.org/01jhgy173', 'en', 1, 'https://ror.org/01jhgy173 Kishiwada City Hospital åø‚ē«‹å²øå’Œē”°åø‚ę°‘ē—…é™¢'),
(1331, 'https://ror.org/01jhsfg10', 'pt', 1, 'https://ror.org/01jhsfg10 Hospital de Dona Estefânia'),
(1332, 'https://ror.org/01jj26143', 'it', 1, 'https://ror.org/01jj26143 Hospital of the Holy Spirit Ospedale di Santo Spirito, Ospedale di Santo Spirito in Sassia'),
(1333, 'https://ror.org/01jj2sr90', 'en', 1, 'https://ror.org/01jj2sr90 Broward Health Medical Center'),
(1334, 'https://ror.org/01jjm6w53', 'en', 1, 'https://ror.org/01jjm6w53 Banner Desert Medical Center'),
(1335, 'https://ror.org/01jk32r56', 'no_lang_code', 1, 'https://ror.org/01jk32r56 Sirehna'),
(1336, 'https://ror.org/01jk6xr82', 'en', 1, 'https://ror.org/01jk6xr82 Rochester General Hospital'),
(1337, 'https://ror.org/01jm17996', 'en', 1, 'https://ror.org/01jm17996 Mission Heritage Medical Group'),
(1338, 'https://ror.org/01jm19r53', 'no_lang_code', 1, 'https://ror.org/01jm19r53 TuTech Innovation (Germany)'),
(1339, 'https://ror.org/01jmd7f74', 'en', 1, 'https://ror.org/01jmd7f74 Chuvash State University Чувашский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. Š. Š£Š»ŃŒŃŠ½Š¾Š²Š°'),
(1340, 'https://ror.org/01jmsem62', 'es', 1, 'https://ror.org/01jmsem62 Hospital General Universitario de Elche'),
(1341, 'https://ror.org/01jn2rz36', 'fr', 1, 'https://ror.org/01jn2rz36 HƓpital de Jolimont'),
(1342, 'https://ror.org/01jpkw634', 'en', 1, 'https://ror.org/01jpkw634 Centro de Estudios Ambientales del MediterrƔneo Mediterranean Center for Environmental Studies'),
(1343, 'https://ror.org/01jqz8f37', 'en', 1, 'https://ror.org/01jqz8f37 Wayne Memorial Health System'),
(1344, 'https://ror.org/01jtn9895', 'no_lang_code', 1, 'https://ror.org/01jtn9895 Osaka Ohtani University 大阪大谷大学'),
(1345, 'https://ror.org/01k05jx47', 'en', 1, 'https://ror.org/01k05jx47 Mercy Catholic Medical Center'),
(1346, 'https://ror.org/01k18gj34', 'en', 1, 'https://ror.org/01k18gj34 Ashworth College'),
(1347, 'https://ror.org/01k1azd31', 'no_lang_code', 1, 'https://ror.org/01k1azd31 Kumamotorosaibyoin ē†Šęœ¬åŠ“ē½ē—…é™¢'),
(1348, 'https://ror.org/01k1ea759', 'no_lang_code', 1, 'https://ror.org/01k1ea759 AUG Signals (Canada)'),
(1349, 'https://ror.org/01k22c722', 'en', 1, 'https://ror.org/01k22c722 Dr. V. M. Government Medical College ą¤”ą„‰. ą¤µą„ˆą¤¶ą¤‚ą¤Ŗą¤¾ą¤Æą¤Ø ą¤øą„ą¤®ą„ƒą¤¤ą„€ ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1350, 'https://ror.org/01k5k4m02', 'en', 1, 'https://ror.org/01k5k4m02 Jan Evangelista Purkyně Military Medical Academy'),
(1351, 'https://ror.org/01k6vxj52', 'en', 1, 'https://ror.org/01k6vxj52 Omsk State University ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ф. М. Достоевского'),
(1352, 'https://ror.org/01k7a6660', 'en', 1, 'https://ror.org/01k7a6660 Hennepin County Medical Center'),
(1353, 'https://ror.org/01k8ej563', 'en', 1, 'https://ror.org/01k8ej563 Keio University Hospital 慶應義唾大学病院'),
(1354, 'https://ror.org/01kbw1w05', 'no_lang_code', 1, 'https://ror.org/01kbw1w05 Infinite Biomedical Technologies (United States)'),
(1355, 'https://ror.org/01kc65v41', 'it', 1, 'https://ror.org/01kc65v41 Fondazione "Ugo Bordoni" Ugo Bordoni Foundation'),
(1356, 'https://ror.org/01kcq3761', 'en', 1, 'https://ror.org/01kcq3761 Kent Hospital'),
(1357, 'https://ror.org/01kdnph40', 'es', 1, 'https://ror.org/01kdnph40 Hospital La Paloma'),
(1358, 'https://ror.org/01kdvym37', 'de', 1, 'https://ror.org/01kdvym37 Battelle-Institut ev'),
(1359, 'https://ror.org/01kgs1r94', 'no_lang_code', 1, 'https://ror.org/01kgs1r94 Electrical Geodesics (United States)'),
(1360, 'https://ror.org/01kq6mv68', 'en', 1, 'https://ror.org/01kq6mv68 Second Affiliated Hospital of Kunming Medical College ę˜†ę˜ŽåŒ»ē§‘å¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(1361, 'https://ror.org/01kq6ye20', 'en', 1, 'https://ror.org/01kq6ye20 Sansum Diabetes Research Institute'),
(1362, 'https://ror.org/01kqjm533', 'en', 1, 'https://ror.org/01kqjm533 Kurihama Medical and Addiction Center ä¹…é‡ŒęµœåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1363, 'https://ror.org/01kr7aq59', 'en', 1, 'https://ror.org/01kr7aq59 Rivers State University'),
(1364, 'https://ror.org/01krywm46', 'en', 1, 'https://ror.org/01krywm46 University of Virginia Children''s Hospital'),
(1365, 'https://ror.org/01ks0bt75', 'en', 1, 'https://ror.org/01ks0bt75 Seoul National University Children''s Hospital ģ„œģšøėŒ€ķ•™źµģ–“ė¦°ģ“ė³‘ģ›'),
(1366, 'https://ror.org/01kta7d96', 'en', 1, 'https://ror.org/01kta7d96 McLean Hospital'),
(1367, 'https://ror.org/01kvp0178', 'no_lang_code', 1, 'https://ror.org/01kvp0178 Ontario Power Generation'),
(1368, 'https://ror.org/01kvtm035', 'en', 1, 'https://ror.org/01kvtm035 South Australia Pathology'),
(1369, 'https://ror.org/01kw6jz33', 'no_lang_code', 1, 'https://ror.org/01kw6jz33 BGI Group (Japan)'),
(1370, 'https://ror.org/01kxqsy59', 'no_lang_code', 1, 'https://ror.org/01kxqsy59 Atos (Spain)'),
(1371, 'https://ror.org/01ky2n109', 'pt', 1, 'https://ror.org/01ky2n109 Hospital Federal dos Servidores do Estado'),
(1372, 'https://ror.org/01kzgyz42', 'en', 1, 'https://ror.org/01kzgyz42 Qiqihar Medical University 齐齐哈尔医学院'),
(1373, 'https://ror.org/01m006041', 'en', 1, 'https://ror.org/01m006041 Thiel College'),
(1374, 'https://ror.org/01m1gv240', 'en', 1, 'https://ror.org/01m1gv240 King Fahad Specialist Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„ŲŖŲ®ŲµŲµŁŠ'),
(1375, 'https://ror.org/01m1pv723', 'en', 1, 'https://ror.org/01m1pv723 HÓpitaux universitaires de Genève University Hospital of Geneva'),
(1376, 'https://ror.org/01m1v6377', 'en', 1, 'https://ror.org/01m1v6377 Association Of Atlantic Universities'),
(1377, 'https://ror.org/01m32d953', 'en', 1, 'https://ror.org/01m32d953 Copernicus Memorial Hospital'),
(1378, 'https://ror.org/01m46xf39', 'en', 1, 'https://ror.org/01m46xf39 All India Institute of Hygiene and Public Health अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ जन ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(1379, 'https://ror.org/01m484026', 'no_lang_code', 1, 'https://ror.org/01m484026 Smithers Pira'),
(1380, 'https://ror.org/01m7mrx20', 'es', 1, 'https://ror.org/01m7mrx20 Hospital Central Dr. Ignacio Morones Prieto'),
(1381, 'https://ror.org/01mfrg562', 'en', 1, 'https://ror.org/01mfrg562 Dauphin Island Sea Lab'),
(1382, 'https://ror.org/01mh1c318', 'en', 1, 'https://ror.org/01mh1c318 Federation of American Societies for Experimental Biology'),
(1383, 'https://ror.org/01mhbkr88', 'en', 1, 'https://ror.org/01mhbkr88 St Martha''s Regional Hospital'),
(1384, 'https://ror.org/01mpngw81', 'en', 1, 'https://ror.org/01mpngw81 Government Kilpauk Medical College ą®•ąÆ€ą®“ąÆą®Ŗą®¾ą®•ąÆą®•ą®®ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(1385, 'https://ror.org/01mqsmm97', 'es', 1, 'https://ror.org/01mqsmm97 Hospital Regional Universitario de MƔlaga'),
(1386, 'https://ror.org/01mqvjv41', 'pt', 1, 'https://ror.org/01mqvjv41 Federal University of Mato Grosso Universidade Federal de Mato Grosso'),
(1387, 'https://ror.org/01msdga41', 'no_lang_code', 1, 'https://ror.org/01msdga41 Dornier Flugzeugwerke (Germany)'),
(1388, 'https://ror.org/01mtpwn71', 'no_lang_code', 1, 'https://ror.org/01mtpwn71 Adan Hospital مستؓفى العدان'),
(1389, 'https://ror.org/01mvmmg68', 'en', 1, 'https://ror.org/01mvmmg68 San Jacinto Methodist Hospital'),
(1390, 'https://ror.org/01mxpdw03', 'en', 1, 'https://ror.org/01mxpdw03 First Affiliated Hospital of Guangzhou University of Chinese Medicine'),
(1391, 'https://ror.org/01myv2z03', 'en', 1, 'https://ror.org/01myv2z03 Nayoro City General Hospital ååÆ„åø‚ē«‹ē·åˆē—…é™¢'),
(1392, 'https://ror.org/01myv5196', 'en', 1, 'https://ror.org/01myv5196 Sivas Devlet Hastanesi Sivas State Hospital'),
(1393, 'https://ror.org/01mz9wf40', 'en', 1, 'https://ror.org/01mz9wf40 Chu Shang Show Chwan Hospital'),
(1394, 'https://ror.org/01n1j0f20', 'fr', 1, 'https://ror.org/01n1j0f20 HƓpital Aristide Le Dantec'),
(1395, 'https://ror.org/01n260e81', 'en', 1, 'https://ror.org/01n260e81 Rancho Santa Ana Botanic Garden'),
(1396, 'https://ror.org/01n2xwm51', 'en', 1, 'https://ror.org/01n2xwm51 Meyer Children''s Hospital Ospedale Pediatrico Meyer'),
(1397, 'https://ror.org/01n67jr26', 'en', 1, 'https://ror.org/01n67jr26 Forest Department Sarawak'),
(1398, 'https://ror.org/01n70p029', 'en', 1, 'https://ror.org/01n70p029 Birmingham and Midland Eye Centre'),
(1399, 'https://ror.org/01n85qf05', 'pt', 1, 'https://ror.org/01n85qf05 Escola Superior de Enfermagem S. Francisco das Misericórdias'),
(1400, 'https://ror.org/01na5rp93', 'no_lang_code', 1, 'https://ror.org/01na5rp93 Bioqual'),
(1401, 'https://ror.org/01ncx3917', 'en', 1, 'https://ror.org/01ncx3917 Rosie Hospital'),
(1402, 'https://ror.org/01nf63x62', 'en', 1, 'https://ror.org/01nf63x62 Institute of Global Environment and Society'),
(1403, 'https://ror.org/01ng1yh19', 'en', 1, 'https://ror.org/01ng1yh19 Charlie Norwood VA Medical Center'),
(1404, 'https://ror.org/01nhcyg40', 'no_lang_code', 1, 'https://ror.org/01nhcyg40 Nagoya Ekisaikai Hospital åå¤å±‹ęŽ–ęøˆä¼šē—…é™¢'),
(1405, 'https://ror.org/01nhrc260', 'en', 1, 'https://ror.org/01nhrc260 Froedtert Hospital'),
(1406, 'https://ror.org/01nhzsw25', 'fr', 1, 'https://ror.org/01nhzsw25 Hydro-QuƩbec'),
(1407, 'https://ror.org/01nj4ek07', 'en', 1, 'https://ror.org/01nj4ek07 Hinchingbrooke Hospital'),
(1408, 'https://ror.org/01nj8sa76', 'en', 1, 'https://ror.org/01nj8sa76 Royal Alexandra Hospital'),
(1409, 'https://ror.org/01nn35n25', 'en', 1, 'https://ror.org/01nn35n25 Institute of Accelerating Systems and Applications Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ€Ī¹Ļ„Ī±Ļ‡Ļ…Ī½Ļ„Ī¹ĪŗĻŽĪ½ Ī£Ļ…ĻƒĻ„Ī·Ī¼Ī¬Ļ„Ļ‰Ī½ και Ī•Ļ†Ī±ĻĪ¼ĪæĪ³ĻŽĪ½'),
(1410, 'https://ror.org/01npf0s58', 'en', 1, 'https://ror.org/01npf0s58 National Ilan University åœ‹ē«‹å®œč˜­å¤§å­ø'),
(1411, 'https://ror.org/01nph4h53', 'no_lang_code', 1, 'https://ror.org/01nph4h53 Aerodyne Research'),
(1412, 'https://ror.org/01nr6fy72', 'en', 1, 'https://ror.org/01nr6fy72 Ljubljana University Medical Centre'),
(1413, 'https://ror.org/01nthrq77', 'es', 1, 'https://ror.org/01nthrq77 Instituto Tecnologico Del Embalaje, Transporte Y Logistica'),
(1414, 'https://ror.org/01nwsvf80', 'en', 1, 'https://ror.org/01nwsvf80 Shiga Medical Center for Children å­ä¾›ć®ćŸć‚ć®ę»‹č³€åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1415, 'https://ror.org/01nxjpd08', 'en', 1, 'https://ror.org/01nxjpd08 Vladimir State University Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ВлаГимирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени АлексанГра Š“Ń€ŠøŠ³Š¾Ń€ŃŒŠµŠ²ŠøŃ‡Š° Šø ŠŠøŠŗŠ¾Š»Š°Ń Š“Ń€ŠøŠ³Š¾Ń€ŃŒŠµŠ²ŠøŃ‡Š° Дтолетовых'),
(1416, 'https://ror.org/01nxv5c88', 'en', 1, 'https://ror.org/01nxv5c88 Second Affiliated Hospital of Nanchang University å—ę˜Œå¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(1417, 'https://ror.org/01nyv7k26', 'en', 1, 'https://ror.org/01nyv7k26 Oita University 大分大学'),
(1418, 'https://ror.org/01nzrqm94', 'en', 1, 'https://ror.org/01nzrqm94 Breach Candy Hospital'),
(1419, 'https://ror.org/01p01k535', 'en', 1, 'https://ror.org/01p01k535 Taoyuan Armed Forces General Hospital ę”ƒå›­ę­¦č£…éƒØé˜Ÿę€»åŒ»é™¢'),
(1420, 'https://ror.org/01p0ttv97', 'en', 1, 'https://ror.org/01p0ttv97 Dickinson State University'),
(1421, 'https://ror.org/01p2t4k13', 'en', 1, 'https://ror.org/01p2t4k13 Heilongjiang Center for Tuberculosis Control and Prevention'),
(1422, 'https://ror.org/01p37he69', 'en', 1, 'https://ror.org/01p37he69 Kansas Wesleyan University'),
(1423, 'https://ror.org/01p3tpn79', 'es', 1, 'https://ror.org/01p3tpn79 Hospital Universitari Arnau de Vilanova'),
(1424, 'https://ror.org/01p7j6t08', 'en', 1, 'https://ror.org/01p7j6t08 Mississippi College'),
(1425, 'https://ror.org/01p830915', 'en', 1, 'https://ror.org/01p830915 Morriston Hospital Ysbyty Treforus'),
(1426, 'https://ror.org/01p8da469', 'it', 1, 'https://ror.org/01p8da469 Ospedale Amedeo di Savoia'),
(1427, 'https://ror.org/01papkj44', 'en', 1, 'https://ror.org/01papkj44 University of Tabriz دانؓگاه تبریز'),
(1428, 'https://ror.org/01pd66220', 'en', 1, 'https://ror.org/01pd66220 302 Military Hospital of China 中国人民解放军第302医院'),
(1429, 'https://ror.org/01phhgk62', 'en', 1, 'https://ror.org/01phhgk62 Boca Raton Regional Hospital'),
(1430, 'https://ror.org/01phydj90', 'en', 1, 'https://ror.org/01phydj90 Akdeniz University Hospital Akdeniz Üniversitesi Hastanesi'),
(1431, 'https://ror.org/01pj4nt72', 'en', 1, 'https://ror.org/01pj4nt72 Nordland Hospital'),
(1432, 'https://ror.org/01pjjvq50', 'en', 1, 'https://ror.org/01pjjvq50 Eastbourne District General Hospital'),
(1433, 'https://ror.org/01pm59m24', 'en', 1, 'https://ror.org/01pm59m24 Akashi Municipal City Hospital ę˜ŽēŸ³åø‚ē«‹åø‚ę°‘ē—…é™¢'),
(1434, 'https://ror.org/01pp15642', 'en', 1, 'https://ror.org/01pp15642 South Nassau Communities Hospital'),
(1435, 'https://ror.org/01ppcnz44', 'tr', 1, 'https://ror.org/01ppcnz44 Antalya Eğitim ve Araştırma Hastanesi'),
(1436, 'https://ror.org/01praqa56', 'en', 1, 'https://ror.org/01praqa56 National Institute of Occupational Health'),
(1437, 'https://ror.org/01ps4ag81', 'no_lang_code', 1, 'https://ror.org/01ps4ag81 Fountain Biopharma (Taiwan)'),
(1438, 'https://ror.org/01pvgz545', 'no_lang_code', 1, 'https://ror.org/01pvgz545 Ishikiriseiki Hospital ēŸ³åˆ‡ē”Ÿå–œē—…é™¢'),
(1439, 'https://ror.org/01px48m89', 'en', 1, 'https://ror.org/01px48m89 Bentley University'),
(1440, 'https://ror.org/01px77p81', 'en', 1, 'https://ror.org/01px77p81 Sun Yat-sen Memorial Hospital'),
(1441, 'https://ror.org/01pxg9d10', 'en', 1, 'https://ror.org/01pxg9d10 Meyer Children''s Hospital'),
(1442, 'https://ror.org/01pxhdc49', 'en', 1, 'https://ror.org/01pxhdc49 Miyazaki Prefectural Hospital å®®å“ŽēœŒē«‹ē—…é™¢'),
(1443, 'https://ror.org/01pym8r61', 'en', 1, 'https://ror.org/01pym8r61 Centre for Research in Medical Entomology'),
(1444, 'https://ror.org/01pzf6r50', 'en', 1, 'https://ror.org/01pzf6r50 Inje University Busan Paik Hospital'),
(1445, 'https://ror.org/01pzjt917', 'eu', 1, 'https://ror.org/01pzjt917 Hospital Txagorritxu'),
(1446, 'https://ror.org/01q046q46', 'fr', 1, 'https://ror.org/01q046q46 HƓpital Pierre Wertheimer'),
(1447, 'https://ror.org/01q11am17', 'en', 1, 'https://ror.org/01q11am17 Roper Hospital'),
(1448, 'https://ror.org/01q1jaw52', 'en', 1, 'https://ror.org/01q1jaw52 AHEPA University Hospital Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼Ī¹Ī±ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΑΧΕΠΑ'),
(1449, 'https://ror.org/01q1y4t48', 'en', 1, 'https://ror.org/01q1y4t48 Virginia Tech - Wake Forest University School of Biomedical Engineering & Sciences'),
(1450, 'https://ror.org/01q2nz307', 'en', 1, 'https://ror.org/01q2nz307 Baystate Medical Center'),
(1451, 'https://ror.org/01q2y2d42', 'en', 1, 'https://ror.org/01q2y2d42 Departamento de Salud y Servicios Sociales de los Estados Unidos DĆ©partement de la santĆ© et des services sociaux des Ɖtats-unis State of Maine Department of Health and Human Services'),
(1452, 'https://ror.org/01q4pk532', 'no_lang_code', 1, 'https://ror.org/01q4pk532 Hydro One (Canada)'),
(1453, 'https://ror.org/01q6b3f33', 'no_lang_code', 1, 'https://ror.org/01q6b3f33 Al Omooma Hospital'),
(1454, 'https://ror.org/01q6hrg49', 'it', 1, 'https://ror.org/01q6hrg49 Ospedale Garibaldi'),
(1455, 'https://ror.org/01q750e89', 'nl', 1, 'https://ror.org/01q750e89 Elkerliek Ziekenhuis'),
(1456, 'https://ror.org/01q8f6705', 'no_lang_code', 1, 'https://ror.org/01q8f6705 BASF (Germany)'),
(1457, 'https://ror.org/01q9r1072', 'en', 1, 'https://ror.org/01q9r1072 Boys Town National Research Hospital'),
(1458, 'https://ror.org/01qbebb31', 'en', 1, 'https://ror.org/01qbebb31 Papworth Hospital NHS Foundation Trust'),
(1459, 'https://ror.org/01qc48765', 'en', 1, 'https://ror.org/01qc48765 Association of Academic Health Centers'),
(1460, 'https://ror.org/01qcxb695', 'no_lang_code', 1, 'https://ror.org/01qcxb695 Mahosot Hospital'),
(1461, 'https://ror.org/01qd3xc93', 'en', 1, 'https://ror.org/01qd3xc93 Fondazione Mario Negri Sud Mario Negri Sud Foundation'),
(1462, 'https://ror.org/01qdp7m73', 'en', 1, 'https://ror.org/01qdp7m73 Bryn Mawr Rehabilitation Hospital'),
(1463, 'https://ror.org/01qe4gr33', 'en', 1, 'https://ror.org/01qe4gr33 Family and Social Services Administration'),
(1464, 'https://ror.org/01qe7f394', 'en', 1, 'https://ror.org/01qe7f394 Ministerio de Salud de Chile Ministry of Health'),
(1465, 'https://ror.org/01qemgb02', 'en', 1, 'https://ror.org/01qemgb02 Manipal Teaching Hospital मणिपाल ą¤Ÿą„€ą¤šą¤æą¤‚ą¤— ą¤¹ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(1466, 'https://ror.org/01qh26a66', 'en', 1, 'https://ror.org/01qh26a66 Sichuan Academy of Medical Sciences & Sichuan Provincial People''s Hospital å››å·ēœäø­åŒ»čÆē§‘å­¦é™¢'),
(1467, 'https://ror.org/01qh83x04', 'sv', 1, 'https://ror.org/01qh83x04 VƤstmanlands sjukhus VƤsterƄs'),
(1468, 'https://ror.org/01qn0gc28', 'en', 1, 'https://ror.org/01qn0gc28 Yuri Gagarin State Technical University of Saratov Даратовский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š®. А. Гагарина'),
(1469, 'https://ror.org/01qqxvf96', 'es', 1, 'https://ror.org/01qqxvf96 Hospital EspaƱol'),
(1470, 'https://ror.org/01qr3vg91', 'en', 1, 'https://ror.org/01qr3vg91 Regional Medical Research Centre'),
(1471, 'https://ror.org/01qr5a671', 'en', 1, 'https://ror.org/01qr5a671 Tohoku Fukushi University ę±åŒ—ē¦ē„‰å¤§å­¦'),
(1472, 'https://ror.org/01qt0gj86', 'lt', 1, 'https://ror.org/01qt0gj86 Lietuvos Bioetikos Komitetas Lithuanian Bioethics Committee'),
(1473, 'https://ror.org/01qtc5416', 'en', 1, 'https://ror.org/01qtc5416 Federal Office of Public Health'),
(1474, 'https://ror.org/01qtnxn83', 'en', 1, 'https://ror.org/01qtnxn83 Technical University of Nova Scotia'),
(1475, 'https://ror.org/01qv3ba61', 'en', 1, 'https://ror.org/01qv3ba61 University of Port Harcourt Teaching Hospital'),
(1476, 'https://ror.org/01qv3p587', 'no_lang_code', 1, 'https://ror.org/01qv3p587 Universal Stabilization Technologies'),
(1477, 'https://ror.org/01qww1p93', 'en', 1, 'https://ror.org/01qww1p93 Dominican University'),
(1478, 'https://ror.org/01qyd4k24', 'en', 1, 'https://ror.org/01qyd4k24 Hoseo University ķ˜øģ„œėŒ€ķ•™źµ'),
(1479, 'https://ror.org/01qz7fr76', 'en', 1, 'https://ror.org/01qz7fr76 Brighton and Sussex Medical School'),
(1480, 'https://ror.org/01r024a98', 'en', 1, 'https://ror.org/01r024a98 Chung-Ang University ģ¤‘ģ•™ėŒ€ķ•™źµ'),
(1481, 'https://ror.org/01r05t925', 'tr', 1, 'https://ror.org/01r05t925 Ankara Onkoloji Eğitim ve Araştırma Hastanesi'),
(1482, 'https://ror.org/01r0bpx56', 'no_lang_code', 1, 'https://ror.org/01r0bpx56 Hiratsuka Kyosai Hospital å¹³å”šå…±ęøˆē—…é™¢'),
(1483, 'https://ror.org/01r2n9849', 'en', 1, 'https://ror.org/01r2n9849 Saint John''s Hospital'),
(1484, 'https://ror.org/01r3kd649', 'tr', 1, 'https://ror.org/01r3kd649 S.B. Keçiören Eğitim ve Araştırma Hastanesi'),
(1485, 'https://ror.org/01r4bn552', 'en', 1, 'https://ror.org/01r4bn552 Institut von karman de dynamique des fluides Von Karman Institut für Strömungsmechanik Von Karman Institute for Fluid Dynamics'),
(1486, 'https://ror.org/01r89q997', 'en', 1, 'https://ror.org/01r89q997 Royal Victoria Regional Health Centre'),
(1487, 'https://ror.org/01r8fpq52', 'en', 1, 'https://ror.org/01r8fpq52 Niigata City General Hospital ę–°ę½Ÿåø‚ę°‘ē—…é™¢'),
(1488, 'https://ror.org/01r9be524', 'en', 1, 'https://ror.org/01r9be524 Bristol Hospital'),
(1489, 'https://ror.org/01r9ea713', 'en', 1, 'https://ror.org/01r9ea713 Blackpool Victoria Hospital'),
(1490, 'https://ror.org/01rabm487', 'pt', 1, 'https://ror.org/01rabm487 Hospital Nossa Senhora das GraƧas'),
(1491, 'https://ror.org/01rahby95', 'en', 1, 'https://ror.org/01rahby95 Department of Human Services'),
(1492, 'https://ror.org/01rb2ev69', 'no_lang_code', 1, 'https://ror.org/01rb2ev69 Inspiralia'),
(1493, 'https://ror.org/01rb2st83', 'sk', 1, 'https://ror.org/01rb2st83 UniverzitnĆ” Nemocnica Louisa Pasteura'),
(1494, 'https://ror.org/01rb4vv49', 'en', 1, 'https://ror.org/01rb4vv49 Shariati Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ؓریعتی'),
(1495, 'https://ror.org/01rdjpj45', 'en', 1, 'https://ror.org/01rdjpj45 M. P. Shah Medical College ąŖ¶ą«ąŖ°ą«€ ąŖąŖ®ąŖŖą«€ શાહ સરકારી મેઔિકલ ąŖ•ą«‹ąŖ²ą«‡ąŖœ'),
(1496, 'https://ror.org/01rdvwx15', 'en', 1, 'https://ror.org/01rdvwx15 Lee Memorial Hospital'),
(1497, 'https://ror.org/01rf07780', 'es', 1, 'https://ror.org/01rf07780 Hospital Provincial de Conxo'),
(1498, 'https://ror.org/01rf1rj96', 'en', 1, 'https://ror.org/01rf1rj96 Kangwon National University Hospital ź°•ģ›ėŒ€ķ•™źµė³‘ģ›'),
(1499, 'https://ror.org/01rm42p40', 'en', 1, 'https://ror.org/01rm42p40 University of Alabama at Birmingham Hospital'),
(1500, 'https://ror.org/01rrd4612', 'no_lang_code', 1, 'https://ror.org/01rrd4612 Hiroshima Prefectural Hospital ēœŒē«‹åŗƒå³¶ē—…é™¢'),
(1501, 'https://ror.org/01rs0ht88', 'en', 1, 'https://ror.org/01rs0ht88 Ministry of Health and Medical Education'),
(1502, 'https://ror.org/01rsda187', 'en', 1, 'https://ror.org/01rsda187 Mitate Hospital 見立病院'),
(1503, 'https://ror.org/01rvf6k07', 'en', 1, 'https://ror.org/01rvf6k07 Military Hospital'),
(1504, 'https://ror.org/01rwkhb30', 'en', 1, 'https://ror.org/01rwkhb30 Korea Institute of Materials Science'),
(1505, 'https://ror.org/01rws6r75', 'en', 1, 'https://ror.org/01rws6r75 Ahvaz Jundishapur University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų¬Ł†ŲÆŪŒā€ŒŲ“Ų§Ł¾ŁˆŲ± Ų§Ł‡ŁˆŲ§Ų²'),
(1506, 'https://ror.org/01rx63s97', 'pt', 1, 'https://ror.org/01rx63s97 Guarulhos University'),
(1507, 'https://ror.org/01rxfrp27', 'en', 1, 'https://ror.org/01rxfrp27 La Trobe University'),
(1508, 'https://ror.org/01ry6tw68', 'no_lang_code', 1, 'https://ror.org/01ry6tw68 Balance Technology Consulting'),
(1509, 'https://ror.org/01rzm0s68', 'en', 1, 'https://ror.org/01rzm0s68 Sentara Rockingham Memorial Hospital Medical Center'),
(1510, 'https://ror.org/01s0phq15', 'en', 1, 'https://ror.org/01s0phq15 Inverclyde Royal Hospital'),
(1511, 'https://ror.org/01s434164', 'en', 1, 'https://ror.org/01s434164 Nathan Kline Institute for Psychiatric Research'),
(1512, 'https://ror.org/01s4cx283', 'no_lang_code', 1, 'https://ror.org/01s4cx283 Shizuoka Saiseikai General Hospital é™å²”ęøˆē”Ÿä¼šē·åˆē—…é™¢'),
(1513, 'https://ror.org/01s5axj25', 'en', 1, 'https://ror.org/01s5axj25 Lunenfeld-Tanenbaum Research Institute'),
(1514, 'https://ror.org/01s5dt366', 'en', 1, 'https://ror.org/01s5dt366 University Hospital of Larissa'),
(1515, 'https://ror.org/01s5r6w32', 'en', 1, 'https://ror.org/01s5r6w32 Central Arkansas Veterans Healthcare System'),
(1516, 'https://ror.org/01s7jxc19', 'en', 1, 'https://ror.org/01s7jxc19 Miyagi University of Education å®®åŸŽę•™č‚²å¤§å­¦'),
(1517, 'https://ror.org/01s7w1z60', 'fr', 1, 'https://ror.org/01s7w1z60 Hotel Dieu Hospital'),
(1518, 'https://ror.org/01s7y5e82', 'en', 1, 'https://ror.org/01s7y5e82 Ivan Franko Nemzeti Egyetem Lviv Lviv University Uniwersytet Lwowski Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ивана Франко Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана Франка'),
(1519, 'https://ror.org/01s8xxq04', 'en', 1, 'https://ror.org/01s8xxq04 Eastern Oregon University'),
(1520, 'https://ror.org/01s9rzk09', 'en', 1, 'https://ror.org/01s9rzk09 Kushiro Rosai Hospital é‡§č·Æć‚ć†ć•ć„ē—…é™¢'),
(1521, 'https://ror.org/01sgn8034', 'en', 1, 'https://ror.org/01sgn8034 Trinitas Regional Medical Center'),
(1522, 'https://ror.org/01shhkn05', 'en', 1, 'https://ror.org/01shhkn05 East Orange VA Medical Center'),
(1523, 'https://ror.org/01ska0k70', 'en', 1, 'https://ror.org/01ska0k70 Millard Fillmore Suburban Hospital'),
(1524, 'https://ror.org/01skxn174', 'en', 1, 'https://ror.org/01skxn174 Lower Manhattan Hospital'),
(1525, 'https://ror.org/01sm4s887', 'en', 1, 'https://ror.org/01sm4s887 Bundesinstitut für gesundheitlichen Verbraucherschutz und Veterinärmedizin Federal Institute for Health Protection of Consumers and Veterinary Medicine'),
(1526, 'https://ror.org/01smmxq73', 'en', 1, 'https://ror.org/01smmxq73 Doctors Hospital'),
(1527, 'https://ror.org/01smpj292', 'en', 1, 'https://ror.org/01smpj292 Arizona Department of Health Services'),
(1528, 'https://ror.org/01sps7q28', 'en', 1, 'https://ror.org/01sps7q28 The University of Texas Health Science Center at Tyler'),
(1529, 'https://ror.org/01sxtx626', 'en', 1, 'https://ror.org/01sxtx626 Ministry of Health ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ охорони зГоров''я України'),
(1530, 'https://ror.org/01sytk573', 'en', 1, 'https://ror.org/01sytk573 National Science Museum'),
(1531, 'https://ror.org/01t0n3b84', 'it', 1, 'https://ror.org/01t0n3b84 Consorzio Pisa Ricerche'),
(1532, 'https://ror.org/01t33qq42', 'en', 1, 'https://ror.org/01t33qq42 Arkansas Children''s Hospital'),
(1533, 'https://ror.org/01t3emk15', 'en', 1, 'https://ror.org/01t3emk15 Central Chest Institute of Thailand'),
(1534, 'https://ror.org/01t409e13', 'en', 1, 'https://ror.org/01t409e13 Regional Hospital Holstebro'),
(1535, 'https://ror.org/01t54q348', 'en', 1, 'https://ror.org/01t54q348 Grantham Hospital č‘›é‡ę“Ŗé†«é™¢'),
(1536, 'https://ror.org/01t5yh786', 'en', 1, 'https://ror.org/01t5yh786 HƓpital Universitaire Des Enfants Reine Fabiola Queen Fabiola Children''s University Hospital'),
(1537, 'https://ror.org/01t69y763', 'en', 1, 'https://ror.org/01t69y763 St. Luke''s Hospital'),
(1538, 'https://ror.org/01t6fdj11', 'en', 1, 'https://ror.org/01t6fdj11 Mary Free Bed Rehabilitation Hospital'),
(1539, 'https://ror.org/01t6tyq74', 'en', 1, 'https://ror.org/01t6tyq74 Consortium of Universities for Research in Earthquake Engineering'),
(1540, 'https://ror.org/01t817z14', 'en', 1, 'https://ror.org/01t817z14 University of Houston - Clear Lake'),
(1541, 'https://ror.org/01t8svj65', 'en', 1, 'https://ror.org/01t8svj65 University of California San Francisco Medical Center'),
(1542, 'https://ror.org/01tcy5w98', 'no_lang_code', 1, 'https://ror.org/01tcy5w98 Aurum Institute'),
(1543, 'https://ror.org/01tek4f86', 'hu', 1, 'https://ror.org/01tek4f86 BÔcs-Kiskun Megyei KórhÔz'),
(1544, 'https://ror.org/01thhk923', 'en', 1, 'https://ror.org/01thhk923 Dongshin University ė™ģ‹ ėŒ€ķ•™źµ'),
(1545, 'https://ror.org/01thzqc78', 'pt', 1, 'https://ror.org/01thzqc78 Universidade Sagrado Coração'),
(1546, 'https://ror.org/01tj58m37', 'en', 1, 'https://ror.org/01tj58m37 Montana State University Billings'),
(1547, 'https://ror.org/01tqqny90', 'en', 1, 'https://ror.org/01tqqny90 Nagasaki International University 長哎国際大学'),
(1548, 'https://ror.org/01ttqjq76', 'en', 1, 'https://ror.org/01ttqjq76 North Wales Hospital'),
(1549, 'https://ror.org/01v00e311', 'en', 1, 'https://ror.org/01v00e311 Hayashi Eye Hospital'),
(1550, 'https://ror.org/01v0xk274', 'pt', 1, 'https://ror.org/01v0xk274 Universidade Ibirapuera'),
(1551, 'https://ror.org/01v16x378', 'en', 1, 'https://ror.org/01v16x378 Command Hospital'),
(1552, 'https://ror.org/01v27vf29', 'en', 1, 'https://ror.org/01v27vf29 Children''s Medical Center'),
(1553, 'https://ror.org/01v49sd11', 'en', 1, 'https://ror.org/01v49sd11 Saint Louis University Hospital'),
(1554, 'https://ror.org/01v4pc162', 'en', 1, 'https://ror.org/01v4pc162 National Board of Health and Welfare'),
(1555, 'https://ror.org/01v5y3463', 'en', 1, 'https://ror.org/01v5y3463 Autonomous University of Campeche Universidad Autónoma de Campeche'),
(1556, 'https://ror.org/01v62m802', 'en', 1, 'https://ror.org/01v62m802 Siena College'),
(1557, 'https://ror.org/01v6gr187', 'no_lang_code', 1, 'https://ror.org/01v6gr187 Semex'),
(1558, 'https://ror.org/01v7y5b55', 'en', 1, 'https://ror.org/01v7y5b55 Korea Maritime and Ocean University ķ•œźµ­ķ•“ģ–‘ėŒ€ķ•™źµ'),
(1559, 'https://ror.org/01v8mb410', 'en', 1, 'https://ror.org/01v8mb410 National Sanyo Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹å±±å£å®‡éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1560, 'https://ror.org/01v95tx09', 'en', 1, 'https://ror.org/01v95tx09 Shriners Hospitals for Children - Galveston'),
(1561, 'https://ror.org/01v9g9c07', 'en', 1, 'https://ror.org/01v9g9c07 Mie University Hospital äø‰é‡å¤§å­¦ē—…é™¢'),
(1562, 'https://ror.org/01va7e105', 'en', 1, 'https://ror.org/01va7e105 Ibis Reproductive Health'),
(1563, 'https://ror.org/01vbmek33', 'en', 1, 'https://ror.org/01vbmek33 Kyung Hee University Medical Center'),
(1564, 'https://ror.org/01vj9qy35', 'en', 1, 'https://ror.org/01vj9qy35 Christian Medical College'),
(1565, 'https://ror.org/01vjd7j86', 'en', 1, 'https://ror.org/01vjd7j86 Federalni Zavod za geologiju The Federal Institute for Geology'),
(1566, 'https://ror.org/01vjtf564', 'en', 1, 'https://ror.org/01vjtf564 Rabin Medical Center'),
(1567, 'https://ror.org/01vk45p32', 'en', 1, 'https://ror.org/01vk45p32 Eiju General Hospital ę°øåÆæē·åˆē—…é™¢'),
(1568, 'https://ror.org/01vka3a64', 'en', 1, 'https://ror.org/01vka3a64 CARE Hospitals'),
(1569, 'https://ror.org/01vqqz948', 'fr', 1, 'https://ror.org/01vqqz948 Hopital Universitaire Hedi Chaker المستؓفى Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ بصفاقس'),
(1570, 'https://ror.org/01vr7z878', 'en', 1, 'https://ror.org/01vr7z878 Khyber Medical College'),
(1571, 'https://ror.org/01vtn3k88', 'es', 1, 'https://ror.org/01vtn3k88 Hospital Pablo Tobon Uribe'),
(1572, 'https://ror.org/01vv03303', 'en', 1, 'https://ror.org/01vv03303 King Abdul Aziz University Hospital'),
(1573, 'https://ror.org/01vx7zt03', 'en', 1, 'https://ror.org/01vx7zt03 Addington Hospital'),
(1574, 'https://ror.org/01vzp6a32', 'en', 1, 'https://ror.org/01vzp6a32 Korle Bu Teaching Hospital'),
(1575, 'https://ror.org/01w0d5g70', 'en', 1, 'https://ror.org/01w0d5g70 University of Missouri–Kansas City'),
(1576, 'https://ror.org/01w1pbe36', 'en', 1, 'https://ror.org/01w1pbe36 University of Maryland Global Campus'),
(1577, 'https://ror.org/01w3ec513', 'en', 1, 'https://ror.org/01w3ec513 Arnot Ogden Medical Center'),
(1578, 'https://ror.org/01w3xx622', 'en', 1, 'https://ror.org/01w3xx622 Lanzhou Army General Hospital 陆军总院'),
(1579, 'https://ror.org/01w502745', 'nl', 1, 'https://ror.org/01w502745 Slotervaartziekenhuis'),
(1580, 'https://ror.org/01w5s1t11', 'en', 1, 'https://ror.org/01w5s1t11 Buffalo Medical Group'),
(1581, 'https://ror.org/01w62yz22', 'en', 1, 'https://ror.org/01w62yz22 Advanced Institute of Convergence Technology ģ°Øģ„øėŒ€ģœµķ•©źø°ģˆ ģ—°źµ¬ģ›'),
(1582, 'https://ror.org/01w6vdf77', 'en', 1, 'https://ror.org/01w6vdf77 Gorgan University of Agricultural Sciences and Natural Resources دانؓگاه Ų¹Ł„ŁˆŁ… کؓاورزی و منابع طبیعی گرگان'),
(1583, 'https://ror.org/01w6wtk13', 'en', 1, 'https://ror.org/01w6wtk13 Shizuoka University 静岔大学'),
(1584, 'https://ror.org/01w756144', 'en', 1, 'https://ror.org/01w756144 Meriter Hospital'),
(1585, 'https://ror.org/01w8whh21', 'en', 1, 'https://ror.org/01w8whh21 University of Oklahoma Medical Center'),
(1586, 'https://ror.org/01wc5x922', 'en', 1, 'https://ror.org/01wc5x922 Providence Sacred Heart Medical Center'),
(1587, 'https://ror.org/01wcey047', 'en', 1, 'https://ror.org/01wcey047 Joseph Eye Hospital'),
(1588, 'https://ror.org/01wdckv42', 'en', 1, 'https://ror.org/01wdckv42 Bayfront Medical Center'),
(1589, 'https://ror.org/01wddqe20', 'en', 1, 'https://ror.org/01wddqe20 The Alfred Hospital'),
(1590, 'https://ror.org/01wf0xv67', 'en', 1, 'https://ror.org/01wf0xv67 Eastern Command Hospital'),
(1591, 'https://ror.org/01wgych27', 'en', 1, 'https://ror.org/01wgych27 Kaiser Permanente Riverside Medical Center'),
(1592, 'https://ror.org/01whq8m38', 'en', 1, 'https://ror.org/01whq8m38 Mokwon University ėŖ©ģ›ėŒ€ķ•™źµ'),
(1593, 'https://ror.org/01wjz9118', 'en', 1, 'https://ror.org/01wjz9118 Nizam''s Institute of Medical Sciences'),
(1594, 'https://ror.org/01wmj1g45', 'en', 1, 'https://ror.org/01wmj1g45 Atlanta University Center'),
(1595, 'https://ror.org/01wpkc438', 'en', 1, 'https://ror.org/01wpkc438 Canadian Foundation For The International Space University'),
(1596, 'https://ror.org/01wpqwr25', 'en', 1, 'https://ror.org/01wpqwr25 Lemuel Shattuck Hospital'),
(1597, 'https://ror.org/01wqrpc44', 'en', 1, 'https://ror.org/01wqrpc44 Kyushu Sangyo University ä¹å·žē”£ę„­å¤§å­¦'),
(1598, 'https://ror.org/01wrc0z23', 'en', 1, 'https://ror.org/01wrc0z23 Jersey City Medical Center'),
(1599, 'https://ror.org/01wv1aw46', 'en', 1, 'https://ror.org/01wv1aw46 BongSeng Memorial Hospital ė“‰ģƒė³‘ģ›ģž…ė‹ˆė‹¤'),
(1600, 'https://ror.org/01wx86652', 'en', 1, 'https://ror.org/01wx86652 Astley Ainslie Hospital'),
(1601, 'https://ror.org/01wxddc07', 'en', 1, 'https://ror.org/01wxddc07 Katsushika Medical Center č‘›é£¾åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(1602, 'https://ror.org/01x18vk56', 'no_lang_code', 1, 'https://ror.org/01x18vk56 Sir Ganga Ram Hospital'),
(1603, 'https://ror.org/01x21tj82', 'no_lang_code', 1, 'https://ror.org/01x21tj82 Microsoft (Netherlands)'),
(1604, 'https://ror.org/01x24z140', 'en', 1, 'https://ror.org/01x24z140 Annamalai University ą¤…ą¤Øą„ą¤Øą¤¾ą¤®ą¤²ą¤¾ą¤ˆ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ąØ…ą©°ąØØąØ¾ąØ®ąØ²ąØ¾ąØˆ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®…ą®£ąÆą®£ą®¾ą®®ą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“…ą“£ąµą“£ą“¾ą“®ą“²ąµˆ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(1605, 'https://ror.org/01x2t4526', 'en', 1, 'https://ror.org/01x2t4526 Lee Memorial Health System'),
(1606, 'https://ror.org/01x3f1613', 'en', 1, 'https://ror.org/01x3f1613 Driscoll Children''s Hospital'),
(1607, 'https://ror.org/01x3jjv63', 'en', 1, 'https://ror.org/01x3jjv63 Uzhhorod National University Użhorodzki Uniwersytet Narodowy УжгороГский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š£Š¶Š³Š¾Ń€Š¾Š“ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1608, 'https://ror.org/01x4whx42', 'en', 1, 'https://ror.org/01x4whx42 Sangmyung University ģƒėŖ…ėŒ€ķ•™źµ'),
(1609, 'https://ror.org/01x5yfk91', 'en', 1, 'https://ror.org/01x5yfk91 HealthONE Spalding Rehabilitation Hospital'),
(1610, 'https://ror.org/01x66cn47', 'it', 1, 'https://ror.org/01x66cn47 Ospedale di Santa Maria dei Battuti'),
(1611, 'https://ror.org/01x69an44', 'en', 1, 'https://ror.org/01x69an44 Children''s & Women''s Health Centre of British Columbia'),
(1612, 'https://ror.org/01x8yyz38', 'en', 1, 'https://ror.org/01x8yyz38 EtelƤ-Karjalan keskussairaala South Karelia Central Hospital'),
(1613, 'https://ror.org/01x9g5g52', 'no_lang_code', 1, 'https://ror.org/01x9g5g52 Ension'),
(1614, 'https://ror.org/01xapny78', 'en', 1, 'https://ror.org/01xapny78 Cabrini Medical Center'),
(1615, 'https://ror.org/01xar8k65', 'en', 1, 'https://ror.org/01xar8k65 Flower Hospital'),
(1616, 'https://ror.org/01xb3t395', 'en', 1, 'https://ror.org/01xb3t395 Summa Akron City Hospital'),
(1617, 'https://ror.org/01xd4z152', 'en', 1, 'https://ror.org/01xd4z152 Southwest Washington Medical Center'),
(1618, 'https://ror.org/01xdjhe59', 'en', 1, 'https://ror.org/01xdjhe59 Iwata City Hospital ē£ē”°åø‚ē«‹ē·åˆē—…é™¢'),
(1619, 'https://ror.org/01xereq81', 'en', 1, 'https://ror.org/01xereq81 Jamaica Hospital'),
(1620, 'https://ror.org/01xf83457', 'it', 1, 'https://ror.org/01xf83457 Azienda Ospedaliera San Gerardo'),
(1621, 'https://ror.org/01xg9pd38', 'en', 1, 'https://ror.org/01xg9pd38 Fitzgerald Health Education Associates'),
(1622, 'https://ror.org/01xhmje49', 'en', 1, 'https://ror.org/01xhmje49 Birmingham Dental Hospital'),
(1623, 'https://ror.org/01xjqrm90', 'en', 1, 'https://ror.org/01xjqrm90 Umm al-Qura University Ų¬Ų§Ł…Ų¹Ų© أم القرى'),
(1624, 'https://ror.org/01xkmcr24', 'de', 1, 'https://ror.org/01xkmcr24 UniversitƤts-Augenklinik Bonn'),
(1625, 'https://ror.org/01xkzjp97', 'en', 1, 'https://ror.org/01xkzjp97 Health Promotion Board ę–°åŠ å”äæå„äæƒčæ›å±€'),
(1626, 'https://ror.org/01xm3qq33', 'de', 1, 'https://ror.org/01xm3qq33 Schulthess-Klinik'),
(1627, 'https://ror.org/01xm4tt59', 'en', 1, 'https://ror.org/01xm4tt59 Woodruff Health Sciences Center'),
(1628, 'https://ror.org/01xn4ac42', 'en', 1, 'https://ror.org/01xn4ac42 Brandon Regional Health Authority'),
(1629, 'https://ror.org/01xngwb59', 'en', 1, 'https://ror.org/01xngwb59 Fortis Escorts Hospital'),
(1630, 'https://ror.org/01xnhkz22', 'en', 1, 'https://ror.org/01xnhkz22 Scarborough General Hospital'),
(1631, 'https://ror.org/01xnwqx93', 'en', 1, 'https://ror.org/01xnwqx93 University Hospital Bonn UniversitƤtsklinikum Bonn'),
(1632, 'https://ror.org/01xpt7p88', 'en', 1, 'https://ror.org/01xpt7p88 Menninger Clinic'),
(1633, 'https://ror.org/01xq02v66', 'en', 1, 'https://ror.org/01xq02v66 Hasbro Children''s Hospital'),
(1634, 'https://ror.org/01xqed412', 'en', 1, 'https://ror.org/01xqed412 Haywood Community Hospital'),
(1635, 'https://ror.org/01xrazc29', 'en', 1, 'https://ror.org/01xrazc29 Jaipur National University'),
(1636, 'https://ror.org/01xrnpj63', 'no_lang_code', 1, 'https://ror.org/01xrnpj63 Sahara Hospital'),
(1637, 'https://ror.org/01xrsrd14', 'en', 1, 'https://ror.org/01xrsrd14 Meenakshi Mission Hospital and Research Centre'),
(1638, 'https://ror.org/01xtjs520', 'fr', 1, 'https://ror.org/01xtjs520 Institut Laue-Langevin'),
(1639, 'https://ror.org/01xtpc441', 'en', 1, 'https://ror.org/01xtpc441 Northport VA Medical Center'),
(1640, 'https://ror.org/01xv1nn60', 'en', 1, 'https://ror.org/01xv1nn60 Taibah University Ų¬Ų§Ł…Ų¹Ų© طيبة'),
(1641, 'https://ror.org/01xvcf081', 'en', 1, 'https://ror.org/01xvcf081 New York Blood Center'),
(1642, 'https://ror.org/01xxd6b82', 'en', 1, 'https://ror.org/01xxd6b82 Kosair Children''s Hospital'),
(1643, 'https://ror.org/01y3zfr79', 'en', 1, 'https://ror.org/01y3zfr79 National Institute of Nursing Research'),
(1644, 'https://ror.org/01y4xm534', 'en', 1, 'https://ror.org/01y4xm534 Islamic Azad University, Karaj, Karaj Islamic Azad University دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کرج'),
(1645, 'https://ror.org/01y8xtk20', 'en', 1, 'https://ror.org/01y8xtk20 Southwestern Oklahoma State University'),
(1646, 'https://ror.org/01y8zn427', 'en', 1, 'https://ror.org/01y8zn427 Chittagong Medical College ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(1647, 'https://ror.org/01y946378', 'en', 1, 'https://ror.org/01y946378 Hospital Umum Sarawak Sarawak General Hospital'),
(1648, 'https://ror.org/01yav5t22', 'en', 1, 'https://ror.org/01yav5t22 Conference Board Math Sciences'),
(1649, 'https://ror.org/01ybfxd46', 'en', 1, 'https://ror.org/01ybfxd46 University Hospital Complex Of Vigo'),
(1650, 'https://ror.org/01ybj8n97', 'en', 1, 'https://ror.org/01ybj8n97 Dundee Dental Hospital'),
(1651, 'https://ror.org/01ycr6b80', 'en', 1, 'https://ror.org/01ycr6b80 Royal Liverpool University Hospital'),
(1652, 'https://ror.org/01yedz573', 'en', 1, 'https://ror.org/01yedz573 Kunming General Hospital of Chengdu Military Command ęˆéƒ½å†›åŒŗę˜†ę˜Žę€»åŒ»é™¢'),
(1653, 'https://ror.org/01yft1b10', 'en', 1, 'https://ror.org/01yft1b10 Catalyst Health Economics Consultants Ltd'),
(1654, 'https://ror.org/01yhc9w15', 'en', 1, 'https://ror.org/01yhc9w15 Sherman Hospital'),
(1655, 'https://ror.org/01yjy8p80', 'en', 1, 'https://ror.org/01yjy8p80 National University of LujƔn Universidad Nacional de LujƔn'),
(1656, 'https://ror.org/01yjyvb35', 'en', 1, 'https://ror.org/01yjyvb35 Bemidji State University'),
(1657, 'https://ror.org/01ym47j46', 'en', 1, 'https://ror.org/01ym47j46 Fulbourn Hospital'),
(1658, 'https://ror.org/01yn28w07', 'no_lang_code', 1, 'https://ror.org/01yn28w07 General Hospital of Ioannina G. Hatzikosta Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ιωαννίνων "Ī“. Ī§Ī±Ļ„Ī¶Ī·ĪŗĻŽĻƒĻ„Ī±"'),
(1659, 'https://ror.org/01yp8kc21', 'es', 1, 'https://ror.org/01yp8kc21 Hospital San Pedro de AlcƔntara'),
(1660, 'https://ror.org/01ypwfg63', 'no_lang_code', 1, 'https://ror.org/01ypwfg63 Ecofys (Netherlands)'),
(1661, 'https://ror.org/01yqewm58', 'en', 1, 'https://ror.org/01yqewm58 Kuban State University Кубанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1662, 'https://ror.org/01ysgtb61', 'en', 1, 'https://ror.org/01ysgtb61 Baqiyatallah University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŁ‚ŪŒŲ©Ų§Ł„Ł„Ł‡'),
(1663, 'https://ror.org/01yth7f19', 'no_lang_code', 1, 'https://ror.org/01yth7f19 Kudanzaka Hospital ä¹ę®µå‚ē—…é™¢'),
(1664, 'https://ror.org/01yvj7247', 'en', 1, 'https://ror.org/01yvj7247 Bnai Zion Medical Center ×ž×Ø×›×– רפואי בני ציון'),
(1665, 'https://ror.org/01ywpxj09', 'en', 1, 'https://ror.org/01ywpxj09 Queen Victoria Hospital'),
(1666, 'https://ror.org/01yxj7x74', 'en', 1, 'https://ror.org/01yxj7x74 University Clinic of Pulmonary and Allergic Diseases Golnik'),
(1667, 'https://ror.org/01yytng49', 'en', 1, 'https://ror.org/01yytng49 Kanagawa Rehabilitation Hospital ē„žå„ˆå·ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(1668, 'https://ror.org/01yyxv878', 'en', 1, 'https://ror.org/01yyxv878 Wingate University'),
(1669, 'https://ror.org/01yzgg311', 'es', 1, 'https://ror.org/01yzgg311 Hospital Central de la Cruz Roja San JosƩ y Santa Adela'),
(1670, 'https://ror.org/01yzz0f51', 'en', 1, 'https://ror.org/01yzz0f51 Chung Hua University'),
(1671, 'https://ror.org/01z07eq06', 'en', 1, 'https://ror.org/01z07eq06 Hubei Polytechnic University ę¹–åŒ—ē†å·„å­¦é™¢'),
(1672, 'https://ror.org/01z1dtf94', 'en', 1, 'https://ror.org/01z1dtf94 Shriners Hospitals for Children - Canada'),
(1673, 'https://ror.org/01z3j3n30', 'en', 1, 'https://ror.org/01z3j3n30 Schneider Children''s Medical Center'),
(1674, 'https://ror.org/01z4nnt86', 'en', 1, 'https://ror.org/01z4nnt86 Seoul National University Hospital ģ„œģšøėŒ€ķ•™źµė³‘ģ›'),
(1675, 'https://ror.org/01z719741', 'en', 1, 'https://ror.org/01z719741 Scripps Clinic Medical Group'),
(1676, 'https://ror.org/01z7mq587', 'tr', 1, 'https://ror.org/01z7mq587 Diyarbakır Askeri Hastanesi'),
(1677, 'https://ror.org/01z83rb65', 'fr', 1, 'https://ror.org/01z83rb65 Adi Valor'),
(1678, 'https://ror.org/01z8t1s57', 'en', 1, 'https://ror.org/01z8t1s57 International Center for Public Health'),
(1679, 'https://ror.org/01z9vrt66', 'en', 1, 'https://ror.org/01z9vrt66 Okazaki City Hospital å²”å“Žåø‚ę°‘ē—…é™¢'),
(1680, 'https://ror.org/01za8fg18', 'en', 1, 'https://ror.org/01za8fg18 Lagos State University YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ ƈkó'),
(1681, 'https://ror.org/01zbeej63', 'fi', 1, 'https://ror.org/01zbeej63 Keski-Satakunnan Terveydenhuollon kuntayhtymƤ'),
(1682, 'https://ror.org/01zbhpb91', 'en', 1, 'https://ror.org/01zbhpb91 Meenakshi Ammal Dental College and Hospital'),
(1683, 'https://ror.org/01zbzxe52', 'en', 1, 'https://ror.org/01zbzxe52 Royal South Hants Hospital'),
(1684, 'https://ror.org/01zc7k534', 'no_lang_code', 1, 'https://ror.org/01zc7k534 Koga Hospital å¤č³€ē—…é™¢'),
(1685, 'https://ror.org/01zd7yk57', 'en', 1, 'https://ror.org/01zd7yk57 Louisville VA Medical Center'),
(1686, 'https://ror.org/01zjsmf32', 'en', 1, 'https://ror.org/01zjsmf32 Government Rajaji Hospital'),
(1687, 'https://ror.org/01zjvhn75', 'en', 1, 'https://ror.org/01zjvhn75 National Taiwan Sport University'),
(1688, 'https://ror.org/01zkyz108', 'en', 1, 'https://ror.org/01zkyz108 Hospital Monte SinaĆ­ Mount Sinai Hospital'),
(1689, 'https://ror.org/01zmw6f28', 'it', 1, 'https://ror.org/01zmw6f28 Ospedale Santa Maria Annunziata'),
(1690, 'https://ror.org/01znbfh26', 'fi', 1, 'https://ror.org/01znbfh26 Forssan Seudun Terveydenhuollon KuntayhtymƤ'),
(1691, 'https://ror.org/01zp13r18', 'en', 1, 'https://ror.org/01zp13r18 Research Medical Center'),
(1692, 'https://ror.org/01zqccq48', 'en', 1, 'https://ror.org/01zqccq48 Daegu University ėŒ€źµ¬ėŒ€ķ•™źµ'),
(1693, 'https://ror.org/01zqcg218', 'en', 1, 'https://ror.org/01zqcg218 Kyung Hee University ź²½ķ¬ėŒ€ķ•™źµ'),
(1694, 'https://ror.org/01zqztb27', 'no_lang_code', 1, 'https://ror.org/01zqztb27 Caritas Medical Centre ę˜Žę„›é†«é™¢'),
(1695, 'https://ror.org/01zr6qe45', 'en', 1, 'https://ror.org/01zr6qe45 Colorado Center For Hospice and Palliative Care'),
(1696, 'https://ror.org/01zt9a375', 'en', 1, 'https://ror.org/01zt9a375 Chosun University ģ”°ģ„ ėŒ€ķ•™źµ'),
(1697, 'https://ror.org/01zvqw119', 'en', 1, 'https://ror.org/01zvqw119 Auckland University of Technology'),
(1698, 'https://ror.org/01zx16v02', 'en', 1, 'https://ror.org/01zx16v02 Athens State University UniversitĆ© d''Ɖtat d''athens'),
(1699, 'https://ror.org/01zx5ww52', 'en', 1, 'https://ror.org/01zx5ww52 Inje University Ilsan Paik Hospital ģøģ œ ėŒ€ķ•™źµ ģ¼ģ‚° 백병원'),
(1700, 'https://ror.org/01zxdeg39', 'en', 1, 'https://ror.org/01zxdeg39 Harvard Pilgrim Health Care'),
(1701, 'https://ror.org/01zy11s57', 'en', 1, 'https://ror.org/01zy11s57 North Tyneside General Hospital'),
(1702, 'https://ror.org/01zy69h55', 'en', 1, 'https://ror.org/01zy69h55 401 General Military Hospital of Athens 401 Ī“ĪµĪ½Ī¹ĪŗĻŒ Ī£Ļ„ĻĪ±Ļ„Ī¹Ļ‰Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(1703, 'https://ror.org/01zyevp23', 'en', 1, 'https://ror.org/01zyevp23 Musgrave Park Hospital'),
(1704, 'https://ror.org/020268t49', 'de', 1, 'https://ror.org/020268t49 Papiertechnische Stiftung'),
(1705, 'https://ror.org/0203evn05', 'en', 1, 'https://ror.org/0203evn05 Federation of American Hospitals'),
(1706, 'https://ror.org/02049v059', 'hr', 1, 'https://ror.org/02049v059 Opća bolnica Karlovac'),
(1707, 'https://ror.org/0204pdj19', 'en', 1, 'https://ror.org/0204pdj19 Institute For European Environmental Policy'),
(1708, 'https://ror.org/0209dk158', 'en', 1, 'https://ror.org/0209dk158 Lowell Observatory');
INSERT INTO `rors` VALUES
(1709, 'https://ror.org/020afzk37', 'no_lang_code', 1, 'https://ror.org/020afzk37 Mirus Bio (United States)'),
(1710, 'https://ror.org/020b6jb08', 'en', 1, 'https://ror.org/020b6jb08 Canadian Mathematical Society'),
(1711, 'https://ror.org/020cmsc29', 'en', 1, 'https://ror.org/020cmsc29 Rajendra Memorial Research Institute of Medical Sciences'),
(1712, 'https://ror.org/020gwz349', 'no_lang_code', 1, 'https://ror.org/020gwz349 Herzog Hospital בית חולים הרצוג'),
(1713, 'https://ror.org/020hchp05', 'en', 1, 'https://ror.org/020hchp05 Integrated Laboratory Systems, Inc.'),
(1714, 'https://ror.org/020jbrt22', 'en', 1, 'https://ror.org/020jbrt22 Tbilisi State Medical University Ō¹Õ¢Õ«Õ¬Õ«Õ½Õ«Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ¢ÕŖÕ·ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(1715, 'https://ror.org/020jkns84', 'en', 1, 'https://ror.org/020jkns84 Foundation University Medical College'),
(1716, 'https://ror.org/020k76687', 'no_lang_code', 1, 'https://ror.org/020k76687 Autonomous Operator of Parisian Transports RƩgie Autonome des Transports Parisiens (France)'),
(1717, 'https://ror.org/020k7fn51', 'no_lang_code', 1, 'https://ror.org/020k7fn51 Information Management Services'),
(1718, 'https://ror.org/020m4km16', 'en', 1, 'https://ror.org/020m4km16 Bexar County Medical Examiner''s Office'),
(1719, 'https://ror.org/020nckd56', 'pt', 1, 'https://ror.org/020nckd56 Instituto Superior de Ciências da Administração'),
(1720, 'https://ror.org/020q46z35', 'en', 1, 'https://ror.org/020q46z35 University of Bangui UniversitƩ de Bangui'),
(1721, 'https://ror.org/020qgp237', 'no_lang_code', 1, 'https://ror.org/020qgp237 DuPont (Canada)'),
(1722, 'https://ror.org/020rayx20', 'tr', 1, 'https://ror.org/020rayx20 Konya Eğitim ve Araştırma Hastanesi'),
(1723, 'https://ror.org/020rmtx45', 'no_lang_code', 1, 'https://ror.org/020rmtx45 Envirogen (United States)'),
(1724, 'https://ror.org/020rvjj03', 'en', 1, 'https://ror.org/020rvjj03 Satakunta Central Hospital'),
(1725, 'https://ror.org/020rzx487', 'en', 1, 'https://ror.org/020rzx487 Sheba Medical Center'),
(1726, 'https://ror.org/020sa1s57', 'en', 1, 'https://ror.org/020sa1s57 Aomori University of Health and Welfare é’ę£®ēœŒē«‹äæå„å¤§å­¦'),
(1727, 'https://ror.org/020vmqv16', 'en', 1, 'https://ror.org/020vmqv16 Roosevelt University'),
(1728, 'https://ror.org/020wf1g18', 'en', 1, 'https://ror.org/020wf1g18 Huron Hospital'),
(1729, 'https://ror.org/0213f0637', 'it', 1, 'https://ror.org/0213f0637 Azienda Ospedaliero Universitaria Ospedali Riuniti'),
(1730, 'https://ror.org/0217hb928', 'en', 1, 'https://ror.org/0217hb928 Middlebury College'),
(1731, 'https://ror.org/02182hd81', 'pt', 1, 'https://ror.org/02182hd81 Escola do Serviço de Saúde Militar'),
(1732, 'https://ror.org/021959v84', 'fr', 1, 'https://ror.org/021959v84 HƓpital Saint-AndrƩ'),
(1733, 'https://ror.org/0219djn76', 'en', 1, 'https://ror.org/0219djn76 Rush Children''s Hospital'),
(1734, 'https://ror.org/0219m2k96', 'en', 1, 'https://ror.org/0219m2k96 Decision Research'),
(1735, 'https://ror.org/0219xsk19', 'fr', 1, 'https://ror.org/0219xsk19 HƓpital Saint Joseph'),
(1736, 'https://ror.org/021a7pw18', 'en', 1, 'https://ror.org/021a7pw18 New York City College of Technology'),
(1737, 'https://ror.org/021aj5d10', 'en', 1, 'https://ror.org/021aj5d10 Dr. R. Ahmed Dental College and Hospital ঔাঃ আর আহমেদ ą¦”ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ ও হাসপাতাল'),
(1738, 'https://ror.org/021bj7008', 'no_lang_code', 1, 'https://ror.org/021bj7008 Meitetsu Hospital åé‰„ē—…é™¢'),
(1739, 'https://ror.org/021dmtc66', 'en', 1, 'https://ror.org/021dmtc66 Regional Hospital Horsens Regionshospitalet Horsens'),
(1740, 'https://ror.org/021e5j056', 'en', 1, 'https://ror.org/021e5j056 Kuwait University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁˆŁŠŲŖ'),
(1741, 'https://ror.org/021jxzw96', 'it', 1, 'https://ror.org/021jxzw96 Azienda Ospedaliera S.Giuseppe Moscati'),
(1742, 'https://ror.org/021kgjd57', 'en', 1, 'https://ror.org/021kgjd57 Long Beach Memorial Medical Center'),
(1743, 'https://ror.org/021m54z79', 'no_lang_code', 1, 'https://ror.org/021m54z79 Takara (Japan) å®ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(1744, 'https://ror.org/021nb2v44', 'en', 1, 'https://ror.org/021nb2v44 Medical College and Hospital, Kolkata ą¤•ą¤²ą¤•ą¤¤ą„ą¤¤ą¤¾ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ কলকাতা ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ ও হাসপাতাল'),
(1745, 'https://ror.org/021qvjc46', 'no_lang_code', 1, 'https://ror.org/021qvjc46 Physical Sciences (United States)'),
(1746, 'https://ror.org/021rvrs67', 'ca', 1, 'https://ror.org/021rvrs67 Hospital Sant Pau i Santa Tecla'),
(1747, 'https://ror.org/021wsw395', 'fr', 1, 'https://ror.org/021wsw395 HƓpital Fontmaure'),
(1748, 'https://ror.org/021wvan87', 'no_lang_code', 1, 'https://ror.org/021wvan87 Qi2'),
(1749, 'https://ror.org/021x6km63', 'en', 1, 'https://ror.org/021x6km63 Kirwan Health Campus'),
(1750, 'https://ror.org/021zm6p18', 'en', 1, 'https://ror.org/021zm6p18 Norfolk and Norwich University Hospital'),
(1751, 'https://ror.org/022261z88', 'en', 1, 'https://ror.org/022261z88 Evans Army Community Hospital'),
(1752, 'https://ror.org/022296476', 'en', 1, 'https://ror.org/022296476 National Kyushu Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ ä¹å·žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1753, 'https://ror.org/0222am037', 'it', 1, 'https://ror.org/0222am037 Ospedaliero Sirai'),
(1754, 'https://ror.org/0222df516', 'en', 1, 'https://ror.org/0222df516 Probity Medical Research'),
(1755, 'https://ror.org/0222p1e69', 'en', 1, 'https://ror.org/0222p1e69 Eugene Applebaum College of Pharmacy and Health Sciences'),
(1756, 'https://ror.org/0223apb60', 'en', 1, 'https://ror.org/0223apb60 Mahatma Gandhi Memorial Medical College'),
(1757, 'https://ror.org/0226env10', 'no_lang_code', 1, 'https://ror.org/0226env10 Sociometrics Corporation'),
(1758, 'https://ror.org/0228w5t68', 'en', 1, 'https://ror.org/0228w5t68 KK Women''s and Children''s Hospital'),
(1759, 'https://ror.org/0229c7854', 'en', 1, 'https://ror.org/0229c7854 Massachusetts Mental Health Center'),
(1760, 'https://ror.org/022a11m05', 'no_lang_code', 1, 'https://ror.org/022a11m05 Iwaki Kyoritsu General Hospital ć„ć‚ćå…±ē«‹ē·åˆē—…é™¢'),
(1761, 'https://ror.org/022arq532', 'en', 1, 'https://ror.org/022arq532 Prince of Wales Hospital'),
(1762, 'https://ror.org/022d5qt08', 'de', 1, 'https://ror.org/022d5qt08 Bundesforschungsinstitut für Kulturpflanzen, Julius Kühn-Institut Federal Research Centre for Cultivated Plants'),
(1763, 'https://ror.org/022ekqa73', 'en', 1, 'https://ror.org/022ekqa73 National Animal Husbandry Service å…Øå›½ē•œē‰§ę€»ē«™'),
(1764, 'https://ror.org/022em3k58', 'en', 1, 'https://ror.org/022em3k58 De Duve Instituut L''Institut de Duve de Duve Institute'),
(1765, 'https://ror.org/022gnbj15', 'en', 1, 'https://ror.org/022gnbj15 Louisiana State University System'),
(1766, 'https://ror.org/022h0tq76', 'en', 1, 'https://ror.org/022h0tq76 Kanagawa Children''s Medical Center ē„žå„ˆå·ēœŒē«‹ć“ć©ć‚‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1767, 'https://ror.org/022j3nr24', 'en', 1, 'https://ror.org/022j3nr24 Hospital central de Kamuzu Kamuzu Central Hospital'),
(1768, 'https://ror.org/022jeg055', 'en', 1, 'https://ror.org/022jeg055 Dallas Diabetes Research Center'),
(1769, 'https://ror.org/022k36x48', 'no_lang_code', 1, 'https://ror.org/022k36x48 Taylor Wimpey (United Kingdom)'),
(1770, 'https://ror.org/022k8bt28', 'en', 1, 'https://ror.org/022k8bt28 Nishi Eye Hospital č„æēœ¼ē§‘ē—…é™¢'),
(1771, 'https://ror.org/022mjvt30', 'en', 1, 'https://ror.org/022mjvt30 Japanese Red Cross Fukuoka Hospital ē¦å²”čµ¤åå­—ē—…é™¢'),
(1772, 'https://ror.org/022mtcz62', 'en', 1, 'https://ror.org/022mtcz62 Melbourne Centre for Nanofabrication'),
(1773, 'https://ror.org/022qy2d08', 'en', 1, 'https://ror.org/022qy2d08 Brenau University'),
(1774, 'https://ror.org/022rkxt86', 'no_lang_code', 1, 'https://ror.org/022rkxt86 Trojan Technologies (Canada)'),
(1775, 'https://ror.org/022swbj46', 'en', 1, 'https://ror.org/022swbj46 National Brain Research Centre ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą¤øą„ą¤¤ą¤æą¤·ą„ą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°, ą¤®ą¤¾ą¤Øą„‡ą¤øą¤°, हरियाणा'),
(1776, 'https://ror.org/022v32y85', 'en', 1, 'https://ror.org/022v32y85 Andreas Sygros Hospital ΑνΓρέας Ī£Ļ…Ī³Ī³ĻĻŒĻ‚ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(1777, 'https://ror.org/022vd9g66', 'fr', 1, 'https://ror.org/022vd9g66 HƓpital OrthopƩdique de la Suisse Romande'),
(1778, 'https://ror.org/022wqqf69', 'es', 1, 'https://ror.org/022wqqf69 Centre for Technical Research and Studies Centro de Estudios e Investigaciones TƩcnicas de Gipuzkoa'),
(1779, 'https://ror.org/022xmez67', 'no_lang_code', 1, 'https://ror.org/022xmez67 Microbiotix (United States)'),
(1780, 'https://ror.org/022yckc24', 'pt', 1, 'https://ror.org/022yckc24 Hospital UniversitƔrio EvangƩlico de Curitiba'),
(1781, 'https://ror.org/022yvqh08', 'en', 1, 'https://ror.org/022yvqh08 University College Hospital, Ibadan'),
(1782, 'https://ror.org/0230h1q47', 'en', 1, 'https://ror.org/0230h1q47 King Fahd Hospital of the University مستؓفى Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„'),
(1783, 'https://ror.org/0231d2y50', 'en', 1, 'https://ror.org/0231d2y50 Lenox Hill Hospital'),
(1784, 'https://ror.org/0231m7n15', 'en', 1, 'https://ror.org/0231m7n15 Lake Regional Hospital'),
(1785, 'https://ror.org/023733d09', 'es', 1, 'https://ror.org/023733d09 Hospital de l''EsperanƧa'),
(1786, 'https://ror.org/02378jc90', 'en', 1, 'https://ror.org/02378jc90 Raja Ramanna Centre for Advanced Technology राजा ą¤°ą¤¾ą¤®ą¤£ą„ą¤£ą¤¾ ą¤…ą¤¤ą„ą¤Æą¤¾ą¤§ą„ą¤Øą¤æą¤• ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° राजा ą¤°ą¤¾ą¤®ą¤Øą„ą¤Øą¤¾ ą¤Ŗą„ą¤°ą¤—ą¤¤ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤° ą“°ą“¾ą“œą“¾ ą“°ą“¾ą“®ą“£ąµą“£ ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“…ą“”ąµą“µą“¾ąµ»ą“øąµą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(1787, 'https://ror.org/0238gtq84', 'en', 1, 'https://ror.org/0238gtq84 Rajavithi Hospital'),
(1788, 'https://ror.org/0238gz740', 'en', 1, 'https://ror.org/0238gz740 Institute for Theoretical and Experimental Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ физики'),
(1789, 'https://ror.org/023bq8521', 'en', 1, 'https://ror.org/023bq8521 Saint Petersburg State Electrotechnical University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1790, 'https://ror.org/023cara48', 'en', 1, 'https://ror.org/023cara48 Center for Epidemiology and Animal Health'),
(1791, 'https://ror.org/023cbtv31', 'en', 1, 'https://ror.org/023cbtv31 Madrid Health Service Servicio MadrileƱo de Salud'),
(1792, 'https://ror.org/023cpc062', 'no_lang_code', 1, 'https://ror.org/023cpc062 DNA Link (South Korea)'),
(1793, 'https://ror.org/023dma244', 'en', 1, 'https://ror.org/023dma244 Colchester Hospital'),
(1794, 'https://ror.org/023e6jq80', 'en', 1, 'https://ror.org/023e6jq80 Güven Hastanesi Güven Hospital'),
(1795, 'https://ror.org/023fgmp71', 'en', 1, 'https://ror.org/023fgmp71 East Georgia State College'),
(1796, 'https://ror.org/023gt0394', 'en', 1, 'https://ror.org/023gt0394 St Richard''s Hospital'),
(1797, 'https://ror.org/023hj8v22', 'en', 1, 'https://ror.org/023hj8v22 Memorial Hospital'),
(1798, 'https://ror.org/023kfg220', 'en', 1, 'https://ror.org/023kfg220 National Institute for Agro-Environmental Sciences č¾²ę„­ē’°å¢ƒå¤‰å‹•ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(1799, 'https://ror.org/023m35461', 'en', 1, 'https://ror.org/023m35461 Istanbul Bilim University İstanbul Bilim Üniversitesi'),
(1800, 'https://ror.org/023pqj155', 'es', 1, 'https://ror.org/023pqj155 Hospital Santiago Apostol'),
(1801, 'https://ror.org/023q4bk22', 'en', 1, 'https://ror.org/023q4bk22 Central Queensland University'),
(1802, 'https://ror.org/023r6xh67', 'en', 1, 'https://ror.org/023r6xh67 Ignatius Hospital Sint Ignatiusziekenhuis'),
(1803, 'https://ror.org/023wqmm33', 'en', 1, 'https://ror.org/023wqmm33 DeKalb Medical Center'),
(1804, 'https://ror.org/023z51242', 'en', 1, 'https://ror.org/023z51242 Enterprise Ireland'),
(1805, 'https://ror.org/023znxa73', 'en', 1, 'https://ror.org/023znxa73 St Petersburg University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1806, 'https://ror.org/02405mj67', 'en', 1, 'https://ror.org/02405mj67 Belfast City Hospital'),
(1807, 'https://ror.org/02408be69', 'en', 1, 'https://ror.org/02408be69 National Center of Hygiene Medical Ecology and Nutrition'),
(1808, 'https://ror.org/0240cjw65', 'fr', 1, 'https://ror.org/0240cjw65 Polyclinique de Bordeaux-Tondu'),
(1809, 'https://ror.org/0241b8f19', 'en', 1, 'https://ror.org/0241b8f19 Gomal University جامعہ ŚÆŁˆŁ…Ł„'),
(1810, 'https://ror.org/0241gfe92', 'en', 1, 'https://ror.org/0241gfe92 University of Minnesota, Waseca'),
(1811, 'https://ror.org/0242qs713', 'en', 1, 'https://ror.org/0242qs713 Birmingham VA Medical Center'),
(1812, 'https://ror.org/02436cs38', 'no_lang_code', 1, 'https://ror.org/02436cs38 Unilever (Netherlands)'),
(1813, 'https://ror.org/0243t3259', 'en', 1, 'https://ror.org/0243t3259 Militair Hospitaal Koningin Astrid Queen Astrid Military Hospital'),
(1814, 'https://ror.org/0248gc218', 'en', 1, 'https://ror.org/0248gc218 Adler Planetarium'),
(1815, 'https://ror.org/0249v7n71', 'en', 1, 'https://ror.org/0249v7n71 Institute for Computer Science and Control Magyar TudomÔnyos Akadémia SzÔmítÔstechnikai és AutomatizÔlÔsi Kutatóintézete'),
(1816, 'https://ror.org/024amfv85', 'en', 1, 'https://ror.org/024amfv85 Federal Agency for Health and Social Development Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ агентство по Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃŽ Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¼Ńƒ Ń€Š°Š·Š²ŠøŃ‚ŠøŃŽ'),
(1817, 'https://ror.org/024bsrp32', 'en', 1, 'https://ror.org/024bsrp32 Casa Colina Centers for Rehabilitation'),
(1818, 'https://ror.org/024c2fq17', 'en', 1, 'https://ror.org/024c2fq17 Sharif University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ ؓریف'),
(1819, 'https://ror.org/024cn3w16', 'fr', 1, 'https://ror.org/024cn3w16 Centre Hospitalier Philippe Pinel'),
(1820, 'https://ror.org/024daed65', 'no_lang_code', 1, 'https://ror.org/024daed65 Social and Scientific Systems (United States)'),
(1821, 'https://ror.org/024esvk12', 'en', 1, 'https://ror.org/024esvk12 Saint Barnabas Medical Center'),
(1822, 'https://ror.org/024eyyq66', 'en', 1, 'https://ror.org/024eyyq66 Armed Forces Hospital'),
(1823, 'https://ror.org/024pgmp43', 'hu', 1, 'https://ror.org/024pgmp43 St. John''s Hospital Szent JÔnos KórhÔz'),
(1824, 'https://ror.org/024q5j973', 'en', 1, 'https://ror.org/024q5j973 Hacettepe University Hospital'),
(1825, 'https://ror.org/024ran220', 'en', 1, 'https://ror.org/024ran220 Kansai Rosai Hospital é–¢č„æć‚ć†ć•ć„ē—…é™¢'),
(1826, 'https://ror.org/024xs2z82', 'no_lang_code', 1, 'https://ror.org/024xs2z82 ArcelorMittal (France)'),
(1827, 'https://ror.org/024xyyq03', 'en', 1, 'https://ror.org/024xyyq03 Nashville VA Medical Center'),
(1828, 'https://ror.org/024yc3q36', 'en', 1, 'https://ror.org/024yc3q36 Tottori University 鳄取大学'),
(1829, 'https://ror.org/024zq6d87', 'en', 1, 'https://ror.org/024zq6d87 Sisters of Mercy Health System'),
(1830, 'https://ror.org/025020z88', 'en', 1, 'https://ror.org/025020z88 Hunan Cancer Hospital'),
(1831, 'https://ror.org/0250jpt55', 'en', 1, 'https://ror.org/0250jpt55 Saurashtra University'),
(1832, 'https://ror.org/0252jr437', 'no_lang_code', 1, 'https://ror.org/0252jr437 Starks Associates'),
(1833, 'https://ror.org/02550n020', 'en', 1, 'https://ror.org/02550n020 European Synchrotron Radiation Facility'),
(1834, 'https://ror.org/02558wk32', 'en', 1, 'https://ror.org/02558wk32 Islamic Azad University, Arak دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ų±Ų§Ś©'),
(1835, 'https://ror.org/025714n80', 'es', 1, 'https://ror.org/025714n80 Hospital de Galdakao'),
(1836, 'https://ror.org/025821s54', 'en', 1, 'https://ror.org/025821s54 University Hospital Coventry'),
(1837, 'https://ror.org/0258b0610', 'en', 1, 'https://ror.org/0258b0610 Kansas Department of Health and Environment'),
(1838, 'https://ror.org/0258h0g75', 'en', 1, 'https://ror.org/0258h0g75 Rajendra Institute of Medical Sciences'),
(1839, 'https://ror.org/0259e4473', 'en', 1, 'https://ror.org/0259e4473 The Military General Hospital of Beijing PLA äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›ę€»åŒ»é™¢'),
(1840, 'https://ror.org/025bm0k33', 'no_lang_code', 1, 'https://ror.org/025bm0k33 Kawasaki Municipal Hospital å·å“Žåø‚ē«‹å·å“Žē—…é™¢'),
(1841, 'https://ror.org/025chrz76', 'en', 1, 'https://ror.org/025chrz76 Marshfield Clinic'),
(1842, 'https://ror.org/025fyfd20', 'en', 1, 'https://ror.org/025fyfd20 Children''s Hospital of Zhejiang University'),
(1843, 'https://ror.org/025h1m602', 'no_lang_code', 1, 'https://ror.org/025h1m602 Konkuk University ź±“źµ­ėŒ€ķ•™źµ'),
(1844, 'https://ror.org/025kav035', 'en', 1, 'https://ror.org/025kav035 Ripon College'),
(1845, 'https://ror.org/025kb2624', 'en', 1, 'https://ror.org/025kb2624 Ho Chi Minh City Medicine and Pharmacy University TrĘ°į»ng ĐẔi hį»c Y Dược ThĆ nh phố Hồ ChĆ­ Minh UniversitĆ© de pharmacie et mĆ©decine d''hĆ“-chi-minh-ville'),
(1846, 'https://ror.org/025n13r50', 'en', 1, 'https://ror.org/025n13r50 Adelphi University'),
(1847, 'https://ror.org/025nszc09', 'no_lang_code', 1, 'https://ror.org/025nszc09 Canadian Natural Resources'),
(1848, 'https://ror.org/025ny1854', 'en', 1, 'https://ror.org/025ny1854 George Eliot Hospital'),
(1849, 'https://ror.org/025q7sd17', 'es', 1, 'https://ror.org/025q7sd17 Hospital General Dr. Manuel Gea Gonzalez'),
(1850, 'https://ror.org/025sdjb25', 'fr', 1, 'https://ror.org/025sdjb25 Centre Hospitalier et Universitaire de Brazzaville'),
(1851, 'https://ror.org/025sthg37', 'en', 1, 'https://ror.org/025sthg37 Queen Elizabeth Central Hospital'),
(1852, 'https://ror.org/025wfj672', 'en', 1, 'https://ror.org/025wfj672 MRC Unit the Gambia'),
(1853, 'https://ror.org/025xmgt30', 'en', 1, 'https://ror.org/025xmgt30 Oregon Social Learning Center'),
(1854, 'https://ror.org/025z8ah66', 'en', 1, 'https://ror.org/025z8ah66 Public Health Ontario SantƩ publique Ontario'),
(1855, 'https://ror.org/0260bkf37', 'no_lang_code', 1, 'https://ror.org/0260bkf37 NuroRestore (United States)'),
(1856, 'https://ror.org/0261g6j35', 'en', 1, 'https://ror.org/0261g6j35 Chaudhary Charan Singh Haryana Agricultural University ą¤šą„Œą¤§ą¤°ą„€ चरण सिंह हरियाणा ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ சௌதரி ą®šą®°ą®£ąÆ ą®šą®æą®™ąÆ அரியானா ą®µąÆ‡ą®³ą®¾ą®£ąÆą®®ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(1857, 'https://ror.org/0262qgk29', 'en', 1, 'https://ror.org/0262qgk29 National Research Mordovia State University ŠœŠ¾Ń€Š“Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. П. ŠžŠ³Š°Ń€Ń‘Š²Š°'),
(1858, 'https://ror.org/026452768', 'no_lang_code', 1, 'https://ror.org/026452768 PTV Group (Germany)'),
(1859, 'https://ror.org/026492508', 'en', 1, 'https://ror.org/026492508 Spalding University'),
(1860, 'https://ror.org/0264d9934', 'en', 1, 'https://ror.org/0264d9934 Royal Aberdeen Children''s Hospital'),
(1861, 'https://ror.org/0267zkr58', 'no_lang_code', 1, 'https://ror.org/0267zkr58 Safdarjang Hospital'),
(1862, 'https://ror.org/0269fmf70', 'en', 1, 'https://ror.org/0269fmf70 St. Mary''s Hospital'),
(1863, 'https://ror.org/026as0d42', 'es', 1, 'https://ror.org/026as0d42 Hospital Angeles Pedregal'),
(1864, 'https://ror.org/026b7da27', 'en', 1, 'https://ror.org/026b7da27 Government Medical College'),
(1865, 'https://ror.org/026dp0v66', 'en', 1, 'https://ror.org/026dp0v66 Union for International Cancer Control Union internationale contre le cancer'),
(1866, 'https://ror.org/026dr4n55', 'en', 1, 'https://ror.org/026dr4n55 Federal Medical Centre'),
(1867, 'https://ror.org/026e9yy16', 'en', 1, 'https://ror.org/026e9yy16 Affiliated Hospital of Qingdao University'),
(1868, 'https://ror.org/026gtm069', 'en', 1, 'https://ror.org/026gtm069 Maryknoll Medical Center 메리놀병원'),
(1869, 'https://ror.org/026mnhe80', 'en', 1, 'https://ror.org/026mnhe80 Chongqing Academy of Animal Science é‡åŗ†åø‚ē•œē‰§ē§‘å­¦é™¢'),
(1870, 'https://ror.org/026n33e29', 'en', 1, 'https://ror.org/026n33e29 Cohen Children''s Medical Center'),
(1871, 'https://ror.org/026p6d134', 'en', 1, 'https://ror.org/026p6d134 Memorial Health University Medical Center'),
(1872, 'https://ror.org/026qp7597', 'tr', 1, 'https://ror.org/026qp7597 Zekai Tahir Burak Kadın Sağlığı Eğitim ve Araştırma Hastanesi'),
(1873, 'https://ror.org/026r1ac43', 'no_lang_code', 1, 'https://ror.org/026r1ac43 Fukuyama City Hospital ē¦å±±åø‚ę°‘ē—…é™¢'),
(1874, 'https://ror.org/026s99n34', 'en', 1, 'https://ror.org/026s99n34 West Virginia State Department of Health and Human Resources'),
(1875, 'https://ror.org/026tktq31', 'en', 1, 'https://ror.org/026tktq31 Solapur University ą¤øą„‹ą¤²ą¤¾ą¤Ŗą„‚ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(1876, 'https://ror.org/026vvkz19', 'en', 1, 'https://ror.org/026vvkz19 National Interuniversity Consortium for the Physical Sciences of Matter'),
(1877, 'https://ror.org/026xdcm93', 'en', 1, 'https://ror.org/026xdcm93 Royal Cornwall Hospital Trust'),
(1878, 'https://ror.org/02722hp10', 'no_lang_code', 1, 'https://ror.org/02722hp10 Assaf Harofeh Medical Center'),
(1879, 'https://ror.org/027487t94', 'en', 1, 'https://ror.org/027487t94 Aurora University'),
(1880, 'https://ror.org/0277g6a74', 'en', 1, 'https://ror.org/0277g6a74 Douglass Hanly Moir Pathology'),
(1881, 'https://ror.org/0277n1841', 'en', 1, 'https://ror.org/0277n1841 University of Tennessee Medical Center'),
(1882, 'https://ror.org/027970q43', 'no_lang_code', 1, 'https://ror.org/027970q43 Emergent BioSolutions (United States)'),
(1883, 'https://ror.org/02797hn66', 'en', 1, 'https://ror.org/02797hn66 Dr. Ram Manohar Lohia Avadh University ą¤”ą„‰ राम ą¤®ą¤Øą„‹ą¤¹ą¤° ą¤²ą„‹ą¤¹ą¤æą¤Æą¤¾ अवध ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1884, 'https://ror.org/027b0sp52', 'no_lang_code', 1, 'https://ror.org/027b0sp52 Kema International (Netherlands)'),
(1885, 'https://ror.org/027dft319', 'en', 1, 'https://ror.org/027dft319 Bethesda Hospital East'),
(1886, 'https://ror.org/027evcf19', 'tr', 1, 'https://ror.org/027evcf19 Ɩzel Ortadoğu 19 Mayıs Hastanesi'),
(1887, 'https://ror.org/027f9rb06', 'en', 1, 'https://ror.org/027f9rb06 Shimonoseki City Hospital 下関市立市民病院'),
(1888, 'https://ror.org/027fvqp63', 'no_lang_code', 1, 'https://ror.org/027fvqp63 Emmes (United States)'),
(1889, 'https://ror.org/027j9rp38', 'en', 1, 'https://ror.org/027j9rp38 Inje University Sanggye Paik Hospital'),
(1890, 'https://ror.org/027mjht27', 'de', 1, 'https://ror.org/027mjht27 Institut Universitaire Kurt Bƶsch'),
(1891, 'https://ror.org/027nene90', 'no_lang_code', 1, 'https://ror.org/027nene90 Sugiyama Jogakuen University ę¤™å±±å„³å­¦åœ’å¤§å­¦'),
(1892, 'https://ror.org/027nk1z82', 'no_lang_code', 1, 'https://ror.org/027nk1z82 INRAD (United States)'),
(1893, 'https://ror.org/027pqks09', 'no_lang_code', 1, 'https://ror.org/027pqks09 S&N (Germany)'),
(1894, 'https://ror.org/027q9k466', 'en', 1, 'https://ror.org/027q9k466 Alexandra Hospital'),
(1895, 'https://ror.org/027rkpb34', 'en', 1, 'https://ror.org/027rkpb34 Salford Royal Hospital'),
(1896, 'https://ror.org/027rt1g28', 'no_lang_code', 1, 'https://ror.org/027rt1g28 Radiation Monitoring Devices (United States)'),
(1897, 'https://ror.org/027ry4q41', 'en', 1, 'https://ror.org/027ry4q41 Miller Children''s & Women''s Hospital'),
(1898, 'https://ror.org/027t58004', 'en', 1, 'https://ror.org/027t58004 Eastern Maine Medical Center'),
(1899, 'https://ror.org/027tvqf96', 'no_lang_code', 1, 'https://ror.org/027tvqf96 CAS Software (Germany)'),
(1900, 'https://ror.org/027v86y62', 'en', 1, 'https://ror.org/027v86y62 El Paso County Public Health'),
(1901, 'https://ror.org/027wyhf03', 'hr', 1, 'https://ror.org/027wyhf03 Klinički Bolnički Centar Rijeka'),
(1902, 'https://ror.org/027x3m696', 'en', 1, 'https://ror.org/027x3m696 Mother Teresa Hospital Qendra Spitalore Universitare Nene Tereza'),
(1903, 'https://ror.org/027xnsa83', 'no_lang_code', 1, 'https://ror.org/027xnsa83 Prapokklao Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøžąø£ąø°ąø›ąøą¹€ąøąø„ą¹‰ąø²'),
(1904, 'https://ror.org/027zf7h57', 'en', 1, 'https://ror.org/027zf7h57 Pusan National University Hospital'),
(1905, 'https://ror.org/02827ca86', 'en', 1, 'https://ror.org/02827ca86 Prince of Wales Hospital'),
(1906, 'https://ror.org/0282m7c06', 'no_lang_code', 1, 'https://ror.org/0282m7c06 University of Banja Luka Univerzitet u Banja Luci Универзитет у Š‘Š°ŃšŠ¾Ń˜ Š›ŃƒŃ†Šø'),
(1907, 'https://ror.org/0282qcz50', 'en', 1, 'https://ror.org/0282qcz50 Children''s Hospital of Orange County'),
(1908, 'https://ror.org/02834m470', 'en', 1, 'https://ror.org/02834m470 Chia Nan University of Pharmacy and Science'),
(1909, 'https://ror.org/0283k4z65', 'en', 1, 'https://ror.org/0283k4z65 Anne Arundel Medical Center'),
(1910, 'https://ror.org/02843s885', 'en', 1, 'https://ror.org/02843s885 Behavioral Tech Research, Inc.'),
(1911, 'https://ror.org/0284e2q78', 'en', 1, 'https://ror.org/0284e2q78 American Red Cross Croix-rouge amƩricaine Cruz Roja Americana'),
(1912, 'https://ror.org/0284gmm72', 'fr', 1, 'https://ror.org/0284gmm72 CitƩ Internationale Universitaire de Paris'),
(1913, 'https://ror.org/0285m5c69', 'nl', 1, 'https://ror.org/0285m5c69 De Wever-Ziekenhuis'),
(1914, 'https://ror.org/0285prp25', 'en', 1, 'https://ror.org/0285prp25 NTT Medical Center NTTę±ę—„ęœ¬é–¢ę±ē—…é™¢'),
(1915, 'https://ror.org/0286g6711', 'en', 1, 'https://ror.org/0286g6711 Shaoguan University 韶关学院'),
(1916, 'https://ror.org/0287e5797', 'no_lang_code', 1, 'https://ror.org/0287e5797 Siemens (United Kingdom)'),
(1917, 'https://ror.org/0287vk548', 'no_lang_code', 1, 'https://ror.org/0287vk548 Sequella (United States)'),
(1918, 'https://ror.org/0288jxv49', 'en', 1, 'https://ror.org/0288jxv49 Institute of Development Studies'),
(1919, 'https://ror.org/028d75n58', 'es', 1, 'https://ror.org/028d75n58 Hospital El Bierzo'),
(1920, 'https://ror.org/028f19s63', 'en', 1, 'https://ror.org/028f19s63 Dairy Farmers Of Canada'),
(1921, 'https://ror.org/028gzjv13', 'en', 1, 'https://ror.org/028gzjv13 Kaiser Permanente Center for Health Research'),
(1922, 'https://ror.org/028hv5492', 'en', 1, 'https://ror.org/028hv5492 University Hospital Leipzig UniversitƤtsklinikum Leipzig'),
(1923, 'https://ror.org/028jc0449', 'en', 1, 'https://ror.org/028jc0449 Austrian Research Promotion Agency Ɩsterreichische Forschungsfƶrderungsgesellschaft'),
(1924, 'https://ror.org/028jh2126', 'en', 1, 'https://ror.org/028jh2126 Al al-Bayt University Ų¬Ų§Ł…Ų¹Ų© آل Ų§Ł„ŲØŁŠŲŖ'),
(1925, 'https://ror.org/028jmfg90', 'it', 1, 'https://ror.org/028jmfg90 Ospedale Koelliker'),
(1926, 'https://ror.org/028jrgj19', 'en', 1, 'https://ror.org/028jrgj19 Multnomah County Health Department'),
(1927, 'https://ror.org/028nq5192', 'en', 1, 'https://ror.org/028nq5192 Affiliated Hospital of Jiangxi College of TCM ę±Ÿč„æäø­åŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(1928, 'https://ror.org/028rvnd71', 'en', 1, 'https://ror.org/028rvnd71 Temple University Hospital'),
(1929, 'https://ror.org/028sv9734', 'no_lang_code', 1, 'https://ror.org/028sv9734 PotashCorp (Canada)'),
(1930, 'https://ror.org/028v4fg64', 'no_lang_code', 1, 'https://ror.org/028v4fg64 Vattenfall (Sweden)'),
(1931, 'https://ror.org/028vv3s82', 'en', 1, 'https://ror.org/028vv3s82 East Surrey Hospital'),
(1932, 'https://ror.org/028vxwa22', 'en', 1, 'https://ror.org/028vxwa22 Kyoto Prefectural University of Medicine äŗ¬éƒ½åŗœē«‹åŒ»ē§‘å¤§å­¦'),
(1933, 'https://ror.org/028xtgx62', 'en', 1, 'https://ror.org/028xtgx62 Albert Schweitzer Hospital HƓpital albert-schweitzer'),
(1934, 'https://ror.org/02917wp91', 'en', 1, 'https://ror.org/02917wp91 Hospital of the University of Pennsylvania'),
(1935, 'https://ror.org/0291hsm26', 'en', 1, 'https://ror.org/0291hsm26 Asahikawa City Hospital åø‚ē«‹ę—­å·ē—…é™¢'),
(1936, 'https://ror.org/0292hc709', 'en', 1, 'https://ror.org/0292hc709 University of Santo Tomas Hospital'),
(1937, 'https://ror.org/0293qmt12', 'en', 1, 'https://ror.org/0293qmt12 NC Department of Health and Human Services'),
(1938, 'https://ror.org/02944xg79', 'en', 1, 'https://ror.org/02944xg79 Laconia Women''s Health Center'),
(1939, 'https://ror.org/02952et24', 'en', 1, 'https://ror.org/02952et24 St. Barnabas Hospital'),
(1940, 'https://ror.org/0296jvb66', 'no_lang_code', 1, 'https://ror.org/0296jvb66 WNET (United States)'),
(1941, 'https://ror.org/0299dqs22', 'en', 1, 'https://ror.org/0299dqs22 JA Toride Medical Center JAćØć‚Šć§ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1942, 'https://ror.org/0299ptp31', 'en', 1, 'https://ror.org/0299ptp31 Kaiser Permanente San Rafael Medical Center'),
(1943, 'https://ror.org/029bp0k25', 'en', 1, 'https://ror.org/029bp0k25 University of Central Arkansas'),
(1944, 'https://ror.org/029cz3039', 'en', 1, 'https://ror.org/029cz3039 Kijabe Hospital'),
(1945, 'https://ror.org/029dttz57', 'en', 1, 'https://ror.org/029dttz57 Resurrection Medical Center'),
(1946, 'https://ror.org/029es6637', 'en', 1, 'https://ror.org/029es6637 Alaska Native Tribal Health Consortium'),
(1947, 'https://ror.org/029f8s748', 'en', 1, 'https://ror.org/029f8s748 Canadian Science Centre for Human and Animal Health'),
(1948, 'https://ror.org/029gksw03', 'en', 1, 'https://ror.org/029gksw03 Semnan University دانؓگاه سمنان'),
(1949, 'https://ror.org/029gprt07', 'en', 1, 'https://ror.org/029gprt07 Dunedin Public Hospital'),
(1950, 'https://ror.org/029gr6k74', 'en', 1, 'https://ror.org/029gr6k74 Medical Society of Delaware'),
(1951, 'https://ror.org/029hept94', 'en', 1, 'https://ror.org/029hept94 Alexandra Hospital'),
(1952, 'https://ror.org/029hzjx43', 'en', 1, 'https://ror.org/029hzjx43 Rappaport Family Institute for Research in the Medical Sciences'),
(1953, 'https://ror.org/029jj9438', 'en', 1, 'https://ror.org/029jj9438 Troy University'),
(1954, 'https://ror.org/029njb796', 'en', 1, 'https://ror.org/029njb796 Perm State University ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1955, 'https://ror.org/029nzwk08', 'en', 1, 'https://ror.org/029nzwk08 Levanger Hospital Sykehuset Levanger'),
(1956, 'https://ror.org/029rx2040', 'en', 1, 'https://ror.org/029rx2040 Federal Medical Centre'),
(1957, 'https://ror.org/029s9j634', 'en', 1, 'https://ror.org/029s9j634 Cairns Hospital'),
(1958, 'https://ror.org/029t2gr02', 'no_lang_code', 1, 'https://ror.org/029t2gr02 Xenon Pharmaceuticals (Canada)'),
(1959, 'https://ror.org/029tkqm80', 'en', 1, 'https://ror.org/029tkqm80 St. Vincent''s University Hospital'),
(1960, 'https://ror.org/029tn5b56', 'en', 1, 'https://ror.org/029tn5b56 Regina General Hospital'),
(1961, 'https://ror.org/029wb5j17', 'en', 1, 'https://ror.org/029wb5j17 Our Lady of the Lake University'),
(1962, 'https://ror.org/029wq9x81', 'en', 1, 'https://ror.org/029wq9x81 Sichuan Cancer Hospital å››å·ēœč‚æē˜¤ē ”ē©¶ę‰€'),
(1963, 'https://ror.org/029x6kq07', 'en', 1, 'https://ror.org/029x6kq07 Regina Qu''Appelle Health Region'),
(1964, 'https://ror.org/02a1et264', 'en', 1, 'https://ror.org/02a1et264 Blackburn College'),
(1965, 'https://ror.org/02a2vbq68', 'en', 1, 'https://ror.org/02a2vbq68 Nagoya Memorial Hospital åå¤å±‹čØ˜åæµē—…é™¢'),
(1966, 'https://ror.org/02a37xs76', 'en', 1, 'https://ror.org/02a37xs76 Health Services Academy'),
(1967, 'https://ror.org/02a5q3y73', 'es', 1, 'https://ror.org/02a5q3y73 Hospital Universitario HM Madrid'),
(1968, 'https://ror.org/02a6g3h39', 'en', 1, 'https://ror.org/02a6g3h39 Hawler Medical University Ų¬Ų§Ł…Ų¹Ų© Ł‡ŁˆŁ„ŁŠŲ± Ų§Ł„Ų·ŲØŁŠŲ©'),
(1969, 'https://ror.org/02a7yfb86', 'pt', 1, 'https://ror.org/02a7yfb86 Pontifícia Universidade Católica de GoiÔs Université pontificale catholique de goiÔs'),
(1970, 'https://ror.org/02aa8kj12', 'en', 1, 'https://ror.org/02aa8kj12 The People''s Hospital of Guangxi Zhuang Autonomous Region å¹æč„æå£®ę—č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(1971, 'https://ror.org/02ab2dg68', 'en', 1, 'https://ror.org/02ab2dg68 Singleton Hospital Ysbyty Singleton'),
(1972, 'https://ror.org/02adcah05', 'no_lang_code', 1, 'https://ror.org/02adcah05 Doty Scientific (United States)'),
(1973, 'https://ror.org/02adg5v98', 'en', 1, 'https://ror.org/02adg5v98 Nagoya City University Hospital åå¤å±‹åø‚ē«‹å¤§å­¦ē—…é™¢'),
(1974, 'https://ror.org/02aea0q64', 'pt', 1, 'https://ror.org/02aea0q64 IADE Superior de Marketing e Publicidade'),
(1975, 'https://ror.org/02af4h012', 'en', 1, 'https://ror.org/02af4h012 Jadavpur University UniversitĆ© jadavpur ą¤Æą¤¾ą¤¦ą¤µą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ যাদবপুর ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ਜਾਦਵਪੁਰ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ જાદવપુર ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€ ą°œą°¾ą°¦ą°µą± ą°Ŗą±‚ą°°ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²œą²¾ą²¦ą²µą³ ಪುರ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(1976, 'https://ror.org/02afbf040', 'en', 1, 'https://ror.org/02afbf040 Karachi Medical and Dental College'),
(1977, 'https://ror.org/02ahxbh87', 'en', 1, 'https://ror.org/02ahxbh87 Biomedical Primate Research Centre'),
(1978, 'https://ror.org/02ajrkx50', 'en', 1, 'https://ror.org/02ajrkx50 St. Luke''s Hospital'),
(1979, 'https://ror.org/02aknh966', 'en', 1, 'https://ror.org/02aknh966 Emory University Hospital Midtown'),
(1980, 'https://ror.org/02amggm23', 'en', 1, 'https://ror.org/02amggm23 Trimbos Institute Trimbos instituut'),
(1981, 'https://ror.org/02ap76n24', 'en', 1, 'https://ror.org/02ap76n24 Egyptian Universities Network ؓبكة الجامعات Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(1982, 'https://ror.org/02as1sh25', 'no_lang_code', 1, 'https://ror.org/02as1sh25 Dassault Aviation (France)'),
(1983, 'https://ror.org/02aseym49', 'en', 1, 'https://ror.org/02aseym49 Australian Centre for Disease Preparedness'),
(1984, 'https://ror.org/02atdvd89', 'en', 1, 'https://ror.org/02atdvd89 Sarasota Memorial Hospital'),
(1985, 'https://ror.org/02atpex25', 'es', 1, 'https://ror.org/02atpex25 Hospital Rio Carrion'),
(1986, 'https://ror.org/02ax13658', 'no_lang_code', 1, 'https://ror.org/02ax13658 Barkatullah University'),
(1987, 'https://ror.org/02azxx136', 'en', 1, 'https://ror.org/02azxx136 University of Health Sciences Vientiane ąŗ”ąŗ°ąŗ«ąŗ²ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ą»„ąŗ„ ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ąŗŖąŗ²ąŗ” ąŗŖąŗøąŗ‚ąŗ°ąŗžąŗ²ąŗš'),
(1988, 'https://ror.org/02b48z609', 'en', 1, 'https://ror.org/02b48z609 University Cancer Center Hamburg UniversitƤres Cancer Center Hamburg'),
(1989, 'https://ror.org/02b50zn53', 'en', 1, 'https://ror.org/02b50zn53 UniversitƩ de wilberforce Wilberforce University'),
(1990, 'https://ror.org/02b68mf79', 'it', 1, 'https://ror.org/02b68mf79 Ospedale Santa Maria'),
(1991, 'https://ror.org/02b72da46', 'en', 1, 'https://ror.org/02b72da46 Abbasi Shaheed Hospital عباسی Ų“Ł‡ŁŠŲÆ ہسپتال'),
(1992, 'https://ror.org/02b730m35', 'pt', 1, 'https://ror.org/02b730m35 Instituto Superior de Ciências da Informação e da Administração'),
(1993, 'https://ror.org/02b8m7s43', 'en', 1, 'https://ror.org/02b8m7s43 American Anthropological Association'),
(1994, 'https://ror.org/02bcf5b42', 'no_lang_code', 1, 'https://ror.org/02bcf5b42 Foxconn (Japan)'),
(1995, 'https://ror.org/02beve479', 'en', 1, 'https://ror.org/02beve479 La Salle University Universidad de la Salle UniversitƩ la Salle'),
(1996, 'https://ror.org/02bfqd210', 'en', 1, 'https://ror.org/02bfqd210 Regions Hospital'),
(1997, 'https://ror.org/02bg8cb41', 'en', 1, 'https://ror.org/02bg8cb41 Alaska Native Medical Center'),
(1998, 'https://ror.org/02bhk3j29', 'es', 1, 'https://ror.org/02bhk3j29 Hospital Virgen de la Concha'),
(1999, 'https://ror.org/02bn0ev09', 'en', 1, 'https://ror.org/02bn0ev09 River Oaks Hospital'),
(2000, 'https://ror.org/02bn97g32', 'en', 1, 'https://ror.org/02bn97g32 National Defense Medical Center'),
(2001, 'https://ror.org/02bnz8785', 'en', 1, 'https://ror.org/02bnz8785 First Affiliated Hospital of Shantou University Medical College ę±•å¤“å¤§å­¦åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(2002, 'https://ror.org/02bqrry13', 'en', 1, 'https://ror.org/02bqrry13 Jerry L. Pettis Memorial VA Medical Center'),
(2003, 'https://ror.org/02bs0cv29', 'en', 1, 'https://ror.org/02bs0cv29 Oklahoma City University'),
(2004, 'https://ror.org/02bste653', 'it', 1, 'https://ror.org/02bste653 Ospedale ā€œM. Bufaliniā€ di Cesena'),
(2005, 'https://ror.org/02bwjrg36', 'en', 1, 'https://ror.org/02bwjrg36 Academia Nacional Superior de Orquestra'),
(2006, 'https://ror.org/02bxrp522', 'en', 1, 'https://ror.org/02bxrp522 Knoxville College'),
(2007, 'https://ror.org/02byvdx91', 'en', 1, 'https://ror.org/02byvdx91 Kobe Rosai Hospital ē„žęˆøåŠ“ē½ē—…é™¢'),
(2008, 'https://ror.org/02byvsq24', 'en', 1, 'https://ror.org/02byvsq24 Community Regional Medical Center'),
(2009, 'https://ror.org/02bz74262', 'no_lang_code', 1, 'https://ror.org/02bz74262 Hiram College'),
(2010, 'https://ror.org/02bz7vk34', 'en', 1, 'https://ror.org/02bz7vk34 Kaiser Permanente Redwood City Medical Center'),
(2011, 'https://ror.org/02bzkv281', 'en', 1, 'https://ror.org/02bzkv281 Chengde Medical University ę‰æå¾·åŒ»å­¦é™¢'),
(2012, 'https://ror.org/02c1c4p76', 'en', 1, 'https://ror.org/02c1c4p76 Magee Rehabilitation Hospital'),
(2013, 'https://ror.org/02c1pgm26', 'en', 1, 'https://ror.org/02c1pgm26 Royal Inland Hospital'),
(2014, 'https://ror.org/02c2f8975', 'en', 1, 'https://ror.org/02c2f8975 University of Ulsan ģšøģ‚°ėŒ€ķ•™źµ'),
(2015, 'https://ror.org/02c8hpe74', 'en', 1, 'https://ror.org/02c8hpe74 James J. Peters VA Medical Center'),
(2016, 'https://ror.org/02c8npj93', 'en', 1, 'https://ror.org/02c8npj93 General-Maternity District Hospital Helena Venizelou Ī ĪµĻĪ¹Ļ†ĪµĻĪµĪ¹Ī±ĪŗĻŒ Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ - ĪœĪ±Ī¹ĪµĻ…Ļ„Ī®ĻĪ¹Īæ - "Ī•Ī›Ī•ĪĪ‘ Ī’Ī•ĪĪ™Ī–Ī•Ī›ĪŸĪ„"'),
(2017, 'https://ror.org/02c97ng92', 'no_lang_code', 1, 'https://ror.org/02c97ng92 ArcelorMittal (Canada)'),
(2018, 'https://ror.org/02caez234', 'en', 1, 'https://ror.org/02caez234 Fuzhou Dermatosis Prevention Hospital ē¦å·žåø‚ēš®č‚¤ē—…é˜²ę²»é™¢'),
(2019, 'https://ror.org/02cbk9w51', 'es', 1, 'https://ror.org/02cbk9w51 Hospital Nacional Dos de Mayo'),
(2020, 'https://ror.org/02cc58y38', 'fr', 1, 'https://ror.org/02cc58y38 HƓpital Debrousse'),
(2021, 'https://ror.org/02ccwf677', 'no_lang_code', 1, 'https://ror.org/02ccwf677 Proportional Technologies'),
(2022, 'https://ror.org/02cetwy62', 'en', 1, 'https://ror.org/02cetwy62 Prince Charles Hospital'),
(2023, 'https://ror.org/02cevbn07', 'en', 1, 'https://ror.org/02cevbn07 Mississippi State Medical Association'),
(2024, 'https://ror.org/02cg59151', 'pt', 1, 'https://ror.org/02cg59151 Hospital Pulido Valente'),
(2025, 'https://ror.org/02cjhb354', 'it', 1, 'https://ror.org/02cjhb354 Azienda Ospedaliera Santa Maria Degli Angeli'),
(2026, 'https://ror.org/02ckh3s34', 'da', 1, 'https://ror.org/02ckh3s34 Herning Regional Hospital Regionshospitalet Herning'),
(2027, 'https://ror.org/02cm2rk35', 'en', 1, 'https://ror.org/02cm2rk35 Raritan Bay Medical Center'),
(2028, 'https://ror.org/02cpwdj94', 'en', 1, 'https://ror.org/02cpwdj94 Kerala Institute of Medical Sciences'),
(2029, 'https://ror.org/02cpzy455', 'en', 1, 'https://ror.org/02cpzy455 424 General Military Hospital 424 Ī“ĪµĪ½Ī¹ĪŗĻŒ Ī£Ļ„ĻĪ±Ļ„Ī¹Ļ‰Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(2030, 'https://ror.org/02cq7de70', 'en', 1, 'https://ror.org/02cq7de70 Counties Manukau District Health Board'),
(2031, 'https://ror.org/02cqgeg62', 'no_lang_code', 1, 'https://ror.org/02cqgeg62 INRA Transfert (France)'),
(2032, 'https://ror.org/02cqyyd50', 'en', 1, 'https://ror.org/02cqyyd50 Nottingham General Hospital'),
(2033, 'https://ror.org/02crz6e12', 'en', 1, 'https://ror.org/02crz6e12 Singapore Eye Research Institute'),
(2034, 'https://ror.org/02csf4f34', 'en', 1, 'https://ror.org/02csf4f34 Busan Medical Center ė¶€ģ‚°ģ˜ė£Œģ›'),
(2035, 'https://ror.org/02ct12k14', 'no_lang_code', 1, 'https://ror.org/02ct12k14 Network Rail'),
(2036, 'https://ror.org/02ct41q97', 'en', 1, 'https://ror.org/02ct41q97 John Brown University'),
(2037, 'https://ror.org/02cv4ah81', 'en', 1, 'https://ror.org/02cv4ah81 Ishikawa Prefectural Central Hospital ēŸ³å·ēœŒē«‹äø­å¤®ē—…é™¢'),
(2038, 'https://ror.org/02cy9a842', 'en', 1, 'https://ror.org/02cy9a842 Carmel Medical Center'),
(2039, 'https://ror.org/02d07gm56', 'en', 1, 'https://ror.org/02d07gm56 SUNY Korea ķ•œźµ­ė‰“ģš•ģ£¼ė¦½ėŒ€ķ•™źµ'),
(2040, 'https://ror.org/02d09a271', 'pt', 1, 'https://ror.org/02d09a271 Positive University Universidade Positivo'),
(2041, 'https://ror.org/02d0kps43', 'de', 1, 'https://ror.org/02d0kps43 UMIT - Private Universität für Gesundheitswissenschaften, Medizinische Informatik und Technik'),
(2042, 'https://ror.org/02d0tyt78', 'en', 1, 'https://ror.org/02d0tyt78 Silpakorn University ดหาวณทยาคัยศณคปากร'),
(2043, 'https://ror.org/02d1ved90', 'tr', 1, 'https://ror.org/02d1ved90 Dokuz Eylül Üniversitesi Hastanesi'),
(2044, 'https://ror.org/02d3bpj67', 'no_lang_code', 1, 'https://ror.org/02d3bpj67 Medical Physics Consultants'),
(2045, 'https://ror.org/02d3k5845', 'en', 1, 'https://ror.org/02d3k5845 St Francis Medical Center'),
(2046, 'https://ror.org/02d439m40', 'en', 1, 'https://ror.org/02d439m40 University Mental Health Research Institute'),
(2047, 'https://ror.org/02d57ed54', 'en', 1, 'https://ror.org/02d57ed54 Sarojini Naidu Medical College ą¤øą¤°ą„‹ą¤œą¤æą¤Øą„€ ą¤Øą¤¾ą¤Æą¤”ą„‚ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2048, 'https://ror.org/02d71t021', 'it', 1, 'https://ror.org/02d71t021 Consorzio Milano Ricerche'),
(2049, 'https://ror.org/02d9k9g58', 'en', 1, 'https://ror.org/02d9k9g58 University of South Carolina Aiken'),
(2050, 'https://ror.org/02dc47z81', 'pt', 1, 'https://ror.org/02dc47z81 Hospital São Teotónio'),
(2051, 'https://ror.org/02dcp1550', 'en', 1, 'https://ror.org/02dcp1550 Central Texas Veterans Health Care System'),
(2052, 'https://ror.org/02df8t483', 'no_lang_code', 1, 'https://ror.org/02df8t483 Bridgepoint (United Kingdom)'),
(2053, 'https://ror.org/02dgbcj80', 'en', 1, 'https://ror.org/02dgbcj80 Southwest Baptist University'),
(2054, 'https://ror.org/02dgmb809', 'no_lang_code', 1, 'https://ror.org/02dgmb809 Numerical Mechanics Applications International (Belgium)'),
(2055, 'https://ror.org/02dktng58', 'en', 1, 'https://ror.org/02dktng58 Institute for Scientific Analysis'),
(2056, 'https://ror.org/02dmc4h32', 'en', 1, 'https://ror.org/02dmc4h32 Providence St. Vincent Medical Center'),
(2057, 'https://ror.org/02dpa2319', 'en', 1, 'https://ror.org/02dpa2319 Cornwall Regional Hospital'),
(2058, 'https://ror.org/02dqqj223', 'en', 1, 'https://ror.org/02dqqj223 East Kent Hospitals University NHS Foundation Trust'),
(2059, 'https://ror.org/02dr19631', 'en', 1, 'https://ror.org/02dr19631 Medical Radiological Research Center ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ раГиологический Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(2060, 'https://ror.org/02dvs1389', 'en', 1, 'https://ror.org/02dvs1389 Laiko General Hospital of Athens'),
(2061, 'https://ror.org/02e0bfh77', 'no_lang_code', 1, 'https://ror.org/02e0bfh77 Bio Chem Analysis Corporation (United States)'),
(2062, 'https://ror.org/02e16g702', 'en', 1, 'https://ror.org/02e16g702 Hokkaido University åŒ—ęµ·é“å¤§å­¦'),
(2063, 'https://ror.org/02e1cpg76', 'en', 1, 'https://ror.org/02e1cpg76 Hauptman-Woodward Medical Research Institute'),
(2064, 'https://ror.org/02e1t6r96', 'en', 1, 'https://ror.org/02e1t6r96 Maryland Department of Health'),
(2065, 'https://ror.org/02e22bh87', 'en', 1, 'https://ror.org/02e22bh87 Western Infirmary'),
(2066, 'https://ror.org/02e2dtd78', 'en', 1, 'https://ror.org/02e2dtd78 Calcutta National Medical College and Hospital কলিকাতা ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦†ą¦Æą¦¼ą§ą¦°ą§ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦®ą¦Øą§ą¦¦ą¦æą¦° ą°œą°¾ą°¤ą±€ą°Æ ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(2067, 'https://ror.org/02e3mzq40', 'en', 1, 'https://ror.org/02e3mzq40 Middlesex London Health Unit'),
(2068, 'https://ror.org/02e5pan03', 'en', 1, 'https://ror.org/02e5pan03 Charlton Memorial Hospital'),
(2069, 'https://ror.org/02e8hzf44', 'en', 1, 'https://ror.org/02e8hzf44 Helsinki University Hospital'),
(2070, 'https://ror.org/02e9zc863', 'en', 1, 'https://ror.org/02e9zc863 Kwangwoon University ź“‘ģš“ėŒ€ķ•™źµ'),
(2071, 'https://ror.org/02eb0rk31', 'en', 1, 'https://ror.org/02eb0rk31 Association for the Advancement of Artificial Intelligence'),
(2072, 'https://ror.org/02egdz393', 'en', 1, 'https://ror.org/02egdz393 Rocky Mountain University of Health Professions'),
(2073, 'https://ror.org/02ejsvn42', 'en', 1, 'https://ror.org/02ejsvn42 ComitƩ EuropƩen de Normalisation European Committee for Standardization'),
(2074, 'https://ror.org/02emy8e21', 'en', 1, 'https://ror.org/02emy8e21 Kings County Hospital Center'),
(2075, 'https://ror.org/02eqchk86', 'en', 1, 'https://ror.org/02eqchk86 Daejeon University ėŒ€ģ „ėŒ€ķ•™źµ'),
(2076, 'https://ror.org/02erhaz63', 'en', 1, 'https://ror.org/02erhaz63 Lanzhou University Second Hospital'),
(2077, 'https://ror.org/02etexs15', 'en', 1, 'https://ror.org/02etexs15 Children''s Hospital of New Orleans'),
(2078, 'https://ror.org/02evem426', 'pt', 1, 'https://ror.org/02evem426 Escola Superior de Enfermagem de Santa Maria'),
(2079, 'https://ror.org/02ew45630', 'en', 1, 'https://ror.org/02ew45630 Apollo Hospitals'),
(2080, 'https://ror.org/02eyff421', 'en', 1, 'https://ror.org/02eyff421 Ministry of Health'),
(2081, 'https://ror.org/02eypkr92', 'en', 1, 'https://ror.org/02eypkr92 Northwest Hospital and Medical Center'),
(2082, 'https://ror.org/02f2vsx71', 'no_lang_code', 1, 'https://ror.org/02f2vsx71 Hungkuang University'),
(2083, 'https://ror.org/02f30ff69', 'es', 1, 'https://ror.org/02f30ff69 Hospital General Universitario de Ciudad Real'),
(2084, 'https://ror.org/02f38b560', 'pt', 1, 'https://ror.org/02f38b560 Hospital SĆ£o Rafael'),
(2085, 'https://ror.org/02f3b8e29', 'en', 1, 'https://ror.org/02f3b8e29 Alexandra Hospital äŗšåŽ†å±±å¤§åŒ»é™¢'),
(2086, 'https://ror.org/02f4tsf92', 'en', 1, 'https://ror.org/02f4tsf92 MRC Centre for Reproductive Health'),
(2087, 'https://ror.org/02f6ghw27', 'fr', 1, 'https://ror.org/02f6ghw27 HƓpital Charles-Nicolle'),
(2088, 'https://ror.org/02f9avj37', 'en', 1, 'https://ror.org/02f9avj37 Hanyang University Guri Hospital ķ•œģ–‘ėŒ€ķ•™źµźµ¬ė¦¬ė³‘ģ›'),
(2089, 'https://ror.org/02f9det96', 'en', 1, 'https://ror.org/02f9det96 University of Hildesheim UniversitƤt Hildesheim'),
(2090, 'https://ror.org/02fjqfr36', 'en', 1, 'https://ror.org/02fjqfr36 Wildlife Conservation Society Indonesia'),
(2091, 'https://ror.org/02fjy3w42', 'en', 1, 'https://ror.org/02fjy3w42 Ivanovo State University of Chemistry and Technology Ивановский Š³Š¾ŃŃƒŠ“арственный химико-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2092, 'https://ror.org/02fkdpc07', 'fi', 1, 'https://ror.org/02fkdpc07 Kanta-HƤmeen Keskussairaala'),
(2093, 'https://ror.org/02fmkev06', 'en', 1, 'https://ror.org/02fmkev06 Building Research Establishment'),
(2094, 'https://ror.org/02fnpv153', 'en', 1, 'https://ror.org/02fnpv153 American Association For Cancer Research'),
(2095, 'https://ror.org/02fppms28', 'en', 1, 'https://ror.org/02fppms28 Missouri Department of Mental Health'),
(2096, 'https://ror.org/02fsmcz03', 'en', 1, 'https://ror.org/02fsmcz03 First Teaching Hospital of Tianjin University of Traditional Chinese Medicine äø­å›½ä¼ ē»ŸåŒ»čÆēš„å¤©ę“„å¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(2097, 'https://ror.org/02fsxgh46', 'fr', 1, 'https://ror.org/02fsxgh46 HƓpital l''Archet'),
(2098, 'https://ror.org/02fv78a45', 'en', 1, 'https://ror.org/02fv78a45 Mother Teresa Women''s University ą®…ą®©ąÆą®©ąÆˆ ą®¤ąÆ†ą®°ą®šą®¾ ą®®ą®•ą®³ą®æą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2099, 'https://ror.org/02fv7x872', 'en', 1, 'https://ror.org/02fv7x872 Deenanath Mangeshkar Hospital and Research Center ą¤¦ą„€ą¤Øą¤¾ą¤Øą¤¾ą¤„ ą¤®ą¤‚ą¤—ą„‡ą¤¶ą¤•ą¤° ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(2100, 'https://ror.org/02fv8hj62', 'es', 1, 'https://ror.org/02fv8hj62 Tecnalia'),
(2101, 'https://ror.org/02fvvnh95', 'en', 1, 'https://ror.org/02fvvnh95 Spenshult Hospital'),
(2102, 'https://ror.org/02fw4cc98', 'en', 1, 'https://ror.org/02fw4cc98 Canadian Agency for Drugs and Technologies in Health'),
(2103, 'https://ror.org/02fw9q305', 'en', 1, 'https://ror.org/02fw9q305 Norwich University of the Arts'),
(2104, 'https://ror.org/02fwb6r86', 'no_lang_code', 1, 'https://ror.org/02fwb6r86 Intelligent Automation (United States)'),
(2105, 'https://ror.org/02fxsj090', 'en', 1, 'https://ror.org/02fxsj090 Kaiser Permanente San Francisco Medical Center'),
(2106, 'https://ror.org/02fyxjb45', 'en', 1, 'https://ror.org/02fyxjb45 Sri Krishnadevaraya University ą°¶ą±ą°°ą±€ ą°•ą±ƒą°·ą±ą°£ą°¦ą±‡ą°µą°°ą°¾ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(2107, 'https://ror.org/02fze0e77', 'en', 1, 'https://ror.org/02fze0e77 Star General Hospital ę˜Ÿē·åˆē—…é™¢'),
(2108, 'https://ror.org/02fzxed89', 'en', 1, 'https://ror.org/02fzxed89 American Statistical Association'),
(2109, 'https://ror.org/02g01ht84', 'en', 1, 'https://ror.org/02g01ht84 First Affiliated Hospital of Kunming Medical University'),
(2110, 'https://ror.org/02g02rq35', 'en', 1, 'https://ror.org/02g02rq35 Centers for Medicare and Medicaid Services'),
(2111, 'https://ror.org/02g1bg244', 'en', 1, 'https://ror.org/02g1bg244 Cheongju St. Mary''s Hospital 청주 성모 병원'),
(2112, 'https://ror.org/02g2pz956', 'en', 1, 'https://ror.org/02g2pz956 Amager Hospital'),
(2113, 'https://ror.org/02g397b52', 'en', 1, 'https://ror.org/02g397b52 Shriners Hospitals for Children - Boston'),
(2114, 'https://ror.org/02g48bh60', 'en', 1, 'https://ror.org/02g48bh60 Chris Hani Baragwanath Hospital'),
(2115, 'https://ror.org/02g6d4t03', 'de', 1, 'https://ror.org/02g6d4t03 Gesellschaft Fur Mathematik Und Datenverarbeitung'),
(2116, 'https://ror.org/02g8ene02', 'en', 1, 'https://ror.org/02g8ene02 Federal Medical Centre'),
(2117, 'https://ror.org/02gaqn537', 'en', 1, 'https://ror.org/02gaqn537 Royal Cornhill Hospital'),
(2118, 'https://ror.org/02gar4w80', 'en', 1, 'https://ror.org/02gar4w80 University Library in Bratislava UniverzitnÔ knižnica v Bratislave'),
(2119, 'https://ror.org/02gcp3110', 'en', 1, 'https://ror.org/02gcp3110 Charing Cross Hospital'),
(2120, 'https://ror.org/02ge60j37', 'en', 1, 'https://ror.org/02ge60j37 Scott & White Memorial Hospital'),
(2121, 'https://ror.org/02gen2282', 'pt', 1, 'https://ror.org/02gen2282 Federal University from Jequitinhonha and Mucuri''s Valleys Universidade Federal dos Vales do Jequitinhonha e Mucuri');
INSERT INTO `rors` VALUES
(2122, 'https://ror.org/02gj19t78', 'en', 1, 'https://ror.org/02gj19t78 Humber River Regional Hospital'),
(2123, 'https://ror.org/02gj58768', 'en', 1, 'https://ror.org/02gj58768 Apollo Gleneagles Hospitals'),
(2124, 'https://ror.org/02gjsze31', 'en', 1, 'https://ror.org/02gjsze31 St. Luke''s Magic Valley Medical Center'),
(2125, 'https://ror.org/02gpdzc63', 'no_lang_code', 1, 'https://ror.org/02gpdzc63 Labor (Italy)'),
(2126, 'https://ror.org/02grymn95', 'en', 1, 'https://ror.org/02grymn95 University of Arkansas – Fort Smith'),
(2127, 'https://ror.org/02gw4vz38', 'en', 1, 'https://ror.org/02gw4vz38 Missouri Institute of Mental Health'),
(2128, 'https://ror.org/02gxymm77', 'en', 1, 'https://ror.org/02gxymm77 Nakamura Memorial Hospital äø­ę‘čØ˜åæµē—…é™¢'),
(2129, 'https://ror.org/02gy6qp39', 'en', 1, 'https://ror.org/02gy6qp39 Allegheny General Hospital'),
(2130, 'https://ror.org/02gzbg991', 'en', 1, 'https://ror.org/02gzbg991 Seattle Pacific University'),
(2131, 'https://ror.org/02gzfb532', 'en', 1, 'https://ror.org/02gzfb532 Taipei City Hospital č‡ŗåŒ—åø‚ę”æåŗœ'),
(2132, 'https://ror.org/02gzhbc75', 'en', 1, 'https://ror.org/02gzhbc75 Matsudo City Hospital ę¾ęˆøåø‚ē«‹ē—…é™¢'),
(2133, 'https://ror.org/02h1b1x27', 'en', 1, 'https://ror.org/02h1b1x27 Universidad de Los Andes University of the Andes'),
(2134, 'https://ror.org/02h1scg40', 'en', 1, 'https://ror.org/02h1scg40 Maternal and Child Health Care Hospital of Bao''an å®å®‰åŒŗå¦‡å¹¼äæå„é™¢'),
(2135, 'https://ror.org/02h2j1586', 'en', 1, 'https://ror.org/02h2j1586 Beijing Anzhen Hospital åŒ—äŗ¬åø‚åæƒč‚ŗč”€ē®”ē–¾ē—…ē ”ē©¶ę‰€'),
(2136, 'https://ror.org/02h2qwk37', 'en', 1, 'https://ror.org/02h2qwk37 St Vincent Medical Center'),
(2137, 'https://ror.org/02h63je06', 'en', 1, 'https://ror.org/02h63je06 Quality Education for Minorities Network'),
(2138, 'https://ror.org/02h6j4611', 'en', 1, 'https://ror.org/02h6j4611 Princess Margaret Hospital'),
(2139, 'https://ror.org/02h7s7a86', 'en', 1, 'https://ror.org/02h7s7a86 Allen University'),
(2140, 'https://ror.org/02h8a1848', 'en', 1, 'https://ror.org/02h8a1848 Ningxia Medical University å®å¤åŒ»ē§‘å¤§å­¦'),
(2141, 'https://ror.org/02h905004', 'en', 1, 'https://ror.org/02h905004 Christiana Care Health System'),
(2142, 'https://ror.org/02ha38c24', 'en', 1, 'https://ror.org/02ha38c24 San Joaquin General Hospital'),
(2143, 'https://ror.org/02hbhxa68', 'no_lang_code', 1, 'https://ror.org/02hbhxa68 Airbus (United Kingdom)'),
(2144, 'https://ror.org/02hbrab76', 'es', 1, 'https://ror.org/02hbrab76 Hospital de Clƭnicas "JosƩ de San Martƭn", Hospital de Clƭnicas JosƩ de San Martƭn'),
(2145, 'https://ror.org/02he2nc27', 'en', 1, 'https://ror.org/02he2nc27 National Research Tomsk State University ŠŠ°Ń†ŠøŠ¾Š½Š°ĢŠ»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµĢŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ То́мский Š³Š¾ŃŃƒŠ“а́рственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚'),
(2146, 'https://ror.org/02hfws565', 'en', 1, 'https://ror.org/02hfws565 Northwick Park Institute for Medical Research'),
(2147, 'https://ror.org/02hjc7j46', 'en', 1, 'https://ror.org/02hjc7j46 Oogziekenhuis Rotterdam Rotterdam Eye Hospital'),
(2148, 'https://ror.org/02hm3sf87', 'no_lang_code', 1, 'https://ror.org/02hm3sf87 European Institute For Research and Strategic Studies In Telecommunications'),
(2149, 'https://ror.org/02hngyx35', 'en', 1, 'https://ror.org/02hngyx35 Rocky Mountain Hospital for Children'),
(2150, 'https://ror.org/02hp4jd32', 'en', 1, 'https://ror.org/02hp4jd32 Summa Barberton Hospital'),
(2151, 'https://ror.org/02hpatg29', 'en', 1, 'https://ror.org/02hpatg29 Fukuoka University Tsukushi Hospital ē¦å²”å¤§å­¦ē­‘ē“«ē—…é™¢'),
(2152, 'https://ror.org/02hsexy86', 'en', 1, 'https://ror.org/02hsexy86 Riverside Methodist Hospital'),
(2153, 'https://ror.org/02hsneh43', 'en', 1, 'https://ror.org/02hsneh43 Shizuoka City Hospital é™å²”åø‚ē«‹é™å²”ē—…é™¢'),
(2154, 'https://ror.org/02hsq0e05', 'no_lang_code', 1, 'https://ror.org/02hsq0e05 EIC Laboratories'),
(2155, 'https://ror.org/02hvsf428', 'nl', 1, 'https://ror.org/02hvsf428 Ziekenhuis Bethesda'),
(2156, 'https://ror.org/02hw5fp67', 'en', 1, 'https://ror.org/02hw5fp67 National Institute for Environmental Studies å›½ē«‹ē’°å¢ƒē ”ē©¶ę‰€'),
(2157, 'https://ror.org/02hxrag63', 'en', 1, 'https://ror.org/02hxrag63 Memorial Medical Center'),
(2158, 'https://ror.org/02hxrrn62', 'en', 1, 'https://ror.org/02hxrrn62 Interbalkan Medical Center Ī™Ī±Ļ„ĻĪ¹ĪŗĻŒ Ī”Ī¹Ī±Ī²Ī±Ī»ĪŗĪ±Ī½Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ'),
(2159, 'https://ror.org/02hy2mb20', 'no_lang_code', 1, 'https://ror.org/02hy2mb20 De Gezondheidsdienst voor Dieren'),
(2160, 'https://ror.org/02hyxwa22', 'en', 1, 'https://ror.org/02hyxwa22 Center for Urban Population Health'),
(2161, 'https://ror.org/02j3enb93', 'no_lang_code', 1, 'https://ror.org/02j3enb93 ArcelorMittal (Spain)'),
(2162, 'https://ror.org/02j3zn476', 'en', 1, 'https://ror.org/02j3zn476 Grand River Hospital'),
(2163, 'https://ror.org/02j4j5k41', 'en', 1, 'https://ror.org/02j4j5k41 John Muir Health'),
(2164, 'https://ror.org/02j7h9426', 'no_lang_code', 1, 'https://ror.org/02j7h9426 Komagino Hospital é§’ęœØé‡Žē—…é™¢'),
(2165, 'https://ror.org/02j8pe645', 'en', 1, 'https://ror.org/02j8pe645 National Academy of Sciences of Belarus ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø ŠŠ°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń навук Š‘ŠµŠ»Š°Ń€ŃƒŃŃ–'),
(2166, 'https://ror.org/02jagkr09', 'en', 1, 'https://ror.org/02jagkr09 Gulbarga University ą¤—ą„ą¤²ą¤¬ą¤°ą„ą¤—ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®•ąÆą®²ąÆą®Ŗą®°ąÆą®•ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°—ą±ą°²ą±ą°¬ą°°ą±ą°—ą°¾ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²—ą³ą²²ą³ą²¬ą²°ą³ą²—ą²¾ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(2167, 'https://ror.org/02jb3jv25', 'en', 1, 'https://ror.org/02jb3jv25 Yuanpei University å…ƒåŸ¹é†«äŗ‹ē§‘ęŠ€å¤§å­ø'),
(2168, 'https://ror.org/02jb7ng92', 'en', 1, 'https://ror.org/02jb7ng92 Moorgreen Hospital'),
(2169, 'https://ror.org/02jbvhm37', 'en', 1, 'https://ror.org/02jbvhm37 Southeastern Universities Research Association'),
(2170, 'https://ror.org/02jbzrw51', 'en', 1, 'https://ror.org/02jbzrw51 Gallup Indian Medical Center'),
(2171, 'https://ror.org/02jed3n25', 'en', 1, 'https://ror.org/02jed3n25 Sacred Heart Hospital'),
(2172, 'https://ror.org/02jeykk09', 'en', 1, 'https://ror.org/02jeykk09 Imam Khomeini International University دانؓگاه ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ Ų§Ł…Ų§Ł… Ų®Ł…ŪŒŁ†ŪŒ'),
(2173, 'https://ror.org/02jj7t426', 'en', 1, 'https://ror.org/02jj7t426 Dade County Medical Examiner Department'),
(2174, 'https://ror.org/02jj9nh46', 'no_lang_code', 1, 'https://ror.org/02jj9nh46 Artron Bioresearch (Canada)'),
(2175, 'https://ror.org/02jk5qe80', 'en', 1, 'https://ror.org/02jk5qe80 Aalborg Universitetshospital Aalborg University Hospital'),
(2176, 'https://ror.org/02jmkw435', 'en', 1, 'https://ror.org/02jmkw435 Saratov State Medical University Даратовский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2177, 'https://ror.org/02jn27q49', 'en', 1, 'https://ror.org/02jn27q49 Riverview Psychiatric Center'),
(2178, 'https://ror.org/02jqapy19', 'en', 1, 'https://ror.org/02jqapy19 Qingdao Municipal Hospital'),
(2179, 'https://ror.org/02jqn4a25', 'en', 1, 'https://ror.org/02jqn4a25 Ursinus College'),
(2180, 'https://ror.org/02jqtg033', 'en', 1, 'https://ror.org/02jqtg033 Institute for Energy Technology'),
(2181, 'https://ror.org/02jr6tp70', 'en', 1, 'https://ror.org/02jr6tp70 Azienda Ospedaliera Universitaria Federico II Federico II University Hospital'),
(2182, 'https://ror.org/02js37d36', 'en', 1, 'https://ror.org/02js37d36 IBM Research - Zurich'),
(2183, 'https://ror.org/02jv06474', 'en', 1, 'https://ror.org/02jv06474 Hanseo University'),
(2184, 'https://ror.org/02jvh3a15', 'en', 1, 'https://ror.org/02jvh3a15 Diakonhjemmet Hospital'),
(2185, 'https://ror.org/02jw82j47', 'en', 1, 'https://ror.org/02jw82j47 Kaiser Permanente Fontana Medical Center'),
(2186, 'https://ror.org/02jwg2f21', 'en', 1, 'https://ror.org/02jwg2f21 Hammerfest Hospital Hammerfest Sykehus'),
(2187, 'https://ror.org/02jwvs344', 'en', 1, 'https://ror.org/02jwvs344 Port Moresby General Hospital'),
(2188, 'https://ror.org/02jww9n06', 'en', 1, 'https://ror.org/02jww9n06 Matsuyama Red Cross Hospital ę¾å±±čµ¤åå­—ē—…é™¢'),
(2189, 'https://ror.org/02jxw8995', 'no_lang_code', 1, 'https://ror.org/02jxw8995 Goroka Base Hospital'),
(2190, 'https://ror.org/02jy1hx10', 'en', 1, 'https://ror.org/02jy1hx10 Makati Medical Center'),
(2191, 'https://ror.org/02jygs973', 'en', 1, 'https://ror.org/02jygs973 Changes in Health Care Financing & Organization'),
(2192, 'https://ror.org/02jz99c72', 'en', 1, 'https://ror.org/02jz99c72 Atlantic Health System'),
(2193, 'https://ror.org/02jzt8c33', 'en', 1, 'https://ror.org/02jzt8c33 Children''s Hospital of Winnipeg'),
(2194, 'https://ror.org/02k0t9a94', 'no_lang_code', 1, 'https://ror.org/02k0t9a94 Sankara Nethralaya'),
(2195, 'https://ror.org/02k2v9264', 'es', 1, 'https://ror.org/02k2v9264 Hospital Luis Calvo Mackenna'),
(2196, 'https://ror.org/02k46bn27', 'en', 1, 'https://ror.org/02k46bn27 Pfeiffer University'),
(2197, 'https://ror.org/02k4h0b10', 'en', 1, 'https://ror.org/02k4h0b10 Rajshahi Medical College ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(2198, 'https://ror.org/02k4w3g59', 'en', 1, 'https://ror.org/02k4w3g59 Helen Hayes Hospital'),
(2199, 'https://ror.org/02k57ty04', 'de', 1, 'https://ror.org/02k57ty04 Klinikum Lüneburg'),
(2200, 'https://ror.org/02k61s246', 'en', 1, 'https://ror.org/02k61s246 American Society for Cell Biology'),
(2201, 'https://ror.org/02k72jz38', 'no_lang_code', 1, 'https://ror.org/02k72jz38 TagCyx Biotechnologies (Japan)'),
(2202, 'https://ror.org/02k9jrs03', 'en', 1, 'https://ror.org/02k9jrs03 University Children’s Hospital Bern UniversitƤtskinderklinik Bern'),
(2203, 'https://ror.org/02kckde25', 'en', 1, 'https://ror.org/02kckde25 Earl K. Long Medical Center'),
(2204, 'https://ror.org/02kcpr174', 'en', 1, 'https://ror.org/02kcpr174 MRC Human Immunology Unit'),
(2205, 'https://ror.org/02ke5vh78', 'en', 1, 'https://ror.org/02ke5vh78 Tianjin Central Hospital of Gynecology Obstetrics å¤©ę“„åø‚äø­åæƒå¦‡äŗ§ē§‘åŒ»é™¢'),
(2206, 'https://ror.org/02kexp407', 'en', 1, 'https://ror.org/02kexp407 Miami Valley Hospital'),
(2207, 'https://ror.org/02kf0fj54', 'no_lang_code', 1, 'https://ror.org/02kf0fj54 AnyGen (South Korea)'),
(2208, 'https://ror.org/02kg81z20', 'en', 1, 'https://ror.org/02kg81z20 Universidad de La Verne University of La Verne'),
(2209, 'https://ror.org/02khfkr46', 'en', 1, 'https://ror.org/02khfkr46 Institute of Electron Technology'),
(2210, 'https://ror.org/02khzxe16', 'pt', 1, 'https://ror.org/02khzxe16 Instituto Superior de Comunicação Empresarial'),
(2211, 'https://ror.org/02kjq0603', 'en', 1, 'https://ror.org/02kjq0603 American Bar Foundation'),
(2212, 'https://ror.org/02kk6xv61', 'en', 1, 'https://ror.org/02kk6xv61 Creative England'),
(2213, 'https://ror.org/02kk9ec90', 'en', 1, 'https://ror.org/02kk9ec90 Organization For Tropical Studies'),
(2214, 'https://ror.org/02kswma64', 'it', 1, 'https://ror.org/02kswma64 Istituto Nazionale per la Fisica della Materia'),
(2215, 'https://ror.org/02kta5139', 'es', 1, 'https://ror.org/02kta5139 Metropolitan Autonomous University Universidad Autónoma Metropolitana'),
(2216, 'https://ror.org/02kwcpg86', 'en', 1, 'https://ror.org/02kwcpg86 Karlstad Central Hospital'),
(2217, 'https://ror.org/02kxeh053', 'no_lang_code', 1, 'https://ror.org/02kxeh053 Veria General Hospital Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ημαθίας'),
(2218, 'https://ror.org/02kyckx55', 'en', 1, 'https://ror.org/02kyckx55 University of Akron'),
(2219, 'https://ror.org/02kzxd152', 'en', 1, 'https://ror.org/02kzxd152 Medical University Plovdiv Medizinischen UniversitƤt Plovdiv ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - ПловГив'),
(2220, 'https://ror.org/02m0p4y77', 'de', 1, 'https://ror.org/02m0p4y77 Klinikum Südstadt Rostock'),
(2221, 'https://ror.org/02m11x738', 'en', 1, 'https://ror.org/02m11x738 Furtwangen University Hochschule Furtwangen'),
(2222, 'https://ror.org/02m1efx83', 'no_lang_code', 1, 'https://ror.org/02m1efx83 Taconic (United States)'),
(2223, 'https://ror.org/02m2znm35', 'en', 1, 'https://ror.org/02m2znm35 Soliman Fakeeh Hospital Ų§Ł„ŲÆŁƒŲŖŁˆŲ± Ų³Ł„ŁŠŁ…Ų§Ł† ŁŁ‚ŁŠŲ©'),
(2224, 'https://ror.org/02m4p8096', 'en', 1, 'https://ror.org/02m4p8096 Hochschule Kempten Kempten University of Applied Sciences'),
(2225, 'https://ror.org/02m5e3762', 'no_lang_code', 1, 'https://ror.org/02m5e3762 Dr. Balabhai Nanavati Hospital'),
(2226, 'https://ror.org/02m82p074', 'no_lang_code', 1, 'https://ror.org/02m82p074 Suez Canal University UniversitĆ© du Canal de Suez Ų¬Ų§Ł…Ų¹Ų© قناة Ų§Ł„Ų³ŁˆŁŠŲ³'),
(2227, 'https://ror.org/02m9pj861', 'pt', 1, 'https://ror.org/02m9pj861 Hospital de Santo António'),
(2228, 'https://ror.org/02maedm12', 'en', 1, 'https://ror.org/02maedm12 Rawalpindi Medical University'),
(2229, 'https://ror.org/02mb9s657', 'en', 1, 'https://ror.org/02mb9s657 Hampden–Sydney College'),
(2230, 'https://ror.org/02mby1820', 'it', 1, 'https://ror.org/02mby1820 Azienda USL di Bologna'),
(2231, 'https://ror.org/02me73n88', 'en', 1, 'https://ror.org/02me73n88 Tribhuvan University Teaching Hospital'),
(2232, 'https://ror.org/02mek6v69', 'fr', 1, 'https://ror.org/02mek6v69 HƓpital Bonnet'),
(2233, 'https://ror.org/02mfapa96', 'en', 1, 'https://ror.org/02mfapa96 Acharya Nagarjuna University ą°†ą°šą°¾ą°°ą±ą°Æ ą°Øą°¾ą°—ą°¾ą°°ą±ą°œą±ą°Ø ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(2234, 'https://ror.org/02mg9y350', 'en', 1, 'https://ror.org/02mg9y350 Winona Medical Cosmetic Center č–‡čÆŗåØœēš®č‚¤åŒ»ē–—ē¾Žå®¹äø­åæƒ'),
(2235, 'https://ror.org/02mp2av58', 'en', 1, 'https://ror.org/02mp2av58 Universidad de HawÔi en Hilo University of Hawaii at Hilo Université d''hawaï à hilo'),
(2236, 'https://ror.org/02mrcx295', 'no_lang_code', 1, 'https://ror.org/02mrcx295 Creare (United States)'),
(2237, 'https://ror.org/02mssnc42', 'no_lang_code', 1, 'https://ror.org/02mssnc42 Nagano Municipal Hospital é•·é‡Žåø‚ę°‘ē—…é™¢'),
(2238, 'https://ror.org/02mtbrk18', 'en', 1, 'https://ror.org/02mtbrk18 Immaculata University'),
(2239, 'https://ror.org/02mvsxw13', 'en', 1, 'https://ror.org/02mvsxw13 Kobe City Nishi-Kobe Medical Center ē„žęˆøåø‚ē«‹č„æē„žęˆøåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2240, 'https://ror.org/02mx8nz45', 'en', 1, 'https://ror.org/02mx8nz45 Bradley Hospital'),
(2241, 'https://ror.org/02mxfm070', 'en', 1, 'https://ror.org/02mxfm070 St Joseph''s Hospital Health Center'),
(2242, 'https://ror.org/02my3bx32', 'en', 1, 'https://ror.org/02my3bx32 Hubei University of Chinese Medicine ę¹–åŒ—äø­åŒ»čÆå¤§å­¦'),
(2243, 'https://ror.org/02myg6142', 'en', 1, 'https://ror.org/02myg6142 Maryville University'),
(2244, 'https://ror.org/02n10g966', 'en', 1, 'https://ror.org/02n10g966 Long Beach Animal Hospital'),
(2245, 'https://ror.org/02n1cyj49', 'en', 1, 'https://ror.org/02n1cyj49 AdventHealth Orlando'),
(2246, 'https://ror.org/02n22cc74', 'en', 1, 'https://ror.org/02n22cc74 Koshigaya Municipal Hospital č¶Šč°·åø‚ē«‹ē—…é™¢'),
(2247, 'https://ror.org/02n2ava60', 'en', 1, 'https://ror.org/02n2ava60 University of New England'),
(2248, 'https://ror.org/02n5cs023', 'en', 1, 'https://ror.org/02n5cs023 Elizabeth City State University'),
(2249, 'https://ror.org/02n73hp60', 'en', 1, 'https://ror.org/02n73hp60 Victoria General Hospital'),
(2250, 'https://ror.org/02nbyhf94', 'no_lang_code', 1, 'https://ror.org/02nbyhf94 Coanda Research and Development Corporation (Canada)'),
(2251, 'https://ror.org/02nckwn80', 'en', 1, 'https://ror.org/02nckwn80 Cheyney University of Pennsylvania Universidad de Cheyney de Pensilvania UniversitƩ cheyney de pennsylvanie'),
(2252, 'https://ror.org/02ndk3y82', 'en', 1, 'https://ror.org/02ndk3y82 Children''s Medical Center'),
(2253, 'https://ror.org/02nh10f55', 'en', 1, 'https://ror.org/02nh10f55 Evanston Hospital'),
(2254, 'https://ror.org/02npavb70', 'en', 1, 'https://ror.org/02npavb70 Shimane Prefectural Institute of Public Health and Environmental Sciences å³¶ę ¹ēœŒäæå„ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(2255, 'https://ror.org/02npppw10', 'no_lang_code', 1, 'https://ror.org/02npppw10 BMT Group (United Kingdom)'),
(2256, 'https://ror.org/02nqy8390', 'en', 1, 'https://ror.org/02nqy8390 Letterman Army Medical Center'),
(2257, 'https://ror.org/02nr3fr97', 'en', 1, 'https://ror.org/02nr3fr97 Center for Biologics Evaluation and Research'),
(2258, 'https://ror.org/02nren818', 'en', 1, 'https://ror.org/02nren818 Chestnut Hill Hospital'),
(2259, 'https://ror.org/02ntgty32', 'en', 1, 'https://ror.org/02ntgty32 Flygtekniska fƶrsƶksanstalten National Aeronautical Research Institute'),
(2260, 'https://ror.org/02nvt4474', 'es', 1, 'https://ror.org/02nvt4474 Institute for Clinical Efectiveness and Health Policy Instituto de Efectividad ClĆ­nica y Sanitaria'),
(2261, 'https://ror.org/02nx5r318', 'en', 1, 'https://ror.org/02nx5r318 College of New Jersey'),
(2262, 'https://ror.org/02nycs597', 'en', 1, 'https://ror.org/02nycs597 Funabashi Municipal Medical Center čˆ¹ę©‹åø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2263, 'https://ror.org/02nyfes25', 'en', 1, 'https://ror.org/02nyfes25 Science Museum of Minnesota'),
(2264, 'https://ror.org/02nzaav06', 'es', 1, 'https://ror.org/02nzaav06 Hospital Luis Vernaza'),
(2265, 'https://ror.org/02p23ar50', 'en', 1, 'https://ror.org/02p23ar50 Kent and Canterbury Hospital'),
(2266, 'https://ror.org/02p47pe37', 'de', 1, 'https://ror.org/02p47pe37 Kaiser-Franz-Josef-Spital'),
(2267, 'https://ror.org/02p599b54', 'en', 1, 'https://ror.org/02p599b54 Treatment Research Institute'),
(2268, 'https://ror.org/02p620w18', 'en', 1, 'https://ror.org/02p620w18 Blood Center of Zhejiang Province ęµ™ę±Ÿēœč”€ę¶²äø­åæƒ'),
(2269, 'https://ror.org/02p6pjw94', 'en', 1, 'https://ror.org/02p6pjw94 Moncton Hospital'),
(2270, 'https://ror.org/02p71fr67', 'en', 1, 'https://ror.org/02p71fr67 Monilek Hospital and Research Center'),
(2271, 'https://ror.org/02p72h367', 'en', 1, 'https://ror.org/02p72h367 University of Cincinnati Medical Center'),
(2272, 'https://ror.org/02p74z057', 'en', 1, 'https://ror.org/02p74z057 K S Hegde Medical Academy'),
(2273, 'https://ror.org/02p9e5v87', 'en', 1, 'https://ror.org/02p9e5v87 Concord Hospital'),
(2274, 'https://ror.org/02paek818', 'en', 1, 'https://ror.org/02paek818 Hutzel Women''s Hospital'),
(2275, 'https://ror.org/02pagex14', 'en', 1, 'https://ror.org/02pagex14 Archimedes Foundation'),
(2276, 'https://ror.org/02pb4g840', 'tr', 1, 'https://ror.org/02pb4g840 Bahriye Merkez Hastanesi, Kasımpaşa Asker Hastanesi'),
(2277, 'https://ror.org/02pb9wz46', 'fr', 1, 'https://ror.org/02pb9wz46 HƓpital LƩon BƩrard'),
(2278, 'https://ror.org/02pes1a77', 'de', 1, 'https://ror.org/02pes1a77 Krankenhaus der Elisabethinen'),
(2279, 'https://ror.org/02pf50490', 'no_lang_code', 1, 'https://ror.org/02pf50490 Immunomedics (United States)'),
(2280, 'https://ror.org/02pfhv998', 'no_lang_code', 1, 'https://ror.org/02pfhv998 Nongwoo Bio (South Korea)'),
(2281, 'https://ror.org/02pfqts47', 'es', 1, 'https://ror.org/02pfqts47 Hospital Casa de Salud'),
(2282, 'https://ror.org/02pg0e883', 'en', 1, 'https://ror.org/02pg0e883 University of Aizu 会擄大学'),
(2283, 'https://ror.org/02pgvzy25', 'en', 1, 'https://ror.org/02pgvzy25 Ming Chuan University'),
(2284, 'https://ror.org/02phevt59', 'en', 1, 'https://ror.org/02phevt59 Fraunhofer Institute for Wind Energy Systems Fraunhofer-Institut für Windenergiesysteme'),
(2285, 'https://ror.org/02pk13h45', 'en', 1, 'https://ror.org/02pk13h45 St George Hospital'),
(2286, 'https://ror.org/02pkd6e53', 'no_lang_code', 1, 'https://ror.org/02pkd6e53 Deschutes Research'),
(2287, 'https://ror.org/02pp7xn25', 'en', 1, 'https://ror.org/02pp7xn25 Punjab Government Dental College and Hospital'),
(2288, 'https://ror.org/02ptw3r05', 'es', 1, 'https://ror.org/02ptw3r05 Hospital Universitario Son Dureta'),
(2289, 'https://ror.org/02pyp8h55', 'en', 1, 'https://ror.org/02pyp8h55 Lions Gate Hospital'),
(2290, 'https://ror.org/02q0qx558', 'en', 1, 'https://ror.org/02q0qx558 Health Resources Unlimited'),
(2291, 'https://ror.org/02q1nnh04', 'en', 1, 'https://ror.org/02q1nnh04 St. Cloud VA Health Care System'),
(2292, 'https://ror.org/02q291e51', 'no_lang_code', 1, 'https://ror.org/02q291e51 Suncor Energy (Canada)'),
(2293, 'https://ror.org/02q2dn726', 'no_lang_code', 1, 'https://ror.org/02q2dn726 Sinte Gleska University'),
(2294, 'https://ror.org/02q2rtn50', 'no_lang_code', 1, 'https://ror.org/02q2rtn50 Tangam Gaming Inc'),
(2295, 'https://ror.org/02q3bak66', 'en', 1, 'https://ror.org/02q3bak66 Buckinghamshire New University Prifysgol Newydd Swydd Buckingham'),
(2296, 'https://ror.org/02q404g62', 'en', 1, 'https://ror.org/02q404g62 Kaiser Permanente Sacramento Medical Center'),
(2297, 'https://ror.org/02q5gkg61', 'en', 1, 'https://ror.org/02q5gkg61 Henderson State University UniversitĆ© d''Ɖtat henderson'),
(2298, 'https://ror.org/02q8h2f47', 'fr', 1, 'https://ror.org/02q8h2f47 Institut Technologique ForĆŖt Cellulose Bois-Construction Ameublement'),
(2299, 'https://ror.org/02q8vys74', 'en', 1, 'https://ror.org/02q8vys74 American Institute of Physics'),
(2300, 'https://ror.org/02q97rh88', 'en', 1, 'https://ror.org/02q97rh88 Shotley Bridge Hospital'),
(2301, 'https://ror.org/02qb5a654', 'en', 1, 'https://ror.org/02qb5a654 Somerset Medical Center'),
(2302, 'https://ror.org/02qdbgx97', 'en', 1, 'https://ror.org/02qdbgx97 Geisinger Health System'),
(2303, 'https://ror.org/02qeh3c90', 'en', 1, 'https://ror.org/02qeh3c90 University of Louisiana at Monroe UniversitƩ de Louisiane Ơ Monroe'),
(2304, 'https://ror.org/02qeysd40', 'en', 1, 'https://ror.org/02qeysd40 Tacoma Community College'),
(2305, 'https://ror.org/02qgq9x54', 'en', 1, 'https://ror.org/02qgq9x54 Sardar Patel Post Graduate Institute of Dental and Medical Sciences'),
(2306, 'https://ror.org/02qnsw591', 'en', 1, 'https://ror.org/02qnsw591 Centre for European Economic Research Zentrum für Europäische Wirtschaftsforschung'),
(2307, 'https://ror.org/02qp2hh41', 'en', 1, 'https://ror.org/02qp2hh41 Walden University'),
(2308, 'https://ror.org/02qqemj91', 'en', 1, 'https://ror.org/02qqemj91 Jaipur Golden Hospital'),
(2309, 'https://ror.org/02qsqdv65', 'no_lang_code', 1, 'https://ror.org/02qsqdv65 Alstom (United Kingdom)'),
(2310, 'https://ror.org/02qv90y91', 'en', 1, 'https://ror.org/02qv90y91 Nagasaki Medical Center é•·å“ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2311, 'https://ror.org/02qvqb543', 'no_lang_code', 1, 'https://ror.org/02qvqb543 Aretaeio Hospital'),
(2312, 'https://ror.org/02qx1ae98', 'en', 1, 'https://ror.org/02qx1ae98 First Affiliated Hospital of Xinjiang Medical University ę–°ē–†åŒ»ē§‘å¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(2313, 'https://ror.org/02r247g67', 'en', 1, 'https://ror.org/02r247g67 People''s Hospital of Xinjiang Uygur Autonomous Region ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(2314, 'https://ror.org/02r2pcs39', 'en', 1, 'https://ror.org/02r2pcs39 Polyclinic Medical Center'),
(2315, 'https://ror.org/02r2tq059', 'en', 1, 'https://ror.org/02r2tq059 Saraswati Dental College and Hospital'),
(2316, 'https://ror.org/02r3xg590', 'en', 1, 'https://ror.org/02r3xg590 Kaiser Permanente Vallejo Medical Center'),
(2317, 'https://ror.org/02r4khx44', 'en', 1, 'https://ror.org/02r4khx44 King Hussein Medical Center Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų­Ų³ŁŠŁ† Ų§Ł„Ų·ŲØŁŠŲ©'),
(2318, 'https://ror.org/02r581p42', 'pt', 1, 'https://ror.org/02r581p42 Hospital de Santa Cruz'),
(2319, 'https://ror.org/02r5cmz65', 'en', 1, 'https://ror.org/02r5cmz65 Babol University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŲ§ŲØŁ„'),
(2320, 'https://ror.org/02ra1fm11', 'no_lang_code', 1, 'https://ror.org/02ra1fm11 Thermal Technologies (United States)'),
(2321, 'https://ror.org/02retg991', 'en', 1, 'https://ror.org/02retg991 University of Jammu ą¤œą¤®ą„ą¤®ą„‚ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2322, 'https://ror.org/02rfs1804', 'no_lang_code', 1, 'https://ror.org/02rfs1804 Shimada Municipal Hospital 島田市民病院'),
(2323, 'https://ror.org/02rg6ka44', 'en', 1, 'https://ror.org/02rg6ka44 Southwest Bahia State University Universidad Estatal del Sudoeste de BahĆ­a Universidade Estadual do Sudoeste da Bahia'),
(2324, 'https://ror.org/02rg9ze43', 'en', 1, 'https://ror.org/02rg9ze43 Madonna University UniversitƩ madonna'),
(2325, 'https://ror.org/02rhp5f96', 'en', 1, 'https://ror.org/02rhp5f96 Mulago Hospital'),
(2326, 'https://ror.org/02rjrn566', 'en', 1, 'https://ror.org/02rjrn566 Nishtar Medical College and Hospital'),
(2327, 'https://ror.org/02rn1w290', 'en', 1, 'https://ror.org/02rn1w290 Princess Mary Maternity Hospital'),
(2328, 'https://ror.org/02rn83489', 'en', 1, 'https://ror.org/02rn83489 Corniche Hospital مستؓفى Ų§Ł„ŁƒŁˆŲ±Ł†ŁŠŲ“ Ł„Ł„Ų£Ł…ŁˆŁ…Ų©'),
(2329, 'https://ror.org/02rnep118', 'en', 1, 'https://ror.org/02rnep118 Queen''s Hospital'),
(2330, 'https://ror.org/02rrbpf42', 'en', 1, 'https://ror.org/02rrbpf42 King Edward Medical University کنگ ایڈورڈ Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(2331, 'https://ror.org/02rsjqy82', 'en', 1, 'https://ror.org/02rsjqy82 Point Loma Nazarene University'),
(2332, 'https://ror.org/02rsydb28', 'en', 1, 'https://ror.org/02rsydb28 Misericordia Community Hospital'),
(2333, 'https://ror.org/02rw2zs46', 'en', 1, 'https://ror.org/02rw2zs46 Bai Jerbai Wadia Hospital for Children'),
(2334, 'https://ror.org/02s0xcm55', 'it', 1, 'https://ror.org/02s0xcm55 Agency for the Promotion of European Research Agenzia per la Promozione della Ricerca Europea'),
(2335, 'https://ror.org/02s1hvj37', 'en', 1, 'https://ror.org/02s1hvj37 Indiana University South Bend'),
(2336, 'https://ror.org/02s280t43', 'en', 1, 'https://ror.org/02s280t43 New Hanover Regional Medical Center'),
(2337, 'https://ror.org/02s3d7j94', 'en', 1, 'https://ror.org/02s3d7j94 Chang Jung Christian University'),
(2338, 'https://ror.org/02s3xyj47', 'en', 1, 'https://ror.org/02s3xyj47 Qatif Central Hospital مستؓفى Ų§Ł„Ł‚Ų·ŁŠŁ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(2339, 'https://ror.org/02s4j2a36', 'en', 1, 'https://ror.org/02s4j2a36 Conquest Hospital'),
(2340, 'https://ror.org/02s4xaf90', 'en', 1, 'https://ror.org/02s4xaf90 Calgary General Hospital'),
(2341, 'https://ror.org/02s5yma07', 'en', 1, 'https://ror.org/02s5yma07 Himachal Pradesh University'),
(2342, 'https://ror.org/02s6h0431', 'it', 1, 'https://ror.org/02s6h0431 Circolo Hospital and Macchi Foundation Ospedale di Circolo e Fondazione Macchi'),
(2343, 'https://ror.org/02s6w8y22', 'en', 1, 'https://ror.org/02s6w8y22 University of Bamako UniversitƩ de Bamako'),
(2344, 'https://ror.org/02s7c9e98', 'en', 1, 'https://ror.org/02s7c9e98 Fourth Affiliated Hospital of Harbin Medical University å“ˆå°”ę»ØåŒ»ē§‘å¤§å­¦ē¬¬å››é™„å±žåŒ»é™¢'),
(2345, 'https://ror.org/02s7et124', 'it', 1, 'https://ror.org/02s7et124 Azienda Ospedaliera Universitaria Senese'),
(2346, 'https://ror.org/02s7fkk92', 'es', 1, 'https://ror.org/02s7fkk92 Hospital Arnau de Vilanova'),
(2347, 'https://ror.org/02s7hnh67', 'en', 1, 'https://ror.org/02s7hnh67 Thammasat University Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø˜ąø£ąø£ąø”ąøØąø²ąøŖąø•ąø£ą¹Œą¹€ąø‰ąø„ąø“ąø”ąøžąø£ąø°ą¹€ąøąøµąø¢ąø£ąø•ąø“'),
(2348, 'https://ror.org/02s8jk784', 'en', 1, 'https://ror.org/02s8jk784 PVS Memorial Hospital'),
(2349, 'https://ror.org/02s8znz42', 'fr', 1, 'https://ror.org/02s8znz42 Centre Hospitalier de Mulhouse'),
(2350, 'https://ror.org/02sb3pg33', 'en', 1, 'https://ror.org/02sb3pg33 Kaleida Health'),
(2351, 'https://ror.org/02sc91t34', 'en', 1, 'https://ror.org/02sc91t34 American Association of Geographers'),
(2352, 'https://ror.org/02sehzp52', 'en', 1, 'https://ror.org/02sehzp52 Belarusian State University of Informatics and Radioelectronics Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ інфарматыкі і Ń€Š°Š“Ń‹Ń‘ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Ń–ŠŗŃ– Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ информатики Šø Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(2353, 'https://ror.org/02sjnfb25', 'en', 1, 'https://ror.org/02sjnfb25 Versiti Blood Center of Wisconsin'),
(2354, 'https://ror.org/02smkcg51', 'tr', 1, 'https://ror.org/02smkcg51 Bakırköy Dr.Sadi Konuk Eğitim ve Araştırma Hastanesi'),
(2355, 'https://ror.org/02smq5q54', 'en', 1, 'https://ror.org/02smq5q54 Birmingham City Hospital'),
(2356, 'https://ror.org/02smsax08', 'pt', 1, 'https://ror.org/02smsax08 Hospital Nossa Senhora da Conceição'),
(2357, 'https://ror.org/02sn5gb64', 'en', 1, 'https://ror.org/02sn5gb64 Toyota Technological Institute at Chicago'),
(2358, 'https://ror.org/02snf5j61', 'en', 1, 'https://ror.org/02snf5j61 University Hospital, Newark'),
(2359, 'https://ror.org/02sp1z620', 'en', 1, 'https://ror.org/02sp1z620 Burke Medical Research Institute'),
(2360, 'https://ror.org/02sp8x745', 'en', 1, 'https://ror.org/02sp8x745 Royal Jubilee Hospital'),
(2361, 'https://ror.org/02srrbc50', 'en', 1, 'https://ror.org/02srrbc50 Erzurum Bölge Eğitim ve Araştırma Hastanesi Erzurum Regional Training and Research Hospital'),
(2362, 'https://ror.org/02srt1z47', 'en', 1, 'https://ror.org/02srt1z47 Kansai Electric Power Hospital é–¢č„æé›»åŠ›ē—…é™¢'),
(2363, 'https://ror.org/02ss35t63', 'en', 1, 'https://ror.org/02ss35t63 Emerson Hospital'),
(2364, 'https://ror.org/02ssjh827', 'en', 1, 'https://ror.org/02ssjh827 HƓpital National de Niamey National Hospital Niamey'),
(2365, 'https://ror.org/02sttfr93', 'en', 1, 'https://ror.org/02sttfr93 Kyushu Central Hospital of the Mutual Aid Association of Public School Teachers å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆ ä¹å·žäø­å¤®ē—…é™¢'),
(2366, 'https://ror.org/02sxmkm79', 'en', 1, 'https://ror.org/02sxmkm79 Mercy Hospital'),
(2367, 'https://ror.org/02sxy6c22', 'no_lang_code', 1, 'https://ror.org/02sxy6c22 Daehang Hospital ėŒ€ķ•­ė³‘ģ›'),
(2368, 'https://ror.org/02syg0q74', 'en', 1, 'https://ror.org/02syg0q74 Hirosaki University 弘前大学'),
(2369, 'https://ror.org/02sz71d65', 'en', 1, 'https://ror.org/02sz71d65 Methodist Hospital'),
(2370, 'https://ror.org/02t0qr014', 'en', 1, 'https://ror.org/02t0qr014 Universidad de Carolina del Norte en Wilmington University of North Carolina Wilmington UniversitƩ de wilmington'),
(2371, 'https://ror.org/02t36bt26', 'en', 1, 'https://ror.org/02t36bt26 Regional Institute of Medical Sciences'),
(2372, 'https://ror.org/02t3sfp68', 'en', 1, 'https://ror.org/02t3sfp68 Sejong General Hospital 세종 병원'),
(2373, 'https://ror.org/02t4f0726', 'no_lang_code', 1, 'https://ror.org/02t4f0726 Radikal Therapeutics'),
(2374, 'https://ror.org/02t5j9303', 'en', 1, 'https://ror.org/02t5j9303 Lakehead Psychiatric Hospital'),
(2375, 'https://ror.org/02t69m177', 'no_lang_code', 1, 'https://ror.org/02t69m177 Adipogen (South Korea)'),
(2376, 'https://ror.org/02t96cy48', 'it', 1, 'https://ror.org/02t96cy48 Azienda Ospedaliera S.Maria'),
(2377, 'https://ror.org/02tbz8k15', 'no_lang_code', 1, 'https://ror.org/02tbz8k15 University Research Co (United States)'),
(2378, 'https://ror.org/02tc32w13', 'en', 1, 'https://ror.org/02tc32w13 Cumann Ollscoileanna Ɖireann Irish Universities Association'),
(2379, 'https://ror.org/02tcape08', 'en', 1, 'https://ror.org/02tcape08 Xinjiang Academy of Animal Science ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē•œē‰§ē§‘å­¦é™¢'),
(2380, 'https://ror.org/02tdhvw55', 'tr', 1, 'https://ror.org/02tdhvw55 Fırat Üniversitesi Hastanesi'),
(2381, 'https://ror.org/02tdmfk69', 'en', 1, 'https://ror.org/02tdmfk69 Belfast Health and Social Care Trust'),
(2382, 'https://ror.org/02teamz63', 'en', 1, 'https://ror.org/02teamz63 La Rabida Children''s Hospital'),
(2383, 'https://ror.org/02tj04e91', 'en', 1, 'https://ror.org/02tj04e91 Sydney Children''s Hospital'),
(2384, 'https://ror.org/02tpgw303', 'en', 1, 'https://ror.org/02tpgw303 Institute for Systems Biology'),
(2385, 'https://ror.org/02tsanh21', 'en', 1, 'https://ror.org/02tsanh21 National Cancer Center'),
(2386, 'https://ror.org/02tse0z86', 'en', 1, 'https://ror.org/02tse0z86 Bryn Mawr Hospital'),
(2387, 'https://ror.org/02tt4fr50', 'no_lang_code', 1, 'https://ror.org/02tt4fr50 Kanto Central Hospital å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆé–¢ę±äø­å¤®ē—…é™¢'),
(2388, 'https://ror.org/02tvcev59', 'en', 1, 'https://ror.org/02tvcev59 La Nueva Escuela New School'),
(2389, 'https://ror.org/02tvg0w73', 'en', 1, 'https://ror.org/02tvg0w73 Riverside Research Institute'),
(2390, 'https://ror.org/02tvhd105', 'es', 1, 'https://ror.org/02tvhd105 Clemente Ɓlvarez Emergency Hospital Hospital de Emergencias Dr. Clemente Ɓlvarez'),
(2391, 'https://ror.org/02tvvs825', 'en', 1, 'https://ror.org/02tvvs825 Robinson Memorial Hospital'),
(2392, 'https://ror.org/02twt6343', 'fr', 1, 'https://ror.org/02twt6343 HƓpital Louis-H Lafontaine'),
(2393, 'https://ror.org/02v3sdn51', 'en', 1, 'https://ror.org/02v3sdn51 MRC/CSO Social and Public Health Sciences Unit'),
(2394, 'https://ror.org/02v3txv81', 'en', 1, 'https://ror.org/02v3txv81 Portland VA Medical Center'),
(2395, 'https://ror.org/02v5mzt02', 'en', 1, 'https://ror.org/02v5mzt02 St David''s Medical Center'),
(2396, 'https://ror.org/02v6ptf51', 'no_lang_code', 1, 'https://ror.org/02v6ptf51 Khoula Hospital مستؓفى Ų®ŁˆŁ„Ų©'),
(2397, 'https://ror.org/02v7qv571', 'en', 1, 'https://ror.org/02v7qv571 Santa Clara Valley Medical Center'),
(2398, 'https://ror.org/02v8rz176', 'no_lang_code', 1, 'https://ror.org/02v8rz176 Guru Teg Bahadur Hospital'),
(2399, 'https://ror.org/02v8yp068', 'no_lang_code', 1, 'https://ror.org/02v8yp068 Konyang University ź±“ģ–‘ėŒ€ķ•™źµ'),
(2400, 'https://ror.org/02vaqnn82', 'en', 1, 'https://ror.org/02vaqnn82 Madras Medical Mission'),
(2401, 'https://ror.org/02vb7sj25', 'en', 1, 'https://ror.org/02vb7sj25 Geneva College'),
(2402, 'https://ror.org/02vbxt202', 'no_lang_code', 1, 'https://ror.org/02vbxt202 ThyssenKrupp (Germany)'),
(2403, 'https://ror.org/02vdn8424', 'en', 1, 'https://ror.org/02vdn8424 Administration of Occupational Safety and Health Vinnueftirlitiư'),
(2404, 'https://ror.org/02vej5573', 'no_lang_code', 1, 'https://ror.org/02vej5573 EstƔcio (Brazil)'),
(2405, 'https://ror.org/02verss31', 'en', 1, 'https://ror.org/02verss31 Chang Gung Memorial Hospital'),
(2406, 'https://ror.org/02vfy4r65', 'en', 1, 'https://ror.org/02vfy4r65 Charleston Area Medical Center'),
(2407, 'https://ror.org/02vgb0r89', 'en', 1, 'https://ror.org/02vgb0r89 Kinki Central Hospital 近畿中央病院'),
(2408, 'https://ror.org/02vgs9327', 'en', 1, 'https://ror.org/02vgs9327 Kumamoto University Hospital ē†Šęœ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(2409, 'https://ror.org/02vj1vm13', 'en', 1, 'https://ror.org/02vj1vm13 Zhangzhou Normal University é—½å—åøˆčŒƒå¤§å­¦'),
(2410, 'https://ror.org/02vjsj444', 'en', 1, 'https://ror.org/02vjsj444 Fort Sanders Regional Medical Center'),
(2411, 'https://ror.org/02vn11j58', 'en', 1, 'https://ror.org/02vn11j58 Ulyanovsk State University Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2412, 'https://ror.org/02vn5as77', 'nl', 1, 'https://ror.org/02vn5as77 Streekziekenhuis Koningin Beatrix'),
(2413, 'https://ror.org/02vnyaz83', 'en', 1, 'https://ror.org/02vnyaz83 Mills Peninsula Health Services'),
(2414, 'https://ror.org/02vqh3346', 'en', 1, 'https://ror.org/02vqh3346 James Cook University Hospital'),
(2415, 'https://ror.org/02vt4z508', 'en', 1, 'https://ror.org/02vt4z508 Jen-Ai Hospital ä»ę„›é†«ē™‚č²”åœ˜ę³•äŗŗ'),
(2416, 'https://ror.org/02vtd2q19', 'es', 1, 'https://ror.org/02vtd2q19 Hospital Universitario Reina SofĆ­a Reina Sofia Hospital'),
(2417, 'https://ror.org/02vtstx21', 'en', 1, 'https://ror.org/02vtstx21 Allen Hospital'),
(2418, 'https://ror.org/02vvj6403', 'en', 1, 'https://ror.org/02vvj6403 Smolensk University for Humanities Дмоленский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2419, 'https://ror.org/02vwnat91', 'en', 1, 'https://ror.org/02vwnat91 London South Bank University'),
(2420, 'https://ror.org/02vxh6479', 'no_lang_code', 1, 'https://ror.org/02vxh6479 Fortis Hospital'),
(2421, 'https://ror.org/02vzyrj94', 'en', 1, 'https://ror.org/02vzyrj94 Fairview Southdale Hospital'),
(2422, 'https://ror.org/02w043707', 'en', 1, 'https://ror.org/02w043707 University of Aden Ų¬Ų§Ł…Ų¹Ų© عدن'),
(2423, 'https://ror.org/02w1g0f30', 'en', 1, 'https://ror.org/02w1g0f30 Bashkir State Medical University Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2424, 'https://ror.org/02w2vzn61', 'en', 1, 'https://ror.org/02w2vzn61 Ruchill Hospital'),
(2425, 'https://ror.org/02w35z347', 'fr', 1, 'https://ror.org/02w35z347 HƓpital Gui de Chauliac'),
(2426, 'https://ror.org/02w3g4478', 'en', 1, 'https://ror.org/02w3g4478 Keller Army Community Hospital'),
(2427, 'https://ror.org/02w3gk008', 'en', 1, 'https://ror.org/02w3gk008 Silla University ģ‹ ė¼ėŒ€ķ•™źµ'),
(2428, 'https://ror.org/02w4p5q74', 'en', 1, 'https://ror.org/02w4p5q74 Assam Medical College অসম ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(2429, 'https://ror.org/02w5pxz31', 'en', 1, 'https://ror.org/02w5pxz31 Assiut University Hospitals'),
(2430, 'https://ror.org/02w7k5y22', 'en', 1, 'https://ror.org/02w7k5y22 Datta Meghe Institute of Medical Sciences'),
(2431, 'https://ror.org/02w7x5c08', 'en', 1, 'https://ror.org/02w7x5c08 Royal Surrey County Hospital'),
(2432, 'https://ror.org/02w8sz675', 'en', 1, 'https://ror.org/02w8sz675 Shriners Hospitals for Children - Tampa'),
(2433, 'https://ror.org/02w8ws377', 'en', 1, 'https://ror.org/02w8ws377 Chung Yuan Christian University'),
(2434, 'https://ror.org/02wa2wd05', 'en', 1, 'https://ror.org/02wa2wd05 Lagos State University Teaching Hospital'),
(2435, 'https://ror.org/02wc1yz29', 'en', 1, 'https://ror.org/02wc1yz29 Eye & ENT Hospital of Fudan University'),
(2436, 'https://ror.org/02wcweb64', 'en', 1, 'https://ror.org/02wcweb64 Larkin Community Hospital'),
(2437, 'https://ror.org/02wdkng16', 'en', 1, 'https://ror.org/02wdkng16 Catholic Health Association of the United States'),
(2438, 'https://ror.org/02wdp5k87', 'no_lang_code', 1, 'https://ror.org/02wdp5k87 Keskuslaboratorio'),
(2439, 'https://ror.org/02wdwsb32', 'no_lang_code', 1, 'https://ror.org/02wdwsb32 GenVec'),
(2440, 'https://ror.org/02wf9yg07', 'en', 1, 'https://ror.org/02wf9yg07 Chidicon Medical Center'),
(2441, 'https://ror.org/02wg4pk78', 'no_lang_code', 1, 'https://ror.org/02wg4pk78 Produits forestiers RƩsolu Resolute Forest Products (Canada)'),
(2442, 'https://ror.org/02wgfsz09', 'en', 1, 'https://ror.org/02wgfsz09 Grant Medical Center'),
(2443, 'https://ror.org/02wjcw796', 'en', 1, 'https://ror.org/02wjcw796 Miyake Eye Hospital ēœ¼ē§‘äø‰å®…ē—…é™¢'),
(2444, 'https://ror.org/02wk1td69', 'pt', 1, 'https://ror.org/02wk1td69 Fundacao Universitaria Jose Bonifacio'),
(2445, 'https://ror.org/02wkcrp04', 'en', 1, 'https://ror.org/02wkcrp04 Mazandaran University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی مازندران'),
(2446, 'https://ror.org/02wnfwq15', 'es', 1, 'https://ror.org/02wnfwq15 Hospital General Yagüe'),
(2447, 'https://ror.org/02wnxgj78', 'en', 1, 'https://ror.org/02wnxgj78 Chungbuk National University ģ¶©ė¶ėŒ€ķ•™źµ'),
(2448, 'https://ror.org/02wtdvm35', 'en', 1, 'https://ror.org/02wtdvm35 Saskatchewan Health Authority'),
(2449, 'https://ror.org/02wxcj895', 'en', 1, 'https://ror.org/02wxcj895 Chesterfield Royal Hospital'),
(2450, 'https://ror.org/02wxzt832', 'no_lang_code', 1, 'https://ror.org/02wxzt832 Echelon Biosciences'),
(2451, 'https://ror.org/02x0hgx61', 'fr', 1, 'https://ror.org/02x0hgx61 HƓpital Militaire Moulay Ismail'),
(2452, 'https://ror.org/02x0wmd77', 'en', 1, 'https://ror.org/02x0wmd77 St. John’s Health Sciences Centre'),
(2453, 'https://ror.org/02x1txb82', 'no_lang_code', 1, 'https://ror.org/02x1txb82 Hafez Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† حافظ'),
(2454, 'https://ror.org/02x1vjk79', 'pt', 1, 'https://ror.org/02x1vjk79 Pontifical Catholic University of ParanÔ Pontificia Universidad Católica de ParanÔ Pontifícia Universidade Católica do ParanÔ Université pontificale catholique du paranÔ'),
(2455, 'https://ror.org/02x2aj034', 'en', 1, 'https://ror.org/02x2aj034 Millersville University'),
(2456, 'https://ror.org/02x2kaq51', 'en', 1, 'https://ror.org/02x2kaq51 Florida Medical Entomology Laboratory'),
(2457, 'https://ror.org/02x3erj71', 'no_lang_code', 1, 'https://ror.org/02x3erj71 Personal Improvement Computer Systems'),
(2458, 'https://ror.org/02x3hmg72', 'en', 1, 'https://ror.org/02x3hmg72 Sawai ManSingh Medical College and Hospital'),
(2459, 'https://ror.org/02x3skf39', 'en', 1, 'https://ror.org/02x3skf39 Bridgewater State University UniversitĆ© d''Ɖtat de bridgewater'),
(2460, 'https://ror.org/02x4pnt63', 'pt', 1, 'https://ror.org/02x4pnt63 Hospital Geral de Bonsucesso'),
(2461, 'https://ror.org/02x581406', 'fr', 1, 'https://ror.org/02x581406 HƓpital Pellegrin'),
(2462, 'https://ror.org/02x73b849', 'en', 1, 'https://ror.org/02x73b849 University of Electro-Communications é›»ę°—é€šäæ”å¤§å­¦'),
(2463, 'https://ror.org/02x91aj62', 'en', 1, 'https://ror.org/02x91aj62 Peter the Great St. Petersburg Polytechnic University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŸŠµŃ‚Ń€Š° Великого'),
(2464, 'https://ror.org/02xa5mk57', 'en', 1, 'https://ror.org/02xa5mk57 Brooklyn Hospital Center'),
(2465, 'https://ror.org/02xag2b27', 'en', 1, 'https://ror.org/02xag2b27 Eastern New Mexico University'),
(2466, 'https://ror.org/02xesw687', 'en', 1, 'https://ror.org/02xesw687 North Manchester General Hospital'),
(2467, 'https://ror.org/02xf0fd83', 'en', 1, 'https://ror.org/02xf0fd83 JSS Medical College and Hospital'),
(2468, 'https://ror.org/02xf7p935', 'en', 1, 'https://ror.org/02xf7p935 Incheon National University ģøģ²œėŒ€ķ•™źµ'),
(2469, 'https://ror.org/02xgzjz11', 'en', 1, 'https://ror.org/02xgzjz11 Hanil General Hospital ķ•œģ „ė³‘ģ›'),
(2470, 'https://ror.org/02xh9x144', 'en', 1, 'https://ror.org/02xh9x144 University of Prince Edward Island UniversitĆ© de l''Ǝle-du-prince-Ɖdouard'),
(2471, 'https://ror.org/02xj89f04', 'pt', 1, 'https://ror.org/02xj89f04 Universidade Veiga de Almeida'),
(2472, 'https://ror.org/02xkmx604', 'en', 1, 'https://ror.org/02xkmx604 Kosin University Gospel Hospital ź³ ģ‹ ėŒ€ķ•™źµ ė³µģŒė³‘ģ›'),
(2473, 'https://ror.org/02xkx3e48', 'en', 1, 'https://ror.org/02xkx3e48 Queen Mary Hospital 瑪麗醫院'),
(2474, 'https://ror.org/02xmq6r77', 'en', 1, 'https://ror.org/02xmq6r77 Kibi International University 吉備国際大学'),
(2475, 'https://ror.org/02xpn4676', 'no_lang_code', 1, 'https://ror.org/02xpn4676 Micronet (United States)'),
(2476, 'https://ror.org/02xtpdq88', 'es', 1, 'https://ror.org/02xtpdq88 Hospital ClĆ­nico de la Universidad de Chile'),
(2477, 'https://ror.org/02xvk2686', 'en', 1, 'https://ror.org/02xvk2686 Muhimbili National Hospital'),
(2478, 'https://ror.org/02xxgh713', 'en', 1, 'https://ror.org/02xxgh713 Sisters of Charity Hospital'),
(2479, 'https://ror.org/02xyqwh78', 'no_lang_code', 1, 'https://ror.org/02xyqwh78 FEV (Germany)'),
(2480, 'https://ror.org/02xz2v383', 'en', 1, 'https://ror.org/02xz2v383 National Council of Teachers of Mathematics'),
(2481, 'https://ror.org/02y005z64', 'no_lang_code', 1, 'https://ror.org/02y005z64 Hokkaido hospital åŒ—ęµ·é“ē—…é™¢'),
(2482, 'https://ror.org/02y041669', 'en', 1, 'https://ror.org/02y041669 Gannon University'),
(2483, 'https://ror.org/02y070a55', 'en', 1, 'https://ror.org/02y070a55 Jackson Memorial Hospital'),
(2484, 'https://ror.org/02y0es528', 'en', 1, 'https://ror.org/02y0es528 George Eliot Hospital NHS Trust'),
(2485, 'https://ror.org/02y0wc381', 'en', 1, 'https://ror.org/02y0wc381 Pravara Institute of Medical Sciences'),
(2486, 'https://ror.org/02y0x4c78', 'en', 1, 'https://ror.org/02y0x4c78 General Leonard Wood Army Community Hospital'),
(2487, 'https://ror.org/02y2htg06', 'en', 1, 'https://ror.org/02y2htg06 Chi Mei Medical Center'),
(2488, 'https://ror.org/02y4qch95', 'en', 1, 'https://ror.org/02y4qch95 Lovelace Medical Center'),
(2489, 'https://ror.org/02y5qtc81', 'pt', 1, 'https://ror.org/02y5qtc81 Hospital Infantil Joana de Gusmão'),
(2490, 'https://ror.org/02y9g2b52', 'en', 1, 'https://ror.org/02y9g2b52 Morehouse College'),
(2491, 'https://ror.org/02y9nww90', 'en', 1, 'https://ror.org/02y9nww90 Chuo Kikuu cha Nairobi University of Nairobi'),
(2492, 'https://ror.org/02y9x6z24', 'pt', 1, 'https://ror.org/02y9x6z24 Hospital de SĆ£o Bernardo'),
(2493, 'https://ror.org/02y9xvd02', 'en', 1, 'https://ror.org/02y9xvd02 Shenyang Medical College ę²ˆé˜³åŒ»å­¦é™¢'),
(2494, 'https://ror.org/02ya5qg51', 'no_lang_code', 1, 'https://ror.org/02ya5qg51 Electrosonics Medical'),
(2495, 'https://ror.org/02yacz525', 'en', 1, 'https://ror.org/02yacz525 Dongzhimen Hospital Affiliated to Beijing University of Chinese Medicine åŒ—äŗ¬äø­åŒ»čÆå¤§å­¦äøœē›“é—ØåŒ»é™¢'),
(2496, 'https://ror.org/02ybb5327', 'es', 1, 'https://ror.org/02ybb5327 Universidad Nacional Experimental Francisco de Miranda'),
(2497, 'https://ror.org/02ybkn114', 'en', 1, 'https://ror.org/02ybkn114 Health Sciences Authority Penguasa Sains Kesihatan'),
(2498, 'https://ror.org/02ybzrf68', 'en', 1, 'https://ror.org/02ybzrf68 Civil Hospital Karachi'),
(2499, 'https://ror.org/02ycvrx49', 'en', 1, 'https://ror.org/02ycvrx49 Program for Appropriate Technology in Health'),
(2500, 'https://ror.org/02ye8a398', 'en', 1, 'https://ror.org/02ye8a398 Keystone Symposia On Molecular and Cellular Biology'),
(2501, 'https://ror.org/02yf2ch17', 'en', 1, 'https://ror.org/02yf2ch17 Carroll University'),
(2502, 'https://ror.org/02yfanq70', 'en', 1, 'https://ror.org/02yfanq70 International Vaccine Institute'),
(2503, 'https://ror.org/02yhdjx59', 'en', 1, 'https://ror.org/02yhdjx59 Interfaith Medical Center'),
(2504, 'https://ror.org/02yj55q56', 'en', 1, 'https://ror.org/02yj55q56 Kunsan National University źµ°ģ‚°ėŒ€ķ•™źµ'),
(2505, 'https://ror.org/02yjksy18', 'en', 1, 'https://ror.org/02yjksy18 Princess Anne Hospital'),
(2506, 'https://ror.org/02yjrq169', 'en', 1, 'https://ror.org/02yjrq169 Savannah Technical College'),
(2507, 'https://ror.org/02ynb0474', 'en', 1, 'https://ror.org/02ynb0474 Razi University دانؓگاه رازی'),
(2508, 'https://ror.org/02yq6my61', 'en', 1, 'https://ror.org/02yq6my61 Oklahoma Department of Mental Health and Substance Abuse Services'),
(2509, 'https://ror.org/02ysppy04', 'tr', 1, 'https://ror.org/02ysppy04 Kayseri Eğitim ve Araştırma Hastanesi'),
(2510, 'https://ror.org/02yvd4j36', 'en', 1, 'https://ror.org/02yvd4j36 Bundesamt für Strahlenschutz Federal Office for Radiation Protection'),
(2511, 'https://ror.org/02yw7q747', 'en', 1, 'https://ror.org/02yw7q747 Palmetto Health Richland'),
(2512, 'https://ror.org/02yx0mh38', 'en', 1, 'https://ror.org/02yx0mh38 University of Miami Hospital'),
(2513, 'https://ror.org/02yx11005', 'en', 1, 'https://ror.org/02yx11005 Borders General Hospital'),
(2514, 'https://ror.org/02yxyvn23', 'en', 1, 'https://ror.org/02yxyvn23 Mercy Medical Center North Iowa'),
(2515, 'https://ror.org/02yyjwk88', 'no_lang_code', 1, 'https://ror.org/02yyjwk88 Kyowa-kako (Japan)'),
(2516, 'https://ror.org/02yyv4c82', 'no_lang_code', 1, 'https://ror.org/02yyv4c82 Spire Corporation (United States)'),
(2517, 'https://ror.org/02z125451', 'en', 1, 'https://ror.org/02z125451 Zhongshan Hospital of Xiamen University åŽ¦é—Øå¤§å­¦é™„å±žäø­å±±åŒ»é™¢'),
(2518, 'https://ror.org/02z2d6373', 'en', 1, 'https://ror.org/02z2d6373 Yunnan Academy of Agricultural Sciences äŗ‘å—ēœå†œäøšē§‘å­¦é™¢'),
(2519, 'https://ror.org/02z310y44', 'en', 1, 'https://ror.org/02z310y44 Wheeling Jesuit University'),
(2520, 'https://ror.org/02z58ft15', 'en', 1, 'https://ror.org/02z58ft15 University of Charleston UniversitƩ de Charleston'),
(2521, 'https://ror.org/02z5bnb65', 'en', 1, 'https://ror.org/02z5bnb65 College of Idaho'),
(2522, 'https://ror.org/02z7dnx86', 'en', 1, 'https://ror.org/02z7dnx86 Japanese Red Cross Katsushika Maternity Hospital ę—„ęœ¬čµ¤åå­—ē¤¾č‘›é£¾ćƒžć‚æćƒ‹ćƒ†ć‚£ē—…é™¢'),
(2523, 'https://ror.org/02z7qcb63', 'tr', 1, 'https://ror.org/02z7qcb63 Izmir Bozyaka Eğitim ve Araştırma Hastanesi'),
(2524, 'https://ror.org/02z8mgx68', 'en', 1, 'https://ror.org/02z8mgx68 Exempla Saint Joseph Hospital'),
(2525, 'https://ror.org/02z8t9146', 'en', 1, 'https://ror.org/02z8t9146 Mayo General Hospital'),
(2526, 'https://ror.org/02z9d3e27', 'en', 1, 'https://ror.org/02z9d3e27 Dr. Mohan''s Diabetes Specialities Centre'),
(2527, 'https://ror.org/02z9g9j20', 'en', 1, 'https://ror.org/02z9g9j20 BJC HealthCare'),
(2528, 'https://ror.org/02z9t1k38', 'es', 1, 'https://ror.org/02z9t1k38 Universidad AnƔhuac'),
(2529, 'https://ror.org/02zc6c986', 'en', 1, 'https://ror.org/02zc6c986 Bethlem Royal Hospital'),
(2530, 'https://ror.org/02zc85170', 'en', 1, 'https://ror.org/02zc85170 Babol Noshirvani University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ł†ŁˆŲ“ŪŒŲ±ŁˆŲ§Ł†ŪŒ ŲØŲ§ŲØŁ„'),
(2531, 'https://ror.org/02ze5w302', 'en', 1, 'https://ror.org/02ze5w302 Tufts Children''s Hospital'),
(2532, 'https://ror.org/02zfrea47', 'en', 1, 'https://ror.org/02zfrea47 Nacionalni InŔtitut za Javno Zdravje National Institute of Public Health'),
(2533, 'https://ror.org/02zg49d29', 'en', 1, 'https://ror.org/02zg49d29 Leicester General Hospital'),
(2534, 'https://ror.org/02zg69r60', 'en', 1, 'https://ror.org/02zg69r60 Vancouver General Hospital'),
(2535, 'https://ror.org/02zh77j65', 'en', 1, 'https://ror.org/02zh77j65 National Registry of Emergency Medical Technicians'),
(2536, 'https://ror.org/02zha5019', 'en', 1, 'https://ror.org/02zha5019 Beijing Museum of Natural History åŒ—äŗ¬č‡Ŗē„¶åšē‰©é¦†'),
(2537, 'https://ror.org/02zme4e72', 'no_lang_code', 1, 'https://ror.org/02zme4e72 JEOL (Japan) ę—„ęœ¬é›»å­'),
(2538, 'https://ror.org/02zn9x324', 'no_lang_code', 1, 'https://ror.org/02zn9x324 INTRASOFT International (Luxembourg)'),
(2539, 'https://ror.org/02zpc2253', 'it', 1, 'https://ror.org/02zpc2253 Ospedale Santa Maria della Misericordia di Udine'),
(2540, 'https://ror.org/02zrvx577', 'en', 1, 'https://ror.org/02zrvx577 University of Bahr El-Ghazal'),
(2541, 'https://ror.org/02zvkba47', 'en', 1, 'https://ror.org/02zvkba47 National University of Comahue Universidad Nacional del Comahue'),
(2542, 'https://ror.org/02zwb6n98', 'en', 1, 'https://ror.org/02zwb6n98 Hamad Medical Corporation'),
(2543, 'https://ror.org/02zwxrr04', 'en', 1, 'https://ror.org/02zwxrr04 Sharp Grossmont Hospital'),
(2544, 'https://ror.org/02zwyfg51', 'en', 1, 'https://ror.org/02zwyfg51 Virginia Union University'),
(2545, 'https://ror.org/02zy72z44', 'no_lang_code', 1, 'https://ror.org/02zy72z44 Profectus Biosciences (United States)'),
(2546, 'https://ror.org/02zzw8g45', 'en', 1, 'https://ror.org/02zzw8g45 Mayo Clinic Health System'),
(2547, 'https://ror.org/0300pwe30', 'it', 1, 'https://ror.org/0300pwe30 Ospedale San Giovanni Bosco');
INSERT INTO `rors` VALUES
(2548, 'https://ror.org/0300yd604', 'pt', 1, 'https://ror.org/0300yd604 Bahian School of Medicine and Public Health Escola Bahiana de Medicina e SaĆŗde PĆŗblica'),
(2549, 'https://ror.org/03025ga79', 'en', 1, 'https://ror.org/03025ga79 AC Camargo Hospital'),
(2550, 'https://ror.org/03032jm09', 'en', 1, 'https://ror.org/03032jm09 Levine Children''s Hospital'),
(2551, 'https://ror.org/0303y7a51', 'en', 1, 'https://ror.org/0303y7a51 Durban University of Technology Inyuvesi yasethekwini yezobuchwepheshe'),
(2552, 'https://ror.org/03044am22', 'en', 1, 'https://ror.org/03044am22 Harrogate District Hospital'),
(2553, 'https://ror.org/0304t8e63', 'pt', 1, 'https://ror.org/0304t8e63 Instituto Superior de ServiƧo Social do Porto'),
(2554, 'https://ror.org/0305ndp35', 'no_lang_code', 1, 'https://ror.org/0305ndp35 MatTek Corporation (United States)'),
(2555, 'https://ror.org/0306jgh11', 'en', 1, 'https://ror.org/0306jgh11 Association of Commonwealth Universities'),
(2556, 'https://ror.org/0306r8m89', 'no_lang_code', 1, 'https://ror.org/0306r8m89 Enerkem (Canada)'),
(2557, 'https://ror.org/0307h0f23', 'en', 1, 'https://ror.org/0307h0f23 Higher Institute of Police Sciences and Homeland Security Instituto Superior de Ciências Policiais e Segurança Interna'),
(2558, 'https://ror.org/030b05n70', 'no_lang_code', 1, 'https://ror.org/030b05n70 123 Certification (Canada)'),
(2559, 'https://ror.org/030d91z44', 'en', 1, 'https://ror.org/030d91z44 Royal Oldham Hospital'),
(2560, 'https://ror.org/030e09f60', 'en', 1, 'https://ror.org/030e09f60 First Affiliated Hospital of Fujian Medical University ē¦å»ŗåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(2561, 'https://ror.org/030g3hg75', 'en', 1, 'https://ror.org/030g3hg75 Lankenau Institute for Medical Research'),
(2562, 'https://ror.org/030j6qm79', 'en', 1, 'https://ror.org/030j6qm79 Northwick Park Hospital'),
(2563, 'https://ror.org/030jhb479', 'en', 1, 'https://ror.org/030jhb479 Yunnan Nationalities University äŗ‘å—ę°‘ę—å¤§å­¦'),
(2564, 'https://ror.org/030kaa114', 'en', 1, 'https://ror.org/030kaa114 Alessandro Manzoni Hospital Ospedale Alessandro Manzoni'),
(2565, 'https://ror.org/030m18266', 'en', 1, 'https://ror.org/030m18266 Tatung University 大同大學'),
(2566, 'https://ror.org/030ma0n95', 'en', 1, 'https://ror.org/030ma0n95 Ralph H. Johnson VA Medical Center'),
(2567, 'https://ror.org/030mbcp39', 'en', 1, 'https://ror.org/030mbcp39 Robert Jones and Agnes Hunt Orthopaedic Hospital'),
(2568, 'https://ror.org/030p45079', 'no_lang_code', 1, 'https://ror.org/030p45079 Cleveland Medical Devices'),
(2569, 'https://ror.org/030pk6463', 'no_lang_code', 1, 'https://ror.org/030pk6463 Univax (United States)'),
(2570, 'https://ror.org/030pydv62', 'en', 1, 'https://ror.org/030pydv62 Norfolk State University UniversitĆ© d''Ɖtat de norfolk'),
(2571, 'https://ror.org/030rm3988', 'en', 1, 'https://ror.org/030rm3988 National Police Hospital 국립경찰병원'),
(2572, 'https://ror.org/030s54078', 'en', 1, 'https://ror.org/030s54078 University of the Philippines Los BaƱos'),
(2573, 'https://ror.org/030sc3x20', 'en', 1, 'https://ror.org/030sc3x20 First Affiliated Hospital of GuangXi Medical University'),
(2574, 'https://ror.org/030tcms06', 'en', 1, 'https://ror.org/030tcms06 Rocky Mountain Biological Laboratory'),
(2575, 'https://ror.org/030vg1t69', 'en', 1, 'https://ror.org/030vg1t69 Misr International University Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ± Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(2576, 'https://ror.org/030wyr187', 'en', 1, 'https://ror.org/030wyr187 Finnish Institute of Occupational Health'),
(2577, 'https://ror.org/0312m2266', 'en', 1, 'https://ror.org/0312m2266 University Hospital of Heraklion'),
(2578, 'https://ror.org/0313f3w77', 'en', 1, 'https://ror.org/0313f3w77 Başkent University Hospital'),
(2579, 'https://ror.org/0315ea826', 'en', 1, 'https://ror.org/0315ea826 Children''s Hospital Agia Sophia'),
(2580, 'https://ror.org/031699d98', 'en', 1, 'https://ror.org/031699d98 Payame Noor University دانؓگاه Ł¾ŪŒŲ§Ł… Ł†ŁˆŲ±'),
(2581, 'https://ror.org/0317ekv86', 'en', 1, 'https://ror.org/0317ekv86 University of Bahrain Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(2582, 'https://ror.org/0317prg89', 'no_lang_code', 1, 'https://ror.org/0317prg89 Bastyr University'),
(2583, 'https://ror.org/03181bn25', 'en', 1, 'https://ror.org/03181bn25 City College of San Francisco'),
(2584, 'https://ror.org/031b7yx83', 'no_lang_code', 1, 'https://ror.org/031b7yx83 Lucigen Corporation'),
(2585, 'https://ror.org/031bsb921', 'en', 1, 'https://ror.org/031bsb921 University of Mannheim UniversitƤt Mannheim'),
(2586, 'https://ror.org/031e6xm45', 'es', 1, 'https://ror.org/031e6xm45 Universidad del Norte'),
(2587, 'https://ror.org/031f8kt38', 'es', 1, 'https://ror.org/031f8kt38 Autonomous University of Hidalgo State Universidad Autónoma del Estado de Hidalgo'),
(2588, 'https://ror.org/031g2ej16', 'no_lang_code', 1, 'https://ror.org/031g2ej16 Dow Chemical (Canada)'),
(2589, 'https://ror.org/031hmx230', 'en', 1, 'https://ror.org/031hmx230 Tokyo Medical University Ibaraki Medical Center ę±äŗ¬åŒ»ē§‘å¤§å­¦čŒØåŸŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2590, 'https://ror.org/031m0eg77', 'en', 1, 'https://ror.org/031m0eg77 Chung Hwa University of Medical Technology äø­čÆé†«äŗ‹ē§‘ęŠ€å¤§å­ø'),
(2591, 'https://ror.org/031maes79', 'en', 1, 'https://ror.org/031maes79 Second Affiliated Hospital of Chengdu University of Traditional Chinese ęˆéƒ½äø­åŒ»čÆå¤§å­¦'),
(2592, 'https://ror.org/031nbgr73', 'en', 1, 'https://ror.org/031nbgr73 Bedford Hospital NHS Trust'),
(2593, 'https://ror.org/031pw0y55', 'en', 1, 'https://ror.org/031pw0y55 Dakota Wesleyan University'),
(2594, 'https://ror.org/031sxg258', 'no_lang_code', 1, 'https://ror.org/031sxg258 Boehringer Ingelheim (Canada)'),
(2595, 'https://ror.org/031w3f751', 'en', 1, 'https://ror.org/031w3f751 Tulane Medical Center'),
(2596, 'https://ror.org/031wwqy14', 'en', 1, 'https://ror.org/031wwqy14 Sound Shore Medical Center'),
(2597, 'https://ror.org/031xyzp67', 'en', 1, 'https://ror.org/031xyzp67 Social Security Children''s Hospital'),
(2598, 'https://ror.org/031z68d90', 'fr', 1, 'https://ror.org/031z68d90 Institut Universitaire de GƩriatrie de MontrƩal'),
(2599, 'https://ror.org/031zc8d88', 'en', 1, 'https://ror.org/031zc8d88 City Hospital'),
(2600, 'https://ror.org/0320rar10', 'en', 1, 'https://ror.org/0320rar10 MRIGlobal'),
(2601, 'https://ror.org/0321tdt28', 'it', 1, 'https://ror.org/0321tdt28 Ospedale San Giovanni Antica Sede'),
(2602, 'https://ror.org/032298f51', 'it', 1, 'https://ror.org/032298f51 Azienda Ospedaliera Sant''Andrea'),
(2603, 'https://ror.org/0322mf940', 'en', 1, 'https://ror.org/0322mf940 Spartanburg Regional Medical Center'),
(2604, 'https://ror.org/0322p7317', 'en', 1, 'https://ror.org/0322p7317 Kitakyushu Municipal Medical Center åŒ—ä¹å·žåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2605, 'https://ror.org/03237y496', 'en', 1, 'https://ror.org/03237y496 Ahmadu Bello University Teaching Hospital'),
(2606, 'https://ror.org/0327f3359', 'en', 1, 'https://ror.org/0327f3359 Anhui Agricultural University å®‰å¾½å†œäøšå¤§å­¦'),
(2607, 'https://ror.org/032af5232', 'no_lang_code', 1, 'https://ror.org/032af5232 Gweru Provincial Hospital'),
(2608, 'https://ror.org/032cjfs80', 'en', 1, 'https://ror.org/032cjfs80 Mind Research Network'),
(2609, 'https://ror.org/032d59j24', 'en', 1, 'https://ror.org/032d59j24 Hospital Tan Tock Seng Tan Tock Seng Hospital ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆą®Æą®æą®²ąÆą®²ąÆ é™ˆē¬ƒē”ŸåŒ»é™¢'),
(2610, 'https://ror.org/032fk0x53', 'en', 1, 'https://ror.org/032fk0x53 Urmia University دانؓگاه Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(2611, 'https://ror.org/032kmqj66', 'en', 1, 'https://ror.org/032kmqj66 Kettering General Hospital'),
(2612, 'https://ror.org/032knn732', 'en', 1, 'https://ror.org/032knn732 Mayville State University'),
(2613, 'https://ror.org/032kth403', 'en', 1, 'https://ror.org/032kth403 Rani Durgavati University'),
(2614, 'https://ror.org/032m4kp77', 'en', 1, 'https://ror.org/032m4kp77 Iowa Department of Public Health'),
(2615, 'https://ror.org/032nh7f71', 'en', 1, 'https://ror.org/032nh7f71 RTI Health Solutions'),
(2616, 'https://ror.org/032p0xe91', 'no', 1, 'https://ror.org/032p0xe91 Privatsykehuset Haugesund'),
(2617, 'https://ror.org/032ppma22', 'en', 1, 'https://ror.org/032ppma22 American Academy of Orthopaedic Surgeons'),
(2618, 'https://ror.org/032q2fe98', 'en', 1, 'https://ror.org/032q2fe98 Michigan State Medical Society'),
(2619, 'https://ror.org/032qfz281', 'en', 1, 'https://ror.org/032qfz281 Kaiser Permanente South San Francisco Medical Center'),
(2620, 'https://ror.org/032x22645', 'en', 1, 'https://ror.org/032x22645 Zhongshan Hospital äø­å±±åŒ»é™¢'),
(2621, 'https://ror.org/032xf8h46', 'en', 1, 'https://ror.org/032xf8h46 Kyonggi University ź²½źø°ėŒ€ķ•™źµ'),
(2622, 'https://ror.org/032y5zj91', 'en', 1, 'https://ror.org/032y5zj91 Military Medical Academy ВоенномеГицинска Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(2623, 'https://ror.org/032zc6m47', 'en', 1, 'https://ror.org/032zc6m47 Bronson Methodist Hospital'),
(2624, 'https://ror.org/0331pzy82', 'no_lang_code', 1, 'https://ror.org/0331pzy82 Miyata Eye Hospital å®®ē”°ēœ¼ē§‘ē—…é™¢'),
(2625, 'https://ror.org/033212v26', 'no_lang_code', 1, 'https://ror.org/033212v26 McPhee Research (United States)'),
(2626, 'https://ror.org/0336f9q30', 'no_lang_code', 1, 'https://ror.org/0336f9q30 Suez (Canada)'),
(2627, 'https://ror.org/03378k036', 'pt', 1, 'https://ror.org/03378k036 Institute of Higher Studies of Fafe Instituto de Estudos Superiores de Fafe LDA'),
(2628, 'https://ror.org/03384k835', 'en', 1, 'https://ror.org/03384k835 Tokushima Red Cross Hospital å¾³å³¶čµ¤åå­—ē—…é™¢'),
(2629, 'https://ror.org/033dfb770', 'en', 1, 'https://ror.org/033dfb770 Fukuyama Cardiovascular Hospital ē¦å±±å¾Ŗē’°å™Øē—…é™¢'),
(2630, 'https://ror.org/033gfa640', 'en', 1, 'https://ror.org/033gfa640 Royal Hospital Haslar'),
(2631, 'https://ror.org/033kc7n58', 'no_lang_code', 1, 'https://ror.org/033kc7n58 Creusot-Loire Entreprises (France)'),
(2632, 'https://ror.org/033t8gt11', 'en', 1, 'https://ror.org/033t8gt11 University of Forestry Лесотехнически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2633, 'https://ror.org/033tc5r37', 'en', 1, 'https://ror.org/033tc5r37 Institute of Dermatology & Venereology of the Yunnan Province'),
(2634, 'https://ror.org/033vjpd42', 'en', 1, 'https://ror.org/033vjpd42 Belmont University'),
(2635, 'https://ror.org/033vryh36', 'es', 1, 'https://ror.org/033vryh36 Tekniker'),
(2636, 'https://ror.org/033xwx807', 'it', 1, 'https://ror.org/033xwx807 Policlinico Universitario di Catania'),
(2637, 'https://ror.org/0340t0585', 'en', 1, 'https://ror.org/0340t0585 General Hospital of Shenyang Military Region äø­å›½äŗŗę°‘č§£ę”¾å†›ę²ˆé˜³å†›åŒŗę€»åŒ»é™¢'),
(2638, 'https://ror.org/0340wst14', 'en', 1, 'https://ror.org/0340wst14 Changzhi Medical College é•æę²»åŒ»å­¦é™¢'),
(2639, 'https://ror.org/0346ycw92', 'no_lang_code', 1, 'https://ror.org/0346ycw92 Saiseikai Central Hospital ę±äŗ¬éƒ½ęøˆē”Ÿä¼šäø­å¤®ē—…é™¢'),
(2640, 'https://ror.org/034adnw64', 'en', 1, 'https://ror.org/034adnw64 Durham VA Medical Center'),
(2641, 'https://ror.org/034c1gc25', 'en', 1, 'https://ror.org/034c1gc25 Maine Medical Center'),
(2642, 'https://ror.org/034c6s521', 'en', 1, 'https://ror.org/034c6s521 Amarillo VA Health Care System'),
(2643, 'https://ror.org/034dczg46', 'en', 1, 'https://ror.org/034dczg46 Chandka Medical College'),
(2644, 'https://ror.org/034de1n65', 'en', 1, 'https://ror.org/034de1n65 Utah Department of Health'),
(2645, 'https://ror.org/034f0sr31', 'no_lang_code', 1, 'https://ror.org/034f0sr31 NuvOx Pharma (United States)'),
(2646, 'https://ror.org/034fmtr90', 'en', 1, 'https://ror.org/034fmtr90 Empirica. Gesellschaft für Kommunikations- und Technologieforschung empirica - Communication and Technology Research'),
(2647, 'https://ror.org/034pdr896', 'en', 1, 'https://ror.org/034pdr896 Dallas VA Medical Center'),
(2648, 'https://ror.org/034t5cp02', 'en', 1, 'https://ror.org/034t5cp02 North Carolina Division of Public Health'),
(2649, 'https://ror.org/034w83t88', 'tr', 1, 'https://ror.org/034w83t88 Ɩzel Trakya Hastanesi'),
(2650, 'https://ror.org/034xj0q80', 'en', 1, 'https://ror.org/034xj0q80 Orenburg State Medical Academy ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2651, 'https://ror.org/034zcbh25', 'tr', 1, 'https://ror.org/034zcbh25 Ergani Devlet Hastanesi'),
(2652, 'https://ror.org/0351yd374', 'en', 1, 'https://ror.org/0351yd374 Shinkyo Hospital'),
(2653, 'https://ror.org/0353kya20', 'pt', 1, 'https://ror.org/0353kya20 Hospital Curry Cabral'),
(2654, 'https://ror.org/0353q6p88', 'en', 1, 'https://ror.org/0353q6p88 Sydney South West Area Health Service'),
(2655, 'https://ror.org/0354m4207', 'no_lang_code', 1, 'https://ror.org/0354m4207 Kinexus Bioinformatics Corporation (Canada)'),
(2656, 'https://ror.org/0356c4a29', 'en', 1, 'https://ror.org/0356c4a29 LƤkemedelsverket Medical Products Agency'),
(2657, 'https://ror.org/0357r2107', 'en', 1, 'https://ror.org/0357r2107 Ministry of Health'),
(2658, 'https://ror.org/035a72598', 'en', 1, 'https://ror.org/035a72598 Lincoln Medical Center'),
(2659, 'https://ror.org/035dmz332', 'en', 1, 'https://ror.org/035dmz332 World Health Organization - Australia'),
(2660, 'https://ror.org/035gy9016', 'no_lang_code', 1, 'https://ror.org/035gy9016 Tecnatom (Spain)'),
(2661, 'https://ror.org/035j0tq82', 'no_lang_code', 1, 'https://ror.org/035j0tq82 Orange (France)'),
(2662, 'https://ror.org/035j3m047', 'en', 1, 'https://ror.org/035j3m047 New York Hall of Science'),
(2663, 'https://ror.org/035khf156', 'en', 1, 'https://ror.org/035khf156 Hyogo Social Welfare Corporation å…µåŗ«ēœŒē«‹ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³äø­å¤®ē—…é™¢'),
(2664, 'https://ror.org/035mqap40', 'no_lang_code', 1, 'https://ror.org/035mqap40 Membrane Technology & Research (United States)'),
(2665, 'https://ror.org/035n3nf68', 'en', 1, 'https://ror.org/035n3nf68 Security Forces Hospital'),
(2666, 'https://ror.org/035p1zc77', 'en', 1, 'https://ror.org/035p1zc77 St John of Jerusalem Eye Hospital Group'),
(2667, 'https://ror.org/035r7hb75', 'en', 1, 'https://ror.org/035r7hb75 Keimyung University Dongsan Medical Center ź³„ėŖ…ėŒ€ķ•™źµ ė™ģ‚°ģ˜ė£Œģ›'),
(2668, 'https://ror.org/035rhx828', 'en', 1, 'https://ror.org/035rhx828 Kunming University ę˜†ę˜Žå­¦é™¢'),
(2669, 'https://ror.org/035t17984', 'en', 1, 'https://ror.org/035t17984 Beijing Jishuitan Hospital åŒ—äŗ¬åø‚åˆ›ä¼¤éŖØē§‘ē ”ē©¶ę‰€'),
(2670, 'https://ror.org/035vb3h42', 'en', 1, 'https://ror.org/035vb3h42 Kinderspital Zürich University Children''s Hospital Zurich'),
(2671, 'https://ror.org/035xbsb93', 'en', 1, 'https://ror.org/035xbsb93 Al-Sabah Hospital'),
(2672, 'https://ror.org/035xhk118', 'en', 1, 'https://ror.org/035xhk118 Audie L. Murphy Memorial VA Hospital'),
(2673, 'https://ror.org/035y9xj66', 'en', 1, 'https://ror.org/035y9xj66 Consortium For Mathematics & Its Applications'),
(2674, 'https://ror.org/035z2ew45', 'en', 1, 'https://ror.org/035z2ew45 Eastern Illinois University UniversitƩ de l''illinois de l''est'),
(2675, 'https://ror.org/035z6xf33', 'en', 1, 'https://ror.org/035z6xf33 Oklahoma Medical Research Foundation'),
(2676, 'https://ror.org/0360cq027', 'en', 1, 'https://ror.org/0360cq027 LDS Hospital'),
(2677, 'https://ror.org/0362za439', 'en', 1, 'https://ror.org/0362za439 Ministry of Health'),
(2678, 'https://ror.org/03645mz20', 'nl', 1, 'https://ror.org/03645mz20 Stichting Technasium'),
(2679, 'https://ror.org/0364a8z71', 'tr', 1, 'https://ror.org/0364a8z71 Denizli Devlet Hastanesi Denizli State Hospital'),
(2680, 'https://ror.org/03661z977', 'no_lang_code', 1, 'https://ror.org/03661z977 HEF Groupe (France)'),
(2681, 'https://ror.org/0367gm239', 'en', 1, 'https://ror.org/0367gm239 Eulji University Hospital ģ„ģ§€ėŒ€ķ•™źµė³‘ģ›'),
(2682, 'https://ror.org/0367njg58', 'en', 1, 'https://ror.org/0367njg58 East Central University'),
(2683, 'https://ror.org/0367sye10', 'nl', 1, 'https://ror.org/0367sye10 Atrium Medisch Centrum Parkstad'),
(2684, 'https://ror.org/0368s4g32', 'en', 1, 'https://ror.org/0368s4g32 China Medical University Hospital'),
(2685, 'https://ror.org/0369pvp92', 'no_lang_code', 1, 'https://ror.org/0369pvp92 Nanchang Hangkong University å—ę˜ŒčˆŖē©ŗå¤§å­¦'),
(2686, 'https://ror.org/0369st156', 'en', 1, 'https://ror.org/0369st156 Slippery Rock University'),
(2687, 'https://ror.org/036a0e562', 'en', 1, 'https://ror.org/036a0e562 Baltimore VA Medical Center'),
(2688, 'https://ror.org/036c27j91', 'en', 1, 'https://ror.org/036c27j91 Washington University Medical Center'),
(2689, 'https://ror.org/036c3t778', 'en', 1, 'https://ror.org/036c3t778 Niigata Prefectural Museum of History ę–°ę½ŸēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(2690, 'https://ror.org/036dess41', 'pt', 1, 'https://ror.org/036dess41 Hospital do Desterro'),
(2691, 'https://ror.org/036dkm174', 'es', 1, 'https://ror.org/036dkm174 Hospital Santa Caterina'),
(2692, 'https://ror.org/036mbxj57', 'en', 1, 'https://ror.org/036mbxj57 Banff Mineral Springs Hospital'),
(2693, 'https://ror.org/036njfn21', 'en', 1, 'https://ror.org/036njfn21 Ministry of Health'),
(2694, 'https://ror.org/036nxkh98', 'en', 1, 'https://ror.org/036nxkh98 Carilion Roanoke Memorial Hospital'),
(2695, 'https://ror.org/036qtaj98', 'en', 1, 'https://ror.org/036qtaj98 Greenwich Hospital'),
(2696, 'https://ror.org/036s9kg65', 'en', 1, 'https://ror.org/036s9kg65 Monash Medical Centre'),
(2697, 'https://ror.org/036sak533', 'en', 1, 'https://ror.org/036sak533 Southern Arkansas University'),
(2698, 'https://ror.org/036sdak78', 'en', 1, 'https://ror.org/036sdak78 Educational Commission for Foreign Medical Graduates'),
(2699, 'https://ror.org/036wxg427', 'no_lang_code', 1, 'https://ror.org/036wxg427 Jordan Hospital مستؓفى الأردن'),
(2700, 'https://ror.org/036yvre49', 'en', 1, 'https://ror.org/036yvre49 Kemerovo State University ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2701, 'https://ror.org/03720tm64', 'pt', 1, 'https://ror.org/03720tm64 Fundação Ricardo do Espírito Santo Silva'),
(2702, 'https://ror.org/0372t5741', 'en', 1, 'https://ror.org/0372t5741 Gifu Pharmaceutical University å²é˜œč–¬ē§‘å¤§å­¦'),
(2703, 'https://ror.org/0373nm262', 'en', 1, 'https://ror.org/0373nm262 Kongju National University ź³µģ£¼ėŒ€ķ•™źµ'),
(2704, 'https://ror.org/03763ep67', 'en', 1, 'https://ror.org/03763ep67 Children''s Hospital of Pittsburgh'),
(2705, 'https://ror.org/0376mc966', 'en', 1, 'https://ror.org/0376mc966 Haskell Indian Nations University'),
(2706, 'https://ror.org/0376myh60', 'pt', 1, 'https://ror.org/0376myh60 Catholic University of Pelotas Universidade Católica de Pelotas'),
(2707, 'https://ror.org/0376vhj74', 'en', 1, 'https://ror.org/0376vhj74 Lewis University'),
(2708, 'https://ror.org/037767x92', 'en', 1, 'https://ror.org/037767x92 Himeji Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē—…é™¢ę©Ÿę§‹ å§«č·ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2709, 'https://ror.org/037a76178', 'en', 1, 'https://ror.org/037a76178 Handa City Hospital åŠē”°åø‚ē«‹åŠē”°ē—…é™¢'),
(2710, 'https://ror.org/037d0vf92', 'en', 1, 'https://ror.org/037d0vf92 Nizhny Novgorod State Technical University ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2711, 'https://ror.org/037dvnz29', 'en', 1, 'https://ror.org/037dvnz29 Shriners Hospitals for Children - Houston'),
(2712, 'https://ror.org/037f4ry86', 'en', 1, 'https://ror.org/037f4ry86 Regional West Medical Center'),
(2713, 'https://ror.org/037m3rm63', 'en', 1, 'https://ror.org/037m3rm63 Japanese Red Cross Asahikawa Hospital ę—­å·čµ¤åå­—ē—…é™¢'),
(2714, 'https://ror.org/037m6e306', 'no_lang_code', 1, 'https://ror.org/037m6e306 Pera (United Kingdom)'),
(2715, 'https://ror.org/037mpqg03', 'no_lang_code', 1, 'https://ror.org/037mpqg03 Xstrata (United Kingdom)'),
(2716, 'https://ror.org/037nakk48', 'no_lang_code', 1, 'https://ror.org/037nakk48 Pinnacle Technology'),
(2717, 'https://ror.org/037pmhh38', 'no_lang_code', 1, 'https://ror.org/037pmhh38 Physical Optics Corporation'),
(2718, 'https://ror.org/037r57b62', 'en', 1, 'https://ror.org/037r57b62 Buddhist Tzu Chi General Hospital'),
(2719, 'https://ror.org/037rt4a55', 'en', 1, 'https://ror.org/037rt4a55 National Academy of Agricultural Science źµ­ė¦½ė†ģ—…ź³¼ķ•™ģ›'),
(2720, 'https://ror.org/037s3ck33', 'en', 1, 'https://ror.org/037s3ck33 Shatin Hospital 沙田醫院'),
(2721, 'https://ror.org/037s71n47', 'en', 1, 'https://ror.org/037s71n47 Imelda Hospital Imelda ziekenhuis'),
(2722, 'https://ror.org/037v8w471', 'en', 1, 'https://ror.org/037v8w471 Memorial Hermann Institute for Rehabilitation and Research Foundation'),
(2723, 'https://ror.org/037wegn60', 'en', 1, 'https://ror.org/037wegn60 University of the District of Columbia UniversitƩ du district de columbia'),
(2724, 'https://ror.org/037wq4b75', 'de', 1, 'https://ror.org/037wq4b75 Klinikum Ludwigshafen'),
(2725, 'https://ror.org/037y5zq83', 'en', 1, 'https://ror.org/037y5zq83 Kolding Hospital'),
(2726, 'https://ror.org/037ybm139', 'en', 1, 'https://ror.org/037ybm139 Baptist Medical Center Jacksonville'),
(2727, 'https://ror.org/037ze7373', 'tr', 1, 'https://ror.org/037ze7373 Etlik Zübeyde Hanım Kadın Hastalıkları Eğitim ve Araştırma Hastanesi'),
(2728, 'https://ror.org/0380w8h49', 'en', 1, 'https://ror.org/0380w8h49 Ealing Hospital NHS Trust'),
(2729, 'https://ror.org/038152964', 'es', 1, 'https://ror.org/038152964 Hospital Riotinto'),
(2730, 'https://ror.org/0382k6j58', 'en', 1, 'https://ror.org/0382k6j58 Nambu University'),
(2731, 'https://ror.org/0382m3r69', 'en', 1, 'https://ror.org/0382m3r69 Dr Gray''s Hospital'),
(2732, 'https://ror.org/038321296', 'en', 1, 'https://ror.org/038321296 Gladstone Institutes'),
(2733, 'https://ror.org/0384ghs60', 'en', 1, 'https://ror.org/0384ghs60 National Center for Drug Screening å›½å®¶ę–°čÆē­›é€‰äø­åæƒ'),
(2734, 'https://ror.org/0389fv189', 'en', 1, 'https://ror.org/0389fv189 Guangxi Maternal and Child Health Hospital å¹æč„æå¦‡å¹¼äæå„é™¢'),
(2735, 'https://ror.org/0389pw608', 'en', 1, 'https://ror.org/0389pw608 Center for High Pressure Science and Technology Advanced Research åŒ—äŗ¬é«˜åŽ‹ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(2736, 'https://ror.org/0389pzc90', 'en', 1, 'https://ror.org/0389pzc90 Altai State Technical University Алтайский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. И. Ползунова'),
(2737, 'https://ror.org/038bgk418', 'en', 1, 'https://ror.org/038bgk418 Okayama Prefectural University å²”å±±ēœŒē«‹å¤§å­¦'),
(2738, 'https://ror.org/038c3w259', 'en', 1, 'https://ror.org/038c3w259 Kunming Medical University ę˜†ę˜ŽåŒ»ē§‘å¤§å­¦'),
(2739, 'https://ror.org/038c5sp60', 'en', 1, 'https://ror.org/038c5sp60 Poudre Valley Hospital'),
(2740, 'https://ror.org/038ckz871', 'no_lang_code', 1, 'https://ror.org/038ckz871 Kaneka (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ćƒć‚«'),
(2741, 'https://ror.org/038cpkc46', 'en', 1, 'https://ror.org/038cpkc46 Northrop University'),
(2742, 'https://ror.org/038d10y34', 'en', 1, 'https://ror.org/038d10y34 National Wildlife Health Center'),
(2743, 'https://ror.org/038e9x269', 'no_lang_code', 1, 'https://ror.org/038e9x269 Kumaun University ą¤•ą„ą¤®ą¤¾ą¤Šą¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®•ąÆą®®ą®¾ą®µąÆą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2744, 'https://ror.org/038estk42', 'en', 1, 'https://ror.org/038estk42 Shinmatsudo Central General Hospital ę–°ę¾ęˆøäø­å¤®ē·åˆē—…é™¢'),
(2745, 'https://ror.org/038fqcc39', 'en', 1, 'https://ror.org/038fqcc39 UPMC Hamot'),
(2746, 'https://ror.org/038fwcw54', 'en', 1, 'https://ror.org/038fwcw54 National Satellite Ocean Application Service å›½å®¶å«ę˜Ÿęµ·ę“‹åŗ”ē”Øäø­åæƒ'),
(2747, 'https://ror.org/038h97h67', 'tr', 1, 'https://ror.org/038h97h67 Izmir Tepecik Eğitim ve Araştırma Hastanesi'),
(2748, 'https://ror.org/038j9sn30', 'en', 1, 'https://ror.org/038j9sn30 Shanghai Institute of Hypertension'),
(2749, 'https://ror.org/038jxf238', 'en', 1, 'https://ror.org/038jxf238 Natividad Medical Center'),
(2750, 'https://ror.org/038mfx688', 'en', 1, 'https://ror.org/038mfx688 National Academy of Sciences'),
(2751, 'https://ror.org/038mzt421', 'no_lang_code', 1, 'https://ror.org/038mzt421 Nerviano Medical Sciences'),
(2752, 'https://ror.org/038nb9c73', 'en', 1, 'https://ror.org/038nb9c73 Olivet Nazarene University'),
(2753, 'https://ror.org/038qbqz41', 'en', 1, 'https://ror.org/038qbqz41 Lovelace Respiratory Research Institute'),
(2754, 'https://ror.org/038rhxb62', 'no_lang_code', 1, 'https://ror.org/038rhxb62 IM Systems (United States)'),
(2755, 'https://ror.org/038v5dr76', 'en', 1, 'https://ror.org/038v5dr76 Rapid City Regional Hospital'),
(2756, 'https://ror.org/038vg5g56', 'en', 1, 'https://ror.org/038vg5g56 Delaware County Memorial Hospital'),
(2757, 'https://ror.org/038x2fh14', 'en', 1, 'https://ror.org/038x2fh14 Charles R. Drew University of Medicine and Science'),
(2758, 'https://ror.org/038ygd080', 'en', 1, 'https://ror.org/038ygd080 Inner Mongolia Medical College Hospital å†…č’™å¤åŒ»ē§‘å¤§å­¦é™„å±žåŒ»é™¢'),
(2759, 'https://ror.org/038yw9848', 'en', 1, 'https://ror.org/038yw9848 Kaiser Permanente Santa Clara Medical Center'),
(2760, 'https://ror.org/038zf2n28', 'en', 1, 'https://ror.org/038zf2n28 Youngstown State University'),
(2761, 'https://ror.org/0393ghj09', 'no_lang_code', 1, 'https://ror.org/0393ghj09 Habib hospital Thameur'),
(2762, 'https://ror.org/03950pc16', 'en', 1, 'https://ror.org/03950pc16 Allergy and Asthma Medical Group and Research Center'),
(2763, 'https://ror.org/03964hc96', 'en', 1, 'https://ror.org/03964hc96 Borgess Medical Center'),
(2764, 'https://ror.org/0396v4y86', 'fr', 1, 'https://ror.org/0396v4y86 HƓpital Louis Pradel'),
(2765, 'https://ror.org/039713658', 'en', 1, 'https://ror.org/039713658 First Affiliated Hospital of Chinese PLA General Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ę€»åŒ»é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(2766, 'https://ror.org/0397tsa92', 'en', 1, 'https://ror.org/0397tsa92 Clark Atlanta University'),
(2767, 'https://ror.org/0398yj006', 'es', 1, 'https://ror.org/0398yj006 Hospital MuƱiz, Hospital de Infecciosas ā€œDr. Francisco Javier MuƱiz"'),
(2768, 'https://ror.org/039ajs610', 'no_lang_code', 1, 'https://ror.org/039ajs610 Weyerhauser (Canada)'),
(2769, 'https://ror.org/039bxh911', 'it', 1, 'https://ror.org/039bxh911 Ospedale Infermi di Rimini'),
(2770, 'https://ror.org/039c6rk82', 'en', 1, 'https://ror.org/039c6rk82 Ninewells Hospital'),
(2771, 'https://ror.org/039cbw303', 'no_lang_code', 1, 'https://ror.org/039cbw303 Dhaka Shishu Hospital'),
(2772, 'https://ror.org/039dmez53', 'en', 1, 'https://ror.org/039dmez53 LeMoyne–Owen College'),
(2773, 'https://ror.org/039efr729', 'pt', 1, 'https://ror.org/039efr729 Instituto Português de Administração de Marketing'),
(2774, 'https://ror.org/039evc422', 'en', 1, 'https://ror.org/039evc422 Municipal Institute for Medical Research'),
(2775, 'https://ror.org/039f7g519', 'en', 1, 'https://ror.org/039f7g519 Springfield Technical Community College'),
(2776, 'https://ror.org/039h3vh71', 'en', 1, 'https://ror.org/039h3vh71 Capital and Coast District Health Board'),
(2777, 'https://ror.org/039mhfq69', 'en', 1, 'https://ror.org/039mhfq69 Bangkok Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(2778, 'https://ror.org/039nw9e11', 'en', 1, 'https://ror.org/039nw9e11 Third Affiliated Hospital of Zhengzhou University éƒ‘å·žå¤§å­¦ē¬¬äø‰é™„å±žåŒ»é™¢'),
(2779, 'https://ror.org/039p7ck60', 'en', 1, 'https://ror.org/039p7ck60 Dongduk Women''s University ė™ė•ģ—¬ģžėŒ€ķ•™źµ'),
(2780, 'https://ror.org/039q00p63', 'en', 1, 'https://ror.org/039q00p63 Edward Francis Small Teaching Hospital'),
(2781, 'https://ror.org/039ryp971', 'en', 1, 'https://ror.org/039ryp971 Grodno State Medical University ГроГзенскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃƒŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ ГроГненский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2782, 'https://ror.org/039se3q37', 'en', 1, 'https://ror.org/039se3q37 County Hospital'),
(2783, 'https://ror.org/039thcs93', 'en', 1, 'https://ror.org/039thcs93 Sri Venkateswara Institute of Medical Sciences'),
(2784, 'https://ror.org/039tm4h11', 'en', 1, 'https://ror.org/039tm4h11 Sree Balaji Dental College and Hospital'),
(2785, 'https://ror.org/039tzxh97', 'en', 1, 'https://ror.org/039tzxh97 Queen Elizabeth the Queen Mother Hospital'),
(2786, 'https://ror.org/039xw7n32', 'en', 1, 'https://ror.org/039xw7n32 Istituto Universitario di Studi Europei University Institute of European Studies'),
(2787, 'https://ror.org/039ygjf22', 'en', 1, 'https://ror.org/039ygjf22 Jikei University School of Medicine ę±äŗ¬ę…ˆęµä¼šåŒ»ē§‘å¤§å­¦'),
(2788, 'https://ror.org/039zd5s34', 'en', 1, 'https://ror.org/039zd5s34 Integral University UniversitĆ© intĆ©grale de lucknow ą¤‡ą¤‚ą¤Ÿą„€ą¤—ą„ą¤°ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2789, 'https://ror.org/03a1gte98', 'en', 1, 'https://ror.org/03a1gte98 Agence spatiale canadienne Canadian Space Agency'),
(2790, 'https://ror.org/03a1rt493', 'en', 1, 'https://ror.org/03a1rt493 KƤtilƶopisto Maternity Hospital'),
(2791, 'https://ror.org/03a23ch04', 'en', 1, 'https://ror.org/03a23ch04 Health Protection Surveillance Centre LƔrionad Faire um Chosaint SlƔinte'),
(2792, 'https://ror.org/03a3qwm26', 'en', 1, 'https://ror.org/03a3qwm26 Augustana University'),
(2793, 'https://ror.org/03a4vma36', 'en', 1, 'https://ror.org/03a4vma36 Queensborough Community College, CUNY'),
(2794, 'https://ror.org/03a6a0a65', 'pt', 1, 'https://ror.org/03a6a0a65 Universidade do Oeste de Santa Catarina'),
(2795, 'https://ror.org/03a6zw892', 'en', 1, 'https://ror.org/03a6zw892 Lurie Children''s Hospital'),
(2796, 'https://ror.org/03a8gac78', 'es', 1, 'https://ror.org/03a8gac78 Hospital Del Mar'),
(2797, 'https://ror.org/03aam9155', 'en', 1, 'https://ror.org/03aam9155 KLE University'),
(2798, 'https://ror.org/03ac64295', 'en', 1, 'https://ror.org/03ac64295 American Society For Engineering Education'),
(2799, 'https://ror.org/03acrxj66', 'en', 1, 'https://ror.org/03acrxj66 North Memorial Health Care'),
(2800, 'https://ror.org/03ag59v15', 'pt', 1, 'https://ror.org/03ag59v15 Universidade Estadual de CiĆŖncias da SaĆŗde de Alagoas'),
(2801, 'https://ror.org/03ag5ed62', 'no_lang_code', 1, 'https://ror.org/03ag5ed62 Allied Technology (United States)'),
(2802, 'https://ror.org/03am3jt82', 'sv', 1, 'https://ror.org/03am3jt82 Helsingborgs lasarett'),
(2803, 'https://ror.org/03andr831', 'en', 1, 'https://ror.org/03andr831 Christian Brothers University'),
(2804, 'https://ror.org/03ap6wx93', 'en', 1, 'https://ror.org/03ap6wx93 Queen''s Medical Centre'),
(2805, 'https://ror.org/03apjks92', 'en', 1, 'https://ror.org/03apjks92 Martin Luther King, Jr. Multi-Service Ambulatory Care Center'),
(2806, 'https://ror.org/03atxgt72', 'en', 1, 'https://ror.org/03atxgt72 Coney Island Hospital'),
(2807, 'https://ror.org/03aw5sn18', 'en', 1, 'https://ror.org/03aw5sn18 University of California San Diego Medical Center'),
(2808, 'https://ror.org/03awtex73', 'no_lang_code', 1, 'https://ror.org/03awtex73 Arup Group (United States)'),
(2809, 'https://ror.org/03ay8b853', 'en', 1, 'https://ror.org/03ay8b853 Police General Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø•ąø³ąø£ąø§ąøˆ'),
(2810, 'https://ror.org/03ayf0c60', 'en', 1, 'https://ror.org/03ayf0c60 Kagawa Nutrition University å„³å­ę „é¤Šå¤§å­¦'),
(2811, 'https://ror.org/03aypnd11', 'en', 1, 'https://ror.org/03aypnd11 Ayub Medical College'),
(2812, 'https://ror.org/03b2b5383', 'en', 1, 'https://ror.org/03b2b5383 Diana Princess of Wales Hospital'),
(2813, 'https://ror.org/03b353k89', 'en', 1, 'https://ror.org/03b353k89 Saint Michael''s College'),
(2814, 'https://ror.org/03b3qq257', 'es', 1, 'https://ror.org/03b3qq257 Hospital Padre Hurtado'),
(2815, 'https://ror.org/03b48gv34', 'en', 1, 'https://ror.org/03b48gv34 University of Mary Washington UniversitƩ de mary washington'),
(2816, 'https://ror.org/03b5q4637', 'en', 1, 'https://ror.org/03b5q4637 Educational Testing Service'),
(2817, 'https://ror.org/03b6sp482', 'en', 1, 'https://ror.org/03b6sp482 Southern University System'),
(2818, 'https://ror.org/03b705z14', 'es', 1, 'https://ror.org/03b705z14 Hospital Vargas'),
(2819, 'https://ror.org/03b7nc883', 'en', 1, 'https://ror.org/03b7nc883 Colmery-O''Neil VA Medical Center'),
(2820, 'https://ror.org/03b982x90', 'en', 1, 'https://ror.org/03b982x90 Post Graduate Medical Institute'),
(2821, 'https://ror.org/03bag5a72', 'en', 1, 'https://ror.org/03bag5a72 Ladoke Akintola University of Technology Teaching Hospital'),
(2822, 'https://ror.org/03bahkk91', 'en', 1, 'https://ror.org/03bahkk91 Arkansas Tech University'),
(2823, 'https://ror.org/03bfp2076', 'en', 1, 'https://ror.org/03bfp2076 Beckman Laser Institute and Medical Clinic'),
(2824, 'https://ror.org/03bg2rq25', 'en', 1, 'https://ror.org/03bg2rq25 American Public Health Association'),
(2825, 'https://ror.org/03bj8zh59', 'no_lang_code', 1, 'https://ror.org/03bj8zh59 Tata Steel (United Kingdom)'),
(2826, 'https://ror.org/03bpc5f92', 'en', 1, 'https://ror.org/03bpc5f92 Institute for Medical Research'),
(2827, 'https://ror.org/03bq2c460', 'no_lang_code', 1, 'https://ror.org/03bq2c460 Barrick Gold (Canada)'),
(2828, 'https://ror.org/03bqt8z64', 'no_lang_code', 1, 'https://ror.org/03bqt8z64 National Institute of Technology'),
(2829, 'https://ror.org/03bs2yy11', 'en', 1, 'https://ror.org/03bs2yy11 Queen Victoria Hospital NHS Foundation Trust'),
(2830, 'https://ror.org/03btpnr35', 'en', 1, 'https://ror.org/03btpnr35 Shaukat Khanum Memorial Cancer Hospital and Research Center ؓوکت خانم یادگاری سرطان ؓفاخانہ اور مرکز ŲŖŲ­Ł‚ŪŒŁ‚'),
(2831, 'https://ror.org/03bvvnt49', 'en', 1, 'https://ror.org/03bvvnt49 National Taiwan Ocean University'),
(2832, 'https://ror.org/03bvx5w91', 'it', 1, 'https://ror.org/03bvx5w91 Fondazione Eni Enrico Mattei'),
(2833, 'https://ror.org/03bwf4y78', 'sk', 1, 'https://ror.org/03bwf4y78 Slovak National Library Slovenska Narodna Kniznica, SlovenskÔ nÔrodnÔ knižnica'),
(2834, 'https://ror.org/03bwzch55', 'en', 1, 'https://ror.org/03bwzch55 Kyushu Dental University ä¹å·žę­Æē§‘å¤§å­¦'),
(2835, 'https://ror.org/03bx60s49', 'en', 1, 'https://ror.org/03bx60s49 Cancer Prevention Institute of California'),
(2836, 'https://ror.org/03by16w37', 'en', 1, 'https://ror.org/03by16w37 Chonbuk National University Hospital'),
(2837, 'https://ror.org/03byx8t68', 'en', 1, 'https://ror.org/03byx8t68 Clarke University'),
(2838, 'https://ror.org/03bzbh797', 'en', 1, 'https://ror.org/03bzbh797 UPMC Montefiore'),
(2839, 'https://ror.org/03bzz8q98', 'en', 1, 'https://ror.org/03bzz8q98 175th Hospital of People''s Liberation Army 解放军第175医院'),
(2840, 'https://ror.org/03c23hy31', 'no_lang_code', 1, 'https://ror.org/03c23hy31 One Cell Systems (United States)'),
(2841, 'https://ror.org/03c266r37', 'en', 1, 'https://ror.org/03c266r37 Gifu Prefectural General Medical Center å²é˜œēœŒē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2842, 'https://ror.org/03c3d1v10', 'en', 1, 'https://ror.org/03c3d1v10 General University Hospital of Patras'),
(2843, 'https://ror.org/03c622h45', 'en', 1, 'https://ror.org/03c622h45 National Academy for State Health Policy'),
(2844, 'https://ror.org/03c648b36', 'en', 1, 'https://ror.org/03c648b36 Ehime Prefectural Central Hospital ę„›åŖ›ēœŒē«‹äø­å¤®ē—…é™¢'),
(2845, 'https://ror.org/03c7caz94', 'en', 1, 'https://ror.org/03c7caz94 Sri Aurobindo Institute of Medical Sciences'),
(2846, 'https://ror.org/03c8c9n80', 'en', 1, 'https://ror.org/03c8c9n80 Cathay General Hospital'),
(2847, 'https://ror.org/03c8ed890', 'en', 1, 'https://ror.org/03c8ed890 Sewickley Valley Hospital'),
(2848, 'https://ror.org/03c8vvr84', 'en', 1, 'https://ror.org/03c8vvr84 University of Western States'),
(2849, 'https://ror.org/03ca99543', 'tr', 1, 'https://ror.org/03ca99543 SSK İhtisas Hastanesi'),
(2850, 'https://ror.org/03cbwf726', 'en', 1, 'https://ror.org/03cbwf726 Lakeland Regional Medical Center'),
(2851, 'https://ror.org/03cc0mm23', 'en', 1, 'https://ror.org/03cc0mm23 Nassau University Medical Center'),
(2852, 'https://ror.org/03cf9xg09', 'en', 1, 'https://ror.org/03cf9xg09 California Institute for Medical Research'),
(2853, 'https://ror.org/03cfvmk82', 'en', 1, 'https://ror.org/03cfvmk82 VA Sierra Nevada Health Care System'),
(2854, 'https://ror.org/03cfz7739', 'no_lang_code', 1, 'https://ror.org/03cfz7739 Kawasaki Hospital å·å“Žē—…é™¢'),
(2855, 'https://ror.org/03chkg278', 'en', 1, 'https://ror.org/03chkg278 Coe College'),
(2856, 'https://ror.org/03chnr738', 'en', 1, 'https://ror.org/03chnr738 Hope College'),
(2857, 'https://ror.org/03cht9689', 'en', 1, 'https://ror.org/03cht9689 Royal Hospital'),
(2858, 'https://ror.org/03cjj7d58', 'pt', 1, 'https://ror.org/03cjj7d58 Hospital Municipal Souza Aguiar'),
(2859, 'https://ror.org/03cngf009', 'en', 1, 'https://ror.org/03cngf009 Craigavon Area Hospital'),
(2860, 'https://ror.org/03cqd3e64', 'en', 1, 'https://ror.org/03cqd3e64 Connecticut Department of Public Health'),
(2861, 'https://ror.org/03cqsth74', 'en', 1, 'https://ror.org/03cqsth74 Muhlenberg College'),
(2862, 'https://ror.org/03cxsty68', 'pt', 1, 'https://ror.org/03cxsty68 Universidade Estadual do Centro-Oeste'),
(2863, 'https://ror.org/03cyvdv85', 'en', 1, 'https://ror.org/03cyvdv85 First Affiliated Hospital of Wenzhou Medical University'),
(2864, 'https://ror.org/03d0z1f54', 'no_lang_code', 1, 'https://ror.org/03d0z1f54 Electrosynthesis Company (United States)'),
(2865, 'https://ror.org/03d1v2g75', 'no_lang_code', 1, 'https://ror.org/03d1v2g75 Epoch Biosciences (United States)'),
(2866, 'https://ror.org/03d1wq758', 'en', 1, 'https://ror.org/03d1wq758 Maine Medical Center Research Institute'),
(2867, 'https://ror.org/03d4d3711', 'en', 1, 'https://ror.org/03d4d3711 Central Taiwan University of Science and Technology'),
(2868, 'https://ror.org/03d532p87', 'fr', 1, 'https://ror.org/03d532p87 HƓpital Xavier Arnozan'),
(2869, 'https://ror.org/03d58dr58', 'en', 1, 'https://ror.org/03d58dr58 National Neuroscience Institute'),
(2870, 'https://ror.org/03d5pp684', 'pt', 1, 'https://ror.org/03d5pp684 Escola Superior de Enfermagem de São José de Cluny'),
(2871, 'https://ror.org/03d6dzy78', 'en', 1, 'https://ror.org/03d6dzy78 Karnataka Institute of Medical Sciences ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²µą³†ą³–ą²¦ą³ą²Æą²•ą²æą³•ą²Æ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(2872, 'https://ror.org/03d7m4a98', 'no_lang_code', 1, 'https://ror.org/03d7m4a98 Ross Video (Canada)'),
(2873, 'https://ror.org/03d8mqt26', 'en', 1, 'https://ror.org/03d8mqt26 Princess Royal University Hospital'),
(2874, 'https://ror.org/03davap66', 'en', 1, 'https://ror.org/03davap66 Illinois State Museum'),
(2875, 'https://ror.org/03db3by08', 'en', 1, 'https://ror.org/03db3by08 Northeast Radio Observatory Corporation'),
(2876, 'https://ror.org/03dcdys28', 'en', 1, 'https://ror.org/03dcdys28 Alaska Department of Health and Social Services'),
(2877, 'https://ror.org/03ddsp339', 'no_lang_code', 1, 'https://ror.org/03ddsp339 Pyrogenesis (Canada)'),
(2878, 'https://ror.org/03ddz1316', 'en', 1, 'https://ror.org/03ddz1316 Anhui Provincial Center for Disease Control and Prevention å®‰å¾½ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(2879, 'https://ror.org/03dhz7247', 'en', 1, 'https://ror.org/03dhz7247 Research Centre for Medical Genetics'),
(2880, 'https://ror.org/03djvm380', 'it', 1, 'https://ror.org/03djvm380 Ospedale Generale Regionale Francesco Miulli'),
(2881, 'https://ror.org/03dke3h47', 'en', 1, 'https://ror.org/03dke3h47 Association of Science-Technology Centers'),
(2882, 'https://ror.org/03dkpj951', 'en', 1, 'https://ror.org/03dkpj951 East Jefferson General Hospital'),
(2883, 'https://ror.org/03dkyhy49', 'no_lang_code', 1, 'https://ror.org/03dkyhy49 Artann Laboratories, Inc.'),
(2884, 'https://ror.org/03dm1pq74', 'en', 1, 'https://ror.org/03dm1pq74 Grant Medical College and Sir Jamshedjee Jeejeebhoy Group of Hospitals'),
(2885, 'https://ror.org/03dm2se39', 'en', 1, 'https://ror.org/03dm2se39 Christ Hospital'),
(2886, 'https://ror.org/03dnktm38', 'no_lang_code', 1, 'https://ror.org/03dnktm38 Scimar Engineering Ltd'),
(2887, 'https://ror.org/03dqzan26', 'en', 1, 'https://ror.org/03dqzan26 Salem University'),
(2888, 'https://ror.org/03dsc8d33', 'no_lang_code', 1, 'https://ror.org/03dsc8d33 Systems, Applications & Products in Data Processing (Germany)'),
(2889, 'https://ror.org/03dsgss45', 'ca', 1, 'https://ror.org/03dsgss45 Hospital Mare de Déu de la Mercè'),
(2890, 'https://ror.org/03dwvx056', 'tr', 1, 'https://ror.org/03dwvx056 Elazig Education and Research Hospital Elazığ Eğitim ve Araştırma Hastanesi'),
(2891, 'https://ror.org/03dwx1z96', 'en', 1, 'https://ror.org/03dwx1z96 Maulana Azad Medical College மௌலானா ą®†ą®šą®¾ą®¤ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(2892, 'https://ror.org/03dwxvb85', 'no_lang_code', 1, 'https://ror.org/03dwxvb85 Jamia Hamdard'),
(2893, 'https://ror.org/03dx46b94', 'en', 1, 'https://ror.org/03dx46b94 Royal National Orthopaedic Hospital NHS Trust'),
(2894, 'https://ror.org/03e05fb06', 'en', 1, 'https://ror.org/03e05fb06 DSO National Laboratories'),
(2895, 'https://ror.org/03e1ayz78', 'en', 1, 'https://ror.org/03e1ayz78 University of Minnesota Medical Center'),
(2896, 'https://ror.org/03e1xkn26', 'en', 1, 'https://ror.org/03e1xkn26 Florida Department of Health'),
(2897, 'https://ror.org/03e269852', 'en', 1, 'https://ror.org/03e269852 Donetsk State University of Management Донецкий Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(2898, 'https://ror.org/03e2qe334', 'no_lang_code', 1, 'https://ror.org/03e2qe334 Naresuan University ดหาวณทยาคัยนเรศวร'),
(2899, 'https://ror.org/03e36d037', 'es', 1, 'https://ror.org/03e36d037 ABC Medical Center Centro MƩdico ABC'),
(2900, 'https://ror.org/03e4nh963', 'en', 1, 'https://ror.org/03e4nh963 Federal Medical Centre'),
(2901, 'https://ror.org/03e8ncw23', 'en', 1, 'https://ror.org/03e8ncw23 Gunma Prefectural Institute of Public Health and Environmental Sciences ē¾¤é¦¬ēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(2902, 'https://ror.org/03e8s1d88', 'en', 1, 'https://ror.org/03e8s1d88 Potsdam Institute for Climate Impact Research Potsdam-Institut für Klimafolgenforschung'),
(2903, 'https://ror.org/03eaw8c11', 'en', 1, 'https://ror.org/03eaw8c11 Bethesda North Hospital'),
(2904, 'https://ror.org/03ebg0v16', 'en', 1, 'https://ror.org/03ebg0v16 Boys Town'),
(2905, 'https://ror.org/03edafd86', 'en', 1, 'https://ror.org/03edafd86 Bogomolets National Medical University Narodowy Medyczny Uniwersytet im. O.Bohomolca ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. А. Š‘Š¾Š³Š¾Š¼Š¾Š»ŃŒŃ†Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠžŠ»ŠµŠŗŃŠ°Š½Š“Ń€Š° Š‘Š¾Š³Š¾Š¼Š¾Š»ŃŒŃ†Ń'),
(2906, 'https://ror.org/03edth057', 'en', 1, 'https://ror.org/03edth057 Teikyo University Chiba Medical Center åøäŗ¬å¤§å­¦ć”ć°ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2907, 'https://ror.org/03efxpx82', 'it', 1, 'https://ror.org/03efxpx82 A. O. Ordine Mauriziano di Torino'),
(2908, 'https://ror.org/03ej8bw49', 'en', 1, 'https://ror.org/03ej8bw49 Shanghai Changning Mental Health Center é•æå®åŒŗē²¾ē„žå«ē”Ÿäø­åæƒ'),
(2909, 'https://ror.org/03ej9xm26', 'pt', 1, 'https://ror.org/03ej9xm26 Hospital de ClĆ­nicas Universidade Federal do ParanĆ”'),
(2910, 'https://ror.org/03eksqx74', 'en', 1, 'https://ror.org/03eksqx74 Winthrop-University Hospital'),
(2911, 'https://ror.org/03ekzka28', 'en', 1, 'https://ror.org/03ekzka28 Antioch University'),
(2912, 'https://ror.org/03enmdz06', 'en', 1, 'https://ror.org/03enmdz06 California State University, Fresno UniversitĆ© d''Ɖtat de Californie Ć  Fresno'),
(2913, 'https://ror.org/03ephvw84', 'en', 1, 'https://ror.org/03ephvw84 Dronning Ingrids Hospital Queen Ingrid''s Hospital'),
(2914, 'https://ror.org/03er5cb38', 'en', 1, 'https://ror.org/03er5cb38 Moisio Hospital Moision Sairaala'),
(2915, 'https://ror.org/03et1qs84', 'en', 1, 'https://ror.org/03et1qs84 Centre mƩdical universitaire de loma linda Loma Linda University Medical Center'),
(2916, 'https://ror.org/03ew6dd87', 'en', 1, 'https://ror.org/03ew6dd87 East Tennessee Children''s Hospital'),
(2917, 'https://ror.org/03exgrk66', 'en', 1, 'https://ror.org/03exgrk66 Ewha Womans University Medical Center ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ ėŖ©ė™ė³‘ģ›'),
(2918, 'https://ror.org/03exj3651', 'en', 1, 'https://ror.org/03exj3651 Littlemore Hospital'),
(2919, 'https://ror.org/03ezzqh77', 'en', 1, 'https://ror.org/03ezzqh77 Iwate Biotechnology Research Center 貔団法人 å²©ę‰‹ē”Ÿē‰©å·„å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(2920, 'https://ror.org/03f1ecr94', 'en', 1, 'https://ror.org/03f1ecr94 Saint Thomas Midtown Hospital'),
(2921, 'https://ror.org/03f27y887', 'es', 1, 'https://ror.org/03f27y887 National University of Asuncion Universidad Nacional de Asunción'),
(2922, 'https://ror.org/03f3jde70', 'en', 1, 'https://ror.org/03f3jde70 Jaamacada Ummada Soomaaliyeed Somali National University UniversitĆ  nazionale somala'),
(2923, 'https://ror.org/03f8drh85', 'no_lang_code', 1, 'https://ror.org/03f8drh85 Haibara General Hospital ę¦›åŽŸē·åˆē—…é™¢'),
(2924, 'https://ror.org/03f91xw18', 'en', 1, 'https://ror.org/03f91xw18 Museum of the Earth'),
(2925, 'https://ror.org/03f94es11', 'pt', 1, 'https://ror.org/03f94es11 Instituto Superior Dom Afonso III'),
(2926, 'https://ror.org/03fa2nf38', 'en', 1, 'https://ror.org/03fa2nf38 Methodist University'),
(2927, 'https://ror.org/03fakbf87', 'en', 1, 'https://ror.org/03fakbf87 Colorado Permanente Medical Group'),
(2928, 'https://ror.org/03fbkqs26', 'no_lang_code', 1, 'https://ror.org/03fbkqs26 Bombardier (Canada)'),
(2929, 'https://ror.org/03fcpsq87', 'en', 1, 'https://ror.org/03fcpsq87 Providence University éœå®œå¤§å­ø'),
(2930, 'https://ror.org/03feyt230', 'en', 1, 'https://ror.org/03feyt230 Tougaloo College'),
(2931, 'https://ror.org/03ff06b47', 'en', 1, 'https://ror.org/03ff06b47 Hardin–Simmons University'),
(2932, 'https://ror.org/03ffc6g28', 'en', 1, 'https://ror.org/03ffc6g28 Kagawa National Children''s Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹é¦™å·å°å…ē—…é™¢'),
(2933, 'https://ror.org/03fgkzb55', 'en', 1, 'https://ror.org/03fgkzb55 Novant Health Presbyterian Medical Center'),
(2934, 'https://ror.org/03fh7t044', 'en', 1, 'https://ror.org/03fh7t044 University of Benghazi Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŲŗŲ§Ų²ŁŠ'),
(2935, 'https://ror.org/03fhjvs31', 'en', 1, 'https://ror.org/03fhjvs31 Center for Molecular Medicine and Immunology'),
(2936, 'https://ror.org/03fkc8c64', 'en', 1, 'https://ror.org/03fkc8c64 University of the West Indies'),
(2937, 'https://ror.org/03fng6237', 'en', 1, 'https://ror.org/03fng6237 Black Hills State University'),
(2938, 'https://ror.org/03fpqn433', 'es', 1, 'https://ror.org/03fpqn433 Hospital Juan Ramón Jiménez'),
(2939, 'https://ror.org/03fr85h91', 'en', 1, 'https://ror.org/03fr85h91 University of Uyo Teaching Hospital'),
(2940, 'https://ror.org/03fs4aq04', 'en', 1, 'https://ror.org/03fs4aq04 Institute of Fundamental Technological Research Instytut Podstawowych Problemów Techniki'),
(2941, 'https://ror.org/03ftky336', 'en', 1, 'https://ror.org/03ftky336 Saitama International Medical Center åŸ¼ēŽ‰åŒ»ē§‘å¤§å­¦å›½éš›åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2942, 'https://ror.org/03fvp2v86', 'en', 1, 'https://ror.org/03fvp2v86 Lokmanya Tilak Municipal General Hospital and Lokmanya Tilak Municipal Medical College'),
(2943, 'https://ror.org/03fvyqb23', 'en', 1, 'https://ror.org/03fvyqb23 Baptist Health Louisville'),
(2944, 'https://ror.org/03fwxcd28', 'en', 1, 'https://ror.org/03fwxcd28 Sentara Norfolk General Hospital'),
(2945, 'https://ror.org/03fz4ce66', 'en', 1, 'https://ror.org/03fz4ce66 Shanghai Institute of Hematology äøŠęµ·č”€ę¶²å­¦ē ”ē©¶ę‰€'),
(2946, 'https://ror.org/03fz57f90', 'hu', 1, 'https://ror.org/03fz57f90 Markusovszky Egyetemi OktatókórhÔz'),
(2947, 'https://ror.org/03fzyry86', 'es', 1, 'https://ror.org/03fzyry86 Hospital Universitari Sagrat Cor'),
(2948, 'https://ror.org/03g1nep17', 'no_lang_code', 1, 'https://ror.org/03g1nep17 3M (Canada)'),
(2949, 'https://ror.org/03g35dg18', 'en', 1, 'https://ror.org/03g35dg18 Delaware State University'),
(2950, 'https://ror.org/03g4hym73', 'en', 1, 'https://ror.org/03g4hym73 University of Birjand دانؓگاه ŲØŪŒŲ±Ų¬Ł†ŲÆ'),
(2951, 'https://ror.org/03g8yqb46', 'fi', 1, 'https://ror.org/03g8yqb46 Keski-Pohjanmaan keskussairaala'),
(2952, 'https://ror.org/03gb7n667', 'en', 1, 'https://ror.org/03gb7n667 University General Hospital Attikon Ī Ī‘ĪĪ•Ī Ī™Ī£Ī¤Ī—ĪœĪ™Ī‘ĪšĪŸ Ī“Ī•ĪĪ™ĪšĪŸ ĪĪŸĪ£ĪŸĪšĪŸĪœĪ•Ī™ĪŸ "Ī‘Ī¤Ī¤Ī™ĪšĪŸĪ"'),
(2953, 'https://ror.org/03gbbyk68', 'en', 1, 'https://ror.org/03gbbyk68 Holmes Regional Medical Center'),
(2954, 'https://ror.org/03gd1jf50', 'en', 1, 'https://ror.org/03gd1jf50 Shaikh Khalifa Medical City Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų“ŁŠŲ® Ų®Ł„ŁŠŁŲ© Ų§Ł„Ų·ŲØŁŠŲ©'),
(2955, 'https://ror.org/03gd3wz76', 'en', 1, 'https://ror.org/03gd3wz76 Sher-i-Kashmir Institute of Medical Sciences ؓیرِ Ś©Ų“Ł…ŪŒŲ± Ų§Ł†Ų³Ł¹ŪŒŚ†ŪŒŁˆŁ¹ آف Ł…ŪŒŚˆŪŒŚ©Ł„ سائنسز'),
(2956, 'https://ror.org/03gd6ja31', 'en', 1, 'https://ror.org/03gd6ja31 Al-Ameen Medical College'),
(2957, 'https://ror.org/03gfmry48', 'en', 1, 'https://ror.org/03gfmry48 Sheppard and Enoch Pratt Hospital'),
(2958, 'https://ror.org/03gfs5c49', 'en', 1, 'https://ror.org/03gfs5c49 Nordic School of Public Health'),
(2959, 'https://ror.org/03gjyng84', 'no_lang_code', 1, 'https://ror.org/03gjyng84 Sierra Wireless (Canada)'),
(2960, 'https://ror.org/03gk81f96', 'en', 1, 'https://ror.org/03gk81f96 Kaohsiung Medical University'),
(2961, 'https://ror.org/03gke3141', 'en', 1, 'https://ror.org/03gke3141 World Technology Evaluation Center'),
(2962, 'https://ror.org/03gpsj088', 'en', 1, 'https://ror.org/03gpsj088 Jacobs Institute of Women''s Health'),
(2963, 'https://ror.org/03grgv984', 'en', 1, 'https://ror.org/03grgv984 University Centre of Legal Medicine'),
(2964, 'https://ror.org/03grprm46', 'en', 1, 'https://ror.org/03grprm46 Clinical Emergency Hospital Bucharest Spitalul Clinic de Urgenta Bucuresti'),
(2965, 'https://ror.org/03gtdcg60', 'en', 1, 'https://ror.org/03gtdcg60 Diego Portales University Universidad Diego Portales'),
(2966, 'https://ror.org/03gvpk069', 'no_lang_code', 1, 'https://ror.org/03gvpk069 Edendale Hospital'),
(2967, 'https://ror.org/03gzyz068', 'it', 1, 'https://ror.org/03gzyz068 Ospedale Annunziata di Cosenza'),
(2968, 'https://ror.org/03h1jr755', 'en', 1, 'https://ror.org/03h1jr755 Argerich Hospital'),
(2969, 'https://ror.org/03h2ajh11', 'en', 1, 'https://ror.org/03h2ajh11 Saint Francis Hospital & Medical Center'),
(2970, 'https://ror.org/03h2bh287', 'en', 1, 'https://ror.org/03h2bh287 Oxford University Hospitals NHS Trust');
INSERT INTO `rors` VALUES
(2971, 'https://ror.org/03h2c3g63', 'no_lang_code', 1, 'https://ror.org/03h2c3g63 MatƩriaux Blanchet'),
(2972, 'https://ror.org/03h3yrx93', 'es', 1, 'https://ror.org/03h3yrx93 Hospital PediƔtrico Moctezuma'),
(2973, 'https://ror.org/03h4fx826', 'en', 1, 'https://ror.org/03h4fx826 Lehigh Valley Hospital'),
(2974, 'https://ror.org/03h5v7z82', 'en', 1, 'https://ror.org/03h5v7z82 Connolly Hospital Blanchardstown OspidƩal Uƭ Chonghaile, Baile BhlainsƩir'),
(2975, 'https://ror.org/03hamhx47', 'en', 1, 'https://ror.org/03hamhx47 Universidad de Massachusetts Lowell University of Massachusetts Lowell'),
(2976, 'https://ror.org/03haqmz43', 'fr', 1, 'https://ror.org/03haqmz43 UniversitƩ FƩlix Houphouƫt-Boigny'),
(2977, 'https://ror.org/03hbd7c15', 'no_lang_code', 1, 'https://ror.org/03hbd7c15 Therapeutics Systems Research Laboratories (United States)'),
(2978, 'https://ror.org/03hj7dq77', 'it', 1, 'https://ror.org/03hj7dq77 Ospedale Sandro Pertini'),
(2979, 'https://ror.org/03hkffh19', 'en', 1, 'https://ror.org/03hkffh19 Legacy Emanuel Medical Center'),
(2980, 'https://ror.org/03hqrv489', 'no_lang_code', 1, 'https://ror.org/03hqrv489 Advanced Liquid Logic'),
(2981, 'https://ror.org/03hrxmf69', 'en', 1, 'https://ror.org/03hrxmf69 Newton Wellesley Hospital'),
(2982, 'https://ror.org/03hvxkc45', 'en', 1, 'https://ror.org/03hvxkc45 Bibra International'),
(2983, 'https://ror.org/03hwe2705', 'en', 1, 'https://ror.org/03hwe2705 UCSF Benioff Children''s Hospital'),
(2984, 'https://ror.org/03hwmxn85', 'en', 1, 'https://ror.org/03hwmxn85 Harvard Vanguard Medical Associates'),
(2985, 'https://ror.org/03j05zz84', 'en', 1, 'https://ror.org/03j05zz84 Philadelphia VA Medical Center'),
(2986, 'https://ror.org/03j2sb517', 'en', 1, 'https://ror.org/03j2sb517 Slade Hospital'),
(2987, 'https://ror.org/03j2vsq41', 'en', 1, 'https://ror.org/03j2vsq41 Beijing Great Wall Hospital åŒ—äŗ¬åø‚é•æåŸŽåŒ»é™¢'),
(2988, 'https://ror.org/03j3q5a83', 'en', 1, 'https://ror.org/03j3q5a83 Magellan Health'),
(2989, 'https://ror.org/03j42gp22', 'en', 1, 'https://ror.org/03j42gp22 University HealthSystem Consortium'),
(2990, 'https://ror.org/03j4rdg62', 'en', 1, 'https://ror.org/03j4rdg62 Mater Mothers'' Hospital'),
(2991, 'https://ror.org/03j53f755', 'en', 1, 'https://ror.org/03j53f755 ''''ΚαραμανΓάνειο'''' Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΠαίΓων Ī Ī±Ļ„ĻĻŽĪ½ General Hospital Pediatric Karamandanio'),
(2992, 'https://ror.org/03j554d90', 'en', 1, 'https://ror.org/03j554d90 M.S. Ramaiah Medical College'),
(2993, 'https://ror.org/03j6rvb05', 'fr', 1, 'https://ror.org/03j6rvb05 HƓpital Ambroise-ParƩ'),
(2994, 'https://ror.org/03j78my65', 'en', 1, 'https://ror.org/03j78my65 Kaiser Foundation Hospital'),
(2995, 'https://ror.org/03j7khn53', 'en', 1, 'https://ror.org/03j7khn53 Shizuoka Red Cross Hospital é™å²”čµ¤åå­—ē—…é™¢'),
(2996, 'https://ror.org/03j808814', 'no_lang_code', 1, 'https://ror.org/03j808814 Hokkaido Central Hospital åŒ—ęµ·é“äø­å¤®ē—…é™¢'),
(2997, 'https://ror.org/03j9npf54', 'en', 1, 'https://ror.org/03j9npf54 Geisinger Medical Center'),
(2998, 'https://ror.org/03ja1ak26', 'en', 1, 'https://ror.org/03ja1ak26 MedStar Georgetown University Hospital'),
(2999, 'https://ror.org/03ja8fa88', 'en', 1, 'https://ror.org/03ja8fa88 Doctors Hospital'),
(3000, 'https://ror.org/03jachw67', 'en', 1, 'https://ror.org/03jachw67 Elliot Hospital'),
(3001, 'https://ror.org/03jayhg97', 'no_lang_code', 1, 'https://ror.org/03jayhg97 Milad Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł…ŪŒŁ„Ų§ŲÆ'),
(3002, 'https://ror.org/03jb9b006', 'en', 1, 'https://ror.org/03jb9b006 Dwight D. Eisenhower VA Medical Center'),
(3003, 'https://ror.org/03jckbw05', 'en', 1, 'https://ror.org/03jckbw05 First Affiliated Hospital of Chengdu Medical College ęˆéƒ½åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(3004, 'https://ror.org/03jcxa214', 'en', 1, 'https://ror.org/03jcxa214 National Maternity Hospital'),
(3005, 'https://ror.org/03jd3cd78', 'en', 1, 'https://ror.org/03jd3cd78 Kobe Children''s Hospital å…µåŗ«ēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(3006, 'https://ror.org/03jd4q354', 'it', 1, 'https://ror.org/03jd4q354 Ospedale G.B. Morgagni - L.Pierantoni'),
(3007, 'https://ror.org/03je4r797', 'en', 1, 'https://ror.org/03je4r797 Luodong Poh-Ai Hospital ē¾…ę±åšę„›é†«é™¢'),
(3008, 'https://ror.org/03jeg4p28', 'en', 1, 'https://ror.org/03jeg4p28 Cone Health'),
(3009, 'https://ror.org/03jfzsd28', 'en', 1, 'https://ror.org/03jfzsd28 Shigei Medical Research Institute é‡äŗ•åŒ»å­¦ē ”ē©¶ę‰€'),
(3010, 'https://ror.org/03jg32m15', 'en', 1, 'https://ror.org/03jg32m15 Dorothea Dix Hospital'),
(3011, 'https://ror.org/03jgh1p68', 'en', 1, 'https://ror.org/03jgh1p68 Abington Memorial Hospital'),
(3012, 'https://ror.org/03jh5a977', 'en', 1, 'https://ror.org/03jh5a977 Center for Information Technology'),
(3013, 'https://ror.org/03jhnpw59', 'en', 1, 'https://ror.org/03jhnpw59 Museum Of Northern Arizona'),
(3014, 'https://ror.org/03jmdp146', 'en', 1, 'https://ror.org/03jmdp146 Motilal Nehru Medical College'),
(3015, 'https://ror.org/03jmfdf59', 'en', 1, 'https://ror.org/03jmfdf59 Agency for Healthcare Research and Quality'),
(3016, 'https://ror.org/03jpekd50', 'en', 1, 'https://ror.org/03jpekd50 Guangdong General Hospital å¹æäøœēœč€å¹“åŒ»å­¦ē ”ē©¶ę‰€'),
(3017, 'https://ror.org/03jpj9789', 'en', 1, 'https://ror.org/03jpj9789 Glan Clwyd Hospital Ysbyty Glan Clwyd'),
(3018, 'https://ror.org/03jpkw355', 'pt', 1, 'https://ror.org/03jpkw355 Instituto de Soldadura e Qualidade'),
(3019, 'https://ror.org/03jpm9j23', 'pt', 1, 'https://ror.org/03jpm9j23 Hospital da Luz'),
(3020, 'https://ror.org/03jrn4k58', 'no_lang_code', 1, 'https://ror.org/03jrn4k58 GlaxoSmithKline (China)'),
(3021, 'https://ror.org/03js6zg56', 'en', 1, 'https://ror.org/03js6zg56 University of Agricultural Sciences, Bangalore'),
(3022, 'https://ror.org/03jss6s30', 'pt', 1, 'https://ror.org/03jss6s30 Dr. Euryclides Hospital de Jesus Zerbini'),
(3023, 'https://ror.org/03jt4wj37', 'de', 1, 'https://ror.org/03jt4wj37 UniversitƤtskliniken Salzburg'),
(3024, 'https://ror.org/03jv28t80', 'no_lang_code', 1, 'https://ror.org/03jv28t80 Lynntech (United States)'),
(3025, 'https://ror.org/03jv45898', 'no_lang_code', 1, 'https://ror.org/03jv45898 Aphios Corporation'),
(3026, 'https://ror.org/03jyr9x65', 'en', 1, 'https://ror.org/03jyr9x65 The Open University of Japan 放送大学'),
(3027, 'https://ror.org/03k1gyh28', 'no_lang_code', 1, 'https://ror.org/03k1gyh28 SNC-Lavalin (Canada)'),
(3028, 'https://ror.org/03k25vb36', 'en', 1, 'https://ror.org/03k25vb36 Indiana State Department of Education'),
(3029, 'https://ror.org/03k3bq214', 'en', 1, 'https://ror.org/03k3bq214 National Center of Biomedical Analysis å›½å®¶ē”Ÿē‰©åŒ»å­¦åˆ†ęžäø­åæƒ'),
(3030, 'https://ror.org/03k6ngg59', 'en', 1, 'https://ror.org/03k6ngg59 Friarage Hospital'),
(3031, 'https://ror.org/03k793y62', 'en', 1, 'https://ror.org/03k793y62 Agricultural University of Tirana Universiteti BujqĆ«sor i TiranĆ«s Ī“ĪµĻ‰Ļ€ĪæĪ½Ī¹ĪŗĻŒ Ļ€Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Τιράνων'),
(3032, 'https://ror.org/03k8anr87', 'en', 1, 'https://ror.org/03k8anr87 Health South Rehabilitation Hospital'),
(3033, 'https://ror.org/03ka27b61', 'en', 1, 'https://ror.org/03ka27b61 West Bengal University of Animal and Fishery Sciences ą¤Ŗą¤¶ą„ą¤šą¤æą¤® बंगाल ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤ą¤µą¤‚ ą¤Ŗą¤¶ą„ą¤Ŗą¤¾ą¤²ą¤Ø ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦Ŗą§ą¦°ą¦¾ą¦£ą§€ ও ą¦®ą§Žą¦øą§ą¦Æą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(3034, 'https://ror.org/03kcsjh25', 'en', 1, 'https://ror.org/03kcsjh25 National Institute of Statistical Sciences'),
(3035, 'https://ror.org/03kcxpp45', 'en', 1, 'https://ror.org/03kcxpp45 Iwakuni Medical Center å²©å›½åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3036, 'https://ror.org/03ke6tv85', 'en', 1, 'https://ror.org/03ke6tv85 University of Southern Maine'),
(3037, 'https://ror.org/03ke9vf24', 'en', 1, 'https://ror.org/03ke9vf24 Al-Arab Medical University Ų¬Ų§Ł…Ų¹Ų© العرب Ų§Ł„Ų·ŲØŁŠŲ©'),
(3038, 'https://ror.org/03khjyh83', 'en', 1, 'https://ror.org/03khjyh83 Genome Research Foundation'),
(3039, 'https://ror.org/03kkr2s40', 'en', 1, 'https://ror.org/03kkr2s40 Pondicherry Institute of Medical Sciences'),
(3040, 'https://ror.org/03kmrjq19', 'en', 1, 'https://ror.org/03kmrjq19 Departamento de Salud y Servicios para las Personas Mayores del Estado de Nueva Jersey New Jersey Department of Health'),
(3041, 'https://ror.org/03kpa7r53', 'en', 1, 'https://ror.org/03kpa7r53 Herttoniemi Hospital'),
(3042, 'https://ror.org/03kpvby98', 'en', 1, 'https://ror.org/03kpvby98 MRC Unit for Lifelong Health and Ageing'),
(3043, 'https://ror.org/03ks67450', 'en', 1, 'https://ror.org/03ks67450 Inova Alexandria Hospital'),
(3044, 'https://ror.org/03kv7mk61', 'no_lang_code', 1, 'https://ror.org/03kv7mk61 MPC Computers (United States)'),
(3045, 'https://ror.org/03kw9gc02', 'en', 1, 'https://ror.org/03kw9gc02 Aligarh Muslim University UniversitĆ© musulmane d''aligarh جامعہ Ų¹Ł„ŪŒ گڑھ ą¤…ą¤²ą„€ą¤—ą¤¢ą¤¼ ą¤®ą„ą¤øą„ą¤²ą¤æą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ আলিগঔ় মুসলিম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ąØ…ąØ²ą©€ąØ—ą©œ ਮੁਸਲਿਮ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®…ą®²ą®æą®•ą®¾ą®°ąÆ ą®®ąÆą®øąÆą®²ą®æą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°…ą°²ą±€ą°˜ą°°ą± ą°®ą±ą°øą±ą°²ą°æą°‚ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²…ą²²ą²æą²˜ą²°ą³ ą²®ą³ą²øą³ą²²ą²æą²®ą³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą“…ą“²ą“æą“—ą“¢ąµ ą“®ąµą“øąµą“²ą“æą“‚ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(3046, 'https://ror.org/03kzpyr73', 'en', 1, 'https://ror.org/03kzpyr73 MedStar Good Samaritan Hospital'),
(3047, 'https://ror.org/03m04df46', 'en', 1, 'https://ror.org/03m04df46 University Hospital Magdeburg UniversitƤtsklinikum Magdeburg'),
(3048, 'https://ror.org/03m2nqg26', 'fr', 1, 'https://ror.org/03m2nqg26 Centre Hospitalier Universitaire Hassan II'),
(3049, 'https://ror.org/03m5bv793', 'en', 1, 'https://ror.org/03m5bv793 Marianjoy Rehabilitation Hospital'),
(3050, 'https://ror.org/03m6tev69', 'en', 1, 'https://ror.org/03m6tev69 Morristown Medical Center'),
(3051, 'https://ror.org/03m7azy07', 'en', 1, 'https://ror.org/03m7azy07 Nebraska Department of Health and Human Services'),
(3052, 'https://ror.org/03m908832', 'en', 1, 'https://ror.org/03m908832 Lehman College'),
(3053, 'https://ror.org/03m964n84', 'en', 1, 'https://ror.org/03m964n84 Aichi University of Education ę„›ēŸ„ę•™č‚²å¤§å­¦'),
(3054, 'https://ror.org/03max4q92', 'tr', 1, 'https://ror.org/03max4q92 Izmir Atatürk Eğitim ve Araştırma Hastanesi'),
(3055, 'https://ror.org/03mbq3y29', 'en', 1, 'https://ror.org/03mbq3y29 Lahey Hospital and Medical Center'),
(3056, 'https://ror.org/03mccxv57', 'en', 1, 'https://ror.org/03mccxv57 Derbyshire Children''s Hospital'),
(3057, 'https://ror.org/03mdzf107', 'en', 1, 'https://ror.org/03mdzf107 Amala Institute of Medical Sciences ą“…ą“®ą“² ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“Ÿąµą“Ÿąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“øą“Æąµ»ą“øą“øąµ'),
(3058, 'https://ror.org/03mehsr39', 'en', 1, 'https://ror.org/03mehsr39 Hokushin General Hospital åŒ—äæ”ē·åˆē—…é™¢'),
(3059, 'https://ror.org/03mfyz684', 'en', 1, 'https://ror.org/03mfyz684 King County Medical Examiner''s Office'),
(3060, 'https://ror.org/03mh75s52', 'en', 1, 'https://ror.org/03mh75s52 Hangzhou Red Cross Hospital ę­å·žåø‚ēŗ¢åå­—ä¼šåŒ»é™¢'),
(3061, 'https://ror.org/03mjtdk61', 'en', 1, 'https://ror.org/03mjtdk61 Mater Health Services'),
(3062, 'https://ror.org/03mmk1j33', 'no_lang_code', 1, 'https://ror.org/03mmk1j33 Blackberry (Canada)'),
(3063, 'https://ror.org/03mnm0t94', 'en', 1, 'https://ror.org/03mnm0t94 University of Wisconsin–Eau Claire UniversitĆ© du Wisconsin Ć  Eau Claire'),
(3064, 'https://ror.org/03mnxwj46', 'en', 1, 'https://ror.org/03mnxwj46 Metropolitan State University of Denver'),
(3065, 'https://ror.org/03mpekj96', 'en', 1, 'https://ror.org/03mpekj96 MSPCA-Angell'),
(3066, 'https://ror.org/03msdae35', 'en', 1, 'https://ror.org/03msdae35 Minnesota State University Moorhead UniversitĆ© d''Ɖtat du minnesota'),
(3067, 'https://ror.org/03mstc592', 'en', 1, 'https://ror.org/03mstc592 European Molecular Biology Laboratory Europäisches Laboratorium für Molekularbiologie'),
(3068, 'https://ror.org/03mt09h51', 'en', 1, 'https://ror.org/03mt09h51 Lyndon Baines Johnson Hospital'),
(3069, 'https://ror.org/03mt12903', 'es', 1, 'https://ror.org/03mt12903 Hospital San Juan de Dios'),
(3070, 'https://ror.org/03mtnpp42', 'it', 1, 'https://ror.org/03mtnpp42 Ospedale Cannizzaro'),
(3071, 'https://ror.org/03mv07c21', 'no_lang_code', 1, 'https://ror.org/03mv07c21 Arthur D. Little (Czechia)'),
(3072, 'https://ror.org/03mv9x076', 'en', 1, 'https://ror.org/03mv9x076 HCI International Medical Centre'),
(3073, 'https://ror.org/03mwa7s65', 'en', 1, 'https://ror.org/03mwa7s65 Ministry of Health Labour and Welfare åŽšē”ŸåŠ“åƒēœ'),
(3074, 'https://ror.org/03mwnnn55', 'en', 1, 'https://ror.org/03mwnnn55 Charleston Southern University'),
(3075, 'https://ror.org/03mx23f83', 'es', 1, 'https://ror.org/03mx23f83 Hospital Montecelo'),
(3076, 'https://ror.org/03n0fp725', 'en', 1, 'https://ror.org/03n0fp725 Children''s Hospital at Montefiore'),
(3077, 'https://ror.org/03n0nnh89', 'ms', 1, 'https://ror.org/03n0nnh89 Hospital Kuala Lumpur'),
(3078, 'https://ror.org/03n20pp93', 'en', 1, 'https://ror.org/03n20pp93 Awadhesh Pratap Singh University ą¤…ą¤µą¤§ą„‡ą¤¶ ą¤Ŗą„ą¤°ą¤¤ą¤¾ą¤Ŗ सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(3079, 'https://ror.org/03n2ay196', 'en', 1, 'https://ror.org/03n2ay196 South Texas Veterans Health Care System'),
(3080, 'https://ror.org/03n34rg04', 'en', 1, 'https://ror.org/03n34rg04 Elmhurst Hospital Center'),
(3081, 'https://ror.org/03n35e656', 'no_lang_code', 1, 'https://ror.org/03n35e656 Shuguang Hospital'),
(3082, 'https://ror.org/03n3pz732', 'en', 1, 'https://ror.org/03n3pz732 Medwin Hospital'),
(3083, 'https://ror.org/03n5gdd09', 'en', 1, 'https://ror.org/03n5gdd09 Anhui Provincial Hospital'),
(3084, 'https://ror.org/03n60ms07', 'it', 1, 'https://ror.org/03n60ms07 Ospedale G.F. Ingrassia'),
(3085, 'https://ror.org/03n6cf849', 'no_lang_code', 1, 'https://ror.org/03n6cf849 Ricerca sul Sistema Energetico (Italy)'),
(3086, 'https://ror.org/03n6vs369', 'fr', 1, 'https://ror.org/03n6vs369 HƓpital Avicenne'),
(3087, 'https://ror.org/03n85hy63', 'es', 1, 'https://ror.org/03n85hy63 Hospital Militar Dr. Carlos Arvelo'),
(3088, 'https://ror.org/03na8p459', 'no_lang_code', 1, 'https://ror.org/03na8p459 Yokohama Rosai Hospital ęØŖęµœåŠ“ē½ē—…é™¢'),
(3089, 'https://ror.org/03navsr28', 'fr', 1, 'https://ror.org/03navsr28 HÓpital Mère-Enfant'),
(3090, 'https://ror.org/03nc3zw41', 'en', 1, 'https://ror.org/03nc3zw41 Matsue Red Cross Hospital ę¾ę±Ÿčµ¤åå­—ē—…é™¢'),
(3091, 'https://ror.org/03ncj7n33', 'no_lang_code', 1, 'https://ror.org/03ncj7n33 Jordanian Universities Network (Jordan)'),
(3092, 'https://ror.org/03ndmsg87', 'no_lang_code', 1, 'https://ror.org/03ndmsg87 Charles River Laboratories (United States)'),
(3093, 'https://ror.org/03ne66j56', 'en', 1, 'https://ror.org/03ne66j56 Flushing Hospital Medical Center'),
(3094, 'https://ror.org/03nj2kd75', 'en', 1, 'https://ror.org/03nj2kd75 Houston Health and Human Services Department'),
(3095, 'https://ror.org/03np13864', 'en', 1, 'https://ror.org/03np13864 Universidad de Trinidad y Tobago University of Trinidad and Tobago'),
(3096, 'https://ror.org/03npxtg86', 'en', 1, 'https://ror.org/03npxtg86 Queen Elizabeth Hospital'),
(3097, 'https://ror.org/03nr55d93', 'en', 1, 'https://ror.org/03nr55d93 North West Armed Forces Hospital مستؓفى Ų§Ł„Ł‚ŁˆŲ§ŲŖ المسلحة ŲØŲ§Ł„Ų“Ł…Ų§Ł„ŁŠŲ©'),
(3098, 'https://ror.org/03nrgvp52', 'en', 1, 'https://ror.org/03nrgvp52 Centinela Hospital Medical Center'),
(3099, 'https://ror.org/03nscjy42', 'no_lang_code', 1, 'https://ror.org/03nscjy42 General Electric (Denmark)'),
(3100, 'https://ror.org/03nteze27', 'en', 1, 'https://ror.org/03nteze27 National Taiwan University Hospital'),
(3101, 'https://ror.org/03nvpm562', 'en', 1, 'https://ror.org/03nvpm562 Shimane University Hospital 島根大学病院'),
(3102, 'https://ror.org/03nw9hs25', 'en', 1, 'https://ror.org/03nw9hs25 Alberta Hospital Edmonton'),
(3103, 'https://ror.org/03nysxh02', 'no_lang_code', 1, 'https://ror.org/03nysxh02 NovoMedix (United States)'),
(3104, 'https://ror.org/03nzegx43', 'es', 1, 'https://ror.org/03nzegx43 Cruces University Hospital Hospital de Cruces'),
(3105, 'https://ror.org/03nzj6y61', 'en', 1, 'https://ror.org/03nzj6y61 Health Net'),
(3106, 'https://ror.org/03p09n514', 'no_lang_code', 1, 'https://ror.org/03p09n514 Danya International, Inc.'),
(3107, 'https://ror.org/03p30f964', 'en', 1, 'https://ror.org/03p30f964 Lincoln County Hospital'),
(3108, 'https://ror.org/03p43tq86', 'ms', 1, 'https://ror.org/03p43tq86 Hospital Selayang'),
(3109, 'https://ror.org/03panb555', 'en', 1, 'https://ror.org/03panb555 Lanzhou University of Technology å…°å·žē†å·„å¤§å­¦'),
(3110, 'https://ror.org/03pdc2j75', 'tr', 1, 'https://ror.org/03pdc2j75 Haydarpaşa Numune Eğitim ve Araştırma Hastanesi'),
(3111, 'https://ror.org/03pfmgq50', 'en', 1, 'https://ror.org/03pfmgq50 Fooyin University'),
(3112, 'https://ror.org/03pjj1n42', 'en', 1, 'https://ror.org/03pjj1n42 Dhahran Health Center'),
(3113, 'https://ror.org/03pm2yz25', 'en', 1, 'https://ror.org/03pm2yz25 Kumamoto Health Science University ē†Šęœ¬äæå„ē§‘å­¦å¤§å­¦'),
(3114, 'https://ror.org/03pmd4250', 'no_lang_code', 1, 'https://ror.org/03pmd4250 Shinko Hospital ē„žé‹¼čØ˜åæµē—…é™¢'),
(3115, 'https://ror.org/03pq6f684', 'en', 1, 'https://ror.org/03pq6f684 Asian Institute of Gastroenterology'),
(3116, 'https://ror.org/03pshcc38', 'en', 1, 'https://ror.org/03pshcc38 Halton General Hospital'),
(3117, 'https://ror.org/03psk2k71', 'sl', 1, 'https://ror.org/03psk2k71 SploŔna BolniŔnica Celje'),
(3118, 'https://ror.org/03pskkc12', 'en', 1, 'https://ror.org/03pskkc12 National Academy of Medical Sciences'),
(3119, 'https://ror.org/03pw3x387', 'no_lang_code', 1, 'https://ror.org/03pw3x387 Gangneung Asan Hospital'),
(3120, 'https://ror.org/03pwcc270', 'en', 1, 'https://ror.org/03pwcc270 Auburn University System'),
(3121, 'https://ror.org/03px4ez74', 'en', 1, 'https://ror.org/03px4ez74 Zoological Society of London'),
(3122, 'https://ror.org/03pz1p187', 'en', 1, 'https://ror.org/03pz1p187 Alberta Health'),
(3123, 'https://ror.org/03pz7fw94', 'it', 1, 'https://ror.org/03pz7fw94 Azienda Sanitaria Ospedaliera S.Croce e Carle Cuneo'),
(3124, 'https://ror.org/03pzgk858', 'en', 1, 'https://ror.org/03pzgk858 Hospital South West Jutland Sydvestjysk Sygehus'),
(3125, 'https://ror.org/03q01be91', 'en', 1, 'https://ror.org/03q01be91 Fujieda Municipal General Hospital č—¤ęžåø‚ē«‹ē·åˆē—…é™¢'),
(3126, 'https://ror.org/03q0mrg27', 'es', 1, 'https://ror.org/03q0mrg27 Hospital Can Misses'),
(3127, 'https://ror.org/03q1gvb68', 'no_lang_code', 1, 'https://ror.org/03q1gvb68 Neoleukin Therapeutics (Canada)'),
(3128, 'https://ror.org/03q21mh05', 'en', 1, 'https://ror.org/03q21mh05 Cairo University UniversitĆ© du Caire Ų¬Ų§Ł…Ų¹Ų© القاهرة'),
(3129, 'https://ror.org/03q3gmk48', 'en', 1, 'https://ror.org/03q3gmk48 MedStar National Rehabilitation Hospital'),
(3130, 'https://ror.org/03q3s7962', 'en', 1, 'https://ror.org/03q3s7962 Huizhou University ęƒ å·žå­¦é™¢'),
(3131, 'https://ror.org/03q45zd70', 'en', 1, 'https://ror.org/03q45zd70 South Dakota Foundation for Medical Care'),
(3132, 'https://ror.org/03q4p1y48', 'en', 1, 'https://ror.org/03q4p1y48 Haga Hospital HagaZiekenhuis'),
(3133, 'https://ror.org/03q7y2p06', 'en', 1, 'https://ror.org/03q7y2p06 Ibaraki Prefectural Central Hospital čŒØåŸŽēœŒē«‹äø­å¤®ē—…é™¢'),
(3134, 'https://ror.org/03qaqdm58', 'sv', 1, 'https://ror.org/03qaqdm58 Capio Lundby Sjukhus'),
(3135, 'https://ror.org/03qg42k57', 'no_lang_code', 1, 'https://ror.org/03qg42k57 Ishinomaki Senshu University ēŸ³å·»å°‚äæ®å¤§å­¦'),
(3136, 'https://ror.org/03qgg3111', 'es', 1, 'https://ror.org/03qgg3111 Universidad Centroccidental Lisandro Alvarado'),
(3137, 'https://ror.org/03qjk6p58', 'en', 1, 'https://ror.org/03qjk6p58 Dayton VA Medical Center'),
(3138, 'https://ror.org/03qqbe534', 'en', 1, 'https://ror.org/03qqbe534 Korea National University of Transportation ķ•œźµ­źµķ†µėŒ€ķ•™źµ'),
(3139, 'https://ror.org/03qrkhd32', 'en', 1, 'https://ror.org/03qrkhd32 Heilongjiang Provincial Hospital é»‘é¾™ę±ŸēœåŒ»é™¢'),
(3140, 'https://ror.org/03qrrp624', 'en', 1, 'https://ror.org/03qrrp624 Hirosaki National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹å¼˜å‰ē—…é™¢'),
(3141, 'https://ror.org/03qv5tx95', 'no_lang_code', 1, 'https://ror.org/03qv5tx95 Hygeia Hospital ΄γεία'),
(3142, 'https://ror.org/03qvtpc38', 'en', 1, 'https://ror.org/03qvtpc38 Dong-A University ė™ģ•„ėŒ€ķ•™źµ'),
(3143, 'https://ror.org/03qwghy04', 'en', 1, 'https://ror.org/03qwghy04 Duran i Reynals Hospital'),
(3144, 'https://ror.org/03qxkp346', 'pt', 1, 'https://ror.org/03qxkp346 Hospital of St. Francis Xavier'),
(3145, 'https://ror.org/03qyxqf94', 'en', 1, 'https://ror.org/03qyxqf94 Little Company of Mary Hospital'),
(3146, 'https://ror.org/03qz9vy49', 'no_lang_code', 1, 'https://ror.org/03qz9vy49 Photon Imaging (United States)'),
(3147, 'https://ror.org/03r1zz567', 'en', 1, 'https://ror.org/03r1zz567 Idaho Department of Health and Welfare'),
(3148, 'https://ror.org/03r24vd05', 'en', 1, 'https://ror.org/03r24vd05 Robert Morris University Universidad Robert Morris'),
(3149, 'https://ror.org/03r30hs79', 'de', 1, 'https://ror.org/03r30hs79 Israelitisches Krankenhaus'),
(3150, 'https://ror.org/03r419717', 'en', 1, 'https://ror.org/03r419717 Kementerian Kesehatan Ministry of Health'),
(3151, 'https://ror.org/03r56rv89', 'en', 1, 'https://ror.org/03r56rv89 King Edward VIII Hospital'),
(3152, 'https://ror.org/03r5mk904', 'pt', 1, 'https://ror.org/03r5mk904 Hospital SĆ­rio-LibanĆŖs Syrian-Lebanese Hospital'),
(3153, 'https://ror.org/03r6k1a05', 'en', 1, 'https://ror.org/03r6k1a05 Institute of Occupational Medicine'),
(3154, 'https://ror.org/03r6qg857', 'en', 1, 'https://ror.org/03r6qg857 Cambridge Hospital'),
(3155, 'https://ror.org/03r776098', 'en', 1, 'https://ror.org/03r776098 Saint Alphonsus Regional Medical Center'),
(3156, 'https://ror.org/03r781319', 'en', 1, 'https://ror.org/03r781319 Bronovo Hospital Bronovo Ziekenhuis'),
(3157, 'https://ror.org/03r7eh333', 'en', 1, 'https://ror.org/03r7eh333 Tulane Lakeside Hospital'),
(3158, 'https://ror.org/03rbn9086', 'en', 1, 'https://ror.org/03rbn9086 Monmouth College'),
(3159, 'https://ror.org/03rfbyn37', 'en', 1, 'https://ror.org/03rfbyn37 Northampton General Hospital'),
(3160, 'https://ror.org/03rhyss57', 'en', 1, 'https://ror.org/03rhyss57 Day General Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† دی'),
(3161, 'https://ror.org/03rj2a342', 'en', 1, 'https://ror.org/03rj2a342 Good Samaritan Hospital'),
(3162, 'https://ror.org/03rjt0z37', 'en', 1, 'https://ror.org/03rjt0z37 German University in Cairo الجامعة Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ© بالقاهرة'),
(3163, 'https://ror.org/03rmwy138', 'en', 1, 'https://ror.org/03rmwy138 Children''s Hospital Zagreb Klinika za Djecje bolesti Zagreb'),
(3164, 'https://ror.org/03rppv730', 'en', 1, 'https://ror.org/03rppv730 Aga Khan University Hospital Nairobi'),
(3165, 'https://ror.org/03rq2h425', 'no_lang_code', 1, 'https://ror.org/03rq2h425 Shimane Prefectural Central Hospital å³¶ę ¹ēœŒē«‹äø­å¤®ē—…é™¢'),
(3166, 'https://ror.org/03rq50d77', 'en', 1, 'https://ror.org/03rq50d77 Royal Victoria Hospital'),
(3167, 'https://ror.org/03rqm8n56', 'en', 1, 'https://ror.org/03rqm8n56 Ivanovo State University Ивановский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(3168, 'https://ror.org/03rr7q548', 'en', 1, 'https://ror.org/03rr7q548 Armstrong Atlantic State University'),
(3169, 'https://ror.org/03rtgjq94', 'en', 1, 'https://ror.org/03rtgjq94 University of South Carolina System'),
(3170, 'https://ror.org/03rx7qt61', 'en', 1, 'https://ror.org/03rx7qt61 Maryland State Medical Society'),
(3171, 'https://ror.org/03rx9r010', 'en', 1, 'https://ror.org/03rx9r010 Carraway Methodist Medical Center'),
(3172, 'https://ror.org/03s18mw09', 'it', 1, 'https://ror.org/03s18mw09 Ospedale L. Bonomo'),
(3173, 'https://ror.org/03s2fmv96', 'en', 1, 'https://ror.org/03s2fmv96 Lancaster General Hospital'),
(3174, 'https://ror.org/03s2gs602', 'en', 1, 'https://ror.org/03s2gs602 Kawasaki University of Medical Welfare å·å“ŽåŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(3175, 'https://ror.org/03s32c292', 'en', 1, 'https://ror.org/03s32c292 Queen Elizabeth II Hospital'),
(3176, 'https://ror.org/03s33gc98', 'it', 1, 'https://ror.org/03s33gc98 Ospedale Bassini'),
(3177, 'https://ror.org/03s3dhf22', 'en', 1, 'https://ror.org/03s3dhf22 Centre hospitalier de St- Mary St Mary''s Hospital'),
(3178, 'https://ror.org/03s5q0090', 'en', 1, 'https://ror.org/03s5q0090 Asan Medical Center ģ„œģšøģ•„ģ‚°ė³‘ģ›'),
(3179, 'https://ror.org/03s5r4e84', 'en', 1, 'https://ror.org/03s5r4e84 VA NY Harbor Healthcare System'),
(3180, 'https://ror.org/03s8txj32', 'en', 1, 'https://ror.org/03s8txj32 Second Affiliated Hospital of Harbin Medical University'),
(3181, 'https://ror.org/03s9ada67', 'en', 1, 'https://ror.org/03s9ada67 HealthPartners'),
(3182, 'https://ror.org/03s9jrm13', 'no_lang_code', 1, 'https://ror.org/03s9jrm13 Kwong Wah Hospital å»£čÆé†«é™¢'),
(3183, 'https://ror.org/03sbc8x80', 'fr', 1, 'https://ror.org/03sbc8x80 Centre Hospitalier Universitaire Ibn Rochd'),
(3184, 'https://ror.org/03sbhge02', 'en', 1, 'https://ror.org/03sbhge02 Hallym University ķ•œė¦¼ėŒ€ķ•™źµ'),
(3185, 'https://ror.org/03sc99320', 'en', 1, 'https://ror.org/03sc99320 Hitachi General Hospital ę—„ē«‹ē·åˆē—…é™¢'),
(3186, 'https://ror.org/03scbek41', 'en', 1, 'https://ror.org/03scbek41 Royal Orthopaedic Hospital'),
(3187, 'https://ror.org/03se9eg94', 'pt', 1, 'https://ror.org/03se9eg94 Hospital das ClĆ­nicas da Faculdade de Medicina da Universidade de SĆ£o Paulo University of SĆ£o Paulo Faculty of Medicine Clinics Hospital'),
(3188, 'https://ror.org/03sf6p593', 'en', 1, 'https://ror.org/03sf6p593 Showa Women''s University ę˜­å’Œå„³å­å¤§å­¦'),
(3189, 'https://ror.org/03sfkwk85', 'en', 1, 'https://ror.org/03sfkwk85 Rockefeller Foundation'),
(3190, 'https://ror.org/03sfybe47', 'en', 1, 'https://ror.org/03sfybe47 BC Cancer Agency'),
(3191, 'https://ror.org/03shav252', 'en', 1, 'https://ror.org/03shav252 Kazan State Technological University Казанский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(3192, 'https://ror.org/03sjjqm13', 'en', 1, 'https://ror.org/03sjjqm13 Inouye Eye Hospital äŗ•äøŠēœ¼ē§‘ē—…é™¢'),
(3193, 'https://ror.org/03sn6yr77', 'en', 1, 'https://ror.org/03sn6yr77 Point Blue Conservation Science'),
(3194, 'https://ror.org/03snrmr61', 'en', 1, 'https://ror.org/03snrmr61 Genesys Regional Medical Center'),
(3195, 'https://ror.org/03ss88z23', 'en', 1, 'https://ror.org/03ss88z23 Kagoshima University 鹿児島大学'),
(3196, 'https://ror.org/03sswts20', 'en', 1, 'https://ror.org/03sswts20 University of Mobile UniversitƩ de mobile'),
(3197, 'https://ror.org/03ssyyt85', 'en', 1, 'https://ror.org/03ssyyt85 Ottawa County Health Department'),
(3198, 'https://ror.org/03sz8rb35', 'es', 1, 'https://ror.org/03sz8rb35 Hospital General Universitario De Valencia'),
(3199, 'https://ror.org/03t0zwh35', 'en', 1, 'https://ror.org/03t0zwh35 International Women''s Health Coalition'),
(3200, 'https://ror.org/03t1yn780', 'en', 1, 'https://ror.org/03t1yn780 First Affiliated Hospital of Anhui Medical University'),
(3201, 'https://ror.org/03t3q6164', 'en', 1, 'https://ror.org/03t3q6164 Rancho Los Amigos National Rehabilitation Center'),
(3202, 'https://ror.org/03t3qg659', 'en', 1, 'https://ror.org/03t3qg659 Substance Abuse and Mental Health Services Administration'),
(3203, 'https://ror.org/03t40cz74', 'no_lang_code', 1, 'https://ror.org/03t40cz74 Hypres (United States)'),
(3204, 'https://ror.org/03t4gtw27', 'ro', 1, 'https://ror.org/03t4gtw27 Spitalul Clinic de Urgenta Sfantul Ioan'),
(3205, 'https://ror.org/03t78za89', 'en', 1, 'https://ror.org/03t78za89 Regional Medical Center'),
(3206, 'https://ror.org/03t7m8092', 'en', 1, 'https://ror.org/03t7m8092 Public Health Foundation Enterprises'),
(3207, 'https://ror.org/03t8gvx47', 'en', 1, 'https://ror.org/03t8gvx47 Rampton Hospital'),
(3208, 'https://ror.org/03tatzf36', 'en', 1, 'https://ror.org/03tatzf36 Shandong Eye Institute & Hospital å±±äøœēœēœ¼ē§‘ē ”ē©¶ę‰€é’å²›äøŽåŒ»é™¢'),
(3209, 'https://ror.org/03tbh6y23', 'en', 1, 'https://ror.org/03tbh6y23 University of the Philippines Diliman'),
(3210, 'https://ror.org/03tds6380', 'en', 1, 'https://ror.org/03tds6380 Ohio Department of Mental Health & Addiction Services'),
(3211, 'https://ror.org/03teaad16', 'en', 1, 'https://ror.org/03teaad16 Rex Hospital'),
(3212, 'https://ror.org/03tf96d34', 'it', 1, 'https://ror.org/03tf96d34 Azienda Ospedaliera Universitaria Policlinico "G. Martino"'),
(3213, 'https://ror.org/03tfy3c27', 'es', 1, 'https://ror.org/03tfy3c27 Hospital Vega Baja'),
(3214, 'https://ror.org/03tg0z446', 'en', 1, 'https://ror.org/03tg0z446 Odisha University of Agriculture and Technology उऔिसा ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(3215, 'https://ror.org/03thhhv76', 'en', 1, 'https://ror.org/03thhhv76 American Type Culture Collection'),
(3216, 'https://ror.org/03thzz813', 'en', 1, 'https://ror.org/03thzz813 Meikai University ę˜Žęµ·å¤§å­¦'),
(3217, 'https://ror.org/03tkfgy13', 'en', 1, 'https://ror.org/03tkfgy13 Simanogleio-Amalia Fleming General Hospital Σισμανόγλειο-Αμαλία Φλέμινγκ Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(3218, 'https://ror.org/03tktyg33', 'en', 1, 'https://ror.org/03tktyg33 Western Oklahoma State College'),
(3219, 'https://ror.org/03tn5ee41', 'en', 1, 'https://ror.org/03tn5ee41 Benha University UniversitĆ© de Banha Ų¬Ų§Ł…Ų¹Ų© بنها'),
(3220, 'https://ror.org/03tp0ty93', 'en', 1, 'https://ror.org/03tp0ty93 Geha Mental Health Center ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש גהה'),
(3221, 'https://ror.org/03tqnz817', 'en', 1, 'https://ror.org/03tqnz817 Sachs'' Children and Youth Hospital'),
(3222, 'https://ror.org/03tr4r126', 'en', 1, 'https://ror.org/03tr4r126 Narayan Medical College and Hospital'),
(3223, 'https://ror.org/03tth1e03', 'en', 1, 'https://ror.org/03tth1e03 University of Life Sciences in Poznań Uniwersytet Przyrodniczy w Poznaniu'),
(3224, 'https://ror.org/03tv0az53', 'en', 1, 'https://ror.org/03tv0az53 Fairfield General Hospital'),
(3225, 'https://ror.org/03ty5px05', 'en', 1, 'https://ror.org/03ty5px05 Hunan Entry-Exit Inspection and Quarantine Bureau'),
(3226, 'https://ror.org/03ty7jy62', 'en', 1, 'https://ror.org/03ty7jy62 Alexian Brothers Medical Center'),
(3227, 'https://ror.org/03v188q73', 'en', 1, 'https://ror.org/03v188q73 Earthquake Engineering Research Institute'),
(3228, 'https://ror.org/03v4m1x12', 'en', 1, 'https://ror.org/03v4m1x12 Damghan University دانؓگاه دامغان'),
(3229, 'https://ror.org/03v6t2982', 'en', 1, 'https://ror.org/03v6t2982 Moses Taylor Hospital'),
(3230, 'https://ror.org/03v7hnv07', 'no_lang_code', 1, 'https://ror.org/03v7hnv07 Metaxa Hospital'),
(3231, 'https://ror.org/03v85ar63', 'en', 1, 'https://ror.org/03v85ar63 Central University Hospital of Asturias'),
(3232, 'https://ror.org/03v8v5y65', 'it', 1, 'https://ror.org/03v8v5y65 Consorzio Interuniversitario Nazionale per l''Informatica National Interuniversity Consortium for Informatics'),
(3233, 'https://ror.org/03vaer060', 'en', 1, 'https://ror.org/03vaer060 MRC University of Glasgow Centre for Virus Research'),
(3234, 'https://ror.org/03vamsh08', 'en', 1, 'https://ror.org/03vamsh08 County Durham and Darlington NHS Foundation Trust'),
(3235, 'https://ror.org/03vb4dm14', 'en', 1, 'https://ror.org/03vb4dm14 Texas A&M University at Qatar Ų¬Ų§Ł…Ų¹Ų© تكساس أي اند Ų„Ł…'),
(3236, 'https://ror.org/03vc5bf16', 'en', 1, 'https://ror.org/03vc5bf16 Cappagh National Orthopaedic Hospital'),
(3237, 'https://ror.org/03vc89b25', 'en', 1, 'https://ror.org/03vc89b25 Osaka Bio Headquarters'),
(3238, 'https://ror.org/03vd2y814', 'en', 1, 'https://ror.org/03vd2y814 Kitasato University Medical Center åŒ—é‡Œå¤§å­¦ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(3239, 'https://ror.org/03vdj0f87', 'en', 1, 'https://ror.org/03vdj0f87 AtlantiCare'),
(3240, 'https://ror.org/03vf51s41', 'hr', 1, 'https://ror.org/03vf51s41 Klinički bolnički centar Osijek'),
(3241, 'https://ror.org/03vgdd632', 'no_lang_code', 1, 'https://ror.org/03vgdd632 Ichor Medical Systems (United States)'),
(3242, 'https://ror.org/03vgqy581', 'no_lang_code', 1, 'https://ror.org/03vgqy581 Asahikawa University ę—­å·å¤§å­¦'),
(3243, 'https://ror.org/03vj41343', 'en', 1, 'https://ror.org/03vj41343 San Francicso Brain Research Institute & SAM Technology'),
(3244, 'https://ror.org/03vj98x35', 'en', 1, 'https://ror.org/03vj98x35 Beijing Dao Pei Hospital åŒ—äŗ¬é“åŸ¹åŒ»é™¢'),
(3245, 'https://ror.org/03vjkf643', 'en', 1, 'https://ror.org/03vjkf643 Shanghai Tenth People''s Hospital äøŠęµ·ē¬¬åäŗŗę°‘åŒ»é™¢'),
(3246, 'https://ror.org/03vkkz907', 'en', 1, 'https://ror.org/03vkkz907 Batra Hospital and Medical Research Centre'),
(3247, 'https://ror.org/03vmdsx94', 'en', 1, 'https://ror.org/03vmdsx94 Nagara Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹é•·č‰ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3248, 'https://ror.org/03vn2ff22', 'en', 1, 'https://ror.org/03vn2ff22 Missouri Western State University'),
(3249, 'https://ror.org/03vnftm46', 'no_lang_code', 1, 'https://ror.org/03vnftm46 Maxwell Sensors'),
(3250, 'https://ror.org/03vnj0h28', 'en', 1, 'https://ror.org/03vnj0h28 Duke Children''s Hospital & Health Center'),
(3251, 'https://ror.org/03vnshb93', 'en', 1, 'https://ror.org/03vnshb93 Transport for London'),
(3252, 'https://ror.org/03vpd6e34', 'en', 1, 'https://ror.org/03vpd6e34 Hayatabad Medical Complex'),
(3253, 'https://ror.org/03vt2s541', 'en', 1, 'https://ror.org/03vt2s541 Ministry of Health and Social Welfare'),
(3254, 'https://ror.org/03vw2zn10', 'fr', 1, 'https://ror.org/03vw2zn10 HƓpital Saint-Vincent-de-Paul'),
(3255, 'https://ror.org/03vwxd822', 'no_lang_code', 1, 'https://ror.org/03vwxd822 Chugoku Rosai Hospital äø­å›½åŠ“ē½ē—…é™¢'),
(3256, 'https://ror.org/03vz8ns51', 'en', 1, 'https://ror.org/03vz8ns51 Ziauddin University'),
(3257, 'https://ror.org/03vzbgh69', 'en', 1, 'https://ror.org/03vzbgh69 University Medical Center Freiburg UniversitƤtsklinikum Freiburg'),
(3258, 'https://ror.org/03vzfth13', 'en', 1, 'https://ror.org/03vzfth13 Hospital for Special Care'),
(3259, 'https://ror.org/03vzpaf33', 'en', 1, 'https://ror.org/03vzpaf33 Einstein Medical Center Philadelphia'),
(3260, 'https://ror.org/03w0k0x36', 'en', 1, 'https://ror.org/03w0k0x36 Beijing Sport University åŒ—äŗ¬ä½“č‚²å¤§å­¦'),
(3261, 'https://ror.org/03w0kj141', 'en', 1, 'https://ror.org/03w0kj141 Army Medical College'),
(3262, 'https://ror.org/03w11wq45', 'es', 1, 'https://ror.org/03w11wq45 El Hospital General de Agudos Carlos G. Durand'),
(3263, 'https://ror.org/03w1tbe79', 'no_lang_code', 1, 'https://ror.org/03w1tbe79 Molecular GPS Technologies (United States)'),
(3264, 'https://ror.org/03w37n116', 'en', 1, 'https://ror.org/03w37n116 Alta Bates Summit Medical Center'),
(3265, 'https://ror.org/03w44ff23', 'en', 1, 'https://ror.org/03w44ff23 Brigham and Women''s Faulkner Hospital'),
(3266, 'https://ror.org/03w5gm511', 'en', 1, 'https://ror.org/03w5gm511 Adventist University of Health Sciences'),
(3267, 'https://ror.org/03w5j8p12', 'en', 1, 'https://ror.org/03w5j8p12 Rega Institute for Medical Research'),
(3268, 'https://ror.org/03w6p2n94', 'en', 1, 'https://ror.org/03w6p2n94 Bendigo Health'),
(3269, 'https://ror.org/03w8m2977', 'no_lang_code', 1, 'https://ror.org/03w8m2977 Yibin University'),
(3270, 'https://ror.org/03w94w157', 'en', 1, 'https://ror.org/03w94w157 Mater Private Hospital'),
(3271, 'https://ror.org/03w9cdv26', 'no_lang_code', 1, 'https://ror.org/03w9cdv26 Maichin Dom Университетска Š°ŠŗŃƒŃˆŠµŃ€Š¾-гинекологична болница ā€œŠœŠ°Š¹Ń‡ŠøŠ½ Š“Š¾Š¼ā€'),
(3272, 'https://ror.org/03wc8tg09', 'en', 1, 'https://ror.org/03wc8tg09 Jessop Hospital'),
(3273, 'https://ror.org/03wckff62', 'no_lang_code', 1, 'https://ror.org/03wckff62 Southwest Sciences (United States)'),
(3274, 'https://ror.org/03wed5r38', 'en', 1, 'https://ror.org/03wed5r38 Eginition Hospital'),
(3275, 'https://ror.org/03wff9w51', 'en', 1, 'https://ror.org/03wff9w51 Sema Hastanesi Sema Hospital'),
(3276, 'https://ror.org/03wg58p93', 'en', 1, 'https://ror.org/03wg58p93 Hamilton Medical Center'),
(3277, 'https://ror.org/03wgfnb71', 'no_lang_code', 1, 'https://ror.org/03wgfnb71 Barron Associates (United States)'),
(3278, 'https://ror.org/03wgqqb38', 'no_lang_code', 1, 'https://ror.org/03wgqqb38 Beijing HuiLongGuan Hospital åŒ—äŗ¬å›žé¾™č§‚åŒ»é™¢'),
(3279, 'https://ror.org/03wgsss62', 'no_lang_code', 1, 'https://ror.org/03wgsss62 Aciéries Réunies de Burbach-Eich-Dudelange Arbed (Luxembourg) Vereinigte Stahlhütten Burbach-Eich-Düdelingen'),
(3280, 'https://ror.org/03wkg3b53', 'en', 1, 'https://ror.org/03wkg3b53 National Eye Institute'),
(3281, 'https://ror.org/03wkrdj07', 'no_lang_code', 1, 'https://ror.org/03wkrdj07 Anandaban Hospital'),
(3282, 'https://ror.org/03wn09h25', 'no_lang_code', 1, 'https://ror.org/03wn09h25 Novelis (Canada)'),
(3283, 'https://ror.org/03wq4px44', 'en', 1, 'https://ror.org/03wq4px44 North Medical Center äŗ¬éƒ½åŗœē«‹åŒ»ē§‘å¤§å­¦é™„å±žåŒ—éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3284, 'https://ror.org/03wwnw466', 'en', 1, 'https://ror.org/03wwnw466 Milpark Hospital'),
(3285, 'https://ror.org/03wzyp716', 'en', 1, 'https://ror.org/03wzyp716 Mount Carmel Health'),
(3286, 'https://ror.org/03x0d4x24', 'en', 1, 'https://ror.org/03x0d4x24 Pacific Northwest Diabetes Research Institute'),
(3287, 'https://ror.org/03x1jna21', 'en', 1, 'https://ror.org/03x1jna21 Central China Normal University åŽäø­åøˆčŒƒå¤§å­¦'),
(3288, 'https://ror.org/03x295n29', 'no_lang_code', 1, 'https://ror.org/03x295n29 Sant Parmanand Hospital'),
(3289, 'https://ror.org/03x516a66', 'en', 1, 'https://ror.org/03x516a66 Bundesanstalt für Materialforschung und -prüfung Federal Institute For Materials Research and Testing'),
(3290, 'https://ror.org/03x8jdc94', 'en', 1, 'https://ror.org/03x8jdc94 Lady Hardinge Medical College'),
(3291, 'https://ror.org/03xbkmz44', 'en', 1, 'https://ror.org/03xbkmz44 Athens Naval & Veterans Hospital ĪĪ±Ļ…Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(3292, 'https://ror.org/03xg1f311', 'en', 1, 'https://ror.org/03xg1f311 Kansai University 関脿大学'),
(3293, 'https://ror.org/03xgh2v50', 'en', 1, 'https://ror.org/03xgh2v50 Toyama Prefectural University åÆŒå±±ēœŒē«‹å¤§å­¦'),
(3294, 'https://ror.org/03xh40058', 'en', 1, 'https://ror.org/03xh40058 Ministry of Health وزارة الصحة'),
(3295, 'https://ror.org/03xhrps63', 'en', 1, 'https://ror.org/03xhrps63 Central State University'),
(3296, 'https://ror.org/03xhwyc44', 'en', 1, 'https://ror.org/03xhwyc44 Chongqing Emergency Medical Center é‡åŗ†åø‚ę€„ę•‘åŒ»ē–—äø­åæƒ'),
(3297, 'https://ror.org/03xjacd83', 'en', 1, 'https://ror.org/03xjacd83 Cleveland Clinic'),
(3298, 'https://ror.org/03xms6995', 'en', 1, 'https://ror.org/03xms6995 Central Police University'),
(3299, 'https://ror.org/03xmsh521', 'en', 1, 'https://ror.org/03xmsh521 Bombay Hospital'),
(3300, 'https://ror.org/03xp4dz54', 'en', 1, 'https://ror.org/03xp4dz54 Nebraska Wesleyan University'),
(3301, 'https://ror.org/03xrts777', 'en', 1, 'https://ror.org/03xrts777 Shizuoka Medical Center é™å²”åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3302, 'https://ror.org/03xvpaf72', 'en', 1, 'https://ror.org/03xvpaf72 Wakasa History and Folklore Museum ē¦äŗ•ēœŒē«‹ č‹„ē‹­ę­“å²åšē‰©é¤Ø'),
(3303, 'https://ror.org/03xww6m08', 'en', 1, 'https://ror.org/03xww6m08 Nicolae Testemițanu State University of Medicine and Pharmacy Universitatea de Medicină și Farmacie Nicolae Testemițanu din Chișinău Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ меГицины Šø фармакологии имени ŠŠøŠŗŠ¾Š»Š°Ń Š¢ŠµŃŃ‚ŠµŠ¼ŠøŃ†ŃŠ½Ńƒ'),
(3304, 'https://ror.org/03xz3hj66', 'no_lang_code', 1, 'https://ror.org/03xz3hj66 Shonan Kamakura General Hospital ę¹˜å—éŽŒå€‰ē·åˆē—…é™¢'),
(3305, 'https://ror.org/03y1rev40', 'en', 1, 'https://ror.org/03y1rev40 HyvinkƤƤ Hospital'),
(3306, 'https://ror.org/03y2evj08', 'tr', 1, 'https://ror.org/03y2evj08 Gƶztepe Şafak Hastanesi'),
(3307, 'https://ror.org/03y4myd35', 'en', 1, 'https://ror.org/03y4myd35 Infectious Disease Research Institute'),
(3308, 'https://ror.org/03yb8aa18', 'it', 1, 'https://ror.org/03yb8aa18 Ospedale Santa Maria della Misericordia di Rovigo'),
(3309, 'https://ror.org/03ycmew18', 'en', 1, 'https://ror.org/03ycmew18 Matsushita Memorial Hospital ę¾äø‹čØ˜åæµē—…é™¢'),
(3310, 'https://ror.org/03ydkyb10', 'en', 1, 'https://ror.org/03ydkyb10 Sistema Universitario de Wisconsin University of Wisconsin System UniversitƩ du Wisconsin'),
(3311, 'https://ror.org/03ydmxb41', 'es', 1, 'https://ror.org/03ydmxb41 Hospital AlemƔn'),
(3312, 'https://ror.org/03yegf956', 'en', 1, 'https://ror.org/03yegf956 Alice Springs Hospital'),
(3313, 'https://ror.org/03yemaq40', 'en', 1, 'https://ror.org/03yemaq40 University of Findlay'),
(3314, 'https://ror.org/03yjk2s16', 'fr', 1, 'https://ror.org/03yjk2s16 Centre Hospitalier National Universitaire de Fann'),
(3315, 'https://ror.org/03yjkej49', 'en', 1, 'https://ror.org/03yjkej49 Center for Interuniversity Research and Analysis on Organizations'),
(3316, 'https://ror.org/03yk5k102', 'en', 1, 'https://ror.org/03yk5k102 Institute of Child Health'),
(3317, 'https://ror.org/03ynt1573', 'no_lang_code', 1, 'https://ror.org/03ynt1573 Ansaldo (Italy)'),
(3318, 'https://ror.org/03ypbx660', 'no_lang_code', 1, 'https://ror.org/03ypbx660 Renji Hospital äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žä»ęµŽåŒ»é™¢'),
(3319, 'https://ror.org/03ysk5e42', 'en', 1, 'https://ror.org/03ysk5e42 University of Suwon ģˆ˜ģ›ėŒ€ķ•™źµ'),
(3320, 'https://ror.org/03ysstz10', 'en', 1, 'https://ror.org/03ysstz10 Electronics and Telecommunications Research Institute ķ•œźµ­ģ „ģžķ†µģ‹ ģ—°źµ¬ģ›'),
(3321, 'https://ror.org/03yt4qx74', 'en', 1, 'https://ror.org/03yt4qx74 Kasumigaura Medical Center éœžćƒ¶ęµ¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3322, 'https://ror.org/03yvcww04', 'en', 1, 'https://ror.org/03yvcww04 North Shore Hospital'),
(3323, 'https://ror.org/03ywwzv91', 'no_lang_code', 1, 'https://ror.org/03ywwzv91 3C Institute'),
(3324, 'https://ror.org/03yz7v531', 'en', 1, 'https://ror.org/03yz7v531 Mysore Medical College'),
(3325, 'https://ror.org/03yzzaw34', 'it', 1, 'https://ror.org/03yzzaw34 Ospedale Regina Apostolorum'),
(3326, 'https://ror.org/03z0bdc81', 'no_lang_code', 1, 'https://ror.org/03z0bdc81 Bundang Jesaeng Hospital ė¶„ė‹¹ģ œģƒė³‘ģ›'),
(3327, 'https://ror.org/03z27es23', 'en', 1, 'https://ror.org/03z27es23 Universidad Mayor de San Simón University of San Simón'),
(3328, 'https://ror.org/03z2mza16', 'en', 1, 'https://ror.org/03z2mza16 Dewsbury and District Hospital'),
(3329, 'https://ror.org/03z4rrt03', 'de', 1, 'https://ror.org/03z4rrt03 Lindenhofspital'),
(3330, 'https://ror.org/03z6cqs20', 'es', 1, 'https://ror.org/03z6cqs20 Hospital Materno-Infantil'),
(3331, 'https://ror.org/03z8sn326', 'en', 1, 'https://ror.org/03z8sn326 Women & Infants Hospital of Rhode Island'),
(3332, 'https://ror.org/03z8x2j90', 'en', 1, 'https://ror.org/03z8x2j90 Frenchay Hospital'),
(3333, 'https://ror.org/03zayce58', 'en', 1, 'https://ror.org/03zayce58 Princess Margaret Cancer Centre'),
(3334, 'https://ror.org/03zeamg24', 'no_lang_code', 1, 'https://ror.org/03zeamg24 Kobe Asahi Hospital ē„žęˆøęœę—„ē—…é™¢'),
(3335, 'https://ror.org/03zeek684', 'it', 1, 'https://ror.org/03zeek684 Consorzio Universitario In Ingegneria Della Qualita'),
(3336, 'https://ror.org/03zeg3732', 'en', 1, 'https://ror.org/03zeg3732 Horton General Hospital'),
(3337, 'https://ror.org/03zgmap36', 'en', 1, 'https://ror.org/03zgmap36 Easton Hospital'),
(3338, 'https://ror.org/03zhhr656', 'en', 1, 'https://ror.org/03zhhr656 Kyoto University of Education äŗ¬éƒ½ę•™č‚²å¤§å­¦'),
(3339, 'https://ror.org/03zhk7994', 'en', 1, 'https://ror.org/03zhk7994 London Chest Hospital'),
(3340, 'https://ror.org/03zjj0p70', 'en', 1, 'https://ror.org/03zjj0p70 Population Council'),
(3341, 'https://ror.org/03zkja782', 'en', 1, 'https://ror.org/03zkja782 Luton and Dunstable University Hospital NHS Foundation Trust'),
(3342, 'https://ror.org/03zms7281', 'en', 1, 'https://ror.org/03zms7281 Good Samaritan Hospital'),
(3343, 'https://ror.org/03zn9xk79', 'en', 1, 'https://ror.org/03zn9xk79 University Teaching Hospital'),
(3344, 'https://ror.org/03zpnb459', 'no_lang_code', 1, 'https://ror.org/03zpnb459 Bikur Cholim Hospital'),
(3345, 'https://ror.org/03zq81960', 'en', 1, 'https://ror.org/03zq81960 HƓpital gƩnƩral de kingston Kingston General Hospital'),
(3346, 'https://ror.org/03zrwm897', 'en', 1, 'https://ror.org/03zrwm897 Technical University of Varna Технически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Варна'),
(3347, 'https://ror.org/03zsbd109', 'en', 1, 'https://ror.org/03zsbd109 Hanwa Memorial Hospital é˜Ŗå’ŒčØ˜åæµē—…é™¢'),
(3348, 'https://ror.org/03zsjhd07', 'en', 1, 'https://ror.org/03zsjhd07 University of Arkansas at Pine Bluff UniversitƩ de l''arkansas Ơ pine bluff'),
(3349, 'https://ror.org/03zstcc67', 'en', 1, 'https://ror.org/03zstcc67 Randolph–Macon College'),
(3350, 'https://ror.org/03zvd4s03', 'en', 1, 'https://ror.org/03zvd4s03 WellStar Kennestone Hospital'),
(3351, 'https://ror.org/03zwf0j41', 'en', 1, 'https://ror.org/03zwf0j41 Macclesfield District General Hospital'),
(3352, 'https://ror.org/03zww1h73', 'en', 1, 'https://ror.org/03zww1h73 University Hospital of Ioannina'),
(3353, 'https://ror.org/03zx0nf33', 'en', 1, 'https://ror.org/03zx0nf33 AcademyHealth'),
(3354, 'https://ror.org/03zzj3f20', 'en', 1, 'https://ror.org/03zzj3f20 Fields Institute for Research in Mathematical Sciences'),
(3355, 'https://ror.org/03zzjb946', 'en', 1, 'https://ror.org/03zzjb946 Nishinomiya Kyoritsu Neurosurgical Hospital č„æå®®å”ē«‹č„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(3356, 'https://ror.org/03zzvtn22', 'de', 1, 'https://ror.org/03zzvtn22 Klinikum im Friedrichshain'),
(3357, 'https://ror.org/03zzyap02', 'en', 1, 'https://ror.org/03zzyap02 Tohoku Medical Megabank Organization ę±åŒ—ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ćƒ»ćƒ”ć‚¬ćƒćƒ³ć‚Æę©Ÿę§‹'),
(3358, 'https://ror.org/03zzzks34', 'en', 1, 'https://ror.org/03zzzks34 Liverpool Hospital'),
(3359, 'https://ror.org/0402ejh63', 'en', 1, 'https://ror.org/0402ejh63 La Jolla Institute For Molecular Medicine'),
(3360, 'https://ror.org/0403w5x31', 'en', 1, 'https://ror.org/0403w5x31 Guglielmo da Saliceto Hospital'),
(3361, 'https://ror.org/04043k259', 'en', 1, 'https://ror.org/04043k259 Austral University Universidad Austral'),
(3362, 'https://ror.org/0404efv41', 'en', 1, 'https://ror.org/0404efv41 Mercy Medical Center'),
(3363, 'https://ror.org/0405qn567', 'no_lang_code', 1, 'https://ror.org/0405qn567 Nerima General Hospital ē·“é¦¬ē·åˆē—…é™¢'),
(3364, 'https://ror.org/0405thq08', 'en', 1, 'https://ror.org/0405thq08 Saint Ambrose University UniversitƩ saint ambroise'),
(3365, 'https://ror.org/0408b4j80', 'en', 1, 'https://ror.org/0408b4j80 B.J. Medical College'),
(3366, 'https://ror.org/0408cp281', 'en', 1, 'https://ror.org/0408cp281 Delaware Department of Health and Social Services'),
(3367, 'https://ror.org/0409zd934', 'en', 1, 'https://ror.org/0409zd934 Universidad de Cartagena University of Cartagena'),
(3368, 'https://ror.org/040bb8882', 'pt', 1, 'https://ror.org/040bb8882 Hospital de SĆ£o Marcos'),
(3369, 'https://ror.org/040cn9093', 'en', 1, 'https://ror.org/040cn9093 Community Health Network'),
(3370, 'https://ror.org/040cnym54', 'en', 1, 'https://ror.org/040cnym54 Pennington Biomedical Research Center'),
(3371, 'https://ror.org/040cxgs87', 'no_lang_code', 1, 'https://ror.org/040cxgs87 Starlab Barcelona Sl'),
(3372, 'https://ror.org/040d1yx23', 'no_lang_code', 1, 'https://ror.org/040d1yx23 Senvion SE (Germany)'),
(3373, 'https://ror.org/040epzy68', 'en', 1, 'https://ror.org/040epzy68 Istanbul Memorial Hospital'),
(3374, 'https://ror.org/040evg982', 'en', 1, 'https://ror.org/040evg982 Santobono Children''s Hospital'),
(3375, 'https://ror.org/040f7tw31', 'no_lang_code', 1, 'https://ror.org/040f7tw31 Inuyama Chuo Hospital ēŠ¬å±±äø­å¤®ē—…é™¢'),
(3376, 'https://ror.org/040hwr020', 'en', 1, 'https://ror.org/040hwr020 Borough of Manhattan Community College'),
(3377, 'https://ror.org/040jhkj51', 'fr', 1, 'https://ror.org/040jhkj51 Centre Hospitalier de Saint Jean de Dieu'),
(3378, 'https://ror.org/040jk5g10', 'en', 1, 'https://ror.org/040jk5g10 Samuel Merritt University'),
(3379, 'https://ror.org/040m2wv49', 'en', 1, 'https://ror.org/040m2wv49 Skaraborg Hospital Skaraborgs Sjukhus'),
(3380, 'https://ror.org/040m56689', 'hu', 1, 'https://ror.org/040m56689 Baranya Megyei KórhÔz'),
(3381, 'https://ror.org/040nggs60', 'en', 1, 'https://ror.org/040nggs60 West China Medical Center of Sichuan University å››å·å¤§å­¦åŽč„æåŒ»å­¦äø­åæƒ'),
(3382, 'https://ror.org/040qhpb54', 'en', 1, 'https://ror.org/040qhpb54 Aomori University é’ę£®å¤§å­¦'),
(3383, 'https://ror.org/040qrra89', 'en', 1, 'https://ror.org/040qrra89 G.V. (Sonny) Montgomery VA Medical Center'),
(3384, 'https://ror.org/040qxz868', 'no_lang_code', 1, 'https://ror.org/040qxz868 Chhatrapati Shahu Ji Maharaj University ą¤›ą¤¤ą„ą¤°ą¤Ŗą¤¤ą¤æ ą¤¶ą¤¾ą¤¹ą„‚ą¤œą„€ महाराज ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®šą®¤ąÆą®°ą®Ŗą®¤ą®æ ą®·ą®¾ą®•ąÆą®œą®æ ą®®ą®•ą®°ą®¾ą®œąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(3385, 'https://ror.org/040r8fr65', 'en', 1, 'https://ror.org/040r8fr65 Aarhus University Hospital Skejby Sygehus'),
(3386, 'https://ror.org/040vfm237', 'en', 1, 'https://ror.org/040vfm237 North West Regional Hospital'),
(3387, 'https://ror.org/040vwpm13', 'en', 1, 'https://ror.org/040vwpm13 University of Houston System'),
(3388, 'https://ror.org/040yv4379', 'fi', 1, 'https://ror.org/040yv4379 Kainuun keskussairaala'),
(3389, 'https://ror.org/0411njj18', 'en', 1, 'https://ror.org/0411njj18 Ragas Dental College & Hospital'),
(3390, 'https://ror.org/04133ks15', 'en', 1, 'https://ror.org/04133ks15 Ecpi University'),
(3391, 'https://ror.org/0416des07', 'es', 1, 'https://ror.org/0416des07 Hospital Universitario Lucus Augusti'),
(3392, 'https://ror.org/0416m3683', 'de', 1, 'https://ror.org/0416m3683 Institut für Rundfunktechnik'),
(3393, 'https://ror.org/0417sdw47', 'en', 1, 'https://ror.org/0417sdw47 Korea Basic Science Institute'),
(3394, 'https://ror.org/0418a3v02', 'en', 1, 'https://ror.org/0418a3v02 Setsunan University ę‘‚å—å¤§å­¦'),
(3395, 'https://ror.org/0419bgt07', 'en', 1, 'https://ror.org/0419bgt07 University of Florida Health Science Center');
INSERT INTO `rors` VALUES
(3396, 'https://ror.org/0419nfc77', 'en', 1, 'https://ror.org/0419nfc77 China Three Gorges University 三峔大学'),
(3397, 'https://ror.org/041b40q78', 'no_lang_code', 1, 'https://ror.org/041b40q78 Olympus (Australia)'),
(3398, 'https://ror.org/041bf1s37', 'no_lang_code', 1, 'https://ror.org/041bf1s37 Kanto Gakuin University é–¢ę±å­¦é™¢å¤§å­¦'),
(3399, 'https://ror.org/041e85345', 'en', 1, 'https://ror.org/041e85345 Bhumibol Adulyadej Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø ąø¹ąø”ąø“ąøžąø„ąø­ąø”ąøøąø„ąø¢ą¹€ąø”ąøŠ'),
(3400, 'https://ror.org/041f0qb31', 'en', 1, 'https://ror.org/041f0qb31 University Hospital Crosshouse'),
(3401, 'https://ror.org/041hae580', 'en', 1, 'https://ror.org/041hae580 Countess of Chester Hospital'),
(3402, 'https://ror.org/041jw5813', 'en', 1, 'https://ror.org/041jw5813 University of San Carlos'),
(3403, 'https://ror.org/041jyhr41', 'en', 1, 'https://ror.org/041jyhr41 Selly Oak Hospital'),
(3404, 'https://ror.org/041m0cc93', 'en', 1, 'https://ror.org/041m0cc93 Providence VA Medical Center'),
(3405, 'https://ror.org/041mbwk52', 'no_lang_code', 1, 'https://ror.org/041mbwk52 Fisher Bioservices (United States)'),
(3406, 'https://ror.org/041tn5e09', 'no_lang_code', 1, 'https://ror.org/041tn5e09 Shinrakuen Hospital äæ”ę„½åœ’ē—…é™¢'),
(3407, 'https://ror.org/041wfjw90', 'en', 1, 'https://ror.org/041wfjw90 LungenClinic Grosshansdorf'),
(3408, 'https://ror.org/04204gr61', 'en', 1, 'https://ror.org/04204gr61 Universidad de La Habana University of Havana'),
(3409, 'https://ror.org/04219vz71', 'en', 1, 'https://ror.org/04219vz71 Silver Cross Hospital'),
(3410, 'https://ror.org/0422nk691', 'no_lang_code', 1, 'https://ror.org/0422nk691 Fukujuji Hospital č¤‡åå­—ē—…é™¢'),
(3411, 'https://ror.org/0422q5a32', 'en', 1, 'https://ror.org/0422q5a32 Scripps Whittier Diabetes Institute'),
(3412, 'https://ror.org/04253q669', 'en', 1, 'https://ror.org/04253q669 Medical City Children''s Hospital'),
(3413, 'https://ror.org/0425pcn39', 'no_lang_code', 1, 'https://ror.org/0425pcn39 NeuroComp Systems (United States)'),
(3414, 'https://ror.org/0427fee43', 'en', 1, 'https://ror.org/0427fee43 Maharani Laxmi Bai Medical College'),
(3415, 'https://ror.org/0429d0v34', 'en', 1, 'https://ror.org/0429d0v34 China Animal Health and Epidemiology Center äø­å›½åŠØē‰©å«ē”ŸäøŽęµč”Œē—…å­¦äø­åæƒ'),
(3416, 'https://ror.org/042asnw05', 'en', 1, 'https://ror.org/042asnw05 Castle Hill Hospital'),
(3417, 'https://ror.org/042awg277', 'en', 1, 'https://ror.org/042awg277 MCNC Research and Development Institute'),
(3418, 'https://ror.org/042bbge36', 'en', 1, 'https://ror.org/042bbge36 Nova Southeastern University Universidad de Nova Southeastern'),
(3419, 'https://ror.org/042bdnm87', 'no_lang_code', 1, 'https://ror.org/042bdnm87 Svenskt StƄl (Finland) Swedish Steel'),
(3420, 'https://ror.org/042bhxs14', 'en', 1, 'https://ror.org/042bhxs14 Burdwan Medical College & Hospital'),
(3421, 'https://ror.org/042ck3w97', 'en', 1, 'https://ror.org/042ck3w97 Hyogo Ion Beam Medical Center å…µåŗ«ēœŒē«‹ē²’å­ē·šåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3422, 'https://ror.org/042ckra75', 'en', 1, 'https://ror.org/042ckra75 Research Foundation For Mental Hygiene'),
(3423, 'https://ror.org/042e7c302', 'fr', 1, 'https://ror.org/042e7c302 Multitel'),
(3424, 'https://ror.org/042fv2404', 'en', 1, 'https://ror.org/042fv2404 Musgrove Park Hospital'),
(3425, 'https://ror.org/042jtt364', 'en', 1, 'https://ror.org/042jtt364 Air Force General Hospital PLA'),
(3426, 'https://ror.org/042mrsz23', 'en', 1, 'https://ror.org/042mrsz23 Bangabandhu Sheikh Mujib Medical University ą¦¬ą¦™ą§ą¦—ą¦¬ą¦Øą§ą¦§ą§ শেখ মুজিব মেঔিকেল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(3427, 'https://ror.org/042q8va29', 'no_lang_code', 1, 'https://ror.org/042q8va29 Sidenor (Greece) Ī£Ī™Ī”Ī•ĪĪŸĪ”'),
(3428, 'https://ror.org/042qjjy86', 'en', 1, 'https://ror.org/042qjjy86 Ministry of Health į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€į€”į€ŗį€€į€¼į€®į€øį€Œį€¬į€”'),
(3429, 'https://ror.org/042rz6s74', 'en', 1, 'https://ror.org/042rz6s74 Nissan Tamagawa Hospital ę—„ē”£åŽšē”Ÿä¼š ēŽ‰å·ē—…é™¢'),
(3430, 'https://ror.org/042thbm45', 'en', 1, 'https://ror.org/042thbm45 Manly Hospital'),
(3431, 'https://ror.org/042vq9b25', 'pt', 1, 'https://ror.org/042vq9b25 Instituto Superior de Educação e Ciências'),
(3432, 'https://ror.org/042vvex07', 'en', 1, 'https://ror.org/042vvex07 Jos University Teaching Hospital'),
(3433, 'https://ror.org/042x68w22', 'pt', 1, 'https://ror.org/042x68w22 Escola Superior de Enfermagem Dr. José Timóteo Montalvão Machado'),
(3434, 'https://ror.org/042z7qa37', 'en', 1, 'https://ror.org/042z7qa37 McKendree University'),
(3435, 'https://ror.org/043071f54', 'en', 1, 'https://ror.org/043071f54 University of Roehampton'),
(3436, 'https://ror.org/0431v1017', 'fr', 1, 'https://ror.org/0431v1017 HƓpital Riviera-Chablais'),
(3437, 'https://ror.org/0431x1p15', 'en', 1, 'https://ror.org/0431x1p15 Gunma Children''s Medical Center ē¾¤é¦¬ēœŒē«‹å°å…åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3438, 'https://ror.org/0432p8t34', 'en', 1, 'https://ror.org/0432p8t34 Guangdong Academy of Medical Sciences'),
(3439, 'https://ror.org/04330ze25', 'en', 1, 'https://ror.org/04330ze25 Ashford Hospital'),
(3440, 'https://ror.org/0433abe34', 'en', 1, 'https://ror.org/0433abe34 K.N.Toosi University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų®ŁˆŲ§Ų¬Ł‡ Ł†ŲµŪŒŲ±Ų§Ł„ŲÆŪŒŁ† طوسی'),
(3441, 'https://ror.org/0433kqc49', 'en', 1, 'https://ror.org/0433kqc49 Pukyong National University ė¶€ź²½ėŒ€ķ•™źµ'),
(3442, 'https://ror.org/04353mq94', 'en', 1, 'https://ror.org/04353mq94 Chungnam National University Hospital'),
(3443, 'https://ror.org/043889z90', 'en', 1, 'https://ror.org/043889z90 The General Hospital of Heraklion "Venizeleio-Pananio" Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ηρακλείου "Βενιζέλειο - Πανάνειο"'),
(3444, 'https://ror.org/043brc084', 'en', 1, 'https://ror.org/043brc084 Kuo General Hospital éƒ­ē»¼åˆåŒ»é™¢'),
(3445, 'https://ror.org/043ckch24', 'en', 1, 'https://ror.org/043ckch24 Rehabilitation Hospital of Indiana'),
(3446, 'https://ror.org/043dm5251', 'no_lang_code', 1, 'https://ror.org/043dm5251 Microfab Technologies (United States)'),
(3447, 'https://ror.org/043e04s74', 'en', 1, 'https://ror.org/043e04s74 Civil Aerospace Medical Institute'),
(3448, 'https://ror.org/043ek5g31', 'en', 1, 'https://ror.org/043ek5g31 Henan Cancer Hospital ę²³å—ēœč‚æē˜¤åŒ»é™¢'),
(3449, 'https://ror.org/043eknq26', 'en', 1, 'https://ror.org/043eknq26 General Hospital of Nikea Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ĪĪÆĪŗĪ±Ī¹Ī±Ļ‚'),
(3450, 'https://ror.org/043h2w593', 'en', 1, 'https://ror.org/043h2w593 Akita Red Cross Hospital ē§‹ē”°čµ¤åå­—ē—…é™¢'),
(3451, 'https://ror.org/043j9bc42', 'en', 1, 'https://ror.org/043j9bc42 Royal National Orthopaedic Hospital'),
(3452, 'https://ror.org/043jqrs76', 'en', 1, 'https://ror.org/043jqrs76 Sunchon National University ģˆœģ²œėŒ€ķ•™źµ'),
(3453, 'https://ror.org/043m85342', 'en', 1, 'https://ror.org/043m85342 Hospital Povisa Povisa Hospital'),
(3454, 'https://ror.org/043mrw780', 'en', 1, 'https://ror.org/043mrw780 Institute For Community Research'),
(3455, 'https://ror.org/043mzjj67', 'en', 1, 'https://ror.org/043mzjj67 Beaumont Hospital'),
(3456, 'https://ror.org/043p8z282', 'en', 1, 'https://ror.org/043p8z282 JR Tokyo General Hospital JRę±äŗ¬ē·åˆē—…é™¢'),
(3457, 'https://ror.org/043ppnw54', 'it', 1, 'https://ror.org/043ppnw54 Ospedale San Donato'),
(3458, 'https://ror.org/043qmbk61', 'en', 1, 'https://ror.org/043qmbk61 Arbor Research Collaborative for Health'),
(3459, 'https://ror.org/043rjaw23', 'no_lang_code', 1, 'https://ror.org/043rjaw23 Profactor (Austria)'),
(3460, 'https://ror.org/043sbvg03', 'en', 1, 'https://ror.org/043sbvg03 Eastern Hepatobiliary Surgery Hospital äøœę–¹č‚čƒ†å¤–ē§‘åŒ»é™¢'),
(3461, 'https://ror.org/043xhwq03', 'en', 1, 'https://ror.org/043xhwq03 Carney Hospital'),
(3462, 'https://ror.org/043yd1m08', 'en', 1, 'https://ror.org/043yd1m08 The Evergreen State College'),
(3463, 'https://ror.org/043yy3r57', 'en', 1, 'https://ror.org/043yy3r57 Central India Institute of Medical Sciences'),
(3464, 'https://ror.org/043z88g18', 'fr', 1, 'https://ror.org/043z88g18 HƓpital Sahloul'),
(3465, 'https://ror.org/043zcrg65', 'en', 1, 'https://ror.org/043zcrg65 Birmingham Accident Hospital'),
(3466, 'https://ror.org/0441cbj57', 'en', 1, 'https://ror.org/0441cbj57 National University of Life and Environmental Sciences of Ukraine ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±ŠøŠ¾Ń€ŠµŃŃƒŃ€ŃŠ¾Š² Šø ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±Ń–Š¾Ń€ŠµŃŃƒŃ€ŃŃ–Š² і ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń України'),
(3467, 'https://ror.org/0443jbw36', 'en', 1, 'https://ror.org/0443jbw36 Bucheon St. Mary''s Hospital'),
(3468, 'https://ror.org/0445ctr76', 'fr', 1, 'https://ror.org/0445ctr76 HƓpital des Diaconesses'),
(3469, 'https://ror.org/0446vnd56', 'en', 1, 'https://ror.org/0446vnd56 Western Kentucky University'),
(3470, 'https://ror.org/0446zdv37', 'en', 1, 'https://ror.org/0446zdv37 Oklahoma Panhandle State University'),
(3471, 'https://ror.org/0447kww10', 'en', 1, 'https://ror.org/0447kww10 University of Miyazaki 宮哎大学'),
(3472, 'https://ror.org/0449kf092', 'en', 1, 'https://ror.org/0449kf092 Prairie View A&M University'),
(3473, 'https://ror.org/044a5dk27', 'en', 1, 'https://ror.org/044a5dk27 Universidad del Verbo Encarnado University of the Incarnate Word UniversitƩ du verbe incarnƩ'),
(3474, 'https://ror.org/044ed7z69', 'en', 1, 'https://ror.org/044ed7z69 Ministry of Health and Child Welfare'),
(3475, 'https://ror.org/044em4v11', 'en', 1, 'https://ror.org/044em4v11 Tennessee Department of Mental Health and Substance Abuse Services'),
(3476, 'https://ror.org/044f69t13', 'en', 1, 'https://ror.org/044f69t13 Ministry of Natural Resources and Wildlife MinistĆØre de l''Ɖnergie et des Ressources naturelles'),
(3477, 'https://ror.org/044fz2011', 'en', 1, 'https://ror.org/044fz2011 Rhode Island Department of Behavioral Healthcare, Developmental Disabilities and Hospitals'),
(3478, 'https://ror.org/044hb6b32', 'fr', 1, 'https://ror.org/044hb6b32 HƓpital des Enfants'),
(3479, 'https://ror.org/044kjp413', 'en', 1, 'https://ror.org/044kjp413 Severance Hospital ģ„øėøŒėž€ģŠ¤ 병원'),
(3480, 'https://ror.org/044kkfr75', 'sv', 1, 'https://ror.org/044kkfr75 AlbaNova'),
(3481, 'https://ror.org/044p01n12', 'en', 1, 'https://ror.org/044p01n12 Vidant Health'),
(3482, 'https://ror.org/044pc0j16', 'no_lang_code', 1, 'https://ror.org/044pc0j16 Mycologics'),
(3483, 'https://ror.org/044pcn091', 'en', 1, 'https://ror.org/044pcn091 University of Mississippi Medical Center'),
(3484, 'https://ror.org/044pfy487', 'en', 1, 'https://ror.org/044pfy487 Georgia Southwestern State University'),
(3485, 'https://ror.org/044prn184', 'en', 1, 'https://ror.org/044prn184 Holy Family Hospital'),
(3486, 'https://ror.org/044r07286', 'en', 1, 'https://ror.org/044r07286 Ouachita Baptist University'),
(3487, 'https://ror.org/044r51149', 'en', 1, 'https://ror.org/044r51149 Hanoi School Of Public Health TrĘ°į»ng ĐẔi hį»c Y tįŗæ cĆ“ng cį»™ng'),
(3488, 'https://ror.org/044s9gr80', 'en', 1, 'https://ror.org/044s9gr80 Japanese Red Cross Society, Japan ę—„ęœ¬čµ¤åå­—ē¤¾'),
(3489, 'https://ror.org/044sjfg03', 'en', 1, 'https://ror.org/044sjfg03 Frere Hospital'),
(3490, 'https://ror.org/044t1gs69', 'es', 1, 'https://ror.org/044t1gs69 Centro de Alta Resolución San MillÔn'),
(3491, 'https://ror.org/044v7v886', 'en', 1, 'https://ror.org/044v7v886 Advocate Children''s Hospital'),
(3492, 'https://ror.org/044vy1d05', 'en', 1, 'https://ror.org/044vy1d05 Tokushima University 徳島大学'),
(3493, 'https://ror.org/044wvm991', 'no_lang_code', 1, 'https://ror.org/044wvm991 Laniado Hospital'),
(3494, 'https://ror.org/044ww3909', 'en', 1, 'https://ror.org/044ww3909 Boone Hospital Center'),
(3495, 'https://ror.org/044xe8f87', 'en', 1, 'https://ror.org/044xe8f87 Queen Mary''s Hospital Sidcup'),
(3496, 'https://ror.org/044ycg712', 'it', 1, 'https://ror.org/044ycg712 Ospedale dei Bambini Vittore Buzzi'),
(3497, 'https://ror.org/04509n826', 'en', 1, 'https://ror.org/04509n826 Uganda Virus Research Institute'),
(3498, 'https://ror.org/0454vek02', 'no_lang_code', 1, 'https://ror.org/0454vek02 National Society of French Railways SociƩtƩ Nationale des Chemins de Fer FranƧais (France)'),
(3499, 'https://ror.org/04551r843', 'en', 1, 'https://ror.org/04551r843 Ministry of Health'),
(3500, 'https://ror.org/0457avm18', 'en', 1, 'https://ror.org/0457avm18 Bishop Auckland Hospital'),
(3501, 'https://ror.org/0457edg47', 'no_lang_code', 1, 'https://ror.org/0457edg47 HREM Research (Japan) ęœ‰é™ä¼šē¤¾ HREM'),
(3502, 'https://ror.org/0457yg222', 'en', 1, 'https://ror.org/0457yg222 Acıbadem Kadıkƶy Hospital Kadıkƶy Hastanesi'),
(3503, 'https://ror.org/0457zbj98', 'en', 1, 'https://ror.org/0457zbj98 University of Oklahoma Health Sciences Center'),
(3504, 'https://ror.org/04580ts27', 'en', 1, 'https://ror.org/04580ts27 Geisinger Wyoming Valley Medical Center'),
(3505, 'https://ror.org/045ae7j03', 'pt', 1, 'https://ror.org/045ae7j03 Universidade SĆ£o Francisco University of San Francisco'),
(3506, 'https://ror.org/045cqy185', 'en', 1, 'https://ror.org/045cqy185 Mamata Medical College'),
(3507, 'https://ror.org/045czjy48', 'en', 1, 'https://ror.org/045czjy48 Cape Fear Valley Medical Center'),
(3508, 'https://ror.org/045d4f586', 'tr', 1, 'https://ror.org/045d4f586 Ulucanlar Göz Eğitim ve Araştırma Hastanesi'),
(3509, 'https://ror.org/045dgap26', 'en', 1, 'https://ror.org/045dgap26 Iowa Methodist Medical Center'),
(3510, 'https://ror.org/045exnh37', 'no_lang_code', 1, 'https://ror.org/045exnh37 Portiuncula Hospital'),
(3511, 'https://ror.org/045g3sx57', 'en', 1, 'https://ror.org/045g3sx57 Armed Forces Capital Hospital åœ‹č»é¦–éƒ½ē—…é™¢ źµ­źµ°ģˆ˜ė„ė³‘ģ›'),
(3512, 'https://ror.org/045gmmg53', 'de', 1, 'https://ror.org/045gmmg53 Max Rubner Institut'),
(3513, 'https://ror.org/045h96a50', 'en', 1, 'https://ror.org/045h96a50 Cooperative Research Centre for Polymers'),
(3514, 'https://ror.org/045kb1d14', 'en', 1, 'https://ror.org/045kb1d14 Kyoto Medical Center äŗ¬éƒ½åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3515, 'https://ror.org/045kfbt16', 'no_lang_code', 1, 'https://ror.org/045kfbt16 Dibrugarh University ą¦”ą¦æą¦¬ą§ą¦°ą§ą¦—ą¦”ą¦¼ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(3516, 'https://ror.org/045m9y072', 'en', 1, 'https://ror.org/045m9y072 Moses H Cone Memorial Hospital'),
(3517, 'https://ror.org/045nawc23', 'nl', 1, 'https://ror.org/045nawc23 Tergooi'),
(3518, 'https://ror.org/045nemn19', 'en', 1, 'https://ror.org/045nemn19 Ubon Ratchathani University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(3519, 'https://ror.org/045r80n66', 'en', 1, 'https://ror.org/045r80n66 Cincinnati VA Medical Center'),
(3520, 'https://ror.org/045r8zm03', 'en', 1, 'https://ror.org/045r8zm03 American Sociological Association'),
(3521, 'https://ror.org/045rcvm30', 'en', 1, 'https://ror.org/045rcvm30 Kentucky Cabinet For Health and Family Services'),
(3522, 'https://ror.org/045rd3583', 'no_lang_code', 1, 'https://ror.org/045rd3583 Koto Hospital ę±Ÿę±ē—…é™¢'),
(3523, 'https://ror.org/045s3rx57', 'en', 1, 'https://ror.org/045s3rx57 Bedford Hospital'),
(3524, 'https://ror.org/045v7ay82', 'en', 1, 'https://ror.org/045v7ay82 Chicago Department of Public Health'),
(3525, 'https://ror.org/045vatr18', 'en', 1, 'https://ror.org/045vatr18 University of Ilorin Teaching Hospital'),
(3526, 'https://ror.org/045wr3278', 'en', 1, 'https://ror.org/045wr3278 Daegu Haany University ėŒ€źµ¬ķ•œģ˜ėŒ€ķ•™źµ'),
(3527, 'https://ror.org/045x76g34', 'en', 1, 'https://ror.org/045x76g34 McMurry University'),
(3528, 'https://ror.org/045xjv649', 'en', 1, 'https://ror.org/045xjv649 Netaji Subhash Chandra Bose Medical College'),
(3529, 'https://ror.org/0460a5x58', 'en', 1, 'https://ror.org/0460a5x58 Eugenides Hospital Ī•Ī„Ī“Ī•ĪĪ™Ī”Ī•Ī™ĪŸ Ī˜Ī•Ī”Ī‘Ī Ī•Ī„Ī¤Ī—Ī”Ī™ĪŸ'),
(3530, 'https://ror.org/0460fxw51', 'en', 1, 'https://ror.org/0460fxw51 Sacred Heart Hospital'),
(3531, 'https://ror.org/0460s9920', 'en', 1, 'https://ror.org/0460s9920 Kyoto first Red Cross hospital äŗ¬éƒ½ē¬¬äø€čµ¤åå­—ē—…é™¢'),
(3532, 'https://ror.org/0461cvh40', 'en', 1, 'https://ror.org/0461cvh40 Gangneung–Wonju National University ź°•ė¦‰ģ›ģ£¼ėŒ€ķ•™źµ'),
(3533, 'https://ror.org/0463dsf87', 'no_lang_code', 1, 'https://ror.org/0463dsf87 G. Papanikolaou General Hospital'),
(3534, 'https://ror.org/046410650', 'en', 1, 'https://ror.org/046410650 Muskingum University'),
(3535, 'https://ror.org/04661b187', 'en', 1, 'https://ror.org/04661b187 Beppu Medical Center åˆ„åŗœåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3536, 'https://ror.org/0466c1b11', 'en', 1, 'https://ror.org/0466c1b11 Kobe City Medical Center West Hospital ē„žęˆøåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼č„æåø‚ę°‘ē—…é™¢'),
(3537, 'https://ror.org/0467j3j44', 'it', 1, 'https://ror.org/0467j3j44 Ospedale di Belcolle'),
(3538, 'https://ror.org/046865y68', 'no_lang_code', 1, 'https://ror.org/046865y68 Hanyang University ķ•œģ–‘ėŒ€ķ•™źµ'),
(3539, 'https://ror.org/046a9q865', 'en', 1, 'https://ror.org/046a9q865 Space Science Institute'),
(3540, 'https://ror.org/046a9t092', 'es', 1, 'https://ror.org/046a9t092 Hospital de NiƱos de la Santƭsima Trinidad'),
(3541, 'https://ror.org/046aym564', 'en', 1, 'https://ror.org/046aym564 Lock Haven University'),
(3542, 'https://ror.org/046bk9643', 'en', 1, 'https://ror.org/046bk9643 Government Medical College, Amritsar ਸਰਕਾਰੀ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ąØ•ąØ¾ąØ²ąØœ'),
(3543, 'https://ror.org/046c18a90', 'en', 1, 'https://ror.org/046c18a90 Guangzhou Medical University Cancer Hospital å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žč‚æē˜¤åŒ»é™¢'),
(3544, 'https://ror.org/046db5297', 'en', 1, 'https://ror.org/046db5297 Sioux Valley Hospital'),
(3545, 'https://ror.org/046e0q987', 'en', 1, 'https://ror.org/046e0q987 St Lawrence Hospital'),
(3546, 'https://ror.org/046ekqm80', 'en', 1, 'https://ror.org/046ekqm80 Kentucky Community and Technical College System'),
(3547, 'https://ror.org/046fa4y88', 'en', 1, 'https://ror.org/046fa4y88 The Heart Research Institute'),
(3548, 'https://ror.org/046fm7598', 'en', 1, 'https://ror.org/046fm7598 Gunma University 群馬大学'),
(3549, 'https://ror.org/046gme853', 'en', 1, 'https://ror.org/046gme853 Dandenong Hospital'),
(3550, 'https://ror.org/046h7rx26', 'en', 1, 'https://ror.org/046h7rx26 Tri-Service General Hospital Songshan Branch'),
(3551, 'https://ror.org/046jyn221', 'en', 1, 'https://ror.org/046jyn221 Mayo Hospital'),
(3552, 'https://ror.org/046kb4y45', 'en', 1, 'https://ror.org/046kb4y45 University of Virginia Medical Center'),
(3553, 'https://ror.org/046taf492', 'en', 1, 'https://ror.org/046taf492 St Mary''s Hospital'),
(3554, 'https://ror.org/046vare28', 'de', 1, 'https://ror.org/046vare28 St. Josef-Hospital'),
(3555, 'https://ror.org/046vje122', 'en', 1, 'https://ror.org/046vje122 MRC Biostatistics Unit'),
(3556, 'https://ror.org/046w0kr18', 'it', 1, 'https://ror.org/046w0kr18 Azienda Ospedaliera Ospedale Civile di Legnano'),
(3557, 'https://ror.org/046wwv897', 'es', 1, 'https://ror.org/046wwv897 Hospital Virgen del Camino'),
(3558, 'https://ror.org/046x15q93', 'en', 1, 'https://ror.org/046x15q93 The 309th Hospital of Chinese People''s Liberation Army äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬äø‰ć€‡ä¹åŒ»é™¢'),
(3559, 'https://ror.org/046yr0268', 'en', 1, 'https://ror.org/046yr0268 Heartland Regional Medical Center'),
(3560, 'https://ror.org/046yvwt23', 'fr', 1, 'https://ror.org/046yvwt23 HƓpital Principal de Dakar'),
(3561, 'https://ror.org/0470b8t84', 'en', 1, 'https://ror.org/0470b8t84 Capella University'),
(3562, 'https://ror.org/0470men05', 'en', 1, 'https://ror.org/0470men05 Tainan Municipal Hospital å°å—åø‚ē«‹é†«é™¢'),
(3563, 'https://ror.org/04718hx42', 'no_lang_code', 1, 'https://ror.org/04718hx42 Srinakharinwirot University ดหาวณทยาคัยศรีนครณนทรวณโรฒ'),
(3564, 'https://ror.org/04748z305', 'en', 1, 'https://ror.org/04748z305 Taurida National V.I. Vernadsky University Tawrijski Uniwersytet Narodowy im. Władimira Wiernadskiego Таврический Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. И. ВернаГского Š¢Š°Š²Ń€Ń–Š¹ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’. І. Š’ŠµŃ€Š½Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(3565, 'https://ror.org/0475w6974', 'no_lang_code', 1, 'https://ror.org/0475w6974 Kinjo Gakuin University 金城学院大学'),
(3566, 'https://ror.org/04760qd13', 'tr', 1, 'https://ror.org/04760qd13 GATA Haydarpaşa Eğitim Hastanesi'),
(3567, 'https://ror.org/0478ng049', 'en', 1, 'https://ror.org/0478ng049 Roger Williams Medical Center'),
(3568, 'https://ror.org/047asq971', 'en', 1, 'https://ror.org/047asq971 Medical Research Institute of New Zealand'),
(3569, 'https://ror.org/047b5av97', 'nl', 1, 'https://ror.org/047b5av97 Juliana Kinderziekenhuis'),
(3570, 'https://ror.org/047g72407', 'en', 1, 'https://ror.org/047g72407 Eastern Nazarene College'),
(3571, 'https://ror.org/047hsck20', 'en', 1, 'https://ror.org/047hsck20 Hesperia Hospital'),
(3572, 'https://ror.org/047hxsy31', 'en', 1, 'https://ror.org/047hxsy31 Kaiser Permanente Anaheim Medical Center'),
(3573, 'https://ror.org/047k06737', 'en', 1, 'https://ror.org/047k06737 South Dakota Department of Health'),
(3574, 'https://ror.org/047k2at48', 'en', 1, 'https://ror.org/047k2at48 Al-Azhar University – Gaza Ų¬Ų§Ł…Ų¹Ų© الأزهر في ŲŗŲ²Ų©'),
(3575, 'https://ror.org/047krn550', 'es', 1, 'https://ror.org/047krn550 Hospital CƩsar Milstein'),
(3576, 'https://ror.org/047n0b268', 'en', 1, 'https://ror.org/047n0b268 Aichi Prefectural University ę„›ēŸ„ēœŒē«‹å¤§å­¦'),
(3577, 'https://ror.org/047qrb368', 'en', 1, 'https://ror.org/047qrb368 South Carolina State Governor''s Office'),
(3578, 'https://ror.org/047sehh14', 'en', 1, 'https://ror.org/047sehh14 Himeji Red Cross Hospital å§«č·Æčµ¤åå­—ē—…é™¢'),
(3579, 'https://ror.org/047tjmd17', 'en', 1, 'https://ror.org/047tjmd17 Coastal Area Health Education Center'),
(3580, 'https://ror.org/047v2cv91', 'en', 1, 'https://ror.org/047v2cv91 Maidstone Hospital'),
(3581, 'https://ror.org/047vb2x72', 'no_lang_code', 1, 'https://ror.org/047vb2x72 MATIMOP'),
(3582, 'https://ror.org/047x96110', 'en', 1, 'https://ror.org/047x96110 Johannesburg Hospital'),
(3583, 'https://ror.org/047xgg150', 'tr', 1, 'https://ror.org/047xgg150 Malatya Devlet Hastanesi'),
(3584, 'https://ror.org/047yk3s18', 'en', 1, 'https://ror.org/047yk3s18 Catholic University of America Universidad Católica de América Université catholique d''amérique'),
(3585, 'https://ror.org/047ypwv36', 'en', 1, 'https://ror.org/047ypwv36 Baghdad Medical City Ł…ŲÆŁŠŁ†Ų© الطب'),
(3586, 'https://ror.org/047z4n946', 'en', 1, 'https://ror.org/047z4n946 Semiconductor Research Corporation'),
(3587, 'https://ror.org/04838xh83', 'es', 1, 'https://ror.org/04838xh83 Empresarios Agrupados'),
(3588, 'https://ror.org/0483mr804', 'en', 1, 'https://ror.org/0483mr804 Carolinas Medical Center'),
(3589, 'https://ror.org/0484pjq71', 'en', 1, 'https://ror.org/0484pjq71 Box Hill Hospital'),
(3590, 'https://ror.org/0488ndr53', 'en', 1, 'https://ror.org/0488ndr53 Hairmyres Hospital'),
(3591, 'https://ror.org/0489f6q08', 'en', 1, 'https://ror.org/0489f6q08 Cardiff and Vale University Health Board'),
(3592, 'https://ror.org/048a96r61', 'en', 1, 'https://ror.org/048a96r61 Glenfield Hospital'),
(3593, 'https://ror.org/048d1b238', 'en', 1, 'https://ror.org/048d1b238 Miami Children''s Hospital'),
(3594, 'https://ror.org/048drzm61', 'en', 1, 'https://ror.org/048drzm61 Frostburg State University UniversitĆ© d''Ɖtat de frostburg'),
(3595, 'https://ror.org/048f17730', 'en', 1, 'https://ror.org/048f17730 Health Research and Educational Trust'),
(3596, 'https://ror.org/048h7jv87', 'fr', 1, 'https://ror.org/048h7jv87 Centre Hospitalier Universitaire de Cocody'),
(3597, 'https://ror.org/048hj2019', 'en', 1, 'https://ror.org/048hj2019 Joseph Brant Hospital'),
(3598, 'https://ror.org/048j5n646', 'en', 1, 'https://ror.org/048j5n646 National Aerospace University – Kharkiv Aviation Institute ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аерокосмічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені М. Š„. Š–ŃƒŠŗŠ¾Š²ŃŃŒŠŗŠ¾Š³Š¾ Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ авіаційний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(3599, 'https://ror.org/048jkwt53', 'en', 1, 'https://ror.org/048jkwt53 American Health Information Management Association'),
(3600, 'https://ror.org/048nj0621', 'en', 1, 'https://ror.org/048nj0621 Fulton County Medical Examiner''s Office'),
(3601, 'https://ror.org/048vjc278', 'en', 1, 'https://ror.org/048vjc278 AdventHealth Celebration'),
(3602, 'https://ror.org/048xpjb02', 'en', 1, 'https://ror.org/048xpjb02 National Association of County and City Health Officials'),
(3603, 'https://ror.org/048zq6v82', 'en', 1, 'https://ror.org/048zq6v82 Children''s Research Hospital å°å…ē ”ē©¶ē—…é™¢'),
(3604, 'https://ror.org/04929s478', 'en', 1, 'https://ror.org/04929s478 NewYork–Presbyterian Brooklyn Methodist Hospital'),
(3605, 'https://ror.org/0493bmq37', 'no_lang_code', 1, 'https://ror.org/0493bmq37 Fujifilm (Japan) åÆŒå£«ćƒ•ć‚¤ćƒ«ćƒ ę Ŗå¼ä¼šē¤¾'),
(3606, 'https://ror.org/0493caa98', 'no_lang_code', 1, 'https://ror.org/0493caa98 Lallemand (Canada)'),
(3607, 'https://ror.org/0493hgw16', 'en', 1, 'https://ror.org/0493hgw16 National Institute on Minority Health and Health Disparities'),
(3608, 'https://ror.org/0493tt883', 'en', 1, 'https://ror.org/0493tt883 Carl T. Hayden Veterans Affairs Medical Center'),
(3609, 'https://ror.org/0494reh34', 'en', 1, 'https://ror.org/0494reh34 Millsaps College'),
(3610, 'https://ror.org/0495efn48', 'en', 1, 'https://ror.org/0495efn48 Guangxi University for Nationalities å¹æč„æę°‘ę—å¤§å­¦'),
(3611, 'https://ror.org/0495vrm88', 'es', 1, 'https://ror.org/0495vrm88 Hospital Municipal de Badalona'),
(3612, 'https://ror.org/04983z422', 'en', 1, 'https://ror.org/04983z422 Taishan Medical University ę³°å±±åŒ»å­¦é™¢'),
(3613, 'https://ror.org/049840423', 'en', 1, 'https://ror.org/049840423 Ministry of Health ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(3614, 'https://ror.org/049aadf12', 'en', 1, 'https://ror.org/049aadf12 Bezmialem Foundation University Medical Faculty Hospital Bezmiâlem Vakıf Üniversitesi Tıp Fakültesi Hastanesi'),
(3615, 'https://ror.org/049ams583', 'en', 1, 'https://ror.org/049ams583 Northwestern State University UniversitĆ© d''Ɖtat northwestern'),
(3616, 'https://ror.org/049bdss47', 'en', 1, 'https://ror.org/049bdss47 Joanneum Research Joanneum Research Forschungsgesellschaft mbH'),
(3617, 'https://ror.org/049cbmb74', 'en', 1, 'https://ror.org/049cbmb74 Children''s Hospital of Wisconsin'),
(3618, 'https://ror.org/049dkqr57', 'en', 1, 'https://ror.org/049dkqr57 Ningxia Medical University General Hospital å®å¤åŒ»ē§‘å¤§å­¦ę€»åŒ»é™¢'),
(3619, 'https://ror.org/049hmfa48', 'en', 1, 'https://ror.org/049hmfa48 Henry Mayo Newhall Memorial Hospital'),
(3620, 'https://ror.org/049mpkx27', 'en', 1, 'https://ror.org/049mpkx27 Shriners Hospitals for Children - St. Louis'),
(3621, 'https://ror.org/049pcfs17', 'en', 1, 'https://ror.org/049pcfs17 Indira Gandhi Institute of Medical Sciences'),
(3622, 'https://ror.org/049peqw80', 'en', 1, 'https://ror.org/049peqw80 San Francisco VA Medical Center'),
(3623, 'https://ror.org/049pfb863', 'en', 1, 'https://ror.org/049pfb863 Kent State University UniversitĆ© d''Ɖtat de kent'),
(3624, 'https://ror.org/049q0vg17', 'en', 1, 'https://ror.org/049q0vg17 Anqing City Hospital'),
(3625, 'https://ror.org/049v7zy31', 'en', 1, 'https://ror.org/049v7zy31 Chiba Rosai Hospital åƒč‘‰åŠ“ē½ē—…é™¢'),
(3626, 'https://ror.org/049w1th24', 'en', 1, 'https://ror.org/049w1th24 Doernbecher Children''s Hospital'),
(3627, 'https://ror.org/049wjac82', 'en', 1, 'https://ror.org/049wjac82 Cooper University Hospital'),
(3628, 'https://ror.org/049x01c36', 'en', 1, 'https://ror.org/049x01c36 Shaw University'),
(3629, 'https://ror.org/049xx5c95', 'en', 1, 'https://ror.org/049xx5c95 Sultan Qaboos University Hospital مستؓفى Ų¬Ų§Ł…Ų¹Ų© السلطان Ł‚Ų§ŲØŁˆŲ³'),
(3630, 'https://ror.org/049yc0897', 'en', 1, 'https://ror.org/049yc0897 Winston-Salem State University'),
(3631, 'https://ror.org/049yfnz48', 'en', 1, 'https://ror.org/049yfnz48 Houston Medical Center'),
(3632, 'https://ror.org/049yjqb12', 'en', 1, 'https://ror.org/049yjqb12 Communications and Information Technology Ontario'),
(3633, 'https://ror.org/049zedh07', 'en', 1, 'https://ror.org/049zedh07 Robert Jones and Agnes Hunt Orthopaedic Hospital NHS Trust'),
(3634, 'https://ror.org/049zrh188', 'en', 1, 'https://ror.org/049zrh188 Shanghai Sixth People''s Hospital äøŠęµ·åø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(3635, 'https://ror.org/049ztct72', 'en', 1, 'https://ror.org/049ztct72 Medical University Pleven ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Плевен'),
(3636, 'https://ror.org/04a105t20', 'en', 1, 'https://ror.org/04a105t20 St. Mary''s Hospital'),
(3637, 'https://ror.org/04a20gb33', 'en', 1, 'https://ror.org/04a20gb33 Hispanic Health Council'),
(3638, 'https://ror.org/04a22qz44', 'en', 1, 'https://ror.org/04a22qz44 Seton Medical Center'),
(3639, 'https://ror.org/04a3akw68', 'no_lang_code', 1, 'https://ror.org/04a3akw68 Airbus (Germany)'),
(3640, 'https://ror.org/04a5hr295', 'es', 1, 'https://ror.org/04a5hr295 Complejo Hospitalario Universitario de Albacete Hospital General Universitario de Albacete'),
(3641, 'https://ror.org/04a6gpn58', 'pt', 1, 'https://ror.org/04a6gpn58 Centro UniversitÔrio São Camilo'),
(3642, 'https://ror.org/04aa89262', 'en', 1, 'https://ror.org/04aa89262 Radiolabs'),
(3643, 'https://ror.org/04aaa2n62', 'en', 1, 'https://ror.org/04aaa2n62 Andrews University Universidad Andrews'),
(3644, 'https://ror.org/04aaeds92', 'no_lang_code', 1, 'https://ror.org/04aaeds92 Israel Aerospace Industries (Israel)'),
(3645, 'https://ror.org/04abjq359', 'es', 1, 'https://ror.org/04abjq359 Hospital Ruber Internacional'),
(3646, 'https://ror.org/04abkkn33', 'pt', 1, 'https://ror.org/04abkkn33 Hospital Santo António dos Capuchos'),
(3647, 'https://ror.org/04aj4sh46', 'en', 1, 'https://ror.org/04aj4sh46 Brookings Institution Institución Brookings'),
(3648, 'https://ror.org/04am5a125', 'en', 1, 'https://ror.org/04am5a125 Mount Vernon Hospital'),
(3649, 'https://ror.org/04anjm411', 'en', 1, 'https://ror.org/04anjm411 Instituto Superior D. Dinis'),
(3650, 'https://ror.org/04ap0ew90', 'no_lang_code', 1, 'https://ror.org/04ap0ew90 Hlabisa Hospital'),
(3651, 'https://ror.org/04ar23e02', 'en', 1, 'https://ror.org/04ar23e02 Kingston Hospital'),
(3652, 'https://ror.org/04arkmn57', 'en', 1, 'https://ror.org/04arkmn57 University of Defence Univerzita Obrany'),
(3653, 'https://ror.org/04at0zw32', 'en', 1, 'https://ror.org/04at0zw32 Jichi Medical University Hospital č‡Ŗę²»åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(3654, 'https://ror.org/04aw32z04', 'en', 1, 'https://ror.org/04aw32z04 Poriya Medical Center בית חולים ×‘×Ø×•×š פדה'),
(3655, 'https://ror.org/04ayype77', 'en', 1, 'https://ror.org/04ayype77 Wolfson Medical Center ×ž×Ø×›×– רפואי וולפהון'),
(3656, 'https://ror.org/04azbjn80', 'en', 1, 'https://ror.org/04azbjn80 Guangdong University of Technology 广东巄业大学'),
(3657, 'https://ror.org/04aznd361', 'en', 1, 'https://ror.org/04aznd361 Government Medical College ą®•ąÆ‹ą®“ą®æą®•ąÆą®•ąÆ‹ą®ŸąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą“—ą“µąµŗą“®ąµ†ą“Øąµą“±ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“•ąµ‹ą““ą“æą“•ąµą“•ąµ‹ą“Ÿąµ'),
(3658, 'https://ror.org/04b0jw528', 'en', 1, 'https://ror.org/04b0jw528 Imakiire General Hospital å…¬ē›Šč²”å›£ę³•äŗŗę˜­å’Œä¼š ä»Šēµ¦é»Žē·åˆē—…é™¢'),
(3659, 'https://ror.org/04b0ry431', 'es', 1, 'https://ror.org/04b0ry431 Hospital General de Elda'),
(3660, 'https://ror.org/04b2fhx54', 'en', 1, 'https://ror.org/04b2fhx54 Seoul Women''s University ģ„œģšøģ—¬ģžėŒ€ķ•™źµ'),
(3661, 'https://ror.org/04b2pvs09', 'en', 1, 'https://ror.org/04b2pvs09 Rashid Hospital مستؓفى Ų±Ų§Ų“ŲÆ'),
(3662, 'https://ror.org/04b3jmc64', 'en', 1, 'https://ror.org/04b3jmc64 Social Sciences Innovations'),
(3663, 'https://ror.org/04b4hfb84', 'en', 1, 'https://ror.org/04b4hfb84 Green Pastures Hospital and Rehabilitation Centre'),
(3664, 'https://ror.org/04b787h29', 'en', 1, 'https://ror.org/04b787h29 Santa Barbara Cottage Hospital'),
(3665, 'https://ror.org/04b7w1811', 'en', 1, 'https://ror.org/04b7w1811 Yamaguchi Prefectural University å±±å£ēœŒē«‹å¤§å­¦'),
(3666, 'https://ror.org/04b8y3f13', 'no_lang_code', 1, 'https://ror.org/04b8y3f13 Alexandrovska Hospital ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ŃŠŗŠ° болница ā€žŠŠ»ŠµŠŗŃŠ°Š½Š“Ń€Š¾Š²ŃŠŗŠ°'),
(3667, 'https://ror.org/04ba73c73', 'no_lang_code', 1, 'https://ror.org/04ba73c73 MC3 (United States)'),
(3668, 'https://ror.org/04bcdt432', 'pt', 1, 'https://ror.org/04bcdt432 European University of Lisbon Universidade Europeia'),
(3669, 'https://ror.org/04bf33n91', 'en', 1, 'https://ror.org/04bf33n91 University of Balochistan جامعہ ŲØŁ„ŁˆŚ†Ų³ŲŖŲ§Ł†'),
(3670, 'https://ror.org/04bg1hy68', 'en', 1, 'https://ror.org/04bg1hy68 Saint Thomas West Hospital'),
(3671, 'https://ror.org/04bgfm609', 'en', 1, 'https://ror.org/04bgfm609 Stowers Institute for Medical Research'),
(3672, 'https://ror.org/04bgfrg80', 'en', 1, 'https://ror.org/04bgfrg80 Ministry of Public Health Ministère de la Santé Publique du Cameroun'),
(3673, 'https://ror.org/04bghze60', 'tr', 1, 'https://ror.org/04bghze60 Dışkapı Yıldırım Beyazıt Eğitim ve Araştırma Hastanesi'),
(3674, 'https://ror.org/04bm03037', 'en', 1, 'https://ror.org/04bm03037 Genesis Medical Center'),
(3675, 'https://ror.org/04bmgpj29', 'en', 1, 'https://ror.org/04bmgpj29 Walsall Manor Hospital'),
(3676, 'https://ror.org/04bnbsh26', 'no_lang_code', 1, 'https://ror.org/04bnbsh26 Pingtung Christian Hospital å±ę±åŸŗē£ę•™é†«é™¢'),
(3677, 'https://ror.org/04bpf7m84', 'pt', 1, 'https://ror.org/04bpf7m84 Escola Superior de SaĆŗde Ribeiro Sanches'),
(3678, 'https://ror.org/04bqfk210', 'en', 1, 'https://ror.org/04bqfk210 Commonwealth Medical College'),
(3679, 'https://ror.org/04bt00m07', 'en', 1, 'https://ror.org/04bt00m07 Mercy General Hospital'),
(3680, 'https://ror.org/04c07bj87', 'en', 1, 'https://ror.org/04c07bj87 Institute of Mental Health'),
(3681, 'https://ror.org/04c0a2j77', 'en', 1, 'https://ror.org/04c0a2j77 Memorial Hospital of Rhode Island'),
(3682, 'https://ror.org/04c0sqe08', 'en', 1, 'https://ror.org/04c0sqe08 Truckee Meadows Community College'),
(3683, 'https://ror.org/04c1d9r22', 'en', 1, 'https://ror.org/04c1d9r22 Services Institute of Medical Sciences سروسز Ų§Ł†Ų³Ł¹ŪŒŁ¹ŁˆŁ¹ آف Ł…ŪŒŚˆŪŒŚ©Ł„ سائنسز ਸੈਰਵਿਸਜ਼ ąØ‡ą©°ąØøąØŸąØæąØŸąØæąØŠąØŸ ਆਫ਼ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ਸਾਈਨਸਜ਼'),
(3684, 'https://ror.org/04c1dx793', 'en', 1, 'https://ror.org/04c1dx793 PSG Institute of Medical Sciences & Research'),
(3685, 'https://ror.org/04c1s4764', 'es', 1, 'https://ror.org/04c1s4764 Hospital Monte Naranco'),
(3686, 'https://ror.org/04c6bry31', 'en', 1, 'https://ror.org/04c6bry31 St. James''s Hospital'),
(3687, 'https://ror.org/04can6445', 'no_lang_code', 1, 'https://ror.org/04can6445 P2D Bioscience (United States)'),
(3688, 'https://ror.org/04cb32210', 'en', 1, 'https://ror.org/04cb32210 Scottish Rite Hospital'),
(3689, 'https://ror.org/04cb4je22', 'en', 1, 'https://ror.org/04cb4je22 Ca'' Foncello Hospital'),
(3690, 'https://ror.org/04cbm7s05', 'es', 1, 'https://ror.org/04cbm7s05 Hospital Universitario Insular de Gran Canaria'),
(3691, 'https://ror.org/04cd75h10', 'en', 1, 'https://ror.org/04cd75h10 Iwate University 岩手大学'),
(3692, 'https://ror.org/04cdn2797', 'en', 1, 'https://ror.org/04cdn2797 Banaras Hindu University UniversitĆ© hindoue de bĆ©narĆØs ą¤•ą¤¾ą¤¶ą„€ ą¤¹ą¤æą¤Øą„ą¤¦ą„‚ ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ কাশী ą¦¹ą¦æą¦Øą§ą¦¦ą§ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ બનારસ હિંદુ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€ பனாரசு ą®‡ą®ØąÆą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°¬ą±†ą°Øą°¾ą°°ą°øą± హిందూ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²¬ą²Øą²¾ą²°ą²øą³ ಹಿಂದೂ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ ą“¬ą“Øą“¾ą“±ą“øąµ ą“¹ą“æą“Øąµą“¦ąµ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(3693, 'https://ror.org/04cepy814', 'es', 1, 'https://ror.org/04cepy814 Hospital JuƔrez de MƩxico'),
(3694, 'https://ror.org/04cewr321', 'en', 1, 'https://ror.org/04cewr321 University of Vermont Medical Center'),
(3695, 'https://ror.org/04cf4ba49', 'da', 1, 'https://ror.org/04cf4ba49 HolbƦk Sygehus'),
(3696, 'https://ror.org/04cfbdf66', 'no_lang_code', 1, 'https://ror.org/04cfbdf66 Shanghai GenomePilot Technology (China) äøŠęµ·ä½°ēœŸē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(3697, 'https://ror.org/04cg70g73', 'en', 1, 'https://ror.org/04cg70g73 Atmospheric and Environmental Research'),
(3698, 'https://ror.org/04cjdzt83', 'en', 1, 'https://ror.org/04cjdzt83 King Abdulaziz Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆŲ§Ł„Ų¹Ų²ŁŠ'),
(3699, 'https://ror.org/04cjgh922', 'no_lang_code', 1, 'https://ror.org/04cjgh922 Honeywell (Canada)'),
(3700, 'https://ror.org/04ckgfr29', 'en', 1, 'https://ror.org/04ckgfr29 Sri Manakula Vinayagar Medical College and Hospital'),
(3701, 'https://ror.org/04ckvpk15', 'fr', 1, 'https://ror.org/04ckvpk15 HƓpital Laennec'),
(3702, 'https://ror.org/04cnfrn26', 'en', 1, 'https://ror.org/04cnfrn26 University of the Arts London'),
(3703, 'https://ror.org/04cpf2p55', 'en', 1, 'https://ror.org/04cpf2p55 Bess Kaiser Hospital'),
(3704, 'https://ror.org/04cqs5j56', 'en', 1, 'https://ror.org/04cqs5j56 Southern Illinois University Edwardsville'),
(3705, 'https://ror.org/04crdae34', 'en', 1, 'https://ror.org/04crdae34 Mahatma Gandhi Institute of Medical Sciences ą¤®ą¤¹ą¤¾ą¤¤ą„ą¤®ą¤¾ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(3706, 'https://ror.org/04cs55d24', 'no_lang_code', 1, 'https://ror.org/04cs55d24 Charoenkrung Pracharak Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ą¹€ąøˆąø£ąø“ąøąøąø£ąøøąø‡ąø›ąø£ąø°ąøŠąø²ąø£ąø±ąøąø©ą¹Œ'),
(3707, 'https://ror.org/04ctp9859', 'it', 1, 'https://ror.org/04ctp9859 Ospedale Maria Vittoria'),
(3708, 'https://ror.org/04cwap208', 'en', 1, 'https://ror.org/04cwap208 Inner Mongolia University for Nationalities'),
(3709, 'https://ror.org/04cxm4j25', 'en', 1, 'https://ror.org/04cxm4j25 Australian Catholic University'),
(3710, 'https://ror.org/04cy4z909', 'es', 1, 'https://ror.org/04cy4z909 Hospital de Mataró'),
(3711, 'https://ror.org/04cyk2a69', 'en', 1, 'https://ror.org/04cyk2a69 General de Jesus College'),
(3712, 'https://ror.org/04czxss33', 'en', 1, 'https://ror.org/04czxss33 Dubai Hospital مستؓفى ŲÆŲØŁ€Ł€Ł€ŁŠ'),
(3713, 'https://ror.org/04d0szq68', 'en', 1, 'https://ror.org/04d0szq68 Shaare Zedek Medical Center ×ž×Ø×›×– רפואי שערי צדק'),
(3714, 'https://ror.org/04d45ra64', 'fr', 1, 'https://ror.org/04d45ra64 HƓpital du Hasenrain'),
(3715, 'https://ror.org/04d4dxm04', 'fr', 1, 'https://ror.org/04d4dxm04 SociƩtƩ de MathƩmatiques AppliquƩes et de Sciences Humaines'),
(3716, 'https://ror.org/04d52ej85', 'en', 1, 'https://ror.org/04d52ej85 Lawrence Technological University UniversitƩ technologique lawrence'),
(3717, 'https://ror.org/04d5k5771', 'en', 1, 'https://ror.org/04d5k5771 European Institute for Energy Research Europäisches Institut für Energieforschung'),
(3718, 'https://ror.org/04d5w7479', 'en', 1, 'https://ror.org/04d5w7479 Aurora Health Care'),
(3719, 'https://ror.org/04d6eav07', 'en', 1, 'https://ror.org/04d6eav07 Red Cross War Memorial Children''s Hospital'),
(3720, 'https://ror.org/04d7e4m76', 'en', 1, 'https://ror.org/04d7e4m76 I-Shou University'),
(3721, 'https://ror.org/04d7es448', 'it', 1, 'https://ror.org/04d7es448 Azienda Ospedaliera Universitaria "San Martino", Ospedale Policlinico San Martino'),
(3722, 'https://ror.org/04d7ez939', 'en', 1, 'https://ror.org/04d7ez939 VA Eastern Colorado Health Care System'),
(3723, 'https://ror.org/04d8ymc03', 'en', 1, 'https://ror.org/04d8ymc03 Doai Memorial Hospital åŒę„›čØ˜åæµē—…é™¢'),
(3724, 'https://ror.org/04d9g9604', 'en', 1, 'https://ror.org/04d9g9604 Sankt Hans Hospital'),
(3725, 'https://ror.org/04dc8es52', 'de', 1, 'https://ror.org/04dc8es52 Klinik Donaustauf'),
(3726, 'https://ror.org/04dd5bw95', 'en', 1, 'https://ror.org/04dd5bw95 Fujisawa City Hospital 藤沢市民病院'),
(3727, 'https://ror.org/04df9p911', 'no_lang_code', 1, 'https://ror.org/04df9p911 Biorem Technologies (Canada)'),
(3728, 'https://ror.org/04dhg0348', 'en', 1, 'https://ror.org/04dhg0348 Heidelberg Repatriation Hospital'),
(3729, 'https://ror.org/04djj4v98', 'es', 1, 'https://ror.org/04djj4v98 Buenos Aires British Hospital Hospital BritƔnico de Buenos Aires'),
(3730, 'https://ror.org/04dm1cm79', 'de', 1, 'https://ror.org/04dm1cm79 UniversitƤtsmedizin Rostock'),
(3731, 'https://ror.org/04dms0022', 'fr', 1, 'https://ror.org/04dms0022 HƓpital de la Tour'),
(3732, 'https://ror.org/04dngzj56', 'en', 1, 'https://ror.org/04dngzj56 American University of Armenia Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ“Õ„Ö€Õ«ÕÆÕµÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(3733, 'https://ror.org/04dns5t03', 'en', 1, 'https://ror.org/04dns5t03 Brighton General Hospital'),
(3734, 'https://ror.org/04dnsc767', 'en', 1, 'https://ror.org/04dnsc767 Burke Rehabilitation Hospital'),
(3735, 'https://ror.org/04dp43p74', 'en', 1, 'https://ror.org/04dp43p74 Hangang Sacred Heart Hospital ķ•œź°• 성심 병원'),
(3736, 'https://ror.org/04drvxt59', 'en', 1, 'https://ror.org/04drvxt59 Beth Israel Deaconess Medical Center'),
(3737, 'https://ror.org/04ds03q08', 'no_lang_code', 1, 'https://ror.org/04ds03q08 Mita Hospital å›½éš›åŒ»ē™‚ē¦ē„‰å¤§å­¦äø‰ē”°ē—…é™¢'),
(3738, 'https://ror.org/04dt6a039', 'en', 1, 'https://ror.org/04dt6a039 Military Medical Academy Š’Š¾Ń˜Š½Š¾Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ° акаГемија'),
(3739, 'https://ror.org/04dw1bf40', 'en', 1, 'https://ror.org/04dw1bf40 Mount Desert Island Biological Laboratory'),
(3740, 'https://ror.org/04dwjqq87', 'en', 1, 'https://ror.org/04dwjqq87 Tanglewood Research'),
(3741, 'https://ror.org/04dx82x73', 'en', 1, 'https://ror.org/04dx82x73 Nanning Normal University å—å®åøˆčŒƒå¤§å­¦'),
(3742, 'https://ror.org/04dzhx486', 'en', 1, 'https://ror.org/04dzhx486 Exeter Hospital'),
(3743, 'https://ror.org/04dzpzw79', 'en', 1, 'https://ror.org/04dzpzw79 National Health Promotion Associates'),
(3744, 'https://ror.org/04dzvew28', 'en', 1, 'https://ror.org/04dzvew28 Hackensack University Medical Center Mountainside'),
(3745, 'https://ror.org/04dzvks42', 'en', 1, 'https://ror.org/04dzvks42 XinHua Hospital äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žę–°åŽåŒ»é™¢'),
(3746, 'https://ror.org/04e0j1059', 'en', 1, 'https://ror.org/04e0j1059 Bethune-Cookman University'),
(3747, 'https://ror.org/04e1w6923', 'fr', 1, 'https://ror.org/04e1w6923 HƓpital d''Hautepierre'),
(3748, 'https://ror.org/04e2jep17', 'en', 1, 'https://ror.org/04e2jep17 Croydon University Hospital'),
(3749, 'https://ror.org/04e2x2229', 'en', 1, 'https://ror.org/04e2x2229 Lala Lajpat Rai Memorial Medical College'),
(3750, 'https://ror.org/04e4abg78', 'no_lang_code', 1, 'https://ror.org/04e4abg78 Nantan General Hospital å…¬ē«‹å—äø¹ē—…é™¢'),
(3751, 'https://ror.org/04e5j7m81', 'en', 1, 'https://ror.org/04e5j7m81 American Society of Mechanical Engineers'),
(3752, 'https://ror.org/04e79zk25', 'en', 1, 'https://ror.org/04e79zk25 Institute for Medical Informatics and Biostatistics'),
(3753, 'https://ror.org/04e7bpp71', 'no_lang_code', 1, 'https://ror.org/04e7bpp71 King Fahad Hospital Hufūf'),
(3754, 'https://ror.org/04e857469', 'it', 1, 'https://ror.org/04e857469 Ospedale Regina Margherita Regina Margherita hospital'),
(3755, 'https://ror.org/04e8jbs38', 'en', 1, 'https://ror.org/04e8jbs38 Helmut Schmidt University Helmut-Schmidt-UniversitƤt'),
(3756, 'https://ror.org/04e8mq383', 'en', 1, 'https://ror.org/04e8mq383 Hyogo Prefectural Amagasaki General Medical Center å…µåŗ«ēœŒē«‹å°¼å“Žē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3757, 'https://ror.org/04edns687', 'en', 1, 'https://ror.org/04edns687 Northeastern Illinois University'),
(3758, 'https://ror.org/04ejkkg63', 'en', 1, 'https://ror.org/04ejkkg63 Ecologic Institute'),
(3759, 'https://ror.org/04epb4p87', 'en', 1, 'https://ror.org/04epb4p87 Zhejiang Chinese Medical University ęµ™ę±Ÿäø­åŒ»čÆå¤§å­¦'),
(3760, 'https://ror.org/04esata81', 'en', 1, 'https://ror.org/04esata81 European Science Foundation'),
(3761, 'https://ror.org/04esb6v42', 'en', 1, 'https://ror.org/04esb6v42 Imam Hossein University دانؓگاه Ų§Ł…Ų§Ł… Ų­Ų³ŪŒŁ†'),
(3762, 'https://ror.org/04esegk75', 'en', 1, 'https://ror.org/04esegk75 Allina Health'),
(3763, 'https://ror.org/04esvpn06', 'en', 1, 'https://ror.org/04esvpn06 UniversitĆ© d''Ɖtat de virginie Virginia State University'),
(3764, 'https://ror.org/04etaja30', 'no_lang_code', 1, 'https://ror.org/04etaja30 Beijing YouAn Hospital åŒ—äŗ¬ä½‘å®‰åŒ»é™¢'),
(3765, 'https://ror.org/04evcxq23', 'it', 1, 'https://ror.org/04evcxq23 Consorzio Nazionale Interuniversitario per i Trasporti e la Logistica'),
(3766, 'https://ror.org/04evw4v13', 'pt', 1, 'https://ror.org/04evw4v13 Instituto Superior de Paços de Brandão'),
(3767, 'https://ror.org/04ezg6d83', 'en', 1, 'https://ror.org/04ezg6d83 Toyohashi University of Technology č±Šę©‹ęŠ€č”“ē§‘å­¦å¤§å­¦'),
(3768, 'https://ror.org/04f3vmh71', 'tr', 1, 'https://ror.org/04f3vmh71 Medeniyet Üniversitesi Göztepe Eğitim ve Araştırma Hastanesi'),
(3769, 'https://ror.org/04f4syj68', 'it', 1, 'https://ror.org/04f4syj68 Polo Universitario CittĆ  di Prato'),
(3770, 'https://ror.org/04f558b63', 'pt', 1, 'https://ror.org/04f558b63 Centro UniversitƔrio FiladƩlfia'),
(3771, 'https://ror.org/04f6p2t28', 'en', 1, 'https://ror.org/04f6p2t28 Hospital Labbafinejad ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł„ŲØŲ§ŁŪŒā€ŒŁ†Ś˜'),
(3772, 'https://ror.org/04f761z39', 'pt', 1, 'https://ror.org/04f761z39 Instituto Superior da Maia'),
(3773, 'https://ror.org/04f812k67', 'en', 1, 'https://ror.org/04f812k67 Palo Alto University'),
(3774, 'https://ror.org/04f86t017', 'es', 1, 'https://ror.org/04f86t017 Hospital de Especialidades'),
(3775, 'https://ror.org/04f8gc808', 'no_lang_code', 1, 'https://ror.org/04f8gc808 Ganga Hospital'),
(3776, 'https://ror.org/04f90ax67', 'en', 1, 'https://ror.org/04f90ax67 Ministry of Health and Population وزارة الصحة - الصفحة Ų§Ł„Ų±Ų¦ŁŠŲ³ŁŠŲ©'),
(3777, 'https://ror.org/04faw9m73', 'sv', 1, 'https://ror.org/04faw9m73 Hallands sjukhus Halmstad'),
(3778, 'https://ror.org/04fbnx371', 'en', 1, 'https://ror.org/04fbnx371 West Virginia University Hospitals'),
(3779, 'https://ror.org/04fc1dc24', 'en', 1, 'https://ror.org/04fc1dc24 Dorset County Hospital'),
(3780, 'https://ror.org/04fdkjq44', 'en', 1, 'https://ror.org/04fdkjq44 Methodist University Hospital'),
(3781, 'https://ror.org/04fkbqt11', 'ro', 1, 'https://ror.org/04fkbqt11 Hospital Colentina Spitalul Clinic Colentina'),
(3782, 'https://ror.org/04fp78s33', 'en', 1, 'https://ror.org/04fp78s33 Hunter Holmes McGuire VA Medical Center'),
(3783, 'https://ror.org/04fp9fm22', 'en', 1, 'https://ror.org/04fp9fm22 National University Hospital'),
(3784, 'https://ror.org/04fpj6846', 'en', 1, 'https://ror.org/04fpj6846 Iowa Medical Society'),
(3785, 'https://ror.org/04frzv033', 'en', 1, 'https://ror.org/04frzv033 Institute of Medical Biology'),
(3786, 'https://ror.org/04fs4yy09', 'en', 1, 'https://ror.org/04fs4yy09 Lakewood Regional Medical Center'),
(3787, 'https://ror.org/04fv66053', 'en', 1, 'https://ror.org/04fv66053 American Health Care Association'),
(3788, 'https://ror.org/04fw3kw37', 'en', 1, 'https://ror.org/04fw3kw37 Shri Maharaja Hari Singh Hospital'),
(3789, 'https://ror.org/04fwa4t58', 'en', 1, 'https://ror.org/04fwa4t58 Harefield Hospital'),
(3790, 'https://ror.org/04fwyqr44', 'en', 1, 'https://ror.org/04fwyqr44 International Goodwill Hospital å›½éš›č¦Ŗå–„ē·åˆē—…é™¢'),
(3791, 'https://ror.org/04fxknd68', 'en', 1, 'https://ror.org/04fxknd68 Catholic University of Daegu ėŒ€źµ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(3792, 'https://ror.org/04fyasj17', 'en', 1, 'https://ror.org/04fyasj17 Nagoya Central Hospital åå¤å±‹ć‚»ćƒ³ćƒˆćƒ©ćƒ«ē—…é™¢'),
(3793, 'https://ror.org/04fybn584', 'en', 1, 'https://ror.org/04fybn584 Universidad del Cauca University of Cauca'),
(3794, 'https://ror.org/04fz99q08', 'en', 1, 'https://ror.org/04fz99q08 Minami Wakayama Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹å—å’Œę­Œå±±åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(3795, 'https://ror.org/04g0bt697', 'en', 1, 'https://ror.org/04g0bt697 MultiCare Health System'),
(3796, 'https://ror.org/04g27v387', 'ca', 1, 'https://ror.org/04g27v387 Hospital Universitari de Girona Doctor Josep Trueta Residencia Sanitaria de la Seguridad Social de Gerona'),
(3797, 'https://ror.org/04g2hhm55', 'en', 1, 'https://ror.org/04g2hhm55 Birmingham General Hospital'),
(3798, 'https://ror.org/04g33m791', 'en', 1, 'https://ror.org/04g33m791 Norrkƶping Hospital'),
(3799, 'https://ror.org/04g3dn724', 'en', 1, 'https://ror.org/04g3dn724 Massachusetts Eye and Ear Infirmary'),
(3800, 'https://ror.org/04g3stk86', 'sv', 1, 'https://ror.org/04g3stk86 LƤnssjukhuset i Kalmar'),
(3801, 'https://ror.org/04g3z9997', 'en', 1, 'https://ror.org/04g3z9997 Kanchi Kamakoti CHILDS Trust Hospital'),
(3802, 'https://ror.org/04g43x563', 'en', 1, 'https://ror.org/04g43x563 Minnesota Department of Health'),
(3803, 'https://ror.org/04g525b43', 'en', 1, 'https://ror.org/04g525b43 First Pavlov State Medical University of St. Petersburg ŠŸŠµŃ€Š²Ń‹Š¹ Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика И. П. Павлова'),
(3804, 'https://ror.org/04g7tnd56', 'en', 1, 'https://ror.org/04g7tnd56 North Maharashtra University ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(3805, 'https://ror.org/04g8hwy69', 'en', 1, 'https://ror.org/04g8hwy69 Holy Cross Hospital'),
(3806, 'https://ror.org/04g9xj393', 'en', 1, 'https://ror.org/04g9xj393 Legacy Health'),
(3807, 'https://ror.org/04gbhgc79', 'en', 1, 'https://ror.org/04gbhgc79 HƓpital GƩnƩral de MontrƩal Montreal General Hospital'),
(3808, 'https://ror.org/04gd4wn47', 'en', 1, 'https://ror.org/04gd4wn47 Arabian Gulf University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ų§Ł„Ų¹Ų±ŲØŁŠ دانؓگاه Ų®Ł„ŪŒŲ¬ عربی'),
(3809, 'https://ror.org/04gfeaw48', 'en', 1, 'https://ror.org/04gfeaw48 Southern Utah University'),
(3810, 'https://ror.org/04gh26240', 'en', 1, 'https://ror.org/04gh26240 Mount Gould Hospital'),
(3811, 'https://ror.org/04ghtpd15', 'en', 1, 'https://ror.org/04ghtpd15 Institute of Child Health Ī¹Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ υγείας του Ļ€Ī±Ī¹Ī“Ī¹ĪæĻ');
INSERT INTO `rors` VALUES
(3812, 'https://ror.org/04gjkkf30', 'en', 1, 'https://ror.org/04gjkkf30 Banner Sun Health Research Institute'),
(3813, 'https://ror.org/04gknbs13', 'en', 1, 'https://ror.org/04gknbs13 National Chiayi University åœ‹ē«‹å˜‰ē¾©å¤§å­ø'),
(3814, 'https://ror.org/04gmtmm57', 'no_lang_code', 1, 'https://ror.org/04gmtmm57 Misgav Ladach ×žÖ“×©Ö°×‚×’ÖøÖ¼×‘ ×œÖ·×“ÖøÖ¼×šÖ°'),
(3815, 'https://ror.org/04gnvnd68', 'en', 1, 'https://ror.org/04gnvnd68 AnMed Health Medical Center'),
(3816, 'https://ror.org/04gpcyk21', 'en', 1, 'https://ror.org/04gpcyk21 Japan Women''s University ę—„ęœ¬å„³å­å¤§å­¦'),
(3817, 'https://ror.org/04gpfvy81', 'nl', 1, 'https://ror.org/04gpfvy81 Elisabeth-TweeSteden Ziekenhuis'),
(3818, 'https://ror.org/04gqx4x78', 'it', 1, 'https://ror.org/04gqx4x78 Campus Bio-Medico University UniversitĆ  Campus Bio-Medico'),
(3819, 'https://ror.org/04gr4mh63', 'en', 1, 'https://ror.org/04gr4mh63 Chung-Ang University Hospital ģ¤‘ģ•™ėŒ€ķ•™źµģ˜ė£Œģ›'),
(3820, 'https://ror.org/04grcvp20', 'no_lang_code', 1, 'https://ror.org/04grcvp20 Ingenieria Y Economia Del Transporte'),
(3821, 'https://ror.org/04gs6xd08', 'en', 1, 'https://ror.org/04gs6xd08 Sjællands universitetshospital, Køge Zealand University Hospital Køge'),
(3822, 'https://ror.org/04gt4je81', 'sv', 1, 'https://ror.org/04gt4je81 Lasarettet i Motala'),
(3823, 'https://ror.org/04gw05r18', 'fr', 1, 'https://ror.org/04gw05r18 Centre Hospitalier Victor Dupouy'),
(3824, 'https://ror.org/04gzbav43', 'en', 1, 'https://ror.org/04gzbav43 Amirkabir University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ł…ŪŒŲ±Ś©ŲØŪŒŲ±'),
(3825, 'https://ror.org/04h08p482', 'no_lang_code', 1, 'https://ror.org/04h08p482 Rolls-Royce (United Kingdom)'),
(3826, 'https://ror.org/04h3ct388', 'en', 1, 'https://ror.org/04h3ct388 Imo State University Teaching Hospital'),
(3827, 'https://ror.org/04h687w28', 'no_lang_code', 1, 'https://ror.org/04h687w28 Khalili Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų®Ł„ŪŒŁ„ŪŒ'),
(3828, 'https://ror.org/04h74qb21', 'en', 1, 'https://ror.org/04h74qb21 Pilgrim Hospital'),
(3829, 'https://ror.org/04h7nbn38', 'en', 1, 'https://ror.org/04h7nbn38 Canberra Hospital'),
(3830, 'https://ror.org/04h8jph19', 'en', 1, 'https://ror.org/04h8jph19 Soon Chun Hyang University Cheonan Hospital ģˆœģ²œķ–„ėŒ€ķ•™źµ ģ²œģ•ˆė³‘ģ›'),
(3831, 'https://ror.org/04hahwc19', 'en', 1, 'https://ror.org/04hahwc19 Meiji University of Integrative Medicine ę˜Žę²»å›½éš›åŒ»ē™‚å¤§å­¦'),
(3832, 'https://ror.org/04hbpw172', 'en', 1, 'https://ror.org/04hbpw172 Punjab Medical College'),
(3833, 'https://ror.org/04hcg0q34', 'en', 1, 'https://ror.org/04hcg0q34 Alameda Health System'),
(3834, 'https://ror.org/04hgm3062', 'en', 1, 'https://ror.org/04hgm3062 Iowa City VA Health Care System'),
(3835, 'https://ror.org/04hjf5k52', 'no_lang_code', 1, 'https://ror.org/04hjf5k52 Pivotal Labs'),
(3836, 'https://ror.org/04hjn8p44', 'en', 1, 'https://ror.org/04hjn8p44 Staten Island University Hospital'),
(3837, 'https://ror.org/04hk86037', 'en', 1, 'https://ror.org/04hk86037 Universidad de Matanzas "Camilo Cienfuegos" University of Matanzas, University of Matanzas "Camilo Cienfuegos"'),
(3838, 'https://ror.org/04hnqrf16', 'en', 1, 'https://ror.org/04hnqrf16 National Center of Public Health and Analyses ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ Ń†ŠµŠ½Ń‚ŃŠŃ€ по обществено зГраве Šø анализи'),
(3839, 'https://ror.org/04hnrs676', 'pt', 1, 'https://ror.org/04hnrs676 Universidade de Mogi das Cruzes University of Mogi das Cruzes'),
(3840, 'https://ror.org/04hp86393', 'no_lang_code', 1, 'https://ror.org/04hp86393 National Grid (United Kingdom)'),
(3841, 'https://ror.org/04hsvgn43', 'en', 1, 'https://ror.org/04hsvgn43 Rangaraya Medical College'),
(3842, 'https://ror.org/04hym7e04', 'en', 1, 'https://ror.org/04hym7e04 Al-Quds University ××•× ×™×‘×Ø×”×™×˜×Ŗ אל-קודה Ų¬Ų§Ł…Ų¹Ų© القدس'),
(3843, 'https://ror.org/04hzm4679', 'en', 1, 'https://ror.org/04hzm4679 National Institute for Occupational Health'),
(3844, 'https://ror.org/04hzs7842', 'fr', 1, 'https://ror.org/04hzs7842 Centre Hospitalier Edmond Garcin'),
(3845, 'https://ror.org/04hzsfs96', 'en', 1, 'https://ror.org/04hzsfs96 HƓpital adventiste porter Porter Adventist Hospital'),
(3846, 'https://ror.org/04j0szy54', 'fr', 1, 'https://ror.org/04j0szy54 HƓpital Boucicaut'),
(3847, 'https://ror.org/04j19h351', 'en', 1, 'https://ror.org/04j19h351 Chase Farm Hospital'),
(3848, 'https://ror.org/04j1w0q97', 'en', 1, 'https://ror.org/04j1w0q97 Islamic University ইসলামী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(3849, 'https://ror.org/04j2cfe69', 'en', 1, 'https://ror.org/04j2cfe69 Tianjin Medical University Eye Hospital'),
(3850, 'https://ror.org/04j339g17', 'en', 1, 'https://ror.org/04j339g17 Tokyo Teishin Hospital ę±äŗ¬é€“äæ”ē—…é™¢'),
(3851, 'https://ror.org/04j36h363', 'en', 1, 'https://ror.org/04j36h363 Children''s Hospital & Medical Center'),
(3852, 'https://ror.org/04j3vr751', 'en', 1, 'https://ror.org/04j3vr751 Hunan University of Technology'),
(3853, 'https://ror.org/04j572391', 'en', 1, 'https://ror.org/04j572391 University Park Pathology Associates'),
(3854, 'https://ror.org/04j6ay666', 'en', 1, 'https://ror.org/04j6ay666 Akashi Medical Center ę˜ŽēŸ³åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3855, 'https://ror.org/04j6dw954', 'en', 1, 'https://ror.org/04j6dw954 Have Dreams'),
(3856, 'https://ror.org/04j71m034', 'en', 1, 'https://ror.org/04j71m034 Saint Francis Health System'),
(3857, 'https://ror.org/04j7rhg40', 'no_lang_code', 1, 'https://ror.org/04j7rhg40 Prime Focus World'),
(3858, 'https://ror.org/04j9bvy88', 'en', 1, 'https://ror.org/04j9bvy88 BG University Hospital Bergmannsheil Bochum BG UniversitƤtsklinikum Bergmannsheil Bochum'),
(3859, 'https://ror.org/04jc0r179', 'no_lang_code', 1, 'https://ror.org/04jc0r179 UK Coal'),
(3860, 'https://ror.org/04jca3284', 'es', 1, 'https://ror.org/04jca3284 Hospital Metropolitano'),
(3861, 'https://ror.org/04jdq2t93', 'en', 1, 'https://ror.org/04jdq2t93 Aaron Diamond AIDS Research Center'),
(3862, 'https://ror.org/04je6yw13', 'en', 1, 'https://ror.org/04je6yw13 Cheikh Anta Diop University UniversitƩ Cheikh Anta Diop'),
(3863, 'https://ror.org/04jer6b34', 'en', 1, 'https://ror.org/04jer6b34 Washington State Board of Education'),
(3864, 'https://ror.org/04jfnqt61', 'no_lang_code', 1, 'https://ror.org/04jfnqt61 Western Forest Products'),
(3865, 'https://ror.org/04jjn8965', 'en', 1, 'https://ror.org/04jjn8965 Simpson College'),
(3866, 'https://ror.org/04jkbnw46', 'en', 1, 'https://ror.org/04jkbnw46 Center for Infectious Disease Research'),
(3867, 'https://ror.org/04jkk6t02', 'no_lang_code', 1, 'https://ror.org/04jkk6t02 IQuum (United States)'),
(3868, 'https://ror.org/04jq4p608', 'pt', 1, 'https://ror.org/04jq4p608 Hospital Garcia de Orta'),
(3869, 'https://ror.org/04jq72f57', 'en', 1, 'https://ror.org/04jq72f57 Royal Darwin Hospital'),
(3870, 'https://ror.org/04jqj7p05', 'no_lang_code', 1, 'https://ror.org/04jqj7p05 Hitotsubashi University 一橋大学'),
(3871, 'https://ror.org/04js17g72', 'en', 1, 'https://ror.org/04js17g72 Ifakara Health Institute'),
(3872, 'https://ror.org/04jwmdy30', 'no_lang_code', 1, 'https://ror.org/04jwmdy30 XMG Studio (Canada)'),
(3873, 'https://ror.org/04jx7r642', 'no_lang_code', 1, 'https://ror.org/04jx7r642 Process Research Ortech (Canada)'),
(3874, 'https://ror.org/04jxcef68', 'en', 1, 'https://ror.org/04jxcef68 Royal Edinburgh Hospital'),
(3875, 'https://ror.org/04jy8zw69', 'en', 1, 'https://ror.org/04jy8zw69 Yehuda Abarbanel Mental Health Center ××‘×Ø×‘× ××œ - ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש'),
(3876, 'https://ror.org/04jyxq429', 'en', 1, 'https://ror.org/04jyxq429 Center for Research and Telecommunication Experimentation for Networked Communities'),
(3877, 'https://ror.org/04jztag35', 'en', 1, 'https://ror.org/04jztag35 Peking Union Medical College Hospital åŒ—äŗ¬åå’ŒåŒ»é™¢'),
(3878, 'https://ror.org/04k093t90', 'en', 1, 'https://ror.org/04k093t90 Chaudhary Sarwan Kumar Himachal Pradesh Krishi Vishvavidyalaya'),
(3879, 'https://ror.org/04k0yqc48', 'en', 1, 'https://ror.org/04k0yqc48 Buskerud University College'),
(3880, 'https://ror.org/04k1cm432', 'en', 1, 'https://ror.org/04k1cm432 Saint Luke''s Hospital'),
(3881, 'https://ror.org/04k1f6611', 'en', 1, 'https://ror.org/04k1f6611 Maccabi Health Care Services מכבי שירותי ×‘×Ø×™××•×Ŗā€Ž'),
(3882, 'https://ror.org/04k26n974', 'pt', 1, 'https://ror.org/04k26n974 Instituto Superior PolitƩcnico Gaya'),
(3883, 'https://ror.org/04k3jt835', 'en', 1, 'https://ror.org/04k3jt835 Ronald Reagan UCLA Medical Center'),
(3884, 'https://ror.org/04k4h9k07', 'en', 1, 'https://ror.org/04k4h9k07 Scripps Mercy Hospital'),
(3885, 'https://ror.org/04k6zqn86', 'en', 1, 'https://ror.org/04k6zqn86 Beijing Hua Xin Hospital åŒ—äŗ¬åŽäæ”åŒ»é™¢'),
(3886, 'https://ror.org/04k820v98', 'en', 1, 'https://ror.org/04k820v98 Saudi Aramco Medical Services Organization'),
(3887, 'https://ror.org/04k8zab17', 'en', 1, 'https://ror.org/04k8zab17 Alliant International University'),
(3888, 'https://ror.org/04kbvfy96', 'es', 1, 'https://ror.org/04kbvfy96 Hospital de Sagunto'),
(3889, 'https://ror.org/04kg3w865', 'no_lang_code', 1, 'https://ror.org/04kg3w865 Phylonix (United States)'),
(3890, 'https://ror.org/04kgg1090', 'en', 1, 'https://ror.org/04kgg1090 Pusan National University Yangsan Hospital ģ–‘ģ‚°ė¶€ģ‚°ėŒ€ķ•™źµė³‘ģ›'),
(3891, 'https://ror.org/04kgqpx54', 'no_lang_code', 1, 'https://ror.org/04kgqpx54 Voestalpine (Austria)'),
(3892, 'https://ror.org/04kjpp702', 'en', 1, 'https://ror.org/04kjpp702 Kaiser Permanente Santa Rosa Medical Center'),
(3893, 'https://ror.org/04kk13p96', 'en', 1, 'https://ror.org/04kk13p96 Reading Hospital'),
(3894, 'https://ror.org/04knhza04', 'en', 1, 'https://ror.org/04knhza04 KCMC Kilimanjaro Christian Medical Centre'),
(3895, 'https://ror.org/04kt0yt69', 'tr', 1, 'https://ror.org/04kt0yt69 Etimesgut Asker Hastanesi'),
(3896, 'https://ror.org/04kte4472', 'no_lang_code', 1, 'https://ror.org/04kte4472 Materials and Electrochemical Research (United States)'),
(3897, 'https://ror.org/04kvh1910', 'en', 1, 'https://ror.org/04kvh1910 Resurrection Health Care'),
(3898, 'https://ror.org/04ky9dq80', 'no_lang_code', 1, 'https://ror.org/04ky9dq80 Vaexjoe Energi Ab'),
(3899, 'https://ror.org/04ky9n739', 'no_lang_code', 1, 'https://ror.org/04ky9n739 Beijing Chuiyangliu Hospital åŒ—äŗ¬åø‚åž‚ęØęŸ³åŒ»é™¢'),
(3900, 'https://ror.org/04kzbp858', 'no_lang_code', 1, 'https://ror.org/04kzbp858 Agropur cooperative'),
(3901, 'https://ror.org/04m0kdq23', 'it', 1, 'https://ror.org/04m0kdq23 Ospedale Sant''Anna'),
(3902, 'https://ror.org/04m2hyg08', 'en', 1, 'https://ror.org/04m2hyg08 Maryland Science Center'),
(3903, 'https://ror.org/04m3xd186', 'pt', 1, 'https://ror.org/04m3xd186 Centro UniversitƔrio de Belo Horizonte, Centro UniversitƔrio de belo Horizonte'),
(3904, 'https://ror.org/04m61mj84', 'fr', 1, 'https://ror.org/04m61mj84 Centre Hospitalier Universitaire Henri-Mondor'),
(3905, 'https://ror.org/04m88de33', 'en', 1, 'https://ror.org/04m88de33 Froedtert Menomonee Falls Hospital'),
(3906, 'https://ror.org/04m8b1e20', 'en', 1, 'https://ror.org/04m8b1e20 Georgian Court University'),
(3907, 'https://ror.org/04m8bh175', 'no_lang_code', 1, 'https://ror.org/04m8bh175 Advanced Fuel Research (United States)'),
(3908, 'https://ror.org/04m8z4n60', 'en', 1, 'https://ror.org/04m8z4n60 Harris Health System'),
(3909, 'https://ror.org/04mat8m15', 'fi', 1, 'https://ror.org/04mat8m15 ReumasƤƤtiƶn sairaala'),
(3910, 'https://ror.org/04mc30s43', 'no_lang_code', 1, 'https://ror.org/04mc30s43 Olivieri Foods'),
(3911, 'https://ror.org/04mc4md34', 'tr', 1, 'https://ror.org/04mc4md34 Rize Devlet Hastanesi'),
(3912, 'https://ror.org/04mc82d47', 'en', 1, 'https://ror.org/04mc82d47 Scientific Committee On Oceanic Research'),
(3913, 'https://ror.org/04mdycw91', 'no_lang_code', 1, 'https://ror.org/04mdycw91 Eurofins (France)'),
(3914, 'https://ror.org/04mf6js28', 'en', 1, 'https://ror.org/04mf6js28 Credit Valley Hospital'),
(3915, 'https://ror.org/04mgjym08', 'en', 1, 'https://ror.org/04mgjym08 Institute of Occupational Medicine and Environmental Health Instytut Medycyny Pracy i Zdrowia Środowiskowego'),
(3916, 'https://ror.org/04mh52z70', 'en', 1, 'https://ror.org/04mh52z70 Observatorio AstrofĆ­sico Smithsonian Smithsonian Astrophysical Observatory'),
(3917, 'https://ror.org/04mhx6838', 'en', 1, 'https://ror.org/04mhx6838 National Institute on Deafness and Other Communication Disorders'),
(3918, 'https://ror.org/04mkpd147', 'es', 1, 'https://ror.org/04mkpd147 Red Universitaria Nacional'),
(3919, 'https://ror.org/04mm17p39', 'en', 1, 'https://ror.org/04mm17p39 Novant Health Forsyth Medical Center'),
(3920, 'https://ror.org/04mpzkf73', 'en', 1, 'https://ror.org/04mpzkf73 Winthrop University'),
(3921, 'https://ror.org/04mqy3p58', 'pt', 1, 'https://ror.org/04mqy3p58 Instituto de Engenharia de Sistemas e Computadores Investigação e Desenvolvimento'),
(3922, 'https://ror.org/04mrdd905', 'en', 1, 'https://ror.org/04mrdd905 University of Wisconsin American Family Children''s Hospital'),
(3923, 'https://ror.org/04mszwh44', 'en', 1, 'https://ror.org/04mszwh44 Gerontological Society of America'),
(3924, 'https://ror.org/04mwdyf26', 'en', 1, 'https://ror.org/04mwdyf26 Al-Makassed Islamic Charitable Society Hospital'),
(3925, 'https://ror.org/04mx3cr06', 'en', 1, 'https://ror.org/04mx3cr06 Leighton Hospital'),
(3926, 'https://ror.org/04mxrtj31', 'en', 1, 'https://ror.org/04mxrtj31 Mater Children''s Hospital'),
(3927, 'https://ror.org/04my10541', 'en', 1, 'https://ror.org/04my10541 Centre of Advanced Studies'),
(3928, 'https://ror.org/04n4dcv16', 'en', 1, 'https://ror.org/04n4dcv16 Ardabil University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§Ų±ŲÆŲØŪŒŁ„'),
(3929, 'https://ror.org/04n4f3r80', 'en', 1, 'https://ror.org/04n4f3r80 Military Hospital of Tunis'),
(3930, 'https://ror.org/04n76mm80', 'en', 1, 'https://ror.org/04n76mm80 Hanyang University Seoul Hospital'),
(3931, 'https://ror.org/04n9z8z70', 'en', 1, 'https://ror.org/04n9z8z70 New Mexico VA Health Care System'),
(3932, 'https://ror.org/04nbe0v26', 'en', 1, 'https://ror.org/04nbe0v26 Institute of Studies for the Integration of Systems l’Istituto di Studi per l’Integrazione dei Sistemi'),
(3933, 'https://ror.org/04nc9r025', 'en', 1, 'https://ror.org/04nc9r025 Colonial War Memorial Hospital'),
(3934, 'https://ror.org/04nctyb57', 'en', 1, 'https://ror.org/04nctyb57 Sharp Mary Birch Hospital for Women & Newborns'),
(3935, 'https://ror.org/04ned8342', 'en', 1, 'https://ror.org/04ned8342 Saint Michael''s Medical Center'),
(3936, 'https://ror.org/04nfc4n06', 'en', 1, 'https://ror.org/04nfc4n06 Franciscan Hospital for Children'),
(3937, 'https://ror.org/04ngpga37', 'en', 1, 'https://ror.org/04ngpga37 Park University'),
(3938, 'https://ror.org/04ngv0f69', 'en', 1, 'https://ror.org/04ngv0f69 Buffalo General Medical Center'),
(3939, 'https://ror.org/04nj3w743', 'en', 1, 'https://ror.org/04nj3w743 German Kazakh University Kazakhstan-Nemis Universitet'),
(3940, 'https://ror.org/04nn0sh76', 'en', 1, 'https://ror.org/04nn0sh76 Mogilev State University of Food Technologies ŠœŠ°Š³Ń–Š»Ń‘ŃžŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń…Š°Ń€Ń‡Š°Š²Š°Š½Š½Ń'),
(3941, 'https://ror.org/04npk0q16', 'en', 1, 'https://ror.org/04npk0q16 Animal Health Trust'),
(3942, 'https://ror.org/04npss011', 'en', 1, 'https://ror.org/04npss011 Gandhi Medical College ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤­ą„‹ą¤Ŗą¤¾ą¤² గాంధీ ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(3943, 'https://ror.org/04npwsp41', 'en', 1, 'https://ror.org/04npwsp41 Coriell Institute For Medical Research'),
(3944, 'https://ror.org/04npy5k94', 'no_lang_code', 1, 'https://ror.org/04npy5k94 Intracom Telecom (Greece)'),
(3945, 'https://ror.org/04nqv0v23', 'en', 1, 'https://ror.org/04nqv0v23 Lynn University'),
(3946, 'https://ror.org/04nr0c858', 'es', 1, 'https://ror.org/04nr0c858 Hospital Vozandes'),
(3947, 'https://ror.org/04nrjxa63', 'en', 1, 'https://ror.org/04nrjxa63 Shanghai Agrobiological Gene Center äøŠęµ·åø‚å†œäøšē”Ÿē‰©åŸŗå› äø­åæƒ'),
(3948, 'https://ror.org/04nrs5002', 'en', 1, 'https://ror.org/04nrs5002 Helen Joseph Hospital'),
(3949, 'https://ror.org/04nt8b154', 'en', 1, 'https://ror.org/04nt8b154 Fukuoka University ē¦å²”å¤§å­¦'),
(3950, 'https://ror.org/04ntyjt11', 'en', 1, 'https://ror.org/04ntyjt11 Yeungnam University Medical Center ģ˜ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(3951, 'https://ror.org/04nwm7739', 'en', 1, 'https://ror.org/04nwm7739 Oklahoma Baptist University'),
(3952, 'https://ror.org/04nyf1f54', 'en', 1, 'https://ror.org/04nyf1f54 Shanghai Center For Bioinformation Technology äøŠęµ·ē”Ÿē‰©äæ”ęÆęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(3953, 'https://ror.org/04nzv4p86', 'it', 1, 'https://ror.org/04nzv4p86 Ospedale San Luigi Gonzaga'),
(3954, 'https://ror.org/04p405e02', 'en', 1, 'https://ror.org/04p405e02 Biblioteca del Congreso de Estados Unidos BibliothĆØque du CongrĆØs Library of Congress'),
(3955, 'https://ror.org/04p7nde68', 'en', 1, 'https://ror.org/04p7nde68 Hakodate Central General Hospital 函館中央病院'),
(3956, 'https://ror.org/04pag4b70', 'fr', 1, 'https://ror.org/04pag4b70 HƓpital Jean-Verdier'),
(3957, 'https://ror.org/04pc7j325', 'en', 1, 'https://ror.org/04pc7j325 Meir Medical Center ×ž×Ø×›×– רפואי ×ž××™×Ø'),
(3958, 'https://ror.org/04pcmf738', 'en', 1, 'https://ror.org/04pcmf738 Kempegowda Institute of Medical Sciences ą²•ą³†ą²‚ą²Ŗą³†ą³•ą²—ą³Œą²” ą²µą³†ą³–ą²¦ą³ą²Æą²•ą²æą³•ą²Æ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(3959, 'https://ror.org/04pd9b824', 'no_lang_code', 1, 'https://ror.org/04pd9b824 Doosan (United Kingdom)'),
(3960, 'https://ror.org/04pf12f40', 'en', 1, 'https://ror.org/04pf12f40 Louisiana State University at Eunice UniversitĆ© d''Ɖtat de louisiane Ć  eunice'),
(3961, 'https://ror.org/04pf1fm38', 'en', 1, 'https://ror.org/04pf1fm38 Seirei Social Welfare Community'),
(3962, 'https://ror.org/04pne0d08', 'en', 1, 'https://ror.org/04pne0d08 Norton Medical Centre'),
(3963, 'https://ror.org/04pqpfz42', 'en', 1, 'https://ror.org/04pqpfz42 National Medical Center'),
(3964, 'https://ror.org/04pr9pz75', 'it', 1, 'https://ror.org/04pr9pz75 Azienda Ospedaliera San Giovanni Addolorata San Giovanni Addolorata Hospital'),
(3965, 'https://ror.org/04ptbrd12', 'en', 1, 'https://ror.org/04ptbrd12 Guilan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŚÆŪŒŁ„Ų§Ł†'),
(3966, 'https://ror.org/04pwc8466', 'en', 1, 'https://ror.org/04pwc8466 Johns Hopkins Bayview Medical Center'),
(3967, 'https://ror.org/04py1g812', 'en', 1, 'https://ror.org/04py1g812 Jiangsu Province Hospital ę±Ÿč‹ēœäŗŗę°‘åŒ»é™¢'),
(3968, 'https://ror.org/04pyb7y63', 'en', 1, 'https://ror.org/04pyb7y63 Fondazione Internazionale per la Ricerca Sulla Combustione International Flame Research Foundation'),
(3969, 'https://ror.org/04pyrxz13', 'en', 1, 'https://ror.org/04pyrxz13 Southern California University of Health Sciences'),
(3970, 'https://ror.org/04pysv427', 'en', 1, 'https://ror.org/04pysv427 Lady Ridgeway Hospital for Children ą®²ąÆ‡ą®Ÿą®æ ą®°ą®æą®ŸąÆą®œąÆą®µąÆ‡ ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆą®Æą®æą®²ąÆ ą¶»ą·’ą¶¢ą·Šą·€ą·š ą¶†ą¶»ą·Šą¶ŗą· ą·…ą¶øą· ą¶»ą·ą·„ą¶½'),
(3971, 'https://ror.org/04q48ey07', 'en', 1, 'https://ror.org/04q48ey07 National Institute of General Medical Sciences'),
(3972, 'https://ror.org/04q9tew83', 'en', 1, 'https://ror.org/04q9tew83 Henry M. Jackson Foundation'),
(3973, 'https://ror.org/04qbdwc31', 'en', 1, 'https://ror.org/04qbdwc31 Southport and Formby District General Hospital'),
(3974, 'https://ror.org/04qcftj32', 'en', 1, 'https://ror.org/04qcftj32 UK Health and Environment Research Institute'),
(3975, 'https://ror.org/04qdwp261', 'es', 1, 'https://ror.org/04qdwp261 Hospital Clinico San Borja Arriaran, Hospital San Borja ArriarƔn'),
(3976, 'https://ror.org/04qesyg82', 'en', 1, 'https://ror.org/04qesyg82 Medical Education Institute'),
(3977, 'https://ror.org/04qgcgz06', 'en', 1, 'https://ror.org/04qgcgz06 University Hospital of North Durham'),
(3978, 'https://ror.org/04qj1gz53', 'de', 1, 'https://ror.org/04qj1gz53 Lukaskrankenhaus'),
(3979, 'https://ror.org/04qjnvx31', 'en', 1, 'https://ror.org/04qjnvx31 Brentwood Biomedical Research Institute'),
(3980, 'https://ror.org/04qk4yf71', 'en', 1, 'https://ror.org/04qk4yf71 Conemaugh Memorial Medical Center'),
(3981, 'https://ror.org/04qkq2m54', 'en', 1, 'https://ror.org/04qkq2m54 National Yunlin University of Science and Technology'),
(3982, 'https://ror.org/04qkymg17', 'no_lang_code', 1, 'https://ror.org/04qkymg17 Assuta Medical Center אהותא ×ž×Ø×›×–×™× ×Ø×¤×•××™×™×'),
(3983, 'https://ror.org/04qm8ac48', 'en', 1, 'https://ror.org/04qm8ac48 Philadelphia Department of Public Health'),
(3984, 'https://ror.org/04qma4821', 'pt', 1, 'https://ror.org/04qma4821 Hospital Pró-Cardíaco'),
(3985, 'https://ror.org/04qmkfe11', 'en', 1, 'https://ror.org/04qmkfe11 VA St. Louis Health Care System'),
(3986, 'https://ror.org/04qn0xg47', 'en', 1, 'https://ror.org/04qn0xg47 Kyungpook National University Hospital ź²½ė¶ėŒ€ķ•™źµė³‘ģ›'),
(3987, 'https://ror.org/04qpegs24', 'en', 1, 'https://ror.org/04qpegs24 Resources For The Future'),
(3988, 'https://ror.org/04qs81248', 'en', 1, 'https://ror.org/04qs81248 Russells Hall Hospital'),
(3989, 'https://ror.org/04qvdf239', 'tr', 1, 'https://ror.org/04qvdf239 Bozok Universitesi Bozok University'),
(3990, 'https://ror.org/04qwmjc96', 'no_lang_code', 1, 'https://ror.org/04qwmjc96 BASF (Canada)'),
(3991, 'https://ror.org/04qx1zg28', 'en', 1, 'https://ror.org/04qx1zg28 Redeemer University College'),
(3992, 'https://ror.org/04r0kzx48', 'en', 1, 'https://ror.org/04r0kzx48 Baker University'),
(3993, 'https://ror.org/04r17y386', 'en', 1, 'https://ror.org/04r17y386 Danish Health and Medicines Authority, National Board of Health Sundhedsstyrelsen'),
(3994, 'https://ror.org/04r1x2k35', 'en', 1, 'https://ror.org/04r1x2k35 FH Kufstein University of Applied Sciences Kufstein'),
(3995, 'https://ror.org/04r33pf22', 'en', 1, 'https://ror.org/04r33pf22 Guy''s Hospital'),
(3996, 'https://ror.org/04r5ess67', 'en', 1, 'https://ror.org/04r5ess67 Sleep and Human Health Institute'),
(3997, 'https://ror.org/04r69jb93', 'en', 1, 'https://ror.org/04r69jb93 Kokushikan University å›½å£«čˆ˜å¤§å­¦'),
(3998, 'https://ror.org/04r9qdk92', 'tr', 1, 'https://ror.org/04r9qdk92 Kudret Eye Hospital Kudret Gƶz Hastanesi'),
(3999, 'https://ror.org/04rha3g10', 'en', 1, 'https://ror.org/04rha3g10 Queen Alexandra Hospital'),
(4000, 'https://ror.org/04rhdtb47', 'en', 1, 'https://ror.org/04rhdtb47 Obstetrics and Gynecology Hospital of Fudan University å¤ę—¦å¤§å­¦é™„å±žå¦‡äŗ§ē§‘åŒ»é™¢'),
(4001, 'https://ror.org/04rj5w171', 'en', 1, 'https://ror.org/04rj5w171 Olabisi Onabanjo University Teaching Hospital'),
(4002, 'https://ror.org/04rmz8121', 'en', 1, 'https://ror.org/04rmz8121 Isra University'),
(4003, 'https://ror.org/04rqpth59', 'en', 1, 'https://ror.org/04rqpth59 Boston Biomedical Research Institute'),
(4004, 'https://ror.org/04rr42t68', 'nl', 1, 'https://ror.org/04rr42t68 Jeroen Bosch Ziekenhuis'),
(4005, 'https://ror.org/04rsexf17', 'no_lang_code', 1, 'https://ror.org/04rsexf17 Stemcell Technologies'),
(4006, 'https://ror.org/04rssyw40', 'en', 1, 'https://ror.org/04rssyw40 Universitatea de Științe Agronomice și Medicină Veterinară din București University of Agronomic Sciences and Veterinary Medicine of Bucharest'),
(4007, 'https://ror.org/04rvm9c15', 'en', 1, 'https://ror.org/04rvm9c15 Southland Hospital'),
(4008, 'https://ror.org/04rvms649', 'es', 1, 'https://ror.org/04rvms649 Hospital Nuestra SeƱora de Alarcos'),
(4009, 'https://ror.org/04rx0dh54', 'en', 1, 'https://ror.org/04rx0dh54 Sansum Medical Clinic'),
(4010, 'https://ror.org/04rxn4y96', 'no_lang_code', 1, 'https://ror.org/04rxn4y96 Cell and Tissue Systems (United States)'),
(4011, 'https://ror.org/04s2yen12', 'en', 1, 'https://ror.org/04s2yen12 Letterkenny University Hospital OspidƩal GinearƔlta Leitir Ceanainn'),
(4012, 'https://ror.org/04s36qm86', 'en', 1, 'https://ror.org/04s36qm86 Chelyabinsk State University Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4013, 'https://ror.org/04s4j9e43', 'en', 1, 'https://ror.org/04s4j9e43 Omar Bongo University UniversitƩ Omar Bongo'),
(4014, 'https://ror.org/04s5n7912', 'en', 1, 'https://ror.org/04s5n7912 Science Research Laboratory'),
(4015, 'https://ror.org/04s7f5535', 'no_lang_code', 1, 'https://ror.org/04s7f5535 Beta Technology Limited'),
(4016, 'https://ror.org/04s8a8w57', 'en', 1, 'https://ror.org/04s8a8w57 University Hospital of the West Indies'),
(4017, 'https://ror.org/04s9hft57', 'en', 1, 'https://ror.org/04s9hft57 Quaid-i-Azam University جامعہ قائداعظم'),
(4018, 'https://ror.org/04saq4y86', 'en', 1, 'https://ror.org/04saq4y86 Indira Gandhi Institute of Child Health'),
(4019, 'https://ror.org/04sb8a726', 'no_lang_code', 1, 'https://ror.org/04sb8a726 HÓpital Antoine-Béclère'),
(4020, 'https://ror.org/04sbcrt14', 'en', 1, 'https://ror.org/04sbcrt14 Bhavnagar University'),
(4021, 'https://ror.org/04scbtr44', 'es', 1, 'https://ror.org/04scbtr44 Hospital Universitario de Fuenlabrada'),
(4022, 'https://ror.org/04scfb908', 'en', 1, 'https://ror.org/04scfb908 Alfred Health'),
(4023, 'https://ror.org/04sexa105', 'en', 1, 'https://ror.org/04sexa105 Qazvin University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓكي و Ų®ŲÆŁ…Ų§ŲŖ ŲÆŲ±Ł…Ų§Ł†ŁŠ Ł‚Ų²ŁˆŪŒŁ†'),
(4024, 'https://ror.org/04sfmcd28', 'fr', 1, 'https://ror.org/04sfmcd28 Centre Hospitalier Universitaire Pointe-Ć -Pitre'),
(4025, 'https://ror.org/04sgkca59', 'en', 1, 'https://ror.org/04sgkca59 Funabashi Central Hospital čˆ¹ę©‹äø­å¤®ē—…é™¢'),
(4026, 'https://ror.org/04sgy9050', 'pt', 1, 'https://ror.org/04sgy9050 Hospital Santa Marcelina'),
(4027, 'https://ror.org/04sh9kd82', 'en', 1, 'https://ror.org/04sh9kd82 Starship Children''s Health'),
(4028, 'https://ror.org/04shepe48', 'en', 1, 'https://ror.org/04shepe48 Chinese Culture University äø­åœ‹ę–‡åŒ–å¤§å­ø'),
(4029, 'https://ror.org/04sheqe49', 'en', 1, 'https://ror.org/04sheqe49 Daisy Hill Hospital Otharlann Chnoc na Nóiníní'),
(4030, 'https://ror.org/04skjvf92', 'pt', 1, 'https://ror.org/04skjvf92 Hospital da Restauração'),
(4031, 'https://ror.org/04skph061', 'en', 1, 'https://ror.org/04skph061 Hospital de la Universidad de Nuevo MƩxico University of New Mexico Hospital'),
(4032, 'https://ror.org/04sq8k219', 'en', 1, 'https://ror.org/04sq8k219 University of Louisville Hospital'),
(4033, 'https://ror.org/04sr36h49', 'no_lang_code', 1, 'https://ror.org/04sr36h49 Seeders (South Korea)'),
(4034, 'https://ror.org/04ss1bw11', 'en', 1, 'https://ror.org/04ss1bw11 Tzu Chi University ę…ˆęæŸå¤§å­ø'),
(4035, 'https://ror.org/04ssfah06', 'es', 1, 'https://ror.org/04ssfah06 Hospital Virgen de los Lirios'),
(4036, 'https://ror.org/04svdmv30', 'fr', 1, 'https://ror.org/04svdmv30 The Association of the European Rail Industry, Union des Industries Ferroviaires EuropƩennes'),
(4037, 'https://ror.org/04sx7v519', 'fr', 1, 'https://ror.org/04sx7v519 HƓtel-Dieu de Lyon'),
(4038, 'https://ror.org/04sxj4848', 'en', 1, 'https://ror.org/04sxj4848 Sarah Lawrence College'),
(4039, 'https://ror.org/04sz7qx51', 'fr', 1, 'https://ror.org/04sz7qx51 Centre Hospitalier Universitaire de Rabat-SalƩ'),
(4040, 'https://ror.org/04sze3c15', 'en', 1, 'https://ror.org/04sze3c15 Yonsei University Health System'),
(4041, 'https://ror.org/04szr1369', 'en', 1, 'https://ror.org/04szr1369 Guangzhou Chest Hospital å¹æå·žåø‚čƒøē§‘åŒ»é™¢'),
(4042, 'https://ror.org/04t23pb41', 'fr', 1, 'https://ror.org/04t23pb41 HƓpital Civil de Charleroi'),
(4043, 'https://ror.org/04t41ec74', 'en', 1, 'https://ror.org/04t41ec74 Father Muller Medical College Hospital फादर ą¤®ą„ą¤Æą„ą¤²ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą®Ŗą®¾ą®¤ą®°ąÆ ą®®ąÆą®²ąÆą®²ąÆ†ą®°ąÆ ą®®ąÆ†ą®Ÿą®æą®•ąÆą®•ą®²ąÆ ą®•ą®¾ą®²ąÆ‡ą®œąÆ ą°«ą°¾ą°¦ą°°ą± ą°®ą±ą°²ą±ą°²ą±†ą°°ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°•ą°¾ą°²ą±‡ą°œą± ą²«ą²¾ą²¦ą³†ą²°ą³ ą²®ą³ą²²ą³ą²²ą²°ą³ ą²®ą³†ą²”ą²æą²•ą²²ą³ ą²•ą²¾ą²³ą²œą³ ą“«ą“¾ą“¦ąµ¼ ą“®ąµą“³ąµą“³ąµ†ąµ¼ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(4044, 'https://ror.org/04t4jzh38', 'en', 1, 'https://ror.org/04t4jzh38 Notre Dame Seishin University ćƒŽćƒ¼ćƒˆćƒ«ćƒ€ćƒ ęø…åæƒå„³å­å¤§å­¦'),
(4045, 'https://ror.org/04t6r6d34', 'en', 1, 'https://ror.org/04t6r6d34 International Space University'),
(4046, 'https://ror.org/04t6zb108', 'en', 1, 'https://ror.org/04t6zb108 University Hospitals Geneva Medical Center'),
(4047, 'https://ror.org/04t77r183', 'es', 1, 'https://ror.org/04t77r183 Hospital Ludovica Hospital de NiƱos Superiora Sor Marƭa Ludovica'),
(4048, 'https://ror.org/04tavf782', 'en', 1, 'https://ror.org/04tavf782 Beijing Computational Science Research Center åŒ—äŗ¬č®”ē®—ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(4049, 'https://ror.org/04tbm0m52', 'en', 1, 'https://ror.org/04tbm0m52 Pinderfields Hospital'),
(4050, 'https://ror.org/04tf4g123', 'en', 1, 'https://ror.org/04tf4g123 Sichuan Provincial Academy of Natural Resource Sciences å››å·ēœč‡Ŗē„¶čµ„ęŗē§‘å­¦é™¢'),
(4051, 'https://ror.org/04tft4718', 'no_lang_code', 1, 'https://ror.org/04tft4718 Tamkang University 淔江大學'),
(4052, 'https://ror.org/04tm3k558', 'en', 1, 'https://ror.org/04tm3k558 Third Affiliated Hospital of Sun Yat-sen University'),
(4053, 'https://ror.org/04tpqnr72', 'en', 1, 'https://ror.org/04tpqnr72 Harold Wood Hospital'),
(4054, 'https://ror.org/04tprjr04', 'en', 1, 'https://ror.org/04tprjr04 Nippon Steel Yawata Memorial Hospital č£½é‰„čØ˜åæµå…«å¹”ē—…é™¢'),
(4055, 'https://ror.org/04tqcn816', 'en', 1, 'https://ror.org/04tqcn816 Health Sciences University of Hokkaido åŒ—ęµ·é“åŒ»ē™‚å¤§å­¦'),
(4056, 'https://ror.org/04tr09862', 'en', 1, 'https://ror.org/04tr09862 Sequoia Hospital'),
(4057, 'https://ror.org/04ts4qa58', 'en', 1, 'https://ror.org/04ts4qa58 Changwon National University ģ°½ģ›ėŒ€ķ•™źµ'),
(4058, 'https://ror.org/04ttjf776', 'en', 1, 'https://ror.org/04ttjf776 RMIT University'),
(4059, 'https://ror.org/04twccc71', 'en', 1, 'https://ror.org/04twccc71 National United University'),
(4060, 'https://ror.org/04tzy5g14', 'en', 1, 'https://ror.org/04tzy5g14 Missouri Botanical Garden'),
(4061, 'https://ror.org/04v00sg98', 'en', 1, 'https://ror.org/04v00sg98 VA Boston Healthcare System'),
(4062, 'https://ror.org/04v0wnx78', 'tr', 1, 'https://ror.org/04v0wnx78 Dr. Siyami Ersek Göğüs Kalp Ve Damar Cerrahisi Eğitim Ve Araştırma Hastanesi'),
(4063, 'https://ror.org/04v1j8c44', 'no_lang_code', 1, 'https://ror.org/04v1j8c44 Advanced Bioscience Laboratories (United States)'),
(4064, 'https://ror.org/04v3sec91', 'en', 1, 'https://ror.org/04v3sec91 Saint Mary''s University of Minnesota'),
(4065, 'https://ror.org/04v403p80', 'en', 1, 'https://ror.org/04v403p80 Consorzio Interuniversitario Risonanze Magnetiche di Metallo Proteine Interuniversity Consortium for Magnetic Resonance'),
(4066, 'https://ror.org/04v91tb50', 'es', 1, 'https://ror.org/04v91tb50 Complejo Hospitalario TorrecƔrdenas'),
(4067, 'https://ror.org/04v98kq37', 'no_lang_code', 1, 'https://ror.org/04v98kq37 Renault (France)'),
(4068, 'https://ror.org/04va7bx33', 'en', 1, 'https://ror.org/04va7bx33 Killingbeck'),
(4069, 'https://ror.org/04vcan916', 'en', 1, 'https://ror.org/04vcan916 Lev Hasharon Hospital ×ž×Ø×›×– רפואי ×œ×‘×Ø×™××•×Ŗ הנפש לב ×”×©×Ø×•×Ÿ'),
(4070, 'https://ror.org/04vccmr34', 'nl', 1, 'https://ror.org/04vccmr34 Medisch Centrum Alkmaar'),
(4071, 'https://ror.org/04vcxwm16', 'en', 1, 'https://ror.org/04vcxwm16 Mission Hospital'),
(4072, 'https://ror.org/04vdpck27', 'en', 1, 'https://ror.org/04vdpck27 Catholic University of the Maule Universidad Católica del Maule'),
(4073, 'https://ror.org/04vfsmv21', 'en', 1, 'https://ror.org/04vfsmv21 National Institutes of Health Clinical Center'),
(4074, 'https://ror.org/04vfyfx73', 'no_lang_code', 1, 'https://ror.org/04vfyfx73 Teer Coatings (United Kingdom)'),
(4075, 'https://ror.org/04vgkzj18', 'en', 1, 'https://ror.org/04vgkzj18 Ibaraki Prefectural University of Health Sciences čŒØåŸŽēœŒē«‹åŒ»ē™‚å¤§å­¦'),
(4076, 'https://ror.org/04vhsg885', 'en', 1, 'https://ror.org/04vhsg885 Allama Iqbal Medical College علامہ اقبال Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(4077, 'https://ror.org/04vnz0695', 'no_lang_code', 1, 'https://ror.org/04vnz0695 Asahikawa Kosei Hospital ę—­å·åŽšē”Ÿē—…é™¢'),
(4078, 'https://ror.org/04vq5kb54', 'en', 1, 'https://ror.org/04vq5kb54 UCLA Medical Center'),
(4079, 'https://ror.org/04vqzd428', 'en', 1, 'https://ror.org/04vqzd428 Social Insurance Saitama Chuo Hospital åŸ¼ēŽ‰ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(4080, 'https://ror.org/04vrsb288', 'en', 1, 'https://ror.org/04vrsb288 Far Eastern State Medical University Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4081, 'https://ror.org/04vt4a111', 'en', 1, 'https://ror.org/04vt4a111 Behavioral Health Research Center of the Southwest'),
(4082, 'https://ror.org/04vtx5s55', 'en', 1, 'https://ror.org/04vtx5s55 University of Malawi'),
(4083, 'https://ror.org/04vxr4k74', 'no_lang_code', 1, 'https://ror.org/04vxr4k74 Sahmyook University ģ‚¼ģœ”ėŒ€ķ•™źµ'),
(4084, 'https://ror.org/04vy5s568', 'en', 1, 'https://ror.org/04vy5s568 La Universidad del Zulia University of Zulia'),
(4085, 'https://ror.org/04w1m5n60', 'fr', 1, 'https://ror.org/04w1m5n60 HƓtel-Dieu de France'),
(4086, 'https://ror.org/04w3ve464', 'no_lang_code', 1, 'https://ror.org/04w3ve464 Kyoto Katsura Hospital äŗ¬éƒ½ę”‚ē—…é™¢'),
(4087, 'https://ror.org/04w40b524', 'en', 1, 'https://ror.org/04w40b524 Abderrahmane Mami Hospital'),
(4088, 'https://ror.org/04wa91k02', 'en', 1, 'https://ror.org/04wa91k02 Kuban State Medical University Кубанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4089, 'https://ror.org/04waphv22', 'en', 1, 'https://ror.org/04waphv22 Tamil Nadu Veterinary and Animal Sciences University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®•ą®¾ą®²ąÆą®Øą®ŸąÆˆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(4090, 'https://ror.org/04wbhy398', 'pl', 1, 'https://ror.org/04wbhy398 Wojewódzki Szpital Zespolony'),
(4091, 'https://ror.org/04wbsx459', 'en', 1, 'https://ror.org/04wbsx459 Nambour General Hospital'),
(4092, 'https://ror.org/04wc5jk96', 'en', 1, 'https://ror.org/04wc5jk96 HƓpital de MontrƩal pour enfants Montreal Children''s Hospital'),
(4093, 'https://ror.org/04wd10e19', 'en', 1, 'https://ror.org/04wd10e19 Andong National University ģ•ˆė™ėŒ€ķ•™źµ'),
(4094, 'https://ror.org/04wd31514', 'no_lang_code', 1, 'https://ror.org/04wd31514 CFD Research Corporation (United States)'),
(4095, 'https://ror.org/04whfy367', 'en', 1, 'https://ror.org/04whfy367 Memorial Hospital of South Bend'),
(4096, 'https://ror.org/04wm83d45', 'en', 1, 'https://ror.org/04wm83d45 Selma University'),
(4097, 'https://ror.org/04wmhsz10', 'en', 1, 'https://ror.org/04wmhsz10 Sandwell General Hospital'),
(4098, 'https://ror.org/04wn28048', 'en', 1, 'https://ror.org/04wn28048 University of Tulsa UniversitƩ de tulsa'),
(4099, 'https://ror.org/04wngnd82', 'en', 1, 'https://ror.org/04wngnd82 University Heights Center'),
(4100, 'https://ror.org/04wnwd012', 'en', 1, 'https://ror.org/04wnwd012 Education Development Center'),
(4101, 'https://ror.org/04wpkfc35', 'fr', 1, 'https://ror.org/04wpkfc35 HƓpital d''Instruction des ArmƩes Sainte-Anne'),
(4102, 'https://ror.org/04wpmby09', 'en', 1, 'https://ror.org/04wpmby09 Memorial Regional Hospital'),
(4103, 'https://ror.org/04wprr919', 'en', 1, 'https://ror.org/04wprr919 Athens Eye Hospital ĪŸĻ†ĪøĪ±Ī»Ī¼ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(4104, 'https://ror.org/04wrfcw61', 'en', 1, 'https://ror.org/04wrfcw61 Sanford USD Medical Center'),
(4105, 'https://ror.org/04ws1n245', 'en', 1, 'https://ror.org/04ws1n245 King Fahad Hospital Jeddah مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد ŲØŲ¬ŲÆŲ©'),
(4106, 'https://ror.org/04ws6z706', 'en', 1, 'https://ror.org/04ws6z706 Saint Xavier University'),
(4107, 'https://ror.org/04wvkky61', 'en', 1, 'https://ror.org/04wvkky61 Southern General Hospital'),
(4108, 'https://ror.org/04wwbpd10', 'no_lang_code', 1, 'https://ror.org/04wwbpd10 Biomedware (United States)'),
(4109, 'https://ror.org/04wwg3z97', 'no_lang_code', 1, 'https://ror.org/04wwg3z97 Dammam Central Hospital مستؓفى الدمام Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(4110, 'https://ror.org/04x0k0m51', 'en', 1, 'https://ror.org/04x0k0m51 Seokyeong University ģ„œź²½ėŒ€ķ•™źµ'),
(4111, 'https://ror.org/04x0r0b44', 'en', 1, 'https://ror.org/04x0r0b44 Connecticut Department of Mental Health and Addiction Services'),
(4112, 'https://ror.org/04x16j349', 'no_lang_code', 1, 'https://ror.org/04x16j349 Invotek'),
(4113, 'https://ror.org/04x16yc34', 'no_lang_code', 1, 'https://ror.org/04x16yc34 Al Nahdha Hospital مستؓفى النهضة'),
(4114, 'https://ror.org/04x1ptk36', 'en', 1, 'https://ror.org/04x1ptk36 Ibis Reproductive Health'),
(4115, 'https://ror.org/04x1z3t86', 'en', 1, 'https://ror.org/04x1z3t86 Mercy St. Vincent Medical Center'),
(4116, 'https://ror.org/04x27ad97', 'en', 1, 'https://ror.org/04x27ad97 Baby Memorial Hospital'),
(4117, 'https://ror.org/04x495f64', 'en', 1, 'https://ror.org/04x495f64 Rainbow Babies & Children''s Hospital'),
(4118, 'https://ror.org/04x6tqs25', 'no_lang_code', 1, 'https://ror.org/04x6tqs25 Nova Chemicals (Canada)'),
(4119, 'https://ror.org/04x744g62', 'en', 1, 'https://ror.org/04x744g62 Shin Kong WHS Memorial Hospital'),
(4120, 'https://ror.org/04xbrv698', 'en', 1, 'https://ror.org/04xbrv698 Institut für Mobil- und Satellitenfunktechnik Institute for Mobile and Satellite Communication Technology'),
(4121, 'https://ror.org/04xdbp773', 'no_lang_code', 1, 'https://ror.org/04xdbp773 Academic Edge'),
(4122, 'https://ror.org/04xfhjr27', 'en', 1, 'https://ror.org/04xfhjr27 Great Western Hospital'),
(4123, 'https://ror.org/04xfsbk97', 'en', 1, 'https://ror.org/04xfsbk97 Shenzhen Third People’s Hospital ę·±åœ³åø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(4124, 'https://ror.org/04xhnr923', 'no_lang_code', 1, 'https://ror.org/04xhnr923 Hyogo Prefectural Nishinomiya Hospital å…µåŗ«ēœŒē«‹č„æå®®ē—…é™¢'),
(4125, 'https://ror.org/04xnzxv25', 'en', 1, 'https://ror.org/04xnzxv25 Khyber Teaching Hospital'),
(4126, 'https://ror.org/04xpmtk39', 'en', 1, 'https://ror.org/04xpmtk39 Southern Hills Medical Center'),
(4127, 'https://ror.org/04xraxn18', 'en', 1, 'https://ror.org/04xraxn18 Fondazione Telethon Telethon Foundation'),
(4128, 'https://ror.org/04xsjmh40', 'en', 1, 'https://ror.org/04xsjmh40 American Society for Microbiology'),
(4129, 'https://ror.org/04xtpk854', 'en', 1, 'https://ror.org/04xtpk854 Manchester Royal Eye Hospital'),
(4130, 'https://ror.org/04xv01a59', 'en', 1, 'https://ror.org/04xv01a59 The Pirbright Institute'),
(4131, 'https://ror.org/04xv63e47', 'en', 1, 'https://ror.org/04xv63e47 Sin-Lau Christian Hospital'),
(4132, 'https://ror.org/04xvkcm66', 'no_lang_code', 1, 'https://ror.org/04xvkcm66 Apption'),
(4133, 'https://ror.org/04xz2c768', 'en', 1, 'https://ror.org/04xz2c768 R. K. Khan Hospital'),
(4134, 'https://ror.org/04xze1462', 'no_lang_code', 1, 'https://ror.org/04xze1462 Nokia (Belgium)'),
(4135, 'https://ror.org/04xzj3x20', 'en', 1, 'https://ror.org/04xzj3x20 LAC+USC Medical Center'),
(4136, 'https://ror.org/04y28m257', 'no_lang_code', 1, 'https://ror.org/04y28m257 SOLINET'),
(4137, 'https://ror.org/04y2gp806', 'en', 1, 'https://ror.org/04y2gp806 King Fahad Central Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ بجازان'),
(4138, 'https://ror.org/04y2hdd14', 'no_lang_code', 1, 'https://ror.org/04y2hdd14 Amiri Hospital المستؓفى Ų§Ł„Ų£Ł…ŁŠŲ±ŁŠ'),
(4139, 'https://ror.org/04y3ze847', 'en', 1, 'https://ror.org/04y3ze847 OspidƩal na hOllscoile, Luimneach University Hospital Limerick'),
(4140, 'https://ror.org/04y6m3r89', 'en', 1, 'https://ror.org/04y6m3r89 Arkansas State Department of Human Services'),
(4141, 'https://ror.org/04y71bh49', 'en', 1, 'https://ror.org/04y71bh49 Southern University at Shreveport'),
(4142, 'https://ror.org/04y908s98', 'en', 1, 'https://ror.org/04y908s98 Government Medical College'),
(4143, 'https://ror.org/04yajdn66', 'en', 1, 'https://ror.org/04yajdn66 Wuhan Medical Center for Women and Children'),
(4144, 'https://ror.org/04yb7hq57', 'en', 1, 'https://ror.org/04yb7hq57 Stavropol State Medical University Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4145, 'https://ror.org/04ycpbx82', 'en', 1, 'https://ror.org/04ycpbx82 Prifysgol Westminster University of Westminster'),
(4146, 'https://ror.org/04yd6pw26', 'en', 1, 'https://ror.org/04yd6pw26 Cape Cod Hospital'),
(4147, 'https://ror.org/04yj19304', 'en', 1, 'https://ror.org/04yj19304 California Baptist University'),
(4148, 'https://ror.org/04ymee833', 'en', 1, 'https://ror.org/04ymee833 Central Institute for the Deaf'),
(4149, 'https://ror.org/04ymr6s03', 'en', 1, 'https://ror.org/04ymr6s03 Launceston General Hospital'),
(4150, 'https://ror.org/04yrw5x43', 'it', 1, 'https://ror.org/04yrw5x43 Ospedale di Livorno'),
(4151, 'https://ror.org/04ytrbh65', 'en', 1, 'https://ror.org/04ytrbh65 Osaka University of Health and Sport Sciences å¤§é˜Ŗä½“č‚²å¤§å­¦'),
(4152, 'https://ror.org/04ywg3445', 'no_lang_code', 1, 'https://ror.org/04ywg3445 New England Biolabs (United States)'),
(4153, 'https://ror.org/04yxtqc27', 'en', 1, 'https://ror.org/04yxtqc27 Caroline Chisholm Centre for Health Ethics'),
(4154, 'https://ror.org/04yy7zb66', 'en', 1, 'https://ror.org/04yy7zb66 Centre for Mental Health'),
(4155, 'https://ror.org/04yyp8h20', 'no_lang_code', 1, 'https://ror.org/04yyp8h20 Pilkington (United Kingdom)'),
(4156, 'https://ror.org/04z18y971', 'no_lang_code', 1, 'https://ror.org/04z18y971 Jennerex Biotherapeutics (Canada)'),
(4157, 'https://ror.org/04z1c5686', 'no_lang_code', 1, 'https://ror.org/04z1c5686 Encana (Canada)'),
(4158, 'https://ror.org/04z4j3y75', 'fr', 1, 'https://ror.org/04z4j3y75 Institut SƩnƩgalais de Recherches Agricoles'),
(4159, 'https://ror.org/04z5vy146', 'en', 1, 'https://ror.org/04z5vy146 Carlo Forlanini Hospital'),
(4160, 'https://ror.org/04z61sd03', 'en', 1, 'https://ror.org/04z61sd03 Alder Hey Children''s Hospital'),
(4161, 'https://ror.org/04z7fc725', 'en', 1, 'https://ror.org/04z7fc725 St.John''s Medical College Hospital'),
(4162, 'https://ror.org/04z89xx32', 'en', 1, 'https://ror.org/04z89xx32 Atlanta VA Medical Center'),
(4163, 'https://ror.org/04z9w5078', 'no_lang_code', 1, 'https://ror.org/04z9w5078 Xerox (Canada)'),
(4164, 'https://ror.org/04z9zma62', 'en', 1, 'https://ror.org/04z9zma62 American Hospital Association'),
(4165, 'https://ror.org/04zah8g26', 'no_lang_code', 1, 'https://ror.org/04zah8g26 Pouliadis Associates Corporation'),
(4166, 'https://ror.org/04zap7912', 'en', 1, 'https://ror.org/04zap7912 Yunnan University of Traditional Chinese Medicine äŗ‘å—äø­åŒ»čÆå¤§å­¦'),
(4167, 'https://ror.org/04zb59n70', 'en', 1, 'https://ror.org/04zb59n70 Leibniz Institute for Solid State and Materials Research Leibniz-Institut für Festkörper- und Werkstoffforschung Dresden'),
(4168, 'https://ror.org/04zbgcp34', 'no_lang_code', 1, 'https://ror.org/04zbgcp34 Kantar Health (United States)'),
(4169, 'https://ror.org/04zbkyt39', 'en', 1, 'https://ror.org/04zbkyt39 National Hispanic University'),
(4170, 'https://ror.org/04zfmcq84', 'en', 1, 'https://ror.org/04zfmcq84 Children''s Mercy Hospital'),
(4171, 'https://ror.org/04zgkpa58', 'en', 1, 'https://ror.org/04zgkpa58 Health Protection Scotland'),
(4172, 'https://ror.org/04zgvbn76', 'en', 1, 'https://ror.org/04zgvbn76 Guthrie Hospice'),
(4173, 'https://ror.org/04zgvy449', 'no_lang_code', 1, 'https://ror.org/04zgvy449 PSA Peugeot Citroƫn (France)'),
(4174, 'https://ror.org/04zhhva53', 'en', 1, 'https://ror.org/04zhhva53 Thomas Jefferson University Hospital'),
(4175, 'https://ror.org/04zjvnp94', 'en', 1, 'https://ror.org/04zjvnp94 Clalit Health Services שירותי בריאות ×›×œ×œ×™×Ŗ'),
(4176, 'https://ror.org/04zkctn64', 'en', 1, 'https://ror.org/04zkctn64 University Hospital of Alexandroupolis'),
(4177, 'https://ror.org/04zmppn46', 'en', 1, 'https://ror.org/04zmppn46 Public Health Solutions'),
(4178, 'https://ror.org/04zn42r77', 'en', 1, 'https://ror.org/04zn42r77 Shahid Bahonar University of Kerman دانؓگاه Ų“Ł‡ŪŒŲÆ باهنر کرمان'),
(4179, 'https://ror.org/04zn9qp70', 'en', 1, 'https://ror.org/04zn9qp70 Pennsylvania Department of Human Services'),
(4180, 'https://ror.org/04zpy9a42', 'en', 1, 'https://ror.org/04zpy9a42 Nil Ratan Sircar Medical College and Hospital ą¤Øą„€ą¤² रतन सरकार ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ र ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(4181, 'https://ror.org/04zsytt76', 'en', 1, 'https://ror.org/04zsytt76 Wise & Munro Learning Research'),
(4182, 'https://ror.org/04ztdzs79', 'en', 1, 'https://ror.org/04ztdzs79 Fenway Health'),
(4183, 'https://ror.org/04zx3rq17', 'en', 1, 'https://ror.org/04zx3rq17 National Cheng Kung University Hospital'),
(4184, 'https://ror.org/04zy7mm10', 'en', 1, 'https://ror.org/04zy7mm10 Canadian Dairy Network'),
(4185, 'https://ror.org/04zyews33', 'no_lang_code', 1, 'https://ror.org/04zyews33 Baylis Medical (Canada)'),
(4186, 'https://ror.org/04zygv656', 'en', 1, 'https://ror.org/04zygv656 Airedale General Hospital'),
(4187, 'https://ror.org/04zyja509', 'pt', 1, 'https://ror.org/04zyja509 Universidade de Franca'),
(4188, 'https://ror.org/04zz3m093', 'en', 1, 'https://ror.org/04zz3m093 KIST Medical College'),
(4189, 'https://ror.org/04zzqmk94', 'en', 1, 'https://ror.org/04zzqmk94 Kintampo Health Research Centre'),
(4190, 'https://ror.org/050113w36', 'en', 1, 'https://ror.org/050113w36 SRM Institute of Science and Technology திரு. ą®‡ą®°ą®¾ą®®ą®šą®¾ą®®ą®æ ą®Øą®æą®©ąÆˆą®µąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(4191, 'https://ror.org/05031qk94', 'en', 1, 'https://ror.org/05031qk94 Taipei Medical University'),
(4192, 'https://ror.org/0504y0m80', 'en', 1, 'https://ror.org/0504y0m80 Polyclinic General Hospital'),
(4193, 'https://ror.org/05087r129', 'en', 1, 'https://ror.org/05087r129 Hizen Psychiatric Center č‚„å‰ē²¾ē„žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4194, 'https://ror.org/0509tgg56', 'no_lang_code', 1, 'https://ror.org/0509tgg56 Airbus (Spain)'),
(4195, 'https://ror.org/050adm910', 'no_lang_code', 1, 'https://ror.org/050adm910 Chiba Hokusou Hospital ę—„ęœ¬åŒ»ē§‘å¤§å­¦åƒč‘‰åŒ—ē·ē—…é™¢'),
(4196, 'https://ror.org/050b05p79', 'en', 1, 'https://ror.org/050b05p79 Sriram Chandra Bhanja Medical College Hospital ą¬¶ą­ą¬°ą­€ą¬°ą¬¾ą¬® ą¬šą¬Øą­ą¬¦ą­ą¬° ą¬­ą¬žą­ą¬œ ą¬­ą­‡ą¬·ą¬œ ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(4197, 'https://ror.org/050b31k83', 'en', 1, 'https://ror.org/050b31k83 Hunter New England Local Health District'),
(4198, 'https://ror.org/050batv17', 'en', 1, 'https://ror.org/050batv17 Mater Hospital'),
(4199, 'https://ror.org/050bd8661', 'en', 1, 'https://ror.org/050bd8661 Royal Surrey NHS Foundation Trust'),
(4200, 'https://ror.org/050c9qp51', 'en', 1, 'https://ror.org/050c9qp51 Massachusetts Department of Public Health'),
(4201, 'https://ror.org/050cwzy61', 'en', 1, 'https://ror.org/050cwzy61 St Mary''s Hospital'),
(4202, 'https://ror.org/050fz5z96', 'en', 1, 'https://ror.org/050fz5z96 Washington DC VA Medical Center'),
(4203, 'https://ror.org/050hwd209', 'en', 1, 'https://ror.org/050hwd209 Hokkaido Institute of Public Health åŒ—ęµ·é“ē«‹č”›ē”Ÿē ”ē©¶ę‰€'),
(4204, 'https://ror.org/050j2vm64', 'en', 1, 'https://ror.org/050j2vm64 Bangalore University UniversitĆ© de bangalore ą¤¬ą¤‚ą¤—ą¤²ą„Œą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤¬ą¤‚ą¤—ą¤³ą„ą¤°ą„‚ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą®ŖąÆ†ą®™ąÆą®•ą®³ąÆ‚ą®°ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ బెంగుళూరు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ಬೆಂಗಳೂರು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(4205, 'https://ror.org/050jqep38', 'nl', 1, 'https://ror.org/050jqep38 Altrecht GGZ'),
(4206, 'https://ror.org/050k2da37', 'en', 1, 'https://ror.org/050k2da37 Global Medical Imaging'),
(4207, 'https://ror.org/050mdr969', 'en', 1, 'https://ror.org/050mdr969 Kansas City VA Medical Center'),
(4208, 'https://ror.org/050nkg722', 'en', 1, 'https://ror.org/050nkg722 Oita University Hospital å¤§åˆ†å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(4209, 'https://ror.org/050pqs331', 'en', 1, 'https://ror.org/050pqs331 MRC Human Nutrition Research'),
(4210, 'https://ror.org/050qew682', 'no_lang_code', 1, 'https://ror.org/050qew682 Bolder Biotechnology, Inc.'),
(4211, 'https://ror.org/050qpjf10', 'en', 1, 'https://ror.org/050qpjf10 Botsford Hospital'),
(4212, 'https://ror.org/050rkhq40', 'en', 1, 'https://ror.org/050rkhq40 Jacksonville University Universidad de Jacksonville UniversitƩ de jacksonville'),
(4213, 'https://ror.org/050th9p79', 'en', 1, 'https://ror.org/050th9p79 Scunthorpe General Hospital'),
(4214, 'https://ror.org/050w2g362', 'no_lang_code', 1, 'https://ror.org/050w2g362 Inovamais'),
(4215, 'https://ror.org/050wjeh45', 'en', 1, 'https://ror.org/050wjeh45 Eisenhower Medical Center'),
(4216, 'https://ror.org/050y0ba80', 'no_lang_code', 1, 'https://ror.org/050y0ba80 D''Appolonia (Italy)'),
(4217, 'https://ror.org/050ztxn78', 'en', 1, 'https://ror.org/050ztxn78 Madras Medical College மதராசு ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą°®ą°¦ą±ą°°ą°¾ą°øą± ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(4218, 'https://ror.org/050zvc738', 'en', 1, 'https://ror.org/050zvc738 Agia Olga Hospital ĪšĪ©ĪĪ£Ī¤Ī‘ĪĪ¤ĪŸĪ ĪŸĪ„Ī›Ī•Ī™ĪŸ Ī“Ī•ĪĪ™ĪšĪŸ ĪĪŸĪ£ĪŸĪšĪŸĪœĪ•Ī™ĪŸ ĪĪ•Ī‘Ī£ Ī™Ī©ĪĪ™Ī‘Ī£'),
(4219, 'https://ror.org/0511k4970', 'en', 1, 'https://ror.org/0511k4970 Children''s Hospital أطفال مستؓفى ŲŖŁˆŁ†Ų³'),
(4220, 'https://ror.org/0511th722', 'fr', 1, 'https://ror.org/0511th722 HƓpital Albert-Chenevier'),
(4221, 'https://ror.org/0511yej17', 'en', 1, 'https://ror.org/0511yej17 Dartmouth Institute for Health Policy and Clinical Practice'),
(4222, 'https://ror.org/0511zqc76', 'en', 1, 'https://ror.org/0511zqc76 Chuo Kikuu cha Tumaini Tumaini University'),
(4223, 'https://ror.org/0512xad50', 'en', 1, 'https://ror.org/0512xad50 American Academy of Pediatrics'),
(4224, 'https://ror.org/0513nfd47', 'en', 1, 'https://ror.org/0513nfd47 Kootenai Medical Center'),
(4225, 'https://ror.org/051525m98', 'en', 1, 'https://ror.org/051525m98 Mercy Medical Center'),
(4226, 'https://ror.org/0516ah480', 'en', 1, 'https://ror.org/0516ah480 The Graduate University for Advanced Studies, SOKENDAI ē·åˆē ”ē©¶å¤§å­¦é™¢å¤§å­¦'),
(4227, 'https://ror.org/051a97h21', 'no_lang_code', 1, 'https://ror.org/051a97h21 National Nuclear Corporation (United Kingdom)'),
(4228, 'https://ror.org/051b68e86', 'en', 1, 'https://ror.org/051b68e86 Frankston Hospital'),
(4229, 'https://ror.org/051b9c228', 'it', 1, 'https://ror.org/051b9c228 Ospedale Martini');
INSERT INTO `rors` VALUES
(4230, 'https://ror.org/051c2ew73', 'es', 1, 'https://ror.org/051c2ew73 Hospital General de La Rioja'),
(4231, 'https://ror.org/051cp7s36', 'en', 1, 'https://ror.org/051cp7s36 Fatima Jinnah Medical University فاطمہ جناح Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(4232, 'https://ror.org/051dzw862', 'en', 1, 'https://ror.org/051dzw862 Gentofte Hospital'),
(4233, 'https://ror.org/051fpt583', 'it', 1, 'https://ror.org/051fpt583 Ospedale Buccheri la Ferla Fatebenefratelli'),
(4234, 'https://ror.org/051hvcm98', 'en', 1, 'https://ror.org/051hvcm98 Jiangsu Normal University ę±Ÿč‹åøˆčŒƒå¤§å­¦'),
(4235, 'https://ror.org/051j7cj03', 'en', 1, 'https://ror.org/051j7cj03 Minot State University UniversitĆ© d''Ɖtat de minot'),
(4236, 'https://ror.org/051j8zv27', 'no_lang_code', 1, 'https://ror.org/051j8zv27 Osaka Kyoiku University å¤§é˜Ŗę•™č‚²å¤§å­¦'),
(4237, 'https://ror.org/051mda743', 'en', 1, 'https://ror.org/051mda743 Garrahan Hospital'),
(4238, 'https://ror.org/051mn8706', 'en', 1, 'https://ror.org/051mn8706 Tumor Hospital of Guangxi Medical University å¹æč„æåŒ»ē§‘å¤§å­¦č‚æē˜¤åŒ»é™¢'),
(4239, 'https://ror.org/051qv3667', 'no_lang_code', 1, 'https://ror.org/051qv3667 Applus+ IDIADA (Spain) Institut d''Investigació Aplicada de l''Automòbil'),
(4240, 'https://ror.org/051s3e988', 'fr', 1, 'https://ror.org/051s3e988 HƓpital Universitaire Dupuytren'),
(4241, 'https://ror.org/051sezk39', 'no_lang_code', 1, 'https://ror.org/051sezk39 Micralyne'),
(4242, 'https://ror.org/051smbs96', 'en', 1, 'https://ror.org/051smbs96 The University of Texas of the Permian Basin'),
(4243, 'https://ror.org/051wnqr14', 'en', 1, 'https://ror.org/051wnqr14 Department of Defence'),
(4244, 'https://ror.org/051xgzg37', 'en', 1, 'https://ror.org/051xgzg37 Stockholm Environment Institute'),
(4245, 'https://ror.org/0520j5d52', 'no_lang_code', 1, 'https://ror.org/0520j5d52 Peptidream (Japan) ćƒšćƒ—ćƒćƒ‰ćƒŖćƒ¼ćƒ '),
(4246, 'https://ror.org/0522w3m69', 'no_lang_code', 1, 'https://ror.org/0522w3m69 Sinhgad Dental College and Hospital'),
(4247, 'https://ror.org/0524j1g61', 'en', 1, 'https://ror.org/0524j1g61 Stoke Mandeville Hospital Ysbyty Stoke Mandeville'),
(4248, 'https://ror.org/052578691', 'en', 1, 'https://ror.org/052578691 MRC Epidemiology Unit'),
(4249, 'https://ror.org/0525h8d02', 'en', 1, 'https://ror.org/0525h8d02 New Mexico Regional Federal Medical Center'),
(4250, 'https://ror.org/0525j6d32', 'en', 1, 'https://ror.org/0525j6d32 Nishijin Hospital 脿陣病院'),
(4251, 'https://ror.org/05275vm15', 'en', 1, 'https://ror.org/05275vm15 Gelre Hospitals Gelre Ziekenhuizen'),
(4252, 'https://ror.org/05278be16', 'es', 1, 'https://ror.org/05278be16 Hospital del NiƱo'),
(4253, 'https://ror.org/0527gjc91', 'en', 1, 'https://ror.org/0527gjc91 Temple Street Children''s University Hospital'),
(4254, 'https://ror.org/052963a64', 'en', 1, 'https://ror.org/052963a64 Ohio Northern University'),
(4255, 'https://ror.org/052dmyg58', 'en', 1, 'https://ror.org/052dmyg58 Greenville Memorial Hospital'),
(4256, 'https://ror.org/052fdp564', 'no_lang_code', 1, 'https://ror.org/052fdp564 Enel (Italy)'),
(4257, 'https://ror.org/052g5ww90', 'fr', 1, 'https://ror.org/052g5ww90 Hopital Universitaire Habib Bourguiba'),
(4258, 'https://ror.org/052jt6v75', 'pl', 1, 'https://ror.org/052jt6v75 Wojewódzki Szpital Zespolony im. Jędrzeja Śniadeckiego'),
(4259, 'https://ror.org/052k2q138', 'en', 1, 'https://ror.org/052k2q138 Shodair Children''s Hospital'),
(4260, 'https://ror.org/052qqbc08', 'en', 1, 'https://ror.org/052qqbc08 Michael E. DeBakey VA Medical Center'),
(4261, 'https://ror.org/052ra0j05', 'en', 1, 'https://ror.org/052ra0j05 Sinai Hospital'),
(4262, 'https://ror.org/052vjje65', 'en', 1, 'https://ror.org/052vjje65 Royal Manchester Children''s Hospital'),
(4263, 'https://ror.org/052vn2478', 'en', 1, 'https://ror.org/052vn2478 Liaocheng People''s Hospital čŠåŸŽåø‚äŗŗę°‘åŒ»é™¢'),
(4264, 'https://ror.org/052w06y65', 'no_lang_code', 1, 'https://ror.org/052w06y65 Jaslok Hospital'),
(4265, 'https://ror.org/052w2jw50', 'fr', 1, 'https://ror.org/052w2jw50 HƓpital Saint-Jacques'),
(4266, 'https://ror.org/052wqwf92', 'en', 1, 'https://ror.org/052wqwf92 Shuto General Hospital å‘Øę±ē·åˆē—…é™¢'),
(4267, 'https://ror.org/052zr0n46', 'en', 1, 'https://ror.org/052zr0n46 Institute for Medical Research and Occupational Health'),
(4268, 'https://ror.org/0531xck41', 'en', 1, 'https://ror.org/0531xck41 Southeastern Louisiana University Universidad del Sudeste de Luisiana'),
(4269, 'https://ror.org/05328fn02', 'en', 1, 'https://ror.org/05328fn02 Hermanos Ameijeiras Hospital Hospital ClĆ­nico QuirĆŗrgico "Hermanos Ameijeiras"'),
(4270, 'https://ror.org/0532h0d08', 'en', 1, 'https://ror.org/0532h0d08 Deaconess Hospital'),
(4271, 'https://ror.org/0534awx66', 'en', 1, 'https://ror.org/0534awx66 Guangzhou Eighth People''s Hospital å¹æå·žåø‚ē¬¬å…«äŗŗę°‘åŒ»é™¢'),
(4272, 'https://ror.org/0534dba08', 'en', 1, 'https://ror.org/0534dba08 Tamil University ą®¤ą®®ą®æą®“ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®¤ą®žąÆą®šą®¾ą®µąÆ‚ą®°ąÆ ą“¤ą“®ą“æą““ąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(4273, 'https://ror.org/05359he25', 'no_lang_code', 1, 'https://ror.org/05359he25 Ibn Sina Hospital مستؓفى ابن Ų³ŁŠŁ†Ų§'),
(4274, 'https://ror.org/0535c1v66', 'en', 1, 'https://ror.org/0535c1v66 Assam University असम ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ আসাম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(4275, 'https://ror.org/0535cbe18', 'en', 1, 'https://ror.org/0535cbe18 Kanazawa Medical University é‡‘ę²¢åŒ»ē§‘å¤§å­¦'),
(4276, 'https://ror.org/05362x394', 'en', 1, 'https://ror.org/05362x394 MRC Toxicology Unit'),
(4277, 'https://ror.org/053658081', 'en', 1, 'https://ror.org/053658081 Mitsubishi Kyoto Hospital äø‰č±äŗ¬éƒ½ē—…é™¢'),
(4278, 'https://ror.org/05368pf49', 'en', 1, 'https://ror.org/05368pf49 Institute of the Pupils of the Army Instituto dos Pupilos do ExƩrcito'),
(4279, 'https://ror.org/05388sw24', 'en', 1, 'https://ror.org/05388sw24 University of South Alabama Medical Center'),
(4280, 'https://ror.org/053bqv655', 'no_lang_code', 1, 'https://ror.org/053bqv655 STMicroelectronics (Italy)'),
(4281, 'https://ror.org/053c75a48', 'en', 1, 'https://ror.org/053c75a48 East Texas Medical Center'),
(4282, 'https://ror.org/053d3tv41', 'en', 1, 'https://ror.org/053d3tv41 International University of Health and Welfare å›½éš›åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(4283, 'https://ror.org/053d97e59', 'en', 1, 'https://ror.org/053d97e59 Kyung Hee University East-West Neo Medical Center ź²½ķ¬ėŒ€ķ•™źµ ė™ģ„œģ‹ ģ˜ķ•™ė³‘ģ› - ķ˜‘ģ§„ģ§„ė£Œģ„¼ķ„°'),
(4284, 'https://ror.org/053darw66', 'en', 1, 'https://ror.org/053darw66 Martha-Maria Hospital'),
(4285, 'https://ror.org/053dkp921', 'en', 1, 'https://ror.org/053dkp921 Los Alamos Medical Center'),
(4286, 'https://ror.org/053exzj86', 'en', 1, 'https://ror.org/053exzj86 Miriam Hospital'),
(4287, 'https://ror.org/053eyjs84', 'en', 1, 'https://ror.org/053eyjs84 Princess Royal Maternity Hospital'),
(4288, 'https://ror.org/053fh2363', 'en', 1, 'https://ror.org/053fh2363 Benedictine University'),
(4289, 'https://ror.org/053fp5c05', 'en', 1, 'https://ror.org/053fp5c05 Ewha Womans University ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ'),
(4290, 'https://ror.org/053fx7g25', 'en', 1, 'https://ror.org/053fx7g25 Royal Bolton Hospital'),
(4291, 'https://ror.org/053fzma23', 'en', 1, 'https://ror.org/053fzma23 Sichuan University of Science and Engineering å››å·ē†å·„å­¦é™¢'),
(4292, 'https://ror.org/053gjjp11', 'tr', 1, 'https://ror.org/053gjjp11 Pamukkale Üniversitesi Hastaneleri'),
(4293, 'https://ror.org/053hkmn05', 'en', 1, 'https://ror.org/053hkmn05 Primary Children''s Hospital'),
(4294, 'https://ror.org/053kccs63', 'en', 1, 'https://ror.org/053kccs63 Osaka Dental University å¤§é˜Ŗę­Æē§‘å¤§å­¦'),
(4295, 'https://ror.org/053mxw461', 'en', 1, 'https://ror.org/053mxw461 Sevastopol National Technical University Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4296, 'https://ror.org/053ny5136', 'no_lang_code', 1, 'https://ror.org/053ny5136 Fujitsu (United Kingdom)'),
(4297, 'https://ror.org/053sj8m08', 'en', 1, 'https://ror.org/053sj8m08 Kenyatta National Hospital'),
(4298, 'https://ror.org/053v1pf86', 'no_lang_code', 1, 'https://ror.org/053v1pf86 Biomedical Development Corporation'),
(4299, 'https://ror.org/053vhdz56', 'en', 1, 'https://ror.org/053vhdz56 Ospedale di Santa Maria Nuova Santa Maria Nuova Hospital'),
(4300, 'https://ror.org/053vynf43', 'en', 1, 'https://ror.org/053vynf43 King Khaled Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ خالد'),
(4301, 'https://ror.org/053xhbr86', 'en', 1, 'https://ror.org/053xhbr86 Ryhov Hospital Jƶnkƶping'),
(4302, 'https://ror.org/0540c8n94', 'no_lang_code', 1, 'https://ror.org/0540c8n94 Soka Municipal Hospital č‰åŠ åø‚ē«‹ē—…é™¢'),
(4303, 'https://ror.org/05422jd13', 'en', 1, 'https://ror.org/05422jd13 University Children''s Hospital, Belgrade Univerzitetska dečja klinika u Beogradu'),
(4304, 'https://ror.org/0542q3127', 'en', 1, 'https://ror.org/0542q3127 Lviv Polytechnic National University Politechnika Lwowska ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š›ŃŒŠ²Š¾Š²ŃŠŗŠ°Ń политехника» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° політехніка»'),
(4305, 'https://ror.org/054652k97', 'en', 1, 'https://ror.org/054652k97 Public Health – Seattle & King County'),
(4306, 'https://ror.org/0546wew42', 'en', 1, 'https://ror.org/0546wew42 New Jersey City University'),
(4307, 'https://ror.org/054876c03', 'tr', 1, 'https://ror.org/054876c03 Ankara Atatürk Göğüs Hastalıkları Ve Göğüs Cerrahisi Eğitim Ve Araştırma Hastanesi'),
(4308, 'https://ror.org/0549ak978', 'en', 1, 'https://ror.org/0549ak978 Gifu Red Cross Hospital å²é˜œčµ¤åå­—ē—…é™¢'),
(4309, 'https://ror.org/054bptx32', 'fr', 1, 'https://ror.org/054bptx32 HƓpital Maison Blanche'),
(4310, 'https://ror.org/054dq5m81', 'no_lang_code', 1, 'https://ror.org/054dq5m81 Universal Hi-Tech Development'),
(4311, 'https://ror.org/054e9ag92', 'en', 1, 'https://ror.org/054e9ag92 Chang Gung Children''s Hospital'),
(4312, 'https://ror.org/054ekwz94', 'en', 1, 'https://ror.org/054ekwz94 Queen Margaret Hospital'),
(4313, 'https://ror.org/054ezs277', 'en', 1, 'https://ror.org/054ezs277 Framingham Union Hospital'),
(4314, 'https://ror.org/054gzqw08', 'en', 1, 'https://ror.org/054gzqw08 Central Connecticut State University Universidad Estatal de Connecticut Central'),
(4315, 'https://ror.org/054kr1687', 'en', 1, 'https://ror.org/054kr1687 Holy Cross Hospital'),
(4316, 'https://ror.org/054nax084', 'en', 1, 'https://ror.org/054nax084 Clinical Centre of Kragujevac ŠšŠ»ŠøŠ½ŠøŃ‡ŠŗŠø центар ŠšŃ€Š°Š³ŃƒŃ˜ŠµŠ²Š°Ń†'),
(4317, 'https://ror.org/054p2n359', 'en', 1, 'https://ror.org/054p2n359 Arkansas Department of Health'),
(4318, 'https://ror.org/054qnke07', 'en', 1, 'https://ror.org/054qnke07 Ningbo No.6 Hospital å®ę³¢åø‚ē¬¬å…­åŒ»é™¢'),
(4319, 'https://ror.org/054zbmd26', 'en', 1, 'https://ror.org/054zbmd26 Hera General Hospital'),
(4320, 'https://ror.org/054zv1w86', 'no_lang_code', 1, 'https://ror.org/054zv1w86 Glencore (Switzerland)'),
(4321, 'https://ror.org/05529q263', 'en', 1, 'https://ror.org/05529q263 Chungbuk National University Hospital'),
(4322, 'https://ror.org/055546q82', 'en', 1, 'https://ror.org/055546q82 Bį»™ Y tįŗæ (Việt Nam) Ministry of Health'),
(4323, 'https://ror.org/05564r514', 'en', 1, 'https://ror.org/05564r514 Association of European Renewable Energy Research Centres'),
(4324, 'https://ror.org/05586rd65', 'nl', 1, 'https://ror.org/05586rd65 Kiwa'),
(4325, 'https://ror.org/055aebe25', 'no_lang_code', 1, 'https://ror.org/055aebe25 CRE Group (United States)'),
(4326, 'https://ror.org/055awd420', 'fr', 1, 'https://ror.org/055awd420 HƓpital de Sion'),
(4327, 'https://ror.org/055bpw879', 'en', 1, 'https://ror.org/055bpw879 MRC Cognition and Brain Sciences Unit'),
(4328, 'https://ror.org/055d6gv91', 'en', 1, 'https://ror.org/055d6gv91 Middlemore Hospital'),
(4329, 'https://ror.org/055epge17', 'en', 1, 'https://ror.org/055epge17 Arkansas Foundation for Medical Care'),
(4330, 'https://ror.org/055f7t516', 'en', 1, 'https://ror.org/055f7t516 National Research University Higher School of Economics Š’Ń‹ŃŃˆŠ°Ń школа ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Юғары иҔтисаГ мәктәбе'),
(4331, 'https://ror.org/055fgjp51', 'no_lang_code', 1, 'https://ror.org/055fgjp51 Nimbus Landscape Materials (United States)'),
(4332, 'https://ror.org/055gkcy74', 'en', 1, 'https://ror.org/055gkcy74 Union Hospital'),
(4333, 'https://ror.org/055gq1960', 'no_lang_code', 1, 'https://ror.org/055gq1960 Ada Technologies (United States)'),
(4334, 'https://ror.org/055hhmc29', 'en', 1, 'https://ror.org/055hhmc29 Oregon Department of Human Services'),
(4335, 'https://ror.org/055k2e754', 'en', 1, 'https://ror.org/055k2e754 Baltimore County Department of Health'),
(4336, 'https://ror.org/055m2tx54', 'en', 1, 'https://ror.org/055m2tx54 North Eastern Hill University نارتھ ایسٹ ہل ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(4337, 'https://ror.org/055mfda29', 'en', 1, 'https://ror.org/055mfda29 Earth and Space Research'),
(4338, 'https://ror.org/055mfza47', 'en', 1, 'https://ror.org/055mfza47 Saint Peter''s University Hospital'),
(4339, 'https://ror.org/055p2yz63', 'es', 1, 'https://ror.org/055p2yz63 Hospital General Universitario de Albacete'),
(4340, 'https://ror.org/055redd10', 'it', 1, 'https://ror.org/055redd10 Azienda Ospedaliera di Desio e Vimercate'),
(4341, 'https://ror.org/055vbxf86', 'en', 1, 'https://ror.org/055vbxf86 Addenbrooke''s Hospital'),
(4342, 'https://ror.org/055xb4311', 'en', 1, 'https://ror.org/055xb4311 Austrian Agency for Health and Food Safety Ɩsterreichische Agentur für Gesundheit und ErnƤhrungssicherheit'),
(4343, 'https://ror.org/055y34y19', 'en', 1, 'https://ror.org/055y34y19 Rose Medical Center'),
(4344, 'https://ror.org/055ysan77', 'no_lang_code', 1, 'https://ror.org/055ysan77 Klein Buendel (United States)'),
(4345, 'https://ror.org/055zmrh94', 'en', 1, 'https://ror.org/055zmrh94 John Innes Centre'),
(4346, 'https://ror.org/0560hqd63', 'it', 1, 'https://ror.org/0560hqd63 Ospedale Monaldi'),
(4347, 'https://ror.org/0560xr487', 'en', 1, 'https://ror.org/0560xr487 DR. B.R.A. Institute Rotary Cancer Hospital'),
(4348, 'https://ror.org/056221z03', 'en', 1, 'https://ror.org/056221z03 Centre Hospitalier Universitaire de Treichville University Hospital Medical Center at Treichville'),
(4349, 'https://ror.org/0566w5t03', 'en', 1, 'https://ror.org/0566w5t03 United States Office of Personnel Management'),
(4350, 'https://ror.org/0567p6j84', 'en', 1, 'https://ror.org/0567p6j84 Stanley Medical College ą®‡ą®šąÆą®Ÿą®¾ą®©ąÆą®²ą®æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(4351, 'https://ror.org/0567w8j84', 'en', 1, 'https://ror.org/0567w8j84 Bowie State University'),
(4352, 'https://ror.org/0569bbe51', 'en', 1, 'https://ror.org/0569bbe51 Connecticut Mental Health Center'),
(4353, 'https://ror.org/056a2fb24', 'no_lang_code', 1, 'https://ror.org/056a2fb24 Nanoprobes (United States)'),
(4354, 'https://ror.org/056cn0e37', 'en', 1, 'https://ror.org/056cn0e37 Seoul St. Mary''s Hospital'),
(4355, 'https://ror.org/056d7mp27', 'no_lang_code', 1, 'https://ror.org/056d7mp27 Applied Biological Materials (Canada)'),
(4356, 'https://ror.org/056dkgp19', 'en', 1, 'https://ror.org/056dkgp19 Health Forecasting'),
(4357, 'https://ror.org/056ep7w45', 'en', 1, 'https://ror.org/056ep7w45 Siksha O Anusandhan University'),
(4358, 'https://ror.org/056mx1477', 'en', 1, 'https://ror.org/056mx1477 Children''s Hospital at Dartmouth Hitchcock'),
(4359, 'https://ror.org/056nn5n22', 'en', 1, 'https://ror.org/056nn5n22 Aurora Sinai Medical Center'),
(4360, 'https://ror.org/056p2ex35', 'en', 1, 'https://ror.org/056p2ex35 Asir Central Hospital مستؓفى عسير Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(4361, 'https://ror.org/056pbvy42', 'it', 1, 'https://ror.org/056pbvy42 Ospedale di Monfalcone'),
(4362, 'https://ror.org/056pg9759', 'en', 1, 'https://ror.org/056pg9759 SSM Health Care'),
(4363, 'https://ror.org/056phcb82', 'en', 1, 'https://ror.org/056phcb82 The Keystone Center'),
(4364, 'https://ror.org/056q45h83', 'es', 1, 'https://ror.org/056q45h83 Hospital Doctor HernƔn Henrƭquez Aravena'),
(4365, 'https://ror.org/056r5vk88', 'en', 1, 'https://ror.org/056r5vk88 Penza State University Пензенский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4366, 'https://ror.org/056rage58', 'en', 1, 'https://ror.org/056rage58 Indira Gandhi Medical College'),
(4367, 'https://ror.org/056rp9e47', 'en', 1, 'https://ror.org/056rp9e47 Metropolitan State University'),
(4368, 'https://ror.org/056rz0f32', 'no_lang_code', 1, 'https://ror.org/056rz0f32 Virtually Better'),
(4369, 'https://ror.org/056sm7z81', 'en', 1, 'https://ror.org/056sm7z81 Council of Chief State School Officers'),
(4370, 'https://ror.org/056t4gr41', 'no_lang_code', 1, 'https://ror.org/056t4gr41 Morinomiya Hospital ć‚‚ć‚Šć®ćæć‚„ ć»ļ½“ć“ćŸļ½Œ'),
(4371, 'https://ror.org/056t5qz59', 'no_lang_code', 1, 'https://ror.org/056t5qz59 Fortis Hospital'),
(4372, 'https://ror.org/056tb3809', 'de', 1, 'https://ror.org/056tb3809 Kantonsspital Aarau'),
(4373, 'https://ror.org/056v1sx90', 'en', 1, 'https://ror.org/056v1sx90 Nicosia General Hospital'),
(4374, 'https://ror.org/056wg8a82', 'en', 1, 'https://ror.org/056wg8a82 Le Bonheur Children''s Hospital'),
(4375, 'https://ror.org/056y2f070', 'no_lang_code', 1, 'https://ror.org/056y2f070 Agios Andreas Hospital Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī Ī±Ļ„ĻĻŽĪ½'),
(4376, 'https://ror.org/056yje678', 'fr', 1, 'https://ror.org/056yje678 HƓpital Mustapha Pacha'),
(4377, 'https://ror.org/056zv5g90', 'en', 1, 'https://ror.org/056zv5g90 Jinnah University for Women جناح ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ†'),
(4378, 'https://ror.org/05735fh94', 'en', 1, 'https://ror.org/05735fh94 Gujarat Ayurved University ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤†ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖ†ąŖÆą«ąŖ°ą«ąŖµą«‡ąŖ¦ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(4379, 'https://ror.org/0573hvw69', 'tr', 1, 'https://ror.org/0573hvw69 Farabi Hastanesi'),
(4380, 'https://ror.org/0573ts924', 'en', 1, 'https://ror.org/0573ts924 Princess Royal Hospital'),
(4381, 'https://ror.org/0574j1p50', 'ro', 1, 'https://ror.org/0574j1p50 Spitalul Clinic de Recuperare'),
(4382, 'https://ror.org/05757k612', 'en', 1, 'https://ror.org/05757k612 Sree Chitra Thirunal Institute for Medical Sciences and Technology'),
(4383, 'https://ror.org/0576bwz31', 'no_lang_code', 1, 'https://ror.org/0576bwz31 Aizawa Hospital 相澤病院'),
(4384, 'https://ror.org/05783y657', 'en', 1, 'https://ror.org/05783y657 Smith-Kettlewell Eye Research Institute'),
(4385, 'https://ror.org/057anza51', 'en', 1, 'https://ror.org/057anza51 Metropolitan University of Educational Sciences Universidad Metropolitana de Ciencias de la Educación'),
(4386, 'https://ror.org/057ays557', 'no_lang_code', 1, 'https://ror.org/057ays557 Kestrel Corporation'),
(4387, 'https://ror.org/057b2d479', 'pt', 1, 'https://ror.org/057b2d479 Hospital Maria Pia'),
(4388, 'https://ror.org/057cm0m66', 'en', 1, 'https://ror.org/057cm0m66 Sismanoglio General Hospital Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Σισμανόγλειο'),
(4389, 'https://ror.org/057d2v504', 'en', 1, 'https://ror.org/057d2v504 Kohat University of Science and Technology'),
(4390, 'https://ror.org/057e34m22', 'en', 1, 'https://ror.org/057e34m22 University of Massachusetts Donahue Institute'),
(4391, 'https://ror.org/057edve92', 'en', 1, 'https://ror.org/057edve92 Tokyo Yamate Medical Center ę±äŗ¬å±±ę‰‹ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(4392, 'https://ror.org/057ft1y03', 'no_lang_code', 1, 'https://ror.org/057ft1y03 Kochi Municipal Central Hospital é«˜ēŸ„ēœŒē«‹äø­å¤®ē—…é™¢'),
(4393, 'https://ror.org/057jp7h82', 'en', 1, 'https://ror.org/057jp7h82 IIT Research Institute'),
(4394, 'https://ror.org/057n8mx64', 'en', 1, 'https://ror.org/057n8mx64 Ministry of Health وزارة الصحة'),
(4395, 'https://ror.org/057nqxc22', 'en', 1, 'https://ror.org/057nqxc22 West Virginia Wesleyan College'),
(4396, 'https://ror.org/057p7h461', 'en', 1, 'https://ror.org/057p7h461 Affiliated Hospital of Guangdong Medical College Hospital'),
(4397, 'https://ror.org/057pdzy92', 'es', 1, 'https://ror.org/057pdzy92 Hospital del Trabajador'),
(4398, 'https://ror.org/057q4rt57', 'en', 1, 'https://ror.org/057q4rt57 Hospital for Sick Children'),
(4399, 'https://ror.org/057s4cx47', 'no_lang_code', 1, 'https://ror.org/057s4cx47 Katsumata Hospital å‹åˆē—…é™¢'),
(4400, 'https://ror.org/057seh071', 'en', 1, 'https://ror.org/057seh071 Franklin Institute'),
(4401, 'https://ror.org/057v2pg43', 'fr', 1, 'https://ror.org/057v2pg43 HƓpital Saint-Michel'),
(4402, 'https://ror.org/057vt8c33', 'fr', 1, 'https://ror.org/057vt8c33 HƓpital Paule de Viguier'),
(4403, 'https://ror.org/057vy9683', 'en', 1, 'https://ror.org/057vy9683 Hamamatsu University ęµœę¾å¤§å­¦'),
(4404, 'https://ror.org/057wh9709', 'fr', 1, 'https://ror.org/057wh9709 Centre hospitalier Robert-Ballanger'),
(4405, 'https://ror.org/057xx1h21', 'en', 1, 'https://ror.org/057xx1h21 Association MƩdicale Canadienne Canadian Medical Association'),
(4406, 'https://ror.org/057y6sk36', 'en', 1, 'https://ror.org/057y6sk36 National Institute of Biomedical Genomics'),
(4407, 'https://ror.org/057z0pt68', 'en', 1, 'https://ror.org/057z0pt68 Kansas Department for Children and Families'),
(4408, 'https://ror.org/05819fq78', 'en', 1, 'https://ror.org/05819fq78 Punjab Institute of Medical Sciences'),
(4409, 'https://ror.org/0582gcw47', 'en', 1, 'https://ror.org/0582gcw47 Medical Research Institute'),
(4410, 'https://ror.org/05831wz16', 'en', 1, 'https://ror.org/05831wz16 Republic of Palau Ministry of Health'),
(4411, 'https://ror.org/0583jne22', 'en', 1, 'https://ror.org/0583jne22 Northwest Research Associates'),
(4412, 'https://ror.org/0584fj407', 'en', 1, 'https://ror.org/0584fj407 University of North Alabama'),
(4413, 'https://ror.org/0586a5g03', 'no_lang_code', 1, 'https://ror.org/0586a5g03 Clinical Tools, Inc.'),
(4414, 'https://ror.org/0586bt104', 'en', 1, 'https://ror.org/0586bt104 Southport and Ormskirk Hospital NHS Trust'),
(4415, 'https://ror.org/0587whv30', 'no_lang_code', 1, 'https://ror.org/0587whv30 Nexeon (United Kingdom)'),
(4416, 'https://ror.org/0589bxs97', 'en', 1, 'https://ror.org/0589bxs97 McGill University and GƩnome QuƩbec Innovation Centre'),
(4417, 'https://ror.org/058c4h389', 'no_lang_code', 1, 'https://ror.org/058c4h389 Atom Sciences'),
(4418, 'https://ror.org/058fy8f68', 'en', 1, 'https://ror.org/058fy8f68 Govind Ballabh Pant Hospital'),
(4419, 'https://ror.org/058hnhf91', 'en', 1, 'https://ror.org/058hnhf91 Oral Roberts University'),
(4420, 'https://ror.org/058hsp657', 'en', 1, 'https://ror.org/058hsp657 Hospital of Lithuanian University of Health Sciences Kaunas Clinics Lietuvos sveikatos mokslų universiteto ligoninė Kauno klinikos'),
(4421, 'https://ror.org/058kbr222', 'no_lang_code', 1, 'https://ror.org/058kbr222 Qurient (South Korea)'),
(4422, 'https://ror.org/058ms9w43', 'en', 1, 'https://ror.org/058ms9w43 Fujian Provincial Cancer Hospital ē¦å»ŗēœč‚æē˜¤åŒ»é™¢'),
(4423, 'https://ror.org/058p1kn93', 'en', 1, 'https://ror.org/058p1kn93 VA Long Beach Healthcare System'),
(4424, 'https://ror.org/058pdbn81', 'no_lang_code', 1, 'https://ror.org/058pdbn81 Dankook University ė‹Øźµ­ėŒ€ķ•™źµ'),
(4425, 'https://ror.org/058peea52', 'en', 1, 'https://ror.org/058peea52 Sharp Cabrillo Hospital'),
(4426, 'https://ror.org/058prbp42', 'en', 1, 'https://ror.org/058prbp42 Shaikh Zayed Postgraduate Medical Institute ؓیخ زید پوسٹ گریجویٹ Ł…ŪŒŚˆŪŒŚ©Ł„ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(4427, 'https://ror.org/058q6m856', 'en', 1, 'https://ror.org/058q6m856 Medical Trust Hospital'),
(4428, 'https://ror.org/058qp7v13', 'en', 1, 'https://ror.org/058qp7v13 BGS Global Hospital'),
(4429, 'https://ror.org/058rkm744', 'en', 1, 'https://ror.org/058rkm744 Niabi Zoological Society'),
(4430, 'https://ror.org/058rxv392', 'en', 1, 'https://ror.org/058rxv392 University Hospital of North Tees'),
(4431, 'https://ror.org/058s20p71', 'en', 1, 'https://ror.org/058s20p71 Public Health Foundation of India భారత ą°Ŗą±ą°°ą°œą°¾ą°°ą±‹ą°—ą±ą°Æ ą°øą°®ą°¾ą°–ą±ą°Æ'),
(4432, 'https://ror.org/058s98e36', 'en', 1, 'https://ror.org/058s98e36 Promotion of Operational Links With Integrated Services'),
(4433, 'https://ror.org/058td2q88', 'fr', 1, 'https://ror.org/058td2q88 HƓpital Foch'),
(4434, 'https://ror.org/058w59113', 'en', 1, 'https://ror.org/058w59113 Des Moines University UniversitƩ de des moines'),
(4435, 'https://ror.org/058x7dy48', 'en', 1, 'https://ror.org/058x7dy48 Royal United Hospital Bath NHS Trust'),
(4436, 'https://ror.org/058xqe166', 'en', 1, 'https://ror.org/058xqe166 Kingston Hospital NHS Trust'),
(4437, 'https://ror.org/058ydcm32', 'en', 1, 'https://ror.org/058ydcm32 Kaiser Foundation Hospital'),
(4438, 'https://ror.org/058yxq906', 'en', 1, 'https://ror.org/058yxq906 Nikko Memorial Hospital ę—„é‹¼čØ˜åæµē—…é™¢'),
(4439, 'https://ror.org/0595gz585', 'en', 1, 'https://ror.org/0595gz585 University of Gondar'),
(4440, 'https://ror.org/0596qfc35', 'en', 1, 'https://ror.org/0596qfc35 Kaweah Delta Health Care District'),
(4441, 'https://ror.org/0599zba67', 'tr', 1, 'https://ror.org/0599zba67 Kent Hastanesi Kent Hospital'),
(4442, 'https://ror.org/059c3mv67', 'en', 1, 'https://ror.org/059c3mv67 Cambridge Health Alliance'),
(4443, 'https://ror.org/059cjpv64', 'en', 1, 'https://ror.org/059cjpv64 Second Affiliated Hospital of Zhejiang University'),
(4444, 'https://ror.org/059dkdx38', 'en', 1, 'https://ror.org/059dkdx38 National Taiwan Normal University'),
(4445, 'https://ror.org/059dqb057', 'en', 1, 'https://ror.org/059dqb057 American Chemical Society'),
(4446, 'https://ror.org/059ebsr57', 'es', 1, 'https://ror.org/059ebsr57 Hospital Universitario de San Vicente Fundación'),
(4447, 'https://ror.org/059ex7y15', 'en', 1, 'https://ror.org/059ex7y15 Instytut Centrum Zdrowia Matki Polki w Łodzi Polish Mother’s Memorial Hospital Research Institute'),
(4448, 'https://ror.org/059f2k568', 'en', 1, 'https://ror.org/059f2k568 Ministry of Health'),
(4449, 'https://ror.org/059g69b28', 'en', 1, 'https://ror.org/059g69b28 Dong-Eui University ė™ģ˜ėŒ€ķ•™źµ'),
(4450, 'https://ror.org/059h1d250', 'en', 1, 'https://ror.org/059h1d250 Muljibhai Patel Urological Hospital'),
(4451, 'https://ror.org/059jq5127', 'en', 1, 'https://ror.org/059jq5127 Harborview Medical Center'),
(4452, 'https://ror.org/059kfmf89', 'fr', 1, 'https://ror.org/059kfmf89 Centre hospitalier rƩgional de la Citadelle'),
(4453, 'https://ror.org/059qg2m13', 'en', 1, 'https://ror.org/059qg2m13 Japan Agency for Marine-Earth Science and Technology ęµ·ę“‹ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(4454, 'https://ror.org/059w0gb06', 'en', 1, 'https://ror.org/059w0gb06 Karakalpak State University'),
(4455, 'https://ror.org/059wef195', 'en', 1, 'https://ror.org/059wef195 Nishi Niigata Chuo National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹č„æę–°ę½Ÿäø­å¤®ē—…é™¢'),
(4456, 'https://ror.org/059x21724', 'en', 1, 'https://ror.org/059x21724 University of Yamanashi 山梨大学'),
(4457, 'https://ror.org/059x9n677', 'no_lang_code', 1, 'https://ror.org/059x9n677 Eulji General Hospital ģ„ģ§€ėŒ€ķ•™źµė³‘ģ›'),
(4458, 'https://ror.org/059xepj08', 'en', 1, 'https://ror.org/059xepj08 Akron General Medical Center'),
(4459, 'https://ror.org/059xmmg10', 'en', 1, 'https://ror.org/059xmmg10 Eastern Mennonite University'),
(4460, 'https://ror.org/059xnz004', 'en', 1, 'https://ror.org/059xnz004 Christ Hospital'),
(4461, 'https://ror.org/059y9v737', 'en', 1, 'https://ror.org/059y9v737 Central College'),
(4462, 'https://ror.org/05a01hn31', 'en', 1, 'https://ror.org/05a01hn31 Mater Dei Hospital'),
(4463, 'https://ror.org/05a064c11', 'no_lang_code', 1, 'https://ror.org/05a064c11 Caisson Laboratories (United States)'),
(4464, 'https://ror.org/05a15z872', 'en', 1, 'https://ror.org/05a15z872 Samsung Medical Center'),
(4465, 'https://ror.org/05a2agx14', 'en', 1, 'https://ror.org/05a2agx14 Crouse Hospital'),
(4466, 'https://ror.org/05a3efx98', 'no_lang_code', 1, 'https://ror.org/05a3efx98 Metropolitan Hospital'),
(4467, 'https://ror.org/05a3jmv43', 'no_lang_code', 1, 'https://ror.org/05a3jmv43 Format International Ltd'),
(4468, 'https://ror.org/05a79ds67', 'no_lang_code', 1, 'https://ror.org/05a79ds67 Bhatia Hospital'),
(4469, 'https://ror.org/05a7hcs31', 'en', 1, 'https://ror.org/05a7hcs31 Providence Health & Services Oregon and Southwest Washington'),
(4470, 'https://ror.org/05a90fj07', 'en', 1, 'https://ror.org/05a90fj07 Ealing Hospital'),
(4471, 'https://ror.org/05aczzj13', 'en', 1, 'https://ror.org/05aczzj13 Shumei University ē§€ę˜Žå¤§å­¦'),
(4472, 'https://ror.org/05aem0d44', 'en', 1, 'https://ror.org/05aem0d44 Francis Hospital Franziskus Hospital Bielefeld'),
(4473, 'https://ror.org/05aeshm06', 'en', 1, 'https://ror.org/05aeshm06 Governador Celso Ramos Hospital'),
(4474, 'https://ror.org/05afnhv08', 'en', 1, 'https://ror.org/05afnhv08 Sapporo National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹åŒ—ęµ·é“ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(4475, 'https://ror.org/05ahq3q81', 'en', 1, 'https://ror.org/05ahq3q81 Amersham Hospital'),
(4476, 'https://ror.org/05ajyt645', 'en', 1, 'https://ror.org/05ajyt645 Japanese Red Cross Society Wakayama Medical Center ę—„ęœ¬čµ¤åå­—ē¤¾å’Œę­Œå±±åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4477, 'https://ror.org/05am5g719', 'en', 1, 'https://ror.org/05am5g719 St Mark''s Hospital'),
(4478, 'https://ror.org/05apdps44', 'en', 1, 'https://ror.org/05apdps44 Raigmore Hospital'),
(4479, 'https://ror.org/05aqcx827', 'en', 1, 'https://ror.org/05aqcx827 Ayrshire Central Hospital'),
(4480, 'https://ror.org/05arfhc56', 'en', 1, 'https://ror.org/05arfhc56 University of Rajasthan UniversitĆ© du rajasthan ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਰਾਜਸ਄ਾਨ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(4481, 'https://ror.org/05atemp08', 'en', 1, 'https://ror.org/05atemp08 MedStar Health'),
(4482, 'https://ror.org/05atz9219', 'en', 1, 'https://ror.org/05atz9219 East Stroudsburg University UniversitƩ de pennsylvanie d''east stroudsburg'),
(4483, 'https://ror.org/05av4b478', 'en', 1, 'https://ror.org/05av4b478 Sri Dharmasthala Manjunatheshwara College of Dental Sciences & Hospital'),
(4484, 'https://ror.org/05ayf4d73', 'en', 1, 'https://ror.org/05ayf4d73 Southlake Regional Health Center'),
(4485, 'https://ror.org/05aykvr94', 'de', 1, 'https://ror.org/05aykvr94 Augusta Krankenhaus'),
(4486, 'https://ror.org/05azzyk65', 'en', 1, 'https://ror.org/05azzyk65 Piedmont Athens Regional'),
(4487, 'https://ror.org/05b01nv96', 'en', 1, 'https://ror.org/05b01nv96 Subang Jaya Medical Centre'),
(4488, 'https://ror.org/05b0gpy83', 'en', 1, 'https://ror.org/05b0gpy83 Center for Forensic Mental Health, Chiba University åƒč‘‰å¤§å­¦ ē¤¾ä¼šē²¾ē„žäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(4489, 'https://ror.org/05b45bk66', 'en', 1, 'https://ror.org/05b45bk66 Regional Environmental Center for Central and Eastern Europe'),
(4490, 'https://ror.org/05b6ypc36', 'no_lang_code', 1, 'https://ror.org/05b6ypc36 Volvo (Sweden) Volvokoncernen'),
(4491, 'https://ror.org/05b81av32', 'en', 1, 'https://ror.org/05b81av32 Luton and Dunstable Hospital'),
(4492, 'https://ror.org/05b8yvg40', 'en', 1, 'https://ror.org/05b8yvg40 Barnsley Hospital'),
(4493, 'https://ror.org/05bd2wa15', 'en', 1, 'https://ror.org/05bd2wa15 Shanghai Mental Health Center äøŠęµ·åø‚ē²¾ē„žå«ē”Ÿäø­åæƒ'),
(4494, 'https://ror.org/05bhd7f62', 'en', 1, 'https://ror.org/05bhd7f62 458th Hospital PLA 中国人民解放军第四五八'),
(4495, 'https://ror.org/05bjm5v11', 'no_lang_code', 1, 'https://ror.org/05bjm5v11 Sibtech (United States)'),
(4496, 'https://ror.org/05bpnne23', 'en', 1, 'https://ror.org/05bpnne23 MetroWest Medical Center'),
(4497, 'https://ror.org/05bq1qp94', 'en', 1, 'https://ror.org/05bq1qp94 Forrest General Hospital'),
(4498, 'https://ror.org/05brmpx55', 'en', 1, 'https://ror.org/05brmpx55 John F. Kennedy Medical Center'),
(4499, 'https://ror.org/05bt0cf40', 'tr', 1, 'https://ror.org/05bt0cf40 Okmeydanı Eğitim ve Araştırma Hastanesi'),
(4500, 'https://ror.org/05btaka91', 'no_lang_code', 1, 'https://ror.org/05btaka91 University of Veterinary Medicine in KoŔice Univerzita veterinÔrskeho lekÔrstva a farmÔcie v KoŔiciach'),
(4501, 'https://ror.org/05bx1gz93', 'en', 1, 'https://ror.org/05bx1gz93 Utsunomiya University 宇都宮大学'),
(4502, 'https://ror.org/05bxb3784', 'no_lang_code', 1, 'https://ror.org/05bxb3784 Academia Sinica 中央研究院'),
(4503, 'https://ror.org/05by5hm18', 'en', 1, 'https://ror.org/05by5hm18 California State Polytechnic University Universidad Estatal PolitĆ©cnica de California, Pomona UniversitĆ© d''Ɖtat polytechnique de californie Ć  pomona'),
(4504, 'https://ror.org/05bz1tw26', 'pt', 1, 'https://ror.org/05bz1tw26 Hospital de Santa Maria'),
(4505, 'https://ror.org/05c06ww48', 'no_lang_code', 1, 'https://ror.org/05c06ww48 Anjo Kosei Hospital å®‰åŸŽę›“ē”Ÿē—…é™¢'),
(4506, 'https://ror.org/05c2p1f98', 'hi', 1, 'https://ror.org/05c2p1f98 Devi Ahilya Vishwavidyalaya, ą¤¦ą„‡ą¤µą¤æ ą¤…ą¤¹ą¤æą¤²ą„ą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(4507, 'https://ror.org/05c3wfp46', 'en', 1, 'https://ror.org/05c3wfp46 Governor''s Institutes of Vermont'),
(4508, 'https://ror.org/05c4nx247', 'en', 1, 'https://ror.org/05c4nx247 B.C. Women''s Hospital & Health Centre'),
(4509, 'https://ror.org/05c5js686', 'en', 1, 'https://ror.org/05c5js686 Ashland University'),
(4510, 'https://ror.org/05c8e3213', 'no_lang_code', 1, 'https://ror.org/05c8e3213 Saiseikai Fukuoka General Hospital ęøˆē”Ÿä¼šē¦å²”ē·åˆē—…é™¢'),
(4511, 'https://ror.org/05cetba26', 'en', 1, 'https://ror.org/05cetba26 Edward Hospital'),
(4512, 'https://ror.org/05cggb038', 'no_lang_code', 1, 'https://ror.org/05cggb038 Teck (Canada)'),
(4513, 'https://ror.org/05cqhmv85', 'en', 1, 'https://ror.org/05cqhmv85 SangStat Medical Corporation'),
(4514, 'https://ror.org/05crbcr45', 'en', 1, 'https://ror.org/05crbcr45 Tokyo University of Agriculture ę±äŗ¬č¾²ę„­å¤§å­¦'),
(4515, 'https://ror.org/05crs8s98', 'en', 1, 'https://ror.org/05crs8s98 Periyar University ą®ŖąÆ†ą®°ą®æą®Æą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(4516, 'https://ror.org/05csdwp88', 'en', 1, 'https://ror.org/05csdwp88 Greenslopes Private Hospital'),
(4517, 'https://ror.org/05ct0ag17', 'en', 1, 'https://ror.org/05ct0ag17 Banner Estrella Medical Center'),
(4518, 'https://ror.org/05ct3pv92', 'no_lang_code', 1, 'https://ror.org/05ct3pv92 Lanxess (Canada)'),
(4519, 'https://ror.org/05cvd2j85', 'pt', 1, 'https://ror.org/05cvd2j85 Hospital de Santa Marta'),
(4520, 'https://ror.org/05cwpz219', 'en', 1, 'https://ror.org/05cwpz219 Riverview Hospital'),
(4521, 'https://ror.org/05cx69s52', 'en', 1, 'https://ror.org/05cx69s52 Command Hospital Air Force'),
(4522, 'https://ror.org/05cz6df97', 'en', 1, 'https://ror.org/05cz6df97 Alabama Department of Mental Health'),
(4523, 'https://ror.org/05d2xpa49', 'en', 1, 'https://ror.org/05d2xpa49 First Hospital of Lanzhou University'),
(4524, 'https://ror.org/05d503a40', 'en', 1, 'https://ror.org/05d503a40 Iwate Prefectural Kamaishi Hospital'),
(4525, 'https://ror.org/05d576879', 'en', 1, 'https://ror.org/05d576879 Southmead Hospital'),
(4526, 'https://ror.org/05d5vvz89', 'en', 1, 'https://ror.org/05d5vvz89 First Affiliated Hospital of Jinan University ęšØå—å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(4527, 'https://ror.org/05d5yjx85', 'es', 1, 'https://ror.org/05d5yjx85 Hospital Militar de Santiago'),
(4528, 'https://ror.org/05d6v2h63', 'fr', 1, 'https://ror.org/05d6v2h63 HƓpital Manchester'),
(4529, 'https://ror.org/05d871a36', 'en', 1, 'https://ror.org/05d871a36 Saifee Hospital'),
(4530, 'https://ror.org/05d9dtr71', 'en', 1, 'https://ror.org/05d9dtr71 Changhua Christian Hospital'),
(4531, 'https://ror.org/05d9wmt54', 'no_lang_code', 1, 'https://ror.org/05d9wmt54 Mpilo Central Hospital'),
(4532, 'https://ror.org/05db3sk67', 'en', 1, 'https://ror.org/05db3sk67 New Jewish Home'),
(4533, 'https://ror.org/05dbe0q91', 'en', 1, 'https://ror.org/05dbe0q91 Warren Spring Laboratory'),
(4534, 'https://ror.org/05dd3wr66', 'en', 1, 'https://ror.org/05dd3wr66 Huntsman Marine Science Centre'),
(4535, 'https://ror.org/05deks119', 'en', 1, 'https://ror.org/05deks119 Mount Sinai Hospital'),
(4536, 'https://ror.org/05dfcz246', 'en', 1, 'https://ror.org/05dfcz246 Tianjin University of Traditional Chinese Medicine å¤©ę“„äø­åŒ»čÆå¤§å­¦'),
(4537, 'https://ror.org/05dfdta49', 'en', 1, 'https://ror.org/05dfdta49 Aultman Health Foundation'),
(4538, 'https://ror.org/05dfzd836', 'es', 1, 'https://ror.org/05dfzd836 Hospital Universitario Infanta SofĆ­a'),
(4539, 'https://ror.org/05dhw1e18', 'no_lang_code', 1, 'https://ror.org/05dhw1e18 Kinan Hospital'),
(4540, 'https://ror.org/05dkqa017', 'en', 1, 'https://ror.org/05dkqa017 Hochschule Kaiserslautern University of Applied Sciences Kaiserslautern'),
(4541, 'https://ror.org/05dm4ck87', 'en', 1, 'https://ror.org/05dm4ck87 Emory University Hospital'),
(4542, 'https://ror.org/05dm6kv37', 'en', 1, 'https://ror.org/05dm6kv37 Institute of Child and Mother Health'),
(4543, 'https://ror.org/05dna8580', 'de', 1, 'https://ror.org/05dna8580 VDI/VDE Innovation + Technik'),
(4544, 'https://ror.org/05dp7wz77', 'en', 1, 'https://ror.org/05dp7wz77 Creative Health Care Management'),
(4545, 'https://ror.org/05drcjw53', 'en', 1, 'https://ror.org/05drcjw53 Pai Chai University ė°°ģž¬ėŒ€ķ•™źµ'),
(4546, 'https://ror.org/05dsgrz38', 'en', 1, 'https://ror.org/05dsgrz38 Hawaii Permanente Medical Group'),
(4547, 'https://ror.org/05dt3h538', 'en', 1, 'https://ror.org/05dt3h538 Hollins University'),
(4548, 'https://ror.org/05dtqka83', 'hu', 1, 'https://ror.org/05dtqka83 Békés Megyei Központi KórhÔz'),
(4549, 'https://ror.org/05dxmex87', 'en', 1, 'https://ror.org/05dxmex87 Minnesota Medical Association'),
(4550, 'https://ror.org/05dzhka64', 'en', 1, 'https://ror.org/05dzhka64 Dr. Agarwal''s Eye Hospital'),
(4551, 'https://ror.org/05dzsmt79', 'no', 1, 'https://ror.org/05dzsmt79 Helse FĆørde'),
(4552, 'https://ror.org/05e1xz016', 'en', 1, 'https://ror.org/05e1xz016 Shalvata Mental Health Center ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש ×©×œ×•×•×Ŗ×”'),
(4553, 'https://ror.org/05e247w35', 'en', 1, 'https://ror.org/05e247w35 Morristown Hamblen Hospital Foundation'),
(4554, 'https://ror.org/05e272m53', 'en', 1, 'https://ror.org/05e272m53 Munroe Regional Medical Center'),
(4555, 'https://ror.org/05e3rkh95', 'en', 1, 'https://ror.org/05e3rkh95 Sweet Briar College'),
(4556, 'https://ror.org/05e8jge82', 'en', 1, 'https://ror.org/05e8jge82 Auckland City Hospital'),
(4557, 'https://ror.org/05eb9pt23', 'en', 1, 'https://ror.org/05eb9pt23 Methodist Dallas Medical Center'),
(4558, 'https://ror.org/05ecec111', 'en', 1, 'https://ror.org/05ecec111 Bįŗ”ch Mai Hospital Bệnh viện Bįŗ”ch Mai'),
(4559, 'https://ror.org/05echw708', 'en', 1, 'https://ror.org/05echw708 Archbishop Makarios III Hospital'),
(4560, 'https://ror.org/05ed8xr15', 'fr', 1, 'https://ror.org/05ed8xr15 Centre Hospitalier Saint-Denis'),
(4561, 'https://ror.org/05ee2qy47', 'en', 1, 'https://ror.org/05ee2qy47 Queen Elizabeth Hospital'),
(4562, 'https://ror.org/05eer8g02', 'en', 1, 'https://ror.org/05eer8g02 Jimma University'),
(4563, 'https://ror.org/05eewjw07', 'no_lang_code', 1, 'https://ror.org/05eewjw07 Bellbrook Labs (United States)'),
(4564, 'https://ror.org/05ef11p71', 'en', 1, 'https://ror.org/05ef11p71 Grochowski Hospital'),
(4565, 'https://ror.org/05efbh861', 'en', 1, 'https://ror.org/05efbh861 Prince Charles Hospital'),
(4566, 'https://ror.org/05efsr055', 'en', 1, 'https://ror.org/05efsr055 Estonian Interuniversity Population Research Centre'),
(4567, 'https://ror.org/05ehe6278', 'no_lang_code', 1, 'https://ror.org/05ehe6278 Cameco (Canada)'),
(4568, 'https://ror.org/05ejbda19', 'en', 1, 'https://ror.org/05ejbda19 Kyoto Women''s University 京都儳子大学'),
(4569, 'https://ror.org/05ejygc42', 'en', 1, 'https://ror.org/05ejygc42 Foundation for Advancement of International Medical Education and Research'),
(4570, 'https://ror.org/05ekwbr88', 'en', 1, 'https://ror.org/05ekwbr88 Chicago State University UniversitĆ© d''Ɖtat de chicago'),
(4571, 'https://ror.org/05en5nh73', 'en', 1, 'https://ror.org/05en5nh73 University of Seoul ģ„œģšøģ‹œė¦½ėŒ€ķ•™źµ'),
(4572, 'https://ror.org/05epcpp46', 'en', 1, 'https://ror.org/05epcpp46 Asahi University ęœę—„å¤§å­¦'),
(4573, 'https://ror.org/05eq01d13', 'en', 1, 'https://ror.org/05eq01d13 Gold Coast Hospital'),
(4574, 'https://ror.org/05eq41471', 'en', 1, 'https://ror.org/05eq41471 Veterans Health Administration'),
(4575, 'https://ror.org/05eq86m59', 'en', 1, 'https://ror.org/05eq86m59 Lander University'),
(4576, 'https://ror.org/05eqt7s39', 'en', 1, 'https://ror.org/05eqt7s39 Athens Information Technology'),
(4577, 'https://ror.org/05eqxpf83', 'en', 1, 'https://ror.org/05eqxpf83 Soonchunhyang University Hospital'),
(4578, 'https://ror.org/05eqycp84', 'en', 1, 'https://ror.org/05eqycp84 Cheng Ching Hospital ę¾„ęø…ę¹–åŒ»é™¢'),
(4579, 'https://ror.org/05et9pf90', 'en', 1, 'https://ror.org/05et9pf90 B.P. Koirala Institute of Health Sciences ą¤µą¤æą¤Ŗą„€ ą¤•ą„‹ą¤‡ą¤°ą¤¾ą¤²ą¤¾ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(4580, 'https://ror.org/05ewdm369', 'en', 1, 'https://ror.org/05ewdm369 Secretariat of the Pacific Community'),
(4581, 'https://ror.org/05exmrf24', 'en', 1, 'https://ror.org/05exmrf24 Coppin State University'),
(4582, 'https://ror.org/05f2xwq77', 'en', 1, 'https://ror.org/05f2xwq77 Charles Clifford Dental Hospital'),
(4583, 'https://ror.org/05f4fpj37', 'hr', 1, 'https://ror.org/05f4fpj37 Klinika za psihijatriju Vrapče'),
(4584, 'https://ror.org/05faw8a11', 'en', 1, 'https://ror.org/05faw8a11 Shaughnessy Hospital'),
(4585, 'https://ror.org/05fb8h434', 'pt', 1, 'https://ror.org/05fb8h434 Instituto Superior de Administração e Gestão'),
(4586, 'https://ror.org/05fccw142', 'it', 1, 'https://ror.org/05fccw142 Ospedale San Pietro Fatebenefratelli'),
(4587, 'https://ror.org/05fcfqq67', 'en', 1, 'https://ror.org/05fcfqq67 Oregon National Primate Research Center'),
(4588, 'https://ror.org/05fcrn131', 'en', 1, 'https://ror.org/05fcrn131 University Hospital Llandough'),
(4589, 'https://ror.org/05fde5z47', 'en', 1, 'https://ror.org/05fde5z47 Hampton University UniversitƩ de hampton'),
(4590, 'https://ror.org/05fe2n505', 'en', 1, 'https://ror.org/05fe2n505 Royal Sussex County Hospital'),
(4591, 'https://ror.org/05fhtd457', 'es', 1, 'https://ror.org/05fhtd457 Hospital Central Militar'),
(4592, 'https://ror.org/05fk0de79', 'en', 1, 'https://ror.org/05fk0de79 Bassett Medical Center'),
(4593, 'https://ror.org/05fkq4848', 'fr', 1, 'https://ror.org/05fkq4848 HƓpital Civil, Strasbourg'),
(4594, 'https://ror.org/05fmwts39', 'tr', 1, 'https://ror.org/05fmwts39 Şişli Etfal Eğitim ve Araştırma Hastanesi'),
(4595, 'https://ror.org/05fnpxf31', 'en', 1, 'https://ror.org/05fnpxf31 Holy Name Medical Center'),
(4596, 'https://ror.org/05fscjm95', 'en', 1, 'https://ror.org/05fscjm95 Jorvi Hospital Jorvin sairaala'),
(4597, 'https://ror.org/05fwyj602', 'en', 1, 'https://ror.org/05fwyj602 St. Jerome''s University'),
(4598, 'https://ror.org/05fx5mz56', 'en', 1, 'https://ror.org/05fx5mz56 University of Nigeria Teaching Hospital'),
(4599, 'https://ror.org/05fyf7995', 'en', 1, 'https://ror.org/05fyf7995 R. G. Kar Medical College and Hospital'),
(4600, 'https://ror.org/05fz2yc38', 'it', 1, 'https://ror.org/05fz2yc38 Ospedale Bellaria, Ospedale Bellaria "Carlo Alberto Pizzardi"'),
(4601, 'https://ror.org/05g1mag11', 'en', 1, 'https://ror.org/05g1mag11 Hebei Normal University of Science and Technology ę²³åŒ—ē§‘ęŠ€åøˆčŒƒå­¦é™¢'),
(4602, 'https://ror.org/05g2amy04', 'en', 1, 'https://ror.org/05g2amy04 Acıbadem Adana Hospital'),
(4603, 'https://ror.org/05g2gkn28', 'en', 1, 'https://ror.org/05g2gkn28 Minoh City Hospital ē®•é¢åø‚ē«‹ē—…é™¢'),
(4604, 'https://ror.org/05g3m5c29', 'en', 1, 'https://ror.org/05g3m5c29 Asanogawa General Hospital ęµ…ćƒŽå·ē·åˆē—…é™¢'),
(4605, 'https://ror.org/05g44an34', 'en', 1, 'https://ror.org/05g44an34 Long Beach City College'),
(4606, 'https://ror.org/05g4mtv59', 'no_lang_code', 1, 'https://ror.org/05g4mtv59 Hewlett-Packard (United Kingdom)'),
(4607, 'https://ror.org/05g5v7496', 'en', 1, 'https://ror.org/05g5v7496 Burnley General Teaching Hospital'),
(4608, 'https://ror.org/05g6w6j42', 'en', 1, 'https://ror.org/05g6w6j42 Armed Forces Medical College ą“†ą“‚ą“”ąµ ą“«ąµ‹ą““ąµą“øą“øąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(4609, 'https://ror.org/05g91z486', 'no_lang_code', 1, 'https://ror.org/05g91z486 Organ Technologies (Japan) ć‚Ŗćƒ¼ć‚¬ćƒ³ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(4610, 'https://ror.org/05gba0366', 'en', 1, 'https://ror.org/05gba0366 Russian University of Transport Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ транспорта'),
(4611, 'https://ror.org/05gbdc474', 'no_lang_code', 1, 'https://ror.org/05gbdc474 Sotiria General Hospital'),
(4612, 'https://ror.org/05gbwr869', 'en', 1, 'https://ror.org/05gbwr869 First Affiliated Hospital of Nanchang University å—ę˜Œå¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(4613, 'https://ror.org/05gcxpk23', 'en', 1, 'https://ror.org/05gcxpk23 Dong-A University Hospital ė™ģ•„ėŒ€ķ•™źµģ˜ė£Œģ›'),
(4614, 'https://ror.org/05gehxw18', 'en', 1, 'https://ror.org/05gehxw18 Detroit Medical Center'),
(4615, 'https://ror.org/05gf6dk22', 'pt', 1, 'https://ror.org/05gf6dk22 Base Hospital Hospital de Base'),
(4616, 'https://ror.org/05gfebp73', 'en', 1, 'https://ror.org/05gfebp73 CSI Holdsworth Memorial Hospital'),
(4617, 'https://ror.org/05gg4qm19', 'en', 1, 'https://ror.org/05gg4qm19 Yamagata University Hospital å±±å½¢å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(4618, 'https://ror.org/05gh0na70', 'en', 1, 'https://ror.org/05gh0na70 Jinnah Medical & Dental College'),
(4619, 'https://ror.org/05gh5ar80', 'en', 1, 'https://ror.org/05gh5ar80 Gloucestershire Royal Hospital'),
(4620, 'https://ror.org/05gn4hz56', 'no_lang_code', 1, 'https://ror.org/05gn4hz56 Kishiwada Tokushukai Hospital å²øå’Œē”°å¾³ę“²ä¼šē—…é™¢'),
(4621, 'https://ror.org/05gn84d31', 'es', 1, 'https://ror.org/05gn84d31 Hospital de León'),
(4622, 'https://ror.org/05gnna589', 'it', 1, 'https://ror.org/05gnna589 Consorzio Nazionale Interuniversitario per la Nanoelettronica Interuniversity Consortium for Nanoelectronics'),
(4623, 'https://ror.org/05gpmx630', 'no_lang_code', 1, 'https://ror.org/05gpmx630 ShinKokura Hospital ę–°å°å€‰ē—…é™¢'),
(4624, 'https://ror.org/05gqcbq50', 'en', 1, 'https://ror.org/05gqcbq50 Aspen Center For Physics Centre pour la physique d''aspen'),
(4625, 'https://ror.org/05gr5bv62', 'no_lang_code', 1, 'https://ror.org/05gr5bv62 Vala Sciences (United States)'),
(4626, 'https://ror.org/05gx19t11', 'en', 1, 'https://ror.org/05gx19t11 Evergreen Health Medical Center'),
(4627, 'https://ror.org/05gzcpj23', 'pt', 1, 'https://ror.org/05gzcpj23 Escola Superior de Saúde do Alcoitão'),
(4628, 'https://ror.org/05h0f1d70', 'en', 1, 'https://ror.org/05h0f1d70 C. S. Mott Children''s Hospital'),
(4629, 'https://ror.org/05h29d328', 'en', 1, 'https://ror.org/05h29d328 Saint Francis Memorial Hospital'),
(4630, 'https://ror.org/05h450y11', 'no_lang_code', 1, 'https://ror.org/05h450y11 Talaria (United States)'),
(4631, 'https://ror.org/05h4zj272', 'en', 1, 'https://ror.org/05h4zj272 Harbor–UCLA Medical Center'),
(4632, 'https://ror.org/05h7pem82', 'no_lang_code', 1, 'https://ror.org/05h7pem82 Bugando Medical Centre'),
(4633, 'https://ror.org/05h8pvh61', 'fr', 1, 'https://ror.org/05h8pvh61 HƓpital Broussais'),
(4634, 'https://ror.org/05h9pgm95', 'en', 1, 'https://ror.org/05h9pgm95 Kyungsung University ź²½ģ„±ėŒ€ķ•™źµ'),
(4635, 'https://ror.org/05hbrxp80', 'en', 1, 'https://ror.org/05hbrxp80 Agricultural Research Organization מנהל ×”×ž×—×§×Ø החקלאי - ×ž×Ø×›×– וולקני'),
(4636, 'https://ror.org/05hh8d621', 'no_lang_code', 1, 'https://ror.org/05hh8d621 IBM (United States)'),
(4637, 'https://ror.org/05hm0vv72', 'en', 1, 'https://ror.org/05hm0vv72 Shahjalal University of Science and Technology শাহজালাল ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(4638, 'https://ror.org/05hm6ny55', 'en', 1, 'https://ror.org/05hm6ny55 Good Samaritan Hospital'),
(4639, 'https://ror.org/05hmwx760', 'en', 1, 'https://ror.org/05hmwx760 Poultry Industry Council'),
(4640, 'https://ror.org/05hn3aw08', 'en', 1, 'https://ror.org/05hn3aw08 Lincoln University - Missouri'),
(4641, 'https://ror.org/05hnb4n85', 'en', 1, 'https://ror.org/05hnb4n85 Jeju National University ģ œģ£¼ėŒ€ķ•™źµ'),
(4642, 'https://ror.org/05hpt6x15', 'en', 1, 'https://ror.org/05hpt6x15 Riverside Regional Medical Center'),
(4643, 'https://ror.org/05hrczs03', 'en', 1, 'https://ror.org/05hrczs03 American Association of University Women'),
(4644, 'https://ror.org/05hrg0j24', 'en', 1, 'https://ror.org/05hrg0j24 Lister Hospital'),
(4645, 'https://ror.org/05hs5r386', 'en', 1, 'https://ror.org/05hs5r386 Mathematical Sciences Research Institute'),
(4646, 'https://ror.org/05hs7nx69', 'en', 1, 'https://ror.org/05hs7nx69 Social Insurance Futase Hospital ē¤¾ä¼šäæé™ŗ äŗŒē€¬ē—…é™¢'),
(4647, 'https://ror.org/05htjfp05', 'en', 1, 'https://ror.org/05htjfp05 Loma Linda University Children''s Hospital'),
(4648, 'https://ror.org/05hwn6x82', 'en', 1, 'https://ror.org/05hwn6x82 Spring Branch Medical Center'),
(4649, 'https://ror.org/05hzgxd58', 'pt', 1, 'https://ror.org/05hzgxd58 Universidade de Uberaba'),
(4650, 'https://ror.org/05j0w0e76', 'en', 1, 'https://ror.org/05j0w0e76 American Association For The Advancement of Science Asociación Estadounidense para el Avance de la Ciencia Association américaine pour l''avancement de la science'),
(4651, 'https://ror.org/05j1gs298', 'en', 1, 'https://ror.org/05j1gs298 Erasmus Hospital Erasmus Ziekenhuis HĆ“pital Ɖrasme'),
(4652, 'https://ror.org/05j37e495', 'en', 1, 'https://ror.org/05j37e495 South Western Sydney Local Health District'),
(4653, 'https://ror.org/05j4p5w63', 'en', 1, 'https://ror.org/05j4p5w63 MetroHealth Medical Center'),
(4654, 'https://ror.org/05j5y0r89', 'en', 1, 'https://ror.org/05j5y0r89 Sir Paul Boffa Hospital'),
(4655, 'https://ror.org/05j752d14', 'en', 1, 'https://ror.org/05j752d14 McLaughlin Research Institute'),
(4656, 'https://ror.org/05j7rz205', 'en', 1, 'https://ror.org/05j7rz205 Halifax Health Medical Center'),
(4657, 'https://ror.org/05j82jr52', 'en', 1, 'https://ror.org/05j82jr52 Gaylord Hospital'),
(4658, 'https://ror.org/05j8hg602', 'en', 1, 'https://ror.org/05j8hg602 American Physical Society SociƩtƩ amƩricaine de physique'),
(4659, 'https://ror.org/05j8naw58', 'en', 1, 'https://ror.org/05j8naw58 Sinai Health System');
INSERT INTO `rors` VALUES
(4660, 'https://ror.org/05j91v252', 'en', 1, 'https://ror.org/05j91v252 Oregon Research Institute'),
(4661, 'https://ror.org/05japer20', 'en', 1, 'https://ror.org/05japer20 Wilson College'),
(4662, 'https://ror.org/05jb57h29', 'en', 1, 'https://ror.org/05jb57h29 Hatanpaan Sairaala HatanpƤƤ Hospital'),
(4663, 'https://ror.org/05jbt9m15', 'en', 1, 'https://ror.org/05jbt9m15 Universidad de Arkansas University of Arkansas at Fayetteville UniversitƩ de l''arkansas'),
(4664, 'https://ror.org/05jbvqr49', 'no_lang_code', 1, 'https://ror.org/05jbvqr49 Gastops (Canada)'),
(4665, 'https://ror.org/05jc5ee02', 'en', 1, 'https://ror.org/05jc5ee02 University of Minnesota Children''s Hospital'),
(4666, 'https://ror.org/05jd2pj53', 'en', 1, 'https://ror.org/05jd2pj53 King Chulalongkorn Memorial Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøˆąøøąø¬ąø²ąø„ąø‡ąøąø£ąø“ą¹Œ'),
(4667, 'https://ror.org/05jeza980', 'no_lang_code', 1, 'https://ror.org/05jeza980 Rolls-Royce (Germany)'),
(4668, 'https://ror.org/05jfq2w07', 'en', 1, 'https://ror.org/05jfq2w07 Scottish Universities Environmental Research Centre'),
(4669, 'https://ror.org/05jg8yp15', 'en', 1, 'https://ror.org/05jg8yp15 Hammersmith Hospital'),
(4670, 'https://ror.org/05jhpk184', 'en', 1, 'https://ror.org/05jhpk184 Memorial Hospital'),
(4671, 'https://ror.org/05jk51a88', 'en', 1, 'https://ror.org/05jk51a88 Nihon University ę—„ęœ¬å¤§å­¦'),
(4672, 'https://ror.org/05jr18655', 'en', 1, 'https://ror.org/05jr18655 Self-Defense Forces Central Hospital č‡Ŗč”›éšŠäø­å¤®ē—…é™¢'),
(4673, 'https://ror.org/05jr1e079', 'no_lang_code', 1, 'https://ror.org/05jr1e079 Advanced Medical Electronics (United States)'),
(4674, 'https://ror.org/05jse4442', 'it', 1, 'https://ror.org/05jse4442 Ospedale Santa Corona'),
(4675, 'https://ror.org/05jt1df44', 'en', 1, 'https://ror.org/05jt1df44 Milton Keynes Hospital'),
(4676, 'https://ror.org/05jtcqr88', 'no_lang_code', 1, 'https://ror.org/05jtcqr88 Thermo Fisher Scientific (China)'),
(4677, 'https://ror.org/05jv5t769', 'en', 1, 'https://ror.org/05jv5t769 Eltron Research'),
(4678, 'https://ror.org/05jvra197', 'no_lang_code', 1, 'https://ror.org/05jvra197 JA Shizuoka Koseiren ENSHU hospital 恘悃 恗恚恊恋 恓恛恄悌悓 恈悓恗悅 ć»ļ½“ć“ćŸļ½Œ'),
(4679, 'https://ror.org/05jwhyp78', 'en', 1, 'https://ror.org/05jwhyp78 Good Samaritan Hospital Medical Center'),
(4680, 'https://ror.org/05jxj5k51', 'no_lang_code', 1, 'https://ror.org/05jxj5k51 Eesti Innovatsiooni Instituut'),
(4681, 'https://ror.org/05jyavm62', 'en', 1, 'https://ror.org/05jyavm62 Henrico Doctors'' Hospital'),
(4682, 'https://ror.org/05jyrng31', 'en', 1, 'https://ror.org/05jyrng31 McMaster University Medical Centre'),
(4683, 'https://ror.org/05jytgw54', 'en', 1, 'https://ror.org/05jytgw54 Gay Men''s Health Crisis'),
(4684, 'https://ror.org/05k07p323', 'en', 1, 'https://ror.org/05k07p323 Texas Health Dallas'),
(4685, 'https://ror.org/05k4mr860', 'en', 1, 'https://ror.org/05k4mr860 Saint John Regional Hospital'),
(4686, 'https://ror.org/05k71ja87', 'en', 1, 'https://ror.org/05k71ja87 Statistics Canada Statistique Canada'),
(4687, 'https://ror.org/05k7z2b58', 'en', 1, 'https://ror.org/05k7z2b58 Shriners Hospitals for Children Medical Center - Lexington'),
(4688, 'https://ror.org/05k87vq12', 'no_lang_code', 1, 'https://ror.org/05k87vq12 Microsoft Research (United Kingdom)'),
(4689, 'https://ror.org/05k8nw239', 'no_lang_code', 1, 'https://ror.org/05k8nw239 Western Research Company, Inc.'),
(4690, 'https://ror.org/05k8pq072', 'pt', 1, 'https://ror.org/05k8pq072 Universidade Cruzeiro do Sul'),
(4691, 'https://ror.org/05k9bck94', 'en', 1, 'https://ror.org/05k9bck94 Marietta Memorial Hospital'),
(4692, 'https://ror.org/05kcb8115', 'it', 1, 'https://ror.org/05kcb8115 Consorzio Interuniversitario Per L''Ottimizzazione E La Ricerca Operativa'),
(4693, 'https://ror.org/05kdz4d87', 'en', 1, 'https://ror.org/05kdz4d87 NHS Greater Glasgow and Clyde'),
(4694, 'https://ror.org/05ked8481', 'en', 1, 'https://ror.org/05ked8481 University of South Carolina Beaufort'),
(4695, 'https://ror.org/05kfvx519', 'fr', 1, 'https://ror.org/05kfvx519 HƓpital Albert Michallon'),
(4696, 'https://ror.org/05kjeqc29', 'no_lang_code', 1, 'https://ror.org/05kjeqc29 Jahra Hospital مستؓفى الجهراؔ'),
(4697, 'https://ror.org/05kn6fr85', 'en', 1, 'https://ror.org/05kn6fr85 Government Medical College ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ व ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ, औरंगाबाद'),
(4698, 'https://ror.org/05kpx1157', 'en', 1, 'https://ror.org/05kpx1157 Royal Preston Hospital'),
(4699, 'https://ror.org/05kr7zx86', 'en', 1, 'https://ror.org/05kr7zx86 Georgia College & State University'),
(4700, 'https://ror.org/05ks08368', 'en', 1, 'https://ror.org/05ks08368 Komfo Anokye Teaching Hospital'),
(4701, 'https://ror.org/05ktv1y25', 'en', 1, 'https://ror.org/05ktv1y25 William Woods University'),
(4702, 'https://ror.org/05kwh9e63', 'no_lang_code', 1, 'https://ror.org/05kwh9e63 Adenosine Therapeutics (United States)'),
(4703, 'https://ror.org/05kwhtp56', 'es', 1, 'https://ror.org/05kwhtp56 Hospital Perpetuo Socorro'),
(4704, 'https://ror.org/05kx1ke03', 'en', 1, 'https://ror.org/05kx1ke03 Narayana Health'),
(4705, 'https://ror.org/05kxrms28', 'hu', 1, 'https://ror.org/05kxrms28 Bajcsy-Zsilinszky KórhĆ”z Ć©s RendelőintĆ©zet'),
(4706, 'https://ror.org/05kz7bw59', 'en', 1, 'https://ror.org/05kz7bw59 Kwai Chung Hospital č‘µę¶Œé†«é™¢'),
(4707, 'https://ror.org/05kzadn81', 'en', 1, 'https://ror.org/05kzadn81 Nara Advanced Teachers College for Women, Nara Women''s University å„ˆč‰Æå„³å­å¤§å­¦'),
(4708, 'https://ror.org/05kzbz291', 'no_lang_code', 1, 'https://ror.org/05kzbz291 Nagoya Kyouritsu Hospital åå¤å±‹å…±ē«‹ē—…é™¢'),
(4709, 'https://ror.org/05kzjxq56', 'en', 1, 'https://ror.org/05kzjxq56 Chonnam National University ģ „ė‚ØėŒ€ķ•™źµ'),
(4710, 'https://ror.org/05m34fq04', 'no_lang_code', 1, 'https://ror.org/05m34fq04 Motorola (France)'),
(4711, 'https://ror.org/05m3qrs33', 'en', 1, 'https://ror.org/05m3qrs33 Ipswich Hospital'),
(4712, 'https://ror.org/05m4bwg25', 'no_lang_code', 1, 'https://ror.org/05m4bwg25 Shinonoi General Hospital ēÆ ćƒŽäŗ•ē·åˆē—…é™¢'),
(4713, 'https://ror.org/05m4t4820', 'en', 1, 'https://ror.org/05m4t4820 Makassed General Hospital'),
(4714, 'https://ror.org/05m5pc269', 'en', 1, 'https://ror.org/05m5pc269 Nepal Medical College Teaching Hospital ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤²ą„‡ą¤œ'),
(4715, 'https://ror.org/05m5z4f19', 'en', 1, 'https://ror.org/05m5z4f19 Steel Construction Institute'),
(4716, 'https://ror.org/05m64xs77', 'en', 1, 'https://ror.org/05m64xs77 Monklands Hospital'),
(4717, 'https://ror.org/05m6e7d23', 'it', 1, 'https://ror.org/05m6e7d23 Ospedale San Giuseppe'),
(4718, 'https://ror.org/05m7vf540', 'en', 1, 'https://ror.org/05m7vf540 Capital District Health Authority'),
(4719, 'https://ror.org/05m7zw681', 'no_lang_code', 1, 'https://ror.org/05m7zw681 Rio Tinto (United Kingdom)'),
(4720, 'https://ror.org/05m8d2x46', 'en', 1, 'https://ror.org/05m8d2x46 North Shore University Hospital'),
(4721, 'https://ror.org/05ma4gw77', 'en', 1, 'https://ror.org/05ma4gw77 Universidad del Pacƭfico University of the Pacific UniversitƩ du pacifique'),
(4722, 'https://ror.org/05maved80', 'en', 1, 'https://ror.org/05maved80 Northwest Missouri State University'),
(4723, 'https://ror.org/05mdb5j94', 'en', 1, 'https://ror.org/05mdb5j94 MedStar Harbor Hospital'),
(4724, 'https://ror.org/05megpp22', 'pt', 1, 'https://ror.org/05megpp22 Hospital Geral de Fortaleza'),
(4725, 'https://ror.org/05meqs994', 'no_lang_code', 1, 'https://ror.org/05meqs994 Innovation Research and Training'),
(4726, 'https://ror.org/05mg61p80', 'en', 1, 'https://ror.org/05mg61p80 Englewood Hospital and Medical Center'),
(4727, 'https://ror.org/05mgn5w61', 'no_lang_code', 1, 'https://ror.org/05mgn5w61 Hiraka General Hospital å¹³é¹æē·åˆē—…é™¢'),
(4728, 'https://ror.org/05mhswc23', 'en', 1, 'https://ror.org/05mhswc23 Kushiro City General Hospital åø‚ē«‹é‡§č·Æē·åˆē—…é™¢'),
(4729, 'https://ror.org/05mj6fy81', 'en', 1, 'https://ror.org/05mj6fy81 Universidad de Houston-Downtown University of Houston - Downtown'),
(4730, 'https://ror.org/05mm0yv21', 'en', 1, 'https://ror.org/05mm0yv21 Nizhny Novgorod State Pedagogical University ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š . Š•. Алексеева'),
(4731, 'https://ror.org/05mmga691', 'fi', 1, 'https://ror.org/05mmga691 Kymenlaakson keskussairaala'),
(4732, 'https://ror.org/05mnb6484', 'en', 1, 'https://ror.org/05mnb6484 Grambling State University UniversitĆ© d''Ɖtat de grambling'),
(4733, 'https://ror.org/05mpt6s70', 'no_lang_code', 1, 'https://ror.org/05mpt6s70 Applica Sprl'),
(4734, 'https://ror.org/05mqksr19', 'en', 1, 'https://ror.org/05mqksr19 Catawba Valley Medical Center'),
(4735, 'https://ror.org/05mryn396', 'no_lang_code', 1, 'https://ror.org/05mryn396 Manipal Hospital'),
(4736, 'https://ror.org/05mshxb09', 'en', 1, 'https://ror.org/05mshxb09 Sheffield Children''s Hospital'),
(4737, 'https://ror.org/05msy3z48', 'en', 1, 'https://ror.org/05msy3z48 Legacy Good Samaritan Medical Center'),
(4738, 'https://ror.org/05mw4gk09', 'en', 1, 'https://ror.org/05mw4gk09 Rebecca Sieff Hospital'),
(4739, 'https://ror.org/05myvb614', 'en', 1, 'https://ror.org/05myvb614 Miami VA Healthcare System'),
(4740, 'https://ror.org/05mzkvr65', 'en', 1, 'https://ror.org/05mzkvr65 Skokie Hospital'),
(4741, 'https://ror.org/05n0m7p40', 'fr', 1, 'https://ror.org/05n0m7p40 HƓpital El Ayachi'),
(4742, 'https://ror.org/05n0wgt02', 'en', 1, 'https://ror.org/05n0wgt02 King Faisal Specialist Hospital & Research Centre مستؓفى Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„ Ų§Ł„ŲŖŲ®ŲµŲµŁŠ'),
(4743, 'https://ror.org/05n13be63', 'en', 1, 'https://ror.org/05n13be63 Children''s Hospital of Fudan University'),
(4744, 'https://ror.org/05n56ba96', 'en', 1, 'https://ror.org/05n56ba96 Latifa Hospital'),
(4745, 'https://ror.org/05n5d3f06', 'en', 1, 'https://ror.org/05n5d3f06 Nagahama City Hospital é•·ęµœåø‚ē—…é™¢'),
(4746, 'https://ror.org/05n5drh21', 'en', 1, 'https://ror.org/05n5drh21 George E. Wahlen Department of VA Medical Center'),
(4747, 'https://ror.org/05n7t4h40', 'en', 1, 'https://ror.org/05n7t4h40 Henry Dunant Hospital'),
(4748, 'https://ror.org/05n8n9378', 'en', 1, 'https://ror.org/05n8n9378 Eduardo Mondlane University Universidade Eduardo Mondlane'),
(4749, 'https://ror.org/05n8v4z84', 'en', 1, 'https://ror.org/05n8v4z84 Milwaukee County Medical Complex'),
(4750, 'https://ror.org/05n952b74', 'en', 1, 'https://ror.org/05n952b74 North Mississippi Medical Center'),
(4751, 'https://ror.org/05n9fs062', 'no_lang_code', 1, 'https://ror.org/05n9fs062 Ghaem Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† قائم'),
(4752, 'https://ror.org/05na1sz60', 'en', 1, 'https://ror.org/05na1sz60 Mercy Medical Center'),
(4753, 'https://ror.org/05nakwy60', 'en', 1, 'https://ror.org/05nakwy60 Ideta Eye Hospital å‡ŗē”°ēœ¼ē§‘ē—…é™¢'),
(4754, 'https://ror.org/05nbsaj33', 'en', 1, 'https://ror.org/05nbsaj33 Bhopal Memorial Hospital & Research Centre'),
(4755, 'https://ror.org/05ncvf986', 'en', 1, 'https://ror.org/05ncvf986 Sam Higginbottom Institute of Agriculture ą¤øą„ˆą¤® ą¤¹ą¤æą¤—ą„ą¤—ą¤æą¤Øą¤¬ą„‰ą¤Ÿą¤® ą¤•ą„ƒą¤·ą¤æ, ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą“…ą“²ą“¹ą“¬ą“¾ą“¦ąµ ą“…ą“—ąµą“°ą“æą“•ąµ¾ą“šąµą“šą“±ąµ½ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(4756, 'https://ror.org/05ndpad60', 'en', 1, 'https://ror.org/05ndpad60 University of Sioux Falls'),
(4757, 'https://ror.org/05ne3s142', 'en', 1, 'https://ror.org/05ne3s142 Saint Petersburg Academic University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ акаГемический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ — Š½Š°ŃƒŃ‡Š½Š¾-Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Š¹ центр нанотехнологий'),
(4758, 'https://ror.org/05ne4t757', 'en', 1, 'https://ror.org/05ne4t757 Kent and Sussex Hospital'),
(4759, 'https://ror.org/05nfzf209', 'es', 1, 'https://ror.org/05nfzf209 Hospital Universitario Infanta Leonor'),
(4760, 'https://ror.org/05ngnkr69', 'no_lang_code', 1, 'https://ror.org/05ngnkr69 Ambergen (United States)'),
(4761, 'https://ror.org/05nhkt138', 'tr', 1, 'https://ror.org/05nhkt138 Bursa Yuksek Ihtisas Egitim Ve Arastirma Hastanesi'),
(4762, 'https://ror.org/05nkffb74', 'en', 1, 'https://ror.org/05nkffb74 Mubarak Al Kabeer Hospital'),
(4763, 'https://ror.org/05nmfef18', 'en', 1, 'https://ror.org/05nmfef18 Hoag Memorial Hospital Presbyterian'),
(4764, 'https://ror.org/05nmzkr23', 'en', 1, 'https://ror.org/05nmzkr23 Bankura Sammilani Medical College বাঁকুঔ়া ą¦øą¦®ą§ą¦®ą¦æą¦²ą¦Øą§€ ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ'),
(4765, 'https://ror.org/05npsb488', 'en', 1, 'https://ror.org/05npsb488 Foundation for Medical Research'),
(4766, 'https://ror.org/05nrhca20', 'en', 1, 'https://ror.org/05nrhca20 West Australian Sleep Disorders Research Institute'),
(4767, 'https://ror.org/05ns8wm63', 'no_lang_code', 1, 'https://ror.org/05ns8wm63 Abratech Corporation'),
(4768, 'https://ror.org/05nsbhw27', 'en', 1, 'https://ror.org/05nsbhw27 Centre hospitalier pour enfants de l''est de l''Ontario Children''s Hospital of Eastern Ontario'),
(4769, 'https://ror.org/05nter171', 'en', 1, 'https://ror.org/05nter171 Avera Health'),
(4770, 'https://ror.org/05nv2rz39', 'en', 1, 'https://ror.org/05nv2rz39 University of Eswatini'),
(4771, 'https://ror.org/05nvmzs58', 'pt', 1, 'https://ror.org/05nvmzs58 Universidade de Santo Amaro'),
(4772, 'https://ror.org/05nx0xs09', 'en', 1, 'https://ror.org/05nx0xs09 Baoji University of Arts and Sciences å®éø”ę–‡ē†å­¦é™¢'),
(4773, 'https://ror.org/05nyenj39', 'de', 1, 'https://ror.org/05nyenj39 Asklepios Hospital Barmbek Asklepios Klinik Barmbek'),
(4774, 'https://ror.org/05nygae07', 'pl', 1, 'https://ror.org/05nygae07 Okręgowy Szpital Kolejowy'),
(4775, 'https://ror.org/05nz57427', 'en', 1, 'https://ror.org/05nz57427 Cardinal Stritch University'),
(4776, 'https://ror.org/05nzesv70', 'en', 1, 'https://ror.org/05nzesv70 Royal Glamorgan Hospital'),
(4777, 'https://ror.org/05p1frt18', 'en', 1, 'https://ror.org/05p1frt18 Glostrup Hospital'),
(4778, 'https://ror.org/05p1phv38', 'en', 1, 'https://ror.org/05p1phv38 Huntington Medical Research Institutes'),
(4779, 'https://ror.org/05p21z194', 'it', 1, 'https://ror.org/05p21z194 Azienda Ospedaliera Universitaria Policlinico "Paolo Giaccone" di Palermo'),
(4780, 'https://ror.org/05p38yh32', 'en', 1, 'https://ror.org/05p38yh32 Hubei Cancer Hospital ę¹–åŒ—ēœč‚æē˜¤åŒ»é™¢'),
(4781, 'https://ror.org/05p48p517', 'en', 1, 'https://ror.org/05p48p517 Northern California Institute for Research and Education'),
(4782, 'https://ror.org/05p4f7w60', 'en', 1, 'https://ror.org/05p4f7w60 University of the West Indies'),
(4783, 'https://ror.org/05p89st11', 'en', 1, 'https://ror.org/05p89st11 American Geosciences Institute'),
(4784, 'https://ror.org/05pcyqv21', 'no_lang_code', 1, 'https://ror.org/05pcyqv21 Petro-Canada'),
(4785, 'https://ror.org/05peke140', 'es', 1, 'https://ror.org/05peke140 Hospital Virgen del Puerto'),
(4786, 'https://ror.org/05pet2p92', 'no_lang_code', 1, 'https://ror.org/05pet2p92 Nishida Hospital 脿田病院'),
(4787, 'https://ror.org/05pfdp204', 'en', 1, 'https://ror.org/05pfdp204 Crozer-Keystone Health System'),
(4788, 'https://ror.org/05pgywt51', 'en', 1, 'https://ror.org/05pgywt51 Queen Elizabeth Hospital'),
(4789, 'https://ror.org/05ph11m41', 'en', 1, 'https://ror.org/05ph11m41 CTO Hospital Ospedale Centro Traumatologico Ortopedico'),
(4790, 'https://ror.org/05pkzpg75', 'en', 1, 'https://ror.org/05pkzpg75 Ningbo First Hospital å®ę³¢åø‚ē¬¬äø€åŒ»é™¢'),
(4791, 'https://ror.org/05pp39346', 'en', 1, 'https://ror.org/05pp39346 Haifa Medical Center'),
(4792, 'https://ror.org/05prep819', 'en', 1, 'https://ror.org/05prep819 National Hsinchu University of Education'),
(4793, 'https://ror.org/05pvryz52', 'no_lang_code', 1, 'https://ror.org/05pvryz52 IQ Solutions'),
(4794, 'https://ror.org/05pwfyy15', 'en', 1, 'https://ror.org/05pwfyy15 National Centre for Research and Development'),
(4795, 'https://ror.org/05pwsw714', 'en', 1, 'https://ror.org/05pwsw714 Hangzhou First People''s Hospital ę­å·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(4796, 'https://ror.org/05py5qd41', 'en', 1, 'https://ror.org/05py5qd41 Lebanon Valley College'),
(4797, 'https://ror.org/05q2e1368', 'no_lang_code', 1, 'https://ror.org/05q2e1368 ISA Associate'),
(4798, 'https://ror.org/05q4veh78', 'no_lang_code', 1, 'https://ror.org/05q4veh78 Evangelismos Hospital'),
(4799, 'https://ror.org/05q60vz69', 'en', 1, 'https://ror.org/05q60vz69 South African Medical Research Council'),
(4800, 'https://ror.org/05q6tgt32', 'en', 1, 'https://ror.org/05q6tgt32 Kennedy Krieger Institute'),
(4801, 'https://ror.org/05q7jp496', 'en', 1, 'https://ror.org/05q7jp496 South African Institute for Medical Research'),
(4802, 'https://ror.org/05q87sg56', 'en', 1, 'https://ror.org/05q87sg56 Saint Joseph''s University Universidad de San JosƩ UniversitƩ saint-joseph de philadelphie'),
(4803, 'https://ror.org/05q8e6988', 'en', 1, 'https://ror.org/05q8e6988 Southern University at New Orleans'),
(4804, 'https://ror.org/05q8mwj81', 'en', 1, 'https://ror.org/05q8mwj81 Hamilton General Hospital'),
(4805, 'https://ror.org/05q9t1y70', 'no_lang_code', 1, 'https://ror.org/05q9t1y70 Siga Technologies (United States)'),
(4806, 'https://ror.org/05qapqt30', 'en', 1, 'https://ror.org/05qapqt30 Montana Department of Public Health and Human Services'),
(4807, 'https://ror.org/05qcjn862', 'en', 1, 'https://ror.org/05qcjn862 Greenbrier Valley Medical Center'),
(4808, 'https://ror.org/05qderh61', 'en', 1, 'https://ror.org/05qderh61 University of Calabar YunifÔsítì ìlú Calabar'),
(4809, 'https://ror.org/05qe0pv23', 'no_lang_code', 1, 'https://ror.org/05qe0pv23 Kashiwa Municipal Hospital ęŸåø‚ē«‹ęŸē—…é™¢'),
(4810, 'https://ror.org/05qfq7p37', 'en', 1, 'https://ror.org/05qfq7p37 Sint Clara Ziekenhuis St Clara Hospital'),
(4811, 'https://ror.org/05qj9p026', 'en', 1, 'https://ror.org/05qj9p026 Lu''an First People''s Hospital'),
(4812, 'https://ror.org/05qk3dq04', 'en', 1, 'https://ror.org/05qk3dq04 Malta Council for Science and Technology'),
(4813, 'https://ror.org/05qkf9y72', 'en', 1, 'https://ror.org/05qkf9y72 Government General Hospital'),
(4814, 'https://ror.org/05qkm6m65', 'no_lang_code', 1, 'https://ror.org/05qkm6m65 Engi-Mat (United States)'),
(4815, 'https://ror.org/05qkp7h42', 'en', 1, 'https://ror.org/05qkp7h42 Five Branches University'),
(4816, 'https://ror.org/05qmezx22', 'no_lang_code', 1, 'https://ror.org/05qmezx22 Guelph Chemical Labs'),
(4817, 'https://ror.org/05qmk4a18', 'en', 1, 'https://ror.org/05qmk4a18 Bangalore Medical College and Research Institute ಬೆಂಗಳೂರು ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(4818, 'https://ror.org/05qpen692', 'en', 1, 'https://ror.org/05qpen692 California Lutheran University'),
(4819, 'https://ror.org/05qtccm96', 'ga', 1, 'https://ror.org/05qtccm96 Forbairt'),
(4820, 'https://ror.org/05qx0rg92', 'no_lang_code', 1, 'https://ror.org/05qx0rg92 HealthMark Multimedia'),
(4821, 'https://ror.org/05qye4525', 'en', 1, 'https://ror.org/05qye4525 Mercy Hospital'),
(4822, 'https://ror.org/05qz2jt34', 'de', 1, 'https://ror.org/05qz2jt34 Bundeswehrkrankenhaus'),
(4823, 'https://ror.org/05r3hm325', 'it', 1, 'https://ror.org/05r3hm325 Azienda Ospedaliera Carlo Poma'),
(4824, 'https://ror.org/05r409z22', 'en', 1, 'https://ror.org/05r409z22 Northern General Hospital'),
(4825, 'https://ror.org/05r5k8873', 'en', 1, 'https://ror.org/05r5k8873'),
(4826, 'https://ror.org/05r6ndz30', 'en', 1, 'https://ror.org/05r6ndz30 Physicians for a National Health Program'),
(4827, 'https://ror.org/05raceh98', 'no_lang_code', 1, 'https://ror.org/05raceh98 Shirasagi Hospital 白鷺病院'),
(4828, 'https://ror.org/05rad4t93', 'en', 1, 'https://ror.org/05rad4t93 Gordon Research Conferences'),
(4829, 'https://ror.org/05rbwvc13', 'en', 1, 'https://ror.org/05rbwvc13 Queen Elizabeth Hospital'),
(4830, 'https://ror.org/05re2b915', 'en', 1, 'https://ror.org/05re2b915 European Road Transport Telematics Implementation Co-Ordination'),
(4831, 'https://ror.org/05rejmm18', 'no_lang_code', 1, 'https://ror.org/05rejmm18 DELL (United States)'),
(4832, 'https://ror.org/05rfek682', 'en', 1, 'https://ror.org/05rfek682 Kaiser Permanente Oakland Medical Center'),
(4833, 'https://ror.org/05rfh1r09', 'en', 1, 'https://ror.org/05rfh1r09 Aquatic Animal Health Research Laboratory'),
(4834, 'https://ror.org/05rkz5e28', 'no_lang_code', 1, 'https://ror.org/05rkz5e28 Toranomon Hospital č™Žć®é–€ē—…é™¢'),
(4835, 'https://ror.org/05rm13h81', 'ms', 1, 'https://ror.org/05rm13h81 Hospital Tengku Ampuan Afzan'),
(4836, 'https://ror.org/05rmxkq05', 'en', 1, 'https://ror.org/05rmxkq05 Dominican Hospital'),
(4837, 'https://ror.org/05rq9gz82', 'en', 1, 'https://ror.org/05rq9gz82 303 Hospital of People''s Liberation Army 中国人民解放军303医院'),
(4838, 'https://ror.org/05rsbck92', 'no_lang_code', 1, 'https://ror.org/05rsbck92 Kitano Hospital åŒ—é‡Žē—…é™¢'),
(4839, 'https://ror.org/05rtdxx03', 'en', 1, 'https://ror.org/05rtdxx03 CHA Gangnam Medical Center'),
(4840, 'https://ror.org/05rtvan68', 'en', 1, 'https://ror.org/05rtvan68 Royal University of Phnom Penh įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įž—įŸ’įž“įŸ†įž–įŸįž‰'),
(4841, 'https://ror.org/05rvey468', 'en', 1, 'https://ror.org/05rvey468 Oglethorpe University'),
(4842, 'https://ror.org/05rw9t746', 'en', 1, 'https://ror.org/05rw9t746 IBM Research - Haifa'),
(4843, 'https://ror.org/05ry42w04', 'en', 1, 'https://ror.org/05ry42w04 MedStar Washington Hospital Center'),
(4844, 'https://ror.org/05ryv0s68', 'en', 1, 'https://ror.org/05ryv0s68 Euresearch Association'),
(4845, 'https://ror.org/05rz49z56', 'en', 1, 'https://ror.org/05rz49z56 Smt. N.H.L. Municipal Medical College ąŖ¶ą«ąŖ°ą«€ąŖ®ąŖ¤ą«€. ąŖąŖØąŖąŖšąŖąŖ² ąŖ®ą«ąŖÆą«ąŖØąŖæąŖøąŖæąŖŖąŖ² મેઔિકલ ąŖ•ą«‹ąŖ²ą«‡ąŖœ'),
(4846, 'https://ror.org/05rzmnp25', 'en', 1, 'https://ror.org/05rzmnp25 University of the Ryukyus University Hospital ē‰ēƒå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(4847, 'https://ror.org/05s004555', 'en', 1, 'https://ror.org/05s004555 Favaloro University Universidad Favaloro'),
(4848, 'https://ror.org/05s0ee237', 'en', 1, 'https://ror.org/05s0ee237 Morton Plant Hospital'),
(4849, 'https://ror.org/05s3h8004', 'es', 1, 'https://ror.org/05s3h8004 Hospital Universitario Severo Ochoa'),
(4850, 'https://ror.org/05s74hd65', 'en', 1, 'https://ror.org/05s74hd65 Oakwood University'),
(4851, 'https://ror.org/05s7s9x02', 'no_lang_code', 1, 'https://ror.org/05s7s9x02 Lucideon (United Kingdom)'),
(4852, 'https://ror.org/05s9f4d27', 'en', 1, 'https://ror.org/05s9f4d27 University of Wisconsin–Parkside UniversitĆ© du Wisconsin–Parkside'),
(4853, 'https://ror.org/05sb0dh40', 'en', 1, 'https://ror.org/05sb0dh40 Aishin Memorial Hospital ę„›åæƒćƒ”ćƒ¢ćƒŖć‚¢ćƒ«ē—…é™¢'),
(4854, 'https://ror.org/05sc3m345', 'en', 1, 'https://ror.org/05sc3m345 Hungarian Institute of Occupational Health OrszÔgos Munkahigiénés és FoglalkozÔsegészségügyi Intézet'),
(4855, 'https://ror.org/05sep9w93', 'es', 1, 'https://ror.org/05sep9w93 Instituto Tecnológico de Aragón'),
(4856, 'https://ror.org/05sgcwh30', 'fr', 1, 'https://ror.org/05sgcwh30 MinistĆØre des Transports'),
(4857, 'https://ror.org/05sgxk616', 'en', 1, 'https://ror.org/05sgxk616 Doctors Medical Center'),
(4858, 'https://ror.org/05shfp710', 'en', 1, 'https://ror.org/05shfp710 Evangel University'),
(4859, 'https://ror.org/05sj7yp62', 'en', 1, 'https://ror.org/05sj7yp62 Universidad de Carabobo University of Carabobo'),
(4860, 'https://ror.org/05sk0a617', 'en', 1, 'https://ror.org/05sk0a617 Association of Schools of Allied Health Professions'),
(4861, 'https://ror.org/05skj8r52', 'en', 1, 'https://ror.org/05skj8r52 Rutland Regional Medical Center'),
(4862, 'https://ror.org/05sn8t512', 'en', 1, 'https://ror.org/05sn8t512 Hospital Authority 醫院箔理局'),
(4863, 'https://ror.org/05sqd3t97', 'en', 1, 'https://ror.org/05sqd3t97 Sistema universitario estatal de Florida State University System of Florida'),
(4864, 'https://ror.org/05sv6pg41', 'en', 1, 'https://ror.org/05sv6pg41 University of Wisconsin–Stevens Point UniversitĆ© du Wisconsin–Stevens Point'),
(4865, 'https://ror.org/05sy5w128', 'en', 1, 'https://ror.org/05sy5w128 Kumamoto Medical Center ē†Šęœ¬åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4866, 'https://ror.org/05t3n1398', 'en', 1, 'https://ror.org/05t3n1398 Natural Resources Institute'),
(4867, 'https://ror.org/05t4vgv93', 'no_lang_code', 1, 'https://ror.org/05t4vgv93 Rotunda Hospital'),
(4868, 'https://ror.org/05t65ke24', 'en', 1, 'https://ror.org/05t65ke24 Sophiahemmet Hospital Sophiahemmet Sjukhus'),
(4869, 'https://ror.org/05t6gpm70', 'en', 1, 'https://ror.org/05t6gpm70 University of California Davis Medical Center'),
(4870, 'https://ror.org/05t70xh16', 'en', 1, 'https://ror.org/05t70xh16 Kyoto Sangyo University äŗ¬éƒ½ē”£ę„­å¤§å­¦'),
(4871, 'https://ror.org/05t7jxa31', 'en', 1, 'https://ror.org/05t7jxa31 Institute for Cancer Prevention'),
(4872, 'https://ror.org/05t8kxz54', 'en', 1, 'https://ror.org/05t8kxz54 Saddleback Memorial Medical Center'),
(4873, 'https://ror.org/05t9mkx39', 'en', 1, 'https://ror.org/05t9mkx39 Touro University Nevada UniversitƩ touro du nevada'),
(4874, 'https://ror.org/05tby3y60', 'en', 1, 'https://ror.org/05tby3y60 Judge Baker Children''s Center'),
(4875, 'https://ror.org/05tc07s46', 'en', 1, 'https://ror.org/05tc07s46 Matsuyama University ę¾å±±å¤§å­¦'),
(4876, 'https://ror.org/05tdbce05', 'en', 1, 'https://ror.org/05tdbce05 Biological Sciences Curriculum Study'),
(4877, 'https://ror.org/05te51w08', 'es', 1, 'https://ror.org/05te51w08 Hospital General de NiƱos Ricardo Gutierrez'),
(4878, 'https://ror.org/05tkvpg69', 'es', 1, 'https://ror.org/05tkvpg69 Centro Agronomico Tropical de Investigacion y Ensenanza Catie'),
(4879, 'https://ror.org/05tmv0d13', 'en', 1, 'https://ror.org/05tmv0d13 American Society of Civil Engineers'),
(4880, 'https://ror.org/05tn05n57', 'en', 1, 'https://ror.org/05tn05n57 Hanyang University Medical Center ķ•œģ–‘ėŒ€ķ•™źµė³‘ģ› ģ‘źø‰ģ‹¤'),
(4881, 'https://ror.org/05tnvgk65', 'en', 1, 'https://ror.org/05tnvgk65 Northern State Medical University Деверный Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4882, 'https://ror.org/05tqne909', 'no_lang_code', 1, 'https://ror.org/05tqne909 (주)ģøģ‹¤ė¦¬ģ½”ģ   Insilicogen (South Korea)'),
(4883, 'https://ror.org/05tqtd486', 'en', 1, 'https://ror.org/05tqtd486 Canterbury District Health Board'),
(4884, 'https://ror.org/05ts0bd12', 'en', 1, 'https://ror.org/05ts0bd12 VA Northern California Health Care System'),
(4885, 'https://ror.org/05tta9908', 'de', 1, 'https://ror.org/05tta9908 Children''s Hospital in Eastern Switzerland Ostschweizer Kinderspital'),
(4886, 'https://ror.org/05twvab73', 'en', 1, 'https://ror.org/05twvab73 Jehangir Hospital'),
(4887, 'https://ror.org/05txhk819', 'es', 1, 'https://ror.org/05txhk819 Hospital General de Agudos Dr. TEODORO ALVAREZ'),
(4888, 'https://ror.org/05txkk980', 'es', 1, 'https://ror.org/05txkk980 Hospital Universitario Infanta Cristina'),
(4889, 'https://ror.org/05txvbe22', 'en', 1, 'https://ror.org/05txvbe22 Federal Teaching Hospital Abakaliki'),
(4890, 'https://ror.org/05tzr3y75', 'en', 1, 'https://ror.org/05tzr3y75 Kassala University Ų¬Ų§Ł…Ų¹Ų© ŁƒŲ³Ł„Ų§'),
(4891, 'https://ror.org/05v0qpv28', 'en', 1, 'https://ror.org/05v0qpv28 Dankook University Hospital ė‹Øźµ­ėŒ€ķ•™źµģ˜ź³¼ėŒ€ķ•™ė¶€ģ†ė³‘ģ›'),
(4892, 'https://ror.org/05v1y0t93', 'en', 1, 'https://ror.org/05v1y0t93 China Jiliang University'),
(4893, 'https://ror.org/05v4bdf81', 'en', 1, 'https://ror.org/05v4bdf81 Southampton Hospital'),
(4894, 'https://ror.org/05v4pjq26', 'en', 1, 'https://ror.org/05v4pjq26 Mahatma Gandhi Medical College and Research Institute'),
(4895, 'https://ror.org/05v4pwe63', 'en', 1, 'https://ror.org/05v4pwe63 Canniesburn Hospital'),
(4896, 'https://ror.org/05v558c44', 'it', 1, 'https://ror.org/05v558c44 Azienda Ospedaliera Fatebenefratelli e Oftalmico'),
(4897, 'https://ror.org/05v55dh34', 'en', 1, 'https://ror.org/05v55dh34 Memorial Hospital'),
(4898, 'https://ror.org/05v58y004', 'en', 1, 'https://ror.org/05v58y004 Shaoxing People''s Hospital ē»å…“åø‚äŗŗę°‘åŒ»é™¢'),
(4899, 'https://ror.org/05v5wwy67', 'en', 1, 'https://ror.org/05v5wwy67 Hippocration General Hospital Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½ Ιπποκράτειο'),
(4900, 'https://ror.org/05v6r7450', 'en', 1, 'https://ror.org/05v6r7450 Shanghai Skin Disease Hospital äøŠęµ·ēš®č‚¤ē—…åŒ»é™¢é•æå®åŒŗé—ØčÆŠéƒØ'),
(4901, 'https://ror.org/05v7axt97', 'no_lang_code', 1, 'https://ror.org/05v7axt97 Resodyn Corporation (United States)'),
(4902, 'https://ror.org/05v7bbe50', 'tr', 1, 'https://ror.org/05v7bbe50 Fatih Sultan Mehmet Eğitim Ve Araştırma Hastanesi'),
(4903, 'https://ror.org/05v7jp327', 'en', 1, 'https://ror.org/05v7jp327 Atlanta Medical Center'),
(4904, 'https://ror.org/05v7v1303', 'no_lang_code', 1, 'https://ror.org/05v7v1303 IRIS Educational Media'),
(4905, 'https://ror.org/05v823t63', 'en', 1, 'https://ror.org/05v823t63 South Essex Partnership University Foundation NHS Trust'),
(4906, 'https://ror.org/05va5gy74', 'en', 1, 'https://ror.org/05va5gy74 Royal National Hospital for Rheumatic Diseases'),
(4907, 'https://ror.org/05vc4qy60', 'nl', 1, 'https://ror.org/05vc4qy60 Rijnland Ziekenhuis'),
(4908, 'https://ror.org/05vchgv90', 'no_lang_code', 1, 'https://ror.org/05vchgv90 Kouseiren Takaoka Hospital åŽšē”Ÿé€£é«˜å²”ē—…é™¢'),
(4909, 'https://ror.org/05vczwc13', 'en', 1, 'https://ror.org/05vczwc13 Deaconess Hospital'),
(4910, 'https://ror.org/05vf56z40', 'en', 1, 'https://ror.org/05vf56z40 University of Tehran دانؓگاه تهران'),
(4911, 'https://ror.org/05vgmh969', 'pl', 1, 'https://ror.org/05vgmh969 Szpital Uniwersytecki w Krakowie'),
(4912, 'https://ror.org/05vhczg54', 'en', 1, 'https://ror.org/05vhczg54 Feng Chia University'),
(4913, 'https://ror.org/05vn3ca78', 'en', 1, 'https://ror.org/05vn3ca78 National Chung Hsing University'),
(4914, 'https://ror.org/05vp5x049', 'en', 1, 'https://ror.org/05vp5x049 Children''s Hospital of Richmond at VCU'),
(4915, 'https://ror.org/05vtzqy31', 'en', 1, 'https://ror.org/05vtzqy31 Deaconess Hospital'),
(4916, 'https://ror.org/05vvzn852', 'en', 1, 'https://ror.org/05vvzn852 University of Kentucky HealthCare'),
(4917, 'https://ror.org/05vxnmp88', 'en', 1, 'https://ror.org/05vxnmp88 Cheil General Hospital and Women''s Healthcare Center'),
(4918, 'https://ror.org/05vy1kj95', 'en', 1, 'https://ror.org/05vy1kj95 American Mathematical Society Sociedad Estadounidense de MatemƔtica'),
(4919, 'https://ror.org/05vy2sc54', 'en', 1, 'https://ror.org/05vy2sc54 First Affiliated Hospital of Harbin Medical University'),
(4920, 'https://ror.org/05vz28418', 'en', 1, 'https://ror.org/05vz28418 Southern Illinois University System UniversitƩ de l''illinois du sud'),
(4921, 'https://ror.org/05vzbfc95', 'en', 1, 'https://ror.org/05vzbfc95 Yeditepe University Hospital Yeditepe Üniversitesi Hastanesi'),
(4922, 'https://ror.org/05vzqzh92', 'en', 1, 'https://ror.org/05vzqzh92 University of Minnesota Morris UniversitƩ du minnesota Ơ morris'),
(4923, 'https://ror.org/05w0p9h92', 'en', 1, 'https://ror.org/05w0p9h92 Shenandoah University'),
(4924, 'https://ror.org/05w1yqq10', 'en', 1, 'https://ror.org/05w1yqq10 Israel Defense Forces Medical Corps'),
(4925, 'https://ror.org/05w3e4z48', 'en', 1, 'https://ror.org/05w3e4z48 New Cross Hospital'),
(4926, 'https://ror.org/05w6fx554', 'ro', 1, 'https://ror.org/05w6fx554 Institutul Clinic Fundeni'),
(4927, 'https://ror.org/05w6g2m14', 'en', 1, 'https://ror.org/05w6g2m14 Government Medical College'),
(4928, 'https://ror.org/05wbx0564', 'en', 1, 'https://ror.org/05wbx0564 Chonburi Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŠąø„ąøšąøøąø£ąøµ'),
(4929, 'https://ror.org/05wc95s05', 'en', 1, 'https://ror.org/05wc95s05 Khoo Teck Puat Hospital'),
(4930, 'https://ror.org/05wcbg446', 'en', 1, 'https://ror.org/05wcbg446 SveučiliŔna klinička bolnica Mostar University Clinical Hospital Mostar'),
(4931, 'https://ror.org/05wd11c32', 'en', 1, 'https://ror.org/05wd11c32 Research Corporation of The University of Hawaii'),
(4932, 'https://ror.org/05wd86d64', 'it', 1, 'https://ror.org/05wd86d64 Ospedale San Bortolo'),
(4933, 'https://ror.org/05we5gj17', 'en', 1, 'https://ror.org/05we5gj17 Inje University Seoul Paik Hospital ģøģ œėŒ€ķ•™źµė°±ė³‘ģ›'),
(4934, 'https://ror.org/05weahn72', 'en', 1, 'https://ror.org/05weahn72 Sri Venkateswara University جامعہ سری ŁˆŪŒŁ†Ś©Ł¹ŪŒŲ“ŁˆŲ±Ų§ ą¤¶ą„ą¤°ą„€ ą¤µą„‡ą¤‚ą¤•ą¤Ÿą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®šą®æą®±ąÆ€ ą®µąÆ†ą®™ąÆą®•ą®ŸąÆ‡ą®šąÆą®µą®°ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°¶ą±ą°°ą±€ ą°µą±‡ą°‚ą°•ą°Ÿą±‡ą°¶ą±ą°µą°° ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(4935, 'https://ror.org/05wf8v135', 'en', 1, 'https://ror.org/05wf8v135 Bronglais General Hospital'),
(4936, 'https://ror.org/05wfna922', 'tr', 1, 'https://ror.org/05wfna922 American Hospital Amerikan Hastanesi'),
(4937, 'https://ror.org/05wjv2104', 'en', 1, 'https://ror.org/05wjv2104 University Hospital Innsbruck'),
(4938, 'https://ror.org/05wnp6x23', 'en', 1, 'https://ror.org/05wnp6x23 Goa Dental College and Hospital'),
(4939, 'https://ror.org/05wqbqy84', 'en', 1, 'https://ror.org/05wqbqy84 Aminu Kano Teaching Hospital'),
(4940, 'https://ror.org/05wqhv079', 'en', 1, 'https://ror.org/05wqhv079 Mater Adult Hospital'),
(4941, 'https://ror.org/05wr49d48', 'en', 1, 'https://ror.org/05wr49d48 Wakayama University å’Œę­Œå±±å¤§å­¦'),
(4942, 'https://ror.org/05wrpbp17', 'en', 1, 'https://ror.org/05wrpbp17 Andalusian School of Public Health Escuela Andaluza de Salud PĆŗblica'),
(4943, 'https://ror.org/05wstbs93', 'en', 1, 'https://ror.org/05wstbs93 Obihiro National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹åøÆåŗƒē—…é™¢'),
(4944, 'https://ror.org/05wtx0016', 'no_lang_code', 1, 'https://ror.org/05wtx0016 Canon (Canada)'),
(4945, 'https://ror.org/05wvk1430', 'en', 1, 'https://ror.org/05wvk1430 Municipal Hirakata City Hospital åø‚ē«‹ęžšę–¹åø‚ę°‘ē—…é™¢'),
(4946, 'https://ror.org/05wyncb52', 'en', 1, 'https://ror.org/05wyncb52 Kings Mill Hospital'),
(4947, 'https://ror.org/05wyq9e07', 'en', 1, 'https://ror.org/05wyq9e07 Stony Brook University Hospital'),
(4948, 'https://ror.org/05x0h7m97', 'en', 1, 'https://ror.org/05x0h7m97 Ratchaburi Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø£ąø²ąøŠąøšąøøąø£ąøµ'),
(4949, 'https://ror.org/05x0kmy47', 'no_lang_code', 1, 'https://ror.org/05x0kmy47 Shaanxi Yulin Energy Group'),
(4950, 'https://ror.org/05x14am29', 'en', 1, 'https://ror.org/05x14am29 Escola Superior Gallaecia Gallaecia Higher School'),
(4951, 'https://ror.org/05x2sza30', 'en', 1, 'https://ror.org/05x2sza30 Higashi Nagoya National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹ę±åå¤å±‹ē—…é™¢'),
(4952, 'https://ror.org/05x3tad86', 'no_lang_code', 1, 'https://ror.org/05x3tad86 Inotek Pharmaceuticals (United States)'),
(4953, 'https://ror.org/05x3tq720', 'en', 1, 'https://ror.org/05x3tq720 Mennonite Christian Hospital 門諾醫院'),
(4954, 'https://ror.org/05x57ne79', 'en', 1, 'https://ror.org/05x57ne79 Calderdale Royal Hospital'),
(4955, 'https://ror.org/05x5g2972', 'en', 1, 'https://ror.org/05x5g2972 Crittenton Hospital Medical Center'),
(4956, 'https://ror.org/05x6qnc69', 'en', 1, 'https://ror.org/05x6qnc69 Lebanese University UniversitĆ© Libanaise الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ©'),
(4957, 'https://ror.org/05x6qqf62', 'es', 1, 'https://ror.org/05x6qqf62 Hospital Valle del Nalón'),
(4958, 'https://ror.org/05x8jna23', 'fr', 1, 'https://ror.org/05x8jna23 HƓpital de La Grave'),
(4959, 'https://ror.org/05xanxb38', 'en', 1, 'https://ror.org/05xanxb38 Govt. Dental College & Hospital'),
(4960, 'https://ror.org/05xaz0w84', 'en', 1, 'https://ror.org/05xaz0w84 Odessa National Polytechnic University ŠžŠ“ŠµŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ політехнічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4961, 'https://ror.org/05xc56p63', 'en', 1, 'https://ror.org/05xc56p63 Royal Alexandra Children''s Hospital'),
(4962, 'https://ror.org/05xcx0k58', 'en', 1, 'https://ror.org/05xcx0k58 Aga Khan University Hospital'),
(4963, 'https://ror.org/05xcyt367', 'en', 1, 'https://ror.org/05xcyt367 Loyola University Medical Center'),
(4964, 'https://ror.org/05xdd0k85', 'en', 1, 'https://ror.org/05xdd0k85 Cheltenham General Hospital'),
(4965, 'https://ror.org/05xdxc763', 'en', 1, 'https://ror.org/05xdxc763 Advocate Children''s Hospital'),
(4966, 'https://ror.org/05xeczx11', 'no_lang_code', 1, 'https://ror.org/05xeczx11 Curtiss-Wright (Canada)'),
(4967, 'https://ror.org/05xf34x41', 'en', 1, 'https://ror.org/05xf34x41 South Carolina State Department of Mental Health'),
(4968, 'https://ror.org/05xh7ac43', 'en', 1, 'https://ror.org/05xh7ac43 Kettering General Hospital NHS Trust'),
(4969, 'https://ror.org/05xh86w23', 'en', 1, 'https://ror.org/05xh86w23 Gastroenterology Medical Center and Hospital'),
(4970, 'https://ror.org/05xhkqs13', 'en', 1, 'https://ror.org/05xhkqs13 North Bengal Medical College and Hospital ą¦Øą¦°ą§ą¦„ą¦¬ą§‡ą¦™ą§ą¦—ą¦² ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ'),
(4971, 'https://ror.org/05xhpce34', 'en', 1, 'https://ror.org/05xhpce34 St Gƶran''s Children''s Hospital'),
(4972, 'https://ror.org/05xjxp170', 'en', 1, 'https://ror.org/05xjxp170 Lovelace Health System'),
(4973, 'https://ror.org/05xmvmv34', 'es', 1, 'https://ror.org/05xmvmv34 Centro Sociosanitario Nuestra SeƱora del Pino'),
(4974, 'https://ror.org/05xn9jy83', 'en', 1, 'https://ror.org/05xn9jy83 University of Arkansas at Monticello'),
(4975, 'https://ror.org/05xrsn753', 'en', 1, 'https://ror.org/05xrsn753 Choithram Hospital and Research Centre'),
(4976, 'https://ror.org/05xswp225', 'en', 1, 'https://ror.org/05xswp225 Khulna Medical College খুলনা মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(4977, 'https://ror.org/05xszy717', 'en', 1, 'https://ror.org/05xszy717 National Defense Academy of Japan é˜²č”›å¤§å­¦ę ”'),
(4978, 'https://ror.org/05xtj6g89', 'en', 1, 'https://ror.org/05xtj6g89 Baptist Memorial Hospital'),
(4979, 'https://ror.org/05xtmzc93', 'en', 1, 'https://ror.org/05xtmzc93 Baptist Medical Center Beaches'),
(4980, 'https://ror.org/05xv0p989', 'tr', 1, 'https://ror.org/05xv0p989 Ege Üniversitesi Tıp Fakültesi Hastanesi'),
(4981, 'https://ror.org/05xwc2w62', 'pt', 1, 'https://ror.org/05xwc2w62 Escola Superior de Educação de Almeida Garrett'),
(4982, 'https://ror.org/05xxmnm27', 'en', 1, 'https://ror.org/05xxmnm27 Altnagelvin Area Hospital'),
(4983, 'https://ror.org/05xysjr32', 'en', 1, 'https://ror.org/05xysjr32 Kessler Institute for Rehabilitation'),
(4984, 'https://ror.org/05y06tg49', 'en', 1, 'https://ror.org/05y06tg49 October 6 University Ų¬Ų§Ł…Ų¹Ų© السادس من أكتوبر'),
(4985, 'https://ror.org/05y26ar20', 'pt', 1, 'https://ror.org/05y26ar20 Universidade Regional do Cariri'),
(4986, 'https://ror.org/05y33vv83', 'es', 1, 'https://ror.org/05y33vv83 Universidad del Desarrollo'),
(4987, 'https://ror.org/05y50nr98', 'en', 1, 'https://ror.org/05y50nr98 Suffolk University Universidad de Suffolk'),
(4988, 'https://ror.org/05y5qmm69', 'en', 1, 'https://ror.org/05y5qmm69 Heritage University'),
(4989, 'https://ror.org/05y7e6905', 'no_lang_code', 1, 'https://ror.org/05y7e6905 Sahmyook Medical Center ģ‚¼ģœ”ģ˜ė£Œģ›ģ„œģšøė³‘ģ›'),
(4990, 'https://ror.org/05y8s3144', 'no_lang_code', 1, 'https://ror.org/05y8s3144 TPL (United States)'),
(4991, 'https://ror.org/05y999856', 'pt', 1, 'https://ror.org/05y999856 Hospital MĆ£e de Deus'),
(4992, 'https://ror.org/05ybvz010', 'en', 1, 'https://ror.org/05ybvz010 Mater Dei Hospital'),
(4993, 'https://ror.org/05yc6p159', 'en', 1, 'https://ror.org/05yc6p159 Yeungnam University ģ˜ė‚ØėŒ€ķ•™źµ'),
(4994, 'https://ror.org/05ydecq02', 'en', 1, 'https://ror.org/05ydecq02 Urho Kaleva Kekkonen Institute'),
(4995, 'https://ror.org/05ydxj072', 'en', 1, 'https://ror.org/05ydxj072 Hallym University Medical Center ķ•œė¦¼ėŒ€ķ•™źµģ˜ė£Œģ›'),
(4996, 'https://ror.org/05yevkn97', 'en', 1, 'https://ror.org/05yevkn97 Sendai Kousei Hospital ä»™å°åŽšē”Ÿē—…é™¢'),
(4997, 'https://ror.org/05yjz6y13', 'en', 1, 'https://ror.org/05yjz6y13 University Medical Center Rizk Hospital'),
(4998, 'https://ror.org/05yjze111', 'en', 1, 'https://ror.org/05yjze111 Unity Hospital'),
(4999, 'https://ror.org/05ym42410', 'en', 1, 'https://ror.org/05ym42410 Gansu Agricultural University ē”˜č‚ƒå†œäøšå¤§å­¦'),
(5000, 'https://ror.org/05ymyxj51', 'en', 1, 'https://ror.org/05ymyxj51 Royal Columbian Hospital'),
(5001, 'https://ror.org/0002vhf72', 'no_lang_code', 1, 'https://ror.org/0002vhf72 Galenea (United States)'),
(5002, 'https://ror.org/0003zy991', 'en', 1, 'https://ror.org/0003zy991 York Hospital'),
(5003, 'https://ror.org/0004bx792', 'no_lang_code', 1, 'https://ror.org/0004bx792 SignalChem (Canada)'),
(5004, 'https://ror.org/0004ysa08', 'en', 1, 'https://ror.org/0004ysa08 Centre for innovative process engineering'),
(5005, 'https://ror.org/0006jev58', 'no_lang_code', 1, 'https://ror.org/0006jev58 Alpha Technologies (Canada)'),
(5006, 'https://ror.org/0006n3612', 'en', 1, 'https://ror.org/0006n3612 Oak Crest Institute of Science'),
(5007, 'https://ror.org/0007tes83', 'no_lang_code', 1, 'https://ror.org/0007tes83 Tominaga hospital åÆŒę°øē—…é™¢'),
(5008, 'https://ror.org/0008kdt06', 'en', 1, 'https://ror.org/0008kdt06 Hearthstone Alzheimer Care'),
(5009, 'https://ror.org/00096h502', 'en', 1, 'https://ror.org/00096h502 Native American Cancer Research'),
(5010, 'https://ror.org/000a1cz07', 'no_lang_code', 1, 'https://ror.org/000a1cz07 Fianium (United Kingdom)'),
(5011, 'https://ror.org/000apqb71', 'en', 1, 'https://ror.org/000apqb71 Philadelphia Fire Department'),
(5012, 'https://ror.org/000cxfw53', 'no_lang_code', 1, 'https://ror.org/000cxfw53 Aradigm (United States)'),
(5013, 'https://ror.org/000czbn37', 'no_lang_code', 1, 'https://ror.org/000czbn37 iProgen Biotech (Canada)'),
(5014, 'https://ror.org/000dhg681', 'no_lang_code', 1, 'https://ror.org/000dhg681 Stratonics (United States)'),
(5015, 'https://ror.org/000dzg547', 'no_lang_code', 1, 'https://ror.org/000dzg547 Scientific Solutions (United States)'),
(5016, 'https://ror.org/000e3j968', 'tr', 1, 'https://ror.org/000e3j968 Türkiye Yüksek İhtisas Hastanesi'),
(5017, 'https://ror.org/000ep5m48', 'es', 1, 'https://ror.org/000ep5m48 Instituto de Salud PĆŗblica de Navarra'),
(5018, 'https://ror.org/000fmbj50', 'en', 1, 'https://ror.org/000fmbj50 California Rural Indian Health Board'),
(5019, 'https://ror.org/000g90y93', 'en', 1, 'https://ror.org/000g90y93 Fresno Unified School District'),
(5020, 'https://ror.org/000jqak13', 'no_lang_code', 1, 'https://ror.org/000jqak13 ECBio (Portugal)'),
(5021, 'https://ror.org/000qjjz95', 'en', 1, 'https://ror.org/000qjjz95 Park Centre for Mental Health'),
(5022, 'https://ror.org/000smmv87', 'no_lang_code', 1, 'https://ror.org/000smmv87 Morinaga Institute of Biological Science'),
(5023, 'https://ror.org/000vy8681', 'en', 1, 'https://ror.org/000vy8681 National Institute of Agricultural Science and Technology'),
(5024, 'https://ror.org/000x99506', 'no_lang_code', 1, 'https://ror.org/000x99506 Biodynamic Research Corporation (United States)'),
(5025, 'https://ror.org/000z4wj31', 'en', 1, 'https://ror.org/000z4wj31 Center for Naval Analyses'),
(5026, 'https://ror.org/000zk0m89', 'no_lang_code', 1, 'https://ror.org/000zk0m89 Nanoco Technologies (United Kingdom)'),
(5027, 'https://ror.org/000znb612', 'no_lang_code', 1, 'https://ror.org/000znb612 Banca RƬoghail na h-Alba Royal Bank of Scotland (United Kingdom)'),
(5028, 'https://ror.org/001040h60', 'en', 1, 'https://ror.org/001040h60 American Indian Center'),
(5029, 'https://ror.org/00109m582', 'en', 1, 'https://ror.org/00109m582 Community Connections'),
(5030, 'https://ror.org/0010c1z81', 'de', 1, 'https://ror.org/0010c1z81 Deutsche Klinik für Diagnostik'),
(5031, 'https://ror.org/0010ry587', 'no_lang_code', 1, 'https://ror.org/0010ry587 Ultra Electronics (Canada)'),
(5032, 'https://ror.org/0011v4420', 'en', 1, 'https://ror.org/0011v4420 Zübeyde Hanim Maternity Hospital'),
(5033, 'https://ror.org/0012w1115', 'no_lang_code', 1, 'https://ror.org/0012w1115 EcoMetrix'),
(5034, 'https://ror.org/0014wkh93', 'no_lang_code', 1, 'https://ror.org/0014wkh93 Tucker-Davis Technologies (United States)'),
(5035, 'https://ror.org/0015wff52', 'no_lang_code', 1, 'https://ror.org/0015wff52 Implant Sciences (United States)'),
(5036, 'https://ror.org/0015zns27', 'no_lang_code', 1, 'https://ror.org/0015zns27 KCTS 9 (United States)'),
(5037, 'https://ror.org/0016w2w54', 'en', 1, 'https://ror.org/0016w2w54 Des Moines Area Community College'),
(5038, 'https://ror.org/0016z8240', 'no_lang_code', 1, 'https://ror.org/0016z8240 Liminal BioSciences (Canada)'),
(5039, 'https://ror.org/00174r125', 'en', 1, 'https://ror.org/00174r125 Foundation for Blood Research'),
(5040, 'https://ror.org/001cbt815', 'en', 1, 'https://ror.org/001cbt815 Mt. Hood Community College'),
(5041, 'https://ror.org/001dsq926', 'no_lang_code', 1, 'https://ror.org/001dsq926 DeltaMetrics (United States)'),
(5042, 'https://ror.org/001dw2225', 'en', 1, 'https://ror.org/001dw2225 Central Aerohydrodynamic Institute Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š°ŃŃ€Š¾Š³ŠøŠ“Ń€Š¾Š“ŠøŠ½Š°Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени профессора Š.Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾'),
(5043, 'https://ror.org/001fvka94', 'no_lang_code', 1, 'https://ror.org/001fvka94 Wilson Wolf Manufacturing (United States)'),
(5044, 'https://ror.org/001kbwb95', 'no_lang_code', 1, 'https://ror.org/001kbwb95 Decision Demographics (United States)'),
(5045, 'https://ror.org/001m3hq40', 'en', 1, 'https://ror.org/001m3hq40 Communication Matters'),
(5046, 'https://ror.org/001s05659', 'en', 1, 'https://ror.org/001s05659 Blood Transfusion Centre of Slovenia'),
(5047, 'https://ror.org/001s4dh65', 'no_lang_code', 1, 'https://ror.org/001s4dh65 Cambridge Scientific (United States)'),
(5048, 'https://ror.org/001tmkc70', 'no_lang_code', 1, 'https://ror.org/001tmkc70 Ivoclar Vivadent (Liechtenstein)'),
(5049, 'https://ror.org/001yedb91', 'no_lang_code', 1, 'https://ror.org/001yedb91 Actelion (Switzerland)'),
(5050, 'https://ror.org/001ykb961', 'en', 1, 'https://ror.org/001ykb961 National Evolutionary Synthesis Center'),
(5051, 'https://ror.org/00226bs07', 'no_lang_code', 1, 'https://ror.org/00226bs07 Scarab Genomics (United States)'),
(5052, 'https://ror.org/002298757', 'no_lang_code', 1, 'https://ror.org/002298757 Allozyne (United States)'),
(5053, 'https://ror.org/0023asr12', 'en', 1, 'https://ror.org/0023asr12 Singapore Science Park Taman Sains Singapura ę–°åŠ å”ē§‘å­¦å›­'),
(5054, 'https://ror.org/0024cws33', 'en', 1, 'https://ror.org/0024cws33 Food Research Institute'),
(5055, 'https://ror.org/0024cyb77', 'no_lang_code', 1, 'https://ror.org/0024cyb77 Stottler Henke Associates (United States)'),
(5056, 'https://ror.org/002573656', 'no_lang_code', 1, 'https://ror.org/002573656 NeurAxon (Canada)'),
(5057, 'https://ror.org/0027jd641', 'no_lang_code', 1, 'https://ror.org/0027jd641 Cell Culture Company (United States)'),
(5058, 'https://ror.org/0028z3k74', 'en', 1, 'https://ror.org/0028z3k74 Orange County Research Center'),
(5059, 'https://ror.org/002bnpr17', 'pt', 1, 'https://ror.org/002bnpr17 Fundação de Medicina Tropical'),
(5060, 'https://ror.org/002cajb45', 'no_lang_code', 1, 'https://ror.org/002cajb45 Carterra (United States)'),
(5061, 'https://ror.org/002feag21', 'en', 1, 'https://ror.org/002feag21 Bostwick Laboratories'),
(5062, 'https://ror.org/002j9jj25', 'en', 1, 'https://ror.org/002j9jj25 Harrisburg Area Community College'),
(5063, 'https://ror.org/002k3wk88', 'en', 1, 'https://ror.org/002k3wk88 National Medical Products Administration'),
(5064, 'https://ror.org/002kdhq94', 'no_lang_code', 1, 'https://ror.org/002kdhq94 Online Technologies (United States)'),
(5065, 'https://ror.org/002m5c441', 'no_lang_code', 1, 'https://ror.org/002m5c441 Xention (United Kingdom)'),
(5066, 'https://ror.org/002mbwb34', 'en', 1, 'https://ror.org/002mbwb34 Passaic County Community College'),
(5067, 'https://ror.org/002nf6q61', 'en', 1, 'https://ror.org/002nf6q61 Bandim Health Project Projecto de SaĆŗde Bandim'),
(5068, 'https://ror.org/002t6g510', 'en', 1, 'https://ror.org/002t6g510 Dick Young Productions'),
(5069, 'https://ror.org/002vjkr06', 'en', 1, 'https://ror.org/002vjkr06 Pima Prevention Partnership'),
(5070, 'https://ror.org/002xn3f27', 'no_lang_code', 1, 'https://ror.org/002xn3f27 SciberQuest (United States)'),
(5071, 'https://ror.org/002y1bq07', 'en', 1, 'https://ror.org/002y1bq07 Madison Area Technical College'),
(5072, 'https://ror.org/002yzpx87', 'no_lang_code', 1, 'https://ror.org/002yzpx87 BASF (United States)'),
(5073, 'https://ror.org/0033n4009', 'no_lang_code', 1, 'https://ror.org/0033n4009 ABB (Sweden)'),
(5074, 'https://ror.org/0034k3d56', 'en', 1, 'https://ror.org/0034k3d56 Department of Community and Human Services'),
(5075, 'https://ror.org/0038zh709', 'it', 1, 'https://ror.org/0038zh709 Consorzio per Valutazioni Biologiche e Farmacologiche'),
(5076, 'https://ror.org/0039ss191', 'no_lang_code', 1, 'https://ror.org/0039ss191 Altravax (United States)'),
(5077, 'https://ror.org/003a79y48', 'en', 1, 'https://ror.org/003a79y48 Perm State Medical Academy ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(5078, 'https://ror.org/003ck6433', 'en', 1, 'https://ror.org/003ck6433 National Microelectronics Institute'),
(5079, 'https://ror.org/003dqcp70', 'no_lang_code', 1, 'https://ror.org/003dqcp70 Fujirebio (Belgium)'),
(5080, 'https://ror.org/003fgzm76', 'en', 1, 'https://ror.org/003fgzm76 Mount Carmel College of Nursing'),
(5081, 'https://ror.org/003frhn24', 'en', 1, 'https://ror.org/003frhn24 Amarillo College'),
(5082, 'https://ror.org/003fzn994', 'no_lang_code', 1, 'https://ror.org/003fzn994 TMO Renewables (United Kingdom)'),
(5083, 'https://ror.org/003g0xf19', 'en', 1, 'https://ror.org/003g0xf19 VA New Jersey Health Care System'),
(5084, 'https://ror.org/003hr6w03', 'en', 1, 'https://ror.org/003hr6w03 MotherToBaby'),
(5085, 'https://ror.org/003jsdw96', 'en', 1, 'https://ror.org/003jsdw96 Macedonian Academy of Sciences and Arts'),
(5086, 'https://ror.org/003jtsa97', 'en', 1, 'https://ror.org/003jtsa97 St. Joseph''s Hospital'),
(5087, 'https://ror.org/003kv9x13', 'en', 1, 'https://ror.org/003kv9x13 Health & Safety Laboratory'),
(5088, 'https://ror.org/003mpgw14', 'en', 1, 'https://ror.org/003mpgw14 St. Elisabeth Hospital'),
(5089, 'https://ror.org/003nnep52', 'pt', 1, 'https://ror.org/003nnep52 Irmandade da Santa Casa de Misericórdia de São Paulo');
INSERT INTO `rors` VALUES
(5090, 'https://ror.org/003pdcw24', 'no_lang_code', 1, 'https://ror.org/003pdcw24 Vestas (Denmark)'),
(5091, 'https://ror.org/003qr7703', 'en', 1, 'https://ror.org/003qr7703 Peijaksen sairaala Peijas Hospital'),
(5092, 'https://ror.org/003tra577', 'en', 1, 'https://ror.org/003tra577 Arizona Office of the Governor'),
(5093, 'https://ror.org/0042e5975', 'it', 1, 'https://ror.org/0042e5975 Istituto Nanoscienze'),
(5094, 'https://ror.org/00485s352', 'no_lang_code', 1, 'https://ror.org/00485s352 Danaher (United Kingdom)'),
(5095, 'https://ror.org/004a2wv92', 'en', 1, 'https://ror.org/004a2wv92 National Institute of Dental and Craniofacial Research'),
(5096, 'https://ror.org/004aekm03', 'en', 1, 'https://ror.org/004aekm03 South Carolina HIV/AIDS Council'),
(5097, 'https://ror.org/004amc442', 'en', 1, 'https://ror.org/004amc442 Orthopaedic Center'),
(5098, 'https://ror.org/004cah429', 'no_lang_code', 1, 'https://ror.org/004cah429 Toyama Prefectural Central Hospital åÆŒå±±ēœŒē«‹äø­å¤®ē—…é™¢'),
(5099, 'https://ror.org/004ej3g52', 'en', 1, 'https://ror.org/004ej3g52 National Defense Medical College Hospital é˜²č”›åŒ»ē§‘å¤§å­¦ę ”ē—…é™¢'),
(5100, 'https://ror.org/004ejmg69', 'no_lang_code', 1, 'https://ror.org/004ejmg69 Aerpio Pharmaceuticals (United States)'),
(5101, 'https://ror.org/004es3518', 'no_lang_code', 1, 'https://ror.org/004es3518 Red Hill Studios'),
(5102, 'https://ror.org/004g7tk16', 'en', 1, 'https://ror.org/004g7tk16 Canadian Fitness and Lifestyle Research Institute'),
(5103, 'https://ror.org/004gw9825', 'en', 1, 'https://ror.org/004gw9825 Southeast Community College'),
(5104, 'https://ror.org/004hfxk38', 'no_lang_code', 1, 'https://ror.org/004hfxk38 Theageneio General Hospital'),
(5105, 'https://ror.org/004hxna20', 'en', 1, 'https://ror.org/004hxna20 Overlake Hospital Medical Center'),
(5106, 'https://ror.org/004m2d892', 'no_lang_code', 1, 'https://ror.org/004m2d892 Impact Assessment'),
(5107, 'https://ror.org/004n9sm55', 'en', 1, 'https://ror.org/004n9sm55 New England Center for Children'),
(5108, 'https://ror.org/004pk7083', 'en', 1, 'https://ror.org/004pk7083 Cedars-Sinai Kerlan-Jobe Institute'),
(5109, 'https://ror.org/004q7z165', 'en', 1, 'https://ror.org/004q7z165 New York College of Podiatric Medicine'),
(5110, 'https://ror.org/004s94c80', 'pt', 1, 'https://ror.org/004s94c80 Biocant'),
(5111, 'https://ror.org/004v7xm28', 'no_lang_code', 1, 'https://ror.org/004v7xm28 Modellium (Canada)'),
(5112, 'https://ror.org/004vn8r55', 'es', 1, 'https://ror.org/004vn8r55 Centro MƩdico Nacional La Raza'),
(5113, 'https://ror.org/004wdnc96', 'no_lang_code', 1, 'https://ror.org/004wdnc96 Siloam Biosciences (United States)'),
(5114, 'https://ror.org/004wh0w58', 'en', 1, 'https://ror.org/004wh0w58 Guthrie Foundation'),
(5115, 'https://ror.org/004x58208', 'en', 1, 'https://ror.org/004x58208 St. John Medical Center'),
(5116, 'https://ror.org/004xj7429', 'no_lang_code', 1, 'https://ror.org/004xj7429 Ingenza (United Kingdom)'),
(5117, 'https://ror.org/004zcwt94', 'no_lang_code', 1, 'https://ror.org/004zcwt94 Universal Sensors (United States)'),
(5118, 'https://ror.org/004zwen25', 'no_lang_code', 1, 'https://ror.org/004zwen25 Intelligent Optical Systems (United States)'),
(5119, 'https://ror.org/0050g6f93', 'en', 1, 'https://ror.org/0050g6f93 KKR Tohoku Kosai Hospital ę±åŒ—å…¬ęøˆē—…é™¢'),
(5120, 'https://ror.org/005296895', 'en', 1, 'https://ror.org/005296895 BOOMHealth'),
(5121, 'https://ror.org/0053ctp29', 'it', 1, 'https://ror.org/0053ctp29 Ospedale Maggiore'),
(5122, 'https://ror.org/0056qeq43', 'no_lang_code', 1, 'https://ror.org/0056qeq43 Toyonaka Municipal Hospital åø‚ē«‹č±Šäø­ē—…é™¢'),
(5123, 'https://ror.org/0056x7z10', 'en', 1, 'https://ror.org/0056x7z10 Philander Smith College'),
(5124, 'https://ror.org/0057tdk10', 'no_lang_code', 1, 'https://ror.org/0057tdk10 La Jolla Science Applications (United States)'),
(5125, 'https://ror.org/0059mbq09', 'no_lang_code', 1, 'https://ror.org/0059mbq09 Integrity Testing Laboratory (Canada)'),
(5126, 'https://ror.org/005avv954', 'en', 1, 'https://ror.org/005avv954 Shea Ear Clinic'),
(5127, 'https://ror.org/005df7g82', 'en', 1, 'https://ror.org/005df7g82 Saudi Center for Organ Transplantation'),
(5128, 'https://ror.org/005dyph89', 'en', 1, 'https://ror.org/005dyph89 Hawaii Agriculture Research Center'),
(5129, 'https://ror.org/005e2bj09', 'en', 1, 'https://ror.org/005e2bj09 St.Petersburg V.M.Bekhterev Psychoneurological Research Institute Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ психоневрологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.М. Бехтерева'),
(5130, 'https://ror.org/005f8zs60', 'no_lang_code', 1, 'https://ror.org/005f8zs60 Nanoptics (United States)'),
(5131, 'https://ror.org/005fx5296', 'en', 1, 'https://ror.org/005fx5296 Austen Riggs Center'),
(5132, 'https://ror.org/005j1v069', 'en', 1, 'https://ror.org/005j1v069 Pathfinder International'),
(5133, 'https://ror.org/005k4dn45', 'en', 1, 'https://ror.org/005k4dn45 University of Arkansas Medical Center'),
(5134, 'https://ror.org/005kew443', 'no_lang_code', 1, 'https://ror.org/005kew443 GC Image (United States)'),
(5135, 'https://ror.org/005kxm139', 'no_lang_code', 1, 'https://ror.org/005kxm139 Bridge12 Technologies (United States)'),
(5136, 'https://ror.org/005m2at17', 'en', 1, 'https://ror.org/005m2at17 Harvard Affiliated Emergency Medicine Residency'),
(5137, 'https://ror.org/005nrbr06', 'no_lang_code', 1, 'https://ror.org/005nrbr06 Phrixus Pharmaceuticals (United States)'),
(5138, 'https://ror.org/005pxtk56', 'no_lang_code', 1, 'https://ror.org/005pxtk56 Cabezon Group (United States)'),
(5139, 'https://ror.org/005qf7j34', 'en', 1, 'https://ror.org/005qf7j34 Harlem United'),
(5140, 'https://ror.org/005t0ps98', 'fr', 1, 'https://ror.org/005t0ps98 Institut Arnault Tzanck'),
(5141, 'https://ror.org/005tjs461', 'en', 1, 'https://ror.org/005tjs461 American Association for the Study of Liver Diseases'),
(5142, 'https://ror.org/005yt8w56', 'no_lang_code', 1, 'https://ror.org/005yt8w56 Opotek (United States) Opotek Incorporation'),
(5143, 'https://ror.org/0060hwx87', 'no_lang_code', 1, 'https://ror.org/0060hwx87 Alliance Pharmaceutical (United States)'),
(5144, 'https://ror.org/0062dz060', 'en', 1, 'https://ror.org/0062dz060 Norwich Research Park'),
(5145, 'https://ror.org/00655dk85', 'en', 1, 'https://ror.org/00655dk85 Glasgow Life'),
(5146, 'https://ror.org/0068vzv72', 'no_lang_code', 1, 'https://ror.org/0068vzv72 National Instruments (United Kingdom)'),
(5147, 'https://ror.org/0069kqw53', 'en', 1, 'https://ror.org/0069kqw53 Environmental Research Institute of Michigan'),
(5148, 'https://ror.org/006d11e04', 'no_lang_code', 1, 'https://ror.org/006d11e04 Agricultural Development Advisory Service (United Kingdom)'),
(5149, 'https://ror.org/006dtpb58', 'en', 1, 'https://ror.org/006dtpb58 Monterey Peninsula College'),
(5150, 'https://ror.org/006efkq12', 'de', 1, 'https://ror.org/006efkq12 Unfallkrankenhaus Wien Lorenz Bƶhler'),
(5151, 'https://ror.org/006fc7318', 'no_lang_code', 1, 'https://ror.org/006fc7318 Cemka-Eval (France)'),
(5152, 'https://ror.org/006gebr77', 'no_lang_code', 1, 'https://ror.org/006gebr77 Toxikon (United States)'),
(5153, 'https://ror.org/006gfkv11', 'no_lang_code', 1, 'https://ror.org/006gfkv11 Stoelting (United States)'),
(5154, 'https://ror.org/006gpqj72', 'no_lang_code', 1, 'https://ror.org/006gpqj72 rEVO Biologics (United States)'),
(5155, 'https://ror.org/006hrz834', 'no_lang_code', 1, 'https://ror.org/006hrz834 Roche (Canada)'),
(5156, 'https://ror.org/006jktr69', 'it', 1, 'https://ror.org/006jktr69 Azienda Ospedaliera di Perugia'),
(5157, 'https://ror.org/006jzf029', 'no_lang_code', 1, 'https://ror.org/006jzf029 TriboFilm Research (United States)'),
(5158, 'https://ror.org/006pq9r08', 'it', 1, 'https://ror.org/006pq9r08 Centro Cardiologico Monzino'),
(5159, 'https://ror.org/006q1m605', 'no_lang_code', 1, 'https://ror.org/006q1m605 BlueInGreen (United States)'),
(5160, 'https://ror.org/006qz8583', 'en', 1, 'https://ror.org/006qz8583 Mahatma Gandhi Kashi Vidyapith ą¤®ą¤¹ą¤¾ą¤¤ą„ą¤®ą¤¾ ą¤—ą¤¾ą¤ą¤§ą„€ ą¤•ą¤¾ą¤¶ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą®®ą®•ą®¾ą®¤ąÆą®®ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ ą®•ą®¾ą®šą®æ ą®µą®æą®¤ąÆą®Æą®¾ą®ŖąÆ€ą®Ÿą®®ąÆ'),
(5161, 'https://ror.org/006tyy056', 'no_lang_code', 1, 'https://ror.org/006tyy056 Integran (Canada)'),
(5162, 'https://ror.org/006vvv981', 'no_lang_code', 1, 'https://ror.org/006vvv981 BioLegend (United States)'),
(5163, 'https://ror.org/006ys0j28', 'no_lang_code', 1, 'https://ror.org/006ys0j28 VinTech (United States)'),
(5164, 'https://ror.org/006zn3t30', 'en', 1, 'https://ror.org/006zn3t30 National Institute of Arthritis and Musculoskeletal and Skin Diseases'),
(5165, 'https://ror.org/0070c9h23', 'en', 1, 'https://ror.org/0070c9h23 Latino Health Institute (United States)'),
(5166, 'https://ror.org/0070nx673', 'no_lang_code', 1, 'https://ror.org/0070nx673 Okino Computer Graphics (Canada)'),
(5167, 'https://ror.org/0071ct727', 'en', 1, 'https://ror.org/0071ct727 Saskatchewan Hospice Palliative Care Association'),
(5168, 'https://ror.org/0072j3s02', 'no_lang_code', 1, 'https://ror.org/0072j3s02 Aster'),
(5169, 'https://ror.org/0073h0969', 'no_lang_code', 1, 'https://ror.org/0073h0969 Indus Instruments (United States)'),
(5170, 'https://ror.org/0073nm244', 'en', 1, 'https://ror.org/0073nm244 Loud Crow Interactive'),
(5171, 'https://ror.org/0075mfb88', 'no_lang_code', 1, 'https://ror.org/0075mfb88 Sharp Laboratories of Europe (United Kingdom)'),
(5172, 'https://ror.org/00770p954', 'en', 1, 'https://ror.org/00770p954 Healthcare Technology Systems'),
(5173, 'https://ror.org/0077s8c55', 'en', 1, 'https://ror.org/0077s8c55 Gyeongsangnam-do Agricultural Research and Extension Services ź²½ģƒė‚Øė„ė†ģ—…źø°ģˆ ģ›'),
(5174, 'https://ror.org/0078ww552', 'no_lang_code', 1, 'https://ror.org/0078ww552 Cochlear (Switzerland)'),
(5175, 'https://ror.org/007a5h107', 'en', 1, 'https://ror.org/007a5h107 Tawam Hospital مستؓفى ŲŖŁˆŲ§Ł…'),
(5176, 'https://ror.org/007aah170', 'en', 1, 'https://ror.org/007aah170 Highline College'),
(5177, 'https://ror.org/007app753', 'no_lang_code', 1, 'https://ror.org/007app753 Neuroscript (United States)'),
(5178, 'https://ror.org/007b9a961', 'no_lang_code', 1, 'https://ror.org/007b9a961 KeraNetics (United States)'),
(5179, 'https://ror.org/007bn8q13', 'en', 1, 'https://ror.org/007bn8q13 Association of State and Territorial Health Officials'),
(5180, 'https://ror.org/007gj5v75', 'en', 1, 'https://ror.org/007gj5v75 Kanagawa Institute of Technology ē„žå„ˆå·å·„ē§‘å¤§å­¦'),
(5181, 'https://ror.org/007jsya95', 'en', 1, 'https://ror.org/007jsya95 Hubbs-Sea World Research Institute'),
(5182, 'https://ror.org/007m28f12', 'no_lang_code', 1, 'https://ror.org/007m28f12 Bio-Synthesis (United States)'),
(5183, 'https://ror.org/007mg2f66', 'no_lang_code', 1, 'https://ror.org/007mg2f66 Prototypes (United States)'),
(5184, 'https://ror.org/007mtxb37', 'no_lang_code', 1, 'https://ror.org/007mtxb37 Oceanit (United States)'),
(5185, 'https://ror.org/007n45g27', 'en', 1, 'https://ror.org/007n45g27 Wellington Hospital'),
(5186, 'https://ror.org/007paj431', 'en', 1, 'https://ror.org/007paj431 Maine Maritime Academy'),
(5187, 'https://ror.org/007pyhw16', 'en', 1, 'https://ror.org/007pyhw16 Diamond Headache Clinic'),
(5188, 'https://ror.org/007sw5k32', 'pt', 1, 'https://ror.org/007sw5k32 Centro de GenƩtica Clƭnica'),
(5189, 'https://ror.org/007wes890', 'it', 1, 'https://ror.org/007wes890 Istituto per lo Studio e la Prevenzione Oncologica'),
(5190, 'https://ror.org/007yjv643', 'no_lang_code', 1, 'https://ror.org/007yjv643 Companhia União Fabril'),
(5191, 'https://ror.org/00806hw79', 'en', 1, 'https://ror.org/00806hw79 Huddersfield Royal Infirmary'),
(5192, 'https://ror.org/0080fc349', 'no_lang_code', 1, 'https://ror.org/0080fc349 JEOL (United Kingdom)'),
(5193, 'https://ror.org/0081r6c67', 'no_lang_code', 1, 'https://ror.org/0081r6c67 Addcomp (Netherlands)'),
(5194, 'https://ror.org/00840a568', 'no_lang_code', 1, 'https://ror.org/00840a568 Watershed Associates'),
(5195, 'https://ror.org/0084bse20', 'sv', 1, 'https://ror.org/0084bse20 Sunderby sjukhus'),
(5196, 'https://ror.org/0085yat49', 'en', 1, 'https://ror.org/0085yat49 City of Bradford Metropolitan District Council'),
(5197, 'https://ror.org/0086b8v72', 'en', 1, 'https://ror.org/0086b8v72 International Neuroscience Institute'),
(5198, 'https://ror.org/0087djs12', 'en', 1, 'https://ror.org/0087djs12 Max Planck Institute for Dynamics and Self-Organization Max-Planck-Institut für Dynamik und Selbstorganisation'),
(5199, 'https://ror.org/0088p5f80', 'no_lang_code', 1, 'https://ror.org/0088p5f80 NeuroDx Development (United States)'),
(5200, 'https://ror.org/008cz4337', 'da', 1, 'https://ror.org/008cz4337 Regionshospitalet Viborg Viborg Regional Hospital'),
(5201, 'https://ror.org/008ebms37', 'en', 1, 'https://ror.org/008ebms37 Institute of Theoretical and Experimental Biophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ биофизики Российской акаГемии наук'),
(5202, 'https://ror.org/008egzn26', 'pt', 1, 'https://ror.org/008egzn26 Centro Brasileiro de Estudos em Dermatologia'),
(5203, 'https://ror.org/008ghcb80', 'en', 1, 'https://ror.org/008ghcb80 American Nurses Association'),
(5204, 'https://ror.org/008h82p94', 'no_lang_code', 1, 'https://ror.org/008h82p94 Boston Applied Technologies (United States)'),
(5205, 'https://ror.org/008k5ng46', 'en', 1, 'https://ror.org/008k5ng46 Central Council for Research in Ayurvedic Science'),
(5206, 'https://ror.org/008kn1a71', 'en', 1, 'https://ror.org/008kn1a71 Sunnybrook Hospital'),
(5207, 'https://ror.org/008qdc072', 'no_lang_code', 1, 'https://ror.org/008qdc072 Monteco (Canada)'),
(5208, 'https://ror.org/008tdn922', 'no_lang_code', 1, 'https://ror.org/008tdn922 Premier Foods (United Kingdom)'),
(5209, 'https://ror.org/008vjgw77', 'no_lang_code', 1, 'https://ror.org/008vjgw77 MediSpectra (United States)'),
(5210, 'https://ror.org/008vp0c43', 'en', 1, 'https://ror.org/008vp0c43 Sunderland Eye Infirmary'),
(5211, 'https://ror.org/008wcy231', 'en', 1, 'https://ror.org/008wcy231 Zensa Hospital'),
(5212, 'https://ror.org/008x12972', 'en', 1, 'https://ror.org/008x12972 American Society for Reproductive Medicine'),
(5213, 'https://ror.org/008y69805', 'no_lang_code', 1, 'https://ror.org/008y69805 Inscent (United States)'),
(5214, 'https://ror.org/00911j719', 'en', 1, 'https://ror.org/00911j719 Tianjin Third Central Hospital å¤©ę“„åø‚ē¬¬äø‰äø­åæƒåŒ»é™¢'),
(5215, 'https://ror.org/00918g650', 'en', 1, 'https://ror.org/00918g650 Confederation of National Associations of Tanners and Dressers of the European Community'),
(5216, 'https://ror.org/0093s9g83', 'en', 1, 'https://ror.org/0093s9g83 MinistĆØre du Travail Ontario Ministry of Labour'),
(5217, 'https://ror.org/0094yx268', 'en', 1, 'https://ror.org/0094yx268 Philosophy of Science Association'),
(5218, 'https://ror.org/0094yxj20', 'en', 1, 'https://ror.org/0094yxj20 National Association of School Nurses'),
(5219, 'https://ror.org/0095q0x79', 'no_lang_code', 1, 'https://ror.org/0095q0x79 MAX Mobility (United States)'),
(5220, 'https://ror.org/0097hz889', 'no_lang_code', 1, 'https://ror.org/0097hz889 ChemGreen Innovation (Canada)'),
(5221, 'https://ror.org/0097wef15', 'no_lang_code', 1, 'https://ror.org/0097wef15 MacConnell Research (United States)'),
(5222, 'https://ror.org/0097wyf31', 'no_lang_code', 1, 'https://ror.org/0097wyf31 Hitachi (United Kingdom)'),
(5223, 'https://ror.org/00996xv77', 'en', 1, 'https://ror.org/00996xv77 Red Rocks Community College'),
(5224, 'https://ror.org/009azd705', 'it', 1, 'https://ror.org/009azd705 Figli Adottivi e Genitori Naturali'),
(5225, 'https://ror.org/009bsy196', 'en', 1, 'https://ror.org/009bsy196 Edinburgh Royal Infirmary'),
(5226, 'https://ror.org/009ee8v97', 'no_lang_code', 1, 'https://ror.org/009ee8v97 Jet Process Corporation (United States)'),
(5227, 'https://ror.org/009ezqy65', 'en', 1, 'https://ror.org/009ezqy65 National Institute of Health and Family Welfare ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ और परिवार ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(5228, 'https://ror.org/009frj756', 'no_lang_code', 1, 'https://ror.org/009frj756 360pi (Canada)'),
(5229, 'https://ror.org/009gw7733', 'en', 1, 'https://ror.org/009gw7733 National Renewable Energy Centre'),
(5230, 'https://ror.org/009h0v784', 'it', 1, 'https://ror.org/009h0v784 Fondazione Istituto Neurologico Nazionale Casimiro Mondino'),
(5231, 'https://ror.org/009ht6s65', 'no_lang_code', 1, 'https://ror.org/009ht6s65 Picarro (United States)'),
(5232, 'https://ror.org/009j32424', 'en', 1, 'https://ror.org/009j32424 Institute of Livestock and Grassland Science ē•œē”£ē ”ē©¶éƒØé–€'),
(5233, 'https://ror.org/009jvpf03', 'no_lang_code', 1, 'https://ror.org/009jvpf03 Integrated DNA Technologies (United States)'),
(5234, 'https://ror.org/009k2za57', 'no_lang_code', 1, 'https://ror.org/009k2za57 Chembio (United States)'),
(5235, 'https://ror.org/009kr6r15', 'en', 1, 'https://ror.org/009kr6r15 Western General Hospital'),
(5236, 'https://ror.org/009mb6m53', 'pt', 1, 'https://ror.org/009mb6m53 Instituto H. Ellis'),
(5237, 'https://ror.org/009mjd053', 'no_lang_code', 1, 'https://ror.org/009mjd053 Advanced Circulatory System (United States)'),
(5238, 'https://ror.org/009mk5659', 'en', 1, 'https://ror.org/009mk5659 American College of Surgeons'),
(5239, 'https://ror.org/009n4a626', 'no_lang_code', 1, 'https://ror.org/009n4a626 StataCorp (United States)'),
(5240, 'https://ror.org/009nbdt96', 'en', 1, 'https://ror.org/009nbdt96 St. Joseph Medical Center'),
(5241, 'https://ror.org/009qffz28', 'en', 1, 'https://ror.org/009qffz28 Central Institute of Psychiatry ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤®ą¤Øą¤¶ą„ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(5242, 'https://ror.org/009rbsv73', 'en', 1, 'https://ror.org/009rbsv73 The Tech Interactive'),
(5243, 'https://ror.org/009rf1452', 'en', 1, 'https://ror.org/009rf1452 San Francisco Film Society'),
(5244, 'https://ror.org/009s7a550', 'en', 1, 'https://ror.org/009s7a550 Pamela Youde Nethersole Eastern Hospital ę±å€å°¤å¾·å¤«äŗŗé‚£ę‰“ē“ é†«é™¢'),
(5245, 'https://ror.org/009vh5d61', 'en', 1, 'https://ror.org/009vh5d61 Rollins College'),
(5246, 'https://ror.org/009xkka62', 'no_lang_code', 1, 'https://ror.org/009xkka62 Sema Construction (United States)'),
(5247, 'https://ror.org/009y6jy27', 'no_lang_code', 1, 'https://ror.org/009y6jy27 GVD Corporation (United States)'),
(5248, 'https://ror.org/00a0kf832', 'en', 1, 'https://ror.org/00a0kf832 F.D. Ovcharenko Institute of Biocolloidal Chemistry Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біоколоїГної хімії ім. Ф. Š”. ŠžŠ²Ń‡Š°Ń€ŠµŠ½ŠŗŠ°'),
(5249, 'https://ror.org/00a1a0x11', 'no_lang_code', 1, 'https://ror.org/00a1a0x11 Area Detector Systems Corporation (United States)'),
(5250, 'https://ror.org/00a3bx267', 'en', 1, 'https://ror.org/00a3bx267 Toyama Institute of Health åÆŒå±±ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(5251, 'https://ror.org/00a4npp83', 'no_lang_code', 1, 'https://ror.org/00a4npp83 Dyson (United Kingdom)'),
(5252, 'https://ror.org/00a56am39', 'en', 1, 'https://ror.org/00a56am39 Philippine General Hospital'),
(5253, 'https://ror.org/00a6fbp85', 'en', 1, 'https://ror.org/00a6fbp85 P. D. Hinduja Hospital and Medical Research Centre'),
(5254, 'https://ror.org/00a75q479', 'no_lang_code', 1, 'https://ror.org/00a75q479 Nature Technology Corporation (United States)'),
(5255, 'https://ror.org/00aac7f28', 'no_lang_code', 1, 'https://ror.org/00aac7f28 Ion Physics (United States)'),
(5256, 'https://ror.org/00ab7ks98', 'en', 1, 'https://ror.org/00ab7ks98 W.M. Keck Observatory'),
(5257, 'https://ror.org/00afc8732', 'en', 1, 'https://ror.org/00afc8732 William Beaumont Army Medical Center'),
(5258, 'https://ror.org/00afpvb68', 'fr', 1, 'https://ror.org/00afpvb68 CollĆØge Shawinigan'),
(5259, 'https://ror.org/00agtat91', 'de', 1, 'https://ror.org/00agtat91 StƤdtisches Klinikum Karlsruhe'),
(5260, 'https://ror.org/00ah4xn57', 'en', 1, 'https://ror.org/00ah4xn57 Capital Allergy and Respiratory Disease Center'),
(5261, 'https://ror.org/00ahe2k65', 'no_lang_code', 1, 'https://ror.org/00ahe2k65 Adasa (Spain)'),
(5262, 'https://ror.org/00akhwn95', 'en', 1, 'https://ror.org/00akhwn95 Queen Saovabha Memorial Institute'),
(5263, 'https://ror.org/00akjja53', 'no_lang_code', 1, 'https://ror.org/00akjja53 Atlas Elektronik (Germany)'),
(5264, 'https://ror.org/00akkff67', 'no_lang_code', 1, 'https://ror.org/00akkff67 Phcc (United States)'),
(5265, 'https://ror.org/00amjd520', 'en', 1, 'https://ror.org/00amjd520 Saint Vincent College'),
(5266, 'https://ror.org/00an43c80', 'no_lang_code', 1, 'https://ror.org/00an43c80 SonaCare Medical (United States)'),
(5267, 'https://ror.org/00anm2x55', 'en', 1, 'https://ror.org/00anm2x55 Ministry of Justice'),
(5268, 'https://ror.org/00anthv74', 'no_lang_code', 1, 'https://ror.org/00anthv74 P&P Optica (Canada)'),
(5269, 'https://ror.org/00aqgm431', 'en', 1, 'https://ror.org/00aqgm431 Island Peer Review Organization'),
(5270, 'https://ror.org/00aqm2347', 'en', 1, 'https://ror.org/00aqm2347 Florence–Darlington Technical College'),
(5271, 'https://ror.org/00ar79186', 'no_lang_code', 1, 'https://ror.org/00ar79186 Performance Polymer Solutions (United States)'),
(5272, 'https://ror.org/00av7p167', 'en', 1, 'https://ror.org/00av7p167 Center for Science in the Public Interest (United States)'),
(5273, 'https://ror.org/00awfs868', 'no_lang_code', 1, 'https://ror.org/00awfs868 FFA Sciences (United States)'),
(5274, 'https://ror.org/00awxvj03', 'en', 1, 'https://ror.org/00awxvj03 Wakayama Rosai Hospital å’Œę­Œå±±ć‚ć†ć•ć„ē—…é™¢'),
(5275, 'https://ror.org/00ay43505', 'fr', 1, 'https://ror.org/00ay43505 Institut de Virologie'),
(5276, 'https://ror.org/00b0jfb70', 'no_lang_code', 1, 'https://ror.org/00b0jfb70 BM-Science'),
(5277, 'https://ror.org/00b0t9z66', 'en', 1, 'https://ror.org/00b0t9z66 Vision Eye Institute'),
(5278, 'https://ror.org/00b51s809', 'no_lang_code', 1, 'https://ror.org/00b51s809 InnerSea Technology (United States)'),
(5279, 'https://ror.org/00b5ztt43', 'en', 1, 'https://ror.org/00b5ztt43 Rancho Santiago Community College District'),
(5280, 'https://ror.org/00b605v51', 'no_lang_code', 1, 'https://ror.org/00b605v51 Mandel Scientific (Canada)'),
(5281, 'https://ror.org/00b970e83', 'en', 1, 'https://ror.org/00b970e83 Fond du Lac Tribal and Community College'),
(5282, 'https://ror.org/00b9w6n61', 'en', 1, 'https://ror.org/00b9w6n61 St. Francis Hospital'),
(5283, 'https://ror.org/00baryp08', 'en', 1, 'https://ror.org/00baryp08 Association for Symbolic Logic'),
(5284, 'https://ror.org/00bbdze26', 'en', 1, 'https://ror.org/00bbdze26 OspidƩal GinearƔlta Loch Garman Wexford General Hospital'),
(5285, 'https://ror.org/00bbe8x87', 'no_lang_code', 1, 'https://ror.org/00bbe8x87 Stallergenes Greer (France)'),
(5286, 'https://ror.org/00bbqy387', 'en', 1, 'https://ror.org/00bbqy387 American Academy of Dermatology'),
(5287, 'https://ror.org/00bcqra17', 'no_lang_code', 1, 'https://ror.org/00bcqra17 Local Data Company (United Kingdom)'),
(5288, 'https://ror.org/00bdvg512', 'no_lang_code', 1, 'https://ror.org/00bdvg512 Juvaris BioTherapeutics (United States)'),
(5289, 'https://ror.org/00berct97', 'no_lang_code', 1, 'https://ror.org/00berct97 NTT (Japan) ę—„ęœ¬é›»äæ”é›»č©±ę Ŗå¼ä¼šē¤¾'),
(5290, 'https://ror.org/00bewwj71', 'no_lang_code', 1, 'https://ror.org/00bewwj71 Cooperative Resources International (United States)'),
(5291, 'https://ror.org/00bfb4h45', 'no_lang_code', 1, 'https://ror.org/00bfb4h45 Endacea (United States)'),
(5292, 'https://ror.org/00bh4sk41', 'no_lang_code', 1, 'https://ror.org/00bh4sk41 Endomedix (United States)'),
(5293, 'https://ror.org/00bma2332', 'en', 1, 'https://ror.org/00bma2332 Royal Institute of British Architects'),
(5294, 'https://ror.org/00bmwjh97', 'en', 1, 'https://ror.org/00bmwjh97 St. James Hospital and Health Centers'),
(5295, 'https://ror.org/00bmxak18', 'en', 1, 'https://ror.org/00bmxak18 Fukuoka Institute of Technology ē¦å²”å·„ę„­å¤§å­¦'),
(5296, 'https://ror.org/00bnaq407', 'en', 1, 'https://ror.org/00bnaq407 North Sydney Orthopaedic and Sports Medicine Centre'),
(5297, 'https://ror.org/00bnthp71', 'fr', 1, 'https://ror.org/00bnthp71 Institut de Recherche pour le DƩveloppement'),
(5298, 'https://ror.org/00bppv849', 'en', 1, 'https://ror.org/00bppv849 National Partnership for Environmental Technology Education'),
(5299, 'https://ror.org/00bqy3h17', 'en', 1, 'https://ror.org/00bqy3h17 Merrimack College'),
(5300, 'https://ror.org/00bvzmn76', 'no_lang_code', 1, 'https://ror.org/00bvzmn76 Blackrock Microsystems (United States)'),
(5301, 'https://ror.org/00bw4xw30', 'en', 1, 'https://ror.org/00bw4xw30 Institute of Experimental Cardiology'),
(5302, 'https://ror.org/00bxgws88', 'en', 1, 'https://ror.org/00bxgws88 Cascade AIDS Project'),
(5303, 'https://ror.org/00by7mn52', 'no_lang_code', 1, 'https://ror.org/00by7mn52 Allocadia (Canada)'),
(5304, 'https://ror.org/00by9f077', 'en', 1, 'https://ror.org/00by9f077 Food Research Institute é£Ÿå“ē·åˆē ”ē©¶ę‰€'),
(5305, 'https://ror.org/00bycf367', 'en', 1, 'https://ror.org/00bycf367 Botanical Society of America'),
(5306, 'https://ror.org/00byczw08', 'en', 1, 'https://ror.org/00byczw08 Penrose Hospital'),
(5307, 'https://ror.org/00bz2pj54', 'no_lang_code', 1, 'https://ror.org/00bz2pj54 21st Century Therapeutics (United States)'),
(5308, 'https://ror.org/00bzsst90', 'en', 1, 'https://ror.org/00bzsst90 Institute for Advanced Studies in Basic Sciences مرکز ŲŖŲ­ŲµŪŒŁ„Ų§ŲŖ ŲŖŚ©Ł…ŪŒŁ„ŪŒ ŲÆŲ± Ų¹Ł„ŁˆŁ… Ł¾Ų§ŪŒŁ‡ زنجان'),
(5309, 'https://ror.org/00c211r48', 'no_lang_code', 1, 'https://ror.org/00c211r48 Boulder Language Technologies (United States)'),
(5310, 'https://ror.org/00c489v88', 'en', 1, 'https://ror.org/00c489v88 Academy of Medical Sciences'),
(5311, 'https://ror.org/00cb06v13', 'no_lang_code', 1, 'https://ror.org/00cb06v13 ABB (United States)'),
(5312, 'https://ror.org/00cfm3753', 'no_lang_code', 1, 'https://ror.org/00cfm3753 ANI Pharmaceuticals (United States)'),
(5313, 'https://ror.org/00chzyy83', 'no_lang_code', 1, 'https://ror.org/00chzyy83 Virscio (United States)'),
(5314, 'https://ror.org/00cm8nm15', 'en', 1, 'https://ror.org/00cm8nm15 University of California, Irvine Medical Center'),
(5315, 'https://ror.org/00cnpxz07', 'en', 1, 'https://ror.org/00cnpxz07 Connecticut Business and Industry Association'),
(5316, 'https://ror.org/00cpb6264', 'it', 1, 'https://ror.org/00cpb6264 Istituto Neurologico Mediterraneo'),
(5317, 'https://ror.org/00csvwd48', 'no_lang_code', 1, 'https://ror.org/00csvwd48 Capstone Therapeutics (United States)'),
(5318, 'https://ror.org/00ctbs693', 'en', 1, 'https://ror.org/00ctbs693 Yaroslavl State Medical Academy Ярославский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(5319, 'https://ror.org/00ctdh943', 'es', 1, 'https://ror.org/00ctdh943 Instituto Nacional de PerinatologĆ­a National Institute of PerinatologĆ­a Isidro Espinosa de los Reyes'),
(5320, 'https://ror.org/00cvaph79', 'en', 1, 'https://ror.org/00cvaph79 BioNB'),
(5321, 'https://ror.org/00cwrns71', 'en', 1, 'https://ror.org/00cwrns71 Indian Space Research Organisation ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ अंतराळ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤…ą¤‚ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø संगठन ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤…ą¤Øą„ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø संगठन ভারতীয় মহাকাশ গবেষণা ą¦øą¦‚ą¦øą§ą¦„ą¦¾ ਇਸਰੋ ઇસરો ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µą®æą®£ąÆą®µąÆ†ą®³ą®æ ą®†ą®ÆąÆą®µąÆ ą®®ąÆˆą®Æą®®ąÆ భారతీయ ą°…ą°‚ą°¤ą°°ą°æą°•ą±ą°· పరిశోధనా ą°øą°‚ą°øą±ą°„ ಭಾರತೀಯ ą²¬ą²¾ą²¹ą³ą²Æą²¾ą²•ą²¾ą²¶ ಸಂಶೋಧನೆ ą²øą²‚ą²øą³ą²„ą³† ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“øąµą“Ŗąµ‡ą“øąµ ą“±ą“æą“øąµ¼ą“šąµą“šąµ ą““ąµ¼ą“—ą“Øąµˆą“øąµ‡ą“·ąµ»'),
(5322, 'https://ror.org/00cwwgn12', 'no_lang_code', 1, 'https://ror.org/00cwwgn12 Recombinant Technologies (United States)'),
(5323, 'https://ror.org/00cyfck94', 'no_lang_code', 1, 'https://ror.org/00cyfck94 Parsons Brinckerhoff'),
(5324, 'https://ror.org/00d00px90', 'en', 1, 'https://ror.org/00d00px90 Langley Environmental Partners Society'),
(5325, 'https://ror.org/00d0rvy84', 'no_lang_code', 1, 'https://ror.org/00d0rvy84 Yokohama Minami Kyosai Hospital ęØŖęµœå—å…±ęøˆē—…é™¢'),
(5326, 'https://ror.org/00d2efr72', 'no_lang_code', 1, 'https://ror.org/00d2efr72 PLx Pharma (United States)'),
(5327, 'https://ror.org/00d2y1254', 'en', 1, 'https://ror.org/00d2y1254 Misericordia University'),
(5328, 'https://ror.org/00d3vm134', 'en', 1, 'https://ror.org/00d3vm134 Archaeology Southwest'),
(5329, 'https://ror.org/00d53ja24', 'no_lang_code', 1, 'https://ror.org/00d53ja24 Aspen Aerogels (United States)'),
(5330, 'https://ror.org/00d67eh84', 'en', 1, 'https://ror.org/00d67eh84 Central Laboratory for Radiological Protection Centralnego Laboratorium Ochrony Radiologicznej'),
(5331, 'https://ror.org/00da6z433', 'no_lang_code', 1, 'https://ror.org/00da6z433 Haematologic Technologies (United States)'),
(5332, 'https://ror.org/00dbcz291', 'en', 1, 'https://ror.org/00dbcz291 St. Vincent Charity Hospital'),
(5333, 'https://ror.org/00dbnf369', 'en', 1, 'https://ror.org/00dbnf369 National Marine Mammal Foundation'),
(5334, 'https://ror.org/00dcv1019', 'en', 1, 'https://ror.org/00dcv1019 Allen Institute for Brain Science'),
(5335, 'https://ror.org/00ddb6b18', 'en', 1, 'https://ror.org/00ddb6b18 Refugee and Immigrant Center'),
(5336, 'https://ror.org/00death42', 'en', 1, 'https://ror.org/00death42 Administrative Staff College of India'),
(5337, 'https://ror.org/00dg4je56', 'no_lang_code', 1, 'https://ror.org/00dg4je56 Thermal-Lube (Canada)'),
(5338, 'https://ror.org/00dh4zq96', 'no_lang_code', 1, 'https://ror.org/00dh4zq96 TRIA Bioscience (United States)'),
(5339, 'https://ror.org/00dhe8f29', 'no_lang_code', 1, 'https://ror.org/00dhe8f29 Gooch & Housego (United Kingdom)'),
(5340, 'https://ror.org/00dhmq281', 'en', 1, 'https://ror.org/00dhmq281 Foothill College'),
(5341, 'https://ror.org/00dj48n36', 'en', 1, 'https://ror.org/00dj48n36 Colorado Judicial Branch'),
(5342, 'https://ror.org/00djyb934', 'no_lang_code', 1, 'https://ror.org/00djyb934 Oxford Lasers (United Kingdom)'),
(5343, 'https://ror.org/00dmrtm29', 'en', 1, 'https://ror.org/00dmrtm29 New York City Health and Hospitals Corporation'),
(5344, 'https://ror.org/00dnb8a67', 'fr', 1, 'https://ror.org/00dnb8a67 Science pour tous'),
(5345, 'https://ror.org/00dncgb07', 'en', 1, 'https://ror.org/00dncgb07 Notre Dame of Maryland University'),
(5346, 'https://ror.org/00dpysh46', 'en', 1, 'https://ror.org/00dpysh46 Conseil national d''Ʃthique en recherche chez l''humain National Council on Ethics in Human Research'),
(5347, 'https://ror.org/00dqmaq38', 'it', 1, 'https://ror.org/00dqmaq38 Oasi Maria SS'),
(5348, 'https://ror.org/00dqq0p30', 'en', 1, 'https://ror.org/00dqq0p30 Texas State Technical College Harlingen'),
(5349, 'https://ror.org/00dr4nw61', 'en', 1, 'https://ror.org/00dr4nw61 BC Research (Canada)'),
(5350, 'https://ror.org/00dsap877', 'en', 1, 'https://ror.org/00dsap877 Sustrans'),
(5351, 'https://ror.org/00dv9e751', 'no_lang_code', 1, 'https://ror.org/00dv9e751 Amplimmune (United States)'),
(5352, 'https://ror.org/00dxv3745', 'en', 1, 'https://ror.org/00dxv3745 Hernia Center'),
(5353, 'https://ror.org/00dym4p25', 'no_lang_code', 1, 'https://ror.org/00dym4p25 Hsiri Therapeutics (United States)'),
(5354, 'https://ror.org/00e2hg029', 'no_lang_code', 1, 'https://ror.org/00e2hg029 Sterling Research Group (United States)'),
(5355, 'https://ror.org/00e30t131', 'no_lang_code', 1, 'https://ror.org/00e30t131 Rowan Williams Davies & Irwin (Canada)'),
(5356, 'https://ror.org/00e476874', 'en', 1, 'https://ror.org/00e476874 Agile Mind'),
(5357, 'https://ror.org/00e4xmg89', 'en', 1, 'https://ror.org/00e4xmg89 Hipple Cancer Research Center'),
(5358, 'https://ror.org/00e60hf45', 'en', 1, 'https://ror.org/00e60hf45 OspidƩal Naomh Damhnait St. Davnet''s Hospital'),
(5359, 'https://ror.org/00e6gd695', 'en', 1, 'https://ror.org/00e6gd695 Arapahoe House'),
(5360, 'https://ror.org/00e812q49', 'no_lang_code', 1, 'https://ror.org/00e812q49 Springboard (Canada)'),
(5361, 'https://ror.org/00e8ar137', 'da', 1, 'https://ror.org/00e8ar137 Vejle Hospital Vejle Sygehus'),
(5362, 'https://ror.org/00e8qrd29', 'en', 1, 'https://ror.org/00e8qrd29 Center for Clinical Studies'),
(5363, 'https://ror.org/00edt5124', 'it', 1, 'https://ror.org/00edt5124 Ospedale degli Infermi'),
(5364, 'https://ror.org/00edzwq44', 'en', 1, 'https://ror.org/00edzwq44 Academy of Radiology Research'),
(5365, 'https://ror.org/00efy1453', 'en', 1, 'https://ror.org/00efy1453 Chief Dull Knife College'),
(5366, 'https://ror.org/00eg81h43', 'en', 1, 'https://ror.org/00eg81h43 Institute of Physiology and Pathology of Hearing'),
(5367, 'https://ror.org/00ejq5880', 'no_lang_code', 1, 'https://ror.org/00ejq5880 BioMedomics (United States)'),
(5368, 'https://ror.org/00eksk721', 'en', 1, 'https://ror.org/00eksk721 National Environmental Health Association'),
(5369, 'https://ror.org/00ekxed29', 'no_lang_code', 1, 'https://ror.org/00ekxed29 Horizon Research (United States)'),
(5370, 'https://ror.org/00em27a94', 'pt', 1, 'https://ror.org/00em27a94 Instituto de Infectologia EmĆ­lio Ribas'),
(5371, 'https://ror.org/00epxwq78', 'en', 1, 'https://ror.org/00epxwq78 Hamilton Regional Laboratory Medicine Program'),
(5372, 'https://ror.org/00eqjxv60', 'no_lang_code', 1, 'https://ror.org/00eqjxv60 Capital Consulting Corporation (United States)'),
(5373, 'https://ror.org/00er70d66', 'en', 1, 'https://ror.org/00er70d66 Center for Complex Infectious Diseases'),
(5374, 'https://ror.org/00erg1394', 'en', 1, 'https://ror.org/00erg1394 National Audit Office'),
(5375, 'https://ror.org/00es7k954', 'en', 1, 'https://ror.org/00es7k954 Columbia College - South Carolina'),
(5376, 'https://ror.org/00et2zw97', 'en', 1, 'https://ror.org/00et2zw97 Matsumoto Livestock Hygiene Service Center'),
(5377, 'https://ror.org/00evjd729', 'en', 1, 'https://ror.org/00evjd729 Australian Red Cross Lifeblood'),
(5378, 'https://ror.org/00ew1b528', 'no_lang_code', 1, 'https://ror.org/00ew1b528 MycoLogic (Canada)'),
(5379, 'https://ror.org/00exr1241', 'en', 1, 'https://ror.org/00exr1241 Joint Center for Structural Genomics'),
(5380, 'https://ror.org/00f1vw968', 'en', 1, 'https://ror.org/00f1vw968 KentuckyOne Health'),
(5381, 'https://ror.org/00f419y92', 'en', 1, 'https://ror.org/00f419y92 St. Luke''s Cataract and Laser Institute'),
(5382, 'https://ror.org/00f4akz96', 'no_lang_code', 1, 'https://ror.org/00f4akz96 NVE Corporation (United States)'),
(5383, 'https://ror.org/00f54ay49', 'en', 1, 'https://ror.org/00f54ay49 Wakefield Hospital'),
(5384, 'https://ror.org/00f5bva59', 'en', 1, 'https://ror.org/00f5bva59 Swedish Medical Center'),
(5385, 'https://ror.org/00f8dwt44', 'en', 1, 'https://ror.org/00f8dwt44 Institute of Electrochemistry and Energy Systems Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠµŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŃ Šø енергийни системи'),
(5386, 'https://ror.org/00fb35g87', 'en', 1, 'https://ror.org/00fb35g87 Third Affiliated Hospital of Guangzhou Medical University å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø‰åŒ»é™¢'),
(5387, 'https://ror.org/00fby7m68', 'no_lang_code', 1, 'https://ror.org/00fby7m68 Air Canada'),
(5388, 'https://ror.org/00fcszb13', 'no_lang_code', 1, 'https://ror.org/00fcszb13 Pacific Biosciences (United States)'),
(5389, 'https://ror.org/00fd3za45', 'no_lang_code', 1, 'https://ror.org/00fd3za45 Adif (Spain)'),
(5390, 'https://ror.org/00fd7nh45', 'no_lang_code', 1, 'https://ror.org/00fd7nh45 Yecuris (United States)'),
(5391, 'https://ror.org/00fh58138', 'fr', 1, 'https://ror.org/00fh58138 Institut National de la Transfusion Sanguine National Institute of Blood Transfusion'),
(5392, 'https://ror.org/00fjz2j91', 'en', 1, 'https://ror.org/00fjz2j91 Christian Community Health Center'),
(5393, 'https://ror.org/00fm8vh73', 'no_lang_code', 1, 'https://ror.org/00fm8vh73 GigaGen (United States)'),
(5394, 'https://ror.org/00fnk0q46', 'en', 1, 'https://ror.org/00fnk0q46 Academy of Medicine'),
(5395, 'https://ror.org/00fpn0e94', 'sr', 1, 'https://ror.org/00fpn0e94 Clinical Center of Vojvodina Klinički centar Vojvodine'),
(5396, 'https://ror.org/00fq5cm18', 'en', 1, 'https://ror.org/00fq5cm18 National Institute on Drug Abuse'),
(5397, 'https://ror.org/00fre7r52', 'en', 1, 'https://ror.org/00fre7r52 Community Health Awareness Group'),
(5398, 'https://ror.org/00frfm169', 'no_lang_code', 1, 'https://ror.org/00frfm169 Woomera Therapeutics'),
(5399, 'https://ror.org/00frst980', 'en', 1, 'https://ror.org/00frst980 University of British Columbia Hospital'),
(5400, 'https://ror.org/00frzd868', 'en', 1, 'https://ror.org/00frzd868 St. Francis Hospital'),
(5401, 'https://ror.org/00fs7vk14', 'en', 1, 'https://ror.org/00fs7vk14 Consorzio TRAIN TRAIN Consortium'),
(5402, 'https://ror.org/00fsrkw38', 'es', 1, 'https://ror.org/00fsrkw38 Hospital Quirón Teknon'),
(5403, 'https://ror.org/00ftam505', 'en', 1, 'https://ror.org/00ftam505 Newcastle City Council'),
(5404, 'https://ror.org/00ftv8552', 'en', 1, 'https://ror.org/00ftv8552 Center for Research in Environmental Epidemiology Centro de Investigación en Epidemiología Ambiental'),
(5405, 'https://ror.org/00fyk6p56', 'no_lang_code', 1, 'https://ror.org/00fyk6p56 Moberg Research (United States)'),
(5406, 'https://ror.org/00fzfzc37', 'en', 1, 'https://ror.org/00fzfzc37 Manchester VA Medical Center'),
(5407, 'https://ror.org/00g0avy67', 'no_lang_code', 1, 'https://ror.org/00g0avy67 WinProbe (United States)'),
(5408, 'https://ror.org/00g1g7t14', 'en', 1, 'https://ror.org/00g1g7t14 PHS Commissioned Officers Foundation'),
(5409, 'https://ror.org/00g2tkw06', 'no_lang_code', 1, 'https://ror.org/00g2tkw06 Ford Motor Company (United States)'),
(5410, 'https://ror.org/00g2vje79', 'no_lang_code', 1, 'https://ror.org/00g2vje79 Cornerstone Systems Northwest (United States)'),
(5411, 'https://ror.org/00g3gq507', 'no_lang_code', 1, 'https://ror.org/00g3gq507 Taiga Biotechnologies (United States)'),
(5412, 'https://ror.org/00g3wz802', 'no_lang_code', 1, 'https://ror.org/00g3wz802 Front Range Scientific Computations'),
(5413, 'https://ror.org/00g3zjf64', 'en', 1, 'https://ror.org/00g3zjf64 Texas Endosurgery Institute'),
(5414, 'https://ror.org/00g4tw789', 'en', 1, 'https://ror.org/00g4tw789 Hughston Clinic'),
(5415, 'https://ror.org/00g5b0g93', 'en', 1, 'https://ror.org/00g5b0g93 Zunyi Medical University 遵义医学院'),
(5416, 'https://ror.org/00g6vqe09', 'no_lang_code', 1, 'https://ror.org/00g6vqe09 Asuragen (United States)'),
(5417, 'https://ror.org/00g6ztp19', 'en', 1, 'https://ror.org/00g6ztp19 Calgary Laboratory Services'),
(5418, 'https://ror.org/00g741v42', 'en', 1, 'https://ror.org/00g741v42 Gansu University of Traditional Chinese Medicine ē”˜č‚ƒäø­åŒ»å­¦é™¢'),
(5419, 'https://ror.org/00g81mg52', 'no_lang_code', 1, 'https://ror.org/00g81mg52 Columbus Technologies and Services (United States)'),
(5420, 'https://ror.org/00gb8td65', 'no_lang_code', 1, 'https://ror.org/00gb8td65 Y Touring Theatre Company'),
(5421, 'https://ror.org/00gban551', 'en', 1, 'https://ror.org/00gban551 Biomedical Research Foundation of the Academy of Athens'),
(5422, 'https://ror.org/00gbb9377', 'en', 1, 'https://ror.org/00gbb9377 National Center on Institutions and Alternatives'),
(5423, 'https://ror.org/00geypp27', 'no_lang_code', 1, 'https://ror.org/00geypp27 Novartis (France)'),
(5424, 'https://ror.org/00gf2nq54', 'no_lang_code', 1, 'https://ror.org/00gf2nq54 Nordic Life Science Pipeline (Canada)'),
(5425, 'https://ror.org/00gft1871', 'no_lang_code', 1, 'https://ror.org/00gft1871 Therapyx (United States)'),
(5426, 'https://ror.org/00gfv6v51', 'sk', 1, 'https://ror.org/00gfv6v51 NÔrodný Onkologický Ústav'),
(5427, 'https://ror.org/00gg4aq64', 'fr', 1, 'https://ror.org/00gg4aq64 Centre Hospitalier FrĆØderic-Henri ManhĆØs'),
(5428, 'https://ror.org/00gkheh82', 'it', 1, 'https://ror.org/00gkheh82 Ospedale regionale di Lugano'),
(5429, 'https://ror.org/00gktjq65', 'en', 1, 'https://ror.org/00gktjq65 National Institute of Cardiovascular Diseases'),
(5430, 'https://ror.org/00gmz2d02', 'en', 1, 'https://ror.org/00gmz2d02 Institute of Chemical Biology and Fundamental Medicine Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической биологии Šø Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(5431, 'https://ror.org/00gpcjc06', 'no_lang_code', 1, 'https://ror.org/00gpcjc06 Malesci (Italy)'),
(5432, 'https://ror.org/00gqjdp23', 'en', 1, 'https://ror.org/00gqjdp23 Oita Red Cross Hospital å¤§åˆ†čµ¤åå­—ē—…é™¢'),
(5433, 'https://ror.org/00gs35582', 'en', 1, 'https://ror.org/00gs35582 Valencian Infertility Institute'),
(5434, 'https://ror.org/00gwpva83', 'en', 1, 'https://ror.org/00gwpva83 Progress Educational Trust'),
(5435, 'https://ror.org/00gygcg63', 'en', 1, 'https://ror.org/00gygcg63 East Bay Community Recovery Project'),
(5436, 'https://ror.org/00gzhq402', 'no_lang_code', 1, 'https://ror.org/00gzhq402 Fugro (United States)'),
(5437, 'https://ror.org/00h0zmy35', 'en', 1, 'https://ror.org/00h0zmy35 Bienestar'),
(5438, 'https://ror.org/00h1gfz86', 'nl', 1, 'https://ror.org/00h1gfz86 AZ Klina'),
(5439, 'https://ror.org/00h2tq173', 'no_lang_code', 1, 'https://ror.org/00h2tq173 Swami Vivekananda Yoga Anusandhana Samsthana'),
(5440, 'https://ror.org/00h74hd82', 'en', 1, 'https://ror.org/00h74hd82 Denver Center for the Performing Arts'),
(5441, 'https://ror.org/00h7p4v21', 'en', 1, 'https://ror.org/00h7p4v21 Sri Jayadeva Institute of Cardiovascular Sciences and Research'),
(5442, 'https://ror.org/00h8z3z59', 'en', 1, 'https://ror.org/00h8z3z59 Hispanic Association of Colleges and Universities'),
(5443, 'https://ror.org/00h92yy88', 'no_lang_code', 1, 'https://ror.org/00h92yy88 Arrayomics (United States)'),
(5444, 'https://ror.org/00hcz6468', 'en', 1, 'https://ror.org/00hcz6468 Toyota Memorial Hospital ćƒˆćƒØć‚æčØ˜åæµē—…é™¢'),
(5445, 'https://ror.org/00hezqs33', 'no_lang_code', 1, 'https://ror.org/00hezqs33 Film and Video Umbrella (United Kingdom)'),
(5446, 'https://ror.org/00hf0cm69', 'no_lang_code', 1, 'https://ror.org/00hf0cm69 Adherent Technologies (United States)'),
(5447, 'https://ror.org/00hh31m68', 'no_lang_code', 1, 'https://ror.org/00hh31m68 Advanced Mechanical Technology (United States)'),
(5448, 'https://ror.org/00hm77b03', 'en', 1, 'https://ror.org/00hm77b03 Community College of Philadelphia'),
(5449, 'https://ror.org/00hnd8b56', 'no_lang_code', 1, 'https://ror.org/00hnd8b56 Applied Research Corporation (United States)'),
(5450, 'https://ror.org/00hntwx50', 'en', 1, 'https://ror.org/00hntwx50 Seattle Central College'),
(5451, 'https://ror.org/00hp40m78', 'no_lang_code', 1, 'https://ror.org/00hp40m78 AAC (United States)'),
(5452, 'https://ror.org/00hq79z10', 'no_lang_code', 1, 'https://ror.org/00hq79z10 Tianjin Nankai Hospital å¤©ę“„åø‚å—å¼€åŒ»é™¢'),
(5453, 'https://ror.org/00hq8sy61', 'en', 1, 'https://ror.org/00hq8sy61 National Institute for Children’s Health Quality'),
(5454, 'https://ror.org/00hr54p22', 'en', 1, 'https://ror.org/00hr54p22 Osmania Medical College Ų¹Ų«Ł…Ų§Ł†ŪŒŪ Ł…ŪŒŚˆŪŒŚ©Ł„ کالج ą°‰ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ ą°®ą±†ą°”ą°æą°•ą°²ą± ą°•ą°¾ą°²ą±‡ą°œą±€'),
(5455, 'https://ror.org/00hr6kp69', 'en', 1, 'https://ror.org/00hr6kp69 Emory Eye Center'),
(5456, 'https://ror.org/00hr74637', 'no_lang_code', 1, 'https://ror.org/00hr74637 Science Approach (United States)'),
(5457, 'https://ror.org/00hssfx27', 'no_lang_code', 1, 'https://ror.org/00hssfx27 Biothermal (United States)'),
(5458, 'https://ror.org/00ht01r58', 'no_lang_code', 1, 'https://ror.org/00ht01r58 Wave 80 Biosciences (United States)'),
(5459, 'https://ror.org/00ht2ab73', 'fr', 1, 'https://ror.org/00ht2ab73 Association Nationale de la Recherche et de la Technologie'),
(5460, 'https://ror.org/00hveka38', 'en', 1, 'https://ror.org/00hveka38 Paine College'),
(5461, 'https://ror.org/00hx3bk50', 'no_lang_code', 1, 'https://ror.org/00hx3bk50 Icogenex (United States)'),
(5462, 'https://ror.org/00hy18g46', 'no_lang_code', 1, 'https://ror.org/00hy18g46 DEKK-TEC (United States)'),
(5463, 'https://ror.org/00hyyhz65', 'no_lang_code', 1, 'https://ror.org/00hyyhz65 Source Signal Imaging'),
(5464, 'https://ror.org/00j0kxp54', 'en', 1, 'https://ror.org/00j0kxp54 Russian Academy of Natural Sciences'),
(5465, 'https://ror.org/00j10x245', 'no_lang_code', 1, 'https://ror.org/00j10x245 Plastic Logic (United Kingdom)'),
(5466, 'https://ror.org/00j10yp83', 'en', 1, 'https://ror.org/00j10yp83 Rural Alaska Community Action Program'),
(5467, 'https://ror.org/00j161312', 'en', 1, 'https://ror.org/00j161312 Guy''s and St Thomas'' NHS Foundation Trust'),
(5468, 'https://ror.org/00j1c3r46', 'no_lang_code', 1, 'https://ror.org/00j1c3r46 Optym (United States)'),
(5469, 'https://ror.org/00j1e7h38', 'en', 1, 'https://ror.org/00j1e7h38 W. Alton Jones Cell Science Center'),
(5470, 'https://ror.org/00j1y9t40', 'fr', 1, 'https://ror.org/00j1y9t40 Laboratoire d''Enzymologie et Biochimie Structurales'),
(5471, 'https://ror.org/00j2t0g84', 'no_lang_code', 1, 'https://ror.org/00j2t0g84 TMD Technologies (United Kingdom)'),
(5472, 'https://ror.org/00j349n10', 'no_lang_code', 1, 'https://ror.org/00j349n10 GlySens (United States)'),
(5473, 'https://ror.org/00j49rw24', 'en', 1, 'https://ror.org/00j49rw24 LRS Institute of Tuberculosis and Respiratory Diseases'),
(5474, 'https://ror.org/00j631389', 'en', 1, 'https://ror.org/00j631389 New World Laboratories'),
(5475, 'https://ror.org/00j6a4d92', 'en', 1, 'https://ror.org/00j6a4d92 Conseil EuropƩen des FƩdƩrations de l''Industrie Chimique European Chemical Industry Council'),
(5476, 'https://ror.org/00j707644', 'it', 1, 'https://ror.org/00j707644 Azienda Ospedaliera San Camillo-Forlanini, Ospedale Carlo Forlanini'),
(5477, 'https://ror.org/00j83wy46', 'no_lang_code', 1, 'https://ror.org/00j83wy46 Monsanto (United States)'),
(5478, 'https://ror.org/00j998b38', 'no_lang_code', 1, 'https://ror.org/00j998b38 GT Advanced Technologies (United States)'),
(5479, 'https://ror.org/00j99af28', 'no_lang_code', 1, 'https://ror.org/00j99af28 Metabolic Technologies (United States)'),
(5480, 'https://ror.org/00j9wfd65', 'no_lang_code', 1, 'https://ror.org/00j9wfd65 KGL Skin Study Center'),
(5481, 'https://ror.org/00ja2ye75', 'en', 1, 'https://ror.org/00ja2ye75 Salisbury NHS Foundation Trust'),
(5482, 'https://ror.org/00jb1kj74', 'no_lang_code', 1, 'https://ror.org/00jb1kj74 Sensonics International (United States)'),
(5483, 'https://ror.org/00jbqdn84', 'en', 1, 'https://ror.org/00jbqdn84 Oglala Sioux Tribal Council'),
(5484, 'https://ror.org/00jc2kw33', 'en', 1, 'https://ror.org/00jc2kw33 National Center for Environmental Health'),
(5485, 'https://ror.org/00jc42j13', 'en', 1, 'https://ror.org/00jc42j13 Mississippi Sports Medicine and Orthopaedic Center'),
(5486, 'https://ror.org/00jg79r23', 'no_lang_code', 1, 'https://ror.org/00jg79r23 Information Ventures (United States)'),
(5487, 'https://ror.org/00jh0pg84', 'en', 1, 'https://ror.org/00jh0pg84 Algebra Project'),
(5488, 'https://ror.org/00jjs7680', 'en', 1, 'https://ror.org/00jjs7680 New Mexico Clinical Research & Osteoporosis Center'),
(5489, 'https://ror.org/00jm9xh53', 'no_lang_code', 1, 'https://ror.org/00jm9xh53 Otsu Municipal Hospital 大擄市民病院'),
(5490, 'https://ror.org/00jse8x38', 'en', 1, 'https://ror.org/00jse8x38 National Quality Forum'),
(5491, 'https://ror.org/00jshg714', 'de', 1, 'https://ror.org/00jshg714 Klinikum Aschaffenburg'),
(5492, 'https://ror.org/00jtgnb29', 'en', 1, 'https://ror.org/00jtgnb29 American Board of Internal Medicine'),
(5493, 'https://ror.org/00jtwsb29', 'en', 1, 'https://ror.org/00jtwsb29 Suburban Hospital'),
(5494, 'https://ror.org/00jvgqq49', 'no_lang_code', 1, 'https://ror.org/00jvgqq49 Flexion Therapeutics (United States)'),
(5495, 'https://ror.org/00jx6qy10', 'en', 1, 'https://ror.org/00jx6qy10 Maulana Azad Institute of Dental Sciences'),
(5496, 'https://ror.org/00jz53350', 'no_lang_code', 1, 'https://ror.org/00jz53350 Centurion Biofuels (Canada)'),
(5497, 'https://ror.org/00k0t0t25', 'en', 1, 'https://ror.org/00k0t0t25 BC Centre for Aquatic Health Sciences'),
(5498, 'https://ror.org/00k0w7368', 'en', 1, 'https://ror.org/00k0w7368 Cooper Clinic'),
(5499, 'https://ror.org/00k1mwv09', 'en', 1, 'https://ror.org/00k1mwv09 United States Congress'),
(5500, 'https://ror.org/00k20np13', 'en', 1, 'https://ror.org/00k20np13 Austin Diagnostic Clinic'),
(5501, 'https://ror.org/00k4ab982', 'en', 1, 'https://ror.org/00k4ab982 Dr. Bhim Rao Ambedkar University'),
(5502, 'https://ror.org/00k59n723', 'en', 1, 'https://ror.org/00k59n723 South Dakota Academy of Science'),
(5503, 'https://ror.org/00k5k8k03', 'no_lang_code', 1, 'https://ror.org/00k5k8k03 Tianjin Tianhe Hospital å¤©ę“„åø‚å¤©å’ŒåŒ»é™¢'),
(5504, 'https://ror.org/00k6r3f30', 'pt', 1, 'https://ror.org/00k6r3f30 Centro Hospitalar de Lisboa Central'),
(5505, 'https://ror.org/00k7h5c65', 'es', 1, 'https://ror.org/00k7h5c65 Instituto Nacional de Investigaciones Nucleares'),
(5506, 'https://ror.org/00k7znw93', 'no_lang_code', 1, 'https://ror.org/00k7znw93 5T Torino (Italy)'),
(5507, 'https://ror.org/00k8s2y27', 'en', 1, 'https://ror.org/00k8s2y27 Huntingdon College'),
(5508, 'https://ror.org/00kar4g50', 'fr', 1, 'https://ror.org/00kar4g50 Agence de MƩdecine PrƩventive'),
(5509, 'https://ror.org/00kb4qb80', 'en', 1, 'https://ror.org/00kb4qb80 Ogori Daiichi General Hospital å°éƒ”ē¬¬äø€ē·åˆē—…é™¢'),
(5510, 'https://ror.org/00ke7zh37', 'en', 1, 'https://ror.org/00ke7zh37 American Federation of Mineralogical Societies'),
(5511, 'https://ror.org/00kftxm09', 'en', 1, 'https://ror.org/00kftxm09 Boreskov Institute of Catalysis, Institute of Catalysis Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ катализа им. Š“.К. Борескова Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(5512, 'https://ror.org/00kh6pc76', 'it', 1, 'https://ror.org/00kh6pc76 Consorzio Venezia Ricerche'),
(5513, 'https://ror.org/00kjr3917', 'en', 1, 'https://ror.org/00kjr3917 Ideon Science Park'),
(5514, 'https://ror.org/00kkwkq76', 'no_lang_code', 1, 'https://ror.org/00kkwkq76 Pfizer (Sweden)');
INSERT INTO `rors` VALUES
(5515, 'https://ror.org/00kn43d12', 'en', 1, 'https://ror.org/00kn43d12 National Centre for Research'),
(5516, 'https://ror.org/00kpnax84', 'no_lang_code', 1, 'https://ror.org/00kpnax84 Heska (United States)'),
(5517, 'https://ror.org/00kq7a553', 'en', 1, 'https://ror.org/00kq7a553 Finlay Institute'),
(5518, 'https://ror.org/00ks5vt51', 'no_lang_code', 1, 'https://ror.org/00ks5vt51 ABB (Switzerland)'),
(5519, 'https://ror.org/00ktagp72', 'no_lang_code', 1, 'https://ror.org/00ktagp72 Seralogix (United States)'),
(5520, 'https://ror.org/00kv21794', 'en', 1, 'https://ror.org/00kv21794 Weil Institute of Critical Care Medicine'),
(5521, 'https://ror.org/00kv87w35', 'it', 1, 'https://ror.org/00kv87w35 Istituto Nazionale per le Malattie Infettive Lazzaro Spallanzani'),
(5522, 'https://ror.org/00kv9mr92', 'no_lang_code', 1, 'https://ror.org/00kv9mr92 Tri Y Environmental Research Institute (Canada)'),
(5523, 'https://ror.org/00kvx4h58', 'en', 1, 'https://ror.org/00kvx4h58 Council on Social Work Education'),
(5524, 'https://ror.org/00kx3fw88', 'es', 1, 'https://ror.org/00kx3fw88 Instituto Valenciano de Investigaciones Agrarias'),
(5525, 'https://ror.org/00ky71f04', 'en', 1, 'https://ror.org/00ky71f04 Clinical Orthopaedics and Related Research'),
(5526, 'https://ror.org/00kyj7k59', 'en', 1, 'https://ror.org/00kyj7k59 Fondation de recherches sur les blessures de la route Traffic Injury Research Foundation'),
(5527, 'https://ror.org/00kz7vp63', 'en', 1, 'https://ror.org/00kz7vp63 Cincinnati Museum Center'),
(5528, 'https://ror.org/00kzzgw26', 'en', 1, 'https://ror.org/00kzzgw26 Kennedy Center'),
(5529, 'https://ror.org/00m129932', 'en', 1, 'https://ror.org/00m129932 Center for Research and Technology Thessaly'),
(5530, 'https://ror.org/00m2wsh37', 'no_lang_code', 1, 'https://ror.org/00m2wsh37 PricewaterhouseCoopers (Canada)'),
(5531, 'https://ror.org/00m4h6p50', 'en', 1, 'https://ror.org/00m4h6p50 Mental Health Center of Denver'),
(5532, 'https://ror.org/00m79dm66', 'en', 1, 'https://ror.org/00m79dm66 Iona College'),
(5533, 'https://ror.org/00m7zwx79', 'en', 1, 'https://ror.org/00m7zwx79 Trinity Mother Frances Hospitals and Clinics'),
(5534, 'https://ror.org/00m860944', 'en', 1, 'https://ror.org/00m860944 St. Mary''s Hospital'),
(5535, 'https://ror.org/00mamdf13', 'en', 1, 'https://ror.org/00mamdf13 Society for Advancement of Chicanos and Native Americans in Science'),
(5536, 'https://ror.org/00mgp8v69', 'en', 1, 'https://ror.org/00mgp8v69 Carter Center'),
(5537, 'https://ror.org/00mhxn926', 'en', 1, 'https://ror.org/00mhxn926 Comisión para la Seguridad de los Productos de Consumo de los Estados Unidos United States Consumer Product Safety Commission'),
(5538, 'https://ror.org/00mjs6x71', 'no_lang_code', 1, 'https://ror.org/00mjs6x71 Advanced Technology and Research Corporation (United States)'),
(5539, 'https://ror.org/00mktab21', 'no_lang_code', 1, 'https://ror.org/00mktab21 Virtalis (United Kingdom)'),
(5540, 'https://ror.org/00mmdnd52', 'en', 1, 'https://ror.org/00mmdnd52 Applied Computer Security Associates'),
(5541, 'https://ror.org/00mnwwq78', 'en', 1, 'https://ror.org/00mnwwq78 Wheelock College'),
(5542, 'https://ror.org/00mrcjr06', 'en', 1, 'https://ror.org/00mrcjr06 St. Luke''s Hospital'),
(5543, 'https://ror.org/00msb1w96', 'en', 1, 'https://ror.org/00msb1w96 St. Vincent''s Hospital ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ„±ė¹ˆģ„¼ķŠøė³‘ģ›'),
(5544, 'https://ror.org/00msez306', 'no_lang_code', 1, 'https://ror.org/00msez306 Superconductor Technologies (United States)'),
(5545, 'https://ror.org/00mv9dj85', 'en', 1, 'https://ror.org/00mv9dj85 American Academy of Neurology'),
(5546, 'https://ror.org/00mvwb842', 'en', 1, 'https://ror.org/00mvwb842 Neuropsychiatric Research Institute'),
(5547, 'https://ror.org/00mwwa992', 'en', 1, 'https://ror.org/00mwwa992 Warde Medical Laboratory'),
(5548, 'https://ror.org/00mz09160', 'en', 1, 'https://ror.org/00mz09160 Itasca Community College'),
(5549, 'https://ror.org/00mzdcr22', 'no_lang_code', 1, 'https://ror.org/00mzdcr22 Giner (United States)'),
(5550, 'https://ror.org/00n158h85', 'en', 1, 'https://ror.org/00n158h85 American Aging Association'),
(5551, 'https://ror.org/00n208030', 'en', 1, 'https://ror.org/00n208030 St Mary''s University College'),
(5552, 'https://ror.org/00n3egs77', 'en', 1, 'https://ror.org/00n3egs77 Takamatsu Red Cross Hospital é«˜ę¾čµ¤åå­—ē—…é™¢'),
(5553, 'https://ror.org/00n5vrh51', 'no_lang_code', 1, 'https://ror.org/00n5vrh51 Tioma Therapeutics (United States)'),
(5554, 'https://ror.org/00n6jcj93', 'it', 1, 'https://ror.org/00n6jcj93 Centro di Riferimento Oncologico della Basilicata'),
(5555, 'https://ror.org/00n6v1c97', 'no_lang_code', 1, 'https://ror.org/00n6v1c97 Bayer (Belgium)'),
(5556, 'https://ror.org/00n79r507', 'no_lang_code', 1, 'https://ror.org/00n79r507 Ambulatory Monitoring (United States)'),
(5557, 'https://ror.org/00n83m850', 'no_lang_code', 1, 'https://ror.org/00n83m850 EcoSynthetix (Canada)'),
(5558, 'https://ror.org/00n8qbq54', 'no_lang_code', 1, 'https://ror.org/00n8qbq54 Meadowlark Optics (United States)'),
(5559, 'https://ror.org/00nahqd12', 'no_lang_code', 1, 'https://ror.org/00nahqd12 Continental (France)'),
(5560, 'https://ror.org/00nat9r59', 'no_lang_code', 1, 'https://ror.org/00nat9r59 Novozymes (United Kingdom)'),
(5561, 'https://ror.org/00nb5xj61', 'en', 1, 'https://ror.org/00nb5xj61 St. Andrews University'),
(5562, 'https://ror.org/00nb6mq69', 'en', 1, 'https://ror.org/00nb6mq69 Chulabhorn Research Institute ąøŖąø–ąø²ąøšąø±ąø™ąø§ąø“ąøˆąø±ąø¢ąøˆąøøąø¬ąø²ąø ąø£ąø“ą¹Œ'),
(5563, 'https://ror.org/00nbsvd35', 'no_lang_code', 1, 'https://ror.org/00nbsvd35 Vida Health Communications (United States)'),
(5564, 'https://ror.org/00nc89j94', 'en', 1, 'https://ror.org/00nc89j94 Australian Council of Learned Academies'),
(5565, 'https://ror.org/00ncer064', 'en', 1, 'https://ror.org/00ncer064 Women Medical College'),
(5566, 'https://ror.org/00ncfk576', 'en', 1, 'https://ror.org/00ncfk576 Stockholm South General Hospital'),
(5567, 'https://ror.org/00new7409', 'en', 1, 'https://ror.org/00new7409 New York Structural Biology Center'),
(5568, 'https://ror.org/00nf8fy32', 'no_lang_code', 1, 'https://ror.org/00nf8fy32 Yamagata City Hospital Saiseikan å±±å½¢åø‚ē«‹ē—…é™¢ęøˆē”Ÿé¤Ø'),
(5569, 'https://ror.org/00nfck739', 'no_lang_code', 1, 'https://ror.org/00nfck739 Thermo Fisher Scientific (Sweden)'),
(5570, 'https://ror.org/00nh64737', 'no_lang_code', 1, 'https://ror.org/00nh64737 PCAS (Canada)'),
(5571, 'https://ror.org/00nhpk003', 'en', 1, 'https://ror.org/00nhpk003 Mount Auburn Hospital'),
(5572, 'https://ror.org/00nkvag20', 'en', 1, 'https://ror.org/00nkvag20 Discovery Place'),
(5573, 'https://ror.org/00nm4jw86', 'en', 1, 'https://ror.org/00nm4jw86 Benjamin Rose Institute on Aging'),
(5574, 'https://ror.org/00nnh8h94', 'en', 1, 'https://ror.org/00nnh8h94 Red Cross Hospital'),
(5575, 'https://ror.org/00nnyvd56', 'en', 1, 'https://ror.org/00nnyvd56 National Research Institute of Chinese Medicine åœ‹ē«‹äø­åœ‹é†«č—„ē ”ē©¶ę‰€'),
(5576, 'https://ror.org/00np1gf38', 'en', 1, 'https://ror.org/00np1gf38 Philadelphia Fight'),
(5577, 'https://ror.org/00nqqvk19', 'en', 1, 'https://ror.org/00nqqvk19 COMSATS University Islamabad Ś©ŁˆŁ…Ų³Ł¹Ų³ Ų§Ł†Ų³Ł¹ŪŒŁ¹ŪŒŁˆŁ¹ آف Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(5578, 'https://ror.org/00ns8qw04', 'en', 1, 'https://ror.org/00ns8qw04 Pushpawati Singhania Research Institute'),
(5579, 'https://ror.org/00nsrak45', 'no_lang_code', 1, 'https://ror.org/00nsrak45 Edge Enterprises (United States)'),
(5580, 'https://ror.org/00ntawd75', 'no_lang_code', 1, 'https://ror.org/00ntawd75 Aeiforia (Italy)'),
(5581, 'https://ror.org/00nv9r617', 'en', 1, 'https://ror.org/00nv9r617 College of Saint Rose'),
(5582, 'https://ror.org/00nvmqp29', 'no_lang_code', 1, 'https://ror.org/00nvmqp29 PlastiPure (United States)'),
(5583, 'https://ror.org/00nvy8497', 'en', 1, 'https://ror.org/00nvy8497 Australia and New Zealand Dialysis and Transplant Registry'),
(5584, 'https://ror.org/00nxxee52', 'no_lang_code', 1, 'https://ror.org/00nxxee52 HyperMed (United States)'),
(5585, 'https://ror.org/00ny8jb29', 'en', 1, 'https://ror.org/00ny8jb29 Office of the Medical Examiner of Cook County'),
(5586, 'https://ror.org/00p0qk069', 'en', 1, 'https://ror.org/00p0qk069 Center of Technology and Engineering for Nuclear Projects'),
(5587, 'https://ror.org/00p18zw56', 'en', 1, 'https://ror.org/00p18zw56 Alder Hey Children''s NHS Foundation Trust'),
(5588, 'https://ror.org/00p2bvc56', 'no_lang_code', 1, 'https://ror.org/00p2bvc56 Amphora NDT (United Kingdom)'),
(5589, 'https://ror.org/00p2bx870', 'en', 1, 'https://ror.org/00p2bx870 Environment Agency Abu Dhabi Ł‡ŁŠŲ¦Ų© Ų§Ł„ŲØŁŠŲ¦Ų©'),
(5590, 'https://ror.org/00p4dsm08', 'en', 1, 'https://ror.org/00p4dsm08 Virus Unit'),
(5591, 'https://ror.org/00p511b69', 'en', 1, 'https://ror.org/00p511b69 Education Connection'),
(5592, 'https://ror.org/00p7hvr94', 'no_lang_code', 1, 'https://ror.org/00p7hvr94 Agriculture Environmental Renewal Canada (Canada)'),
(5593, 'https://ror.org/00p7krt52', 'it', 1, 'https://ror.org/00p7krt52 Ospedale Civile di Giaveno'),
(5594, 'https://ror.org/00p8tz706', 'en', 1, 'https://ror.org/00p8tz706 Desert Botanical Garden'),
(5595, 'https://ror.org/00p9rsf63', 'no_lang_code', 1, 'https://ror.org/00p9rsf63 Saaten Union (United Kingdom)'),
(5596, 'https://ror.org/00pbdx741', 'en', 1, 'https://ror.org/00pbdx741 Cape Shoulder Institute'),
(5597, 'https://ror.org/00pbjy126', 'no_lang_code', 1, 'https://ror.org/00pbjy126 EDJ Associates'),
(5598, 'https://ror.org/00pfggx80', 'no_lang_code', 1, 'https://ror.org/00pfggx80 Sainsbury''s (United Kingdom)'),
(5599, 'https://ror.org/00pft3n23', 'en', 1, 'https://ror.org/00pft3n23 City of Scientific Research and Technological Applications'),
(5600, 'https://ror.org/00pfvfk73', 'en', 1, 'https://ror.org/00pfvfk73 Delaware Technical Community College'),
(5601, 'https://ror.org/00ph3nz62', 'en', 1, 'https://ror.org/00ph3nz62 Eurotransplant'),
(5602, 'https://ror.org/00phd3t88', 'en', 1, 'https://ror.org/00phd3t88 Northwest Clinical Research Center'),
(5603, 'https://ror.org/00pke8311', 'en', 1, 'https://ror.org/00pke8311 Southern Arizona AIDS Foundation'),
(5604, 'https://ror.org/00pm9hx30', 'pt', 1, 'https://ror.org/00pm9hx30 Faculdade de Medicina de MarĆ­lia Faculty of Medicine of MarĆ­lia'),
(5605, 'https://ror.org/00pmfef67', 'en', 1, 'https://ror.org/00pmfef67 Camden County College'),
(5606, 'https://ror.org/00pmncr36', 'en', 1, 'https://ror.org/00pmncr36 Ohio Dominican University'),
(5607, 'https://ror.org/00pmt4r91', 'en', 1, 'https://ror.org/00pmt4r91 American Educational Research Association'),
(5608, 'https://ror.org/00ppb2x90', 'en', 1, 'https://ror.org/00ppb2x90 Concordia College - Minnesota'),
(5609, 'https://ror.org/00ppq4k21', 'en', 1, 'https://ror.org/00ppq4k21 Society of Toxicology'),
(5610, 'https://ror.org/00pq3bb48', 'no_lang_code', 1, 'https://ror.org/00pq3bb48 Grove Instruments (United States)'),
(5611, 'https://ror.org/00pq96s96', 'en', 1, 'https://ror.org/00pq96s96 UMass Memorial Health Care'),
(5612, 'https://ror.org/00psab413', 'no_lang_code', 1, 'https://ror.org/00psab413 Eli Lilly (United Kingdom)'),
(5613, 'https://ror.org/00pvmkr98', 'en', 1, 'https://ror.org/00pvmkr98 Cornea Research Foundation of America'),
(5614, 'https://ror.org/00pwgnh47', 'en', 1, 'https://ror.org/00pwgnh47 Max Planck Institute of Colloids and Interfaces Max-Planck-Institut für Kolloid- und Grenzflächenforschung'),
(5615, 'https://ror.org/00pwjth19', 'en', 1, 'https://ror.org/00pwjth19 Yukon Kuskokwim Health Corporation'),
(5616, 'https://ror.org/00q0dz713', 'no_lang_code', 1, 'https://ror.org/00q0dz713 TeraView (United Kingdom)'),
(5617, 'https://ror.org/00q0yh079', 'pt', 1, 'https://ror.org/00q0yh079 Institute of Radiation Protection and Dosimetry Instituto de Radioproteção e Dosimetria'),
(5618, 'https://ror.org/00q1c3610', 'en', 1, 'https://ror.org/00q1c3610 Abisko Scientific Research Station'),
(5619, 'https://ror.org/00q2xhk98', 'no_lang_code', 1, 'https://ror.org/00q2xhk98 Murty Pharmaceuticals (United States)'),
(5620, 'https://ror.org/00q2yft10', 'no_lang_code', 1, 'https://ror.org/00q2yft10 Leap of Faith Technologies (United States)'),
(5621, 'https://ror.org/00q3rb237', 'no_lang_code', 1, 'https://ror.org/00q3rb237 Larus Technologies (Canada)'),
(5622, 'https://ror.org/00q545m27', 'no_lang_code', 1, 'https://ror.org/00q545m27 Campden BRI (United Kingdom)'),
(5623, 'https://ror.org/00q5a4y91', 'no_lang_code', 1, 'https://ror.org/00q5a4y91 Innovative Targeting Solutions (Canada)'),
(5624, 'https://ror.org/00q62jx03', 'no_lang_code', 1, 'https://ror.org/00q62jx03 23andMe (United States)'),
(5625, 'https://ror.org/00q67qp92', 'es', 1, 'https://ror.org/00q67qp92 Fundación Cardiovascular de Colombia'),
(5626, 'https://ror.org/00q6hxz03', 'no_lang_code', 1, 'https://ror.org/00q6hxz03 AST Products (United States)'),
(5627, 'https://ror.org/00q72x252', 'en', 1, 'https://ror.org/00q72x252 Committee on Climate Change'),
(5628, 'https://ror.org/00q873a22', 'en', 1, 'https://ror.org/00q873a22 County of Mendocino'),
(5629, 'https://ror.org/00q9afj63', 'no_lang_code', 1, 'https://ror.org/00q9afj63 ARTSCO (United States)'),
(5630, 'https://ror.org/00q9fjw02', 'no_lang_code', 1, 'https://ror.org/00q9fjw02 ECI Biotech (United States)'),
(5631, 'https://ror.org/00qcr4910', 'no_lang_code', 1, 'https://ror.org/00qcr4910 Atkins (United Kingdom)'),
(5632, 'https://ror.org/00qcsrr17', 'en', 1, 'https://ror.org/00qcsrr17 Wilhelminen Hospital Wilhelminenspital'),
(5633, 'https://ror.org/00qd6sx31', 'no_lang_code', 1, 'https://ror.org/00qd6sx31 Orphagen Pharmaceuticals (United States)'),
(5634, 'https://ror.org/00qd89360', 'no_lang_code', 1, 'https://ror.org/00qd89360 PicoCal (United States)'),
(5635, 'https://ror.org/00qed5764', 'en', 1, 'https://ror.org/00qed5764 Plant Biotechnology Institute'),
(5636, 'https://ror.org/00qeks103', 'en', 1, 'https://ror.org/00qeks103 Chris O’Brien Lifehouse'),
(5637, 'https://ror.org/00qfg4234', 'no_lang_code', 1, 'https://ror.org/00qfg4234 Vcom3D (United States)'),
(5638, 'https://ror.org/00qfnf017', 'es', 1, 'https://ror.org/00qfnf017 Colegio de Postgraduados'),
(5639, 'https://ror.org/00qfz3b98', 'no_lang_code', 1, 'https://ror.org/00qfz3b98 Elsoms (United Kingdom)'),
(5640, 'https://ror.org/00qjbvq93', 'no_lang_code', 1, 'https://ror.org/00qjbvq93 Actelion (United States)'),
(5641, 'https://ror.org/00qnxjg67', 'en', 1, 'https://ror.org/00qnxjg67 East Midlands Development Agency'),
(5642, 'https://ror.org/00qp2dq07', 'nl', 1, 'https://ror.org/00qp2dq07 Sticares InterACT'),
(5643, 'https://ror.org/00qprmt30', 'no_lang_code', 1, 'https://ror.org/00qprmt30 Atactic Technologies (United States)'),
(5644, 'https://ror.org/00qq2kd97', 'no_lang_code', 1, 'https://ror.org/00qq2kd97 Mikro Systems (United States)'),
(5645, 'https://ror.org/00qr60202', 'en', 1, 'https://ror.org/00qr60202 New England Aquarium'),
(5646, 'https://ror.org/00qs2ka20', 'en', 1, 'https://ror.org/00qs2ka20 East Los Angeles College'),
(5647, 'https://ror.org/00qsgpr41', 'no_lang_code', 1, 'https://ror.org/00qsgpr41 ElectroChem (United States)'),
(5648, 'https://ror.org/00qszmz13', 'no_lang_code', 1, 'https://ror.org/00qszmz13 Ion Beam Applications (United States)'),
(5649, 'https://ror.org/00qxhe741', 'no_lang_code', 1, 'https://ror.org/00qxhe741 Techshot (United States)'),
(5650, 'https://ror.org/00qxqw753', 'en', 1, 'https://ror.org/00qxqw753 San Mateo County Community College District'),
(5651, 'https://ror.org/00qytmr47', 'no_lang_code', 1, 'https://ror.org/00qytmr47 INC Research (United States)'),
(5652, 'https://ror.org/00qzn0672', 'no_lang_code', 1, 'https://ror.org/00qzn0672 Egis Pharmaceuticals (Hungary)'),
(5653, 'https://ror.org/00r1m3r97', 'no_lang_code', 1, 'https://ror.org/00r1m3r97 Contento Trade (Italy)'),
(5654, 'https://ror.org/00r2h0609', 'en', 1, 'https://ror.org/00r2h0609 Washington County Youth Service Bureau'),
(5655, 'https://ror.org/00r2t6515', 'en', 1, 'https://ror.org/00r2t6515 Baranov Central Institute of Aviation Motor Development Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационного Š¼Š¾Ń‚Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ им. П.И. Баранова'),
(5656, 'https://ror.org/00r3xw008', 'en', 1, 'https://ror.org/00r3xw008 Michigan Headache and Neurological Institute'),
(5657, 'https://ror.org/00r520291', 'en', 1, 'https://ror.org/00r520291 St. Joseph''s Hospital'),
(5658, 'https://ror.org/00r5t2s16', 'en', 1, 'https://ror.org/00r5t2s16 Europdonor Foundation'),
(5659, 'https://ror.org/00r633h38', 'no_lang_code', 1, 'https://ror.org/00r633h38 Centro Radiológico Computarizado Corporació Sanitària (Spain)'),
(5660, 'https://ror.org/00r6a8318', 'en', 1, 'https://ror.org/00r6a8318 Center for Community Alternatives'),
(5661, 'https://ror.org/00r8j9489', 'no_lang_code', 1, 'https://ror.org/00r8j9489 Thales (United Kingdom)'),
(5662, 'https://ror.org/00raa0r66', 'en', 1, 'https://ror.org/00raa0r66 Women''s Hospital'),
(5663, 'https://ror.org/00rbdbh54', 'no_lang_code', 1, 'https://ror.org/00rbdbh54 Orbital Research (United States)'),
(5664, 'https://ror.org/00rbrz089', 'en', 1, 'https://ror.org/00rbrz089 Mental Health Association of Southeastern Pennsylvania'),
(5665, 'https://ror.org/00rch4x96', 'no_lang_code', 1, 'https://ror.org/00rch4x96 ImmunoPrecise (Canada)'),
(5666, 'https://ror.org/00reyxa23', 'no_lang_code', 1, 'https://ror.org/00reyxa23 Cenix BioScience (Germany)'),
(5667, 'https://ror.org/00rfgpg89', 'en', 1, 'https://ror.org/00rfgpg89 Salem Hospital'),
(5668, 'https://ror.org/00rgbr518', 'en', 1, 'https://ror.org/00rgbr518 Miami Dade College'),
(5669, 'https://ror.org/00rhaks72', 'no_lang_code', 1, 'https://ror.org/00rhaks72 Tracer Technologies (United States)'),
(5670, 'https://ror.org/00rjw0467', 'en', 1, 'https://ror.org/00rjw0467 St. Vincent Hospital'),
(5671, 'https://ror.org/00rk1k743', 'en', 1, 'https://ror.org/00rk1k743 Cuban Neuroscience Center'),
(5672, 'https://ror.org/00rkhrg48', 'no_lang_code', 1, 'https://ror.org/00rkhrg48 Synta Pharmaceuticals (United States)'),
(5673, 'https://ror.org/00rpbf348', 'no_lang_code', 1, 'https://ror.org/00rpbf348 Guru Nanak Eye Centre'),
(5674, 'https://ror.org/00rpwqe82', 'no_lang_code', 1, 'https://ror.org/00rpwqe82 NYSERNet (United States)'),
(5675, 'https://ror.org/00rqgsb54', 'no_lang_code', 1, 'https://ror.org/00rqgsb54 Cyberkinetics (United States)'),
(5676, 'https://ror.org/00rqtg495', 'en', 1, 'https://ror.org/00rqtg495 American Association for Dental Research'),
(5677, 'https://ror.org/00rrzkj76', 'no_lang_code', 1, 'https://ror.org/00rrzkj76 Sorbent Technologies (United States)'),
(5678, 'https://ror.org/00rs6n938', 'no_lang_code', 1, 'https://ror.org/00rs6n938 Lockheed Martin (Canada)'),
(5679, 'https://ror.org/00rsqd019', 'no_lang_code', 1, 'https://ror.org/00rsqd019 Toyokawa City Hospital č±Šå·åø‚ę°‘ē—…é™¢'),
(5680, 'https://ror.org/00rt47041', 'no_lang_code', 1, 'https://ror.org/00rt47041 Vidasym (United States)'),
(5681, 'https://ror.org/00s2dqx11', 'en', 1, 'https://ror.org/00s2dqx11 Indian Institute of Horticultural Research'),
(5682, 'https://ror.org/00s3ndx20', 'no_lang_code', 1, 'https://ror.org/00s3ndx20 Innovative Surface Technologies (United States)'),
(5683, 'https://ror.org/00s5h6z84', 'no_lang_code', 1, 'https://ror.org/00s5h6z84 INVIDI Technologies (Canada)'),
(5684, 'https://ror.org/00s5kep86', 'en', 1, 'https://ror.org/00s5kep86 Society for Risk Analysis'),
(5685, 'https://ror.org/00s7dq077', 'en', 1, 'https://ror.org/00s7dq077 Arctic Research Consortium of the United States'),
(5686, 'https://ror.org/00s8bsd30', 'en', 1, 'https://ror.org/00s8bsd30 Via Christi Hospital St. Francis'),
(5687, 'https://ror.org/00s9ea398', 'no_lang_code', 1, 'https://ror.org/00s9ea398 Asahi Chemical & Industry (Japan)'),
(5688, 'https://ror.org/00s9hg791', 'en', 1, 'https://ror.org/00s9hg791 Polisher Research Institute'),
(5689, 'https://ror.org/00s9v1h75', 'en', 1, 'https://ror.org/00s9v1h75 European Centre for Disease Prevention and Control Europeiskt centrum fƶr fƶrebyggande och kontroll av sjukdomar'),
(5690, 'https://ror.org/00sbaqa70', 'en', 1, 'https://ror.org/00sbaqa70 American Urological Association'),
(5691, 'https://ror.org/00sbyns81', 'en', 1, 'https://ror.org/00sbyns81 Miwa Hospital 三輪病院'),
(5692, 'https://ror.org/00scjnx30', 'en', 1, 'https://ror.org/00scjnx30 Theiss Research'),
(5693, 'https://ror.org/00sda2672', 'en', 1, 'https://ror.org/00sda2672 Edward Via College of Osteopathic Medicine'),
(5694, 'https://ror.org/00sdy7y63', 'en', 1, 'https://ror.org/00sdy7y63 Center for Innovative Public Health Research'),
(5695, 'https://ror.org/00sf3p382', 'no_lang_code', 1, 'https://ror.org/00sf3p382 Turner Consulting Group (United States)'),
(5696, 'https://ror.org/00shfde47', 'no_lang_code', 1, 'https://ror.org/00shfde47 Orkla (Sweden)'),
(5697, 'https://ror.org/00shfq002', 'no_lang_code', 1, 'https://ror.org/00shfq002 Syngenta (United States)'),
(5698, 'https://ror.org/00shs7b79', 'en', 1, 'https://ror.org/00shs7b79 Northern Ohio Recovery Association'),
(5699, 'https://ror.org/00shv0x82', 'en', 1, 'https://ror.org/00shv0x82 Deutsches Rheuma-Forschungszentrum Berlin German Rheumatism Research Centre'),
(5700, 'https://ror.org/00shwmt46', 'no_lang_code', 1, 'https://ror.org/00shwmt46 Precision Therapeutics (United States)'),
(5701, 'https://ror.org/00sj7sn30', 'pt', 1, 'https://ror.org/00sj7sn30 Prefeitura da Cidade do Rio de Janeiro'),
(5702, 'https://ror.org/00skncc61', 'en', 1, 'https://ror.org/00skncc61 Institute For Ecology of Industrial Areas Instytut Ekologii Terenów Uprzemysłowionych'),
(5703, 'https://ror.org/00smdp487', 'no_lang_code', 1, 'https://ror.org/00smdp487 Munich Leukemia Laboratory (Germany) Münchner Leukämielabor'),
(5704, 'https://ror.org/00smq1v26', 'en', 1, 'https://ror.org/00smq1v26 Saitama Children''s Medical Center åŸ¼ēŽ‰ēœŒē«‹å°å…åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5705, 'https://ror.org/00sn0hb87', 'no_lang_code', 1, 'https://ror.org/00sn0hb87 Wavetrend (United Kingdom)'),
(5706, 'https://ror.org/00sqdq844', 'en', 1, 'https://ror.org/00sqdq844 National Committee for Quality Assurance'),
(5707, 'https://ror.org/00st10308', 'no_lang_code', 1, 'https://ror.org/00st10308 Behavioral Assessment Incorporation (United States)'),
(5708, 'https://ror.org/00sty4r04', 'no_lang_code', 1, 'https://ror.org/00sty4r04 Colibri Technologies (Canada)'),
(5709, 'https://ror.org/00swfce58', 'it', 1, 'https://ror.org/00swfce58 Ospedale di Rivoli'),
(5710, 'https://ror.org/00swmft88', 'es', 1, 'https://ror.org/00swmft88 Centro Oncológico de Galicia'),
(5711, 'https://ror.org/00t00te02', 'no_lang_code', 1, 'https://ror.org/00t00te02 Ford Motor Company (United Kingdom)'),
(5712, 'https://ror.org/00t0fph81', 'no_lang_code', 1, 'https://ror.org/00t0fph81 HealthSim (United States)'),
(5713, 'https://ror.org/00t0n1q40', 'en', 1, 'https://ror.org/00t0n1q40 National Network of Public Health Institutes'),
(5714, 'https://ror.org/00t0z3q71', 'es', 1, 'https://ror.org/00t0z3q71 Hospital del Tórax Instituto Nacional del Tórax'),
(5715, 'https://ror.org/00t3pr326', 'en', 1, 'https://ror.org/00t3pr326 British Council'),
(5716, 'https://ror.org/00t6e2695', 'no_lang_code', 1, 'https://ror.org/00t6e2695 Emerson (United Kingdom)'),
(5717, 'https://ror.org/00t6yjn93', 'en', 1, 'https://ror.org/00t6yjn93 Africare'),
(5718, 'https://ror.org/00t7c0489', 'en', 1, 'https://ror.org/00t7c0489 Institute for Biological Sciences'),
(5719, 'https://ror.org/00t8kk495', 'hr', 1, 'https://ror.org/00t8kk495 Klinička bolnica "Sveti Duh"'),
(5720, 'https://ror.org/00t8xfq63', 'es', 1, 'https://ror.org/00t8xfq63 Center for Scientific Studies Centro de Estudios CientĆ­ficos'),
(5721, 'https://ror.org/00tb5pg67', 'en', 1, 'https://ror.org/00tb5pg67 Emory Clinic'),
(5722, 'https://ror.org/00tbsgb37', 'no_lang_code', 1, 'https://ror.org/00tbsgb37 PAI Life Sciences (United States)'),
(5723, 'https://ror.org/00tcb9k97', 'en', 1, 'https://ror.org/00tcb9k97 New York Eye and Ear Infirmary'),
(5724, 'https://ror.org/00tct5242', 'no_lang_code', 1, 'https://ror.org/00tct5242 Polaris (United States)'),
(5725, 'https://ror.org/00tdrjp82', 'en', 1, 'https://ror.org/00tdrjp82 Arizona Heart Institute'),
(5726, 'https://ror.org/00tg1mz65', 'en', 1, 'https://ror.org/00tg1mz65 Porter Brook Medical Centre'),
(5727, 'https://ror.org/00tgj2z09', 'en', 1, 'https://ror.org/00tgj2z09 Association of Information Technology Companies of Northern Greece'),
(5728, 'https://ror.org/00tgps059', 'no_lang_code', 1, 'https://ror.org/00tgps059 Novosibirsk Institute of Organic Chemistry Š˜ŃŃ‚Š¾Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń справка ŠŠ˜ŠžŠ„'),
(5729, 'https://ror.org/00tgygn49', 'en', 1, 'https://ror.org/00tgygn49 San Antonio Fighting Back'),
(5730, 'https://ror.org/00thykc36', 'en', 1, 'https://ror.org/00thykc36 American Nurses Credentialing Center'),
(5731, 'https://ror.org/00tjkp068', 'no_lang_code', 1, 'https://ror.org/00tjkp068 SimBiotic Software (United States)'),
(5732, 'https://ror.org/00tqnwm57', 'en', 1, 'https://ror.org/00tqnwm57 Organisation mondiale de la santĆ© World Health Organization - Denmark Š’ŃŠµŠ¼ŠøŃ€Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(5733, 'https://ror.org/00trk2663', 'no_lang_code', 1, 'https://ror.org/00trk2663 PTAC (United States)'),
(5734, 'https://ror.org/00trnhw76', 'en', 1, 'https://ror.org/00trnhw76 Tongde Hospital of Zhejiang Province ęµ™ę±Ÿēœē«‹åŒå¾·åŒ»é™¢'),
(5735, 'https://ror.org/00trw9c49', 'en', 1, 'https://ror.org/00trw9c49 Fraunhofer Institute for Algorithms and Scientific Computing Fraunhofer-Institut für Algorithmen und Wissenschaftliches Rechnen SCAI'),
(5736, 'https://ror.org/00tvt5664', 'en', 1, 'https://ror.org/00tvt5664 Croatian Institute of Transfusion Medicine Hrvatski Zavod za Transfuzijsku Medicinu'),
(5737, 'https://ror.org/00twdh217', 'no_lang_code', 1, 'https://ror.org/00twdh217 Clarovita Nutrition (Canada)'),
(5738, 'https://ror.org/00twjye57', 'en', 1, 'https://ror.org/00twjye57 Rochdale Infirmary'),
(5739, 'https://ror.org/00txp6z67', 'en', 1, 'https://ror.org/00txp6z67 Prairie Agricultural Machinery Institute'),
(5740, 'https://ror.org/00ty4jc02', 'en', 1, 'https://ror.org/00ty4jc02 St. Luke''s Hospital Foundation'),
(5741, 'https://ror.org/00tye4g05', 'en', 1, 'https://ror.org/00tye4g05 Richmond Community College'),
(5742, 'https://ror.org/00tz9e151', 'en', 1, 'https://ror.org/00tz9e151 Bakersfield College'),
(5743, 'https://ror.org/00tzw6r97', 'no_lang_code', 1, 'https://ror.org/00tzw6r97 RC Electronics (United States)'),
(5744, 'https://ror.org/00v1wt879', 'es', 1, 'https://ror.org/00v1wt879 National Transplant Organization Organización Nacional de Trasplantes'),
(5745, 'https://ror.org/00v315t24', 'no_lang_code', 1, 'https://ror.org/00v315t24 Biopsy Sciences (United States)'),
(5746, 'https://ror.org/00v47dk08', 'no_lang_code', 1, 'https://ror.org/00v47dk08 Ebara Hospital ę±äŗ¬éƒ½äæå„åŒ»ē™‚å…¬ē¤¾čåŽŸē—…é™¢'),
(5747, 'https://ror.org/00v47pv90', 'en', 1, 'https://ror.org/00v47pv90 Baptist Health South Florida'),
(5748, 'https://ror.org/00v6jq438', 'no_lang_code', 1, 'https://ror.org/00v6jq438 Cytograft Tissue Engineering (United States)'),
(5749, 'https://ror.org/00v97d044', 'pt', 1, 'https://ror.org/00v97d044 Centre of Studies on Geography and Spatial Planning Centro de Estudos em Geografia e Ordenamento do Territorio'),
(5750, 'https://ror.org/00vade776', 'en', 1, 'https://ror.org/00vade776 Public Health Management Corporation'),
(5751, 'https://ror.org/00vaf6k96', 'en', 1, 'https://ror.org/00vaf6k96 College of Alameda'),
(5752, 'https://ror.org/00vcszp55', 'en', 1, 'https://ror.org/00vcszp55 Arizona Geological Survey'),
(5753, 'https://ror.org/00vcvf072', 'en', 1, 'https://ror.org/00vcvf072 Foundation for Advancements in Science and Education'),
(5754, 'https://ror.org/00vev3847', 'no_lang_code', 1, 'https://ror.org/00vev3847 Marker Gene Technologies (United States)'),
(5755, 'https://ror.org/00vfssf38', 'en', 1, 'https://ror.org/00vfssf38 Franklin County Genealogical & Historical Society'),
(5756, 'https://ror.org/00vfty314', 'en', 1, 'https://ror.org/00vfty314 National Institute of Pathology'),
(5757, 'https://ror.org/00vhf1v57', 'fr', 1, 'https://ror.org/00vhf1v57 Centre Hospitalier Universitaire de Tokoin'),
(5758, 'https://ror.org/00vhfbm88', 'en', 1, 'https://ror.org/00vhfbm88 Edmonds Community College'),
(5759, 'https://ror.org/00vhzxs21', 'no_lang_code', 1, 'https://ror.org/00vhzxs21 Immusoft (United States)'),
(5760, 'https://ror.org/00vj57q03', 'en', 1, 'https://ror.org/00vj57q03 California Western School of Law'),
(5761, 'https://ror.org/00vnwz606', 'en', 1, 'https://ror.org/00vnwz606 Dudley Observatory'),
(5762, 'https://ror.org/00vr3xw76', 'en', 1, 'https://ror.org/00vr3xw76 Laser and Skin Surgery Center of Indiana'),
(5763, 'https://ror.org/00vrgpy91', 'en', 1, 'https://ror.org/00vrgpy91 St. Petersburg College'),
(5764, 'https://ror.org/00vrz7m04', 'no_lang_code', 1, 'https://ror.org/00vrz7m04 Aronora (United States)'),
(5765, 'https://ror.org/00vsmb158', 'sl', 1, 'https://ror.org/00vsmb158 University Rehabilitation Institute Univerzitetni Rehabilitacijski InŔtitut'),
(5766, 'https://ror.org/00vvheq07', 'en', 1, 'https://ror.org/00vvheq07 Community Anti Drug Coalitions of America'),
(5767, 'https://ror.org/00vzqmg54', 'en', 1, 'https://ror.org/00vzqmg54 Elizabeth Glaser Pediatric AIDS Foundation'),
(5768, 'https://ror.org/00w0s7f65', 'no_lang_code', 1, 'https://ror.org/00w0s7f65 Apex Biomedical (United States)'),
(5769, 'https://ror.org/00w1epr46', 'en', 1, 'https://ror.org/00w1epr46 RG Stone Urology & Laparoscopy Hospital ą¤†ą¤°ą¤œą„€ ą¤øą„ą¤Ÿą„‹ą¤Ø ą¤Æą„‚ą¤°ą„‹ą¤²ą„‰ą¤œą„€ और ą¤²ą„ˆą¤Ŗą„ą¤°ą„‹ą¤øą„ą¤•ą„‹ą¤Ŗą„€ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(5770, 'https://ror.org/00w230w05', 'no_lang_code', 1, 'https://ror.org/00w230w05 Vical (United States)'),
(5771, 'https://ror.org/00w2qec28', 'no_lang_code', 1, 'https://ror.org/00w2qec28 6WIND (France)'),
(5772, 'https://ror.org/00w2xsv89', 'no_lang_code', 1, 'https://ror.org/00w2xsv89 Advanced MRI Technologies (United States)'),
(5773, 'https://ror.org/00w3hap50', 'pl', 1, 'https://ror.org/00w3hap50 Institute of Nuclear Chemistry and Technology Instytut Chemii i Techniki Jądrowej'),
(5774, 'https://ror.org/00w3w6d37', 'en', 1, 'https://ror.org/00w3w6d37 Great Lakes Inter Tribal Council'),
(5775, 'https://ror.org/00w4g1w45', 'en', 1, 'https://ror.org/00w4g1w45 Coalition for a Drug Free Hawaii'),
(5776, 'https://ror.org/00w5rhv83', 'en', 1, 'https://ror.org/00w5rhv83 EdLab Group'),
(5777, 'https://ror.org/00w7yp275', 'en', 1, 'https://ror.org/00w7yp275 Mississippi School for Mathematics and Science'),
(5778, 'https://ror.org/00w8fet54', 'no_lang_code', 1, 'https://ror.org/00w8fet54 Kane Biotech (Canada)'),
(5779, 'https://ror.org/00w9zab79', 'en', 1, 'https://ror.org/00w9zab79 New Mexico Resonance'),
(5780, 'https://ror.org/00wbcgc67', 'no_lang_code', 1, 'https://ror.org/00wbcgc67 Johnson Matthey (United States)'),
(5781, 'https://ror.org/00wbv7962', 'no_lang_code', 1, 'https://ror.org/00wbv7962 Environmental Consultants and Contractors'),
(5782, 'https://ror.org/00wc5s136', 'en', 1, 'https://ror.org/00wc5s136 Mount Marty College'),
(5783, 'https://ror.org/00wc6ay63', 'no_lang_code', 1, 'https://ror.org/00wc6ay63 KCI (United States)'),
(5784, 'https://ror.org/00wcjep87', 'no_lang_code', 1, 'https://ror.org/00wcjep87 Genlantis (United States)'),
(5785, 'https://ror.org/00wg15m47', 'no_lang_code', 1, 'https://ror.org/00wg15m47 Menssana Research (United States)'),
(5786, 'https://ror.org/00wg9xe54', 'en', 1, 'https://ror.org/00wg9xe54 Chemical Diversity Research Institute Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Єимического Š Š°Š·Š½Š¾Š¾Š±Ń€Š°Š·ŠøŃ'),
(5787, 'https://ror.org/00wkay776', 'en', 1, 'https://ror.org/00wkay776 Carthage College'),
(5788, 'https://ror.org/00wkf3d94', 'no_lang_code', 1, 'https://ror.org/00wkf3d94 Quintessence Biosciences (United States)'),
(5789, 'https://ror.org/00wph9g26', 'no_lang_code', 1, 'https://ror.org/00wph9g26 Electronic BioSciences (United States)'),
(5790, 'https://ror.org/00wqtx630', 'en', 1, 'https://ror.org/00wqtx630 South Carolina Technical College System'),
(5791, 'https://ror.org/00wrset74', 'no_lang_code', 1, 'https://ror.org/00wrset74 Tejas Networks (India)'),
(5792, 'https://ror.org/00wydxq38', 'pt', 1, 'https://ror.org/00wydxq38 Associacao Protectora dos Diabeticos de Portugal'),
(5793, 'https://ror.org/00x0e3e82', 'fr', 1, 'https://ror.org/00x0e3e82 Institut RƩgional de MƩdecine Physique et de RƩadaptation'),
(5794, 'https://ror.org/00x19de83', 'en', 1, 'https://ror.org/00x19de83 International Centers for Excellence in Research'),
(5795, 'https://ror.org/00x2ve368', 'en', 1, 'https://ror.org/00x2ve368 Tourette Association of America'),
(5796, 'https://ror.org/00x3r9n64', 'en', 1, 'https://ror.org/00x3r9n64 Nezhat Medical Center'),
(5797, 'https://ror.org/00x489z61', 'pt', 1, 'https://ror.org/00x489z61 Instituto GeogrÔfico Português'),
(5798, 'https://ror.org/00x5q3m40', 'fr', 1, 'https://ror.org/00x5q3m40 Institut Calot'),
(5799, 'https://ror.org/00x8ee082', 'it', 1, 'https://ror.org/00x8ee082 Ospedale Civile Edoardo Agnelli'),
(5800, 'https://ror.org/00xa0jd95', 'no_lang_code', 1, 'https://ror.org/00xa0jd95 Oralys (Canada)'),
(5801, 'https://ror.org/00xc08717', 'en', 1, 'https://ror.org/00xc08717 Whitchurch Hospital'),
(5802, 'https://ror.org/00xdqtv86', 'en', 1, 'https://ror.org/00xdqtv86 Association of Health Care Journalists'),
(5803, 'https://ror.org/00xe5zs60', 'en', 1, 'https://ror.org/00xe5zs60 Birmingham Women''s Hospital'),
(5804, 'https://ror.org/00xgvev73', 'es', 1, 'https://ror.org/00xgvev73 Instituto Nacional de Ciencias Médicas y Nutrición Salvador ZubirÔn National Institute of Medical Sciences and Nutrition Salvador ZubirÔn'),
(5805, 'https://ror.org/00xgy0333', 'en', 1, 'https://ror.org/00xgy0333 Tanzania Food and Nutrition Center'),
(5806, 'https://ror.org/00xh1ah97', 'en', 1, 'https://ror.org/00xh1ah97 Child Trends'),
(5807, 'https://ror.org/00xh22n12', 'en', 1, 'https://ror.org/00xh22n12 Czech Environmental Information Agency'),
(5808, 'https://ror.org/00xhxz289', 'en', 1, 'https://ror.org/00xhxz289 American Society for Pharmacology and Experimental Therapeutics'),
(5809, 'https://ror.org/00xkqe770', 'en', 1, 'https://ror.org/00xkqe770 Epsom and St Helier University Hospitals NHS Trust'),
(5810, 'https://ror.org/00xkqq585', 'en', 1, 'https://ror.org/00xkqq585 Our Lady of Lourdes Regional Medical Center'),
(5811, 'https://ror.org/00xms2e58', 'en', 1, 'https://ror.org/00xms2e58 Hudson Valley Regional Emergency Medical Services Council'),
(5812, 'https://ror.org/00xmtrb24', 'no_lang_code', 1, 'https://ror.org/00xmtrb24 LC Resources (United States)'),
(5813, 'https://ror.org/00xpr6w96', 'en', 1, 'https://ror.org/00xpr6w96 Hough Ear Institute'),
(5814, 'https://ror.org/00xspzv28', 'en', 1, 'https://ror.org/00xspzv28 Ohio Department of Agriculture'),
(5815, 'https://ror.org/00xw3wc12', 'no_lang_code', 1, 'https://ror.org/00xw3wc12 RxBio (United States)'),
(5816, 'https://ror.org/00xwgwv92', 'no_lang_code', 1, 'https://ror.org/00xwgwv92 Kelly Services (United States)'),
(5817, 'https://ror.org/00xwww266', 'no_lang_code', 1, 'https://ror.org/00xwww266 Aeon Imaging (United States)'),
(5818, 'https://ror.org/00xx9yn39', 'en', 1, 'https://ror.org/00xx9yn39 Fatima Jinnah Dental College'),
(5819, 'https://ror.org/00xya3a34', 'en', 1, 'https://ror.org/00xya3a34 La SociƩtƩ royale du Canada Royal Society of Canada'),
(5820, 'https://ror.org/00xz1cn67', 'no_lang_code', 1, 'https://ror.org/00xz1cn67 Saiseikai Kumamoto Hospital ęøˆē”Ÿä¼šē†Šęœ¬ē—…é™¢'),
(5821, 'https://ror.org/00xzbkw82', 'en', 1, 'https://ror.org/00xzbkw82 Ohkawara Neurosurgical Hospital å¤§å·åŽŸč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(5822, 'https://ror.org/00y022594', 'en', 1, 'https://ror.org/00y022594 Eye and Ear Foundation'),
(5823, 'https://ror.org/00y112q62', 'en', 1, 'https://ror.org/00y112q62 Wrightington Hospital'),
(5824, 'https://ror.org/00y1ttm22', 'no_lang_code', 1, 'https://ror.org/00y1ttm22 Merck (France)'),
(5825, 'https://ror.org/00y3cpn63', 'en', 1, 'https://ror.org/00y3cpn63 Tachikawa Medical Center ē«‹å·ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(5826, 'https://ror.org/00y93ak93', 'en', 1, 'https://ror.org/00y93ak93 Shepherd University'),
(5827, 'https://ror.org/00yascf89', 'no_lang_code', 1, 'https://ror.org/00yascf89 Intertek (Canada)'),
(5828, 'https://ror.org/00yb09x74', 'en', 1, 'https://ror.org/00yb09x74 Informed Families'),
(5829, 'https://ror.org/00ycg6x55', 'en', 1, 'https://ror.org/00ycg6x55 National Association for Biomedical Research'),
(5830, 'https://ror.org/00yd9m083', 'it', 1, 'https://ror.org/00yd9m083 Istituto Nazionale di Ricerca per gli Alimenti e la Nutrizione'),
(5831, 'https://ror.org/00yeap462', 'en', 1, 'https://ror.org/00yeap462 Research and Productivity Council'),
(5832, 'https://ror.org/00yfcva70', 'en', 1, 'https://ror.org/00yfcva70 AeroSpace and Defence Industries Association of Europe'),
(5833, 'https://ror.org/00yfpz909', 'en', 1, 'https://ror.org/00yfpz909 Unity Health System'),
(5834, 'https://ror.org/00yn4km03', 'en', 1, 'https://ror.org/00yn4km03 Worthing Hospital'),
(5835, 'https://ror.org/00yr70j54', 'en', 1, 'https://ror.org/00yr70j54 Tauranga Hospital'),
(5836, 'https://ror.org/00ys1w968', 'no_lang_code', 1, 'https://ror.org/00ys1w968 AccelLab (Canada)'),
(5837, 'https://ror.org/00ysjm146', 'en', 1, 'https://ror.org/00ysjm146 Mission to the Street for Christ'),
(5838, 'https://ror.org/00yt6w794', 'no_lang_code', 1, 'https://ror.org/00yt6w794 Sierra Nevada Corporation (United States)'),
(5839, 'https://ror.org/00ytr4473', 'no_lang_code', 1, 'https://ror.org/00ytr4473 Opmedic Group (Canada)'),
(5840, 'https://ror.org/00yv3xr02', 'en', 1, 'https://ror.org/00yv3xr02 Ome Municipal General Hospital é’ę¢…åø‚ē«‹ē·åˆē—…é™¢'),
(5841, 'https://ror.org/00yy85n18', 'en', 1, 'https://ror.org/00yy85n18 College of St. Scholastica'),
(5842, 'https://ror.org/00yzb1d91', 'en', 1, 'https://ror.org/00yzb1d91 Wyckoff Heights Medical Center'),
(5843, 'https://ror.org/00yzwgc71', 'en', 1, 'https://ror.org/00yzwgc71 Southern California Coastal Water Research Project'),
(5844, 'https://ror.org/00z0d6447', 'no_lang_code', 1, 'https://ror.org/00z0d6447 Kikkoman (Japan) ć‚­ćƒƒć‚³ćƒ¼ćƒžćƒ³ę Ŗå¼ä¼šē¤¾'),
(5845, 'https://ror.org/00z20c921', 'en', 1, 'https://ror.org/00z20c921 Harper Adams University'),
(5846, 'https://ror.org/00z21v095', 'no_lang_code', 1, 'https://ror.org/00z21v095 Abbott (Canada)'),
(5847, 'https://ror.org/00z7n1h55', 'en', 1, 'https://ror.org/00z7n1h55 State Research Center of Virology and Biotechnology VECTOR Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø Šø биотехнологии Вектор'),
(5848, 'https://ror.org/00z7pm351', 'no_lang_code', 1, 'https://ror.org/00z7pm351 Advanced Photonic Crystals (United States)'),
(5849, 'https://ror.org/00zcam334', 'no_lang_code', 1, 'https://ror.org/00zcam334 Clancy Docwra (United Kingdom)'),
(5850, 'https://ror.org/00zdmbm57', 'no_lang_code', 1, 'https://ror.org/00zdmbm57 Premiere Global Services (United States)'),
(5851, 'https://ror.org/00zerva91', 'en', 1, 'https://ror.org/00zerva91 St. Patrick Hospital'),
(5852, 'https://ror.org/00zgt4y83', 'no_lang_code', 1, 'https://ror.org/00zgt4y83 MetaMedia Training International (United States)'),
(5853, 'https://ror.org/00zn54j08', 'no_lang_code', 1, 'https://ror.org/00zn54j08 Kryton International (Canada)'),
(5854, 'https://ror.org/00zpq6q43', 'no_lang_code', 1, 'https://ror.org/00zpq6q43 SWITCH Materials (Canada)'),
(5855, 'https://ror.org/00zqnhb80', 'no_lang_code', 1, 'https://ror.org/00zqnhb80 Avensys (Canada)'),
(5856, 'https://ror.org/00zrfhe30', 'nl', 1, 'https://ror.org/00zrfhe30 Onze Lieve Vrouwziekenhuis Hospital'),
(5857, 'https://ror.org/00zw6et16', 'en', 1, 'https://ror.org/00zw6et16 Capital Institute of Pediatrics é¦–éƒ½å„æē§‘ē ”ē©¶ę‰€'),
(5858, 'https://ror.org/00zwq4e04', 'en', 1, 'https://ror.org/00zwq4e04 Cope Community Services'),
(5859, 'https://ror.org/00zxfn928', 'no_lang_code', 1, 'https://ror.org/00zxfn928 Gratings Incorporated (United States)'),
(5860, 'https://ror.org/00zzc5439', 'no_lang_code', 1, 'https://ror.org/00zzc5439 Molecular LogiX (United States)'),
(5861, 'https://ror.org/0100f3q33', 'no_lang_code', 1, 'https://ror.org/0100f3q33 Biotest (Germany)'),
(5862, 'https://ror.org/0100fcb78', 'en', 1, 'https://ror.org/0100fcb78 Arapahoe Community College'),
(5863, 'https://ror.org/0100w6230', 'no_lang_code', 1, 'https://ror.org/0100w6230 Alacron (United States)'),
(5864, 'https://ror.org/0102yp030', 'en', 1, 'https://ror.org/0102yp030 College of DuPage'),
(5865, 'https://ror.org/01070pt38', 'fr', 1, 'https://ror.org/01070pt38 City College La CitƩ CollƩgiale'),
(5866, 'https://ror.org/0107hzb54', 'en', 1, 'https://ror.org/0107hzb54 International Craniofacial Institute'),
(5867, 'https://ror.org/0108cpj15', 'en', 1, 'https://ror.org/0108cpj15 High Institute for Education and Research in Transfusion Medicine Ł…ŁˆŲ³Ų³Ł‡ Ų¹Ų§Ł„ŪŒ Ų¢Ł…ŁˆŲ²Ų“ŪŒ و Ł¾Ś˜ŁˆŁ‡Ų“ŪŒ Ų·ŲØ انتقال Ų®ŁˆŁ†'),
(5868, 'https://ror.org/010ab8p65', 'en', 1, 'https://ror.org/010ab8p65 Hopkins Architectes Hopkins Architects'),
(5869, 'https://ror.org/010azec62', 'en', 1, 'https://ror.org/010azec62 Deborah Heart and Lung Center'),
(5870, 'https://ror.org/010bfx043', 'no_lang_code', 1, 'https://ror.org/010bfx043 Conestoga Meat Packers (Canada)'),
(5871, 'https://ror.org/010eax918', 'no_lang_code', 1, 'https://ror.org/010eax918 Syandus (United States)'),
(5872, 'https://ror.org/010ehmn03', 'no_lang_code', 1, 'https://ror.org/010ehmn03 Viocare (United States)'),
(5873, 'https://ror.org/010fbpe82', 'en', 1, 'https://ror.org/010fbpe82 Tianjin Economic-Technological Development Area å¤©ę“„ē»ęµŽęŠ€ęœÆå¼€å‘åŒŗ'),
(5874, 'https://ror.org/010g03x11', 'en', 1, 'https://ror.org/010g03x11 Toronto Public Health'),
(5875, 'https://ror.org/010h0ab29', 'no_lang_code', 1, 'https://ror.org/010h0ab29 Dynamis Pharmaceuticals (United States)'),
(5876, 'https://ror.org/010hx2v28', 'no_lang_code', 1, 'https://ror.org/010hx2v28 Inverness Research (United States)'),
(5877, 'https://ror.org/010k65h15', 'en', 1, 'https://ror.org/010k65h15 Society for Canadian Women in Science and Technology'),
(5878, 'https://ror.org/010pvqx55', 'en', 1, 'https://ror.org/010pvqx55 Danish Institute against Torture'),
(5879, 'https://ror.org/010qwhr53', 'en', 1, 'https://ror.org/010qwhr53 Klinikum Nürnberg Nuremberg Hospital'),
(5880, 'https://ror.org/010r07h95', 'no_lang_code', 1, 'https://ror.org/010r07h95 Halma Water Management (United Kingdom)'),
(5881, 'https://ror.org/010s4nz55', 'en', 1, 'https://ror.org/010s4nz55 York General Hospital'),
(5882, 'https://ror.org/010s5ca44', 'en', 1, 'https://ror.org/010s5ca44 Memphis Fire Services'),
(5883, 'https://ror.org/010thz337', 'en', 1, 'https://ror.org/010thz337 Farmingdale State College'),
(5884, 'https://ror.org/010vbnw08', 'no_lang_code', 1, 'https://ror.org/010vbnw08 Apotex Pharmachem (Canada)'),
(5885, 'https://ror.org/0110df420', 'no_lang_code', 1, 'https://ror.org/0110df420 Aurora Flight Sciences (United States)'),
(5886, 'https://ror.org/0111bj510', 'no_lang_code', 1, 'https://ror.org/0111bj510 Industrial Tomography Systems (United Kingdom)'),
(5887, 'https://ror.org/0111gm575', 'en', 1, 'https://ror.org/0111gm575 Positive Living Society of British Columbia'),
(5888, 'https://ror.org/01132tb14', 'no_lang_code', 1, 'https://ror.org/01132tb14 Cryomagnetics (United States)'),
(5889, 'https://ror.org/0113kt106', 'en', 1, 'https://ror.org/0113kt106 Nine Circles Community Health Centre'),
(5890, 'https://ror.org/01144y654', 'no_lang_code', 1, 'https://ror.org/01144y654 MASSolutions (Canada)'),
(5891, 'https://ror.org/011471042', 'en', 1, 'https://ror.org/011471042 National Institute of Epidemiology'),
(5892, 'https://ror.org/0114c6692', 'no_lang_code', 1, 'https://ror.org/0114c6692 Prediction Sciences (United States)'),
(5893, 'https://ror.org/0115kp792', 'no_lang_code', 1, 'https://ror.org/0115kp792 Aptagen (United States)'),
(5894, 'https://ror.org/0115psh64', 'no_lang_code', 1, 'https://ror.org/0115psh64 MMTC (United States)'),
(5895, 'https://ror.org/0117yy678', 'no_lang_code', 1, 'https://ror.org/0117yy678 BIT-TECH (United States)'),
(5896, 'https://ror.org/011akkh38', 'en', 1, 'https://ror.org/011akkh38 Australian Academy of the Humanities'),
(5897, 'https://ror.org/011cabk38', 'it', 1, 'https://ror.org/011cabk38 Policlinico Umberto I'),
(5898, 'https://ror.org/011e44004', 'en', 1, 'https://ror.org/011e44004 American Planning Association'),
(5899, 'https://ror.org/011hsx378', 'no_lang_code', 1, 'https://ror.org/011hsx378 PortaScience (United States)'),
(5900, 'https://ror.org/011htkb76', 'en', 1, 'https://ror.org/011htkb76 UPMC Health System'),
(5901, 'https://ror.org/011krwa35', 'en', 1, 'https://ror.org/011krwa35 Urology Associates'),
(5902, 'https://ror.org/011mar637', 'en', 1, 'https://ror.org/011mar637 National Cancer Institute of Thailand ąøŖąø–ąø²ąøšąø±ąø™ąø”ąø°ą¹€ąø£ą¹‡ąø‡ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(5903, 'https://ror.org/011ps1s60', 'en', 1, 'https://ror.org/011ps1s60 American College of Healthcare Executives'),
(5904, 'https://ror.org/011qnyz94', 'fr', 1, 'https://ror.org/011qnyz94 CĆ©gep de la GaspĆ©sie et des Ǝles'),
(5905, 'https://ror.org/011ssy811', 'en', 1, 'https://ror.org/011ssy811 International Prevention Research Institute'),
(5906, 'https://ror.org/011t2v902', 'en', 1, 'https://ror.org/011t2v902 Carlow University'),
(5907, 'https://ror.org/011tndv57', 'en', 1, 'https://ror.org/011tndv57 Kentucky Science Center'),
(5908, 'https://ror.org/011vw2696', 'no_lang_code', 1, 'https://ror.org/011vw2696 Geospace Research (United States)'),
(5909, 'https://ror.org/011yp0a52', 'en', 1, 'https://ror.org/011yp0a52 New York Law School'),
(5910, 'https://ror.org/012057720', 'en', 1, 'https://ror.org/012057720 American Legacy Foundation'),
(5911, 'https://ror.org/01220jp31', 'it', 1, 'https://ror.org/01220jp31 IRCCS Policlinico San Donato'),
(5912, 'https://ror.org/012381002', 'en', 1, 'https://ror.org/012381002 Terasaki Foundation'),
(5913, 'https://ror.org/0123zff28', 'en', 1, 'https://ror.org/0123zff28 EMO GVM Centro Cuore Columbus'),
(5914, 'https://ror.org/0124gwh94', 'en', 1, 'https://ror.org/0124gwh94 AgResearch'),
(5915, 'https://ror.org/0125b2w26', 'no_lang_code', 1, 'https://ror.org/0125b2w26 OmegaChem (Canada)'),
(5916, 'https://ror.org/0125vzh18', 'no_lang_code', 1, 'https://ror.org/0125vzh18 Noble (United States)'),
(5917, 'https://ror.org/0128ckf82', 'en', 1, 'https://ror.org/0128ckf82 Ferrum College'),
(5918, 'https://ror.org/012a41834', 'en', 1, 'https://ror.org/012a41834 National Institute of Biological Resources'),
(5919, 'https://ror.org/012c7gx93', 'no_lang_code', 1, 'https://ror.org/012c7gx93 Cerner (United States)'),
(5920, 'https://ror.org/012e11c45', 'no_lang_code', 1, 'https://ror.org/012e11c45 JWK Corporation (United States)'),
(5921, 'https://ror.org/012es9h30', 'no_lang_code', 1, 'https://ror.org/012es9h30 Gradient Lens Corporation (United States)'),
(5922, 'https://ror.org/012fe8h22', 'en', 1, 'https://ror.org/012fe8h22 Neighborhood House'),
(5923, 'https://ror.org/012fsht65', 'no_lang_code', 1, 'https://ror.org/012fsht65 Architecture Technology Corporation (United States)'),
(5924, 'https://ror.org/012kdmp09', 'en', 1, 'https://ror.org/012kdmp09 Opća bolnica Zabok Zabok General Hospital'),
(5925, 'https://ror.org/012khpt30', 'it', 1, 'https://ror.org/012khpt30 Fondazione G.B. Bietti G. B. Bietti Foundation'),
(5926, 'https://ror.org/012mfbs12', 'en', 1, 'https://ror.org/012mfbs12 Bethel College'),
(5927, 'https://ror.org/012p9gs30', 'en', 1, 'https://ror.org/012p9gs30 Santa Fe College'),
(5928, 'https://ror.org/012vsjx26', 'no_lang_code', 1, 'https://ror.org/012vsjx26 Seacoast Science (United States)'),
(5929, 'https://ror.org/012xcvh54', 'fr', 1, 'https://ror.org/012xcvh54 Cegep de Saint Jerome, CƩgep de saint-jƩrƓme Cegep of Saint JƩrƓme'),
(5930, 'https://ror.org/012xhfk02', 'en', 1, 'https://ror.org/012xhfk02 LAM Foundation'),
(5931, 'https://ror.org/012y1mj37', 'en', 1, 'https://ror.org/012y1mj37 Oglala Lakota College'),
(5932, 'https://ror.org/012zm4p89', 'no_lang_code', 1, 'https://ror.org/012zm4p89 Energy Science Laboratories (United States)'),
(5933, 'https://ror.org/01300np05', 'en', 1, 'https://ror.org/01300np05 Tokyo Dental College Ichikawa General Hospital ę±äŗ¬ę­Æē§‘å¤§å­¦ åø‚å·ē·åˆē—…é™¢'),
(5934, 'https://ror.org/0130d0563', 'en', 1, 'https://ror.org/0130d0563 Vaccine Research Institute of San Diego'),
(5935, 'https://ror.org/0130vhy65', 'en', 1, 'https://ror.org/0130vhy65 Biomedical Research and Training Institute'),
(5936, 'https://ror.org/01327qs39', 'en', 1, 'https://ror.org/01327qs39 WestCare Foundation'),
(5937, 'https://ror.org/0132fct87', 'no_lang_code', 1, 'https://ror.org/0132fct87 Air Products (United Kingdom)'),
(5938, 'https://ror.org/0132nee26', 'fr', 1, 'https://ror.org/0132nee26 Institut National d''Oncologie'),
(5939, 'https://ror.org/0132qa516', 'en', 1, 'https://ror.org/0132qa516 Worcester Memorial Hospital'),
(5940, 'https://ror.org/0132ynj18', 'en', 1, 'https://ror.org/0132ynj18 St. Joseph Hospital'),
(5941, 'https://ror.org/0134j7f28', 'no_lang_code', 1, 'https://ror.org/0134j7f28 Orolia (United States)'),
(5942, 'https://ror.org/0135ay670', 'en', 1, 'https://ror.org/0135ay670 Montgomery County Community College'),
(5943, 'https://ror.org/0138w4412', 'en', 1, 'https://ror.org/0138w4412 Russian Research Center for Molecular Diagnostics and Therapy'),
(5944, 'https://ror.org/013aq5m10', 'en', 1, 'https://ror.org/013aq5m10 Dubai Pharmacy College ŁƒŁ„ŁŠŲ© دبي Ł„Ł„ŲµŁŠŲÆŁ„Ų©'),
(5945, 'https://ror.org/013by2m91', 'no_lang_code', 1, 'https://ror.org/013by2m91 Synopsys (United States)'),
(5946, 'https://ror.org/013cpfz63', 'no_lang_code', 1, 'https://ror.org/013cpfz63 Cel-Sci (United States)'),
(5947, 'https://ror.org/013ed7841', 'en', 1, 'https://ror.org/013ed7841 American College of Physician Executives'),
(5948, 'https://ror.org/013hwwd10', 'no_lang_code', 1, 'https://ror.org/013hwwd10 Surgical Specialties (Canada)'),
(5949, 'https://ror.org/013phw743', 'en', 1, 'https://ror.org/013phw743 Council on Competitiveness'),
(5950, 'https://ror.org/013rrw978', 'no_lang_code', 1, 'https://ror.org/013rrw978 Plexon (United States)'),
(5951, 'https://ror.org/013s9ta35', 'en', 1, 'https://ror.org/013s9ta35 Wisconsin Heart Hospital'),
(5952, 'https://ror.org/013t2n957', 'no_lang_code', 1, 'https://ror.org/013t2n957 Perrigo (United States)');
INSERT INTO `rors` VALUES
(5953, 'https://ror.org/013v2jk78', 'en', 1, 'https://ror.org/013v2jk78 American Association of Poison Control Centers'),
(5954, 'https://ror.org/013wkc921', 'it', 1, 'https://ror.org/013wkc921 Istituto Scientifico Romagnolo per lo Studio e la Cura dei Tumori'),
(5955, 'https://ror.org/013xmn143', 'no_lang_code', 1, 'https://ror.org/013xmn143 Baxter (Austria)'),
(5956, 'https://ror.org/013y4v758', 'en', 1, 'https://ror.org/013y4v758 Yokohama City Seibu Hospital'),
(5957, 'https://ror.org/013zb0q67', 'en', 1, 'https://ror.org/013zb0q67 Anixter Center'),
(5958, 'https://ror.org/014142c83', 'en', 1, 'https://ror.org/014142c83 National Institute for Food and Nutrition Science'),
(5959, 'https://ror.org/0141egq93', 'no_lang_code', 1, 'https://ror.org/0141egq93 TRS Technologies (United States)'),
(5960, 'https://ror.org/0141vav06', 'en', 1, 'https://ror.org/0141vav06 WAMC Northeast Public Radio'),
(5961, 'https://ror.org/0144s0951', 'en', 1, 'https://ror.org/0144s0951 Zhejiang Cancer Hospital ęµ™ę±Ÿēœč‚æē˜¤åŒ»é™¢'),
(5962, 'https://ror.org/0144z1077', 'no_lang_code', 1, 'https://ror.org/0144z1077 Iomai (United States)'),
(5963, 'https://ror.org/0145s0423', 'es', 1, 'https://ror.org/0145s0423 Foundation for the Fight against Pediatric Neurological Disease Fundación para la Lucha contra las Enfermedades Neurológicas de la Infancia'),
(5964, 'https://ror.org/0146tpy53', 'en', 1, 'https://ror.org/0146tpy53 Wellmont Health Systems'),
(5965, 'https://ror.org/01479r334', 'en', 1, 'https://ror.org/01479r334 Henan Provincial Center for Disease Control and Prevention ę²³å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(5966, 'https://ror.org/014936814', 'en', 1, 'https://ror.org/014936814 St. Luke''s Hospital Κλινική Άγιος Λουκάς'),
(5967, 'https://ror.org/0149xpj56', 'en', 1, 'https://ror.org/0149xpj56 Midwest Cardiovascular Research Foundation'),
(5968, 'https://ror.org/014a5gx79', 'en', 1, 'https://ror.org/014a5gx79 Departamento de Vivienda y Desarrollo Urbano de los Estados Unidos DĆ©partement du logement et du dĆ©veloppement urbain des Ɖtats-unis United States Department of Housing and Urban Development'),
(5969, 'https://ror.org/014aeyd41', 'no_lang_code', 1, 'https://ror.org/014aeyd41 Asahi Breweries (Japan) ć‚¢ć‚µćƒ’ćƒ“ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(5970, 'https://ror.org/014apwk83', 'es', 1, 'https://ror.org/014apwk83 Instituto de Estudios Avanzados'),
(5971, 'https://ror.org/014bye436', 'no_lang_code', 1, 'https://ror.org/014bye436 Lucerna (United States)'),
(5972, 'https://ror.org/014c2qb55', 'de', 1, 'https://ror.org/014c2qb55 Klinik Hirslanden'),
(5973, 'https://ror.org/014c68a74', 'en', 1, 'https://ror.org/014c68a74 St. Louis VA Medical Center'),
(5974, 'https://ror.org/014dkew11', 'no_lang_code', 1, 'https://ror.org/014dkew11 Environment and Health Group (United States)'),
(5975, 'https://ror.org/014er3x17', 'en', 1, 'https://ror.org/014er3x17 Institute of Particle Physics'),
(5976, 'https://ror.org/014fc7457', 'no_lang_code', 1, 'https://ror.org/014fc7457 PerkinElmer (United Kingdom)'),
(5977, 'https://ror.org/014ft7z36', 'en', 1, 'https://ror.org/014ft7z36 Office of Disease Prevention and Health Promotion'),
(5978, 'https://ror.org/014hs3c68', 'no_lang_code', 1, 'https://ror.org/014hs3c68 Lend Lease (United Kingdom)'),
(5979, 'https://ror.org/014j33z40', 'en', 1, 'https://ror.org/014j33z40 National Hospital Abuja'),
(5980, 'https://ror.org/014jgh757', 'no_lang_code', 1, 'https://ror.org/014jgh757 LAC Group (United States)'),
(5981, 'https://ror.org/014jghh27', 'no_lang_code', 1, 'https://ror.org/014jghh27 Chelsea Technologies (United Kingdom)'),
(5982, 'https://ror.org/014nm9q97', 'no_lang_code', 1, 'https://ror.org/014nm9q97 Sakai Municipal Hospital å ŗåø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5983, 'https://ror.org/014pcm848', 'en', 1, 'https://ror.org/014pcm848 American Society of Nephrology'),
(5984, 'https://ror.org/014qf4206', 'no_lang_code', 1, 'https://ror.org/014qf4206 Gradient (United States)'),
(5985, 'https://ror.org/014t21j89', 'en', 1, 'https://ror.org/014t21j89 Sarah Cannon'),
(5986, 'https://ror.org/014tb3433', 'en', 1, 'https://ror.org/014tb3433 Loma Linda Veterans Association for Research and Education'),
(5987, 'https://ror.org/014tg6596', 'en', 1, 'https://ror.org/014tg6596 Victoria Hospital'),
(5988, 'https://ror.org/014tted12', 'no_lang_code', 1, 'https://ror.org/014tted12 Systems Control (United States)'),
(5989, 'https://ror.org/014vawd53', 'en', 1, 'https://ror.org/014vawd53 Genesis Laboratories'),
(5990, 'https://ror.org/014xba990', 'no_lang_code', 1, 'https://ror.org/014xba990 Ateliers Nic. Georges (Luxembourg)'),
(5991, 'https://ror.org/014y9yf82', 'no_lang_code', 1, 'https://ror.org/014y9yf82 Compuware (United States)'),
(5992, 'https://ror.org/014yznv62', 'no_lang_code', 1, 'https://ror.org/014yznv62 TiNi Alloy (United States)'),
(5993, 'https://ror.org/014ztwb11', 'fr', 1, 'https://ror.org/014ztwb11 FƩdƩration des cƩgeps'),
(5994, 'https://ror.org/0153sam53', 'en', 1, 'https://ror.org/0153sam53 Centre d''Ɖtude et de Recherches VĆ©tĆ©rinaires et Agrochimiques Centrum voor Onderzoek in Diergeneeskunde en Agrochemie Veterinary and Agrochemical Research Centre'),
(5995, 'https://ror.org/0154zm466', 'da', 1, 'https://ror.org/0154zm466 BĆørneklinikken Randers'),
(5996, 'https://ror.org/0155k7414', 'en', 1, 'https://ror.org/0155k7414 Cleveland Clinic Florida'),
(5997, 'https://ror.org/0156f0c06', 'no_lang_code', 1, 'https://ror.org/0156f0c06 ICF International (United States)'),
(5998, 'https://ror.org/0156rhd17', 'en', 1, 'https://ror.org/0156rhd17 Second Affiliated Hospital & Yuying Children''s Hospital of Wenzhou Medical University ęø©å·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(5999, 'https://ror.org/0157vkf66', 'en', 1, 'https://ror.org/0157vkf66 Rajiv Gandhi University of Health Sciences ą¤°ą¤¾ą¤œą„€ą¤µ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(6000, 'https://ror.org/0159w2913', 'en', 1, 'https://ror.org/0159w2913 Korea Institute of Toxicology ģ•ˆģ „ģ„±ķ‰ź°€ģ—°źµ¬ģ†Œ'),
(6001, 'https://ror.org/015ah0c92', 'en', 1, 'https://ror.org/015ah0c92 National Institute for Health and Care Excellence'),
(6002, 'https://ror.org/015awat24', 'en', 1, 'https://ror.org/015awat24 Western State Hospital'),
(6003, 'https://ror.org/015by2x28', 'en', 1, 'https://ror.org/015by2x28 North Dakota State College of Science'),
(6004, 'https://ror.org/015er2861', 'en', 1, 'https://ror.org/015er2861 Vale of Leven District General Hospital'),
(6005, 'https://ror.org/015exsf29', 'no_lang_code', 1, 'https://ror.org/015exsf29 Upsight (Canada)'),
(6006, 'https://ror.org/015gdag92', 'en', 1, 'https://ror.org/015gdag92 Atlanta Allergy and Asthma Clinic'),
(6007, 'https://ror.org/015h4rf69', 'en', 1, 'https://ror.org/015h4rf69 Niagara College'),
(6008, 'https://ror.org/015jknj09', 'en', 1, 'https://ror.org/015jknj09 American Association of Physicists in Medicine'),
(6009, 'https://ror.org/015mh9580', 'en', 1, 'https://ror.org/015mh9580 Chippewa Valley Technical College'),
(6010, 'https://ror.org/015n0my11', 'en', 1, 'https://ror.org/015n0my11 Alabama Southern Community College'),
(6011, 'https://ror.org/015pg1163', 'no_lang_code', 1, 'https://ror.org/015pg1163 Orcca Technology (United States)'),
(6012, 'https://ror.org/015qy8r18', 'fr', 1, 'https://ror.org/015qy8r18 Centre Hospitalier Intercommunal de Poissy'),
(6013, 'https://ror.org/015xbps36', 'en', 1, 'https://ror.org/015xbps36 Nordic Institute of Dental Materials'),
(6014, 'https://ror.org/015ygrv52', 'en', 1, 'https://ror.org/015ygrv52 Hong Kong Jockey Club é¦™ęøÆč³½é¦¬ęœƒ'),
(6015, 'https://ror.org/015z80004', 'en', 1, 'https://ror.org/015z80004 Forensic Sciences Department'),
(6016, 'https://ror.org/01601en76', 'fr', 1, 'https://ror.org/01601en76 Cegep de Sept Iles, CĆ©gep de sept-Ǝles'),
(6017, 'https://ror.org/0160cnc74', 'no_lang_code', 1, 'https://ror.org/0160cnc74 BioSci Research Canada (Canada)'),
(6018, 'https://ror.org/0160sy147', 'no_lang_code', 1, 'https://ror.org/0160sy147 Robotiq (Canada)'),
(6019, 'https://ror.org/0160vb289', 'no_lang_code', 1, 'https://ror.org/0160vb289 Tertl Studos (United States)'),
(6020, 'https://ror.org/01616eq90', 'en', 1, 'https://ror.org/01616eq90 Gamalei Institute of Epidemiology and Microbiology ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии имени почётного акаГемика Š. Ф. Гамалеи'),
(6021, 'https://ror.org/0162naz14', 'no_lang_code', 1, 'https://ror.org/0162naz14 EnviroSim (Canada)'),
(6022, 'https://ror.org/01639jx86', 'no_lang_code', 1, 'https://ror.org/01639jx86 Ogikubo Hospital'),
(6023, 'https://ror.org/01647vc39', 'no_lang_code', 1, 'https://ror.org/01647vc39 Behringwerke (Germany)'),
(6024, 'https://ror.org/0164vc797', 'en', 1, 'https://ror.org/0164vc797 Vijayanagara Institute of Medical Sciences ą²µą²æą²œą²Æą²Øą²—ą²° ą²µą³†ą³–ą²¦ą³ą²Æą²•ą²æą³•ą²Æ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(6025, 'https://ror.org/01663qy58', 'en', 1, 'https://ror.org/01663qy58 Papageorgiou General Hospital'),
(6026, 'https://ror.org/0168zt961', 'en', 1, 'https://ror.org/0168zt961 Asian and Pacific Islander American Health Forum'),
(6027, 'https://ror.org/01699r503', 'en', 1, 'https://ror.org/01699r503 St. Margaret''s Hospital for Women'),
(6028, 'https://ror.org/0169taq91', 'no_lang_code', 1, 'https://ror.org/0169taq91 Futures Group (United States)'),
(6029, 'https://ror.org/016brq605', 'de', 1, 'https://ror.org/016brq605 Apherese Forschungsinstitut'),
(6030, 'https://ror.org/016cdf784', 'no_lang_code', 1, 'https://ror.org/016cdf784 BioReliance (United States)'),
(6031, 'https://ror.org/016chgx50', 'no_lang_code', 1, 'https://ror.org/016chgx50 Sasaki Institute ä½ć€…ęœØē ”ē©¶ę‰€'),
(6032, 'https://ror.org/016cxc226', 'es', 1, 'https://ror.org/016cxc226 Complejo Hospitalario de Pontevedra'),
(6033, 'https://ror.org/016d8zs37', 'en', 1, 'https://ror.org/016d8zs37 Methodist Healthcare'),
(6034, 'https://ror.org/016dr6b81', 'en', 1, 'https://ror.org/016dr6b81 Waterbury Hospital'),
(6035, 'https://ror.org/016hfp155', 'en', 1, 'https://ror.org/016hfp155 Institute of Biomedical Problems Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской ФеГерации - Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГико-биологических проблем Российской акаГемии наук'),
(6036, 'https://ror.org/016hnw741', 'no_lang_code', 1, 'https://ror.org/016hnw741 Centre for Technology Research & Innovation (Cyprus)'),
(6037, 'https://ror.org/016jbz672', 'no_lang_code', 1, 'https://ror.org/016jbz672 MandalMed (United States)'),
(6038, 'https://ror.org/016kk8e44', 'no_lang_code', 1, 'https://ror.org/016kk8e44 Ventria Bioscience (United States)'),
(6039, 'https://ror.org/016mnbp44', 'no_lang_code', 1, 'https://ror.org/016mnbp44 Vi Technology (United States)'),
(6040, 'https://ror.org/016n06b36', 'en', 1, 'https://ror.org/016n06b36 Franciscan Hammond Clinic'),
(6041, 'https://ror.org/016n3sp21', 'en', 1, 'https://ror.org/016n3sp21 Society of British Water and Wastewater Industries'),
(6042, 'https://ror.org/016p29p27', 'no_lang_code', 1, 'https://ror.org/016p29p27 TopoGEN (United States)'),
(6043, 'https://ror.org/016pn1y21', 'no_lang_code', 1, 'https://ror.org/016pn1y21 Axcelon Biopolymers (Canada)'),
(6044, 'https://ror.org/016pn2j58', 'en', 1, 'https://ror.org/016pn2j58 Amity Foundation'),
(6045, 'https://ror.org/016s23c19', 'en', 1, 'https://ror.org/016s23c19 Morton Arboretum'),
(6046, 'https://ror.org/016sds817', 'en', 1, 'https://ror.org/016sds817 Tiroler Krebsforschungsinstitut Tyrolean Cancer Research Institute'),
(6047, 'https://ror.org/016t25n48', 'no_lang_code', 1, 'https://ror.org/016t25n48 Quasars (United States)'),
(6048, 'https://ror.org/016t6qg15', 'no_lang_code', 1, 'https://ror.org/016t6qg15 PENTAX Medical Company (United States)'),
(6049, 'https://ror.org/016tybp74', 'en', 1, 'https://ror.org/016tybp74 North Riding Infirmary'),
(6050, 'https://ror.org/016tysf12', 'en', 1, 'https://ror.org/016tysf12 Western Technical College'),
(6051, 'https://ror.org/017136v53', 'en', 1, 'https://ror.org/017136v53 Genomics Institute of the Novartis Research Foundation'),
(6052, 'https://ror.org/0173mx324', 'en', 1, 'https://ror.org/0173mx324 Family Research Institute'),
(6053, 'https://ror.org/0173xeq43', 'en', 1, 'https://ror.org/0173xeq43 Nottingham City Council'),
(6054, 'https://ror.org/01743cc72', 'no_lang_code', 1, 'https://ror.org/01743cc72 Servelec Technologies (United Kingdom)'),
(6055, 'https://ror.org/0174vdd62', 'no_lang_code', 1, 'https://ror.org/0174vdd62 Pasadero (United States)'),
(6056, 'https://ror.org/0175ya539', 'en', 1, 'https://ror.org/0175ya539 Koninklijke Kentalis Royal Dutch Kentalis'),
(6057, 'https://ror.org/0178xk096', 'en', 1, 'https://ror.org/0178xk096 International Institute for Population Sciences'),
(6058, 'https://ror.org/017arrg98', 'en', 1, 'https://ror.org/017arrg98 Department of Alcohol, Drug, and Mental Health Services'),
(6059, 'https://ror.org/017bd5k63', 'en', 1, 'https://ror.org/017bd5k63 Zuoying Armed Forces General Hospital åœ‹č»é«˜é›„ēø½é†«é™¢'),
(6060, 'https://ror.org/017bedv79', 'en', 1, 'https://ror.org/017bedv79 Ruby Hall Clinic'),
(6061, 'https://ror.org/017fh2655', 'es', 1, 'https://ror.org/017fh2655 Instituto Nacional de Enfermedades Respiratorias, Instituto Nacional de Enfermedades Respiratorias Ismael CosĆ­o Villegas'),
(6062, 'https://ror.org/017j6af40', 'it', 1, 'https://ror.org/017j6af40 Ospedale Humanitas Gradenigo'),
(6063, 'https://ror.org/017je7s69', 'en', 1, 'https://ror.org/017je7s69 National Institute for Research in Reproductive Health ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤œą¤Øą¤Ø ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6064, 'https://ror.org/017m4b809', 'no_lang_code', 1, 'https://ror.org/017m4b809 NXP (United Kingdom)'),
(6065, 'https://ror.org/017pcqs43', 'en', 1, 'https://ror.org/017pcqs43 D.I. Ivanovsky Institute of Virology Russian Academy of Medical Sciences ŠŠ˜Š˜ Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø имени Š”. И. Ивановского Š ŠŠœŠ'),
(6066, 'https://ror.org/017pqj756', 'no_lang_code', 1, 'https://ror.org/017pqj756 Vega Wave Systems (United States)'),
(6067, 'https://ror.org/017shr829', 'no_lang_code', 1, 'https://ror.org/017shr829 LI-COR Biosciences (United States)'),
(6068, 'https://ror.org/017spz608', 'no_lang_code', 1, 'https://ror.org/017spz608 Aker Arctic (Canada)'),
(6069, 'https://ror.org/017tgty84', 'no_lang_code', 1, 'https://ror.org/017tgty84 SciAps (United States)'),
(6070, 'https://ror.org/017vd4789', 'no_lang_code', 1, 'https://ror.org/017vd4789 Compugen (Israel) קומפיוג''ן'),
(6071, 'https://ror.org/01820qp25', 'en', 1, 'https://ror.org/01820qp25 Ornskƶldsvik Hospital Ɩrnskƶldsviks sjukhus'),
(6072, 'https://ror.org/0183vre95', 'en', 1, 'https://ror.org/0183vre95 TiFN'),
(6073, 'https://ror.org/0185sft94', 'no_lang_code', 1, 'https://ror.org/0185sft94 CW Optics (United States)'),
(6074, 'https://ror.org/01864e038', 'en', 1, 'https://ror.org/01864e038 Montana Council of Teachers of Mathematics'),
(6075, 'https://ror.org/0186yvf62', 'en', 1, 'https://ror.org/0186yvf62 Australian Academy of Science'),
(6076, 'https://ror.org/0187fh156', 'de', 1, 'https://ror.org/0187fh156 Isar-Amper-Klinikum München-Ost'),
(6077, 'https://ror.org/018azgd14', 'en', 1, 'https://ror.org/018azgd14 National Institute of Cholera and Enteric Diseases'),
(6078, 'https://ror.org/018cxtf62', 'en', 1, 'https://ror.org/018cxtf62 Earlham Institute'),
(6079, 'https://ror.org/018f35e53', 'en', 1, 'https://ror.org/018f35e53 Health Media Lab'),
(6080, 'https://ror.org/018hk2b97', 'en', 1, 'https://ror.org/018hk2b97 Denver VA Medical Center'),
(6081, 'https://ror.org/018j3hx85', 'pt', 1, 'https://ror.org/018j3hx85 Escola Superior de Tecnologia da SaĆŗde de Coimbra'),
(6082, 'https://ror.org/018kd1e03', 'en', 1, 'https://ror.org/018kd1e03 Wesley Hospital'),
(6083, 'https://ror.org/018m20m74', 'en', 1, 'https://ror.org/018m20m74 Human BioMolecular Research Institute'),
(6084, 'https://ror.org/018mrwd51', 'no_lang_code', 1, 'https://ror.org/018mrwd51 Advanced Computer System (Italy)'),
(6085, 'https://ror.org/018nkky79', 'no_lang_code', 1, 'https://ror.org/018nkky79 Tuen Mun Hospital 屯門醫院'),
(6086, 'https://ror.org/018pfsv20', 'en', 1, 'https://ror.org/018pfsv20 Lexington Richland Alcohol And Drug Abuse Council'),
(6087, 'https://ror.org/018qep702', 'no_lang_code', 1, 'https://ror.org/018qep702 General Motors (Germany)'),
(6088, 'https://ror.org/018r1es63', 'en', 1, 'https://ror.org/018r1es63 Massachusetts Bay Community College'),
(6089, 'https://ror.org/018v91w71', 'en', 1, 'https://ror.org/018v91w71 Missouri Bone and Joint Center'),
(6090, 'https://ror.org/018xkrg73', 'fr', 1, 'https://ror.org/018xkrg73 CollĆØge d''Alma'),
(6091, 'https://ror.org/018zaej71', 'it', 1, 'https://ror.org/018zaej71 Ospedale di San DonĆ  di Piave'),
(6092, 'https://ror.org/0190p7071', 'no_lang_code', 1, 'https://ror.org/0190p7071 General Electric (Sweden)'),
(6093, 'https://ror.org/0195ge738', 'en', 1, 'https://ror.org/0195ge738 Access Community Health Network'),
(6094, 'https://ror.org/0199g0r92', 'en', 1, 'https://ror.org/0199g0r92 Max Planck Institute for Metabolism Research Max-Planck-Institut für Stoffwechselforschung'),
(6095, 'https://ror.org/019a0n503', 'no_lang_code', 1, 'https://ror.org/019a0n503 Cerestech (Canada)'),
(6096, 'https://ror.org/019bpax96', 'en', 1, 'https://ror.org/019bpax96 Southern Governors Association'),
(6097, 'https://ror.org/019fkcf66', 'en', 1, 'https://ror.org/019fkcf66 Guangzhou Blood Center'),
(6098, 'https://ror.org/019kwgw50', 'no_lang_code', 1, 'https://ror.org/019kwgw50 Ionwerks (United States)'),
(6099, 'https://ror.org/019m6fr90', 'no_lang_code', 1, 'https://ror.org/019m6fr90 New York Audio Productions (United States)'),
(6100, 'https://ror.org/019mfbd19', 'no_lang_code', 1, 'https://ror.org/019mfbd19 Quest Clinical Research (United States)'),
(6101, 'https://ror.org/019n8y489', 'en', 1, 'https://ror.org/019n8y489 Utah Valley Regional Medical Center'),
(6102, 'https://ror.org/019nmf858', 'en', 1, 'https://ror.org/019nmf858 Central Potato Research Institute'),
(6103, 'https://ror.org/019rsbe67', 'no_lang_code', 1, 'https://ror.org/019rsbe67 Jazz Pharmaceuticals (United States)'),
(6104, 'https://ror.org/019wssg97', 'no_lang_code', 1, 'https://ror.org/019wssg97 Altana (Germany)'),
(6105, 'https://ror.org/019x26026', 'en', 1, 'https://ror.org/019x26026 Uwajima City Hospital å®‡å’Œå³¶åø‚ē—…é™¢'),
(6106, 'https://ror.org/019xfaf13', 'en', 1, 'https://ror.org/019xfaf13 Astronomical Society of the Pacific'),
(6107, 'https://ror.org/019xgv883', 'en', 1, 'https://ror.org/019xgv883 Science East Association'),
(6108, 'https://ror.org/019y5r485', 'no_lang_code', 1, 'https://ror.org/019y5r485 Nesher Technologies (United States)'),
(6109, 'https://ror.org/01a079157', 'no_lang_code', 1, 'https://ror.org/01a079157 Siemens (Portugal)'),
(6110, 'https://ror.org/01a0veq54', 'no_lang_code', 1, 'https://ror.org/01a0veq54 Sri Gokulam Hospital'),
(6111, 'https://ror.org/01a0xxp39', 'en', 1, 'https://ror.org/01a0xxp39 Institute of Basic Biological Problems Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Ń… проблем биологии Š ŠŠ'),
(6112, 'https://ror.org/01a4p1q97', 'no_lang_code', 1, 'https://ror.org/01a4p1q97 LNKChemsolutions'),
(6113, 'https://ror.org/01a4t3393', 'en', 1, 'https://ror.org/01a4t3393 Central Electricity Generating Board'),
(6114, 'https://ror.org/01a6nzt97', 'no_lang_code', 1, 'https://ror.org/01a6nzt97 Cytobank (United States)'),
(6115, 'https://ror.org/01a8ynn13', 'en', 1, 'https://ror.org/01a8ynn13 The Langton Grammar School for Boys'),
(6116, 'https://ror.org/01a92vw29', 'lv', 1, 'https://ror.org/01a92vw29 Latvian Institute of Organic Synthesis Latvijas Organiskās Sintēzes Institūts'),
(6117, 'https://ror.org/01ab3z839', 'en', 1, 'https://ror.org/01ab3z839 National Perinatal Information Center'),
(6118, 'https://ror.org/01ab8nr44', 'en', 1, 'https://ror.org/01ab8nr44 Council on Undergraduate Research'),
(6119, 'https://ror.org/01ac4hv54', 'it', 1, 'https://ror.org/01ac4hv54 Semeion Centro Ricerche di Scienze della Comunicazione'),
(6120, 'https://ror.org/01ada6a49', 'no_lang_code', 1, 'https://ror.org/01ada6a49 Reaction Biology Corporation (United States)'),
(6121, 'https://ror.org/01ae87070', 'it', 1, 'https://ror.org/01ae87070 Ospedale A. Perrino'),
(6122, 'https://ror.org/01aegrf07', 'en', 1, 'https://ror.org/01aegrf07 Canadian AIDS Society SociƩtƩ Canadienne du Sida'),
(6123, 'https://ror.org/01aetpp13', 'en', 1, 'https://ror.org/01aetpp13 Centre for Process Innovation'),
(6124, 'https://ror.org/01ag6an54', 'en', 1, 'https://ror.org/01ag6an54 Cook Inlet Tribal Council'),
(6125, 'https://ror.org/01ag7n936', 'es', 1, 'https://ror.org/01ag7n936 Centro Rosarino de Estudios Perinatales'),
(6126, 'https://ror.org/01ahb7328', 'en', 1, 'https://ror.org/01ahb7328 Institute for Healthcare Improvement'),
(6127, 'https://ror.org/01ajqvg59', 'en', 1, 'https://ror.org/01ajqvg59 United States Army Aeromedical Research Lab'),
(6128, 'https://ror.org/01amarv06', 'en', 1, 'https://ror.org/01amarv06 v. Bodelschwing Foundation Bethel v. Bodelschwinghsche Stiftungen Bethel'),
(6129, 'https://ror.org/01aptcd74', 'no_lang_code', 1, 'https://ror.org/01aptcd74 Sanofi (Canada)'),
(6130, 'https://ror.org/01aq2db46', 'no_lang_code', 1, 'https://ror.org/01aq2db46 ImmuNext (United States)'),
(6131, 'https://ror.org/01ask7p77', 'no_lang_code', 1, 'https://ror.org/01ask7p77 Sparos (Portugal)'),
(6132, 'https://ror.org/01ass5t61', 'en', 1, 'https://ror.org/01ass5t61 Jean Hailes'),
(6133, 'https://ror.org/01astg473', 'en', 1, 'https://ror.org/01astg473 Japan Biological Informatics Consortium čˆ¬ē¤¾å›£ę³•äŗŗćƒć‚¤ć‚Ŗē”£ę„­ęƒ…å ±åŒ–ć‚³ćƒ³ć‚½ćƒ¼ć‚·ć‚¢ćƒ '),
(6134, 'https://ror.org/01ax1zp32', 'no_lang_code', 1, 'https://ror.org/01ax1zp32 CustomKYnetics (United States)'),
(6135, 'https://ror.org/01ayagd95', 'no_lang_code', 1, 'https://ror.org/01ayagd95 Alternative Futures Associates'),
(6136, 'https://ror.org/01azqfh67', 'en', 1, 'https://ror.org/01azqfh67 Together'),
(6137, 'https://ror.org/01b09k795', 'en', 1, 'https://ror.org/01b09k795 APT Foundation'),
(6138, 'https://ror.org/01b11x021', 'en', 1, 'https://ror.org/01b11x021 Hull and East Yorkshire Hospitals NHS Trust'),
(6139, 'https://ror.org/01b1g5g41', 'en', 1, 'https://ror.org/01b1g5g41 Greater Manchester STEM Centre'),
(6140, 'https://ror.org/01b4q9c55', 'hu', 1, 'https://ror.org/01b4q9c55 National Institute of Clinical Neurosciences OrszƔgos IdegsebƩszeti TudomƔnyos IntƩzet'),
(6141, 'https://ror.org/01b5xma27', 'en', 1, 'https://ror.org/01b5xma27 Greenfield Community College'),
(6142, 'https://ror.org/01b9fyy36', 'en', 1, 'https://ror.org/01b9fyy36 Visions of Science Network for Learning'),
(6143, 'https://ror.org/01b9qpe41', 'fr', 1, 'https://ror.org/01b9qpe41 Institut de Recherche en Opthalmologie'),
(6144, 'https://ror.org/01bawqf59', 'en', 1, 'https://ror.org/01bawqf59 Shonan Institute of Technology ę¹˜å—å·„ē§‘å¤§å­¦'),
(6145, 'https://ror.org/01bf9rw71', 'en', 1, 'https://ror.org/01bf9rw71 Max Planck Institute for the Physics of Complex Systems Max-Planck-Institut für Physik Komplexer Systeme'),
(6146, 'https://ror.org/01bh4p295', 'en', 1, 'https://ror.org/01bh4p295 Erskine College'),
(6147, 'https://ror.org/01bh91531', 'en', 1, 'https://ror.org/01bh91531 National Institute for Biotechnology and Genetic Engineering'),
(6148, 'https://ror.org/01bjkkp81', 'no_lang_code', 1, 'https://ror.org/01bjkkp81 GNS Healthcare (United States)'),
(6149, 'https://ror.org/01bjmbg26', 'en', 1, 'https://ror.org/01bjmbg26 Waterwise'),
(6150, 'https://ror.org/01bk7pz18', 'no_lang_code', 1, 'https://ror.org/01bk7pz18 Tokushima Prefectural Central Hospital å¾³å³¶ēœŒē«‹äø­å¤®ē—…é™¢'),
(6151, 'https://ror.org/01bk7tw31', 'en', 1, 'https://ror.org/01bk7tw31 Wireless Innovation Forum'),
(6152, 'https://ror.org/01bnjyq25', 'de', 1, 'https://ror.org/01bnjyq25 GP Forschungsgruppe, Instituts für Grundlagen und Programmforschung'),
(6153, 'https://ror.org/01bp1mp13', 'no_lang_code', 1, 'https://ror.org/01bp1mp13 Photodigm (United States)'),
(6154, 'https://ror.org/01bpck236', 'no_lang_code', 1, 'https://ror.org/01bpck236 Global Relay (Canada)'),
(6155, 'https://ror.org/01bqvsn34', 'en', 1, 'https://ror.org/01bqvsn34 Park Plaza Hospital'),
(6156, 'https://ror.org/01brzkg31', 'no_lang_code', 1, 'https://ror.org/01brzkg31 InstaRecon (United States)'),
(6157, 'https://ror.org/01bs8y378', 'no_lang_code', 1, 'https://ror.org/01bs8y378 Autoimmune Technologies (United States)'),
(6158, 'https://ror.org/01bt01h96', 'en', 1, 'https://ror.org/01bt01h96 Environmental Law Institute'),
(6159, 'https://ror.org/01btmdt42', 'no_lang_code', 1, 'https://ror.org/01btmdt42 Dynavax Technologies (United States)'),
(6160, 'https://ror.org/01btzz102', 'en', 1, 'https://ror.org/01btzz102 University of Health Sciences and Pharmacy'),
(6161, 'https://ror.org/01by6g473', 'en', 1, 'https://ror.org/01by6g473 Central Oregon Community College'),
(6162, 'https://ror.org/01bz6xa25', 'no_lang_code', 1, 'https://ror.org/01bz6xa25 Rigaku (United Kingdom)'),
(6163, 'https://ror.org/01bzgdw81', 'en', 1, 'https://ror.org/01bzgdw81 Indian Agricultural Research Institute ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µąÆ‡ą®³ą®¾ą®£ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(6164, 'https://ror.org/01c0hdt76', 'no_lang_code', 1, 'https://ror.org/01c0hdt76 Acumen (United States)'),
(6165, 'https://ror.org/01c0rkd54', 'no_lang_code', 1, 'https://ror.org/01c0rkd54 Maine Molecular Quality Controls (United States)'),
(6166, 'https://ror.org/01c1ce922', 'it', 1, 'https://ror.org/01c1ce922 Nuovo Ospedale San Giovanni di Dio'),
(6167, 'https://ror.org/01c20ew23', 'en', 1, 'https://ror.org/01c20ew23 Genetics and IVF Institute'),
(6168, 'https://ror.org/01c39ny75', 'no_lang_code', 1, 'https://ror.org/01c39ny75 OcuMetrics (United States)'),
(6169, 'https://ror.org/01c3pwn40', 'no_lang_code', 1, 'https://ror.org/01c3pwn40 Kent Displays (United States)'),
(6170, 'https://ror.org/01c44a921', 'en', 1, 'https://ror.org/01c44a921 Proteogenomics Research Institute for Systems Medicine'),
(6171, 'https://ror.org/01c5r7j06', 'es', 1, 'https://ror.org/01c5r7j06 Instituto de Neurologia Y Neurocirugia'),
(6172, 'https://ror.org/01c66cc89', 'en', 1, 'https://ror.org/01c66cc89 Prince Albert Grand Council'),
(6173, 'https://ror.org/01c6k3h93', 'no_lang_code', 1, 'https://ror.org/01c6k3h93 Teva Pharmaceuticals (Canada)'),
(6174, 'https://ror.org/01c7jsk34', 'en', 1, 'https://ror.org/01c7jsk34 National Institute for Pharmaceutical Research and Development'),
(6175, 'https://ror.org/01c8cwz57', 'fr', 1, 'https://ror.org/01c8cwz57 Institut pour la Recherche sur le Cancer de Lille'),
(6176, 'https://ror.org/01c997669', 'en', 1, 'https://ror.org/01c997669 Max Planck Institute for Chemical Physics of Solids Max-Planck-Institut für Chemische Physik Fester Stoffe'),
(6177, 'https://ror.org/01c9wxw51', 'no_lang_code', 1, 'https://ror.org/01c9wxw51 ImQuest BioSciences (United States)'),
(6178, 'https://ror.org/01cacm735', 'en', 1, 'https://ror.org/01cacm735 Fortis Escorts Heart Institute'),
(6179, 'https://ror.org/01cegnf65', 'en', 1, 'https://ror.org/01cegnf65 American Indian Science and Engineering Society'),
(6180, 'https://ror.org/01cf5z404', 'no_lang_code', 1, 'https://ror.org/01cf5z404 Robin Medical (United States)'),
(6181, 'https://ror.org/01cfdy756', 'en', 1, 'https://ror.org/01cfdy756 Marie Selby Botanical Gardens'),
(6182, 'https://ror.org/01chs2347', 'no_lang_code', 1, 'https://ror.org/01chs2347 Ingegneria dei Sistemi (United Kingdom)'),
(6183, 'https://ror.org/01cj6ar20', 'no_lang_code', 1, 'https://ror.org/01cj6ar20 DiscoveryBioMed (United States)'),
(6184, 'https://ror.org/01ck0pr88', 'en', 1, 'https://ror.org/01ck0pr88 Bradford Royal Infirmary'),
(6185, 'https://ror.org/01ckbq028', 'en', 1, 'https://ror.org/01ckbq028 Whittington Hospital'),
(6186, 'https://ror.org/01cmq9k07', 'no_lang_code', 1, 'https://ror.org/01cmq9k07 Institute for Learning Innovation (United States)'),
(6187, 'https://ror.org/01cnxmm67', 'en', 1, 'https://ror.org/01cnxmm67 Morris Brown College'),
(6188, 'https://ror.org/01cs14q41', 'en', 1, 'https://ror.org/01cs14q41 Glangwili General Hospital Ysbyty Cyffredinol Glangwili'),
(6189, 'https://ror.org/01ctbbh52', 'en', 1, 'https://ror.org/01ctbbh52 Palmerston North Hospital'),
(6190, 'https://ror.org/01cx4xa29', 'de', 1, 'https://ror.org/01cx4xa29 Fondation pour la SƩcuritƩ des Patients Stiftung Patientensicherheit Schweiz'),
(6191, 'https://ror.org/01cyxs230', 'en', 1, 'https://ror.org/01cyxs230 Shanghai Blood Center'),
(6192, 'https://ror.org/01cyzat07', 'en', 1, 'https://ror.org/01cyzat07 Wesley Guild Hospital'),
(6193, 'https://ror.org/01d1kad18', 'no_lang_code', 1, 'https://ror.org/01d1kad18 Otaru Municipal Hospital å°ęØ½åø‚ē«‹ē—…é™¢'),
(6194, 'https://ror.org/01d1m4h32', 'en', 1, 'https://ror.org/01d1m4h32 Samaritan Center'),
(6195, 'https://ror.org/01d2yj180', 'no_lang_code', 1, 'https://ror.org/01d2yj180 Technology For Magnetic Resonance (United States)'),
(6196, 'https://ror.org/01d3e8y10', 'en', 1, 'https://ror.org/01d3e8y10 International Institute of Anthropology'),
(6197, 'https://ror.org/01d6tbx77', 'en', 1, 'https://ror.org/01d6tbx77 Worcestershire Royal Hospital'),
(6198, 'https://ror.org/01d71vb80', 'en', 1, 'https://ror.org/01d71vb80 FernƔndez-Vega Ophthalmological Institute'),
(6199, 'https://ror.org/01d9afc73', 'en', 1, 'https://ror.org/01d9afc73 Montrose Center'),
(6200, 'https://ror.org/01d9xyz57', 'en', 1, 'https://ror.org/01d9xyz57 Paul Smith''s College'),
(6201, 'https://ror.org/01dd0rh60', 'no_lang_code', 1, 'https://ror.org/01dd0rh60 NuvoGen Research (United States)'),
(6202, 'https://ror.org/01ddmwy83', 'fr', 1, 'https://ror.org/01ddmwy83 Centre Ophtalmologique d''Imagerie et de Laser'),
(6203, 'https://ror.org/01ddxdd19', 'no_lang_code', 1, 'https://ror.org/01ddxdd19 Constructions Industrielles de la MƩditerranƩe (France)'),
(6204, 'https://ror.org/01decj058', 'no_lang_code', 1, 'https://ror.org/01decj058 Dianon (United States)'),
(6205, 'https://ror.org/01df0yh77', 'no_lang_code', 1, 'https://ror.org/01df0yh77 Condax (United States)'),
(6206, 'https://ror.org/01dg04253', 'en', 1, 'https://ror.org/01dg04253 Institute of Bioorganic Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биоорганической химии им. акаГемиков М.М. ŠØŠµŠ¼ŃŠŗŠøŠ½Š° Šø Š®.А. ŠžŠ²Ń‡ŠøŠ½Š½ŠøŠŗŠ¾Š²Š° Российской акаГемии наук'),
(6207, 'https://ror.org/01dgncy67', 'no_lang_code', 1, 'https://ror.org/01dgncy67 Saiseikai Shimonoseki General Hospital å±±å£ēœŒęøˆē”Ÿä¼šäø‹é–¢ē·åˆē—…é™¢'),
(6208, 'https://ror.org/01dhwg439', 'no_lang_code', 1, 'https://ror.org/01dhwg439 Hauser (United States)'),
(6209, 'https://ror.org/01dk0y732', 'no_lang_code', 1, 'https://ror.org/01dk0y732 Advanced Lightweight Engineering (Netherlands)'),
(6210, 'https://ror.org/01dk36s50', 'pt', 1, 'https://ror.org/01dk36s50 Instituto Lauro de Souza Lima'),
(6211, 'https://ror.org/01dk4b453', 'en', 1, 'https://ror.org/01dk4b453 Pasadena City College'),
(6212, 'https://ror.org/01dk89r22', 'en', 1, 'https://ror.org/01dk89r22 City Colleges of Chicago Colegios Comunitarios de Chicago'),
(6213, 'https://ror.org/01dm0m970', 'no_lang_code', 1, 'https://ror.org/01dm0m970 Alethia Biotherapeutics (Canada)'),
(6214, 'https://ror.org/01dmjt679', 'en', 1, 'https://ror.org/01dmjt679 Roessingh Research and Development'),
(6215, 'https://ror.org/01dp60j32', 'no_lang_code', 1, 'https://ror.org/01dp60j32 International Rectifier (United Kingdom)'),
(6216, 'https://ror.org/01dp84930', 'no_lang_code', 1, 'https://ror.org/01dp84930 Indium Corporation (United States)'),
(6217, 'https://ror.org/01dpfst30', 'no_lang_code', 1, 'https://ror.org/01dpfst30 MicroLink Devices (United States)'),
(6218, 'https://ror.org/01dq23791', 'it', 1, 'https://ror.org/01dq23791 Ospedale Civile di Vittorio Veneto'),
(6219, 'https://ror.org/01dqayp38', 'en', 1, 'https://ror.org/01dqayp38 College of Family Physicians of Canada Le Collège des Médecins de Famille du Canada'),
(6220, 'https://ror.org/01dswgm35', 'en', 1, 'https://ror.org/01dswgm35 Talladega College'),
(6221, 'https://ror.org/01dvp8b67', 'en', 1, 'https://ror.org/01dvp8b67 Combustion Institute'),
(6222, 'https://ror.org/01dwzs847', 'no_lang_code', 1, 'https://ror.org/01dwzs847 Cell Gate (United States)'),
(6223, 'https://ror.org/01dy2q607', 'it', 1, 'https://ror.org/01dy2q607 Istituto di Biomedicina e di Immunologia Molecolare Alberto Monroy'),
(6224, 'https://ror.org/01e17d143', 'en', 1, 'https://ror.org/01e17d143 Institute of Organic Chemistry Instytut Chemii Organicznej PAN'),
(6225, 'https://ror.org/01e2q0308', 'fr', 1, 'https://ror.org/01e2q0308 HƓpital de l''Antiquaille'),
(6226, 'https://ror.org/01e47qp55', 'no_lang_code', 1, 'https://ror.org/01e47qp55 Mapp Biopharmaceutical (United States)'),
(6227, 'https://ror.org/01e6deg73', 'en', 1, 'https://ror.org/01e6deg73 Baylor College of Medicine Children’s Foundation'),
(6228, 'https://ror.org/01e70mw69', 'en', 1, 'https://ror.org/01e70mw69 Indian Institute of Toxicology Research ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤·ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6229, 'https://ror.org/01e8bdb34', 'no_lang_code', 1, 'https://ror.org/01e8bdb34 SRK Healthcare (United States)'),
(6230, 'https://ror.org/01e8hcf19', 'en', 1, 'https://ror.org/01e8hcf19 American Ceramic Society'),
(6231, 'https://ror.org/01e8tvg28', 'it', 1, 'https://ror.org/01e8tvg28 Fondazione Salvatore Maugeri'),
(6232, 'https://ror.org/01e94xy17', 'en', 1, 'https://ror.org/01e94xy17 Northern New Mexico College'),
(6233, 'https://ror.org/01eadrh05', 'en', 1, 'https://ror.org/01eadrh05 Oregon Clinic'),
(6234, 'https://ror.org/01ecs7r71', 'no_lang_code', 1, 'https://ror.org/01ecs7r71 LungLife AI (United States)'),
(6235, 'https://ror.org/01ef4m131', 'no_lang_code', 1, 'https://ror.org/01ef4m131 Sirnaomics (United States)'),
(6236, 'https://ror.org/01egexe84', 'no_lang_code', 1, 'https://ror.org/01egexe84 Kardium (Canada)'),
(6237, 'https://ror.org/01ek5c080', 'en', 1, 'https://ror.org/01ek5c080 Methodist Richardson Medical Center'),
(6238, 'https://ror.org/01em4t310', 'no_lang_code', 1, 'https://ror.org/01em4t310 Analogue Theatre (United Kingdom)'),
(6239, 'https://ror.org/01engnx74', 'en', 1, 'https://ror.org/01engnx74 Cystic Fibrosis Research Foundation'),
(6240, 'https://ror.org/01eqrs044', 'no_lang_code', 1, 'https://ror.org/01eqrs044 Sensei Biotherapeutics (United States)'),
(6241, 'https://ror.org/01ev8n617', 'en', 1, 'https://ror.org/01ev8n617 American Association of Variable Star Observers'),
(6242, 'https://ror.org/01extmz43', 'fr', 1, 'https://ror.org/01extmz43 Centre hospitalier de Rouffach'),
(6243, 'https://ror.org/01ez8ve21', 'en', 1, 'https://ror.org/01ez8ve21 Special Health Resources for Texas'),
(6244, 'https://ror.org/01ezk2d60', 'no_lang_code', 1, 'https://ror.org/01ezk2d60 Indian Drugs and Pharmaceuticals Limited'),
(6245, 'https://ror.org/01f02ys47', 'no_lang_code', 1, 'https://ror.org/01f02ys47 Gateway Community Services (United States)'),
(6246, 'https://ror.org/01f0wmg23', 'en', 1, 'https://ror.org/01f0wmg23 Stone Child College'),
(6247, 'https://ror.org/01f1j2n15', 'en', 1, 'https://ror.org/01f1j2n15 Educational Service District 112'),
(6248, 'https://ror.org/01f2jgq77', 'en', 1, 'https://ror.org/01f2jgq77 H2O 4 All'),
(6249, 'https://ror.org/01f3h2s79', 'no_lang_code', 1, 'https://ror.org/01f3h2s79 Agennix (United States)'),
(6250, 'https://ror.org/01f3njc68', 'en', 1, 'https://ror.org/01f3njc68 National Maritime Museum'),
(6251, 'https://ror.org/01f3qhk13', 'en', 1, 'https://ror.org/01f3qhk13 Riekes Center for Human Enhancement'),
(6252, 'https://ror.org/01f7dp456', 'en', 1, 'https://ror.org/01f7dp456 Ministry of Food and Drug Safety'),
(6253, 'https://ror.org/01f8vhd41', 'pt', 1, 'https://ror.org/01f8vhd41 Instituto Nacional de Metrologia, Qualidade e Tecnologia National Institute of Metrology Quality and Technology'),
(6254, 'https://ror.org/01faz8m53', 'no_lang_code', 1, 'https://ror.org/01faz8m53 MicroOptical Engineering (United States)'),
(6255, 'https://ror.org/01fbde567', 'en', 1, 'https://ror.org/01fbde567 Max Planck Institute of Molecular Plant Physiology Max-Planck-Institut für molekulare Pflanzenphysiologie'),
(6256, 'https://ror.org/01fbet514', 'no_lang_code', 1, 'https://ror.org/01fbet514 BioChem Technology (United States)'),
(6257, 'https://ror.org/01fbp1n03', 'no_lang_code', 1, 'https://ror.org/01fbp1n03 Synthecon (United States)'),
(6258, 'https://ror.org/01fdz0a43', 'no_lang_code', 1, 'https://ror.org/01fdz0a43 Ribonomics (United States)'),
(6259, 'https://ror.org/01fev7c67', 'en', 1, 'https://ror.org/01fev7c67 Confederation of European Forest Owners ConfƩdƩration EuropƩenne des PropriƩtaires Forestiers'),
(6260, 'https://ror.org/01fgq8278', 'no_lang_code', 1, 'https://ror.org/01fgq8278 DSM (Switzerland)'),
(6261, 'https://ror.org/01fh23w56', 'en', 1, 'https://ror.org/01fh23w56 Chicago Institute for Psychoanalysis'),
(6262, 'https://ror.org/01fh9k283', 'es', 1, 'https://ror.org/01fh9k283 Fundación Instituto Valenciano de Oncología'),
(6263, 'https://ror.org/01fk4js58', 'en', 1, 'https://ror.org/01fk4js58 Sacred Space Foundation'),
(6264, 'https://ror.org/01fpjqs91', 'en', 1, 'https://ror.org/01fpjqs91 St. Joseph''s Hospital'),
(6265, 'https://ror.org/01fptm710', 'pt', 1, 'https://ror.org/01fptm710 Instituto de Botânica'),
(6266, 'https://ror.org/01ftkxq60', 'no_lang_code', 1, 'https://ror.org/01ftkxq60 Cytel (United States)'),
(6267, 'https://ror.org/01fydjk85', 'no_lang_code', 1, 'https://ror.org/01fydjk85 Earth Images Foundation (United States)'),
(6268, 'https://ror.org/01fz8x241', 'en', 1, 'https://ror.org/01fz8x241 National Hemophilia Foundation'),
(6269, 'https://ror.org/01g0q1j14', 'en', 1, 'https://ror.org/01g0q1j14 Converse College'),
(6270, 'https://ror.org/01g19gh26', 'no_lang_code', 1, 'https://ror.org/01g19gh26 Carter Printing Company (United States)'),
(6271, 'https://ror.org/01g1che35', 'no_lang_code', 1, 'https://ror.org/01g1che35 Trudell Medical International (Canada)'),
(6272, 'https://ror.org/01g1mnc10', 'no_lang_code', 1, 'https://ror.org/01g1mnc10 Transfusion and Transplantation Technologies (United States)'),
(6273, 'https://ror.org/01g31bd79', 'en', 1, 'https://ror.org/01g31bd79 International Technology and Engineering Educators Association'),
(6274, 'https://ror.org/01g4j3g78', 'en', 1, 'https://ror.org/01g4j3g78 Vanha Vaasa hospital Vanhan Vaasan Sairaala'),
(6275, 'https://ror.org/01g7qth32', 'en', 1, 'https://ror.org/01g7qth32 Institute of Minerals and Materials Technology'),
(6276, 'https://ror.org/01g7ypx22', 'en', 1, 'https://ror.org/01g7ypx22 Washington Department of Social and Health Services'),
(6277, 'https://ror.org/01g8b9k67', 'en', 1, 'https://ror.org/01g8b9k67 Center for Image Processing in Education'),
(6278, 'https://ror.org/01g8hb609', 'it', 1, 'https://ror.org/01g8hb609 Consorzio Catania Ricerche'),
(6279, 'https://ror.org/01g9x3v85', 'en', 1, 'https://ror.org/01g9x3v85 Agencia Federal para el Manejo de Emergencias Federal Emergency Management Agency'),
(6280, 'https://ror.org/01ga31z69', 'no_lang_code', 1, 'https://ror.org/01ga31z69 Cochlear (United States)'),
(6281, 'https://ror.org/01gazqa80', 'pt', 1, 'https://ror.org/01gazqa80 Centro de Biotecnologia AgrĆ­cola e Agro Alimentar do Alentejo'),
(6282, 'https://ror.org/01gchcj93', 'no_lang_code', 1, 'https://ror.org/01gchcj93 South Carolina ETV (United States)'),
(6283, 'https://ror.org/01gckhp53', 'en', 1, 'https://ror.org/01gckhp53 Latvian Biomedical Research and Study Centre Latvijas Biomedicīnas Pētījumu un Studiju Centrs'),
(6284, 'https://ror.org/01gfdf281', 'no_lang_code', 1, 'https://ror.org/01gfdf281 Agave BioSystems (United States)'),
(6285, 'https://ror.org/01gh7yb82', 'no_lang_code', 1, 'https://ror.org/01gh7yb82 Center of Molecular Immunology (Cuba)'),
(6286, 'https://ror.org/01gkkh788', 'no_lang_code', 1, 'https://ror.org/01gkkh788 National One Call (United Kingdom)'),
(6287, 'https://ror.org/01gnjkm30', 'no_lang_code', 1, 'https://ror.org/01gnjkm30 Kapteyn Murnane Laboratories'),
(6288, 'https://ror.org/01gp1hk26', 'en', 1, 'https://ror.org/01gp1hk26 North American Association of Central Cancer Registries'),
(6289, 'https://ror.org/01gpjfw56', 'hu', 1, 'https://ror.org/01gpjfw56 PĆ©terfy SĆ”ndor Utcai KórhĆ”z-RendelőintĆ©zet Ć©s Baleseti Kƶzpont'),
(6290, 'https://ror.org/01gq2tr09', 'fr', 1, 'https://ror.org/01gq2tr09 Association pour le DƩveloppement de la Recherche et de l''Innovation du QuƩbec'),
(6291, 'https://ror.org/01gqzkt51', 'no_lang_code', 1, 'https://ror.org/01gqzkt51 Second Foundation (United States)'),
(6292, 'https://ror.org/01gswfc04', 'en', 1, 'https://ror.org/01gswfc04 El Paso Community College'),
(6293, 'https://ror.org/01gvaa828', 'fr', 1, 'https://ror.org/01gvaa828 HƓpital d''Enfants'),
(6294, 'https://ror.org/01gvm4v91', 'no_lang_code', 1, 'https://ror.org/01gvm4v91 Advanced Genetic Systems (United States)'),
(6295, 'https://ror.org/01gwh4g82', 'en', 1, 'https://ror.org/01gwh4g82 Energy Saving Trust'),
(6296, 'https://ror.org/01h0ca774', 'en', 1, 'https://ror.org/01h0ca774 Research Institute of Ophthalmology'),
(6297, 'https://ror.org/01h0h7640', 'no_lang_code', 1, 'https://ror.org/01h0h7640 Tata Motors (United Kingdom)'),
(6298, 'https://ror.org/01h1sgg38', 'no_lang_code', 1, 'https://ror.org/01h1sgg38 Meridian Instrument (United States)'),
(6299, 'https://ror.org/01h42mb65', 'no_lang_code', 1, 'https://ror.org/01h42mb65 Medical Decision Modeling (United States)'),
(6300, 'https://ror.org/01h65nt31', 'en', 1, 'https://ror.org/01h65nt31 St. Mark''s Hospital'),
(6301, 'https://ror.org/01h8ey223', 'it', 1, 'https://ror.org/01h8ey223 MultiMedica'),
(6302, 'https://ror.org/01h8tw896', 'no_lang_code', 1, 'https://ror.org/01h8tw896 Touch of Life Technologies (United States)'),
(6303, 'https://ror.org/01h95gp06', 'no_lang_code', 1, 'https://ror.org/01h95gp06 FMC (United States)'),
(6304, 'https://ror.org/01h96am38', 'en', 1, 'https://ror.org/01h96am38 Zeynep Kamil Hospital Zeynep Kamil Kadın ve Ƈocuk Hastalıkları Eğitim Ve Araştırma Hastanesi'),
(6305, 'https://ror.org/01hbes477', 'en', 1, 'https://ror.org/01hbes477 Franciscan Health'),
(6306, 'https://ror.org/01hdk3d05', 'en', 1, 'https://ror.org/01hdk3d05 San Antonio College'),
(6307, 'https://ror.org/01heabd70', 'no_lang_code', 1, 'https://ror.org/01heabd70 Signum Biosciences (United States)'),
(6308, 'https://ror.org/01hmaf534', 'en', 1, 'https://ror.org/01hmaf534 Northland College'),
(6309, 'https://ror.org/01hnx4w34', 'en', 1, 'https://ror.org/01hnx4w34 Museu Nacional do Azulejo National Azulejo Museum'),
(6310, 'https://ror.org/01hpb1x88', 'no_lang_code', 1, 'https://ror.org/01hpb1x88 EKOS Corporation'),
(6311, 'https://ror.org/01hr7mm17', 'no_lang_code', 1, 'https://ror.org/01hr7mm17 Regis Technologies (United States)'),
(6312, 'https://ror.org/01hrt5088', 'en', 1, 'https://ror.org/01hrt5088 Catawba College'),
(6313, 'https://ror.org/01hs8x754', 'en', 1, 'https://ror.org/01hs8x754 Tygerberg Hospital'),
(6314, 'https://ror.org/01htjvr84', 'en', 1, 'https://ror.org/01htjvr84 Institute of Primate Research'),
(6315, 'https://ror.org/01hw8xc07', 'en', 1, 'https://ror.org/01hw8xc07 Northern Illinois Council on Alcohol and Substance Abuse'),
(6316, 'https://ror.org/01hwxey28', 'en', 1, 'https://ror.org/01hwxey28 Volunteers of America Los Angeles'),
(6317, 'https://ror.org/01hx92781', 'en', 1, 'https://ror.org/01hx92781 Children''s Tumor Foundation'),
(6318, 'https://ror.org/01hzacg10', 'no_lang_code', 1, 'https://ror.org/01hzacg10 Meticube (Portugal)'),
(6319, 'https://ror.org/01j1cwt71', 'en', 1, 'https://ror.org/01j1cwt71 Westminster College - Pennsylvania'),
(6320, 'https://ror.org/01j1pyg35', 'no_lang_code', 1, 'https://ror.org/01j1pyg35 OriGene (United States)'),
(6321, 'https://ror.org/01j538c21', 'no_lang_code', 1, 'https://ror.org/01j538c21 Evotec (United States)'),
(6322, 'https://ror.org/01j8wfy63', 'no_lang_code', 1, 'https://ror.org/01j8wfy63 InnoSense (United States)'),
(6323, 'https://ror.org/01j9bf827', 'en', 1, 'https://ror.org/01j9bf827 Zane State College'),
(6324, 'https://ror.org/01j9pph68', 'en', 1, 'https://ror.org/01j9pph68 Orlando Regional Medical Center'),
(6325, 'https://ror.org/01jbsjf80', 'es', 1, 'https://ror.org/01jbsjf80 Instituto Costarricense de Investigación y Enseñanza en Nutrición y Salud'),
(6326, 'https://ror.org/01jgbgc06', 'en', 1, 'https://ror.org/01jgbgc06 A.V. Topchiev Institute of Petrochemical Synthesis Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефтехимического синтеза им. А.Š’.Топчиева'),
(6327, 'https://ror.org/01jgdnq42', 'no_lang_code', 1, 'https://ror.org/01jgdnq42 OSI Systems (United States)'),
(6328, 'https://ror.org/01jgzbz02', 'no_lang_code', 1, 'https://ror.org/01jgzbz02 Advanticsys (Spain)'),
(6329, 'https://ror.org/01jm0aq25', 'en', 1, 'https://ror.org/01jm0aq25 Alaska Federation of Natives'),
(6330, 'https://ror.org/01jnyam78', 'en', 1, 'https://ror.org/01jnyam78 Jarvis Christian College'),
(6331, 'https://ror.org/01jpszw66', 'no_lang_code', 1, 'https://ror.org/01jpszw66 Cirrascale (United States)'),
(6332, 'https://ror.org/01jq6tw89', 'no_lang_code', 1, 'https://ror.org/01jq6tw89 Argonon (United Kingdom)'),
(6333, 'https://ror.org/01jt2bg47', 'no_lang_code', 1, 'https://ror.org/01jt2bg47 QUAD Engineering (Canada)'),
(6334, 'https://ror.org/01jtghg16', 'no_lang_code', 1, 'https://ror.org/01jtghg16 DiscoveRx (United States)'),
(6335, 'https://ror.org/01jv71z12', 'en', 1, 'https://ror.org/01jv71z12 International Society for Computational Biology'),
(6336, 'https://ror.org/01jy3gh06', 'de', 1, 'https://ror.org/01jy3gh06 Hochrhein Institut für Rehabilitationsforschung'),
(6337, 'https://ror.org/01k1ftz35', 'no_lang_code', 1, 'https://ror.org/01k1ftz35 Novartis (Japan) ćƒŽćƒćƒ«ćƒ†ć‚£ć‚¹ ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(6338, 'https://ror.org/01k1p1v52', 'de', 1, 'https://ror.org/01k1p1v52 Klinikum Braunschweig'),
(6339, 'https://ror.org/01k458340', 'no_lang_code', 1, 'https://ror.org/01k458340 Vancouver Biotech (Canada)'),
(6340, 'https://ror.org/01k57xn28', 'sr', 1, 'https://ror.org/01k57xn28 Institut za kardiovaskularne bolesti Dedinje'),
(6341, 'https://ror.org/01k5x4673', 'en', 1, 'https://ror.org/01k5x4673 Saint Francis Medical Center'),
(6342, 'https://ror.org/01k6b9k02', 'en', 1, 'https://ror.org/01k6b9k02 Fuller Theological Seminary Seminario Teológico Fuller'),
(6343, 'https://ror.org/01k703c10', 'fr', 1, 'https://ror.org/01k703c10 Centre Hospitalier de l''AgglomƩration de Nevers'),
(6344, 'https://ror.org/01kfp4j62', 'no_lang_code', 1, 'https://ror.org/01kfp4j62 UNICOM Global (United States)'),
(6345, 'https://ror.org/01khsr243', 'en', 1, 'https://ror.org/01khsr243 St. Peter''s Hospital'),
(6346, 'https://ror.org/01kmcf465', 'fr', 1, 'https://ror.org/01kmcf465 Belgian Centre for Corrosion Study Centre Belge d''Etude de la Corrosion'),
(6347, 'https://ror.org/01kn86d52', 'en', 1, 'https://ror.org/01kn86d52 Shelton State Community College'),
(6348, 'https://ror.org/01kngac24', 'no_lang_code', 1, 'https://ror.org/01kngac24 A Thinking Ape (Canada)'),
(6349, 'https://ror.org/01kpfrj42', 'no_lang_code', 1, 'https://ror.org/01kpfrj42 Potomac Photonics (United States)'),
(6350, 'https://ror.org/01kq09n77', 'no_lang_code', 1, 'https://ror.org/01kq09n77 Altarum Institute'),
(6351, 'https://ror.org/01ks7f963', 'en', 1, 'https://ror.org/01ks7f963 National Center for Disease Control ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą¤°ą„ą¤—ą¤œą¤Øą„ą¤Æ ą¤°ą„‹ą¤— ą¤Øą¤æą¤Æą¤‚ą¤¤ą„ą¤°ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(6352, 'https://ror.org/01kv8e326', 'en', 1, 'https://ror.org/01kv8e326 Kurashiki Medical Center å€‰ę•·ęˆäŗŗē—…ć‚»ćƒ³ć‚æćƒ¼'),
(6353, 'https://ror.org/01m108388', 'no_lang_code', 1, 'https://ror.org/01m108388 Dimension Technologies (United States)'),
(6354, 'https://ror.org/01m11yv70', 'no_lang_code', 1, 'https://ror.org/01m11yv70 Aktiv-Dry (United States)'),
(6355, 'https://ror.org/01m178w43', 'en', 1, 'https://ror.org/01m178w43 Lahey Medical Center'),
(6356, 'https://ror.org/01m260238', 'no_lang_code', 1, 'https://ror.org/01m260238 Ateknea Solutions (Spain)'),
(6357, 'https://ror.org/01m2bq033', 'no_lang_code', 1, 'https://ror.org/01m2bq033 BlueRISC (United States)'),
(6358, 'https://ror.org/01m2js356', 'en', 1, 'https://ror.org/01m2js356 Orthopaedic Hospital'),
(6359, 'https://ror.org/01m30h796', 'no_lang_code', 1, 'https://ror.org/01m30h796 Sun Innovations (United States)'),
(6360, 'https://ror.org/01m3kj726', 'en', 1, 'https://ror.org/01m3kj726 American Council on Education'),
(6361, 'https://ror.org/01m9rk435', 'en', 1, 'https://ror.org/01m9rk435 Richmond University Medical Center'),
(6362, 'https://ror.org/01mb01m85', 'no_lang_code', 1, 'https://ror.org/01mb01m85 HEICO (United States)'),
(6363, 'https://ror.org/01mbxzz40', 'en', 1, 'https://ror.org/01mbxzz40 Arts Council England'),
(6364, 'https://ror.org/01mc1qv75', 'no_lang_code', 1, 'https://ror.org/01mc1qv75 Kestrel Labs (United States)'),
(6365, 'https://ror.org/01mdbyv68', 'en', 1, 'https://ror.org/01mdbyv68 Nuclear Decommissioning Authority'),
(6366, 'https://ror.org/01met4463', 'no_lang_code', 1, 'https://ror.org/01met4463 Limagrain (United Kingdom)'),
(6367, 'https://ror.org/01mhgyv56', 'es', 1, 'https://ror.org/01mhgyv56 Complejo Hospitalario de CƔceres'),
(6368, 'https://ror.org/01mk1hj86', 'en', 1, 'https://ror.org/01mk1hj86 Paul Drude Institut für Festkörperelektronik Paul Drude Institute for Solid State Electronics'),
(6369, 'https://ror.org/01mkye871', 'en', 1, 'https://ror.org/01mkye871 UPMC Altoona'),
(6370, 'https://ror.org/01mmn7c12', 'no_lang_code', 1, 'https://ror.org/01mmn7c12 D-Wave Systems (Canada)'),
(6371, 'https://ror.org/01mntwa59', 'no_lang_code', 1, 'https://ror.org/01mntwa59 Palatin Technologies (United States)'),
(6372, 'https://ror.org/01mpm4k64', 'en', 1, 'https://ror.org/01mpm4k64 Central Research Institute of Epidemiology Š¤Š‘Š£Š Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ˜Š˜ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø РоспотребнаГзора');
INSERT INTO `rors` VALUES
(6373, 'https://ror.org/01mq7rh19', 'no_lang_code', 1, 'https://ror.org/01mq7rh19 Biogate Laboratories (Canada)'),
(6374, 'https://ror.org/01mq8sh52', 'en', 1, 'https://ror.org/01mq8sh52 Institute of Biophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики клетки Российской акаГемии наук'),
(6375, 'https://ror.org/01ms1q761', 'no_lang_code', 1, 'https://ror.org/01ms1q761 Bio Signal Group (United States)'),
(6376, 'https://ror.org/01mtp2k51', 'no_lang_code', 1, 'https://ror.org/01mtp2k51 Sunstar (Japan) ć‚µćƒ³ć‚¹ć‚æćƒ¼'),
(6377, 'https://ror.org/01mvmtd83', 'en', 1, 'https://ror.org/01mvmtd83 Cicatelli Associates'),
(6378, 'https://ror.org/01mw31v11', 'no_lang_code', 1, 'https://ror.org/01mw31v11 Simpleware (United Kingdom)'),
(6379, 'https://ror.org/01mw6s018', 'it', 1, 'https://ror.org/01mw6s018 Casa di Cura Villa Garda'),
(6380, 'https://ror.org/01myrq118', 'en', 1, 'https://ror.org/01myrq118 Hastings College'),
(6381, 'https://ror.org/01n45xa04', 'en', 1, 'https://ror.org/01n45xa04 National Kidney Foundation'),
(6382, 'https://ror.org/01n6e6j62', 'en', 1, 'https://ror.org/01n6e6j62 Agence des Ɖtats-Unis pour le DĆ©veloppement International Agencia de los Estados Unidos para el Desarrollo Internacional United States Agency for International Development'),
(6383, 'https://ror.org/01ncrbb53', 'no_lang_code', 1, 'https://ror.org/01ncrbb53 Gerber Technology (United States)'),
(6384, 'https://ror.org/01nd9hr79', 'en', 1, 'https://ror.org/01nd9hr79 Forth Valley Royal Hospital'),
(6385, 'https://ror.org/01nda5g26', 'no_lang_code', 1, 'https://ror.org/01nda5g26 KDH Research & Communication (United States)'),
(6386, 'https://ror.org/01neevw97', 'fr', 1, 'https://ror.org/01neevw97 Clinique de Genolier'),
(6387, 'https://ror.org/01nfdxd69', 'en', 1, 'https://ror.org/01nfdxd69 Institutet fƶr HƤlso- och SjukvƄrdsekonomi Swedish Institute for Health Economics'),
(6388, 'https://ror.org/01ng18e06', 'no_lang_code', 1, 'https://ror.org/01ng18e06 A K Industries (United Kingdom)'),
(6389, 'https://ror.org/01njgag08', 'en', 1, 'https://ror.org/01njgag08 Japan Women''s College of Physical Education ę—„ęœ¬å„³å­ä½“č‚²å¤§å­¦'),
(6390, 'https://ror.org/01nk4hm61', 'en', 1, 'https://ror.org/01nk4hm61 Mesa Community College'),
(6391, 'https://ror.org/01nq1wn92', 'no_lang_code', 1, 'https://ror.org/01nq1wn92 VitaCyte (United States)'),
(6392, 'https://ror.org/01nqc4p29', 'no_lang_code', 1, 'https://ror.org/01nqc4p29 Workplace Technologies Research'),
(6393, 'https://ror.org/01nqsgv54', 'en', 1, 'https://ror.org/01nqsgv54 Headache & Pain Center of Palm Beach'),
(6394, 'https://ror.org/01nsxt963', 'it', 1, 'https://ror.org/01nsxt963 Ospedale Civile Di Ivrea'),
(6395, 'https://ror.org/01nw60f27', 'no_lang_code', 1, 'https://ror.org/01nw60f27 Saiseikai Wakakusa Hospital ęøˆē”Ÿä¼šč‹„č‰ē—…é™¢'),
(6396, 'https://ror.org/01nzxq896', 'en', 1, 'https://ror.org/01nzxq896 VA North Texas Health Care System'),
(6397, 'https://ror.org/01nzyv932', 'no_lang_code', 1, 'https://ror.org/01nzyv932 CDM Group (United States)'),
(6398, 'https://ror.org/01p165j02', 'no_lang_code', 1, 'https://ror.org/01p165j02 Chemat Technology (United States)'),
(6399, 'https://ror.org/01p19k166', 'en', 1, 'https://ror.org/01p19k166 Royal Victoria Infirmary'),
(6400, 'https://ror.org/01p3q4q56', 'en', 1, 'https://ror.org/01p3q4q56 Institute of Cytology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цитологии Российской акаГемии наук'),
(6401, 'https://ror.org/01p3rh655', 'en', 1, 'https://ror.org/01p3rh655 American Lung Association'),
(6402, 'https://ror.org/01p4ajf23', 'no_lang_code', 1, 'https://ror.org/01p4ajf23 ANDE (United States)'),
(6403, 'https://ror.org/01p4cne93', 'en', 1, 'https://ror.org/01p4cne93 National Center for Genome Resources'),
(6404, 'https://ror.org/01p5m7v59', 'en', 1, 'https://ror.org/01p5m7v59 National Vaccine and Serum Institute'),
(6405, 'https://ror.org/01p6fxr81', 'it', 1, 'https://ror.org/01p6fxr81 Cooperativa Sociale COOSS Marche Onlus'),
(6406, 'https://ror.org/01p7aam65', 'no_lang_code', 1, 'https://ror.org/01p7aam65 FuelCell Energy (Canada)'),
(6407, 'https://ror.org/01p7p3890', 'pt', 1, 'https://ror.org/01p7p3890 Faculdade de Ciências Médicas de Minas Gerais'),
(6408, 'https://ror.org/01p7ws813', 'no_lang_code', 1, 'https://ror.org/01p7ws813 Adamis Pharmaceuticals (United States)'),
(6409, 'https://ror.org/01p92hb48', 'en', 1, 'https://ror.org/01p92hb48 National Technical Information Service'),
(6410, 'https://ror.org/01p9xjz77', 'en', 1, 'https://ror.org/01p9xjz77 College of Exploration'),
(6411, 'https://ror.org/01pa88s49', 'no_lang_code', 1, 'https://ror.org/01pa88s49 Diamond Materials (United States)'),
(6412, 'https://ror.org/01pbz7c04', 'en', 1, 'https://ror.org/01pbz7c04 Mediterranean Agronomic Institute of Chania'),
(6413, 'https://ror.org/01pemhh03', 'en', 1, 'https://ror.org/01pemhh03 Association of Women''s Health Obstetric and Neonatal Nurses'),
(6414, 'https://ror.org/01pewsd85', 'en', 1, 'https://ror.org/01pewsd85 Estonian Academy of Sciences'),
(6415, 'https://ror.org/01pg2qx87', 'en', 1, 'https://ror.org/01pg2qx87 Cambridge City Council'),
(6416, 'https://ror.org/01phfda22', 'no_lang_code', 1, 'https://ror.org/01phfda22 Nutreco (Canada)'),
(6417, 'https://ror.org/01pj98103', 'no_lang_code', 1, 'https://ror.org/01pj98103 Vista Photonics (United States)'),
(6418, 'https://ror.org/01pphqm45', 'en', 1, 'https://ror.org/01pphqm45 Kazan Institute of Biochemistry and Biophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Казанский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø биофизики Казанского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(6419, 'https://ror.org/01ppsp263', 'en', 1, 'https://ror.org/01ppsp263 Toneyama National Hospital åˆ€ę ¹å±±å›½ē«‹ē—…é™¢'),
(6420, 'https://ror.org/01pq38j30', 'en', 1, 'https://ror.org/01pq38j30 Bennington College'),
(6421, 'https://ror.org/01ptddh35', 'en', 1, 'https://ror.org/01ptddh35 Island Institute'),
(6422, 'https://ror.org/01ptsgx95', 'fr', 1, 'https://ror.org/01ptsgx95 Institut National d''HygiĆØne du Maroc'),
(6423, 'https://ror.org/01pv1vb28', 'pl', 1, 'https://ror.org/01pv1vb28 Samodzielny Publiczny Centralny Szpital Kliniczny'),
(6424, 'https://ror.org/01pv83h16', 'en', 1, 'https://ror.org/01pv83h16 Acadia Institute of Oceanography'),
(6425, 'https://ror.org/01pveve47', 'en', 1, 'https://ror.org/01pveve47 United States Army Medical Research Institute of Infectious Diseases'),
(6426, 'https://ror.org/01pw42d50', 'en', 1, 'https://ror.org/01pw42d50 Boxer Wachler Vision Institute'),
(6427, 'https://ror.org/01pwbmp71', 'en', 1, 'https://ror.org/01pwbmp71 Schizophrenia Research Foundation'),
(6428, 'https://ror.org/01pxap840', 'en', 1, 'https://ror.org/01pxap840 Royal Armouries'),
(6429, 'https://ror.org/01pxz1r61', 'no_lang_code', 1, 'https://ror.org/01pxz1r61 Simonsen Laboratories'),
(6430, 'https://ror.org/01q2ty078', 'no_lang_code', 1, 'https://ror.org/01q2ty078 Saku Central Hospital ä½ä¹…ē·åˆē—…é™¢'),
(6431, 'https://ror.org/01qcf5s69', 'no_lang_code', 1, 'https://ror.org/01qcf5s69 STMicroelectronics (Canada)'),
(6432, 'https://ror.org/01qdw1m65', 'en', 1, 'https://ror.org/01qdw1m65 Passport to Knowledge'),
(6433, 'https://ror.org/01qe4kz15', 'no_lang_code', 1, 'https://ror.org/01qe4kz15 Goldwind (China)'),
(6434, 'https://ror.org/01qek3q18', 'en', 1, 'https://ror.org/01qek3q18 Central Electrochemical Research Institute'),
(6435, 'https://ror.org/01qgthm82', 'no_lang_code', 1, 'https://ror.org/01qgthm82 zuChem (United States)'),
(6436, 'https://ror.org/01qhm7e49', 'no_lang_code', 1, 'https://ror.org/01qhm7e49 Caterpillar (United States)'),
(6437, 'https://ror.org/01qjd9x30', 'en', 1, 'https://ror.org/01qjd9x30 Forestry Commission Scotland'),
(6438, 'https://ror.org/01qjmkr85', 'no_lang_code', 1, 'https://ror.org/01qjmkr85 Fonterra (New Zealand)'),
(6439, 'https://ror.org/01qjvcb50', 'no_lang_code', 1, 'https://ror.org/01qjvcb50 Lpath (United States)'),
(6440, 'https://ror.org/01qma4124', 'no_lang_code', 1, 'https://ror.org/01qma4124 JS Genetics (United States)'),
(6441, 'https://ror.org/01qmkwf03', 'en', 1, 'https://ror.org/01qmkwf03 San Diego Biomedical Research Institute'),
(6442, 'https://ror.org/01qnpp968', 'en', 1, 'https://ror.org/01qnpp968 New Mexico Consortium'),
(6443, 'https://ror.org/01qqd5n29', 'en', 1, 'https://ror.org/01qqd5n29 Foundation for Advanced Education in the Sciences'),
(6444, 'https://ror.org/01qr26m26', 'en', 1, 'https://ror.org/01qr26m26 Sirris'),
(6445, 'https://ror.org/01qt7mp11', 'en', 1, 'https://ror.org/01qt7mp11 Miyagi Prefectural Hospital Organization å®®åŸŽēœŒē«‹ē—…é™¢ę©Ÿę§‹'),
(6446, 'https://ror.org/01qw0br74', 'en', 1, 'https://ror.org/01qw0br74 Agricultural Biotechnology Institute'),
(6447, 'https://ror.org/01qwbfa84', 'en', 1, 'https://ror.org/01qwbfa84 CollĆØge holland Holland College'),
(6448, 'https://ror.org/01qz53q03', 'no_lang_code', 1, 'https://ror.org/01qz53q03 Mascoma (Canada)'),
(6449, 'https://ror.org/01r3ez507', 'en', 1, 'https://ror.org/01r3ez507 Sterling Hospitals'),
(6450, 'https://ror.org/01r3ztp10', 'en', 1, 'https://ror.org/01r3ztp10 Karachi Institute of Radiotherapy and Nuclear Medicine'),
(6451, 'https://ror.org/01r5r0r56', 'en', 1, 'https://ror.org/01r5r0r56 Washington Adventist Hospital'),
(6452, 'https://ror.org/01r6bzv07', 'en', 1, 'https://ror.org/01r6bzv07 Bogomoletz Institute of Physiology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізіології ім. Šž.Šž. Š‘Š¾Š³Š¾Š¼Š¾Š»ŃŒŃ†Ń'),
(6453, 'https://ror.org/01rcr9030', 'no_lang_code', 1, 'https://ror.org/01rcr9030 Consorcio Regional de Transportes de Madrid'),
(6454, 'https://ror.org/01rde7a23', 'no_lang_code', 1, 'https://ror.org/01rde7a23 Fluxion Biosciences (United States)'),
(6455, 'https://ror.org/01rdex851', 'no_lang_code', 1, 'https://ror.org/01rdex851 Arkema (United States)'),
(6456, 'https://ror.org/01rdxvn05', 'no_lang_code', 1, 'https://ror.org/01rdxvn05 Galderma (United States)'),
(6457, 'https://ror.org/01rg6cx71', 'no_lang_code', 1, 'https://ror.org/01rg6cx71 Yao Tokushukai General Hospital å…«å°¾å¾³ę“²ä¼šē·åˆē—…é™¢'),
(6458, 'https://ror.org/01rhc0n38', 'en', 1, 'https://ror.org/01rhc0n38 New Hampshire Hospital'),
(6459, 'https://ror.org/01rhvcq39', 'no_lang_code', 1, 'https://ror.org/01rhvcq39 Seashell Technology (United States)'),
(6460, 'https://ror.org/01rje3r53', 'fr', 1, 'https://ror.org/01rje3r53 Centre d''Ɖtude du Polymorphisme Humain, Fondation Jean Dausset-CEPH'),
(6461, 'https://ror.org/01rm4gj66', 'no_lang_code', 1, 'https://ror.org/01rm4gj66 SimQuest (United States)'),
(6462, 'https://ror.org/01rm78x24', 'no_lang_code', 1, 'https://ror.org/01rm78x24 Applied Photonics (United Kingdom)'),
(6463, 'https://ror.org/01rmpb303', 'no_lang_code', 1, 'https://ror.org/01rmpb303 Nautilus Biosciences (Canada)'),
(6464, 'https://ror.org/01rqa5h24', 'es', 1, 'https://ror.org/01rqa5h24 Instituto de Diagnóstico e Investigaciones Metabólicas'),
(6465, 'https://ror.org/01rqa9952', 'no_lang_code', 1, 'https://ror.org/01rqa9952 G & A Technical Software (United States)'),
(6466, 'https://ror.org/01rqavq28', 'no_lang_code', 1, 'https://ror.org/01rqavq28 Fluidity Software (United States)'),
(6467, 'https://ror.org/01rqyr540', 'en', 1, 'https://ror.org/01rqyr540 Institute of Molecular Biology and Genetics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Ń— біології і генетики'),
(6468, 'https://ror.org/01rrcbe60', 'en', 1, 'https://ror.org/01rrcbe60 White Memorial Medical Center'),
(6469, 'https://ror.org/01rsgws32', 'en', 1, 'https://ror.org/01rsgws32 Lycoming College'),
(6470, 'https://ror.org/01rtyyz33', 'pt', 1, 'https://ror.org/01rtyyz33 Instituto de Medicina Integral Professor Fernando Figueira'),
(6471, 'https://ror.org/01rvpy991', 'no_lang_code', 1, 'https://ror.org/01rvpy991 Hayashibara (Japan) ę Ŗå¼ä¼šē¤¾ ęž—åŽŸ'),
(6472, 'https://ror.org/01rwv9j63', 'en', 1, 'https://ror.org/01rwv9j63 Operation UNITE'),
(6473, 'https://ror.org/01rww7j93', 'en', 1, 'https://ror.org/01rww7j93 Tarzana Treatment Centers'),
(6474, 'https://ror.org/01rx46r39', 'no_lang_code', 1, 'https://ror.org/01rx46r39 Science Take-Out (United States)'),
(6475, 'https://ror.org/01rz37c55', 'en', 1, 'https://ror.org/01rz37c55 Bureau rĆ©gional de l’OMS pour l’Europe Regionalbüro für Europa World Health Organization Regional Office for Europe'),
(6476, 'https://ror.org/01rzx2627', 'en', 1, 'https://ror.org/01rzx2627 American College of Radiology'),
(6477, 'https://ror.org/01s2jen95', 'en', 1, 'https://ror.org/01s2jen95 Center for Practical Bioethics'),
(6478, 'https://ror.org/01s2wsy11', 'en', 1, 'https://ror.org/01s2wsy11 Chicago Association for Research and Education in Science'),
(6479, 'https://ror.org/01s3wxs84', 'no_lang_code', 1, 'https://ror.org/01s3wxs84 Barrett Technology (United States)'),
(6480, 'https://ror.org/01s4hex50', 'en', 1, 'https://ror.org/01s4hex50 Society of Automotive Engineers International'),
(6481, 'https://ror.org/01s4ync39', 'no_lang_code', 1, 'https://ror.org/01s4ync39 AureoGen Biosciences (United States)'),
(6482, 'https://ror.org/01s5ya894', 'en', 1, 'https://ror.org/01s5ya894 National Institute of Neurological Disorders and Stroke'),
(6483, 'https://ror.org/01s6vf760', 'no_lang_code', 1, 'https://ror.org/01s6vf760 Tengion (United States)'),
(6484, 'https://ror.org/01s8dqw53', 'en', 1, 'https://ror.org/01s8dqw53 West Virginia School of Osteopathic Medicine'),
(6485, 'https://ror.org/01s8ppv52', 'no_lang_code', 1, 'https://ror.org/01s8ppv52 Incell Corporation (United States)'),
(6486, 'https://ror.org/01s8vy398', 'en', 1, 'https://ror.org/01s8vy398 Parker University'),
(6487, 'https://ror.org/01s9sxm36', 'en', 1, 'https://ror.org/01s9sxm36 Presbyterian College'),
(6488, 'https://ror.org/01sb2fs58', 'en', 1, 'https://ror.org/01sb2fs58 Institute of Cardiology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карГиологии'),
(6489, 'https://ror.org/01scjva02', 'no_lang_code', 1, 'https://ror.org/01scjva02 Jeremy Benn Associates (United Kingdom)'),
(6490, 'https://ror.org/01se4r077', 'en', 1, 'https://ror.org/01se4r077 Institute of Immunological Engineering'),
(6491, 'https://ror.org/01se61h67', 'no_lang_code', 1, 'https://ror.org/01se61h67 Feilden Clegg Bradley Studios (United Kingdom)'),
(6492, 'https://ror.org/01sgg2e20', 'en', 1, 'https://ror.org/01sgg2e20 Merit Network'),
(6493, 'https://ror.org/01sgx5h42', 'en', 1, 'https://ror.org/01sgx5h42 Cuyahoga Community College'),
(6494, 'https://ror.org/01shj3957', 'en', 1, 'https://ror.org/01shj3957 Red Deer College'),
(6495, 'https://ror.org/01sj8qf84', 'en', 1, 'https://ror.org/01sj8qf84 SecrƩtariat du Conseil du TrƩsor du Canada Treasury Board of Canada Secretariat'),
(6496, 'https://ror.org/01sjx9496', 'no_lang_code', 1, 'https://ror.org/01sjx9496 Pharmaceutical Product Development (United States)'),
(6497, 'https://ror.org/01skvfg56', 'en', 1, 'https://ror.org/01skvfg56 Tallahassee Community College'),
(6498, 'https://ror.org/01skwyh03', 'no_lang_code', 1, 'https://ror.org/01skwyh03 Nissan Chemical Corporation (Japan) ę—„ē”£åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(6499, 'https://ror.org/01spwt212', 'en', 1, 'https://ror.org/01spwt212 Swiss Paraplegic Center'),
(6500, 'https://ror.org/01srwdt35', 'en', 1, 'https://ror.org/01srwdt35 Center for Dermatology and Laser Surgery'),
(6501, 'https://ror.org/01ssv2r52', 'no_lang_code', 1, 'https://ror.org/01ssv2r52 ImageCat (United States)'),
(6502, 'https://ror.org/01st38774', 'no_lang_code', 1, 'https://ror.org/01st38774 Geninov (Canada)'),
(6503, 'https://ror.org/01strh679', 'sr', 1, 'https://ror.org/01strh679 Klinički centar NiÅ”, ŠšŠ»ŠøŠ½ŠøŃ‡ŠŗŠø центар ŠŠøŃˆ'),
(6504, 'https://ror.org/01svwyw14', 'en', 1, 'https://ror.org/01svwyw14 Croatian Veterinary Institute Hrvatski veterinarski institut Zagreb'),
(6505, 'https://ror.org/01sw9e110', 'en', 1, 'https://ror.org/01sw9e110 Howard Brown Health Center'),
(6506, 'https://ror.org/01syx9t96', 'en', 1, 'https://ror.org/01syx9t96 Fond du Lac Reservation'),
(6507, 'https://ror.org/01szgg304', 'en', 1, 'https://ror.org/01szgg304 Toyama City Hospital åÆŒå±±åø‚ē«‹åÆŒå±±åø‚ę°‘ē—…é™¢'),
(6508, 'https://ror.org/01t05fr30', 'en', 1, 'https://ror.org/01t05fr30 National Conference on Interstate Milk Shipments'),
(6509, 'https://ror.org/01t0n2c80', 'de', 1, 'https://ror.org/01t0n2c80 Klinikum Oldenburg'),
(6510, 'https://ror.org/01t1ct488', 'no_lang_code', 1, 'https://ror.org/01t1ct488 Verafin (Canada)'),
(6511, 'https://ror.org/01t413275', 'en', 1, 'https://ror.org/01t413275 Sri Ramakrishna Institute of Paramedical Sciences'),
(6512, 'https://ror.org/01t44n583', 'no_lang_code', 1, 'https://ror.org/01t44n583 MBio Diagnostics (United States)'),
(6513, 'https://ror.org/01t4a3951', 'no_lang_code', 1, 'https://ror.org/01t4a3951 Treatment Innovations (United States)'),
(6514, 'https://ror.org/01t5jw607', 'en', 1, 'https://ror.org/01t5jw607 Houston Independent School District'),
(6515, 'https://ror.org/01t6qh616', 'en', 1, 'https://ror.org/01t6qh616 Shriners Hospitals for Children - Spokane'),
(6516, 'https://ror.org/01t77y753', 'en', 1, 'https://ror.org/01t77y753 Regis College'),
(6517, 'https://ror.org/01t8qhk85', 'en', 1, 'https://ror.org/01t8qhk85 Conestoga College'),
(6518, 'https://ror.org/01t8vn565', 'fr', 1, 'https://ror.org/01t8vn565 Clinique de l''Yvette Yvette clinic'),
(6519, 'https://ror.org/01ta8cw69', 'no_lang_code', 1, 'https://ror.org/01ta8cw69 White Point Systems (United States)'),
(6520, 'https://ror.org/01tam1k81', 'en', 1, 'https://ror.org/01tam1k81 Healthcare Education Associates'),
(6521, 'https://ror.org/01tay0360', 'en', 1, 'https://ror.org/01tay0360 Park Nicollet Health Services'),
(6522, 'https://ror.org/01tbdbg27', 'en', 1, 'https://ror.org/01tbdbg27 City of York Council'),
(6523, 'https://ror.org/01tbe3k42', 'no_lang_code', 1, 'https://ror.org/01tbe3k42 Alpha Genesis (United States)'),
(6524, 'https://ror.org/01tbvb523', 'en', 1, 'https://ror.org/01tbvb523 Florida Orthopaedic Institute'),
(6525, 'https://ror.org/01tcbxg35', 'no_lang_code', 1, 'https://ror.org/01tcbxg35 Circle Solutions'),
(6526, 'https://ror.org/01teg2k73', 'en', 1, 'https://ror.org/01teg2k73 National Institute Of Hygiene And Epidemiology Viện Vệ sinh dịch tį»… Trung ʰʔng'),
(6527, 'https://ror.org/01th0ab46', 'en', 1, 'https://ror.org/01th0ab46 Institute for Family Health'),
(6528, 'https://ror.org/01tqja591', 'no_lang_code', 1, 'https://ror.org/01tqja591 Morinaga (Japan) ę£®ę°øč£½č“ę Ŗå¼ä¼šē¤¾'),
(6529, 'https://ror.org/01tt80y42', 'fr', 1, 'https://ror.org/01tt80y42 HƓpital privƩ Clairval'),
(6530, 'https://ror.org/01ttgmj63', 'pt', 1, 'https://ror.org/01ttgmj63 Fundação UniversitÔria de Cardiologia, Instituto de Cardiologia do Rio Grande do Sul'),
(6531, 'https://ror.org/01ttkn505', 'en', 1, 'https://ror.org/01ttkn505 Biotechnical Services'),
(6532, 'https://ror.org/01tv6se08', 'no_lang_code', 1, 'https://ror.org/01tv6se08 Prism Clinical Imaging (United States)'),
(6533, 'https://ror.org/01tw7ew41', 'en', 1, 'https://ror.org/01tw7ew41 Surrey Place Centre'),
(6534, 'https://ror.org/01twtwf23', 'no_lang_code', 1, 'https://ror.org/01twtwf23 Alberti''s Window (United States)'),
(6535, 'https://ror.org/01twwfv38', 'en', 1, 'https://ror.org/01twwfv38 Valley Hospital'),
(6536, 'https://ror.org/01txpgc43', 'no_lang_code', 1, 'https://ror.org/01txpgc43 Operational Technologies Corporation (United States)'),
(6537, 'https://ror.org/01ty4bg86', 'en', 1, 'https://ror.org/01ty4bg86 Shanghai Cancer Institute'),
(6538, 'https://ror.org/01tyr1g37', 'en', 1, 'https://ror.org/01tyr1g37 Institute for Biological Instrumentation Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологического ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ Š ŠŠ'),
(6539, 'https://ror.org/01v13p275', 'en', 1, 'https://ror.org/01v13p275 Watford General Hospital'),
(6540, 'https://ror.org/01v3bqg10', 'no_lang_code', 1, 'https://ror.org/01v3bqg10 Shionogi (Japan) å”©é‡Žē¾©č£½č–¬'),
(6541, 'https://ror.org/01v4ea389', 'no_lang_code', 1, 'https://ror.org/01v4ea389 Sizewise (United States)'),
(6542, 'https://ror.org/01v4tsw25', 'en', 1, 'https://ror.org/01v4tsw25 Engineering Conferences International'),
(6543, 'https://ror.org/01v51gh79', 'no_lang_code', 1, 'https://ror.org/01v51gh79 NanoCellect Biomedical (United States)'),
(6544, 'https://ror.org/01v5pfj68', 'no_lang_code', 1, 'https://ror.org/01v5pfj68 Sarver and Associates (United States)'),
(6545, 'https://ror.org/01v66s741', 'no_lang_code', 1, 'https://ror.org/01v66s741 3D-Micromac (Germany)'),
(6546, 'https://ror.org/01v76qw30', 'en', 1, 'https://ror.org/01v76qw30 Northlake Medical Center'),
(6547, 'https://ror.org/01v791m31', 'no_lang_code', 1, 'https://ror.org/01v791m31 NEC (United States) NEC Corporation of America'),
(6548, 'https://ror.org/01v7p8902', 'no_lang_code', 1, 'https://ror.org/01v7p8902 Interklinik'),
(6549, 'https://ror.org/01v8a4s08', 'no_lang_code', 1, 'https://ror.org/01v8a4s08 RadioMedix (United States)'),
(6550, 'https://ror.org/01v9kvt79', 'no_lang_code', 1, 'https://ror.org/01v9kvt79 Bracco (Switzerland)'),
(6551, 'https://ror.org/01vepzj85', 'no_lang_code', 1, 'https://ror.org/01vepzj85 Roche (Japan) 中外製薬'),
(6552, 'https://ror.org/01vfnp540', 'no_lang_code', 1, 'https://ror.org/01vfnp540 Immune Response BioPharma (United States)'),
(6553, 'https://ror.org/01vgd5418', 'en', 1, 'https://ror.org/01vgd5418 Mississippi Gulf Coast Community College'),
(6554, 'https://ror.org/01vj62p39', 'no_lang_code', 1, 'https://ror.org/01vj62p39 Cadence Biomedical (United States)'),
(6555, 'https://ror.org/01vjhzs23', 'sk', 1, 'https://ror.org/01vjhzs23 Onkologický Ústav Svätej Alžbety'),
(6556, 'https://ror.org/01vjngb81', 'en', 1, 'https://ror.org/01vjngb81 Valley Medical Center'),
(6557, 'https://ror.org/01vmvt909', 'en', 1, 'https://ror.org/01vmvt909 National Migraine Centre'),
(6558, 'https://ror.org/01vp49361', 'no_lang_code', 1, 'https://ror.org/01vp49361 Merck Serono (Switzerland)'),
(6559, 'https://ror.org/01vqjmx11', 'en', 1, 'https://ror.org/01vqjmx11 Center for Economic and Policy Research'),
(6560, 'https://ror.org/01vsg6m68', 'en', 1, 'https://ror.org/01vsg6m68 State Science and Technology Institute'),
(6561, 'https://ror.org/01vt38y66', 'no_lang_code', 1, 'https://ror.org/01vt38y66 PhosphorTech (United States)'),
(6562, 'https://ror.org/01vv3y523', 'en', 1, 'https://ror.org/01vv3y523 Torbay Hospital'),
(6563, 'https://ror.org/01vv6sh78', 'no_lang_code', 1, 'https://ror.org/01vv6sh78 Cytex Therapeutics (United States)'),
(6564, 'https://ror.org/01vva4430', 'en', 1, 'https://ror.org/01vva4430 Roland Institute of Pharmaceutical Sciences'),
(6565, 'https://ror.org/01vvexy08', 'no_lang_code', 1, 'https://ror.org/01vvexy08 CHI Associates (United States)'),
(6566, 'https://ror.org/01vwr6t80', 'en', 1, 'https://ror.org/01vwr6t80 AcadƩmie militaire de caroline du sud Citadel'),
(6567, 'https://ror.org/01vyrje42', 'it', 1, 'https://ror.org/01vyrje42 Istituto Ortopedico Galeazzi'),
(6568, 'https://ror.org/01vzd5j10', 'en', 1, 'https://ror.org/01vzd5j10 National Tuberculosis Institute'),
(6569, 'https://ror.org/01w19ak89', 'en', 1, 'https://ror.org/01w19ak89 Max Planck Institute for Informatics Max-Planck-Institut für Informatik'),
(6570, 'https://ror.org/01w7ahq52', 'no_lang_code', 1, 'https://ror.org/01w7ahq52 ACRI Group (France)'),
(6571, 'https://ror.org/01w7yjk26', 'no_lang_code', 1, 'https://ror.org/01w7yjk26 Phoenix Science and Technology (United States)'),
(6572, 'https://ror.org/01wakgv04', 'no_lang_code', 1, 'https://ror.org/01wakgv04 Naprogenix (United States)'),
(6573, 'https://ror.org/01wc2qb11', 'en', 1, 'https://ror.org/01wc2qb11 Tri-County Health Department'),
(6574, 'https://ror.org/01wfg6h04', 'en', 1, 'https://ror.org/01wfg6h04 Pharmo Institute'),
(6575, 'https://ror.org/01wfk7k95', 'en', 1, 'https://ror.org/01wfk7k95 Area Cooperative Education Services'),
(6576, 'https://ror.org/01wj8vf34', 'en', 1, 'https://ror.org/01wj8vf34 Raghudeep Eye Hospital'),
(6577, 'https://ror.org/01wjn2x92', 'en', 1, 'https://ror.org/01wjn2x92 National Center for HIV/AIDS Viral Hepatitis STD and TB Prevention'),
(6578, 'https://ror.org/01wm02973', 'no_lang_code', 1, 'https://ror.org/01wm02973 Foster-Miller (United States)'),
(6579, 'https://ror.org/01wnfae18', 'en', 1, 'https://ror.org/01wnfae18 Central Research Institute ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6580, 'https://ror.org/01wq93z70', 'en', 1, 'https://ror.org/01wq93z70 Chinese National Human Genome Center'),
(6581, 'https://ror.org/01wqae691', 'it', 1, 'https://ror.org/01wqae691 Institute for Animal Production System in Mediterranean Environment Istituto per il Sistema Produzione Animale in Ambiente Mediterraneo'),
(6582, 'https://ror.org/01wwwe276', 'en', 1, 'https://ror.org/01wwwe276 National Centre for Atmospheric Science'),
(6583, 'https://ror.org/01wx3gr42', 'en', 1, 'https://ror.org/01wx3gr42 Departamento de Educación de la Ciudad de Nueva York DĆ©partement de l''Ɖducation de la ville de new york New York City Department of Education'),
(6584, 'https://ror.org/01wxb8362', 'en', 1, 'https://ror.org/01wxb8362 Maria Cecilia Hospital'),
(6585, 'https://ror.org/01wxzd328', 'no_lang_code', 1, 'https://ror.org/01wxzd328 Kunitachi Sakura Hospital å›½ē«‹ć•ćć‚‰ē—…é™¢'),
(6586, 'https://ror.org/01wyqb997', 'fr', 1, 'https://ror.org/01wyqb997 Centre International de Recherches MƩdicales de Franceville'),
(6587, 'https://ror.org/01x00nv07', 'fr', 1, 'https://ror.org/01x00nv07 Coalition des Organismes Communautaires QuƩbƩcois de Lutte Contre le Sida'),
(6588, 'https://ror.org/01x0vtk27', 'no_lang_code', 1, 'https://ror.org/01x0vtk27 Saneron CCEL Therapeutics (United States)'),
(6589, 'https://ror.org/01x37cs02', 'en', 1, 'https://ror.org/01x37cs02 West Cumberland Hospital'),
(6590, 'https://ror.org/01x59wb38', 'no_lang_code', 1, 'https://ror.org/01x59wb38 DesignMedix (United States)'),
(6591, 'https://ror.org/01x5py295', 'no_lang_code', 1, 'https://ror.org/01x5py295 SC Solutions (United States)'),
(6592, 'https://ror.org/01x62kg38', 'en', 1, 'https://ror.org/01x62kg38 Tianjin People''s Hospital å¤©ę“„åø‚äŗŗę°‘åŒ»é™¢'),
(6593, 'https://ror.org/01x63gj61', 'en', 1, 'https://ror.org/01x63gj61 Hillsborough Community College'),
(6594, 'https://ror.org/01x64pv72', 'en', 1, 'https://ror.org/01x64pv72 National Center for Environmental Assessment (EPA)'),
(6595, 'https://ror.org/01x653j15', 'no_lang_code', 1, 'https://ror.org/01x653j15 ManTech International (United States)'),
(6596, 'https://ror.org/01x693z07', 'no_lang_code', 1, 'https://ror.org/01x693z07 NovaSterilis (United States)'),
(6597, 'https://ror.org/01x6n0t15', 'en', 1, 'https://ror.org/01x6n0t15 Papua New Guinea Institute of Medical Research'),
(6598, 'https://ror.org/01x8bpc61', 'en', 1, 'https://ror.org/01x8bpc61 Saint Elizabeth Regional Medical Center'),
(6599, 'https://ror.org/01x994m09', 'en', 1, 'https://ror.org/01x994m09 American Society For Testing and Materials'),
(6600, 'https://ror.org/01x9bq055', 'no_lang_code', 1, 'https://ror.org/01x9bq055 Cairn Research (United Kingdom)'),
(6601, 'https://ror.org/01xb4fs50', 'en', 1, 'https://ror.org/01xb4fs50 Korea Atomic Energy Research Institute ķ•œźµ­ģ›ģžė „ģ—°źµ¬ģ›'),
(6602, 'https://ror.org/01xd1rz53', 'en', 1, 'https://ror.org/01xd1rz53 National Association of State Mental Health Program Directors'),
(6603, 'https://ror.org/01xd2tj29', 'no_lang_code', 1, 'https://ror.org/01xd2tj29 Weifang People''s Hospital ę½åŠåø‚äŗŗę°‘åŒ»é™¢'),
(6604, 'https://ror.org/01xdq1k91', 'no_lang_code', 1, 'https://ror.org/01xdq1k91 Japan Tobacco (Japan) ę—„ęœ¬ćŸć°ć“ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(6605, 'https://ror.org/01xe86309', 'en', 1, 'https://ror.org/01xe86309 Instituto Nacional de Pesquisas da AmazƓnia National Institute of Amazonian Research'),
(6606, 'https://ror.org/01xfgtq85', 'en', 1, 'https://ror.org/01xfgtq85 VA West Los Angeles Medical Center'),
(6607, 'https://ror.org/01xgfaw76', 'en', 1, 'https://ror.org/01xgfaw76 Academy of Sciences Republic of Uzbekistan OŹ»zbekiston Respublikasi Fanlar Akademiyasi ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Узбекистана ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŠø илмҳои Ӯзбакистон'),
(6608, 'https://ror.org/01xgjqy82', 'no_lang_code', 1, 'https://ror.org/01xgjqy82 Nicoya Lifesciences (Canada)'),
(6609, 'https://ror.org/01xh2bb57', 'no_lang_code', 1, 'https://ror.org/01xh2bb57 WisdomTools (United States)'),
(6610, 'https://ror.org/01xk5xs43', 'no_lang_code', 1, 'https://ror.org/01xk5xs43 Carl Zeiss (United States)'),
(6611, 'https://ror.org/01xpfz214', 'no_lang_code', 1, 'https://ror.org/01xpfz214 Team Industrial Services (United States)'),
(6612, 'https://ror.org/01xpm4m93', 'no_lang_code', 1, 'https://ror.org/01xpm4m93 Robert Olson Consulting (United States)'),
(6613, 'https://ror.org/01xqc9g05', 'en', 1, 'https://ror.org/01xqc9g05 University of Jamestown'),
(6614, 'https://ror.org/01xz1f624', 'no_lang_code', 1, 'https://ror.org/01xz1f624 OFM Research (United States)'),
(6615, 'https://ror.org/01xzapm83', 'no_lang_code', 1, 'https://ror.org/01xzapm83 Seamon (United States)'),
(6616, 'https://ror.org/01y0mgq54', 'en', 1, 'https://ror.org/01y0mgq54 Elizabethtown College'),
(6617, 'https://ror.org/01y2d1w05', 'en', 1, 'https://ror.org/01y2d1w05 St. Mary''s College of Maryland'),
(6618, 'https://ror.org/01y3v6r39', 'en', 1, 'https://ror.org/01y3v6r39 Spine Institute of Louisiana'),
(6619, 'https://ror.org/01y639h39', 'no_lang_code', 1, 'https://ror.org/01y639h39 Raptamer Discovery Group (United States)'),
(6620, 'https://ror.org/01y720297', 'en', 1, 'https://ror.org/01y720297 Regional Medical Research Centre ą¦†ą¦žą§ą¦šą¦²ą¦æą¦• ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ গৱেষণা ą¦•ą§‡ą¦Øą§ą¦¦ą§ą§°, ą¦”ą¦æą¦¬ą§ą§°ą§ą¦—ą¦”ą¦¼'),
(6621, 'https://ror.org/01y7ahq16', 'no_lang_code', 1, 'https://ror.org/01y7ahq16 Technology Dynamics (United States)'),
(6622, 'https://ror.org/01y8myk27', 'en', 1, 'https://ror.org/01y8myk27 Dominican College of Blauvelt'),
(6623, 'https://ror.org/01y9arx16', 'en', 1, 'https://ror.org/01y9arx16 Max Planck Institut für Chemische Energiekonversion Max Planck Institute for Chemical Energy Conversion'),
(6624, 'https://ror.org/01ybxrm80', 'en', 1, 'https://ror.org/01ybxrm80 Yodogawa Christian Hospital ę·€å·ć‚­ćƒŖć‚¹ćƒˆę•™ē—…é™¢'),
(6625, 'https://ror.org/01yezas83', 'fr', 1, 'https://ror.org/01yezas83 Centre EugĆØne Marquis'),
(6626, 'https://ror.org/01yfkcs46', 'it', 1, 'https://ror.org/01yfkcs46 CSI Piemonte'),
(6627, 'https://ror.org/01ygdkx97', 'no_lang_code', 1, 'https://ror.org/01ygdkx97 American Life Science Pharmaceuticals (United States)'),
(6628, 'https://ror.org/01yjs2h26', 'en', 1, 'https://ror.org/01yjs2h26 Design Council'),
(6629, 'https://ror.org/01yn60017', 'en', 1, 'https://ror.org/01yn60017 Waukesha Memorial Hospital'),
(6630, 'https://ror.org/01ynheb59', 'no_lang_code', 1, 'https://ror.org/01ynheb59 Sensor Electronics (United States)'),
(6631, 'https://ror.org/01ynxg963', 'en', 1, 'https://ror.org/01ynxg963 Pacific Medical Research Foundation'),
(6632, 'https://ror.org/01yq9ya27', 'en', 1, 'https://ror.org/01yq9ya27 Institute of Gene Biology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии гена'),
(6633, 'https://ror.org/01yr73893', 'en', 1, 'https://ror.org/01yr73893 European Molecular Biology Laboratory'),
(6634, 'https://ror.org/01yrmk064', 'en', 1, 'https://ror.org/01yrmk064 Guttmacher Institute'),
(6635, 'https://ror.org/01yrmxe32', 'no_lang_code', 1, 'https://ror.org/01yrmxe32 NORAM (Canada)'),
(6636, 'https://ror.org/01yttm365', 'no_lang_code', 1, 'https://ror.org/01yttm365 Viasystems (United States)'),
(6637, 'https://ror.org/01yxvb356', 'no_lang_code', 1, 'https://ror.org/01yxvb356 Anacomp (United States)'),
(6638, 'https://ror.org/01z142p52', 'es', 1, 'https://ror.org/01z142p52 Instituto Nacional de Rehabilitación Psicofísica'),
(6639, 'https://ror.org/01z1z7017', 'de', 1, 'https://ror.org/01z1z7017 Forschungsinstitut für Kinderernährung'),
(6640, 'https://ror.org/01z4haz29', 'no_lang_code', 1, 'https://ror.org/01z4haz29 Guild Associates (United States)'),
(6641, 'https://ror.org/01z4n2m85', 'it', 1, 'https://ror.org/01z4n2m85 Istituto Scientifico Italiano Colonna Vertebrale Italian Scientific Institute for the Spine'),
(6642, 'https://ror.org/01z5jvj74', 'en', 1, 'https://ror.org/01z5jvj74 ZNA Middelheim Hospital'),
(6643, 'https://ror.org/01z6qpb13', 'pt', 1, 'https://ror.org/01z6qpb13 Faculdade de Ciências Médicas da Santa Casa de São Paulo'),
(6644, 'https://ror.org/01z6vd941', 'no_lang_code', 1, 'https://ror.org/01z6vd941 Millar (United States)'),
(6645, 'https://ror.org/01z850041', 'no_lang_code', 1, 'https://ror.org/01z850041 Technology Assessment and Transfer (United States)'),
(6646, 'https://ror.org/01z89mt14', 'en', 1, 'https://ror.org/01z89mt14 Ottawa Regional Cancer Foundation'),
(6647, 'https://ror.org/01z8hbn82', 'en', 1, 'https://ror.org/01z8hbn82 Diabetes & Glandular Disease Clinic'),
(6648, 'https://ror.org/01zd81893', 'no_lang_code', 1, 'https://ror.org/01zd81893 Modulim (United States)'),
(6649, 'https://ror.org/01zdgf096', 'en', 1, 'https://ror.org/01zdgf096 Baptist Health Care'),
(6650, 'https://ror.org/01zdmh905', 'en', 1, 'https://ror.org/01zdmh905 Office of the Chief Medical Examiner'),
(6651, 'https://ror.org/01zj9wm95', 'en', 1, 'https://ror.org/01zj9wm95 Yuan''s General Hospital é˜®ē¶œåˆé†«é™¢'),
(6652, 'https://ror.org/01zpdb870', 'fr', 1, 'https://ror.org/01zpdb870 Centre MƩdical de Vidy'),
(6653, 'https://ror.org/01zpg3b52', 'no_lang_code', 1, 'https://ror.org/01zpg3b52 Theradex Oncology (United States)'),
(6654, 'https://ror.org/01zpyjx73', 'en', 1, 'https://ror.org/01zpyjx73 Renal Association'),
(6655, 'https://ror.org/01zq3h513', 'it', 1, 'https://ror.org/01zq3h513 Ospedale Psichiatrico Paolo Pini'),
(6656, 'https://ror.org/01zq90d67', 'en', 1, 'https://ror.org/01zq90d67 Institute for Marine Biosciences'),
(6657, 'https://ror.org/01zr7w027', 'no_lang_code', 1, 'https://ror.org/01zr7w027 INFICON (United States)'),
(6658, 'https://ror.org/01zt0tq34', 'no_lang_code', 1, 'https://ror.org/01zt0tq34 Alere (United States)'),
(6659, 'https://ror.org/01zw2nq07', 'en', 1, 'https://ror.org/01zw2nq07 Indian Institute of Integrative Medicine'),
(6660, 'https://ror.org/01zzhbb93', 'en', 1, 'https://ror.org/01zzhbb93 Linn Benton Community College'),
(6661, 'https://ror.org/01zzqep61', 'it', 1, 'https://ror.org/01zzqep61 Istituto di Tipizzazione Tissutale e Problemi della Dialisi'),
(6662, 'https://ror.org/0202bpc71', 'tr', 1, 'https://ror.org/0202bpc71 Türkiye Cumhuriyeti Devlet Demiryolları Hastanesi'),
(6663, 'https://ror.org/0202zza47', 'en', 1, 'https://ror.org/0202zza47 Children’s Discovery Museum of San Jose'),
(6664, 'https://ror.org/0203rjz92', 'no_lang_code', 1, 'https://ror.org/0203rjz92 Insmed (United States)'),
(6665, 'https://ror.org/0204af661', 'no_lang_code', 1, 'https://ror.org/0204af661 EarthSky'),
(6666, 'https://ror.org/0207cws49', 'no_lang_code', 1, 'https://ror.org/0207cws49 Oncor (United States)'),
(6667, 'https://ror.org/0207yj108', 'en', 1, 'https://ror.org/0207yj108 Nashville State Community College'),
(6668, 'https://ror.org/0208r0146', 'en', 1, 'https://ror.org/0208r0146 Parkland Memorial Hospital'),
(6669, 'https://ror.org/020as7681', 'en', 1, 'https://ror.org/020as7681 Max Planck Institute for the Science of Light Max-Planck-Institut für die Physik des Lichts'),
(6670, 'https://ror.org/020ave461', 'no_lang_code', 1, 'https://ror.org/020ave461 Proton (United Kingdom)'),
(6671, 'https://ror.org/020bcb226', 'en', 1, 'https://ror.org/020bcb226 Oakton Community College'),
(6672, 'https://ror.org/020cs8b78', 'en', 1, 'https://ror.org/020cs8b78 Global Hospitals'),
(6673, 'https://ror.org/020d9fy55', 'en', 1, 'https://ror.org/020d9fy55 Gimbel Eye Centre'),
(6674, 'https://ror.org/020eh2733', 'en', 1, 'https://ror.org/020eh2733 National Heart Hospital ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° карГиологична болница'),
(6675, 'https://ror.org/020gf7g55', 'no_lang_code', 1, 'https://ror.org/020gf7g55 Mosaiques Diagnostics and Therapeutics (Germany)'),
(6676, 'https://ror.org/020gftc86', 'en', 1, 'https://ror.org/020gftc86 Holy Names University'),
(6677, 'https://ror.org/020h1bf56', 'en', 1, 'https://ror.org/020h1bf56 United States Public Health Service Commissioned Officers Association'),
(6678, 'https://ror.org/020h1fj51', 'no_lang_code', 1, 'https://ror.org/020h1fj51 NDI Group (United States)'),
(6679, 'https://ror.org/020k5bb13', 'it', 1, 'https://ror.org/020k5bb13 Ospedale dei Pellegrini'),
(6680, 'https://ror.org/020mdmp08', 'en', 1, 'https://ror.org/020mdmp08 Student Assistance Services'),
(6681, 'https://ror.org/020nhee14', 'fr', 1, 'https://ror.org/020nhee14 Collège Mérici Merici College'),
(6682, 'https://ror.org/020nseq49', 'no_lang_code', 1, 'https://ror.org/020nseq49 DIApedia (United States)'),
(6683, 'https://ror.org/020nzw227', 'no_lang_code', 1, 'https://ror.org/020nzw227 Cybernet Systems Corporation (United States)'),
(6684, 'https://ror.org/020pekv35', 'en', 1, 'https://ror.org/020pekv35 Center for Applied Linguistics'),
(6685, 'https://ror.org/020q1kr70', 'en', 1, 'https://ror.org/020q1kr70 Premier Community Health'),
(6686, 'https://ror.org/020wjcq07', 'en', 1, 'https://ror.org/020wjcq07 Shibaura Institute of Technology čŠęµ¦å·„ę„­å¤§å­¦'),
(6687, 'https://ror.org/020wnve48', 'no_lang_code', 1, 'https://ror.org/020wnve48 Spectris (United Kingdom)'),
(6688, 'https://ror.org/020wypw95', 'no_lang_code', 1, 'https://ror.org/020wypw95 Lord Corporation (United States)'),
(6689, 'https://ror.org/020xab067', 'en', 1, 'https://ror.org/020xab067 Alberta Community Council on HIV'),
(6690, 'https://ror.org/02112mb03', 'it', 1, 'https://ror.org/02112mb03 Filippo Del Ponte Hospital Ospedale Filippo Del Ponte Varese'),
(6691, 'https://ror.org/0211zmf46', 'en', 1, 'https://ror.org/0211zmf46 National Metallurgical Laboratory'),
(6692, 'https://ror.org/02120t614', 'en', 1, 'https://ror.org/02120t614 Chiba Cancer Center åƒč‘‰ēœŒćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(6693, 'https://ror.org/0212bzt20', 'no_lang_code', 1, 'https://ror.org/0212bzt20 DesignBuilder Software (United Kingdom)'),
(6694, 'https://ror.org/0212h5y77', 'en', 1, 'https://ror.org/0212h5y77 Inova Fairfax Hospital'),
(6695, 'https://ror.org/0215tke07', 'no_lang_code', 1, 'https://ror.org/0215tke07 Medical Imaging Applications (United States)'),
(6696, 'https://ror.org/0217xr937', 'en', 1, 'https://ror.org/0217xr937 Aspen Global Change Institute'),
(6697, 'https://ror.org/0219mbj11', 'no_lang_code', 1, 'https://ror.org/0219mbj11 Karo Pharma (Sweden)'),
(6698, 'https://ror.org/021a7d287', 'en', 1, 'https://ror.org/021a7d287 Royal College of Surgeons of Edinburgh'),
(6699, 'https://ror.org/021ctjg87', 'en', 1, 'https://ror.org/021ctjg87 Northern Territory Health Services'),
(6700, 'https://ror.org/021e69h28', 'en', 1, 'https://ror.org/021e69h28 Adelphi Research'),
(6701, 'https://ror.org/021f4qx93', 'en', 1, 'https://ror.org/021f4qx93 Noto General Hospital å…¬ē«‹čƒ½ē™»ē·åˆē—…é™¢'),
(6702, 'https://ror.org/021g0dt18', 'no_lang_code', 1, 'https://ror.org/021g0dt18 International Trypanotolerance Centre'),
(6703, 'https://ror.org/021gsjb92', 'no_lang_code', 1, 'https://ror.org/021gsjb92 Diacon (Canada)'),
(6704, 'https://ror.org/021n8sy59', 'no_lang_code', 1, 'https://ror.org/021n8sy59 National Integrated Solutions (United Kingdom)'),
(6705, 'https://ror.org/021nkvj61', 'no_lang_code', 1, 'https://ror.org/021nkvj61 MGS Research (United States)'),
(6706, 'https://ror.org/021q72e63', 'no_lang_code', 1, 'https://ror.org/021q72e63 Novus Biologicals (United States)'),
(6707, 'https://ror.org/021r5ns39', 'en', 1, 'https://ror.org/021r5ns39 National Environmental Engineering Research Institute'),
(6708, 'https://ror.org/021rths28', 'en', 1, 'https://ror.org/021rths28 National Center for Chronic Disease Prevention and Health Promotion'),
(6709, 'https://ror.org/021sagw45', 'no_lang_code', 1, 'https://ror.org/021sagw45 Nicolet Chartrand Knoll (Canada)'),
(6710, 'https://ror.org/021spd704', 'en', 1, 'https://ror.org/021spd704 El Camino College'),
(6711, 'https://ror.org/021w7cz98', 'en', 1, 'https://ror.org/021w7cz98 Posnick Center for Facial Plastic Surgery'),
(6712, 'https://ror.org/021wvg932', 'no_lang_code', 1, 'https://ror.org/021wvg932 Center For Remote Sensing (United States)'),
(6713, 'https://ror.org/021z7gb33', 'no_lang_code', 1, 'https://ror.org/021z7gb33 Evolutionary Genomics (United States)'),
(6714, 'https://ror.org/021zg3m87', 'ro', 1, 'https://ror.org/021zg3m87 Institutul Oncologic Bucuresti'),
(6715, 'https://ror.org/0220wzg80', 'no_lang_code', 1, 'https://ror.org/0220wzg80 South Australian Water Corporation'),
(6716, 'https://ror.org/022194d90', 'no_lang_code', 1, 'https://ror.org/022194d90 Ajinomoto Althea (United States)'),
(6717, 'https://ror.org/0221y9f82', 'no_lang_code', 1, 'https://ror.org/0221y9f82 Beneficial Designs (United States)'),
(6718, 'https://ror.org/02237ny03', 'en', 1, 'https://ror.org/02237ny03 Taste and Smell Clinic'),
(6719, 'https://ror.org/0224bx186', 'en', 1, 'https://ror.org/0224bx186 Nazareth College'),
(6720, 'https://ror.org/0226ax553', 'en', 1, 'https://ror.org/0226ax553 St. Mary''s Medical Center'),
(6721, 'https://ror.org/022c1xk47', 'no_lang_code', 1, 'https://ror.org/022c1xk47 Honda (Germany)'),
(6722, 'https://ror.org/022ctzz37', 'no_lang_code', 1, 'https://ror.org/022ctzz37 Ohtsuka Eye Hospital å¤§å”šēœ¼ē§‘ē—…é™¢'),
(6723, 'https://ror.org/022e9hp02', 'en', 1, 'https://ror.org/022e9hp02 Family Health Centers of San Diego'),
(6724, 'https://ror.org/022fswr88', 'no_lang_code', 1, 'https://ror.org/022fswr88 New Span Opto-Technology (United States)'),
(6725, 'https://ror.org/022fxd079', 'no_lang_code', 1, 'https://ror.org/022fxd079 Hexcel (United Kingdom)'),
(6726, 'https://ror.org/022j4a796', 'en', 1, 'https://ror.org/022j4a796 Santa Barbara City College'),
(6727, 'https://ror.org/022jc0g24', 'en', 1, 'https://ror.org/022jc0g24 Max Planck Institute for Developmental Biology Max-Planck-Institut für Entwicklungsbiologie'),
(6728, 'https://ror.org/022jdjx35', 'no_lang_code', 1, 'https://ror.org/022jdjx35 Philip Morris International (Germany)'),
(6729, 'https://ror.org/022m8zh32', 'en', 1, 'https://ror.org/022m8zh32 Grewal Eye Institute'),
(6730, 'https://ror.org/022mrwt29', 'en', 1, 'https://ror.org/022mrwt29 Tzu Chi Foundation'),
(6731, 'https://ror.org/022mzwp71', 'pt', 1, 'https://ror.org/022mzwp71 Instituto de Engenharia de Sistemas e Computadores Microsistemas e Nanotecnologias'),
(6732, 'https://ror.org/022nh6s34', 'en', 1, 'https://ror.org/022nh6s34 Institute of Transplantation Sciences'),
(6733, 'https://ror.org/022q4qx22', 'en', 1, 'https://ror.org/022q4qx22 Chicago Public Schools'),
(6734, 'https://ror.org/022q5wf04', 'en', 1, 'https://ror.org/022q5wf04 County College of Morris'),
(6735, 'https://ror.org/022r50851', 'en', 1, 'https://ror.org/022r50851 Steadman Clinic'),
(6736, 'https://ror.org/022rrvm68', 'en', 1, 'https://ror.org/022rrvm68 Pavlov Institute of Physiology of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии им. И.П. Павлова Российской акаГемии наук'),
(6737, 'https://ror.org/022weqt39', 'no_lang_code', 1, 'https://ror.org/022weqt39 Planet Biotechnology (United States)'),
(6738, 'https://ror.org/022xw8j65', 'en', 1, 'https://ror.org/022xw8j65 University of Mount Union UniversitƩ de mount union'),
(6739, 'https://ror.org/0230sdc57', 'no_lang_code', 1, 'https://ror.org/0230sdc57 Tanner Research (United States)'),
(6740, 'https://ror.org/0232mk144', 'es', 1, 'https://ror.org/0232mk144 EsSALUD, Seguro Social de Salud del PerĆŗ'),
(6741, 'https://ror.org/0234k0g56', 'no_lang_code', 1, 'https://ror.org/0234k0g56 HydraTek (Canada)'),
(6742, 'https://ror.org/02358mx30', 'en', 1, 'https://ror.org/02358mx30 Institute for Safe Medication Practices'),
(6743, 'https://ror.org/0235jet62', 'en', 1, 'https://ror.org/0235jet62 Akebono Clinic'),
(6744, 'https://ror.org/0235kyq22', 'no_lang_code', 1, 'https://ror.org/0235kyq22 Petrobras (Brazil)'),
(6745, 'https://ror.org/0235n3r56', 'en', 1, 'https://ror.org/0235n3r56 Let''s Talk Science'),
(6746, 'https://ror.org/02385fa51', 'en', 1, 'https://ror.org/02385fa51 Max Planck Institute for Marine Microbiology Max-Planck-Institut für Marine Mikrobiologie'),
(6747, 'https://ror.org/0238hgm18', 'no_lang_code', 1, 'https://ror.org/0238hgm18 GeneTrace Systems (United States)'),
(6748, 'https://ror.org/0239g9287', 'en', 1, 'https://ror.org/0239g9287 East Bay Institute for Research & Education'),
(6749, 'https://ror.org/0239skj46', 'en', 1, 'https://ror.org/0239skj46 Southeast Alaska Regional Health Consortium'),
(6750, 'https://ror.org/023apm738', 'fr', 1, 'https://ror.org/023apm738 Centre d''Exploration et de Recherche MƩdicale par Emission de Positons'),
(6751, 'https://ror.org/023bmvr81', 'no_lang_code', 1, 'https://ror.org/023bmvr81 Agenta Biotechnologies (United States)'),
(6752, 'https://ror.org/023bn8s91', 'no_lang_code', 1, 'https://ror.org/023bn8s91 QED Labs'),
(6753, 'https://ror.org/023cd6641', 'en', 1, 'https://ror.org/023cd6641 Michigan Department of Agriculture and Rural Development'),
(6754, 'https://ror.org/023dbpz69', 'en', 1, 'https://ror.org/023dbpz69 National Association for Public Health Statistics and Information Systems'),
(6755, 'https://ror.org/023dwm995', 'en', 1, 'https://ror.org/023dwm995 St. Thomas Hospital'),
(6756, 'https://ror.org/023edjq13', 'no_lang_code', 1, 'https://ror.org/023edjq13 Johnson & Johnson (Germany)'),
(6757, 'https://ror.org/023egfd39', 'no_lang_code', 1, 'https://ror.org/023egfd39 Onconova Therapeutics (United States)'),
(6758, 'https://ror.org/023fm1q80', 'no_lang_code', 1, 'https://ror.org/023fm1q80 ON Semiconductor (Canada)'),
(6759, 'https://ror.org/023j1kv28', 'en', 1, 'https://ror.org/023j1kv28 International Hearing Foundation'),
(6760, 'https://ror.org/023mkm794', 'en', 1, 'https://ror.org/023mkm794 Sisseton Wahpeton College'),
(6761, 'https://ror.org/023q7jh34', 'no_lang_code', 1, 'https://ror.org/023q7jh34 Hoare Lea (United Kingdom)'),
(6762, 'https://ror.org/023q9w935', 'no_lang_code', 1, 'https://ror.org/023q9w935 INRIX (United Kingdom)'),
(6763, 'https://ror.org/023sej223', 'en', 1, 'https://ror.org/023sej223 Nova Scotia Community College'),
(6764, 'https://ror.org/023t9va96', 'no_lang_code', 1, 'https://ror.org/023t9va96 EKF Diagnostics (United States)'),
(6765, 'https://ror.org/023v4bd62', 'en', 1, 'https://ror.org/023v4bd62 National Agriculture and Food Research Organization č¾²ę„­ćƒ»é£Ÿå“ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę©Ÿę§‹'),
(6766, 'https://ror.org/023wdy559', 'tr', 1, 'https://ror.org/023wdy559 University of Health Sciences İstanbul Ümranyie Training and Research Hospital Ümraniye Eğitim ve Araştırma Hastanesi'),
(6767, 'https://ror.org/023xsn018', 'it', 1, 'https://ror.org/023xsn018 Casa di Cura Columbus'),
(6768, 'https://ror.org/023ymdw14', 'no_lang_code', 1, 'https://ror.org/023ymdw14 Canadian Electric Vehicles (Canada)'),
(6769, 'https://ror.org/023zey656', 'en', 1, 'https://ror.org/023zey656 Biophysical Society'),
(6770, 'https://ror.org/0240rwx68', 'en', 1, 'https://ror.org/0240rwx68 Istituto di Neuroscienze Neuroscience Institute'),
(6771, 'https://ror.org/02419mc73', 'en', 1, 'https://ror.org/02419mc73 Boston VA Research Institute'),
(6772, 'https://ror.org/0241wfp64', 'en', 1, 'https://ror.org/0241wfp64 Orthopedic Foot & Ankle Center'),
(6773, 'https://ror.org/0243gzr89', 'en', 1, 'https://ror.org/0243gzr89 Max Planck Institut für Biologie Max Planck Institute for Biology'),
(6774, 'https://ror.org/024712k05', 'no_lang_code', 1, 'https://ror.org/024712k05 Molsoft (United States)'),
(6775, 'https://ror.org/0248cgv13', 'no_lang_code', 1, 'https://ror.org/0248cgv13 Optron Systems (United States)'),
(6776, 'https://ror.org/0248zc213', 'en', 1, 'https://ror.org/0248zc213 Christus Health'),
(6777, 'https://ror.org/0249jjk91', 'en', 1, 'https://ror.org/0249jjk91 Kuwait Cancer Control Center'),
(6778, 'https://ror.org/024a9q404', 'no_lang_code', 1, 'https://ror.org/024a9q404 ALD NanoSolutions (United States)'),
(6779, 'https://ror.org/024b7e967', 'en', 1, 'https://ror.org/024b7e967 Phoenix VA Health Care System'),
(6780, 'https://ror.org/024dad879', 'no_lang_code', 1, 'https://ror.org/024dad879 Provid Pharmaceuticals (United States)'),
(6781, 'https://ror.org/024en4403', 'en', 1, 'https://ror.org/024en4403 London Women''s Clinic'),
(6782, 'https://ror.org/024es8b17', 'no_lang_code', 1, 'https://ror.org/024es8b17 Natural Selection (United States)'),
(6783, 'https://ror.org/024hqjk04', 'es', 1, 'https://ror.org/024hqjk04 Administración Nacional de Laboratorios e Institutos de Salud'),
(6784, 'https://ror.org/024kwpx52', 'no_lang_code', 1, 'https://ror.org/024kwpx52 Auritec Pharmaceuticals (United States)'),
(6785, 'https://ror.org/024nkak84', 'en', 1, 'https://ror.org/024nkak84 Taiwan Adventist Hospital 台安医院'),
(6786, 'https://ror.org/024sy5q53', 'en', 1, 'https://ror.org/024sy5q53 Nuffield Council on Bioethics'),
(6787, 'https://ror.org/024weye46', 'en', 1, 'https://ror.org/024weye46 Conservation International'),
(6788, 'https://ror.org/024xq8r45', 'no_lang_code', 1, 'https://ror.org/024xq8r45 Thermalin Diabetes (United States)'),
(6789, 'https://ror.org/0251x9332', 'en', 1, 'https://ror.org/0251x9332 John Wesley Community Health Institute'),
(6790, 'https://ror.org/0253ddj72', 'en', 1, 'https://ror.org/0253ddj72 Portland Cement Association'),
(6791, 'https://ror.org/0255fcy13', 'en', 1, 'https://ror.org/0255fcy13 Warrington Hospital'),
(6792, 'https://ror.org/0259axc43', 'no_lang_code', 1, 'https://ror.org/0259axc43 SeaWell Networks (Canada)'),
(6793, 'https://ror.org/025fs6666', 'no_lang_code', 1, 'https://ror.org/025fs6666 Antigen Discovery (United States)'),
(6794, 'https://ror.org/025jays06', 'no_lang_code', 1, 'https://ror.org/025jays06 Greenfield Research (Canada)'),
(6795, 'https://ror.org/025m2a107', 'en', 1, 'https://ror.org/025m2a107 Institute for Veterinary Medical Research Ɓllatorvos TudomƔnyi IntƩzet'),
(6796, 'https://ror.org/025ngyw60', 'en', 1, 'https://ror.org/025ngyw60 Doane University');
INSERT INTO `rors` VALUES
(6797, 'https://ror.org/025pdmt14', 'no_lang_code', 1, 'https://ror.org/025pdmt14 Severn Trent (United Kingdom)'),
(6798, 'https://ror.org/025qedy81', 'en', 1, 'https://ror.org/025qedy81 Children''s Health Ireland at Crumlin SlĆ”inte LeanaĆ­ Ɖireann ag Cromghlinn'),
(6799, 'https://ror.org/025qsw441', 'en', 1, 'https://ror.org/025qsw441 Deep River Science Academy'),
(6800, 'https://ror.org/025rx1w27', 'no_lang_code', 1, 'https://ror.org/025rx1w27 IONICS Mass Spectrometry (Canada)'),
(6801, 'https://ror.org/025s1b152', 'fr', 1, 'https://ror.org/025s1b152 Lille Catholic University UniversitƩ Catholique de Lille'),
(6802, 'https://ror.org/025tz0x98', 'en', 1, 'https://ror.org/025tz0x98 Heart Clinic of Louisiana'),
(6803, 'https://ror.org/025vn3989', 'no_lang_code', 1, 'https://ror.org/025vn3989 GlaxoSmithKline (United States)'),
(6804, 'https://ror.org/025w1ct43', 'en', 1, 'https://ror.org/025w1ct43 Tri-City Medical Center'),
(6805, 'https://ror.org/025y0hb72', 'en', 1, 'https://ror.org/025y0hb72 Royal Astronomical Society of Canada'),
(6806, 'https://ror.org/025yw0g63', 'en', 1, 'https://ror.org/025yw0g63 Clinical Immunology Society'),
(6807, 'https://ror.org/025zbvz40', 'en', 1, 'https://ror.org/025zbvz40 Arizona Academy of Science'),
(6808, 'https://ror.org/025zzpg41', 'no_lang_code', 1, 'https://ror.org/025zzpg41 BioFusionary Corporation (United States)'),
(6809, 'https://ror.org/026365h19', 'no_lang_code', 1, 'https://ror.org/026365h19 Anvik Corporation (United States)'),
(6810, 'https://ror.org/0263fes98', 'no_lang_code', 1, 'https://ror.org/0263fes98 Center for Value Based Medicine (United States)'),
(6811, 'https://ror.org/0263jp665', 'fr', 1, 'https://ror.org/0263jp665 HƓpital RenƩ Huguenin'),
(6812, 'https://ror.org/0265tbd09', 'no_lang_code', 1, 'https://ror.org/0265tbd09 Advanced Materials Technology (United States)'),
(6813, 'https://ror.org/0266h1q26', 'en', 1, 'https://ror.org/0266h1q26 Norton Healthcare'),
(6814, 'https://ror.org/026799x08', 'no_lang_code', 1, 'https://ror.org/026799x08 CyberFluor and Kronen Systems Incorporated'),
(6815, 'https://ror.org/0269j3194', 'en', 1, 'https://ror.org/0269j3194 Global HIV Vaccine Enterprise'),
(6816, 'https://ror.org/026a3nk20', 'en', 1, 'https://ror.org/026a3nk20 Sitaram Bhartia Institute of Science and Research'),
(6817, 'https://ror.org/026atsz45', 'en', 1, 'https://ror.org/026atsz45 Montana Wyoming Tribal Leaders Council'),
(6818, 'https://ror.org/026b6f512', 'no_lang_code', 1, 'https://ror.org/026b6f512 Tinderbox Consultants (United Kingdom)'),
(6819, 'https://ror.org/026bd4t65', 'no_lang_code', 1, 'https://ror.org/026bd4t65 UT Dots (United States)'),
(6820, 'https://ror.org/026ejyb70', 'en', 1, 'https://ror.org/026ejyb70 Oxford Centre for Computational Neuroscience'),
(6821, 'https://ror.org/026jzqm86', 'en', 1, 'https://ror.org/026jzqm86 Productive Rehabilitation Institute of Dallas for Ergonomics'),
(6822, 'https://ror.org/026mp1041', 'en', 1, 'https://ror.org/026mp1041 St. Joseph Hospital'),
(6823, 'https://ror.org/026ms9533', 'en', 1, 'https://ror.org/026ms9533 Hazardous Materials Training and Research Institute'),
(6824, 'https://ror.org/026nmvv73', 'en', 1, 'https://ror.org/026nmvv73 Max Planck Institute for Biological Cybernetics Max-Planck-Institut für Biologische Kybernetik'),
(6825, 'https://ror.org/026prsd04', 'no_lang_code', 1, 'https://ror.org/026prsd04 CytoCure (United States)'),
(6826, 'https://ror.org/026vpvt76', 'no_lang_code', 1, 'https://ror.org/026vpvt76 Geron (United States)'),
(6827, 'https://ror.org/026x7hp94', 'no_lang_code', 1, 'https://ror.org/026x7hp94 Biopeptide (United States)'),
(6828, 'https://ror.org/026zvyv64', 'no_lang_code', 1, 'https://ror.org/026zvyv64 Assystem (Germany)'),
(6829, 'https://ror.org/0271yft62', 'no_lang_code', 1, 'https://ror.org/0271yft62 Harrington Software Associates'),
(6830, 'https://ror.org/0272c7580', 'no_lang_code', 1, 'https://ror.org/0272c7580 NeoClone (United States)'),
(6831, 'https://ror.org/0273kmy05', 'no_lang_code', 1, 'https://ror.org/0273kmy05 Passat (Canada)'),
(6832, 'https://ror.org/0275fz765', 'en', 1, 'https://ror.org/0275fz765 National Aquarium'),
(6833, 'https://ror.org/0276e1563', 'en', 1, 'https://ror.org/0276e1563 South Dakota Department of Social Services'),
(6834, 'https://ror.org/0277xgb12', 'en', 1, 'https://ror.org/0277xgb12 Institute of Cytology and Genetics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цитологии Šø генетики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(6835, 'https://ror.org/027892803', 'no_lang_code', 1, 'https://ror.org/027892803 Boston Medical Products (United States)'),
(6836, 'https://ror.org/027923343', 'en', 1, 'https://ror.org/027923343 Victorian Order of Nurses'),
(6837, 'https://ror.org/0279fsn39', 'no_lang_code', 1, 'https://ror.org/0279fsn39 Aedas (United Kingdom)'),
(6838, 'https://ror.org/027a0b050', 'no_lang_code', 1, 'https://ror.org/027a0b050 Integrated BioTherapeutics (United States)'),
(6839, 'https://ror.org/027ade760', 'en', 1, 'https://ror.org/027ade760 Tabba Heart Institute'),
(6840, 'https://ror.org/027akq961', 'fr', 1, 'https://ror.org/027akq961 Institut de la Main'),
(6841, 'https://ror.org/027as9m12', 'en', 1, 'https://ror.org/027as9m12 Canadian Obesity Network RĆ©seau Canadien en l’ObĆ©sitĆ©'),
(6842, 'https://ror.org/027e41r21', 'no_lang_code', 1, 'https://ror.org/027e41r21 Chemica Technologies (United States)'),
(6843, 'https://ror.org/027fjzp74', 'en', 1, 'https://ror.org/027fjzp74 Obihiro Kosei General Hospital åøÆåŗƒåŽšē”Ÿē—…é™¢'),
(6844, 'https://ror.org/027g3rh44', 'en', 1, 'https://ror.org/027g3rh44 New Economics Foundation'),
(6845, 'https://ror.org/027grcd37', 'hu', 1, 'https://ror.org/027grcd37 Állami SzívkórhÔz'),
(6846, 'https://ror.org/027h1w574', 'en', 1, 'https://ror.org/027h1w574 Kidwai Memorial Institute of Oncology'),
(6847, 'https://ror.org/027h69z40', 'no_lang_code', 1, 'https://ror.org/027h69z40 AlertMe (United Kingdom)'),
(6848, 'https://ror.org/027hwkg23', 'en', 1, 'https://ror.org/027hwkg23 Engelhardt Institute of Molecular Biology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ биологии им. Š’.А. Š­Š½Š³ŠµŠ»ŃŒŠ³Š°Ń€Š“Ń‚Š° Российской акаГемии наук'),
(6849, 'https://ror.org/027j12e75', 'no_lang_code', 1, 'https://ror.org/027j12e75 Quantum Simulations (United States)'),
(6850, 'https://ror.org/027mz0g68', 'en', 1, 'https://ror.org/027mz0g68 Salem VA Medical Center'),
(6851, 'https://ror.org/027qenx56', 'no_lang_code', 1, 'https://ror.org/027qenx56 Capcom Vancouver (Canada)'),
(6852, 'https://ror.org/027tbp210', 'en', 1, 'https://ror.org/027tbp210 Centre for Life'),
(6853, 'https://ror.org/027tjex48', 'no_lang_code', 1, 'https://ror.org/027tjex48 Meiji (Japan) ę˜Žę²»'),
(6854, 'https://ror.org/027zey487', 'no_lang_code', 1, 'https://ror.org/027zey487 Celdara Medical (United States)'),
(6855, 'https://ror.org/0281e1q12', 'en', 1, 'https://ror.org/0281e1q12 Institute for Broadening Participation'),
(6856, 'https://ror.org/0281jqk77', 'en', 1, 'https://ror.org/0281jqk77 Nuffield Foundation'),
(6857, 'https://ror.org/0282bjj02', 'no_lang_code', 1, 'https://ror.org/0282bjj02 Promiliad Biopharma (United States)'),
(6858, 'https://ror.org/0282s7q36', 'en', 1, 'https://ror.org/0282s7q36 Tenshi Hospital 天使病院'),
(6859, 'https://ror.org/0284zjc89', 'no_lang_code', 1, 'https://ror.org/0284zjc89 Yokufukai Hospital ęµ“é¢Øä¼šē—…é™¢'),
(6860, 'https://ror.org/0285qgt37', 'no_lang_code', 1, 'https://ror.org/0285qgt37 Applied System Technologies (United States)'),
(6861, 'https://ror.org/0286exd49', 'no_lang_code', 1, 'https://ror.org/0286exd49 SaskTel (Canada)'),
(6862, 'https://ror.org/0286xn075', 'no_lang_code', 1, 'https://ror.org/0286xn075 21st Century Medicine (United States)'),
(6863, 'https://ror.org/028807987', 'en', 1, 'https://ror.org/028807987 Kyoto Research Park äŗ¬éƒ½ćƒŖć‚µćƒ¼ćƒćƒ‘ćƒ¼ć‚Æ'),
(6864, 'https://ror.org/02882ey95', 'en', 1, 'https://ror.org/02882ey95 Society for Academic Emergency Medicine'),
(6865, 'https://ror.org/02889gd81', 'no_lang_code', 1, 'https://ror.org/02889gd81 Unicon Research (United States)'),
(6866, 'https://ror.org/0288qta63', 'en', 1, 'https://ror.org/0288qta63 Hartwick College'),
(6867, 'https://ror.org/0289bhn79', 'no_lang_code', 1, 'https://ror.org/0289bhn79 Telesensory (United States)'),
(6868, 'https://ror.org/0289e7d92', 'en', 1, 'https://ror.org/0289e7d92 Belgian Road Research Centre'),
(6869, 'https://ror.org/0289ggs32', 'es', 1, 'https://ror.org/0289ggs32 Administracion de los Servicios de Salud del Estado'),
(6870, 'https://ror.org/028a3y923', 'no_lang_code', 1, 'https://ror.org/028a3y923 VisionQuest Biomedical (United States)'),
(6871, 'https://ror.org/028ca6f22', 'en', 1, 'https://ror.org/028ca6f22 Clark Planetarium'),
(6872, 'https://ror.org/028chtg69', 'no_lang_code', 1, 'https://ror.org/028chtg69 SVT Associates (United States)'),
(6873, 'https://ror.org/028e1xc68', 'en', 1, 'https://ror.org/028e1xc68 Center for Clinical & Basic Research'),
(6874, 'https://ror.org/028fd8812', 'en', 1, 'https://ror.org/028fd8812 Santa Clara Valley Health and Hospital System'),
(6875, 'https://ror.org/028ffjf65', 'en', 1, 'https://ror.org/028ffjf65 Black Women’s Health Imperative'),
(6876, 'https://ror.org/028k36c88', 'en', 1, 'https://ror.org/028k36c88 Science North'),
(6877, 'https://ror.org/028mr0844', 'en', 1, 'https://ror.org/028mr0844 European Monitoring Centre for Drugs and Drug Addiction Observatório Europeu da Droga e da Toxicodependência'),
(6878, 'https://ror.org/028my8947', 'en', 1, 'https://ror.org/028my8947 Chabot Space and Science Center'),
(6879, 'https://ror.org/028p2na45', 'no_lang_code', 1, 'https://ror.org/028p2na45 MagneSensors (United States)'),
(6880, 'https://ror.org/028q4nk39', 'no_lang_code', 1, 'https://ror.org/028q4nk39 Pipehawk (United Kingdom)'),
(6881, 'https://ror.org/028qa3n13', 'en', 1, 'https://ror.org/028qa3n13 Indian Institute of Science Education and Research Pune ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤Ŗą„ą¤£ą„‡'),
(6882, 'https://ror.org/028qd3f30', 'en', 1, 'https://ror.org/028qd3f30 Government Dental College & Research Institute'),
(6883, 'https://ror.org/028rev379', 'en', 1, 'https://ror.org/028rev379 Policy Research Associates'),
(6884, 'https://ror.org/028t43p77', 'en', 1, 'https://ror.org/028t43p77 Departamento del Tesoro de los Estados Unidos DĆ©partement du trĆ©sor des Ɖtats-unis United States Department of the Treasury'),
(6885, 'https://ror.org/028tzq930', 'en', 1, 'https://ror.org/028tzq930 Kirkwood Community College'),
(6886, 'https://ror.org/028zpwn78', 'fr', 1, 'https://ror.org/028zpwn78 Centre de Recherche et d’Information sur la DĆ©mocratie et l''Autonomie'),
(6887, 'https://ror.org/0290kkw06', 'no_lang_code', 1, 'https://ror.org/0290kkw06 Applied Behavioral Research (United States)'),
(6888, 'https://ror.org/0291gd333', 'no_lang_code', 1, 'https://ror.org/0291gd333 STATegics (United States)'),
(6889, 'https://ror.org/02927dx12', 'en', 1, 'https://ror.org/02927dx12 Institute of Life Sciences'),
(6890, 'https://ror.org/0292awh62', 'no_lang_code', 1, 'https://ror.org/0292awh62 Merck (Japan) ćƒ”ćƒ«ć‚Æ'),
(6891, 'https://ror.org/0293t9757', 'no_lang_code', 1, 'https://ror.org/0293t9757 Droplet Measurement Technologies (United States)'),
(6892, 'https://ror.org/0295s2632', 'en', 1, 'https://ror.org/0295s2632 La Comisión Latina sobre el SIDA Latino Commission on AIDS'),
(6893, 'https://ror.org/02966z980', 'en', 1, 'https://ror.org/02966z980 Seminole State College of Florida'),
(6894, 'https://ror.org/0296e0332', 'en', 1, 'https://ror.org/0296e0332 Iowa Department of Inspections and Appeals'),
(6895, 'https://ror.org/0296esg18', 'en', 1, 'https://ror.org/0296esg18 Valencia College'),
(6896, 'https://ror.org/0296s4x19', 'no_lang_code', 1, 'https://ror.org/0296s4x19 Orion Corporation (Finland) Orion Oyj'),
(6897, 'https://ror.org/0298pes53', 'en', 1, 'https://ror.org/0298pes53 Korea Institute of Energy Research'),
(6898, 'https://ror.org/02996zz79', 'en', 1, 'https://ror.org/02996zz79 Voorhees College'),
(6899, 'https://ror.org/029aeh759', 'no_lang_code', 1, 'https://ror.org/029aeh759 Kromek (United States)'),
(6900, 'https://ror.org/029dkfk52', 'no_lang_code', 1, 'https://ror.org/029dkfk52 Interlab (United States)'),
(6901, 'https://ror.org/029fzbq43', 'no_lang_code', 1, 'https://ror.org/029fzbq43 Oita Prefectural Hospital å¤§åˆ†ēœŒē«‹ē—…é™¢'),
(6902, 'https://ror.org/029g5f696', 'no_lang_code', 1, 'https://ror.org/029g5f696 Cook General BioTechnology (United States)'),
(6903, 'https://ror.org/029kax838', 'no_lang_code', 1, 'https://ror.org/029kax838 Muprime Technology (Canada)'),
(6904, 'https://ror.org/029ndp841', 'no_lang_code', 1, 'https://ror.org/029ndp841 Ash Stevens (United States)'),
(6905, 'https://ror.org/029nvrb94', 'en', 1, 'https://ror.org/029nvrb94 Singapore National Eye Center'),
(6906, 'https://ror.org/029p1pm63', 'en', 1, 'https://ror.org/029p1pm63 Williams LifeSkills'),
(6907, 'https://ror.org/029sr1j73', 'en', 1, 'https://ror.org/029sr1j73 OspidƩal Mhuire Lourdes Our Lady of Lourdes Hospital'),
(6908, 'https://ror.org/029w5ya68', 'en', 1, 'https://ror.org/029w5ya68 European Neuroscience Institute Gƶttingen'),
(6909, 'https://ror.org/029xxx628', 'en', 1, 'https://ror.org/029xxx628 Aquinas Institute of Theology'),
(6910, 'https://ror.org/029ybkn33', 'no_lang_code', 1, 'https://ror.org/029ybkn33 Edenspace Systems (United States)'),
(6911, 'https://ror.org/029yxsv15', 'en', 1, 'https://ror.org/029yxsv15 Society of General Physiologists'),
(6912, 'https://ror.org/029z7h505', 'en', 1, 'https://ror.org/029z7h505 Salt Lake Community College'),
(6913, 'https://ror.org/029zamy29', 'no_lang_code', 1, 'https://ror.org/029zamy29 Springer Nature (New Zealand)'),
(6914, 'https://ror.org/029zb5621', 'en', 1, 'https://ror.org/029zb5621 Central Rice Research Institute'),
(6915, 'https://ror.org/02a0k6s81', 'en', 1, 'https://ror.org/02a0k6s81 Tianjin Children''s Hospital å¤©ę“„åø‚å„æē«„åŒ»é™¢'),
(6916, 'https://ror.org/02a0sqy81', 'en', 1, 'https://ror.org/02a0sqy81 Columbia Education'),
(6917, 'https://ror.org/02a33b393', 'en', 1, 'https://ror.org/02a33b393 Max Planck Institute for Evolutionary Anthropology Max-Planck-Institut für Evolutionäre Anthropologie'),
(6918, 'https://ror.org/02a4gss26', 'no_lang_code', 1, 'https://ror.org/02a4gss26 Sasol (South Africa)'),
(6919, 'https://ror.org/02aawcy27', 'no_lang_code', 1, 'https://ror.org/02aawcy27 Navigen (United States)'),
(6920, 'https://ror.org/02acb4z65', 'en', 1, 'https://ror.org/02acb4z65 Sequoia Foundation'),
(6921, 'https://ror.org/02afj1h05', 'en', 1, 'https://ror.org/02afj1h05 Research Institute for Olympic Sports'),
(6922, 'https://ror.org/02afjh072', 'en', 1, 'https://ror.org/02afjh072 Fraunhofer Institute for Applied Optics and Precision Engineering Fraunhofer-Institut für Angewandte Optik und Feinmechanik'),
(6923, 'https://ror.org/02agkk742', 'en', 1, 'https://ror.org/02agkk742 National Institute of Indian Medical Heritage ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø संपदा ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6924, 'https://ror.org/02ah36853', 'en', 1, 'https://ror.org/02ah36853 Midwest Eye Institute'),
(6925, 'https://ror.org/02aj0wy64', 'es', 1, 'https://ror.org/02aj0wy64 Centro Hospitalario Pereira Rossell, Hospital Pereira Rossell'),
(6926, 'https://ror.org/02aqv1x10', 'en', 1, 'https://ror.org/02aqv1x10 Marie Curie'),
(6927, 'https://ror.org/02aredd96', 'en', 1, 'https://ror.org/02aredd96 HIV Netherlands Australia Thailand Research Collaboration'),
(6928, 'https://ror.org/02arg8v16', 'no_lang_code', 1, 'https://ror.org/02arg8v16 Enapter (Italy)'),
(6929, 'https://ror.org/02av0ty63', 'no_lang_code', 1, 'https://ror.org/02av0ty63 Palladian Partners'),
(6930, 'https://ror.org/02avws951', 'no_lang_code', 1, 'https://ror.org/02avws951 Fresenius Medical Care (United States)'),
(6931, 'https://ror.org/02axars19', 'en', 1, 'https://ror.org/02axars19 Gansu Provincial Hospital ē”˜č‚ƒēœäŗŗę°‘åŒ»é™¢'),
(6932, 'https://ror.org/02axsa366', 'en', 1, 'https://ror.org/02axsa366 Santa Fe Community College'),
(6933, 'https://ror.org/02azqtm75', 'en', 1, 'https://ror.org/02azqtm75 National Sanitation Foundation International'),
(6934, 'https://ror.org/02azsay93', 'en', 1, 'https://ror.org/02azsay93 Pakistan Health Research Council مجلس Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų·ŲØŁŠŲ© في ŲØŲ§ŁƒŲ³ŲŖŲ§Ł†'),
(6935, 'https://ror.org/02b10nq15', 'en', 1, 'https://ror.org/02b10nq15 Roskamp Institute'),
(6936, 'https://ror.org/02b1qqv62', 'en', 1, 'https://ror.org/02b1qqv62 National Food Administration'),
(6937, 'https://ror.org/02b2x6q12', 'en', 1, 'https://ror.org/02b2x6q12 AID Atlanta'),
(6938, 'https://ror.org/02b4rb907', 'ro', 1, 'https://ror.org/02b4rb907 Institutul Național de Endocrinologie C.I. Parhon'),
(6939, 'https://ror.org/02b5mfy68', 'it', 1, 'https://ror.org/02b5mfy68 Istituto Dermopatico dell''Immacolata'),
(6940, 'https://ror.org/02b9pea19', 'en', 1, 'https://ror.org/02b9pea19 Coastal Bend Wellness Foundation'),
(6941, 'https://ror.org/02bawng60', 'no_lang_code', 1, 'https://ror.org/02bawng60 Novasentis (United States)'),
(6942, 'https://ror.org/02bbrpp66', 'no_lang_code', 1, 'https://ror.org/02bbrpp66 Convergent Manufacturing Technologies (Canada)'),
(6943, 'https://ror.org/02be9aj39', 'en', 1, 'https://ror.org/02be9aj39 H. R. MacMillan Space Centre'),
(6944, 'https://ror.org/02bf6t552', 'en', 1, 'https://ror.org/02bf6t552 American College of Chest Physicians'),
(6945, 'https://ror.org/02bfrb046', 'no_lang_code', 1, 'https://ror.org/02bfrb046 Polysciences (United States)'),
(6946, 'https://ror.org/02bj40x52', 'en', 1, 'https://ror.org/02bj40x52 Osaka Rosai Hospital å¤§é˜ŖåŠ“ē½ē—…é™¢'),
(6947, 'https://ror.org/02bkd7d61', 'en', 1, 'https://ror.org/02bkd7d61 Hokkaido Agricultural Research Center åŒ—ęµ·é“č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(6948, 'https://ror.org/02bm24g42', 'es', 1, 'https://ror.org/02bm24g42 Asociación Civil Impacta Salud y Educación'),
(6949, 'https://ror.org/02bm6g618', 'en', 1, 'https://ror.org/02bm6g618 Russell Sage College'),
(6950, 'https://ror.org/02bmj6022', 'no_lang_code', 1, 'https://ror.org/02bmj6022 Omneuron (United States)'),
(6951, 'https://ror.org/02bpm1n29', 'no_lang_code', 1, 'https://ror.org/02bpm1n29 Southeast TechInventures (United States)'),
(6952, 'https://ror.org/02bpqmq41', 'en', 1, 'https://ror.org/02bpqmq41 China Rehabilitation Research Center'),
(6953, 'https://ror.org/02brfgh04', 'en', 1, 'https://ror.org/02brfgh04 Institute of Human Behaviour and Allied Sciences'),
(6954, 'https://ror.org/02brpaf34', 'it', 1, 'https://ror.org/02brpaf34 Istituto Ortopedico Gaetano Pini'),
(6955, 'https://ror.org/02bsaqx63', 'en', 1, 'https://ror.org/02bsaqx63 House Clinic'),
(6956, 'https://ror.org/02bt45m31', 'en', 1, 'https://ror.org/02bt45m31 American Medical Informatics Association'),
(6957, 'https://ror.org/02bwfhj24', 'en', 1, 'https://ror.org/02bwfhj24 Center for Telepsychology'),
(6958, 'https://ror.org/02bwppq44', 'no_lang_code', 1, 'https://ror.org/02bwppq44 Mo Sci Corporation (United States)'),
(6959, 'https://ror.org/02bwz0282', 'no_lang_code', 1, 'https://ror.org/02bwz0282 GLC Biotechnology (United States)'),
(6960, 'https://ror.org/02bx0ak73', 'en', 1, 'https://ror.org/02bx0ak73 Woodland Hills Medical Center'),
(6961, 'https://ror.org/02byjcr11', 'en', 1, 'https://ror.org/02byjcr11 Fraunhofer Institut für Toxikologie und Experimentelle Medizin Fraunhofer Institute for Toxicology and Experimental Medicine'),
(6962, 'https://ror.org/02bzq7389', 'en', 1, 'https://ror.org/02bzq7389 Howard Community College'),
(6963, 'https://ror.org/02c1at876', 'no_lang_code', 1, 'https://ror.org/02c1at876 Martec (Canada)'),
(6964, 'https://ror.org/02c22vc57', 'en', 1, 'https://ror.org/02c22vc57 Leibniz Institute for Prevention Research and Epidemiology - BIPS Leibniz-Institut für Präventionsforschung und Epidemiologie - BIPS'),
(6965, 'https://ror.org/02c235t25', 'en', 1, 'https://ror.org/02c235t25 Northwest Indian College'),
(6966, 'https://ror.org/02c241b98', 'en', 1, 'https://ror.org/02c241b98 Associated Skin Care Specialists'),
(6967, 'https://ror.org/02c27v641', 'en', 1, 'https://ror.org/02c27v641 Northeastern Oklahoma A&M College'),
(6968, 'https://ror.org/02c2e2v80', 'en', 1, 'https://ror.org/02c2e2v80 Institute of Biology and Immunology of Reproduction Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š±ŠøŠ¾Š»Š¾Š³ŠøŃ Šø ŠøŠ¼ŃƒŠ½Š¾Š»Š¾Š³ŠøŃ на размножаването'),
(6969, 'https://ror.org/02c3hd322', 'en', 1, 'https://ror.org/02c3hd322 National Public Radio'),
(6970, 'https://ror.org/02c495c76', 'en', 1, 'https://ror.org/02c495c76 St. Joseph’s University Medical Center'),
(6971, 'https://ror.org/02c5bjt68', 'en', 1, 'https://ror.org/02c5bjt68 Community Rehabilitation Center'),
(6972, 'https://ror.org/02c5sgb74', 'en', 1, 'https://ror.org/02c5sgb74 Collaborative Research Group'),
(6973, 'https://ror.org/02c761853', 'no_lang_code', 1, 'https://ror.org/02c761853 Proto Corporation (United States)'),
(6974, 'https://ror.org/02c93ee60', 'en', 1, 'https://ror.org/02c93ee60 Osaka Occupational Health Research Center å¤§é˜ŖåŠ“åƒč”›ē”Ÿē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(6975, 'https://ror.org/02carhc19', 'fr', 1, 'https://ror.org/02carhc19 Centre Hospitalier de Tourcoing'),
(6976, 'https://ror.org/02caytj08', 'en', 1, 'https://ror.org/02caytj08 Defense Advanced Research Projects Agency'),
(6977, 'https://ror.org/02cbwht62', 'en', 1, 'https://ror.org/02cbwht62 Department of Services for Children Youth and their Families'),
(6978, 'https://ror.org/02cf89s21', 'en', 1, 'https://ror.org/02cf89s21 Orthopaedic Hospital Speising OrthopƤdisches Spital Speising'),
(6979, 'https://ror.org/02cfbec64', 'fr', 1, 'https://ror.org/02cfbec64 HƓpital Militaire Avicenne'),
(6980, 'https://ror.org/02cfj6k65', 'no_lang_code', 1, 'https://ror.org/02cfj6k65 Watershed'),
(6981, 'https://ror.org/02ch1zb66', 'en', 1, 'https://ror.org/02ch1zb66 Tianjin First Center Hospital å¤©ę“„åø‚ē¬¬äø€äø­åæƒåŒ»é™¢'),
(6982, 'https://ror.org/02chbx029', 'no_lang_code', 1, 'https://ror.org/02chbx029 Oji General Hospital ēŽ‹å­ē·åˆē—…é™¢'),
(6983, 'https://ror.org/02cmjqw34', 'en', 1, 'https://ror.org/02cmjqw34 My Brother''s Keeper'),
(6984, 'https://ror.org/02cmyty27', 'en', 1, 'https://ror.org/02cmyty27 St. Joseph''s Hospital'),
(6985, 'https://ror.org/02cs3sv23', 'sv', 1, 'https://ror.org/02cs3sv23 Uddevalla sjukhus'),
(6986, 'https://ror.org/02csvyc65', 'no_lang_code', 1, 'https://ror.org/02csvyc65 IMRIS (Canada)'),
(6987, 'https://ror.org/02cvrf195', 'no_lang_code', 1, 'https://ror.org/02cvrf195 Polestar Technologies (United States)'),
(6988, 'https://ror.org/02czfmn65', 'en', 1, 'https://ror.org/02czfmn65 Thames Valley Children''s Centre'),
(6989, 'https://ror.org/02d0e3p67', 'en', 1, 'https://ror.org/02d0e3p67 Wollongong Hospital'),
(6990, 'https://ror.org/02d33pz63', 'no_lang_code', 1, 'https://ror.org/02d33pz63 CCS Associates (United States)'),
(6991, 'https://ror.org/02d4g5x37', 'no_lang_code', 1, 'https://ror.org/02d4g5x37 Virginia Technologies (United States)'),
(6992, 'https://ror.org/02d4qpq05', 'no_lang_code', 1, 'https://ror.org/02d4qpq05 Transgene (France)'),
(6993, 'https://ror.org/02d4smc03', 'en', 1, 'https://ror.org/02d4smc03 GF Strong Rehabilitation Centre'),
(6994, 'https://ror.org/02d4twb46', 'en', 1, 'https://ror.org/02d4twb46 Sound Health Options'),
(6995, 'https://ror.org/02d6ew870', 'no_lang_code', 1, 'https://ror.org/02d6ew870 Baxter (United States)'),
(6996, 'https://ror.org/02d7h9t50', 'no_lang_code', 1, 'https://ror.org/02d7h9t50 Consad (United States)'),
(6997, 'https://ror.org/02d8ncy29', 'en', 1, 'https://ror.org/02d8ncy29 Yokkaichi Social Insurance Hospital å››ę—„åø‚ē¾½ę“„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(6998, 'https://ror.org/02d93ae38', 'en', 1, 'https://ror.org/02d93ae38 Institute for Social Security and Services for State Workers Instituto de Seguridad y Servicios Sociales de los Trabajadores del Estado'),
(6999, 'https://ror.org/02d9tbb08', 'en', 1, 'https://ror.org/02d9tbb08 Henry Ford College'),
(7000, 'https://ror.org/02davtb12', 'it', 1, 'https://ror.org/02davtb12 Centro San Giovanni di Dio Fatebenefratelli'),
(7001, 'https://ror.org/02dc0q644', 'en', 1, 'https://ror.org/02dc0q644 Psychological Health Associates'),
(7002, 'https://ror.org/02dcdb854', 'no_lang_code', 1, 'https://ror.org/02dcdb854 SeraCare Life Sciences (United States)'),
(7003, 'https://ror.org/02dgnkc37', 'no_lang_code', 1, 'https://ror.org/02dgnkc37 TDIC (United States)'),
(7004, 'https://ror.org/02dk80w07', 'en', 1, 'https://ror.org/02dk80w07 Museu Nacional de Arte Antiga National Museum of Ancient Art'),
(7005, 'https://ror.org/02dphst03', 'en', 1, 'https://ror.org/02dphst03 National Council for Science and the Environment'),
(7006, 'https://ror.org/02dq1ca65', 'no_lang_code', 1, 'https://ror.org/02dq1ca65 Minerva Biotechnologies (United States)'),
(7007, 'https://ror.org/02dqztz06', 'en', 1, 'https://ror.org/02dqztz06 Electric Power Research Institute'),
(7008, 'https://ror.org/02dvgss50', 'en', 1, 'https://ror.org/02dvgss50 Stepping Hill Hospital'),
(7009, 'https://ror.org/02dw7ch21', 'no_lang_code', 1, 'https://ror.org/02dw7ch21 Element Six (United Kingdom)'),
(7010, 'https://ror.org/02dw95q60', 'en', 1, 'https://ror.org/02dw95q60 New York Heart Research Foundation'),
(7011, 'https://ror.org/02dx8kd29', 'sr', 1, 'https://ror.org/02dx8kd29 Institut za Zdravstvenu Zastitu Majke i Deteta'),
(7012, 'https://ror.org/02dy9y553', 'en', 1, 'https://ror.org/02dy9y553 Amrith Educational and Cultural Society'),
(7013, 'https://ror.org/02dywg371', 'en', 1, 'https://ror.org/02dywg371 Del Mar College'),
(7014, 'https://ror.org/02e1bds08', 'no_lang_code', 1, 'https://ror.org/02e1bds08 Corning (France)'),
(7015, 'https://ror.org/02e1s7e95', 'en', 1, 'https://ror.org/02e1s7e95 Kettering Foundation'),
(7016, 'https://ror.org/02e1syn97', 'en', 1, 'https://ror.org/02e1syn97 Glendale Community College'),
(7017, 'https://ror.org/02e3ssq97', 'en', 1, 'https://ror.org/02e3ssq97 Don Carlo Gnocchi Foundation'),
(7018, 'https://ror.org/02e463172', 'en', 1, 'https://ror.org/02e463172 American Cancer Society'),
(7019, 'https://ror.org/02e560b93', 'de', 1, 'https://ror.org/02e560b93 Barmherzige Brüder Klinikum St. Elisabeth in Straubing'),
(7020, 'https://ror.org/02e71kh42', 'en', 1, 'https://ror.org/02e71kh42 Oncology Nursing Society'),
(7021, 'https://ror.org/02e891h43', 'en', 1, 'https://ror.org/02e891h43 Mount Mercy University'),
(7022, 'https://ror.org/02e9za279', 'no_lang_code', 1, 'https://ror.org/02e9za279 Galen Research (United Kingdom)'),
(7023, 'https://ror.org/02ebc4h13', 'no_lang_code', 1, 'https://ror.org/02ebc4h13 Inframat Corporation (United States)'),
(7024, 'https://ror.org/02ecczf03', 'en', 1, 'https://ror.org/02ecczf03 Ontario AIDS Network'),
(7025, 'https://ror.org/02ed5f444', 'no_lang_code', 1, 'https://ror.org/02ed5f444 Ligand Pharmaceuticals (United States)'),
(7026, 'https://ror.org/02edt9m80', 'no_lang_code', 1, 'https://ror.org/02edt9m80 GT Urological (United States)'),
(7027, 'https://ror.org/02edynn23', 'no_lang_code', 1, 'https://ror.org/02edynn23 BioFormatix (United States)'),
(7028, 'https://ror.org/02ee2kk58', 'en', 1, 'https://ror.org/02ee2kk58 MUJHU Research Collaboration'),
(7029, 'https://ror.org/02ega5r05', 'en', 1, 'https://ror.org/02ega5r05 Mendez National Institute of Transplantation'),
(7030, 'https://ror.org/02ehan050', 'en', 1, 'https://ror.org/02ehan050 North Central College'),
(7031, 'https://ror.org/02ehrn304', 'en', 1, 'https://ror.org/02ehrn304 Zayed Military Hospital مستؓفى زايد Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠ'),
(7032, 'https://ror.org/02eqka166', 'en', 1, 'https://ror.org/02eqka166 Mercy Medical Center'),
(7033, 'https://ror.org/02er0sb79', 'en', 1, 'https://ror.org/02er0sb79 EuroEspes Biomedical Research Center'),
(7034, 'https://ror.org/02es2jq57', 'fr', 1, 'https://ror.org/02es2jq57 Cegep Edouard Montpetit, CollĆØge Ɖdouard-Montpetit'),
(7035, 'https://ror.org/02ev1p206', 'en', 1, 'https://ror.org/02ev1p206 Center for Renewable Energy Sources and Saving'),
(7036, 'https://ror.org/02exhb815', 'no_lang_code', 1, 'https://ror.org/02exhb815 Royan Institute'),
(7037, 'https://ror.org/02exxw634', 'en', 1, 'https://ror.org/02exxw634 Wartburg College'),
(7038, 'https://ror.org/02ezaf703', 'en', 1, 'https://ror.org/02ezaf703 Uijeongbu St. Mary''s Hospital'),
(7039, 'https://ror.org/02ezy5072', 'no_lang_code', 1, 'https://ror.org/02ezy5072 Amgen (Germany)'),
(7040, 'https://ror.org/02f09jf04', 'en', 1, 'https://ror.org/02f09jf04 Fertility Medical Group'),
(7041, 'https://ror.org/02f0ewv41', 'no_lang_code', 1, 'https://ror.org/02f0ewv41 OG Technologies (United States)'),
(7042, 'https://ror.org/02f131c52', 'en', 1, 'https://ror.org/02f131c52 Adrian College'),
(7043, 'https://ror.org/02f1dqm79', 'no_lang_code', 1, 'https://ror.org/02f1dqm79 Luminex (Canada)'),
(7044, 'https://ror.org/02f23ya44', 'no_lang_code', 1, 'https://ror.org/02f23ya44 CleverSys (United States)'),
(7045, 'https://ror.org/02f29yc36', 'en', 1, 'https://ror.org/02f29yc36 Webb Institute'),
(7046, 'https://ror.org/02f2ddv05', 'no_lang_code', 1, 'https://ror.org/02f2ddv05 Blue Spurs (Canada)'),
(7047, 'https://ror.org/02f3vqc77', 'en', 1, 'https://ror.org/02f3vqc77 Coastline Community College'),
(7048, 'https://ror.org/02f51rf24', 'no_lang_code', 1, 'https://ror.org/02f51rf24 Regeneron (United States)'),
(7049, 'https://ror.org/02f53md90', 'en', 1, 'https://ror.org/02f53md90 Tamworth Hospital'),
(7050, 'https://ror.org/02f67ap41', 'en', 1, 'https://ror.org/02f67ap41 Presentation College'),
(7051, 'https://ror.org/02f8ah997', 'en', 1, 'https://ror.org/02f8ah997 Transitional Learning Center'),
(7052, 'https://ror.org/02f99v835', 'en', 1, 'https://ror.org/02f99v835 Deutsches Primatenzentrum German Primate Center'),
(7053, 'https://ror.org/02fag2f73', 'en', 1, 'https://ror.org/02fag2f73 Randolph College'),
(7054, 'https://ror.org/02fc7xd23', 'en', 1, 'https://ror.org/02fc7xd23 Shanghai Research Center for Acupuncture and Meridians äøŠęµ·åø‚é’ˆēøē»ē»œē ”ē©¶äø­åæƒ'),
(7055, 'https://ror.org/02fd83219', 'no_lang_code', 1, 'https://ror.org/02fd83219 Fluorous Technologies (United States)'),
(7056, 'https://ror.org/02fdhvf98', 'no_lang_code', 1, 'https://ror.org/02fdhvf98 Degenkolb (United States)'),
(7057, 'https://ror.org/02fgvvg92', 'en', 1, 'https://ror.org/02fgvvg92 National Nutrition and Food Technology Research Institute'),
(7058, 'https://ror.org/02fhhd636', 'no_lang_code', 1, 'https://ror.org/02fhhd636 Endres Machining Innovations (United States)'),
(7059, 'https://ror.org/02fjffw59', 'no_lang_code', 1, 'https://ror.org/02fjffw59 X-ray Instrumentation Associates (United States)'),
(7060, 'https://ror.org/02fm7xd67', 'no_lang_code', 1, 'https://ror.org/02fm7xd67 Delcam (United Kingdom)'),
(7061, 'https://ror.org/02fn1q641', 'no_lang_code', 1, 'https://ror.org/02fn1q641 Affinity Water (United Kingdom)'),
(7062, 'https://ror.org/02fn8j763', 'en', 1, 'https://ror.org/02fn8j763 Wangjing Hospital of China Academy of Chinese Medical Sciences äø­å›½äø­åŒ»ē§‘å­¦é™¢ęœ›äŗ¬åŒ»é™¢'),
(7063, 'https://ror.org/02fncne76', 'en', 1, 'https://ror.org/02fncne76 Kentucky Wesleyan College'),
(7064, 'https://ror.org/02fprvw90', 'no_lang_code', 1, 'https://ror.org/02fprvw90 FoodChek Systems (Canada)'),
(7065, 'https://ror.org/02frwff62', 'it', 1, 'https://ror.org/02frwff62 CTO Andrea Alesini'),
(7066, 'https://ror.org/02frzq211', 'en', 1, 'https://ror.org/02frzq211 UK Biobank'),
(7067, 'https://ror.org/02fwe2f11', 'en', 1, 'https://ror.org/02fwe2f11 Tung Wah Eastern Hospital ę±čÆę±é™¢'),
(7068, 'https://ror.org/02fywtq82', 'no_lang_code', 1, 'https://ror.org/02fywtq82 Organisation de Coordination pour la lutte contre les EndƩmies en Afrique Centrale'),
(7069, 'https://ror.org/02fz4s018', 'en', 1, 'https://ror.org/02fz4s018 Heritage Foundation'),
(7070, 'https://ror.org/02g5x8q86', 'en', 1, 'https://ror.org/02g5x8q86 Discovery Centre'),
(7071, 'https://ror.org/02g6ngv74', 'no_lang_code', 1, 'https://ror.org/02g6ngv74 Curis (United States)'),
(7072, 'https://ror.org/02g726t95', 'en', 1, 'https://ror.org/02g726t95 Global Neuroscience Initiative Foundation'),
(7073, 'https://ror.org/02g82g140', 'es', 1, 'https://ror.org/02g82g140 Instituto Zaldivar'),
(7074, 'https://ror.org/02g8p3m28', 'no_lang_code', 1, 'https://ror.org/02g8p3m28 Dr. Reddy''s Laboratories (United Kingdom)'),
(7075, 'https://ror.org/02g9d5535', 'en', 1, 'https://ror.org/02g9d5535 Community Based Research Centre'),
(7076, 'https://ror.org/02gan0k07', 'en', 1, 'https://ror.org/02gan0k07 Onassis Cardiac Surgery Center Ī©ĪĪ‘Ī£Ī•Ī™ĪŸ ĪšĪ‘Ī”Ī”Ī™ĪŸĪ§Ī•Ī™Ī”ĪŸĪ„Ī”Ī“Ī™ĪšĪŸ ĪšĪ•ĪĪ¤Ī”ĪŸ'),
(7077, 'https://ror.org/02gb7bb36', 'en', 1, 'https://ror.org/02gb7bb36 Saint Joseph''s College of Maine'),
(7078, 'https://ror.org/02gdqk794', 'en', 1, 'https://ror.org/02gdqk794 Royal Society of Medicine'),
(7079, 'https://ror.org/02gdz0643', 'no_lang_code', 1, 'https://ror.org/02gdz0643 DCS Corporation (United States)'),
(7080, 'https://ror.org/02gec1b57', 'no_lang_code', 1, 'https://ror.org/02gec1b57 Tsuyama Chuo Hospital 擄山中央病院'),
(7081, 'https://ror.org/02gfbpn70', 'en', 1, 'https://ror.org/02gfbpn70 Ofwat'),
(7082, 'https://ror.org/02gffk937', 'en', 1, 'https://ror.org/02gffk937 Shriners Hospitals for Children - Erie'),
(7083, 'https://ror.org/02gge8657', 'no_lang_code', 1, 'https://ror.org/02gge8657 Optra (United States)'),
(7084, 'https://ror.org/02ggfyw45', 'en', 1, 'https://ror.org/02ggfyw45 Thai Red Cross Society'),
(7085, 'https://ror.org/02gkj6c36', 'no_lang_code', 1, 'https://ror.org/02gkj6c36 Medigen (United States)'),
(7086, 'https://ror.org/02gnvsm39', 'no_lang_code', 1, 'https://ror.org/02gnvsm39 Koester Performance Research (United States)'),
(7087, 'https://ror.org/02gp6f150', 'no_lang_code', 1, 'https://ror.org/02gp6f150 Tissue Genesis (United States)'),
(7088, 'https://ror.org/02gpxp602', 'no_lang_code', 1, 'https://ror.org/02gpxp602 M-Solv (United Kingdom)'),
(7089, 'https://ror.org/02gr2sm80', 'no_lang_code', 1, 'https://ror.org/02gr2sm80 Aecom (United States)'),
(7090, 'https://ror.org/02gv23t08', 'hu', 1, 'https://ror.org/02gv23t08 Toldy Ferenc KórhÔz'),
(7091, 'https://ror.org/02gv7n749', 'en', 1, 'https://ror.org/02gv7n749 American Dental Education Association'),
(7092, 'https://ror.org/02gv8a673', 'en', 1, 'https://ror.org/02gv8a673 Everett Community College'),
(7093, 'https://ror.org/02gwxj243', 'no_lang_code', 1, 'https://ror.org/02gwxj243 bioMƩrieux (United States)'),
(7094, 'https://ror.org/02gxffd98', 'no_lang_code', 1, 'https://ror.org/02gxffd98 Laing O''Rourke (United Kingdom)'),
(7095, 'https://ror.org/02gxh1s15', 'en', 1, 'https://ror.org/02gxh1s15 St. Anthony Hospital'),
(7096, 'https://ror.org/02gxky474', 'en', 1, 'https://ror.org/02gxky474 Association of State Supervisors of Mathematics'),
(7097, 'https://ror.org/02gxn3220', 'no_lang_code', 1, 'https://ror.org/02gxn3220 Mohawk Innovative Technology (United States)'),
(7098, 'https://ror.org/02gxtdy09', 'en', 1, 'https://ror.org/02gxtdy09 Brain Trauma Foundation'),
(7099, 'https://ror.org/02gy8fc28', 'fr', 1, 'https://ror.org/02gy8fc28 Centre National Hospitalier et Universitaire Hubert Koutoukou MAGA'),
(7100, 'https://ror.org/02h1dyg62', 'no_lang_code', 1, 'https://ror.org/02h1dyg62 Spencer Technologies (United States)'),
(7101, 'https://ror.org/02h1nk258', 'en', 1, 'https://ror.org/02h1nk258 Max Planck Institute for Brain Research Max-Planck-Institut für Hirnforschung'),
(7102, 'https://ror.org/02h1p2c43', 'en', 1, 'https://ror.org/02h1p2c43 Monterey County Health Department'),
(7103, 'https://ror.org/02h2t4g21', 'en', 1, 'https://ror.org/02h2t4g21 Contra Costa Health Services'),
(7104, 'https://ror.org/02h3se683', 'en', 1, 'https://ror.org/02h3se683 American College of Medical Genetics'),
(7105, 'https://ror.org/02h4kdd20', 'en', 1, 'https://ror.org/02h4kdd20 St. Luke''s Medical Center'),
(7106, 'https://ror.org/02h6h5y05', 'nl', 1, 'https://ror.org/02h6h5y05 Vincent Van Gogh Voor Geestelijke Gezondheidszorg'),
(7107, 'https://ror.org/02h70he60', 'en', 1, 'https://ror.org/02h70he60 Okayama Red Cross General Hospital å²”å±±čµ¤åå­—ē—…é™¢'),
(7108, 'https://ror.org/02ha0t079', 'no_lang_code', 1, 'https://ror.org/02ha0t079 Crinetics Pharmaceuticals (United States)'),
(7109, 'https://ror.org/02ha9tc40', 'en', 1, 'https://ror.org/02ha9tc40 Georgia Department of Community Health'),
(7110, 'https://ror.org/02harxg26', 'no_lang_code', 1, 'https://ror.org/02harxg26 Educational Film Center (United States)'),
(7111, 'https://ror.org/02hbfck57', 'en', 1, 'https://ror.org/02hbfck57 AARP'),
(7112, 'https://ror.org/02hc70w10', 'en', 1, 'https://ror.org/02hc70w10 United Hospital'),
(7113, 'https://ror.org/02hddbs82', 'no_lang_code', 1, 'https://ror.org/02hddbs82 NewsHour Productions (United States)'),
(7114, 'https://ror.org/02hes1t22', 'no_lang_code', 1, 'https://ror.org/02hes1t22 Sapporo Holdings (Japan) ć‚µćƒƒćƒćƒ­ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(7115, 'https://ror.org/02hh2th82', 'en', 1, 'https://ror.org/02hh2th82 Dumfries and Galloway Royal Infirmary'),
(7116, 'https://ror.org/02hhsqf45', 'no_lang_code', 1, 'https://ror.org/02hhsqf45 Covance (United States)'),
(7117, 'https://ror.org/02hk0xz87', 'no_lang_code', 1, 'https://ror.org/02hk0xz87 American Superconductor (United States)'),
(7118, 'https://ror.org/02hmjce72', 'no_lang_code', 1, 'https://ror.org/02hmjce72 Medtronic (Netherlands)'),
(7119, 'https://ror.org/02hqx5v55', 'en', 1, 'https://ror.org/02hqx5v55 Center for Environment and Development for the Arab Region and Europe'),
(7120, 'https://ror.org/02hqxd823', 'no_lang_code', 1, 'https://ror.org/02hqxd823 MRF Geosystems (Canada)'),
(7121, 'https://ror.org/02hssy432', 'it', 1, 'https://ror.org/02hssy432 Istituto Superiore di SanitĆ  National Institute of Health'),
(7122, 'https://ror.org/02ht85g63', 'no_lang_code', 1, 'https://ror.org/02ht85g63 A4F-Algafuel (Portugal)'),
(7123, 'https://ror.org/02htbg024', 'no_lang_code', 1, 'https://ror.org/02htbg024 Creatv MicroTech (United States)'),
(7124, 'https://ror.org/02hvk4n65', 'en', 1, 'https://ror.org/02hvk4n65 Princeton Baptist Medical Center'),
(7125, 'https://ror.org/02hy8r734', 'en', 1, 'https://ror.org/02hy8r734 Clinical Trial Investigators'),
(7126, 'https://ror.org/02hzxx398', 'en', 1, 'https://ror.org/02hzxx398 Central Veterinary Research Laboratory'),
(7127, 'https://ror.org/02j2j9d52', 'no_lang_code', 1, 'https://ror.org/02j2j9d52 Prentke Romich Company (United States)'),
(7128, 'https://ror.org/02j33yq05', 'en', 1, 'https://ror.org/02j33yq05 AIDS and Clinical Immunology Research Center'),
(7129, 'https://ror.org/02j3xat32', 'no_lang_code', 1, 'https://ror.org/02j3xat32 National Iranian Oil Company (Iran) Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ صنعت نفت'),
(7130, 'https://ror.org/02j4gdg91', 'en', 1, 'https://ror.org/02j4gdg91 Vivekananda Institute of Medical Sciences'),
(7131, 'https://ror.org/02j6cz137', 'en', 1, 'https://ror.org/02j6cz137 Institute of Dermatology ąøŖąø–ąø²ąøšąø±ąø™ą¹‚ąø£ąø„ąøœąø“ąø§ąø«ąø™ąø±ąø‡'),
(7132, 'https://ror.org/02j7krq48', 'no_lang_code', 1, 'https://ror.org/02j7krq48 FONA International (Canada)'),
(7133, 'https://ror.org/02j8r0p47', 'en', 1, 'https://ror.org/02j8r0p47 Woodend Hospital'),
(7134, 'https://ror.org/02j8tmw16', 'en', 1, 'https://ror.org/02j8tmw16 Immunization Action Coalition'),
(7135, 'https://ror.org/02jb8wy89', 'en', 1, 'https://ror.org/02jb8wy89 Connecticut Pre Engineering Program'),
(7136, 'https://ror.org/02jdkag88', 'en', 1, 'https://ror.org/02jdkag88 Corporation for National Research Initiatives'),
(7137, 'https://ror.org/02jf59571', 'en', 1, 'https://ror.org/02jf59571 Benaki Phytopathological Institute ĪœĻ€ĪµĪ½Ī¬ĪŗĪµĪ¹Īæ Ī¦Ļ…Ļ„ĪæĻ€Ī±ĪøĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ'),
(7138, 'https://ror.org/02jj1w915', 'en', 1, 'https://ror.org/02jj1w915 Broward College'),
(7139, 'https://ror.org/02jkm3388', 'it', 1, 'https://ror.org/02jkm3388 Ministero degli Affari Esteri Ministry of Foreign Affairs and International Cooperation'),
(7140, 'https://ror.org/02jq36h12', 'en', 1, 'https://ror.org/02jq36h12 Department of Agriculture and Food Western Australia'),
(7141, 'https://ror.org/02jqpaq24', 'en', 1, 'https://ror.org/02jqpaq24 Centre for Chronic Disease Control'),
(7142, 'https://ror.org/02jqwca63', 'fr', 1, 'https://ror.org/02jqwca63 Cegep regional de Lanaudiere, Cégep Régional de Lanaudière'),
(7143, 'https://ror.org/02jr44c14', 'no_lang_code', 1, 'https://ror.org/02jr44c14 Sinmat (United States)'),
(7144, 'https://ror.org/02js6ft04', 'no_lang_code', 1, 'https://ror.org/02js6ft04 Takara (United States)'),
(7145, 'https://ror.org/02jxrxr40', 'no_lang_code', 1, 'https://ror.org/02jxrxr40 Policy Analysis (United States)'),
(7146, 'https://ror.org/02jy1mq31', 'no_lang_code', 1, 'https://ror.org/02jy1mq31 Ondine Biopharma (United States)'),
(7147, 'https://ror.org/02jzrsm59', 'en', 1, 'https://ror.org/02jzrsm59 National Institute on Alcohol Abuse and Alcoholism'),
(7148, 'https://ror.org/02jzt6t86', 'en', 1, 'https://ror.org/02jzt6t86 Institute of Human Genetics Instytutu Genetyki Człowieka PAN'),
(7149, 'https://ror.org/02k284p70', 'en', 1, 'https://ror.org/02k284p70 Academy of Scientific Research and Technology'),
(7150, 'https://ror.org/02k4agj72', 'en', 1, 'https://ror.org/02k4agj72 Matrix Institute on Addictions'),
(7151, 'https://ror.org/02k5g8c37', 'no_lang_code', 1, 'https://ror.org/02k5g8c37 BioDetection Instruments (United States)'),
(7152, 'https://ror.org/02k5t6c64', 'en', 1, 'https://ror.org/02k5t6c64 PRA Health Sciences'),
(7153, 'https://ror.org/02k7p6g32', 'no_lang_code', 1, 'https://ror.org/02k7p6g32 Analiza (United States)'),
(7154, 'https://ror.org/02k9hra16', 'en', 1, 'https://ror.org/02k9hra16 Saskatchewan Seniors Mechanism'),
(7155, 'https://ror.org/02kgm7r43', 'en', 1, 'https://ror.org/02kgm7r43 Blackfeet Community College'),
(7156, 'https://ror.org/02khtdb43', 'en', 1, 'https://ror.org/02khtdb43 American Academy of Family Physicians'),
(7157, 'https://ror.org/02khxjf35', 'no_lang_code', 1, 'https://ror.org/02khxjf35 United Environment and Energy (United States)'),
(7158, 'https://ror.org/02kjgsq44', 'en', 1, 'https://ror.org/02kjgsq44 National Institute of Oncology'),
(7159, 'https://ror.org/02kk3dq58', 'en', 1, 'https://ror.org/02kk3dq58 United Tribes Technical College'),
(7160, 'https://ror.org/02kp7p620', 'en', 1, 'https://ror.org/02kp7p620 Central Leather Research Institute'),
(7161, 'https://ror.org/02krr1j33', 'no_lang_code', 1, 'https://ror.org/02krr1j33 Telesage (United States)'),
(7162, 'https://ror.org/02kspbq18', 'fr', 1, 'https://ror.org/02kspbq18 Château Gombert'),
(7163, 'https://ror.org/02kv35z70', 'en', 1, 'https://ror.org/02kv35z70 Computer History Museum'),
(7164, 'https://ror.org/02kvf6r88', 'no_lang_code', 1, 'https://ror.org/02kvf6r88 Hartley & Associates'),
(7165, 'https://ror.org/02kvnjb40', 'en', 1, 'https://ror.org/02kvnjb40 European School of Oncology'),
(7166, 'https://ror.org/02kxjqp24', 'no_lang_code', 1, 'https://ror.org/02kxjqp24 Certara (United States)'),
(7167, 'https://ror.org/02kzr5g33', 'en', 1, 'https://ror.org/02kzr5g33 Zhejiang Hospital ęµ™ę±ŸåŒ»é™¢'),
(7168, 'https://ror.org/02m15g174', 'en', 1, 'https://ror.org/02m15g174 Diabetes Care Center'),
(7169, 'https://ror.org/02m1cy121', 'no_lang_code', 1, 'https://ror.org/02m1cy121 Prodrive (United Kingdom)'),
(7170, 'https://ror.org/02m2as397', 'en', 1, 'https://ror.org/02m2as397 Centenary College of Louisiana'),
(7171, 'https://ror.org/02m40r087', 'no_lang_code', 1, 'https://ror.org/02m40r087 Concepts NREC (United States)'),
(7172, 'https://ror.org/02m444q29', 'no_lang_code', 1, 'https://ror.org/02m444q29 EEI Communications (United States)'),
(7173, 'https://ror.org/02m4tvc13', 'fr', 1, 'https://ror.org/02m4tvc13 ComitƩ EuropƩen des Instructeurs de PlongƩe Professionnels European Committee of Professional Diving Instructors'),
(7174, 'https://ror.org/02m5vdb88', 'en', 1, 'https://ror.org/02m5vdb88 Navajo Nation Division of Health'),
(7175, 'https://ror.org/02m805769', 'fr', 1, 'https://ror.org/02m805769 Cegep de La Pocatiere, Cégep de la pocatière'),
(7176, 'https://ror.org/02m8d5f73', 'no_lang_code', 1, 'https://ror.org/02m8d5f73 CytRx (United States)'),
(7177, 'https://ror.org/02m9ewz37', 'no_lang_code', 1, 'https://ror.org/02m9ewz37 Sumitomo Hospital äø€čˆ¬č²”å›£ę³•äŗŗä½å‹ē—…é™¢'),
(7178, 'https://ror.org/02mdxv534', 'fr', 1, 'https://ror.org/02mdxv534 Fondation Ophtalmologique Adolphe de Rothschild'),
(7179, 'https://ror.org/02meqm098', 'en', 1, 'https://ror.org/02meqm098 National Center for Biotechnology Information'),
(7180, 'https://ror.org/02mfa7r39', 'no_lang_code', 1, 'https://ror.org/02mfa7r39 Digital Payment Technologies (Canada)'),
(7181, 'https://ror.org/02mgtg880', 'en', 1, 'https://ror.org/02mgtg880 Critical Path Institute'),
(7182, 'https://ror.org/02mh82r78', 'no_lang_code', 1, 'https://ror.org/02mh82r78 Fermalogic (United States)'),
(7183, 'https://ror.org/02mhf1b49', 'en', 1, 'https://ror.org/02mhf1b49 Wiley College'),
(7184, 'https://ror.org/02mhxa927', 'en', 1, 'https://ror.org/02mhxa927 Zhujiang Hospital'),
(7185, 'https://ror.org/02mn8sh47', 'en', 1, 'https://ror.org/02mn8sh47 Turtle Mountain Community College'),
(7186, 'https://ror.org/02mnkv161', 'no_lang_code', 1, 'https://ror.org/02mnkv161 Applied Thin Films (United States)'),
(7187, 'https://ror.org/02mp2w060', 'en', 1, 'https://ror.org/02mp2w060 Framingham State University UniversitĆ© d''Ɖtat de framingham'),
(7188, 'https://ror.org/02mpfs279', 'en', 1, 'https://ror.org/02mpfs279 Daejeon Sun Hospital ėŒ€ģ „ģ„ ė³‘ģ›'),
(7189, 'https://ror.org/02mqbx112', 'en', 1, 'https://ror.org/02mqbx112 Institut National de Neurologie Mongi-Ben Hamida National Institute of Neurology Mongi-Ben Hamida'),
(7190, 'https://ror.org/02ms6eb12', 'no_lang_code', 1, 'https://ror.org/02ms6eb12 Parirenyatwa Hospital'),
(7191, 'https://ror.org/02mx39t82', 'en', 1, 'https://ror.org/02mx39t82 Association VinƧotte Nuclear, Nuclear Safety Institute'),
(7192, 'https://ror.org/02mx9d065', 'it', 1, 'https://ror.org/02mx9d065 Consorzio per la Ricerca e l''Educazione Permanente'),
(7193, 'https://ror.org/02mxbtp76', 'no_lang_code', 1, 'https://ror.org/02mxbtp76 Xemed (United States)'),
(7194, 'https://ror.org/02mznah18', 'no_lang_code', 1, 'https://ror.org/02mznah18 Bioanalytical Systems (United States)'),
(7195, 'https://ror.org/02n2p7c30', 'en', 1, 'https://ror.org/02n2p7c30 Canadian Association of Psychosocial Oncology'),
(7196, 'https://ror.org/02n4wd178', 'no_lang_code', 1, 'https://ror.org/02n4wd178 Junk King (United States)'),
(7197, 'https://ror.org/02n9cgn70', 'no_lang_code', 1, 'https://ror.org/02n9cgn70 SRA International (United States)'),
(7198, 'https://ror.org/02naadr48', 'no_lang_code', 1, 'https://ror.org/02naadr48 Pearson (United States)'),
(7199, 'https://ror.org/02navrb60', 'en', 1, 'https://ror.org/02navrb60 Lady of Mercy Medical Center'),
(7200, 'https://ror.org/02neqps07', 'no_lang_code', 1, 'https://ror.org/02neqps07 Innovative Chemical and Environmental Technologies (United States)'),
(7201, 'https://ror.org/02nfh0m56', 'en', 1, 'https://ror.org/02nfh0m56 Pittsburgh Public Schools'),
(7202, 'https://ror.org/02njbjk47', 'en', 1, 'https://ror.org/02njbjk47 DHHS Alliance'),
(7203, 'https://ror.org/02njpkz73', 'en', 1, 'https://ror.org/02njpkz73 Hull Royal Infirmary'),
(7204, 'https://ror.org/02nknzn40', 'en', 1, 'https://ror.org/02nknzn40 Institute of Problems of Chemical Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем химической физики'),
(7205, 'https://ror.org/02npvem89', 'en', 1, 'https://ror.org/02npvem89 Air & Waste Management Association'),
(7206, 'https://ror.org/02nrhnf93', 'en', 1, 'https://ror.org/02nrhnf93 City Eye Centre'),
(7207, 'https://ror.org/02ntheh91', 'es', 1, 'https://ror.org/02ntheh91 Instituto Venezolano de Investigaciones CientĆ­ficas'),
(7208, 'https://ror.org/02nw0wb75', 'en', 1, 'https://ror.org/02nw0wb75 Wycombe General Hospital'),
(7209, 'https://ror.org/02nw48b86', 'en', 1, 'https://ror.org/02nw48b86 American Society of Hematology'),
(7210, 'https://ror.org/02p014d02', 'en', 1, 'https://ror.org/02p014d02 American International College'),
(7211, 'https://ror.org/02p0yhm49', 'no_lang_code', 1, 'https://ror.org/02p0yhm49 Simulations Plus (United States)'),
(7212, 'https://ror.org/02p54vf94', 'en', 1, 'https://ror.org/02p54vf94 DGA Partners'),
(7213, 'https://ror.org/02p5qdz58', 'no_lang_code', 1, 'https://ror.org/02p5qdz58 Insilicos (United States)'),
(7214, 'https://ror.org/02p6vh725', 'en', 1, 'https://ror.org/02p6vh725 Mount Wachusett Community College'),
(7215, 'https://ror.org/02p7gn625', 'fr', 1, 'https://ror.org/02p7gn625 CƩgep de l''Abitibi TƩmiscamingue, CƩgep de l''abitibi-tƩmiscamingue'),
(7216, 'https://ror.org/02p7sht55', 'en', 1, 'https://ror.org/02p7sht55 National Vital Statistics System'),
(7217, 'https://ror.org/02pbkp259', 'no_lang_code', 1, 'https://ror.org/02pbkp259 Actian (United States)'),
(7218, 'https://ror.org/02pbsk254', 'de', 1, 'https://ror.org/02pbsk254 Klinikum Lippe'),
(7219, 'https://ror.org/02pdvpq69', 'no_lang_code', 1, 'https://ror.org/02pdvpq69 Affinergy (United States)'),
(7220, 'https://ror.org/02peeh644', 'no_lang_code', 1, 'https://ror.org/02peeh644 HBP (United States)'),
(7221, 'https://ror.org/02pf22978', 'no_lang_code', 1, 'https://ror.org/02pf22978 BioSense (United States)'),
(7222, 'https://ror.org/02pfhsd84', 'en', 1, 'https://ror.org/02pfhsd84 A.V. Luikov Heat and Mass Transfer Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ тепло- Šø массообмена имени А.Š’. Лыкова ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(7223, 'https://ror.org/02phjfe17', 'no_lang_code', 1, 'https://ror.org/02phjfe17 Aridis Pharmaceuticals (United States)'),
(7224, 'https://ror.org/02pj04690', 'en', 1, 'https://ror.org/02pj04690 Theda Clark Medical Center'),
(7225, 'https://ror.org/02pmr4c75', 'en', 1, 'https://ror.org/02pmr4c75 Hastings Center'),
(7226, 'https://ror.org/02pn0tx11', 'en', 1, 'https://ror.org/02pn0tx11 Aliviane'),
(7227, 'https://ror.org/02pnmd628', 'en', 1, 'https://ror.org/02pnmd628 American Foundation for Donation and Transplantation'),
(7228, 'https://ror.org/02pnxn245', 'en', 1, 'https://ror.org/02pnxn245 Texas State Technical College Waco'),
(7229, 'https://ror.org/02pp1v282', 'no_lang_code', 1, 'https://ror.org/02pp1v282 AntiCancer (United States)');
INSERT INTO `rors` VALUES
(7230, 'https://ror.org/02prqh017', 'en', 1, 'https://ror.org/02prqh017 Holon Institute of Technology'),
(7231, 'https://ror.org/02pstqj22', 'en', 1, 'https://ror.org/02pstqj22 National Action Council for Minorities in Engineering'),
(7232, 'https://ror.org/02pve7657', 'fr', 1, 'https://ror.org/02pve7657 Groupe Hospitalier du Havre'),
(7233, 'https://ror.org/02pwnhd33', 'fr', 1, 'https://ror.org/02pwnhd33 Centre Jean Perrin'),
(7234, 'https://ror.org/02py7c988', 'no_lang_code', 1, 'https://ror.org/02py7c988 DxRay (United States)'),
(7235, 'https://ror.org/02pyrw675', 'no_lang_code', 1, 'https://ror.org/02pyrw675 Sensor Research and Development Corporation (United States)'),
(7236, 'https://ror.org/02pyw0y06', 'en', 1, 'https://ror.org/02pyw0y06 Taos Orthopaedic Institute'),
(7237, 'https://ror.org/02q2kqs69', 'en', 1, 'https://ror.org/02q2kqs69 Environmental Mutagenesis and Genomics Society'),
(7238, 'https://ror.org/02q2pqb13', 'en', 1, 'https://ror.org/02q2pqb13 Cooperative Research Centre for Tissue Growth and Repair'),
(7239, 'https://ror.org/02q49af68', 'en', 1, 'https://ror.org/02q49af68 Aberdeen Royal Infirmary'),
(7240, 'https://ror.org/02q69x434', 'en', 1, 'https://ror.org/02q69x434 Peterborough City Hospital'),
(7241, 'https://ror.org/02q76t874', 'no_lang_code', 1, 'https://ror.org/02q76t874 Akina (United States)'),
(7242, 'https://ror.org/02q865m71', 'en', 1, 'https://ror.org/02q865m71 Diablo Valley College'),
(7243, 'https://ror.org/02q8vhr64', 'en', 1, 'https://ror.org/02q8vhr64 Kobe City College of Technology ē„žęˆøåø‚ē«‹å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(7244, 'https://ror.org/02q9ktd98', 'no_lang_code', 1, 'https://ror.org/02q9ktd98 Real Time Analyzers (United States)'),
(7245, 'https://ror.org/02q9tvn08', 'en', 1, 'https://ror.org/02q9tvn08 Royal Institution of Chartered Surveyors'),
(7246, 'https://ror.org/02qaw7v88', 'no_lang_code', 1, 'https://ror.org/02qaw7v88 Gold Standard Simulations (United Kingdom)'),
(7247, 'https://ror.org/02qb5bp07', 'no_lang_code', 1, 'https://ror.org/02qb5bp07 Tornado Spectral Systems (Canada)'),
(7248, 'https://ror.org/02qbhr955', 'ro', 1, 'https://ror.org/02qbhr955 Institutul Cantacuzino'),
(7249, 'https://ror.org/02qbj0866', 'no_lang_code', 1, 'https://ror.org/02qbj0866 AiCure (United States)'),
(7250, 'https://ror.org/02qdmsh42', 'en', 1, 'https://ror.org/02qdmsh42 Connecticut Department of Children and Families'),
(7251, 'https://ror.org/02qf7zp16', 'en', 1, 'https://ror.org/02qf7zp16 Iowa Lakes Community College'),
(7252, 'https://ror.org/02qgx4h83', 'no_lang_code', 1, 'https://ror.org/02qgx4h83 Immersion (United States)'),
(7253, 'https://ror.org/02qhjcg87', 'en', 1, 'https://ror.org/02qhjcg87 Mason Parks & Recreation Foundation'),
(7254, 'https://ror.org/02qjtm453', 'no_lang_code', 1, 'https://ror.org/02qjtm453 Natus (United States)'),
(7255, 'https://ror.org/02qsnn284', 'en', 1, 'https://ror.org/02qsnn284 North Jersey Community Research Initiative'),
(7256, 'https://ror.org/02qv6pw23', 'en', 1, 'https://ror.org/02qv6pw23 JMI Laboratories'),
(7257, 'https://ror.org/02qwdzc67', 'en', 1, 'https://ror.org/02qwdzc67 Confederation of European Forest Owners'),
(7258, 'https://ror.org/02qwvxs86', 'sv', 1, 'https://ror.org/02qwvxs86 Eastmaninstitutet The Eastman Institute'),
(7259, 'https://ror.org/02r06yv13', 'no_lang_code', 1, 'https://ror.org/02r06yv13 FJE Enterprises (United States)'),
(7260, 'https://ror.org/02r0rps05', 'it', 1, 'https://ror.org/02r0rps05 Ospedale Sant''Orsola di Brescia'),
(7261, 'https://ror.org/02r5hv713', 'no_lang_code', 1, 'https://ror.org/02r5hv713 Vista Scientific (United States)'),
(7262, 'https://ror.org/02r5scg33', 'no_lang_code', 1, 'https://ror.org/02r5scg33 Intel (Ireland)'),
(7263, 'https://ror.org/02r96rf44', 'no_lang_code', 1, 'https://ror.org/02r96rf44 Qiagen (Germany)'),
(7264, 'https://ror.org/02r9beq73', 'no_lang_code', 1, 'https://ror.org/02r9beq73 Loccioni (Italy)'),
(7265, 'https://ror.org/02rb17w33', 'no_lang_code', 1, 'https://ror.org/02rb17w33 Wright Medical Technology (United States)'),
(7266, 'https://ror.org/02rbfnr22', 'en', 1, 'https://ror.org/02rbfnr22 Max Planck Florida Institute for Neuroscience'),
(7267, 'https://ror.org/02rbnw681', 'no_lang_code', 1, 'https://ror.org/02rbnw681 Platypus Technologies (United States)'),
(7268, 'https://ror.org/02rdhhs90', 'en', 1, 'https://ror.org/02rdhhs90 Emmanuel College - Massachusetts'),
(7269, 'https://ror.org/02res4f29', 'en', 1, 'https://ror.org/02res4f29 Overseas Development Institute'),
(7270, 'https://ror.org/02revdf05', 'en', 1, 'https://ror.org/02revdf05 Moraine Valley Community College'),
(7271, 'https://ror.org/02rgsw982', 'no_lang_code', 1, 'https://ror.org/02rgsw982 Apath (United States)'),
(7272, 'https://ror.org/02rh7vj17', 'en', 1, 'https://ror.org/02rh7vj17 Alaska Department of Fish and Game'),
(7273, 'https://ror.org/02rnyzs79', 'en', 1, 'https://ror.org/02rnyzs79 NatureServe'),
(7274, 'https://ror.org/02rr12y45', 'en', 1, 'https://ror.org/02rr12y45 Press Ganey'),
(7275, 'https://ror.org/02rr5zn35', 'no_lang_code', 1, 'https://ror.org/02rr5zn35 Uken (Canada)'),
(7276, 'https://ror.org/02rthxz10', 'en', 1, 'https://ror.org/02rthxz10 St Vincent''s Clinic'),
(7277, 'https://ror.org/02rxmd442', 'no_lang_code', 1, 'https://ror.org/02rxmd442 Glyndwr Innovations (United Kingdom)'),
(7278, 'https://ror.org/02rxq9s71', 'no_lang_code', 1, 'https://ror.org/02rxq9s71 Wright Materials Research (United States)'),
(7279, 'https://ror.org/02s04h872', 'no_lang_code', 1, 'https://ror.org/02s04h872 D. E. Shaw Research'),
(7280, 'https://ror.org/02s0dm484', 'en', 1, 'https://ror.org/02s0dm484 Sunderland Royal Hospital'),
(7281, 'https://ror.org/02s0pza74', 'en', 1, 'https://ror.org/02s0pza74 Hallands Sjukhus Varberg Varberg Hospital'),
(7282, 'https://ror.org/02s1t7068', 'en', 1, 'https://ror.org/02s1t7068 Eastern Oklahoma State College'),
(7283, 'https://ror.org/02s3g3z50', 'no_lang_code', 1, 'https://ror.org/02s3g3z50 Nokia (Portugal)'),
(7284, 'https://ror.org/02s3j1d69', 'no_lang_code', 1, 'https://ror.org/02s3j1d69 VenatoRx Pharmaceuticals (United States)'),
(7285, 'https://ror.org/02s4ke886', 'no_lang_code', 1, 'https://ror.org/02s4ke886 HemoShear (United States)'),
(7286, 'https://ror.org/02s5pwd41', 'no_lang_code', 1, 'https://ror.org/02s5pwd41 DeltaQuest Foundation (United States)'),
(7287, 'https://ror.org/02s5xnv22', 'en', 1, 'https://ror.org/02s5xnv22 Spinal Diagnostics and Treatment Center'),
(7288, 'https://ror.org/02s619e80', 'no_lang_code', 1, 'https://ror.org/02s619e80 Dawkins Productions (United States)'),
(7289, 'https://ror.org/02s61w335', 'it', 1, 'https://ror.org/02s61w335 Ospedale Regionale di Bellinzona e Valli Regional Hospital of Bellinzona and Valleys'),
(7290, 'https://ror.org/02s61y919', 'en', 1, 'https://ror.org/02s61y919 Valley Breast Care & Woman''s Health Center'),
(7291, 'https://ror.org/02sbj8547', 'en', 1, 'https://ror.org/02sbj8547 Waynesburg University'),
(7292, 'https://ror.org/02sdw5w15', 'no_lang_code', 1, 'https://ror.org/02sdw5w15 Active Motif (United States)'),
(7293, 'https://ror.org/02se3s925', 'en', 1, 'https://ror.org/02se3s925 Inova Children''s Hospital'),
(7294, 'https://ror.org/02segr176', 'no_lang_code', 1, 'https://ror.org/02segr176 Applied Human Factors (United States)'),
(7295, 'https://ror.org/02sepg748', 'en', 1, 'https://ror.org/02sepg748 Institute of Materials Research and Engineering'),
(7296, 'https://ror.org/02sftpz67', 'no_lang_code', 1, 'https://ror.org/02sftpz67 AFC Energy (United Kingdom)'),
(7297, 'https://ror.org/02sgk9b41', 'no_lang_code', 1, 'https://ror.org/02sgk9b41 SynZyme Technologies (United States)'),
(7298, 'https://ror.org/02sgyhv62', 'en', 1, 'https://ror.org/02sgyhv62 California Family Health Council'),
(7299, 'https://ror.org/02sh8ry89', 'no_lang_code', 1, 'https://ror.org/02sh8ry89 Wicab (United States)'),
(7300, 'https://ror.org/02sjmdw37', 'en', 1, 'https://ror.org/02sjmdw37 Western Consortium for Public Health'),
(7301, 'https://ror.org/02sjy2915', 'en', 1, 'https://ror.org/02sjy2915 Podiatry Institute'),
(7302, 'https://ror.org/02sn8xp43', 'no_lang_code', 1, 'https://ror.org/02sn8xp43 Oxonica (United Kingdom)'),
(7303, 'https://ror.org/02snwfx66', 'en', 1, 'https://ror.org/02snwfx66 Trafford General Hospital'),
(7304, 'https://ror.org/02sptv349', 'en', 1, 'https://ror.org/02sptv349 National Institute for Women in Trades, Technology & Sciences'),
(7305, 'https://ror.org/02srjnb65', 'no_lang_code', 1, 'https://ror.org/02srjnb65 Membrane Reactor Technologies (Canada)'),
(7306, 'https://ror.org/02stwhg86', 'en', 1, 'https://ror.org/02stwhg86 St. Charles Medical Center'),
(7307, 'https://ror.org/02stzb903', 'en', 1, 'https://ror.org/02stzb903 Victoria Hospital'),
(7308, 'https://ror.org/02swxtp23', 'en', 1, 'https://ror.org/02swxtp23 National Acoustic Laboratories'),
(7309, 'https://ror.org/02swzn148', 'en', 1, 'https://ror.org/02swzn148 Pain Management Center of Paducah'),
(7310, 'https://ror.org/02symh967', 'no_lang_code', 1, 'https://ror.org/02symh967 Manhattan Scientifics (United States)'),
(7311, 'https://ror.org/02t0zgq96', 'no_lang_code', 1, 'https://ror.org/02t0zgq96 ArmaGen (United States)'),
(7312, 'https://ror.org/02t110213', 'en', 1, 'https://ror.org/02t110213 New England College of Optometry'),
(7313, 'https://ror.org/02t1t6n83', 'en', 1, 'https://ror.org/02t1t6n83 Burdenko Neurosurgery Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ автономное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø имени акаГемика Š.Š. Š‘ŃƒŃ€Š“ŠµŠ½ŠŗŠ¾ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(7314, 'https://ror.org/02t3wzq80', 'en', 1, 'https://ror.org/02t3wzq80 Palm Beach State College'),
(7315, 'https://ror.org/02t6r9161', 'en', 1, 'https://ror.org/02t6r9161 Rust College'),
(7316, 'https://ror.org/02t6xhx48', 'no_lang_code', 1, 'https://ror.org/02t6xhx48 Photozig (United States)'),
(7317, 'https://ror.org/02t7c5797', 'en', 1, 'https://ror.org/02t7c5797 Connecticut Agricultural Experiment Station'),
(7318, 'https://ror.org/02t7ex691', 'no_lang_code', 1, 'https://ror.org/02t7ex691 Minnetronix (United States)'),
(7319, 'https://ror.org/02t7v8j62', 'en', 1, 'https://ror.org/02t7v8j62 City of Edinburgh Council'),
(7320, 'https://ror.org/02tc4ww71', 'en', 1, 'https://ror.org/02tc4ww71 Peninsula Regional Medical Center'),
(7321, 'https://ror.org/02tcncc65', 'en', 1, 'https://ror.org/02tcncc65 Centerforce'),
(7322, 'https://ror.org/02td3ps96', 'en', 1, 'https://ror.org/02td3ps96 Dartmouth Psychiatric Research Center'),
(7323, 'https://ror.org/02tdag098', 'no_lang_code', 1, 'https://ror.org/02tdag098 Mirna Therapeutics (United States)'),
(7324, 'https://ror.org/02tfv4t78', 'no_lang_code', 1, 'https://ror.org/02tfv4t78 Corning (United States)'),
(7325, 'https://ror.org/02tj9h434', 'en', 1, 'https://ror.org/02tj9h434 Allegany College of Maryland'),
(7326, 'https://ror.org/02tmx5588', 'no_lang_code', 1, 'https://ror.org/02tmx5588 Danaher (United States)'),
(7327, 'https://ror.org/02tn1ck84', 'en', 1, 'https://ror.org/02tn1ck84 National Eisteddfod of Wales'),
(7328, 'https://ror.org/02tp2kq68', 'it', 1, 'https://ror.org/02tp2kq68 Fondazione Ospedale Salesi'),
(7329, 'https://ror.org/02tqrck55', 'no_lang_code', 1, 'https://ror.org/02tqrck55 En''Urga (United States)'),
(7330, 'https://ror.org/02tr01m06', 'no_lang_code', 1, 'https://ror.org/02tr01m06 International Severity Information Systems (United States)'),
(7331, 'https://ror.org/02tre1223', 'en', 1, 'https://ror.org/02tre1223 William Harvey Hospital'),
(7332, 'https://ror.org/02trgd202', 'ca', 1, 'https://ror.org/02trgd202 Institut Municipal d''AssistĆØncia SanitĆ ria'),
(7333, 'https://ror.org/02tryst02', 'no_lang_code', 1, 'https://ror.org/02tryst02 Agilent Technologies (United States)'),
(7334, 'https://ror.org/02ts2hy13', 'en', 1, 'https://ror.org/02ts2hy13 National Association of Biology Teachers'),
(7335, 'https://ror.org/02ts3bw45', 'no_lang_code', 1, 'https://ror.org/02ts3bw45 Plantvax (United States)'),
(7336, 'https://ror.org/02ts3my48', 'no_lang_code', 1, 'https://ror.org/02ts3my48 Chem-Space Associates (United States)'),
(7337, 'https://ror.org/02ts7ew79', 'en', 1, 'https://ror.org/02ts7ew79 West Suffolk Hospital'),
(7338, 'https://ror.org/02ttgyc97', 'no_lang_code', 1, 'https://ror.org/02ttgyc97 dbaza health (United States)'),
(7339, 'https://ror.org/02ttqd922', 'en', 1, 'https://ror.org/02ttqd922 Electrical and Computer Engineering Department Heads Association'),
(7340, 'https://ror.org/02tw58061', 'en', 1, 'https://ror.org/02tw58061 Piedmont Virginia Community College'),
(7341, 'https://ror.org/02twc7963', 'en', 1, 'https://ror.org/02twc7963 Aerospace Valley'),
(7342, 'https://ror.org/02tyer376', 'en', 1, 'https://ror.org/02tyer376 Leibniz Institute DSMZ – German Collection of Microorganisms and Cell Cultures Leibniz-Institut DSMZ-Deutsche Sammlung von Mikroorganismen und Zellkulturen'),
(7343, 'https://ror.org/02v02q390', 'no_lang_code', 1, 'https://ror.org/02v02q390 Aston Martin Lagonda (United Kingdom)'),
(7344, 'https://ror.org/02v05yj51', 'en', 1, 'https://ror.org/02v05yj51 All Africa Leprosy Tuberculosis and Rehabilitation Training Centre'),
(7345, 'https://ror.org/02v0be184', 'no_lang_code', 1, 'https://ror.org/02v0be184 Shioda General Hospital ę±ē”°ē·åˆē—…é™¢'),
(7346, 'https://ror.org/02v0mj573', 'en', 1, 'https://ror.org/02v0mj573 Royal Albert Edward Infirmary'),
(7347, 'https://ror.org/02v4ner66', 'fr', 1, 'https://ror.org/02v4ner66 Centre hospitalier Etterbeek-Ixelles'),
(7348, 'https://ror.org/02v50dx14', 'no_lang_code', 1, 'https://ror.org/02v50dx14 Taiho Pharmaceutical (Japan) 大鵬薬品巄愭'),
(7349, 'https://ror.org/02v6vej93', 'en', 1, 'https://ror.org/02v6vej93 Institute of Liver and Biliary Sciences'),
(7350, 'https://ror.org/02v7j5a68', 'no_lang_code', 1, 'https://ror.org/02v7j5a68 Intelligent Fiber Optic Systems (United States)'),
(7351, 'https://ror.org/02v81r985', 'no_lang_code', 1, 'https://ror.org/02v81r985 Ametek (United States)'),
(7352, 'https://ror.org/02vaftm28', 'en', 1, 'https://ror.org/02vaftm28 Sea Education Association'),
(7353, 'https://ror.org/02vajn858', 'en', 1, 'https://ror.org/02vajn858 CGH Medical Center'),
(7354, 'https://ror.org/02vbwbd19', 'en', 1, 'https://ror.org/02vbwbd19 Campbell Clinic'),
(7355, 'https://ror.org/02vd9xc25', 'no_lang_code', 1, 'https://ror.org/02vd9xc25 Avacta (United Kingdom)'),
(7356, 'https://ror.org/02vdyxx64', 'no_lang_code', 1, 'https://ror.org/02vdyxx64 Verizon (United States)'),
(7357, 'https://ror.org/02ved8513', 'en', 1, 'https://ror.org/02ved8513 Project HOPE'),
(7358, 'https://ror.org/02vf4sk45', 'en', 1, 'https://ror.org/02vf4sk45 Institute of Evolutionary Physiology and Biochemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ²Š¾Š»ŃŽŃ†ŠøŠ¾Š½Š½Š¾Š¹ физиологии Šø биохимии им. И.М. Деченова Российской акаГемии наук'),
(7359, 'https://ror.org/02vfnsn98', 'en', 1, 'https://ror.org/02vfnsn98 Lynn Health Science Institute'),
(7360, 'https://ror.org/02vgfg208', 'en', 1, 'https://ror.org/02vgfg208 New Mexico Department of Human Services'),
(7361, 'https://ror.org/02vhff552', 'en', 1, 'https://ror.org/02vhff552 Freshwater Fisheries Society of BC'),
(7362, 'https://ror.org/02vhmfv49', 'en', 1, 'https://ror.org/02vhmfv49 United Christian Hospital'),
(7363, 'https://ror.org/02vjt9x89', 'no_lang_code', 1, 'https://ror.org/02vjt9x89 SciTech Development (United States)'),
(7364, 'https://ror.org/02vjx4k16', 'en', 1, 'https://ror.org/02vjx4k16 National Transport Hospital "Tzar Boris III" национална многопрофилна транспортна болница цар борис ііі'),
(7365, 'https://ror.org/02vpkdk18', 'no_lang_code', 1, 'https://ror.org/02vpkdk18 Synergy Enterprises (United States)'),
(7366, 'https://ror.org/02vpzy864', 'no_lang_code', 1, 'https://ror.org/02vpzy864 4D Soft (Hungary)'),
(7367, 'https://ror.org/02vrwn188', 'en', 1, 'https://ror.org/02vrwn188 International Society for Infectious Diseases'),
(7368, 'https://ror.org/02vsy6m37', 'en', 1, 'https://ror.org/02vsy6m37 Centre for Infectious Disease Research in Zambia'),
(7369, 'https://ror.org/02vtgg877', 'no_lang_code', 1, 'https://ror.org/02vtgg877 Fusion (United States)'),
(7370, 'https://ror.org/02vxngq63', 'en', 1, 'https://ror.org/02vxngq63 Latvian Academy of Sciences'),
(7371, 'https://ror.org/02vydqh80', 'en', 1, 'https://ror.org/02vydqh80 Interstate Shellfish Sanitation Conference'),
(7372, 'https://ror.org/02vz80y09', 'es', 1, 'https://ror.org/02vz80y09 Centro Medico Nacional Siglo XXI'),
(7373, 'https://ror.org/02w335z67', 'no_lang_code', 1, 'https://ror.org/02w335z67 InterDigital (United States)'),
(7374, 'https://ror.org/02w368938', 'no_lang_code', 1, 'https://ror.org/02w368938 PhysioGenix (United States)'),
(7375, 'https://ror.org/02w38qn81', 'en', 1, 'https://ror.org/02w38qn81 Forum for the Future'),
(7376, 'https://ror.org/02w6m7e50', 'de', 1, 'https://ror.org/02w6m7e50 University Heart Center Freiburg UniversitƤts-Herzzentrum Freiburg-Bad Krozingen'),
(7377, 'https://ror.org/02w6r0892', 'fr', 1, 'https://ror.org/02w6r0892 Institut Philippe Pinel de MontrƩal Philippe Pinel Institute'),
(7378, 'https://ror.org/02w7azg93', 'no_lang_code', 1, 'https://ror.org/02w7azg93 Chiba Cerebral and Cardiovascular Center åƒč‘‰ēœŒč„³č”€ē®”ć‚»ćƒ³ć‚æ'),
(7379, 'https://ror.org/02w95ej18', 'en', 1, 'https://ror.org/02w95ej18 Suita Municipal Hospital 市立吹田市民病院'),
(7380, 'https://ror.org/02wcc5n95', 'en', 1, 'https://ror.org/02wcc5n95 Association of Dutch Burn Centres Vereniging Samenwerkende Brandwondencentra'),
(7381, 'https://ror.org/02wcma710', 'no_lang_code', 1, 'https://ror.org/02wcma710 Schafer Corporation (United States)'),
(7382, 'https://ror.org/02wcqs336', 'en', 1, 'https://ror.org/02wcqs336 Jerusalem Mental Health Center ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש ×™×Ø×•×©×œ×™×'),
(7383, 'https://ror.org/02wed1y10', 'no_lang_code', 1, 'https://ror.org/02wed1y10 Learning in Motion (United States)'),
(7384, 'https://ror.org/02wfw7g10', 'no_lang_code', 1, 'https://ror.org/02wfw7g10 QM Power (United States)'),
(7385, 'https://ror.org/02whkqx98', 'no_lang_code', 1, 'https://ror.org/02whkqx98 Social Solutions International (United States)'),
(7386, 'https://ror.org/02wjx3n88', 'no_lang_code', 1, 'https://ror.org/02wjx3n88 Biomomentum (Canada)'),
(7387, 'https://ror.org/02wkp0463', 'fr', 1, 'https://ror.org/02wkp0463 Service RƩgional Vaudois de Transfusion Sanguine'),
(7388, 'https://ror.org/02wmjtd85', 'en', 1, 'https://ror.org/02wmjtd85 Notre Dame College'),
(7389, 'https://ror.org/02wna9e57', 'pt', 1, 'https://ror.org/02wna9e57 Instituto Adolfo Lutz'),
(7390, 'https://ror.org/02wndzd81', 'en', 1, 'https://ror.org/02wndzd81 Heart and Diabetes Center North Rhine-Westphalia Herz- und Diabeteszentrum Nordrhein-Westfalen'),
(7391, 'https://ror.org/02wpa5731', 'en', 1, 'https://ror.org/02wpa5731 Takatsuki Red Cross Hospital é«˜ę§»čµ¤åå­—ē—…é™¢'),
(7392, 'https://ror.org/02wv0bc69', 'no_lang_code', 1, 'https://ror.org/02wv0bc69 DNA Polymerase Technology (United States)'),
(7393, 'https://ror.org/02wv25745', 'no_lang_code', 1, 'https://ror.org/02wv25745 ParaTechs (United States)'),
(7394, 'https://ror.org/02wvm8742', 'no_lang_code', 1, 'https://ror.org/02wvm8742 Montserrat Volcano Observatory'),
(7395, 'https://ror.org/02wvnxv35', 'no_lang_code', 1, 'https://ror.org/02wvnxv35 Inflazyme (Canada)'),
(7396, 'https://ror.org/02wxe0t87', 'es', 1, 'https://ror.org/02wxe0t87 Centro Español de Investigación Farmacoepidemiológica Spanish Centre for Pharmacoepidemiologic Research'),
(7397, 'https://ror.org/02wxwab08', 'en', 1, 'https://ror.org/02wxwab08 Botanical Research Institute of Texas'),
(7398, 'https://ror.org/02wxws056', 'no_lang_code', 1, 'https://ror.org/02wxws056 Dynamic Graphics (United States)'),
(7399, 'https://ror.org/02wy9g851', 'no_lang_code', 1, 'https://ror.org/02wy9g851 Colibri Software (Canada)'),
(7400, 'https://ror.org/02wzb5b52', 'en', 1, 'https://ror.org/02wzb5b52 Grand Forks Human Nutrition Research Center'),
(7401, 'https://ror.org/02x1zab29', 'no_lang_code', 1, 'https://ror.org/02x1zab29 Chemring Technology Solutions (United Kingdom)'),
(7402, 'https://ror.org/02x4k7z35', 'no_lang_code', 1, 'https://ror.org/02x4k7z35 Carepayment (United States)'),
(7403, 'https://ror.org/02x4mx473', 'en', 1, 'https://ror.org/02x4mx473 Belgian Ceramic Research Centre'),
(7404, 'https://ror.org/02x6aye26', 'en', 1, 'https://ror.org/02x6aye26 National Association of State Boards of Education'),
(7405, 'https://ror.org/02x6fhe76', 'en', 1, 'https://ror.org/02x6fhe76 Transcultural Mental Health Institute'),
(7406, 'https://ror.org/02x6y0g48', 'en', 1, 'https://ror.org/02x6y0g48 Ann Becker and Associates'),
(7407, 'https://ror.org/02x9bj444', 'en', 1, 'https://ror.org/02x9bj444 Hampton VA Medical Center'),
(7408, 'https://ror.org/02xbbj940', 'no_lang_code', 1, 'https://ror.org/02xbbj940 CASI Pharmaceuticals (United States)'),
(7409, 'https://ror.org/02xdxmh23', 'en', 1, 'https://ror.org/02xdxmh23 San Jacinto College'),
(7410, 'https://ror.org/02xe87f77', 'no_lang_code', 1, 'https://ror.org/02xe87f77 Yamagata Prefectural Central Hospital å±±å½¢ēœŒē«‹äø­å¤®ē—…é™¢'),
(7411, 'https://ror.org/02xf69211', 'no_lang_code', 1, 'https://ror.org/02xf69211 XRSciences (United States)'),
(7412, 'https://ror.org/02xfnnq52', 'no_lang_code', 1, 'https://ror.org/02xfnnq52 Bio Products Laboratory (United Kingdom)'),
(7413, 'https://ror.org/02xh63p53', 'en', 1, 'https://ror.org/02xh63p53 American Board of Emergency Medicine'),
(7414, 'https://ror.org/02xhxds14', 'no_lang_code', 1, 'https://ror.org/02xhxds14 Consarc Design Group (United Kingdom)'),
(7415, 'https://ror.org/02xm4cz36', 'en', 1, 'https://ror.org/02xm4cz36 LaserVision'),
(7416, 'https://ror.org/02xmjm585', 'no_lang_code', 1, 'https://ror.org/02xmjm585 Intelligent Mechatronic Systems (Canada)'),
(7417, 'https://ror.org/02xnj2427', 'fr', 1, 'https://ror.org/02xnj2427 HĆ“pital de Ville-Ɖvrard'),
(7418, 'https://ror.org/02xp6nt38', 'en', 1, 'https://ror.org/02xp6nt38 Wheeling Hospital'),
(7419, 'https://ror.org/02xqze381', 'it', 1, 'https://ror.org/02xqze381 Ospedale San Bassiano'),
(7420, 'https://ror.org/02xrwdh93', 'en', 1, 'https://ror.org/02xrwdh93 Southern College of Optometry'),
(7421, 'https://ror.org/02xryym68', 'no_lang_code', 1, 'https://ror.org/02xryym68 Ashwin-Ushas (United States)'),
(7422, 'https://ror.org/02xs4hf68', 'no_lang_code', 1, 'https://ror.org/02xs4hf68 Incom (United States)'),
(7423, 'https://ror.org/02xst6m67', 'no_lang_code', 1, 'https://ror.org/02xst6m67 XL Sci-Tech (United States)'),
(7424, 'https://ror.org/02xvj0167', 'no_lang_code', 1, 'https://ror.org/02xvj0167 Lifepharms (United States)'),
(7425, 'https://ror.org/02xwa6p02', 'no_lang_code', 1, 'https://ror.org/02xwa6p02 Cubist Pharmaceuticals (United States)'),
(7426, 'https://ror.org/02xx07v13', 'fr', 1, 'https://ror.org/02xx07v13 Neurocentre Magendie'),
(7427, 'https://ror.org/02xx54833', 'no_lang_code', 1, 'https://ror.org/02xx54833 HedgePath Pharmaceuticals (United States)'),
(7428, 'https://ror.org/02xxpjq61', 'en', 1, 'https://ror.org/02xxpjq61 Indian Institute of Management Bangalore ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¬ą„‡ą¤‚ą¤—ą¤²ą„‚ą¤° ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ ą®ŖąÆ†ą®™ąÆą®•ą®³ąÆ‚ą®°ąÆ ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ā€Œą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°®ą±‡ą°Øą±‡ą°œą±ā€Œą°®ą±†ą°‚ą°Ÿą± బెంగుళూరు ą²‡ą²‚ą²”ą²æą²Æą²Øą³ā€Œ ą²‡ą²Øą³ā€Œą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ā€Œ ą²†ą²«ą³ā€Œ ą²®ą³ą²Æą²¾ą²Øą³‡ą²œą³ā€Œą²®ą³†ą²‚ą²Ÿą³ā€Œ ಬೆಂಗಳೂರು ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ą“¾ą“Øąµ‡ą“œąµā€Œą“®ąµ†ą“Øąµą“±ąµ, ą“¬ą“¾ą“‚ą“—ąµą“²ąµ‚ąµ¼'),
(7429, 'https://ror.org/02xyffp85', 'en', 1, 'https://ror.org/02xyffp85 Fatima Mata National College ą“«ą“¾ą“¤ąµą“¤ą“æą“® ą“®ą“¾ą“¤ą“¾ ą“Øą“¾ą“·ą“£ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(7430, 'https://ror.org/02y0wmd59', 'en', 1, 'https://ror.org/02y0wmd59 Children''s Heart Center Nevada'),
(7431, 'https://ror.org/02y1jb308', 'en', 1, 'https://ror.org/02y1jb308 Telus World of Science'),
(7432, 'https://ror.org/02y239j20', 'en', 1, 'https://ror.org/02y239j20 MentorNet'),
(7433, 'https://ror.org/02y2p9e58', 'no_lang_code', 1, 'https://ror.org/02y2p9e58 Prognosys Biosciences (United States)'),
(7434, 'https://ror.org/02y2qcy45', 'en', 1, 'https://ror.org/02y2qcy45 Phoebe Putney Memorial Hospital'),
(7435, 'https://ror.org/02y41ps56', 'no_lang_code', 1, 'https://ror.org/02y41ps56 ImmuneXcite (United States)'),
(7436, 'https://ror.org/02y447018', 'en', 1, 'https://ror.org/02y447018 Canadian Council on Animal Care'),
(7437, 'https://ror.org/02y5b7h51', 'no_lang_code', 1, 'https://ror.org/02y5b7h51 Collagen Matrix (United States)'),
(7438, 'https://ror.org/02y85r186', 'en', 1, 'https://ror.org/02y85r186 Ohio County Behavioral Health Authorities'),
(7439, 'https://ror.org/02y8r3y04', 'no_lang_code', 1, 'https://ror.org/02y8r3y04 Life Prediction Technologies (Canada)'),
(7440, 'https://ror.org/02y9ayd76', 'en', 1, 'https://ror.org/02y9ayd76 Vokkaligara Sangha Dental College & Hospital'),
(7441, 'https://ror.org/02ybbzx72', 'en', 1, 'https://ror.org/02ybbzx72 Consortium de Recherche et Innovations en BioprocƩdƩs Industriels au QuƩbec Quebec Consortium for Industrial Bioprocess Research and Innovation'),
(7442, 'https://ror.org/02ycgwy86', 'es', 1, 'https://ror.org/02ycgwy86 Profamilia'),
(7443, 'https://ror.org/02ycq1t04', 'no_lang_code', 1, 'https://ror.org/02ycq1t04 ABS Materials (United States)'),
(7444, 'https://ror.org/02ydc1657', 'it', 1, 'https://ror.org/02ydc1657 Gruppo di Ricerca Geriatrica'),
(7445, 'https://ror.org/02yfw7119', 'fr', 1, 'https://ror.org/02yfw7119 Fondation de Rothschild'),
(7446, 'https://ror.org/02ygwnf45', 'no_lang_code', 1, 'https://ror.org/02ygwnf45 Public Data Queries (United States)'),
(7447, 'https://ror.org/02yh9se80', 'en', 1, 'https://ror.org/02yh9se80 Russell Sage Foundation'),
(7448, 'https://ror.org/02yhx1447', 'en', 1, 'https://ror.org/02yhx1447 Western Pennsylvania Hospital'),
(7449, 'https://ror.org/02yj6hv88', 'no_lang_code', 1, 'https://ror.org/02yj6hv88 Pharis Biotec (Germany)'),
(7450, 'https://ror.org/02yk9rt54', 'en', 1, 'https://ror.org/02yk9rt54 Blast Theory'),
(7451, 'https://ror.org/02ym2t546', 'en', 1, 'https://ror.org/02ym2t546 Milwaukee Area Technical College'),
(7452, 'https://ror.org/02ymmdj85', 'en', 1, 'https://ror.org/02ymmdj85 Robert Wood Johnson Foundation'),
(7453, 'https://ror.org/02yp59539', 'en', 1, 'https://ror.org/02yp59539 Clinical Trials and Surveys Corporation'),
(7454, 'https://ror.org/02yqf2n67', 'en', 1, 'https://ror.org/02yqf2n67 American Indian Higher Education Consortium'),
(7455, 'https://ror.org/02yrkyr74', 'no_lang_code', 1, 'https://ror.org/02yrkyr74 Data Voice Exchange (United States)'),
(7456, 'https://ror.org/02yry4472', 'en', 1, 'https://ror.org/02yry4472 All-China Sports Federation'),
(7457, 'https://ror.org/02ys1c285', 'en', 1, 'https://ror.org/02ys1c285 Development Center for Biotechnology'),
(7458, 'https://ror.org/02ythcz79', 'en', 1, 'https://ror.org/02ythcz79 American Society for Cybernetics'),
(7459, 'https://ror.org/02yw59f42', 'en', 1, 'https://ror.org/02yw59f42 Central New Mexico Community College'),
(7460, 'https://ror.org/02yx0gd46', 'no_lang_code', 1, 'https://ror.org/02yx0gd46 Biomedical Frontiers (United States)'),
(7461, 'https://ror.org/02yx4yb97', 'no_lang_code', 1, 'https://ror.org/02yx4yb97 Epigen Biosciences (United States)'),
(7462, 'https://ror.org/02yxan022', 'no_lang_code', 1, 'https://ror.org/02yxan022 Quanser (Canada)'),
(7463, 'https://ror.org/02yz66a54', 'no_lang_code', 1, 'https://ror.org/02yz66a54 NovelMed Therapeutics (United States)'),
(7464, 'https://ror.org/02yzma536', 'no_lang_code', 1, 'https://ror.org/02yzma536 Infrared Fiber Systems (United States)'),
(7465, 'https://ror.org/02z2dfb58', 'en', 1, 'https://ror.org/02z2dfb58 CeMM Research Center for Molecular Medicine'),
(7466, 'https://ror.org/02z2r2t61', 'no_lang_code', 1, 'https://ror.org/02z2r2t61 Rockland Immunochemicals (United States)'),
(7467, 'https://ror.org/02z36x226', 'no_lang_code', 1, 'https://ror.org/02z36x226 Vancouver Enterprise Forum'),
(7468, 'https://ror.org/02z384071', 'en', 1, 'https://ror.org/02z384071 American Political Science Association'),
(7469, 'https://ror.org/02z40ce29', 'en', 1, 'https://ror.org/02z40ce29 Red River College'),
(7470, 'https://ror.org/02z6ck570', 'no_lang_code', 1, 'https://ror.org/02z6ck570 IPL (Canada)'),
(7471, 'https://ror.org/02z6cxz02', 'en', 1, 'https://ror.org/02z6cxz02 Warwick Hospital'),
(7472, 'https://ror.org/02z87mf86', 'en', 1, 'https://ror.org/02z87mf86 Mountain Home VA Healthcare System'),
(7473, 'https://ror.org/02z8v3172', 'no_lang_code', 1, 'https://ror.org/02z8v3172 Systex (United States)'),
(7474, 'https://ror.org/02z95d405', 'de', 1, 'https://ror.org/02z95d405 Institut für Klinische Forschung und Entwicklung'),
(7475, 'https://ror.org/02z9b2w17', 'sv', 1, 'https://ror.org/02z9b2w17 LƤnssjukhuset Sundsvall-HƤrnƶsand'),
(7476, 'https://ror.org/02z9mtw38', 'en', 1, 'https://ror.org/02z9mtw38 Tapestry Health'),
(7477, 'https://ror.org/02zan5e48', 'en', 1, 'https://ror.org/02zan5e48 Menorah Park Center for Senior Living'),
(7478, 'https://ror.org/02zdz1m23', 'en', 1, 'https://ror.org/02zdz1m23 Ministry of Agriculture, Forestry and Fisheries č¾²ęž—ę°“ē”£ēœ'),
(7479, 'https://ror.org/02zdz9s16', 'en', 1, 'https://ror.org/02zdz9s16 Ackerman Institute for the Family'),
(7480, 'https://ror.org/02zepah98', 'en', 1, 'https://ror.org/02zepah98 Hand and Wrist Center of Houston'),
(7481, 'https://ror.org/02zhhtj16', 'en', 1, 'https://ror.org/02zhhtj16 West Virginia High Technology Consortium Foundation'),
(7482, 'https://ror.org/02zhjb475', 'en', 1, 'https://ror.org/02zhjb475 Thompson Cancer Survival Center'),
(7483, 'https://ror.org/02zhwmh74', 'en', 1, 'https://ror.org/02zhwmh74 Cincinnati Eye Institute'),
(7484, 'https://ror.org/02zhyrb63', 'en', 1, 'https://ror.org/02zhyrb63 Institute of Immunology'),
(7485, 'https://ror.org/02zm13s10', 'en', 1, 'https://ror.org/02zm13s10 Applied Genetics Laboratories'),
(7486, 'https://ror.org/02zmajt19', 'it', 1, 'https://ror.org/02zmajt19 Casa di cura Pierangeli'),
(7487, 'https://ror.org/02zn7mc21', 'en', 1, 'https://ror.org/02zn7mc21 Medical Care Development'),
(7488, 'https://ror.org/02zq8st27', 'en', 1, 'https://ror.org/02zq8st27 Butte College'),
(7489, 'https://ror.org/02zv3n642', 'en', 1, 'https://ror.org/02zv3n642 Institute for Facial Esthetics'),
(7490, 'https://ror.org/02zz8mw60', 'no_lang_code', 1, 'https://ror.org/02zz8mw60 GlaxoSmithKline (Canada)'),
(7491, 'https://ror.org/02zzfj172', 'en', 1, 'https://ror.org/02zzfj172 Wuhan Asia Heart Hospital ę­¦ę±‰äŗšę“²åæƒč„ē—…åŒ»é™¢'),
(7492, 'https://ror.org/0304xwq55', 'en', 1, 'https://ror.org/0304xwq55 Education Training And Research'),
(7493, 'https://ror.org/030637x68', 'en', 1, 'https://ror.org/030637x68 Sussex Eye Hospital'),
(7494, 'https://ror.org/0309ps652', 'no_lang_code', 1, 'https://ror.org/0309ps652 CyberLogic (United States)'),
(7495, 'https://ror.org/030anrr19', 'no_lang_code', 1, 'https://ror.org/030anrr19 Thermo Fisher Scientific (Lithuania)'),
(7496, 'https://ror.org/030cz2x22', 'no_lang_code', 1, 'https://ror.org/030cz2x22 Interactive Drama (United States)'),
(7497, 'https://ror.org/030gs7n75', 'no_lang_code', 1, 'https://ror.org/030gs7n75 Seccuris (Canada)'),
(7498, 'https://ror.org/030h0wa62', 'no_lang_code', 1, 'https://ror.org/030h0wa62 JBS International (United States)'),
(7499, 'https://ror.org/030h6t573', 'no_lang_code', 1, 'https://ror.org/030h6t573 DNAtrix (United States)'),
(7500, 'https://ror.org/030mbxz29', 'en', 1, 'https://ror.org/030mbxz29 Carter Center'),
(7501, 'https://ror.org/030mgn080', 'en', 1, 'https://ror.org/030mgn080 Anderson Orthopaedic Clinic'),
(7502, 'https://ror.org/030n06868', 'no_lang_code', 1, 'https://ror.org/030n06868 RiboMed Biotechnologies (United States)'),
(7503, 'https://ror.org/030n38z97', 'en', 1, 'https://ror.org/030n38z97 International Laser Center'),
(7504, 'https://ror.org/030p0vr95', 'no_lang_code', 1, 'https://ror.org/030p0vr95 Proton OnSite (United States)'),
(7505, 'https://ror.org/030p6ep86', 'no_lang_code', 1, 'https://ror.org/030p6ep86 Aecom (United Kingdom)'),
(7506, 'https://ror.org/030pj1w51', 'en', 1, 'https://ror.org/030pj1w51 Uzsoki Hospital Uzsoki Utcai KórhÔz'),
(7507, 'https://ror.org/030pv4h84', 'en', 1, 'https://ror.org/030pv4h84 Albertus Magnus College'),
(7508, 'https://ror.org/030qq9y73', 'en', 1, 'https://ror.org/030qq9y73 Hachinohe National College of Technology å…«ęˆøå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ” 庶務課'),
(7509, 'https://ror.org/030wd1008', 'no_lang_code', 1, 'https://ror.org/030wd1008 Orbis Biosciences (United States)'),
(7510, 'https://ror.org/030y83r80', 'en', 1, 'https://ror.org/030y83r80 Louisville Metabolic and Atherosclerosis Research Center'),
(7511, 'https://ror.org/030ygs139', 'no_lang_code', 1, 'https://ror.org/030ygs139 RAGT Seeds (United Kingdom)'),
(7512, 'https://ror.org/030yyf771', 'no_lang_code', 1, 'https://ror.org/030yyf771 Sun Pharma (India)'),
(7513, 'https://ror.org/030zc7t66', 'no_lang_code', 1, 'https://ror.org/030zc7t66 Sunovion (United States)'),
(7514, 'https://ror.org/031056b37', 'no_lang_code', 1, 'https://ror.org/031056b37 TomoWave Laboratories (United States)'),
(7515, 'https://ror.org/0310bxj37', 'no_lang_code', 1, 'https://ror.org/0310bxj37 Synageva BioPharma (United States)'),
(7516, 'https://ror.org/0311xw623', 'no_lang_code', 1, 'https://ror.org/0311xw623 PharmaSeq (United States)'),
(7517, 'https://ror.org/0312k4k82', 'en', 1, 'https://ror.org/0312k4k82 Massachusetts Eye Research and Surgery Institute'),
(7518, 'https://ror.org/0315pp027', 'en', 1, 'https://ror.org/0315pp027 Math Learning Center'),
(7519, 'https://ror.org/0315s4978', 'fr', 1, 'https://ror.org/0315s4978 Centre de MƩdecine PrƩventive'),
(7520, 'https://ror.org/0315wyw46', 'en', 1, 'https://ror.org/0315wyw46 Sheldon Jackson College'),
(7521, 'https://ror.org/0317zws63', 'en', 1, 'https://ror.org/0317zws63 Ministry of Public Order and Citizen Protection ΄πουργείο Ī”Ī·Ī¼ĻŒĻƒĪ¹Ī±Ļ‚ Τάξης και Ī ĻĪæĻƒĻ„Ī±ĻƒĪÆĪ±Ļ‚ του Πολίτη'),
(7522, 'https://ror.org/0319xcm09', 'no_lang_code', 1, 'https://ror.org/0319xcm09 Peter Brett Associates'),
(7523, 'https://ror.org/031a6wg34', 'en', 1, 'https://ror.org/031a6wg34 Saskatchewan Health Quality Council'),
(7524, 'https://ror.org/031bpvz69', 'no_lang_code', 1, 'https://ror.org/031bpvz69 Gene Check (United States)'),
(7525, 'https://ror.org/031bsx066', 'en', 1, 'https://ror.org/031bsx066 DaVinci Institute'),
(7526, 'https://ror.org/031c2cm83', 'en', 1, 'https://ror.org/031c2cm83 Department of Justice'),
(7527, 'https://ror.org/031exby54', 'no_lang_code', 1, 'https://ror.org/031exby54 Sea Run Holdings (United States)'),
(7528, 'https://ror.org/031m32a82', 'en', 1, 'https://ror.org/031m32a82 Athens International Airport Διεθνής Αερολιμένας Ī‘ĪøĪ·Ī½ĻŽĪ½ «Ελευθέριος Βενιζέλος»'),
(7529, 'https://ror.org/031vg5s58', 'en', 1, 'https://ror.org/031vg5s58 Peru State College'),
(7530, 'https://ror.org/031vxrj29', 'en', 1, 'https://ror.org/031vxrj29 National Institute of Malaria Research ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą¤²ą„‡ą¤°ą¤æą¤Æą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(7531, 'https://ror.org/031x12x59', 'de', 1, 'https://ror.org/031x12x59 Katholisches Klinikum Koblenz'),
(7532, 'https://ror.org/031yk2194', 'en', 1, 'https://ror.org/031yk2194 Bangur Institute of Neurosciences'),
(7533, 'https://ror.org/031ywxc85', 'no_lang_code', 1, 'https://ror.org/031ywxc85 Alexion Pharmaceuticals (United States)'),
(7534, 'https://ror.org/031yz7195', 'en', 1, 'https://ror.org/031yz7195 Centre de Recherche Interdisciplinaire en RƩadaptation Centre for Interdisciplinary Research in Rehabilitation'),
(7535, 'https://ror.org/03210bg97', 'no_lang_code', 1, 'https://ror.org/03210bg97 Dynex Semiconductor (United Kingdom)'),
(7536, 'https://ror.org/0322xet82', 'en', 1, 'https://ror.org/0322xet82 National Center for Healthy Housing'),
(7537, 'https://ror.org/0324dy645', 'no_lang_code', 1, 'https://ror.org/0324dy645 Radiant Creative Group'),
(7538, 'https://ror.org/03257r210', 'fi', 1, 'https://ror.org/03257r210 Kuopion LiikuntalƤƤketieteen Tutkimuslaitos'),
(7539, 'https://ror.org/0326f0a78', 'en', 1, 'https://ror.org/0326f0a78 Indepth Network'),
(7540, 'https://ror.org/03294gc92', 'no_lang_code', 1, 'https://ror.org/03294gc92 Audiology (United States)'),
(7541, 'https://ror.org/032b4kq73', 'no_lang_code', 1, 'https://ror.org/032b4kq73 SoyMeds (United States)'),
(7542, 'https://ror.org/032bvxc76', 'no_lang_code', 1, 'https://ror.org/032bvxc76 Lakes Environmental (Canada)'),
(7543, 'https://ror.org/032d3jq51', 'en', 1, 'https://ror.org/032d3jq51 Waikato District Health Board'),
(7544, 'https://ror.org/032e0fv91', 'en', 1, 'https://ror.org/032e0fv91 St. Patrick''s Hospital'),
(7545, 'https://ror.org/032h8td77', 'no_lang_code', 1, 'https://ror.org/032h8td77 InBios International (United States)'),
(7546, 'https://ror.org/032hhgs28', 'no_lang_code', 1, 'https://ror.org/032hhgs28 Caldic (Canada)'),
(7547, 'https://ror.org/032hvdr57', 'en', 1, 'https://ror.org/032hvdr57 Gordon-Conwell Theological Seminary'),
(7548, 'https://ror.org/032jtv165', 'no_lang_code', 1, 'https://ror.org/032jtv165 Hawaii Biotech (United States)'),
(7549, 'https://ror.org/032msy923', 'no_lang_code', 1, 'https://ror.org/032msy923 Santen (Japan) å‚å¤©č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(7550, 'https://ror.org/032mw2t40', 'no_lang_code', 1, 'https://ror.org/032mw2t40 Shifa Biomedical (United States)'),
(7551, 'https://ror.org/032s9tg47', 'en', 1, 'https://ror.org/032s9tg47 Cooperative Research Centre for Beef Genetic Technologies'),
(7552, 'https://ror.org/032t9vq81', 'no_lang_code', 1, 'https://ror.org/032t9vq81 Shasta Crystals (United States)'),
(7553, 'https://ror.org/032w3wj13', 'en', 1, 'https://ror.org/032w3wj13 Research Institute for Production Development čˆ¬č²”å›£ę³•äŗŗē”Ÿē”£é–‹ē™ŗē§‘å­¦ē ”ē©¶ę‰€'),
(7554, 'https://ror.org/032w6bp80', 'no_lang_code', 1, 'https://ror.org/032w6bp80 State Volunteer Mutual Insurance (United States)'),
(7555, 'https://ror.org/032y7r881', 'en', 1, 'https://ror.org/032y7r881 IntraHealth International'),
(7556, 'https://ror.org/032z49242', 'no_lang_code', 1, 'https://ror.org/032z49242 Senecio Software (United States)'),
(7557, 'https://ror.org/0331x8t04', 'nl', 1, 'https://ror.org/0331x8t04 Zaans Medisch Centrum'),
(7558, 'https://ror.org/0332k3m42', 'en', 1, 'https://ror.org/0332k3m42 Syracuse VA Medical Center'),
(7559, 'https://ror.org/03337hf32', 'no_lang_code', 1, 'https://ror.org/03337hf32 AugmenTech (United States)'),
(7560, 'https://ror.org/0333j1f77', 'no_lang_code', 1, 'https://ror.org/0333j1f77 Lentigen Technology (United States)'),
(7561, 'https://ror.org/033647p67', 'en', 1, 'https://ror.org/033647p67 Otsu Red Cross Hospital å¤§ę“„čµ¤åå­—ē—…é™¢'),
(7562, 'https://ror.org/03364yv75', 'it', 1, 'https://ror.org/03364yv75 Ospedaliera di Piacenza'),
(7563, 'https://ror.org/0336jnw26', 'en', 1, 'https://ror.org/0336jnw26 Pittsburgh Tissue Engineering Initiative'),
(7564, 'https://ror.org/033c6ba10', 'en', 1, 'https://ror.org/033c6ba10 Southcentral Foundation'),
(7565, 'https://ror.org/033c74k08', 'no_lang_code', 1, 'https://ror.org/033c74k08 Intuitive Biosciences (United States)'),
(7566, 'https://ror.org/033cjdk78', 'en', 1, 'https://ror.org/033cjdk78 Green Valley High School'),
(7567, 'https://ror.org/033fn9j44', 'en', 1, 'https://ror.org/033fn9j44 Shriners Hospitals for Children - Chicago'),
(7568, 'https://ror.org/033fyh879', 'no_lang_code', 1, 'https://ror.org/033fyh879 Omicia (United States)'),
(7569, 'https://ror.org/033h8cb51', 'no_lang_code', 1, 'https://ror.org/033h8cb51 Cardiome (Canada)'),
(7570, 'https://ror.org/033jcqk26', 'en', 1, 'https://ror.org/033jcqk26 National Archives Yr Archifau Cenedlaethol'),
(7571, 'https://ror.org/033js5093', 'no_lang_code', 1, 'https://ror.org/033js5093 Gunma Saiseikai Maebashi Hospital ē¾¤é¦¬ēœŒęøˆē”Ÿä¼šå‰ę©‹ē—…é™¢'),
(7572, 'https://ror.org/033m8b439', 'en', 1, 'https://ror.org/033m8b439 California Institute for Regenerative Medicine'),
(7573, 'https://ror.org/033mjf763', 'it', 1, 'https://ror.org/033mjf763 Ospedale per gli Infermi'),
(7574, 'https://ror.org/033n9f723', 'no_lang_code', 1, 'https://ror.org/033n9f723 Polyglot Systems (United States)'),
(7575, 'https://ror.org/033nw2736', 'no_lang_code', 1, 'https://ror.org/033nw2736 Taisho Pharmaceutical (Japan) 大正製薬'),
(7576, 'https://ror.org/033q64q73', 'en', 1, 'https://ror.org/033q64q73 Cypress Health Region'),
(7577, 'https://ror.org/033r53w79', 'no_lang_code', 1, 'https://ror.org/033r53w79 Halsall (Canada)'),
(7578, 'https://ror.org/033rjjc73', 'en', 1, 'https://ror.org/033rjjc73 Park Nicollet Methodist Hospital'),
(7579, 'https://ror.org/033sk1c45', 'en', 1, 'https://ror.org/033sk1c45 Prestera Center'),
(7580, 'https://ror.org/033ssdc55', 'no_lang_code', 1, 'https://ror.org/033ssdc55 Unisys (United States)'),
(7581, 'https://ror.org/033w59g46', 'en', 1, 'https://ror.org/033w59g46 Ministry of Agriculture, Food and Rural Affairs MinistĆØre de l''Agriculture, de l''Alimenntation et des Affaires Rurales'),
(7582, 'https://ror.org/0342mgc93', 'en', 1, 'https://ror.org/0342mgc93 Alaska Department of Environmental Conservation'),
(7583, 'https://ror.org/03436rn68', 'en', 1, 'https://ror.org/03436rn68 Wentworth Douglass Hospital'),
(7584, 'https://ror.org/0343gdk92', 'en', 1, 'https://ror.org/0343gdk92 Dorn Research Institute'),
(7585, 'https://ror.org/03446fm19', 'en', 1, 'https://ror.org/03446fm19 OrthoCarolina'),
(7586, 'https://ror.org/0345rff82', 'no_lang_code', 1, 'https://ror.org/0345rff82 Evident Point (Canada)'),
(7587, 'https://ror.org/0347fy350', 'en', 1, 'https://ror.org/0347fy350 Rothamsted Research'),
(7588, 'https://ror.org/0348rpk45', 'no_lang_code', 1, 'https://ror.org/0348rpk45 InXsol (United States)'),
(7589, 'https://ror.org/034948b51', 'en', 1, 'https://ror.org/034948b51 Calhoun Community College'),
(7590, 'https://ror.org/034a7fc11', 'no_lang_code', 1, 'https://ror.org/034a7fc11 Copernicus Therapeutics (United States)'),
(7591, 'https://ror.org/034b18290', 'no_lang_code', 1, 'https://ror.org/034b18290 Precision Combustion (United States)'),
(7592, 'https://ror.org/034c0gr54', 'en', 1, 'https://ror.org/034c0gr54 Oklahoma Foundation for Digestive Research'),
(7593, 'https://ror.org/034dvzk32', 'en', 1, 'https://ror.org/034dvzk32 Marin Health and Human Services'),
(7594, 'https://ror.org/034fbm741', 'no_lang_code', 1, 'https://ror.org/034fbm741 eSpin Technologies (United States)'),
(7595, 'https://ror.org/034hh2e11', 'en', 1, 'https://ror.org/034hh2e11 Amgueddfa Victoria ac Albert Victoria and Albert Museum'),
(7596, 'https://ror.org/034ja4661', 'no_lang_code', 1, 'https://ror.org/034ja4661 Educational Service Incorporation'),
(7597, 'https://ror.org/034jwje45', 'no_lang_code', 1, 'https://ror.org/034jwje45 Yukioka Hospital č”Œå²”ē—…é™¢'),
(7598, 'https://ror.org/034jwm186', 'en', 1, 'https://ror.org/034jwm186 Aletheia House'),
(7599, 'https://ror.org/034kxvk28', 'no_lang_code', 1, 'https://ror.org/034kxvk28 Galderma (France)'),
(7600, 'https://ror.org/034nvrd87', 'en', 1, 'https://ror.org/034nvrd87 Royal Berkshire NHS Foundation Trust'),
(7601, 'https://ror.org/034pcpg38', 'en', 1, 'https://ror.org/034pcpg38 Bard College at Simon''s Rock'),
(7602, 'https://ror.org/034pm2g80', 'en', 1, 'https://ror.org/034pm2g80 Colegios Comunitarios del Condado de Dallas Dallas County Community College District'),
(7603, 'https://ror.org/034s15752', 'en', 1, 'https://ror.org/034s15752 Academy for Educational Development'),
(7604, 'https://ror.org/034s1fw96', 'en', 1, 'https://ror.org/034s1fw96 Yokohama Municipal Citizen''s Hospital ęØŖęµœåø‚å–¶åø‚ę°‘ē—…é™¢'),
(7605, 'https://ror.org/034vefz29', 'no_lang_code', 1, 'https://ror.org/034vefz29 Rehabtek (United States)'),
(7606, 'https://ror.org/034wxcc35', 'en', 1, 'https://ror.org/034wxcc35 European Organisation for Research and Treatment of Cancer Organisation europƩenne pour la recherche et le traitement du cancer'),
(7607, 'https://ror.org/034x2fx50', 'en', 1, 'https://ror.org/034x2fx50 Information and Communication Technologies Centre'),
(7608, 'https://ror.org/034xvzb47', 'en', 1, 'https://ror.org/034xvzb47 United States Food and Drug Administration'),
(7609, 'https://ror.org/034xych09', 'en', 1, 'https://ror.org/034xych09 Winchester Science Centre'),
(7610, 'https://ror.org/034y1g063', 'en', 1, 'https://ror.org/034y1g063 New York State Office of Alcoholism and Substance Abuse Services'),
(7611, 'https://ror.org/034y7by63', 'no_lang_code', 1, 'https://ror.org/034y7by63 Lineage Cell Therapeutics (United States)'),
(7612, 'https://ror.org/0350vc126', 'en', 1, 'https://ror.org/0350vc126 River Region Human Services'),
(7613, 'https://ror.org/03535yg39', 'en', 1, 'https://ror.org/03535yg39 American Occupational Therapy Association'),
(7614, 'https://ror.org/0353yar19', 'en', 1, 'https://ror.org/0353yar19 Dr. Daneshbod Labratory'),
(7615, 'https://ror.org/0353zfd89', 'en', 1, 'https://ror.org/0353zfd89 Sultan Qaboos Hospital مستؓفى السلطان Ł‚Ų§ŲØŁˆŲ³'),
(7616, 'https://ror.org/03561g010', 'no_lang_code', 1, 'https://ror.org/03561g010 Canadian Green Tech (Canada)'),
(7617, 'https://ror.org/035756473', 'en', 1, 'https://ror.org/035756473 Trinity Washington University Universidad Trinity Washington'),
(7618, 'https://ror.org/0357g8536', 'no_lang_code', 1, 'https://ror.org/0357g8536 Clearpath Robotics (Canada)'),
(7619, 'https://ror.org/03583w097', 'no_lang_code', 1, 'https://ror.org/03583w097 System Biosciences (United States)'),
(7620, 'https://ror.org/0358b9334', 'en', 1, 'https://ror.org/0358b9334 Pakistan Institute of Medical Sciences پاکستان طبی سائنس Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(7621, 'https://ror.org/0359jxf05', 'no_lang_code', 1, 'https://ror.org/0359jxf05 ImmuRx (United States)'),
(7622, 'https://ror.org/0359s0245', 'no_lang_code', 1, 'https://ror.org/0359s0245 Continental (Germany)'),
(7623, 'https://ror.org/035aej353', 'en', 1, 'https://ror.org/035aej353 Lorain County Community College'),
(7624, 'https://ror.org/035cynm43', 'en', 1, 'https://ror.org/035cynm43 Foundation for Research into Traditional Chinese Medicine'),
(7625, 'https://ror.org/035djg835', 'no_lang_code', 1, 'https://ror.org/035djg835 National Recovery Technologies (United States)'),
(7626, 'https://ror.org/035dkke52', 'no_lang_code', 1, 'https://ror.org/035dkke52 Scisys (United Kingdom)'),
(7627, 'https://ror.org/035dpw102', 'en', 1, 'https://ror.org/035dpw102 Sage College of Albany'),
(7628, 'https://ror.org/035fp5e48', 'en', 1, 'https://ror.org/035fp5e48 Scientific Consulting Group'),
(7629, 'https://ror.org/035gyn125', 'en', 1, 'https://ror.org/035gyn125 Trenton Psychiatric Hospital'),
(7630, 'https://ror.org/035h6e956', 'en', 1, 'https://ror.org/035h6e956 College of American Pathologists'),
(7631, 'https://ror.org/035hd8d68', 'en', 1, 'https://ror.org/035hd8d68 Shepherd Center'),
(7632, 'https://ror.org/035hvd463', 'en', 1, 'https://ror.org/035hvd463 UniversitƩ adventiste de washington Washington Adventist University'),
(7633, 'https://ror.org/035qh5653', 'en', 1, 'https://ror.org/035qh5653 M.G. Kholodny Institute of Botany'),
(7634, 'https://ror.org/035vrxy57', 'en', 1, 'https://ror.org/035vrxy57 Micro and Nanotechnology Innovation Centre'),
(7635, 'https://ror.org/035wemy73', 'no_lang_code', 1, 'https://ror.org/035wemy73 Bellus Health (Canada)'),
(7636, 'https://ror.org/035wk0p43', 'no_lang_code', 1, 'https://ror.org/035wk0p43 E.ON (United States)'),
(7637, 'https://ror.org/035zrdg08', 'no_lang_code', 1, 'https://ror.org/035zrdg08 MassTech (United States)'),
(7638, 'https://ror.org/0361tej78', 'no_lang_code', 1, 'https://ror.org/0361tej78 Urigen Pharmaceuticals (United States)'),
(7639, 'https://ror.org/0362v0107', 'en', 1, 'https://ror.org/0362v0107 Family and Medical Counseling Service'),
(7640, 'https://ror.org/036300c37', 'en', 1, 'https://ror.org/036300c37 Indiana Academy of Science'),
(7641, 'https://ror.org/036482385', 'en', 1, 'https://ror.org/036482385 United Engineering Foundation'),
(7642, 'https://ror.org/0366e1296', 'en', 1, 'https://ror.org/0366e1296 Association of Chief Police Officers'),
(7643, 'https://ror.org/0366h3j49', 'no_lang_code', 1, 'https://ror.org/0366h3j49 Geotechnical Observations (United Kingdom)'),
(7644, 'https://ror.org/03671qm90', 'en', 1, 'https://ror.org/03671qm90 American College of Physicians'),
(7645, 'https://ror.org/03674y156', 'es', 1, 'https://ror.org/03674y156 Instituto Nacional de Enfermedades NeoplƔsicas'),
(7646, 'https://ror.org/0367d2222', 'en', 1, 'https://ror.org/0367d2222 Tao Yuan General Hospital ę”ƒåœ’é†«é™¢'),
(7647, 'https://ror.org/0368qtc02', 'no_lang_code', 1, 'https://ror.org/0368qtc02 NestlƩ (United States)'),
(7648, 'https://ror.org/036bdjm06', 'en', 1, 'https://ror.org/036bdjm06 Techniquest'),
(7649, 'https://ror.org/036bpjh12', 'en', 1, 'https://ror.org/036bpjh12 American Association of Blood Banks'),
(7650, 'https://ror.org/036dfq243', 'no_lang_code', 1, 'https://ror.org/036dfq243 Vion Pharmaceuticals (United States)'),
(7651, 'https://ror.org/036dv6j71', 'no_lang_code', 1, 'https://ror.org/036dv6j71 Human Computer Interaction (Switzerland)'),
(7652, 'https://ror.org/036gc1b60', 'no_lang_code', 1, 'https://ror.org/036gc1b60 Renewable Energy Systems (United States)'),
(7653, 'https://ror.org/036gvnq39', 'en', 1, 'https://ror.org/036gvnq39 Ministry of Manpower ę–°åŠ å”äŗŗåŠ›éƒØ'),
(7654, 'https://ror.org/036kn0x67', 'en', 1, 'https://ror.org/036kn0x67 Dean McGee Eye Institute'),
(7655, 'https://ror.org/036kqs922', 'en', 1, 'https://ror.org/036kqs922 Institute of Contemporary Psychoanalysis'),
(7656, 'https://ror.org/036mg3k91', 'no_lang_code', 1, 'https://ror.org/036mg3k91 Compound Semiconductor Technologies (United Kingdom)'),
(7657, 'https://ror.org/036p1cm16', 'en', 1, 'https://ror.org/036p1cm16 Karnataka Veterinary Animal and Fisheries Sciences University ą¤•ą¤°ą„ą¤Øą¤¾ą¤Ÿą¤• ą¤µą„‡ą¤Ÿą„‡ą¤°ą¤æą¤Øą¤°ą„€, ą¤®ą¤¤ą„ą¤øą„ą¤Æ पालन र ą¤Ŗą¤¶ą„ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ');
INSERT INTO `rors` VALUES
(7658, 'https://ror.org/036qcfm37', 'en', 1, 'https://ror.org/036qcfm37 Academy for Science and Design'),
(7659, 'https://ror.org/036svm011', 'en', 1, 'https://ror.org/036svm011 Southern Nevada Health District'),
(7660, 'https://ror.org/036vj6108', 'no_lang_code', 1, 'https://ror.org/036vj6108 SFC Fluidics (United States)'),
(7661, 'https://ror.org/036vmnd51', 'en', 1, 'https://ror.org/036vmnd51 Bishop State Community College'),
(7662, 'https://ror.org/036w5wx69', 'en', 1, 'https://ror.org/036w5wx69 Bio Behavioral Institute'),
(7663, 'https://ror.org/036wqaf87', 'no_lang_code', 1, 'https://ror.org/036wqaf87 ProteinSimple (United States)'),
(7664, 'https://ror.org/036x02d82', 'en', 1, 'https://ror.org/036x02d82 Tyne and Wear Archives and Museums'),
(7665, 'https://ror.org/036x6dk73', 'en', 1, 'https://ror.org/036x6dk73 North American Primary Care Research Group'),
(7666, 'https://ror.org/036ygzs59', 'en', 1, 'https://ror.org/036ygzs59 Northwestern Medical Faculty Foundation'),
(7667, 'https://ror.org/036ypft38', 'pt', 1, 'https://ror.org/036ypft38 Centro Hospitalar de Lisboa Ocidental'),
(7668, 'https://ror.org/036z11b33', 'en', 1, 'https://ror.org/036z11b33 Shriners Hospitals for Children - Philadelphia'),
(7669, 'https://ror.org/036zx6482', 'en', 1, 'https://ror.org/036zx6482 United States Drug Testing Laboratories'),
(7670, 'https://ror.org/036zxgb71', 'en', 1, 'https://ror.org/036zxgb71 Institute for the Study of Learning and Expertise'),
(7671, 'https://ror.org/03700pg61', 'en', 1, 'https://ror.org/03700pg61 Yedikule Göğüs Hastalıkları ve Göğüs Cerrahisi Eğitim ve Araştırma Hastanesi Yedikule Teaching Hospital'),
(7672, 'https://ror.org/0370dwx56', 'it', 1, 'https://ror.org/0370dwx56 Istituto Zooprofilattico Sperimentale della Sardegna'),
(7673, 'https://ror.org/0370sjj75', 'no_lang_code', 1, 'https://ror.org/0370sjj75 Optum (United States)'),
(7674, 'https://ror.org/03734cd59', 'es', 1, 'https://ror.org/03734cd59 Instituto Nacional de Rehabilitación National Institute of Rehabilitation'),
(7675, 'https://ror.org/0373e3z25', 'en', 1, 'https://ror.org/0373e3z25 Virginia Museum of Natural History'),
(7676, 'https://ror.org/037403209', 'en', 1, 'https://ror.org/037403209 Gunma Prefectural Cardiovascular Center ē¾¤é¦¬ēœŒē«‹åæƒč‡“č”€ē®”ć‚»ćƒ³ć‚æćƒ¼'),
(7677, 'https://ror.org/0374p0y44', 'no_lang_code', 1, 'https://ror.org/0374p0y44 ReproCELL (United States)'),
(7678, 'https://ror.org/0374t0s90', 'no_lang_code', 1, 'https://ror.org/0374t0s90 Jim Metzner Productions (United States)'),
(7679, 'https://ror.org/0375f4d26', 'en', 1, 'https://ror.org/0375f4d26 Alzheimer''s Association'),
(7680, 'https://ror.org/0378e9394', 'no_lang_code', 1, 'https://ror.org/0378e9394 Saitama Municipal Hospital ć•ć„ćŸć¾åø‚ē«‹ē—…é™¢'),
(7681, 'https://ror.org/0378g3743', 'en', 1, 'https://ror.org/0378g3743 Animal and Plant Health Agency'),
(7682, 'https://ror.org/0378zg266', 'en', 1, 'https://ror.org/0378zg266 Nyack Hospital'),
(7683, 'https://ror.org/03791d618', 'no_lang_code', 1, 'https://ror.org/03791d618 Kimberly-Clark (United States)'),
(7684, 'https://ror.org/037asfw97', 'en', 1, 'https://ror.org/037asfw97 Tri County Technical College'),
(7685, 'https://ror.org/037b79526', 'no_lang_code', 1, 'https://ror.org/037b79526 Synedgen (United States)'),
(7686, 'https://ror.org/037bj9005', 'no_lang_code', 1, 'https://ror.org/037bj9005 Global Convergence (United States)'),
(7687, 'https://ror.org/037c0br92', 'en', 1, 'https://ror.org/037c0br92 Guangzhou Institute of Dermatology'),
(7688, 'https://ror.org/037egvh70', 'en', 1, 'https://ror.org/037egvh70 Wishaw General Hospital'),
(7689, 'https://ror.org/037jprb08', 'sv', 1, 'https://ror.org/037jprb08 Centrallasarettet VƤxjƶ'),
(7690, 'https://ror.org/037kgpk38', 'en', 1, 'https://ror.org/037kgpk38 William Jewell College'),
(7691, 'https://ror.org/037m83a38', 'en', 1, 'https://ror.org/037m83a38 Royal Institution of Great Britain'),
(7692, 'https://ror.org/037mmnn19', 'en', 1, 'https://ror.org/037mmnn19 American Sports Medicine Institute'),
(7693, 'https://ror.org/037ndkh53', 'no_lang_code', 1, 'https://ror.org/037ndkh53 Biomedical Research Models (United States)'),
(7694, 'https://ror.org/037sxey58', 'no_lang_code', 1, 'https://ror.org/037sxey58 Amunix (United States)'),
(7695, 'https://ror.org/037wv7h91', 'en', 1, 'https://ror.org/037wv7h91 Ohta Nishinouchi Hospital å¤Ŗē”°č„æćƒŽå†…ē—…é™¢'),
(7696, 'https://ror.org/037x4vd23', 'en', 1, 'https://ror.org/037x4vd23 Teaching Hospital Kandy මහනුවර ą·ą·’ą¶šą·Šą·‚ą¶« ą¶»ą·ą·„ą¶½'),
(7697, 'https://ror.org/037xafn82', 'en', 1, 'https://ror.org/037xafn82 William S. Middleton Memorial Veterans Hospital'),
(7698, 'https://ror.org/037xccs34', 'en', 1, 'https://ror.org/037xccs34 Chitose Institute of Science and Technology åƒę­³ē§‘å­¦ęŠ€č”“å¤§å­¦'),
(7699, 'https://ror.org/037xte462', 'no_lang_code', 1, 'https://ror.org/037xte462 Talaris Therapeutics (United States)'),
(7700, 'https://ror.org/037y13578', 'en', 1, 'https://ror.org/037y13578 West Park Healthcare Centre'),
(7701, 'https://ror.org/037yff262', 'no_lang_code', 1, 'https://ror.org/037yff262 Tokyo Metropolitan Matsuzawa Hospital ę±äŗ¬éƒ½ē«‹ę¾ę²¢ē—…é™¢'),
(7702, 'https://ror.org/037ytpe94', 'no_lang_code', 1, 'https://ror.org/037ytpe94 OEpic Semiconductors (United States)'),
(7703, 'https://ror.org/03828wc37', 'no_lang_code', 1, 'https://ror.org/03828wc37 Public Health Television (United States)'),
(7704, 'https://ror.org/0384y3666', 'en', 1, 'https://ror.org/0384y3666 Police Forensic Science Laboratory Dundee'),
(7705, 'https://ror.org/0385es521', 'no_lang_code', 1, 'https://ror.org/0385es521 Boston Scientific (United States)'),
(7706, 'https://ror.org/03865vt17', 'no_lang_code', 1, 'https://ror.org/03865vt17 Advaxis (United States)'),
(7707, 'https://ror.org/03868wc59', 'en', 1, 'https://ror.org/03868wc59 Middlesex County College'),
(7708, 'https://ror.org/0387jng26', 'en', 1, 'https://ror.org/0387jng26 Max Planck Institute for Human Cognitive and Brain Sciences Max-Planck-Institut für Kognitions- und Neurowissenschaften'),
(7709, 'https://ror.org/038aete71', 'no_lang_code', 1, 'https://ror.org/038aete71 Advanced Diamond Technologies (United States)'),
(7710, 'https://ror.org/038c39g95', 'en', 1, 'https://ror.org/038c39g95 Allegheny Valley Hospital'),
(7711, 'https://ror.org/038dgnc07', 'no_lang_code', 1, 'https://ror.org/038dgnc07 Cygnus (United States)'),
(7712, 'https://ror.org/038e2g226', 'no_lang_code', 1, 'https://ror.org/038e2g226 Fujitsu (Japan) åÆŒå£«é€šę Ŗå¼ä¼šē¤¾'),
(7713, 'https://ror.org/038emx233', 'no_lang_code', 1, 'https://ror.org/038emx233 EMT Associates (United States)'),
(7714, 'https://ror.org/038eqqh78', 'no_lang_code', 1, 'https://ror.org/038eqqh78 Lockheed Martin Orincon (United States)'),
(7715, 'https://ror.org/038espn32', 'en', 1, 'https://ror.org/038espn32 CARE USA'),
(7716, 'https://ror.org/038ftrz90', 'en', 1, 'https://ror.org/038ftrz90 Western Attica General Hospital'),
(7717, 'https://ror.org/038gwk587', 'en', 1, 'https://ror.org/038gwk587 Centerstone'),
(7718, 'https://ror.org/038hqfn26', 'no_lang_code', 1, 'https://ror.org/038hqfn26 Alkermes (United States)'),
(7719, 'https://ror.org/038hwjs80', 'en', 1, 'https://ror.org/038hwjs80 Pacific Tower'),
(7720, 'https://ror.org/038jnd853', 'en', 1, 'https://ror.org/038jnd853 Sher Fertility'),
(7721, 'https://ror.org/038jzvs45', 'en', 1, 'https://ror.org/038jzvs45 Psychiatric Foundation of North Carolina'),
(7722, 'https://ror.org/038kja517', 'en', 1, 'https://ror.org/038kja517 Hydrologic Research Center'),
(7723, 'https://ror.org/038kxkq33', 'no_lang_code', 1, 'https://ror.org/038kxkq33 Teijin (Japan) åøäŗŗę Ŗå¼ä¼šē¤¾'),
(7724, 'https://ror.org/038mdqs58', 'en', 1, 'https://ror.org/038mdqs58 D.F. Chebotarev Institute of Gerontology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геронтології ім. Š”.Ф.Š§ŠµŠ±Š¾Ń‚Š°Ń€ŃŒŠ¾Š²Š°'),
(7725, 'https://ror.org/038naac42', 'no_lang_code', 1, 'https://ror.org/038naac42 AdipoGenix (United States)'),
(7726, 'https://ror.org/038s2v152', 'no_lang_code', 1, 'https://ror.org/038s2v152 Ciencia (United States)'),
(7727, 'https://ror.org/038sjwf38', 'no_lang_code', 1, 'https://ror.org/038sjwf38 Takeda (Norway)'),
(7728, 'https://ror.org/038srm946', 'no_lang_code', 1, 'https://ror.org/038srm946 Mantech (Canada)'),
(7729, 'https://ror.org/038tp0t62', 'en', 1, 'https://ror.org/038tp0t62 Las Vegas Institute'),
(7730, 'https://ror.org/038vngd42', 'fr', 1, 'https://ror.org/038vngd42 Centre Hospitalier Universitaire de Kigali University Teaching Hospital of Kigali'),
(7731, 'https://ror.org/038wghp07', 'no_lang_code', 1, 'https://ror.org/038wghp07 Norgen Biotek Corporation (Canada)'),
(7732, 'https://ror.org/038x9td67', 'en', 1, 'https://ror.org/038x9td67 Institute for Atomic and Molecular Physics'),
(7733, 'https://ror.org/038xkzz47', 'no_lang_code', 1, 'https://ror.org/038xkzz47 Viro Dynamics (United States)'),
(7734, 'https://ror.org/038z5mp14', 'en', 1, 'https://ror.org/038z5mp14 Organisation des Ɖtats AmĆ©ricains Organización de los Estados Americanos Organization of American States Organização dos Estados Americanos'),
(7735, 'https://ror.org/0390tt424', 'en', 1, 'https://ror.org/0390tt424 HealthCare Interactive'),
(7736, 'https://ror.org/0392txn84', 'no_lang_code', 1, 'https://ror.org/0392txn84 Stemmatters (Portugal)'),
(7737, 'https://ror.org/0393c0k55', 'no_lang_code', 1, 'https://ror.org/0393c0k55 Cooper and Company (United States)'),
(7738, 'https://ror.org/0393mwb72', 'no_lang_code', 1, 'https://ror.org/0393mwb72 United Utilities (United Kingdom)'),
(7739, 'https://ror.org/0396gxt62', 'no_lang_code', 1, 'https://ror.org/0396gxt62 Motorola (United Kingdom)'),
(7740, 'https://ror.org/039922k61', 'en', 1, 'https://ror.org/039922k61 Kenya Agricultural Research Institute'),
(7741, 'https://ror.org/0399pn486', 'en', 1, 'https://ror.org/0399pn486 McREL International'),
(7742, 'https://ror.org/039bbm920', 'en', 1, 'https://ror.org/039bbm920 National Audubon Society'),
(7743, 'https://ror.org/039cthy03', 'en', 1, 'https://ror.org/039cthy03 Bamfield Marine Sciences Centre'),
(7744, 'https://ror.org/039d1mp60', 'en', 1, 'https://ror.org/039d1mp60 Central Glass and Ceramic Research Institute'),
(7745, 'https://ror.org/039ekp273', 'en', 1, 'https://ror.org/039ekp273 Institute of Cellular and Intracellular Symbiosis Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики клетки Российской акаГемии наук'),
(7746, 'https://ror.org/039fp5n52', 'en', 1, 'https://ror.org/039fp5n52 At Bristol'),
(7747, 'https://ror.org/039h53162', 'fr', 1, 'https://ror.org/039h53162 Centre hospitalier de Tulle'),
(7748, 'https://ror.org/039hmr469', 'en', 1, 'https://ror.org/039hmr469 Ono Clinic å°é‡Žć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(7749, 'https://ror.org/039hqe943', 'no_lang_code', 1, 'https://ror.org/039hqe943 MedShape (United States)'),
(7750, 'https://ror.org/039k6f508', 'en', 1, 'https://ror.org/039k6f508 Korea Electronics Technology Institute'),
(7751, 'https://ror.org/039k9pj72', 'en', 1, 'https://ror.org/039k9pj72 T. D. Medical College'),
(7752, 'https://ror.org/039q6xk02', 'en', 1, 'https://ror.org/039q6xk02 Moss Rehabilitation Hospital'),
(7753, 'https://ror.org/039qtv212', 'en', 1, 'https://ror.org/039qtv212 Federal Correctional Institution Schuylkill'),
(7754, 'https://ror.org/039s6n838', 'no_lang_code', 1, 'https://ror.org/039s6n838 Novartis (United Kingdom)'),
(7755, 'https://ror.org/039xdnp48', 'no_lang_code', 1, 'https://ror.org/039xdnp48 Takano Hospital é«˜é‡Žē—…é™¢'),
(7756, 'https://ror.org/039y7c549', 'en', 1, 'https://ror.org/039y7c549 Piedmont Technical College'),
(7757, 'https://ror.org/039yn6r46', 'en', 1, 'https://ror.org/039yn6r46 Linguistic Society of America'),
(7758, 'https://ror.org/03a0ckw61', 'en', 1, 'https://ror.org/03a0ckw61 Long Island Association for AIDS Care'),
(7759, 'https://ror.org/03a1weg76', 'no_lang_code', 1, 'https://ror.org/03a1weg76 AdvR (United States)'),
(7760, 'https://ror.org/03a1yfb59', 'en', 1, 'https://ror.org/03a1yfb59 Lynchburg Family Medicine'),
(7761, 'https://ror.org/03a2szg51', 'no_lang_code', 1, 'https://ror.org/03a2szg51 Saiseikai Utsunomiya hospital ęøˆē”Ÿä¼šå®‡éƒ½å®®ē—…é™¢'),
(7762, 'https://ror.org/03a2tpf77', 'en', 1, 'https://ror.org/03a2tpf77 Pelosi Medical Center'),
(7763, 'https://ror.org/03a3t3y67', 'en', 1, 'https://ror.org/03a3t3y67 Houston Institute for Clinical Research'),
(7764, 'https://ror.org/03a4d7t12', 'en', 1, 'https://ror.org/03a4d7t12 Saitama Cancer Center åŸ¼ēŽ‰ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(7765, 'https://ror.org/03a654521', 'no_lang_code', 1, 'https://ror.org/03a654521 Faraday Technology (United States)'),
(7766, 'https://ror.org/03a71g847', 'en', 1, 'https://ror.org/03a71g847 Valley Hospital Medical Center'),
(7767, 'https://ror.org/03a7bpg58', 'en', 1, 'https://ror.org/03a7bpg58 Convención de la Farmacopea de Estados Unidos United States Pharmacopeial Convention'),
(7768, 'https://ror.org/03a8gee76', 'en', 1, 'https://ror.org/03a8gee76 National JALMA Institute for Leprosy & Other Mycobacterial Diseases'),
(7769, 'https://ror.org/03a9ezp59', 'no_lang_code', 1, 'https://ror.org/03a9ezp59 Adrianor'),
(7770, 'https://ror.org/03abz4556', 'no_lang_code', 1, 'https://ror.org/03abz4556 Cortex Pharmaceuticals (United States)'),
(7771, 'https://ror.org/03ac8kh32', 'no_lang_code', 1, 'https://ror.org/03ac8kh32 BioPAL (United States)'),
(7772, 'https://ror.org/03aes2233', 'en', 1, 'https://ror.org/03aes2233 Education Coordinating Council'),
(7773, 'https://ror.org/03af1ns45', 'it', 1, 'https://ror.org/03af1ns45 Ospedale di Circolo di Busto Arsizio'),
(7774, 'https://ror.org/03afd8w19', 'pt', 1, 'https://ror.org/03afd8w19 Secretaria da SaĆŗde'),
(7775, 'https://ror.org/03ah8pc29', 'no_lang_code', 1, 'https://ror.org/03ah8pc29 Hyperion Technologies (Canada)'),
(7776, 'https://ror.org/03ahd9g67', 'en', 1, 'https://ror.org/03ahd9g67 Coker College'),
(7777, 'https://ror.org/03ahxgm89', 'no_lang_code', 1, 'https://ror.org/03ahxgm89 Sommer Materials Research (United States)'),
(7778, 'https://ror.org/03ap5bg83', 'en', 1, 'https://ror.org/03ap5bg83 National Dairy Research Institute ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤”ą„‡ą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(7779, 'https://ror.org/03apz2q12', 'en', 1, 'https://ror.org/03apz2q12 Institute of Molecular Genetics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ генетики Российской акаГемии наук'),
(7780, 'https://ror.org/03ate3e03', 'en', 1, 'https://ror.org/03ate3e03 Max Planck Institute for Molecular Genetics Max-Planck-Institut für Molekulare Genetik'),
(7781, 'https://ror.org/03av0zr92', 'no_lang_code', 1, 'https://ror.org/03av0zr92 Germinal (United Kingdom)'),
(7782, 'https://ror.org/03awpb417', 'en', 1, 'https://ror.org/03awpb417 Entomological Society of America'),
(7783, 'https://ror.org/03ax9j741', 'en', 1, 'https://ror.org/03ax9j741 Council of State and Territorial Epidemiologists'),
(7784, 'https://ror.org/03ay27p09', 'en', 1, 'https://ror.org/03ay27p09 European Brain Research Institute'),
(7785, 'https://ror.org/03aygfv62', 'en', 1, 'https://ror.org/03aygfv62 Scotch Whisky Research Institute'),
(7786, 'https://ror.org/03aywkz50', 'en', 1, 'https://ror.org/03aywkz50 Bethel College - Kansas'),
(7787, 'https://ror.org/03az52a93', 'en', 1, 'https://ror.org/03az52a93 Family Medicine Residency of Idaho'),
(7788, 'https://ror.org/03az79194', 'fr', 1, 'https://ror.org/03az79194 Laboratoire National Henri Becquerel'),
(7789, 'https://ror.org/03azk3n24', 'en', 1, 'https://ror.org/03azk3n24 Headache Wellness Center'),
(7790, 'https://ror.org/03b082n16', 'no_lang_code', 1, 'https://ror.org/03b082n16 Genia Photonics (Canada)'),
(7791, 'https://ror.org/03b0k9c14', 'en', 1, 'https://ror.org/03b0k9c14 University Hospital Augsburg UniversitƤtsklinikum Augsburg'),
(7792, 'https://ror.org/03b286288', 'en', 1, 'https://ror.org/03b286288 Baltimore City Community College'),
(7793, 'https://ror.org/03b2h3x98', 'de', 1, 'https://ror.org/03b2h3x98 Paul Gerhardt Diakonie'),
(7794, 'https://ror.org/03b2j2z26', 'no_lang_code', 1, 'https://ror.org/03b2j2z26 Dakota Technologies (United States)'),
(7795, 'https://ror.org/03b41zp34', 'en', 1, 'https://ror.org/03b41zp34 Liberty Science Center'),
(7796, 'https://ror.org/03b436430', 'en', 1, 'https://ror.org/03b436430 Hospital de la Universidad de Utah University of Utah Hospital'),
(7797, 'https://ror.org/03b68pn69', 'no_lang_code', 1, 'https://ror.org/03b68pn69 Epitope (United States)'),
(7798, 'https://ror.org/03bbd8g15', 'en', 1, 'https://ror.org/03bbd8g15 Society of General Internal Medicine'),
(7799, 'https://ror.org/03bcvkf46', 'en', 1, 'https://ror.org/03bcvkf46 Fleet Science Center'),
(7800, 'https://ror.org/03be17v50', 'en', 1, 'https://ror.org/03be17v50 Southern California Alcohol and Drug Programs'),
(7801, 'https://ror.org/03be69002', 'en', 1, 'https://ror.org/03be69002 Finnish Brain Research and Rehabilitation Center Neuron'),
(7802, 'https://ror.org/03bf2nz41', 'fr', 1, 'https://ror.org/03bf2nz41 Centre Hospitalier du Mans'),
(7803, 'https://ror.org/03bg65591', 'en', 1, 'https://ror.org/03bg65591 Susquehanna Health'),
(7804, 'https://ror.org/03bhap014', 'it', 1, 'https://ror.org/03bhap014 Centro Diagnostico Italiano'),
(7805, 'https://ror.org/03bhj4j04', 'en', 1, 'https://ror.org/03bhj4j04 Lyndon State College'),
(7806, 'https://ror.org/03bj7kr91', 'en', 1, 'https://ror.org/03bj7kr91 Boston Public Schools'),
(7807, 'https://ror.org/03bndes49', 'no_lang_code', 1, 'https://ror.org/03bndes49 Thermo Fisher Scientific (United Kingdom)'),
(7808, 'https://ror.org/03bnt5240', 'en', 1, 'https://ror.org/03bnt5240 College of Menominee Nation'),
(7809, 'https://ror.org/03bs18y54', 'no_lang_code', 1, 'https://ror.org/03bs18y54 Infosys (India)'),
(7810, 'https://ror.org/03bs5zb68', 'no_lang_code', 1, 'https://ror.org/03bs5zb68 Tsubame Rosai Hospital'),
(7811, 'https://ror.org/03btaj690', 'no_lang_code', 1, 'https://ror.org/03btaj690 Numazu City Hospital 沼擄市立病院'),
(7812, 'https://ror.org/03btasp49', 'en', 1, 'https://ror.org/03btasp49 National Space Centre'),
(7813, 'https://ror.org/03bvhwx18', 'en', 1, 'https://ror.org/03bvhwx18 Association for Women in Science'),
(7814, 'https://ror.org/03bvq6y88', 'en', 1, 'https://ror.org/03bvq6y88 Wagner College'),
(7815, 'https://ror.org/03by7ks57', 'fr', 1, 'https://ror.org/03by7ks57 CƩgep AndrƩ Laurendeau, CƩgep andrƩ-laurendeau'),
(7816, 'https://ror.org/03bygaq51', 'no_lang_code', 1, 'https://ror.org/03bygaq51 Takeda (United States) ę­¦ē”°č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾, Takeda Yakuhin Kōgyō kabushiki gaisha'),
(7817, 'https://ror.org/03bz9t645', 'en', 1, 'https://ror.org/03bz9t645 Bedford Institute of Oceanography'),
(7818, 'https://ror.org/03bzqy127', 'en', 1, 'https://ror.org/03bzqy127 Gwinnett Coalition for Health & Human Services'),
(7819, 'https://ror.org/03c09x508', 'es', 1, 'https://ror.org/03c09x508 Ministerio de Salud'),
(7820, 'https://ror.org/03c24n351', 'en', 1, 'https://ror.org/03c24n351 Armed Forces Institute of Pathology'),
(7821, 'https://ror.org/03c3s0k29', 'en', 1, 'https://ror.org/03c3s0k29 Yamaguchi Red Cross Hospital å±±å£čµ¤åå­—ē—…é™¢'),
(7822, 'https://ror.org/03c4kec23', 'en', 1, 'https://ror.org/03c4kec23 Lyon College'),
(7823, 'https://ror.org/03c69q147', 'en', 1, 'https://ror.org/03c69q147 Wake Technical Community College'),
(7824, 'https://ror.org/03cc62s85', 'no_lang_code', 1, 'https://ror.org/03cc62s85 Scottish Water (United Kingdom)'),
(7825, 'https://ror.org/03cd6bd87', 'en', 1, 'https://ror.org/03cd6bd87 South Carolina Research Authority'),
(7826, 'https://ror.org/03cegwq60', 'en', 1, 'https://ror.org/03cegwq60 McMaster Children''s Hospital'),
(7827, 'https://ror.org/03cfg5z67', 'en', 1, 'https://ror.org/03cfg5z67 Florida Department of Children and Families'),
(7828, 'https://ror.org/03cfgct89', 'en', 1, 'https://ror.org/03cfgct89 Women in Engineering ProActive Network'),
(7829, 'https://ror.org/03cfsae23', 'no_lang_code', 1, 'https://ror.org/03cfsae23 QR Pharma (United States)'),
(7830, 'https://ror.org/03ckh6215', 'en', 1, 'https://ror.org/03ckh6215 National Institute of Genetic Engineering and Biotechnology Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł…Ł„ŁŠ Ł…Ł‡Ł†ŲÆŲ³ŁŠ Ś˜Ł†ŲŖŁŠŁƒ و زيست ŁŁ†Ų§ŁˆŲ±ŁŠ'),
(7831, 'https://ror.org/03cks4g33', 'en', 1, 'https://ror.org/03cks4g33 Haymarket Center'),
(7832, 'https://ror.org/03cmtga52', 'no_lang_code', 1, 'https://ror.org/03cmtga52 IB Innovation Consortium (Italy)'),
(7833, 'https://ror.org/03cpeth56', 'no_lang_code', 1, 'https://ror.org/03cpeth56 Costain (United Kingdom)'),
(7834, 'https://ror.org/03crdwy95', 'en', 1, 'https://ror.org/03crdwy95 Greater Manchester Police'),
(7835, 'https://ror.org/03csd5507', 'no_lang_code', 1, 'https://ror.org/03csd5507 Morgan Stanley (United Kingdom)'),
(7836, 'https://ror.org/03cth7012', 'en', 1, 'https://ror.org/03cth7012 Bronx Veterans Medical Research Foundation'),
(7837, 'https://ror.org/03cw63y62', 'en', 1, 'https://ror.org/03cw63y62 Women''s College Hospital'),
(7838, 'https://ror.org/03cyjvc50', 'en', 1, 'https://ror.org/03cyjvc50 Curry College'),
(7839, 'https://ror.org/03d0hdn85', 'en', 1, 'https://ror.org/03d0hdn85 Istanbul Eye Hospital İstanbul Gƶz Hastanesi'),
(7840, 'https://ror.org/03d33vh19', 'no_lang_code', 1, 'https://ror.org/03d33vh19 3E (Belgium)'),
(7841, 'https://ror.org/03d4tjj21', 'no_lang_code', 1, 'https://ror.org/03d4tjj21 Vivo Biosciences (United States)'),
(7842, 'https://ror.org/03d507062', 'no_lang_code', 1, 'https://ror.org/03d507062 Walsh Group'),
(7843, 'https://ror.org/03d5v2a18', 'no_lang_code', 1, 'https://ror.org/03d5v2a18 CanAm Bioresearch (Canada)'),
(7844, 'https://ror.org/03da3g825', 'no_lang_code', 1, 'https://ror.org/03da3g825 Shiseido Group (Japan) ę Ŗå¼ä¼šē¤¾č³‡ē”Ÿå ‚'),
(7845, 'https://ror.org/03dakdm13', 'en', 1, 'https://ror.org/03dakdm13 St. John''s College'),
(7846, 'https://ror.org/03dbjaj38', 'no_lang_code', 1, 'https://ror.org/03dbjaj38 ArchieMD (United States)'),
(7847, 'https://ror.org/03dc7cm27', 'no_lang_code', 1, 'https://ror.org/03dc7cm27 XOMA (United States)'),
(7848, 'https://ror.org/03dcs5c38', 'no_lang_code', 1, 'https://ror.org/03dcs5c38 TimeDomain CVD (United States)'),
(7849, 'https://ror.org/03ddan440', 'no_lang_code', 1, 'https://ror.org/03ddan440 Arthur D. Little (United States)'),
(7850, 'https://ror.org/03ddbnh33', 'no_lang_code', 1, 'https://ror.org/03ddbnh33 Qinetiq (United States)'),
(7851, 'https://ror.org/03dfzxf19', 'no_lang_code', 1, 'https://ror.org/03dfzxf19 Agilent Technologies (United Kingdom)'),
(7852, 'https://ror.org/03dnydg98', 'no_lang_code', 1, 'https://ror.org/03dnydg98 VirRx (United States)'),
(7853, 'https://ror.org/03dpjp116', 'en', 1, 'https://ror.org/03dpjp116 Nagano College of Nursing é•·é‡ŽēœŒēœ‹č­·å¤§å­¦'),
(7854, 'https://ror.org/03dpvmw27', 'en', 1, 'https://ror.org/03dpvmw27 Research Institute for Fragrance Materials'),
(7855, 'https://ror.org/03dqpq202', 'no_lang_code', 1, 'https://ror.org/03dqpq202 MPI Research (United States)'),
(7856, 'https://ror.org/03drznb24', 'en', 1, 'https://ror.org/03drznb24 Winter Haven Hospital'),
(7857, 'https://ror.org/03dtejd64', 'en', 1, 'https://ror.org/03dtejd64 Fraunhofer USA Center for Molecular Biotechnology'),
(7858, 'https://ror.org/03dwhj404', 'no_lang_code', 1, 'https://ror.org/03dwhj404 Agenus (United States)'),
(7859, 'https://ror.org/03dy10t98', 'en', 1, 'https://ror.org/03dy10t98 National Geophysical Research Institute ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤­ą„‚ą¤­ą„Œą¤¤ą¤æą¤•ą„€ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą°œą°¾ą°¤ą±€ą°Æ ą°­ą±‚ą°­ą±Œą°¤ą°æą°• పరిశోధనా ą°øą°‚ą°øą±ą°„ ą“Øą“¾ą“·ą“£ąµ½ ą“œą“æą“Æąµ‹ą“«ą“æą“øą“æą“•ąµą“•ąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ,ą“¹ąµˆą“¦ą“°ą“¾ą“¬ą“¾ą“¦ąµ'),
(7860, 'https://ror.org/03dywwh47', 'es', 1, 'https://ror.org/03dywwh47 Instituto de la Visión'),
(7861, 'https://ror.org/03dzg6f89', 'en', 1, 'https://ror.org/03dzg6f89 Bevill State Community College'),
(7862, 'https://ror.org/03e04g978', 'en', 1, 'https://ror.org/03e04g978 Tanzania Commission for Science and Technology Tume ya Sayansi na Teknolojia Tanzania'),
(7863, 'https://ror.org/03e0mxz52', 'no_lang_code', 1, 'https://ror.org/03e0mxz52 Intelligent Energy (United Kingdom)'),
(7864, 'https://ror.org/03e0t3214', 'no_lang_code', 1, 'https://ror.org/03e0t3214 Materials and Systems Research (United States)'),
(7865, 'https://ror.org/03e17k064', 'en', 1, 'https://ror.org/03e17k064 Saint Louis Science Center'),
(7866, 'https://ror.org/03e59a529', 'en', 1, 'https://ror.org/03e59a529 Molecular Cardiology and Neuromuscular Institute'),
(7867, 'https://ror.org/03e5aen17', 'no_lang_code', 1, 'https://ror.org/03e5aen17 ProteoSys (Germany)'),
(7868, 'https://ror.org/03e5eem51', 'en', 1, 'https://ror.org/03e5eem51 Budker Institute of Nuclear Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ физики'),
(7869, 'https://ror.org/03e7xy909', 'en', 1, 'https://ror.org/03e7xy909 People’s University'),
(7870, 'https://ror.org/03e8gpx64', 'no_lang_code', 1, 'https://ror.org/03e8gpx64 MetroLaser (United States)'),
(7871, 'https://ror.org/03ec4j852', 'en', 1, 'https://ror.org/03ec4j852 St. Luke’s Boise Medical Center'),
(7872, 'https://ror.org/03eg72e39', 'en', 1, 'https://ror.org/03eg72e39 Tochigi Cancer Center ę ƒęœØēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(7873, 'https://ror.org/03egepy41', 'no_lang_code', 1, 'https://ror.org/03egepy41 DMetrix (United States)'),
(7874, 'https://ror.org/03eh6tj73', 'en', 1, 'https://ror.org/03eh6tj73 Guangxi Veterinary Research Institute'),
(7875, 'https://ror.org/03ehcbt32', 'no_lang_code', 1, 'https://ror.org/03ehcbt32 Saiseikai Suita Hospital å¤§é˜Ŗåŗœęøˆē”Ÿä¼šå¹ē”°ē—…é™¢'),
(7876, 'https://ror.org/03ehegt04', 'en', 1, 'https://ror.org/03ehegt04 Wisconsin Department of Agriculture Trade and Consumer Protection'),
(7877, 'https://ror.org/03ehse820', 'da', 1, 'https://ror.org/03ehse820 Dansk Sundhedsinstitut, Dansk Sygehus Institut'),
(7878, 'https://ror.org/03ehzxb24', 'en', 1, 'https://ror.org/03ehzxb24 St. Francis Medical Center'),
(7879, 'https://ror.org/03ej8cj80', 'en', 1, 'https://ror.org/03ej8cj80 Quincy College'),
(7880, 'https://ror.org/03em9pc54', 'en', 1, 'https://ror.org/03em9pc54 Iowa Central Community College'),
(7881, 'https://ror.org/03ene5287', 'en', 1, 'https://ror.org/03ene5287 Orange County Healthcare Agency'),
(7882, 'https://ror.org/03ep7eq57', 'no_lang_code', 1, 'https://ror.org/03ep7eq57 iQmetrix (Canada)'),
(7883, 'https://ror.org/03epr9q14', 'en', 1, 'https://ror.org/03epr9q14 Center for Culture and Experience Economy'),
(7884, 'https://ror.org/03eqc1p67', 'fr', 1, 'https://ror.org/03eqc1p67 Clinique de la DƩfense'),
(7885, 'https://ror.org/03eqttr49', 'en', 1, 'https://ror.org/03eqttr49 Research Triangle Park Foundation'),
(7886, 'https://ror.org/03er2hr05', 'no_lang_code', 1, 'https://ror.org/03er2hr05 Critical Software (Portugal)'),
(7887, 'https://ror.org/03erxwz83', 'no_lang_code', 1, 'https://ror.org/03erxwz83 Syncrotronics Corporation (United States)'),
(7888, 'https://ror.org/03etema57', 'en', 1, 'https://ror.org/03etema57 Association for Institutional Research'),
(7889, 'https://ror.org/03etg4523', 'no_lang_code', 1, 'https://ror.org/03etg4523 Teva Pharmaceuticals (United States)'),
(7890, 'https://ror.org/03etmv771', 'no_lang_code', 1, 'https://ror.org/03etmv771 LightBridge Healthcare Research (United States)'),
(7891, 'https://ror.org/03evkbw14', 'es', 1, 'https://ror.org/03evkbw14 Corporación para Investigaciones Biológicas'),
(7892, 'https://ror.org/03exvmb50', 'no_lang_code', 1, 'https://ror.org/03exvmb50 Neocera (United States)'),
(7893, 'https://ror.org/03eydna48', 'en', 1, 'https://ror.org/03eydna48 St. Joseph Hospital'),
(7894, 'https://ror.org/03eykgw84', 'no_lang_code', 1, 'https://ror.org/03eykgw84 Fujirebio (Japan) åÆŒå£«ćƒ¬ćƒ“ć‚Ŗę Ŗå¼ä¼šē¤¾'),
(7895, 'https://ror.org/03ez2en98', 'en', 1, 'https://ror.org/03ez2en98 Vaccine & Gene Therapy Institute of Florida'),
(7896, 'https://ror.org/03ezapm74', 'es', 1, 'https://ror.org/03ezapm74 Fundación Santa Fe de BogotÔ'),
(7897, 'https://ror.org/03f0b2d64', 'no_lang_code', 1, 'https://ror.org/03f0b2d64 Evans Analytical Group (United States)'),
(7898, 'https://ror.org/03f1nf684', 'no_lang_code', 1, 'https://ror.org/03f1nf684 Fillauer (United States)'),
(7899, 'https://ror.org/03f47x024', 'en', 1, 'https://ror.org/03f47x024 ECRI Institute'),
(7900, 'https://ror.org/03f61zm76', 'en', 1, 'https://ror.org/03f61zm76 Det Nationale Forskningscenter for ArbejdsmiljĆø National Research Centre for the Working Environment'),
(7901, 'https://ror.org/03f8h8g06', 'en', 1, 'https://ror.org/03f8h8g06 Basic NWFL'),
(7902, 'https://ror.org/03f98n803', 'en', 1, 'https://ror.org/03f98n803 Canadian Institute for Energy Training Institut Canadien de Formation en Energie'),
(7903, 'https://ror.org/03f9vhh95', 'en', 1, 'https://ror.org/03f9vhh95 Durham College'),
(7904, 'https://ror.org/03fa0tr49', 'no_lang_code', 1, 'https://ror.org/03fa0tr49 A&G Pharmaceutical (United States)'),
(7905, 'https://ror.org/03fag5224', 'en', 1, 'https://ror.org/03fag5224 West Bengal University of Health Sciences ą¤Ŗą¤¶ą„ą¤šą¤æą¤® बंगाल ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦øą§ą¦¬ą¦¾ą¦øą§ą¦„ą§ą¦Æą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(7906, 'https://ror.org/03fan2n27', 'en', 1, 'https://ror.org/03fan2n27 St. Stephen’s Hospital'),
(7907, 'https://ror.org/03fbqtm75', 'no_lang_code', 1, 'https://ror.org/03fbqtm75 Dassault SystĆØmes (United States)'),
(7908, 'https://ror.org/03fcgva33', 'en', 1, 'https://ror.org/03fcgva33 Westchester Medical Center'),
(7909, 'https://ror.org/03fd07264', 'no_lang_code', 1, 'https://ror.org/03fd07264 Lake Shore Cryotronics (United States)'),
(7910, 'https://ror.org/03fef0h61', 'no_lang_code', 1, 'https://ror.org/03fef0h61 Luminex (United States)'),
(7911, 'https://ror.org/03fftr154', 'es', 1, 'https://ror.org/03fftr154 Instituto Ramón y Cajal de Investigación Sanitaria'),
(7912, 'https://ror.org/03fmvqd28', 'no_lang_code', 1, 'https://ror.org/03fmvqd28 BioMarin (United States)'),
(7913, 'https://ror.org/03fwae819', 'en', 1, 'https://ror.org/03fwae819 Canadian AIDS Treatment Information Exchange'),
(7914, 'https://ror.org/03fz0tx04', 'no_lang_code', 1, 'https://ror.org/03fz0tx04 ProteoTech (United States)'),
(7915, 'https://ror.org/03g1zvc89', 'en', 1, 'https://ror.org/03g1zvc89 Valley Baptist Medical Center'),
(7916, 'https://ror.org/03g4bqt50', 'no_lang_code', 1, 'https://ror.org/03g4bqt50 Sigmovir Biosystems (United States)'),
(7917, 'https://ror.org/03g75kz98', 'no_lang_code', 1, 'https://ror.org/03g75kz98 PricewaterhouseCoopers (United States)'),
(7918, 'https://ror.org/03g7j7v29', 'no_lang_code', 1, 'https://ror.org/03g7j7v29 Tascon Industries (United States)'),
(7919, 'https://ror.org/03g7wzf21', 'no_lang_code', 1, 'https://ror.org/03g7wzf21 Emergent BioSolutions (Canada)'),
(7920, 'https://ror.org/03g99t434', 'en', 1, 'https://ror.org/03g99t434 Casa Esperanza'),
(7921, 'https://ror.org/03gcg7j68', 'en', 1, 'https://ror.org/03gcg7j68 Cincinnati Sportsmedicine and Orthopaedic Center'),
(7922, 'https://ror.org/03gd5jm66', 'en', 1, 'https://ror.org/03gd5jm66 Texas Scottish Rite Hospital for Children'),
(7923, 'https://ror.org/03gdmdz23', 'no_lang_code', 1, 'https://ror.org/03gdmdz23 Optimum Technologies (United States)'),
(7924, 'https://ror.org/03gf87416', 'no_lang_code', 1, 'https://ror.org/03gf87416 Advanced MicroLabs (United States)'),
(7925, 'https://ror.org/03ghnvz91', 'en', 1, 'https://ror.org/03ghnvz91 West Palm Beach VA Medical Center'),
(7926, 'https://ror.org/03gk3wr33', 'no_lang_code', 1, 'https://ror.org/03gk3wr33 Biostruxs (United States)'),
(7927, 'https://ror.org/03gkbdq83', 'en', 1, 'https://ror.org/03gkbdq83 Education and Research Institute'),
(7928, 'https://ror.org/03gm8jc79', 'no_lang_code', 1, 'https://ror.org/03gm8jc79 Mabvax Therapeutics (United States)'),
(7929, 'https://ror.org/03gmf8x48', 'en', 1, 'https://ror.org/03gmf8x48 National Conference of State Legislatures'),
(7930, 'https://ror.org/03gnehp03', 'en', 1, 'https://ror.org/03gnehp03 National Institute for Health Development Tervise Arengu Instituut'),
(7931, 'https://ror.org/03gp5b411', 'en', 1, 'https://ror.org/03gp5b411 Baycrest Hospital'),
(7932, 'https://ror.org/03gphk318', 'no_lang_code', 1, 'https://ror.org/03gphk318 Tetramer Technologies (United States)'),
(7933, 'https://ror.org/03gpw5a44', 'fr', 1, 'https://ror.org/03gpw5a44 Centre OrthopƩdique Santy'),
(7934, 'https://ror.org/03grsxg62', 'no_lang_code', 1, 'https://ror.org/03grsxg62 Computational Physics (United States)'),
(7935, 'https://ror.org/03gsa2724', 'en', 1, 'https://ror.org/03gsa2724 Texas Lutheran University'),
(7936, 'https://ror.org/03gsmwj46', 'no_lang_code', 1, 'https://ror.org/03gsmwj46 Market Intelligence Strategy Centre (Australia)'),
(7937, 'https://ror.org/03gt88b08', 'en', 1, 'https://ror.org/03gt88b08 Institute of Plant Physiology and Genetics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Ń„ŠøŠ·ŠøŠ¾Š»Š¾Š³ŠøŃ на Ń€Š°ŃŃ‚ŠµŠ½ŠøŃŃ‚Š° Šø генетика'),
(7938, 'https://ror.org/03gw72402', 'no_lang_code', 1, 'https://ror.org/03gw72402 Socratech (United States)'),
(7939, 'https://ror.org/03gx6zj11', 'es', 1, 'https://ror.org/03gx6zj11 Instituto Nacional de Salud'),
(7940, 'https://ror.org/03gyzpb04', 'no_lang_code', 1, 'https://ror.org/03gyzpb04 ALK-Abelló (Denmark)'),
(7941, 'https://ror.org/03gzjnf17', 'no_lang_code', 1, 'https://ror.org/03gzjnf17 Zywie (United States)'),
(7942, 'https://ror.org/03gzw3461', 'en', 1, 'https://ror.org/03gzw3461 Illinois Department of Human Services'),
(7943, 'https://ror.org/03h1gw307', 'en', 1, 'https://ror.org/03h1gw307 Ospedale S. Eugenio St. Eugenio Hospital'),
(7944, 'https://ror.org/03h7x4635', 'no_lang_code', 1, 'https://ror.org/03h7x4635 L3Harris (Canada)'),
(7945, 'https://ror.org/03h9w6s56', 'no_lang_code', 1, 'https://ror.org/03h9w6s56 OptoSonics (United States)'),
(7946, 'https://ror.org/03hdhbn34', 'no_lang_code', 1, 'https://ror.org/03hdhbn34 DNA Software (United States)'),
(7947, 'https://ror.org/03hdkx955', 'no_lang_code', 1, 'https://ror.org/03hdkx955 Medicago (Canada)'),
(7948, 'https://ror.org/03heckw12', 'no_lang_code', 1, 'https://ror.org/03heckw12 Response Biomedical (Canada)'),
(7949, 'https://ror.org/03hf41361', 'en', 1, 'https://ror.org/03hf41361 Fowler Kennedy Sport Medicine Clinic'),
(7950, 'https://ror.org/03hgang94', 'en', 1, 'https://ror.org/03hgang94 Developmental Studies Center'),
(7951, 'https://ror.org/03hgf4f46', 'no_lang_code', 1, 'https://ror.org/03hgf4f46 Conecta'),
(7952, 'https://ror.org/03hggzq81', 'en', 1, 'https://ror.org/03hggzq81 Didi Hirsch Mental Health Services'),
(7953, 'https://ror.org/03hj3bw29', 'no_lang_code', 1, 'https://ror.org/03hj3bw29 H & N Instruments (United States)'),
(7954, 'https://ror.org/03hmdtw84', 'no_lang_code', 1, 'https://ror.org/03hmdtw84 CPS Research'),
(7955, 'https://ror.org/03hnz5h47', 'no_lang_code', 1, 'https://ror.org/03hnz5h47 Forecasting International (United States)'),
(7956, 'https://ror.org/03hp55s21', 'no_lang_code', 1, 'https://ror.org/03hp55s21 Mircom Technologies (Canada)'),
(7957, 'https://ror.org/03hp60511', 'en', 1, 'https://ror.org/03hp60511 New North Citizens Council'),
(7958, 'https://ror.org/03hp93w41', 'no_lang_code', 1, 'https://ror.org/03hp93w41 Aegera Therapeutics (Canada)'),
(7959, 'https://ror.org/03hpmwj60', 'en', 1, 'https://ror.org/03hpmwj60 Health and Hospital Corporation'),
(7960, 'https://ror.org/03hq46410', 'pt', 1, 'https://ror.org/03hq46410 Instituto Nacional de SaĆŗde'),
(7961, 'https://ror.org/03hqq4p77', 'en', 1, 'https://ror.org/03hqq4p77 Society for Public Health Education'),
(7962, 'https://ror.org/03hsk1q51', 'en', 1, 'https://ror.org/03hsk1q51 National Coalition of STD Directors'),
(7963, 'https://ror.org/03htsdy94', 'fr', 1, 'https://ror.org/03htsdy94 Centre Hospitalier de la CƓte Basque'),
(7964, 'https://ror.org/03htten57', 'no_lang_code', 1, 'https://ror.org/03htten57 Westinghouse Electric (Sweden)'),
(7965, 'https://ror.org/03hvygv29', 'en', 1, 'https://ror.org/03hvygv29 Quality of Life Research Center'),
(7966, 'https://ror.org/03hw58c96', 'no_lang_code', 1, 'https://ror.org/03hw58c96 Scott Sabolich Prosthetics And Research (United States)'),
(7967, 'https://ror.org/03hwje554', 'en', 1, 'https://ror.org/03hwje554 Sheffield Kidney Institute'),
(7968, 'https://ror.org/03hxefz97', 'no_lang_code', 1, 'https://ror.org/03hxefz97 ViewPlus (United States)'),
(7969, 'https://ror.org/03j3jr069', 'no_lang_code', 1, 'https://ror.org/03j3jr069 DSM (United States)'),
(7970, 'https://ror.org/03j45zm42', 'no_lang_code', 1, 'https://ror.org/03j45zm42 Nitek (United States)'),
(7971, 'https://ror.org/03j6e9476', 'no_lang_code', 1, 'https://ror.org/03j6e9476 Lipella Pharmaceuticals (United States)'),
(7972, 'https://ror.org/03j7mxz67', 'no_lang_code', 1, 'https://ror.org/03j7mxz67 Omega Optics (United States)'),
(7973, 'https://ror.org/03j7t7330', 'en', 1, 'https://ror.org/03j7t7330 St. Joseph''s Children''s Hospital'),
(7974, 'https://ror.org/03j85fc72', 'en', 1, 'https://ror.org/03j85fc72 Fraunhofer Institute for Molecular Biology and Applied Ecology Fraunhofer-Institut für Molekularbiologie und Angewandte Oekologie'),
(7975, 'https://ror.org/03j9gnb02', 'no_lang_code', 1, 'https://ror.org/03j9gnb02 Ocutech (United States)'),
(7976, 'https://ror.org/03jbf6q27', 'en', 1, 'https://ror.org/03jbf6q27 Max-Born-Institut für Nichtlineare Optik und Kurzzeitspektroskopie Max-Born-Institute for Nonlinear Optics and Short Pulse Spectroscopy'),
(7977, 'https://ror.org/03jbk2g75', 'en', 1, 'https://ror.org/03jbk2g75 Daytona State College'),
(7978, 'https://ror.org/03jc0y470', 'en', 1, 'https://ror.org/03jc0y470 United Hospital Fund'),
(7979, 'https://ror.org/03jcpfa62', 'en', 1, 'https://ror.org/03jcpfa62 V.P. Komisarenko Institute of Endocrinology and Metabolism Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ енГокринології та Š¾Š±Š¼Ń–Š½Ńƒ речовин ім. Š’.П. ŠšŠ¾Š¼Ń–ŃŠ°Ń€ŠµŠ½ŠŗŠ°'),
(7980, 'https://ror.org/03jcrb831', 'no_lang_code', 1, 'https://ror.org/03jcrb831 Behavioral Research Incorporated (United States)'),
(7981, 'https://ror.org/03je0y772', 'de', 1, 'https://ror.org/03je0y772 Institut für biologische Forschung'),
(7982, 'https://ror.org/03jfagf20', 'en', 1, 'https://ror.org/03jfagf20 Canadian Memorial Chiropractic College'),
(7983, 'https://ror.org/03jg6a761', 'en', 1, 'https://ror.org/03jg6a761 Southeast Louisiana Veterans Health Care System'),
(7984, 'https://ror.org/03jg6sy07', 'en', 1, 'https://ror.org/03jg6sy07 Shriners Hospitals for Children - Honolulu'),
(7985, 'https://ror.org/03jgd5t29', 'no_lang_code', 1, 'https://ror.org/03jgd5t29 Astri Polska (Poland)'),
(7986, 'https://ror.org/03jgjt094', 'en', 1, 'https://ror.org/03jgjt094 Algonquin College CollĆØge Algonquin'),
(7987, 'https://ror.org/03jkz2y73', 'en', 1, 'https://ror.org/03jkz2y73 Leicester Royal Infirmary'),
(7988, 'https://ror.org/03jmm5353', 'en', 1, 'https://ror.org/03jmm5353 Lines for Life'),
(7989, 'https://ror.org/03jnf0b15', 'en', 1, 'https://ror.org/03jnf0b15 Natural Science Collections Alliance'),
(7990, 'https://ror.org/03jnj0435', 'no_lang_code', 1, 'https://ror.org/03jnj0435 Scottish and Southern Energy (United Kingdom)'),
(7991, 'https://ror.org/03jnpvg57', 'fr', 1, 'https://ror.org/03jnpvg57 Association francophone pour le savoir'),
(7992, 'https://ror.org/03jp8j090', 'no_lang_code', 1, 'https://ror.org/03jp8j090 Christie (Canada)'),
(7993, 'https://ror.org/03jsg8m50', 'no_lang_code', 1, 'https://ror.org/03jsg8m50 DOSECC Exploration Services (United States)'),
(7994, 'https://ror.org/03jt74a36', 'en', 1, 'https://ror.org/03jt74a36 China Institute of Veterinary Drug Control äø­å›½å…½åŒ»čÆå“ē›‘åÆŸę‰€'),
(7995, 'https://ror.org/03jth0z95', 'no_lang_code', 1, 'https://ror.org/03jth0z95 Natural Pharmacia International (United States)'),
(7996, 'https://ror.org/03jtqwv36', 'en', 1, 'https://ror.org/03jtqwv36 Aspire Academy Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų£Ų³ŲØŲ§ŁŠŲ±ā€Ž'),
(7997, 'https://ror.org/03jvpn714', 'it', 1, 'https://ror.org/03jvpn714 Consorzio Roma Ricerche'),
(7998, 'https://ror.org/03jwzwq24', 'no_lang_code', 1, 'https://ror.org/03jwzwq24 Xerox (United States)'),
(7999, 'https://ror.org/03jza6h92', 'en', 1, 'https://ror.org/03jza6h92 University of Abuja Teaching Hospital'),
(8000, 'https://ror.org/03k0jff29', 'en', 1, 'https://ror.org/03k0jff29 Thunder Bay Regional Health Sciences Centre'),
(8001, 'https://ror.org/03k14e164', 'en', 1, 'https://ror.org/03k14e164 Zhejiang Provincial People''s Hospital'),
(8002, 'https://ror.org/03k285c10', 'no_lang_code', 1, 'https://ror.org/03k285c10 Polaris Motion (Canada)'),
(8003, 'https://ror.org/03k36hk88', 'no_lang_code', 1, 'https://ror.org/03k36hk88 Yokkaichi Municipal Hospital 市立四旄市病院'),
(8004, 'https://ror.org/03k3qs503', 'en', 1, 'https://ror.org/03k3qs503 American Society of Andrology'),
(8005, 'https://ror.org/03k45vj26', 'no_lang_code', 1, 'https://ror.org/03k45vj26 NovoBiotic Pharmaceuticals'),
(8006, 'https://ror.org/03k4zc121', 'no_lang_code', 1, 'https://ror.org/03k4zc121 Cell Signaling Technology (United States)'),
(8007, 'https://ror.org/03k51eb57', 'en', 1, 'https://ror.org/03k51eb57 Withybush General Hospital Ysbyty Cyffredinol Llwynhelyg'),
(8008, 'https://ror.org/03k61re15', 'no_lang_code', 1, 'https://ror.org/03k61re15 MicroTransponder (United States)'),
(8009, 'https://ror.org/03k6q9261', 'en', 1, 'https://ror.org/03k6q9261 St. Mary''s Medical Center'),
(8010, 'https://ror.org/03k7szx23', 'en', 1, 'https://ror.org/03k7szx23 Royal Geographical Society'),
(8011, 'https://ror.org/03k7veg12', 'no_lang_code', 1, 'https://ror.org/03k7veg12 Odawara Municipal Hospital å°ē”°åŽŸåø‚ē«‹ē—…é™¢'),
(8012, 'https://ror.org/03k84rm07', 'en', 1, 'https://ror.org/03k84rm07 Center for Environmental Health'),
(8013, 'https://ror.org/03k9qs827', 'en', 1, 'https://ror.org/03k9qs827 Fritz Haber Institute of the Max Planck Society Fritz-Haber-Institut der Max-Planck-Gesellschaft'),
(8014, 'https://ror.org/03k9r6w77', 'no_lang_code', 1, 'https://ror.org/03k9r6w77 FTSE (Japan)'),
(8015, 'https://ror.org/03kaqgs21', 'no_lang_code', 1, 'https://ror.org/03kaqgs21 Eutropics Pharmaceuticals (United States)'),
(8016, 'https://ror.org/03kbjzx15', 'no_lang_code', 1, 'https://ror.org/03kbjzx15 Immersion (Canada)'),
(8017, 'https://ror.org/03kdkbm65', 'en', 1, 'https://ror.org/03kdkbm65 American Society for Parenteral and Enteral Nutrition'),
(8018, 'https://ror.org/03ke74b46', 'no_lang_code', 1, 'https://ror.org/03ke74b46 Welichem Biotech (Canada)'),
(8019, 'https://ror.org/03keahk34', 'no_lang_code', 1, 'https://ror.org/03keahk34 Auerbach Associates (United States)'),
(8020, 'https://ror.org/03ken7w58', 'en', 1, 'https://ror.org/03ken7w58 Virginia Wesleyan College'),
(8021, 'https://ror.org/03kh4zk18', 'no_lang_code', 1, 'https://ror.org/03kh4zk18 Weinberg Medical Physics (United States)'),
(8022, 'https://ror.org/03kjpzv42', 'en', 1, 'https://ror.org/03kjpzv42 Centro Espacial John F. Kennedy Kennedy Space Center'),
(8023, 'https://ror.org/03kkzdv75', 'en', 1, 'https://ror.org/03kkzdv75 Clinicians Report Foundation'),
(8024, 'https://ror.org/03kned690', 'no_lang_code', 1, 'https://ror.org/03kned690 Athersys (United States)'),
(8025, 'https://ror.org/03kp8gv86', 'en', 1, 'https://ror.org/03kp8gv86 Visiting Nurse Service of New York'),
(8026, 'https://ror.org/03kr30n36', 'en', 1, 'https://ror.org/03kr30n36 Manchester Royal Infirmary'),
(8027, 'https://ror.org/03ks1vk59', 'it', 1, 'https://ror.org/03ks1vk59 Centro di Riferimento Oncologico'),
(8028, 'https://ror.org/03ks2a131', 'no_lang_code', 1, 'https://ror.org/03ks2a131 Mitre (United States)'),
(8029, 'https://ror.org/03kt2r684', 'en', 1, 'https://ror.org/03kt2r684 H.T. Harvey & Associates'),
(8030, 'https://ror.org/03kxv9c43', 'no_lang_code', 1, 'https://ror.org/03kxv9c43 Astro-Med (United States)'),
(8031, 'https://ror.org/03kxwet38', 'no_lang_code', 1, 'https://ror.org/03kxwet38 Antigen Express (United States)'),
(8032, 'https://ror.org/03kz7sc12', 'en', 1, 'https://ror.org/03kz7sc12 Rothman Institute'),
(8033, 'https://ror.org/03m2zdn30', 'no_lang_code', 1, 'https://ror.org/03m2zdn30 Plentyoffish Media (Canada)'),
(8034, 'https://ror.org/03m4mbh87', 'no_lang_code', 1, 'https://ror.org/03m4mbh87 Reliable Biopharmaceutical Corporation (United States)'),
(8035, 'https://ror.org/03m52v505', 'en', 1, 'https://ror.org/03m52v505 Suffolk County Department of Health Services'),
(8036, 'https://ror.org/03m5fme96', 'en', 1, 'https://ror.org/03m5fme96 Nagahama Institute of Bio-Science and Technology é•·ęµœćƒć‚¤ć‚Ŗå¤§å­¦'),
(8037, 'https://ror.org/03m5rvq73', 'no_lang_code', 1, 'https://ror.org/03m5rvq73 Zen Bio (United States)'),
(8038, 'https://ror.org/03m7mhz19', 'no_lang_code', 1, 'https://ror.org/03m7mhz19 Ferring Pharmaceuticals (Denmark)'),
(8039, 'https://ror.org/03m7pt185', 'en', 1, 'https://ror.org/03m7pt185 Bay ZoltÔn Alkalmazott KutatÔsi Közhasznú Nonprofit Kft Bay ZoltÔn Foundation for Applied Research'),
(8040, 'https://ror.org/03m8b9646', 'en', 1, 'https://ror.org/03m8b9646 Tilganga Institute of Ophthalmology तिलगंगा ą¤†ą¤ą¤–ą¤¾ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(8041, 'https://ror.org/03mante79', 'no_lang_code', 1, 'https://ror.org/03mante79 Advantagene (United States)'),
(8042, 'https://ror.org/03mcw4334', 'es', 1, 'https://ror.org/03mcw4334 Direccion General de Epidemiologia'),
(8043, 'https://ror.org/03md96v89', 'en', 1, 'https://ror.org/03md96v89 National Trust'),
(8044, 'https://ror.org/03me92s48', 'no_lang_code', 1, 'https://ror.org/03me92s48 Bechtel (United States)'),
(8045, 'https://ror.org/03mex2a54', 'no_lang_code', 1, 'https://ror.org/03mex2a54 BioStrategies (United States)'),
(8046, 'https://ror.org/03mf1cy35', 'en', 1, 'https://ror.org/03mf1cy35 Manchester College'),
(8047, 'https://ror.org/03mgv7521', 'en', 1, 'https://ror.org/03mgv7521 Fort Worth Museum of Science and History'),
(8048, 'https://ror.org/03mk1ty71', 'en', 1, 'https://ror.org/03mk1ty71 Abacus Health Solutions'),
(8049, 'https://ror.org/03mk3s709', 'hu', 1, 'https://ror.org/03mk3s709 OrszÔgos PszichiÔtriai és Neurológiai Intézet'),
(8050, 'https://ror.org/03mm5qn83', 'en', 1, 'https://ror.org/03mm5qn83 Occupational Safety & Health Administration'),
(8051, 'https://ror.org/03mnq7x91', 'no_lang_code', 1, 'https://ror.org/03mnq7x91 Lundin Mining (Portugal)'),
(8052, 'https://ror.org/03mpa4w20', 'en', 1, 'https://ror.org/03mpa4w20 Okinawa Prefectural Chubu Hospital ę²–ēø„ēœŒē«‹äø­éƒØē—…é™¢'),
(8053, 'https://ror.org/03ms7cf36', 'en', 1, 'https://ror.org/03ms7cf36 TB Alliance'),
(8054, 'https://ror.org/03msykc12', 'en', 1, 'https://ror.org/03msykc12 Steadman Philippon Research Institute'),
(8055, 'https://ror.org/03mvdc478', 'en', 1, 'https://ror.org/03mvdc478 Pennsylvania Hospital'),
(8056, 'https://ror.org/03mwfxd89', 'no_lang_code', 1, 'https://ror.org/03mwfxd89 GrammaTech (United States)'),
(8057, 'https://ror.org/03mx8d427', 'en', 1, 'https://ror.org/03mx8d427 Instituto Nacional de SaĆŗde Dr. Ricardo Jorge National Institute of Health Dr. Ricardo Jorge'),
(8058, 'https://ror.org/03mxm6g77', 'en', 1, 'https://ror.org/03mxm6g77 Tomah VA Medical Center'),
(8059, 'https://ror.org/03mxv9643', 'en', 1, 'https://ror.org/03mxv9643 Onslow Memorial Hospital'),
(8060, 'https://ror.org/03mz0by90', 'no_lang_code', 1, 'https://ror.org/03mz0by90 Consolidated Safety Services-Dynamac (United States)'),
(8061, 'https://ror.org/03mz9mq20', 'tr', 1, 'https://ror.org/03mz9mq20 Adli Tıp Kurumu'),
(8062, 'https://ror.org/03n0d3a30', 'en', 1, 'https://ror.org/03n0d3a30 Dallas County'),
(8063, 'https://ror.org/03n0dgh22', 'en', 1, 'https://ror.org/03n0dgh22 Fort Peck Community College'),
(8064, 'https://ror.org/03n2bnb89', 'es', 1, 'https://ror.org/03n2bnb89 Hospital Intermutual de Levante'),
(8065, 'https://ror.org/03n37y445', 'no_lang_code', 1, 'https://ror.org/03n37y445 AgentSheets (United States)'),
(8066, 'https://ror.org/03n3jmy18', 'no_lang_code', 1, 'https://ror.org/03n3jmy18 Avanti Polar Lipids (United States)'),
(8067, 'https://ror.org/03n52gt10', 'en', 1, 'https://ror.org/03n52gt10 Millennium Pain Center'),
(8068, 'https://ror.org/03n5jt416', 'no_lang_code', 1, 'https://ror.org/03n5jt416 Capsugel (United States)'),
(8069, 'https://ror.org/03n87wv50', 'no_lang_code', 1, 'https://ror.org/03n87wv50 Applied BioPhysics (United States)'),
(8070, 'https://ror.org/03n92bt27', 'en', 1, 'https://ror.org/03n92bt27 Overton Brooks VA Medical Center'),
(8071, 'https://ror.org/03n9kxm25', 'en', 1, 'https://ror.org/03n9kxm25 Delaware County Community College'),
(8072, 'https://ror.org/03n9vvh94', 'no_lang_code', 1, 'https://ror.org/03n9vvh94 ActionDog (United Kingdom)'),
(8073, 'https://ror.org/03naxgw71', 'en', 1, 'https://ror.org/03naxgw71 Reformar'),
(8074, 'https://ror.org/03nd0nz77', 'en', 1, 'https://ror.org/03nd0nz77 Kagoshima Medical Center é¹æå…å³¶åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(8075, 'https://ror.org/03ndwvd63', 'en', 1, 'https://ror.org/03ndwvd63 Fairview Developmental Center'),
(8076, 'https://ror.org/03neybp41', 'it', 1, 'https://ror.org/03neybp41 Ospedale Microcitemico'),
(8077, 'https://ror.org/03nfebx47', 'no_lang_code', 1, 'https://ror.org/03nfebx47 Terpenoid Therapeutics (United States)'),
(8078, 'https://ror.org/03ngp7731', 'no_lang_code', 1, 'https://ror.org/03ngp7731 Advanced Cooling Technologies (United States)'),
(8079, 'https://ror.org/03nk8rb41', 'en', 1, 'https://ror.org/03nk8rb41 Yukon River Inter Tribal Watershed Council'),
(8080, 'https://ror.org/03nkdc513', 'no_lang_code', 1, 'https://ror.org/03nkdc513 Sabbagh Associates'),
(8081, 'https://ror.org/03nkzyy47', 'en', 1, 'https://ror.org/03nkzyy47 Paradise Valley Hospital'),
(8082, 'https://ror.org/03nmpxq27', 'en', 1, 'https://ror.org/03nmpxq27 Georgia Department of Agriculture'),
(8083, 'https://ror.org/03npmaw37', 'de', 1, 'https://ror.org/03npmaw37 Wunschbaby Institut für Kinderwunsch'),
(8084, 'https://ror.org/03npzn484', 'no_lang_code', 1, 'https://ror.org/03npzn484 CorpoGen (Colombia)'),
(8085, 'https://ror.org/03nqny130', 'no_lang_code', 1, 'https://ror.org/03nqny130 Willis Towers Watson (United Kingdom)'),
(8086, 'https://ror.org/03nr3ve48', 'no_lang_code', 1, 'https://ror.org/03nr3ve48 Advanced Brain Monitoring (United States)'),
(8087, 'https://ror.org/03nrae010', 'no_lang_code', 1, 'https://ror.org/03nrae010 Orthocare Innovations (United States)');
INSERT INTO `rors` VALUES
(8088, 'https://ror.org/03nrb5p64', 'en', 1, 'https://ror.org/03nrb5p64 Adalet Bakanlığı Ministry of Justice'),
(8089, 'https://ror.org/03nrvep03', 'no_lang_code', 1, 'https://ror.org/03nrvep03 MetaMateria (United States)'),
(8090, 'https://ror.org/03nsnsd97', 'no_lang_code', 1, 'https://ror.org/03nsnsd97 Celaya, Emparanza y Galdos Internacional (Spain)'),
(8091, 'https://ror.org/03nv5gj57', 'en', 1, 'https://ror.org/03nv5gj57 Bethany College - Kansas'),
(8092, 'https://ror.org/03nxga177', 'no_lang_code', 1, 'https://ror.org/03nxga177 Sigma Technologies (United States)'),
(8093, 'https://ror.org/03nyxbd27', 'en', 1, 'https://ror.org/03nyxbd27 Reproductive Medicine Associates of New Jersey'),
(8094, 'https://ror.org/03nz5jq66', 'no_lang_code', 1, 'https://ror.org/03nz5jq66 Geotab (Canada)'),
(8095, 'https://ror.org/03nzdk586', 'en', 1, 'https://ror.org/03nzdk586 Cooperative Clinical Drug Research and Development'),
(8096, 'https://ror.org/03p0nzr60', 'no_lang_code', 1, 'https://ror.org/03p0nzr60 NanoComposix (United States)'),
(8097, 'https://ror.org/03p15s250', 'en', 1, 'https://ror.org/03p15s250 National Center for Health Statistics'),
(8098, 'https://ror.org/03p1zz409', 'no_lang_code', 1, 'https://ror.org/03p1zz409 Envigo (Germany)'),
(8099, 'https://ror.org/03p5x8053', 'no_lang_code', 1, 'https://ror.org/03p5x8053 Cell Preservation Services (United States)'),
(8100, 'https://ror.org/03p64mj41', 'en', 1, 'https://ror.org/03p64mj41 Greenwood Genetic Center'),
(8101, 'https://ror.org/03p6fpw74', 'en', 1, 'https://ror.org/03p6fpw74 Summa Health System'),
(8102, 'https://ror.org/03p711j77', 'en', 1, 'https://ror.org/03p711j77 Australian Institute of Nuclear Science and Engineering'),
(8103, 'https://ror.org/03p81a485', 'no_lang_code', 1, 'https://ror.org/03p81a485 Altor BioScience (United States)'),
(8104, 'https://ror.org/03pa87f90', 'fr', 1, 'https://ror.org/03pa87f90 Institut Claudius Regaud'),
(8105, 'https://ror.org/03pe98v12', 'en', 1, 'https://ror.org/03pe98v12 Surgical Materials Testing Laboratory'),
(8106, 'https://ror.org/03pfshj32', 'de', 1, 'https://ror.org/03pfshj32 Munich Municipal Hospital Group München Klinik'),
(8107, 'https://ror.org/03pfy5b07', 'no_lang_code', 1, 'https://ror.org/03pfy5b07 Edvotek (United States)'),
(8108, 'https://ror.org/03pghek18', 'en', 1, 'https://ror.org/03pghek18 Bristol Institute for Transfusion Sciences'),
(8109, 'https://ror.org/03pgm1r86', 'en', 1, 'https://ror.org/03pgm1r86 American College of Cardiology'),
(8110, 'https://ror.org/03phkbp27', 'en', 1, 'https://ror.org/03phkbp27 Wolters Kluwer Health'),
(8111, 'https://ror.org/03pj30e67', 'no_lang_code', 1, 'https://ror.org/03pj30e67 Saiseikai Nakatsu Hospital å¤§é˜Ŗåŗœęøˆē”Ÿä¼šäø­ę“„ē—…é™¢'),
(8112, 'https://ror.org/03pjgt842', 'en', 1, 'https://ror.org/03pjgt842 Shriners for Children Medical Center - Pasadena'),
(8113, 'https://ror.org/03pjwtr87', 'en', 1, 'https://ror.org/03pjwtr87 Canadian College of Naturopathic Medicine'),
(8114, 'https://ror.org/03pp86w19', 'en', 1, 'https://ror.org/03pp86w19 Beatson West of Scotland Cancer Centre'),
(8115, 'https://ror.org/03prr0814', 'en', 1, 'https://ror.org/03prr0814 Defence Food Research Laboratory ą¤°ą¤•ą„ą¤·ą¤¾ ą¤–ą¤¾ą¤¦ą„ą¤Æ ą¤¶ą„‹ą¤§ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(8116, 'https://ror.org/03pszb036', 'en', 1, 'https://ror.org/03pszb036 Asbury University'),
(8117, 'https://ror.org/03ptehc98', 'en', 1, 'https://ror.org/03ptehc98 Southern Regional Area Health Education Centers'),
(8118, 'https://ror.org/03px2kh57', 'fr', 1, 'https://ror.org/03px2kh57 Institut de MƩdecine Tropicale du Service de SantƩ des ArmƩes'),
(8119, 'https://ror.org/03pxsqj18', 'en', 1, 'https://ror.org/03pxsqj18 Hebrew Home of Greater Washington'),
(8120, 'https://ror.org/03pxz9p87', 'en', 1, 'https://ror.org/03pxz9p87 Institut International de Recherche sur les Politiques Alimentaires Instituto Internacional de Investigación sobre Políticas Alimentarias International Food Policy Research Institute'),
(8121, 'https://ror.org/03pzbeq42', 'en', 1, 'https://ror.org/03pzbeq42 Youth Science Canada'),
(8122, 'https://ror.org/03q2s1r54', 'en', 1, 'https://ror.org/03q2s1r54 National Institute of Ayurveda ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(8123, 'https://ror.org/03q358129', 'no_lang_code', 1, 'https://ror.org/03q358129 Active Signal Technologies (United States)'),
(8124, 'https://ror.org/03q43d318', 'no_lang_code', 1, 'https://ror.org/03q43d318 iTherX (United States)'),
(8125, 'https://ror.org/03q452953', 'no_lang_code', 1, 'https://ror.org/03q452953 ING Robotic Aviation'),
(8126, 'https://ror.org/03q47r263', 'no_lang_code', 1, 'https://ror.org/03q47r263 DMH Associates (United States)'),
(8127, 'https://ror.org/03q50jp21', 'no_lang_code', 1, 'https://ror.org/03q50jp21 Colgate-Palmolive (United States)'),
(8128, 'https://ror.org/03q5ywq18', 'no_lang_code', 1, 'https://ror.org/03q5ywq18 Conversion Energy Enterprises (United States)'),
(8129, 'https://ror.org/03q6ms497', 'no_lang_code', 1, 'https://ror.org/03q6ms497 Schlumberger (United Kingdom)'),
(8130, 'https://ror.org/03q73zg62', 'no_lang_code', 1, 'https://ror.org/03q73zg62 Cirrus Logic (United Kingdom)'),
(8131, 'https://ror.org/03q7hxz75', 'en', 1, 'https://ror.org/03q7hxz75 Tachikawa Hospital ē«‹å·ē—…é™¢'),
(8132, 'https://ror.org/03q82br40', 'sv', 1, 'https://ror.org/03q82br40 Vrinnevi Hospital Vrinnevisjukhuset i Norrkƶping'),
(8133, 'https://ror.org/03q8fh922', 'pl', 1, 'https://ror.org/03q8fh922 Military Institute of Hygiene and Epidemiology Wojskowy Instytut Higieny i Epidemiologii'),
(8134, 'https://ror.org/03q94pb14', 'no_lang_code', 1, 'https://ror.org/03q94pb14 Beckham Company (United States)'),
(8135, 'https://ror.org/03qaq7791', 'no_lang_code', 1, 'https://ror.org/03qaq7791 Tristan Technologies (United States)'),
(8136, 'https://ror.org/03qeabs35', 'en', 1, 'https://ror.org/03qeabs35 Anderson Orthopaedic Research Institute'),
(8137, 'https://ror.org/03qj07681', 'no_lang_code', 1, 'https://ror.org/03qj07681 Epirus Biopharmaceuticals (United States)'),
(8138, 'https://ror.org/03qk02j94', 'en', 1, 'https://ror.org/03qk02j94 West Jefferson Medical Center'),
(8139, 'https://ror.org/03qkaf287', 'en', 1, 'https://ror.org/03qkaf287 Gila River Indian Community'),
(8140, 'https://ror.org/03qkhyr66', 'no_lang_code', 1, 'https://ror.org/03qkhyr66 Novozymes (United States)'),
(8141, 'https://ror.org/03qkymy66', 'no_lang_code', 1, 'https://ror.org/03qkymy66 Polaris Health Direction'),
(8142, 'https://ror.org/03qmsrr79', 'no_lang_code', 1, 'https://ror.org/03qmsrr79 Steris (United States)'),
(8143, 'https://ror.org/03qpaq263', 'sv', 1, 'https://ror.org/03qpaq263 VƄrdcentralen Teleborg'),
(8144, 'https://ror.org/03qpd8w66', 'it', 1, 'https://ror.org/03qpd8w66 Institute of Molecular Genetics Luigi Luca Cavalli-Sforza Istituto di Genetica Molecolare'),
(8145, 'https://ror.org/03qqc4d32', 'no_lang_code', 1, 'https://ror.org/03qqc4d32 QLT (Canada)'),
(8146, 'https://ror.org/03qs03z89', 'en', 1, 'https://ror.org/03qs03z89 Progeria Research Foundation'),
(8147, 'https://ror.org/03qsrxk46', 'no_lang_code', 1, 'https://ror.org/03qsrxk46 Giro (Canada)'),
(8148, 'https://ror.org/03qvjfg54', 'en', 1, 'https://ror.org/03qvjfg54 Notre Dame de Namur University UniversitƩ notre-dame-de-namur'),
(8149, 'https://ror.org/03qvxap92', 'no_lang_code', 1, 'https://ror.org/03qvxap92 Kodak (United Kingdom)'),
(8150, 'https://ror.org/03qw8q135', 'no_lang_code', 1, 'https://ror.org/03qw8q135 Transposagen Biopharmaceuticals (United States)'),
(8151, 'https://ror.org/03qwfxy81', 'en', 1, 'https://ror.org/03qwfxy81 National Disease Research Interchange'),
(8152, 'https://ror.org/03qwkzw23', 'en', 1, 'https://ror.org/03qwkzw23 Valley Presbyterian Hospital'),
(8153, 'https://ror.org/03qx1c439', 'en', 1, 'https://ror.org/03qx1c439 Wayne Memorial Hospital'),
(8154, 'https://ror.org/03qxwgf98', 'es', 1, 'https://ror.org/03qxwgf98 Center for Genetic Engineering and Biotechnology Centro de Ingenierƭa GenƩtica y Biotecnologƭa'),
(8155, 'https://ror.org/03qz04022', 'en', 1, 'https://ror.org/03qz04022 Council of State Governments'),
(8156, 'https://ror.org/03qz3ng87', 'en', 1, 'https://ror.org/03qz3ng87 Inter-Tribal Council of Michigan'),
(8157, 'https://ror.org/03qz4w368', 'no_lang_code', 1, 'https://ror.org/03qz4w368 PowerWorld (United States)'),
(8158, 'https://ror.org/03qzgjs85', 'no_lang_code', 1, 'https://ror.org/03qzgjs85 Abeome Corporation (United States)'),
(8159, 'https://ror.org/03r0xxt78', 'en', 1, 'https://ror.org/03r0xxt78 AIDS Committee of Toronto'),
(8160, 'https://ror.org/03r35eh66', 'no_lang_code', 1, 'https://ror.org/03r35eh66 Michigan Molecular Institute (United States)'),
(8161, 'https://ror.org/03r5ecg75', 'no_lang_code', 1, 'https://ror.org/03r5ecg75 Noble Life Sciences (United States)'),
(8162, 'https://ror.org/03ravcp64', 'no_lang_code', 1, 'https://ror.org/03ravcp64 Etubics (United States)'),
(8163, 'https://ror.org/03rbjx398', 'en', 1, 'https://ror.org/03rbjx398 National Suicide Research Foundation'),
(8164, 'https://ror.org/03rbsqr59', 'en', 1, 'https://ror.org/03rbsqr59 DinƩ College'),
(8165, 'https://ror.org/03rctck52', 'no_lang_code', 1, 'https://ror.org/03rctck52 MyScience (United Kingdom)'),
(8166, 'https://ror.org/03rdrc196', 'no_lang_code', 1, 'https://ror.org/03rdrc196 Parallel Synthesis Technologies (United States)'),
(8167, 'https://ror.org/03re1za85', 'en', 1, 'https://ror.org/03re1za85 QuƩbec International'),
(8168, 'https://ror.org/03re9hr91', 'no_lang_code', 1, 'https://ror.org/03re9hr91 Peake DeLancey Printers (United States)'),
(8169, 'https://ror.org/03rezj286', 'en', 1, 'https://ror.org/03rezj286 Chemical Pharmaceutical Research Institute'),
(8170, 'https://ror.org/03rharq04', 'en', 1, 'https://ror.org/03rharq04 Rath Research Institute'),
(8171, 'https://ror.org/03rjjzx12', 'it', 1, 'https://ror.org/03rjjzx12 Ospedale di Mirano'),
(8172, 'https://ror.org/03rppzy62', 'no_lang_code', 1, 'https://ror.org/03rppzy62 Thromgen (United States)'),
(8173, 'https://ror.org/03rrfzx46', 'de', 1, 'https://ror.org/03rrfzx46 Allgemeine Unfallversicherungsanstalt'),
(8174, 'https://ror.org/03rs0fg31', 'en', 1, 'https://ror.org/03rs0fg31 Materials Science & Engineering'),
(8175, 'https://ror.org/03rs11m37', 'no_lang_code', 1, 'https://ror.org/03rs11m37 Levret'),
(8176, 'https://ror.org/03rt40634', 'en', 1, 'https://ror.org/03rt40634 AIDS Service Center of New York City'),
(8177, 'https://ror.org/03rvph505', 'en', 1, 'https://ror.org/03rvph505 Bacone College'),
(8178, 'https://ror.org/03rw53777', 'no_lang_code', 1, 'https://ror.org/03rw53777 CyberTech (United States)'),
(8179, 'https://ror.org/03rx00z90', 'no_lang_code', 1, 'https://ror.org/03rx00z90 Sakurabashi Watanabe Hospital ę”œę©‹ęø”č¾ŗē—…é™¢'),
(8180, 'https://ror.org/03rxt9r79', 'en', 1, 'https://ror.org/03rxt9r79 Computer Aids for Chemical Engineering'),
(8181, 'https://ror.org/03ryhm704', 'no_lang_code', 1, 'https://ror.org/03ryhm704 DuPont (United Kingdom)'),
(8182, 'https://ror.org/03rytet35', 'no_lang_code', 1, 'https://ror.org/03rytet35 KMS Fusion (United States)'),
(8183, 'https://ror.org/03rzh5w77', 'no_lang_code', 1, 'https://ror.org/03rzh5w77 Utsi Electronics (United Kingdom)'),
(8184, 'https://ror.org/03rzm8h15', 'en', 1, 'https://ror.org/03rzm8h15 Hyogo Brain and Heart Center å…µåŗ«ēœŒē«‹å§«č·Æå¾Ŗē’°å™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(8185, 'https://ror.org/03s0w0d38', 'no_lang_code', 1, 'https://ror.org/03s0w0d38 VideoMining (United States)'),
(8186, 'https://ror.org/03s4b7629', 'no_lang_code', 1, 'https://ror.org/03s4b7629 Nanomaterials & Nanofabrication Laboratories (United States)'),
(8187, 'https://ror.org/03s4hbs71', 'en', 1, 'https://ror.org/03s4hbs71 New England Board of Higher Education'),
(8188, 'https://ror.org/03s7rt838', 'no_lang_code', 1, 'https://ror.org/03s7rt838 Nottingham Scientific (United Kingdom)'),
(8189, 'https://ror.org/03s8c8p36', 'no_lang_code', 1, 'https://ror.org/03s8c8p36 Continuum Dynamics (United States)'),
(8190, 'https://ror.org/03s96eq95', 'en', 1, 'https://ror.org/03s96eq95 Tacoma/Valley Radiation Oncology Centers'),
(8191, 'https://ror.org/03savhj63', 'no_lang_code', 1, 'https://ror.org/03savhj63 Exocell (United States)'),
(8192, 'https://ror.org/03se9cq71', 'no_lang_code', 1, 'https://ror.org/03se9cq71 Panasonic (United Kingdom)'),
(8193, 'https://ror.org/03sfb9j07', 'en', 1, 'https://ror.org/03sfb9j07 China University of Science and Technology äø­čÆē§‘ęŠ€å¤§å­ø'),
(8194, 'https://ror.org/03sgbh608', 'en', 1, 'https://ror.org/03sgbh608 La Jolla Bioengineering Institute'),
(8195, 'https://ror.org/03sgtek58', 'en', 1, 'https://ror.org/03sgtek58 China Institute of Sport Science 国家体育总局体育科学研究所'),
(8196, 'https://ror.org/03shg3b96', 'en', 1, 'https://ror.org/03shg3b96 Stanley Street Treatment and Resources'),
(8197, 'https://ror.org/03shyvb83', 'en', 1, 'https://ror.org/03shyvb83 Hope Heart Institute'),
(8198, 'https://ror.org/03sjfjv85', 'no_lang_code', 1, 'https://ror.org/03sjfjv85 Phenomenome Discoveries (Canada)'),
(8199, 'https://ror.org/03skrcz21', 'en', 1, 'https://ror.org/03skrcz21 Joint Commission'),
(8200, 'https://ror.org/03sm16s30', 'en', 1, 'https://ror.org/03sm16s30 Toronto East General Hospital'),
(8201, 'https://ror.org/03sn3te07', 'it', 1, 'https://ror.org/03sn3te07 SocietĆ  Italiana di Medicina Generale'),
(8202, 'https://ror.org/03snky177', 'en', 1, 'https://ror.org/03snky177 New Victoria Theatre'),
(8203, 'https://ror.org/03sqbp894', 'no_lang_code', 1, 'https://ror.org/03sqbp894 GlaxoSmithKline (Switzerland)'),
(8204, 'https://ror.org/03sqq2g46', 'en', 1, 'https://ror.org/03sqq2g46 Retina Foundation of the Southwest'),
(8205, 'https://ror.org/03srd4412', 'en', 1, 'https://ror.org/03srd4412 Center for HIV and Hepatogastroenterology Medizinisches Versorgungszentrum'),
(8206, 'https://ror.org/03st5df34', 'no_lang_code', 1, 'https://ror.org/03st5df34 World Precision Instruments (United States)'),
(8207, 'https://ror.org/03svd1086', 'no_lang_code', 1, 'https://ror.org/03svd1086 Jarvik Heart (United States)'),
(8208, 'https://ror.org/03swwwm05', 'en', 1, 'https://ror.org/03swwwm05 Health Services Center'),
(8209, 'https://ror.org/03sxe1905', 'no_lang_code', 1, 'https://ror.org/03sxe1905 FibroGen (United States)'),
(8210, 'https://ror.org/03sxmk145', 'fr', 1, 'https://ror.org/03sxmk145 Images & RƩseaux'),
(8211, 'https://ror.org/03t12ts08', 'en', 1, 'https://ror.org/03t12ts08 Kunming Institute of Precious Metals'),
(8212, 'https://ror.org/03t1jzs40', 'it', 1, 'https://ror.org/03t1jzs40 IRCCS Materno Infantile Burlo Garofolo, Ospedale Infantile Burlo Garofolo'),
(8213, 'https://ror.org/03t3e7k14', 'en', 1, 'https://ror.org/03t3e7k14 International Society for Experimental Hematology'),
(8214, 'https://ror.org/03t4znc65', 'en', 1, 'https://ror.org/03t4znc65 DairyNZ'),
(8215, 'https://ror.org/03t56ts61', 'en', 1, 'https://ror.org/03t56ts61 Livingstone College'),
(8216, 'https://ror.org/03t6ffp13', 'en', 1, 'https://ror.org/03t6ffp13 Yuli Veterans Hospital äøƒęœˆé€€ä¼å†›äŗŗåŒ»é™¢'),
(8217, 'https://ror.org/03t995d97', 'en', 1, 'https://ror.org/03t995d97 St. Joseph Health System'),
(8218, 'https://ror.org/03t9z1b27', 'en', 1, 'https://ror.org/03t9z1b27 Utah Department of Human Services'),
(8219, 'https://ror.org/03te4pe27', 'no_lang_code', 1, 'https://ror.org/03te4pe27 Umpqua Research Company (United States)'),
(8220, 'https://ror.org/03tebt685', 'en', 1, 'https://ror.org/03tebt685 Malawi-Liverpool-Wellcome Trust Clinical Research Programme'),
(8221, 'https://ror.org/03tghjn41', 'no_lang_code', 1, 'https://ror.org/03tghjn41 Ocular Surface Center'),
(8222, 'https://ror.org/03tgpkr96', 'no_lang_code', 1, 'https://ror.org/03tgpkr96 Tactus Technology (United States)'),
(8223, 'https://ror.org/03tgvv724', 'en', 1, 'https://ror.org/03tgvv724 Swedish Covenant Hospital'),
(8224, 'https://ror.org/03tj54q36', 'no_lang_code', 1, 'https://ror.org/03tj54q36 Translink (United Kingdom)'),
(8225, 'https://ror.org/03tj9dz52', 'en', 1, 'https://ror.org/03tj9dz52 Stillman College'),
(8226, 'https://ror.org/03tjj1227', 'en', 1, 'https://ror.org/03tjj1227 Tsukuba Medical Center Hospital ē­‘ę³¢ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼ē—…é™¢'),
(8227, 'https://ror.org/03tmrv747', 'no_lang_code', 1, 'https://ror.org/03tmrv747 Pro Change Behavior Systems (United States)'),
(8228, 'https://ror.org/03tmy2526', 'en', 1, 'https://ror.org/03tmy2526 Gundersen Lutheran Hospital'),
(8229, 'https://ror.org/03tns0030', 'en', 1, 'https://ror.org/03tns0030 Environmental Protection Agency'),
(8230, 'https://ror.org/03ts76x74', 'en', 1, 'https://ror.org/03ts76x74 White Mountains Community College'),
(8231, 'https://ror.org/03tsfw439', 'no_lang_code', 1, 'https://ror.org/03tsfw439 Saint-Gobain (United States)'),
(8232, 'https://ror.org/03tvzhc42', 'no_lang_code', 1, 'https://ror.org/03tvzhc42 Vesticon (United States)'),
(8233, 'https://ror.org/03txk6b49', 'en', 1, 'https://ror.org/03txk6b49 St. Luke''s Hospital'),
(8234, 'https://ror.org/03tz9bp03', 'no_lang_code', 1, 'https://ror.org/03tz9bp03 Sharklet Technologies (United States)'),
(8235, 'https://ror.org/03tzkeq32', 'no_lang_code', 1, 'https://ror.org/03tzkeq32 Enzo Biochem (United States)'),
(8236, 'https://ror.org/03v08em34', 'en', 1, 'https://ror.org/03v08em34 Maaruti College of Dental sciences & Research Center'),
(8237, 'https://ror.org/03v2wv079', 'en', 1, 'https://ror.org/03v2wv079 Colorado Center for Reproductive Medicine'),
(8238, 'https://ror.org/03v351c14', 'en', 1, 'https://ror.org/03v351c14 International Center for Research on Women'),
(8239, 'https://ror.org/03v4j1n69', 'no_lang_code', 1, 'https://ror.org/03v4j1n69 WRc (United Kingdom)'),
(8240, 'https://ror.org/03v53q116', 'no_lang_code', 1, 'https://ror.org/03v53q116 ProSci Incorporated (United States)'),
(8241, 'https://ror.org/03v5sbh78', 'en', 1, 'https://ror.org/03v5sbh78 Swami Devi Dyal Hospital and Dental College'),
(8242, 'https://ror.org/03v6a2j28', 'en', 1, 'https://ror.org/03v6a2j28 Trillium Health Centre'),
(8243, 'https://ror.org/03v6ftq03', 'en', 1, 'https://ror.org/03v6ftq03 International Rescue Committee'),
(8244, 'https://ror.org/03v7zx932', 'en', 1, 'https://ror.org/03v7zx932 Girls Incorporated'),
(8245, 'https://ror.org/03v861t80', 'no_lang_code', 1, 'https://ror.org/03v861t80 Atmel (United States)'),
(8246, 'https://ror.org/03vetm947', 'no_lang_code', 1, 'https://ror.org/03vetm947 Isowater Corporation (Canada)'),
(8247, 'https://ror.org/03vfany12', 'no_lang_code', 1, 'https://ror.org/03vfany12 Crosslight Software (Canada)'),
(8248, 'https://ror.org/03vj54r15', 'no_lang_code', 1, 'https://ror.org/03vj54r15 Dot Metrics Technologies (United States)'),
(8249, 'https://ror.org/03vj88s15', 'fr', 1, 'https://ror.org/03vj88s15 Centre d''Etudes Prospectives et d''Informations Internationales'),
(8250, 'https://ror.org/03vk7ns50', 'en', 1, 'https://ror.org/03vk7ns50 Alwar Pharmacy College'),
(8251, 'https://ror.org/03vk8p158', 'en', 1, 'https://ror.org/03vk8p158 Block Center'),
(8252, 'https://ror.org/03vmatd47', 'no_lang_code', 1, 'https://ror.org/03vmatd47 Safran Electronics (Canada)'),
(8253, 'https://ror.org/03vmc0n61', 'en', 1, 'https://ror.org/03vmc0n61 Galiano Conservancy Association'),
(8254, 'https://ror.org/03vmrxk92', 'en', 1, 'https://ror.org/03vmrxk92 State Research Center for Applied Microbiology and Biotechnology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр приклаГной микробиологии Šø биотехнологии'),
(8255, 'https://ror.org/03vpj4s62', 'en', 1, 'https://ror.org/03vpj4s62 Max Planck Institute of Molecular Physiology Max-Planck-Institut für Molekulare Physiologie'),
(8256, 'https://ror.org/03vpkt967', 'en', 1, 'https://ror.org/03vpkt967 Lancaster Theological Seminary, United Church of Christ'),
(8257, 'https://ror.org/03vqk1b90', 'hu', 1, 'https://ror.org/03vqk1b90 Petz AladÔr Megyei Oktató KórhÔz'),
(8258, 'https://ror.org/03vs98h61', 'en', 1, 'https://ror.org/03vs98h61 Cardiopulmonary Research Science and Technology Institute'),
(8259, 'https://ror.org/03vtp2091', 'no_lang_code', 1, 'https://ror.org/03vtp2091 NeuroBioTex (United States)'),
(8260, 'https://ror.org/03vw5xy77', 'en', 1, 'https://ror.org/03vw5xy77 Northwest Portland Area Indian Health Board'),
(8261, 'https://ror.org/03vwrbq09', 'no_lang_code', 1, 'https://ror.org/03vwrbq09 EyePoint Pharmaceuticals (United States)'),
(8262, 'https://ror.org/03vypx625', 'en', 1, 'https://ror.org/03vypx625 Burton Hospitals NHS Foundation Trust'),
(8263, 'https://ror.org/03w1r6s74', 'no_lang_code', 1, 'https://ror.org/03w1r6s74 Exponents (United States)'),
(8264, 'https://ror.org/03w3ng559', 'no_lang_code', 1, 'https://ror.org/03w3ng559 InPore Vape Technologies (United States)'),
(8265, 'https://ror.org/03w40n140', 'no_lang_code', 1, 'https://ror.org/03w40n140 Simbex (United States)'),
(8266, 'https://ror.org/03w418j08', 'en', 1, 'https://ror.org/03w418j08 Centre Hospitalier de Libreville Libreville Hospital'),
(8267, 'https://ror.org/03w5ry680', 'no_lang_code', 1, 'https://ror.org/03w5ry680 ASL Analytical (United States)'),
(8268, 'https://ror.org/03w5zay18', 'no_lang_code', 1, 'https://ror.org/03w5zay18 Vortant Technologies (United States)'),
(8269, 'https://ror.org/03w69rv70', 'en', 1, 'https://ror.org/03w69rv70 Eastern Iowa Community College'),
(8270, 'https://ror.org/03w6e0c57', 'pt', 1, 'https://ror.org/03w6e0c57 Estrutura de Missão para os Assuntos do Mar'),
(8271, 'https://ror.org/03w6g4z68', 'no_lang_code', 1, 'https://ror.org/03w6g4z68 Innovative Micro Technology (United States)'),
(8272, 'https://ror.org/03w6pea42', 'en', 1, 'https://ror.org/03w6pea42 National Dental Centre of Singapore'),
(8273, 'https://ror.org/03wbhj477', 'en', 1, 'https://ror.org/03wbhj477 Upsala College'),
(8274, 'https://ror.org/03wbjv906', 'en', 1, 'https://ror.org/03wbjv906 Southwest Tennessee Community College'),
(8275, 'https://ror.org/03wbrqz31', 'en', 1, 'https://ror.org/03wbrqz31 Saddleback College'),
(8276, 'https://ror.org/03we1zb10', 'en', 1, 'https://ror.org/03we1zb10 Warneford Hospital'),
(8277, 'https://ror.org/03wgxjb31', 'no_lang_code', 1, 'https://ror.org/03wgxjb31 United Therapeutics (United States)'),
(8278, 'https://ror.org/03wjr6873', 'en', 1, 'https://ror.org/03wjr6873 VA Central California Health Care System'),
(8279, 'https://ror.org/03wjvct24', 'en', 1, 'https://ror.org/03wjvct24 Fairbanks Native Association'),
(8280, 'https://ror.org/03wjz0p55', 'no_lang_code', 1, 'https://ror.org/03wjz0p55 LaunchPoint Technologies (United States)'),
(8281, 'https://ror.org/03wmmfz90', 'en', 1, 'https://ror.org/03wmmfz90 Tennessee Department of Health'),
(8282, 'https://ror.org/03wmzb046', 'no_lang_code', 1, 'https://ror.org/03wmzb046 Iridian Spectral Technologies (Canada)'),
(8283, 'https://ror.org/03wnrjx87', 'en', 1, 'https://ror.org/03wnrjx87 Royal Society Y Gymdeithas Frenhinol'),
(8284, 'https://ror.org/03wqxws86', 'no_lang_code', 1, 'https://ror.org/03wqxws86 Teine Keijinkai Hospital ęø“ä»ä¼šć‚°ćƒ«ćƒ¼ćƒ—'),
(8285, 'https://ror.org/03wr23878', 'no_lang_code', 1, 'https://ror.org/03wr23878 Greater Saskatoon Chamber of Commerce'),
(8286, 'https://ror.org/03wsa4e80', 'no_lang_code', 1, 'https://ror.org/03wsa4e80 BioSurfaces (United States)'),
(8287, 'https://ror.org/03wtr1427', 'no_lang_code', 1, 'https://ror.org/03wtr1427 NovaLipids (Canada)'),
(8288, 'https://ror.org/03ww9z667', 'en', 1, 'https://ror.org/03ww9z667 Institute for Disabilities Research and Training'),
(8289, 'https://ror.org/03wwbp431', 'en', 1, 'https://ror.org/03wwbp431 Victoria General Hospital'),
(8290, 'https://ror.org/03wxx8465', 'no_lang_code', 1, 'https://ror.org/03wxx8465 Mt. San Antonio College'),
(8291, 'https://ror.org/03wzeak38', 'en', 1, 'https://ror.org/03wzeak38 Institute of Nutrition of Central America and Panama Instituto de Nutrición de Centro América y PanamÔ'),
(8292, 'https://ror.org/03x1cjm87', 'en', 1, 'https://ror.org/03x1cjm87 Population Services International'),
(8293, 'https://ror.org/03x3mpp61', 'en', 1, 'https://ror.org/03x3mpp61 Indian Grassland and Fodder Research Institute'),
(8294, 'https://ror.org/03x510769', 'en', 1, 'https://ror.org/03x510769 Recovery Consultants of Atlanta'),
(8295, 'https://ror.org/03x9xd924', 'en', 1, 'https://ror.org/03x9xd924 Consortium GARR'),
(8296, 'https://ror.org/03xab3392', 'no_lang_code', 1, 'https://ror.org/03xab3392 PSIwebware (United States)'),
(8297, 'https://ror.org/03xcn0p72', 'en', 1, 'https://ror.org/03xcn0p72 Institute of Himalayan Bioresource Technology'),
(8298, 'https://ror.org/03xddgg98', 'en', 1, 'https://ror.org/03xddgg98 Instituto Mexicano del Seguro Social Mexican Social Security Institute'),
(8299, 'https://ror.org/03xey5e12', 'en', 1, 'https://ror.org/03xey5e12 Human Resources Research Organization'),
(8300, 'https://ror.org/03xf9c316', 'no_lang_code', 1, 'https://ror.org/03xf9c316 NanoSonic (United States)'),
(8301, 'https://ror.org/03xgnzp28', 'en', 1, 'https://ror.org/03xgnzp28 Colorado Center for Bone Research'),
(8302, 'https://ror.org/03xha5352', 'no_lang_code', 1, 'https://ror.org/03xha5352 Carl Zeiss (United Kingdom)'),
(8303, 'https://ror.org/03xm3wq50', 'no_lang_code', 1, 'https://ror.org/03xm3wq50 Doctors Company (United States)'),
(8304, 'https://ror.org/03xm51a29', 'no_lang_code', 1, 'https://ror.org/03xm51a29 Electrovaya (Canada)'),
(8305, 'https://ror.org/03xmkea05', 'en', 1, 'https://ror.org/03xmkea05 Applied Science and Technology Research Institute'),
(8306, 'https://ror.org/03xndpk42', 'no_lang_code', 1, 'https://ror.org/03xndpk42 NexTalk (United States)'),
(8307, 'https://ror.org/03xpd8a12', 'no_lang_code', 1, 'https://ror.org/03xpd8a12 MƩdiMabs (Canada)'),
(8308, 'https://ror.org/03xpwxy65', 'no_lang_code', 1, 'https://ror.org/03xpwxy65 DiaMedica (Canada)'),
(8309, 'https://ror.org/03xq12h43', 'en', 1, 'https://ror.org/03xq12h43 Institute of Noetic Sciences'),
(8310, 'https://ror.org/03xr1d353', 'no_lang_code', 1, 'https://ror.org/03xr1d353 BioLinx (United States)'),
(8311, 'https://ror.org/03xs15s33', 'es', 1, 'https://ror.org/03xs15s33 Comisión Honoraria de Lucha contra el cÔncer'),
(8312, 'https://ror.org/03xs9yg50', 'en', 1, 'https://ror.org/03xs9yg50 Rural Development Administration'),
(8313, 'https://ror.org/03xtz2n86', 'en', 1, 'https://ror.org/03xtz2n86 European Society for Medical Oncology'),
(8314, 'https://ror.org/03xwja043', 'no_lang_code', 1, 'https://ror.org/03xwja043 Pacific Design Technologies (United States)'),
(8315, 'https://ror.org/03xwv0k70', 'es', 1, 'https://ror.org/03xwv0k70 Institute of Ocular Microsurgery Instituto de MicrocirugĆ­a Ocular'),
(8316, 'https://ror.org/03xwzwa59', 'en', 1, 'https://ror.org/03xwzwa59 Behavior Therapy Associates'),
(8317, 'https://ror.org/03y122s09', 'en', 1, 'https://ror.org/03y122s09 Tropical Diseases Research Centre'),
(8318, 'https://ror.org/03y3f2317', 'no_lang_code', 1, 'https://ror.org/03y3f2317 Daniel H. Wagner Associates (United States)'),
(8319, 'https://ror.org/03y3pdm07', 'en', 1, 'https://ror.org/03y3pdm07 Veterans Biomedical Research Institute'),
(8320, 'https://ror.org/03y3xcd57', 'no_lang_code', 1, 'https://ror.org/03y3xcd57 Acadian Seaplants (Canada)'),
(8321, 'https://ror.org/03y756411', 'no_lang_code', 1, 'https://ror.org/03y756411 Pulse Biosciences (United States)'),
(8322, 'https://ror.org/03y76pe29', 'no_lang_code', 1, 'https://ror.org/03y76pe29 Albany Molecular Research (United States)'),
(8323, 'https://ror.org/03y7h1693', 'en', 1, 'https://ror.org/03y7h1693 Kinderwunsch Zentrum Linz Women''s General Hospital'),
(8324, 'https://ror.org/03y7ycy60', 'sv', 1, 'https://ror.org/03y7ycy60 Norra Ƅlvsborgs LƤnssjukhus Northern Ƅlvsborg county hospital'),
(8325, 'https://ror.org/03y98mn81', 'no_lang_code', 1, 'https://ror.org/03y98mn81 L.B. Foster Rail Technologies (Canada)'),
(8326, 'https://ror.org/03ya6pd97', 'no_lang_code', 1, 'https://ror.org/03ya6pd97 PDL BioPharma (United States)'),
(8327, 'https://ror.org/03yab7k30', 'no_lang_code', 1, 'https://ror.org/03yab7k30 Cell2B (Portugal)'),
(8328, 'https://ror.org/03yb78887', 'en', 1, 'https://ror.org/03yb78887 Specialised Hospital for Active Treatment of Oncology Дпециализираната Болница за Активно лечение по ŠžŠ½ŠŗŠ¾Š»Š¾Š³ŠøŃ'),
(8329, 'https://ror.org/03ybc3s94', 'en', 1, 'https://ror.org/03ybc3s94 Maria Mitchell Association'),
(8330, 'https://ror.org/03ycef978', 'en', 1, 'https://ror.org/03ycef978 Wordsley Hospital'),
(8331, 'https://ror.org/03ycpex79', 'en', 1, 'https://ror.org/03ycpex79 Beijing Red Cross Blood Center'),
(8332, 'https://ror.org/03ydekn03', 'no_lang_code', 1, 'https://ror.org/03ydekn03 Fukui CardioVascular Center åŒ»ē™‚ę³•äŗŗ ē¦äŗ•åæƒč‡“č”€åœ§ć‚»ćƒ³ć‚æćƒ¼ ē¦äŗ•å¾Ŗē’°å™Øē—…é™¢'),
(8333, 'https://ror.org/03yebgx31', 'no_lang_code', 1, 'https://ror.org/03yebgx31 AbleNet (United States)'),
(8334, 'https://ror.org/03yfgnq74', 'no_lang_code', 1, 'https://ror.org/03yfgnq74 Summit (United Kingdom)'),
(8335, 'https://ror.org/03yjg6e54', 'no_lang_code', 1, 'https://ror.org/03yjg6e54 Motion Control (United States)'),
(8336, 'https://ror.org/03ymtp346', 'no_lang_code', 1, 'https://ror.org/03ymtp346 Insight Genetics (United States)'),
(8337, 'https://ror.org/03yp8z857', 'en', 1, 'https://ror.org/03yp8z857 University of Missouri Health System'),
(8338, 'https://ror.org/03ypdje89', 'fr', 1, 'https://ror.org/03ypdje89 Centre de SantƩ et de Services Sociaux Cavendish'),
(8339, 'https://ror.org/03yr0pg70', 'en', 1, 'https://ror.org/03yr0pg70 Biomedical Research Institute'),
(8340, 'https://ror.org/03yr6s895', 'no_lang_code', 1, 'https://ror.org/03yr6s895 Genomas (United States)'),
(8341, 'https://ror.org/03yr8h660', 'no_lang_code', 1, 'https://ror.org/03yr8h660 E.ON (United Kingdom)'),
(8342, 'https://ror.org/03yshc124', 'en', 1, 'https://ror.org/03yshc124 Employee Benefit Research Institute'),
(8343, 'https://ror.org/03yt1ez60', 'no_lang_code', 1, 'https://ror.org/03yt1ez60 Cisco Systems (United States)'),
(8344, 'https://ror.org/03ytdtb31', 'no_lang_code', 1, 'https://ror.org/03ytdtb31 Sanofi (Germany)'),
(8345, 'https://ror.org/03yvcsz89', 'en', 1, 'https://ror.org/03yvcsz89 Arizona Department of Education'),
(8346, 'https://ror.org/03yx6z589', 'en', 1, 'https://ror.org/03yx6z589 American Society of International Law'),
(8347, 'https://ror.org/03yxyad36', 'no_lang_code', 1, 'https://ror.org/03yxyad36 ABS Consulting (United States)'),
(8348, 'https://ror.org/03yzb9c23', 'no_lang_code', 1, 'https://ror.org/03yzb9c23 ProThera Biologics (United States)'),
(8349, 'https://ror.org/03z0x0n35', 'no_lang_code', 1, 'https://ror.org/03z0x0n35 Pharmaceutical Formulations (United States)'),
(8350, 'https://ror.org/03z23rf32', 'pl', 1, 'https://ror.org/03z23rf32 Instytut Ekspertyz Sądowych'),
(8351, 'https://ror.org/03z50d035', 'no_lang_code', 1, 'https://ror.org/03z50d035 Actuated Medical (United States)'),
(8352, 'https://ror.org/03z5px561', 'en', 1, 'https://ror.org/03z5px561 Center for Occupational and Environmental Neurology'),
(8353, 'https://ror.org/03z5xhq25', 'no_lang_code', 1, 'https://ror.org/03z5xhq25 FHC (United States)'),
(8354, 'https://ror.org/03z6z3n38', 'en', 1, 'https://ror.org/03z6z3n38 VA Loma Linda Healthcare System'),
(8355, 'https://ror.org/03z9p8659', 'no_lang_code', 1, 'https://ror.org/03z9p8659 Accelopment (Switzerland)'),
(8356, 'https://ror.org/03zd4p313', 'en', 1, 'https://ror.org/03zd4p313 Norwich Community Hospital'),
(8357, 'https://ror.org/03zd7qx32', 'cs', 1, 'https://ror.org/03zd7qx32 Institute for the Care of Mother and Child Ústav pro PĆ©Äi o Matku a DĆ­tě'),
(8358, 'https://ror.org/03zg6y353', 'en', 1, 'https://ror.org/03zg6y353 American Enterprise Institute'),
(8359, 'https://ror.org/03zgwe847', 'en', 1, 'https://ror.org/03zgwe847 Kaiser Family Foundation'),
(8360, 'https://ror.org/03zhmy467', 'en', 1, 'https://ror.org/03zhmy467 San Gallicano Hospital'),
(8361, 'https://ror.org/03zhs1016', 'no_lang_code', 1, 'https://ror.org/03zhs1016 Primorigen Biosciences (United States)'),
(8362, 'https://ror.org/03zj0ps89', 'en', 1, 'https://ror.org/03zj0ps89 Vardhman Mahavir Medical College & Safdarjung Hospital ą¤µą¤°ą„ą¤§ą¤®ą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ और ą¤øą¤«ą¤¦ą¤°ą¤œą¤‚ą¤— ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(8363, 'https://ror.org/03zk93y09', 'no_lang_code', 1, 'https://ror.org/03zk93y09 Gaudenzia (United States)'),
(8364, 'https://ror.org/03zk9v026', 'en', 1, 'https://ror.org/03zk9v026 Sutter Medical Center'),
(8365, 'https://ror.org/03zkyqa82', 'no_lang_code', 1, 'https://ror.org/03zkyqa82 SeaStar Solutions (Canada)'),
(8366, 'https://ror.org/03zm9zy91', 'no_lang_code', 1, 'https://ror.org/03zm9zy91 MayaTech (United States)'),
(8367, 'https://ror.org/03zpeyw73', 'en', 1, 'https://ror.org/03zpeyw73 The Society for Post-Acute and Long-Term Care Medicine'),
(8368, 'https://ror.org/03zpmpz54', 'en', 1, 'https://ror.org/03zpmpz54 Twin Cities Spine Center'),
(8369, 'https://ror.org/03zqwq749', 'no_lang_code', 1, 'https://ror.org/03zqwq749 ID-FISH Technology (United States)'),
(8370, 'https://ror.org/03zry8t95', 'en', 1, 'https://ror.org/03zry8t95 National Business Group on Health'),
(8371, 'https://ror.org/03zsdhz84', 'no_lang_code', 1, 'https://ror.org/03zsdhz84 LabCorp (United States)'),
(8372, 'https://ror.org/03zsmr311', 'no_lang_code', 1, 'https://ror.org/03zsmr311 White Design (United Kingdom)'),
(8373, 'https://ror.org/03zsq2967', 'en', 1, 'https://ror.org/03zsq2967 Association of Asian Pacific Community Health Organizations'),
(8374, 'https://ror.org/03zsxwj64', 'en', 1, 'https://ror.org/03zsxwj64 Royal Society of Arts'),
(8375, 'https://ror.org/03ztsz823', 'sk', 1, 'https://ror.org/03ztsz823 OcnĆ” klinika'),
(8376, 'https://ror.org/03zxtdc90', 'es', 1, 'https://ror.org/03zxtdc90 Centro Nacional de Investigaciones CientĆ­ficas'),
(8377, 'https://ror.org/03zzyhb42', 'en', 1, 'https://ror.org/03zzyhb42 Laser and Skin Surgery Center of New York'),
(8378, 'https://ror.org/0400czs74', 'no_lang_code', 1, 'https://ror.org/0400czs74 Vivonics (United States)'),
(8379, 'https://ror.org/0401p8597', 'en', 1, 'https://ror.org/0401p8597 Withington Community Hospital'),
(8380, 'https://ror.org/0402h1193', 'no_lang_code', 1, 'https://ror.org/0402h1193 Hiden Analytical (United Kingdom)'),
(8381, 'https://ror.org/0402pb169', 'en', 1, 'https://ror.org/0402pb169 Institution of Civil Engineers'),
(8382, 'https://ror.org/0403qcr87', 'en', 1, 'https://ror.org/0403qcr87 Asian Institute of Technology ąøŖąø–ąø²ąøšąø±ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹ąø«ą¹ˆąø‡ą¹€ąø­ą¹€ąøŠąøµąø¢'),
(8383, 'https://ror.org/0404v4f94', 'it', 1, 'https://ror.org/0404v4f94 Cassa di Risparmio in Bologna'),
(8384, 'https://ror.org/0405c6r31', 'en', 1, 'https://ror.org/0405c6r31 College Board'),
(8385, 'https://ror.org/0405trq15', 'en', 1, 'https://ror.org/0405trq15 Institute of Environmental Science and Research'),
(8386, 'https://ror.org/04072nk43', 'en', 1, 'https://ror.org/04072nk43 Human Media'),
(8387, 'https://ror.org/0407e4e37', 'pl', 1, 'https://ror.org/0407e4e37 Instytut Zywnosci Zywienia National Food and Nutrition Institute'),
(8388, 'https://ror.org/0407ex783', 'en', 1, 'https://ror.org/0407ex783 National Organization for Drug Control and Research'),
(8389, 'https://ror.org/0408mbg90', 'en', 1, 'https://ror.org/0408mbg90 Electrochemical Society'),
(8390, 'https://ror.org/040dd7568', 'en', 1, 'https://ror.org/040dd7568 Arthritis and Rheumatology Clinics of Kansas'),
(8391, 'https://ror.org/040dky007', 'en', 1, 'https://ror.org/040dky007 Indian Institute of Chemical Technology ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą°æą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°•ą±†ą°®ą°æą°•ą°²ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ą“±ą“æą“±ą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“•ąµ†ą“®ą“æą“•ąµą“•ąµ½ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ, ą“¹ąµˆą“¦ąµą“°ą“¬ą“¾ą“¦ąµ'),
(8392, 'https://ror.org/040dxse86', 'en', 1, 'https://ror.org/040dxse86 National Institute of Rheumatic Diseases'),
(8393, 'https://ror.org/040e0d212', 'en', 1, 'https://ror.org/040e0d212 Tuscaloosa VA Medical Center'),
(8394, 'https://ror.org/040fscg47', 'en', 1, 'https://ror.org/040fscg47 Texas Orthopedic Hospital'),
(8395, 'https://ror.org/040fwvd70', 'en', 1, 'https://ror.org/040fwvd70 Little Big Horn College'),
(8396, 'https://ror.org/040g9jc92', 'en', 1, 'https://ror.org/040g9jc92 Serving Children and Adults in Need'),
(8397, 'https://ror.org/040hka494', 'fr', 1, 'https://ror.org/040hka494 Cegep de Matane, CƩgep de matane'),
(8398, 'https://ror.org/040ktyf25', 'no_lang_code', 1, 'https://ror.org/040ktyf25 JP Laboratories (United States)'),
(8399, 'https://ror.org/040qebh26', 'en', 1, 'https://ror.org/040qebh26 Kirklees Council'),
(8400, 'https://ror.org/040s79h05', 'no_lang_code', 1, 'https://ror.org/040s79h05 Cenergia (Denmark)'),
(8401, 'https://ror.org/040s7at76', 'en', 1, 'https://ror.org/040s7at76 Hackensack University Medical Center at Pascack Valley'),
(8402, 'https://ror.org/040ty4453', 'en', 1, 'https://ror.org/040ty4453 Mount St. Mary''s University'),
(8403, 'https://ror.org/040w4gz36', 'en', 1, 'https://ror.org/040w4gz36 Yukon University'),
(8404, 'https://ror.org/040wrkp27', 'en', 1, 'https://ror.org/040wrkp27 Institute of Biomedical Chemistry ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биомеГицинской химии имени Š’.Š. ŠžŃ€ŠµŃ…Š¾Š²ŠøŃ‡Š°'),
(8405, 'https://ror.org/040ztay26', 'en', 1, 'https://ror.org/040ztay26 Greenville Technical College'),
(8406, 'https://ror.org/0411byy62', 'nl', 1, 'https://ror.org/0411byy62 AZ Sint-Blasius'),
(8407, 'https://ror.org/0411v1p84', 'no_lang_code', 1, 'https://ror.org/0411v1p84 EstƩe Lauder (United States)'),
(8408, 'https://ror.org/0412gk840', 'en', 1, 'https://ror.org/0412gk840 Peterson & Smith Equine Hospital'),
(8409, 'https://ror.org/0413dyq61', 'no_lang_code', 1, 'https://ror.org/0413dyq61 Expression Therapeutics (United States)'),
(8410, 'https://ror.org/0413xn342', 'en', 1, 'https://ror.org/0413xn342 Houston Advanced Research Center'),
(8411, 'https://ror.org/04154pe94', 'en', 1, 'https://ror.org/04154pe94 Kanagawa Cardiovascular and Respiratory Center ē„žå„ˆå·ēœŒē«‹å¾Ŗē’°å™Øå‘¼åøå™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(8412, 'https://ror.org/0416mbc73', 'en', 1, 'https://ror.org/0416mbc73 College of Physicians of Philadelphia'),
(8413, 'https://ror.org/04172mv97', 'en', 1, 'https://ror.org/04172mv97 Association For Women in Mathematics'),
(8414, 'https://ror.org/041841277', 'en', 1, 'https://ror.org/041841277 Iolani School'),
(8415, 'https://ror.org/0418mwz44', 'no_lang_code', 1, 'https://ror.org/0418mwz44 Petro Geotech (Canada)'),
(8416, 'https://ror.org/0418y1915', 'no_lang_code', 1, 'https://ror.org/0418y1915 Photonic BioSystems (United States)'),
(8417, 'https://ror.org/0418yqg16', 'en', 1, 'https://ror.org/0418yqg16 National Institute of Pharmaceutical Education and Research ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤«ą¤¾ą¤°ą„ą¤®ą¤¾ą¤øą„ą¤Æą„‚ą¤Ÿą¤æą¤•ą¤² ą¤ą¤œą„ą¤•ą„‡ą¤¶ą¤Ø ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą°Øą±‡ą°·ą°Øą°²ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°«ą°¾ą°°ą±ą°®ą°øą±ą°Æą±‚ą°Ÿą°æą°•ą°²ą± ą°Žą°”ą±ą°Æą±ą°•ą±‡ą°·ą°Øą±'),
(8418, 'https://ror.org/0419gy550', 'no_lang_code', 1, 'https://ror.org/0419gy550 Minamiaoyama Eye Clinic å—é’å±±ć‚¢ć‚¤ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(8419, 'https://ror.org/041d00r55', 'en', 1, 'https://ror.org/041d00r55 Galveston College'),
(8420, 'https://ror.org/041d9vd15', 'en', 1, 'https://ror.org/041d9vd15 Her Majesty''s Government Communications Centre'),
(8421, 'https://ror.org/041ehbk97', 'no_lang_code', 1, 'https://ror.org/041ehbk97 Cambrian Innovation (United States)'),
(8422, 'https://ror.org/041g66k42', 'no_lang_code', 1, 'https://ror.org/041g66k42 ImmuneChem (Canada)'),
(8423, 'https://ror.org/041jk5w53', 'en', 1, 'https://ror.org/041jk5w53 Otto Wagner Hospital Otto Wagner Spital'),
(8424, 'https://ror.org/041jmaw90', 'en', 1, 'https://ror.org/041jmaw90 San Juan College'),
(8425, 'https://ror.org/041jswc25', 'en', 1, 'https://ror.org/041jswc25 Central Research Institute of Electric Power Industry é›»åŠ›äø­å¤®ē ”ē©¶ę‰€'),
(8426, 'https://ror.org/041m74w67', 'en', 1, 'https://ror.org/041m74w67 Wellborn Road Veterinary Medical Center'),
(8427, 'https://ror.org/041np7397', 'no_lang_code', 1, 'https://ror.org/041np7397 SolPowered Energy Corporation (Canada)'),
(8428, 'https://ror.org/041tfc254', 'no_lang_code', 1, 'https://ror.org/041tfc254 Comply (United States)'),
(8429, 'https://ror.org/041xnf417', 'en', 1, 'https://ror.org/041xnf417 Audubon Nature Institute'),
(8430, 'https://ror.org/041yet549', 'en', 1, 'https://ror.org/041yet549 Community Health Action of Staten Island'),
(8431, 'https://ror.org/0420yf673', 'en', 1, 'https://ror.org/0420yf673 Whatcom Community College'),
(8432, 'https://ror.org/0421dgn24', 'en', 1, 'https://ror.org/0421dgn24 Taipei Municipal Women and Children''s Hospital'),
(8433, 'https://ror.org/0421jm542', 'no_lang_code', 1, 'https://ror.org/0421jm542 MagMutual (United States)'),
(8434, 'https://ror.org/0423jvm15', 'en', 1, 'https://ror.org/0423jvm15 Upton Hospital'),
(8435, 'https://ror.org/04244wn07', 'en', 1, 'https://ror.org/04244wn07 Nutrition Foundation of India'),
(8436, 'https://ror.org/0424g0k78', 'it', 1, 'https://ror.org/0424g0k78 Istituto Giannina Gaslini'),
(8437, 'https://ror.org/04254kj61', 'en', 1, 'https://ror.org/04254kj61 Social Science Education Consortium'),
(8438, 'https://ror.org/04255rd16', 'en', 1, 'https://ror.org/04255rd16 Central Remedial Clinic'),
(8439, 'https://ror.org/0425pdj49', 'en', 1, 'https://ror.org/0425pdj49 National Institute of Cardiovascular Diseases'),
(8440, 'https://ror.org/0427p8a79', 'no_lang_code', 1, 'https://ror.org/0427p8a79 IMMCO Diagnostics (United States)'),
(8441, 'https://ror.org/0428qnk54', 'no_lang_code', 1, 'https://ror.org/0428qnk54 W. L. Gore & Associates (United States)'),
(8442, 'https://ror.org/042930e44', 'no_lang_code', 1, 'https://ror.org/042930e44 Centrose (United States)'),
(8443, 'https://ror.org/042c70y92', 'no_lang_code', 1, 'https://ror.org/042c70y92 Fujimoto Pharmaceutical Corporation (Japan)'),
(8444, 'https://ror.org/042dhbd43', 'en', 1, 'https://ror.org/042dhbd43 Southwestern College - California'),
(8445, 'https://ror.org/042eghf65', 'en', 1, 'https://ror.org/042eghf65 North Carolina Institute of Medicine'),
(8446, 'https://ror.org/042few790', 'en', 1, 'https://ror.org/042few790 DƩpartement de la protection de l''environnement du new jersey New Jersey Department of Environmental Protection'),
(8447, 'https://ror.org/042fn4q48', 'en', 1, 'https://ror.org/042fn4q48 Bismarck State College'),
(8448, 'https://ror.org/042hae950', 'no_lang_code', 1, 'https://ror.org/042hae950 Molecules for Health (United States)'),
(8449, 'https://ror.org/042j06y04', 'no_lang_code', 1, 'https://ror.org/042j06y04 Nikon (United Kingdom)'),
(8450, 'https://ror.org/042j5ge28', 'no_lang_code', 1, 'https://ror.org/042j5ge28 Global Vaccines (United States)'),
(8451, 'https://ror.org/042jh0r75', 'no_lang_code', 1, 'https://ror.org/042jh0r75 Imaging Systems Technology (United States)'),
(8452, 'https://ror.org/042jpy919', 'pt', 1, 'https://ror.org/042jpy919 Centro Hospitalar de Vila Nova de Gaia'),
(8453, 'https://ror.org/042q5aq71', 'no_lang_code', 1, 'https://ror.org/042q5aq71 BiologicsMD (United States)'),
(8454, 'https://ror.org/042qbkd11', 'fr', 1, 'https://ror.org/042qbkd11 ADERSE, Association pour le DƩveloppement de l''Enseignement et de la Recherche sur la ResponsabilitƩ Sociale de l''Entreprise Association for the Development of Education and Research on Corporate Social Responsibility'),
(8455, 'https://ror.org/042sjqp29', 'en', 1, 'https://ror.org/042sjqp29 Tanana Chiefs Conference'),
(8456, 'https://ror.org/042ssp221', 'en', 1, 'https://ror.org/042ssp221 Methodist Rehabilitation Center'),
(8457, 'https://ror.org/042tmwe79', 'no_lang_code', 1, 'https://ror.org/042tmwe79 Virtual Centre of Excellence In Mobile and Personal Communications'),
(8458, 'https://ror.org/042x6s220', 'no_lang_code', 1, 'https://ror.org/042x6s220 HTG Molecular Diagnostics (United States)'),
(8459, 'https://ror.org/0431cb905', 'pl', 1, 'https://ror.org/0431cb905 Instytut GruÅŗlicy i Chorób Płuc'),
(8460, 'https://ror.org/0431mgz06', 'en', 1, 'https://ror.org/0431mgz06 Southern California Institute for Research and Education'),
(8461, 'https://ror.org/0432hdr79', 'fr', 1, 'https://ror.org/0432hdr79 CƩgep Garneau'),
(8462, 'https://ror.org/0432wt807', 'en', 1, 'https://ror.org/0432wt807 San Dieguito Alliance'),
(8463, 'https://ror.org/0433qgv28', 'en', 1, 'https://ror.org/0433qgv28 Wisconsin Medical Society'),
(8464, 'https://ror.org/0434dpa13', 'no_lang_code', 1, 'https://ror.org/0434dpa13 Decision Systems (United States)'),
(8465, 'https://ror.org/04363qc87', 'no_lang_code', 1, 'https://ror.org/04363qc87 Auxagen (United States)'),
(8466, 'https://ror.org/0437r6x66', 'no_lang_code', 1, 'https://ror.org/0437r6x66 Tottori Prefectural Central Hospital é³„å–ēœŒē«‹äø­å¤®ē—…é™¢'),
(8467, 'https://ror.org/043953r63', 'en', 1, 'https://ror.org/043953r63 Auburn School District'),
(8468, 'https://ror.org/043a93608', 'no_lang_code', 1, 'https://ror.org/043a93608 Oceans Limited (Canada)'),
(8469, 'https://ror.org/043bhwh19', 'it', 1, 'https://ror.org/043bhwh19 Istituto Nazionale Biostrutture e Biosistemi'),
(8470, 'https://ror.org/043ccws83', 'en', 1, 'https://ror.org/043ccws83 American Society for Neurochemistry'),
(8471, 'https://ror.org/043cec594', 'no_lang_code', 1, 'https://ror.org/043cec594 AstraZeneca (United States)'),
(8472, 'https://ror.org/043cx5970', 'en', 1, 'https://ror.org/043cx5970 Glynn Hospitality Group'),
(8473, 'https://ror.org/043es1b40', 'en', 1, 'https://ror.org/043es1b40 Technological Assistance Institute for Intellectual Disability'),
(8474, 'https://ror.org/043f04882', 'en', 1, 'https://ror.org/043f04882 Institute of Mathematical Statistics'),
(8475, 'https://ror.org/043fzsj95', 'en', 1, 'https://ror.org/043fzsj95 Spring Hill College'),
(8476, 'https://ror.org/043h2ky09', 'no_lang_code', 1, 'https://ror.org/043h2ky09 Precigen (United States)'),
(8477, 'https://ror.org/043j17q40', 'en', 1, 'https://ror.org/043j17q40 San Antonio State Chest Hospital'),
(8478, 'https://ror.org/043j3s676', 'en', 1, 'https://ror.org/043j3s676 Fetal Medicine Foundation of America'),
(8479, 'https://ror.org/043j90n04', 'en', 1, 'https://ror.org/043j90n04 MRC Prion Unit'),
(8480, 'https://ror.org/043q2sq69', 'no_lang_code', 1, 'https://ror.org/043q2sq69 Isto Biologics (United States)'),
(8481, 'https://ror.org/043qn6y55', 'no_lang_code', 1, 'https://ror.org/043qn6y55 OPKO Health (Canada)'),
(8482, 'https://ror.org/043tf3791', 'en', 1, 'https://ror.org/043tf3791 Washington Educational Telecommunications Association'),
(8483, 'https://ror.org/043xmyg25', 'en', 1, 'https://ror.org/043xmyg25 Murray State College'),
(8484, 'https://ror.org/043y3sk06', 'en', 1, 'https://ror.org/043y3sk06 Ohio Heart & Vascular Center'),
(8485, 'https://ror.org/043z1y058', 'no_lang_code', 1, 'https://ror.org/043z1y058 atesio (Germany)'),
(8486, 'https://ror.org/04410kq54', 'en', 1, 'https://ror.org/04410kq54 Society for Neuroscience'),
(8487, 'https://ror.org/0442wxc77', 'no_lang_code', 1, 'https://ror.org/0442wxc77 STMicroelectronics (United Kingdom)'),
(8488, 'https://ror.org/0445at860', 'it', 1, 'https://ror.org/0445at860 Istituto Zooprofilattico Sperimentale dell''Umbria e delle Marche'),
(8489, 'https://ror.org/0445tpa77', 'no_lang_code', 1, 'https://ror.org/0445tpa77 Institute of Bioengineering Technologies (United States)'),
(8490, 'https://ror.org/0445x0472', 'en', 1, 'https://ror.org/0445x0472 Centre de recherches pour le dƩveloppement international International Development Research Centre'),
(8491, 'https://ror.org/04461gd92', 'en', 1, 'https://ror.org/04461gd92 Salmaniya Medical Complex مجمع Ų§Ł„Ų³Ł„Ł…Ų§Ł†ŁŠŲ© Ų§Ł„Ų·ŲØŁŠ'),
(8492, 'https://ror.org/04462nt90', 'no_lang_code', 1, 'https://ror.org/04462nt90 Ross Laboratories (United States)'),
(8493, 'https://ror.org/0448gbh81', 'en', 1, 'https://ror.org/0448gbh81 International Epidemiology Institute'),
(8494, 'https://ror.org/0449h4696', 'en', 1, 'https://ror.org/0449h4696 Graduate School Neurosciences Amsterdam Rotterdam'),
(8495, 'https://ror.org/0449k9183', 'tr', 1, 'https://ror.org/0449k9183 Turgut Ozal Medical Center Turgut Ɩzal Tıp Merkezi'),
(8496, 'https://ror.org/044bp3769', 'no_lang_code', 1, 'https://ror.org/044bp3769 United Biomedical (United States)'),
(8497, 'https://ror.org/044bsy795', 'en', 1, 'https://ror.org/044bsy795 Insall Scott Kelly Institute'),
(8498, 'https://ror.org/044cqax96', 'no_lang_code', 1, 'https://ror.org/044cqax96 Helicos Biosciences (United States)'),
(8499, 'https://ror.org/044g3zk14', 'en', 1, 'https://ror.org/044g3zk14 Max Planck Institute for Plant Breeding Research Max-Planck-Institut für Pflanzenzüchtungsforschung'),
(8500, 'https://ror.org/044gv5910', 'en', 1, 'https://ror.org/044gv5910 Institute of Statistical Science, Academia Sinica 中央研究院 ēµ±čØˆē§‘å­øē ”ē©¶ę‰€'),
(8501, 'https://ror.org/044jp1563', 'no_lang_code', 1, 'https://ror.org/044jp1563 Analysis Group (United States)'),
(8502, 'https://ror.org/044k1pg15', 'no_lang_code', 1, 'https://ror.org/044k1pg15 Cynosure (United States)'),
(8503, 'https://ror.org/044m46d61', 'en', 1, 'https://ror.org/044m46d61 Technological Educational Institute of Athens Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Αθήνας'),
(8504, 'https://ror.org/044n33410', 'fr', 1, 'https://ror.org/044n33410 Association FranƧaise de Normalisation'),
(8505, 'https://ror.org/044p9gt09', 'no_lang_code', 1, 'https://ror.org/044p9gt09 MEG-3 (Canada)'),
(8506, 'https://ror.org/044pzyk69', 'en', 1, 'https://ror.org/044pzyk69 North American Vascular Biology Organization'),
(8507, 'https://ror.org/044t9d979', 'en', 1, 'https://ror.org/044t9d979 Substance Abuse Foundation'),
(8508, 'https://ror.org/044tz3m61', 'en', 1, 'https://ror.org/044tz3m61 Austin Community College'),
(8509, 'https://ror.org/044xrc068', 'en', 1, 'https://ror.org/044xrc068 Toronto Centre for Phenogenomics'),
(8510, 'https://ror.org/044zkrt47', 'en', 1, 'https://ror.org/044zkrt47 National Institute of Health of Thailand ąøŖąø–ąø²ąøšąø±ąø™ąø§ąø“ąøˆąø±ąø¢ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹ŒąøŖąø²ąø˜ąø²ąø£ąø“ąøŖąøøąø‚'),
(8511, 'https://ror.org/044zr5266', 'en', 1, 'https://ror.org/044zr5266 Peggy Notebaert Nature Museum'),
(8512, 'https://ror.org/04507cg26', 'en', 1, 'https://ror.org/04507cg26 Svenska beredning fƶr medicinsk utvƤrdering Health Care Swedish Council on Technology Assessment in Health Care');
INSERT INTO `rors` VALUES
(8513, 'https://ror.org/04523n645', 'no_lang_code', 1, 'https://ror.org/04523n645 REALITY Publishing (United States)'),
(8514, 'https://ror.org/0452q7b74', 'no_lang_code', 1, 'https://ror.org/0452q7b74 Tungs'' Taichung MetroHarbor Hospital ē«„ē¶œåˆé†«é™¢'),
(8515, 'https://ror.org/0453c4485', 'fr', 1, 'https://ror.org/0453c4485 Institut Cardiovasculaire Paris Sud'),
(8516, 'https://ror.org/0456p3190', 'no_lang_code', 1, 'https://ror.org/0456p3190 VWR International (United States)'),
(8517, 'https://ror.org/0457d9w72', 'en', 1, 'https://ror.org/0457d9w72 National Cancer Center of Georgia'),
(8518, 'https://ror.org/0458r0456', 'no_lang_code', 1, 'https://ror.org/0458r0456 RxSight (United States)'),
(8519, 'https://ror.org/045bbxm74', 'en', 1, 'https://ror.org/045bbxm74 Tamil Nadu Government Dental College and Hospital'),
(8520, 'https://ror.org/045ckq244', 'no_lang_code', 1, 'https://ror.org/045ckq244 Transcendent Endeavors (United States)'),
(8521, 'https://ror.org/045dv2h94', 'de', 1, 'https://ror.org/045dv2h94 Klinikum Ludwigsburg'),
(8522, 'https://ror.org/045ej2q36', 'en', 1, 'https://ror.org/045ej2q36 Capitol Technology University'),
(8523, 'https://ror.org/045hp7z16', 'it', 1, 'https://ror.org/045hp7z16 SocietĆ  per l’Assistenza al Malato Oncologico Terminale'),
(8524, 'https://ror.org/045jb6x14', 'en', 1, 'https://ror.org/045jb6x14 Sundaram Medical Foundation'),
(8525, 'https://ror.org/045kj3z89', 'no_lang_code', 1, 'https://ror.org/045kj3z89 Terragon Environmental Technologies (Canada)'),
(8526, 'https://ror.org/045mbap50', 'no_lang_code', 1, 'https://ror.org/045mbap50 Twin Star Medical (United States)'),
(8527, 'https://ror.org/045nvsg67', 'no_lang_code', 1, 'https://ror.org/045nvsg67 Athena Group (United States)'),
(8528, 'https://ror.org/045p13n28', 'no_lang_code', 1, 'https://ror.org/045p13n28 Bossa Nova Technologies (United States)'),
(8529, 'https://ror.org/045r85r62', 'no_lang_code', 1, 'https://ror.org/045r85r62 Symbiotech (United States)'),
(8530, 'https://ror.org/045rtab03', 'no_lang_code', 1, 'https://ror.org/045rtab03 Amorfix (Canada)'),
(8531, 'https://ror.org/045v29b75', 'no_lang_code', 1, 'https://ror.org/045v29b75 Bioo Scientific (United States)'),
(8532, 'https://ror.org/045vz2p90', 'no_lang_code', 1, 'https://ror.org/045vz2p90 Intrafinity (Canada)'),
(8533, 'https://ror.org/045wcpc71', 'en', 1, 'https://ror.org/045wcpc71 Leicestershire Partnership NHS Trust'),
(8534, 'https://ror.org/045xtrm66', 'en', 1, 'https://ror.org/045xtrm66 American Osteopathic Association'),
(8535, 'https://ror.org/045zy3z54', 'en', 1, 'https://ror.org/045zy3z54 Lambton College'),
(8536, 'https://ror.org/04601vy80', 'en', 1, 'https://ror.org/04601vy80 Al-Ameen College of Pharmacy'),
(8537, 'https://ror.org/0460vf117', 'en', 1, 'https://ror.org/0460vf117 Neurosciences Institute'),
(8538, 'https://ror.org/0462bbw13', 'no_lang_code', 1, 'https://ror.org/0462bbw13 CorSolutions (United States)'),
(8539, 'https://ror.org/04639mh45', 'no_lang_code', 1, 'https://ror.org/04639mh45 ChemMotif (United States)'),
(8540, 'https://ror.org/0464edn46', 'en', 1, 'https://ror.org/0464edn46 King''s College - Pennsylvania'),
(8541, 'https://ror.org/0464y8713', 'no_lang_code', 1, 'https://ror.org/0464y8713 Trinity Investments (Japan)'),
(8542, 'https://ror.org/04657zp85', 'no_lang_code', 1, 'https://ror.org/04657zp85 Optivia Biotechnology (United States)'),
(8543, 'https://ror.org/0466ddw04', 'no_lang_code', 1, 'https://ror.org/0466ddw04 PRP Architects (United Kingdom)'),
(8544, 'https://ror.org/0466fwq98', 'en', 1, 'https://ror.org/0466fwq98 St. Mary Medical Center'),
(8545, 'https://ror.org/04679fh62', 'en', 1, 'https://ror.org/04679fh62 Lake Erie College of Osteopathic Medicine'),
(8546, 'https://ror.org/04681ap34', 'en', 1, 'https://ror.org/04681ap34 Indiana Hand to Shoulder Center'),
(8547, 'https://ror.org/0468k6j36', 'en', 1, 'https://ror.org/0468k6j36 Institute of Psychiatry and Neurology'),
(8548, 'https://ror.org/0468mqv58', 'no_lang_code', 1, 'https://ror.org/0468mqv58 URS Corporation (United Kingdom)'),
(8549, 'https://ror.org/046bfkz44', 'it', 1, 'https://ror.org/046bfkz44 Cefriel'),
(8550, 'https://ror.org/046dm7t24', 'en', 1, 'https://ror.org/046dm7t24 Cumberland Infirmary'),
(8551, 'https://ror.org/046fq2b74', 'en', 1, 'https://ror.org/046fq2b74 Healthcare Financial Management Association'),
(8552, 'https://ror.org/046jf3z18', 'no_lang_code', 1, 'https://ror.org/046jf3z18 Micro Magnetics (United States)'),
(8553, 'https://ror.org/046km1t51', 'no_lang_code', 1, 'https://ror.org/046km1t51 SABMiller (United Kingdom)'),
(8554, 'https://ror.org/046q1p146', 'en', 1, 'https://ror.org/046q1p146 La Clinica del Pueblo'),
(8555, 'https://ror.org/046v9f126', 'no_lang_code', 1, 'https://ror.org/046v9f126 Material Sciences (United States)'),
(8556, 'https://ror.org/046wvwe48', 'en', 1, 'https://ror.org/046wvwe48 Eden Medical'),
(8557, 'https://ror.org/046yyq968', 'en', 1, 'https://ror.org/046yyq968 Defence Research Laboratory ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(8558, 'https://ror.org/046zy3905', 'en', 1, 'https://ror.org/046zy3905 Tzaneion General Hospital'),
(8559, 'https://ror.org/047398454', 'no_lang_code', 1, 'https://ror.org/047398454 MWH (United Kingdom)'),
(8560, 'https://ror.org/04742vj55', 'en', 1, 'https://ror.org/04742vj55 Cardiff Royal Infirmary'),
(8561, 'https://ror.org/0474gs458', 'en', 1, 'https://ror.org/0474gs458 RCSI & UCD Malaysia Campus'),
(8562, 'https://ror.org/04770s302', 'en', 1, 'https://ror.org/04770s302 Centro Internacional de Restauración Neurológica International Center of Neurologic Restoration'),
(8563, 'https://ror.org/0477qng16', 'no_lang_code', 1, 'https://ror.org/0477qng16 Fox Learning Systems (United States)'),
(8564, 'https://ror.org/04780k350', 'no_lang_code', 1, 'https://ror.org/04780k350 PharmaIN (United States)'),
(8565, 'https://ror.org/047a9ch09', 'en', 1, 'https://ror.org/047a9ch09 Guangxi Center for Disease Prevention and Control å¹æč„æå£®ę—č‡Ŗę²»åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(8566, 'https://ror.org/047ae9605', 'en', 1, 'https://ror.org/047ae9605 Taleghani General Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų·Ų§Ł„Ł‚Ų§Ł†ŪŒ تهران'),
(8567, 'https://ror.org/047c3xe48', 'no_lang_code', 1, 'https://ror.org/047c3xe48 Advanced Imaging Research (United States)'),
(8568, 'https://ror.org/047c53f83', 'en', 1, 'https://ror.org/047c53f83 Wuhan Children''s Hospital ę­¦ę±‰åø‚å„æē«„åŒ»é™¢'),
(8569, 'https://ror.org/047c5ks69', 'en', 1, 'https://ror.org/047c5ks69 Sunny Hill Health Centre for Children'),
(8570, 'https://ror.org/047cmjs63', 'en', 1, 'https://ror.org/047cmjs63 Campbellsville University UniversitƩ de campbellsville'),
(8571, 'https://ror.org/047cmqg95', 'en', 1, 'https://ror.org/047cmqg95 Virginia Department of Agriculture and Consumer Services'),
(8572, 'https://ror.org/047dcfg79', 'no_lang_code', 1, 'https://ror.org/047dcfg79 Integrated Environmental Solutions (United Kingdom)'),
(8573, 'https://ror.org/047jxj944', 'no_lang_code', 1, 'https://ror.org/047jxj944 Vaccinex (United States)'),
(8574, 'https://ror.org/047khcd84', 'no_lang_code', 1, 'https://ror.org/047khcd84 Jacobs (United Kingdom)'),
(8575, 'https://ror.org/047m7vj12', 'no_lang_code', 1, 'https://ror.org/047m7vj12 InSituTec (United States)'),
(8576, 'https://ror.org/047mvza98', 'en', 1, 'https://ror.org/047mvza98 Bangladesh Institute of Research and Rehabilitation for Diabetes Endocrine and Metabolic Disorders বারঔেম'),
(8577, 'https://ror.org/047mw6m75', 'no_lang_code', 1, 'https://ror.org/047mw6m75 Aerosol Dynamics (United States)'),
(8578, 'https://ror.org/047n4ns40', 'en', 1, 'https://ror.org/047n4ns40 Taipei Municipal YangMing Hospital å°åŒ—åø‚ē«‹é˜³ę˜ŽåŒ»é™¢'),
(8579, 'https://ror.org/047na1w09', 'no_lang_code', 1, 'https://ror.org/047na1w09 Patheon (Canada)'),
(8580, 'https://ror.org/047pts877', 'no_lang_code', 1, 'https://ror.org/047pts877 Cellecta (United States)'),
(8581, 'https://ror.org/047qvvw08', 'en', 1, 'https://ror.org/047qvvw08 Central Forensic Science Laboratory'),
(8582, 'https://ror.org/047r3w252', 'no_lang_code', 1, 'https://ror.org/047r3w252 Nano-C (United States)'),
(8583, 'https://ror.org/047s1ww61', 'en', 1, 'https://ror.org/047s1ww61 Ise Red Cross Hospital ę—„ęœ¬čµ¤åå­—ē¤¾ ä¼Šå‹¢čµ¤åå­—ē—…é™¢'),
(8584, 'https://ror.org/047s7ag77', 'pt', 1, 'https://ror.org/047s7ag77 Faculdade de Medicina do ABC'),
(8585, 'https://ror.org/047tyac06', 'no_lang_code', 1, 'https://ror.org/047tyac06 Wilson Energy (United Kingdom)'),
(8586, 'https://ror.org/047wwd089', 'en', 1, 'https://ror.org/047wwd089 Fairmont State University UniversitĆ© d''Ɖtat de fairmont'),
(8587, 'https://ror.org/04804s519', 'no_lang_code', 1, 'https://ror.org/04804s519 MIRA (United Kingdom)'),
(8588, 'https://ror.org/0480rm766', 'no_lang_code', 1, 'https://ror.org/0480rm766 NeurOp (United States)'),
(8589, 'https://ror.org/0486jtg80', 'no_lang_code', 1, 'https://ror.org/0486jtg80 Chimera Technologies (United States)'),
(8590, 'https://ror.org/0488cct49', 'en', 1, 'https://ror.org/0488cct49 Orlando Health'),
(8591, 'https://ror.org/0488dyp14', 'fr', 1, 'https://ror.org/0488dyp14 Centre Hospitalier de Cannes'),
(8592, 'https://ror.org/0488w7k92', 'no_lang_code', 1, 'https://ror.org/0488w7k92 Targazyme (United States)'),
(8593, 'https://ror.org/0489f0s93', 'en', 1, 'https://ror.org/0489f0s93 Institute of Protein Research Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ белка Российской акаГемии наук'),
(8594, 'https://ror.org/048bsds49', 'no_lang_code', 1, 'https://ror.org/048bsds49 Osel (United States)'),
(8595, 'https://ror.org/048dt4c25', 'en', 1, 'https://ror.org/048dt4c25 Taipei Municipal Jen-Ai Hospital'),
(8596, 'https://ror.org/048g78j50', 'fr', 1, 'https://ror.org/048g78j50 Groupe Hospitalier Intercommunal Le Raincy Montfermeil'),
(8597, 'https://ror.org/048n5xe95', 'fr', 1, 'https://ror.org/048n5xe95 Centre d''Enseignement et de Recherches des Industries Alimentaires et Chimiques'),
(8598, 'https://ror.org/048p0t707', 'no_lang_code', 1, 'https://ror.org/048p0t707 GenProMarkers (United States)'),
(8599, 'https://ror.org/048pv7s22', 'nl', 1, 'https://ror.org/048pv7s22 AZ Maria Middelares'),
(8600, 'https://ror.org/048pwcs59', 'en', 1, 'https://ror.org/048pwcs59 Regional Plant Resource Centre'),
(8601, 'https://ror.org/048rwjb21', 'en', 1, 'https://ror.org/048rwjb21 Eindhoven Cancer Registry'),
(8602, 'https://ror.org/048sjbt91', 'en', 1, 'https://ror.org/048sjbt91 John Hunter Children''s Hospital'),
(8603, 'https://ror.org/048vjr484', 'en', 1, 'https://ror.org/048vjr484 Florence Nightingale Museum'),
(8604, 'https://ror.org/048w01909', 'no_lang_code', 1, 'https://ror.org/048w01909 Cellex (United States)'),
(8605, 'https://ror.org/048w9r832', 'en', 1, 'https://ror.org/048w9r832 Albany Law School FacultƩ de droit d''albany'),
(8606, 'https://ror.org/048wd7x80', 'no_lang_code', 1, 'https://ror.org/048wd7x80 Waters (United Kingdom)'),
(8607, 'https://ror.org/048x1b229', 'no_lang_code', 1, 'https://ror.org/048x1b229 Exelus (United States)'),
(8608, 'https://ror.org/048xh4t74', 'no_lang_code', 1, 'https://ror.org/048xh4t74 Thermofin (Canada)'),
(8609, 'https://ror.org/0490dah44', 'no_lang_code', 1, 'https://ror.org/0490dah44 Epigenomics (Germany)'),
(8610, 'https://ror.org/0491c4v30', 'en', 1, 'https://ror.org/0491c4v30 Wildlife Trusts'),
(8611, 'https://ror.org/0491h6661', 'no_lang_code', 1, 'https://ror.org/0491h6661 Celerion (Canada)'),
(8612, 'https://ror.org/0492sec70', 'en', 1, 'https://ror.org/0492sec70 Western Interstate Commission for Higher Education'),
(8613, 'https://ror.org/0492sjc74', 'en', 1, 'https://ror.org/0492sjc74 Max Planck Institute for the History of Science Max-Planck-Institut für Wissenschaftsgeschichte'),
(8614, 'https://ror.org/0492zc296', 'en', 1, 'https://ror.org/0492zc296 Richmond Behavioral Health Authority'),
(8615, 'https://ror.org/0494qe247', 'en', 1, 'https://ror.org/0494qe247 Canadian Breast Cancer Network'),
(8616, 'https://ror.org/0494xx745', 'no_lang_code', 1, 'https://ror.org/0494xx745 wTe Corporation (United States)'),
(8617, 'https://ror.org/0497h1m47', 'no_lang_code', 1, 'https://ror.org/0497h1m47 Key Tech (United States)'),
(8618, 'https://ror.org/0499qzy56', 'no_lang_code', 1, 'https://ror.org/0499qzy56 Extrel (United States)'),
(8619, 'https://ror.org/0499w7e46', 'en', 1, 'https://ror.org/0499w7e46 Kelsey-Seybold Clinic'),
(8620, 'https://ror.org/049aafr84', 'no_lang_code', 1, 'https://ror.org/049aafr84 Azevan Pharmaceuticals (United States)'),
(8621, 'https://ror.org/049ayz521', 'en', 1, 'https://ror.org/049ayz521 South African Brain Research Institute'),
(8622, 'https://ror.org/049b5zq94', 'no_lang_code', 1, 'https://ror.org/049b5zq94 Teledyne Technologies (France)'),
(8623, 'https://ror.org/049b6am17', 'no_lang_code', 1, 'https://ror.org/049b6am17 Essex and Suffolk Water (United Kingdom)'),
(8624, 'https://ror.org/049bgw803', 'en', 1, 'https://ror.org/049bgw803 Tuality Community Hospital'),
(8625, 'https://ror.org/049bv9m09', 'no_lang_code', 1, 'https://ror.org/049bv9m09 Molecular Kinetics (United States)'),
(8626, 'https://ror.org/049c4fz76', 'no_lang_code', 1, 'https://ror.org/049c4fz76 Spectrasonics (United States)'),
(8627, 'https://ror.org/049gbsq65', 'no_lang_code', 1, 'https://ror.org/049gbsq65 AbsInt (Germany)'),
(8628, 'https://ror.org/049hfye85', 'no_lang_code', 1, 'https://ror.org/049hfye85 Acoustic MedSystems (United States)'),
(8629, 'https://ror.org/049kbch38', 'en', 1, 'https://ror.org/049kbch38 Cartlann NĆ”isiĆŗnta na hƉireann National Archives'),
(8630, 'https://ror.org/049knzm77', 'en', 1, 'https://ror.org/049knzm77 Sturdy Memorial Hospital'),
(8631, 'https://ror.org/049mgby18', 'en', 1, 'https://ror.org/049mgby18 National Institute of Child Health'),
(8632, 'https://ror.org/049r42y35', 'no_lang_code', 1, 'https://ror.org/049r42y35 Skanska (United Kingdom)'),
(8633, 'https://ror.org/049t33881', 'no_lang_code', 1, 'https://ror.org/049t33881 Science Education Solutions (United States)'),
(8634, 'https://ror.org/049tcsg76', 'en', 1, 'https://ror.org/049tcsg76 Institute for the Future'),
(8635, 'https://ror.org/049tfmr46', 'no_lang_code', 1, 'https://ror.org/049tfmr46 Kelda Group (United Kingdom)'),
(8636, 'https://ror.org/049tzhz49', 'en', 1, 'https://ror.org/049tzhz49 Ackerman Academy of Dermatopathology'),
(8637, 'https://ror.org/049xm8r65', 'en', 1, 'https://ror.org/049xm8r65 Royal National Institute of Blind'),
(8638, 'https://ror.org/049yfvx60', 'no_lang_code', 1, 'https://ror.org/049yfvx60 Yokosuka Kyosai Hospital ęØŖé ˆč³€å…±ęøˆē—…é™¢'),
(8639, 'https://ror.org/049yzyv96', 'en', 1, 'https://ror.org/049yzyv96 VA Central Iowa Health Care System'),
(8640, 'https://ror.org/049zatd98', 'no_lang_code', 1, 'https://ror.org/049zatd98 Oxford Instruments (United Kingdom)'),
(8641, 'https://ror.org/049zx1n75', 'en', 1, 'https://ror.org/049zx1n75 Koo Foundation Sun Yat-Sen Cancer Center'),
(8642, 'https://ror.org/04a0qsn58', 'en', 1, 'https://ror.org/04a0qsn58 St. Margaret Memorial Hospital'),
(8643, 'https://ror.org/04a0tbx19', 'no_lang_code', 1, 'https://ror.org/04a0tbx19 Environmental Design Solutions Limited (United Kingdom)'),
(8644, 'https://ror.org/04a2ebf76', 'no_lang_code', 1, 'https://ror.org/04a2ebf76 FM Technologies (United States)'),
(8645, 'https://ror.org/04a2yjk98', 'no_lang_code', 1, 'https://ror.org/04a2yjk98 Lundbeck (United States)'),
(8646, 'https://ror.org/04a390q32', 'en', 1, 'https://ror.org/04a390q32 TMJ Association'),
(8647, 'https://ror.org/04a5eyp42', 'en', 1, 'https://ror.org/04a5eyp42 Toyama Rosai Hospital åÆŒå±±åŠ“ē½ē—…é™¢'),
(8648, 'https://ror.org/04a5sdn89', 'no_lang_code', 1, 'https://ror.org/04a5sdn89 Magellan BioScience (United States)'),
(8649, 'https://ror.org/04a6hmw67', 'no_lang_code', 1, 'https://ror.org/04a6hmw67 Neostem (United States)'),
(8650, 'https://ror.org/04a6tv155', 'en', 1, 'https://ror.org/04a6tv155 Bethany College - West Virginia'),
(8651, 'https://ror.org/04a7hz119', 'en', 1, 'https://ror.org/04a7hz119 Orange County Bar Foundation'),
(8652, 'https://ror.org/04a839673', 'no_lang_code', 1, 'https://ror.org/04a839673 Orkla (Norway)'),
(8653, 'https://ror.org/04a8rag37', 'en', 1, 'https://ror.org/04a8rag37 Drug Safety Research Unit'),
(8654, 'https://ror.org/04ag73z67', 'no_lang_code', 1, 'https://ror.org/04ag73z67 Waterloo CFD Engineering Consulting'),
(8655, 'https://ror.org/04agfm627', 'en', 1, 'https://ror.org/04agfm627 EngenderHealth'),
(8656, 'https://ror.org/04ahd9r49', 'no_lang_code', 1, 'https://ror.org/04ahd9r49 Celator Pharmaceuticals (Canada)'),
(8657, 'https://ror.org/04akq1s78', 'no_lang_code', 1, 'https://ror.org/04akq1s78 Mound Laser & Photonics Center (United States)'),
(8658, 'https://ror.org/04akqfa40', 'no_lang_code', 1, 'https://ror.org/04akqfa40 Chung Hsiao Municipal Hospital'),
(8659, 'https://ror.org/04amahm38', 'no_lang_code', 1, 'https://ror.org/04amahm38 ENVIRON (United States)'),
(8660, 'https://ror.org/04anb9w92', 'en', 1, 'https://ror.org/04anb9w92 Kronos Longevity Research Institute'),
(8661, 'https://ror.org/04anx0s86', 'no_lang_code', 1, 'https://ror.org/04anx0s86 Originus (United States)'),
(8662, 'https://ror.org/04aq4w176', 'no_lang_code', 1, 'https://ror.org/04aq4w176 TheraSource (United States)'),
(8663, 'https://ror.org/04aty2659', 'en', 1, 'https://ror.org/04aty2659 Moscow State University of Fine Chemical Technologies Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ тонких химических технологий имени М. Š’. Ломоносова'),
(8664, 'https://ror.org/04aw6vq52', 'en', 1, 'https://ror.org/04aw6vq52 Texas Back Institute'),
(8665, 'https://ror.org/04awqpv94', 'no_lang_code', 1, 'https://ror.org/04awqpv94 Talking Lights (United States)'),
(8666, 'https://ror.org/04axb7e79', 'no_lang_code', 1, 'https://ror.org/04axb7e79 Siemens (United States)'),
(8667, 'https://ror.org/04b05q786', 'no_lang_code', 1, 'https://ror.org/04b05q786 KineMed (United States)'),
(8668, 'https://ror.org/04b1gft39', 'en', 1, 'https://ror.org/04b1gft39 CollĆØge harper Harper College'),
(8669, 'https://ror.org/04b1sh213', 'en', 1, 'https://ror.org/04b1sh213 National Institute for Viral Disease Control and Prevention'),
(8670, 'https://ror.org/04b33je61', 'no_lang_code', 1, 'https://ror.org/04b33je61 InterScience (United States)'),
(8671, 'https://ror.org/04b4sq284', 'no_lang_code', 1, 'https://ror.org/04b4sq284 Collaborative Drug Discovery (United States)'),
(8672, 'https://ror.org/04b5pvj95', 'no_lang_code', 1, 'https://ror.org/04b5pvj95 ISCA Technologies (United States)'),
(8673, 'https://ror.org/04b5yth62', 'en', 1, 'https://ror.org/04b5yth62 Tokyo Rinkai Hospital ę±äŗ¬č‡Øęµ·ē—…é™¢'),
(8674, 'https://ror.org/04b7web15', 'en', 1, 'https://ror.org/04b7web15 Wm. Jennings Bryan Dorn VA Medical Center'),
(8675, 'https://ror.org/04b94yv02', 'en', 1, 'https://ror.org/04b94yv02 Fortune Society'),
(8676, 'https://ror.org/04bagh120', 'en', 1, 'https://ror.org/04bagh120 Saint George Hospital'),
(8677, 'https://ror.org/04bb8wd84', 'fr', 1, 'https://ror.org/04bb8wd84 Institut OcƩanographique'),
(8678, 'https://ror.org/04bbk5g16', 'en', 1, 'https://ror.org/04bbk5g16 International Centre for Infectious Diseases'),
(8679, 'https://ror.org/04bcw2e70', 'no_lang_code', 1, 'https://ror.org/04bcw2e70 Ameriprise Financial (United States)'),
(8680, 'https://ror.org/04bf30x64', 'en', 1, 'https://ror.org/04bf30x64 Allegheny County'),
(8681, 'https://ror.org/04bmzpd39', 'en', 1, 'https://ror.org/04bmzpd39 Pakistan Institute of Nuclear Science and Technology'),
(8682, 'https://ror.org/04bqdez48', 'no_lang_code', 1, 'https://ror.org/04bqdez48 Structured Materials Industries (United States)'),
(8683, 'https://ror.org/04bqh5m06', 'en', 1, 'https://ror.org/04bqh5m06 National Geographic Society'),
(8684, 'https://ror.org/04brs8j34', 'no_lang_code', 1, 'https://ror.org/04brs8j34 Bionetics (United States)'),
(8685, 'https://ror.org/04bw2xb41', 'no_lang_code', 1, 'https://ror.org/04bw2xb41 Infotech Soft (United States)'),
(8686, 'https://ror.org/04bwfkw08', 'fr', 1, 'https://ror.org/04bwfkw08 CollĆØge Lionel Groulx, CollĆØge lionel-groulx'),
(8687, 'https://ror.org/04bxavq22', 'en', 1, 'https://ror.org/04bxavq22 USMMA Alumni Association and Foundation'),
(8688, 'https://ror.org/04bxc4617', 'en', 1, 'https://ror.org/04bxc4617 FrƩdƩric Joliot-Curie National Research Institute for Radiobiology and Radiohygiene'),
(8689, 'https://ror.org/04byfq980', 'no_lang_code', 1, 'https://ror.org/04byfq980 Nanotek Instruments (United States)'),
(8690, 'https://ror.org/04byxyr05', 'en', 1, 'https://ror.org/04byxyr05 Eunice Kennedy Shriver National Institute of Child Health and Human Development'),
(8691, 'https://ror.org/04c1def54', 'no_lang_code', 1, 'https://ror.org/04c1def54 ElSohly Laboratories (United States)'),
(8692, 'https://ror.org/04c39t964', 'en', 1, 'https://ror.org/04c39t964 Olympic Park Sports Medicine Centre'),
(8693, 'https://ror.org/04c3yce28', 'fr', 1, 'https://ror.org/04c3yce28 Centre Hospitalier Le Vinatier'),
(8694, 'https://ror.org/04c51sp70', 'en', 1, 'https://ror.org/04c51sp70 Orthopaedic Research of Virginia'),
(8695, 'https://ror.org/04c5xat66', 'no_lang_code', 1, 'https://ror.org/04c5xat66 Megger (United Kingdom)'),
(8696, 'https://ror.org/04c644459', 'it', 1, 'https://ror.org/04c644459 Israelite Hospital Ospedale Israelitico'),
(8697, 'https://ror.org/04c7ypr30', 'en', 1, 'https://ror.org/04c7ypr30 College of the North Atlantic'),
(8698, 'https://ror.org/04c91wj10', 'en', 1, 'https://ror.org/04c91wj10 Seattle Institute for Biomedical and Clinical Research'),
(8699, 'https://ror.org/04c9pv832', 'de', 1, 'https://ror.org/04c9pv832 Krankenhaus Salem'),
(8700, 'https://ror.org/04cd6wt71', 'no_lang_code', 1, 'https://ror.org/04cd6wt71 Kent SeaTech Corporation (United States)'),
(8701, 'https://ror.org/04cfb2973', 'en', 1, 'https://ror.org/04cfb2973 Aberdeen City Council'),
(8702, 'https://ror.org/04cgfe294', 'no_lang_code', 1, 'https://ror.org/04cgfe294 Lonza (United Kingdom)'),
(8703, 'https://ror.org/04ch01631', 'en', 1, 'https://ror.org/04ch01631 Ministry of Social Affairs and Social Services ×ž×©×Ø×“ הרווחה ×•×”×©×™×Ø×•×Ŗ×™× ×”×—×‘×Ø×Ŗ×™×™×ā€Ž'),
(8704, 'https://ror.org/04ch35a22', 'en', 1, 'https://ror.org/04ch35a22 American Society for Nutrition'),
(8705, 'https://ror.org/04cheq228', 'en', 1, 'https://ror.org/04cheq228 American College of Gastroenterology'),
(8706, 'https://ror.org/04cj8wf50', 'no_lang_code', 1, 'https://ror.org/04cj8wf50 APT Therapeutics (United States)'),
(8707, 'https://ror.org/04cjpzj07', 'en', 1, 'https://ror.org/04cjpzj07 Meiho University'),
(8708, 'https://ror.org/04cmadr83', 'en', 1, 'https://ror.org/04cmadr83 Okayama Rosai Hospital å²”å±±åŠ“ē½ē—…é™¢'),
(8709, 'https://ror.org/04cmd9g05', 'no_lang_code', 1, 'https://ror.org/04cmd9g05 20/20 GeneSystem (United States)'),
(8710, 'https://ror.org/04cn8d339', 'pl', 1, 'https://ror.org/04cn8d339 Krakowskie Centrum Rehabilitacji'),
(8711, 'https://ror.org/04cnj4456', 'en', 1, 'https://ror.org/04cnj4456 Parkview Health'),
(8712, 'https://ror.org/04cpjyv67', 'en', 1, 'https://ror.org/04cpjyv67 Australian Academy of Technological Sciences and Engineering'),
(8713, 'https://ror.org/04cq3yd71', 'no_lang_code', 1, 'https://ror.org/04cq3yd71 Banyan Biomarkers (United States)'),
(8714, 'https://ror.org/04ct7vj52', 'en', 1, 'https://ror.org/04ct7vj52 Council for Chemical Research'),
(8715, 'https://ror.org/04cv8g472', 'no_lang_code', 1, 'https://ror.org/04cv8g472 Systems Technology (United States)'),
(8716, 'https://ror.org/04cxbp585', 'en', 1, 'https://ror.org/04cxbp585 Special Service for Groups'),
(8717, 'https://ror.org/04cxn3n47', 'en', 1, 'https://ror.org/04cxn3n47 American Institute of Architects'),
(8718, 'https://ror.org/04cxvfq51', 'it', 1, 'https://ror.org/04cxvfq51 CoRiTeL'),
(8719, 'https://ror.org/04cxz3q70', 'no_lang_code', 1, 'https://ror.org/04cxz3q70 CarboMer (United States)'),
(8720, 'https://ror.org/04cy1f506', 'no_lang_code', 1, 'https://ror.org/04cy1f506 Optimum Therapeutics (United States)'),
(8721, 'https://ror.org/04czhsq43', 'es', 1, 'https://ror.org/04czhsq43 Center for Medical Education and Clinical Research Norberto Quirno Centro de Educación Médica e Investigaciones Clínicas Norberto Quirno'),
(8722, 'https://ror.org/04d0f7957', 'en', 1, 'https://ror.org/04d0f7957 Association of Public Health Laboratories'),
(8723, 'https://ror.org/04d0rfg41', 'en', 1, 'https://ror.org/04d0rfg41 St. Paul''s Hospital'),
(8724, 'https://ror.org/04d7p4z08', 'no_lang_code', 1, 'https://ror.org/04d7p4z08 Odyssey Trust'),
(8725, 'https://ror.org/04d95rj19', 'en', 1, 'https://ror.org/04d95rj19 Glasgow Science Centre'),
(8726, 'https://ror.org/04dbmrm19', 'no_lang_code', 1, 'https://ror.org/04dbmrm19 Bristol-Myers Squibb (Japan) ćƒ–ćƒŖć‚¹ćƒˆćƒ«ćƒ»ćƒžć‚¤ćƒ¤ćƒ¼ć‚ŗ ć‚¹ć‚Æć‚¤ćƒ–'),
(8727, 'https://ror.org/04dc68s79', 'no_lang_code', 1, 'https://ror.org/04dc68s79 Magellan Aerospace (Canada)'),
(8728, 'https://ror.org/04deknx22', 'fr', 1, 'https://ror.org/04deknx22 Centre Hospitalier Intercommunal de Villeneuve-Saint-Georges'),
(8729, 'https://ror.org/04deyvw92', 'en', 1, 'https://ror.org/04deyvw92 Kestrel Institute'),
(8730, 'https://ror.org/04dfe6667', 'en', 1, 'https://ror.org/04dfe6667 Human Gene Therapy Research Institute'),
(8731, 'https://ror.org/04dhbjd70', 'no_lang_code', 1, 'https://ror.org/04dhbjd70 SatCon Technology Corporation (United States)'),
(8732, 'https://ror.org/04dj5bz65', 'no_lang_code', 1, 'https://ror.org/04dj5bz65 OncoImmune (United States)'),
(8733, 'https://ror.org/04djwpq60', 'no_lang_code', 1, 'https://ror.org/04djwpq60 Cellerant Therapeutics (United States)'),
(8734, 'https://ror.org/04dkns738', 'no_lang_code', 1, 'https://ror.org/04dkns738 Procter & Gamble (United States)'),
(8735, 'https://ror.org/04dm6ed68', 'en', 1, 'https://ror.org/04dm6ed68 Birmingham City Council'),
(8736, 'https://ror.org/04dmca004', 'no_lang_code', 1, 'https://ror.org/04dmca004 Vesuvius (United Kingdom)'),
(8737, 'https://ror.org/04dq0c560', 'no_lang_code', 1, 'https://ror.org/04dq0c560 IMPCO Technologies (Canada)'),
(8738, 'https://ror.org/04dq56617', 'en', 1, 'https://ror.org/04dq56617 Max Planck Institute of Psychiatry Max-Planck-Institut für Psychiatrie'),
(8739, 'https://ror.org/04ds2ap82', 'en', 1, 'https://ror.org/04ds2ap82 Vector Control Research Centre'),
(8740, 'https://ror.org/04ds6er14', 'pt', 1, 'https://ror.org/04ds6er14 Faculdade EvangƩlica do ParanƔ'),
(8741, 'https://ror.org/04dxcby13', 'fr', 1, 'https://ror.org/04dxcby13 Centre de Chirurgie Plastique'),
(8742, 'https://ror.org/04dxvrs36', 'no_lang_code', 1, 'https://ror.org/04dxvrs36 HemoCleanse (United States)'),
(8743, 'https://ror.org/04dzdm737', 'no_lang_code', 1, 'https://ror.org/04dzdm737 deCODE Genetics (Iceland) ƍslensk erfưagreining'),
(8744, 'https://ror.org/04e13h619', 'no_lang_code', 1, 'https://ror.org/04e13h619 NovaFlux (United States)'),
(8745, 'https://ror.org/04e4dw336', 'no_lang_code', 1, 'https://ror.org/04e4dw336 C-Tech Innovation (United Kingdom)'),
(8746, 'https://ror.org/04e4jbv10', 'fr', 1, 'https://ror.org/04e4jbv10 Institut de Recherche Robert-SauvƩ en SantƩ et en SƩcuritƩ du Travail Occupational Health and Safety Research Institute'),
(8747, 'https://ror.org/04e602778', 'en', 1, 'https://ror.org/04e602778 Maryville College'),
(8748, 'https://ror.org/04e7jg064', 'no_lang_code', 1, 'https://ror.org/04e7jg064 Pennon Group (United Kingdom)'),
(8749, 'https://ror.org/04e8ge149', 'no_lang_code', 1, 'https://ror.org/04e8ge149 Rocky Mountain Bicycles (Canada)'),
(8750, 'https://ror.org/04e9wrg64', 'en', 1, 'https://ror.org/04e9wrg64 Collinge and Associates'),
(8751, 'https://ror.org/04e9z4a61', 'no_lang_code', 1, 'https://ror.org/04e9z4a61 Zynex (United States)'),
(8752, 'https://ror.org/04eb1br47', 'no_lang_code', 1, 'https://ror.org/04eb1br47 Lectenz Bio (United States)'),
(8753, 'https://ror.org/04ed5sj24', 'no_lang_code', 1, 'https://ror.org/04ed5sj24 Associated Compiler Experts (Netherlands)'),
(8754, 'https://ror.org/04ek06320', 'en', 1, 'https://ror.org/04ek06320 Energy and Resources Institute ą®†ą®±ąÆą®±ą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®³ą®™ąÆą®•ą®³ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(8755, 'https://ror.org/04ek3zb20', 'de', 1, 'https://ror.org/04ek3zb20 Max Grundig Hospital Max Grundig Klinik'),
(8756, 'https://ror.org/04em2yk17', 'en', 1, 'https://ror.org/04em2yk17 Moredun Foundation'),
(8757, 'https://ror.org/04emv5a43', 'en', 1, 'https://ror.org/04emv5a43 Tokyo Metropolitan Geriatric Hospital ę±äŗ¬éƒ½å„åŗ·é•·åÆæåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(8758, 'https://ror.org/04enbdd69', 'no_lang_code', 1, 'https://ror.org/04enbdd69 Charles River Associates'),
(8759, 'https://ror.org/04eq2dr50', 'en', 1, 'https://ror.org/04eq2dr50 American Society of Human Genetics'),
(8760, 'https://ror.org/04eq38828', 'en', 1, 'https://ror.org/04eq38828 Arts Catalyst'),
(8761, 'https://ror.org/04er97976', 'no_lang_code', 1, 'https://ror.org/04er97976 Nanotherapeutics (United States)'),
(8762, 'https://ror.org/04erv1b58', 'en', 1, 'https://ror.org/04erv1b58 College of New Rochelle'),
(8763, 'https://ror.org/04et59085', 'en', 1, 'https://ror.org/04et59085 Institute of Education Sciences'),
(8764, 'https://ror.org/04etz5w53', 'no_lang_code', 1, 'https://ror.org/04etz5w53 QuantTera (United States)'),
(8765, 'https://ror.org/04evmpa20', 'no_lang_code', 1, 'https://ror.org/04evmpa20 Vajira Hospital ąø§ąøŠąø“ąø£ąøžąø¢ąø²ąøšąø²ąø„'),
(8766, 'https://ror.org/04ewhdd57', 'no_lang_code', 1, 'https://ror.org/04ewhdd57 Dendritech (United States)'),
(8767, 'https://ror.org/04excst21', 'no_lang_code', 1, 'https://ror.org/04excst21 Bruker (Germany)'),
(8768, 'https://ror.org/04exhr452', 'en', 1, 'https://ror.org/04exhr452 Los Angeles Unified School District'),
(8769, 'https://ror.org/04f03nc30', 'nl', 1, 'https://ror.org/04f03nc30 Adelante'),
(8770, 'https://ror.org/04f1y4a64', 'es', 1, 'https://ror.org/04f1y4a64 Complejo Hospitalario de Ourense'),
(8771, 'https://ror.org/04f2ksb75', 'no_lang_code', 1, 'https://ror.org/04f2ksb75 Fundação Estadual de Produção e Pesquisa em Saúde'),
(8772, 'https://ror.org/04f2pye70', 'en', 1, 'https://ror.org/04f2pye70 St. Jude Medical Center'),
(8773, 'https://ror.org/04f3c9a86', 'no_lang_code', 1, 'https://ror.org/04f3c9a86 LumArray (United States)'),
(8774, 'https://ror.org/04f3tp286', 'no_lang_code', 1, 'https://ror.org/04f3tp286 Innovative BioTherapies (United States)'),
(8775, 'https://ror.org/04f49a463', 'en', 1, 'https://ror.org/04f49a463 American Society of Plant Biologists'),
(8776, 'https://ror.org/04f49ff35', 'en', 1, 'https://ror.org/04f49ff35 National Center for Nanoscience and Technology å›½å®¶ēŗ³ē±³ē§‘å­¦äø­åæƒ'),
(8777, 'https://ror.org/04f5kwf34', 'no_lang_code', 1, 'https://ror.org/04f5kwf34 Mediomics (United States)'),
(8778, 'https://ror.org/04f7srh33', 'no_lang_code', 1, 'https://ror.org/04f7srh33 Micropharma (Canada)'),
(8779, 'https://ror.org/04fc9fa94', 'no_lang_code', 1, 'https://ror.org/04fc9fa94 Sensor Electronic Technology (United States)'),
(8780, 'https://ror.org/04ffkmr54', 'en', 1, 'https://ror.org/04ffkmr54 Pellissippi State Community College'),
(8781, 'https://ror.org/04ffs2p40', 'en', 1, 'https://ror.org/04ffs2p40 Aspire Health Partners'),
(8782, 'https://ror.org/04fj0p555', 'en', 1, 'https://ror.org/04fj0p555 Tata Main Hospital'),
(8783, 'https://ror.org/04fj42v97', 'no_lang_code', 1, 'https://ror.org/04fj42v97 Consulectra (Germany)'),
(8784, 'https://ror.org/04fj60j89', 'no_lang_code', 1, 'https://ror.org/04fj60j89 SeaLite Engineering (United States)'),
(8785, 'https://ror.org/04fjkxc67', 'de', 1, 'https://ror.org/04fjkxc67 Helios Kliniken'),
(8786, 'https://ror.org/04fkhzr23', 'no_lang_code', 1, 'https://ror.org/04fkhzr23 Novan Therapeutics (United States)'),
(8787, 'https://ror.org/04fkqaq03', 'en', 1, 'https://ror.org/04fkqaq03 Rehabilitation Engineering and Assistive Technology Society of North America'),
(8788, 'https://ror.org/04fktme39', 'en', 1, 'https://ror.org/04fktme39 Cleveland University'),
(8789, 'https://ror.org/04fm85d87', 'en', 1, 'https://ror.org/04fm85d87 Brevard County Board of County Commissioners'),
(8790, 'https://ror.org/04fnfq325', 'en', 1, 'https://ror.org/04fnfq325 Center for Creative Leadership'),
(8791, 'https://ror.org/04fp8ns78', 'en', 1, 'https://ror.org/04fp8ns78 Bijwerkingen Centrum Lareb Netherlands Pharmacovigilance Centre Lareb'),
(8792, 'https://ror.org/04fpt0902', 'no_lang_code', 1, 'https://ror.org/04fpt0902 TLC Precision Wafer Technology (United States)'),
(8793, 'https://ror.org/04fqrjs59', 'en', 1, 'https://ror.org/04fqrjs59 Society of Hispanic Professional Engineers Foundation'),
(8794, 'https://ror.org/04ft1w637', 'en', 1, 'https://ror.org/04ft1w637 Palmetto General Hospital'),
(8795, 'https://ror.org/04fv4f289', 'hu', 1, 'https://ror.org/04fv4f289 Bűnügyi SzakĆ©rtői Ć©s KutatóintĆ©zet Hungarian Institute for Forensic Sciences'),
(8796, 'https://ror.org/04fvmv716', 'it', 1, 'https://ror.org/04fvmv716 Ospedale Vito Fazzi'),
(8797, 'https://ror.org/04fwbrn28', 'no_lang_code', 1, 'https://ror.org/04fwbrn28 Phoenicia Biosciences (United States)'),
(8798, 'https://ror.org/04fzbxp95', 'en', 1, 'https://ror.org/04fzbxp95 Defence Institute of Physiology and Allied Sciences ą¤•ą¤¾ą¤°ą„ą¤Æą¤•ą„€ और ą¤øą¤‚ą¤¬ą¤¦ą„ą¤§ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤°ą¤•ą„ą¤·ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(8799, 'https://ror.org/04g1yv196', 'no_lang_code', 1, 'https://ror.org/04g1yv196 Ag-West Bio (Canada)'),
(8800, 'https://ror.org/04g3ks144', 'no_lang_code', 1, 'https://ror.org/04g3ks144 Rogue Research (Canada)'),
(8801, 'https://ror.org/04g3t6s80', 'en', 1, 'https://ror.org/04g3t6s80 National Institute of Occupational Health'),
(8802, 'https://ror.org/04g47ec58', 'fr', 1, 'https://ror.org/04g47ec58 SociƩtƩ FranƧaise de Rhumatologie'),
(8803, 'https://ror.org/04g4kf576', 'en', 1, 'https://ror.org/04g4kf576 Institute for Health and Recovery'),
(8804, 'https://ror.org/04g4p0a45', 'no_lang_code', 1, 'https://ror.org/04g4p0a45 Lonza (United States)'),
(8805, 'https://ror.org/04g5g7m78', 'en', 1, 'https://ror.org/04g5g7m78 Saskatchewan Disease Control Laboratory'),
(8806, 'https://ror.org/04g8dtp60', 'no_lang_code', 1, 'https://ror.org/04g8dtp60 Quidel Corporation (United States)'),
(8807, 'https://ror.org/04g9sfv84', 'en', 1, 'https://ror.org/04g9sfv84 Syrian Center for Tobacco Studies'),
(8808, 'https://ror.org/04gbz7s91', 'en', 1, 'https://ror.org/04gbz7s91 Our Lady of Lourdes Medical Center'),
(8809, 'https://ror.org/04gcgef90', 'no_lang_code', 1, 'https://ror.org/04gcgef90 Levin Group (United States)'),
(8810, 'https://ror.org/04gdk0x87', 'en', 1, 'https://ror.org/04gdk0x87 Bloomfield College'),
(8811, 'https://ror.org/04ge7ee10', 'en', 1, 'https://ror.org/04ge7ee10 San Diego Museum of Man'),
(8812, 'https://ror.org/04ggm9668', 'no_lang_code', 1, 'https://ror.org/04ggm9668 Degge Group (United States)'),
(8813, 'https://ror.org/04gsrvr64', 'en', 1, 'https://ror.org/04gsrvr64 Adelphi Laboratory Center'),
(8814, 'https://ror.org/04gt45789', 'en', 1, 'https://ror.org/04gt45789 American Congress of Obstetricians and Gynecologists'),
(8815, 'https://ror.org/04gtb5g92', 'no_lang_code', 1, 'https://ror.org/04gtb5g92 Thomas Keating Ltd'),
(8816, 'https://ror.org/04gtf4q04', 'no_lang_code', 1, 'https://ror.org/04gtf4q04 Knowledge Based Systems (United States)'),
(8817, 'https://ror.org/04gwjw495', 'no_lang_code', 1, 'https://ror.org/04gwjw495 VHA (United States)'),
(8818, 'https://ror.org/04gy43j76', 'no_lang_code', 1, 'https://ror.org/04gy43j76 Advanced Scientific Concepts (United States)'),
(8819, 'https://ror.org/04gydfb09', 'no_lang_code', 1, 'https://ror.org/04gydfb09 Material Methods (United States)'),
(8820, 'https://ror.org/04h1pxn55', 'no_lang_code', 1, 'https://ror.org/04h1pxn55 TRUMPF (United Kingdom)'),
(8821, 'https://ror.org/04h2yy041', 'en', 1, 'https://ror.org/04h2yy041 Sesame Workshop'),
(8822, 'https://ror.org/04h5rh289', 'no_lang_code', 1, 'https://ror.org/04h5rh289 CorTechs Labs (United States)'),
(8823, 'https://ror.org/04h6axt23', 'en', 1, 'https://ror.org/04h6axt23 National Veterinary Research Institute'),
(8824, 'https://ror.org/04h7kta22', 'en', 1, 'https://ror.org/04h7kta22 Visiting Nurse Associations of America'),
(8825, 'https://ror.org/04hadk112', 'en', 1, 'https://ror.org/04hadk112 Institute of Genetics and Biophysics Istituto di Genetica e Biofisica'),
(8826, 'https://ror.org/04hbf1w31', 'no_lang_code', 1, 'https://ror.org/04hbf1w31 Bridger Photonics (United States)'),
(8827, 'https://ror.org/04hbhf775', 'en', 1, 'https://ror.org/04hbhf775 Frontier Science & Technology Research Foundation'),
(8828, 'https://ror.org/04hbp2s71', 'en', 1, 'https://ror.org/04hbp2s71 Wisconsin Division of Public Health'),
(8829, 'https://ror.org/04hd4qy94', 'it', 1, 'https://ror.org/04hd4qy94 Ospedale SS. Annunziata'),
(8830, 'https://ror.org/04hj57858', 'en', 1, 'https://ror.org/04hj57858 Tokyo Metropolitan Children''s Medical Center ę±äŗ¬éƒ½å­ä¾›ć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(8831, 'https://ror.org/04hk9tp23', 'no_lang_code', 1, 'https://ror.org/04hk9tp23 AquaTerra (United Kingdom)'),
(8832, 'https://ror.org/04hmqap24', 'en', 1, 'https://ror.org/04hmqap24 Netherlands Institute for Innovative Ocular Surgery'),
(8833, 'https://ror.org/04hmrvg91', 'no_lang_code', 1, 'https://ror.org/04hmrvg91 Dover (United States)'),
(8834, 'https://ror.org/04hn89439', 'la', 1, 'https://ror.org/04hn89439 Civita'),
(8835, 'https://ror.org/04hn9xh52', 'no_lang_code', 1, 'https://ror.org/04hn9xh52 Bionova Holding Corporation (United States)'),
(8836, 'https://ror.org/04hrjej96', 'en', 1, 'https://ror.org/04hrjej96 Leeds General Infirmary'),
(8837, 'https://ror.org/04hs39d68', 'no_lang_code', 1, 'https://ror.org/04hs39d68 Pattern Discovery Technologies (Canada)'),
(8838, 'https://ror.org/04hsdam77', 'en', 1, 'https://ror.org/04hsdam77 Center for Disease Control'),
(8839, 'https://ror.org/04hw63k11', 'no_lang_code', 1, 'https://ror.org/04hw63k11 Critical Pharmaceuticals (United Kingdom)'),
(8840, 'https://ror.org/04hw9y579', 'no_lang_code', 1, 'https://ror.org/04hw9y579 Pall Corporation (United Kingdom)'),
(8841, 'https://ror.org/04hxcaz34', 'en', 1, 'https://ror.org/04hxcaz34 National Institute of Water and Atmospheric Research'),
(8842, 'https://ror.org/04hxfjk77', 'no_lang_code', 1, 'https://ror.org/04hxfjk77 Immtech Pharmaceuticals (United States)'),
(8843, 'https://ror.org/04hzvka15', 'en', 1, 'https://ror.org/04hzvka15 Barraquer Opthalmology Center Clínica Oftalmológica Barraquer'),
(8844, 'https://ror.org/04j3f6252', 'en', 1, 'https://ror.org/04j3f6252 Change Happens'),
(8845, 'https://ror.org/04j3jhk11', 'en', 1, 'https://ror.org/04j3jhk11 San Antonio Uniformed Services Health Education Consortium'),
(8846, 'https://ror.org/04j5ay321', 'en', 1, 'https://ror.org/04j5ay321 Clinical and Laboratory Standards Institute'),
(8847, 'https://ror.org/04j6jb515', 'it', 1, 'https://ror.org/04j6jb515 Istituti Fisioterapici Ospitalieri'),
(8848, 'https://ror.org/04j9w6p53', 'en', 1, 'https://ror.org/04j9w6p53 Thrombosis and Atherosclerosis Research Institute'),
(8849, 'https://ror.org/04j9yn198', 'en', 1, 'https://ror.org/04j9yn198 Tianjin Hospital å¤©ę“„åø‚å¤©ę“„åŒ»é™¢'),
(8850, 'https://ror.org/04jbmee34', 'en', 1, 'https://ror.org/04jbmee34 Graham International Implant Institute'),
(8851, 'https://ror.org/04je9aj22', 'en', 1, 'https://ror.org/04je9aj22 Osborne Head and Neck Institute'),
(8852, 'https://ror.org/04jg4z821', 'no_lang_code', 1, 'https://ror.org/04jg4z821 Okayama Central Hospital 岔山中央病院'),
(8853, 'https://ror.org/04jjkfw48', 'en', 1, 'https://ror.org/04jjkfw48 Tirat Carmel Mental Health Center ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש'),
(8854, 'https://ror.org/04jjp2118', 'no_lang_code', 1, 'https://ror.org/04jjp2118 Serco (United Kingdom)'),
(8855, 'https://ror.org/04jk2jb97', 'en', 1, 'https://ror.org/04jk2jb97 Swiss Paraplegic Research'),
(8856, 'https://ror.org/04jkbm032', 'en', 1, 'https://ror.org/04jkbm032 Stratheden Hospital'),
(8857, 'https://ror.org/04jpa5e08', 'en', 1, 'https://ror.org/04jpa5e08 TriHealth'),
(8858, 'https://ror.org/04jq2r740', 'en', 1, 'https://ror.org/04jq2r740 Museum of Science and Industry'),
(8859, 'https://ror.org/04jqjkn20', 'no_lang_code', 1, 'https://ror.org/04jqjkn20 Data Management Services (United States)'),
(8860, 'https://ror.org/04jqk5a71', 'no_lang_code', 1, 'https://ror.org/04jqk5a71 COI Ceramics (United States)'),
(8861, 'https://ror.org/04jsm3g94', 'en', 1, 'https://ror.org/04jsm3g94 Saving Sight'),
(8862, 'https://ror.org/04jswqb94', 'en', 1, 'https://ror.org/04jswqb94 Defence Science and Technology Laboratory'),
(8863, 'https://ror.org/04jwhvn72', 'no_lang_code', 1, 'https://ror.org/04jwhvn72 TechLab (United States)'),
(8864, 'https://ror.org/04jxh5943', 'no_lang_code', 1, 'https://ror.org/04jxh5943 Hyper Tech Research (United States)'),
(8865, 'https://ror.org/04jzxg282', 'no_lang_code', 1, 'https://ror.org/04jzxg282 Atmospheric and Space Technology Research Associates (United States)'),
(8866, 'https://ror.org/04k0jj762', 'no_lang_code', 1, 'https://ror.org/04k0jj762 General Dynamics (United Kingdom)'),
(8867, 'https://ror.org/04k4bwp19', 'no_lang_code', 1, 'https://ror.org/04k4bwp19 Q-Track Corporation (United States)'),
(8868, 'https://ror.org/04k4vsv28', 'de', 1, 'https://ror.org/04k4vsv28 Sana Klinikum Offenbach'),
(8869, 'https://ror.org/04k6d6v57', 'no_lang_code', 1, 'https://ror.org/04k6d6v57 CJ America (United States)'),
(8870, 'https://ror.org/04k6fcm51', 'no_lang_code', 1, 'https://ror.org/04k6fcm51 King Shaw Associates (United Kingdom)'),
(8871, 'https://ror.org/04k6mhf37', 'no_lang_code', 1, 'https://ror.org/04k6mhf37 Pelamis Wave Power (United Kingdom)'),
(8872, 'https://ror.org/04k7qar56', 'en', 1, 'https://ror.org/04k7qar56 Ministry of Health Ministério da Saúde'),
(8873, 'https://ror.org/04k8cb995', 'no_lang_code', 1, 'https://ror.org/04k8cb995 MD Precision (Canada)'),
(8874, 'https://ror.org/04k9e4w52', 'en', 1, 'https://ror.org/04k9e4w52 Waterford Institute'),
(8875, 'https://ror.org/04k9pkv35', 'en', 1, 'https://ror.org/04k9pkv35 Foundation for Independent Higher Education'),
(8876, 'https://ror.org/04ka38w49', 'da', 1, 'https://ror.org/04ka38w49 Svendborg Sygehus'),
(8877, 'https://ror.org/04kbvxz10', 'en', 1, 'https://ror.org/04kbvxz10 Biocor Institute Biocor Instituto'),
(8878, 'https://ror.org/04kc77756', 'en', 1, 'https://ror.org/04kc77756 St Louis Community College'),
(8879, 'https://ror.org/04kcn9y49', 'en', 1, 'https://ror.org/04kcn9y49 Eye Institute of Utah'),
(8880, 'https://ror.org/04kcs0d25', 'pt', 1, 'https://ror.org/04kcs0d25 AgĆŖncia Para a Energia'),
(8881, 'https://ror.org/04khs0d04', 'en', 1, 'https://ror.org/04khs0d04 Amyotrophic Lateral Sclerosis Therapy Development Institute'),
(8882, 'https://ror.org/04kkvt144', 'no_lang_code', 1, 'https://ror.org/04kkvt144 GlobeImmune (United States)'),
(8883, 'https://ror.org/04km0f390', 'no_lang_code', 1, 'https://ror.org/04km0f390 North East of England Process Industry Cluster (United Kingdom)'),
(8884, 'https://ror.org/04kn0zf27', 'en', 1, 'https://ror.org/04kn0zf27 Silesian Center for Heart Disease'),
(8885, 'https://ror.org/04kpc8y09', 'en', 1, 'https://ror.org/04kpc8y09 Local Government Commission'),
(8886, 'https://ror.org/04krwby50', 'no_lang_code', 1, 'https://ror.org/04krwby50 Yokohama Municipal Minato Red Cross Hospital ęØŖęµœåø‚ē«‹ćæćŖćØčµ¤åå­—ē—…é™¢'),
(8887, 'https://ror.org/04kt4r851', 'no_lang_code', 1, 'https://ror.org/04kt4r851 IPAC Chemicals (Canada)'),
(8888, 'https://ror.org/04ktqp584', 'no_lang_code', 1, 'https://ror.org/04ktqp584 Philips (United Kingdom)'),
(8889, 'https://ror.org/04kv3gd50', 'no_lang_code', 1, 'https://ror.org/04kv3gd50 Magor (Canada)'),
(8890, 'https://ror.org/04kzhn079', 'en', 1, 'https://ror.org/04kzhn079 St. Joseph''s Hospital'),
(8891, 'https://ror.org/04m21na87', 'no_lang_code', 1, 'https://ror.org/04m21na87 Genomatica (United States)'),
(8892, 'https://ror.org/04m2ehp75', 'en', 1, 'https://ror.org/04m2ehp75 Seven Counties Services'),
(8893, 'https://ror.org/04m647t46', 'no_lang_code', 1, 'https://ror.org/04m647t46 Pd Ld (United States)'),
(8894, 'https://ror.org/04m828n09', 'en', 1, 'https://ror.org/04m828n09 EAC Network'),
(8895, 'https://ror.org/04m83yd87', 'en', 1, 'https://ror.org/04m83yd87 Sports Science Institute of South Africa'),
(8896, 'https://ror.org/04mbf8e26', 'en', 1, 'https://ror.org/04mbf8e26 Methodist Sports Medicine'),
(8897, 'https://ror.org/04mdnw291', 'en', 1, 'https://ror.org/04mdnw291 Miles College'),
(8898, 'https://ror.org/04mg00432', 'no_lang_code', 1, 'https://ror.org/04mg00432 Morphonix (United States)'),
(8899, 'https://ror.org/04mg7f574', 'en', 1, 'https://ror.org/04mg7f574 Molecular Biology Consortium'),
(8900, 'https://ror.org/04mge0977', 'no_lang_code', 1, 'https://ror.org/04mge0977 Syntrix Biosystems (United States)'),
(8901, 'https://ror.org/04mhxc747', 'no_lang_code', 1, 'https://ror.org/04mhxc747 Gencoa (United Kingdom)'),
(8902, 'https://ror.org/04mj0y667', 'en', 1, 'https://ror.org/04mj0y667 Ministry of Agriculture, Livestock, and Food Supply MinistƩrio da Agricultura, PecuƔria e Abastecimento'),
(8903, 'https://ror.org/04mmd4777', 'en', 1, 'https://ror.org/04mmd4777 Museum of Life and Science'),
(8904, 'https://ror.org/04mmv7r89', 'en', 1, 'https://ror.org/04mmv7r89 Chadron State College'),
(8905, 'https://ror.org/04mq9p732', 'en', 1, 'https://ror.org/04mq9p732 Wholistic Stress Control Institute'),
(8906, 'https://ror.org/04mt1cz50', 'en', 1, 'https://ror.org/04mt1cz50 Chartered Institution of Civil Engineering Surveyors'),
(8907, 'https://ror.org/04mvd3r15', 'no_lang_code', 1, 'https://ror.org/04mvd3r15 Stratus Aeronautics (Canada)'),
(8908, 'https://ror.org/04mw29y93', 'en', 1, 'https://ror.org/04mw29y93 Turku City Hospital Turun kaupunginsairaala'),
(8909, 'https://ror.org/04mx3g858', 'en', 1, 'https://ror.org/04mx3g858 Silverstein Institute'),
(8910, 'https://ror.org/04mxcvp24', 'es', 1, 'https://ror.org/04mxcvp24 Instituto de NeurologĆ­a de Buenos Aires'),
(8911, 'https://ror.org/04myhcv14', 'en', 1, 'https://ror.org/04myhcv14 National Egg Regulatory Officials'),
(8912, 'https://ror.org/04mymaj38', 'en', 1, 'https://ror.org/04mymaj38 Point Richmond Tech Center'),
(8913, 'https://ror.org/04mzvw485', 'en', 1, 'https://ror.org/04mzvw485 Thai Moogambigai Dental College and Hospital'),
(8914, 'https://ror.org/04n3aca14', 'no_lang_code', 1, 'https://ror.org/04n3aca14 Owlstone Medical (United Kingdom)'),
(8915, 'https://ror.org/04n50f417', 'no_lang_code', 1, 'https://ror.org/04n50f417 RWE (United Kingdom)'),
(8916, 'https://ror.org/04n6qtb21', 'en', 1, 'https://ror.org/04n6qtb21 National Institute of Fitness and Sports in Kanoya 鹿屋体育大学'),
(8917, 'https://ror.org/04n7g4f11', 'en', 1, 'https://ror.org/04n7g4f11 Rochester Area Foundation'),
(8918, 'https://ror.org/04n7k1343', 'en', 1, 'https://ror.org/04n7k1343 American Pain Society'),
(8919, 'https://ror.org/04n7py080', 'en', 1, 'https://ror.org/04n7py080 National Institute for Mathematical Sciences'),
(8920, 'https://ror.org/04na12j70', 'no_lang_code', 1, 'https://ror.org/04na12j70 Alchem Laboratories (United States)'),
(8921, 'https://ror.org/04nah6p89', 'no_lang_code', 1, 'https://ror.org/04nah6p89 eHuman (United States)'),
(8922, 'https://ror.org/04nc7qn91', 'en', 1, 'https://ror.org/04nc7qn91 Town and Country Planning Association'),
(8923, 'https://ror.org/04ng6c812', 'no_lang_code', 1, 'https://ror.org/04ng6c812 Buffalo BioLabs'),
(8924, 'https://ror.org/04nhm0g90', 'fr', 1, 'https://ror.org/04nhm0g90 Centre Muraz'),
(8925, 'https://ror.org/04nmkye62', 'en', 1, 'https://ror.org/04nmkye62 Heartland Health Region'),
(8926, 'https://ror.org/04nmqte89', 'no_lang_code', 1, 'https://ror.org/04nmqte89 Santec Systems (United States)'),
(8927, 'https://ror.org/04npefg86', 'en', 1, 'https://ror.org/04npefg86 Lake County'),
(8928, 'https://ror.org/04npym748', 'no_lang_code', 1, 'https://ror.org/04npym748 Humanitas (United States)'),
(8929, 'https://ror.org/04nq4c835', 'no_lang_code', 1, 'https://ror.org/04nq4c835 Okayama Saiseikai General Hospital å²”å±±ęøˆē”Ÿä¼šē·åˆē—…é™¢'),
(8930, 'https://ror.org/04ntc3565', 'no_lang_code', 1, 'https://ror.org/04ntc3565 Advanced Materials and Devices (United States)'),
(8931, 'https://ror.org/04nvba109', 'no_lang_code', 1, 'https://ror.org/04nvba109 CSL (Germany)'),
(8932, 'https://ror.org/04nw8w376', 'no_lang_code', 1, 'https://ror.org/04nw8w376 Leatherhead Food Research'),
(8933, 'https://ror.org/04nwrtj56', 'fr', 1, 'https://ror.org/04nwrtj56 Centre d’Étude et de Valorisation des Algues'),
(8934, 'https://ror.org/04nx04y60', 'en', 1, 'https://ror.org/04nx04y60 Taichung Armed Forces General Hospital åœ‹č»č‡ŗäø­ēø½é†«é™¢'),
(8935, 'https://ror.org/04nz2pc13', 'en', 1, 'https://ror.org/04nz2pc13 Council for the Advancement of Science Writing'),
(8936, 'https://ror.org/04p00tq71', 'en', 1, 'https://ror.org/04p00tq71 Research Institute of Innovative Technology for the Earth åœ°ēƒē’°å¢ƒē”£ę„­ęŠ€č”“ē ”ē©¶ę©Ÿę§‹'),
(8937, 'https://ror.org/04p25v506', 'en', 1, 'https://ror.org/04p25v506 Montshire Museum of Science'),
(8938, 'https://ror.org/04p335086', 'en', 1, 'https://ror.org/04p335086 Carbon Trust'),
(8939, 'https://ror.org/04p36vs32', 'no_lang_code', 1, 'https://ror.org/04p36vs32 Scott Instrument Company (United States)'),
(8940, 'https://ror.org/04p42v615', 'no_lang_code', 1, 'https://ror.org/04p42v615 HiretheWorld (Canada)'),
(8941, 'https://ror.org/04p45sn64', 'en', 1, 'https://ror.org/04p45sn64 Canards IllimitƩs Canada Ducks Unlimited Canada'),
(8942, 'https://ror.org/04p4fvj07', 'no_lang_code', 1, 'https://ror.org/04p4fvj07 Brain Insights (United States)'),
(8943, 'https://ror.org/04p4s5b35', 'en', 1, 'https://ror.org/04p4s5b35 St. John''s Hospital'),
(8944, 'https://ror.org/04p8w0f39', 'no_lang_code', 1, 'https://ror.org/04p8w0f39 Westinghouse Electric (United States)'),
(8945, 'https://ror.org/04pa5pz64', 'de', 1, 'https://ror.org/04pa5pz64 Sozialstiftung Bamberg'),
(8946, 'https://ror.org/04paq1j76', 'no_lang_code', 1, 'https://ror.org/04paq1j76 ScienceScope (United Kingdom)'),
(8947, 'https://ror.org/04pb6gq71', 'en', 1, 'https://ror.org/04pb6gq71 Orthopedic Specialty Hospital'),
(8948, 'https://ror.org/04pc31859', 'en', 1, 'https://ror.org/04pc31859 Stobhill Hospital'),
(8949, 'https://ror.org/04pcj0h26', 'en', 1, 'https://ror.org/04pcj0h26 Actua'),
(8950, 'https://ror.org/04phskp39', 'en', 1, 'https://ror.org/04phskp39 American Council of Learned Societies');
INSERT INTO `rors` VALUES
(8951, 'https://ror.org/04phyf746', 'en', 1, 'https://ror.org/04phyf746 Wolters Kluwer Health'),
(8952, 'https://ror.org/04pj26y96', 'pt', 1, 'https://ror.org/04pj26y96 Instituto de MolƩstias Cardiovasculares'),
(8953, 'https://ror.org/04pm5zx37', 'en', 1, 'https://ror.org/04pm5zx37 Sasha Bruce Youthwork'),
(8954, 'https://ror.org/04pmaae27', 'en', 1, 'https://ror.org/04pmaae27 Illinois College of Optometry'),
(8955, 'https://ror.org/04pmdg365', 'en', 1, 'https://ror.org/04pmdg365 Ulster Hospital'),
(8956, 'https://ror.org/04pq45e89', 'en', 1, 'https://ror.org/04pq45e89 Detroit Area Pre College Engineering Program'),
(8957, 'https://ror.org/04pr6dn97', 'no_lang_code', 1, 'https://ror.org/04pr6dn97 Arbutus Biopharma (Canada)'),
(8958, 'https://ror.org/04pshv774', 'no_lang_code', 1, 'https://ror.org/04pshv774 Field Diagnostic Services (United States)'),
(8959, 'https://ror.org/04pvxsf55', 'en', 1, 'https://ror.org/04pvxsf55 Lexington Clinic'),
(8960, 'https://ror.org/04q0ntn52', 'pt', 1, 'https://ror.org/04q0ntn52 Instituto de Neurologia de Curitiba'),
(8961, 'https://ror.org/04q1yyt92', 'en', 1, 'https://ror.org/04q1yyt92 Zoological Society of San Diego'),
(8962, 'https://ror.org/04q4jqq66', 'no_lang_code', 1, 'https://ror.org/04q4jqq66 3T Ophthalmics (United States)'),
(8963, 'https://ror.org/04q92cj22', 'no_lang_code', 1, 'https://ror.org/04q92cj22 Atmel (France)'),
(8964, 'https://ror.org/04qadzg65', 'no_lang_code', 1, 'https://ror.org/04qadzg65 CardioFocus (United States)'),
(8965, 'https://ror.org/04qatqr61', 'en', 1, 'https://ror.org/04qatqr61 Myers-JDC-Brookdale Institute'),
(8966, 'https://ror.org/04qce9v53', 'no_lang_code', 1, 'https://ror.org/04qce9v53 Integra LifeSciences (United States)'),
(8967, 'https://ror.org/04qcpkd70', 'en', 1, 'https://ror.org/04qcpkd70 Institute of Bioinformatics and Applied Biotechnology'),
(8968, 'https://ror.org/04qg15997', 'en', 1, 'https://ror.org/04qg15997 Bourn Hall Clinic'),
(8969, 'https://ror.org/04qkyx850', 'no_lang_code', 1, 'https://ror.org/04qkyx850 Social Sectors Development Strategies (United States)'),
(8970, 'https://ror.org/04qpstv89', 'en', 1, 'https://ror.org/04qpstv89 National Veterinary Research and Quarantine Service'),
(8971, 'https://ror.org/04qqcs583', 'en', 1, 'https://ror.org/04qqcs583 National Hospital of Pediatrics'),
(8972, 'https://ror.org/04qs5en05', 'en', 1, 'https://ror.org/04qs5en05 West Bengal State University ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(8973, 'https://ror.org/04qst6c17', 'en', 1, 'https://ror.org/04qst6c17 Peralta Community College District'),
(8974, 'https://ror.org/04qwgkn39', 'es', 1, 'https://ror.org/04qwgkn39 Institut Kaplan'),
(8975, 'https://ror.org/04qxdaz55', 'no_lang_code', 1, 'https://ror.org/04qxdaz55 Fortis Hospital'),
(8976, 'https://ror.org/04qz8gp36', 'no_lang_code', 1, 'https://ror.org/04qz8gp36 Split Engineering (United States)'),
(8977, 'https://ror.org/04r08t069', 'en', 1, 'https://ror.org/04r08t069 Independent Colleges Office'),
(8978, 'https://ror.org/04r0hqv79', 'en', 1, 'https://ror.org/04r0hqv79 Rhode Island Spine Center'),
(8979, 'https://ror.org/04r14bj23', 'en', 1, 'https://ror.org/04r14bj23 DigiBC (Canada)'),
(8980, 'https://ror.org/04r28v857', 'en', 1, 'https://ror.org/04r28v857 California Institute for Biomedical Research'),
(8981, 'https://ror.org/04r2r8477', 'fr', 1, 'https://ror.org/04r2r8477 ADERA'),
(8982, 'https://ror.org/04r3ebn54', 'en', 1, 'https://ror.org/04r3ebn54 Oklahoma Foundation for Medical Quality'),
(8983, 'https://ror.org/04r61xa45', 'no_lang_code', 1, 'https://ror.org/04r61xa45 Saiseikai Ibaraki Hospital å¤§é˜Ŗåŗœęøˆē”Ÿä¼ščŒØęœØē—…é™¢'),
(8984, 'https://ror.org/04r739x86', 'no_lang_code', 1, 'https://ror.org/04r739x86 Bruker (United States)'),
(8985, 'https://ror.org/04r9x1a08', 'no_lang_code', 1, 'https://ror.org/04r9x1a08 AstraZeneca (United Kingdom)'),
(8986, 'https://ror.org/04r9y8d38', 'no_lang_code', 1, 'https://ror.org/04r9y8d38 Wellstat (United States)'),
(8987, 'https://ror.org/04raazs21', 'no_lang_code', 1, 'https://ror.org/04raazs21 Cumberland Pharmaceuticals (United States)'),
(8988, 'https://ror.org/04rcqnp59', 'no_lang_code', 1, 'https://ror.org/04rcqnp59 Heidelberg University'),
(8989, 'https://ror.org/04rfqrp30', 'no_lang_code', 1, 'https://ror.org/04rfqrp30 Eion (Canada)'),
(8990, 'https://ror.org/04rj6an25', 'en', 1, 'https://ror.org/04rj6an25 Alberta Science Network'),
(8991, 'https://ror.org/04rjtde10', 'no_lang_code', 1, 'https://ror.org/04rjtde10 Perceptronics Solutions (United States)'),
(8992, 'https://ror.org/04rk4wk39', 'no_lang_code', 1, 'https://ror.org/04rk4wk39 Phytronix (Canada)'),
(8993, 'https://ror.org/04rn3ph18', 'no_lang_code', 1, 'https://ror.org/04rn3ph18 Kodak (United States)'),
(8994, 'https://ror.org/04rqx2b83', 'no_lang_code', 1, 'https://ror.org/04rqx2b83 Apogee Biotechnology (United States)'),
(8995, 'https://ror.org/04rt7ps04', 'en', 1, 'https://ror.org/04rt7ps04 Parkland Health & Hospital System'),
(8996, 'https://ror.org/04rtkc841', 'no_lang_code', 1, 'https://ror.org/04rtkc841 Molecular Oncology (United States)'),
(8997, 'https://ror.org/04rw71s91', 'en', 1, 'https://ror.org/04rw71s91 North Carolina State Education Assistance Authority'),
(8998, 'https://ror.org/04rx8g170', 'en', 1, 'https://ror.org/04rx8g170 Joseph Rowntree Foundation'),
(8999, 'https://ror.org/04ry4r880', 'en', 1, 'https://ror.org/04ry4r880 Central Tuber Crops Research Institute'),
(9000, 'https://ror.org/04rymkk69', 'en', 1, 'https://ror.org/04rymkk69 Muroran Institute of Technology 室蘭巄愭大学'),
(9001, 'https://ror.org/04s04em45', 'en', 1, 'https://ror.org/04s04em45 Defiance College'),
(9002, 'https://ror.org/04s14qs93', 'en', 1, 'https://ror.org/04s14qs93 Asian American Recovery Services'),
(9003, 'https://ror.org/04s1s3432', 'en', 1, 'https://ror.org/04s1s3432 Nevada Division of Public and Behavioral Health'),
(9004, 'https://ror.org/04s298h25', 'no_lang_code', 1, 'https://ror.org/04s298h25 CemeCon (Germany)'),
(9005, 'https://ror.org/04s2z4291', 'en', 1, 'https://ror.org/04s2z4291 Nederlands Forensisch Instituut Netherlands Forensic Institute'),
(9006, 'https://ror.org/04s42tp09', 'en', 1, 'https://ror.org/04s42tp09 Macomb Community College'),
(9007, 'https://ror.org/04s4jww20', 'no_lang_code', 1, 'https://ror.org/04s4jww20 Qiagen (United States)'),
(9008, 'https://ror.org/04s4z3495', 'no_lang_code', 1, 'https://ror.org/04s4z3495 Circulatory Technology (United States)'),
(9009, 'https://ror.org/04s55st49', 'en', 1, 'https://ror.org/04s55st49 Tate'),
(9010, 'https://ror.org/04sadrh19', 'en', 1, 'https://ror.org/04sadrh19 Hindu College of Pharmacy'),
(9011, 'https://ror.org/04sah3q11', 'en', 1, 'https://ror.org/04sah3q11 St. Francis Medical Center'),
(9012, 'https://ror.org/04sapgw72', 'no_lang_code', 1, 'https://ror.org/04sapgw72 Sumitomo Dainippon Pharma (Japan) å¤§ę—„ęœ¬ä½å‹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(9013, 'https://ror.org/04sbz4e56', 'no_lang_code', 1, 'https://ror.org/04sbz4e56 Clod Ensemble (United Kingdom)'),
(9014, 'https://ror.org/04sf10b93', 'no_lang_code', 1, 'https://ror.org/04sf10b93 ITI Energy (United Kingdom)'),
(9015, 'https://ror.org/04sg1k490', 'en', 1, 'https://ror.org/04sg1k490 Gabrichevsky Institute of Epidemiology and Microbiology Московский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии им.Š“.Š.Габричевского'),
(9016, 'https://ror.org/04sj2m437', 'no_lang_code', 1, 'https://ror.org/04sj2m437 TechEn (United States)'),
(9017, 'https://ror.org/04sjb2j71', 'en', 1, 'https://ror.org/04sjb2j71 Museum of Science and Industry'),
(9018, 'https://ror.org/04sjg0283', 'en', 1, 'https://ror.org/04sjg0283 Contra Costa Community College District'),
(9019, 'https://ror.org/04sk8z888', 'no_lang_code', 1, 'https://ror.org/04sk8z888 EP (United States)'),
(9020, 'https://ror.org/04sm60f26', 'en', 1, 'https://ror.org/04sm60f26 Defence Research and Development Establishment ą®‡ą®ØąÆą®¤ą®æą®Æ ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ąÆ‡ą®®ąÆą®Ŗą®¾ą®ŸąÆą®ŸąÆ ą®¤ąÆŠą®“ą®æą®²ą®•ą®®ąÆ'),
(9021, 'https://ror.org/04sme7s65', 'no_lang_code', 1, 'https://ror.org/04sme7s65 Altria (United States)'),
(9022, 'https://ror.org/04snwmr98', 'en', 1, 'https://ror.org/04snwmr98 Tusculum College'),
(9023, 'https://ror.org/04sp6ec60', 'en', 1, 'https://ror.org/04sp6ec60 Fast Track Drugs and Biologics'),
(9024, 'https://ror.org/04sp9ac55', 'no_lang_code', 1, 'https://ror.org/04sp9ac55 Ogilvy Public Relations (United States)'),
(9025, 'https://ror.org/04spxqa35', 'pt', 1, 'https://ror.org/04spxqa35 Instituto Dante Pazzanese de Cardiologia'),
(9026, 'https://ror.org/04sr9ds30', 'no_lang_code', 1, 'https://ror.org/04sr9ds30 Luxfer Group (United Kingdom)'),
(9027, 'https://ror.org/04srpvh96', 'en', 1, 'https://ror.org/04srpvh96 Cabrillo College'),
(9028, 'https://ror.org/04srtdn04', 'no_lang_code', 1, 'https://ror.org/04srtdn04 Weidlinger Associates (United States)'),
(9029, 'https://ror.org/04ss3cm03', 'fr', 1, 'https://ror.org/04ss3cm03 Centre Hospitalier Laennec'),
(9030, 'https://ror.org/04stdpt78', 'en', 1, 'https://ror.org/04stdpt78 Endokrinologický ústav Institute of Endocrinology'),
(9031, 'https://ror.org/04svanq44', 'en', 1, 'https://ror.org/04svanq44 Winchester Medical Center'),
(9032, 'https://ror.org/04sw0kk79', 'en', 1, 'https://ror.org/04sw0kk79 Vancouver Aquarium'),
(9033, 'https://ror.org/04swxtn38', 'no_lang_code', 1, 'https://ror.org/04swxtn38 Mimosa Acoustics (United States)'),
(9034, 'https://ror.org/04sxjet04', 'no_lang_code', 1, 'https://ror.org/04sxjet04 Medical Discovery Partners (United States)'),
(9035, 'https://ror.org/04sxsgm54', 'en', 1, 'https://ror.org/04sxsgm54 Comisión Interamericana del Atún Tropical Inter-American Tropical Tuna Commission'),
(9036, 'https://ror.org/04sy08330', 'en', 1, 'https://ror.org/04sy08330 AdventHealth Tampa'),
(9037, 'https://ror.org/04sydm273', 'it', 1, 'https://ror.org/04sydm273 Sapienza Innovazione'),
(9038, 'https://ror.org/04szpx527', 'no_lang_code', 1, 'https://ror.org/04szpx527 Araim Pharmaceuticals (United States)'),
(9039, 'https://ror.org/04t0s7x83', 'en', 1, 'https://ror.org/04t0s7x83 National Institute of Mental Health å›½ē«‹ē²¾ē„žč”›ē”Ÿē ”ē©¶ę‰€'),
(9040, 'https://ror.org/04t18m760', 'en', 1, 'https://ror.org/04t18m760 National Institute of Nutrition Viện Dinh DưỔng Quốc Gia'),
(9041, 'https://ror.org/04t24x986', 'no_lang_code', 1, 'https://ror.org/04t24x986 Novartis (Austria)'),
(9042, 'https://ror.org/04t28w240', 'no_lang_code', 1, 'https://ror.org/04t28w240 GlycoMira Therapeutics (United States)'),
(9043, 'https://ror.org/04t5sqe26', 'no_lang_code', 1, 'https://ror.org/04t5sqe26 Molecular Design International (United States)'),
(9044, 'https://ror.org/04t610980', 'en', 1, 'https://ror.org/04t610980 Appalachian College Association'),
(9045, 'https://ror.org/04t8qjg16', 'en', 1, 'https://ror.org/04t8qjg16 Central Drug Research Institute ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ औषधि ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą°•ą±‡ą°‚ą°¦ą±ą°°ą±€ą°Æ ఔషధ పరిశోధనా ą°øą°‚ą°øą±ą°„'),
(9046, 'https://ror.org/04t9p3q02', 'no_lang_code', 1, 'https://ror.org/04t9p3q02 Protein Potential (United States)'),
(9047, 'https://ror.org/04taw4g76', 'no_lang_code', 1, 'https://ror.org/04taw4g76 Sofina Foods (Canada)'),
(9048, 'https://ror.org/04tf8qk07', 'en', 1, 'https://ror.org/04tf8qk07 Mountain Empire Community College'),
(9049, 'https://ror.org/04tfmhy61', 'no_lang_code', 1, 'https://ror.org/04tfmhy61 Pipeline Industries Guild (United Kingdom)'),
(9050, 'https://ror.org/04tgdzw08', 'no_lang_code', 1, 'https://ror.org/04tgdzw08 Control Technology Incorporation (United States)'),
(9051, 'https://ror.org/04tgrpw60', 'en', 1, 'https://ror.org/04tgrpw60 Zhengzhou People''s Hospital éƒ‘å·žäŗŗę°‘åŒ»é™¢ē½‘ē«™'),
(9052, 'https://ror.org/04thckx15', 'en', 1, 'https://ror.org/04thckx15 Michigan Ear Institute'),
(9053, 'https://ror.org/04tj7zv24', 'en', 1, 'https://ror.org/04tj7zv24 BPP University'),
(9054, 'https://ror.org/04tjehp55', 'no_lang_code', 1, 'https://ror.org/04tjehp55 Herman Miller (United States)'),
(9055, 'https://ror.org/04tk6mg68', 'en', 1, 'https://ror.org/04tk6mg68 Alcohol Research Group'),
(9056, 'https://ror.org/04tkt0z61', 'no_lang_code', 1, 'https://ror.org/04tkt0z61 Toyooka Hospital č±Šå²”ē—…é™¢'),
(9057, 'https://ror.org/04tmafy09', 'en', 1, 'https://ror.org/04tmafy09 Asian Cultural Council'),
(9058, 'https://ror.org/04tmqcr52', 'no_lang_code', 1, 'https://ror.org/04tmqcr52 Viva Pharmaceutical (Canada)'),
(9059, 'https://ror.org/04tn6gn60', 'no_lang_code', 1, 'https://ror.org/04tn6gn60 Advanced Tissue (United States)'),
(9060, 'https://ror.org/04tnq4461', 'no_lang_code', 1, 'https://ror.org/04tnq4461 A&L Canada Laboratories (Canada)'),
(9061, 'https://ror.org/04tnxs674', 'no_lang_code', 1, 'https://ror.org/04tnxs674 Saltire Software (United States)'),
(9062, 'https://ror.org/04tq0y441', 'no_lang_code', 1, 'https://ror.org/04tq0y441 Poly Med (United States)'),
(9063, 'https://ror.org/04tsjk726', 'nl', 1, 'https://ror.org/04tsjk726 Rijndam Revalidatiecentrum'),
(9064, 'https://ror.org/04tv1fa62', 'fr', 1, 'https://ror.org/04tv1fa62 Centre National de la MƩdecine et des Sciences des Sports'),
(9065, 'https://ror.org/04tw5da48', 'en', 1, 'https://ror.org/04tw5da48 Eastern Florida State College'),
(9066, 'https://ror.org/04tw91v16', 'es', 1, 'https://ror.org/04tw91v16 Institute of Nutrition and Food Hygiene Instituto de Nutricion e Higiene de los Alimentos'),
(9067, 'https://ror.org/04txpk391', 'no_lang_code', 1, 'https://ror.org/04txpk391 Superconducting Systems (United States)'),
(9068, 'https://ror.org/04ty78924', 'no_lang_code', 1, 'https://ror.org/04ty78924 Karyopharm Therapeutics (United States)'),
(9069, 'https://ror.org/04tz1ar37', 'no_lang_code', 1, 'https://ror.org/04tz1ar37 ITN Energy Systems (United States)'),
(9070, 'https://ror.org/04tzjpc47', 'no_lang_code', 1, 'https://ror.org/04tzjpc47 Ebert and Associates'),
(9071, 'https://ror.org/04v04aa35', 'en', 1, 'https://ror.org/04v04aa35 Tarrant County College'),
(9072, 'https://ror.org/04v1wg214', 'en', 1, 'https://ror.org/04v1wg214 Tucson Orthopaedic Institute'),
(9073, 'https://ror.org/04v24dh28', 'en', 1, 'https://ror.org/04v24dh28 Sumitomo Besshi Hospital ä½å‹åˆ„å­ē—…é™¢'),
(9074, 'https://ror.org/04v357j08', 'no_lang_code', 1, 'https://ror.org/04v357j08 Biosearch Technologies (United States)'),
(9075, 'https://ror.org/04v44vh53', 'en', 1, 'https://ror.org/04v44vh53 Bank Street College of Education'),
(9076, 'https://ror.org/04v5h9g23', 'no_lang_code', 1, 'https://ror.org/04v5h9g23 Fu Associates (United States)'),
(9077, 'https://ror.org/04v6bh038', 'en', 1, 'https://ror.org/04v6bh038 Fukuoka Industrial Technology Center ē¦å²”ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(9078, 'https://ror.org/04v9x0m20', 'no_lang_code', 1, 'https://ror.org/04v9x0m20 Convergent Engineering (United States)'),
(9079, 'https://ror.org/04vcfk007', 'en', 1, 'https://ror.org/04vcfk007 Mohave Community College'),
(9080, 'https://ror.org/04vcx5150', 'no_lang_code', 1, 'https://ror.org/04vcx5150 Applied Energetics (United States)'),
(9081, 'https://ror.org/04ve0xd91', 'en', 1, 'https://ror.org/04ve0xd91 Cheltenham Festivals'),
(9082, 'https://ror.org/04vfjws05', 'no_lang_code', 1, 'https://ror.org/04vfjws05 NovaDigm Therapeutics (United States)'),
(9083, 'https://ror.org/04vge0w88', 'no_lang_code', 1, 'https://ror.org/04vge0w88 BioVectra (Canada)'),
(9084, 'https://ror.org/04vgpn643', 'en', 1, 'https://ror.org/04vgpn643 Belmont Center for Comprehensive Treatment'),
(9085, 'https://ror.org/04vh1tq58', 'de', 1, 'https://ror.org/04vh1tq58 Friedrich Miescher Laboratory, Friedrich-Miescher-Laboratorium für Biologische Arbeitsgruppen in der Max-Planck-Gesellschaft'),
(9086, 'https://ror.org/04vkhtf23', 'no_lang_code', 1, 'https://ror.org/04vkhtf23 Crucell Johnson & Johnson (Netherlands)'),
(9087, 'https://ror.org/04vnpzv66', 'en', 1, 'https://ror.org/04vnpzv66 Pinkus Dermatopathology Laboratory'),
(9088, 'https://ror.org/04vpcaw67', 'en', 1, 'https://ror.org/04vpcaw67 International Water Management Institute'),
(9089, 'https://ror.org/04vpnmr86', 'no_lang_code', 1, 'https://ror.org/04vpnmr86 Applied Research Associates (United States)'),
(9090, 'https://ror.org/04vvh7p27', 'no_lang_code', 1, 'https://ror.org/04vvh7p27 Eisai (Japan) ć‚Øćƒ¼ć‚¶ć‚¤ę Ŗå¼ä¼šē¤¾'),
(9091, 'https://ror.org/04vwk8m55', 'no_lang_code', 1, 'https://ror.org/04vwk8m55 Ansun BioPharma (United States)'),
(9092, 'https://ror.org/04vxrkc13', 'en', 1, 'https://ror.org/04vxrkc13 Constructing Excellence'),
(9093, 'https://ror.org/04vzpy492', 'en', 1, 'https://ror.org/04vzpy492 Orange County Heart Institute and Research Center'),
(9094, 'https://ror.org/04w3f9b42', 'no_lang_code', 1, 'https://ror.org/04w3f9b42 Takarazuka City Hospital å®å”šåø‚ē«‹ē—…é™¢'),
(9095, 'https://ror.org/04w4aze46', 'en', 1, 'https://ror.org/04w4aze46 LaGrange College'),
(9096, 'https://ror.org/04w5cyc72', 'no_lang_code', 1, 'https://ror.org/04w5cyc72 Diffinity Genomics (United States)'),
(9097, 'https://ror.org/04w65cc78', 'en', 1, 'https://ror.org/04w65cc78 Centre For Irish and European Security'),
(9098, 'https://ror.org/04w6hwt48', 'en', 1, 'https://ror.org/04w6hwt48 MalariaGEN'),
(9099, 'https://ror.org/04w7p1s44', 'no_lang_code', 1, 'https://ror.org/04w7p1s44 Rohde & Schwarz (United Kingdom)'),
(9100, 'https://ror.org/04w8tvc97', 'no_lang_code', 1, 'https://ror.org/04w8tvc97 Nanospectra Biosciences (United States)'),
(9101, 'https://ror.org/04wadq306', 'en', 1, 'https://ror.org/04wadq306 Candiolo Cancer Institute Istituto di Candiolo'),
(9102, 'https://ror.org/04waktx26', 'no_lang_code', 1, 'https://ror.org/04waktx26 ABB (United Kingdom)'),
(9103, 'https://ror.org/04wb8fh44', 'no', 1, 'https://ror.org/04wb8fh44 Center for Crisis Psychology Senter for Krisepsykologi'),
(9104, 'https://ror.org/04wbpm451', 'no_lang_code', 1, 'https://ror.org/04wbpm451 La Jolla Pharmaceutical (United States)'),
(9105, 'https://ror.org/04wfdx194', 'en', 1, 'https://ror.org/04wfdx194 Standing to Achieve New Directions'),
(9106, 'https://ror.org/04wg18j80', 'de', 1, 'https://ror.org/04wg18j80 Klinikum Saarbrücken'),
(9107, 'https://ror.org/04wga4j73', 'en', 1, 'https://ror.org/04wga4j73 Gold Skin Care Center'),
(9108, 'https://ror.org/04wgpdw48', 'en', 1, 'https://ror.org/04wgpdw48 impulse.brussels'),
(9109, 'https://ror.org/04wjd1a07', 'en', 1, 'https://ror.org/04wjd1a07 Nordland Hospital Trust Nordlandssykehuset'),
(9110, 'https://ror.org/04wjhaz81', 'no_lang_code', 1, 'https://ror.org/04wjhaz81 Sengenia (United Kingdom)'),
(9111, 'https://ror.org/04wkjxj31', 'en', 1, 'https://ror.org/04wkjxj31 Phoenix Houses of New England'),
(9112, 'https://ror.org/04wndes40', 'en', 1, 'https://ror.org/04wndes40 Pacific Health Foundation'),
(9113, 'https://ror.org/04wp1zv12', 'no_lang_code', 1, 'https://ror.org/04wp1zv12 Mercator MedSystems (United States)'),
(9114, 'https://ror.org/04ws26165', 'fr', 1, 'https://ror.org/04ws26165 Belgische Wissenschaftsinstitut für Ɩffentliche Gesundheit Institut Scientifique de SantĆ© Publique Scientific Institute of Public Health Wetenschappelijk Instituut Volksgezondheid'),
(9115, 'https://ror.org/04wtgxd69', 'en', 1, 'https://ror.org/04wtgxd69 Civil Aviation Authority'),
(9116, 'https://ror.org/04wwrrg31', 'no_lang_code', 1, 'https://ror.org/04wwrrg31 AstraZeneca (Sweden)'),
(9117, 'https://ror.org/04wytkh98', 'it', 1, 'https://ror.org/04wytkh98 Azienda Ospedaliera Sant’Antonio Abate di Gallarate'),
(9118, 'https://ror.org/04wzh0d51', 'en', 1, 'https://ror.org/04wzh0d51 Northern Virginia Community College'),
(9119, 'https://ror.org/04x0hrd32', 'en', 1, 'https://ror.org/04x0hrd32 Rhode Island Department of Children, Youth & Families'),
(9120, 'https://ror.org/04x0wqd92', 'en', 1, 'https://ror.org/04x0wqd92 Tokyo Rosai Hospital ę±äŗ¬åŠ“ē½ē—…é™¢'),
(9121, 'https://ror.org/04x1fkv72', 'no_lang_code', 1, 'https://ror.org/04x1fkv72 Istituto De Angeli (Italy)'),
(9122, 'https://ror.org/04x1grb60', 'en', 1, 'https://ror.org/04x1grb60 Dutch College of General Practitioners Nederlands Huisartsen Genootschap'),
(9123, 'https://ror.org/04x2tmv91', 'en', 1, 'https://ror.org/04x2tmv91 Piedmont HealthCare'),
(9124, 'https://ror.org/04x41ba23', 'en', 1, 'https://ror.org/04x41ba23 Captain James A. Lovell Federal Health Care Center'),
(9125, 'https://ror.org/04x436h61', 'en', 1, 'https://ror.org/04x436h61 Skin and Cancer Foundation'),
(9126, 'https://ror.org/04x4fb889', 'no_lang_code', 1, 'https://ror.org/04x4fb889 Lasmed (United States)'),
(9127, 'https://ror.org/04x4v8p40', 'no_lang_code', 1, 'https://ror.org/04x4v8p40 Pfizer (United Kingdom)'),
(9128, 'https://ror.org/04x5cyt12', 'no_lang_code', 1, 'https://ror.org/04x5cyt12 Sunny BioDiscovery (United States)'),
(9129, 'https://ror.org/04x5jxk30', 'no_lang_code', 1, 'https://ror.org/04x5jxk30 Aptose Biosciences (Canada)'),
(9130, 'https://ror.org/04x65hs26', 'en', 1, 'https://ror.org/04x65hs26 Cyfoeth Naturiol Cymru Natural Resources Wales'),
(9131, 'https://ror.org/04x89rx63', 'en', 1, 'https://ror.org/04x89rx63 Triton College'),
(9132, 'https://ror.org/04xdr5k48', 'en', 1, 'https://ror.org/04xdr5k48 DDL Diagnostic Laboratory'),
(9133, 'https://ror.org/04xeg9z08', 'en', 1, 'https://ror.org/04xeg9z08 Instituto Nacional de Salud Mental National Institute of Mental Health'),
(9134, 'https://ror.org/04xf9by37', 'no_lang_code', 1, 'https://ror.org/04xf9by37 Reveo (United States)'),
(9135, 'https://ror.org/04xfbcg47', 'no_lang_code', 1, 'https://ror.org/04xfbcg47 Fox Chase Chemical Diversity Center'),
(9136, 'https://ror.org/04xfypm71', 'no_lang_code', 1, 'https://ror.org/04xfypm71 Aptuit (Italy)'),
(9137, 'https://ror.org/04xgb0s62', 'en', 1, 'https://ror.org/04xgb0s62 Elms College'),
(9138, 'https://ror.org/04xgmns80', 'no_lang_code', 1, 'https://ror.org/04xgmns80 PermSelect (United States)'),
(9139, 'https://ror.org/04xk4hz96', 'pt', 1, 'https://ror.org/04xk4hz96 Instituto Evandro Chagas'),
(9140, 'https://ror.org/04xmnzw38', 'de', 1, 'https://ror.org/04xmnzw38 Chemotherapeutisches Forschungsinstitut Georg-Speyer-Haus, Georg Speyer Haus'),
(9141, 'https://ror.org/04xq28y48', 'no_lang_code', 1, 'https://ror.org/04xq28y48 NeuroWave Systems (United States)'),
(9142, 'https://ror.org/04xreqs31', 'en', 1, 'https://ror.org/04xreqs31 Institute for Research in Fundamental Sciences Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ ŲÆŲ§Ł†Ų“ā€ŒŁ‡Ų§ŪŒ ŲØŁ†ŪŒŲ§ŲÆŪŒ'),
(9143, 'https://ror.org/04xsveh31', 'en', 1, 'https://ror.org/04xsveh31 Academy of the Social Sciences in Australia'),
(9144, 'https://ror.org/04xve2a23', 'no_lang_code', 1, 'https://ror.org/04xve2a23 Genesegues (United States)'),
(9145, 'https://ror.org/04xwmf991', 'en', 1, 'https://ror.org/04xwmf991 Institute for Myeloma & Bone Cancer Research'),
(9146, 'https://ror.org/04xx1tc24', 'en', 1, 'https://ror.org/04xx1tc24 Max Planck Institute for Biology of Ageing Max-Planck-Institut für Biologie des Alterns'),
(9147, 'https://ror.org/04xz4db24', 'no_lang_code', 1, 'https://ror.org/04xz4db24 Caelum Research Corporation (United States)'),
(9148, 'https://ror.org/04y0sey15', 'en', 1, 'https://ror.org/04y0sey15 Oasis of Hope Hospital'),
(9149, 'https://ror.org/04y4dgs58', 'no_lang_code', 1, 'https://ror.org/04y4dgs58 Sitar (United States)'),
(9150, 'https://ror.org/04y4k8j69', 'no_lang_code', 1, 'https://ror.org/04y4k8j69 Xoran Technologies (United States)'),
(9151, 'https://ror.org/04y727f83', 'en', 1, 'https://ror.org/04y727f83 Bucks County Division of Human Services'),
(9152, 'https://ror.org/04y798z66', 'fr', 1, 'https://ror.org/04y798z66 Laboratoire National de SantƩ'),
(9153, 'https://ror.org/04y93q769', 'no_lang_code', 1, 'https://ror.org/04y93q769 Aciont (United States)'),
(9154, 'https://ror.org/04ye60n79', 'en', 1, 'https://ror.org/04ye60n79 Tikur Anbessa Hospital įŒ„į‰įˆ­ įŠ įŠ•į‰ įˆ³ įˆ†įˆµį’į‰³įˆ'),
(9155, 'https://ror.org/04yg3w958', 'es', 1, 'https://ror.org/04yg3w958 Centro MƩdico Docente La Trinidad'),
(9156, 'https://ror.org/04ygywa46', 'en', 1, 'https://ror.org/04ygywa46 Montana State University–Northern'),
(9157, 'https://ror.org/04yh8wr33', 'en', 1, 'https://ror.org/04yh8wr33 Cure Spinal Muscular Atrophy'),
(9158, 'https://ror.org/04yqm9y25', 'en', 1, 'https://ror.org/04yqm9y25 Child and Family Research Institute'),
(9159, 'https://ror.org/04yqxq902', 'no_lang_code', 1, 'https://ror.org/04yqxq902 APD Life Sciences (United States)'),
(9160, 'https://ror.org/04yt6jn66', 'en', 1, 'https://ror.org/04yt6jn66 National Rehabilitation Center źµ­ė¦½ģž¬ķ™œģ›'),
(9161, 'https://ror.org/04yv5fh97', 'no_lang_code', 1, 'https://ror.org/04yv5fh97 Demtroys (Canada)'),
(9162, 'https://ror.org/04yv8m152', 'no_lang_code', 1, 'https://ror.org/04yv8m152 Reaction Engineering International (United States)'),
(9163, 'https://ror.org/04yveyc27', 'en', 1, 'https://ror.org/04yveyc27 Tosei General Hospital å…¬ē«‹é™¶ē”Ÿē—…é™¢'),
(9164, 'https://ror.org/04yvrj177', 'en', 1, 'https://ror.org/04yvrj177 European Society of Concurrent Enterprising Network SocietĆ  Europea di Rete Concorrente Simultanea'),
(9165, 'https://ror.org/04ywgwn19', 'no_lang_code', 1, 'https://ror.org/04ywgwn19 Neurobehavioral Research (United States)'),
(9166, 'https://ror.org/04ywn3c84', 'no_lang_code', 1, 'https://ror.org/04ywn3c84 James Cropper (United Kingdom)'),
(9167, 'https://ror.org/04yxwc698', 'en', 1, 'https://ror.org/04yxwc698 Cardiovascular Research Foundation'),
(9168, 'https://ror.org/04yy0dd12', 'en', 1, 'https://ror.org/04yy0dd12 Animal Diseases Research Institute'),
(9169, 'https://ror.org/04yyrj242', 'no_lang_code', 1, 'https://ror.org/04yyrj242 Monsanto (United Kingdom)'),
(9170, 'https://ror.org/04yzcpd71', 'no_lang_code', 1, 'https://ror.org/04yzcpd71 Janssen (Belgium)'),
(9171, 'https://ror.org/04z1nmb83', 'en', 1, 'https://ror.org/04z1nmb83 College of the Mainland'),
(9172, 'https://ror.org/04z3gk160', 'no_lang_code', 1, 'https://ror.org/04z3gk160 Detroit R&D (United States)'),
(9173, 'https://ror.org/04z664d45', 'en', 1, 'https://ror.org/04z664d45 CollĆØge whittier Whittier College'),
(9174, 'https://ror.org/04z7ybt59', 'no_lang_code', 1, 'https://ror.org/04z7ybt59 Spectros Corporation (United States)'),
(9175, 'https://ror.org/04z9dde49', 'no_lang_code', 1, 'https://ror.org/04z9dde49 Cogmation Robotics (Canada)'),
(9176, 'https://ror.org/04za2st18', 'en', 1, 'https://ror.org/04za2st18 National Health Service Scotland'),
(9177, 'https://ror.org/04za49532', 'en', 1, 'https://ror.org/04za49532 Conference Board'),
(9178, 'https://ror.org/04zahys21', 'en', 1, 'https://ror.org/04zahys21 National Association of Health Data Organizations'),
(9179, 'https://ror.org/04zbejj85', 'en', 1, 'https://ror.org/04zbejj85 Ibaraki Prefectural Livestock Center ē•œē”£ć‚»ćƒ³ć‚æćƒ¼ļ¼čŒØåŸŽēœŒ'),
(9180, 'https://ror.org/04zd6dy90', 'no_lang_code', 1, 'https://ror.org/04zd6dy90 Applied Sciences (United States)'),
(9181, 'https://ror.org/04zegtq13', 'en', 1, 'https://ror.org/04zegtq13 Franklin Regional Council of Governments'),
(9182, 'https://ror.org/04zh19w51', 'en', 1, 'https://ror.org/04zh19w51 Metropolitan Police Service'),
(9183, 'https://ror.org/04zhxxe39', 'en', 1, 'https://ror.org/04zhxxe39 Osys Technology'),
(9184, 'https://ror.org/04zk9fe75', 'en', 1, 'https://ror.org/04zk9fe75 Arthritis Foundation'),
(9185, 'https://ror.org/04zkc6t29', 'en', 1, 'https://ror.org/04zkc6t29 Fukuoka Dental College ē¦å²”ę­Æē§‘å¤§å­¦'),
(9186, 'https://ror.org/04znr7t37', 'en', 1, 'https://ror.org/04znr7t37 Cankdeska Cikana Community College'),
(9187, 'https://ror.org/04zpfy292', 'no_lang_code', 1, 'https://ror.org/04zpfy292 Neurotronics (United States)'),
(9188, 'https://ror.org/04zpjj182', 'de', 1, 'https://ror.org/04zpjj182 Klinikum Ernst von Bergmann'),
(9189, 'https://ror.org/04zqrtt67', 'en', 1, 'https://ror.org/04zqrtt67 National Co-ordinating Centre for Public Engagement'),
(9190, 'https://ror.org/04zs6dw65', 'en', 1, 'https://ror.org/04zs6dw65 Pacific Resources for Education and Learning'),
(9191, 'https://ror.org/04zttqy84', 'no_lang_code', 1, 'https://ror.org/04zttqy84 Predictive Biology (United States)'),
(9192, 'https://ror.org/04zw11527', 'en', 1, 'https://ror.org/04zw11527 National Institute of Plant Genome Research'),
(9193, 'https://ror.org/04zw4rj10', 'no_lang_code', 1, 'https://ror.org/04zw4rj10 Arzeda (United States)'),
(9194, 'https://ror.org/0502a2655', 'en', 1, 'https://ror.org/0502a2655 National Institute for Occupational Safety and Health'),
(9195, 'https://ror.org/0503gyy63', 'es', 1, 'https://ror.org/0503gyy63 Parque Tecnológico de la Salud'),
(9196, 'https://ror.org/0505r1x13', 'no_lang_code', 1, 'https://ror.org/0505r1x13 Affymax (United States)'),
(9197, 'https://ror.org/0506jb942', 'no_lang_code', 1, 'https://ror.org/0506jb942 Cardno (United States)'),
(9198, 'https://ror.org/0506v2b24', 'no_lang_code', 1, 'https://ror.org/0506v2b24 STRATA Skin Sciences (United States)'),
(9199, 'https://ror.org/0508zfs37', 'no_lang_code', 1, 'https://ror.org/0508zfs37 Porter Novelli (United States)'),
(9200, 'https://ror.org/050b6eh04', 'en', 1, 'https://ror.org/050b6eh04 Fertility Center of Las Vegas'),
(9201, 'https://ror.org/050bs5t91', 'no_lang_code', 1, 'https://ror.org/050bs5t91 Neuro Device Innovations (United States)'),
(9202, 'https://ror.org/050dg4y92', 'en', 1, 'https://ror.org/050dg4y92 National Alliance for Hispanic Health'),
(9203, 'https://ror.org/050eja791', 'no_lang_code', 1, 'https://ror.org/050eja791 Ajinomoto (Russia) АГжиномото'),
(9204, 'https://ror.org/050ey5v22', 'no_lang_code', 1, 'https://ror.org/050ey5v22 Health Decisions (United States)'),
(9205, 'https://ror.org/050f37r96', 'no_lang_code', 1, 'https://ror.org/050f37r96 Arbor Vita (United States)'),
(9206, 'https://ror.org/050hhcw63', 'en', 1, 'https://ror.org/050hhcw63 Accents On Health'),
(9207, 'https://ror.org/050hscv31', 'en', 1, 'https://ror.org/050hscv31 Nemours Children''s Clinic'),
(9208, 'https://ror.org/050kc8e49', 'no_lang_code', 1, 'https://ror.org/050kc8e49 Technology International Incorporated of Virginia (United States)'),
(9209, 'https://ror.org/050n5zj41', 'no_lang_code', 1, 'https://ror.org/050n5zj41 NeuroNexus (United States)'),
(9210, 'https://ror.org/050nq0931', 'en', 1, 'https://ror.org/050nq0931 Association of Occupational and Environmental Clinics'),
(9211, 'https://ror.org/050prqy77', 'no_lang_code', 1, 'https://ror.org/050prqy77 Enzon Pharmaceuticals (United States)'),
(9212, 'https://ror.org/050pxrb04', 'es', 1, 'https://ror.org/050pxrb04 Instituto de CardiologĆ­a y CirugĆ­a Cardiovascular'),
(9213, 'https://ror.org/050ssvp08', 'en', 1, 'https://ror.org/050ssvp08 Ohio Academy of Science'),
(9214, 'https://ror.org/050t0wk48', 'no_lang_code', 1, 'https://ror.org/050t0wk48 Tasktop Technologies (Canada)'),
(9215, 'https://ror.org/050wn8768', 'no_lang_code', 1, 'https://ror.org/050wn8768 BrightOutcome (United States)'),
(9216, 'https://ror.org/050x9d346', 'en', 1, 'https://ror.org/050x9d346 Age UK'),
(9217, 'https://ror.org/05113n960', 'en', 1, 'https://ror.org/05113n960 Lane Community College'),
(9218, 'https://ror.org/051269613', 'en', 1, 'https://ror.org/051269613 National Forensic Institute'),
(9219, 'https://ror.org/0513ya078', 'no_lang_code', 1, 'https://ror.org/0513ya078 TerraBioGen (Canada)'),
(9220, 'https://ror.org/0514swh36', 'en', 1, 'https://ror.org/0514swh36 HealthRIGHT 360'),
(9221, 'https://ror.org/0517kdv58', 'no_lang_code', 1, 'https://ror.org/0517kdv58 Newton Labs (United States)'),
(9222, 'https://ror.org/051ae7717', 'nl', 1, 'https://ror.org/051ae7717 Stichting Epilepsie Instellingen Nederland'),
(9223, 'https://ror.org/051cjrp31', 'no_lang_code', 1, 'https://ror.org/051cjrp31 McGuireWoods'),
(9224, 'https://ror.org/051de0s21', 'no_lang_code', 1, 'https://ror.org/051de0s21 Sartorius (United Kingdom)'),
(9225, 'https://ror.org/051dmmq45', 'no_lang_code', 1, 'https://ror.org/051dmmq45 NuPotential (United States)'),
(9226, 'https://ror.org/051fq1m45', 'en', 1, 'https://ror.org/051fq1m45 Massachusetts Executive Office of Health and Human Services'),
(9227, 'https://ror.org/051hx5h67', 'en', 1, 'https://ror.org/051hx5h67 Kidney Centre'),
(9228, 'https://ror.org/051jtz490', 'no_lang_code', 1, 'https://ror.org/051jtz490 Thoratec Corporation (United States)'),
(9229, 'https://ror.org/051jx6464', 'en', 1, 'https://ror.org/051jx6464 Waianae Coast Comprehensive Health Center'),
(9230, 'https://ror.org/051mrhb02', 'hu', 1, 'https://ror.org/051mrhb02 OrszÔgos KorÔnyi Tbc és Pulmonológiai Intézet'),
(9231, 'https://ror.org/051nxfa23', 'de', 1, 'https://ror.org/051nxfa23 St. Franziskus Hospital'),
(9232, 'https://ror.org/051ppg660', 'en', 1, 'https://ror.org/051ppg660 National Institute of Animal Health å‹•ē‰©č”›ē”Ÿē ”ē©¶éƒØé–€'),
(9233, 'https://ror.org/051pzmv95', 'en', 1, 'https://ror.org/051pzmv95 Yamaguchi Prefecture Central Hospital å±±å£ēœŒē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(9234, 'https://ror.org/051vg8924', 'en', 1, 'https://ror.org/051vg8924 Boston Children''s Museum'),
(9235, 'https://ror.org/051y01w95', 'no_lang_code', 1, 'https://ror.org/051y01w95 Site Vision Surveys (United Kingdom)'),
(9236, 'https://ror.org/051zy3f83', 'no_lang_code', 1, 'https://ror.org/051zy3f83 Chrysalis BioTherapeutics (United States)'),
(9237, 'https://ror.org/052193f04', 'no_lang_code', 1, 'https://ror.org/052193f04 Biolog (United States)'),
(9238, 'https://ror.org/0521rfb23', 'en', 1, 'https://ror.org/0521rfb23 Lincoln University - Pennsylvania Universidad Lincoln'),
(9239, 'https://ror.org/0522mgp14', 'en', 1, 'https://ror.org/0522mgp14 Wesley Long Hospital'),
(9240, 'https://ror.org/052333450', 'no_lang_code', 1, 'https://ror.org/052333450 Electro Energy (United States)'),
(9241, 'https://ror.org/0524z5q72', 'en', 1, 'https://ror.org/0524z5q72 Sindh Institute of Urology and Transplantation'),
(9242, 'https://ror.org/0525r6t88', 'no_lang_code', 1, 'https://ror.org/0525r6t88 Chiral Photonics (United States)'),
(9243, 'https://ror.org/05261sq16', 'en', 1, 'https://ror.org/05261sq16 Royal Blackburn Teaching Hospital'),
(9244, 'https://ror.org/0527dhk70', 'no_lang_code', 1, 'https://ror.org/0527dhk70 Athens Research and Technology (United States)'),
(9245, 'https://ror.org/0527eje21', 'no_lang_code', 1, 'https://ror.org/0527eje21 Thrombodyne (United States)'),
(9246, 'https://ror.org/0527mfk98', 'en', 1, 'https://ror.org/0527mfk98 Central Institute of Medicinal and Aromatic Plants ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤”ą¤·ą¤§ą„€ą¤Æ ą¤ą¤µą¤‚ सगंध ą¤Ŗą„Œą¤§ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą“øąµ†ąµ»ą“Ÿąµą“°ąµ½ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ąµ†ą“”ą“æą“øą“æą“Øąµ½ ą“†ą“Øąµą“±ąµ ą“…ą“°ąµ‹ą“®ą“¾ą“±ąµą“±ą“æą“•ąµ ą“Ŗąµą“²ą“¾ąµ»ą“±ąµą“øąµ'),
(9247, 'https://ror.org/052ahj806', 'fr', 1, 'https://ror.org/052ahj806 Centre de GƩnƩtique MolƩculaire'),
(9248, 'https://ror.org/052arry73', 'en', 1, 'https://ror.org/052arry73 Panagiotis & Aglaia Kyriakou Children''s Hospital'),
(9249, 'https://ror.org/052ay3140', 'no_lang_code', 1, 'https://ror.org/052ay3140 Active Space Technologies (Portugal)'),
(9250, 'https://ror.org/052cjbe24', 'en', 1, 'https://ror.org/052cjbe24 National Institute of Oceanography and Fisheries'),
(9251, 'https://ror.org/052crws06', 'en', 1, 'https://ror.org/052crws06 Vocational Instruction Project Community Services'),
(9252, 'https://ror.org/052d1a351', 'de', 1, 'https://ror.org/052d1a351 Museum für Naturkunde Museum für Naturkunde - Leibniz Institute for Evolution and Biodiversity Science'),
(9253, 'https://ror.org/052d4jz71', 'no_lang_code', 1, 'https://ror.org/052d4jz71 CHI Systems (United States)'),
(9254, 'https://ror.org/052e6h087', 'pt', 1, 'https://ror.org/052e6h087 Faculdade de Medicina de São José do Rio Preto Faculty of Medicine of São José do Rio Preto'),
(9255, 'https://ror.org/052efn961', 'en', 1, 'https://ror.org/052efn961 Arkansas Academy of Science'),
(9256, 'https://ror.org/052emna24', 'no_lang_code', 1, 'https://ror.org/052emna24 Hepatitis B Foundation'),
(9257, 'https://ror.org/052gypd56', 'en', 1, 'https://ror.org/052gypd56 Nuclear Threat Initiative'),
(9258, 'https://ror.org/052gyrt19', 'no_lang_code', 1, 'https://ror.org/052gyrt19 Polatomic (United States)'),
(9259, 'https://ror.org/052k56z27', 'en', 1, 'https://ror.org/052k56z27 Austin College'),
(9260, 'https://ror.org/052qet256', 'no_lang_code', 1, 'https://ror.org/052qet256 Organix (United States)'),
(9261, 'https://ror.org/052r7yf45', 'en', 1, 'https://ror.org/052r7yf45 Institute of Chemical Kinetics and Combustion Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической кинетики Šø Š³Š¾Ń€ŠµŠ½ŠøŃ им. Š’.Š’. ВоевоГского Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(9262, 'https://ror.org/052sh1z51', 'no_lang_code', 1, 'https://ror.org/052sh1z51 MAST Carbon (United Kingdom)'),
(9263, 'https://ror.org/052v1k340', 'no_lang_code', 1, 'https://ror.org/052v1k340 DSM (Canada)'),
(9264, 'https://ror.org/052v1zn95', 'no_lang_code', 1, 'https://ror.org/052v1zn95 Linde (United Kingdom)'),
(9265, 'https://ror.org/052vt9742', 'en', 1, 'https://ror.org/052vt9742 St. Joseph Medical Center'),
(9266, 'https://ror.org/052x1xp04', 'no_lang_code', 1, 'https://ror.org/052x1xp04 Total Child Health (United States)'),
(9267, 'https://ror.org/052x5ps19', 'en', 1, 'https://ror.org/052x5ps19 Foundation for Applied Molecular Evolution'),
(9268, 'https://ror.org/052yz6z95', 'en', 1, 'https://ror.org/052yz6z95 Trident Technical College'),
(9269, 'https://ror.org/052zay176', 'en', 1, 'https://ror.org/052zay176 Asian and Pacific Islander Wellness Center'),
(9270, 'https://ror.org/0530d6n45', 'en', 1, 'https://ror.org/0530d6n45 National Center for Clinical Laboratories'),
(9271, 'https://ror.org/05324v822', 'en', 1, 'https://ror.org/05324v822 Actuarial Research Corporation'),
(9272, 'https://ror.org/0532mvt92', 'no_lang_code', 1, 'https://ror.org/0532mvt92 LKT Laboratories (United States)'),
(9273, 'https://ror.org/0532tps88', 'it', 1, 'https://ror.org/0532tps88 Ospedale Eugenio Morelli'),
(9274, 'https://ror.org/0534bc363', 'fr', 1, 'https://ror.org/0534bc363 Centre Cardiologique du Nord'),
(9275, 'https://ror.org/05355vt65', 'pt', 1, 'https://ror.org/05355vt65 Secretaria Municipal de SaĆŗde'),
(9276, 'https://ror.org/0535c3537', 'no_lang_code', 1, 'https://ror.org/0535c3537 Mitsubishi Chemical Holdings Mitsubishi Chemical Holdings (Japan) ę Ŗå¼ä¼šē¤¾äø‰č±ć‚±ćƒŸć‚«ćƒ«ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(9277, 'https://ror.org/0538gdx71', 'en', 1, 'https://ror.org/0538gdx71 Jawaharlal Nehru Centre for Advanced Scientific Research'),
(9278, 'https://ror.org/053ad7h16', 'no_lang_code', 1, 'https://ror.org/053ad7h16 Saiseikai Shigaken Hospital ęøˆē”Ÿä¼šę»‹č³€ēœŒē—…é™¢'),
(9279, 'https://ror.org/053apnz82', 'en', 1, 'https://ror.org/053apnz82 School for Advanced Research'),
(9280, 'https://ror.org/053asbv83', 'en', 1, 'https://ror.org/053asbv83 American Academy of Cosmetic Dentistry'),
(9281, 'https://ror.org/053bg5z25', 'en', 1, 'https://ror.org/053bg5z25 New England Complex Systems Institute'),
(9282, 'https://ror.org/053cd8j25', 'no_lang_code', 1, 'https://ror.org/053cd8j25 Osmania General Hospital ą°‰ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ ą°œą°Øą°°ą°²ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(9283, 'https://ror.org/053cdw390', 'no_lang_code', 1, 'https://ror.org/053cdw390 Toujinkai Hospital 吉焄寺あさひ病院は'),
(9284, 'https://ror.org/053ef7v72', 'no_lang_code', 1, 'https://ror.org/053ef7v72 Fractal Systems (Canada)'),
(9285, 'https://ror.org/053efmw82', 'no_lang_code', 1, 'https://ror.org/053efmw82 Precision Optics Corporation (United States)'),
(9286, 'https://ror.org/053ehy143', 'no_lang_code', 1, 'https://ror.org/053ehy143 Airak (United States)'),
(9287, 'https://ror.org/053f3rt53', 'en', 1, 'https://ror.org/053f3rt53 Favaloro Foundation'),
(9288, 'https://ror.org/053frny31', 'no_lang_code', 1, 'https://ror.org/053frny31 Photek (United Kingdom)'),
(9289, 'https://ror.org/053g6zg46', 'en', 1, 'https://ror.org/053g6zg46 Institute of Crop Science ę¬”äø–ä»£ä½œē‰©é–‹ē™ŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(9290, 'https://ror.org/053h7gw81', 'en', 1, 'https://ror.org/053h7gw81 Swami Vivekanand Subharti University'),
(9291, 'https://ror.org/053k5y417', 'en', 1, 'https://ror.org/053k5y417 Institute for Molecular Medicine'),
(9292, 'https://ror.org/053nef216', 'no_lang_code', 1, 'https://ror.org/053nef216 Vescent Photonics (United States)'),
(9293, 'https://ror.org/053nfh638', 'en', 1, 'https://ror.org/053nfh638 Center for Severe Weather Research'),
(9294, 'https://ror.org/053pe9m10', 'en', 1, 'https://ror.org/053pe9m10 Canadian Coalition for Global Health Research'),
(9295, 'https://ror.org/053qgsf62', 'no_lang_code', 1, 'https://ror.org/053qgsf62 MATECH (United States)'),
(9296, 'https://ror.org/053re1s95', 'no_lang_code', 1, 'https://ror.org/053re1s95 Beryllium (United States)'),
(9297, 'https://ror.org/053rfa017', 'en', 1, 'https://ror.org/053rfa017 Institute for Infocomm Research'),
(9298, 'https://ror.org/053t8wp47', 'no_lang_code', 1, 'https://ror.org/053t8wp47 Advanta Seeds (Netherlands)'),
(9299, 'https://ror.org/053v8b344', 'en', 1, 'https://ror.org/053v8b344 Economic Policy Institute'),
(9300, 'https://ror.org/053vdeh68', 'en', 1, 'https://ror.org/053vdeh68 St. Luke''s Hospital'),
(9301, 'https://ror.org/053vvhn22', 'en', 1, 'https://ror.org/053vvhn22 Whiston Hospital'),
(9302, 'https://ror.org/053wdqs10', 'fr', 1, 'https://ror.org/053wdqs10 Institut Alfred Fournier'),
(9303, 'https://ror.org/053y9xq02', 'en', 1, 'https://ror.org/053y9xq02 Pandit Bhagwat Dayal Sharma Post Graduate Institute of Medical Sciences'),
(9304, 'https://ror.org/053zey189', 'en', 1, 'https://ror.org/053zey189 Takayama Red Cross Hospital é«˜å±±čµ¤åå­—ē—…é™¢'),
(9305, 'https://ror.org/05414wx82', 'no_lang_code', 1, 'https://ror.org/05414wx82 Sasken (India)'),
(9306, 'https://ror.org/0541a3n79', 'en', 1, 'https://ror.org/0541a3n79 International Crops Research Institute for the Semi-Arid Tropics'),
(9307, 'https://ror.org/0542yj463', 'no_lang_code', 1, 'https://ror.org/0542yj463 Guided Therapeutics (United States)'),
(9308, 'https://ror.org/05434fs92', 'en', 1, 'https://ror.org/05434fs92 Brookhaven Science Associates'),
(9309, 'https://ror.org/05450eg98', 'en', 1, 'https://ror.org/05450eg98 Alamo Colleges'),
(9310, 'https://ror.org/0545sd266', 'no_lang_code', 1, 'https://ror.org/0545sd266 PAREXEL International (France)'),
(9311, 'https://ror.org/05476d639', 'es', 1, 'https://ror.org/05476d639 Instituto Cardiovascular de Buenos Aires'),
(9312, 'https://ror.org/0547sz392', 'en', 1, 'https://ror.org/0547sz392 American Thoracic Society'),
(9313, 'https://ror.org/0548qkv95', 'no_lang_code', 1, 'https://ror.org/0548qkv95 DNASTAR (United States)'),
(9314, 'https://ror.org/054abn387', 'no_lang_code', 1, 'https://ror.org/054abn387 Dimera (United States)'),
(9315, 'https://ror.org/054cjrc07', 'no_lang_code', 1, 'https://ror.org/054cjrc07 Quantronix (United States)'),
(9316, 'https://ror.org/054d19q51', 'en', 1, 'https://ror.org/054d19q51 Council of Graduate Schools'),
(9317, 'https://ror.org/054fjvz18', 'en', 1, 'https://ror.org/054fjvz18 Center for American Archeology'),
(9318, 'https://ror.org/054hmd463', 'no_lang_code', 1, 'https://ror.org/054hmd463 Toshiba (United Kingdom)'),
(9319, 'https://ror.org/054k4qn06', 'no_lang_code', 1, 'https://ror.org/054k4qn06 Advanced Ceramics Manufacturing (United States)'),
(9320, 'https://ror.org/054kmhw06', 'en', 1, 'https://ror.org/054kmhw06 Western Institute For Biomedical Research'),
(9321, 'https://ror.org/054q9r058', 'no_lang_code', 1, 'https://ror.org/054q9r058 Envigo (United States)'),
(9322, 'https://ror.org/054rn8r20', 'en', 1, 'https://ror.org/054rn8r20 San Francisco Community Clinic Consortium'),
(9323, 'https://ror.org/054s8nj77', 'en', 1, 'https://ror.org/054s8nj77 Innovative Designs in Environments for an Aging Society'),
(9324, 'https://ror.org/054sgna66', 'en', 1, 'https://ror.org/054sgna66 Institute of Biochemistry'),
(9325, 'https://ror.org/054spa083', 'en', 1, 'https://ror.org/054spa083 Oregon Health Authority'),
(9326, 'https://ror.org/054tgm925', 'en', 1, 'https://ror.org/054tgm925 Aspirus Wausau Hospital'),
(9327, 'https://ror.org/054vepm81', 'en', 1, 'https://ror.org/054vepm81 Southern Colorado Clinic'),
(9328, 'https://ror.org/054wd3532', 'en', 1, 'https://ror.org/054wd3532 Native American Rehabilitation Association'),
(9329, 'https://ror.org/054wvh509', 'no_lang_code', 1, 'https://ror.org/054wvh509 InDevR (United States)'),
(9330, 'https://ror.org/054xfn086', 'no_lang_code', 1, 'https://ror.org/054xfn086 Supercon (United States)'),
(9331, 'https://ror.org/054ye0e45', 'it', 1, 'https://ror.org/054ye0e45 Istituto di Analisi dei Sistemi ed Informatica Antonio Ruberti'),
(9332, 'https://ror.org/054z08865', 'en', 1, 'https://ror.org/054z08865 Hyogo Prefectural Cancer Center å…µåŗ«ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(9333, 'https://ror.org/054z5aj03', 'no_lang_code', 1, 'https://ror.org/054z5aj03 Ateknea Solutions (Hungary)'),
(9334, 'https://ror.org/0550f5p69', 'no_lang_code', 1, 'https://ror.org/0550f5p69 MultiCell Technologies (United States)'),
(9335, 'https://ror.org/0550hnq49', 'en', 1, 'https://ror.org/0550hnq49 Samuel S Fels Fund'),
(9336, 'https://ror.org/0554dgq35', 'en', 1, 'https://ror.org/0554dgq35 Georgia Department of Behavioral Health and Developmental Disabilities'),
(9337, 'https://ror.org/0556kt608', 'en', 1, 'https://ror.org/0556kt608 Institut International d''Agriculture Tropicale International Institute of Tropical Agriculture'),
(9338, 'https://ror.org/05571bq02', 'en', 1, 'https://ror.org/05571bq02 Teratology Society'),
(9339, 'https://ror.org/0558q2529', 'en', 1, 'https://ror.org/0558q2529 Manchester City Council'),
(9340, 'https://ror.org/0559h9k50', 'en', 1, 'https://ror.org/0559h9k50 Gatorade Sports Science Institute'),
(9341, 'https://ror.org/055a6nt34', 'it', 1, 'https://ror.org/055a6nt34 Servizio Sanitario Nazionale'),
(9342, 'https://ror.org/055bcma36', 'en', 1, 'https://ror.org/055bcma36 Hospital Venereal and Skin Diseases Thessaloniki ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘Ļ†ĻĪæĪ“Ī¹ĻƒĪÆĻ‰Ī½ & Ī”ĪµĻĪ¼Ī±Ļ„Ī¹ĪŗĻŽĪ½ ĪĻŒĻƒĻ‰Ī½ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(9343, 'https://ror.org/055dn7q89', 'no_lang_code', 1, 'https://ror.org/055dn7q89 Neuros Medical (United States)'),
(9344, 'https://ror.org/055epcp86', 'en', 1, 'https://ror.org/055epcp86 Pankey Institute'),
(9345, 'https://ror.org/055geks33', 'en', 1, 'https://ror.org/055geks33 United States Breastfeeding Committee'),
(9346, 'https://ror.org/055h5ke26', 'no_lang_code', 1, 'https://ror.org/055h5ke26 Centre for Computational Continuum Mechanics (Slovenia)'),
(9347, 'https://ror.org/055hfb865', 'en', 1, 'https://ror.org/055hfb865 Carlsberg Laboratory'),
(9348, 'https://ror.org/055keby75', 'no_lang_code', 1, 'https://ror.org/055keby75 Walter Knoll (Germany)'),
(9349, 'https://ror.org/055kr0e44', 'no_lang_code', 1, 'https://ror.org/055kr0e44 ADVA Optical Networking (Germany)'),
(9350, 'https://ror.org/055kym783', 'en', 1, 'https://ror.org/055kym783 Southern New England Rehabilitation Center'),
(9351, 'https://ror.org/055m51988', 'no_lang_code', 1, 'https://ror.org/055m51988 Ohkubo Hospital å¤§ä¹…äæē—…é™¢'),
(9352, 'https://ror.org/055ne9q08', 'en', 1, 'https://ror.org/055ne9q08 Wentworth Hospital'),
(9353, 'https://ror.org/055nj6202', 'fr', 1, 'https://ror.org/055nj6202 Les Scientifines'),
(9354, 'https://ror.org/055p38x79', 'en', 1, 'https://ror.org/055p38x79 Ontario Tobacco Research Unit Unite de Recherche sur le Tabac de L''Ontario'),
(9355, 'https://ror.org/055qxpb63', 'no_lang_code', 1, 'https://ror.org/055qxpb63 EpiVax (United States)'),
(9356, 'https://ror.org/055sayf44', 'no_lang_code', 1, 'https://ror.org/055sayf44 Analogic (Canada)'),
(9357, 'https://ror.org/055sg7x74', 'en', 1, 'https://ror.org/055sg7x74 Headache Care Center'),
(9358, 'https://ror.org/055t7f808', 'en', 1, 'https://ror.org/055t7f808 Hellenic Center for Disease Control & Prevention'),
(9359, 'https://ror.org/055ttwk14', 'en', 1, 'https://ror.org/055ttwk14 Organisation mondiale de la santĆ© World Health Organization - Egypt Š’ŃŠµŠ¼ŠøŃ€Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(9360, 'https://ror.org/055yerj39', 'en', 1, 'https://ror.org/055yerj39 Roy Castle Lung Cancer Foundation'),
(9361, 'https://ror.org/0562sdw81', 'en', 1, 'https://ror.org/0562sdw81 Phillips Academy'),
(9362, 'https://ror.org/0568x1w36', 'no_lang_code', 1, 'https://ror.org/0568x1w36 Industrial Science & Technology Network (United States)'),
(9363, 'https://ror.org/05695qy17', 'pl', 1, 'https://ror.org/05695qy17 Instytut Farmaceutyczny'),
(9364, 'https://ror.org/056d0k256', 'en', 1, 'https://ror.org/056d0k256 Sterling College - Vermont'),
(9365, 'https://ror.org/056ffv270', 'en', 1, 'https://ror.org/056ffv270 Imperial College Healthcare NHS Trust'),
(9366, 'https://ror.org/056gzgs71', 'no_lang_code', 1, 'https://ror.org/056gzgs71 Huawei Technologies (United Kingdom)'),
(9367, 'https://ror.org/056m5ng69', 'it', 1, 'https://ror.org/056m5ng69 Ospedale degli Infermi'),
(9368, 'https://ror.org/056mnr244', 'en', 1, 'https://ror.org/056mnr244 Punjab Institute of Cardiology'),
(9369, 'https://ror.org/056nm0533', 'en', 1, 'https://ror.org/056nm0533 Cooper University Health Care'),
(9370, 'https://ror.org/056nq0726', 'en', 1, 'https://ror.org/056nq0726 Royal Lancaster Infirmary'),
(9371, 'https://ror.org/056pyfd10', 'no_lang_code', 1, 'https://ror.org/056pyfd10 Agile Sciences (United States)'),
(9372, 'https://ror.org/056qqqn18', 'en', 1, 'https://ror.org/056qqqn18 National Disaster Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ē½å®³åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(9373, 'https://ror.org/056qyhq36', 'en', 1, 'https://ror.org/056qyhq36 Preferred Family Healthcare'),
(9374, 'https://ror.org/056v48353', 'en', 1, 'https://ror.org/056v48353 Northern Alberta Institute of Technology'),
(9375, 'https://ror.org/056y35868', 'en', 1, 'https://ror.org/056y35868 New Zealand College of Chiropractic'),
(9376, 'https://ror.org/056za9j29', 'en', 1, 'https://ror.org/056za9j29 Korea Center for Disease Control and Prevention'),
(9377, 'https://ror.org/0570hc946', 'no_lang_code', 1, 'https://ror.org/0570hc946 Targeson (United States)'),
(9378, 'https://ror.org/0576hnt37', 'fr', 1, 'https://ror.org/0576hnt37 QuƩbec Science (Canada)'),
(9379, 'https://ror.org/0577pn814', 'en', 1, 'https://ror.org/0577pn814 Newberry College'),
(9380, 'https://ror.org/0579hfc41', 'no_lang_code', 1, 'https://ror.org/0579hfc41 Ansys (United Kingdom)');
INSERT INTO `rors` VALUES
(9381, 'https://ror.org/057bx8w90', 'no_lang_code', 1, 'https://ror.org/057bx8w90 Kinder Magic Software (United States)'),
(9382, 'https://ror.org/057by3h53', 'en', 1, 'https://ror.org/057by3h53 Houston Headache & Neurological Institute'),
(9383, 'https://ror.org/057fsw088', 'no_lang_code', 1, 'https://ror.org/057fsw088 Recon Instruments (Canada)'),
(9384, 'https://ror.org/057g30m29', 'no_lang_code', 1, 'https://ror.org/057g30m29 2B Technologies (United States)'),
(9385, 'https://ror.org/057gt1g02', 'no_lang_code', 1, 'https://ror.org/057gt1g02 3D Molecular Designs (United States)'),
(9386, 'https://ror.org/057hbdz28', 'en', 1, 'https://ror.org/057hbdz28 Tochigi Medical Center ę ƒęœØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(9387, 'https://ror.org/057jpj338', 'no_lang_code', 1, 'https://ror.org/057jpj338 Pall Corporation (United States)'),
(9388, 'https://ror.org/057k4vd77', 'en', 1, 'https://ror.org/057k4vd77 Hungarian Meat Research Institute'),
(9389, 'https://ror.org/057kyc739', 'en', 1, 'https://ror.org/057kyc739 Vitalant'),
(9390, 'https://ror.org/057m69507', 'no_lang_code', 1, 'https://ror.org/057m69507 Titanium Metals Corporation (United Kingdom)'),
(9391, 'https://ror.org/057n4xq60', 'en', 1, 'https://ror.org/057n4xq60 Institute of Higher Nervous Activity and Neurophysiology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŃˆŠµŠ¹ нервной Š“ŠµŃŃ‚ŠµŠ»ŃŒŠ½Š¾ŃŃ‚Šø Šø нейрофизиологии Российской акаГемии наук'),
(9392, 'https://ror.org/057pedz06', 'en', 1, 'https://ror.org/057pedz06 Lee College'),
(9393, 'https://ror.org/057pf1v38', 'en', 1, 'https://ror.org/057pf1v38 Foundation for Health Care Quality'),
(9394, 'https://ror.org/057q4mw47', 'en', 1, 'https://ror.org/057q4mw47 Lloyd''s Register Foundation'),
(9395, 'https://ror.org/057r09725', 'no_lang_code', 1, 'https://ror.org/057r09725 McKesson (United States)'),
(9396, 'https://ror.org/057v10231', 'no_lang_code', 1, 'https://ror.org/057v10231 AdvanSource Biomaterials (United States)'),
(9397, 'https://ror.org/057vc9k50', 'en', 1, 'https://ror.org/057vc9k50 Tai Po Hospital 大埔醫院'),
(9398, 'https://ror.org/057xckz35', 'no_lang_code', 1, 'https://ror.org/057xckz35 Papa Ola Lokahi'),
(9399, 'https://ror.org/057xmsr27', 'en', 1, 'https://ror.org/057xmsr27 Virginia Commonwealth University Medical Center'),
(9400, 'https://ror.org/057xs4529', 'en', 1, 'https://ror.org/057xs4529 Island Health'),
(9401, 'https://ror.org/057yn3648', 'no_lang_code', 1, 'https://ror.org/057yn3648 Pro Ed (United States)'),
(9402, 'https://ror.org/0580rag35', 'it', 1, 'https://ror.org/0580rag35 Frascati Scienza'),
(9403, 'https://ror.org/0581b6d66', 'en', 1, 'https://ror.org/0581b6d66 Fleming College'),
(9404, 'https://ror.org/0583ded52', 'en', 1, 'https://ror.org/0583ded52 North Dakota Department of Human Services'),
(9405, 'https://ror.org/0583j8v67', 'en', 1, 'https://ror.org/0583j8v67 Strong Memorial Hospital'),
(9406, 'https://ror.org/0584why53', 'en', 1, 'https://ror.org/0584why53 Hagerstown Community College'),
(9407, 'https://ror.org/0584zt830', 'no_lang_code', 1, 'https://ror.org/0584zt830 EndoShape (United States)'),
(9408, 'https://ror.org/0586k5242', 'no_lang_code', 1, 'https://ror.org/0586k5242 Kirin (Japan) ć‚­ćƒŖćƒ³ę Ŗå¼ä¼šē¤¾'),
(9409, 'https://ror.org/058aed112', 'en', 1, 'https://ror.org/058aed112 Los Angeles Community College District'),
(9410, 'https://ror.org/058c0g260', 'en', 1, 'https://ror.org/058c0g260 Neuroscience Education Institute'),
(9411, 'https://ror.org/058dc0w16', 'en', 1, 'https://ror.org/058dc0w16 Beijing Center for Disease Prevention and Control åŒ—äŗ¬åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(9412, 'https://ror.org/058deva64', 'no_lang_code', 1, 'https://ror.org/058deva64 Bio Concept Laboratories (United States)'),
(9413, 'https://ror.org/058dk4619', 'no_lang_code', 1, 'https://ror.org/058dk4619 Endocyte (United States)'),
(9414, 'https://ror.org/058etpm79', 'no_lang_code', 1, 'https://ror.org/058etpm79 Sion Power (United States)'),
(9415, 'https://ror.org/058eyth26', 'no_lang_code', 1, 'https://ror.org/058eyth26 Vemco (Canada)'),
(9416, 'https://ror.org/058hbcp36', 'no_lang_code', 1, 'https://ror.org/058hbcp36 Empirical Technologies (United States)'),
(9417, 'https://ror.org/058kdrc56', 'en', 1, 'https://ror.org/058kdrc56 National Center of Radiobiology and Radiation Protection ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ Ń†ŠµŠ½Ń‚ŃŠŃ€ по Ń€Š°Š“ŠøŠ¾Š±ŠøŠ¾Š»Š¾Š³ŠøŃ Šø раГиационна защита'),
(9418, 'https://ror.org/058ndjg49', 'en', 1, 'https://ror.org/058ndjg49 Logan University'),
(9419, 'https://ror.org/058pkw062', 'en', 1, 'https://ror.org/058pkw062 New York State Unified Court System'),
(9420, 'https://ror.org/058qmst67', 'fr', 1, 'https://ror.org/058qmst67 HƓpital Saint Roch'),
(9421, 'https://ror.org/058sedk89', 'no_lang_code', 1, 'https://ror.org/058sedk89 Laureate Learning Systems (United States)'),
(9422, 'https://ror.org/058t40d22', 'en', 1, 'https://ror.org/058t40d22 Central Leprosy Teaching & Research Institute'),
(9423, 'https://ror.org/058vcb964', 'it', 1, 'https://ror.org/058vcb964 Casa di Cura Villa Bianca'),
(9424, 'https://ror.org/058xqwv02', 'en', 1, 'https://ror.org/058xqwv02 Voluntary Health Services Hospital'),
(9425, 'https://ror.org/058xvac60', 'en', 1, 'https://ror.org/058xvac60 Baltimore Washington Center for Psychoanalysis'),
(9426, 'https://ror.org/0590kp014', 'en', 1, 'https://ror.org/0590kp014 African Field Epidemiology Network'),
(9427, 'https://ror.org/0593f3b93', 'en', 1, 'https://ror.org/0593f3b93 Michigan Psychoanalytic Institute'),
(9428, 'https://ror.org/0593p4448', 'en', 1, 'https://ror.org/0593p4448 International Rice Research Institute'),
(9429, 'https://ror.org/05952x620', 'en', 1, 'https://ror.org/05952x620 Institute of Occupational Safety Zavod za varstvo pri delu'),
(9430, 'https://ror.org/0598xyq26', 'no_lang_code', 1, 'https://ror.org/0598xyq26 TransGenex Nanobiotech (United States)'),
(9431, 'https://ror.org/05998w930', 'en', 1, 'https://ror.org/05998w930 Council on Environmental Quality'),
(9432, 'https://ror.org/0599dmq43', 'en', 1, 'https://ror.org/0599dmq43 Indian Institute of Spices Research'),
(9433, 'https://ror.org/059bxva30', 'no_lang_code', 1, 'https://ror.org/059bxva30 Therapeutic Proteins International (United States)'),
(9434, 'https://ror.org/059gk7j33', 'no_lang_code', 1, 'https://ror.org/059gk7j33 Imperial Innovations (United Kingdom)'),
(9435, 'https://ror.org/059j9s184', 'en', 1, 'https://ror.org/059j9s184 Lone Star College'),
(9436, 'https://ror.org/059jfth35', 'de', 1, 'https://ror.org/059jfth35 Klinikum Stuttgart'),
(9437, 'https://ror.org/059jg0v11', 'en', 1, 'https://ror.org/059jg0v11 Reitan Neuropsychology Laboratory'),
(9438, 'https://ror.org/059kxna68', 'no_lang_code', 1, 'https://ror.org/059kxna68 ActivBiotics (United States)'),
(9439, 'https://ror.org/059kzn841', 'en', 1, 'https://ror.org/059kzn841 Rocky Mountain MS Center'),
(9440, 'https://ror.org/059mgez24', 'en', 1, 'https://ror.org/059mgez24 National Institute of Veterinary Research'),
(9441, 'https://ror.org/059nz2x67', 'en', 1, 'https://ror.org/059nz2x67 New Jersey Department of Human Services'),
(9442, 'https://ror.org/059q0e640', 'no_lang_code', 1, 'https://ror.org/059q0e640 Conciaricerca'),
(9443, 'https://ror.org/059r8r572', 'en', 1, 'https://ror.org/059r8r572 Johnson County Community College'),
(9444, 'https://ror.org/059rn9488', 'no_lang_code', 1, 'https://ror.org/059rn9488 Hewlett-Packard (United States)'),
(9445, 'https://ror.org/059rw1510', 'no_lang_code', 1, 'https://ror.org/059rw1510 Ekso Bionics (United States)'),
(9446, 'https://ror.org/059sp8j34', 'es', 1, 'https://ror.org/059sp8j34 Instituto PolitƩcnico Nacional National Polytechnic Institute'),
(9447, 'https://ror.org/059t16j93', 'no_lang_code', 1, 'https://ror.org/059t16j93 Takatsuki General Hospital é«˜ę§»ē—…é™¢'),
(9448, 'https://ror.org/059tkh055', 'no_lang_code', 1, 'https://ror.org/059tkh055 MYcroarray (United States)'),
(9449, 'https://ror.org/059vag305', 'no_lang_code', 1, 'https://ror.org/059vag305 Covance (United Kingdom)'),
(9450, 'https://ror.org/059x8vm09', 'en', 1, 'https://ror.org/059x8vm09 Gujarat Technological University'),
(9451, 'https://ror.org/059xgqj73', 'en', 1, 'https://ror.org/059xgqj73 Society for Prevention Research'),
(9452, 'https://ror.org/059xksf83', 'no_lang_code', 1, 'https://ror.org/059xksf83 Balfour Beatty (United Kingdom)'),
(9453, 'https://ror.org/059yd5j13', 'en', 1, 'https://ror.org/059yd5j13 Georgetown College'),
(9454, 'https://ror.org/059zrjt20', 'no_lang_code', 1, 'https://ror.org/059zrjt20 TandemLaunch (Canada)'),
(9455, 'https://ror.org/059zyyv27', 'en', 1, 'https://ror.org/059zyyv27 Meta House'),
(9456, 'https://ror.org/05a11cb13', 'en', 1, 'https://ror.org/05a11cb13 Gadsden State Community College'),
(9457, 'https://ror.org/05a15fa50', 'en', 1, 'https://ror.org/05a15fa50 National Museum Wales'),
(9458, 'https://ror.org/05a2kh390', 'no_lang_code', 1, 'https://ror.org/05a2kh390 Pulmokine (United States)'),
(9459, 'https://ror.org/05a33dk65', 'no_lang_code', 1, 'https://ror.org/05a33dk65 Aquilent (United States)'),
(9460, 'https://ror.org/05a3z6914', 'no_lang_code', 1, 'https://ror.org/05a3z6914 Schrodinger (United States)'),
(9461, 'https://ror.org/05a409v92', 'no_lang_code', 1, 'https://ror.org/05a409v92 BioPhyZica (United States)'),
(9462, 'https://ror.org/05a6emh10', 'en', 1, 'https://ror.org/05a6emh10 Osteogenesis Imperfecta Foundation'),
(9463, 'https://ror.org/05a6ey653', 'en', 1, 'https://ror.org/05a6ey653 Dakota County Technical College'),
(9464, 'https://ror.org/05a9hae73', 'es', 1, 'https://ror.org/05a9hae73 Instituto de Medicina Tropical ā€œPedro KourĆ­ā€'),
(9465, 'https://ror.org/05acynk65', 'en', 1, 'https://ror.org/05acynk65 Centre of Biotechnology of Sfax'),
(9466, 'https://ror.org/05ad30n04', 'no_lang_code', 1, 'https://ror.org/05ad30n04 Alceon Corporation (United States)'),
(9467, 'https://ror.org/05addee68', 'no_lang_code', 1, 'https://ror.org/05addee68 General Motors (United States)'),
(9468, 'https://ror.org/05adsq794', 'en', 1, 'https://ror.org/05adsq794 D''Youville College'),
(9469, 'https://ror.org/05agtcg56', 'en', 1, 'https://ror.org/05agtcg56 Mary Bird Perkins Cancer Center'),
(9470, 'https://ror.org/05akaw061', 'no_lang_code', 1, 'https://ror.org/05akaw061 Tekna Plasma Systems (Canada)'),
(9471, 'https://ror.org/05akcvn61', 'en', 1, 'https://ror.org/05akcvn61 Korea National Tuberculosis Association'),
(9472, 'https://ror.org/05amq4n56', 'no_lang_code', 1, 'https://ror.org/05amq4n56 Biological Monitoring Incorporated (United States)'),
(9473, 'https://ror.org/05an61k54', 'en', 1, 'https://ror.org/05an61k54 Bellin College'),
(9474, 'https://ror.org/05and0d04', 'no_lang_code', 1, 'https://ror.org/05and0d04 Therametric Technologies (United States)'),
(9475, 'https://ror.org/05aqjad88', 'no_lang_code', 1, 'https://ror.org/05aqjad88 Astraea Therapeutics (United States)'),
(9476, 'https://ror.org/05arxpe18', 'en', 1, 'https://ror.org/05arxpe18 Billings Clinic'),
(9477, 'https://ror.org/05asn5035', 'en', 1, 'https://ror.org/05asn5035 Tokyo National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹ę±äŗ¬ē—…é™¢'),
(9478, 'https://ror.org/05avmsq62', 'en', 1, 'https://ror.org/05avmsq62 Center for Human Reproduction'),
(9479, 'https://ror.org/05awtjt98', 'en', 1, 'https://ror.org/05awtjt98 Pulmonary Hypertension Association'),
(9480, 'https://ror.org/05ax3zh38', 'en', 1, 'https://ror.org/05ax3zh38 VA Maryland Health Care System'),
(9481, 'https://ror.org/05axs7x03', 'en', 1, 'https://ror.org/05axs7x03 Indian River State College'),
(9482, 'https://ror.org/05azenf09', 'en', 1, 'https://ror.org/05azenf09 New York Psychoanalytic Society and Institute'),
(9483, 'https://ror.org/05b021m32', 'en', 1, 'https://ror.org/05b021m32 Alta Bates Summit Medical Center'),
(9484, 'https://ror.org/05b1skj70', 'no_lang_code', 1, 'https://ror.org/05b1skj70 Sciencetech (Canada)'),
(9485, 'https://ror.org/05b2g5r95', 'en', 1, 'https://ror.org/05b2g5r95 GateWay Community College'),
(9486, 'https://ror.org/05b4xr322', 'en', 1, 'https://ror.org/05b4xr322 Houston Area Community Services'),
(9487, 'https://ror.org/05b56f310', 'en', 1, 'https://ror.org/05b56f310 Transport Scotland'),
(9488, 'https://ror.org/05b58tt16', 'en', 1, 'https://ror.org/05b58tt16 Normandale Community College'),
(9489, 'https://ror.org/05b5q0t82', 'it', 1, 'https://ror.org/05b5q0t82 Azienda Ospedaliera Ospedali Riuniti Papardo Piemonte'),
(9490, 'https://ror.org/05b68f622', 'no_lang_code', 1, 'https://ror.org/05b68f622 Process Simulations Limited (Canada)'),
(9491, 'https://ror.org/05b6w4f42', 'no_lang_code', 1, 'https://ror.org/05b6w4f42 Nordion (Canada)'),
(9492, 'https://ror.org/05b7p8k90', 'en', 1, 'https://ror.org/05b7p8k90 Instytut Immunologii i Terapii Doświadczalnej Ludwik Hirszfeld Institute of Immunology and Experimental Therapy'),
(9493, 'https://ror.org/05b8d3w18', 'en', 1, 'https://ror.org/05b8d3w18 Max Planck Institute of Molecular Cell Biology and Genetics Max-Planck-Institut für Molekulare Zellbiologie und Genetik'),
(9494, 'https://ror.org/05b923192', 'no_lang_code', 1, 'https://ror.org/05b923192 Premitec (United States)'),
(9495, 'https://ror.org/05bb2q223', 'no_lang_code', 1, 'https://ror.org/05bb2q223 BioStar Systems (United States)'),
(9496, 'https://ror.org/05bdncw68', 'no_lang_code', 1, 'https://ror.org/05bdncw68 BioFine International (Canada)'),
(9497, 'https://ror.org/05be2cn20', 'en', 1, 'https://ror.org/05be2cn20 Center for Occupational Research and Development'),
(9498, 'https://ror.org/05be98497', 'en', 1, 'https://ror.org/05be98497 Okinawa Prefectural Institute of Health and Environment å„åŗ·ćØē’°å¢ƒć®ę²–ēø„ēœŒē«‹å¤§å­¦'),
(9499, 'https://ror.org/05bfmm624', 'no_lang_code', 1, 'https://ror.org/05bfmm624 AlphaVax (United States)'),
(9500, 'https://ror.org/05bgcav40', 'en', 1, 'https://ror.org/05bgcav40 National Taichung University of Science and Technology'),
(9501, 'https://ror.org/05bh7ff72', 'fr', 1, 'https://ror.org/05bh7ff72 Centre d’Economie rurale'),
(9502, 'https://ror.org/05bhsww40', 'en', 1, 'https://ror.org/05bhsww40 Scripps Health'),
(9503, 'https://ror.org/05bjbww34', 'en', 1, 'https://ror.org/05bjbww34 Korea Forest Service'),
(9504, 'https://ror.org/05bjd0w70', 'en', 1, 'https://ror.org/05bjd0w70 Chestnut Hill College'),
(9505, 'https://ror.org/05bjen692', 'en', 1, 'https://ror.org/05bjen692 Center for Cancer Research'),
(9506, 'https://ror.org/05bk0hn37', 'no_lang_code', 1, 'https://ror.org/05bk0hn37 Biota Pharmaceuticals (United States)'),
(9507, 'https://ror.org/05bkc5375', 'en', 1, 'https://ror.org/05bkc5375 National Institute for Interdisciplinary Science and Technology ą“Øą“¾ą“·ą“£ąµ½ ą“‡ąµ»ą“øąµą“±ą“±ą“æą“±ą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą“«ąµ‹ąµ¼ ą“‡ąµ»ą“±ąµ¼ ą“”ą“æą“øą“æą“Ŗąµą“³ą“æą“Øą“±ą“æ ą“øą“Æąµ»ą“øąµ ą“…ąµ»ą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ, ą“¤ą“æą“°ąµą“µą“Øą“Øąµą“¤ą“Ŗąµą“°ą“‚'),
(9508, 'https://ror.org/05bm26z17', 'no_lang_code', 1, 'https://ror.org/05bm26z17 Maxeler Technologies (United Kingdom)'),
(9509, 'https://ror.org/05bmcfg03', 'en', 1, 'https://ror.org/05bmcfg03 Patricia and Phillip Frost Museum of Science'),
(9510, 'https://ror.org/05bnyxr41', 'no_lang_code', 1, 'https://ror.org/05bnyxr41 Norbord (Canada)'),
(9511, 'https://ror.org/05bp3jx78', 'en', 1, 'https://ror.org/05bp3jx78 Tokyo Metropolitan Kiyose Children''s Hospital ę±äŗ¬éƒ½ē«‹å°å…ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(9512, 'https://ror.org/05bqk3m74', 'en', 1, 'https://ror.org/05bqk3m74 European Network of Science Centres and Museums'),
(9513, 'https://ror.org/05bsers28', 'fr', 1, 'https://ror.org/05bsers28 Cegep de Victoriaville, CƩgep de victoriaville'),
(9514, 'https://ror.org/05bts0a67', 'en', 1, 'https://ror.org/05bts0a67 National Academy of Medicine'),
(9515, 'https://ror.org/05bx2yj81', 'en', 1, 'https://ror.org/05bx2yj81 Salisbury District Hospital'),
(9516, 'https://ror.org/05by4rq81', 'es', 1, 'https://ror.org/05by4rq81 Instituto de Investigación Nutricional'),
(9517, 'https://ror.org/05bznb153', 'no_lang_code', 1, 'https://ror.org/05bznb153 Romny Scientific (United States)'),
(9518, 'https://ror.org/05c0j1j47', 'no_lang_code', 1, 'https://ror.org/05c0j1j47 MPB Technologies & Communications (Canada)'),
(9519, 'https://ror.org/05c244n89', 'no_lang_code', 1, 'https://ror.org/05c244n89 Cedrat Technologies (France)'),
(9520, 'https://ror.org/05c27eq92', 'no_lang_code', 1, 'https://ror.org/05c27eq92 Thomas Swan (United Kingdom)'),
(9521, 'https://ror.org/05c2mc090', 'no_lang_code', 1, 'https://ror.org/05c2mc090 Immunovaccine (Canada)'),
(9522, 'https://ror.org/05c2ymw43', 'no_lang_code', 1, 'https://ror.org/05c2ymw43 Genaera (United States)'),
(9523, 'https://ror.org/05c32fk96', 'no_lang_code', 1, 'https://ror.org/05c32fk96 Atkinson Noland and Associates (United States)'),
(9524, 'https://ror.org/05c37ft41', 'no_lang_code', 1, 'https://ror.org/05c37ft41 Agiltron (United States)'),
(9525, 'https://ror.org/05c5e7249', 'en', 1, 'https://ror.org/05c5e7249 United States Military Entrance Processing Command'),
(9526, 'https://ror.org/05ca9hc42', 'no_lang_code', 1, 'https://ror.org/05ca9hc42 Bentley (Canada)'),
(9527, 'https://ror.org/05cajf655', 'en', 1, 'https://ror.org/05cajf655 Southwest College of Naturopathic Medicine & Health Sciences'),
(9528, 'https://ror.org/05canvq15', 'no_lang_code', 1, 'https://ror.org/05canvq15 Predictive Science (United States)'),
(9529, 'https://ror.org/05caz9x08', 'no_lang_code', 1, 'https://ror.org/05caz9x08 ATiT (Belgium)'),
(9530, 'https://ror.org/05ccach65', 'en', 1, 'https://ror.org/05ccach65 Gerald P. Murphy Cancer Foundation'),
(9531, 'https://ror.org/05cd81677', 'en', 1, 'https://ror.org/05cd81677 Association of Bay Area Governments'),
(9532, 'https://ror.org/05cdppq10', 'no_lang_code', 1, 'https://ror.org/05cdppq10 Theralogix (United States)'),
(9533, 'https://ror.org/05cf1h383', 'en', 1, 'https://ror.org/05cf1h383 Association of Maternal and Child Health Programs'),
(9534, 'https://ror.org/05cfcmn93', 'no_lang_code', 1, 'https://ror.org/05cfcmn93 AeroVironment (United States)'),
(9535, 'https://ror.org/05cg3j211', 'it', 1, 'https://ror.org/05cg3j211 Fondazione Andrea Cesalpino'),
(9536, 'https://ror.org/05chw4760', 'no_lang_code', 1, 'https://ror.org/05chw4760 Tekion (Canada)'),
(9537, 'https://ror.org/05chwyh56', 'en', 1, 'https://ror.org/05chwyh56 Princess Alexandra Hospital'),
(9538, 'https://ror.org/05cj88g33', 'en', 1, 'https://ror.org/05cj88g33 American Association of Engineering Societies'),
(9539, 'https://ror.org/05cjk9k86', 'pt', 1, 'https://ror.org/05cjk9k86 Fundação Pró-Sangue Hemocentro de São Paulo'),
(9540, 'https://ror.org/05cjt1n05', 'nl', 1, 'https://ror.org/05cjt1n05 Instituut voor Landbouw en Visserijonderzoek'),
(9541, 'https://ror.org/05cnc7n16', 'no_lang_code', 1, 'https://ror.org/05cnc7n16 Newton Scientific Incorporation (United States)'),
(9542, 'https://ror.org/05cnqje12', 'no_lang_code', 1, 'https://ror.org/05cnqje12 Molecular Targeting Technologies (United States)'),
(9543, 'https://ror.org/05cqe9350', 'no_lang_code', 1, 'https://ror.org/05cqe9350 Xijing Hospital č„æäŗ¬åŒ»é™¢'),
(9544, 'https://ror.org/05crd7855', 'en', 1, 'https://ror.org/05crd7855 Prescott College'),
(9545, 'https://ror.org/05csqsw96', 'no_lang_code', 1, 'https://ror.org/05csqsw96 Mendel Biotechnology (United States)'),
(9546, 'https://ror.org/05ct4fn38', 'en', 1, 'https://ror.org/05ct4fn38 Beijing Academy of Science and Technology åŒ—äŗ¬åø‚ē”µåŠ å·„ē ”ē©¶ę‰€'),
(9547, 'https://ror.org/05cvxat96', 'en', 1, 'https://ror.org/05cvxat96 Walton Centre'),
(9548, 'https://ror.org/05cvz6v56', 'no_lang_code', 1, 'https://ror.org/05cvz6v56 StemCells (United States)'),
(9549, 'https://ror.org/05cw2qj02', 'en', 1, 'https://ror.org/05cw2qj02 Cambrian College'),
(9550, 'https://ror.org/05cw2ys85', 'no_lang_code', 1, 'https://ror.org/05cw2ys85 Ecovative Design (United States)'),
(9551, 'https://ror.org/05cwghy20', 'no_lang_code', 1, 'https://ror.org/05cwghy20 Zen-Noh (Japan) å…Øå›½č¾²ę„­å”åŒēµ„åˆé€£åˆä¼š'),
(9552, 'https://ror.org/05cx8ry19', 'no_lang_code', 1, 'https://ror.org/05cx8ry19 Neural Signals (United States)'),
(9553, 'https://ror.org/05d0qsh22', 'no_lang_code', 1, 'https://ror.org/05d0qsh22 Advanced Cell Technology (United States)'),
(9554, 'https://ror.org/05d4gem91', 'no_lang_code', 1, 'https://ror.org/05d4gem91 BLH Technologies (United States)'),
(9555, 'https://ror.org/05d5x4r54', 'no_lang_code', 1, 'https://ror.org/05d5x4r54 Sani Marc (Canada)'),
(9556, 'https://ror.org/05d692120', 'en', 1, 'https://ror.org/05d692120 Lawson State Community College'),
(9557, 'https://ror.org/05d7pr418', 'en', 1, 'https://ror.org/05d7pr418 Wesleyan College'),
(9558, 'https://ror.org/05d8b8w20', 'en', 1, 'https://ror.org/05d8b8w20 Plano Orthopedic Sports Medicine & Spine Center'),
(9559, 'https://ror.org/05d8zd458', 'en', 1, 'https://ror.org/05d8zd458 Truman Medical Center'),
(9560, 'https://ror.org/05d9ms657', 'es', 1, 'https://ror.org/05d9ms657 Sociedad EspaƱola de Cardiologƭa'),
(9561, 'https://ror.org/05db0nr49', 'en', 1, 'https://ror.org/05db0nr49 San Francisco Center for Psychoanalysis'),
(9562, 'https://ror.org/05dd1kk08', 'no_lang_code', 1, 'https://ror.org/05dd1kk08 Suraj Eye Institute'),
(9563, 'https://ror.org/05ddg7v64', 'nl', 1, 'https://ror.org/05ddg7v64 Nederlands Instituut Voor Zuivel Oonderzoek'),
(9564, 'https://ror.org/05de34168', 'no_lang_code', 1, 'https://ror.org/05de34168 Ganeden Biotech (United States)'),
(9565, 'https://ror.org/05denqv03', 'fr', 1, 'https://ror.org/05denqv03 Centre de Robotique IntƩgrƩe d''Ile de France'),
(9566, 'https://ror.org/05dfgqr03', 'en', 1, 'https://ror.org/05dfgqr03 AltaMed'),
(9567, 'https://ror.org/05dfnrn76', 'de', 1, 'https://ror.org/05dfnrn76 IFT Institut für Therapieforschung Institute for Therapy and Health Research'),
(9568, 'https://ror.org/05dj1xv70', 'en', 1, 'https://ror.org/05dj1xv70 Academy of Nutrition and Dietetics'),
(9569, 'https://ror.org/05dkjfz60', 'en', 1, 'https://ror.org/05dkjfz60 Kumoh National Institute of Technology źøˆģ˜¤ź³µź³¼ėŒ€ķ•™źµ'),
(9570, 'https://ror.org/05dpzfc16', 'nl', 1, 'https://ror.org/05dpzfc16 Ziekenhuisnetwerk Antwerpen Stuivenberg'),
(9571, 'https://ror.org/05dqmqj96', 'es', 1, 'https://ror.org/05dqmqj96 Instituto Chileno de Medicina Reproductiva'),
(9572, 'https://ror.org/05drhbp30', 'no_lang_code', 1, 'https://ror.org/05drhbp30 GMA Industries (United States)'),
(9573, 'https://ror.org/05drnnd98', 'en', 1, 'https://ror.org/05drnnd98 National Center for Epidemiology OrszÔgos Epidemiológiai Központ'),
(9574, 'https://ror.org/05drpm847', 'it', 1, 'https://ror.org/05drpm847 Ospedale Civile di Venezia'),
(9575, 'https://ror.org/05ds0kz06', 'en', 1, 'https://ror.org/05ds0kz06 Boston Psychoanalytic Society and Institute'),
(9576, 'https://ror.org/05dwj7825', 'it', 1, 'https://ror.org/05dwj7825 Fondazione IRCCS Istituto Nazionale dei Tumori'),
(9577, 'https://ror.org/05dyqe421', 'en', 1, 'https://ror.org/05dyqe421 Knowle West Media Centre'),
(9578, 'https://ror.org/05e168j76', 'en', 1, 'https://ror.org/05e168j76 Bristol Community College'),
(9579, 'https://ror.org/05e1mzh65', 'no_lang_code', 1, 'https://ror.org/05e1mzh65 Ophir Corporation (United States)'),
(9580, 'https://ror.org/05e2txa39', 'no_lang_code', 1, 'https://ror.org/05e2txa39 Exemplar Genetics (United States)'),
(9581, 'https://ror.org/05e456743', 'en', 1, 'https://ror.org/05e456743 Lovelace Clinic Foundation Research'),
(9582, 'https://ror.org/05e4dfg87', 'no_lang_code', 1, 'https://ror.org/05e4dfg87 Skyre (United States)'),
(9583, 'https://ror.org/05e4r8189', 'en', 1, 'https://ror.org/05e4r8189 Cuyahoga County Board of Health'),
(9584, 'https://ror.org/05e5waw95', 'en', 1, 'https://ror.org/05e5waw95 Elmhurst College'),
(9585, 'https://ror.org/05e6mjz86', 'no_lang_code', 1, 'https://ror.org/05e6mjz86 Creative Electron (United States)'),
(9586, 'https://ror.org/05e8s8534', 'fr', 1, 'https://ror.org/05e8s8534 Institut Jules Bordet'),
(9587, 'https://ror.org/05ear3j66', 'no_lang_code', 1, 'https://ror.org/05ear3j66 Dynaflow (United States)'),
(9588, 'https://ror.org/05eb35r14', 'en', 1, 'https://ror.org/05eb35r14 Roseman University of Health Sciences'),
(9589, 'https://ror.org/05ebz1r33', 'en', 1, 'https://ror.org/05ebz1r33 Big Little Science Centre'),
(9590, 'https://ror.org/05eca5w86', 'en', 1, 'https://ror.org/05eca5w86 Riverside Community College District'),
(9591, 'https://ror.org/05ech9204', 'en', 1, 'https://ror.org/05ech9204 St. John Fisher College'),
(9592, 'https://ror.org/05eef5147', 'en', 1, 'https://ror.org/05eef5147 DNA EpiCenter'),
(9593, 'https://ror.org/05ef28661', 'en', 1, 'https://ror.org/05ef28661 Institute of Genomics and Integrative Biology'),
(9594, 'https://ror.org/05efr5n38', 'en', 1, 'https://ror.org/05efr5n38 Taranaki Base Hospital'),
(9595, 'https://ror.org/05em3zk56', 'en', 1, 'https://ror.org/05em3zk56 National Minority AIDS Council'),
(9596, 'https://ror.org/05ent1n34', 'no_lang_code', 1, 'https://ror.org/05ent1n34 Cytoskeleton (United States)'),
(9597, 'https://ror.org/05epvtb78', 'no_lang_code', 1, 'https://ror.org/05epvtb78 Parion Sciences (United States)'),
(9598, 'https://ror.org/05eqk2j25', 'en', 1, 'https://ror.org/05eqk2j25 Fraunhofer Portugal Research'),
(9599, 'https://ror.org/05es84h77', 'no_lang_code', 1, 'https://ror.org/05es84h77 Segue Corporation (United States)'),
(9600, 'https://ror.org/05etrx234', 'en', 1, 'https://ror.org/05etrx234 National AIDS Research Institute'),
(9601, 'https://ror.org/05eyymj94', 'fr', 1, 'https://ror.org/05eyymj94 L’École SupĆ©rieure de Biotechnologie de Strasbourg, Ɖcole SupĆ©rieure de Biotechnologie de Strasbourg'),
(9602, 'https://ror.org/05ez4gg94', 'en', 1, 'https://ror.org/05ez4gg94 Alberta Centre for Advanced MNT Products (Canada)'),
(9603, 'https://ror.org/05ezt9354', 'en', 1, 'https://ror.org/05ezt9354 La Jolla Infectious Disease Institute'),
(9604, 'https://ror.org/05f0q4986', 'no_lang_code', 1, 'https://ror.org/05f0q4986 Council on Alcohol and Drugs (United States)'),
(9605, 'https://ror.org/05f1fs902', 'no_lang_code', 1, 'https://ror.org/05f1fs902 Rocky Mountain Research (United States)'),
(9606, 'https://ror.org/05f21rh68', 'en', 1, 'https://ror.org/05f21rh68 Lincoln Land Community College'),
(9607, 'https://ror.org/05f2xbq60', 'en', 1, 'https://ror.org/05f2xbq60 Crohn''s and Colitis Foundation'),
(9608, 'https://ror.org/05f37kp03', 'en', 1, 'https://ror.org/05f37kp03 Chemeketa Community College'),
(9609, 'https://ror.org/05f4e7p75', 'no_lang_code', 1, 'https://ror.org/05f4e7p75 Visual Health Solutions (United States)'),
(9610, 'https://ror.org/05f4w0r25', 'no_lang_code', 1, 'https://ror.org/05f4w0r25 M Squared Lasers (United Kingdom)'),
(9611, 'https://ror.org/05f705338', 'no_lang_code', 1, 'https://ror.org/05f705338 PharmIdeas (Canada)'),
(9612, 'https://ror.org/05f7kgd45', 'en', 1, 'https://ror.org/05f7kgd45 Rothberg Institute For Childhood Diseases'),
(9613, 'https://ror.org/05f87be95', 'en', 1, 'https://ror.org/05f87be95 Tucson Medical Center'),
(9614, 'https://ror.org/05f8zcs55', 'en', 1, 'https://ror.org/05f8zcs55 Institute of Biocybernetics and Biomedical Engineering'),
(9615, 'https://ror.org/05f9h3891', 'en', 1, 'https://ror.org/05f9h3891 Woman''s Hospital'),
(9616, 'https://ror.org/05fbr1r82', 'no_lang_code', 1, 'https://ror.org/05fbr1r82 UTRON Kinetics (United States)'),
(9617, 'https://ror.org/05fep6742', 'en', 1, 'https://ror.org/05fep6742 Midwest Orthopaedic Research Foundation'),
(9618, 'https://ror.org/05feyya22', 'no_lang_code', 1, 'https://ror.org/05feyya22 Cancer Genetics (United States)'),
(9619, 'https://ror.org/05ffsv137', 'no_lang_code', 1, 'https://ror.org/05ffsv137 Light Age (United States)'),
(9620, 'https://ror.org/05fhv2c54', 'en', 1, 'https://ror.org/05fhv2c54 Charitable Infirmary'),
(9621, 'https://ror.org/05fr7hy44', 'no_lang_code', 1, 'https://ror.org/05fr7hy44 Radisys (Canada)'),
(9622, 'https://ror.org/05frf9c55', 'en', 1, 'https://ror.org/05frf9c55 Merri Creek Management Committee'),
(9623, 'https://ror.org/05ft74b02', 'no_lang_code', 1, 'https://ror.org/05ft74b02 Photoswitch Biosciences (United States)'),
(9624, 'https://ror.org/05ftwc327', 'en', 1, 'https://ror.org/05ftwc327 International Tomography Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ томографический центр Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(9625, 'https://ror.org/05fv8sy52', 'en', 1, 'https://ror.org/05fv8sy52 Tzu Chi College of Technology ę…ˆęæŸęŠ€č”“å­øé™¢'),
(9626, 'https://ror.org/05fxhrw65', 'en', 1, 'https://ror.org/05fxhrw65 Endocrine Society'),
(9627, 'https://ror.org/05g2n4m79', 'no_lang_code', 1, 'https://ror.org/05g2n4m79 Intuitive Surgical (United States)'),
(9628, 'https://ror.org/05g42cb02', 'en', 1, 'https://ror.org/05g42cb02 Netcare Sunninghill Hospital'),
(9629, 'https://ror.org/05g8vd955', 'no_lang_code', 1, 'https://ror.org/05g8vd955 KWS (United Kingdom)'),
(9630, 'https://ror.org/05gabt952', 'hu', 1, 'https://ror.org/05gabt952 OrszÔgos Reumatológiai és FizioterÔpiÔs Intézet'),
(9631, 'https://ror.org/05gbnpz65', 'en', 1, 'https://ror.org/05gbnpz65 Institute of Cell Biophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики клетки Российской акаГемии наук'),
(9632, 'https://ror.org/05gcn3678', 'en', 1, 'https://ror.org/05gcn3678 Whittemore Peterson Institute'),
(9633, 'https://ror.org/05gcq4j10', 'en', 1, 'https://ror.org/05gcq4j10 Clatterbridge Cancer Centre NHS Foundation Trust'),
(9634, 'https://ror.org/05gd4rg64', 'no_lang_code', 1, 'https://ror.org/05gd4rg64 InterPhases Solar (United States)'),
(9635, 'https://ror.org/05gedqb32', 'no_lang_code', 1, 'https://ror.org/05gedqb32 GlaxoSmithKline (Germany)'),
(9636, 'https://ror.org/05gekvn04', 'en', 1, 'https://ror.org/05gekvn04 Bradford Teaching Hospitals NHS Foundation Trust'),
(9637, 'https://ror.org/05gf8nd15', 'en', 1, 'https://ror.org/05gf8nd15 Parkland College'),
(9638, 'https://ror.org/05ggej879', 'no_lang_code', 1, 'https://ror.org/05ggej879 HeartVista (United States)'),
(9639, 'https://ror.org/05ggkk749', 'en', 1, 'https://ror.org/05ggkk749 Center for Applied Special Technology'),
(9640, 'https://ror.org/05ggvgr57', 'no_lang_code', 1, 'https://ror.org/05ggvgr57 Repligen (United States)'),
(9641, 'https://ror.org/05gh7zh89', 'no_lang_code', 1, 'https://ror.org/05gh7zh89 Protasis (United States)'),
(9642, 'https://ror.org/05gkz0v31', 'it', 1, 'https://ror.org/05gkz0v31 Istituto Cantonale di Patologia'),
(9643, 'https://ror.org/05gr4yv49', 'en', 1, 'https://ror.org/05gr4yv49 Bellevue College'),
(9644, 'https://ror.org/05gtpxs59', 'en', 1, 'https://ror.org/05gtpxs59 Aichi Prefectural Government ę„›ēŸ„ēœŒ'),
(9645, 'https://ror.org/05gy1hc18', 'en', 1, 'https://ror.org/05gy1hc18 Advocates for Youth'),
(9646, 'https://ror.org/05h1kgg64', 'en', 1, 'https://ror.org/05h1kgg64 National Institute of Health'),
(9647, 'https://ror.org/05h2kgw82', 'no_lang_code', 1, 'https://ror.org/05h2kgw82 SciMed Technologies (Canada)'),
(9648, 'https://ror.org/05h3c9j32', 'no_lang_code', 1, 'https://ror.org/05h3c9j32 Allied Innovative Systems (United States)'),
(9649, 'https://ror.org/05h3de220', 'en', 1, 'https://ror.org/05h3de220 Mount Saint Mary College'),
(9650, 'https://ror.org/05h6g8g36', 'en', 1, 'https://ror.org/05h6g8g36 Association of Food and Drug Officials'),
(9651, 'https://ror.org/05h6r6f02', 'no_lang_code', 1, 'https://ror.org/05h6r6f02 Saiseikai Yahata General Hospital ē¦å²”ēœŒęøˆē”Ÿä¼šå…«å¹”ē·åˆē—…é™¢'),
(9652, 'https://ror.org/05h8pb290', 'fr', 1, 'https://ror.org/05h8pb290 Institut National de Criminalistique et de Criminologie Nationaal Instituut voor Criminalistiek en Criminologie'),
(9653, 'https://ror.org/05h9b8n23', 'no_lang_code', 1, 'https://ror.org/05h9b8n23 Diagnostics for the Real World (United States)'),
(9654, 'https://ror.org/05hacyq28', 'en', 1, 'https://ror.org/05hacyq28 Kessler Foundation'),
(9655, 'https://ror.org/05hatwc22', 'en', 1, 'https://ror.org/05hatwc22 Palladin Institute of Biochemistry Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біохімії ім Šž.Š’ ŠŸŠ°Š»Š»Š°Š“Ń–Š½Š°'),
(9656, 'https://ror.org/05hb2h012', 'no_lang_code', 1, 'https://ror.org/05hb2h012 Arietis (United States)'),
(9657, 'https://ror.org/05hb58293', 'no_lang_code', 1, 'https://ror.org/05hb58293 Immunotope (United States)'),
(9658, 'https://ror.org/05hb9gz45', 'en', 1, 'https://ror.org/05hb9gz45 Calspan-University of Buffalo Research Center'),
(9659, 'https://ror.org/05hek7k69', 'it', 1, 'https://ror.org/05hek7k69 Azienda di Rilievo Nazionale ed Alta Specializzazione'),
(9660, 'https://ror.org/05hfrht78', 'no_lang_code', 1, 'https://ror.org/05hfrht78 Vista Engineering (United States)'),
(9661, 'https://ror.org/05hgh7849', 'no_lang_code', 1, 'https://ror.org/05hgh7849 Walker (United States)'),
(9662, 'https://ror.org/05hgzy544', 'no_lang_code', 1, 'https://ror.org/05hgzy544 Yokohama Sakae Kyosai Hospital ęØŖęµœę „å…±ęøˆē—…é™¢'),
(9663, 'https://ror.org/05hkmas65', 'en', 1, 'https://ror.org/05hkmas65 Baptist Hospital 침딀병원'),
(9664, 'https://ror.org/05hmeb585', 'no_lang_code', 1, 'https://ror.org/05hmeb585 Loadpoint (United Kingdom)'),
(9665, 'https://ror.org/05hmfw828', 'fr', 1, 'https://ror.org/05hmfw828 Centre Antoine Lacassagne'),
(9666, 'https://ror.org/05hnmtf25', 'en', 1, 'https://ror.org/05hnmtf25 Shorter University'),
(9667, 'https://ror.org/05hpcxv81', 'no_lang_code', 1, 'https://ror.org/05hpcxv81 Puresyn (United States)'),
(9668, 'https://ror.org/05hqmfv86', 'en', 1, 'https://ror.org/05hqmfv86 Student Pugwash USA'),
(9669, 'https://ror.org/05hr7qe62', 'no_lang_code', 1, 'https://ror.org/05hr7qe62 Genetika Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетики Šø селекции ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Ń‹Ń… микроорганизмов'),
(9670, 'https://ror.org/05hx1vp23', 'en', 1, 'https://ror.org/05hx1vp23 Institute of Cytology and Preventive Oncology'),
(9671, 'https://ror.org/05hzjby53', 'no_lang_code', 1, 'https://ror.org/05hzjby53 Potomac Affinity Proteins (United States)'),
(9672, 'https://ror.org/05j0wr821', 'no_lang_code', 1, 'https://ror.org/05j0wr821 Oxford Instruments (Canada)'),
(9673, 'https://ror.org/05j1fg548', 'en', 1, 'https://ror.org/05j1fg548 Indiana Hemophilia and Thrombosis Center'),
(9674, 'https://ror.org/05j1w2b44', 'de', 1, 'https://ror.org/05j1w2b44 Klinikum Bremen-Mitte'),
(9675, 'https://ror.org/05j27jv73', 'en', 1, 'https://ror.org/05j27jv73 Northampton Community College'),
(9676, 'https://ror.org/05j2wxx71', 'en', 1, 'https://ror.org/05j2wxx71 Western Maine Health'),
(9677, 'https://ror.org/05j34rw34', 'en', 1, 'https://ror.org/05j34rw34 El Dorado Hills Community Vision'),
(9678, 'https://ror.org/05j40pq70', 'en', 1, 'https://ror.org/05j40pq70 Saitama Red Cross Hospital ć•ć„ćŸć¾čµ¤åå­—ē—…é™¢'),
(9679, 'https://ror.org/05j4k4050', 'no_lang_code', 1, 'https://ror.org/05j4k4050 Innoval Technology (United Kingdom)'),
(9680, 'https://ror.org/05j4prr94', 'es', 1, 'https://ror.org/05j4prr94 Instituto MƩdico La Floresta'),
(9681, 'https://ror.org/05j8x4n38', 'en', 1, 'https://ror.org/05j8x4n38 San Francisco General Hospital'),
(9682, 'https://ror.org/05jbyqz27', 'fr', 1, 'https://ror.org/05jbyqz27 Museum of Man MusƩe de l''Homme'),
(9683, 'https://ror.org/05jccej20', 'fr', 1, 'https://ror.org/05jccej20 Centre Hospitalier RƩgional de Huy'),
(9684, 'https://ror.org/05jckef59', 'no_lang_code', 1, 'https://ror.org/05jckef59 Rimage Corporation (United States)'),
(9685, 'https://ror.org/05jd5ze73', 'en', 1, 'https://ror.org/05jd5ze73 Joliet Junior College'),
(9686, 'https://ror.org/05je2tx78', 'en', 1, 'https://ror.org/05je2tx78 National Center for Immunization and Respiratory Diseases'),
(9687, 'https://ror.org/05jf3ct62', 'en', 1, 'https://ror.org/05jf3ct62 Ohlone College'),
(9688, 'https://ror.org/05jg03a59', 'en', 1, 'https://ror.org/05jg03a59 Butterfly Conservation'),
(9689, 'https://ror.org/05jg9pj51', 'en', 1, 'https://ror.org/05jg9pj51 Plant Industry'),
(9690, 'https://ror.org/05jgy0m16', 'no_lang_code', 1, 'https://ror.org/05jgy0m16 Meso Scale Discovery (United States)'),
(9691, 'https://ror.org/05jgyck31', 'en', 1, 'https://ror.org/05jgyck31 San Antonio Metropolitan Health District'),
(9692, 'https://ror.org/05jjfxd82', 'en', 1, 'https://ror.org/05jjfxd82 New Mexico Museum of Natural History Foundation'),
(9693, 'https://ror.org/05jn35f24', 'no_lang_code', 1, 'https://ror.org/05jn35f24 Thinktank'),
(9694, 'https://ror.org/05jr4qt09', 'en', 1, 'https://ror.org/05jr4qt09 Stamford Hospital'),
(9695, 'https://ror.org/05jsgsm79', 'en', 1, 'https://ror.org/05jsgsm79 Evergreen Valley College'),
(9696, 'https://ror.org/05jvgwr81', 'en', 1, 'https://ror.org/05jvgwr81 National Institute of Medical Rehabilitation OrszÔgos Orvosi RehabilitÔciós Intézet'),
(9697, 'https://ror.org/05jvwsc13', 'no_lang_code', 1, 'https://ror.org/05jvwsc13 Terra Nova Learning Systems (United States)'),
(9698, 'https://ror.org/05jyj3645', 'no_lang_code', 1, 'https://ror.org/05jyj3645 Evergen Biotechnologies (United States)'),
(9699, 'https://ror.org/05jyway09', 'no_lang_code', 1, 'https://ror.org/05jyway09 Layton BioScience (United States)'),
(9700, 'https://ror.org/05k1smr06', 'cs', 1, 'https://ror.org/05k1smr06 Nemocnice Å ternberk'),
(9701, 'https://ror.org/05k1yyh03', 'no_lang_code', 1, 'https://ror.org/05k1yyh03 Human Genome Sciences (United States)'),
(9702, 'https://ror.org/05k2ttb40', 'no_lang_code', 1, 'https://ror.org/05k2ttb40 ACTeon Environment (France)'),
(9703, 'https://ror.org/05k2xsz75', 'es', 1, 'https://ror.org/05k2xsz75 Academia Nacional de Medicina Buenos Aires National Academy of Medicine'),
(9704, 'https://ror.org/05k4a7g87', 'en', 1, 'https://ror.org/05k4a7g87 National Kidney and Transplant Institute'),
(9705, 'https://ror.org/05k637k59', 'es', 1, 'https://ror.org/05k637k59 Instituto Nacional de NeurologĆ­a y NeurocirugĆ­a National Institute of Neurology and Neurosurgery'),
(9706, 'https://ror.org/05k7cyf48', 'en', 1, 'https://ror.org/05k7cyf48 Clinical Research Management'),
(9707, 'https://ror.org/05k8s4246', 'en', 1, 'https://ror.org/05k8s4246 La Frontera Arizona'),
(9708, 'https://ror.org/05k91zb11', 'no_lang_code', 1, 'https://ror.org/05k91zb11 Sony Corporation (United States)'),
(9709, 'https://ror.org/05kbvgd57', 'fr', 1, 'https://ror.org/05kbvgd57 Banque Populaire'),
(9710, 'https://ror.org/05kffp613', 'no_lang_code', 1, 'https://ror.org/05kffp613 Boehringer Ingelheim (United States)'),
(9711, 'https://ror.org/05kh5wx29', 'en', 1, 'https://ror.org/05kh5wx29 Agrifood Research Finland'),
(9712, 'https://ror.org/05kk38g92', 'no_lang_code', 1, 'https://ror.org/05kk38g92 Fairfield Crystal Technology (United States)'),
(9713, 'https://ror.org/05knjzg24', 'no_lang_code', 1, 'https://ror.org/05knjzg24 Glycobia (United States)'),
(9714, 'https://ror.org/05kpczz35', 'no_lang_code', 1, 'https://ror.org/05kpczz35 Hexagon (United Kingdom)'),
(9715, 'https://ror.org/05kq0x475', 'no_lang_code', 1, 'https://ror.org/05kq0x475 ProSensus (Canada)'),
(9716, 'https://ror.org/05krxy197', 'en', 1, 'https://ror.org/05krxy197 Profil Institut für Stoffwechselforschung Profil Institute for Metabolic Research'),
(9717, 'https://ror.org/05kv34a53', 'no_lang_code', 1, 'https://ror.org/05kv34a53 East Malling Research (United Kingdom)'),
(9718, 'https://ror.org/05kvs8e70', 'no_lang_code', 1, 'https://ror.org/05kvs8e70 Sunnyside Sea Farms (United States)'),
(9719, 'https://ror.org/05kvxgx64', 'en', 1, 'https://ror.org/05kvxgx64 The AIDS Support Organization'),
(9720, 'https://ror.org/05kwjwj05', 'en', 1, 'https://ror.org/05kwjwj05 Scripps Clinic'),
(9721, 'https://ror.org/05kwwke37', 'en', 1, 'https://ror.org/05kwwke37 Hertfordshire County Council'),
(9722, 'https://ror.org/05kx0wb86', 'en', 1, 'https://ror.org/05kx0wb86 York Central Hospital'),
(9723, 'https://ror.org/05m0yjz71', 'no_lang_code', 1, 'https://ror.org/05m0yjz71 TRW Automotive (United Kingdom)'),
(9724, 'https://ror.org/05m25pj04', 'sr', 1, 'https://ror.org/05m25pj04 Institut za zdravstvenu zaŔtitu dece i omladine Vojvodine'),
(9725, 'https://ror.org/05m5j6s60', 'en', 1, 'https://ror.org/05m5j6s60 University of Saint Joseph UniversitƩ saint joseph'),
(9726, 'https://ror.org/05m6c4y02', 'en', 1, 'https://ror.org/05m6c4y02 St. Tammany Parish Public School System'),
(9727, 'https://ror.org/05m762q77', 'no_lang_code', 1, 'https://ror.org/05m762q77 Tianjin haihe hospital å¤©ę“„åø‚ęµ·ę²³åŒ»é™¢'),
(9728, 'https://ror.org/05m7r3n78', 'no_lang_code', 1, 'https://ror.org/05m7r3n78 Otemae Hospital å¤§ę‰‹å‰ē—…é™¢'),
(9729, 'https://ror.org/05m8hpg39', 'en', 1, 'https://ror.org/05m8hpg39 London First'),
(9730, 'https://ror.org/05mbkbj54', 'en', 1, 'https://ror.org/05mbkbj54 Departamento de Trabajo de los Estados Unidos DĆ©partement du travail des Ɖtats-unis United States Department of Labor'),
(9731, 'https://ror.org/05mbqa235', 'en', 1, 'https://ror.org/05mbqa235 Ecosystem Sciences'),
(9732, 'https://ror.org/05megwx07', 'en', 1, 'https://ror.org/05megwx07 Southern California Orthopedic Institute'),
(9733, 'https://ror.org/05mgcmd27', 'no_lang_code', 1, 'https://ror.org/05mgcmd27 Medpace (United States)'),
(9734, 'https://ror.org/05mgfq941', 'en', 1, 'https://ror.org/05mgfq941 Stroke Association'),
(9735, 'https://ror.org/05mgrg543', 'no_lang_code', 1, 'https://ror.org/05mgrg543 Salford Systems (United States)'),
(9736, 'https://ror.org/05mh3a113', 'no_lang_code', 1, 'https://ror.org/05mh3a113 BioElectronics (United States)'),
(9737, 'https://ror.org/05mhde728', 'no_lang_code', 1, 'https://ror.org/05mhde728 John Lewis Partnership (United Kingdom)'),
(9738, 'https://ror.org/05mk5sy16', 'no_lang_code', 1, 'https://ror.org/05mk5sy16 K&A Wireless (United States)'),
(9739, 'https://ror.org/05mk8am30', 'en', 1, 'https://ror.org/05mk8am30 National Safety Council'),
(9740, 'https://ror.org/05mm5v065', 'en', 1, 'https://ror.org/05mm5v065 Sheffield City Council'),
(9741, 'https://ror.org/05mmkk893', 'en', 1, 'https://ror.org/05mmkk893 Center for Facial Appearances'),
(9742, 'https://ror.org/05mnftd11', 'en', 1, 'https://ror.org/05mnftd11 Center for Prevention and Counseling'),
(9743, 'https://ror.org/05mnq7966', 'es', 1, 'https://ror.org/05mnq7966 Complejo Asistencial Universitario de Palencia'),
(9744, 'https://ror.org/05mq2fa89', 'no_lang_code', 1, 'https://ror.org/05mq2fa89 Ultramet (United States)'),
(9745, 'https://ror.org/05mqgrb58', 'en', 1, 'https://ror.org/05mqgrb58 Papworth Hospital'),
(9746, 'https://ror.org/05mqpm182', 'no_lang_code', 1, 'https://ror.org/05mqpm182 De La Rue (United Kingdom)'),
(9747, 'https://ror.org/05mr3er35', 'no_lang_code', 1, 'https://ror.org/05mr3er35 Ocean NanoTech (United States)'),
(9748, 'https://ror.org/05mt2wq31', 'de', 1, 'https://ror.org/05mt2wq31 Klinikum Leverkusen'),
(9749, 'https://ror.org/05mt84656', 'no_lang_code', 1, 'https://ror.org/05mt84656 Phifer Smith (United States)'),
(9750, 'https://ror.org/05mw5ed57', 'no_lang_code', 1, 'https://ror.org/05mw5ed57 Baxter (Sweden)'),
(9751, 'https://ror.org/05mxb6722', 'no_lang_code', 1, 'https://ror.org/05mxb6722 CD-adapco (United Kingdom)'),
(9752, 'https://ror.org/05n4v8450', 'no_lang_code', 1, 'https://ror.org/05n4v8450 Martingale Research (United States)'),
(9753, 'https://ror.org/05n629g02', 'en', 1, 'https://ror.org/05n629g02 Molecular Research Institute'),
(9754, 'https://ror.org/05n8ah907', 'no_lang_code', 1, 'https://ror.org/05n8ah907 Unilever (United Kingdom)'),
(9755, 'https://ror.org/05n8mkf20', 'no_lang_code', 1, 'https://ror.org/05n8mkf20 ImmuCell (United States)'),
(9756, 'https://ror.org/05nda1d55', 'en', 1, 'https://ror.org/05nda1d55 Sichuan Center for Disease Control and Prevention å››å·ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(9757, 'https://ror.org/05nen6796', 'no_lang_code', 1, 'https://ror.org/05nen6796 Synergy Pharmaceuticals (United States)'),
(9758, 'https://ror.org/05nfbwk10', 'no_lang_code', 1, 'https://ror.org/05nfbwk10 Encode Bio (United States)'),
(9759, 'https://ror.org/05ng48n08', 'no_lang_code', 1, 'https://ror.org/05ng48n08 AvantGen (United States)'),
(9760, 'https://ror.org/05nh3s110', 'no_lang_code', 1, 'https://ror.org/05nh3s110 Vascular Vision Pharmaceutical (United States)'),
(9761, 'https://ror.org/05nhzbw35', 'it', 1, 'https://ror.org/05nhzbw35 Ospedale Valduce'),
(9762, 'https://ror.org/05nkqs567', 'en', 1, 'https://ror.org/05nkqs567 Reproductive Genetics Institute'),
(9763, 'https://ror.org/05nns5525', 'no_lang_code', 1, 'https://ror.org/05nns5525 Adelard'),
(9764, 'https://ror.org/05nq89q24', 'en', 1, 'https://ror.org/05nq89q24 Institute for Fermentation 発酵研究所'),
(9765, 'https://ror.org/05nq8z503', 'en', 1, 'https://ror.org/05nq8z503 Preventive Medicine Research Institute'),
(9766, 'https://ror.org/05nr3de46', 'en', 1, 'https://ror.org/05nr3de46 Onomichi General Hospital å°¾é“ē·åˆē—…é™¢'),
(9767, 'https://ror.org/05nstty25', 'en', 1, 'https://ror.org/05nstty25 Perth Royal Infirmary'),
(9768, 'https://ror.org/05nvv0w48', 'en', 1, 'https://ror.org/05nvv0w48 Arizona Institute for Bone & Joint Disorders'),
(9769, 'https://ror.org/05nwcje70', 'no_lang_code', 1, 'https://ror.org/05nwcje70 Hans Tech (United States)'),
(9770, 'https://ror.org/05nyma565', 'en', 1, 'https://ror.org/05nyma565 Tokyo Metropolitan Police Hospital ę±äŗ¬č­¦åÆŸē—…é™¢'),
(9771, 'https://ror.org/05nzdz804', 'no_lang_code', 1, 'https://ror.org/05nzdz804 James Bell Associates (United States)'),
(9772, 'https://ror.org/05p0pmx78', 'no_lang_code', 1, 'https://ror.org/05p0pmx78 Akonni Biosystems (United States)'),
(9773, 'https://ror.org/05p35vd42', 'no_lang_code', 1, 'https://ror.org/05p35vd42 AbleLink Technologies (United States)'),
(9774, 'https://ror.org/05p3vnz07', 'no_lang_code', 1, 'https://ror.org/05p3vnz07 Wound Care Strategies (United States)'),
(9775, 'https://ror.org/05p40t847', 'en', 1, 'https://ror.org/05p40t847 Newcastle upon Tyne Hospitals NHS Foundation Trust'),
(9776, 'https://ror.org/05p4bxh84', 'en', 1, 'https://ror.org/05p4bxh84 Stockholm Gerontology Research Center Foundation'),
(9777, 'https://ror.org/05p4qy423', 'pt', 1, 'https://ror.org/05p4qy423 Biological Institute Instituto Biológico'),
(9778, 'https://ror.org/05p5zy927', 'no_lang_code', 1, 'https://ror.org/05p5zy927 BioSpeech (United States)'),
(9779, 'https://ror.org/05p668j08', 'en', 1, 'https://ror.org/05p668j08 Ospidéal GinearÔlta Naomh LúcÔs St. Luke''s General Hospital'),
(9780, 'https://ror.org/05p7dhc22', 'en', 1, 'https://ror.org/05p7dhc22 Centre for Innovation Studies'),
(9781, 'https://ror.org/05p81fj60', 'no_lang_code', 1, 'https://ror.org/05p81fj60 Aixtron (United Kingdom)'),
(9782, 'https://ror.org/05p83my93', 'en', 1, 'https://ror.org/05p83my93 Vancouver Hospital and Health Sciences Centre'),
(9783, 'https://ror.org/05p8kt313', 'no_lang_code', 1, 'https://ror.org/05p8kt313 Eli Lilly (Canada)'),
(9784, 'https://ror.org/05pa4pa04', 'en', 1, 'https://ror.org/05pa4pa04 Courtesy Travel Service'),
(9785, 'https://ror.org/05pacqm37', 'en', 1, 'https://ror.org/05pacqm37 Bluffton University Universidad de Bluffton'),
(9786, 'https://ror.org/05pc9cb65', 'no_lang_code', 1, 'https://ror.org/05pc9cb65 Tung Wah Hospital ę±čÆé†«é™¢'),
(9787, 'https://ror.org/05petyd50', 'no_lang_code', 1, 'https://ror.org/05petyd50 Minnow Environmental (Canada)'),
(9788, 'https://ror.org/05pgv5n44', 'no_lang_code', 1, 'https://ror.org/05pgv5n44 John Snow (United States)'),
(9789, 'https://ror.org/05phfhs05', 'en', 1, 'https://ror.org/05phfhs05 Action for Boston Community Development'),
(9790, 'https://ror.org/05pjsgx75', 'en', 1, 'https://ror.org/05pjsgx75 Indian Institute of Technology Kanpur Institut indien de technologie de kanpur ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾, ą¤•ą¤¾ą¤Øą¤Ŗą„‚ą¤° ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤¾ą¤Øą¤Ŗą„ą¤° ą¦†ą¦‡ą¦†ą¦‡ą¦Ÿą¦æ কানপুর ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®¾ą®©ąÆą®ŖąÆ‚ą®°ąÆ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“•ą“¾ąµŗą“Ŗąµ‚ąµ¼'),
(9791, 'https://ror.org/05pkanq60', 'en', 1, 'https://ror.org/05pkanq60 Alfa Institute of Biomedical Sciences Άλφα Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī’Ī¹ĪæĻŠĪ±Ļ„ĻĪ¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½'),
(9792, 'https://ror.org/05pkeac16', 'no_lang_code', 1, 'https://ror.org/05pkeac16 UCB Pharma (Germany) Union chimique belge'),
(9793, 'https://ror.org/05pkhhn92', 'en', 1, 'https://ror.org/05pkhhn92 New Hampshire Department of Health and Human Services'),
(9794, 'https://ror.org/05pm5jp51', 'no_lang_code', 1, 'https://ror.org/05pm5jp51 SIMmersion (United States)'),
(9795, 'https://ror.org/05pm6yf19', 'no_lang_code', 1, 'https://ror.org/05pm6yf19 Iris AO (United States)'),
(9796, 'https://ror.org/05pm71w80', 'no_lang_code', 1, 'https://ror.org/05pm71w80 Pfizer (Japan) ćƒ•ć‚”ć‚¤ć‚¶'),
(9797, 'https://ror.org/05pnhhe27', 'en', 1, 'https://ror.org/05pnhhe27 National Association of State Alcohol and Drug Abuse Directors'),
(9798, 'https://ror.org/05pp5b412', 'en', 1, 'https://ror.org/05pp5b412 Beijing Proteome Research Center'),
(9799, 'https://ror.org/05pp7s587', 'en', 1, 'https://ror.org/05pp7s587 Vermont Agency of Human Services'),
(9800, 'https://ror.org/05pqvh594', 'no_lang_code', 1, 'https://ror.org/05pqvh594 NEI Corporation (United States)'),
(9801, 'https://ror.org/05prpy113', 'no_lang_code', 1, 'https://ror.org/05prpy113 Nanosys (United States)'),
(9802, 'https://ror.org/05prysf28', 'en', 1, 'https://ror.org/05prysf28 Minisiteri y''Ubuzima Ministry of Health Ministère de la Santé'),
(9803, 'https://ror.org/05prywb43', 'no_lang_code', 1, 'https://ror.org/05prywb43 Centre d''Expertise du BĆ¢timent et des Travaux Publics (France)'),
(9804, 'https://ror.org/05psc8795', 'en', 1, 'https://ror.org/05psc8795 Santa Barbara Museum of Natural History'),
(9805, 'https://ror.org/05pw69n24', 'no_lang_code', 1, 'https://ror.org/05pw69n24 Astellas Pharma (United States)'),
(9806, 'https://ror.org/05pxjag90', 'en', 1, 'https://ror.org/05pxjag90 Denver Federal Center'),
(9807, 'https://ror.org/05pz32j92', 'no_lang_code', 1, 'https://ror.org/05pz32j92 Kent Optronics (United States)'),
(9808, 'https://ror.org/05pzb3403', 'en', 1, 'https://ror.org/05pzb3403 National Governors Association');
INSERT INTO `rors` VALUES
(9809, 'https://ror.org/05pzvw552', 'en', 1, 'https://ror.org/05pzvw552 SoundVision Productions'),
(9810, 'https://ror.org/05q07rr84', 'no_lang_code', 1, 'https://ror.org/05q07rr84 Ricardo (United Kingdom)'),
(9811, 'https://ror.org/05q0t6358', 'en', 1, 'https://ror.org/05q0t6358 World Health Organization - Philippines'),
(9812, 'https://ror.org/05q1wf970', 'en', 1, 'https://ror.org/05q1wf970 Bogolyubov Institute for Theoretical Physics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретичної фізики ім. М.М. Š‘Š¾Š³Š¾Š»ŃŽŠ±Š¾Š²Š°'),
(9813, 'https://ror.org/05q3e5911', 'no_lang_code', 1, 'https://ror.org/05q3e5911 Tantalus Systems (Canada)'),
(9814, 'https://ror.org/05q4hby07', 'no_lang_code', 1, 'https://ror.org/05q4hby07 SINTX Technologies (United States)'),
(9815, 'https://ror.org/05q5em355', 'no_lang_code', 1, 'https://ror.org/05q5em355 Morpho (United States)'),
(9816, 'https://ror.org/05q707b66', 'no_lang_code', 1, 'https://ror.org/05q707b66 PhiloMetron (United States)'),
(9817, 'https://ror.org/05q7t7f13', 'en', 1, 'https://ror.org/05q7t7f13 Center For Reconstructive Urethral Surgery Centro di Chirurgia Ricostruttiva dell''Uretra'),
(9818, 'https://ror.org/05q882j59', 'en', 1, 'https://ror.org/05q882j59 Scientists in School'),
(9819, 'https://ror.org/05q895y58', 'en', 1, 'https://ror.org/05q895y58 Lisbon Geographic Society Sociedade de Geografia de Lisboa'),
(9820, 'https://ror.org/05q9ht188', 'en', 1, 'https://ror.org/05q9ht188 Stark State College'),
(9821, 'https://ror.org/05qa36453', 'en', 1, 'https://ror.org/05qa36453 Olmsted Medical Center'),
(9822, 'https://ror.org/05qagj590', 'no_lang_code', 1, 'https://ror.org/05qagj590 Allele Biotechnology (United States)'),
(9823, 'https://ror.org/05qcjd272', 'no_lang_code', 1, 'https://ror.org/05qcjd272 Reynolds American (United States)'),
(9824, 'https://ror.org/05qevt293', 'no_lang_code', 1, 'https://ror.org/05qevt293 HealthMedia (United States)'),
(9825, 'https://ror.org/05qfnkv67', 'en', 1, 'https://ror.org/05qfnkv67 St. Vincent''s Medical Center'),
(9826, 'https://ror.org/05qg48n69', 'no_lang_code', 1, 'https://ror.org/05qg48n69 Scott Bader (United Kingdom)'),
(9827, 'https://ror.org/05qg5f850', 'en', 1, 'https://ror.org/05qg5f850 American Association of Community Colleges'),
(9828, 'https://ror.org/05qgtg165', 'en', 1, 'https://ror.org/05qgtg165 Sitting Bull College'),
(9829, 'https://ror.org/05qgz5a90', 'cs', 1, 'https://ror.org/05qgz5a90 OcnĆ­ klinika'),
(9830, 'https://ror.org/05qhdx204', 'en', 1, 'https://ror.org/05qhdx204 Manhattanville College'),
(9831, 'https://ror.org/05qjgkw66', 'no_lang_code', 1, 'https://ror.org/05qjgkw66 Cosmos Corporation (United States)'),
(9832, 'https://ror.org/05qjz5228', 'fr', 1, 'https://ror.org/05qjz5228 Institut Jean Godinot'),
(9833, 'https://ror.org/05qkm5r52', 'no_lang_code', 1, 'https://ror.org/05qkm5r52 21c Consultancy (United Kingdom)'),
(9834, 'https://ror.org/05qmxat05', 'en', 1, 'https://ror.org/05qmxat05 Consorcio de Salud y Social de CataluƱa Consortium for Health and Social Catalonia'),
(9835, 'https://ror.org/05qnbjn88', 'no_lang_code', 1, 'https://ror.org/05qnbjn88 Opal-Rt Technologies (Canada)'),
(9836, 'https://ror.org/05qpxvt33', 'fr', 1, 'https://ror.org/05qpxvt33 CafƩ Scientifique'),
(9837, 'https://ror.org/05qqty169', 'en', 1, 'https://ror.org/05qqty169 Lehigh Carbon Community College'),
(9838, 'https://ror.org/05qt2r430', 'en', 1, 'https://ror.org/05qt2r430 Education Commission of the States'),
(9839, 'https://ror.org/05qv76t63', 'en', 1, 'https://ror.org/05qv76t63 Construction Industry Research and Information Association'),
(9840, 'https://ror.org/05qv7gx64', 'en', 1, 'https://ror.org/05qv7gx64 Western Hospital'),
(9841, 'https://ror.org/05qvwqt73', 'no_lang_code', 1, 'https://ror.org/05qvwqt73 IntraMedical Imaging (United States)'),
(9842, 'https://ror.org/05qx0rc07', 'it', 1, 'https://ror.org/05qx0rc07 Istituto di Ricerche Chimiche e Biochimiche G. Ronzoni'),
(9843, 'https://ror.org/05qydhq49', 'en', 1, 'https://ror.org/05qydhq49 Duluth Clinic'),
(9844, 'https://ror.org/05qzbtg69', 'no_lang_code', 1, 'https://ror.org/05qzbtg69 Ineos (United Kingdom)'),
(9845, 'https://ror.org/05qzgry88', 'en', 1, 'https://ror.org/05qzgry88 Accreditation Board for Engineering and Technology'),
(9846, 'https://ror.org/05r286q94', 'en', 1, 'https://ror.org/05r286q94 Yamanashi Prefectural Central Hospital å±±ę¢ØēœŒē«‹äø­å¤®ē—…é™¢'),
(9847, 'https://ror.org/05r3ht428', 'en', 1, 'https://ror.org/05r3ht428 Bunker Hill Community College'),
(9848, 'https://ror.org/05r4dzd29', 'no_lang_code', 1, 'https://ror.org/05r4dzd29 Organizational Wellness and Learning Systems'),
(9849, 'https://ror.org/05r6rhh75', 'no_lang_code', 1, 'https://ror.org/05r6rhh75 Synthasome (United States)'),
(9850, 'https://ror.org/05r7f8853', 'it', 1, 'https://ror.org/05r7f8853 Istituto Zooprofilattico Sperimentale del Mezzogiorno'),
(9851, 'https://ror.org/05r88rg69', 'pl', 1, 'https://ror.org/05r88rg69 Instytut Sportu'),
(9852, 'https://ror.org/05r8vsn81', 'en', 1, 'https://ror.org/05r8vsn81 Borgess Health'),
(9853, 'https://ror.org/05r99t981', 'en', 1, 'https://ror.org/05r99t981 Segawa Neurological Clinic for Children å­ä¾›ć®ćŸć‚ć®ē€¬å·ē„žēµŒå­¦ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(9854, 'https://ror.org/05r9v1368', 'en', 1, 'https://ror.org/05r9v1368 Tianjin Chest Hospital å¤©ę“„åø‚čƒøē§‘åŒ»é™¢'),
(9855, 'https://ror.org/05rckx884', 'no_lang_code', 1, 'https://ror.org/05rckx884 American Express (United States)'),
(9856, 'https://ror.org/05rcxtd95', 'it', 1, 'https://ror.org/05rcxtd95 Fondazione Santa Lucia'),
(9857, 'https://ror.org/05rdrc984', 'en', 1, 'https://ror.org/05rdrc984 AIDS United'),
(9858, 'https://ror.org/05re2xe18', 'no_lang_code', 1, 'https://ror.org/05re2xe18 Bio Tissue (United States)'),
(9859, 'https://ror.org/05rebpx60', 'no_lang_code', 1, 'https://ror.org/05rebpx60 National Underground Assets Group'),
(9860, 'https://ror.org/05resfq34', 'en', 1, 'https://ror.org/05resfq34 Overlook Medical Center'),
(9861, 'https://ror.org/05rex1605', 'no_lang_code', 1, 'https://ror.org/05rex1605 3D Systems (United States)'),
(9862, 'https://ror.org/05rjtkb31', 'en', 1, 'https://ror.org/05rjtkb31 Winn Army Community Hospital'),
(9863, 'https://ror.org/05rke7t32', 'en', 1, 'https://ror.org/05rke7t32 Animal, Food and Health Sciences'),
(9864, 'https://ror.org/05rnhf031', 'no_lang_code', 1, 'https://ror.org/05rnhf031 ACell (United States)'),
(9865, 'https://ror.org/05rpsf244', 'en', 1, 'https://ror.org/05rpsf244 Israel Oceanographic and Limnological Research'),
(9866, 'https://ror.org/05rsf2c37', 'it', 1, 'https://ror.org/05rsf2c37 Ospedali Riuniti Umberto I'),
(9867, 'https://ror.org/05rt5vh72', 'no_lang_code', 1, 'https://ror.org/05rt5vh72 Logical Semantics (United States)'),
(9868, 'https://ror.org/05rtsja45', 'no_lang_code', 1, 'https://ror.org/05rtsja45 NanoScale Corporation (United States)'),
(9869, 'https://ror.org/05rv6kp38', 'no_lang_code', 1, 'https://ror.org/05rv6kp38 TriLink BioTechnologies (United States)'),
(9870, 'https://ror.org/05rvwbr49', 'en', 1, 'https://ror.org/05rvwbr49 APLA Health'),
(9871, 'https://ror.org/05s184768', 'fr', 1, 'https://ror.org/05s184768 Centre de Documentation de Recherche et d''ExpƩrimentation sur les Pollutions Accidentelles des Eaux Centre of Documentation, Research and Experimentation on Accidental Water Pollution'),
(9872, 'https://ror.org/05s4s1f68', 'no_lang_code', 1, 'https://ror.org/05s4s1f68 Epicenter Software (United States)'),
(9873, 'https://ror.org/05s65ce35', 'en', 1, 'https://ror.org/05s65ce35 Tanabe Research Laboratories'),
(9874, 'https://ror.org/05s793832', 'no_lang_code', 1, 'https://ror.org/05s793832 PMD Scientific (United States)'),
(9875, 'https://ror.org/05sa8gf57', 'en', 1, 'https://ror.org/05sa8gf57 Native American Health Center'),
(9876, 'https://ror.org/05san5604', 'no_lang_code', 1, 'https://ror.org/05san5604 Philips (Germany)'),
(9877, 'https://ror.org/05sc9ba13', 'en', 1, 'https://ror.org/05sc9ba13 Montgomery County Public Schools'),
(9878, 'https://ror.org/05sejp741', 'no_lang_code', 1, 'https://ror.org/05sejp741 Consulintel (Spain)'),
(9879, 'https://ror.org/05sgcvx90', 'en', 1, 'https://ror.org/05sgcvx90 Cleveland Metropolitan School District'),
(9880, 'https://ror.org/05shq4n12', 'en', 1, 'https://ror.org/05shq4n12 Centre for Cellular and Molecular Biology உயிரணு ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®®ąÆ‚ą®²ą®•ąÆą®•ąÆ‚ą®±ąÆ ą®‰ą®Æą®æą®°ą®æą®Æą®²ąÆ ą®®ąÆˆą®Æą®®ąÆ ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“øąµ†ą“²ąµą“²ąµą“²ą“¾ąµ¼ ą“†ą“Øąµą“±ąµ ą“®ąµ‹ą“³ą“æą“•ąµą“Æąµą“²ąµ¼ ą“¬ą“Æąµ‹ą“³ą“œą“æ'),
(9881, 'https://ror.org/05skkwg31', 'no_lang_code', 1, 'https://ror.org/05skkwg31 Digestive Care (United States)'),
(9882, 'https://ror.org/05spgfz39', 'no_lang_code', 1, 'https://ror.org/05spgfz39 Soligenix (United States)'),
(9883, 'https://ror.org/05sq1nj46', 'en', 1, 'https://ror.org/05sq1nj46 Palomar Medical Center'),
(9884, 'https://ror.org/05srfkv34', 'en', 1, 'https://ror.org/05srfkv34 Chelyabinsk State Medical Academy Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(9885, 'https://ror.org/05srnyf79', 'en', 1, 'https://ror.org/05srnyf79 Maine Mathematics and Science Alliance'),
(9886, 'https://ror.org/05ss99d25', 'en', 1, 'https://ror.org/05ss99d25 Tampa Bay Research Institute'),
(9887, 'https://ror.org/05sshfw48', 'en', 1, 'https://ror.org/05sshfw48 Pacific Health Research and Education Institute'),
(9888, 'https://ror.org/05stnhf77', 'en', 1, 'https://ror.org/05stnhf77 Shanghai Academy of Environmental Sciences äøŠęµ·åø‚ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(9889, 'https://ror.org/05svaqs46', 'no_lang_code', 1, 'https://ror.org/05svaqs46 Psychology Software Tools (United States)'),
(9890, 'https://ror.org/05svxk822', 'en', 1, 'https://ror.org/05svxk822 San Jose City College'),
(9891, 'https://ror.org/05sxp6402', 'no_lang_code', 1, 'https://ror.org/05sxp6402 Oxford Gene Technology (United Kingdom)'),
(9892, 'https://ror.org/05szzwt63', 'en', 1, 'https://ror.org/05szzwt63 Industrial Technology Research Institute å·„ę„­ęŠ€č”“ē”ē©¶é™¢'),
(9893, 'https://ror.org/05t0c7p82', 'it', 1, 'https://ror.org/05t0c7p82 Azienda Ospedaliera G. Brotzu'),
(9894, 'https://ror.org/05t1tdx84', 'no_lang_code', 1, 'https://ror.org/05t1tdx84 Tissue Genetics (United States)'),
(9895, 'https://ror.org/05t1yee64', 'no_lang_code', 1, 'https://ror.org/05t1yee64 Hospital Fatuma Bourguiba Monastir HƓpital Universitaire Fattouma-Bourguiba de Monastir'),
(9896, 'https://ror.org/05t2trr67', 'en', 1, 'https://ror.org/05t2trr67 Miami Hand Center'),
(9897, 'https://ror.org/05t43jk30', 'en', 1, 'https://ror.org/05t43jk30 Colorado Center for Nursing Excellence'),
(9898, 'https://ror.org/05t4ef339', 'en', 1, 'https://ror.org/05t4ef339 Northern Arizona VA Health Care System'),
(9899, 'https://ror.org/05t626n88', 'en', 1, 'https://ror.org/05t626n88 Suwa Red Cross Hospital č«čØŖčµ¤åå­—ē—…é™¢'),
(9900, 'https://ror.org/05t871q54', 'no_lang_code', 1, 'https://ror.org/05t871q54 Resonance Research (United States)'),
(9901, 'https://ror.org/05t8d2s47', 'en', 1, 'https://ror.org/05t8d2s47 American College of Emergency Physicians'),
(9902, 'https://ror.org/05ta9zy41', 'en', 1, 'https://ror.org/05ta9zy41 Self Reliance Foundation'),
(9903, 'https://ror.org/05tacab76', 'en', 1, 'https://ror.org/05tacab76 Bath Institute for Rheumatic Diseases'),
(9904, 'https://ror.org/05tb9de28', 'no_lang_code', 1, 'https://ror.org/05tb9de28 Charlesson (United States)'),
(9905, 'https://ror.org/05tcd6p82', 'en', 1, 'https://ror.org/05tcd6p82 Shady Grove Fertility Center'),
(9906, 'https://ror.org/05td03w87', 'en', 1, 'https://ror.org/05td03w87 College of the Canyons'),
(9907, 'https://ror.org/05tdnf273', 'en', 1, 'https://ror.org/05tdnf273 Insurance Institute for Highway Safety'),
(9908, 'https://ror.org/05tj1jy10', 'en', 1, 'https://ror.org/05tj1jy10 Texas Nerve and Paralysis Institute'),
(9909, 'https://ror.org/05tj22n53', 'en', 1, 'https://ror.org/05tj22n53 AGE Platform Europe'),
(9910, 'https://ror.org/05tjbsh85', 'en', 1, 'https://ror.org/05tjbsh85 Ministry of Justice ę³•å‹™ēœ'),
(9911, 'https://ror.org/05tkjm312', 'no_lang_code', 1, 'https://ror.org/05tkjm312 DiagnoCure (Canada)'),
(9912, 'https://ror.org/05tqt7092', 'en', 1, 'https://ror.org/05tqt7092 Jefferson State Community College'),
(9913, 'https://ror.org/05tt05r27', 'no_lang_code', 1, 'https://ror.org/05tt05r27 Oulu Deaconess Institute Oulun diakonissalaitos'),
(9914, 'https://ror.org/05tvanj47', 'fr', 1, 'https://ror.org/05tvanj47 Institut Louis MalardƩ'),
(9915, 'https://ror.org/05twrtk66', 'no_lang_code', 1, 'https://ror.org/05twrtk66 Fermionics (United States)'),
(9916, 'https://ror.org/05twxmr11', 'no_lang_code', 1, 'https://ror.org/05twxmr11 Brooks Automation (United States)'),
(9917, 'https://ror.org/05ty6vv60', 'en', 1, 'https://ror.org/05ty6vv60 Tropical Population Health Unit'),
(9918, 'https://ror.org/05tzq2c96', 'it', 1, 'https://ror.org/05tzq2c96 Centro Neurolesi Bonino Pulejo'),
(9919, 'https://ror.org/05v0e5774', 'en', 1, 'https://ror.org/05v0e5774 Piedmont Reference Center for Epidemiology and Cancer Prevention'),
(9920, 'https://ror.org/05v1dya15', 'fr', 1, 'https://ror.org/05v1dya15 Centre de Recherches et des Technologies des Eaux'),
(9921, 'https://ror.org/05v48bz32', 'it', 1, 'https://ror.org/05v48bz32 Nuovo Ospedale di Prato'),
(9922, 'https://ror.org/05v4bk714', 'en', 1, 'https://ror.org/05v4bk714 Animal Technology Institute Taiwan'),
(9923, 'https://ror.org/05v4j1v63', 'no_lang_code', 1, 'https://ror.org/05v4j1v63 Takanoko Hospital'),
(9924, 'https://ror.org/05v4j5439', 'no_lang_code', 1, 'https://ror.org/05v4j5439 Kopin Corporation (United States)'),
(9925, 'https://ror.org/05v4ned20', 'no_lang_code', 1, 'https://ror.org/05v4ned20 iSign Solutions (United States)'),
(9926, 'https://ror.org/05v6jj657', 'en', 1, 'https://ror.org/05v6jj657 Office of Chief Medical Examiner'),
(9927, 'https://ror.org/05v7p8344', 'no_lang_code', 1, 'https://ror.org/05v7p8344 West Portal Software (United States)'),
(9928, 'https://ror.org/05vefar40', 'en', 1, 'https://ror.org/05vefar40 Organisation mondiale de la santĆ© World Health Organization - India Š’ŃŠµŠ¼ŠøŃ€Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(9929, 'https://ror.org/05vfrxy92', 'en', 1, 'https://ror.org/05vfrxy92 American Rock Mechanics Association'),
(9930, 'https://ror.org/05vga3150', 'no_lang_code', 1, 'https://ror.org/05vga3150 Trophogen (United States)'),
(9931, 'https://ror.org/05vgb7p23', 'en', 1, 'https://ror.org/05vgb7p23 American Psychiatric Association'),
(9932, 'https://ror.org/05vharc92', 'en', 1, 'https://ror.org/05vharc92 College Ahuntsic CollĆØge ahuntsic'),
(9933, 'https://ror.org/05vhg8j56', 'en', 1, 'https://ror.org/05vhg8j56'),
(9934, 'https://ror.org/05vj5p117', 'no_lang_code', 1, 'https://ror.org/05vj5p117 Synkera Technologies (United States)'),
(9935, 'https://ror.org/05vj78j16', 'en', 1, 'https://ror.org/05vj78j16 Society of American Foresters'),
(9936, 'https://ror.org/05vm6be10', 'no_lang_code', 1, 'https://ror.org/05vm6be10 Lipman Hearne (United States)'),
(9937, 'https://ror.org/05vm76w92', 'en', 1, 'https://ror.org/05vm76w92 Biotechnology Research Institute äø­å›½å†œäøšē§‘å­¦é™¢ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(9938, 'https://ror.org/05vmcbf05', 'en', 1, 'https://ror.org/05vmcbf05 Pakistan Council of Scientific & Industrial Research'),
(9939, 'https://ror.org/05vmv8m79', 'en', 1, 'https://ror.org/05vmv8m79 Frankfurt Institute for Advanced Studies'),
(9940, 'https://ror.org/05vpsdj37', 'en', 1, 'https://ror.org/05vpsdj37 Wythenshawe Hospital'),
(9941, 'https://ror.org/05vqfs419', 'en', 1, 'https://ror.org/05vqfs419 National Museums Liverpool'),
(9942, 'https://ror.org/05vts7w23', 'en', 1, 'https://ror.org/05vts7w23 Nanaji Deshmukh Veterinary Science University'),
(9943, 'https://ror.org/05vv5ch57', 'en', 1, 'https://ror.org/05vv5ch57 National Center of Infectious and Parasitic Diseases ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½ŠøŃŃ‚ Ń†ŠµŠ½Ń‚ŃŠŃ€ по заразни Šø паразитни болести'),
(9944, 'https://ror.org/05vvg9554', 'en', 1, 'https://ror.org/05vvg9554 Planetary Science Institute'),
(9945, 'https://ror.org/05w07vs91', 'it', 1, 'https://ror.org/05w07vs91 Istituti Ospitalieri di Cremona'),
(9946, 'https://ror.org/05w1mrz55', 'en', 1, 'https://ror.org/05w1mrz55 Parkinson''s Institute and Clinical Center'),
(9947, 'https://ror.org/05w1q1c88', 'it', 1, 'https://ror.org/05w1q1c88 Policlinico San Matteo Fondazione'),
(9948, 'https://ror.org/05w1q8228', 'no_lang_code', 1, 'https://ror.org/05w1q8228 Senex Biotechnology (United States)'),
(9949, 'https://ror.org/05w44gx91', 'fr', 1, 'https://ror.org/05w44gx91 RƩseau Technoscience'),
(9950, 'https://ror.org/05w6wfp17', 'en', 1, 'https://ror.org/05w6wfp17 Bhabha Atomic Research Centre Centre de recherche atomique de bhabha भाभा ą¤…ą¤£ą„ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° भाभा ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤° பாபா அணு ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ąÆˆą®Æą®®ąÆ ಭಾಭಾ ಅಣು ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²° ą“­ą“¾ą“­ą“¾ ą“†ą“£ą“µ ą“—ą“µąµ‡ą“·ą“£ ą“•ąµ‡ą“Øąµą“¦ąµą“°ą“‚'),
(9951, 'https://ror.org/05w7pd234', 'no_lang_code', 1, 'https://ror.org/05w7pd234 Texas Retina Associates (United States)'),
(9952, 'https://ror.org/05w90nk74', 'en', 1, 'https://ror.org/05w90nk74 Stollery Children''s Hospital'),
(9953, 'https://ror.org/05wcvd955', 'no_lang_code', 1, 'https://ror.org/05wcvd955 Gallomanor (United Kingdom)'),
(9954, 'https://ror.org/05wm6w245', 'en', 1, 'https://ror.org/05wm6w245 Lakeland College'),
(9955, 'https://ror.org/05wngc118', 'no_lang_code', 1, 'https://ror.org/05wngc118 Fuel Theatre (United Kingdom)'),
(9956, 'https://ror.org/05wnk7791', 'no_lang_code', 1, 'https://ror.org/05wnk7791 CrossChasm Technologies (Canada)'),
(9957, 'https://ror.org/05wnkdq49', 'en', 1, 'https://ror.org/05wnkdq49 National Energy Foundation'),
(9958, 'https://ror.org/05wr6e156', 'no_lang_code', 1, 'https://ror.org/05wr6e156 Bruce Technologies (United States)'),
(9959, 'https://ror.org/05wrnja28', 'no_lang_code', 1, 'https://ror.org/05wrnja28 Tepha (United States)'),
(9960, 'https://ror.org/05ws4x937', 'no_lang_code', 1, 'https://ror.org/05ws4x937 Optelian (Canada)'),
(9961, 'https://ror.org/05wzrja17', 'no_lang_code', 1, 'https://ror.org/05wzrja17 Abcam (United Kingdom)'),
(9962, 'https://ror.org/05x0at146', 'en', 1, 'https://ror.org/05x0at146 Santa Barbara Botanic Garden'),
(9963, 'https://ror.org/05x20ta98', 'no_lang_code', 1, 'https://ror.org/05x20ta98 Information Management Consultants (United States)'),
(9964, 'https://ror.org/05x546h56', 'no_lang_code', 1, 'https://ror.org/05x546h56 NexTech Materials (United States)'),
(9965, 'https://ror.org/05x7pyy46', 'en', 1, 'https://ror.org/05x7pyy46 St. Louis Testing Laboratories'),
(9966, 'https://ror.org/05x8xdg58', 'en', 1, 'https://ror.org/05x8xdg58 St. Mary''s Hospital'),
(9967, 'https://ror.org/05x923c26', 'en', 1, 'https://ror.org/05x923c26 Central Environmental and Food Science Research Institute'),
(9968, 'https://ror.org/05xb57658', 'no_lang_code', 1, 'https://ror.org/05xb57658 Aviagen (United Kingdom)'),
(9969, 'https://ror.org/05xemxk04', 'en', 1, 'https://ror.org/05xemxk04 Metropolitan Drug Commission'),
(9970, 'https://ror.org/05xf94514', 'en', 1, 'https://ror.org/05xf94514 United States Public Health Service'),
(9971, 'https://ror.org/05xgfg578', 'en', 1, 'https://ror.org/05xgfg578 Partnership Group for Science and Engineering'),
(9972, 'https://ror.org/05xnecb03', 'en', 1, 'https://ror.org/05xnecb03 St. Mary''s Health Center'),
(9973, 'https://ror.org/05xnnea38', 'en', 1, 'https://ror.org/05xnnea38 Swiss Epilepsy Center'),
(9974, 'https://ror.org/05xnsth60', 'no_lang_code', 1, 'https://ror.org/05xnsth60 Network Technologies (United States)'),
(9975, 'https://ror.org/05xpxan20', 'no_lang_code', 1, 'https://ror.org/05xpxan20 TechniScan (United States)'),
(9976, 'https://ror.org/05xq19q44', 'en', 1, 'https://ror.org/05xq19q44 Ministry of the Environment and Water Resources ę–°åŠ å”ēŽÆå¢ƒåŠę°“ęŗéƒØ'),
(9977, 'https://ror.org/05xr0q537', 'es', 1, 'https://ror.org/05xr0q537 ClĆ­nica Ruiz'),
(9978, 'https://ror.org/05xrhs889', 'no_lang_code', 1, 'https://ror.org/05xrhs889 Photon Etc (Canada)'),
(9979, 'https://ror.org/05xrj1c85', 'no_lang_code', 1, 'https://ror.org/05xrj1c85 Gamma Medica (United States)'),
(9980, 'https://ror.org/05xt49662', 'en', 1, 'https://ror.org/05xt49662 Penteli General Children''s Hospital ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΠαίΓων Πεντέλης'),
(9981, 'https://ror.org/05xt51492', 'no_lang_code', 1, 'https://ror.org/05xt51492 Octane (Canada)'),
(9982, 'https://ror.org/05xv66680', 'en', 1, 'https://ror.org/05xv66680 Royal Rehabilitation Centre'),
(9983, 'https://ror.org/05xvgzf10', 'it', 1, 'https://ror.org/05xvgzf10 Ospedale Maggiore di Chieri'),
(9984, 'https://ror.org/05xvz3022', 'no_lang_code', 1, 'https://ror.org/05xvz3022 Transonic Systems (United States)'),
(9985, 'https://ror.org/05xzvft44', 'it', 1, 'https://ror.org/05xzvft44 Associazione Nazionale Costruttori di Macchine e Stampi per Materie Plastiche e Gomma, Assocomaplast Italian Plastics and Rubber Processing Machinery and Moulds Manufacturers'' Association'),
(9986, 'https://ror.org/05y1qcf54', 'en', 1, 'https://ror.org/05y1qcf54 Agricultural Institute Magyar TudomĆ”nyos AkadĆ©mia MezőgazdasĆ”gi Kutató IntĆ©zet'),
(9987, 'https://ror.org/05y2ajc95', 'en', 1, 'https://ror.org/05y2ajc95 Forest Preserves of Cook County'),
(9988, 'https://ror.org/05y2d8w36', 'no_lang_code', 1, 'https://ror.org/05y2d8w36 Biomedica Management (United States)'),
(9989, 'https://ror.org/05y2hka35', 'en', 1, 'https://ror.org/05y2hka35 Santa Fe University of Art and Design Universidad de Arte y DiseƱo de Santa Fe'),
(9990, 'https://ror.org/05y2m0c09', 'en', 1, 'https://ror.org/05y2m0c09 Institute for Medical Research'),
(9991, 'https://ror.org/05y9zzm67', 'en', 1, 'https://ror.org/05y9zzm67 Henri Gastaut Hospital'),
(9992, 'https://ror.org/05yab6874', 'no_lang_code', 1, 'https://ror.org/05yab6874 Varian Associates Varian Medical Systems (United States)'),
(9993, 'https://ror.org/05yavwk90', 'en', 1, 'https://ror.org/05yavwk90 Northwest College'),
(9994, 'https://ror.org/05ydq5158', 'no_lang_code', 1, 'https://ror.org/05ydq5158 Spangle Associates'),
(9995, 'https://ror.org/05yeg2858', 'no_lang_code', 1, 'https://ror.org/05yeg2858 ABB (Germany)'),
(9996, 'https://ror.org/05yfrba80', 'en', 1, 'https://ror.org/05yfrba80 Science Museum'),
(9997, 'https://ror.org/05yhj6j64', 'en', 1, 'https://ror.org/05yhj6j64 Food Industry Research and Development Institute'),
(9998, 'https://ror.org/05yjan319', 'no_lang_code', 1, 'https://ror.org/05yjan319 Simulent (Canada)'),
(9999, 'https://ror.org/05yn9cj95', 'no', 1, 'https://ror.org/05yn9cj95 SĆørlandet Hospital SĆørlandet Sykehus'),
(10000, 'https://ror.org/05yqbk328', 'en', 1, 'https://ror.org/05yqbk328 Genetica DNA Laboratories'),
(10001, 'https://ror.org/0001j6637', 'no_lang_code', 1, 'https://ror.org/0001j6637 Tethers Unlimited (United States)'),
(10002, 'https://ror.org/00046rb12', 'no_lang_code', 1, 'https://ror.org/00046rb12 Rescoll (France)'),
(10003, 'https://ror.org/0005tvh12', 'en', 1, 'https://ror.org/0005tvh12 Institutul National de Hidrologie si Gospodarire a Apelor National Institute of Hydrology and Water Management'),
(10004, 'https://ror.org/0006xs696', 'en', 1, 'https://ror.org/0006xs696 Ele''s Place'),
(10005, 'https://ror.org/000714v43', 'no_lang_code', 1, 'https://ror.org/000714v43 Studsvik (Sweden)'),
(10006, 'https://ror.org/00073my17', 'no_lang_code', 1, 'https://ror.org/00073my17 BioWorks (United States)'),
(10007, 'https://ror.org/0008smw05', 'en', 1, 'https://ror.org/0008smw05 BreakOUT'),
(10008, 'https://ror.org/0009gvn90', 'en', 1, 'https://ror.org/0009gvn90 Georgia Breast Cancer Coalition Fund'),
(10009, 'https://ror.org/0009wsb17', 'en', 1, 'https://ror.org/0009wsb17 A N Bach Institute of Biochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии им. А.Š.Баха'),
(10010, 'https://ror.org/000a1tn51', 'en', 1, 'https://ror.org/000a1tn51 Health Effects Institute'),
(10011, 'https://ror.org/000bdn450', 'no_lang_code', 1, 'https://ror.org/000bdn450 Syngenta (United Kingdom)'),
(10012, 'https://ror.org/000en4h24', 'no_lang_code', 1, 'https://ror.org/000en4h24 Panasonic (Germany)'),
(10013, 'https://ror.org/000etmf12', 'no_lang_code', 1, 'https://ror.org/000etmf12 Sequans Communications (France)'),
(10014, 'https://ror.org/000hmzc02', 'no_lang_code', 1, 'https://ror.org/000hmzc02 Myostin Therapeutics (Australia)'),
(10015, 'https://ror.org/000hva629', 'no_lang_code', 1, 'https://ror.org/000hva629 Inhibikase Therapeutics (United States)'),
(10016, 'https://ror.org/000kzf191', 'en', 1, 'https://ror.org/000kzf191 Burke County Public Schools'),
(10017, 'https://ror.org/000mrza07', 'no_lang_code', 1, 'https://ror.org/000mrza07 AVEO Oncology (United States)'),
(10018, 'https://ror.org/000ncdv93', 'en', 1, 'https://ror.org/000ncdv93 Swedish National Board of Fisheries'),
(10019, 'https://ror.org/000psz759', 'en', 1, 'https://ror.org/000psz759 Marymount Manhattan College'),
(10020, 'https://ror.org/000q08p21', 'no_lang_code', 1, 'https://ror.org/000q08p21 Schott (Germany)'),
(10021, 'https://ror.org/000qvv970', 'en', 1, 'https://ror.org/000qvv970 Qualifications and Curriculum Authority'),
(10022, 'https://ror.org/000r61a05', 'en', 1, 'https://ror.org/000r61a05 American Federation for Aging Research'),
(10023, 'https://ror.org/000rag760', 'en', 1, 'https://ror.org/000rag760 Habitat for Humanity of Greater Charlottesville'),
(10024, 'https://ror.org/000rkhy86', 'en', 1, 'https://ror.org/000rkhy86 Connecting to Care'),
(10025, 'https://ror.org/000rr7w48', 'en', 1, 'https://ror.org/000rr7w48 HalĆ”szati Ć©s ƖntƶzĆ©si KutatóintĆ©zet Research Institute for Fisheries and Aquaculture'),
(10026, 'https://ror.org/000sb6642', 'no_lang_code', 1, 'https://ror.org/000sb6642 Satellite Observing Systems (United Kingdom)'),
(10027, 'https://ror.org/000sfad56', 'en', 1, 'https://ror.org/000sfad56 Institute of Physics Instytut Fizyki PAN'),
(10028, 'https://ror.org/000skyh95', 'en', 1, 'https://ror.org/000skyh95 Manitoga'),
(10029, 'https://ror.org/000v2n186', 'en', 1, 'https://ror.org/000v2n186 Center for Information and Study on Clinical Research Participation'),
(10030, 'https://ror.org/000yp3j43', 'no_lang_code', 1, 'https://ror.org/000yp3j43 Rupprecht Consult - Forschung & Beratung'),
(10031, 'https://ror.org/0011aqx02', 'en', 1, 'https://ror.org/0011aqx02 Maine Hospice Council'),
(10032, 'https://ror.org/00139ex69', 'no_lang_code', 1, 'https://ror.org/00139ex69 Sensonor (Norway)'),
(10033, 'https://ror.org/0013dsy11', 'no_lang_code', 1, 'https://ror.org/0013dsy11 RWTÜV (Germany) Rheinisch-Westfälische Technische Überwachungsverein'),
(10034, 'https://ror.org/0013zhk30', 'en', 1, 'https://ror.org/0013zhk30 Institute of Food Science'),
(10035, 'https://ror.org/0015k4a59', 'en', 1, 'https://ror.org/0015k4a59 Cognitive Systems Research Institute'),
(10036, 'https://ror.org/0016bkz03', 'no_lang_code', 1, 'https://ror.org/0016bkz03 Lisnave (Portugal)'),
(10037, 'https://ror.org/0016qw586', 'en', 1, 'https://ror.org/0016qw586 First In Families of North Carolina'),
(10038, 'https://ror.org/0017nnr12', 'en', 1, 'https://ror.org/0017nnr12 Strategic Solutions International'),
(10039, 'https://ror.org/001b7ye13', 'en', 1, 'https://ror.org/001b7ye13 Building Services Research and Information Association'),
(10040, 'https://ror.org/001c8fh75', 'en', 1, 'https://ror.org/001c8fh75 Cal Poly Corporation'),
(10041, 'https://ror.org/001dd4s60', 'no_lang_code', 1, 'https://ror.org/001dd4s60 Microsoft (Germany)'),
(10042, 'https://ror.org/001g74t27', 'no_lang_code', 1, 'https://ror.org/001g74t27 Heckmann (Germany)'),
(10043, 'https://ror.org/001g7ce71', 'no_lang_code', 1, 'https://ror.org/001g7ce71 Biomass Technology Group (Netherlands)'),
(10044, 'https://ror.org/001gk4004', 'it', 1, 'https://ror.org/001gk4004 Istituto per la Ricerca Sociale'),
(10045, 'https://ror.org/001hzk554', 'en', 1, 'https://ror.org/001hzk554 Boston Back Bay Plastic Surgery'),
(10046, 'https://ror.org/001j0nz10', 'en', 1, 'https://ror.org/001j0nz10 Inter-Faith Food Shuttle'),
(10047, 'https://ror.org/001kp4y75', 'no_lang_code', 1, 'https://ror.org/001kp4y75 Avanzare (Spain)'),
(10048, 'https://ror.org/001m7ja14', 'no_lang_code', 1, 'https://ror.org/001m7ja14 FIT Consulting (Italy)'),
(10049, 'https://ror.org/001mfwh65', 'en', 1, 'https://ror.org/001mfwh65 International Scientific Council for Island Development'),
(10050, 'https://ror.org/001q3y090', 'no_lang_code', 1, 'https://ror.org/001q3y090 Creativa (Italy) Creativa Impresa di Comunicazione srl'),
(10051, 'https://ror.org/001qfrp14', 'en', 1, 'https://ror.org/001qfrp14 Abilities In Motion'),
(10052, 'https://ror.org/001s48x24', 'en', 1, 'https://ror.org/001s48x24 Independent Living Resources'),
(10053, 'https://ror.org/001vg8g70', 'en', 1, 'https://ror.org/001vg8g70'),
(10054, 'https://ror.org/001vv9g35', 'en', 1, 'https://ror.org/001vv9g35 Athens Land Trust'),
(10055, 'https://ror.org/001vwrk73', 'en', 1, 'https://ror.org/001vwrk73 Flashes of Hope'),
(10056, 'https://ror.org/001ydyr37', 'no_lang_code', 1, 'https://ror.org/001ydyr37 TƩcnicas Reunidas (Spain)'),
(10057, 'https://ror.org/001zna302', 'no_lang_code', 1, 'https://ror.org/001zna302 NanoMed Targeting Systems (United States)'),
(10058, 'https://ror.org/00200ya62', 'en', 1, 'https://ror.org/00200ya62 National Ageing Research Institute'),
(10059, 'https://ror.org/0022pfg65', 'en', 1, 'https://ror.org/0022pfg65 Nightingales Medical Trust'),
(10060, 'https://ror.org/0022r5p04', 'en', 1, 'https://ror.org/0022r5p04 NeuroMedical Center'),
(10061, 'https://ror.org/00233x252', 'no_lang_code', 1, 'https://ror.org/00233x252 Qiagen (Denmark)'),
(10062, 'https://ror.org/0023q4k34', 'en', 1, 'https://ror.org/0023q4k34 Trilateral Research & Consulting'),
(10063, 'https://ror.org/0024x0915', 'en', 1, 'https://ror.org/0024x0915 Math for America'),
(10064, 'https://ror.org/00266dp40', 'nl', 1, 'https://ror.org/00266dp40 Novay'),
(10065, 'https://ror.org/00273wp13', 'en', 1, 'https://ror.org/00273wp13 Energy Cities'),
(10066, 'https://ror.org/0027k1m19', 'en', 1, 'https://ror.org/0027k1m19 WateReuse Association'),
(10067, 'https://ror.org/0027v6s71', 'no_lang_code', 1, 'https://ror.org/0027v6s71 INTRASOFT International (Greece)'),
(10068, 'https://ror.org/00292bn75', 'en', 1, 'https://ror.org/00292bn75 Note-Able Music Therapy Services'),
(10069, 'https://ror.org/00298sd14', 'no_lang_code', 1, 'https://ror.org/00298sd14 Battelle Ingenieurtechnik (Germany)'),
(10070, 'https://ror.org/002adfz67', 'no_lang_code', 1, 'https://ror.org/002adfz67 Lonza (Switzerland)'),
(10071, 'https://ror.org/002cv1w36', 'en', 1, 'https://ror.org/002cv1w36 Australian Foundation for Diabetes Research'),
(10072, 'https://ror.org/002czwf36', 'en', 1, 'https://ror.org/002czwf36 MelroseWakefield Healthcare'),
(10073, 'https://ror.org/002e5bb83', 'no_lang_code', 1, 'https://ror.org/002e5bb83 Hexis (Switzerland)'),
(10074, 'https://ror.org/002eet613', 'en', 1, 'https://ror.org/002eet613 Center Point'),
(10075, 'https://ror.org/002fen565', 'no_lang_code', 1, 'https://ror.org/002fen565 BC Platforms (Finland)'),
(10076, 'https://ror.org/002k2wg65', 'no_lang_code', 1, 'https://ror.org/002k2wg65 EntroGen (United States)'),
(10077, 'https://ror.org/002m7jd84', 'en', 1, 'https://ror.org/002m7jd84 Catholic Charities'),
(10078, 'https://ror.org/002nw1r81', 'es', 1, 'https://ror.org/002nw1r81 Andalusian Public Foundation for Health Research in Biomedicine and Malaga Fundación Pública Andaluza para la Investigación de MÔlaga en Biomedicina y Salud'),
(10079, 'https://ror.org/002q0aa23', 'en', 1, 'https://ror.org/002q0aa23 Princeton Child Development Institute'),
(10080, 'https://ror.org/002r82k07', 'en', 1, 'https://ror.org/002r82k07 Mercy Clinic Neurology'),
(10081, 'https://ror.org/002trzq62', 'en', 1, 'https://ror.org/002trzq62 Community Health Works'),
(10082, 'https://ror.org/002w0jp71', 'en', 1, 'https://ror.org/002w0jp71 Institut für Weltraumforschung Space Research Institute'),
(10083, 'https://ror.org/002wpy368', 'en', 1, 'https://ror.org/002wpy368 Young Foundation'),
(10084, 'https://ror.org/002wx9n23', 'no_lang_code', 1, 'https://ror.org/002wx9n23 Gruppo Riva (Italy)'),
(10085, 'https://ror.org/002z0cd60', 'no_lang_code', 1, 'https://ror.org/002z0cd60 Schneider Electric (France)'),
(10086, 'https://ror.org/00300j256', 'en', 1, 'https://ror.org/00300j256 Fulbright Association'),
(10087, 'https://ror.org/0033pqk03', 'en', 1, 'https://ror.org/0033pqk03 Tubman'),
(10088, 'https://ror.org/0034r9358', 'en', 1, 'https://ror.org/0034r9358 Southeast Georgia Health System'),
(10089, 'https://ror.org/003518063', 'no_lang_code', 1, 'https://ror.org/003518063 ComputIT (Norway)'),
(10090, 'https://ror.org/0035nx336', 'en', 1, 'https://ror.org/0035nx336 Finansdepartementet Ministry of Finance'),
(10091, 'https://ror.org/0036jx294', 'no_lang_code', 1, 'https://ror.org/0036jx294 Farmington Pharma Development (United States)'),
(10092, 'https://ror.org/0037f4615', 'no_lang_code', 1, 'https://ror.org/0037f4615 Cvergenx (United States)'),
(10093, 'https://ror.org/0037fa039', 'no_lang_code', 1, 'https://ror.org/0037fa039 Avantune (Italy)'),
(10094, 'https://ror.org/003b78q25', 'en', 1, 'https://ror.org/003b78q25 Wye College'),
(10095, 'https://ror.org/003bqs817', 'no_lang_code', 1, 'https://ror.org/003bqs817 Owl Biomedical (United States)'),
(10096, 'https://ror.org/003c3rr61', 'no_lang_code', 1, 'https://ror.org/003c3rr61 Diehl (Germany)'),
(10097, 'https://ror.org/003cpzf24', 'en', 1, 'https://ror.org/003cpzf24 Chess in the Schools'),
(10098, 'https://ror.org/003dvmy85', 'en', 1, 'https://ror.org/003dvmy85 Central Council of the Tlingit and Haida Indian Tribes of Alaska'),
(10099, 'https://ror.org/003e85j37', 'en', 1, 'https://ror.org/003e85j37 Nothing But Nets'),
(10100, 'https://ror.org/003eebv14', 'no_lang_code', 1, 'https://ror.org/003eebv14 Sylics (Netherlands)'),
(10101, 'https://ror.org/003fvp964', 'en', 1, 'https://ror.org/003fvp964 Institute of Computer Science Instytut Podstaw Informatyki'),
(10102, 'https://ror.org/003g9tn92', 'no_lang_code', 1, 'https://ror.org/003g9tn92 Hellenic Petroleum (Greece)'),
(10103, 'https://ror.org/003g9x449', 'en', 1, 'https://ror.org/003g9x449 BC Wheelchair Sports Association'),
(10104, 'https://ror.org/003gevz29', 'en', 1, 'https://ror.org/003gevz29 Camden Children''s Garden'),
(10105, 'https://ror.org/003h0ev22', 'nl', 1, 'https://ror.org/003h0ev22 Gemeente Amsterdam'),
(10106, 'https://ror.org/003j7nn34', 'no_lang_code', 1, 'https://ror.org/003j7nn34 EnerSys (United States)'),
(10107, 'https://ror.org/003ka3k75', 'no_lang_code', 1, 'https://ror.org/003ka3k75 Principia (France)'),
(10108, 'https://ror.org/003kb2e24', 'en', 1, 'https://ror.org/003kb2e24 National Hospice Foundation'),
(10109, 'https://ror.org/003kxr082', 'no_lang_code', 1, 'https://ror.org/003kxr082 British Airways (United Kingdom)'),
(10110, 'https://ror.org/003mdrz16', 'en', 1, 'https://ror.org/003mdrz16 Institute of American Indian Arts'),
(10111, 'https://ror.org/003p7hq46', 'en', 1, 'https://ror.org/003p7hq46 Drummond Public Schools'),
(10112, 'https://ror.org/003pqgx54', 'no_lang_code', 1, 'https://ror.org/003pqgx54 SMR Engineering and Development (Switzerland)'),
(10113, 'https://ror.org/003qqj197', 'no_lang_code', 1, 'https://ror.org/003qqj197 Visidyne (United States)'),
(10114, 'https://ror.org/003r3ng51', 'en', 1, 'https://ror.org/003r3ng51 Tift County School District'),
(10115, 'https://ror.org/003s1y583', 'no_lang_code', 1, 'https://ror.org/003s1y583 Saphyrion (Switzerland)'),
(10116, 'https://ror.org/003sztp18', 'en', 1, 'https://ror.org/003sztp18 Breathe California Golden Gate Public Health Partnership'),
(10117, 'https://ror.org/003t61x02', 'en', 1, 'https://ror.org/003t61x02 Bristlecone Family Resources'),
(10118, 'https://ror.org/003v2c511', 'no_lang_code', 1, 'https://ror.org/003v2c511 Allgemeine ElektrizitƤts Gesellschaft (Germany) General Electricity Company'),
(10119, 'https://ror.org/00406q532', 'en', 1, 'https://ror.org/00406q532 Providence Alaska Medical Center'),
(10120, 'https://ror.org/0040b6869', 'en', 1, 'https://ror.org/0040b6869 International Brain Research Organization Organisation internationale de recherche sur le cerveau'),
(10121, 'https://ror.org/0042p7m09', 'no_lang_code', 1, 'https://ror.org/0042p7m09 Nivalis Therapeutics (United States)'),
(10122, 'https://ror.org/0044m1c71', 'no_lang_code', 1, 'https://ror.org/0044m1c71 Conceptivity (Switzerland)'),
(10123, 'https://ror.org/0044vax59', 'no_lang_code', 1, 'https://ror.org/0044vax59 GEA Group (Germany)'),
(10124, 'https://ror.org/0046pcp30', 'no_lang_code', 1, 'https://ror.org/0046pcp30 Gwent Group (United Kingdom)'),
(10125, 'https://ror.org/004718x66', 'en', 1, 'https://ror.org/004718x66 American Himalayan Foundation'),
(10126, 'https://ror.org/0048c7h22', 'no_lang_code', 1, 'https://ror.org/0048c7h22 Tecnologƭas Servicios TelemƔticos y Sistemas'),
(10127, 'https://ror.org/00497h462', 'no_lang_code', 1, 'https://ror.org/00497h462 Hewlett-Packard (France)'),
(10128, 'https://ror.org/0049h1m27', 'no_lang_code', 1, 'https://ror.org/0049h1m27 Otto Group (Germany)'),
(10129, 'https://ror.org/004anj868', 'en', 1, 'https://ror.org/004anj868 Danish National Centre for Social Research Det Nationale Forskningscenter for VelfƦrd'),
(10130, 'https://ror.org/004b1aw93', 'no_lang_code', 1, 'https://ror.org/004b1aw93 Keshet Dance Company (United States)'),
(10131, 'https://ror.org/004er7684', 'no_lang_code', 1, 'https://ror.org/004er7684 Luxilon (Belgium)'),
(10132, 'https://ror.org/004f1q697', 'no_lang_code', 1, 'https://ror.org/004f1q697 Innovation (Latvia)'),
(10133, 'https://ror.org/004fch170', 'en', 1, 'https://ror.org/004fch170 Clara Martin Center'),
(10134, 'https://ror.org/004g36n56', 'no_lang_code', 1, 'https://ror.org/004g36n56 Software (Germany)'),
(10135, 'https://ror.org/004gvby26', 'no_lang_code', 1, 'https://ror.org/004gvby26 Solaronix (Switzerland)'),
(10136, 'https://ror.org/004hkm505', 'no_lang_code', 1, 'https://ror.org/004hkm505 Pacific Biodiesel (United States)'),
(10137, 'https://ror.org/004htp828', 'en', 1, 'https://ror.org/004htp828 Cambodian Association of America'),
(10138, 'https://ror.org/004j5ke68', 'en', 1, 'https://ror.org/004j5ke68 CNL World'),
(10139, 'https://ror.org/004m17078', 'en', 1, 'https://ror.org/004m17078 Resources for Independence Central Valley'),
(10140, 'https://ror.org/004np0e76', 'no_lang_code', 1, 'https://ror.org/004np0e76 Dornier (Germany)'),
(10141, 'https://ror.org/004qf6v24', 'en', 1, 'https://ror.org/004qf6v24 United Charitable'),
(10142, 'https://ror.org/004qxjv96', 'en', 1, 'https://ror.org/004qxjv96 Concern Worldwide'),
(10143, 'https://ror.org/004rej139', 'fr', 1, 'https://ror.org/004rej139 Centre National de Recherches MƩtƩorologiques'),
(10144, 'https://ror.org/004vck917', 'en', 1, 'https://ror.org/004vck917 Winston County Self Help Cooperative'),
(10145, 'https://ror.org/004y0gv29', 'en', 1, 'https://ror.org/004y0gv29 Community Breast Care Project'),
(10146, 'https://ror.org/004y9hm48', 'en', 1, 'https://ror.org/004y9hm48 Mighty4 Arts Foundation'),
(10147, 'https://ror.org/00503gj66', 'no_lang_code', 1, 'https://ror.org/00503gj66 Microvi Biotechnologies (United States)'),
(10148, 'https://ror.org/00509dp49', 'en', 1, 'https://ror.org/00509dp49 Any Baby Can'),
(10149, 'https://ror.org/0051tdp65', 'en', 1, 'https://ror.org/0051tdp65 Beacon Health System'),
(10150, 'https://ror.org/00526y629', 'no_lang_code', 1, 'https://ror.org/00526y629 SES (Luxembourg)'),
(10151, 'https://ror.org/00535yn06', 'no_lang_code', 1, 'https://ror.org/00535yn06 Telscom (Switzerland)'),
(10152, 'https://ror.org/0053hg536', 'en', 1, 'https://ror.org/0053hg536 Arkana Laboratories'),
(10153, 'https://ror.org/0053krp57', 'en', 1, 'https://ror.org/0053krp57 Children''s Brain Tumor Foundation'),
(10154, 'https://ror.org/005574r46', 'no_lang_code', 1, 'https://ror.org/005574r46 Italsolar (Italy)'),
(10155, 'https://ror.org/00566zb37', 'en', 1, 'https://ror.org/00566zb37 Desi Geestman Foundation'),
(10156, 'https://ror.org/0057wrw58', 'no_lang_code', 1, 'https://ror.org/0057wrw58 Solintel (Spain)'),
(10157, 'https://ror.org/005aym849', 'en', 1, 'https://ror.org/005aym849 Yakima Valley Community College'),
(10158, 'https://ror.org/005bg5z56', 'no_lang_code', 1, 'https://ror.org/005bg5z56 Prima Industrie (Italy)'),
(10159, 'https://ror.org/005cxtt77', 'no_lang_code', 1, 'https://ror.org/005cxtt77 Enertechnix (United States)'),
(10160, 'https://ror.org/005e54928', 'no_lang_code', 1, 'https://ror.org/005e54928 Kjobenhavns Telefon Aktieselskab (Denmark)'),
(10161, 'https://ror.org/005f16662', 'en', 1, 'https://ror.org/005f16662 FishBase Information and Research Group'),
(10162, 'https://ror.org/005gk6w44', 'no_lang_code', 1, 'https://ror.org/005gk6w44 Biocentras (Lithuania)'),
(10163, 'https://ror.org/005jham19', 'no_lang_code', 1, 'https://ror.org/005jham19 Ente Nazionale Assistenza al Volo (Italy)'),
(10164, 'https://ror.org/005m1kj18', 'en', 1, 'https://ror.org/005m1kj18 Bay Mills Community College'),
(10165, 'https://ror.org/005mr0595', 'no_lang_code', 1, 'https://ror.org/005mr0595 Technology Holding (United States)'),
(10166, 'https://ror.org/005p0t446', 'eu', 1, 'https://ror.org/005p0t446 Institute for Applied Ecology Oeko Institut'),
(10167, 'https://ror.org/005r3ak92', 'es', 1, 'https://ror.org/005r3ak92 Fondo Centroamericano de Mujeres'),
(10168, 'https://ror.org/005sd3904', 'no_lang_code', 1, 'https://ror.org/005sd3904 Enviscope (Germany)'),
(10169, 'https://ror.org/005spvz56', 'en', 1, 'https://ror.org/005spvz56 North Country Hospital'),
(10170, 'https://ror.org/005w2t155', 'no_lang_code', 1, 'https://ror.org/005w2t155 Norsk Elektro Optikk (Norway)'),
(10171, 'https://ror.org/005wy0t74', 'en', 1, 'https://ror.org/005wy0t74 Luxinnovation'),
(10172, 'https://ror.org/005ypgw33', 'no_lang_code', 1, 'https://ror.org/005ypgw33 ISRA Vision Parsytec (Germany)'),
(10173, 'https://ror.org/005ypw517', 'en', 1, 'https://ror.org/005ypw517 Men''s Health Network'),
(10174, 'https://ror.org/0060eqh22', 'en', 1, 'https://ror.org/0060eqh22 Adelante Mujeres'),
(10175, 'https://ror.org/00618cy28', 'en', 1, 'https://ror.org/00618cy28 Haitian American Association Against Cancer'),
(10176, 'https://ror.org/00659dh25', 'en', 1, 'https://ror.org/00659dh25 Arizona Sonora Desert Museum'),
(10177, 'https://ror.org/00672e058', 'en', 1, 'https://ror.org/00672e058 Allen Temple Baptist Church'),
(10178, 'https://ror.org/0067eyh19', 'en', 1, 'https://ror.org/0067eyh19 LAND studio'),
(10179, 'https://ror.org/0067mxm07', 'en', 1, 'https://ror.org/0067mxm07 Global Autism Project'),
(10180, 'https://ror.org/0069cx113', 'no_lang_code', 1, 'https://ror.org/0069cx113 Terradue (Italy)'),
(10181, 'https://ror.org/006c77f48', 'en', 1, 'https://ror.org/006c77f48 Institute of Applied Mathematics and Mechanics'),
(10182, 'https://ror.org/006c8zj95', 'en', 1, 'https://ror.org/006c8zj95 President''s Council of Advisors on Science and Technology'),
(10183, 'https://ror.org/006dmc180', 'en', 1, 'https://ror.org/006dmc180 Joint Institute for VLBI ERIC'),
(10184, 'https://ror.org/006dpe828', 'en', 1, 'https://ror.org/006dpe828 University of California Hastings College of the Law Ɖcole de droit hastings de l''universitĆ© de californie'),
(10185, 'https://ror.org/006eg4f53', 'en', 1, 'https://ror.org/006eg4f53 Boca Raton Museum of Art'),
(10186, 'https://ror.org/006f4zn23', 'en', 1, 'https://ror.org/006f4zn23 Institute for Physics and Power Engineering Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской ФеГерации Физико-ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚, Š“ŠŠ¦ РФ-ФЭИ'),
(10187, 'https://ror.org/006gmw843', 'en', 1, 'https://ror.org/006gmw843 Community Reach of Montgomery County'),
(10188, 'https://ror.org/006gxgq80', 'no_lang_code', 1, 'https://ror.org/006gxgq80 Omniform (Belgium)'),
(10189, 'https://ror.org/006h87a74', 'no_lang_code', 1, 'https://ror.org/006h87a74 Veolia (Denmark)'),
(10190, 'https://ror.org/006kghv09', 'no_lang_code', 1, 'https://ror.org/006kghv09 Synergie Informatique'),
(10191, 'https://ror.org/006m5mj32', 'it', 1, 'https://ror.org/006m5mj32 Istituto di Sociologia Internazionale di Gorizia'),
(10192, 'https://ror.org/006p7ys96', 'no_lang_code', 1, 'https://ror.org/006p7ys96 Metos (Austria)'),
(10193, 'https://ror.org/006r49z69', 'no_lang_code', 1, 'https://ror.org/006r49z69 NVision Solutions (United States)'),
(10194, 'https://ror.org/006r5gc68', 'en', 1, 'https://ror.org/006r5gc68 Breast Cancer Care and Research Fund'),
(10195, 'https://ror.org/006y04m02', 'no_lang_code', 1, 'https://ror.org/006y04m02 Separex (France)'),
(10196, 'https://ror.org/0070dz419', 'en', 1, 'https://ror.org/0070dz419 AbilityPLUS'),
(10197, 'https://ror.org/007398w55', 'en', 1, 'https://ror.org/007398w55 Australasia Paediatric Endocrine Group'),
(10198, 'https://ror.org/0076zct58', 'en', 1, 'https://ror.org/0076zct58 Anhalt University of Applied Sciences Hochschule Anhalt'),
(10199, 'https://ror.org/00780ev46', 'no_lang_code', 1, 'https://ror.org/00780ev46 Mobycon'),
(10200, 'https://ror.org/0079ca173', 'en', 1, 'https://ror.org/0079ca173 Door to Hope'),
(10201, 'https://ror.org/0079phc76', 'en', 1, 'https://ror.org/0079phc76 Greater Faith Baptist Church'),
(10202, 'https://ror.org/007agsn16', 'en', 1, 'https://ror.org/007agsn16 Cardinal Ritter Senior Services'),
(10203, 'https://ror.org/007bef738', 'no_lang_code', 1, 'https://ror.org/007bef738 Kala Pharmaceuticals (United States)'),
(10204, 'https://ror.org/007d8wc49', 'no_lang_code', 1, 'https://ror.org/007d8wc49 Coastal Anesthesiology Consultants (United States)'),
(10205, 'https://ror.org/007dpey41', 'en', 1, 'https://ror.org/007dpey41 NC Little Memorial Hospice'),
(10206, 'https://ror.org/007hxks16', 'en', 1, 'https://ror.org/007hxks16 Leonia Public Schools'),
(10207, 'https://ror.org/007k2q988', 'no_lang_code', 1, 'https://ror.org/007k2q988 Arecor (United Kingdom)'),
(10208, 'https://ror.org/007n8tg79', 'no_lang_code', 1, 'https://ror.org/007n8tg79 DanSteel (Denmark)'),
(10209, 'https://ror.org/007nfvg13', 'en', 1, 'https://ror.org/007nfvg13 LivingWell Cancer Resource Center'),
(10210, 'https://ror.org/007nspy92', 'en', 1, 'https://ror.org/007nspy92 Regional Center for Information and Scientific Development'),
(10211, 'https://ror.org/007qdqj47', 'en', 1, 'https://ror.org/007qdqj47 Department of Health and Wellness Promotion'),
(10212, 'https://ror.org/007r56b43', 'en', 1, 'https://ror.org/007r56b43 Endeavor Charter School'),
(10213, 'https://ror.org/007rawr89', 'en', 1, 'https://ror.org/007rawr89 Augusta University Health'),
(10214, 'https://ror.org/007rmqd49', 'en', 1, 'https://ror.org/007rmqd49 National Bone Marrow Transplant Link'),
(10215, 'https://ror.org/007sjp271', 'en', 1, 'https://ror.org/007sjp271 Los Angeles Neighborhood Land Trust'),
(10216, 'https://ror.org/007st1w34', 'no_lang_code', 1, 'https://ror.org/007st1w34 Piksel (Italy)'),
(10217, 'https://ror.org/007t1w466', 'en', 1, 'https://ror.org/007t1w466 Orthopaedic Research Laboratories'),
(10218, 'https://ror.org/007tnc411', 'no_lang_code', 1, 'https://ror.org/007tnc411 Ottobock (Germany)'),
(10219, 'https://ror.org/007vhwd23', 'en', 1, 'https://ror.org/007vhwd23 Cathedral Church of Saint John the Divine'),
(10220, 'https://ror.org/007vvfj24', 'en', 1, 'https://ror.org/007vvfj24 CĆ­rculo de Vida'),
(10221, 'https://ror.org/007yc7a13', 'no_lang_code', 1, 'https://ror.org/007yc7a13 Brimatech (Austria)'),
(10222, 'https://ror.org/0082ybm03', 'en', 1, 'https://ror.org/0082ybm03 Texas Tech University System'),
(10223, 'https://ror.org/0083ncs46', 'en', 1, 'https://ror.org/0083ncs46 Fraunhofer Institute for Applied Solid State Physics Fraunhofer-Institut für Angewandte Festkörperphysik'),
(10224, 'https://ror.org/0084q6j82', 'no_lang_code', 1, 'https://ror.org/0084q6j82 Wask Engineering (United States)'),
(10225, 'https://ror.org/00862c839', 'no_lang_code', 1, 'https://ror.org/00862c839 Ricardo AEA (Netherlands)'),
(10226, 'https://ror.org/0086w0z14', 'de', 1, 'https://ror.org/0086w0z14 Forschungsinstitut für Edelmetalle und Metallchemie Research Institute for Precious Metals and Metal Chemistry'),
(10227, 'https://ror.org/00878ar41', 'en', 1, 'https://ror.org/00878ar41 Comanche County Juvenile Bureau'),
(10228, 'https://ror.org/0088fqs38', 'en', 1, 'https://ror.org/0088fqs38 HealthNet TPO'),
(10229, 'https://ror.org/00893gj13', 'no_lang_code', 1, 'https://ror.org/00893gj13 In JeT ApS (Denmark)'),
(10230, 'https://ror.org/0089q3791', 'no_lang_code', 1, 'https://ror.org/0089q3791 JosƩ Mateo Ballet Theatre (United States)'),
(10231, 'https://ror.org/008a8ch32', 'no_lang_code', 1, 'https://ror.org/008a8ch32 KitoZyme (Belgium)'),
(10232, 'https://ror.org/008d28s71', 'en', 1, 'https://ror.org/008d28s71 Hinds Community College'),
(10233, 'https://ror.org/008e03r59', 'en', 1, 'https://ror.org/008e03r59 Palo Alto Veterans Institute for Research'),
(10234, 'https://ror.org/008gaha58', 'no_lang_code', 1, 'https://ror.org/008gaha58 Ionicon Analytik (Austria)'),
(10235, 'https://ror.org/008jvtm10', 'en', 1, 'https://ror.org/008jvtm10 Carmel Research Center'),
(10236, 'https://ror.org/008q6py59', 'no_lang_code', 1, 'https://ror.org/008q6py59 Project in Solar Energy (Germany)'),
(10237, 'https://ror.org/008qy0g71', 'en', 1, 'https://ror.org/008qy0g71 Renown Children''s Hospital'),
(10238, 'https://ror.org/008rx8a22', 'en', 1, 'https://ror.org/008rx8a22 Sampson County Schools'),
(10239, 'https://ror.org/008s8js48', 'en', 1, 'https://ror.org/008s8js48 Central Coast Center for Independent Living'),
(10240, 'https://ror.org/008sqe405', 'en', 1, 'https://ror.org/008sqe405 Children''s Hospital Srebrnjak Dječja Bolnica Srebrnjak'),
(10241, 'https://ror.org/008srgs73', 'en', 1, 'https://ror.org/008srgs73 Inland Empire Concerned African American Churches'),
(10242, 'https://ror.org/008tsd037', 'en', 1, 'https://ror.org/008tsd037 Memorial Medical Center'),
(10243, 'https://ror.org/008vgsq37', 'en', 1, 'https://ror.org/008vgsq37 National Council of Negro Women'),
(10244, 'https://ror.org/008wfp513', 'no_lang_code', 1, 'https://ror.org/008wfp513 Buck Consultants International'),
(10245, 'https://ror.org/008zr4d33', 'en', 1, 'https://ror.org/008zr4d33 Galilee Missionary Baptist Church'),
(10246, 'https://ror.org/008zvz098', 'en', 1, 'https://ror.org/008zvz098 New America');
INSERT INTO `rors` VALUES
(10247, 'https://ror.org/0090j2029', 'en', 1, 'https://ror.org/0090j2029 Hospital Universiti Sains Malaysia, Universiti Sains Malaysia School of Medical Science'),
(10248, 'https://ror.org/0091xv072', 'no_lang_code', 1, 'https://ror.org/0091xv072 Eramet (France)'),
(10249, 'https://ror.org/00927nm35', 'no_lang_code', 1, 'https://ror.org/00927nm35 Applied Nanotech (United States)'),
(10250, 'https://ror.org/0092p0v85', 'en', 1, 'https://ror.org/0092p0v85 Breast International Group'),
(10251, 'https://ror.org/00940ss05', 'en', 1, 'https://ror.org/00940ss05 Shields Valley Public Schools'),
(10252, 'https://ror.org/00962x353', 'no_lang_code', 1, 'https://ror.org/00962x353 Luossavaara-Kiirunavaara Aktiebolag (Sweden)'),
(10253, 'https://ror.org/00975k008', 'no_lang_code', 1, 'https://ror.org/00975k008 Dancing Wheels (United States)'),
(10254, 'https://ror.org/0098cf282', 'no_lang_code', 1, 'https://ror.org/0098cf282 N8 Medical (United States)'),
(10255, 'https://ror.org/009c3x903', 'en', 1, 'https://ror.org/009c3x903 New England Cancer Specialists'),
(10256, 'https://ror.org/009cgyv75', 'it', 1, 'https://ror.org/009cgyv75 Consorzio Multi-Ente per la promozione e l''adozione di Tecnologie di calcolo Avanzato'),
(10257, 'https://ror.org/009h1mf85', 'en', 1, 'https://ror.org/009h1mf85 Newark Museum'),
(10258, 'https://ror.org/009htht73', 'en', 1, 'https://ror.org/009htht73 Alicia Rose Victorious Foundation'),
(10259, 'https://ror.org/009jmw315', 'en', 1, 'https://ror.org/009jmw315 Northwest Georgia Regional Cancer Coalition'),
(10260, 'https://ror.org/009jz9e24', 'en', 1, 'https://ror.org/009jz9e24 Pangaea Global AIDS Foundation'),
(10261, 'https://ror.org/009n2kd47', 'no_lang_code', 1, 'https://ror.org/009n2kd47 Toulon Var Technologies (France)'),
(10262, 'https://ror.org/009s7cn04', 'en', 1, 'https://ror.org/009s7cn04 Nick Simons Institute'),
(10263, 'https://ror.org/009txp447', 'no_lang_code', 1, 'https://ror.org/009txp447 PureTemp (United States)'),
(10264, 'https://ror.org/009v14c36', 'no_lang_code', 1, 'https://ror.org/009v14c36 Ferioli & Gianotti (Italy)'),
(10265, 'https://ror.org/009vreb09', 'no_lang_code', 1, 'https://ror.org/009vreb09 Uniscan Instruments (United Kingdom)'),
(10266, 'https://ror.org/009z2hr67', 'en', 1, 'https://ror.org/009z2hr67 SLO Food Bank'),
(10267, 'https://ror.org/009za6q24', 'en', 1, 'https://ror.org/009za6q24 Teach For America'),
(10268, 'https://ror.org/00a06kx42', 'en', 1, 'https://ror.org/00a06kx42 La Porte Hospital'),
(10269, 'https://ror.org/00a0vzn71', 'en', 1, 'https://ror.org/00a0vzn71 Arthur Ashe Learning Center'),
(10270, 'https://ror.org/00a17cp45', 'no_lang_code', 1, 'https://ror.org/00a17cp45 TecnologĆ­a Navarra de Nanoproductos (Spain)'),
(10271, 'https://ror.org/00a20h625', 'en', 1, 'https://ror.org/00a20h625 Capital Region Medical Center'),
(10272, 'https://ror.org/00a34rj81', 'no_lang_code', 1, 'https://ror.org/00a34rj81 Bax & Willems'),
(10273, 'https://ror.org/00a3hks83', 'no_lang_code', 1, 'https://ror.org/00a3hks83 Housey Pharmaceutical Research Laboratories'),
(10274, 'https://ror.org/00a65ez32', 'en', 1, 'https://ror.org/00a65ez32 State Hermitage Museum Š“Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Эрмита́ж'),
(10275, 'https://ror.org/00a6bz625', 'no_lang_code', 1, 'https://ror.org/00a6bz625 Rete Europea Dell’Innovazione (Italy)'),
(10276, 'https://ror.org/00a98dc55', 'en', 1, 'https://ror.org/00a98dc55 CombiMatrix'),
(10277, 'https://ror.org/00a9t7j25', 'en', 1, 'https://ror.org/00a9t7j25 Lars Research Institute'),
(10278, 'https://ror.org/00aakch57', 'no_lang_code', 1, 'https://ror.org/00aakch57 Terres OlƩoPro (France)'),
(10279, 'https://ror.org/00aanwc55', 'en', 1, 'https://ror.org/00aanwc55 International Society for Augmentative and Alternative Communication'),
(10280, 'https://ror.org/00abwfk08', 'en', 1, 'https://ror.org/00abwfk08 Howard Area Community Center'),
(10281, 'https://ror.org/00acdsz41', 'no_lang_code', 1, 'https://ror.org/00acdsz41 Paragon (Malta)'),
(10282, 'https://ror.org/00acg6793', 'en', 1, 'https://ror.org/00acg6793 Community Support Network'),
(10283, 'https://ror.org/00acgme86', 'no_lang_code', 1, 'https://ror.org/00acgme86 France DƩveloppement Conseil (France)'),
(10284, 'https://ror.org/00afc1337', 'en', 1, 'https://ror.org/00afc1337 Aspira'),
(10285, 'https://ror.org/00ag5y002', 'it', 1, 'https://ror.org/00ag5y002 Istituto Nazionale per Studi ed Esperienze di Architettura Navale'),
(10286, 'https://ror.org/00agqps10', 'en', 1, 'https://ror.org/00agqps10 Consolidated Tribal Health Project'),
(10287, 'https://ror.org/00ah8d329', 'no_lang_code', 1, 'https://ror.org/00ah8d329 Oxford Computer Consultants (United Kingdom)'),
(10288, 'https://ror.org/00ahajr35', 'en', 1, 'https://ror.org/00ahajr35 Capital City Area Health Education Center'),
(10289, 'https://ror.org/00aj26w03', 'en', 1, 'https://ror.org/00aj26w03 Paint Research Association'),
(10290, 'https://ror.org/00aj75s74', 'en', 1, 'https://ror.org/00aj75s74 Belmont Abbey College'),
(10291, 'https://ror.org/00aj9x431', 'en', 1, 'https://ror.org/00aj9x431 Region of Western Greece Περιφέρεια Δυτικής ΕλλάΓας'),
(10292, 'https://ror.org/00an0vn46', 'no_lang_code', 1, 'https://ror.org/00an0vn46 Raidió TeilifĆ­s Ɖireann (Ireland)'),
(10293, 'https://ror.org/00ansy136', 'no_lang_code', 1, 'https://ror.org/00ansy136 Saaten Union (Germany)'),
(10294, 'https://ror.org/00avzve25', 'no_lang_code', 1, 'https://ror.org/00avzve25 Edelweiss Gestão Empresarial (Brazil)'),
(10295, 'https://ror.org/00awqjx60', 'no_lang_code', 1, 'https://ror.org/00awqjx60 Softeam Cadextan'),
(10296, 'https://ror.org/00ax59295', 'en', 1, 'https://ror.org/00ax59295 Cystic Fibrosis Foundation'),
(10297, 'https://ror.org/00azr2q62', 'no_lang_code', 1, 'https://ror.org/00azr2q62 METALogic (Belgium)'),
(10298, 'https://ror.org/00aztzy37', 'no_lang_code', 1, 'https://ror.org/00aztzy37 El.En. Group (Italy)'),
(10299, 'https://ror.org/00b06wh69', 'no_lang_code', 1, 'https://ror.org/00b06wh69 Austrian Broadcasting Ɩsterreichischer Rundfunk'),
(10300, 'https://ror.org/00b0aes62', 'en', 1, 'https://ror.org/00b0aes62 Indian Health Council'),
(10301, 'https://ror.org/00b0jb681', 'en', 1, 'https://ror.org/00b0jb681 Krasnoyarsk State Medical University Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени профессора Š’.Ф. Войно-Ясенецкого ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(10302, 'https://ror.org/00b1drk46', 'no_lang_code', 1, 'https://ror.org/00b1drk46 Asper Biotech (Estonia)'),
(10303, 'https://ror.org/00b37k984', 'en', 1, 'https://ror.org/00b37k984 Elixir Fund'),
(10304, 'https://ror.org/00b4jn519', 'en', 1, 'https://ror.org/00b4jn519 United Way of Greater Portland'),
(10305, 'https://ror.org/00b8bzq64', 'no_lang_code', 1, 'https://ror.org/00b8bzq64 Oncos Therapeutics (Finland)'),
(10306, 'https://ror.org/00b8kjk28', 'no_lang_code', 1, 'https://ror.org/00b8kjk28 Praxis'),
(10307, 'https://ror.org/00b970z32', 'no_lang_code', 1, 'https://ror.org/00b970z32 Orion Genomics (United States)'),
(10308, 'https://ror.org/00b9qa162', 'no_lang_code', 1, 'https://ror.org/00b9qa162 Keraplast Technologies (United States)'),
(10309, 'https://ror.org/00baer621', 'en', 1, 'https://ror.org/00baer621 Bon Secours Health System'),
(10310, 'https://ror.org/00beq0325', 'pt', 1, 'https://ror.org/00beq0325 Centro Tecnológico do Calçado de Portugal'),
(10311, 'https://ror.org/00bgp5g67', 'no_lang_code', 1, 'https://ror.org/00bgp5g67 iFyber (United States)'),
(10312, 'https://ror.org/00bh09051', 'no_lang_code', 1, 'https://ror.org/00bh09051 Logit Systems (Norway)'),
(10313, 'https://ror.org/00bjwbm70', 'en', 1, 'https://ror.org/00bjwbm70 International Society for Optical Engineering'),
(10314, 'https://ror.org/00bpbqe63', 'en', 1, 'https://ror.org/00bpbqe63 Pildo Labs'),
(10315, 'https://ror.org/00brd1934', 'no_lang_code', 1, 'https://ror.org/00brd1934 Intelligentsia Consultants'),
(10316, 'https://ror.org/00brvts71', 'en', 1, 'https://ror.org/00brvts71 HP Family Medical Clinic'),
(10317, 'https://ror.org/00bvn9584', 'no_lang_code', 1, 'https://ror.org/00bvn9584 FOV Fabrics (Sweden)'),
(10318, 'https://ror.org/00bvpsj93', 'en', 1, 'https://ror.org/00bvpsj93 European Trade Union Confederation'),
(10319, 'https://ror.org/00by51808', 'no_lang_code', 1, 'https://ror.org/00by51808 Mƶlnlycke Health Care (United States)'),
(10320, 'https://ror.org/00bz41f09', 'en', 1, 'https://ror.org/00bz41f09 Afghan Coalition'),
(10321, 'https://ror.org/00bz7xw94', 'en', 1, 'https://ror.org/00bz7xw94 Literacy for Environmental Justice'),
(10322, 'https://ror.org/00bzst557', 'en', 1, 'https://ror.org/00bzst557 Communities In Schools of Orange County'),
(10323, 'https://ror.org/00c0q9724', 'en', 1, 'https://ror.org/00c0q9724 Health Care Management Group'),
(10324, 'https://ror.org/00c26wt35', 'en', 1, 'https://ror.org/00c26wt35 Maine-Dartmouth Family Medicine Residency'),
(10325, 'https://ror.org/00c4fej53', 'en', 1, 'https://ror.org/00c4fej53 West Virginia Department of Agriculture'),
(10326, 'https://ror.org/00c6b1k17', 'no_lang_code', 1, 'https://ror.org/00c6b1k17 Capgemini (Belgium)'),
(10327, 'https://ror.org/00c6h1169', 'en', 1, 'https://ror.org/00c6h1169 Genesis Counseling Centers'),
(10328, 'https://ror.org/00c74hc78', 'en', 1, 'https://ror.org/00c74hc78 HaitiChildren'),
(10329, 'https://ror.org/00c8n3h65', 'en', 1, 'https://ror.org/00c8n3h65 European Respiratory Society'),
(10330, 'https://ror.org/00c97z041', 'no_lang_code', 1, 'https://ror.org/00c97z041 Engie (Belgium)'),
(10331, 'https://ror.org/00ca7az78', 'no_lang_code', 1, 'https://ror.org/00ca7az78 BIC Bratislava (Slovakia)'),
(10332, 'https://ror.org/00caks861', 'en', 1, 'https://ror.org/00caks861 Bedford VA Research Corporation'),
(10333, 'https://ror.org/00ccz3w83', 'no_lang_code', 1, 'https://ror.org/00ccz3w83 Eco Composites (United States)'),
(10334, 'https://ror.org/00cdtrb49', 'en', 1, 'https://ror.org/00cdtrb49 Oregon College of Oriental Medicine'),
(10335, 'https://ror.org/00cgdz126', 'it', 1, 'https://ror.org/00cgdz126 Italian Union of the Blind and Partially Sighted Unione Italiana dei Ciechi e degli Ipovedenti'),
(10336, 'https://ror.org/00chw7248', 'no_lang_code', 1, 'https://ror.org/00chw7248 Motorola (Italy)'),
(10337, 'https://ror.org/00ckx8y08', 'no_lang_code', 1, 'https://ror.org/00ckx8y08 Berliner Nanotest und Design'),
(10338, 'https://ror.org/00cp8tk34', 'no_lang_code', 1, 'https://ror.org/00cp8tk34 Infor (Netherlands)'),
(10339, 'https://ror.org/00cpcby17', 'no_lang_code', 1, 'https://ror.org/00cpcby17 Centre Technique Cuir Chaussure Maroquinerie (France)'),
(10340, 'https://ror.org/00cpkx252', 'en', 1, 'https://ror.org/00cpkx252 Charles County Public Schools'),
(10341, 'https://ror.org/00cqg9869', 'en', 1, 'https://ror.org/00cqg9869 Region One Mental Health'),
(10342, 'https://ror.org/00cswhr36', 'no_lang_code', 1, 'https://ror.org/00cswhr36 ISA Pharmaceuticals (Netherlands)'),
(10343, 'https://ror.org/00ctvyy53', 'en', 1, 'https://ror.org/00ctvyy53 Local Government Management Agency'),
(10344, 'https://ror.org/00cvfgp24', 'no_lang_code', 1, 'https://ror.org/00cvfgp24 Endocrine Technology (United States)'),
(10345, 'https://ror.org/00czgcw56', 'en', 1, 'https://ror.org/00czgcw56 Madras Diabetes Research Foundation'),
(10346, 'https://ror.org/00d1wxk10', 'en', 1, 'https://ror.org/00d1wxk10 Reel Recovery'),
(10347, 'https://ror.org/00d34nb45', 'no_lang_code', 1, 'https://ror.org/00d34nb45 Technology Application Network (United Kingdom)'),
(10348, 'https://ror.org/00d4wef72', 'en', 1, 'https://ror.org/00d4wef72 Kendra''s Kisses'),
(10349, 'https://ror.org/00d5z2352', 'no_lang_code', 1, 'https://ror.org/00d5z2352 Bekaert (Belgium)'),
(10350, 'https://ror.org/00d68nb44', 'en', 1, 'https://ror.org/00d68nb44 GrassrootsHealth'),
(10351, 'https://ror.org/00d73ba28', 'no_lang_code', 1, 'https://ror.org/00d73ba28 Oncomatryx (Spain)'),
(10352, 'https://ror.org/00d7mpc92', 'en', 1, 'https://ror.org/00d7mpc92 PENTA Foundation'),
(10353, 'https://ror.org/00d8qva59', 'en', 1, 'https://ror.org/00d8qva59 Maine Adaptive Sports & Recreation'),
(10354, 'https://ror.org/00d9pfn36', 'en', 1, 'https://ror.org/00d9pfn36 George Eliava Institute of Bacteriophage, Microbiology and Virology'),
(10355, 'https://ror.org/00d9spg57', 'it', 1, 'https://ror.org/00d9spg57 Agenzia dei Trasporti Autoferrotranviari del Comune'),
(10356, 'https://ror.org/00d9y2633', 'no_lang_code', 1, 'https://ror.org/00d9y2633 NTT (Italy)'),
(10357, 'https://ror.org/00daztz68', 'no_lang_code', 1, 'https://ror.org/00daztz68 Kostopulos Dream Foundation'),
(10358, 'https://ror.org/00de6v257', 'no_lang_code', 1, 'https://ror.org/00de6v257 Envisa (France)'),
(10359, 'https://ror.org/00dk11h96', 'en', 1, 'https://ror.org/00dk11h96 New Jersey Department of Agriculture'),
(10360, 'https://ror.org/00dkszm12', 'no_lang_code', 1, 'https://ror.org/00dkszm12 Dantec Dynamics (Germany)'),
(10361, 'https://ror.org/00dmmws82', 'en', 1, 'https://ror.org/00dmmws82 American Childhood Cancer Organization'),
(10362, 'https://ror.org/00dmq5618', 'no_lang_code', 1, 'https://ror.org/00dmq5618 Compagnie Maritime d''Expertises (France)'),
(10363, 'https://ror.org/00dn4v959', 'en', 1, 'https://ror.org/00dn4v959 Baptist Health Floyd'),
(10364, 'https://ror.org/00dq6jh04', 'en', 1, 'https://ror.org/00dq6jh04 Health Trust'),
(10365, 'https://ror.org/00dqasn30', 'en', 1, 'https://ror.org/00dqasn30 Kathmandu Valley Preservation Trust'),
(10366, 'https://ror.org/00dqfzf20', 'en', 1, 'https://ror.org/00dqfzf20 Barnets borg Helsinki Children''s Hospital Lastenlinna'),
(10367, 'https://ror.org/00drc7v15', 'en', 1, 'https://ror.org/00drc7v15 Sustainable Food Center'),
(10368, 'https://ror.org/00ds1n976', 'en', 1, 'https://ror.org/00ds1n976 Baltimore Medical System'),
(10369, 'https://ror.org/00dsh2014', 'en', 1, 'https://ror.org/00dsh2014 Placer School for Adults'),
(10370, 'https://ror.org/00dt2y198', 'en', 1, 'https://ror.org/00dt2y198 Malta Information Technology Agency'),
(10371, 'https://ror.org/00dtfmh68', 'en', 1, 'https://ror.org/00dtfmh68 Mobile County Public Schools'),
(10372, 'https://ror.org/00dw1nx81', 'en', 1, 'https://ror.org/00dw1nx81 British Plastics Federation'),
(10373, 'https://ror.org/00dzkep57', 'no_lang_code', 1, 'https://ror.org/00dzkep57 Rijk Zwaan (Netherlands)'),
(10374, 'https://ror.org/00e0nxq90', 'en', 1, 'https://ror.org/00e0nxq90 Care International Sri Lanka'),
(10375, 'https://ror.org/00e0tnc81', 'en', 1, 'https://ror.org/00e0tnc81 ManageBGL'),
(10376, 'https://ror.org/00e2z2v91', 'de', 1, 'https://ror.org/00e2z2v91 Kuratorium für Technik und Bauwesen in der Landwirtschaft'),
(10377, 'https://ror.org/00e4qtq76', 'fr', 1, 'https://ror.org/00e4qtq76 Ministère de la Santé Publique et Action Sociale'),
(10378, 'https://ror.org/00e67e117', 'en', 1, 'https://ror.org/00e67e117 Angel Flight South Central'),
(10379, 'https://ror.org/00e7f1j69', 'no_lang_code', 1, 'https://ror.org/00e7f1j69 Capstan (United States)'),
(10380, 'https://ror.org/00e7hrn50', 'no_lang_code', 1, 'https://ror.org/00e7hrn50 LUSAS (United Kingdom)'),
(10381, 'https://ror.org/00e84bb93', 'no_lang_code', 1, 'https://ror.org/00e84bb93 Xnano Sciences (United States)'),
(10382, 'https://ror.org/00e95rr56', 'en', 1, 'https://ror.org/00e95rr56 Eyes Wide Open International'),
(10383, 'https://ror.org/00e960c03', 'no_lang_code', 1, 'https://ror.org/00e960c03 Blue Sun (United States)'),
(10384, 'https://ror.org/00ea6js36', 'en', 1, 'https://ror.org/00ea6js36 Heritage Ranch'),
(10385, 'https://ror.org/00eb0j070', 'en', 1, 'https://ror.org/00eb0j070 Cancer Family Care'),
(10386, 'https://ror.org/00eb1e195', 'en', 1, 'https://ror.org/00eb1e195 Institute of Physical Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Ń„ŠøŠ·ŠøŠŗŠ¾Ń…ŠøŠ¼ŠøŃ'),
(10387, 'https://ror.org/00ebf8055', 'en', 1, 'https://ror.org/00ebf8055 Chinese Christian Herald Crusades'),
(10388, 'https://ror.org/00ebjwx84', 'en', 1, 'https://ror.org/00ebjwx84 Cultural Humanitarian Fund Sukhumi'),
(10389, 'https://ror.org/00eczry62', 'no_lang_code', 1, 'https://ror.org/00eczry62 Troutlodge (United States)'),
(10390, 'https://ror.org/00ed6s086', 'en', 1, 'https://ror.org/00ed6s086 Cancer Services of Northeast Indiana'),
(10391, 'https://ror.org/00eehvf61', 'no_lang_code', 1, 'https://ror.org/00eehvf61 HKV (Netherlands)'),
(10392, 'https://ror.org/00ef3rg49', 'en', 1, 'https://ror.org/00ef3rg49 Arizona Veterans Research and Education Foundation'),
(10393, 'https://ror.org/00ek95971', 'no_lang_code', 1, 'https://ror.org/00ek95971 Cosytec (France)'),
(10394, 'https://ror.org/00emqem64', 'no_lang_code', 1, 'https://ror.org/00emqem64 Primmbiotech (Italy)'),
(10395, 'https://ror.org/00epmfe95', 'no_lang_code', 1, 'https://ror.org/00epmfe95 PhoeniX Software (Netherlands)'),
(10396, 'https://ror.org/00eptcw48', 'en', 1, 'https://ror.org/00eptcw48 Agri Analysis'),
(10397, 'https://ror.org/00esbrz24', 'en', 1, 'https://ror.org/00esbrz24 Coconino Community College Foundation'),
(10398, 'https://ror.org/00et1y633', 'en', 1, 'https://ror.org/00et1y633 Anti Domestic Violence Coalition'),
(10399, 'https://ror.org/00evcdx62', 'es', 1, 'https://ror.org/00evcdx62 Asociación para el Desarrollo Integral Comunitario'),
(10400, 'https://ror.org/00evgsc59', 'no_lang_code', 1, 'https://ror.org/00evgsc59 Babcock & Wilcox (Denmark)'),
(10401, 'https://ror.org/00ewj2q24', 'en', 1, 'https://ror.org/00ewj2q24 NextSteps Chicago'),
(10402, 'https://ror.org/00eyn9595', 'no_lang_code', 1, 'https://ror.org/00eyn9595 Malsch TechnoValuation'),
(10403, 'https://ror.org/00f0ppx79', 'en', 1, 'https://ror.org/00f0ppx79 O''Brien Institute'),
(10404, 'https://ror.org/00f55ed39', 'no_lang_code', 1, 'https://ror.org/00f55ed39 Eurosense (Belgium)'),
(10405, 'https://ror.org/00f70np64', 'en', 1, 'https://ror.org/00f70np64 Pain and Rehabilitation Medicine'),
(10406, 'https://ror.org/00f76x039', 'en', 1, 'https://ror.org/00f76x039 Nemours Children’s Clinic'),
(10407, 'https://ror.org/00fadxs59', 'en', 1, 'https://ror.org/00fadxs59 National Institute of Aerospace'),
(10408, 'https://ror.org/00fb7yx07', 'en', 1, 'https://ror.org/00fb7yx07 Institute of High Pressure Physics Instytut Wysokich Ciśnień'),
(10409, 'https://ror.org/00fbze943', 'en', 1, 'https://ror.org/00fbze943 Arcetri Astrophysical Observatory Osservatorio Astrofisico di Arcetri'),
(10410, 'https://ror.org/00fd6f737', 'en', 1, 'https://ror.org/00fd6f737 Institute for Security Studies'),
(10411, 'https://ror.org/00fey2y98', 'no_lang_code', 1, 'https://ror.org/00fey2y98 Technical Software Consulting'),
(10412, 'https://ror.org/00fgrt128', 'no_lang_code', 1, 'https://ror.org/00fgrt128 synergo'),
(10413, 'https://ror.org/00fmr3e85', 'en', 1, 'https://ror.org/00fmr3e85 American Folk Art Museum'),
(10414, 'https://ror.org/00fp8c217', 'en', 1, 'https://ror.org/00fp8c217 Mazor Mental Health Center ×”×ž×Ø×›×– הרפואי ×œ×‘×Ø×™××•×Ŗ הנפש ×ž×–×•×Ø'),
(10415, 'https://ror.org/00fqa4327', 'no_lang_code', 1, 'https://ror.org/00fqa4327 ActiveSite Pharmaceuticals (United States)'),
(10416, 'https://ror.org/00fr0gw86', 'en', 1, 'https://ror.org/00fr0gw86 Calmar Pain Relief'),
(10417, 'https://ror.org/00frxwd04', 'en', 1, 'https://ror.org/00frxwd04 Pathways Behavioral Services'),
(10418, 'https://ror.org/00fvm0x93', 'en', 1, 'https://ror.org/00fvm0x93 National September 11 Memorial and Museum'),
(10419, 'https://ror.org/00fwghy33', 'en', 1, 'https://ror.org/00fwghy33 Georgian Research and Educational Networking Association'),
(10420, 'https://ror.org/00fwv2w85', 'no_lang_code', 1, 'https://ror.org/00fwv2w85 Micro Resist Technology (Germany)'),
(10421, 'https://ror.org/00fxe2a68', 'en', 1, 'https://ror.org/00fxe2a68 Observa Science in Society'),
(10422, 'https://ror.org/00fyk9n62', 'en', 1, 'https://ror.org/00fyk9n62 Foundation of the Hellenic World'),
(10423, 'https://ror.org/00fzzvj42', 'no_lang_code', 1, 'https://ror.org/00fzzvj42 Veneto Nanotech (Italy)'),
(10424, 'https://ror.org/00g0ddq73', 'no_lang_code', 1, 'https://ror.org/00g0ddq73 Inmarsat (United Kingdom)'),
(10425, 'https://ror.org/00g3f1n02', 'en', 1, 'https://ror.org/00g3f1n02 African American Health Institute of San Bernardino County'),
(10426, 'https://ror.org/00g3zpx26', 'no_lang_code', 1, 'https://ror.org/00g3zpx26 Mainstream Engineering Corporation (United States)'),
(10427, 'https://ror.org/00g4qvs35', 'en', 1, 'https://ror.org/00g4qvs35 Institute of Logistics and Warehousing'),
(10428, 'https://ror.org/00g5s5c73', 'en', 1, 'https://ror.org/00g5s5c73 Fremont County Public Health'),
(10429, 'https://ror.org/00g656d67', 'en', 1, 'https://ror.org/00g656d67 Leibniz-Institut für Neue Materialien Leibniz-Institute for New Materials'),
(10430, 'https://ror.org/00g8m1t29', 'no_lang_code', 1, 'https://ror.org/00g8m1t29 Varian Medical Systems (United Kingdom)'),
(10431, 'https://ror.org/00g8wpx06', 'en', 1, 'https://ror.org/00g8wpx06 LGI Consulting'),
(10432, 'https://ror.org/00gbze925', 'no_lang_code', 1, 'https://ror.org/00gbze925 Lucchini Idromeccanica (Italy)'),
(10433, 'https://ror.org/00gcnz094', 'en', 1, 'https://ror.org/00gcnz094 Global Technology Community'),
(10434, 'https://ror.org/00gd6jw56', 'en', 1, 'https://ror.org/00gd6jw56 Lone Star Paralysis Foundation'),
(10435, 'https://ror.org/00ge54051', 'en', 1, 'https://ror.org/00ge54051 Mvskoke Food Sovereignty Initiative'),
(10436, 'https://ror.org/00gf55f61', 'no_lang_code', 1, 'https://ror.org/00gf55f61 Opexa Therapeutics (United States)'),
(10437, 'https://ror.org/00ghc0f97', 'en', 1, 'https://ror.org/00ghc0f97 Thuringian Institute of Textile and Plastics Research Thüringisches Institut für Textil- und Kunststoff-Forschung Rudolstadt'),
(10438, 'https://ror.org/00gj9hs42', 'no_lang_code', 1, 'https://ror.org/00gj9hs42 BioPulping International (United States)'),
(10439, 'https://ror.org/00gkv5g08', 'en', 1, 'https://ror.org/00gkv5g08 Our School at Blair Grocery'),
(10440, 'https://ror.org/00gkzpk47', 'no_lang_code', 1, 'https://ror.org/00gkzpk47 Advanced Biological Marketing (United States)'),
(10441, 'https://ror.org/00gnfkx95', 'no_lang_code', 1, 'https://ror.org/00gnfkx95 Sandvik (United States)'),
(10442, 'https://ror.org/00gpdgm12', 'en', 1, 'https://ror.org/00gpdgm12 La Semilla Food Center'),
(10443, 'https://ror.org/00gr8kx33', 'no_lang_code', 1, 'https://ror.org/00gr8kx33 Istituto Giordano'),
(10444, 'https://ror.org/00gsbmb44', 'no_lang_code', 1, 'https://ror.org/00gsbmb44 Renewable Energy Systems (United Kingdom)'),
(10445, 'https://ror.org/00gwz0j29', 'no_lang_code', 1, 'https://ror.org/00gwz0j29 Biotronics (United States)'),
(10446, 'https://ror.org/00gyf5945', 'en', 1, 'https://ror.org/00gyf5945 Ministry of Agriculture Nature and Food Quality'),
(10447, 'https://ror.org/00gywet31', 'en', 1, 'https://ror.org/00gywet31 National Institute of Geophysics, Geodesy and Geography ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по геофизика, Š³ŠµŠ¾Š“ŠµŠ·ŠøŃ Šø Š³ŠµŠ¾Š³Ń€Š°Ń„ŠøŃ'),
(10448, 'https://ror.org/00h2d8k73', 'en', 1, 'https://ror.org/00h2d8k73 Hospitality Homes'),
(10449, 'https://ror.org/00h741k48', 'no_lang_code', 1, 'https://ror.org/00h741k48 Mitergy (United States)'),
(10450, 'https://ror.org/00h9r4759', 'no_lang_code', 1, 'https://ror.org/00h9r4759 Flowtech International (Sweden)'),
(10451, 'https://ror.org/00ha29405', 'no_lang_code', 1, 'https://ror.org/00ha29405 Soil Born Farms Urban Agriculture & Education Project (United States)'),
(10452, 'https://ror.org/00hdnr317', 'en', 1, 'https://ror.org/00hdnr317 Danube Delta National Institute for Research and Development Institutul National de Cercetare Dezvoltare Delta Dunarii'),
(10453, 'https://ror.org/00hdz1808', 'no_lang_code', 1, 'https://ror.org/00hdz1808 Arelis (France)'),
(10454, 'https://ror.org/00hef7f20', 'en', 1, 'https://ror.org/00hef7f20 Finnish Transport Agency'),
(10455, 'https://ror.org/00hh6j532', 'en', 1, 'https://ror.org/00hh6j532 National Institute of Child Health OrszÔgos Gyermek Egészségügyi Intézet'),
(10456, 'https://ror.org/00hjks330', 'en', 1, 'https://ror.org/00hjks330 Koninklijke Sterrenwacht van Belgiƫ Kƶnigliche Sternwarte von Belgien Observatoire royal de belgique Royal Observatory of Belgium'),
(10457, 'https://ror.org/00hm3qq49', 'no_lang_code', 1, 'https://ror.org/00hm3qq49 Eolas (Ireland)'),
(10458, 'https://ror.org/00hn1zk59', 'en', 1, 'https://ror.org/00hn1zk59 Guiding Lights Caregiver Support Center'),
(10459, 'https://ror.org/00hncq557', 'en', 1, 'https://ror.org/00hncq557 University of Maryland Charles Regional Medical Center'),
(10460, 'https://ror.org/00hqdve77', 'no_lang_code', 1, 'https://ror.org/00hqdve77 Morgan Advanced Materials (United Kingdom)'),
(10461, 'https://ror.org/00hqnxt08', 'no_lang_code', 1, 'https://ror.org/00hqnxt08 Murmansk Marine Biological Institute'),
(10462, 'https://ror.org/00hw1e768', 'no_lang_code', 1, 'https://ror.org/00hw1e768 Radex Heraklith Industriebeteiligungs (Germany)'),
(10463, 'https://ror.org/00hx55359', 'en', 1, 'https://ror.org/00hx55359 Meridian Plastic Surgeons'),
(10464, 'https://ror.org/00hxd4r57', 'en', 1, 'https://ror.org/00hxd4r57 Cradle of Forestry'),
(10465, 'https://ror.org/00hxj5n33', 'de', 1, 'https://ror.org/00hxj5n33 Deutsches Institut für Normung German Institute for Standardization'),
(10466, 'https://ror.org/00hxw4g76', 'en', 1, 'https://ror.org/00hxw4g76 Helping Hands Monkey Helpers'),
(10467, 'https://ror.org/00hyc4r79', 'no_lang_code', 1, 'https://ror.org/00hyc4r79 Rivertop Renewables (United States)'),
(10468, 'https://ror.org/00hyf3k92', 'en', 1, 'https://ror.org/00hyf3k92 Ethiopian Community Development Council'),
(10469, 'https://ror.org/00hzxcy85', 'no_lang_code', 1, 'https://ror.org/00hzxcy85 Syngenta (Netherlands)'),
(10470, 'https://ror.org/00j2xe242', 'no_lang_code', 1, 'https://ror.org/00j2xe242 Innovative System und Informationstechnologien (Germany)'),
(10471, 'https://ror.org/00j37m859', 'en', 1, 'https://ror.org/00j37m859 Pain Relief and Palliative Care Society'),
(10472, 'https://ror.org/00j39nx61', 'no_lang_code', 1, 'https://ror.org/00j39nx61 Collegium Budapest'),
(10473, 'https://ror.org/00j7csj22', 'en', 1, 'https://ror.org/00j7csj22 California Teaching Fellows Foundation'),
(10474, 'https://ror.org/00j8h1h21', 'en', 1, 'https://ror.org/00j8h1h21 Indian Health Care Resource Center of Tulsa'),
(10475, 'https://ror.org/00jbe9340', 'nl', 1, 'https://ror.org/00jbe9340 Dienst voor Wetenschappelijke en Technische Informatie Scientific and Technical Information Service Service d''Information Scientifique et Technique'),
(10476, 'https://ror.org/00jbx2e92', 'en', 1, 'https://ror.org/00jbx2e92 Institute of Organic Chemistry with Centre of Phytochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по органична Ń…ŠøŠ¼ŠøŃ с Š¦ŠµŠ½Ń‚ŃŠŃ€ по Ń„ŠøŃ‚Š¾Ń…ŠøŠ¼ŠøŃ'),
(10477, 'https://ror.org/00jc3sx68', 'en', 1, 'https://ror.org/00jc3sx68 Ecumenical Ministries of Oregon'),
(10478, 'https://ror.org/00jeje538', 'no_lang_code', 1, 'https://ror.org/00jeje538 Comarch (Poland)'),
(10479, 'https://ror.org/00jf50v81', 'no_lang_code', 1, 'https://ror.org/00jf50v81 Altaeros (United States)'),
(10480, 'https://ror.org/00jf98d65', 'no_lang_code', 1, 'https://ror.org/00jf98d65 MolMed (Italy)'),
(10481, 'https://ror.org/00jg4ch48', 'en', 1, 'https://ror.org/00jg4ch48 Indiana Cancer Registrars Association'),
(10482, 'https://ror.org/00jg7pf63', 'en', 1, 'https://ror.org/00jg7pf63 Iowa City VA Medical Research Foundation'),
(10483, 'https://ror.org/00jk68903', 'en', 1, 'https://ror.org/00jk68903 North East Community Center'),
(10484, 'https://ror.org/00jk8a678', 'en', 1, 'https://ror.org/00jk8a678 St. Patrick Catholic High School'),
(10485, 'https://ror.org/00jr5xv14', 'no_lang_code', 1, 'https://ror.org/00jr5xv14 MerMec (Italy)'),
(10486, 'https://ror.org/00jsack41', 'en', 1, 'https://ror.org/00jsack41 Carteret County Public School System'),
(10487, 'https://ror.org/00jt1e157', 'en', 1, 'https://ror.org/00jt1e157 Institute for Reproductive Health'),
(10488, 'https://ror.org/00jtd6f03', 'en', 1, 'https://ror.org/00jtd6f03 Court Appointed Special Advocates of Union County'),
(10489, 'https://ror.org/00jv1ms45', 'no_lang_code', 1, 'https://ror.org/00jv1ms45 Gradalis (United States)'),
(10490, 'https://ror.org/00k1bh470', 'en', 1, 'https://ror.org/00k1bh470 National Wild Turkey Federation'),
(10491, 'https://ror.org/00k4pey18', 'no_lang_code', 1, 'https://ror.org/00k4pey18 Cancer Targeted Technology (United States)'),
(10492, 'https://ror.org/00k67dg75', 'no_lang_code', 1, 'https://ror.org/00k67dg75 RTC North (United Kingdom)'),
(10493, 'https://ror.org/00k86s890', 'en', 1, 'https://ror.org/00k86s890 Foundation for the National Institutes of Health'),
(10494, 'https://ror.org/00k8bwh32', 'no_lang_code', 1, 'https://ror.org/00k8bwh32 Amrita Therapeutics (India)'),
(10495, 'https://ror.org/00k8nkz10', 'no_lang_code', 1, 'https://ror.org/00k8nkz10 LioniX (Netherlands)'),
(10496, 'https://ror.org/00k94y497', 'en', 1, 'https://ror.org/00k94y497 Onslow County School System'),
(10497, 'https://ror.org/00k9s8x90', 'no_lang_code', 1, 'https://ror.org/00k9s8x90 Hexagon (Belgium)'),
(10498, 'https://ror.org/00ka0dh64', 'en', 1, 'https://ror.org/00ka0dh64 Granada Hills Community Hospital'),
(10499, 'https://ror.org/00kb2qn83', 'en', 1, 'https://ror.org/00kb2qn83 Setauket Neighborhood House'),
(10500, 'https://ror.org/00kb94k03', 'no_lang_code', 1, 'https://ror.org/00kb94k03 Sensing & Control Systems (Spain)'),
(10501, 'https://ror.org/00kdpsr48', 'en', 1, 'https://ror.org/00kdpsr48 Rend Lake College'),
(10502, 'https://ror.org/00kg9vk05', 'no_lang_code', 1, 'https://ror.org/00kg9vk05 Bionovo (United States)'),
(10503, 'https://ror.org/00khy9f46', 'no_lang_code', 1, 'https://ror.org/00khy9f46 Sonoma Technology (United States)'),
(10504, 'https://ror.org/00km9rx91', 'no_lang_code', 1, 'https://ror.org/00km9rx91 Altos Therapeutics (United States)'),
(10505, 'https://ror.org/00kmz4377', 'en', 1, 'https://ror.org/00kmz4377 HealthEast Care System'),
(10506, 'https://ror.org/00kn9sz43', 'no_lang_code', 1, 'https://ror.org/00kn9sz43 TransFurans Chemicals (Belgium)'),
(10507, 'https://ror.org/00ks0ea23', 'en', 1, 'https://ror.org/00ks0ea23 Technological Educational Institute of Piraeus Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Πειραιά'),
(10508, 'https://ror.org/00ks34y49', 'en', 1, 'https://ror.org/00ks34y49 Rafiki Coalition'),
(10509, 'https://ror.org/00kss4e25', 'nl', 1, 'https://ror.org/00kss4e25 GZA Ziekenhuizen Campus Sint-Augustinus'),
(10510, 'https://ror.org/00kt2k176', 'no_lang_code', 1, 'https://ror.org/00kt2k176 My25'),
(10511, 'https://ror.org/00kt61z96', 'no_lang_code', 1, 'https://ror.org/00kt61z96 Optoelectronica-2001 (Romania)'),
(10512, 'https://ror.org/00kznd563', 'no_lang_code', 1, 'https://ror.org/00kznd563 Ingenierƭa de Sistemas para la Defensa de EspaƱa'),
(10513, 'https://ror.org/00m1xxq98', 'en', 1, 'https://ror.org/00m1xxq98 Grassroots Gardens WNY'),
(10514, 'https://ror.org/00m2evs52', 'no_lang_code', 1, 'https://ror.org/00m2evs52 Meiko (United Kingdom)'),
(10515, 'https://ror.org/00m2rg630', 'en', 1, 'https://ror.org/00m2rg630 Kenosha County Department of Human Services'),
(10516, 'https://ror.org/00m2x0g47', 'no_lang_code', 1, 'https://ror.org/00m2x0g47 Intel (Germany)'),
(10517, 'https://ror.org/00m4fb445', 'en', 1, 'https://ror.org/00m4fb445 Neurology Associates of Arlington'),
(10518, 'https://ror.org/00m6eb133', 'no_lang_code', 1, 'https://ror.org/00m6eb133 Custodix (Belgium)'),
(10519, 'https://ror.org/00m6wsr38', 'no_lang_code', 1, 'https://ror.org/00m6wsr38 Masilamea Press (New Zealand)'),
(10520, 'https://ror.org/00m71bz66', 'it', 1, 'https://ror.org/00m71bz66 Fondazione Idis CittĆ  della Scienza'),
(10521, 'https://ror.org/00m783666', 'en', 1, 'https://ror.org/00m783666 WV Caring'),
(10522, 'https://ror.org/00m8shp48', 'en', 1, 'https://ror.org/00m8shp48 Brea Fire Department'),
(10523, 'https://ror.org/00maqzy82', 'no_lang_code', 1, 'https://ror.org/00maqzy82 Sika (Switzerland)'),
(10524, 'https://ror.org/00mg9ng87', 'no_lang_code', 1, 'https://ror.org/00mg9ng87 Subsea 7 (France)'),
(10525, 'https://ror.org/00mgb3084', 'no_lang_code', 1, 'https://ror.org/00mgb3084 Alkeus Pharmaceuticals (United States)'),
(10526, 'https://ror.org/00mkc7476', 'no_lang_code', 1, 'https://ror.org/00mkc7476 Targeting Innovation'),
(10527, 'https://ror.org/00mkstx48', 'no_lang_code', 1, 'https://ror.org/00mkstx48 Grontmij (Denmark)'),
(10528, 'https://ror.org/00mkxfc22', 'no_lang_code', 1, 'https://ror.org/00mkxfc22 Heliophysics'),
(10529, 'https://ror.org/00mneww03', 'en', 1, 'https://ror.org/00mneww03 Institute of Ecology and Botany Ɩkológiai Ć©s Botanikai IntĆ©zet'),
(10530, 'https://ror.org/00mp87510', 'no_lang_code', 1, 'https://ror.org/00mp87510 BPE Unternehmensbeteiligungen (Germany)'),
(10531, 'https://ror.org/00msdr558', 'en', 1, 'https://ror.org/00msdr558 Miles Perret Cancer Services'),
(10532, 'https://ror.org/00mshdz97', 'en', 1, 'https://ror.org/00mshdz97 Cities On Internet Association'),
(10533, 'https://ror.org/00mtnme46', 'en', 1, 'https://ror.org/00mtnme46 Northern Neurosciences'),
(10534, 'https://ror.org/00mw3fh49', 'en', 1, 'https://ror.org/00mw3fh49 IḷisaĔvik College'),
(10535, 'https://ror.org/00mwjng53', 'en', 1, 'https://ror.org/00mwjng53 South Dakota Discovery Center'),
(10536, 'https://ror.org/00my6s217', 'en', 1, 'https://ror.org/00my6s217 ScienceSouth'),
(10537, 'https://ror.org/00myyb874', 'en', 1, 'https://ror.org/00myyb874 Heart of Passion'),
(10538, 'https://ror.org/00n2d9253', 'no_lang_code', 1, 'https://ror.org/00n2d9253 Veolia (Sweden)'),
(10539, 'https://ror.org/00n4jbh84', 'en', 1, 'https://ror.org/00n4jbh84 Institute of Electronics, Computer and Telecommunication Engineering Istituto di Elettronica e di lngegneria dell''Informazione e delle Telecomunicazioni'),
(10540, 'https://ror.org/00n4nbp68', 'en', 1, 'https://ror.org/00n4nbp68 OSF HealthCare'),
(10541, 'https://ror.org/00n5jbe50', 'en', 1, 'https://ror.org/00n5jbe50 Natividad Foundation'),
(10542, 'https://ror.org/00n5szt64', 'no_lang_code', 1, 'https://ror.org/00n5szt64 Neuro-Zone (Italy)'),
(10543, 'https://ror.org/00n63p259', 'no_lang_code', 1, 'https://ror.org/00n63p259 Napa (Finland)'),
(10544, 'https://ror.org/00n876k34', 'no_lang_code', 1, 'https://ror.org/00n876k34 Beta-O2 Technologies (Israel)'),
(10545, 'https://ror.org/00n87rr37', 'en', 1, 'https://ror.org/00n87rr37 Danish Technological Institute'),
(10546, 'https://ror.org/00n8vvc37', 'pt', 1, 'https://ror.org/00n8vvc37 MinistƩrio da JustiƧa'),
(10547, 'https://ror.org/00na7mj62', 'no_lang_code', 1, 'https://ror.org/00na7mj62 BD Technologie (United States)'),
(10548, 'https://ror.org/00nbf6509', 'no_lang_code', 1, 'https://ror.org/00nbf6509 Ocean Renewable Power Company (United States)'),
(10549, 'https://ror.org/00ngjbr32', 'no_lang_code', 1, 'https://ror.org/00ngjbr32 Nokia (Spain)'),
(10550, 'https://ror.org/00njrf990', 'en', 1, 'https://ror.org/00njrf990 Creating Hope'),
(10551, 'https://ror.org/00nkgjn49', 'no_lang_code', 1, 'https://ror.org/00nkgjn49 ManRos Therapeutics (France)'),
(10552, 'https://ror.org/00nkkkz19', 'no_lang_code', 1, 'https://ror.org/00nkkkz19 CeramTec (Germany)'),
(10553, 'https://ror.org/00nn73a81', 'es', 1, 'https://ror.org/00nn73a81 Centro Nacional de Información GeogrÔfica'),
(10554, 'https://ror.org/00nqfs885', 'en', 1, 'https://ror.org/00nqfs885 Brazosport Health Foundation'),
(10555, 'https://ror.org/00nqqjw80', 'en', 1, 'https://ror.org/00nqqjw80 Federation of Southern Cooperatives Land Assistance Fund'),
(10556, 'https://ror.org/00nrppk36', 'no_lang_code', 1, 'https://ror.org/00nrppk36 Ozmosis Research (Canada)'),
(10557, 'https://ror.org/00nt7fq33', 'en', 1, 'https://ror.org/00nt7fq33 Baltimore Adapted Recreation and Sports'),
(10558, 'https://ror.org/00ntj2053', 'no_lang_code', 1, 'https://ror.org/00ntj2053 Funkwerk (Germany)'),
(10559, 'https://ror.org/00nw7tq55', 'en', 1, 'https://ror.org/00nw7tq55 Mount Nittany Medical Center'),
(10560, 'https://ror.org/00nxghy76', 'no_lang_code', 1, 'https://ror.org/00nxghy76 Scriba Nanotecnologie (Italy)'),
(10561, 'https://ror.org/00nxp2634', 'fr', 1, 'https://ror.org/00nxp2634 Association de Coordination Technique Pour l''Industrie Agroalimentaire'),
(10562, 'https://ror.org/00nxqj779', 'en', 1, 'https://ror.org/00nxqj779 Cincinnati Health Department'),
(10563, 'https://ror.org/00ny8df12', 'fr', 1, 'https://ror.org/00ny8df12 French Institute of International Relations Institut FranƧais des Relations Internationales'),
(10564, 'https://ror.org/00nzvtd14', 'en', 1, 'https://ror.org/00nzvtd14 Bluegrass Care Navigators'),
(10565, 'https://ror.org/00p1cga29', 'en', 1, 'https://ror.org/00p1cga29 Austrian Society for Systems Engineering and Automation'),
(10566, 'https://ror.org/00p2hg467', 'en', 1, 'https://ror.org/00p2hg467 Institut für die Wissenschaften vom Menschen Institute of Human Sciences'),
(10567, 'https://ror.org/00p5kvd83', 'en', 1, 'https://ror.org/00p5kvd83 Calallen Independent School District'),
(10568, 'https://ror.org/00p66nq73', 'no_lang_code', 1, 'https://ror.org/00p66nq73 Amphos 21 (Spain)'),
(10569, 'https://ror.org/00payck90', 'no_lang_code', 1, 'https://ror.org/00payck90 Mountain Meadow Wool Mill (United States)'),
(10570, 'https://ror.org/00pfg3v73', 'en', 1, 'https://ror.org/00pfg3v73 Paralyzed Veterans of America'),
(10571, 'https://ror.org/00pgy3a44', 'no_lang_code', 1, 'https://ror.org/00pgy3a44 Ion Beam Applications (Belgium)'),
(10572, 'https://ror.org/00pgzg313', 'no_lang_code', 1, 'https://ror.org/00pgzg313 Ponimanie'),
(10573, 'https://ror.org/00ph65r66', 'en', 1, 'https://ror.org/00ph65r66 Institute of Geodesy and Cartography'),
(10574, 'https://ror.org/00pj6x992', 'en', 1, 'https://ror.org/00pj6x992 IEA Clean Coal Centre'),
(10575, 'https://ror.org/00pnhy634', 'en', 1, 'https://ror.org/00pnhy634 The Entrepreneurs Foundation of Central Texas'),
(10576, 'https://ror.org/00pp54p18', 'no_lang_code', 1, 'https://ror.org/00pp54p18 Transport & Mobility Leuven (Belgium)'),
(10577, 'https://ror.org/00pqbn444', 'en', 1, 'https://ror.org/00pqbn444 Partners in Care Foundation'),
(10578, 'https://ror.org/00prce717', 'no_lang_code', 1, 'https://ror.org/00prce717 Daithi O’Murchu Marine Research Station'),
(10579, 'https://ror.org/00prewq47', 'en', 1, 'https://ror.org/00prewq47 Dr Dozo Laboratories'),
(10580, 'https://ror.org/00prgcp98', 'pt', 1, 'https://ror.org/00prgcp98 Hospital do CĆ¢ncer III'),
(10581, 'https://ror.org/00pvgrv63', 'no_lang_code', 1, 'https://ror.org/00pvgrv63 Panasonic (United States)'),
(10582, 'https://ror.org/00pw35t73', 'en', 1, 'https://ror.org/00pw35t73 Agriculture and Land Based Training Association'),
(10583, 'https://ror.org/00pwnqr91', 'en', 1, 'https://ror.org/00pwnqr91 Diagnostics For All'),
(10584, 'https://ror.org/00pwny267', 'en', 1, 'https://ror.org/00pwny267 European Telecommunications Standards Institute'),
(10585, 'https://ror.org/00pxmse48', 'en', 1, 'https://ror.org/00pxmse48 Allergy, Asthma and Clinical Research Center'),
(10586, 'https://ror.org/00pyx4s45', 'lv', 1, 'https://ror.org/00pyx4s45 Latvijas Valsts Agrārās Ekonomikas Institūts'),
(10587, 'https://ror.org/00q1c1v42', 'en', 1, 'https://ror.org/00q1c1v42 Opportunity Foundation of America'),
(10588, 'https://ror.org/00q1rsz50', 'no_lang_code', 1, 'https://ror.org/00q1rsz50 Optimat (United Kingdom)'),
(10589, 'https://ror.org/00q1wqg27', 'en', 1, 'https://ror.org/00q1wqg27 Community In Action'),
(10590, 'https://ror.org/00q6d2f90', 'pt', 1, 'https://ror.org/00q6d2f90 Agencia Regional da Energia e Ambiente da Regiao Autonoma da Madeira Regional Agency for Energy and Environment of the Autonomous Region of Madeira'),
(10591, 'https://ror.org/00q6xg564', 'en', 1, 'https://ror.org/00q6xg564 Felicity House'),
(10592, 'https://ror.org/00q77d008', 'no_lang_code', 1, 'https://ror.org/00q77d008 Hispasat (Spain)'),
(10593, 'https://ror.org/00qaxgn38', 'en', 1, 'https://ror.org/00qaxgn38 Millennium Health and Human Services'),
(10594, 'https://ror.org/00qc61c04', 'en', 1, 'https://ror.org/00qc61c04 New Frontier'),
(10595, 'https://ror.org/00qcztw05', 'en', 1, 'https://ror.org/00qcztw05 Ministry of Health of the Republic of Uzbekistan ŠŽŠ·Š±ŠµŠŗŠøŃŃ‚Š¾Š½ Республикаси Доғлиқни ŃŠ°Ņ›Š»Š°Ńˆ вазирлиги'),
(10596, 'https://ror.org/00qd3cs31', 'no_lang_code', 1, 'https://ror.org/00qd3cs31 Dimos Athinaion Epicheirisi Michanografisis (Greece)'),
(10597, 'https://ror.org/00qhf2g66', 'no_lang_code', 1, 'https://ror.org/00qhf2g66 ICI Caldaie (Italy)'),
(10598, 'https://ror.org/00qhyxs61', 'no_lang_code', 1, 'https://ror.org/00qhyxs61 BioTracking (United States)'),
(10599, 'https://ror.org/00qkeey15', 'en', 1, 'https://ror.org/00qkeey15 WindEurope'),
(10600, 'https://ror.org/00qkqnk52', 'no_lang_code', 1, 'https://ror.org/00qkqnk52 Language Technology Centre'),
(10601, 'https://ror.org/00qmezm19', 'en', 1, 'https://ror.org/00qmezm19 Europa Donna'),
(10602, 'https://ror.org/00qmxzv90', 'en', 1, 'https://ror.org/00qmxzv90 Nordic Folkecenter for Renewable Energy'),
(10603, 'https://ror.org/00qpx5a29', 'no_lang_code', 1, 'https://ror.org/00qpx5a29 Metallisation (United Kingdom)'),
(10604, 'https://ror.org/00qrgc437', 'en', 1, 'https://ror.org/00qrgc437 International Symposium on Neural Regeneration'),
(10605, 'https://ror.org/00qsm3z32', 'en', 1, 'https://ror.org/00qsm3z32 B.I. Stepanov Institute of Physics Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ фізікі Ń–Š¼Ń Š‘.І. Š”Ń†ŃŠæŠ°Š½Š°Š²Š°'),
(10606, 'https://ror.org/00qsswh65', 'no_lang_code', 1, 'https://ror.org/00qsswh65 Edif Group (United Kingdom)'),
(10607, 'https://ror.org/00qsx7902', 'no_lang_code', 1, 'https://ror.org/00qsx7902 Trellis Growing Systems'),
(10608, 'https://ror.org/00qt7y372', 'no_lang_code', 1, 'https://ror.org/00qt7y372 Biozoon (Germany)'),
(10609, 'https://ror.org/00qxtrj15', 'no_lang_code', 1, 'https://ror.org/00qxtrj15 VSN International (United Kingdom)'),
(10610, 'https://ror.org/00r06ws05', 'en', 1, 'https://ror.org/00r06ws05 Club Young Scientists'),
(10611, 'https://ror.org/00r0jqe29', 'en', 1, 'https://ror.org/00r0jqe29 British Science Association'),
(10612, 'https://ror.org/00r254y42', 'no_lang_code', 1, 'https://ror.org/00r254y42 Piaggio (Italy)'),
(10613, 'https://ror.org/00r33es57', 'no_lang_code', 1, 'https://ror.org/00r33es57 Sea and Reef Aquaculture (United States)'),
(10614, 'https://ror.org/00r5dn664', 'en', 1, 'https://ror.org/00r5dn664 Caporal Assistance Network'),
(10615, 'https://ror.org/00r5tk108', 'no_lang_code', 1, 'https://ror.org/00r5tk108 Fricke und Mallah Microwave Technology (Germany) Fricke und Mallah Microwave Technology GmbH'),
(10616, 'https://ror.org/00r68c937', 'en', 1, 'https://ror.org/00r68c937 Evergreen Behavioral Health'),
(10617, 'https://ror.org/00r7b5207', 'en', 1, 'https://ror.org/00r7b5207 Ministry of Public Security ×”×ž×©×Ø×“ לביטחון הפנים وزارة الأمن Ų§Ł„ŲÆŲ§Ų®Ł„ŁŠ'),
(10618, 'https://ror.org/00r9k8q20', 'en', 1, 'https://ror.org/00r9k8q20 Museum and Institute of Zoology Muzeum i Instytut Zoologii PAN'),
(10619, 'https://ror.org/00ra5vp36', 'no_lang_code', 1, 'https://ror.org/00ra5vp36 Magneto Special Anodes (Netherlands)'),
(10620, 'https://ror.org/00rbe9q66', 'no_lang_code', 1, 'https://ror.org/00rbe9q66 TriaGnoSys (Germany)'),
(10621, 'https://ror.org/00rbjw379', 'it', 1, 'https://ror.org/00rbjw379 Istituto per lo Sviluppo della Formazione Professionale dei Lavoratori'),
(10622, 'https://ror.org/00reard48', 'en', 1, 'https://ror.org/00reard48 Agency for Science, Innovation and Technology'),
(10623, 'https://ror.org/00reav381', 'en', 1, 'https://ror.org/00reav381 The Garden Church'),
(10624, 'https://ror.org/00renxe14', 'en', 1, 'https://ror.org/00renxe14 Services for Independent Living'),
(10625, 'https://ror.org/00rgz6j19', 'no_lang_code', 1, 'https://ror.org/00rgz6j19 Upper Austrian Research'),
(10626, 'https://ror.org/00rhgsx64', 'no_lang_code', 1, 'https://ror.org/00rhgsx64 Prisma Electronics (Greece)'),
(10627, 'https://ror.org/00rhtct89', 'en', 1, 'https://ror.org/00rhtct89 McLaren Macomb'),
(10628, 'https://ror.org/00rj43d51', 'en', 1, 'https://ror.org/00rj43d51 Lithuanian Innovation Centre'),
(10629, 'https://ror.org/00rn5y796', 'en', 1, 'https://ror.org/00rn5y796 Hillcrest Clinics'),
(10630, 'https://ror.org/00rn8rb77', 'en', 1, 'https://ror.org/00rn8rb77 Comprehensive Autism and related Disabilities Education and Training'),
(10631, 'https://ror.org/00rnasn15', 'no_lang_code', 1, 'https://ror.org/00rnasn15 Caregiver Technologies (United States)'),
(10632, 'https://ror.org/00rqqmc76', 'en', 1, 'https://ror.org/00rqqmc76 European Food Information Resource'),
(10633, 'https://ror.org/00rsre537', 'en', 1, 'https://ror.org/00rsre537 Indigenous Education Institute'),
(10634, 'https://ror.org/00rt22t88', 'en', 1, 'https://ror.org/00rt22t88 St. Alexius Heart and Lung Clinic'),
(10635, 'https://ror.org/00s0xa683', 'en', 1, 'https://ror.org/00s0xa683 Journey Museum'),
(10636, 'https://ror.org/00s0zqz85', 'en', 1, 'https://ror.org/00s0zqz85 Child Health Corporation of America'),
(10637, 'https://ror.org/00s16gd65', 'en', 1, 'https://ror.org/00s16gd65 Child Guidance Center'),
(10638, 'https://ror.org/00s1q1t70', 'en', 1, 'https://ror.org/00s1q1t70 Institute of Earthquake Prediction Theory and Mathematical Geophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теории прогноза Š·ŠµŠ¼Š»ŠµŃ‚Ń€ŃŃŠµŠ½ŠøŠ¹ Šø математической геофизики Российской акаГемии наук (Š˜Š¢ŠŸŠ— Š ŠŠ)'),
(10639, 'https://ror.org/00s2g6856', 'en', 1, 'https://ror.org/00s2g6856 Fairmont City Library Center'),
(10640, 'https://ror.org/00s2j5046', 'en', 1, 'https://ror.org/00s2j5046 Institute of Molecular Bioimaging and Physiology Istituto di Bioimmagini e Fisiologia Molecolare'),
(10641, 'https://ror.org/00s5ck612', 'en', 1, 'https://ror.org/00s5ck612 Accessible Space'),
(10642, 'https://ror.org/00s5rhn58', 'en', 1, 'https://ror.org/00s5rhn58 Karla J. Williams Foundation'),
(10643, 'https://ror.org/00s6sp697', 'no_lang_code', 1, 'https://ror.org/00s6sp697 Integrasys (Spain)'),
(10644, 'https://ror.org/00s8fdk31', 'no_lang_code', 1, 'https://ror.org/00s8fdk31 Decom (Slovakia)'),
(10645, 'https://ror.org/00s9rks70', 'no_lang_code', 1, 'https://ror.org/00s9rks70 Telmat (France)'),
(10646, 'https://ror.org/00saxze38', 'en', 1, 'https://ror.org/00saxze38 Loma Linda University Health Care'),
(10647, 'https://ror.org/00sb06w67', 'no_lang_code', 1, 'https://ror.org/00sb06w67 HiTec Marketing'),
(10648, 'https://ror.org/00scmkj28', 'no_lang_code', 1, 'https://ror.org/00scmkj28 Natex Prozesstechnologie (Austria)'),
(10649, 'https://ror.org/00sehw297', 'no_lang_code', 1, 'https://ror.org/00sehw297 Beactica (Sweden)'),
(10650, 'https://ror.org/00sexkk33', 'no_lang_code', 1, 'https://ror.org/00sexkk33 Siemens (Romania)'),
(10651, 'https://ror.org/00sf0vm37', 'en', 1, 'https://ror.org/00sf0vm37 Oakville Public Library'),
(10652, 'https://ror.org/00sgqf002', 'no_lang_code', 1, 'https://ror.org/00sgqf002 Horiba (France)'),
(10653, 'https://ror.org/00sj63039', 'en', 1, 'https://ror.org/00sj63039 International Partnership for Microbicides'),
(10654, 'https://ror.org/00sp0dx83', 'en', 1, 'https://ror.org/00sp0dx83 National Rehabilitation Association'),
(10655, 'https://ror.org/00spbya24', 'no_lang_code', 1, 'https://ror.org/00spbya24 Lewis and Clark Pharmaceuticals (United States)'),
(10656, 'https://ror.org/00sry8k12', 'no_lang_code', 1, 'https://ror.org/00sry8k12 MyTeam Triumph'),
(10657, 'https://ror.org/00ssxa384', 'no_lang_code', 1, 'https://ror.org/00ssxa384 Eclexys (Switzerland)'),
(10658, 'https://ror.org/00st4js56', 'en', 1, 'https://ror.org/00st4js56 Friends of Scott'),
(10659, 'https://ror.org/00stexf29', 'no_lang_code', 1, 'https://ror.org/00stexf29 Alstom (Germany)'),
(10660, 'https://ror.org/00str1b42', 'en', 1, 'https://ror.org/00str1b42 Houston County'),
(10661, 'https://ror.org/00stv9r10', 'no_lang_code', 1, 'https://ror.org/00stv9r10 Fidia (Italy)'),
(10662, 'https://ror.org/00svj4w50', 'no_lang_code', 1, 'https://ror.org/00svj4w50 ANA Aeroportos de Portugal (Portugal)'),
(10663, 'https://ror.org/00sxa9670', 'no_lang_code', 1, 'https://ror.org/00sxa9670 Agdia (United States)'),
(10664, 'https://ror.org/00sxjp357', 'no_lang_code', 1, 'https://ror.org/00sxjp357 Innovation Engineering (Italy)'),
(10665, 'https://ror.org/00sze5p60', 'no_lang_code', 1, 'https://ror.org/00sze5p60 AquaGreen (United States)'),
(10666, 'https://ror.org/00t3x1b09', 'no_lang_code', 1, 'https://ror.org/00t3x1b09 Bioazul (Spain)'),
(10667, 'https://ror.org/00t5fgd66', 'en', 1, 'https://ror.org/00t5fgd66 Gardens at Post Hill'),
(10668, 'https://ror.org/00t6rnw77', 'no_lang_code', 1, 'https://ror.org/00t6rnw77 Research and Environmental Devices (Italy)'),
(10669, 'https://ror.org/00t7c6f62', 'en', 1, 'https://ror.org/00t7c6f62 Institute of Molecular Biology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š° Š±ŠøŠ¾Š»Š¾Š³ŠøŃ'),
(10670, 'https://ror.org/00t9eec57', 'no_lang_code', 1, 'https://ror.org/00t9eec57 Geonardo (Hungary)'),
(10671, 'https://ror.org/00t9ms296', 'no_lang_code', 1, 'https://ror.org/00t9ms296 Toptica Photonics (Germany)'),
(10672, 'https://ror.org/00tc93763', 'no_lang_code', 1, 'https://ror.org/00tc93763 Materialise (Belgium)'),
(10673, 'https://ror.org/00td3ns83', 'no_lang_code', 1, 'https://ror.org/00td3ns83 SIVECO (Romania)'),
(10674, 'https://ror.org/00te84g16', 'en', 1, 'https://ror.org/00te84g16 Valley Forge Military Academy and College'),
(10675, 'https://ror.org/00thc5937', 'es', 1, 'https://ror.org/00thc5937 Fundación Ramón Domínguez'),
(10676, 'https://ror.org/00the9035', 'no_lang_code', 1, 'https://ror.org/00the9035 Alsa Corporation (United States)'),
(10677, 'https://ror.org/00thqng93', 'no_lang_code', 1, 'https://ror.org/00thqng93 Open Knowledge (United Kingdom)'),
(10678, 'https://ror.org/00tjjak64', 'en', 1, 'https://ror.org/00tjjak64 Centexbel'),
(10679, 'https://ror.org/00tjsgg12', 'en', 1, 'https://ror.org/00tjsgg12 Mixteco IndĆ­gena Community Organizing Project'),
(10680, 'https://ror.org/00tk4hv41', 'no_lang_code', 1, 'https://ror.org/00tk4hv41 Thin Air Nitrogen Solutions (United States)'),
(10681, 'https://ror.org/00tm6q440', 'no_lang_code', 1, 'https://ror.org/00tm6q440 DeskArtes (Finland)');
INSERT INTO `rors` VALUES
(10682, 'https://ror.org/00tq8h369', 'no_lang_code', 1, 'https://ror.org/00tq8h369 Elisa (Finland)'),
(10683, 'https://ror.org/00tvcfv48', 'no_lang_code', 1, 'https://ror.org/00tvcfv48 Galson Sciences'),
(10684, 'https://ror.org/00tw2t359', 'en', 1, 'https://ror.org/00tw2t359 Mathematics Foundation of America'),
(10685, 'https://ror.org/00twv1w80', 'no_lang_code', 1, 'https://ror.org/00twv1w80 Pasquali Macchine Agricole (Italy)'),
(10686, 'https://ror.org/00tx1bt94', 'en', 1, 'https://ror.org/00tx1bt94 Homer Soil and Water Conservation District'),
(10687, 'https://ror.org/00tyzcb87', 'no_lang_code', 1, 'https://ror.org/00tyzcb87 Bureau van Dijk (Belgium)'),
(10688, 'https://ror.org/00tzgse53', 'no_lang_code', 1, 'https://ror.org/00tzgse53 Noldus Information Technology'),
(10689, 'https://ror.org/00tzr1w49', 'no_lang_code', 1, 'https://ror.org/00tzr1w49 InnospeXion (Denmark)'),
(10690, 'https://ror.org/00v0x8839', 'no_lang_code', 1, 'https://ror.org/00v0x8839 Ab Medica (Italy)'),
(10691, 'https://ror.org/00v3vnk20', 'en', 1, 'https://ror.org/00v3vnk20 National Wheelchair Basketball Association'),
(10692, 'https://ror.org/00v60dj89', 'no_lang_code', 1, 'https://ror.org/00v60dj89 Indoor Biotechnologies (United States)'),
(10693, 'https://ror.org/00v75px85', 'en', 1, 'https://ror.org/00v75px85 Women’s Environmental Institute'),
(10694, 'https://ror.org/00v7esy82', 'no_lang_code', 1, 'https://ror.org/00v7esy82 Visual Components (Finland)'),
(10695, 'https://ror.org/00v859w32', 'en', 1, 'https://ror.org/00v859w32 Achieve Tahoe'),
(10696, 'https://ror.org/00vaehf87', 'en', 1, 'https://ror.org/00vaehf87 Museum of Science and Industry'),
(10697, 'https://ror.org/00vbmtf51', 'eu', 1, 'https://ror.org/00vbmtf51 Matia Fundazioa'),
(10698, 'https://ror.org/00vcg0k36', 'en', 1, 'https://ror.org/00vcg0k36 EASN Technology Innovation Services BVBA'),
(10699, 'https://ror.org/00vcvx959', 'es', 1, 'https://ror.org/00vcvx959 Forem'),
(10700, 'https://ror.org/00vdcfb98', 'en', 1, 'https://ror.org/00vdcfb98 Kaiser Permanente Castle Medical Center'),
(10701, 'https://ror.org/00vfkb556', 'en', 1, 'https://ror.org/00vfkb556 European Centre for Information on Marine Science and Technology'),
(10702, 'https://ror.org/00vjdb429', 'en', 1, 'https://ror.org/00vjdb429 Community Health Centers of Pinellas'),
(10703, 'https://ror.org/00vke5218', 'en', 1, 'https://ror.org/00vke5218 East Palo Alto Kids Foundation'),
(10704, 'https://ror.org/00vn2bg94', 'en', 1, 'https://ror.org/00vn2bg94 Agricultural Information Management'),
(10705, 'https://ror.org/00vpq6g39', 'no_lang_code', 1, 'https://ror.org/00vpq6g39 Indra (Spain)'),
(10706, 'https://ror.org/00vqvet05', 'en', 1, 'https://ror.org/00vqvet05 Cornerstone Evaluation Associates'),
(10707, 'https://ror.org/00vqwjw35', 'en', 1, 'https://ror.org/00vqwjw35 European Research and Project Office'),
(10708, 'https://ror.org/00vrcw253', 'no_lang_code', 1, 'https://ror.org/00vrcw253 Kōkua Kalihi Valley'),
(10709, 'https://ror.org/00vsg3p53', 'en', 1, 'https://ror.org/00vsg3p53 Institute of Mathematics Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Š¼Š°Ń‚ŃŠ¼Š°Ń‚Ń‹ŠŗŃ– ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŃ–'),
(10710, 'https://ror.org/00vtxwn66', 'en', 1, 'https://ror.org/00vtxwn66 Maryland State Department of Education'),
(10711, 'https://ror.org/00vvr2385', 'no_lang_code', 1, 'https://ror.org/00vvr2385 Agora Systems (Spain)'),
(10712, 'https://ror.org/00vxakc26', 'en', 1, 'https://ror.org/00vxakc26 Milwaukee Teacher Education Center'),
(10713, 'https://ror.org/00vxsqn95', 'en', 1, 'https://ror.org/00vxsqn95 Archdiocese of New Orleans'),
(10714, 'https://ror.org/00w18ah57', 'en', 1, 'https://ror.org/00w18ah57 Lesotho Planned Parenthood Association'),
(10715, 'https://ror.org/00w1a0259', 'en', 1, 'https://ror.org/00w1a0259 Mercy Hospital'),
(10716, 'https://ror.org/00w1pae29', 'en', 1, 'https://ror.org/00w1pae29 ProMedica Charles and Virginia Hickman Hospital'),
(10717, 'https://ror.org/00w205b62', 'en', 1, 'https://ror.org/00w205b62 Renown Health'),
(10718, 'https://ror.org/00w3cxa42', 'no_lang_code', 1, 'https://ror.org/00w3cxa42 Exide Technologies (Spain)'),
(10719, 'https://ror.org/00w437z14', 'no_lang_code', 1, 'https://ror.org/00w437z14 Water Insight (Netherlands)'),
(10720, 'https://ror.org/00w4csr50', 'de', 1, 'https://ror.org/00w4csr50 Landwirtschaftliche Untersuchungs- und Forschungsanstalt Speyer'),
(10721, 'https://ror.org/00w4cxg78', 'no_lang_code', 1, 'https://ror.org/00w4cxg78 Breakthrough'),
(10722, 'https://ror.org/00w4gjq77', 'en', 1, 'https://ror.org/00w4gjq77 Interfaith Center of New York'),
(10723, 'https://ror.org/00w5mh812', 'no_lang_code', 1, 'https://ror.org/00w5mh812 Kineta (United States)'),
(10724, 'https://ror.org/00w603c79', 'en', 1, 'https://ror.org/00w603c79 Institutul Național de Cercetare-Dezvoltare Pentru Protecția Mediului National Institute for Research and Development in Environmental Protection'),
(10725, 'https://ror.org/00w7vs376', 'en', 1, 'https://ror.org/00w7vs376 Inland Northwest Health Services'),
(10726, 'https://ror.org/00wbgx826', 'en', 1, 'https://ror.org/00wbgx826 STEM Forward'),
(10727, 'https://ror.org/00wcraf05', 'en', 1, 'https://ror.org/00wcraf05 New Haven Family Alliance'),
(10728, 'https://ror.org/00wdf2875', 'en', 1, 'https://ror.org/00wdf2875 IHE Europe'),
(10729, 'https://ror.org/00we1gw23', 'en', 1, 'https://ror.org/00we1gw23 MIND Research Institute'),
(10730, 'https://ror.org/00we3bs91', 'no_lang_code', 1, 'https://ror.org/00we3bs91 DuPont (Netherlands)'),
(10731, 'https://ror.org/00wecdr93', 'no_lang_code', 1, 'https://ror.org/00wecdr93 Lamellar Biomedical (United Kingdom)'),
(10732, 'https://ror.org/00wfqnx07', 'no_lang_code', 1, 'https://ror.org/00wfqnx07 OndaVia (United States)'),
(10733, 'https://ror.org/00wgdxy37', 'en', 1, 'https://ror.org/00wgdxy37 Appalachian Mountain Advocates'),
(10734, 'https://ror.org/00wh1kc42', 'en', 1, 'https://ror.org/00wh1kc42 Community Partners of South Florida'),
(10735, 'https://ror.org/00whma289', 'no_lang_code', 1, 'https://ror.org/00whma289 LafargeHolcim (Greece)'),
(10736, 'https://ror.org/00wm3b005', 'no_lang_code', 1, 'https://ror.org/00wm3b005 STMicroelectronics (Switzerland)'),
(10737, 'https://ror.org/00wq6x378', 'no_lang_code', 1, 'https://ror.org/00wq6x378 Quantech ATZ (Spain)'),
(10738, 'https://ror.org/00wqp8t15', 'en', 1, 'https://ror.org/00wqp8t15 Federal College of Education, Kano'),
(10739, 'https://ror.org/00wscys22', 'no_lang_code', 1, 'https://ror.org/00wscys22 Innovhub (Italy)'),
(10740, 'https://ror.org/00wtmxk58', 'no_lang_code', 1, 'https://ror.org/00wtmxk58 Element Materials Technology (United Kingdom)'),
(10741, 'https://ror.org/00wtsha39', 'en', 1, 'https://ror.org/00wtsha39 Cancer Services of Grant County'),
(10742, 'https://ror.org/00wxh7d23', 'no_lang_code', 1, 'https://ror.org/00wxh7d23 Catator (Sweden)'),
(10743, 'https://ror.org/00wy5qj82', 'no_lang_code', 1, 'https://ror.org/00wy5qj82 Skytek (Ireland)'),
(10744, 'https://ror.org/00wzdat64', 'en', 1, 'https://ror.org/00wzdat64 Instituto Familiar de la Raza'),
(10745, 'https://ror.org/00wzstx67', 'no_lang_code', 1, 'https://ror.org/00wzstx67 Vodafone (Spain)'),
(10746, 'https://ror.org/00x1q5565', 'en', 1, 'https://ror.org/00x1q5565 Bryan Health'),
(10747, 'https://ror.org/00x20bn20', 'en', 1, 'https://ror.org/00x20bn20 Basavatarakam Indo American Cancer Hospital and Research Institute'),
(10748, 'https://ror.org/00x2xws80', 'no_lang_code', 1, 'https://ror.org/00x2xws80 Jobst Technologies (Germany)'),
(10749, 'https://ror.org/00x2yxc55', 'no_lang_code', 1, 'https://ror.org/00x2yxc55 Artelia (France)'),
(10750, 'https://ror.org/00x584494', 'en', 1, 'https://ror.org/00x584494 American Association on Health and Disability'),
(10751, 'https://ror.org/00x5dwt18', 'no_lang_code', 1, 'https://ror.org/00x5dwt18 CARSA (Spain)'),
(10752, 'https://ror.org/00x731t70', 'en', 1, 'https://ror.org/00x731t70 Clinica Sierra Vista'),
(10753, 'https://ror.org/00x856k20', 'no_lang_code', 1, 'https://ror.org/00x856k20 ImmuneWorks (United States)'),
(10754, 'https://ror.org/00x8zak80', 'en', 1, 'https://ror.org/00x8zak80 National Institute of Population Studies'),
(10755, 'https://ror.org/00xaj7311', 'no_lang_code', 1, 'https://ror.org/00xaj7311 Lumicell (United States)'),
(10756, 'https://ror.org/00xaskn96', 'no_lang_code', 1, 'https://ror.org/00xaskn96 Everest Technologies (United States)'),
(10757, 'https://ror.org/00xbray82', 'no_lang_code', 1, 'https://ror.org/00xbray82 CSK Food Enrichment (Netherlands)'),
(10758, 'https://ror.org/00xcabq98', 'no_lang_code', 1, 'https://ror.org/00xcabq98 NanotecMARIN (Germany)'),
(10759, 'https://ror.org/00xcb4r23', 'no_lang_code', 1, 'https://ror.org/00xcb4r23 Thermo Technologies (United Kingdom)'),
(10760, 'https://ror.org/00xctsq42', 'no_lang_code', 1, 'https://ror.org/00xctsq42 ONA Electroerosion (Spain)'),
(10761, 'https://ror.org/00xeqw708', 'en', 1, 'https://ror.org/00xeqw708 Camp Quality New Jersey'),
(10762, 'https://ror.org/00xgaya81', 'en', 1, 'https://ror.org/00xgaya81 Bipartisan Policy Center'),
(10763, 'https://ror.org/00xh3h995', 'en', 1, 'https://ror.org/00xh3h995 Institute of Agricultural Economics'),
(10764, 'https://ror.org/00xhrnd80', 'en', 1, 'https://ror.org/00xhrnd80 North Country Home Health & Hospice Agency'),
(10765, 'https://ror.org/00xj74h46', 'en', 1, 'https://ror.org/00xj74h46 Care India'),
(10766, 'https://ror.org/00xq5mb92', 'no_lang_code', 1, 'https://ror.org/00xq5mb92 Color Line (Norway)'),
(10767, 'https://ror.org/00xqcpg12', 'no_lang_code', 1, 'https://ror.org/00xqcpg12 Solvay (Italy)'),
(10768, 'https://ror.org/00xr4zj07', 'en', 1, 'https://ror.org/00xr4zj07 Cancer Care Association Sri Lanka'),
(10769, 'https://ror.org/00xse2697', 'en', 1, 'https://ror.org/00xse2697 Alliance for Community Research and Development'),
(10770, 'https://ror.org/00xwb4n23', 'en', 1, 'https://ror.org/00xwb4n23 Partners In Care'),
(10771, 'https://ror.org/00xwx2b45', 'en', 1, 'https://ror.org/00xwx2b45 Pushing Boundaries'),
(10772, 'https://ror.org/00xxrkp20', 'en', 1, 'https://ror.org/00xxrkp20 Delmont Public Library'),
(10773, 'https://ror.org/00xz1ct52', 'en', 1, 'https://ror.org/00xz1ct52 The Brooklyn Rail'),
(10774, 'https://ror.org/00y27y405', 'en', 1, 'https://ror.org/00y27y405 Tulsa Economic Development Corporation'),
(10775, 'https://ror.org/00y321w89', 'nl', 1, 'https://ror.org/00y321w89 Ministerie van de Vlaamse Gemeenschap'),
(10776, 'https://ror.org/00y4rzv07', 'en', 1, 'https://ror.org/00y4rzv07 European rail Research Network of EXcellence'),
(10777, 'https://ror.org/00y59j716', 'en', 1, 'https://ror.org/00y59j716 Central Asia Institute'),
(10778, 'https://ror.org/00y6ae410', 'no_lang_code', 1, 'https://ror.org/00y6ae410 Arvens Technology (United States)'),
(10779, 'https://ror.org/00yawqy54', 'en', 1, 'https://ror.org/00yawqy54 Community Health for Asian Americans'),
(10780, 'https://ror.org/00ycd5r70', 'no_lang_code', 1, 'https://ror.org/00ycd5r70 DonorsChoose'),
(10781, 'https://ror.org/00yj85a82', 'en', 1, 'https://ror.org/00yj85a82 Midwest Organic & Sustainable Education Service'),
(10782, 'https://ror.org/00yjpbd42', 'en', 1, 'https://ror.org/00yjpbd42 Ride 2 Recovery'),
(10783, 'https://ror.org/00yk21455', 'en', 1, 'https://ror.org/00yk21455 Police Service of Northern Ireland'),
(10784, 'https://ror.org/00ykwy443', 'no_lang_code', 1, 'https://ror.org/00ykwy443 Curewize Health'),
(10785, 'https://ror.org/00ymmrt60', 'no_lang_code', 1, 'https://ror.org/00ymmrt60 C2N Diagnostics (United States)'),
(10786, 'https://ror.org/00yps2t15', 'no_lang_code', 1, 'https://ror.org/00yps2t15 Gasera (Finland)'),
(10787, 'https://ror.org/00yssnc44', 'de', 1, 'https://ror.org/00yssnc44 Paul Ehrlich Institut, Paul-Ehrlich-Institut – Bundesinstitut für Impfstoffe und biomedizinische Arzneimittel'),
(10788, 'https://ror.org/00yw8fx90', 'en', 1, 'https://ror.org/00yw8fx90 Indo-American Center'),
(10789, 'https://ror.org/00z0kkz74', 'no_lang_code', 1, 'https://ror.org/00z0kkz74 Accelerated Medical Diagnostics (United States)'),
(10790, 'https://ror.org/00z24kr14', 'en', 1, 'https://ror.org/00z24kr14 Institute for Language and Speech Processing'),
(10791, 'https://ror.org/00z299818', 'no_lang_code', 1, 'https://ror.org/00z299818 Vinci (United Kingdom)'),
(10792, 'https://ror.org/00z908q62', 'en', 1, 'https://ror.org/00z908q62 Institute for Transport Sciences'),
(10793, 'https://ror.org/00z9nr722', 'en', 1, 'https://ror.org/00z9nr722 Common Good City Farm'),
(10794, 'https://ror.org/00za5w074', 'en', 1, 'https://ror.org/00za5w074 Family Service League'),
(10795, 'https://ror.org/00zb4pn27', 'no_lang_code', 1, 'https://ror.org/00zb4pn27 Magna (Austria)'),
(10796, 'https://ror.org/00zbcp540', 'en', 1, 'https://ror.org/00zbcp540 Burlington School District'),
(10797, 'https://ror.org/00zbjch89', 'no_lang_code', 1, 'https://ror.org/00zbjch89 Beacon Tech (Israel)'),
(10798, 'https://ror.org/00zbvyk98', 'no_lang_code', 1, 'https://ror.org/00zbvyk98 TIE Kinetix (Netherlands)'),
(10799, 'https://ror.org/00zc8x182', 'en', 1, 'https://ror.org/00zc8x182 Food System Economic Partnership'),
(10800, 'https://ror.org/00zceqt96', 'en', 1, 'https://ror.org/00zceqt96 Radiophysical Research Institute ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ раГиофизический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(10801, 'https://ror.org/00zecds36', 'no_lang_code', 1, 'https://ror.org/00zecds36 Smart Homes'),
(10802, 'https://ror.org/00zep6618', 'en', 1, 'https://ror.org/00zep6618 United Nations Interregional Crime and Justice Research Institute'),
(10803, 'https://ror.org/00zffgs92', 'no_lang_code', 1, 'https://ror.org/00zffgs92 Anotec Engineering (Spain)'),
(10804, 'https://ror.org/00zfw3j31', 'en', 1, 'https://ror.org/00zfw3j31 Singleimage'),
(10805, 'https://ror.org/00zh4ns47', 'no_lang_code', 1, 'https://ror.org/00zh4ns47 Marion Technologies (France)'),
(10806, 'https://ror.org/00zh7c888', 'en', 1, 'https://ror.org/00zh7c888 Lindholmen Science Park'),
(10807, 'https://ror.org/00zk4a122', 'en', 1, 'https://ror.org/00zk4a122 Larta Institute'),
(10808, 'https://ror.org/00zk9q198', 'en', 1, 'https://ror.org/00zk9q198 Disabled Sailing Association of British Columbia'),
(10809, 'https://ror.org/00zkzkq53', 'en', 1, 'https://ror.org/00zkzkq53 International Information Management Corporation'),
(10810, 'https://ror.org/00zrv0342', 'no_lang_code', 1, 'https://ror.org/00zrv0342 Sinergis (Italy)'),
(10811, 'https://ror.org/00zvs5g09', 'no_lang_code', 1, 'https://ror.org/00zvs5g09 Flexiant (United Kingdom)'),
(10812, 'https://ror.org/00zwgqz39', 'es', 1, 'https://ror.org/00zwgqz39 Fundación Severo Ochoa'),
(10813, 'https://ror.org/00zxhvp59', 'en', 1, 'https://ror.org/00zxhvp59 Mid Atlantic Wheelchair Athletic Association'),
(10814, 'https://ror.org/00zzgy689', 'en', 1, 'https://ror.org/00zzgy689 Global and Regional Asperger Syndrome Partnership'),
(10815, 'https://ror.org/0100csr53', 'no_lang_code', 1, 'https://ror.org/0100csr53 Watchfrog (France)'),
(10816, 'https://ror.org/0100ngp47', 'no_lang_code', 1, 'https://ror.org/0100ngp47 Ikv++ Technologies (Germany)'),
(10817, 'https://ror.org/0100s4h81', 'en', 1, 'https://ror.org/0100s4h81 Baltimore City Public Schools'),
(10818, 'https://ror.org/0100x5843', 'en', 1, 'https://ror.org/0100x5843 Advanced Health Care of Aurora'),
(10819, 'https://ror.org/0101ywa49', 'en', 1, 'https://ror.org/0101ywa49 ASK Childhood Cancer Foundation'),
(10820, 'https://ror.org/01024mn06', 'no_lang_code', 1, 'https://ror.org/01024mn06 Dutch Railways Nederlandse Spoorwegen'),
(10821, 'https://ror.org/0103ez066', 'en', 1, 'https://ror.org/0103ez066 Jameson Memorial Hospital'),
(10822, 'https://ror.org/0103ezj12', 'no_lang_code', 1, 'https://ror.org/0103ezj12 Swarco (Italy)'),
(10823, 'https://ror.org/0104bde61', 'no_lang_code', 1, 'https://ror.org/0104bde61 PCA Engineers'),
(10824, 'https://ror.org/0105khm66', 'en', 1, 'https://ror.org/0105khm66 Alliance of People with disAbilities'),
(10825, 'https://ror.org/0106f6f93', 'en', 1, 'https://ror.org/0106f6f93 European Technology Development'),
(10826, 'https://ror.org/0106nz743', 'no_lang_code', 1, 'https://ror.org/0106nz743 Cisco Systems (Netherlands)'),
(10827, 'https://ror.org/0107epm19', 'no_lang_code', 1, 'https://ror.org/0107epm19 Makaha Studios (United States)'),
(10828, 'https://ror.org/0107w4315', 'en', 1, 'https://ror.org/0107w4315 University of Colorado Health'),
(10829, 'https://ror.org/0108txz43', 'no_lang_code', 1, 'https://ror.org/0108txz43 Vaillant (Germany)'),
(10830, 'https://ror.org/0109e3y78', 'no_lang_code', 1, 'https://ror.org/0109e3y78 Bluegreen Strategy (Italy)'),
(10831, 'https://ror.org/0109ptn93', 'no_lang_code', 1, 'https://ror.org/0109ptn93 TES Electronic Solutions (Germany)'),
(10832, 'https://ror.org/010a92934', 'en', 1, 'https://ror.org/010a92934 Champlain Valley Physicians Hospital'),
(10833, 'https://ror.org/010c8ab15', 'en', 1, 'https://ror.org/010c8ab15 Health Education Council'),
(10834, 'https://ror.org/010c8c923', 'no_lang_code', 1, 'https://ror.org/010c8c923 KGHM Cuprum (Poland) KGHM Cuprum sp. z o.o. Centrum Badawczo - Rozwojowe'),
(10835, 'https://ror.org/010fbtk71', 'no_lang_code', 1, 'https://ror.org/010fbtk71 IPCOS (Netherlands)'),
(10836, 'https://ror.org/010j4r258', 'no_lang_code', 1, 'https://ror.org/010j4r258 EIM Sensor (United States)'),
(10837, 'https://ror.org/010jn4k46', 'en', 1, 'https://ror.org/010jn4k46 Frantsevich Institute for Problems in Materials Science Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ проблем матеріалознавства ім. І.М. Францевича'),
(10838, 'https://ror.org/010p49b38', 'no_lang_code', 1, 'https://ror.org/010p49b38 GeoVille (Austria)'),
(10839, 'https://ror.org/010pkhb41', 'es', 1, 'https://ror.org/010pkhb41 Association Instituto Tecnológico MetalmecÔnico'),
(10840, 'https://ror.org/010sykp39', 'en', 1, 'https://ror.org/010sykp39 Community Food Bank'),
(10841, 'https://ror.org/010v7x554', 'no_lang_code', 1, 'https://ror.org/010v7x554 Firsthand Foods (United States)'),
(10842, 'https://ror.org/010wj4y69', 'en', 1, 'https://ror.org/010wj4y69 Childhood Leukemia Foundation'),
(10843, 'https://ror.org/010ypq317', 'en', 1, 'https://ror.org/010ypq317 NHS Highland'),
(10844, 'https://ror.org/010z5hk55', 'no_lang_code', 1, 'https://ror.org/010z5hk55 Controlled Chemicals (United States)'),
(10845, 'https://ror.org/010z87j47', 'en', 1, 'https://ror.org/010z87j47 Camp Twin Lakes'),
(10846, 'https://ror.org/01107ae84', 'en', 1, 'https://ror.org/01107ae84 Des Moines University Osteopathic Medical Center'),
(10847, 'https://ror.org/0110tsr95', 'no_lang_code', 1, 'https://ror.org/0110tsr95 Energy and Environmental Consultancy'),
(10848, 'https://ror.org/0112g6h79', 'en', 1, 'https://ror.org/0112g6h79 Iringa Development of Youth Disabled and Children Care'),
(10849, 'https://ror.org/0114r0003', 'no_lang_code', 1, 'https://ror.org/0114r0003 NortonLifeLock (Ireland)'),
(10850, 'https://ror.org/0114t5q03', 'en', 1, 'https://ror.org/0114t5q03 Gorlin Syndrome Alliance'),
(10851, 'https://ror.org/0116mgp30', 'no_lang_code', 1, 'https://ror.org/0116mgp30 ALFA PI (Greece)'),
(10852, 'https://ror.org/011724532', 'en', 1, 'https://ror.org/011724532 Center for Independent Living'),
(10853, 'https://ror.org/011728q79', 'en', 1, 'https://ror.org/011728q79 Foundation Fighting Blindness'),
(10854, 'https://ror.org/01177md87', 'en', 1, 'https://ror.org/01177md87 EXPAND Beyond'),
(10855, 'https://ror.org/01177pa98', 'en', 1, 'https://ror.org/01177pa98 Mars Society'),
(10856, 'https://ror.org/0117w1x13', 'en', 1, 'https://ror.org/0117w1x13 Athens Nurses Clinic'),
(10857, 'https://ror.org/01188mx28', 'en', 1, 'https://ror.org/01188mx28 Marine Hydrophysical Institute'),
(10858, 'https://ror.org/0118wgv88', 'en', 1, 'https://ror.org/0118wgv88 New Hanover County Schools'),
(10859, 'https://ror.org/011adb956', 'fr', 1, 'https://ror.org/011adb956 Centre Hospito Universitaire de SƩtif'),
(10860, 'https://ror.org/011azg567', 'en', 1, 'https://ror.org/011azg567 Regional Cancer Center, Thiruvananthapuram'),
(10861, 'https://ror.org/011bjxg73', 'en', 1, 'https://ror.org/011bjxg73 La Casa Norte'),
(10862, 'https://ror.org/011c97447', 'en', 1, 'https://ror.org/011c97447 Newton Symphony Orchestra'),
(10863, 'https://ror.org/011cheg80', 'no_lang_code', 1, 'https://ror.org/011cheg80 Omniox (United States)'),
(10864, 'https://ror.org/011fzp843', 'no_lang_code', 1, 'https://ror.org/011fzp843 Ericsson (Serbia)'),
(10865, 'https://ror.org/011k0sc34', 'no_lang_code', 1, 'https://ror.org/011k0sc34 Atlantia (Italy)'),
(10866, 'https://ror.org/011kc7436', 'no_lang_code', 1, 'https://ror.org/011kc7436 I2 air fluid innovation (United States)'),
(10867, 'https://ror.org/011rkt464', 'no_lang_code', 1, 'https://ror.org/011rkt464 Greentech (France)'),
(10868, 'https://ror.org/011rxtm45', 'no_lang_code', 1, 'https://ror.org/011rxtm45 Exelis (United States)'),
(10869, 'https://ror.org/011sk7b78', 'no_lang_code', 1, 'https://ror.org/011sk7b78 Smart High Tech (Sweden)'),
(10870, 'https://ror.org/011t3k538', 'no_lang_code', 1, 'https://ror.org/011t3k538 SAIL LABS Technology (Austria)'),
(10871, 'https://ror.org/011tnb136', 'en', 1, 'https://ror.org/011tnb136 Carolina Veterinary Specialists'),
(10872, 'https://ror.org/011tyvx62', 'en', 1, 'https://ror.org/011tyvx62 Groundwork Hudson Valley'),
(10873, 'https://ror.org/011wwxv17', 'no_lang_code', 1, 'https://ror.org/011wwxv17 TopGaN (Poland)'),
(10874, 'https://ror.org/011xa1033', 'en', 1, 'https://ror.org/011xa1033 Albuquerque Area Indian Health Board'),
(10875, 'https://ror.org/011xw5c92', 'pl', 1, 'https://ror.org/011xw5c92 Instytut Budownictwa Mechanizacji i Elektryfikacji Rolnictwa'),
(10876, 'https://ror.org/011yjrc39', 'no_lang_code', 1, 'https://ror.org/011yjrc39 Equipos Nucleares (Spain)'),
(10877, 'https://ror.org/011zg5725', 'pt', 1, 'https://ror.org/011zg5725 Centro Tecnológico das Indústrias Têxtil e do VestuÔrio de Portugal Technological Centre for the Portuguese Textile and Clothing Industry'),
(10878, 'https://ror.org/011zr3t28', 'en', 1, 'https://ror.org/011zr3t28 Rio Grande Valley Science Association'),
(10879, 'https://ror.org/0120jh079', 'no_lang_code', 1, 'https://ror.org/0120jh079 Honeywell (United Kingdom)'),
(10880, 'https://ror.org/0122epm04', 'en', 1, 'https://ror.org/0122epm04 EuroHealthNet'),
(10881, 'https://ror.org/01235k409', 'en', 1, 'https://ror.org/01235k409 Polish National Energy Conservation Agency'),
(10882, 'https://ror.org/0123nke06', 'no_lang_code', 1, 'https://ror.org/0123nke06 JRC Capital Management (Germany)'),
(10883, 'https://ror.org/0123ya036', 'en', 1, 'https://ror.org/0123ya036 National Biodiesel Board'),
(10884, 'https://ror.org/01240pn49', 'en', 1, 'https://ror.org/01240pn49 Menlo School'),
(10885, 'https://ror.org/0125xqd86', 'en', 1, 'https://ror.org/0125xqd86 INTEGRIS Southwest Medical Center'),
(10886, 'https://ror.org/0126jpc81', 'en', 1, 'https://ror.org/0126jpc81 Flathead Valley Community College'),
(10887, 'https://ror.org/012bn4v93', 'no_lang_code', 1, 'https://ror.org/012bn4v93 Agilent Technologies (Belgium)'),
(10888, 'https://ror.org/012cahw96', 'no_lang_code', 1, 'https://ror.org/012cahw96 Space Systems Finland (Finland)'),
(10889, 'https://ror.org/012e9j548', 'en', 1, 'https://ror.org/012e9j548 OhioHealth'),
(10890, 'https://ror.org/012gye839', 'en', 1, 'https://ror.org/012gye839 Bwrdd Iechyd Lleol Hywel Dda Hywel Dda University Health Board'),
(10891, 'https://ror.org/012jkf693', 'no_lang_code', 1, 'https://ror.org/012jkf693 E.ON Sverige (Sweden)'),
(10892, 'https://ror.org/012jq2614', 'en', 1, 'https://ror.org/012jq2614 Gateway Confluence Wheelchair Sports Foundation'),
(10893, 'https://ror.org/012kq3b54', 'en', 1, 'https://ror.org/012kq3b54 Horizon Home Care and Hospice'),
(10894, 'https://ror.org/012mvd861', 'no_lang_code', 1, 'https://ror.org/012mvd861 National Air Traffic Services (United Kingdom)'),
(10895, 'https://ror.org/012nb8s32', 'no_lang_code', 1, 'https://ror.org/012nb8s32 GKN (Germany)'),
(10896, 'https://ror.org/012p5cj16', 'no_lang_code', 1, 'https://ror.org/012p5cj16 DIAD Group (Italy)'),
(10897, 'https://ror.org/012pxe355', 'no_lang_code', 1, 'https://ror.org/012pxe355 Net7 (Italy)'),
(10898, 'https://ror.org/012q3xq08', 'no_lang_code', 1, 'https://ror.org/012q3xq08 Menck (Germany)'),
(10899, 'https://ror.org/012r0vb97', 'en', 1, 'https://ror.org/012r0vb97 The Lower Eastside Girls Club'),
(10900, 'https://ror.org/012t5jf53', 'no_lang_code', 1, 'https://ror.org/012t5jf53 Worm Power (United States)'),
(10901, 'https://ror.org/012t91r40', 'fr', 1, 'https://ror.org/012t91r40 Institut de Microbiologie de la MƩditerranƩe'),
(10902, 'https://ror.org/012th4177', 'es', 1, 'https://ror.org/012th4177 Fundación Universidad Empresa'),
(10903, 'https://ror.org/012thdv08', 'no_lang_code', 1, 'https://ror.org/012thdv08 Zueblin (Germany)'),
(10904, 'https://ror.org/012v3yp34', 'no_lang_code', 1, 'https://ror.org/012v3yp34 CINAR (Greece)'),
(10905, 'https://ror.org/012vnhm21', 'no_lang_code', 1, 'https://ror.org/012vnhm21 OrphageniX (United States)'),
(10906, 'https://ror.org/012w2p114', 'en', 1, 'https://ror.org/012w2p114 Kent County Health Department'),
(10907, 'https://ror.org/012wakq07', 'no_lang_code', 1, 'https://ror.org/012wakq07 Thermo Fisher Scientific (Switzerland)'),
(10908, 'https://ror.org/012xa3j60', 'en', 1, 'https://ror.org/012xa3j60 Children''s Therapy Center'),
(10909, 'https://ror.org/012xttn04', 'no_lang_code', 1, 'https://ror.org/012xttn04 Centro Ricerche Produzioni Animali'),
(10910, 'https://ror.org/012yz6164', 'en', 1, 'https://ror.org/012yz6164 Make-A-Wish Foundation'),
(10911, 'https://ror.org/012z9nd72', 'en', 1, 'https://ror.org/012z9nd72 Franklin County Community Development Corporation'),
(10912, 'https://ror.org/0130wtk42', 'en', 1, 'https://ror.org/0130wtk42 Foundation for International Environmental Law and Development'),
(10913, 'https://ror.org/0131c1w17', 'en', 1, 'https://ror.org/0131c1w17 Harlem Children''s Zone'),
(10914, 'https://ror.org/0132g7q26', 'en', 1, 'https://ror.org/0132g7q26 Old Westbury Gardens'),
(10915, 'https://ror.org/0138k6z33', 'en', 1, 'https://ror.org/0138k6z33 Planned Parenthood Hudson Peconic'),
(10916, 'https://ror.org/0139zfs13', 'en', 1, 'https://ror.org/0139zfs13 Kohala Center'),
(10917, 'https://ror.org/013b70286', 'en', 1, 'https://ror.org/013b70286 Denver Hospice'),
(10918, 'https://ror.org/013dthz53', 'en', 1, 'https://ror.org/013dthz53 Missouri Farm Bureau'),
(10919, 'https://ror.org/013fdsd98', 'no_lang_code', 1, 'https://ror.org/013fdsd98 Sirti (Italy)'),
(10920, 'https://ror.org/013gjg633', 'no_lang_code', 1, 'https://ror.org/013gjg633 E.ON (Germany)'),
(10921, 'https://ror.org/013gkrj37', 'no_lang_code', 1, 'https://ror.org/013gkrj37 GKI Economic Research (Hungary)'),
(10922, 'https://ror.org/013h0sc84', 'no_lang_code', 1, 'https://ror.org/013h0sc84 Cellular Engineering Technologies (United States)'),
(10923, 'https://ror.org/013jy5726', 'en', 1, 'https://ror.org/013jy5726 Illinois Area Health Education Center'),
(10924, 'https://ror.org/013kffh65', 'no_lang_code', 1, 'https://ror.org/013kffh65 IRD Fuel Cells (Denmark)'),
(10925, 'https://ror.org/013nb7b55', 'no_lang_code', 1, 'https://ror.org/013nb7b55 Terna (Italy)'),
(10926, 'https://ror.org/013p72785', 'en', 1, 'https://ror.org/013p72785 Chapel Hill Training Outreach Project'),
(10927, 'https://ror.org/013pd3a75', 'en', 1, 'https://ror.org/013pd3a75 Jewish Community Center in Manhattan'),
(10928, 'https://ror.org/013q4fg29', 'en', 1, 'https://ror.org/013q4fg29 Community Servings'),
(10929, 'https://ror.org/013rtxr98', 'no_lang_code', 1, 'https://ror.org/013rtxr98 General Electric (Austria)'),
(10930, 'https://ror.org/013v8tf96', 'en', 1, 'https://ror.org/013v8tf96 Winer Observatory'),
(10931, 'https://ror.org/013yab158', 'en', 1, 'https://ror.org/013yab158 Hartnell College'),
(10932, 'https://ror.org/013z7wp67', 'en', 1, 'https://ror.org/013z7wp67 Saginaw Chippewa Indian Tribal Council'),
(10933, 'https://ror.org/013ze3m78', 'no_lang_code', 1, 'https://ror.org/013ze3m78 Cientive Group (United States)'),
(10934, 'https://ror.org/0140kyc52', 'no_lang_code', 1, 'https://ror.org/0140kyc52 InsectiGen (United States)'),
(10935, 'https://ror.org/0141avd06', 'no_lang_code', 1, 'https://ror.org/0141avd06 RISA Sicherheitsanalysen'),
(10936, 'https://ror.org/0142es516', 'en', 1, 'https://ror.org/0142es516 Gillette Children''s Specialty Healthcare'),
(10937, 'https://ror.org/0143vhw21', 'en', 1, 'https://ror.org/0143vhw21 Baba Farid University of Health Sciences ਬਾਬਾ ਫਰੀਦ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ਆਫ਼ ਹੈਲ਄ ąØøąØ¾ąØ‡ą©°ąØøąØæąØœąØ¼'),
(10938, 'https://ror.org/0145t7b41', 'en', 1, 'https://ror.org/0145t7b41 Cheshire Medical Center'),
(10939, 'https://ror.org/0146hqc14', 'en', 1, 'https://ror.org/0146hqc14 Brain and Spinal Injury Trust Fund Commission'),
(10940, 'https://ror.org/0148agt43', 'en', 1, 'https://ror.org/0148agt43 Texas/Mexico Border Coalition'),
(10941, 'https://ror.org/01491cv93', 'en', 1, 'https://ror.org/01491cv93 Boston Cancer Policy Institute'),
(10942, 'https://ror.org/0149b4c62', 'en', 1, 'https://ror.org/0149b4c62 Long Island Junior Soccer League'),
(10943, 'https://ror.org/014a5cc29', 'no_lang_code', 1, 'https://ror.org/014a5cc29 Liebherr (France)'),
(10944, 'https://ror.org/014b45274', 'en', 1, 'https://ror.org/014b45274 Catapult'),
(10945, 'https://ror.org/014b6hs81', 'no_lang_code', 1, 'https://ror.org/014b6hs81 Prometheus Research (United States)'),
(10946, 'https://ror.org/014bgkg42', 'en', 1, 'https://ror.org/014bgkg42 George Mark Children''s House'),
(10947, 'https://ror.org/014c0sj69', 'en', 1, 'https://ror.org/014c0sj69 Sanilac Intermediate School District'),
(10948, 'https://ror.org/014fc3d26', 'en', 1, 'https://ror.org/014fc3d26 Chemo Comfort'),
(10949, 'https://ror.org/014gfj521', 'no_lang_code', 1, 'https://ror.org/014gfj521 CyberColloids'),
(10950, 'https://ror.org/014j38041', 'en', 1, 'https://ror.org/014j38041 La Clinica de La Raza'),
(10951, 'https://ror.org/014kk5w35', 'no_lang_code', 1, 'https://ror.org/014kk5w35 ZOZ Group (Germany)'),
(10952, 'https://ror.org/014ktjg17', 'en', 1, 'https://ror.org/014ktjg17 White Plains Hospital'),
(10953, 'https://ror.org/014mewn70', 'fr', 1, 'https://ror.org/014mewn70 Federal Overheidsdienst voor Informatie - en Communicatietechnologie Fƶderaler Ɩffentlichter Dienst Informations- und Kommunikationstechnologie Information and Communication Technology Federal Public Service Service Public FĆ©dĆ©ral Technologie de l''Information et de la Communication'),
(10954, 'https://ror.org/014pnzp14', 'en', 1, 'https://ror.org/014pnzp14 Elder Services of the Merrimack Valley'),
(10955, 'https://ror.org/014q65q44', 'en', 1, 'https://ror.org/014q65q44 Patient-Centered Outcomes Research Institute'),
(10956, 'https://ror.org/014q7gt78', 'en', 1, 'https://ror.org/014q7gt78 Ministero della Giustizia Ministry of Justice'),
(10957, 'https://ror.org/014r6zg48', 'en', 1, 'https://ror.org/014r6zg48 Neighborhood Health'),
(10958, 'https://ror.org/014tnef40', 'en', 1, 'https://ror.org/014tnef40 Hosparus'),
(10959, 'https://ror.org/014xsa662', 'no_lang_code', 1, 'https://ror.org/014xsa662 All Things Bugs (United States)'),
(10960, 'https://ror.org/014z5x149', 'en', 1, 'https://ror.org/014z5x149 Institute for Economic Research InŔtitut za Ekonomska Raziskovanja'),
(10961, 'https://ror.org/014zp7s14', 'en', 1, 'https://ror.org/014zp7s14 Dream Foundation'),
(10962, 'https://ror.org/0150tj573', 'de', 1, 'https://ror.org/0150tj573 Deutsche Bundespost German Federal Post Office'),
(10963, 'https://ror.org/0150zzy74', 'en', 1, 'https://ror.org/0150zzy74 New England Disabled Sports'),
(10964, 'https://ror.org/0152zh161', 'en', 1, 'https://ror.org/0152zh161 Caroline Church of Brookhaven'),
(10965, 'https://ror.org/0153wm704', 'en', 1, 'https://ror.org/0153wm704 Goryeb Children''s Hospital'),
(10966, 'https://ror.org/0154eyq57', 'no_lang_code', 1, 'https://ror.org/0154eyq57 Quad County Corn Processors (United States)'),
(10967, 'https://ror.org/0154hjf68', 'it', 1, 'https://ror.org/0154hjf68 Fondazione Mons Arrigo Mazzali'),
(10968, 'https://ror.org/01575p865', 'en', 1, 'https://ror.org/01575p865 Cancer Research And Biostatistics'),
(10969, 'https://ror.org/01579r607', 'en', 1, 'https://ror.org/01579r607 Mahoning County Educational Service Center'),
(10970, 'https://ror.org/01595ga64', 'no_lang_code', 1, 'https://ror.org/01595ga64 Cowi (Norway)'),
(10971, 'https://ror.org/0159ban23', 'no_lang_code', 1, 'https://ror.org/0159ban23 Vermon (France)'),
(10972, 'https://ror.org/015akvv41', 'en', 1, 'https://ror.org/015akvv41 Community Care Partners'),
(10973, 'https://ror.org/015bz4634', 'no_lang_code', 1, 'https://ror.org/015bz4634 Agfa-Gevaert (Belgium)'),
(10974, 'https://ror.org/015cdqj77', 'en', 1, 'https://ror.org/015cdqj77 United Medical Center'),
(10975, 'https://ror.org/015drk921', 'en', 1, 'https://ror.org/015drk921 Patients First'),
(10976, 'https://ror.org/015eafn72', 'en', 1, 'https://ror.org/015eafn72 Candlelighters of West Texas & Southern New Mexico'),
(10977, 'https://ror.org/015enq107', 'en', 1, 'https://ror.org/015enq107 Gallery North'),
(10978, 'https://ror.org/015fpqf51', 'no_lang_code', 1, 'https://ror.org/015fpqf51 Warrington Certification (United Kingdom)'),
(10979, 'https://ror.org/015gqee34', 'no_lang_code', 1, 'https://ror.org/015gqee34 NANOfutures (Belgium)'),
(10980, 'https://ror.org/015k31167', 'no_lang_code', 1, 'https://ror.org/015k31167 BLC Leather Technology Centre'),
(10981, 'https://ror.org/015m6xt73', 'no_lang_code', 1, 'https://ror.org/015m6xt73 Gruppo CLAS (Italy)'),
(10982, 'https://ror.org/015q69778', 'no_lang_code', 1, 'https://ror.org/015q69778 MS Biotec (United States)'),
(10983, 'https://ror.org/015sh1j12', 'no_lang_code', 1, 'https://ror.org/015sh1j12 Juniper Networks (Ireland)'),
(10984, 'https://ror.org/015sr5294', 'en', 1, 'https://ror.org/015sr5294 Balarat Outdoor Education'),
(10985, 'https://ror.org/015v43a21', 'es', 1, 'https://ror.org/015v43a21 Centro de Investigación en Alimentación y Desarrollo'),
(10986, 'https://ror.org/015v8hy06', 'no_lang_code', 1, 'https://ror.org/015v8hy06 Taylor Shellfish Farms (United States)'),
(10987, 'https://ror.org/015w2wb33', 'no_lang_code', 1, 'https://ror.org/015w2wb33 Atos (France)'),
(10988, 'https://ror.org/015wgq606', 'no_lang_code', 1, 'https://ror.org/015wgq606 Work Research Centre'),
(10989, 'https://ror.org/015xega74', 'en', 1, 'https://ror.org/015xega74 Children''s Music Fund'),
(10990, 'https://ror.org/015xym232', 'no_lang_code', 1, 'https://ror.org/015xym232 Pintail (Ireland)'),
(10991, 'https://ror.org/0160wm621', 'no_lang_code', 1, 'https://ror.org/0160wm621 Green Tech Labs (United States)'),
(10992, 'https://ror.org/01628rf48', 'en', 1, 'https://ror.org/01628rf48 ChangeLab Solutions'),
(10993, 'https://ror.org/0163bsq78', 'de', 1, 'https://ror.org/0163bsq78 Development Centre for Ship Technology and Transport Systems Entwicklungszentrum für Schiffstechnik und Transportsysteme, Versuchsanstalt für Binnenschiffbau'),
(10994, 'https://ror.org/01652xx78', 'no_lang_code', 1, 'https://ror.org/01652xx78 Stam (Italy)'),
(10995, 'https://ror.org/0165dap44', 'no_lang_code', 1, 'https://ror.org/0165dap44 CF consulting Finanziamenti Unione Europea'),
(10996, 'https://ror.org/0165ws896', 'en', 1, 'https://ror.org/0165ws896 Hope Through Grace'),
(10997, 'https://ror.org/016a12m25', 'fr', 1, 'https://ror.org/016a12m25 ComitƩ Scientifique et Technique des Industries Climatiques'),
(10998, 'https://ror.org/016dza536', 'en', 1, 'https://ror.org/016dza536 For Inspiration and Recognition of Science and Technology'),
(10999, 'https://ror.org/016g6pe62', 'en', 1, 'https://ror.org/016g6pe62 Challenge Alaska'),
(11000, 'https://ror.org/016jdw248', 'en', 1, 'https://ror.org/016jdw248 Carolyn Dorfman Dance Company'),
(11001, 'https://ror.org/016jjjq38', 'no_lang_code', 1, 'https://ror.org/016jjjq38 Eltropuls (United Kingdom)'),
(11002, 'https://ror.org/016jzy244', 'en', 1, 'https://ror.org/016jzy244 Catholic Family Center'),
(11003, 'https://ror.org/016p00020', 'no_lang_code', 1, 'https://ror.org/016p00020 Computerised Information Technology (United Kingdom)'),
(11004, 'https://ror.org/016pz0d03', 'no_lang_code', 1, 'https://ror.org/016pz0d03 HS-Art Digital Service (Austria)'),
(11005, 'https://ror.org/016tr2j79', 'no_lang_code', 1, 'https://ror.org/016tr2j79 Uni Research (Norway)'),
(11006, 'https://ror.org/016v0dh58', 'no_lang_code', 1, 'https://ror.org/016v0dh58 Teks (France)'),
(11007, 'https://ror.org/016v3mm55', 'no_lang_code', 1, 'https://ror.org/016v3mm55 CognIT (Norway)'),
(11008, 'https://ror.org/016yyk170', 'en', 1, 'https://ror.org/016yyk170 Lennox-Gastaut Syndrome Foundation'),
(11009, 'https://ror.org/0170ntk37', 'no_lang_code', 1, 'https://ror.org/0170ntk37 Vienna Consulting Engineers (Austria)'),
(11010, 'https://ror.org/01714zp28', 'no_lang_code', 1, 'https://ror.org/01714zp28 Prometheus Energy (United States)'),
(11011, 'https://ror.org/0171n6z35', 'en', 1, 'https://ror.org/0171n6z35 EvergreenHealth Foundation'),
(11012, 'https://ror.org/0171vtm86', 'no_lang_code', 1, 'https://ror.org/0171vtm86 SGS (Netherlands)'),
(11013, 'https://ror.org/01746zk69', 'en', 1, 'https://ror.org/01746zk69 National Advocates for Pregnant Women'),
(11014, 'https://ror.org/01749ew24', 'en', 1, 'https://ror.org/01749ew24 Friends of the North Carolina Maritime Museum'),
(11015, 'https://ror.org/01764fn91', 'no_lang_code', 1, 'https://ror.org/01764fn91 Pan Genome Systems (United States)'),
(11016, 'https://ror.org/0178m6t08', 'no_lang_code', 1, 'https://ror.org/0178m6t08 Correanayak (Spain)'),
(11017, 'https://ror.org/017977v32', 'no_lang_code', 1, 'https://ror.org/017977v32 Alstom (Switzerland)'),
(11018, 'https://ror.org/01797xg87', 'no_lang_code', 1, 'https://ror.org/01797xg87 MEI Research (United States)'),
(11019, 'https://ror.org/0179d7111', 'en', 1, 'https://ror.org/0179d7111 Promise Project'),
(11020, 'https://ror.org/0179z8203', 'no_lang_code', 1, 'https://ror.org/0179z8203 Flabeg (Germany)'),
(11021, 'https://ror.org/017artp82', 'no_lang_code', 1, 'https://ror.org/017artp82 Electricity Authority of Cyprus (Cyprus)'),
(11022, 'https://ror.org/017b91861', 'it', 1, 'https://ror.org/017b91861 Fondazione Golgi Cenci'),
(11023, 'https://ror.org/017ctmv39', 'no_lang_code', 1, 'https://ror.org/017ctmv39 AkzoNobel (Netherlands)'),
(11024, 'https://ror.org/017d1a722', 'no_lang_code', 1, 'https://ror.org/017d1a722 Caprion (Canada)'),
(11025, 'https://ror.org/017ddyz63', 'no_lang_code', 1, 'https://ror.org/017ddyz63 INTRASOFT International (Belgium)'),
(11026, 'https://ror.org/017e5fj79', 'en', 1, 'https://ror.org/017e5fj79 Covenant Children''s Hospital'),
(11027, 'https://ror.org/017epgn33', 'no_lang_code', 1, 'https://ror.org/017epgn33 Ambiente Italia (Italy)'),
(11028, 'https://ror.org/017f23p13', 'en', 1, 'https://ror.org/017f23p13 B.P. Koirala Memorial Cancer Hospital ą¤¬ą„€.ą¤Ŗą„€. ą¤•ą„‹ą¤‡ą¤°ą¤¾ą¤²ą¤¾ ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤•ą„ą¤Æą¤¾ą¤Øą„ą¤øą¤° ą¤¹ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(11029, 'https://ror.org/017gjr957', 'en', 1, 'https://ror.org/017gjr957 Pro Bono Counseling Project'),
(11030, 'https://ror.org/017hmby02', 'en', 1, 'https://ror.org/017hmby02 Verwey Jonker Institute'),
(11031, 'https://ror.org/017m81f09', 'no_lang_code', 1, 'https://ror.org/017m81f09 Technopolis'),
(11032, 'https://ror.org/017maz245', 'en', 1, 'https://ror.org/017maz245 Cheshire Home'),
(11033, 'https://ror.org/017phwt11', 'en', 1, 'https://ror.org/017phwt11 Bladen County Schools'),
(11034, 'https://ror.org/017prpf68', 'no_lang_code', 1, 'https://ror.org/017prpf68 OneGift'),
(11035, 'https://ror.org/017qjec28', 'en', 1, 'https://ror.org/017qjec28 VATT Institute for Economic Research'),
(11036, 'https://ror.org/017r9q421', 'no_lang_code', 1, 'https://ror.org/017r9q421 Genoway (France)'),
(11037, 'https://ror.org/017sx9325', 'no_lang_code', 1, 'https://ror.org/017sx9325 Air Liquide (Germany)'),
(11038, 'https://ror.org/017t18r89', 'en', 1, 'https://ror.org/017t18r89 Fighting Chance'),
(11039, 'https://ror.org/017t82m28', 'no_lang_code', 1, 'https://ror.org/017t82m28 Angimmune (United States)'),
(11040, 'https://ror.org/017t84284', 'en', 1, 'https://ror.org/017t84284 Northeast Organic Farming Association of New Jersey'),
(11041, 'https://ror.org/017vn3365', 'no_lang_code', 1, 'https://ror.org/017vn3365 Stichting Hout Research (Netherlands)'),
(11042, 'https://ror.org/017w6as65', 'en', 1, 'https://ror.org/017w6as65 Staunton Creative Community Fund'),
(11043, 'https://ror.org/017xb4c21', 'fr', 1, 'https://ror.org/017xb4c21 Group For Research and Technology Exchanges Groupe de Recherches et d''Echanges Technologiques'),
(11044, 'https://ror.org/017xncd55', 'en', 1, 'https://ror.org/017xncd55 MaineHealth'),
(11045, 'https://ror.org/017yvv646', 'en', 1, 'https://ror.org/017yvv646 Brain Injury Association of Mississippi'),
(11046, 'https://ror.org/0183pp169', 'en', 1, 'https://ror.org/0183pp169 Ability Production'),
(11047, 'https://ror.org/0184sq126', 'no_lang_code', 1, 'https://ror.org/0184sq126 Irion & Junker Project Management Irion and Junker Projektmanagement'),
(11048, 'https://ror.org/0185drb55', 'en', 1, 'https://ror.org/0185drb55 Alzheimer''s Drug Discovery Foundation'),
(11049, 'https://ror.org/01866as23', 'no_lang_code', 1, 'https://ror.org/01866as23 TDF (France)'),
(11050, 'https://ror.org/0187tsx41', 'no_lang_code', 1, 'https://ror.org/0187tsx41 Sigma Space (United States)'),
(11051, 'https://ror.org/018br7a38', 'en', 1, 'https://ror.org/018br7a38 Walton County School District'),
(11052, 'https://ror.org/018d8dx68', 'no_lang_code', 1, 'https://ror.org/018d8dx68 Tritecc (Romania)'),
(11053, 'https://ror.org/018dcfg43', 'en', 1, 'https://ror.org/018dcfg43 Penn Highlands Healthcare'),
(11054, 'https://ror.org/018dp3302', 'en', 1, 'https://ror.org/018dp3302 Coyote Canyon Rehabilitation Center'),
(11055, 'https://ror.org/018dzn802', 'en', 1, 'https://ror.org/018dzn802 Bhubaneswar Borooah Cancer Institute'),
(11056, 'https://ror.org/018gt7b78', 'no_lang_code', 1, 'https://ror.org/018gt7b78 WLB Limited (Cyprus)'),
(11057, 'https://ror.org/018kgyq04', 'no_lang_code', 1, 'https://ror.org/018kgyq04 Roal (Finland)'),
(11058, 'https://ror.org/018n9jg91', 'no_lang_code', 1, 'https://ror.org/018n9jg91 InterSoft (Slovakia)'),
(11059, 'https://ror.org/018q0y068', 'no_lang_code', 1, 'https://ror.org/018q0y068 MJC2 (United Kingdom)'),
(11060, 'https://ror.org/018q3fa22', 'en', 1, 'https://ror.org/018q3fa22 Centre for Research in Engineering Surface Technology'),
(11061, 'https://ror.org/018qv1e85', 'no_lang_code', 1, 'https://ror.org/018qv1e85 PreSens Precision Sensing (Germany)'),
(11062, 'https://ror.org/018rhs370', 'no_lang_code', 1, 'https://ror.org/018rhs370 IFC Research (United Kingdom)'),
(11063, 'https://ror.org/018sya243', 'en', 1, 'https://ror.org/018sya243 Deutsch Institute'),
(11064, 'https://ror.org/018t3ct36', 'no_lang_code', 1, 'https://ror.org/018t3ct36 Rapita Systems (United Kingdom)'),
(11065, 'https://ror.org/018t53266', 'en', 1, 'https://ror.org/018t53266 Power Paws Assistance Dogs'),
(11066, 'https://ror.org/018vx9t46', 'en', 1, 'https://ror.org/018vx9t46 Mazumdar Shaw Medical Centre'),
(11067, 'https://ror.org/0190g0e24', 'no_lang_code', 1, 'https://ror.org/0190g0e24 Xsens (Netherlands)'),
(11068, 'https://ror.org/0192jdh06', 'no_lang_code', 1, 'https://ror.org/0192jdh06 Satways (Greece)'),
(11069, 'https://ror.org/0192zc472', 'en', 1, 'https://ror.org/0192zc472 Ocean Classroom'),
(11070, 'https://ror.org/01950ke92', 'no_lang_code', 1, 'https://ror.org/01950ke92 Concentration Heat and Momentum (United Kingdom)'),
(11071, 'https://ror.org/0195q0f30', 'no_lang_code', 1, 'https://ror.org/0195q0f30 Materials Industrial Research and Technology Development Centre (Greece) Εταιρεία'),
(11072, 'https://ror.org/0195yp903', 'en', 1, 'https://ror.org/0195yp903 Society for In Vitro Biology'),
(11073, 'https://ror.org/01965fb20', 'no_lang_code', 1, 'https://ror.org/01965fb20 Protection des MƩtaux (France)'),
(11074, 'https://ror.org/01996x261', 'en', 1, 'https://ror.org/01996x261 Breckenridge Outdoor Education Center'),
(11075, 'https://ror.org/0199x1096', 'en', 1, 'https://ror.org/0199x1096 Shipbuilders & Shiprepairers Association'),
(11076, 'https://ror.org/019dhev54', 'en', 1, 'https://ror.org/019dhev54 Granite State Independent Living'),
(11077, 'https://ror.org/019ejf125', 'no_lang_code', 1, 'https://ror.org/019ejf125 Ormazabal (Switzerland)'),
(11078, 'https://ror.org/019frbz80', 'no_lang_code', 1, 'https://ror.org/019frbz80 Specim (Finland)'),
(11079, 'https://ror.org/019g7bh20', 'no_lang_code', 1, 'https://ror.org/019g7bh20 Paratek Pharmaceuticals (United States)'),
(11080, 'https://ror.org/019hc5667', 'en', 1, 'https://ror.org/019hc5667 FareStart'),
(11081, 'https://ror.org/019knvq46', 'en', 1, 'https://ror.org/019knvq46 Emmanuel Cancer Foundation'),
(11082, 'https://ror.org/019ksbk73', 'en', 1, 'https://ror.org/019ksbk73 Hospice of the Upstate'),
(11083, 'https://ror.org/019m53d79', 'en', 1, 'https://ror.org/019m53d79 Capital of Texas Team Survivor'),
(11084, 'https://ror.org/019n7yz73', 'en', 1, 'https://ror.org/019n7yz73 Conway Regional Health System'),
(11085, 'https://ror.org/019nbqv12', 'no_lang_code', 1, 'https://ror.org/019nbqv12 Technosam (Romania)'),
(11086, 'https://ror.org/019p95v81', 'en', 1, 'https://ror.org/019p95v81 HOPE European Hospital and Healthcare Federation'),
(11087, 'https://ror.org/019rb1136', 'no_lang_code', 1, 'https://ror.org/019rb1136 L-Up'),
(11088, 'https://ror.org/019ssje31', 'en', 1, 'https://ror.org/019ssje31 Essentia Health'),
(11089, 'https://ror.org/019tbwb44', 'no_lang_code', 1, 'https://ror.org/019tbwb44 Faseroptische Systeme Messtechnik (Germany)'),
(11090, 'https://ror.org/019tk8j65', 'no_lang_code', 1, 'https://ror.org/019tk8j65 Triphase (Belgium)'),
(11091, 'https://ror.org/019tkx431', 'no_lang_code', 1, 'https://ror.org/019tkx431 Kraftanlagen (Germany)'),
(11092, 'https://ror.org/019xk8h36', 'no_lang_code', 1, 'https://ror.org/019xk8h36 Axxam (Italy)'),
(11093, 'https://ror.org/019xkjn34', 'no_lang_code', 1, 'https://ror.org/019xkjn34 Intertek (Sweden)'),
(11094, 'https://ror.org/019zszt41', 'en', 1, 'https://ror.org/019zszt41 South Routt School District'),
(11095, 'https://ror.org/01a0heb61', 'no_lang_code', 1, 'https://ror.org/01a0heb61 Allakos (United States)'),
(11096, 'https://ror.org/01a1kj410', 'no_lang_code', 1, 'https://ror.org/01a1kj410 Planetek Italia'),
(11097, 'https://ror.org/01a1xfd09', 'en', 1, 'https://ror.org/01a1xfd09 Institute for Nuclear Research Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(11098, 'https://ror.org/01a2qtx28', 'en', 1, 'https://ror.org/01a2qtx28 Lili Claire Foundation'),
(11099, 'https://ror.org/01a3n7y93', 'no_lang_code', 1, 'https://ror.org/01a3n7y93 Advanced Management Solutions (Greece)'),
(11100, 'https://ror.org/01a3sz723', 'ro', 1, 'https://ror.org/01a3sz723 Center of International Projects Centrul de Proiecte Internaţionale'),
(11101, 'https://ror.org/01a3t6k91', 'en', 1, 'https://ror.org/01a3t6k91 Colorado Cattlemen''s Association'),
(11102, 'https://ror.org/01a58n762', 'no_lang_code', 1, 'https://ror.org/01a58n762 WƤrtsilƤ (Germany)'),
(11103, 'https://ror.org/01a6cr462', 'de', 1, 'https://ror.org/01a6cr462 Forschungsinstitut für schnellwachsende Baumarten'),
(11104, 'https://ror.org/01a70q325', 'no_lang_code', 1, 'https://ror.org/01a70q325 Fluidda (United States)'),
(11105, 'https://ror.org/01a7b6660', 'no_lang_code', 1, 'https://ror.org/01a7b6660 Stresstech (Finland)'),
(11106, 'https://ror.org/01a81w125', 'en', 1, 'https://ror.org/01a81w125 Planned Parenthood Association of Liberia'),
(11107, 'https://ror.org/01aabt454', 'en', 1, 'https://ror.org/01aabt454 Mark Codner, MD Plastic Surgery'),
(11108, 'https://ror.org/01abzmh24', 'no_lang_code', 1, 'https://ror.org/01abzmh24 Prototech (Norway)'),
(11109, 'https://ror.org/01adgby89', 'no_lang_code', 1, 'https://ror.org/01adgby89 Orgelbau Mühleisen (Germany)'),
(11110, 'https://ror.org/01ag8d960', 'no_lang_code', 1, 'https://ror.org/01ag8d960 Global Security Intelligence (United Kingdom)'),
(11111, 'https://ror.org/01ajjny45', 'no_lang_code', 1, 'https://ror.org/01ajjny45 Nanologica (Sweden)'),
(11112, 'https://ror.org/01akx8n77', 'no_lang_code', 1, 'https://ror.org/01akx8n77 Dendritic Cell Research (India)'),
(11113, 'https://ror.org/01anprz44', 'no_lang_code', 1, 'https://ror.org/01anprz44 Cell Machines (United States)'),
(11114, 'https://ror.org/01aqcn407', 'en', 1, 'https://ror.org/01aqcn407 New Orleans Musicians Assistance Foundation'),
(11115, 'https://ror.org/01ar5xt70', 'en', 1, 'https://ror.org/01ar5xt70 Bloomington Health Foundation'),
(11116, 'https://ror.org/01av4dy75', 'en', 1, 'https://ror.org/01av4dy75 Baptist Health Foundation'),
(11117, 'https://ror.org/01avjet51', 'en', 1, 'https://ror.org/01avjet51 St. Patrick Roman Catholic Church'),
(11118, 'https://ror.org/01avrgx42', 'en', 1, 'https://ror.org/01avrgx42 Horizons Community Solutions'),
(11119, 'https://ror.org/01awdzs62', 'no_lang_code', 1, 'https://ror.org/01awdzs62 Larco (Greece)'),
(11120, 'https://ror.org/01awnfh35', 'en', 1, 'https://ror.org/01awnfh35 Citizens United for Research in Epilepsy'),
(11121, 'https://ror.org/01ay7an66', 'no_lang_code', 1, 'https://ror.org/01ay7an66 VERO Biotech (United States)'),
(11122, 'https://ror.org/01aysdw42', 'en', 1, 'https://ror.org/01aysdw42 St Mary''s Hospital'),
(11123, 'https://ror.org/01aznms81', 'en', 1, 'https://ror.org/01aznms81 CentraState Healthcare Foundation'),
(11124, 'https://ror.org/01b0md462', 'no_lang_code', 1, 'https://ror.org/01b0md462 Plumbline Coaching & Consulting (United States)'),
(11125, 'https://ror.org/01b3b0r57', 'en', 1, 'https://ror.org/01b3b0r57 Parent Advocacy Coalition for Educational Rights'),
(11126, 'https://ror.org/01b3n9g22', 'it', 1, 'https://ror.org/01b3n9g22 Fondazione Gimema Onlus'),
(11127, 'https://ror.org/01b5dy719', 'en', 1, 'https://ror.org/01b5dy719 Institute of Mathematics and Informatics'),
(11128, 'https://ror.org/01b6xgg59', 'en', 1, 'https://ror.org/01b6xgg59 iXscient'),
(11129, 'https://ror.org/01b7jd097', 'ga', 1, 'https://ror.org/01b7jd097 An Garda SƭochƔna'),
(11130, 'https://ror.org/01b9zn241', 'no_lang_code', 1, 'https://ror.org/01b9zn241 WhyHunger'),
(11131, 'https://ror.org/01ba2ff92', 'no_lang_code', 1, 'https://ror.org/01ba2ff92 Biopico Systems (United States)'),
(11132, 'https://ror.org/01bbb9w98', 'en', 1, 'https://ror.org/01bbb9w98 East Harlem Tutorial Program'),
(11133, 'https://ror.org/01bbba959', 'en', 1, 'https://ror.org/01bbba959 Pink Ribbons Project');
INSERT INTO `rors` VALUES
(11134, 'https://ror.org/01bbs9f03', 'no_lang_code', 1, 'https://ror.org/01bbs9f03 Celsus Therapeutics (United Kingdom)'),
(11135, 'https://ror.org/01bcgtw38', 'en', 1, 'https://ror.org/01bcgtw38 St. Luke''s Clinic'),
(11136, 'https://ror.org/01bcnv283', 'en', 1, 'https://ror.org/01bcnv283 Los Angeles Centers for Alcohol and Drug Abuse'),
(11137, 'https://ror.org/01bd8yz25', 'en', 1, 'https://ror.org/01bd8yz25 Afterschool Alliance'),
(11138, 'https://ror.org/01bdddp98', 'no_lang_code', 1, 'https://ror.org/01bdddp98 FeyeCon (Netherlands)'),
(11139, 'https://ror.org/01be0e870', 'no_lang_code', 1, 'https://ror.org/01be0e870 Nutrition 21 (United States)'),
(11140, 'https://ror.org/01bf0r740', 'en', 1, 'https://ror.org/01bf0r740 Arms Wide Open Community Development Corporation'),
(11141, 'https://ror.org/01bhfvx80', 'pt', 1, 'https://ror.org/01bhfvx80 Gestos'),
(11142, 'https://ror.org/01bjdg534', 'en', 1, 'https://ror.org/01bjdg534 Teens Living with Cancer'),
(11143, 'https://ror.org/01bkx5q50', 'en', 1, 'https://ror.org/01bkx5q50 Centre for Technological Research of Crete'),
(11144, 'https://ror.org/01bss2h67', 'no_lang_code', 1, 'https://ror.org/01bss2h67 PE International (Germany)'),
(11145, 'https://ror.org/01bswen66', 'no_lang_code', 1, 'https://ror.org/01bswen66 Hudson Simulation Service'),
(11146, 'https://ror.org/01bv1r935', 'no_lang_code', 1, 'https://ror.org/01bv1r935 MBDA (France)'),
(11147, 'https://ror.org/01bvfdq42', 'no_lang_code', 1, 'https://ror.org/01bvfdq42 Lantiq (Germany)'),
(11148, 'https://ror.org/01bwznq34', 'en', 1, 'https://ror.org/01bwznq34 Gila Regional Medical Center'),
(11149, 'https://ror.org/01c0de609', 'no_lang_code', 1, 'https://ror.org/01c0de609 IMIX Vision Support Systems (Netherlands)'),
(11150, 'https://ror.org/01c0hr456', 'no_lang_code', 1, 'https://ror.org/01c0hr456 Glƶtzl (Germany)'),
(11151, 'https://ror.org/01c0k9408', 'en', 1, 'https://ror.org/01c0k9408 Life University'),
(11152, 'https://ror.org/01c0x3431', 'no_lang_code', 1, 'https://ror.org/01c0x3431 OSRAM (Germany)'),
(11153, 'https://ror.org/01c1z6p98', 'no_lang_code', 1, 'https://ror.org/01c1z6p98 Advanced Inhalation Therapies (Israel)'),
(11154, 'https://ror.org/01c3e9r47', 'no_lang_code', 1, 'https://ror.org/01c3e9r47 Biodel (United States)'),
(11155, 'https://ror.org/01c3fwx83', 'en', 1, 'https://ror.org/01c3fwx83 Miracle League of Blair County'),
(11156, 'https://ror.org/01c3nm063', 'no_lang_code', 1, 'https://ror.org/01c3nm063 Kiksapa Consulting (United States)'),
(11157, 'https://ror.org/01c3rah98', 'en', 1, 'https://ror.org/01c3rah98 Heroes on Horseback'),
(11158, 'https://ror.org/01c3w3270', 'en', 1, 'https://ror.org/01c3w3270 Institute of Cognitive and Brain Sciences'),
(11159, 'https://ror.org/01c4g1b02', 'en', 1, 'https://ror.org/01c4g1b02 Great Northern Services'),
(11160, 'https://ror.org/01c55m435', 'no_lang_code', 1, 'https://ror.org/01c55m435 Castle Rock Geotech (United Kingdom)'),
(11161, 'https://ror.org/01c5aqt35', 'no_lang_code', 1, 'https://ror.org/01c5aqt35 Danone (Netherlands)'),
(11162, 'https://ror.org/01c6ycm57', 'no_lang_code', 1, 'https://ror.org/01c6ycm57 EnBiotix (United States)'),
(11163, 'https://ror.org/01c79fd45', 'no_lang_code', 1, 'https://ror.org/01c79fd45 Space (Italy)'),
(11164, 'https://ror.org/01c7ad114', 'en', 1, 'https://ror.org/01c7ad114 Elizabeth City Pasquotank Public Schools'),
(11165, 'https://ror.org/01c93rd67', 'en', 1, 'https://ror.org/01c93rd67 The House of Praise'),
(11166, 'https://ror.org/01cc8wa14', 'en', 1, 'https://ror.org/01cc8wa14 Parker Jewish Institute for Health Care and Rehabilitation'),
(11167, 'https://ror.org/01ccbsb07', 'en', 1, 'https://ror.org/01ccbsb07 United Institute of Informatics Problems'),
(11168, 'https://ror.org/01ccwxx16', 'en', 1, 'https://ror.org/01ccwxx16 San Diego Hospice and The Institute for Palliative Medicine'),
(11169, 'https://ror.org/01cebzr82', 'no_lang_code', 1, 'https://ror.org/01cebzr82 GAF AG'),
(11170, 'https://ror.org/01cfgbq85', 'it', 1, 'https://ror.org/01cfgbq85 Azienda Sanitaria di Firenze'),
(11171, 'https://ror.org/01cjkdm63', 'fr', 1, 'https://ror.org/01cjkdm63 HouillĆØres de Lorraine'),
(11172, 'https://ror.org/01cm1nq79', 'en', 1, 'https://ror.org/01cm1nq79 Brunswick County Schools'),
(11173, 'https://ror.org/01cmxpj21', 'no_lang_code', 1, 'https://ror.org/01cmxpj21 SupraPolix (Netherlands)'),
(11174, 'https://ror.org/01cpp8w55', 'en', 1, 'https://ror.org/01cpp8w55 Institute for Washington’s Future'),
(11175, 'https://ror.org/01crmyn45', 'en', 1, 'https://ror.org/01crmyn45 Dream Catchers Therapeutic Riding'),
(11176, 'https://ror.org/01csgpy33', 'en', 1, 'https://ror.org/01csgpy33 Methodist Le Bonheur Healthcare'),
(11177, 'https://ror.org/01csjkt09', 'fr', 1, 'https://ror.org/01csjkt09 Institut de l’Elevage'),
(11178, 'https://ror.org/01ctvj234', 'no_lang_code', 1, 'https://ror.org/01ctvj234 Nedstack fuel cell technology (Netherlands)'),
(11179, 'https://ror.org/01cwasn33', 'no_lang_code', 1, 'https://ror.org/01cwasn33 Vodafone (Greece)'),
(11180, 'https://ror.org/01cwv5f90', 'en', 1, 'https://ror.org/01cwv5f90 Northeast Health'),
(11181, 'https://ror.org/01cys2m19', 'en', 1, 'https://ror.org/01cys2m19 Chiricahua Community Health Centers'),
(11182, 'https://ror.org/01czwga19', 'fr', 1, 'https://ror.org/01czwga19 Fondation Leducq Leducq Foundation'),
(11183, 'https://ror.org/01d0ay026', 'en', 1, 'https://ror.org/01d0ay026 Florida West Coast Resource Conservation and Development'),
(11184, 'https://ror.org/01d1vqp66', 'en', 1, 'https://ror.org/01d1vqp66 Regional Health'),
(11185, 'https://ror.org/01d2cs775', 'en', 1, 'https://ror.org/01d2cs775 Desert AIDS Project'),
(11186, 'https://ror.org/01d35cw23', 'en', 1, 'https://ror.org/01d35cw23 Burroughs Wellcome Fund'),
(11187, 'https://ror.org/01d54xp37', 'pt', 1, 'https://ror.org/01d54xp37 Fundmed Pesquisa, Ensino e Inovacao'),
(11188, 'https://ror.org/01d76dn02', 'no_lang_code', 1, 'https://ror.org/01d76dn02 Rolling Hills Research (United States)'),
(11189, 'https://ror.org/01d8y3h50', 'en', 1, 'https://ror.org/01d8y3h50 First Giving'),
(11190, 'https://ror.org/01d9fmv96', 'en', 1, 'https://ror.org/01d9fmv96 Girls Educational and Mentoring Services'),
(11191, 'https://ror.org/01d9x6s51', 'fr', 1, 'https://ror.org/01d9x6s51 Centre Technique de l''Industrie du Bois'),
(11192, 'https://ror.org/01d9zj202', 'no_lang_code', 1, 'https://ror.org/01d9zj202 Tech4i2'),
(11193, 'https://ror.org/01dd6b484', 'en', 1, 'https://ror.org/01dd6b484 McLoughlin Consulting'),
(11194, 'https://ror.org/01de1e381', 'no_lang_code', 1, 'https://ror.org/01de1e381 Help Service - Remote Sensing (Czechia)'),
(11195, 'https://ror.org/01dfd3f84', 'it', 1, 'https://ror.org/01dfd3f84 Fondazione Matilde Tettamanti Menotti De Marchi'),
(11196, 'https://ror.org/01dhk3z45', 'en', 1, 'https://ror.org/01dhk3z45 Hydrogen Fuel Cells and Electro-Mobility in European Regions'),
(11197, 'https://ror.org/01dj30h14', 'en', 1, 'https://ror.org/01dj30h14 Mines Rescue Service'),
(11198, 'https://ror.org/01djrwd47', 'en', 1, 'https://ror.org/01djrwd47 Breathe California of Los Angeles County'),
(11199, 'https://ror.org/01dknz144', 'en', 1, 'https://ror.org/01dknz144 Solid Ground'),
(11200, 'https://ror.org/01dn4kx94', 'no_lang_code', 1, 'https://ror.org/01dn4kx94 Sparqle International (Netherlands)'),
(11201, 'https://ror.org/01dns9649', 'en', 1, 'https://ror.org/01dns9649 Project Open Hand'),
(11202, 'https://ror.org/01drcxb91', 'no_lang_code', 1, 'https://ror.org/01drcxb91 Sirma Group (Bulgaria)'),
(11203, 'https://ror.org/01drqkt97', 'no_lang_code', 1, 'https://ror.org/01drqkt97 KeraNor (Norway)'),
(11204, 'https://ror.org/01dwm7q20', 'en', 1, 'https://ror.org/01dwm7q20 DAWN Center for Independent Living'),
(11205, 'https://ror.org/01dxazx51', 'en', 1, 'https://ror.org/01dxazx51 Centre for Community Justice and Development'),
(11206, 'https://ror.org/01dzdzt70', 'no_lang_code', 1, 'https://ror.org/01dzdzt70 SensL (Ireland)'),
(11207, 'https://ror.org/01e1qb944', 'no_lang_code', 1, 'https://ror.org/01e1qb944 Athira Pharma (United States)'),
(11208, 'https://ror.org/01e1zk141', 'en', 1, 'https://ror.org/01e1zk141 Southern New Hampshire Services'),
(11209, 'https://ror.org/01e2a5576', 'en', 1, 'https://ror.org/01e2a5576 Medical Center Hospital'),
(11210, 'https://ror.org/01e3jga91', 'no_lang_code', 1, 'https://ror.org/01e3jga91 Exelixis (United States)'),
(11211, 'https://ror.org/01e92na05', 'en', 1, 'https://ror.org/01e92na05 Frontier Science Foundation'),
(11212, 'https://ror.org/01eaddk85', 'no_lang_code', 1, 'https://ror.org/01eaddk85 Selected Electronic Technologies (Germany)'),
(11213, 'https://ror.org/01ec6j128', 'it', 1, 'https://ror.org/01ec6j128 La Forza del Silenzio'),
(11214, 'https://ror.org/01edwz996', 'en', 1, 'https://ror.org/01edwz996 Brown County Public Health Department'),
(11215, 'https://ror.org/01efz0w18', 'en', 1, 'https://ror.org/01efz0w18 Greater Kansas City Spinal Cord Injury Association'),
(11216, 'https://ror.org/01eg6rs81', 'en', 1, 'https://ror.org/01eg6rs81 Aspen University'),
(11217, 'https://ror.org/01egf3y42', 'no_lang_code', 1, 'https://ror.org/01egf3y42 Technikon (Austria)'),
(11218, 'https://ror.org/01ehv8p24', 'no_lang_code', 1, 'https://ror.org/01ehv8p24 Optel (Poland)'),
(11219, 'https://ror.org/01ej02438', 'en', 1, 'https://ror.org/01ej02438 Florida Technical College'),
(11220, 'https://ror.org/01ej5d124', 'pt', 1, 'https://ror.org/01ej5d124 Grupo Realizar'),
(11221, 'https://ror.org/01ejfgc23', 'en', 1, 'https://ror.org/01ejfgc23 Ministry of Higher Education and Scientific Research MinistĆØre de l''Enseignement supĆ©rieur et de la Recherche scientifique وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(11222, 'https://ror.org/01en79h04', 'en', 1, 'https://ror.org/01en79h04 Sam Schmidt Paralysis Foundation'),
(11223, 'https://ror.org/01ert7s69', 'en', 1, 'https://ror.org/01ert7s69 Orpheus Chamber Orchestra'),
(11224, 'https://ror.org/01exe5p59', 'en', 1, 'https://ror.org/01exe5p59 Eastern Oregon Center for Independent Living'),
(11225, 'https://ror.org/01exzfh46', 'en', 1, 'https://ror.org/01exzfh46 Can Do Multiple Sclerosis'),
(11226, 'https://ror.org/01ey27e46', 'no_lang_code', 1, 'https://ror.org/01ey27e46 Biopac (United Kingdom)'),
(11227, 'https://ror.org/01eycqy43', 'en', 1, 'https://ror.org/01eycqy43 Northwest Hospital'),
(11228, 'https://ror.org/01eywxa39', 'en', 1, 'https://ror.org/01eywxa39 Lexington Medical Center'),
(11229, 'https://ror.org/01ezk0q28', 'no_lang_code', 1, 'https://ror.org/01ezk0q28 Vitrociset (Italy)'),
(11230, 'https://ror.org/01ezsr216', 'no_lang_code', 1, 'https://ror.org/01ezsr216 Monocrom (Spain)'),
(11231, 'https://ror.org/01f0ynj82', 'en', 1, 'https://ror.org/01f0ynj82 Erie Neighborhood House'),
(11232, 'https://ror.org/01f2jad04', 'no_lang_code', 1, 'https://ror.org/01f2jad04 Saarstahl (Germany)'),
(11233, 'https://ror.org/01f6f4a30', 'no_lang_code', 1, 'https://ror.org/01f6f4a30 Capital Meeting Planning'),
(11234, 'https://ror.org/01f7q1k19', 'no_lang_code', 1, 'https://ror.org/01f7q1k19 DKI Plast (Denmark)'),
(11235, 'https://ror.org/01f9mc681', 'en', 1, 'https://ror.org/01f9mc681 Vienna Science and Technology Fund Wiener Wissenschafts Forschungs und Technologiefonds'),
(11236, 'https://ror.org/01fafrd63', 'no_lang_code', 1, 'https://ror.org/01fafrd63 Oclaro (United Kingdom)'),
(11237, 'https://ror.org/01famp260', 'no_lang_code', 1, 'https://ror.org/01famp260 BOC (Austria)'),
(11238, 'https://ror.org/01farpt19', 'no_lang_code', 1, 'https://ror.org/01farpt19 Danaher (France)'),
(11239, 'https://ror.org/01faxnv78', 'no_lang_code', 1, 'https://ror.org/01faxnv78 Tractebel Engineering (Belgium)'),
(11240, 'https://ror.org/01fb4jv08', 'en', 1, 'https://ror.org/01fb4jv08 Guam Communications Network'),
(11241, 'https://ror.org/01feaq157', 'en', 1, 'https://ror.org/01feaq157 Cathedral Health Services'),
(11242, 'https://ror.org/01ffb7n67', 'no_lang_code', 1, 'https://ror.org/01ffb7n67 Outokumpu (Finland)'),
(11243, 'https://ror.org/01ffncx77', 'en', 1, 'https://ror.org/01ffncx77 United Teen Equality Center'),
(11244, 'https://ror.org/01fmdar07', 'nl', 1, 'https://ror.org/01fmdar07 Borstkankervereniging Nederland Breast Cancer Association Netherlands'),
(11245, 'https://ror.org/01fmj4m76', 'no_lang_code', 1, 'https://ror.org/01fmj4m76 Urban Tilth'),
(11246, 'https://ror.org/01fn48q65', 'en', 1, 'https://ror.org/01fn48q65 Independent Centre for Privacy Protection Unabhängige Landeszentrum für Datenschutz Schleswig-Holstein'),
(11247, 'https://ror.org/01fnp9w45', 'no_lang_code', 1, 'https://ror.org/01fnp9w45 Calzoni (Italy)'),
(11248, 'https://ror.org/01fpn5341', 'en', 1, 'https://ror.org/01fpn5341 Lady of the Sea General Hospital'),
(11249, 'https://ror.org/01fqgdy56', 'en', 1, 'https://ror.org/01fqgdy56 Baikov Institute of Metallurgy and Materials Science Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Šø Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ им. А.А. Байкова Российской акаГемии наук'),
(11250, 'https://ror.org/01fqrb109', 'en', 1, 'https://ror.org/01fqrb109 Zhejiang Energy Research Institute ęµ™ę±Ÿēœčƒ½ęŗē ”ē©¶ę‰€'),
(11251, 'https://ror.org/01fqs5523', 'en', 1, 'https://ror.org/01fqs5523 Pisgah Astronomical Research Institute'),
(11252, 'https://ror.org/01fr3an09', 'no_lang_code', 1, 'https://ror.org/01fr3an09 BMT Group (Netherlands)'),
(11253, 'https://ror.org/01fsfar50', 'no_lang_code', 1, 'https://ror.org/01fsfar50 Ascepion Pharmaceuticals (China)'),
(11254, 'https://ror.org/01ft5dd14', 'en', 1, 'https://ror.org/01ft5dd14 Netaji Subhas Chandra Bose Cancer Research Institute'),
(11255, 'https://ror.org/01fv2rv38', 'no_lang_code', 1, 'https://ror.org/01fv2rv38 Sigma Orionis (France)'),
(11256, 'https://ror.org/01fv8s797', 'no_lang_code', 1, 'https://ror.org/01fv8s797 JobTrain'),
(11257, 'https://ror.org/01fvg1z63', 'en', 1, 'https://ror.org/01fvg1z63 Joint Muscle Medical Care and Research Institute'),
(11258, 'https://ror.org/01fx4eg39', 'en', 1, 'https://ror.org/01fx4eg39 HCG Cancer Hospital ą²¹ą³†ą²²ą³ą²¤ą³ą²•ą³†ą³•ą²°ą³ ą²—ą³ą²²ą³†ą³‚ą³•ą²¬ą²²ą³ ą²Žą²‚ą²Ÿą²°ą³ą²Ŗą³ą²°ą³†ą³–ą²øą²øą³ ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(11259, 'https://ror.org/01fx7my02', 'no_lang_code', 1, 'https://ror.org/01fx7my02 Contax (United States)'),
(11260, 'https://ror.org/01fyz1w35', 'en', 1, 'https://ror.org/01fyz1w35 Eastside Technical Center'),
(11261, 'https://ror.org/01g02w781', 'en', 1, 'https://ror.org/01g02w781 Help Hope Live'),
(11262, 'https://ror.org/01g5kcp58', 'en', 1, 'https://ror.org/01g5kcp58 Rural Resources'),
(11263, 'https://ror.org/01g5vqq31', 'es', 1, 'https://ror.org/01g5vqq31 FundAyuda'),
(11264, 'https://ror.org/01g77xz63', 'no_lang_code', 1, 'https://ror.org/01g77xz63 Falcon Genomics (United States)'),
(11265, 'https://ror.org/01g7b8d30', 'en', 1, 'https://ror.org/01g7b8d30 Journey''s End Refugee Services'),
(11266, 'https://ror.org/01gcdtm70', 'fr', 1, 'https://ror.org/01gcdtm70 Institut Scientifique de Service Public'),
(11267, 'https://ror.org/01ge84v72', 'en', 1, 'https://ror.org/01ge84v72 Climate Central'),
(11268, 'https://ror.org/01ge9a191', 'no_lang_code', 1, 'https://ror.org/01ge9a191 iCo Therapeutics (Canada)'),
(11269, 'https://ror.org/01gf2gn61', 'en', 1, 'https://ror.org/01gf2gn61 VASCOG Society'),
(11270, 'https://ror.org/01gg7p150', 'en', 1, 'https://ror.org/01gg7p150 CARE Canada'),
(11271, 'https://ror.org/01ghh2407', 'no_lang_code', 1, 'https://ror.org/01ghh2407 Hubble Telemedical (United States)'),
(11272, 'https://ror.org/01gjav456', 'no_lang_code', 1, 'https://ror.org/01gjav456 Alluvium Biosciences (United States)'),
(11273, 'https://ror.org/01gjr8a79', 'no_lang_code', 1, 'https://ror.org/01gjr8a79 Eutema Technology Management'),
(11274, 'https://ror.org/01gjxc467', 'no_lang_code', 1, 'https://ror.org/01gjxc467 Cognisense Labs (United States)'),
(11275, 'https://ror.org/01gk6p474', 'no_lang_code', 1, 'https://ror.org/01gk6p474 Martel'),
(11276, 'https://ror.org/01gkt5r55', 'no_lang_code', 1, 'https://ror.org/01gkt5r55 Ropardo (Romania)'),
(11277, 'https://ror.org/01gmgva47', 'en', 1, 'https://ror.org/01gmgva47 Autoimmunity Research Foundation'),
(11278, 'https://ror.org/01gpc1r56', 'en', 1, 'https://ror.org/01gpc1r56 H.Buniatian Institute of Biochemistry'),
(11279, 'https://ror.org/01gq5z667', 'no_lang_code', 1, 'https://ror.org/01gq5z667 BYG Systems (United Kingdom)'),
(11280, 'https://ror.org/01gt37935', 'no_lang_code', 1, 'https://ror.org/01gt37935 Linnet Biopharmaceuticals (United States)'),
(11281, 'https://ror.org/01gtk7283', 'en', 1, 'https://ror.org/01gtk7283 DC Cancer Consortium'),
(11282, 'https://ror.org/01gtybw70', 'en', 1, 'https://ror.org/01gtybw70 Georgia Regents Medical Center'),
(11283, 'https://ror.org/01gw93c31', 'en', 1, 'https://ror.org/01gw93c31 Mashantucket Pequot Tribal Nation'),
(11284, 'https://ror.org/01gxjn621', 'no_lang_code', 1, 'https://ror.org/01gxjn621 Prolong Pharmaceuticals (United States)'),
(11285, 'https://ror.org/01gxqm489', 'en', 1, 'https://ror.org/01gxqm489 Community Involved in Sustaining Agriculture'),
(11286, 'https://ror.org/01gxrtw55', 'en', 1, 'https://ror.org/01gxrtw55 E.O. Paton Electric Welding Institute Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠµŠ»ŠµŠŗŃ‚Ń€Š¾Š·Š²Š°Ń€ŃŽŠ²Š°Š½Š½Ń ім.Š„.Šž.ŠŸŠ°Ń‚Š¾Š½Š°'),
(11287, 'https://ror.org/01gxyxc07', 'no_lang_code', 1, 'https://ror.org/01gxyxc07 Hoerbiger (Sweden)'),
(11288, 'https://ror.org/01gy3es16', 'no_lang_code', 1, 'https://ror.org/01gy3es16 Asher Consulting (United States)'),
(11289, 'https://ror.org/01gy41z17', 'no_lang_code', 1, 'https://ror.org/01gy41z17 Compliment Corporation (United States)'),
(11290, 'https://ror.org/01gykcx29', 'en', 1, 'https://ror.org/01gykcx29 Minnesota Association of Deaf Citizens'),
(11291, 'https://ror.org/01gykgk63', 'no_lang_code', 1, 'https://ror.org/01gykgk63 Rio Tinto (France)'),
(11292, 'https://ror.org/01gyrte54', 'en', 1, 'https://ror.org/01gyrte54 Jobs for the Future'),
(11293, 'https://ror.org/01gyw2394', 'no_lang_code', 1, 'https://ror.org/01gyw2394 Gestione Sistemi per l’Informatica (Italy)'),
(11294, 'https://ror.org/01h2bfe37', 'en', 1, 'https://ror.org/01h2bfe37 Chocowinity Primary School'),
(11295, 'https://ror.org/01h4rpv44', 'no_lang_code', 1, 'https://ror.org/01h4rpv44 Ericsson (Netherlands)'),
(11296, 'https://ror.org/01h5zkn46', 'no_lang_code', 1, 'https://ror.org/01h5zkn46 Teledyne Technologies (Denmark)'),
(11297, 'https://ror.org/01h8my706', 'no_lang_code', 1, 'https://ror.org/01h8my706 Ascometal (France)'),
(11298, 'https://ror.org/01h8mzz32', 'en', 1, 'https://ror.org/01h8mzz32 Institute of Metals and Technology InŔtitut za Kovinske Materiale in Tehnologije'),
(11299, 'https://ror.org/01hahmf81', 'en', 1, 'https://ror.org/01hahmf81 Clear Creek Independent School District'),
(11300, 'https://ror.org/01hb96w20', 'en', 1, 'https://ror.org/01hb96w20 TuBerculosis Vaccine Initiative'),
(11301, 'https://ror.org/01hcxsy48', 'no_lang_code', 1, 'https://ror.org/01hcxsy48 Sony (Germany)'),
(11302, 'https://ror.org/01hec2e25', 'no_lang_code', 1, 'https://ror.org/01hec2e25 Westscape Wholesale Nursery (United States)'),
(11303, 'https://ror.org/01herdm14', 'en', 1, 'https://ror.org/01herdm14 Marian University - Wisconsin'),
(11304, 'https://ror.org/01hfgte37', 'en', 1, 'https://ror.org/01hfgte37 Eastern Cooperative Oncology Group'),
(11305, 'https://ror.org/01hfq7m30', 'en', 1, 'https://ror.org/01hfq7m30 Capital District Center for Independence'),
(11306, 'https://ror.org/01hk1xf64', 'en', 1, 'https://ror.org/01hk1xf64 Central Connecticut Regional Planning Agency'),
(11307, 'https://ror.org/01hng0h35', 'no_lang_code', 1, 'https://ror.org/01hng0h35 Teletel (Greece)'),
(11308, 'https://ror.org/01hny1h96', 'no_lang_code', 1, 'https://ror.org/01hny1h96 Efkon (Austria)'),
(11309, 'https://ror.org/01hpbhh43', 'es', 1, 'https://ror.org/01hpbhh43 Fundación de Estudios de Economía Aplicada'),
(11310, 'https://ror.org/01hsm6g97', 'en', 1, 'https://ror.org/01hsm6g97 CARE International in Vietnam'),
(11311, 'https://ror.org/01htf3d94', 'no_lang_code', 1, 'https://ror.org/01htf3d94 SarTec (United States)'),
(11312, 'https://ror.org/01hv1yg09', 'en', 1, 'https://ror.org/01hv1yg09 Albany Research Institute'),
(11313, 'https://ror.org/01hv5h172', 'en', 1, 'https://ror.org/01hv5h172 Pfeiffer Medical Center'),
(11314, 'https://ror.org/01hvt7y65', 'no_lang_code', 1, 'https://ror.org/01hvt7y65 Texinov (France)'),
(11315, 'https://ror.org/01hz5c771', 'en', 1, 'https://ror.org/01hz5c771 Institute of Geography Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географии Российской АкаГемии наук'),
(11316, 'https://ror.org/01j043w21', 'en', 1, 'https://ror.org/01j043w21 Mitochondria Research and Medicine Society'),
(11317, 'https://ror.org/01j145b31', 'no_lang_code', 1, 'https://ror.org/01j145b31 Mesurex (Spain)'),
(11318, 'https://ror.org/01j39zs89', 'no_lang_code', 1, 'https://ror.org/01j39zs89 GVS (Italy)'),
(11319, 'https://ror.org/01j3vsz59', 'en', 1, 'https://ror.org/01j3vsz59 Atlanta Diabetes Associates'),
(11320, 'https://ror.org/01j4j8g47', 'en', 1, 'https://ror.org/01j4j8g47 Dalton State College'),
(11321, 'https://ror.org/01j5c7b20', 'en', 1, 'https://ror.org/01j5c7b20 Potomac Massage Training Institute'),
(11322, 'https://ror.org/01j5y9c13', 'en', 1, 'https://ror.org/01j5y9c13 Dwight School'),
(11323, 'https://ror.org/01j5zzr31', 'en', 1, 'https://ror.org/01j5zzr31 Open Group'),
(11324, 'https://ror.org/01j8e0w91', 'no_lang_code', 1, 'https://ror.org/01j8e0w91 SuGanit Systems (United States)'),
(11325, 'https://ror.org/01j8hda60', 'no_lang_code', 1, 'https://ror.org/01j8hda60 Native American Cancer Initiatives (United States)'),
(11326, 'https://ror.org/01j9a7z15', 'no_lang_code', 1, 'https://ror.org/01j9a7z15 Nutrient Recovery and Upcycling (United States)'),
(11327, 'https://ror.org/01j9p4g53', 'en', 1, 'https://ror.org/01j9p4g53 Children''s Home and Aid'),
(11328, 'https://ror.org/01jaw0925', 'en', 1, 'https://ror.org/01jaw0925 Mount Sinai Queens'),
(11329, 'https://ror.org/01je1cm35', 'en', 1, 'https://ror.org/01je1cm35 Sofia Energy Centre'),
(11330, 'https://ror.org/01jejyf30', 'no_lang_code', 1, 'https://ror.org/01jejyf30 Exquadrum (United States)'),
(11331, 'https://ror.org/01jemb993', 'en', 1, 'https://ror.org/01jemb993 Semenov Institute of Chemical Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической физики имени Š. Š. Демёнова'),
(11332, 'https://ror.org/01jgbmq74', 'no_lang_code', 1, 'https://ror.org/01jgbmq74 AskBio (United States)'),
(11333, 'https://ror.org/01jj7aa83', 'no_lang_code', 1, 'https://ror.org/01jj7aa83 Environmental Protection Engineering (Greece)'),
(11334, 'https://ror.org/01jmfgs20', 'en', 1, 'https://ror.org/01jmfgs20 Baltimore Healthy Start'),
(11335, 'https://ror.org/01jnqsa93', 'en', 1, 'https://ror.org/01jnqsa93 CAMC Health Education and Research Institute'),
(11336, 'https://ror.org/01jpp1g73', 'no_lang_code', 1, 'https://ror.org/01jpp1g73 Sulzer (Switzerland)'),
(11337, 'https://ror.org/01jpwx826', 'no_lang_code', 1, 'https://ror.org/01jpwx826 Greencore (Ireland)'),
(11338, 'https://ror.org/01jq9eh12', 'en', 1, 'https://ror.org/01jq9eh12 Magnesium Research Institute'),
(11339, 'https://ror.org/01jqc8e14', 'en', 1, 'https://ror.org/01jqc8e14 Kalpana Chawla Government Medical College and Hospital ą¤•ą¤²ą„ą¤Ŗą¤Øą¤¾ चावला ą¤—ą¤µą¤°ą„ą¤Øą¤®ą„‡ą¤‚ą¤Ÿ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ व ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(11340, 'https://ror.org/01jsfqj27', 'en', 1, 'https://ror.org/01jsfqj27 IPM Institute of North America'),
(11341, 'https://ror.org/01jt0gz40', 'no_lang_code', 1, 'https://ror.org/01jt0gz40 UmbraGroup (Italy)'),
(11342, 'https://ror.org/01jtjy335', 'en', 1, 'https://ror.org/01jtjy335 Equal Hope'),
(11343, 'https://ror.org/01jv1zx50', 'it', 1, 'https://ror.org/01jv1zx50 Istituto Superiore delle Comunicazioni e delle Tecnologie Dell''Informazione'),
(11344, 'https://ror.org/01jw1z094', 'en', 1, 'https://ror.org/01jw1z094 Asheboro City Schools'),
(11345, 'https://ror.org/01jwz9x72', 'en', 1, 'https://ror.org/01jwz9x72 North Shore Child & Family Guidance Center'),
(11346, 'https://ror.org/01jxhxv92', 'no_lang_code', 1, 'https://ror.org/01jxhxv92 CSL (United States)'),
(11347, 'https://ror.org/01jy49h31', 'no_lang_code', 1, 'https://ror.org/01jy49h31 Autoliv (Sweden)'),
(11348, 'https://ror.org/01jyh4590', 'no_lang_code', 1, 'https://ror.org/01jyh4590 Solvay (France)'),
(11349, 'https://ror.org/01k0v6g02', 'no_lang_code', 1, 'https://ror.org/01k0v6g02 SURFsara (Netherlands) Stichting Academisch Rekencentrum Amsterdam'),
(11350, 'https://ror.org/01k0w6g34', 'no_lang_code', 1, 'https://ror.org/01k0w6g34 NeuroHealing Pharmaceuticals (United States)'),
(11351, 'https://ror.org/01k164012', 'en', 1, 'https://ror.org/01k164012 Canadian Centre on Disability Studies'),
(11352, 'https://ror.org/01k1b2g25', 'en', 1, 'https://ror.org/01k1b2g25 Alberta Cancer Foundation'),
(11353, 'https://ror.org/01k2xa905', 'en', 1, 'https://ror.org/01k2xa905 Integrate Autism Employment Advisors'),
(11354, 'https://ror.org/01k379e18', 'no_lang_code', 1, 'https://ror.org/01k379e18 Nutrasorb (United States)'),
(11355, 'https://ror.org/01k4vzb64', 'no_lang_code', 1, 'https://ror.org/01k4vzb64 Endo Pharmaceuticals (United States)'),
(11356, 'https://ror.org/01k5bte77', 'en', 1, 'https://ror.org/01k5bte77 Marshall Medical Center'),
(11357, 'https://ror.org/01k6bda33', 'no_lang_code', 1, 'https://ror.org/01k6bda33 Colibri (Netherlands)'),
(11358, 'https://ror.org/01k7b2e64', 'en', 1, 'https://ror.org/01k7b2e64 AdMeTech Foundation'),
(11359, 'https://ror.org/01k9hhd91', 'no_lang_code', 1, 'https://ror.org/01k9hhd91 TÜV SÜD (Germany)'),
(11360, 'https://ror.org/01kc31v38', 'no_lang_code', 1, 'https://ror.org/01kc31v38 Exact Sciences (United States)'),
(11361, 'https://ror.org/01kdb6822', 'en', 1, 'https://ror.org/01kdb6822 Corvallis Environmental Center'),
(11362, 'https://ror.org/01kg1j482', 'no_lang_code', 1, 'https://ror.org/01kg1j482 Geotek (United Kingdom)'),
(11363, 'https://ror.org/01kj2rq74', 'no_lang_code', 1, 'https://ror.org/01kj2rq74 Internal Systems Limited (United Kingdom)'),
(11364, 'https://ror.org/01kjj9155', 'en', 1, 'https://ror.org/01kjj9155 Baton Rouge General Foundation'),
(11365, 'https://ror.org/01kjqa704', 'no_lang_code', 1, 'https://ror.org/01kjqa704 B''nai Jeshurun'),
(11366, 'https://ror.org/01kkw3w51', 'no_lang_code', 1, 'https://ror.org/01kkw3w51 Grupo Inmark'),
(11367, 'https://ror.org/01kmgjw27', 'en', 1, 'https://ror.org/01kmgjw27 Children''s Home Association of Illinois'),
(11368, 'https://ror.org/01knh8k33', 'no_lang_code', 1, 'https://ror.org/01knh8k33 Madatech'),
(11369, 'https://ror.org/01knqhy07', 'en', 1, 'https://ror.org/01knqhy07 New Pisgah Community Service Organization'),
(11370, 'https://ror.org/01knvr232', 'en', 1, 'https://ror.org/01knvr232 Leonia United'),
(11371, 'https://ror.org/01kpm1136', 'en', 1, 'https://ror.org/01kpm1136 Research Institute for Endocrine Sciences Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… ŲŗŲÆŲÆ ŲÆŲ±ŁˆŁ† ریز و Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŲ³Ł…'),
(11372, 'https://ror.org/01kstvd89', 'no_lang_code', 1, 'https://ror.org/01kstvd89 Bio-Nucleonics (United States)'),
(11373, 'https://ror.org/01ktsbe92', 'no_lang_code', 1, 'https://ror.org/01ktsbe92 HJ Science and Technology (United States)'),
(11374, 'https://ror.org/01ky55e50', 'no_lang_code', 1, 'https://ror.org/01ky55e50 LagardĆØre (France)'),
(11375, 'https://ror.org/01kydft86', 'no_lang_code', 1, 'https://ror.org/01kydft86 Teamwork Technology (Netherlands)'),
(11376, 'https://ror.org/01kys6733', 'en', 1, 'https://ror.org/01kys6733 Danish Emergency Management Agency'),
(11377, 'https://ror.org/01kze5v62', 'no_lang_code', 1, 'https://ror.org/01kze5v62 WWOZ'),
(11378, 'https://ror.org/01kzrk477', 'no_lang_code', 1, 'https://ror.org/01kzrk477 KPN (Netherlands)'),
(11379, 'https://ror.org/01m03eg97', 'en', 1, 'https://ror.org/01m03eg97 Double ARC'),
(11380, 'https://ror.org/01m1s8509', 'no_lang_code', 1, 'https://ror.org/01m1s8509 Chaperone Therapeutics (United States)'),
(11381, 'https://ror.org/01m3xga44', 'en', 1, 'https://ror.org/01m3xga44 Evergreen Community Charter School'),
(11382, 'https://ror.org/01m417e54', 'en', 1, 'https://ror.org/01m417e54 Indiana Cancer Consortium'),
(11383, 'https://ror.org/01m693m08', 'no_lang_code', 1, 'https://ror.org/01m693m08 European Transonic Windtunnel (Germany)'),
(11384, 'https://ror.org/01m7qnr31', 'es', 1, 'https://ror.org/01m7qnr31 Ente Vasco de la EnergĆ­a'),
(11385, 'https://ror.org/01m9n8h83', 'en', 1, 'https://ror.org/01m9n8h83 Bayhealth Foundation'),
(11386, 'https://ror.org/01mbq8h61', 'en', 1, 'https://ror.org/01mbq8h61 Palm Beach Children''s Hospital'),
(11387, 'https://ror.org/01mcasz62', 'en', 1, 'https://ror.org/01mcasz62 International Society for Biosafety Research'),
(11388, 'https://ror.org/01mcqw380', 'en', 1, 'https://ror.org/01mcqw380 Institute of Hydroengineering Instytut Budownictwa Wodnego PAN'),
(11389, 'https://ror.org/01mf77203', 'en', 1, 'https://ror.org/01mf77203 The Blue Hill Meteorological Observatory'),
(11390, 'https://ror.org/01mff3b34', 'no_lang_code', 1, 'https://ror.org/01mff3b34 Sigmoid Pharma (Ireland)'),
(11391, 'https://ror.org/01mfmr054', 'en', 1, 'https://ror.org/01mfmr054 Institute for Macromolecular Studies Istituto per lo Studio delle Macromolecole'),
(11392, 'https://ror.org/01mgpv175', 'no_lang_code', 1, 'https://ror.org/01mgpv175 Novaphos (United States)'),
(11393, 'https://ror.org/01mjpgb45', 'en', 1, 'https://ror.org/01mjpgb45 Native American Advocacy Program'),
(11394, 'https://ror.org/01mk2vf40', 'no_lang_code', 1, 'https://ror.org/01mk2vf40 AgSquared (United States)'),
(11395, 'https://ror.org/01mkbdh17', 'en', 1, 'https://ror.org/01mkbdh17 Columbia County Commission on Children and Families'),
(11396, 'https://ror.org/01mpzhk41', 'no_lang_code', 1, 'https://ror.org/01mpzhk41 Subsea Technologies (United Kingdom)'),
(11397, 'https://ror.org/01mr3bk23', 'no_lang_code', 1, 'https://ror.org/01mr3bk23 Transportes Inovação e Sistemas (Portugal)'),
(11398, 'https://ror.org/01mrv7b35', 'en', 1, 'https://ror.org/01mrv7b35 Golisano Foundation'),
(11399, 'https://ror.org/01ms40349', 'no_lang_code', 1, 'https://ror.org/01ms40349 Knowledge Centre for Agriculture'),
(11400, 'https://ror.org/01mssdk07', 'no_lang_code', 1, 'https://ror.org/01mssdk07 Enterprise Science and Computing (United States)'),
(11401, 'https://ror.org/01mv6bt66', 'no_lang_code', 1, 'https://ror.org/01mv6bt66 Chr. Hansen (Denmark)'),
(11402, 'https://ror.org/01mvsby80', 'pt', 1, 'https://ror.org/01mvsby80 Agencia de Inovacao, Agência Nacional de Inovação'),
(11403, 'https://ror.org/01myse432', 'en', 1, 'https://ror.org/01myse432 Cultivating Community'),
(11404, 'https://ror.org/01myz2x40', 'en', 1, 'https://ror.org/01myz2x40 Akbaraly Foundation'),
(11405, 'https://ror.org/01mzc3z63', 'en', 1, 'https://ror.org/01mzc3z63 Research Institute for Knowledge Systems'),
(11406, 'https://ror.org/01n0jwg88', 'no_lang_code', 1, 'https://ror.org/01n0jwg88 Synapse (Spain)'),
(11407, 'https://ror.org/01n1rg855', 'en', 1, 'https://ror.org/01n1rg855 Statistics Finland Statistikcentralen Tilastokeskus'),
(11408, 'https://ror.org/01n2sky78', 'en', 1, 'https://ror.org/01n2sky78 Ovarian Cancer National Alliance'),
(11409, 'https://ror.org/01n42m123', 'no_lang_code', 1, 'https://ror.org/01n42m123 Forschungsgesellschaft Kraftfahrwesen Aachen (Germany)'),
(11410, 'https://ror.org/01n47re51', 'no_lang_code', 1, 'https://ror.org/01n47re51 Paragon (Greece)'),
(11411, 'https://ror.org/01n71ry70', 'en', 1, 'https://ror.org/01n71ry70 CenterState Chamber of Commerce'),
(11412, 'https://ror.org/01n7gem85', 'de', 1, 'https://ror.org/01n7gem85 Deutsche Nationalbibliothek German National Library'),
(11413, 'https://ror.org/01n8cxz90', 'no_lang_code', 1, 'https://ror.org/01n8cxz90 Holland Institute of Traffic Technology'),
(11414, 'https://ror.org/01naa4k48', 'no_lang_code', 1, 'https://ror.org/01naa4k48 Dunreidy Engneering (Ireland)'),
(11415, 'https://ror.org/01nath242', 'en', 1, 'https://ror.org/01nath242 Joyce Theater'),
(11416, 'https://ror.org/01nb7ex83', 'no_lang_code', 1, 'https://ror.org/01nb7ex83 Longevity Biotech (United States)'),
(11417, 'https://ror.org/01nbx5962', 'en', 1, 'https://ror.org/01nbx5962 Blue Ridge Independent Living Center'),
(11418, 'https://ror.org/01ncnk871', 'no_lang_code', 1, 'https://ror.org/01ncnk871 LNL Technology (Turkey)'),
(11419, 'https://ror.org/01nf48187', 'en', 1, 'https://ror.org/01nf48187 Pike County Health Department'),
(11420, 'https://ror.org/01nhjmy83', 'no_lang_code', 1, 'https://ror.org/01nhjmy83 Modern e Technologies (Lithuania)'),
(11421, 'https://ror.org/01njr2r38', 'en', 1, 'https://ror.org/01njr2r38 Hurley Foundation'),
(11422, 'https://ror.org/01nksd110', 'en', 1, 'https://ror.org/01nksd110 Euclid Network'),
(11423, 'https://ror.org/01nm6em79', 'no_lang_code', 1, 'https://ror.org/01nm6em79 Philogen (Italy)'),
(11424, 'https://ror.org/01nn5wh27', 'no_lang_code', 1, 'https://ror.org/01nn5wh27 Just Food (United States)'),
(11425, 'https://ror.org/01npchg06', 'en', 1, 'https://ror.org/01npchg06 California Consortium of Addiction Programs and Professionals'),
(11426, 'https://ror.org/01nq9yz29', 'no_lang_code', 1, 'https://ror.org/01nq9yz29 Inasco (Greece)'),
(11427, 'https://ror.org/01nrn0142', 'en', 1, 'https://ror.org/01nrn0142 Bedford Research Foundation'),
(11428, 'https://ror.org/01nwrs673', 'en', 1, 'https://ror.org/01nwrs673 Reset Therapeutics'),
(11429, 'https://ror.org/01nx9mw61', 'no_lang_code', 1, 'https://ror.org/01nx9mw61 Space Hellas (Greece)'),
(11430, 'https://ror.org/01nyatq71', 'en', 1, 'https://ror.org/01nyatq71 Institute of Molecular Biology and Pathology Istituto di Biologia e Patologia Molecolare'),
(11431, 'https://ror.org/01nz9qm02', 'en', 1, 'https://ror.org/01nz9qm02 Genesis Foundation'),
(11432, 'https://ror.org/01p2hdb49', 'en', 1, 'https://ror.org/01p2hdb49 Aquarium of the Pacific'),
(11433, 'https://ror.org/01p3qv245', 'en', 1, 'https://ror.org/01p3qv245 HealthRight International'),
(11434, 'https://ror.org/01p6hjg61', 'es', 1, 'https://ror.org/01p6hjg61 Fundación Ciencia and Vida'),
(11435, 'https://ror.org/01p7r2f35', 'en', 1, 'https://ror.org/01p7r2f35 Athletes Joined Against Spondylitis'),
(11436, 'https://ror.org/01p7z6793', 'en', 1, 'https://ror.org/01p7z6793 Children''s Cancer and Blood Foundation'),
(11437, 'https://ror.org/01p89z653', 'no_lang_code', 1, 'https://ror.org/01p89z653 IMA Materialforschung und Anwendungstechnik'),
(11438, 'https://ror.org/01p8br322', 'no_lang_code', 1, 'https://ror.org/01p8br322 Biomarker Strategies (United States)'),
(11439, 'https://ror.org/01p8dnv11', 'no_lang_code', 1, 'https://ror.org/01p8dnv11 Israel Electric (Israel) חברת החשמל ×œ×™×©×Ø××œ'),
(11440, 'https://ror.org/01p8nr933', 'no_lang_code', 1, 'https://ror.org/01p8nr933 Clean Plus (United States)'),
(11441, 'https://ror.org/01p9zxq79', 'en', 1, 'https://ror.org/01p9zxq79 Walla Walla Community College'),
(11442, 'https://ror.org/01pabpn74', 'en', 1, 'https://ror.org/01pabpn74 Brickhouse Equestrian Center'),
(11443, 'https://ror.org/01pbevv17', 'en', 1, 'https://ror.org/01pbevv17 Attogen Biomedical Research'),
(11444, 'https://ror.org/01pcn0155', 'en', 1, 'https://ror.org/01pcn0155 Open Door Family Medical Center'),
(11445, 'https://ror.org/01pge6c20', 'no_lang_code', 1, 'https://ror.org/01pge6c20 Vermicon (Germany)'),
(11446, 'https://ror.org/01phpae37', 'en', 1, 'https://ror.org/01phpae37 Multidisciplinary Association for Psychedelic Studies'),
(11447, 'https://ror.org/01phq2394', 'no_lang_code', 1, 'https://ror.org/01phq2394 JustGive'),
(11448, 'https://ror.org/01pjwgv56', 'no_lang_code', 1, 'https://ror.org/01pjwgv56 Smart Material (Germany)'),
(11449, 'https://ror.org/01pnrv279', 'hu', 1, 'https://ror.org/01pnrv279 Orszagos Kornyezetegeszsegugyi Intezet'),
(11450, 'https://ror.org/01pq15308', 'de', 1, 'https://ror.org/01pq15308 Biochemisches Institut für Umweltcarcinogene'),
(11451, 'https://ror.org/01ptc4g94', 'en', 1, 'https://ror.org/01ptc4g94 BlazeSports America'),
(11452, 'https://ror.org/01pvdcq70', 'no_lang_code', 1, 'https://ror.org/01pvdcq70 Precision BioSciences (United States)'),
(11453, 'https://ror.org/01pvjb298', 'fr', 1, 'https://ror.org/01pvjb298 Centre Interprofessionnel de Techniques d''Ɖtudes de la Pollution AtmosphĆ©rique'),
(11454, 'https://ror.org/01pww5j30', 'no_lang_code', 1, 'https://ror.org/01pww5j30 Tyrolit (Austria)'),
(11455, 'https://ror.org/01pxre019', 'en', 1, 'https://ror.org/01pxre019 Epilepsy Foundation'),
(11456, 'https://ror.org/01pz08h78', 'no_lang_code', 1, 'https://ror.org/01pz08h78 Innovation Pathways'),
(11457, 'https://ror.org/01pz6j040', 'no_lang_code', 1, 'https://ror.org/01pz6j040 Wood Group Kenny'),
(11458, 'https://ror.org/01q1eja83', 'en', 1, 'https://ror.org/01q1eja83 Treasure Valley Community College'),
(11459, 'https://ror.org/01q1paq98', 'no_lang_code', 1, 'https://ror.org/01q1paq98 Avanti (United Kingdom)'),
(11460, 'https://ror.org/01q24qh92', 'en', 1, 'https://ror.org/01q24qh92 Ben Archer Health Centers'),
(11461, 'https://ror.org/01q2q9h07', 'no_lang_code', 1, 'https://ror.org/01q2q9h07 International Mining Consultants'),
(11462, 'https://ror.org/01q3fhc22', 'en', 1, 'https://ror.org/01q3fhc22 Delaware Department of Education'),
(11463, 'https://ror.org/01q3p8f34', 'no_lang_code', 1, 'https://ror.org/01q3p8f34 Inflammatory Response Research (United States)'),
(11464, 'https://ror.org/01q3zpq21', 'en', 1, 'https://ror.org/01q3zpq21 Ibis Reproductive Health'),
(11465, 'https://ror.org/01q61vc37', 'no_lang_code', 1, 'https://ror.org/01q61vc37 Devan (Portugal)'),
(11466, 'https://ror.org/01q8k8p90', 'en', 1, 'https://ror.org/01q8k8p90 Cyprus Institute'),
(11467, 'https://ror.org/01q97y624', 'en', 1, 'https://ror.org/01q97y624 Sea Europe'),
(11468, 'https://ror.org/01q9b3c10', 'no_lang_code', 1, 'https://ror.org/01q9b3c10 COMHAR'),
(11469, 'https://ror.org/01q9g5r39', 'fr', 1, 'https://ror.org/01q9g5r39 RƩseau Africain pour le DƩveloppement IntƩgrƩ'),
(11470, 'https://ror.org/01qa6hr76', 'en', 1, 'https://ror.org/01qa6hr76 Institute for Clinical Social Work'),
(11471, 'https://ror.org/01qavh626', 'en', 1, 'https://ror.org/01qavh626 Diocese of Lansing'),
(11472, 'https://ror.org/01qben656', 'en', 1, 'https://ror.org/01qben656 Global Opportunities Unlimited'),
(11473, 'https://ror.org/01qc5zk84', 'no_lang_code', 1, 'https://ror.org/01qc5zk84 Chulabhorn Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøˆąøøąø¬ąø²ąø ąø£ąø“ą¹Œ'),
(11474, 'https://ror.org/01qckt681', 'en', 1, 'https://ror.org/01qckt681 Rural Community Development Resources'),
(11475, 'https://ror.org/01qd5ms12', 'no_lang_code', 1, 'https://ror.org/01qd5ms12 Titan Cement (Greece) ĪŒĪ¼Ī¹Ī»ĪæĻ‚ Ī¤ĻƒĪ¹Ī¼Ī­Ī½Ļ„Ļ‰Ī½ Τιτάν'),
(11476, 'https://ror.org/01qe7ag50', 'no_lang_code', 1, 'https://ror.org/01qe7ag50 Euroimmun Medizinische Labordiagnostika (Germany)'),
(11477, 'https://ror.org/01qeqe711', 'pt', 1, 'https://ror.org/01qeqe711 Fundação do Câncer'),
(11478, 'https://ror.org/01qf41w60', 'en', 1, 'https://ror.org/01qf41w60 European Small Hydropower Association'),
(11479, 'https://ror.org/01qh9gp70', 'en', 1, 'https://ror.org/01qh9gp70 Partnership for Health Analytic Research'),
(11480, 'https://ror.org/01qj1sq68', 'en', 1, 'https://ror.org/01qj1sq68 Center for Diagnosis and Research on Alzheimer''s Disease Centre Diagnostique & Recherche en Alzheimer'),
(11481, 'https://ror.org/01qk1bx90', 'no_lang_code', 1, 'https://ror.org/01qk1bx90 Environics Oy (Finland)'),
(11482, 'https://ror.org/01qkn1y38', 'no_lang_code', 1, 'https://ror.org/01qkn1y38 Deutsche Telekom (Spain)'),
(11483, 'https://ror.org/01qm6x409', 'no_lang_code', 1, 'https://ror.org/01qm6x409 Esbensen Consulting Engineers (Denmark)'),
(11484, 'https://ror.org/01qn2q426', 'no_lang_code', 1, 'https://ror.org/01qn2q426 FirstString Research (United States)'),
(11485, 'https://ror.org/01qn49q19', 'no_lang_code', 1, 'https://ror.org/01qn49q19 Magillem Design Services'),
(11486, 'https://ror.org/01qngz494', 'no_lang_code', 1, 'https://ror.org/01qngz494 Digital Development Communications International (United States)'),
(11487, 'https://ror.org/01qp3cj59', 'en', 1, 'https://ror.org/01qp3cj59 International Network for Cancer Treatment and Research'),
(11488, 'https://ror.org/01qqbs339', 'en', 1, 'https://ror.org/01qqbs339 Chicago Child Care Society'),
(11489, 'https://ror.org/01qr8rz09', 'en', 1, 'https://ror.org/01qr8rz09 Lori Arquilla Andersen Foundation'),
(11490, 'https://ror.org/01qtasp15', 'en', 1, 'https://ror.org/01qtasp15 European Southern Observatory Europäische Südsternwarte'),
(11491, 'https://ror.org/01qv87150', 'en', 1, 'https://ror.org/01qv87150 European School of Haematology'),
(11492, 'https://ror.org/01qxbf653', 'no_lang_code', 1, 'https://ror.org/01qxbf653 Insects Limited (United States)'),
(11493, 'https://ror.org/01qxm2j98', 'en', 1, 'https://ror.org/01qxm2j98 Institute of Agrophysics, Polish Academy of Sciences'),
(11494, 'https://ror.org/01qyx9v32', 'no_lang_code', 1, 'https://ror.org/01qyx9v32 Prairie Gold (United States)'),
(11495, 'https://ror.org/01qz23849', 'en', 1, 'https://ror.org/01qz23849 Center for Wellness and Achievement in Education'),
(11496, 'https://ror.org/01r0ge295', 'en', 1, 'https://ror.org/01r0ge295 John F. Kennedy Memorial Foundation'),
(11497, 'https://ror.org/01r23yy10', 'sk', 1, 'https://ror.org/01r23yy10 Soil Science and Conservation Research Institute Výskumný Ústav PÓdoznalectva a Ochrany PÓdy'),
(11498, 'https://ror.org/01r2apt44', 'no_lang_code', 1, 'https://ror.org/01r2apt44 Grace (Germany)'),
(11499, 'https://ror.org/01r2j1v82', 'en', 1, 'https://ror.org/01r2j1v82 Ministry of State MinistĆØre d''Ɖtat'),
(11500, 'https://ror.org/01r2tv445', 'no_lang_code', 1, 'https://ror.org/01r2tv445 Annam Biosciences (United States)'),
(11501, 'https://ror.org/01r3hzs43', 'es', 1, 'https://ror.org/01r3hzs43 Instituto de la Memoria Depresión y Enfermedades de Riesgo'),
(11502, 'https://ror.org/01r4g9k61', 'no_lang_code', 1, 'https://ror.org/01r4g9k61 Hewlett-Packard (Italy)'),
(11503, 'https://ror.org/01r5d6p07', 'no_lang_code', 1, 'https://ror.org/01r5d6p07 Nederlandse Gasunie (Netherlands)'),
(11504, 'https://ror.org/01rcprz82', 'no_lang_code', 1, 'https://ror.org/01rcprz82 Tea Spot (United States)'),
(11505, 'https://ror.org/01rd6m198', 'en', 1, 'https://ror.org/01rd6m198 BioFact Environmental Health Research Center'),
(11506, 'https://ror.org/01resg468', 'no_lang_code', 1, 'https://ror.org/01resg468 Nokia (Netherlands)'),
(11507, 'https://ror.org/01rf9hd69', 'en', 1, 'https://ror.org/01rf9hd69 Healthy African American Families II'),
(11508, 'https://ror.org/01rfsrc09', 'no_lang_code', 1, 'https://ror.org/01rfsrc09 Evektor (Czechia)'),
(11509, 'https://ror.org/01rgnfy66', 'fi', 1, 'https://ror.org/01rgnfy66 Heureka'),
(11510, 'https://ror.org/01rje5224', 'en', 1, 'https://ror.org/01rje5224 Marian Regional Medical Center'),
(11511, 'https://ror.org/01rkw5k87', 'no_lang_code', 1, 'https://ror.org/01rkw5k87 Kerntechnische Hilfsdienst (Germany)'),
(11512, 'https://ror.org/01rnsc454', 'no_lang_code', 1, 'https://ror.org/01rnsc454 Sefar (Switzerland)'),
(11513, 'https://ror.org/01rnvev51', 'it', 1, 'https://ror.org/01rnvev51 Fondazione Politecnico di Milano'),
(11514, 'https://ror.org/01rp7pv55', 'no_lang_code', 1, 'https://ror.org/01rp7pv55 Security Technology Competence Centre'),
(11515, 'https://ror.org/01rprk677', 'en', 1, 'https://ror.org/01rprk677 First Descents'),
(11516, 'https://ror.org/01rqg5073', 'no_lang_code', 1, 'https://ror.org/01rqg5073 BioRealm (United States)'),
(11517, 'https://ror.org/01rt1dv70', 'no_lang_code', 1, 'https://ror.org/01rt1dv70 Lionex (Germany)'),
(11518, 'https://ror.org/01rw6jj79', 'no_lang_code', 1, 'https://ror.org/01rw6jj79 Lighting Innovation (United States)'),
(11519, 'https://ror.org/01rwphz66', 'en', 1, 'https://ror.org/01rwphz66 National Academy of Sciences of the Republic of Kazakhstan ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук ŠšŠ°Š·Š°Ń…стана ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ Ұлттық ғылым Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(11520, 'https://ror.org/01rx0vn38', 'en', 1, 'https://ror.org/01rx0vn38 Ministry of Transport Samferdselsdepartementet Samferdsledepartementet'),
(11521, 'https://ror.org/01rxpfa84', 'en', 1, 'https://ror.org/01rxpfa84 IndependenceFirst'),
(11522, 'https://ror.org/01rxwr703', 'en', 1, 'https://ror.org/01rxwr703 Cultural Heritage Agency of Netherlands Instituut Collectie Nederland'),
(11523, 'https://ror.org/01ryyex45', 'no_lang_code', 1, 'https://ror.org/01ryyex45 NeurAccel Biosciences (United States)'),
(11524, 'https://ror.org/01rz4nb07', 'en', 1, 'https://ror.org/01rz4nb07 Bureau fƩdƩral du Plan Federal Planning Bureau Het Federaal Planbureau'),
(11525, 'https://ror.org/01rzn6m24', 'en', 1, 'https://ror.org/01rzn6m24 Women''s Community Revitalization Project'),
(11526, 'https://ror.org/01s1vhe62', 'en', 1, 'https://ror.org/01s1vhe62 International Alliance of ALS/MND Associations'),
(11527, 'https://ror.org/01s383j21', 'en', 1, 'https://ror.org/01s383j21 Keiser University'),
(11528, 'https://ror.org/01s3qp186', 'es', 1, 'https://ror.org/01s3qp186 Aragon Hydrogen Foundation Fundación Hidrógeno Aragón'),
(11529, 'https://ror.org/01s4j6j10', 'no_lang_code', 1, 'https://ror.org/01s4j6j10 Process Systems Enterprise (United Kingdom)'),
(11530, 'https://ror.org/01s5g3b18', 'de', 1, 'https://ror.org/01s5g3b18 Nova Institut'),
(11531, 'https://ror.org/01s8feq26', 'no_lang_code', 1, 'https://ror.org/01s8feq26 KickinNutrition.TV (United States)'),
(11532, 'https://ror.org/01s9pe276', 'en', 1, 'https://ror.org/01s9pe276 Affinity Medical Group'),
(11533, 'https://ror.org/01sa63389', 'ro', 1, 'https://ror.org/01sa63389 Administraţia Naţională de Meteorologie'),
(11534, 'https://ror.org/01sa7d916', 'no_lang_code', 1, 'https://ror.org/01sa7d916 Altium''s (Netherlands)'),
(11535, 'https://ror.org/01sc2zj52', 'no_lang_code', 1, 'https://ror.org/01sc2zj52 Ardeje (France)'),
(11536, 'https://ror.org/01sed6k96', 'no_lang_code', 1, 'https://ror.org/01sed6k96 Euram (United Kingdom)'),
(11537, 'https://ror.org/01shjyx24', 'no_lang_code', 1, 'https://ror.org/01shjyx24 Cambridge Environmental Research Consultants (United Kingdom)'),
(11538, 'https://ror.org/01sm7ww29', 'no_lang_code', 1, 'https://ror.org/01sm7ww29 Zenon (Greece)'),
(11539, 'https://ror.org/01smpy304', 'no_lang_code', 1, 'https://ror.org/01smpy304 Connexios (India)'),
(11540, 'https://ror.org/01sr61k19', 'es', 1, 'https://ror.org/01sr61k19 Instituto CatalƔn de Tecnologƭa'),
(11541, 'https://ror.org/01srqm736', 'en', 1, 'https://ror.org/01srqm736 Nia Association'),
(11542, 'https://ror.org/01stake94', 'no_lang_code', 1, 'https://ror.org/01stake94 D2S International (Belgium)'),
(11543, 'https://ror.org/01svwxb64', 'no_lang_code', 1, 'https://ror.org/01svwxb64 Rhea (Belgium)'),
(11544, 'https://ror.org/01sydw166', 'en', 1, 'https://ror.org/01sydw166 Oklahoma Brain Tumor Foundation'),
(11545, 'https://ror.org/01syn7y20', 'no_lang_code', 1, 'https://ror.org/01syn7y20 Stratec (Belgium)'),
(11546, 'https://ror.org/01szw1r19', 'no_lang_code', 1, 'https://ror.org/01szw1r19 Pacific World Discovery (United States)'),
(11547, 'https://ror.org/01t00dc98', 'en', 1, 'https://ror.org/01t00dc98 Aging in America'),
(11548, 'https://ror.org/01t1g3y18', 'en', 1, 'https://ror.org/01t1g3y18 International Life Sciences Institute Europe'),
(11549, 'https://ror.org/01t264m74', 'it', 1, 'https://ror.org/01t264m74 Istituto Nazionale per l''Assicurazione Contro gli Infortuni sul Lavoro'),
(11550, 'https://ror.org/01t2cn246', 'en', 1, 'https://ror.org/01t2cn246 Asociatia pentru libertate si egalitate de gen Association for Liberty and Equality of Gender'),
(11551, 'https://ror.org/01t3w2017', 'no_lang_code', 1, 'https://ror.org/01t3w2017 GrassRoots Biotechnology (United States)'),
(11552, 'https://ror.org/01t6t6k62', 'no_lang_code', 1, 'https://ror.org/01t6t6k62 Quanta System (Italy)'),
(11553, 'https://ror.org/01t9de358', 'en', 1, 'https://ror.org/01t9de358 Rocky Mountain College'),
(11554, 'https://ror.org/01tbwpy88', 'en', 1, 'https://ror.org/01tbwpy88 Centre for European Security Strategies'),
(11555, 'https://ror.org/01tbz5160', 'en', 1, 'https://ror.org/01tbz5160 National Nurses Association of Kenya'),
(11556, 'https://ror.org/01tdsae39', 'no_lang_code', 1, 'https://ror.org/01tdsae39 Medtronic (Spain)'),
(11557, 'https://ror.org/01tfkms29', 'no_lang_code', 1, 'https://ror.org/01tfkms29 Alfamicro (Portugal)'),
(11558, 'https://ror.org/01thff661', 'no', 1, 'https://ror.org/01thff661 Nasjonalt Kunnskapssenter for Helsetjenesten Norwegian Knowledge Centre for the Health Services'),
(11559, 'https://ror.org/01thy5064', 'no_lang_code', 1, 'https://ror.org/01thy5064 Biosensor (Italy)'),
(11560, 'https://ror.org/01thz0w07', 'en', 1, 'https://ror.org/01thz0w07 Wessex Institute of Technology'),
(11561, 'https://ror.org/01tndze11', 'no_lang_code', 1, 'https://ror.org/01tndze11 Multi-Duti Manufacturing (United States)'),
(11562, 'https://ror.org/01trfzy92', 'nl', 1, 'https://ror.org/01trfzy92 Korps Landelijke Politiediensten National Police Services Agency'),
(11563, 'https://ror.org/01tw0g194', 'es', 1, 'https://ror.org/01tw0g194 General Union of Workers Unión General de Trabajadores'),
(11564, 'https://ror.org/01tx2ss52', 'en', 1, 'https://ror.org/01tx2ss52 European Center for Information and Communication Technologies'),
(11565, 'https://ror.org/01txgmm25', 'es', 1, 'https://ror.org/01txgmm25 Instituto Canario de Ciencias Marinas'),
(11566, 'https://ror.org/01txptp23', 'no_lang_code', 1, 'https://ror.org/01txptp23 Solartec (Czechia)'),
(11567, 'https://ror.org/01txw1935', 'no_lang_code', 1, 'https://ror.org/01txw1935 DormaTarg (United States)'),
(11568, 'https://ror.org/01v000k46', 'en', 1, 'https://ror.org/01v000k46 Alleghany County Schools'),
(11569, 'https://ror.org/01v27sx82', 'en', 1, 'https://ror.org/01v27sx82 New Hellenic Radio, Internet and Television'),
(11570, 'https://ror.org/01v28qr30', 'en', 1, 'https://ror.org/01v28qr30 Jazz Foundation of America'),
(11571, 'https://ror.org/01v3dd888', 'en', 1, 'https://ror.org/01v3dd888 Uncommon Good'),
(11572, 'https://ror.org/01v4tq883', 'en', 1, 'https://ror.org/01v4tq883 Florida A&M University - Florida State University College of Engineering'),
(11573, 'https://ror.org/01v5dfh74', 'en', 1, 'https://ror.org/01v5dfh74 Community Teamwork');
INSERT INTO `rors` VALUES
(11574, 'https://ror.org/01v5sfq52', 'en', 1, 'https://ror.org/01v5sfq52 Cigarette Butt Pollution Project'),
(11575, 'https://ror.org/01v8y3819', 'no_lang_code', 1, 'https://ror.org/01v8y3819 Aries Scientific (United States)'),
(11576, 'https://ror.org/01vajwv02', 'en', 1, 'https://ror.org/01vajwv02 Community Health and Emergency Services'),
(11577, 'https://ror.org/01vaykv86', 'en', 1, 'https://ror.org/01vaykv86 Facial Plastics Surgery Associates'),
(11578, 'https://ror.org/01vbm2c42', 'no_lang_code', 1, 'https://ror.org/01vbm2c42 Software Research and Development Consulting'),
(11579, 'https://ror.org/01vc5az52', 'no_lang_code', 1, 'https://ror.org/01vc5az52 Kasiak Research (India)'),
(11580, 'https://ror.org/01vetdz59', 'no_lang_code', 1, 'https://ror.org/01vetdz59 Klƶckner (Germany)'),
(11581, 'https://ror.org/01vjc3s29', 'no_lang_code', 1, 'https://ror.org/01vjc3s29 AOA Apparatebau Gauting (Germany)'),
(11582, 'https://ror.org/01vkzj587', 'en', 1, 'https://ror.org/01vkzj587 Yerevan State Medical University ŌµÖ€Ö‡Õ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ¢ÕŖÕ·ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(11583, 'https://ror.org/01vp8h012', 'no_lang_code', 1, 'https://ror.org/01vp8h012 Remote Sensing Systems (United States)'),
(11584, 'https://ror.org/01vqw4208', 'no_lang_code', 1, 'https://ror.org/01vqw4208 Hope Afloat'),
(11585, 'https://ror.org/01vrvwk03', 'en', 1, 'https://ror.org/01vrvwk03 Colby Community College'),
(11586, 'https://ror.org/01vs9w702', 'no_lang_code', 1, 'https://ror.org/01vs9w702 Stora Enso (Finland)'),
(11587, 'https://ror.org/01vv0xf90', 'en', 1, 'https://ror.org/01vv0xf90 Avalon Nature Preserve'),
(11588, 'https://ror.org/01vw1d787', 'en', 1, 'https://ror.org/01vw1d787 Dorothy Jemison Foundation for Excellence'),
(11589, 'https://ror.org/01vxknj13', 'no_lang_code', 1, 'https://ror.org/01vxknj13 ASML (Netherlands)'),
(11590, 'https://ror.org/01vya7y20', 'en', 1, 'https://ror.org/01vya7y20 The Recovery Center'),
(11591, 'https://ror.org/01w00gh50', 'no_lang_code', 1, 'https://ror.org/01w00gh50 Immunome (United States)'),
(11592, 'https://ror.org/01w20ws49', 'en', 1, 'https://ror.org/01w20ws49 First Step Foundation'),
(11593, 'https://ror.org/01w58mc13', 'it', 1, 'https://ror.org/01w58mc13 Federazione delle Associazioni Scientifiche e Tecniche'),
(11594, 'https://ror.org/01w5cmk23', 'en', 1, 'https://ror.org/01w5cmk23 Lorain County Joint Vocational School'),
(11595, 'https://ror.org/01w5zd681', 'no_lang_code', 1, 'https://ror.org/01w5zd681 Belgonucleaire (Belgium)'),
(11596, 'https://ror.org/01w7r8m15', 'no_lang_code', 1, 'https://ror.org/01w7r8m15 QPS (Austria)'),
(11597, 'https://ror.org/01w8exq52', 'no_lang_code', 1, 'https://ror.org/01w8exq52 Amyndas Pharmaceuticals (United States)'),
(11598, 'https://ror.org/01wan7431', 'no_lang_code', 1, 'https://ror.org/01wan7431 Schneider Electric (Spain)'),
(11599, 'https://ror.org/01wc38255', 'en', 1, 'https://ror.org/01wc38255 Applied Research Institute for Prospective Technologies'),
(11600, 'https://ror.org/01weg4r24', 'no_lang_code', 1, 'https://ror.org/01weg4r24 Naturalia & Biologia'),
(11601, 'https://ror.org/01wen3r86', 'no_lang_code', 1, 'https://ror.org/01wen3r86 Boliden (Sweden)'),
(11602, 'https://ror.org/01wer7646', 'no_lang_code', 1, 'https://ror.org/01wer7646 Mastercard (Belgium)'),
(11603, 'https://ror.org/01wffm716', 'no_lang_code', 1, 'https://ror.org/01wffm716 Rübig (Austria)'),
(11604, 'https://ror.org/01wpszx77', 'en', 1, 'https://ror.org/01wpszx77 Combined Community Action'),
(11605, 'https://ror.org/01wpzjj95', 'no_lang_code', 1, 'https://ror.org/01wpzjj95 Tofwerk (Switzerland)'),
(11606, 'https://ror.org/01wrh2n21', 'en', 1, 'https://ror.org/01wrh2n21 Hellenic Foundation for European and Foreign Policy'),
(11607, 'https://ror.org/01wt1m959', 'en', 1, 'https://ror.org/01wt1m959 Prince George''s County Health Department'),
(11608, 'https://ror.org/01wtk7843', 'en', 1, 'https://ror.org/01wtk7843 Chapel Haven Schleifer Center'),
(11609, 'https://ror.org/01wv0r403', 'en', 1, 'https://ror.org/01wv0r403 Center on Race, Poverty and the Environment'),
(11610, 'https://ror.org/01ww0ej05', 'no_lang_code', 1, 'https://ror.org/01ww0ej05 AFRY (Austria)'),
(11611, 'https://ror.org/01ww5qq62', 'en', 1, 'https://ror.org/01ww5qq62 Pathway School'),
(11612, 'https://ror.org/01wwajd53', 'no_lang_code', 1, 'https://ror.org/01wwajd53 OHB (Italy)'),
(11613, 'https://ror.org/01wzgqz67', 'en', 1, 'https://ror.org/01wzgqz67 Earth Learning'),
(11614, 'https://ror.org/01wzjne83', 'en', 1, 'https://ror.org/01wzjne83 Mille Lacs Band of Ojibwe'),
(11615, 'https://ror.org/01x22fc24', 'en', 1, 'https://ror.org/01x22fc24 Aunt Martha’s Health and Wellness'),
(11616, 'https://ror.org/01x25y074', 'en', 1, 'https://ror.org/01x25y074 Northern Nevada Children''s Cancer Foundation'),
(11617, 'https://ror.org/01x4vnn38', 'es', 1, 'https://ror.org/01x4vnn38 Instituto Andaluz de TecnologĆ­a'),
(11618, 'https://ror.org/01x544h30', 'no_lang_code', 1, 'https://ror.org/01x544h30 Roche (Italy)'),
(11619, 'https://ror.org/01x5y8335', 'no_lang_code', 1, 'https://ror.org/01x5y8335 Granta Design (United Kingdom)'),
(11620, 'https://ror.org/01x6ha460', 'en', 1, 'https://ror.org/01x6ha460 Land For Good'),
(11621, 'https://ror.org/01x8pzm10', 'no_lang_code', 1, 'https://ror.org/01x8pzm10 Harley-Davidson (United States)'),
(11622, 'https://ror.org/01x9zv505', 'en', 1, 'https://ror.org/01x9zv505 Fatebenefratelli Hospital Ospedale San Giovanni Calibita Fatebenefratelli'),
(11623, 'https://ror.org/01xbt9y54', 'no_lang_code', 1, 'https://ror.org/01xbt9y54 Genias Benelux (Netherlands)'),
(11624, 'https://ror.org/01xby9e36', 'no_lang_code', 1, 'https://ror.org/01xby9e36 Webraska (France)'),
(11625, 'https://ror.org/01xd2ey78', 'en', 1, 'https://ror.org/01xd2ey78 Crossroads Community Hospital'),
(11626, 'https://ror.org/01xe60d06', 'en', 1, 'https://ror.org/01xe60d06 New Mexico Mathematics, Engineering, and Science Achievement'),
(11627, 'https://ror.org/01xedye63', 'no_lang_code', 1, 'https://ror.org/01xedye63 Modern Meadow (United States)'),
(11628, 'https://ror.org/01xetyj79', 'no_lang_code', 1, 'https://ror.org/01xetyj79 Youngstown Neighborhood Development Corporation (United States)'),
(11629, 'https://ror.org/01xfba851', 'no_lang_code', 1, 'https://ror.org/01xfba851 Ilva (Italy)'),
(11630, 'https://ror.org/01xfp7f88', 'no_lang_code', 1, 'https://ror.org/01xfp7f88 Innovative Orbital Design (United States)'),
(11631, 'https://ror.org/01xgdvm53', 'en', 1, 'https://ror.org/01xgdvm53 Bhagwan Mahaveer Cancer Hospital and Research Centre'),
(11632, 'https://ror.org/01xjn4f21', 'en', 1, 'https://ror.org/01xjn4f21 CancerCare'),
(11633, 'https://ror.org/01xm2ex71', 'no_lang_code', 1, 'https://ror.org/01xm2ex71 Ocean Era (United States)'),
(11634, 'https://ror.org/01xmz1b70', 'en', 1, 'https://ror.org/01xmz1b70 Bay Area Community Health Advisory Council'),
(11635, 'https://ror.org/01xn7cv95', 'no_lang_code', 1, 'https://ror.org/01xn7cv95 Logistics Management Institute (United States)'),
(11636, 'https://ror.org/01xq50d72', 'en', 1, 'https://ror.org/01xq50d72 Community Medical Center'),
(11637, 'https://ror.org/01xrr0m34', 'no_lang_code', 1, 'https://ror.org/01xrr0m34 One River Grants (United States)'),
(11638, 'https://ror.org/01xrrhw27', 'en', 1, 'https://ror.org/01xrrhw27 Astella Development'),
(11639, 'https://ror.org/01xscrc43', 'no_lang_code', 1, 'https://ror.org/01xscrc43 Solvay (Germany)'),
(11640, 'https://ror.org/01xtprm05', 'en', 1, 'https://ror.org/01xtprm05 Mercer County Health Department'),
(11641, 'https://ror.org/01xwshp02', 'en', 1, 'https://ror.org/01xwshp02 Institute for Magnetospheric Physics'),
(11642, 'https://ror.org/01y07bp24', 'de', 1, 'https://ror.org/01y07bp24 VDEh-Betriebsforschungsinstitut'),
(11643, 'https://ror.org/01y13ze91', 'no_lang_code', 1, 'https://ror.org/01y13ze91 SKF (Netherlands)'),
(11644, 'https://ror.org/01y23cm11', 'en', 1, 'https://ror.org/01y23cm11 All Out Adventures'),
(11645, 'https://ror.org/01y32sp40', 'no_lang_code', 1, 'https://ror.org/01y32sp40 Europäisches Centrum für Mechatronik (Germany)'),
(11646, 'https://ror.org/01y42sa33', 'en', 1, 'https://ror.org/01y42sa33 Astraea Lesbian Foundation For Justice'),
(11647, 'https://ror.org/01y6mff13', 'en', 1, 'https://ror.org/01y6mff13 Resource Foundation'),
(11648, 'https://ror.org/01y719f35', 'en', 1, 'https://ror.org/01y719f35 DeKalb County Health Department'),
(11649, 'https://ror.org/01y8j7579', 'en', 1, 'https://ror.org/01y8j7579 National 4-H Council'),
(11650, 'https://ror.org/01ycgxf29', 'en', 1, 'https://ror.org/01ycgxf29 Hertz Foundation'),
(11651, 'https://ror.org/01yex6672', 'no_lang_code', 1, 'https://ror.org/01yex6672 GlycoMimetics (United States)'),
(11652, 'https://ror.org/01yg57d71', 'en', 1, 'https://ror.org/01yg57d71 Institute of Neurological Sciences Istituto di Scienze Neurologiche'),
(11653, 'https://ror.org/01ygt4x13', 'en', 1, 'https://ror.org/01ygt4x13 Child Protection Network'),
(11654, 'https://ror.org/01ygx9r32', 'en', 1, 'https://ror.org/01ygx9r32 European Forum for Good Clinical Practice'),
(11655, 'https://ror.org/01yjcee19', 'en', 1, 'https://ror.org/01yjcee19 Cancer Alliance of Naples'),
(11656, 'https://ror.org/01ykqc562', 'en', 1, 'https://ror.org/01ykqc562 Innocence Project'),
(11657, 'https://ror.org/01ykwyj07', 'no_lang_code', 1, 'https://ror.org/01ykwyj07 4Cs Breeding Technologies (United States)'),
(11658, 'https://ror.org/01ynvwr63', 'es', 1, 'https://ror.org/01ynvwr63 HM Hospitales'),
(11659, 'https://ror.org/01yq97131', 'no_lang_code', 1, 'https://ror.org/01yq97131 Intellicell Biosciences (United States)'),
(11660, 'https://ror.org/01yrms264', 'en', 1, 'https://ror.org/01yrms264 Little Angels Early Childhood Center'),
(11661, 'https://ror.org/01ys7qn31', 'no_lang_code', 1, 'https://ror.org/01ys7qn31 LivaNova (Italy)'),
(11662, 'https://ror.org/01yt7p923', 'en', 1, 'https://ror.org/01yt7p923 Laboratory for Personalized Molecular Medicine'),
(11663, 'https://ror.org/01ytrmn44', 'en', 1, 'https://ror.org/01ytrmn44 C. Thomas Clagett, Jr. Memorial Clinic and Regatta'),
(11664, 'https://ror.org/01yvphs19', 'en', 1, 'https://ror.org/01yvphs19 Move United'),
(11665, 'https://ror.org/01ywqj763', 'en', 1, 'https://ror.org/01ywqj763 Jannus'),
(11666, 'https://ror.org/01yxq8q59', 'en', 1, 'https://ror.org/01yxq8q59 Nuestras Raices'),
(11667, 'https://ror.org/01yxr7f17', 'no_lang_code', 1, 'https://ror.org/01yxr7f17 Finovatis (France)'),
(11668, 'https://ror.org/01yxrjg25', 'en', 1, 'https://ror.org/01yxrjg25 National Center for Disease Control and Public Health įƒ“įƒįƒįƒ•įƒįƒ“įƒ”įƒ‘įƒįƒ—įƒ įƒ™įƒįƒœįƒ¢įƒ įƒįƒšįƒ˜įƒ”įƒ įƒ“įƒ įƒ”įƒįƒ–įƒįƒ’įƒįƒ“įƒįƒ”įƒ‘įƒ įƒ˜įƒ•įƒ˜ įƒÆįƒįƒœįƒ›įƒ įƒ—įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜'),
(11669, 'https://ror.org/01yxtmr67', 'no_lang_code', 1, 'https://ror.org/01yxtmr67 Prana Biotechnology (Australia)'),
(11670, 'https://ror.org/01yzrt577', 'no_lang_code', 1, 'https://ror.org/01yzrt577 Genedata (Switzerland)'),
(11671, 'https://ror.org/01z0fyn90', 'en', 1, 'https://ror.org/01z0fyn90 Cancer Patients Alliance for Clinical Trials & Survivorship'),
(11672, 'https://ror.org/01z0rq434', 'no_lang_code', 1, 'https://ror.org/01z0rq434 National Center for Defense Manufacturing and Machining (United States)'),
(11673, 'https://ror.org/01z1c5862', 'en', 1, 'https://ror.org/01z1c5862 College Opportunity Resources for Education'),
(11674, 'https://ror.org/01z3jep38', 'en', 1, 'https://ror.org/01z3jep38 German Cement Works Association Verein Deutscher Zementwerke'),
(11675, 'https://ror.org/01z3mbd29', 'en', 1, 'https://ror.org/01z3mbd29 Cape Fear Museum'),
(11676, 'https://ror.org/01z3wjy47', 'en', 1, 'https://ror.org/01z3wjy47 National Alliance on Mental Illness'),
(11677, 'https://ror.org/01z4ww589', 'en', 1, 'https://ror.org/01z4ww589 Chippewa County Health Department'),
(11678, 'https://ror.org/01z528276', 'en', 1, 'https://ror.org/01z528276 Emilio Nares Foundation'),
(11679, 'https://ror.org/01z63yw09', 'en', 1, 'https://ror.org/01z63yw09 Legacy of Legends Foundation'),
(11680, 'https://ror.org/01z89r872', 'en', 1, 'https://ror.org/01z89r872 EmpowerTech'),
(11681, 'https://ror.org/01z9q0k32', 'en', 1, 'https://ror.org/01z9q0k32 LIFE/RUN Center for Independent Living'),
(11682, 'https://ror.org/01zd0qk20', 'en', 1, 'https://ror.org/01zd0qk20 Clay County Health Department'),
(11683, 'https://ror.org/01zd6r658', 'en', 1, 'https://ror.org/01zd6r658 Empire State Honey Producers Association'),
(11684, 'https://ror.org/01zgmxw25', 'en', 1, 'https://ror.org/01zgmxw25 Chapters Health System'),
(11685, 'https://ror.org/01zhcwk43', 'no_lang_code', 1, 'https://ror.org/01zhcwk43 Digital Dispatch (Finland)'),
(11686, 'https://ror.org/01zje5g50', 'no_lang_code', 1, 'https://ror.org/01zje5g50 Fugro (Norway)'),
(11687, 'https://ror.org/01zkc2t07', 'en', 1, 'https://ror.org/01zkc2t07 Addario Lung Cancer Medical Institute'),
(11688, 'https://ror.org/01zksz530', 'bs', 1, 'https://ror.org/01zksz530 Natural History Museum of Montenegro Prirodnjacki Muzej Crne Gore'),
(11689, 'https://ror.org/01zmv6c05', 'en', 1, 'https://ror.org/01zmv6c05 Center for Research on the Changing Earth System'),
(11690, 'https://ror.org/01zmvpz61', 'no_lang_code', 1, 'https://ror.org/01zmvpz61 Julia Group'),
(11691, 'https://ror.org/01zn5h954', 'en', 1, 'https://ror.org/01zn5h954 Irv and Shellys Fresh Picks'),
(11692, 'https://ror.org/01zp93540', 'no_lang_code', 1, 'https://ror.org/01zp93540 Pemaquid Oyster Company (United States)'),
(11693, 'https://ror.org/01zpbb709', 'en', 1, 'https://ror.org/01zpbb709 CRDF Global'),
(11694, 'https://ror.org/01zpsbf45', 'en', 1, 'https://ror.org/01zpsbf45 CHRISTUS St. Michael Health System'),
(11695, 'https://ror.org/01ztccg37', 'no_lang_code', 1, 'https://ror.org/01ztccg37 Permafuels (United States)'),
(11696, 'https://ror.org/01zw4be88', 'no_lang_code', 1, 'https://ror.org/01zw4be88 Fincantieri (Italy)'),
(11697, 'https://ror.org/0203ne570', 'en', 1, 'https://ror.org/0203ne570 Recirculating Farms Coalition'),
(11698, 'https://ror.org/0206gap17', 'no_lang_code', 1, 'https://ror.org/0206gap17 Innovative Space Propulsion Systems (United States)'),
(11699, 'https://ror.org/0206kf863', 'no_lang_code', 1, 'https://ror.org/0206kf863 Link Consulting'),
(11700, 'https://ror.org/0208ywa45', 'en', 1, 'https://ror.org/0208ywa45 Gathering 4 Gardner'),
(11701, 'https://ror.org/0209tfn22', 'no_lang_code', 1, 'https://ror.org/0209tfn22 Airial Conseil (France)'),
(11702, 'https://ror.org/0209tmn27', 'en', 1, 'https://ror.org/0209tmn27 Coalition for Compassionate Care of California'),
(11703, 'https://ror.org/0209vy811', 'en', 1, 'https://ror.org/0209vy811 Illinois Valley Ear Nose and Throat'),
(11704, 'https://ror.org/020ccak28', 'en', 1, 'https://ror.org/020ccak28 Port Jefferson Lions Club'),
(11705, 'https://ror.org/020cpqb94', 'en', 1, 'https://ror.org/020cpqb94 Helsingin ja Uudenmaan Sairaanhoitopiiri Hospital District of Helsinki and Uusimaa'),
(11706, 'https://ror.org/020dxsp50', 'no_lang_code', 1, 'https://ror.org/020dxsp50 Q Free (Norway)'),
(11707, 'https://ror.org/020e1a811', 'no_lang_code', 1, 'https://ror.org/020e1a811 SAES Group (Italy)'),
(11708, 'https://ror.org/020fhwg86', 'en', 1, 'https://ror.org/020fhwg86 NextStep Fitness'),
(11709, 'https://ror.org/020g75c03', 'no_lang_code', 1, 'https://ror.org/020g75c03 Takara (Sweden)'),
(11710, 'https://ror.org/020g9v513', 'en', 1, 'https://ror.org/020g9v513 Ohio Pain Initiative'),
(11711, 'https://ror.org/020ktq245', 'no_lang_code', 1, 'https://ror.org/020ktq245 Symphony Technology (United States)'),
(11712, 'https://ror.org/020mgne32', 'no_lang_code', 1, 'https://ror.org/020mgne32 NCC (Sweden)'),
(11713, 'https://ror.org/020n75m55', 'en', 1, 'https://ror.org/020n75m55 Camp Aldersgate'),
(11714, 'https://ror.org/020n82m84', 'en', 1, 'https://ror.org/020n82m84 AISECT University ą¤†ą¤ˆą¤øą„‡ą¤•ą„ą¤Ÿ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(11715, 'https://ror.org/020njkh42', 'en', 1, 'https://ror.org/020njkh42 NEOMED Institute'),
(11716, 'https://ror.org/020ptwy31', 'it', 1, 'https://ror.org/020ptwy31 Agenzia per l''Italia Digitale'),
(11717, 'https://ror.org/020qj1b53', 'en', 1, 'https://ror.org/020qj1b53 Helping Hand Society'),
(11718, 'https://ror.org/020tnvw92', 'no_lang_code', 1, 'https://ror.org/020tnvw92 Safran (Belgium)'),
(11719, 'https://ror.org/020wan993', 'en', 1, 'https://ror.org/020wan993 Childline South Africa'),
(11720, 'https://ror.org/020x9tr75', 'en', 1, 'https://ror.org/020x9tr75 Pine Belt Mental Healthcare Resources'),
(11721, 'https://ror.org/02124b921', 'en', 1, 'https://ror.org/02124b921 American Phytopathological Society'),
(11722, 'https://ror.org/0212gej90', 'no_lang_code', 1, 'https://ror.org/0212gej90 ON Semiconductor (Belgium)'),
(11723, 'https://ror.org/0213kp011', 'no_lang_code', 1, 'https://ror.org/0213kp011 Empresa de Desenvolvimento Mineiro (Portugal)'),
(11724, 'https://ror.org/02148sc68', 'en', 1, 'https://ror.org/02148sc68 Gaston County Schools'),
(11725, 'https://ror.org/0214aaw69', 'en', 1, 'https://ror.org/0214aaw69 City Parks Foundation'),
(11726, 'https://ror.org/021598a46', 'no_lang_code', 1, 'https://ror.org/021598a46 3C Cattle Feeders (United States)'),
(11727, 'https://ror.org/02167je34', 'no_lang_code', 1, 'https://ror.org/02167je34 Biogas and Electric (United States)'),
(11728, 'https://ror.org/0216hp691', 'en', 1, 'https://ror.org/0216hp691 Institute for Sociology MTA TÔrsadalomtudomÔnyi Kutatóközpont Szociológiai Intézet'),
(11729, 'https://ror.org/0218v2420', 'en', 1, 'https://ror.org/0218v2420 Association of German Engineers Verein Deutscher Ingenieure'),
(11730, 'https://ror.org/0219k5g76', 'en', 1, 'https://ror.org/0219k5g76 Bombay College of Pharmacy'),
(11731, 'https://ror.org/021amba89', 'en', 1, 'https://ror.org/021amba89 New York Collaborates for Autism'),
(11732, 'https://ror.org/021b9pa93', 'no_lang_code', 1, 'https://ror.org/021b9pa93 Siempelkamp (Germany)'),
(11733, 'https://ror.org/021bvhv31', 'en', 1, 'https://ror.org/021bvhv31 Florida Agriculture in the Classroom'),
(11734, 'https://ror.org/021enqb55', 'en', 1, 'https://ror.org/021enqb55 Parents With A Purpose'),
(11735, 'https://ror.org/021f1r958', 'no_lang_code', 1, 'https://ror.org/021f1r958 Schunk (Germany)'),
(11736, 'https://ror.org/021h49x90', 'en', 1, 'https://ror.org/021h49x90 No Wooden Nickels'),
(11737, 'https://ror.org/021hb4q36', 'no_lang_code', 1, 'https://ror.org/021hb4q36 Mb Air Systems (United Kingdom)'),
(11738, 'https://ror.org/021k09d21', 'no_lang_code', 1, 'https://ror.org/021k09d21 Ajat (Finland)'),
(11739, 'https://ror.org/021kqv911', 'no_lang_code', 1, 'https://ror.org/021kqv911 Exactheat (United States)'),
(11740, 'https://ror.org/021m39404', 'en', 1, 'https://ror.org/021m39404 Legal Clinic for the Disabled'),
(11741, 'https://ror.org/021nxch78', 'no_lang_code', 1, 'https://ror.org/021nxch78 BCT (Germany)'),
(11742, 'https://ror.org/021pq8x94', 'en', 1, 'https://ror.org/021pq8x94 JD Breast Cancer Foundation'),
(11743, 'https://ror.org/021swwa08', 'hu', 1, 'https://ror.org/021swwa08 Bethesda GyermekkórhÔz, MagyarorszÔgi ReformÔtus EgyhÔz Bethesda GyermekkórhÔza'),
(11744, 'https://ror.org/021t5mt46', 'es', 1, 'https://ror.org/021t5mt46 Centro de Información y Desarrollo de la Mujer'),
(11745, 'https://ror.org/021vp7p61', 'no_lang_code', 1, 'https://ror.org/021vp7p61 GTD (Spain)'),
(11746, 'https://ror.org/021wbbm64', 'no_lang_code', 1, 'https://ror.org/021wbbm64 ZF Friedrichshafen (Germany)'),
(11747, 'https://ror.org/021x5j769', 'en', 1, 'https://ror.org/021x5j769 Horry County Schools'),
(11748, 'https://ror.org/021ztkr23', 'no_lang_code', 1, 'https://ror.org/021ztkr23 Synopsys (Germany)'),
(11749, 'https://ror.org/021zy4d72', 'en', 1, 'https://ror.org/021zy4d72 World Foundation for Medical Research and Prevention'),
(11750, 'https://ror.org/022182y05', 'en', 1, 'https://ror.org/022182y05 Maine Organic Farmers and Gardeners Association'),
(11751, 'https://ror.org/0223p7w87', 'en', 1, 'https://ror.org/0223p7w87 Adaptive Adventures'),
(11752, 'https://ror.org/02242hs05', 'pt', 1, 'https://ror.org/02242hs05 Centro Tecnológico das Indústrias do Couro Leather Technological Center'),
(11753, 'https://ror.org/0224dd234', 'en', 1, 'https://ror.org/0224dd234 Piraeus Port Authority'),
(11754, 'https://ror.org/0226s8t61', 'en', 1, 'https://ror.org/0226s8t61 Halleck Creek Ranch'),
(11755, 'https://ror.org/022aswt06', 'en', 1, 'https://ror.org/022aswt06 Heartland Head Start'),
(11756, 'https://ror.org/022c13n15', 'en', 1, 'https://ror.org/022c13n15 Health Alliance International'),
(11757, 'https://ror.org/022c7bq15', 'no_lang_code', 1, 'https://ror.org/022c7bq15 AOS Products (United Kingdom)'),
(11758, 'https://ror.org/022cany03', 'en', 1, 'https://ror.org/022cany03 Health Promotion Council'),
(11759, 'https://ror.org/022cm1781', 'no_lang_code', 1, 'https://ror.org/022cm1781 Alpha Thames Subsea (United Kingdom)'),
(11760, 'https://ror.org/022cw9c39', 'no_lang_code', 1, 'https://ror.org/022cw9c39 Venezia Tecnologie (Italy)'),
(11761, 'https://ror.org/022de2f17', 'en', 1, 'https://ror.org/022de2f17 Elizabethtown Community Hospital'),
(11762, 'https://ror.org/022ew7d45', 'en', 1, 'https://ror.org/022ew7d45 FRIDA The Young Feminist Fund'),
(11763, 'https://ror.org/022f21j22', 'en', 1, 'https://ror.org/022f21j22 Mount Hagen Provincial Hospital'),
(11764, 'https://ror.org/022gwqv30', 'en', 1, 'https://ror.org/022gwqv30 Breast and GYN Health Project'),
(11765, 'https://ror.org/022j8kh09', 'no_lang_code', 1, 'https://ror.org/022j8kh09 TetraPlan'),
(11766, 'https://ror.org/022ky1t43', 'en', 1, 'https://ror.org/022ky1t43 Hope House Ministries'),
(11767, 'https://ror.org/022m0cc63', 'en', 1, 'https://ror.org/022m0cc63 Bay Clinic'),
(11768, 'https://ror.org/022mnfq26', 'en', 1, 'https://ror.org/022mnfq26 Stone Barns Center for Food & Agriculture'),
(11769, 'https://ror.org/022nbxr62', 'en', 1, 'https://ror.org/022nbxr62 MaineGeneral Medical Center'),
(11770, 'https://ror.org/022r8xe61', 'es', 1, 'https://ror.org/022r8xe61 Centro EspaƱol de Metrologƭa'),
(11771, 'https://ror.org/022sedm79', 'en', 1, 'https://ror.org/022sedm79 PathStone'),
(11772, 'https://ror.org/022sh6v50', 'en', 1, 'https://ror.org/022sh6v50 Colorado Consortium for Earth and Space Science Education'),
(11773, 'https://ror.org/022wvzp87', 'en', 1, 'https://ror.org/022wvzp87 Amsterdam Nursing Home'),
(11774, 'https://ror.org/022zgjn81', 'no_lang_code', 1, 'https://ror.org/022zgjn81 AccuDava (United States)'),
(11775, 'https://ror.org/022zv0672', 'it', 1, 'https://ror.org/022zv0672 Institute for Environmental Protection and Research Istituto Superiore per la Protezione e la Ricerca Ambientale'),
(11776, 'https://ror.org/0231ar939', 'no_lang_code', 1, 'https://ror.org/0231ar939 Earth Networks (United States)'),
(11777, 'https://ror.org/0232wt504', 'no_lang_code', 1, 'https://ror.org/0232wt504 RAG Aktiengesellschaft (Germany)'),
(11778, 'https://ror.org/02341fy35', 'no_lang_code', 1, 'https://ror.org/02341fy35 Innovision (Denmark)'),
(11779, 'https://ror.org/0236px434', 'no_lang_code', 1, 'https://ror.org/0236px434 Follica (United States)'),
(11780, 'https://ror.org/02394fh52', 'no_lang_code', 1, 'https://ror.org/02394fh52 Pennsylvania Center for Beef Excellence'),
(11781, 'https://ror.org/023bbvw72', 'en', 1, 'https://ror.org/023bbvw72 Southern Ute Community Action Programs'),
(11782, 'https://ror.org/023cq0m22', 'no_lang_code', 1, 'https://ror.org/023cq0m22 Brain Tools (United States)'),
(11783, 'https://ror.org/023f9bb65', 'no_lang_code', 1, 'https://ror.org/023f9bb65 Liebherr (Germany)'),
(11784, 'https://ror.org/023h3sg77', 'no_lang_code', 1, 'https://ror.org/023h3sg77 Carnival Corporation (United Kingdom)'),
(11785, 'https://ror.org/023k1pq97', 'no_lang_code', 1, 'https://ror.org/023k1pq97 Bombardier (Germany)'),
(11786, 'https://ror.org/023kbzw23', 'no_lang_code', 1, 'https://ror.org/023kbzw23 BioEnergetics (United States)'),
(11787, 'https://ror.org/023kmpc59', 'en', 1, 'https://ror.org/023kmpc59 Ministero delle Politiche Agricole, Alimentari e Forestali Ministry of Agricultural, Food and Forestry Policies'),
(11788, 'https://ror.org/023ktd084', 'en', 1, 'https://ror.org/023ktd084 Ministarstvo nauke Ministry of Science'),
(11789, 'https://ror.org/023kvjk64', 'no_lang_code', 1, 'https://ror.org/023kvjk64 WƤrtsilƤ (Switzerland)'),
(11790, 'https://ror.org/023phzf28', 'no_lang_code', 1, 'https://ror.org/023phzf28 Technology and Management Services (Switzerland)'),
(11791, 'https://ror.org/023qcs349', 'en', 1, 'https://ror.org/023qcs349 Rehabilitation Institute of Kansas City'),
(11792, 'https://ror.org/023wb1e36', 'no_lang_code', 1, 'https://ror.org/023wb1e36 AurimMed (United States)'),
(11793, 'https://ror.org/023wxgq18', 'en', 1, 'https://ror.org/023wxgq18 Ivano-Frankivsk National Medical University Івано-Š¤Ń€Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(11794, 'https://ror.org/023xbne13', 'fr', 1, 'https://ror.org/023xbne13 Industrial Economics Institute Institut d''Ɖconomie Industrielle'),
(11795, 'https://ror.org/023xbxt82', 'en', 1, 'https://ror.org/023xbxt82 Live Healthy DeKalb County'),
(11796, 'https://ror.org/023zgnb96', 'no_lang_code', 1, 'https://ror.org/023zgnb96 Dyadic (Netherlands)'),
(11797, 'https://ror.org/0240jmg04', 'no_lang_code', 1, 'https://ror.org/0240jmg04 Olink Bioscience (Sweden)'),
(11798, 'https://ror.org/024328p12', 'en', 1, 'https://ror.org/024328p12 Long Island Association'),
(11799, 'https://ror.org/0243qcr03', 'no_lang_code', 1, 'https://ror.org/0243qcr03 Archetypon'),
(11800, 'https://ror.org/0244gtc77', 'en', 1, 'https://ror.org/0244gtc77 Advanced ENT and Allergy'),
(11801, 'https://ror.org/0244v0536', 'en', 1, 'https://ror.org/0244v0536 Republican Oncological Clinical Dispensary Республиканский клинический онкологический Гиспансер'),
(11802, 'https://ror.org/0244yg551', 'en', 1, 'https://ror.org/0244yg551 Ashe Memorial Hospital'),
(11803, 'https://ror.org/0246b8v59', 'en', 1, 'https://ror.org/0246b8v59 Linking Employment, Abilities and Potential'),
(11804, 'https://ror.org/0247j5w40', 'en', 1, 'https://ror.org/0247j5w40 NorthEast Ohio Neighborhood Health Services'),
(11805, 'https://ror.org/0249wjr08', 'en', 1, 'https://ror.org/0249wjr08 Al Shehab institution for Comprehensive Development'),
(11806, 'https://ror.org/024a6d298', 'en', 1, 'https://ror.org/024a6d298 AmeriCares'),
(11807, 'https://ror.org/024avgr28', 'fr', 1, 'https://ror.org/024avgr28 Association Shifa des Maladies NeuroMusculaires'),
(11808, 'https://ror.org/024cwn342', 'en', 1, 'https://ror.org/024cwn342 Pennsylvania Horticultural Society'),
(11809, 'https://ror.org/024fjxd56', 'en', 1, 'https://ror.org/024fjxd56 Gibson Area Hospital and Health Services'),
(11810, 'https://ror.org/024jz7t88', 'en', 1, 'https://ror.org/024jz7t88 Whittier Street Health Center'),
(11811, 'https://ror.org/024kx0v68', 'no_lang_code', 1, 'https://ror.org/024kx0v68 Seat (Spain) Sociedad Española de Automóviles de Turismo'),
(11812, 'https://ror.org/024n70r63', 'en', 1, 'https://ror.org/024n70r63 Living Independently Now Center'),
(11813, 'https://ror.org/024natw76', 'en', 1, 'https://ror.org/024natw76 Chez Panisse Restaurant and Cafe'),
(11814, 'https://ror.org/024pwg683', 'no_lang_code', 1, 'https://ror.org/024pwg683 GenXPro (Germany)'),
(11815, 'https://ror.org/024s09f91', 'fr', 1, 'https://ror.org/024s09f91 French Institute of Textiles and Clothing Institut FranƧais du Textile et de l''Habillement'),
(11816, 'https://ror.org/024sjxd14', 'pt', 1, 'https://ror.org/024sjxd14 Agencia para a Modernizacao Administrativa'),
(11817, 'https://ror.org/024txyd33', 'pt', 1, 'https://ror.org/024txyd33 Lisboa E-Nova - AgĆŖncia Municipal de Energia e Ambiente'),
(11818, 'https://ror.org/024tzkr53', 'no_lang_code', 1, 'https://ror.org/024tzkr53 PrimeTel (Cyprus)'),
(11819, 'https://ror.org/024vgq576', 'en', 1, 'https://ror.org/024vgq576 Girls on the Run of Central Illinois'),
(11820, 'https://ror.org/024vvee04', 'en', 1, 'https://ror.org/024vvee04 Hendrick Medical Center'),
(11821, 'https://ror.org/024z3s669', 'en', 1, 'https://ror.org/024z3s669 Orange County Public Schools'),
(11822, 'https://ror.org/024z8dm78', 'no_lang_code', 1, 'https://ror.org/024z8dm78 NDT Consultants (United Kingdom)'),
(11823, 'https://ror.org/02528vg72', 'no_lang_code', 1, 'https://ror.org/02528vg72 Star Roses and Plants (United States)'),
(11824, 'https://ror.org/0252gzq20', 'en', 1, 'https://ror.org/0252gzq20 Aquinas College - Michigan'),
(11825, 'https://ror.org/0252rqe04', 'en', 1, 'https://ror.org/0252rqe04 International Anesthesia Research Society'),
(11826, 'https://ror.org/0252zek10', 'en', 1, 'https://ror.org/0252zek10 Bike and Build'),
(11827, 'https://ror.org/0255frr43', 'en', 1, 'https://ror.org/0255frr43 Cooke School and Institute'),
(11828, 'https://ror.org/0256wzd68', 'no_lang_code', 1, 'https://ror.org/0256wzd68 In2 Search Interfaces Development (United Kingdom)'),
(11829, 'https://ror.org/0258a2f50', 'en', 1, 'https://ror.org/0258a2f50 Institute of Software Systems Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ програмних систем'),
(11830, 'https://ror.org/02595h974', 'en', 1, 'https://ror.org/02595h974 Lincoln Parish School Board'),
(11831, 'https://ror.org/02596hw49', 'en', 1, 'https://ror.org/02596hw49 Cancer Resource Centers of Mendocino County'),
(11832, 'https://ror.org/0259s7f07', 'en', 1, 'https://ror.org/0259s7f07 Angelic Organics Learning Center'),
(11833, 'https://ror.org/025aa9m53', 'no_lang_code', 1, 'https://ror.org/025aa9m53 Volkswagen Group (Czechia)'),
(11834, 'https://ror.org/025c4cf84', 'en', 1, 'https://ror.org/025c4cf84 Parkland Foundation'),
(11835, 'https://ror.org/025fmv139', 'no_lang_code', 1, 'https://ror.org/025fmv139 Smithers Rapra (United Kingdom)'),
(11836, 'https://ror.org/025g9s518', 'en', 1, 'https://ror.org/025g9s518 New England Anti-Vivisection Society'),
(11837, 'https://ror.org/025h55v52', 'en', 1, 'https://ror.org/025h55v52 Collections Trust'),
(11838, 'https://ror.org/025j1vp15', 'en', 1, 'https://ror.org/025j1vp15 Guardian Angel Homes'),
(11839, 'https://ror.org/025kz2973', 'en', 1, 'https://ror.org/025kz2973 Punjab Technical University ਪੰਜਾਬ ąØŸą©ˆąØ•ąØØą©€ąØ•ąØ² ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(11840, 'https://ror.org/025n0cr27', 'en', 1, 'https://ror.org/025n0cr27 ProMedica Russell J. Ebeid Children''s Hospital'),
(11841, 'https://ror.org/025n4zp83', 'no_lang_code', 1, 'https://ror.org/025n4zp83 LivaNova (France)'),
(11842, 'https://ror.org/025q2xt16', 'en', 1, 'https://ror.org/025q2xt16 Dean Health Systems'),
(11843, 'https://ror.org/025rqhb96', 'no_lang_code', 1, 'https://ror.org/025rqhb96 Teleport Sachsen-Anhalt'),
(11844, 'https://ror.org/025sfn416', 'no_lang_code', 1, 'https://ror.org/025sfn416 Harmon Brook Farm (United States)'),
(11845, 'https://ror.org/025zp6t95', 'no_lang_code', 1, 'https://ror.org/025zp6t95 Holmes Halls Processors (United Kingdom)'),
(11846, 'https://ror.org/0261rqq02', 'en', 1, 'https://ror.org/0261rqq02 Wayne County Regional Educational Service Agency'),
(11847, 'https://ror.org/0262pp157', 'en', 1, 'https://ror.org/0262pp157 Research Institute of the Finnish Economy'),
(11848, 'https://ror.org/0263dr507', 'en', 1, 'https://ror.org/0263dr507 Science Center of Iowa'),
(11849, 'https://ror.org/02669nb20', 'no_lang_code', 1, 'https://ror.org/02669nb20 Abertis Infraestructuras (Spain)'),
(11850, 'https://ror.org/02677w923', 'no_lang_code', 1, 'https://ror.org/02677w923 Slot Consulting'),
(11851, 'https://ror.org/0268h4j55', 'no_lang_code', 1, 'https://ror.org/0268h4j55 NXP (Germany)'),
(11852, 'https://ror.org/0268js065', 'no_lang_code', 1, 'https://ror.org/0268js065 Melissa Food'),
(11853, 'https://ror.org/02690tv45', 'en', 1, 'https://ror.org/02690tv45 The Wildlife Society'),
(11854, 'https://ror.org/026ad7v11', 'en', 1, 'https://ror.org/026ad7v11 AutismCare Nepal Society'),
(11855, 'https://ror.org/026apfz04', 'no_lang_code', 1, 'https://ror.org/026apfz04 Tova Industries (United States)'),
(11856, 'https://ror.org/026b3nr59', 'no_lang_code', 1, 'https://ror.org/026b3nr59 Sims Brothers (United States)'),
(11857, 'https://ror.org/026cc4t87', 'en', 1, 'https://ror.org/026cc4t87 Swedish Institute of Steel Construction'),
(11858, 'https://ror.org/026ctmx57', 'no_lang_code', 1, 'https://ror.org/026ctmx57 Institut de Soudure'),
(11859, 'https://ror.org/026djsb11', 'no_lang_code', 1, 'https://ror.org/026djsb11 Space Environment Technologies (United States)'),
(11860, 'https://ror.org/026gzzy53', 'no_lang_code', 1, 'https://ror.org/026gzzy53 Grado Zero Espace (Italy)'),
(11861, 'https://ror.org/026h6d543', 'es', 1, 'https://ror.org/026h6d543 Ayuntamiento de Madrid'),
(11862, 'https://ror.org/026hzcb48', 'en', 1, 'https://ror.org/026hzcb48 HOPE Clinic'),
(11863, 'https://ror.org/026jgjr74', 'no_lang_code', 1, 'https://ror.org/026jgjr74 Spectral Sciences (United States)'),
(11864, 'https://ror.org/026jj6489', 'en', 1, 'https://ror.org/026jj6489 Mission Children''s Hospital'),
(11865, 'https://ror.org/026jjgn48', 'fr', 1, 'https://ror.org/026jjgn48 Regional Energy and Environment Egency RhƓnalpƩnergie Environnement'),
(11866, 'https://ror.org/026jqpc47', 'en', 1, 'https://ror.org/026jqpc47 North Fork Breast Health Coalition'),
(11867, 'https://ror.org/026kac972', 'en', 1, 'https://ror.org/026kac972 Alpine Learning Group'),
(11868, 'https://ror.org/026meq292', 'no_lang_code', 1, 'https://ror.org/026meq292 Ɩssur (Iceland)'),
(11869, 'https://ror.org/026nftk33', 'de', 1, 'https://ror.org/026nftk33 Forschungszentrum Telekommunikation Wien Telecommunications Research Center Vienna'),
(11870, 'https://ror.org/026ngk018', 'en', 1, 'https://ror.org/026ngk018 Illinois Stewardship Alliance'),
(11871, 'https://ror.org/026peqa79', 'en', 1, 'https://ror.org/026peqa79 Goodwill of Orange County'),
(11872, 'https://ror.org/026vqrv05', 'no_lang_code', 1, 'https://ror.org/026vqrv05 Stab Vida (Portugal)'),
(11873, 'https://ror.org/027176q05', 'en', 1, 'https://ror.org/027176q05 St. Francis Medical Center'),
(11874, 'https://ror.org/027635d79', 'en', 1, 'https://ror.org/027635d79 Boonshoft Museum of Discovery'),
(11875, 'https://ror.org/027956n88', 'no_lang_code', 1, 'https://ror.org/027956n88 Figo (Netherlands)'),
(11876, 'https://ror.org/027f7xa47', 'no_lang_code', 1, 'https://ror.org/027f7xa47 Procter & Gamble (Belgium)'),
(11877, 'https://ror.org/027hawx96', 'en', 1, 'https://ror.org/027hawx96 Children''s Health & Research Foundation'),
(11878, 'https://ror.org/027jzke82', 'it', 1, 'https://ror.org/027jzke82 Central Institute for the Union Catalogue of Italian Libraries and for Bibliographic Information Istituto Centrale per il Catalogo Unico delle Biblioteche Italiane e per le Informazioni Bibliografiche'),
(11879, 'https://ror.org/027n3xb46', 'no_lang_code', 1, 'https://ror.org/027n3xb46 Ericsson (Italy)'),
(11880, 'https://ror.org/027pcre83', 'en', 1, 'https://ror.org/027pcre83 Space Frontier Foundation'),
(11881, 'https://ror.org/027pgkr79', 'en', 1, 'https://ror.org/027pgkr79 Northeast Organic Farming Association of New York'),
(11882, 'https://ror.org/027pk6j83', 'en', 1, 'https://ror.org/027pk6j83 Madrid Institute for Advanced Studies'),
(11883, 'https://ror.org/027q7en43', 'en', 1, 'https://ror.org/027q7en43 American Association of Neuropathologists'),
(11884, 'https://ror.org/027rtfv09', 'en', 1, 'https://ror.org/027rtfv09 Jewish Hospital and St. Mary''s HealthCare'),
(11885, 'https://ror.org/027thnp44', 'en', 1, 'https://ror.org/027thnp44 Trust IT Services'),
(11886, 'https://ror.org/027vk9s44', 'en', 1, 'https://ror.org/027vk9s44 Organic Seed Alliance'),
(11887, 'https://ror.org/027xetj30', 'no_lang_code', 1, 'https://ror.org/027xetj30 Reflective X Ray Optics'),
(11888, 'https://ror.org/027xf9k42', 'no_lang_code', 1, 'https://ror.org/027xf9k42 DuPont (Norway)'),
(11889, 'https://ror.org/027xpc035', 'no_lang_code', 1, 'https://ror.org/027xpc035 Trialog (France)'),
(11890, 'https://ror.org/0281y1011', 'en', 1, 'https://ror.org/0281y1011 Latvian State Institute of Wood Chemistry'),
(11891, 'https://ror.org/0283c7q62', 'en', 1, 'https://ror.org/0283c7q62 Spinal Cord Injury Alberta'),
(11892, 'https://ror.org/0284hgn97', 'no_lang_code', 1, 'https://ror.org/0284hgn97 Genesis Biotechnologies (United States)'),
(11893, 'https://ror.org/0286eck14', 'it', 1, 'https://ror.org/0286eck14 Istituto Agronomico Mediterraneo di Bari Mediterranean Agronomic Institute of Bari'),
(11894, 'https://ror.org/0288vq897', 'no_lang_code', 1, 'https://ror.org/0288vq897 ITPEnergised Group (United Kingdom)'),
(11895, 'https://ror.org/028caqe42', 'pt', 1, 'https://ror.org/028caqe42 Instituto Nacional de MatemƔtica Pura e Aplicada National Institute for Pure and Applied Mathematics'),
(11896, 'https://ror.org/028cbaf58', 'en', 1, 'https://ror.org/028cbaf58 Practical Farmers of Iowa'),
(11897, 'https://ror.org/028cpyy94', 'en', 1, 'https://ror.org/028cpyy94 Fundación Mercy Care Mercy Care Foundation'),
(11898, 'https://ror.org/028g82q49', 'en', 1, 'https://ror.org/028g82q49 Boat People SOS'),
(11899, 'https://ror.org/028g94h04', 'en', 1, 'https://ror.org/028g94h04 New York Sustainable Agriculture Working Group'),
(11900, 'https://ror.org/028gm7992', 'en', 1, 'https://ror.org/028gm7992 Jefferson University Hospitals'),
(11901, 'https://ror.org/028h2sf55', 'en', 1, 'https://ror.org/028h2sf55 McDowell County Schools'),
(11902, 'https://ror.org/028javr49', 'en', 1, 'https://ror.org/028javr49 Distrito Escolar Unificado de Long Beach Long Beach Unified School District'),
(11903, 'https://ror.org/028jy6j07', 'no_lang_code', 1, 'https://ror.org/028jy6j07 Biothera (United States)'),
(11904, 'https://ror.org/028jzvt36', 'no_lang_code', 1, 'https://ror.org/028jzvt36 Ibeo Automotive Systems (Germany)'),
(11905, 'https://ror.org/028k9m233', 'no_lang_code', 1, 'https://ror.org/028k9m233 Safibra (Czechia)'),
(11906, 'https://ror.org/028nv1219', 'no_lang_code', 1, 'https://ror.org/028nv1219 Tecnitest (Spain)'),
(11907, 'https://ror.org/028pcv110', 'en', 1, 'https://ror.org/028pcv110 Planned Parenthood of Metropolitan Washington'),
(11908, 'https://ror.org/028v5rf11', 'en', 1, 'https://ror.org/028v5rf11 Global AIDS Interfaith Alliance'),
(11909, 'https://ror.org/028xy2x79', 'no_lang_code', 1, 'https://ror.org/028xy2x79 Belden (United Kingdom)'),
(11910, 'https://ror.org/028yyha11', 'no_lang_code', 1, 'https://ror.org/028yyha11 GMI Aero (France)'),
(11911, 'https://ror.org/0290x3782', 'no_lang_code', 1, 'https://ror.org/0290x3782 PV Crystalox Solar (United Kingdom)'),
(11912, 'https://ror.org/029255j70', 'en', 1, 'https://ror.org/029255j70 Cape Fear Valley Health System'),
(11913, 'https://ror.org/0292ppt25', 'en', 1, 'https://ror.org/0292ppt25 Gifts to Share'),
(11914, 'https://ror.org/02965na35', 'en', 1, 'https://ror.org/02965na35 Coastal Steward Long Island'),
(11915, 'https://ror.org/0297j9z42', 'no_lang_code', 1, 'https://ror.org/0297j9z42 GeoVantage (United States)'),
(11916, 'https://ror.org/0297sbd31', 'no_lang_code', 1, 'https://ror.org/0297sbd31 Honeywell (Czechia)'),
(11917, 'https://ror.org/0299n0h85', 'en', 1, 'https://ror.org/0299n0h85 City Bar Justice Center'),
(11918, 'https://ror.org/029a54f25', 'en', 1, 'https://ror.org/029a54f25 Cancer Institute of New South Wales'),
(11919, 'https://ror.org/029benr66', 'en', 1, 'https://ror.org/029benr66 Austrian Energy Agency Ɩsterreichische Energieagentur'),
(11920, 'https://ror.org/029bpx402', 'en', 1, 'https://ror.org/029bpx402 Calhoun County Health Department'),
(11921, 'https://ror.org/029c3cd83', 'en', 1, 'https://ror.org/029c3cd83 Foundation for Rehabilitation Equipment and Endowment'),
(11922, 'https://ror.org/029e6xb19', 'en', 1, 'https://ror.org/029e6xb19 Ministerul Afacerilor Interne Ministry of Internal Affairs'),
(11923, 'https://ror.org/029ebrw26', 'en', 1, 'https://ror.org/029ebrw26 Arts For Life'),
(11924, 'https://ror.org/029fngx98', 'it', 1, 'https://ror.org/029fngx98 Servizio sanitario dell''Emilia-Romagna'),
(11925, 'https://ror.org/029hcca68', 'en', 1, 'https://ror.org/029hcca68 Centers for New Horizons'),
(11926, 'https://ror.org/029k6n605', 'en', 1, 'https://ror.org/029k6n605 Centre for Social Innovation'),
(11927, 'https://ror.org/029m8ac94', 'en', 1, 'https://ror.org/029m8ac94 AIDS Community Research Consortium'),
(11928, 'https://ror.org/029nath19', 'en', 1, 'https://ror.org/029nath19 Royal Scientific Society'),
(11929, 'https://ror.org/029qsp363', 'en', 1, 'https://ror.org/029qsp363 DeWitt County Human Resource Center'),
(11930, 'https://ror.org/029sxat24', 'en', 1, 'https://ror.org/029sxat24 AdventHealth Gordon'),
(11931, 'https://ror.org/029ts0z22', 'en', 1, 'https://ror.org/029ts0z22 Girlstart'),
(11932, 'https://ror.org/029vgfn27', 'en', 1, 'https://ror.org/029vgfn27 Janus Youth Programs'),
(11933, 'https://ror.org/029wcr898', 'it', 1, 'https://ror.org/029wcr898 Centro Tessile Cotoniero e Abbigliamento'),
(11934, 'https://ror.org/029x54d87', 'en', 1, 'https://ror.org/029x54d87 Aguilas El Ambiente Asamblea Gay Unida Impactando Latinos A Superarse'),
(11935, 'https://ror.org/029x65353', 'en', 1, 'https://ror.org/029x65353 European Business and Innovation Centre Network'),
(11936, 'https://ror.org/029zea722', 'en', 1, 'https://ror.org/029zea722 Research Institute of Pomology and Floriculture'),
(11937, 'https://ror.org/02a2nzn96', 'en', 1, 'https://ror.org/02a2nzn96 Home for Little Wanderers'),
(11938, 'https://ror.org/02a3vgk42', 'en', 1, 'https://ror.org/02a3vgk42 Homes for Our Troops'),
(11939, 'https://ror.org/02a596w22', 'no_lang_code', 1, 'https://ror.org/02a596w22 Institute of Mechanics of Materials and Geostructures'),
(11940, 'https://ror.org/02a5meq09', 'pl', 1, 'https://ror.org/02a5meq09 Institute of Economics of the Polish Academy of Sciences Instytut Nauk Ekonomicznych'),
(11941, 'https://ror.org/02a5mvd52', 'en', 1, 'https://ror.org/02a5mvd52 OSF Saint Francis Foundation'),
(11942, 'https://ror.org/02a7k5x58', 'en', 1, 'https://ror.org/02a7k5x58 Reconstruction of a Survivor'),
(11943, 'https://ror.org/02a7p6b15', 'en', 1, 'https://ror.org/02a7p6b15 American India Foundation'),
(11944, 'https://ror.org/02a8cv967', 'no_lang_code', 1, 'https://ror.org/02a8cv967 Procter & Gamble (United Kingdom)'),
(11945, 'https://ror.org/02a9j6p59', 'no_lang_code', 1, 'https://ror.org/02a9j6p59 PT Inovação e Sistemas (Portugal)'),
(11946, 'https://ror.org/02a9vnt59', 'en', 1, 'https://ror.org/02a9vnt59 Institute of Biochemistry and Genetics of Ufa Scientific Centre Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø генетики'),
(11947, 'https://ror.org/02ab50f57', 'it', 1, 'https://ror.org/02ab50f57 Confederazione Italiana Sindacati Lavoratori Italian Confederation of Workers'' Trade Unions'),
(11948, 'https://ror.org/02acd1c86', 'no_lang_code', 1, 'https://ror.org/02acd1c86 Photon Systems (United States)'),
(11949, 'https://ror.org/02acx8d20', 'en', 1, 'https://ror.org/02acx8d20 Calhoun Conservation District'),
(11950, 'https://ror.org/02ad9kp97', 'no_lang_code', 1, 'https://ror.org/02ad9kp97 Spectra-Physics (Austria)'),
(11951, 'https://ror.org/02adgag39', 'no_lang_code', 1, 'https://ror.org/02adgag39 Aixtron (Germany)'),
(11952, 'https://ror.org/02advfp87', 'no_lang_code', 1, 'https://ror.org/02advfp87 Corbus Pharmaceuticals (United States)'),
(11953, 'https://ror.org/02amkdd40', 'no_lang_code', 1, 'https://ror.org/02amkdd40 World Centric (United States)'),
(11954, 'https://ror.org/02an78v51', 'en', 1, 'https://ror.org/02an78v51 Lincoln Center for the Performing Arts'),
(11955, 'https://ror.org/02ar66p97', 'en', 1, 'https://ror.org/02ar66p97 Latvian Council of Science'),
(11956, 'https://ror.org/02as34v38', 'no_lang_code', 1, 'https://ror.org/02as34v38 Ƙrsted (Denmark)'),
(11957, 'https://ror.org/02ayjed64', 'no_lang_code', 1, 'https://ror.org/02ayjed64 Sally Ride Science (United States)'),
(11958, 'https://ror.org/02ayk3803', 'en', 1, 'https://ror.org/02ayk3803 Parelli Foundation'),
(11959, 'https://ror.org/02aykj333', 'no_lang_code', 1, 'https://ror.org/02aykj333 Audi (Germany)'),
(11960, 'https://ror.org/02azra733', 'no_lang_code', 1, 'https://ror.org/02azra733 Triumph Adler (Germany)'),
(11961, 'https://ror.org/02azz6x90', 'en', 1, 'https://ror.org/02azz6x90 Institute of Theoretical and Applied Mechanics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø приклаГной механики им. Š”.А. Єристиановича Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(11962, 'https://ror.org/02b0ps544', 'no_lang_code', 1, 'https://ror.org/02b0ps544 PharmaBioSource (United States)'),
(11963, 'https://ror.org/02b1scj45', 'en', 1, 'https://ror.org/02b1scj45 Hawkeye Community College'),
(11964, 'https://ror.org/02b5fj195', 'no_lang_code', 1, 'https://ror.org/02b5fj195 Quantis (Switzerland)'),
(11965, 'https://ror.org/02b79c687', 'no_lang_code', 1, 'https://ror.org/02b79c687 Mediterranean Broadband Infrastructure (Italy)'),
(11966, 'https://ror.org/02b8mhr56', 'it', 1, 'https://ror.org/02b8mhr56 Texclubtec'),
(11967, 'https://ror.org/02b8nr167', 'no_lang_code', 1, 'https://ror.org/02b8nr167 Expedeon (Germany)'),
(11968, 'https://ror.org/02b9qqz94', 'en', 1, 'https://ror.org/02b9qqz94 Prosperity Gardens'),
(11969, 'https://ror.org/02b9ykk59', 'en', 1, 'https://ror.org/02b9ykk59 Lucas County Board of Developmental Disabilities'),
(11970, 'https://ror.org/02babdz45', 'en', 1, 'https://ror.org/02babdz45 European Neuro Muscular Centre'),
(11971, 'https://ror.org/02bcp5978', 'no_lang_code', 1, 'https://ror.org/02bcp5978 Exergia, Energy, Management and Information Technology'),
(11972, 'https://ror.org/02bcy6s93', 'no_lang_code', 1, 'https://ror.org/02bcy6s93 C5•6 Technologies (United States)'),
(11973, 'https://ror.org/02bez8p50', 'no_lang_code', 1, 'https://ror.org/02bez8p50 ArcelorMittal (Luxembourg)'),
(11974, 'https://ror.org/02bfry065', 'no_lang_code', 1, 'https://ror.org/02bfry065 Hagar International'),
(11975, 'https://ror.org/02bgf5h46', 'en', 1, 'https://ror.org/02bgf5h46 Cookeville Regional Medical Center'),
(11976, 'https://ror.org/02bgway40', 'en', 1, 'https://ror.org/02bgway40 Gulu Women with Disabilities Union'),
(11977, 'https://ror.org/02bgz0507', 'en', 1, 'https://ror.org/02bgz0507 Gorge Grown Food Network'),
(11978, 'https://ror.org/02bhe9a93', 'en', 1, 'https://ror.org/02bhe9a93 British Hydromechanics Research Group'),
(11979, 'https://ror.org/02bq8mb39', 'en', 1, 'https://ror.org/02bq8mb39 Capital Area Human Services'),
(11980, 'https://ror.org/02bsxq855', 'en', 1, 'https://ror.org/02bsxq855 Chicago Association of Black Social Workers'),
(11981, 'https://ror.org/02bwrq566', 'no_lang_code', 1, 'https://ror.org/02bwrq566 Carmeq (Germany)'),
(11982, 'https://ror.org/02bx9km76', 'en', 1, 'https://ror.org/02bx9km76 DĆ­a de la Mujer Latina'),
(11983, 'https://ror.org/02by29150', 'no_lang_code', 1, 'https://ror.org/02by29150 Renewable Spirits (United States)'),
(11984, 'https://ror.org/02c073z28', 'en', 1, 'https://ror.org/02c073z28 Caribbean Environmental Health Institute'),
(11985, 'https://ror.org/02c1b5n48', 'no_lang_code', 1, 'https://ror.org/02c1b5n48 Heusch Boesefeldt (Germany)'),
(11986, 'https://ror.org/02c2zwv68', 'no_lang_code', 1, 'https://ror.org/02c2zwv68 Exact Dynamics (Netherlands)'),
(11987, 'https://ror.org/02c31t502', 'en', 1, 'https://ror.org/02c31t502 Guangzhou Institutes of Biomedicine and Health äø­å›½ē§‘å­¦é™¢å¹æå·žē”Ÿē‰©åŒ»čÆäøŽå„åŗ·ē ”ē©¶é™¢'),
(11988, 'https://ror.org/02c329420', 'es', 1, 'https://ror.org/02c329420 Hospital Nacional de NiƱos Bloom'),
(11989, 'https://ror.org/02c4d2n77', 'en', 1, 'https://ror.org/02c4d2n77 Fitzgibbon Hospital'),
(11990, 'https://ror.org/02c4sht73', 'no_lang_code', 1, 'https://ror.org/02c4sht73 Trenitalia (Italy)'),
(11991, 'https://ror.org/02c4z1521', 'no_lang_code', 1, 'https://ror.org/02c4z1521 Sigint Solutions (Cyprus)'),
(11992, 'https://ror.org/02c5z9p32', 'no_lang_code', 1, 'https://ror.org/02c5z9p32 Hella (Germany)'),
(11993, 'https://ror.org/02ca2n422', 'no_lang_code', 1, 'https://ror.org/02ca2n422 Attana (Sweden)'),
(11994, 'https://ror.org/02ca63m84', 'no_lang_code', 1, 'https://ror.org/02ca63m84 Dose Safety (United States)'),
(11995, 'https://ror.org/02cbyhv26', 'en', 1, 'https://ror.org/02cbyhv26 Californians for Disability Rights'),
(11996, 'https://ror.org/02ce9qs13', 'en', 1, 'https://ror.org/02ce9qs13 Institutes of Science and Development ē§‘ęŠ€ęˆ˜ē•„å’ØčÆ¢ē ”ē©¶é™¢'),
(11997, 'https://ror.org/02cfzba28', 'fr', 1, 'https://ror.org/02cfzba28 Association Robert DebrƩ'),
(11998, 'https://ror.org/02ck4xq38', 'no_lang_code', 1, 'https://ror.org/02ck4xq38 Impel Neuropharma (United States)'),
(11999, 'https://ror.org/02ckn6v62', 'fi', 1, 'https://ror.org/02ckn6v62 Turku Science Park'),
(12000, 'https://ror.org/02cm8kt07', 'no_lang_code', 1, 'https://ror.org/02cm8kt07 Inno (Germany)'),
(12001, 'https://ror.org/02cqwf592', 'no_lang_code', 1, 'https://ror.org/02cqwf592 Analysis and Monitoring of Environmental Risk'),
(12002, 'https://ror.org/02crk0343', 'no_lang_code', 1, 'https://ror.org/02crk0343 Visual Tools (Spain)'),
(12003, 'https://ror.org/02cs3k195', 'en', 1, 'https://ror.org/02cs3k195 Juvenile Myelomonocytic Leukemia Foundation'),
(12004, 'https://ror.org/02cv4sv66', 'es', 1, 'https://ror.org/02cv4sv66 Fundación Valenciaport Valenciaport Foundation'),
(12005, 'https://ror.org/02cvw1988', 'en', 1, 'https://ror.org/02cvw1988 Equestrian Aid Foundation'),
(12006, 'https://ror.org/02cwbgy35', 'en', 1, 'https://ror.org/02cwbgy35 East Texas Baptist University'),
(12007, 'https://ror.org/02cx1m445', 'en', 1, 'https://ror.org/02cx1m445 Institute of Flight'),
(12008, 'https://ror.org/02cxadc11', 'no_lang_code', 1, 'https://ror.org/02cxadc11 Winrock International (United States)'),
(12009, 'https://ror.org/02d1x3182', 'en', 1, 'https://ror.org/02d1x3182 Genetic Research Institute of the Desert'),
(12010, 'https://ror.org/02d61wv82', 'pt', 1, 'https://ror.org/02d61wv82 Hospital SĆ£o Vicente'),
(12011, 'https://ror.org/02d6wbq68', 'en', 1, 'https://ror.org/02d6wbq68 GeoHazards International'),
(12012, 'https://ror.org/02d73fs96', 'no_lang_code', 1, 'https://ror.org/02d73fs96 ITI (United Kingdom)'),
(12013, 'https://ror.org/02d75ya26', 'no_lang_code', 1, 'https://ror.org/02d75ya26 GreenWood Resources (United States)'),
(12014, 'https://ror.org/02d8tke50', 'en', 1, 'https://ror.org/02d8tke50 Emergency Services College Pelastusopisto'),
(12015, 'https://ror.org/02d9dbv29', 'en', 1, 'https://ror.org/02d9dbv29 Law and Advocacy for Women in Uganda');
INSERT INTO `rors` VALUES
(12016, 'https://ror.org/02darmv56', 'no_lang_code', 1, 'https://ror.org/02darmv56 Geoprobe (United States)'),
(12017, 'https://ror.org/02dbn9a54', 'no_lang_code', 1, 'https://ror.org/02dbn9a54 DiaSorin (Ireland)'),
(12018, 'https://ror.org/02dczrr13', 'en', 1, 'https://ror.org/02dczrr13 Boys & Girls Clubs of America'),
(12019, 'https://ror.org/02ddzr818', 'en', 1, 'https://ror.org/02ddzr818 American College of Sports Medicine'),
(12020, 'https://ror.org/02dezma62', 'en', 1, 'https://ror.org/02dezma62 United States Satellite Laboratory'),
(12021, 'https://ror.org/02dfjrn59', 'en', 1, 'https://ror.org/02dfjrn59 New Media Studio'),
(12022, 'https://ror.org/02dg8v926', 'en', 1, 'https://ror.org/02dg8v926 CHRISTUS Spohn Hospital Corpus Christi - Memorial'),
(12023, 'https://ror.org/02dh03d79', 'no_lang_code', 1, 'https://ror.org/02dh03d79 iRepertoire (United States)'),
(12024, 'https://ror.org/02dja5v25', 'en', 1, 'https://ror.org/02dja5v25 California Aquatic Therapy and Wellness Center'),
(12025, 'https://ror.org/02djyqb52', 'en', 1, 'https://ror.org/02djyqb52 Burn Institute'),
(12026, 'https://ror.org/02dngfz86', 'en', 1, 'https://ror.org/02dngfz86 Center for Courageous Kids'),
(12027, 'https://ror.org/02dr63s31', 'en', 1, 'https://ror.org/02dr63s31 Institute of Genetic and Biomedical Research Istituto di Ricerca Genetica e Biomedica'),
(12028, 'https://ror.org/02drtb754', 'fr', 1, 'https://ror.org/02drtb754 FƩdƩration Internationale de l''Automobile International Automobile Federation'),
(12029, 'https://ror.org/02dsehc06', 'no_lang_code', 1, 'https://ror.org/02dsehc06 Zachrome (United Kingdom)'),
(12030, 'https://ror.org/02dtzq355', 'no_lang_code', 1, 'https://ror.org/02dtzq355 Endesa (Spain)'),
(12031, 'https://ror.org/02dwb6k40', 'no_lang_code', 1, 'https://ror.org/02dwb6k40 Marrone Bio Innovations (United States)'),
(12032, 'https://ror.org/02dxbtx84', 'no_lang_code', 1, 'https://ror.org/02dxbtx84 Colorobbia (Italy)'),
(12033, 'https://ror.org/02dz3em48', 'en', 1, 'https://ror.org/02dz3em48 Life Goes On-Home Improvement'),
(12034, 'https://ror.org/02dz8kh28', 'en', 1, 'https://ror.org/02dz8kh28 California FarmLink'),
(12035, 'https://ror.org/02dzpb616', 'en', 1, 'https://ror.org/02dzpb616 Energy Center of Wisconsin'),
(12036, 'https://ror.org/02dzq0z59', 'no_lang_code', 1, 'https://ror.org/02dzq0z59 Minerva Consulting and Communication'),
(12037, 'https://ror.org/02e0gbz94', 'no_lang_code', 1, 'https://ror.org/02e0gbz94 CCS Global Group'),
(12038, 'https://ror.org/02e0hwv58', 'en', 1, 'https://ror.org/02e0hwv58 Las Animas Helping Hands'),
(12039, 'https://ror.org/02e0key02', 'en', 1, 'https://ror.org/02e0key02 Massachusetts School Nurse Research Network'),
(12040, 'https://ror.org/02e10zk80', 'en', 1, 'https://ror.org/02e10zk80 ORT France'),
(12041, 'https://ror.org/02e2xy633', 'en', 1, 'https://ror.org/02e2xy633 Human Resources Development Institute'),
(12042, 'https://ror.org/02e36tk84', 'en', 1, 'https://ror.org/02e36tk84 Ohio Aerospace Institute'),
(12043, 'https://ror.org/02e61jz42', 'no_lang_code', 1, 'https://ror.org/02e61jz42 e2e Materials (United States)'),
(12044, 'https://ror.org/02e8b3g15', 'no_lang_code', 1, 'https://ror.org/02e8b3g15 EV Group (Austria)'),
(12045, 'https://ror.org/02e8g2j71', 'en', 1, 'https://ror.org/02e8g2j71 All-Ukrainian Charitable Foundation Coalition of HIV-Service Organizations'),
(12046, 'https://ror.org/02ec4x178', 'no_lang_code', 1, 'https://ror.org/02ec4x178 Bombardier (Sweden)'),
(12047, 'https://ror.org/02ecdct80', 'no_lang_code', 1, 'https://ror.org/02ecdct80 Transferzentrum Mikroelektronik (Germany)'),
(12048, 'https://ror.org/02ecfwn78', 'no_lang_code', 1, 'https://ror.org/02ecfwn78 JB Life Sciences (United States)'),
(12049, 'https://ror.org/02ee9a524', 'en', 1, 'https://ror.org/02ee9a524 Christine M. Kleinert Institute'),
(12050, 'https://ror.org/02eehde62', 'en', 1, 'https://ror.org/02eehde62 Highland Council'),
(12051, 'https://ror.org/02eg1b280', 'en', 1, 'https://ror.org/02eg1b280 Novokuznetsk State Institute of Advanced Medical Education ŠŠ¾Š²Š¾ŠŗŃƒŠ·Š½ŠµŃ†ŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŃŠ¾Š²ŠµŃ€ŃˆŠµŠ½ŃŃ‚Š²Š¾Š²Š°Š½ŠøŃ врачей'),
(12052, 'https://ror.org/02egmm606', 'no_lang_code', 1, 'https://ror.org/02egmm606 Metroeconomica (United Kingdom)'),
(12053, 'https://ror.org/02eja2g37', 'no_lang_code', 1, 'https://ror.org/02eja2g37 Melt Organic (United States)'),
(12054, 'https://ror.org/02ejgnj48', 'no_lang_code', 1, 'https://ror.org/02ejgnj48 Satra (United Kingdom)'),
(12055, 'https://ror.org/02en7tm18', 'no_lang_code', 1, 'https://ror.org/02en7tm18 Cyntelix (Netherlands)'),
(12056, 'https://ror.org/02ep4w426', 'no_lang_code', 1, 'https://ror.org/02ep4w426 LISA laser products (Germany)'),
(12057, 'https://ror.org/02epcmt14', 'no_lang_code', 1, 'https://ror.org/02epcmt14 SCITEK Consultants (United Kingdom)'),
(12058, 'https://ror.org/02epq7t62', 'no_lang_code', 1, 'https://ror.org/02epq7t62 Amplitude SystĆØmes (France)'),
(12059, 'https://ror.org/02esvv741', 'en', 1, 'https://ror.org/02esvv741 Family Health Center of Worcester'),
(12060, 'https://ror.org/02ethns06', 'no_lang_code', 1, 'https://ror.org/02ethns06 Software (Spain)'),
(12061, 'https://ror.org/02etp1027', 'en', 1, 'https://ror.org/02etp1027 In The Meantime Men’s Group'),
(12062, 'https://ror.org/02evrg063', 'no_lang_code', 1, 'https://ror.org/02evrg063 Papenmeier (Germany)'),
(12063, 'https://ror.org/02ewpgp84', 'en', 1, 'https://ror.org/02ewpgp84 ErinoakKids Centre for Treatment and Development'),
(12064, 'https://ror.org/02exqvj96', 'en', 1, 'https://ror.org/02exqvj96 British Columbia Easter Seals Society for Children with Disabilities'),
(12065, 'https://ror.org/02f0jr828', 'en', 1, 'https://ror.org/02f0jr828 Memorial Foundation'),
(12066, 'https://ror.org/02f12sz84', 'no_lang_code', 1, 'https://ror.org/02f12sz84 3M (France)'),
(12067, 'https://ror.org/02f1baf17', 'no_lang_code', 1, 'https://ror.org/02f1baf17 Softeco Sismat (Italy)'),
(12068, 'https://ror.org/02f588d44', 'en', 1, 'https://ror.org/02f588d44 University of Virginia Hospital'),
(12069, 'https://ror.org/02f64hv34', 'en', 1, 'https://ror.org/02f64hv34 No Barriers Youth'),
(12070, 'https://ror.org/02f6txw68', 'en', 1, 'https://ror.org/02f6txw68 East Georgia Cancer Coalition'),
(12071, 'https://ror.org/02f6yfb39', 'en', 1, 'https://ror.org/02f6yfb39 National Space Grant Foundation'),
(12072, 'https://ror.org/02f7fr916', 'en', 1, 'https://ror.org/02f7fr916 ENT and Allergy Associates of Florida'),
(12073, 'https://ror.org/02f7txf64', 'en', 1, 'https://ror.org/02f7txf64 Technical Education Research Centers'),
(12074, 'https://ror.org/02f88nb31', 'no_lang_code', 1, 'https://ror.org/02f88nb31 SolarPrint (Ireland)'),
(12075, 'https://ror.org/02f8ezy79', 'en', 1, 'https://ror.org/02f8ezy79 Living Beyond Breast Cancer'),
(12076, 'https://ror.org/02f8s1297', 'no_lang_code', 1, 'https://ror.org/02f8s1297 Triplan (Italy)'),
(12077, 'https://ror.org/02fbyq253', 'no_lang_code', 1, 'https://ror.org/02fbyq253 Campden BRI (Hungary)'),
(12078, 'https://ror.org/02fefk125', 'en', 1, 'https://ror.org/02fefk125 The Harris Center for Mental Health and IDD'),
(12079, 'https://ror.org/02fhdkr54', 'en', 1, 'https://ror.org/02fhdkr54 Ohio''s Hospice of Dayton'),
(12080, 'https://ror.org/02fs0x831', 'en', 1, 'https://ror.org/02fs0x831 Cris Collinsworth ProScan Fund'),
(12081, 'https://ror.org/02fsyqx49', 'no_lang_code', 1, 'https://ror.org/02fsyqx49 Ian Catling Consultancy'),
(12082, 'https://ror.org/02ft67b52', 'no_lang_code', 1, 'https://ror.org/02ft67b52 NCC (Denmark)'),
(12083, 'https://ror.org/02fwr8382', 'no_lang_code', 1, 'https://ror.org/02fwr8382 AITIA International (Hungary)'),
(12084, 'https://ror.org/02fyr1a65', 'no_lang_code', 1, 'https://ror.org/02fyr1a65 DunavNET (Serbia)'),
(12085, 'https://ror.org/02fz4b004', 'en', 1, 'https://ror.org/02fz4b004 Eastern Shore of Virginia Broadband Authority'),
(12086, 'https://ror.org/02g03w722', 'en', 1, 'https://ror.org/02g03w722 Guards of The Earth and The Vulnerable'),
(12087, 'https://ror.org/02g0y3z13', 'en', 1, 'https://ror.org/02g0y3z13 Institute of Scientific and Technological Research in Aeronautics and Mechanical Engineering'),
(12088, 'https://ror.org/02g13cw94', 'en', 1, 'https://ror.org/02g13cw94 Hellenic Ministry of Culture and Sports ΄πουργείο Ī ĪæĪ»Ī¹Ļ„Ī¹ĻƒĪ¼ĪæĻ και Ī‘ĪøĪ»Ī·Ļ„Ī¹ĻƒĪ¼ĪæĻ'),
(12089, 'https://ror.org/02g1wqf71', 'en', 1, 'https://ror.org/02g1wqf71 Center for Health Consultation and Community Development Trung tĆ¢m tʰ vįŗ„n sức khį»e vĆ  phĆ”t triển cį»™ng đồng'),
(12090, 'https://ror.org/02g3bbd17', 'no_lang_code', 1, 'https://ror.org/02g3bbd17 Gisat (Czechia)'),
(12091, 'https://ror.org/02g7qxm32', 'no_lang_code', 1, 'https://ror.org/02g7qxm32 Afraxis (United States)'),
(12092, 'https://ror.org/02g802m02', 'en', 1, 'https://ror.org/02g802m02 Mission Health'),
(12093, 'https://ror.org/02ga6zq31', 'en', 1, 'https://ror.org/02ga6zq31 Israel Cancer Association USA'),
(12094, 'https://ror.org/02gb22q25', 'en', 1, 'https://ror.org/02gb22q25 The Food Trust'),
(12095, 'https://ror.org/02gb76937', 'no_lang_code', 1, 'https://ror.org/02gb76937 Domain Therapeutics (France)'),
(12096, 'https://ror.org/02gbfwn85', 'no_lang_code', 1, 'https://ror.org/02gbfwn85 Intermarine (Italy)'),
(12097, 'https://ror.org/02gc8w463', 'en', 1, 'https://ror.org/02gc8w463 CLIC Sargent'),
(12098, 'https://ror.org/02gd18467', 'en', 1, 'https://ror.org/02gd18467 Chelsea and Westminster Hospital NHS Foundation Trust'),
(12099, 'https://ror.org/02gen5m31', 'en', 1, 'https://ror.org/02gen5m31 Erikson Institute'),
(12100, 'https://ror.org/02gev8286', 'en', 1, 'https://ror.org/02gev8286 Michigan Food & Farming Systems'),
(12101, 'https://ror.org/02gf24d79', 'no_lang_code', 1, 'https://ror.org/02gf24d79 M.C. Townsend Associates (United States)'),
(12102, 'https://ror.org/02ggpr832', 'en', 1, 'https://ror.org/02ggpr832 California Prostitutes Education Project'),
(12103, 'https://ror.org/02gj68a91', 'en', 1, 'https://ror.org/02gj68a91 Greater Lansing Food Bank'),
(12104, 'https://ror.org/02gk0vj45', 'no_lang_code', 1, 'https://ror.org/02gk0vj45 Rockfield (United Kingdom)'),
(12105, 'https://ror.org/02gnmy268', 'no_lang_code', 1, 'https://ror.org/02gnmy268 Applied GeoSolutions (United States)'),
(12106, 'https://ror.org/02gp5xx45', 'en', 1, 'https://ror.org/02gp5xx45 Holy Redeemer'),
(12107, 'https://ror.org/02gpy3h79', 'en', 1, 'https://ror.org/02gpy3h79 MemorialCare Health System'),
(12108, 'https://ror.org/02gq61384', 'no_lang_code', 1, 'https://ror.org/02gq61384 Vergnet (France)'),
(12109, 'https://ror.org/02gqvwf68', 'no_lang_code', 1, 'https://ror.org/02gqvwf68 Cibus (United States)'),
(12110, 'https://ror.org/02gr0tn14', 'en', 1, 'https://ror.org/02gr0tn14 Breast Cancer Resource Centre of Austin'),
(12111, 'https://ror.org/02grc9p87', 'en', 1, 'https://ror.org/02grc9p87 Intertribal Agriculture Council'),
(12112, 'https://ror.org/02gsg9n78', 'en', 1, 'https://ror.org/02gsg9n78 Clark Family Breast Cancer Services'),
(12113, 'https://ror.org/02gvyd507', 'en', 1, 'https://ror.org/02gvyd507 Institute for Culture and Ecology'),
(12114, 'https://ror.org/02gxz0343', 'en', 1, 'https://ror.org/02gxz0343 Adena Health System'),
(12115, 'https://ror.org/02gywfe80', 'en', 1, 'https://ror.org/02gywfe80 National Mining Hall of Fame and Museum'),
(12116, 'https://ror.org/02h3g8t20', 'no_lang_code', 1, 'https://ror.org/02h3g8t20 Liberty Media (United States)'),
(12117, 'https://ror.org/02h606z41', 'en', 1, 'https://ror.org/02h606z41 Georgia Canines for Independence'),
(12118, 'https://ror.org/02h8ckc21', 'pl', 1, 'https://ror.org/02h8ckc21 Instytut Kolejnictwa'),
(12119, 'https://ror.org/02h8qh795', 'no_lang_code', 1, 'https://ror.org/02h8qh795 Bioneer (Denmark)'),
(12120, 'https://ror.org/02h9mq080', 'no_lang_code', 1, 'https://ror.org/02h9mq080 Argos Therapeutics (United States)'),
(12121, 'https://ror.org/02h9xze43', 'no_lang_code', 1, 'https://ror.org/02h9xze43 Biotrend (Portugal)'),
(12122, 'https://ror.org/02ha9ms92', 'no_lang_code', 1, 'https://ror.org/02ha9ms92 VIC Technology Venture Development (United States)'),
(12123, 'https://ror.org/02hbj0683', 'en', 1, 'https://ror.org/02hbj0683 Coming Home Connection'),
(12124, 'https://ror.org/02hbmds06', 'de', 1, 'https://ror.org/02hbmds06 Gesellschaft für Fertigungstechnik und Entwicklung'),
(12125, 'https://ror.org/02hbq4750', 'no_lang_code', 1, 'https://ror.org/02hbq4750 Mariskone (Spain)'),
(12126, 'https://ror.org/02hdbjt22', 'no_lang_code', 1, 'https://ror.org/02hdbjt22 Forgital (Italy)'),
(12127, 'https://ror.org/02hgsjt50', 'no_lang_code', 1, 'https://ror.org/02hgsjt50 Alpha Cancer Technologies'),
(12128, 'https://ror.org/02hhyky59', 'en', 1, 'https://ror.org/02hhyky59 Brain Injury Association of Louisiana'),
(12129, 'https://ror.org/02hj34779', 'en', 1, 'https://ror.org/02hj34779 Icelandic Meteorological Office'),
(12130, 'https://ror.org/02hjww730', 'en', 1, 'https://ror.org/02hjww730 Butte County Office of Education'),
(12131, 'https://ror.org/02hk14q21', 'fr', 1, 'https://ror.org/02hk14q21 MinistĆØre de l''Ɖducation Nationale, de la Formation Professionnelle, de l''Enseignement SupĆ©rieur et de la Recherche Scientifique وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© و Ų§Ł„ŲŖŁƒŁˆŁŠŁ† Ų§Ł„Ł…Ł‡Ł†ŁŠ و Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ و البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(12132, 'https://ror.org/02hkkqt25', 'en', 1, 'https://ror.org/02hkkqt25 Maine Farmland Trust'),
(12133, 'https://ror.org/02hkzpe56', 'no_lang_code', 1, 'https://ror.org/02hkzpe56 Telekom Austria'),
(12134, 'https://ror.org/02hncwj35', 'en', 1, 'https://ror.org/02hncwj35 Dellon Institutes for Peripheral Nerve Surgery'),
(12135, 'https://ror.org/02hp5at17', 'en', 1, 'https://ror.org/02hp5at17 Jupiter Medical Center'),
(12136, 'https://ror.org/02hqjzm41', 'ro', 1, 'https://ror.org/02hqjzm41 Institutul de Cercetari Electrotehnice'),
(12137, 'https://ror.org/02hvj8973', 'en', 1, 'https://ror.org/02hvj8973 Disabled Athlete Sports Association'),
(12138, 'https://ror.org/02j2j3d46', 'en', 1, 'https://ror.org/02j2j3d46 Pacific Crest Trail Association'),
(12139, 'https://ror.org/02j41b239', 'no_lang_code', 1, 'https://ror.org/02j41b239 IdMind (Portugal)'),
(12140, 'https://ror.org/02j4a0n65', 'en', 1, 'https://ror.org/02j4a0n65 Nevada Cancer Research Foundation'),
(12141, 'https://ror.org/02j557320', 'no_lang_code', 1, 'https://ror.org/02j557320 Galilaeus (Finland)'),
(12142, 'https://ror.org/02j5e0989', 'en', 1, 'https://ror.org/02j5e0989 Cancer Association of Anderson'),
(12143, 'https://ror.org/02j7zcz08', 'en', 1, 'https://ror.org/02j7zcz08 Bittersweet Farms'),
(12144, 'https://ror.org/02j8awh30', 'no_lang_code', 1, 'https://ror.org/02j8awh30 TRW Automotive (Germany)'),
(12145, 'https://ror.org/02j8vpa07', 'en', 1, 'https://ror.org/02j8vpa07 FöldrajztudomÔnyi Kutatóintézet Geographical Institute'),
(12146, 'https://ror.org/02ja4sy98', 'en', 1, 'https://ror.org/02ja4sy98 National Society of Genetic Counselors'),
(12147, 'https://ror.org/02javd718', 'no_lang_code', 1, 'https://ror.org/02javd718 Smith-Root (United States)'),
(12148, 'https://ror.org/02jaztc47', 'en', 1, 'https://ror.org/02jaztc47 Institut für Textil- und Verfahrenstechnik Denkendorf Institute of Textile Technology and Process Engineering'),
(12149, 'https://ror.org/02jb1pj89', 'en', 1, 'https://ror.org/02jb1pj89 HOPE Organization'),
(12150, 'https://ror.org/02jbegc32', 'en', 1, 'https://ror.org/02jbegc32 Children’s Clinics'),
(12151, 'https://ror.org/02je5e910', 'en', 1, 'https://ror.org/02je5e910 Hope Chest for Breast Cancer'),
(12152, 'https://ror.org/02jf95y23', 'no_lang_code', 1, 'https://ror.org/02jf95y23 e GEOS (Italy)'),
(12153, 'https://ror.org/02jgraj16', 'en', 1, 'https://ror.org/02jgraj16 Institute for Global Environmental Strategies'),
(12154, 'https://ror.org/02jh4h461', 'en', 1, 'https://ror.org/02jh4h461 Leicester City Council'),
(12155, 'https://ror.org/02jh73m95', 'it', 1, 'https://ror.org/02jh73m95 Felicita and Enrico Bignaschi and Sons Foundation Fondazione Bignaschi'),
(12156, 'https://ror.org/02jq3z767', 'en', 1, 'https://ror.org/02jq3z767 John Paul II Medical Research Institute'),
(12157, 'https://ror.org/02jsytr13', 'no_lang_code', 1, 'https://ror.org/02jsytr13 Prometeia (Italy)'),
(12158, 'https://ror.org/02jwqhx24', 'en', 1, 'https://ror.org/02jwqhx24 Cancer Support Center'),
(12159, 'https://ror.org/02jwynf03', 'en', 1, 'https://ror.org/02jwynf03 Center for Rural Affairs'),
(12160, 'https://ror.org/02jx22q88', 'en', 1, 'https://ror.org/02jx22q88 Community Action Duluth'),
(12161, 'https://ror.org/02jygec53', 'no_lang_code', 1, 'https://ror.org/02jygec53 Elecnor (Spain)'),
(12162, 'https://ror.org/02jyxcp49', 'en', 1, 'https://ror.org/02jyxcp49 Alkaptonuria Society'),
(12163, 'https://ror.org/02jzmxs17', 'en', 1, 'https://ror.org/02jzmxs17 North Bay Cancer Alliance'),
(12164, 'https://ror.org/02k1b4g33', 'no_lang_code', 1, 'https://ror.org/02k1b4g33 Grind For Life (United States)'),
(12165, 'https://ror.org/02k2bzx75', 'no_lang_code', 1, 'https://ror.org/02k2bzx75 Smartex (Italy)'),
(12166, 'https://ror.org/02k37yq18', 'en', 1, 'https://ror.org/02k37yq18 CASA for Kids'),
(12167, 'https://ror.org/02k4rpx08', 'en', 1, 'https://ror.org/02k4rpx08 Care 2 Tri'),
(12168, 'https://ror.org/02k5trc82', 'no_lang_code', 1, 'https://ror.org/02k5trc82 Nereus Life Sciences (United States)'),
(12169, 'https://ror.org/02k674x39', 'en', 1, 'https://ror.org/02k674x39 Park Nicollet Clinic'),
(12170, 'https://ror.org/02k712m23', 'en', 1, 'https://ror.org/02k712m23 Life Rolls On Foundation'),
(12171, 'https://ror.org/02k8rcn44', 'en', 1, 'https://ror.org/02k8rcn44 Light and Salt Association'),
(12172, 'https://ror.org/02ka1d450', 'no_lang_code', 1, 'https://ror.org/02ka1d450 Siena Biotech (Italy)'),
(12173, 'https://ror.org/02ka41c13', 'no_lang_code', 1, 'https://ror.org/02ka41c13 ADispell (United States)'),
(12174, 'https://ror.org/02kak3e04', 'en', 1, 'https://ror.org/02kak3e04 Aurora St. Luke''s Medical Center'),
(12175, 'https://ror.org/02kc0ck80', 'no_lang_code', 1, 'https://ror.org/02kc0ck80 M&I/Partners'),
(12176, 'https://ror.org/02kc8tk59', 'en', 1, 'https://ror.org/02kc8tk59 Museum of Aviation'),
(12177, 'https://ror.org/02kg21794', 'it', 1, 'https://ror.org/02kg21794 Regione Campania'),
(12178, 'https://ror.org/02kgzq677', 'no_lang_code', 1, 'https://ror.org/02kgzq677 Hybrid Catalysis (Netherlands)'),
(12179, 'https://ror.org/02km85a12', 'no_lang_code', 1, 'https://ror.org/02km85a12 STMicroelectronics (Belgium)'),
(12180, 'https://ror.org/02kn8an38', 'nl', 1, 'https://ror.org/02kn8an38 Louis Bolk Instituut'),
(12181, 'https://ror.org/02knxde55', 'en', 1, 'https://ror.org/02knxde55 Women Food and Agriculture Network'),
(12182, 'https://ror.org/02kq6xe25', 'no_lang_code', 1, 'https://ror.org/02kq6xe25 IntuiLab (France)'),
(12183, 'https://ror.org/02ktcxy40', 'en', 1, 'https://ror.org/02ktcxy40 Kentucky Court of Justice'),
(12184, 'https://ror.org/02ktw6q65', 'no_lang_code', 1, 'https://ror.org/02ktw6q65 Technobiochip (Italy)'),
(12185, 'https://ror.org/02kvgg008', 'no_lang_code', 1, 'https://ror.org/02kvgg008 Cepsa (Spain)'),
(12186, 'https://ror.org/02kw9ya16', 'en', 1, 'https://ror.org/02kw9ya16 Cancer and Chronic Disease Consortium'),
(12187, 'https://ror.org/02kwk6c15', 'en', 1, 'https://ror.org/02kwk6c15 International Management Institute'),
(12188, 'https://ror.org/02kwrph79', 'en', 1, 'https://ror.org/02kwrph79 Partners for Cancer Care and Prevention'),
(12189, 'https://ror.org/02kyqnp42', 'en', 1, 'https://ror.org/02kyqnp42 Cincinnati Observatory'),
(12190, 'https://ror.org/02m0cd826', 'en', 1, 'https://ror.org/02m0cd826 St. Luke''s Children''s Hospital'),
(12191, 'https://ror.org/02m1pay40', 'en', 1, 'https://ror.org/02m1pay40 Clinica de Pneumologie Iaşi'),
(12192, 'https://ror.org/02m5haa59', 'cs', 1, 'https://ror.org/02m5haa59 Czech Metrology Institute Český Metrologický Institut'),
(12193, 'https://ror.org/02m7zmm13', 'en', 1, 'https://ror.org/02m7zmm13 Council On Aging of Central Oregon'),
(12194, 'https://ror.org/02m80r109', 'no_lang_code', 1, 'https://ror.org/02m80r109 Scenic Valley Farms'),
(12195, 'https://ror.org/02ma7yv75', 'en', 1, 'https://ror.org/02ma7yv75 Institute of Nanotechnology'),
(12196, 'https://ror.org/02magnn81', 'no_lang_code', 1, 'https://ror.org/02magnn81 CESI (Italy)'),
(12197, 'https://ror.org/02mbv4339', 'no_lang_code', 1, 'https://ror.org/02mbv4339 Deutsche Telekom (Poland)'),
(12198, 'https://ror.org/02mczt252', 'no_lang_code', 1, 'https://ror.org/02mczt252 NexImmune (United States)'),
(12199, 'https://ror.org/02mfecp81', 'no_lang_code', 1, 'https://ror.org/02mfecp81 Mosaic'),
(12200, 'https://ror.org/02mfpez21', 'pt', 1, 'https://ror.org/02mfpez21 Projecto Desenvolvimento Manutenção Formação e Consultadoria'),
(12201, 'https://ror.org/02mh1s531', 'en', 1, 'https://ror.org/02mh1s531 Global Abilities Foundation'),
(12202, 'https://ror.org/02mhjkx12', 'no_lang_code', 1, 'https://ror.org/02mhjkx12 Sopra (France)'),
(12203, 'https://ror.org/02mjtc790', 'en', 1, 'https://ror.org/02mjtc790 Building Blocks Learning Academy'),
(12204, 'https://ror.org/02mm95a26', 'nl', 1, 'https://ror.org/02mm95a26 Veiligheids- en Gezondheidsregio Gelderland-Midden'),
(12205, 'https://ror.org/02mme4d79', 'en', 1, 'https://ror.org/02mme4d79 Research and Production Association Typhoon'),
(12206, 'https://ror.org/02mmrmf21', 'no_lang_code', 1, 'https://ror.org/02mmrmf21 Janus Biotherapeutics (United States)'),
(12207, 'https://ror.org/02mnzkw65', 'no_lang_code', 1, 'https://ror.org/02mnzkw65 Synthema (Italy)'),
(12208, 'https://ror.org/02mrrr189', 'en', 1, 'https://ror.org/02mrrr189 Adagio Health'),
(12209, 'https://ror.org/02msvh720', 'no_lang_code', 1, 'https://ror.org/02msvh720 SoftBank Robotics (France)'),
(12210, 'https://ror.org/02mt8gf23', 'en', 1, 'https://ror.org/02mt8gf23 Hope Worldwide Monterrey'),
(12211, 'https://ror.org/02mtpb511', 'no_lang_code', 1, 'https://ror.org/02mtpb511 Hoosier Cancer Research Network (United States)'),
(12212, 'https://ror.org/02mtwe318', 'no_lang_code', 1, 'https://ror.org/02mtwe318 Argus Umweltbiotechnologie (Germany)'),
(12213, 'https://ror.org/02mtyfy02', 'no_lang_code', 1, 'https://ror.org/02mtyfy02 Micronit Microfluidics (Netherlands)'),
(12214, 'https://ror.org/02mwhda43', 'no_lang_code', 1, 'https://ror.org/02mwhda43 Downstream Strategies (United States)'),
(12215, 'https://ror.org/02mx1bf53', 'en', 1, 'https://ror.org/02mx1bf53 Advanced Cancer Therapeutics'),
(12216, 'https://ror.org/02mxt1985', 'no_lang_code', 1, 'https://ror.org/02mxt1985 Greenwood Clean Energy (United States)'),
(12217, 'https://ror.org/02mz3ef34', 'en', 1, 'https://ror.org/02mz3ef34 Food Bank of North Alabama'),
(12218, 'https://ror.org/02mzffa46', 'no_lang_code', 1, 'https://ror.org/02mzffa46 Courtagen Life Sciences (United States)'),
(12219, 'https://ror.org/02n2syw04', 'en', 1, 'https://ror.org/02n2syw04 International Center for Agricultural Research in the Dry Areas'),
(12220, 'https://ror.org/02n6yz853', 'no_lang_code', 1, 'https://ror.org/02n6yz853 Anacapa Sciences (United States)'),
(12221, 'https://ror.org/02n71yc39', 'en', 1, 'https://ror.org/02n71yc39 Community Health Development'),
(12222, 'https://ror.org/02n7gg832', 'en', 1, 'https://ror.org/02n7gg832 Children''s Aid Society'),
(12223, 'https://ror.org/02n800c31', 'en', 1, 'https://ror.org/02n800c31 Nathan Adelson Hospice'),
(12224, 'https://ror.org/02n8vwz90', 'en', 1, 'https://ror.org/02n8vwz90 NAACP Legal Defense and Educational Fund'),
(12225, 'https://ror.org/02n9p9f13', 'en', 1, 'https://ror.org/02n9p9f13 Sama Resource Group for Women and Health'),
(12226, 'https://ror.org/02nadbe75', 'en', 1, 'https://ror.org/02nadbe75 Susan G. Komen Breast Cancer Foundation'),
(12227, 'https://ror.org/02napvw46', 'en', 1, 'https://ror.org/02napvw46 Florida Institute for Human and Machine Cognition'),
(12228, 'https://ror.org/02nbz6h12', 'en', 1, 'https://ror.org/02nbz6h12 Casting for Recovery'),
(12229, 'https://ror.org/02ndts806', 'en', 1, 'https://ror.org/02ndts806 Center for Pan Asian Community Services'),
(12230, 'https://ror.org/02nfs1v98', 'en', 1, 'https://ror.org/02nfs1v98 Gateways Hospital and Mental Health Center'),
(12231, 'https://ror.org/02nh6s285', 'en', 1, 'https://ror.org/02nh6s285 Macoupin County Public Health Department'),
(12232, 'https://ror.org/02nj1s179', 'no_lang_code', 1, 'https://ror.org/02nj1s179 Xenics (Belgium)'),
(12233, 'https://ror.org/02nkdpb96', 'en', 1, 'https://ror.org/02nkdpb96 Northeast Florida Healthy Start Coalition'),
(12234, 'https://ror.org/02nkrhg40', 'en', 1, 'https://ror.org/02nkrhg40 Amref Health Africa'),
(12235, 'https://ror.org/02nn4sa19', 'no_lang_code', 1, 'https://ror.org/02nn4sa19 Mercy Corps Northwest (United States)'),
(12236, 'https://ror.org/02npqe506', 'en', 1, 'https://ror.org/02npqe506 GrowNYC'),
(12237, 'https://ror.org/02nr1pp46', 'en', 1, 'https://ror.org/02nr1pp46 Food and Friends'),
(12238, 'https://ror.org/02nsnn902', 'en', 1, 'https://ror.org/02nsnn902 Conseil Européen de l''Information sur l''Alimentation European Food Information Council Europeo de Información sobre la Alimentación Europäische Informationszentrum für Lebensmittel'),
(12239, 'https://ror.org/02nt0h862', 'en', 1, 'https://ror.org/02nt0h862 Art Science Research Laboratory'),
(12240, 'https://ror.org/02nxnzz65', 'no_lang_code', 1, 'https://ror.org/02nxnzz65 Meteorologie Consult (Germany)'),
(12241, 'https://ror.org/02nycrb78', 'en', 1, 'https://ror.org/02nycrb78 Firefighter Cancer Support Network'),
(12242, 'https://ror.org/02nyp1408', 'en', 1, 'https://ror.org/02nyp1408 National Council on Radiation Protection and Measurements'),
(12243, 'https://ror.org/02p038k52', 'en', 1, 'https://ror.org/02p038k52 Shawnee Community College'),
(12244, 'https://ror.org/02p0ex288', 'en', 1, 'https://ror.org/02p0ex288 Bridge II Sports'),
(12245, 'https://ror.org/02p1xqf92', 'no_lang_code', 1, 'https://ror.org/02p1xqf92 Centro Laser'),
(12246, 'https://ror.org/02p1zps28', 'en', 1, 'https://ror.org/02p1zps28 Asperger/Autism Network'),
(12247, 'https://ror.org/02p210k88', 'en', 1, 'https://ror.org/02p210k88 John T. Mather Memorial Hospital'),
(12248, 'https://ror.org/02p3cs867', 'no_lang_code', 1, 'https://ror.org/02p3cs867 T6 (Italy)'),
(12249, 'https://ror.org/02p4mb484', 'en', 1, 'https://ror.org/02p4mb484 Plan International Tanzania'),
(12250, 'https://ror.org/02p5vjg42', 'en', 1, 'https://ror.org/02p5vjg42 Dalton School'),
(12251, 'https://ror.org/02p7ad522', 'en', 1, 'https://ror.org/02p7ad522 New England Coalition for Cancer Survivorship'),
(12252, 'https://ror.org/02p96gg69', 'no_lang_code', 1, 'https://ror.org/02p96gg69 Marathon Kids'),
(12253, 'https://ror.org/02p9c1e58', 'no_lang_code', 1, 'https://ror.org/02p9c1e58 KWS Saat (Germany)'),
(12254, 'https://ror.org/02pas9b60', 'en', 1, 'https://ror.org/02pas9b60 Krell Institute'),
(12255, 'https://ror.org/02pbsj156', 'no_lang_code', 1, 'https://ror.org/02pbsj156 OPKO Health (United States)'),
(12256, 'https://ror.org/02petqk07', 'no_lang_code', 1, 'https://ror.org/02petqk07 Huntsman (Switzerland)'),
(12257, 'https://ror.org/02pft9k47', 'es', 1, 'https://ror.org/02pft9k47 Centro Nacional de Sanidad Agropecuaria'),
(12258, 'https://ror.org/02pkfda39', 'en', 1, 'https://ror.org/02pkfda39 Open Arms of Minnesota'),
(12259, 'https://ror.org/02pp21x07', 'en', 1, 'https://ror.org/02pp21x07 La Crosse Medical Health Science Consortium'),
(12260, 'https://ror.org/02ppjec98', 'en', 1, 'https://ror.org/02ppjec98 Community Services Unlimited'),
(12261, 'https://ror.org/02pq0ct17', 'no_lang_code', 1, 'https://ror.org/02pq0ct17 Avrygen (United States)'),
(12262, 'https://ror.org/02pq27251', 'en', 1, 'https://ror.org/02pq27251 Oklahoma Department of Human Services'),
(12263, 'https://ror.org/02prjad05', 'en', 1, 'https://ror.org/02prjad05 Abilities Unlimited of the Carolinas'),
(12264, 'https://ror.org/02pt5ea98', 'no_lang_code', 1, 'https://ror.org/02pt5ea98 Industry Vision Automation (United States)'),
(12265, 'https://ror.org/02ptz5951', 'en', 1, 'https://ror.org/02ptz5951 Gemeinsame Forschungsstelle Joint Research Centre'),
(12266, 'https://ror.org/02pw5x542', 'no_lang_code', 1, 'https://ror.org/02pw5x542 Isojet Equipements (France)'),
(12267, 'https://ror.org/02pwd4094', 'en', 1, 'https://ror.org/02pwd4094 Grossmont Hospital Foundation'),
(12268, 'https://ror.org/02px37122', 'en', 1, 'https://ror.org/02px37122 Florida Cancer Specialists & Research Institute'),
(12269, 'https://ror.org/02pxbbk34', 'en', 1, 'https://ror.org/02pxbbk34 Ministero dell''Interno Ministry of Interior'),
(12270, 'https://ror.org/02pzjnn79', 'en', 1, 'https://ror.org/02pzjnn79 Regional Environmental Council'),
(12271, 'https://ror.org/02pzmkw23', 'en', 1, 'https://ror.org/02pzmkw23 American Friends Service Committee'),
(12272, 'https://ror.org/02q3a7088', 'en', 1, 'https://ror.org/02q3a7088 Instytut Gospodarki Surowcami Mineralnymi i Energią Polskiej Akademii Nauk Mineral and Energy Economy Research Institute of the Polish Academy of Sciences'),
(12273, 'https://ror.org/02q6d6830', 'no_lang_code', 1, 'https://ror.org/02q6d6830 Secor Strategies (United States)'),
(12274, 'https://ror.org/02q6q6m23', 'en', 1, 'https://ror.org/02q6q6m23 San Bernardino County Department of Public Health'),
(12275, 'https://ror.org/02q7bh346', 'en', 1, 'https://ror.org/02q7bh346 ExploreMars'),
(12276, 'https://ror.org/02q7rpv07', 'en', 1, 'https://ror.org/02q7rpv07 Dillard Academy'),
(12277, 'https://ror.org/02q8btt40', 'no_lang_code', 1, 'https://ror.org/02q8btt40 Aterica (Canada)'),
(12278, 'https://ror.org/02q9khv47', 'no_lang_code', 1, 'https://ror.org/02q9khv47 Factum'),
(12279, 'https://ror.org/02qarj925', 'en', 1, 'https://ror.org/02qarj925 Michigan Institute for Neurological Disorders'),
(12280, 'https://ror.org/02qcw9v04', 'en', 1, 'https://ror.org/02qcw9v04 Malta Resources Authority'),
(12281, 'https://ror.org/02qcxga94', 'en', 1, 'https://ror.org/02qcxga94 European Union Road Federation'),
(12282, 'https://ror.org/02qfp6t71', 'no_lang_code', 1, 'https://ror.org/02qfp6t71 Rikola (Finland)'),
(12283, 'https://ror.org/02qk65b13', 'en', 1, 'https://ror.org/02qk65b13 Brooklyn Technical High School'),
(12284, 'https://ror.org/02qnmmb02', 'en', 1, 'https://ror.org/02qnmmb02 Minnesota Epilepsy Group'),
(12285, 'https://ror.org/02qp62108', 'no_lang_code', 1, 'https://ror.org/02qp62108 Plansee (Austria)'),
(12286, 'https://ror.org/02qs54046', 'no_lang_code', 1, 'https://ror.org/02qs54046 Busek (United States)'),
(12287, 'https://ror.org/02qs5ar77', 'no_lang_code', 1, 'https://ror.org/02qs5ar77 Azienda Trasporti Milanesi (Italy)'),
(12288, 'https://ror.org/02qwkar08', 'no_lang_code', 1, 'https://ror.org/02qwkar08 Mitra Biotech (India)'),
(12289, 'https://ror.org/02r2t8x54', 'it', 1, 'https://ror.org/02r2t8x54 Lega Italiana per la Lotta ai Tumori'),
(12290, 'https://ror.org/02r30yj10', 'en', 1, 'https://ror.org/02r30yj10 European Incoherent Scatter Scientific Association'),
(12291, 'https://ror.org/02r382680', 'bs', 1, 'https://ror.org/02r382680 Prona'),
(12292, 'https://ror.org/02r3t1479', 'no_lang_code', 1, 'https://ror.org/02r3t1479 Adbroncus (Spain)'),
(12293, 'https://ror.org/02r4vbb57', 'no_lang_code', 1, 'https://ror.org/02r4vbb57 Metaclipse Therapeutics (United States)'),
(12294, 'https://ror.org/02r50zr04', 'no_lang_code', 1, 'https://ror.org/02r50zr04 Algoritmos Procesos y Disenos (Spain)'),
(12295, 'https://ror.org/02r65gs06', 'no_lang_code', 1, 'https://ror.org/02r65gs06 Institute of Telecommunication and Information Technologies Instytut Technik Telekomunikacyjnych i Informatycznych (Poland)'),
(12296, 'https://ror.org/02r7md321', 'en', 1, 'https://ror.org/02r7md321 North Florida/South Georgia Veterans Health System'),
(12297, 'https://ror.org/02r7qvh89', 'en', 1, 'https://ror.org/02r7qvh89 Friends of L''Arche Long Island'),
(12298, 'https://ror.org/02r7v3q78', 'no_lang_code', 1, 'https://ror.org/02r7v3q78 Wilks (United States)'),
(12299, 'https://ror.org/02rae2f41', 'en', 1, 'https://ror.org/02rae2f41 International Women''s Development Agency'),
(12300, 'https://ror.org/02rawbx68', 'en', 1, 'https://ror.org/02rawbx68 Disability Rights and Resources'),
(12301, 'https://ror.org/02rb8qp97', 'no_lang_code', 1, 'https://ror.org/02rb8qp97 CISSOID (Belgium)'),
(12302, 'https://ror.org/02rc7fh29', 'it', 1, 'https://ror.org/02rc7fh29 Presidenza Del Consiglio Dei Ministri'),
(12303, 'https://ror.org/02rchr797', 'no_lang_code', 1, 'https://ror.org/02rchr797 Alma Consulting Group'),
(12304, 'https://ror.org/02reezy47', 'de', 1, 'https://ror.org/02reezy47 Hahn-Schickard-Gesellschaft für angewandte Forschung'),
(12305, 'https://ror.org/02rgt2f70', 'en', 1, 'https://ror.org/02rgt2f70 Center for Women Policy'),
(12306, 'https://ror.org/02rhh1947', 'en', 1, 'https://ror.org/02rhh1947 Barnert Temple'),
(12307, 'https://ror.org/02rjkjw28', 'es', 1, 'https://ror.org/02rjkjw28 PoliclĆ­nica Gipuzkoa'),
(12308, 'https://ror.org/02rmbgc23', 'en', 1, 'https://ror.org/02rmbgc23 National Council for the Blind of Ireland'),
(12309, 'https://ror.org/02rn5vx39', 'no_lang_code', 1, 'https://ror.org/02rn5vx39 Yield10 Bioscience (United States)'),
(12310, 'https://ror.org/02rn8bz16', 'en', 1, 'https://ror.org/02rn8bz16 Candlelighters Childhood Cancer Foundation of Nevada'),
(12311, 'https://ror.org/02rpq7p88', 'no_lang_code', 1, 'https://ror.org/02rpq7p88 ProFishent (United States)'),
(12312, 'https://ror.org/02rrdqs77', 'en', 1, 'https://ror.org/02rrdqs77 Friends of Karen'),
(12313, 'https://ror.org/02rrff887', 'no_lang_code', 1, 'https://ror.org/02rrff887 Synovo (Germany)'),
(12314, 'https://ror.org/02rrpz836', 'en', 1, 'https://ror.org/02rrpz836 Institute for EthnoMedicine'),
(12315, 'https://ror.org/02rsq6w37', 'en', 1, 'https://ror.org/02rsq6w37 Ignite Adaptive Sports'),
(12316, 'https://ror.org/02rt6h515', 'en', 1, 'https://ror.org/02rt6h515 American Indian Cancer Foundation'),
(12317, 'https://ror.org/02rtft424', 'no_lang_code', 1, 'https://ror.org/02rtft424 Marimatech (Denmark)'),
(12318, 'https://ror.org/02rttpd54', 'en', 1, 'https://ror.org/02rttpd54 Center for Dairy Excellence'),
(12319, 'https://ror.org/02rvg0b63', 'en', 1, 'https://ror.org/02rvg0b63 Mandela Partners'),
(12320, 'https://ror.org/02rvwv313', 'en', 1, 'https://ror.org/02rvwv313 The Big Garden'),
(12321, 'https://ror.org/02rwjxz53', 'en', 1, 'https://ror.org/02rwjxz53 Lassen County'),
(12322, 'https://ror.org/02rwmrd69', 'no_lang_code', 1, 'https://ror.org/02rwmrd69 SMK Plants (United States)'),
(12323, 'https://ror.org/02rxn8n18', 'en', 1, 'https://ror.org/02rxn8n18 The Carolinas Center'),
(12324, 'https://ror.org/02ry21p36', 'no_lang_code', 1, 'https://ror.org/02ry21p36 LMG Marin (Norway)'),
(12325, 'https://ror.org/02ry8c790', 'en', 1, 'https://ror.org/02ry8c790 Beads of Courage'),
(12326, 'https://ror.org/02rzjwn50', 'en', 1, 'https://ror.org/02rzjwn50 William H Miner Agricultural Research Institute'),
(12327, 'https://ror.org/02s09ka34', 'no_lang_code', 1, 'https://ror.org/02s09ka34 SSS Optical Technologies'),
(12328, 'https://ror.org/02s27py21', 'es', 1, 'https://ror.org/02s27py21 Centro de Estudios y Experimentación de Obras Públicas'),
(12329, 'https://ror.org/02s47bn48', 'en', 1, 'https://ror.org/02s47bn48 Meadows Regional Medical Center'),
(12330, 'https://ror.org/02s4h3z39', 'en', 1, 'https://ror.org/02s4h3z39 Ural Branch of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŠø Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(12331, 'https://ror.org/02s6bef14', 'no_lang_code', 1, 'https://ror.org/02s6bef14 Azienda Trasporti Consorziali di Bologna'),
(12332, 'https://ror.org/02s87b036', 'fr', 1, 'https://ror.org/02s87b036 Fondation pour la Recherche StratƩgique Foundation for Strategic Research'),
(12333, 'https://ror.org/02s8sn816', 'en', 1, 'https://ror.org/02s8sn816 Maasai Wilderness Conservation Trust'),
(12334, 'https://ror.org/02s9dw784', 'no_lang_code', 1, 'https://ror.org/02s9dw784 Gesellschaft für Elektrometallurgie (Germany)'),
(12335, 'https://ror.org/02sbnaz67', 'no_lang_code', 1, 'https://ror.org/02sbnaz67 Stamatopoulos and Associates (Greece)'),
(12336, 'https://ror.org/02sbnzn21', 'en', 1, 'https://ror.org/02sbnzn21 Massachusetts Pain Initiative'),
(12337, 'https://ror.org/02sfn4p13', 'no_lang_code', 1, 'https://ror.org/02sfn4p13 Enterprise Estonia (Estonia)'),
(12338, 'https://ror.org/02sfxxg21', 'en', 1, 'https://ror.org/02sfxxg21 Eastchester Center for Cancer Care'),
(12339, 'https://ror.org/02sgq5295', 'no_lang_code', 1, 'https://ror.org/02sgq5295 Pronto Diagnostics (Israel) חברת ×¤×Ø×•× ×˜×• דיאגנוהטיקה'),
(12340, 'https://ror.org/02sjyd344', 'en', 1, 'https://ror.org/02sjyd344 Fort Collins Rowing Association'),
(12341, 'https://ror.org/02sk93007', 'no_lang_code', 1, 'https://ror.org/02sk93007 Jonah’s Just Begun'),
(12342, 'https://ror.org/02skcpv41', 'es', 1, 'https://ror.org/02skcpv41 Asociación de Investigación y Cooperación Industrial de Andalucía'),
(12343, 'https://ror.org/02smbdp69', 'en', 1, 'https://ror.org/02smbdp69 Rio Puerco & Jemez Watershed Alliance'),
(12344, 'https://ror.org/02sqpat83', 'no_lang_code', 1, 'https://ror.org/02sqpat83 SYSTRA (United Kingdom)'),
(12345, 'https://ror.org/02stmg653', 'en', 1, 'https://ror.org/02stmg653 Pilipino Senior Resource Center'),
(12346, 'https://ror.org/02svff837', 'en', 1, 'https://ror.org/02svff837 Leading Age'),
(12347, 'https://ror.org/02svqt910', 'en', 1, 'https://ror.org/02svqt910 European Institute for Biomedical Imaging Research'),
(12348, 'https://ror.org/02svw4v94', 'en', 1, 'https://ror.org/02svw4v94 Hauppauge Public School'),
(12349, 'https://ror.org/02sy45055', 'no_lang_code', 1, 'https://ror.org/02sy45055 Inspire'),
(12350, 'https://ror.org/02syz9r75', 'no_lang_code', 1, 'https://ror.org/02syz9r75 Etrel (Slovenia)'),
(12351, 'https://ror.org/02szmkw66', 'en', 1, 'https://ror.org/02szmkw66 Child Aid Organization Kenya'),
(12352, 'https://ror.org/02t1dfc91', 'no_lang_code', 1, 'https://ror.org/02t1dfc91 Idetra (Spain)'),
(12353, 'https://ror.org/02t21c861', 'en', 1, 'https://ror.org/02t21c861 Collinsville Area Recreation District'),
(12354, 'https://ror.org/02t2d6j21', 'en', 1, 'https://ror.org/02t2d6j21 Institute of Baltic Studies'),
(12355, 'https://ror.org/02t31fs67', 'en', 1, 'https://ror.org/02t31fs67 Office of the Prime Minister of Malta Primo Ministro di Malta'),
(12356, 'https://ror.org/02t75hb67', 'no_lang_code', 1, 'https://ror.org/02t75hb67 Lagerwey Wind (Netherlands)'),
(12357, 'https://ror.org/02t78v594', 'en', 1, 'https://ror.org/02t78v594 Greater Holy Temple Church Of God In Christ'),
(12358, 'https://ror.org/02ta1dj76', 'en', 1, 'https://ror.org/02ta1dj76 The Princeton Festival'),
(12359, 'https://ror.org/02ta1kn73', 'en', 1, 'https://ror.org/02ta1kn73 Cancer Wellness Center'),
(12360, 'https://ror.org/02tb8n028', 'en', 1, 'https://ror.org/02tb8n028 Institute of Bioorganic Chemistry and Petrochemistry V.P. Kukhar'),
(12361, 'https://ror.org/02tce8t86', 'en', 1, 'https://ror.org/02tce8t86 Global Climate Forum'),
(12362, 'https://ror.org/02td5wn81', 'en', 1, 'https://ror.org/02td5wn81 Ono Academic College הקריה ×”××§×“×ž×™×Ŗ אונו'),
(12363, 'https://ror.org/02tdaj973', 'en', 1, 'https://ror.org/02tdaj973 Ascension Via Christi Hospital'),
(12364, 'https://ror.org/02te3sp65', 'en', 1, 'https://ror.org/02te3sp65 National Law Enforcement and Firefighters Children’s Foundation'),
(12365, 'https://ror.org/02tf6tv07', 'no_lang_code', 1, 'https://ror.org/02tf6tv07 Picosun (Finland)'),
(12366, 'https://ror.org/02th50f93', 'no_lang_code', 1, 'https://ror.org/02th50f93 Akka Technologies (France)'),
(12367, 'https://ror.org/02tmwx483', 'en', 1, 'https://ror.org/02tmwx483 Adirondack Medical Center'),
(12368, 'https://ror.org/02trd1e52', 'en', 1, 'https://ror.org/02trd1e52 Regional Arab Network against AIDS'),
(12369, 'https://ror.org/02try9452', 'no_lang_code', 1, 'https://ror.org/02try9452 Sea Bird Electronics (United States)'),
(12370, 'https://ror.org/02tsp7733', 'en', 1, 'https://ror.org/02tsp7733 New York State Office of Children and Family Services'),
(12371, 'https://ror.org/02tts0b67', 'no_lang_code', 1, 'https://ror.org/02tts0b67 Sandvik (United Kingdom)'),
(12372, 'https://ror.org/02twk3504', 'no_lang_code', 1, 'https://ror.org/02twk3504 GF Machining Solutions (Sweden)'),
(12373, 'https://ror.org/02tyjnv32', 'en', 1, 'https://ror.org/02tyjnv32 Saitama Medical University Hospital åŸ¼ēŽ‰åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(12374, 'https://ror.org/02v26hv54', 'no_lang_code', 1, 'https://ror.org/02v26hv54 Imerys (Germany)'),
(12375, 'https://ror.org/02v2xvd66', 'en', 1, 'https://ror.org/02v2xvd66 San Ysidro Health'),
(12376, 'https://ror.org/02v5a7318', 'en', 1, 'https://ror.org/02v5a7318 Indiana Association of United Ways'),
(12377, 'https://ror.org/02vcdte90', 'no_lang_code', 1, 'https://ror.org/02vcdte90 Olympus (United States)'),
(12378, 'https://ror.org/02vdjrg05', 'en', 1, 'https://ror.org/02vdjrg05 Max Healthcare'),
(12379, 'https://ror.org/02vf5m226', 'en', 1, 'https://ror.org/02vf5m226 Strategic Design Scenarios'),
(12380, 'https://ror.org/02vfhfv39', 'no_lang_code', 1, 'https://ror.org/02vfhfv39 PRĆ© Consultants'),
(12381, 'https://ror.org/02vgejx91', 'no_lang_code', 1, 'https://ror.org/02vgejx91 Aircraft Research Association'),
(12382, 'https://ror.org/02vjgqy71', 'en', 1, 'https://ror.org/02vjgqy71 Elijah House'),
(12383, 'https://ror.org/02vmgn461', 'no_lang_code', 1, 'https://ror.org/02vmgn461 Esaote (Italy)'),
(12384, 'https://ror.org/02vn2vd34', 'en', 1, 'https://ror.org/02vn2vd34 Columbus Regional Healthcare System'),
(12385, 'https://ror.org/02vpj2j75', 'no_lang_code', 1, 'https://ror.org/02vpj2j75 Neurotez (United States)'),
(12386, 'https://ror.org/02vrwrw10', 'en', 1, 'https://ror.org/02vrwrw10 Hospice of the Western Reserve'),
(12387, 'https://ror.org/02vt9tw94', 'no_lang_code', 1, 'https://ror.org/02vt9tw94 MicroLIQUID (Spain)'),
(12388, 'https://ror.org/02vw8cm83', 'no', 1, 'https://ror.org/02vw8cm83 Norsar'),
(12389, 'https://ror.org/02vx92p56', 'en', 1, 'https://ror.org/02vx92p56 Clubhouse International'),
(12390, 'https://ror.org/02vxn7j69', 'no_lang_code', 1, 'https://ror.org/02vxn7j69 European Telecommunications Satellite Organization'),
(12391, 'https://ror.org/02vxxy693', 'no_lang_code', 1, 'https://ror.org/02vxxy693 JENAer Meßtechnik (Germany)'),
(12392, 'https://ror.org/02vz4ta64', 'en', 1, 'https://ror.org/02vz4ta64 Camp Boggy Creek'),
(12393, 'https://ror.org/02vzt4388', 'no_lang_code', 1, 'https://ror.org/02vzt4388 Bruel & Kjaer Sound and Vibration Measurement (Denmark)'),
(12394, 'https://ror.org/02w2r5196', 'no_lang_code', 1, 'https://ror.org/02w2r5196 Triqua (Netherlands)'),
(12395, 'https://ror.org/02w3sz211', 'en', 1, 'https://ror.org/02w3sz211 Harford Research Institute'),
(12396, 'https://ror.org/02w5w7488', 'en', 1, 'https://ror.org/02w5w7488 Hellenic Statistical Authority Ελληνική Ī£Ļ„Ī±Ļ„Ī¹ĻƒĻ„Ī¹ĪŗĪ® Αρχή'),
(12397, 'https://ror.org/02w7mbm90', 'en', 1, 'https://ror.org/02w7mbm90 Institute of Metallurgy and Materials Science Instytut Metalurgii i Inżynierii Materiałowej PAN'),
(12398, 'https://ror.org/02w94dx49', 'en', 1, 'https://ror.org/02w94dx49 Illinois Farm Bureau'),
(12399, 'https://ror.org/02we5km93', 'en', 1, 'https://ror.org/02we5km93 Fund for Park Avenue'),
(12400, 'https://ror.org/02we6hx96', 'en', 1, 'https://ror.org/02we6hx96 Institute of Physics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізики ŠŠŠ України Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики ŠŠŠ Украины'),
(12401, 'https://ror.org/02wejrm29', 'en', 1, 'https://ror.org/02wejrm29 Cancer Services of New Mexico'),
(12402, 'https://ror.org/02weyc170', 'no_lang_code', 1, 'https://ror.org/02weyc170 AquaBioTech Group (Malta)'),
(12403, 'https://ror.org/02wf15744', 'no_lang_code', 1, 'https://ror.org/02wf15744 Foster and Partners (United Kingdom)'),
(12404, 'https://ror.org/02whbag62', 'en', 1, 'https://ror.org/02whbag62 Lutheran Hospital'),
(12405, 'https://ror.org/02wnbr922', 'no_lang_code', 1, 'https://ror.org/02wnbr922 IBM (France)'),
(12406, 'https://ror.org/02wqw9g56', 'en', 1, 'https://ror.org/02wqw9g56 Science Centre AHHAA'),
(12407, 'https://ror.org/02wr67907', 'no_lang_code', 1, 'https://ror.org/02wr67907 LPW Technology (United Kingdom)'),
(12408, 'https://ror.org/02wt3dg04', 'no_lang_code', 1, 'https://ror.org/02wt3dg04 Safinah (United Kingdom)'),
(12409, 'https://ror.org/02wtzjm20', 'en', 1, 'https://ror.org/02wtzjm20 Neurological Recovery House'),
(12410, 'https://ror.org/02wvp2z28', 'en', 1, 'https://ror.org/02wvp2z28 The Salvation Army United States'),
(12411, 'https://ror.org/02wxcva98', 'en', 1, 'https://ror.org/02wxcva98 African Institute for Development Policy'),
(12412, 'https://ror.org/02wzfbs47', 'no_lang_code', 1, 'https://ror.org/02wzfbs47 Instituto Tecnológico de Canarias Technological Institute of the Canary Islands'),
(12413, 'https://ror.org/02x2mw849', 'en', 1, 'https://ror.org/02x2mw849 Turing Institute'),
(12414, 'https://ror.org/02x3swg45', 'no_lang_code', 1, 'https://ror.org/02x3swg45 Oasis Diagnostics (United States)'),
(12415, 'https://ror.org/02x3w5g21', 'en', 1, 'https://ror.org/02x3w5g21 Ministerie van Onderwijs, Cultuur en Wetenschappe Ministry of Education Culture and Science'),
(12416, 'https://ror.org/02x5exm81', 'no_lang_code', 1, 'https://ror.org/02x5exm81 E.ON (France)'),
(12417, 'https://ror.org/02x5wzm46', 'es', 1, 'https://ror.org/02x5wzm46 Fundacion Favaloro Hospital Universitario'),
(12418, 'https://ror.org/02x6c2007', 'en', 1, 'https://ror.org/02x6c2007 Lifeline Hospital'),
(12419, 'https://ror.org/02x78ab05', 'en', 1, 'https://ror.org/02x78ab05 European Cancer Prevention'),
(12420, 'https://ror.org/02x79tw02', 'no_lang_code', 1, 'https://ror.org/02x79tw02 ALD Vacuum Technologies (Germany)'),
(12421, 'https://ror.org/02x7g2480', 'en', 1, 'https://ror.org/02x7g2480 Proof Alliance'),
(12422, 'https://ror.org/02xb2kd32', 'de', 1, 'https://ror.org/02xb2kd32 OƖ Energiesparverband'),
(12423, 'https://ror.org/02xbm2630', 'en', 1, 'https://ror.org/02xbm2630 Metropolitan Research Institute'),
(12424, 'https://ror.org/02xdt2g09', 'en', 1, 'https://ror.org/02xdt2g09 Center for Accessible Living'),
(12425, 'https://ror.org/02xgttq77', 'no_lang_code', 1, 'https://ror.org/02xgttq77 Terma (Denmark)'),
(12426, 'https://ror.org/02xk1w092', 'no_lang_code', 1, 'https://ror.org/02xk1w092 Tecos (Slovenia)'),
(12427, 'https://ror.org/02xnk0c33', 'no_lang_code', 1, 'https://ror.org/02xnk0c33 In Silico Biosciences (United States)'),
(12428, 'https://ror.org/02xstv633', 'no_lang_code', 1, 'https://ror.org/02xstv633 Ball (United States)'),
(12429, 'https://ror.org/02xv7d798', 'en', 1, 'https://ror.org/02xv7d798 Seaberry Farm'),
(12430, 'https://ror.org/02y0pmx13', 'en', 1, 'https://ror.org/02y0pmx13 Cohoes Family Care'),
(12431, 'https://ror.org/02y169n53', 'en', 1, 'https://ror.org/02y169n53 Bay Area Houston Economic Partnership'),
(12432, 'https://ror.org/02y22dj89', 'no_lang_code', 1, 'https://ror.org/02y22dj89 KUKA (Germany) Keller und Knappich Augsburg'),
(12433, 'https://ror.org/02y4abh66', 'en', 1, 'https://ror.org/02y4abh66 Upstate Freshwater Institute'),
(12434, 'https://ror.org/02y8rpf68', 'en', 1, 'https://ror.org/02y8rpf68 HorseAbility'),
(12435, 'https://ror.org/02y96rp12', 'en', 1, 'https://ror.org/02y96rp12 Comer Children''s Hospital'),
(12436, 'https://ror.org/02ya9c216', 'no_lang_code', 1, 'https://ror.org/02ya9c216 HM3 Energy'),
(12437, 'https://ror.org/02ybv7q93', 'no_lang_code', 1, 'https://ror.org/02ybv7q93 Engie (France)'),
(12438, 'https://ror.org/02yer3h76', 'en', 1, 'https://ror.org/02yer3h76 Pine Cobble School'),
(12439, 'https://ror.org/02ygbgq54', 'no_lang_code', 1, 'https://ror.org/02ygbgq54 Area I (United States)'),
(12440, 'https://ror.org/02ygqy715', 'no_lang_code', 1, 'https://ror.org/02ygqy715 Calista Therapeutics (United States)'),
(12441, 'https://ror.org/02ygt0g54', 'en', 1, 'https://ror.org/02ygt0g54 Tohono O''odham Community Action'),
(12442, 'https://ror.org/02yhka621', 'en', 1, 'https://ror.org/02yhka621 Chugach School District'),
(12443, 'https://ror.org/02yjhs723', 'en', 1, 'https://ror.org/02yjhs723 McIntosh Sustainable Environment and Economic Development'),
(12444, 'https://ror.org/02yn37v47', 'en', 1, 'https://ror.org/02yn37v47 Douglas Gardens Hospital'),
(12445, 'https://ror.org/02yq4v676', 'no_lang_code', 1, 'https://ror.org/02yq4v676 EVECO Brno (Czechia)'),
(12446, 'https://ror.org/02yrcx115', 'en', 1, 'https://ror.org/02yrcx115 Texas Health Harris Methodist Hospital Fort Worth'),
(12447, 'https://ror.org/02yre5r83', 'en', 1, 'https://ror.org/02yre5r83 Chase Brexton Health Care'),
(12448, 'https://ror.org/02ys5x139', 'en', 1, 'https://ror.org/02ys5x139 Illinois College'),
(12449, 'https://ror.org/02yse6y23', 'en', 1, 'https://ror.org/02yse6y23 Central Park Conservancy'),
(12450, 'https://ror.org/02ytj9t26', 'en', 1, 'https://ror.org/02ytj9t26 Plan International'),
(12451, 'https://ror.org/02ytpy253', 'en', 1, 'https://ror.org/02ytpy253 Society for Nutrition Education and Behavior'),
(12452, 'https://ror.org/02yw9ws62', 'en', 1, 'https://ror.org/02yw9ws62 Center for Asthma, Allergy and Respiratory Disease'),
(12453, 'https://ror.org/02yycpb11', 'en', 1, 'https://ror.org/02yycpb11 Higher Ground Sun Valley'),
(12454, 'https://ror.org/02z0n2g81', 'no_lang_code', 1, 'https://ror.org/02z0n2g81 ArƧelik (Turkey)'),
(12455, 'https://ror.org/02z663265', 'no_lang_code', 1, 'https://ror.org/02z663265 Intelligent Sensing Anywhere (Portugal)'),
(12456, 'https://ror.org/02z7cdf88', 'en', 1, 'https://ror.org/02z7cdf88 Cypress Hills Local Development Corporation'),
(12457, 'https://ror.org/02z8d3d73', 'en', 1, 'https://ror.org/02z8d3d73 Faraja Cancer Support Trust'),
(12458, 'https://ror.org/02z972f25', 'en', 1, 'https://ror.org/02z972f25 Girls Power Initiative'),
(12459, 'https://ror.org/02zahyc48', 'no_lang_code', 1, 'https://ror.org/02zahyc48 PRO DV (Germany)'),
(12460, 'https://ror.org/02zbmht46', 'no_lang_code', 1, 'https://ror.org/02zbmht46 Analytical Imaging and Geophysics (United States)'),
(12461, 'https://ror.org/02zc9ks44', 'no_lang_code', 1, 'https://ror.org/02zc9ks44 Temis (France)'),
(12462, 'https://ror.org/02zcy8d62', 'en', 1, 'https://ror.org/02zcy8d62 National Research Institute of Rural Engineering, Water and Forests'),
(12463, 'https://ror.org/02zdssw25', 'el', 1, 'https://ror.org/02zdssw25 Dimitra');
INSERT INTO `rors` VALUES
(12464, 'https://ror.org/02zeqvn38', 'no_lang_code', 1, 'https://ror.org/02zeqvn38 EMC Microcollections (Germany)'),
(12465, 'https://ror.org/02zf60s91', 'en', 1, 'https://ror.org/02zf60s91 ANT Foundation Italy Onlus Fondazione ANT Italia ONLUS'),
(12466, 'https://ror.org/02zf66j21', 'en', 1, 'https://ror.org/02zf66j21 Cultural Site Research and Management'),
(12467, 'https://ror.org/02zf97m15', 'en', 1, 'https://ror.org/02zf97m15 Johnston Memorial Hospital'),
(12468, 'https://ror.org/02zk14v48', 'en', 1, 'https://ror.org/02zk14v48 Our Family Services'),
(12469, 'https://ror.org/02zksq237', 'es', 1, 'https://ror.org/02zksq237 Asociación de la Industria Navarra'),
(12470, 'https://ror.org/02zmbcj69', 'no_lang_code', 1, 'https://ror.org/02zmbcj69 Forest Concepts (United States)'),
(12471, 'https://ror.org/02zmq8s40', 'en', 1, 'https://ror.org/02zmq8s40 Health Information Management'),
(12472, 'https://ror.org/02zp8yy63', 'no_lang_code', 1, 'https://ror.org/02zp8yy63 FEG Textiltechnik (Germany)'),
(12473, 'https://ror.org/02zqmy106', 'no_lang_code', 1, 'https://ror.org/02zqmy106 Transport & Travel Research (United Kingdom)'),
(12474, 'https://ror.org/02zrfm475', 'en', 1, 'https://ror.org/02zrfm475 Ministry of the Internal Administration Ministério da Administração Interna'),
(12475, 'https://ror.org/02zsk0y62', 'en', 1, 'https://ror.org/02zsk0y62 Harris County Hospital District Foundation'),
(12476, 'https://ror.org/02zv5ec81', 'en', 1, 'https://ror.org/02zv5ec81 Ntengwe for Community Development'),
(12477, 'https://ror.org/02zvtbe65', 'de', 1, 'https://ror.org/02zvtbe65 Institut für Zukunftsstudien und Technologiebewertung'),
(12478, 'https://ror.org/02zwkwz55', 'fr', 1, 'https://ror.org/02zwkwz55 Institut National de l''Audiovisuel National Audiovisual Institute'),
(12479, 'https://ror.org/02zwp3607', 'en', 1, 'https://ror.org/02zwp3607 Family Service Center of Galveston County'),
(12480, 'https://ror.org/02zx9pq98', 'en', 1, 'https://ror.org/02zx9pq98 Innova HealthCare Services'),
(12481, 'https://ror.org/02zz2nb17', 'no_lang_code', 1, 'https://ror.org/02zz2nb17 KeyGene (Netherlands)'),
(12482, 'https://ror.org/03019wv17', 'en', 1, 'https://ror.org/03019wv17 National Multiple Sclerosis Society'),
(12483, 'https://ror.org/03019xy09', 'de', 1, 'https://ror.org/03019xy09 Deutsche Gesellschaft für Holzforschung'),
(12484, 'https://ror.org/030635250', 'en', 1, 'https://ror.org/030635250 Lustgarten Foundation'),
(12485, 'https://ror.org/03063wv95', 'en', 1, 'https://ror.org/03063wv95 Autism Science Foundation'),
(12486, 'https://ror.org/030a5js80', 'no_lang_code', 1, 'https://ror.org/030a5js80 Siegert Electronic (Germany)'),
(12487, 'https://ror.org/030bhtx29', 'no_lang_code', 1, 'https://ror.org/030bhtx29 Lixte (United States)'),
(12488, 'https://ror.org/030bzfc32', 'nl', 1, 'https://ror.org/030bzfc32 Kennisland'),
(12489, 'https://ror.org/030c4y728', 'sl', 1, 'https://ror.org/030c4y728 Construction Cluster of Slovenia Slovenski Gradbeni Grozd'),
(12490, 'https://ror.org/030chcw72', 'de', 1, 'https://ror.org/030chcw72 Zentrum für Foren in der Grafischen Datenverarbeitung'),
(12491, 'https://ror.org/030dahd49', 'en', 1, 'https://ror.org/030dahd49 Agricultural institute of Slovenia'),
(12492, 'https://ror.org/030dazv21', 'en', 1, 'https://ror.org/030dazv21 All Kinds Of Minds'),
(12493, 'https://ror.org/030e2am13', 'en', 1, 'https://ror.org/030e2am13 Human Relief Foundation'),
(12494, 'https://ror.org/030hzjj50', 'en', 1, 'https://ror.org/030hzjj50 Rhode Island Association of Conservation Districts'),
(12495, 'https://ror.org/030j17642', 'en', 1, 'https://ror.org/030j17642 Direct Relief'),
(12496, 'https://ror.org/030kh5t61', 'no_lang_code', 1, 'https://ror.org/030kh5t61 EDMA Innova'),
(12497, 'https://ror.org/030kvkp19', 'no_lang_code', 1, 'https://ror.org/030kvkp19 Coherent Logix (United States)'),
(12498, 'https://ror.org/030pnab13', 'en', 1, 'https://ror.org/030pnab13 Afrihealth Optonet Association'),
(12499, 'https://ror.org/030q5p958', 'no_lang_code', 1, 'https://ror.org/030q5p958 Solar Stream (United States)'),
(12500, 'https://ror.org/030rk0759', 'no_lang_code', 1, 'https://ror.org/030rk0759 Electrovac (Austria)'),
(12501, 'https://ror.org/030s5c086', 'no_lang_code', 1, 'https://ror.org/030s5c086 syncom'),
(12502, 'https://ror.org/030spt741', 'en', 1, 'https://ror.org/030spt741 Dragonfly Forest'),
(12503, 'https://ror.org/030x6kb17', 'no_lang_code', 1, 'https://ror.org/030x6kb17 Dune (Italy)'),
(12504, 'https://ror.org/030x94n68', 'en', 1, 'https://ror.org/030x94n68 KVC Health Systems'),
(12505, 'https://ror.org/030xyk527', 'no_lang_code', 1, 'https://ror.org/030xyk527 Oncotide Pharmaceuticals (United States)'),
(12506, 'https://ror.org/030xyq337', 'en', 1, 'https://ror.org/030xyq337 Local Agricultural Community Exchange'),
(12507, 'https://ror.org/031035t24', 'en', 1, 'https://ror.org/031035t24 Latinas Contra Cancer'),
(12508, 'https://ror.org/0310r6290', 'en', 1, 'https://ror.org/0310r6290 Cardinal Hill Rehabilitation Hospital'),
(12509, 'https://ror.org/0311ams29', 'no_lang_code', 1, 'https://ror.org/0311ams29 Tun Abdul Razak Research Centre'),
(12510, 'https://ror.org/0311sm390', 'en', 1, 'https://ror.org/0311sm390 Babylon Breast Cancer Coalition'),
(12511, 'https://ror.org/0313r6y71', 'no_lang_code', 1, 'https://ror.org/0313r6y71 Jan de Rijk Logistics (Netherlands)'),
(12512, 'https://ror.org/031432n58', 'de', 1, 'https://ror.org/031432n58 Deutsche Welle'),
(12513, 'https://ror.org/0314gk942', 'en', 1, 'https://ror.org/0314gk942 Betty Jean Kerr People’s Health Centers'),
(12514, 'https://ror.org/0315a3206', 'no_lang_code', 1, 'https://ror.org/0315a3206 Precitec (Germany)'),
(12515, 'https://ror.org/0315a7e71', 'en', 1, 'https://ror.org/0315a7e71 European Coordination Committee of the Radiological, Electromedical and Healthcare IT Industry'),
(12516, 'https://ror.org/0315hq159', 'en', 1, 'https://ror.org/0315hq159 European Centre for Nature Conservation'),
(12517, 'https://ror.org/0316wza58', 'no_lang_code', 1, 'https://ror.org/0316wza58 MicroVacuum (Hungary)'),
(12518, 'https://ror.org/0316y8420', 'no_lang_code', 1, 'https://ror.org/0316y8420 Fiberstar (United States)'),
(12519, 'https://ror.org/0317mgy72', 'en', 1, 'https://ror.org/0317mgy72 Disability Rights Legal Center'),
(12520, 'https://ror.org/0318myr61', 'fr', 1, 'https://ror.org/0318myr61 Arvalis - Institut du VƩgƩtal'),
(12521, 'https://ror.org/031a8k913', 'en', 1, 'https://ror.org/031a8k913 McCabe Centre for Law and Cancer'),
(12522, 'https://ror.org/031acn267', 'en', 1, 'https://ror.org/031acn267 Clinical Directors Network'),
(12523, 'https://ror.org/031ag2z89', 'en', 1, 'https://ror.org/031ag2z89 Florida Certified Organic Growers'),
(12524, 'https://ror.org/031bn8887', 'no_lang_code', 1, 'https://ror.org/031bn8887 Jenrin Discovery (United States)'),
(12525, 'https://ror.org/031c2y549', 'no_lang_code', 1, 'https://ror.org/031c2y549 TƁRKI Social Research Institute'),
(12526, 'https://ror.org/031e3n874', 'no_lang_code', 1, 'https://ror.org/031e3n874 Hellenic Telecommunications Organization (Greece)'),
(12527, 'https://ror.org/031fnb427', 'no_lang_code', 1, 'https://ror.org/031fnb427 Biosensores (Spain)'),
(12528, 'https://ror.org/031gmvg29', 'no_lang_code', 1, 'https://ror.org/031gmvg29 Siemens (Denmark)'),
(12529, 'https://ror.org/031h48w98', 'no_lang_code', 1, 'https://ror.org/031h48w98 AMS (Germany)'),
(12530, 'https://ror.org/031h57r44', 'fr', 1, 'https://ror.org/031h57r44 Doctors of the World MĆ©decins du Monde, medsÉ›Ģƒ dy mÉ”Ģƒd'),
(12531, 'https://ror.org/031hb4a81', 'en', 1, 'https://ror.org/031hb4a81 City School District of New Rochelle'),
(12532, 'https://ror.org/031hztf49', 'en', 1, 'https://ror.org/031hztf49 Fund for the City of New York'),
(12533, 'https://ror.org/031j4es70', 'en', 1, 'https://ror.org/031j4es70 Hospice of Metropolitan Erie'),
(12534, 'https://ror.org/031jky447', 'no_lang_code', 1, 'https://ror.org/031jky447 Alloksys (Netherlands)'),
(12535, 'https://ror.org/031jzsw63', 'no_lang_code', 1, 'https://ror.org/031jzsw63 Jobs (Italy)'),
(12536, 'https://ror.org/031kxs331', 'en', 1, 'https://ror.org/031kxs331 Koninklijke Musea voor Kunst en Geschiedenis MusƩes royaux d''Art et d''Histoire Royal Museums of Art and History'),
(12537, 'https://ror.org/031nhd722', 'no_lang_code', 1, 'https://ror.org/031nhd722 Axios Biosciences (United States)'),
(12538, 'https://ror.org/031v4g827', 'no_lang_code', 1, 'https://ror.org/031v4g827 NXP (Belgium)'),
(12539, 'https://ror.org/031wqg810', 'en', 1, 'https://ror.org/031wqg810 African Organisation for Research and Training in Cancer'),
(12540, 'https://ror.org/031xjr712', 'no_lang_code', 1, 'https://ror.org/031xjr712 Thales (Germany)'),
(12541, 'https://ror.org/031y9sy98', 'en', 1, 'https://ror.org/031y9sy98 National Aphasia Association'),
(12542, 'https://ror.org/0320fhd53', 'en', 1, 'https://ror.org/0320fhd53 Community Development and Sustainability Organization'),
(12543, 'https://ror.org/0322wda97', 'en', 1, 'https://ror.org/0322wda97 Los Angeles Pink Dragons'),
(12544, 'https://ror.org/0324fk698', 'no_lang_code', 1, 'https://ror.org/0324fk698 Open Window Productions (United States)'),
(12545, 'https://ror.org/0325nt175', 'no_lang_code', 1, 'https://ror.org/0325nt175 Biobase (Germany)'),
(12546, 'https://ror.org/0328xw886', 'no_lang_code', 1, 'https://ror.org/0328xw886 Amicus Therapeutics (United States)'),
(12547, 'https://ror.org/0329db993', 'en', 1, 'https://ror.org/0329db993 Challenger Center for Space Science Education'),
(12548, 'https://ror.org/032a8wh77', 'no_lang_code', 1, 'https://ror.org/032a8wh77 European Apparel and Textile Confederation'),
(12549, 'https://ror.org/032b2m661', 'en', 1, 'https://ror.org/032b2m661 Holos Institute'),
(12550, 'https://ror.org/032base07', 'no_lang_code', 1, 'https://ror.org/032base07 Inspira'),
(12551, 'https://ror.org/032c26s44', 'no_lang_code', 1, 'https://ror.org/032c26s44 Highlight Therapeutics (Spain)'),
(12552, 'https://ror.org/032c3ww89', 'en', 1, 'https://ror.org/032c3ww89 Challenge Aspen'),
(12553, 'https://ror.org/032d2f085', 'en', 1, 'https://ror.org/032d2f085 Cherokee Central Schools'),
(12554, 'https://ror.org/032dya782', 'en', 1, 'https://ror.org/032dya782 El Dorado County Health and Human Services Agency'),
(12555, 'https://ror.org/032dzsg05', 'en', 1, 'https://ror.org/032dzsg05 Chicago Board of Education'),
(12556, 'https://ror.org/032e8ae90', 'no_lang_code', 1, 'https://ror.org/032e8ae90 Bee Power (United States)'),
(12557, 'https://ror.org/032edw019', 'en', 1, 'https://ror.org/032edw019 Community GroundWorks'),
(12558, 'https://ror.org/032ep1086', 'no_lang_code', 1, 'https://ror.org/032ep1086 NOVAMINA Innovative Technology Centre'),
(12559, 'https://ror.org/032fdft79', 'it', 1, 'https://ror.org/032fdft79 Istituto Nazionale di Economia Agraria National Institute of Agricultural Economics'),
(12560, 'https://ror.org/032g70a71', 'en', 1, 'https://ror.org/032g70a71 Bangladesh Medical Association of North America'),
(12561, 'https://ror.org/032ksge37', 'en', 1, 'https://ror.org/032ksge37 Norwegian Geotechnical Institute'),
(12562, 'https://ror.org/032mp1e77', 'no_lang_code', 1, 'https://ror.org/032mp1e77 Total (Belgium)'),
(12563, 'https://ror.org/032mwt045', 'en', 1, 'https://ror.org/032mwt045 Neurology Center of Southern California'),
(12564, 'https://ror.org/032r53m24', 'no_lang_code', 1, 'https://ror.org/032r53m24 Cardiavent (United States)'),
(12565, 'https://ror.org/032rwz169', 'no_lang_code', 1, 'https://ror.org/032rwz169 Oncoceutics (United States)'),
(12566, 'https://ror.org/032s56e02', 'no_lang_code', 1, 'https://ror.org/032s56e02 Ceratizit (Luxembourg)'),
(12567, 'https://ror.org/032sbdv65', 'en', 1, 'https://ror.org/032sbdv65 Black Women for Wellness'),
(12568, 'https://ror.org/032tjz442', 'en', 1, 'https://ror.org/032tjz442 Oakland Symphony'),
(12569, 'https://ror.org/032tp7158', 'no_lang_code', 1, 'https://ror.org/032tp7158 Thales (Netherlands)'),
(12570, 'https://ror.org/032v09t14', 'en', 1, 'https://ror.org/032v09t14 Bundesnetzagentur Federal Network Agency'),
(12571, 'https://ror.org/032x1ws79', 'en', 1, 'https://ror.org/032x1ws79 Telecommunication Systems Research Institute'),
(12572, 'https://ror.org/032ynh934', 'en', 1, 'https://ror.org/032ynh934 New Hampshire Hospice and Palliative Care Organization'),
(12573, 'https://ror.org/032z7g248', 'en', 1, 'https://ror.org/032z7g248 Resources for Children with Special Needs'),
(12574, 'https://ror.org/0330jdp03', 'en', 1, 'https://ror.org/0330jdp03 Nepal Ambulance Service'),
(12575, 'https://ror.org/0330w1668', 'en', 1, 'https://ror.org/0330w1668 Montreat College'),
(12576, 'https://ror.org/0332h2t56', 'no_lang_code', 1, 'https://ror.org/0332h2t56 Dakota Rural Action (United States)'),
(12577, 'https://ror.org/0333kge30', 'en', 1, 'https://ror.org/0333kge30 Fishing Has No Boundaries'),
(12578, 'https://ror.org/03340ra78', 'no_lang_code', 1, 'https://ror.org/03340ra78 Thales (Spain)'),
(12579, 'https://ror.org/03350ng14', 'en', 1, 'https://ror.org/03350ng14 Buckelew Programs'),
(12580, 'https://ror.org/0335j3x48', 'en', 1, 'https://ror.org/0335j3x48 Eurocontrol'),
(12581, 'https://ror.org/0336mg751', 'no_lang_code', 1, 'https://ror.org/0336mg751 FutureSoft (United States)'),
(12582, 'https://ror.org/03377s592', 'no_lang_code', 1, 'https://ror.org/03377s592 Skolex Biotechnologies (United States)'),
(12583, 'https://ror.org/0337ytp02', 'en', 1, 'https://ror.org/0337ytp02 Hospice of Charles County'),
(12584, 'https://ror.org/033b6cz88', 'en', 1, 'https://ror.org/033b6cz88 Lupus Foundation of America'),
(12585, 'https://ror.org/033bbg733', 'no_lang_code', 1, 'https://ror.org/033bbg733 Mitel (United Kingdom)'),
(12586, 'https://ror.org/033ek1554', 'en', 1, 'https://ror.org/033ek1554 Hamot Health Foundation'),
(12587, 'https://ror.org/033g0hw83', 'en', 1, 'https://ror.org/033g0hw83 Finnish Society of Automation'),
(12588, 'https://ror.org/033g5xh94', 'en', 1, 'https://ror.org/033g5xh94 San Mateo County Probation'),
(12589, 'https://ror.org/033mhn155', 'no_lang_code', 1, 'https://ror.org/033mhn155 Kemakta Konsult'),
(12590, 'https://ror.org/033ns4t79', 'no_lang_code', 1, 'https://ror.org/033ns4t79 Cogito (United States)'),
(12591, 'https://ror.org/033pn6473', 'en', 1, 'https://ror.org/033pn6473 Harm Reduction Services'),
(12592, 'https://ror.org/033q0mv79', 'no_lang_code', 1, 'https://ror.org/033q0mv79 Xerox (France)'),
(12593, 'https://ror.org/033qewk74', 'en', 1, 'https://ror.org/033qewk74 Collaborating Centre on Sustainable Consumption and Production'),
(12594, 'https://ror.org/033qhvk72', 'no_lang_code', 1, 'https://ror.org/033qhvk72 Metabolon (United States)'),
(12595, 'https://ror.org/033sa0762', 'en', 1, 'https://ror.org/033sa0762 State Laboratory'),
(12596, 'https://ror.org/033tb1y80', 'en', 1, 'https://ror.org/033tb1y80 Hispanic Family Center of Southern New Jersey'),
(12597, 'https://ror.org/033tn4q36', 'en', 1, 'https://ror.org/033tn4q36 Partners for Youth with Disabilities'),
(12598, 'https://ror.org/033wfmx47', 'en', 1, 'https://ror.org/033wfmx47 Anne Arundel County Public Schools'),
(12599, 'https://ror.org/033ym9x13', 'no_lang_code', 1, 'https://ror.org/033ym9x13 Technaid (Spain)'),
(12600, 'https://ror.org/033ynyj02', 'de', 1, 'https://ror.org/033ynyj02 Forschungsinstitut für Leder und Kunststoffbahnen'),
(12601, 'https://ror.org/033zcj004', 'en', 1, 'https://ror.org/033zcj004 Nebraska Department of Education'),
(12602, 'https://ror.org/0340d8j26', 'it', 1, 'https://ror.org/0340d8j26 Avantea'),
(12603, 'https://ror.org/03439xb05', 'no_lang_code', 1, 'https://ror.org/03439xb05 Nanocyl (Belgium)'),
(12604, 'https://ror.org/0343jw325', 'no_lang_code', 1, 'https://ror.org/0343jw325 AGADA Biosciences'),
(12605, 'https://ror.org/0344pp695', 'en', 1, 'https://ror.org/0344pp695 Big Brothers Big Sisters of Vermilion County'),
(12606, 'https://ror.org/034673z17', 'en', 1, 'https://ror.org/034673z17 Epilepsy Support and Education Services'),
(12607, 'https://ror.org/0346g6k53', 'en', 1, 'https://ror.org/0346g6k53 National Future Farmers of America Organization'),
(12608, 'https://ror.org/0347g7262', 'en', 1, 'https://ror.org/0347g7262 Islamic Shura Council of Southern California'),
(12609, 'https://ror.org/0348ff195', 'en', 1, 'https://ror.org/0348ff195 Breast Cancer Research Foundation'),
(12610, 'https://ror.org/0348jrz13', 'no_lang_code', 1, 'https://ror.org/0348jrz13 TDC (Denmark)'),
(12611, 'https://ror.org/0349vnh06', 'en', 1, 'https://ror.org/0349vnh06 Meridian Behavioral Healthcare'),
(12612, 'https://ror.org/034bs1q12', 'no_lang_code', 1, 'https://ror.org/034bs1q12 Rodan Development (Poland)'),
(12613, 'https://ror.org/034bxyw57', 'no_lang_code', 1, 'https://ror.org/034bxyw57 3F (United States)'),
(12614, 'https://ror.org/034cg9v65', 'en', 1, 'https://ror.org/034cg9v65 Chatham County Schools'),
(12615, 'https://ror.org/034dw6775', 'no_lang_code', 1, 'https://ror.org/034dw6775 Merrimack Pharmaceuticals (United States)'),
(12616, 'https://ror.org/034ekjs90', 'en', 1, 'https://ror.org/034ekjs90 Quincy Medical Center'),
(12617, 'https://ror.org/034fqtg16', 'en', 1, 'https://ror.org/034fqtg16 Institute of Microelectronics Technology and High Purity Materials Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем технологии Š¼ŠøŠŗŃ€Š¾ŃŠ»ŠµŠŗŃ‚роники Šø особо чистых материалов'),
(12618, 'https://ror.org/034k9nh67', 'en', 1, 'https://ror.org/034k9nh67 Greensboro Science Center'),
(12619, 'https://ror.org/034m0w958', 'en', 1, 'https://ror.org/034m0w958 Institute of Mathematical Machines and Systems Problems Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем математичних машин і систем ŠŠŠ України'),
(12620, 'https://ror.org/034m9g361', 'no_lang_code', 1, 'https://ror.org/034m9g361 Athenex (United States)'),
(12621, 'https://ror.org/034nt0s92', 'no_lang_code', 1, 'https://ror.org/034nt0s92 PyroGenesis (Greece)'),
(12622, 'https://ror.org/034pvzq21', 'es', 1, 'https://ror.org/034pvzq21 Asociación DemogrÔfica Costarricense'),
(12623, 'https://ror.org/034q5ae56', 'en', 1, 'https://ror.org/034q5ae56 Sound Rivers'),
(12624, 'https://ror.org/034qswm17', 'en', 1, 'https://ror.org/034qswm17 Bay Area Cancer Connections'),
(12625, 'https://ror.org/034qt8m29', 'en', 1, 'https://ror.org/034qt8m29 Disabled Veterans Insurance Careers'),
(12626, 'https://ror.org/034rtgp85', 'no_lang_code', 1, 'https://ror.org/034rtgp85 Airstreams Renewables (United States)'),
(12627, 'https://ror.org/034sa4263', 'en', 1, 'https://ror.org/034sa4263 Arkansas Land and Farm Development Corporation'),
(12628, 'https://ror.org/034sbyx40', 'en', 1, 'https://ror.org/034sbyx40 Institute of Neurology, Psychiatry and Narcology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неврології, психіатрії та наркології ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń—'),
(12629, 'https://ror.org/034thfr92', 'no_lang_code', 1, 'https://ror.org/034thfr92 Havstovan'),
(12630, 'https://ror.org/034trs204', 'en', 1, 'https://ror.org/034trs204 Mind Body Solutions'),
(12631, 'https://ror.org/034x1wg70', 'en', 1, 'https://ror.org/034x1wg70 Center for Independent Living of Broward'),
(12632, 'https://ror.org/034xxbj70', 'en', 1, 'https://ror.org/034xxbj70 Global Health Council'),
(12633, 'https://ror.org/034z8a432', 'en', 1, 'https://ror.org/034z8a432 Kansas Bioscience Authority'),
(12634, 'https://ror.org/034zb3z40', 'no_lang_code', 1, 'https://ror.org/034zb3z40 United Monolithic Semiconductor (France)'),
(12635, 'https://ror.org/034zgem50', 'it', 1, 'https://ror.org/034zgem50 Agence spatiale italienne Agenzia Spaziale Italiana AgĆØncia Espacial Italiana Italian Space Agency'),
(12636, 'https://ror.org/0354w0y78', 'en', 1, 'https://ror.org/0354w0y78 College of Central Florida'),
(12637, 'https://ror.org/0354zqs18', 'no_lang_code', 1, 'https://ror.org/0354zqs18 Oxford Catalysts Group (United States)'),
(12638, 'https://ror.org/03558b563', 'no_lang_code', 1, 'https://ror.org/03558b563 MSNW (United States)'),
(12639, 'https://ror.org/0355hha51', 'no_lang_code', 1, 'https://ror.org/0355hha51 Berand (Ireland)'),
(12640, 'https://ror.org/0355qrc50', 'en', 1, 'https://ror.org/0355qrc50 Pathlight'),
(12641, 'https://ror.org/0355zfr67', 'en', 1, 'https://ror.org/0355zfr67 University of North Carolina Hospitals'),
(12642, 'https://ror.org/0357ts970', 'en', 1, 'https://ror.org/0357ts970 Spinal Cord Injury BC'),
(12643, 'https://ror.org/0359z7n90', 'en', 1, 'https://ror.org/0359z7n90 Swedish Energy Agency'),
(12644, 'https://ror.org/035exww05', 'no_lang_code', 1, 'https://ror.org/035exww05 CheminPharma (United States)'),
(12645, 'https://ror.org/035fmf715', 'en', 1, 'https://ror.org/035fmf715 Apollo Hospitals అపోలో ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±ą°øą±'),
(12646, 'https://ror.org/035gava43', 'no_lang_code', 1, 'https://ror.org/035gava43 United Monolithic Semiconductors (Germany)'),
(12647, 'https://ror.org/035h67p10', 'en', 1, 'https://ror.org/035h67p10 META Health'),
(12648, 'https://ror.org/035hy4w78', 'en', 1, 'https://ror.org/035hy4w78 Cancer Lifeline'),
(12649, 'https://ror.org/035jeda71', 'no_lang_code', 1, 'https://ror.org/035jeda71 Rofin (Germany)'),
(12650, 'https://ror.org/035jqr885', 'en', 1, 'https://ror.org/035jqr885 Elkhart Clinic'),
(12651, 'https://ror.org/035kd4890', 'en', 1, 'https://ror.org/035kd4890 Manpower Demonstration Research Corporation'),
(12652, 'https://ror.org/035mr7v54', 'en', 1, 'https://ror.org/035mr7v54 Lithuanian Institute of Agrarian Economics'),
(12653, 'https://ror.org/035q6v129', 'en', 1, 'https://ror.org/035q6v129 League Against Cancer'),
(12654, 'https://ror.org/035sqzf61', 'en', 1, 'https://ror.org/035sqzf61 League of Conservation Voters'),
(12655, 'https://ror.org/035swx070', 'en', 1, 'https://ror.org/035swx070 European Intermodal Association'),
(12656, 'https://ror.org/035ttkd11', 'en', 1, 'https://ror.org/035ttkd11 Friends of Patan Hospital'),
(12657, 'https://ror.org/035wv3h26', 'no_lang_code', 1, 'https://ror.org/035wv3h26 Roffer’s Ocean Fishing Forecasting Service'),
(12658, 'https://ror.org/035wy8w94', 'en', 1, 'https://ror.org/035wy8w94 Blue Ridge Area Health Education Center'),
(12659, 'https://ror.org/035yccj48', 'en', 1, 'https://ror.org/035yccj48 Kansas City Hospice and Palliative Care'),
(12660, 'https://ror.org/035yg6030', 'en', 1, 'https://ror.org/035yg6030 Comer Family Foundation'),
(12661, 'https://ror.org/035ytfy75', 'no_lang_code', 1, 'https://ror.org/035ytfy75 British Nuclear Fuel Limited (United Kingdom)'),
(12662, 'https://ror.org/035z3t173', 'en', 1, 'https://ror.org/035z3t173 District scolaire de Philadelphie Distrito escolar de Filadelfia School District of Philadelphia'),
(12663, 'https://ror.org/035za2858', 'no_lang_code', 1, 'https://ror.org/035za2858 Biofaction (Austria)'),
(12664, 'https://ror.org/035zj6b18', 'en', 1, 'https://ror.org/035zj6b18 Anne Arundel Community College'),
(12665, 'https://ror.org/035zp5a51', 'en', 1, 'https://ror.org/035zp5a51 Golisano Children''s Hospital of Southwest Florida'),
(12666, 'https://ror.org/0364xxv33', 'no_lang_code', 1, 'https://ror.org/0364xxv33 Efacec (Portugal)'),
(12667, 'https://ror.org/0365ahw46', 'no_lang_code', 1, 'https://ror.org/0365ahw46 Danaher (Netherlands)'),
(12668, 'https://ror.org/03666ws89', 'en', 1, 'https://ror.org/03666ws89 Mesilla Valley Hospice'),
(12669, 'https://ror.org/0367jyj65', 'no_lang_code', 1, 'https://ror.org/0367jyj65 FastOpt (Germany)'),
(12670, 'https://ror.org/0369m1a38', 'en', 1, 'https://ror.org/0369m1a38 International Pre-Autistic Network'),
(12671, 'https://ror.org/036baaz63', 'en', 1, 'https://ror.org/036baaz63 Front Line Defenders'),
(12672, 'https://ror.org/036bm0d39', 'no_lang_code', 1, 'https://ror.org/036bm0d39 CinecittĆ  Luce'),
(12673, 'https://ror.org/036d9xe15', 'no_lang_code', 1, 'https://ror.org/036d9xe15 Ceramics and Refractories Technological Development Company (Greece)'),
(12674, 'https://ror.org/036e7je91', 'en', 1, 'https://ror.org/036e7je91 International Association of Public Transport'),
(12675, 'https://ror.org/036gb6b33', 'es', 1, 'https://ror.org/036gb6b33 Centro de Epilepsia y NeurocirugĆ­a Funcional'),
(12676, 'https://ror.org/036h6da34', 'no_lang_code', 1, 'https://ror.org/036h6da34 Linguatec (Germany)'),
(12677, 'https://ror.org/036hkvc70', 'en', 1, 'https://ror.org/036hkvc70 Europeana Foundation Stichting Europeana'),
(12678, 'https://ror.org/036nx0615', 'no_lang_code', 1, 'https://ror.org/036nx0615 USE2ACES (Netherlands)'),
(12679, 'https://ror.org/036nz4295', 'no_lang_code', 1, 'https://ror.org/036nz4295 Re/genT (Netherlands)'),
(12680, 'https://ror.org/036pa7g20', 'en', 1, 'https://ror.org/036pa7g20 Harbor Beach Community Hospital'),
(12681, 'https://ror.org/036pfxs78', 'en', 1, 'https://ror.org/036pfxs78 County Councils on Aging'),
(12682, 'https://ror.org/036q5kj17', 'no_lang_code', 1, 'https://ror.org/036q5kj17 Mantis Deposition (United Kingdom)'),
(12683, 'https://ror.org/036r8j511', 'en', 1, 'https://ror.org/036r8j511 WirelessInfo'),
(12684, 'https://ror.org/036s4q636', 'en', 1, 'https://ror.org/036s4q636 American Society of Regional Anesthesia and Pain Medicine'),
(12685, 'https://ror.org/036tjv560', 'en', 1, 'https://ror.org/036tjv560 Children''s Specialty Group'),
(12686, 'https://ror.org/036vmrn30', 'en', 1, 'https://ror.org/036vmrn30 Maryland Ravens'),
(12687, 'https://ror.org/036vyc207', 'en', 1, 'https://ror.org/036vyc207 Mid Atlantic Epilepsy and Sleep Center'),
(12688, 'https://ror.org/036wcgd38', 'en', 1, 'https://ror.org/036wcgd38 Leukemia Research Foundation'),
(12689, 'https://ror.org/036xsx560', 'de', 1, 'https://ror.org/036xsx560 Ludwig-Bƶlkow-Systemtechnik'),
(12690, 'https://ror.org/036z25w18', 'no_lang_code', 1, 'https://ror.org/036z25w18 Nemetschek Bulgaria (Bulgaria)'),
(12691, 'https://ror.org/03755ef98', 'en', 1, 'https://ror.org/03755ef98 American MedChem'),
(12692, 'https://ror.org/03760g136', 'en', 1, 'https://ror.org/03760g136 First To Serve'),
(12693, 'https://ror.org/0376hjh49', 'no_lang_code', 1, 'https://ror.org/0376hjh49 Imperial Consultants'),
(12694, 'https://ror.org/0376xx786', 'no_lang_code', 1, 'https://ror.org/0376xx786 Kalashnikov Group (Russia) акционерное общество Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ оптический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”.И.Вавилова'),
(12695, 'https://ror.org/03794w632', 'no_lang_code', 1, 'https://ror.org/03794w632 Siemens (Austria)'),
(12696, 'https://ror.org/0379zp714', 'en', 1, 'https://ror.org/0379zp714 Croatian Chamber of Economy'),
(12697, 'https://ror.org/037brtq48', 'en', 1, 'https://ror.org/037brtq48 Friends of Firefighters'),
(12698, 'https://ror.org/037bt1j05', 'fr', 1, 'https://ror.org/037bt1j05 Fondation de CoopƩration Scientifique Foundation for Scientific Cooperation'),
(12699, 'https://ror.org/037c3gg23', 'it', 1, 'https://ror.org/037c3gg23 Istituto di Ricerche Economiche per la Pesca e l''Acquacoltura'),
(12700, 'https://ror.org/037c70862', 'en', 1, 'https://ror.org/037c70862 American Society of Pediatric Hemotology Oncology'),
(12701, 'https://ror.org/037caqy18', 'no_lang_code', 1, 'https://ror.org/037caqy18 Algaen (United States)'),
(12702, 'https://ror.org/037d69x30', 'no_lang_code', 1, 'https://ror.org/037d69x30 Artemisia BioMedical (United States)'),
(12703, 'https://ror.org/037dd8g98', 'no_lang_code', 1, 'https://ror.org/037dd8g98 Ecological Consultancy Services (Ireland)'),
(12704, 'https://ror.org/037ebw447', 'en', 1, 'https://ror.org/037ebw447 Helen Hay Whitney Foundation'),
(12705, 'https://ror.org/037hryt76', 'no_lang_code', 1, 'https://ror.org/037hryt76 iCons'),
(12706, 'https://ror.org/037j2jz78', 'de', 1, 'https://ror.org/037j2jz78 Deutsche Wissenschaftliche Gesellschaft für Erdöl Erdgas und Kohle German Society for Petroleum and Coal Science and Technology'),
(12707, 'https://ror.org/037kkjm30', 'no_lang_code', 1, 'https://ror.org/037kkjm30 Yenkin Majestic Industrial Coatings Division (United States)'),
(12708, 'https://ror.org/037krc632', 'en', 1, 'https://ror.org/037krc632 Adaptive Sports and Recreation Association'),
(12709, 'https://ror.org/037mqvh36', 'en', 1, 'https://ror.org/037mqvh36 I & T Nardoni Institute'),
(12710, 'https://ror.org/037msyf12', 'en', 1, 'https://ror.org/037msyf12 MGH Institute of Health Professions'),
(12711, 'https://ror.org/037nmab92', 'en', 1, 'https://ror.org/037nmab92 City Harvest'),
(12712, 'https://ror.org/037p90z15', 'ga', 1, 'https://ror.org/037p90z15 Foras Ɓiseanna Saothair Training and Employment Authority'),
(12713, 'https://ror.org/037pbdd49', 'no_lang_code', 1, 'https://ror.org/037pbdd49 Q PLAN International (Greece)'),
(12714, 'https://ror.org/037pbyt27', 'en', 1, 'https://ror.org/037pbyt27 Glens Falls Hospital'),
(12715, 'https://ror.org/037pk1914', 'en', 1, 'https://ror.org/037pk1914 RAND Europe'),
(12716, 'https://ror.org/037qxtx62', 'no_lang_code', 1, 'https://ror.org/037qxtx62 Eurokleis'),
(12717, 'https://ror.org/037r0mm82', 'no_lang_code', 1, 'https://ror.org/037r0mm82 Thomas Miller (United Kingdom)'),
(12718, 'https://ror.org/037vegb36', 'en', 1, 'https://ror.org/037vegb36 Kerr Center for Sustainable Agriculture'),
(12719, 'https://ror.org/037ynvv94', 'no_lang_code', 1, 'https://ror.org/037ynvv94 Ripple Rock Fish Farms (United States)'),
(12720, 'https://ror.org/0381d4058', 'en', 1, 'https://ror.org/0381d4058 Renown South Meadows Medical Center'),
(12721, 'https://ror.org/0381kjh19', 'en', 1, 'https://ror.org/0381kjh19 Northeast Wisconsin Technical College'),
(12722, 'https://ror.org/03821ge86', 'fr', 1, 'https://ror.org/03821ge86 Fondation Asile des Aveugles'),
(12723, 'https://ror.org/0382qx554', 'en', 1, 'https://ror.org/0382qx554 Head-Royce School'),
(12724, 'https://ror.org/038333j82', 'no_lang_code', 1, 'https://ror.org/038333j82 Nuance Communications (Italy)'),
(12725, 'https://ror.org/03834em22', 'en', 1, 'https://ror.org/03834em22 Illinois Public Health Institute'),
(12726, 'https://ror.org/0383dsh39', 'en', 1, 'https://ror.org/0383dsh39 Center for Usability Research and Engineering Centrum für die Untersuchung und Realisierung Endbenutzerorientierter Interaktiver Systeme'),
(12727, 'https://ror.org/03847e911', 'no_lang_code', 1, 'https://ror.org/03847e911 International Chemical Investors (Germany)'),
(12728, 'https://ror.org/0385nmy68', 'en', 1, 'https://ror.org/0385nmy68 Ministry of Industry and Information Technology äø­åŽäŗŗę°‘å…±å’Œå›½å·„äøšå’Œäæ”ęÆåŒ–éƒØ'),
(12729, 'https://ror.org/0385stf53', 'no_lang_code', 1, 'https://ror.org/0385stf53 Ala-Septic Pharmaceutical Research (United States)'),
(12730, 'https://ror.org/0386f5975', 'no_lang_code', 1, 'https://ror.org/0386f5975 Finceramica (Italy)'),
(12731, 'https://ror.org/0387qmw52', 'en', 1, 'https://ror.org/0387qmw52 Africa Health and Development International'),
(12732, 'https://ror.org/0388bf577', 'en', 1, 'https://ror.org/0388bf577 Bulgarian Chamber of Commerce and Industry'),
(12733, 'https://ror.org/038cdme44', 'no_lang_code', 1, 'https://ror.org/038cdme44 Huawei Technologies (Germany)'),
(12734, 'https://ror.org/038es7c44', 'no_lang_code', 1, 'https://ror.org/038es7c44 EnginSoft (Italy)'),
(12735, 'https://ror.org/038mfmm37', 'en', 1, 'https://ror.org/038mfmm37 ACIES Consulting Group'),
(12736, 'https://ror.org/038nc4w52', 'en', 1, 'https://ror.org/038nc4w52 Cancer Support Foundation'),
(12737, 'https://ror.org/038nrf531', 'no_lang_code', 1, 'https://ror.org/038nrf531 Pininfarina (Italy)'),
(12738, 'https://ror.org/038q96y60', 'en', 1, 'https://ror.org/038q96y60 Denver Indian Center'),
(12739, 'https://ror.org/038qw8663', 'no_lang_code', 1, 'https://ror.org/038qw8663 This Old Farm (United States)'),
(12740, 'https://ror.org/038syck06', 'es', 1, 'https://ror.org/038syck06 Casita de Mausi'),
(12741, 'https://ror.org/038t94116', 'de', 1, 'https://ror.org/038t94116 Deutsches Forschungsnetz, Verein zur Fƶrderung eines Deutschen Forschungsnetzes German Research Network'),
(12742, 'https://ror.org/038x7my43', 'en', 1, 'https://ror.org/038x7my43 Myrtle Avenue Brooklyn Partnership'),
(12743, 'https://ror.org/038zz3b86', 'no_lang_code', 1, 'https://ror.org/038zz3b86 AVM Biotechnology (United States)'),
(12744, 'https://ror.org/0391e3e29', 'en', 1, 'https://ror.org/0391e3e29 Grace Church of The Nazarene'),
(12745, 'https://ror.org/0391zqt72', 'en', 1, 'https://ror.org/0391zqt72 American Society of Gene Therapy and Cell Therapy'),
(12746, 'https://ror.org/0392jcp02', 'no_lang_code', 1, 'https://ror.org/0392jcp02 Applechem (United States)'),
(12747, 'https://ror.org/03941sr58', 'en', 1, 'https://ror.org/03941sr58 Claxton-Hepburn Medical Center'),
(12748, 'https://ror.org/0394gyh79', 'en', 1, 'https://ror.org/0394gyh79 European Nuclear Education Network RĆ©seau EuropĆ©en pour l’Enseignement des Sciences NuclĆ©aires'),
(12749, 'https://ror.org/0395hnd71', 'en', 1, 'https://ror.org/0395hnd71 Production Engineering Research Association'),
(12750, 'https://ror.org/0396ezm18', 'en', 1, 'https://ror.org/0396ezm18 National Test Pilot School'),
(12751, 'https://ror.org/0397aw971', 'en', 1, 'https://ror.org/0397aw971 Bronx Independent Living Services'),
(12752, 'https://ror.org/03983h596', 'en', 1, 'https://ror.org/03983h596 Project Angel Heart'),
(12753, 'https://ror.org/0399m8q49', 'en', 1, 'https://ror.org/0399m8q49 Faces of Courage Foundation'),
(12754, 'https://ror.org/039arew28', 'no_lang_code', 1, 'https://ror.org/039arew28 Micro Materials (United Kingdom)'),
(12755, 'https://ror.org/039bged65', 'en', 1, 'https://ror.org/039bged65 Lukasiewicz Research Network - Krakow Institute of Technology Łukasiewicz -Krakowski Instytut Technologiczny'),
(12756, 'https://ror.org/039ckp747', 'en', 1, 'https://ror.org/039ckp747 Semantic Technology Institute International'),
(12757, 'https://ror.org/039d42y17', 'no_lang_code', 1, 'https://ror.org/039d42y17 BioTalentum (Hungary)'),
(12758, 'https://ror.org/039ds3g53', 'no_lang_code', 1, 'https://ror.org/039ds3g53 Oberthur Technologies (France)'),
(12759, 'https://ror.org/039ep1930', 'en', 1, 'https://ror.org/039ep1930 California Black Health Network'),
(12760, 'https://ror.org/039faw336', 'no_lang_code', 1, 'https://ror.org/039faw336 Scientific Research and Development (Germany)'),
(12761, 'https://ror.org/039fb2p82', 'en', 1, 'https://ror.org/039fb2p82 Leech Lake Tribal College'),
(12762, 'https://ror.org/039ft6244', 'no_lang_code', 1, 'https://ror.org/039ft6244 ArcelorMittal (Germany)'),
(12763, 'https://ror.org/039gcd439', 'en', 1, 'https://ror.org/039gcd439 Lancaster County Medical Society'),
(12764, 'https://ror.org/039j6d549', 'en', 1, 'https://ror.org/039j6d549 Providence Medford Medical Center'),
(12765, 'https://ror.org/039m3s961', 'no_lang_code', 1, 'https://ror.org/039m3s961 Micron (Italy)'),
(12766, 'https://ror.org/039pgdx28', 'no_lang_code', 1, 'https://ror.org/039pgdx28 Danfoss (Denmark)'),
(12767, 'https://ror.org/039q7yt14', 'no_lang_code', 1, 'https://ror.org/039q7yt14 European Plastics Converters'),
(12768, 'https://ror.org/039r8xz84', 'en', 1, 'https://ror.org/039r8xz84 Arcadia International'),
(12769, 'https://ror.org/039sb8791', 'no_lang_code', 1, 'https://ror.org/039sb8791 Aptiv (Germany)'),
(12770, 'https://ror.org/039t93g49', 'de', 1, 'https://ror.org/039t93g49 Forschungsinstitut für Biologischen Landbau Research Institute of Organic Agriculture'),
(12771, 'https://ror.org/039whrd55', 'en', 1, 'https://ror.org/039whrd55 Harrington Regional Medical Center'),
(12772, 'https://ror.org/039yg9v74', 'en', 1, 'https://ror.org/039yg9v74 Child and Family Services of New Hampshire'),
(12773, 'https://ror.org/039z13y21', 'fr', 1, 'https://ror.org/039z13y21 Fonds National de la Recherche National Research Fund Luxembourg'),
(12774, 'https://ror.org/03a6ebh86', 'en', 1, 'https://ror.org/03a6ebh86 Coastal Health District'),
(12775, 'https://ror.org/03a872012', 'fr', 1, 'https://ror.org/03a872012 Institut de Recherche Agricole pour le DƩveloppement Institute of Agricultural Research for Development'),
(12776, 'https://ror.org/03a9cx059', 'en', 1, 'https://ror.org/03a9cx059 Restorative Justice Centre'),
(12777, 'https://ror.org/03aa6g490', 'no_lang_code', 1, 'https://ror.org/03aa6g490 Wellness Telecom (Spain)'),
(12778, 'https://ror.org/03adfn654', 'no_lang_code', 1, 'https://ror.org/03adfn654 Lincis (Portugal)'),
(12779, 'https://ror.org/03adjb352', 'fr', 1, 'https://ror.org/03adjb352 Observatoire MĆ©diterranĆ©en de l’Energie'),
(12780, 'https://ror.org/03agges87', 'en', 1, 'https://ror.org/03agges87 Third Judicial Circuit of Florida'),
(12781, 'https://ror.org/03ah83d07', 'no_lang_code', 1, 'https://ror.org/03ah83d07 HI Iberia (Spain)'),
(12782, 'https://ror.org/03ahv9t97', 'en', 1, 'https://ror.org/03ahv9t97 Lymphatic Education & Research Network'),
(12783, 'https://ror.org/03ajjha16', 'en', 1, 'https://ror.org/03ajjha16 Resources for Human Development'),
(12784, 'https://ror.org/03ajn7m72', 'en', 1, 'https://ror.org/03ajn7m72 Illinois Central College'),
(12785, 'https://ror.org/03amxdk57', 'no_lang_code', 1, 'https://ror.org/03amxdk57 Capgemini (Netherlands)'),
(12786, 'https://ror.org/03aq8ma66', 'no_lang_code', 1, 'https://ror.org/03aq8ma66 SEMA (Germany)'),
(12787, 'https://ror.org/03arv1448', 'en', 1, 'https://ror.org/03arv1448 Being Adept'),
(12788, 'https://ror.org/03asvs429', 'en', 1, 'https://ror.org/03asvs429 New York Legal Assistance Group'),
(12789, 'https://ror.org/03aswyk21', 'en', 1, 'https://ror.org/03aswyk21 White Earth Tribal and Community College'),
(12790, 'https://ror.org/03av1g763', 'no_lang_code', 1, 'https://ror.org/03av1g763 Genos (Croatia)'),
(12791, 'https://ror.org/03avace35', 'no_lang_code', 1, 'https://ror.org/03avace35 Sword Group (Luxembourg)'),
(12792, 'https://ror.org/03awv4473', 'en', 1, 'https://ror.org/03awv4473 Council for Jewish Elderly'),
(12793, 'https://ror.org/03ax7hn31', 'no_lang_code', 1, 'https://ror.org/03ax7hn31 BHP Laboratories'),
(12794, 'https://ror.org/03az21a93', 'no_lang_code', 1, 'https://ror.org/03az21a93 Swasthya Diabetes Care'),
(12795, 'https://ror.org/03azrqe31', 'no_lang_code', 1, 'https://ror.org/03azrqe31 ID Quantique (Switzerland)'),
(12796, 'https://ror.org/03b3akj74', 'en', 1, 'https://ror.org/03b3akj74 American Institute for Cancer Research'),
(12797, 'https://ror.org/03b58r371', 'en', 1, 'https://ror.org/03b58r371 Noble'),
(12798, 'https://ror.org/03b66rp04', 'en', 1, 'https://ror.org/03b66rp04 Olive View-UCLA Medical Center'),
(12799, 'https://ror.org/03b7cbd70', 'no_lang_code', 1, 'https://ror.org/03b7cbd70 Stork (Netherlands)'),
(12800, 'https://ror.org/03b7x6y73', 'it', 1, 'https://ror.org/03b7x6y73 AutoritĆ  Portuale di Genova'),
(12801, 'https://ror.org/03bb2z510', 'en', 1, 'https://ror.org/03bb2z510 Cares Community Health'),
(12802, 'https://ror.org/03bbgsb46', 'it', 1, 'https://ror.org/03bbgsb46 SocietĆ  Italiana di Fisica'),
(12803, 'https://ror.org/03bc0pq34', 'en', 1, 'https://ror.org/03bc0pq34 Institute for Chemical Processing of Coal'),
(12804, 'https://ror.org/03bcj4564', 'no_lang_code', 1, 'https://ror.org/03bcj4564 College of Micronesia-FSM'),
(12805, 'https://ror.org/03bdeb788', 'no_lang_code', 1, 'https://ror.org/03bdeb788 Community of European Shipyards Associations'),
(12806, 'https://ror.org/03bepb710', 'no_lang_code', 1, 'https://ror.org/03bepb710 Cellana (United States)'),
(12807, 'https://ror.org/03besxw61', 'no_lang_code', 1, 'https://ror.org/03besxw61 Mostostal Warszawa (Poland)'),
(12808, 'https://ror.org/03bg0vt52', 'en', 1, 'https://ror.org/03bg0vt52 Centre for Rights Education and Awareness'),
(12809, 'https://ror.org/03bjbem32', 'no_lang_code', 1, 'https://ror.org/03bjbem32 IBM (Belgium)'),
(12810, 'https://ror.org/03bjq7p15', 'en', 1, 'https://ror.org/03bjq7p15 Foundation for Community Empowerment'),
(12811, 'https://ror.org/03bmdtg34', 'no_lang_code', 1, 'https://ror.org/03bmdtg34 SGS Institut Fresenius (Germany)'),
(12812, 'https://ror.org/03bp9pt77', 'en', 1, 'https://ror.org/03bp9pt77 Salt Lake County Parks and Recreation'),
(12813, 'https://ror.org/03bqhc746', 'en', 1, 'https://ror.org/03bqhc746 Keystone College'),
(12814, 'https://ror.org/03bs7k153', 'no_lang_code', 1, 'https://ror.org/03bs7k153 Erdyn (France)'),
(12815, 'https://ror.org/03bsqcj22', 'no_lang_code', 1, 'https://ror.org/03bsqcj22 XCR Diagnostics (United States)'),
(12816, 'https://ror.org/03bsv7x15', 'no_lang_code', 1, 'https://ror.org/03bsv7x15 Ramboll (Finland)'),
(12817, 'https://ror.org/03bwmmt72', 'en', 1, 'https://ror.org/03bwmmt72 Building Bridges Child Development Center'),
(12818, 'https://ror.org/03bxr8x39', 'en', 1, 'https://ror.org/03bxr8x39 Jewish Community Center of Fort Lee'),
(12819, 'https://ror.org/03bxx2b53', 'no_lang_code', 1, 'https://ror.org/03bxx2b53 Kontron (Germany)'),
(12820, 'https://ror.org/03by37p23', 'en', 1, 'https://ror.org/03by37p23 Brent''s Place'),
(12821, 'https://ror.org/03by4xw59', 'en', 1, 'https://ror.org/03by4xw59 Cerebral Palsy Research Foundation'),
(12822, 'https://ror.org/03byhfv76', 'en', 1, 'https://ror.org/03byhfv76 South Georgia Medical Center'),
(12823, 'https://ror.org/03byj3662', 'en', 1, 'https://ror.org/03byj3662 National Center for Farmworker Health'),
(12824, 'https://ror.org/03byzcq48', 'en', 1, 'https://ror.org/03byzcq48 Sanford Medical Center'),
(12825, 'https://ror.org/03bzm0n35', 'en', 1, 'https://ror.org/03bzm0n35 Hmong American Partnership'),
(12826, 'https://ror.org/03c0yyz21', 'no_lang_code', 1, 'https://ror.org/03c0yyz21 Ericsson (Hungary)'),
(12827, 'https://ror.org/03c1k0368', 'no_lang_code', 1, 'https://ror.org/03c1k0368 Schlaich Bergermann und Partner (Germany)'),
(12828, 'https://ror.org/03c3vzv03', 'en', 1, 'https://ror.org/03c3vzv03 European Association for Renewable Energy Europäische Vereinigung für Erneuerbare Energien Eurosolar'),
(12829, 'https://ror.org/03c5bjw68', 'no_lang_code', 1, 'https://ror.org/03c5bjw68 BoxModul (Sweden)'),
(12830, 'https://ror.org/03c814f32', 'no_lang_code', 1, 'https://ror.org/03c814f32 Fratelli Alinari (Italy)'),
(12831, 'https://ror.org/03c84q386', 'en', 1, 'https://ror.org/03c84q386 McCarton Foundation'),
(12832, 'https://ror.org/03c8f3524', 'en', 1, 'https://ror.org/03c8f3524 Boone County Health Department'),
(12833, 'https://ror.org/03c94dv58', 'en', 1, 'https://ror.org/03c94dv58 Alzforum'),
(12834, 'https://ror.org/03c95vw04', 'no_lang_code', 1, 'https://ror.org/03c95vw04 Vertech Group'),
(12835, 'https://ror.org/03c9d3902', 'no_lang_code', 1, 'https://ror.org/03c9d3902 BioMedicure (United States)'),
(12836, 'https://ror.org/03c9wy439', 'no_lang_code', 1, 'https://ror.org/03c9wy439 Azavea (United States)'),
(12837, 'https://ror.org/03cbfdp48', 'en', 1, 'https://ror.org/03cbfdp48 Polk County Public Schools'),
(12838, 'https://ror.org/03ccv3j03', 'no_lang_code', 1, 'https://ror.org/03ccv3j03 Metrocrops'),
(12839, 'https://ror.org/03ce0x006', 'no_lang_code', 1, 'https://ror.org/03ce0x006 RWP (Germany)'),
(12840, 'https://ror.org/03cew4h50', 'en', 1, 'https://ror.org/03cew4h50 EvergreenHealth'),
(12841, 'https://ror.org/03cpy3x24', 'no_lang_code', 1, 'https://ror.org/03cpy3x24 Motiva (Finland)'),
(12842, 'https://ror.org/03cr60k70', 'no_lang_code', 1, 'https://ror.org/03cr60k70 Global Blood Therapeutics (United States)'),
(12843, 'https://ror.org/03cr99w51', 'no_lang_code', 1, 'https://ror.org/03cr99w51 Sony (France)'),
(12844, 'https://ror.org/03crcmh94', 'en', 1, 'https://ror.org/03crcmh94 Governance Links Tanzania'),
(12845, 'https://ror.org/03crevx32', 'en', 1, 'https://ror.org/03crevx32 Center for Neurorehabilitation Services'),
(12846, 'https://ror.org/03crv6k69', 'no_lang_code', 1, 'https://ror.org/03crv6k69 Laser Expertise (United Kingdom)'),
(12847, 'https://ror.org/03ct85y20', 'no_lang_code', 1, 'https://ror.org/03ct85y20 TUI (Germany)'),
(12848, 'https://ror.org/03cvyms32', 'en', 1, 'https://ror.org/03cvyms32 Cancer Association of Greater New Orleans'),
(12849, 'https://ror.org/03cvz4414', 'no_lang_code', 1, 'https://ror.org/03cvz4414 Würth Elektronik (Germany)'),
(12850, 'https://ror.org/03cw8xx58', 'en', 1, 'https://ror.org/03cw8xx58 North Colorado Medical Center Foundation'),
(12851, 'https://ror.org/03cy2tx68', 'en', 1, 'https://ror.org/03cy2tx68 Black Sea Regional Energy Centre'),
(12852, 'https://ror.org/03d06tq31', 'en', 1, 'https://ror.org/03d06tq31 Michigan Science Center'),
(12853, 'https://ror.org/03d278m65', 'no_lang_code', 1, 'https://ror.org/03d278m65 MyeloRx (United States)'),
(12854, 'https://ror.org/03d3a3a46', 'en', 1, 'https://ror.org/03d3a3a46 Community Rowing'),
(12855, 'https://ror.org/03d3v3e93', 'no_lang_code', 1, 'https://ror.org/03d3v3e93 Evotec (Germany)'),
(12856, 'https://ror.org/03d4ztk89', 'no_lang_code', 1, 'https://ror.org/03d4ztk89 Corbion (Netherlands)'),
(12857, 'https://ror.org/03d587e82', 'en', 1, 'https://ror.org/03d587e82 Estonian E Health Foundation'),
(12858, 'https://ror.org/03d7h4x42', 'en', 1, 'https://ror.org/03d7h4x42 Independent Living Resource Center San Francisco'),
(12859, 'https://ror.org/03d95mc27', 'no_lang_code', 1, 'https://ror.org/03d95mc27 Ortin Laboratories (India)'),
(12860, 'https://ror.org/03da0cj89', 'en', 1, 'https://ror.org/03da0cj89 American Society of Animal Science'),
(12861, 'https://ror.org/03dbbn946', 'no_lang_code', 1, 'https://ror.org/03dbbn946 HaCon (Germany)'),
(12862, 'https://ror.org/03dcvkh04', 'no_lang_code', 1, 'https://ror.org/03dcvkh04 Intrinsiq Materials (United Kingdom)'),
(12863, 'https://ror.org/03dewpe59', 'en', 1, 'https://ror.org/03dewpe59 East Harlem School'),
(12864, 'https://ror.org/03dewsa74', 'en', 1, 'https://ror.org/03dewsa74 Blue Marble Space'),
(12865, 'https://ror.org/03dscga50', 'en', 1, 'https://ror.org/03dscga50 Austrian National Library Ɩsterreichische Nationalbibliothek'),
(12866, 'https://ror.org/03dsvvn23', 'en', 1, 'https://ror.org/03dsvvn23 European Health Telematics Association'),
(12867, 'https://ror.org/03dx0rh63', 'no_lang_code', 1, 'https://ror.org/03dx0rh63 Brussels Intercommunal Transport Company Maatschappij voor het Intercommunaal Vervoer te Brussel SociƩtƩ des Transports Intercommunaux de Bruxelles'),
(12868, 'https://ror.org/03e278q38', 'no_lang_code', 1, 'https://ror.org/03e278q38 Vinci (France)'),
(12869, 'https://ror.org/03e2k6s26', 'en', 1, 'https://ror.org/03e2k6s26 Nigerian Christian Hospital'),
(12870, 'https://ror.org/03e6npv25', 'en', 1, 'https://ror.org/03e6npv25 Alliance for Community Trees'),
(12871, 'https://ror.org/03e93v570', 'no_lang_code', 1, 'https://ror.org/03e93v570 BIO Intelligence Service (France)'),
(12872, 'https://ror.org/03e9g1572', 'no_lang_code', 1, 'https://ror.org/03e9g1572 Neuromathix (Australia)'),
(12873, 'https://ror.org/03ea0ep61', 'en', 1, 'https://ror.org/03ea0ep61 Autism360'),
(12874, 'https://ror.org/03eevrx63', 'en', 1, 'https://ror.org/03eevrx63 Catskill Regional Medical Center'),
(12875, 'https://ror.org/03ef7g429', 'no_lang_code', 1, 'https://ror.org/03ef7g429 Photon Systems Instruments (Czechia)'),
(12876, 'https://ror.org/03ef7m045', 'no_lang_code', 1, 'https://ror.org/03ef7m045 Bergamo Technologies (Poland)'),
(12877, 'https://ror.org/03efkag80', 'en', 1, 'https://ror.org/03efkag80 Aliis Inserviendo Consumor Foundation'),
(12878, 'https://ror.org/03eh15043', 'no_lang_code', 1, 'https://ror.org/03eh15043 Pirelli (Italy)'),
(12879, 'https://ror.org/03end3932', 'no_lang_code', 1, 'https://ror.org/03end3932 GGG (France)'),
(12880, 'https://ror.org/03epbnb34', 'no_lang_code', 1, 'https://ror.org/03epbnb34 AquaTT (Ireland)'),
(12881, 'https://ror.org/03eq22881', 'en', 1, 'https://ror.org/03eq22881 Institute for Deciduous Fruit, Vines and Wine'),
(12882, 'https://ror.org/03eqeqg74', 'en', 1, 'https://ror.org/03eqeqg74 Institute of Protein Biochemistry Istituto di Biochimica delle Proteine'),
(12883, 'https://ror.org/03et1ay56', 'en', 1, 'https://ror.org/03et1ay56 Fondazione Rosselli Rosselli Foundation'),
(12884, 'https://ror.org/03et3t032', 'en', 1, 'https://ror.org/03et3t032 Gulf Relief Foundation'),
(12885, 'https://ror.org/03etn8e63', 'no_lang_code', 1, 'https://ror.org/03etn8e63 Uninett (Norway)'),
(12886, 'https://ror.org/03eywck07', 'en', 1, 'https://ror.org/03eywck07 Institute of Biodiversity and Ecosystem Research'),
(12887, 'https://ror.org/03f3zda13', 'no_lang_code', 1, 'https://ror.org/03f3zda13 Heartsong'),
(12888, 'https://ror.org/03f42pk91', 'en', 1, 'https://ror.org/03f42pk91 Norte Maar'),
(12889, 'https://ror.org/03f4rq368', 'en', 1, 'https://ror.org/03f4rq368 Flathead City County Health Department'),
(12890, 'https://ror.org/03f4vp463', 'no_lang_code', 1, 'https://ror.org/03f4vp463 IQE (United Kingdom)'),
(12891, 'https://ror.org/03f5kqz72', 'en', 1, 'https://ror.org/03f5kqz72 Iowa Children''s Museum'),
(12892, 'https://ror.org/03f6d5g58', 'no_lang_code', 1, 'https://ror.org/03f6d5g58 Vita Group (United Kingdom)'),
(12893, 'https://ror.org/03f82tr05', 'en', 1, 'https://ror.org/03f82tr05 National Domestic Workers Alliance'),
(12894, 'https://ror.org/03f9sef34', 'en', 1, 'https://ror.org/03f9sef34 Charleston Breast Center'),
(12895, 'https://ror.org/03f9txg78', 'no_lang_code', 1, 'https://ror.org/03f9txg78 Emilia Romagna Valorizzazione Economica Territorio (Italy)'),
(12896, 'https://ror.org/03fa8g464', 'en', 1, 'https://ror.org/03fa8g464 Lutheran Family Health Centers'),
(12897, 'https://ror.org/03fahgd34', 'en', 1, 'https://ror.org/03fahgd34 Bricks + Books Foundation'),
(12898, 'https://ror.org/03fat7v77', 'en', 1, 'https://ror.org/03fat7v77 Ministry of Gender and Development'),
(12899, 'https://ror.org/03fb4ef52', 'en', 1, 'https://ror.org/03fb4ef52 Gov2u'),
(12900, 'https://ror.org/03fc14d06', 'it', 1, 'https://ror.org/03fc14d06 Fondazione Centro Marino Internazionale'),
(12901, 'https://ror.org/03fdkmv28', 'en', 1, 'https://ror.org/03fdkmv28 European Emergency Number Association'),
(12902, 'https://ror.org/03fdne361', 'no_lang_code', 1, 'https://ror.org/03fdne361 InvivoGen (France)'),
(12903, 'https://ror.org/03fe56089', 'no_lang_code', 1, 'https://ror.org/03fe56089 GlaxoSmithKline (Italy)'),
(12904, 'https://ror.org/03fe5bx07', 'en', 1, 'https://ror.org/03fe5bx07 Healthy Communities Coalition'),
(12905, 'https://ror.org/03fhv6a52', 'es', 1, 'https://ror.org/03fhv6a52 Supera'),
(12906, 'https://ror.org/03fk8t087', 'no_lang_code', 1, 'https://ror.org/03fk8t087 Tetra Tech (United States)'),
(12907, 'https://ror.org/03fkdmb14', 'no_lang_code', 1, 'https://ror.org/03fkdmb14 Beneq (Finland)'),
(12908, 'https://ror.org/03fm9hg19', 'en', 1, 'https://ror.org/03fm9hg19 Yurok Tribe Environmental Program'),
(12909, 'https://ror.org/03fnvja86', 'no_lang_code', 1, 'https://ror.org/03fnvja86 Nanovis (United States)'),
(12910, 'https://ror.org/03fqsff15', 'en', 1, 'https://ror.org/03fqsff15 Community Counseling Services'),
(12911, 'https://ror.org/03fr5cc17', 'no_lang_code', 1, 'https://ror.org/03fr5cc17 Asklepios Asklepios Kliniken');
INSERT INTO `rors` VALUES
(12912, 'https://ror.org/03frdm317', 'en', 1, 'https://ror.org/03frdm317 Paraquad'),
(12913, 'https://ror.org/03frscd72', 'no_lang_code', 1, 'https://ror.org/03frscd72 Trama TecnoAmbiental (Spain)'),
(12914, 'https://ror.org/03ft4ac91', 'en', 1, 'https://ror.org/03ft4ac91 Ochin'),
(12915, 'https://ror.org/03fwqkz80', 'en', 1, 'https://ror.org/03fwqkz80 Cancer Society of the Bahamas'),
(12916, 'https://ror.org/03fyqbt98', 'en', 1, 'https://ror.org/03fyqbt98 Alzheimer''s and Related Disorders Society of India'),
(12917, 'https://ror.org/03g0pmj13', 'no_lang_code', 1, 'https://ror.org/03g0pmj13 Exsulin (United States)'),
(12918, 'https://ror.org/03g3gc902', 'no_lang_code', 1, 'https://ror.org/03g3gc902 ProDigest (Belgium)'),
(12919, 'https://ror.org/03g4qd502', 'en', 1, 'https://ror.org/03g4qd502 Brodarski Institute'),
(12920, 'https://ror.org/03g516j82', 'en', 1, 'https://ror.org/03g516j82 Food Outreach'),
(12921, 'https://ror.org/03g5dad97', 'en', 1, 'https://ror.org/03g5dad97 National Development and Reform Commission Energy Research Institute å›½å®¶å‘å±•å’Œę”¹é©å§”å‘˜ä¼ščƒ½ęŗē ”ē©¶ę‰€'),
(12922, 'https://ror.org/03g68pb09', 'no_lang_code', 1, 'https://ror.org/03g68pb09 Blinn College'),
(12923, 'https://ror.org/03g6g7j35', 'no_lang_code', 1, 'https://ror.org/03g6g7j35 Global Graphics (United Kingdom)'),
(12924, 'https://ror.org/03g7c9017', 'no_lang_code', 1, 'https://ror.org/03g7c9017 Berliner Verkehrsbetriebe (Germany)'),
(12925, 'https://ror.org/03g83vg44', 'no_lang_code', 1, 'https://ror.org/03g83vg44 ALS Biopharma (United States)'),
(12926, 'https://ror.org/03g8d4x11', 'es', 1, 'https://ror.org/03g8d4x11 Centro Tecnológico del Mar'),
(12927, 'https://ror.org/03gaatb02', 'en', 1, 'https://ror.org/03gaatb02 Primary Care Coalition of Montgomery County'),
(12928, 'https://ror.org/03gam8m83', 'no_lang_code', 1, 'https://ror.org/03gam8m83 Engedi Science (United Kingdom)'),
(12929, 'https://ror.org/03gca6511', 'en', 1, 'https://ror.org/03gca6511 Growing Power'),
(12930, 'https://ror.org/03gcet659', 'no_lang_code', 1, 'https://ror.org/03gcet659 Cambridge Econometrics (United Kingdom)'),
(12931, 'https://ror.org/03gcqsh22', 'no_lang_code', 1, 'https://ror.org/03gcqsh22 SinapTec (France)'),
(12932, 'https://ror.org/03ge1nb22', 'en', 1, 'https://ror.org/03ge1nb22 Danish Ministry of Higher Education and Science Uddannelses- og Forskningsministeriet'),
(12933, 'https://ror.org/03gk10789', 'en', 1, 'https://ror.org/03gk10789 Farm to Table'),
(12934, 'https://ror.org/03gkzwc92', 'no_lang_code', 1, 'https://ror.org/03gkzwc92 Ancitel (Italy)'),
(12935, 'https://ror.org/03gnnzc77', 'en', 1, 'https://ror.org/03gnnzc77 Institut für Bioprozess- und Analysenmesstechnik Institute for Bioprocessing and Analytical Measurement Techniques'),
(12936, 'https://ror.org/03gv7xs09', 'en', 1, 'https://ror.org/03gv7xs09 Capital Rowing Club'),
(12937, 'https://ror.org/03gxcr347', 'no_lang_code', 1, 'https://ror.org/03gxcr347 Infosys (France)'),
(12938, 'https://ror.org/03gyze223', 'es', 1, 'https://ror.org/03gyze223 Fundacion de Neurociencias'),
(12939, 'https://ror.org/03gzq6595', 'no_lang_code', 1, 'https://ror.org/03gzq6595 Nextworks (Italy)'),
(12940, 'https://ror.org/03gzyhr79', 'no_lang_code', 1, 'https://ror.org/03gzyhr79 CNet (Sweden)'),
(12941, 'https://ror.org/03h00an48', 'en', 1, 'https://ror.org/03h00an48 Fredericksburg Independent School District'),
(12942, 'https://ror.org/03h04vn96', 'no_lang_code', 1, 'https://ror.org/03h04vn96 Nymirum (United States)'),
(12943, 'https://ror.org/03h3tdh87', 'no_lang_code', 1, 'https://ror.org/03h3tdh87 Stellar Solutions (United States)'),
(12944, 'https://ror.org/03h67h666', 'no_lang_code', 1, 'https://ror.org/03h67h666 Spensa Technologies (United States)'),
(12945, 'https://ror.org/03h6c8g90', 'no_lang_code', 1, 'https://ror.org/03h6c8g90 Vdlconsult'),
(12946, 'https://ror.org/03h7w4021', 'en', 1, 'https://ror.org/03h7w4021 Bauer Research Foundation'),
(12947, 'https://ror.org/03hawtg60', 'no_lang_code', 1, 'https://ror.org/03hawtg60 Aker (Finland)'),
(12948, 'https://ror.org/03he51f03', 'no_lang_code', 1, 'https://ror.org/03he51f03 A2A (Italy)'),
(12949, 'https://ror.org/03hf0fw66', 'en', 1, 'https://ror.org/03hf0fw66 Murray Hill Neighborhood Association'),
(12950, 'https://ror.org/03hg1yf12', 'no_lang_code', 1, 'https://ror.org/03hg1yf12 Magwel (Belgium)'),
(12951, 'https://ror.org/03hgkjm76', 'en', 1, 'https://ror.org/03hgkjm76 Frick Collection'),
(12952, 'https://ror.org/03hj7k055', 'de', 1, 'https://ror.org/03hj7k055 Studiengesellschaft für den Kombinierten Verkehr e.V.'),
(12953, 'https://ror.org/03hjnhg65', 'no_lang_code', 1, 'https://ror.org/03hjnhg65 Open Hand'),
(12954, 'https://ror.org/03hjr5c64', 'en', 1, 'https://ror.org/03hjr5c64 Bellingham Technical College'),
(12955, 'https://ror.org/03hk7j981', 'en', 1, 'https://ror.org/03hk7j981 Autism Treatment Center'),
(12956, 'https://ror.org/03hkb5805', 'en', 1, 'https://ror.org/03hkb5805 Baby Buggy'),
(12957, 'https://ror.org/03hmj3984', 'no_lang_code', 1, 'https://ror.org/03hmj3984 Ambiente Risorse Sviluppo Environment, Resources and Development'),
(12958, 'https://ror.org/03hp16c30', 'no_lang_code', 1, 'https://ror.org/03hp16c30 WholeTrees (United States)'),
(12959, 'https://ror.org/03hp1m080', 'no_lang_code', 1, 'https://ror.org/03hp1m080 Ikerlan'),
(12960, 'https://ror.org/03hqc7279', 'en', 1, 'https://ror.org/03hqc7279 Otero Junior College'),
(12961, 'https://ror.org/03hs0j596', 'no_lang_code', 1, 'https://ror.org/03hs0j596 Bord SolƔthair an Leictreacha Electricity Supply Board (Ireland)'),
(12962, 'https://ror.org/03hsbk852', 'no_lang_code', 1, 'https://ror.org/03hsbk852 ASCO Industries (Belgium)'),
(12963, 'https://ror.org/03hw63y69', 'it', 1, 'https://ror.org/03hw63y69 Ratio Consulta'),
(12964, 'https://ror.org/03hwm9p62', 'en', 1, 'https://ror.org/03hwm9p62 Hendrick Hospice Care'),
(12965, 'https://ror.org/03hxjqx45', 'en', 1, 'https://ror.org/03hxjqx45 California Foundation for Agriculture in the Classroom'),
(12966, 'https://ror.org/03hy0tb65', 'no_lang_code', 1, 'https://ror.org/03hy0tb65 ASSIST Software (Romania)'),
(12967, 'https://ror.org/03hznq239', 'en', 1, 'https://ror.org/03hznq239 Korean Community Services of Metropolitan New York'),
(12968, 'https://ror.org/03j091372', 'en', 1, 'https://ror.org/03j091372 Cecil County Health Department'),
(12969, 'https://ror.org/03j13ys91', 'en', 1, 'https://ror.org/03j13ys91 International Medical Corps'),
(12970, 'https://ror.org/03j2wmd98', 'no_lang_code', 1, 'https://ror.org/03j2wmd98 Organix (United States)'),
(12971, 'https://ror.org/03j36fp95', 'en', 1, 'https://ror.org/03j36fp95 Centre for Sexuality and Health Research and Policy'),
(12972, 'https://ror.org/03j496302', 'en', 1, 'https://ror.org/03j496302 Limbs For Life Foundation'),
(12973, 'https://ror.org/03j4eb467', 'en', 1, 'https://ror.org/03j4eb467 Ministerstvo průmyslu a obchodu České republiky Ministry of Industry and Trade'),
(12974, 'https://ror.org/03j4rrt43', 'en', 1, 'https://ror.org/03j4rrt43 International Centre for Genetic Engineering and Biotechnology'),
(12975, 'https://ror.org/03j5rfg21', 'en', 1, 'https://ror.org/03j5rfg21 The Common Market'),
(12976, 'https://ror.org/03j7xe433', 'no_lang_code', 1, 'https://ror.org/03j7xe433 Hauzer (Netherlands)'),
(12977, 'https://ror.org/03j9wjf80', 'no_lang_code', 1, 'https://ror.org/03j9wjf80 Sweco (Norway)'),
(12978, 'https://ror.org/03jbmx182', 'no_lang_code', 1, 'https://ror.org/03jbmx182 Vision Robotics Corporation (United States)'),
(12979, 'https://ror.org/03jbq7a32', 'en', 1, 'https://ror.org/03jbq7a32 Austrian Federal Railways Ɩsterreichische Bundesbahnen'),
(12980, 'https://ror.org/03jcesj83', 'no_lang_code', 1, 'https://ror.org/03jcesj83 Tilde (Latvia)'),
(12981, 'https://ror.org/03jd3wq64', 'no_lang_code', 1, 'https://ror.org/03jd3wq64 AXIS Dance (United States)'),
(12982, 'https://ror.org/03jd48p79', 'en', 1, 'https://ror.org/03jd48p79 Education and Research Network'),
(12983, 'https://ror.org/03jgkmd81', 'en', 1, 'https://ror.org/03jgkmd81 i3gb Foundation'),
(12984, 'https://ror.org/03jh2fn47', 'no_lang_code', 1, 'https://ror.org/03jh2fn47 LifeSplice Pharma (United States)'),
(12985, 'https://ror.org/03jj9fg49', 'no_lang_code', 1, 'https://ror.org/03jj9fg49 Technical Support for European Organisations'),
(12986, 'https://ror.org/03jk9qe20', 'no_lang_code', 1, 'https://ror.org/03jk9qe20 Epitel (United States)'),
(12987, 'https://ror.org/03jkda953', 'no_lang_code', 1, 'https://ror.org/03jkda953 Kirin (United States)'),
(12988, 'https://ror.org/03jmazk02', 'en', 1, 'https://ror.org/03jmazk02 Dup15q Alliance'),
(12989, 'https://ror.org/03jp3w522', 'en', 1, 'https://ror.org/03jp3w522 Institute of Electronic Materials Technology'),
(12990, 'https://ror.org/03jpt8f29', 'en', 1, 'https://ror.org/03jpt8f29 Prevent Cancer Foundation'),
(12991, 'https://ror.org/03jq05c33', 'no_lang_code', 1, 'https://ror.org/03jq05c33 Deep Blue (Italy)'),
(12992, 'https://ror.org/03jqp6d56', 'en', 1, 'https://ror.org/03jqp6d56 Fachhochschule Oberƶsterreich University of Applied Sciences Upper Austria'),
(12993, 'https://ror.org/03jr2xy24', 'no_lang_code', 1, 'https://ror.org/03jr2xy24 EEG Info'),
(12994, 'https://ror.org/03jrk2631', 'en', 1, 'https://ror.org/03jrk2631 Have A Heart Community Trust'),
(12995, 'https://ror.org/03jta4a35', 'en', 1, 'https://ror.org/03jta4a35 Barnes-Jewish College'),
(12996, 'https://ror.org/03jtn8n67', 'es', 1, 'https://ror.org/03jtn8n67 Equipo Latinoamericano de Justicia y GƩnero'),
(12997, 'https://ror.org/03jtwqj24', 'no_lang_code', 1, 'https://ror.org/03jtwqj24 Teulades i FaƧanes Multifuncionals (Spain)'),
(12998, 'https://ror.org/03jy13477', 'en', 1, 'https://ror.org/03jy13477 Public Policy Institute of California'),
(12999, 'https://ror.org/03k0yb648', 'en', 1, 'https://ror.org/03k0yb648 Babble Tree'),
(13000, 'https://ror.org/03k462x97', 'no_lang_code', 1, 'https://ror.org/03k462x97'),
(13001, 'https://ror.org/03k52yd02', 'no_lang_code', 1, 'https://ror.org/03k52yd02 Imasonic'),
(13002, 'https://ror.org/03k5jhv71', 'no_lang_code', 1, 'https://ror.org/03k5jhv71 Integrated Nano-Technologies (United States)'),
(13003, 'https://ror.org/03k6c3c61', 'en', 1, 'https://ror.org/03k6c3c61 St. Anthony’s Hospital'),
(13004, 'https://ror.org/03k8m9k22', 'en', 1, 'https://ror.org/03k8m9k22 Chase Foundation'),
(13005, 'https://ror.org/03k9mxr81', 'no_lang_code', 1, 'https://ror.org/03k9mxr81 Danish Gas Technology Centre (Denmark)'),
(13006, 'https://ror.org/03ka3vc13', 'en', 1, 'https://ror.org/03ka3vc13 DeKalb County School District'),
(13007, 'https://ror.org/03kaj7n58', 'no_lang_code', 1, 'https://ror.org/03kaj7n58 NovaBay Pharmaceuticals (United States)'),
(13008, 'https://ror.org/03kaq5z89', 'en', 1, 'https://ror.org/03kaq5z89 Four Directions Development Corporation'),
(13009, 'https://ror.org/03kbqak87', 'no_lang_code', 1, 'https://ror.org/03kbqak87 Ellinogermaniki Agogi'),
(13010, 'https://ror.org/03kcr0m63', 'it', 1, 'https://ror.org/03kcr0m63 Fondazione Intergruppo Italiano Linfomi Onlus'),
(13011, 'https://ror.org/03kcxbk43', 'it', 1, 'https://ror.org/03kcxbk43 Camera di commercio di Milano'),
(13012, 'https://ror.org/03kd4bc94', 'en', 1, 'https://ror.org/03kd4bc94 National Space Grant Alliance'),
(13013, 'https://ror.org/03kdc7091', 'en', 1, 'https://ror.org/03kdc7091 Coalition of Immokalee Workers'),
(13014, 'https://ror.org/03kdj6d49', 'no_lang_code', 1, 'https://ror.org/03kdj6d49 Piacenza Cashmere (Italy)'),
(13015, 'https://ror.org/03kekxj46', 'no_lang_code', 1, 'https://ror.org/03kekxj46 Wallwork (United Kingdom)'),
(13016, 'https://ror.org/03kgp8j35', 'en', 1, 'https://ror.org/03kgp8j35 Arizona Spinal Cord Injury Association'),
(13017, 'https://ror.org/03khwv936', 'no_lang_code', 1, 'https://ror.org/03khwv936 Chimar Hellas (Greece)'),
(13018, 'https://ror.org/03kk57x07', 'it', 1, 'https://ror.org/03kk57x07 Sardegna Agricoltura'),
(13019, 'https://ror.org/03kkb8y03', 'pl', 1, 'https://ror.org/03kkb8y03 Forest Research Institute Instytut Badawczy Leśnictwa'),
(13020, 'https://ror.org/03kkm1r11', 'en', 1, 'https://ror.org/03kkm1r11 New York Harbor School'),
(13021, 'https://ror.org/03kmak902', 'no_lang_code', 1, 'https://ror.org/03kmak902 Bƶhler Edelstahl (Austria)'),
(13022, 'https://ror.org/03kmbzt92', 'en', 1, 'https://ror.org/03kmbzt92 Pain Clinic of India'),
(13023, 'https://ror.org/03kn4xv14', 'en', 1, 'https://ror.org/03kn4xv14 Institute for High Energy Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики высоких ŃŠ½ŠµŃ€Š³ŠøŠ¹'),
(13024, 'https://ror.org/03kng9q02', 'en', 1, 'https://ror.org/03kng9q02 Friends of IHES'),
(13025, 'https://ror.org/03kpxfs84', 'en', 1, 'https://ror.org/03kpxfs84 Systema Transport Planning & Engineering Consultants'),
(13026, 'https://ror.org/03kr0f697', 'en', 1, 'https://ror.org/03kr0f697 Adventist Health Glendale'),
(13027, 'https://ror.org/03ksh5m61', 'no_lang_code', 1, 'https://ror.org/03ksh5m61 Technova Corporation (United States)'),
(13028, 'https://ror.org/03kyhge69', 'no_lang_code', 1, 'https://ror.org/03kyhge69 Zeus Consulting (Greece)'),
(13029, 'https://ror.org/03kz3ea73', 'en', 1, 'https://ror.org/03kz3ea73 Food Bank of Delaware'),
(13030, 'https://ror.org/03m1a8t60', 'en', 1, 'https://ror.org/03m1a8t60 Eurocities'),
(13031, 'https://ror.org/03m2pk393', 'en', 1, 'https://ror.org/03m2pk393 American Jewish World Service'),
(13032, 'https://ror.org/03m3fa408', 'no_lang_code', 1, 'https://ror.org/03m3fa408 Ericsson (Germany)'),
(13033, 'https://ror.org/03m3v4c71', 'no_lang_code', 1, 'https://ror.org/03m3v4c71 Genogen (United States)'),
(13034, 'https://ror.org/03m4peq39', 'en', 1, 'https://ror.org/03m4peq39 Coatings Research Institute'),
(13035, 'https://ror.org/03m91y692', 'no_lang_code', 1, 'https://ror.org/03m91y692 Coloplast (Denmark)'),
(13036, 'https://ror.org/03m9gpr25', 'no_lang_code', 1, 'https://ror.org/03m9gpr25 Schlumberger (Norway)'),
(13037, 'https://ror.org/03ma5tr22', 'nl', 1, 'https://ror.org/03ma5tr22 Gemeente Rotterdam'),
(13038, 'https://ror.org/03ma7rr84', 'en', 1, 'https://ror.org/03ma7rr84 Egyptian American Medical Center'),
(13039, 'https://ror.org/03ma9mt41', 'no_lang_code', 1, 'https://ror.org/03ma9mt41 Reply (Italy)'),
(13040, 'https://ror.org/03mav6487', 'no_lang_code', 1, 'https://ror.org/03mav6487 Eurogentec (Belgium)'),
(13041, 'https://ror.org/03mb23c90', 'no_lang_code', 1, 'https://ror.org/03mb23c90 ITM Power (United Kingdom)'),
(13042, 'https://ror.org/03mb54f81', 'no_lang_code', 1, 'https://ror.org/03mb54f81 Synopsys (Switzerland)'),
(13043, 'https://ror.org/03mbj3p87', 'en', 1, 'https://ror.org/03mbj3p87 San Joaquin Valley Public Health Consortium'),
(13044, 'https://ror.org/03mcj3013', 'no_lang_code', 1, 'https://ror.org/03mcj3013 Detection Limit (United States)'),
(13045, 'https://ror.org/03mcwam86', 'en', 1, 'https://ror.org/03mcwam86 Ministry of Health ΄πουργείο ΄γείας'),
(13046, 'https://ror.org/03mpdf502', 'no_lang_code', 1, 'https://ror.org/03mpdf502 Epsilon Net (Greece)'),
(13047, 'https://ror.org/03mqgwc47', 'no_lang_code', 1, 'https://ror.org/03mqgwc47 Inburex Consulting'),
(13048, 'https://ror.org/03mqnjw52', 'no_lang_code', 1, 'https://ror.org/03mqnjw52 Kingston Computer Consultancy (United Kingdom)'),
(13049, 'https://ror.org/03mrx4w57', 'no_lang_code', 1, 'https://ror.org/03mrx4w57 Signal Genetics (United States)'),
(13050, 'https://ror.org/03msng824', 'no_lang_code', 1, 'https://ror.org/03msng824 Infineon Technologies (Austria)'),
(13051, 'https://ror.org/03mvyyw83', 'no_lang_code', 1, 'https://ror.org/03mvyyw83 Novacule (United States)'),
(13052, 'https://ror.org/03mwypp50', 'no_lang_code', 1, 'https://ror.org/03mwypp50 Veolia (France)'),
(13053, 'https://ror.org/03myq7b49', 'en', 1, 'https://ror.org/03myq7b49 Samaritan Hospital'),
(13054, 'https://ror.org/03mz6dw96', 'no_lang_code', 1, 'https://ror.org/03mz6dw96 Synthetic Genomics (United States)'),
(13055, 'https://ror.org/03mzsqd80', 'en', 1, 'https://ror.org/03mzsqd80 Lakes Region General Hospital'),
(13056, 'https://ror.org/03n1ga993', 'en', 1, 'https://ror.org/03n1ga993 Challenger Learning Center of Alaska'),
(13057, 'https://ror.org/03n2jn734', 'no_lang_code', 1, 'https://ror.org/03n2jn734 Shadow Robot (United Kingdom)'),
(13058, 'https://ror.org/03n3c6k39', 'no_lang_code', 1, 'https://ror.org/03n3c6k39 SATA Application Advanced Technologies (Italy)'),
(13059, 'https://ror.org/03n6ktv33', 'en', 1, 'https://ror.org/03n6ktv33 Furniture Industry Research Association'),
(13060, 'https://ror.org/03n89wa68', 'en', 1, 'https://ror.org/03n89wa68 Los Angeles County Office of Education'),
(13061, 'https://ror.org/03n97yw06', 'no_lang_code', 1, 'https://ror.org/03n97yw06 MedGenesis Therapeutix (Canada)'),
(13062, 'https://ror.org/03n9jn918', 'en', 1, 'https://ror.org/03n9jn918 Lincoln Charter School'),
(13063, 'https://ror.org/03ncaex51', 'en', 1, 'https://ror.org/03ncaex51 Children''s Institute of Pittsburgh'),
(13064, 'https://ror.org/03nd75281', 'sv', 1, 'https://ror.org/03nd75281 Gothenburg Municipality Gƶteborgs Stads'),
(13065, 'https://ror.org/03ndq5j60', 'no_lang_code', 1, 'https://ror.org/03ndq5j60 IRBM Science Park'),
(13066, 'https://ror.org/03nh59r74', 'en', 1, 'https://ror.org/03nh59r74 Mather LifeWays'),
(13067, 'https://ror.org/03nhd0t24', 'en', 1, 'https://ror.org/03nhd0t24 Urban Tree Connection'),
(13068, 'https://ror.org/03nhvga51', 'no_lang_code', 1, 'https://ror.org/03nhvga51 DiagnoSwiss (Switzerland)'),
(13069, 'https://ror.org/03nmefy27', 'no_lang_code', 1, 'https://ror.org/03nmefy27 Google (Ireland)'),
(13070, 'https://ror.org/03nn4bh87', 'no_lang_code', 1, 'https://ror.org/03nn4bh87 STX Europe (France)'),
(13071, 'https://ror.org/03nnvvy24', 'no_lang_code', 1, 'https://ror.org/03nnvvy24 Itaconix (United States)'),
(13072, 'https://ror.org/03ns2tc75', 'en', 1, 'https://ror.org/03ns2tc75 Quest Center for Integrative Health'),
(13073, 'https://ror.org/03nsgg743', 'en', 1, 'https://ror.org/03nsgg743 Institutes for Behavior Resources'),
(13074, 'https://ror.org/03nsz0g92', 'no_lang_code', 1, 'https://ror.org/03nsz0g92 Marzotto Group (Italy)'),
(13075, 'https://ror.org/03nt2eg08', 'no_lang_code', 1, 'https://ror.org/03nt2eg08 Tao Systems (United States)'),
(13076, 'https://ror.org/03nt5p160', 'ro', 1, 'https://ror.org/03nt5p160 Asociaţia Femeilor de Afaceri'),
(13077, 'https://ror.org/03nvkfb40', 'en', 1, 'https://ror.org/03nvkfb40 Elite Wellness'),
(13078, 'https://ror.org/03nvvdm73', 'no_lang_code', 1, 'https://ror.org/03nvvdm73 Canon (Netherlands)'),
(13079, 'https://ror.org/03nw1ba02', 'no_lang_code', 1, 'https://ror.org/03nw1ba02 CreaGen (United States)'),
(13080, 'https://ror.org/03nx3a052', 'en', 1, 'https://ror.org/03nx3a052 Matson & Associates'),
(13081, 'https://ror.org/03nx8tr59', 'no_lang_code', 1, 'https://ror.org/03nx8tr59 Fortum (Finland)'),
(13082, 'https://ror.org/03nznsh21', 'en', 1, 'https://ror.org/03nznsh21 Gems of Hope'),
(13083, 'https://ror.org/03p2f7q52', 'en', 1, 'https://ror.org/03p2f7q52 Institut Rick Hansen Praxis Spinal Cord Institute'),
(13084, 'https://ror.org/03p2wmp96', 'no_lang_code', 1, 'https://ror.org/03p2wmp96 Ascom (Switzerland)'),
(13085, 'https://ror.org/03p60dy64', 'en', 1, 'https://ror.org/03p60dy64 Bridging Bionics Foundation'),
(13086, 'https://ror.org/03p67qv16', 'en', 1, 'https://ror.org/03p67qv16 Plan International Regional Office of the Americas'),
(13087, 'https://ror.org/03paye555', 'en', 1, 'https://ror.org/03paye555 Avalon University School of Medicine'),
(13088, 'https://ror.org/03ph0tq13', 'no_lang_code', 1, 'https://ror.org/03ph0tq13 Green Heron Tools (United States)'),
(13089, 'https://ror.org/03pk1p315', 'no_lang_code', 1, 'https://ror.org/03pk1p315 Re Lab (Italy)'),
(13090, 'https://ror.org/03pmyqy44', 'en', 1, 'https://ror.org/03pmyqy44 Alliance Community Services'),
(13091, 'https://ror.org/03prr3914', 'en', 1, 'https://ror.org/03prr3914 Community of Mediterranean Universities'),
(13092, 'https://ror.org/03ptrx272', 'no_lang_code', 1, 'https://ror.org/03ptrx272 CGI (Netherlands)'),
(13093, 'https://ror.org/03pwdft33', 'no_lang_code', 1, 'https://ror.org/03pwdft33 AkibaUhaki Foundation'),
(13094, 'https://ror.org/03pyc1d37', 'no_lang_code', 1, 'https://ror.org/03pyc1d37 Poli Model (Italy)'),
(13095, 'https://ror.org/03pyecx64', 'en', 1, 'https://ror.org/03pyecx64 Cumberland County Schools'),
(13096, 'https://ror.org/03pyrr968', 'en', 1, 'https://ror.org/03pyrr968 Disability Resource Association'),
(13097, 'https://ror.org/03pzspq13', 'en', 1, 'https://ror.org/03pzspq13 Ofcom'),
(13098, 'https://ror.org/03pzyw636', 'no_lang_code', 1, 'https://ror.org/03pzyw636 Califia Bio (United States)'),
(13099, 'https://ror.org/03q18z722', 'no_lang_code', 1, 'https://ror.org/03q18z722 Western Laboratories (United States)'),
(13100, 'https://ror.org/03q1j4a15', 'no_lang_code', 1, 'https://ror.org/03q1j4a15 Biolution (Austria)'),
(13101, 'https://ror.org/03q1xez23', 'no_lang_code', 1, 'https://ror.org/03q1xez23 AustriaTech (Austria)'),
(13102, 'https://ror.org/03q6a6m98', 'en', 1, 'https://ror.org/03q6a6m98 Bay Pines Foundation'),
(13103, 'https://ror.org/03q6bcv18', 'no_lang_code', 1, 'https://ror.org/03q6bcv18 Science and Sensors Technologies (United States)'),
(13104, 'https://ror.org/03q6p5x66', 'en', 1, 'https://ror.org/03q6p5x66 Capital Region Action Against Breast Cancer'),
(13105, 'https://ror.org/03q83t159', 'en', 1, 'https://ror.org/03q83t159 Fonds de la Recherche Scientifique Fund for Scientific Research'),
(13106, 'https://ror.org/03q8c8138', 'en', 1, 'https://ror.org/03q8c8138 CSU Ventures'),
(13107, 'https://ror.org/03q97we10', 'en', 1, 'https://ror.org/03q97we10 SF LGBT Center'),
(13108, 'https://ror.org/03q9kkf91', 'en', 1, 'https://ror.org/03q9kkf91 Goddard Riverside'),
(13109, 'https://ror.org/03qa7aa58', 'no_lang_code', 1, 'https://ror.org/03qa7aa58 CIMA Software Corporation (United States)'),
(13110, 'https://ror.org/03qazee42', 'no_lang_code', 1, 'https://ror.org/03qazee42 Prokazyme (Iceland)'),
(13111, 'https://ror.org/03qc4hj53', 'en', 1, 'https://ror.org/03qc4hj53 FirstHealth of the Carolinas'),
(13112, 'https://ror.org/03qe0c470', 'en', 1, 'https://ror.org/03qe0c470 Indiana Minority Health Coalition'),
(13113, 'https://ror.org/03qe3t289', 'en', 1, 'https://ror.org/03qe3t289 European Broadcasting Union Union europƩenne de radio-tƩlƩvision'),
(13114, 'https://ror.org/03qe7zj77', 'en', 1, 'https://ror.org/03qe7zj77 Carondelet Health'),
(13115, 'https://ror.org/03qezf786', 'en', 1, 'https://ror.org/03qezf786 European Materials Research Society'),
(13116, 'https://ror.org/03qgk3v29', 'no_lang_code', 1, 'https://ror.org/03qgk3v29 EMI Construction Quality Control (Hungary)'),
(13117, 'https://ror.org/03qjv2m25', 'no_lang_code', 1, 'https://ror.org/03qjv2m25 Drip Research Technology Services (United States)'),
(13118, 'https://ror.org/03qkxep52', 'en', 1, 'https://ror.org/03qkxep52 Coastal Land Trust'),
(13119, 'https://ror.org/03qm72t57', 'es', 1, 'https://ror.org/03qm72t57 Fundación Oncohematología Infantil'),
(13120, 'https://ror.org/03qmdb045', 'es', 1, 'https://ror.org/03qmdb045 Hospital Donación Francisco Santojanni'),
(13121, 'https://ror.org/03qqb4r64', 'no_lang_code', 1, 'https://ror.org/03qqb4r64 Neuron BioPharma (Spain)'),
(13122, 'https://ror.org/03qqt2y39', 'no_lang_code', 1, 'https://ror.org/03qqt2y39 Epigem (United Kingdom)'),
(13123, 'https://ror.org/03qrrfg84', 'en', 1, 'https://ror.org/03qrrfg84 NeuroLinx Research Institute'),
(13124, 'https://ror.org/03qs1y241', 'en', 1, 'https://ror.org/03qs1y241 Achilles International'),
(13125, 'https://ror.org/03qsrw587', 'no_lang_code', 1, 'https://ror.org/03qsrw587 Stratton Park Engineering Company (United States)'),
(13126, 'https://ror.org/03qv28y75', 'no_lang_code', 1, 'https://ror.org/03qv28y75 Applied Biotechnology Institute'),
(13127, 'https://ror.org/03qwpn290', 'no_lang_code', 1, 'https://ror.org/03qwpn290 Johnson & Johnson (United Kingdom)'),
(13128, 'https://ror.org/03qx9tc91', 'no_lang_code', 1, 'https://ror.org/03qx9tc91 Capgemini (France)'),
(13129, 'https://ror.org/03qyevp82', 'no_lang_code', 1, 'https://ror.org/03qyevp82 Eyenuk (United States)'),
(13130, 'https://ror.org/03qzkbe13', 'en', 1, 'https://ror.org/03qzkbe13 New Yorkers for Parks'),
(13131, 'https://ror.org/03r048b78', 'no_lang_code', 1, 'https://ror.org/03r048b78 InferMed'),
(13132, 'https://ror.org/03r0mgt68', 'no_lang_code', 1, 'https://ror.org/03r0mgt68 PathoVacs (United States)'),
(13133, 'https://ror.org/03r177k09', 'en', 1, 'https://ror.org/03r177k09 Hospice Buffalo'),
(13134, 'https://ror.org/03r1vfk75', 'en', 1, 'https://ror.org/03r1vfk75 San Diego Youth Services'),
(13135, 'https://ror.org/03r3hm022', 'en', 1, 'https://ror.org/03r3hm022 Litani River Authority'),
(13136, 'https://ror.org/03r48fa44', 'no_lang_code', 1, 'https://ror.org/03r48fa44 Klett Gruppe (Germany)'),
(13137, 'https://ror.org/03r4w0b84', 'es', 1, 'https://ror.org/03r4w0b84 Fundación Arturo López Pérez, Instituto Oncológico FALP'),
(13138, 'https://ror.org/03r6neh61', 'en', 1, 'https://ror.org/03r6neh61 Institute e-Austria Timisoara'),
(13139, 'https://ror.org/03r8ta958', 'en', 1, 'https://ror.org/03r8ta958 Myotubular Myopathy Resource Group'),
(13140, 'https://ror.org/03r9qqv72', 'no_lang_code', 1, 'https://ror.org/03r9qqv72 Vestaron (United States)'),
(13141, 'https://ror.org/03ra2r215', 'no_lang_code', 1, 'https://ror.org/03ra2r215 CAPTEC (Ireland)'),
(13142, 'https://ror.org/03ra41c26', 'no_lang_code', 1, 'https://ror.org/03ra41c26 Epigenetix (United States)'),
(13143, 'https://ror.org/03rd74t51', 'en', 1, 'https://ror.org/03rd74t51 Healthy Functions'),
(13144, 'https://ror.org/03rf3nd87', 'en', 1, 'https://ror.org/03rf3nd87 Mountain Home Montana'),
(13145, 'https://ror.org/03rgbdq68', 'en', 1, 'https://ror.org/03rgbdq68 Slovak Organization for Research and Development Activities'),
(13146, 'https://ror.org/03rhy4111', 'no_lang_code', 1, 'https://ror.org/03rhy4111 IdroGeo'),
(13147, 'https://ror.org/03rjwv512', 'no_lang_code', 1, 'https://ror.org/03rjwv512 Sener (Spain)'),
(13148, 'https://ror.org/03rksbs88', 'en', 1, 'https://ror.org/03rksbs88 West Hills Community College District'),
(13149, 'https://ror.org/03rkv9a98', 'no_lang_code', 1, 'https://ror.org/03rkv9a98 Sudamin Rohstoff (Germany)'),
(13150, 'https://ror.org/03rkvna13', 'en', 1, 'https://ror.org/03rkvna13 Jewish Family Service of San Diego'),
(13151, 'https://ror.org/03rm4za20', 'en', 1, 'https://ror.org/03rm4za20 Center for Independent Living of Central Pennsylvania'),
(13152, 'https://ror.org/03rret387', 'en', 1, 'https://ror.org/03rret387 Project Freedom'),
(13153, 'https://ror.org/03rrgzq96', 'en', 1, 'https://ror.org/03rrgzq96 Cherokee Boys Club'),
(13154, 'https://ror.org/03rsjpm20', 'en', 1, 'https://ror.org/03rsjpm20 European Aquaculture Society'),
(13155, 'https://ror.org/03rsse878', 'en', 1, 'https://ror.org/03rsse878 Media Arts Center San Diego'),
(13156, 'https://ror.org/03rtkz951', 'en', 1, 'https://ror.org/03rtkz951 Jewish Women''s Archive'),
(13157, 'https://ror.org/03rw5jc77', 'en', 1, 'https://ror.org/03rw5jc77 Benefis Health System Foundation'),
(13158, 'https://ror.org/03rw9a524', 'en', 1, 'https://ror.org/03rw9a524 Northern California Indian Development Council'),
(13159, 'https://ror.org/03rxx8g04', 'en', 1, 'https://ror.org/03rxx8g04 Community Access'),
(13160, 'https://ror.org/03ryzec43', 'no_lang_code', 1, 'https://ror.org/03ryzec43 Bio, Tech and Beyond (United States)'),
(13161, 'https://ror.org/03rzhpa51', 'fr', 1, 'https://ror.org/03rzhpa51 French Institue of Navigation Institut FranƧais de Navigation'),
(13162, 'https://ror.org/03s0p4v02', 'en', 1, 'https://ror.org/03s0p4v02 Health Choice Network'),
(13163, 'https://ror.org/03s3e7380', 'en', 1, 'https://ror.org/03s3e7380 European Forum of Farm Animal Breeders'),
(13164, 'https://ror.org/03s3q2469', 'no_lang_code', 1, 'https://ror.org/03s3q2469 Munogenics (United States)'),
(13165, 'https://ror.org/03s3xa281', 'no_lang_code', 1, 'https://ror.org/03s3xa281 Forthnet (Greece)'),
(13166, 'https://ror.org/03s48wx79', 'en', 1, 'https://ror.org/03s48wx79 Aquitaine Europe Communication'),
(13167, 'https://ror.org/03s4s4880', 'no_lang_code', 1, 'https://ror.org/03s4s4880 Athenese (United States)'),
(13168, 'https://ror.org/03s5rph93', 'no_lang_code', 1, 'https://ror.org/03s5rph93 Cognosci (United States)'),
(13169, 'https://ror.org/03s5wtj28', 'en', 1, 'https://ror.org/03s5wtj28 Cardio-Facio-Cutaneous International'),
(13170, 'https://ror.org/03s70j353', 'en', 1, 'https://ror.org/03s70j353 International Sonoran Desert Alliance'),
(13171, 'https://ror.org/03s8h4161', 'no_lang_code', 1, 'https://ror.org/03s8h4161 Trasporti e Territorio'),
(13172, 'https://ror.org/03s943089', 'en', 1, 'https://ror.org/03s943089 Asian Pacific AIDS Intervention Team'),
(13173, 'https://ror.org/03sbdx317', 'en', 1, 'https://ror.org/03sbdx317 Divers 4 Heroes'),
(13174, 'https://ror.org/03scggx76', 'en', 1, 'https://ror.org/03scggx76 Fractured Atlas'),
(13175, 'https://ror.org/03sdd1k49', 'no_lang_code', 1, 'https://ror.org/03sdd1k49 Goodyear (Luxembourg)'),
(13176, 'https://ror.org/03sddt131', 'en', 1, 'https://ror.org/03sddt131 Marion Local Schools'),
(13177, 'https://ror.org/03sdjgc51', 'en', 1, 'https://ror.org/03sdjgc51 National Museum of Mathematics'),
(13178, 'https://ror.org/03sf9zf71', 'no_lang_code', 1, 'https://ror.org/03sf9zf71 Freedom Photonics (United States)'),
(13179, 'https://ror.org/03sg2cg73', 'en', 1, 'https://ror.org/03sg2cg73 Rowan-Salisbury School System'),
(13180, 'https://ror.org/03sjtg710', 'no_lang_code', 1, 'https://ror.org/03sjtg710 Prüf- und Forschungsinstitut Pirmasens (Germany)'),
(13181, 'https://ror.org/03sn2zf74', 'en', 1, 'https://ror.org/03sn2zf74 Greater Baden Medical Services'),
(13182, 'https://ror.org/03snn3m57', 'en', 1, 'https://ror.org/03snn3m57 Rowan College at Gloucester County'),
(13183, 'https://ror.org/03spep839', 'no_lang_code', 1, 'https://ror.org/03spep839 NewLink Genetics (United States)'),
(13184, 'https://ror.org/03spsm219', 'no_lang_code', 1, 'https://ror.org/03spsm219 Ingegneria dei Sistemi (Italy)'),
(13185, 'https://ror.org/03sq8r703', 'en', 1, 'https://ror.org/03sq8r703 Menoufia University Hospitals Ł…Ų³ŲŖŲ“ŁŁŠŲ§ŲŖ Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŁˆŁŁŠŲ©'),
(13186, 'https://ror.org/03sqxy896', 'no_lang_code', 1, 'https://ror.org/03sqxy896 OpenLink Software (United Kingdom)'),
(13187, 'https://ror.org/03sx0k281', 'en', 1, 'https://ror.org/03sx0k281 Henry Street Settlement'),
(13188, 'https://ror.org/03t0ndf94', 'en', 1, 'https://ror.org/03t0ndf94 Paralyzed Veterans of America, Cal-Diego Chapter'),
(13189, 'https://ror.org/03t3bph36', 'no_lang_code', 1, 'https://ror.org/03t3bph36 Nanometics (United States)'),
(13190, 'https://ror.org/03t5n9b81', 'en', 1, 'https://ror.org/03t5n9b81 Pancreatic Cancer Action Network'),
(13191, 'https://ror.org/03t5x5269', 'no_lang_code', 1, 'https://ror.org/03t5x5269 Cogne (Italy)'),
(13192, 'https://ror.org/03t7fbx42', 'no_lang_code', 1, 'https://ror.org/03t7fbx42 Wroclaw Research Centre EIT+ (Poland)'),
(13193, 'https://ror.org/03t8mqd25', 'en', 1, 'https://ror.org/03t8mqd25 Institute of Molecular Biology'),
(13194, 'https://ror.org/03t8v2f28', 'en', 1, 'https://ror.org/03t8v2f28 Rush Copley Foundation'),
(13195, 'https://ror.org/03ta8pf33', 'it', 1, 'https://ror.org/03ta8pf33 Institute of Translational Pharmacology Istituto di Farmacologia Traslazionale'),
(13196, 'https://ror.org/03te9j613', 'en', 1, 'https://ror.org/03te9j613 Environment Park'),
(13197, 'https://ror.org/03tg4fk16', 'en', 1, 'https://ror.org/03tg4fk16 Fresno Metro Ministry'),
(13198, 'https://ror.org/03th4vw55', 'en', 1, 'https://ror.org/03th4vw55 Operation Samahan'),
(13199, 'https://ror.org/03tvffn83', 'fr', 1, 'https://ror.org/03tvffn83 Forem'),
(13200, 'https://ror.org/03tvk8g25', 'no_lang_code', 1, 'https://ror.org/03tvk8g25 CertiCon (Czechia)'),
(13201, 'https://ror.org/03tvp8c36', 'en', 1, 'https://ror.org/03tvp8c36 PA Breast Cancer Coalition'),
(13202, 'https://ror.org/03txpx007', 'no_lang_code', 1, 'https://ror.org/03txpx007 Agendia (Netherlands)'),
(13203, 'https://ror.org/03tyjzx42', 'en', 1, 'https://ror.org/03tyjzx42 Negev Foundation'),
(13204, 'https://ror.org/03tyqfz83', 'no_lang_code', 1, 'https://ror.org/03tyqfz83 GDA (United States)'),
(13205, 'https://ror.org/03tzetp81', 'no_lang_code', 1, 'https://ror.org/03tzetp81 Mandelli (Italy)'),
(13206, 'https://ror.org/03v73t130', 'no_lang_code', 1, 'https://ror.org/03v73t130 Space Applications Services (Belgium)'),
(13207, 'https://ror.org/03v7h1165', 'en', 1, 'https://ror.org/03v7h1165 Institute for Microstructural Sciences'),
(13208, 'https://ror.org/03v9xsr27', 'no_lang_code', 1, 'https://ror.org/03v9xsr27 Vertilas (Germany)'),
(13209, 'https://ror.org/03vabvg16', 'no_lang_code', 1, 'https://ror.org/03vabvg16 Svalbard Global Seed Vault'),
(13210, 'https://ror.org/03vaffn20', 'no_lang_code', 1, 'https://ror.org/03vaffn20 TTI (Spain)'),
(13211, 'https://ror.org/03vb4t572', 'en', 1, 'https://ror.org/03vb4t572 Cancer Services'),
(13212, 'https://ror.org/03vd1gx02', 'en', 1, 'https://ror.org/03vd1gx02 Rhode Island Department of Administration'),
(13213, 'https://ror.org/03veb6e23', 'no_lang_code', 1, 'https://ror.org/03veb6e23 Prism Biolab Corporation (Japan)'),
(13214, 'https://ror.org/03vedwr79', 'no_lang_code', 1, 'https://ror.org/03vedwr79 Fidelity Biosciences (United States)'),
(13215, 'https://ror.org/03vehc845', 'no_lang_code', 1, 'https://ror.org/03vehc845 Irepa Laser (France)'),
(13216, 'https://ror.org/03veq6934', 'no_lang_code', 1, 'https://ror.org/03veq6934 Pepscan (Netherlands)'),
(13217, 'https://ror.org/03vfgta75', 'en', 1, 'https://ror.org/03vfgta75 Illinois CancerCare'),
(13218, 'https://ror.org/03vfjzd38', 'en', 1, 'https://ror.org/03vfjzd38 Center for Biomedical Research of La Rioja Centro de Investigación Biomédica de La Rioja'),
(13219, 'https://ror.org/03vg56f33', 'it', 1, 'https://ror.org/03vg56f33 Unioncamere Veneto'),
(13220, 'https://ror.org/03vggmh05', 'en', 1, 'https://ror.org/03vggmh05 Polistes Foundation'),
(13221, 'https://ror.org/03vk04b45', 'en', 1, 'https://ror.org/03vk04b45 Cobb and Douglas County Community Services Board'),
(13222, 'https://ror.org/03vkcbk24', 'en', 1, 'https://ror.org/03vkcbk24 Changing Life Education Initiative'),
(13223, 'https://ror.org/03vm7rm25', 'en', 1, 'https://ror.org/03vm7rm25 Project Concern International'),
(13224, 'https://ror.org/03vmw1d16', 'en', 1, 'https://ror.org/03vmw1d16 Mercy Medical Center Sioux City'),
(13225, 'https://ror.org/03vp4wk44', 'en', 1, 'https://ror.org/03vp4wk44 Omak School District'),
(13226, 'https://ror.org/03vpcz360', 'no_lang_code', 1, 'https://ror.org/03vpcz360 Vichem Chemie (Hungary)'),
(13227, 'https://ror.org/03vw44013', 'no_lang_code', 1, 'https://ror.org/03vw44013 Belgoprocess (Belgium)'),
(13228, 'https://ror.org/03vxeyp56', 'no_lang_code', 1, 'https://ror.org/03vxeyp56 Castle Group (United Kingdom)'),
(13229, 'https://ror.org/03vy8yd42', 'en', 1, 'https://ror.org/03vy8yd42 St. Charles Hospital'),
(13230, 'https://ror.org/03vyk5m57', 'en', 1, 'https://ror.org/03vyk5m57 Connecticut Center for Advanced Technology'),
(13231, 'https://ror.org/03vz6gs79', 'no_lang_code', 1, 'https://ror.org/03vz6gs79 AMS (Austria)'),
(13232, 'https://ror.org/03vzz0n02', 'en', 1, 'https://ror.org/03vzz0n02 Disabled Sports Eastern Sierra'),
(13233, 'https://ror.org/03w0zcm71', 'en', 1, 'https://ror.org/03w0zcm71 Project Food, Land and People'),
(13234, 'https://ror.org/03w1cd742', 'it', 1, 'https://ror.org/03w1cd742 Leather and Tanning Materials Experimental Station Stazione Sperimentale per l''Industria delle Pelli e delle Materie Concianti'),
(13235, 'https://ror.org/03w387231', 'nl', 1, 'https://ror.org/03w387231 Gemeente Den Haag'),
(13236, 'https://ror.org/03w4h7282', 'en', 1, 'https://ror.org/03w4h7282 Freedom Service Dogs'),
(13237, 'https://ror.org/03w65sq52', 'no_lang_code', 1, 'https://ror.org/03w65sq52 Gas Natural Fenosa (Spain)'),
(13238, 'https://ror.org/03w6qq889', 'en', 1, 'https://ror.org/03w6qq889 College of the Ozarks'),
(13239, 'https://ror.org/03w7qe352', 'en', 1, 'https://ror.org/03w7qe352 Cancer Care Connection'),
(13240, 'https://ror.org/03w8v9a14', 'fr', 1, 'https://ror.org/03w8v9a14 Observatoire des Sciences et des Techniques'),
(13241, 'https://ror.org/03w9j7q30', 'no_lang_code', 1, 'https://ror.org/03w9j7q30 Databank (Italy)'),
(13242, 'https://ror.org/03w9zd521', 'en', 1, 'https://ror.org/03w9zd521 St. David''s Round Rock Medical Center'),
(13243, 'https://ror.org/03waww979', 'en', 1, 'https://ror.org/03waww979 Hays Medical Center'),
(13244, 'https://ror.org/03wbacc17', 'en', 1, 'https://ror.org/03wbacc17 Pressing On'),
(13245, 'https://ror.org/03wbdxv85', 'en', 1, 'https://ror.org/03wbdxv85 Greyston'),
(13246, 'https://ror.org/03wcw5870', 'en', 1, 'https://ror.org/03wcw5870 India Health Action Trust'),
(13247, 'https://ror.org/03wepve87', 'de', 1, 'https://ror.org/03wepve87 Berlin-Brandenburg Broadcasting Rundfunk Berlin-Brandenburg'),
(13248, 'https://ror.org/03wg52r81', 'en', 1, 'https://ror.org/03wg52r81 Health and Human Services Agency'),
(13249, 'https://ror.org/03wg7sa16', 'en', 1, 'https://ror.org/03wg7sa16 Choate Rosemary Hall'),
(13250, 'https://ror.org/03whc3s66', 'no_lang_code', 1, 'https://ror.org/03whc3s66 Delta (Denmark)'),
(13251, 'https://ror.org/03wkygj08', 'no_lang_code', 1, 'https://ror.org/03wkygj08 Z4 Energy Systems (United States)'),
(13252, 'https://ror.org/03wmxmy95', 'en', 1, 'https://ror.org/03wmxmy95 Geographical Information System International Group'),
(13253, 'https://ror.org/03wps7b22', 'en', 1, 'https://ror.org/03wps7b22 Movember'),
(13254, 'https://ror.org/03wqecf08', 'en', 1, 'https://ror.org/03wqecf08 Holistic Management International'),
(13255, 'https://ror.org/03wqknk68', 'en', 1, 'https://ror.org/03wqknk68 Lou Ruvo Brain Institute'),
(13256, 'https://ror.org/03wr7bx86', 'no_lang_code', 1, 'https://ror.org/03wr7bx86 Marine Information Service (Netherlands)'),
(13257, 'https://ror.org/03wrq2n31', 'en', 1, 'https://ror.org/03wrq2n31 Hospice By The Bay'),
(13258, 'https://ror.org/03wtkw294', 'en', 1, 'https://ror.org/03wtkw294 National Hispanic Council on Aging'),
(13259, 'https://ror.org/03wvdfp77', 'no_lang_code', 1, 'https://ror.org/03wvdfp77 Posiva (Finland)'),
(13260, 'https://ror.org/03ww1bx13', 'en', 1, 'https://ror.org/03ww1bx13 Multiple Myeloma Research Foundation'),
(13261, 'https://ror.org/03wyccz80', 'en', 1, 'https://ror.org/03wyccz80 Beth C. Wright Cancer Resource Center'),
(13262, 'https://ror.org/03wye8c03', 'en', 1, 'https://ror.org/03wye8c03 Space Research and Technology Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за космически ŠøŠ·ŃŠ»ŠµŠ“Š²Š°Š½ŠøŃ към'),
(13263, 'https://ror.org/03x2xt559', 'no_lang_code', 1, 'https://ror.org/03x2xt559 Pfizer (Spain)'),
(13264, 'https://ror.org/03x3tkg74', 'pt', 1, 'https://ror.org/03x3tkg74 Instituto de Ciências da Terra e do Espaço'),
(13265, 'https://ror.org/03x45a950', 'it', 1, 'https://ror.org/03x45a950 Laboratorio di Scienze della Cittadinanza'),
(13266, 'https://ror.org/03x507n02', 'en', 1, 'https://ror.org/03x507n02 Georgia Department of Education'),
(13267, 'https://ror.org/03x78r446', 'en', 1, 'https://ror.org/03x78r446 Institute of Mechanics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по механика'),
(13268, 'https://ror.org/03x84qk23', 'en', 1, 'https://ror.org/03x84qk23 Nederlands Normalisatie Instituut Netherlands Standardization Institute'),
(13269, 'https://ror.org/03x8kjj16', 'no_lang_code', 1, 'https://ror.org/03x8kjj16 Signosis'),
(13270, 'https://ror.org/03x8wy758', 'no_lang_code', 1, 'https://ror.org/03x8wy758 Tataa Biocenter (Sweden)'),
(13271, 'https://ror.org/03xb0b587', 'no_lang_code', 1, 'https://ror.org/03xb0b587 CDG Therapeutics (United States)'),
(13272, 'https://ror.org/03xbp3895', 'en', 1, 'https://ror.org/03xbp3895 AIDS Research Alliance'),
(13273, 'https://ror.org/03xe1hd69', 'en', 1, 'https://ror.org/03xe1hd69 New Horizons Independent Living Center'),
(13274, 'https://ror.org/03xe5bc97', 'en', 1, 'https://ror.org/03xe5bc97 Institute for Music and Neurologic Function'),
(13275, 'https://ror.org/03xec1444', 'no_lang_code', 1, 'https://ror.org/03xec1444 Science Systems and Applications (United States)'),
(13276, 'https://ror.org/03xg63v87', 'no_lang_code', 1, 'https://ror.org/03xg63v87 Taber International (United States)'),
(13277, 'https://ror.org/03xh1py88', 'en', 1, 'https://ror.org/03xh1py88 ArtThread Foundation'),
(13278, 'https://ror.org/03xkhb205', 'no_lang_code', 1, 'https://ror.org/03xkhb205 Soltech (Belgium)'),
(13279, 'https://ror.org/03xpcbj56', 'en', 1, 'https://ror.org/03xpcbj56 Medical Care Development International'),
(13280, 'https://ror.org/03xptr862', 'de', 1, 'https://ror.org/03xptr862 Deutsches Jugendinstitut German Youth Institute'),
(13281, 'https://ror.org/03xrs4d06', 'no_lang_code', 1, 'https://ror.org/03xrs4d06 Cerulean Pharma (United States)'),
(13282, 'https://ror.org/03xts5k97', 'en', 1, 'https://ror.org/03xts5k97 Tompkins-Seneca-Tioga Board of Cooperative Educational Services'),
(13283, 'https://ror.org/03xvkpf85', 'en', 1, 'https://ror.org/03xvkpf85 Bowery Mission'),
(13284, 'https://ror.org/03xwr3e89', 'en', 1, 'https://ror.org/03xwr3e89 Maryland Agricultural Education Foundation'),
(13285, 'https://ror.org/03xxdgr65', 'no_lang_code', 1, 'https://ror.org/03xxdgr65 CSP Innovazione nelle ICT (Italy)'),
(13286, 'https://ror.org/03xxx9y67', 'no_lang_code', 1, 'https://ror.org/03xxx9y67 Marel (Iceland)'),
(13287, 'https://ror.org/03xy06m93', 'en', 1, 'https://ror.org/03xy06m93 Memorial Health System'),
(13288, 'https://ror.org/03xzsxe18', 'en', 1, 'https://ror.org/03xzsxe18 California Adaptive Rowing Program'),
(13289, 'https://ror.org/03y0f7839', 'en', 1, 'https://ror.org/03y0f7839 European Federation of Food Science and Technology'),
(13290, 'https://ror.org/03y17pk13', 'en', 1, 'https://ror.org/03y17pk13 Continua Health Alliance'),
(13291, 'https://ror.org/03y260e28', 'en', 1, 'https://ror.org/03y260e28 Neurologic Disease Foundation'),
(13292, 'https://ror.org/03y3ebd61', 'en', 1, 'https://ror.org/03y3ebd61 American Society for Reproductive Immunology'),
(13293, 'https://ror.org/03y4g9f74', 'no_lang_code', 1, 'https://ror.org/03y4g9f74 Inotex (Czechia)'),
(13294, 'https://ror.org/03y4r3n15', 'no_lang_code', 1, 'https://ror.org/03y4r3n15 Scientific Fishery Systems (United States)'),
(13295, 'https://ror.org/03y50wn05', 'en', 1, 'https://ror.org/03y50wn05 Mountain Empire Older Citizens'),
(13296, 'https://ror.org/03y686t84', 'no_lang_code', 1, 'https://ror.org/03y686t84 Grenada National Organisation of Women'),
(13297, 'https://ror.org/03y87q061', 'en', 1, 'https://ror.org/03y87q061 Public Broadcasting Service'),
(13298, 'https://ror.org/03y8qgg33', 'en', 1, 'https://ror.org/03y8qgg33 Radiant Health Centers'),
(13299, 'https://ror.org/03y8t7556', 'no_lang_code', 1, 'https://ror.org/03y8t7556 Terrenew (United States)'),
(13300, 'https://ror.org/03ycv1b86', 'no_lang_code', 1, 'https://ror.org/03ycv1b86 Babcock & Wilcox (United States)'),
(13301, 'https://ror.org/03ydqnc29', 'en', 1, 'https://ror.org/03ydqnc29 Miriam''s Kitchen'),
(13302, 'https://ror.org/03yeddd43', 'en', 1, 'https://ror.org/03yeddd43 Central Arkansas Radiation Therapy Institute'),
(13303, 'https://ror.org/03yee2588', 'no_lang_code', 1, 'https://ror.org/03yee2588 BELECTRIC (Germany)'),
(13304, 'https://ror.org/03yew7168', 'en', 1, 'https://ror.org/03yew7168 Inter-Psy'),
(13305, 'https://ror.org/03yfpyd14', 'no_lang_code', 1, 'https://ror.org/03yfpyd14 Nutrition Sciences (Belgium)'),
(13306, 'https://ror.org/03yhymv35', 'no_lang_code', 1, 'https://ror.org/03yhymv35 Timber Research and Development Association (United Kingdom)'),
(13307, 'https://ror.org/03ykmm292', 'en', 1, 'https://ror.org/03ykmm292 Advanced Barber College & Hair Design'),
(13308, 'https://ror.org/03ym3qb63', 'en', 1, 'https://ror.org/03ym3qb63 Centre for Liberal Strategies'),
(13309, 'https://ror.org/03yqwby83', 'en', 1, 'https://ror.org/03yqwby83 Norfolk County Agricultural High School'),
(13310, 'https://ror.org/03ys8xj90', 'no_lang_code', 1, 'https://ror.org/03ys8xj90 Intelligent Software Components (Spain)'),
(13311, 'https://ror.org/03ysemc97', 'de', 1, 'https://ror.org/03ysemc97 Senate Department for Urban Development and the Environment Senatsverwaltung für Stadtentwicklung und Wohnen'),
(13312, 'https://ror.org/03yskjj43', 'en', 1, 'https://ror.org/03yskjj43 Texas Neurology'),
(13313, 'https://ror.org/03yv2v252', 'no_lang_code', 1, 'https://ror.org/03yv2v252 EpitoGenesis (United States)'),
(13314, 'https://ror.org/03yv3yk36', 'en', 1, 'https://ror.org/03yv3yk36 Maryland Department of Commerce'),
(13315, 'https://ror.org/03yx1gg75', 'en', 1, 'https://ror.org/03yx1gg75 Texas Nurses Association'),
(13316, 'https://ror.org/03yzj7n24', 'es', 1, 'https://ror.org/03yzj7n24 Asociación de Investigación de la Industria Agroalimentaria'),
(13317, 'https://ror.org/03z26a547', 'en', 1, 'https://ror.org/03z26a547 Whitman-Walker Health'),
(13318, 'https://ror.org/03z2djz07', 'no_lang_code', 1, 'https://ror.org/03z2djz07 Sciessent (United States)'),
(13319, 'https://ror.org/03z2xqc96', 'no_lang_code', 1, 'https://ror.org/03z2xqc96 Cognition Therapeutics (United States)'),
(13320, 'https://ror.org/03z55y406', 'en', 1, 'https://ror.org/03z55y406 Eagle Mount'),
(13321, 'https://ror.org/03z5t3857', 'en', 1, 'https://ror.org/03z5t3857 VA Fanarjian National Center of Oncology Վ.Ō±. Õ–Õ”Õ¶Õ”Ö€Õ»ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ուռուցքՔբՔնությՔն Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(13322, 'https://ror.org/03z749c37', 'no_lang_code', 1, 'https://ror.org/03z749c37 Agrifutur (Italy)'),
(13323, 'https://ror.org/03z7g2p93', 'en', 1, 'https://ror.org/03z7g2p93 Cody Foundation'),
(13324, 'https://ror.org/03z7jn533', 'fr', 1, 'https://ror.org/03z7jn533 Plastipolis'),
(13325, 'https://ror.org/03z9qf407', 'en', 1, 'https://ror.org/03z9qf407 Bronson Health Foundation'),
(13326, 'https://ror.org/03zaba654', 'no_lang_code', 1, 'https://ror.org/03zaba654 Jernkontoret (Sweden)'),
(13327, 'https://ror.org/03zaca395', 'no_lang_code', 1, 'https://ror.org/03zaca395 Gorge Group (France)'),
(13328, 'https://ror.org/03zb0d553', 'no_lang_code', 1, 'https://ror.org/03zb0d553 Pemaquid Mussel Farms (United States)'),
(13329, 'https://ror.org/03zecp235', 'no_lang_code', 1, 'https://ror.org/03zecp235 Plexcera Therapeutics (United States)'),
(13330, 'https://ror.org/03zfet066', 'en', 1, 'https://ror.org/03zfet066 Association for Womens Rights in Development'),
(13331, 'https://ror.org/03zff7r07', 'en', 1, 'https://ror.org/03zff7r07 Gila River Healthcare'),
(13332, 'https://ror.org/03zgv2124', 'en', 1, 'https://ror.org/03zgv2124 Iowa Valley Community College District'),
(13333, 'https://ror.org/03zhpcf80', 'fr', 1, 'https://ror.org/03zhpcf80 Institut National de Recherche Halieutique'),
(13334, 'https://ror.org/03zk0kr46', 'en', 1, 'https://ror.org/03zk0kr46 Filmmakers Collaborative'),
(13335, 'https://ror.org/03zk2pm28', 'no_lang_code', 1, 'https://ror.org/03zk2pm28 Pulsar Informatics (United States)'),
(13336, 'https://ror.org/03zksk821', 'en', 1, 'https://ror.org/03zksk821 North Coast Opportunities'),
(13337, 'https://ror.org/03zmx1209', 'en', 1, 'https://ror.org/03zmx1209 Freeman Sheldon Research Group'),
(13338, 'https://ror.org/03znvgc81', 'en', 1, 'https://ror.org/03znvgc81 Areufit Health Services'),
(13339, 'https://ror.org/03zpp5097', 'en', 1, 'https://ror.org/03zpp5097 Northwest Regional Planning Commission'),
(13340, 'https://ror.org/03zq1ab33', 'sk', 1, 'https://ror.org/03zq1ab33 Energy Centre Bratislava'),
(13341, 'https://ror.org/03zt7kt60', 'no_lang_code', 1, 'https://ror.org/03zt7kt60 SePRO (United States)'),
(13342, 'https://ror.org/03ztwkx44', 'no_lang_code', 1, 'https://ror.org/03ztwkx44 Revoind Industriale (Italy)'),
(13343, 'https://ror.org/03zvc0a12', 'no_lang_code', 1, 'https://ror.org/03zvc0a12 iKnowHow (Greece)'),
(13344, 'https://ror.org/03zxbhz42', 'no_lang_code', 1, 'https://ror.org/03zxbhz42 Velti (Greece)'),
(13345, 'https://ror.org/03zydm450', 'en', 1, 'https://ror.org/03zydm450 Great Ormond Street Hospital for Children NHS Foundation Trust'),
(13346, 'https://ror.org/03zzh2n66', 'no_lang_code', 1, 'https://ror.org/03zzh2n66 M Welborn Group (United States)'),
(13347, 'https://ror.org/03zzy2b27', 'no_lang_code', 1, 'https://ror.org/03zzy2b27 Plex Pharmaceuticals (United States)'),
(13348, 'https://ror.org/0400k7f13', 'en', 1, 'https://ror.org/0400k7f13 Hospice of Orleans'),
(13349, 'https://ror.org/04026qg09', 'en', 1, 'https://ror.org/04026qg09 Genesis HealthCare System'),
(13350, 'https://ror.org/04039yq48', 'en', 1, 'https://ror.org/04039yq48 Dharmais Cancer Hospital RS Kanker Dharmais'),
(13351, 'https://ror.org/040458q49', 'en', 1, 'https://ror.org/040458q49 Geological Institute Strashimir Dimitrov Геологически ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "Š”Ń‚Ń€Š°ŃˆŠøŠ¼ŠøŃ€ Димитров"'),
(13352, 'https://ror.org/0406ep819', 'en', 1, 'https://ror.org/0406ep819 Neural Repair Institute'),
(13353, 'https://ror.org/04079cq52', 'en', 1, 'https://ror.org/04079cq52 Community Medical Centers'),
(13354, 'https://ror.org/040823y46', 'no_lang_code', 1, 'https://ror.org/040823y46 Guger Technologies (Austria)'),
(13355, 'https://ror.org/0408zy315', 'en', 1, 'https://ror.org/0408zy315 Fieldstone Farm Therapeutic Riding Center'),
(13356, 'https://ror.org/04094ne36', 'no_lang_code', 1, 'https://ror.org/04094ne36 Deltamarin (Finland)'),
(13357, 'https://ror.org/0409nay36', 'no_lang_code', 1, 'https://ror.org/0409nay36 Aptiv (Italy)'),
(13358, 'https://ror.org/040an9w95', 'en', 1, 'https://ror.org/040an9w95 American Jewish Joint Distribution Committee'),
(13359, 'https://ror.org/040e8a368', 'no_lang_code', 1, 'https://ror.org/040e8a368 Harmonex (United States)'),
(13360, 'https://ror.org/040mcv449', 'no_lang_code', 1, 'https://ror.org/040mcv449 Lohocla Research Corporation (United States)'),
(13361, 'https://ror.org/040n23d23', 'no_lang_code', 1, 'https://ror.org/040n23d23 InnoPhage (Portugal)'),
(13362, 'https://ror.org/040necf22', 'en', 1, 'https://ror.org/040necf22 Alpha Omega Veterans Services'),
(13363, 'https://ror.org/040paq780', 'es', 1, 'https://ror.org/040paq780 Ecoserveis'),
(13364, 'https://ror.org/040wa6e75', 'no_lang_code', 1, 'https://ror.org/040wa6e75 NKT Therapeutics (United States)'),
(13365, 'https://ror.org/040xhth73', 'en', 1, 'https://ror.org/040xhth73 Institute of Cell Biology and Neurobiology Istituto di Biologia Cellulare e Neurobiologia'),
(13366, 'https://ror.org/040xtvv41', 'no_lang_code', 1, 'https://ror.org/040xtvv41 Herbalife (Australia)'),
(13367, 'https://ror.org/040z4nv21', 'de', 1, 'https://ror.org/040z4nv21 Agaplesion Bethanien Krankenhaus');
INSERT INTO `rors` VALUES
(13368, 'https://ror.org/0414e3w08', 'en', 1, 'https://ror.org/0414e3w08 National Latina Institute for Reproductive Health'),
(13369, 'https://ror.org/0417hfx81', 'en', 1, 'https://ror.org/0417hfx81 Foundation for Integrated Rural Development'),
(13370, 'https://ror.org/0419dpe16', 'no_lang_code', 1, 'https://ror.org/0419dpe16 Ficosa International (Spain)'),
(13371, 'https://ror.org/041btzw22', 'en', 1, 'https://ror.org/041btzw22 God''s Love We Deliver'),
(13372, 'https://ror.org/041ceep81', 'pt', 1, 'https://ror.org/041ceep81 Sindicato dos Trabalhadores de Escritório'),
(13373, 'https://ror.org/041cwwp58', 'no_lang_code', 1, 'https://ror.org/041cwwp58 Technical Design (United States)'),
(13374, 'https://ror.org/041edce82', 'en', 1, 'https://ror.org/041edce82 Eastern Nebraska Wheelchair Athletic Association'),
(13375, 'https://ror.org/041fc3q68', 'no_lang_code', 1, 'https://ror.org/041fc3q68 EnteraTech (United States)'),
(13376, 'https://ror.org/041g4k048', 'en', 1, 'https://ror.org/041g4k048 Iringa Mercy Organization'),
(13377, 'https://ror.org/041npkc82', 'no_lang_code', 1, 'https://ror.org/041npkc82 AparnaBio (United States)'),
(13378, 'https://ror.org/041p50967', 'pt', 1, 'https://ror.org/041p50967 Instituto Noos'),
(13379, 'https://ror.org/041pj0122', 'en', 1, 'https://ror.org/041pj0122 Adhikaar'),
(13380, 'https://ror.org/041qezx89', 'en', 1, 'https://ror.org/041qezx89 Bay Area Pediatric Pulmonary Medical Corporation'),
(13381, 'https://ror.org/041s3mp49', 'no_lang_code', 1, 'https://ror.org/041s3mp49 Solvionic (France)'),
(13382, 'https://ror.org/041shdj17', 'no_lang_code', 1, 'https://ror.org/041shdj17 Energie Baden-Württemberg (Germany)'),
(13383, 'https://ror.org/0423qtd98', 'no_lang_code', 1, 'https://ror.org/0423qtd98 StormCenter Communications (United States)'),
(13384, 'https://ror.org/04257nk59', 'en', 1, 'https://ror.org/04257nk59 Beatitudes Campus'),
(13385, 'https://ror.org/0425feb41', 'en', 1, 'https://ror.org/0425feb41 Project Walk Orlando'),
(13386, 'https://ror.org/0427e1040', 'en', 1, 'https://ror.org/0427e1040 Adventist HealthCare'),
(13387, 'https://ror.org/0427pc986', 'no_lang_code', 1, 'https://ror.org/0427pc986 CVD Technologies (United Kingdom)'),
(13388, 'https://ror.org/042abrf84', 'en', 1, 'https://ror.org/042abrf84 Columbus City Schools'),
(13389, 'https://ror.org/042any649', 'no_lang_code', 1, 'https://ror.org/042any649 ArcelorMittal (Belgium)'),
(13390, 'https://ror.org/042e1dy21', 'en', 1, 'https://ror.org/042e1dy21 Hospice of the Valley'),
(13391, 'https://ror.org/042ekhp43', 'no_lang_code', 1, 'https://ror.org/042ekhp43 Bureau Veritas (Italy)'),
(13392, 'https://ror.org/042f0eq65', 'fr', 1, 'https://ror.org/042f0eq65 Conseil Economique et social de la Region de Bruxelles Capitale, Conseil Ʃconomique et social de la RƩgion de Bruxelles-Capitale Economische en Sociale Raad voor het Brussels Hoofdstedelijk Gewest'),
(13393, 'https://ror.org/042kdph44', 'no_lang_code', 1, 'https://ror.org/042kdph44 DairySight (United States)'),
(13394, 'https://ror.org/042mcbx19', 'en', 1, 'https://ror.org/042mcbx19 Council on Food, Agricultural and Resource Economics'),
(13395, 'https://ror.org/042n14286', 'it', 1, 'https://ror.org/042n14286 InnovaPuglia'),
(13396, 'https://ror.org/042p1vp06', 'no_lang_code', 1, 'https://ror.org/042p1vp06 BioBlast Pharma (Israel)'),
(13397, 'https://ror.org/042pd7533', 'en', 1, 'https://ror.org/042pd7533 British Association of Public Safety Communications Officials'),
(13398, 'https://ror.org/042wjgv72', 'en', 1, 'https://ror.org/042wjgv72 Girl Scouts of the USA'),
(13399, 'https://ror.org/042y8fp68', 'no_lang_code', 1, 'https://ror.org/042y8fp68 Tekever (Portugal)'),
(13400, 'https://ror.org/042yr5054', 'no_lang_code', 1, 'https://ror.org/042yr5054 British Textile Technology Group'),
(13401, 'https://ror.org/043036461', 'en', 1, 'https://ror.org/043036461 CancerLINC'),
(13402, 'https://ror.org/0430rna51', 'en', 1, 'https://ror.org/0430rna51 Christopher and Dana Reeve Foundation'),
(13403, 'https://ror.org/0431b2v07', 'no_lang_code', 1, 'https://ror.org/0431b2v07 Air Liquide (France)'),
(13404, 'https://ror.org/0432q4w56', 'en', 1, 'https://ror.org/0432q4w56 BioInfoBank Institute'),
(13405, 'https://ror.org/0432qbr75', 'no_lang_code', 1, 'https://ror.org/0432qbr75 Alstom (Belgium)'),
(13406, 'https://ror.org/0433f0x41', 'no_lang_code', 1, 'https://ror.org/0433f0x41 Bristol-Myers Squibb (Italy)'),
(13407, 'https://ror.org/0434xpc34', 'no_lang_code', 1, 'https://ror.org/0434xpc34 Panorama Research (United States)'),
(13408, 'https://ror.org/04357cf44', 'no_lang_code', 1, 'https://ror.org/04357cf44 ServiceXS (Netherlands)'),
(13409, 'https://ror.org/0435r0x49', 'no_lang_code', 1, 'https://ror.org/0435r0x49 Devicix (United States)'),
(13410, 'https://ror.org/0435r6m82', 'no_lang_code', 1, 'https://ror.org/0435r6m82 Glialogix (United States)'),
(13411, 'https://ror.org/0436ezp29', 'en', 1, 'https://ror.org/0436ezp29 Chicago Heights Park District'),
(13412, 'https://ror.org/0436qt863', 'no_lang_code', 1, 'https://ror.org/0436qt863 Agrobioinstitute'),
(13413, 'https://ror.org/043989r68', 'en', 1, 'https://ror.org/043989r68 Community Foundation for Northeast Michigan'),
(13414, 'https://ror.org/04398v158', 'en', 1, 'https://ror.org/04398v158 Center for Advanced Diagnostics, Evaluation and Therapeutics'),
(13415, 'https://ror.org/043a1ff28', 'en', 1, 'https://ror.org/043a1ff28 Institute of Chemistry and Chemical Technology'),
(13416, 'https://ror.org/043bgf219', 'en', 1, 'https://ror.org/043bgf219 International Centre for Genetic Engineering and Biotechnology'),
(13417, 'https://ror.org/043f52r95', 'en', 1, 'https://ror.org/043f52r95 Lexington City Schools'),
(13418, 'https://ror.org/043j8fa20', 'en', 1, 'https://ror.org/043j8fa20 Denver School of Nursing'),
(13419, 'https://ror.org/043nqmk58', 'fr', 1, 'https://ror.org/043nqmk58 Neuchâtel Observatory Observatoire Cantonal de Neuchâtel'),
(13420, 'https://ror.org/043pv1763', 'no_lang_code', 1, 'https://ror.org/043pv1763 Dv Tecnologie d''Avanguardia (Italy)'),
(13421, 'https://ror.org/043rcha86', 'no_lang_code', 1, 'https://ror.org/043rcha86 SignalGeneriX (Cyprus)'),
(13422, 'https://ror.org/043svzt04', 'no_lang_code', 1, 'https://ror.org/043svzt04 World Winds (United States)'),
(13423, 'https://ror.org/043t8em33', 'no_lang_code', 1, 'https://ror.org/043t8em33 Stollmann (Germany)'),
(13424, 'https://ror.org/043w47745', 'en', 1, 'https://ror.org/043w47745 Institute for the Application of Geospatial Technology'),
(13425, 'https://ror.org/043wzsx85', 'no_lang_code', 1, 'https://ror.org/043wzsx85 Rio Culebra Cooperative (United States)'),
(13426, 'https://ror.org/043xwqn65', 'en', 1, 'https://ror.org/043xwqn65 Muslim Community Center Medical Clinic'),
(13427, 'https://ror.org/043yg4r95', 'no_lang_code', 1, 'https://ror.org/043yg4r95 Catalyst Pharmaceuticals (United States)'),
(13428, 'https://ror.org/04428zn91', 'no_lang_code', 1, 'https://ror.org/04428zn91 Thermo Fisher Scientific (Germany)'),
(13429, 'https://ror.org/0442hf232', 'en', 1, 'https://ror.org/0442hf232 Zenger Farm'),
(13430, 'https://ror.org/0442mhq67', 'en', 1, 'https://ror.org/0442mhq67 Maintaining Active Citizens'),
(13431, 'https://ror.org/04435ns27', 'en', 1, 'https://ror.org/04435ns27 Florida Neuroscience Center'),
(13432, 'https://ror.org/0443bt978', 'en', 1, 'https://ror.org/0443bt978 Child Abuse Prevention Services of Tuscaloosa'),
(13433, 'https://ror.org/0443rfv41', 'no_lang_code', 1, 'https://ror.org/0443rfv41 Vodera (United Kingdom)'),
(13434, 'https://ror.org/04459n726', 'no_lang_code', 1, 'https://ror.org/04459n726 Dillinger Hütte (Germany)'),
(13435, 'https://ror.org/04460xd73', 'en', 1, 'https://ror.org/04460xd73 Ankhkasta Natural Healing'),
(13436, 'https://ror.org/0446hjv79', 'en', 1, 'https://ror.org/0446hjv79 Florida Hospital Medical Group'),
(13437, 'https://ror.org/0446p2g62', 'en', 1, 'https://ror.org/0446p2g62 Bristol Bay Area Health Corporation'),
(13438, 'https://ror.org/0447c6e97', 'no_lang_code', 1, 'https://ror.org/0447c6e97 NeuroVista (United States)'),
(13439, 'https://ror.org/044947a59', 'no_lang_code', 1, 'https://ror.org/044947a59 Lygos (United States)'),
(13440, 'https://ror.org/044dw4g52', 'no_lang_code', 1, 'https://ror.org/044dw4g52 BlueBotics (Switzerland)'),
(13441, 'https://ror.org/044ggvg47', 'no_lang_code', 1, 'https://ror.org/044ggvg47 Testaluna'),
(13442, 'https://ror.org/044kgnr82', 'en', 1, 'https://ror.org/044kgnr82 Catholic Charities of the Diocese of St. Cloud'),
(13443, 'https://ror.org/044pe5q70', 'no_lang_code', 1, 'https://ror.org/044pe5q70 Pera (Denmark)'),
(13444, 'https://ror.org/044pgyv50', 'no_lang_code', 1, 'https://ror.org/044pgyv50 Research!America (United States)'),
(13445, 'https://ror.org/044qb8j46', 'no_lang_code', 1, 'https://ror.org/044qb8j46 Ansys (France)'),
(13446, 'https://ror.org/044qwkx83', 'no_lang_code', 1, 'https://ror.org/044qwkx83 Vodafone (Germany)'),
(13447, 'https://ror.org/044t1p926', 'en', 1, 'https://ror.org/044t1p926 Museum of Arts and Design'),
(13448, 'https://ror.org/044td5g81', 'en', 1, 'https://ror.org/044td5g81 Golden Valley Health Centers'),
(13449, 'https://ror.org/044vb2892', 'en', 1, 'https://ror.org/044vb2892 Erebouni Medical Center'),
(13450, 'https://ror.org/044ve3x29', 'en', 1, 'https://ror.org/044ve3x29 Bay Area Community Resources'),
(13451, 'https://ror.org/044wjb306', 'fr', 1, 'https://ror.org/044wjb306 Centre international de recherche-dƩveloppement sur l''elevage en zone subhumide'),
(13452, 'https://ror.org/044xw2q20', 'fr', 1, 'https://ror.org/044xw2q20 Federale Overheidsdienst Economie, K.M.O., Middenstand en Energie Service Public FĆ©dĆ©ral Ɖconomie'),
(13453, 'https://ror.org/044z3jj38', 'en', 1, 'https://ror.org/044z3jj38 OMNI Institute'),
(13454, 'https://ror.org/045072k07', 'no_lang_code', 1, 'https://ror.org/045072k07 Cowi (Denmark)'),
(13455, 'https://ror.org/045193y93', 'no_lang_code', 1, 'https://ror.org/045193y93 Motorola (Germany)'),
(13456, 'https://ror.org/0451xtz74', 'de', 1, 'https://ror.org/0451xtz74 Kernkraftwerk Gundremmingen'),
(13457, 'https://ror.org/0452rfk90', 'en', 1, 'https://ror.org/0452rfk90 Pilates of Marin'),
(13458, 'https://ror.org/04533yy36', 'en', 1, 'https://ror.org/04533yy36 North Carolina Society of Hispanic Professionals'),
(13459, 'https://ror.org/0453arj96', 'no_lang_code', 1, 'https://ror.org/0453arj96 Empolis (Germany)'),
(13460, 'https://ror.org/04543zj30', 'no_lang_code', 1, 'https://ror.org/04543zj30 INTECS (Italy)'),
(13461, 'https://ror.org/0456wz313', 'no_lang_code', 1, 'https://ror.org/0456wz313 BAMO International (France)'),
(13462, 'https://ror.org/045791j63', 'en', 1, 'https://ror.org/045791j63 European Journalism Centre'),
(13463, 'https://ror.org/045895r06', 'en', 1, 'https://ror.org/045895r06 Dreams for Kids'),
(13464, 'https://ror.org/0458xbt64', 'no_lang_code', 1, 'https://ror.org/0458xbt64 ATLAS Neuroengineering (Belgium)'),
(13465, 'https://ror.org/0459hk790', 'en', 1, 'https://ror.org/0459hk790 Madison County Public Schools'),
(13466, 'https://ror.org/045b8aq47', 'en', 1, 'https://ror.org/045b8aq47 International Road Transport Union'),
(13467, 'https://ror.org/045b8kj71', 'no_lang_code', 1, 'https://ror.org/045b8kj71 Bioclear Earth (Netherlands)'),
(13468, 'https://ror.org/045e95p45', 'en', 1, 'https://ror.org/045e95p45 JourneyCare'),
(13469, 'https://ror.org/045hjpj39', 'en', 1, 'https://ror.org/045hjpj39 IPC Healthcare'),
(13470, 'https://ror.org/045j3qt75', 'no_lang_code', 1, 'https://ror.org/045j3qt75 Chugachmiut (United States)'),
(13471, 'https://ror.org/045jad561', 'no_lang_code', 1, 'https://ror.org/045jad561 GlobalFoundries (Germany)'),
(13472, 'https://ror.org/045kvge53', 'no_lang_code', 1, 'https://ror.org/045kvge53 Microfluidic ChipShop (Germany)'),
(13473, 'https://ror.org/045m6nf19', 'no_lang_code', 1, 'https://ror.org/045m6nf19 Fibertek (United States)'),
(13474, 'https://ror.org/045mt4m45', 'en', 1, 'https://ror.org/045mt4m45 Chula Vista Community Collaborative'),
(13475, 'https://ror.org/045pcya52', 'en', 1, 'https://ror.org/045pcya52 Ann Arbor Center for Independent Living'),
(13476, 'https://ror.org/045sppx81', 'en', 1, 'https://ror.org/045sppx81 HeadNorth'),
(13477, 'https://ror.org/045tw8497', 'no_lang_code', 1, 'https://ror.org/045tw8497 Archer Technicoat Limited (United Kingdom)'),
(13478, 'https://ror.org/045vamp18', 'no_lang_code', 1, 'https://ror.org/045vamp18 FACC (Austria)'),
(13479, 'https://ror.org/045xh6g63', 'en', 1, 'https://ror.org/045xh6g63 American Institute for Voice and Ear Research'),
(13480, 'https://ror.org/045yh2r89', 'no_lang_code', 1, 'https://ror.org/045yh2r89 Agri Processing Services (United States)'),
(13481, 'https://ror.org/04613d274', 'en', 1, 'https://ror.org/04613d274 Robotics Education and Competition Foundation'),
(13482, 'https://ror.org/0462zf838', 'en', 1, 'https://ror.org/0462zf838 National Museum of Denmark Nationalmuseet'),
(13483, 'https://ror.org/04645z906', 'en', 1, 'https://ror.org/04645z906 Athlete''s for Education'),
(13484, 'https://ror.org/0465ecz69', 'no_lang_code', 1, 'https://ror.org/0465ecz69 Kyocera (Germany)'),
(13485, 'https://ror.org/0465m7058', 'en', 1, 'https://ror.org/0465m7058 GardenShare'),
(13486, 'https://ror.org/0466dv587', 'en', 1, 'https://ror.org/0466dv587 Pacific Gateway Center'),
(13487, 'https://ror.org/0468wac55', 'en', 1, 'https://ror.org/0468wac55 Community Health Resource Center'),
(13488, 'https://ror.org/04690g322', 'no_lang_code', 1, 'https://ror.org/04690g322 Eilenburger Electrolysis and Environmental Engineering Eilenburger Elektrolyse - und Umwelttechnik (Germany)'),
(13489, 'https://ror.org/0469d4m84', 'no_lang_code', 1, 'https://ror.org/0469d4m84 ƅF (Switzerland)'),
(13490, 'https://ror.org/046cpbt38', 'no_lang_code', 1, 'https://ror.org/046cpbt38 Epsilon International (Greece)'),
(13491, 'https://ror.org/046gmyr21', 'en', 1, 'https://ror.org/046gmyr21 Education in Action'),
(13492, 'https://ror.org/046h4gy16', 'en', 1, 'https://ror.org/046h4gy16 Leonia Lions Club'),
(13493, 'https://ror.org/046hxmc98', 'no_lang_code', 1, 'https://ror.org/046hxmc98 Modulation Therapeutics (United States)'),
(13494, 'https://ror.org/046mhfn38', 'en', 1, 'https://ror.org/046mhfn38 Belarusian Research Center For Pediatric Oncology and Hematology Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр Гетской онкологии, гематологии Šø иммунологии Š ŃŃŠæŃƒŠ±Š»Ń–канскі навукова-практычны Ń†ŃŠ½Ń‚Ń€ Š“Š·Ń–Ń†ŃŃ‡Š°Š¹ анкалогіі, гематалогіі і Ń–Š¼ŃƒŠ½Š°Š»Š¾Š³Ń–Ń–'),
(13495, 'https://ror.org/046msyg33', 'no_lang_code', 1, 'https://ror.org/046msyg33 BRCR Global (Peru)'),
(13496, 'https://ror.org/046r27a90', 'en', 1, 'https://ror.org/046r27a90 A.I Karaev Institute of Physiology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии имени А.И. ŠšŠ°Ń€Š°ŠµŠ²Š°'),
(13497, 'https://ror.org/046rga183', 'en', 1, 'https://ror.org/046rga183 Planned Parenthood Southeast'),
(13498, 'https://ror.org/046rsbb51', 'en', 1, 'https://ror.org/046rsbb51 California Ear Institute'),
(13499, 'https://ror.org/046whjx61', 'en', 1, 'https://ror.org/046whjx61 Franklin County Schools'),
(13500, 'https://ror.org/046xez992', 'en', 1, 'https://ror.org/046xez992 Children''s Cancer Association'),
(13501, 'https://ror.org/046z87a78', 'no_lang_code', 1, 'https://ror.org/046z87a78 Carlebach Shul'),
(13502, 'https://ror.org/04701b233', 'de', 1, 'https://ror.org/04701b233 Institut für Energie- und Umweltforschung Heidelberg Institute for Energy and Environmental Research'),
(13503, 'https://ror.org/0470pq820', 'en', 1, 'https://ror.org/0470pq820 Indian Cancer Society'),
(13504, 'https://ror.org/0470ypw21', 'de', 1, 'https://ror.org/0470ypw21 Institut für ökologische Wirtschaftsforschung Institute for Environmental Management and Economics'),
(13505, 'https://ror.org/04717vr35', 'no_lang_code', 1, 'https://ror.org/04717vr35 SSAB (Sweden)'),
(13506, 'https://ror.org/0471xz330', 'en', 1, 'https://ror.org/0471xz330 Bridgeport Hospital Foundation'),
(13507, 'https://ror.org/0472wp149', 'no_lang_code', 1, 'https://ror.org/0472wp149 United Animal Health (United States)'),
(13508, 'https://ror.org/0472xg466', 'no_lang_code', 1, 'https://ror.org/0472xg466 StratiCELL (Belgium)'),
(13509, 'https://ror.org/0473a4773', 'en', 1, 'https://ror.org/0473a4773 Hertie School'),
(13510, 'https://ror.org/04749sq68', 'en', 1, 'https://ror.org/04749sq68 Blank Children''s Hospital'),
(13511, 'https://ror.org/04763bf91', 'en', 1, 'https://ror.org/04763bf91 Group for Organizational Effectiveness'),
(13512, 'https://ror.org/0476ayz92', 'no_lang_code', 1, 'https://ror.org/0476ayz92 Bioarray Genetics (United States)'),
(13513, 'https://ror.org/0476dvj30', 'en', 1, 'https://ror.org/0476dvj30 Augusta Victoria Hospital'),
(13514, 'https://ror.org/047abt623', 'no_lang_code', 1, 'https://ror.org/047abt623 Microsharp (United Kingdom)'),
(13515, 'https://ror.org/047dyfk64', 'en', 1, 'https://ror.org/047dyfk64 Medanta The Medicity'),
(13516, 'https://ror.org/047gyf089', 'en', 1, 'https://ror.org/047gyf089 Orelena Hawks Puckett Institute'),
(13517, 'https://ror.org/047hhy227', 'en', 1, 'https://ror.org/047hhy227 Institute for Parallel Processing Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по паралелна обработка'),
(13518, 'https://ror.org/047qgrj71', 'en', 1, 'https://ror.org/047qgrj71 Illinois Action for Children'),
(13519, 'https://ror.org/047r6vz60', 'en', 1, 'https://ror.org/047r6vz60 Bloomfield Science Museum Jerusalem'),
(13520, 'https://ror.org/047rbbf58', 'en', 1, 'https://ror.org/047rbbf58 Restorix Foundation'),
(13521, 'https://ror.org/047xg5527', 'en', 1, 'https://ror.org/047xg5527 National Council on Indepedent Living'),
(13522, 'https://ror.org/047y4v704', 'en', 1, 'https://ror.org/047y4v704 European Renewable Energy Council'),
(13523, 'https://ror.org/047yd6g50', 'no_lang_code', 1, 'https://ror.org/047yd6g50 Salzgitter AG Salzgitter Group (Germany)'),
(13524, 'https://ror.org/047znxb10', 'no_lang_code', 1, 'https://ror.org/047znxb10 Biojenc (United States)'),
(13525, 'https://ror.org/04831wp37', 'no_lang_code', 1, 'https://ror.org/04831wp37 Devan Chemicals (Belgium)'),
(13526, 'https://ror.org/0483yhz54', 'en', 1, 'https://ror.org/0483yhz54 Children''s Center'),
(13527, 'https://ror.org/0484k9q63', 'en', 1, 'https://ror.org/0484k9q63 Swedish Space Corporation'),
(13528, 'https://ror.org/048514v09', 'en', 1, 'https://ror.org/048514v09 Cuyahoga County Juvenile Court'),
(13529, 'https://ror.org/04853qb43', 'en', 1, 'https://ror.org/04853qb43 Citizens Committee for New York City'),
(13530, 'https://ror.org/04870rh38', 'no_lang_code', 1, 'https://ror.org/04870rh38 Stadtwerke Straubing (Germany)'),
(13531, 'https://ror.org/04898mq89', 'en', 1, 'https://ror.org/04898mq89 Children''s Research Triangle'),
(13532, 'https://ror.org/0489hqz65', 'no_lang_code', 1, 'https://ror.org/0489hqz65 Coatema (Germany)'),
(13533, 'https://ror.org/048et8x32', 'no_lang_code', 1, 'https://ror.org/048et8x32 Moerae Matrix (United States)'),
(13534, 'https://ror.org/048f9wx47', 'en', 1, 'https://ror.org/048f9wx47 Association House of Chicago'),
(13535, 'https://ror.org/048fgvb33', 'no_lang_code', 1, 'https://ror.org/048fgvb33 Podiceps (Netherlands)'),
(13536, 'https://ror.org/048fraw27', 'en', 1, 'https://ror.org/048fraw27 Ministry of Agriculture, Natural Resources and Environment ΄πουργείο Γεωργίας'),
(13537, 'https://ror.org/048fxk571', 'no_lang_code', 1, 'https://ror.org/048fxk571 Edison Pharmaceuticals (United States)'),
(13538, 'https://ror.org/048g5yp93', 'en', 1, 'https://ror.org/048g5yp93 Bhaktapur Cancer Hospital ą¤­ą¤•ą„ą¤¤ą¤Ŗą„ą¤° ą¤•ą„ą¤Æą¤¾ą¤Øą„ą¤øą¤° ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(13539, 'https://ror.org/048j11q41', 'no_lang_code', 1, 'https://ror.org/048j11q41 Rohde & Schwarz (Germany)'),
(13540, 'https://ror.org/048j8nq91', 'en', 1, 'https://ror.org/048j8nq91 Nepal Cancer Hospital and Research Center ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą„ą¤Æą¤¾ą¤Øą„ą¤øą¤° ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² र ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(13541, 'https://ror.org/048q5dx45', 'en', 1, 'https://ror.org/048q5dx45 Communicating for Agriculture Education Programs'),
(13542, 'https://ror.org/048q66y67', 'no_lang_code', 1, 'https://ror.org/048q66y67 BP (Germany)'),
(13543, 'https://ror.org/048sy8p96', 'no_lang_code', 1, 'https://ror.org/048sy8p96 Miltech Hellas (Greece)'),
(13544, 'https://ror.org/048wm8z08', 'de', 1, 'https://ror.org/048wm8z08 Brandenburg Economic Development Board ZukunftsAgentur Brandenburg'),
(13545, 'https://ror.org/048x1jh88', 'no_lang_code', 1, 'https://ror.org/048x1jh88 Euroquality'),
(13546, 'https://ror.org/048z5te50', 'en', 1, 'https://ror.org/048z5te50 Breast Cancer Family Foundation'),
(13547, 'https://ror.org/048z8v674', 'en', 1, 'https://ror.org/048z8v674 Asian American Community Services'),
(13548, 'https://ror.org/048zn2n32', 'no_lang_code', 1, 'https://ror.org/048zn2n32 Ontotext (Bulgaria)'),
(13549, 'https://ror.org/04910zn79', 'en', 1, 'https://ror.org/04910zn79 Delaware AeroSpace Education Foundation'),
(13550, 'https://ror.org/049128m26', 'no_lang_code', 1, 'https://ror.org/049128m26 Integrated Resources Management Company (Malta)'),
(13551, 'https://ror.org/0491s4v58', 'no_lang_code', 1, 'https://ror.org/0491s4v58 Uljanik (Croatia)'),
(13552, 'https://ror.org/0491v6j54', 'no_lang_code', 1, 'https://ror.org/0491v6j54 Granit Technologies (Switzerland)'),
(13553, 'https://ror.org/0492cvk34', 'en', 1, 'https://ror.org/0492cvk34 National Scientific Center for Medical and Biotechnical Research ŠŠ°ŃƒŠŗŠ¾Š²ŠøŠ¹ центр Š· меГико-біотехнічних проблем'),
(13554, 'https://ror.org/0493xxf64', 'no_lang_code', 1, 'https://ror.org/0493xxf64 Eurofins (Denmark)'),
(13555, 'https://ror.org/0497prz03', 'en', 1, 'https://ror.org/0497prz03 Minnesota Agriculture in the Classroom Foundation'),
(13556, 'https://ror.org/0498q3b31', 'no_lang_code', 1, 'https://ror.org/0498q3b31 SSP Consult Beratende Ingenieure (Germany)'),
(13557, 'https://ror.org/0498rcw21', 'en', 1, 'https://ror.org/0498rcw21 Habilitative Systems'),
(13558, 'https://ror.org/049be2c95', 'no_lang_code', 1, 'https://ror.org/049be2c95 Zanasi & Partners (Italy)'),
(13559, 'https://ror.org/049d9a475', 'en', 1, 'https://ror.org/049d9a475 Memorial Hermann'),
(13560, 'https://ror.org/049e6hd13', 'no_lang_code', 1, 'https://ror.org/049e6hd13 Alten (France)'),
(13561, 'https://ror.org/049fjxn51', 'en', 1, 'https://ror.org/049fjxn51 San Diego American Indian Health Center'),
(13562, 'https://ror.org/049j2y056', 'en', 1, 'https://ror.org/049j2y056 Anna C. Scott School'),
(13563, 'https://ror.org/049k4m746', 'en', 1, 'https://ror.org/049k4m746 Mariposa Community Health Center'),
(13564, 'https://ror.org/049kt3f30', 'no_lang_code', 1, 'https://ror.org/049kt3f30 Ernst & Young (Israel)'),
(13565, 'https://ror.org/049nq5186', 'en', 1, 'https://ror.org/049nq5186 European Photovoltaic Industry Association'),
(13566, 'https://ror.org/049qds964', 'en', 1, 'https://ror.org/049qds964 Wilshire Health and Community Services'),
(13567, 'https://ror.org/049qn2f85', 'en', 1, 'https://ror.org/049qn2f85 Hunts Point Alliance for Children'),
(13568, 'https://ror.org/049rgw923', 'en', 1, 'https://ror.org/049rgw923 Joni and Friends'),
(13569, 'https://ror.org/049t27950', 'en', 1, 'https://ror.org/049t27950 CAPEable Adventures'),
(13570, 'https://ror.org/049wg7r76', 'no_lang_code', 1, 'https://ror.org/049wg7r76 Alpha Scents (United States)'),
(13571, 'https://ror.org/049zsmy36', 'no_lang_code', 1, 'https://ror.org/049zsmy36 TÜV SÜD (United Kingdom)'),
(13572, 'https://ror.org/049zt2w56', 'de', 1, 'https://ror.org/049zt2w56 Gesellschaft fuer Wirtschaftliche Strukturforschung Institute of Economic Structures Research'),
(13573, 'https://ror.org/04a0v2b96', 'en', 1, 'https://ror.org/04a0v2b96 Migrant Clinicians Network'),
(13574, 'https://ror.org/04a197k40', 'no_lang_code', 1, 'https://ror.org/04a197k40 ODTÜ Teknokent (Turkey)'),
(13575, 'https://ror.org/04a79ch84', 'en', 1, 'https://ror.org/04a79ch84 CareerSource Brevard'),
(13576, 'https://ror.org/04a87c513', 'it', 1, 'https://ror.org/04a87c513 CentroScienza Onlus'),
(13577, 'https://ror.org/04aave390', 'en', 1, 'https://ror.org/04aave390 Children''s Leukaemia Research Project'),
(13578, 'https://ror.org/04abvbp84', 'en', 1, 'https://ror.org/04abvbp84 San Francisco AIDS Foundation'),
(13579, 'https://ror.org/04adqta18', 'en', 1, 'https://ror.org/04adqta18 Millennium Charter Academy'),
(13580, 'https://ror.org/04adynk16', 'no_lang_code', 1, 'https://ror.org/04adynk16 InConTec (Germany)'),
(13581, 'https://ror.org/04aecpw50', 'no_lang_code', 1, 'https://ror.org/04aecpw50 Caixa MƔgica Software (Portugal)'),
(13582, 'https://ror.org/04aewc151', 'en', 1, 'https://ror.org/04aewc151 Louisiana Art & Science Museum'),
(13583, 'https://ror.org/04afqbm81', 'en', 1, 'https://ror.org/04afqbm81 Mecosta County Medical Center'),
(13584, 'https://ror.org/04ahqd251', 'no_lang_code', 1, 'https://ror.org/04ahqd251 Plant Integrity (United Kingdom)'),
(13585, 'https://ror.org/04ak2vh38', 'en', 1, 'https://ror.org/04ak2vh38 Newark Community Health Centers'),
(13586, 'https://ror.org/04am60t69', 'no_lang_code', 1, 'https://ror.org/04am60t69 Cronus (United States)'),
(13587, 'https://ror.org/04aqebj37', 'en', 1, 'https://ror.org/04aqebj37 Aldersgate Camp and Retreat Center'),
(13588, 'https://ror.org/04arwvm64', 'en', 1, 'https://ror.org/04arwvm64 Pacific Cancer Foundation'),
(13589, 'https://ror.org/04as6y835', 'no_lang_code', 1, 'https://ror.org/04as6y835 TomTom (Netherlands)'),
(13590, 'https://ror.org/04avxfe70', 'en', 1, 'https://ror.org/04avxfe70 Centre for Science, Society and Citizenship'),
(13591, 'https://ror.org/04ax6zj28', 'no_lang_code', 1, 'https://ror.org/04ax6zj28 Infocarto'),
(13592, 'https://ror.org/04axend95', 'no_lang_code', 1, 'https://ror.org/04axend95 FISBA OPTIK (Switzerland)'),
(13593, 'https://ror.org/04az0sk32', 'en', 1, 'https://ror.org/04az0sk32 Sound Watershed Consulting'),
(13594, 'https://ror.org/04azvn561', 'en', 1, 'https://ror.org/04azvn561 Southside Community Land Trust'),
(13595, 'https://ror.org/04b1xdq74', 'no_lang_code', 1, 'https://ror.org/04b1xdq74 Advanced Imaging Projects (United States)'),
(13596, 'https://ror.org/04b239q68', 'en', 1, 'https://ror.org/04b239q68 European Association for the Promotion of Cogeneration'),
(13597, 'https://ror.org/04b43x362', 'en', 1, 'https://ror.org/04b43x362 International Center of New York'),
(13598, 'https://ror.org/04b59sp53', 'en', 1, 'https://ror.org/04b59sp53 UDAAN for the Disabled'),
(13599, 'https://ror.org/04b7haz84', 'en', 1, 'https://ror.org/04b7haz84 Lupus Research Institute'),
(13600, 'https://ror.org/04b85bq70', 'no_lang_code', 1, 'https://ror.org/04b85bq70 Nodality (United States)'),
(13601, 'https://ror.org/04b8ams39', 'en', 1, 'https://ror.org/04b8ams39 Breast Cancer Foundation of the Ozarks'),
(13602, 'https://ror.org/04b8gx121', 'en', 1, 'https://ror.org/04b8gx121 Organic Research Centre'),
(13603, 'https://ror.org/04bac6g30', 'en', 1, 'https://ror.org/04bac6g30 Children with Cancer UK'),
(13604, 'https://ror.org/04bb70w76', 'ro', 1, 'https://ror.org/04bb70w76 Institutul Naţional de Cercetare Dezvoltare Marină Grigore Antipa'),
(13605, 'https://ror.org/04bb84196', 'no_lang_code', 1, 'https://ror.org/04bb84196 Montana Gluten Free (United States)'),
(13606, 'https://ror.org/04bc26c24', 'en', 1, 'https://ror.org/04bc26c24 Wilson''s Cedar Point Farm'),
(13607, 'https://ror.org/04bcdzr74', 'en', 1, 'https://ror.org/04bcdzr74 Centre for Omic Sciences'),
(13608, 'https://ror.org/04bcpv236', 'en', 1, 'https://ror.org/04bcpv236 Institute for Earth Science Research and Education'),
(13609, 'https://ror.org/04bd4pk40', 'no_lang_code', 1, 'https://ror.org/04bd4pk40 WorldFish'),
(13610, 'https://ror.org/04bgaqv80', 'no_lang_code', 1, 'https://ror.org/04bgaqv80 UtvecklingsbyrƄn'),
(13611, 'https://ror.org/04bgb0r98', 'en', 1, 'https://ror.org/04bgb0r98 San Joaquin County Public Health Services'),
(13612, 'https://ror.org/04bgneb83', 'en', 1, 'https://ror.org/04bgneb83 Breast Cancer Help'),
(13613, 'https://ror.org/04bj7w275', 'no_lang_code', 1, 'https://ror.org/04bj7w275 Bee Alert Technology (United States)'),
(13614, 'https://ror.org/04bjr3r43', 'no_lang_code', 1, 'https://ror.org/04bjr3r43 TÜV (Austria)'),
(13615, 'https://ror.org/04bkad313', 'en', 1, 'https://ror.org/04bkad313 Autism Speaks'),
(13616, 'https://ror.org/04brghb67', 'no_lang_code', 1, 'https://ror.org/04brghb67 Hottinger Baldwin Messtechnik (Portugal)'),
(13617, 'https://ror.org/04bsh3r03', 'no_lang_code', 1, 'https://ror.org/04bsh3r03 Ericsson (Croatia)'),
(13618, 'https://ror.org/04bsj8w28', 'fr', 1, 'https://ror.org/04bsj8w28 Forêt Méditerranéenne'),
(13619, 'https://ror.org/04bsz5816', 'no_lang_code', 1, 'https://ror.org/04bsz5816 Rakuten (United States)'),
(13620, 'https://ror.org/04bw38x95', 'en', 1, 'https://ror.org/04bw38x95 Pike High School'),
(13621, 'https://ror.org/04bwtsm02', 'en', 1, 'https://ror.org/04bwtsm02 Electronic Chips & Systems Design Initiative'),
(13622, 'https://ror.org/04by0yr47', 'no_lang_code', 1, 'https://ror.org/04by0yr47 ARMGO Pharma (United States)'),
(13623, 'https://ror.org/04bypsr67', 'no_lang_code', 1, 'https://ror.org/04bypsr67 Enkam (Denmark)'),
(13624, 'https://ror.org/04c0kq537', 'en', 1, 'https://ror.org/04c0kq537 Rapides Regional Medical Center'),
(13625, 'https://ror.org/04c1ecw45', 'en', 1, 'https://ror.org/04c1ecw45 Association to Benefit Children'),
(13626, 'https://ror.org/04c3e6c98', 'no_lang_code', 1, 'https://ror.org/04c3e6c98 Eicas Automazione (Italy)'),
(13627, 'https://ror.org/04c4d1830', 'en', 1, 'https://ror.org/04c4d1830 New Wave Innovation'),
(13628, 'https://ror.org/04c4h8s17', 'fr', 1, 'https://ror.org/04c4h8s17 SociƩtƩ du Canal de Provence'),
(13629, 'https://ror.org/04c5mqw76', 'no_lang_code', 1, 'https://ror.org/04c5mqw76 Industrial Design Consultancy'),
(13630, 'https://ror.org/04c5tww79', 'no_lang_code', 1, 'https://ror.org/04c5tww79 NanoBioMatters (Spain)'),
(13631, 'https://ror.org/04c6bt026', 'no_lang_code', 1, 'https://ror.org/04c6bt026 Affinityfilms (United States)'),
(13632, 'https://ror.org/04ca4p790', 'en', 1, 'https://ror.org/04ca4p790 Lambrakis Research Foundation'),
(13633, 'https://ror.org/04cd6s825', 'en', 1, 'https://ror.org/04cd6s825 California Institute For Rural Studies'),
(13634, 'https://ror.org/04cdzx077', 'en', 1, 'https://ror.org/04cdzx077 Ministry of Food Agriculture and Livestock Türkiye Cumhuriyeti Gıda, Tarım ve Hayvancılık Bakanlığı'),
(13635, 'https://ror.org/04cfdk084', 'en', 1, 'https://ror.org/04cfdk084 OAK Orthopedics'),
(13636, 'https://ror.org/04chbxq69', 'no_lang_code', 1, 'https://ror.org/04chbxq69 Energid Technologies (United States)'),
(13637, 'https://ror.org/04chcgr85', 'no_lang_code', 1, 'https://ror.org/04chcgr85 Raffinerie Tirlemontoise (Belgium)'),
(13638, 'https://ror.org/04cj9pv40', 'en', 1, 'https://ror.org/04cj9pv40 Ormylia Foundation'),
(13639, 'https://ror.org/04cjbhq14', 'no_lang_code', 1, 'https://ror.org/04cjbhq14 Regen BioPharma (United States)'),
(13640, 'https://ror.org/04cmhn872', 'no_lang_code', 1, 'https://ror.org/04cmhn872 Sociedade Portuguesa de Inovação'),
(13641, 'https://ror.org/04cmxh670', 'no_lang_code', 1, 'https://ror.org/04cmxh670 Lenzing (Austria)'),
(13642, 'https://ror.org/04cn8bv62', 'no_lang_code', 1, 'https://ror.org/04cn8bv62 JCP Connect (France)'),
(13643, 'https://ror.org/04cpvzv65', 'en', 1, 'https://ror.org/04cpvzv65 Community Farm Alliance'),
(13644, 'https://ror.org/04cq22z54', 'en', 1, 'https://ror.org/04cq22z54 Institute for Advanced Learning and Research'),
(13645, 'https://ror.org/04crag568', 'en', 1, 'https://ror.org/04crag568 Cranfield Impact Centre'),
(13646, 'https://ror.org/04crjc626', 'no_lang_code', 1, 'https://ror.org/04crjc626 Kivulini Women’s Rights Organisation'),
(13647, 'https://ror.org/04csrvg63', 'en', 1, 'https://ror.org/04csrvg63 Exercise and Survivorship Education Cancer Foundation'),
(13648, 'https://ror.org/04ct03p83', 'no_lang_code', 1, 'https://ror.org/04ct03p83 Centus'),
(13649, 'https://ror.org/04cwtnm77', 'no_lang_code', 1, 'https://ror.org/04cwtnm77 Kansas Environmental Management Associates (United States)'),
(13650, 'https://ror.org/04cxspg15', 'it', 1, 'https://ror.org/04cxspg15 Fondazione Umberto Di Mario'),
(13651, 'https://ror.org/04cz70931', 'no_lang_code', 1, 'https://ror.org/04cz70931 ResilTech (Italy)'),
(13652, 'https://ror.org/04d3q1d69', 'en', 1, 'https://ror.org/04d3q1d69 Newton-Conover Health and Science High School'),
(13653, 'https://ror.org/04d41fm91', 'no_lang_code', 1, 'https://ror.org/04d41fm91 ASIO spol (Czechia)'),
(13654, 'https://ror.org/04d75x649', 'en', 1, 'https://ror.org/04d75x649 The Children''s Museum'),
(13655, 'https://ror.org/04d84av86', 'en', 1, 'https://ror.org/04d84av86 Ministry of National Defence ΄πουργείο Εθνικής Άμυνας'),
(13656, 'https://ror.org/04d8haw14', 'no_lang_code', 1, 'https://ror.org/04d8haw14 SMA Solar Technology (Germany)'),
(13657, 'https://ror.org/04dd80p04', 'en', 1, 'https://ror.org/04dd80p04 Champions Made From Adversity'),
(13658, 'https://ror.org/04de2bn74', 'no_lang_code', 1, 'https://ror.org/04de2bn74 Holografika (Hungary)'),
(13659, 'https://ror.org/04dg6h767', 'en', 1, 'https://ror.org/04dg6h767 Dempsey Center'),
(13660, 'https://ror.org/04dkt5d63', 'en', 1, 'https://ror.org/04dkt5d63 Greek Atomic Energy Commission'),
(13661, 'https://ror.org/04dq3vj35', 'en', 1, 'https://ror.org/04dq3vj35 American Friends of Tel Aviv University'),
(13662, 'https://ror.org/04dsw2p33', 'en', 1, 'https://ror.org/04dsw2p33 Centro Paraguayo de Estudios de Población - Paraguayan Center for Population Studies'),
(13663, 'https://ror.org/04dtc1m65', 'en', 1, 'https://ror.org/04dtc1m65 Immigrant and Refugee Community Organization'),
(13664, 'https://ror.org/04dwx7104', 'en', 1, 'https://ror.org/04dwx7104 College of the Desert'),
(13665, 'https://ror.org/04dxam533', 'no_lang_code', 1, 'https://ror.org/04dxam533 Archimedia (Greece)'),
(13666, 'https://ror.org/04dyr4x59', 'en', 1, 'https://ror.org/04dyr4x59 Kingsley House'),
(13667, 'https://ror.org/04dyx6987', 'nl', 1, 'https://ror.org/04dyx6987 Gemeente Eindhoven'),
(13668, 'https://ror.org/04dyz9n21', 'en', 1, 'https://ror.org/04dyz9n21 Challenged Athletes Foundation'),
(13669, 'https://ror.org/04dzssn93', 'en', 1, 'https://ror.org/04dzssn93 Public Safety Communication Europe Forum'),
(13670, 'https://ror.org/04e2ggq49', 'pl', 1, 'https://ror.org/04e2ggq49 Państwowa Wyższa Szkoła Zawodowa w Nowym Sączu State Higher Vocational School in Nowy Sacz'),
(13671, 'https://ror.org/04e3qnv29', 'en', 1, 'https://ror.org/04e3qnv29 Day Kimball Healthcare'),
(13672, 'https://ror.org/04e3yr628', 'en', 1, 'https://ror.org/04e3yr628 HER2 Support Group'),
(13673, 'https://ror.org/04e6aft63', 'no_lang_code', 1, 'https://ror.org/04e6aft63 Danaos (Cyprus)'),
(13674, 'https://ror.org/04e7m9p55', 'no_lang_code', 1, 'https://ror.org/04e7m9p55 Galapagos (Netherlands)'),
(13675, 'https://ror.org/04e86te90', 'en', 1, 'https://ror.org/04e86te90 Assistive Technology of Alaska'),
(13676, 'https://ror.org/04e89qg80', 'en', 1, 'https://ror.org/04e89qg80 Kennedy Memorial Hospital'),
(13677, 'https://ror.org/04e8qdj27', 'en', 1, 'https://ror.org/04e8qdj27 Hellenic Register of Shipping Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒĻ‚ ĪĪ·ĪæĪ³Ī½ĻŽĪ¼Ļ‰Ī½'),
(13678, 'https://ror.org/04e9vwv03', 'en', 1, 'https://ror.org/04e9vwv03 HopeLab'),
(13679, 'https://ror.org/04ead8931', 'en', 1, 'https://ror.org/04ead8931 Project Walk Paralysis Recovery Centers'),
(13680, 'https://ror.org/04eawqd29', 'en', 1, 'https://ror.org/04eawqd29 Daily Bread Soup Kitchen'),
(13681, 'https://ror.org/04ebrck23', 'en', 1, 'https://ror.org/04ebrck23 Hospice Nepal'),
(13682, 'https://ror.org/04edgdk70', 'en', 1, 'https://ror.org/04edgdk70 Friedreich''s Ataxia Research Alliance'),
(13683, 'https://ror.org/04edqzt97', 'en', 1, 'https://ror.org/04edqzt97 Cloud Security Alliance'),
(13684, 'https://ror.org/04eep0166', 'en', 1, 'https://ror.org/04eep0166 Association for Driver Rehabilitation Specialists'),
(13685, 'https://ror.org/04efgte12', 'no_lang_code', 1, 'https://ror.org/04efgte12 Gesellschaft für Nuklear Service (Germany)'),
(13686, 'https://ror.org/04eg60b20', 'en', 1, 'https://ror.org/04eg60b20 I''m Still Here Foundation'),
(13687, 'https://ror.org/04eg67w73', 'no_lang_code', 1, 'https://ror.org/04eg67w73 ASM - Centrum Badań i Analiz Rynku Sp. z oo ASM Centre for Research and Analysis Market (Poland)'),
(13688, 'https://ror.org/04ehykb85', 'en', 1, 'https://ror.org/04ehykb85 Institute of Biomedical Technologies Istituto di Tecnologie Biomediche'),
(13689, 'https://ror.org/04ej2a140', 'no_lang_code', 1, 'https://ror.org/04ej2a140 Tecnologia Energia Ambiente Materiali (Italy)'),
(13690, 'https://ror.org/04ejveh20', 'en', 1, 'https://ror.org/04ejveh20 Thessaloniki Port Authority'),
(13691, 'https://ror.org/04ejz3m31', 'en', 1, 'https://ror.org/04ejz3m31 Red Cloud Indian School'),
(13692, 'https://ror.org/04ek2dh49', 'no_lang_code', 1, 'https://ror.org/04ek2dh49 CuraVac (United States)'),
(13693, 'https://ror.org/04em0e964', 'en', 1, 'https://ror.org/04em0e964 Chronic Disease Fund'),
(13694, 'https://ror.org/04enkmp14', 'no_lang_code', 1, 'https://ror.org/04enkmp14 NAMSA (France)'),
(13695, 'https://ror.org/04enw2g11', 'en', 1, 'https://ror.org/04enw2g11 Arie Crown Hebrew Day School'),
(13696, 'https://ror.org/04ep2t954', 'en', 1, 'https://ror.org/04ep2t954 Fridtjof Nansen Institute'),
(13697, 'https://ror.org/04epg3w34', 'en', 1, 'https://ror.org/04epg3w34 Detroit Clinical Research Center'),
(13698, 'https://ror.org/04esec225', 'en', 1, 'https://ror.org/04esec225 Plaza Community Services'),
(13699, 'https://ror.org/04et83a48', 'en', 1, 'https://ror.org/04et83a48 Ovarian Cancer Institute'),
(13700, 'https://ror.org/04etsch95', 'no_lang_code', 1, 'https://ror.org/04etsch95 AFRY (Sweden)'),
(13701, 'https://ror.org/04ew99m67', 'no_lang_code', 1, 'https://ror.org/04ew99m67 Polkom Badania'),
(13702, 'https://ror.org/04ewgt853', 'no_lang_code', 1, 'https://ror.org/04ewgt853 Ingenieurgruppe IVV (Germany)'),
(13703, 'https://ror.org/04eyhzq56', 'en', 1, 'https://ror.org/04eyhzq56 American Society for Gravitational and Space Research'),
(13704, 'https://ror.org/04eyj7x46', 'en', 1, 'https://ror.org/04eyj7x46 Jamestown Education Foundation'),
(13705, 'https://ror.org/04f1frv38', 'en', 1, 'https://ror.org/04f1frv38 Alameda County Office of Education'),
(13706, 'https://ror.org/04f2fqx85', 'no_lang_code', 1, 'https://ror.org/04f2fqx85 Bayer (Greece)'),
(13707, 'https://ror.org/04f3amf18', 'en', 1, 'https://ror.org/04f3amf18 Alpha One'),
(13708, 'https://ror.org/04f4mf723', 'en', 1, 'https://ror.org/04f4mf723 Mendocino Community Health Clinic'),
(13709, 'https://ror.org/04f6cgz95', 'en', 1, 'https://ror.org/04f6cgz95 American Diabetes Association'),
(13710, 'https://ror.org/04f6n8s05', 'no_lang_code', 1, 'https://ror.org/04f6n8s05 Aptitude Medical Systems'),
(13711, 'https://ror.org/04f6ygk28', 'no_lang_code', 1, 'https://ror.org/04f6ygk28 Siemens (Italy)'),
(13712, 'https://ror.org/04f8y1a51', 'no_lang_code', 1, 'https://ror.org/04f8y1a51 EmergenTec (Austria)'),
(13713, 'https://ror.org/04farme71', 'en', 1, 'https://ror.org/04farme71 Fraunhofer Institute for Digital Medicine Fraunhofer-Institut für Digitale Medizin'),
(13714, 'https://ror.org/04fc1ay64', 'en', 1, 'https://ror.org/04fc1ay64 Edith P. Wright Breast Cancer Foundation'),
(13715, 'https://ror.org/04ff7ym80', 'en', 1, 'https://ror.org/04ff7ym80 Delaware Breast Cancer Coalition'),
(13716, 'https://ror.org/04fg4sh42', 'en', 1, 'https://ror.org/04fg4sh42 St Peter''s Hospital'),
(13717, 'https://ror.org/04fgasy98', 'no_lang_code', 1, 'https://ror.org/04fgasy98 Express Scripts Holding Company (United States)'),
(13718, 'https://ror.org/04fjarb68', 'no_lang_code', 1, 'https://ror.org/04fjarb68 Agrivida (United States)'),
(13719, 'https://ror.org/04fjkje50', 'no_lang_code', 1, 'https://ror.org/04fjkje50 User Interface Design (Germany)'),
(13720, 'https://ror.org/04fm6gx83', 'en', 1, 'https://ror.org/04fm6gx83 Vernon Verona Sherrill School District'),
(13721, 'https://ror.org/04fnnnw43', 'no_lang_code', 1, 'https://ror.org/04fnnnw43 Sistemi Innovativi per Il Controllo del Traffico Aereo'),
(13722, 'https://ror.org/04fpx1h75', 'no_lang_code', 1, 'https://ror.org/04fpx1h75 Candy’s Place'),
(13723, 'https://ror.org/04fqsa740', 'no_lang_code', 1, 'https://ror.org/04fqsa740 Warrant Hub (Italy)'),
(13724, 'https://ror.org/04ft04872', 'en', 1, 'https://ror.org/04ft04872 Greater Los Angeles Agency on Deafness'),
(13725, 'https://ror.org/04ft21254', 'en', 1, 'https://ror.org/04ft21254 Pal-O-Mine Equestrian'),
(13726, 'https://ror.org/04ft4dj82', 'en', 1, 'https://ror.org/04ft4dj82 Minnesota Department of Corrections'),
(13727, 'https://ror.org/04fv19769', 'en', 1, 'https://ror.org/04fv19769 Health Research Alliance'),
(13728, 'https://ror.org/04fv5g904', 'it', 1, 'https://ror.org/04fv5g904 Centre for Research in Pure and Applied Mathematics Centro di Ricerca in Matematica Pura ed Applicata'),
(13729, 'https://ror.org/04fxr2t73', 'no_lang_code', 1, 'https://ror.org/04fxr2t73 TessArae (United States)'),
(13730, 'https://ror.org/04fxz7d50', 'no_lang_code', 1, 'https://ror.org/04fxz7d50 Sony (United Kingdom)'),
(13731, 'https://ror.org/04fy6j421', 'en', 1, 'https://ror.org/04fy6j421 American Society of Clinical Oncology'),
(13732, 'https://ror.org/04fywsz69', 'no_lang_code', 1, 'https://ror.org/04fywsz69 Xpand Biotechnology (Netherlands)'),
(13733, 'https://ror.org/04g007714', 'no_lang_code', 1, 'https://ror.org/04g007714 Noxxon Pharma (Germany)'),
(13734, 'https://ror.org/04g046t84', 'no_lang_code', 1, 'https://ror.org/04g046t84 Dbe Technology (Germany)'),
(13735, 'https://ror.org/04g0a6w76', 'no_lang_code', 1, 'https://ror.org/04g0a6w76 MEO (Portugal)'),
(13736, 'https://ror.org/04g39xc83', 'en', 1, 'https://ror.org/04g39xc83 Journey Forward'),
(13737, 'https://ror.org/04g52e958', 'it', 1, 'https://ror.org/04g52e958 Progemisa'),
(13738, 'https://ror.org/04g5a7819', 'en', 1, 'https://ror.org/04g5a7819 Firelands Regional Medical Center'),
(13739, 'https://ror.org/04g835755', 'en', 1, 'https://ror.org/04g835755 McWane Science Center'),
(13740, 'https://ror.org/04g8dha87', 'no_lang_code', 1, 'https://ror.org/04g8dha87 GATC Biotech (Germany)'),
(13741, 'https://ror.org/04g9q2h37', 'en', 1, 'https://ror.org/04g9q2h37 San Francisco VA Health Care System'),
(13742, 'https://ror.org/04gazhx35', 'en', 1, 'https://ror.org/04gazhx35 National Center for Appropriate Technology'),
(13743, 'https://ror.org/04gbnqd17', 'no_lang_code', 1, 'https://ror.org/04gbnqd17 Kongsberg Satellite Services (Norway)'),
(13744, 'https://ror.org/04gbv0x41', 'it', 1, 'https://ror.org/04gbv0x41 Synesis'),
(13745, 'https://ror.org/04gcecg21', 'no_lang_code', 1, 'https://ror.org/04gcecg21 Norsk Hydro (Germany)'),
(13746, 'https://ror.org/04gdc7k94', 'en', 1, 'https://ror.org/04gdc7k94 Farmworker Association of Florida'),
(13747, 'https://ror.org/04gf6zh40', 'no_lang_code', 1, 'https://ror.org/04gf6zh40 System Simulation (United Kingdom)'),
(13748, 'https://ror.org/04gfafs31', 'en', 1, 'https://ror.org/04gfafs31 Texas Freedom Network'),
(13749, 'https://ror.org/04gg0z244', 'en', 1, 'https://ror.org/04gg0z244 Cancer Connection'),
(13750, 'https://ror.org/04gknp681', 'en', 1, 'https://ror.org/04gknp681 Mid-Atlantic Broadband Cooperative'),
(13751, 'https://ror.org/04gm0ky67', 'no_lang_code', 1, 'https://ror.org/04gm0ky67 Metallopharm (United States)'),
(13752, 'https://ror.org/04gmtb593', 'no_lang_code', 1, 'https://ror.org/04gmtb593 United Technologies Corporation (Poland)'),
(13753, 'https://ror.org/04gmz9460', 'en', 1, 'https://ror.org/04gmz9460 Lady Mavericks Wheelchair Basketball'),
(13754, 'https://ror.org/04gr7xf77', 'en', 1, 'https://ror.org/04gr7xf77 Center for Development Services'),
(13755, 'https://ror.org/04grvsk22', 'en', 1, 'https://ror.org/04grvsk22 California Hospital Medical Center Foundation'),
(13756, 'https://ror.org/04gsrry43', 'no_lang_code', 1, 'https://ror.org/04gsrry43 Hillhurst Biopharmaceuticals (United States)'),
(13757, 'https://ror.org/04gvjte09', 'en', 1, 'https://ror.org/04gvjte09 Faxton St. Luke''s Healthcare'),
(13758, 'https://ror.org/04gwhcf14', 'no_lang_code', 1, 'https://ror.org/04gwhcf14 BearingPoint (Austria)'),
(13759, 'https://ror.org/04gxzhg33', 'en', 1, 'https://ror.org/04gxzhg33 Mobility Unlimited'),
(13760, 'https://ror.org/04gz4vz18', 'no_lang_code', 1, 'https://ror.org/04gz4vz18 Carolus Therapeutics (United States)'),
(13761, 'https://ror.org/04gznzd38', 'en', 1, 'https://ror.org/04gznzd38 ECO City Farms'),
(13762, 'https://ror.org/04h1x1p54', 'no_lang_code', 1, 'https://ror.org/04h1x1p54 Walt Disney (Switzerland)'),
(13763, 'https://ror.org/04h2exm50', 'no_lang_code', 1, 'https://ror.org/04h2exm50 Mycosynthetix (United States)'),
(13764, 'https://ror.org/04h2wnp96', 'en', 1, 'https://ror.org/04h2wnp96 Motion Picture & Television Fund'),
(13765, 'https://ror.org/04h60j158', 'en', 1, 'https://ror.org/04h60j158 Cancer Services Network'),
(13766, 'https://ror.org/04h8dqz12', 'en', 1, 'https://ror.org/04h8dqz12 Mendocino County AIDS / Viral Hepatitis Network'),
(13767, 'https://ror.org/04h8wfm32', 'no_lang_code', 1, 'https://ror.org/04h8wfm32 Custom Data (United States)'),
(13768, 'https://ror.org/04h9w5w52', 'no_lang_code', 1, 'https://ror.org/04h9w5w52 LaVision (Germany)'),
(13769, 'https://ror.org/04hd0yz67', 'en', 1, 'https://ror.org/04hd0yz67 Egyptian Atomic Energy Authority'),
(13770, 'https://ror.org/04hemee20', 'en', 1, 'https://ror.org/04hemee20 Southwestern Indian Polytechnic Institute'),
(13771, 'https://ror.org/04hgfx704', 'no_lang_code', 1, 'https://ror.org/04hgfx704 CuriRx (United States)'),
(13772, 'https://ror.org/04hhk2180', 'no_lang_code', 1, 'https://ror.org/04hhk2180 Eurotech (Italy)'),
(13773, 'https://ror.org/04hjd4w57', 'en', 1, 'https://ror.org/04hjd4w57 Odyssey School'),
(13774, 'https://ror.org/04hje6078', 'no_lang_code', 1, 'https://ror.org/04hje6078 Neurosoft (Poland)'),
(13775, 'https://ror.org/04hjhtb64', 'en', 1, 'https://ror.org/04hjhtb64 Elks Rehabilitation Hospital'),
(13776, 'https://ror.org/04hm0cn69', 'no_lang_code', 1, 'https://ror.org/04hm0cn69 KLA (Israel)'),
(13777, 'https://ror.org/04hm3xx61', 'en', 1, 'https://ror.org/04hm3xx61 Arkansas Prostate Cancer Foundation'),
(13778, 'https://ror.org/04hm48b29', 'en', 1, 'https://ror.org/04hm48b29 Dublin Independent School District'),
(13779, 'https://ror.org/04hma4w69', 'en', 1, 'https://ror.org/04hma4w69 Nemours Children''s Clinic'),
(13780, 'https://ror.org/04hp0sd20', 'en', 1, 'https://ror.org/04hp0sd20 Mission Neighborhood Health Center'),
(13781, 'https://ror.org/04hpxzg72', 'en', 1, 'https://ror.org/04hpxzg72 Kennebec Valley Community College'),
(13782, 'https://ror.org/04hrwfn20', 'no_lang_code', 1, 'https://ror.org/04hrwfn20 Prover Technology (Sweden)'),
(13783, 'https://ror.org/04hsm3t82', 'en', 1, 'https://ror.org/04hsm3t82 Gardner''s House'),
(13784, 'https://ror.org/04hspfa12', 'en', 1, 'https://ror.org/04hspfa12 HYDROMOD Scientific Consulting'),
(13785, 'https://ror.org/04hw25m76', 'en', 1, 'https://ror.org/04hw25m76 New Beginnings Community Center'),
(13786, 'https://ror.org/04hwe7v53', 'en', 1, 'https://ror.org/04hwe7v53 Florida State Association of Rehabilitation Nurses'),
(13787, 'https://ror.org/04hx2r306', 'en', 1, 'https://ror.org/04hx2r306 Eureka Scientific'),
(13788, 'https://ror.org/04hxcbe86', 'no_lang_code', 1, 'https://ror.org/04hxcbe86 Transports Metropolitans de Barcelona (Spain)'),
(13789, 'https://ror.org/04hxjnb06', 'en', 1, 'https://ror.org/04hxjnb06 VGB PowerTech'),
(13790, 'https://ror.org/04hxmr882', 'no_lang_code', 1, 'https://ror.org/04hxmr882 Air Vehicle Integrated Design (United States)'),
(13791, 'https://ror.org/04hxq4b52', 'en', 1, 'https://ror.org/04hxq4b52 London Borough of Southwark'),
(13792, 'https://ror.org/04hxqsv25', 'en', 1, 'https://ror.org/04hxqsv25 American Forage and Grassland Council'),
(13793, 'https://ror.org/04hxzf837', 'en', 1, 'https://ror.org/04hxzf837 ACTION'),
(13794, 'https://ror.org/04j045513', 'en', 1, 'https://ror.org/04j045513 Foundation Medical Partners'),
(13795, 'https://ror.org/04j2g1y38', 'en', 1, 'https://ror.org/04j2g1y38 California Hospital Association'),
(13796, 'https://ror.org/04j4v6302', 'en', 1, 'https://ror.org/04j4v6302 Discovery Cube Orange County'),
(13797, 'https://ror.org/04j65hp39', 'no_lang_code', 1, 'https://ror.org/04j65hp39 Nippon Sheet Glass (United Kingdom)'),
(13798, 'https://ror.org/04j6nkt56', 'no_lang_code', 1, 'https://ror.org/04j6nkt56 Xylem (United States)'),
(13799, 'https://ror.org/04j8vyy64', 'no_lang_code', 1, 'https://ror.org/04j8vyy64 Oahu Community Recycling (United States)'),
(13800, 'https://ror.org/04ja3zh26', 'no_lang_code', 1, 'https://ror.org/04ja3zh26 NET Nowak Energie & Technologie (Switzerland)'),
(13801, 'https://ror.org/04jbbj956', 'no_lang_code', 1, 'https://ror.org/04jbbj956 Element Energy (United Kingdom)'),
(13802, 'https://ror.org/04jbqg756', 'en', 1, 'https://ror.org/04jbqg756 North Shore Pro Musica'),
(13803, 'https://ror.org/04jd8q585', 'no_lang_code', 1, 'https://ror.org/04jd8q585 Assured Bio (United States)'),
(13804, 'https://ror.org/04jf0dw52', 'en', 1, 'https://ror.org/04jf0dw52 Texoma Neurology Associates'),
(13805, 'https://ror.org/04jgzeb83', 'en', 1, 'https://ror.org/04jgzeb83 National Association of E. E. Smith Alumni and Friends'),
(13806, 'https://ror.org/04jh42846', 'en', 1, 'https://ror.org/04jh42846 North Central Florida Neurodiagnostic Services'),
(13807, 'https://ror.org/04jjg7z32', 'en', 1, 'https://ror.org/04jjg7z32 Capital Caring'),
(13808, 'https://ror.org/04jjzrj83', 'no_lang_code', 1, 'https://ror.org/04jjzrj83 TTTech Computertechnik (Austria)'),
(13809, 'https://ror.org/04jnhp140', 'en', 1, 'https://ror.org/04jnhp140 Community Cancer Center'),
(13810, 'https://ror.org/04jnxr720', 'en', 1, 'https://ror.org/04jnxr720 IBM Research - Ireland'),
(13811, 'https://ror.org/04jppzq03', 'no_lang_code', 1, 'https://ror.org/04jppzq03 Fordesi (Portugal)'),
(13812, 'https://ror.org/04jqjaf29', 'en', 1, 'https://ror.org/04jqjaf29 EspeRare Foundation'),
(13813, 'https://ror.org/04jrn9514', 'en', 1, 'https://ror.org/04jrn9514 Access Northern California'),
(13814, 'https://ror.org/04jrqsq40', 'en', 1, 'https://ror.org/04jrqsq40 Council on Alcohol and Drug Abuse Coastal Bend'),
(13815, 'https://ror.org/04jtyp632', 'en', 1, 'https://ror.org/04jtyp632 Great Lakes Science Center');
INSERT INTO `rors` VALUES
(13816, 'https://ror.org/04jv3db71', 'no_lang_code', 1, 'https://ror.org/04jv3db71 Quantalux (United States)'),
(13817, 'https://ror.org/04jvbc359', 'no_lang_code', 1, 'https://ror.org/04jvbc359 SocietĆ  Esercizi Aeroportuali (Italy)'),
(13818, 'https://ror.org/04jvcky17', 'en', 1, 'https://ror.org/04jvcky17 Newport Festivals Foundation'),
(13819, 'https://ror.org/04jxd1g84', 'en', 1, 'https://ror.org/04jxd1g84 Intractable Childhood Epilepsy Alliance'),
(13820, 'https://ror.org/04jxgzk07', 'no_lang_code', 1, 'https://ror.org/04jxgzk07 Creative Scientist (United States)'),
(13821, 'https://ror.org/04jyecv51', 'no_lang_code', 1, 'https://ror.org/04jyecv51 ViaSim Solutions'),
(13822, 'https://ror.org/04jzh7r11', 'no_lang_code', 1, 'https://ror.org/04jzh7r11 NX PharmaGen (United States)'),
(13823, 'https://ror.org/04k1x7866', 'en', 1, 'https://ror.org/04k1x7866 Metropolitan Detroit Research and Education Foundation'),
(13824, 'https://ror.org/04k2bnr92', 'en', 1, 'https://ror.org/04k2bnr92 Plumas Rural Services'),
(13825, 'https://ror.org/04k3tjf68', 'en', 1, 'https://ror.org/04k3tjf68 Sitka Sound Science Center'),
(13826, 'https://ror.org/04k4qvz84', 'en', 1, 'https://ror.org/04k4qvz84 Poly Prep Country Day School'),
(13827, 'https://ror.org/04k7cse40', 'en', 1, 'https://ror.org/04k7cse40 Project Empower'),
(13828, 'https://ror.org/04k8j6m55', 'no_lang_code', 1, 'https://ror.org/04k8j6m55 Napo Pharmaceuticals (United States)'),
(13829, 'https://ror.org/04k9qym02', 'en', 1, 'https://ror.org/04k9qym02 Patient Advocate Foundation'),
(13830, 'https://ror.org/04kark913', 'no_lang_code', 1, 'https://ror.org/04kark913 MerLion Pharma (Germany)'),
(13831, 'https://ror.org/04kd24b32', 'en', 1, 'https://ror.org/04kd24b32 Active Disabled Americans'),
(13832, 'https://ror.org/04kd66c62', 'no_lang_code', 1, 'https://ror.org/04kd66c62 Blueroof Technologies (United States)'),
(13833, 'https://ror.org/04keapj48', 'en', 1, 'https://ror.org/04keapj48 Durham County Department of Public Health'),
(13834, 'https://ror.org/04kf71z43', 'no_lang_code', 1, 'https://ror.org/04kf71z43 Mitsubishi Electric (Netherlands)'),
(13835, 'https://ror.org/04kfv4779', 'no_lang_code', 1, 'https://ror.org/04kfv4779 Elyros (Belgium)'),
(13836, 'https://ror.org/04khvrj77', 'en', 1, 'https://ror.org/04khvrj77 Land Stewardship Project'),
(13837, 'https://ror.org/04kjecg97', 'no_lang_code', 1, 'https://ror.org/04kjecg97 TransGenada (United States)'),
(13838, 'https://ror.org/04kmmsx80', 'no_lang_code', 1, 'https://ror.org/04kmmsx80 Coastside Bio Resources (United States)'),
(13839, 'https://ror.org/04kn0h737', 'no_lang_code', 1, 'https://ror.org/04kn0h737 BlueSky Designs (United States)'),
(13840, 'https://ror.org/04kq8yw60', 'en', 1, 'https://ror.org/04kq8yw60 Asian Services In Action'),
(13841, 'https://ror.org/04kqb8t43', 'en', 1, 'https://ror.org/04kqb8t43 Living Classrooms'),
(13842, 'https://ror.org/04ks41483', 'en', 1, 'https://ror.org/04ks41483 Ability Found'),
(13843, 'https://ror.org/04ks4f885', 'en', 1, 'https://ror.org/04ks4f885 Nueva Vida'),
(13844, 'https://ror.org/04kwbxb88', 'no_lang_code', 1, 'https://ror.org/04kwbxb88 Cambridge CMOS Sensors (United Kingdom)'),
(13845, 'https://ror.org/04kwcw734', 'no_lang_code', 1, 'https://ror.org/04kwcw734 Ingenieurbüro Kleehammer Gruppe (Germany)'),
(13846, 'https://ror.org/04kwmb779', 'no_lang_code', 1, 'https://ror.org/04kwmb779 Serious Games Interactive (Denmark)'),
(13847, 'https://ror.org/04kwv2n58', 'no_lang_code', 1, 'https://ror.org/04kwv2n58 Airborne International (Netherlands)'),
(13848, 'https://ror.org/04kxnk485', 'no_lang_code', 1, 'https://ror.org/04kxnk485 CropDesign (Belgium)'),
(13849, 'https://ror.org/04kz2nv03', 'fr', 1, 'https://ror.org/04kz2nv03 SociƩtƩ FranƧaise de CƩramique'),
(13850, 'https://ror.org/04kz5k469', 'it', 1, 'https://ror.org/04kz5k469 Azienda Sanitaria Locale N. 2 Savonese'),
(13851, 'https://ror.org/04m0t0a79', 'pt', 1, 'https://ror.org/04m0t0a79 Promundo'),
(13852, 'https://ror.org/04m0xav37', 'en', 1, 'https://ror.org/04m0xav37 Leukemia and Lymphoma Society'),
(13853, 'https://ror.org/04m1cey27', 'no_lang_code', 1, 'https://ror.org/04m1cey27 Privo Technologies (United States)'),
(13854, 'https://ror.org/04m21fy21', 'en', 1, 'https://ror.org/04m21fy21 Broward County Public Schools'),
(13855, 'https://ror.org/04m4eyr93', 'en', 1, 'https://ror.org/04m4eyr93 Institute of Soil Science ā€œNikola Poushkarovā€ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠž ŠŸŠžŠ§Š’ŠžŠ—ŠŠŠŠ˜Š• "ŠŠ˜ŠšŠžŠ›Š ŠŸŠ£ŠØŠšŠŠ ŠžŠ’"'),
(13856, 'https://ror.org/04m65e260', 'no_lang_code', 1, 'https://ror.org/04m65e260 Micronic Technologies (United States)'),
(13857, 'https://ror.org/04m7y9d03', 'en', 1, 'https://ror.org/04m7y9d03 Freedom to Live'),
(13858, 'https://ror.org/04m8h4d24', 'no_lang_code', 1, 'https://ror.org/04m8h4d24 SpaceWorks Enterprises (United States)'),
(13859, 'https://ror.org/04masjv69', 'en', 1, 'https://ror.org/04masjv69 Harry Gregg Foundation'),
(13860, 'https://ror.org/04md0t587', 'no_lang_code', 1, 'https://ror.org/04md0t587 NanoWorld Services (Germany)'),
(13861, 'https://ror.org/04mdy5m11', 'en', 1, 'https://ror.org/04mdy5m11 Our Bodies Ourselves'),
(13862, 'https://ror.org/04mezn076', 'no_lang_code', 1, 'https://ror.org/04mezn076 Avecia (United Kingdom)'),
(13863, 'https://ror.org/04mjy3g97', 'en', 1, 'https://ror.org/04mjy3g97 Amsterdam Economic Board'),
(13864, 'https://ror.org/04mmty540', 'no_lang_code', 1, 'https://ror.org/04mmty540 HW Communications (United Kingdom)'),
(13865, 'https://ror.org/04mngjf23', 'no_lang_code', 1, 'https://ror.org/04mngjf23 Hellenic Aerospace Industry (Greece) Ελληνική Αεροπορική Βιομηχανία'),
(13866, 'https://ror.org/04mpvdf36', 'no_lang_code', 1, 'https://ror.org/04mpvdf36 Enerdata (France)'),
(13867, 'https://ror.org/04mq1ck21', 'no_lang_code', 1, 'https://ror.org/04mq1ck21 North West Textiles Network (United Kingdom)'),
(13868, 'https://ror.org/04mteaa42', 'en', 1, 'https://ror.org/04mteaa42 Rebuilding Together NYC'),
(13869, 'https://ror.org/04mv7q109', 'no_lang_code', 1, 'https://ror.org/04mv7q109 HEAD Acoustics (Germany)'),
(13870, 'https://ror.org/04mxmbg88', 'en', 1, 'https://ror.org/04mxmbg88 Farmers Legal Action Group'),
(13871, 'https://ror.org/04my1rt02', 'en', 1, 'https://ror.org/04my1rt02 Cancer Institute of Florida'),
(13872, 'https://ror.org/04mybzy26', 'en', 1, 'https://ror.org/04mybzy26 Vienna Institute for International Economic Studies Wiener Institut für Internationale Wirtschaftsvergleiche'),
(13873, 'https://ror.org/04myc6802', 'no_lang_code', 1, 'https://ror.org/04myc6802 Rubicon Foods (United States)'),
(13874, 'https://ror.org/04mz6rz07', 'en', 1, 'https://ror.org/04mz6rz07 North Shore Animal League America'),
(13875, 'https://ror.org/04mza7j60', 'en', 1, 'https://ror.org/04mza7j60 Lucia''s Angels'),
(13876, 'https://ror.org/04mzbw652', 'no_lang_code', 1, 'https://ror.org/04mzbw652 Ariadne Diagnostics (United States)'),
(13877, 'https://ror.org/04n1ywh56', 'no_lang_code', 1, 'https://ror.org/04n1ywh56 Mutadis'),
(13878, 'https://ror.org/04n2m2v25', 'en', 1, 'https://ror.org/04n2m2v25 New England Handicapped Sports Association'),
(13879, 'https://ror.org/04n3eme41', 'no_lang_code', 1, 'https://ror.org/04n3eme41 Saniona (Denmark)'),
(13880, 'https://ror.org/04n5j4q40', 'no_lang_code', 1, 'https://ror.org/04n5j4q40 CPL Scientific Publishing Services (United Kingdom)'),
(13881, 'https://ror.org/04n728n34', 'no_lang_code', 1, 'https://ror.org/04n728n34 Q-Biologicals (Belgium)'),
(13882, 'https://ror.org/04n831v95', 'en', 1, 'https://ror.org/04n831v95 Interdisciplinary Centre for Comparative Research Foundation'),
(13883, 'https://ror.org/04n8fbz89', 'no_lang_code', 1, 'https://ror.org/04n8fbz89 AstraZeneca (Canada)'),
(13884, 'https://ror.org/04n8tjj02', 'en', 1, 'https://ror.org/04n8tjj02 Mineral Industry Research Organisation'),
(13885, 'https://ror.org/04n8w0w18', 'en', 1, 'https://ror.org/04n8w0w18 Agency of Sustainable Development and Eurointegration'),
(13886, 'https://ror.org/04n9mpx29', 'no_lang_code', 1, 'https://ror.org/04n9mpx29 IP Israel Patents (Israel)'),
(13887, 'https://ror.org/04n9t5970', 'en', 1, 'https://ror.org/04n9t5970 Ministry of Digital Governance ΄πουργείο Ψηφιακής Ī”Ī¹Ī±ĪŗĻ…Ī²Ī­ĻĪ½Ī·ĻƒĪ·Ļ‚'),
(13888, 'https://ror.org/04nadpw56', 'no_lang_code', 1, 'https://ror.org/04nadpw56 Nanoplus (Germany)'),
(13889, 'https://ror.org/04nb1d674', 'no_lang_code', 1, 'https://ror.org/04nb1d674 ArtHaus (Macedonia)'),
(13890, 'https://ror.org/04nd0kv93', 'no_lang_code', 1, 'https://ror.org/04nd0kv93 Roughan & O''Donovan Innovative Solutions'),
(13891, 'https://ror.org/04nd20z29', 'en', 1, 'https://ror.org/04nd20z29 Community Cancer Services'),
(13892, 'https://ror.org/04ndvz759', 'en', 1, 'https://ror.org/04ndvz759 Livestrong Foundation'),
(13893, 'https://ror.org/04neva792', 'en', 1, 'https://ror.org/04neva792 Atlantic Cancer Research Institute Institut Atlantique de recherche sur le cancer'),
(13894, 'https://ror.org/04nff2163', 'no_lang_code', 1, 'https://ror.org/04nff2163 GKN (Sweden)'),
(13895, 'https://ror.org/04ng7mq07', 'en', 1, 'https://ror.org/04ng7mq07 Pathways'),
(13896, 'https://ror.org/04nhfy784', 'no_lang_code', 1, 'https://ror.org/04nhfy784 ProCrysta Biologix (United States)'),
(13897, 'https://ror.org/04nhhrw79', 'no_lang_code', 1, 'https://ror.org/04nhhrw79 Youris.com (Belgium)'),
(13898, 'https://ror.org/04nkbtf36', 'en', 1, 'https://ror.org/04nkbtf36 Southwest Georgia Project for Community Education'),
(13899, 'https://ror.org/04nkhj168', 'en', 1, 'https://ror.org/04nkhj168 Leaps of Faith Adaptive Skiers'),
(13900, 'https://ror.org/04nmkrt20', 'en', 1, 'https://ror.org/04nmkrt20 Canine Assistants'),
(13901, 'https://ror.org/04npd6384', 'en', 1, 'https://ror.org/04npd6384 Harris County Department of Education'),
(13902, 'https://ror.org/04npj6h08', 'en', 1, 'https://ror.org/04npj6h08 Association of Pediatric Hematology/Oncology Nurses'),
(13903, 'https://ror.org/04npkmp39', 'en', 1, 'https://ror.org/04npkmp39 Empower Spinal Cord Injury'),
(13904, 'https://ror.org/04nq17x65', 'en', 1, 'https://ror.org/04nq17x65 Bioethics International'),
(13905, 'https://ror.org/04nqwjy64', 'en', 1, 'https://ror.org/04nqwjy64 Rehabilitation Institute of Michigan'),
(13906, 'https://ror.org/04nstae51', 'en', 1, 'https://ror.org/04nstae51 Charlotte-Mecklenburg Schools'),
(13907, 'https://ror.org/04nt88t73', 'en', 1, 'https://ror.org/04nt88t73 PNA Center for Neurological Research'),
(13908, 'https://ror.org/04nw2yg41', 'en', 1, 'https://ror.org/04nw2yg41 Planting Justice'),
(13909, 'https://ror.org/04nxjmy70', 'en', 1, 'https://ror.org/04nxjmy70 Possible Health'),
(13910, 'https://ror.org/04nypah87', 'no_lang_code', 1, 'https://ror.org/04nypah87 SCM Group (Italy)'),
(13911, 'https://ror.org/04nzdnk52', 'en', 1, 'https://ror.org/04nzdnk52 Restorix Health'),
(13912, 'https://ror.org/04p0syp05', 'en', 1, 'https://ror.org/04p0syp05 Alzheimer''s Disease Association of the Philippines'),
(13913, 'https://ror.org/04p1hy645', 'no_lang_code', 1, 'https://ror.org/04p1hy645 FluGen (United States)'),
(13914, 'https://ror.org/04p457x22', 'en', 1, 'https://ror.org/04p457x22 Brevard College'),
(13915, 'https://ror.org/04p5awn87', 'en', 1, 'https://ror.org/04p5awn87 All Star Volleyball Association'),
(13916, 'https://ror.org/04p6jwd33', 'no_lang_code', 1, 'https://ror.org/04p6jwd33 Fate Therapeutics (United States)'),
(13917, 'https://ror.org/04p71yx79', 'no_lang_code', 1, 'https://ror.org/04p71yx79 Mermayde'),
(13918, 'https://ror.org/04p7ekn23', 'de', 1, 'https://ror.org/04p7ekn23 WestfƤlische Hochschule'),
(13919, 'https://ror.org/04p98z790', 'no_lang_code', 1, 'https://ror.org/04p98z790 Neovision (Czechia)'),
(13920, 'https://ror.org/04patbs64', 'en', 1, 'https://ror.org/04patbs64 Lakeshore Foundation'),
(13921, 'https://ror.org/04pb97k73', 'no_lang_code', 1, 'https://ror.org/04pb97k73 Hewlett-Packard (Germany)'),
(13922, 'https://ror.org/04phr2832', 'no_lang_code', 1, 'https://ror.org/04phr2832 DLF Trifolium (Denmark)'),
(13923, 'https://ror.org/04pjjk226', 'no_lang_code', 1, 'https://ror.org/04pjjk226 Prove IT (United States)'),
(13924, 'https://ror.org/04pjxxd64', 'en', 1, 'https://ror.org/04pjxxd64 Alaska Neurology Center'),
(13925, 'https://ror.org/04pmfqr73', 'en', 1, 'https://ror.org/04pmfqr73 Heifer International'),
(13926, 'https://ror.org/04pp26y21', 'en', 1, 'https://ror.org/04pp26y21 Healthy Start Coalition of Flagler & Volusia Counties'),
(13927, 'https://ror.org/04pphg116', 'no_lang_code', 1, 'https://ror.org/04pphg116 c-LEcta (Germany)'),
(13928, 'https://ror.org/04pq0yg77', 'en', 1, 'https://ror.org/04pq0yg77 Cape Cod Healthcare'),
(13929, 'https://ror.org/04prt7y25', 'en', 1, 'https://ror.org/04prt7y25 Florida Alliance for Assistive Services and Technology'),
(13930, 'https://ror.org/04psxdg29', 'no_lang_code', 1, 'https://ror.org/04psxdg29 Mesaphotonics (United States)'),
(13931, 'https://ror.org/04pt1wy33', 'no_lang_code', 1, 'https://ror.org/04pt1wy33 Nor-tek'),
(13932, 'https://ror.org/04pvpzj22', 'no_lang_code', 1, 'https://ror.org/04pvpzj22 Meyer Werft (Germany)'),
(13933, 'https://ror.org/04pw6fb54', 'en', 1, 'https://ror.org/04pw6fb54 National Center for Advancing Translational Sciences'),
(13934, 'https://ror.org/04pwrsp25', 'no_lang_code', 1, 'https://ror.org/04pwrsp25 NetComposites (United Kingdom)'),
(13935, 'https://ror.org/04pxgkb44', 'en', 1, 'https://ror.org/04pxgkb44 Hudson Valley Youth Chorale'),
(13936, 'https://ror.org/04q0ja294', 'en', 1, 'https://ror.org/04q0ja294 Covenant Health System'),
(13937, 'https://ror.org/04q2rtc89', 'en', 1, 'https://ror.org/04q2rtc89 CliniWorks'),
(13938, 'https://ror.org/04q2w0g82', 'en', 1, 'https://ror.org/04q2w0g82 Glenville State College'),
(13939, 'https://ror.org/04q33xf47', 'en', 1, 'https://ror.org/04q33xf47 Active Transportation Alliance'),
(13940, 'https://ror.org/04q4z6j92', 'en', 1, 'https://ror.org/04q4z6j92 American Society of Plastic Surgeons'),
(13941, 'https://ror.org/04q5hjb22', 'no_lang_code', 1, 'https://ror.org/04q5hjb22 R.U.Robots (United Kingdom)'),
(13942, 'https://ror.org/04q6x6869', 'no_lang_code', 1, 'https://ror.org/04q6x6869 APC Composite (Sweden)'),
(13943, 'https://ror.org/04q71jj82', 'en', 1, 'https://ror.org/04q71jj82 Institute for Development, Research, Advocacy and Applied Care'),
(13944, 'https://ror.org/04q8hbr41', 'no_lang_code', 1, 'https://ror.org/04q8hbr41 Noblis'),
(13945, 'https://ror.org/04q8q8x21', 'en', 1, 'https://ror.org/04q8q8x21 Jacob''s Heart Children''s Cancer Support Services'),
(13946, 'https://ror.org/04q8sg180', 'en', 1, 'https://ror.org/04q8sg180 Neurology Centers of the Carolinas'),
(13947, 'https://ror.org/04q9w3z30', 'no_lang_code', 1, 'https://ror.org/04q9w3z30 Siemens (France)'),
(13948, 'https://ror.org/04qav7246', 'no_lang_code', 1, 'https://ror.org/04qav7246 Vuje (Slovakia)'),
(13949, 'https://ror.org/04qcrp855', 'no_lang_code', 1, 'https://ror.org/04qcrp855 Andritz (Switzerland)'),
(13950, 'https://ror.org/04qd0gm75', 'es', 1, 'https://ror.org/04qd0gm75 Institut de Cultura de Barcelona'),
(13951, 'https://ror.org/04qd5p107', 'no_lang_code', 1, 'https://ror.org/04qd5p107 ALTA (Italy)'),
(13952, 'https://ror.org/04qegdw32', 'en', 1, 'https://ror.org/04qegdw32 Brevard Public Schools'),
(13953, 'https://ror.org/04qg5nd35', 'en', 1, 'https://ror.org/04qg5nd35 Northwest Florida Hematology Oncology'),
(13954, 'https://ror.org/04qh6x362', 'en', 1, 'https://ror.org/04qh6x362 Community Assistance Network'),
(13955, 'https://ror.org/04qhpt968', 'no_lang_code', 1, 'https://ror.org/04qhpt968 Applied Food Technologies (United States)'),
(13956, 'https://ror.org/04qj9wg75', 'en', 1, 'https://ror.org/04qj9wg75 St. Joseph’s Children’s Hospital'),
(13957, 'https://ror.org/04qjbd269', 'en', 1, 'https://ror.org/04qjbd269 Focused Ultrasound Foundation'),
(13958, 'https://ror.org/04qkdt303', 'en', 1, 'https://ror.org/04qkdt303 New York Public Radio'),
(13959, 'https://ror.org/04qkg4668', 'en', 1, 'https://ror.org/04qkg4668 Centre for the AIDS Programme of Research in South Africa'),
(13960, 'https://ror.org/04qn4s704', 'en', 1, 'https://ror.org/04qn4s704 Arizona Disabled Sports'),
(13961, 'https://ror.org/04qparf31', 'no_lang_code', 1, 'https://ror.org/04qparf31 Domtar (United States)'),
(13962, 'https://ror.org/04qvzh720', 'en', 1, 'https://ror.org/04qvzh720 Bassett Healthcare Network'),
(13963, 'https://ror.org/04qw4yn54', 'en', 1, 'https://ror.org/04qw4yn54 Mothers’ Milk Bank'),
(13964, 'https://ror.org/04qwf0633', 'no_lang_code', 1, 'https://ror.org/04qwf0633 Spectrum Brands (Germany)'),
(13965, 'https://ror.org/04qxbzf60', 'en', 1, 'https://ror.org/04qxbzf60 Helen Keller International'),
(13966, 'https://ror.org/04r0k9g65', 'no_lang_code', 1, 'https://ror.org/04r0k9g65 Brockmann Consult (Germany)'),
(13967, 'https://ror.org/04r0s0t24', 'en', 1, 'https://ror.org/04r0s0t24 NeuroDevNet'),
(13968, 'https://ror.org/04r1s2546', 'en', 1, 'https://ror.org/04r1s2546 Agricultural Research Council of South Africa'),
(13969, 'https://ror.org/04r74gg67', 'en', 1, 'https://ror.org/04r74gg67 Neil Squire Society'),
(13970, 'https://ror.org/04r8nkv53', 'en', 1, 'https://ror.org/04r8nkv53 Rising Ground'),
(13971, 'https://ror.org/04r8v5t40', 'en', 1, 'https://ror.org/04r8v5t40 Not-Me!'),
(13972, 'https://ror.org/04rcnty73', 'en', 1, 'https://ror.org/04rcnty73 Chinese Community Health Resource Center'),
(13973, 'https://ror.org/04re20p56', 'no_lang_code', 1, 'https://ror.org/04re20p56 Acetylon Pharmaceuticals (United States)'),
(13974, 'https://ror.org/04rfz4f93', 'no_lang_code', 1, 'https://ror.org/04rfz4f93 Quasar Energy Group (United States)'),
(13975, 'https://ror.org/04rg3kp21', 'en', 1, 'https://ror.org/04rg3kp21 Adirondack Mountain Club'),
(13976, 'https://ror.org/04rh36p62', 'en', 1, 'https://ror.org/04rh36p62 Chapel Hill Carrboro City Schools'),
(13977, 'https://ror.org/04rkt6002', 'en', 1, 'https://ror.org/04rkt6002 Cancer Survivors'' Fund'),
(13978, 'https://ror.org/04rmgk816', 'no_lang_code', 1, 'https://ror.org/04rmgk816 Skanska (Norway)'),
(13979, 'https://ror.org/04rnc2b13', 'en', 1, 'https://ror.org/04rnc2b13 Citizens of Lake County for Health Care'),
(13980, 'https://ror.org/04rndy785', 'no_lang_code', 1, 'https://ror.org/04rndy785 Arqtech Laboratories (Ireland)'),
(13981, 'https://ror.org/04rv9a088', 'en', 1, 'https://ror.org/04rv9a088 Singularity University Universidad de la Singularidad'),
(13982, 'https://ror.org/04rvc0m17', 'no_lang_code', 1, 'https://ror.org/04rvc0m17 Lewin Group (United States)'),
(13983, 'https://ror.org/04rvyn674', 'no_lang_code', 1, 'https://ror.org/04rvyn674 Energiewerke Nord (Germany)'),
(13984, 'https://ror.org/04rxd8128', 'en', 1, 'https://ror.org/04rxd8128 Children''s Cancer Center'),
(13985, 'https://ror.org/04ry56g70', 'no_lang_code', 1, 'https://ror.org/04ry56g70 MetronomX (United States)'),
(13986, 'https://ror.org/04ryqpf83', 'no_lang_code', 1, 'https://ror.org/04ryqpf83 Valeo (France)'),
(13987, 'https://ror.org/04rz4wy72', 'no_lang_code', 1, 'https://ror.org/04rz4wy72 Humanetics (Germany)'),
(13988, 'https://ror.org/04rzss152', 'no_lang_code', 1, 'https://ror.org/04rzss152 NewGen Therapeutics (United States)'),
(13989, 'https://ror.org/04rzw7a06', 'en', 1, 'https://ror.org/04rzw7a06 Tavistock Institute'),
(13990, 'https://ror.org/04s0hh912', 'de', 1, 'https://ror.org/04s0hh912 Medien- und Filmgesellschaft Baden-Württemberg'),
(13991, 'https://ror.org/04s0yt949', 'en', 1, 'https://ror.org/04s0yt949 Turku University of Applied Sciences Turun ammattikorkeakoulu ƅbo yrkeshƶgskola'),
(13992, 'https://ror.org/04s1anr92', 'no_lang_code', 1, 'https://ror.org/04s1anr92 Innova (Italy)'),
(13993, 'https://ror.org/04s786x31', 'no_lang_code', 1, 'https://ror.org/04s786x31 Enercon (Germany)'),
(13994, 'https://ror.org/04saw1818', 'en', 1, 'https://ror.org/04saw1818 National Ambucs'),
(13995, 'https://ror.org/04sawzq03', 'en', 1, 'https://ror.org/04sawzq03 Howard County Health Department'),
(13996, 'https://ror.org/04sazxf24', 'en', 1, 'https://ror.org/04sazxf24 Israel Science Foundation'),
(13997, 'https://ror.org/04scst564', 'de', 1, 'https://ror.org/04scst564 Institut für Seeverkehrswirtschaft und Logistik Institute of Shipping Economics and Logistics'),
(13998, 'https://ror.org/04sej8624', 'en', 1, 'https://ror.org/04sej8624 Beaufort Memorial Hospital'),
(13999, 'https://ror.org/04sh23172', 'no_lang_code', 1, 'https://ror.org/04sh23172 Syndesis (Greece)'),
(14000, 'https://ror.org/04sjpp691', 'en', 1, 'https://ror.org/04sjpp691 National Museums of Kenya'),
(14001, 'https://ror.org/04smdqx37', 'it', 1, 'https://ror.org/04smdqx37 Fondazione IRET ONLUS'),
(14002, 'https://ror.org/04smrs866', 'en', 1, 'https://ror.org/04smrs866 Institute of Neurobiology and Molecular Medicine Istituto di Neurobiologia e Medicina Molecolare'),
(14003, 'https://ror.org/04smw2r26', 'en', 1, 'https://ror.org/04smw2r26 Prescott Center for the Arts'),
(14004, 'https://ror.org/04spj3m21', 'en', 1, 'https://ror.org/04spj3m21 Durham Public Schools'),
(14005, 'https://ror.org/04spsbn56', 'en', 1, 'https://ror.org/04spsbn56 Wayne County Public Schools'),
(14006, 'https://ror.org/04srfff60', 'en', 1, 'https://ror.org/04srfff60 Kanzius Cancer Research Foundation'),
(14007, 'https://ror.org/04ss55z27', 'fr', 1, 'https://ror.org/04ss55z27 Observatoire des Ʃnergies renouvelables Observatory of renewable energies'),
(14008, 'https://ror.org/04sx1sj77', 'es', 1, 'https://ror.org/04sx1sj77 BoletĆ­n Oficial del Estado Official State Gazette'),
(14009, 'https://ror.org/04sx28p80', 'en', 1, 'https://ror.org/04sx28p80 Hephzibah Children’s Association'),
(14010, 'https://ror.org/04sxrc563', 'en', 1, 'https://ror.org/04sxrc563 Conversations! The International Ovarian Cancer Connection'),
(14011, 'https://ror.org/04sy3ks71', 'en', 1, 'https://ror.org/04sy3ks71 KISS Institute for Practical Robotics'),
(14012, 'https://ror.org/04sy6z157', 'no_lang_code', 1, 'https://ror.org/04sy6z157 Innovative Technology and Science (United Kingdom)'),
(14013, 'https://ror.org/04sz0rs34', 'en', 1, 'https://ror.org/04sz0rs34 Erlanger Health System'),
(14014, 'https://ror.org/04sz6k684', 'en', 1, 'https://ror.org/04sz6k684 Lincoln Fencing Club'),
(14015, 'https://ror.org/04t1f4f50', 'no_lang_code', 1, 'https://ror.org/04t1f4f50 Swisscom (Switzerland)'),
(14016, 'https://ror.org/04t36th80', 'en', 1, 'https://ror.org/04t36th80 Hiller Aviation Museum'),
(14017, 'https://ror.org/04t4q4w41', 'en', 1, 'https://ror.org/04t4q4w41 Worshipful Society of Apothecaries'),
(14018, 'https://ror.org/04t71a559', 'en', 1, 'https://ror.org/04t71a559 Colorado Foundation for Agriculture'),
(14019, 'https://ror.org/04t99fj98', 'en', 1, 'https://ror.org/04t99fj98 CentraCare Health System'),
(14020, 'https://ror.org/04t9k7852', 'en', 1, 'https://ror.org/04t9k7852 Autism Partnership Foundation'),
(14021, 'https://ror.org/04tah4m03', 'en', 1, 'https://ror.org/04tah4m03 Sustainable Agriculture Education'),
(14022, 'https://ror.org/04tbtbw37', 'no_lang_code', 1, 'https://ror.org/04tbtbw37 Forschungs- und Technologietransfer (Austria)'),
(14023, 'https://ror.org/04tbz4c44', 'no_lang_code', 1, 'https://ror.org/04tbz4c44 Remote Sensing Solutions (United States)'),
(14024, 'https://ror.org/04tcsp154', 'no_lang_code', 1, 'https://ror.org/04tcsp154 Technology Transfer System (Italy)'),
(14025, 'https://ror.org/04tfjah29', 'en', 1, 'https://ror.org/04tfjah29 Limnological Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Лимнологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук (Š›Š˜Š Š”Šž Š ŠŠ)'),
(14026, 'https://ror.org/04thj7y95', 'en', 1, 'https://ror.org/04thj7y95 Department of Public Health'),
(14027, 'https://ror.org/04thxh256', 'en', 1, 'https://ror.org/04thxh256 Center for the Study of Healthcare Provider Behavior'),
(14028, 'https://ror.org/04tjnpy66', 'no_lang_code', 1, 'https://ror.org/04tjnpy66 Datastar (United States)'),
(14029, 'https://ror.org/04tm1j008', 'no_lang_code', 1, 'https://ror.org/04tm1j008 Saint Onge Orchids (United States)'),
(14030, 'https://ror.org/04tpatx34', 'en', 1, 'https://ror.org/04tpatx34 The Epsilon Group'),
(14031, 'https://ror.org/04tpvq080', 'en', 1, 'https://ror.org/04tpvq080 Russian Technology Transfer Network'),
(14032, 'https://ror.org/04tpy3f14', 'pt', 1, 'https://ror.org/04tpy3f14 Hospital Adventista Silvestre'),
(14033, 'https://ror.org/04tq1ka44', 'no_lang_code', 1, 'https://ror.org/04tq1ka44 Kite Solutions (Italy)'),
(14034, 'https://ror.org/04tr57w63', 'no_lang_code', 1, 'https://ror.org/04tr57w63 Ericsson (Spain)'),
(14035, 'https://ror.org/04ts0w644', 'en', 1, 'https://ror.org/04ts0w644 Joe DiMaggio Children''s Hospital'),
(14036, 'https://ror.org/04tst3481', 'no_lang_code', 1, 'https://ror.org/04tst3481 Hadassah'),
(14037, 'https://ror.org/04ttrjn35', 'en', 1, 'https://ror.org/04ttrjn35 The Center on Colfax'),
(14038, 'https://ror.org/04tv16z87', 'en', 1, 'https://ror.org/04tv16z87 Habitat for Humanity Fiji'),
(14039, 'https://ror.org/04v0ewv31', 'en', 1, 'https://ror.org/04v0ewv31 Asian Health Services'),
(14040, 'https://ror.org/04v2brz27', 'en', 1, 'https://ror.org/04v2brz27 MODUL University Vienna'),
(14041, 'https://ror.org/04v2rez45', 'no_lang_code', 1, 'https://ror.org/04v2rez45 MC2 Therapeutics (Denmark)'),
(14042, 'https://ror.org/04v46qt86', 'no_lang_code', 1, 'https://ror.org/04v46qt86 Intezyne (United States)'),
(14043, 'https://ror.org/04v566e62', 'no_lang_code', 1, 'https://ror.org/04v566e62 Netronix (United States)'),
(14044, 'https://ror.org/04v5zxc18', 'no_lang_code', 1, 'https://ror.org/04v5zxc18 geniaLab (Germany)'),
(14045, 'https://ror.org/04v6x2017', 'no_lang_code', 1, 'https://ror.org/04v6x2017 Aquaplus (Belgium)'),
(14046, 'https://ror.org/04v7m2q05', 'en', 1, 'https://ror.org/04v7m2q05 Crosswinds Equine Rescue'),
(14047, 'https://ror.org/04vaqkg10', 'en', 1, 'https://ror.org/04vaqkg10 The Bretton Woods Committee'),
(14048, 'https://ror.org/04vb68v58', 'no_lang_code', 1, 'https://ror.org/04vb68v58 Spacebel (Belgium)'),
(14049, 'https://ror.org/04vbcf629', 'en', 1, 'https://ror.org/04vbcf629 Friends of North Carolina Public Libraries'),
(14050, 'https://ror.org/04vbenz24', 'de', 1, 'https://ror.org/04vbenz24 SƤchsisches Textilforschungsinstitut'),
(14051, 'https://ror.org/04vbpaq02', 'no_lang_code', 1, 'https://ror.org/04vbpaq02 Sairem (France)'),
(14052, 'https://ror.org/04vcs1h64', 'no_lang_code', 1, 'https://ror.org/04vcs1h64 Brandtex (Denmark)'),
(14053, 'https://ror.org/04vdj0y48', 'en', 1, 'https://ror.org/04vdj0y48 Access Living'),
(14054, 'https://ror.org/04vedy547', 'no_lang_code', 1, 'https://ror.org/04vedy547 Tp21 (Germany)'),
(14055, 'https://ror.org/04vga2d07', 'it', 1, 'https://ror.org/04vga2d07 Centro Internazionale Studi Diabete'),
(14056, 'https://ror.org/04vjg0a23', 'en', 1, 'https://ror.org/04vjg0a23 National Center for Learning Disabilities'),
(14057, 'https://ror.org/04vkg5n49', 'no_lang_code', 1, 'https://ror.org/04vkg5n49 Tre Altamira (Spain)'),
(14058, 'https://ror.org/04vmfsf12', 'no_lang_code', 1, 'https://ror.org/04vmfsf12 AML Superconductivity and Magnetics (United States)'),
(14059, 'https://ror.org/04vr0gs97', 'en', 1, 'https://ror.org/04vr0gs97 Institute for Political Sciences MTA TÔrsadalomtudomÔnyi Kutatóközpont PolitikatudomÔnyi Intézet'),
(14060, 'https://ror.org/04vrtfy40', 'en', 1, 'https://ror.org/04vrtfy40 Global Ministries'),
(14061, 'https://ror.org/04vry6637', 'no_lang_code', 1, 'https://ror.org/04vry6637 Mississippi Delta Council for Farm Worker Opportunities'),
(14062, 'https://ror.org/04vswev69', 'no_lang_code', 1, 'https://ror.org/04vswev69 Cato BioVentures (United States)'),
(14063, 'https://ror.org/04vtmen79', 'es', 1, 'https://ror.org/04vtmen79 CECOLFES'),
(14064, 'https://ror.org/04vtrfw90', 'en', 1, 'https://ror.org/04vtrfw90 Cleveland County Schools'),
(14065, 'https://ror.org/04vv43q89', 'no_lang_code', 1, 'https://ror.org/04vv43q89 Ericsson (Finland)'),
(14066, 'https://ror.org/04vvrxd09', 'en', 1, 'https://ror.org/04vvrxd09 Weeksville Heritage Center'),
(14067, 'https://ror.org/04vx9dd09', 'no_lang_code', 1, 'https://ror.org/04vx9dd09 Lego (Denmark)'),
(14068, 'https://ror.org/04vxc1c96', 'no_lang_code', 1, 'https://ror.org/04vxc1c96 United Technologies Research Center'),
(14069, 'https://ror.org/04vy5hg27', 'no_lang_code', 1, 'https://ror.org/04vy5hg27 Cryogenic Industries (United States)'),
(14070, 'https://ror.org/04vz7v009', 'en', 1, 'https://ror.org/04vz7v009 Exploreum Science Center'),
(14071, 'https://ror.org/04w3cpz93', 'en', 1, 'https://ror.org/04w3cpz93 Grant A Wish'),
(14072, 'https://ror.org/04w4k4155', 'no_lang_code', 1, 'https://ror.org/04w4k4155 Hƶvding (Sweden)'),
(14073, 'https://ror.org/04w57r136', 'en', 1, 'https://ror.org/04w57r136 First Nations Development Institute'),
(14074, 'https://ror.org/04w5mc055', 'en', 1, 'https://ror.org/04w5mc055 Global Health Research Center of Central Asia'),
(14075, 'https://ror.org/04w5tkp91', 'no_lang_code', 1, 'https://ror.org/04w5tkp91 CINAR (United Kingdom)'),
(14076, 'https://ror.org/04w5z8h61', 'en', 1, 'https://ror.org/04w5z8h61 Adventist HealthCare Rehabilitation'),
(14077, 'https://ror.org/04w634n76', 'en', 1, 'https://ror.org/04w634n76 American Youth Soccer Organization'),
(14078, 'https://ror.org/04w702289', 'no_lang_code', 1, 'https://ror.org/04w702289 Siemens (Belgium)'),
(14079, 'https://ror.org/04w7t8545', 'en', 1, 'https://ror.org/04w7t8545 Contra Costa County Office of Education'),
(14080, 'https://ror.org/04w9kkr77', 'en', 1, 'https://ror.org/04w9kkr77 Scientific and Technological Research Council of Turkey Türkiyə Elmi və Texnoloji Tədqiqat Şurası'),
(14081, 'https://ror.org/04waxxs70', 'en', 1, 'https://ror.org/04waxxs70 Carnegie Hill Neighbors'),
(14082, 'https://ror.org/04wd3dx51', 'no_lang_code', 1, 'https://ror.org/04wd3dx51 Compagnie Industrielle d''Applications Thermiques (France)'),
(14083, 'https://ror.org/04wdcx151', 'en', 1, 'https://ror.org/04wdcx151 Northern Research Institute'),
(14084, 'https://ror.org/04wdqjx17', 'no_lang_code', 1, 'https://ror.org/04wdqjx17 Diagenode (Belgium)'),
(14085, 'https://ror.org/04wes7s39', 'no_lang_code', 1, 'https://ror.org/04wes7s39 InteSys (United Kingdom)'),
(14086, 'https://ror.org/04wfxgv30', 'no_lang_code', 1, 'https://ror.org/04wfxgv30 Bitron (Italy)'),
(14087, 'https://ror.org/04wgbm466', 'en', 1, 'https://ror.org/04wgbm466 Kōkua Mau'),
(14088, 'https://ror.org/04wjvj017', 'en', 1, 'https://ror.org/04wjvj017 Community Food Security Coalition'),
(14089, 'https://ror.org/04wkwbq27', 'en', 1, 'https://ror.org/04wkwbq27 Alderson Broaddus University'),
(14090, 'https://ror.org/04wm2jh50', 'en', 1, 'https://ror.org/04wm2jh50 Dublin City Council'),
(14091, 'https://ror.org/04wmv4g63', 'en', 1, 'https://ror.org/04wmv4g63 Hawaii Children''s Cancer Foundation'),
(14092, 'https://ror.org/04wnnt868', 'en', 1, 'https://ror.org/04wnnt868 Space Florida'),
(14093, 'https://ror.org/04wprn722', 'en', 1, 'https://ror.org/04wprn722 Tranquility Base Massage & Day Spa'),
(14094, 'https://ror.org/04wrsbk19', 'en', 1, 'https://ror.org/04wrsbk19 Federation of European Aquaculture Producers'),
(14095, 'https://ror.org/04wsrnw24', 'no_lang_code', 1, 'https://ror.org/04wsrnw24 Nokia (Italy)'),
(14096, 'https://ror.org/04wt6ne29', 'en', 1, 'https://ror.org/04wt6ne29 Corporation for Findlay Market'),
(14097, 'https://ror.org/04wx7x176', 'en', 1, 'https://ror.org/04wx7x176 Psychiatric Medical Center'),
(14098, 'https://ror.org/04wy7mt46', 'en', 1, 'https://ror.org/04wy7mt46 Make A Hero'),
(14099, 'https://ror.org/04wyzn311', 'en', 1, 'https://ror.org/04wyzn311 Freedom from Hunger'),
(14100, 'https://ror.org/04x0cz306', 'no_lang_code', 1, 'https://ror.org/04x0cz306 Noliac (Denmark)'),
(14101, 'https://ror.org/04x0dc707', 'en', 1, 'https://ror.org/04x0dc707 Seattle Aquarium'),
(14102, 'https://ror.org/04x34yn51', 'en', 1, 'https://ror.org/04x34yn51 Southeastern Consortium for Minorities in Engineering'),
(14103, 'https://ror.org/04x3k9185', 'en', 1, 'https://ror.org/04x3k9185 Community Impact'),
(14104, 'https://ror.org/04x5fkp12', 'no_lang_code', 1, 'https://ror.org/04x5fkp12 Catabasis Pharmaceuticals (United States)'),
(14105, 'https://ror.org/04x5whn41', 'en', 1, 'https://ror.org/04x5whn41 Alameda County Community Food Bank'),
(14106, 'https://ror.org/04x6e9478', 'en', 1, 'https://ror.org/04x6e9478 Baum Consult Bundesdeutsche Arbeitskreis für Umweltbewußtes Management e.V'),
(14107, 'https://ror.org/04x96x598', 'it', 1, 'https://ror.org/04x96x598 Experimental Station for Glass Stazione Sperimentale del Vetro'),
(14108, 'https://ror.org/04xa5qt51', 'no_lang_code', 1, 'https://ror.org/04xa5qt51 XLAB (Slovenia)'),
(14109, 'https://ror.org/04xanzq95', 'en', 1, 'https://ror.org/04xanzq95 The Parenting Cottage'),
(14110, 'https://ror.org/04xbpgz45', 'no_lang_code', 1, 'https://ror.org/04xbpgz45 Lamik (Spain)'),
(14111, 'https://ror.org/04xce0q45', 'no_lang_code', 1, 'https://ror.org/04xce0q45 Polymage (France)'),
(14112, 'https://ror.org/04xcy3p78', 'en', 1, 'https://ror.org/04xcy3p78 CoxHealth Foundation'),
(14113, 'https://ror.org/04xd7yt90', 'en', 1, 'https://ror.org/04xd7yt90 Neighborhood House Association'),
(14114, 'https://ror.org/04xezfk45', 'no_lang_code', 1, 'https://ror.org/04xezfk45 CFS Engineering (Switzerland)'),
(14115, 'https://ror.org/04xg79b82', 'en', 1, 'https://ror.org/04xg79b82 CHRISTUS St. Patrick Hospital'),
(14116, 'https://ror.org/04xge3a12', 'en', 1, 'https://ror.org/04xge3a12 Denver Urban Gardens'),
(14117, 'https://ror.org/04xh2sm62', 'en', 1, 'https://ror.org/04xh2sm62 Angelica Patient Assistance Program'),
(14118, 'https://ror.org/04xhfgr69', 'no_lang_code', 1, 'https://ror.org/04xhfgr69 Altran (Italy)'),
(14119, 'https://ror.org/04xjvsa73', 'no_lang_code', 1, 'https://ror.org/04xjvsa73 WSP (Finland)'),
(14120, 'https://ror.org/04xk5ks51', 'en', 1, 'https://ror.org/04xk5ks51 North Carolina Science, Mathematics, and Technology Education Center'),
(14121, 'https://ror.org/04xpj5302', 'en', 1, 'https://ror.org/04xpj5302 National Consumer Research Centre'),
(14122, 'https://ror.org/04xpx8w88', 'no_lang_code', 1, 'https://ror.org/04xpx8w88 Azyp (United States)'),
(14123, 'https://ror.org/04xpz8e97', 'en', 1, 'https://ror.org/04xpz8e97 Jack and Jill Late Stage Cancer Foundation'),
(14124, 'https://ror.org/04xqgyf78', 'en', 1, 'https://ror.org/04xqgyf78 Greek Association of Alzheimer''s Disease and Related Disorders'),
(14125, 'https://ror.org/04xqxea08', 'en', 1, 'https://ror.org/04xqxea08 Crescent Development Foundation'),
(14126, 'https://ror.org/04xsc6e37', 'en', 1, 'https://ror.org/04xsc6e37 Athletics Canada AthlƩtisme Canada'),
(14127, 'https://ror.org/04xsz2t23', 'en', 1, 'https://ror.org/04xsz2t23 Cancer Care Services'),
(14128, 'https://ror.org/04y1g1r77', 'no_lang_code', 1, 'https://ror.org/04y1g1r77 AppliCote Associates (United States)'),
(14129, 'https://ror.org/04y1z0v62', 'en', 1, 'https://ror.org/04y1z0v62 Ovar''coming Together'),
(14130, 'https://ror.org/04y280w56', 'no_lang_code', 1, 'https://ror.org/04y280w56 Inlecom Systems (United Kingdom)'),
(14131, 'https://ror.org/04y33ew61', 'en', 1, 'https://ror.org/04y33ew61 AIDS Project Of The East Bay'),
(14132, 'https://ror.org/04y35pz27', 'en', 1, 'https://ror.org/04y35pz27 Cornucopia Cancer Support Center'),
(14133, 'https://ror.org/04y3rzk98', 'en', 1, 'https://ror.org/04y3rzk98 American Kennel Club Canine Health Foundation'),
(14134, 'https://ror.org/04y4kb514', 'no_lang_code', 1, 'https://ror.org/04y4kb514 Modulight (Finland)'),
(14135, 'https://ror.org/04y5a4d40', 'no_lang_code', 1, 'https://ror.org/04y5a4d40 Coventor (France)'),
(14136, 'https://ror.org/04y5apy07', 'no_lang_code', 1, 'https://ror.org/04y5apy07 Biomedisyn (United States)'),
(14137, 'https://ror.org/04y729m70', 'no_lang_code', 1, 'https://ror.org/04y729m70 Petards Group (United Kingdom)'),
(14138, 'https://ror.org/04y8d8z54', 'en', 1, 'https://ror.org/04y8d8z54 Central Wisconsin Community Action Council'),
(14139, 'https://ror.org/04ycrgr69', 'en', 1, 'https://ror.org/04ycrgr69 Lac Courte Oreilles Ojibwa Community College'),
(14140, 'https://ror.org/04yd65q24', 'en', 1, 'https://ror.org/04yd65q24 Samaritan Healthcare and Hospice'),
(14141, 'https://ror.org/04ydcpm48', 'en', 1, 'https://ror.org/04ydcpm48 Ministria e Arsimit, Sportit dhe Rinisƫ Ministry of Education, Sports and Youth'),
(14142, 'https://ror.org/04ye4vy15', 'no_lang_code', 1, 'https://ror.org/04ye4vy15 Intralytix (United States)'),
(14143, 'https://ror.org/04yh9ek66', 'no_lang_code', 1, 'https://ror.org/04yh9ek66 Keystone Nano (United States)'),
(14144, 'https://ror.org/04yhn3690', 'en', 1, 'https://ror.org/04yhn3690 AdventHealth Foundation Central Florida'),
(14145, 'https://ror.org/04yj3nc53', 'no_lang_code', 1, 'https://ror.org/04yj3nc53 Austrian Mobility Research Forschungsgesellschaft MobilitƤt'),
(14146, 'https://ror.org/04yk3c231', 'no_lang_code', 1, 'https://ror.org/04yk3c231 Hitachi (France)'),
(14147, 'https://ror.org/04ynvhd06', 'it', 1, 'https://ror.org/04ynvhd06 Centro RIcerche Plast-Optica'),
(14148, 'https://ror.org/04ypb9m04', 'no_lang_code', 1, 'https://ror.org/04ypb9m04 NeuroNascent (United States)'),
(14149, 'https://ror.org/04yqx6497', 'en', 1, 'https://ror.org/04yqx6497 American Historical Association'),
(14150, 'https://ror.org/04ys0z478', 'en', 1, 'https://ror.org/04ys0z478 Central Coast Resource Conservation and Development'),
(14151, 'https://ror.org/04yt64j61', 'no_lang_code', 1, 'https://ror.org/04yt64j61 Gilat Satellite Networks (Israel)'),
(14152, 'https://ror.org/04ytjxd97', 'fr', 1, 'https://ror.org/04ytjxd97 Technofi'),
(14153, 'https://ror.org/04yw5jr36', 'no_lang_code', 1, 'https://ror.org/04yw5jr36 Cap Sciences (France)'),
(14154, 'https://ror.org/04ywkc356', 'en', 1, 'https://ror.org/04ywkc356 Long Island Community Hospital'),
(14155, 'https://ror.org/04yy66p73', 'fr', 1, 'https://ror.org/04yy66p73 Institution de la Recherche et de l’Enseignement SupĆ©rieur Agricoles'),
(14156, 'https://ror.org/04z1brt13', 'no_lang_code', 1, 'https://ror.org/04z1brt13 Bretagne Innovation (France)'),
(14157, 'https://ror.org/04z1q2j11', 'no', 1, 'https://ror.org/04z1q2j11 Vestlandsforsking Western Norway Research Institute'),
(14158, 'https://ror.org/04z2zcc58', 'no_lang_code', 1, 'https://ror.org/04z2zcc58 Mayaterials (United States)'),
(14159, 'https://ror.org/04z3mgg43', 'no_lang_code', 1, 'https://ror.org/04z3mgg43 Cryptomathic (Denmark)'),
(14160, 'https://ror.org/04z5k1s77', 'en', 1, 'https://ror.org/04z5k1s77 McAlister Institute'),
(14161, 'https://ror.org/04z69s492', 'no_lang_code', 1, 'https://ror.org/04z69s492 Andritz (Austria)'),
(14162, 'https://ror.org/04z6pqc94', 'no_lang_code', 1, 'https://ror.org/04z6pqc94 Prestige World Genetics Pte (Singapore)'),
(14163, 'https://ror.org/04z86nr40', 'en', 1, 'https://ror.org/04z86nr40 Living Springs Community Church'),
(14164, 'https://ror.org/04z8azd17', 'no_lang_code', 1, 'https://ror.org/04z8azd17 Europe Unlimited (Belgium)'),
(14165, 'https://ror.org/04z8wqp73', 'no_lang_code', 1, 'https://ror.org/04z8wqp73 Baker Hughes (Germany)'),
(14166, 'https://ror.org/04z947e46', 'en', 1, 'https://ror.org/04z947e46 Center for American Progress'),
(14167, 'https://ror.org/04zb1mb80', 'no_lang_code', 1, 'https://ror.org/04zb1mb80 YellowMap (Germany)'),
(14168, 'https://ror.org/04zbkx310', 'no_lang_code', 1, 'https://ror.org/04zbkx310 Mekorot (Israel) ×ž×§×•×Ø×•×Ŗ'),
(14169, 'https://ror.org/04zbse002', 'no_lang_code', 1, 'https://ror.org/04zbse002 Kybertec (Czechia)'),
(14170, 'https://ror.org/04zbx7x36', 'en', 1, 'https://ror.org/04zbx7x36 Italian Biomass Association'),
(14171, 'https://ror.org/04zh7mt66', 'en', 1, 'https://ror.org/04zh7mt66 Army Hospital Research and Referral ą¤†ą¤°ą„ą¤®ą„€ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤ą¤‚ą¤” ą¤°ą„‡ą¤«ą„‡ą¤°ą„ą¤°ą¤²'),
(14172, 'https://ror.org/04zha3029', 'no_lang_code', 1, 'https://ror.org/04zha3029 Harms & Wende (Germany)'),
(14173, 'https://ror.org/04zkytf76', 'en', 1, 'https://ror.org/04zkytf76 Asylum Access'),
(14174, 'https://ror.org/04zmjp854', 'en', 1, 'https://ror.org/04zmjp854 LRGHealthcare'),
(14175, 'https://ror.org/04zmpx795', 'no_lang_code', 1, 'https://ror.org/04zmpx795 CytoSorbents (United States)'),
(14176, 'https://ror.org/04znbx206', 'en', 1, 'https://ror.org/04znbx206 Appalachian Native Plants'),
(14177, 'https://ror.org/04znqn582', 'en', 1, 'https://ror.org/04znqn582 HCG NCHRI Cancer Centre'),
(14178, 'https://ror.org/04zpmt351', 'en', 1, 'https://ror.org/04zpmt351 Nikolaev Institute of Inorganic Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неорганической химии им. А.Š’.ŠŠøŠŗŠ¾Š»Š°ŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(14179, 'https://ror.org/04zqx6d52', 'no_lang_code', 1, 'https://ror.org/04zqx6d52 NKT Holding (Denmark)'),
(14180, 'https://ror.org/04zrfss29', 'no_lang_code', 1, 'https://ror.org/04zrfss29 MedCom'),
(14181, 'https://ror.org/04ztkpw59', 'no_lang_code', 1, 'https://ror.org/04ztkpw59 Xiomas Technologies (United States)'),
(14182, 'https://ror.org/04ztvme64', 'en', 1, 'https://ror.org/04ztvme64 Texas Medical Association'),
(14183, 'https://ror.org/04zvb9t44', 'en', 1, 'https://ror.org/04zvb9t44 Ministry of Education and Religious Affairs ΄πουργείο ΠαιΓείας, ĪˆĻĪµĻ…Ī½Ī±Ļ‚ και Ī˜ĻĪ·ĻƒĪŗĪµĻ…Ī¼Ī¬Ļ„Ļ‰Ī½'),
(14184, 'https://ror.org/04zwgxj11', 'de', 1, 'https://ror.org/04zwgxj11 Ɩsterreichisches Forschungsinstitut für Chemie und Technik'),
(14185, 'https://ror.org/04zwykt37', 'no_lang_code', 1, 'https://ror.org/04zwykt37 Ceramiques Techniques et Industrielles (France)'),
(14186, 'https://ror.org/04zyzzh22', 'no_lang_code', 1, 'https://ror.org/04zyzzh22 Saft (France)'),
(14187, 'https://ror.org/04zzddp49', 'no_lang_code', 1, 'https://ror.org/04zzddp49 IDEC'),
(14188, 'https://ror.org/04zzwzx41', 'en', 1, 'https://ror.org/04zzwzx41 Hertie Institute for Clinical Brain Research Hertie-Institut für klinische Hirnforschung'),
(14189, 'https://ror.org/0501e3k91', 'no_lang_code', 1, 'https://ror.org/0501e3k91 Flensburger Schiffbau Gesellschaft (Germany)'),
(14190, 'https://ror.org/05031m633', 'en', 1, 'https://ror.org/05031m633 Employment Opportunity and Training Center'),
(14191, 'https://ror.org/05035cc38', 'no_lang_code', 1, 'https://ror.org/05035cc38 LIG Science (United States)'),
(14192, 'https://ror.org/0503ejf32', 'en', 1, 'https://ror.org/0503ejf32 Manouba University UniversitĆ© de la manouba Ų¬Ų§Ł…Ų¹Ų© Ł…Ł†ŁˆŲØŲ©'),
(14193, 'https://ror.org/050564b76', 'en', 1, 'https://ror.org/050564b76 Annaswamy Mudaliar General Hospital'),
(14194, 'https://ror.org/0506e5129', 'no_lang_code', 1, 'https://ror.org/0506e5129 Avaris (Sweden)'),
(14195, 'https://ror.org/0507s5g02', 'en', 1, 'https://ror.org/0507s5g02 COPE Health Solutions'),
(14196, 'https://ror.org/0507xbc51', 'no_lang_code', 1, 'https://ror.org/0507xbc51 Invent (Germany)'),
(14197, 'https://ror.org/050818891', 'en', 1, 'https://ror.org/050818891 VNA of Care New England'),
(14198, 'https://ror.org/0509fa037', 'en', 1, 'https://ror.org/0509fa037 National Association of Extension 4-H Agents'),
(14199, 'https://ror.org/050bkss19', 'no_lang_code', 1, 'https://ror.org/050bkss19 InterInnov (France)'),
(14200, 'https://ror.org/050c2ya64', 'no_lang_code', 1, 'https://ror.org/050c2ya64 Imerys (Greece)'),
(14201, 'https://ror.org/050c96876', 'no_lang_code', 1, 'https://ror.org/050c96876 Chersco (United States)'),
(14202, 'https://ror.org/050cwv729', 'no_lang_code', 1, 'https://ror.org/050cwv729 Magen David Adom'),
(14203, 'https://ror.org/050g24769', 'no_lang_code', 1, 'https://ror.org/050g24769 Nanogate (Germany)'),
(14204, 'https://ror.org/050g6df85', 'en', 1, 'https://ror.org/050g6df85 National Institute of Cancer Research and Hospital ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦•ą§ą¦Æą¦¾ą¦Øą§ą¦øą¦¾ą¦° গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ ও হাসপাতাল'),
(14205, 'https://ror.org/050gb7v09', 'no_lang_code', 1, 'https://ror.org/050gb7v09 Groupe Cahors (France)'),
(14206, 'https://ror.org/050gxst24', 'en', 1, 'https://ror.org/050gxst24 Radiological Protection Institute of Ireland'),
(14207, 'https://ror.org/050j2px32', 'en', 1, 'https://ror.org/050j2px32 National Archives of Sweden Riksarkivet'),
(14208, 'https://ror.org/050jzv373', 'en', 1, 'https://ror.org/050jzv373 AEE Institute for Sustainable Technologies'),
(14209, 'https://ror.org/050n06q35', 'no_lang_code', 1, 'https://ror.org/050n06q35 Gorenje (Slovenia)'),
(14210, 'https://ror.org/050ntep05', 'no_lang_code', 1, 'https://ror.org/050ntep05 Saet (Italy)'),
(14211, 'https://ror.org/050r3h664', 'en', 1, 'https://ror.org/050r3h664 Eurocontrol'),
(14212, 'https://ror.org/050r8f240', 'no_lang_code', 1, 'https://ror.org/050r8f240 Heinz Optical Engineering (United States)'),
(14213, 'https://ror.org/050rtva22', 'en', 1, 'https://ror.org/050rtva22 Geological Survey of Sweden Ruotsin geologinen tutkimuslaitos Sveriges geologiska undersƶkning'),
(14214, 'https://ror.org/050sgaw73', 'no_lang_code', 1, 'https://ror.org/050sgaw73 Summit Seed (United States)'),
(14215, 'https://ror.org/050svx916', 'en', 1, 'https://ror.org/050svx916 Dünyagöz Hospital'),
(14216, 'https://ror.org/050t9mr22', 'no_lang_code', 1, 'https://ror.org/050t9mr22 Agilent Technologies (Denmark)'),
(14217, 'https://ror.org/050teng13', 'no_lang_code', 1, 'https://ror.org/050teng13 Humanetics Innovative Solutions (Netherlands)'),
(14218, 'https://ror.org/050vqjt31', 'en', 1, 'https://ror.org/050vqjt31 Virginia Air and Space Center'),
(14219, 'https://ror.org/050wvj485', 'en', 1, 'https://ror.org/050wvj485 Reading and Beyond'),
(14220, 'https://ror.org/050wxgw75', 'no_lang_code', 1, 'https://ror.org/050wxgw75 ATEbank (Greece) Αγροτική Τράπεζα της ΕλλάΓος'),
(14221, 'https://ror.org/050z1be57', 'no_lang_code', 1, 'https://ror.org/050z1be57 Invention House (United States)'),
(14222, 'https://ror.org/051054y87', 'no_lang_code', 1, 'https://ror.org/051054y87 DuPont (Denmark)'),
(14223, 'https://ror.org/0510ppv76', 'lv', 1, 'https://ror.org/0510ppv76 Rezekne Higher Education Institution Rēzeknes Augstskola'),
(14224, 'https://ror.org/0513rs483', 'no_lang_code', 1, 'https://ror.org/0513rs483 Marac (Greece) ĪœĪ‘Ī”Ī‘Īš Ηλεκτρονική'),
(14225, 'https://ror.org/051434232', 'en', 1, 'https://ror.org/051434232 Harvey Brooks Motivation and Development Foundation'),
(14226, 'https://ror.org/0514bm407', 'en', 1, 'https://ror.org/0514bm407 European Centre for Social Welfare Policy and Research'),
(14227, 'https://ror.org/051687e73', 'en', 1, 'https://ror.org/051687e73 National Brain Tumor Society'),
(14228, 'https://ror.org/05168yk81', 'no_lang_code', 1, 'https://ror.org/05168yk81 Microsoft (Belgium)'),
(14229, 'https://ror.org/0518a5g43', 'no_lang_code', 1, 'https://ror.org/0518a5g43 MentiNova (United States)'),
(14230, 'https://ror.org/0518gvp45', 'no_lang_code', 1, 'https://ror.org/0518gvp45 Fluidtime (Austria)'),
(14231, 'https://ror.org/051ansx96', 'no_lang_code', 1, 'https://ror.org/051ansx96 Eternity Bioscience (United States)'),
(14232, 'https://ror.org/051aqjh92', 'en', 1, 'https://ror.org/051aqjh92 Ministry of Education and Research'),
(14233, 'https://ror.org/051csrn64', 'en', 1, 'https://ror.org/051csrn64 Jackson County Public Schools'),
(14234, 'https://ror.org/051deva93', 'no_lang_code', 1, 'https://ror.org/051deva93 Necton (Portugal)'),
(14235, 'https://ror.org/051e2nw91', 'en', 1, 'https://ror.org/051e2nw91 Farm Credit Council'),
(14236, 'https://ror.org/051ehts03', 'no_lang_code', 1, 'https://ror.org/051ehts03 Prospex (Belgium)'),
(14237, 'https://ror.org/051h34p92', 'en', 1, 'https://ror.org/051h34p92 Astronomical Research Institute'),
(14238, 'https://ror.org/051jg5p78', 'en', 1, 'https://ror.org/051jg5p78 First Affiliated Hospital of Soochow University č‹å·žå¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(14239, 'https://ror.org/051p0n058', 'no_lang_code', 1, 'https://ror.org/051p0n058 Mikey’s Way Foundation'),
(14240, 'https://ror.org/051qd7x39', 'en', 1, 'https://ror.org/051qd7x39 Children''s Museum of Indianapolis'),
(14241, 'https://ror.org/051r84t36', 'en', 1, 'https://ror.org/051r84t36 Little Bit Therapeutic Riding Center'),
(14242, 'https://ror.org/051rrn740', 'en', 1, 'https://ror.org/051rrn740 St. Luke''s Mountain States Tumor Institute'),
(14243, 'https://ror.org/051secs02', 'no_lang_code', 1, 'https://ror.org/051secs02 Thetis'),
(14244, 'https://ror.org/051w7zc95', 'en', 1, 'https://ror.org/051w7zc95 Arctic and Antarctic Research Institute Арктический Šø антарктический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(14245, 'https://ror.org/051wbhx61', 'no_lang_code', 1, 'https://ror.org/051wbhx61 McCarthy Modernization (United States)'),
(14246, 'https://ror.org/051xk8837', 'en', 1, 'https://ror.org/051xk8837 Korean Health Education, Information, and Research Center'),
(14247, 'https://ror.org/051yjgn28', 'no_lang_code', 1, 'https://ror.org/051yjgn28 Genkyotex (Switzerland)'),
(14248, 'https://ror.org/051zae275', 'en', 1, 'https://ror.org/051zae275 Kadlec Regional Medical Center'),
(14249, 'https://ror.org/051zzmk23', 'no_lang_code', 1, 'https://ror.org/051zzmk23 HƶganƤs (Sweden)'),
(14250, 'https://ror.org/05210wh26', 'en', 1, 'https://ror.org/05210wh26 Coda Alliance'),
(14251, 'https://ror.org/0521fzc39', 'no_lang_code', 1, 'https://ror.org/0521fzc39 Atos (Germany)'),
(14252, 'https://ror.org/0522qq959', 'en', 1, 'https://ror.org/0522qq959 Legal Aid of Nebraska'),
(14253, 'https://ror.org/05232hy51', 'no_lang_code', 1, 'https://ror.org/05232hy51 Statnett (Norway)'),
(14254, 'https://ror.org/0524dwb40', 'it', 1, 'https://ror.org/0524dwb40 Fondazione GraphiTech'),
(14255, 'https://ror.org/05253xp33', 'no_lang_code', 1, 'https://ror.org/05253xp33 Avails Medical (United States)'),
(14256, 'https://ror.org/0526axj32', 'no_lang_code', 1, 'https://ror.org/0526axj32 e-Trikala (Greece)'),
(14257, 'https://ror.org/052942611', 'en', 1, 'https://ror.org/052942611 Nebraska Indian Community College'),
(14258, 'https://ror.org/052b7db17', 'en', 1, 'https://ror.org/052b7db17 Nevada Childhood Cancer Foundation'),
(14259, 'https://ror.org/052bk3d94', 'en', 1, 'https://ror.org/052bk3d94 The University of Arizona Global Campus'),
(14260, 'https://ror.org/052cewm89', 'no_lang_code', 1, 'https://ror.org/052cewm89 Multiform Harvest (United States)'),
(14261, 'https://ror.org/052ed1t23', 'en', 1, 'https://ror.org/052ed1t23 Park Avenue Synagogue');
INSERT INTO `rors` VALUES
(14262, 'https://ror.org/052fdn272', 'en', 1, 'https://ror.org/052fdn272 San Francisco Unified School District'),
(14263, 'https://ror.org/052r0y739', 'no_lang_code', 1, 'https://ror.org/052r0y739 Prodo Laboratories (United States)'),
(14264, 'https://ror.org/052rn8031', 'en', 1, 'https://ror.org/052rn8031 Clinicas de Salud del Pueblo'),
(14265, 'https://ror.org/052rymf92', 'en', 1, 'https://ror.org/052rymf92 Ibaraki Children''s Hospital čŒØåŸŽēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(14266, 'https://ror.org/052t8c018', 'en', 1, 'https://ror.org/052t8c018 HIV Education and Prevention Project of Alameda County'),
(14267, 'https://ror.org/052t9a145', 'en', 1, 'https://ror.org/052t9a145 NƶvƩnyvƩdelmi IntƩzete Plant Protection Institute'),
(14268, 'https://ror.org/052teyb98', 'en', 1, 'https://ror.org/052teyb98 North Carolina Aquarium'),
(14269, 'https://ror.org/052tzd367', 'en', 1, 'https://ror.org/052tzd367 Granville County Public Schools'),
(14270, 'https://ror.org/052wtvs60', 'fr', 1, 'https://ror.org/052wtvs60 Institut National de la Recherche Agronomique de Tunisie'),
(14271, 'https://ror.org/052x6na95', 'de', 1, 'https://ror.org/052x6na95 Wirtschaftsfƶrderung Region Stuttgart'),
(14272, 'https://ror.org/052x9wz38', 'no_lang_code', 1, 'https://ror.org/052x9wz38 Septentrio (Belgium)'),
(14273, 'https://ror.org/052xw2c95', 'no_lang_code', 1, 'https://ror.org/052xw2c95 Inno (France)'),
(14274, 'https://ror.org/05324s141', 'en', 1, 'https://ror.org/05324s141 Our Lady of Perpetual Help'),
(14275, 'https://ror.org/0533brp61', 'en', 1, 'https://ror.org/0533brp61 BioLink Life Sciences'),
(14276, 'https://ror.org/0536q8754', 'no_lang_code', 1, 'https://ror.org/0536q8754 Olema Pharmaceuticals (United States)'),
(14277, 'https://ror.org/0538q7376', 'no_lang_code', 1, 'https://ror.org/0538q7376 Sonatest (United Kingdom)'),
(14278, 'https://ror.org/0538tt685', 'no_lang_code', 1, 'https://ror.org/0538tt685 BIOS Bioenergiesysteme (Austria)'),
(14279, 'https://ror.org/053cfr159', 'en', 1, 'https://ror.org/053cfr159 Council for the Welfare of Children'),
(14280, 'https://ror.org/053cqar38', 'no_lang_code', 1, 'https://ror.org/053cqar38 Ecorys (United Kingdom)'),
(14281, 'https://ror.org/053d27v87', 'en', 1, 'https://ror.org/053d27v87 Brain Injury Alliance of Oregon'),
(14282, 'https://ror.org/053d55q96', 'no_lang_code', 1, 'https://ror.org/053d55q96 Linde (Germany)'),
(14283, 'https://ror.org/053e6g844', 'no_lang_code', 1, 'https://ror.org/053e6g844 Giesecke and Devrient (Germany)'),
(14284, 'https://ror.org/053k6j340', 'no_lang_code', 1, 'https://ror.org/053k6j340 Organic Waste Systems (Belgium)'),
(14285, 'https://ror.org/053m1nc07', 'en', 1, 'https://ror.org/053m1nc07 Center for Health and Learning'),
(14286, 'https://ror.org/053nagh38', 'en', 1, 'https://ror.org/053nagh38 Charlotte Maxwell Clinic'),
(14287, 'https://ror.org/053ndkf46', 'en', 1, 'https://ror.org/053ndkf46 Kelsey Research Foundation'),
(14288, 'https://ror.org/053pcb396', 'en', 1, 'https://ror.org/053pcb396 Ministry of Education and Science'),
(14289, 'https://ror.org/053s72389', 'en', 1, 'https://ror.org/053s72389 Coalición Rural Rural Coalition'),
(14290, 'https://ror.org/053sdsy29', 'en', 1, 'https://ror.org/053sdsy29 Allan Hancock College'),
(14291, 'https://ror.org/053ssqa83', 'en', 1, 'https://ror.org/053ssqa83 Austrian Cooperative Research Vereinigung der Kooperativen Forschungseinrichtungen der ƶsterreichischen Wirtschaft'),
(14292, 'https://ror.org/053v95q10', 'en', 1, 'https://ror.org/053v95q10 Child Care Resource & Referral'),
(14293, 'https://ror.org/053vtpa28', 'en', 1, 'https://ror.org/053vtpa28 European Council for Maritime Applied R&D Association'),
(14294, 'https://ror.org/053xb8h09', 'en', 1, 'https://ror.org/053xb8h09 Positive Resource Center'),
(14295, 'https://ror.org/053xpwt63', 'nl', 1, 'https://ror.org/053xpwt63 Nederlands Meetinstituut'),
(14296, 'https://ror.org/053z7dx55', 'en', 1, 'https://ror.org/053z7dx55 Maternal Child and Family Health'),
(14297, 'https://ror.org/053zwpg96', 'es', 1, 'https://ror.org/053zwpg96 Fundacion Centro De Investigacion De Enfermedades Neurologicas'),
(14298, 'https://ror.org/05404pa79', 'en', 1, 'https://ror.org/05404pa79 OSF Saint Anthony Medical Center'),
(14299, 'https://ror.org/054119345', 'fr', 1, 'https://ror.org/054119345 Laboratoire d''Ɖvaluation des MatĆ©riels Implantables'),
(14300, 'https://ror.org/05447tk77', 'no_lang_code', 1, 'https://ror.org/05447tk77 Epsilon (Italy)'),
(14301, 'https://ror.org/0546dmt59', 'no_lang_code', 1, 'https://ror.org/0546dmt59 Nationaal Archief of the Netherlands'),
(14302, 'https://ror.org/05474q779', 'no_lang_code', 1, 'https://ror.org/05474q779 Frequentis (Austria)'),
(14303, 'https://ror.org/0547fcp84', 'en', 1, 'https://ror.org/0547fcp84 Uniresearch'),
(14304, 'https://ror.org/0548cbe65', 'no_lang_code', 1, 'https://ror.org/0548cbe65 CareWheels'),
(14305, 'https://ror.org/054as9c11', 'en', 1, 'https://ror.org/054as9c11 Michael Ryan Pattison Foundation'),
(14306, 'https://ror.org/054b1ew30', 'en', 1, 'https://ror.org/054b1ew30 Clean Needles Now'),
(14307, 'https://ror.org/054bs2v13', 'en', 1, 'https://ror.org/054bs2v13 Mercy Health'),
(14308, 'https://ror.org/054cq3r13', 'fr', 1, 'https://ror.org/054cq3r13 Institut de l''Audiovisuel et des TƩlƩcommunications en Europe'),
(14309, 'https://ror.org/054cqc676', 'no_lang_code', 1, 'https://ror.org/054cqc676 Quinary (Italy)'),
(14310, 'https://ror.org/054dc7e40', 'en', 1, 'https://ror.org/054dc7e40 Ministerie van Financiƫn Ministry of Finance'),
(14311, 'https://ror.org/054dhw748', 'en', 1, 'https://ror.org/054dhw748 Children Cancer Hospital لمؤسسة مستؓفى سرطان الأطفال'),
(14312, 'https://ror.org/054etw605', 'fr', 1, 'https://ror.org/054etw605 Institut du DƩveloppement Durable et des Ressources Aquatiques'),
(14313, 'https://ror.org/054fn8673', 'no_lang_code', 1, 'https://ror.org/054fn8673 Energinet (Denmark)'),
(14314, 'https://ror.org/054gf5823', 'it', 1, 'https://ror.org/054gf5823 Unione Nazionale Industria Conciaria'),
(14315, 'https://ror.org/054gk2851', 'en', 1, 'https://ror.org/054gk2851 St Thomas'' Hospital'),
(14316, 'https://ror.org/054j7wb83', 'no_lang_code', 1, 'https://ror.org/054j7wb83 Eisai (United Kingdom)'),
(14317, 'https://ror.org/054jcy957', 'no_lang_code', 1, 'https://ror.org/054jcy957 Instituttet for Produktudvikling (Denmark)'),
(14318, 'https://ror.org/054jftq10', 'no_lang_code', 1, 'https://ror.org/054jftq10 NsGene (Denmark)'),
(14319, 'https://ror.org/054mx2417', 'en', 1, 'https://ror.org/054mx2417 Himalayan Cataract Project'),
(14320, 'https://ror.org/054nf0d79', 'no_lang_code', 1, 'https://ror.org/054nf0d79 Ingenasa (Spain)'),
(14321, 'https://ror.org/054nv0q45', 'no_lang_code', 1, 'https://ror.org/054nv0q45 IMC Information Multimedia Communication (Germany)'),
(14322, 'https://ror.org/054pcbf42', 'en', 1, 'https://ror.org/054pcbf42 Orange County School'),
(14323, 'https://ror.org/054qc6v55', 'en', 1, 'https://ror.org/054qc6v55 Community Health Partnership'),
(14324, 'https://ror.org/054qg8b39', 'no_lang_code', 1, 'https://ror.org/054qg8b39 Industrial Control Solutions'),
(14325, 'https://ror.org/054t1pd20', 'no_lang_code', 1, 'https://ror.org/054t1pd20 Schillinger Genetics (United States)'),
(14326, 'https://ror.org/054y68q61', 'no_lang_code', 1, 'https://ror.org/054y68q61 TopSolid (France)'),
(14327, 'https://ror.org/054yr2s43', 'no_lang_code', 1, 'https://ror.org/054yr2s43 CECIMO (Belgium)'),
(14328, 'https://ror.org/054yshy75', 'en', 1, 'https://ror.org/054yshy75 First Baptist Church-West'),
(14329, 'https://ror.org/054yz2f06', 'en', 1, 'https://ror.org/054yz2f06 National Youth Science Foundation'),
(14330, 'https://ror.org/054zpyd97', 'en', 1, 'https://ror.org/054zpyd97 San Diego Unified School District'),
(14331, 'https://ror.org/05546tk27', 'no_lang_code', 1, 'https://ror.org/05546tk27 Teamnet (Romania)'),
(14332, 'https://ror.org/0558jee48', 'en', 1, 'https://ror.org/0558jee48 World Health Organization - Italy'),
(14333, 'https://ror.org/055ahdj14', 'en', 1, 'https://ror.org/055ahdj14 Baptist Hospital'),
(14334, 'https://ror.org/055b6zg31', 'en', 1, 'https://ror.org/055b6zg31 genHkids Coalition'),
(14335, 'https://ror.org/055bwqk39', 'no_lang_code', 1, 'https://ror.org/055bwqk39 TIE Kinetix (Germany)'),
(14336, 'https://ror.org/055cet093', 'no_lang_code', 1, 'https://ror.org/055cet093 Clay Technology (Sweden)'),
(14337, 'https://ror.org/055dbxv70', 'no_lang_code', 1, 'https://ror.org/055dbxv70 Biovista (United States)'),
(14338, 'https://ror.org/055dnb550', 'no_lang_code', 1, 'https://ror.org/055dnb550 Avia-GIS (Belgium)'),
(14339, 'https://ror.org/055e7e256', 'en', 1, 'https://ror.org/055e7e256 Global Alliance Against Traffic in Women'),
(14340, 'https://ror.org/055ef6019', 'no_lang_code', 1, 'https://ror.org/055ef6019 Rolls-Royce (Sweden)'),
(14341, 'https://ror.org/055en7988', 'no_lang_code', 1, 'https://ror.org/055en7988 Ensemble Therapeutics (United States)'),
(14342, 'https://ror.org/055fajc83', 'no_lang_code', 1, 'https://ror.org/055fajc83 Frog AGV Systems (Netherlands)'),
(14343, 'https://ror.org/055fed339', 'en', 1, 'https://ror.org/055fed339 Black Oaks Center'),
(14344, 'https://ror.org/055h1w046', 'no_lang_code', 1, 'https://ror.org/055h1w046 Ashima Group (United States)'),
(14345, 'https://ror.org/055hgd414', 'en', 1, 'https://ror.org/055hgd414 American Association for Aerosol Research'),
(14346, 'https://ror.org/055j33y49', 'no_lang_code', 1, 'https://ror.org/055j33y49 Phase Change Material Products (United Kingdom)'),
(14347, 'https://ror.org/055k7wq83', 'no_lang_code', 1, 'https://ror.org/055k7wq83 Chemtex (Italy)'),
(14348, 'https://ror.org/055ksem72', 'en', 1, 'https://ror.org/055ksem72 Leonard J. Chabert Medical Center'),
(14349, 'https://ror.org/055mqy429', 'no_lang_code', 1, 'https://ror.org/055mqy429 Diligent Consulting (United States)'),
(14350, 'https://ror.org/055nngk57', 'en', 1, 'https://ror.org/055nngk57 Adaptive Sports Program of Ohio'),
(14351, 'https://ror.org/055qx1z79', 'en', 1, 'https://ror.org/055qx1z79 Chenango Health Network'),
(14352, 'https://ror.org/055rkqx35', 'no_lang_code', 1, 'https://ror.org/055rkqx35 Packed (Belgium)'),
(14353, 'https://ror.org/055syqv59', 'no_lang_code', 1, 'https://ror.org/055syqv59 Idronaut (Italy)'),
(14354, 'https://ror.org/055t3ez04', 'no_lang_code', 1, 'https://ror.org/055t3ez04 Zuken (United Kingdom)'),
(14355, 'https://ror.org/055vn4q66', 'en', 1, 'https://ror.org/055vn4q66 Cancer Survivor Center'),
(14356, 'https://ror.org/055vs2h16', 'en', 1, 'https://ror.org/055vs2h16 Nanotechnology Industries Association'),
(14357, 'https://ror.org/055werx92', 'no_lang_code', 1, 'https://ror.org/055werx92 Daiichi Sankyo (United States)'),
(14358, 'https://ror.org/055zrhj18', 'en', 1, 'https://ror.org/055zrhj18 European Research Consortium for Informatics and Mathematics'),
(14359, 'https://ror.org/056010s74', 'no_lang_code', 1, 'https://ror.org/056010s74 Polyphor (Switzerland)'),
(14360, 'https://ror.org/0560hct13', 'no_lang_code', 1, 'https://ror.org/0560hct13 Engineering Solutions International (Ireland)'),
(14361, 'https://ror.org/056185y51', 'no_lang_code', 1, 'https://ror.org/056185y51 Bouygues (France)'),
(14362, 'https://ror.org/056217264', 'en', 1, 'https://ror.org/056217264 Adesh Charitable Cancer Hospital'),
(14363, 'https://ror.org/0562bn695', 'no_lang_code', 1, 'https://ror.org/0562bn695 Aurelius AG (Germany)'),
(14364, 'https://ror.org/0562q1768', 'no_lang_code', 1, 'https://ror.org/0562q1768 NorthStar Cooperative (United States)'),
(14365, 'https://ror.org/0562tzd79', 'no_lang_code', 1, 'https://ror.org/0562tzd79 Rina Services (Italy)'),
(14366, 'https://ror.org/05631hq65', 'no_lang_code', 1, 'https://ror.org/05631hq65 Mira Telecom (Romania)'),
(14367, 'https://ror.org/056492z45', 'en', 1, 'https://ror.org/056492z45 Institute of Metal Science, Equipment and Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по металознание техника Šø технологии'),
(14368, 'https://ror.org/0565s2t44', 'en', 1, 'https://ror.org/0565s2t44 Al-Ghad International Health Sciences Colleges ŁƒŁ„ŁŠŲ§ŲŖ الغد Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲµŲ­ŁŠŲ©'),
(14369, 'https://ror.org/05668ct49', 'en', 1, 'https://ror.org/05668ct49 Blanchfield Army Community Hospital'),
(14370, 'https://ror.org/05678xp35', 'en', 1, 'https://ror.org/05678xp35 Iranian Homeopathic Association'),
(14371, 'https://ror.org/0569m7y93', 'no_lang_code', 1, 'https://ror.org/0569m7y93 Avalon Pharma (United States)'),
(14372, 'https://ror.org/056f7r884', 'en', 1, 'https://ror.org/056f7r884 Boy Scouts of America Greater New York Councils'),
(14373, 'https://ror.org/056fnew74', 'en', 1, 'https://ror.org/056fnew74 Discovery Center Museum'),
(14374, 'https://ror.org/056fv9b21', 'no_lang_code', 1, 'https://ror.org/056fv9b21 Orpro Therapeutics (United States)'),
(14375, 'https://ror.org/056h3fs04', 'no_lang_code', 1, 'https://ror.org/056h3fs04 Orbsen Therapeutics (Ireland)'),
(14376, 'https://ror.org/056m1n765', 'it', 1, 'https://ror.org/056m1n765 Istituto e Museo di Storia della Scienza, Museo Galileo'),
(14377, 'https://ror.org/056p4s391', 'en', 1, 'https://ror.org/056p4s391 New York Restoration Project'),
(14378, 'https://ror.org/056rz2k22', 'no_lang_code', 1, 'https://ror.org/056rz2k22 Ibs (France)'),
(14379, 'https://ror.org/056w2e349', 'en', 1, 'https://ror.org/056w2e349 Cancer Legal Care'),
(14380, 'https://ror.org/056x7d368', 'en', 1, 'https://ror.org/056x7d368 Stockholm Environment Institute'),
(14381, 'https://ror.org/056x8jc78', 'en', 1, 'https://ror.org/056x8jc78 New Americans Community Services'),
(14382, 'https://ror.org/056zz0q95', 'en', 1, 'https://ror.org/056zz0q95 American Academy of Otolaryngology — Head and Neck Surgery'),
(14383, 'https://ror.org/0570bna54', 'no_lang_code', 1, 'https://ror.org/0570bna54 Synelixis (Greece)'),
(14384, 'https://ror.org/0570tbq97', 'en', 1, 'https://ror.org/0570tbq97 Heritage Malta'),
(14385, 'https://ror.org/0571eed91', 'no_lang_code', 1, 'https://ror.org/0571eed91 Concentris (Germany)'),
(14386, 'https://ror.org/057204j60', 'en', 1, 'https://ror.org/057204j60 Center for Black Women’s Wellness'),
(14387, 'https://ror.org/0572r3k48', 'no_lang_code', 1, 'https://ror.org/0572r3k48 SBS CyberSecurity (United States)'),
(14388, 'https://ror.org/057321v51', 'no_lang_code', 1, 'https://ror.org/057321v51 Microbial Robotics (United States)'),
(14389, 'https://ror.org/05737wb92', 'no_lang_code', 1, 'https://ror.org/05737wb92 Isotest Engineering (Italy)'),
(14390, 'https://ror.org/0573tpn82', 'en', 1, 'https://ror.org/0573tpn82 Alive Hospice'),
(14391, 'https://ror.org/057528053', 'no_lang_code', 1, 'https://ror.org/057528053 Mergenet Medical (United States)'),
(14392, 'https://ror.org/0575dsf86', 'no_lang_code', 1, 'https://ror.org/0575dsf86 HyPerspectives (United States)'),
(14393, 'https://ror.org/05768zd89', 'no_lang_code', 1, 'https://ror.org/05768zd89 PolyOne (United States)'),
(14394, 'https://ror.org/057bd0236', 'no_lang_code', 1, 'https://ror.org/057bd0236 Promolding (Netherlands)'),
(14395, 'https://ror.org/057bq1s94', 'en', 1, 'https://ror.org/057bq1s94 Fullerton College'),
(14396, 'https://ror.org/057ch9j82', 'en', 1, 'https://ror.org/057ch9j82 Great Plains Tribal Chairmen’s Health Board'),
(14397, 'https://ror.org/057csh885', 'en', 1, 'https://ror.org/057csh885 Horizon Health Network'),
(14398, 'https://ror.org/057d3rj91', 'no_lang_code', 1, 'https://ror.org/057d3rj91 Arup Group (United Kingdom)'),
(14399, 'https://ror.org/057dz0532', 'en', 1, 'https://ror.org/057dz0532 Clonexpress'),
(14400, 'https://ror.org/057en1r98', 'no_lang_code', 1, 'https://ror.org/057en1r98 Composite Technology Development (United States)'),
(14401, 'https://ror.org/057hk3852', 'no_lang_code', 1, 'https://ror.org/057hk3852 Cooper Tire & Rubber Company (United States)'),
(14402, 'https://ror.org/057jahg02', 'en', 1, 'https://ror.org/057jahg02 Good Shepherd Rehabilitation'),
(14403, 'https://ror.org/057mcs327', 'no_lang_code', 1, 'https://ror.org/057mcs327 NeuroVigil (United States)'),
(14404, 'https://ror.org/057n0mb56', 'it', 1, 'https://ror.org/057n0mb56 Digital Renaissance Foundation Fondazione Rinascimento Digitale'),
(14405, 'https://ror.org/057swaw40', 'en', 1, 'https://ror.org/057swaw40 Cancer Resource Center of the Desert'),
(14406, 'https://ror.org/057ty7239', 'no_lang_code', 1, 'https://ror.org/057ty7239 Building and Civil Engineering Institute Gradbeni InŔtitut Zrmk d.o.o'),
(14407, 'https://ror.org/057xaw849', 'en', 1, 'https://ror.org/057xaw849 Cottage Health'),
(14408, 'https://ror.org/057xjcx32', 'en', 1, 'https://ror.org/057xjcx32 World Food Program USA'),
(14409, 'https://ror.org/057zzzn17', 'en', 1, 'https://ror.org/057zzzn17 El/La Para TransLatinas'),
(14410, 'https://ror.org/0583e1h59', 'no_lang_code', 1, 'https://ror.org/0583e1h59 Forum Virium (Finland)'),
(14411, 'https://ror.org/05853wp21', 'en', 1, 'https://ror.org/05853wp21 National Children''s Cancer Society'),
(14412, 'https://ror.org/0585jt080', 'no_lang_code', 1, 'https://ror.org/0585jt080 It’s The Journey'),
(14413, 'https://ror.org/05861s171', 'no_lang_code', 1, 'https://ror.org/05861s171 Cycloptics Technologies (United States)'),
(14414, 'https://ror.org/05863t818', 'no_lang_code', 1, 'https://ror.org/05863t818 Alstom (Sweden)'),
(14415, 'https://ror.org/058643s73', 'en', 1, 'https://ror.org/058643s73 Pachyonychia Congenita Project'),
(14416, 'https://ror.org/0586n3304', 'en', 1, 'https://ror.org/0586n3304 ARC Community Services'),
(14417, 'https://ror.org/0586tb181', 'en', 1, 'https://ror.org/0586tb181 Faith Equestrian Therapeutic Center'),
(14418, 'https://ror.org/0587waj50', 'no_lang_code', 1, 'https://ror.org/0587waj50 NEC Technologies (United Kingdom)'),
(14419, 'https://ror.org/0588ktq11', 'no_lang_code', 1, 'https://ror.org/0588ktq11 Stora Enso (Germany)'),
(14420, 'https://ror.org/0589fsc66', 'es', 1, 'https://ror.org/0589fsc66 Instituto Nacional del CƔncer'),
(14421, 'https://ror.org/058a2r903', 'it', 1, 'https://ror.org/058a2r903 Istituto Psicoanalitico per le Ricerche Sociali'),
(14422, 'https://ror.org/058a3rr87', 'no_lang_code', 1, 'https://ror.org/058a3rr87 Europe for Business'),
(14423, 'https://ror.org/058acxs86', 'en', 1, 'https://ror.org/058acxs86 Canine Companions for Independence'),
(14424, 'https://ror.org/058ajkv68', 'en', 1, 'https://ror.org/058ajkv68 United Nations Industrial Development Organization'),
(14425, 'https://ror.org/058c69y64', 'en', 1, 'https://ror.org/058c69y64 Museum of American Finance'),
(14426, 'https://ror.org/058css875', 'no_lang_code', 1, 'https://ror.org/058css875 Institut d''AssistĆØncia SanitĆ ria'),
(14427, 'https://ror.org/058d17a16', 'no_lang_code', 1, 'https://ror.org/058d17a16 Project Automation (Italy)'),
(14428, 'https://ror.org/058d1q741', 'en', 1, 'https://ror.org/058d1q741 The Green Scheme'),
(14429, 'https://ror.org/058dq7z75', 'en', 1, 'https://ror.org/058dq7z75 Catholic Charities of Northeast Kansas'),
(14430, 'https://ror.org/058dxr377', 'en', 1, 'https://ror.org/058dxr377 Florida Department of Juvenile Justice'),
(14431, 'https://ror.org/058dz5f86', 'en', 1, 'https://ror.org/058dz5f86 Thanksgiving Point'),
(14432, 'https://ror.org/058e2jz50', 'no_lang_code', 1, 'https://ror.org/058e2jz50 Publicis Groupe (Germany)'),
(14433, 'https://ror.org/058ekqj56', 'en', 1, 'https://ror.org/058ekqj56 Mountain Park Health Center'),
(14434, 'https://ror.org/058es3q19', 'no_lang_code', 1, 'https://ror.org/058es3q19 Cisco Systems (France)'),
(14435, 'https://ror.org/058g9xk41', 'fr', 1, 'https://ror.org/058g9xk41 Chambre de Commerce et d''Industrie de Bourgogne Franche-ComtƩ'),
(14436, 'https://ror.org/058gaxh79', 'en', 1, 'https://ror.org/058gaxh79 Experimental Station for the Food Preserving Industry Stazione Sperimentale per l’Industria delle Conserve Alimentari'),
(14437, 'https://ror.org/058gs5s26', 'en', 1, 'https://ror.org/058gs5s26 Cook County Health and Hospitals System'),
(14438, 'https://ror.org/058kybv57', 'en', 1, 'https://ror.org/058kybv57 Action Network'),
(14439, 'https://ror.org/058mdz444', 'en', 1, 'https://ror.org/058mdz444 Departamento de Educación de Nueva Jersey New Jersey Department of Education'),
(14440, 'https://ror.org/058mp2412', 'no_lang_code', 1, 'https://ror.org/058mp2412 KromaTiD (United States)'),
(14441, 'https://ror.org/058nnmf19', 'en', 1, 'https://ror.org/058nnmf19 Aware Girls'),
(14442, 'https://ror.org/058nsgg43', 'no_lang_code', 1, 'https://ror.org/058nsgg43 Integrated Radiological Services (United Kingdom)'),
(14443, 'https://ror.org/058qrep02', 'en', 1, 'https://ror.org/058qrep02 Hawaii Department of Business Economic Development and Tourism'),
(14444, 'https://ror.org/058wkc079', 'en', 1, 'https://ror.org/058wkc079 Cooper Clinic'),
(14445, 'https://ror.org/058xzat49', 'en', 1, 'https://ror.org/058xzat49 Max Planck Institute of Immunobiology and Epigenetics Max-Planck-Institut für Immunobiologie und Epigenetik'),
(14446, 'https://ror.org/05902ma20', 'no_lang_code', 1, 'https://ror.org/05902ma20 Gradient Biomodeling (United States)'),
(14447, 'https://ror.org/0592ykd44', 'no_lang_code', 1, 'https://ror.org/0592ykd44 Logimatic (Denmark)'),
(14448, 'https://ror.org/0593q3t13', 'en', 1, 'https://ror.org/0593q3t13 Prostate Cancer Prevention Foundation'),
(14449, 'https://ror.org/0593sjj19', 'no_lang_code', 1, 'https://ror.org/0593sjj19 EpaleX (United States)'),
(14450, 'https://ror.org/0593t7r22', 'en', 1, 'https://ror.org/0593t7r22 Latino Economic Development Center'),
(14451, 'https://ror.org/0594bad20', 'en', 1, 'https://ror.org/0594bad20 International Centre for Reproductive Health Kenya'),
(14452, 'https://ror.org/0594jva76', 'no_lang_code', 1, 'https://ror.org/0594jva76 Fumatech (Germany)'),
(14453, 'https://ror.org/0594s0e67', 'en', 1, 'https://ror.org/0594s0e67 Carolinas Healthcare System'),
(14454, 'https://ror.org/0594wvc02', 'no_lang_code', 1, 'https://ror.org/0594wvc02 Gühring (Germany)'),
(14455, 'https://ror.org/0596y7869', 'en', 1, 'https://ror.org/0596y7869 Necessities Bag'),
(14456, 'https://ror.org/05973ve37', 'en', 1, 'https://ror.org/05973ve37 Behavioral Health Services'),
(14457, 'https://ror.org/0597eqm76', 'de', 1, 'https://ror.org/0597eqm76 Bundesanstalt für Bergbauernfragen Federal Institute for Less-Favoured and Mountainous Areas'),
(14458, 'https://ror.org/0599afn45', 'en', 1, 'https://ror.org/0599afn45 Arkansas Spinal Cord Commission'),
(14459, 'https://ror.org/059ddw530', 'no_lang_code', 1, 'https://ror.org/059ddw530 IBS Precision Engineering (Netherlands)'),
(14460, 'https://ror.org/059e1y590', 'no_lang_code', 1, 'https://ror.org/059e1y590 Geoimaging (Cyprus)'),
(14461, 'https://ror.org/059gpqq33', 'en', 1, 'https://ror.org/059gpqq33 Edgar County Public Health Department'),
(14462, 'https://ror.org/059jv7160', 'en', 1, 'https://ror.org/059jv7160 Cornerstone Community Development Corporation'),
(14463, 'https://ror.org/059k3db98', 'en', 1, 'https://ror.org/059k3db98 Morton Plant Mease'),
(14464, 'https://ror.org/059rc1n32', 'en', 1, 'https://ror.org/059rc1n32 Medical City Dallas Hospital'),
(14465, 'https://ror.org/059re9458', 'en', 1, 'https://ror.org/059re9458 Professional Association of Therapeutic Horsemanship International'),
(14466, 'https://ror.org/059rk5f84', 'en', 1, 'https://ror.org/059rk5f84 North Carolina Zoo Society'),
(14467, 'https://ror.org/059skcg45', 'en', 1, 'https://ror.org/059skcg45 Horizon Behavioral Health'),
(14468, 'https://ror.org/059spgx09', 'no_lang_code', 1, 'https://ror.org/059spgx09 Alpha MOS (France)'),
(14469, 'https://ror.org/059wkzj26', 'nl', 1, 'https://ror.org/059wkzj26 Maastro Clinic'),
(14470, 'https://ror.org/059xcee45', 'en', 1, 'https://ror.org/059xcee45 Genesis Health System'),
(14471, 'https://ror.org/059xna953', 'no_lang_code', 1, 'https://ror.org/059xna953 Acclima (United States)'),
(14472, 'https://ror.org/059y4z581', 'no_lang_code', 1, 'https://ror.org/059y4z581 Semelab (United Kingdom)'),
(14473, 'https://ror.org/059yw8356', 'no_lang_code', 1, 'https://ror.org/059yw8356 ProActive Solutions (United States)'),
(14474, 'https://ror.org/059z7rw58', 'no_lang_code', 1, 'https://ror.org/059z7rw58 Astrobotic (United States)'),
(14475, 'https://ror.org/059zg8r51', 'en', 1, 'https://ror.org/059zg8r51 National Federation of the Blind'),
(14476, 'https://ror.org/05a19xw41', 'en', 1, 'https://ror.org/05a19xw41 Habitot Children''s Museum'),
(14477, 'https://ror.org/05a34gy67', 'no_lang_code', 1, 'https://ror.org/05a34gy67 Opsona Therapeutics (Ireland)'),
(14478, 'https://ror.org/05a3y1m41', 'en', 1, 'https://ror.org/05a3y1m41 Appalachian Sustainable Agriculture Project'),
(14479, 'https://ror.org/05a5d8x70', 'no_lang_code', 1, 'https://ror.org/05a5d8x70 Pharmidex (United Kingdom)'),
(14480, 'https://ror.org/05a6y6d35', 'en', 1, 'https://ror.org/05a6y6d35 Prayer of Faith International Ministries'),
(14481, 'https://ror.org/05a88n366', 'en', 1, 'https://ror.org/05a88n366 Alliance of Health Organizations'),
(14482, 'https://ror.org/05ac9wt58', 'no_lang_code', 1, 'https://ror.org/05ac9wt58 Wiser Systems (United States)'),
(14483, 'https://ror.org/05accys62', 'no_lang_code', 1, 'https://ror.org/05accys62 Tetronics (United Kingdom)'),
(14484, 'https://ror.org/05acrxx45', 'en', 1, 'https://ror.org/05acrxx45 Broward Health'),
(14485, 'https://ror.org/05acvka91', 'no_lang_code', 1, 'https://ror.org/05acvka91 ViaCyte (United States)'),
(14486, 'https://ror.org/05af39960', 'en', 1, 'https://ror.org/05af39960 Gillen Brewer School'),
(14487, 'https://ror.org/05af63f35', 'no_lang_code', 1, 'https://ror.org/05af63f35 Almende (Netherlands)'),
(14488, 'https://ror.org/05agqdj52', 'en', 1, 'https://ror.org/05agqdj52 Touch the Future'),
(14489, 'https://ror.org/05ahayt71', 'en', 1, 'https://ror.org/05ahayt71 Good Shepherd Food Bank'),
(14490, 'https://ror.org/05ahs5p53', 'no_lang_code', 1, 'https://ror.org/05ahs5p53 Brandywine Photonics (United States)'),
(14491, 'https://ror.org/05an4ky72', 'en', 1, 'https://ror.org/05an4ky72 Backbones'),
(14492, 'https://ror.org/05arrjj36', 'en', 1, 'https://ror.org/05arrjj36 Federation of Animal Science Societies'),
(14493, 'https://ror.org/05ashvr51', 'no_lang_code', 1, 'https://ror.org/05ashvr51 Cosmo Pharmaceuticals (Italy)'),
(14494, 'https://ror.org/05av82888', 'en', 1, 'https://ror.org/05av82888 New Mexico Cancer Center Foundation'),
(14495, 'https://ror.org/05ax4es29', 'en', 1, 'https://ror.org/05ax4es29 The Hospice of Baton Rouge'),
(14496, 'https://ror.org/05b04nk22', 'en', 1, 'https://ror.org/05b04nk22 Truly Living Well'),
(14497, 'https://ror.org/05b0r1408', 'no_lang_code', 1, 'https://ror.org/05b0r1408 RHP Technology (Austria)'),
(14498, 'https://ror.org/05b1dm808', 'no_lang_code', 1, 'https://ror.org/05b1dm808 Vattenfall (Germany)'),
(14499, 'https://ror.org/05b1wed79', 'en', 1, 'https://ror.org/05b1wed79 Cancer Foundation for Life'),
(14500, 'https://ror.org/05b2gms10', 'en', 1, 'https://ror.org/05b2gms10 International Breast Cancer Study Group'),
(14501, 'https://ror.org/05b3zn620', 'no_lang_code', 1, 'https://ror.org/05b3zn620 Biomedal (Spain)'),
(14502, 'https://ror.org/05b4fr068', 'en', 1, 'https://ror.org/05b4fr068 Iyengar Yoga Association of Greater New York'),
(14503, 'https://ror.org/05b5v0n31', 'en', 1, 'https://ror.org/05b5v0n31 Salinas Valley Memorial Healthcare System'),
(14504, 'https://ror.org/05b76jx43', 'en', 1, 'https://ror.org/05b76jx43 Consumers for Affordable Health Care'),
(14505, 'https://ror.org/05b88kk95', 'no_lang_code', 1, 'https://ror.org/05b88kk95 Imerys (Switzerland)'),
(14506, 'https://ror.org/05b8r6069', 'en', 1, 'https://ror.org/05b8r6069 Autistic Women & Nonbinary Network'),
(14507, 'https://ror.org/05bamms85', 'it', 1, 'https://ror.org/05bamms85 Parco Tecnologico Padano'),
(14508, 'https://ror.org/05bbwmf37', 'no_lang_code', 1, 'https://ror.org/05bbwmf37 Wastewater Compliance Systems (United States)'),
(14509, 'https://ror.org/05bdw2t94', 'no_lang_code', 1, 'https://ror.org/05bdw2t94 Industrieanlagen Betriebsgesellschaft (Germany)'),
(14510, 'https://ror.org/05bdznr21', 'no_lang_code', 1, 'https://ror.org/05bdznr21 PlasmaChem (Germany)'),
(14511, 'https://ror.org/05bdzte56', 'no_lang_code', 1, 'https://ror.org/05bdzte56 Issy Media (France)'),
(14512, 'https://ror.org/05bggyp09', 'en', 1, 'https://ror.org/05bggyp09 Lenoir–Rhyne University'),
(14513, 'https://ror.org/05bj02613', 'en', 1, 'https://ror.org/05bj02613 Myrovlytis Trust'),
(14514, 'https://ror.org/05br4cc69', 'no_lang_code', 1, 'https://ror.org/05br4cc69 AkzoNobel (United Kingdom)'),
(14515, 'https://ror.org/05bsjqt55', 'no_lang_code', 1, 'https://ror.org/05bsjqt55 Philips (Belgium)'),
(14516, 'https://ror.org/05bvn1m61', 'no_lang_code', 1, 'https://ror.org/05bvn1m61 Avaya (Germany)'),
(14517, 'https://ror.org/05bw8ek06', 'en', 1, 'https://ror.org/05bw8ek06 Innovation To End Neglected Diseases'),
(14518, 'https://ror.org/05bwzbr45', 'no_lang_code', 1, 'https://ror.org/05bwzbr45 Tetracore (United States)'),
(14519, 'https://ror.org/05by9p696', 'no_lang_code', 1, 'https://ror.org/05by9p696 HansaBioMed (Estonia)'),
(14520, 'https://ror.org/05c1evx63', 'no_lang_code', 1, 'https://ror.org/05c1evx63 Arcadia Biosciences (United States)'),
(14521, 'https://ror.org/05c35qx73', 'en', 1, 'https://ror.org/05c35qx73 Cisco And Cisco Productions'),
(14522, 'https://ror.org/05c3j0k11', 'en', 1, 'https://ror.org/05c3j0k11 CORE Foundation'),
(14523, 'https://ror.org/05c4aed35', 'no_lang_code', 1, 'https://ror.org/05c4aed35 MediTox (Czechia)'),
(14524, 'https://ror.org/05c4ary91', 'en', 1, 'https://ror.org/05c4ary91 Clinton Bush Haiti Fund'),
(14525, 'https://ror.org/05c6nxg16', 'en', 1, 'https://ror.org/05c6nxg16 St. Mary''s Medical Center'),
(14526, 'https://ror.org/05c79g497', 'no_lang_code', 1, 'https://ror.org/05c79g497 Cookson-Clal (France)'),
(14527, 'https://ror.org/05cb44d17', 'no_lang_code', 1, 'https://ror.org/05cb44d17 Trivector (Sweden)'),
(14528, 'https://ror.org/05cdper96', 'no_lang_code', 1, 'https://ror.org/05cdper96 IMGENEX India (India)'),
(14529, 'https://ror.org/05ckqx151', 'en', 1, 'https://ror.org/05ckqx151 Integris Health'),
(14530, 'https://ror.org/05ctn5s75', 'it', 1, 'https://ror.org/05ctn5s75 Iter'),
(14531, 'https://ror.org/05cvht873', 'en', 1, 'https://ror.org/05cvht873 Professional Tutors of America'),
(14532, 'https://ror.org/05cwdqs42', 'en', 1, 'https://ror.org/05cwdqs42 Human Rights Watch'),
(14533, 'https://ror.org/05cwssc79', 'en', 1, 'https://ror.org/05cwssc79 Chai Lifeline'),
(14534, 'https://ror.org/05cwy4x70', 'en', 1, 'https://ror.org/05cwy4x70 European Genetics Foundation'),
(14535, 'https://ror.org/05cyed441', 'en', 1, 'https://ror.org/05cyed441 Pacific Center for Human Growth'),
(14536, 'https://ror.org/05d021z60', 'no_lang_code', 1, 'https://ror.org/05d021z60 Technolution (Netherlands)'),
(14537, 'https://ror.org/05d2zbe90', 'en', 1, 'https://ror.org/05d2zbe90 National Research Center for Maternal and Child Health Ана мен бала ұлттық ғылыми орталығы'),
(14538, 'https://ror.org/05d3dxa83', 'en', 1, 'https://ror.org/05d3dxa83 National Office of Samoan Affairs'),
(14539, 'https://ror.org/05d3xvm78', 'en', 1, 'https://ror.org/05d3xvm78 Newark Academy'),
(14540, 'https://ror.org/05d43rg85', 'no_lang_code', 1, 'https://ror.org/05d43rg85 IT Consult'),
(14541, 'https://ror.org/05d4eba54', 'en', 1, 'https://ror.org/05d4eba54 Goodman Community Center'),
(14542, 'https://ror.org/05d4jgp54', 'en', 1, 'https://ror.org/05d4jgp54 Evaluations and Language resources Distribution Agency'),
(14543, 'https://ror.org/05d6hsa78', 'en', 1, 'https://ror.org/05d6hsa78 Museum of Modern Art'),
(14544, 'https://ror.org/05d87j665', 'en', 1, 'https://ror.org/05d87j665 Historic House Trust'),
(14545, 'https://ror.org/05d9wka04', 'no_lang_code', 1, 'https://ror.org/05d9wka04 Mellitech (France)'),
(14546, 'https://ror.org/05dap4b42', 'en', 1, 'https://ror.org/05dap4b42 Kids Konnected'),
(14547, 'https://ror.org/05ddnsp63', 'no_lang_code', 1, 'https://ror.org/05ddnsp63 Long Branch Company (United States)'),
(14548, 'https://ror.org/05ddvge76', 'en', 1, 'https://ror.org/05ddvge76 Hispanic Scholarship Fund'),
(14549, 'https://ror.org/05dgy4t92', 'en', 1, 'https://ror.org/05dgy4t92 Seminole Public Schools'),
(14550, 'https://ror.org/05dkgpr24', 'no_lang_code', 1, 'https://ror.org/05dkgpr24 Roma Servizi per la MobilitĆ  (Italy)'),
(14551, 'https://ror.org/05dmj1t18', 'no_lang_code', 1, 'https://ror.org/05dmj1t18 Akashi Therapeutics (United States)'),
(14552, 'https://ror.org/05dmrvx33', 'no_lang_code', 1, 'https://ror.org/05dmrvx33 Microchips Biotech (United States)'),
(14553, 'https://ror.org/05dngkv23', 'no_lang_code', 1, 'https://ror.org/05dngkv23 Neurochlore (France)'),
(14554, 'https://ror.org/05dqa1196', 'no_lang_code', 1, 'https://ror.org/05dqa1196 CIM-mes Project (Poland)'),
(14555, 'https://ror.org/05dt0hn88', 'no_lang_code', 1, 'https://ror.org/05dt0hn88 Orange (Poland)'),
(14556, 'https://ror.org/05dv2tx94', 'no_lang_code', 1, 'https://ror.org/05dv2tx94 PricewaterhouseCoopers (France)'),
(14557, 'https://ror.org/05dw6vm13', 'no_lang_code', 1, 'https://ror.org/05dw6vm13 Kids ''n Kamp'),
(14558, 'https://ror.org/05dwc3j90', 'no_lang_code', 1, 'https://ror.org/05dwc3j90 Alkor Bio (Russia)'),
(14559, 'https://ror.org/05dxexe52', 'en', 1, 'https://ror.org/05dxexe52 Tennessee Department of Agriculture'),
(14560, 'https://ror.org/05dy6te41', 'en', 1, 'https://ror.org/05dy6te41 Nursing Mothers Counsel'),
(14561, 'https://ror.org/05dybt340', 'en', 1, 'https://ror.org/05dybt340 Centre de Recherches sur les Communications Canada Communications Research Centre Canada'),
(14562, 'https://ror.org/05dz2h194', 'en', 1, 'https://ror.org/05dz2h194 International Association of Wildland Fire'),
(14563, 'https://ror.org/05e040g53', 'en', 1, 'https://ror.org/05e040g53 British Columbia Mobility Opportunities Society'),
(14564, 'https://ror.org/05e08p639', 'no_lang_code', 1, 'https://ror.org/05e08p639 Algosystems (Greece)'),
(14565, 'https://ror.org/05e3thx24', 'no_lang_code', 1, 'https://ror.org/05e3thx24 Andarix Pharmaceuticals (United States)'),
(14566, 'https://ror.org/05e4cgj50', 'no_lang_code', 1, 'https://ror.org/05e4cgj50 PNO Consultants (United Kingdom)'),
(14567, 'https://ror.org/05e5x5788', 'en', 1, 'https://ror.org/05e5x5788 Holzer Heritage Foundation'),
(14568, 'https://ror.org/05e6jng70', 'en', 1, 'https://ror.org/05e6jng70 Office National de l''Eau Potable'),
(14569, 'https://ror.org/05e75yx66', 'en', 1, 'https://ror.org/05e75yx66 Slovenian Environment Agency'),
(14570, 'https://ror.org/05e7jge28', 'no_lang_code', 1, 'https://ror.org/05e7jge28 Gevo (United States)'),
(14571, 'https://ror.org/05ea9vw65', 'no_lang_code', 1, 'https://ror.org/05ea9vw65 ApeX Therapeutics (United States)'),
(14572, 'https://ror.org/05eb99a58', 'fr', 1, 'https://ror.org/05eb99a58 Centre technique de l''Industrie HorlogĆØre'),
(14573, 'https://ror.org/05edwfq62', 'no_lang_code', 1, 'https://ror.org/05edwfq62 Dynniq (Netherlands)'),
(14574, 'https://ror.org/05eermw75', 'no_lang_code', 1, 'https://ror.org/05eermw75 Arbonaut (Finland)'),
(14575, 'https://ror.org/05ef3nj70', 'es', 1, 'https://ror.org/05ef3nj70 Centro Uruguayo de ImagenologĆ­a Molecular'),
(14576, 'https://ror.org/05eh8vk50', 'en', 1, 'https://ror.org/05eh8vk50 Hope HealthCare Services'),
(14577, 'https://ror.org/05ehfjt50', 'no_lang_code', 1, 'https://ror.org/05ehfjt50 General Electric (Italy)'),
(14578, 'https://ror.org/05ejsxx38', 'en', 1, 'https://ror.org/05ejsxx38 Florida Center for Change'),
(14579, 'https://ror.org/05ekq4672', 'en', 1, 'https://ror.org/05ekq4672 Manovikas Kendra Rehabilitation and Research Institute'),
(14580, 'https://ror.org/05en24r36', 'sl', 1, 'https://ror.org/05en24r36 Chamber of Commerce and Industry of Slovenia Gospodarska zbornica Slovenije'),
(14581, 'https://ror.org/05eq90j91', 'no_lang_code', 1, 'https://ror.org/05eq90j91 SocietĆ  Generale d''Informatica Sogei (Italy)'),
(14582, 'https://ror.org/05ethgq25', 'en', 1, 'https://ror.org/05ethgq25 East Bay Asian Youth Center'),
(14583, 'https://ror.org/05etneg75', 'en', 1, 'https://ror.org/05etneg75 Conrad Foundation'),
(14584, 'https://ror.org/05evayb02', 'en', 1, 'https://ror.org/05evayb02 Baruch S. Blumberg Institute'),
(14585, 'https://ror.org/05evc8s02', 'no_lang_code', 1, 'https://ror.org/05evc8s02 Publicis Groupe (Switzerland)'),
(14586, 'https://ror.org/05ew68y43', 'no_lang_code', 1, 'https://ror.org/05ew68y43 Norner (Norway)'),
(14587, 'https://ror.org/05ewbqm54', 'en', 1, 'https://ror.org/05ewbqm54 Community Health Center'),
(14588, 'https://ror.org/05eygvb62', 'en', 1, 'https://ror.org/05eygvb62 Future Generations University'),
(14589, 'https://ror.org/05f08j617', 'no_lang_code', 1, 'https://ror.org/05f08j617 TE Connectivity (Netherlands)'),
(14590, 'https://ror.org/05f0p1d39', 'en', 1, 'https://ror.org/05f0p1d39 Griffith Observatory'),
(14591, 'https://ror.org/05f19wy41', 'no_lang_code', 1, 'https://ror.org/05f19wy41 Igan Biosciences (United States)'),
(14592, 'https://ror.org/05f1at452', 'en', 1, 'https://ror.org/05f1at452 Community Service Society'),
(14593, 'https://ror.org/05f3x9v03', 'en', 1, 'https://ror.org/05f3x9v03 Greenovate! Europe'),
(14594, 'https://ror.org/05f50w156', 'en', 1, 'https://ror.org/05f50w156 Texas State Technical College West Texas'),
(14595, 'https://ror.org/05f6pr134', 'no_lang_code', 1, 'https://ror.org/05f6pr134 TeliaSonera (Finland)'),
(14596, 'https://ror.org/05f9w5178', 'en', 1, 'https://ror.org/05f9w5178 Friends-4-Cures'),
(14597, 'https://ror.org/05fa04208', 'it', 1, 'https://ror.org/05fa04208 Fondazione Humanitas per la Ricerca'),
(14598, 'https://ror.org/05fata852', 'no_lang_code', 1, 'https://ror.org/05fata852 Crile Carvey Consulting'),
(14599, 'https://ror.org/05fd2ah98', 'no_lang_code', 1, 'https://ror.org/05fd2ah98 BioPlastic Polymers and Composites (United States)'),
(14600, 'https://ror.org/05fd2ss89', 'en', 1, 'https://ror.org/05fd2ss89 Chronic Condition Information Network'),
(14601, 'https://ror.org/05fd42690', 'no_lang_code', 1, 'https://ror.org/05fd42690 Huron (France)'),
(14602, 'https://ror.org/05ffh9f12', 'en', 1, 'https://ror.org/05ffh9f12 Bay Area Outreach and Recreation Program'),
(14603, 'https://ror.org/05ffr8x96', 'en', 1, 'https://ror.org/05ffr8x96 Kidney Cancer Association'),
(14604, 'https://ror.org/05fg03x56', 'no_lang_code', 1, 'https://ror.org/05fg03x56 Optibase (Israel)'),
(14605, 'https://ror.org/05fhfxg73', 'en', 1, 'https://ror.org/05fhfxg73 Portland Fruit Tree Project'),
(14606, 'https://ror.org/05fkp1h83', 'en', 1, 'https://ror.org/05fkp1h83 Los Angeles LGBT Center'),
(14607, 'https://ror.org/05fm74681', 'no_lang_code', 1, 'https://ror.org/05fm74681 CIRCA Group Europe (Ireland)'),
(14608, 'https://ror.org/05fn46j05', 'no_lang_code', 1, 'https://ror.org/05fn46j05 Expression Drug Designs (United States)'),
(14609, 'https://ror.org/05fpayd96', 'no_lang_code', 1, 'https://ror.org/05fpayd96 Bioproximity (United States)'),
(14610, 'https://ror.org/05ftj4678', 'en', 1, 'https://ror.org/05ftj4678 Southampton City Council'),
(14611, 'https://ror.org/05fvbe809', 'en', 1, 'https://ror.org/05fvbe809 Youth+Tech+Health'),
(14612, 'https://ror.org/05fvp9283', 'en', 1, 'https://ror.org/05fvp9283 Health Care Without Harm'),
(14613, 'https://ror.org/05fw3gc88', 'no_lang_code', 1, 'https://ror.org/05fw3gc88 Balance Therapeutics (United States)'),
(14614, 'https://ror.org/05fw8c280', 'no_lang_code', 1, 'https://ror.org/05fw8c280 Istituto per le Piante da Legno e l''Ambiente'),
(14615, 'https://ror.org/05fxhx251', 'en', 1, 'https://ror.org/05fxhx251 Adaptations Glassware Cooperative'),
(14616, 'https://ror.org/05fxs5677', 'en', 1, 'https://ror.org/05fxs5677 Maui Economic Development Board'),
(14617, 'https://ror.org/05fynv140', 'no_lang_code', 1, 'https://ror.org/05fynv140 Transelectrica (Romania)'),
(14618, 'https://ror.org/05fz3ff46', 'no_lang_code', 1, 'https://ror.org/05fz3ff46 SynTouch (United States)'),
(14619, 'https://ror.org/05g35d951', 'en', 1, 'https://ror.org/05g35d951 LifeBridge Health'),
(14620, 'https://ror.org/05g3bg079', 'en', 1, 'https://ror.org/05g3bg079 KU Endowment'),
(14621, 'https://ror.org/05g3rdv23', 'en', 1, 'https://ror.org/05g3rdv23 Waipa Foundation'),
(14622, 'https://ror.org/05g4yrw83', 'en', 1, 'https://ror.org/05g4yrw83 International Society for Technology in Education'),
(14623, 'https://ror.org/05g6deb76', 'en', 1, 'https://ror.org/05g6deb76 Doctors Without Borders, Médecins Sans Frontières'),
(14624, 'https://ror.org/05g718r89', 'en', 1, 'https://ror.org/05g718r89 Nationalities Service Center'),
(14625, 'https://ror.org/05g8ngg39', 'en', 1, 'https://ror.org/05g8ngg39 Lideres Campesinas'),
(14626, 'https://ror.org/05gaksk83', 'en', 1, 'https://ror.org/05gaksk83 Elucid Bioimaging'),
(14627, 'https://ror.org/05gbak870', 'no_lang_code', 1, 'https://ror.org/05gbak870 Malthe Winje (Norway)'),
(14628, 'https://ror.org/05gbftj13', 'en', 1, 'https://ror.org/05gbftj13 Orange County Asian Pacific Islander Community Alliance'),
(14629, 'https://ror.org/05gc2z195', 'en', 1, 'https://ror.org/05gc2z195 North Carolina Virtual Public School'),
(14630, 'https://ror.org/05gcat543', 'no_lang_code', 1, 'https://ror.org/05gcat543 Barco (Belgium)'),
(14631, 'https://ror.org/05gd75v11', 'en', 1, 'https://ror.org/05gd75v11 Council of Southeast Pennsylvania'),
(14632, 'https://ror.org/05gh85146', 'no_lang_code', 1, 'https://ror.org/05gh85146 Arctik'),
(14633, 'https://ror.org/05gj5j117', 'pt', 1, 'https://ror.org/05gj5j117 Fundação Bio Rio'),
(14634, 'https://ror.org/05gjjzd22', 'en', 1, 'https://ror.org/05gjjzd22 Settlement Music School'),
(14635, 'https://ror.org/05gkngk42', 'no_lang_code', 1, 'https://ror.org/05gkngk42 Elastopoli (Finland)'),
(14636, 'https://ror.org/05gmzxx11', 'no_lang_code', 1, 'https://ror.org/05gmzxx11 Grupo ACS (Spain)'),
(14637, 'https://ror.org/05gp52j69', 'en', 1, 'https://ror.org/05gp52j69 Friends of Cancer Research'),
(14638, 'https://ror.org/05grd6s28', 'en', 1, 'https://ror.org/05grd6s28 South East European Research Centre'),
(14639, 'https://ror.org/05gx58798', 'no_lang_code', 1, 'https://ror.org/05gx58798 Ridge Quest (United States)'),
(14640, 'https://ror.org/05gypt250', 'sl', 1, 'https://ror.org/05gypt250 Giz-Grozd Plasttehnika Plasttechnics Cluster Slovenia'),
(14641, 'https://ror.org/05gztep63', 'no_lang_code', 1, 'https://ror.org/05gztep63 Top 10 Produce (United States)'),
(14642, 'https://ror.org/05h034e74', 'no_lang_code', 1, 'https://ror.org/05h034e74 ApoVax (United States)'),
(14643, 'https://ror.org/05h2tck38', 'en', 1, 'https://ror.org/05h2tck38 Misty Meadows Mitey Riders'),
(14644, 'https://ror.org/05h2v9w40', 'en', 1, 'https://ror.org/05h2v9w40 Tri-State Wheelchair Athletic Association'),
(14645, 'https://ror.org/05h3xnp91', 'en', 1, 'https://ror.org/05h3xnp91 Fondy Food Center'),
(14646, 'https://ror.org/05h4fw740', 'no_lang_code', 1, 'https://ror.org/05h4fw740 Promoter (Italy)'),
(14647, 'https://ror.org/05h5atq78', 'en', 1, 'https://ror.org/05h5atq78 Northeast Regional Cancer Institute'),
(14648, 'https://ror.org/05h5kva18', 'no_lang_code', 1, 'https://ror.org/05h5kva18 Saarbrücken Stadtwerke (Germany)'),
(14649, 'https://ror.org/05h72ek27', 'no_lang_code', 1, 'https://ror.org/05h72ek27 AFRY (Finland)'),
(14650, 'https://ror.org/05h7q5t87', 'en', 1, 'https://ror.org/05h7q5t87 Odyssey of the Mind'),
(14651, 'https://ror.org/05h8dpx23', 'no_lang_code', 1, 'https://ror.org/05h8dpx23 RWE (Germany) Rheinisch-WestfƤlisches ElektrizitƤtswerk Aktiengesellschaft Rhine-Westfalia Electricity Factory'),
(14652, 'https://ror.org/05hamyn96', 'en', 1, 'https://ror.org/05hamyn96 Ventura County Health Care Agency'),
(14653, 'https://ror.org/05haqd335', 'en', 1, 'https://ror.org/05haqd335 Research Advocacy Network'),
(14654, 'https://ror.org/05hbp5640', 'en', 1, 'https://ror.org/05hbp5640 McDonough County Health Department'),
(14655, 'https://ror.org/05hcs6w28', 'no_lang_code', 1, 'https://ror.org/05hcs6w28 Transman Consulting for Transport System Management'),
(14656, 'https://ror.org/05hevd194', 'no_lang_code', 1, 'https://ror.org/05hevd194 Ekodoma (Latvia)'),
(14657, 'https://ror.org/05hfcd350', 'no_lang_code', 1, 'https://ror.org/05hfcd350 Pall Corporation (Germany)'),
(14658, 'https://ror.org/05hfrjt79', 'en', 1, 'https://ror.org/05hfrjt79 Partners Asia'),
(14659, 'https://ror.org/05hgfrp57', 'no_lang_code', 1, 'https://ror.org/05hgfrp57 Machining Centers Manufacturing (Italy)'),
(14660, 'https://ror.org/05hhhbf86', 'en', 1, 'https://ror.org/05hhhbf86 Arabkir Joint Medical Center Ō±Ö€Õ”Õ¢ÕÆÕ«Ö€ Ō²ÕŖÕ·ÕÆÕ”ÕÆÕ”Õ¶ Õ€Õ”Õ“Õ”Õ¬Õ«Ö€'),
(14661, 'https://ror.org/05hkma334', 'no_lang_code', 1, 'https://ror.org/05hkma334 MAN (Germany)'),
(14662, 'https://ror.org/05hkpph68', 'no_lang_code', 1, 'https://ror.org/05hkpph68 Imagination Computer Services (Austria)'),
(14663, 'https://ror.org/05hnp8y26', 'en', 1, 'https://ror.org/05hnp8y26 ARC of Oswego County'),
(14664, 'https://ror.org/05hp2t033', 'no_lang_code', 1, 'https://ror.org/05hp2t033 Lufthansa (Germany) Lufthansa German Airlines'),
(14665, 'https://ror.org/05hpthj59', 'en', 1, 'https://ror.org/05hpthj59 Demoiselle 2 Femme'),
(14666, 'https://ror.org/05hpvgy54', 'no_lang_code', 1, 'https://ror.org/05hpvgy54 Lindgren Pitman (United States)'),
(14667, 'https://ror.org/05hsp8041', 'no_lang_code', 1, 'https://ror.org/05hsp8041 PatientsLikeMe (United States)'),
(14668, 'https://ror.org/05htnwe41', 'no_lang_code', 1, 'https://ror.org/05htnwe41 ANALYSIS System Research High-Tech (Greece)'),
(14669, 'https://ror.org/05hwnvh42', 'en', 1, 'https://ror.org/05hwnvh42 Midwest Wheelchair Sport and Social Club'),
(14670, 'https://ror.org/05hxqtt35', 'en', 1, 'https://ror.org/05hxqtt35 Citymeals on Wheels'),
(14671, 'https://ror.org/05hz2w230', 'en', 1, 'https://ror.org/05hz2w230 Kenya Forestry Research Institute'),
(14672, 'https://ror.org/05j066y09', 'en', 1, 'https://ror.org/05j066y09 Hunstad Kortesis Bharti Cosmetic Surgery'),
(14673, 'https://ror.org/05j2ppz60', 'en', 1, 'https://ror.org/05j2ppz60 Chest Medicine Associates'),
(14674, 'https://ror.org/05j3gb586', 'en', 1, 'https://ror.org/05j3gb586 Friend for Life'),
(14675, 'https://ror.org/05j5w4198', 'en', 1, 'https://ror.org/05j5w4198 Hillsborough Jr. Raiders'),
(14676, 'https://ror.org/05j8hrz32', 'no_lang_code', 1, 'https://ror.org/05j8hrz32 Infinite Enzymes (United States)'),
(14677, 'https://ror.org/05j9nj980', 'no_lang_code', 1, 'https://ror.org/05j9nj980 Rebexsess (United States)'),
(14678, 'https://ror.org/05jb7h445', 'en', 1, 'https://ror.org/05jb7h445 County of Sonoma Department of Health Services'),
(14679, 'https://ror.org/05jc7nb82', 'en', 1, 'https://ror.org/05jc7nb82 Hungarian Meteorological Service OrszÔgos Meteorológiai SzolgÔlat'),
(14680, 'https://ror.org/05jfpn078', 'no_lang_code', 1, 'https://ror.org/05jfpn078 Türk Otomobil Fabrikası (Turkey)'),
(14681, 'https://ror.org/05jh18x93', 'en', 1, 'https://ror.org/05jh18x93 National Commission on Teaching and America’s Future'),
(14682, 'https://ror.org/05jhng925', 'en', 1, 'https://ror.org/05jhng925 Water Resources Research Centre'),
(14683, 'https://ror.org/05jjek176', 'en', 1, 'https://ror.org/05jjek176 Hospice Austin'),
(14684, 'https://ror.org/05jkpmg51', 'en', 1, 'https://ror.org/05jkpmg51 Navajo Technical University'),
(14685, 'https://ror.org/05jnac203', 'no_lang_code', 1, 'https://ror.org/05jnac203 Anaxomics (Spain)'),
(14686, 'https://ror.org/05jpe9382', 'en', 1, 'https://ror.org/05jpe9382 Pleasant Hill Community Center'),
(14687, 'https://ror.org/05jr9m050', 'en', 1, 'https://ror.org/05jr9m050 Boston Health Care for the Homeless Program'),
(14688, 'https://ror.org/05jwzx688', 'en', 1, 'https://ror.org/05jwzx688 Governor''s Institute on Substance Abuse'),
(14689, 'https://ror.org/05jy4qt42', 'en', 1, 'https://ror.org/05jy4qt42 CSUF Auxiliary Services'),
(14690, 'https://ror.org/05jy9ww07', 'no_lang_code', 1, 'https://ror.org/05jy9ww07 Semilab (Hungary)'),
(14691, 'https://ror.org/05jz46060', 'no_lang_code', 1, 'https://ror.org/05jz46060 Koninklijke Philips Philips (France)'),
(14692, 'https://ror.org/05jzrgd89', 'en', 1, 'https://ror.org/05jzrgd89 European Federation of Animal Science Europäische Vereinigung für Tierproduktion Federazione Europea di Zootecnia Fédération Européenne de Zootechnie'),
(14693, 'https://ror.org/05k0fdc49', 'en', 1, 'https://ror.org/05k0fdc49 Oxfam America'),
(14694, 'https://ror.org/05k0mz263', 'en', 1, 'https://ror.org/05k0mz263 CARE of Southeastern Michigan'),
(14695, 'https://ror.org/05k321e68', 'no_lang_code', 1, 'https://ror.org/05k321e68 Bnoat Oncology (United States)'),
(14696, 'https://ror.org/05k4ema52', 'fr', 1, 'https://ror.org/05k4ema52 Institut de Pharmacologie MolƩculaire et Cellulaire Institute of Molecular and Cellular Pharmacology'),
(14697, 'https://ror.org/05k4pxb23', 'no_lang_code', 1, 'https://ror.org/05k4pxb23 Nitrate Elimination Company (United States)'),
(14698, 'https://ror.org/05k7ts633', 'no_lang_code', 1, 'https://ror.org/05k7ts633 Advanced Neural Dynamics (United States)'),
(14699, 'https://ror.org/05k9wtr55', 'en', 1, 'https://ror.org/05k9wtr55 Berklee College of Music'),
(14700, 'https://ror.org/05kbqyj25', 'no_lang_code', 1, 'https://ror.org/05kbqyj25 Saladax Biomedical (United States)'),
(14701, 'https://ror.org/05kbsdg78', 'en', 1, 'https://ror.org/05kbsdg78 African Women''s Cancer Awareness Association'),
(14702, 'https://ror.org/05kc7vw19', 'no_lang_code', 1, 'https://ror.org/05kc7vw19 SociƩtƩs Anonyme Belge de Constructions AƩronautiques (Belgium)'),
(14703, 'https://ror.org/05kcy9z49', 'no_lang_code', 1, 'https://ror.org/05kcy9z49 Norddeutsche Pflanzenzucht Hans-Georg Lembke (Germany)'),
(14704, 'https://ror.org/05key9153', 'no_lang_code', 1, 'https://ror.org/05key9153 Ratier Figeac (France)'),
(14705, 'https://ror.org/05kfq2558', 'no_lang_code', 1, 'https://ror.org/05kfq2558 Sonaca (Belgium)'),
(14706, 'https://ror.org/05kjm8921', 'no_lang_code', 1, 'https://ror.org/05kjm8921 Ecorys (Netherlands)'),
(14707, 'https://ror.org/05kkrdt60', 'en', 1, 'https://ror.org/05kkrdt60 Hebrew Health Care'),
(14708, 'https://ror.org/05kmb8d23', 'en', 1, 'https://ror.org/05kmb8d23 Community Partners'),
(14709, 'https://ror.org/05kp9q024', 'en', 1, 'https://ror.org/05kp9q024 Robeson Community College'),
(14710, 'https://ror.org/05kqhkc03', 'en', 1, 'https://ror.org/05kqhkc03 Alaska Center for Children and Adults'),
(14711, 'https://ror.org/05kqphm40', 'en', 1, 'https://ror.org/05kqphm40 Hope in Bloom'),
(14712, 'https://ror.org/05kqz6183', 'en', 1, 'https://ror.org/05kqz6183 Leukaemia Foundation of Queensland'),
(14713, 'https://ror.org/05kscmd46', 'en', 1, 'https://ror.org/05kscmd46 National Organization for Disorders of the Corpus Callosum');
INSERT INTO `rors` VALUES
(14714, 'https://ror.org/05kw00716', 'de', 1, 'https://ror.org/05kw00716 Institut für Mikroelektronik Stuttgart'),
(14715, 'https://ror.org/05kw2hj64', 'en', 1, 'https://ror.org/05kw2hj64 Maritime and Coastguard Agency'),
(14716, 'https://ror.org/05kwxr504', 'en', 1, 'https://ror.org/05kwxr504 Home Free Home'),
(14717, 'https://ror.org/05kx0fh55', 'no_lang_code', 1, 'https://ror.org/05kx0fh55 Clemessy (France) Eiffage Ɖnergie SystĆØmes - Clemessy'),
(14718, 'https://ror.org/05kxkhq65', 'no_lang_code', 1, 'https://ror.org/05kxkhq65 Syntax (Italy)'),
(14719, 'https://ror.org/05kxtq558', 'en', 1, 'https://ror.org/05kxtq558 Institut für Molekulare Biologie Institute of Molecular Biology'),
(14720, 'https://ror.org/05kxyr105', 'no_lang_code', 1, 'https://ror.org/05kxyr105 Spinverse (Finland)'),
(14721, 'https://ror.org/05kywb567', 'en', 1, 'https://ror.org/05kywb567 Yellowstone Ecological Research Center'),
(14722, 'https://ror.org/05m13z628', 'no_lang_code', 1, 'https://ror.org/05m13z628 Phenotype Screening Corporation (United States)'),
(14723, 'https://ror.org/05m1tqb62', 'en', 1, 'https://ror.org/05m1tqb62 Youth Farm'),
(14724, 'https://ror.org/05m2c7461', 'it', 1, 'https://ror.org/05m2c7461 Centro Studi Luca d’Agliano'),
(14725, 'https://ror.org/05m45td34', 'no_lang_code', 1, 'https://ror.org/05m45td34 Aaranya Biosciences (India)'),
(14726, 'https://ror.org/05m4e6y57', 'en', 1, 'https://ror.org/05m4e6y57 Cleveland Cord Blood Center'),
(14727, 'https://ror.org/05m5has32', 'es', 1, 'https://ror.org/05m5has32 Fundación para la Formación e Investigación Sanitarias de la Región de Murcia'),
(14728, 'https://ror.org/05m6rcv15', 'no_lang_code', 1, 'https://ror.org/05m6rcv15 Abingdon Health (United Kingdom)'),
(14729, 'https://ror.org/05m6rdh46', 'en', 1, 'https://ror.org/05m6rdh46 Microfinance and Community Development Institute'),
(14730, 'https://ror.org/05m753j61', 'en', 1, 'https://ror.org/05m753j61 The African-American Historical & Cultural Museum of the SJV'),
(14731, 'https://ror.org/05m866204', 'no_lang_code', 1, 'https://ror.org/05m866204 Iquadrat (Spain)'),
(14732, 'https://ror.org/05m8ec563', 'en', 1, 'https://ror.org/05m8ec563 All Russia Petroleum Research Exploration Institute Всероссийский Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ геологоразвеГочный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(14733, 'https://ror.org/05m92h626', 'en', 1, 'https://ror.org/05m92h626 Partnership Schools'),
(14734, 'https://ror.org/05md78f75', 'en', 1, 'https://ror.org/05md78f75 ACT for Multiple Sclerosis'),
(14735, 'https://ror.org/05mdqv554', 'en', 1, 'https://ror.org/05mdqv554 Tilth Alliance'),
(14736, 'https://ror.org/05memys52', 'en', 1, 'https://ror.org/05memys52 Austrian Research Centre for Forests Bundesforschungs- und Ausbildungszentrum für Wald, Naturgefahren und Landschaft'),
(14737, 'https://ror.org/05mggr586', 'en', 1, 'https://ror.org/05mggr586 Executive Frameworks'),
(14738, 'https://ror.org/05mgm0j54', 'no_lang_code', 1, 'https://ror.org/05mgm0j54 RTD Talos (Cyprus)'),
(14739, 'https://ror.org/05mhfjj63', 'de', 1, 'https://ror.org/05mhfjj63 Milchwirtschaftliche Untersuchungs- und Versuchsanstalt Kempten'),
(14740, 'https://ror.org/05mknav37', 'en', 1, 'https://ror.org/05mknav37 International Paralympic Committee Internationales Paralympisches Komitee'),
(14741, 'https://ror.org/05mm21816', 'en', 1, 'https://ror.org/05mm21816 Advocacy Alliance Center of Texas'),
(14742, 'https://ror.org/05mpz8404', 'no_lang_code', 1, 'https://ror.org/05mpz8404 Bwcon (Germany)'),
(14743, 'https://ror.org/05mq12850', 'no_lang_code', 1, 'https://ror.org/05mq12850 Neste Oil (Finland) Neste Oyj'),
(14744, 'https://ror.org/05mq65528', 'en', 1, 'https://ror.org/05mq65528 Fundación MD Anderson Cancer Center España MD Anderson Cancer Center Madrid'),
(14745, 'https://ror.org/05mtv6b69', 'en', 1, 'https://ror.org/05mtv6b69 Ivy Hill Therapeutic Equestrian Center'),
(14746, 'https://ror.org/05mtvr411', 'en', 1, 'https://ror.org/05mtvr411 Austin Children''s Chest Associates'),
(14747, 'https://ror.org/05mvea908', 'en', 1, 'https://ror.org/05mvea908 Total Learning Research Institute'),
(14748, 'https://ror.org/05mw3nb06', 'no_lang_code', 1, 'https://ror.org/05mw3nb06 Judex (Denmark)'),
(14749, 'https://ror.org/05mw8jn36', 'en', 1, 'https://ror.org/05mw8jn36 Excelsior College'),
(14750, 'https://ror.org/05mwahg17', 'no_lang_code', 1, 'https://ror.org/05mwahg17 Engineered Compost Systems (United States)'),
(14751, 'https://ror.org/05mwcb123', 'en', 1, 'https://ror.org/05mwcb123 European Biomass Industry Association'),
(14752, 'https://ror.org/05mwscs77', 'no_lang_code', 1, 'https://ror.org/05mwscs77 ABB (Italy)'),
(14753, 'https://ror.org/05mwsq745', 'no_lang_code', 1, 'https://ror.org/05mwsq745 Oticon (Denmark)'),
(14754, 'https://ror.org/05mytgs27', 'no_lang_code', 1, 'https://ror.org/05mytgs27 Biospherical Instruments (United States)'),
(14755, 'https://ror.org/05n4g7v16', 'en', 1, 'https://ror.org/05n4g7v16 Indian Nations Conservation Alliance'),
(14756, 'https://ror.org/05n597h70', 'en', 1, 'https://ror.org/05n597h70 Native Americans for Community Action'),
(14757, 'https://ror.org/05n6y2c30', 'en', 1, 'https://ror.org/05n6y2c30 Pioneer Network'),
(14758, 'https://ror.org/05n8mee18', 'en', 1, 'https://ror.org/05n8mee18 AIDS Healthcare Foundation'),
(14759, 'https://ror.org/05n8xke20', 'en', 1, 'https://ror.org/05n8xke20 Dialogik (Germany)'),
(14760, 'https://ror.org/05na31d57', 'no_lang_code', 1, 'https://ror.org/05na31d57 Applied Colloids (United States)'),
(14761, 'https://ror.org/05nc4q646', 'fr', 1, 'https://ror.org/05nc4q646 Charbonnages de France'),
(14762, 'https://ror.org/05neag745', 'en', 1, 'https://ror.org/05neag745 Life Sciences Research Partners'),
(14763, 'https://ror.org/05nebqj51', 'en', 1, 'https://ror.org/05nebqj51 Community Service Council'),
(14764, 'https://ror.org/05ng8fg61', 'no_lang_code', 1, 'https://ror.org/05ng8fg61 Invent Baltics'),
(14765, 'https://ror.org/05ngknq10', 'no_lang_code', 1, 'https://ror.org/05ngknq10 JN Biosciences (United States)'),
(14766, 'https://ror.org/05nh5td39', 'no_lang_code', 1, 'https://ror.org/05nh5td39 Nokia (Germany)'),
(14767, 'https://ror.org/05njyag92', 'en', 1, 'https://ror.org/05njyag92 Academy of Science of Turkmenistan ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŠøŠø'),
(14768, 'https://ror.org/05nmnr071', 'en', 1, 'https://ror.org/05nmnr071 Infrared Breast Health'),
(14769, 'https://ror.org/05nmnwa45', 'en', 1, 'https://ror.org/05nmnwa45 Ministry of Communications and Information Technology'),
(14770, 'https://ror.org/05nqms590', 'no_lang_code', 1, 'https://ror.org/05nqms590 SENTECH Instruments (Germany)'),
(14771, 'https://ror.org/05nsscv85', 'en', 1, 'https://ror.org/05nsscv85 Red Feather Development Group'),
(14772, 'https://ror.org/05nv29j63', 'no_lang_code', 1, 'https://ror.org/05nv29j63 EveryStep'),
(14773, 'https://ror.org/05nvmrj72', 'no_lang_code', 1, 'https://ror.org/05nvmrj72 BioAge (Italy)'),
(14774, 'https://ror.org/05nym7d38', 'no_lang_code', 1, 'https://ror.org/05nym7d38 Future Analytics'),
(14775, 'https://ror.org/05p0m5765', 'en', 1, 'https://ror.org/05p0m5765 Georgia Organics'),
(14776, 'https://ror.org/05p26gw61', 'en', 1, 'https://ror.org/05p26gw61 Department of Health and Human Services'),
(14777, 'https://ror.org/05p2frj96', 'en', 1, 'https://ror.org/05p2frj96 Borough of Leonia'),
(14778, 'https://ror.org/05p4evs57', 'en', 1, 'https://ror.org/05p4evs57 Eesti Kultuuriministeerium Ministry of Culture'),
(14779, 'https://ror.org/05p52rc54', 'en', 1, 'https://ror.org/05p52rc54 National Eating Disorders Association'),
(14780, 'https://ror.org/05p556071', 'en', 1, 'https://ror.org/05p556071 Morningside College'),
(14781, 'https://ror.org/05p630g07', 'en', 1, 'https://ror.org/05p630g07 Colegio Comunitario de Laredo Laredo Community College'),
(14782, 'https://ror.org/05p6m4w34', 'no_lang_code', 1, 'https://ror.org/05p6m4w34 Heat Biologics (United States)'),
(14783, 'https://ror.org/05p7whk93', 'en', 1, 'https://ror.org/05p7whk93 Energy Therapies Alliance of Central Illinois'),
(14784, 'https://ror.org/05p9y3e72', 'en', 1, 'https://ror.org/05p9y3e72 Schneider Children''s Hospital'),
(14785, 'https://ror.org/05patbw61', 'en', 1, 'https://ror.org/05patbw61 Individual Differences'),
(14786, 'https://ror.org/05patmk97', 'en', 1, 'https://ror.org/05patmk97 Institute for Chemical and Physical Processes Istituto per i Processi Chimico Fisici'),
(14787, 'https://ror.org/05pbtbr30', 'no_lang_code', 1, 'https://ror.org/05pbtbr30 SpaceTec Partners'),
(14788, 'https://ror.org/05pd7nw13', 'en', 1, 'https://ror.org/05pd7nw13 European Organisation for Security'),
(14789, 'https://ror.org/05pda6j27', 'en', 1, 'https://ror.org/05pda6j27 Korean Resource Center'),
(14790, 'https://ror.org/05pdk8j26', 'en', 1, 'https://ror.org/05pdk8j26 Northern California Regional Land Trust'),
(14791, 'https://ror.org/05pfyvd35', 'no_lang_code', 1, 'https://ror.org/05pfyvd35 HyGear (Netherlands)'),
(14792, 'https://ror.org/05pgmcc48', 'no_lang_code', 1, 'https://ror.org/05pgmcc48 Nokia (Austria)'),
(14793, 'https://ror.org/05pjy6894', 'no_lang_code', 1, 'https://ror.org/05pjy6894 Mary’s Center'),
(14794, 'https://ror.org/05pkbct74', 'no_lang_code', 1, 'https://ror.org/05pkbct74 Funk Production (Denmark)'),
(14795, 'https://ror.org/05pmyqf04', 'en', 1, 'https://ror.org/05pmyqf04 Angel Foundation'),
(14796, 'https://ror.org/05pnr2f39', 'pt', 1, 'https://ror.org/05pnr2f39 Associação Ilumina'),
(14797, 'https://ror.org/05ppske48', 'no_lang_code', 1, 'https://ror.org/05ppske48 Invercon (United States)'),
(14798, 'https://ror.org/05ppten54', 'en', 1, 'https://ror.org/05ppten54 Genesys Hurley Cancer Institute'),
(14799, 'https://ror.org/05pq9tk67', 'no_lang_code', 1, 'https://ror.org/05pq9tk67 Exergy (United Kingdom)'),
(14800, 'https://ror.org/05pqs7520', 'en', 1, 'https://ror.org/05pqs7520 National Capital Baptist Convention'),
(14801, 'https://ror.org/05prc0a24', 'no_lang_code', 1, 'https://ror.org/05prc0a24 Europus'),
(14802, 'https://ror.org/05pssxv84', 'en', 1, 'https://ror.org/05pssxv84 Aloha Medical Mission'),
(14803, 'https://ror.org/05ptnwm30', 'en', 1, 'https://ror.org/05ptnwm30 ETA-Florence Renewable Energies'),
(14804, 'https://ror.org/05pvq8q22', 'no_lang_code', 1, 'https://ror.org/05pvq8q22 Acumen Pharmaceuticals (United States)'),
(14805, 'https://ror.org/05pw5zy84', 'no_lang_code', 1, 'https://ror.org/05pw5zy84 Science and Technology Corporation (United States)'),
(14806, 'https://ror.org/05py5he32', 'en', 1, 'https://ror.org/05py5he32 Catholic Charities of the Archdiocese of Chicago'),
(14807, 'https://ror.org/05pyc3h39', 'en', 1, 'https://ror.org/05pyc3h39 Institute of Atomic Energy Instytut Energii Atomowej'),
(14808, 'https://ror.org/05q0b6266', 'no_lang_code', 1, 'https://ror.org/05q0b6266 Lombardia Informatica (Italy)'),
(14809, 'https://ror.org/05q34ws54', 'en', 1, 'https://ror.org/05q34ws54 Moveable Feast'),
(14810, 'https://ror.org/05q43r729', 'no_lang_code', 1, 'https://ror.org/05q43r729 Swarco (Germany)'),
(14811, 'https://ror.org/05q4r7x36', 'no_lang_code', 1, 'https://ror.org/05q4r7x36 Armadillo Aerospace (United States)'),
(14812, 'https://ror.org/05q5snp60', 'en', 1, 'https://ror.org/05q5snp60 St. Luke''s Cystic Fibrosis Center of Idaho'),
(14813, 'https://ror.org/05q7scn65', 'no_lang_code', 1, 'https://ror.org/05q7scn65 MKmetric (Germany)'),
(14814, 'https://ror.org/05q9j8881', 'no_lang_code', 1, 'https://ror.org/05q9j8881 Aquaculture Systems Technologies (United States)'),
(14815, 'https://ror.org/05q9yze82', 'en', 1, 'https://ror.org/05q9yze82 Institute of Neurobiology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š½ŠµŠ²Ń€Š¾Š±ŠøŠ¾Š»Š¾Š³ŠøŃ'),
(14816, 'https://ror.org/05qa20027', 'no_lang_code', 1, 'https://ror.org/05qa20027 Enide Solutions (Spain)'),
(14817, 'https://ror.org/05qa6yx98', 'no_lang_code', 1, 'https://ror.org/05qa6yx98 Novavax (Sweden)'),
(14818, 'https://ror.org/05qap2184', 'no_lang_code', 1, 'https://ror.org/05qap2184 ActoGeniX (Belgium)'),
(14819, 'https://ror.org/05qbngc87', 'en', 1, 'https://ror.org/05qbngc87 Ashby House'),
(14820, 'https://ror.org/05qcgr122', 'en', 1, 'https://ror.org/05qcgr122 Native American Kennels'),
(14821, 'https://ror.org/05qe3gd58', 'en', 1, 'https://ror.org/05qe3gd58 Dipartimento Federale dell''Interno DƩpartement fƩdƩral de l''intƩrieur Eidgenƶssisches Departement des Innern Federal Department of Home Affairs'),
(14822, 'https://ror.org/05qfbhd78', 'no_lang_code', 1, 'https://ror.org/05qfbhd78 Piaggio Aerospace (Italy)'),
(14823, 'https://ror.org/05qjv8h52', 'en', 1, 'https://ror.org/05qjv8h52 Artistic Realization Technologies'),
(14824, 'https://ror.org/05qp1m760', 'en', 1, 'https://ror.org/05qp1m760 Hurdle Jumpers'),
(14825, 'https://ror.org/05qps5a28', 'it', 1, 'https://ror.org/05qps5a28 Istituto Zooprofilattico Sperimentale del Piemonte Liguria e Valle d''Aosta'),
(14826, 'https://ror.org/05qrhgs40', 'en', 1, 'https://ror.org/05qrhgs40 Korean Community Service Center of Greater Washington'),
(14827, 'https://ror.org/05qtmfe82', 'no_lang_code', 1, 'https://ror.org/05qtmfe82 Latitude Pharmaceuticals (United States)'),
(14828, 'https://ror.org/05qwb1j70', 'en', 1, 'https://ror.org/05qwb1j70 European Virtual Institute for Integrated Risk Management'),
(14829, 'https://ror.org/05qwb3m66', 'en', 1, 'https://ror.org/05qwb3m66 Celebration Stem Cell Centre'),
(14830, 'https://ror.org/05qwgjf62', 'en', 1, 'https://ror.org/05qwgjf62 Pulmonary and Critical Care Associates'),
(14831, 'https://ror.org/05qwqv243', 'en', 1, 'https://ror.org/05qwqv243 Rebuilding All Goals Efficiently'),
(14832, 'https://ror.org/05qxcfy37', 'et', 1, 'https://ror.org/05qxcfy37 Eesti RahvusringhƤƤling Estonian Public Broadcasting'),
(14833, 'https://ror.org/05qxj8k61', 'en', 1, 'https://ror.org/05qxj8k61 Glynwood'),
(14834, 'https://ror.org/05r2sf328', 'no_lang_code', 1, 'https://ror.org/05r2sf328 Valerion Therapeutics (United States)'),
(14835, 'https://ror.org/05r3h7k61', 'en', 1, 'https://ror.org/05r3h7k61 Sustainable Europe Research Institute'),
(14836, 'https://ror.org/05r4ryw44', 'en', 1, 'https://ror.org/05r4ryw44 Baylor Scott and White Hillcrest Medical Center'),
(14837, 'https://ror.org/05r5g1w07', 'en', 1, 'https://ror.org/05r5g1w07 Pennsylvania Center For Intuitive Studies'),
(14838, 'https://ror.org/05r7x8h86', 'no_lang_code', 1, 'https://ror.org/05r7x8h86 Imaginary (Italy)'),
(14839, 'https://ror.org/05r7zv414', 'en', 1, 'https://ror.org/05r7zv414 Fonds des Nations Unies pour l''Enfance United Nations Children''s Fund Canada'),
(14840, 'https://ror.org/05r9by079', 'en', 1, 'https://ror.org/05r9by079 San Mateo County Health System'),
(14841, 'https://ror.org/05rasm086', 'no_lang_code', 1, 'https://ror.org/05rasm086 T4tech (Italy)'),
(14842, 'https://ror.org/05rb2ch24', 'en', 1, 'https://ror.org/05rb2ch24 National Sports Center for the Disabled'),
(14843, 'https://ror.org/05rcrh741', 'de', 1, 'https://ror.org/05rcrh741 BioMed zet Life Science'),
(14844, 'https://ror.org/05rdaxs90', 'no_lang_code', 1, 'https://ror.org/05rdaxs90 HydroBio (United States)'),
(14845, 'https://ror.org/05rfemm41', 'no_lang_code', 1, 'https://ror.org/05rfemm41 Radiotelevisione Italiana (Italy)'),
(14846, 'https://ror.org/05rg3k287', 'en', 1, 'https://ror.org/05rg3k287 International Mathematical Union'),
(14847, 'https://ror.org/05rg5kc24', 'en', 1, 'https://ror.org/05rg5kc24 Nutritional Oncology Research Institute'),
(14848, 'https://ror.org/05rg8s453', 'no_lang_code', 1, 'https://ror.org/05rg8s453 Laser Scan Engineering (United Kingdom)'),
(14849, 'https://ror.org/05rgw8m46', 'no_lang_code', 1, 'https://ror.org/05rgw8m46 Efficient Pharma Management (Taiwan)'),
(14850, 'https://ror.org/05rj6k491', 'en', 1, 'https://ror.org/05rj6k491 California Health Collaborative'),
(14851, 'https://ror.org/05rn4h878', 'no_lang_code', 1, 'https://ror.org/05rn4h878 Siemens (Spain)'),
(14852, 'https://ror.org/05rqavg73', 'no_lang_code', 1, 'https://ror.org/05rqavg73 Dassault SystĆØmes (Canada)'),
(14853, 'https://ror.org/05rrkws98', 'no_lang_code', 1, 'https://ror.org/05rrkws98 Euroconsultants (Greece)'),
(14854, 'https://ror.org/05rsdpj72', 'no_lang_code', 1, 'https://ror.org/05rsdpj72 Indus Business Systems (India) ą°‡ą°‚ą°”ą°øą± ą°¬ą°æą°œą°æą°Øą±†ą°øą± ą°øą°æą°øą±ą°Ÿą°®ą±ą°øą± ą°²ą°æą°®ą°æą°Ÿą±†ą°”ą±'),
(14855, 'https://ror.org/05rtjs925', 'no_lang_code', 1, 'https://ror.org/05rtjs925 Ekahau (Finland)'),
(14856, 'https://ror.org/05rvv6a54', 'en', 1, 'https://ror.org/05rvv6a54 Columbus Community Clinical Oncology Program'),
(14857, 'https://ror.org/05rwq6592', 'en', 1, 'https://ror.org/05rwq6592 The First Republican Clinical Hospital of the Ministry of Health of the Udmurt Republic ŠŸŠµŃ€Š²Š°Ń Ń€ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠ¾Š¹ Республики'),
(14858, 'https://ror.org/05rxdtg07', 'no_lang_code', 1, 'https://ror.org/05rxdtg07 BioCrea (Germany)'),
(14859, 'https://ror.org/05ry19w12', 'no_lang_code', 1, 'https://ror.org/05ry19w12 Cofely (Switzerland)'),
(14860, 'https://ror.org/05rynnb36', 'fr', 1, 'https://ror.org/05rynnb36 National Telecommunications Network for Technology, Education and Research Renater, RƩseau National de TƩlƩcommunications pour la Technologie, l''Enseignement et la Recherche'),
(14861, 'https://ror.org/05rzqb565', 'en', 1, 'https://ror.org/05rzqb565 Port of Rotterdam Authority'),
(14862, 'https://ror.org/05s0g1g46', 'en', 1, 'https://ror.org/05s0g1g46 National Research Foundation'),
(14863, 'https://ror.org/05s171n88', 'en', 1, 'https://ror.org/05s171n88 Premier Health Care'),
(14864, 'https://ror.org/05s1gzc45', 'en', 1, 'https://ror.org/05s1gzc45 Central Florida Pulmonary Group'),
(14865, 'https://ror.org/05s1xw009', 'en', 1, 'https://ror.org/05s1xw009 Fogarty Institute for Innovation'),
(14866, 'https://ror.org/05s3s9p98', 'en', 1, 'https://ror.org/05s3s9p98 Saturday Academy'),
(14867, 'https://ror.org/05s49hg54', 'no_lang_code', 1, 'https://ror.org/05s49hg54 Cross-Linked Enzyme Aggregates Technologies (Netherlands)'),
(14868, 'https://ror.org/05s7a1377', 'it', 1, 'https://ror.org/05s7a1377 Centro Ceramico Bologna'),
(14869, 'https://ror.org/05sa17k06', 'no_lang_code', 1, 'https://ror.org/05sa17k06 Roth and Rau (Germany)'),
(14870, 'https://ror.org/05sbcvy11', 'en', 1, 'https://ror.org/05sbcvy11 Massachusetts Compassionate Care Coalition'),
(14871, 'https://ror.org/05sbsdq46', 'no_lang_code', 1, 'https://ror.org/05sbsdq46 Institut Mikroelektronických Aplikací (Czechia)'),
(14872, 'https://ror.org/05scb3e57', 'no_lang_code', 1, 'https://ror.org/05scb3e57 Paradigm Shift Therapeutics (United States)'),
(14873, 'https://ror.org/05scg1q91', 'en', 1, 'https://ror.org/05scg1q91 Samaritan Health Services'),
(14874, 'https://ror.org/05sdm2149', 'no_lang_code', 1, 'https://ror.org/05sdm2149 Applied Biomics (United States)'),
(14875, 'https://ror.org/05sdy1b47', 'en', 1, 'https://ror.org/05sdy1b47 Interactive Technology Software and Media Association'),
(14876, 'https://ror.org/05se9te27', 'no_lang_code', 1, 'https://ror.org/05se9te27 Searchlight Sensors (United States)'),
(14877, 'https://ror.org/05sggp397', 'en', 1, 'https://ror.org/05sggp397 HealthPoint Communications'),
(14878, 'https://ror.org/05sgqz436', 'no_lang_code', 1, 'https://ror.org/05sgqz436 Process Design Center (Netherlands)'),
(14879, 'https://ror.org/05sh1yn13', 'no_lang_code', 1, 'https://ror.org/05sh1yn13 PFA Consulting (United States)'),
(14880, 'https://ror.org/05sjffw91', 'en', 1, 'https://ror.org/05sjffw91 Encompass Health Rehabilitation Hospital of Tinton Falls'),
(14881, 'https://ror.org/05sn2rv43', 'no_lang_code', 1, 'https://ror.org/05sn2rv43 Robert Miller Consulting'),
(14882, 'https://ror.org/05spbxe41', 'no_lang_code', 1, 'https://ror.org/05spbxe41 Gamma Remote Sensing (Switzerland)'),
(14883, 'https://ror.org/05spr2d45', 'no_lang_code', 1, 'https://ror.org/05spr2d45 Ricardo AEA (Germany)'),
(14884, 'https://ror.org/05srkg434', 'en', 1, 'https://ror.org/05srkg434 Farm Safety For Just Kids'),
(14885, 'https://ror.org/05sw0m628', 'en', 1, 'https://ror.org/05sw0m628 Hoag Orthopedic Institute'),
(14886, 'https://ror.org/05sxn9j28', 'en', 1, 'https://ror.org/05sxn9j28 Coalition For A Safe Environment'),
(14887, 'https://ror.org/05sxxz166', 'no_lang_code', 1, 'https://ror.org/05sxxz166 Novamont (Italy)'),
(14888, 'https://ror.org/05syweh23', 'no_lang_code', 1, 'https://ror.org/05syweh23 Semafora Systems (Germany)'),
(14889, 'https://ror.org/05t041s05', 'no_lang_code', 1, 'https://ror.org/05t041s05 Ariadna (Spain)'),
(14890, 'https://ror.org/05t1dq444', 'en', 1, 'https://ror.org/05t1dq444 Supreme Court of Virginia'),
(14891, 'https://ror.org/05t4n0c27', 'en', 1, 'https://ror.org/05t4n0c27 Georgi Nadjakov Institute of Solid State Physics Георги ŠŠ°Š“жаков Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по физика на Ń‚Š²ŃŠŃ€Š“Š¾Ń‚Š¾'),
(14892, 'https://ror.org/05t6jk967', 'de', 1, 'https://ror.org/05t6jk967 Competence Centre for Electrochemical Surface Technology Kompetenzzentrum für elektrochemische Oberflächentechnologie'),
(14893, 'https://ror.org/05t6zq805', 'pl', 1, 'https://ror.org/05t6zq805 Centrum Techniki Okrętowej Ship Design and Research Centre'),
(14894, 'https://ror.org/05t72y326', 'en', 1, 'https://ror.org/05t72y326 Australasian Leukaemia and Lymphoma Group'),
(14895, 'https://ror.org/05t7rnh97', 'en', 1, 'https://ror.org/05t7rnh97 Asthma and Allergy Specialists'),
(14896, 'https://ror.org/05t86hn44', 'no_lang_code', 1, 'https://ror.org/05t86hn44 InSpark Technologies (United States)'),
(14897, 'https://ror.org/05t918q20', 'en', 1, 'https://ror.org/05t918q20 Northeastern School District'),
(14898, 'https://ror.org/05t9rkr85', 'en', 1, 'https://ror.org/05t9rkr85 Cancer Support Team'),
(14899, 'https://ror.org/05tahaz79', 'en', 1, 'https://ror.org/05tahaz79 Ministry of Education, Science and Sport'),
(14900, 'https://ror.org/05tcf2984', 'en', 1, 'https://ror.org/05tcf2984 Joliet Area Community Hospice'),
(14901, 'https://ror.org/05tfemw78', 'no_lang_code', 1, 'https://ror.org/05tfemw78 Evoleo Technologies (Portugal)'),
(14902, 'https://ror.org/05tff2467', 'en', 1, 'https://ror.org/05tff2467 Natural Resources Defense Council'),
(14903, 'https://ror.org/05tg9b144', 'no_lang_code', 1, 'https://ror.org/05tg9b144 MSM Protein Technologies (United States)'),
(14904, 'https://ror.org/05th36r26', 'en', 1, 'https://ror.org/05th36r26 Majlis Kanser Nasional National Cancer Council Malaysia'),
(14905, 'https://ror.org/05th81a29', 'no_lang_code', 1, 'https://ror.org/05th81a29 TE Laboratories (Ireland)'),
(14906, 'https://ror.org/05tjn7t69', 'en', 1, 'https://ror.org/05tjn7t69 European Association of Craft, Small and Medium-Sized Enterprises'),
(14907, 'https://ror.org/05tkzae94', 'en', 1, 'https://ror.org/05tkzae94 National Women in Agriculture Association'),
(14908, 'https://ror.org/05tmpbz04', 'en', 1, 'https://ror.org/05tmpbz04 Creative Aging Network-NC'),
(14909, 'https://ror.org/05tn2bq24', 'en', 1, 'https://ror.org/05tn2bq24 Lewisham and Greenwich NHS Trust'),
(14910, 'https://ror.org/05tns7243', 'en', 1, 'https://ror.org/05tns7243 Action for Autism'),
(14911, 'https://ror.org/05tns8e08', 'en', 1, 'https://ror.org/05tns8e08 Neurology Specialists of Monmouth County'),
(14912, 'https://ror.org/05tpne661', 'no_lang_code', 1, 'https://ror.org/05tpne661 Laviosa Minerals (Italy)'),
(14913, 'https://ror.org/05tqewv36', 'no_lang_code', 1, 'https://ror.org/05tqewv36 Tecnaro (Germany)'),
(14914, 'https://ror.org/05tqsj653', 'en', 1, 'https://ror.org/05tqsj653 Family Health Options Kenya'),
(14915, 'https://ror.org/05tqy0n53', 'no_lang_code', 1, 'https://ror.org/05tqy0n53 TeliaSonera (Sweden)'),
(14916, 'https://ror.org/05tve6796', 'no_lang_code', 1, 'https://ror.org/05tve6796 Cybion (Italy)'),
(14917, 'https://ror.org/05tw37d72', 'en', 1, 'https://ror.org/05tw37d72 St. Mary''s Health System'),
(14918, 'https://ror.org/05txx3b87', 'fr', 1, 'https://ror.org/05txx3b87 Centre Technique des Industries AƩrauliques et Thermiques'),
(14919, 'https://ror.org/05tynn421', 'no_lang_code', 1, 'https://ror.org/05tynn421 Progenitor Cell Therapy (United States)'),
(14920, 'https://ror.org/05v2b6f63', 'en', 1, 'https://ror.org/05v2b6f63 Forum des Laboratoires nationaux Europeens de Recherche Routiere Forum of European National Highway Research Laboratories'),
(14921, 'https://ror.org/05v6eh043', 'en', 1, 'https://ror.org/05v6eh043 Eastern Maine Healthcare Systems'),
(14922, 'https://ror.org/05v6nmh25', 'no_lang_code', 1, 'https://ror.org/05v6nmh25 Heartspring'),
(14923, 'https://ror.org/05v8mff05', 'en', 1, 'https://ror.org/05v8mff05 Children''s Specialized Hospital'),
(14924, 'https://ror.org/05ve3t520', 'no_lang_code', 1, 'https://ror.org/05ve3t520 Intelligence for Environment and Security (Italy)'),
(14925, 'https://ror.org/05vee8b45', 'no_lang_code', 1, 'https://ror.org/05vee8b45 Kuehnle AgroSystems (United States)'),
(14926, 'https://ror.org/05vf2js71', 'no_lang_code', 1, 'https://ror.org/05vf2js71 Brookes Bell (United Kingdom)'),
(14927, 'https://ror.org/05vgc9608', 'en', 1, 'https://ror.org/05vgc9608 Guilford County Schools'),
(14928, 'https://ror.org/05vhqss82', 'en', 1, 'https://ror.org/05vhqss82 Internet Memory Foundation'),
(14929, 'https://ror.org/05vj0gw61', 'no_lang_code', 1, 'https://ror.org/05vj0gw61 EntreChem (Spain)'),
(14930, 'https://ror.org/05vjdx283', 'en', 1, 'https://ror.org/05vjdx283 CGS Group'),
(14931, 'https://ror.org/05vksh612', 'en', 1, 'https://ror.org/05vksh612 Neuro Assistance Foundation'),
(14932, 'https://ror.org/05vpgt980', 'en', 1, 'https://ror.org/05vpgt980 European Network of Living Labs'),
(14933, 'https://ror.org/05vpwgn30', 'en', 1, 'https://ror.org/05vpwgn30 ICLEI - Local Governments for Sustainability'),
(14934, 'https://ror.org/05vq3sw48', 'en', 1, 'https://ror.org/05vq3sw48 Breathe California of Sacramento Emigrant Trails'),
(14935, 'https://ror.org/05vq5je50', 'nl', 1, 'https://ror.org/05vq5je50 East Netherlands Development Agency Ontwikkelingsmaatschappij Oost Nederland'),
(14936, 'https://ror.org/05vrepm87', 'en', 1, 'https://ror.org/05vrepm87 Bergen Catholic High School'),
(14937, 'https://ror.org/05vsymj75', 'en', 1, 'https://ror.org/05vsymj75 Mayland Community College'),
(14938, 'https://ror.org/05vwbz082', 'en', 1, 'https://ror.org/05vwbz082 German Dutch Wind Tunnels'),
(14939, 'https://ror.org/05vwzkh77', 'en', 1, 'https://ror.org/05vwzkh77 National LGBT Cancer Network'),
(14940, 'https://ror.org/05vzfb740', 'en', 1, 'https://ror.org/05vzfb740 European Smart Card Industry Association'),
(14941, 'https://ror.org/05w0e5x87', 'no_lang_code', 1, 'https://ror.org/05w0e5x87 TecnologĆ­as para la Salud y el Bienestar (Spain)'),
(14942, 'https://ror.org/05w0sqr84', 'en', 1, 'https://ror.org/05w0sqr84 Council for Agricultural Science and Technology'),
(14943, 'https://ror.org/05w47ar02', 'en', 1, 'https://ror.org/05w47ar02 Allegany County Health Department'),
(14944, 'https://ror.org/05w9g2j85', 'en', 1, 'https://ror.org/05w9g2j85 Institute of Cognitive Sciences and Technologies Istituto di Scienze e Tecnologie della Cognizione'),
(14945, 'https://ror.org/05wbv7q50', 'no_lang_code', 1, 'https://ror.org/05wbv7q50 Brissonneau and Lotz (France) Brissonneau et Lotz'),
(14946, 'https://ror.org/05wd0fd11', 'no_lang_code', 1, 'https://ror.org/05wd0fd11 PixarBio (United States)'),
(14947, 'https://ror.org/05we1n045', 'no_lang_code', 1, 'https://ror.org/05we1n045 Adnet Systems (United States)'),
(14948, 'https://ror.org/05wf54e71', 'no_lang_code', 1, 'https://ror.org/05wf54e71 I.Con. Innovation'),
(14949, 'https://ror.org/05wgmk856', 'no_lang_code', 1, 'https://ror.org/05wgmk856 Oxley (United Kingdom)'),
(14950, 'https://ror.org/05wjq4v91', 'en', 1, 'https://ror.org/05wjq4v91 Uganda Institute of Information & Communications Technology'),
(14951, 'https://ror.org/05wkmd624', 'en', 1, 'https://ror.org/05wkmd624 Arlington Free Clinic'),
(14952, 'https://ror.org/05wmmcx08', 'en', 1, 'https://ror.org/05wmmcx08 HealthNow New York'),
(14953, 'https://ror.org/05wmqqp39', 'en', 1, 'https://ror.org/05wmqqp39 Inyo Mono Advocates for Community Action'),
(14954, 'https://ror.org/05wpxj691', 'en', 1, 'https://ror.org/05wpxj691 Cotting School'),
(14955, 'https://ror.org/05wq9kf61', 'en', 1, 'https://ror.org/05wq9kf61 Alternative Opportunities'),
(14956, 'https://ror.org/05wrev716', 'no_lang_code', 1, 'https://ror.org/05wrev716 Generex Biotechnology (Canada)'),
(14957, 'https://ror.org/05ws79528', 'en', 1, 'https://ror.org/05ws79528 Oregon Adaptive Sports'),
(14958, 'https://ror.org/05wsk5f87', 'no_lang_code', 1, 'https://ror.org/05wsk5f87 ASM International (Finland)'),
(14959, 'https://ror.org/05wy76019', 'no_lang_code', 1, 'https://ror.org/05wy76019 Demar Laser (Netherlands)'),
(14960, 'https://ror.org/05x0fr110', 'no_lang_code', 1, 'https://ror.org/05x0fr110 HBLA (United States)'),
(14961, 'https://ror.org/05x2b4167', 'no_lang_code', 1, 'https://ror.org/05x2b4167 Artemis Innovation (United States)'),
(14962, 'https://ror.org/05x30r374', 'en', 1, 'https://ror.org/05x30r374 Mi Raza Community Center'),
(14963, 'https://ror.org/05x5s0870', 'no_lang_code', 1, 'https://ror.org/05x5s0870 Perceptive Software (Germany)'),
(14964, 'https://ror.org/05x88b790', 'no_lang_code', 1, 'https://ror.org/05x88b790 Harvard Bioscience (Germany)'),
(14965, 'https://ror.org/05x9yy985', 'en', 1, 'https://ror.org/05x9yy985 University of Mount Olive'),
(14966, 'https://ror.org/05xaqjm64', 'en', 1, 'https://ror.org/05xaqjm64 Pennsylvania Department of Education'),
(14967, 'https://ror.org/05xavf734', 'no_lang_code', 1, 'https://ror.org/05xavf734 Graal Tech'),
(14968, 'https://ror.org/05xere368', 'no_lang_code', 1, 'https://ror.org/05xere368 SingularLogic (Greece)'),
(14969, 'https://ror.org/05xevjm20', 'no_lang_code', 1, 'https://ror.org/05xevjm20 Eureka Genomics (United States)'),
(14970, 'https://ror.org/05xez8392', 'en', 1, 'https://ror.org/05xez8392 Nurse-Family Partnership'),
(14971, 'https://ror.org/05xqtsb23', 'en', 1, 'https://ror.org/05xqtsb23 International Solvay Institutes'),
(14972, 'https://ror.org/05xrtfh49', 'en', 1, 'https://ror.org/05xrtfh49 European Virtual Institute on Knowledge-based Multifunctional Materials'),
(14973, 'https://ror.org/05xtgzc62', 'no_lang_code', 1, 'https://ror.org/05xtgzc62 Va-Q-tec (Germany)'),
(14974, 'https://ror.org/05xvp5318', 'en', 1, 'https://ror.org/05xvp5318 Providence St. Peter Hospital'),
(14975, 'https://ror.org/05xvy6672', 'en', 1, 'https://ror.org/05xvy6672 International Society for Clinical Densitometry'),
(14976, 'https://ror.org/05xw0wj25', 'en', 1, 'https://ror.org/05xw0wj25 French Clinical Research Infrastructure Network'),
(14977, 'https://ror.org/05xwst004', 'no_lang_code', 1, 'https://ror.org/05xwst004 Sampaş Nanotechnology (Turkey)'),
(14978, 'https://ror.org/05xx8bb48', 'en', 1, 'https://ror.org/05xx8bb48 Sieć Badawcza Łukasiewicz - Instytut Spawalnictwa Łukasiewicz Research Network - Institute of Welding'),
(14979, 'https://ror.org/05xy3es97', 'no_lang_code', 1, 'https://ror.org/05xy3es97 Organizzazione Sviluppo Vendite'),
(14980, 'https://ror.org/05xyx5995', 'en', 1, 'https://ror.org/05xyx5995 Medscape'),
(14981, 'https://ror.org/05xznzw56', 'sv', 1, 'https://ror.org/05xznzw56 FolkhƤlsans Forskningscentrum'),
(14982, 'https://ror.org/05y2vby93', 'en', 1, 'https://ror.org/05y2vby93 Texas Health Resources Foundation'),
(14983, 'https://ror.org/05y9hde07', 'en', 1, 'https://ror.org/05y9hde07 Palo Alto Center for Pulmonary Disease Prevention'),
(14984, 'https://ror.org/05yap4w73', 'en', 1, 'https://ror.org/05yap4w73 Frontier Community Services'),
(14985, 'https://ror.org/05yb1mg89', 'de', 1, 'https://ror.org/05yb1mg89 Forschungs- und Beratungsstelle Arbeitswelt'),
(14986, 'https://ror.org/05yb3w112', 'en', 1, 'https://ror.org/05yb3w112 Singapore-MIT Alliance for Research and Technology'),
(14987, 'https://ror.org/05yb6kv21', 'en', 1, 'https://ror.org/05yb6kv21 Boyne Research Institute'),
(14988, 'https://ror.org/05yc27210', 'en', 1, 'https://ror.org/05yc27210 Bethel Elementary School'),
(14989, 'https://ror.org/05yc3mk04', 'en', 1, 'https://ror.org/05yc3mk04 Healthy Start'),
(14990, 'https://ror.org/05yd4kq77', 'no_lang_code', 1, 'https://ror.org/05yd4kq77 Chondrial Therapeutics (United States)'),
(14991, 'https://ror.org/05yeqft47', 'en', 1, 'https://ror.org/05yeqft47 Baton Rouge Clinic'),
(14992, 'https://ror.org/05yf91t27', 'en', 1, 'https://ror.org/05yf91t27 Northwest Community Health Center'),
(14993, 'https://ror.org/05ygzqx22', 'en', 1, 'https://ror.org/05ygzqx22 The Doe Fund'),
(14994, 'https://ror.org/05yh2xc78', 'no_lang_code', 1, 'https://ror.org/05yh2xc78 Celladon Corporation (United States)'),
(14995, 'https://ror.org/05yhxm969', 'it', 1, 'https://ror.org/05yhxm969 Gruppi di Ricerca Economica Teorica ed Applicata'),
(14996, 'https://ror.org/05yjrf567', 'no_lang_code', 1, 'https://ror.org/05yjrf567 Innora'),
(14997, 'https://ror.org/05yjwhg67', 'en', 1, 'https://ror.org/05yjwhg67 Institute for Nuclear Research Pitesti'),
(14998, 'https://ror.org/05ym2c938', 'no_lang_code', 1, 'https://ror.org/05ym2c938 VirTech (Bulgaria)'),
(14999, 'https://ror.org/05ymt3c12', 'no_lang_code', 1, 'https://ror.org/05ymt3c12 AVEVA (Sweden)'),
(15000, 'https://ror.org/05yq3xa52', 'no_lang_code', 1, 'https://ror.org/05yq3xa52 Inetec (Croatia)'),
(15001, 'https://ror.org/0001tya14', 'no_lang_code', 1, 'https://ror.org/0001tya14 Crystal Research (United States)'),
(15002, 'https://ror.org/00085w524', 'no_lang_code', 1, 'https://ror.org/00085w524 Beijing Software Enterprise Advisory Center (China) åŒ—äŗ¬č½Æåä¼äøšē®”ē†é”¾é—®äø­åæƒ'),
(15003, 'https://ror.org/0008zj958', 'no_lang_code', 1, 'https://ror.org/0008zj958 JPT Peptide Technologies (Germany)'),
(15004, 'https://ror.org/0009gv735', 'it', 1, 'https://ror.org/0009gv735 Censis Foundation - Center for Social Studies Fondazione Censis - Centro Studi Investimenti Sociali'),
(15005, 'https://ror.org/0009s9p66', 'no_lang_code', 1, 'https://ror.org/0009s9p66 BioMed Central (United Kingdom)'),
(15006, 'https://ror.org/000akah41', 'en', 1, 'https://ror.org/000akah41 Sound Choice Pharmaceutical Institute'),
(15007, 'https://ror.org/000cgzf80', 'no_lang_code', 1, 'https://ror.org/000cgzf80 Nyrstar Budel (Netherlands)'),
(15008, 'https://ror.org/000ch3x42', 'en', 1, 'https://ror.org/000ch3x42 United States Olympic & Paralympic Committee'),
(15009, 'https://ror.org/000fdtb56', 'no_lang_code', 1, 'https://ror.org/000fdtb56 Corporate Communications Group (United States)'),
(15010, 'https://ror.org/000fyja13', 'en', 1, 'https://ror.org/000fyja13 Molecular Sciences Institute'),
(15011, 'https://ror.org/000ge9g13', 'en', 1, 'https://ror.org/000ge9g13 Athens Technical College'),
(15012, 'https://ror.org/000gxrm11', 'en', 1, 'https://ror.org/000gxrm11 Hospital for Sick Children Pediatric Center'),
(15013, 'https://ror.org/000jj6973', 'en', 1, 'https://ror.org/000jj6973 John Wood Community College'),
(15014, 'https://ror.org/000kvm359', 'it', 1, 'https://ror.org/000kvm359 National Park of Abruzzo Parco Nazionale d''Abruzzo'),
(15015, 'https://ror.org/000px4v03', 'no_lang_code', 1, 'https://ror.org/000px4v03 Clopinet'),
(15016, 'https://ror.org/000tz2r96', 'en', 1, 'https://ror.org/000tz2r96 European Distributed Energy Resources Laboratories'),
(15017, 'https://ror.org/000wx6j65', 'en', 1, 'https://ror.org/000wx6j65 European Institute of Women''s Health'),
(15018, 'https://ror.org/000ygtd83', 'en', 1, 'https://ror.org/000ygtd83 American Trauma Society'),
(15019, 'https://ror.org/0012fsh60', 'en', 1, 'https://ror.org/0012fsh60 Hillwood Estate, Museum and Garden'),
(15020, 'https://ror.org/0013kfc53', 'en', 1, 'https://ror.org/0013kfc53 Land Quality Management'),
(15021, 'https://ror.org/0013xkf77', 'en', 1, 'https://ror.org/0013xkf77 Consortium for Research in Automatic and Telecommunications Consorzio per la Ricerca nell''Automatica e Telecomunicazioni'),
(15022, 'https://ror.org/0017y4h13', 'no_lang_code', 1, 'https://ror.org/0017y4h13 Theranova (United States)'),
(15023, 'https://ror.org/00187jv91', 'en', 1, 'https://ror.org/00187jv91 Lifelabs New York'),
(15024, 'https://ror.org/0018fr046', 'en', 1, 'https://ror.org/0018fr046 Life Lab'),
(15025, 'https://ror.org/001a4h086', 'no_lang_code', 1, 'https://ror.org/001a4h086 Serpin Pharma (United States)'),
(15026, 'https://ror.org/001b0ke69', 'en', 1, 'https://ror.org/001b0ke69 Democenter Fondazione Democenter'),
(15027, 'https://ror.org/001f6wc07', 'no_lang_code', 1, 'https://ror.org/001f6wc07 Aernnova (Spain)'),
(15028, 'https://ror.org/001f7a930', 'it', 1, 'https://ror.org/001f7a930 Azienda Ospedaliera Citta'' della Salute e della Scienza di Torino'),
(15029, 'https://ror.org/001fr6a82', 'en', 1, 'https://ror.org/001fr6a82 Union of Agricultural Cooperatives of Peza'),
(15030, 'https://ror.org/001gdnj66', 'no_lang_code', 1, 'https://ror.org/001gdnj66 Future Diagnostics (Netherlands)'),
(15031, 'https://ror.org/001h71z63', 'no_lang_code', 1, 'https://ror.org/001h71z63 Applied Medical Technology (United States)'),
(15032, 'https://ror.org/001jxpk05', 'de', 1, 'https://ror.org/001jxpk05 Deutsche Gesellschaft für Galvano- und Oberflächentechnik'),
(15033, 'https://ror.org/001kwas94', 'no_lang_code', 1, 'https://ror.org/001kwas94 Knowledge Integration (United Kingdom)'),
(15034, 'https://ror.org/001m53j08', 'en', 1, 'https://ror.org/001m53j08 East Thames Group'),
(15035, 'https://ror.org/001mf2769', 'no_lang_code', 1, 'https://ror.org/001mf2769 Berlin Schalltechnisches Büro'),
(15036, 'https://ror.org/001nqp226', 'pt', 1, 'https://ror.org/001nqp226 Centro Operativo e de Tecnologia de Regadio'),
(15037, 'https://ror.org/001nr2c08', 'en', 1, 'https://ror.org/001nr2c08 Eyes of the World Media Group'),
(15038, 'https://ror.org/001rww263', 'no_lang_code', 1, 'https://ror.org/001rww263 Murata (France)'),
(15039, 'https://ror.org/001s88f97', 'no_lang_code', 1, 'https://ror.org/001s88f97 Mondelēz International (United Kingdom)'),
(15040, 'https://ror.org/001t4p955', 'no_lang_code', 1, 'https://ror.org/001t4p955 Xeris Pharmaceuticals (United States)'),
(15041, 'https://ror.org/001te2382', 'no_lang_code', 1, 'https://ror.org/001te2382 Electronic Arts (United Kingdom)'),
(15042, 'https://ror.org/001vc2w94', 'en', 1, 'https://ror.org/001vc2w94 Alaska Department of Education and Early Development'),
(15043, 'https://ror.org/001vrfy97', 'en', 1, 'https://ror.org/001vrfy97 Carrier Clinic'),
(15044, 'https://ror.org/001yh7w33', 'no_lang_code', 1, 'https://ror.org/001yh7w33 Dynamic Boosting Systems (United Kingdom)'),
(15045, 'https://ror.org/001yzen24', 'no_lang_code', 1, 'https://ror.org/001yzen24 Docobo (United Kingdom)'),
(15046, 'https://ror.org/0024sf220', 'en', 1, 'https://ror.org/0024sf220 American Accounting Association'),
(15047, 'https://ror.org/0027ktx17', 'no_lang_code', 1, 'https://ror.org/0027ktx17 Oesterreichs Energie'),
(15048, 'https://ror.org/0029qcb02', 'no_lang_code', 1, 'https://ror.org/0029qcb02 Begell House (United States)'),
(15049, 'https://ror.org/002atrf55', 'fr', 1, 'https://ror.org/002atrf55 Centre Hospitalier ChrƩtien'),
(15050, 'https://ror.org/002eajg41', 'no_lang_code', 1, 'https://ror.org/002eajg41 Real Time Tomography (United States)'),
(15051, 'https://ror.org/002ev2d93', 'no_lang_code', 1, 'https://ror.org/002ev2d93 Ciris IngƩnierie (France)'),
(15052, 'https://ror.org/002g1fh49', 'no_lang_code', 1, 'https://ror.org/002g1fh49 AlphaMed (United States)'),
(15053, 'https://ror.org/002gsek34', 'en', 1, 'https://ror.org/002gsek34 Institute for Employment Studies'),
(15054, 'https://ror.org/002hjp317', 'no_lang_code', 1, 'https://ror.org/002hjp317 Compagnie EuropĆ©enne d’intelligence StratĆ©gique (France)'),
(15055, 'https://ror.org/002hxf953', 'en', 1, 'https://ror.org/002hxf953 Tazewell County Health Department'),
(15056, 'https://ror.org/002jks503', 'no_lang_code', 1, 'https://ror.org/002jks503 Medivir (Sweden)'),
(15057, 'https://ror.org/002kwhf16', 'no_lang_code', 1, 'https://ror.org/002kwhf16 5N Plus (United Kingdom)'),
(15058, 'https://ror.org/002mh8q73', 'en', 1, 'https://ror.org/002mh8q73 Enterprise State Community College'),
(15059, 'https://ror.org/002mr7c38', 'fr', 1, 'https://ror.org/002mr7c38 Laval Mayenne Technopole'),
(15060, 'https://ror.org/002qqr512', 'en', 1, 'https://ror.org/002qqr512 South Puget Intertribal Planning Agency'),
(15061, 'https://ror.org/002qtbf65', 'no_lang_code', 1, 'https://ror.org/002qtbf65 Federal Mogul (Sweden)'),
(15062, 'https://ror.org/002r6qy28', 'en', 1, 'https://ror.org/002r6qy28 Library of Michigan'),
(15063, 'https://ror.org/002rgah83', 'no_lang_code', 1, 'https://ror.org/002rgah83 Rheonix (United States)'),
(15064, 'https://ror.org/002s66543', 'no_lang_code', 1, 'https://ror.org/002s66543 Aerospace & Advanced Composites (Austria)'),
(15065, 'https://ror.org/002vxyf08', 'no_lang_code', 1, 'https://ror.org/002vxyf08 Humanetics Corporation (United States)'),
(15066, 'https://ror.org/002wydw38', 'en', 1, 'https://ror.org/002wydw38 St. Luke''s International Hospital č–č·ÆåŠ å›½éš›ē—…é™¢'),
(15067, 'https://ror.org/002wz1627', 'no_lang_code', 1, 'https://ror.org/002wz1627 Equens (Netherlands)'),
(15068, 'https://ror.org/002xeeh02', 'no_lang_code', 1, 'https://ror.org/002xeeh02 Ingeteam (Spain)'),
(15069, 'https://ror.org/002zrf773', 'no_lang_code', 1, 'https://ror.org/002zrf773 Qualcomm (United States)'),
(15070, 'https://ror.org/003013d40', 'en', 1, 'https://ror.org/003013d40 Citizens for Responsibility and Ethics in Washington'),
(15071, 'https://ror.org/00303dn90', 'no_lang_code', 1, 'https://ror.org/00303dn90 Advanced Process Combinatorics (United States)'),
(15072, 'https://ror.org/00305v037', 'en', 1, 'https://ror.org/00305v037 Center for Success and Independence'),
(15073, 'https://ror.org/0032ykz68', 'no_lang_code', 1, 'https://ror.org/0032ykz68 Ascora (Germany)'),
(15074, 'https://ror.org/0033e0z76', 'no_lang_code', 1, 'https://ror.org/0033e0z76 Eidos (Italy)'),
(15075, 'https://ror.org/0033z1132', 'en', 1, 'https://ror.org/0033z1132 Company of Biologists'),
(15076, 'https://ror.org/00342ps77', 'en', 1, 'https://ror.org/00342ps77 Cincinnati Christian University'),
(15077, 'https://ror.org/0035qnb68', 'no_lang_code', 1, 'https://ror.org/0035qnb68 Compart (Germany)'),
(15078, 'https://ror.org/0039w6753', 'no_lang_code', 1, 'https://ror.org/0039w6753 Etas (Germany)'),
(15079, 'https://ror.org/003aveg56', 'no_lang_code', 1, 'https://ror.org/003aveg56 Ilika (United Kingdom)'),
(15080, 'https://ror.org/003bfq559', 'en', 1, 'https://ror.org/003bfq559 Conseil International du BĆ¢timent International Council for Building, International Council for Research and Innovation in Building and Construction'),
(15081, 'https://ror.org/003c9rw47', 'no_lang_code', 1, 'https://ror.org/003c9rw47 Icosagen (Estonia)'),
(15082, 'https://ror.org/003dqcy46', 'no_lang_code', 1, 'https://ror.org/003dqcy46 AFrame Digital (United States)'),
(15083, 'https://ror.org/003fa5112', 'en', 1, 'https://ror.org/003fa5112 Black Sea NGO Network'),
(15084, 'https://ror.org/003fmz167', 'it', 1, 'https://ror.org/003fmz167 Istituto di Ricerche Economiche e Sociali'),
(15085, 'https://ror.org/003fyf471', 'en', 1, 'https://ror.org/003fyf471 European Group for Integrated Social Research Europäische Gesellschaft für Regionale und Internationale Sozialforschung'),
(15086, 'https://ror.org/003g29k51', 'no_lang_code', 1, 'https://ror.org/003g29k51 Latécoère (France)'),
(15087, 'https://ror.org/003gfpb19', 'no_lang_code', 1, 'https://ror.org/003gfpb19 Caliber Imaging and Diagnostics (United States)'),
(15088, 'https://ror.org/003j7c961', 'fr', 1, 'https://ror.org/003j7c961 Centre de Culture Scientifique, Technique et Industrielle'),
(15089, 'https://ror.org/003k26w86', 'fr', 1, 'https://ror.org/003k26w86 Institut de Recherche et de Documentation en Ɖconomie de la SantĆ© Institute for Research and Information in Health Economics'),
(15090, 'https://ror.org/003kgv736', 'en', 1, 'https://ror.org/003kgv736 University of the West Indies'),
(15091, 'https://ror.org/003nw0037', 'no_lang_code', 1, 'https://ror.org/003nw0037 Masmec (Italy)'),
(15092, 'https://ror.org/003qafx79', 'no_lang_code', 1, 'https://ror.org/003qafx79 Ideko (Spain)'),
(15093, 'https://ror.org/003rgf994', 'no_lang_code', 1, 'https://ror.org/003rgf994 Amethyst Research (United States)'),
(15094, 'https://ror.org/003rpah63', 'no_lang_code', 1, 'https://ror.org/003rpah63 AkzoNobel (Sweden)'),
(15095, 'https://ror.org/003rxtd24', 'en', 1, 'https://ror.org/003rxtd24 Ronald McDonald House Charities'),
(15096, 'https://ror.org/003tgaf82', 'en', 1, 'https://ror.org/003tgaf82 Abraham Lincoln Presidential Library and Museum'),
(15097, 'https://ror.org/003tn2r13', 'en', 1, 'https://ror.org/003tn2r13 Champlain Valley Union High School'),
(15098, 'https://ror.org/003wz8a04', 'en', 1, 'https://ror.org/003wz8a04 Friends of Historic Boonville'),
(15099, 'https://ror.org/003xs1762', 'en', 1, 'https://ror.org/003xs1762 Central Arizona College'),
(15100, 'https://ror.org/003xwgp31', 'en', 1, 'https://ror.org/003xwgp31 The Roumel Group'),
(15101, 'https://ror.org/003y83p14', 'en', 1, 'https://ror.org/003y83p14 University of the Third Age'),
(15102, 'https://ror.org/0040q1c48', 'no_lang_code', 1, 'https://ror.org/0040q1c48 Agrii (United Kingdom)'),
(15103, 'https://ror.org/00415cn92', 'no_lang_code', 1, 'https://ror.org/00415cn92 Lehnsgaard (Denmark)'),
(15104, 'https://ror.org/0041zj605', 'en', 1, 'https://ror.org/0041zj605 AIDS Services of Austin'),
(15105, 'https://ror.org/0042p6c32', 'no_lang_code', 1, 'https://ror.org/0042p6c32 IVL Audio (Canada)'),
(15106, 'https://ror.org/0043ncq27', 'de', 1, 'https://ror.org/0043ncq27 Berliner Institut für Sozialforschung'),
(15107, 'https://ror.org/0044j1p74', 'no_lang_code', 1, 'https://ror.org/0044j1p74 HMJ Corporation (United States)'),
(15108, 'https://ror.org/0048mw156', 'no_lang_code', 1, 'https://ror.org/0048mw156 FM Mattsson (Sweden)'),
(15109, 'https://ror.org/0049d1v72', 'en', 1, 'https://ror.org/0049d1v72 United States Tax Court'),
(15110, 'https://ror.org/004ayva68', 'no_lang_code', 1, 'https://ror.org/004ayva68 BioBullets (United Kingdom)'),
(15111, 'https://ror.org/004b61s59', 'no_lang_code', 1, 'https://ror.org/004b61s59 Advanced Science and Automation (United States)'),
(15112, 'https://ror.org/004bcda17', 'pt', 1, 'https://ror.org/004bcda17 Instituto de Desenvolvimento e Inovação Tecnológica do Minho'),
(15113, 'https://ror.org/004bhtn60', 'no_lang_code', 1, 'https://ror.org/004bhtn60 Eftas Remote Sensing Technology Transfer (Germany)'),
(15114, 'https://ror.org/004csq624', 'no_lang_code', 1, 'https://ror.org/004csq624 Gentoo (United Kingdom)'),
(15115, 'https://ror.org/004eh9171', 'no_lang_code', 1, 'https://ror.org/004eh9171 Helmed Spine Implants (Greece)'),
(15116, 'https://ror.org/004fbgd98', 'no_lang_code', 1, 'https://ror.org/004fbgd98 InfoCamere (Italy)'),
(15117, 'https://ror.org/004fhx245', 'no_lang_code', 1, 'https://ror.org/004fhx245 Farasis Energy (United States)'),
(15118, 'https://ror.org/004h3nh40', 'en', 1, 'https://ror.org/004h3nh40 Kendall College'),
(15119, 'https://ror.org/004hpvt45', 'no_lang_code', 1, 'https://ror.org/004hpvt45 Mediamobile (Finland)'),
(15120, 'https://ror.org/004hxvm93', 'no_lang_code', 1, 'https://ror.org/004hxvm93 Fractal Systems (United States)'),
(15121, 'https://ror.org/004jgdy75', 'en', 1, 'https://ror.org/004jgdy75 Youth Rights Media'),
(15122, 'https://ror.org/004jkmn11', 'en', 1, 'https://ror.org/004jkmn11 Rhino Ark United States of America'),
(15123, 'https://ror.org/004jpn268', 'no_lang_code', 1, 'https://ror.org/004jpn268 Lesprojekt (Czechia)'),
(15124, 'https://ror.org/004mv3j76', 'no_lang_code', 1, 'https://ror.org/004mv3j76 CFN Precision'),
(15125, 'https://ror.org/004mx7t23', 'en', 1, 'https://ror.org/004mx7t23 Birmingham Bloomfield Community Coalition'),
(15126, 'https://ror.org/004nrp689', 'no_lang_code', 1, 'https://ror.org/004nrp689 BioPredict (United States)'),
(15127, 'https://ror.org/004pdnb66', 'en', 1, 'https://ror.org/004pdnb66 Grace A. Dow Memorial Library'),
(15128, 'https://ror.org/004q3d116', 'en', 1, 'https://ror.org/004q3d116 Institute of Biopolymers and Chemical Fibres'),
(15129, 'https://ror.org/004rj7d23', 'en', 1, 'https://ror.org/004rj7d23 Dance Heritage Coalition'),
(15130, 'https://ror.org/004sf5z22', 'no_lang_code', 1, 'https://ror.org/004sf5z22 Synthena (Switzerland)'),
(15131, 'https://ror.org/004tefm87', 'no_lang_code', 1, 'https://ror.org/004tefm87 Isofoton (Spain)'),
(15132, 'https://ror.org/004va3t80', 'no_lang_code', 1, 'https://ror.org/004va3t80 Internazionale Marmi e Macchine Carrara (Italy)'),
(15133, 'https://ror.org/004vnf813', 'no_lang_code', 1, 'https://ror.org/004vnf813 Katchem (Czechia)'),
(15134, 'https://ror.org/004w4kw49', 'it', 1, 'https://ror.org/004w4kw49 Comitato Termotecnico Italiano Energia e Ambiente'),
(15135, 'https://ror.org/004wrwd64', 'no_lang_code', 1, 'https://ror.org/004wrwd64 Atlas Copco (United Kingdom)'),
(15136, 'https://ror.org/004xm6e62', 'en', 1, 'https://ror.org/004xm6e62 Heartland Community College'),
(15137, 'https://ror.org/004xzjm20', 'es', 1, 'https://ror.org/004xzjm20 Universidad Iberoamericana'),
(15138, 'https://ror.org/004zaxy19', 'no_lang_code', 1, 'https://ror.org/004zaxy19 Faurecia (France)'),
(15139, 'https://ror.org/0050kdp78', 'no_lang_code', 1, 'https://ror.org/0050kdp78 Materials Science International Services (Germany)'),
(15140, 'https://ror.org/0050tts15', 'en', 1, 'https://ror.org/0050tts15 Tri-Cities Cancer Center'),
(15141, 'https://ror.org/0052bbe49', 'en', 1, 'https://ror.org/0052bbe49 Rocky River Public Library'),
(15142, 'https://ror.org/0053aqt47', 'no_lang_code', 1, 'https://ror.org/0053aqt47 Fluidhouse (Finland)'),
(15143, 'https://ror.org/0053v9m13', 'no_lang_code', 1, 'https://ror.org/0053v9m13 PXBioVisioN (Germany)'),
(15144, 'https://ror.org/0055z4983', 'no_lang_code', 1, 'https://ror.org/0055z4983 Christmann Informationstechnik + Medien (Germany)'),
(15145, 'https://ror.org/0058kkn34', 'en', 1, 'https://ror.org/0058kkn34 Lottolab Studio'),
(15146, 'https://ror.org/0058y2432', 'en', 1, 'https://ror.org/0058y2432 Chester County Hospital'),
(15147, 'https://ror.org/005ac6938', 'no_lang_code', 1, 'https://ror.org/005ac6938 CDI Bioscience (United States)'),
(15148, 'https://ror.org/005b83279', 'no_lang_code', 1, 'https://ror.org/005b83279 InfoConsult (Germany)'),
(15149, 'https://ror.org/005cag216', 'no_lang_code', 1, 'https://ror.org/005cag216 BetaStem Therapeutics (United States)'),
(15150, 'https://ror.org/005cv6b38', 'fr', 1, 'https://ror.org/005cv6b38 Celabor');
INSERT INTO `rors` VALUES
(15151, 'https://ror.org/005h05b25', 'no_lang_code', 1, 'https://ror.org/005h05b25 Circle (United States)'),
(15152, 'https://ror.org/005haay02', 'fr', 1, 'https://ror.org/005haay02 Institut National de Recherche en SantƩ Publique'),
(15153, 'https://ror.org/005m99512', 'ro', 1, 'https://ror.org/005m99512 Institutul National de Cercetare si Dezvoltare pentru Fizica Pamantului National Institutue of Research and Development for Earth’s Physics'),
(15154, 'https://ror.org/005mt8d46', 'no_lang_code', 1, 'https://ror.org/005mt8d46 Proximus (Belgium)'),
(15155, 'https://ror.org/005sp1511', 'no_lang_code', 1, 'https://ror.org/005sp1511 Antenova (United Kingdom)'),
(15156, 'https://ror.org/005szp141', 'no_lang_code', 1, 'https://ror.org/005szp141 ProterixBio (United States)'),
(15157, 'https://ror.org/005v5p387', 'en', 1, 'https://ror.org/005v5p387 Kent District Library'),
(15158, 'https://ror.org/005x6m040', 'en', 1, 'https://ror.org/005x6m040 International Virtual Laboratory for Enterprise Interoperability'),
(15159, 'https://ror.org/005ynf375', 'en', 1, 'https://ror.org/005ynf375 Victorian Infectious Diseases Reference Laboratory'),
(15160, 'https://ror.org/0060zp422', 'no_lang_code', 1, 'https://ror.org/0060zp422 Koninklijke BAM Groep Royal BAM Group (Netherlands)'),
(15161, 'https://ror.org/0061msm67', 'en', 1, 'https://ror.org/0061msm67 Max Planck Digital Library'),
(15162, 'https://ror.org/0062bek19', 'en', 1, 'https://ror.org/0062bek19 Irish Rail'),
(15163, 'https://ror.org/0062tv278', 'en', 1, 'https://ror.org/0062tv278 Chicago Kent College of Law'),
(15164, 'https://ror.org/0062wks65', 'no_lang_code', 1, 'https://ror.org/0062wks65 Internet Society Bulgaria'),
(15165, 'https://ror.org/00634z117', 'no_lang_code', 1, 'https://ror.org/00634z117 Checkit (United Kingdom)'),
(15166, 'https://ror.org/0063bq527', 'no_lang_code', 1, 'https://ror.org/0063bq527 Farran Technology (Ireland)'),
(15167, 'https://ror.org/006471y50', 'no_lang_code', 1, 'https://ror.org/006471y50 Applied Materials (United Kingdom)'),
(15168, 'https://ror.org/0064gh735', 'en', 1, 'https://ror.org/0064gh735 Mediterranean Institute of Fundamental Physics'),
(15169, 'https://ror.org/0065wa002', 'no_lang_code', 1, 'https://ror.org/0065wa002 Applied Functional Materials (United Kingdom)'),
(15170, 'https://ror.org/006828x19', 'no_lang_code', 1, 'https://ror.org/006828x19 Level 7 Systems (United Kingdom)'),
(15171, 'https://ror.org/0069fh197', 'no_lang_code', 1, 'https://ror.org/0069fh197 Kepar Electronica (Spain)'),
(15172, 'https://ror.org/006b89x83', 'no_lang_code', 1, 'https://ror.org/006b89x83 JBS Science (United States)'),
(15173, 'https://ror.org/006ddrg17', 'no_lang_code', 1, 'https://ror.org/006ddrg17 ApplusVelosi (United Kingdom)'),
(15174, 'https://ror.org/006exzm93', 'no_lang_code', 1, 'https://ror.org/006exzm93 Morris Leslie Group (United Kingdom)'),
(15175, 'https://ror.org/006g3h191', 'no_lang_code', 1, 'https://ror.org/006g3h191 EngeniusMicro (United States)'),
(15176, 'https://ror.org/006hgn665', 'no_lang_code', 1, 'https://ror.org/006hgn665 Glotech (United States)'),
(15177, 'https://ror.org/006jrk197', 'no_lang_code', 1, 'https://ror.org/006jrk197 Goss Springs (United Kingdom)'),
(15178, 'https://ror.org/006k1vg57', 'no_lang_code', 1, 'https://ror.org/006k1vg57 Allen Press (United States)'),
(15179, 'https://ror.org/006kkkp25', 'no_lang_code', 1, 'https://ror.org/006kkkp25 Miller Canfield (United States)'),
(15180, 'https://ror.org/006ng7z95', 'no_lang_code', 1, 'https://ror.org/006ng7z95 Interscience Communications (United Kingdom)'),
(15181, 'https://ror.org/006nzxy18', 'no_lang_code', 1, 'https://ror.org/006nzxy18 Senso (Spain)'),
(15182, 'https://ror.org/006p15d12', 'en', 1, 'https://ror.org/006p15d12 Daughters of the American Revolution'),
(15183, 'https://ror.org/006pvfx30', 'en', 1, 'https://ror.org/006pvfx30 Wells College'),
(15184, 'https://ror.org/006q46c69', 'sr', 1, 'https://ror.org/006q46c69 Zdravstveni centar'),
(15185, 'https://ror.org/006ryea96', 'no_lang_code', 1, 'https://ror.org/006ryea96 Ashwoods Automotive (United Kingdom)'),
(15186, 'https://ror.org/006sm2430', 'en', 1, 'https://ror.org/006sm2430 Illinois State Board of Education'),
(15187, 'https://ror.org/006sr7078', 'no_lang_code', 1, 'https://ror.org/006sr7078 Regenerys (United Kingdom)'),
(15188, 'https://ror.org/006wb1h58', 'en', 1, 'https://ror.org/006wb1h58 Dystonia Medical Research Foundation'),
(15189, 'https://ror.org/006wz7f31', 'no_lang_code', 1, 'https://ror.org/006wz7f31 Engineering Acoustics (United States)'),
(15190, 'https://ror.org/006xake10', 'en', 1, 'https://ror.org/006xake10 Jones County Junior College'),
(15191, 'https://ror.org/006yg7y02', 'en', 1, 'https://ror.org/006yg7y02 Fond du Lac Historical Society'),
(15192, 'https://ror.org/006ykk006', 'no_lang_code', 1, 'https://ror.org/006ykk006 Fimet (Finland)'),
(15193, 'https://ror.org/00702wg16', 'fr', 1, 'https://ror.org/00702wg16 Institut National d''Optique National Optics Institute'),
(15194, 'https://ror.org/0073dpj33', 'en', 1, 'https://ror.org/0073dpj33 Fond du Lac School District'),
(15195, 'https://ror.org/0073qme72', 'no_lang_code', 1, 'https://ror.org/0073qme72 Antec (Germany)'),
(15196, 'https://ror.org/0073snb49', 'en', 1, 'https://ror.org/0073snb49 weSPARK Cancer Support Center'),
(15197, 'https://ror.org/007422545', 'no_lang_code', 1, 'https://ror.org/007422545 Active Space Technologies (Germany)'),
(15198, 'https://ror.org/0078rjm63', 'en', 1, 'https://ror.org/0078rjm63 Strength For Life'),
(15199, 'https://ror.org/0079hf726', 'no_lang_code', 1, 'https://ror.org/0079hf726 ARIA Technologies'),
(15200, 'https://ror.org/007b60k22', 'en', 1, 'https://ror.org/007b60k22 Empire State Library Network'),
(15201, 'https://ror.org/007cgsn27', 'no_lang_code', 1, 'https://ror.org/007cgsn27 High Voltage Partial Discharge (United Kingdom)'),
(15202, 'https://ror.org/007cyr634', 'no_lang_code', 1, 'https://ror.org/007cyr634 AbTech (United States)'),
(15203, 'https://ror.org/007j95w86', 'en', 1, 'https://ror.org/007j95w86 Greek Rescue Team'),
(15204, 'https://ror.org/007jkeb78', 'no_lang_code', 1, 'https://ror.org/007jkeb78 FocalCool (United States)'),
(15205, 'https://ror.org/007k2zh72', 'en', 1, 'https://ror.org/007k2zh72 Walking With Anthony'),
(15206, 'https://ror.org/007q33p83', 'en', 1, 'https://ror.org/007q33p83 United States Handcycle Federation'),
(15207, 'https://ror.org/007qfc639', 'no_lang_code', 1, 'https://ror.org/007qfc639 CNH Industrial (Belgium)'),
(15208, 'https://ror.org/007rn0n34', 'no_lang_code', 1, 'https://ror.org/007rn0n34 Ashton & Moore (United Kingdom)'),
(15209, 'https://ror.org/007v6yg52', 'en', 1, 'https://ror.org/007v6yg52 Bay State Community Services'),
(15210, 'https://ror.org/007wqy698', 'no_lang_code', 1, 'https://ror.org/007wqy698 Vastrata (United Kingdom)'),
(15211, 'https://ror.org/007xvzw21', 'en', 1, 'https://ror.org/007xvzw21 Institute of Highway Engineers'),
(15212, 'https://ror.org/0084vrs13', 'no_lang_code', 1, 'https://ror.org/0084vrs13 Clariant (Germany)'),
(15213, 'https://ror.org/0085h5x07', 'en', 1, 'https://ror.org/0085h5x07 Wounded Artist Project'),
(15214, 'https://ror.org/0085nex47', 'en', 1, 'https://ror.org/0085nex47 Challenge Center'),
(15215, 'https://ror.org/0085sdj13', 'no_lang_code', 1, 'https://ror.org/0085sdj13 Cerebral Diagnostics (Canada)'),
(15216, 'https://ror.org/0085yms62', 'no_lang_code', 1, 'https://ror.org/0085yms62 AcQ Inducom'),
(15217, 'https://ror.org/008869j48', 'en', 1, 'https://ror.org/008869j48 Identity'),
(15218, 'https://ror.org/008a3c408', 'it', 1, 'https://ror.org/008a3c408 Federazione ANIE, Federazione Nazionale Imprese Elettroniche ed Elettrotecniche National Federation of Electrotechnical and Electronics'),
(15219, 'https://ror.org/008abej30', 'no_lang_code', 1, 'https://ror.org/008abej30 Aylesford Newsprint (United Kingdom)'),
(15220, 'https://ror.org/008bf8b33', 'en', 1, 'https://ror.org/008bf8b33 Flathead High School'),
(15221, 'https://ror.org/008fn2468', 'en', 1, 'https://ror.org/008fn2468 Walk for Nepal'),
(15222, 'https://ror.org/008g3nb29', 'no_lang_code', 1, 'https://ror.org/008g3nb29 BVT Technologies (Czechia)'),
(15223, 'https://ror.org/008g9p546', 'en', 1, 'https://ror.org/008g9p546 Servicio Postal de los Estados Unidos United States Postal Service'),
(15224, 'https://ror.org/008h20257', 'no_lang_code', 1, 'https://ror.org/008h20257 Martech International (Belgium)'),
(15225, 'https://ror.org/008h7g239', 'no_lang_code', 1, 'https://ror.org/008h7g239 Akyüz Plastik (Turkey)'),
(15226, 'https://ror.org/008hr1h38', 'en', 1, 'https://ror.org/008hr1h38 Century College'),
(15227, 'https://ror.org/008j0pa45', 'it', 1, 'https://ror.org/008j0pa45 AIAS Bologna'),
(15228, 'https://ror.org/008j31926', 'en', 1, 'https://ror.org/008j31926 Cary Medical Center'),
(15229, 'https://ror.org/008j6jh18', 'no_lang_code', 1, 'https://ror.org/008j6jh18 Korona (Slovenia)'),
(15230, 'https://ror.org/008ja9m31', 'en', 1, 'https://ror.org/008ja9m31 IT''S TIME TEXAS'),
(15231, 'https://ror.org/008jf2g02', 'en', 1, 'https://ror.org/008jf2g02 Barre Town Middle and Elementary School'),
(15232, 'https://ror.org/008mkmw26', 'no_lang_code', 1, 'https://ror.org/008mkmw26 Kubota Research Associates (United States)'),
(15233, 'https://ror.org/008qv5513', 'no_lang_code', 1, 'https://ror.org/008qv5513 Intellispeak (United States)'),
(15234, 'https://ror.org/008rbpk15', 'no_lang_code', 1, 'https://ror.org/008rbpk15 Interface Biologics (Canada)'),
(15235, 'https://ror.org/008s3dc19', 'no_lang_code', 1, 'https://ror.org/008s3dc19 ChemRoutes (Canada)'),
(15236, 'https://ror.org/008sks094', 'en', 1, 'https://ror.org/008sks094 Urologic Research Institute'),
(15237, 'https://ror.org/008y25t13', 'en', 1, 'https://ror.org/008y25t13 Columbus Law Library Association'),
(15238, 'https://ror.org/008y40y60', 'en', 1, 'https://ror.org/008y40y60 Cyprus Police'),
(15239, 'https://ror.org/008yw1q74', 'no_lang_code', 1, 'https://ror.org/008yw1q74 PTC (France)'),
(15240, 'https://ror.org/008zgvp64', 'en', 1, 'https://ror.org/008zgvp64 Public Library of Science'),
(15241, 'https://ror.org/0092rcp79', 'en', 1, 'https://ror.org/0092rcp79 Dean Associates'),
(15242, 'https://ror.org/0093px637', 'pl', 1, 'https://ror.org/0093px637 Fundacja Inkubator'),
(15243, 'https://ror.org/0094j3d13', 'no_lang_code', 1, 'https://ror.org/0094j3d13 Brimson Laboratories (United States)'),
(15244, 'https://ror.org/0095r2297', 'en', 1, 'https://ror.org/0095r2297 Shawnee State University'),
(15245, 'https://ror.org/0096gcw21', 'en', 1, 'https://ror.org/0096gcw21 Centre for Independent Social Research Центр независимых ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… исслеГований'),
(15246, 'https://ror.org/0098vp187', 'en', 1, 'https://ror.org/0098vp187 Global Health Systems Solutions'),
(15247, 'https://ror.org/0099crw67', 'en', 1, 'https://ror.org/0099crw67 Courtesy Associates'),
(15248, 'https://ror.org/009a0gk47', 'no_lang_code', 1, 'https://ror.org/009a0gk47 Fives Landis (United Kingdom)'),
(15249, 'https://ror.org/009a9gs26', 'en', 1, 'https://ror.org/009a9gs26 Community Colleges of Spokane'),
(15250, 'https://ror.org/009c1h633', 'no_lang_code', 1, 'https://ror.org/009c1h633 Concawe'),
(15251, 'https://ror.org/009dxxa13', 'no_lang_code', 1, 'https://ror.org/009dxxa13 RaNA Therapeutics (United States)'),
(15252, 'https://ror.org/009ghz987', 'no_lang_code', 1, 'https://ror.org/009ghz987 DataMED (Italy)'),
(15253, 'https://ror.org/009mt7c73', 'no_lang_code', 1, 'https://ror.org/009mt7c73 Demuris (United Kingdom)'),
(15254, 'https://ror.org/009n13a08', 'no_lang_code', 1, 'https://ror.org/009n13a08 Dg Technology Service'),
(15255, 'https://ror.org/009nkvj02', 'en', 1, 'https://ror.org/009nkvj02 Warren Newport Public Library'),
(15256, 'https://ror.org/009qm7w92', 'en', 1, 'https://ror.org/009qm7w92 Higher Institute for Applied Sciences and Technology المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(15257, 'https://ror.org/009vb3488', 'no_lang_code', 1, 'https://ror.org/009vb3488 CLOCKSS'),
(15258, 'https://ror.org/009x4vx18', 'en', 1, 'https://ror.org/009x4vx18 Islenet'),
(15259, 'https://ror.org/009xhdy29', 'no_lang_code', 1, 'https://ror.org/009xhdy29 E. Brƶll (Austria)'),
(15260, 'https://ror.org/00a1rzv11', 'en', 1, 'https://ror.org/00a1rzv11 American Institute of Aeronautics and Astronautics'),
(15261, 'https://ror.org/00a25bg52', 'en', 1, 'https://ror.org/00a25bg52 BibliothĆØque et archives canada Library and Archives Canada'),
(15262, 'https://ror.org/00a45e114', 'en', 1, 'https://ror.org/00a45e114 Virginia Community College System'),
(15263, 'https://ror.org/00a5e6254', 'no_lang_code', 1, 'https://ror.org/00a5e6254 Structure Based Design (United States)'),
(15264, 'https://ror.org/00a5raq24', 'no_lang_code', 1, 'https://ror.org/00a5raq24 A-Gas International (United Kingdom)'),
(15265, 'https://ror.org/00a61fv14', 'no_lang_code', 1, 'https://ror.org/00a61fv14 Data Numerica Institute (United States)'),
(15266, 'https://ror.org/00a67te62', 'en', 1, 'https://ror.org/00a67te62 Bay Area Video Coalition'),
(15267, 'https://ror.org/00a6s8j26', 'no_lang_code', 1, 'https://ror.org/00a6s8j26 Comsa Emte (Spain)'),
(15268, 'https://ror.org/00a7vez14', 'no_lang_code', 1, 'https://ror.org/00a7vez14 Looking Glass Analytics (United States)'),
(15269, 'https://ror.org/00a83sz87', 'no_lang_code', 1, 'https://ror.org/00a83sz87 Grassroots Arts and Research (Germany)'),
(15270, 'https://ror.org/00a8x0890', 'no_lang_code', 1, 'https://ror.org/00a8x0890 TetraLogic Pharmaceuticals (United States)'),
(15271, 'https://ror.org/00aaafk57', 'no_lang_code', 1, 'https://ror.org/00aaafk57 International Project Management, Plating and Materials (France)'),
(15272, 'https://ror.org/00aaf6750', 'no_lang_code', 1, 'https://ror.org/00aaf6750 Cleopa (Germany)'),
(15273, 'https://ror.org/00ab0d040', 'no_lang_code', 1, 'https://ror.org/00ab0d040 Axon (United States)'),
(15274, 'https://ror.org/00ab5b586', 'en', 1, 'https://ror.org/00ab5b586 Institute of Mathematics and Mechanics'),
(15275, 'https://ror.org/00ad1q772', 'no_lang_code', 1, 'https://ror.org/00ad1q772 Eurodecision (France)'),
(15276, 'https://ror.org/00aeba842', 'no_lang_code', 1, 'https://ror.org/00aeba842 Impetus Consultants'),
(15277, 'https://ror.org/00afj9w65', 'no_lang_code', 1, 'https://ror.org/00afj9w65 MBDA (United Kingdom)'),
(15278, 'https://ror.org/00ag93x16', 'nl', 1, 'https://ror.org/00ag93x16 Goudappel Coffeng'),
(15279, 'https://ror.org/00agk7330', 'en', 1, 'https://ror.org/00agk7330 The Institute for Therapeutic Discovery'),
(15280, 'https://ror.org/00agrnm56', 'no_lang_code', 1, 'https://ror.org/00agrnm56 SKF (Italy)'),
(15281, 'https://ror.org/00aj77a24', 'no_lang_code', 1, 'https://ror.org/00aj77a24 Danone (France)'),
(15282, 'https://ror.org/00amm9s20', 'en', 1, 'https://ror.org/00amm9s20 London Borough of Islington'),
(15283, 'https://ror.org/00as86q06', 'en', 1, 'https://ror.org/00as86q06 Historic Royal Palaces'),
(15284, 'https://ror.org/00atett69', 'en', 1, 'https://ror.org/00atett69 Wintergreen Adaptive Sports'),
(15285, 'https://ror.org/00awr5166', 'no_lang_code', 1, 'https://ror.org/00awr5166 Benteler (Austria)'),
(15286, 'https://ror.org/00ayxy168', 'en', 1, 'https://ror.org/00ayxy168 Institute of Technical Acoustics Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Ń‚ŃŃ…Š½Ń–Ń‡Š½Š°Š¹ Š°ŠŗŃƒŃŃ‚Ń‹ŠŗŃ–'),
(15287, 'https://ror.org/00b132w65', 'en', 1, 'https://ror.org/00b132w65 Texas State Library and Archives Commission'),
(15288, 'https://ror.org/00b1y8922', 'en', 1, 'https://ror.org/00b1y8922 Columbus Zoo and Aquarium'),
(15289, 'https://ror.org/00b2pba14', 'no_lang_code', 1, 'https://ror.org/00b2pba14 Imprima Costruzioni (Italy)'),
(15290, 'https://ror.org/00b5qjr76', 'en', 1, 'https://ror.org/00b5qjr76 Institute of Laser Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лазерной физики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(15291, 'https://ror.org/00b63pv67', 'no_lang_code', 1, 'https://ror.org/00b63pv67 Industrial Optical Measurement Systems (United States)'),
(15292, 'https://ror.org/00b7zp807', 'no_lang_code', 1, 'https://ror.org/00b7zp807 International Marine and Dredging Consultants'),
(15293, 'https://ror.org/00bb3dm58', 'no_lang_code', 1, 'https://ror.org/00bb3dm58 Attagene'),
(15294, 'https://ror.org/00bbtmy92', 'en', 1, 'https://ror.org/00bbtmy92 Penfold Patterson Research Institute'),
(15295, 'https://ror.org/00bd5vn47', 'no_lang_code', 1, 'https://ror.org/00bd5vn47 Carlsberg Group (Denmark)'),
(15296, 'https://ror.org/00bd6zx59', 'de', 1, 'https://ror.org/00bd6zx59 Chemisches und Veterinäruntersuchungsamt Münsterland-Emscher-Lippe'),
(15297, 'https://ror.org/00bdqcv08', 'no_lang_code', 1, 'https://ror.org/00bdqcv08 Tivorsan Pharmaceuticals (United States)'),
(15298, 'https://ror.org/00be37468', 'no_lang_code', 1, 'https://ror.org/00be37468 Azienda MobilitĆ  e Trasporti'),
(15299, 'https://ror.org/00bgcje57', 'en', 1, 'https://ror.org/00bgcje57 SAMFund'),
(15300, 'https://ror.org/00bh7p191', 'no_lang_code', 1, 'https://ror.org/00bh7p191 GMC (Italy)'),
(15301, 'https://ror.org/00bk31p84', 'en', 1, 'https://ror.org/00bk31p84 Blessing Hospital'),
(15302, 'https://ror.org/00bkf6345', 'en', 1, 'https://ror.org/00bkf6345 American Sexual Health Association'),
(15303, 'https://ror.org/00bkqxm79', 'en', 1, 'https://ror.org/00bkqxm79 Aldebaran Marine Research and Broadcast'),
(15304, 'https://ror.org/00bm89f36', 'en', 1, 'https://ror.org/00bm89f36 Food Safety Authority of Ireland ÚdarĆ”s SĆ”bhĆ”ilteachta Bia na hƉireann'),
(15305, 'https://ror.org/00bmb8a49', 'en', 1, 'https://ror.org/00bmb8a49 Antioch College'),
(15306, 'https://ror.org/00bn7ex21', 'no_lang_code', 1, 'https://ror.org/00bn7ex21 Mecanizados Escribano'),
(15307, 'https://ror.org/00bpwc735', 'en', 1, 'https://ror.org/00bpwc735 Centre of Technological Resources in Chemistry'),
(15308, 'https://ror.org/00bt32k84', 'no_lang_code', 1, 'https://ror.org/00bt32k84 Luxcontrol (Luxembourg)'),
(15309, 'https://ror.org/00bvzcv50', 'en', 1, 'https://ror.org/00bvzcv50 Harford Community College'),
(15310, 'https://ror.org/00bws1855', 'en', 1, 'https://ror.org/00bws1855 Bureau exĆ©cutif du prĆ©sident des Ɖtats-unis Executive Office of the President Oficina Ejecutiva del Presidente de los Estados Unidos'),
(15311, 'https://ror.org/00bxwx839', 'en', 1, 'https://ror.org/00bxwx839 Associazione Italiana Editori Italian Publishers Association'),
(15312, 'https://ror.org/00by5pn87', 'no_lang_code', 1, 'https://ror.org/00by5pn87 CUNA Mutual Group (United States)'),
(15313, 'https://ror.org/00byceh24', 'no_lang_code', 1, 'https://ror.org/00byceh24 Huntington Consultancy (United States)'),
(15314, 'https://ror.org/00c0vk765', 'no_lang_code', 1, 'https://ror.org/00c0vk765 Logisticon (Netherlands)'),
(15315, 'https://ror.org/00c3ee991', 'no_lang_code', 1, 'https://ror.org/00c3ee991 Coherent (United Kingdom)'),
(15316, 'https://ror.org/00c5abk38', 'no_lang_code', 1, 'https://ror.org/00c5abk38 Environmental Software and Services (Austria)'),
(15317, 'https://ror.org/00c5d7t12', 'en', 1, 'https://ror.org/00c5d7t12 St. Louis County Library'),
(15318, 'https://ror.org/00c5ttz44', 'no_lang_code', 1, 'https://ror.org/00c5ttz44 Lusotufo (Portugal)'),
(15319, 'https://ror.org/00c66jq56', 'en', 1, 'https://ror.org/00c66jq56 South Shore Hospital'),
(15320, 'https://ror.org/00c68pc60', 'en', 1, 'https://ror.org/00c68pc60 Agenzia Sviluppo Milano Metropoli S.P.A. Milano Metropoli Development Agency'),
(15321, 'https://ror.org/00c9gjj68', 'no_lang_code', 1, 'https://ror.org/00c9gjj68 Ergon Consulting Group (Greece)'),
(15322, 'https://ror.org/00c9qbz52', 'en', 1, 'https://ror.org/00c9qbz52 European Foundation for Clinical Nanomedicine'),
(15323, 'https://ror.org/00ca0jp83', 'en', 1, 'https://ror.org/00ca0jp83 Uncas Health District'),
(15324, 'https://ror.org/00cd95c65', 'de', 1, 'https://ror.org/00cd95c65 Gesellschaft für wissenschaftliche Datenverarbeitung mbH Göttingen'),
(15325, 'https://ror.org/00cgfxr19', 'no_lang_code', 1, 'https://ror.org/00cgfxr19 ApprenNet (United States)'),
(15326, 'https://ror.org/00ch9bs54', 'no_lang_code', 1, 'https://ror.org/00ch9bs54 Altec (United States)'),
(15327, 'https://ror.org/00ckv2g77', 'no_lang_code', 1, 'https://ror.org/00ckv2g77 Multidisciplinary Digital Publishing Institute (Switzerland)'),
(15328, 'https://ror.org/00cm6et23', 'en', 1, 'https://ror.org/00cm6et23 Haute Ɖcole Lucia de BrouckĆØre Higher Education Institution Lucia de BrouckĆØre'),
(15329, 'https://ror.org/00cmpcq57', 'no_lang_code', 1, 'https://ror.org/00cmpcq57 AretƩ Associates (United States)'),
(15330, 'https://ror.org/00cnma114', 'en', 1, 'https://ror.org/00cnma114 Wasatch Adaptive Sports'),
(15331, 'https://ror.org/00cpzjj86', 'en', 1, 'https://ror.org/00cpzjj86 Tapestri'),
(15332, 'https://ror.org/00crcaf72', 'en', 1, 'https://ror.org/00crcaf72 American Vacuum Society'),
(15333, 'https://ror.org/00crrhx33', 'no_lang_code', 1, 'https://ror.org/00crrhx33 Laitek (United States)'),
(15334, 'https://ror.org/00ct8ya87', 'en', 1, 'https://ror.org/00ct8ya87 Living with Disability'),
(15335, 'https://ror.org/00ctdbf19', 'en', 1, 'https://ror.org/00ctdbf19 Social Work Policy Institute'),
(15336, 'https://ror.org/00ctmea67', 'no_lang_code', 1, 'https://ror.org/00ctmea67 Progress (Ireland)'),
(15337, 'https://ror.org/00cxhe745', 'no_lang_code', 1, 'https://ror.org/00cxhe745 Design Science (United States)'),
(15338, 'https://ror.org/00cyg5d40', 'es', 1, 'https://ror.org/00cyg5d40 Fundació Privada per a la Investigació Nutricional'),
(15339, 'https://ror.org/00czndn44', 'no_lang_code', 1, 'https://ror.org/00czndn44 Eaton (United States)'),
(15340, 'https://ror.org/00czybt24', 'no_lang_code', 1, 'https://ror.org/00czybt24 Ɖvaluation Technologique IngĆ©nierie and Applications (France)'),
(15341, 'https://ror.org/00d08ne02', 'en', 1, 'https://ror.org/00d08ne02 Good Shepherd Penn Partners'),
(15342, 'https://ror.org/00d19bg72', 'no_lang_code', 1, 'https://ror.org/00d19bg72 GeoX (Hungary)'),
(15343, 'https://ror.org/00d269r04', 'no_lang_code', 1, 'https://ror.org/00d269r04 Ayanda Biosystems (Switzerland)'),
(15344, 'https://ror.org/00d3bct21', 'en', 1, 'https://ror.org/00d3bct21 Ann Arbor Hands On Museum'),
(15345, 'https://ror.org/00d7nha28', 'en', 1, 'https://ror.org/00d7nha28 European Council for Construction Research, Development and Innovation'),
(15346, 'https://ror.org/00d8n5w16', 'no_lang_code', 1, 'https://ror.org/00d8n5w16 Bioscientifica (United Kingdom)'),
(15347, 'https://ror.org/00d8t8t88', 'en', 1, 'https://ror.org/00d8t8t88 ETC International'),
(15348, 'https://ror.org/00d9ep044', 'no_lang_code', 1, 'https://ror.org/00d9ep044 Cadence Design Systems (Germany)'),
(15349, 'https://ror.org/00dcstt96', 'en', 1, 'https://ror.org/00dcstt96 Mediterranean Information Office for Environment Culture and Sustainable Development'),
(15350, 'https://ror.org/00dd5gy70', 'en', 1, 'https://ror.org/00dd5gy70 Family Centre for Health and Wellness'),
(15351, 'https://ror.org/00df0dn42', 'no_lang_code', 1, 'https://ror.org/00df0dn42 AMES Technology (United States)'),
(15352, 'https://ror.org/00dfbgk15', 'no_lang_code', 1, 'https://ror.org/00dfbgk15 AccuStrata (United States)'),
(15353, 'https://ror.org/00dgkkx07', 'no_lang_code', 1, 'https://ror.org/00dgkkx07 Institut für Getreideverarbeitung (Germany)'),
(15354, 'https://ror.org/00dhrp990', 'no_lang_code', 1, 'https://ror.org/00dhrp990 Associated Dental Products (United Kingdom)'),
(15355, 'https://ror.org/00dj8tn85', 'no_lang_code', 1, 'https://ror.org/00dj8tn85 Posti Group (Finland)'),
(15356, 'https://ror.org/00dk3f710', 'no_lang_code', 1, 'https://ror.org/00dk3f710 Mass Spec Analytical (United Kingdom)'),
(15357, 'https://ror.org/00dky2106', 'en', 1, 'https://ror.org/00dky2106 Plastic Surgery Foundation'),
(15358, 'https://ror.org/00dnz3441', 'no_lang_code', 1, 'https://ror.org/00dnz3441 Almex (Netherlands)'),
(15359, 'https://ror.org/00dpx2d03', 'en', 1, 'https://ror.org/00dpx2d03 Sarasota Memorial Health Care System'),
(15360, 'https://ror.org/00dq07t65', 'de', 1, 'https://ror.org/00dq07t65 Institut für Forschung und Transfer'),
(15361, 'https://ror.org/00dr9zd82', 'no_lang_code', 1, 'https://ror.org/00dr9zd82 Coris BioConcept (Belgium)'),
(15362, 'https://ror.org/00drde038', 'no_lang_code', 1, 'https://ror.org/00drde038 Blendics (United States)'),
(15363, 'https://ror.org/00dsy9f04', 'no_lang_code', 1, 'https://ror.org/00dsy9f04 EBSCO Industries (United States) EBSCO Information Services Ebsco information services'),
(15364, 'https://ror.org/00dszq289', 'en', 1, 'https://ror.org/00dszq289 Community Bridges'),
(15365, 'https://ror.org/00dt2yt23', 'en', 1, 'https://ror.org/00dt2yt23 Reading Partners'),
(15366, 'https://ror.org/00dttrm27', 'en', 1, 'https://ror.org/00dttrm27 Rockford Public Library'),
(15367, 'https://ror.org/00dvjtq12', 'en', 1, 'https://ror.org/00dvjtq12 Lake Erie College'),
(15368, 'https://ror.org/00dy5by13', 'en', 1, 'https://ror.org/00dy5by13 Wheeling Forward'),
(15369, 'https://ror.org/00dyspc39', 'en', 1, 'https://ror.org/00dyspc39 Sutter Institute for Medical Research'),
(15370, 'https://ror.org/00e1c8t20', 'en', 1, 'https://ror.org/00e1c8t20 EuroGeoSurveys'),
(15371, 'https://ror.org/00e1jkn44', 'cs', 1, 'https://ror.org/00e1jkn44 Energy Centre Ceske Budejovice'),
(15372, 'https://ror.org/00e32zj49', 'en', 1, 'https://ror.org/00e32zj49 Therapeutic Research Foundation'),
(15373, 'https://ror.org/00e386464', 'en', 1, 'https://ror.org/00e386464 European Photonics Industry Consortium'),
(15374, 'https://ror.org/00e45j822', 'no_lang_code', 1, 'https://ror.org/00e45j822 Eduworks (United States)'),
(15375, 'https://ror.org/00e4m3f78', 'no_lang_code', 1, 'https://ror.org/00e4m3f78 Hood Laboratories (United States)'),
(15376, 'https://ror.org/00e52a384', 'no_lang_code', 1, 'https://ror.org/00e52a384 Biocrede (United States)'),
(15377, 'https://ror.org/00e5y8987', 'no_lang_code', 1, 'https://ror.org/00e5y8987 CentMa (Germany)'),
(15378, 'https://ror.org/00e7ske31', 'no_lang_code', 1, 'https://ror.org/00e7ske31 Intellipro Group (United States)'),
(15379, 'https://ror.org/00e7vgg86', 'en', 1, 'https://ror.org/00e7vgg86 Lane College'),
(15380, 'https://ror.org/00e90q161', 'no_lang_code', 1, 'https://ror.org/00e90q161 ASCOMP (Switzerland)'),
(15381, 'https://ror.org/00eakxg05', 'no_lang_code', 1, 'https://ror.org/00eakxg05 Mosaix Software (United States)'),
(15382, 'https://ror.org/00eb1tn47', 'no_lang_code', 1, 'https://ror.org/00eb1tn47 Greenspace Scotland (United Kingdom)'),
(15383, 'https://ror.org/00ebjse29', 'no_lang_code', 1, 'https://ror.org/00ebjse29 Delong Instruments (Czechia)'),
(15384, 'https://ror.org/00ebjwr02', 'no_lang_code', 1, 'https://ror.org/00ebjwr02 New Hampshire Ball Bearings (Germany)'),
(15385, 'https://ror.org/00ecmkm26', 'en', 1, 'https://ror.org/00ecmkm26 Alaska Youth and Family Network'),
(15386, 'https://ror.org/00ecpkf08', 'no_lang_code', 1, 'https://ror.org/00ecpkf08 Ljubljana Passenger Transport'),
(15387, 'https://ror.org/00ed3k275', 'en', 1, 'https://ror.org/00ed3k275 Documentary Educational Resources'),
(15388, 'https://ror.org/00ee3x048', 'no_lang_code', 1, 'https://ror.org/00ee3x048 IFU (Germany)'),
(15389, 'https://ror.org/00eebj972', 'no_lang_code', 1, 'https://ror.org/00eebj972 Innovazione Automotive Metalmeccanica (Italy) Polo Innovazione Automotive'),
(15390, 'https://ror.org/00egpfv87', 'no_lang_code', 1, 'https://ror.org/00egpfv87 Adelphi Group (United Kingdom)'),
(15391, 'https://ror.org/00ehy3369', 'en', 1, 'https://ror.org/00ehy3369 Central Virginia Community College'),
(15392, 'https://ror.org/00emwta72', 'en', 1, 'https://ror.org/00emwta72 Makin It Happen Coalition for Resilient Youth'),
(15393, 'https://ror.org/00en6p903', 'en', 1, 'https://ror.org/00en6p903 Jackson Health System'),
(15394, 'https://ror.org/00enk9f97', 'en', 1, 'https://ror.org/00enk9f97 European Federation of Railway Trackwork Contractors'),
(15395, 'https://ror.org/00epfzn27', 'en', 1, 'https://ror.org/00epfzn27 Mental Health America of Oregon'),
(15396, 'https://ror.org/00eq3r432', 'en', 1, 'https://ror.org/00eq3r432 Skyland Care Center'),
(15397, 'https://ror.org/00eq8n589', 'it', 1, 'https://ror.org/00eq8n589 ASL Roma'),
(15398, 'https://ror.org/00erc4w88', 'no_lang_code', 1, 'https://ror.org/00erc4w88 ATRP Solutions (United States)'),
(15399, 'https://ror.org/00etec352', 'no_lang_code', 1, 'https://ror.org/00etec352 Beran Instruments (United Kingdom)'),
(15400, 'https://ror.org/00etktf93', 'en', 1, 'https://ror.org/00etktf93 Sunshine Kids Foundation'),
(15401, 'https://ror.org/00evbjw38', 'en', 1, 'https://ror.org/00evbjw38 Institute of Rural and Agricultural Development Instytut Rozwoju Wsi i Rolnictwa Polskiej Akademii Nauk'),
(15402, 'https://ror.org/00ez32163', 'en', 1, 'https://ror.org/00ez32163 GeoScienceWorld'),
(15403, 'https://ror.org/00f0rkp64', 'en', 1, 'https://ror.org/00f0rkp64 Delaware Coalition Against Domestic Violence'),
(15404, 'https://ror.org/00f3ntm46', 'en', 1, 'https://ror.org/00f3ntm46 American Nuclear Society'),
(15405, 'https://ror.org/00f3sby32', 'en', 1, 'https://ror.org/00f3sby32 Kirtland Community College'),
(15406, 'https://ror.org/00f42c411', 'no_lang_code', 1, 'https://ror.org/00f42c411 Lab_Bell (Canada)'),
(15407, 'https://ror.org/00f53v221', 'no_lang_code', 1, 'https://ror.org/00f53v221 Laser Tissue Welding (United States)'),
(15408, 'https://ror.org/00f7mq966', 'no_lang_code', 1, 'https://ror.org/00f7mq966 Vidavo (Greece)'),
(15409, 'https://ror.org/00fbzg557', 'no_lang_code', 1, 'https://ror.org/00fbzg557 Flying Bridge Technologies (United States)'),
(15410, 'https://ror.org/00fg75a18', 'no_lang_code', 1, 'https://ror.org/00fg75a18 2.-0 LCA Consultants (Denmark)'),
(15411, 'https://ror.org/00fgmmg43', 'no_lang_code', 1, 'https://ror.org/00fgmmg43 UniCredit (Italy) UniCredito Italiano'),
(15412, 'https://ror.org/00fgr8e68', 'no_lang_code', 1, 'https://ror.org/00fgr8e68 Strohl Medical Technologies (United States)'),
(15413, 'https://ror.org/00fgt9h27', 'no_lang_code', 1, 'https://ror.org/00fgt9h27 Carl Cloos Schweißtechnik (Germany)'),
(15414, 'https://ror.org/00fjjzm86', 'no_lang_code', 1, 'https://ror.org/00fjjzm86 Flucon Fluid Control (Germany)'),
(15415, 'https://ror.org/00fjpbt79', 'no_lang_code', 1, 'https://ror.org/00fjpbt79 ePack (United States)'),
(15416, 'https://ror.org/00fp0qh18', 'en', 1, 'https://ror.org/00fp0qh18 International Commission for the Protection of the Danube River Internationale Kommission zum Schutz der Donau'),
(15417, 'https://ror.org/00fpmfs44', 'no_lang_code', 1, 'https://ror.org/00fpmfs44 Andritz (Finland)'),
(15418, 'https://ror.org/00fpt6s33', 'no_lang_code', 1, 'https://ror.org/00fpt6s33 AdaCore (France)'),
(15419, 'https://ror.org/00fpvt160', 'no_lang_code', 1, 'https://ror.org/00fpvt160 Inhouse Engineering (Germany)'),
(15420, 'https://ror.org/00frsr784', 'en', 1, 'https://ror.org/00frsr784 European Council of Applied Sciences and Engineering'),
(15421, 'https://ror.org/00fsfag68', 'no_lang_code', 1, 'https://ror.org/00fsfag68 ImmBio (United Kingdom)'),
(15422, 'https://ror.org/00fy4at53', 'en', 1, 'https://ror.org/00fy4at53 Institute of Mathematics and Computer Science'),
(15423, 'https://ror.org/00fyp5993', 'en', 1, 'https://ror.org/00fyp5993 Essential Partners'),
(15424, 'https://ror.org/00fyvea65', 'en', 1, 'https://ror.org/00fyvea65 National Library of Education'),
(15425, 'https://ror.org/00fz5b994', 'no_lang_code', 1, 'https://ror.org/00fz5b994 AbilityNet (United Kingdom)'),
(15426, 'https://ror.org/00g0gdw57', 'en', 1, 'https://ror.org/00g0gdw57 AIDS Research Consortium of Atlanta'),
(15427, 'https://ror.org/00g1w6p21', 'en', 1, 'https://ror.org/00g1w6p21 Youth & Opportunity United'),
(15428, 'https://ror.org/00g251176', 'en', 1, 'https://ror.org/00g251176 Middletown Public Library'),
(15429, 'https://ror.org/00g46nx55', 'en', 1, 'https://ror.org/00g46nx55 New York State Energy Research and Development Authority'),
(15430, 'https://ror.org/00g4cq821', 'no_lang_code', 1, 'https://ror.org/00g4cq821 Triple Point Technology (Canada)'),
(15431, 'https://ror.org/00g6pb267', 'fr', 1, 'https://ror.org/00g6pb267 Bureau de CoopƩration Interuniversitaire, ConfƩrence des Recteurs et des Principaux des UniversitƩs du QuƩbec'),
(15432, 'https://ror.org/00g8qdw34', 'no_lang_code', 1, 'https://ror.org/00g8qdw34 Arisaph Pharmaceuticals (United States)'),
(15433, 'https://ror.org/00g930198', 'en', 1, 'https://ror.org/00g930198 The Stillpoint Foundation'),
(15434, 'https://ror.org/00g9xdc37', 'en', 1, 'https://ror.org/00g9xdc37 United States House of Representatives'),
(15435, 'https://ror.org/00gbzqw74', 'en', 1, 'https://ror.org/00gbzqw74 Wolf Park'),
(15436, 'https://ror.org/00gbzwp97', 'no', 1, 'https://ror.org/00gbzwp97 Direktoratet for forvaltning og IKT'),
(15437, 'https://ror.org/00gdzr170', 'en', 1, 'https://ror.org/00gdzr170 Baylor Scott & White - Central Texas Foundation'),
(15438, 'https://ror.org/00gepdd80', 'en', 1, 'https://ror.org/00gepdd80 Atmosphere Systems and Services'),
(15439, 'https://ror.org/00gfwqa54', 'en', 1, 'https://ror.org/00gfwqa54 E-Seniors'),
(15440, 'https://ror.org/00gh58f75', 'en', 1, 'https://ror.org/00gh58f75 Library of Birmingham'),
(15441, 'https://ror.org/00gh98d15', 'no_lang_code', 1, 'https://ror.org/00gh98d15 Straumann (Sweden)'),
(15442, 'https://ror.org/00gk1z123', 'no_lang_code', 1, 'https://ror.org/00gk1z123 Euskaltel (Spain)'),
(15443, 'https://ror.org/00gm39w38', 'en', 1, 'https://ror.org/00gm39w38 Women Involved in Nurturing, Giving, Sharing'),
(15444, 'https://ror.org/00gnq3g83', 'it', 1, 'https://ror.org/00gnq3g83 Accademia Nazionale di Santa Cecilia National Academy of St Cecilia'),
(15445, 'https://ror.org/00gpg2q85', 'en', 1, 'https://ror.org/00gpg2q85 Lexington College'),
(15446, 'https://ror.org/00gs0ax16', 'en', 1, 'https://ror.org/00gs0ax16 Institut pour les Ʃtudes de politique internationale Institute for International Political Studies'),
(15447, 'https://ror.org/00gt16g40', 'en', 1, 'https://ror.org/00gt16g40 Fraunhofer Institute for Structural Durability and System Reliability Fraunhofer-Institut für Betriebsfestigkeit und Systemzuverlässigkeit'),
(15448, 'https://ror.org/00gtfax65', 'en', 1, 'https://ror.org/00gtfax65 International Atomic Energy Agency'),
(15449, 'https://ror.org/00gy17c75', 'no_lang_code', 1, 'https://ror.org/00gy17c75 Fon (Spain)'),
(15450, 'https://ror.org/00h0js975', 'no_lang_code', 1, 'https://ror.org/00h0js975 ABIS (Poland)'),
(15451, 'https://ror.org/00h2j5q24', 'it', 1, 'https://ror.org/00h2j5q24 Azienda UnitĆ  Sanitaria Locale 11 di Empoli'),
(15452, 'https://ror.org/00h2r3g41', 'no_lang_code', 1, 'https://ror.org/00h2r3g41 Ausa (Spain)'),
(15453, 'https://ror.org/00h4bkt10', 'no_lang_code', 1, 'https://ror.org/00h4bkt10 GALAB Laboratories (Germany)'),
(15454, 'https://ror.org/00h653085', 'no_lang_code', 1, 'https://ror.org/00h653085 3C Research (United Kingdom)'),
(15455, 'https://ror.org/00h6azh28', 'no_lang_code', 1, 'https://ror.org/00h6azh28 Encore Pharmaceuticals (United States)'),
(15456, 'https://ror.org/00h86n631', 'en', 1, 'https://ror.org/00h86n631 Children''s Health Fund'),
(15457, 'https://ror.org/00hasdx88', 'en', 1, 'https://ror.org/00hasdx88 Washington Research Foundation'),
(15458, 'https://ror.org/00hjfh776', 'no_lang_code', 1, 'https://ror.org/00hjfh776 StemSynergy Therapeutics (United States)'),
(15459, 'https://ror.org/00hkb6y19', 'en', 1, 'https://ror.org/00hkb6y19 Her Majesty''s Revenue and Customs'),
(15460, 'https://ror.org/00hkhma91', 'en', 1, 'https://ror.org/00hkhma91 International Association of Environmental Mutagenesis and Genomics Societies'),
(15461, 'https://ror.org/00hn3tc42', 'no_lang_code', 1, 'https://ror.org/00hn3tc42 AeroTex UK (United Kingdom)'),
(15462, 'https://ror.org/00hq2z256', 'no_lang_code', 1, 'https://ror.org/00hq2z256 Keraben Grupo (Spain)'),
(15463, 'https://ror.org/00hq40871', 'no_lang_code', 1, 'https://ror.org/00hq40871 Jacobson Holman (United States)'),
(15464, 'https://ror.org/00hsg6w24', 'no_lang_code', 1, 'https://ror.org/00hsg6w24 ET Enterprises (United Kingdom)'),
(15465, 'https://ror.org/00htj2222', 'no_lang_code', 1, 'https://ror.org/00htj2222 Corac Group (United Kingdom)'),
(15466, 'https://ror.org/00hx26749', 'no_lang_code', 1, 'https://ror.org/00hx26749 Q Therapeutics (United States)'),
(15467, 'https://ror.org/00hx47p69', 'fr', 1, 'https://ror.org/00hx47p69 Maiz''Europ'''),
(15468, 'https://ror.org/00hxxb066', 'en', 1, 'https://ror.org/00hxxb066 Community Chest of Leonia'),
(15469, 'https://ror.org/00j1qfq25', 'no_lang_code', 1, 'https://ror.org/00j1qfq25 Aceites Malagon (Spain)'),
(15470, 'https://ror.org/00j3nqj92', 'en', 1, 'https://ror.org/00j3nqj92 Institute for Behavior Change'),
(15471, 'https://ror.org/00j4h9q86', 'no_lang_code', 1, 'https://ror.org/00j4h9q86 Ingenieurgesellschaft Auto und Verkehr (Germany)'),
(15472, 'https://ror.org/00j6whn75', 'en', 1, 'https://ror.org/00j6whn75 Rocky Boy Health Board'),
(15473, 'https://ror.org/00ja9zg03', 'de', 1, 'https://ror.org/00ja9zg03 Gematik Gesellschaft für Telematikanwendungen der Gesundheitskarte'),
(15474, 'https://ror.org/00jafye06', 'no_lang_code', 1, 'https://ror.org/00jafye06 Intelligentsia Consultants (Luxembourg)'),
(15475, 'https://ror.org/00jaqhx10', 'no_lang_code', 1, 'https://ror.org/00jaqhx10 APDM (United States)'),
(15476, 'https://ror.org/00jb2qs89', 'no_lang_code', 1, 'https://ror.org/00jb2qs89 ImageCat (United Kingdom)'),
(15477, 'https://ror.org/00jccxv75', 'en', 1, 'https://ror.org/00jccxv75 Law and Internet Foundation'),
(15478, 'https://ror.org/00jd34n28', 'no_lang_code', 1, 'https://ror.org/00jd34n28 Charter Kontron (United Kingdom)'),
(15479, 'https://ror.org/00jdtc447', 'no_lang_code', 1, 'https://ror.org/00jdtc447 Ab.Acus (Italy)'),
(15480, 'https://ror.org/00jh09798', 'no_lang_code', 1, 'https://ror.org/00jh09798 Acos Group (Germany)'),
(15481, 'https://ror.org/00jjh2b95', 'no_lang_code', 1, 'https://ror.org/00jjh2b95 BST Bio Sensor Technology (Germany)'),
(15482, 'https://ror.org/00jkncn63', 'en', 1, 'https://ror.org/00jkncn63 Beijing Sanbo Brain Hospital åŒ—äŗ¬äø‰åšč„‘ē§‘åŒ»é™¢'),
(15483, 'https://ror.org/00jrtvk29', 'en', 1, 'https://ror.org/00jrtvk29 UniversitƩ de Wilmington Wilmington University'),
(15484, 'https://ror.org/00js7c390', 'no_lang_code', 1, 'https://ror.org/00js7c390 Amyris (United States)'),
(15485, 'https://ror.org/00jvx3029', 'en', 1, 'https://ror.org/00jvx3029 Kansas State Department of Education'),
(15486, 'https://ror.org/00jxjq872', 'no_lang_code', 1, 'https://ror.org/00jxjq872 Citard Services (Cyprus)'),
(15487, 'https://ror.org/00jy1h085', 'en', 1, 'https://ror.org/00jy1h085 Young Women''s Christian Association'),
(15488, 'https://ror.org/00k1x1157', 'en', 1, 'https://ror.org/00k1x1157 Variety The Children''s Charity'),
(15489, 'https://ror.org/00k320b46', 'no_lang_code', 1, 'https://ror.org/00k320b46 Ion Linac Systems (United States)'),
(15490, 'https://ror.org/00k3bk483', 'en', 1, 'https://ror.org/00k3bk483 Behavioral Health Systems'),
(15491, 'https://ror.org/00k3gyk15', 'no_lang_code', 1, 'https://ror.org/00k3gyk15 China National Pharmaceutical Group Corporation (China) äø­å›½åŒ»čÆé›†å›¢ę€»å…¬åø'),
(15492, 'https://ror.org/00k6bf447', 'en', 1, 'https://ror.org/00k6bf447 Clifford Chance'),
(15493, 'https://ror.org/00k9x6n46', 'en', 1, 'https://ror.org/00k9x6n46 Institute of Terrestrial Magnetism Ionosphere and Radio Wave Propagation Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ земного магнетизма, ионосферы Šø Ń€Š°ŃŠæŃ€Š¾ŃŃ‚Ń€Š°Š½ŠµŠ½ŠøŃ раГиоволн им. Š. Š’. Пушкова'),
(15494, 'https://ror.org/00kczx164', 'no_lang_code', 1, 'https://ror.org/00kczx164 Verda Bio (United States)'),
(15495, 'https://ror.org/00kemap29', 'no_lang_code', 1, 'https://ror.org/00kemap29 Aeromechs (Italy)'),
(15496, 'https://ror.org/00kergy42', 'no_lang_code', 1, 'https://ror.org/00kergy42 Ancile (United States)'),
(15497, 'https://ror.org/00kf0ew11', 'en', 1, 'https://ror.org/00kf0ew11 University Center of Lake County'),
(15498, 'https://ror.org/00kgr1f83', 'no_lang_code', 1, 'https://ror.org/00kgr1f83 Chemviron Carbon (United Kingdom)'),
(15499, 'https://ror.org/00kjw0r97', 'no_lang_code', 1, 'https://ror.org/00kjw0r97 CirComp (Germany)'),
(15500, 'https://ror.org/00kjw1h22', 'no_lang_code', 1, 'https://ror.org/00kjw1h22 Itasca Consultants (Germany)'),
(15501, 'https://ror.org/00km0q180', 'no_lang_code', 1, 'https://ror.org/00km0q180 Brighten Optics (Canada)'),
(15502, 'https://ror.org/00kmq0020', 'en', 1, 'https://ror.org/00kmq0020 Southern Maine Medical Center'),
(15503, 'https://ror.org/00kn2ga67', 'en', 1, 'https://ror.org/00kn2ga67 British Poultry Council'),
(15504, 'https://ror.org/00kqt1k28', 'no_lang_code', 1, 'https://ror.org/00kqt1k28 Van Wees (Netherlands)'),
(15505, 'https://ror.org/00ktc0f44', 'no_lang_code', 1, 'https://ror.org/00ktc0f44 Air Products (Germany)'),
(15506, 'https://ror.org/00kv47y95', 'no_lang_code', 1, 'https://ror.org/00kv47y95 InRay Solutions (Bulgaria)'),
(15507, 'https://ror.org/00kx89908', 'no_lang_code', 1, 'https://ror.org/00kx89908 Breonics (United States)'),
(15508, 'https://ror.org/00m08df59', 'no_lang_code', 1, 'https://ror.org/00m08df59 BDR Thermea (United Kingdom)'),
(15509, 'https://ror.org/00m08vr46', 'en', 1, 'https://ror.org/00m08vr46 Athens Chamber of Commerce and Industry'),
(15510, 'https://ror.org/00m1br750', 'no_lang_code', 1, 'https://ror.org/00m1br750 GMSbiotech (United States)'),
(15511, 'https://ror.org/00m1r1367', 'en', 1, 'https://ror.org/00m1r1367 National Association of Team Survivor'),
(15512, 'https://ror.org/00m2wbw87', 'no_lang_code', 1, 'https://ror.org/00m2wbw87 Colligo (Canada)'),
(15513, 'https://ror.org/00m35tp20', 'no_lang_code', 1, 'https://ror.org/00m35tp20 2D Formazione (Italy)'),
(15514, 'https://ror.org/00m3dfd98', 'en', 1, 'https://ror.org/00m3dfd98 VitaValley Foundation'),
(15515, 'https://ror.org/00m4kzh57', 'no_lang_code', 1, 'https://ror.org/00m4kzh57 Amplitude Technologies (France)'),
(15516, 'https://ror.org/00m4vn742', 'no_lang_code', 1, 'https://ror.org/00m4vn742 LafargeHolcim (United Kingdom)'),
(15517, 'https://ror.org/00m51t454', 'no_lang_code', 1, 'https://ror.org/00m51t454 SavvyDox (Canada)'),
(15518, 'https://ror.org/00m57xb34', 'no_lang_code', 1, 'https://ror.org/00m57xb34 G24 Power (United Kingdom)'),
(15519, 'https://ror.org/00m5yvh71', 'no_lang_code', 1, 'https://ror.org/00m5yvh71 Lhoist (United Kingdom)'),
(15520, 'https://ror.org/00m694d24', 'en', 1, 'https://ror.org/00m694d24 European Projects & Management Agency'),
(15521, 'https://ror.org/00m6gc198', 'no_lang_code', 1, 'https://ror.org/00m6gc198 Diasa Industrial (Spain)'),
(15522, 'https://ror.org/00m6hsp80', 'en', 1, 'https://ror.org/00m6hsp80 Herzliya Medical Center ×”×Ø×¦×œ×™×” מדיקל הנטר'),
(15523, 'https://ror.org/00m76dx40', 'no_lang_code', 1, 'https://ror.org/00m76dx40 Gliamed (United States)'),
(15524, 'https://ror.org/00m96gg93', 'no_lang_code', 1, 'https://ror.org/00m96gg93 Altera (United Kingdom)'),
(15525, 'https://ror.org/00m96vp86', 'en', 1, 'https://ror.org/00m96vp86 Queensland Eye Institute'),
(15526, 'https://ror.org/00m9r8n64', 'en', 1, 'https://ror.org/00m9r8n64 Federation of American Scientists'),
(15527, 'https://ror.org/00maq2822', 'en', 1, 'https://ror.org/00maq2822 Self Determination Housing Project of Pennsylvania'),
(15528, 'https://ror.org/00marjb61', 'no_lang_code', 1, 'https://ror.org/00marjb61 Materials Innovation Technologies (United States)'),
(15529, 'https://ror.org/00matwt90', 'no_lang_code', 1, 'https://ror.org/00matwt90 Giraf PM (Germany)'),
(15530, 'https://ror.org/00mcbta55', 'en', 1, 'https://ror.org/00mcbta55 American Association for Clinical Chemistry'),
(15531, 'https://ror.org/00mcjxw34', 'en', 1, 'https://ror.org/00mcjxw34 Itawamba Community College'),
(15532, 'https://ror.org/00mcpwa21', 'en', 1, 'https://ror.org/00mcpwa21 Unicorn Children''s Foundation'),
(15533, 'https://ror.org/00md6a739', 'en', 1, 'https://ror.org/00md6a739 Phillips Collection'),
(15534, 'https://ror.org/00mdqpf86', 'no_lang_code', 1, 'https://ror.org/00mdqpf86 Bepress (United States)'),
(15535, 'https://ror.org/00mfsk397', 'en', 1, 'https://ror.org/00mfsk397 District of Columbia Public Library'),
(15536, 'https://ror.org/00mfy6m96', 'no_lang_code', 1, 'https://ror.org/00mfy6m96 DxDiscovery (United States)'),
(15537, 'https://ror.org/00mh8gk95', 'en', 1, 'https://ror.org/00mh8gk95 Shanti Project'),
(15538, 'https://ror.org/00mka9g75', 'en', 1, 'https://ror.org/00mka9g75 Positively Pink Packages'),
(15539, 'https://ror.org/00mkw8c80', 'no_lang_code', 1, 'https://ror.org/00mkw8c80 KloƩ (France)'),
(15540, 'https://ror.org/00mp1mt27', 'en', 1, 'https://ror.org/00mp1mt27 Knowledge Systems Institute'),
(15541, 'https://ror.org/00mp82g69', 'no_lang_code', 1, 'https://ror.org/00mp82g69 Holosonics (United States)'),
(15542, 'https://ror.org/00ms70536', 'no_lang_code', 1, 'https://ror.org/00ms70536 Babcock & Wilcox (Spain)'),
(15543, 'https://ror.org/00mssm162', 'en', 1, 'https://ror.org/00mssm162 Community Link'),
(15544, 'https://ror.org/00mtv4c34', 'en', 1, 'https://ror.org/00mtv4c34 Community Health Councils'),
(15545, 'https://ror.org/00mwp5989', 'en', 1, 'https://ror.org/00mwp5989 Amyotrophic Lateral Sclerosis Association'),
(15546, 'https://ror.org/00mww6988', 'no_lang_code', 1, 'https://ror.org/00mww6988 KBR (United Kingdom)'),
(15547, 'https://ror.org/00mynyp54', 'de', 1, 'https://ror.org/00mynyp54 Allgemeiner Deutscher Automobil Club General German Automobile Club'),
(15548, 'https://ror.org/00mzrph17', 'en', 1, 'https://ror.org/00mzrph17 Lincoln Park Zoo'),
(15549, 'https://ror.org/00n19h079', 'no_lang_code', 1, 'https://ror.org/00n19h079 Arjowiggins (France)'),
(15550, 'https://ror.org/00n1s6s20', 'en', 1, 'https://ror.org/00n1s6s20 United States Holocaust Memorial Museum'),
(15551, 'https://ror.org/00n28tr38', 'no_lang_code', 1, 'https://ror.org/00n28tr38 Coexpair (Belgium)'),
(15552, 'https://ror.org/00n3hdp82', 'no_lang_code', 1, 'https://ror.org/00n3hdp82 Bsoft (Italy)'),
(15553, 'https://ror.org/00n523x67', 'en', 1, 'https://ror.org/00n523x67 Crawley Borough Council'),
(15554, 'https://ror.org/00n74s057', 'en', 1, 'https://ror.org/00n74s057 Energy Institute of the Healing Arts Foundation'),
(15555, 'https://ror.org/00n7jbm43', 'no_lang_code', 1, 'https://ror.org/00n7jbm43 Kopitarna Sevnica (Slovenia)'),
(15556, 'https://ror.org/00n855a93', 'en', 1, 'https://ror.org/00n855a93 Culver Stockton College, Culver–Stockton College'),
(15557, 'https://ror.org/00n893e13', 'no_lang_code', 1, 'https://ror.org/00n893e13 Environmental Institute'),
(15558, 'https://ror.org/00n89wj26', 'no_lang_code', 1, 'https://ror.org/00n89wj26 Comexi Group (Spain)'),
(15559, 'https://ror.org/00n8ttd98', 'en', 1, 'https://ror.org/00n8ttd98 Institute of Atmospheric Sciences and Climate Istituto di Scienze dell''Atmosfera e del Clima'),
(15560, 'https://ror.org/00n8yh935', 'en', 1, 'https://ror.org/00n8yh935 Serve Outdoors​ Texas Hill Country Chapter'),
(15561, 'https://ror.org/00n9hrm35', 'no_lang_code', 1, 'https://ror.org/00n9hrm35 Metrohm Autolab (Netherlands)'),
(15562, 'https://ror.org/00nan4c27', 'no_lang_code', 1, 'https://ror.org/00nan4c27 Inter Science Research Associates (United States)'),
(15563, 'https://ror.org/00nbsc253', 'fr', 1, 'https://ror.org/00nbsc253 Association PƓle Environnement Sud Aquitaine'),
(15564, 'https://ror.org/00nexz950', 'no_lang_code', 1, 'https://ror.org/00nexz950 Essrg (Hungary)'),
(15565, 'https://ror.org/00nfc4433', 'en', 1, 'https://ror.org/00nfc4433 MidHudson Regional Hospital'),
(15566, 'https://ror.org/00nj98j61', 'en', 1, 'https://ror.org/00nj98j61 Sudha Hospital and Medical Research Centre'),
(15567, 'https://ror.org/00nm6n237', 'no_lang_code', 1, 'https://ror.org/00nm6n237 Brighton Technologies Group (United States)'),
(15568, 'https://ror.org/00np58203', 'no_lang_code', 1, 'https://ror.org/00np58203 Inventys Thermal Technologies (Canada)'),
(15569, 'https://ror.org/00np6sw71', 'no_lang_code', 1, 'https://ror.org/00np6sw71 CASON Engineering (Hungary)'),
(15570, 'https://ror.org/00nrh3w24', 'no_lang_code', 1, 'https://ror.org/00nrh3w24 Aratos Technologies (Greece) Ī†Ī”Ī‘Ī¤ĪŸĪ£ Ī¤Ī•Ī§ĪĪŸĪ›ĪŸĪ“ĪŠĪ•Ī£'),
(15571, 'https://ror.org/00nry9f97', 'no_lang_code', 1, 'https://ror.org/00nry9f97 Gizelis Robotics (Greece)'),
(15572, 'https://ror.org/00ntmke92', 'en', 1, 'https://ror.org/00ntmke92 Artez and Innovatie'),
(15573, 'https://ror.org/00ntmzg98', 'no_lang_code', 1, 'https://ror.org/00ntmzg98 Meritor (United States)'),
(15574, 'https://ror.org/00nve0j20', 'en', 1, 'https://ror.org/00nve0j20 Wisconsin Lutheran College'),
(15575, 'https://ror.org/00p0vea65', 'no_lang_code', 1, 'https://ror.org/00p0vea65 Abqmr (United States)'),
(15576, 'https://ror.org/00p11e287', 'en', 1, 'https://ror.org/00p11e287 Metropolitan Community College'),
(15577, 'https://ror.org/00p121j58', 'no_lang_code', 1, 'https://ror.org/00p121j58 Cardboard Citizens (United Kingdom)'),
(15578, 'https://ror.org/00p2bz193', 'no_lang_code', 1, 'https://ror.org/00p2bz193 I-Moss (Belgium)'),
(15579, 'https://ror.org/00p6dtr08', 'no_lang_code', 1, 'https://ror.org/00p6dtr08 Blatchford (United Kingdom)'),
(15580, 'https://ror.org/00p7ghc88', 'en', 1, 'https://ror.org/00p7ghc88 Larrabee Center'),
(15581, 'https://ror.org/00p7gy719', 'en', 1, 'https://ror.org/00p7gy719 Southland Hispanic Leadership Council'),
(15582, 'https://ror.org/00p7jhx04', 'no_lang_code', 1, 'https://ror.org/00p7jhx04 Medtrac Technologies (United States)'),
(15583, 'https://ror.org/00p8rk339', 'no_lang_code', 1, 'https://ror.org/00p8rk339 Euroinks (Italy)'),
(15584, 'https://ror.org/00p8xx315', 'no_lang_code', 1, 'https://ror.org/00p8xx315 CCC Diagnostics (United States)'),
(15585, 'https://ror.org/00p941317', 'no_lang_code', 1, 'https://ror.org/00p941317 Innovasjon Norge Innovation Norway (Norway)'),
(15586, 'https://ror.org/00pfa9y72', 'no_lang_code', 1, 'https://ror.org/00pfa9y72 Ribbon Communications (Israel)'),
(15587, 'https://ror.org/00pm11v55', 'no_lang_code', 1, 'https://ror.org/00pm11v55 Dekimo (Belgium)'),
(15588, 'https://ror.org/00pngmk50', 'en', 1, 'https://ror.org/00pngmk50 Whiteside County Health Department'),
(15589, 'https://ror.org/00pp1p071', 'no_lang_code', 1, 'https://ror.org/00pp1p071 Banss (Germany)'),
(15590, 'https://ror.org/00ptywt76', 'en', 1, 'https://ror.org/00ptywt76 Queer African Youth Networking Center'),
(15591, 'https://ror.org/00pwar297', 'fr', 1, 'https://ror.org/00pwar297 IFAPME');
INSERT INTO `rors` VALUES
(15592, 'https://ror.org/00q25bx70', 'no_lang_code', 1, 'https://ror.org/00q25bx70 Doximity (United States)'),
(15593, 'https://ror.org/00q3fka24', 'no_lang_code', 1, 'https://ror.org/00q3fka24 Altairnano (United States)'),
(15594, 'https://ror.org/00q3qq605', 'no_lang_code', 1, 'https://ror.org/00q3qq605 MA Systems and Control (United Kingdom)'),
(15595, 'https://ror.org/00q4gxb20', 'no_lang_code', 1, 'https://ror.org/00q4gxb20 OmniVision Technologies (United States)'),
(15596, 'https://ror.org/00q4tes89', 'en', 1, 'https://ror.org/00q4tes89 Boston Architectural College'),
(15597, 'https://ror.org/00q519868', 'en', 1, 'https://ror.org/00q519868 Grwp Llandrillo Menai'),
(15598, 'https://ror.org/00q62px07', 'no_lang_code', 1, 'https://ror.org/00q62px07 Eltek Semiconductors (United Kingdom)'),
(15599, 'https://ror.org/00q6dj830', 'no_lang_code', 1, 'https://ror.org/00q6dj830 WeCanRow DC'),
(15600, 'https://ror.org/00q84em04', 'en', 1, 'https://ror.org/00q84em04 GalerĆ­a Nacional de Arte National Gallery of Art'),
(15601, 'https://ror.org/00q87b836', 'no_lang_code', 1, 'https://ror.org/00q87b836 Impact Innovations (Germany)'),
(15602, 'https://ror.org/00qa1j177', 'en', 1, 'https://ror.org/00qa1j177 National Ability Center'),
(15603, 'https://ror.org/00qd1fk85', 'en', 1, 'https://ror.org/00qd1fk85 Navicent Health'),
(15604, 'https://ror.org/00qd7ns71', 'en', 1, 'https://ror.org/00qd7ns71 ViteroRetinal Surgery'),
(15605, 'https://ror.org/00qmb6m92', 'en', 1, 'https://ror.org/00qmb6m92 The Nelson-Atkins Museum of Art'),
(15606, 'https://ror.org/00qmny302', 'en', 1, 'https://ror.org/00qmny302 St. James AME Zion Church'),
(15607, 'https://ror.org/00qmzzn75', 'en', 1, 'https://ror.org/00qmzzn75 Florida Center for Early Childhood'),
(15608, 'https://ror.org/00qnwh567', 'es', 1, 'https://ror.org/00qnwh567 Federación Española de Padres de Niños con CÔncer'),
(15609, 'https://ror.org/00qq34m93', 'no_lang_code', 1, 'https://ror.org/00qq34m93 Crabbe Consulting'),
(15610, 'https://ror.org/00qq8tm81', 'en', 1, 'https://ror.org/00qq8tm81 Fairmont Senior High School'),
(15611, 'https://ror.org/00qqbzv64', 'en', 1, 'https://ror.org/00qqbzv64 The Painted Turtle'),
(15612, 'https://ror.org/00qv12s34', 'no_lang_code', 1, 'https://ror.org/00qv12s34 Coaxial Power Systems (United Kingdom)'),
(15613, 'https://ror.org/00qva7y21', 'en', 1, 'https://ror.org/00qva7y21 Academy for Healthcare Improvement'),
(15614, 'https://ror.org/00qvvtk35', 'en', 1, 'https://ror.org/00qvvtk35 St. Mary’s Health Care System'),
(15615, 'https://ror.org/00qwmbr29', 'en', 1, 'https://ror.org/00qwmbr29 Architectural Research Centers Consortium'),
(15616, 'https://ror.org/00r0f2n85', 'en', 1, 'https://ror.org/00r0f2n85 Accelerace'),
(15617, 'https://ror.org/00r59ab07', 'en', 1, 'https://ror.org/00r59ab07 Sunny Days Learning Center of Stickney'),
(15618, 'https://ror.org/00r5yyv69', 'en', 1, 'https://ror.org/00r5yyv69 European Trade Union Institute'),
(15619, 'https://ror.org/00r66br24', 'no_lang_code', 1, 'https://ror.org/00r66br24 Advanced Defence Materials (United Kingdom)'),
(15620, 'https://ror.org/00r67vw60', 'en', 1, 'https://ror.org/00r67vw60 Women Alive'),
(15621, 'https://ror.org/00r99m169', 'en', 1, 'https://ror.org/00r99m169 Council of State Archivists'),
(15622, 'https://ror.org/00r9rdf15', 'en', 1, 'https://ror.org/00r9rdf15 Ministry of Transport and Communications kommunikationsministeriet liikenne- ja viestintƤministeriƶ'),
(15623, 'https://ror.org/00rc8tb78', 'en', 1, 'https://ror.org/00rc8tb78 United American Indian Involvement'),
(15624, 'https://ror.org/00rcs2c13', 'no_lang_code', 1, 'https://ror.org/00rcs2c13 BeTV (Belgium)'),
(15625, 'https://ror.org/00rdbkh09', 'en', 1, 'https://ror.org/00rdbkh09 Canadian Coalition for Seniors Mental Health'),
(15626, 'https://ror.org/00rdsgd78', 'en', 1, 'https://ror.org/00rdsgd78 Mercy Hospital Washington'),
(15627, 'https://ror.org/00reded37', 'no_lang_code', 1, 'https://ror.org/00reded37 Valentia Biopharma (Spain)'),
(15628, 'https://ror.org/00rgeck60', 'no_lang_code', 1, 'https://ror.org/00rgeck60 Evonik (United Kingdom)'),
(15629, 'https://ror.org/00rgwvs20', 'no_lang_code', 1, 'https://ror.org/00rgwvs20 Exel Composites (United Kingdom)'),
(15630, 'https://ror.org/00rk1ea29', 'en', 1, 'https://ror.org/00rk1ea29 International Centre for Black Sea Studies'),
(15631, 'https://ror.org/00rk8p873', 'pt', 1, 'https://ror.org/00rk8p873 Centro De Formação Profissional Da Indústria Da Construção Civil E Obras Públicas Do Sul'),
(15632, 'https://ror.org/00rke6v95', 'no_lang_code', 1, 'https://ror.org/00rke6v95 Covalab (France)'),
(15633, 'https://ror.org/00rqqd590', 'no_lang_code', 1, 'https://ror.org/00rqqd590 Efficient Innovation (France)'),
(15634, 'https://ror.org/00rvn7j03', 'en', 1, 'https://ror.org/00rvn7j03 Santa Fe Public Schools'),
(15635, 'https://ror.org/00rw81y84', 'en', 1, 'https://ror.org/00rw81y84 Kalamazoo Valley Community College'),
(15636, 'https://ror.org/00rwgk448', 'es', 1, 'https://ror.org/00rwgk448 Fundación INTRAS'),
(15637, 'https://ror.org/00s1pj327', 'en', 1, 'https://ror.org/00s1pj327 AIDS Arms'),
(15638, 'https://ror.org/00s2jha28', 'fr', 1, 'https://ror.org/00s2jha28 Institut des Sciences Agronomiques du Burundi'),
(15639, 'https://ror.org/00s2mdg70', 'en', 1, 'https://ror.org/00s2mdg70 Asian American Drug Abuse Program'),
(15640, 'https://ror.org/00s3q3549', 'en', 1, 'https://ror.org/00s3q3549 Mayor''s Fund to Advance New York City'),
(15641, 'https://ror.org/00s6jcp09', 'no_lang_code', 1, 'https://ror.org/00s6jcp09 Laserlith (United States)'),
(15642, 'https://ror.org/00s7qay03', 'en', 1, 'https://ror.org/00s7qay03 Portage County Public Library'),
(15643, 'https://ror.org/00sadm236', 'no_lang_code', 1, 'https://ror.org/00sadm236 Centro Studi Industriali'),
(15644, 'https://ror.org/00sc4h441', 'no_lang_code', 1, 'https://ror.org/00sc4h441 AM Testing (Italy)'),
(15645, 'https://ror.org/00sd1ey15', 'no_lang_code', 1, 'https://ror.org/00sd1ey15 Castle Rock Edinvar (United Kingdom)'),
(15646, 'https://ror.org/00sddvp48', 'no_lang_code', 1, 'https://ror.org/00sddvp48 DNAVision (Belgium)'),
(15647, 'https://ror.org/00sdk9579', 'no_lang_code', 1, 'https://ror.org/00sdk9579 Hakkı Usta Ogulları Mak.San.Tic (Turkey)'),
(15648, 'https://ror.org/00see0y83', 'en', 1, 'https://ror.org/00see0y83 Ministry of Education, Arts and Culture'),
(15649, 'https://ror.org/00sfn8y78', 'en', 1, 'https://ror.org/00sfn8y78 Sanford Research'),
(15650, 'https://ror.org/00sfnf466', 'en', 1, 'https://ror.org/00sfnf466 Franciscan University of Steubenville'),
(15651, 'https://ror.org/00sgajx84', 'no_lang_code', 1, 'https://ror.org/00sgajx84 BASF (Netherlands)'),
(15652, 'https://ror.org/00sghps33', 'no_lang_code', 1, 'https://ror.org/00sghps33 Essen BioScience (United States)'),
(15653, 'https://ror.org/00shhkw75', 'no_lang_code', 1, 'https://ror.org/00shhkw75 Airlan (Spain)'),
(15654, 'https://ror.org/00sn5vc60', 'en', 1, 'https://ror.org/00sn5vc60 Vigo County Public Library'),
(15655, 'https://ror.org/00spcac30', 'no_lang_code', 1, 'https://ror.org/00spcac30 Guidance (United Kingdom)'),
(15656, 'https://ror.org/00sprgc32', 'no_lang_code', 1, 'https://ror.org/00sprgc32 Ekspobalta (Lithuania)'),
(15657, 'https://ror.org/00sqes684', 'en', 1, 'https://ror.org/00sqes684 Agence Federale pour la Securite de la Chaine Alimentaire Federaal Agentschap voor de Veiligheid van de Voedselketen Federal Agency for Food Chain Safety Föderalagentur für die Sicherheit der Nahrungsmittelkette'),
(15658, 'https://ror.org/00sqg3532', 'no_lang_code', 1, 'https://ror.org/00sqg3532 Maxygen (United States)'),
(15659, 'https://ror.org/00sqx4367', 'no_lang_code', 1, 'https://ror.org/00sqx4367 Innotec (Italy)'),
(15660, 'https://ror.org/00sskxf38', 'no_lang_code', 1, 'https://ror.org/00sskxf38 Algade (France)'),
(15661, 'https://ror.org/00stasw52', 'no_lang_code', 1, 'https://ror.org/00stasw52 General Society of Surveillance SGS (France)'),
(15662, 'https://ror.org/00strmx07', 'pt', 1, 'https://ror.org/00strmx07 Instituto de Linguística Teórica e Computacional'),
(15663, 'https://ror.org/00svj0p64', 'no_lang_code', 1, 'https://ror.org/00svj0p64 Eurix (Italy)'),
(15664, 'https://ror.org/00svqj211', 'en', 1, 'https://ror.org/00svqj211 Vital Research'),
(15665, 'https://ror.org/00sx2c320', 'en', 1, 'https://ror.org/00sx2c320 Health and Safety Authority'),
(15666, 'https://ror.org/00t1gpd82', 'en', 1, 'https://ror.org/00t1gpd82 Evaluation and Training Institute'),
(15667, 'https://ror.org/00t310794', 'en', 1, 'https://ror.org/00t310794 ShowMe Aquatics & Fitness'),
(15668, 'https://ror.org/00t3nnr25', 'no_lang_code', 1, 'https://ror.org/00t3nnr25 Finisar (Israel)'),
(15669, 'https://ror.org/00t4hhw32', 'no_lang_code', 1, 'https://ror.org/00t4hhw32 Hela Spice Canada (Canada)'),
(15670, 'https://ror.org/00t4n3812', 'en', 1, 'https://ror.org/00t4n3812 J.F. Drake State Community and Technical College'),
(15671, 'https://ror.org/00t60rc39', 'no_lang_code', 1, 'https://ror.org/00t60rc39 Clinical Innovations (United States)'),
(15672, 'https://ror.org/00ta0bp18', 'no_lang_code', 1, 'https://ror.org/00ta0bp18 LUX Assure (United Kingdom)'),
(15673, 'https://ror.org/00tbmv503', 'en', 1, 'https://ror.org/00tbmv503 American Society of Law, Medicine and Ethics'),
(15674, 'https://ror.org/00td9nh08', 'no_lang_code', 1, 'https://ror.org/00td9nh08 Tronox (Netherlands)'),
(15675, 'https://ror.org/00tdydz48', 'en', 1, 'https://ror.org/00tdydz48 Young Empowered Survivors'),
(15676, 'https://ror.org/00tf97v72', 'no_lang_code', 1, 'https://ror.org/00tf97v72 Zealand Pharma (Denmark)'),
(15677, 'https://ror.org/00tg69j59', 'no_lang_code', 1, 'https://ror.org/00tg69j59 Argus International (United States)'),
(15678, 'https://ror.org/00tgp6v56', 'en', 1, 'https://ror.org/00tgp6v56 Center for Clinical Care and Research in Nigeria'),
(15679, 'https://ror.org/00tha2n31', 'no_lang_code', 1, 'https://ror.org/00tha2n31 Engitech (Cyprus)'),
(15680, 'https://ror.org/00tmg8x76', 'no_lang_code', 1, 'https://ror.org/00tmg8x76 MVSystems (United States)'),
(15681, 'https://ror.org/00tprjh98', 'en', 1, 'https://ror.org/00tprjh98 Scheer Memorial Adventist Hospital ą¤¶ą„€ą¤° ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² ą¤¬ą¤Øą„‡ą¤Ŗą¤¾'),
(15682, 'https://ror.org/00trkpm41', 'no_lang_code', 1, 'https://ror.org/00trkpm41 Engineering Software Research and Development (United States)'),
(15683, 'https://ror.org/00tsj2f58', 'en', 1, 'https://ror.org/00tsj2f58 United States Senate Library'),
(15684, 'https://ror.org/00tspxb31', 'en', 1, 'https://ror.org/00tspxb31 Chartered Professional Accountants of Canada comptable professionnel agrƩƩ'),
(15685, 'https://ror.org/00tt1dr37', 'no_lang_code', 1, 'https://ror.org/00tt1dr37 HRI Associates'),
(15686, 'https://ror.org/00ttyp561', 'en', 1, 'https://ror.org/00ttyp561 Addison Public Library'),
(15687, 'https://ror.org/00txgjp11', 'en', 1, 'https://ror.org/00txgjp11 Eagle Ridge Institute'),
(15688, 'https://ror.org/00txxwv34', 'en', 1, 'https://ror.org/00txxwv34 Agropolis International'),
(15689, 'https://ror.org/00ty10b85', 'no_lang_code', 1, 'https://ror.org/00ty10b85 Institute of Spring Technology'),
(15690, 'https://ror.org/00tyja381', 'en', 1, 'https://ror.org/00tyja381 Delaware Valley College'),
(15691, 'https://ror.org/00tzssk35', 'no_lang_code', 1, 'https://ror.org/00tzssk35 Celsion (United States)'),
(15692, 'https://ror.org/00v02jt04', 'en', 1, 'https://ror.org/00v02jt04 State Fair Community College'),
(15693, 'https://ror.org/00v0haz73', 'no_lang_code', 1, 'https://ror.org/00v0haz73 Advantage Forensics (Canada)'),
(15694, 'https://ror.org/00v2kj637', 'no_lang_code', 1, 'https://ror.org/00v2kj637 BioVidria (United States)'),
(15695, 'https://ror.org/00v448643', 'en', 1, 'https://ror.org/00v448643 Federal Reserve Board of Governors'),
(15696, 'https://ror.org/00v4pk551', 'no_lang_code', 1, 'https://ror.org/00v4pk551 Ecoplan (Switzerland)'),
(15697, 'https://ror.org/00va3z958', 'en', 1, 'https://ror.org/00va3z958 Inwood Community Services'),
(15698, 'https://ror.org/00vbmfk28', 'no_lang_code', 1, 'https://ror.org/00vbmfk28 Inro Consultants (Canada)'),
(15699, 'https://ror.org/00vcrft92', 'no_lang_code', 1, 'https://ror.org/00vcrft92 Kepstrum (Canada)'),
(15700, 'https://ror.org/00vdend65', 'en', 1, 'https://ror.org/00vdend65 International Union of Crystallography'),
(15701, 'https://ror.org/00vfscp04', 'no_lang_code', 1, 'https://ror.org/00vfscp04 OncoPlex Diagnostics (United States)'),
(15702, 'https://ror.org/00vg4nv59', 'en', 1, 'https://ror.org/00vg4nv59 Austrian Foundry Research Institute'),
(15703, 'https://ror.org/00vggw919', 'no_lang_code', 1, 'https://ror.org/00vggw919 Fibroline (France)'),
(15704, 'https://ror.org/00vj44q65', 'no_lang_code', 1, 'https://ror.org/00vj44q65 GEPRO (Germany)'),
(15705, 'https://ror.org/00vj7a915', 'no_lang_code', 1, 'https://ror.org/00vj7a915 Altair Engineering (France)'),
(15706, 'https://ror.org/00vj8w868', 'en', 1, 'https://ror.org/00vj8w868 Marygrove College'),
(15707, 'https://ror.org/00vm5ky05', 'en', 1, 'https://ror.org/00vm5ky05 Averett University'),
(15708, 'https://ror.org/00vnsbt24', 'no_lang_code', 1, 'https://ror.org/00vnsbt24 KWJ Engineering (United States)'),
(15709, 'https://ror.org/00vpnca96', 'no_lang_code', 1, 'https://ror.org/00vpnca96 AFS Entwicklungs und Vertriebs (Germany)'),
(15710, 'https://ror.org/00vqkww48', 'no_lang_code', 1, 'https://ror.org/00vqkww48 Carley Technologies (United States)'),
(15711, 'https://ror.org/00vryq048', 'no_lang_code', 1, 'https://ror.org/00vryq048 KALGEn Consultants (United States)'),
(15712, 'https://ror.org/00vtp6271', 'en', 1, 'https://ror.org/00vtp6271 Trinity County Office of Education'),
(15713, 'https://ror.org/00vx6je85', 'no_lang_code', 1, 'https://ror.org/00vx6je85 Zenyaku Kogyo (Japan) å…Øč–¬å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(15714, 'https://ror.org/00vxbb377', 'no_lang_code', 1, 'https://ror.org/00vxbb377 Lenz Instruments (Spain)'),
(15715, 'https://ror.org/00vxnww48', 'no_lang_code', 1, 'https://ror.org/00vxnww48 Exscien (United States)'),
(15716, 'https://ror.org/00w2b1v71', 'en', 1, 'https://ror.org/00w2b1v71 Hesburgh Libraries'),
(15717, 'https://ror.org/00w3zcs06', 'no_lang_code', 1, 'https://ror.org/00w3zcs06 Sertifitseerimiskeskus'),
(15718, 'https://ror.org/00w4hrb54', 'en', 1, 'https://ror.org/00w4hrb54 Shimer College'),
(15719, 'https://ror.org/00w824191', 'en', 1, 'https://ror.org/00w824191 Shriners Hospitals for Children - Springfield'),
(15720, 'https://ror.org/00wdz4w44', 'en', 1, 'https://ror.org/00wdz4w44 Derry City Council'),
(15721, 'https://ror.org/00wfvsb96', 'en', 1, 'https://ror.org/00wfvsb96 Fountaindale Public Library'),
(15722, 'https://ror.org/00wgpww39', 'en', 1, 'https://ror.org/00wgpww39 Hungarian Association of Content Industry'),
(15723, 'https://ror.org/00wh8js32', 'no_lang_code', 1, 'https://ror.org/00wh8js32 Dearman (United Kingdom)'),
(15724, 'https://ror.org/00wk3qr85', 'no_lang_code', 1, 'https://ror.org/00wk3qr85 PerkinElmer (Germany)'),
(15725, 'https://ror.org/00wp5gz89', 'en', 1, 'https://ror.org/00wp5gz89 Business Council for Sustainable Development UK'),
(15726, 'https://ror.org/00wqkgs27', 'en', 1, 'https://ror.org/00wqkgs27 Phelan-McDermid Syndrome Foundation'),
(15727, 'https://ror.org/00wr6qv54', 'en', 1, 'https://ror.org/00wr6qv54 Los Angeles Southwest College'),
(15728, 'https://ror.org/00wtksj25', 'fr', 1, 'https://ror.org/00wtksj25 ARENE, Agence rĆ©gionale de l’environnement et des nouvelles Ć©nergies'),
(15729, 'https://ror.org/00wtwth26', 'en', 1, 'https://ror.org/00wtwth26 Access Health Louisiana'),
(15730, 'https://ror.org/00ww7tv14', 'no_lang_code', 1, 'https://ror.org/00ww7tv14 Angiogenesis Foundation'),
(15731, 'https://ror.org/00wwwzh42', 'en', 1, 'https://ror.org/00wwwzh42 West Bay Pilipino Multi-Service Center'),
(15732, 'https://ror.org/00wxk2s46', 'en', 1, 'https://ror.org/00wxk2s46 Newberry Library'),
(15733, 'https://ror.org/00wyejx41', 'pt', 1, 'https://ror.org/00wyejx41 CĆ¢mara Municipal de Beja'),
(15734, 'https://ror.org/00wyrb732', 'no_lang_code', 1, 'https://ror.org/00wyrb732 Comsis (France)'),
(15735, 'https://ror.org/00x4hs846', 'no_lang_code', 1, 'https://ror.org/00x4hs846 MemPro (United States)'),
(15736, 'https://ror.org/00x5h0d60', 'no_lang_code', 1, 'https://ror.org/00x5h0d60 KITH (Norway) Norwegian Centre for Informatics in Health and Social Care'),
(15737, 'https://ror.org/00x5wnx94', 'en', 1, 'https://ror.org/00x5wnx94 International Centre for Migration Policy Development'),
(15738, 'https://ror.org/00x7hks54', 'en', 1, 'https://ror.org/00x7hks54 The Care Communities'),
(15739, 'https://ror.org/00x94td80', 'en', 1, 'https://ror.org/00x94td80 Smile Train'),
(15740, 'https://ror.org/00x9bsj94', 'no_lang_code', 1, 'https://ror.org/00x9bsj94 Emirates NBD'),
(15741, 'https://ror.org/00x9vvs05', 'no_lang_code', 1, 'https://ror.org/00x9vvs05 Dantec Dynamics (United Kingdom)'),
(15742, 'https://ror.org/00xaant88', 'no_lang_code', 1, 'https://ror.org/00xaant88 Quadrise Canada Corporation (Canada)'),
(15743, 'https://ror.org/00xbe3815', 'no_lang_code', 1, 'https://ror.org/00xbe3815 DEMO Consultants'),
(15744, 'https://ror.org/00xdvzg58', 'no_lang_code', 1, 'https://ror.org/00xdvzg58 Hermia Business Development (Finland) Hermia Yrityskehitys'),
(15745, 'https://ror.org/00xe53w23', 'no_lang_code', 1, 'https://ror.org/00xe53w23 John Gill Technology (United Kingdom)'),
(15746, 'https://ror.org/00xemxm68', 'no_lang_code', 1, 'https://ror.org/00xemxm68 All4tec (France)'),
(15747, 'https://ror.org/00xfhnx88', 'es', 1, 'https://ror.org/00xfhnx88 Unidad de Artritis y Reumatismo'),
(15748, 'https://ror.org/00xfx7t79', 'no_lang_code', 1, 'https://ror.org/00xfx7t79 Enigma Diagnostics (United Kingdom)'),
(15749, 'https://ror.org/00xgafq27', 'en', 1, 'https://ror.org/00xgafq27 Comisión electoral federal Commission électorale fédérale Federal Election Commission'),
(15750, 'https://ror.org/00xhk2y44', 'no_lang_code', 1, 'https://ror.org/00xhk2y44 Cadzow Communications Consulting (United Kingdom)'),
(15751, 'https://ror.org/00xk4wa49', 'en', 1, 'https://ror.org/00xk4wa49 Hemophilia Federation of America'),
(15752, 'https://ror.org/00xmn9a46', 'en', 1, 'https://ror.org/00xmn9a46 Alaska SeaLife Center'),
(15753, 'https://ror.org/00xp3pa76', 'en', 1, 'https://ror.org/00xp3pa76 Agency for Mobility and EU Programmes'),
(15754, 'https://ror.org/00xpcj002', 'no_lang_code', 1, 'https://ror.org/00xpcj002 TherimuneX Pharmaceuticals (United States)'),
(15755, 'https://ror.org/00xr2nk27', 'en', 1, 'https://ror.org/00xr2nk27 Mead Public Library'),
(15756, 'https://ror.org/00xryfx14', 'no_lang_code', 1, 'https://ror.org/00xryfx14 Econet (Spain)'),
(15757, 'https://ror.org/00xvfm661', 'en', 1, 'https://ror.org/00xvfm661 Advocate Trinity Hospital'),
(15758, 'https://ror.org/00xy4nn21', 'no_lang_code', 1, 'https://ror.org/00xy4nn21 FRE Composites (Canada)'),
(15759, 'https://ror.org/00y0h2589', 'no_lang_code', 1, 'https://ror.org/00y0h2589 Hansa Industrie Mixer (Germany)'),
(15760, 'https://ror.org/00y0kp964', 'no_lang_code', 1, 'https://ror.org/00y0kp964 Outokumpu (Sweden)'),
(15761, 'https://ror.org/00y3dr645', 'no_lang_code', 1, 'https://ror.org/00y3dr645 CLMS (United Kingdom)'),
(15762, 'https://ror.org/00y3wq736', 'en', 1, 'https://ror.org/00y3wq736 Bundesministerium für Bildung und Frauen Federal Ministry for Education and Women'),
(15763, 'https://ror.org/00y5de064', 'no_lang_code', 1, 'https://ror.org/00y5de064 BCN Biosciences (United States)'),
(15764, 'https://ror.org/00y7e0f48', 'no_lang_code', 1, 'https://ror.org/00y7e0f48 Controle & Inspectie Bureau Brouwer (Netherlands)'),
(15765, 'https://ror.org/00y8jqa74', 'en', 1, 'https://ror.org/00y8jqa74 Springhouse'),
(15766, 'https://ror.org/00y93bb21', 'no_lang_code', 1, 'https://ror.org/00y93bb21 Flyby (Italy)'),
(15767, 'https://ror.org/00ybj8833', 'no_lang_code', 1, 'https://ror.org/00ybj8833 Innovatia (Canada)'),
(15768, 'https://ror.org/00ybrvx84', 'no_lang_code', 1, 'https://ror.org/00ybrvx84 Awaiba (Portugal)'),
(15769, 'https://ror.org/00ye5fx14', 'ca', 1, 'https://ror.org/00ye5fx14 Institut d''EstadĆ­stica de Catalunya Statistical Institute of Catalonia'),
(15770, 'https://ror.org/00ygx9p32', 'no_lang_code', 1, 'https://ror.org/00ygx9p32 Data Fusion International (Ireland)'),
(15771, 'https://ror.org/00yhce098', 'no_lang_code', 1, 'https://ror.org/00yhce098 Librt (Netherlands)'),
(15772, 'https://ror.org/00ykgmf04', 'en', 1, 'https://ror.org/00ykgmf04 Counseling Center'),
(15773, 'https://ror.org/00ykv8m38', 'no_lang_code', 1, 'https://ror.org/00ykv8m38 CCL Biomedical (United States)'),
(15774, 'https://ror.org/00ym0aw79', 'no_lang_code', 1, 'https://ror.org/00ym0aw79 Betah Associates'),
(15775, 'https://ror.org/00ymae584', 'en', 1, 'https://ror.org/00ymae584 Institute for Breathing and Sleep'),
(15776, 'https://ror.org/00yn4x364', 'pt', 1, 'https://ror.org/00yn4x364 Centro de Estudos de Cultura Contemporânea'),
(15777, 'https://ror.org/00ynx7r03', 'no_lang_code', 1, 'https://ror.org/00ynx7r03 Biomod (Canada)'),
(15778, 'https://ror.org/00ypwp112', 'it', 1, 'https://ror.org/00ypwp112 Centro di Cultura Scientifica Alessandro Volta'),
(15779, 'https://ror.org/00yr71497', 'de', 1, 'https://ror.org/00yr71497 Institut für regionale Studien in Europa'),
(15780, 'https://ror.org/00yrwcc77', 'no_lang_code', 1, 'https://ror.org/00yrwcc77 Double Delta (Hungary)'),
(15781, 'https://ror.org/00ysm1s19', 'no_lang_code', 1, 'https://ror.org/00ysm1s19 ELE Advanced Technologies (United Kingdom)'),
(15782, 'https://ror.org/00yt7g523', 'en', 1, 'https://ror.org/00yt7g523 Asian Health Coalition'),
(15783, 'https://ror.org/00yv40k20', 'no_lang_code', 1, 'https://ror.org/00yv40k20 Rare Partners (Italy)'),
(15784, 'https://ror.org/00yy6km68', 'en', 1, 'https://ror.org/00yy6km68 Ministry for Sustainable Development the Environment and Climate change'),
(15785, 'https://ror.org/00yyva985', 'no_lang_code', 1, 'https://ror.org/00yyva985 HepatoSys (United States)'),
(15786, 'https://ror.org/00yywbq76', 'no_lang_code', 1, 'https://ror.org/00yywbq76 Innovia (United States)'),
(15787, 'https://ror.org/00yz0gw97', 'en', 1, 'https://ror.org/00yz0gw97 Design Business Association'),
(15788, 'https://ror.org/00z0jwm84', 'no_lang_code', 1, 'https://ror.org/00z0jwm84 Locus Systems (United States)'),
(15789, 'https://ror.org/00z1gnf82', 'no_lang_code', 1, 'https://ror.org/00z1gnf82 Avilo Software (Canada)'),
(15790, 'https://ror.org/00z2thw25', 'no_lang_code', 1, 'https://ror.org/00z2thw25 Ekspla (Lithuania)'),
(15791, 'https://ror.org/00z2vba08', 'en', 1, 'https://ror.org/00z2vba08 In Vitro Testing Industrial Platform'),
(15792, 'https://ror.org/00z51f924', 'no_lang_code', 1, 'https://ror.org/00z51f924 Lypro Biosciences (United States)'),
(15793, 'https://ror.org/00z65ng94', 'en', 1, 'https://ror.org/00z65ng94 Landau Institute for Theoretical Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической физики им. Š›. Š”. Š›Š°Š½Š“Š°Ńƒ'),
(15794, 'https://ror.org/00z90m725', 'no_lang_code', 1, 'https://ror.org/00z90m725 Talon Pharmaceuticals (Canada)'),
(15795, 'https://ror.org/00z9sw951', 'en', 1, 'https://ror.org/00z9sw951 Shriners Hospitals for Children - Shreveport'),
(15796, 'https://ror.org/00zbqg304', 'en', 1, 'https://ror.org/00zbqg304 Canadian Science Publishing'),
(15797, 'https://ror.org/00zdkew04', 'no_lang_code', 1, 'https://ror.org/00zdkew04 Bausch Health (United States)'),
(15798, 'https://ror.org/00ze1bh94', 'en', 1, 'https://ror.org/00ze1bh94 Stephenson County Health Department'),
(15799, 'https://ror.org/00zfafm43', 'no_lang_code', 1, 'https://ror.org/00zfafm43 APS Biocontrol (United Kingdom)'),
(15800, 'https://ror.org/00zg7c252', 'no_lang_code', 1, 'https://ror.org/00zg7c252 IRGO Consulting (Slovenia) InŔtitut za rudarstvo, geotehnologijo in okolje'),
(15801, 'https://ror.org/00zg9jh77', 'en', 1, 'https://ror.org/00zg9jh77 Arkansas State Hospital'),
(15802, 'https://ror.org/00zh01q02', 'no_lang_code', 1, 'https://ror.org/00zh01q02 Healthways (United States)'),
(15803, 'https://ror.org/00zk5d448', 'en', 1, 'https://ror.org/00zk5d448 Testaverde Fund for Spinal Cord Injury'),
(15804, 'https://ror.org/00zk89346', 'no_lang_code', 1, 'https://ror.org/00zk89346 Biolinq (United States)'),
(15805, 'https://ror.org/00zmh3n37', 'de', 1, 'https://ror.org/00zmh3n37 Institut für Bildungsforschung der Wirtschaft'),
(15806, 'https://ror.org/00zndc617', 'no_lang_code', 1, 'https://ror.org/00zndc617 Art of Technology (Switzerland)'),
(15807, 'https://ror.org/00zq1zj15', 'en', 1, 'https://ror.org/00zq1zj15 Community Prevention Partnership'),
(15808, 'https://ror.org/00zq5bx90', 'en', 1, 'https://ror.org/00zq5bx90 Clermont County Public Library'),
(15809, 'https://ror.org/00zr01g13', 'no_lang_code', 1, 'https://ror.org/00zr01g13 Convex Electrical (Ireland)'),
(15810, 'https://ror.org/00zrcp466', 'en', 1, 'https://ror.org/00zrcp466 Advanced Threat Analysis'),
(15811, 'https://ror.org/00zsd7b19', 'no_lang_code', 1, 'https://ror.org/00zsd7b19 Alitalia (Italy)'),
(15812, 'https://ror.org/00zt7j992', 'en', 1, 'https://ror.org/00zt7j992 Quality Living'),
(15813, 'https://ror.org/00zt8d340', 'no_lang_code', 1, 'https://ror.org/00zt8d340 DIAD (Italy)'),
(15814, 'https://ror.org/00ztjw772', 'fr', 1, 'https://ror.org/00ztjw772 CƩgep de Sorel-Tracy'),
(15815, 'https://ror.org/00zv6x249', 'no_lang_code', 1, 'https://ror.org/00zv6x249 ECD Architects'),
(15816, 'https://ror.org/00zvn3z28', 'no_lang_code', 1, 'https://ror.org/00zvn3z28 Engineering Link (Canada)'),
(15817, 'https://ror.org/00zxanb56', 'no_lang_code', 1, 'https://ror.org/00zxanb56 Beasy (United Kingdom)'),
(15818, 'https://ror.org/00zycb197', 'ca', 1, 'https://ror.org/00zycb197 Departament de Territori i Sostenibilitat'),
(15819, 'https://ror.org/00zz3bk03', 'en', 1, 'https://ror.org/00zz3bk03 Scharp-Lacy Research Institute'),
(15820, 'https://ror.org/01015b329', 'en', 1, 'https://ror.org/01015b329 Elkhart Public Library'),
(15821, 'https://ror.org/0101b3513', 'en', 1, 'https://ror.org/0101b3513 Toledo Museum of Art'),
(15822, 'https://ror.org/0102yc990', 'en', 1, 'https://ror.org/0102yc990 Warriors on Wheels of Metropolitan Detroit'),
(15823, 'https://ror.org/01053yy22', 'en', 1, 'https://ror.org/01053yy22 Seven Generations Ahead'),
(15824, 'https://ror.org/0105gtj82', 'no_lang_code', 1, 'https://ror.org/0105gtj82 NORESCO (United States)'),
(15825, 'https://ror.org/0108xkp59', 'no_lang_code', 1, 'https://ror.org/0108xkp59 Gesellschaft für Mikroelektronikanwendung Chemnitz (Germany)'),
(15826, 'https://ror.org/010984q05', 'no_lang_code', 1, 'https://ror.org/010984q05 Dioxide Materials (United States)'),
(15827, 'https://ror.org/010apsh61', 'en', 1, 'https://ror.org/010apsh61 Coles County Historical Society'),
(15828, 'https://ror.org/010b2bg46', 'no_lang_code', 1, 'https://ror.org/010b2bg46 Culminatum Innovation (Finland)'),
(15829, 'https://ror.org/010c9nr19', 'no_lang_code', 1, 'https://ror.org/010c9nr19 Knorr-Bremse (Germany)'),
(15830, 'https://ror.org/010d6p438', 'no_lang_code', 1, 'https://ror.org/010d6p438 Life Systems (United States)'),
(15831, 'https://ror.org/010de7v16', 'no_lang_code', 1, 'https://ror.org/010de7v16 Orchid (Switzerland)'),
(15832, 'https://ror.org/010e6tc72', 'no_lang_code', 1, 'https://ror.org/010e6tc72 Biolog Life Science Institute'),
(15833, 'https://ror.org/010em6d12', 'no_lang_code', 1, 'https://ror.org/010em6d12 Amec Foster Wheeler (Canada)'),
(15834, 'https://ror.org/010f6he14', 'no_lang_code', 1, 'https://ror.org/010f6he14 Techno-Membranes (France)'),
(15835, 'https://ror.org/010g4yg11', 'no_lang_code', 1, 'https://ror.org/010g4yg11 Aqon Water Solutions (Germany)'),
(15836, 'https://ror.org/010hax789', 'en', 1, 'https://ror.org/010hax789 International center for Advancement of Research Technology and Innovation'),
(15837, 'https://ror.org/010hs8e42', 'en', 1, 'https://ror.org/010hs8e42 Croatian Academic and Research Network Hrvatska akademska i istraživačka mreža'),
(15838, 'https://ror.org/010j1tz71', 'no_lang_code', 1, 'https://ror.org/010j1tz71 Brugarolas (Spain)'),
(15839, 'https://ror.org/010n36m19', 'no_lang_code', 1, 'https://ror.org/010n36m19 IBSmm (Czechia)'),
(15840, 'https://ror.org/010nr8d35', 'en', 1, 'https://ror.org/010nr8d35 Family Cafe'),
(15841, 'https://ror.org/010qn8y93', 'no_lang_code', 1, 'https://ror.org/010qn8y93 LVD (Belgium)'),
(15842, 'https://ror.org/010qx2c09', 'en', 1, 'https://ror.org/010qx2c09 Latino Community Services'),
(15843, 'https://ror.org/010qzgm63', 'en', 1, 'https://ror.org/010qzgm63 Northbrook Public Library'),
(15844, 'https://ror.org/010rmp704', 'en', 1, 'https://ror.org/010rmp704 Woodrow Wilson Rehabilitation Center Foundation'),
(15845, 'https://ror.org/010sn2g43', 'en', 1, 'https://ror.org/010sn2g43 Jasper County Public Library'),
(15846, 'https://ror.org/010tt0206', 'en', 1, 'https://ror.org/010tt0206 Asia Society'),
(15847, 'https://ror.org/010wk5k38', 'en', 1, 'https://ror.org/010wk5k38 Foundation for Applied Information Technology in Environment, Agriculture and Global Change'),
(15848, 'https://ror.org/010y19q47', 'en', 1, 'https://ror.org/010y19q47 Earth Cryosphere Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ криосферы Земли Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(15849, 'https://ror.org/01139ec29', 'no_lang_code', 1, 'https://ror.org/01139ec29 Thermo Fisher Scientific (Netherlands)'),
(15850, 'https://ror.org/011408310', 'en', 1, 'https://ror.org/011408310 Institute for Single Crystals'),
(15851, 'https://ror.org/01148hc54', 'no_lang_code', 1, 'https://ror.org/01148hc54 Envirup (United Kingdom)'),
(15852, 'https://ror.org/0114vcr39', 'no_lang_code', 1, 'https://ror.org/0114vcr39 Rancho BioSciences (United States)'),
(15853, 'https://ror.org/0114yjq47', 'en', 1, 'https://ror.org/0114yjq47 Oficina de Patentes y Marcas de Estados Unidos United States Patent and Trademark Office'),
(15854, 'https://ror.org/0116eqt27', 'no_lang_code', 1, 'https://ror.org/0116eqt27 Bionex Pharmaceuticals (United States)'),
(15855, 'https://ror.org/01176rr26', 'no_lang_code', 1, 'https://ror.org/01176rr26 Anaxsys (United Kingdom)'),
(15856, 'https://ror.org/011bas443', 'no_lang_code', 1, 'https://ror.org/011bas443 Biolytix (Switzerland)'),
(15857, 'https://ror.org/011bvxa88', 'en', 1, 'https://ror.org/011bvxa88 Heather Hill Care Communities'),
(15858, 'https://ror.org/011dxht06', 'en', 1, 'https://ror.org/011dxht06 Women of W.O.R.T.H.'),
(15859, 'https://ror.org/011e1gw30', 'no_lang_code', 1, 'https://ror.org/011e1gw30 Forming Technologies (Canada)'),
(15860, 'https://ror.org/011ed2d57', 'fr', 1, 'https://ror.org/011ed2d57 French Polar Institute Institut Polaire FranƧais Paul Ɖmile Victor'),
(15861, 'https://ror.org/011gg5m49', 'en', 1, 'https://ror.org/011gg5m49 Ulman Cancer Fund for Young Adults'),
(15862, 'https://ror.org/011mf7877', 'no_lang_code', 1, 'https://ror.org/011mf7877 Automatizace železničnĆ­ dopravy Praha AŽD Praha (Czechia)'),
(15863, 'https://ror.org/011mp8w48', 'en', 1, 'https://ror.org/011mp8w48 Bronx Health Link'),
(15864, 'https://ror.org/011n1b487', 'en', 1, 'https://ror.org/011n1b487 The Center for the Biology of Chronic Disease'),
(15865, 'https://ror.org/011p6w039', 'no_lang_code', 1, 'https://ror.org/011p6w039 Hybrid Plastics (United States)'),
(15866, 'https://ror.org/011pv1j48', 'no_lang_code', 1, 'https://ror.org/011pv1j48 Greentronics (Romania)'),
(15867, 'https://ror.org/011qe1419', 'en', 1, 'https://ror.org/011qe1419 RiverWatch Insitute of Alberta'),
(15868, 'https://ror.org/011r1ph27', 'no_lang_code', 1, 'https://ror.org/011r1ph27 Avonwood (United Kingdom)'),
(15869, 'https://ror.org/011r6gp69', 'en', 1, 'https://ror.org/011r6gp69 University of Algiers Benyoucef Benkhedda Ų¬Ų§Ł…Ų¹Ų© الجزائر – بن يوسف بن خـدة'),
(15870, 'https://ror.org/011r7ts05', 'en', 1, 'https://ror.org/011r7ts05 Advanced Technology Centre for Renewable Energies Centro Tecnológico Avanzado de Energías Renovables'),
(15871, 'https://ror.org/011smmt78', 'no_lang_code', 1, 'https://ror.org/011smmt78 GeoSAS (Ethiopia)'),
(15872, 'https://ror.org/011t8b496', 'en', 1, 'https://ror.org/011t8b496 Tri-City Health Center'),
(15873, 'https://ror.org/0124zm423', 'en', 1, 'https://ror.org/0124zm423 Piers Park Sailing Center'),
(15874, 'https://ror.org/0125p4c40', 'no_lang_code', 1, 'https://ror.org/0125p4c40 Antea Group (Belgium)'),
(15875, 'https://ror.org/0127sq784', 'en', 1, 'https://ror.org/0127sq784 Council of State Science Supervisors'),
(15876, 'https://ror.org/01292e826', 'es', 1, 'https://ror.org/01292e826 Agencia de Servicios Sociales y Dependencia de AndalucĆ­a'),
(15877, 'https://ror.org/012ctg788', 'no_lang_code', 1, 'https://ror.org/012ctg788 HULVERSHORN Eisengiesserei (Germany)'),
(15878, 'https://ror.org/012d6re71', 'no_lang_code', 1, 'https://ror.org/012d6re71 Brotherhood (United States)'),
(15879, 'https://ror.org/012dd2p55', 'no_lang_code', 1, 'https://ror.org/012dd2p55 Arttic'),
(15880, 'https://ror.org/012ddpg93', 'no_lang_code', 1, 'https://ror.org/012ddpg93 Denkstatt Bulgaria (Bulgaria)'),
(15881, 'https://ror.org/012dtcx72', 'no_lang_code', 1, 'https://ror.org/012dtcx72 National Institute for Research and Development in Welding and Material Testing'),
(15882, 'https://ror.org/012ea8q16', 'en', 1, 'https://ror.org/012ea8q16 Southeastern Community College - North Carolina'),
(15883, 'https://ror.org/012eck451', 'no_lang_code', 1, 'https://ror.org/012eck451 Experian (United Kingdom)'),
(15884, 'https://ror.org/012f3dh63', 'en', 1, 'https://ror.org/012f3dh63 China Academy of Transportation Sciences äŗ¤é€ščæč¾“éƒØē§‘å­¦ē ”ē©¶é™¢'),
(15885, 'https://ror.org/012f6s028', 'en', 1, 'https://ror.org/012f6s028 Hormel Foundation'),
(15886, 'https://ror.org/012jkjf69', 'no_lang_code', 1, 'https://ror.org/012jkjf69 Alfa Laval (Sweden)'),
(15887, 'https://ror.org/012kxk780', 'en', 1, 'https://ror.org/012kxk780 Asia Foundation'),
(15888, 'https://ror.org/012pre389', 'no_lang_code', 1, 'https://ror.org/012pre389 České Energetické ZÔvody (Czechia)'),
(15889, 'https://ror.org/012q2tk82', 'en', 1, 'https://ror.org/012q2tk82 Institute of Solar-Terrestrial Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ солнечно-земной физики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(15890, 'https://ror.org/012rthc43', 'no_lang_code', 1, 'https://ror.org/012rthc43 Explora (Italy)'),
(15891, 'https://ror.org/012xvbn21', 'no_lang_code', 1, 'https://ror.org/012xvbn21 CEA Systems (Netherlands)'),
(15892, 'https://ror.org/0132exq81', 'no_lang_code', 1, 'https://ror.org/0132exq81 Smithfield BioScience (United States)'),
(15893, 'https://ror.org/0132f0t75', 'en', 1, 'https://ror.org/0132f0t75 Sarem Cell Research Center'),
(15894, 'https://ror.org/0132f5d22', 'no_lang_code', 1, 'https://ror.org/0132f5d22 Magnomatics (United Kingdom)'),
(15895, 'https://ror.org/0132r2f10', 'no_lang_code', 1, 'https://ror.org/0132r2f10 Kinedyne (United States)'),
(15896, 'https://ror.org/01337fb30', 'no_lang_code', 1, 'https://ror.org/01337fb30 Dow Chemical (Belgium)'),
(15897, 'https://ror.org/01368tg26', 'no_lang_code', 1, 'https://ror.org/01368tg26 IAPETOS (Greece)'),
(15898, 'https://ror.org/0137qt802', 'en', 1, 'https://ror.org/0137qt802 Knowledge Innovation Market'),
(15899, 'https://ror.org/0137xgw27', 'no_lang_code', 1, 'https://ror.org/0137xgw27 Bridgepoint (Germany)'),
(15900, 'https://ror.org/0138rdd60', 'no_lang_code', 1, 'https://ror.org/0138rdd60 Eni (Belgium)'),
(15901, 'https://ror.org/0139cja35', 'no_lang_code', 1, 'https://ror.org/0139cja35 Dura Vermeer (Netherlands)'),
(15902, 'https://ror.org/013bqfn71', 'en', 1, 'https://ror.org/013bqfn71 Institute for Market Economics'),
(15903, 'https://ror.org/013ddcx26', 'en', 1, 'https://ror.org/013ddcx26 Orland Park Public Library'),
(15904, 'https://ror.org/013dmpa26', 'no_lang_code', 1, 'https://ror.org/013dmpa26 Greenvest (Italy)'),
(15905, 'https://ror.org/013e7et93', 'de', 1, 'https://ror.org/013e7et93 Leipziger Institut für Energie'),
(15906, 'https://ror.org/013g95q71', 'no_lang_code', 1, 'https://ror.org/013g95q71 Broyce Control (United Kingdom)'),
(15907, 'https://ror.org/013gqjv35', 'no_lang_code', 1, 'https://ror.org/013gqjv35 HMGene (United States)'),
(15908, 'https://ror.org/013h4ye17', 'en', 1, 'https://ror.org/013h4ye17 Stone Clinic'),
(15909, 'https://ror.org/013h98003', 'en', 1, 'https://ror.org/013h98003 European Forum on Nature Conservation and Pastoralism'),
(15910, 'https://ror.org/013jm0v29', 'en', 1, 'https://ror.org/013jm0v29 Solutions of Artificial Intelligence Applications'),
(15911, 'https://ror.org/013k3b019', 'no_lang_code', 1, 'https://ror.org/013k3b019 Acrion Technologies (United States)'),
(15912, 'https://ror.org/013kzw641', 'en', 1, 'https://ror.org/013kzw641 Greenwich Public Schools'),
(15913, 'https://ror.org/013mgh495', 'no_lang_code', 1, 'https://ror.org/013mgh495 Language Computer (United States)'),
(15914, 'https://ror.org/013n79s81', 'no_lang_code', 1, 'https://ror.org/013n79s81 Eblana Photonics (Ireland)'),
(15915, 'https://ror.org/013pvbr04', 'no_lang_code', 1, 'https://ror.org/013pvbr04 Fluxim (Switzerland)'),
(15916, 'https://ror.org/013pwk504', 'no_lang_code', 1, 'https://ror.org/013pwk504 Woodward (Switzerland)'),
(15917, 'https://ror.org/013rm7441', 'en', 1, 'https://ror.org/013rm7441 Champaign Public Library'),
(15918, 'https://ror.org/013rnrt24', 'en', 1, 'https://ror.org/013rnrt24 Institute of Physics'),
(15919, 'https://ror.org/013s1wp36', 'no_lang_code', 1, 'https://ror.org/013s1wp36 CATAS Catas Laboratorio Analisi Legno Arredo Agroalimentare'),
(15920, 'https://ror.org/013trv503', 'no_lang_code', 1, 'https://ror.org/013trv503 Damen Shipyards Group (Netherlands)'),
(15921, 'https://ror.org/013vksw20', 'en', 1, 'https://ror.org/013vksw20 Center for Governmental Research'),
(15922, 'https://ror.org/013w2d378', 'en', 1, 'https://ror.org/013w2d378 Institute for Information Transmission Problems Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем переГачи информации им. А.А. Єаркевича Российской акаГемии наук'),
(15923, 'https://ror.org/013wyvt46', 'en', 1, 'https://ror.org/013wyvt46 Institut für Angewandte Wirtschaftsforschung Institute for Applied Economic Research'),
(15924, 'https://ror.org/013x1fq42', 'no_lang_code', 1, 'https://ror.org/013x1fq42 Beta 80 Group (Italy)'),
(15925, 'https://ror.org/013xgfd67', 'no_lang_code', 1, 'https://ror.org/013xgfd67 Biopredic (France)'),
(15926, 'https://ror.org/0141hdg13', 'en', 1, 'https://ror.org/0141hdg13 European State Forest Association'),
(15927, 'https://ror.org/01425vp67', 'no_lang_code', 1, 'https://ror.org/01425vp67 Applied Materials (Israel)'),
(15928, 'https://ror.org/01433ep44', 'no_lang_code', 1, 'https://ror.org/01433ep44 Assystem (United Kingdom)'),
(15929, 'https://ror.org/01434vk98', 'no_lang_code', 1, 'https://ror.org/01434vk98 GrafTech (United States)'),
(15930, 'https://ror.org/01450df76', 'en', 1, 'https://ror.org/01450df76 Hospitales Shriners para NiƱos Shriners Hospitals for Children - Mexico'),
(15931, 'https://ror.org/0145xtn29', 'no_lang_code', 1, 'https://ror.org/0145xtn29 Geosat'),
(15932, 'https://ror.org/01464p409', 'en', 1, 'https://ror.org/01464p409 Disability Connection'),
(15933, 'https://ror.org/014743444', 'de', 1, 'https://ror.org/014743444 Forschungsinstitut für Wärmeschutz München'),
(15934, 'https://ror.org/01479wc11', 'en', 1, 'https://ror.org/01479wc11 Association of Learned and Professional Society Publishers'),
(15935, 'https://ror.org/01491ht04', 'no_lang_code', 1, 'https://ror.org/01491ht04 GeoSpatiumLab (Spain)'),
(15936, 'https://ror.org/01499pn86', 'no_lang_code', 1, 'https://ror.org/01499pn86 Kyos (Switzerland)'),
(15937, 'https://ror.org/014a84x66', 'no_lang_code', 1, 'https://ror.org/014a84x66 Denn (Spain)'),
(15938, 'https://ror.org/014a8dd26', 'en', 1, 'https://ror.org/014a8dd26 Capital Community College'),
(15939, 'https://ror.org/014cycx13', 'it', 1, 'https://ror.org/014cycx13 Istituto Centrale per la Ricerca Scientifica e Tecnologica Applicata al Mare'),
(15940, 'https://ror.org/014d2cv50', 'en', 1, 'https://ror.org/014d2cv50 Research Institute for Social and Health Improvement Foundation ಋಷಿ ą²«ą³Œą²‚ą²”ą³†ą³•ą²¶ą²Øą³'),
(15941, 'https://ror.org/014dgae50', 'no_lang_code', 1, 'https://ror.org/014dgae50 2i Industrial Informatics (Germany)'),
(15942, 'https://ror.org/014e9vv52', 'en', 1, 'https://ror.org/014e9vv52 Cheboygan Otsego Presque Isle Educational Service District'),
(15943, 'https://ror.org/014fxpb13', 'no_lang_code', 1, 'https://ror.org/014fxpb13 Engineering Data Management'),
(15944, 'https://ror.org/014fxzd16', 'en', 1, 'https://ror.org/014fxzd16 European Public Law Center'),
(15945, 'https://ror.org/014g11b23', 'en', 1, 'https://ror.org/014g11b23 University of Vermont Children’s Hospital'),
(15946, 'https://ror.org/014g5ne65', 'no_lang_code', 1, 'https://ror.org/014g5ne65 Libertine FPE (United Kingdom)'),
(15947, 'https://ror.org/014gd3j97', 'en', 1, 'https://ror.org/014gd3j97 Hebrew Home'),
(15948, 'https://ror.org/014j0w741', 'en', 1, 'https://ror.org/014j0w741 Catholic Medical Mission Board'),
(15949, 'https://ror.org/014nnvj65', 'en', 1, 'https://ror.org/014nnvj65 TH Kƶln TH Kƶln - University of Applied Sciences'),
(15950, 'https://ror.org/014q4ab21', 'it', 1, 'https://ror.org/014q4ab21 Legambiente'),
(15951, 'https://ror.org/014rb1v48', 'no_lang_code', 1, 'https://ror.org/014rb1v48 AMREP (United States)'),
(15952, 'https://ror.org/014s9rr70', 'en', 1, 'https://ror.org/014s9rr70 Kansas City CARE Clinic'),
(15953, 'https://ror.org/014tp7304', 'en', 1, 'https://ror.org/014tp7304 European Institute of Public Administration'),
(15954, 'https://ror.org/014vt6y07', 'no_lang_code', 1, 'https://ror.org/014vt6y07 Foreca (Finland)'),
(15955, 'https://ror.org/014y9am47', 'en', 1, 'https://ror.org/014y9am47 Arnolfini'),
(15956, 'https://ror.org/0151q7p66', 'en', 1, 'https://ror.org/0151q7p66 Assemblies of God Theological Seminary'),
(15957, 'https://ror.org/0152arp12', 'en', 1, 'https://ror.org/0152arp12 Flint Community Schools'),
(15958, 'https://ror.org/0152xpa72', 'en', 1, 'https://ror.org/0152xpa72 Indiana State Library'),
(15959, 'https://ror.org/0156efr50', 'no_lang_code', 1, 'https://ror.org/0156efr50 Rand McNally (United States)'),
(15960, 'https://ror.org/0157qrq16', 'no_lang_code', 1, 'https://ror.org/0157qrq16 Comelz (Italy)'),
(15961, 'https://ror.org/0158f8t80', 'en', 1, 'https://ror.org/0158f8t80 American Bar Association'),
(15962, 'https://ror.org/0159z5d03', 'en', 1, 'https://ror.org/0159z5d03 Springfield Greene County Library District'),
(15963, 'https://ror.org/015aet155', 'no_lang_code', 1, 'https://ror.org/015aet155 Euromedica'),
(15964, 'https://ror.org/015b22965', 'no_lang_code', 1, 'https://ror.org/015b22965 Taro Pharmaceuticals (United States)'),
(15965, 'https://ror.org/015daqq20', 'no_lang_code', 1, 'https://ror.org/015daqq20 APR (Italy)'),
(15966, 'https://ror.org/015dvz544', 'no_lang_code', 1, 'https://ror.org/015dvz544 European Safety Management Group'),
(15967, 'https://ror.org/015facm29', 'en', 1, 'https://ror.org/015facm29 Aeras'),
(15968, 'https://ror.org/015fn7y55', 'no_lang_code', 1, 'https://ror.org/015fn7y55 Costa Edutainment'),
(15969, 'https://ror.org/015g9cc75', 'no_lang_code', 1, 'https://ror.org/015g9cc75 BIOTECmarin (Germany)'),
(15970, 'https://ror.org/015geds03', 'fr', 1, 'https://ror.org/015geds03 Greta Lac'),
(15971, 'https://ror.org/015gv1k37', 'en', 1, 'https://ror.org/015gv1k37 Post Acute Partners'),
(15972, 'https://ror.org/015h21b91', 'en', 1, 'https://ror.org/015h21b91 Federal Reserve Bank of Kansas City'),
(15973, 'https://ror.org/015jw8x57', 'en', 1, 'https://ror.org/015jw8x57 Youth Alive Uganda'),
(15974, 'https://ror.org/015m28b66', 'no_lang_code', 1, 'https://ror.org/015m28b66 Ingenieurgesellschaft für Technische Software (Germany)'),
(15975, 'https://ror.org/015mn5k65', 'en', 1, 'https://ror.org/015mn5k65 San Mateo Medical Center'),
(15976, 'https://ror.org/015p4e180', 'no_lang_code', 1, 'https://ror.org/015p4e180 DSB (Denmark)'),
(15977, 'https://ror.org/015py4711', 'es', 1, 'https://ror.org/015py4711 ANFACO-CECOPESCA'),
(15978, 'https://ror.org/015reqs57', 'no_lang_code', 1, 'https://ror.org/015reqs57 Goknow (United States)'),
(15979, 'https://ror.org/015rere91', 'no_lang_code', 1, 'https://ror.org/015rere91 Atlas Biolabs (Germany)'),
(15980, 'https://ror.org/015vhyq37', 'no_lang_code', 1, 'https://ror.org/015vhyq37 Mayer Brown (United Kingdom)'),
(15981, 'https://ror.org/015w14j53', 'no_lang_code', 1, 'https://ror.org/015w14j53 Gneuss (Germany)'),
(15982, 'https://ror.org/015w1qa96', 'en', 1, 'https://ror.org/015w1qa96 Korea Institute for Advancement of Technology'),
(15983, 'https://ror.org/015x9tq79', 'de', 1, 'https://ror.org/015x9tq79 Forschungsinstitut Technologie und Behinderung Research Institute Technology and Disability'),
(15984, 'https://ror.org/01611ny13', 'no_lang_code', 1, 'https://ror.org/01611ny13 EuroPhoton (Germany)'),
(15985, 'https://ror.org/01611w595', 'en', 1, 'https://ror.org/01611w595 Iris House'),
(15986, 'https://ror.org/0163xqp73', 'en', 1, 'https://ror.org/0163xqp73 IUF - Leibniz-Institut für umweltmedizinische Forschung Leibniz Institute of Environmental Medicine'),
(15987, 'https://ror.org/0165zav23', 'en', 1, 'https://ror.org/0165zav23 United Food and Commercial Workers'),
(15988, 'https://ror.org/0166gt567', 'no_lang_code', 1, 'https://ror.org/0166gt567 Koba Institute'),
(15989, 'https://ror.org/016a8y628', 'no_lang_code', 1, 'https://ror.org/016a8y628 Magma (Germany)'),
(15990, 'https://ror.org/016gahp64', 'en', 1, 'https://ror.org/016gahp64 St. Clair County Library System'),
(15991, 'https://ror.org/016hwk083', 'no_lang_code', 1, 'https://ror.org/016hwk083 Disy (Germany)'),
(15992, 'https://ror.org/016j39z10', 'no_lang_code', 1, 'https://ror.org/016j39z10 Croda (United Kingdom)'),
(15993, 'https://ror.org/016mz1226', 'en', 1, 'https://ror.org/016mz1226 Institutul Național de Cercetare-Dezvoltare Ć®n Silvicultură ā€žMarin Drăceaā€ National Institute for Research and Development in Forestry "Marin Drăcea"'),
(15994, 'https://ror.org/016nn6y69', 'en', 1, 'https://ror.org/016nn6y69 Carinthian Tech Research'),
(15995, 'https://ror.org/016phpf56', 'no_lang_code', 1, 'https://ror.org/016phpf56 Cella Energy (United Kingdom)'),
(15996, 'https://ror.org/016qz7879', 'no_lang_code', 1, 'https://ror.org/016qz7879 Voith (United Kingdom)'),
(15997, 'https://ror.org/016t7ff42', 'en', 1, 'https://ror.org/016t7ff42 United States Power Soccer Association'),
(15998, 'https://ror.org/016v9sa88', 'no_lang_code', 1, 'https://ror.org/016v9sa88 Base Protection (Italy)'),
(15999, 'https://ror.org/016x3qj75', 'no_lang_code', 1, 'https://ror.org/016x3qj75 Nielsen (United States)'),
(16000, 'https://ror.org/016yz4963', 'en', 1, 'https://ror.org/016yz4963 Des Plaines Public Library'),
(16001, 'https://ror.org/016zn5019', 'no_lang_code', 1, 'https://ror.org/016zn5019 Altran (United Kingdom)'),
(16002, 'https://ror.org/0171psx92', 'en', 1, 'https://ror.org/0171psx92 Noranda Income Fund'),
(16003, 'https://ror.org/0172ekt87', 'en', 1, 'https://ror.org/0172ekt87 Craftspace'),
(16004, 'https://ror.org/0174e3t82', 'en', 1, 'https://ror.org/0174e3t82 Aspen Institute'),
(16005, 'https://ror.org/0176btp32', 'no_lang_code', 1, 'https://ror.org/0176btp32 Tribal Group'),
(16006, 'https://ror.org/0177d4e55', 'no_lang_code', 1, 'https://ror.org/0177d4e55 Marvell (Spain)'),
(16007, 'https://ror.org/017aszj34', 'en', 1, 'https://ror.org/017aszj34 Voices Against Brain Cancer'),
(16008, 'https://ror.org/017bw3q44', 'no_lang_code', 1, 'https://ror.org/017bw3q44 BMI Association'),
(16009, 'https://ror.org/017bzf706', 'no_lang_code', 1, 'https://ror.org/017bzf706 Summit Medical Group (United States)'),
(16010, 'https://ror.org/017c2y429', 'no_lang_code', 1, 'https://ror.org/017c2y429 Informa (Italy)'),
(16011, 'https://ror.org/017cr6139', 'no_lang_code', 1, 'https://ror.org/017cr6139 Ceremed (United States)'),
(16012, 'https://ror.org/017e5zc16', 'no_lang_code', 1, 'https://ror.org/017e5zc16 Industrielle Steuerungstechnik (Germany)'),
(16013, 'https://ror.org/017f49052', 'en', 1, 'https://ror.org/017f49052 Southeastern Illinois College'),
(16014, 'https://ror.org/017fxcy86', 'no_lang_code', 1, 'https://ror.org/017fxcy86 EXPORTech (United States)'),
(16015, 'https://ror.org/017g88n73', 'no_lang_code', 1, 'https://ror.org/017g88n73 First Light Diagnostics (United States)'),
(16016, 'https://ror.org/017hnns59', 'en', 1, 'https://ror.org/017hnns59 Couleecap'),
(16017, 'https://ror.org/017hxta74', 'no_lang_code', 1, 'https://ror.org/017hxta74 GeoSpectrum Technologies (Canada)'),
(16018, 'https://ror.org/017j5za44', 'no_lang_code', 1, 'https://ror.org/017j5za44 Data Management (Italy)'),
(16019, 'https://ror.org/017k93810', 'no_lang_code', 1, 'https://ror.org/017k93810 Azienda Industriali Municipali di Vicenza (Italy)'),
(16020, 'https://ror.org/017m4fy44', 'en', 1, 'https://ror.org/017m4fy44 Veterans Research Foundation of Pittsburgh'),
(16021, 'https://ror.org/017ptvx95', 'no_lang_code', 1, 'https://ror.org/017ptvx95 Infineon Technologies (United Kingdom)'),
(16022, 'https://ror.org/017rrqa95', 'en', 1, 'https://ror.org/017rrqa95 National Association of Realtors'),
(16023, 'https://ror.org/017rwv354', 'en', 1, 'https://ror.org/017rwv354 Washington State Chinese Cancer Network Association'),
(16024, 'https://ror.org/017sazg79', 'no_lang_code', 1, 'https://ror.org/017sazg79 Mersen (France)'),
(16025, 'https://ror.org/017t4sb47', 'en', 1, 'https://ror.org/017t4sb47 Wright Institute'),
(16026, 'https://ror.org/017wnhb12', 'no_lang_code', 1, 'https://ror.org/017wnhb12 Avinet (Norway)'),
(16027, 'https://ror.org/017ydz008', 'en', 1, 'https://ror.org/017ydz008 Tigerlily Foundation'),
(16028, 'https://ror.org/017z1kg06', 'no_lang_code', 1, 'https://ror.org/017z1kg06 Finlombarda (Italy)'),
(16029, 'https://ror.org/0181arg19', 'en', 1, 'https://ror.org/0181arg19 Mississippi Band of Choctaw Indians'),
(16030, 'https://ror.org/018270v17', 'en', 1, 'https://ror.org/018270v17 Mazzoni Center'),
(16031, 'https://ror.org/0182pv508', 'en', 1, 'https://ror.org/0182pv508 Florida Hospital Association'),
(16032, 'https://ror.org/0187pag34', 'en', 1, 'https://ror.org/0187pag34 Institute for Physical Research');
INSERT INTO `rors` VALUES
(16033, 'https://ror.org/0188sk047', 'no_lang_code', 1, 'https://ror.org/0188sk047 Irecoop Emilia-Romagna (Italy)'),
(16034, 'https://ror.org/0189swh59', 'no_lang_code', 1, 'https://ror.org/0189swh59 CSTI Acoustics (United States)'),
(16035, 'https://ror.org/018azsp93', 'en', 1, 'https://ror.org/018azsp93 Children’s Cancer Foundation'),
(16036, 'https://ror.org/018b8fj92', 'no_lang_code', 1, 'https://ror.org/018b8fj92 Protigen (United States)'),
(16037, 'https://ror.org/018c2ap34', 'en', 1, 'https://ror.org/018c2ap34 Champaign County History Museum'),
(16038, 'https://ror.org/018dbr456', 'en', 1, 'https://ror.org/018dbr456 STAR Council'),
(16039, 'https://ror.org/018ed3c32', 'no_lang_code', 1, 'https://ror.org/018ed3c32 Institut IGH (Croatia)'),
(16040, 'https://ror.org/018f82058', 'en', 1, 'https://ror.org/018f82058 The Kindness Connection'),
(16041, 'https://ror.org/018fdr531', 'no_lang_code', 1, 'https://ror.org/018fdr531 Yara (Norway)'),
(16042, 'https://ror.org/018jzsh55', 'no_lang_code', 1, 'https://ror.org/018jzsh55 FernwƤrme-Verbund Saar (Germany)'),
(16043, 'https://ror.org/018pahb94', 'en', 1, 'https://ror.org/018pahb94 Texas Digital Library'),
(16044, 'https://ror.org/018pbhh11', 'en', 1, 'https://ror.org/018pbhh11 Rubin Museum of Art'),
(16045, 'https://ror.org/018r09w17', 'en', 1, 'https://ror.org/018r09w17 Strategic Initiative for Women in the Horn of Africa'),
(16046, 'https://ror.org/018te2y75', 'no_lang_code', 1, 'https://ror.org/018te2y75 Imstar (France)'),
(16047, 'https://ror.org/018tmag26', 'no_lang_code', 1, 'https://ror.org/018tmag26 Ambiental Technical Solutions (United Kingdom)'),
(16048, 'https://ror.org/018vmtj90', 'no_lang_code', 1, 'https://ror.org/018vmtj90 Androme (Belgium)'),
(16049, 'https://ror.org/018vpay05', 'en', 1, 'https://ror.org/018vpay05 South Carolina Cancer Alliance'),
(16050, 'https://ror.org/018x1vg82', 'no_lang_code', 1, 'https://ror.org/018x1vg82 KE-Works (Netherlands)'),
(16051, 'https://ror.org/018xp1p31', 'en', 1, 'https://ror.org/018xp1p31 ITT Technical Institute'),
(16052, 'https://ror.org/018zhtp04', 'no_lang_code', 1, 'https://ror.org/018zhtp04 Manoir Industries (France)'),
(16053, 'https://ror.org/018zj0h25', 'fr', 1, 'https://ror.org/018zj0h25 Institut de l''Environnement et Recherches Agricoles'),
(16054, 'https://ror.org/0190rg629', 'no_lang_code', 1, 'https://ror.org/0190rg629 Knauf (Germany)'),
(16055, 'https://ror.org/01922pt58', 'en', 1, 'https://ror.org/01922pt58 Alliance for Safe Kids'),
(16056, 'https://ror.org/019504w35', 'en', 1, 'https://ror.org/019504w35 Quantum Leap Healthcare Collaborative'),
(16057, 'https://ror.org/019611881', 'no_lang_code', 1, 'https://ror.org/019611881 Burnbrae Farms (Canada)'),
(16058, 'https://ror.org/0199wh953', 'no_lang_code', 1, 'https://ror.org/0199wh953 Contech (Canada)'),
(16059, 'https://ror.org/019evbm58', 'it', 1, 'https://ror.org/019evbm58 Istituto Sperimentale Modelli E Strutture'),
(16060, 'https://ror.org/019faqe83', 'en', 1, 'https://ror.org/019faqe83 Lac du Flambeau Band of Lake Superior Chippewa Indians'),
(16061, 'https://ror.org/019gvtj90', 'no_lang_code', 1, 'https://ror.org/019gvtj90 Puratos (Belgium)'),
(16062, 'https://ror.org/019hqrp02', 'en', 1, 'https://ror.org/019hqrp02 Iron County Historical Museum'),
(16063, 'https://ror.org/019htj352', 'no_lang_code', 1, 'https://ror.org/019htj352 Dürr (Germany)'),
(16064, 'https://ror.org/019p1xx37', 'en', 1, 'https://ror.org/019p1xx37 College des arts mƩdicaux de kettering Kettering College'),
(16065, 'https://ror.org/019qrs910', 'en', 1, 'https://ror.org/019qrs910 Electronic Privacy Information Center'),
(16066, 'https://ror.org/019qz2a14', 'no_lang_code', 1, 'https://ror.org/019qz2a14 Buildair (Spain)'),
(16067, 'https://ror.org/019r00h23', 'en', 1, 'https://ror.org/019r00h23 Sauk Valley Community College'),
(16068, 'https://ror.org/019sw1443', 'en', 1, 'https://ror.org/019sw1443 Association for Computational Linguistics'),
(16069, 'https://ror.org/019syv921', 'no_lang_code', 1, 'https://ror.org/019syv921 Linguamatics (United Kingdom)'),
(16070, 'https://ror.org/019szx567', 'fr', 1, 'https://ror.org/019szx567 Traces'),
(16071, 'https://ror.org/019v3r356', 'no_lang_code', 1, 'https://ror.org/019v3r356 Karmic (Switzerland)'),
(16072, 'https://ror.org/019wcja80', 'en', 1, 'https://ror.org/019wcja80 Lake County Forest Preserves'),
(16073, 'https://ror.org/019xzfh39', 'no_lang_code', 1, 'https://ror.org/019xzfh39 Huron Technologies (Canada)'),
(16074, 'https://ror.org/01a1qdv64', 'en', 1, 'https://ror.org/01a1qdv64 G.V. Kurdyumov Institute for Metal Physics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металофізики імені Š“. Š’. ŠšŃƒŃ€Š“ŃŽŠ¼Š¾Š²Š° ŠŠŠ України Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металлофизики ŠŠŠ Украины'),
(16075, 'https://ror.org/01a4jyf22', 'no_lang_code', 1, 'https://ror.org/01a4jyf22 imaGeau (France)'),
(16076, 'https://ror.org/01a50ww41', 'no_lang_code', 1, 'https://ror.org/01a50ww41 FVA New Media Research (Italy)'),
(16077, 'https://ror.org/01a53yy36', 'en', 1, 'https://ror.org/01a53yy36 Wauconda Area Library'),
(16078, 'https://ror.org/01a5r1q21', 'no_lang_code', 1, 'https://ror.org/01a5r1q21 Berry & Associates (United States)'),
(16079, 'https://ror.org/01a669d22', 'no_lang_code', 1, 'https://ror.org/01a669d22 Falex Tribology (Belgium)'),
(16080, 'https://ror.org/01a697543', 'en', 1, 'https://ror.org/01a697543 Chattanooga State Community College'),
(16081, 'https://ror.org/01a99rs65', 'no_lang_code', 1, 'https://ror.org/01a99rs65 Kennametal (United Kingdom)'),
(16082, 'https://ror.org/01aa1sn70', 'en', 1, 'https://ror.org/01aa1sn70 Bundesanstalt für Arbeitsschutz und Arbeitsmedizin Federal Institute for Occupational Safety and Health'),
(16083, 'https://ror.org/01abfef94', 'no_lang_code', 1, 'https://ror.org/01abfef94 ChemRegen (United States)'),
(16084, 'https://ror.org/01abgvx97', 'en', 1, 'https://ror.org/01abgvx97 Ward Melville Heritage Organization'),
(16085, 'https://ror.org/01addcj30', 'no_lang_code', 1, 'https://ror.org/01addcj30 Broadcom (Ireland)'),
(16086, 'https://ror.org/01aetv375', 'en', 1, 'https://ror.org/01aetv375 USA Hockey Foundation'),
(16087, 'https://ror.org/01afspn38', 'en', 1, 'https://ror.org/01afspn38 Prairie State College'),
(16088, 'https://ror.org/01ag4vf25', 'no_lang_code', 1, 'https://ror.org/01ag4vf25 Anton Paar (Switzerland)'),
(16089, 'https://ror.org/01agtnb56', 'no_lang_code', 1, 'https://ror.org/01agtnb56 Healionics (United States)'),
(16090, 'https://ror.org/01aj87c56', 'no_lang_code', 1, 'https://ror.org/01aj87c56 Fluvius (Belgium)'),
(16091, 'https://ror.org/01ajshr89', 'en', 1, 'https://ror.org/01ajshr89 Florida Coalition Against Domestic Violence'),
(16092, 'https://ror.org/01at47r33', 'no_lang_code', 1, 'https://ror.org/01at47r33 Cameca (France)'),
(16093, 'https://ror.org/01at7p410', 'no_lang_code', 1, 'https://ror.org/01at7p410 Ernst Basler + Partner (Switzerland)'),
(16094, 'https://ror.org/01atpvt41', 'no_lang_code', 1, 'https://ror.org/01atpvt41 Freshseal Limited (United Kingdom)'),
(16095, 'https://ror.org/01avfcx41', 'en', 1, 'https://ror.org/01avfcx41 Wadsworth Public Library'),
(16096, 'https://ror.org/01avta769', 'en', 1, 'https://ror.org/01avta769 Trinity Christian College'),
(16097, 'https://ror.org/01avyb607', 'no_lang_code', 1, 'https://ror.org/01avyb607 Artibal (Spain)'),
(16098, 'https://ror.org/01aygtt64', 'en', 1, 'https://ror.org/01aygtt64 New York Says Thank You Foundation'),
(16099, 'https://ror.org/01b0dbj85', 'no_lang_code', 1, 'https://ror.org/01b0dbj85 Cascade Technologies (United Kingdom)'),
(16100, 'https://ror.org/01b3cvv10', 'en', 1, 'https://ror.org/01b3cvv10 Archdiocese of St. Louis ArchidiocĆØse Catholique de St. Louis'),
(16101, 'https://ror.org/01b5g7e71', 'en', 1, 'https://ror.org/01b5g7e71 SAFE consortium'),
(16102, 'https://ror.org/01bae3q52', 'no_lang_code', 1, 'https://ror.org/01bae3q52 Sanotron'),
(16103, 'https://ror.org/01baeyq79', 'en', 1, 'https://ror.org/01baeyq79 William Alanson White Institute'),
(16104, 'https://ror.org/01bag9d55', 'no_lang_code', 1, 'https://ror.org/01bag9d55 Fluigent (France)'),
(16105, 'https://ror.org/01bedg124', 'en', 1, 'https://ror.org/01bedg124 Sinano Institute'),
(16106, 'https://ror.org/01bj8gp17', 'en', 1, 'https://ror.org/01bj8gp17 Hudson River Museum'),
(16107, 'https://ror.org/01bkjr271', 'no_lang_code', 1, 'https://ror.org/01bkjr271 Actigen (Norway)'),
(16108, 'https://ror.org/01bmvyk77', 'no_lang_code', 1, 'https://ror.org/01bmvyk77 Chematur Engineering (Sweden)'),
(16109, 'https://ror.org/01bqy5z80', 'no_lang_code', 1, 'https://ror.org/01bqy5z80 Sorrento Therapeutics (United States)'),
(16110, 'https://ror.org/01brbem53', 'en', 1, 'https://ror.org/01brbem53 Ministry of Communications Science and Technology'),
(16111, 'https://ror.org/01bre8q37', 'no_lang_code', 1, 'https://ror.org/01bre8q37 Geocontrol (Spain)'),
(16112, 'https://ror.org/01bs5w571', 'en', 1, 'https://ror.org/01bs5w571 Council on Alcoholism and Drug Abuse'),
(16113, 'https://ror.org/01bts4z81', 'no_lang_code', 1, 'https://ror.org/01bts4z81 Rhenovia (France)'),
(16114, 'https://ror.org/01bwbj624', 'no_lang_code', 1, 'https://ror.org/01bwbj624 AMN Healthcare (United States)'),
(16115, 'https://ror.org/01bwmqz48', 'en', 1, 'https://ror.org/01bwmqz48 One Earth Future Foundation'),
(16116, 'https://ror.org/01bwmvz52', 'no_lang_code', 1, 'https://ror.org/01bwmvz52 Frantic Films (Canada)'),
(16117, 'https://ror.org/01bws2668', 'no_lang_code', 1, 'https://ror.org/01bws2668 IGEA Clinical Biophysics (Italy)'),
(16118, 'https://ror.org/01bx41534', 'no_lang_code', 1, 'https://ror.org/01bx41534 Quantum Applied Science and Research (United States)'),
(16119, 'https://ror.org/01c1b9s34', 'en', 1, 'https://ror.org/01c1b9s34 ABCD'),
(16120, 'https://ror.org/01c2kj137', 'en', 1, 'https://ror.org/01c2kj137 Agency for Electronic Communications'),
(16121, 'https://ror.org/01c2q3444', 'en', 1, 'https://ror.org/01c2q3444 Tacoma Pierce County Health Department'),
(16122, 'https://ror.org/01c2t8z64', 'en', 1, 'https://ror.org/01c2t8z64 Vector Physical Therapy & Aquatic Center'),
(16123, 'https://ror.org/01c4kzn98', 'en', 1, 'https://ror.org/01c4kzn98 Westchester Putnam Council'),
(16124, 'https://ror.org/01c4p0b96', 'no_lang_code', 1, 'https://ror.org/01c4p0b96 Global Digital Technologies (Greece)'),
(16125, 'https://ror.org/01c5g1574', 'no_lang_code', 1, 'https://ror.org/01c5g1574 Lattanzio Group (Italy)'),
(16126, 'https://ror.org/01c68s590', 'no_lang_code', 1, 'https://ror.org/01c68s590 InLight Solutions (United States)'),
(16127, 'https://ror.org/01c6kab21', 'en', 1, 'https://ror.org/01c6kab21 South Suburban College'),
(16128, 'https://ror.org/01c7at224', 'en', 1, 'https://ror.org/01c7at224 Riverstone Senior Life Services'),
(16129, 'https://ror.org/01c9mdb24', 'en', 1, 'https://ror.org/01c9mdb24 Cleveland Hearing & Speech Center'),
(16130, 'https://ror.org/01cakg179', 'no_lang_code', 1, 'https://ror.org/01cakg179 AGF Electronics (Italy)'),
(16131, 'https://ror.org/01cc7y984', 'en', 1, 'https://ror.org/01cc7y984 Centre for Environmental Management and Decision Support'),
(16132, 'https://ror.org/01cegwx30', 'no_lang_code', 1, 'https://ror.org/01cegwx30 HƉTFA Research Institute'),
(16133, 'https://ror.org/01ceqc519', 'en', 1, 'https://ror.org/01ceqc519 United States Arctic Research Commission'),
(16134, 'https://ror.org/01cjny980', 'no_lang_code', 1, 'https://ror.org/01cjny980 Berlitz (Germany)'),
(16135, 'https://ror.org/01cn3f357', 'no_lang_code', 1, 'https://ror.org/01cn3f357 Visioncare Research'),
(16136, 'https://ror.org/01cn9w853', 'no_lang_code', 1, 'https://ror.org/01cn9w853 FunderMax (Austria)'),
(16137, 'https://ror.org/01cncfq91', 'no_lang_code', 1, 'https://ror.org/01cncfq91 Gerstel (Germany)'),
(16138, 'https://ror.org/01cnprv20', 'en', 1, 'https://ror.org/01cnprv20 Institute for Management of Innovation and Technology'),
(16139, 'https://ror.org/01cr6y145', 'en', 1, 'https://ror.org/01cr6y145 Toledo Lucas County Public Library'),
(16140, 'https://ror.org/01ctnwa22', 'en', 1, 'https://ror.org/01ctnwa22 Health Resources in Action'),
(16141, 'https://ror.org/01ctq0573', 'de', 1, 'https://ror.org/01ctq0573 Kulturrat Ɩsterreich'),
(16142, 'https://ror.org/01cv22w67', 'no_lang_code', 1, 'https://ror.org/01cv22w67 IHI Corporation (United Kingdom)'),
(16143, 'https://ror.org/01cvgrc03', 'fr', 1, 'https://ror.org/01cvgrc03 Hespul'),
(16144, 'https://ror.org/01cwg0069', 'it', 1, 'https://ror.org/01cwg0069 Amitie'),
(16145, 'https://ror.org/01cy78b58', 'en', 1, 'https://ror.org/01cy78b58 European Business Register'),
(16146, 'https://ror.org/01d061936', 'en', 1, 'https://ror.org/01d061936 Central City Concern'),
(16147, 'https://ror.org/01d28vn04', 'no_lang_code', 1, 'https://ror.org/01d28vn04 KiNNO'),
(16148, 'https://ror.org/01d474d81', 'no_lang_code', 1, 'https://ror.org/01d474d81 Husqvarna (Belgium)'),
(16149, 'https://ror.org/01d530j85', 'no_lang_code', 1, 'https://ror.org/01d530j85 Luceome Biotechnologies (United States)'),
(16150, 'https://ror.org/01d735r83', 'no_lang_code', 1, 'https://ror.org/01d735r83 Vironika (United States)'),
(16151, 'https://ror.org/01d84q841', 'no_lang_code', 1, 'https://ror.org/01d84q841 Eurohelp Consulting'),
(16152, 'https://ror.org/01da5x211', 'en', 1, 'https://ror.org/01da5x211 Center for Economic Research and Environmental Strategy'),
(16153, 'https://ror.org/01dcwcs90', 'no_lang_code', 1, 'https://ror.org/01dcwcs90 Emtele (Finland)'),
(16154, 'https://ror.org/01dd27934', 'en', 1, 'https://ror.org/01dd27934 IN Financing & Project Management'),
(16155, 'https://ror.org/01de6vt88', 'no_lang_code', 1, 'https://ror.org/01de6vt88 Chemetall (Germany)'),
(16156, 'https://ror.org/01ded9f36', 'en', 1, 'https://ror.org/01ded9f36 British Transport Police'),
(16157, 'https://ror.org/01df52k09', 'no_lang_code', 1, 'https://ror.org/01df52k09 Artaic (United States)'),
(16158, 'https://ror.org/01djt4c90', 'no_lang_code', 1, 'https://ror.org/01djt4c90 Telefactor Robotics (United States)'),
(16159, 'https://ror.org/01dkzd737', 'en', 1, 'https://ror.org/01dkzd737 Air France Consulting'),
(16160, 'https://ror.org/01dm99568', 'ro', 1, 'https://ror.org/01dm99568 Institutul Geologic al României'),
(16161, 'https://ror.org/01dmpb598', 'en', 1, 'https://ror.org/01dmpb598 Entertainment Industry Foundation'),
(16162, 'https://ror.org/01dmz5y14', 'en', 1, 'https://ror.org/01dmz5y14 Colby–Sawyer College'),
(16163, 'https://ror.org/01dp8dw79', 'en', 1, 'https://ror.org/01dp8dw79 Consortium of Academic and Research Libraries in Illinois'),
(16164, 'https://ror.org/01dpfdz03', 'no_lang_code', 1, 'https://ror.org/01dpfdz03 CrossLang (Belgium)'),
(16165, 'https://ror.org/01dpsf321', 'no_lang_code', 1, 'https://ror.org/01dpsf321 On Telecoms (Greece)'),
(16166, 'https://ror.org/01ds3sh29', 'en', 1, 'https://ror.org/01ds3sh29 Children and Adults with Attention Deficit/Hyperactivity Disorder'),
(16167, 'https://ror.org/01dxs6p42', 'en', 1, 'https://ror.org/01dxs6p42 European Migration Centre EuropƤisches Migrationszentrum'),
(16168, 'https://ror.org/01dy8dt32', 'no_lang_code', 1, 'https://ror.org/01dy8dt32 Quantason (United States)'),
(16169, 'https://ror.org/01dyrtb20', 'no_lang_code', 1, 'https://ror.org/01dyrtb20 Munich Re (United States)'),
(16170, 'https://ror.org/01dz62b56', 'no_lang_code', 1, 'https://ror.org/01dz62b56 Innoprot (Spain)'),
(16171, 'https://ror.org/01dz8hz75', 'en', 1, 'https://ror.org/01dz8hz75 American Geriatrics Society'),
(16172, 'https://ror.org/01e09ge17', 'no_lang_code', 1, 'https://ror.org/01e09ge17 EasyCGI (United States)'),
(16173, 'https://ror.org/01e0aj966', 'no_lang_code', 1, 'https://ror.org/01e0aj966 QRx Pharma (United States)'),
(16174, 'https://ror.org/01e0wse52', 'de', 1, 'https://ror.org/01e0wse52 Bundesverband der deutschen Fischindustrie und des Fischgroßhandels'),
(16175, 'https://ror.org/01e2ynf23', 'en', 1, 'https://ror.org/01e2ynf23 Women''s and Children''s Health Network'),
(16176, 'https://ror.org/01e35h870', 'en', 1, 'https://ror.org/01e35h870 European Learning Industry Group'),
(16177, 'https://ror.org/01e3a4n81', 'en', 1, 'https://ror.org/01e3a4n81 Buffalo Society of Natural Sciences'),
(16178, 'https://ror.org/01e5vvr68', 'no_lang_code', 1, 'https://ror.org/01e5vvr68 HƤmosan (Austria)'),
(16179, 'https://ror.org/01e5x8t10', 'en', 1, 'https://ror.org/01e5x8t10 Vision Cooperative Research Centre'),
(16180, 'https://ror.org/01e8nps30', 'en', 1, 'https://ror.org/01e8nps30 Spirituality For Kids International'),
(16181, 'https://ror.org/01e8py533', 'en', 1, 'https://ror.org/01e8py533 Agrhymet Regional Centre'),
(16182, 'https://ror.org/01ebn9j06', 'no_lang_code', 1, 'https://ror.org/01ebn9j06 Iren (Italy)'),
(16183, 'https://ror.org/01eetqe63', 'en', 1, 'https://ror.org/01eetqe63 National Council for Gender Equality'),
(16184, 'https://ror.org/01efjsc63', 'no_lang_code', 1, 'https://ror.org/01efjsc63 Codamotion (United Kingdom)'),
(16185, 'https://ror.org/01egrn244', 'no_lang_code', 1, 'https://ror.org/01egrn244 Infrabel (Belgium)'),
(16186, 'https://ror.org/01ejvy845', 'no_lang_code', 1, 'https://ror.org/01ejvy845 Edna Pasher Ph.D & Associates (Israel)'),
(16187, 'https://ror.org/01ep4ry35', 'en', 1, 'https://ror.org/01ep4ry35 Madison County Historical Society'),
(16188, 'https://ror.org/01eppzd87', 'no_lang_code', 1, 'https://ror.org/01eppzd87 LKSoftWare (Germany)'),
(16189, 'https://ror.org/01eq4qj27', 'pt', 1, 'https://ror.org/01eq4qj27 Instituto do Emprego e Formação Profissional'),
(16190, 'https://ror.org/01esber41', 'en', 1, 'https://ror.org/01esber41 Wuesthoff Health System'),
(16191, 'https://ror.org/01et00j38', 'no_lang_code', 1, 'https://ror.org/01et00j38 Integrated Systems Incorporation (United States)'),
(16192, 'https://ror.org/01f06p727', 'en', 1, 'https://ror.org/01f06p727 Survivorship A to Z'),
(16193, 'https://ror.org/01f15gz68', 'no_lang_code', 1, 'https://ror.org/01f15gz68 GVS (United States)'),
(16194, 'https://ror.org/01f2grr18', 'no_lang_code', 1, 'https://ror.org/01f2grr18 Elsyca (Belgium)'),
(16195, 'https://ror.org/01f2td593', 'no_lang_code', 1, 'https://ror.org/01f2td593 Chiquita Brands International (United States)'),
(16196, 'https://ror.org/01f2xyc88', 'no_lang_code', 1, 'https://ror.org/01f2xyc88 Vintage Capital Group (United States)'),
(16197, 'https://ror.org/01f43e063', 'no_lang_code', 1, 'https://ror.org/01f43e063 Magneti Ljubljana (Slovenia)'),
(16198, 'https://ror.org/01f5tnx94', 'en', 1, 'https://ror.org/01f5tnx94 Institute of Ionized Gas Istituto Gas Ionizzati'),
(16199, 'https://ror.org/01f6f6n96', 'no_lang_code', 1, 'https://ror.org/01f6f6n96 Biochemtex (Italy)'),
(16200, 'https://ror.org/01f6y4z59', 'en', 1, 'https://ror.org/01f6y4z59 Benjamin Franklin Institute of Technology'),
(16201, 'https://ror.org/01f8pxc90', 'en', 1, 'https://ror.org/01f8pxc90 Eurogas'),
(16202, 'https://ror.org/01f9fz831', 'no_lang_code', 1, 'https://ror.org/01f9fz831 Ingenierƭa y Soluciones InformƔticas (Spain)'),
(16203, 'https://ror.org/01f9j1315', 'no_lang_code', 1, 'https://ror.org/01f9j1315 Lymba (United States)'),
(16204, 'https://ror.org/01fa9pv21', 'no_lang_code', 1, 'https://ror.org/01fa9pv21 Coretek (United States)'),
(16205, 'https://ror.org/01fbtw415', 'no_lang_code', 1, 'https://ror.org/01fbtw415 Generation Biotech (United States)'),
(16206, 'https://ror.org/01fdnyw87', 'en', 1, 'https://ror.org/01fdnyw87 M. Nodia Institute of Geophysics'),
(16207, 'https://ror.org/01few5909', 'no_lang_code', 1, 'https://ror.org/01few5909 Barclays (United Kingdom)'),
(16208, 'https://ror.org/01ffxpj85', 'no_lang_code', 1, 'https://ror.org/01ffxpj85 The Miracle Center (United States)'),
(16209, 'https://ror.org/01fg04993', 'no_lang_code', 1, 'https://ror.org/01fg04993 ACS Biomarker (Netherlands)'),
(16210, 'https://ror.org/01fhq9k82', 'no_lang_code', 1, 'https://ror.org/01fhq9k82 Daren Labs (Israel)'),
(16211, 'https://ror.org/01fhvk277', 'no_lang_code', 1, 'https://ror.org/01fhvk277 Medical Engineering Innovations (United States)'),
(16212, 'https://ror.org/01fjxvf67', 'en', 1, 'https://ror.org/01fjxvf67 Southwest Center for Chronic Disease'),
(16213, 'https://ror.org/01fp7rv25', 'no_lang_code', 1, 'https://ror.org/01fp7rv25 Ingegneria dei Trasporti (Italy)'),
(16214, 'https://ror.org/01fq88m19', 'en', 1, 'https://ror.org/01fq88m19 Missouri River Regional Library'),
(16215, 'https://ror.org/01fqg5k81', 'en', 1, 'https://ror.org/01fqg5k81 BayCare Health System'),
(16216, 'https://ror.org/01fr56s57', 'no_lang_code', 1, 'https://ror.org/01fr56s57 Curious Directive (United Kingdom)'),
(16217, 'https://ror.org/01frxsf98', 'en', 1, 'https://ror.org/01frxsf98 Muscular Dystrophy Association'),
(16218, 'https://ror.org/01fs5qc70', 'en', 1, 'https://ror.org/01fs5qc70 Tiburcio Vasquez Health Center'),
(16219, 'https://ror.org/01fs6y727', 'no_lang_code', 1, 'https://ror.org/01fs6y727 Anvil Semiconductors (United Kingdom)'),
(16220, 'https://ror.org/01fshr394', 'no_lang_code', 1, 'https://ror.org/01fshr394 Adarza BioSystems (United States)'),
(16221, 'https://ror.org/01fsr6x28', 'no_lang_code', 1, 'https://ror.org/01fsr6x28 Frutarom (United Kingdom)'),
(16222, 'https://ror.org/01fw88k98', 'en', 1, 'https://ror.org/01fw88k98 State of Connecticut Judicial Branch'),
(16223, 'https://ror.org/01fwrew07', 'no_lang_code', 1, 'https://ror.org/01fwrew07 Starlab (United States)'),
(16224, 'https://ror.org/01fxncn81', 'no_lang_code', 1, 'https://ror.org/01fxncn81 Aeristech (United Kingdom)'),
(16225, 'https://ror.org/01fypyt73', 'no_lang_code', 1, 'https://ror.org/01fypyt73 Instrument Design Technology (United Kingdom)'),
(16226, 'https://ror.org/01fzeeh76', 'no_lang_code', 1, 'https://ror.org/01fzeeh76 Artelys (France)'),
(16227, 'https://ror.org/01g00ps54', 'no_lang_code', 1, 'https://ror.org/01g00ps54 Kraken Sonar (Canada)'),
(16228, 'https://ror.org/01g022076', 'no_lang_code', 1, 'https://ror.org/01g022076 Therapure Biopharma (Canada)'),
(16229, 'https://ror.org/01g0g4720', 'es', 1, 'https://ror.org/01g0g4720 Fondo de Acción Urgente América Latina y el Caribe Urgent Action Fund for Latin America and the Caribbean'),
(16230, 'https://ror.org/01g1dn598', 'en', 1, 'https://ror.org/01g1dn598 Southwestern Michigan College'),
(16231, 'https://ror.org/01g2kx755', 'en', 1, 'https://ror.org/01g2kx755 West Town Bikes'),
(16232, 'https://ror.org/01g2p0822', 'en', 1, 'https://ror.org/01g2p0822 Hebrew Theological College'),
(16233, 'https://ror.org/01g325629', 'en', 1, 'https://ror.org/01g325629 Aims Community College'),
(16234, 'https://ror.org/01g44f369', 'no_lang_code', 1, 'https://ror.org/01g44f369 DynaVox (United States)'),
(16235, 'https://ror.org/01g5qva43', 'en', 1, 'https://ror.org/01g5qva43 Cincinnati State Technical and Community College'),
(16236, 'https://ror.org/01g853f75', 'en', 1, 'https://ror.org/01g853f75 Institute of Ion Plasma Laser Technologies'),
(16237, 'https://ror.org/01g986079', 'no_lang_code', 1, 'https://ror.org/01g986079 Fresti (Portugal)'),
(16238, 'https://ror.org/01g9rp025', 'en', 1, 'https://ror.org/01g9rp025 Austin Independent School District Distrito Escolar Independiente de Austin'),
(16239, 'https://ror.org/01gc1ag70', 'en', 1, 'https://ror.org/01gc1ag70 Alcohol Drug Mental Health Board of Franklin County'),
(16240, 'https://ror.org/01gd1dh27', 'fr', 1, 'https://ror.org/01gd1dh27 Laboratoire de Recherche des Monuments Historiques'),
(16241, 'https://ror.org/01gf20981', 'en', 1, 'https://ror.org/01gf20981 Appalachian Regional Healthcare'),
(16242, 'https://ror.org/01gf94c09', 'en', 1, 'https://ror.org/01gf94c09 Latina Center'),
(16243, 'https://ror.org/01ghqfw43', 'no_lang_code', 1, 'https://ror.org/01ghqfw43 Coriant (Germany)'),
(16244, 'https://ror.org/01gj24y87', 'en', 1, 'https://ror.org/01gj24y87 Ministrstvo za Kulturo Ministry of Culture'),
(16245, 'https://ror.org/01gk96h18', 'no_lang_code', 1, 'https://ror.org/01gk96h18 GreatCell Solar (United Kingdom)'),
(16246, 'https://ror.org/01gkd7j47', 'no_lang_code', 1, 'https://ror.org/01gkd7j47 Bio Molecular Technology (United States)'),
(16247, 'https://ror.org/01gnp4591', 'en', 1, 'https://ror.org/01gnp4591 Institute of Chemical Engineering'),
(16248, 'https://ror.org/01gq88837', 'no_lang_code', 1, 'https://ror.org/01gq88837 Hypertech (Greece)'),
(16249, 'https://ror.org/01gqg0b82', 'no_lang_code', 1, 'https://ror.org/01gqg0b82 Ecobat Technologies (Germany)'),
(16250, 'https://ror.org/01gqmxc42', 'en', 1, 'https://ror.org/01gqmxc42 Deutsche Angestellten-Gewerkschaft German Union of Salaried Employees'),
(16251, 'https://ror.org/01gr48a54', 'en', 1, 'https://ror.org/01gr48a54 Alaska Marine Safety Education Association'),
(16252, 'https://ror.org/01gzdh662', 'no_lang_code', 1, 'https://ror.org/01gzdh662 Hyperion (Ireland)'),
(16253, 'https://ror.org/01h05fy77', 'no_lang_code', 1, 'https://ror.org/01h05fy77 ƅAC Microtec (Sweden)'),
(16254, 'https://ror.org/01h3r2827', 'en', 1, 'https://ror.org/01h3r2827 Rhode Island Health Center Association'),
(16255, 'https://ror.org/01h49hc89', 'en', 1, 'https://ror.org/01h49hc89 Normal Public Library'),
(16256, 'https://ror.org/01h4hrx10', 'no_lang_code', 1, 'https://ror.org/01h4hrx10 Biocatalysts (United Kingdom)'),
(16257, 'https://ror.org/01h5cth39', 'en', 1, 'https://ror.org/01h5cth39 Protestant Reformed Churches in America'),
(16258, 'https://ror.org/01h6fqa13', 'no_lang_code', 1, 'https://ror.org/01h6fqa13 Axon Automotive (United Kingdom)'),
(16259, 'https://ror.org/01h6t1j28', 'es', 1, 'https://ror.org/01h6t1j28 Centro de Referencia Estatal de Autonomƭa Personal y Ayudas TƩcnicas'),
(16260, 'https://ror.org/01h8srv03', 'no_lang_code', 1, 'https://ror.org/01h8srv03 Fiji Systems (United States)'),
(16261, 'https://ror.org/01h8xv021', 'no_lang_code', 1, 'https://ror.org/01h8xv021 Waters (United States)'),
(16262, 'https://ror.org/01h9s9j69', 'no_lang_code', 1, 'https://ror.org/01h9s9j69 JRI Orthopaedics (United Kingdom)'),
(16263, 'https://ror.org/01ha10g31', 'no_lang_code', 1, 'https://ror.org/01ha10g31 Cyprus Research and Innovation Center (Cyprus)'),
(16264, 'https://ror.org/01hbh1z68', 'en', 1, 'https://ror.org/01hbh1z68 Sloan*Longway'),
(16265, 'https://ror.org/01hdcyq69', 'no_lang_code', 1, 'https://ror.org/01hdcyq69 Meggitt (United Kingdom)'),
(16266, 'https://ror.org/01hhf0c93', 'en', 1, 'https://ror.org/01hhf0c93 Consorzio Armatori per la Ricerca Italian Shipowners Research Consortium'),
(16267, 'https://ror.org/01hmvx995', 'no_lang_code', 1, 'https://ror.org/01hmvx995 Hydrometeorological Innovative Solutions (Spain)'),
(16268, 'https://ror.org/01hq5ez54', 'no_lang_code', 1, 'https://ror.org/01hq5ez54 Immuno-Mycologics'),
(16269, 'https://ror.org/01hqrfw90', 'en', 1, 'https://ror.org/01hqrfw90 Waukesha County Technical College'),
(16270, 'https://ror.org/01hrz5b21', 'en', 1, 'https://ror.org/01hrz5b21 Building Bridges'),
(16271, 'https://ror.org/01hsff479', 'en', 1, 'https://ror.org/01hsff479 Kentucky Department of Education'),
(16272, 'https://ror.org/01hxtdq06', 'en', 1, 'https://ror.org/01hxtdq06 Spertus Institute for Jewish Learning and Leadership'),
(16273, 'https://ror.org/01hy2c330', 'en', 1, 'https://ror.org/01hy2c330 NS Kurnakova Institute of General and Inorganic Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей Šø неорганической химии им. Š.Š”. ŠšŃƒŃ€Š½Š°ŠŗŠ¾Š²Š° Российской акаГемии наук'),
(16274, 'https://ror.org/01hzn9j62', 'no_lang_code', 1, 'https://ror.org/01hzn9j62 Applied Nanodetectors (United Kingdom)'),
(16275, 'https://ror.org/01hzp2x54', 'no_lang_code', 1, 'https://ror.org/01hzp2x54 Amber Waves Software (United States)'),
(16276, 'https://ror.org/01j1bxw34', 'no_lang_code', 1, 'https://ror.org/01j1bxw34 FIRA International (United Kingdom)'),
(16277, 'https://ror.org/01j1n9y37', 'en', 1, 'https://ror.org/01j1n9y37 Ave Maria School of Law Escuela de Derecho Ave MarĆ­a'),
(16278, 'https://ror.org/01j1ref86', 'en', 1, 'https://ror.org/01j1ref86 Gathering Place'),
(16279, 'https://ror.org/01j262e40', 'no_lang_code', 1, 'https://ror.org/01j262e40 Mouchel (United Kingdom)'),
(16280, 'https://ror.org/01j285b19', 'no_lang_code', 1, 'https://ror.org/01j285b19 AraVasc (United States)'),
(16281, 'https://ror.org/01j3ge177', 'en', 1, 'https://ror.org/01j3ge177 Christus Santa Rosa Health System'),
(16282, 'https://ror.org/01j45tp19', 'no_lang_code', 1, 'https://ror.org/01j45tp19 Joensuu Science Park'),
(16283, 'https://ror.org/01j4wpj84', 'en', 1, 'https://ror.org/01j4wpj84 Health On The Net Foundation'),
(16284, 'https://ror.org/01j65ny98', 'no_lang_code', 1, 'https://ror.org/01j65ny98 Acktar (Israel)'),
(16285, 'https://ror.org/01j6w4907', 'en', 1, 'https://ror.org/01j6w4907 Biloxi Public Schools'),
(16286, 'https://ror.org/01j73pp16', 'no_lang_code', 1, 'https://ror.org/01j73pp16 Leonardo Film (Germany)'),
(16287, 'https://ror.org/01j7c2q87', 'no_lang_code', 1, 'https://ror.org/01j7c2q87 OnCore Biopharma (United States)'),
(16288, 'https://ror.org/01j7ed328', 'en', 1, 'https://ror.org/01j7ed328 International Organization for Migration Internationale Organisation für Migration Organisation internationale pour les migrations Organizzazione Internazionale per le Migrazioni'),
(16289, 'https://ror.org/01j93z975', 'no_lang_code', 1, 'https://ror.org/01j93z975 Azienda del Consorzio Trasporti Veneziano (Italy)'),
(16290, 'https://ror.org/01jb23d14', 'no_lang_code', 1, 'https://ror.org/01jb23d14 IMS Maxims (Ireland)'),
(16291, 'https://ror.org/01jbd8x32', 'en', 1, 'https://ror.org/01jbd8x32 Through the Looking Glass'),
(16292, 'https://ror.org/01jbqg059', 'no_lang_code', 1, 'https://ror.org/01jbqg059 Enervana Technologies (United States)'),
(16293, 'https://ror.org/01jbwxs60', 'no_lang_code', 1, 'https://ror.org/01jbwxs60 IBC Advanced Technologies (United States)'),
(16294, 'https://ror.org/01jc57498', 'en', 1, 'https://ror.org/01jc57498 Retina Associates'),
(16295, 'https://ror.org/01jcgc273', 'no_lang_code', 1, 'https://ror.org/01jcgc273 Advanced Coatings (Belgium)'),
(16296, 'https://ror.org/01jfqyt17', 'no_lang_code', 1, 'https://ror.org/01jfqyt17 Danaos (Greece)'),
(16297, 'https://ror.org/01jgjmr04', 'no_lang_code', 1, 'https://ror.org/01jgjmr04 Aurora Optics (United States)'),
(16298, 'https://ror.org/01jkxsd71', 'no_lang_code', 1, 'https://ror.org/01jkxsd71 Dekati (Finland)'),
(16299, 'https://ror.org/01jq16575', 'en', 1, 'https://ror.org/01jq16575 Agence fƩdƩrale de contrƓle nuclƩaire Federaal Agentschap voor Nucleaire Controle Federal Agency for Nuclear Control'),
(16300, 'https://ror.org/01jq6p072', 'en', 1, 'https://ror.org/01jq6p072 Turnstone'),
(16301, 'https://ror.org/01jr3js48', 'en', 1, 'https://ror.org/01jr3js48 Texas Partnership for End-of-Life Care'),
(16302, 'https://ror.org/01jt99c87', 'no_lang_code', 1, 'https://ror.org/01jt99c87 Clevercherry (United Kingdom)'),
(16303, 'https://ror.org/01jtkws96', 'no_lang_code', 1, 'https://ror.org/01jtkws96 Biographics (United States)'),
(16304, 'https://ror.org/01jtsd542', 'en', 1, 'https://ror.org/01jtsd542 Mount Vernon Nazarene University'),
(16305, 'https://ror.org/01k08ez36', 'en', 1, 'https://ror.org/01k08ez36 Wilmington College'),
(16306, 'https://ror.org/01k2x9g80', 'en', 1, 'https://ror.org/01k2x9g80 Saint Joseph''s College'),
(16307, 'https://ror.org/01k2z4a60', 'en', 1, 'https://ror.org/01k2z4a60 Studebaker National Museum'),
(16308, 'https://ror.org/01k4bzh19', 'no_lang_code', 1, 'https://ror.org/01k4bzh19 Arjowiggins (United Kingdom)'),
(16309, 'https://ror.org/01k6asa13', 'no_lang_code', 1, 'https://ror.org/01k6asa13 Bactest (United Kingdom)'),
(16310, 'https://ror.org/01k6b8252', 'no_lang_code', 1, 'https://ror.org/01k6b8252 Container Finance (Finland)'),
(16311, 'https://ror.org/01k7x8h55', 'it', 1, 'https://ror.org/01k7x8h55 Centro Europa Ricerche'),
(16312, 'https://ror.org/01k8bzw08', 'no_lang_code', 1, 'https://ror.org/01k8bzw08 Genalyte (United States)'),
(16313, 'https://ror.org/01kah5w88', 'en', 1, 'https://ror.org/01kah5w88 Realistic Education in Action Coalition to Foster Health'),
(16314, 'https://ror.org/01kaqt385', 'en', 1, 'https://ror.org/01kaqt385 WellStar Health System'),
(16315, 'https://ror.org/01kb5gr72', 'no_lang_code', 1, 'https://ror.org/01kb5gr72 Animal Monday (United Kingdom)'),
(16316, 'https://ror.org/01kcks752', 'en', 1, 'https://ror.org/01kcks752 Institute for Medical BioMathematics'),
(16317, 'https://ror.org/01kd78z21', 'no_lang_code', 1, 'https://ror.org/01kd78z21 01 Pliroforiki (Greece)'),
(16318, 'https://ror.org/01ke24198', 'no_lang_code', 1, 'https://ror.org/01ke24198 EUrelations (Switzerland)'),
(16319, 'https://ror.org/01keyq725', 'en', 1, 'https://ror.org/01keyq725 Helicon Foundation'),
(16320, 'https://ror.org/01khv4e51', 'en', 1, 'https://ror.org/01khv4e51 Wayne Country Day School'),
(16321, 'https://ror.org/01kkwkn88', 'en', 1, 'https://ror.org/01kkwkn88 Thai Health And Information Services'),
(16322, 'https://ror.org/01kmkkm51', 'fr', 1, 'https://ror.org/01kmkkm51 Chambre de Commerce et d''Industrie Occitanie PyrƩnƩes-MƩditerranƩe'),
(16323, 'https://ror.org/01kq87685', 'no_lang_code', 1, 'https://ror.org/01kq87685 Electricidade dos AƧores (Portugal)'),
(16324, 'https://ror.org/01kqydj80', 'es', 1, 'https://ror.org/01kqydj80 Fundación para el Desarrollo de la Función Social de las Comunicaciones'),
(16325, 'https://ror.org/01kr2nz80', 'en', 1, 'https://ror.org/01kr2nz80 Canterbury Medical Research Foundation'),
(16326, 'https://ror.org/01kra6c87', 'en', 1, 'https://ror.org/01kra6c87 Cedarburg Public Library'),
(16327, 'https://ror.org/01kratx56', 'de', 1, 'https://ror.org/01kratx56 Federal Statistical Office Statistisches Bundesamt'),
(16328, 'https://ror.org/01krfz017', 'en', 1, 'https://ror.org/01krfz017 Engage'),
(16329, 'https://ror.org/01kss4073', 'en', 1, 'https://ror.org/01kss4073 Alamo Area Council of Governments'),
(16330, 'https://ror.org/01kswen19', 'fr', 1, 'https://ror.org/01kswen19 FĆ©dĆ©ration Nationale des Centres d''Initiatives pour Valoriser l’Agriculture et le Milieu Rural'),
(16331, 'https://ror.org/01ktsgp73', 'en', 1, 'https://ror.org/01ktsgp73 Hospice Savannah'),
(16332, 'https://ror.org/01ktvk109', 'en', 1, 'https://ror.org/01ktvk109 Peru Public Library'),
(16333, 'https://ror.org/01kv9ne32', 'no_lang_code', 1, 'https://ror.org/01kv9ne32 Geostock (France)'),
(16334, 'https://ror.org/01kwgtf21', 'en', 1, 'https://ror.org/01kwgtf21 Helena Public School District'),
(16335, 'https://ror.org/01m08j794', 'no_lang_code', 1, 'https://ror.org/01m08j794 Lürssen (Germany)'),
(16336, 'https://ror.org/01m12v471', 'no_lang_code', 1, 'https://ror.org/01m12v471 Ambient Systems (Netherlands)'),
(16337, 'https://ror.org/01m1ems94', 'en', 1, 'https://ror.org/01m1ems94 Sector Skills Council for Science, Engineering and Manufacturing Technologies'),
(16338, 'https://ror.org/01m29p162', 'no_lang_code', 1, 'https://ror.org/01m29p162 Median SCP (Spain)'),
(16339, 'https://ror.org/01m2sr579', 'fr', 1, 'https://ror.org/01m2sr579 Ministère de la Santé'),
(16340, 'https://ror.org/01m418p31', 'no_lang_code', 1, 'https://ror.org/01m418p31 Schmolz Bickenbach (Germany)'),
(16341, 'https://ror.org/01m58p389', 'en', 1, 'https://ror.org/01m58p389 Washington County Schools'),
(16342, 'https://ror.org/01m6mfc08', 'fr', 1, 'https://ror.org/01m6mfc08 Fondation MƩrieux'),
(16343, 'https://ror.org/01m7s5539', 'no_lang_code', 1, 'https://ror.org/01m7s5539 Altoris (United States)'),
(16344, 'https://ror.org/01maah330', 'no_lang_code', 1, 'https://ror.org/01maah330 Intrinsic LifeSciences (United States)'),
(16345, 'https://ror.org/01md11a61', 'no_lang_code', 1, 'https://ror.org/01md11a61 Kleinewefers Kunststoffanlagen (Germany)'),
(16346, 'https://ror.org/01mde0021', 'no_lang_code', 1, 'https://ror.org/01mde0021 Cellectis (United States)'),
(16347, 'https://ror.org/01me3dp58', 'no_lang_code', 1, 'https://ror.org/01me3dp58 Knowledge Now (United Kingdom)'),
(16348, 'https://ror.org/01mf3rs17', 'no_lang_code', 1, 'https://ror.org/01mf3rs17 Geoloc Systems (France)'),
(16349, 'https://ror.org/01mge3v08', 'no_lang_code', 1, 'https://ror.org/01mge3v08 Capgemini (United States)'),
(16350, 'https://ror.org/01mmrtt85', 'no_lang_code', 1, 'https://ror.org/01mmrtt85 Groenholland (Netherlands)'),
(16351, 'https://ror.org/01mqtae40', 'en', 1, 'https://ror.org/01mqtae40 Vista Community Clinic'),
(16352, 'https://ror.org/01msce522', 'en', 1, 'https://ror.org/01msce522 Contractor UK'),
(16353, 'https://ror.org/01mscn238', 'no_lang_code', 1, 'https://ror.org/01mscn238 GeneCopoeia (United States)'),
(16354, 'https://ror.org/01mt5jq93', 'en', 1, 'https://ror.org/01mt5jq93 Association Libanaise pour la Maitrise de l’Energie et pour l’Environnement Lebanese Association for Energy Saving & for Environment'),
(16355, 'https://ror.org/01mw2b749', 'no_lang_code', 1, 'https://ror.org/01mw2b749 Dassault SystĆØmes (Germany)'),
(16356, 'https://ror.org/01mwm5w71', 'en', 1, 'https://ror.org/01mwm5w71 Centre EuropƩen de GƩodynamique et de SƩismologie European Center for Geodynamics and Seismology'),
(16357, 'https://ror.org/01mwzyk87', 'en', 1, 'https://ror.org/01mwzyk87 People Living Through Cancer'),
(16358, 'https://ror.org/01mx9ck98', 'no_lang_code', 1, 'https://ror.org/01mx9ck98 Dotsoft (Greece)'),
(16359, 'https://ror.org/01mxhss58', 'en', 1, 'https://ror.org/01mxhss58 eTraining Technology Academy'),
(16360, 'https://ror.org/01mz29f88', 'en', 1, 'https://ror.org/01mz29f88 Pasadera Behavioral Health Network'),
(16361, 'https://ror.org/01n04jf21', 'no_lang_code', 1, 'https://ror.org/01n04jf21 EagleBurgmann (Germany)'),
(16362, 'https://ror.org/01n08tj51', 'pt', 1, 'https://ror.org/01n08tj51 Instituto da Conservação da Natureza e das Florestas'),
(16363, 'https://ror.org/01n3jdx02', 'no_lang_code', 1, 'https://ror.org/01n3jdx02 Dr. Hƶnle (Germany)'),
(16364, 'https://ror.org/01n3jtg54', 'en', 1, 'https://ror.org/01n3jtg54 Silicon Valley Independent Living Center'),
(16365, 'https://ror.org/01n5p4z29', 'no_lang_code', 1, 'https://ror.org/01n5p4z29 Stantec (United States)'),
(16366, 'https://ror.org/01n5pkr65', 'no_lang_code', 1, 'https://ror.org/01n5pkr65 Qualidigm (United States)'),
(16367, 'https://ror.org/01n6jnf20', 'no_lang_code', 1, 'https://ror.org/01n6jnf20 Eminent Services Corporation (United States)'),
(16368, 'https://ror.org/01n7rsn58', 'en', 1, 'https://ror.org/01n7rsn58 Association des Constructeurs EuropƩens d''Automobiles European Automobile Manufacturers Association'),
(16369, 'https://ror.org/01nb9ks67', 'no_lang_code', 1, 'https://ror.org/01nb9ks67 Itasca Consultants (France)'),
(16370, 'https://ror.org/01nc8r848', 'no_lang_code', 1, 'https://ror.org/01nc8r848 Scribd (United States)'),
(16371, 'https://ror.org/01ndzp278', 'en', 1, 'https://ror.org/01ndzp278 Cleveland Heights University Heights Public Library'),
(16372, 'https://ror.org/01ne9en42', 'no_lang_code', 1, 'https://ror.org/01ne9en42 Deutsches Institut für Feuerfest und Keramik'),
(16373, 'https://ror.org/01nef6p29', 'no_lang_code', 1, 'https://ror.org/01nef6p29 Gale & Snowden Architects (United Kingdom)'),
(16374, 'https://ror.org/01nehxb52', 'no_lang_code', 1, 'https://ror.org/01nehxb52 Etma (Greece)'),
(16375, 'https://ror.org/01nfdb672', 'no_lang_code', 1, 'https://ror.org/01nfdb672 IBK (Germany)'),
(16376, 'https://ror.org/01nfeyj87', 'en', 1, 'https://ror.org/01nfeyj87 Cornerstone University'),
(16377, 'https://ror.org/01ngcpv42', 'no_lang_code', 1, 'https://ror.org/01ngcpv42 Health Care Service Corporation'),
(16378, 'https://ror.org/01nknep14', 'en', 1, 'https://ror.org/01nknep14 WellSpan Health'),
(16379, 'https://ror.org/01nm0pb19', 'en', 1, 'https://ror.org/01nm0pb19 Judson University'),
(16380, 'https://ror.org/01nms9j09', 'no_lang_code', 1, 'https://ror.org/01nms9j09 Alpes Lasers (Switzerland)'),
(16381, 'https://ror.org/01nn2x953', 'en', 1, 'https://ror.org/01nn2x953 Industrial Association Yarns Fabric Technical Textiles Industry'),
(16382, 'https://ror.org/01nnq1w58', 'no_lang_code', 1, 'https://ror.org/01nnq1w58 AvantiCell Science (United Kingdom)'),
(16383, 'https://ror.org/01np7wb66', 'en', 1, 'https://ror.org/01np7wb66 White Oak Library District'),
(16384, 'https://ror.org/01nqk4x38', 'en', 1, 'https://ror.org/01nqk4x38 National Defense University Universidad Nacional de Defensa'),
(16385, 'https://ror.org/01nsd9919', 'no_lang_code', 1, 'https://ror.org/01nsd9919 ImmuVen (United States)'),
(16386, 'https://ror.org/01nv7r365', 'no_lang_code', 1, 'https://ror.org/01nv7r365 Constructive Thinking Studio (United Kingdom)'),
(16387, 'https://ror.org/01nw59437', 'en', 1, 'https://ror.org/01nw59437 Louth County Council'),
(16388, 'https://ror.org/01nww6879', 'en', 1, 'https://ror.org/01nww6879 Waukesha County Museum'),
(16389, 'https://ror.org/01nxbg690', 'no_lang_code', 1, 'https://ror.org/01nxbg690 Human Solutions (Germany)'),
(16390, 'https://ror.org/01nyd3116', 'no_lang_code', 1, 'https://ror.org/01nyd3116 Hysytech (Italy)'),
(16391, 'https://ror.org/01nzc6q72', 'no_lang_code', 1, 'https://ror.org/01nzc6q72 Trento RISE (Italy)'),
(16392, 'https://ror.org/01p1jgk06', 'no_lang_code', 1, 'https://ror.org/01p1jgk06 Mecos Traxler (Switzerland)'),
(16393, 'https://ror.org/01p35xr84', 'no_lang_code', 1, 'https://ror.org/01p35xr84 Fabes Forschungs (Germany)'),
(16394, 'https://ror.org/01p3fa845', 'en', 1, 'https://ror.org/01p3fa845 Laucks Foundation'),
(16395, 'https://ror.org/01p3wmk50', 'en', 1, 'https://ror.org/01p3wmk50 College of Saint Mary'),
(16396, 'https://ror.org/01p3zag48', 'no_lang_code', 1, 'https://ror.org/01p3zag48 Aker (United Kingdom)'),
(16397, 'https://ror.org/01p7pw236', 'no_lang_code', 1, 'https://ror.org/01p7pw236 Gamax (Hungary)'),
(16398, 'https://ror.org/01pb5g963', 'en', 1, 'https://ror.org/01pb5g963 Xenobe Research Institute'),
(16399, 'https://ror.org/01pdcqg90', 'no_lang_code', 1, 'https://ror.org/01pdcqg90 Composite Integration (United Kingdom)'),
(16400, 'https://ror.org/01pe3b474', 'no_lang_code', 1, 'https://ror.org/01pe3b474 Global Maritime Services (United Kingdom)'),
(16401, 'https://ror.org/01pfrv343', 'en', 1, 'https://ror.org/01pfrv343 Ministry of the Interior İçişleri Bakanlığı'),
(16402, 'https://ror.org/01pghxv94', 'no_lang_code', 1, 'https://ror.org/01pghxv94 Celsense (United States)'),
(16403, 'https://ror.org/01pk3tm20', 'no_lang_code', 1, 'https://ror.org/01pk3tm20 Kommunedata (Denmark)'),
(16404, 'https://ror.org/01pmvz131', 'no_lang_code', 1, 'https://ror.org/01pmvz131 Eli Lilly (Germany)'),
(16405, 'https://ror.org/01ppcf422', 'no_lang_code', 1, 'https://ror.org/01ppcf422 3D Glass Solutions (United States)'),
(16406, 'https://ror.org/01pqc3561', 'en', 1, 'https://ror.org/01pqc3561 American Academy of Child and Adolescent Psychiatry'),
(16407, 'https://ror.org/01pqwyc94', 'en', 1, 'https://ror.org/01pqwyc94 Danish Film Institute'),
(16408, 'https://ror.org/01pr67x49', 'no_lang_code', 1, 'https://ror.org/01pr67x49 Arvia Technology (United Kingdom)'),
(16409, 'https://ror.org/01prj3807', 'no_lang_code', 1, 'https://ror.org/01prj3807 Invenio Imaging (United States)'),
(16410, 'https://ror.org/01prxxc82', 'it', 1, 'https://ror.org/01prxxc82 Lega Italiana Protezione Uccelli'),
(16411, 'https://ror.org/01ptfqt82', 'no_lang_code', 1, 'https://ror.org/01ptfqt82 Lassila & Tikanoja (Finland)'),
(16412, 'https://ror.org/01pv48e96', 'en', 1, 'https://ror.org/01pv48e96 Forschungszentrum für Medizintechnik und Biotechnologie Research Centre of Medical Technology and Biotechnology'),
(16413, 'https://ror.org/01pv4sc22', 'no_lang_code', 1, 'https://ror.org/01pv4sc22 KSE (United States)'),
(16414, 'https://ror.org/01pw3xa54', 'en', 1, 'https://ror.org/01pw3xa54 Greater Manchester Combined Authority'),
(16415, 'https://ror.org/01q219r58', 'en', 1, 'https://ror.org/01q219r58 Tennessee Justice Center'),
(16416, 'https://ror.org/01q222b25', 'en', 1, 'https://ror.org/01q222b25 Esther A. & Joseph Klingenstein Fund'),
(16417, 'https://ror.org/01q25wj29', 'en', 1, 'https://ror.org/01q25wj29 Georgia Mental Health Consumer Network'),
(16418, 'https://ror.org/01q283t76', 'no_lang_code', 1, 'https://ror.org/01q283t76 Atoutveille (France)'),
(16419, 'https://ror.org/01q2zc414', 'ro', 1, 'https://ror.org/01q2zc414 Institutul de Bioresurse Alimentare'),
(16420, 'https://ror.org/01q3fkf15', 'no_lang_code', 1, 'https://ror.org/01q3fkf15 Arccore (Sweden)'),
(16421, 'https://ror.org/01q3gg283', 'no_lang_code', 1, 'https://ror.org/01q3gg283 BS Rotor Technic (United Kingdom)'),
(16422, 'https://ror.org/01q44vc25', 'no_lang_code', 1, 'https://ror.org/01q44vc25 Kenaf Eco Fibers Italia (Italy)'),
(16423, 'https://ror.org/01q527f83', 'en', 1, 'https://ror.org/01q527f83 Kozloduy Nuclear Power Plant'),
(16424, 'https://ror.org/01q54vk58', 'no_lang_code', 1, 'https://ror.org/01q54vk58 ITRB (Cyprus)'),
(16425, 'https://ror.org/01q5ara80', 'pt', 1, 'https://ror.org/01q5ara80 CĆ¢mara Municipal do Porto'),
(16426, 'https://ror.org/01q5wx109', 'no_lang_code', 1, 'https://ror.org/01q5wx109 IVV Automação (Portugal)'),
(16427, 'https://ror.org/01q65bj34', 'en', 1, 'https://ror.org/01q65bj34 European Association for Battery Hybrid and Fuel Cell Electric Vehicles'),
(16428, 'https://ror.org/01q6bfj36', 'en', 1, 'https://ror.org/01q6bfj36 Blue Springs Historical Society'),
(16429, 'https://ror.org/01q781422', 'no_lang_code', 1, 'https://ror.org/01q781422 Atomising Systems (United Kingdom)'),
(16430, 'https://ror.org/01q7jq182', 'ro', 1, 'https://ror.org/01q7jq182 Executive Unit for Financing Higher Education, Research, Development and Innovation Unitatea Executiva Pentru Finantarea Invatamantului Superior a Cercetarii Dezvoltarii si Inovarii'),
(16431, 'https://ror.org/01q87er94', 'no_lang_code', 1, 'https://ror.org/01q87er94 Horton Levi (United Kingdom)'),
(16432, 'https://ror.org/01qa19b44', 'no_lang_code', 1, 'https://ror.org/01qa19b44 Mars (United Kingdom)'),
(16433, 'https://ror.org/01qa8rm62', 'es', 1, 'https://ror.org/01qa8rm62 Aspapel'),
(16434, 'https://ror.org/01qbkdg81', 'en', 1, 'https://ror.org/01qbkdg81 Rogerson Communities'),
(16435, 'https://ror.org/01qckg962', 'no_lang_code', 1, 'https://ror.org/01qckg962 Conference Management Services'),
(16436, 'https://ror.org/01qd58v91', 'en', 1, 'https://ror.org/01qd58v91 Baylor School'),
(16437, 'https://ror.org/01qdw1f80', 'no_lang_code', 1, 'https://ror.org/01qdw1f80 GeneSearch (United States)'),
(16438, 'https://ror.org/01qek4j34', 'fr', 1, 'https://ror.org/01qek4j34 Ministre de la Santé, de la Population et de la Réforme Hospitalière, Ministère de la Santé'),
(16439, 'https://ror.org/01qhxpv22', 'no_lang_code', 1, 'https://ror.org/01qhxpv22 Chalklabs (United States)'),
(16440, 'https://ror.org/01qjh7r74', 'no_lang_code', 1, 'https://ror.org/01qjh7r74 Adva Optical Networking (Poland)'),
(16441, 'https://ror.org/01qke2p33', 'no_lang_code', 1, 'https://ror.org/01qke2p33 Deliverics (United Kingdom)'),
(16442, 'https://ror.org/01qrny815', 'en', 1, 'https://ror.org/01qrny815 International Chemical Workers Union'),
(16443, 'https://ror.org/01qsj6b37', 'en', 1, 'https://ror.org/01qsj6b37 Hugo''s Restaurant'),
(16444, 'https://ror.org/01qts9y67', 'en', 1, 'https://ror.org/01qts9y67 Best Answer for Cancer Foundation'),
(16445, 'https://ror.org/01qv13213', 'en', 1, 'https://ror.org/01qv13213 World Science Festival'),
(16446, 'https://ror.org/01qwxyq54', 'en', 1, 'https://ror.org/01qwxyq54 Marinette County Libraries'),
(16447, 'https://ror.org/01qxk5g75', 'no_lang_code', 1, 'https://ror.org/01qxk5g75 Medknow (India)'),
(16448, 'https://ror.org/01qzakp85', 'no_lang_code', 1, 'https://ror.org/01qzakp85 Boart Longyear (United States)'),
(16449, 'https://ror.org/01qznp021', 'no_lang_code', 1, 'https://ror.org/01qznp021 CapSenze (Sweden)'),
(16450, 'https://ror.org/01r14tp08', 'no_lang_code', 1, 'https://ror.org/01r14tp08 Ovako (Finland)'),
(16451, 'https://ror.org/01r2man76', 'en', 1, 'https://ror.org/01r2man76 DeKalb County Board of Health'),
(16452, 'https://ror.org/01r3dw569', 'en', 1, 'https://ror.org/01r3dw569 Prevea Health'),
(16453, 'https://ror.org/01r678s56', 'en', 1, 'https://ror.org/01r678s56 Wisconsin Indianhead Technical College'),
(16454, 'https://ror.org/01r6w7s48', 'en', 1, 'https://ror.org/01r6w7s48 Association of Environmental Health Academic Programs'),
(16455, 'https://ror.org/01r8nn991', 'no_lang_code', 1, 'https://ror.org/01r8nn991 Biobyte Solutions (Germany)'),
(16456, 'https://ror.org/01ra40f04', 'en', 1, 'https://ror.org/01ra40f04 Veteran Homestead'),
(16457, 'https://ror.org/01rb58919', 'no_lang_code', 1, 'https://ror.org/01rb58919 Ionic (United States)'),
(16458, 'https://ror.org/01rbzk889', 'no_lang_code', 1, 'https://ror.org/01rbzk889 Bio-K+ International (Canada)'),
(16459, 'https://ror.org/01ren5s60', 'no_lang_code', 1, 'https://ror.org/01ren5s60 Gold Biotechnology (United States)'),
(16460, 'https://ror.org/01rgajx11', 'en', 1, 'https://ror.org/01rgajx11 Families Together in New York State'),
(16461, 'https://ror.org/01rh7dh97', 'no_lang_code', 1, 'https://ror.org/01rh7dh97 Amethyst Technologies (United States)'),
(16462, 'https://ror.org/01rhrdz17', 'no_lang_code', 1, 'https://ror.org/01rhrdz17 InfraTec (Germany)'),
(16463, 'https://ror.org/01rhsna23', 'en', 1, 'https://ror.org/01rhsna23 European Tyre Recycling Association'),
(16464, 'https://ror.org/01rjjd360', 'no_lang_code', 1, 'https://ror.org/01rjjd360 KalVista Pharmaceuticals (United States)'),
(16465, 'https://ror.org/01rpj9v06', 'en', 1, 'https://ror.org/01rpj9v06 Albany Stratton VA Medical Center Albany'),
(16466, 'https://ror.org/01rqa6755', 'en', 1, 'https://ror.org/01rqa6755 American Federation of Teachers'),
(16467, 'https://ror.org/01rqrfd09', 'en', 1, 'https://ror.org/01rqrfd09 Illinois Railway Museum'),
(16468, 'https://ror.org/01rqt6394', 'en', 1, 'https://ror.org/01rqt6394 Arkansas Science & Technology'),
(16469, 'https://ror.org/01rr6k888', 'en', 1, 'https://ror.org/01rr6k888 Comité de Liaison Européen des fabricants d''équipements et de Pièces Automobiles European Association of Automotive Suppliers'),
(16470, 'https://ror.org/01rr96195', 'en', 1, 'https://ror.org/01rr96195 Genesee/Orleans Council on Alcoholism and Substance Abuse'),
(16471, 'https://ror.org/01rt4qf18', 'en', 1, 'https://ror.org/01rt4qf18 Abbotsford Veterinary Clinic'),
(16472, 'https://ror.org/01rtxd659', 'no_lang_code', 1, 'https://ror.org/01rtxd659 Moog (Netherlands)'),
(16473, 'https://ror.org/01rvyy374', 'en', 1, 'https://ror.org/01rvyy374 Majandus- ja Kommunikatsiooniministeerium Ministry of Economic Affairs and Communications'),
(16474, 'https://ror.org/01rxaf991', 'en', 1, 'https://ror.org/01rxaf991 Zhejiang Police College ęµ™ę±Ÿč­¦åÆŸå­¦é™¢');
INSERT INTO `rors` VALUES
(16475, 'https://ror.org/01s0wyf50', 'en', 1, 'https://ror.org/01s0wyf50 Computer Network Information Center č®”ē®—ęœŗē½‘ē»œäæ”ęÆäø­åæƒ'),
(16476, 'https://ror.org/01s2j5a22', 'no_lang_code', 1, 'https://ror.org/01s2j5a22 Hyundai Motors (Germany)'),
(16477, 'https://ror.org/01s2ng935', 'no_lang_code', 1, 'https://ror.org/01s2ng935 BioSensics (United States)'),
(16478, 'https://ror.org/01s3s2b03', 'es', 1, 'https://ror.org/01s3s2b03 Instituto de Fomento de la Región de Murcia'),
(16479, 'https://ror.org/01s3w4134', 'no_lang_code', 1, 'https://ror.org/01s3w4134 IGI Technologies (United States)'),
(16480, 'https://ror.org/01s50yf06', 'en', 1, 'https://ror.org/01s50yf06 Society for Biomedical Diabetes Research'),
(16481, 'https://ror.org/01s676r39', 'en', 1, 'https://ror.org/01s676r39 Hellenic Federation of Enterprises'),
(16482, 'https://ror.org/01s6ka014', 'no_lang_code', 1, 'https://ror.org/01s6ka014 AlphaLabs (France)'),
(16483, 'https://ror.org/01s6z0f52', 'en', 1, 'https://ror.org/01s6z0f52 Catholic Theological Union'),
(16484, 'https://ror.org/01s9da178', 'no_lang_code', 1, 'https://ror.org/01s9da178 Iznab (Poland)'),
(16485, 'https://ror.org/01s9r5913', 'no_lang_code', 1, 'https://ror.org/01s9r5913 Carte Blanche Conseil'),
(16486, 'https://ror.org/01se7j361', 'no_lang_code', 1, 'https://ror.org/01se7j361 nLIGHT (United States)'),
(16487, 'https://ror.org/01sfgr903', 'no_lang_code', 1, 'https://ror.org/01sfgr903 Mediri (Germany)'),
(16488, 'https://ror.org/01sfj3073', 'no_lang_code', 1, 'https://ror.org/01sfj3073 Cyberlightning (Finland)'),
(16489, 'https://ror.org/01sj5nb95', 'no_lang_code', 1, 'https://ror.org/01sj5nb95 Inova Pro (Czechia)'),
(16490, 'https://ror.org/01sjyrz62', 'en', 1, 'https://ror.org/01sjyrz62 Hull City Council'),
(16491, 'https://ror.org/01skhtc50', 'no_lang_code', 1, 'https://ror.org/01skhtc50 Hummingbird Diagnostics (Germany)'),
(16492, 'https://ror.org/01sm3jy79', 'no_lang_code', 1, 'https://ror.org/01sm3jy79 Health Technomics (United States)'),
(16493, 'https://ror.org/01sm75b57', 'en', 1, 'https://ror.org/01sm75b57 Schwab Rehabilitation Hospital'),
(16494, 'https://ror.org/01srz8p41', 'no_lang_code', 1, 'https://ror.org/01srz8p41 DRVision Technologies (United States)'),
(16495, 'https://ror.org/01ssr1j70', 'no_lang_code', 1, 'https://ror.org/01ssr1j70 In Silico Toxicology (Switzerland)'),
(16496, 'https://ror.org/01svjmt78', 'no_lang_code', 1, 'https://ror.org/01svjmt78 McCann Associates (United States)'),
(16497, 'https://ror.org/01sw63p34', 'en', 1, 'https://ror.org/01sw63p34 Energy Agency of Plovdiv'),
(16498, 'https://ror.org/01sxbnv57', 'no_lang_code', 1, 'https://ror.org/01sxbnv57 RealNetworks (Canada)'),
(16499, 'https://ror.org/01syxq867', 'en', 1, 'https://ror.org/01syxq867 William Thomas Grant Foundation'),
(16500, 'https://ror.org/01t2c1t51', 'no_lang_code', 1, 'https://ror.org/01t2c1t51 FemtoScale (United States)'),
(16501, 'https://ror.org/01t7cnb95', 'en', 1, 'https://ror.org/01t7cnb95 Institute of Water Modelling'),
(16502, 'https://ror.org/01t9act85', 'en', 1, 'https://ror.org/01t9act85 Susan B Allen Memorial Hospital'),
(16503, 'https://ror.org/01temjw93', 'en', 1, 'https://ror.org/01temjw93 Healthy Northeast Pennsylvania Initiative'),
(16504, 'https://ror.org/01tgr6n47', 'en', 1, 'https://ror.org/01tgr6n47 AIDS Resource Center of Wisconsin'),
(16505, 'https://ror.org/01tjh5r18', 'en', 1, 'https://ror.org/01tjh5r18 Children''s Council'),
(16506, 'https://ror.org/01tjxaw07', 'no_lang_code', 1, 'https://ror.org/01tjxaw07 Colorex Master Batch (Netherlands)'),
(16507, 'https://ror.org/01tk40402', 'en', 1, 'https://ror.org/01tk40402 Federation of Families of South Carolina'),
(16508, 'https://ror.org/01tpms519', 'no_lang_code', 1, 'https://ror.org/01tpms519 Cad Modelling Ergonomics (Italy)'),
(16509, 'https://ror.org/01tpw6659', 'en', 1, 'https://ror.org/01tpw6659 Hocking College'),
(16510, 'https://ror.org/01tqv6s24', 'en', 1, 'https://ror.org/01tqv6s24 Docklands Light Railway'),
(16511, 'https://ror.org/01tr8yj97', 'en', 1, 'https://ror.org/01tr8yj97 Aurora Public Library'),
(16512, 'https://ror.org/01trbq046', 'en', 1, 'https://ror.org/01trbq046 German Research School for Simulation Sciences'),
(16513, 'https://ror.org/01ts0we02', 'no_lang_code', 1, 'https://ror.org/01ts0we02 Walmart (United Kingdom)'),
(16514, 'https://ror.org/01tt73103', 'no_lang_code', 1, 'https://ror.org/01tt73103 Erlang Solutions (United Kingdom)'),
(16515, 'https://ror.org/01txxg691', 'no_lang_code', 1, 'https://ror.org/01txxg691 Automated Cells & Equipment (United States)'),
(16516, 'https://ror.org/01typar55', 'en', 1, 'https://ror.org/01typar55 Screen'),
(16517, 'https://ror.org/01tzmg414', 'en', 1, 'https://ror.org/01tzmg414 Society for Mucosal Immunology'),
(16518, 'https://ror.org/01tzy4237', 'no_lang_code', 1, 'https://ror.org/01tzy4237 Amis (Slovenia)'),
(16519, 'https://ror.org/01v07fn85', 'no_lang_code', 1, 'https://ror.org/01v07fn85 A. Brito (Portugal)'),
(16520, 'https://ror.org/01v1wjv20', 'en', 1, 'https://ror.org/01v1wjv20 South Holland Public Library'),
(16521, 'https://ror.org/01v2q8e40', 'en', 1, 'https://ror.org/01v2q8e40 League of Dreams'),
(16522, 'https://ror.org/01v56jr26', 'no_lang_code', 1, 'https://ror.org/01v56jr26 BioNanoNet'),
(16523, 'https://ror.org/01v575k60', 'en', 1, 'https://ror.org/01v575k60 Michigan City Public Library'),
(16524, 'https://ror.org/01v5rbf40', 'en', 1, 'https://ror.org/01v5rbf40 Yu.G. Shafer Institute of Cosmophysical Research and Aeronomy Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космофизических исслеГований Šø Š°ŃŃ€Š¾Š½Š¾Š¼ŠøŠø им. Š®.Š“.Шафера Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(16525, 'https://ror.org/01v64sy05', 'en', 1, 'https://ror.org/01v64sy05 Sportable'),
(16526, 'https://ror.org/01v6pab41', 'en', 1, 'https://ror.org/01v6pab41 PeaceHealth St. John Medical Center'),
(16527, 'https://ror.org/01v9fd791', 'no_lang_code', 1, 'https://ror.org/01v9fd791 IDEA Bio-Medical (Israel)'),
(16528, 'https://ror.org/01v9h0745', 'en', 1, 'https://ror.org/01v9h0745 SPARK Reproductive Justice NOW'),
(16529, 'https://ror.org/01vavtp12', 'en', 1, 'https://ror.org/01vavtp12 South Central Family Health Center'),
(16530, 'https://ror.org/01vb24668', 'en', 1, 'https://ror.org/01vb24668 Southern Poverty Law Center'),
(16531, 'https://ror.org/01vcdak53', 'en', 1, 'https://ror.org/01vcdak53 Ability Center of Greater Toledo'),
(16532, 'https://ror.org/01vg8sr12', 'en', 1, 'https://ror.org/01vg8sr12 Institut für Angewandte Systemtechnik Bremen Institute for Applied Systems Technology Bremen'),
(16533, 'https://ror.org/01vhbxh90', 'no_lang_code', 1, 'https://ror.org/01vhbxh90 Advanced Integrated Technology Solutions & Services'),
(16534, 'https://ror.org/01vjbt677', 'no_lang_code', 1, 'https://ror.org/01vjbt677 ClimateWell (Sweden)'),
(16535, 'https://ror.org/01vq75n56', 'en', 1, 'https://ror.org/01vq75n56 Team Taylor County'),
(16536, 'https://ror.org/01vqxw943', 'no_lang_code', 1, 'https://ror.org/01vqxw943 The Meltech (United Kingdom)'),
(16537, 'https://ror.org/01vryen79', 'en', 1, 'https://ror.org/01vryen79 Illinois State Archives'),
(16538, 'https://ror.org/01vt83t39', 'en', 1, 'https://ror.org/01vt83t39 Obesity Society'),
(16539, 'https://ror.org/01vtmwg90', 'en', 1, 'https://ror.org/01vtmwg90 Vigo County Historical Society & Museum'),
(16540, 'https://ror.org/01vx9hd92', 'no_lang_code', 1, 'https://ror.org/01vx9hd92 Creative Systems Engineering (Greece)'),
(16541, 'https://ror.org/01vyc5m15', 'no_lang_code', 1, 'https://ror.org/01vyc5m15 Kite Innovation (United Kingdom)'),
(16542, 'https://ror.org/01vzz8w74', 'en', 1, 'https://ror.org/01vzz8w74 Finnish Real Estate Federation'),
(16543, 'https://ror.org/01w2at733', 'it', 1, 'https://ror.org/01w2at733 Casa di Cura Villa Pini d’Abruzzo'),
(16544, 'https://ror.org/01w2fzp56', 'en', 1, 'https://ror.org/01w2fzp56 Kolkata Municipal Corporation কলকাতা ą¦Ŗą§Œą¦°ą¦øą¦‚ą¦øą§ą¦„ą¦¾'),
(16545, 'https://ror.org/01w2kt439', 'en', 1, 'https://ror.org/01w2kt439 Association canadienne des mƩdecins vƩtƩrinaires Canadian Veterinary Medical Association'),
(16546, 'https://ror.org/01w4x2p98', 'en', 1, 'https://ror.org/01w4x2p98 Local Government Improvement and Development'),
(16547, 'https://ror.org/01w5m5321', 'en', 1, 'https://ror.org/01w5m5321 Young Adult Institute'),
(16548, 'https://ror.org/01w5y4543', 'en', 1, 'https://ror.org/01w5y4543 CIMA Research Foundation'),
(16549, 'https://ror.org/01w74xd96', 'no_lang_code', 1, 'https://ror.org/01w74xd96 Lohmann Tierzucht (Germany)'),
(16550, 'https://ror.org/01w8j2j71', 'no_lang_code', 1, 'https://ror.org/01w8j2j71 Ademtech (France)'),
(16551, 'https://ror.org/01w92sn15', 'en', 1, 'https://ror.org/01w92sn15 Jackson District Library'),
(16552, 'https://ror.org/01w9gcz32', 'no_lang_code', 1, 'https://ror.org/01w9gcz32 Barnard Microsystems (United Kingdom)'),
(16553, 'https://ror.org/01w9kqf90', 'no_lang_code', 1, 'https://ror.org/01w9kqf90 Geotechnics (United Kingdom)'),
(16554, 'https://ror.org/01wekt990', 'no_lang_code', 1, 'https://ror.org/01wekt990 Light Prescriptions Innovators (Spain)'),
(16555, 'https://ror.org/01weqjw56', 'en', 1, 'https://ror.org/01weqjw56 Elk Grove Village Public Library'),
(16556, 'https://ror.org/01wghc923', 'en', 1, 'https://ror.org/01wghc923 Anaerobic Digestion and Bioresources Association'),
(16557, 'https://ror.org/01wh99039', 'en', 1, 'https://ror.org/01wh99039 Lord Fairfax Community College'),
(16558, 'https://ror.org/01wj8sy84', 'en', 1, 'https://ror.org/01wj8sy84 Laser Institute of America'),
(16559, 'https://ror.org/01wmp8x44', 'no_lang_code', 1, 'https://ror.org/01wmp8x44 Ikona (United States)'),
(16560, 'https://ror.org/01wpt0d29', 'en', 1, 'https://ror.org/01wpt0d29 IDConsortium'),
(16561, 'https://ror.org/01wpyw903', 'no_lang_code', 1, 'https://ror.org/01wpyw903 GTP Technology'),
(16562, 'https://ror.org/01wsx6q69', 'en', 1, 'https://ror.org/01wsx6q69 Department of the Environment'),
(16563, 'https://ror.org/01wsxjp84', 'no_lang_code', 1, 'https://ror.org/01wsxjp84 AP&T (Sweden)'),
(16564, 'https://ror.org/01wt2ek55', 'en', 1, 'https://ror.org/01wt2ek55 Women''s International Network for Guatemalan Solutions'),
(16565, 'https://ror.org/01wt37816', 'en', 1, 'https://ror.org/01wt37816 Foundation for Children with Cancer'),
(16566, 'https://ror.org/01wtdg175', 'en', 1, 'https://ror.org/01wtdg175 Speedway Fire Rescue'),
(16567, 'https://ror.org/01wtneg90', 'en', 1, 'https://ror.org/01wtneg90 Canadian Society for Exercise Physiology'),
(16568, 'https://ror.org/01wwe7a82', 'pt', 1, 'https://ror.org/01wwe7a82 Instituto Terra e Memória'),
(16569, 'https://ror.org/01wxdvj03', 'en', 1, 'https://ror.org/01wxdvj03 Federal Reserve Bank of Cleveland'),
(16570, 'https://ror.org/01wxvb586', 'no_lang_code', 1, 'https://ror.org/01wxvb586 Compass Systems (United States)'),
(16571, 'https://ror.org/01wzy6m46', 'no_lang_code', 1, 'https://ror.org/01wzy6m46 Animal Vegetable Mineral (United Kingdom)'),
(16572, 'https://ror.org/01x0pmb79', 'en', 1, 'https://ror.org/01x0pmb79 Washington Center for Psychoanalysis'),
(16573, 'https://ror.org/01x1yxa13', 'no_lang_code', 1, 'https://ror.org/01x1yxa13 Hungarian Central Statistical Office'),
(16574, 'https://ror.org/01x29t295', 'de', 1, 'https://ror.org/01x29t295 Vivantes Klinikum'),
(16575, 'https://ror.org/01x4yq975', 'no_lang_code', 1, 'https://ror.org/01x4yq975 Awite Bioenergie (Germany)'),
(16576, 'https://ror.org/01x5cet75', 'no_lang_code', 1, 'https://ror.org/01x5cet75 Bcr Diagnostics (United States)'),
(16577, 'https://ror.org/01x6q1934', 'en', 1, 'https://ror.org/01x6q1934 Cleveland Foundation'),
(16578, 'https://ror.org/01x92ja23', 'no_lang_code', 1, 'https://ror.org/01x92ja23 GeneticaLens (United States)'),
(16579, 'https://ror.org/01x9dpc82', 'no_lang_code', 1, 'https://ror.org/01x9dpc82 HAYC3'),
(16580, 'https://ror.org/01xar0e72', 'no_lang_code', 1, 'https://ror.org/01xar0e72 IX-Factory (Germany)'),
(16581, 'https://ror.org/01xbt8t65', 'no_lang_code', 1, 'https://ror.org/01xbt8t65 AIMES Grid Services (United Kingdom)'),
(16582, 'https://ror.org/01xdhsq08', 'en', 1, 'https://ror.org/01xdhsq08 Jefferson Parish District Attorney'),
(16583, 'https://ror.org/01xeyq157', 'no_lang_code', 1, 'https://ror.org/01xeyq157 DH Consultancy BVBA (Belgium)'),
(16584, 'https://ror.org/01xezpj37', 'en', 1, 'https://ror.org/01xezpj37 European Association of Development Agencies'),
(16585, 'https://ror.org/01xg23r53', 'it', 1, 'https://ror.org/01xg23r53 Biblioteca Italiana per i Ciechi "Regina Margherita" - ONLUS'),
(16586, 'https://ror.org/01xgyw658', 'en', 1, 'https://ror.org/01xgyw658 Louisburg College'),
(16587, 'https://ror.org/01xh29k31', 'en', 1, 'https://ror.org/01xh29k31 Cancer Resources for Elkhart County'),
(16588, 'https://ror.org/01xhkj350', 'no_lang_code', 1, 'https://ror.org/01xhkj350 GenHunter (United States)'),
(16589, 'https://ror.org/01xjsv217', 'no_lang_code', 1, 'https://ror.org/01xjsv217 Bauhaus Luftfahrt'),
(16590, 'https://ror.org/01xnazj43', 'no_lang_code', 1, 'https://ror.org/01xnazj43 Alsitek (United Kingdom)'),
(16591, 'https://ror.org/01xny3z34', 'en', 1, 'https://ror.org/01xny3z34 European Health Management Association'),
(16592, 'https://ror.org/01xtbck32', 'no_lang_code', 1, 'https://ror.org/01xtbck32 Actinix (United States)'),
(16593, 'https://ror.org/01xtkmv78', 'en', 1, 'https://ror.org/01xtkmv78 BC Non-Profit Housing Association'),
(16594, 'https://ror.org/01xvcx580', 'en', 1, 'https://ror.org/01xvcx580 Columbus Metropolitan Library'),
(16595, 'https://ror.org/01xvfw287', 'no_lang_code', 1, 'https://ror.org/01xvfw287 Leuco Ledermann (Germany)'),
(16596, 'https://ror.org/01xwcs533', 'no_lang_code', 1, 'https://ror.org/01xwcs533 Hotpoint (United Kingdom)'),
(16597, 'https://ror.org/01xy8wf83', 'ca', 1, 'https://ror.org/01xy8wf83 Reial Automòbil Club de Catalunya'),
(16598, 'https://ror.org/01xyb4y13', 'fr', 1, 'https://ror.org/01xyb4y13 Espace pour la vie Space for Life'),
(16599, 'https://ror.org/01xzpd518', 'en', 1, 'https://ror.org/01xzpd518 BT Archives'),
(16600, 'https://ror.org/01y461z74', 'en', 1, 'https://ror.org/01y461z74 Bone Marrow Foundation'),
(16601, 'https://ror.org/01y6v9r10', 'no_lang_code', 1, 'https://ror.org/01y6v9r10 Horta (Italy)'),
(16602, 'https://ror.org/01y7a2b37', 'no_lang_code', 1, 'https://ror.org/01y7a2b37 Biametrics (Germany)'),
(16603, 'https://ror.org/01y823z67', 'en', 1, 'https://ror.org/01y823z67 Danville Area Community College'),
(16604, 'https://ror.org/01y86zv41', 'en', 1, 'https://ror.org/01y86zv41 Habitat Acquisition Trust'),
(16605, 'https://ror.org/01y9q0786', 'en', 1, 'https://ror.org/01y9q0786 Sacramento City Unified School District'),
(16606, 'https://ror.org/01y9v7727', 'no_lang_code', 1, 'https://ror.org/01y9v7727 Europliroforissi'),
(16607, 'https://ror.org/01yc4ac23', 'en', 1, 'https://ror.org/01yc4ac23 Baldwin Public Library'),
(16608, 'https://ror.org/01yf9rd65', 'en', 1, 'https://ror.org/01yf9rd65 Texas Health and Human Services Commission'),
(16609, 'https://ror.org/01ygzf271', 'no_lang_code', 1, 'https://ror.org/01ygzf271 Covesion (United Kingdom)'),
(16610, 'https://ror.org/01yhxf067', 'no_lang_code', 1, 'https://ror.org/01yhxf067 Kaiam Corporation (United States)'),
(16611, 'https://ror.org/01yj92e08', 'no_lang_code', 1, 'https://ror.org/01yj92e08 Banpil Photonics (United States)'),
(16612, 'https://ror.org/01yk1j737', 'en', 1, 'https://ror.org/01yk1j737 Cody Unser First Step Foundation'),
(16613, 'https://ror.org/01yma9m40', 'en', 1, 'https://ror.org/01yma9m40 Concordia University Ann Arbor Universidad Concordia'),
(16614, 'https://ror.org/01ynqd283', 'en', 1, 'https://ror.org/01ynqd283 United States Immunodeficiency Network'),
(16615, 'https://ror.org/01yscvc28', 'en', 1, 'https://ror.org/01yscvc28 Davis & Elkins College'),
(16616, 'https://ror.org/01ytw4e80', 'en', 1, 'https://ror.org/01ytw4e80 Corporación Federal de Seguro de Depósitos Federal Deposit Insurance Corporation'),
(16617, 'https://ror.org/01yvmqs58', 'en', 1, 'https://ror.org/01yvmqs58 The Schiele Museum of Natural History'),
(16618, 'https://ror.org/01yvs7t05', 'pt', 1, 'https://ror.org/01yvs7t05 Centro Hospitalar de TrƔs os Montes e Alto Douro'),
(16619, 'https://ror.org/01yvyth17', 'no_lang_code', 1, 'https://ror.org/01yvyth17 Biomer (Germany)'),
(16620, 'https://ror.org/01yw7hk96', 'no_lang_code', 1, 'https://ror.org/01yw7hk96 Dragonfly Sales and Marketing Consulting (United States)'),
(16621, 'https://ror.org/01yxgnz18', 'en', 1, 'https://ror.org/01yxgnz18 Catawba County Schools'),
(16622, 'https://ror.org/01yyf4310', 'fr', 1, 'https://ror.org/01yyf4310 AlgoƩ'),
(16623, 'https://ror.org/01yykhb30', 'en', 1, 'https://ror.org/01yykhb30 Sauk County Historical Society'),
(16624, 'https://ror.org/01yz68468', 'no_lang_code', 1, 'https://ror.org/01yz68468 Euroscreen (Belgium)'),
(16625, 'https://ror.org/01z1gfs52', 'no_lang_code', 1, 'https://ror.org/01z1gfs52 Tentnology (Canada)'),
(16626, 'https://ror.org/01z5ce602', 'en', 1, 'https://ror.org/01z5ce602 Penrose-St. Francis Health Services'),
(16627, 'https://ror.org/01z9k3j07', 'no_lang_code', 1, 'https://ror.org/01z9k3j07 Ramboll (United Kingdom)'),
(16628, 'https://ror.org/01zav1s03', 'no_lang_code', 1, 'https://ror.org/01zav1s03 Bio-Technical Resources (United States)'),
(16629, 'https://ror.org/01zbnj927', 'en', 1, 'https://ror.org/01zbnj927 Missouri Department of Social Services'),
(16630, 'https://ror.org/01zbqy906', 'no_lang_code', 1, 'https://ror.org/01zbqy906 Econolyst (United Kingdom)'),
(16631, 'https://ror.org/01zcb7j14', 'no_lang_code', 1, 'https://ror.org/01zcb7j14 Nuance Communications (Belgium)'),
(16632, 'https://ror.org/01zd9gz71', 'no_lang_code', 1, 'https://ror.org/01zd9gz71 Genfit (France)'),
(16633, 'https://ror.org/01zdwaq18', 'no_lang_code', 1, 'https://ror.org/01zdwaq18 Illinois Ventures (United States)'),
(16634, 'https://ror.org/01zesp542', 'no_lang_code', 1, 'https://ror.org/01zesp542 SynDevRx (United States)'),
(16635, 'https://ror.org/01zg9ry50', 'no_lang_code', 1, 'https://ror.org/01zg9ry50 Bavarian Nordic (Germany)'),
(16636, 'https://ror.org/01zjcq634', 'no_lang_code', 1, 'https://ror.org/01zjcq634 Newable (United Kingdom)'),
(16637, 'https://ror.org/01zjyec98', 'no_lang_code', 1, 'https://ror.org/01zjyec98 goHDR (United Kingdom)'),
(16638, 'https://ror.org/01zkjwb76', 'no_lang_code', 1, 'https://ror.org/01zkjwb76 A.S.T. Group (Germany) Angewandte System Technik'),
(16639, 'https://ror.org/01zm94433', 'no_lang_code', 1, 'https://ror.org/01zm94433 John Wiley & Sons (United Kingdom)'),
(16640, 'https://ror.org/01zn1kc16', 'de', 1, 'https://ror.org/01zn1kc16 Fachverband Elektronik Design'),
(16641, 'https://ror.org/01zn3s316', 'no_lang_code', 1, 'https://ror.org/01zn3s316 Buckland & Taylor (Canada)'),
(16642, 'https://ror.org/01znsh139', 'no_lang_code', 1, 'https://ror.org/01znsh139 British American Tobacco (United Kingdom)'),
(16643, 'https://ror.org/01zq3f511', 'no_lang_code', 1, 'https://ror.org/01zq3f511 European Thermodynamics (United Kingdom)'),
(16644, 'https://ror.org/01zqbp192', 'en', 1, 'https://ror.org/01zqbp192 Missouri Southern State University'),
(16645, 'https://ror.org/01zqkbt68', 'no_lang_code', 1, 'https://ror.org/01zqkbt68 Chronos Technology (United Kingdom)'),
(16646, 'https://ror.org/01zqmjs13', 'no_lang_code', 1, 'https://ror.org/01zqmjs13 Gordon Murray Design (United Kingdom)'),
(16647, 'https://ror.org/01zqwky61', 'no_lang_code', 1, 'https://ror.org/01zqwky61 Avantes (Netherlands)'),
(16648, 'https://ror.org/01zy5b076', 'no_lang_code', 1, 'https://ror.org/01zy5b076 Infobyte (Italy)'),
(16649, 'https://ror.org/01zy7ja20', 'en', 1, 'https://ror.org/01zy7ja20 Earthquake Planning and Protection Organization'),
(16650, 'https://ror.org/0201vsb50', 'en', 1, 'https://ror.org/0201vsb50 Oak Park Public Library'),
(16651, 'https://ror.org/0202stx84', 'en', 1, 'https://ror.org/0202stx84 Holy Family University'),
(16652, 'https://ror.org/0202yb607', 'en', 1, 'https://ror.org/0202yb607 Information Management Policies Assessment for City Transport Systems'),
(16653, 'https://ror.org/0206kax92', 'en', 1, 'https://ror.org/0206kax92 L''Institut national du patrimoine National Heritage Institute المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ للتراث'),
(16654, 'https://ror.org/0207xt957', 'no_lang_code', 1, 'https://ror.org/0207xt957 Geowatt (Switzerland)'),
(16655, 'https://ror.org/020ak9w19', 'en', 1, 'https://ror.org/020ak9w19 Prof. Assen Zlatarov University'),
(16656, 'https://ror.org/020bbn883', 'no_lang_code', 1, 'https://ror.org/020bbn883 Excellims (United States)'),
(16657, 'https://ror.org/020bpey71', 'no_lang_code', 1, 'https://ror.org/020bpey71 PoƧo Bravo Marbles (Portugal)'),
(16658, 'https://ror.org/020bzqr95', 'en', 1, 'https://ror.org/020bzqr95 Institute of Radio Astronomy РаГіоастрономічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(16659, 'https://ror.org/020d95911', 'en', 1, 'https://ror.org/020d95911 Almaty University of Power Engineering and Telecommunications Алматинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠø Šø ŃŠ²ŃŠ·Šø Алматы ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠ° және байланыс ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(16660, 'https://ror.org/020gmsm27', 'no_lang_code', 1, 'https://ror.org/020gmsm27 James Agee Film Project'),
(16661, 'https://ror.org/020hbh524', 'no_lang_code', 1, 'https://ror.org/020hbh524 Medtronic (United Kingdom)'),
(16662, 'https://ror.org/020kk1193', 'en', 1, 'https://ror.org/020kk1193 Black Metropolis Research Consortium'),
(16663, 'https://ror.org/020m0j044', 'en', 1, 'https://ror.org/020m0j044 Gould Farm'),
(16664, 'https://ror.org/020mn5703', 'no_lang_code', 1, 'https://ror.org/020mn5703 Stemnion (United States)'),
(16665, 'https://ror.org/020pq6t22', 'no_lang_code', 1, 'https://ror.org/020pq6t22 ImaginAb (United States)'),
(16666, 'https://ror.org/020r34245', 'en', 1, 'https://ror.org/020r34245 American Research Center in Egypt'),
(16667, 'https://ror.org/020wewd22', 'en', 1, 'https://ror.org/020wewd22 Valley City State University'),
(16668, 'https://ror.org/020xpp268', 'en', 1, 'https://ror.org/020xpp268 Racine Heritage Museum'),
(16669, 'https://ror.org/020y46h67', 'no_lang_code', 1, 'https://ror.org/020y46h67 Mifne Center'),
(16670, 'https://ror.org/020yh1f96', 'en', 1, 'https://ror.org/020yh1f96 Ohio State University Hospital'),
(16671, 'https://ror.org/020z9nv72', 'no_lang_code', 1, 'https://ror.org/020z9nv72 Maritime Wirtschafts- und Schiffbauforschung (Germany)'),
(16672, 'https://ror.org/020zw1p93', 'no_lang_code', 1, 'https://ror.org/020zw1p93 Iris Vernici (Italy)'),
(16673, 'https://ror.org/0210crt34', 'en', 1, 'https://ror.org/0210crt34 Wall Las Memorias Project'),
(16674, 'https://ror.org/02138yn89', 'en', 1, 'https://ror.org/02138yn89 Monroe County Public Library'),
(16675, 'https://ror.org/0213abd61', 'no_lang_code', 1, 'https://ror.org/0213abd61 Velocity BioGroup (United States)'),
(16676, 'https://ror.org/0213bv924', 'pt', 1, 'https://ror.org/0213bv924 Direcção Regional de Cultura do Alentejo'),
(16677, 'https://ror.org/0213syy24', 'no_lang_code', 1, 'https://ror.org/0213syy24 Exide Technologies (United Kingdom)'),
(16678, 'https://ror.org/02164rg35', 'en', 1, 'https://ror.org/02164rg35 Austin Health & Human Services Department'),
(16679, 'https://ror.org/02165q211', 'no_lang_code', 1, 'https://ror.org/02165q211 LightMachinery (Canada)'),
(16680, 'https://ror.org/0217b1f02', 'no_lang_code', 1, 'https://ror.org/0217b1f02 Limaging (United States)'),
(16681, 'https://ror.org/0217vz783', 'no_lang_code', 1, 'https://ror.org/0217vz783 Autoflug (Germany)'),
(16682, 'https://ror.org/02184kv08', 'en', 1, 'https://ror.org/02184kv08 European Solar Thermal Electricity Association'),
(16683, 'https://ror.org/0218mdk53', 'en', 1, 'https://ror.org/0218mdk53 Victory Walk'),
(16684, 'https://ror.org/021998h47', 'en', 1, 'https://ror.org/021998h47 Brookwood Baptist Health'),
(16685, 'https://ror.org/021bzfh90', 'en', 1, 'https://ror.org/021bzfh90 Deafinitely Theatre'),
(16686, 'https://ror.org/021c40092', 'en', 1, 'https://ror.org/021c40092 Association of Directors of Environment, Economy, Planning and Transport'),
(16687, 'https://ror.org/021gpgt46', 'no_lang_code', 1, 'https://ror.org/021gpgt46 Menlo Systems (Germany)'),
(16688, 'https://ror.org/021k10z87', 'en', 1, 'https://ror.org/021k10z87 Leibniz-Institut Hessische Stiftung Friedens- und Konfliktforschung Peace Research Institute Frankfurt'),
(16689, 'https://ror.org/021mk5n73', 'en', 1, 'https://ror.org/021mk5n73 Bonanza High School'),
(16690, 'https://ror.org/021mz1r56', 'no_lang_code', 1, 'https://ror.org/021mz1r56 BioSciCon (United States)'),
(16691, 'https://ror.org/021n1yp58', 'en', 1, 'https://ror.org/021n1yp58 ADS Group'),
(16692, 'https://ror.org/021n2jk87', 'no_lang_code', 1, 'https://ror.org/021n2jk87 Airwave Solutions (United Kingdom)'),
(16693, 'https://ror.org/021sswk79', 'no_lang_code', 1, 'https://ror.org/021sswk79 ConStat'),
(16694, 'https://ror.org/021t53m47', 'no_lang_code', 1, 'https://ror.org/021t53m47 Aecom (Czechia)'),
(16695, 'https://ror.org/021wrjw75', 'no_lang_code', 1, 'https://ror.org/021wrjw75 CalGavin (United Kingdom)'),
(16696, 'https://ror.org/021y45972', 'no_lang_code', 1, 'https://ror.org/021y45972 Consultants for Environmental System Technologies'),
(16697, 'https://ror.org/021y8w832', 'no_lang_code', 1, 'https://ror.org/021y8w832 Ceps (Czechia)'),
(16698, 'https://ror.org/021zktr97', 'no_lang_code', 1, 'https://ror.org/021zktr97 Dinex (Finland)'),
(16699, 'https://ror.org/022059r74', 'no_lang_code', 1, 'https://ror.org/022059r74 Meggitt (Switzerland)'),
(16700, 'https://ror.org/0221ghv91', 'en', 1, 'https://ror.org/0221ghv91 Ministria e Arsimit dhe Shkencƫs Ministry of Education and Science'),
(16701, 'https://ror.org/0222ak715', 'no_lang_code', 1, 'https://ror.org/0222ak715 ARServices (United States)'),
(16702, 'https://ror.org/0223cdp82', 'en', 1, 'https://ror.org/0223cdp82 Dupage County Health Department'),
(16703, 'https://ror.org/02251ba66', 'no_lang_code', 1, 'https://ror.org/02251ba66 Institute of Forest Ecosystem Research'),
(16704, 'https://ror.org/0226w4e92', 'no_lang_code', 1, 'https://ror.org/0226w4e92 Credo Reference (United States)'),
(16705, 'https://ror.org/02280jq67', 'sr', 1, 'https://ror.org/02280jq67 Centar za Promociju Nauke Center for the promotion of science'),
(16706, 'https://ror.org/0229g2g56', 'no_lang_code', 1, 'https://ror.org/0229g2g56 MVV Energie (Germany) MVV Energy'),
(16707, 'https://ror.org/022bs7z24', 'no_lang_code', 1, 'https://ror.org/022bs7z24 Pallium India'),
(16708, 'https://ror.org/022bt0g94', 'en', 1, 'https://ror.org/022bt0g94 National Center for Manufacturing Sciences'),
(16709, 'https://ror.org/022eec223', 'no_lang_code', 1, 'https://ror.org/022eec223 LiqTech (Denmark)'),
(16710, 'https://ror.org/022enjj11', 'no_lang_code', 1, 'https://ror.org/022enjj11 Fent Innovative Software Solutions (Spain)'),
(16711, 'https://ror.org/022fhy294', 'no_lang_code', 1, 'https://ror.org/022fhy294 Mechatronic Systemtechnik (Austria)'),
(16712, 'https://ror.org/022fx7a43', 'no_lang_code', 1, 'https://ror.org/022fx7a43 Biomolecular Research Genomics (Italy)'),
(16713, 'https://ror.org/022mxs943', 'en', 1, 'https://ror.org/022mxs943 Canadian Women''s Health Network RƩseau Canadien pour la SantƩ des Femmes'),
(16714, 'https://ror.org/022pv2091', 'en', 1, 'https://ror.org/022pv2091 Appleton Public Library'),
(16715, 'https://ror.org/022r03w28', 'en', 1, 'https://ror.org/022r03w28 Hochschule der Medien Stuttgart Media University'),
(16716, 'https://ror.org/022sp9r28', 'no_lang_code', 1, 'https://ror.org/022sp9r28 ITLink'),
(16717, 'https://ror.org/022syee28', 'en', 1, 'https://ror.org/022syee28 Ministry of Health of the Republic of Kazakhstan ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ Š”ŠµŠ½ŃŠ°ŃƒŠ»Ń‹Ņ› ŃŠ°Ņ›Ń‚Š°Ńƒ министрлігі'),
(16718, 'https://ror.org/022vf5950', 'en', 1, 'https://ror.org/022vf5950 Northcentral Technical College'),
(16719, 'https://ror.org/022z2ef35', 'en', 1, 'https://ror.org/022z2ef35 Digital Europe'),
(16720, 'https://ror.org/022zhjf34', 'en', 1, 'https://ror.org/022zhjf34 Sunlight Nutrition and Health Research Center'),
(16721, 'https://ror.org/022zybs25', 'en', 1, 'https://ror.org/022zybs25 Foodbank'),
(16722, 'https://ror.org/0231yda83', 'en', 1, 'https://ror.org/0231yda83 Save Ourselves Breast Cancer Organization'),
(16723, 'https://ror.org/023366513', 'no_lang_code', 1, 'https://ror.org/023366513 Atlantis Consulting (Greece)'),
(16724, 'https://ror.org/02337dt86', 'no_lang_code', 1, 'https://ror.org/02337dt86 Helmut Christmann (Germany)'),
(16725, 'https://ror.org/023594t55', 'en', 1, 'https://ror.org/023594t55 Humber Bridge Board'),
(16726, 'https://ror.org/0235hnd76', 'no_lang_code', 1, 'https://ror.org/0235hnd76 Alpiq (United Kingdom)'),
(16727, 'https://ror.org/02378t231', 'en', 1, 'https://ror.org/02378t231 Glamorgan-Gwent Archaeological Trust'),
(16728, 'https://ror.org/0237jrs86', 'en', 1, 'https://ror.org/0237jrs86 House Next Door'),
(16729, 'https://ror.org/0238h3r90', 'no_lang_code', 1, 'https://ror.org/0238h3r90 Somelos (Portugal)'),
(16730, 'https://ror.org/02395mz47', 'no_lang_code', 1, 'https://ror.org/02395mz47 GlobalSign (Belgium)'),
(16731, 'https://ror.org/0239hhd94', 'en', 1, 'https://ror.org/0239hhd94 Quatela Center for Plastic Surgery'),
(16732, 'https://ror.org/023aczp72', 'no_lang_code', 1, 'https://ror.org/023aczp72 Cup 2000 (Italy)'),
(16733, 'https://ror.org/023ag6d08', 'en', 1, 'https://ror.org/023ag6d08 Lakeland Community College'),
(16734, 'https://ror.org/023bxn823', 'en', 1, 'https://ror.org/023bxn823 Glen Ellyn Public Library'),
(16735, 'https://ror.org/023ccd616', 'no_lang_code', 1, 'https://ror.org/023ccd616 AcrossLimits'),
(16736, 'https://ror.org/023csce19', 'no_lang_code', 1, 'https://ror.org/023csce19 Measurement Specialties (Germany)'),
(16737, 'https://ror.org/023d8gn94', 'no_lang_code', 1, 'https://ror.org/023d8gn94 IT+Robotics (Italy)'),
(16738, 'https://ror.org/023dbr455', 'no_lang_code', 1, 'https://ror.org/023dbr455 Eidon (Italy)'),
(16739, 'https://ror.org/023ew8649', 'no_lang_code', 1, 'https://ror.org/023ew8649 IDS Scheer (Czechia)'),
(16740, 'https://ror.org/023g5hk70', 'no_lang_code', 1, 'https://ror.org/023g5hk70 EaglePicher (Canada)'),
(16741, 'https://ror.org/023hfjp48', 'en', 1, 'https://ror.org/023hfjp48 Kankakee Community College'),
(16742, 'https://ror.org/023kawg24', 'no_lang_code', 1, 'https://ror.org/023kawg24 Federal Mogul (France)'),
(16743, 'https://ror.org/023man992', 'no_lang_code', 1, 'https://ror.org/023man992 Marshalls (United Kingdom)'),
(16744, 'https://ror.org/023tdcb12', 'en', 1, 'https://ror.org/023tdcb12 Brod Group'),
(16745, 'https://ror.org/023tfbg60', 'no_lang_code', 1, 'https://ror.org/023tfbg60 Import.io (United States)'),
(16746, 'https://ror.org/023vyrd34', 'pt', 1, 'https://ror.org/023vyrd34 Centro de Referência em Informação Ambiental Reference Center on Environmental Information'),
(16747, 'https://ror.org/023wx1945', 'no_lang_code', 1, 'https://ror.org/023wx1945 Mace (United Kingdom)'),
(16748, 'https://ror.org/023xtbz44', 'en', 1, 'https://ror.org/023xtbz44 Spiral Foundation'),
(16749, 'https://ror.org/023yhw405', 'no_lang_code', 1, 'https://ror.org/023yhw405 Aviv Biomedical (United States)'),
(16750, 'https://ror.org/02411tk93', 'en', 1, 'https://ror.org/02411tk93 Women’s Fund Asia'),
(16751, 'https://ror.org/0242qw425', 'en', 1, 'https://ror.org/0242qw425 Folger Shakespeare Library'),
(16752, 'https://ror.org/0243mn861', 'no_lang_code', 1, 'https://ror.org/0243mn861 JXT Applications (United States)'),
(16753, 'https://ror.org/0248dnv50', 'no_lang_code', 1, 'https://ror.org/0248dnv50 Bioptix (United States)'),
(16754, 'https://ror.org/024awmw52', 'no_lang_code', 1, 'https://ror.org/024awmw52 GECO (Portugal)'),
(16755, 'https://ror.org/024bp0560', 'en', 1, 'https://ror.org/024bp0560 Florida Alcohol and Drug Abuse Association'),
(16756, 'https://ror.org/024dbdr63', 'no_lang_code', 1, 'https://ror.org/024dbdr63 Mowi (Norway)'),
(16757, 'https://ror.org/024jak282', 'no_lang_code', 1, 'https://ror.org/024jak282 Blutip (Canada)'),
(16758, 'https://ror.org/024nbjg39', 'nl', 1, 'https://ror.org/024nbjg39 DCMR Milieudienst Rijnmond'),
(16759, 'https://ror.org/024nhth42', 'en', 1, 'https://ror.org/024nhth42 United Health Services'),
(16760, 'https://ror.org/024p04k09', 'lv', 1, 'https://ror.org/024p04k09 Baltic Environmental Forum Baltijas Vides Forums'),
(16761, 'https://ror.org/024p72773', 'no_lang_code', 1, 'https://ror.org/024p72773 Imathia Construcción (Spain)'),
(16762, 'https://ror.org/024qs1y51', 'no_lang_code', 1, 'https://ror.org/024qs1y51 Rio Mobility (United States)'),
(16763, 'https://ror.org/024rfjv05', 'en', 1, 'https://ror.org/024rfjv05 Centre for Studies in Social Sciences Calcutta'),
(16764, 'https://ror.org/024t72v35', 'fr', 1, 'https://ror.org/024t72v35 Terre des Sciences'),
(16765, 'https://ror.org/024xf4148', 'en', 1, 'https://ror.org/024xf4148 Illinois Mathematics and Science Academy'),
(16766, 'https://ror.org/025008g77', 'no_lang_code', 1, 'https://ror.org/025008g77 Bremerhaven Dock (Germany)'),
(16767, 'https://ror.org/025120d02', 'en', 1, 'https://ror.org/025120d02 European Ground Penetrating Radar Association'),
(16768, 'https://ror.org/0251ehn88', 'en', 1, 'https://ror.org/0251ehn88 Trinity International University'),
(16769, 'https://ror.org/0256cmg21', 'no_lang_code', 1, 'https://ror.org/0256cmg21 Certus Technology (United Kingdom)'),
(16770, 'https://ror.org/025882322', 'no_lang_code', 1, 'https://ror.org/025882322 Ingram Content Group (United States)'),
(16771, 'https://ror.org/0258dhc73', 'en', 1, 'https://ror.org/0258dhc73 European Center for Nanostructured Polymers'),
(16772, 'https://ror.org/0258fpw94', 'no_lang_code', 1, 'https://ror.org/0258fpw94 TriStar Wellness Solutions (United States)'),
(16773, 'https://ror.org/0259f7s45', 'en', 1, 'https://ror.org/0259f7s45 Baltic Innovation Agency'),
(16774, 'https://ror.org/025agpj70', 'en', 1, 'https://ror.org/025agpj70 Washington Poison Center'),
(16775, 'https://ror.org/025cbpf27', 'no_lang_code', 1, 'https://ror.org/025cbpf27 Aereco (France)'),
(16776, 'https://ror.org/025drpn91', 'en', 1, 'https://ror.org/025drpn91 United Way of Greater Nashville'),
(16777, 'https://ror.org/025dtrv42', 'fr', 1, 'https://ror.org/025dtrv42 Centre d''Ɖtudes et de Recherches Ɖconomiques sur l''Ɖnergie'),
(16778, 'https://ror.org/025e3bx20', 'en', 1, 'https://ror.org/025e3bx20 Northwestern Michigan College'),
(16779, 'https://ror.org/025ekwj97', 'no_lang_code', 1, 'https://ror.org/025ekwj97 Element Materials Technology (Sweden)'),
(16780, 'https://ror.org/025ezac93', 'en', 1, 'https://ror.org/025ezac93 European Science Events Association'),
(16781, 'https://ror.org/025fy1n79', 'no_lang_code', 1, 'https://ror.org/025fy1n79 Hydrogen Solar (United Kingdom)'),
(16782, 'https://ror.org/025jq6667', 'de', 1, 'https://ror.org/025jq6667 Gesellschaft für Bioanalytik Münster'),
(16783, 'https://ror.org/025jta476', 'en', 1, 'https://ror.org/025jta476 Experimental Aircraft Association'),
(16784, 'https://ror.org/025nqct78', 'en', 1, 'https://ror.org/025nqct78 Agencia de Inteligencia de la Defensa Defense Intelligence Agency'),
(16785, 'https://ror.org/025v2yp51', 'no_lang_code', 1, 'https://ror.org/025v2yp51 Altus Technologies (United States)'),
(16786, 'https://ror.org/025v9q431', 'en', 1, 'https://ror.org/025v9q431 Muscular Dystrophy Patients Welfare Association'),
(16787, 'https://ror.org/025vzq165', 'en', 1, 'https://ror.org/025vzq165 Spoon River College'),
(16788, 'https://ror.org/025xcha17', 'en', 1, 'https://ror.org/025xcha17 Glasgow City Council'),
(16789, 'https://ror.org/025zgnz97', 'en', 1, 'https://ror.org/025zgnz97 Triumph Foundation'),
(16790, 'https://ror.org/0260kc719', 'no_lang_code', 1, 'https://ror.org/0260kc719 Intempora (France)'),
(16791, 'https://ror.org/0261s3g35', 'en', 1, 'https://ror.org/0261s3g35 Fife Council'),
(16792, 'https://ror.org/0261ts428', 'en', 1, 'https://ror.org/0261ts428 Sunset Hill Educational Institute'),
(16793, 'https://ror.org/0262b0b41', 'no_lang_code', 1, 'https://ror.org/0262b0b41 GeoMobile (Germany)'),
(16794, 'https://ror.org/0262rzr61', 'no_lang_code', 1, 'https://ror.org/0262rzr61 Hamilton Thorne (United States)'),
(16795, 'https://ror.org/0263dyv44', 'en', 1, 'https://ror.org/0263dyv44 Kids Cancer Center'),
(16796, 'https://ror.org/0264zze35', 'en', 1, 'https://ror.org/0264zze35 General Confederation of Greek Workers'),
(16797, 'https://ror.org/02698x773', 'en', 1, 'https://ror.org/02698x773 Indian Health Board'),
(16798, 'https://ror.org/026a1h106', 'de', 1, 'https://ror.org/026a1h106 Verband kommunaler Unternehmen'),
(16799, 'https://ror.org/026a5wm88', 'en', 1, 'https://ror.org/026a5wm88 Public Schools of Robeson County'),
(16800, 'https://ror.org/026bph638', 'no_lang_code', 1, 'https://ror.org/026bph638 Hueck Folien (Austria)'),
(16801, 'https://ror.org/026bqf280', 'no_lang_code', 1, 'https://ror.org/026bqf280 GSI Group (United Kingdom)'),
(16802, 'https://ror.org/026hk8y88', 'en', 1, 'https://ror.org/026hk8y88 International Tin Research Institute'),
(16803, 'https://ror.org/026jqgj23', 'en', 1, 'https://ror.org/026jqgj23 Holyoke Community College'),
(16804, 'https://ror.org/026kkhf56', 'en', 1, 'https://ror.org/026kkhf56 Shad'),
(16805, 'https://ror.org/026m45d12', 'en', 1, 'https://ror.org/026m45d12 Yonkers Partners in Education'),
(16806, 'https://ror.org/026mcys63', 'no_lang_code', 1, 'https://ror.org/026mcys63 Thinkpath Engineering Services (Canada)'),
(16807, 'https://ror.org/026qpk997', 'en', 1, 'https://ror.org/026qpk997 Cape Assist'),
(16808, 'https://ror.org/026qvc471', 'en', 1, 'https://ror.org/026qvc471 Wheelchair Sports Federation'),
(16809, 'https://ror.org/026s7sx59', 'no_lang_code', 1, 'https://ror.org/026s7sx59 AnthroTronix (United States)'),
(16810, 'https://ror.org/026s7y345', 'en', 1, 'https://ror.org/026s7y345 Blaufuss Multimedia'),
(16811, 'https://ror.org/026sbed30', 'no_lang_code', 1, 'https://ror.org/026sbed30 Corvinno Technology Transfer'),
(16812, 'https://ror.org/026sdzz57', 'en', 1, 'https://ror.org/026sdzz57 Centralia College'),
(16813, 'https://ror.org/026tpeg39', 'en', 1, 'https://ror.org/026tpeg39 Evanston Public Library'),
(16814, 'https://ror.org/026xpx458', 'de', 1, 'https://ror.org/026xpx458 Institut für ZukunftsEnergie- und Stoffstromsysteme'),
(16815, 'https://ror.org/026zz8m94', 'en', 1, 'https://ror.org/026zz8m94 Angeles Clinic Foundation'),
(16816, 'https://ror.org/02706zn47', 'en', 1, 'https://ror.org/02706zn47 Public Health Dayton & Montgomery County'),
(16817, 'https://ror.org/02709ws31', 'no_lang_code', 1, 'https://ror.org/02709ws31 Invisible Dust (United Kingdom)'),
(16818, 'https://ror.org/0270k0c71', 'en', 1, 'https://ror.org/0270k0c71 Ministry of Education Science and Technology'),
(16819, 'https://ror.org/02711wx11', 'en', 1, 'https://ror.org/02711wx11 English Courtyards'),
(16820, 'https://ror.org/02718ec78', 'no_lang_code', 1, 'https://ror.org/02718ec78 KraussMaffei (Germany)'),
(16821, 'https://ror.org/0272r9772', 'en', 1, 'https://ror.org/0272r9772 Impact Research and Development Organization'),
(16822, 'https://ror.org/0273db185', 'no_lang_code', 1, 'https://ror.org/0273db185 Archeometra (Italy)'),
(16823, 'https://ror.org/0274w9y45', 'en', 1, 'https://ror.org/0274w9y45 Minerva Educational Foundation'),
(16824, 'https://ror.org/0275xpz44', 'en', 1, 'https://ror.org/0275xpz44 The Memorial Foundation'),
(16825, 'https://ror.org/0277e9g92', 'no_lang_code', 1, 'https://ror.org/0277e9g92 iProov (United Kingdom)'),
(16826, 'https://ror.org/02794f225', 'no_lang_code', 1, 'https://ror.org/02794f225 Acutech (Greece)'),
(16827, 'https://ror.org/027a1ey92', 'en', 1, 'https://ror.org/027a1ey92 Department of Consumer Protection'),
(16828, 'https://ror.org/027b52158', 'no_lang_code', 1, 'https://ror.org/027b52158 Plasma (Macedonia)'),
(16829, 'https://ror.org/027b8j852', 'no_lang_code', 1, 'https://ror.org/027b8j852 Domca (Spain)'),
(16830, 'https://ror.org/027c2yv63', 'no_lang_code', 1, 'https://ror.org/027c2yv63 Illumina (United Kingdom)'),
(16831, 'https://ror.org/027cjrx78', 'en', 1, 'https://ror.org/027cjrx78 Vermont Program for Quality in Health Care'),
(16832, 'https://ror.org/027dakc19', 'en', 1, 'https://ror.org/027dakc19 Warren County Schools'),
(16833, 'https://ror.org/027f3vp75', 'no_lang_code', 1, 'https://ror.org/027f3vp75 Centre for Concepts in Mechatronics'),
(16834, 'https://ror.org/027f5w594', 'no_lang_code', 1, 'https://ror.org/027f5w594 InnerOptic Technology (United States)'),
(16835, 'https://ror.org/027fvmc90', 'no_lang_code', 1, 'https://ror.org/027fvmc90 Rubicon Biotechnology (United States)'),
(16836, 'https://ror.org/027gw1387', 'en', 1, 'https://ror.org/027gw1387 Asociación para Poner Fin a la Violencia Doméstica de California California Partnership to End Domestic Violence'),
(16837, 'https://ror.org/027hwee24', 'en', 1, 'https://ror.org/027hwee24 Seward County Community College'),
(16838, 'https://ror.org/027hwrj22', 'no_lang_code', 1, 'https://ror.org/027hwrj22 Bere (United Kingdom)'),
(16839, 'https://ror.org/027hx5s14', 'en', 1, 'https://ror.org/027hx5s14 Willamette Valley Cancer Foundation'),
(16840, 'https://ror.org/027jm4436', 'en', 1, 'https://ror.org/027jm4436 Institute of Physical Energetics'),
(16841, 'https://ror.org/027n25314', 'en', 1, 'https://ror.org/027n25314 AIDS Prevention Initiative in Nigeria'),
(16842, 'https://ror.org/027ns6m21', 'en', 1, 'https://ror.org/027ns6m21 Southwest Georgia Health Care'),
(16843, 'https://ror.org/027p3g314', 'no_lang_code', 1, 'https://ror.org/027p3g314 Hydrocontrol (Italy)'),
(16844, 'https://ror.org/027q99w81', 'no_lang_code', 1, 'https://ror.org/027q99w81 Cell Medica (United Kingdom)'),
(16845, 'https://ror.org/027stek86', 'fr', 1, 'https://ror.org/027stek86 FƩdƩration de la Plasturgie'),
(16846, 'https://ror.org/027v2gp98', 'no_lang_code', 1, 'https://ror.org/027v2gp98 Broadway Malyan (United Kingdom)'),
(16847, 'https://ror.org/027vbvd36', 'no_lang_code', 1, 'https://ror.org/027vbvd36 Esciencia (Spain)'),
(16848, 'https://ror.org/027vqky70', 'no_lang_code', 1, 'https://ror.org/027vqky70 Insiel (Italy)'),
(16849, 'https://ror.org/027vwvv53', 'de', 1, 'https://ror.org/027vwvv53 Arbeitsgemeinschaft Sozialwissenschaftlicher Institute'),
(16850, 'https://ror.org/027w3dq81', 'en', 1, 'https://ror.org/027w3dq81 Blue Mountain Community College'),
(16851, 'https://ror.org/027zd6v59', 'no_lang_code', 1, 'https://ror.org/027zd6v59 Isomerase Therapeutics (United Kingdom)'),
(16852, 'https://ror.org/02806kr08', 'no_lang_code', 1, 'https://ror.org/02806kr08 Jablite (United Kingdom)'),
(16853, 'https://ror.org/028215596', 'en', 1, 'https://ror.org/028215596 Ontario Council of University Libraries'),
(16854, 'https://ror.org/0284a6m60', 'no_lang_code', 1, 'https://ror.org/0284a6m60 Axerion Therapeutics (United States)'),
(16855, 'https://ror.org/02851yv23', 'no_lang_code', 1, 'https://ror.org/02851yv23 Interpublic Group (United States)'),
(16856, 'https://ror.org/028658z74', 'en', 1, 'https://ror.org/028658z74 University of Maryland Upper Chesapeake Health'),
(16857, 'https://ror.org/0286c0965', 'en', 1, 'https://ror.org/0286c0965 LOBA - Customer Experience Design'),
(16858, 'https://ror.org/0286mhe32', 'no_lang_code', 1, 'https://ror.org/0286mhe32 Maxxam (Canada)'),
(16859, 'https://ror.org/0287v3241', 'en', 1, 'https://ror.org/0287v3241 University Muslim Medical Association Community Clinic'),
(16860, 'https://ror.org/0288ctx42', 'en', 1, 'https://ror.org/0288ctx42 Illinois General Assembly'),
(16861, 'https://ror.org/0288es483', 'en', 1, 'https://ror.org/0288es483 Ewing Marion Kauffman Foundation'),
(16862, 'https://ror.org/02894qy28', 'en', 1, 'https://ror.org/02894qy28 Hayner Public Library District'),
(16863, 'https://ror.org/028a1kb39', 'nl', 1, 'https://ror.org/028a1kb39 Gemeente Helmond'),
(16864, 'https://ror.org/028ccnc13', 'no_lang_code', 1, 'https://ror.org/028ccnc13 Geltz Umwelt-Technologie (Germany)'),
(16865, 'https://ror.org/028evh536', 'fr', 1, 'https://ror.org/028evh536 Association des Operateurs Postaux Publics Europeens Association of European Public Postal Operators'),
(16866, 'https://ror.org/028gmb220', 'nl', 1, 'https://ror.org/028gmb220 Crisisplan'),
(16867, 'https://ror.org/028heaq12', 'no_lang_code', 1, 'https://ror.org/028heaq12 Dow Chemical (United Kingdom)'),
(16868, 'https://ror.org/028m68j28', 'en', 1, 'https://ror.org/028m68j28 Fundacion Latinoamericana De Accion Social'),
(16869, 'https://ror.org/028mx4j81', 'en', 1, 'https://ror.org/028mx4j81 Ministry of Finance ΄πουργείο ĪŸĪ¹ĪŗĪæĪ½ĪæĪ¼Ī¹ĪŗĻŽĪ½ ΕλλάΓας'),
(16870, 'https://ror.org/028nqyn57', 'no_lang_code', 1, 'https://ror.org/028nqyn57 CGI (United States)'),
(16871, 'https://ror.org/028ppep60', 'en', 1, 'https://ror.org/028ppep60 Standing Committee of European Doctors'),
(16872, 'https://ror.org/028qwvc58', 'en', 1, 'https://ror.org/028qwvc58 Chamber of Commerce and Industry of Romania'),
(16873, 'https://ror.org/028tzde05', 'no_lang_code', 1, 'https://ror.org/028tzde05 Anova IT Consulting (Spain)'),
(16874, 'https://ror.org/028v5rv72', 'no_lang_code', 1, 'https://ror.org/028v5rv72 McBurney (United Kingdom)'),
(16875, 'https://ror.org/028xv5p07', 'en', 1, 'https://ror.org/028xv5p07 Raising Voices'),
(16876, 'https://ror.org/029508905', 'en', 1, 'https://ror.org/029508905 International Center for Minority Studies and Intercultural Relations'),
(16877, 'https://ror.org/0295epx19', 'no_lang_code', 1, 'https://ror.org/0295epx19 Fuchs (Germany)'),
(16878, 'https://ror.org/0295yjh78', 'en', 1, 'https://ror.org/0295yjh78 Rock and Roll Hall of Fame and Museum'),
(16879, 'https://ror.org/0298rr784', 'en', 1, 'https://ror.org/0298rr784 Instituto Nacional de EstatĆ­stica National Statistical Institute of Portugal'),
(16880, 'https://ror.org/0299eyn73', 'en', 1, 'https://ror.org/0299eyn73 Institute of Electronics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по електроника'),
(16881, 'https://ror.org/029c3g514', 'no_lang_code', 1, 'https://ror.org/029c3g514 Mesoblast (United States)'),
(16882, 'https://ror.org/029djx285', 'no_lang_code', 1, 'https://ror.org/029djx285 Front Edge Technology (United States)'),
(16883, 'https://ror.org/029e1wz89', 'en', 1, 'https://ror.org/029e1wz89 Wind River Cancer Wellness Retreats and Programs'),
(16884, 'https://ror.org/029f77f71', 'no_lang_code', 1, 'https://ror.org/029f77f71 Equipment Simulations (United States)'),
(16885, 'https://ror.org/029ga8k16', 'en', 1, 'https://ror.org/029ga8k16 Health Level Seven International'),
(16886, 'https://ror.org/029gpgj23', 'en', 1, 'https://ror.org/029gpgj23 Radiology Associates'),
(16887, 'https://ror.org/029hqwk21', 'no_lang_code', 1, 'https://ror.org/029hqwk21 Alcyomics (United Kingdom)'),
(16888, 'https://ror.org/029j2x431', 'en', 1, 'https://ror.org/029j2x431 Center for Social and Economic Research'),
(16889, 'https://ror.org/029kfqa89', 'no_lang_code', 1, 'https://ror.org/029kfqa89 Jotne (Norway)'),
(16890, 'https://ror.org/029kpsy61', 'en', 1, 'https://ror.org/029kpsy61 Eden Project'),
(16891, 'https://ror.org/029n4n358', 'en', 1, 'https://ror.org/029n4n358 Swami Vivekanand College of Pharmacy'),
(16892, 'https://ror.org/029nw1q67', 'en', 1, 'https://ror.org/029nw1q67 Circle Park'),
(16893, 'https://ror.org/029nzwd26', 'no_lang_code', 1, 'https://ror.org/029nzwd26 Brenk Systemplanung (Germany)'),
(16894, 'https://ror.org/029pa0p32', 'en', 1, 'https://ror.org/029pa0p32 Sierra Streams Institute'),
(16895, 'https://ror.org/029pbd337', 'en', 1, 'https://ror.org/029pbd337 EuropaBio'),
(16896, 'https://ror.org/029pncr02', 'no_lang_code', 1, 'https://ror.org/029pncr02 Appen (United States)'),
(16897, 'https://ror.org/029t2mw91', 'en', 1, 'https://ror.org/029t2mw91 Baltic Centre for Contemporary Art'),
(16898, 'https://ror.org/029w47y50', 'en', 1, 'https://ror.org/029w47y50 Cheyenne River Sioux Tribe Council'),
(16899, 'https://ror.org/029x63s82', 'en', 1, 'https://ror.org/029x63s82 Nurse & Hospice of Fairfield County'),
(16900, 'https://ror.org/029y62y23', 'en', 1, 'https://ror.org/029y62y23 URSA Institute'),
(16901, 'https://ror.org/029znv963', 'en', 1, 'https://ror.org/029znv963 Kommunenes Sentralforbund Norwegian Association of Local and Regional Authorities'),
(16902, 'https://ror.org/02a3gzm90', 'en', 1, 'https://ror.org/02a3gzm90 Miami-Dade County Public Schools'),
(16903, 'https://ror.org/02a3sdd90', 'it', 1, 'https://ror.org/02a3sdd90 Associazione Festival della Scienz'),
(16904, 'https://ror.org/02a61j498', 'no_lang_code', 1, 'https://ror.org/02a61j498 ICON Technology & Process Consulting (United Kingdom)'),
(16905, 'https://ror.org/02a6ztn45', 'en', 1, 'https://ror.org/02a6ztn45 National Academies Press'),
(16906, 'https://ror.org/02a7s8340', 'no_lang_code', 1, 'https://ror.org/02a7s8340 Elvior (Estonia)'),
(16907, 'https://ror.org/02afbgp72', 'no_lang_code', 1, 'https://ror.org/02afbgp72 Construcciones y Auxiliar de Ferrocarriles (Spain)'),
(16908, 'https://ror.org/02afhdg85', 'no_lang_code', 1, 'https://ror.org/02afhdg85 Indutherm ErwƤrmungsanlagen (Germany)'),
(16909, 'https://ror.org/02ah3w196', 'en', 1, 'https://ror.org/02ah3w196 Leather Archives and Museum'),
(16910, 'https://ror.org/02akpbq50', 'en', 1, 'https://ror.org/02akpbq50 Circus World Museum'),
(16911, 'https://ror.org/02amd0s90', 'en', 1, 'https://ror.org/02amd0s90 Tippecanoe County Public Library'),
(16912, 'https://ror.org/02appya76', 'no_lang_code', 1, 'https://ror.org/02appya76 Bayou Biolabs'),
(16913, 'https://ror.org/02aqjhx29', 'no_lang_code', 1, 'https://ror.org/02aqjhx29 Genewave (France)'),
(16914, 'https://ror.org/02ar7h206', 'en', 1, 'https://ror.org/02ar7h206 Las Cumbres Observatory Global Telescope Network'),
(16915, 'https://ror.org/02av6zw72', 'en', 1, 'https://ror.org/02av6zw72 Danish Geodata Agency'),
(16916, 'https://ror.org/02awt9052', 'no_lang_code', 1, 'https://ror.org/02awt9052 ControlVet (Portugal)'),
(16917, 'https://ror.org/02axw6z74', 'no_lang_code', 1, 'https://ror.org/02axw6z74 Biaffin (Germany)'),
(16918, 'https://ror.org/02ay1zt80', 'en', 1, 'https://ror.org/02ay1zt80 European Institute for Participatory Media'),
(16919, 'https://ror.org/02azyxf26', 'no_lang_code', 1, 'https://ror.org/02azyxf26 TechnipFMC (France)'),
(16920, 'https://ror.org/02b108x81', 'en', 1, 'https://ror.org/02b108x81 University of St. Augustine for Health Sciences'),
(16921, 'https://ror.org/02b173w12', 'no_lang_code', 1, 'https://ror.org/02b173w12 MiTeGen (United States)');
INSERT INTO `rors` VALUES
(16922, 'https://ror.org/02b1fy379', 'en', 1, 'https://ror.org/02b1fy379 European Centre for Soft Computing'),
(16923, 'https://ror.org/02b3e4g90', 'no_lang_code', 1, 'https://ror.org/02b3e4g90 DZP Technologies (United Kingdom)'),
(16924, 'https://ror.org/02b3ny291', 'no_lang_code', 1, 'https://ror.org/02b3ny291 Dekra (Germany)'),
(16925, 'https://ror.org/02b489s27', 'no_lang_code', 1, 'https://ror.org/02b489s27 Hunosa (Spain)'),
(16926, 'https://ror.org/02b4afs97', 'pt', 1, 'https://ror.org/02b4afs97 IrRADIARE'),
(16927, 'https://ror.org/02b4c4128', 'no_lang_code', 1, 'https://ror.org/02b4c4128 Babraham Bioscience Technologies (United Kingdom)'),
(16928, 'https://ror.org/02b76pd77', 'no_lang_code', 1, 'https://ror.org/02b76pd77 M3 Systems (France)'),
(16929, 'https://ror.org/02b78e269', 'en', 1, 'https://ror.org/02b78e269 Susan G Komen Greater Atlanta'),
(16930, 'https://ror.org/02ba81j73', 'no_lang_code', 1, 'https://ror.org/02ba81j73 ViOptix (United States)'),
(16931, 'https://ror.org/02bah0q54', 'en', 1, 'https://ror.org/02bah0q54 Clackamas County Children''s Commission Head Start'),
(16932, 'https://ror.org/02bap3480', 'no_lang_code', 1, 'https://ror.org/02bap3480 BioTronics (United States)'),
(16933, 'https://ror.org/02bb3e325', 'no_lang_code', 1, 'https://ror.org/02bb3e325 Threshold Pharmaceuticals (United States)'),
(16934, 'https://ror.org/02bb6wb14', 'en', 1, 'https://ror.org/02bb6wb14 Translational Research in Oncology'),
(16935, 'https://ror.org/02bbana41', 'en', 1, 'https://ror.org/02bbana41 Sharp HealthCare Foundation'),
(16936, 'https://ror.org/02bbd5539', 'no_lang_code', 1, 'https://ror.org/02bbd5539 AT&T (United States)'),
(16937, 'https://ror.org/02bg3j696', 'no_lang_code', 1, 'https://ror.org/02bg3j696 Maxtech (Canada)'),
(16938, 'https://ror.org/02bg76z40', 'no_lang_code', 1, 'https://ror.org/02bg76z40 Eikos (United States)'),
(16939, 'https://ror.org/02bg8sy94', 'no_lang_code', 1, 'https://ror.org/02bg8sy94 BodiMojo'),
(16940, 'https://ror.org/02bm7dx75', 'en', 1, 'https://ror.org/02bm7dx75 SeriousFun Children''s Network'),
(16941, 'https://ror.org/02bnjsr23', 'en', 1, 'https://ror.org/02bnjsr23 CancerConnects'),
(16942, 'https://ror.org/02bpry443', 'en', 1, 'https://ror.org/02bpry443 Indiana Historical Society'),
(16943, 'https://ror.org/02breff74', 'no_lang_code', 1, 'https://ror.org/02breff74 Shook, Hardy & Bacon (United States)'),
(16944, 'https://ror.org/02brx1k43', 'no_lang_code', 1, 'https://ror.org/02brx1k43 Interfusion Services (Cyprus)'),
(16945, 'https://ror.org/02bspsv67', 'no_lang_code', 1, 'https://ror.org/02bspsv67 Synergenz BioScience (United States)'),
(16946, 'https://ror.org/02bxtrk46', 'en', 1, 'https://ror.org/02bxtrk46 Institute of Precision Mechanics'),
(16947, 'https://ror.org/02by9nb62', 'en', 1, 'https://ror.org/02by9nb62 Diocese of Brooklyn'),
(16948, 'https://ror.org/02bymts86', 'en', 1, 'https://ror.org/02bymts86 Academic and Research Network of Slovenia'),
(16949, 'https://ror.org/02c1kz490', 'no_lang_code', 1, 'https://ror.org/02c1kz490 Ellemedia Technologies (Greece)'),
(16950, 'https://ror.org/02c2rwe77', 'no_lang_code', 1, 'https://ror.org/02c2rwe77 Innovation Energie DƩveloppement (France)'),
(16951, 'https://ror.org/02c3k1665', 'no_lang_code', 1, 'https://ror.org/02c3k1665 Fomterv (Hungary)'),
(16952, 'https://ror.org/02c4s5t61', 'en', 1, 'https://ror.org/02c4s5t61 Wild for Life'),
(16953, 'https://ror.org/02c684e48', 'no_lang_code', 1, 'https://ror.org/02c684e48 Elbit Systems (Israel)'),
(16954, 'https://ror.org/02c7f4b44', 'no_lang_code', 1, 'https://ror.org/02c7f4b44 Lesswire (Germany)'),
(16955, 'https://ror.org/02c8yyx65', 'en', 1, 'https://ror.org/02c8yyx65 Delaware Academy of Medicine'),
(16956, 'https://ror.org/02caxje77', 'no_lang_code', 1, 'https://ror.org/02caxje77 Van Putten-Gas Energy Observatory (Netherlands)'),
(16957, 'https://ror.org/02ccjyn18', 'en', 1, 'https://ror.org/02ccjyn18 Wisconsin Veterans Museum'),
(16958, 'https://ror.org/02cfjxd09', 'no_lang_code', 1, 'https://ror.org/02cfjxd09 Fiday Gestion (France)'),
(16959, 'https://ror.org/02cjv3666', 'en', 1, 'https://ror.org/02cjv3666 Shaker Heights Public Library'),
(16960, 'https://ror.org/02cn8ky49', 'fr', 1, 'https://ror.org/02cn8ky49 Groupe de Recherche en Agriculture Biologique'),
(16961, 'https://ror.org/02crf0z25', 'no_lang_code', 1, 'https://ror.org/02crf0z25 Herry Consult (Austria)'),
(16962, 'https://ror.org/02cs65r11', 'en', 1, 'https://ror.org/02cs65r11 State Building & Construction Trades Council of California'),
(16963, 'https://ror.org/02ct8rs48', 'en', 1, 'https://ror.org/02ct8rs48 Young Survival Coalition'),
(16964, 'https://ror.org/02cwppe53', 'no_lang_code', 1, 'https://ror.org/02cwppe53 Savara Pharmaceuticals (United States)'),
(16965, 'https://ror.org/02cyrpr98', 'en', 1, 'https://ror.org/02cyrpr98 Trans Tasman Radiation Oncology Group'),
(16966, 'https://ror.org/02d13xg07', 'en', 1, 'https://ror.org/02d13xg07 Upper Arlington Public Library'),
(16967, 'https://ror.org/02d1pme30', 'no_lang_code', 1, 'https://ror.org/02d1pme30 Kirkstall (United Kingdom)'),
(16968, 'https://ror.org/02d21rw53', 'en', 1, 'https://ror.org/02d21rw53 Rockingham County Schools'),
(16969, 'https://ror.org/02d290r06', 'en', 1, 'https://ror.org/02d290r06 Swedish Research Council for Health Working Life and Welfare'),
(16970, 'https://ror.org/02d33yc31', 'no_lang_code', 1, 'https://ror.org/02d33yc31 Smartrac (Germany)'),
(16971, 'https://ror.org/02d6dfr74', 'no_lang_code', 1, 'https://ror.org/02d6dfr74 Bettergy (United States)'),
(16972, 'https://ror.org/02d7e3b90', 'en', 1, 'https://ror.org/02d7e3b90 Human Services Research Institute'),
(16973, 'https://ror.org/02dahmt29', 'no_lang_code', 1, 'https://ror.org/02dahmt29 Humacyte (United States)'),
(16974, 'https://ror.org/02db0kh50', 'en', 1, 'https://ror.org/02db0kh50 Istituto di Ricerca sulle Acque Water Research Institute'),
(16975, 'https://ror.org/02deb7v37', 'en', 1, 'https://ror.org/02deb7v37 Ohio Attorney General''s Office'),
(16976, 'https://ror.org/02df22b40', 'en', 1, 'https://ror.org/02df22b40 US Human Rights Network'),
(16977, 'https://ror.org/02dgk8j41', 'fr', 1, 'https://ror.org/02dgk8j41 Centre de Recherche en Nutrition Humaine RhƓne-Alpes'),
(16978, 'https://ror.org/02dhj0p43', 'en', 1, 'https://ror.org/02dhj0p43 Sinha Institute of Medical Science & Technology'),
(16979, 'https://ror.org/02dhzaa20', 'en', 1, 'https://ror.org/02dhzaa20 Swope Art Museum'),
(16980, 'https://ror.org/02dj2h444', 'no_lang_code', 1, 'https://ror.org/02dj2h444 Compagnie d''amƩnagement du Bas-RhƓne et du Languedoc Groupe BRL (France)'),
(16981, 'https://ror.org/02dmsrt53', 'en', 1, 'https://ror.org/02dmsrt53 Eesti-Rootsi Vaimse Tervise ja Suitsidoloogia Instituut Estonian-Swedish Mental Health and Suicidology Institute'),
(16982, 'https://ror.org/02dnajs12', 'no_lang_code', 1, 'https://ror.org/02dnajs12 Koppert (Netherlands)'),
(16983, 'https://ror.org/02dp3xf77', 'en', 1, 'https://ror.org/02dp3xf77 European Society for Therapeutic Radiology and Oncology'),
(16984, 'https://ror.org/02dsng071', 'no_lang_code', 1, 'https://ror.org/02dsng071 Inmatech (United States)'),
(16985, 'https://ror.org/02dteh969', 'en', 1, 'https://ror.org/02dteh969 Centre For Development Studies'),
(16986, 'https://ror.org/02dzg8324', 'no_lang_code', 1, 'https://ror.org/02dzg8324 Kaleido Technology (Denmark)'),
(16987, 'https://ror.org/02dzmwb51', 'en', 1, 'https://ror.org/02dzmwb51 Decatur Public Library'),
(16988, 'https://ror.org/02e10hc87', 'no_lang_code', 1, 'https://ror.org/02e10hc87 Centronic (United Kingdom)'),
(16989, 'https://ror.org/02e1f2f58', 'en', 1, 'https://ror.org/02e1f2f58 Wyoming Services for Independent Living'),
(16990, 'https://ror.org/02e1wjw63', 'no_lang_code', 1, 'https://ror.org/02e1wjw63 Abcam (United States)'),
(16991, 'https://ror.org/02e2bht63', 'en', 1, 'https://ror.org/02e2bht63 Monroe County Library System'),
(16992, 'https://ror.org/02e3hdx05', 'en', 1, 'https://ror.org/02e3hdx05 Hochschule Trier Trier University of Applied Sciences'),
(16993, 'https://ror.org/02e3yqk73', 'no_lang_code', 1, 'https://ror.org/02e3yqk73 5M (Czechia)'),
(16994, 'https://ror.org/02e5q2963', 'en', 1, 'https://ror.org/02e5q2963 Institute for Higher Education Policy'),
(16995, 'https://ror.org/02e71h867', 'no_lang_code', 1, 'https://ror.org/02e71h867 Beckers (United Kingdom)'),
(16996, 'https://ror.org/02e7m0v19', 'en', 1, 'https://ror.org/02e7m0v19 Roc Institute for Arts and Sciences'),
(16997, 'https://ror.org/02e97q397', 'no_lang_code', 1, 'https://ror.org/02e97q397 Gƶkser Makina (Turkey)'),
(16998, 'https://ror.org/02easmg06', 'no_lang_code', 1, 'https://ror.org/02easmg06 Guilford Press (United States)'),
(16999, 'https://ror.org/02eat2165', 'no_lang_code', 1, 'https://ror.org/02eat2165 Bristol Industrial and Research Associates (United Kingdom)'),
(17000, 'https://ror.org/02ebmk238', 'sl', 1, 'https://ror.org/02ebmk238 Agencija za Radioaktivne Odpadke'),
(17001, 'https://ror.org/02ebmva22', 'no_lang_code', 1, 'https://ror.org/02ebmva22 Global Phasing (United Kingdom)'),
(17002, 'https://ror.org/02ec2g004', 'en', 1, 'https://ror.org/02ec2g004 Cranbrook Institute of Science'),
(17003, 'https://ror.org/02ecpn164', 'en', 1, 'https://ror.org/02ecpn164 Quincy Museum'),
(17004, 'https://ror.org/02edcq094', 'no_lang_code', 1, 'https://ror.org/02edcq094 Big Horn Valve'),
(17005, 'https://ror.org/02edkny32', 'fr', 1, 'https://ror.org/02edkny32 Conseil EuropƩen de l''Industrie des Peintures des Encres d''Imprimerie et des Couleurs d''Art'),
(17006, 'https://ror.org/02ee95325', 'en', 1, 'https://ror.org/02ee95325 Swedish Family Medicine Residency - Cherry Hill'),
(17007, 'https://ror.org/02eeqxc82', 'en', 1, 'https://ror.org/02eeqxc82 Centre de DƩveloppement des Energies Renouvelables Renewable Energy Development Center'),
(17008, 'https://ror.org/02efwpm71', 'fr', 1, 'https://ror.org/02efwpm71 Belgian Road Safety Institute Belgisch Instituut Voor de Verkeersveiligheid Institut Belge pour la Sécurité Routière'),
(17009, 'https://ror.org/02efxmp95', 'no_lang_code', 1, 'https://ror.org/02efxmp95 AT&T (Netherlands)'),
(17010, 'https://ror.org/02ejjtg26', 'en', 1, 'https://ror.org/02ejjtg26 Pediatric Oncology Support Team'),
(17011, 'https://ror.org/02ejtm324', 'en', 1, 'https://ror.org/02ejtm324 Southwest Wheelchair Athletic Association'),
(17012, 'https://ror.org/02em5fs68', 'en', 1, 'https://ror.org/02em5fs68 Rodman Public Library'),
(17013, 'https://ror.org/02enqcp25', 'no_lang_code', 1, 'https://ror.org/02enqcp25 Limbs Alive (United Kingdom)'),
(17014, 'https://ror.org/02ep5c830', 'en', 1, 'https://ror.org/02ep5c830 Pontifical College Josephinum'),
(17015, 'https://ror.org/02epzsg75', 'no_lang_code', 1, 'https://ror.org/02epzsg75 Domologic (Germany)'),
(17016, 'https://ror.org/02eqjce94', 'no_lang_code', 1, 'https://ror.org/02eqjce94 Betonsteinwerk Heide (Germany)'),
(17017, 'https://ror.org/02eqp9f22', 'no_lang_code', 1, 'https://ror.org/02eqp9f22 Cartes Bancaires (France)'),
(17018, 'https://ror.org/02evrz660', 'no_lang_code', 1, 'https://ror.org/02evrz660 Beacon Energy (United Kingdom)'),
(17019, 'https://ror.org/02ex8ca13', 'en', 1, 'https://ror.org/02ex8ca13 Southbury Clinic'),
(17020, 'https://ror.org/02eyp1631', 'en', 1, 'https://ror.org/02eyp1631 South Carolina Department of Corrections'),
(17021, 'https://ror.org/02f013h18', 'it', 1, 'https://ror.org/02f013h18 Cineca'),
(17022, 'https://ror.org/02f0m7778', 'no_lang_code', 1, 'https://ror.org/02f0m7778 Fomento de Construcciones y Contratas (Spain)'),
(17023, 'https://ror.org/02f33fz20', 'no_lang_code', 1, 'https://ror.org/02f33fz20 AvidCare (United States)'),
(17024, 'https://ror.org/02f4qmp67', 'no_lang_code', 1, 'https://ror.org/02f4qmp67 Aratome (United States)'),
(17025, 'https://ror.org/02f5yhp51', 'no_lang_code', 1, 'https://ror.org/02f5yhp51 Aero Sekur (Italy)'),
(17026, 'https://ror.org/02f6qgf95', 'en', 1, 'https://ror.org/02f6qgf95 Entertainment Industries Council'),
(17027, 'https://ror.org/02f6vcb37', 'en', 1, 'https://ror.org/02f6vcb37 Martin Township Public Library'),
(17028, 'https://ror.org/02fb3ta41', 'no_lang_code', 1, 'https://ror.org/02fb3ta41 Matres (Italy)'),
(17029, 'https://ror.org/02ff40f54', 'en', 1, 'https://ror.org/02ff40f54 Grand Rapids Community College'),
(17030, 'https://ror.org/02ff6cq09', 'no_lang_code', 1, 'https://ror.org/02ff6cq09 Crystallume (United States)'),
(17031, 'https://ror.org/02ff7k505', 'en', 1, 'https://ror.org/02ff7k505 R.E. Kavetsky Institute of Experimental Pathology, Oncology and Radiobiology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠµŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Ń— патології, онкології і раГіобіології ім. Š .Š„. ŠšŠ°Š²ŠµŃ†ŃŒŠŗŠ¾Š³Š¾'),
(17032, 'https://ror.org/02ff93068', 'no_lang_code', 1, 'https://ror.org/02ff93068 Wigs 4 Kids'),
(17033, 'https://ror.org/02fhjj867', 'en', 1, 'https://ror.org/02fhjj867 American Crystallographic Association'),
(17034, 'https://ror.org/02fhmsd26', 'en', 1, 'https://ror.org/02fhmsd26 Ursuline College'),
(17035, 'https://ror.org/02fhnan19', 'no_lang_code', 1, 'https://ror.org/02fhnan19 Acpharis'),
(17036, 'https://ror.org/02fj83z08', 'en', 1, 'https://ror.org/02fj83z08 Elmira College'),
(17037, 'https://ror.org/02fkh1w66', 'en', 1, 'https://ror.org/02fkh1w66 Health Affairs'),
(17038, 'https://ror.org/02fnbv092', 'en', 1, 'https://ror.org/02fnbv092 Quest for Life Foundation'),
(17039, 'https://ror.org/02fpfg069', 'no_lang_code', 1, 'https://ror.org/02fpfg069 International Automotive Desig (United Kingdom)'),
(17040, 'https://ror.org/02fq4p941', 'en', 1, 'https://ror.org/02fq4p941 Association EuropƩenne pour la Biomasse European Biomass Association'),
(17041, 'https://ror.org/02fs2bc65', 'no_lang_code', 1, 'https://ror.org/02fs2bc65 Discovery Laboratories (United States)'),
(17042, 'https://ror.org/02fs6en72', 'en', 1, 'https://ror.org/02fs6en72 St. Joseph''s College New York'),
(17043, 'https://ror.org/02fsh0r13', 'en', 1, 'https://ror.org/02fsh0r13 China National Center for Biotechnology Development'),
(17044, 'https://ror.org/02ftsrc92', 'no_lang_code', 1, 'https://ror.org/02ftsrc92 Celulose Beira Industrial (Portugal)'),
(17045, 'https://ror.org/02fwpc710', 'no_lang_code', 1, 'https://ror.org/02fwpc710 Esaote (Netherlands)'),
(17046, 'https://ror.org/02fxy5722', 'en', 1, 'https://ror.org/02fxy5722 One Nucleus'),
(17047, 'https://ror.org/02fzn1g05', 'no_lang_code', 1, 'https://ror.org/02fzn1g05 Contipro (Czechia)'),
(17048, 'https://ror.org/02g2wm361', 'es', 1, 'https://ror.org/02g2wm361 Centro de Investigacion de las Telecomunicaciones'),
(17049, 'https://ror.org/02g2wxz83', 'no_lang_code', 1, 'https://ror.org/02g2wxz83 ERBA Diagnostics (United States)'),
(17050, 'https://ror.org/02g3cdg42', 'en', 1, 'https://ror.org/02g3cdg42 Butte County Department of Behavioral Health'),
(17051, 'https://ror.org/02g570e80', 'no_lang_code', 1, 'https://ror.org/02g570e80 CycloLab (Hungary)'),
(17052, 'https://ror.org/02g5mks94', 'no_lang_code', 1, 'https://ror.org/02g5mks94 Targeted Cell Therapies (United States)'),
(17053, 'https://ror.org/02g6jra37', 'no_lang_code', 1, 'https://ror.org/02g6jra37 NJ International (United States)'),
(17054, 'https://ror.org/02g7ar447', 'en', 1, 'https://ror.org/02g7ar447 Chicago History Museum'),
(17055, 'https://ror.org/02gbcwx62', 'no_lang_code', 1, 'https://ror.org/02gbcwx62 Pulmatrix (United States)'),
(17056, 'https://ror.org/02gdsvx03', 'no_lang_code', 1, 'https://ror.org/02gdsvx03 3M (United Kingdom)'),
(17057, 'https://ror.org/02gewd711', 'no_lang_code', 1, 'https://ror.org/02gewd711 Inter-Euro Technology'),
(17058, 'https://ror.org/02gj10y57', 'en', 1, 'https://ror.org/02gj10y57 Glenview Public Library'),
(17059, 'https://ror.org/02gjn4306', 'en', 1, 'https://ror.org/02gjn4306 Banco Interamericano de Desarrollo Banco Interamericano de Desenvolvimento Banque interamƩricaine de dƩveloppement Inter-American Development Bank'),
(17060, 'https://ror.org/02gkgrd84', 'en', 1, 'https://ror.org/02gkgrd84 Abastumani Astrophysical Observatory įƒįƒ‘įƒįƒ”įƒ—įƒ£įƒ›įƒœįƒ˜įƒ” įƒįƒ”įƒ¢įƒ įƒįƒ¤įƒ˜įƒ–įƒ˜įƒ™įƒ£įƒ įƒ˜ įƒįƒ‘įƒ”įƒ”įƒ įƒ•įƒįƒ¢įƒįƒ įƒ˜įƒ'),
(17061, 'https://ror.org/02gncxw24', 'en', 1, 'https://ror.org/02gncxw24 Smith Center for Healing and the Arts'),
(17062, 'https://ror.org/02gnhjw76', 'no_lang_code', 1, 'https://ror.org/02gnhjw76 Lockheed Martin (United Kingdom)'),
(17063, 'https://ror.org/02gt5pz54', 'no_lang_code', 1, 'https://ror.org/02gt5pz54 IonEdge Corporation (United States)'),
(17064, 'https://ror.org/02gv17446', 'no_lang_code', 1, 'https://ror.org/02gv17446 Associated Bonded Cables (United Kingdom)'),
(17065, 'https://ror.org/02gwywt13', 'en', 1, 'https://ror.org/02gwywt13 Allies with Families'),
(17066, 'https://ror.org/02gyj7q16', 'en', 1, 'https://ror.org/02gyj7q16 YouthWorks'),
(17067, 'https://ror.org/02h1ae871', 'no_lang_code', 1, 'https://ror.org/02h1ae871 Alliant Energy (United States)'),
(17068, 'https://ror.org/02h3mfv55', 'en', 1, 'https://ror.org/02h3mfv55 Lincoln Christian University'),
(17069, 'https://ror.org/02h3q9f84', 'no_lang_code', 1, 'https://ror.org/02h3q9f84 Intertanko (Norway)'),
(17070, 'https://ror.org/02h5f8v93', 'en', 1, 'https://ror.org/02h5f8v93 Regional Cancer Center'),
(17071, 'https://ror.org/02h6vef88', 'en', 1, 'https://ror.org/02h6vef88 Institute for Analytical Instrumentation Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аналитического ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(17072, 'https://ror.org/02h8ngt70', 'en', 1, 'https://ror.org/02h8ngt70 Institutul National Victor Babes, Victor Babes Institute'),
(17073, 'https://ror.org/02h98mq12', 'en', 1, 'https://ror.org/02h98mq12 Peoria Public Library'),
(17074, 'https://ror.org/02ha1gc65', 'en', 1, 'https://ror.org/02ha1gc65 West Central Georgia Cancer Coalition'),
(17075, 'https://ror.org/02hc6j080', 'no_lang_code', 1, 'https://ror.org/02hc6j080 Blinq Network (Canada)'),
(17076, 'https://ror.org/02hk0z764', 'en', 1, 'https://ror.org/02hk0z764 Side by Side'),
(17077, 'https://ror.org/02hkdv109', 'no_lang_code', 1, 'https://ror.org/02hkdv109 BollorƩ (France)'),
(17078, 'https://ror.org/02hkvad16', 'en', 1, 'https://ror.org/02hkvad16 Spinal Muscular Atrophy Foundation'),
(17079, 'https://ror.org/02hmgg345', 'it', 1, 'https://ror.org/02hmgg345 INiziative Conciarie ASsociate'),
(17080, 'https://ror.org/02hmy2876', 'no_lang_code', 1, 'https://ror.org/02hmy2876 Aethlon Medical (United States)'),
(17081, 'https://ror.org/02hnr5x72', 'no_lang_code', 1, 'https://ror.org/02hnr5x72 Harman (Germany)'),
(17082, 'https://ror.org/02hrr9v50', 'en', 1, 'https://ror.org/02hrr9v50 Machine Science'),
(17083, 'https://ror.org/02hs8rd37', 'no_lang_code', 1, 'https://ror.org/02hs8rd37 Agrico (Netherlands)'),
(17084, 'https://ror.org/02hswss60', 'en', 1, 'https://ror.org/02hswss60 Fairfax Neonatal Associates'),
(17085, 'https://ror.org/02ht8yh85', 'en', 1, 'https://ror.org/02ht8yh85 International Society for Environmental Protection'),
(17086, 'https://ror.org/02htcra34', 'en', 1, 'https://ror.org/02htcra34 Conference of Radiation Control Program Directors'),
(17087, 'https://ror.org/02hvkfj85', 'en', 1, 'https://ror.org/02hvkfj85 West Allis Public Library'),
(17088, 'https://ror.org/02hwey921', 'no_lang_code', 1, 'https://ror.org/02hwey921 Biolitec (Germany)'),
(17089, 'https://ror.org/02hyrh851', 'no_lang_code', 1, 'https://ror.org/02hyrh851 Lallemand (United Kingdom)'),
(17090, 'https://ror.org/02hz47643', 'en', 1, 'https://ror.org/02hz47643 Asian Technology Information Program'),
(17091, 'https://ror.org/02j0jan18', 'fr', 1, 'https://ror.org/02j0jan18 La CitƩ MƩdicale'),
(17092, 'https://ror.org/02j3b8k57', 'en', 1, 'https://ror.org/02j3b8k57 Institute of Contemporary Arts'),
(17093, 'https://ror.org/02j3h8a82', 'no_lang_code', 1, 'https://ror.org/02j3h8a82 El Corte InglƩs (Portugal)'),
(17094, 'https://ror.org/02j3ntr89', 'fr', 1, 'https://ror.org/02j3ntr89 BoƮte Ơ science'),
(17095, 'https://ror.org/02j42wf49', 'en', 1, 'https://ror.org/02j42wf49 Cuyahoga County Public Library'),
(17096, 'https://ror.org/02j4v2965', 'en', 1, 'https://ror.org/02j4v2965 Career Trek'),
(17097, 'https://ror.org/02j6gm739', 'en', 1, 'https://ror.org/02j6gm739 Max Planck Institute for Solar System Research Max-Planck-Institut für Sonnensystemforschung'),
(17098, 'https://ror.org/02j798m12', 'en', 1, 'https://ror.org/02j798m12 American Bankers Association'),
(17099, 'https://ror.org/02j809324', 'en', 1, 'https://ror.org/02j809324 Kanlo Consultants'),
(17100, 'https://ror.org/02j83q337', 'en', 1, 'https://ror.org/02j83q337 Gus Foundation'),
(17101, 'https://ror.org/02j8e5x02', 'en', 1, 'https://ror.org/02j8e5x02 Spring Arbor University'),
(17102, 'https://ror.org/02j97b022', 'en', 1, 'https://ror.org/02j97b022 WISE & Healthy Aging'),
(17103, 'https://ror.org/02j9tgd14', 'en', 1, 'https://ror.org/02j9tgd14 European Federation of Allergy and Airways Diseases Patients Associations'),
(17104, 'https://ror.org/02jatdd65', 'en', 1, 'https://ror.org/02jatdd65 American Theological Library Association'),
(17105, 'https://ror.org/02jbnyk55', 'no_lang_code', 1, 'https://ror.org/02jbnyk55 Active Spectrum (United States)'),
(17106, 'https://ror.org/02jcwe568', 'en', 1, 'https://ror.org/02jcwe568 Tarrant County Challenge'),
(17107, 'https://ror.org/02jcwf181', 'en', 1, 'https://ror.org/02jcwf181 Creative Scotland'),
(17108, 'https://ror.org/02jdjd592', 'en', 1, 'https://ror.org/02jdjd592 White Earth Nation'),
(17109, 'https://ror.org/02jfa4f02', 'no_lang_code', 1, 'https://ror.org/02jfa4f02 Collagen Medical (United States)'),
(17110, 'https://ror.org/02jfqby89', 'en', 1, 'https://ror.org/02jfqby89 European Disability Forum'),
(17111, 'https://ror.org/02jfsex62', 'no_lang_code', 1, 'https://ror.org/02jfsex62 TransCure BioServices (France)'),
(17112, 'https://ror.org/02jg7b497', 'en', 1, 'https://ror.org/02jg7b497 Ukrainian Museum-Archives'),
(17113, 'https://ror.org/02jgekf05', 'no_lang_code', 1, 'https://ror.org/02jgekf05 Ibstock Brick (United Kingdom)'),
(17114, 'https://ror.org/02jkzw668', 'no_lang_code', 1, 'https://ror.org/02jkzw668 CompleGen (United States)'),
(17115, 'https://ror.org/02jmfhf57', 'no_lang_code', 1, 'https://ror.org/02jmfhf57 Biopure (United States)'),
(17116, 'https://ror.org/02jn6na36', 'no_lang_code', 1, 'https://ror.org/02jn6na36 Finsa (Italy)'),
(17117, 'https://ror.org/02jpn1774', 'en', 1, 'https://ror.org/02jpn1774 Federal Trade Commission'),
(17118, 'https://ror.org/02jv94t03', 'no_lang_code', 1, 'https://ror.org/02jv94t03 e2e Services (United Kingdom)'),
(17119, 'https://ror.org/02jv9nh47', 'en', 1, 'https://ror.org/02jv9nh47 AcadƩmie de marine du massachusetts Massachusetts Maritime Academy'),
(17120, 'https://ror.org/02jvqj155', 'en', 1, 'https://ror.org/02jvqj155 Concordia University Chicago UniversitƩ concordia de chicago'),
(17121, 'https://ror.org/02jvwwy41', 'en', 1, 'https://ror.org/02jvwwy41 Biblioteca Nacional de Portugal National Library of Portugal'),
(17122, 'https://ror.org/02jx5cp03', 'no_lang_code', 1, 'https://ror.org/02jx5cp03 Cen Group (United Kingdom)'),
(17123, 'https://ror.org/02jxaxt71', 'no_lang_code', 1, 'https://ror.org/02jxaxt71 Hyperstone (Germany)'),
(17124, 'https://ror.org/02k0pxf68', 'en', 1, 'https://ror.org/02k0pxf68 Sacramento Asian Pacific Chamber of Commerce'),
(17125, 'https://ror.org/02k16sh85', 'en', 1, 'https://ror.org/02k16sh85 Clark State Community College'),
(17126, 'https://ror.org/02k1jxv55', 'en', 1, 'https://ror.org/02k1jxv55 Southern Rural Black Women''s Initiative'),
(17127, 'https://ror.org/02k3w5n89', 'en', 1, 'https://ror.org/02k3w5n89 Agder Research Agderforskning'),
(17128, 'https://ror.org/02k6x6h05', 'no_lang_code', 1, 'https://ror.org/02k6x6h05 Harmonia (United States)'),
(17129, 'https://ror.org/02k733j94', 'en', 1, 'https://ror.org/02k733j94 Thrive Together'),
(17130, 'https://ror.org/02k74w593', 'en', 1, 'https://ror.org/02k74w593 Irvine Unified School District'),
(17131, 'https://ror.org/02k784406', 'no_lang_code', 1, 'https://ror.org/02k784406 Inpria (United States)'),
(17132, 'https://ror.org/02k7wq289', 'no_lang_code', 1, 'https://ror.org/02k7wq289 3H Biomedical (Sweden)'),
(17133, 'https://ror.org/02k8ce792', 'no_lang_code', 1, 'https://ror.org/02k8ce792 Amantys (United Kingdom)'),
(17134, 'https://ror.org/02k90w379', 'no_lang_code', 1, 'https://ror.org/02k90w379 Invoke Labs (Canada)'),
(17135, 'https://ror.org/02k9d9y07', 'en', 1, 'https://ror.org/02k9d9y07 Academy of Management'),
(17136, 'https://ror.org/02k9jm268', 'fr', 1, 'https://ror.org/02k9jm268 Agence RƩgionale d''Ʃvaluation Environnement et Climat'),
(17137, 'https://ror.org/02k9pbz03', 'no_lang_code', 1, 'https://ror.org/02k9pbz03 ACIC (Belgium)'),
(17138, 'https://ror.org/02kab2r08', 'en', 1, 'https://ror.org/02kab2r08 Health Wagon'),
(17139, 'https://ror.org/02kajxp71', 'en', 1, 'https://ror.org/02kajxp71 National Archives of Hungary'),
(17140, 'https://ror.org/02ke8g602', 'en', 1, 'https://ror.org/02ke8g602 Ralph Lauren Center for Cancer Care and Prevention'),
(17141, 'https://ror.org/02kexh790', 'no_lang_code', 1, 'https://ror.org/02kexh790 Missouri Breaks Industries Research (United States)'),
(17142, 'https://ror.org/02kf1n146', 'no_lang_code', 1, 'https://ror.org/02kf1n146 Poweo (France)'),
(17143, 'https://ror.org/02kfzvh91', 'en', 1, 'https://ror.org/02kfzvh91 Fraunhofer Institute for Solar Energy Systems Fraunhofer-Institut für Solare Energiesysteme'),
(17144, 'https://ror.org/02kg29r51', 'no_lang_code', 1, 'https://ror.org/02kg29r51 Kampakas (Greece)'),
(17145, 'https://ror.org/02khpps76', 'no_lang_code', 1, 'https://ror.org/02khpps76 Institut für Gebirgsmechanik (Germany)'),
(17146, 'https://ror.org/02khq4z72', 'no_lang_code', 1, 'https://ror.org/02khq4z72 Kelvin Nanotechnology (United Kingdom)'),
(17147, 'https://ror.org/02kjgzx32', 'en', 1, 'https://ror.org/02kjgzx32 Chrysalis House'),
(17148, 'https://ror.org/02kmywe48', 'no_lang_code', 1, 'https://ror.org/02kmywe48 Agilent Technologies (Austria)'),
(17149, 'https://ror.org/02knxrg60', 'en', 1, 'https://ror.org/02knxrg60 German Marine Research Consortium Konsortium Deutsche Meeresforschung'),
(17150, 'https://ror.org/02kq40n08', 'no_lang_code', 1, 'https://ror.org/02kq40n08 Earlens (United States)'),
(17151, 'https://ror.org/02kq57h59', 'no_lang_code', 1, 'https://ror.org/02kq57h59 Anco Engineers (United States)'),
(17152, 'https://ror.org/02krpaf84', 'en', 1, 'https://ror.org/02krpaf84 Second Harvest Food Bank'),
(17153, 'https://ror.org/02ks97v71', 'no_lang_code', 1, 'https://ror.org/02ks97v71 Human Reliability (United Kingdom)'),
(17154, 'https://ror.org/02ktbzt22', 'no_lang_code', 1, 'https://ror.org/02ktbzt22 JSTOR'),
(17155, 'https://ror.org/02kvbnm84', 'en', 1, 'https://ror.org/02kvbnm84 Sutter Santa Rosa Regional Hospital'),
(17156, 'https://ror.org/02kx1jy33', 'no_lang_code', 1, 'https://ror.org/02kx1jy33 Lyven (France)'),
(17157, 'https://ror.org/02kxemb23', 'en', 1, 'https://ror.org/02kxemb23 Jefferson County Department of Health'),
(17158, 'https://ror.org/02kxx1c93', 'en', 1, 'https://ror.org/02kxx1c93 Holmes Community College'),
(17159, 'https://ror.org/02kybxa90', 'en', 1, 'https://ror.org/02kybxa90 Cleveland Public Library'),
(17160, 'https://ror.org/02m0e8z16', 'en', 1, 'https://ror.org/02m0e8z16 Thousand Waves Foundation'),
(17161, 'https://ror.org/02m0g1n06', 'en', 1, 'https://ror.org/02m0g1n06 VanderCook College of Music'),
(17162, 'https://ror.org/02m0s8558', 'no_lang_code', 1, 'https://ror.org/02m0s8558 Ennovatis (Germany)'),
(17163, 'https://ror.org/02m388s04', 'en', 1, 'https://ror.org/02m388s04 Department of Atomic Energy ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤Šą¤°ą„ą¤œą¤¾ विभाग அணு ą®šą®•ąÆą®¤ą®æą®¤ąÆą®¤ąÆą®±ąÆˆ ą“†ą“£ą“µąµ‹ąµ¼ą“œąµą“œ ą“µą“•ąµą“Ŗąµą“Ŗąµ'),
(17164, 'https://ror.org/02m39mw39', 'no_lang_code', 1, 'https://ror.org/02m39mw39 Geodiscover (Portugal)'),
(17165, 'https://ror.org/02m6s1q30', 'en', 1, 'https://ror.org/02m6s1q30 Pennsylvania Academic Library Consortium'),
(17166, 'https://ror.org/02md5ab07', 'en', 1, 'https://ror.org/02md5ab07 American Entomological Institute'),
(17167, 'https://ror.org/02mf2qw78', 'no_lang_code', 1, 'https://ror.org/02mf2qw78 Toshiba (France)'),
(17168, 'https://ror.org/02mh9jb68', 'sr', 1, 'https://ror.org/02mh9jb68 Creative Educational Centre Kreativno Edukativni Centar'),
(17169, 'https://ror.org/02mhagg83', 'en', 1, 'https://ror.org/02mhagg83 Yaddo'),
(17170, 'https://ror.org/02mkmrt04', 'no_lang_code', 1, 'https://ror.org/02mkmrt04 Cryogel (France)'),
(17171, 'https://ror.org/02mkscs58', 'no_lang_code', 1, 'https://ror.org/02mkscs58 Viasat (Switzerland)'),
(17172, 'https://ror.org/02mn0vt57', 'fr', 1, 'https://ror.org/02mn0vt57 Institut de l''Information Scientifique et Technique Institute of Scientific and Technical Information'),
(17173, 'https://ror.org/02msncq66', 'en', 1, 'https://ror.org/02msncq66 Missouri Valley College'),
(17174, 'https://ror.org/02mt4ht57', 'en', 1, 'https://ror.org/02mt4ht57 Saga Women''s Junior College ä½č³€å„³å­ēŸ­ęœŸå¤§å­¦'),
(17175, 'https://ror.org/02mxfc935', 'no_lang_code', 1, 'https://ror.org/02mxfc935 Andermatt Biocontrol (Switzerland)'),
(17176, 'https://ror.org/02myn8n47', 'en', 1, 'https://ror.org/02myn8n47 Todor Kableshkov University of Transport'),
(17177, 'https://ror.org/02mz79w21', 'en', 1, 'https://ror.org/02mz79w21 Austrian Road Safety Board Kuratorium fuer Verkehrssicherheit'),
(17178, 'https://ror.org/02mzsdx16', 'no_lang_code', 1, 'https://ror.org/02mzsdx16 Lowri Beck (United Kingdom)'),
(17179, 'https://ror.org/02n226v23', 'no_lang_code', 1, 'https://ror.org/02n226v23 Bruxton (United States)'),
(17180, 'https://ror.org/02n27h954', 'en', 1, 'https://ror.org/02n27h954 American Academy of Allergy, Asthma and Immunology'),
(17181, 'https://ror.org/02n43mq92', 'en', 1, 'https://ror.org/02n43mq92 St. Charles City County Library District'),
(17182, 'https://ror.org/02n5mme38', 'no_lang_code', 1, 'https://ror.org/02n5mme38 Topigs Norsvin (Netherlands)'),
(17183, 'https://ror.org/02n80qr18', 'en', 1, 'https://ror.org/02n80qr18 Memorial Hermann Northwest Hospital'),
(17184, 'https://ror.org/02na67p17', 'no_lang_code', 1, 'https://ror.org/02na67p17 IBZ - Salzchemie (Germany)'),
(17185, 'https://ror.org/02nc81e13', 'no_lang_code', 1, 'https://ror.org/02nc81e13 IBM (Italy)'),
(17186, 'https://ror.org/02ndetp66', 'en', 1, 'https://ror.org/02ndetp66 Wheelin'' Team 457'),
(17187, 'https://ror.org/02ndzwq27', 'en', 1, 'https://ror.org/02ndzwq27 Foundation for Innovation and Technology Transfer'),
(17188, 'https://ror.org/02nf85c88', 'no_lang_code', 1, 'https://ror.org/02nf85c88 Estaleiros Navais de Peniche (Portugal)'),
(17189, 'https://ror.org/02ng1r361', 'fr', 1, 'https://ror.org/02ng1r361 CitƩ des Sciences et de l''Industrie'),
(17190, 'https://ror.org/02nmc8040', 'en', 1, 'https://ror.org/02nmc8040 Rochester Rehabilitation Center'),
(17191, 'https://ror.org/02nn2g073', 'en', 1, 'https://ror.org/02nn2g073 Aesthetic Surgery Center'),
(17192, 'https://ror.org/02nnffk43', 'no_lang_code', 1, 'https://ror.org/02nnffk43 Audiofile (United States)'),
(17193, 'https://ror.org/02np3th21', 'en', 1, 'https://ror.org/02np3th21 Europace'),
(17194, 'https://ror.org/02npzsh43', 'en', 1, 'https://ror.org/02npzsh43 Providence Health Foundation'),
(17195, 'https://ror.org/02nrgrm49', 'no_lang_code', 1, 'https://ror.org/02nrgrm49 Alfa Imaging (Spain)'),
(17196, 'https://ror.org/02ntfsb56', 'en', 1, 'https://ror.org/02ntfsb56 Committee on Institutional Cooperation'),
(17197, 'https://ror.org/02nv12n94', 'it', 1, 'https://ror.org/02nv12n94 Consorzio del Formaggio Parmigiano-Reggiano'),
(17198, 'https://ror.org/02nwxzm09', 'en', 1, 'https://ror.org/02nwxzm09 Lansing Community College'),
(17199, 'https://ror.org/02nxb9495', 'en', 1, 'https://ror.org/02nxb9495 Riverside San Bernardino County Indian Health'),
(17200, 'https://ror.org/02nxmy513', 'en', 1, 'https://ror.org/02nxmy513 Samuel Simmonds Memorial Hospital'),
(17201, 'https://ror.org/02nxw7t86', 'en', 1, 'https://ror.org/02nxw7t86 UCHealth Yampa Valley Medical Center'),
(17202, 'https://ror.org/02nyatx59', 'no_lang_code', 1, 'https://ror.org/02nyatx59 Celanese (Germany)'),
(17203, 'https://ror.org/02p19yx96', 'no_lang_code', 1, 'https://ror.org/02p19yx96 Luminomics (United States)'),
(17204, 'https://ror.org/02p2xd084', 'no_lang_code', 1, 'https://ror.org/02p2xd084 Avidity (United States)'),
(17205, 'https://ror.org/02p30c858', 'en', 1, 'https://ror.org/02p30c858 Lakeland Library Cooperative'),
(17206, 'https://ror.org/02p43pa18', 'no_lang_code', 1, 'https://ror.org/02p43pa18 Out Front (United States)'),
(17207, 'https://ror.org/02p4ctz53', 'no_lang_code', 1, 'https://ror.org/02p4ctz53 Informatica Tecnologie e Servizi (Italy)'),
(17208, 'https://ror.org/02p4mks29', 'no_lang_code', 1, 'https://ror.org/02p4mks29 Henry Schein (United States)'),
(17209, 'https://ror.org/02p5tqh12', 'no_lang_code', 1, 'https://ror.org/02p5tqh12 Kromek (United Kingdom)'),
(17210, 'https://ror.org/02p750640', 'en', 1, 'https://ror.org/02p750640 WellFlorida Council'),
(17211, 'https://ror.org/02p7kx729', 'en', 1, 'https://ror.org/02p7kx729 Conference for Food Protection'),
(17212, 'https://ror.org/02p8p3n14', 'no_lang_code', 1, 'https://ror.org/02p8p3n14 Agrovegetal (Spain)'),
(17213, 'https://ror.org/02p92he45', 'en', 1, 'https://ror.org/02p92he45 Urgent Action Fund'),
(17214, 'https://ror.org/02pbwqv79', 'en', 1, 'https://ror.org/02pbwqv79 Reynolds Community College'),
(17215, 'https://ror.org/02pfsqg38', 'en', 1, 'https://ror.org/02pfsqg38 Clearfield-Jefferson Drug and Alcohol Commission'),
(17216, 'https://ror.org/02pgrmd66', 'en', 1, 'https://ror.org/02pgrmd66 Wayside House'),
(17217, 'https://ror.org/02ph8mh81', 'no_lang_code', 1, 'https://ror.org/02ph8mh81 Zenobia Therapeutics (United States)'),
(17218, 'https://ror.org/02pn7t710', 'no_lang_code', 1, 'https://ror.org/02pn7t710 McDermott Will & Emery (United States)'),
(17219, 'https://ror.org/02pnyt573', 'fr', 1, 'https://ror.org/02pnyt573 Chambre de Commerce et d''Industrie Lyon MĆ©tropole Saint-Ɖtienne Roanne'),
(17220, 'https://ror.org/02ppzqx84', 'no_lang_code', 1, 'https://ror.org/02ppzqx84 Logit Systems (Belgium)'),
(17221, 'https://ror.org/02pqv9m23', 'no_lang_code', 1, 'https://ror.org/02pqv9m23 Lufthansa Technical Training (Germany)'),
(17222, 'https://ror.org/02ps8wg39', 'en', 1, 'https://ror.org/02ps8wg39 Tashkent Institute Of Postgraduate Medical Education'),
(17223, 'https://ror.org/02pw67e25', 'no_lang_code', 1, 'https://ror.org/02pw67e25 CE Technologies (United Kingdom)'),
(17224, 'https://ror.org/02pw9b361', 'no_lang_code', 1, 'https://ror.org/02pw9b361 Francisco MuƱoz Irles (Spain)'),
(17225, 'https://ror.org/02pwp4n28', 'no_lang_code', 1, 'https://ror.org/02pwp4n28 Imagination Software Corporation (United States)'),
(17226, 'https://ror.org/02pxcrq67', 'no_lang_code', 1, 'https://ror.org/02pxcrq67 FEO Solutions (United States)'),
(17227, 'https://ror.org/02pxet008', 'ro', 1, 'https://ror.org/02pxet008 Centrul pentru Promovarea Energiei Curate si Eficiente in Romania'),
(17228, 'https://ror.org/02py3es11', 'en', 1, 'https://ror.org/02py3es11 Illinois Supreme Court Library'),
(17229, 'https://ror.org/02pyj0w80', 'en', 1, 'https://ror.org/02pyj0w80 Room to Read'),
(17230, 'https://ror.org/02pzmpf65', 'en', 1, 'https://ror.org/02pzmpf65 Wheelchair and Ambulatory Sports USA'),
(17231, 'https://ror.org/02q002e44', 'en', 1, 'https://ror.org/02q002e44 National Museum of Women in the Arts'),
(17232, 'https://ror.org/02q0d6f73', 'no_lang_code', 1, 'https://ror.org/02q0d6f73 Agence MTDA'),
(17233, 'https://ror.org/02q279j80', 'no_lang_code', 1, 'https://ror.org/02q279j80 Anect (Czechia)'),
(17234, 'https://ror.org/02q6x7761', 'no_lang_code', 1, 'https://ror.org/02q6x7761 Dresden Elektronik Ingenieurtechnik (Germany)'),
(17235, 'https://ror.org/02q7j8a46', 'en', 1, 'https://ror.org/02q7j8a46 Irish Business and Employers Confederation'),
(17236, 'https://ror.org/02q8ad752', 'no_lang_code', 1, 'https://ror.org/02q8ad752 Austria Personal Service (Austria)'),
(17237, 'https://ror.org/02qakpg42', 'no_lang_code', 1, 'https://ror.org/02qakpg42 Confederación de Empresarios de Zaragoza'),
(17238, 'https://ror.org/02qbjfj51', 'no_lang_code', 1, 'https://ror.org/02qbjfj51 Galdos Systems (Canada)'),
(17239, 'https://ror.org/02qd5rn34', 'en', 1, 'https://ror.org/02qd5rn34 Coexist Initiative'),
(17240, 'https://ror.org/02qe2w544', 'en', 1, 'https://ror.org/02qe2w544 Birmingham Museum and Art Gallery'),
(17241, 'https://ror.org/02qem3h74', 'en', 1, 'https://ror.org/02qem3h74 Birmingham Science City'),
(17242, 'https://ror.org/02qeyb550', 'no_lang_code', 1, 'https://ror.org/02qeyb550 GeneXplain (Germany)'),
(17243, 'https://ror.org/02qfp2e06', 'no_lang_code', 1, 'https://ror.org/02qfp2e06 Edacentrum'),
(17244, 'https://ror.org/02qjgmm73', 'no_lang_code', 1, 'https://ror.org/02qjgmm73 HiQScreen (Switzerland)'),
(17245, 'https://ror.org/02qmwve08', 'en', 1, 'https://ror.org/02qmwve08 Auburn Cord Duesenberg Automobile Museum'),
(17246, 'https://ror.org/02qq5j437', 'en', 1, 'https://ror.org/02qq5j437 Brimfield Public Library'),
(17247, 'https://ror.org/02qr05d85', 'en', 1, 'https://ror.org/02qr05d85 Mount Mary University'),
(17248, 'https://ror.org/02qr36w40', 'fr', 1, 'https://ror.org/02qr36w40 MinistĆØre de l''Agriculture'),
(17249, 'https://ror.org/02qsexb35', 'no_lang_code', 1, 'https://ror.org/02qsexb35 Roshydromet'),
(17250, 'https://ror.org/02qswaj55', 'no_lang_code', 1, 'https://ror.org/02qswaj55 CeramOptec (Germany)'),
(17251, 'https://ror.org/02qtpb069', 'no_lang_code', 1, 'https://ror.org/02qtpb069 Medica (Italy)'),
(17252, 'https://ror.org/02qvjf193', 'en', 1, 'https://ror.org/02qvjf193 Shriners Hospitals for Children - Twin Cities'),
(17253, 'https://ror.org/02qws0q96', 'no_lang_code', 1, 'https://ror.org/02qws0q96 Schenck Process (Norway)'),
(17254, 'https://ror.org/02qxvcs26', 'en', 1, 'https://ror.org/02qxvcs26 Illinois State Library'),
(17255, 'https://ror.org/02qxyh493', 'en', 1, 'https://ror.org/02qxyh493 Wakefield Orthopaedic Clinic'),
(17256, 'https://ror.org/02qya6g42', 'no_lang_code', 1, 'https://ror.org/02qya6g42 Boeing (Germany)'),
(17257, 'https://ror.org/02qyarm48', 'en', 1, 'https://ror.org/02qyarm48 Cambridge Community Library'),
(17258, 'https://ror.org/02qyt2t35', 'no_lang_code', 1, 'https://ror.org/02qyt2t35 Capricorn Automotive (United Kingdom)'),
(17259, 'https://ror.org/02qz22q09', 'no_lang_code', 1, 'https://ror.org/02qz22q09 GexCon (Norway)'),
(17260, 'https://ror.org/02r1e6089', 'no_lang_code', 1, 'https://ror.org/02r1e6089 Lundin Mining (Ireland)'),
(17261, 'https://ror.org/02r2nj961', 'no_lang_code', 1, 'https://ror.org/02r2nj961 Irvine Sensors (United States)'),
(17262, 'https://ror.org/02r3v5z34', 'no_lang_code', 1, 'https://ror.org/02r3v5z34 AcXys Technologies (France)'),
(17263, 'https://ror.org/02r6qtd46', 'no_lang_code', 1, 'https://ror.org/02r6qtd46 GenIbet (Portugal)'),
(17264, 'https://ror.org/02r8n1b71', 'no_lang_code', 1, 'https://ror.org/02r8n1b71 General Innovations and Goods (United States)'),
(17265, 'https://ror.org/02r8sxg18', 'en', 1, 'https://ror.org/02r8sxg18 Colorado Neurological Institute'),
(17266, 'https://ror.org/02ratyz17', 'no_lang_code', 1, 'https://ror.org/02ratyz17 Herzog + Partner (Germany)'),
(17267, 'https://ror.org/02rbfgr17', 'no_lang_code', 1, 'https://ror.org/02rbfgr17 European Media Laboratory (Germany)'),
(17268, 'https://ror.org/02rcc0516', 'en', 1, 'https://ror.org/02rcc0516 Liberty Church'),
(17269, 'https://ror.org/02rdpzb15', 'no_lang_code', 1, 'https://ror.org/02rdpzb15 Bloomberg (United States)'),
(17270, 'https://ror.org/02rf8xy04', 'it', 1, 'https://ror.org/02rf8xy04 2B'),
(17271, 'https://ror.org/02rhwc631', 'no_lang_code', 1, 'https://ror.org/02rhwc631 Chemical Dynamics (United States)'),
(17272, 'https://ror.org/02rj64652', 'en', 1, 'https://ror.org/02rj64652 Heroes Foundation'),
(17273, 'https://ror.org/02rkwhb32', 'it', 1, 'https://ror.org/02rkwhb32 Istituto Nazionale di Documentazione Innovazione e Ricerca Educativa'),
(17274, 'https://ror.org/02rnkgt97', 'no_lang_code', 1, 'https://ror.org/02rnkgt97 Hastoe Group (United Kingdom)'),
(17275, 'https://ror.org/02rp48z36', 'no_lang_code', 1, 'https://ror.org/02rp48z36 Lenntech (Netherlands)'),
(17276, 'https://ror.org/02rsszy23', 'en', 1, 'https://ror.org/02rsszy23 St. Rose Dominican Hospital'),
(17277, 'https://ror.org/02rt3gt49', 'en', 1, 'https://ror.org/02rt3gt49 Long Beach Medical Center'),
(17278, 'https://ror.org/02rv6pz93', 'no_lang_code', 1, 'https://ror.org/02rv6pz93 PixelMill (United Kingdom)'),
(17279, 'https://ror.org/02rxp0j51', 'no_lang_code', 1, 'https://ror.org/02rxp0j51 Ingeniatrics TecnologĆ­as (Spain)'),
(17280, 'https://ror.org/02rxpm513', 'no_lang_code', 1, 'https://ror.org/02rxpm513 VLP Therapeutics (United States)'),
(17281, 'https://ror.org/02s2j8b28', 'en', 1, 'https://ror.org/02s2j8b28 Chippewa Valley Museum'),
(17282, 'https://ror.org/02s347d15', 'no_lang_code', 1, 'https://ror.org/02s347d15 Albasolar (Spain)'),
(17283, 'https://ror.org/02s4efn82', 'en', 1, 'https://ror.org/02s4efn82 Boys'' Club of New York'),
(17284, 'https://ror.org/02s4pbe64', 'no_lang_code', 1, 'https://ror.org/02s4pbe64 Haines Lundberg and Waehler'),
(17285, 'https://ror.org/02s5qve69', 'no_lang_code', 1, 'https://ror.org/02s5qve69 Rogers (Germany)'),
(17286, 'https://ror.org/02s6qaw64', 'no_lang_code', 1, 'https://ror.org/02s6qaw64 Egnatia Odos (Greece)'),
(17287, 'https://ror.org/02s88ax77', 'en', 1, 'https://ror.org/02s88ax77 Institut für ökologische Wirtschaftsforschung Institute for Ecological Economy Research'),
(17288, 'https://ror.org/02s8rep32', 'en', 1, 'https://ror.org/02s8rep32 Columbus State Community College'),
(17289, 'https://ror.org/02s9zgk30', 'en', 1, 'https://ror.org/02s9zgk30 Allegheny County Department of Human Services'),
(17290, 'https://ror.org/02sbf1347', 'en', 1, 'https://ror.org/02sbf1347 Devon County Council'),
(17291, 'https://ror.org/02sd8rm97', 'no_lang_code', 1, 'https://ror.org/02sd8rm97 BSH ElectrodomƩsticos (Spain)'),
(17292, 'https://ror.org/02sdvza63', 'fr', 1, 'https://ror.org/02sdvza63 La Maison LƩon-Provancher'),
(17293, 'https://ror.org/02sdz5p32', 'no_lang_code', 1, 'https://ror.org/02sdz5p32 Fontanellas Y Marti (Spain)'),
(17294, 'https://ror.org/02skhjj30', 'en', 1, 'https://ror.org/02skhjj30 Federal Reserve Bank of St. Louis'),
(17295, 'https://ror.org/02sm33451', 'no_lang_code', 1, 'https://ror.org/02sm33451 Keep Solutions (Portugal)'),
(17296, 'https://ror.org/02spkns44', 'en', 1, 'https://ror.org/02spkns44 London Borough of Tower Hamlets'),
(17297, 'https://ror.org/02spsym66', 'en', 1, 'https://ror.org/02spsym66 Industrial Research Institute'),
(17298, 'https://ror.org/02ssn3c97', 'en', 1, 'https://ror.org/02ssn3c97 York College of Pennsylvania'),
(17299, 'https://ror.org/02sswdw89', 'no_lang_code', 1, 'https://ror.org/02sswdw89 Apotex Fermentation (Canada)'),
(17300, 'https://ror.org/02ssz8y77', 'no_lang_code', 1, 'https://ror.org/02ssz8y77 Cleancarb (Luxembourg)'),
(17301, 'https://ror.org/02st8gf30', 'no_lang_code', 1, 'https://ror.org/02st8gf30 LSI Solutions (United States)'),
(17302, 'https://ror.org/02svcmy74', 'no_lang_code', 1, 'https://ror.org/02svcmy74 LiveU (Israel)'),
(17303, 'https://ror.org/02sxpcf54', 'en', 1, 'https://ror.org/02sxpcf54 J. Iverson Riddle Developmental Center'),
(17304, 'https://ror.org/02sy6k521', 'en', 1, 'https://ror.org/02sy6k521 Industrial Systems Institute'),
(17305, 'https://ror.org/02sz9bm21', 'no_lang_code', 1, 'https://ror.org/02sz9bm21 Elia Life Technology (United States)'),
(17306, 'https://ror.org/02szfyr26', 'no_lang_code', 1, 'https://ror.org/02szfyr26 BioAssay Systems (United States)'),
(17307, 'https://ror.org/02szraw88', 'fr', 1, 'https://ror.org/02szraw88 Centre RƩgional Africain des Sciences et Technologies de l''Espace'),
(17308, 'https://ror.org/02t08m694', 'no_lang_code', 1, 'https://ror.org/02t08m694 HeidelbergCement (United Kingdom)'),
(17309, 'https://ror.org/02t0mhb72', 'en', 1, 'https://ror.org/02t0mhb72 University of Saint Mary of the Lake'),
(17310, 'https://ror.org/02t247e37', 'no_lang_code', 1, 'https://ror.org/02t247e37 Dynamic Contours (United States)'),
(17311, 'https://ror.org/02t5a9j90', 'no_lang_code', 1, 'https://ror.org/02t5a9j90 Ultradian Diagnostics (United States)'),
(17312, 'https://ror.org/02t5ee083', 'no_lang_code', 1, 'https://ror.org/02t5ee083 Interactive Flow Studies (United States)'),
(17313, 'https://ror.org/02t83f864', 'en', 1, 'https://ror.org/02t83f864 Wessex Regional Genetics Laboratory'),
(17314, 'https://ror.org/02t84dn55', 'en', 1, 'https://ror.org/02t84dn55 IRC International Water and Sanitation Centre'),
(17315, 'https://ror.org/02t8cb469', 'en', 1, 'https://ror.org/02t8cb469 European Institute for Advanced Studies in Management'),
(17316, 'https://ror.org/02tab1h96', 'en', 1, 'https://ror.org/02tab1h96 Massachusetts Department of Elementary and Secondary Education'),
(17317, 'https://ror.org/02tarpq30', 'no_lang_code', 1, 'https://ror.org/02tarpq30 General Electric (Germany)'),
(17318, 'https://ror.org/02tb28y24', 'no_lang_code', 1, 'https://ror.org/02tb28y24 Introversion Software (United Kingdom)'),
(17319, 'https://ror.org/02tbr6331', 'en', 1, 'https://ror.org/02tbr6331 Fraunhofer Institute for Telecommunications, Heinrich Hertz Institute Fraunhofer-Institut für Nachrichtentechnik, Heinrich-Hertz-Institut'),
(17320, 'https://ror.org/02tbw9n11', 'en', 1, 'https://ror.org/02tbw9n11 Los Angeles County Department of Mental Health'),
(17321, 'https://ror.org/02tbyk536', 'en', 1, 'https://ror.org/02tbyk536 International Medical Equipment Collaborative'),
(17322, 'https://ror.org/02tbyrb23', 'en', 1, 'https://ror.org/02tbyrb23 Visiting Nurse Association of Erie County'),
(17323, 'https://ror.org/02tdf3b18', 'no_lang_code', 1, 'https://ror.org/02tdf3b18 McPhy Energy (France)'),
(17324, 'https://ror.org/02teja790', 'no_lang_code', 1, 'https://ror.org/02teja790 Aruna Biomedical (United States)'),
(17325, 'https://ror.org/02tga4733', 'no_lang_code', 1, 'https://ror.org/02tga4733 DTV Consultants (Netherlands)'),
(17326, 'https://ror.org/02tjxv890', 'de', 1, 'https://ror.org/02tjxv890 Hessen Mobil – Straßen- und Verkehrsmanagement'),
(17327, 'https://ror.org/02tk2gv85', 'no_lang_code', 1, 'https://ror.org/02tk2gv85 Kapsch (Austria)'),
(17328, 'https://ror.org/02tkbtm16', 'no_lang_code', 1, 'https://ror.org/02tkbtm16 Grimm Aerosol Technik (Germany)'),
(17329, 'https://ror.org/02tr0ps12', 'en', 1, 'https://ror.org/02tr0ps12 CHI St. Vincent'),
(17330, 'https://ror.org/02trhs052', 'no_lang_code', 1, 'https://ror.org/02trhs052 KOAC'),
(17331, 'https://ror.org/02trqpj90', 'sl', 1, 'https://ror.org/02trqpj90 Center za Kartografijo Favne in Flore Centre for Cartography of Fauna and Flora'),
(17332, 'https://ror.org/02tte3f94', 'en', 1, 'https://ror.org/02tte3f94 Engineering Employers'' Federation'),
(17333, 'https://ror.org/02ttqft70', 'en', 1, 'https://ror.org/02ttqft70 American National Standards Institute'),
(17334, 'https://ror.org/02tty6654', 'no_lang_code', 1, 'https://ror.org/02tty6654 Base Materials (United Kingdom)'),
(17335, 'https://ror.org/02twn9v08', 'no_lang_code', 1, 'https://ror.org/02twn9v08 ABB (Canada)'),
(17336, 'https://ror.org/02tzm9s47', 'en', 1, 'https://ror.org/02tzm9s47 Foundation for Research on Sexually Transmitted Diseases'),
(17337, 'https://ror.org/02tzpx885', 'no_lang_code', 1, 'https://ror.org/02tzpx885 CertiFlyer (Netherlands)'),
(17338, 'https://ror.org/02v0zfv65', 'en', 1, 'https://ror.org/02v0zfv65 Sixteenth Street Community Health Center'),
(17339, 'https://ror.org/02v11vt47', 'no_lang_code', 1, 'https://ror.org/02v11vt47 Biomay (Austria)'),
(17340, 'https://ror.org/02v226c57', 'en', 1, 'https://ror.org/02v226c57 Federation of the European Sporting Goods Industry'),
(17341, 'https://ror.org/02v3h7t65', 'en', 1, 'https://ror.org/02v3h7t65 Horizon Human Services'),
(17342, 'https://ror.org/02v431325', 'en', 1, 'https://ror.org/02v431325 Harrington College of Design'),
(17343, 'https://ror.org/02v4nv830', 'en', 1, 'https://ror.org/02v4nv830 Institute for Fuels and Renewable Energy'),
(17344, 'https://ror.org/02v5dd905', 'en', 1, 'https://ror.org/02v5dd905 SunServe'),
(17345, 'https://ror.org/02v5tks88', 'no_lang_code', 1, 'https://ror.org/02v5tks88 Ultrawave Labs (United States)'),
(17346, 'https://ror.org/02v6d7v96', 'en', 1, 'https://ror.org/02v6d7v96 Joliet Public Library'),
(17347, 'https://ror.org/02v6nd536', 'en', 1, 'https://ror.org/02v6nd536 Federal Ministry of Health'),
(17348, 'https://ror.org/02v7ms182', 'en', 1, 'https://ror.org/02v7ms182 Clifford Beers Clinic'),
(17349, 'https://ror.org/02v82mn77', 'no_lang_code', 1, 'https://ror.org/02v82mn77 Agilent Technologies (Italy)'),
(17350, 'https://ror.org/02vawy993', 'en', 1, 'https://ror.org/02vawy993 United States Government Accountability Office'),
(17351, 'https://ror.org/02vc1x915', 'no_lang_code', 1, 'https://ror.org/02vc1x915 Sova Pharmaceuticals (United States)'),
(17352, 'https://ror.org/02vc6t684', 'en', 1, 'https://ror.org/02vc6t684 Catlin Gabel School'),
(17353, 'https://ror.org/02venxm51', 'en', 1, 'https://ror.org/02venxm51 Principia College'),
(17354, 'https://ror.org/02vhrn167', 'en', 1, 'https://ror.org/02vhrn167 European Distribution System Operators for Smart Grids'),
(17355, 'https://ror.org/02vjprr88', 'en', 1, 'https://ror.org/02vjprr88 Bachmann-Strauss Dystonia & Parkinson Foundation'),
(17356, 'https://ror.org/02vm4nz81', 'no_lang_code', 1, 'https://ror.org/02vm4nz81 ECT Oekotoxikologie (Germany)'),
(17357, 'https://ror.org/02vnjpj41', 'en', 1, 'https://ror.org/02vnjpj41 St. Joseph Museums'),
(17358, 'https://ror.org/02vpcxy68', 'en', 1, 'https://ror.org/02vpcxy68 Elyria Public Library System'),
(17359, 'https://ror.org/02vpy2028', 'en', 1, 'https://ror.org/02vpy2028 American Society for Virology'),
(17360, 'https://ror.org/02vpzk077', 'no_lang_code', 1, 'https://ror.org/02vpzk077 BioMed Design (United States)'),
(17361, 'https://ror.org/02vsz1415', 'ro', 1, 'https://ror.org/02vsz1415 Ministerul Sanatatii Ministry of Health of Romania'),
(17362, 'https://ror.org/02vv13147', 'en', 1, 'https://ror.org/02vv13147 Deerfield Public Library'),
(17363, 'https://ror.org/02vvm5369', 'no_lang_code', 1, 'https://ror.org/02vvm5369 Aptiv (United Kingdom)'),
(17364, 'https://ror.org/02vx35127', 'en', 1, 'https://ror.org/02vx35127 Medical Data Exchange'),
(17365, 'https://ror.org/02vxa5545', 'no_lang_code', 1, 'https://ror.org/02vxa5545 Haemonetics (United States)'),
(17366, 'https://ror.org/02vxh6382', 'en', 1, 'https://ror.org/02vxh6382 Pinky Swear Foundation');
INSERT INTO `rors` VALUES
(17367, 'https://ror.org/02vzrk436', 'en', 1, 'https://ror.org/02vzrk436 Vibrant Emotional Health'),
(17368, 'https://ror.org/02vzsb460', 'no_lang_code', 1, 'https://ror.org/02vzsb460 Cavitation-Control Technology'),
(17369, 'https://ror.org/02w1sf669', 'no_lang_code', 1, 'https://ror.org/02w1sf669 Isovolta (Austria)'),
(17370, 'https://ror.org/02w1skc55', 'en', 1, 'https://ror.org/02w1skc55 Cape Cod Community College'),
(17371, 'https://ror.org/02w3y1050', 'no_lang_code', 1, 'https://ror.org/02w3y1050 Arena Pharmaceuticals (United States)'),
(17372, 'https://ror.org/02w506a46', 'no_lang_code', 1, 'https://ror.org/02w506a46 Guardian Chemicals (Canada)'),
(17373, 'https://ror.org/02w5hgx58', 'en', 1, 'https://ror.org/02w5hgx58 Greek Solar Industry Association'),
(17374, 'https://ror.org/02w6ewz22', 'en', 1, 'https://ror.org/02w6ewz22 Iceland GeoSurvey ƍslenskar orkurannsóknir'),
(17375, 'https://ror.org/02w7v5077', 'en', 1, 'https://ror.org/02w7v5077 El Centro Elementary School District'),
(17376, 'https://ror.org/02w8ez808', 'it', 1, 'https://ror.org/02w8ez808 Fondazione Stella Maris'),
(17377, 'https://ror.org/02waqnt49', 'no_lang_code', 1, 'https://ror.org/02waqnt49 Grainger and Worral (United Kingdom)'),
(17378, 'https://ror.org/02wb36b75', 'en', 1, 'https://ror.org/02wb36b75 Lubbock Christian University'),
(17379, 'https://ror.org/02wc7yv39', 'no_lang_code', 1, 'https://ror.org/02wc7yv39 ideXlab (France)'),
(17380, 'https://ror.org/02wd3kv51', 'en', 1, 'https://ror.org/02wd3kv51 Leigh Yawkey Woodson Art Museum'),
(17381, 'https://ror.org/02we0q870', 'en', 1, 'https://ror.org/02we0q870 State Geological Institute of Dionýz Štúr'),
(17382, 'https://ror.org/02wena850', 'en', 1, 'https://ror.org/02wena850 Forschungsinstitut für Telekommunikation Research Institute for Telecommunication Cooperation'),
(17383, 'https://ror.org/02wf9ck77', 'pt', 1, 'https://ror.org/02wf9ck77 Instituto PortuguĆŖs de Malacologia'),
(17384, 'https://ror.org/02wfzks91', 'de', 1, 'https://ror.org/02wfzks91 Landwirtschaftliche Fachschule Tulln professional school for agriculture Tulln'),
(17385, 'https://ror.org/02wg4cc89', 'en', 1, 'https://ror.org/02wg4cc89 Holy Wisdom Monastery'),
(17386, 'https://ror.org/02wg88z59', 'no_lang_code', 1, 'https://ror.org/02wg88z59 Veolia (Italy)'),
(17387, 'https://ror.org/02wghjg14', 'no_lang_code', 1, 'https://ror.org/02wghjg14 Integrated Systems Development (Greece)'),
(17388, 'https://ror.org/02wgwxy44', 'en', 1, 'https://ror.org/02wgwxy44 Rajiv Poor People Welfare Society'),
(17389, 'https://ror.org/02wh1sf51', 'en', 1, 'https://ror.org/02wh1sf51 Roanoke Rapids Graded School District'),
(17390, 'https://ror.org/02wjcvj62', 'no_lang_code', 1, 'https://ror.org/02wjcvj62 Dytecna (United Kingdom)'),
(17391, 'https://ror.org/02wjdtq78', 'es', 1, 'https://ror.org/02wjdtq78 Agencia de EnergĆ­a Nuclear y TecnologĆ­as de Avanzada'),
(17392, 'https://ror.org/02wp9w043', 'en', 1, 'https://ror.org/02wp9w043 Leeds City Council'),
(17393, 'https://ror.org/02wr4ty93', 'en', 1, 'https://ror.org/02wr4ty93 Zionsville Community High School'),
(17394, 'https://ror.org/02wrd4h10', 'en', 1, 'https://ror.org/02wrd4h10 Instituto Multimedia'),
(17395, 'https://ror.org/02wyqrf98', 'en', 1, 'https://ror.org/02wyqrf98 National Association of School Psychologists'),
(17396, 'https://ror.org/02x20cn33', 'no_lang_code', 1, 'https://ror.org/02x20cn33 BioFluidix (Germany)'),
(17397, 'https://ror.org/02x3e5q37', 'en', 1, 'https://ror.org/02x3e5q37 Weems Community Mental Health Center'),
(17398, 'https://ror.org/02x3nwd23', 'en', 1, 'https://ror.org/02x3nwd23 Institute for Sustainable Development'),
(17399, 'https://ror.org/02x4af624', 'en', 1, 'https://ror.org/02x4af624 Central Statistics Office'),
(17400, 'https://ror.org/02x4zab94', 'en', 1, 'https://ror.org/02x4zab94 Federation of European Publishers'),
(17401, 'https://ror.org/02x5wxx17', 'no_lang_code', 1, 'https://ror.org/02x5wxx17 Faculty of 1000 (United States)'),
(17402, 'https://ror.org/02x6t2s89', 'no_lang_code', 1, 'https://ror.org/02x6t2s89 Kopoos Consulting (France)'),
(17403, 'https://ror.org/02x8cxb12', 'no_lang_code', 1, 'https://ror.org/02x8cxb12 Clearfield (United States)'),
(17404, 'https://ror.org/02xa7j758', 'en', 1, 'https://ror.org/02xa7j758 Queensland Children’s Medical Research Institute'),
(17405, 'https://ror.org/02xaxz408', 'en', 1, 'https://ror.org/02xaxz408 Southern State Community College'),
(17406, 'https://ror.org/02xfmex92', 'en', 1, 'https://ror.org/02xfmex92 Army and Navy Club'),
(17407, 'https://ror.org/02xhmts30', 'no_lang_code', 1, 'https://ror.org/02xhmts30 Aerotek (Germany)'),
(17408, 'https://ror.org/02xkzav80', 'en', 1, 'https://ror.org/02xkzav80 Housing & Care 21'),
(17409, 'https://ror.org/02xm60v03', 'en', 1, 'https://ror.org/02xm60v03 Wilmette Public Library'),
(17410, 'https://ror.org/02xm6e195', 'no_lang_code', 1, 'https://ror.org/02xm6e195 Bitgear (Serbia)'),
(17411, 'https://ror.org/02xn8bh65', 'en', 1, 'https://ror.org/02xn8bh65 University of Divinity'),
(17412, 'https://ror.org/02xnhzs58', 'en', 1, 'https://ror.org/02xnhzs58 Solving Kids'' Cancer'),
(17413, 'https://ror.org/02xptb358', 'no_lang_code', 1, 'https://ror.org/02xptb358 Lonix (Finland)'),
(17414, 'https://ror.org/02xvm3d98', 'no_lang_code', 1, 'https://ror.org/02xvm3d98 StemMed (United States)'),
(17415, 'https://ror.org/02xwe8780', 'no_lang_code', 1, 'https://ror.org/02xwe8780 PREtest Consult (United States)'),
(17416, 'https://ror.org/02xy96n81', 'no_lang_code', 1, 'https://ror.org/02xy96n81 Ericsson (Greece)'),
(17417, 'https://ror.org/02xz7d723', 'en', 1, 'https://ror.org/02xz7d723 Harry Perkins Institute of Medical Research'),
(17418, 'https://ror.org/02y1mqg45', 'no_lang_code', 1, 'https://ror.org/02y1mqg45 Irish Hydrodata (Ireland)'),
(17419, 'https://ror.org/02y220324', 'en', 1, 'https://ror.org/02y220324 Setauket Fire Department'),
(17420, 'https://ror.org/02y2yt761', 'no_lang_code', 1, 'https://ror.org/02y2yt761 Container Speditions und Transportgesellschaft (Germany)'),
(17421, 'https://ror.org/02y3dtg29', 'en', 1, 'https://ror.org/02y3dtg29 Deutsches Rotes Kreuz German Red Cross'),
(17422, 'https://ror.org/02y4rar07', 'en', 1, 'https://ror.org/02y4rar07 The Center for Pranic Healing'),
(17423, 'https://ror.org/02y7e7h61', 'no_lang_code', 1, 'https://ror.org/02y7e7h61 Bodymetrics (United Kingdom)'),
(17424, 'https://ror.org/02y899687', 'no_lang_code', 1, 'https://ror.org/02y899687 Cohera Medical (United States)'),
(17425, 'https://ror.org/02y8azp93', 'ca', 1, 'https://ror.org/02y8azp93 Foment del Treball Nacional'),
(17426, 'https://ror.org/02yakpb28', 'no_lang_code', 1, 'https://ror.org/02yakpb28 Hidromod (Portugal)'),
(17427, 'https://ror.org/02ydk7b78', 'en', 1, 'https://ror.org/02ydk7b78 Heartland Family Service'),
(17428, 'https://ror.org/02ydpt711', 'en', 1, 'https://ror.org/02ydpt711 John D Bray MD'),
(17429, 'https://ror.org/02ydpvv49', 'en', 1, 'https://ror.org/02ydpvv49 Flint and Saginaw Odyssey House'),
(17430, 'https://ror.org/02yfbej13', 'en', 1, 'https://ror.org/02yfbej13 Elmhurst Public Library'),
(17431, 'https://ror.org/02ygdtt22', 'en', 1, 'https://ror.org/02ygdtt22 HSBC Holdings'),
(17432, 'https://ror.org/02ygxgy27', 'en', 1, 'https://ror.org/02ygxgy27 Hawaii State Department of Education'),
(17433, 'https://ror.org/02yh73909', 'no_lang_code', 1, 'https://ror.org/02yh73909 ImaSight (Canada)'),
(17434, 'https://ror.org/02yn5by09', 'es', 1, 'https://ror.org/02yn5by09 Catholic University of Cuyo Universidad Católica de Cuyo'),
(17435, 'https://ror.org/02ype5435', 'en', 1, 'https://ror.org/02ype5435 Louisiana Department of Education'),
(17436, 'https://ror.org/02yr5fm11', 'fr', 1, 'https://ror.org/02yr5fm11 Institut de Conseil et d''Ɖtudes en DĆ©veloppement Durable Institute for Consultancy and Studies in Sustainable Development'),
(17437, 'https://ror.org/02ys6ht81', 'no_lang_code', 1, 'https://ror.org/02ys6ht81 Livos (Germany)'),
(17438, 'https://ror.org/02ytbnx96', 'en', 1, 'https://ror.org/02ytbnx96 Wells Institute for Health Awareness'),
(17439, 'https://ror.org/02yvffa38', 'en', 1, 'https://ror.org/02yvffa38 Anchorage School District'),
(17440, 'https://ror.org/02yvt1b82', 'no_lang_code', 1, 'https://ror.org/02yvt1b82 Chart Industries (United Kingdom)'),
(17441, 'https://ror.org/02yxgbz14', 'no_lang_code', 1, 'https://ror.org/02yxgbz14 Perscitus Biosciences (United States)'),
(17442, 'https://ror.org/02yyaze44', 'no_lang_code', 1, 'https://ror.org/02yyaze44 Perle Bioscience (United States)'),
(17443, 'https://ror.org/02yyb7m34', 'no_lang_code', 1, 'https://ror.org/02yyb7m34 Embedded Access (Canada)'),
(17444, 'https://ror.org/02yzsw326', 'en', 1, 'https://ror.org/02yzsw326 Institute for Applied Environmental Economics'),
(17445, 'https://ror.org/02z06eb16', 'en', 1, 'https://ror.org/02z06eb16 Centre for Sustainable Energy'),
(17446, 'https://ror.org/02z2hxe94', 'it', 1, 'https://ror.org/02z2hxe94 Centre of Theoretical and Applied Ecology Centro di Ecologia Teorica ed Applicata'),
(17447, 'https://ror.org/02z38kp20', 'en', 1, 'https://ror.org/02z38kp20 DeVry University'),
(17448, 'https://ror.org/02z3rcy16', 'no_lang_code', 1, 'https://ror.org/02z3rcy16 Translational Therapeutics (United States)'),
(17449, 'https://ror.org/02z3xdq04', 'pt', 1, 'https://ror.org/02z3xdq04 Instituto de CiĆŖncia e Tecnologia de PolĆ­meros Polymer Science and Technology Institute'),
(17450, 'https://ror.org/02z468g17', 'en', 1, 'https://ror.org/02z468g17 Internet Archive'),
(17451, 'https://ror.org/02z57jm04', 'en', 1, 'https://ror.org/02z57jm04 South Texas Institutes of Health'),
(17452, 'https://ror.org/02z89wd67', 'fr', 1, 'https://ror.org/02z89wd67 ConfƩdƩration GƩnƩrale du Travail General Confederation of Labour'),
(17453, 'https://ror.org/02zc4jh04', 'no_lang_code', 1, 'https://ror.org/02zc4jh04 AFT Automation (Germany)'),
(17454, 'https://ror.org/02zk9yr48', 'no_lang_code', 1, 'https://ror.org/02zk9yr48 Leotech Rapid Prototyping und Werkzeugbau (Germany)'),
(17455, 'https://ror.org/02zm9fh11', 'en', 1, 'https://ror.org/02zm9fh11 Lietuvos dailės muziejus Lithuanian Art Museum'),
(17456, 'https://ror.org/02zpzxx25', 'en', 1, 'https://ror.org/02zpzxx25 Hunterdon Prevention Resources'),
(17457, 'https://ror.org/02zqy3981', 'en', 1, 'https://ror.org/02zqy3981 Department for Digital, Culture, Media & Sport Yr Adran Ddigidol, Diwylliant, Cyfryngau a Chwaraeon'),
(17458, 'https://ror.org/02zrqj244', 'no_lang_code', 1, 'https://ror.org/02zrqj244 Hidrowatt (Spain)'),
(17459, 'https://ror.org/02zsfmb11', 'en', 1, 'https://ror.org/02zsfmb11 Ray of Hope Cancer Foundation'),
(17460, 'https://ror.org/02zt74990', 'no_lang_code', 1, 'https://ror.org/02zt74990 Joel Popkin and Company'),
(17461, 'https://ror.org/02ztc9f43', 'no_lang_code', 1, 'https://ror.org/02ztc9f43 Rare Disease Therapeutics (United States)'),
(17462, 'https://ror.org/02zvx4k42', 'no_lang_code', 1, 'https://ror.org/02zvx4k42 Eurospider Information Technology (Switzerland)'),
(17463, 'https://ror.org/02zwppv60', 'no_lang_code', 1, 'https://ror.org/02zwppv60 Ateknea Solutions (Malta)'),
(17464, 'https://ror.org/02zz4qz23', 'no_lang_code', 1, 'https://ror.org/02zz4qz23 DVST (United Kingdom)'),
(17465, 'https://ror.org/0300em778', 'en', 1, 'https://ror.org/0300em778 iNets South West'),
(17466, 'https://ror.org/030148f67', 'en', 1, 'https://ror.org/030148f67 Tuscarawas County Public Library'),
(17467, 'https://ror.org/0303sda91', 'en', 1, 'https://ror.org/0303sda91 Kishwaukee College'),
(17468, 'https://ror.org/0306p6665', 'en', 1, 'https://ror.org/0306p6665 Play Group Theatre'),
(17469, 'https://ror.org/03078rq26', 'en', 1, 'https://ror.org/03078rq26 Athens Medical Center Ī™Ī±Ļ„ĻĪ¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(17470, 'https://ror.org/03084a880', 'no_lang_code', 1, 'https://ror.org/03084a880 Latham & Watkins (United States)'),
(17471, 'https://ror.org/0308zvy22', 'en', 1, 'https://ror.org/0308zvy22 USTA Foundation'),
(17472, 'https://ror.org/030b24d60', 'no_lang_code', 1, 'https://ror.org/030b24d60 Erbicol (Switzerland)'),
(17473, 'https://ror.org/030bsqk21', 'no_lang_code', 1, 'https://ror.org/030bsqk21 Plant Health Care (United States)'),
(17474, 'https://ror.org/030c07a62', 'no_lang_code', 1, 'https://ror.org/030c07a62 Bombardier (Portugal)'),
(17475, 'https://ror.org/030fq6p50', 'en', 1, 'https://ror.org/030fq6p50 PreventionFirst'),
(17476, 'https://ror.org/030prv062', 'en', 1, 'https://ror.org/030prv062 Institute of Museum and Library Services'),
(17477, 'https://ror.org/030qje202', 'en', 1, 'https://ror.org/030qje202 Peace Winds America'),
(17478, 'https://ror.org/030r0t953', 'es', 1, 'https://ror.org/030r0t953 Instituto Tecnológico de Materiales de Asturias'),
(17479, 'https://ror.org/030rzq778', 'en', 1, 'https://ror.org/030rzq778 Fresh Pond Research Institute'),
(17480, 'https://ror.org/030tp6t18', 'no_lang_code', 1, 'https://ror.org/030tp6t18 Discovery Air (Canada)'),
(17481, 'https://ror.org/030v6tx56', 'en', 1, 'https://ror.org/030v6tx56 THETA Uganda'),
(17482, 'https://ror.org/030vvqf88', 'en', 1, 'https://ror.org/030vvqf88 Children’s Village'),
(17483, 'https://ror.org/030wwwa97', 'en', 1, 'https://ror.org/030wwwa97 Sail To Prevail'),
(17484, 'https://ror.org/030x0x547', 'no_lang_code', 1, 'https://ror.org/030x0x547 Sea Lane Biotechnologies (United States)'),
(17485, 'https://ror.org/030z4b668', 'en', 1, 'https://ror.org/030z4b668 Assyrian Universal Alliance Foundation'),
(17486, 'https://ror.org/030zsh764', 'en', 1, 'https://ror.org/030zsh764 Worcestershire Acute Hospitals NHS Trust'),
(17487, 'https://ror.org/031213047', 'no_lang_code', 1, 'https://ror.org/031213047 Hebridean Seaweed (United Kingdom)'),
(17488, 'https://ror.org/031241j87', 'no_lang_code', 1, 'https://ror.org/031241j87 Artificial Cell Technologies (United States)'),
(17489, 'https://ror.org/0312ax070', 'no_lang_code', 1, 'https://ror.org/0312ax070 LifeWatch (Israel)'),
(17490, 'https://ror.org/03143bq61', 'no_lang_code', 1, 'https://ror.org/03143bq61 ANDalyze (United States)'),
(17491, 'https://ror.org/0314qpx15', 'en', 1, 'https://ror.org/0314qpx15 Share and Care Foundation'),
(17492, 'https://ror.org/0315xr544', 'no_lang_code', 1, 'https://ror.org/0315xr544 ReveraGen BioPharma (United States)'),
(17493, 'https://ror.org/0317phh79', 'no_lang_code', 1, 'https://ror.org/0317phh79 MaxCyte (United States)'),
(17494, 'https://ror.org/03185ph79', 'no_lang_code', 1, 'https://ror.org/03185ph79 Halliday James (United Kingdom)'),
(17495, 'https://ror.org/03190vh75', 'no_lang_code', 1, 'https://ror.org/03190vh75 Carmell Therapeutics (United States)'),
(17496, 'https://ror.org/03199wg76', 'en', 1, 'https://ror.org/03199wg76 PearlPoint Cancer Support'),
(17497, 'https://ror.org/0319d2e87', 'en', 1, 'https://ror.org/0319d2e87 St Helens Hospital'),
(17498, 'https://ror.org/031bxfd44', 'en', 1, 'https://ror.org/031bxfd44 Walking Miracles Family Foundation'),
(17499, 'https://ror.org/031cs6d58', 'no_lang_code', 1, 'https://ror.org/031cs6d58 Toshiba (Switzerland)'),
(17500, 'https://ror.org/031dsww89', 'no_lang_code', 1, 'https://ror.org/031dsww89 Becton Dickinson (Canada)'),
(17501, 'https://ror.org/031e8jz65', 'en', 1, 'https://ror.org/031e8jz65 The Family Center'),
(17502, 'https://ror.org/031emjj03', 'en', 1, 'https://ror.org/031emjj03 Indian Hills Community College'),
(17503, 'https://ror.org/031evws22', 'no_lang_code', 1, 'https://ror.org/031evws22 Galaxy Biotech (United States)'),
(17504, 'https://ror.org/031fm6b66', 'no_lang_code', 1, 'https://ror.org/031fm6b66 GlycoMar (United Kingdom)'),
(17505, 'https://ror.org/031h71w90', 'en', 1, 'https://ror.org/031h71w90 Bavarian State Library Bayerische Staatsbibliothek'),
(17506, 'https://ror.org/031h74a50', 'en', 1, 'https://ror.org/031h74a50 Iowa Federation of Families for Children''s Mental Health'),
(17507, 'https://ror.org/031hbfw38', 'no_lang_code', 1, 'https://ror.org/031hbfw38 Deltagen (United States)'),
(17508, 'https://ror.org/031khrq71', 'no_lang_code', 1, 'https://ror.org/031khrq71 MARS Laser (Germany)'),
(17509, 'https://ror.org/031m09z27', 'en', 1, 'https://ror.org/031m09z27 Riverside Unified School District'),
(17510, 'https://ror.org/031me7t03', 'en', 1, 'https://ror.org/031me7t03 Cardiff Council'),
(17511, 'https://ror.org/031mjy523', 'no_lang_code', 1, 'https://ror.org/031mjy523 Europa Media (Hungary)'),
(17512, 'https://ror.org/031mpgh04', 'no_lang_code', 1, 'https://ror.org/031mpgh04 Linkra (Italy)'),
(17513, 'https://ror.org/031mpj251', 'en', 1, 'https://ror.org/031mpj251 Mid-State Technical College'),
(17514, 'https://ror.org/031nang70', 'pl', 1, 'https://ror.org/031nang70 Innowacja Polska'),
(17515, 'https://ror.org/031nh9x49', 'en', 1, 'https://ror.org/031nh9x49 Animal Behavior Society'),
(17516, 'https://ror.org/031npn793', 'en', 1, 'https://ror.org/031npn793 ComedyCures Foundation'),
(17517, 'https://ror.org/031s7jq69', 'de', 1, 'https://ror.org/031s7jq69 Leonardo Büro Sachsen Anhalt'),
(17518, 'https://ror.org/031sed648', 'no_lang_code', 1, 'https://ror.org/031sed648 Stavros'),
(17519, 'https://ror.org/031ts9d41', 'no_lang_code', 1, 'https://ror.org/031ts9d41 Comité de Concertation et de Coordination de l''Apprentissage du Bâtiment et des Travaux Publics'),
(17520, 'https://ror.org/031twcj28', 'en', 1, 'https://ror.org/031twcj28 Providence Pediatric Pulmonology & Cystic Fibrosis'),
(17521, 'https://ror.org/031x2yz16', 'no_lang_code', 1, 'https://ror.org/031x2yz16 Arri (Germany)'),
(17522, 'https://ror.org/031x5zp43', 'en', 1, 'https://ror.org/031x5zp43 European Centre for Knowledge and Technology Transfer'),
(17523, 'https://ror.org/031xnh898', 'no_lang_code', 1, 'https://ror.org/031xnh898 Glycosyn (United States)'),
(17524, 'https://ror.org/031yp1y05', 'no_lang_code', 1, 'https://ror.org/031yp1y05 Loufakis (Greece) Ī›ĪŸĪ„Ī¦Ī‘ĪšĪ—Ī£ Ī§Ī—ĪœĪ™ĪšĪ‘'),
(17525, 'https://ror.org/031ytbe94', 'no_lang_code', 1, 'https://ror.org/031ytbe94 Mahlo (Germany)'),
(17526, 'https://ror.org/0320bge18', 'en', 1, 'https://ror.org/0320bge18 Department for Education'),
(17527, 'https://ror.org/0320hew69', 'no_lang_code', 1, 'https://ror.org/0320hew69 Ferroday (United Kingdom)'),
(17528, 'https://ror.org/0321gjx92', 'en', 1, 'https://ror.org/0321gjx92 The Salvation Army Zambia'),
(17529, 'https://ror.org/032303h97', 'no_lang_code', 1, 'https://ror.org/032303h97 Geographic Information Management (Belgium)'),
(17530, 'https://ror.org/0325p1j31', 'no_lang_code', 1, 'https://ror.org/0325p1j31 Coherent (Germany)'),
(17531, 'https://ror.org/032685859', 'en', 1, 'https://ror.org/032685859 Vitiligo and Pigmentation Institute of Southern California'),
(17532, 'https://ror.org/0326f1w25', 'en', 1, 'https://ror.org/0326f1w25 Douglas County Health Department'),
(17533, 'https://ror.org/03277sm65', 'en', 1, 'https://ror.org/03277sm65 Society of Surgical Oncology'),
(17534, 'https://ror.org/0327edc10', 'no_lang_code', 1, 'https://ror.org/0327edc10 Laser Optical Engineering (United Kingdom)'),
(17535, 'https://ror.org/0327mxq88', 'it', 1, 'https://ror.org/0327mxq88 Consorzio Italiano per la Ricerca in Medicina'),
(17536, 'https://ror.org/0327ybn08', 'en', 1, 'https://ror.org/0327ybn08 Summit School'),
(17537, 'https://ror.org/032891704', 'no_lang_code', 1, 'https://ror.org/032891704 Clarifica (Canada)'),
(17538, 'https://ror.org/0328hyd77', 'no_lang_code', 1, 'https://ror.org/0328hyd77 Invistics (United States)'),
(17539, 'https://ror.org/0329n2y83', 'no_lang_code', 1, 'https://ror.org/0329n2y83 Max Fordham (United Kingdom)'),
(17540, 'https://ror.org/032av0b93', 'no_lang_code', 1, 'https://ror.org/032av0b93 Expert System (Italy)'),
(17541, 'https://ror.org/032by2j30', 'it', 1, 'https://ror.org/032by2j30 Fondazione Filarete'),
(17542, 'https://ror.org/032dgyz67', 'no_lang_code', 1, 'https://ror.org/032dgyz67 IncreaseTime (Portugal)'),
(17543, 'https://ror.org/032dnw027', 'no_lang_code', 1, 'https://ror.org/032dnw027 HiETA Technologies (United Kingdom)'),
(17544, 'https://ror.org/032g1nc88', 'no_lang_code', 1, 'https://ror.org/032g1nc88 Albemarle (Belgium)'),
(17545, 'https://ror.org/032gaeg66', 'no_lang_code', 1, 'https://ror.org/032gaeg66 Innoterm (Hungary)'),
(17546, 'https://ror.org/032h1gp10', 'no_lang_code', 1, 'https://ror.org/032h1gp10 Fernando DomĆ­nguez (Spain)'),
(17547, 'https://ror.org/032pt1y71', 'no_lang_code', 1, 'https://ror.org/032pt1y71 Britwind (United Kingdom)'),
(17548, 'https://ror.org/032qg9c61', 'en', 1, 'https://ror.org/032qg9c61 European Community Shipowners'' Associations'),
(17549, 'https://ror.org/032tkjf28', 'no_lang_code', 1, 'https://ror.org/032tkjf28 WPP (United States)'),
(17550, 'https://ror.org/032tx7v10', 'en', 1, 'https://ror.org/032tx7v10 College of Saint Elizabeth'),
(17551, 'https://ror.org/032vk7j62', 'no_lang_code', 1, 'https://ror.org/032vk7j62 Information & Image Management Systems (Spain)'),
(17552, 'https://ror.org/032wq4586', 'it', 1, 'https://ror.org/032wq4586 Associazione Regionale Allevatori della Lombardia'),
(17553, 'https://ror.org/032wrwd21', 'no_lang_code', 1, 'https://ror.org/032wrwd21 Takara (France)'),
(17554, 'https://ror.org/03310m039', 'no_lang_code', 1, 'https://ror.org/03310m039 Brinker Technology (United Kingdom)'),
(17555, 'https://ror.org/0331p6r75', 'no_lang_code', 1, 'https://ror.org/0331p6r75 Emcien (United States)'),
(17556, 'https://ror.org/0334h0b13', 'no_lang_code', 1, 'https://ror.org/0334h0b13 Columbus NanoWorks (United States)'),
(17557, 'https://ror.org/0334ht072', 'no_lang_code', 1, 'https://ror.org/0334ht072 EyeRx Research (United States)'),
(17558, 'https://ror.org/033523d69', 'en', 1, 'https://ror.org/033523d69 Association for Research in Vision and Ophthalmology'),
(17559, 'https://ror.org/0337f4c15', 'en', 1, 'https://ror.org/0337f4c15 WCA Hospital'),
(17560, 'https://ror.org/0338fxs55', 'en', 1, 'https://ror.org/0338fxs55 Skin Cancer Foundation'),
(17561, 'https://ror.org/033cp0g08', 'no_lang_code', 1, 'https://ror.org/033cp0g08 Fidelity Systems (United States)'),
(17562, 'https://ror.org/033env547', 'en', 1, 'https://ror.org/033env547 Laskeek Bay Conservation Society'),
(17563, 'https://ror.org/033epb951', 'no_lang_code', 1, 'https://ror.org/033epb951 Powerway (United States)'),
(17564, 'https://ror.org/033gqy043', 'no_lang_code', 1, 'https://ror.org/033gqy043 Fiedler Optoelektronik (Germany) Fiedler optoelectronics'),
(17565, 'https://ror.org/033hv7h54', 'no_lang_code', 1, 'https://ror.org/033hv7h54 Cambridge Consultants (United Kingdom)'),
(17566, 'https://ror.org/033hy7589', 'en', 1, 'https://ror.org/033hy7589 Cook County Law Library'),
(17567, 'https://ror.org/033j79j49', 'en', 1, 'https://ror.org/033j79j49 Family & Children’s Services'),
(17568, 'https://ror.org/033ns4d21', 'en', 1, 'https://ror.org/033ns4d21 Stairstep Foundation'),
(17569, 'https://ror.org/033nt4y02', 'no_lang_code', 1, 'https://ror.org/033nt4y02 Advance Concepts for Interactive Technology (Germany)'),
(17570, 'https://ror.org/033pbx564', 'no_lang_code', 1, 'https://ror.org/033pbx564 3S Photonics (France)'),
(17571, 'https://ror.org/033pjdm33', 'no_lang_code', 1, 'https://ror.org/033pjdm33 Inael (Spain)'),
(17572, 'https://ror.org/033px5146', 'en', 1, 'https://ror.org/033px5146 Institute of Linguistics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ·Ń‹ŠŗŠ¾Š·Š½Š°Š½ŠøŃ Российской акаГемии наук'),
(17573, 'https://ror.org/033pxr844', 'en', 1, 'https://ror.org/033pxr844 New York State PTA'),
(17574, 'https://ror.org/033rk2n62', 'no_lang_code', 1, 'https://ror.org/033rk2n62 Etiometry (United States)'),
(17575, 'https://ror.org/033rkxx65', 'en', 1, 'https://ror.org/033rkxx65 Vermont Studio Center'),
(17576, 'https://ror.org/033spbm30', 'en', 1, 'https://ror.org/033spbm30 St. Joseph’s Candler Hospital'),
(17577, 'https://ror.org/033tgbx59', 'en', 1, 'https://ror.org/033tgbx59 The Centers'),
(17578, 'https://ror.org/033tw3v53', 'no_lang_code', 1, 'https://ror.org/033tw3v53 Skulpt (United States)'),
(17579, 'https://ror.org/033whn587', 'en', 1, 'https://ror.org/033whn587 Lincoln Library'),
(17580, 'https://ror.org/033yatp22', 'en', 1, 'https://ror.org/033yatp22 Ministerstvo VnĆŗtra Slovenskej Republiky Ministry of Interior'),
(17581, 'https://ror.org/033z0vf69', 'en', 1, 'https://ror.org/033z0vf69 Roanoke River Valley Education Consortium'),
(17582, 'https://ror.org/033zbpq04', 'no_lang_code', 1, 'https://ror.org/033zbpq04 Industrial Systems and Control (United Kingdom)'),
(17583, 'https://ror.org/0340nty70', 'en', 1, 'https://ror.org/0340nty70 Winston-Salem/Forsyth County Schools'),
(17584, 'https://ror.org/0343dap81', 'en', 1, 'https://ror.org/0343dap81 IEEE Information Theory Society'),
(17585, 'https://ror.org/034546p91', 'en', 1, 'https://ror.org/034546p91 Rochester City School District'),
(17586, 'https://ror.org/03459qp74', 'no_lang_code', 1, 'https://ror.org/03459qp74 TRUMPF (Germany)'),
(17587, 'https://ror.org/0345va412', 'en', 1, 'https://ror.org/0345va412 Strides To Success'),
(17588, 'https://ror.org/034ahpr11', 'no_lang_code', 1, 'https://ror.org/034ahpr11 IBM (India)'),
(17589, 'https://ror.org/034b4j008', 'no_lang_code', 1, 'https://ror.org/034b4j008 Centice (United States)'),
(17590, 'https://ror.org/034c9fe80', 'no_lang_code', 1, 'https://ror.org/034c9fe80 Rofin (Switzerland)'),
(17591, 'https://ror.org/034ca3821', 'en', 1, 'https://ror.org/034ca3821 London Regional Children''s Museum'),
(17592, 'https://ror.org/034czvt81', 'en', 1, 'https://ror.org/034czvt81 Rockefeller Philanthropy Advisors'),
(17593, 'https://ror.org/034d0qf45', 'no_lang_code', 1, 'https://ror.org/034d0qf45 Assystem (France)'),
(17594, 'https://ror.org/034d3kf40', 'no_lang_code', 1, 'https://ror.org/034d3kf40 Telekom Srbija (Serbia)'),
(17595, 'https://ror.org/034deqj96', 'en', 1, 'https://ror.org/034deqj96 Arab Center for the Studies of Arid Zones and Dry Lands'),
(17596, 'https://ror.org/034dp0092', 'es', 1, 'https://ror.org/034dp0092 Centro Tecnológico Nacional de la Conserva y Alimentación'),
(17597, 'https://ror.org/034fpp998', 'no_lang_code', 1, 'https://ror.org/034fpp998 International Medias Data Services (Canada)'),
(17598, 'https://ror.org/034j4s684', 'en', 1, 'https://ror.org/034j4s684 European-Mediterranean Seismological Centre'),
(17599, 'https://ror.org/034jtsg79', 'no_lang_code', 1, 'https://ror.org/034jtsg79 Evidentia Publishing (Netherlands)'),
(17600, 'https://ror.org/034k91b65', 'no_lang_code', 1, 'https://ror.org/034k91b65 CloudSigma (Switzerland)'),
(17601, 'https://ror.org/034kfx415', 'en', 1, 'https://ror.org/034kfx415 Sky Tavern Junior Ski Program'),
(17602, 'https://ror.org/034kkc914', 'no_lang_code', 1, 'https://ror.org/034kkc914 Didael KTS (Italy)'),
(17603, 'https://ror.org/034qqhd60', 'no_lang_code', 1, 'https://ror.org/034qqhd60 Advanced Network and Services (United States)'),
(17604, 'https://ror.org/034szbq97', 'no_lang_code', 1, 'https://ror.org/034szbq97 Soltigua (Italy)'),
(17605, 'https://ror.org/034tcbt19', 'no_lang_code', 1, 'https://ror.org/034tcbt19 Catalyse'),
(17606, 'https://ror.org/034vn4e02', 'no_lang_code', 1, 'https://ror.org/034vn4e02 Volkswagen Group (United Kingdom)'),
(17607, 'https://ror.org/034vxep50', 'no_lang_code', 1, 'https://ror.org/034vxep50 Idio (United Kingdom)'),
(17608, 'https://ror.org/034vz8e35', 'en', 1, 'https://ror.org/034vz8e35 Justice & Public Safety Cabinet'),
(17609, 'https://ror.org/034wxzt12', 'no_lang_code', 1, 'https://ror.org/034wxzt12 Highland Biosciences (United Kingdom)'),
(17610, 'https://ror.org/034wzpw61', 'no_lang_code', 1, 'https://ror.org/034wzpw61 Hodos Media (United Kingdom)'),
(17611, 'https://ror.org/034x1ve75', 'no_lang_code', 1, 'https://ror.org/034x1ve75 McGraw-Hill Education (United States)'),
(17612, 'https://ror.org/0351agv44', 'en', 1, 'https://ror.org/0351agv44 National Labor Relations Board'),
(17613, 'https://ror.org/035280t21', 'en', 1, 'https://ror.org/035280t21 Greater Western Library Alliance'),
(17614, 'https://ror.org/03534h624', 'en', 1, 'https://ror.org/03534h624 JustCommunity'),
(17615, 'https://ror.org/0353cdc64', 'en', 1, 'https://ror.org/0353cdc64 The QuadW Foundation'),
(17616, 'https://ror.org/0354gjj39', 'en', 1, 'https://ror.org/0354gjj39 St. Christopher Iba Mar Diop College of Medicine'),
(17617, 'https://ror.org/0357b6665', 'fr', 1, 'https://ror.org/0357b6665 Centre d''Etudes des Transports pour la MƩditerranƩe Occidentale'),
(17618, 'https://ror.org/0358hkb18', 'en', 1, 'https://ror.org/0358hkb18 Cross-Border Research Association'),
(17619, 'https://ror.org/0359nwj91', 'no_lang_code', 1, 'https://ror.org/0359nwj91 Abamotor Energia (Spain)'),
(17620, 'https://ror.org/035bjd142', 'no_lang_code', 1, 'https://ror.org/035bjd142 Anheuser-Busch InBev (United States)'),
(17621, 'https://ror.org/035dh8y26', 'no_lang_code', 1, 'https://ror.org/035dh8y26 Developmental Technologies (United States)'),
(17622, 'https://ror.org/035dzyj47', 'de', 1, 'https://ror.org/035dzyj47 Emschergenossenschaft'),
(17623, 'https://ror.org/035eg8817', 'no_lang_code', 1, 'https://ror.org/035eg8817 Qiagen (France)'),
(17624, 'https://ror.org/035fm0b85', 'en', 1, 'https://ror.org/035fm0b85 St Vincent’s Private Hospital Brisbane'),
(17625, 'https://ror.org/035hs0289', 'en', 1, 'https://ror.org/035hs0289 e-Forum'),
(17626, 'https://ror.org/035k7ej72', 'no_lang_code', 1, 'https://ror.org/035k7ej72 Kompetente Werthaltige Ingenieurleistung (Austria)'),
(17627, 'https://ror.org/035kfrg53', 'no_lang_code', 1, 'https://ror.org/035kfrg53 Argela (Turkey)'),
(17628, 'https://ror.org/035r27d93', 'es', 1, 'https://ror.org/035r27d93 Centro Dr. Belluscio'),
(17629, 'https://ror.org/035rr6c23', 'en', 1, 'https://ror.org/035rr6c23 MacGillivray Freeman Films'),
(17630, 'https://ror.org/035v7sk27', 'no_lang_code', 1, 'https://ror.org/035v7sk27 Pharminox (United Kingdom)'),
(17631, 'https://ror.org/035vdar92', 'en', 1, 'https://ror.org/035vdar92 Hands on Science Outreach'),
(17632, 'https://ror.org/035x4a178', 'no_lang_code', 1, 'https://ror.org/035x4a178 Fluential (United States)'),
(17633, 'https://ror.org/036178197', 'no_lang_code', 1, 'https://ror.org/036178197 eBOS Technologies (Cyprus)'),
(17634, 'https://ror.org/0363g3q34', 'no_lang_code', 1, 'https://ror.org/0363g3q34 Innovative Design Labs (United States)'),
(17635, 'https://ror.org/03645fg60', 'no_lang_code', 1, 'https://ror.org/03645fg60 Ceres Power (United Kingdom)'),
(17636, 'https://ror.org/0365sd121', 'en', 1, 'https://ror.org/0365sd121 UPMC McKeesport'),
(17637, 'https://ror.org/03679qg67', 'en', 1, 'https://ror.org/03679qg67 Johnson County Public Library'),
(17638, 'https://ror.org/03682w532', 'no_lang_code', 1, 'https://ror.org/03682w532 EUnited (Belgium)'),
(17639, 'https://ror.org/03693et41', 'en', 1, 'https://ror.org/03693et41 Sheridan Technical College'),
(17640, 'https://ror.org/03694tx76', 'en', 1, 'https://ror.org/03694tx76 South Elgin FUNdation'),
(17641, 'https://ror.org/0369g1y44', 'en', 1, 'https://ror.org/0369g1y44 Ministry of Agriculture Forestry and Food'),
(17642, 'https://ror.org/0369thf37', 'en', 1, 'https://ror.org/0369thf37 Illinois Eastern Community Colleges'),
(17643, 'https://ror.org/036atcw47', 'en', 1, 'https://ror.org/036atcw47 Alfred Mann Foundation'),
(17644, 'https://ror.org/036ay9k05', 'en', 1, 'https://ror.org/036ay9k05 Fresno City College'),
(17645, 'https://ror.org/036dfng96', 'en', 1, 'https://ror.org/036dfng96 Beamish Museum'),
(17646, 'https://ror.org/036f8hp55', 'no_lang_code', 1, 'https://ror.org/036f8hp55 3D Industries (United Kingdom)'),
(17647, 'https://ror.org/036grjg58', 'en', 1, 'https://ror.org/036grjg58 Ministry of the Interior SisƤministeriƶ'),
(17648, 'https://ror.org/036gzc033', 'no_lang_code', 1, 'https://ror.org/036gzc033 DM-STAT (United States)'),
(17649, 'https://ror.org/036hyk644', 'en', 1, 'https://ror.org/036hyk644 Nazarene Theological Seminary'),
(17650, 'https://ror.org/036j3t423', 'no_lang_code', 1, 'https://ror.org/036j3t423 Piraeus Bank Τράπεζα Ī ĪµĪ¹ĻĪ±Ī¹ĻŽĻ‚'),
(17651, 'https://ror.org/036j9qe85', 'no_lang_code', 1, 'https://ror.org/036j9qe85 Agricen (United States)'),
(17652, 'https://ror.org/036n5h252', 'no_lang_code', 1, 'https://ror.org/036n5h252 Trana Discovery (United States)'),
(17653, 'https://ror.org/036n9m383', 'no_lang_code', 1, 'https://ror.org/036n9m383 AB Agri'),
(17654, 'https://ror.org/036pnqr73', 'en', 1, 'https://ror.org/036pnqr73 Sinnissippi Centers'),
(17655, 'https://ror.org/036w35s91', 'no_lang_code', 1, 'https://ror.org/036w35s91 Kelliher & Associates (United States)'),
(17656, 'https://ror.org/036x58c57', 'no_lang_code', 1, 'https://ror.org/036x58c57 PharmatrophiX (United States)'),
(17657, 'https://ror.org/0370m6q82', 'no_lang_code', 1, 'https://ror.org/0370m6q82 Chipworks (Canada)'),
(17658, 'https://ror.org/037263y09', 'en', 1, 'https://ror.org/037263y09 Canadian Lung Association'),
(17659, 'https://ror.org/03731r596', 'no_lang_code', 1, 'https://ror.org/03731r596 Legendary Games (United Kingdom)'),
(17660, 'https://ror.org/0373f6s78', 'no_lang_code', 1, 'https://ror.org/0373f6s78 Innovative Technologies Center (Greece) ĪšĪ­Ī½Ļ„ĻĪæ ĪŗĪ±Ī¹Ī½ĪæĻ„ĻŒĪ¼Ļ‰Ī½ Ļ„ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĻŽĪ½'),
(17661, 'https://ror.org/0374c0d66', 'en', 1, 'https://ror.org/0374c0d66 National Louis University'),
(17662, 'https://ror.org/037588233', 'en', 1, 'https://ror.org/037588233 Association for the Promotion of Information on Science and Technology for All Countries'),
(17663, 'https://ror.org/0375z3382', 'en', 1, 'https://ror.org/0375z3382 Sundance Research Institute'),
(17664, 'https://ror.org/0376pw173', 'no_lang_code', 1, 'https://ror.org/0376pw173 Alteryx (United Kingdom)'),
(17665, 'https://ror.org/0376wcg10', 'en', 1, 'https://ror.org/0376wcg10 National Counterterrorism Center'),
(17666, 'https://ror.org/0377kyv52', 'en', 1, 'https://ror.org/0377kyv52 United Lincolnshire Hospitals NHS Trust'),
(17667, 'https://ror.org/0377xq834', 'en', 1, 'https://ror.org/0377xq834 Association of Black Women Physicians'),
(17668, 'https://ror.org/037807332', 'no_lang_code', 1, 'https://ror.org/037807332 Best High Pressure & Drilling Technology (Austria)'),
(17669, 'https://ror.org/0378d7n06', 'en', 1, 'https://ror.org/0378d7n06 Wyoming Comprehensive Cancer Control Consortium'),
(17670, 'https://ror.org/0378pjg29', 'no_lang_code', 1, 'https://ror.org/0378pjg29 Kombiverkehr (Germany)'),
(17671, 'https://ror.org/037aj8726', 'en', 1, 'https://ror.org/037aj8726 North Florida Area Agency on Aging'),
(17672, 'https://ror.org/037ch9n61', 'no_lang_code', 1, 'https://ror.org/037ch9n61 Collaborative Group (United States)'),
(17673, 'https://ror.org/037cpgk40', 'en', 1, 'https://ror.org/037cpgk40 Women’s Rehabilitation Centre'),
(17674, 'https://ror.org/037dhrw12', 'no_lang_code', 1, 'https://ror.org/037dhrw12 Fully Distributed Systems (United Kingdom)'),
(17675, 'https://ror.org/037es9x13', 'en', 1, 'https://ror.org/037es9x13 European Games Developer Federation'),
(17676, 'https://ror.org/037jdf520', 'no_lang_code', 1, 'https://ror.org/037jdf520 Doimak (Spain)'),
(17677, 'https://ror.org/037m11k76', 'no_lang_code', 1, 'https://ror.org/037m11k76 3d Scanners (United Kingdom)'),
(17678, 'https://ror.org/037n8p820', 'en', 1, 'https://ror.org/037n8p820 Ministerstvo Å”kolstvĆ­, mlĆ”deže a tělovýchovy ČeskĆ© republiky Ministry of Education Youth and Sports'),
(17679, 'https://ror.org/037p72q74', 'en', 1, 'https://ror.org/037p72q74 Raise Hope Foundation'),
(17680, 'https://ror.org/037psbw62', 'en', 1, 'https://ror.org/037psbw62 Stanley Park'),
(17681, 'https://ror.org/037sqac13', 'no_lang_code', 1, 'https://ror.org/037sqac13 Intelen (Cyprus)'),
(17682, 'https://ror.org/037x4qk98', 'en', 1, 'https://ror.org/037x4qk98 International Union Against Tuberculosis and Lung Disease'),
(17683, 'https://ror.org/037ydha73', 'en', 1, 'https://ror.org/037ydha73 Hamburg Institute of International Economics Hamburgisches WeltWirtschafts Institut'),
(17684, 'https://ror.org/0380g9t27', 'en', 1, 'https://ror.org/0380g9t27 Lurleen B Wallace Community College'),
(17685, 'https://ror.org/038147z68', 'no_lang_code', 1, 'https://ror.org/038147z68 Promotora de Informaciones (Spain)'),
(17686, 'https://ror.org/038212696', 'en', 1, 'https://ror.org/038212696 Benaki Museum ĪœĪæĻ…ĻƒĪµĪÆĪæ ĪœĻ€ĪµĪ½Ī¬ĪŗĪ·'),
(17687, 'https://ror.org/0382ee542', 'en', 1, 'https://ror.org/0382ee542 Park Ridge Public Library'),
(17688, 'https://ror.org/038680g19', 'en', 1, 'https://ror.org/038680g19 Bundesamt für Eich- und Vermessungswesen Federal Office of Metrology and Surveying'),
(17689, 'https://ror.org/0386d9c06', 'no_lang_code', 1, 'https://ror.org/0386d9c06 ChemDiv (United States)'),
(17690, 'https://ror.org/038729s57', 'no_lang_code', 1, 'https://ror.org/038729s57 ERS Steuerungstechnik (Germany)'),
(17691, 'https://ror.org/0387ev146', 'en', 1, 'https://ror.org/0387ev146 Lancaster City Council'),
(17692, 'https://ror.org/0387prb75', 'en', 1, 'https://ror.org/0387prb75 FIZ Karlsruhe - Leibniz-Institut für Informationsinfrastruktur FIZ Karlsruhe – Leibniz Institute for Information Infrastructure'),
(17693, 'https://ror.org/0389mec09', 'no_lang_code', 1, 'https://ror.org/0389mec09 Biothermica (Canada)'),
(17694, 'https://ror.org/0389pd205', 'no_lang_code', 1, 'https://ror.org/0389pd205 Helitune (United Kingdom)'),
(17695, 'https://ror.org/038ctdt29', 'en', 1, 'https://ror.org/038ctdt29 Community Services Institute'),
(17696, 'https://ror.org/038dact55', 'no_lang_code', 1, 'https://ror.org/038dact55 Battery Ventures (United States)'),
(17697, 'https://ror.org/038enx362', 'en', 1, 'https://ror.org/038enx362 Vannie E. Cook Jr. Cancer Foundation'),
(17698, 'https://ror.org/038fwj823', 'en', 1, 'https://ror.org/038fwj823 Aspen Cancer Conference'),
(17699, 'https://ror.org/038fxe657', 'no_lang_code', 1, 'https://ror.org/038fxe657 Extended Home Living Services'),
(17700, 'https://ror.org/038ja4880', 'en', 1, 'https://ror.org/038ja4880 Alex''s Lemonade Stand Foundation'),
(17701, 'https://ror.org/038jkh114', 'no_lang_code', 1, 'https://ror.org/038jkh114 Kentech Instruments (United Kingdom)'),
(17702, 'https://ror.org/038k3ws77', 'en', 1, 'https://ror.org/038k3ws77 Centre of Polymer and Carbon Materials'),
(17703, 'https://ror.org/038n1rk38', 'en', 1, 'https://ror.org/038n1rk38 Business Innovation Centre'),
(17704, 'https://ror.org/038nw4939', 'fr', 1, 'https://ror.org/038nw4939 Institut Technique de l''Agriculture Biologique'),
(17705, 'https://ror.org/038s1ax16', 'en', 1, 'https://ror.org/038s1ax16 Temple College'),
(17706, 'https://ror.org/038s1hq41', 'en', 1, 'https://ror.org/038s1hq41 All Russian Research Institute of Hydrometeorological information World Data Center Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ России гиГрометеорологической информации ŠœŠøŃ€Š¾Š²Š¾Š¹ центр Ганных'),
(17707, 'https://ror.org/038srqh25', 'fr', 1, 'https://ror.org/038srqh25 Ɖtudes MĆ©tallurgiques Traitements Thermiques'),
(17708, 'https://ror.org/038yk2262', 'no_lang_code', 1, 'https://ror.org/038yk2262 Burness (United States)'),
(17709, 'https://ror.org/0390mzx53', 'en', 1, 'https://ror.org/0390mzx53 London Institute for Mathematical Sciences'),
(17710, 'https://ror.org/0390pfr19', 'en', 1, 'https://ror.org/0390pfr19 European Association for the Study of Obesity'),
(17711, 'https://ror.org/0390twm75', 'en', 1, 'https://ror.org/0390twm75 Canadian Institute of Public Health Inspectors'),
(17712, 'https://ror.org/03912g573', 'no_lang_code', 1, 'https://ror.org/03912g573 Idom (Spain)'),
(17713, 'https://ror.org/0391yk308', 'no_lang_code', 1, 'https://ror.org/0391yk308 Altran (Austria)'),
(17714, 'https://ror.org/0393dce17', 'no_lang_code', 1, 'https://ror.org/0393dce17 Maire Tecnimont (Italy)'),
(17715, 'https://ror.org/0393dxb43', 'no_lang_code', 1, 'https://ror.org/0393dxb43 Flisom (Switzerland)'),
(17716, 'https://ror.org/039479p46', 'en', 1, 'https://ror.org/039479p46 Roper St. Francis Healthcare'),
(17717, 'https://ror.org/0394awa03', 'no_lang_code', 1, 'https://ror.org/0394awa03 Atos (Turkey)'),
(17718, 'https://ror.org/03952wq53', 'en', 1, 'https://ror.org/03952wq53 United Way of Southeastern Idaho'),
(17719, 'https://ror.org/0396vya75', 'no_lang_code', 1, 'https://ror.org/0396vya75 Bilfinger (Germany)'),
(17720, 'https://ror.org/0399jq845', 'no_lang_code', 1, 'https://ror.org/0399jq845 Lafer (Italy)'),
(17721, 'https://ror.org/039g7yg54', 'no_lang_code', 1, 'https://ror.org/039g7yg54 Automobile Association (United Kingdom)'),
(17722, 'https://ror.org/039g7zn40', 'en', 1, 'https://ror.org/039g7zn40 Veterans Education and Research Association of Northern New England'),
(17723, 'https://ror.org/039kb9274', 'en', 1, 'https://ror.org/039kb9274 Center for Asbestos Related Disease'),
(17724, 'https://ror.org/039pwme76', 'no_lang_code', 1, 'https://ror.org/039pwme76 Viasat (United States)'),
(17725, 'https://ror.org/039se1n41', 'no_lang_code', 1, 'https://ror.org/039se1n41 Ideasis (Greece)'),
(17726, 'https://ror.org/039vmq038', 'no_lang_code', 1, 'https://ror.org/039vmq038 Lyncean Technologies (United States)'),
(17727, 'https://ror.org/039vvqy75', 'en', 1, 'https://ror.org/039vvqy75 Phoebe Sumter Medical Center'),
(17728, 'https://ror.org/039vz4177', 'no_lang_code', 1, 'https://ror.org/039vz4177 Granlund (Finland)'),
(17729, 'https://ror.org/039xd5z05', 'no_lang_code', 1, 'https://ror.org/039xd5z05 LogĆ­stica y Acondicionamientos Industriales (Spain)'),
(17730, 'https://ror.org/039xp9584', 'en', 1, 'https://ror.org/039xp9584 Westside Health Authority'),
(17731, 'https://ror.org/039y05x37', 'en', 1, 'https://ror.org/039y05x37 Association of American State Geologists'),
(17732, 'https://ror.org/039z65d40', 'en', 1, 'https://ror.org/039z65d40 European Welding Federation'),
(17733, 'https://ror.org/03a4hjz39', 'no_lang_code', 1, 'https://ror.org/03a4hjz39 Getas Petrogeo (Italy)'),
(17734, 'https://ror.org/03a76f909', 'en', 1, 'https://ror.org/03a76f909 Autoridad Portuaria de Santander Santander Port Authority'),
(17735, 'https://ror.org/03a9d3647', 'en', 1, 'https://ror.org/03a9d3647 Rhodes State College'),
(17736, 'https://ror.org/03aajm102', 'no_lang_code', 1, 'https://ror.org/03aajm102 Keronite (United Kingdom)'),
(17737, 'https://ror.org/03aak0114', 'no_lang_code', 1, 'https://ror.org/03aak0114 Capital Technology Information Services'),
(17738, 'https://ror.org/03aat3341', 'en', 1, 'https://ror.org/03aat3341 Atlantic Union College'),
(17739, 'https://ror.org/03adps494', 'en', 1, 'https://ror.org/03adps494 Community Network Services'),
(17740, 'https://ror.org/03adw6z89', 'no_lang_code', 1, 'https://ror.org/03adw6z89 Cox Analytical Systems (Sweden)'),
(17741, 'https://ror.org/03afcx383', 'es', 1, 'https://ror.org/03afcx383 Asociación Española de Fabricantes de Equipos y Componentes para Automoción'),
(17742, 'https://ror.org/03afd3b65', 'en', 1, 'https://ror.org/03afd3b65 Moraine Park Technical College'),
(17743, 'https://ror.org/03ag8py18', 'fr', 1, 'https://ror.org/03ag8py18 AcadƩmie de Montpellier'),
(17744, 'https://ror.org/03ajkmw94', 'en', 1, 'https://ror.org/03ajkmw94 British Academy of Film and Television Arts'),
(17745, 'https://ror.org/03ak9f780', 'en', 1, 'https://ror.org/03ak9f780 Harrington Cancer Center'),
(17746, 'https://ror.org/03akswg93', 'en', 1, 'https://ror.org/03akswg93 Safe Horizon'),
(17747, 'https://ror.org/03anw0996', 'no_lang_code', 1, 'https://ror.org/03anw0996 Coord3 Industries (Italy)'),
(17748, 'https://ror.org/03apr9j04', 'en', 1, 'https://ror.org/03apr9j04 Signature Research Institute'),
(17749, 'https://ror.org/03ar2j538', 'no_lang_code', 1, 'https://ror.org/03ar2j538 Innospec (United Kingdom)'),
(17750, 'https://ror.org/03ar82423', 'en', 1, 'https://ror.org/03ar82423 Watauga Medical Center'),
(17751, 'https://ror.org/03avx4w11', 'no_lang_code', 1, 'https://ror.org/03avx4w11 Costruzioni Apparecchiature Elettroniche Nucleari (Italy)'),
(17752, 'https://ror.org/03awk9p59', 'en', 1, 'https://ror.org/03awk9p59 Wallace Laboratories'),
(17753, 'https://ror.org/03awv1y89', 'en', 1, 'https://ror.org/03awv1y89 Reproductive Medicine Institute'),
(17754, 'https://ror.org/03aydnn87', 'en', 1, 'https://ror.org/03aydnn87 Ars Electronica Center'),
(17755, 'https://ror.org/03aztvx54', 'en', 1, 'https://ror.org/03aztvx54 International Organization for Migration'),
(17756, 'https://ror.org/03b01rf26', 'it', 1, 'https://ror.org/03b01rf26 Formedil'),
(17757, 'https://ror.org/03b03v914', 'en', 1, 'https://ror.org/03b03v914 Wheaton Public Library'),
(17758, 'https://ror.org/03b1p5875', 'fr', 1, 'https://ror.org/03b1p5875 Ministère de la Santé Publique et de la Population'),
(17759, 'https://ror.org/03b27e555', 'en', 1, 'https://ror.org/03b27e555 Warren-Trumbull County Public Library'),
(17760, 'https://ror.org/03b2j7609', 'no_lang_code', 1, 'https://ror.org/03b2j7609 Geomer (Germany)'),
(17761, 'https://ror.org/03b4ksy95', 'en', 1, 'https://ror.org/03b4ksy95 Institute of Global Climate and Ecology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ глобального климата Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(17762, 'https://ror.org/03b8hyb18', 'no_lang_code', 1, 'https://ror.org/03b8hyb18 Columbus Superconductors (Italy)'),
(17763, 'https://ror.org/03b92zg63', 'en', 1, 'https://ror.org/03b92zg63 Alabama Department of Agriculture and Industries'),
(17764, 'https://ror.org/03bc9tz11', 'en', 1, 'https://ror.org/03bc9tz11 USA Cares'),
(17765, 'https://ror.org/03bcvxv20', 'en', 1, 'https://ror.org/03bcvxv20 Sisters of Providence Health System'),
(17766, 'https://ror.org/03bngxz45', 'no_lang_code', 1, 'https://ror.org/03bngxz45 Advanced Energy Materials (United States)'),
(17767, 'https://ror.org/03bq13516', 'en', 1, 'https://ror.org/03bq13516 Guilford Technical Community College'),
(17768, 'https://ror.org/03bqmf942', 'no_lang_code', 1, 'https://ror.org/03bqmf942 Atrium Innovations (Canada)'),
(17769, 'https://ror.org/03br44f40', 'en', 1, 'https://ror.org/03br44f40 Unlimited Abilities Foundation'),
(17770, 'https://ror.org/03bskcm82', 'no_lang_code', 1, 'https://ror.org/03bskcm82 Contextual Change (United States)'),
(17771, 'https://ror.org/03btbhp73', 'no_lang_code', 1, 'https://ror.org/03btbhp73 Circulomics (United States)'),
(17772, 'https://ror.org/03bvw7q76', 'no_lang_code', 1, 'https://ror.org/03bvw7q76 Dolphin Design (France)'),
(17773, 'https://ror.org/03bvy3496', 'en', 1, 'https://ror.org/03bvy3496 European Geothermal Energy Council'),
(17774, 'https://ror.org/03c0cr114', 'en', 1, 'https://ror.org/03c0cr114 Center of Maritime Technologies'),
(17775, 'https://ror.org/03c1rcd16', 'no_lang_code', 1, 'https://ror.org/03c1rcd16 Daher (France)'),
(17776, 'https://ror.org/03c22w876', 'en', 1, 'https://ror.org/03c22w876 Vittal Mallya Scientific Research Foundation'),
(17777, 'https://ror.org/03c3kz798', 'fr', 1, 'https://ror.org/03c3kz798 ATECA - Applications Technologie AvancƩe'),
(17778, 'https://ror.org/03c8hnh70', 'en', 1, 'https://ror.org/03c8hnh70 German Breast group'),
(17779, 'https://ror.org/03cev9t93', 'fr', 1, 'https://ror.org/03cev9t93 Centre National de l''Informatique'),
(17780, 'https://ror.org/03cf36w49', 'en', 1, 'https://ror.org/03cf36w49 Southern Wesleyan University'),
(17781, 'https://ror.org/03cjp2c87', 'en', 1, 'https://ror.org/03cjp2c87 Glasgow Victoria Infirmary'),
(17782, 'https://ror.org/03cjt8a33', 'en', 1, 'https://ror.org/03cjt8a33 Wolfe Eye Clinic'),
(17783, 'https://ror.org/03cnry959', 'no_lang_code', 1, 'https://ror.org/03cnry959 European & International Federation of Natural Stone Industries Federation Europeenne & Internationale des Industries de la Pierre Naturelle'),
(17784, 'https://ror.org/03cpyj611', 'en', 1, 'https://ror.org/03cpyj611 East Central College'),
(17785, 'https://ror.org/03cr5p796', 'no_lang_code', 1, 'https://ror.org/03cr5p796 Learning Express Toys (United States)'),
(17786, 'https://ror.org/03ct7hd51', 'no_lang_code', 1, 'https://ror.org/03ct7hd51 Henkel (Netherlands)'),
(17787, 'https://ror.org/03d169816', 'no_lang_code', 1, 'https://ror.org/03d169816 Benten Technologies (United States)'),
(17788, 'https://ror.org/03d1aqs10', 'no_lang_code', 1, 'https://ror.org/03d1aqs10 ACMA Social Marketing'),
(17789, 'https://ror.org/03d2ezn18', 'ca', 1, 'https://ror.org/03d2ezn18 Institut Cartogràfic i Geològic de Catalunya'),
(17790, 'https://ror.org/03d2qa639', 'no_lang_code', 1, 'https://ror.org/03d2qa639 AnyWi Technologies (Netherlands)'),
(17791, 'https://ror.org/03ddhrn22', 'no_lang_code', 1, 'https://ror.org/03ddhrn22 Shri Vile Parle Kelavani Mandal'),
(17792, 'https://ror.org/03de9mq04', 'en', 1, 'https://ror.org/03de9mq04 Tuomey Healthcare System'),
(17793, 'https://ror.org/03df4xq04', 'no_lang_code', 1, 'https://ror.org/03df4xq04 Espion (Ireland)'),
(17794, 'https://ror.org/03dfsfy59', 'en', 1, 'https://ror.org/03dfsfy59 Waubonsee Community College'),
(17795, 'https://ror.org/03dgqxa26', 'no_lang_code', 1, 'https://ror.org/03dgqxa26 E2S (Belgium)'),
(17796, 'https://ror.org/03dh12p89', 'en', 1, 'https://ror.org/03dh12p89 Perinatal Institute'),
(17797, 'https://ror.org/03dp7mk93', 'en', 1, 'https://ror.org/03dp7mk93 Whole Elephant Institute'),
(17798, 'https://ror.org/03dpzam72', 'es', 1, 'https://ror.org/03dpzam72 Instituto Nacional del Agua'),
(17799, 'https://ror.org/03dq1ad60', 'no_lang_code', 1, 'https://ror.org/03dq1ad60 Galorath (United Kingdom)'),
(17800, 'https://ror.org/03dr4sp04', 'en', 1, 'https://ror.org/03dr4sp04 AEROTRON Research'),
(17801, 'https://ror.org/03drnt809', 'no_lang_code', 1, 'https://ror.org/03drnt809 Scynexis (United States)'),
(17802, 'https://ror.org/03dtd0v69', 'no_lang_code', 1, 'https://ror.org/03dtd0v69 Cellix (Ireland)'),
(17803, 'https://ror.org/03dtjkc02', 'no_lang_code', 1, 'https://ror.org/03dtjkc02 Erothitan (Germany)'),
(17804, 'https://ror.org/03dwnrz57', 'no_lang_code', 1, 'https://ror.org/03dwnrz57 Insulcon (Netherlands)'),
(17805, 'https://ror.org/03dx84k02', 'no_lang_code', 1, 'https://ror.org/03dx84k02 AtriCure (United States)'),
(17806, 'https://ror.org/03dxy5y92', 'en', 1, 'https://ror.org/03dxy5y92 The Arthroplasty Patient Foundation'),
(17807, 'https://ror.org/03dyemd88', 'en', 1, 'https://ror.org/03dyemd88 Nunez Community College'),
(17808, 'https://ror.org/03e1jqq60', 'en', 1, 'https://ror.org/03e1jqq60 Franklin Pierce University'),
(17809, 'https://ror.org/03e3kts03', 'en', 1, 'https://ror.org/03e3kts03 South Australian Health and Medical Research Institute'),
(17810, 'https://ror.org/03e491272', 'en', 1, 'https://ror.org/03e491272 Irish Congress of Trade Unions'),
(17811, 'https://ror.org/03ee26z15', 'no_lang_code', 1, 'https://ror.org/03ee26z15 Formatec Technical Ceramics (Netherlands)');
INSERT INTO `rors` VALUES
(17812, 'https://ror.org/03eg5yv61', 'no_lang_code', 1, 'https://ror.org/03eg5yv61 Neogen Europe (United Kingdom)'),
(17813, 'https://ror.org/03ej57906', 'no_lang_code', 1, 'https://ror.org/03ej57906 Belsim (Belgium)'),
(17814, 'https://ror.org/03ejd2z94', 'en', 1, 'https://ror.org/03ejd2z94 Iowa Department of Education'),
(17815, 'https://ror.org/03ekg6244', 'no_lang_code', 1, 'https://ror.org/03ekg6244 Etna Biotech (Italy)'),
(17816, 'https://ror.org/03emf1n04', 'no_lang_code', 1, 'https://ror.org/03emf1n04 Bristol-Myers Squibb (United Kingdom)'),
(17817, 'https://ror.org/03en68s56', 'no_lang_code', 1, 'https://ror.org/03en68s56 Haesevoets (Belgium)'),
(17818, 'https://ror.org/03epk7q46', 'en', 1, 'https://ror.org/03epk7q46 Storrs Library'),
(17819, 'https://ror.org/03es33149', 'no_lang_code', 1, 'https://ror.org/03es33149 SWAZ Potato Farms (United States)'),
(17820, 'https://ror.org/03esv2r68', 'no_lang_code', 1, 'https://ror.org/03esv2r68 Stealth Biosciences (United States)'),
(17821, 'https://ror.org/03et11k80', 'no_lang_code', 1, 'https://ror.org/03et11k80 Eurosolare (Italy)'),
(17822, 'https://ror.org/03ewz3a13', 'no_lang_code', 1, 'https://ror.org/03ewz3a13 Delta Technologies Sud Ouest (France)'),
(17823, 'https://ror.org/03exh9a13', 'en', 1, 'https://ror.org/03exh9a13 West Humboldt Park Development Council'),
(17824, 'https://ror.org/03exwgf66', 'en', 1, 'https://ror.org/03exwgf66 Fife House'),
(17825, 'https://ror.org/03eypca36', 'no_lang_code', 1, 'https://ror.org/03eypca36 FMC (Norway)'),
(17826, 'https://ror.org/03ezean90', 'en', 1, 'https://ror.org/03ezean90 Washington Regional Medical Center'),
(17827, 'https://ror.org/03f015z81', 'en', 1, 'https://ror.org/03f015z81 Zhejiang Center for Disease Control and Prevention ęµ™ę±Ÿēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(17828, 'https://ror.org/03f0njg03', 'fr', 1, 'https://ror.org/03f0njg03 UniversitƩ des Sciences et Techniques de Masuku'),
(17829, 'https://ror.org/03f1p6998', 'en', 1, 'https://ror.org/03f1p6998 Infectious Diseases Society of America'),
(17830, 'https://ror.org/03f22z049', 'en', 1, 'https://ror.org/03f22z049 Exeter City Council'),
(17831, 'https://ror.org/03f2kwz12', 'no_lang_code', 1, 'https://ror.org/03f2kwz12 BIA Separations (Slovenia)'),
(17832, 'https://ror.org/03f5avr03', 'en', 1, 'https://ror.org/03f5avr03 Electrotechnical Institute'),
(17833, 'https://ror.org/03f8sb410', 'no_lang_code', 1, 'https://ror.org/03f8sb410 Maus (Germany)'),
(17834, 'https://ror.org/03f8z3m49', 'no_lang_code', 1, 'https://ror.org/03f8z3m49 InfoCulture (United States)'),
(17835, 'https://ror.org/03f90wp03', 'en', 1, 'https://ror.org/03f90wp03 Canadian Association for Girls in Science'),
(17836, 'https://ror.org/03f9kek24', 'no_lang_code', 1, 'https://ror.org/03f9kek24 Fatman (Finland)'),
(17837, 'https://ror.org/03f9m1k43', 'no_lang_code', 1, 'https://ror.org/03f9m1k43 BP (France)'),
(17838, 'https://ror.org/03fadn241', 'no_lang_code', 1, 'https://ror.org/03fadn241 Martechnic (Germany)'),
(17839, 'https://ror.org/03faeab35', 'no_lang_code', 1, 'https://ror.org/03faeab35 ABB (Finland)'),
(17840, 'https://ror.org/03fcx1h14', 'en', 1, 'https://ror.org/03fcx1h14 SSM Health Rehabilitation Hospital'),
(17841, 'https://ror.org/03fej8604', 'no_lang_code', 1, 'https://ror.org/03fej8604 Elforlight (United Kingdom)'),
(17842, 'https://ror.org/03fgg2060', 'no_lang_code', 1, 'https://ror.org/03fgg2060 DIARC-Technology (Finland)'),
(17843, 'https://ror.org/03fjxe887', 'no_lang_code', 1, 'https://ror.org/03fjxe887 Sumitomo Chemical (United Kingdom)'),
(17844, 'https://ror.org/03fjxhp48', 'en', 1, 'https://ror.org/03fjxhp48 Hoard Historical Museum'),
(17845, 'https://ror.org/03fkfdh53', 'no_lang_code', 1, 'https://ror.org/03fkfdh53 AED-SICAD (Germany)'),
(17846, 'https://ror.org/03fkh3x71', 'en', 1, 'https://ror.org/03fkh3x71 Roger C. Peace Rehabilitation Hospital'),
(17847, 'https://ror.org/03fkvkp40', 'en', 1, 'https://ror.org/03fkvkp40 Star Neuroscience Foundation'),
(17848, 'https://ror.org/03fmc9y65', 'no_lang_code', 1, 'https://ror.org/03fmc9y65 Albany Molecular Research (United Kingdom)'),
(17849, 'https://ror.org/03fpb6q62', 'no_lang_code', 1, 'https://ror.org/03fpb6q62 Exalos (Switzerland)'),
(17850, 'https://ror.org/03fqpp165', 'no_lang_code', 1, 'https://ror.org/03fqpp165 Bioergonomics (United States)'),
(17851, 'https://ror.org/03fqqns24', 'fr', 1, 'https://ror.org/03fqqns24 Missions Publiques'),
(17852, 'https://ror.org/03fs09n75', 'no_lang_code', 1, 'https://ror.org/03fs09n75 Aalborg Portland (Denmark)'),
(17853, 'https://ror.org/03fsr8g81', 'en', 1, 'https://ror.org/03fsr8g81 Children’s Cause for Cancer Advocacy'),
(17854, 'https://ror.org/03fw2bn12', 'fr', 1, 'https://ror.org/03fw2bn12 Centre d''Imagerie BioMedicale'),
(17855, 'https://ror.org/03fw4vf13', 'no_lang_code', 1, 'https://ror.org/03fw4vf13 Total Quadran (France)'),
(17856, 'https://ror.org/03fwsh914', 'en', 1, 'https://ror.org/03fwsh914 State Library of Ohio'),
(17857, 'https://ror.org/03fxegb97', 'en', 1, 'https://ror.org/03fxegb97 Alpha Consulting Services'),
(17858, 'https://ror.org/03g0fjd93', 'no_lang_code', 1, 'https://ror.org/03g0fjd93 RM Education (United Kingdom)'),
(17859, 'https://ror.org/03g0jst60', 'no_lang_code', 1, 'https://ror.org/03g0jst60 Selecta Biosciences (United States)'),
(17860, 'https://ror.org/03g0nfg79', 'en', 1, 'https://ror.org/03g0nfg79 Heritage Museum and Cultural Center'),
(17861, 'https://ror.org/03g1bs356', 'no_lang_code', 1, 'https://ror.org/03g1bs356 BioAssessments (United States)'),
(17862, 'https://ror.org/03g25vn60', 'en', 1, 'https://ror.org/03g25vn60 Wings Cancer Foundation'),
(17863, 'https://ror.org/03g46y557', 'no_lang_code', 1, 'https://ror.org/03g46y557 Codeplay (United Kingdom)'),
(17864, 'https://ror.org/03g4gca53', 'en', 1, 'https://ror.org/03g4gca53 Florida SouthWestern State College'),
(17865, 'https://ror.org/03g5d6c96', 'en', 1, 'https://ror.org/03g5d6c96 Cancer Council Queensland'),
(17866, 'https://ror.org/03g6j6055', 'no_lang_code', 1, 'https://ror.org/03g6j6055 BASF (Switzerland)'),
(17867, 'https://ror.org/03g83ha52', 'en', 1, 'https://ror.org/03g83ha52 Ukrainian Anti Cancer Institute Ukrainisches Institut für Krebsbekämpfung'),
(17868, 'https://ror.org/03g9ch715', 'en', 1, 'https://ror.org/03g9ch715 National Center for Supercomputing Applications'),
(17869, 'https://ror.org/03g9n2p49', 'no_lang_code', 1, 'https://ror.org/03g9n2p49 Airtren (Spain)'),
(17870, 'https://ror.org/03ga5xc36', 'no_lang_code', 1, 'https://ror.org/03ga5xc36 Wockhardt Hospitals'),
(17871, 'https://ror.org/03gamv550', 'en', 1, 'https://ror.org/03gamv550 U.S. Committee for Refugees and Immigrants'),
(17872, 'https://ror.org/03gb01811', 'en', 1, 'https://ror.org/03gb01811 Washington State Department of Ecology'),
(17873, 'https://ror.org/03gb5pj65', 'no_lang_code', 1, 'https://ror.org/03gb5pj65 Fuchs (Austria)'),
(17874, 'https://ror.org/03gbp6p96', 'en', 1, 'https://ror.org/03gbp6p96 Hospital of Prato'),
(17875, 'https://ror.org/03gbwkj22', 'en', 1, 'https://ror.org/03gbwkj22 Vincennes University'),
(17876, 'https://ror.org/03gd10562', 'no_lang_code', 1, 'https://ror.org/03gd10562 Converspeech (United States)'),
(17877, 'https://ror.org/03gf89e85', 'en', 1, 'https://ror.org/03gf89e85 SportsClub'),
(17878, 'https://ror.org/03gg7kg14', 'en', 1, 'https://ror.org/03gg7kg14 youthSpark'),
(17879, 'https://ror.org/03gjpwc41', 'no_lang_code', 1, 'https://ror.org/03gjpwc41 Cosmetic (Greece)'),
(17880, 'https://ror.org/03gkf9664', 'no_lang_code', 1, 'https://ror.org/03gkf9664 IBK-Innovation (Germany)'),
(17881, 'https://ror.org/03gkfpj41', 'no_lang_code', 1, 'https://ror.org/03gkfpj41 Icelandic New Energy (Iceland)'),
(17882, 'https://ror.org/03gkhzn08', 'no_lang_code', 1, 'https://ror.org/03gkhzn08 Crowell & Moring (United States)'),
(17883, 'https://ror.org/03gnfa870', 'en', 1, 'https://ror.org/03gnfa870 Athenaeum of Ohio'),
(17884, 'https://ror.org/03gpg3e34', 'no_lang_code', 1, 'https://ror.org/03gpg3e34 Pillar (Ukraine)'),
(17885, 'https://ror.org/03gpg5f33', 'no_lang_code', 1, 'https://ror.org/03gpg5f33 RJS Biologics (United States)'),
(17886, 'https://ror.org/03gqeqw02', 'en', 1, 'https://ror.org/03gqeqw02 Youth Net and Counselling'),
(17887, 'https://ror.org/03gr38452', 'no_lang_code', 1, 'https://ror.org/03gr38452 Metallurgische Verfahrenstechnik (Germany)'),
(17888, 'https://ror.org/03grwn392', 'en', 1, 'https://ror.org/03grwn392 Santa Clara County Probation Department'),
(17889, 'https://ror.org/03gt1hw33', 'en', 1, 'https://ror.org/03gt1hw33 St. Mary’s Healthcare System for Children'),
(17890, 'https://ror.org/03gtcr185', 'en', 1, 'https://ror.org/03gtcr185 W.K. Kellogg Foundation'),
(17891, 'https://ror.org/03gtqhp76', 'en', 1, 'https://ror.org/03gtqhp76 Central Laboratory for Agricultural Climate المعمل Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ للمناخ Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠ'),
(17892, 'https://ror.org/03gtrve45', 'en', 1, 'https://ror.org/03gtrve45 Society for the Investigation of Early Pregnancy'),
(17893, 'https://ror.org/03gvvb706', 'en', 1, 'https://ror.org/03gvvb706 Association of Schools and Programs of Public Health'),
(17894, 'https://ror.org/03gwjxa72', 'en', 1, 'https://ror.org/03gwjxa72 Alliance for Positive Health'),
(17895, 'https://ror.org/03gzf5338', 'en', 1, 'https://ror.org/03gzf5338 International Ecological Engineering Society'),
(17896, 'https://ror.org/03h0ffq42', 'no_lang_code', 1, 'https://ror.org/03h0ffq42 Elite Bread Industry (Greece)'),
(17897, 'https://ror.org/03h1gea69', 'en', 1, 'https://ror.org/03h1gea69 St. Baldrick''s Foundation'),
(17898, 'https://ror.org/03h22yx22', 'no_lang_code', 1, 'https://ror.org/03h22yx22 C & L Instruments (United States)'),
(17899, 'https://ror.org/03h41j949', 'no_lang_code', 1, 'https://ror.org/03h41j949 Cureveda (United States)'),
(17900, 'https://ror.org/03h42b392', 'en', 1, 'https://ror.org/03h42b392 Biblioteca Nazionale Centrale di Roma Rome National Central Library'),
(17901, 'https://ror.org/03h5m5b13', 'no_lang_code', 1, 'https://ror.org/03h5m5b13 Acromas Holdings (United Kingdom)'),
(17902, 'https://ror.org/03h60kq84', 'no_lang_code', 1, 'https://ror.org/03h60kq84 Medennium (United States)'),
(17903, 'https://ror.org/03h7p3m59', 'en', 1, 'https://ror.org/03h7p3m59 Wake County Public School System'),
(17904, 'https://ror.org/03h80hk08', 'no_lang_code', 1, 'https://ror.org/03h80hk08 Alligator Bioscience (Sweden)'),
(17905, 'https://ror.org/03h9pd916', 'no_lang_code', 1, 'https://ror.org/03h9pd916 Idrodepurazione (Italy)'),
(17906, 'https://ror.org/03hb5cs16', 'en', 1, 'https://ror.org/03hb5cs16 Road and Bridge Research Institute'),
(17907, 'https://ror.org/03hb5ht18', 'no_lang_code', 1, 'https://ror.org/03hb5ht18 Craftsman Tools (United Kingdom)'),
(17908, 'https://ror.org/03hc96946', 'no_lang_code', 1, 'https://ror.org/03hc96946 Facilia (Sweden)'),
(17909, 'https://ror.org/03hcjbn12', 'no_lang_code', 1, 'https://ror.org/03hcjbn12 interactive instruments (Germany)'),
(17910, 'https://ror.org/03hd9e620', 'en', 1, 'https://ror.org/03hd9e620 Pediatric Neurology Briefs'),
(17911, 'https://ror.org/03hhmg705', 'no_lang_code', 1, 'https://ror.org/03hhmg705 Medvis (United States)'),
(17912, 'https://ror.org/03hm54n21', 'it', 1, 'https://ror.org/03hm54n21 Istituto Italiano della Saldatura Italian Institute of Welding'),
(17913, 'https://ror.org/03hndsz31', 'en', 1, 'https://ror.org/03hndsz31 British Editorial Society of Bone & Joint Surgery'),
(17914, 'https://ror.org/03hnjq088', 'no_lang_code', 1, 'https://ror.org/03hnjq088 Informatique Electromagnetisme Electronique Analyse Numerique (France)'),
(17915, 'https://ror.org/03hr9ag95', 'no_lang_code', 1, 'https://ror.org/03hr9ag95 RMG Consultants (United States)'),
(17916, 'https://ror.org/03ht7jd59', 'en', 1, 'https://ror.org/03ht7jd59 Edgewood Independent School District'),
(17917, 'https://ror.org/03hwfnp11', 'en', 1, 'https://ror.org/03hwfnp11 Computer Emergency Response Team'),
(17918, 'https://ror.org/03hx2yz19', 'no_lang_code', 1, 'https://ror.org/03hx2yz19 Paccar (United Kingdom)'),
(17919, 'https://ror.org/03hx4fx74', 'en', 1, 'https://ror.org/03hx4fx74 Keuka College'),
(17920, 'https://ror.org/03hxyy911', 'en', 1, 'https://ror.org/03hxyy911 Day One'),
(17921, 'https://ror.org/03hz0jb14', 'no_lang_code', 1, 'https://ror.org/03hz0jb14 Avaxia Biologics (United States)'),
(17922, 'https://ror.org/03j1srb55', 'no_lang_code', 1, 'https://ror.org/03j1srb55 Laser- und Medizin-Technologie (Germany)'),
(17923, 'https://ror.org/03j22xd51', 'no_lang_code', 1, 'https://ror.org/03j22xd51 The SoundWell (United States)'),
(17924, 'https://ror.org/03j2pv534', 'en', 1, 'https://ror.org/03j2pv534 YR Gaitonde Centre for AIDS Research and Education'),
(17925, 'https://ror.org/03j2znq68', 'en', 1, 'https://ror.org/03j2znq68 Schoolcraft College'),
(17926, 'https://ror.org/03j4bbt02', 'no_lang_code', 1, 'https://ror.org/03j4bbt02 Biopolis (Spain)'),
(17927, 'https://ror.org/03j4qkf39', 'no_lang_code', 1, 'https://ror.org/03j4qkf39 Attocube Systems (Germany)'),
(17928, 'https://ror.org/03j705z82', 'en', 1, 'https://ror.org/03j705z82 United Hospice'),
(17929, 'https://ror.org/03j84nv98', 'no_lang_code', 1, 'https://ror.org/03j84nv98 Heart Imaging Technologies (United States)'),
(17930, 'https://ror.org/03jaw3x77', 'en', 1, 'https://ror.org/03jaw3x77 Quality of Life Plus'),
(17931, 'https://ror.org/03jbgaw48', 'en', 1, 'https://ror.org/03jbgaw48 Women for Peace and Democracy – Nepal'),
(17932, 'https://ror.org/03jd1w748', 'no_lang_code', 1, 'https://ror.org/03jd1w748 CCTV User Group (United Kingdom)'),
(17933, 'https://ror.org/03jg2ja29', 'de', 1, 'https://ror.org/03jg2ja29 Forschungszentrum für Kältetechnik und Wärmepumpen'),
(17934, 'https://ror.org/03jhg3q89', 'en', 1, 'https://ror.org/03jhg3q89 Care Resource'),
(17935, 'https://ror.org/03jkjqx69', 'no_lang_code', 1, 'https://ror.org/03jkjqx69 Helliniki Meletitiki (Greece)'),
(17936, 'https://ror.org/03jn58q55', 'no_lang_code', 1, 'https://ror.org/03jn58q55 Innu-Science (Canada)'),
(17937, 'https://ror.org/03jq88n71', 'en', 1, 'https://ror.org/03jq88n71 Seattle Cancer Care Alliance'),
(17938, 'https://ror.org/03jr1w081', 'no_lang_code', 1, 'https://ror.org/03jr1w081 Bandvulc (United Kingdom)'),
(17939, 'https://ror.org/03jr3a030', 'en', 1, 'https://ror.org/03jr3a030 Canadian Parks and Wilderness Society la SociƩtƩ pour la nature et les parcs du Canada'),
(17940, 'https://ror.org/03jrtvr32', 'en', 1, 'https://ror.org/03jrtvr32 Agence Nationale pour le DĆ©veloppement des Energies Renouvelables et l’EfficacitĆ© EnergĆ©tique National Agency for the Development of Renewable Energy and Energy Efficiency'),
(17941, 'https://ror.org/03jsdjx34', 'no_lang_code', 1, 'https://ror.org/03jsdjx34 Cambridge University Press'),
(17942, 'https://ror.org/03jtym624', 'no_lang_code', 1, 'https://ror.org/03jtym624 Integrated Sensing Systems (United States)'),
(17943, 'https://ror.org/03jtz4s80', 'no_lang_code', 1, 'https://ror.org/03jtz4s80 Microsoft (Norway)'),
(17944, 'https://ror.org/03jwcxq96', 'en', 1, 'https://ror.org/03jwcxq96 Taiz University Ų¬Ų§Ł…Ų¹Ų© ŲŖŲ¹Ų²'),
(17945, 'https://ror.org/03jwfrf17', 'en', 1, 'https://ror.org/03jwfrf17 European Convention for Constructional Steelwork'),
(17946, 'https://ror.org/03jzs4815', 'en', 1, 'https://ror.org/03jzs4815 A. N. Nesmeyanov Institute of Organoelement Compounds Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠ¼ŠµŠ½Ń‚Š¾Š¾Ń€Š³Š°Š½ŠøŃ‡ŠµŃŠŗŠøŃ… соеГинений им. А.Š.ŠŠµŃŠ¼ŠµŃŠ½Š¾Š²Š° Российской акаГемии наук'),
(17947, 'https://ror.org/03k03ec42', 'no_lang_code', 1, 'https://ror.org/03k03ec42 Computer Technology Associates (United States)'),
(17948, 'https://ror.org/03k10gx48', 'en', 1, 'https://ror.org/03k10gx48 British Empire and Commonwealth Museum'),
(17949, 'https://ror.org/03k3apd45', 'en', 1, 'https://ror.org/03k3apd45 International Commission on Radiological Protection'),
(17950, 'https://ror.org/03k3pk368', 'en', 1, 'https://ror.org/03k3pk368 Allen County Public Library'),
(17951, 'https://ror.org/03k3w2a28', 'en', 1, 'https://ror.org/03k3w2a28 Philip Rogers Elementary School'),
(17952, 'https://ror.org/03k5mg797', 'no_lang_code', 1, 'https://ror.org/03k5mg797 Flanders Color (Belgium)'),
(17953, 'https://ror.org/03k77wm53', 'en', 1, 'https://ror.org/03k77wm53 Washtenaw Community College'),
(17954, 'https://ror.org/03k8cn029', 'no_lang_code', 1, 'https://ror.org/03k8cn029 Lynkeus (Italy)'),
(17955, 'https://ror.org/03k90y290', 'en', 1, 'https://ror.org/03k90y290 Finnish Marine Industries'),
(17956, 'https://ror.org/03k952713', 'en', 1, 'https://ror.org/03k952713 Airborne Research Associates'),
(17957, 'https://ror.org/03kdt9j02', 'no_lang_code', 1, 'https://ror.org/03kdt9j02 Keracol (United Kingdom)'),
(17958, 'https://ror.org/03kf30874', 'en', 1, 'https://ror.org/03kf30874 District of Columbia Public School Ɖcoles publiques du district de Columbia'),
(17959, 'https://ror.org/03kf4k440', 'no_lang_code', 1, 'https://ror.org/03kf4k440 Danish Power Systems (Denmark)'),
(17960, 'https://ror.org/03kg1jt28', 'en', 1, 'https://ror.org/03kg1jt28 European Research Institute on Cooperative and Social Enterprise'),
(17961, 'https://ror.org/03khjbj61', 'en', 1, 'https://ror.org/03khjbj61 Cerritos College'),
(17962, 'https://ror.org/03kjp3580', 'pt', 1, 'https://ror.org/03kjp3580 Gabinete de Estudos Olisiponenses'),
(17963, 'https://ror.org/03knfbb08', 'sv', 1, 'https://ror.org/03knfbb08 IQ SamhƤllsbyggnad'),
(17964, 'https://ror.org/03kp5tn18', 'no_lang_code', 1, 'https://ror.org/03kp5tn18 Blatraden (Sweden)'),
(17965, 'https://ror.org/03kq2rg86', 'no_lang_code', 1, 'https://ror.org/03kq2rg86 Konrad Fischer (Austria)'),
(17966, 'https://ror.org/03kt5jr23', 'en', 1, 'https://ror.org/03kt5jr23 Department of Health and Social Affairs'),
(17967, 'https://ror.org/03ktbzq37', 'en', 1, 'https://ror.org/03ktbzq37 John A. Hartford Foundation'),
(17968, 'https://ror.org/03ktt9079', 'en', 1, 'https://ror.org/03ktt9079 Neurotech Networks'),
(17969, 'https://ror.org/03kvbr153', 'en', 1, 'https://ror.org/03kvbr153 UF Health Shands Hospital'),
(17970, 'https://ror.org/03kxew167', 'en', 1, 'https://ror.org/03kxew167 La Grange Public Library'),
(17971, 'https://ror.org/03kxyq577', 'en', 1, 'https://ror.org/03kxyq577 Emerald Education Systems'),
(17972, 'https://ror.org/03ky7jj30', 'no_lang_code', 1, 'https://ror.org/03ky7jj30 Ensco (United States)'),
(17973, 'https://ror.org/03kyqs312', 'en', 1, 'https://ror.org/03kyqs312 Art Institute of Chicago Institut d''Art de Chicago Instituto de Arte de Chicago'),
(17974, 'https://ror.org/03kyxhh57', 'en', 1, 'https://ror.org/03kyxhh57 Wisconsin Historical Society'),
(17975, 'https://ror.org/03kz78w44', 'en', 1, 'https://ror.org/03kz78w44 Uganda Health and Science Press Association'),
(17976, 'https://ror.org/03m0aw686', 'en', 1, 'https://ror.org/03m0aw686 Winchester Hospital'),
(17977, 'https://ror.org/03m0njh07', 'en', 1, 'https://ror.org/03m0njh07 Midstate College'),
(17978, 'https://ror.org/03m0pn190', 'en', 1, 'https://ror.org/03m0pn190 Yo San University'),
(17979, 'https://ror.org/03m233w73', 'no_lang_code', 1, 'https://ror.org/03m233w73 Michell Instruments (France)'),
(17980, 'https://ror.org/03m3an259', 'no_lang_code', 1, 'https://ror.org/03m3an259 Arisan Therapeutics (United States)'),
(17981, 'https://ror.org/03m3g5338', 'en', 1, 'https://ror.org/03m3g5338 Institute for Structural Research'),
(17982, 'https://ror.org/03m4w0286', 'en', 1, 'https://ror.org/03m4w0286 Tahoe Forest Hospital'),
(17983, 'https://ror.org/03m6f8x93', 'no_lang_code', 1, 'https://ror.org/03m6f8x93 GTD System & Software Engineering (Spain)'),
(17984, 'https://ror.org/03m8wps61', 'no_lang_code', 1, 'https://ror.org/03m8wps61 2 Sisters Food Group (United Kingdom)'),
(17985, 'https://ror.org/03m9crh17', 'no_lang_code', 1, 'https://ror.org/03m9crh17 III-N Technology (United States)'),
(17986, 'https://ror.org/03m9nwe27', 'ca', 1, 'https://ror.org/03m9nwe27 Centre d''Innovació i Desenvolupament Empresarial'),
(17987, 'https://ror.org/03mam1w77', 'no_lang_code', 1, 'https://ror.org/03mam1w77 CS Transport (France)'),
(17988, 'https://ror.org/03mbgzm57', 'en', 1, 'https://ror.org/03mbgzm57 Washington State Community College'),
(17989, 'https://ror.org/03me50s15', 'no_lang_code', 1, 'https://ror.org/03me50s15 Elekta (United States)'),
(17990, 'https://ror.org/03meb8t18', 'en', 1, 'https://ror.org/03meb8t18 Center for Advanced Aerospace Technologies Centro Avanzado de TecnologĆ­as Aeroespaciales'),
(17991, 'https://ror.org/03mfabb88', 'no_lang_code', 1, 'https://ror.org/03mfabb88 FormTech (Germany)'),
(17992, 'https://ror.org/03mg4b565', 'it', 1, 'https://ror.org/03mg4b565 AutoritĆ  di bacino dei fiumi Isonzo, Tagliamento, Livenza, Piave, Brenta-Bacchiglione'),
(17993, 'https://ror.org/03mgga463', 'no_lang_code', 1, 'https://ror.org/03mgga463 Greenbank Group (United Kingdom)'),
(17994, 'https://ror.org/03mh23547', 'no_lang_code', 1, 'https://ror.org/03mh23547 Ironbound Films (United States)'),
(17995, 'https://ror.org/03mj2tv58', 'no_lang_code', 1, 'https://ror.org/03mj2tv58 Ewos Innovation (Norway)'),
(17996, 'https://ror.org/03mmsp106', 'no_lang_code', 1, 'https://ror.org/03mmsp106 KeraMed (United States)'),
(17997, 'https://ror.org/03mnfhy36', 'no_lang_code', 1, 'https://ror.org/03mnfhy36 Hanover Scotland Housing Association (United Kingdom)'),
(17998, 'https://ror.org/03mpcp089', 'no_lang_code', 1, 'https://ror.org/03mpcp089 DeWitt Tool (United States)'),
(17999, 'https://ror.org/03mr4tp73', 'no_lang_code', 1, 'https://ror.org/03mr4tp73 BioAtlantis (Ireland)'),
(18000, 'https://ror.org/03ms86h56', 'en', 1, 'https://ror.org/03ms86h56 Tetra Society of North America'),
(18001, 'https://ror.org/03mt07d61', 'fr', 1, 'https://ror.org/03mt07d61 Ag Quest'),
(18002, 'https://ror.org/03mtqjg23', 'no_lang_code', 1, 'https://ror.org/03mtqjg23 Mary Maguire Foundation'),
(18003, 'https://ror.org/03mv52406', 'en', 1, 'https://ror.org/03mv52406 Stark County District Library'),
(18004, 'https://ror.org/03myb1z84', 'no_lang_code', 1, 'https://ror.org/03myb1z84 Capita Translation and Interpreting (United Kingdom)'),
(18005, 'https://ror.org/03mz5a533', 'no_lang_code', 1, 'https://ror.org/03mz5a533 iXpressGenes (United States)'),
(18006, 'https://ror.org/03mzpfx25', 'pt', 1, 'https://ror.org/03mzpfx25 A Rocha'),
(18007, 'https://ror.org/03n027779', 'en', 1, 'https://ror.org/03n027779 Thyroid Head and Neck Cancer Foundation'),
(18008, 'https://ror.org/03n0ge846', 'no_lang_code', 1, 'https://ror.org/03n0ge846 Eight19 (United Kingdom)'),
(18009, 'https://ror.org/03n0gvg35', 'en', 1, 'https://ror.org/03n0gvg35 Batchelor Institute of Indigenous Tertiary Education'),
(18010, 'https://ror.org/03n0yd032', 'en', 1, 'https://ror.org/03n0yd032 Central American University Universidad Centroamericana'),
(18011, 'https://ror.org/03n2a3p06', 'en', 1, 'https://ror.org/03n2a3p06 New York Stem Cell Foundation'),
(18012, 'https://ror.org/03n4efr54', 'no_lang_code', 1, 'https://ror.org/03n4efr54 OhioNET'),
(18013, 'https://ror.org/03n678n37', 'en', 1, 'https://ror.org/03n678n37 Greeneville Community Hospital West'),
(18014, 'https://ror.org/03n6gc586', 'en', 1, 'https://ror.org/03n6gc586 Columbus College of Art and Design'),
(18015, 'https://ror.org/03n7edp26', 'no_lang_code', 1, 'https://ror.org/03n7edp26 Enpro Consult (Bulgaria)'),
(18016, 'https://ror.org/03n7krn06', 'en', 1, 'https://ror.org/03n7krn06 Centro de Recursos Naturais, Ambiente e Sociedade Research Center for Natural Resources, Environment and Society'),
(18017, 'https://ror.org/03n7scr80', 'en', 1, 'https://ror.org/03n7scr80 Federal Reserve Bank of Chicago'),
(18018, 'https://ror.org/03n8jr770', 'no_lang_code', 1, 'https://ror.org/03n8jr770 ACAL Energy (United Kingdom)'),
(18019, 'https://ror.org/03nb0an85', 'no_lang_code', 1, 'https://ror.org/03nb0an85 Aviointeriors (Italy)'),
(18020, 'https://ror.org/03nbnyc28', 'no_lang_code', 1, 'https://ror.org/03nbnyc28 Brain Innovation (Netherlands)'),
(18021, 'https://ror.org/03nd0ms94', 'no_lang_code', 1, 'https://ror.org/03nd0ms94 Doris Engineering (France)'),
(18022, 'https://ror.org/03ngn6116', 'no_lang_code', 1, 'https://ror.org/03ngn6116 Green Tide Turbines (United Kingdom)'),
(18023, 'https://ror.org/03ngsbp86', 'en', 1, 'https://ror.org/03ngsbp86 Dubuque County Safe Youth Coalition'),
(18024, 'https://ror.org/03nhmbj89', 'en', 1, 'https://ror.org/03nhmbj89 Comisión Reguladora Nuclear de Estados Unidos Commission de rĆ©glementation nuclĆ©aire des Ɖtats-unis United States Nuclear Regulatory Commission'),
(18025, 'https://ror.org/03nmmp510', 'no_lang_code', 1, 'https://ror.org/03nmmp510 Saoirse (United States)'),
(18026, 'https://ror.org/03nqngt38', 'en', 1, 'https://ror.org/03nqngt38 International Fishmeal and Oil Manufacturers Association'),
(18027, 'https://ror.org/03nrmdg87', 'en', 1, 'https://ror.org/03nrmdg87 Public Library of Mount Vernon and Knox County'),
(18028, 'https://ror.org/03nsh5473', 'en', 1, 'https://ror.org/03nsh5473 Oakland Community College'),
(18029, 'https://ror.org/03nte2z44', 'no_lang_code', 1, 'https://ror.org/03nte2z44 Iris (Italy)'),
(18030, 'https://ror.org/03ntt6y47', 'en', 1, 'https://ror.org/03ntt6y47 SS. Cyril & Methodius Seminary'),
(18031, 'https://ror.org/03nw55154', 'no_lang_code', 1, 'https://ror.org/03nw55154 Fastcom Technology (Switzerland)'),
(18032, 'https://ror.org/03nygzm95', 'no_lang_code', 1, 'https://ror.org/03nygzm95 E-Semble (Netherlands)'),
(18033, 'https://ror.org/03nzb9h73', 'no_lang_code', 1, 'https://ror.org/03nzb9h73 Riverkeeper'),
(18034, 'https://ror.org/03nzfjp98', 'no_lang_code', 1, 'https://ror.org/03nzfjp98 Keepmoat (United Kingdom)'),
(18035, 'https://ror.org/03p0exs25', 'en', 1, 'https://ror.org/03p0exs25 Will2Walk Foundation'),
(18036, 'https://ror.org/03p14zg79', 'no_lang_code', 1, 'https://ror.org/03p14zg79 Loake Shoemakers (United Kingdom)'),
(18037, 'https://ror.org/03p4y9t51', 'no_lang_code', 1, 'https://ror.org/03p4y9t51 Probiodrug (Germany)'),
(18038, 'https://ror.org/03p6bvv51', 'no_lang_code', 1, 'https://ror.org/03p6bvv51 Revlon (United States)'),
(18039, 'https://ror.org/03p76jc78', 'no_lang_code', 1, 'https://ror.org/03p76jc78 ES Technology (United Kingdom)'),
(18040, 'https://ror.org/03p9p9g95', 'en', 1, 'https://ror.org/03p9p9g95 Balzekas Museum of Lithuanian Culture'),
(18041, 'https://ror.org/03pbeak36', 'en', 1, 'https://ror.org/03pbeak36 Bulgarian Research and Education Network Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° изслеГователска Šø образователна мрежа'),
(18042, 'https://ror.org/03pca8c78', 'no_lang_code', 1, 'https://ror.org/03pca8c78 H-Cubed (United States)'),
(18043, 'https://ror.org/03pcn5m15', 'no_lang_code', 1, 'https://ror.org/03pcn5m15 Datamat (Italy)'),
(18044, 'https://ror.org/03pd1sq22', 'no_lang_code', 1, 'https://ror.org/03pd1sq22 Linagora (France)'),
(18045, 'https://ror.org/03pdkyj36', 'no_lang_code', 1, 'https://ror.org/03pdkyj36 Evening Star Productions (United States)'),
(18046, 'https://ror.org/03pejb093', 'en', 1, 'https://ror.org/03pejb093 National Research Development Institute for Animal Biology and Nutrition'),
(18047, 'https://ror.org/03pja1237', 'en', 1, 'https://ror.org/03pja1237 Yuba City Unified School District'),
(18048, 'https://ror.org/03pkvgf29', 'no_lang_code', 1, 'https://ror.org/03pkvgf29 Cyke (United States)'),
(18049, 'https://ror.org/03pmf2g70', 'no_lang_code', 1, 'https://ror.org/03pmf2g70 Fdt Depuratori d'' Acqua (Italy)'),
(18050, 'https://ror.org/03pmmsa77', 'de', 1, 'https://ror.org/03pmmsa77 Kooperationsstelle Hamburg'),
(18051, 'https://ror.org/03pnd9115', 'en', 1, 'https://ror.org/03pnd9115 Community Foundation'),
(18052, 'https://ror.org/03pnx3e94', 'fr', 1, 'https://ror.org/03pnx3e94 Centre d''Ɖtudes et de Recherches de l''Industrie du BĆ©ton'),
(18053, 'https://ror.org/03pr40c41', 'en', 1, 'https://ror.org/03pr40c41 Red Devils'),
(18054, 'https://ror.org/03prbmy37', 'en', 1, 'https://ror.org/03prbmy37 Women Against Rape'),
(18055, 'https://ror.org/03prbp808', 'cs', 1, 'https://ror.org/03prbp808 Czech Television ČeskÔ televize'),
(18056, 'https://ror.org/03pt2cx46', 'no_lang_code', 1, 'https://ror.org/03pt2cx46 Films of Record'),
(18057, 'https://ror.org/03px39j76', 'en', 1, 'https://ror.org/03px39j76 Belgian Institute of Management Accountants & Controllers'),
(18058, 'https://ror.org/03px3wr77', 'en', 1, 'https://ror.org/03px3wr77 Danish Academy of Technical Sciences'),
(18059, 'https://ror.org/03py22436', 'no_lang_code', 1, 'https://ror.org/03py22436 Zodiac Aerospace (United States)'),
(18060, 'https://ror.org/03pydk223', 'en', 1, 'https://ror.org/03pydk223 Beijing Transportation Research Center'),
(18061, 'https://ror.org/03q3bdj78', 'no_lang_code', 1, 'https://ror.org/03q3bdj78 Ericsson (United States)'),
(18062, 'https://ror.org/03q4r8597', 'en', 1, 'https://ror.org/03q4r8597 St. Charles Foundation'),
(18063, 'https://ror.org/03q4ysy37', 'en', 1, 'https://ror.org/03q4ysy37 Amistades'),
(18064, 'https://ror.org/03q5mqx63', 'en', 1, 'https://ror.org/03q5mqx63 California Health and Human Services Agency'),
(18065, 'https://ror.org/03q5psq50', 'no_lang_code', 1, 'https://ror.org/03q5psq50 EDI Group (United Kingdom)'),
(18066, 'https://ror.org/03q7dzc06', 'en', 1, 'https://ror.org/03q7dzc06 Breakfast Club'),
(18067, 'https://ror.org/03q9x9z62', 'pt', 1, 'https://ror.org/03q9x9z62 Centro de Formação Profissional para o Sector Alimentar'),
(18068, 'https://ror.org/03qa74b49', 'no_lang_code', 1, 'https://ror.org/03qa74b49 ICTS (United Kingdom)'),
(18069, 'https://ror.org/03qc7cz08', 'no_lang_code', 1, 'https://ror.org/03qc7cz08 Diversified Maintenance Systems (United States)'),
(18070, 'https://ror.org/03qemwx69', 'no_lang_code', 1, 'https://ror.org/03qemwx69 Wolters Kluwer (Netherlands)'),
(18071, 'https://ror.org/03qfyes53', 'no_lang_code', 1, 'https://ror.org/03qfyes53 Interaction Design (United Kingdom)'),
(18072, 'https://ror.org/03qg0dp28', 'no_lang_code', 1, 'https://ror.org/03qg0dp28 Agora Conseil'),
(18073, 'https://ror.org/03qgkkv45', 'en', 1, 'https://ror.org/03qgkkv45 Police Scotland'),
(18074, 'https://ror.org/03qgqvs90', 'en', 1, 'https://ror.org/03qgqvs90 American Alliance of Museums'),
(18075, 'https://ror.org/03qm16g93', 'no_lang_code', 1, 'https://ror.org/03qm16g93 Aluminium Surface Engineering (United Kingdom)'),
(18076, 'https://ror.org/03qnzan29', 'no_lang_code', 1, 'https://ror.org/03qnzan29 ATARD Defense and Aerospace Industry'),
(18077, 'https://ror.org/03qpmfz94', 'no_lang_code', 1, 'https://ror.org/03qpmfz94 GenetiVision (United States)'),
(18078, 'https://ror.org/03qraer96', 'en', 1, 'https://ror.org/03qraer96 Council of Prairie and Pacific University Libraries'),
(18079, 'https://ror.org/03qsq2n78', 'no_lang_code', 1, 'https://ror.org/03qsq2n78 DVC (Belgium)'),
(18080, 'https://ror.org/03qtxy027', 'en', 1, 'https://ror.org/03qtxy027 Fonds voor Wetenschappelijk Onderzoek - Vlaanderen Research Foundation - Flanders'),
(18081, 'https://ror.org/03qw1d968', 'no_lang_code', 1, 'https://ror.org/03qw1d968 PSI Group (Belgium)'),
(18082, 'https://ror.org/03qw7se63', 'en', 1, 'https://ror.org/03qw7se63 Soledad Community Health Care District Foundation'),
(18083, 'https://ror.org/03qxmr865', 'no_lang_code', 1, 'https://ror.org/03qxmr865 Amanova (Slovenia)'),
(18084, 'https://ror.org/03qyvqf30', 'en', 1, 'https://ror.org/03qyvqf30 IS practice'),
(18085, 'https://ror.org/03r1ch818', 'en', 1, 'https://ror.org/03r1ch818 Indiana Institute of Technology'),
(18086, 'https://ror.org/03r2fj775', 'en', 1, 'https://ror.org/03r2fj775 Maine Audubon'),
(18087, 'https://ror.org/03r41zp91', 'no_lang_code', 1, 'https://ror.org/03r41zp91 DAS Environmental Expert (Germany)'),
(18088, 'https://ror.org/03r516865', 'no_lang_code', 1, 'https://ror.org/03r516865 Informatizacija Energetika Avtomatizacija (Slovenia)'),
(18089, 'https://ror.org/03r51h682', 'no_lang_code', 1, 'https://ror.org/03r51h682 Clear Communication Associates'),
(18090, 'https://ror.org/03r8kkn98', 'en', 1, 'https://ror.org/03r8kkn98 L.E. Phillips Memorial Public Library'),
(18091, 'https://ror.org/03rcdym39', 'en', 1, 'https://ror.org/03rcdym39 Empower Abilities'),
(18092, 'https://ror.org/03rce1k45', 'en', 1, 'https://ror.org/03rce1k45 Daniel Boone Regional Library'),
(18093, 'https://ror.org/03rf62a76', 'no_lang_code', 1, 'https://ror.org/03rf62a76 Imagination Technologies (United Kingdom)'),
(18094, 'https://ror.org/03rjyn861', 'en', 1, 'https://ror.org/03rjyn861 Zekel Healthcare'),
(18095, 'https://ror.org/03rqvr941', 'no_lang_code', 1, 'https://ror.org/03rqvr941 Circadian (United States)'),
(18096, 'https://ror.org/03rqwpv17', 'no_lang_code', 1, 'https://ror.org/03rqwpv17 Amcor (Switzerland)'),
(18097, 'https://ror.org/03rsh9n69', 'en', 1, 'https://ror.org/03rsh9n69 StarRecreation'),
(18098, 'https://ror.org/03rt32119', 'no_lang_code', 1, 'https://ror.org/03rt32119 Caesar Systems (United Kingdom)'),
(18099, 'https://ror.org/03rt9jf88', 'no_lang_code', 1, 'https://ror.org/03rt9jf88 Austrian Competence Centre of Food Safety Lebensmittelversuchsanstalt'),
(18100, 'https://ror.org/03rw5mv34', 'en', 1, 'https://ror.org/03rw5mv34 Colorado Coalition for the Homeless'),
(18101, 'https://ror.org/03rwh4x08', 'no_lang_code', 1, 'https://ror.org/03rwh4x08 HRS Spiratube (Spain)'),
(18102, 'https://ror.org/03rxv1p12', 'en', 1, 'https://ror.org/03rxv1p12 Hannibal–LaGrange University'),
(18103, 'https://ror.org/03s0stn41', 'it', 1, 'https://ror.org/03s0stn41 Confederazione Italiana della Piccola e Media Industria'),
(18104, 'https://ror.org/03s1f5p42', 'en', 1, 'https://ror.org/03s1f5p42 Thohoyandou Victim Empowerment Programme'),
(18105, 'https://ror.org/03s1jks46', 'no_lang_code', 1, 'https://ror.org/03s1jks46 Hero EspaƱa (Spain)'),
(18106, 'https://ror.org/03s24wa94', 'en', 1, 'https://ror.org/03s24wa94 Missouri Department of Natural Resources'),
(18107, 'https://ror.org/03s25h048', 'en', 1, 'https://ror.org/03s25h048 European Steel Association'),
(18108, 'https://ror.org/03s2y3a28', 'en', 1, 'https://ror.org/03s2y3a28 Touro Infirmary Foundation'),
(18109, 'https://ror.org/03s48cw66', 'en', 1, 'https://ror.org/03s48cw66 SBH Behavioral Health'),
(18110, 'https://ror.org/03s538y47', 'en', 1, 'https://ror.org/03s538y47 Dallas Independent School District'),
(18111, 'https://ror.org/03s593324', 'en', 1, 'https://ror.org/03s593324 Geauga County Public Library'),
(18112, 'https://ror.org/03s5wqn16', 'no_lang_code', 1, 'https://ror.org/03s5wqn16 FilmLight (United Kingdom)'),
(18113, 'https://ror.org/03s68kq02', 'en', 1, 'https://ror.org/03s68kq02 Grossmont Cuyamaca Community College District'),
(18114, 'https://ror.org/03s727m55', 'en', 1, 'https://ror.org/03s727m55 Western DuPage Special Recreation Association'),
(18115, 'https://ror.org/03s917094', 'en', 1, 'https://ror.org/03s917094 Community Counseling Institute'),
(18116, 'https://ror.org/03sarta97', 'no_lang_code', 1, 'https://ror.org/03sarta97 Maxwell Technologies (Switzerland)'),
(18117, 'https://ror.org/03sb41874', 'en', 1, 'https://ror.org/03sb41874 Arlington Heights Memorial Library'),
(18118, 'https://ror.org/03sb44z08', 'no_lang_code', 1, 'https://ror.org/03sb44z08 Quantum Design (Germany)'),
(18119, 'https://ror.org/03sjv2g98', 'no_lang_code', 1, 'https://ror.org/03sjv2g98 Applied Resources (United States)'),
(18120, 'https://ror.org/03sjyg353', 'no_lang_code', 1, 'https://ror.org/03sjyg353 Diagnostic Biochips (United States)'),
(18121, 'https://ror.org/03snc5898', 'no_lang_code', 1, 'https://ror.org/03snc5898 ioGenetics (United States)'),
(18122, 'https://ror.org/03snfqm79', 'en', 1, 'https://ror.org/03snfqm79 Lancashire County Council'),
(18123, 'https://ror.org/03ss97438', 'no_lang_code', 1, 'https://ror.org/03ss97438 CenterLine (Canada)'),
(18124, 'https://ror.org/03ssm0977', 'no_lang_code', 1, 'https://ror.org/03ssm0977 Cellbond (United Kingdom)'),
(18125, 'https://ror.org/03stcpv37', 'no_lang_code', 1, 'https://ror.org/03stcpv37 Cummins (United Kingdom)'),
(18126, 'https://ror.org/03t15zy94', 'no_lang_code', 1, 'https://ror.org/03t15zy94 LifeTec Group (Netherlands)'),
(18127, 'https://ror.org/03t1snc02', 'en', 1, 'https://ror.org/03t1snc02 Advocate South Suburban Hospital'),
(18128, 'https://ror.org/03t1w6410', 'en', 1, 'https://ror.org/03t1w6410 WISPALS Library Consortium'),
(18129, 'https://ror.org/03t26ts93', 'no_lang_code', 1, 'https://ror.org/03t26ts93 Imatecno (Italy)'),
(18130, 'https://ror.org/03t2egq54', 'en', 1, 'https://ror.org/03t2egq54 Regional Medical Center'),
(18131, 'https://ror.org/03t2hta05', 'fr', 1, 'https://ror.org/03t2hta05 Laboratoire d''Analyses Génétiques pour les Espèces Animales'),
(18132, 'https://ror.org/03t2wy197', 'no_lang_code', 1, 'https://ror.org/03t2wy197 HydroLogic (Netherlands)'),
(18133, 'https://ror.org/03t3ktm93', 'no_lang_code', 1, 'https://ror.org/03t3ktm93 Holonix (Italy)'),
(18134, 'https://ror.org/03t496v77', 'no_lang_code', 1, 'https://ror.org/03t496v77 Virovek (United States)'),
(18135, 'https://ror.org/03t4qcg79', 'no_lang_code', 1, 'https://ror.org/03t4qcg79 Royal BAM Group (United Kingdom)'),
(18136, 'https://ror.org/03t6r2q91', 'no_lang_code', 1, 'https://ror.org/03t6r2q91 Ec3 NetWorks (Austria)'),
(18137, 'https://ror.org/03t8x1c03', 'no_lang_code', 1, 'https://ror.org/03t8x1c03 Aalterpaint (Belgium)'),
(18138, 'https://ror.org/03t95vv46', 'no_lang_code', 1, 'https://ror.org/03t95vv46 Gate Fuels (United States)'),
(18139, 'https://ror.org/03t95yr58', 'no_lang_code', 1, 'https://ror.org/03t95yr58 BioClinica (United States)'),
(18140, 'https://ror.org/03ta6rc77', 'no_lang_code', 1, 'https://ror.org/03ta6rc77 Lloyds Banking Group (United Kingdom)'),
(18141, 'https://ror.org/03tafg684', 'no_lang_code', 1, 'https://ror.org/03tafg684 Clark-MXR (United States)'),
(18142, 'https://ror.org/03tap5z28', 'no_lang_code', 1, 'https://ror.org/03tap5z28 Dairygold Co-Operative Society (Ireland)'),
(18143, 'https://ror.org/03tb49961', 'no_lang_code', 1, 'https://ror.org/03tb49961 Elektrobit (Finland)'),
(18144, 'https://ror.org/03tc4hb20', 'no_lang_code', 1, 'https://ror.org/03tc4hb20 Hessen Agentur (Germany)'),
(18145, 'https://ror.org/03tdxyb14', 'no_lang_code', 1, 'https://ror.org/03tdxyb14 ChK Group (United States)'),
(18146, 'https://ror.org/03tg0tp84', 'en', 1, 'https://ror.org/03tg0tp84 Institute for the Study of Societies and Knowledge Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за изслеГване на обществата Šø знанието'),
(18147, 'https://ror.org/03tgve420', 'en', 1, 'https://ror.org/03tgve420 Cielo Institute'),
(18148, 'https://ror.org/03tgxkn38', 'no_lang_code', 1, 'https://ror.org/03tgxkn38 Atlantic Industries (Canada)'),
(18149, 'https://ror.org/03thqnc26', 'no_lang_code', 1, 'https://ror.org/03thqnc26 Aircraft Development and Systems Engineering (Netherlands)'),
(18150, 'https://ror.org/03tjjy644', 'en', 1, 'https://ror.org/03tjjy644 Greater West Bloomfield Historical Society'),
(18151, 'https://ror.org/03tkh4446', 'en', 1, 'https://ror.org/03tkh4446 College of Southern Maryland'),
(18152, 'https://ror.org/03tmcyr03', 'en', 1, 'https://ror.org/03tmcyr03 Hartford Public Schools'),
(18153, 'https://ror.org/03tmjzy81', 'en', 1, 'https://ror.org/03tmjzy81 Ministerstwo Kultury i Dziedzictwa Narodowego Ministry of Culture and National Heritage'),
(18154, 'https://ror.org/03tnb9s98', 'no_lang_code', 1, 'https://ror.org/03tnb9s98 Holo3'),
(18155, 'https://ror.org/03tngxx72', 'no_lang_code', 1, 'https://ror.org/03tngxx72 Midwest Tape (United States)'),
(18156, 'https://ror.org/03tnncq39', 'no_lang_code', 1, 'https://ror.org/03tnncq39 Enkon (Turkey)'),
(18157, 'https://ror.org/03trkbn45', 'en', 1, 'https://ror.org/03trkbn45 Congressional Budget Office'),
(18158, 'https://ror.org/03tv3cs72', 'en', 1, 'https://ror.org/03tv3cs72 The Washington Institute for Near East Policy'),
(18159, 'https://ror.org/03tx9ef16', 'no_lang_code', 1, 'https://ror.org/03tx9ef16 Materia (United States)'),
(18160, 'https://ror.org/03tx9qd31', 'en', 1, 'https://ror.org/03tx9qd31 Gulf of Maine Research Institute'),
(18161, 'https://ror.org/03ty9nf77', 'no_lang_code', 1, 'https://ror.org/03ty9nf77 Bruker (United Kingdom)'),
(18162, 'https://ror.org/03tz7dc68', 'no_lang_code', 1, 'https://ror.org/03tz7dc68 Total (Italy)'),
(18163, 'https://ror.org/03tzy5638', 'no_lang_code', 1, 'https://ror.org/03tzy5638 Link2Energy (United Kingdom)'),
(18164, 'https://ror.org/03v1rmf39', 'no_lang_code', 1, 'https://ror.org/03v1rmf39 Electron Energy Corporation (United States)'),
(18165, 'https://ror.org/03v2e2v10', 'en', 1, 'https://ror.org/03v2e2v10 Nederland Voedsel- en Waren Autoriteit Netherlands Food and Consumer Product Safety Authority'),
(18166, 'https://ror.org/03v5b4741', 'no_lang_code', 1, 'https://ror.org/03v5b4741 Ella-Cs (Czechia)'),
(18167, 'https://ror.org/03v5kxx62', 'en', 1, 'https://ror.org/03v5kxx62 Farmworker Justice'),
(18168, 'https://ror.org/03v79p997', 'no_lang_code', 1, 'https://ror.org/03v79p997 Cidete (Spain)'),
(18169, 'https://ror.org/03v7mfg33', 'en', 1, 'https://ror.org/03v7mfg33 Legacy Community Health Services'),
(18170, 'https://ror.org/03v7mmm26', 'en', 1, 'https://ror.org/03v7mmm26 Bundesamt für Sicherheit in der Informationstechnik Federal Office for Information Security'),
(18171, 'https://ror.org/03v7zdq71', 'no_lang_code', 1, 'https://ror.org/03v7zdq71 Encraft (United Kingdom)'),
(18172, 'https://ror.org/03v8atx30', 'en', 1, 'https://ror.org/03v8atx30 College of Lake County'),
(18173, 'https://ror.org/03vcdbg75', 'no_lang_code', 1, 'https://ror.org/03vcdbg75 ATUM (United States)'),
(18174, 'https://ror.org/03vcezw91', 'en', 1, 'https://ror.org/03vcezw91 California Coalition Against Sexual Assault'),
(18175, 'https://ror.org/03vcgp521', 'no_lang_code', 1, 'https://ror.org/03vcgp521 Ripamonti'),
(18176, 'https://ror.org/03vd5fy29', 'no_lang_code', 1, 'https://ror.org/03vd5fy29 Cezanne (Italy)'),
(18177, 'https://ror.org/03ve07f57', 'no_lang_code', 1, 'https://ror.org/03ve07f57 Kongsberg Gruppen (Norway)'),
(18178, 'https://ror.org/03ve6sf73', 'no_lang_code', 1, 'https://ror.org/03ve6sf73 BioSystem (Germany)'),
(18179, 'https://ror.org/03vghmn25', 'no_lang_code', 1, 'https://ror.org/03vghmn25 Cementec Industries (Canada)'),
(18180, 'https://ror.org/03vm0h048', 'no_lang_code', 1, 'https://ror.org/03vm0h048 Choc Edge (United Kingdom)'),
(18181, 'https://ror.org/03vqa3g80', 'en', 1, 'https://ror.org/03vqa3g80 Species360'),
(18182, 'https://ror.org/03vqqr080', 'no_lang_code', 1, 'https://ror.org/03vqqr080 Sapna NYC'),
(18183, 'https://ror.org/03vqwnv59', 'en', 1, 'https://ror.org/03vqwnv59 Grand Rapids Public Museum'),
(18184, 'https://ror.org/03vrea996', 'no_lang_code', 1, 'https://ror.org/03vrea996 Source BioScience (Germany)'),
(18185, 'https://ror.org/03vtekn80', 'fr', 1, 'https://ror.org/03vtekn80 Association pour la Recherche-DƩveloppement de l''Enseignement MultimƩdia et Interactif'),
(18186, 'https://ror.org/03vttd812', 'en', 1, 'https://ror.org/03vttd812 Connecticut Education Association'),
(18187, 'https://ror.org/03vvh8670', 'en', 1, 'https://ror.org/03vvh8670 Complete Home Care'),
(18188, 'https://ror.org/03vyrpd61', 'no_lang_code', 1, 'https://ror.org/03vyrpd61 GFI InformƔtica (Spain)'),
(18189, 'https://ror.org/03w08v283', 'no_lang_code', 1, 'https://ror.org/03w08v283 Gram & Juhl (Denmark)'),
(18190, 'https://ror.org/03w1c1p82', 'no_lang_code', 1, 'https://ror.org/03w1c1p82 Huntsman (Belgium)'),
(18191, 'https://ror.org/03w2zhm87', 'no_lang_code', 1, 'https://ror.org/03w2zhm87 DuPont (Germany)'),
(18192, 'https://ror.org/03w3w9873', 'en', 1, 'https://ror.org/03w3w9873 Maryland Public Television'),
(18193, 'https://ror.org/03w60e920', 'no_lang_code', 1, 'https://ror.org/03w60e920 Magee Scientific (United States)'),
(18194, 'https://ror.org/03w80jr87', 'no_lang_code', 1, 'https://ror.org/03w80jr87 Ecosil Technologies (United States)'),
(18195, 'https://ror.org/03w8j7142', 'en', 1, 'https://ror.org/03w8j7142 Windber Research Institute'),
(18196, 'https://ror.org/03wadyw29', 'no_lang_code', 1, 'https://ror.org/03wadyw29 Parrot (France)'),
(18197, 'https://ror.org/03wawr393', 'no_lang_code', 1, 'https://ror.org/03wawr393 CarboNix (United States)'),
(18198, 'https://ror.org/03wbjgx32', 'en', 1, 'https://ror.org/03wbjgx32 Robert Louis Stevenson School'),
(18199, 'https://ror.org/03wbpr740', 'no_lang_code', 1, 'https://ror.org/03wbpr740 Innovative Solution In Space (Netherlands)'),
(18200, 'https://ror.org/03wdd2732', 'no_lang_code', 1, 'https://ror.org/03wdd2732 FIP Industriale (Italy)'),
(18201, 'https://ror.org/03wde7j36', 'no_lang_code', 1, 'https://ror.org/03wde7j36 Averbis (Germany)'),
(18202, 'https://ror.org/03wdfz437', 'en', 1, 'https://ror.org/03wdfz437 Valencia Port'),
(18203, 'https://ror.org/03wfejh61', 'no_lang_code', 1, 'https://ror.org/03wfejh61 J.M. Smucker Company (United States)'),
(18204, 'https://ror.org/03wgq5m90', 'en', 1, 'https://ror.org/03wgq5m90 Massachusetts Department of Higher Education'),
(18205, 'https://ror.org/03wjvv117', 'en', 1, 'https://ror.org/03wjvv117 IGAD Climate Prediction and Applications Center'),
(18206, 'https://ror.org/03wk3n561', 'en', 1, 'https://ror.org/03wk3n561 Biblioteca PĆŗblica de Cincinnati Public Library of Cincinnati and Hamilton County'),
(18207, 'https://ror.org/03wk52r49', 'no_lang_code', 1, 'https://ror.org/03wk52r49 Stella Therapeutics (United States)'),
(18208, 'https://ror.org/03wkdj490', 'no_lang_code', 1, 'https://ror.org/03wkdj490 RGenix (United States)'),
(18209, 'https://ror.org/03wm8rh48', 'no_lang_code', 1, 'https://ror.org/03wm8rh48 Canam Group (Canada)'),
(18210, 'https://ror.org/03wn0d080', 'en', 1, 'https://ror.org/03wn0d080 Morton College'),
(18211, 'https://ror.org/03wq0ts29', 'en', 1, 'https://ror.org/03wq0ts29 College of the Redwoods'),
(18212, 'https://ror.org/03wqd2h57', 'en', 1, 'https://ror.org/03wqd2h57 Phillips Graduate Institute'),
(18213, 'https://ror.org/03ws6g685', 'no_lang_code', 1, 'https://ror.org/03ws6g685 Aciturri (Spain)'),
(18214, 'https://ror.org/03ws7wb17', 'no_lang_code', 1, 'https://ror.org/03ws7wb17 Hamakua-Kohala Health'),
(18215, 'https://ror.org/03wtwre51', 'en', 1, 'https://ror.org/03wtwre51 Decatur Memorial Hospital'),
(18216, 'https://ror.org/03wv11p67', 'no_lang_code', 1, 'https://ror.org/03wv11p67 InterveXion Therapeutics (United States)'),
(18217, 'https://ror.org/03ww5p627', 'en', 1, 'https://ror.org/03ww5p627 Florence Crittenton Agency'),
(18218, 'https://ror.org/03wwts623', 'en', 1, 'https://ror.org/03wwts623 Public Libraries of Saginaw'),
(18219, 'https://ror.org/03wxz7j86', 'no_lang_code', 1, 'https://ror.org/03wxz7j86 Diamond Aircraft Industries (Austria)'),
(18220, 'https://ror.org/03wy6f566', 'en', 1, 'https://ror.org/03wy6f566 Georgia Parent Support Network'),
(18221, 'https://ror.org/03wykcx19', 'en', 1, 'https://ror.org/03wykcx19 Association ForestiĆØre Canadienne Canadian Forestry Association'),
(18222, 'https://ror.org/03wyknn52', 'no_lang_code', 1, 'https://ror.org/03wyknn52 Inaccess (Greece)'),
(18223, 'https://ror.org/03x0c7470', 'no_lang_code', 1, 'https://ror.org/03x0c7470 European Research Services'),
(18224, 'https://ror.org/03x2x0e06', 'en', 1, 'https://ror.org/03x2x0e06 Elgin Community College'),
(18225, 'https://ror.org/03x320790', 'no_lang_code', 1, 'https://ror.org/03x320790 Dieffe (Italy)'),
(18226, 'https://ror.org/03x497b72', 'en', 1, 'https://ror.org/03x497b72 Miami County Museum'),
(18227, 'https://ror.org/03x4rma83', 'no_lang_code', 1, 'https://ror.org/03x4rma83 Aztec Systems (United States)'),
(18228, 'https://ror.org/03x5r0t69', 'no_lang_code', 1, 'https://ror.org/03x5r0t69 GreenField Specialty Alcolhols (Canada)'),
(18229, 'https://ror.org/03x67zn13', 'no_lang_code', 1, 'https://ror.org/03x67zn13 Cadauta Engineering (Italy)'),
(18230, 'https://ror.org/03x7vv863', 'no_lang_code', 1, 'https://ror.org/03x7vv863 Novocaptis (Greece)'),
(18231, 'https://ror.org/03x86fq67', 'no_lang_code', 1, 'https://ror.org/03x86fq67 Xen Biofluidx (United States)'),
(18232, 'https://ror.org/03x8f0b85', 'no_lang_code', 1, 'https://ror.org/03x8f0b85 Hi-Z Technology (United States)'),
(18233, 'https://ror.org/03x9snd86', 'no_lang_code', 1, 'https://ror.org/03x9snd86 PeerJ (United States)'),
(18234, 'https://ror.org/03xaz7s88', 'en', 1, 'https://ror.org/03xaz7s88 Claremont Colleges'),
(18235, 'https://ror.org/03xb7n045', 'en', 1, 'https://ror.org/03xb7n045 St. Clair County Community College'),
(18236, 'https://ror.org/03xdg2f86', 'no_lang_code', 1, 'https://ror.org/03xdg2f86 Flame Spray (Italy)'),
(18237, 'https://ror.org/03xdnx124', 'no_lang_code', 1, 'https://ror.org/03xdnx124 Cortexica (United Kingdom)'),
(18238, 'https://ror.org/03xfskc23', 'no_lang_code', 1, 'https://ror.org/03xfskc23 Advanced Environmental Technologies (Portugal)'),
(18239, 'https://ror.org/03xjr3d37', 'no_lang_code', 1, 'https://ror.org/03xjr3d37 HaloSource (United States)'),
(18240, 'https://ror.org/03xnb5h64', 'no_lang_code', 1, 'https://ror.org/03xnb5h64 FerRobotics Compliant Robot Technology (Austria)'),
(18241, 'https://ror.org/03xq46679', 'no_lang_code', 1, 'https://ror.org/03xq46679 Hochtief (Germany) Hochtief Aktiengesellschaft'),
(18242, 'https://ror.org/03xr60403', 'en', 1, 'https://ror.org/03xr60403 Terra State Community College'),
(18243, 'https://ror.org/03xsa3q34', 'en', 1, 'https://ror.org/03xsa3q34 Roper St. Francis Foundation'),
(18244, 'https://ror.org/03xsax711', 'cs', 1, 'https://ror.org/03xsax711 Cznic'),
(18245, 'https://ror.org/03xvpr131', 'no_lang_code', 1, 'https://ror.org/03xvpr131 Jule (United States)'),
(18246, 'https://ror.org/03xwmpp53', 'no_lang_code', 1, 'https://ror.org/03xwmpp53 Aeromet International (United Kingdom)'),
(18247, 'https://ror.org/03xyjk354', 'en', 1, 'https://ror.org/03xyjk354 Peer Assistance Services'),
(18248, 'https://ror.org/03xznyg79', 'en', 1, 'https://ror.org/03xznyg79 Distance Expert'),
(18249, 'https://ror.org/03y0c3933', 'no_lang_code', 1, 'https://ror.org/03y0c3933 Environmental and Life Support Technology (United States)'),
(18250, 'https://ror.org/03y255h89', 'en', 1, 'https://ror.org/03y255h89 Washington Township Fire Department'),
(18251, 'https://ror.org/03y2be923', 'en', 1, 'https://ror.org/03y2be923 Economic Research Institute Š˜ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š½Š°ŃƒŃ‡Š½Šø ŠøŠ·ŃŠ»ŠµŠ“Š²Š°Š½ŠøŃ'),
(18252, 'https://ror.org/03y446t42', 'en', 1, 'https://ror.org/03y446t42 St. Louis Public Library'),
(18253, 'https://ror.org/03y5p2k10', 'en', 1, 'https://ror.org/03y5p2k10 Wellness House'),
(18254, 'https://ror.org/03y7gah37', 'no_lang_code', 1, 'https://ror.org/03y7gah37 Prothelia (United States)');
INSERT INTO `rors` VALUES
(18255, 'https://ror.org/03y83c407', 'no_lang_code', 1, 'https://ror.org/03y83c407 Babcock Power (United Kingdom)'),
(18256, 'https://ror.org/03yberd21', 'no_lang_code', 1, 'https://ror.org/03yberd21 DataFlow/Alaska (United States)'),
(18257, 'https://ror.org/03yc4yk34', 'no_lang_code', 1, 'https://ror.org/03yc4yk34 Avitronics Research (Greece)'),
(18258, 'https://ror.org/03yc87g51', 'en', 1, 'https://ror.org/03yc87g51 Council for Basic Education'),
(18259, 'https://ror.org/03yf4bd98', 'en', 1, 'https://ror.org/03yf4bd98 Sierra Institute for Community and Environment'),
(18260, 'https://ror.org/03yh9bm54', 'no_lang_code', 1, 'https://ror.org/03yh9bm54 AGILIS Ī‘.Ī•. Ī£Ī¤Ī‘Ī¤Ī™Ī£Ī¤Ī™ĪšĪ—Ī£ ĪšĪ‘Ī™ Ī Ī›Ī—Ī”ĪŸĪ¦ĪŸĪ”Ī™ĪšĪ—Ī£ Agilis (Greece)'),
(18261, 'https://ror.org/03yhkgk91', 'en', 1, 'https://ror.org/03yhkgk91 South West Special Recreation Association'),
(18262, 'https://ror.org/03yhnhz23', 'pt', 1, 'https://ror.org/03yhnhz23 Centro InteruniversitÔrio de História das Ciências e da Tecnologia'),
(18263, 'https://ror.org/03yk73538', 'no_lang_code', 1, 'https://ror.org/03yk73538 Doduco (Germany)'),
(18264, 'https://ror.org/03ypjf385', 'no_lang_code', 1, 'https://ror.org/03ypjf385 Neos Resources (United Kingdom)'),
(18265, 'https://ror.org/03ypk5989', 'en', 1, 'https://ror.org/03ypk5989 Green Aviation Research and Development Network'),
(18266, 'https://ror.org/03yrced67', 'no_lang_code', 1, 'https://ror.org/03yrced67 Blue Wave Semiconductors (United States)'),
(18267, 'https://ror.org/03yvy0733', 'no_lang_code', 1, 'https://ror.org/03yvy0733 Hightec MC (Switzerland)'),
(18268, 'https://ror.org/03ywb2q15', 'en', 1, 'https://ror.org/03ywb2q15 Lafayette School Corporation'),
(18269, 'https://ror.org/03yxgvp63', 'no_lang_code', 1, 'https://ror.org/03yxgvp63 IGI Global (United States)'),
(18270, 'https://ror.org/03yxn7r03', 'no_lang_code', 1, 'https://ror.org/03yxn7r03 Pittini Group (Italy)'),
(18271, 'https://ror.org/03z0rr544', 'en', 1, 'https://ror.org/03z0rr544 Sanford Health Foundation'),
(18272, 'https://ror.org/03z1f5h46', 'no_lang_code', 1, 'https://ror.org/03z1f5h46 CompaƱƭa IbƩrica De Paneles SintƩticos (Spain)'),
(18273, 'https://ror.org/03z2p9q19', 'en', 1, 'https://ror.org/03z2p9q19 Rhode Island Cancer Council'),
(18274, 'https://ror.org/03z2rq360', 'no_lang_code', 1, 'https://ror.org/03z2rq360 Camfridge (United Kingdom)'),
(18275, 'https://ror.org/03z3dqe20', 'en', 1, 'https://ror.org/03z3dqe20 Educopia Institute'),
(18276, 'https://ror.org/03z3n0g53', 'no_lang_code', 1, 'https://ror.org/03z3n0g53 Brainstorm (Spain)'),
(18277, 'https://ror.org/03z5q7c50', 'fr', 1, 'https://ror.org/03z5q7c50 Chambre de Commerce et d''Industrie Pays de la Loire'),
(18278, 'https://ror.org/03z7ay868', 'no_lang_code', 1, 'https://ror.org/03z7ay868 Atout Vent (France)'),
(18279, 'https://ror.org/03z7rky51', 'no_lang_code', 1, 'https://ror.org/03z7rky51 CEI-Bois'),
(18280, 'https://ror.org/03z97cd47', 'es', 1, 'https://ror.org/03z97cd47 Fundació Privada Centre CIM'),
(18281, 'https://ror.org/03z9rt353', 'en', 1, 'https://ror.org/03z9rt353 American Association of State Colleges and Universities'),
(18282, 'https://ror.org/03zbr5052', 'en', 1, 'https://ror.org/03zbr5052 Spectrum Neuroscience and Treatment Institute'),
(18283, 'https://ror.org/03zd0v772', 'no_lang_code', 1, 'https://ror.org/03zd0v772 Cv Cryptovision (Germany)'),
(18284, 'https://ror.org/03zdah694', 'no_lang_code', 1, 'https://ror.org/03zdah694 Qualiber (United States)'),
(18285, 'https://ror.org/03zh9hp36', 'en', 1, 'https://ror.org/03zh9hp36 William S. Hall Psychiatric Institute'),
(18286, 'https://ror.org/03zh9kr32', 'en', 1, 'https://ror.org/03zh9kr32 American Sokol'),
(18287, 'https://ror.org/03zjprt16', 'en', 1, 'https://ror.org/03zjprt16 Institute for Cognitive Prosthetics'),
(18288, 'https://ror.org/03zm24q55', 'no_lang_code', 1, 'https://ror.org/03zm24q55 Canadian Bank Note Company (Canada)'),
(18289, 'https://ror.org/03zp7nb85', 'no_lang_code', 1, 'https://ror.org/03zp7nb85 Active Technologies (Italy)'),
(18290, 'https://ror.org/03zs6xb29', 'en', 1, 'https://ror.org/03zs6xb29 Innovate Manitoba'),
(18291, 'https://ror.org/03ztrsx19', 'en', 1, 'https://ror.org/03ztrsx19 Poway Unified School District'),
(18292, 'https://ror.org/03ztvfr23', 'no_lang_code', 1, 'https://ror.org/03ztvfr23 Global Inkjet Systems (United Kingdom)'),
(18293, 'https://ror.org/03zvc9c15', 'no_lang_code', 1, 'https://ror.org/03zvc9c15 Hirst Magnetic Instruments (United Kingdom)'),
(18294, 'https://ror.org/03zwh7x79', 'no_lang_code', 1, 'https://ror.org/03zwh7x79 Fibre Extrusion Technology (United Kingdom)'),
(18295, 'https://ror.org/0400w6m91', 'no_lang_code', 1, 'https://ror.org/0400w6m91 Basler & Hofmann (Switzerland)'),
(18296, 'https://ror.org/0401a6w30', 'en', 1, 'https://ror.org/0401a6w30 Keys for Networking'),
(18297, 'https://ror.org/0402bxc90', 'no_lang_code', 1, 'https://ror.org/0402bxc90 Barriquand (France)'),
(18298, 'https://ror.org/0403wzz51', 'en', 1, 'https://ror.org/0403wzz51 European Aquaculture Technology and Innovation Platform'),
(18299, 'https://ror.org/0404q6692', 'en', 1, 'https://ror.org/0404q6692 Valley Medical Center Foundation'),
(18300, 'https://ror.org/0405v6d59', 'no_lang_code', 1, 'https://ror.org/0405v6d59 Elektrobit (Austria)'),
(18301, 'https://ror.org/040730h60', 'en', 1, 'https://ror.org/040730h60 Waukesha Public Library'),
(18302, 'https://ror.org/04083zv18', 'no_lang_code', 1, 'https://ror.org/04083zv18 Intelligent Mechatronic Systems (United States)'),
(18303, 'https://ror.org/0408a5x16', 'no_lang_code', 1, 'https://ror.org/0408a5x16 Bühler (Germany)'),
(18304, 'https://ror.org/0408c7e30', 'it', 1, 'https://ror.org/0408c7e30 Associazione Italiana Prove non Distruttive'),
(18305, 'https://ror.org/0408zq502', 'en', 1, 'https://ror.org/0408zq502 Institute of Social Innovations'),
(18306, 'https://ror.org/040cyhh47', 'no_lang_code', 1, 'https://ror.org/040cyhh47 Family Works'),
(18307, 'https://ror.org/040dbbn57', 'no_lang_code', 1, 'https://ror.org/040dbbn57 HIT09 (Italy)'),
(18308, 'https://ror.org/040emvj36', 'no_lang_code', 1, 'https://ror.org/040emvj36 IDI Eikon (Spain)'),
(18309, 'https://ror.org/040jdz280', 'en', 1, 'https://ror.org/040jdz280 National Federation of Advanced Information Services'),
(18310, 'https://ror.org/040jf9322', 'en', 1, 'https://ror.org/040jf9322 Centre d''Ʃtudes de populations, de pauvretƩ et de politiques socio-Ʃconomiques Luxembourg Institute of Socio-Economic Research'),
(18311, 'https://ror.org/040jnxh95', 'no_lang_code', 1, 'https://ror.org/040jnxh95 AliƩnorEU'),
(18312, 'https://ror.org/040k7ca93', 'en', 1, 'https://ror.org/040k7ca93 World Education'),
(18313, 'https://ror.org/040mhcr37', 'no_lang_code', 1, 'https://ror.org/040mhcr37 Roland Mills United (Germany) Rolandmühle'),
(18314, 'https://ror.org/040q70c97', 'no_lang_code', 1, 'https://ror.org/040q70c97 Aurrenak (Spain)'),
(18315, 'https://ror.org/040qe3166', 'no_lang_code', 1, 'https://ror.org/040qe3166 Class Editori (Italy)'),
(18316, 'https://ror.org/040qfvc89', 'fr', 1, 'https://ror.org/040qfvc89 FƩdƩration des Plastiques et Alliances Composites'),
(18317, 'https://ror.org/040shh675', 'en', 1, 'https://ror.org/040shh675 Porter County Public Library System'),
(18318, 'https://ror.org/040shjw10', 'fr', 1, 'https://ror.org/040shjw10 Association Nationale pour la Formation Professionnelle des Adultes'),
(18319, 'https://ror.org/040tnnq16', 'en', 1, 'https://ror.org/040tnnq16 Broward County Board'),
(18320, 'https://ror.org/040xsmt05', 'en', 1, 'https://ror.org/040xsmt05 Coating Development Coating DƩveloppement'),
(18321, 'https://ror.org/040y40f79', 'it', 1, 'https://ror.org/040y40f79 Fondazione per Adroterapia Oncologica'),
(18322, 'https://ror.org/040ydq726', 'en', 1, 'https://ror.org/040ydq726 Idaho Federation of Families for Children''s Mental Health'),
(18323, 'https://ror.org/040z8en63', 'en', 1, 'https://ror.org/040z8en63 Bay Area Tumor Institute'),
(18324, 'https://ror.org/0411qha08', 'en', 1, 'https://ror.org/0411qha08 BioIndustry Association'),
(18325, 'https://ror.org/0411vej12', 'no_lang_code', 1, 'https://ror.org/0411vej12 Hill Group (United States)'),
(18326, 'https://ror.org/0414m8677', 'no_lang_code', 1, 'https://ror.org/0414m8677 Duferco (Belgium)'),
(18327, 'https://ror.org/041554441', 'no_lang_code', 1, 'https://ror.org/041554441 ConMed (Finland)'),
(18328, 'https://ror.org/0415j9862', 'no_lang_code', 1, 'https://ror.org/0415j9862 Institute for Renewable Energy (Poland)'),
(18329, 'https://ror.org/0415p9s42', 'no_lang_code', 1, 'https://ror.org/0415p9s42 DrƤger (Germany)'),
(18330, 'https://ror.org/04161kh40', 'en', 1, 'https://ror.org/04161kh40 Indiana University Kokomo'),
(18331, 'https://ror.org/0416ckt74', 'en', 1, 'https://ror.org/0416ckt74 Cancer Connection'),
(18332, 'https://ror.org/0416tx222', 'en', 1, 'https://ror.org/0416tx222 International Association for Cereal Science and Technology Internationale Gesellschaft für Getreidewissenschaft und -technologie'),
(18333, 'https://ror.org/0417eed32', 'it', 1, 'https://ror.org/0417eed32 Associazione per l''Alta Formazione Giuridico-Economica'),
(18334, 'https://ror.org/0418rrk10', 'no_lang_code', 1, 'https://ror.org/0418rrk10 Creative Action (United States)'),
(18335, 'https://ror.org/041ad9g51', 'no_lang_code', 1, 'https://ror.org/041ad9g51 EDALab (Italy)'),
(18336, 'https://ror.org/041b2r204', 'en', 1, 'https://ror.org/041b2r204 Association of Village Council Presidents'),
(18337, 'https://ror.org/041b3m426', 'en', 1, 'https://ror.org/041b3m426 Indigenous Peoples Task Force'),
(18338, 'https://ror.org/041c1w327', 'no_lang_code', 1, 'https://ror.org/041c1w327 DHL (Spain)'),
(18339, 'https://ror.org/041ch6a11', 'no_lang_code', 1, 'https://ror.org/041ch6a11 Barilla (Italy)'),
(18340, 'https://ror.org/041d53j42', 'en', 1, 'https://ror.org/041d53j42 Eesti Rahvusraamatukogu National Library of Estonia ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń библиотека Эстонии'),
(18341, 'https://ror.org/041d7g367', 'no_lang_code', 1, 'https://ror.org/041d7g367 Friuli Innovazione (Italy)'),
(18342, 'https://ror.org/041ddw474', 'en', 1, 'https://ror.org/041ddw474 Tallahassee Memorial HealthCare'),
(18343, 'https://ror.org/041dgkx86', 'en', 1, 'https://ror.org/041dgkx86 Audrain County Historical Society'),
(18344, 'https://ror.org/041dnb131', 'no_lang_code', 1, 'https://ror.org/041dnb131 CGI (Spain)'),
(18345, 'https://ror.org/041g9dd66', 'it', 1, 'https://ror.org/041g9dd66 Centro Europeo Sviluppo Applicazioni Plastiche'),
(18346, 'https://ror.org/041gnf006', 'no_lang_code', 1, 'https://ror.org/041gnf006 E-nema (Germany)'),
(18347, 'https://ror.org/041grwk58', 'en', 1, 'https://ror.org/041grwk58 Cleveland Law Library Association'),
(18348, 'https://ror.org/041hy4p77', 'no_lang_code', 1, 'https://ror.org/041hy4p77 ConocoPhillips (United Kingdom)'),
(18349, 'https://ror.org/041khxm91', 'no_lang_code', 1, 'https://ror.org/041khxm91 Vanquish Oncology (United States)'),
(18350, 'https://ror.org/041nyfq10', 'no_lang_code', 1, 'https://ror.org/041nyfq10 Mistras Group (Greece)'),
(18351, 'https://ror.org/041v7ky66', 'en', 1, 'https://ror.org/041v7ky66 American Society for Photogrammetry and Remote Sensing'),
(18352, 'https://ror.org/041w3g952', 'no_lang_code', 1, 'https://ror.org/041w3g952 Intune Networks (Ireland)'),
(18353, 'https://ror.org/041yv5j17', 'en', 1, 'https://ror.org/041yv5j17 Washington School for the Deaf'),
(18354, 'https://ror.org/04201qf96', 'no_lang_code', 1, 'https://ror.org/04201qf96 as2con (Croatia)'),
(18355, 'https://ror.org/0420ycb55', 'en', 1, 'https://ror.org/0420ycb55 Lithuanian Research and Studies Center'),
(18356, 'https://ror.org/0424v9690', 'no_lang_code', 1, 'https://ror.org/0424v9690 Heliatek (Germany)'),
(18357, 'https://ror.org/0425phg59', 'en', 1, 'https://ror.org/0425phg59 Cuesta College'),
(18358, 'https://ror.org/042656673', 'en', 1, 'https://ror.org/042656673 Agricultural Institute of Canada'),
(18359, 'https://ror.org/0429rc964', 'en', 1, 'https://ror.org/0429rc964 Shoshone-Bannock Tribes'),
(18360, 'https://ror.org/0429xrf24', 'en', 1, 'https://ror.org/0429xrf24 Canadian Science Writers Association'),
(18361, 'https://ror.org/042bat638', 'no_lang_code', 1, 'https://ror.org/042bat638 ConfometRx (United States)'),
(18362, 'https://ror.org/042bdjp78', 'no_lang_code', 1, 'https://ror.org/042bdjp78 Astato (France)'),
(18363, 'https://ror.org/042epbw18', 'no_lang_code', 1, 'https://ror.org/042epbw18 IP Group (United Kingdom)'),
(18364, 'https://ror.org/042fpk261', 'no_lang_code', 1, 'https://ror.org/042fpk261 Freudenberg (Germany)'),
(18365, 'https://ror.org/042h3a043', 'en', 1, 'https://ror.org/042h3a043 Southern Vermont College'),
(18366, 'https://ror.org/042jr0j26', 'en', 1, 'https://ror.org/042jr0j26 Derby City Council'),
(18367, 'https://ror.org/042qv2836', 'en', 1, 'https://ror.org/042qv2836 Empowerment Program'),
(18368, 'https://ror.org/042r22f45', 'en', 1, 'https://ror.org/042r22f45 Quadriplegics United Against Dependency'),
(18369, 'https://ror.org/042seb440', 'de', 1, 'https://ror.org/042seb440 Berufsfƶrderungszentrum Essen'),
(18370, 'https://ror.org/042t7yh44', 'en', 1, 'https://ror.org/042t7yh44 Women''s Hospital, School of Medicine, Zhejiang University ęµ™ę±Ÿå¤§å­¦åŒ»å­¦é™¢é™„å±žå¦‡äŗ§ē§‘åŒ»é™¢'),
(18371, 'https://ror.org/042th2969', 'no_lang_code', 1, 'https://ror.org/042th2969 Centro de Innovación de Infraestructuras Inteligentes (Spain)'),
(18372, 'https://ror.org/042th8w18', 'en', 1, 'https://ror.org/042th8w18 Iowa Wesleyan College'),
(18373, 'https://ror.org/042v2q176', 'en', 1, 'https://ror.org/042v2q176 Florida Department of Environmental Protection'),
(18374, 'https://ror.org/042w3r845', 'en', 1, 'https://ror.org/042w3r845 Scarsdale Public Schools'),
(18375, 'https://ror.org/042zjqf83', 'en', 1, 'https://ror.org/042zjqf83 Hohenstein Institute'),
(18376, 'https://ror.org/0431y1695', 'no_lang_code', 1, 'https://ror.org/0431y1695 Eppendorf (Belgium)'),
(18377, 'https://ror.org/0431zrt90', 'en', 1, 'https://ror.org/0431zrt90 Scientific Electronic Library Online'),
(18378, 'https://ror.org/0433seb41', 'no_lang_code', 1, 'https://ror.org/0433seb41 Lybradyn (United States)'),
(18379, 'https://ror.org/0433tpc78', 'en', 1, 'https://ror.org/0433tpc78 La Palma Research Centre for Future Studies'),
(18380, 'https://ror.org/043422d20', 'no_lang_code', 1, 'https://ror.org/043422d20 Itelsa (Spain)'),
(18381, 'https://ror.org/0435xdk58', 'en', 1, 'https://ror.org/0435xdk58 NERL Consortium'),
(18382, 'https://ror.org/043648k83', 'en', 1, 'https://ror.org/043648k83 China National Health Development Research Center å«ē”ŸéƒØå«ē”Ÿå‘å±•ē ”ē©¶äø­åæƒ'),
(18383, 'https://ror.org/04366aw25', 'en', 1, 'https://ror.org/04366aw25 People for Parks'),
(18384, 'https://ror.org/0437g4y96', 'no_lang_code', 1, 'https://ror.org/0437g4y96 Mega Electronics (Finland)'),
(18385, 'https://ror.org/0438kyb38', 'en', 1, 'https://ror.org/0438kyb38 Association for Psychological Science'),
(18386, 'https://ror.org/043affe91', 'no_lang_code', 1, 'https://ror.org/043affe91 Stryker (United States)'),
(18387, 'https://ror.org/043b9gp27', 'en', 1, 'https://ror.org/043b9gp27 Architect of the Capitol'),
(18388, 'https://ror.org/043bemg15', 'en', 1, 'https://ror.org/043bemg15 Lakeview College of Nursing'),
(18389, 'https://ror.org/043bxbz53', 'en', 1, 'https://ror.org/043bxbz53 Experimentarium'),
(18390, 'https://ror.org/043cevr52', 'no_lang_code', 1, 'https://ror.org/043cevr52 Gem Pharmaceuticals (United States)'),
(18391, 'https://ror.org/043dpct50', 'no_lang_code', 1, 'https://ror.org/043dpct50 Innovative Biologics (United States)'),
(18392, 'https://ror.org/043e96c15', 'en', 1, 'https://ror.org/043e96c15 Push to Walk'),
(18393, 'https://ror.org/043esfj33', 'en', 1, 'https://ror.org/043esfj33 Medical Institute for Sexual Health'),
(18394, 'https://ror.org/043fjaj52', 'no_lang_code', 1, 'https://ror.org/043fjaj52 Capita (United Kingdom)'),
(18395, 'https://ror.org/043fjtb89', 'en', 1, 'https://ror.org/043fjtb89 Coalition for Networked Information'),
(18396, 'https://ror.org/043fmt380', 'en', 1, 'https://ror.org/043fmt380 Dayton Metro Library'),
(18397, 'https://ror.org/043hjsp66', 'en', 1, 'https://ror.org/043hjsp66 P.L. Kapitza Institute for Physical Problems Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физических проблем имени П. Š›. ŠšŠ°ŠæŠøŃ†Ń‹ Š ŠŠ'),
(18398, 'https://ror.org/043m8qc33', 'no_lang_code', 1, 'https://ror.org/043m8qc33 European Institute of Printed Circuits'),
(18399, 'https://ror.org/043mrfn25', 'no_lang_code', 1, 'https://ror.org/043mrfn25 Digirad (United States)'),
(18400, 'https://ror.org/043n2ap46', 'en', 1, 'https://ror.org/043n2ap46 The School of Theoretical Modeling'),
(18401, 'https://ror.org/043pn0570', 'no_lang_code', 1, 'https://ror.org/043pn0570 Chilworth Technology (United Kingdom)'),
(18402, 'https://ror.org/043rf9d68', 'no_lang_code', 1, 'https://ror.org/043rf9d68 Europlasma (Belgium)'),
(18403, 'https://ror.org/043vm9914', 'no_lang_code', 1, 'https://ror.org/043vm9914 Dynamic Systems (United States)'),
(18404, 'https://ror.org/043xrkf48', 'no_lang_code', 1, 'https://ror.org/043xrkf48 Fomento de San SebastiƔn (Spain)'),
(18405, 'https://ror.org/043y57f64', 'en', 1, 'https://ror.org/043y57f64 Hyde Housing Association'),
(18406, 'https://ror.org/043z38488', 'no_lang_code', 1, 'https://ror.org/043z38488 Laryngograph (United Kingdom)'),
(18407, 'https://ror.org/043zcz508', 'en', 1, 'https://ror.org/043zcz508 Starfleet Academy'),
(18408, 'https://ror.org/04419vp62', 'en', 1, 'https://ror.org/04419vp62 Putnam County HomeCare & Hospice Auxiliary'),
(18409, 'https://ror.org/0441w6k76', 'no_lang_code', 1, 'https://ror.org/0441w6k76 DTK Electronics (Bulgaria)'),
(18410, 'https://ror.org/04426r665', 'en', 1, 'https://ror.org/04426r665 Morley Library'),
(18411, 'https://ror.org/0442gk010', 'no_lang_code', 1, 'https://ror.org/0442gk010 ImaTx (United States)'),
(18412, 'https://ror.org/0444akq51', 'no_lang_code', 1, 'https://ror.org/0444akq51 Now Publishers (United States)'),
(18413, 'https://ror.org/0445d9h15', 'de', 1, 'https://ror.org/0445d9h15 Institut für Mikroelektronik- und Mechatronik-Systeme'),
(18414, 'https://ror.org/0447b5h55', 'en', 1, 'https://ror.org/0447b5h55 Barrow Arctic Science Consortium'),
(18415, 'https://ror.org/044a2za73', 'en', 1, 'https://ror.org/044a2za73 Education of Young Leaders Society for Training and Development'),
(18416, 'https://ror.org/044as9138', 'no_lang_code', 1, 'https://ror.org/044as9138 IntelliView Technologies (Canada)'),
(18417, 'https://ror.org/044b6j563', 'en', 1, 'https://ror.org/044b6j563 Society of Thoracic Surgeons'),
(18418, 'https://ror.org/044b7f107', 'no_lang_code', 1, 'https://ror.org/044b7f107 BioPhage Pharma (Canada)'),
(18419, 'https://ror.org/044bdm595', 'no_lang_code', 1, 'https://ror.org/044bdm595 Hephaestus Holdings (United Kingdom)'),
(18420, 'https://ror.org/044csjs83', 'en', 1, 'https://ror.org/044csjs83 Hispanic Serving Health Professions Schools'),
(18421, 'https://ror.org/044ddr125', 'no_lang_code', 1, 'https://ror.org/044ddr125 Agfa-Gevaert (Canada)'),
(18422, 'https://ror.org/044dnpj34', 'en', 1, 'https://ror.org/044dnpj34 Harlow College'),
(18423, 'https://ror.org/044dzr604', 'en', 1, 'https://ror.org/044dzr604 Visiting Nurse Association of South Central Connecticut'),
(18424, 'https://ror.org/044geq124', 'en', 1, 'https://ror.org/044geq124 Ministry of Water Resources and Irrigation وزارة Ų§Ł„Ł…ŁˆŲ§Ų±ŲÆ Ų§Ł„Ł…Ų§Ų¦ŁŠŲ© ŁˆŲ§Ł„Ų±ŁŠ'),
(18425, 'https://ror.org/044h88456', 'en', 1, 'https://ror.org/044h88456 South Bend Museum of Art'),
(18426, 'https://ror.org/044j1gb67', 'no_lang_code', 1, 'https://ror.org/044j1gb67 Hycult Biotech (Netherlands)'),
(18427, 'https://ror.org/044n8q784', 'en', 1, 'https://ror.org/044n8q784 Community College of Allegheny County'),
(18428, 'https://ror.org/044nkqy76', 'no_lang_code', 1, 'https://ror.org/044nkqy76 Ayogo (Canada)'),
(18429, 'https://ror.org/044nrx235', 'en', 1, 'https://ror.org/044nrx235 Gay-Straight Alliance Network'),
(18430, 'https://ror.org/044q67424', 'no_lang_code', 1, 'https://ror.org/044q67424 Asius Technologies (United States)'),
(18431, 'https://ror.org/044s55g62', 'en', 1, 'https://ror.org/044s55g62 Women''s Refugee Commission'),
(18432, 'https://ror.org/044t8ez79', 'no_lang_code', 1, 'https://ror.org/044t8ez79 Cybermoor (United Kingdom)'),
(18433, 'https://ror.org/044v41k28', 'no_lang_code', 1, 'https://ror.org/044v41k28 Concrete Repairs (United Kingdom)'),
(18434, 'https://ror.org/044w95594', 'it', 1, 'https://ror.org/044w95594 Consorzio di Bioingegneria e Informatica Medica'),
(18435, 'https://ror.org/044xhw248', 'no_lang_code', 1, 'https://ror.org/044xhw248 Cell Microsystems (United States)'),
(18436, 'https://ror.org/044xjyn25', 'no_lang_code', 1, 'https://ror.org/044xjyn25 Advantech AMT (Canada)'),
(18437, 'https://ror.org/044yv1k53', 'en', 1, 'https://ror.org/044yv1k53 Justice Resource Institute'),
(18438, 'https://ror.org/0451y5857', 'en', 1, 'https://ror.org/0451y5857 Infant Trust'),
(18439, 'https://ror.org/0452enn61', 'no_lang_code', 1, 'https://ror.org/0452enn61 Sri Ganapathi Sachchidananda Vagdevi Center'),
(18440, 'https://ror.org/0452jaa17', 'en', 1, 'https://ror.org/0452jaa17 Institute of Plasma Physics and Laser Microfusion'),
(18441, 'https://ror.org/0454dtg60', 'en', 1, 'https://ror.org/0454dtg60 Reaching Across Illinois Library System'),
(18442, 'https://ror.org/04573hn72', 'no_lang_code', 1, 'https://ror.org/04573hn72 Borit (Belgium)'),
(18443, 'https://ror.org/04574r077', 'en', 1, 'https://ror.org/04574r077 Lietuvos Mokslininkų Sąjungos Lithuanian Scientific Society'),
(18444, 'https://ror.org/0459dq860', 'no_lang_code', 1, 'https://ror.org/0459dq860 SPEED BioSystems (United States)'),
(18445, 'https://ror.org/045ced850', 'no_lang_code', 1, 'https://ror.org/045ced850 DILAS (Germany)'),
(18446, 'https://ror.org/045cj2n31', 'no_lang_code', 1, 'https://ror.org/045cj2n31 FiveFocal (United States)'),
(18447, 'https://ror.org/045e9rn67', 'no_lang_code', 1, 'https://ror.org/045e9rn67 EmbedRF (United States)'),
(18448, 'https://ror.org/045fjnt03', 'no_lang_code', 1, 'https://ror.org/045fjnt03 Eonic Systems (Belgium)'),
(18449, 'https://ror.org/045g6w049', 'no_lang_code', 1, 'https://ror.org/045g6w049 Eminate (United Kingdom)'),
(18450, 'https://ror.org/045gnpt57', 'no_lang_code', 1, 'https://ror.org/045gnpt57 LETIPharma (Spain)'),
(18451, 'https://ror.org/045j3za34', 'no_lang_code', 1, 'https://ror.org/045j3za34 AnsuR Technologies (Norway)'),
(18452, 'https://ror.org/045nwkm81', 'no_lang_code', 1, 'https://ror.org/045nwkm81 Assing (Italy)'),
(18453, 'https://ror.org/045pqzn81', 'no_lang_code', 1, 'https://ror.org/045pqzn81 MƩcanique et Engrenage Moderne (France)'),
(18454, 'https://ror.org/045q3sv53', 'no_lang_code', 1, 'https://ror.org/045q3sv53 Seneb BioSciences (United States)'),
(18455, 'https://ror.org/045t28w66', 'en', 1, 'https://ror.org/045t28w66 Pennsylvania Academy of Family Physicians and Foundation'),
(18456, 'https://ror.org/045w5nd37', 'en', 1, 'https://ror.org/045w5nd37 Visitation Catholic School'),
(18457, 'https://ror.org/045wp1309', 'en', 1, 'https://ror.org/045wp1309 St. Vincent Hospital'),
(18458, 'https://ror.org/045x59t40', 'en', 1, 'https://ror.org/045x59t40 Hillsborough County Anti Drug Alliance’s'),
(18459, 'https://ror.org/045xce929', 'no_lang_code', 1, 'https://ror.org/045xce929 Double S Instructional Systems'),
(18460, 'https://ror.org/045ybeh27', 'no_lang_code', 1, 'https://ror.org/045ybeh27 Inmatec Technologies (Germany)'),
(18461, 'https://ror.org/045zcth28', 'en', 1, 'https://ror.org/045zcth28 McLaren Greater Lansing'),
(18462, 'https://ror.org/045zhyc13', 'no_lang_code', 1, 'https://ror.org/045zhyc13 Imtech Marine (Netherlands)'),
(18463, 'https://ror.org/045zwy983', 'en', 1, 'https://ror.org/045zwy983 Women of Faith and Hope'),
(18464, 'https://ror.org/04606j127', 'no_lang_code', 1, 'https://ror.org/04606j127 GarcĆ­aRama (Spain)'),
(18465, 'https://ror.org/0461v4y70', 'no_lang_code', 1, 'https://ror.org/0461v4y70 Codrico (Netherlands)'),
(18466, 'https://ror.org/0462h0957', 'en', 1, 'https://ror.org/0462h0957 International Centre of Biodynamics'),
(18467, 'https://ror.org/04638h934', 'no_lang_code', 1, 'https://ror.org/04638h934 FCT Systeme (Germany)'),
(18468, 'https://ror.org/0463rqm34', 'en', 1, 'https://ror.org/0463rqm34 Center and Courses of Advanced Technology on Image Analysis Centro y Cursos de Tecnologƭa Avanzada de AnƔlisis de ImƔgenes'),
(18469, 'https://ror.org/046467720', 'en', 1, 'https://ror.org/046467720 CB Wetlands & Environmental Specialists'),
(18470, 'https://ror.org/04663qn06', 'no_lang_code', 1, 'https://ror.org/04663qn06 Insight Design Labs (Canada)'),
(18471, 'https://ror.org/0466tpr53', 'en', 1, 'https://ror.org/0466tpr53 International Foundation of Employee Benefit Plans'),
(18472, 'https://ror.org/0466y0231', 'no_lang_code', 1, 'https://ror.org/0466y0231 Competitive Design Network (Spain)'),
(18473, 'https://ror.org/0466zcr09', 'en', 1, 'https://ror.org/0466zcr09 SkyTeam'),
(18474, 'https://ror.org/0467vhn46', 'en', 1, 'https://ror.org/0467vhn46 St. Joseph County Public Library'),
(18475, 'https://ror.org/046a8r834', 'no_lang_code', 1, 'https://ror.org/046a8r834 Siamab Therapeutics (United States)'),
(18476, 'https://ror.org/046b74p91', 'no_lang_code', 1, 'https://ror.org/046b74p91 Mayer Brown (United States)'),
(18477, 'https://ror.org/046c16x31', 'en', 1, 'https://ror.org/046c16x31 Pacific Clinics'),
(18478, 'https://ror.org/046dtqb83', 'no_lang_code', 1, 'https://ror.org/046dtqb83 Kayser (Italy)'),
(18479, 'https://ror.org/046dybe93', 'en', 1, 'https://ror.org/046dybe93 Office of Missouri Governor'),
(18480, 'https://ror.org/046etfw78', 'no_lang_code', 1, 'https://ror.org/046etfw78 Gilden Photonics (United Kingdom)'),
(18481, 'https://ror.org/046fjdw68', 'en', 1, 'https://ror.org/046fjdw68 Guerilla Science'),
(18482, 'https://ror.org/046hz2n20', 'en', 1, 'https://ror.org/046hz2n20 Association of British HealthTech Industries'),
(18483, 'https://ror.org/046nm0a12', 'en', 1, 'https://ror.org/046nm0a12 Adaptive Sports Foundation'),
(18484, 'https://ror.org/046nv5659', 'no_lang_code', 1, 'https://ror.org/046nv5659 Dsan Research Solutions'),
(18485, 'https://ror.org/046q8mv93', 'no_lang_code', 1, 'https://ror.org/046q8mv93 Mitel (Ireland)'),
(18486, 'https://ror.org/046qxc353', 'no_lang_code', 1, 'https://ror.org/046qxc353 Bioengineering Technology and Systems (Italy)'),
(18487, 'https://ror.org/046y74b83', 'no_lang_code', 1, 'https://ror.org/046y74b83 Careers Europe'),
(18488, 'https://ror.org/046yjek33', 'no_lang_code', 1, 'https://ror.org/046yjek33 Aicas (Germany)'),
(18489, 'https://ror.org/046z39w60', 'no_lang_code', 1, 'https://ror.org/046z39w60 EnSilica (United Kingdom)'),
(18490, 'https://ror.org/046z54t28', 'en', 1, 'https://ror.org/046z54t28 Indiana University East'),
(18491, 'https://ror.org/047137m93', 'en', 1, 'https://ror.org/047137m93 Prince George''s County Public Schools'),
(18492, 'https://ror.org/047223947', 'en', 1, 'https://ror.org/047223947 Foundation for the Research Development and Application of Composite Materials Fundación para la Investigación, Desarrollo y Aplicación de los Materiales Compuestos'),
(18493, 'https://ror.org/0472rwr52', 'en', 1, 'https://ror.org/0472rwr52 Cancer Navigator'),
(18494, 'https://ror.org/047527p77', 'no_lang_code', 1, 'https://ror.org/047527p77 Hummingbird Scientific (United States)'),
(18495, 'https://ror.org/0476vb322', 'no_lang_code', 1, 'https://ror.org/0476vb322 Carcerano (Italy)'),
(18496, 'https://ror.org/0476zhn05', 'no_lang_code', 1, 'https://ror.org/0476zhn05 Lakka (Finland)'),
(18497, 'https://ror.org/047866h90', 'no_lang_code', 1, 'https://ror.org/047866h90 BioInvent (Sweden)'),
(18498, 'https://ror.org/0478xk890', 'en', 1, 'https://ror.org/0478xk890 Community Connections'),
(18499, 'https://ror.org/04790m696', 'no_lang_code', 1, 'https://ror.org/04790m696 Composites Evolution (United Kingdom)'),
(18500, 'https://ror.org/047979f88', 'no_lang_code', 1, 'https://ror.org/047979f88 Ɓguas de Portugal (Portugal)'),
(18501, 'https://ror.org/047ac3d11', 'no_lang_code', 1, 'https://ror.org/047ac3d11 Alpha Marine (Greece)'),
(18502, 'https://ror.org/047acnn05', 'no_lang_code', 1, 'https://ror.org/047acnn05 Asymptote (United Kingdom)'),
(18503, 'https://ror.org/047atj319', 'no_lang_code', 1, 'https://ror.org/047atj319 Functional Technologies (United Kingdom)'),
(18504, 'https://ror.org/047b7n641', 'no_lang_code', 1, 'https://ror.org/047b7n641 Gilardoni Vittorio (Italy)'),
(18505, 'https://ror.org/047bknx65', 'no_lang_code', 1, 'https://ror.org/047bknx65 Eco-Energy (NI) (United Kingdom)'),
(18506, 'https://ror.org/047cnmy82', 'no_lang_code', 1, 'https://ror.org/047cnmy82 3M (Germany)'),
(18507, 'https://ror.org/047cyjw83', 'en', 1, 'https://ror.org/047cyjw83 Pender County Schools'),
(18508, 'https://ror.org/047d3ep63', 'en', 1, 'https://ror.org/047d3ep63 Ministry for Education and Employment'),
(18509, 'https://ror.org/047etja20', 'no_lang_code', 1, 'https://ror.org/047etja20 Everis (Spain)'),
(18510, 'https://ror.org/047h1e475', 'no_lang_code', 1, 'https://ror.org/047h1e475 Celica (Slovenia)'),
(18511, 'https://ror.org/047jmhw86', 'no_lang_code', 1, 'https://ror.org/047jmhw86 Aqua Consult Ingenieur (Germany)'),
(18512, 'https://ror.org/047k18g44', 'en', 1, 'https://ror.org/047k18g44 International Bureau for Environmental Studies'),
(18513, 'https://ror.org/047kvxr97', 'no_lang_code', 1, 'https://ror.org/047kvxr97 Bexion Pharmaceuticals (United States)'),
(18514, 'https://ror.org/047m6hg73', 'no_lang_code', 1, 'https://ror.org/047m6hg73 Management Intelligenter Technologien (Germany)'),
(18515, 'https://ror.org/047mzc334', 'en', 1, 'https://ror.org/047mzc334 Lisle Library District'),
(18516, 'https://ror.org/047n2sq83', 'en', 1, 'https://ror.org/047n2sq83 Wicomico County Health Department'),
(18517, 'https://ror.org/047n4sz26', 'en', 1, 'https://ror.org/047n4sz26 Institute of Non-ferrous and Rare Metals'),
(18518, 'https://ror.org/047pgxk19', 'no_lang_code', 1, 'https://ror.org/047pgxk19 Aswega (Estonia)'),
(18519, 'https://ror.org/047t0gj04', 'en', 1, 'https://ror.org/047t0gj04 Friendship College'),
(18520, 'https://ror.org/047tbwy41', 'no_lang_code', 1, 'https://ror.org/047tbwy41 Lucid Technologies (United States)'),
(18521, 'https://ror.org/047xexk42', 'en', 1, 'https://ror.org/047xexk42 Lorain Public Library System'),
(18522, 'https://ror.org/0480v3r94', 'en', 1, 'https://ror.org/0480v3r94 Torrance Memorial Medical Center'),
(18523, 'https://ror.org/0481ybd91', 'en', 1, 'https://ror.org/0481ybd91 Jewish Home'),
(18524, 'https://ror.org/0485axj58', 'en', 1, 'https://ror.org/0485axj58 University Hospital Southampton NHS Foundation Trust'),
(18525, 'https://ror.org/0486dk737', 'en', 1, 'https://ror.org/0486dk737 National Food Chain Safety Office'),
(18526, 'https://ror.org/0488q6085', 'it', 1, 'https://ror.org/0488q6085 Ente nazionale italiano di unificazione Italian National Unification'),
(18527, 'https://ror.org/048a46z74', 'no_lang_code', 1, 'https://ror.org/048a46z74 Facit Research (Germany)'),
(18528, 'https://ror.org/048abfv28', 'en', 1, 'https://ror.org/048abfv28 Federation of European Motorcyclists Associations'),
(18529, 'https://ror.org/048b14s48', 'en', 1, 'https://ror.org/048b14s48 Hudson Library and Historical Society'),
(18530, 'https://ror.org/048c9kr85', 'no_lang_code', 1, 'https://ror.org/048c9kr85 AXYS Technologies (Canada)'),
(18531, 'https://ror.org/048cmes41', 'en', 1, 'https://ror.org/048cmes41 Tempe Union High School District'),
(18532, 'https://ror.org/048dpf041', 'no_lang_code', 1, 'https://ror.org/048dpf041 Lucchini (Italy)'),
(18533, 'https://ror.org/048gzej48', 'no_lang_code', 1, 'https://ror.org/048gzej48 Lanner Group (United Kingdom)'),
(18534, 'https://ror.org/048hrra09', 'no_lang_code', 1, 'https://ror.org/048hrra09 Medicon (United States)'),
(18535, 'https://ror.org/048jb8q77', 'en', 1, 'https://ror.org/048jb8q77 Brandywine Counseling & Community Services'),
(18536, 'https://ror.org/048kc5t54', 'en', 1, 'https://ror.org/048kc5t54 Faulkner University'),
(18537, 'https://ror.org/048kt6872', 'no_lang_code', 1, 'https://ror.org/048kt6872 Amphenol (United Kingdom)'),
(18538, 'https://ror.org/048mhm070', 'it', 1, 'https://ror.org/048mhm070 Famiglia Artigiana Fratelli Ruffatti'),
(18539, 'https://ror.org/048pz4a95', 'no_lang_code', 1, 'https://ror.org/048pz4a95 Vionyx (United States)'),
(18540, 'https://ror.org/048rsxe24', 'en', 1, 'https://ror.org/048rsxe24 Lakeshore Technical College'),
(18541, 'https://ror.org/048t7p270', 'fr', 1, 'https://ror.org/048t7p270 GDG Environnement'),
(18542, 'https://ror.org/048tfbp61', 'no_lang_code', 1, 'https://ror.org/048tfbp61 MobiLife (United States)'),
(18543, 'https://ror.org/048tktj22', 'en', 1, 'https://ror.org/048tktj22 McHenry County College'),
(18544, 'https://ror.org/048trsg90', 'no_lang_code', 1, 'https://ror.org/048trsg90 Cambustion (United Kingdom)'),
(18545, 'https://ror.org/048vgks49', 'en', 1, 'https://ror.org/048vgks49 Maine Parent Federation'),
(18546, 'https://ror.org/048y6cv72', 'no_lang_code', 1, 'https://ror.org/048y6cv72 Advanced Sensor Technologies (United States)'),
(18547, 'https://ror.org/048z9aw23', 'en', 1, 'https://ror.org/048z9aw23 Monroe County Historical Museum'),
(18548, 'https://ror.org/048zew673', 'no_lang_code', 1, 'https://ror.org/048zew673 Centrotherm Photovoltaics (Germany)'),
(18549, 'https://ror.org/049040e46', 'no_lang_code', 1, 'https://ror.org/049040e46 Imaging Biometrics (United States)'),
(18550, 'https://ror.org/0491wxq94', 'no_lang_code', 1, 'https://ror.org/0491wxq94 LSVT Global (United States)'),
(18551, 'https://ror.org/0492wg980', 'en', 1, 'https://ror.org/0492wg980 Women With A Vision'),
(18552, 'https://ror.org/04931ty90', 'en', 1, 'https://ror.org/04931ty90 Detroit Recovery Project'),
(18553, 'https://ror.org/04976jw76', 'en', 1, 'https://ror.org/04976jw76 Missouri Department of Elementary and Secondary Education'),
(18554, 'https://ror.org/0497jzm12', 'no_lang_code', 1, 'https://ror.org/0497jzm12 Dykema (United States)'),
(18555, 'https://ror.org/0498ppz55', 'no_lang_code', 1, 'https://ror.org/0498ppz55 Gel-Del Technologies (United States)'),
(18556, 'https://ror.org/04997dd62', 'es', 1, 'https://ror.org/04997dd62 Basque Energy Cluster Cluster de EnergĆ­a'),
(18557, 'https://ror.org/04997nh58', 'en', 1, 'https://ror.org/04997nh58 Center for Health Care Services'),
(18558, 'https://ror.org/0499qn039', 'en', 1, 'https://ror.org/0499qn039 Lebanese Agricultural Research Institute'),
(18559, 'https://ror.org/0499vqt91', 'no_lang_code', 1, 'https://ror.org/0499vqt91 Globe Water (Sweden)'),
(18560, 'https://ror.org/049bcjd44', 'en', 1, 'https://ror.org/049bcjd44 International Transports & Cargo Agency'),
(18561, 'https://ror.org/049d2y756', 'no_lang_code', 1, 'https://ror.org/049d2y756 Breyer Group (United Kingdom)'),
(18562, 'https://ror.org/049e8me77', 'no_lang_code', 1, 'https://ror.org/049e8me77 Heraeus (United Kingdom)'),
(18563, 'https://ror.org/049ecjx61', 'en', 1, 'https://ror.org/049ecjx61 A.V. Shubnikov Institute of Crystallography Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кристаллографии им. А.Š’. Шубникова Российской акаГемии наук'),
(18564, 'https://ror.org/049jrjb36', 'no_lang_code', 1, 'https://ror.org/049jrjb36 Treventis (United States)'),
(18565, 'https://ror.org/049k1wy83', 'no_lang_code', 1, 'https://ror.org/049k1wy83 Acciai Speciali Terni (Italy)'),
(18566, 'https://ror.org/049kpjn93', 'en', 1, 'https://ror.org/049kpjn93 Westlake Porter Public Library'),
(18567, 'https://ror.org/049kzbj92', 'en', 1, 'https://ror.org/049kzbj92 Commonwealth Fund'),
(18568, 'https://ror.org/049ngdd28', 'no_lang_code', 1, 'https://ror.org/049ngdd28 KPMG (United States)'),
(18569, 'https://ror.org/049png478', 'no_lang_code', 1, 'https://ror.org/049png478 Materion (United Kingdom)'),
(18570, 'https://ror.org/049px0x49', 'no_lang_code', 1, 'https://ror.org/049px0x49 Dow Chemical (Netherlands)'),
(18571, 'https://ror.org/049qtwk65', 'no_lang_code', 1, 'https://ror.org/049qtwk65 Centre de Pyrolyse de Marienau (France)'),
(18572, 'https://ror.org/049s5qx48', 'en', 1, 'https://ror.org/049s5qx48 Connecticut State Department of Education'),
(18573, 'https://ror.org/049sbzn78', 'en', 1, 'https://ror.org/049sbzn78 Institute of Chemical Engineering Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по инженерна Ń…ŠøŠ¼ŠøŃ'),
(18574, 'https://ror.org/049twep74', 'no_lang_code', 1, 'https://ror.org/049twep74 Lati Industria Termoplastici (Italy)'),
(18575, 'https://ror.org/049wsgv73', 'en', 1, 'https://ror.org/049wsgv73 UF Health Shands Rehab Hospital'),
(18576, 'https://ror.org/049wyn804', 'no_lang_code', 1, 'https://ror.org/049wyn804 Data Fusion Research Center'),
(18577, 'https://ror.org/049x3vp31', 'en', 1, 'https://ror.org/049x3vp31 Tuscaloosa City Schools'),
(18578, 'https://ror.org/049xhbc08', 'no_lang_code', 1, 'https://ror.org/049xhbc08 FACET Innovations (United States)'),
(18579, 'https://ror.org/049yptc43', 'en', 1, 'https://ror.org/049yptc43 Asian Pacific Partners for Empowerment, Advocacy and Leadership'),
(18580, 'https://ror.org/04a007b13', 'no_lang_code', 1, 'https://ror.org/04a007b13 Nissatech Innovation Centre (Serbia)'),
(18581, 'https://ror.org/04a0kbv92', 'en', 1, 'https://ror.org/04a0kbv92 West County Health Centers'),
(18582, 'https://ror.org/04a1ad523', 'no_lang_code', 1, 'https://ror.org/04a1ad523 I.CO.P (Italy)'),
(18583, 'https://ror.org/04a37aq75', 'no_lang_code', 1, 'https://ror.org/04a37aq75 Omnicom Group (United States)'),
(18584, 'https://ror.org/04a3jpq51', 'no_lang_code', 1, 'https://ror.org/04a3jpq51 Adaptronica (Poland)'),
(18585, 'https://ror.org/04a3nrb88', 'en', 1, 'https://ror.org/04a3nrb88 Institute of Energy Problems of Chemical Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… проблем химической физики им. Š’.Š›. Š¢Š°Š»ŃŒŃ€Š¾Š·Šµ Российской акаГемии наук'),
(18586, 'https://ror.org/04a46sy91', 'de', 1, 'https://ror.org/04a46sy91 Institut für Automation und Kommunikation'),
(18587, 'https://ror.org/04a6kdq42', 'no_lang_code', 1, 'https://ror.org/04a6kdq42 Information Highway Group (Spain)'),
(18588, 'https://ror.org/04abnen92', 'fr', 1, 'https://ror.org/04abnen92 Institut National des Sciences et Technologies de la Mer National Institute of Marine Sciences and Technologies'),
(18589, 'https://ror.org/04absy687', 'no_lang_code', 1, 'https://ror.org/04absy687 DanTech (United Kingdom)'),
(18590, 'https://ror.org/04aby3d05', 'en', 1, 'https://ror.org/04aby3d05 Stretch to Kindergarten'),
(18591, 'https://ror.org/04ae0v143', 'no_lang_code', 1, 'https://ror.org/04ae0v143 Delfoi (Finland)'),
(18592, 'https://ror.org/04aemx979', 'en', 1, 'https://ror.org/04aemx979 Roots Community Health Center'),
(18593, 'https://ror.org/04akkw537', 'no_lang_code', 1, 'https://ror.org/04akkw537 Akira (France)'),
(18594, 'https://ror.org/04an1th16', 'en', 1, 'https://ror.org/04an1th16 Computer Professionals for Social Responsibility'),
(18595, 'https://ror.org/04anj6w22', 'en', 1, 'https://ror.org/04anj6w22 Federation of Industries of Northern Greece'),
(18596, 'https://ror.org/04apkgm45', 'en', 1, 'https://ror.org/04apkgm45 European Jewellery Technology Network'),
(18597, 'https://ror.org/04apsy796', 'no_lang_code', 1, 'https://ror.org/04apsy796 BioInVision (United States)'),
(18598, 'https://ror.org/04aptxm88', 'en', 1, 'https://ror.org/04aptxm88 International Office for Water Office International de l’Eau Oficina Internacional del Agua'),
(18599, 'https://ror.org/04apv5y66', 'en', 1, 'https://ror.org/04apv5y66 Rensselaerville Institute'),
(18600, 'https://ror.org/04arpqr50', 'en', 1, 'https://ror.org/04arpqr50 Matanuska-Susitna Borough School District'),
(18601, 'https://ror.org/04asmr016', 'en', 1, 'https://ror.org/04asmr016 Bay County Library System'),
(18602, 'https://ror.org/04axpdp25', 'no_lang_code', 1, 'https://ror.org/04axpdp25 Sefacor (United States)'),
(18603, 'https://ror.org/04axy2g94', 'en', 1, 'https://ror.org/04axy2g94 Euclid Public Library'),
(18604, 'https://ror.org/04ay93s32', 'lt', 1, 'https://ror.org/04ay93s32 Aplinkos Apsaugos Agentura Environmental Protection Agency'),
(18605, 'https://ror.org/04aza2289', 'no_lang_code', 1, 'https://ror.org/04aza2289 Celoxica (United Kingdom)'),
(18606, 'https://ror.org/04b295810', 'fr', 1, 'https://ror.org/04b295810 FƩdƩration GƩnƩrale du Travail de Belgique General Federation of Belgian Labour'),
(18607, 'https://ror.org/04b29ff96', 'no_lang_code', 1, 'https://ror.org/04b29ff96 Energetiq Technology (United States)'),
(18608, 'https://ror.org/04b2p2059', 'en', 1, 'https://ror.org/04b2p2059 St. Elizabeth Healthcare'),
(18609, 'https://ror.org/04b3zhw41', 'en', 1, 'https://ror.org/04b3zhw41 Kaskaskia College'),
(18610, 'https://ror.org/04b4qa207', 'no_lang_code', 1, 'https://ror.org/04b4qa207 ZeptoMetrix (United States)'),
(18611, 'https://ror.org/04b699k03', 'no_lang_code', 1, 'https://ror.org/04b699k03 Canatu (Finland)'),
(18612, 'https://ror.org/04b6m8j66', 'no_lang_code', 1, 'https://ror.org/04b6m8j66 Goodman Research Group (United States)'),
(18613, 'https://ror.org/04b76w231', 'no_lang_code', 1, 'https://ror.org/04b76w231 A.S.Sadykov Institute of Bioorganic Chemistry'),
(18614, 'https://ror.org/04b8h1p59', 'en', 1, 'https://ror.org/04b8h1p59 Wave Hill'),
(18615, 'https://ror.org/04b8jke36', 'no_lang_code', 1, 'https://ror.org/04b8jke36 enablingMNT (Germany)'),
(18616, 'https://ror.org/04bac3z79', 'en', 1, 'https://ror.org/04bac3z79 Shelby County Schools'),
(18617, 'https://ror.org/04bd74a48', 'en', 1, 'https://ror.org/04bd74a48 Lake Land College'),
(18618, 'https://ror.org/04bdtkb86', 'en', 1, 'https://ror.org/04bdtkb86 Federation of Greek Mariculture'),
(18619, 'https://ror.org/04bgs8335', 'en', 1, 'https://ror.org/04bgs8335 Foresight Project'),
(18620, 'https://ror.org/04bjh1v02', 'de', 1, 'https://ror.org/04bjh1v02 Business Upper Austria – OƖ Wirtschaftsagentur, OƖ Wirtschaftsagentur GmbH'),
(18621, 'https://ror.org/04bkhy554', 'en', 1, 'https://ror.org/04bkhy554 Changzhou No.2 People''s Hospital åøøå·žåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(18622, 'https://ror.org/04bn6e003', 'no_lang_code', 1, 'https://ror.org/04bn6e003 Medical Indicators (United States)'),
(18623, 'https://ror.org/04bq4z840', 'en', 1, 'https://ror.org/04bq4z840 Washington Institute of Dermatologic Laser Surgery'),
(18624, 'https://ror.org/04bq7yh11', 'no_lang_code', 1, 'https://ror.org/04bq7yh11 Fujifilm (United Kingdom)'),
(18625, 'https://ror.org/04bthcb08', 'en', 1, 'https://ror.org/04bthcb08 La Roche College'),
(18626, 'https://ror.org/04btmch86', 'no_lang_code', 1, 'https://ror.org/04btmch86 AccSys Technology (United States)'),
(18627, 'https://ror.org/04btmq148', 'en', 1, 'https://ror.org/04btmq148 Transylvania County Schools'),
(18628, 'https://ror.org/04bzc6m85', 'no_lang_code', 1, 'https://ror.org/04bzc6m85 Broadley James (United States)'),
(18629, 'https://ror.org/04c0z3e83', 'no_lang_code', 1, 'https://ror.org/04c0z3e83 Morgan, Lewis & Bockius (United States)'),
(18630, 'https://ror.org/04c1zgk38', 'no_lang_code', 1, 'https://ror.org/04c1zgk38 MAKScientific (United States)'),
(18631, 'https://ror.org/04c4tvj54', 'en', 1, 'https://ror.org/04c4tvj54 To Help Everyone Health and Wellness Centers'),
(18632, 'https://ror.org/04c4y1k56', 'no_lang_code', 1, 'https://ror.org/04c4y1k56 CoorsTek (United Kingdom)'),
(18633, 'https://ror.org/04c6qad64', 'en', 1, 'https://ror.org/04c6qad64 USTA Intermountain Colorado'),
(18634, 'https://ror.org/04c8tnm64', 'ca', 1, 'https://ror.org/04c8tnm64 Badalona Serveis Assistencials'),
(18635, 'https://ror.org/04c9wtt72', 'no_lang_code', 1, 'https://ror.org/04c9wtt72 MagArray (United States)'),
(18636, 'https://ror.org/04ca3hj20', 'no_lang_code', 1, 'https://ror.org/04ca3hj20 Haydale (United Kingdom)'),
(18637, 'https://ror.org/04carjf23', 'en', 1, 'https://ror.org/04carjf23 Institute for Sustainability'),
(18638, 'https://ror.org/04ccq0223', 'no_lang_code', 1, 'https://ror.org/04ccq0223 Future Carbon (Germany)'),
(18639, 'https://ror.org/04cg6c004', 'en', 1, 'https://ror.org/04cg6c004 Academic College of Tel Aviv-Yafo'),
(18640, 'https://ror.org/04cgqw370', 'en', 1, 'https://ror.org/04cgqw370 Brearley School'),
(18641, 'https://ror.org/04cgwch75', 'no_lang_code', 1, 'https://ror.org/04cgwch75 Bio-Quick (United States)'),
(18642, 'https://ror.org/04chs2v90', 'en', 1, 'https://ror.org/04chs2v90 Appalachian College of Pharmacy'),
(18643, 'https://ror.org/04cj8sj38', 'no_lang_code', 1, 'https://ror.org/04cj8sj38 Hydrogenics (Belgium)'),
(18644, 'https://ror.org/04cnktn59', 'en', 1, 'https://ror.org/04cnktn59 Institute of Animal Reproduction and Food Research'),
(18645, 'https://ror.org/04cqe3x57', 'no_lang_code', 1, 'https://ror.org/04cqe3x57 Arctur (Slovenia)'),
(18646, 'https://ror.org/04crav288', 'no_lang_code', 1, 'https://ror.org/04crav288 Surgisense'),
(18647, 'https://ror.org/04cvatx71', 'no_lang_code', 1, 'https://ror.org/04cvatx71 Elumotion (United Kingdom)'),
(18648, 'https://ror.org/04cwntf34', 'en', 1, 'https://ror.org/04cwntf34 Indiana Archives and Records Administration'),
(18649, 'https://ror.org/04cx6n327', 'en', 1, 'https://ror.org/04cx6n327 Cornell Scott-Hill Health Center'),
(18650, 'https://ror.org/04czczm92', 'no_lang_code', 1, 'https://ror.org/04czczm92 Medes (France)'),
(18651, 'https://ror.org/04d06q394', 'no_lang_code', 1, 'https://ror.org/04d06q394 Google (Canada)'),
(18652, 'https://ror.org/04d0tnm02', 'no_lang_code', 1, 'https://ror.org/04d0tnm02 Euro Heat Pipes (Belgium)'),
(18653, 'https://ror.org/04d3r9p82', 'no_lang_code', 1, 'https://ror.org/04d3r9p82 Becs Technology (United States)'),
(18654, 'https://ror.org/04d3zk673', 'no_lang_code', 1, 'https://ror.org/04d3zk673 Faust & Backhaus Environmental Consulting'),
(18655, 'https://ror.org/04d534064', 'en', 1, 'https://ror.org/04d534064 Children''s Cancer Connection'),
(18656, 'https://ror.org/04d62a771', 'en', 1, 'https://ror.org/04d62a771 Leibniz Institute for Agricultural Engineering and Bioeconomy Leibniz-Institut für Agrartechnik und Bioökonomie'),
(18657, 'https://ror.org/04d75wd27', 'en', 1, 'https://ror.org/04d75wd27 Estonian Educational and Research Network'),
(18658, 'https://ror.org/04d87y574', 'en', 1, 'https://ror.org/04d87y574 Sydney Children’s Hospitals Network'),
(18659, 'https://ror.org/04ddx8z75', 'no_lang_code', 1, 'https://ror.org/04ddx8z75 Codema (Ireland)'),
(18660, 'https://ror.org/04dec0k98', 'no_lang_code', 1, 'https://ror.org/04dec0k98 Innovative Research (United States)'),
(18661, 'https://ror.org/04dfr9g69', 'no_lang_code', 1, 'https://ror.org/04dfr9g69 KSB (Germany)'),
(18662, 'https://ror.org/04dh2y609', 'en', 1, 'https://ror.org/04dh2y609 School of the Art Institute of Chicago Ɖcole de l''institut d''art de chicago'),
(18663, 'https://ror.org/04dhhgk48', 'no_lang_code', 1, 'https://ror.org/04dhhgk48 Nuclea Biotechnologies (United States)'),
(18664, 'https://ror.org/04dngsc68', 'no_lang_code', 1, 'https://ror.org/04dngsc68 ALA Scientific Instruments (United States)'),
(18665, 'https://ror.org/04dree482', 'en', 1, 'https://ror.org/04dree482 Euro Inter'),
(18666, 'https://ror.org/04drxvh51', 'no_lang_code', 1, 'https://ror.org/04drxvh51 Holscot Fluoroplastics (United Kingdom)'),
(18667, 'https://ror.org/04dsm0326', 'no_lang_code', 1, 'https://ror.org/04dsm0326 Bioiliberis Research and Development (Spain)'),
(18668, 'https://ror.org/04dszkr43', 'no_lang_code', 1, 'https://ror.org/04dszkr43 De Agostini (Italy)'),
(18669, 'https://ror.org/04dt1y190', 'no_lang_code', 1, 'https://ror.org/04dt1y190 Claremont BioSolutions (United States)'),
(18670, 'https://ror.org/04dv7yp79', 'en', 1, 'https://ror.org/04dv7yp79 Montel Williams MS Foundation'),
(18671, 'https://ror.org/04dwtmx31', 'en', 1, 'https://ror.org/04dwtmx31 Career Education Corporation'),
(18672, 'https://ror.org/04dxb7m07', 'no_lang_code', 1, 'https://ror.org/04dxb7m07 Bactiguard (Sweden)'),
(18673, 'https://ror.org/04dzh1r95', 'en', 1, 'https://ror.org/04dzh1r95 Public School Forum of North Carolina'),
(18674, 'https://ror.org/04e3mez11', 'no_lang_code', 1, 'https://ror.org/04e3mez11 Immucor (United States)'),
(18675, 'https://ror.org/04e472991', 'no_lang_code', 1, 'https://ror.org/04e472991 HQ-Dielectrics (Germany)'),
(18676, 'https://ror.org/04e4qaj02', 'en', 1, 'https://ror.org/04e4qaj02 Central Maine Community College'),
(18677, 'https://ror.org/04e5k0n06', 'no_lang_code', 1, 'https://ror.org/04e5k0n06 Civilized Software (United States)'),
(18678, 'https://ror.org/04e6e5356', 'en', 1, 'https://ror.org/04e6e5356 Masonry Society'),
(18679, 'https://ror.org/04e6s6j73', 'no_lang_code', 1, 'https://ror.org/04e6s6j73 Genotype (Germany)'),
(18680, 'https://ror.org/04e86kw41', 'en', 1, 'https://ror.org/04e86kw41 Arizona Youth Partnership'),
(18681, 'https://ror.org/04eb8df09', 'no_lang_code', 1, 'https://ror.org/04eb8df09 Orano (United States)'),
(18682, 'https://ror.org/04ecbsf74', 'en', 1, 'https://ror.org/04ecbsf74 Westbury Friends School'),
(18683, 'https://ror.org/04ecr4902', 'no_lang_code', 1, 'https://ror.org/04ecr4902 Bio S&T (Canada)'),
(18684, 'https://ror.org/04ee51h57', 'no_lang_code', 1, 'https://ror.org/04ee51h57 InSightec (Israel)'),
(18685, 'https://ror.org/04ef4sc21', 'no_lang_code', 1, 'https://ror.org/04ef4sc21 HT Laser (Finland)'),
(18686, 'https://ror.org/04eg2gq66', 'no_lang_code', 1, 'https://ror.org/04eg2gq66 AEC3 (United Kingdom)'),
(18687, 'https://ror.org/04eh72y51', 'en', 1, 'https://ror.org/04eh72y51 Weldon City Schools'),
(18688, 'https://ror.org/04ehgfn88', 'no_lang_code', 1, 'https://ror.org/04ehgfn88 Arge Vegetationsƶkologie und Landschaftsplanung'),
(18689, 'https://ror.org/04ehq7g28', 'en', 1, 'https://ror.org/04ehq7g28 Clark County School District'),
(18690, 'https://ror.org/04ejmve12', 'no_lang_code', 1, 'https://ror.org/04ejmve12 J. J. Keller & Associates (United States)'),
(18691, 'https://ror.org/04emmg248', 'en', 1, 'https://ror.org/04emmg248 Tahirih Justice Center'),
(18692, 'https://ror.org/04en4ww09', 'en', 1, 'https://ror.org/04en4ww09 Institute for Behavioral Medicine'),
(18693, 'https://ror.org/04eqdqx09', 'no_lang_code', 1, 'https://ror.org/04eqdqx09 Smart Monitor (United States)'),
(18694, 'https://ror.org/04erezm33', 'no_lang_code', 1, 'https://ror.org/04erezm33 DompƩ (Italy)'),
(18695, 'https://ror.org/04erj9z09', 'no_lang_code', 1, 'https://ror.org/04erj9z09 Bayessoft (United States)');
INSERT INTO `rors` VALUES
(18696, 'https://ror.org/04es3ne34', 'en', 1, 'https://ror.org/04es3ne34 Ministry of Health Ministério da Saúde'),
(18697, 'https://ror.org/04esscd53', 'no_lang_code', 1, 'https://ror.org/04esscd53 Amires (Czechia)'),
(18698, 'https://ror.org/04ewcb322', 'fr', 1, 'https://ror.org/04ewcb322 RĆ©seau pour la Transition ƉnergĆ©tique'),
(18699, 'https://ror.org/04exnj962', 'en', 1, 'https://ror.org/04exnj962 Wig Bank of Caldwell County'),
(18700, 'https://ror.org/04eyx5a65', 'en', 1, 'https://ror.org/04eyx5a65 Center for Transboundary Cooperation'),
(18701, 'https://ror.org/04ez22252', 'en', 1, 'https://ror.org/04ez22252 International Rehabilitation Forum'),
(18702, 'https://ror.org/04ez98579', 'de', 1, 'https://ror.org/04ez98579 GründerRegio M'),
(18703, 'https://ror.org/04f085c77', 'no_lang_code', 1, 'https://ror.org/04f085c77 Enco (Italy)'),
(18704, 'https://ror.org/04f0jzg23', 'en', 1, 'https://ror.org/04f0jzg23 Wellness House'),
(18705, 'https://ror.org/04f1fpz24', 'no_lang_code', 1, 'https://ror.org/04f1fpz24 InTouch (United Kingdom)'),
(18706, 'https://ror.org/04f3yc598', 'en', 1, 'https://ror.org/04f3yc598 Lydia Project'),
(18707, 'https://ror.org/04f43m378', 'en', 1, 'https://ror.org/04f43m378 Greenhope Services for Women'),
(18708, 'https://ror.org/04f6c7j28', 'no_lang_code', 1, 'https://ror.org/04f6c7j28 ESP Central (United Kingdom)'),
(18709, 'https://ror.org/04f6xma27', 'no_lang_code', 1, 'https://ror.org/04f6xma27 ClinInfo (France)'),
(18710, 'https://ror.org/04f87d812', 'fr', 1, 'https://ror.org/04f87d812 Centre d''Etudes Superieures Industrielles'),
(18711, 'https://ror.org/04f9m0784', 'no_lang_code', 1, 'https://ror.org/04f9m0784 LifeSensors (United States)'),
(18712, 'https://ror.org/04fax8843', 'no_lang_code', 1, 'https://ror.org/04fax8843 Juice Technology (United Kingdom)'),
(18713, 'https://ror.org/04fbd2g40', 'no_lang_code', 1, 'https://ror.org/04fbd2g40 BioNTech (Germany)'),
(18714, 'https://ror.org/04fcaga30', 'en', 1, 'https://ror.org/04fcaga30 Jefferson College'),
(18715, 'https://ror.org/04fhf9k38', 'no_lang_code', 1, 'https://ror.org/04fhf9k38 Generic Robotics (United Kingdom)'),
(18716, 'https://ror.org/04fjz0k13', 'no_lang_code', 1, 'https://ror.org/04fjz0k13 Sicherheit, Informatik und Zentrale Services'),
(18717, 'https://ror.org/04fkf4s26', 'no_lang_code', 1, 'https://ror.org/04fkf4s26 Intellijoint Surgical (Canada)'),
(18718, 'https://ror.org/04fmn4153', 'en', 1, 'https://ror.org/04fmn4153 Leelanau Historical Society'),
(18719, 'https://ror.org/04fmvrn11', 'en', 1, 'https://ror.org/04fmvrn11 Susan Cohan Colon Cancer Foundation'),
(18720, 'https://ror.org/04fpakc82', 'en', 1, 'https://ror.org/04fpakc82 Cliff Funnell Associates'),
(18721, 'https://ror.org/04fq6zd17', 'en', 1, 'https://ror.org/04fq6zd17 Virginia Hospital Center'),
(18722, 'https://ror.org/04ftykp35', 'fr', 1, 'https://ror.org/04ftykp35 Association pour le Developpement de l''Institut de la Viande'),
(18723, 'https://ror.org/04fv2f128', 'no_lang_code', 1, 'https://ror.org/04fv2f128 Krejci Engineering (Czechia)'),
(18724, 'https://ror.org/04fvsd280', 'en', 1, 'https://ror.org/04fvsd280 Danish Agriculture and Food Council'),
(18725, 'https://ror.org/04fwa5r65', 'en', 1, 'https://ror.org/04fwa5r65 Cook Memorial Public Library District'),
(18726, 'https://ror.org/04fwrmd76', 'de', 1, 'https://ror.org/04fwrmd76 Gesellschaft zur Fƶrderung angewandter Informatik'),
(18727, 'https://ror.org/04fx4e978', 'no_lang_code', 1, 'https://ror.org/04fx4e978 Graybug Vision (United States)'),
(18728, 'https://ror.org/04g0yyw61', 'no_lang_code', 1, 'https://ror.org/04g0yyw61 Krones (Germany)'),
(18729, 'https://ror.org/04g1y2z78', 'no_lang_code', 1, 'https://ror.org/04g1y2z78 Engineering Arts (United States)'),
(18730, 'https://ror.org/04g2pxd54', 'en', 1, 'https://ror.org/04g2pxd54 Chipola College'),
(18731, 'https://ror.org/04g42c417', 'en', 1, 'https://ror.org/04g42c417 Perinatal Treatment Services'),
(18732, 'https://ror.org/04g47bb58', 'no_lang_code', 1, 'https://ror.org/04g47bb58 Innostart (Hungary) Innostart Nemzeti Üzleti és InnovÔciós Központ AlapítvÔny'),
(18733, 'https://ror.org/04g544j85', 'no_lang_code', 1, 'https://ror.org/04g544j85 M.A. Turbo Engine (Canada)'),
(18734, 'https://ror.org/04g5xjh29', 'en', 1, 'https://ror.org/04g5xjh29 Bangkok Metropolitan Administration'),
(18735, 'https://ror.org/04g6csw95', 'no_lang_code', 1, 'https://ror.org/04g6csw95 Holland Renewable Energy Technologies (Netherlands)'),
(18736, 'https://ror.org/04g6ht049', 'en', 1, 'https://ror.org/04g6ht049 South Florida Veterans Affairs Foundation for Research and Education'),
(18737, 'https://ror.org/04g9a2k03', 'en', 1, 'https://ror.org/04g9a2k03 Community Education Group'),
(18738, 'https://ror.org/04g9wby70', 'en', 1, 'https://ror.org/04g9wby70 European Organisation for Research and Treatment of Cancer'),
(18739, 'https://ror.org/04gafx689', 'en', 1, 'https://ror.org/04gafx689 Society for the Preservation of Long Island Antiquities'),
(18740, 'https://ror.org/04gana571', 'no_lang_code', 1, 'https://ror.org/04gana571 AirBoss Defense (Canada)'),
(18741, 'https://ror.org/04gbmxr55', 'en', 1, 'https://ror.org/04gbmxr55 Southerners on New Ground'),
(18742, 'https://ror.org/04gbvx157', 'no_lang_code', 1, 'https://ror.org/04gbvx157 Elusys Therapeutics (United States)'),
(18743, 'https://ror.org/04gc48f88', 'no_lang_code', 1, 'https://ror.org/04gc48f88 Earthwise Construction (United Kingdom)'),
(18744, 'https://ror.org/04gczvb13', 'en', 1, 'https://ror.org/04gczvb13 Illinois Archaeological Survey'),
(18745, 'https://ror.org/04ge7a533', 'no_lang_code', 1, 'https://ror.org/04ge7a533 Digital Video (Italy)'),
(18746, 'https://ror.org/04gegbz50', 'en', 1, 'https://ror.org/04gegbz50 Bay Medical Center'),
(18747, 'https://ror.org/04gehpa59', 'no_lang_code', 1, 'https://ror.org/04gehpa59 Digipolis (Belgium)'),
(18748, 'https://ror.org/04gewa138', 'no_lang_code', 1, 'https://ror.org/04gewa138 Evigia Systems (United States)'),
(18749, 'https://ror.org/04gfner94', 'en', 1, 'https://ror.org/04gfner94 Green Mountain College'),
(18750, 'https://ror.org/04ghttx68', 'en', 1, 'https://ror.org/04ghttx68 Nicholas Conor Institute'),
(18751, 'https://ror.org/04gk6e387', 'en', 1, 'https://ror.org/04gk6e387 Forest-based Sector Technology Platform'),
(18752, 'https://ror.org/04gkw9q47', 'en', 1, 'https://ror.org/04gkw9q47 Direction GĆ©nĆ©rale Ɖnergie Directorate-General for Energy Generaldirektion der Kommission'),
(18753, 'https://ror.org/04gns8903', 'en', 1, 'https://ror.org/04gns8903 Joint Institute for High Temperatures Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований Российской акаГемии наук'),
(18754, 'https://ror.org/04gxaf668', 'en', 1, 'https://ror.org/04gxaf668 Fevered Sleep'),
(18755, 'https://ror.org/04gz57z30', 'en', 1, 'https://ror.org/04gz57z30 Seabrook'),
(18756, 'https://ror.org/04gzrkk07', 'en', 1, 'https://ror.org/04gzrkk07 Clay County Archives and Historical Library'),
(18757, 'https://ror.org/04h1txa22', 'en', 1, 'https://ror.org/04h1txa22 Pentacle'),
(18758, 'https://ror.org/04h4j7e88', 'no_lang_code', 1, 'https://ror.org/04h4j7e88 Critical Systems Labs'),
(18759, 'https://ror.org/04h6nb532', 'no_lang_code', 1, 'https://ror.org/04h6nb532 Cyberce (Greece)'),
(18760, 'https://ror.org/04h6xfr41', 'no_lang_code', 1, 'https://ror.org/04h6xfr41 77 Elektronika (Hungary)'),
(18761, 'https://ror.org/04h71df97', 'no_lang_code', 1, 'https://ror.org/04h71df97 Flentrop Orgelbouw (Netherlands)'),
(18762, 'https://ror.org/04h79hz18', 'en', 1, 'https://ror.org/04h79hz18 Chimp Haven'),
(18763, 'https://ror.org/04h7d2806', 'no_lang_code', 1, 'https://ror.org/04h7d2806 Betrieb für InformationsTechnologie'),
(18764, 'https://ror.org/04h92v005', 'en', 1, 'https://ror.org/04h92v005 Waldo County Healthcare'),
(18765, 'https://ror.org/04h9m3j18', 'no_lang_code', 1, 'https://ror.org/04h9m3j18 CIT Energy Management (Sweden)'),
(18766, 'https://ror.org/04hayh169', 'no_lang_code', 1, 'https://ror.org/04hayh169 DSI Informationstechnik (Germany)'),
(18767, 'https://ror.org/04hb7mq03', 'no_lang_code', 1, 'https://ror.org/04hb7mq03 Accessible Designs (United States)'),
(18768, 'https://ror.org/04hf34n81', 'no_lang_code', 1, 'https://ror.org/04hf34n81 AmpTec (Germany)'),
(18769, 'https://ror.org/04hf68923', 'en', 1, 'https://ror.org/04hf68923 Bath Labs'),
(18770, 'https://ror.org/04hf8j803', 'en', 1, 'https://ror.org/04hf8j803 European Federation of Nurses Associations'),
(18771, 'https://ror.org/04hf9rd26', 'en', 1, 'https://ror.org/04hf9rd26 Preble County District Library'),
(18772, 'https://ror.org/04hfwsn29', 'no_lang_code', 1, 'https://ror.org/04hfwsn29 Information Today (United States)'),
(18773, 'https://ror.org/04hgy0088', 'no_lang_code', 1, 'https://ror.org/04hgy0088 Association of French Motorway Companies'),
(18774, 'https://ror.org/04hh2pc08', 'no_lang_code', 1, 'https://ror.org/04hh2pc08 Daat Research (United States)'),
(18775, 'https://ror.org/04hhzbh37', 'no_lang_code', 1, 'https://ror.org/04hhzbh37 CertiChem (United States)'),
(18776, 'https://ror.org/04hjxdv96', 'no_lang_code', 1, 'https://ror.org/04hjxdv96 Evidence (Italy)'),
(18777, 'https://ror.org/04hmk0w62', 'en', 1, 'https://ror.org/04hmk0w62 Kokomo-Howard County Public Library'),
(18778, 'https://ror.org/04hnb2h89', 'no_lang_code', 1, 'https://ror.org/04hnb2h89 Vinngroup (Sweden)'),
(18779, 'https://ror.org/04hnb7242', 'no_lang_code', 1, 'https://ror.org/04hnb7242 Cognia (United States)'),
(18780, 'https://ror.org/04hpt8s23', 'en', 1, 'https://ror.org/04hpt8s23 Supreme Court of Ohio'),
(18781, 'https://ror.org/04hq7r724', 'no_lang_code', 1, 'https://ror.org/04hq7r724 INERCO (Spain)'),
(18782, 'https://ror.org/04hs88j18', 'en', 1, 'https://ror.org/04hs88j18 Yale Griffin Prevention Research Center'),
(18783, 'https://ror.org/04hsde529', 'en', 1, 'https://ror.org/04hsde529 Wisconsin Institute of Nutrition Research Foundation'),
(18784, 'https://ror.org/04hsn8391', 'en', 1, 'https://ror.org/04hsn8391 Fairview Health Services'),
(18785, 'https://ror.org/04hsqns05', 'no_lang_code', 1, 'https://ror.org/04hsqns05 IPCOS (Belgium)'),
(18786, 'https://ror.org/04ht12d51', 'en', 1, 'https://ror.org/04ht12d51 Lunaria Association'),
(18787, 'https://ror.org/04hv45e07', 'no_lang_code', 1, 'https://ror.org/04hv45e07 Gedex (Canada)'),
(18788, 'https://ror.org/04hvtwq28', 'no_lang_code', 1, 'https://ror.org/04hvtwq28 Inox Pneumatic (Denmark)'),
(18789, 'https://ror.org/04hwjfc40', 'en', 1, 'https://ror.org/04hwjfc40 Sapir College המכללה ×”××§×“×ž×™×Ŗ הפיר'),
(18790, 'https://ror.org/04hypbt36', 'no_lang_code', 1, 'https://ror.org/04hypbt36 BISDN (Germany)'),
(18791, 'https://ror.org/04hzk8845', 'en', 1, 'https://ror.org/04hzk8845 Institute of Chemistry'),
(18792, 'https://ror.org/04j1e5984', 'no_lang_code', 1, 'https://ror.org/04j1e5984 Magyar Posta'),
(18793, 'https://ror.org/04j2j9782', 'en', 1, 'https://ror.org/04j2j9782 Institute of Ideas'),
(18794, 'https://ror.org/04j47vk14', 'en', 1, 'https://ror.org/04j47vk14 Austrian Research Institute for Artificial Intelligence Ɩsterreichisches Forschungsinstitut für Artificial Intelligence'),
(18795, 'https://ror.org/04j58pw68', 'no_lang_code', 1, 'https://ror.org/04j58pw68 Eaker Epidemiology Enterprises (United States)'),
(18796, 'https://ror.org/04j62p693', 'en', 1, 'https://ror.org/04j62p693 Department of Geodesy, Remote Sensing and Land Offices GeodƩzia, TƔvƩrzƩkelƩs Ʃs Fƶldhivatalok TanszƩk'),
(18797, 'https://ror.org/04j7dyy47', 'en', 1, 'https://ror.org/04j7dyy47 St. Charles Community College'),
(18798, 'https://ror.org/04jdd6f04', 'no_lang_code', 1, 'https://ror.org/04jdd6f04 Curtumes Aveneda (Portugal)'),
(18799, 'https://ror.org/04je8vh10', 'no_lang_code', 1, 'https://ror.org/04je8vh10 DryScrub (United States)'),
(18800, 'https://ror.org/04jfpc645', 'en', 1, 'https://ror.org/04jfpc645 Behavioral Health Network'),
(18801, 'https://ror.org/04jfzmb35', 'no_lang_code', 1, 'https://ror.org/04jfzmb35 Biosensia (Ireland)'),
(18802, 'https://ror.org/04jgrhh38', 'en', 1, 'https://ror.org/04jgrhh38 United States Government Publishing Office'),
(18803, 'https://ror.org/04jh9y258', 'no_lang_code', 1, 'https://ror.org/04jh9y258 Global RNA (United States)'),
(18804, 'https://ror.org/04jj71316', 'no_lang_code', 1, 'https://ror.org/04jj71316 Delap & Waller (Ireland)'),
(18805, 'https://ror.org/04jjrwe69', 'no_lang_code', 1, 'https://ror.org/04jjrwe69 A E Solutions (United Kingdom)'),
(18806, 'https://ror.org/04jmejg35', 'no_lang_code', 1, 'https://ror.org/04jmejg35 Dacord (United Kingdom)'),
(18807, 'https://ror.org/04jmj5q32', 'no_lang_code', 1, 'https://ror.org/04jmj5q32 Clarity Biosolutions (United Kingdom)'),
(18808, 'https://ror.org/04jna0a58', 'en', 1, 'https://ror.org/04jna0a58 Center for Discovery'),
(18809, 'https://ror.org/04jp86b51', 'no_lang_code', 1, 'https://ror.org/04jp86b51 Delta T Devices (United Kingdom)'),
(18810, 'https://ror.org/04jpf5f68', 'en', 1, 'https://ror.org/04jpf5f68 CaringFamily'),
(18811, 'https://ror.org/04jqbzt84', 'en', 1, 'https://ror.org/04jqbzt84 I.I. Schmalhausen Institute of Zoology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ зоології ім. І. І. Шмальгаузена ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(18812, 'https://ror.org/04jqmw447', 'en', 1, 'https://ror.org/04jqmw447 Institute of World Economy and International Relations Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мировой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(18813, 'https://ror.org/04jr7pd40', 'en', 1, 'https://ror.org/04jr7pd40 Cleveland State Community College'),
(18814, 'https://ror.org/04jt2r126', 'no_lang_code', 1, 'https://ror.org/04jt2r126 LaserLeap Technologies (Portugal)'),
(18815, 'https://ror.org/04jvb9y72', 'no_lang_code', 1, 'https://ror.org/04jvb9y72 Cellular Research (United States)'),
(18816, 'https://ror.org/04jwsnw10', 'en', 1, 'https://ror.org/04jwsnw10 CoxHealth'),
(18817, 'https://ror.org/04jyp8093', 'en', 1, 'https://ror.org/04jyp8093 National Healthcare Service Center Állami Egészségügyi EllÔtó Központ'),
(18818, 'https://ror.org/04jzz3236', 'en', 1, 'https://ror.org/04jzz3236 Victory Christian International Ministries'),
(18819, 'https://ror.org/04k2gbm60', 'en', 1, 'https://ror.org/04k2gbm60 Riverkids Pediatric Home Health'),
(18820, 'https://ror.org/04k3etn62', 'en', 1, 'https://ror.org/04k3etn62 Vermont Cancer Support Network'),
(18821, 'https://ror.org/04k49td77', 'en', 1, 'https://ror.org/04k49td77 Shaw Regional Cancer Center'),
(18822, 'https://ror.org/04k57j098', 'en', 1, 'https://ror.org/04k57j098 Health Initiatives for Youth'),
(18823, 'https://ror.org/04k6w8620', 'en', 1, 'https://ror.org/04k6w8620 Westside Institute for Science and Education'),
(18824, 'https://ror.org/04k7qsz50', 'en', 1, 'https://ror.org/04k7qsz50 Archmere Academy'),
(18825, 'https://ror.org/04k7ty438', 'no_lang_code', 1, 'https://ror.org/04k7ty438 Bitecic (United Kingdom)'),
(18826, 'https://ror.org/04k8crc02', 'no_lang_code', 1, 'https://ror.org/04k8crc02 Bright Cloud International (United States)'),
(18827, 'https://ror.org/04k8qhz96', 'no_lang_code', 1, 'https://ror.org/04k8qhz96 EnginSoft (United Kingdom)'),
(18828, 'https://ror.org/04kbxxk13', 'en', 1, 'https://ror.org/04kbxxk13 Research Centre for Applied System Safety and Industrial Medicine'),
(18829, 'https://ror.org/04kcbt127', 'no_lang_code', 1, 'https://ror.org/04kcbt127 CEDEO (Italy)'),
(18830, 'https://ror.org/04kcn2w48', 'no_lang_code', 1, 'https://ror.org/04kcn2w48 Eisenmann (Germany)'),
(18831, 'https://ror.org/04kcnzc28', 'no_lang_code', 1, 'https://ror.org/04kcnzc28 Hanzo Archives (United Kingdom)'),
(18832, 'https://ror.org/04kdd0e80', 'no_lang_code', 1, 'https://ror.org/04kdd0e80 Ansys (Canada)'),
(18833, 'https://ror.org/04kfyt897', 'en', 1, 'https://ror.org/04kfyt897 Center for Theoretical Physics'),
(18834, 'https://ror.org/04kjf4a42', 'no_lang_code', 1, 'https://ror.org/04kjf4a42 Amron (United States)'),
(18835, 'https://ror.org/04kkgz961', 'en', 1, 'https://ror.org/04kkgz961 Life Monologue Project'),
(18836, 'https://ror.org/04kktsb78', 'en', 1, 'https://ror.org/04kktsb78 Excellence Community Education Welfare Scheme'),
(18837, 'https://ror.org/04kn99c11', 'en', 1, 'https://ror.org/04kn99c11 Domus Academy'),
(18838, 'https://ror.org/04knh8e66', 'no_lang_code', 1, 'https://ror.org/04knh8e66 Aselsan (Turkey) Askeri Elektronik Sanayi Military Electronic Industries'),
(18839, 'https://ror.org/04kp3hw27', 'en', 1, 'https://ror.org/04kp3hw27 Urbana University'),
(18840, 'https://ror.org/04kpvds24', 'no_lang_code', 1, 'https://ror.org/04kpvds24 Applied Logic Laboratory (Hungary)'),
(18841, 'https://ror.org/04kq9w562', 'en', 1, 'https://ror.org/04kq9w562 JKM Library'),
(18842, 'https://ror.org/04ks3jq11', 'no_lang_code', 1, 'https://ror.org/04ks3jq11 HITEK Electronic Materials (United Kingdom)'),
(18843, 'https://ror.org/04ksf9y74', 'no_lang_code', 1, 'https://ror.org/04ksf9y74 MEMX (United States)'),
(18844, 'https://ror.org/04kte8x98', 'no_lang_code', 1, 'https://ror.org/04kte8x98 Datamed Systems Integration (Greece)'),
(18845, 'https://ror.org/04kwq4x05', 'no_lang_code', 1, 'https://ror.org/04kwq4x05 Harmonic Drive (Germany)'),
(18846, 'https://ror.org/04kxasy49', 'no_lang_code', 1, 'https://ror.org/04kxasy49 Exide Technologies (France)'),
(18847, 'https://ror.org/04kxs9506', 'fr', 1, 'https://ror.org/04kxs9506 Centre de Suivi Ecologique'),
(18848, 'https://ror.org/04ky2re88', 'en', 1, 'https://ror.org/04ky2re88 Wesley Theological Seminary'),
(18849, 'https://ror.org/04kz5w381', 'en', 1, 'https://ror.org/04kz5w381 Family Health Enterprise'),
(18850, 'https://ror.org/04kzfav20', 'no_lang_code', 1, 'https://ror.org/04kzfav20 Alterra Power (Canada)'),
(18851, 'https://ror.org/04m41m709', 'no_lang_code', 1, 'https://ror.org/04m41m709 AppliFlex (United States)'),
(18852, 'https://ror.org/04m57ab39', 'en', 1, 'https://ror.org/04m57ab39 Austin Travis County Integral Care'),
(18853, 'https://ror.org/04m8q0w70', 'no_lang_code', 1, 'https://ror.org/04m8q0w70 BioTransformations (United Kingdom)'),
(18854, 'https://ror.org/04mavvr54', 'no_lang_code', 1, 'https://ror.org/04mavvr54 Ergo (Greece)'),
(18855, 'https://ror.org/04mb2v544', 'fr', 1, 'https://ror.org/04mb2v544 Institut de recherches Ʃconomiques et sociales'),
(18856, 'https://ror.org/04md9sc62', 'en', 1, 'https://ror.org/04md9sc62 Bienvenidos Children''s Center'),
(18857, 'https://ror.org/04mekkj24', 'no_lang_code', 1, 'https://ror.org/04mekkj24 GeoAdvice Engineering (Canada)'),
(18858, 'https://ror.org/04mf4f618', 'no_lang_code', 1, 'https://ror.org/04mf4f618 IS Instruments (United Kingdom)'),
(18859, 'https://ror.org/04mg5jx38', 'en', 1, 'https://ror.org/04mg5jx38 Dr Williams''s Library'),
(18860, 'https://ror.org/04mk6vb04', 'en', 1, 'https://ror.org/04mk6vb04 Southeastern Wisconsin Information Technology Exchange Consortium'),
(18861, 'https://ror.org/04mkdzx81', 'en', 1, 'https://ror.org/04mkdzx81 American Bowen Academy'),
(18862, 'https://ror.org/04mmdfz16', 'no_lang_code', 1, 'https://ror.org/04mmdfz16 Bio Med Sciences (United States)'),
(18863, 'https://ror.org/04mmhym95', 'no_lang_code', 1, 'https://ror.org/04mmhym95 Argans (United Kingdom)'),
(18864, 'https://ror.org/04mnq8476', 'en', 1, 'https://ror.org/04mnq8476 Aluminium Valley SociƩtƩ de la VallƩe de l''Aluminium'),
(18865, 'https://ror.org/04mpq0910', 'no_lang_code', 1, 'https://ror.org/04mpq0910 RTD Services (Austria)'),
(18866, 'https://ror.org/04mvbrf96', 'no_lang_code', 1, 'https://ror.org/04mvbrf96 Emissions Reduzierungs Concepte (Germany)'),
(18867, 'https://ror.org/04mw34986', 'en', 1, 'https://ror.org/04mw34986 Gloucestershire Hospitals NHS Foundation Trust'),
(18868, 'https://ror.org/04mxgrm58', 'no_lang_code', 1, 'https://ror.org/04mxgrm58 Aquamarine Power (United Kingdom)'),
(18869, 'https://ror.org/04mya7254', 'no_lang_code', 1, 'https://ror.org/04mya7254 James Kent (United Kingdom)'),
(18870, 'https://ror.org/04mzgaa85', 'no_lang_code', 1, 'https://ror.org/04mzgaa85 PCAsso Diagnostics (United States)'),
(18871, 'https://ror.org/04mzgvt54', 'en', 1, 'https://ror.org/04mzgvt54 Environmental Research Institute'),
(18872, 'https://ror.org/04mzr3655', 'en', 1, 'https://ror.org/04mzr3655 Zibo Vocational Institute'),
(18873, 'https://ror.org/04n2fyr96', 'en', 1, 'https://ror.org/04n2fyr96 Presence Saint Joseph Hospital'),
(18874, 'https://ror.org/04n30cc76', 'no_lang_code', 1, 'https://ror.org/04n30cc76 Guifi.net'),
(18875, 'https://ror.org/04n664s92', 'no_lang_code', 1, 'https://ror.org/04n664s92 BPM (Greece)'),
(18876, 'https://ror.org/04n9ds574', 'no_lang_code', 1, 'https://ror.org/04n9ds574 Bridge 129 (Italy)'),
(18877, 'https://ror.org/04nb68247', 'no_lang_code', 1, 'https://ror.org/04nb68247 Balcas (United Kingdom)'),
(18878, 'https://ror.org/04nb6x947', 'no_lang_code', 1, 'https://ror.org/04nb6x947 Hamamatsu Photonics (United Kingdom)'),
(18879, 'https://ror.org/04nfv1e19', 'no_lang_code', 1, 'https://ror.org/04nfv1e19 ALPhANOV (France)'),
(18880, 'https://ror.org/04nj1pt13', 'no_lang_code', 1, 'https://ror.org/04nj1pt13 Hybrigenics (France)'),
(18881, 'https://ror.org/04nkrm103', 'no_lang_code', 1, 'https://ror.org/04nkrm103 Energrid (Italy)'),
(18882, 'https://ror.org/04nmnc538', 'no_lang_code', 1, 'https://ror.org/04nmnc538 FEIG Electronic (Germany)'),
(18883, 'https://ror.org/04nmrty73', 'en', 1, 'https://ror.org/04nmrty73 Biblioteca Nazionale Marciana National Library of St Mark'),
(18884, 'https://ror.org/04nmzan17', 'en', 1, 'https://ror.org/04nmzan17 Chabot–Las Positas Community College District'),
(18885, 'https://ror.org/04np39c31', 'en', 1, 'https://ror.org/04np39c31 Oshkosh Public Library'),
(18886, 'https://ror.org/04nt2zc43', 'no_lang_code', 1, 'https://ror.org/04nt2zc43 FIT Biotech (Finland)'),
(18887, 'https://ror.org/04nt8wd35', 'en', 1, 'https://ror.org/04nt8wd35 Comhairle Contae Luimnigh Limerick County Council'),
(18888, 'https://ror.org/04ntvzq34', 'en', 1, 'https://ror.org/04ntvzq34 Hearing Health Foundation'),
(18889, 'https://ror.org/04nvb1488', 'en', 1, 'https://ror.org/04nvb1488 FutureEverything'),
(18890, 'https://ror.org/04nvpdc40', 'es', 1, 'https://ror.org/04nvpdc40 Fundación Chile'),
(18891, 'https://ror.org/04nwdyy60', 'fr', 1, 'https://ror.org/04nwdyy60 Fidal'),
(18892, 'https://ror.org/04nx30h94', 'en', 1, 'https://ror.org/04nx30h94 African Malaria Network Trust'),
(18893, 'https://ror.org/04nx63b17', 'fr', 1, 'https://ror.org/04nx63b17 MinistĆØre de l''Ɖconomie et des Finances'),
(18894, 'https://ror.org/04nxrgp88', 'en', 1, 'https://ror.org/04nxrgp88 South Asian American Digital Archive'),
(18895, 'https://ror.org/04ny0re85', 'no_lang_code', 1, 'https://ror.org/04ny0re85 Biopharma Technology (United Kingdom)'),
(18896, 'https://ror.org/04nzhmg91', 'en', 1, 'https://ror.org/04nzhmg91 Ministerie van Justitie en Veiligheid Ministry of Security and Justice'),
(18897, 'https://ror.org/04p276q92', 'en', 1, 'https://ror.org/04p276q92 ISC Intelligence in Science'),
(18898, 'https://ror.org/04p5jrq42', 'no_lang_code', 1, 'https://ror.org/04p5jrq42 Idropan dell’Orto Depuratori (Italy)'),
(18899, 'https://ror.org/04p6spd57', 'no_lang_code', 1, 'https://ror.org/04p6spd57 Inbios (Italy)'),
(18900, 'https://ror.org/04p89va55', 'no_lang_code', 1, 'https://ror.org/04p89va55 TRW Automotive (France)'),
(18901, 'https://ror.org/04p90jr61', 'no_lang_code', 1, 'https://ror.org/04p90jr61 Delphinus Medical Technologies (United States)'),
(18902, 'https://ror.org/04pavt865', 'en', 1, 'https://ror.org/04pavt865 Bulgarian Ship Hydrodynamics Centre Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠø Š¦ŠµŠ½Ń‚ŃŠŃ€ по хиГро- Šø аероГинамика'),
(18903, 'https://ror.org/04pd0d926', 'no_lang_code', 1, 'https://ror.org/04pd0d926 TumorEnd (United States)'),
(18904, 'https://ror.org/04peavn87', 'en', 1, 'https://ror.org/04peavn87 Fund for Global Human Rights'),
(18905, 'https://ror.org/04pese132', 'no_lang_code', 1, 'https://ror.org/04pese132 Equipo de Tecnicos en Transporte y Territorio'),
(18906, 'https://ror.org/04pfsgw07', 'en', 1, 'https://ror.org/04pfsgw07 Fort Wayne Museum of Art'),
(18907, 'https://ror.org/04pg24b43', 'en', 1, 'https://ror.org/04pg24b43 Links Incorporated'),
(18908, 'https://ror.org/04pg25v93', 'no_lang_code', 1, 'https://ror.org/04pg25v93 Englekirk (United States)'),
(18909, 'https://ror.org/04pgnnw35', 'no_lang_code', 1, 'https://ror.org/04pgnnw35 Darlow Smithson Productions (United Kingdom)'),
(18910, 'https://ror.org/04pgtsj35', 'en', 1, 'https://ror.org/04pgtsj35 Hearth'),
(18911, 'https://ror.org/04ph1ah53', 'no_lang_code', 1, 'https://ror.org/04ph1ah53 ARES Energiesysteme (Germany)'),
(18912, 'https://ror.org/04pjbp005', 'no_lang_code', 1, 'https://ror.org/04pjbp005 Camelot Biomedical Systems (Italy)'),
(18913, 'https://ror.org/04pk7g992', 'en', 1, 'https://ror.org/04pk7g992 Dorset Green Technology Park'),
(18914, 'https://ror.org/04pkfgh33', 'no_lang_code', 1, 'https://ror.org/04pkfgh33 Tecnicas Cientificas Para Laboratorio (Spain)'),
(18915, 'https://ror.org/04png2m53', 'en', 1, 'https://ror.org/04png2m53 Maryland Coalition of Families'),
(18916, 'https://ror.org/04pp47x89', 'en', 1, 'https://ror.org/04pp47x89 Evansville Vanderburgh Public Library'),
(18917, 'https://ror.org/04pqqac29', 'no_lang_code', 1, 'https://ror.org/04pqqac29 Bac2 (United Kingdom)'),
(18918, 'https://ror.org/04prb1696', 'en', 1, 'https://ror.org/04prb1696 Missouri History Museum'),
(18919, 'https://ror.org/04pt73775', 'en', 1, 'https://ror.org/04pt73775 Executive Office of Governor'),
(18920, 'https://ror.org/04pthvp83', 'no_lang_code', 1, 'https://ror.org/04pthvp83 Henkel (Belgium)'),
(18921, 'https://ror.org/04pvq8g37', 'no_lang_code', 1, 'https://ror.org/04pvq8g37 IC Consulenten Ziviltechniker (Austria)'),
(18922, 'https://ror.org/04pvwy558', 'en', 1, 'https://ror.org/04pvwy558 Leuven Security Excellence Consortium'),
(18923, 'https://ror.org/04pwkqp57', 'en', 1, 'https://ror.org/04pwkqp57 Kansas City Public Library'),
(18924, 'https://ror.org/04pwzxj71', 'no_lang_code', 1, 'https://ror.org/04pwzxj71 TVAX Biomedical (United States)'),
(18925, 'https://ror.org/04pyzzc05', 'en', 1, 'https://ror.org/04pyzzc05 Bacon Street'),
(18926, 'https://ror.org/04pzwwc57', 'no_lang_code', 1, 'https://ror.org/04pzwwc57 General Patent Corporation (United States)'),
(18927, 'https://ror.org/04pzyxy68', 'en', 1, 'https://ror.org/04pzyxy68 Lakeshore Museum Center'),
(18928, 'https://ror.org/04q0te651', 'en', 1, 'https://ror.org/04q0te651 Society for Research on Nicotine and Tobacco'),
(18929, 'https://ror.org/04q2p9044', 'no_lang_code', 1, 'https://ror.org/04q2p9044 MakeBelieve Arts (United Kingdom)'),
(18930, 'https://ror.org/04q4pzv93', 'no_lang_code', 1, 'https://ror.org/04q4pzv93 Glottal Enterprises (United States)'),
(18931, 'https://ror.org/04q6gmg31', 'en', 1, 'https://ror.org/04q6gmg31 South Central Community Services'),
(18932, 'https://ror.org/04q91nm90', 'en', 1, 'https://ror.org/04q91nm90 Wonders and Worries'),
(18933, 'https://ror.org/04qaypf21', 'no_lang_code', 1, 'https://ror.org/04qaypf21 Trapeze (United Kingdom)'),
(18934, 'https://ror.org/04qd57q23', 'es', 1, 'https://ror.org/04qd57q23 Instituto Tecnológico de la Energía'),
(18935, 'https://ror.org/04qf1h664', 'en', 1, 'https://ror.org/04qf1h664 Williams County Public Library'),
(18936, 'https://ror.org/04qf21777', 'no_lang_code', 1, 'https://ror.org/04qf21777 Fuchs (United Kingdom)'),
(18937, 'https://ror.org/04qh7gr18', 'en', 1, 'https://ror.org/04qh7gr18 South Shore YMCA'),
(18938, 'https://ror.org/04qhdw391', 'en', 1, 'https://ror.org/04qhdw391 Beverly Hospital'),
(18939, 'https://ror.org/04qjx1736', 'no_lang_code', 1, 'https://ror.org/04qjx1736 Biosensor Applications (Sweden)'),
(18940, 'https://ror.org/04qktt137', 'no_lang_code', 1, 'https://ror.org/04qktt137 Bumaga (Netherlands)'),
(18941, 'https://ror.org/04qp61r47', 'no_lang_code', 1, 'https://ror.org/04qp61r47 ADRIA DƩveloppement'),
(18942, 'https://ror.org/04qs86835', 'no_lang_code', 1, 'https://ror.org/04qs86835 Euro Projects (United Kingdom)'),
(18943, 'https://ror.org/04qv87944', 'en', 1, 'https://ror.org/04qv87944 Trinity Lutheran Seminary'),
(18944, 'https://ror.org/04qw0nt96', 'no_lang_code', 1, 'https://ror.org/04qw0nt96 Immatics Biotechnologies (Germany)'),
(18945, 'https://ror.org/04qwevz50', 'en', 1, 'https://ror.org/04qwevz50 Regional Innovation Agency of Central Hungary'),
(18946, 'https://ror.org/04qx59376', 'en', 1, 'https://ror.org/04qx59376 Westmont Public Library'),
(18947, 'https://ror.org/04qx8er17', 'no_lang_code', 1, 'https://ror.org/04qx8er17 Magnetfabrik Bonn (Germany)'),
(18948, 'https://ror.org/04qydbg58', 'no_lang_code', 1, 'https://ror.org/04qydbg58 Arcola Energy (United Kingdom)'),
(18949, 'https://ror.org/04r13g438', 'en', 1, 'https://ror.org/04r13g438 Louisiana Federation of Families for Children''s Mental Health'),
(18950, 'https://ror.org/04r2khh81', 'no_lang_code', 1, 'https://ror.org/04r2khh81 IVU Traffic Technologies (Germany)'),
(18951, 'https://ror.org/04r3h5j56', 'no_lang_code', 1, 'https://ror.org/04r3h5j56 Jowat (Germany)'),
(18952, 'https://ror.org/04r49a107', 'en', 1, 'https://ror.org/04r49a107 Southern Illinois Healthcare'),
(18953, 'https://ror.org/04r50xh35', 'en', 1, 'https://ror.org/04r50xh35 Palatine Public Library District'),
(18954, 'https://ror.org/04r7d8a74', 'no_lang_code', 1, 'https://ror.org/04r7d8a74 Halevi Dweck (Israel)'),
(18955, 'https://ror.org/04r837x41', 'en', 1, 'https://ror.org/04r837x41 Institute of Economics'),
(18956, 'https://ror.org/04r9xv549', 'no_lang_code', 1, 'https://ror.org/04r9xv549 Conoship International (Netherlands)'),
(18957, 'https://ror.org/04rd5j182', 'no_lang_code', 1, 'https://ror.org/04rd5j182 Leeoat (United States)'),
(18958, 'https://ror.org/04rfx4365', 'en', 1, 'https://ror.org/04rfx4365 Licking County Alcoholism Prevention Program'),
(18959, 'https://ror.org/04rghc237', 'en', 1, 'https://ror.org/04rghc237 Dream of Hattiesburg'),
(18960, 'https://ror.org/04rgj3y73', 'en', 1, 'https://ror.org/04rgj3y73 Skokie Public Library'),
(18961, 'https://ror.org/04rj91175', 'no_lang_code', 1, 'https://ror.org/04rj91175 Braemar (United Kingdom)'),
(18962, 'https://ror.org/04rk35v57', 'no_lang_code', 1, 'https://ror.org/04rk35v57 Colt International (Germany)'),
(18963, 'https://ror.org/04rkfpx64', 'en', 1, 'https://ror.org/04rkfpx64 Center for Community Health Education Research and Service'),
(18964, 'https://ror.org/04rmmk944', 'no_lang_code', 1, 'https://ror.org/04rmmk944 SV Health Investors (United States)'),
(18965, 'https://ror.org/04rpjz321', 'no_lang_code', 1, 'https://ror.org/04rpjz321 Handy Chemicals (Canada)'),
(18966, 'https://ror.org/04rpkcv59', 'en', 1, 'https://ror.org/04rpkcv59 Star Center'),
(18967, 'https://ror.org/04rt32z32', 'en', 1, 'https://ror.org/04rt32z32 Centre d''Expertise en Traitement et Gestion de l''Eau Centre for Expertise in the Treatment and Management of Water'),
(18968, 'https://ror.org/04rtc8031', 'no_lang_code', 1, 'https://ror.org/04rtc8031 WPP (United Kingdom)'),
(18969, 'https://ror.org/04rxhfh18', 'en', 1, 'https://ror.org/04rxhfh18 Grosse Pointe Public Library'),
(18970, 'https://ror.org/04s0wf777', 'pt', 1, 'https://ror.org/04s0wf777 Empresa Municipal de Mobilidade e Estacionamento de Lisboa'),
(18971, 'https://ror.org/04s181d41', 'it', 1, 'https://ror.org/04s181d41 Ev-K2-Cnr'),
(18972, 'https://ror.org/04s2jm085', 'en', 1, 'https://ror.org/04s2jm085 Georgian College'),
(18973, 'https://ror.org/04s3t0375', 'no_lang_code', 1, 'https://ror.org/04s3t0375 CTVC (United Kingdom)'),
(18974, 'https://ror.org/04s4agn64', 'en', 1, 'https://ror.org/04s4agn64 International Brotherhood of Teamsters'),
(18975, 'https://ror.org/04s68jp10', 'en', 1, 'https://ror.org/04s68jp10 Gulf Research Center'),
(18976, 'https://ror.org/04s7a0g31', 'en', 1, 'https://ror.org/04s7a0g31 Rancho Research Institute'),
(18977, 'https://ror.org/04s7djw12', 'en', 1, 'https://ror.org/04s7djw12 Gateway ImpACT Coalition'),
(18978, 'https://ror.org/04s84vw78', 'en', 1, 'https://ror.org/04s84vw78 Walton Foundation for Independence'),
(18979, 'https://ror.org/04s87ky63', 'en', 1, 'https://ror.org/04s87ky63 A.P. Karpinsky Russian Geological Research Institute Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. А.П. ŠšŠ°Ń€ŠæŠøŠ½ŃŠŗŠ¾Š³Š¾'),
(18980, 'https://ror.org/04sbqvh08', 'no_lang_code', 1, 'https://ror.org/04sbqvh08 Iberia (Spain)'),
(18981, 'https://ror.org/04sd5y079', 'no_lang_code', 1, 'https://ror.org/04sd5y079 LS Plant Breeding (United Kingdom)'),
(18982, 'https://ror.org/04sfrpz15', 'en', 1, 'https://ror.org/04sfrpz15 Dairyland Power Cooperative'),
(18983, 'https://ror.org/04sgyk254', 'en', 1, 'https://ror.org/04sgyk254 Rochester College'),
(18984, 'https://ror.org/04sj6pm22', 'no_lang_code', 1, 'https://ror.org/04sj6pm22 Volkswagen Group (Italy)'),
(18985, 'https://ror.org/04sjgrc77', 'no_lang_code', 1, 'https://ror.org/04sjgrc77 Danish Micro Engineering (Denmark)'),
(18986, 'https://ror.org/04sm3yz09', 'no_lang_code', 1, 'https://ror.org/04sm3yz09 Marathon Oil (United States)'),
(18987, 'https://ror.org/04sn0fx55', 'en', 1, 'https://ror.org/04sn0fx55 Troy Public Library'),
(18988, 'https://ror.org/04sp71t37', 'en', 1, 'https://ror.org/04sp71t37 Texans Care for Children'),
(18989, 'https://ror.org/04spw3a80', 'en', 1, 'https://ror.org/04spw3a80 Hope Light Foundation'),
(18990, 'https://ror.org/04sq8d504', 'no_lang_code', 1, 'https://ror.org/04sq8d504 Cogent Technology (United Kingdom)'),
(18991, 'https://ror.org/04sr9sh66', 'en', 1, 'https://ror.org/04sr9sh66 Bartlett Public Library District'),
(18992, 'https://ror.org/04ss5f518', 'en', 1, 'https://ror.org/04ss5f518 Studio Museum in Harlem'),
(18993, 'https://ror.org/04ss7ct16', 'no_lang_code', 1, 'https://ror.org/04ss7ct16 LLA Instruments (Germany)'),
(18994, 'https://ror.org/04stxdv93', 'en', 1, 'https://ror.org/04stxdv93 Jefferson County Library System'),
(18995, 'https://ror.org/04svmrs70', 'no_lang_code', 1, 'https://ror.org/04svmrs70 Intercytex (United Kingdom)'),
(18996, 'https://ror.org/04swdfh12', 'no_lang_code', 1, 'https://ror.org/04swdfh12 Ericsson (Ireland)'),
(18997, 'https://ror.org/04swvpw46', 'no_lang_code', 1, 'https://ror.org/04swvpw46 Ivanhoe Energy (Canada)'),
(18998, 'https://ror.org/04sxwc885', 'en', 1, 'https://ror.org/04sxwc885 Super Stars Literacy'),
(18999, 'https://ror.org/04syjst69', 'no_lang_code', 1, 'https://ror.org/04syjst69 GALLOP Corporation (United States)'),
(19000, 'https://ror.org/04t059p48', 'en', 1, 'https://ror.org/04t059p48 Quinn Community Outreach Corporation'),
(19001, 'https://ror.org/04t0e1f58', 'en', 1, 'https://ror.org/04t0e1f58 Wilderness Inquiry'),
(19002, 'https://ror.org/04t3kx162', 'no_lang_code', 1, 'https://ror.org/04t3kx162 Danya Institute'),
(19003, 'https://ror.org/04t3pzj12', 'en', 1, 'https://ror.org/04t3pzj12 Archdiocese of Chicago'),
(19004, 'https://ror.org/04t48m922', 'en', 1, 'https://ror.org/04t48m922 Wisconsin Legislative Reference Bureau'),
(19005, 'https://ror.org/04t4e0r52', 'no_lang_code', 1, 'https://ror.org/04t4e0r52 Yamasa Corporation (Japan) ćƒ¤ćƒžć‚µé†¤ę²¹'),
(19006, 'https://ror.org/04t4pcw17', 'en', 1, 'https://ror.org/04t4pcw17 Astronomical Observatory AstronomickĆ” Observatoř Bělehrad'),
(19007, 'https://ror.org/04t5w6b17', 'no_lang_code', 1, 'https://ror.org/04t5w6b17 Lavrentyev Institute of Hydrodynamics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГроГинамики им. М.А. Š›Š°Š²Ń€ŠµŠ½Ń‚ŃŒŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(19008, 'https://ror.org/04t70d627', 'ro', 1, 'https://ror.org/04t70d627 Institutul Naţional de Cercetare Dezvoltare pentru Chimie si Petrochimie'),
(19009, 'https://ror.org/04t7syk29', 'en', 1, 'https://ror.org/04t7syk29 American Board of Nuclear Medicine'),
(19010, 'https://ror.org/04tbkx594', 'en', 1, 'https://ror.org/04tbkx594 European Centre for Executive Development'),
(19011, 'https://ror.org/04tf53s67', 'en', 1, 'https://ror.org/04tf53s67 People’s Community Baptist Church'),
(19012, 'https://ror.org/04tgdfs98', 'en', 1, 'https://ror.org/04tgdfs98 Sense of Security'),
(19013, 'https://ror.org/04thmk358', 'no_lang_code', 1, 'https://ror.org/04thmk358 Kyorin (United States)'),
(19014, 'https://ror.org/04tp44r29', 'no_lang_code', 1, 'https://ror.org/04tp44r29 Anton Paar (Austria)'),
(19015, 'https://ror.org/04tpfm663', 'no_lang_code', 1, 'https://ror.org/04tpfm663 Aktive Arc (Switzerland)'),
(19016, 'https://ror.org/04tqgg260', 'de', 1, 'https://ror.org/04tqgg260 FH Aachen'),
(19017, 'https://ror.org/04tqs3t69', 'en', 1, 'https://ror.org/04tqs3t69 Bay College'),
(19018, 'https://ror.org/04ts3qa26', 'en', 1, 'https://ror.org/04ts3qa26 China Association of Rural Energy Industry'),
(19019, 'https://ror.org/04tsbwh72', 'fr', 1, 'https://ror.org/04tsbwh72 CRƉ de MontrĆ©al'),
(19020, 'https://ror.org/04tsmgv27', 'en', 1, 'https://ror.org/04tsmgv27 St. Ann''s Episcopal Church'),
(19021, 'https://ror.org/04ttjs010', 'en', 1, 'https://ror.org/04ttjs010 Indianapolis Public Schools'),
(19022, 'https://ror.org/04ttp1a84', 'en', 1, 'https://ror.org/04ttp1a84 United States Association of Blind Athletes'),
(19023, 'https://ror.org/04tv3wg24', 'no_lang_code', 1, 'https://ror.org/04tv3wg24 Henkel (Ireland)'),
(19024, 'https://ror.org/04twgwn91', 'en', 1, 'https://ror.org/04twgwn91 The Sherkow Center for Child Development and Autism Spectrum Disorder'),
(19025, 'https://ror.org/04twxbp02', 'en', 1, 'https://ror.org/04twxbp02 Centro Ricerche Economico Sociali Economical and Social Research Centre'),
(19026, 'https://ror.org/04txhk134', 'en', 1, 'https://ror.org/04txhk134 Eastern University'),
(19027, 'https://ror.org/04v074446', 'en', 1, 'https://ror.org/04v074446 Institute of Physical and Organic Chemistry'),
(19028, 'https://ror.org/04v13n874', 'no_lang_code', 1, 'https://ror.org/04v13n874 AndroScience (United States)'),
(19029, 'https://ror.org/04v1k1t27', 'en', 1, 'https://ror.org/04v1k1t27 Illinois Valley Community College'),
(19030, 'https://ror.org/04v1xq350', 'no_lang_code', 1, 'https://ror.org/04v1xq350 SunEdison (Italy)'),
(19031, 'https://ror.org/04v3cx114', 'en', 1, 'https://ror.org/04v3cx114 The Beautiful Gate'),
(19032, 'https://ror.org/04v4mek61', 'no_lang_code', 1, 'https://ror.org/04v4mek61 Harman Technology (United Kingdom)'),
(19033, 'https://ror.org/04v5a5910', 'no_lang_code', 1, 'https://ror.org/04v5a5910 Bruhn NewTech (Denmark)'),
(19034, 'https://ror.org/04v76c606', 'en', 1, 'https://ror.org/04v76c606 Community Health Center Association of Mississippi'),
(19035, 'https://ror.org/04v8m3m69', 'no_lang_code', 1, 'https://ror.org/04v8m3m69 Enclavix (United States)'),
(19036, 'https://ror.org/04v999613', 'en', 1, 'https://ror.org/04v999613 Wingate Institute מכון וינגייט'),
(19037, 'https://ror.org/04vafcv05', 'no_lang_code', 1, 'https://ror.org/04vafcv05 AlgaPlus (Portugal)'),
(19038, 'https://ror.org/04vam3d04', 'no_lang_code', 1, 'https://ror.org/04vam3d04 Tracon Pharmaceuticals (United States)'),
(19039, 'https://ror.org/04vcmzn19', 'no_lang_code', 1, 'https://ror.org/04vcmzn19 Meggitt (Denmark)'),
(19040, 'https://ror.org/04veekh32', 'en', 1, 'https://ror.org/04veekh32 Autonomous Undersea Systems Institute'),
(19041, 'https://ror.org/04vejaw21', 'en', 1, 'https://ror.org/04vejaw21 Portage County District Library'),
(19042, 'https://ror.org/04vfnb935', 'no_lang_code', 1, 'https://ror.org/04vfnb935 Foreco (Netherlands)'),
(19043, 'https://ror.org/04vft5g71', 'en', 1, 'https://ror.org/04vft5g71 Ruth Mott Foundation'),
(19044, 'https://ror.org/04vkzy908', 'no_lang_code', 1, 'https://ror.org/04vkzy908 GeoVax (United States)'),
(19045, 'https://ror.org/04vn0ra85', 'en', 1, 'https://ror.org/04vn0ra85 Vessel Work'),
(19046, 'https://ror.org/04vnkt240', 'no_lang_code', 1, 'https://ror.org/04vnkt240 Alexza Pharmaceuticals (United States)'),
(19047, 'https://ror.org/04vsqr388', 'no_lang_code', 1, 'https://ror.org/04vsqr388 Deutsche Telekom (Hungary)'),
(19048, 'https://ror.org/04vtdnj65', 'no_lang_code', 1, 'https://ror.org/04vtdnj65 Aries Alliance (France)'),
(19049, 'https://ror.org/04vv4v570', 'en', 1, 'https://ror.org/04vv4v570 Landmark College'),
(19050, 'https://ror.org/04vvcpa15', 'no_lang_code', 1, 'https://ror.org/04vvcpa15 Fiberline Composites (Denmark)'),
(19051, 'https://ror.org/04vwqra35', 'no_lang_code', 1, 'https://ror.org/04vwqra35 GF Machining Solutions (Switzerland)'),
(19052, 'https://ror.org/04w00xm72', 'en', 1, 'https://ror.org/04w00xm72 Shanghai Municipal Center For Disease Control Prevention äøŠęµ·åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(19053, 'https://ror.org/04w12eh87', 'no_lang_code', 1, 'https://ror.org/04w12eh87 Incogna (Canada)'),
(19054, 'https://ror.org/04w16j270', 'en', 1, 'https://ror.org/04w16j270 Brooklyn Botanic Garden'),
(19055, 'https://ror.org/04w2a0822', 'no_lang_code', 1, 'https://ror.org/04w2a0822 Element Six (Ireland)'),
(19056, 'https://ror.org/04w30qj40', 'en', 1, 'https://ror.org/04w30qj40 Free Methodist Church'),
(19057, 'https://ror.org/04w3v4n03', 'no_lang_code', 1, 'https://ror.org/04w3v4n03 Biostat (United States)'),
(19058, 'https://ror.org/04w4gg556', 'en', 1, 'https://ror.org/04w4gg556 Student Sponsor Partners'),
(19059, 'https://ror.org/04w96ag64', 'no_lang_code', 1, 'https://ror.org/04w96ag64 BioSentinel (United States)'),
(19060, 'https://ror.org/04wbka248', 'en', 1, 'https://ror.org/04wbka248 International Security & Counter Terrorism Academy'),
(19061, 'https://ror.org/04wbxh769', 'en', 1, 'https://ror.org/04wbxh769 Cornwall Council'),
(19062, 'https://ror.org/04wck6395', 'no_lang_code', 1, 'https://ror.org/04wck6395 Aegis Rubber Engineering (United Kingdom)'),
(19063, 'https://ror.org/04wfr2810', 'en', 1, 'https://ror.org/04wfr2810 European Molecular Biology Organization'),
(19064, 'https://ror.org/04wfsv479', 'no_lang_code', 1, 'https://ror.org/04wfsv479 Cisco Systems (United Kingdom)'),
(19065, 'https://ror.org/04wg1q828', 'en', 1, 'https://ror.org/04wg1q828 Goalistics'),
(19066, 'https://ror.org/04wgs4413', 'en', 1, 'https://ror.org/04wgs4413 Tomorrows Children’s Fund'),
(19067, 'https://ror.org/04wkbmw59', 'en', 1, 'https://ror.org/04wkbmw59 Canadian Institute for the Relief of Pain and Disability'),
(19068, 'https://ror.org/04wkx5d83', 'en', 1, 'https://ror.org/04wkx5d83 Caribbean Public Health Agency'),
(19069, 'https://ror.org/04wmc0p46', 'en', 1, 'https://ror.org/04wmc0p46 Azerbaijan Research Educational Network Association'),
(19070, 'https://ror.org/04wmwts90', 'no_lang_code', 1, 'https://ror.org/04wmwts90 Connexor (Finland)'),
(19071, 'https://ror.org/04wn64r03', 'en', 1, 'https://ror.org/04wn64r03 Slavic Assistance Center'),
(19072, 'https://ror.org/04wpg4c25', 'en', 1, 'https://ror.org/04wpg4c25 The University of Vermont Health Network Home Health & Hospice'),
(19073, 'https://ror.org/04wr95t62', 'no_lang_code', 1, 'https://ror.org/04wr95t62 Alpex Technologies'),
(19074, 'https://ror.org/04wrzra57', 'en', 1, 'https://ror.org/04wrzra57 Biomedical Engineering Society'),
(19075, 'https://ror.org/04wrzsj34', 'no_lang_code', 1, 'https://ror.org/04wrzsj34 Data-Mate (Finland)'),
(19076, 'https://ror.org/04wv9b696', 'no_lang_code', 1, 'https://ror.org/04wv9b696 PetsDx Veterinary Imaging (United States)'),
(19077, 'https://ror.org/04wzebn39', 'en', 1, 'https://ror.org/04wzebn39 Brown County Public Library'),
(19078, 'https://ror.org/04wzsj946', 'en', 1, 'https://ror.org/04wzsj946 Pediatric Brain Tumor Consortium Foundation'),
(19079, 'https://ror.org/04x29sy28', 'no_lang_code', 1, 'https://ror.org/04x29sy28 Innovation Strategies (Spain)'),
(19080, 'https://ror.org/04x32t337', 'en', 1, 'https://ror.org/04x32t337 London TravelWatch'),
(19081, 'https://ror.org/04x4tst13', 'no_lang_code', 1, 'https://ror.org/04x4tst13 Bioprojet (France)'),
(19082, 'https://ror.org/04x6q7861', 'it', 1, 'https://ror.org/04x6q7861 ASSTRA - Associazione Trasporti'),
(19083, 'https://ror.org/04xbnc005', 'en', 1, 'https://ror.org/04xbnc005 Ben Franklin Technology Partners'),
(19084, 'https://ror.org/04xcy4533', 'en', 1, 'https://ror.org/04xcy4533 Eye Cancer Foundation'),
(19085, 'https://ror.org/04xfc5120', 'no_lang_code', 1, 'https://ror.org/04xfc5120 Itrust Consulting'),
(19086, 'https://ror.org/04xh10z69', 'en', 1, 'https://ror.org/04xh10z69 Cleveland Municipal Court'),
(19087, 'https://ror.org/04xhv0r49', 'en', 1, 'https://ror.org/04xhv0r49 Graceland University'),
(19088, 'https://ror.org/04xncs852', 'en', 1, 'https://ror.org/04xncs852 Hernando Community Coalition'),
(19089, 'https://ror.org/04xqb6e91', 'en', 1, 'https://ror.org/04xqb6e91 Calvary Bible College'),
(19090, 'https://ror.org/04xtpdj18', 'en', 1, 'https://ror.org/04xtpdj18 Institute of Mathematical Problems of Biology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математических проблем биологии (Š˜ŠœŠŸŠ‘ Š ŠŠ)'),
(19091, 'https://ror.org/04xwa2949', 'no_lang_code', 1, 'https://ror.org/04xwa2949 ForestRe (United Kingdom)'),
(19092, 'https://ror.org/04xwjzk13', 'no_lang_code', 1, 'https://ror.org/04xwjzk13 LogControl (Germany)'),
(19093, 'https://ror.org/04xx5ce35', 'en', 1, 'https://ror.org/04xx5ce35 Fairfield Hospital'),
(19094, 'https://ror.org/04xy11e47', 'fr', 1, 'https://ror.org/04xy11e47 Association Française de Médecine Morpho-Esthétique et anti-âge'),
(19095, 'https://ror.org/04xy2mq71', 'en', 1, 'https://ror.org/04xy2mq71 Istituto per la Valorizzazione del Legno e delle Specie Arboree Trees and Timber Institute'),
(19096, 'https://ror.org/04xybmk80', 'en', 1, 'https://ror.org/04xybmk80 GS1 Belgium & Luxembourg'),
(19097, 'https://ror.org/04y17xm23', 'en', 1, 'https://ror.org/04y17xm23 Southwestern Illinois College'),
(19098, 'https://ror.org/04y2v5q05', 'no_lang_code', 1, 'https://ror.org/04y2v5q05 Alcoa (United Kingdom)'),
(19099, 'https://ror.org/04y3nvy62', 'no_lang_code', 1, 'https://ror.org/04y3nvy62 Lablogic Systems (United Kingdom)'),
(19100, 'https://ror.org/04y419f85', 'tr', 1, 'https://ror.org/04y419f85 Moleküler Biyoloji Derneği'),
(19101, 'https://ror.org/04y4a7s50', 'en', 1, 'https://ror.org/04y4a7s50 American Board of Medical Specialties'),
(19102, 'https://ror.org/04y4jzv33', 'no_lang_code', 1, 'https://ror.org/04y4jzv33 Aeromics (United States)'),
(19103, 'https://ror.org/04y4zad82', 'no_lang_code', 1, 'https://ror.org/04y4zad82 Perma-Fix (United States)'),
(19104, 'https://ror.org/04y589z24', 'no_lang_code', 1, 'https://ror.org/04y589z24 3dMD (United Kingdom)'),
(19105, 'https://ror.org/04y61qm95', 'en', 1, 'https://ror.org/04y61qm95 University Of Medicine 1 Yangon į€†į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ ၁ ရန်ကုန်'),
(19106, 'https://ror.org/04y7he712', 'no_lang_code', 1, 'https://ror.org/04y7he712 Dacon (Norway)'),
(19107, 'https://ror.org/04y80fq57', 'en', 1, 'https://ror.org/04y80fq57 St. Margaret Mary School'),
(19108, 'https://ror.org/04yadxf37', 'en', 1, 'https://ror.org/04yadxf37 Ministry of Health'),
(19109, 'https://ror.org/04ybbb927', 'no_lang_code', 1, 'https://ror.org/04ybbb927 Beicip Franlab (France)'),
(19110, 'https://ror.org/04ybtcs72', 'en', 1, 'https://ror.org/04ybtcs72 Eureka College'),
(19111, 'https://ror.org/04ycg6942', 'no_lang_code', 1, 'https://ror.org/04ycg6942 Interporto Bologna (Italy)'),
(19112, 'https://ror.org/04yctbp37', 'en', 1, 'https://ror.org/04yctbp37 Czech Centre for Science and Society'),
(19113, 'https://ror.org/04yecmt82', 'no_lang_code', 1, 'https://ror.org/04yecmt82 InHand Electronics (United States)'),
(19114, 'https://ror.org/04yejes77', 'no_lang_code', 1, 'https://ror.org/04yejes77 A.P.E. Research (Italy)'),
(19115, 'https://ror.org/04yga0669', 'no_lang_code', 1, 'https://ror.org/04yga0669 ChromoLogic (United States)'),
(19116, 'https://ror.org/04ygec227', 'no_lang_code', 1, 'https://ror.org/04ygec227 Aixtooling (Germany)'),
(19117, 'https://ror.org/04yhme281', 'en', 1, 'https://ror.org/04yhme281 Jane Coffin Childs Memorial Fund for Medical Research'),
(19118, 'https://ror.org/04yk5j107', 'no_lang_code', 1, 'https://ror.org/04yk5j107 EOX IT Services (Austria)'),
(19119, 'https://ror.org/04yk5p402', 'no_lang_code', 1, 'https://ror.org/04yk5p402 TransCure BioServices (Switzerland)'),
(19120, 'https://ror.org/04ynpt476', 'no_lang_code', 1, 'https://ror.org/04ynpt476 Aquilus Pharmaceuticals (United States)'),
(19121, 'https://ror.org/04ynv8j79', 'en', 1, 'https://ror.org/04ynv8j79 Three Village Garden Club'),
(19122, 'https://ror.org/04yqne831', 'es', 1, 'https://ror.org/04yqne831 Confederacion EspaƱola De Fabricantes De Alimentos Compuestos Para Animales'),
(19123, 'https://ror.org/04yr9v708', 'no_lang_code', 1, 'https://ror.org/04yr9v708 HemoGenix (United States)'),
(19124, 'https://ror.org/04yrw5p64', 'no_lang_code', 1, 'https://ror.org/04yrw5p64 MedPharm (United Kingdom)'),
(19125, 'https://ror.org/04ytq7468', 'no_lang_code', 1, 'https://ror.org/04ytq7468 Exfo Electro-Optical Engineering (Canada)'),
(19126, 'https://ror.org/04ytszy78', 'en', 1, 'https://ror.org/04ytszy78 Wings of Hope Hospice'),
(19127, 'https://ror.org/04yvx5a03', 'en', 1, 'https://ror.org/04yvx5a03 WORLD'),
(19128, 'https://ror.org/04yw9th96', 'no_lang_code', 1, 'https://ror.org/04yw9th96 Ionic Software (Belgium)'),
(19129, 'https://ror.org/04ywd9355', 'en', 1, 'https://ror.org/04ywd9355 EDItEUR'),
(19130, 'https://ror.org/04yycxd24', 'no_lang_code', 1, 'https://ror.org/04yycxd24 Honeywell (Romania)'),
(19131, 'https://ror.org/04z08rc02', 'no_lang_code', 1, 'https://ror.org/04z08rc02 Iren Acqua Gas (Italy)'),
(19132, 'https://ror.org/04z0xef73', 'no_lang_code', 1, 'https://ror.org/04z0xef73 Current Water Technologies (Canada)'),
(19133, 'https://ror.org/04z1wkk88', 'no_lang_code', 1, 'https://ror.org/04z1wkk88 Atos (Italy)'),
(19134, 'https://ror.org/04z3krz71', 'en', 1, 'https://ror.org/04z3krz71 Unio Recovery Center'),
(19135, 'https://ror.org/04z572642', 'en', 1, 'https://ror.org/04z572642 Centre International de Hautes Etudes Agronomiques MƩditerranƩennes International Centre for Advanced Mediterranean Agronomic Studies'),
(19136, 'https://ror.org/04z5qbc60', 'no_lang_code', 1, 'https://ror.org/04z5qbc60 InterSystems (United States)'),
(19137, 'https://ror.org/04z7a1k12', 'en', 1, 'https://ror.org/04z7a1k12 Family Support Network'),
(19138, 'https://ror.org/04za13042', 'no_lang_code', 1, 'https://ror.org/04za13042 GL Chemtec International (Canada)'),
(19139, 'https://ror.org/04zagqw70', 'en', 1, 'https://ror.org/04zagqw70 Plymouth Historical Museum');
INSERT INTO `rors` VALUES
(19140, 'https://ror.org/04zatss13', 'no_lang_code', 1, 'https://ror.org/04zatss13 Eastern Analytical (United States)'),
(19141, 'https://ror.org/04zb7yk64', 'no_lang_code', 1, 'https://ror.org/04zb7yk64 Ardaco (Slovakia)'),
(19142, 'https://ror.org/04zc40243', 'en', 1, 'https://ror.org/04zc40243 Instituto Nacional de Medicina National Legal Medicine Institute'),
(19143, 'https://ror.org/04zd61g23', 'en', 1, 'https://ror.org/04zd61g23 The Urbana Free Library'),
(19144, 'https://ror.org/04zfyj091', 'no_lang_code', 1, 'https://ror.org/04zfyj091 McMillan and Moss Research'),
(19145, 'https://ror.org/04zg0fn89', 'en', 1, 'https://ror.org/04zg0fn89 Sierra Nevada Memorial Hospital Foundation'),
(19146, 'https://ror.org/04zj5m910', 'no_lang_code', 1, 'https://ror.org/04zj5m910 Actalia (France)'),
(19147, 'https://ror.org/04zjxe411', 'en', 1, 'https://ror.org/04zjxe411 Detroit Public Library'),
(19148, 'https://ror.org/04zmm8y38', 'en', 1, 'https://ror.org/04zmm8y38 Central Methodist University'),
(19149, 'https://ror.org/04zp06k22', 'en', 1, 'https://ror.org/04zp06k22 Statewide California Electronic Library Consortium'),
(19150, 'https://ror.org/04zp3vy09', 'en', 1, 'https://ror.org/04zp3vy09 Temple Missionary Baptist Church'),
(19151, 'https://ror.org/04zpv5q97', 'en', 1, 'https://ror.org/04zpv5q97 Stockholm Environment Institute SƤƤstva Eesti Instituut, Stockholmi Keskkonnainstituudi Tallinna Keskus'),
(19152, 'https://ror.org/04zr95r14', 'it', 1, 'https://ror.org/04zr95r14 Centro Italiano Materiali di Applicazione Calzaturiera'),
(19153, 'https://ror.org/04zssq864', 'no_lang_code', 1, 'https://ror.org/04zssq864 K&S Projektmanagement (Germany)'),
(19154, 'https://ror.org/04ztqy570', 'en', 1, 'https://ror.org/04ztqy570 Sacramento VA Medical Center'),
(19155, 'https://ror.org/04zxtsh93', 'en', 1, 'https://ror.org/04zxtsh93 Wichita Clinic'),
(19156, 'https://ror.org/04zy24864', 'en', 1, 'https://ror.org/04zy24864 Institute of Thermophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплофизики Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(19157, 'https://ror.org/04zyghr89', 'en', 1, 'https://ror.org/04zyghr89 Pension Benefit Guaranty Corporation'),
(19158, 'https://ror.org/04zym2g32', 'no_lang_code', 1, 'https://ror.org/04zym2g32 Lightpoint Medical (United Kingdom)'),
(19159, 'https://ror.org/04zzepa29', 'en', 1, 'https://ror.org/04zzepa29 Shriners Hospitals for Children - Salt Lake City'),
(19160, 'https://ror.org/0500fyd17', 'no_lang_code', 1, 'https://ror.org/0500fyd17 Huawei Technologies (Sweden)'),
(19161, 'https://ror.org/0500x9g47', 'no_lang_code', 1, 'https://ror.org/0500x9g47 Senergy (United Kingdom)'),
(19162, 'https://ror.org/0502g5y81', 'no_lang_code', 1, 'https://ror.org/0502g5y81 Endomag (United Kingdom)'),
(19163, 'https://ror.org/0503ft796', 'no_lang_code', 1, 'https://ror.org/0503ft796 Castrol (United Kingdom)'),
(19164, 'https://ror.org/050473r14', 'no_lang_code', 1, 'https://ror.org/050473r14 Spectrum Pharmaceuticals (United States)'),
(19165, 'https://ror.org/0504a7h38', 'en', 1, 'https://ror.org/0504a7h38 Baltic Energy Conservation Agency'),
(19166, 'https://ror.org/0504r6d12', 'en', 1, 'https://ror.org/0504r6d12 ASTER Aster, la station de vulgarisation et de loisirs scientifiques du Bas-Saint-Laurent'),
(19167, 'https://ror.org/0504yp647', 'no_lang_code', 1, 'https://ror.org/0504yp647 Materials Solutions (United Kingdom)'),
(19168, 'https://ror.org/05051a828', 'en', 1, 'https://ror.org/05051a828 Asian Community Mental Health Services'),
(19169, 'https://ror.org/0505c0p37', 'no_lang_code', 1, 'https://ror.org/0505c0p37 Icometrix (Belgium)'),
(19170, 'https://ror.org/0505c3j52', 'no_lang_code', 1, 'https://ror.org/0505c3j52 Sabinet (South Africa)'),
(19171, 'https://ror.org/0506wz312', 'no_lang_code', 1, 'https://ror.org/0506wz312 AER Group (United States)'),
(19172, 'https://ror.org/0507a9w72', 'en', 1, 'https://ror.org/0507a9w72 Brown Mackie College'),
(19173, 'https://ror.org/050bkn381', 'no_lang_code', 1, 'https://ror.org/050bkn381 Interoud Innovation (Spain)'),
(19174, 'https://ror.org/050bz3f23', 'en', 1, 'https://ror.org/050bz3f23 Wake County Human Services'),
(19175, 'https://ror.org/050cc0966', 'en', 1, 'https://ror.org/050cc0966 Sanford Children''s Specialty Clinic'),
(19176, 'https://ror.org/050d44380', 'en', 1, 'https://ror.org/050d44380 Life Science Association of Manitoba'),
(19177, 'https://ror.org/050g4m073', 'no_lang_code', 1, 'https://ror.org/050g4m073 Crest Nicholson (United Kingdom)'),
(19178, 'https://ror.org/050hz4v21', 'no_lang_code', 1, 'https://ror.org/050hz4v21 A2Dominion'),
(19179, 'https://ror.org/050k5ft87', 'en', 1, 'https://ror.org/050k5ft87 Mars Hill University'),
(19180, 'https://ror.org/050kt0y53', 'no_lang_code', 1, 'https://ror.org/050kt0y53 Citrix (United Kingdom)'),
(19181, 'https://ror.org/050pc9c24', 'no_lang_code', 1, 'https://ror.org/050pc9c24 Kistler (Switzerland)'),
(19182, 'https://ror.org/050pmr719', 'en', 1, 'https://ror.org/050pmr719 European Patent Organisation EuropƤische Patentorganisation'),
(19183, 'https://ror.org/050rdvn58', 'en', 1, 'https://ror.org/050rdvn58 Philippine Heart Center'),
(19184, 'https://ror.org/050rfr085', 'de', 1, 'https://ror.org/050rfr085 Bayerisches Landesamt für Denkmalpflege'),
(19185, 'https://ror.org/050rqx152', 'en', 1, 'https://ror.org/050rqx152 Confederation of Organisations in Road Transport Enforcement'),
(19186, 'https://ror.org/050sbwe70', 'no_lang_code', 1, 'https://ror.org/050sbwe70 Romus (Spain)'),
(19187, 'https://ror.org/050t3rs25', 'no_lang_code', 1, 'https://ror.org/050t3rs25 HireGround (Canada)'),
(19188, 'https://ror.org/0510q5f30', 'no_lang_code', 1, 'https://ror.org/0510q5f30 European Multimedia Forum (United Kingdom)'),
(19189, 'https://ror.org/0510trc57', 'en', 1, 'https://ror.org/0510trc57 Lake Michigan College'),
(19190, 'https://ror.org/0511egv62', 'no_lang_code', 1, 'https://ror.org/0511egv62 Viamet Pharmaceuticals (United States)'),
(19191, 'https://ror.org/0512c6n60', 'no_lang_code', 1, 'https://ror.org/0512c6n60 Advent Technologies (Greece)'),
(19192, 'https://ror.org/05135fy66', 'no_lang_code', 1, 'https://ror.org/05135fy66 Black & Veatch (United Kingdom)'),
(19193, 'https://ror.org/05150xp52', 'fr', 1, 'https://ror.org/05150xp52 Association Nationale de Parents d''Enfants DƩficients Auditifs'),
(19194, 'https://ror.org/0515z7d79', 'no_lang_code', 1, 'https://ror.org/0515z7d79 IGE Therapeutics (United States)'),
(19195, 'https://ror.org/051659894', 'no_lang_code', 1, 'https://ror.org/051659894 BP (United States)'),
(19196, 'https://ror.org/05168x816', 'no_lang_code', 1, 'https://ror.org/05168x816 Biocrates Life Sciences (Austria)'),
(19197, 'https://ror.org/0516c4k86', 'en', 1, 'https://ror.org/0516c4k86 Union Hospital'),
(19198, 'https://ror.org/05177zd25', 'no_lang_code', 1, 'https://ror.org/05177zd25 Fenix TNT (Czechia)'),
(19199, 'https://ror.org/051940627', 'en', 1, 'https://ror.org/051940627 Wright Memorial Public Library'),
(19200, 'https://ror.org/0519yw032', 'en', 1, 'https://ror.org/0519yw032 EcoSpark'),
(19201, 'https://ror.org/051a9ap09', 'no_lang_code', 1, 'https://ror.org/051a9ap09 Bibliotheca Alexandrina Center for Documentation of Cultural and Natural Heritage Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(19202, 'https://ror.org/051aeqp85', 'en', 1, 'https://ror.org/051aeqp85 Mississippi Department of Education'),
(19203, 'https://ror.org/051b3zp86', 'en', 1, 'https://ror.org/051b3zp86 Academy of Entrepreneurship'),
(19204, 'https://ror.org/051bvnz41', 'en', 1, 'https://ror.org/051bvnz41 Children''s Treehouse Foundation'),
(19205, 'https://ror.org/051c1hy38', 'no_lang_code', 1, 'https://ror.org/051c1hy38 Avecom (Belgium)'),
(19206, 'https://ror.org/051g2vd56', 'no_lang_code', 1, 'https://ror.org/051g2vd56 Lehigh Hanson (Canada)'),
(19207, 'https://ror.org/051h5at53', 'en', 1, 'https://ror.org/051h5at53 Marathon County Public Library'),
(19208, 'https://ror.org/051hpv692', 'en', 1, 'https://ror.org/051hpv692 CSIRO Publishing'),
(19209, 'https://ror.org/051jp6337', 'en', 1, 'https://ror.org/051jp6337 Impression 5 Science Center'),
(19210, 'https://ror.org/051npad76', 'en', 1, 'https://ror.org/051npad76 Institute for Economic Research on Firms and Growth Istituto di Ricerca sull''Impresa e lo Sviluppo'),
(19211, 'https://ror.org/051p1yx12', 'no_lang_code', 1, 'https://ror.org/051p1yx12 Egetaepper (Denmark)'),
(19212, 'https://ror.org/051qkf035', 'no_lang_code', 1, 'https://ror.org/051qkf035 Constellation Technology (United States)'),
(19213, 'https://ror.org/051tq1j63', 'en', 1, 'https://ror.org/051tq1j63 Elmhurst History Museum'),
(19214, 'https://ror.org/051v7cd19', 'en', 1, 'https://ror.org/051v7cd19 Belmont College'),
(19215, 'https://ror.org/051w1mx35', 'no_lang_code', 1, 'https://ror.org/051w1mx35 Thales (Portugal)'),
(19216, 'https://ror.org/051xf7e84', 'en', 1, 'https://ror.org/051xf7e84 Gloucestershire County Council'),
(19217, 'https://ror.org/051yn8276', 'en', 1, 'https://ror.org/051yn8276 Women''s Oncology Research and Dialogue'),
(19218, 'https://ror.org/05206wn55', 'no_lang_code', 1, 'https://ror.org/05206wn55 Aspen Systems (United States)'),
(19219, 'https://ror.org/0520ezd47', 'no_lang_code', 1, 'https://ror.org/0520ezd47 Esys (United Kingdom)'),
(19220, 'https://ror.org/0520p3z27', 'en', 1, 'https://ror.org/0520p3z27 Rainbow Hospice and Palliative Care'),
(19221, 'https://ror.org/05223j896', 'en', 1, 'https://ror.org/05223j896 Daniel Drake Center'),
(19222, 'https://ror.org/0522v1289', 'it', 1, 'https://ror.org/0522v1289 Museo Nazionale della Scienza e della Tecnologia Leonardo da Vinci'),
(19223, 'https://ror.org/0523sbv14', 'en', 1, 'https://ror.org/0523sbv14 Open Source Science Project'),
(19224, 'https://ror.org/0524j0t30', 'en', 1, 'https://ror.org/0524j0t30 National Federation of Families for Children''s Mental Health'),
(19225, 'https://ror.org/052567m16', 'no_lang_code', 1, 'https://ror.org/052567m16 Amorim Cork Composites (Portugal)'),
(19226, 'https://ror.org/0525npv05', 'no_lang_code', 1, 'https://ror.org/0525npv05 Dr Matzat & Co (Germany)'),
(19227, 'https://ror.org/05262hj55', 'en', 1, 'https://ror.org/05262hj55 RCAP Solutions'),
(19228, 'https://ror.org/05269ja13', 'no_lang_code', 1, 'https://ror.org/05269ja13 Advanced Laser Technology (United Kingdom)'),
(19229, 'https://ror.org/052811a42', 'en', 1, 'https://ror.org/052811a42 Canadian Meteorological and Oceanographic Society La SociƩtƩ canadienne de mƩtƩorologie et d''ocƩanographie'),
(19230, 'https://ror.org/052ahwq68', 'en', 1, 'https://ror.org/052ahwq68 Muskegon Area District Library'),
(19231, 'https://ror.org/052b68304', 'no_lang_code', 1, 'https://ror.org/052b68304 Magna Parva (United Kingdom)'),
(19232, 'https://ror.org/052bszm02', 'en', 1, 'https://ror.org/052bszm02 Culex Environmental'),
(19233, 'https://ror.org/052c3cf27', 'no_lang_code', 1, 'https://ror.org/052c3cf27 Oceaneering International (United Kingdom)'),
(19234, 'https://ror.org/052dkve29', 'no_lang_code', 1, 'https://ror.org/052dkve29 Biomedical Enterprises (United States)'),
(19235, 'https://ror.org/052eb7a13', 'en', 1, 'https://ror.org/052eb7a13 European Membrane House'),
(19236, 'https://ror.org/052hb4r33', 'no_lang_code', 1, 'https://ror.org/052hb4r33 EnerTech (United States)'),
(19237, 'https://ror.org/052j1gk85', 'en', 1, 'https://ror.org/052j1gk85 Milwaukee Public Library'),
(19238, 'https://ror.org/052jw4t43', 'no_lang_code', 1, 'https://ror.org/052jw4t43 M Wright and Sons (United Kingdom)'),
(19239, 'https://ror.org/052kwn289', 'no_lang_code', 1, 'https://ror.org/052kwn289 Avantium (Netherlands)'),
(19240, 'https://ror.org/052qpep46', 'en', 1, 'https://ror.org/052qpep46 Michigan History Center'),
(19241, 'https://ror.org/052r5gz16', 'en', 1, 'https://ror.org/052r5gz16 People''s Clinic of Morehead'),
(19242, 'https://ror.org/052tawh47', 'en', 1, 'https://ror.org/052tawh47 Wallace-Kettering Neuroscience Institute'),
(19243, 'https://ror.org/052v6gh58', 'no_lang_code', 1, 'https://ror.org/052v6gh58 Integrated Micro Sensors (United States)'),
(19244, 'https://ror.org/052vb0z63', 'no_lang_code', 1, 'https://ror.org/052vb0z63 Tokyo Electron (Ireland)'),
(19245, 'https://ror.org/052w1b871', 'no_lang_code', 1, 'https://ror.org/052w1b871 Bellicum Pharmaceuticals (United States)'),
(19246, 'https://ror.org/052z4yp15', 'no_lang_code', 1, 'https://ror.org/052z4yp15 BioActor (Netherlands)'),
(19247, 'https://ror.org/0531gz477', 'en', 1, 'https://ror.org/0531gz477 University Settlement'),
(19248, 'https://ror.org/0531hmb77', 'en', 1, 'https://ror.org/0531hmb77 Behavioral Tech'),
(19249, 'https://ror.org/05320rs34', 'en', 1, 'https://ror.org/05320rs34 Applied Information Management Institute'),
(19250, 'https://ror.org/05335sh79', 'en', 1, 'https://ror.org/05335sh79 Office of Juvenile Justice and Delinquency Prevention'),
(19251, 'https://ror.org/0533m8w24', 'no_lang_code', 1, 'https://ror.org/0533m8w24 Advanced Simulation & Design (Germany)'),
(19252, 'https://ror.org/0533xsy32', 'no_lang_code', 1, 'https://ror.org/0533xsy32 Computercraft (United States)'),
(19253, 'https://ror.org/053833993', 'en', 1, 'https://ror.org/053833993 Institute of Optical Materials and Technologies Jordan Malinowski Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по оптически материали Šø технологии ā€œŠŠŗŠ°Š“. ЙорГан ŠœŠ°Š»ŠøŠ½Š¾Š²ŃŠŗŠøā€'),
(19254, 'https://ror.org/053aamg33', 'no_lang_code', 1, 'https://ror.org/053aamg33 Flying-Cam (Belgium)'),
(19255, 'https://ror.org/053dpzm93', 'pt', 1, 'https://ror.org/053dpzm93 Lusa AgĆŖncia de NotĆ­cias de Portugal'),
(19256, 'https://ror.org/053g97n06', 'en', 1, 'https://ror.org/053g97n06 European Genetic Alliances Network'),
(19257, 'https://ror.org/053hexc75', 'no_lang_code', 1, 'https://ror.org/053hexc75 CS Communication & SystĆØmes (France)'),
(19258, 'https://ror.org/053jctp32', 'no_lang_code', 1, 'https://ror.org/053jctp32 Green Biologics (United Kingdom)'),
(19259, 'https://ror.org/053mpbz30', 'en', 1, 'https://ror.org/053mpbz30 Association of Research Libraries'),
(19260, 'https://ror.org/053n5f413', 'en', 1, 'https://ror.org/053n5f413 Walnut Creek Hearing Aid Center'),
(19261, 'https://ror.org/053n8rm70', 'en', 1, 'https://ror.org/053n8rm70 European Patients Forum'),
(19262, 'https://ror.org/053nwxy06', 'en', 1, 'https://ror.org/053nwxy06 Los Angeles County Arboretum and Botanic Garden'),
(19263, 'https://ror.org/053pbpj30', 'en', 1, 'https://ror.org/053pbpj30 American Veterinary Medical Association'),
(19264, 'https://ror.org/053pt1j04', 'no_lang_code', 1, 'https://ror.org/053pt1j04 Hugin Expert (Denmark)'),
(19265, 'https://ror.org/053q7dc62', 'en', 1, 'https://ror.org/053q7dc62 Shanta Foundation'),
(19266, 'https://ror.org/053qa4s13', 'it', 1, 'https://ror.org/053qa4s13 Camera di Commercio di Firenze Florence International Mediation Chamber'),
(19267, 'https://ror.org/053qf6056', 'no_lang_code', 1, 'https://ror.org/053qf6056 Ingenico (France)'),
(19268, 'https://ror.org/053sbf336', 'en', 1, 'https://ror.org/053sbf336 Grand Rapids Public Library'),
(19269, 'https://ror.org/053sja846', 'en', 1, 'https://ror.org/053sja846 Susan G Komen Arkansas'),
(19270, 'https://ror.org/053swdh51', 'no_lang_code', 1, 'https://ror.org/053swdh51 ADIRA (Portugal)'),
(19271, 'https://ror.org/053t4zs10', 'no_lang_code', 1, 'https://ror.org/053t4zs10 Bunnell (United States)'),
(19272, 'https://ror.org/053tcf519', 'no_lang_code', 1, 'https://ror.org/053tcf519 Innopole (Spain)'),
(19273, 'https://ror.org/053txhk38', 'no_lang_code', 1, 'https://ror.org/053txhk38 BroadBit (Slovakia)'),
(19274, 'https://ror.org/053vrw097', 'no_lang_code', 1, 'https://ror.org/053vrw097 Incogen (United States)'),
(19275, 'https://ror.org/053y7vn39', 'no_lang_code', 1, 'https://ror.org/053y7vn39 European Dynamics (Greece)'),
(19276, 'https://ror.org/05406m268', 'no_lang_code', 1, 'https://ror.org/05406m268 Applied DNA Sciences (United States)'),
(19277, 'https://ror.org/0546cha72', 'no_lang_code', 1, 'https://ror.org/0546cha72 Agoria (Belgium)'),
(19278, 'https://ror.org/05488qq19', 'en', 1, 'https://ror.org/05488qq19 Highland County District Library'),
(19279, 'https://ror.org/0549xxn78', 'no_lang_code', 1, 'https://ror.org/0549xxn78 Rusal (Ireland) РУДАЛ'),
(19280, 'https://ror.org/054bssx30', 'en', 1, 'https://ror.org/054bssx30 Cincinnati Public Schools'),
(19281, 'https://ror.org/054c8sq43', 'en', 1, 'https://ror.org/054c8sq43 Warren Clinic'),
(19282, 'https://ror.org/054ckmy78', 'no_lang_code', 1, 'https://ror.org/054ckmy78 Cap Eiger (Spain)'),
(19283, 'https://ror.org/054exvb85', 'en', 1, 'https://ror.org/054exvb85 British Nutrition Foundation'),
(19284, 'https://ror.org/054gder17', 'en', 1, 'https://ror.org/054gder17 Elephant Thoughts'),
(19285, 'https://ror.org/054gj9d11', 'no_lang_code', 1, 'https://ror.org/054gj9d11 Bay Glass (United States)'),
(19286, 'https://ror.org/054h7rn92', 'en', 1, 'https://ror.org/054h7rn92 Arc of High Point'),
(19287, 'https://ror.org/054hm6j14', 'en', 1, 'https://ror.org/054hm6j14 Vollum Institute'),
(19288, 'https://ror.org/054hp8k77', 'no_lang_code', 1, 'https://ror.org/054hp8k77 Informed Horizons Education (United States)'),
(19289, 'https://ror.org/054hpzj06', 'no_lang_code', 1, 'https://ror.org/054hpzj06 Infinium (United States)'),
(19290, 'https://ror.org/054hr5a68', 'en', 1, 'https://ror.org/054hr5a68 Greg Foundation'),
(19291, 'https://ror.org/054hsde96', 'no_lang_code', 1, 'https://ror.org/054hsde96 Gesellschaft für Technologieförderung Itzehoe'),
(19292, 'https://ror.org/054j6z281', 'en', 1, 'https://ror.org/054j6z281 Integrity House'),
(19293, 'https://ror.org/054nctx58', 'no_lang_code', 1, 'https://ror.org/054nctx58 Cenex (United Kingdom)'),
(19294, 'https://ror.org/054rms077', 'no_lang_code', 1, 'https://ror.org/054rms077 Innegra Technologies (United States)'),
(19295, 'https://ror.org/054sw3365', 'en', 1, 'https://ror.org/054sw3365 GIS - Transfer Center Foundation'),
(19296, 'https://ror.org/054tjx319', 'en', 1, 'https://ror.org/054tjx319 Tree House Humane Society'),
(19297, 'https://ror.org/054w4h840', 'no_lang_code', 1, 'https://ror.org/054w4h840 Enig Associates (United States)'),
(19298, 'https://ror.org/054x1vp63', 'en', 1, 'https://ror.org/054x1vp63 International Primatological Society'),
(19299, 'https://ror.org/054x53k79', 'no_lang_code', 1, 'https://ror.org/054x53k79 Fluid Operations (Germany)'),
(19300, 'https://ror.org/054xwps40', 'no_lang_code', 1, 'https://ror.org/054xwps40 Axsym (United Kingdom)'),
(19301, 'https://ror.org/054xyc945', 'no_lang_code', 1, 'https://ror.org/054xyc945 Pharmaxis (Australia)'),
(19302, 'https://ror.org/054y4pt02', 'no_lang_code', 1, 'https://ror.org/054y4pt02 Harineras Villamayor (Spain)'),
(19303, 'https://ror.org/054ykvg32', 'no_lang_code', 1, 'https://ror.org/054ykvg32 Heartware International (United States)'),
(19304, 'https://ror.org/054zgtc98', 'en', 1, 'https://ror.org/054zgtc98 Calumet College of Saint Joseph, Calumet College of St. Joseph'),
(19305, 'https://ror.org/05509w645', 'en', 1, 'https://ror.org/05509w645 European Passengers'' Federation EuropƤische Fahrgastverband'),
(19306, 'https://ror.org/0554emb10', 'en', 1, 'https://ror.org/0554emb10 Manufacturers’ Representatives Educational Research Foundation'),
(19307, 'https://ror.org/0556b6g90', 'en', 1, 'https://ror.org/0556b6g90 St. Francis Hospital'),
(19308, 'https://ror.org/0557zev80', 'no_lang_code', 1, 'https://ror.org/0557zev80 Advirna (United States)'),
(19309, 'https://ror.org/055ag5z32', 'no_lang_code', 1, 'https://ror.org/055ag5z32 DIERS International (Germany)'),
(19310, 'https://ror.org/055e80y87', 'en', 1, 'https://ror.org/055e80y87 Davenport University'),
(19311, 'https://ror.org/055e84666', 'no_lang_code', 1, 'https://ror.org/055e84666 Acme Express'),
(19312, 'https://ror.org/055et8y89', 'no_lang_code', 1, 'https://ror.org/055et8y89 Barnett Technical Services (United States)'),
(19313, 'https://ror.org/055he6t71', 'en', 1, 'https://ror.org/055he6t71 Mansfield Richland County Public Library'),
(19314, 'https://ror.org/055hv2t95', 'no_lang_code', 1, 'https://ror.org/055hv2t95 Imagina (Spain)'),
(19315, 'https://ror.org/055jqqn57', 'no_lang_code', 1, 'https://ror.org/055jqqn57 Bundesdruckerei (Germany) Reichsdruckerei'),
(19316, 'https://ror.org/055k4r149', 'no_lang_code', 1, 'https://ror.org/055k4r149 ITEMS International'),
(19317, 'https://ror.org/055qvd023', 'no_lang_code', 1, 'https://ror.org/055qvd023 Qualizyme (Austria)'),
(19318, 'https://ror.org/055rvqr15', 'en', 1, 'https://ror.org/055rvqr15 Visions'),
(19319, 'https://ror.org/055s5z318', 'en', 1, 'https://ror.org/055s5z318 Sacred Heart Major Seminary'),
(19320, 'https://ror.org/055wera52', 'en', 1, 'https://ror.org/055wera52 Chapter Arts Centre'),
(19321, 'https://ror.org/055wrb292', 'no_lang_code', 1, 'https://ror.org/055wrb292 VizSeek (United States)'),
(19322, 'https://ror.org/055xrn550', 'en', 1, 'https://ror.org/055xrn550 Wheaton Franciscan Healthcare'),
(19323, 'https://ror.org/055zm4v44', 'en', 1, 'https://ror.org/055zm4v44 La Fondation Stan Cassidy Stan Cassidy Foundation'),
(19324, 'https://ror.org/0561r3x79', 'no_lang_code', 1, 'https://ror.org/0561r3x79 Geosciences Consultants'),
(19325, 'https://ror.org/0562dax79', 'en', 1, 'https://ror.org/0562dax79 Colchester School District'),
(19326, 'https://ror.org/0562rw148', 'no_lang_code', 1, 'https://ror.org/0562rw148 Biotronics 3D (United Kingdom)'),
(19327, 'https://ror.org/056458z20', 'no_lang_code', 1, 'https://ror.org/056458z20 3T RPD (United Kingdom)'),
(19328, 'https://ror.org/0565atc18', 'en', 1, 'https://ror.org/0565atc18 Calista Elders Council'),
(19329, 'https://ror.org/056635736', 'en', 1, 'https://ror.org/056635736 Institute of Oriental Studies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Š¾ŃŃ‚Š¾ŠŗŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(19330, 'https://ror.org/05691sn15', 'en', 1, 'https://ror.org/05691sn15 UN Women’s Office for India, Bhutan, Maldives and Sri Lanka'),
(19331, 'https://ror.org/056bwsz84', 'en', 1, 'https://ror.org/056bwsz84 Akron Art Museum'),
(19332, 'https://ror.org/056cdnf90', 'en', 1, 'https://ror.org/056cdnf90 Wheels of Progress'),
(19333, 'https://ror.org/056ceb060', 'no_lang_code', 1, 'https://ror.org/056ceb060 Coillte (Ireland)'),
(19334, 'https://ror.org/056g2wd64', 'en', 1, 'https://ror.org/056g2wd64 Cervantes Institute Instituto Cervantes'),
(19335, 'https://ror.org/056g65q42', 'en', 1, 'https://ror.org/056g65q42 Berlin Centre of Competence for Water Kompetenzzentrum Wasser Berlin'),
(19336, 'https://ror.org/056h1w707', 'no_lang_code', 1, 'https://ror.org/056h1w707 Onxeo (France)'),
(19337, 'https://ror.org/056j0ka11', 'no_lang_code', 1, 'https://ror.org/056j0ka11 JenLab (Germany)'),
(19338, 'https://ror.org/056j7x372', 'en', 1, 'https://ror.org/056j7x372 Neuroworx'),
(19339, 'https://ror.org/056jn9s46', 'en', 1, 'https://ror.org/056jn9s46 Sibley Memorial Hospital'),
(19340, 'https://ror.org/056krdw94', 'no_lang_code', 1, 'https://ror.org/056krdw94 JÔfi-Autókut (Hungary)'),
(19341, 'https://ror.org/056n4cb97', 'no_lang_code', 1, 'https://ror.org/056n4cb97 Jürging (Germany)'),
(19342, 'https://ror.org/056ndgk74', 'no_lang_code', 1, 'https://ror.org/056ndgk74 Creme Global (Ireland)'),
(19343, 'https://ror.org/056nnvc71', 'en', 1, 'https://ror.org/056nnvc71 Women''s Link Worldwide'),
(19344, 'https://ror.org/056pr3z43', 'no_lang_code', 1, 'https://ror.org/056pr3z43 Rolled-Ribbon (United States)'),
(19345, 'https://ror.org/056rxwh87', 'no_lang_code', 1, 'https://ror.org/056rxwh87 General Paints (Ireland)'),
(19346, 'https://ror.org/056t81323', 'en', 1, 'https://ror.org/056t81323 The Seany Foundation'),
(19347, 'https://ror.org/056v1v664', 'no_lang_code', 1, 'https://ror.org/056v1v664 Insilico Biotechnology (Germany)'),
(19348, 'https://ror.org/056v90990', 'pl', 1, 'https://ror.org/056v90990 Fundusz Górnośląski S.A. Oddział w Katowicach'),
(19349, 'https://ror.org/056vj7p55', 'no_lang_code', 1, 'https://ror.org/056vj7p55 ElectroCell (Sweden)'),
(19350, 'https://ror.org/056vvdf79', 'no_lang_code', 1, 'https://ror.org/056vvdf79 Marsilio Editori (Italy)'),
(19351, 'https://ror.org/056wf8856', 'en', 1, 'https://ror.org/056wf8856 Kola Science Centre Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Кольского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(19352, 'https://ror.org/056xved97', 'en', 1, 'https://ror.org/056xved97 Lindamood-Bell'),
(19353, 'https://ror.org/056yk1794', 'no_lang_code', 1, 'https://ror.org/056yk1794 Fire Safety Design'),
(19354, 'https://ror.org/056z2mp63', 'fr', 1, 'https://ror.org/056z2mp63 Euro Inox'),
(19355, 'https://ror.org/056zchc22', 'en', 1, 'https://ror.org/056zchc22 Women''s Center of Jacksonville'),
(19356, 'https://ror.org/0570x4g13', 'no_lang_code', 1, 'https://ror.org/0570x4g13 Aquamarijn (Netherlands)'),
(19357, 'https://ror.org/05733ar04', 'en', 1, 'https://ror.org/05733ar04 Community Healthlink'),
(19358, 'https://ror.org/05740ft58', 'no_lang_code', 1, 'https://ror.org/05740ft58 El Corte InglƩs (Spain)'),
(19359, 'https://ror.org/0574bwf68', 'en', 1, 'https://ror.org/0574bwf68 Holy Cross College'),
(19360, 'https://ror.org/0574rre95', 'en', 1, 'https://ror.org/0574rre95 Umpqua Community College'),
(19361, 'https://ror.org/0575kzg87', 'no_lang_code', 1, 'https://ror.org/0575kzg87 Applied Research Using OMIC Sciences (Spain)'),
(19362, 'https://ror.org/0576t9y10', 'no_lang_code', 1, 'https://ror.org/0576t9y10 JR Technology (United Kingdom)'),
(19363, 'https://ror.org/0579ray12', 'fr', 1, 'https://ror.org/0579ray12 Centre National de la Recherche AppliquƩe au Developpement Rural'),
(19364, 'https://ror.org/057a9pj22', 'en', 1, 'https://ror.org/057a9pj22 Cabrini University'),
(19365, 'https://ror.org/057afqq06', 'en', 1, 'https://ror.org/057afqq06 Delta College'),
(19366, 'https://ror.org/057bk3f95', 'no_lang_code', 1, 'https://ror.org/057bk3f95 Cantine d''Alfonso del Sordo (Italy)'),
(19367, 'https://ror.org/057fshk20', 'no_lang_code', 1, 'https://ror.org/057fshk20 IHS Markit (Canada)'),
(19368, 'https://ror.org/057gtbv76', 'en', 1, 'https://ror.org/057gtbv76 Wolfson Children''s Hospital'),
(19369, 'https://ror.org/057hsm867', 'en', 1, 'https://ror.org/057hsm867 Institute of Solid State Chemistry and Mechanochemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии тверГого тела Šø механохимии Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(19370, 'https://ror.org/057j98494', 'en', 1, 'https://ror.org/057j98494 Cleveland Museum of Art'),
(19371, 'https://ror.org/057m2em33', 'en', 1, 'https://ror.org/057m2em33 Washington Hospital Healthcare System'),
(19372, 'https://ror.org/057n96m12', 'no_lang_code', 1, 'https://ror.org/057n96m12 Zanardi Fonderie (Italy)'),
(19373, 'https://ror.org/057pnws69', 'en', 1, 'https://ror.org/057pnws69 Centre for Planning and Economic Research'),
(19374, 'https://ror.org/057ppfc30', 'en', 1, 'https://ror.org/057ppfc30 The Donna Foundation'),
(19375, 'https://ror.org/057qrfa57', 'no_lang_code', 1, 'https://ror.org/057qrfa57 Atlantec Enterprise Solutions (Germany)'),
(19376, 'https://ror.org/057r54s29', 'en', 1, 'https://ror.org/057r54s29 Baton Rouge Community College'),
(19377, 'https://ror.org/057r81391', 'no_lang_code', 1, 'https://ror.org/057r81391 Energidalen (Sweden)'),
(19378, 'https://ror.org/057rd1163', 'no_lang_code', 1, 'https://ror.org/057rd1163 Biomol Informatics (Spain)'),
(19379, 'https://ror.org/057tpct07', 'en', 1, 'https://ror.org/057tpct07 Lenawee District Library'),
(19380, 'https://ror.org/057w1af56', 'en', 1, 'https://ror.org/057w1af56 Gateway Community Services'),
(19381, 'https://ror.org/057x3a607', 'en', 1, 'https://ror.org/057x3a607 Foundation for Science Technology and Civilisation'),
(19382, 'https://ror.org/057ydan45', 'en', 1, 'https://ror.org/057ydan45 Copyright Licensing Agency'),
(19383, 'https://ror.org/0580j1464', 'no_lang_code', 1, 'https://ror.org/0580j1464 Meloni Vini (Italy)'),
(19384, 'https://ror.org/0582tp073', 'no_lang_code', 1, 'https://ror.org/0582tp073 Orflo Technologies (United States)'),
(19385, 'https://ror.org/0583fqn04', 'en', 1, 'https://ror.org/0583fqn04 Crow Canyon Archaeological Center'),
(19386, 'https://ror.org/0584ce792', 'fr', 1, 'https://ror.org/0584ce792 Chambre de Commerce et d''Industrie Auvergne-RhƓne-Alpes'),
(19387, 'https://ror.org/0584wbt59', 'en', 1, 'https://ror.org/0584wbt59 European Network for Cyber Security'),
(19388, 'https://ror.org/0588atr11', 'en', 1, 'https://ror.org/0588atr11 Illinois Community College Board'),
(19389, 'https://ror.org/0588zzw94', 'no_lang_code', 1, 'https://ror.org/0588zzw94 Arranta Bio (United States)'),
(19390, 'https://ror.org/058936h36', 'en', 1, 'https://ror.org/058936h36 SHIELDS for Families'),
(19391, 'https://ror.org/058az4744', 'en', 1, 'https://ror.org/058az4744 Virtua Health'),
(19392, 'https://ror.org/058bza610', 'no_lang_code', 1, 'https://ror.org/058bza610 Angiologica (Italy)'),
(19393, 'https://ror.org/058cxws58', 'no_lang_code', 1, 'https://ror.org/058cxws58 Intel (United Kingdom)'),
(19394, 'https://ror.org/058d74429', 'no_lang_code', 1, 'https://ror.org/058d74429 Ernst Wittner (Austria)'),
(19395, 'https://ror.org/058er4930', 'en', 1, 'https://ror.org/058er4930 Center for Health Justice'),
(19396, 'https://ror.org/058f8dm33', 'no_lang_code', 1, 'https://ror.org/058f8dm33 LifeGlimmer (Germany)'),
(19397, 'https://ror.org/058fftp70', 'no_lang_code', 1, 'https://ror.org/058fftp70 General Marble (Greece)'),
(19398, 'https://ror.org/058gk5394', 'en', 1, 'https://ror.org/058gk5394 Ministrstvo za pravosodje Ministry of Justice'),
(19399, 'https://ror.org/058hrmf93', 'en', 1, 'https://ror.org/058hrmf93 La Crosse Public Library'),
(19400, 'https://ror.org/058jaty48', 'no_lang_code', 1, 'https://ror.org/058jaty48 Breivoll Inspection Technologies (Norway)'),
(19401, 'https://ror.org/058qk8f51', 'no_lang_code', 1, 'https://ror.org/058qk8f51 Innovative Sensor Technology (Switzerland)'),
(19402, 'https://ror.org/058skdy22', 'en', 1, 'https://ror.org/058skdy22 Saint Paul’s Hospital Iloilo'),
(19403, 'https://ror.org/058wdq771', 'pt', 1, 'https://ror.org/058wdq771 Escola SecundƔria de LoulƩ'),
(19404, 'https://ror.org/058ysfr19', 'en', 1, 'https://ror.org/058ysfr19 Bulgarian European Community Studies Association'),
(19405, 'https://ror.org/058ywcv06', 'no_lang_code', 1, 'https://ror.org/058ywcv06 Advanced Applications (United States)'),
(19406, 'https://ror.org/058ze9c42', 'en', 1, 'https://ror.org/058ze9c42 RadioIsotope Therapy of America Foundation'),
(19407, 'https://ror.org/058zs5j81', 'en', 1, 'https://ror.org/058zs5j81 Institute for Reproductive and Family Health'),
(19408, 'https://ror.org/05905mf04', 'no_lang_code', 1, 'https://ror.org/05905mf04 ACI Plastics (United States)'),
(19409, 'https://ror.org/0591r7s41', 'en', 1, 'https://ror.org/0591r7s41 Sensory Processing Disorder Foundation'),
(19410, 'https://ror.org/0591zqj11', 'no_lang_code', 1, 'https://ror.org/0591zqj11 Gas Sensing Solutions (United Kingdom)'),
(19411, 'https://ror.org/05939ef94', 'no_lang_code', 1, 'https://ror.org/05939ef94 Altair Engineering (United States)'),
(19412, 'https://ror.org/0595qv417', 'no_lang_code', 1, 'https://ror.org/0595qv417 Abzyme Therapeutics (United States)'),
(19413, 'https://ror.org/0596xsc43', 'en', 1, 'https://ror.org/0596xsc43 EMH Group'),
(19414, 'https://ror.org/05986z039', 'en', 1, 'https://ror.org/05986z039 Chancellor University'),
(19415, 'https://ror.org/059ap3j92', 'en', 1, 'https://ror.org/059ap3j92 St. Augustine College'),
(19416, 'https://ror.org/059cb7973', 'no_lang_code', 1, 'https://ror.org/059cb7973 SIPX (United States)'),
(19417, 'https://ror.org/059eesf83', 'en', 1, 'https://ror.org/059eesf83 St. Laurent Institute'),
(19418, 'https://ror.org/059ep5752', 'en', 1, 'https://ror.org/059ep5752 Hamilton East Public Library'),
(19419, 'https://ror.org/059et9981', 'en', 1, 'https://ror.org/059et9981 ING Bank Internationale Nederlanden Groep'),
(19420, 'https://ror.org/059fvx214', 'no_lang_code', 1, 'https://ror.org/059fvx214 Mƶssner (Germany)'),
(19421, 'https://ror.org/059hgmr83', 'no_lang_code', 1, 'https://ror.org/059hgmr83 Cavion (United States)'),
(19422, 'https://ror.org/059j8wt77', 'en', 1, 'https://ror.org/059j8wt77 Alexandria Department of Community and Human Services'),
(19423, 'https://ror.org/059kj1x27', 'en', 1, 'https://ror.org/059kj1x27 Rock County Historical Society'),
(19424, 'https://ror.org/059m1rc96', 'no_lang_code', 1, 'https://ror.org/059m1rc96 Institut für Prüftechnik Gerätebau (Germany)'),
(19425, 'https://ror.org/059mcbz87', 'en', 1, 'https://ror.org/059mcbz87 Mid-Continent Public Library'),
(19426, 'https://ror.org/059pjy887', 'en', 1, 'https://ror.org/059pjy887 Tuality Healthcare'),
(19427, 'https://ror.org/059q7ds12', 'no_lang_code', 1, 'https://ror.org/059q7ds12 Alpha Therm (Germany)'),
(19428, 'https://ror.org/059s01p87', 'no_lang_code', 1, 'https://ror.org/059s01p87 AFRY (United Kingdom)'),
(19429, 'https://ror.org/059vksz24', 'en', 1, 'https://ror.org/059vksz24 Glass Technology Services'),
(19430, 'https://ror.org/059vymd37', 'de', 1, 'https://ror.org/059vymd37 Hochschule Osnabrück Osnabrück University of Applied Sciences'),
(19431, 'https://ror.org/059wtn003', 'en', 1, 'https://ror.org/059wtn003 Bavarian Center for Applied Energy Research Bayerisches Zentrum für Angewandte Energieforschung'),
(19432, 'https://ror.org/05a628j96', 'no_lang_code', 1, 'https://ror.org/05a628j96 Aquatest (Czechia)'),
(19433, 'https://ror.org/05a6z7k50', 'en', 1, 'https://ror.org/05a6z7k50 Canadore College'),
(19434, 'https://ror.org/05abmv045', 'en', 1, 'https://ror.org/05abmv045 Sieć Badawcza Łukasiewicz – Instytut Mechanizacji Budownictwa i Górnictwa Skalnego Łukasiewicz Research Network - Institute of Mechanised Construction and Rock Mining'),
(19435, 'https://ror.org/05afhka30', 'no_lang_code', 1, 'https://ror.org/05afhka30 Delsys (United States)'),
(19436, 'https://ror.org/05ajme216', 'pt', 1, 'https://ror.org/05ajme216 Hospital de Santo Espirito de Angra do HeroĆ­smo'),
(19437, 'https://ror.org/05amva544', 'no_lang_code', 1, 'https://ror.org/05amva544 Fyodor Biotechnologies (United States)'),
(19438, 'https://ror.org/05apy4h12', 'no_lang_code', 1, 'https://ror.org/05apy4h12 Energy Consulting Network (Denmark)'),
(19439, 'https://ror.org/05atpj522', 'no_lang_code', 1, 'https://ror.org/05atpj522 Cyprus Chamber of Commerce and Industry (Cyprus)'),
(19440, 'https://ror.org/05avcpr91', 'en', 1, 'https://ror.org/05avcpr91 American Institute for Medical and Biological Engineering'),
(19441, 'https://ror.org/05axffz73', 'no_lang_code', 1, 'https://ror.org/05axffz73 Amar International (United States)'),
(19442, 'https://ror.org/05az64h21', 'no_lang_code', 1, 'https://ror.org/05az64h21 Grupo Lederval (Spain)'),
(19443, 'https://ror.org/05b023967', 'no_lang_code', 1, 'https://ror.org/05b023967 BioTechnica (United States)'),
(19444, 'https://ror.org/05b35wm26', 'en', 1, 'https://ror.org/05b35wm26 ThinkFirst Foundation'),
(19445, 'https://ror.org/05b3fmb74', 'no_lang_code', 1, 'https://ror.org/05b3fmb74 Elmos Semiconductor (Germany)'),
(19446, 'https://ror.org/05b3qpf29', 'en', 1, 'https://ror.org/05b3qpf29 Community Resources for Justice'),
(19447, 'https://ror.org/05b6bjd03', 'no_lang_code', 1, 'https://ror.org/05b6bjd03 Construction Solutions (United States)'),
(19448, 'https://ror.org/05b6fta51', 'no_lang_code', 1, 'https://ror.org/05b6fta51 Fujifilm (Netherlands)'),
(19449, 'https://ror.org/05b7n5w28', 'no_lang_code', 1, 'https://ror.org/05b7n5w28 Corpora Systems (United States)'),
(19450, 'https://ror.org/05b8s7b69', 'en', 1, 'https://ror.org/05b8s7b69 Advances in Mineral Metabolism'),
(19451, 'https://ror.org/05b8tgb13', 'en', 1, 'https://ror.org/05b8tgb13 Robin Hood Foundation'),
(19452, 'https://ror.org/05ba2cw74', 'en', 1, 'https://ror.org/05ba2cw74 Shared Adventures'),
(19453, 'https://ror.org/05bacvf60', 'en', 1, 'https://ror.org/05bacvf60 Watson Clinic'),
(19454, 'https://ror.org/05bbhmq49', 'no_lang_code', 1, 'https://ror.org/05bbhmq49 McBride and Associates (United States)'),
(19455, 'https://ror.org/05bc0ed68', 'en', 1, 'https://ror.org/05bc0ed68 Healthy Communities Initiative of St Joseph County'),
(19456, 'https://ror.org/05bdy6z50', 'no_lang_code', 1, 'https://ror.org/05bdy6z50 AJ Plastic Components (Ireland)'),
(19457, 'https://ror.org/05be7xx76', 'no_lang_code', 1, 'https://ror.org/05be7xx76 Sun Chemical (United Kingdom)'),
(19458, 'https://ror.org/05becgp50', 'no_lang_code', 1, 'https://ror.org/05becgp50 Hocoma (Switzerland)'),
(19459, 'https://ror.org/05bhzk792', 'en', 1, 'https://ror.org/05bhzk792 Covington and Burling'),
(19460, 'https://ror.org/05bjb2m32', 'no_lang_code', 1, 'https://ror.org/05bjb2m32 AAC Clyde Space (United Kingdom)'),
(19461, 'https://ror.org/05bjnkp72', 'en', 1, 'https://ror.org/05bjnkp72 Broadway'),
(19462, 'https://ror.org/05bk7gd90', 'en', 1, 'https://ror.org/05bk7gd90 Association for Childrens Mental Health'),
(19463, 'https://ror.org/05bm86k51', 'no_lang_code', 1, 'https://ror.org/05bm86k51 Ludger (United Kingdom)'),
(19464, 'https://ror.org/05bmabg32', 'no_lang_code', 1, 'https://ror.org/05bmabg32 Advanced Optics Solutions (Germany)'),
(19465, 'https://ror.org/05bmjxa33', 'no_lang_code', 1, 'https://ror.org/05bmjxa33 Aero Montreal (Canada)'),
(19466, 'https://ror.org/05bn6qf70', 'en', 1, 'https://ror.org/05bn6qf70 Aurora College'),
(19467, 'https://ror.org/05bnfx215', 'no_lang_code', 1, 'https://ror.org/05bnfx215 Sumitomo Chemical (United States)'),
(19468, 'https://ror.org/05bpzr679', 'no_lang_code', 1, 'https://ror.org/05bpzr679 FM Management Consultancy'),
(19469, 'https://ror.org/05btx4z39', 'en', 1, 'https://ror.org/05btx4z39 Durham County Council'),
(19470, 'https://ror.org/05btye950', 'en', 1, 'https://ror.org/05btye950 Southwest Autism Research & Resource Center'),
(19471, 'https://ror.org/05bvf9f86', 'en', 1, 'https://ror.org/05bvf9f86 Raising Spirits Foundation'),
(19472, 'https://ror.org/05bvps080', 'de', 1, 'https://ror.org/05bvps080 Institut Wohnen und Umwelt'),
(19473, 'https://ror.org/05bxa5v91', 'en', 1, 'https://ror.org/05bxa5v91 Indianapolis Public Library'),
(19474, 'https://ror.org/05bxrj827', 'no_lang_code', 1, 'https://ror.org/05bxrj827 ATON-HT (Poland)'),
(19475, 'https://ror.org/05byg9k74', 'no_lang_code', 1, 'https://ror.org/05byg9k74 Filtronic (United Kingdom)'),
(19476, 'https://ror.org/05bzyzw86', 'en', 1, 'https://ror.org/05bzyzw86 Cimosa'),
(19477, 'https://ror.org/05c0tak18', 'no_lang_code', 1, 'https://ror.org/05c0tak18 Inner Health'),
(19478, 'https://ror.org/05c1xmf93', 'en', 1, 'https://ror.org/05c1xmf93 Canton Public Library'),
(19479, 'https://ror.org/05c2ase32', 'no_lang_code', 1, 'https://ror.org/05c2ase32 Dynamic Systems Analysis (Canada)'),
(19480, 'https://ror.org/05c2m7279', 'no_lang_code', 1, 'https://ror.org/05c2m7279 Companhia de Equipamentos Industriais'),
(19481, 'https://ror.org/05c2mz691', 'no_lang_code', 1, 'https://ror.org/05c2mz691 BMT Group (Germany)'),
(19482, 'https://ror.org/05c2nqw49', 'no_lang_code', 1, 'https://ror.org/05c2nqw49 Deutsche Energy Agency (Germany)'),
(19483, 'https://ror.org/05c2wgj05', 'no_lang_code', 1, 'https://ror.org/05c2wgj05 Aquasium (United Kingdom)'),
(19484, 'https://ror.org/05c4ny054', 'no_lang_code', 1, 'https://ror.org/05c4ny054 De Neef Chemical Processing (Belgium)'),
(19485, 'https://ror.org/05c56kx15', 'no_lang_code', 1, 'https://ror.org/05c56kx15 Fronius (Austria)'),
(19486, 'https://ror.org/05c5nrc66', 'en', 1, 'https://ror.org/05c5nrc66 Methodist Theological School in Ohio'),
(19487, 'https://ror.org/05c6smb53', 'no_lang_code', 1, 'https://ror.org/05c6smb53 Aqui-S (New Zealand)'),
(19488, 'https://ror.org/05c88z534', 'pl', 1, 'https://ror.org/05c88z534 Dolnośląski Park Innowacji i Nauki'),
(19489, 'https://ror.org/05c9m3a41', 'en', 1, 'https://ror.org/05c9m3a41 South Suburban Genealogical and Historical Society'),
(19490, 'https://ror.org/05c9yxc90', 'no_lang_code', 1, 'https://ror.org/05c9yxc90 Hill+Knowlton Strategies (Estonia)'),
(19491, 'https://ror.org/05ccmc339', 'no_lang_code', 1, 'https://ror.org/05ccmc339 Etra (Spain)'),
(19492, 'https://ror.org/05cd3ee03', 'en', 1, 'https://ror.org/05cd3ee03 ACLS Humanities E-Book'),
(19493, 'https://ror.org/05cdy0410', 'en', 1, 'https://ror.org/05cdy0410 Wild Lens'),
(19494, 'https://ror.org/05cend965', 'en', 1, 'https://ror.org/05cend965 Eurocarers'),
(19495, 'https://ror.org/05cewnq61', 'en', 1, 'https://ror.org/05cewnq61 HealthInsight'),
(19496, 'https://ror.org/05cghfn11', 'en', 1, 'https://ror.org/05cghfn11 The Center for Mind-Body Medicine'),
(19497, 'https://ror.org/05ch6rk19', 'no_lang_code', 1, 'https://ror.org/05ch6rk19 AvanSci Bio (United States)'),
(19498, 'https://ror.org/05chgd482', 'no_lang_code', 1, 'https://ror.org/05chgd482 LyngsĆø Marine (Denmark)'),
(19499, 'https://ror.org/05cjbf184', 'it', 1, 'https://ror.org/05cjbf184 Agenzia per la Promozione All''estero e l''Internazionalizzazione Delle Imprese Italiane Italian Trade Promotion Agency'),
(19500, 'https://ror.org/05cmaqt93', 'no_lang_code', 1, 'https://ror.org/05cmaqt93 Lumiphore (United States)'),
(19501, 'https://ror.org/05cmkp264', 'en', 1, 'https://ror.org/05cmkp264 British Institute of Radiology'),
(19502, 'https://ror.org/05cpjy057', 'no_lang_code', 1, 'https://ror.org/05cpjy057 Edelweiss Connect (Switzerland)'),
(19503, 'https://ror.org/05cs67685', 'no_lang_code', 1, 'https://ror.org/05cs67685 Elwood Landscape Design (United Kingdom)'),
(19504, 'https://ror.org/05cvd4x54', 'en', 1, 'https://ror.org/05cvd4x54 SHARE'),
(19505, 'https://ror.org/05cvky844', 'en', 1, 'https://ror.org/05cvky844 Ministry of Transport and Communications'),
(19506, 'https://ror.org/05cxce809', 'no_lang_code', 1, 'https://ror.org/05cxce809 EcologicTech (United States)'),
(19507, 'https://ror.org/05cy18k60', 'fr', 1, 'https://ror.org/05cy18k60 Agence Nationale des Technologies de l''Information et de la Communication'),
(19508, 'https://ror.org/05cyjba52', 'pt', 1, 'https://ror.org/05cyjba52 Ministry of Agriculture, Forestry and Rural Development MinistƩrio da Agricultura, MinistƩrio da Agricultura, Florestas e Desenvolvimento Rural'),
(19509, 'https://ror.org/05cz9t057', 'no_lang_code', 1, 'https://ror.org/05cz9t057 Edinethics (United Kingdom)'),
(19510, 'https://ror.org/05d0bdm05', 'en', 1, 'https://ror.org/05d0bdm05 Crimean Astrophysical Observatory ŠšŃ€Ń‹Š¼ŃŠŗŠ°Ń Š°ŃŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(19511, 'https://ror.org/05d2wqp79', 'en', 1, 'https://ror.org/05d2wqp79 Greenville Children''s Hospital'),
(19512, 'https://ror.org/05d30jn11', 'en', 1, 'https://ror.org/05d30jn11 Clean Air Action Group'),
(19513, 'https://ror.org/05d5d9f59', 'no_lang_code', 1, 'https://ror.org/05d5d9f59 Licentia (Finland)'),
(19514, 'https://ror.org/05d74m226', 'en', 1, 'https://ror.org/05d74m226 Central Laboratory of General Ecology Централна Š»Š°Š±Š¾Ń€Š°Ń‚Š¾Ń€ŠøŃ по обща ŠµŠŗŠ¾Š»Š¾Š³ŠøŃ'),
(19515, 'https://ror.org/05d8hxw39', 'en', 1, 'https://ror.org/05d8hxw39 Community Mental Health Affiliates'),
(19516, 'https://ror.org/05d8pm274', 'en', 1, 'https://ror.org/05d8pm274 University of Guyana'),
(19517, 'https://ror.org/05dah1e64', 'en', 1, 'https://ror.org/05dah1e64 Idaho State Department of Education'),
(19518, 'https://ror.org/05ddxpg43', 'fr', 1, 'https://ror.org/05ddxpg43 Ɖcole Nationale SupĆ©rieure de Chimie, de Biologie et de Physique'),
(19519, 'https://ror.org/05debfj90', 'no_lang_code', 1, 'https://ror.org/05debfj90 Highland Fine Cheeses (United Kingdom)'),
(19520, 'https://ror.org/05der9a39', 'no_lang_code', 1, 'https://ror.org/05der9a39 Lemvig VarmevƦrk (Denmark)'),
(19521, 'https://ror.org/05deyvp19', 'no_lang_code', 1, 'https://ror.org/05deyvp19 Food Machinery EspaƱola (Spain)'),
(19522, 'https://ror.org/05dez2x05', 'en', 1, 'https://ror.org/05dez2x05 Institute for Advanced Studies in Aging and Geriatric Medicine'),
(19523, 'https://ror.org/05dh3w354', 'no_lang_code', 1, 'https://ror.org/05dh3w354 Quantum Spatial (United States)'),
(19524, 'https://ror.org/05dky1a08', 'en', 1, 'https://ror.org/05dky1a08 Center for Research Libraries'),
(19525, 'https://ror.org/05dmfnv36', 'fr', 1, 'https://ror.org/05dmfnv36 Alcimed'),
(19526, 'https://ror.org/05dmmmj28', 'no_lang_code', 1, 'https://ror.org/05dmmmj28 Machinefabriek Otto Schouten (Netherlands)'),
(19527, 'https://ror.org/05dpc2207', 'en', 1, 'https://ror.org/05dpc2207 Instytut Morski w Gdańsku Maritime Institute in Gdansk'),
(19528, 'https://ror.org/05dpd3531', 'en', 1, 'https://ror.org/05dpd3531 Cooperative Educational Service Agencies'),
(19529, 'https://ror.org/05dpxhh36', 'ms', 1, 'https://ror.org/05dpxhh36 Institut Penyelidikan Veterinar'),
(19530, 'https://ror.org/05ds63q12', 'en', 1, 'https://ror.org/05ds63q12 Bakken Museum'),
(19531, 'https://ror.org/05dss5t31', 'no_lang_code', 1, 'https://ror.org/05dss5t31 Advance Composite Fibers (Spain)'),
(19532, 'https://ror.org/05dtcxa32', 'en', 1, 'https://ror.org/05dtcxa32 Capital Area District Libraries'),
(19533, 'https://ror.org/05dwg9278', 'en', 1, 'https://ror.org/05dwg9278 Tampa Veterans Research and Education Foundation'),
(19534, 'https://ror.org/05dwtb503', 'no_lang_code', 1, 'https://ror.org/05dwtb503 Silence Therapeutics (United States)'),
(19535, 'https://ror.org/05dww8f34', 'en', 1, 'https://ror.org/05dww8f34 Balm In Gilead'),
(19536, 'https://ror.org/05dxcae66', 'no_lang_code', 1, 'https://ror.org/05dxcae66 Vantia (United Kingdom)'),
(19537, 'https://ror.org/05dxmfh27', 'en', 1, 'https://ror.org/05dxmfh27 Energy System Analysis and Planning'),
(19538, 'https://ror.org/05dyc0249', 'en', 1, 'https://ror.org/05dyc0249 Papageno Foundation Stichting Papageno'),
(19539, 'https://ror.org/05dzkb247', 'it', 1, 'https://ror.org/05dzkb247 Environmental and Ethical Certification Institute Istituto per la Certificazione Etica ed Ambientale'),
(19540, 'https://ror.org/05dzxqx07', 'no_lang_code', 1, 'https://ror.org/05dzxqx07 KBC Advanced Technologies (United Kingdom)'),
(19541, 'https://ror.org/05e0mbv58', 'no_lang_code', 1, 'https://ror.org/05e0mbv58 Evestra (United States)'),
(19542, 'https://ror.org/05e0yvq18', 'no_lang_code', 1, 'https://ror.org/05e0yvq18 DSVM Group (Denmark)'),
(19543, 'https://ror.org/05e1bqs36', 'no_lang_code', 1, 'https://ror.org/05e1bqs36 IMET Corporation (United States)'),
(19544, 'https://ror.org/05e7hwa20', 'en', 1, 'https://ror.org/05e7hwa20 European Heat Pump Association'),
(19545, 'https://ror.org/05e7tm136', 'no_lang_code', 1, 'https://ror.org/05e7tm136 World Scientific (Singapore)'),
(19546, 'https://ror.org/05e946j54', 'en', 1, 'https://ror.org/05e946j54 University of Louisville Physicians'),
(19547, 'https://ror.org/05e99em22', 'fi', 1, 'https://ror.org/05e99em22 EtelƤ-Karjalan sosiaali ja terveyspiiri South Karelia Social and Health Care District'),
(19548, 'https://ror.org/05eaem981', 'no_lang_code', 1, 'https://ror.org/05eaem981 Intecsea (Canada)'),
(19549, 'https://ror.org/05eazss97', 'en', 1, 'https://ror.org/05eazss97 Berkshire Record Office'),
(19550, 'https://ror.org/05eb0w304', 'no_lang_code', 1, 'https://ror.org/05eb0w304 ABM SOLID (Poland)'),
(19551, 'https://ror.org/05ebj0z80', 'no_lang_code', 1, 'https://ror.org/05ebj0z80 VOCK Maschinen- und Stahlbau (Germany)'),
(19552, 'https://ror.org/05ecnxy68', 'no_lang_code', 1, 'https://ror.org/05ecnxy68 Electronic Systems Design (Malta)'),
(19553, 'https://ror.org/05ecqm310', 'en', 1, 'https://ror.org/05ecqm310 Northwest State Community College'),
(19554, 'https://ror.org/05ecr8233', 'no_lang_code', 1, 'https://ror.org/05ecr8233 Mectron (Italy)'),
(19555, 'https://ror.org/05eeps779', 'no_lang_code', 1, 'https://ror.org/05eeps779 Home Group (United Kingdom)'),
(19556, 'https://ror.org/05egsp010', 'en', 1, 'https://ror.org/05egsp010 Danish Ministry of Transport Transportministeriet'),
(19557, 'https://ror.org/05ejpyv46', 'no_lang_code', 1, 'https://ror.org/05ejpyv46 Applied Materials (Germany)'),
(19558, 'https://ror.org/05eq12k28', 'en', 1, 'https://ror.org/05eq12k28 Thomas Edison State University'),
(19559, 'https://ror.org/05ermrg42', 'en', 1, 'https://ror.org/05ermrg42 Vavilov Institute of General Genetics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей генетики им. Š.И. Вавилова Российской акаГемии наук'),
(19560, 'https://ror.org/05es2h531', 'no_lang_code', 1, 'https://ror.org/05es2h531 Eagle Engineering (United States)'),
(19561, 'https://ror.org/05esks986', 'en', 1, 'https://ror.org/05esks986 Yankton Rural Area Health Education Center'),
(19562, 'https://ror.org/05etp2h92', 'en', 1, 'https://ror.org/05etp2h92 Stop Calling It Autism'),
(19563, 'https://ror.org/05ey8y327', 'no_lang_code', 1, 'https://ror.org/05ey8y327 Berlin Energy Agency Berliner Energieagentur (Germany)'),
(19564, 'https://ror.org/05f29ae28', 'en', 1, 'https://ror.org/05f29ae28 Wilderness Matters'),
(19565, 'https://ror.org/05f2srq42', 'no_lang_code', 1, 'https://ror.org/05f2srq42 Stratasys (United States)'),
(19566, 'https://ror.org/05f3jmw47', 'en', 1, 'https://ror.org/05f3jmw47 Thrive'),
(19567, 'https://ror.org/05f3k0a16', 'no_lang_code', 1, 'https://ror.org/05f3k0a16 Consorzio CREO (Italy)'),
(19568, 'https://ror.org/05f3yt521', 'en', 1, 'https://ror.org/05f3yt521 V. A. Trapeznikov Institute of Control Sciences W.A.Trapeznikow Institut für Steuerungswissenschaften Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ им. Š’. А. Трапезникова Российской акаГемии наук'),
(19569, 'https://ror.org/05f5ae947', 'no_lang_code', 1, 'https://ror.org/05f5ae947 Levitronix (United States)'),
(19570, 'https://ror.org/05f5tv502', 'en', 1, 'https://ror.org/05f5tv502 Temecula Valley Unified School District'),
(19571, 'https://ror.org/05f624153', 'no_lang_code', 1, 'https://ror.org/05f624153 Cargill (France)'),
(19572, 'https://ror.org/05f8df042', 'en', 1, 'https://ror.org/05f8df042 Usher III Initiative'),
(19573, 'https://ror.org/05f8m5935', 'fr', 1, 'https://ror.org/05f8m5935 CƩgep de Rimouski'),
(19574, 'https://ror.org/05f935s79', 'no_lang_code', 1, 'https://ror.org/05f935s79 Ikusi (Spain)'),
(19575, 'https://ror.org/05f9xnq60', 'en', 1, 'https://ror.org/05f9xnq60 Livonia Public Library');
INSERT INTO `rors` VALUES
(19576, 'https://ror.org/05fa80v88', 'it', 1, 'https://ror.org/05fa80v88 Confederazione Nazionale dell''Artigianato e Della Piccola e Media Impresa'),
(19577, 'https://ror.org/05fahdk25', 'no_lang_code', 1, 'https://ror.org/05fahdk25 Knudsen Plast (Denmark)'),
(19578, 'https://ror.org/05fc83474', 'no_lang_code', 1, 'https://ror.org/05fc83474 Ahlstrom-Munksjƶ (France)'),
(19579, 'https://ror.org/05fea9w83', 'de', 1, 'https://ror.org/05fea9w83 Gas- und WƤrme-Institut Essen'),
(19580, 'https://ror.org/05fezbd26', 'no_lang_code', 1, 'https://ror.org/05fezbd26 Elcriton (United States)'),
(19581, 'https://ror.org/05ffhjy73', 'en', 1, 'https://ror.org/05ffhjy73 MacCormac College'),
(19582, 'https://ror.org/05fgmb597', 'no_lang_code', 1, 'https://ror.org/05fgmb597 Aitek (Italy)'),
(19583, 'https://ror.org/05fh0g986', 'en', 1, 'https://ror.org/05fh0g986 Chicago Theological Seminary'),
(19584, 'https://ror.org/05fjnk551', 'en', 1, 'https://ror.org/05fjnk551 Racine Public Library'),
(19585, 'https://ror.org/05fmqg429', 'en', 1, 'https://ror.org/05fmqg429 American Federation of State, County and Municipal Employees'),
(19586, 'https://ror.org/05fnat077', 'en', 1, 'https://ror.org/05fnat077 Arise'),
(19587, 'https://ror.org/05fqdmq12', 'en', 1, 'https://ror.org/05fqdmq12 Institute of Automation and Electrometry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š¼ŠµŃ‚Ń€ŠøŠø Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(19588, 'https://ror.org/05fr4xz54', 'no_lang_code', 1, 'https://ror.org/05fr4xz54 Nitto (United States)'),
(19589, 'https://ror.org/05frh7832', 'no_lang_code', 1, 'https://ror.org/05frh7832 Eni (France)'),
(19590, 'https://ror.org/05frrjn34', 'no_lang_code', 1, 'https://ror.org/05frrjn34 Lynx (Italy)'),
(19591, 'https://ror.org/05fwffr47', 'no_lang_code', 1, 'https://ror.org/05fwffr47 inuTech (Germany)'),
(19592, 'https://ror.org/05fwx1x78', 'no_lang_code', 1, 'https://ror.org/05fwx1x78 Vaxiion Therapeutics (United States)'),
(19593, 'https://ror.org/05fwz3716', 'en', 1, 'https://ror.org/05fwz3716 Soldiers'' Angels'),
(19594, 'https://ror.org/05fxq1221', 'no_lang_code', 1, 'https://ror.org/05fxq1221 Spero Therapeutics (United States)'),
(19595, 'https://ror.org/05fyshf19', 'no_lang_code', 1, 'https://ror.org/05fyshf19 Blastech (United Kingdom)'),
(19596, 'https://ror.org/05fz04663', 'no_lang_code', 1, 'https://ror.org/05fz04663 Activation Laboratories'),
(19597, 'https://ror.org/05fzt6j85', 'en', 1, 'https://ror.org/05fzt6j85 Saint Anne''s Hospital'),
(19598, 'https://ror.org/05g0sd071', 'no_lang_code', 1, 'https://ror.org/05g0sd071 Central Research Laboratories (United Kingdom)'),
(19599, 'https://ror.org/05g12js95', 'no_lang_code', 1, 'https://ror.org/05g12js95 ImmersiveTouch (United States)'),
(19600, 'https://ror.org/05g2tt321', 'en', 1, 'https://ror.org/05g2tt321 Coastal Horizons Center'),
(19601, 'https://ror.org/05g4knm43', 'en', 1, 'https://ror.org/05g4knm43 Phoenix Indian Medical Center'),
(19602, 'https://ror.org/05g4w0661', 'en', 1, 'https://ror.org/05g4w0661 Canmore Museum and Geoscience Centre'),
(19603, 'https://ror.org/05g51bs78', 'no_lang_code', 1, 'https://ror.org/05g51bs78 Acelot (United States)'),
(19604, 'https://ror.org/05g5f7985', 'no_lang_code', 1, 'https://ror.org/05g5f7985 Western Oncolytics (United States)'),
(19605, 'https://ror.org/05g5ny036', 'en', 1, 'https://ror.org/05g5ny036 Sonke Gender Justice'),
(19606, 'https://ror.org/05g65zz68', 'no_lang_code', 1, 'https://ror.org/05g65zz68 Conwal (United States)'),
(19607, 'https://ror.org/05g6nzm31', 'en', 1, 'https://ror.org/05g6nzm31 Bloomfield Township Public Library'),
(19608, 'https://ror.org/05g7t5c49', 'no_lang_code', 1, 'https://ror.org/05g7t5c49 Jenoptik (Germany)'),
(19609, 'https://ror.org/05gcmgp11', 'no_lang_code', 1, 'https://ror.org/05gcmgp11 Jefar-Indústria De Calçado'),
(19610, 'https://ror.org/05ges7821', 'en', 1, 'https://ror.org/05ges7821 Carl Sandburg College'),
(19611, 'https://ror.org/05gexen20', 'en', 1, 'https://ror.org/05gexen20 Clatsop Community College'),
(19612, 'https://ror.org/05gh88052', 'no_lang_code', 1, 'https://ror.org/05gh88052 iQur (United Kingdom)'),
(19613, 'https://ror.org/05ghq7b13', 'no_lang_code', 1, 'https://ror.org/05ghq7b13 Vergnano (Italy)'),
(19614, 'https://ror.org/05gjd3067', 'en', 1, 'https://ror.org/05gjd3067 Youth Action on Tobacco Control and Health'),
(19615, 'https://ror.org/05gjytt71', 'en', 1, 'https://ror.org/05gjytt71 E-Connection'),
(19616, 'https://ror.org/05gm3ry77', 'pt', 1, 'https://ror.org/05gm3ry77 Estrutura de Missão para a Extensão da Plataforma Continental Task Group for the Extension of the Continental Shelf'),
(19617, 'https://ror.org/05gm41t98', 'en', 1, 'https://ror.org/05gm41t98 Joint Clinical Research Centre'),
(19618, 'https://ror.org/05gmpv778', 'no_lang_code', 1, 'https://ror.org/05gmpv778 Innolume (Germany)'),
(19619, 'https://ror.org/05gqxfr13', 'en', 1, 'https://ror.org/05gqxfr13 Heartland Alliance'),
(19620, 'https://ror.org/05gsw2536', 'no_lang_code', 1, 'https://ror.org/05gsw2536 IGNIS Innovation (Canada)'),
(19621, 'https://ror.org/05gtsta03', 'en', 1, 'https://ror.org/05gtsta03 Life Raft Group'),
(19622, 'https://ror.org/05gv0a532', 'no_lang_code', 1, 'https://ror.org/05gv0a532 Fraport (Germany)'),
(19623, 'https://ror.org/05gxeae76', 'en', 1, 'https://ror.org/05gxeae76 Connecticut Center for Primary Care'),
(19624, 'https://ror.org/05gxmbr45', 'no_lang_code', 1, 'https://ror.org/05gxmbr45 Crown Packaging (United Kingdom)'),
(19625, 'https://ror.org/05gxt5b76', 'en', 1, 'https://ror.org/05gxt5b76 Telluride Adaptive Sports Program'),
(19626, 'https://ror.org/05gyeb173', 'fr', 1, 'https://ror.org/05gyeb173 College of General and Vocational Education Cégep de Jonquière'),
(19627, 'https://ror.org/05gyk0k71', 'no_lang_code', 1, 'https://ror.org/05gyk0k71 IMS Nanofabrication (Austria)'),
(19628, 'https://ror.org/05h0qhk33', 'no_lang_code', 1, 'https://ror.org/05h0qhk33 Double Helix (United States)'),
(19629, 'https://ror.org/05h443j18', 'no_lang_code', 1, 'https://ror.org/05h443j18 Innova (Hungary)'),
(19630, 'https://ror.org/05h5q0a22', 'no_lang_code', 1, 'https://ror.org/05h5q0a22 CLU (Italy)'),
(19631, 'https://ror.org/05h60ts97', 'no_lang_code', 1, 'https://ror.org/05h60ts97 Infoport (Spain)'),
(19632, 'https://ror.org/05h6av881', 'no_lang_code', 1, 'https://ror.org/05h6av881 Life & Brain (Germany)'),
(19633, 'https://ror.org/05h6qy815', 'en', 1, 'https://ror.org/05h6qy815 Bio Nano Consulting'),
(19634, 'https://ror.org/05h70tr57', 'no_lang_code', 1, 'https://ror.org/05h70tr57 Altec Software (Greece)'),
(19635, 'https://ror.org/05h8s0v03', 'en', 1, 'https://ror.org/05h8s0v03 The Ohio State University at Mansfield'),
(19636, 'https://ror.org/05h8v3e12', 'en', 1, 'https://ror.org/05h8v3e12 Scotland Memorial Hospital'),
(19637, 'https://ror.org/05hczjf77', 'no_lang_code', 1, 'https://ror.org/05hczjf77 DNAmicroarray (United States)'),
(19638, 'https://ror.org/05hdjr057', 'pt', 1, 'https://ror.org/05hdjr057 Administracao Central do Sistema de Saude'),
(19639, 'https://ror.org/05hfas298', 'no_lang_code', 1, 'https://ror.org/05hfas298 Targepeutics (United States)'),
(19640, 'https://ror.org/05hgx8167', 'en', 1, 'https://ror.org/05hgx8167 Massachusetts Department of Mental Health'),
(19641, 'https://ror.org/05hj3r720', 'en', 1, 'https://ror.org/05hj3r720 Clearity Foundation'),
(19642, 'https://ror.org/05hmdkd37', 'no_lang_code', 1, 'https://ror.org/05hmdkd37 Learning Multi Systems (United States)'),
(19643, 'https://ror.org/05hp30b06', 'en', 1, 'https://ror.org/05hp30b06 Exploration Place Museum and Science Centre'),
(19644, 'https://ror.org/05hphav28', 'fr', 1, 'https://ror.org/05hphav28 Airparif'),
(19645, 'https://ror.org/05hq14k73', 'en', 1, 'https://ror.org/05hq14k73 Advanced Lead Acid Battery Consortium'),
(19646, 'https://ror.org/05hqw0n54', 'no_lang_code', 1, 'https://ror.org/05hqw0n54 Corden Pharma (United States)'),
(19647, 'https://ror.org/05hqxem06', 'en', 1, 'https://ror.org/05hqxem06 Association of British Science Writers'),
(19648, 'https://ror.org/05hsggr76', 'en', 1, 'https://ror.org/05hsggr76 Etats-unis. international trade commission United States International Trade Commission'),
(19649, 'https://ror.org/05hwfvk38', 'en', 1, 'https://ror.org/05hwfvk38 Touro College'),
(19650, 'https://ror.org/05hwnvk36', 'no_lang_code', 1, 'https://ror.org/05hwnvk36 The Bridge (United States)'),
(19651, 'https://ror.org/05hxvc906', 'no_lang_code', 1, 'https://ror.org/05hxvc906 Solvay (Netherlands)'),
(19652, 'https://ror.org/05hz1rf52', 'no_lang_code', 1, 'https://ror.org/05hz1rf52 Astech Electronics (United Kingdom)'),
(19653, 'https://ror.org/05hzvxx71', 'en', 1, 'https://ror.org/05hzvxx71 Autism Society of America'),
(19654, 'https://ror.org/05hzwst11', 'no_lang_code', 1, 'https://ror.org/05hzwst11 Lucite International (United Kingdom)'),
(19655, 'https://ror.org/05j59av97', 'en', 1, 'https://ror.org/05j59av97 Kista Photonics Research Center'),
(19656, 'https://ror.org/05j6xg781', 'no_lang_code', 1, 'https://ror.org/05j6xg781 TeamBest (United States)'),
(19657, 'https://ror.org/05j7s4w29', 'no_lang_code', 1, 'https://ror.org/05j7s4w29 SGH Martineau (United Kingdom)'),
(19658, 'https://ror.org/05j9fmg63', 'no_lang_code', 1, 'https://ror.org/05j9fmg63 DuPont (Spain)'),
(19659, 'https://ror.org/05ja6kg22', 'en', 1, 'https://ror.org/05ja6kg22 Quietmind Foundation'),
(19660, 'https://ror.org/05jcb1s51', 'no_lang_code', 1, 'https://ror.org/05jcb1s51 Regio (Estonia)'),
(19661, 'https://ror.org/05jd76e15', 'en', 1, 'https://ror.org/05jd76e15 Zero Breast Cancer'),
(19662, 'https://ror.org/05jeb9h94', 'en', 1, 'https://ror.org/05jeb9h94 Cemit Center of Excellence in Medicine and IT'),
(19663, 'https://ror.org/05jkfya49', 'en', 1, 'https://ror.org/05jkfya49 Mishawaka-Penn-Harris Public Library'),
(19664, 'https://ror.org/05jkv6633', 'no_lang_code', 1, 'https://ror.org/05jkv6633 Artemis Intelligent Power (United Kingdom)'),
(19665, 'https://ror.org/05jm4z849', 'en', 1, 'https://ror.org/05jm4z849 Pacific Breast Pathology'),
(19666, 'https://ror.org/05jmy3s26', 'no_lang_code', 1, 'https://ror.org/05jmy3s26 Artes Biotechnology (Germany)'),
(19667, 'https://ror.org/05jnv7j09', 'no_lang_code', 1, 'https://ror.org/05jnv7j09 Michael Baker International (United States)'),
(19668, 'https://ror.org/05jp8nm45', 'en', 1, 'https://ror.org/05jp8nm45 Open The Government'),
(19669, 'https://ror.org/05jqr8t95', 'no_lang_code', 1, 'https://ror.org/05jqr8t95 Biogas Fuel Cell (Spain)'),
(19670, 'https://ror.org/05jqsyj76', 'en', 1, 'https://ror.org/05jqsyj76 German Games Industry Association'),
(19671, 'https://ror.org/05jtwwy05', 'en', 1, 'https://ror.org/05jtwwy05 Rock Valley College'),
(19672, 'https://ror.org/05jye0b93', 'de', 1, 'https://ror.org/05jye0b93 Institut für Europäische Politik Institute for European Politics'),
(19673, 'https://ror.org/05jyxzj98', 'en', 1, 'https://ror.org/05jyxzj98 Meadville Lombard Theological School'),
(19674, 'https://ror.org/05k0zr802', 'en', 1, 'https://ror.org/05k0zr802 MultiCare Tacoma General Hospital'),
(19675, 'https://ror.org/05k1e9879', 'en', 1, 'https://ror.org/05k1e9879 Health Promotion Services'),
(19676, 'https://ror.org/05k2n4n22', 'no_lang_code', 1, 'https://ror.org/05k2n4n22 RELX Group (United States)'),
(19677, 'https://ror.org/05k52qr71', 'no_lang_code', 1, 'https://ror.org/05k52qr71 Euroitalia (Italy)'),
(19678, 'https://ror.org/05k551411', 'en', 1, 'https://ror.org/05k551411 Racine Art Museum'),
(19679, 'https://ror.org/05k5b7r52', 'no_lang_code', 1, 'https://ror.org/05k5b7r52 Eurospital (Italy)'),
(19680, 'https://ror.org/05k7amn53', 'no_lang_code', 1, 'https://ror.org/05k7amn53 ESTeam (Sweden)'),
(19681, 'https://ror.org/05k7mmk88', 'en', 1, 'https://ror.org/05k7mmk88 Youth Unlimited Programs'),
(19682, 'https://ror.org/05k8fh812', 'no_lang_code', 1, 'https://ror.org/05k8fh812 Brechtel (United States)'),
(19683, 'https://ror.org/05ka98816', 'no_lang_code', 1, 'https://ror.org/05ka98816 Bio-Prodict (Netherlands)'),
(19684, 'https://ror.org/05kb6er29', 'no_lang_code', 1, 'https://ror.org/05kb6er29 SOLIDpower (Switzerland)'),
(19685, 'https://ror.org/05kbent92', 'no_lang_code', 1, 'https://ror.org/05kbent92 Trust Control International (France)'),
(19686, 'https://ror.org/05kc20304', 'no_lang_code', 1, 'https://ror.org/05kc20304 Netsmart Technologies (United States)'),
(19687, 'https://ror.org/05keyq749', 'en', 1, 'https://ror.org/05keyq749 Virginia Community Action Partnership'),
(19688, 'https://ror.org/05kf1qd30', 'en', 1, 'https://ror.org/05kf1qd30 Hedberg Public Library'),
(19689, 'https://ror.org/05kfe4t97', 'en', 1, 'https://ror.org/05kfe4t97 Innovation Initiatives Ontario North'),
(19690, 'https://ror.org/05kfxbf35', 'no_lang_code', 1, 'https://ror.org/05kfxbf35 Carnego Systems (United Kingdom)'),
(19691, 'https://ror.org/05kg0va65', 'en', 1, 'https://ror.org/05kg0va65 Healing Co-Operative'),
(19692, 'https://ror.org/05kg32t88', 'no_lang_code', 1, 'https://ror.org/05kg32t88 Estanda (Spain)'),
(19693, 'https://ror.org/05khkqa44', 'en', 1, 'https://ror.org/05khkqa44 Lietuvos Respublikos vidaus reikalų ministerija Ministry of the Interior of the Republic of Lithuania'),
(19694, 'https://ror.org/05kj4rm74', 'en', 1, 'https://ror.org/05kj4rm74 Wood Hudson Cancer Research Laboratory'),
(19695, 'https://ror.org/05kjfpp30', 'en', 1, 'https://ror.org/05kjfpp30 Westwood College'),
(19696, 'https://ror.org/05km40z28', 'en', 1, 'https://ror.org/05km40z28 Start Treatment & Recovery Centers'),
(19697, 'https://ror.org/05km9fv21', 'en', 1, 'https://ror.org/05km9fv21 National Stem Cell Foundation of Australia'),
(19698, 'https://ror.org/05kmn9e50', 'en', 1, 'https://ror.org/05kmn9e50 Greater Bridgeport Area Prevention Program'),
(19699, 'https://ror.org/05kmsp524', 'en', 1, 'https://ror.org/05kmsp524 Indiana Supreme Court'),
(19700, 'https://ror.org/05kn3ey67', 'no_lang_code', 1, 'https://ror.org/05kn3ey67 EncyclopƦdia Britannica (United States)'),
(19701, 'https://ror.org/05kqy9x67', 'no_lang_code', 1, 'https://ror.org/05kqy9x67 Engage (Germany)'),
(19702, 'https://ror.org/05kre7h31', 'en', 1, 'https://ror.org/05kre7h31 St. Vincent''s HealthCare'),
(19703, 'https://ror.org/05krzb242', 'en', 1, 'https://ror.org/05krzb242 Healthy Teen Network'),
(19704, 'https://ror.org/05ktp5w69', 'no_lang_code', 1, 'https://ror.org/05ktp5w69 BioPharm (United Kingdom)'),
(19705, 'https://ror.org/05kv82629', 'no_lang_code', 1, 'https://ror.org/05kv82629 Applied Microengineering Limited (United Kingdom)'),
(19706, 'https://ror.org/05kw43n08', 'no_lang_code', 1, 'https://ror.org/05kw43n08 Berufsfortbildungswerk'),
(19707, 'https://ror.org/05kxf7578', 'no_lang_code', 1, 'https://ror.org/05kxf7578 Sphinx (Netherlands)'),
(19708, 'https://ror.org/05kxkjm75', 'no_lang_code', 1, 'https://ror.org/05kxkjm75 Interface Europe (Belgium)'),
(19709, 'https://ror.org/05kxs0h64', 'en', 1, 'https://ror.org/05kxs0h64 Kankakee County Museum'),
(19710, 'https://ror.org/05kxwp233', 'en', 1, 'https://ror.org/05kxwp233 Oak Lawn Public Library'),
(19711, 'https://ror.org/05kyb8602', 'no_lang_code', 1, 'https://ror.org/05kyb8602 Bertec (United States)'),
(19712, 'https://ror.org/05kzy7y09', 'en', 1, 'https://ror.org/05kzy7y09 Arthritis Research Institute of America'),
(19713, 'https://ror.org/05m029q63', 'it', 1, 'https://ror.org/05m029q63 Federazione Italiana Lavoratori Commercio Albergo Mensa e Servizi'),
(19714, 'https://ror.org/05m09p369', 'en', 1, 'https://ror.org/05m09p369 Brown County Library'),
(19715, 'https://ror.org/05m15kh47', 'no_lang_code', 1, 'https://ror.org/05m15kh47 Diageo (Ireland)'),
(19716, 'https://ror.org/05m21we88', 'no_lang_code', 1, 'https://ror.org/05m21we88 Delta Extinguishers (Belgium)'),
(19717, 'https://ror.org/05m4zpg77', 'no_lang_code', 1, 'https://ror.org/05m4zpg77 Materials Development (United States)'),
(19718, 'https://ror.org/05m615h78', 'en', 1, 'https://ror.org/05m615h78 Cork County Council'),
(19719, 'https://ror.org/05m6bg654', 'en', 1, 'https://ror.org/05m6bg654 Help Committee'),
(19720, 'https://ror.org/05m9m0021', 'en', 1, 'https://ror.org/05m9m0021 United Jewish Appeal Federation of New York'),
(19721, 'https://ror.org/05mb9ke45', 'no_lang_code', 1, 'https://ror.org/05mb9ke45 GTC Kappelmeyer (Germany)'),
(19722, 'https://ror.org/05mbb3v54', 'en', 1, 'https://ror.org/05mbb3v54 Children''s Home of Wheeling'),
(19723, 'https://ror.org/05mc3r439', 'en', 1, 'https://ror.org/05mc3r439 Cape Fear Community College'),
(19724, 'https://ror.org/05mchsq43', 'en', 1, 'https://ror.org/05mchsq43 Keweenaw Bay Ojibwa Community College'),
(19725, 'https://ror.org/05md44a87', 'en', 1, 'https://ror.org/05md44a87 Wyoming Valley Alcohol and Drug Services'),
(19726, 'https://ror.org/05me4xs24', 'no_lang_code', 1, 'https://ror.org/05me4xs24 Compugraphics (United Kingdom)'),
(19727, 'https://ror.org/05mgtkj71', 'no_lang_code', 1, 'https://ror.org/05mgtkj71 Limetec (United Kingdom)'),
(19728, 'https://ror.org/05mhnzk71', 'en', 1, 'https://ror.org/05mhnzk71 Hungarian Chemical Industry Association'),
(19729, 'https://ror.org/05mhp5f89', 'no_lang_code', 1, 'https://ror.org/05mhp5f89 Af-cityplan (Czechia)'),
(19730, 'https://ror.org/05mn3rr77', 'en', 1, 'https://ror.org/05mn3rr77 National Cancer Registration Service'),
(19731, 'https://ror.org/05mngvs08', 'no_lang_code', 1, 'https://ror.org/05mngvs08 HalTech'),
(19732, 'https://ror.org/05mq2xn70', 'no_lang_code', 1, 'https://ror.org/05mq2xn70 Drug Prevention Resources'),
(19733, 'https://ror.org/05mqvfk86', 'en', 1, 'https://ror.org/05mqvfk86 Association of State Public Health Nutritionists'),
(19734, 'https://ror.org/05mr17y43', 'en', 1, 'https://ror.org/05mr17y43 SUDEP Aware'),
(19735, 'https://ror.org/05mrhv083', 'en', 1, 'https://ror.org/05mrhv083 Brookdale Community College'),
(19736, 'https://ror.org/05mvb6w45', 'en', 1, 'https://ror.org/05mvb6w45 Alaska Network on Domestic Violence and Sexual Assault'),
(19737, 'https://ror.org/05mxdx712', 'en', 1, 'https://ror.org/05mxdx712 Trinity United Church of Christ Child Care Centers'),
(19738, 'https://ror.org/05mydvn22', 'en', 1, 'https://ror.org/05mydvn22 Massachusetts Technology Collaborative'),
(19739, 'https://ror.org/05n13t702', 'en', 1, 'https://ror.org/05n13t702 Washington Radiology Associates'),
(19740, 'https://ror.org/05n1gam72', 'en', 1, 'https://ror.org/05n1gam72 Babbage Institute for Knowledge and Information Technologies'),
(19741, 'https://ror.org/05n2bp911', 'en', 1, 'https://ror.org/05n2bp911 Eiteljorg Museum of American Indians and Western Art'),
(19742, 'https://ror.org/05n2hx334', 'en', 1, 'https://ror.org/05n2hx334 Wood River Ability Program'),
(19743, 'https://ror.org/05n3hnq20', 'fr', 1, 'https://ror.org/05n3hnq20 Centre de Transfert de Technologie du Mans'),
(19744, 'https://ror.org/05n686b12', 'no_lang_code', 1, 'https://ror.org/05n686b12 Maillefer (Switzerland)'),
(19745, 'https://ror.org/05n6ehk94', 'no_lang_code', 1, 'https://ror.org/05n6ehk94 SipNose (Israel)'),
(19746, 'https://ror.org/05n7a7b34', 'no_lang_code', 1, 'https://ror.org/05n7a7b34 Moog CSA Engineering (United States)'),
(19747, 'https://ror.org/05n8b0n83', 'no_lang_code', 1, 'https://ror.org/05n8b0n83 Insoco (Spain)'),
(19748, 'https://ror.org/05nd73j43', 'en', 1, 'https://ror.org/05nd73j43 Libby Ross Foundation'),
(19749, 'https://ror.org/05nefdd87', 'no_lang_code', 1, 'https://ror.org/05nefdd87 BioMarck Pharmaceuticals (United States)'),
(19750, 'https://ror.org/05ngeh012', 'en', 1, 'https://ror.org/05ngeh012 Northwestern College - Illinois'),
(19751, 'https://ror.org/05ngy7r54', 'en', 1, 'https://ror.org/05ngy7r54 Winning Wheels'),
(19752, 'https://ror.org/05nhb7q85', 'no_lang_code', 1, 'https://ror.org/05nhb7q85 ALcontrol Laboratories'),
(19753, 'https://ror.org/05nkc6r27', 'it', 1, 'https://ror.org/05nkc6r27 Centro Estero per l''Internazionalizzazione Piemonte Agency for Investments, Export and Tourism'),
(19754, 'https://ror.org/05nkcfv27', 'fr', 1, 'https://ror.org/05nkcfv27 Fondation Sophia Antipolis'),
(19755, 'https://ror.org/05np0jp17', 'en', 1, 'https://ror.org/05np0jp17 Lethbridge College'),
(19756, 'https://ror.org/05nrca761', 'no_lang_code', 1, 'https://ror.org/05nrca761 Capgemini (Italy)'),
(19757, 'https://ror.org/05nsngn76', 'en', 1, 'https://ror.org/05nsngn76 WellShare International'),
(19758, 'https://ror.org/05ntqkc30', 'en', 1, 'https://ror.org/05ntqkc30 Velindre NHS Trust'),
(19759, 'https://ror.org/05ntqke24', 'en', 1, 'https://ror.org/05ntqke24 UnityPoint Health'),
(19760, 'https://ror.org/05nw98r31', 'en', 1, 'https://ror.org/05nw98r31 European Gravitational Observatory'),
(19761, 'https://ror.org/05nwva972', 'en', 1, 'https://ror.org/05nwva972 ICE Publishing'),
(19762, 'https://ror.org/05nx6m946', 'fi', 1, 'https://ror.org/05nx6m946 Arkistolaitos National Archives Service'),
(19763, 'https://ror.org/05p0z2z51', 'en', 1, 'https://ror.org/05p0z2z51 Goddard College'),
(19764, 'https://ror.org/05p1q6h89', 'no_lang_code', 1, 'https://ror.org/05p1q6h89 D Addato Agroalimentare (Italy)'),
(19765, 'https://ror.org/05p21nc51', 'en', 1, 'https://ror.org/05p21nc51 United States Quad Rugby Association'),
(19766, 'https://ror.org/05p29dk84', 'no_lang_code', 1, 'https://ror.org/05p29dk84 Bisiach & Carru (Italy)'),
(19767, 'https://ror.org/05p3we513', 'no_lang_code', 1, 'https://ror.org/05p3we513 Melodea (Israel)'),
(19768, 'https://ror.org/05p403c12', 'en', 1, 'https://ror.org/05p403c12 Akron-Summit County Public Library'),
(19769, 'https://ror.org/05p4ysp91', 'no_lang_code', 1, 'https://ror.org/05p4ysp91 Advanced Microwave Systems (Greece) Ī Ī”ĪŸĪ—Ī“ĪœĪ•ĪĪ‘ ĪœĪ™ĪšĪ”ĪŸĪšĪ„ĪœĪ‘Ī¤Ī™ĪšĪ‘ Ī£Ī„Ī£Ī¤Ī—ĪœĪ‘Ī¤Ī‘ IKE'),
(19770, 'https://ror.org/05p590m36', 'no_lang_code', 1, 'https://ror.org/05p590m36 Artificial Intelligence in Medicine (Canada)'),
(19771, 'https://ror.org/05p90pk86', 'no_lang_code', 1, 'https://ror.org/05p90pk86 Culgi (Netherlands)'),
(19772, 'https://ror.org/05p9w4h97', 'en', 1, 'https://ror.org/05p9w4h97 Union Graduate College'),
(19773, 'https://ror.org/05pbmky22', 'no_lang_code', 1, 'https://ror.org/05pbmky22 Dickinson Wright (United States)'),
(19774, 'https://ror.org/05pdgb763', 'no_lang_code', 1, 'https://ror.org/05pdgb763 Analog and Digital Peripherals (United States)'),
(19775, 'https://ror.org/05pdz8949', 'no_lang_code', 1, 'https://ror.org/05pdz8949 BFI Betriebstechnik (Germany)'),
(19776, 'https://ror.org/05peac723', 'no_lang_code', 1, 'https://ror.org/05peac723 Gammastamp (Italy)'),
(19777, 'https://ror.org/05ph11b68', 'no_lang_code', 1, 'https://ror.org/05ph11b68 Tunstall (Ireland)'),
(19778, 'https://ror.org/05pnx2m87', 'en', 1, 'https://ror.org/05pnx2m87 Fighting Back Partnership'),
(19779, 'https://ror.org/05pqvzr51', 'no_lang_code', 1, 'https://ror.org/05pqvzr51 FlexTech Systems (United States)'),
(19780, 'https://ror.org/05pr8kn76', 'no_lang_code', 1, 'https://ror.org/05pr8kn76 Tansna Theraputics (United States)'),
(19781, 'https://ror.org/05pt5rg11', 'no_lang_code', 1, 'https://ror.org/05pt5rg11 LexRite (United States)'),
(19782, 'https://ror.org/05pvaka44', 'en', 1, 'https://ror.org/05pvaka44 Laramie County Community College'),
(19783, 'https://ror.org/05pvjgr61', 'no_lang_code', 1, 'https://ror.org/05pvjgr61 Biker Fashion Arena Hamburg'),
(19784, 'https://ror.org/05pvkp656', 'en', 1, 'https://ror.org/05pvkp656 RiverStone Health'),
(19785, 'https://ror.org/05px2re83', 'en', 1, 'https://ror.org/05px2re83 Tanner Health System'),
(19786, 'https://ror.org/05pxff726', 'no_lang_code', 1, 'https://ror.org/05pxff726 CBRNE (United Kingdom)'),
(19787, 'https://ror.org/05q0qkg33', 'en', 1, 'https://ror.org/05q0qkg33 Fontbonne University'),
(19788, 'https://ror.org/05q0wgb11', 'en', 1, 'https://ror.org/05q0wgb11 John A. Logan College'),
(19789, 'https://ror.org/05q0xtj32', 'no_lang_code', 1, 'https://ror.org/05q0xtj32 Hydrodata (Italy)'),
(19790, 'https://ror.org/05q16h268', 'no_lang_code', 1, 'https://ror.org/05q16h268 Total (United Kingdom)'),
(19791, 'https://ror.org/05q398y82', 'en', 1, 'https://ror.org/05q398y82 St. John''s Riverside Hospital'),
(19792, 'https://ror.org/05q482v10', 'no_lang_code', 1, 'https://ror.org/05q482v10 Ilunion Consulting (Spain)'),
(19793, 'https://ror.org/05q4npq70', 'no_lang_code', 1, 'https://ror.org/05q4npq70 Absynth Biologics (United Kingdom)'),
(19794, 'https://ror.org/05q6gmw98', 'en', 1, 'https://ror.org/05q6gmw98 Asatrem'),
(19795, 'https://ror.org/05q6k4747', 'no_lang_code', 1, 'https://ror.org/05q6k4747 Fullwell Mill (United Kingdom)'),
(19796, 'https://ror.org/05q8m5985', 'en', 1, 'https://ror.org/05q8m5985 Center for Security Studies ĪšĪ­Ī½Ļ„ĻĪæ ĪœĪµĪ»ĪµĻ„ĻŽĪ½ Ī‘ĻƒĻ†Ī±Ī»ĪµĪÆĪ±Ļ‚'),
(19797, 'https://ror.org/05qaxe808', 'en', 1, 'https://ror.org/05qaxe808 Inuit Circumpolar Council'),
(19798, 'https://ror.org/05qbjh804', 'en', 1, 'https://ror.org/05qbjh804 Spina Bifida Resource Network'),
(19799, 'https://ror.org/05qbzsj10', 'en', 1, 'https://ror.org/05qbzsj10 Danish Institute of Fire and Security Technology Danmarks videncenter for brand og sikring'),
(19800, 'https://ror.org/05qck2d60', 'no_lang_code', 1, 'https://ror.org/05qck2d60 I+ (Italy)'),
(19801, 'https://ror.org/05qeark78', 'no_lang_code', 1, 'https://ror.org/05qeark78 Adicep Technologies (United States)'),
(19802, 'https://ror.org/05qhdpg52', 'en', 1, 'https://ror.org/05qhdpg52 Thorax Foundation ĪŠĪ“ĻĻ…Ī¼Ī± Ī˜Ī©Ī”Ī‘Īž'),
(19803, 'https://ror.org/05qjkay50', 'no_lang_code', 1, 'https://ror.org/05qjkay50 ABB (Norway)'),
(19804, 'https://ror.org/05qjv6v20', 'en', 1, 'https://ror.org/05qjv6v20 Medina County District Library'),
(19805, 'https://ror.org/05qm32213', 'it', 1, 'https://ror.org/05qm32213 Ente Nazionale ACLI Istruzione Professionale National Network OF Services for Training and Employment Promotion'),
(19806, 'https://ror.org/05qm91k56', 'en', 1, 'https://ror.org/05qm91k56 International Network for Advancing Science and Policy'),
(19807, 'https://ror.org/05qpe4e51', 'en', 1, 'https://ror.org/05qpe4e51 Secondopinion'),
(19808, 'https://ror.org/05qq13q49', 'no_lang_code', 1, 'https://ror.org/05qq13q49 CISC Semiconductor (Austria)'),
(19809, 'https://ror.org/05qq44506', 'en', 1, 'https://ror.org/05qq44506'),
(19810, 'https://ror.org/05qq9j971', 'no_lang_code', 1, 'https://ror.org/05qq9j971 Giotto Biotech (Italy)'),
(19811, 'https://ror.org/05qss3897', 'no_lang_code', 1, 'https://ror.org/05qss3897 Bord na Móna (Ireland)'),
(19812, 'https://ror.org/05qvwps75', 'en', 1, 'https://ror.org/05qvwps75 Helio International'),
(19813, 'https://ror.org/05qzdw571', 'no_lang_code', 1, 'https://ror.org/05qzdw571 Agentscape (Germany)'),
(19814, 'https://ror.org/05r1dd276', 'no_lang_code', 1, 'https://ror.org/05r1dd276 ICF International (United Kingdom)'),
(19815, 'https://ror.org/05r2g1b90', 'en', 1, 'https://ror.org/05r2g1b90 Annual Reviews'),
(19816, 'https://ror.org/05r4z9y47', 'no_lang_code', 1, 'https://ror.org/05r4z9y47 H2 Logic (Denmark)'),
(19817, 'https://ror.org/05r5gyx33', 'no_lang_code', 1, 'https://ror.org/05r5gyx33 Hummingbird Precision Machine (United States)'),
(19818, 'https://ror.org/05r5zsh59', 'en', 1, 'https://ror.org/05r5zsh59 Genetic Alliance'),
(19819, 'https://ror.org/05r66pc04', 'no_lang_code', 1, 'https://ror.org/05r66pc04 Elviex (Greece)'),
(19820, 'https://ror.org/05r716r40', 'no_lang_code', 1, 'https://ror.org/05r716r40 Dynamic Concepts (United States)'),
(19821, 'https://ror.org/05r830x40', 'en', 1, 'https://ror.org/05r830x40 Grand Forks Air Force Base'),
(19822, 'https://ror.org/05r9zy719', 'no_lang_code', 1, 'https://ror.org/05r9zy719 Innowep (Germany)'),
(19823, 'https://ror.org/05rczw006', 'en', 1, 'https://ror.org/05rczw006 Scotland County Schools'),
(19824, 'https://ror.org/05rdxva62', 'no_lang_code', 1, 'https://ror.org/05rdxva62 Terapio (United States)'),
(19825, 'https://ror.org/05rjsp326', 'no_lang_code', 1, 'https://ror.org/05rjsp326 KPMG (United Kingdom)'),
(19826, 'https://ror.org/05rkgsm35', 'en', 1, 'https://ror.org/05rkgsm35 Delgado Community College'),
(19827, 'https://ror.org/05rmcwb88', 'en', 1, 'https://ror.org/05rmcwb88 Barber–Scotia College'),
(19828, 'https://ror.org/05rpt7y81', 'en', 1, 'https://ror.org/05rpt7y81 Wisconsin Maritime Museum'),
(19829, 'https://ror.org/05rqggm48', 'en', 1, 'https://ror.org/05rqggm48 New Vista'),
(19830, 'https://ror.org/05rs7kt47', 'en', 1, 'https://ror.org/05rs7kt47 Peninsula Library and Historical Society'),
(19831, 'https://ror.org/05rtb6q31', 'no_lang_code', 1, 'https://ror.org/05rtb6q31 Life Length (Spain)'),
(19832, 'https://ror.org/05rw40a45', 'no_lang_code', 1, 'https://ror.org/05rw40a45 Epleblomsten (Norway)'),
(19833, 'https://ror.org/05rx7ak81', 'no_lang_code', 1, 'https://ror.org/05rx7ak81 Eos Neuroscience (United States)'),
(19834, 'https://ror.org/05rxghr70', 'no_lang_code', 1, 'https://ror.org/05rxghr70 Receptors (United States)'),
(19835, 'https://ror.org/05ry7ey09', 'en', 1, 'https://ror.org/05ry7ey09 Chanda Plan Foundation'),
(19836, 'https://ror.org/05rzk0426', 'en', 1, 'https://ror.org/05rzk0426 West Michigan Cancer Center'),
(19837, 'https://ror.org/05s1dqz78', 'no_lang_code', 1, 'https://ror.org/05s1dqz78 451 Research (United Kingdom)'),
(19838, 'https://ror.org/05s1j9511', 'no_lang_code', 1, 'https://ror.org/05s1j9511 dMetrics (United States)'),
(19839, 'https://ror.org/05s1w1241', 'en', 1, 'https://ror.org/05s1w1241 Aplastic Anemia and MDS International Foundation'),
(19840, 'https://ror.org/05s259e10', 'en', 1, 'https://ror.org/05s259e10 Tashkent Pediatric Medical Institute'),
(19841, 'https://ror.org/05s3yra18', 'en', 1, 'https://ror.org/05s3yra18 International Union for Electricity applications'),
(19842, 'https://ror.org/05s43gd64', 'en', 1, 'https://ror.org/05s43gd64 Bio Base Europe'),
(19843, 'https://ror.org/05s47z440', 'no_lang_code', 1, 'https://ror.org/05s47z440 Folder Media'),
(19844, 'https://ror.org/05s48v759', 'no_lang_code', 1, 'https://ror.org/05s48v759 Meccanica Nova (Italy)'),
(19845, 'https://ror.org/05s4pg032', 'en', 1, 'https://ror.org/05s4pg032 Walsh College'),
(19846, 'https://ror.org/05s52c121', 'en', 1, 'https://ror.org/05s52c121 Santa Clara County Behavioral Health Services'),
(19847, 'https://ror.org/05s565w61', 'no_lang_code', 1, 'https://ror.org/05s565w61 MeaningCloud (Spain)'),
(19848, 'https://ror.org/05s5kq870', 'en', 1, 'https://ror.org/05s5kq870 Institute of International Education'),
(19849, 'https://ror.org/05s6yhj52', 'en', 1, 'https://ror.org/05s6yhj52 American Association for Higher Education and Accreditation'),
(19850, 'https://ror.org/05sa51379', 'en', 1, 'https://ror.org/05sa51379 Birmingham Repertory Theatre'),
(19851, 'https://ror.org/05sadtq09', 'no_lang_code', 1, 'https://ror.org/05sadtq09 Sycamore Entertainment Group (United States)'),
(19852, 'https://ror.org/05se6w266', 'en', 1, 'https://ror.org/05se6w266 Dutch Institute for Healthcare Improvement'),
(19853, 'https://ror.org/05sej3528', 'en', 1, 'https://ror.org/05sej3528 Centraal Orgaan voor Kwaliteitsaangelegenheden in de Zuivel Netherlands Controlling Authority for Milk and Milk Products'),
(19854, 'https://ror.org/05sft7551', 'no_lang_code', 1, 'https://ror.org/05sft7551 Living Systems (United States)'),
(19855, 'https://ror.org/05sfzsk90', 'en', 1, 'https://ror.org/05sfzsk90 College of Western Idaho'),
(19856, 'https://ror.org/05shefr17', 'de', 1, 'https://ror.org/05shefr17 Handwerkskammer Trier'),
(19857, 'https://ror.org/05shjdq49', 'no_lang_code', 1, 'https://ror.org/05shjdq49 Argo (Greece)'),
(19858, 'https://ror.org/05sjw7d59', 'no_lang_code', 1, 'https://ror.org/05sjw7d59 Key Industrial Software Systems (United Kingdom)'),
(19859, 'https://ror.org/05sjz3b60', 'no_lang_code', 1, 'https://ror.org/05sjz3b60 British Standards Institution'),
(19860, 'https://ror.org/05spzbw39', 'en', 1, 'https://ror.org/05spzbw39 Brown Mackie College'),
(19861, 'https://ror.org/05srg8k79', 'en', 1, 'https://ror.org/05srg8k79 Uganda Protestant Medical Bureau'),
(19862, 'https://ror.org/05ssz5085', 'no_lang_code', 1, 'https://ror.org/05ssz5085 Materials Technology (United Kingdom)'),
(19863, 'https://ror.org/05sv2w840', 'en', 1, 'https://ror.org/05sv2w840 Silver Lake College'),
(19864, 'https://ror.org/05svz4z02', 'en', 1, 'https://ror.org/05svz4z02 Los Alamos Public Schools'),
(19865, 'https://ror.org/05swdaw77', 'en', 1, 'https://ror.org/05swdaw77 Urals Research Center for Radiation Medicine'),
(19866, 'https://ror.org/05swz5441', 'en', 1, 'https://ror.org/05swz5441 Institute for Social Research'),
(19867, 'https://ror.org/05sy37k83', 'no_lang_code', 1, 'https://ror.org/05sy37k83 Eurofins (United States)'),
(19868, 'https://ror.org/05sz9r015', 'en', 1, 'https://ror.org/05sz9r015 Massachusetts General Court'),
(19869, 'https://ror.org/05sze1z59', 'en', 1, 'https://ror.org/05sze1z59 American Thrombosis and Hemostasis Network'),
(19870, 'https://ror.org/05szq2344', 'en', 1, 'https://ror.org/05szq2344 Pingjin Hospital å¹³ę“„åŒ»é™¢'),
(19871, 'https://ror.org/05t0e1a79', 'no_lang_code', 1, 'https://ror.org/05t0e1a79 Mannesmann Demag (Germany)'),
(19872, 'https://ror.org/05t28nr70', 'en', 1, 'https://ror.org/05t28nr70 Cedarhurst Center For The Arts'),
(19873, 'https://ror.org/05t738f97', 'no_lang_code', 1, 'https://ror.org/05t738f97 Geoanalysis (Greece) Ī“Ī•Ī©Ī‘ĪĪ‘Ī›Ī„Ī£Ī—'),
(19874, 'https://ror.org/05t7wym31', 'en', 1, 'https://ror.org/05t7wym31 Federation of Clinical Immunology Societies'),
(19875, 'https://ror.org/05t9f6t69', 'fr', 1, 'https://ror.org/05t9f6t69 Institut National d’HygiĆØne Publique'),
(19876, 'https://ror.org/05tbrqg27', 'no_lang_code', 1, 'https://ror.org/05tbrqg27 Agrobiogen (Germany)'),
(19877, 'https://ror.org/05td14x20', 'no_lang_code', 1, 'https://ror.org/05td14x20 Hunting Energy Services (United Kingdom)'),
(19878, 'https://ror.org/05td2ja26', 'no_lang_code', 1, 'https://ror.org/05td2ja26 MBC Research (United States)'),
(19879, 'https://ror.org/05td63169', 'no_lang_code', 1, 'https://ror.org/05td63169 Deltatec (Belgium)'),
(19880, 'https://ror.org/05te4ha46', 'no_lang_code', 1, 'https://ror.org/05te4ha46 Sparks & Co (France)'),
(19881, 'https://ror.org/05tf37670', 'en', 1, 'https://ror.org/05tf37670 The Public Theater'),
(19882, 'https://ror.org/05tf5t656', 'no_lang_code', 1, 'https://ror.org/05tf5t656 Baebies (United States)'),
(19883, 'https://ror.org/05th36098', 'en', 1, 'https://ror.org/05th36098 Association for the Advancement of Mexican Americans'),
(19884, 'https://ror.org/05thfaz05', 'en', 1, 'https://ror.org/05thfaz05 Mach4 Lab'),
(19885, 'https://ror.org/05thqfz72', 'no_lang_code', 1, 'https://ror.org/05thqfz72 Ultra Electronics (United Kingdom)'),
(19886, 'https://ror.org/05tmezz59', 'pt', 1, 'https://ror.org/05tmezz59 Agrupamento de Escolas de Caldas de Vizela'),
(19887, 'https://ror.org/05tpcqx04', 'en', 1, 'https://ror.org/05tpcqx04 Volunteers of America Alaska'),
(19888, 'https://ror.org/05tpn0h14', 'no_lang_code', 1, 'https://ror.org/05tpn0h14 LightForm (United States)'),
(19889, 'https://ror.org/05tq5tc82', 'en', 1, 'https://ror.org/05tq5tc82 Concordia Seminary Seminario Concordia'),
(19890, 'https://ror.org/05ttdb909', 'en', 1, 'https://ror.org/05ttdb909 Max Perutz Library'),
(19891, 'https://ror.org/05tvxb796', 'fr', 1, 'https://ror.org/05tvxb796 FƩdƩration des Parcs Naturels RƩgionaux'),
(19892, 'https://ror.org/05tyn2m51', 'no_lang_code', 1, 'https://ror.org/05tyn2m51 COG Analytics (United States)'),
(19893, 'https://ror.org/05tyymd87', 'no_lang_code', 1, 'https://ror.org/05tyymd87 DHL (Switzerland)'),
(19894, 'https://ror.org/05tzsrw37', 'en', 1, 'https://ror.org/05tzsrw37 Joint Nature Conservation Committee'),
(19895, 'https://ror.org/05v0gvx94', 'en', 1, 'https://ror.org/05v0gvx94 National Institute for Research and Development of Isotopic and Molecular Technologies'),
(19896, 'https://ror.org/05v0str08', 'en', 1, 'https://ror.org/05v0str08 Midland University'),
(19897, 'https://ror.org/05v1frz10', 'no_lang_code', 1, 'https://ror.org/05v1frz10 United Aircraft (Russia) ŠžŠ±ŃŠŠµŠ“ŠøŠ½Ń‘Š½Š½Š°Ń Š°Š²ŠøŠ°ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń ŠŗŠ¾Ń€ŠæŠ¾Ń€Š°Ń†ŠøŃ'),
(19898, 'https://ror.org/05v2dq092', 'fr', 1, 'https://ror.org/05v2dq092 Centre International des Technologies de l''Environnement de Tunis'),
(19899, 'https://ror.org/05v4dhb64', 'no_lang_code', 1, 'https://ror.org/05v4dhb64 Bluefrog Design (United Kingdom)'),
(19900, 'https://ror.org/05v5s8n75', 'no_lang_code', 1, 'https://ror.org/05v5s8n75 Ipec (United Kingdom)'),
(19901, 'https://ror.org/05v60wx04', 'no_lang_code', 1, 'https://ror.org/05v60wx04 Oryx International Growth Fund (Ireland)'),
(19902, 'https://ror.org/05v7e2b49', 'no_lang_code', 1, 'https://ror.org/05v7e2b49 Hazen Research (United States)'),
(19903, 'https://ror.org/05v7gv656', 'en', 1, 'https://ror.org/05v7gv656 Federal Energy Regulatory Commission'),
(19904, 'https://ror.org/05v8rqa59', 'no_lang_code', 1, 'https://ror.org/05v8rqa59 FTL Systems (United Kingdom)'),
(19905, 'https://ror.org/05v9tzp52', 'en', 1, 'https://ror.org/05v9tzp52 National Physician and Family Referral'),
(19906, 'https://ror.org/05vb5dy28', 'en', 1, 'https://ror.org/05vb5dy28 International Dark Sky Association'),
(19907, 'https://ror.org/05vcy2476', 'it', 1, 'https://ror.org/05vcy2476 Fondazione Vincenzo Pansadoro Vincenzo Pansadoro Foundation'),
(19908, 'https://ror.org/05vdt4g65', 'no_lang_code', 1, 'https://ror.org/05vdt4g65 TeloVISION (United States)'),
(19909, 'https://ror.org/05veett18', 'en', 1, 'https://ror.org/05veett18 Technology Partners Foundation'),
(19910, 'https://ror.org/05vekkk95', 'no_lang_code', 1, 'https://ror.org/05vekkk95 Duffy Engineering and Associates (United States)'),
(19911, 'https://ror.org/05vepfk90', 'no_lang_code', 1, 'https://ror.org/05vepfk90 Cosmas (United States)'),
(19912, 'https://ror.org/05vg3p333', 'no_lang_code', 1, 'https://ror.org/05vg3p333 Lakeshore Group (United States)'),
(19913, 'https://ror.org/05vgm9d49', 'no_lang_code', 1, 'https://ror.org/05vgm9d49 FKuR Kunststoff (Germany)'),
(19914, 'https://ror.org/05vjt2s15', 'no_lang_code', 1, 'https://ror.org/05vjt2s15 EnerSearch'),
(19915, 'https://ror.org/05vkmhj10', 'en', 1, 'https://ror.org/05vkmhj10 Georgia Gwinnett College'),
(19916, 'https://ror.org/05vnht861', 'en', 1, 'https://ror.org/05vnht861 Essex County Council'),
(19917, 'https://ror.org/05vnnaf55', 'no_lang_code', 1, 'https://ror.org/05vnnaf55 Kompania Węglowa (Poland)'),
(19918, 'https://ror.org/05vp4ka74', 'en', 1, 'https://ror.org/05vp4ka74 Bundesministerium für Gesundheit Federal Ministry of Health'),
(19919, 'https://ror.org/05vphmq64', 'en', 1, 'https://ror.org/05vphmq64 Natrona County School District'),
(19920, 'https://ror.org/05vs3ac92', 'no_lang_code', 1, 'https://ror.org/05vs3ac92 Postnova Analytics (United States)'),
(19921, 'https://ror.org/05vs4fq96', 'en', 1, 'https://ror.org/05vs4fq96 Hillsdale College'),
(19922, 'https://ror.org/05vs4ye41', 'no_lang_code', 1, 'https://ror.org/05vs4ye41 Ansmart (United Kingdom)'),
(19923, 'https://ror.org/05vyrqa83', 'en', 1, 'https://ror.org/05vyrqa83 Marylhurst University'),
(19924, 'https://ror.org/05vytj560', 'en', 1, 'https://ror.org/05vytj560 Scioto County Juvenile Court'),
(19925, 'https://ror.org/05vzvmc30', 'no_lang_code', 1, 'https://ror.org/05vzvmc30 DE Technologies (United States)'),
(19926, 'https://ror.org/05w0qtv14', 'en', 1, 'https://ror.org/05w0qtv14 American InterContinental University'),
(19927, 'https://ror.org/05w1d3q28', 'en', 1, 'https://ror.org/05w1d3q28 Coastal Behavioral Healthcare'),
(19928, 'https://ror.org/05w1nn565', 'en', 1, 'https://ror.org/05w1nn565 Ministerstvo vnitra Ministry of the Interior'),
(19929, 'https://ror.org/05w3cd862', 'en', 1, 'https://ror.org/05w3cd862 Cottey College'),
(19930, 'https://ror.org/05w4kcm12', 'no_lang_code', 1, 'https://ror.org/05w4kcm12 Emergence Tech Limited (United Kingdom)'),
(19931, 'https://ror.org/05w59af50', 'no_lang_code', 1, 'https://ror.org/05w59af50 Deimos Engenharia (Portugal)'),
(19932, 'https://ror.org/05w6jpy68', 'no_lang_code', 1, 'https://ror.org/05w6jpy68 Kanthal (Sweden)'),
(19933, 'https://ror.org/05w72d176', 'en', 1, 'https://ror.org/05w72d176 The People of the United Methodist Church'),
(19934, 'https://ror.org/05w8pa285', 'no_lang_code', 1, 'https://ror.org/05w8pa285 Iron Pump (Denmark)'),
(19935, 'https://ror.org/05w8qnb04', 'no_lang_code', 1, 'https://ror.org/05w8qnb04 Axion Biosystems (United States)'),
(19936, 'https://ror.org/05w93eq54', 'en', 1, 'https://ror.org/05w93eq54 Drug Free Charlotte County'),
(19937, 'https://ror.org/05wbpnh19', 'en', 1, 'https://ror.org/05wbpnh19 Fishermen and Scientists Research Society'),
(19938, 'https://ror.org/05wbr5e76', 'en', 1, 'https://ror.org/05wbr5e76 Kansas Department for Aging and Disability Services'),
(19939, 'https://ror.org/05wd26881', 'en', 1, 'https://ror.org/05wd26881 Gogebic Community College'),
(19940, 'https://ror.org/05wffnp93', 'en', 1, 'https://ror.org/05wffnp93 Institut biblique moody Moody Bible Institute'),
(19941, 'https://ror.org/05wfyqn93', 'en', 1, 'https://ror.org/05wfyqn93 Missouri Baptist University'),
(19942, 'https://ror.org/05wg6j504', 'en', 1, 'https://ror.org/05wg6j504 Catholic Community Services Of Southern Arizona'),
(19943, 'https://ror.org/05wge1d25', 'en', 1, 'https://ror.org/05wge1d25 GS1 Germany'),
(19944, 'https://ror.org/05wpve720', 'no_lang_code', 1, 'https://ror.org/05wpve720 AdCapital (Germany)'),
(19945, 'https://ror.org/05wrxmc86', 'fr', 1, 'https://ror.org/05wrxmc86 Association des Communicateurs Scientifiques du QuƩbec'),
(19946, 'https://ror.org/05wrxrk69', 'en', 1, 'https://ror.org/05wrxrk69 Center For Social Innovation'),
(19947, 'https://ror.org/05ws8g470', 'en', 1, 'https://ror.org/05ws8g470 Institute for Biotechnology and Bioengineering'),
(19948, 'https://ror.org/05wtnrd36', 'no_lang_code', 1, 'https://ror.org/05wtnrd36 Dr. SchƤr (Italy)'),
(19949, 'https://ror.org/05wttv044', 'en', 1, 'https://ror.org/05wttv044 Berwyn Public Library'),
(19950, 'https://ror.org/05wvn6j57', 'no_lang_code', 1, 'https://ror.org/05wvn6j57 Invent (Italy)'),
(19951, 'https://ror.org/05wx9za24', 'no_lang_code', 1, 'https://ror.org/05wx9za24 Ortec (France)'),
(19952, 'https://ror.org/05x1fc249', 'no_lang_code', 1, 'https://ror.org/05x1fc249 Pyrexar Medical (United States)'),
(19953, 'https://ror.org/05x2sc041', 'en', 1, 'https://ror.org/05x2sc041 Project Walk-Austin'),
(19954, 'https://ror.org/05x3a2381', 'no_lang_code', 1, 'https://ror.org/05x3a2381 KCET'),
(19955, 'https://ror.org/05x3t0w31', 'en', 1, 'https://ror.org/05x3t0w31 Richland Community College'),
(19956, 'https://ror.org/05x45y691', 'en', 1, 'https://ror.org/05x45y691 United Fire Service Women'),
(19957, 'https://ror.org/05x54c792', 'en', 1, 'https://ror.org/05x54c792 Women''s Cancer Resource Center'),
(19958, 'https://ror.org/05x6z3731', 'no_lang_code', 1, 'https://ror.org/05x6z3731 International Biomedical (United States)'),
(19959, 'https://ror.org/05x76z110', 'no_lang_code', 1, 'https://ror.org/05x76z110 John Caunt Scientific (United Kingdom)'),
(19960, 'https://ror.org/05x8aff37', 'no_lang_code', 1, 'https://ror.org/05x8aff37 Matrasur Composites (France)'),
(19961, 'https://ror.org/05xc7zw37', 'no_lang_code', 1, 'https://ror.org/05xc7zw37 CIM Group (Serbia)'),
(19962, 'https://ror.org/05xca6483', 'en', 1, 'https://ror.org/05xca6483 Bay Path University'),
(19963, 'https://ror.org/05xcney74', 'it', 1, 'https://ror.org/05xcney74 Azienda Sanitaria Locale Roma 3'),
(19964, 'https://ror.org/05xdrja94', 'en', 1, 'https://ror.org/05xdrja94 Gail Borden Public Library District'),
(19965, 'https://ror.org/05xdwy846', 'fr', 1, 'https://ror.org/05xdwy846 Centre de Recherche en Ɖconomie AppliquĆ©e pour le DĆ©veloppement'),
(19966, 'https://ror.org/05xevhk22', 'en', 1, 'https://ror.org/05xevhk22 Tiffin University'),
(19967, 'https://ror.org/05xfx3765', 'en', 1, 'https://ror.org/05xfx3765 Women''s International Leadership Institute'),
(19968, 'https://ror.org/05xhmq411', 'no_lang_code', 1, 'https://ror.org/05xhmq411 Control 2K'),
(19969, 'https://ror.org/05xhvxn93', 'no_lang_code', 1, 'https://ror.org/05xhvxn93 MemEx (Italy)'),
(19970, 'https://ror.org/05xj9r987', 'en', 1, 'https://ror.org/05xj9r987 Forum Internazionale ed Europeo di Ricerche sull’Immigrazione International and European Forum on Migration Research'),
(19971, 'https://ror.org/05xmmkz88', 'no_lang_code', 1, 'https://ror.org/05xmmkz88 Clear Guide Medical (United States)'),
(19972, 'https://ror.org/05xn6v862', 'no_lang_code', 1, 'https://ror.org/05xn6v862 ChromaDex (United States)'),
(19973, 'https://ror.org/05xng4y02', 'no_lang_code', 1, 'https://ror.org/05xng4y02 Gridpoint solutions (United Kingdom)'),
(19974, 'https://ror.org/05xpqbj32', 'no_lang_code', 1, 'https://ror.org/05xpqbj32 Forschungsinstitut für Mineralische und Metallische Werkstoffe Edelsteine/Edemetalle Research Institute for Mineral and Metallic Materials Gemstones/Precious Metals'),
(19975, 'https://ror.org/05xqwqf73', 'en', 1, 'https://ror.org/05xqwqf73 European Embedded Control Institute Institut EuropƩen de ContrƓle EmbarquƩ'),
(19976, 'https://ror.org/05xr55z04', 'no_lang_code', 1, 'https://ror.org/05xr55z04 Angewandte Micro Messtechnik (Germany)'),
(19977, 'https://ror.org/05xtrfa17', 'no_lang_code', 1, 'https://ror.org/05xtrfa17 Denso (Germany)'),
(19978, 'https://ror.org/05xvkjh87', 'no_lang_code', 1, 'https://ror.org/05xvkjh87 Metabolomx (United States)'),
(19979, 'https://ror.org/05xxwq927', 'en', 1, 'https://ror.org/05xxwq927 European Blind Union'),
(19980, 'https://ror.org/05xyrf554', 'de', 1, 'https://ror.org/05xyrf554 Intelligent Transport Systems Niedersachsen'),
(19981, 'https://ror.org/05xzrxq68', 'no_lang_code', 1, 'https://ror.org/05xzrxq68 Amos Media (United States)'),
(19982, 'https://ror.org/05y10b138', 'pt', 1, 'https://ror.org/05y10b138 Centro Tecnológico da Pedra Natural de Portugal'),
(19983, 'https://ror.org/05y20sz16', 'pt', 1, 'https://ror.org/05y20sz16 Ministry of National Defense MinistƩrio da Defesa Nacional'),
(19984, 'https://ror.org/05y26rr34', 'en', 1, 'https://ror.org/05y26rr34 Ancilla College'),
(19985, 'https://ror.org/05y3agr14', 'no_lang_code', 1, 'https://ror.org/05y3agr14 Ai2 (United Kingdom)'),
(19986, 'https://ror.org/05y64p741', 'no_lang_code', 1, 'https://ror.org/05y64p741 MP Biomedicals (United States)'),
(19987, 'https://ror.org/05y742b63', 'no_lang_code', 1, 'https://ror.org/05y742b63 Delley Seeds and Plants (Switzerland)'),
(19988, 'https://ror.org/05y9mxh13', 'pt', 1, 'https://ror.org/05y9mxh13 Hospital do Mar'),
(19989, 'https://ror.org/05yakbd29', 'no_lang_code', 1, 'https://ror.org/05yakbd29 Aspen Products Group (United States)'),
(19990, 'https://ror.org/05yapj268', 'en', 1, 'https://ror.org/05yapj268 Education Scotland Foghlam Alba'),
(19991, 'https://ror.org/05ybzyq68', 'no_lang_code', 1, 'https://ror.org/05ybzyq68 Castor Technologies (Canada)'),
(19992, 'https://ror.org/05ye48k35', 'no_lang_code', 1, 'https://ror.org/05ye48k35 Brainlab (Germany)'),
(19993, 'https://ror.org/05ye51q48', 'no_lang_code', 1, 'https://ror.org/05ye51q48 Phylogeny (United States)'),
(19994, 'https://ror.org/05ygm7711', 'en', 1, 'https://ror.org/05ygm7711 GEICAM – Spanish Breast Cancer Group Grupo EspaƱol de Investigación en CĆ”ncer de Mama'),
(19995, 'https://ror.org/05yh81666', 'en', 1, 'https://ror.org/05yh81666 Stephen Gaynor School'),
(19996, 'https://ror.org/05yhsbg08', 'no_lang_code', 1, 'https://ror.org/05yhsbg08 OS Alliance (Austria)'),
(19997, 'https://ror.org/05ykwy958', 'no_lang_code', 1, 'https://ror.org/05ykwy958 Dyson Technical Ceramics (United Kingdom)'),
(19998, 'https://ror.org/05ym5dp96', 'en', 1, 'https://ror.org/05ym5dp96 Liverpool City Council'),
(19999, 'https://ror.org/05yny8j84', 'en', 1, 'https://ror.org/05yny8j84 Americas Commercial Transportation Research'),
(20000, 'https://ror.org/05yq10v05', 'en', 1, 'https://ror.org/05yq10v05 Global Alliance of Mental Illness Advocacy Networks-Europe'),
(20001, 'https://ror.org/0003ahp46', 'es', 1, 'https://ror.org/0003ahp46 Universidad ETAC'),
(20002, 'https://ror.org/0003ccc38', 'en', 1, 'https://ror.org/0003ccc38 St Monicas Hospital'),
(20003, 'https://ror.org/0004h8z94', 'en', 1, 'https://ror.org/0004h8z94 US Ignite'),
(20004, 'https://ror.org/0004r6b85', 'en', 1, 'https://ror.org/0004r6b85 Hochschule Biberach University of Applied Sciences Biberach'),
(20005, 'https://ror.org/0006g9r95', 'es', 1, 'https://ror.org/0006g9r95 Universidad AmƩrica Latina'),
(20006, 'https://ror.org/000848h33', 'fr', 1, 'https://ror.org/000848h33 Hautes Ɖtudes ChrĆ©tiennes de Management et de MathĆ©matiques AppliquĆ©es'),
(20007, 'https://ror.org/000az4664', 'en', 1, 'https://ror.org/000az4664 Canada Foundation for Innovation Fondation canadienne pour l''innovation'),
(20008, 'https://ror.org/000bkwn04', 'fr', 1, 'https://ror.org/000bkwn04 UniversitƩ Protestante d''Afrique de l''Ouest'),
(20009, 'https://ror.org/000ed3w25', 'en', 1, 'https://ror.org/000ed3w25 St Vincent''s Hospital Sydney'),
(20010, 'https://ror.org/000f7jy90', 'en', 1, 'https://ror.org/000f7jy90 Danmarks Statistik Statistics Denmark'),
(20011, 'https://ror.org/000g0zm60', 'en', 1, 'https://ror.org/000g0zm60 University of Jendouba UniversitĆ© de jendouba Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł†ŲÆŁˆŲØŲ©'),
(20012, 'https://ror.org/000hc8n84', 'no_lang_code', 1, 'https://ror.org/000hc8n84 Sequoia Scientific (United States)'),
(20013, 'https://ror.org/000hzts19', 'no_lang_code', 1, 'https://ror.org/000hzts19 Synthesia Group (Spain)'),
(20014, 'https://ror.org/000jvv118', 'en', 1, 'https://ror.org/000jvv118 Ziane Achour University of Djelfa Ų¬Ų§Ł…Ų¹Ų© Ų²ŁŠŲ§Ł† عاؓور-الجلفة'),
(20015, 'https://ror.org/000kfx178', 'en', 1, 'https://ror.org/000kfx178 Calderstones Partnership NHS Foundation Trust'),
(20016, 'https://ror.org/000kgrw24', 'no_lang_code', 1, 'https://ror.org/000kgrw24 Savcor (Finland)'),
(20017, 'https://ror.org/000mgxg22', 'es', 1, 'https://ror.org/000mgxg22 Universidad AnƔhuac QuerƩtaro'),
(20018, 'https://ror.org/000qn5756', 'en', 1, 'https://ror.org/000qn5756 Newport News Public Schools'),
(20019, 'https://ror.org/000qwnj69', 'en', 1, 'https://ror.org/000qwnj69 Institute of Public Administration of Canada'),
(20020, 'https://ror.org/000rhjc77', 'es', 1, 'https://ror.org/000rhjc77 Universidad Centro de Altos Estudios en Ciencias Exactas'),
(20021, 'https://ror.org/000s9mk50', 'no_lang_code', 1, 'https://ror.org/000s9mk50 Ordecsys (Switzerland)'),
(20022, 'https://ror.org/000t5z820', 'no_lang_code', 1, 'https://ror.org/000t5z820 SensoMotoric Instruments (Germany)'),
(20023, 'https://ror.org/000ttz716', 'en', 1, 'https://ror.org/000ttz716 Ludlow Community Hospital');
INSERT INTO `rors` VALUES
(20024, 'https://ror.org/000wpdz03', 'no_lang_code', 1, 'https://ror.org/000wpdz03 Plaxica (United Kingdom)'),
(20025, 'https://ror.org/000xmhb57', 'es', 1, 'https://ror.org/000xmhb57 Universidad Incca de Colombia'),
(20026, 'https://ror.org/0010mjy66', 'en', 1, 'https://ror.org/0010mjy66 Byurakan Astrophysical Observatory'),
(20027, 'https://ror.org/0010vn771', 'en', 1, 'https://ror.org/0010vn771 Dunston Hill Hospital'),
(20028, 'https://ror.org/00143hx31', 'no_lang_code', 1, 'https://ror.org/00143hx31 Varsi (Slovenia)'),
(20029, 'https://ror.org/00158bh81', 'no_lang_code', 1, 'https://ror.org/00158bh81 Monarch Media (United States)'),
(20030, 'https://ror.org/00160a123', 'fr', 1, 'https://ror.org/00160a123 Ɖcole SupĆ©rieure des MultimĆ©dia, Informatique & RĆ©seaux'),
(20031, 'https://ror.org/00161f548', 'en', 1, 'https://ror.org/00161f548 Kobe Medical Center ē„žęˆøåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(20032, 'https://ror.org/0017nar98', 'no_lang_code', 1, 'https://ror.org/0017nar98 Safe Engineering Services & Technologies (Canada)'),
(20033, 'https://ror.org/00185f784', 'no_lang_code', 1, 'https://ror.org/00185f784 OptiEnz Sensors (United States)'),
(20034, 'https://ror.org/0018h5d52', 'en', 1, 'https://ror.org/0018h5d52 Virginia Western Community College'),
(20035, 'https://ror.org/0019g1982', 'es', 1, 'https://ror.org/0019g1982 Universidad de Hermosillo'),
(20036, 'https://ror.org/001bj3k32', 'en', 1, 'https://ror.org/001bj3k32 Administration for Children''s Services'),
(20037, 'https://ror.org/001d74r65', 'en', 1, 'https://ror.org/001d74r65 Post and Telecom Administration Póst og Fjarskiptastofnun'),
(20038, 'https://ror.org/001eqnp72', 'no_lang_code', 1, 'https://ror.org/001eqnp72 Transeuropean Consultants for Transport, Development and Information Technology (Greece) Ī“Ī¹ĪµĻ…ĻĻ‰Ļ€Ī±ĻŠĪŗĻŽĪ½ Ī£Ļ…Ī¼Ī²ĪæĻĪ»Ļ‰Ī½ ĪœĪµĻ„Ī±Ļ†ĪæĻĻŽĪ½, Ανάπτυξης και Πληροφορικής'),
(20039, 'https://ror.org/001f54z88', 'no_lang_code', 1, 'https://ror.org/001f54z88 Phytodata'),
(20040, 'https://ror.org/001fphc23', 'en', 1, 'https://ror.org/001fphc23 Universidade de Cabo Verde University of Cape Verde'),
(20041, 'https://ror.org/001fypf81', 'pt', 1, 'https://ror.org/001fypf81 Universidade Unigranrio'),
(20042, 'https://ror.org/001gc6461', 'en', 1, 'https://ror.org/001gc6461 Oregon Public Broadcasting'),
(20043, 'https://ror.org/001gmby50', 'no_lang_code', 1, 'https://ror.org/001gmby50 Oracle (Spain)'),
(20044, 'https://ror.org/001m8k465', 'es', 1, 'https://ror.org/001m8k465 Universidad Iberoamericana de Ciencias y TecnologĆ­a'),
(20045, 'https://ror.org/001msrs66', 'fr', 1, 'https://ror.org/001msrs66 Institut Panafricain pour le DƩveloppement Afrique Centrale'),
(20046, 'https://ror.org/001n2yb14', 'no_lang_code', 1, 'https://ror.org/001n2yb14 Zadig (Italy)'),
(20047, 'https://ror.org/001nq7s39', 'en', 1, 'https://ror.org/001nq7s39 American Jewish University'),
(20048, 'https://ror.org/001pma463', 'en', 1, 'https://ror.org/001pma463 University of Kara UniversitƩ de Kara'),
(20049, 'https://ror.org/001pw8x48', 'no_lang_code', 1, 'https://ror.org/001pw8x48 NZI (Spain)'),
(20050, 'https://ror.org/001qp3c53', 'no_lang_code', 1, 'https://ror.org/001qp3c53 Procoat Tecnologias (Spain)'),
(20051, 'https://ror.org/001rahr89', 'en', 1, 'https://ror.org/001rahr89 Affiliated Hospital of Nantong University 南通大学附属医院'),
(20052, 'https://ror.org/001szys49', 'en', 1, 'https://ror.org/001szys49 Turkish Society of HVAC and Sanitary Engineers'),
(20053, 'https://ror.org/001v8xr05', 'fr', 1, 'https://ror.org/001v8xr05 Institut SupƩrieur de la Communication, des Affaires et du Management'),
(20054, 'https://ror.org/001xgg719', 'no_lang_code', 1, 'https://ror.org/001xgg719 Metal Matrix Cast Composites (United States)'),
(20055, 'https://ror.org/001y71q13', 'no_lang_code', 1, 'https://ror.org/001y71q13 Wave Dragon (Denmark)'),
(20056, 'https://ror.org/001ym8t39', 'en', 1, 'https://ror.org/001ym8t39 Peer Services'),
(20057, 'https://ror.org/001yzzh53', 'en', 1, 'https://ror.org/001yzzh53 Hyogo Chuo National Hospital 兵庫中央病院'),
(20058, 'https://ror.org/001z81t90', 'no_lang_code', 1, 'https://ror.org/001z81t90 OPeNDAP'),
(20059, 'https://ror.org/001zajz59', 'no_lang_code', 1, 'https://ror.org/001zajz59 Canadian Malartic (Canada)'),
(20060, 'https://ror.org/001zdzp98', 'en', 1, 'https://ror.org/001zdzp98 CollĆØge universitaire dominicain Dominican University College'),
(20061, 'https://ror.org/00238wh69', 'no_lang_code', 1, 'https://ror.org/00238wh69 TSD Projects (Italy)'),
(20062, 'https://ror.org/0023n7k70', 'en', 1, 'https://ror.org/0023n7k70 Memorial Blood Centers'),
(20063, 'https://ror.org/0023x8n30', 'no_lang_code', 1, 'https://ror.org/0023x8n30 Science Wares (United States)'),
(20064, 'https://ror.org/0024fc285', 'en', 1, 'https://ror.org/0024fc285 FrontLine Service'),
(20065, 'https://ror.org/00259c050', 'no_lang_code', 1, 'https://ror.org/00259c050 Chibaken Saiseikai Narashino Hospital åƒč‘‰ēœŒęøˆē”Ÿä¼šēæ’åæ—é‡Žē—…é™¢'),
(20066, 'https://ror.org/0025p3069', 'es', 1, 'https://ror.org/0025p3069 Corporación Universitaria de Colombia Ideas'),
(20067, 'https://ror.org/0026b6z69', 'en', 1, 'https://ror.org/0026b6z69 Whitchurch Community Hospital'),
(20068, 'https://ror.org/0027kz691', 'no_lang_code', 1, 'https://ror.org/0027kz691 Sbs Byfornyelse'),
(20069, 'https://ror.org/0028kf729', 'en', 1, 'https://ror.org/0028kf729 Concordia University Irvine'),
(20070, 'https://ror.org/0028r9r35', 'en', 1, 'https://ror.org/0028r9r35 Akureyri Hospital Sjúkrahúsið Ô Akureyri'),
(20071, 'https://ror.org/0029df882', 'es', 1, 'https://ror.org/0029df882 Universidad Modelo'),
(20072, 'https://ror.org/002ekrn29', 'en', 1, 'https://ror.org/002ekrn29 Abingdon Community Hospital'),
(20073, 'https://ror.org/002gezp78', 'es', 1, 'https://ror.org/002gezp78 Instituto Universitario de Tecnologia y Humanidades'),
(20074, 'https://ror.org/002j43z05', 'no_lang_code', 1, 'https://ror.org/002j43z05 Wolframcarb (Italy)'),
(20075, 'https://ror.org/002p5mx82', 'no_lang_code', 1, 'https://ror.org/002p5mx82 Microtest (United Kingdom)'),
(20076, 'https://ror.org/002pa9318', 'en', 1, 'https://ror.org/002pa9318 East Lancashire Hospitals NHS Trust'),
(20077, 'https://ror.org/002rcs021', 'es', 1, 'https://ror.org/002rcs021 Universidad Partenón de Cozumel'),
(20078, 'https://ror.org/002sayz20', 'no_lang_code', 1, 'https://ror.org/002sayz20 SMST Designers & Constructors (Netherlands)'),
(20079, 'https://ror.org/002sg8b56', 'no_lang_code', 1, 'https://ror.org/002sg8b56 Resource (United States)'),
(20080, 'https://ror.org/002wz8j95', 'no_lang_code', 1, 'https://ror.org/002wz8j95 Norton Hydraulics (United Kingdom)'),
(20081, 'https://ror.org/002yssj28', 'en', 1, 'https://ror.org/002yssj28 Wharfedale Hospital'),
(20082, 'https://ror.org/002z77y34', 'en', 1, 'https://ror.org/002z77y34 Copperstone University'),
(20083, 'https://ror.org/002ze7e15', 'no_lang_code', 1, 'https://ror.org/002ze7e15 Syntiron (United States)'),
(20084, 'https://ror.org/0030hgr47', 'es', 1, 'https://ror.org/0030hgr47 Universidad Nacional JosƩ Marƭa Arguedas'),
(20085, 'https://ror.org/00315pw02', 'pt', 1, 'https://ror.org/00315pw02 Universidade Potiguar'),
(20086, 'https://ror.org/0038dsf96', 'en', 1, 'https://ror.org/0038dsf96 St Leonards Community Hospital'),
(20087, 'https://ror.org/003ct7658', 'pt', 1, 'https://ror.org/003ct7658 Centro UniversitÔrio Católico Salesiano Auxilium'),
(20088, 'https://ror.org/003dyzj34', 'en', 1, 'https://ror.org/003dyzj34 Danetre Hospital'),
(20089, 'https://ror.org/003e62q52', 'en', 1, 'https://ror.org/003e62q52 Ellesmere Port Hospital'),
(20090, 'https://ror.org/003fj3t94', 'en', 1, 'https://ror.org/003fj3t94 Swanage Community Hospital'),
(20091, 'https://ror.org/003g85c66', 'en', 1, 'https://ror.org/003g85c66 Silver Buffalo Consulting'),
(20092, 'https://ror.org/003gh8k45', 'es', 1, 'https://ror.org/003gh8k45 Universidad Tecnológica del Sureste de Veracruz'),
(20093, 'https://ror.org/003jrsn97', 'no_lang_code', 1, 'https://ror.org/003jrsn97 Software AG (Italy)'),
(20094, 'https://ror.org/003kfm697', 'no_lang_code', 1, 'https://ror.org/003kfm697 Niagara Scientific Products (United States)'),
(20095, 'https://ror.org/003mpdt17', 'es', 1, 'https://ror.org/003mpdt17 Universidad Católica Silva Henríquez'),
(20096, 'https://ror.org/003pb1s55', 'en', 1, 'https://ror.org/003pb1s55 South West London and St George''s Mental Health NHS Trust'),
(20097, 'https://ror.org/003r53j91', 'en', 1, 'https://ror.org/003r53j91 Royal Navy'),
(20098, 'https://ror.org/003s4cb46', 'no_lang_code', 1, 'https://ror.org/003s4cb46 YIT (Finland)'),
(20099, 'https://ror.org/003sfv155', 'en', 1, 'https://ror.org/003sfv155 Nuclear Physics European Collaboration Committee'),
(20100, 'https://ror.org/003srnj92', 'no_lang_code', 1, 'https://ror.org/003srnj92 MicroDish (Netherlands)'),
(20101, 'https://ror.org/003vxvw45', 'pt', 1, 'https://ror.org/003vxvw45 Universidade da AmazƓnia'),
(20102, 'https://ror.org/003wm4260', 'es', 1, 'https://ror.org/003wm4260 Universitario Crandon'),
(20103, 'https://ror.org/003wrb977', 'en', 1, 'https://ror.org/003wrb977 Toiyabe Indian Health Project'),
(20104, 'https://ror.org/0040db356', 'en', 1, 'https://ror.org/0040db356 Al Fashir University Ų¬Ų§Ł…Ų¹Ų© الفاؓر'),
(20105, 'https://ror.org/0042wf948', 'no_lang_code', 1, 'https://ror.org/0042wf948 Hochschule Hólar Hólar University College Hólaskóli - HÔskólinn Ô Hólum'),
(20106, 'https://ror.org/0042ycb06', 'no_lang_code', 1, 'https://ror.org/0042ycb06 Naftosol (Greece)'),
(20107, 'https://ror.org/0046y6b22', 'pt', 1, 'https://ror.org/0046y6b22 Centro UniversitĆ”rio ƍtalo Brasileiro'),
(20108, 'https://ror.org/0047ad446', 'no_lang_code', 1, 'https://ror.org/0047ad446 Yara (United Kingdom)'),
(20109, 'https://ror.org/0048r6h17', 'no_lang_code', 1, 'https://ror.org/0048r6h17 United Silicon Carbide (United States)'),
(20110, 'https://ror.org/0049xjz07', 'en', 1, 'https://ror.org/0049xjz07 San Luis Obispo County Public Health Department'),
(20111, 'https://ror.org/004b3k735', 'no_lang_code', 1, 'https://ror.org/004b3k735 Sigma Engineering (Germany)'),
(20112, 'https://ror.org/004ckc033', 'en', 1, 'https://ror.org/004ckc033 National Stroke Foundation'),
(20113, 'https://ror.org/004dan487', 'fr', 1, 'https://ror.org/004dan487 Centre Hospitalier Universitaire de La RƩunion'),
(20114, 'https://ror.org/004fs0e42', 'en', 1, 'https://ror.org/004fs0e42 National University of Cajamarca Universidad Nacional de Cajamarca'),
(20115, 'https://ror.org/004hn8266', 'en', 1, 'https://ror.org/004hn8266 Danish National Police'),
(20116, 'https://ror.org/004k51631', 'en', 1, 'https://ror.org/004k51631 Sheridan College'),
(20117, 'https://ror.org/004kq1w56', 'en', 1, 'https://ror.org/004kq1w56 Mesoamerican University Universidad Mesoamericana'),
(20118, 'https://ror.org/004nw8z31', 'no_lang_code', 1, 'https://ror.org/004nw8z31 Studiengesellschaft für Eisenerzaufbereitung (Germany)'),
(20119, 'https://ror.org/004nxe453', 'es', 1, 'https://ror.org/004nxe453 Universidad EvangƩlica del Paraguay'),
(20120, 'https://ror.org/004nyzb81', 'es', 1, 'https://ror.org/004nyzb81 Universidad Privada de Santa Cruz de la Sierra'),
(20121, 'https://ror.org/004pedq54', 'de', 1, 'https://ror.org/004pedq54 Katholisches Kinderkrankenhaus Wilhelmstift'),
(20122, 'https://ror.org/004qdne14', 'no_lang_code', 1, 'https://ror.org/004qdne14 Source Production & Equipment Company (United States)'),
(20123, 'https://ror.org/004rjvc46', 'no_lang_code', 1, 'https://ror.org/004rjvc46 Home Bank (United States)'),
(20124, 'https://ror.org/004wx9438', 'no_lang_code', 1, 'https://ror.org/004wx9438 Micropyretics Heater International (United States)'),
(20125, 'https://ror.org/004xtaq37', 'es', 1, 'https://ror.org/004xtaq37 Universidad Especializada del Contador PĆŗblico Autorizado'),
(20126, 'https://ror.org/004y9tt39', 'pt', 1, 'https://ror.org/004y9tt39 Instituto Superior de Ciências Económicas e Empresariais'),
(20127, 'https://ror.org/004z6x951', 'en', 1, 'https://ror.org/004z6x951 CollĆØge marianopolis Marianopolis College'),
(20128, 'https://ror.org/004zb6b85', 'en', 1, 'https://ror.org/004zb6b85 Spire Cheshire Hospital'),
(20129, 'https://ror.org/004zfsx81', 'no_lang_code', 1, 'https://ror.org/004zfsx81 Embraer (Portugal)'),
(20130, 'https://ror.org/0052qvr31', 'fr', 1, 'https://ror.org/0052qvr31 Ɖcole Normale SupĆ©rieure Casablanca'),
(20131, 'https://ror.org/0053y3939', 'es', 1, 'https://ror.org/0053y3939 Universidad del Futbol y Ciencias del Deporte'),
(20132, 'https://ror.org/005430417', 'no_lang_code', 1, 'https://ror.org/005430417 Arqiva (United Kingdom)'),
(20133, 'https://ror.org/0057ag334', 'pt', 1, 'https://ror.org/0057ag334 Agostinho Neto University, Universidade Agostinho Neto'),
(20134, 'https://ror.org/0057f6x09', 'en', 1, 'https://ror.org/0057f6x09 Airedale NHS Foundation Trust'),
(20135, 'https://ror.org/005a4vt43', 'en', 1, 'https://ror.org/005a4vt43 Ohio Domestic Violence Network'),
(20136, 'https://ror.org/005bfja03', 'en', 1, 'https://ror.org/005bfja03 Regenesys Business School'),
(20137, 'https://ror.org/005c60751', 'en', 1, 'https://ror.org/005c60751 Raritan Valley Community College'),
(20138, 'https://ror.org/005cdk606', 'no_lang_code', 1, 'https://ror.org/005cdk606 Visual Awareness Research Group (United States)'),
(20139, 'https://ror.org/005cgg117', 'es', 1, 'https://ror.org/005cgg117 Universidad Estatal de BolĆ­var'),
(20140, 'https://ror.org/005jzz257', 'en', 1, 'https://ror.org/005jzz257 Liverpool Community Health NHS Trust'),
(20141, 'https://ror.org/005kb9y44', 'no_lang_code', 1, 'https://ror.org/005kb9y44 Vinidea'),
(20142, 'https://ror.org/005s79z43', 'no_lang_code', 1, 'https://ror.org/005s79z43 Rolatube Technology (United Kingdom)'),
(20143, 'https://ror.org/005tyn647', 'en', 1, 'https://ror.org/005tyn647 Bibliographical Society of Canada La SociƩtƩ Bibliographique du Canada'),
(20144, 'https://ror.org/005vfwz38', 'no_lang_code', 1, 'https://ror.org/005vfwz38 Gifu Kyoritsu University å²é˜œå”ē«‹å¤§å­¦'),
(20145, 'https://ror.org/005xdc256', 'es', 1, 'https://ror.org/005xdc256 Fundación Universitaria Bellas Artes'),
(20146, 'https://ror.org/005ywxj74', 'en', 1, 'https://ror.org/005ywxj74 Yobe State University'),
(20147, 'https://ror.org/005zc2807', 'no_lang_code', 1, 'https://ror.org/005zc2807 Tissue Regeneration Systems (United States)'),
(20148, 'https://ror.org/00603mc70', 'no_lang_code', 1, 'https://ror.org/00603mc70 University of Lusaka'),
(20149, 'https://ror.org/0060wre92', 'en', 1, 'https://ror.org/0060wre92 Troitsk Institute for Innovation and Fusion Research Троицкий ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инновационных Šø Ń‚ŠµŃ€Š¼Š¾ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(20150, 'https://ror.org/0063qh129', 'no_lang_code', 1, 'https://ror.org/0063qh129 Hungarian Electricity Private (Hungary)'),
(20151, 'https://ror.org/0063tkv49', 'en', 1, 'https://ror.org/0063tkv49 Kaduna State University'),
(20152, 'https://ror.org/0066vpg85', 'en', 1, 'https://ror.org/0066vpg85 Jiujiang University ä¹ę±Ÿå­¦é™¢'),
(20153, 'https://ror.org/0068fs539', 'no_lang_code', 1, 'https://ror.org/0068fs539 TTS (Sweden)'),
(20154, 'https://ror.org/006a4jj40', 'en', 1, 'https://ror.org/006a4jj40 Mount Stromlo Observatory'),
(20155, 'https://ror.org/006bj3v15', 'no_lang_code', 1, 'https://ror.org/006bj3v15 Peppermint (Germany)'),
(20156, 'https://ror.org/006cvtz77', 'en', 1, 'https://ror.org/006cvtz77 Kebbi State University of Science and Technology'),
(20157, 'https://ror.org/006ghrq92', 'no_lang_code', 1, 'https://ror.org/006ghrq92 Principia Ingenieros Consultores'),
(20158, 'https://ror.org/006gmnk03', 'no_lang_code', 1, 'https://ror.org/006gmnk03 Tecnia'),
(20159, 'https://ror.org/006gxfz55', 'no_lang_code', 1, 'https://ror.org/006gxfz55 Terminal San Giorgio (Italy)'),
(20160, 'https://ror.org/006jqh454', 'en', 1, 'https://ror.org/006jqh454 Brookfields Hospital'),
(20161, 'https://ror.org/006nw5s10', 'en', 1, 'https://ror.org/006nw5s10 Wellesley Institute'),
(20162, 'https://ror.org/006s85q77', 'no_lang_code', 1, 'https://ror.org/006s85q77 Michelin (France)'),
(20163, 'https://ror.org/006sa3014', 'en', 1, 'https://ror.org/006sa3014 Rivers Hospital'),
(20164, 'https://ror.org/006sw6d69', 'en', 1, 'https://ror.org/006sw6d69 Scottish Agricultural Science Agency'),
(20165, 'https://ror.org/006tpsn23', 'en', 1, 'https://ror.org/006tpsn23 College of Marin'),
(20166, 'https://ror.org/006yr9253', 'es', 1, 'https://ror.org/006yr9253 Campo Catino Astronomical Observatory Osservatorio Astronomico di Campo Catino'),
(20167, 'https://ror.org/006zfr810', 'en', 1, 'https://ror.org/006zfr810 Philippine Educational Theater Association'),
(20168, 'https://ror.org/006zn6z18', 'en', 1, 'https://ror.org/006zn6z18 Xinxiang Central Hospital ę–°ä¹”åø‚äø­åæƒåŒ»é™¢'),
(20169, 'https://ror.org/006zzfd13', 'pt', 1, 'https://ror.org/006zzfd13 Centro UniversitÔrio da Fundação Educacional de Barretos'),
(20170, 'https://ror.org/0072e5x58', 'fr', 1, 'https://ror.org/0072e5x58 University Notre Dame of Haiti Université Notre Dame d''Haïti'),
(20171, 'https://ror.org/00746ch50', 'en', 1, 'https://ror.org/00746ch50 Modern University for Information and Technology الجامعة Ų§Ł„Ų­ŲÆŁŠŲ«Ų© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ'),
(20172, 'https://ror.org/0077djf60', 'no_lang_code', 1, 'https://ror.org/0077djf60 Landauer (United States)'),
(20173, 'https://ror.org/0078tmr20', 'es', 1, 'https://ror.org/0078tmr20 Universidad Hebraica'),
(20174, 'https://ror.org/0079mgn81', 'no_lang_code', 1, 'https://ror.org/0079mgn81 Modelon (Sweden)'),
(20175, 'https://ror.org/007b4bn60', 'no_lang_code', 1, 'https://ror.org/007b4bn60 McWane Technology (United Kingdom)'),
(20176, 'https://ror.org/007b5mw80', 'en', 1, 'https://ror.org/007b5mw80 Physicians for a Smoke-Free Canada'),
(20177, 'https://ror.org/007bkwj81', 'no_lang_code', 1, 'https://ror.org/007bkwj81 Oktal (France)'),
(20178, 'https://ror.org/007bv1h22', 'en', 1, 'https://ror.org/007bv1h22 The Edgbaston Hospital'),
(20179, 'https://ror.org/007chxf81', 'en', 1, 'https://ror.org/007chxf81 Universidad de Pinar del RĆ­o University of Pinar del RĆ­o'),
(20180, 'https://ror.org/007drf487', 'es', 1, 'https://ror.org/007drf487 Centro de Investigación Docencia y Consultoria Administrativa'),
(20181, 'https://ror.org/007dt0z55', 'en', 1, 'https://ror.org/007dt0z55 Holy Cross Hospital'),
(20182, 'https://ror.org/007e25j64', 'no_lang_code', 1, 'https://ror.org/007e25j64 NanoPhos (Greece)'),
(20183, 'https://ror.org/007f12622', 'en', 1, 'https://ror.org/007f12622 Bognor Regis War Memorial Hospital'),
(20184, 'https://ror.org/007fxh757', 'pt', 1, 'https://ror.org/007fxh757 Centro UniversitÔrio Salesiano de São Paulo'),
(20185, 'https://ror.org/007gsak37', 'en', 1, 'https://ror.org/007gsak37 National Public Health Information Coalition'),
(20186, 'https://ror.org/007h7f935', 'en', 1, 'https://ror.org/007h7f935 State University of Haiti, University of Haiti UniversitĆ© d''Ɖtat d''haĆÆti'),
(20187, 'https://ror.org/007hw9631', 'no_lang_code', 1, 'https://ror.org/007hw9631 Surface Phenomena Researches Group (Russia)'),
(20188, 'https://ror.org/007m7ww56', 'es', 1, 'https://ror.org/007m7ww56 Lamar Universidad'),
(20189, 'https://ror.org/007n30b05', 'en', 1, 'https://ror.org/007n30b05 MPC Corporation'),
(20190, 'https://ror.org/007pfmx21', 'no_lang_code', 1, 'https://ror.org/007pfmx21 Seafarm (Netherlands)'),
(20191, 'https://ror.org/007phxq15', 'en', 1, 'https://ror.org/007phxq15 N.D. Zelinsky Institute of Organic Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органической химии им. Š.Š”. Зелинского Российской акаГемии наук'),
(20192, 'https://ror.org/007qdam28', 'pt', 1, 'https://ror.org/007qdam28 Centro UniversitƔrio de Lins'),
(20193, 'https://ror.org/007t9h129', 'en', 1, 'https://ror.org/007t9h129 Universidade de Vassouras University of Vassouras'),
(20194, 'https://ror.org/007ywk955', 'es', 1, 'https://ror.org/007ywk955 Universidad Bethesda'),
(20195, 'https://ror.org/0084en736', 'es', 1, 'https://ror.org/0084en736 Universidad Regional del Sureste'),
(20196, 'https://ror.org/0085ewn55', 'es', 1, 'https://ror.org/0085ewn55 Universidad del Istmo University of the Isthmus'),
(20197, 'https://ror.org/0086db414', 'en', 1, 'https://ror.org/0086db414 HƓpital Ignace Deen Ignace Deen Hospital'),
(20198, 'https://ror.org/0086t2w58', 'no_lang_code', 1, 'https://ror.org/0086t2w58 Dustin (Norway)'),
(20199, 'https://ror.org/0087jna26', 'en', 1, 'https://ror.org/0087jna26 Jorge Basadre Grohmann National University Universidad Nacional Jorge Basadre Grohmann'),
(20200, 'https://ror.org/0087wh857', 'es', 1, 'https://ror.org/0087wh857 Institución Universitaria Colegio Mayor del Cauca'),
(20201, 'https://ror.org/0089sg868', 'no_lang_code', 1, 'https://ror.org/0089sg868 Risk Management Solutions (United Kingdom)'),
(20202, 'https://ror.org/008am1c32', 'no_lang_code', 1, 'https://ror.org/008am1c32 Recore Systems (Netherlands)'),
(20203, 'https://ror.org/008bzz504', 'es', 1, 'https://ror.org/008bzz504 Universidad Xicotepetl'),
(20204, 'https://ror.org/008g13a47', 'ms', 1, 'https://ror.org/008g13a47 Sirim Berhad'),
(20205, 'https://ror.org/008ggzb67', 'no_lang_code', 1, 'https://ror.org/008ggzb67 Navtech Radar (United Kingdom)'),
(20206, 'https://ror.org/008jpgg46', 'en', 1, 'https://ror.org/008jpgg46 New England Wild Flower Society'),
(20207, 'https://ror.org/008ksm830', 'en', 1, 'https://ror.org/008ksm830 Valley City Public School District'),
(20208, 'https://ror.org/008kv0w14', 'en', 1, 'https://ror.org/008kv0w14 Siberian Center for Environmental Research and Training Дибирский центр климато-ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований Šø Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(20209, 'https://ror.org/008ngcp91', 'en', 1, 'https://ror.org/008ngcp91 Central London Community Healthcare NHS Trust'),
(20210, 'https://ror.org/008nycg72', 'no_lang_code', 1, 'https://ror.org/008nycg72 SynChem (United States)'),
(20211, 'https://ror.org/008rn4f38', 'es', 1, 'https://ror.org/008rn4f38 Universidad Tecnológica Nicaragüense'),
(20212, 'https://ror.org/008rp3t36', 'no_lang_code', 1, 'https://ror.org/008rp3t36 Ocera Therapeutics (United States)'),
(20213, 'https://ror.org/008s23110', 'no_lang_code', 1, 'https://ror.org/008s23110 Metso (Finland)'),
(20214, 'https://ror.org/008t11f85', 'fr', 1, 'https://ror.org/008t11f85 UniversitƩ Ouaga II'),
(20215, 'https://ror.org/008tcyj69', 'it', 1, 'https://ror.org/008tcyj69 Ospedale di Sanremo'),
(20216, 'https://ror.org/008v08256', 'fr', 1, 'https://ror.org/008v08256 UniversitƩ de Cepromad'),
(20217, 'https://ror.org/008v1x891', 'en', 1, 'https://ror.org/008v1x891 Pathways to Housing'),
(20218, 'https://ror.org/008wxtx05', 'no_lang_code', 1, 'https://ror.org/008wxtx05 Ossidian Technologies (Ireland)'),
(20219, 'https://ror.org/008xh4d89', 'en', 1, 'https://ror.org/008xh4d89 Brixiis Astronomical Observatory'),
(20220, 'https://ror.org/008yv5115', 'no_lang_code', 1, 'https://ror.org/008yv5115 MetaSystem (Italy)'),
(20221, 'https://ror.org/0090bh305', 'no_lang_code', 1, 'https://ror.org/0090bh305 Proveca (United Kingdom)'),
(20222, 'https://ror.org/0093xx764', 'no_lang_code', 1, 'https://ror.org/0093xx764 Moog (United Kingdom)'),
(20223, 'https://ror.org/0094fh067', 'no_lang_code', 1, 'https://ror.org/0094fh067 Manpower Employment Organisation'),
(20224, 'https://ror.org/0095wd727', 'no_lang_code', 1, 'https://ror.org/0095wd727 Robbe (France)'),
(20225, 'https://ror.org/0096wds27', 'en', 1, 'https://ror.org/0096wds27 Tartu Science Park'),
(20226, 'https://ror.org/00985q454', 'en', 1, 'https://ror.org/00985q454 Science, Technology, Engineering and Mathematics Network'),
(20227, 'https://ror.org/0098w0b67', 'en', 1, 'https://ror.org/0098w0b67 Teignmouth Community Hospital'),
(20228, 'https://ror.org/009apaj69', 'en', 1, 'https://ror.org/009apaj69 Cherkasy National University Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(20229, 'https://ror.org/009axdy66', 'no_lang_code', 1, 'https://ror.org/009axdy66 Erka Group (Turkey)'),
(20230, 'https://ror.org/009b3qm07', 'en', 1, 'https://ror.org/009b3qm07 PAU Education'),
(20231, 'https://ror.org/009czp143', 'en', 1, 'https://ror.org/009czp143 Shaanxi Provincial People''s Hospital é™•č„æēœäŗŗę°‘åŒ»é™¢'),
(20232, 'https://ror.org/009drq556', 'en', 1, 'https://ror.org/009drq556 Bells University of Technology'),
(20233, 'https://ror.org/009dw2t03', 'en', 1, 'https://ror.org/009dw2t03 Pima County Health Department'),
(20234, 'https://ror.org/009e19j97', 'no_lang_code', 1, 'https://ror.org/009e19j97 Nissan (United Kingdom)'),
(20235, 'https://ror.org/009ephb22', 'no_lang_code', 1, 'https://ror.org/009ephb22 Rood Wit Blauw Water Services (Netherlands)'),
(20236, 'https://ror.org/009fkxv41', 'en', 1, 'https://ror.org/009fkxv41 Arturo Michelena University Universidad Arturo Michelena'),
(20237, 'https://ror.org/009jr9909', 'no_lang_code', 1, 'https://ror.org/009jr9909 Sagivtech (Israel)'),
(20238, 'https://ror.org/009kktb11', 'en', 1, 'https://ror.org/009kktb11 Los Andes Peruvian University Universidad Peruana Los Andes'),
(20239, 'https://ror.org/009n3eh62', 'en', 1, 'https://ror.org/009n3eh62 Oakland Family Services'),
(20240, 'https://ror.org/009ng5f87', 'no_lang_code', 1, 'https://ror.org/009ng5f87 Modulex (Denmark)'),
(20241, 'https://ror.org/009nnap37', 'en', 1, 'https://ror.org/009nnap37 Institute of Accountancy Arusha'),
(20242, 'https://ror.org/009q43145', 'no_lang_code', 1, 'https://ror.org/009q43145 Transfer Devices (United States)'),
(20243, 'https://ror.org/009rrq568', 'nl', 1, 'https://ror.org/009rrq568 Kenniscentrum Papier en Karton'),
(20244, 'https://ror.org/009tveq15', 'en', 1, 'https://ror.org/009tveq15 National Open University of Nigeria'),
(20245, 'https://ror.org/009x26v36', 'no_lang_code', 1, 'https://ror.org/009x26v36 Mitsubishi Heavy Industries (Italy)'),
(20246, 'https://ror.org/009ytxb56', 'es', 1, 'https://ror.org/009ytxb56 Asociación Psicoanalítica del Uruguay'),
(20247, 'https://ror.org/00a3sq030', 'en', 1, 'https://ror.org/00a3sq030 Franklin University'),
(20248, 'https://ror.org/00a8ct372', 'en', 1, 'https://ror.org/00a8ct372 Bridlington Hospital'),
(20249, 'https://ror.org/00aa17k52', 'es', 1, 'https://ror.org/00aa17k52 Instituto Profesional Ipg'),
(20250, 'https://ror.org/00ab9nq73', 'en', 1, 'https://ror.org/00ab9nq73 Indian Maritime University ą®‡ą®ØąÆą®¤ą®æą®Æą®•ąÆ ą®•ą®Ÿą®²ąÆą®šą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(20251, 'https://ror.org/00ah3j950', 'en', 1, 'https://ror.org/00ah3j950 Fountain University'),
(20252, 'https://ror.org/00ajddz62', 'en', 1, 'https://ror.org/00ajddz62 Amateur Telescope Makers of Boston'),
(20253, 'https://ror.org/00ajy2k49', 'en', 1, 'https://ror.org/00ajy2k49 Cygnet Hospital Beckton'),
(20254, 'https://ror.org/00ak30749', 'en', 1, 'https://ror.org/00ak30749 Cheadle Community Hospital'),
(20255, 'https://ror.org/00amt5186', 'pt', 1, 'https://ror.org/00amt5186 Centro UniversitƔrio Lusƭada'),
(20256, 'https://ror.org/00amxdy06', 'en', 1, 'https://ror.org/00amxdy06 La CaƱada Observatory Observatorio de La CaƱada'),
(20257, 'https://ror.org/00an7pj80', 'no_lang_code', 1, 'https://ror.org/00an7pj80 William Demant Holding (Denmark)'),
(20258, 'https://ror.org/00aq5m079', 'pt', 1, 'https://ror.org/00aq5m079 Centro Universitario de Araras Dr Edmunso Ulson'),
(20259, 'https://ror.org/00aqcbq31', 'no_lang_code', 1, 'https://ror.org/00aqcbq31 Testmark Laboratories (Canada)'),
(20260, 'https://ror.org/00arjnt84', 'pt', 1, 'https://ror.org/00arjnt84 Centro UniversitƔrio de GoiƔs'),
(20261, 'https://ror.org/00awfcg31', 'no_lang_code', 1, 'https://ror.org/00awfcg31 Oval Window Audio (United States)'),
(20262, 'https://ror.org/00ax83b61', 'en', 1, 'https://ror.org/00ax83b61 Triangle Universities Nuclear Laboratory'),
(20263, 'https://ror.org/00axfqm84', 'en', 1, 'https://ror.org/00axfqm84 Rockland County Department of Mental Health'),
(20264, 'https://ror.org/00axnmm79', 'no_lang_code', 1, 'https://ror.org/00axnmm79 Signo Motus (Italy)'),
(20265, 'https://ror.org/00ay59j04', 'en', 1, 'https://ror.org/00ay59j04 Koujin Hospital ē“˜ä»ē—…é™¢'),
(20266, 'https://ror.org/00aze9982', 'en', 1, 'https://ror.org/00aze9982 St. Paul''s University'),
(20267, 'https://ror.org/00b06cz11', 'de', 1, 'https://ror.org/00b06cz11 Kinderkrankenhaus auf der Bult'),
(20268, 'https://ror.org/00b1c0c11', 'es', 1, 'https://ror.org/00b1c0c11 Universidad Santa LucĆ­a'),
(20269, 'https://ror.org/00b37sa87', 'es', 1, 'https://ror.org/00b37sa87 Universidad de Concepción del Uruguay'),
(20270, 'https://ror.org/00b3e0r50', 'no_lang_code', 1, 'https://ror.org/00b3e0r50 Water Services Corporation (Malta)'),
(20271, 'https://ror.org/00b43q041', 'en', 1, 'https://ror.org/00b43q041 County Hospital Louth'),
(20272, 'https://ror.org/00b6drk25', 'en', 1, 'https://ror.org/00b6drk25 Government Finance Officers Association'),
(20273, 'https://ror.org/00b747122', 'de', 1, 'https://ror.org/00b747122 Kantonsspital Baselland'),
(20274, 'https://ror.org/00b787347', 'de', 1, 'https://ror.org/00b787347 Naturland'),
(20275, 'https://ror.org/00b7ckn36', 'en', 1, 'https://ror.org/00b7ckn36 Bellevue University'),
(20276, 'https://ror.org/00b8g9t96', 'en', 1, 'https://ror.org/00b8g9t96 Kumeu Observatory'),
(20277, 'https://ror.org/00bcwc583', 'en', 1, 'https://ror.org/00bcwc583 Molina Center for Energy and the Environment'),
(20278, 'https://ror.org/00bda6055', 'no_lang_code', 1, 'https://ror.org/00bda6055 Sensor-Technik Wiedemann (Germany)'),
(20279, 'https://ror.org/00bgp5503', 'no_lang_code', 1, 'https://ror.org/00bgp5503 Water & Earth Technologie (United States)'),
(20280, 'https://ror.org/00bk35j03', 'en', 1, 'https://ror.org/00bk35j03 NF Observatory'),
(20281, 'https://ror.org/00bmh7e34', 'es', 1, 'https://ror.org/00bmh7e34 Universidad Autónoma de Centro América'),
(20282, 'https://ror.org/00bn8y738', 'en', 1, 'https://ror.org/00bn8y738 Primary Care Development Corporation'),
(20283, 'https://ror.org/00bpwbx65', 'en', 1, 'https://ror.org/00bpwbx65 National Composites Centre'),
(20284, 'https://ror.org/00bq8y167', 'no_lang_code', 1, 'https://ror.org/00bq8y167 Arcadis (Canada)'),
(20285, 'https://ror.org/00br73y72', 'en', 1, 'https://ror.org/00br73y72 Atlantic School of Theology'),
(20286, 'https://ror.org/00brc6r59', 'en', 1, 'https://ror.org/00brc6r59 National University of Engineering Universidad Nacional de IngenierĆ­a'),
(20287, 'https://ror.org/00c12ad68', 'no_lang_code', 1, 'https://ror.org/00c12ad68 Opera North (United Kingdom)'),
(20288, 'https://ror.org/00c1w3156', 'en', 1, 'https://ror.org/00c1w3156 Maryland Area Health Education Center West'),
(20289, 'https://ror.org/00c4rk012', 'no_lang_code', 1, 'https://ror.org/00c4rk012 Selcom (Italy)'),
(20290, 'https://ror.org/00c6kkt76', 'no_lang_code', 1, 'https://ror.org/00c6kkt76 PLS Consult (Denmark)'),
(20291, 'https://ror.org/00c7sr793', 'en', 1, 'https://ror.org/00c7sr793 Tonbridge Cottage Hospital'),
(20292, 'https://ror.org/00c8emq34', 'nl', 1, 'https://ror.org/00c8emq34 Vilans'),
(20293, 'https://ror.org/00cacz449', 'fr', 1, 'https://ror.org/00cacz449 Institut SupƩrieur d''Etudes Sociales'),
(20294, 'https://ror.org/00cants75', 'en', 1, 'https://ror.org/00cants75 Bishop''s Castle Community Hospital'),
(20295, 'https://ror.org/00cbzxk82', 'no_lang_code', 1, 'https://ror.org/00cbzxk82 Econova (Sweden)'),
(20296, 'https://ror.org/00cedjf57', 'no_lang_code', 1, 'https://ror.org/00cedjf57 Turbocoating (Italy)'),
(20297, 'https://ror.org/00cepga67', 'en', 1, 'https://ror.org/00cepga67 Lambeth Hospital'),
(20298, 'https://ror.org/00cepgz04', 'en', 1, 'https://ror.org/00cepgz04 National Higher School of Statistics and Applied Economy المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للاحصاؔ و الاقتصاد Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠ الجزائر'),
(20299, 'https://ror.org/00cey1j90', 'es', 1, 'https://ror.org/00cey1j90 Universidad Metropolitana'),
(20300, 'https://ror.org/00cfsj734', 'en', 1, 'https://ror.org/00cfsj734 St. Joseph''s Hospital'),
(20301, 'https://ror.org/00ck9ex56', 'en', 1, 'https://ror.org/00ck9ex56 Malta Enterprise'),
(20302, 'https://ror.org/00crq8079', 'en', 1, 'https://ror.org/00crq8079 Euxton Hall Hospital'),
(20303, 'https://ror.org/00crwr158', 'en', 1, 'https://ror.org/00crwr158 Palomar College'),
(20304, 'https://ror.org/00ct7kr02', 'es', 1, 'https://ror.org/00ct7kr02 Universidad Mariana'),
(20305, 'https://ror.org/00cv4n034', 'en', 1, 'https://ror.org/00cv4n034 Royal Brompton Hospital'),
(20306, 'https://ror.org/00cvckk37', 'pt', 1, 'https://ror.org/00cvckk37 Centro UniversitƔrio Claretiano'),
(20307, 'https://ror.org/00cwcb431', 'no_lang_code', 1, 'https://ror.org/00cwcb431 Opticology (United States)'),
(20308, 'https://ror.org/00cxaqd06', 'no_lang_code', 1, 'https://ror.org/00cxaqd06 Exceet Group (Germany)'),
(20309, 'https://ror.org/00cxp1a86', 'es', 1, 'https://ror.org/00cxp1a86 Universidad Internacional'),
(20310, 'https://ror.org/00cxrw595', 'en', 1, 'https://ror.org/00cxrw595 Universidad para la Paz University for Peace'),
(20311, 'https://ror.org/00d1mmk36', 'en', 1, 'https://ror.org/00d1mmk36 High Institute of Management and Entrepreneurship Institut de Management et de l'' Entrepreunariat'),
(20312, 'https://ror.org/00d2ka202', 'pt', 1, 'https://ror.org/00d2ka202 Centro Hospitalar de Entre o Douro e Vouga E.P.E.'),
(20313, 'https://ror.org/00d2v4e22', 'en', 1, 'https://ror.org/00d2v4e22 Barnet Enfield and Haringey Mental Health Trust'),
(20314, 'https://ror.org/00d337t51', 'no_lang_code', 1, 'https://ror.org/00d337t51 Wind (Italy)'),
(20315, 'https://ror.org/00d4qgb23', 'en', 1, 'https://ror.org/00d4qgb23 GPI Atlantic'),
(20316, 'https://ror.org/00d5d1v82', 'es', 1, 'https://ror.org/00d5d1v82 Institución Universitaria Esumer'),
(20317, 'https://ror.org/00d6gkv56', 'es', 1, 'https://ror.org/00d6gkv56 Universidad Tecnológica Boliviana'),
(20318, 'https://ror.org/00d7rqp94', 'es', 1, 'https://ror.org/00d7rqp94 Universidad de la Cuenca del Plata, University of Cuenca del Plata'),
(20319, 'https://ror.org/00d8sh725', 'en', 1, 'https://ror.org/00d8sh725 Coalville Community Hospital'),
(20320, 'https://ror.org/00d90r471', 'tr', 1, 'https://ror.org/00d90r471 Uluslararası Nakliyeciler Derneği'),
(20321, 'https://ror.org/00dcb6288', 'no_lang_code', 1, 'https://ror.org/00dcb6288 ProSensing (United States)'),
(20322, 'https://ror.org/00dd4r039', 'no_lang_code', 1, 'https://ror.org/00dd4r039 Quantemol (United Kingdom)'),
(20323, 'https://ror.org/00dee9m47', 'en', 1, 'https://ror.org/00dee9m47 St. Oswald''s Hospital'),
(20324, 'https://ror.org/00dheky92', 'en', 1, 'https://ror.org/00dheky92 New England Institute of Addiction Studies'),
(20325, 'https://ror.org/00dhh3h17', 'no_lang_code', 1, 'https://ror.org/00dhh3h17 Tokamak Energy (United Kingdom)'),
(20326, 'https://ror.org/00dksv941', 'no_lang_code', 1, 'https://ror.org/00dksv941 METabolic Explorer (France)'),
(20327, 'https://ror.org/00dqxgc74', 'en', 1, 'https://ror.org/00dqxgc74 Orsett Hospital'),
(20328, 'https://ror.org/00dsfsy77', 'es', 1, 'https://ror.org/00dsfsy77 Universidad Chapultepec'),
(20329, 'https://ror.org/00dtsyq89', 'es', 1, 'https://ror.org/00dtsyq89 Universidad Pedro de Gante'),
(20330, 'https://ror.org/00dwsv166', 'en', 1, 'https://ror.org/00dwsv166 Poltair Community Hospital'),
(20331, 'https://ror.org/00dx9f181', 'pt', 1, 'https://ror.org/00dx9f181 Instituto Superior de Comunicação e Imagem de Moçambique'),
(20332, 'https://ror.org/00dxj9a45', 'es', 1, 'https://ror.org/00dxj9a45 Universidad Santiago de Cali'),
(20333, 'https://ror.org/00dymss37', 'no_lang_code', 1, 'https://ror.org/00dymss37 Safran (United Kingdom)'),
(20334, 'https://ror.org/00dyyan63', 'no_lang_code', 1, 'https://ror.org/00dyyan63 Vennsa Technologies (Canada)'),
(20335, 'https://ror.org/00e2dwm47', 'no_lang_code', 1, 'https://ror.org/00e2dwm47 RenaSci (United Kingdom)'),
(20336, 'https://ror.org/00e2rng16', 'en', 1, 'https://ror.org/00e2rng16 University of Eastern Africa, Baraton'),
(20337, 'https://ror.org/00e4rzw98', 'no_lang_code', 1, 'https://ror.org/00e4rzw98 OmniGuide (United States)'),
(20338, 'https://ror.org/00e6d8m49', 'no_lang_code', 1, 'https://ror.org/00e6d8m49 Scanimetrics (Canada)'),
(20339, 'https://ror.org/00e96sn98', 'en', 1, 'https://ror.org/00e96sn98 Peyton Manning Children’s Hospital at St.Vincent'),
(20340, 'https://ror.org/00e9yqc18', 'es', 1, 'https://ror.org/00e9yqc18 Universidad Tollancingo'),
(20341, 'https://ror.org/00eagt536', 'no_lang_code', 1, 'https://ror.org/00eagt536 W.F. Baird & Associates Coastal Engineers (Canada)'),
(20342, 'https://ror.org/00eg5dk50', 'es', 1, 'https://ror.org/00eg5dk50 Universidad Del PacĆ­fico Ecuador'),
(20343, 'https://ror.org/00ehhcx69', 'no_lang_code', 1, 'https://ror.org/00ehhcx69 Performance Communications'),
(20344, 'https://ror.org/00ejs3f24', 'no_lang_code', 1, 'https://ror.org/00ejs3f24 Unilever (Portugal)'),
(20345, 'https://ror.org/00ekntx28', 'en', 1, 'https://ror.org/00ekntx28 Rutson Hospital'),
(20346, 'https://ror.org/00ekyfe59', 'en', 1, 'https://ror.org/00ekyfe59 Palestinian Hydrology Group Ł…Ų¬Ł…ŁˆŲ¹Ų© Ų§Ł„Ł‡ŁŠŲÆŲ±ŁˆŁ„ŁˆŲ¬ŁŠŁŠŁ† Ų§Ł„ŁŁ„Ų³Ų·ŁŠŁ†ŁŠŁŠŁ†'),
(20347, 'https://ror.org/00emh4n53', 'es', 1, 'https://ror.org/00emh4n53 Instituto Profesional AlemƔn Wilhelm von Humboldt'),
(20348, 'https://ror.org/00emq8v37', 'no_lang_code', 1, 'https://ror.org/00emq8v37 Smart Software (United States)'),
(20349, 'https://ror.org/00ep9v282', 'en', 1, 'https://ror.org/00ep9v282 Schreiner University'),
(20350, 'https://ror.org/00epbww69', 'en', 1, 'https://ror.org/00epbww69 Patten University'),
(20351, 'https://ror.org/00eph4903', 'en', 1, 'https://ror.org/00eph4903 North Middlesex Hospital'),
(20352, 'https://ror.org/00eq1d260', 'no_lang_code', 1, 'https://ror.org/00eq1d260 Suttle-Straus (United States)'),
(20353, 'https://ror.org/00eqcpt58', 'no_lang_code', 1, 'https://ror.org/00eqcpt58 NAVSYS (United States)'),
(20354, 'https://ror.org/00eqfbw40', 'no_lang_code', 1, 'https://ror.org/00eqfbw40 Microsoft (Portugal)'),
(20355, 'https://ror.org/00erejq84', 'es', 1, 'https://ror.org/00erejq84 Universidad Univer'),
(20356, 'https://ror.org/00erf1y78', 'it', 1, 'https://ror.org/00erf1y78 Studio Ricerche Sociali'),
(20357, 'https://ror.org/00erq7915', 'en', 1, 'https://ror.org/00erq7915 Sichuan University of Arts and Science å››å·ę–‡ē†å­¦é™¢'),
(20358, 'https://ror.org/00evp8v92', 'no_lang_code', 1, 'https://ror.org/00evp8v92 Lab21 (United Kingdom)'),
(20359, 'https://ror.org/00exe2989', 'es', 1, 'https://ror.org/00exe2989 Centro Universitario del PacĆ­fico Sur'),
(20360, 'https://ror.org/00ezmxr80', 'en', 1, 'https://ror.org/00ezmxr80 Fairfield Independent Hospital'),
(20361, 'https://ror.org/00f147v33', 'en', 1, 'https://ror.org/00f147v33 Corbett Hospital'),
(20362, 'https://ror.org/00f149504', 'no_lang_code', 1, 'https://ror.org/00f149504 Pearlhill Technologies (United States)'),
(20363, 'https://ror.org/00f20wb28', 'no_lang_code', 1, 'https://ror.org/00f20wb28 Ziplast (Italy)'),
(20364, 'https://ror.org/00f3apt60', 'en', 1, 'https://ror.org/00f3apt60 Kaduna Polytechnic'),
(20365, 'https://ror.org/00f574b02', 'en', 1, 'https://ror.org/00f574b02 West Park Hospital'),
(20366, 'https://ror.org/00f5s9131', 'no_lang_code', 1, 'https://ror.org/00f5s9131 TeraPore Technologies (United States)'),
(20367, 'https://ror.org/00f83h470', 'en', 1, 'https://ror.org/00f83h470 Surrey and Borders Partnership NHS Foundation Trust'),
(20368, 'https://ror.org/00f9r7e77', 'en', 1, 'https://ror.org/00f9r7e77 Roane State Community College'),
(20369, 'https://ror.org/00fa1k613', 'no_lang_code', 1, 'https://ror.org/00fa1k613 Wrap (United Kingdom)'),
(20370, 'https://ror.org/00fc5ew81', 'es', 1, 'https://ror.org/00fc5ew81 Universidad de la Cordillera'),
(20371, 'https://ror.org/00fdbgx35', 'en', 1, 'https://ror.org/00fdbgx35 Hospital for Tropical Diseases'),
(20372, 'https://ror.org/00ffjew77', 'no_lang_code', 1, 'https://ror.org/00ffjew77 Wiener Stadtwerke (Austria)'),
(20373, 'https://ror.org/00ffq6216', 'en', 1, 'https://ror.org/00ffq6216 Central University of Valle del Cauca Unidad Central del Valle del Cauca'),
(20374, 'https://ror.org/00ffqn037', 'en', 1, 'https://ror.org/00ffqn037 Hospital of St John & St Elizabeth'),
(20375, 'https://ror.org/00fgcap50', 'en', 1, 'https://ror.org/00fgcap50 Universidad de Belice University of Belize'),
(20376, 'https://ror.org/00fkes842', 'no_lang_code', 1, 'https://ror.org/00fkes842 Solarplan (Denmark)'),
(20377, 'https://ror.org/00fn3n594', 'es', 1, 'https://ror.org/00fn3n594 Centro Universitario Hidalguense'),
(20378, 'https://ror.org/00fp42952', 'en', 1, 'https://ror.org/00fp42952 University of Mbuji Mayi'),
(20379, 'https://ror.org/00fpcwp04', 'no_lang_code', 1, 'https://ror.org/00fpcwp04 Tessella (United Kingdom)'),
(20380, 'https://ror.org/00fr68j09', 'es', 1, 'https://ror.org/00fr68j09 Universidad Nacional Experimental del TƔchira'),
(20381, 'https://ror.org/00frndg15', 'en', 1, 'https://ror.org/00frndg15 Association des MusƩes Canadiens Canadian Museums Association'),
(20382, 'https://ror.org/00fryxp10', 'en', 1, 'https://ror.org/00fryxp10 Cymdeithas Addysg y Gweithwyr Workers Educational Association'),
(20383, 'https://ror.org/00fv12b26', 'en', 1, 'https://ror.org/00fv12b26 Nazareth Hospital'),
(20384, 'https://ror.org/00fx5h019', 'es', 1, 'https://ror.org/00fx5h019 Universidad Andina NƩstor CƔceres VelƔsquez'),
(20385, 'https://ror.org/00fxhtz28', 'no_lang_code', 1, 'https://ror.org/00fxhtz28 VORtech (Netherlands)'),
(20386, 'https://ror.org/00fyj0e42', 'pt', 1, 'https://ror.org/00fyj0e42 Universidade Braz Cubas'),
(20387, 'https://ror.org/00g0b5e28', 'no_lang_code', 1, 'https://ror.org/00g0b5e28 Engie (United Kingdom)'),
(20388, 'https://ror.org/00g1vdf17', 'en', 1, 'https://ror.org/00g1vdf17 TeamPatent'),
(20389, 'https://ror.org/00g20ky41', 'no_lang_code', 1, 'https://ror.org/00g20ky41 Vipap (Slovenia)'),
(20390, 'https://ror.org/00g342m42', 'no_lang_code', 1, 'https://ror.org/00g342m42 SVUM (Czechia)'),
(20391, 'https://ror.org/00g3ea624', 'en', 1, 'https://ror.org/00g3ea624 Bletchley Community Hospital'),
(20392, 'https://ror.org/00g56d382', 'en', 1, 'https://ror.org/00g56d382 Metec Innovation Consulting'),
(20393, 'https://ror.org/00g5nn676', 'en', 1, 'https://ror.org/00g5nn676 Phi Theta Kappa Honor Society'),
(20394, 'https://ror.org/00g7skf89', 'en', 1, 'https://ror.org/00g7skf89 Private University of Angola Universidade Privada de Angola'),
(20395, 'https://ror.org/00gb7zg29', 'en', 1, 'https://ror.org/00gb7zg29 Farm Cove Observatory'),
(20396, 'https://ror.org/00gby0d64', 'pt', 1, 'https://ror.org/00gby0d64 City University of SĆ£o Caetano do Sul Universidade Municipal de SĆ£o Caetano do Sul'),
(20397, 'https://ror.org/00gc3zx13', 'en', 1, 'https://ror.org/00gc3zx13 Ounce of Prevention Fund'),
(20398, 'https://ror.org/00gcm2421', 'es', 1, 'https://ror.org/00gcm2421 Universidad Emilio CƔrdenas'),
(20399, 'https://ror.org/00ge7mp65', 'en', 1, 'https://ror.org/00ge7mp65 Thatcham Research'),
(20400, 'https://ror.org/00gerpx08', 'no_lang_code', 1, 'https://ror.org/00gerpx08 Obducat (Sweden)'),
(20401, 'https://ror.org/00gfany95', 'en', 1, 'https://ror.org/00gfany95 Royal Agricultural Society of England'),
(20402, 'https://ror.org/00gfbsa94', 'no_lang_code', 1, 'https://ror.org/00gfbsa94 Plasma Quest (United Kingdom)'),
(20403, 'https://ror.org/00gfqxe82', 'en', 1, 'https://ror.org/00gfqxe82 Wilson Hospital'),
(20404, 'https://ror.org/00ghtc020', 'no_lang_code', 1, 'https://ror.org/00ghtc020 Data Sciences International (United States)'),
(20405, 'https://ror.org/00gjr9m44', 'en', 1, 'https://ror.org/00gjr9m44 Amridge University'),
(20406, 'https://ror.org/00gk22h75', 'en', 1, 'https://ror.org/00gk22h75 Walton Hospital'),
(20407, 'https://ror.org/00gknw275', 'en', 1, 'https://ror.org/00gknw275 Responsible Retailing Forum'),
(20408, 'https://ror.org/00gm52g34', 'es', 1, 'https://ror.org/00gm52g34 Colegio de Estudios Superiores de Administración'),
(20409, 'https://ror.org/00gmbx398', 'en', 1, 'https://ror.org/00gmbx398 Urumqi 4th People''s Hospital ä¹Œé²ęœØé½åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(20410, 'https://ror.org/00gmnqd91', 'no_lang_code', 1, 'https://ror.org/00gmnqd91 Ipsen (United Kingdom)'),
(20411, 'https://ror.org/00gpdh364', 'no_lang_code', 1, 'https://ror.org/00gpdh364 OncoMark (Ireland)'),
(20412, 'https://ror.org/00grdkt08', 'es', 1, 'https://ror.org/00grdkt08 Universidad TƩcnica de Comercio'),
(20413, 'https://ror.org/00grwm276', 'no_lang_code', 1, 'https://ror.org/00grwm276 Peptides International (United States)'),
(20414, 'https://ror.org/00gwcs664', 'no_lang_code', 1, 'https://ror.org/00gwcs664 TƩcnicas y Servicios de Ingenierƭa (Spain)'),
(20415, 'https://ror.org/00gytzf17', 'no_lang_code', 1, 'https://ror.org/00gytzf17 SMS Siemag (Germany)'),
(20416, 'https://ror.org/00h0zfe78', 'no_lang_code', 1, 'https://ror.org/00h0zfe78 Prometni institut Ljubljana'),
(20417, 'https://ror.org/00h0zws58', 'en', 1, 'https://ror.org/00h0zws58 McCord Museum MusƩe McCord'),
(20418, 'https://ror.org/00h1cg828', 'en', 1, 'https://ror.org/00h1cg828 Marlow Community Hospital'),
(20419, 'https://ror.org/00h2art69', 'fr', 1, 'https://ror.org/00h2art69 SociƩtƩ Canadienne de Science Economique'),
(20420, 'https://ror.org/00h2car28', 'en', 1, 'https://ror.org/00h2car28 Walton Community Hospital'),
(20421, 'https://ror.org/00h3hvd98', 'no_lang_code', 1, 'https://ror.org/00h3hvd98 Linamar (Canada)'),
(20422, 'https://ror.org/00h486367', 'en', 1, 'https://ror.org/00h486367 United Hospital Center'),
(20423, 'https://ror.org/00h4fan47', 'no_lang_code', 1, 'https://ror.org/00h4fan47 Tauw Group (Netherlands)'),
(20424, 'https://ror.org/00h4x2v81', 'no_lang_code', 1, 'https://ror.org/00h4x2v81 Netivei Israel (Israel) החברה ×”×œ××•×ž×™×Ŗ ×œ×“×Ø×›×™× ×‘×™×©×Ø××œ'),
(20425, 'https://ror.org/00h547294', 'pt', 1, 'https://ror.org/00h547294 Centro UniversitƔrio Euroamericano'),
(20426, 'https://ror.org/00h642n86', 'no_lang_code', 1, 'https://ror.org/00h642n86 Noterik (Netherlands)'),
(20427, 'https://ror.org/00h7v7847', 'no_lang_code', 1, 'https://ror.org/00h7v7847 Tanneries du Puy (France)'),
(20428, 'https://ror.org/00h8etg68', 'en', 1, 'https://ror.org/00h8etg68 Tavistock Hospital'),
(20429, 'https://ror.org/00hbwk525', 'en', 1, 'https://ror.org/00hbwk525 Anhanguera-Uniderp University Universidade Anhanguera Uniderp'),
(20430, 'https://ror.org/00hc1y308', 'no_lang_code', 1, 'https://ror.org/00hc1y308 VivoSight (United Kingdom)'),
(20431, 'https://ror.org/00hcsja64', 'en', 1, 'https://ror.org/00hcsja64 Allied American University'),
(20432, 'https://ror.org/00hgk2d63', 'fr', 1, 'https://ror.org/00hgk2d63 Tourisme Transports Territoires Environnement Conseil'),
(20433, 'https://ror.org/00hhvp820', 'fr', 1, 'https://ror.org/00hhvp820 UniversitƩ de Mahajanga'),
(20434, 'https://ror.org/00hj48m64', 'tr', 1, 'https://ror.org/00hj48m64 Technology Development Foundation of Turkey Turkiye Teknoloji Gelistirme Vakfi, Türkiye Teknoloji Geliştirme Vakfı'),
(20435, 'https://ror.org/00hm42c93', 'no_lang_code', 1, 'https://ror.org/00hm42c93 Sensor Developments (United States)'),
(20436, 'https://ror.org/00hmfe493', 'en', 1, 'https://ror.org/00hmfe493 Doctors Hospital of Laredo'),
(20437, 'https://ror.org/00hth7971', 'en', 1, 'https://ror.org/00hth7971 Danish Maritime Authority'),
(20438, 'https://ror.org/00htzc939', 'en', 1, 'https://ror.org/00htzc939 Crescent University'),
(20439, 'https://ror.org/00hw53j55', 'pt', 1, 'https://ror.org/00hw53j55 Escola Superior de Jornalismo'),
(20440, 'https://ror.org/00hwjda20', 'en', 1, 'https://ror.org/00hwjda20 Barking Community Hospital'),
(20441, 'https://ror.org/00hysm292', 'pt', 1, 'https://ror.org/00hysm292 Centro UniversitĆ”rio Sant’Anna'),
(20442, 'https://ror.org/00hz94r37', 'en', 1, 'https://ror.org/00hz94r37 Rolling Hills Observatory'),
(20443, 'https://ror.org/00hzf4v26', 'no_lang_code', 1, 'https://ror.org/00hzf4v26 Sermes CRO (Spain)'),
(20444, 'https://ror.org/00j0prg66', 'en', 1, 'https://ror.org/00j0prg66 TomÔs Frías Autonomous University Universidad Autónoma TomÔs Frías'),
(20445, 'https://ror.org/00j31gd42', 'pt', 1, 'https://ror.org/00j31gd42 Centro UniversitƔrio de JaraguƔ do Sul'),
(20446, 'https://ror.org/00j5cb536', 'es', 1, 'https://ror.org/00j5cb536 Universidad Tecnológica de Honduras'),
(20447, 'https://ror.org/00j6k1v44', 'fr', 1, 'https://ror.org/00j6k1v44 Institut SupƩrieur de Formation en Technologie Alimentaire'),
(20448, 'https://ror.org/00j7zhd55', 'no_lang_code', 1, 'https://ror.org/00j7zhd55 SMT Machine (Sweden)'),
(20449, 'https://ror.org/00j83d509', 'en', 1, 'https://ror.org/00j83d509 Nashua School District'),
(20450, 'https://ror.org/00j8x2c33', 'fr', 1, 'https://ror.org/00j8x2c33 Sociologie et SociƩtƩs'),
(20451, 'https://ror.org/00j91ek55', 'no_lang_code', 1, 'https://ror.org/00j91ek55 Sundew Technologies (United States)'),
(20452, 'https://ror.org/00jat8r15', 'no_lang_code', 1, 'https://ror.org/00jat8r15 VasGene Therapeutics (United States)'),
(20453, 'https://ror.org/00jb25p80', 'fr', 1, 'https://ror.org/00jb25p80 Ecole SupĆ©rieure d’Economie AppliquĆ©e'),
(20454, 'https://ror.org/00jc5t317', 'no_lang_code', 1, 'https://ror.org/00jc5t317 SKA Polska (Poland)'),
(20455, 'https://ror.org/00jcw6451', 'es', 1, 'https://ror.org/00jcw6451 Universidad Madero'),
(20456, 'https://ror.org/00je1p681', 'pt', 1, 'https://ror.org/00je1p681 Universidade da Região de Joinville'),
(20457, 'https://ror.org/00jfare13', 'es', 1, 'https://ror.org/00jfare13 Autonomous University of Manizales Universidad Autonoma de Manizales'),
(20458, 'https://ror.org/00jjtmm83', 'en', 1, 'https://ror.org/00jjtmm83 Kiriri Women''s University of Science and Technology'),
(20459, 'https://ror.org/00jkh1375', 'no_lang_code', 1, 'https://ror.org/00jkh1375 Prometheus Biosciences (United States)'),
(20460, 'https://ror.org/00jpzfk69', 'en', 1, 'https://ror.org/00jpzfk69 Kabul Education University of Rabbani ŲÆ پروفیسور برهان Ų§Ł„ŲÆŪŒŁ† Ų±ŲØŲ§Ł†ŪŒ Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų“Ł‡ŪŒŲÆ پروفیسور برهان Ų§Ł„ŲÆŪŒŁ† Ų±ŲØŲ§Ł†ŪŒ'),
(20461, 'https://ror.org/00jtt2n09', 'no_lang_code', 1, 'https://ror.org/00jtt2n09 Poeton Industries (United Kingdom)'),
(20462, 'https://ror.org/00jtwxn03', 'pt', 1, 'https://ror.org/00jtwxn03 Terra Scenica'),
(20463, 'https://ror.org/00jw4j947', 'en', 1, 'https://ror.org/00jw4j947 Bolsover Hospital');
INSERT INTO `rors` VALUES
(20464, 'https://ror.org/00jyxmj57', 'es', 1, 'https://ror.org/00jyxmj57 Universidad Westhill'),
(20465, 'https://ror.org/00k478g59', 'en', 1, 'https://ror.org/00k478g59 Bealey Community Hospital'),
(20466, 'https://ror.org/00k5x6r15', 'id', 1, 'https://ror.org/00k5x6r15 Universitas Ma Chung'),
(20467, 'https://ror.org/00k62pe27', 'en', 1, 'https://ror.org/00k62pe27 Technical University of Applied Sciences Wildau Technische Hochschule Wildau'),
(20468, 'https://ror.org/00k859c30', 'no_lang_code', 1, 'https://ror.org/00k859c30 United Biscuits (United Kingdom)'),
(20469, 'https://ror.org/00k8q6b24', 'no_lang_code', 1, 'https://ror.org/00k8q6b24 Vasade Biosciences (United States)'),
(20470, 'https://ror.org/00k9phg42', 'no_lang_code', 1, 'https://ror.org/00k9phg42 Rockwell Automation (United Kingdom)'),
(20471, 'https://ror.org/00kaped05', 'en', 1, 'https://ror.org/00kaped05 Chipping Norton War Memorial Community Hospital'),
(20472, 'https://ror.org/00kckms84', 'en', 1, 'https://ror.org/00kckms84 Tetbury Hospital'),
(20473, 'https://ror.org/00kcqj673', 'no_lang_code', 1, 'https://ror.org/00kcqj673 Grupo TTT (Spain)'),
(20474, 'https://ror.org/00kdbj440', 'no_lang_code', 1, 'https://ror.org/00kdbj440 Glencore (Canada)'),
(20475, 'https://ror.org/00kdf6750', 'no_lang_code', 1, 'https://ror.org/00kdf6750 Solidus Biosciences (United States)'),
(20476, 'https://ror.org/00kdx6519', 'no_lang_code', 1, 'https://ror.org/00kdx6519 Applied Science Laboratories (United States)'),
(20477, 'https://ror.org/00kf9rx15', 'en', 1, 'https://ror.org/00kf9rx15 West Yorkshire Police'),
(20478, 'https://ror.org/00kgv1q58', 'en', 1, 'https://ror.org/00kgv1q58 Grantham and District Hospital'),
(20479, 'https://ror.org/00kjgj482', 'no_lang_code', 1, 'https://ror.org/00kjgj482 VaxInnate (United States)'),
(20480, 'https://ror.org/00kjvy846', 'no_lang_code', 1, 'https://ror.org/00kjvy846 PolyPeptide Group (United States)'),
(20481, 'https://ror.org/00knakc29', 'no_lang_code', 1, 'https://ror.org/00knakc29 NestlƩ (United Kingdom)'),
(20482, 'https://ror.org/00knds943', 'en', 1, 'https://ror.org/00knds943 Tolworth Hospital'),
(20483, 'https://ror.org/00knefa62', 'en', 1, 'https://ror.org/00knefa62 Canadian Centre for Policy Alternatives'),
(20484, 'https://ror.org/00kqye711', 'en', 1, 'https://ror.org/00kqye711 W.E. Upjohn Institute for Employment Research'),
(20485, 'https://ror.org/00krqj642', 'es', 1, 'https://ror.org/00krqj642 Universidad Humanista de las AmƩricas'),
(20486, 'https://ror.org/00kxa2r20', 'no_lang_code', 1, 'https://ror.org/00kxa2r20 Talking Fingers (United States)'),
(20487, 'https://ror.org/00kyx8y88', 'es', 1, 'https://ror.org/00kyx8y88 Universidad del Mar'),
(20488, 'https://ror.org/00m0tz504', 'en', 1, 'https://ror.org/00m0tz504 Central University of Nicaragua Universidad Central de Nicaragua'),
(20489, 'https://ror.org/00m1cca61', 'en', 1, 'https://ror.org/00m1cca61 Milford Hospital'),
(20490, 'https://ror.org/00m448187', 'no_lang_code', 1, 'https://ror.org/00m448187 Vantage Power (United Kingdom)'),
(20491, 'https://ror.org/00m4aft17', 'fr', 1, 'https://ror.org/00m4aft17 UniversitƩ Adam Barka d''AbƩchƩ'),
(20492, 'https://ror.org/00m4tdv39', 'no_lang_code', 1, 'https://ror.org/00m4tdv39 TeselaGen Biotechnology (United States)'),
(20493, 'https://ror.org/00m4w5c43', 'no_lang_code', 1, 'https://ror.org/00m4w5c43 Novarials (United States)'),
(20494, 'https://ror.org/00m6mew50', 'hu', 1, 'https://ror.org/00m6mew50 OrszÔgos Gyógyintézeti Központ'),
(20495, 'https://ror.org/00m8adh64', 'no_lang_code', 1, 'https://ror.org/00m8adh64 Municipal Tsuruga Hospital 市立敦賀病院'),
(20496, 'https://ror.org/00m8gx614', 'no_lang_code', 1, 'https://ror.org/00m8gx614 Palomino System Innovations (Canada)'),
(20497, 'https://ror.org/00m8jfr10', 'no_lang_code', 1, 'https://ror.org/00m8jfr10 Destia'),
(20498, 'https://ror.org/00mb2j026', 'no_lang_code', 1, 'https://ror.org/00mb2j026 Zenotech (United Kingdom)'),
(20499, 'https://ror.org/00mbjzh15', 'no_lang_code', 1, 'https://ror.org/00mbjzh15 Montana Molecular (United States)'),
(20500, 'https://ror.org/00mcdb425', 'no_lang_code', 1, 'https://ror.org/00mcdb425 HeidelbergCement (Norway)'),
(20501, 'https://ror.org/00mehg084', 'no_lang_code', 1, 'https://ror.org/00mehg084 Spectris (United States)'),
(20502, 'https://ror.org/00mkdrs62', 'es', 1, 'https://ror.org/00mkdrs62 Universidad PolitƩcnica y Artƭstica del Paraguay'),
(20503, 'https://ror.org/00mn36586', 'en', 1, 'https://ror.org/00mn36586 Alberta College of Art + Design'),
(20504, 'https://ror.org/00mn8c655', 'en', 1, 'https://ror.org/00mn8c655 Open University of Mauritius'),
(20505, 'https://ror.org/00mp5cm68', 'en', 1, 'https://ror.org/00mp5cm68 Arrowe Park Hospital'),
(20506, 'https://ror.org/00mq34s35', 'es', 1, 'https://ror.org/00mq34s35 Universidad de Los Altos de Chiapas'),
(20507, 'https://ror.org/00ms25z94', 'no_lang_code', 1, 'https://ror.org/00ms25z94 Wates (United Kingdom)'),
(20508, 'https://ror.org/00ms2t790', 'en', 1, 'https://ror.org/00ms2t790 Moorpark College'),
(20509, 'https://ror.org/00mseky10', 'no_lang_code', 1, 'https://ror.org/00mseky10 Sequoia Environmental Remediation (Canada)'),
(20510, 'https://ror.org/00mt2q647', 'no_lang_code', 1, 'https://ror.org/00mt2q647 Nimesis Technology (France)'),
(20511, 'https://ror.org/00mxv8r67', 'en', 1, 'https://ror.org/00mxv8r67 Latvijas Nacionālā bibliotēka National Library of Latvia'),
(20512, 'https://ror.org/00my1td19', 'en', 1, 'https://ror.org/00my1td19 En''owkin Centre'),
(20513, 'https://ror.org/00n0m9p12', 'en', 1, 'https://ror.org/00n0m9p12 The Acre'),
(20514, 'https://ror.org/00n293x32', 'en', 1, 'https://ror.org/00n293x32 Clay Cross Hospital'),
(20515, 'https://ror.org/00n2m9w05', 'no_lang_code', 1, 'https://ror.org/00n2m9w05 ProBiotix (United States)'),
(20516, 'https://ror.org/00n2vs911', 'en', 1, 'https://ror.org/00n2vs911 Newton Abbot Community Hospital'),
(20517, 'https://ror.org/00n4nbk77', 'en', 1, 'https://ror.org/00n4nbk77 National Archives of Estonia Rahvusarhiiv'),
(20518, 'https://ror.org/00n7jqz22', 'no_lang_code', 1, 'https://ror.org/00n7jqz22 Sagentia (United Kingdom)'),
(20519, 'https://ror.org/00n7m6g17', 'es', 1, 'https://ror.org/00n7m6g17 Institución Universitaria Politecnico Grancolombiano, Politécnico Grancolombiano'),
(20520, 'https://ror.org/00n7n3773', 'en', 1, 'https://ror.org/00n7n3773 Ecole Nationale d''Architecture National School of Architecture المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للهندسة Ų§Ł„Ł…Ų¹Ł…Ų§Ų±ŁŠŲ©'),
(20521, 'https://ror.org/00n7se427', 'no_lang_code', 1, 'https://ror.org/00n7se427 NeuroSigma (United States)'),
(20522, 'https://ror.org/00n93ay28', 'no_lang_code', 1, 'https://ror.org/00n93ay28 RR Donnelley (United States)'),
(20523, 'https://ror.org/00n974j89', 'en', 1, 'https://ror.org/00n974j89 St Charles Hospital'),
(20524, 'https://ror.org/00narfz77', 'en', 1, 'https://ror.org/00narfz77 New Mexico Museum of Natural History and Science'),
(20525, 'https://ror.org/00nb2fk45', 'no_lang_code', 1, 'https://ror.org/00nb2fk45 RiNA (Germany)'),
(20526, 'https://ror.org/00ncdw424', 'en', 1, 'https://ror.org/00ncdw424 Southlands Hospital'),
(20527, 'https://ror.org/00ncqx842', 'en', 1, 'https://ror.org/00ncqx842 Seowon University ģ„œģ›ėŒ€ķ•™źµ'),
(20528, 'https://ror.org/00nct2329', 'en', 1, 'https://ror.org/00nct2329 New Epsom and Ewell Community Hospital'),
(20529, 'https://ror.org/00nd98w52', 'en', 1, 'https://ror.org/00nd98w52 Canadian Arthritis Network'),
(20530, 'https://ror.org/00nfht809', 'en', 1, 'https://ror.org/00nfht809 Association Canadienne de Justice PƩnale Canadian Criminal Justice Association'),
(20531, 'https://ror.org/00njayd33', 'no_lang_code', 1, 'https://ror.org/00njayd33 Omax (United States)'),
(20532, 'https://ror.org/00njxm476', 'es', 1, 'https://ror.org/00njxm476 Universidad Popular Autónoma del Estado de Puebla'),
(20533, 'https://ror.org/00nk1fh63', 'no_lang_code', 1, 'https://ror.org/00nk1fh63 TBZ PARIV (Germany)'),
(20534, 'https://ror.org/00nk33e27', 'no_lang_code', 1, 'https://ror.org/00nk33e27 X-Treme Creations (Netherlands)'),
(20535, 'https://ror.org/00nmq1179', 'en', 1, 'https://ror.org/00nmq1179 Ndejje University'),
(20536, 'https://ror.org/00nmyjn66', 'no_lang_code', 1, 'https://ror.org/00nmyjn66 iTelescope.Net'),
(20537, 'https://ror.org/00nn34t03', 'no_lang_code', 1, 'https://ror.org/00nn34t03 Innovation Ecology (Israel)'),
(20538, 'https://ror.org/00npj8037', 'en', 1, 'https://ror.org/00npj8037 Paddocks Hospital'),
(20539, 'https://ror.org/00nrr4d03', 'es', 1, 'https://ror.org/00nrr4d03 Universidad de CuautitlƔn Izcalli'),
(20540, 'https://ror.org/00nsta845', 'no_lang_code', 1, 'https://ror.org/00nsta845 Sico Technology (Austria)'),
(20541, 'https://ror.org/00nwez256', 'no_lang_code', 1, 'https://ror.org/00nwez256 Sviluppo Toscana (Italy)'),
(20542, 'https://ror.org/00nx2d878', 'en', 1, 'https://ror.org/00nx2d878 Mount Washington Observatory'),
(20543, 'https://ror.org/00nxhsa79', 'pt', 1, 'https://ror.org/00nxhsa79 Centro UniversitÔrio da Fundação de Ensino OctÔvio Bastos'),
(20544, 'https://ror.org/00nyxpe17', 'en', 1, 'https://ror.org/00nyxpe17 Hokkaido Information University åŒ—ęµ·é“ęƒ…å ±å¤§å­¦'),
(20545, 'https://ror.org/00p15zq72', 'en', 1, 'https://ror.org/00p15zq72 Okanagan Science Centre'),
(20546, 'https://ror.org/00p1j0r66', 'pt', 1, 'https://ror.org/00p1j0r66 ColƩgio Metodista Bennett'),
(20547, 'https://ror.org/00p1jee13', 'en', 1, 'https://ror.org/00p1jee13 Fuyang City People''s Hospital ęæ®é˜³åø‚äŗŗę°‘åŒ»é™¢'),
(20548, 'https://ror.org/00p4jn321', 'en', 1, 'https://ror.org/00p4jn321 Sudan International University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(20549, 'https://ror.org/00p5pgq41', 'en', 1, 'https://ror.org/00p5pgq41 Elmleigh Hospital'),
(20550, 'https://ror.org/00p5rpb50', 'no_lang_code', 1, 'https://ror.org/00p5rpb50 Synapse Biomedical (United States)'),
(20551, 'https://ror.org/00p6q5476', 'en', 1, 'https://ror.org/00p6q5476 Queen Elizabeth Hospital'),
(20552, 'https://ror.org/00p7b2q74', 'no_lang_code', 1, 'https://ror.org/00p7b2q74 Tunitas Therapeutics (United States)'),
(20553, 'https://ror.org/00p8msr48', 'en', 1, 'https://ror.org/00p8msr48 Chuo Kikuu cha Mtakatifu Agostino Tanzania St. Augustine University of Tanzania'),
(20554, 'https://ror.org/00p9b8g15', 'no_lang_code', 1, 'https://ror.org/00p9b8g15 Shellcase (Israel)'),
(20555, 'https://ror.org/00pb1mx67', 'en', 1, 'https://ror.org/00pb1mx67 Spire Hull and East Riding Hospital'),
(20556, 'https://ror.org/00pbka429', 'no_lang_code', 1, 'https://ror.org/00pbka429 NETvisor (Hungary)'),
(20557, 'https://ror.org/00pcpzq46', 'en', 1, 'https://ror.org/00pcpzq46 Danish Meat Trade College'),
(20558, 'https://ror.org/00pd4qq98', 'fr', 1, 'https://ror.org/00pd4qq98 UniversitĆ© d’Antsiranana'),
(20559, 'https://ror.org/00pefpf42', 'no_lang_code', 1, 'https://ror.org/00pefpf42 RH Lyon (United States)'),
(20560, 'https://ror.org/00pew5z05', 'no_lang_code', 1, 'https://ror.org/00pew5z05 Vicon (United Kingdom)'),
(20561, 'https://ror.org/00pf6z250', 'en', 1, 'https://ror.org/00pf6z250 Knutsford and District Community Hospital'),
(20562, 'https://ror.org/00phhaz14', 'no_lang_code', 1, 'https://ror.org/00phhaz14 Rizzo International (United States)'),
(20563, 'https://ror.org/00pk39639', 'en', 1, 'https://ror.org/00pk39639 Canadian Centre for Community Renewal'),
(20564, 'https://ror.org/00pmf8m46', 'no_lang_code', 1, 'https://ror.org/00pmf8m46 Neuro Kinetics (United States)'),
(20565, 'https://ror.org/00pn7nn48', 'no_lang_code', 1, 'https://ror.org/00pn7nn48 Office Public d''Aménagement et de Construction de l''Isère (France)'),
(20566, 'https://ror.org/00pnzak35', 'no_lang_code', 1, 'https://ror.org/00pnzak35 Victrex (United Kingdom)'),
(20567, 'https://ror.org/00ppcg417', 'en', 1, 'https://ror.org/00ppcg417 Congress of Aboriginal Peoples'),
(20568, 'https://ror.org/00pprbn54', 'no_lang_code', 1, 'https://ror.org/00pprbn54 Newomics (United States)'),
(20569, 'https://ror.org/00pt67k84', 'en', 1, 'https://ror.org/00pt67k84 University of Nouakchott Al Aasriya UniversitĆ© de Nouakchott Al Aasriya Ų¬Ų§Ł…Ų¹Ų© Ł†ŁˆŲ§ŁƒŲ“ŁˆŲ·'),
(20570, 'https://ror.org/00pz2dk38', 'en', 1, 'https://ror.org/00pz2dk38 Orange Coast College'),
(20571, 'https://ror.org/00q2cvp40', 'en', 1, 'https://ror.org/00q2cvp40 Cheshunt Minor Injuries Unit'),
(20572, 'https://ror.org/00q2rr681', 'no_lang_code', 1, 'https://ror.org/00q2rr681 Nuvation (Canada)'),
(20573, 'https://ror.org/00q3p9p08', 'en', 1, 'https://ror.org/00q3p9p08 Suizhou Central Hospital éšå·žåø‚äø­åæƒåŒ»é™¢'),
(20574, 'https://ror.org/00q7btw65', 'en', 1, 'https://ror.org/00q7btw65 Prevention Connections'),
(20575, 'https://ror.org/00qasm074', 'no_lang_code', 1, 'https://ror.org/00qasm074 Skyworks Solutions (United Kingdom)'),
(20576, 'https://ror.org/00qbkg805', 'en', 1, 'https://ror.org/00qbkg805 Cabrini Hospital'),
(20577, 'https://ror.org/00qd4hy53', 'en', 1, 'https://ror.org/00qd4hy53 Southwest Virginia Community College'),
(20578, 'https://ror.org/00qfm6q04', 'en', 1, 'https://ror.org/00qfm6q04 Pennsylvania Department of Drug and Alcohol Programs'),
(20579, 'https://ror.org/00qfxgm20', 'es', 1, 'https://ror.org/00qfxgm20 Universidad Real'),
(20580, 'https://ror.org/00qhqx688', 'no_lang_code', 1, 'https://ror.org/00qhqx688 Ursit (Bulgaria)'),
(20581, 'https://ror.org/00qj1mf81', 'no_lang_code', 1, 'https://ror.org/00qj1mf81 Schulman, Ronca & Bucuvalas'),
(20582, 'https://ror.org/00qjwgg65', 'en', 1, 'https://ror.org/00qjwgg65 Value-Driven Design Institute'),
(20583, 'https://ror.org/00qm7b611', 'en', 1, 'https://ror.org/00qm7b611 Alexandria Higher Institute of Engineering and Technology معهد Ų§Ł„Ų§Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ© العالى للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(20584, 'https://ror.org/00qmq1337', 'en', 1, 'https://ror.org/00qmq1337 Stiftung Verum Verum - Foundation for Behaviour and Environment'),
(20585, 'https://ror.org/00qnmxq60', 'es', 1, 'https://ror.org/00qnmxq60 Hospital de La Ribera'),
(20586, 'https://ror.org/00qnqcd72', 'no_lang_code', 1, 'https://ror.org/00qnqcd72 Vorwerk (Germany)'),
(20587, 'https://ror.org/00qnt7d66', 'no_lang_code', 1, 'https://ror.org/00qnt7d66 Photometrics (United States)'),
(20588, 'https://ror.org/00qq0vj26', 'no_lang_code', 1, 'https://ror.org/00qq0vj26 Paraytec (United Kingdom)'),
(20589, 'https://ror.org/00qq5ag78', 'no_lang_code', 1, 'https://ror.org/00qq5ag78 Sociedad Anónima Industrias Celulosa Aragonesa (Spain)'),
(20590, 'https://ror.org/00qs3ke40', 'no_lang_code', 1, 'https://ror.org/00qs3ke40 Ecolyse (United States)'),
(20591, 'https://ror.org/00qseeb08', 'es', 1, 'https://ror.org/00qseeb08 Universidad Nacional Experimental de Guayana'),
(20592, 'https://ror.org/00qsw2f44', 'no_lang_code', 1, 'https://ror.org/00qsw2f44 Industrins Kraft Abp Teollisuuden Voima (Finland)'),
(20593, 'https://ror.org/00qtapa42', 'pt', 1, 'https://ror.org/00qtapa42 Centro UniversitÔrio Barão de MauÔ'),
(20594, 'https://ror.org/00qthcq23', 'no_lang_code', 1, 'https://ror.org/00qthcq23 Talent Systems (Greece)'),
(20595, 'https://ror.org/00qvg6x21', 'en', 1, 'https://ror.org/00qvg6x21 Molecular Medicine Ireland'),
(20596, 'https://ror.org/00qx46v42', 'en', 1, 'https://ror.org/00qx46v42 Bispham Hospital'),
(20597, 'https://ror.org/00qzyfa72', 'en', 1, 'https://ror.org/00qzyfa72 Native American Management Services'),
(20598, 'https://ror.org/00r0rx657', 'fr', 1, 'https://ror.org/00r0rx657 Centre Universitaire de Tamanrasset Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ تمنراست'),
(20599, 'https://ror.org/00r1erk38', 'no_lang_code', 1, 'https://ror.org/00r1erk38 MultiD Analyses (Sweden)'),
(20600, 'https://ror.org/00r54sf44', 'es', 1, 'https://ror.org/00r54sf44 Universidad de Morón'),
(20601, 'https://ror.org/00r5ys630', 'en', 1, 'https://ror.org/00r5ys630 Amberstone Hospital'),
(20602, 'https://ror.org/00r6gb998', 'en', 1, 'https://ror.org/00r6gb998 Chalfonts and Gerrards Cross Hospital'),
(20603, 'https://ror.org/00r8rhe65', 'en', 1, 'https://ror.org/00r8rhe65 Progressive Life Center'),
(20604, 'https://ror.org/00r8xnn14', 'es', 1, 'https://ror.org/00r8xnn14 Instituto Guillermo Subercaseaux'),
(20605, 'https://ror.org/00racmn62', 'no_lang_code', 1, 'https://ror.org/00racmn62 Schneider Electric (United Kingdom)'),
(20606, 'https://ror.org/00rd5z074', 'en', 1, 'https://ror.org/00rd5z074 Fifth Hospital of Shijiazhuang'),
(20607, 'https://ror.org/00rdvc274', 'no_lang_code', 1, 'https://ror.org/00rdvc274 Metec (Germany)'),
(20608, 'https://ror.org/00rg18f40', 'en', 1, 'https://ror.org/00rg18f40 BC Studies'),
(20609, 'https://ror.org/00rgatc64', 'en', 1, 'https://ror.org/00rgatc64 Kamloops Art Gallery'),
(20610, 'https://ror.org/00rghrr56', 'en', 1, 'https://ror.org/00rghrr56 Kochi University of Technology é«˜ēŸ„å·„ē§‘å¤§å­¦'),
(20611, 'https://ror.org/00rhh8s91', 'no_lang_code', 1, 'https://ror.org/00rhh8s91 Wallenius Lines (Sweden)'),
(20612, 'https://ror.org/00rkfyy45', 'en', 1, 'https://ror.org/00rkfyy45 Ohio Valley University UniversitƩ de la vallƩe de l''ohio'),
(20613, 'https://ror.org/00rm12d62', 'no_lang_code', 1, 'https://ror.org/00rm12d62 Stena (Sweden)'),
(20614, 'https://ror.org/00rnxjt19', 'no_lang_code', 1, 'https://ror.org/00rnxjt19 Federation of Norwegian Industries Norsk Industri (Norway)'),
(20615, 'https://ror.org/00rp9y493', 'en', 1, 'https://ror.org/00rp9y493 Rutherford + Chekene'),
(20616, 'https://ror.org/00rpjcd45', 'pt', 1, 'https://ror.org/00rpjcd45 Centro UniversitƔrio de VƔrzea Grande'),
(20617, 'https://ror.org/00rqys923', 'en', 1, 'https://ror.org/00rqys923 Victoria Community Hospital'),
(20618, 'https://ror.org/00rskqs20', 'no_lang_code', 1, 'https://ror.org/00rskqs20 Nuvera (Italy)'),
(20619, 'https://ror.org/00rtryt44', 'no_lang_code', 1, 'https://ror.org/00rtryt44 Nzytech (Portugal)'),
(20620, 'https://ror.org/00rxcsz93', 'fr', 1, 'https://ror.org/00rxcsz93 UniversitƩ PrivƩe du Sud'),
(20621, 'https://ror.org/00ryba775', 'en', 1, 'https://ror.org/00ryba775 Yellowhawk Tribal Health Center'),
(20622, 'https://ror.org/00rzjv003', 'en', 1, 'https://ror.org/00rzjv003 Stretford Memorial Hospital'),
(20623, 'https://ror.org/00s35gs08', 'no_lang_code', 1, 'https://ror.org/00s35gs08 Couniniotis Group (Greece)'),
(20624, 'https://ror.org/00s6c1066', 'en', 1, 'https://ror.org/00s6c1066 NanoImaging Services'),
(20625, 'https://ror.org/00s6gwy34', 'no_lang_code', 1, 'https://ror.org/00s6gwy34 Team Neurodynamics (United States)'),
(20626, 'https://ror.org/00s730510', 'no_lang_code', 1, 'https://ror.org/00s730510 Soitec (France)'),
(20627, 'https://ror.org/00s7jmd98', 'en', 1, 'https://ror.org/00s7jmd98 Hunan University of Humanities, Science and Technology ę¹–å—äŗŗę–‡ē§‘ęŠ€å­¦é™¢'),
(20628, 'https://ror.org/00s9rtw68', 'en', 1, 'https://ror.org/00s9rtw68 Peasley Cross Hospital'),
(20629, 'https://ror.org/00sa21z63', 'no_lang_code', 1, 'https://ror.org/00sa21z63 Rapport (United States)'),
(20630, 'https://ror.org/00sag0k61', 'en', 1, 'https://ror.org/00sag0k61 North American Association for Environmental Education'),
(20631, 'https://ror.org/00sb61x57', 'es', 1, 'https://ror.org/00sb61x57 Universidad Lucerna'),
(20632, 'https://ror.org/00sdawg68', 'en', 1, 'https://ror.org/00sdawg68 Stardome Observatory'),
(20633, 'https://ror.org/00se0qw52', 'en', 1, 'https://ror.org/00se0qw52 Canadian Society for Digital Humanities SociƩtƩ Canadienne pour les HumanitƩs NumƩriques.'),
(20634, 'https://ror.org/00se67j64', 'en', 1, 'https://ror.org/00se67j64 Ehime Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ ę„›åŖ›åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(20635, 'https://ror.org/00sfq3g82', 'it', 1, 'https://ror.org/00sfq3g82 Sinform'),
(20636, 'https://ror.org/00sh40694', 'no_lang_code', 1, 'https://ror.org/00sh40694 RÔdio e Televisão de Portugal (Portugal)'),
(20637, 'https://ror.org/00sh7p618', 'en', 1, 'https://ror.org/00sh7p618 Croydon Health Services NHS Trust'),
(20638, 'https://ror.org/00shp5a81', 'no_lang_code', 1, 'https://ror.org/00shp5a81 Rapanelli Fioravante (Italy)'),
(20639, 'https://ror.org/00skbbq95', 'sv', 1, 'https://ror.org/00skbbq95 LantmƤteriet Swedish National Land Survey'),
(20640, 'https://ror.org/00skx0050', 'en', 1, 'https://ror.org/00skx0050 Canadian Association for Graduate Studies'),
(20641, 'https://ror.org/00smnxt90', 'no_lang_code', 1, 'https://ror.org/00smnxt90 pH Matter (United States)'),
(20642, 'https://ror.org/00sn5j281', 'no_lang_code', 1, 'https://ror.org/00sn5j281 Move Entwicklungs Infrastruktur und Service (Germany)'),
(20643, 'https://ror.org/00sp59e90', 'no_lang_code', 1, 'https://ror.org/00sp59e90 Toscana Biomarkers (Italy)'),
(20644, 'https://ror.org/00spvm362', 'no_lang_code', 1, 'https://ror.org/00spvm362 ORME (France)'),
(20645, 'https://ror.org/00sr40296', 'no_lang_code', 1, 'https://ror.org/00sr40296 Tangshan Gongren Hospital'),
(20646, 'https://ror.org/00sv59x24', 'no_lang_code', 1, 'https://ror.org/00sv59x24 Warburtons (United Kingdom)'),
(20647, 'https://ror.org/00swtqd36', 'en', 1, 'https://ror.org/00swtqd36 Vale Community Hospital'),
(20648, 'https://ror.org/00sy2m382', 'es', 1, 'https://ror.org/00sy2m382 Instituto Universitario Escuela Superior de Economía y Administración de Empresas'),
(20649, 'https://ror.org/00t0mzb74', 'fr', 1, 'https://ror.org/00t0mzb74 UniversitƩ de Hearst'),
(20650, 'https://ror.org/00t0n4y22', 'no_lang_code', 1, 'https://ror.org/00t0n4y22 PaneraTech (United States)'),
(20651, 'https://ror.org/00t6yq161', 'no_lang_code', 1, 'https://ror.org/00t6yq161 Powerline Technologies (United Kingdom)'),
(20652, 'https://ror.org/00t7chh67', 'fr', 1, 'https://ror.org/00t7chh67 Institut Facultaire des Sciences de l''Information et de la Communication'),
(20653, 'https://ror.org/00t7nkj63', 'no_lang_code', 1, 'https://ror.org/00t7nkj63 Ashmore Energy International (United Kingdom)'),
(20654, 'https://ror.org/00t93jj79', 'en', 1, 'https://ror.org/00t93jj79 Wuhu Fourth People Hospital čŠœę¹–åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(20655, 'https://ror.org/00taf6c38', 'es', 1, 'https://ror.org/00taf6c38 Instituto Superior de Formación Docente Salomé Ureña'),
(20656, 'https://ror.org/00tcvgn28', 'en', 1, 'https://ror.org/00tcvgn28 Oregon Coast Community College'),
(20657, 'https://ror.org/00te64c61', 'pt', 1, 'https://ror.org/00te64c61 Universidade Tuiuti do ParanĆ”'),
(20658, 'https://ror.org/00tfjp359', 'pt', 1, 'https://ror.org/00tfjp359 Centro UniversitƔrio Leonardo da Vinci'),
(20659, 'https://ror.org/00tgz5618', 'en', 1, 'https://ror.org/00tgz5618 Cockermouth Community Hospital'),
(20660, 'https://ror.org/00tnac320', 'fr', 1, 'https://ror.org/00tnac320 UniversitƩ Larbi TƩbessi'),
(20661, 'https://ror.org/00tnb2p82', 'es', 1, 'https://ror.org/00tnb2p82 Universidad de Morelia University of Morelia'),
(20662, 'https://ror.org/00tq70902', 'en', 1, 'https://ror.org/00tq70902 Finchley Memorial Hospital'),
(20663, 'https://ror.org/00tsqpx02', 'no_lang_code', 1, 'https://ror.org/00tsqpx02 VocaLink (United Kingdom)'),
(20664, 'https://ror.org/00tsxbx86', 'es', 1, 'https://ror.org/00tsxbx86 Universidad Interamericana para el Desarrollo'),
(20665, 'https://ror.org/00tsz2810', 'no_lang_code', 1, 'https://ror.org/00tsz2810 Affini Technology (United Kingdom)'),
(20666, 'https://ror.org/00tt5kf04', 'en', 1, 'https://ror.org/00tt5kf04 Marien Ngouabi University UniversitƩ Marien Ngouabi'),
(20667, 'https://ror.org/00ttbwp87', 'pt', 1, 'https://ror.org/00ttbwp87 Universidade SĆ£o Judas Tadeu'),
(20668, 'https://ror.org/00tww8m46', 'no_lang_code', 1, 'https://ror.org/00tww8m46 Next Ingegneria dei Sistemi (Italy)'),
(20669, 'https://ror.org/00txsqk22', 'en', 1, 'https://ror.org/00txsqk22 Universidad ViƱa del Mar ViƱa del Mar University'),
(20670, 'https://ror.org/00tymhf19', 'en', 1, 'https://ror.org/00tymhf19 Technology Innovation International'),
(20671, 'https://ror.org/00v11es25', 'fr', 1, 'https://ror.org/00v11es25 Ɖcole Nationale d''Administration'),
(20672, 'https://ror.org/00v13f844', 'fr', 1, 'https://ror.org/00v13f844 Institut SupĆ©rieur d’Art Dramatique et d’Animation Culturelle'),
(20673, 'https://ror.org/00v2tva64', 'es', 1, 'https://ror.org/00v2tva64 Centro de Estudios Universitarios de Baja California'),
(20674, 'https://ror.org/00v2w0a04', 'en', 1, 'https://ror.org/00v2w0a04 Polk State College'),
(20675, 'https://ror.org/00v60f727', 'en', 1, 'https://ror.org/00v60f727 Conference Board of Canada Le Conference Board du Canada'),
(20676, 'https://ror.org/00v6srm21', 'no_lang_code', 1, 'https://ror.org/00v6srm21 PBLH International Consulting'),
(20677, 'https://ror.org/00v7w6310', 'no_lang_code', 1, 'https://ror.org/00v7w6310 Questel (France)'),
(20678, 'https://ror.org/00v8f0m76', 'no_lang_code', 1, 'https://ror.org/00v8f0m76 Accenture (Italy)'),
(20679, 'https://ror.org/00v9kaj80', 'es', 1, 'https://ror.org/00v9kaj80 Universidad MƩxico ContemporƔneo'),
(20680, 'https://ror.org/00v9tt762', 'no_lang_code', 1, 'https://ror.org/00v9tt762 Telefónica (United Kingdom)'),
(20681, 'https://ror.org/00vbbfz92', 'en', 1, 'https://ror.org/00vbbfz92 Welding Research Institute - Industrial Institute SR'),
(20682, 'https://ror.org/00vc2nm91', 'en', 1, 'https://ror.org/00vc2nm91 Higher Institute on Territorial Systems for Innovation Istituto Superiore sui Sistemi Territoriali per l’Innovazione'),
(20683, 'https://ror.org/00vcz1s14', 'no_lang_code', 1, 'https://ror.org/00vcz1s14 Turner Designs (United States)'),
(20684, 'https://ror.org/00vfhjf66', 'no_lang_code', 1, 'https://ror.org/00vfhjf66 Vihorlat Observatory VihorlatskÔ hvezdÔreň'),
(20685, 'https://ror.org/00vfxd102', 'pt', 1, 'https://ror.org/00vfxd102 Instituto Metodista Izabela Hendrix'),
(20686, 'https://ror.org/00vgek070', 'en', 1, 'https://ror.org/00vgek070 Jilin Province Tumor Hospital å‰ęž—ēœč‚æē˜¤åŒ»é™¢'),
(20687, 'https://ror.org/00vgt4p82', 'no_lang_code', 1, 'https://ror.org/00vgt4p82 Center for Innovation and Technology Zentrum für Innovation und Technik in Nordrhein-Westfalen'),
(20688, 'https://ror.org/00vh0dr83', 'es', 1, 'https://ror.org/00vh0dr83 Universidad Salesiana de Bolivia'),
(20689, 'https://ror.org/00vnste75', 'en', 1, 'https://ror.org/00vnste75 Galen University Universidad de Galen'),
(20690, 'https://ror.org/00vnvj755', 'no_lang_code', 1, 'https://ror.org/00vnvj755 Simmetrix (United States)'),
(20691, 'https://ror.org/00vqfx781', 'no_lang_code', 1, 'https://ror.org/00vqfx781 Systran (France)'),
(20692, 'https://ror.org/00vr8yd88', 'no_lang_code', 1, 'https://ror.org/00vr8yd88 Oragenics (United States)'),
(20693, 'https://ror.org/00vr94b03', 'de', 1, 'https://ror.org/00vr94b03 Katholisches Klinikum Lünen/Werne , St.-Marien-Hospital Lünen'),
(20694, 'https://ror.org/00vspj326', 'no_lang_code', 1, 'https://ror.org/00vspj326 Plantechno (Italy)'),
(20695, 'https://ror.org/00vtwt580', 'pt', 1, 'https://ror.org/00vtwt580 Centro UniversitÔrio Adventista de São Paulo'),
(20696, 'https://ror.org/00vvmxh39', 'en', 1, 'https://ror.org/00vvmxh39 Bugshan Hospital مستؓفى بقؓان'),
(20697, 'https://ror.org/00vww8g40', 'fr', 1, 'https://ror.org/00vww8g40 Centre Universitaire de LabƩ'),
(20698, 'https://ror.org/00vyjaz76', 'pt', 1, 'https://ror.org/00vyjaz76 Universidade Jean Piaget de MoƧambique'),
(20699, 'https://ror.org/00vz50m28', 'en', 1, 'https://ror.org/00vz50m28 Zambian Open University'),
(20700, 'https://ror.org/00vzfja08', 'en', 1, 'https://ror.org/00vzfja08 Vermont Agency of Education'),
(20701, 'https://ror.org/00w0dbz25', 'no_lang_code', 1, 'https://ror.org/00w0dbz25 Sherbrooke O.E.M (Canada)'),
(20702, 'https://ror.org/00w0dra04', 'no_lang_code', 1, 'https://ror.org/00w0dra04 NanoMEMS Research (United States)'),
(20703, 'https://ror.org/00w0e7243', 'en', 1, 'https://ror.org/00w0e7243 Renz Addiction Counseling Center'),
(20704, 'https://ror.org/00w31we65', 'no_lang_code', 1, 'https://ror.org/00w31we65 Talisman (United States)'),
(20705, 'https://ror.org/00w3adw05', 'no_lang_code', 1, 'https://ror.org/00w3adw05 Ramboll (Denmark)'),
(20706, 'https://ror.org/00w62r976', 'en', 1, 'https://ror.org/00w62r976 Briar Cliff University'),
(20707, 'https://ror.org/00w84v084', 'no_lang_code', 1, 'https://ror.org/00w84v084 PSA (United States)'),
(20708, 'https://ror.org/00w8szr09', 'no_lang_code', 1, 'https://ror.org/00w8szr09 NanoTecCenter Weiz Forschungsgesellschaft (Austria)'),
(20709, 'https://ror.org/00w940402', 'no_lang_code', 1, 'https://ror.org/00w940402 MuthƩn & MuthƩn (United States)'),
(20710, 'https://ror.org/00w9htx78', 'en', 1, 'https://ror.org/00w9htx78 Mount Vernon Hospital'),
(20711, 'https://ror.org/00w9tyd30', 'en', 1, 'https://ror.org/00w9tyd30 Devizes Community Hospital'),
(20712, 'https://ror.org/00wb3z218', 'no_lang_code', 1, 'https://ror.org/00wb3z218 MammaCare (United States)'),
(20713, 'https://ror.org/00wf4pt88', 'en', 1, 'https://ror.org/00wf4pt88 Management Sciences for Health'),
(20714, 'https://ror.org/00wjxpj07', 'en', 1, 'https://ror.org/00wjxpj07 Union County College'),
(20715, 'https://ror.org/00wkvq828', 'en', 1, 'https://ror.org/00wkvq828 Osborne Association'),
(20716, 'https://ror.org/00wpr8n40', 'en', 1, 'https://ror.org/00wpr8n40 Morpeth Cottage Hospital'),
(20717, 'https://ror.org/00wpwke06', 'en', 1, 'https://ror.org/00wpwke06 wfk - Cleaning Technology Institute'),
(20718, 'https://ror.org/00wrevg56', 'en', 1, 'https://ror.org/00wrevg56 University College Hospital'),
(20719, 'https://ror.org/00wrkkt81', 'no_lang_code', 1, 'https://ror.org/00wrkkt81 Kemrock Industries And Exports (Italy)'),
(20720, 'https://ror.org/00wtp2z59', 'en', 1, 'https://ror.org/00wtp2z59 Palestinian Energy and Environment Research Center'),
(20721, 'https://ror.org/00wv4gv48', 'no_lang_code', 1, 'https://ror.org/00wv4gv48 Quick Reaction Corporation (United States)'),
(20722, 'https://ror.org/00wwfjc16', 'no_lang_code', 1, 'https://ror.org/00wwfjc16 Singleton Birch (United Kingdom)'),
(20723, 'https://ror.org/00wx3ns38', 'fr', 1, 'https://ror.org/00wx3ns38 Institut SupĆ©rieur d''Ɖtudes Maritimes المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲØŲ­Ų±ŁŠŲ©'),
(20724, 'https://ror.org/00wydr975', 'en', 1, 'https://ror.org/00wydr975 Northwest Women''s and Children''s Hospital č„æåŒ—å¦‡å„³å„æē«„åŒ»é™¢'),
(20725, 'https://ror.org/00wyga863', 'no_lang_code', 1, 'https://ror.org/00wyga863 Nanoforce Technology (United Kingdom)'),
(20726, 'https://ror.org/00wz3h896', 'no_lang_code', 1, 'https://ror.org/00wz3h896 RedZinc (Ireland)'),
(20727, 'https://ror.org/00wz8ne48', 'no_lang_code', 1, 'https://ror.org/00wz8ne48 Zipalog (United States)'),
(20728, 'https://ror.org/00wzhk182', 'en', 1, 'https://ror.org/00wzhk182 American University of Health Sciences'),
(20729, 'https://ror.org/00x0j8257', 'en', 1, 'https://ror.org/00x0j8257 Goodmayes Hospital'),
(20730, 'https://ror.org/00x37ty92', 'en', 1, 'https://ror.org/00x37ty92 Student Biotechnology Network'),
(20731, 'https://ror.org/00x444s43', 'en', 1, 'https://ror.org/00x444s43 Homerton University Hospital'),
(20732, 'https://ror.org/00x4mmh13', 'no_lang_code', 1, 'https://ror.org/00x4mmh13 Nonwovens Innovation & Research Institute'),
(20733, 'https://ror.org/00x4mq261', 'fr', 1, 'https://ror.org/00x4mq261 Ɖcole Nationale d''Administration'),
(20734, 'https://ror.org/00x51ts23', 'pt', 1, 'https://ror.org/00x51ts23 Centro UniversitƔrio Campos de Andrade'),
(20735, 'https://ror.org/00x6k0023', 'es', 1, 'https://ror.org/00x6k0023 Corporación Educativa del Litoral'),
(20736, 'https://ror.org/00x6s3a91', 'en', 1, 'https://ror.org/00x6s3a91 Saint Gƶran Hospital Sankt Gƶrans sjukhus'),
(20737, 'https://ror.org/00x76st93', 'es', 1, 'https://ror.org/00x76st93 Universidad Católica de Costa Rica'),
(20738, 'https://ror.org/00x835z16', 'fr', 1, 'https://ror.org/00x835z16 UniversitĆ© ChrĆ©tienne du Nord d’HaĆÆti'),
(20739, 'https://ror.org/00xag4a20', 'ca', 1, 'https://ror.org/00xag4a20 Petita i Mitjana Empresa de Catalunya'),
(20740, 'https://ror.org/00xb81q67', 'fr', 1, 'https://ror.org/00xb81q67 Ɖcole SupĆ©rieure de Gestion'),
(20741, 'https://ror.org/00xdrzy17', 'en', 1, 'https://ror.org/00xdrzy17 National Institute of Hospital Administration å«ē”ŸéƒØåŒ»é™¢ē®”ē†ē ”ē©¶ę‰€'),
(20742, 'https://ror.org/00xfgvj95', 'en', 1, 'https://ror.org/00xfgvj95 TÜBİTAK National Observatory TÜBİTAK Ulusal Gözlemevi'),
(20743, 'https://ror.org/00xfvkq36', 'en', 1, 'https://ror.org/00xfvkq36 Vasyl'' Stus Donetsk National University Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’Š°ŃŠøŠ»Ń Š”Ń‚ŃƒŃŠ°'),
(20744, 'https://ror.org/00xhnny30', 'en', 1, 'https://ror.org/00xhnny30 Ideas Foundation'),
(20745, 'https://ror.org/00xjnse39', 'en', 1, 'https://ror.org/00xjnse39 Oaks Hospital'),
(20746, 'https://ror.org/00xkkpn05', 'en', 1, 'https://ror.org/00xkkpn05 Norfolk Community Health and Care NHS Trust'),
(20747, 'https://ror.org/00xmqmx64', 'en', 1, 'https://ror.org/00xmqmx64 Senckenberg Gesellschaft für Naturforschung Senckenberg Society for Nature Research'),
(20748, 'https://ror.org/00xpsm226', 'no_lang_code', 1, 'https://ror.org/00xpsm226 Grupo Panorama (Spain)'),
(20749, 'https://ror.org/00xsnzk20', 'en', 1, 'https://ror.org/00xsnzk20 Slovak Hydrometeorological Institute'),
(20750, 'https://ror.org/00xteb469', 'en', 1, 'https://ror.org/00xteb469 Shanghai Huangpu District Central Hospital é»„ęµ¦åŒŗäø­åæƒåŒ»é™¢'),
(20751, 'https://ror.org/00xwv4z20', 'es', 1, 'https://ror.org/00xwv4z20 Universidad Nacional del Este'),
(20752, 'https://ror.org/00xxtbb12', 'no_lang_code', 1, 'https://ror.org/00xxtbb12 Naval Architecture Progress (Greece)'),
(20753, 'https://ror.org/00y0cw843', 'no_lang_code', 1, 'https://ror.org/00y0cw843 Scanogen (United States)'),
(20754, 'https://ror.org/00y0x8k49', 'en', 1, 'https://ror.org/00y0x8k49 Association Canadienne de Counseling et de PsychothƩrapie Canadian Counselling and Psychotherapy Association'),
(20755, 'https://ror.org/00y13f984', 'es', 1, 'https://ror.org/00y13f984 Universidad CientĆ­fica Latinoamericana de Hidalgo'),
(20756, 'https://ror.org/00y7snj24', 'en', 1, 'https://ror.org/00y7snj24 Northwest University'),
(20757, 'https://ror.org/00y8cbr22', 'no_lang_code', 1, 'https://ror.org/00y8cbr22 Senceive (United Kingdom)'),
(20758, 'https://ror.org/00yb46674', 'en', 1, 'https://ror.org/00yb46674 Newquay Community Hospital'),
(20759, 'https://ror.org/00yb8k233', 'en', 1, 'https://ror.org/00yb8k233 Shanghai Second People''s Hospital äøŠęµ·åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(20760, 'https://ror.org/00ychtq28', 'fr', 1, 'https://ror.org/00ychtq28 Ɖcole des Hautes Ɖtudes Commerciales'),
(20761, 'https://ror.org/00ydm7519', 'es', 1, 'https://ror.org/00ydm7519 Universidad Isidro Fabela de Toluca'),
(20762, 'https://ror.org/00ydqb522', 'no_lang_code', 1, 'https://ror.org/00ydqb522 Systemexpert Consulting'),
(20763, 'https://ror.org/00yeg5v71', 'no_lang_code', 1, 'https://ror.org/00yeg5v71 Nubad (United States)'),
(20764, 'https://ror.org/00yf1b023', 'no_lang_code', 1, 'https://ror.org/00yf1b023 Verbund (Austria)'),
(20765, 'https://ror.org/00yfj3947', 'no_lang_code', 1, 'https://ror.org/00yfj3947 Momatec (Germany)'),
(20766, 'https://ror.org/00yfjng44', 'en', 1, 'https://ror.org/00yfjng44 Universities at Shady Grove'),
(20767, 'https://ror.org/00ygc7g86', 'en', 1, 'https://ror.org/00ygc7g86 National Association of Local Boards of Health'),
(20768, 'https://ror.org/00ykc7z09', 'no_lang_code', 1, 'https://ror.org/00ykc7z09 PragmatIC (United Kingdom)'),
(20769, 'https://ror.org/00yn7fh07', 'en', 1, 'https://ror.org/00yn7fh07 International Union of Radioecology'),
(20770, 'https://ror.org/00yp89t60', 'en', 1, 'https://ror.org/00yp89t60 National School of Business and Management in Settat Ɖcole Nationale de Commerce et de Gestion de Settat'),
(20771, 'https://ror.org/00ypv0m95', 'en', 1, 'https://ror.org/00ypv0m95 Ministry of Culture MinistĆØre de la Culture'),
(20772, 'https://ror.org/00ypzqf67', 'en', 1, 'https://ror.org/00ypzqf67 Sanexen Environmental Services'),
(20773, 'https://ror.org/00yvkcc48', 'no_lang_code', 1, 'https://ror.org/00yvkcc48 SomaLogic (United States)'),
(20774, 'https://ror.org/00z1pf798', 'es', 1, 'https://ror.org/00z1pf798 Universidad de Managua'),
(20775, 'https://ror.org/00z1wsn64', 'en', 1, 'https://ror.org/00z1wsn64 Bushey Fields Hospital'),
(20776, 'https://ror.org/00z1y4j19', 'en', 1, 'https://ror.org/00z1y4j19 University Hospital of Hartlepool'),
(20777, 'https://ror.org/00z4t3785', 'en', 1, 'https://ror.org/00z4t3785 The Rotherham NHS Foundation Trust'),
(20778, 'https://ror.org/00z6nh165', 'es', 1, 'https://ror.org/00z6nh165 Universidad Privada San Carlos'),
(20779, 'https://ror.org/00z72df47', 'no_lang_code', 1, 'https://ror.org/00z72df47 Scientifica (United Kingdom)'),
(20780, 'https://ror.org/00z9hsx23', 'en', 1, 'https://ror.org/00z9hsx23 Rothbury Community Hospital'),
(20781, 'https://ror.org/00z9wtp09', 'no_lang_code', 1, 'https://ror.org/00z9wtp09 Aichi Shukutoku University ę„›ēŸ„ę·‘å¾³å¤§å­¦'),
(20782, 'https://ror.org/00zc7cw49', 'no_lang_code', 1, 'https://ror.org/00zc7cw49 Momentum (United Kingdom)'),
(20783, 'https://ror.org/00zd3hh13', 'no_lang_code', 1, 'https://ror.org/00zd3hh13 SEQUOIA (Italy)'),
(20784, 'https://ror.org/00zda8x95', 'en', 1, 'https://ror.org/00zda8x95 Unity College'),
(20785, 'https://ror.org/00zdr6w59', 'en', 1, 'https://ror.org/00zdr6w59 Sutton Hospital'),
(20786, 'https://ror.org/00zdyy359', 'en', 1, 'https://ror.org/00zdyy359 Abdullah Gül University Abdullah Gül Üniversitesi'),
(20787, 'https://ror.org/00zgqfa58', 'en', 1, 'https://ror.org/00zgqfa58 Odyssey House Louisiana'),
(20788, 'https://ror.org/00zpf0626', 'no_lang_code', 1, 'https://ror.org/00zpf0626 Nokia (United Kingdom)'),
(20789, 'https://ror.org/00zqfkn54', 'en', 1, 'https://ror.org/00zqfkn54 Wesley University'),
(20790, 'https://ror.org/00zthth08', 'no_lang_code', 1, 'https://ror.org/00zthth08 Uvasol (United Kingdom)'),
(20791, 'https://ror.org/00zxsnd45', 'en', 1, 'https://ror.org/00zxsnd45 Cranefield College'),
(20792, 'https://ror.org/00zy9qe71', 'en', 1, 'https://ror.org/00zy9qe71 Centro de Estudios Universitarios Xochicalco Xochicalco University'),
(20793, 'https://ror.org/00zyh6d22', 'no_lang_code', 1, 'https://ror.org/00zyh6d22 Hakim Sabzevari University دانؓگاه Ų­Ś©ŪŒŁ… سبزواری'),
(20794, 'https://ror.org/0102bpa71', 'no_lang_code', 1, 'https://ror.org/0102bpa71 Sisteplant (Spain)'),
(20795, 'https://ror.org/0102ea670', 'en', 1, 'https://ror.org/0102ea670 Society for Socialist Studies SociƩtƩ dƩtudes socialistes'),
(20796, 'https://ror.org/0103eqz62', 'en', 1, 'https://ror.org/0103eqz62 Recherche Canada Research Canada'),
(20797, 'https://ror.org/0103jrh39', 'en', 1, 'https://ror.org/0103jrh39 BMI The London Independent Hospital'),
(20798, 'https://ror.org/0105bda30', 'en', 1, 'https://ror.org/0105bda30 Virtual University of Tunis Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³ Ų§Ł„Ų§ŁŲŖŲ±Ų§Ų¶ŁŠŲ©'),
(20799, 'https://ror.org/0105bs557', 'no_lang_code', 1, 'https://ror.org/0105bs557 De Lijn (Belgium)'),
(20800, 'https://ror.org/0106dk572', 'nl', 1, 'https://ror.org/0106dk572 Promotie Binnenvaart Vlaanderen Promotion Office for Inland Navigation in Flanders'),
(20801, 'https://ror.org/0106g1z72', 'no_lang_code', 1, 'https://ror.org/0106g1z72 Quercus X-ray Technologies (United States)'),
(20802, 'https://ror.org/0106g8w88', 'no_lang_code', 1, 'https://ror.org/0106g8w88 Spring Bank Pharmaceuticals (United States)'),
(20803, 'https://ror.org/0106ne629', 'no_lang_code', 1, 'https://ror.org/0106ne629 Metronix (Germany)'),
(20804, 'https://ror.org/0106sxj39', 'es', 1, 'https://ror.org/0106sxj39 Universidad Casa Blanca'),
(20805, 'https://ror.org/01093z329', 'no_lang_code', 1, 'https://ror.org/01093z329 SAS Institute (United States)'),
(20806, 'https://ror.org/010c6zy12', 'en', 1, 'https://ror.org/010c6zy12 Trident University International'),
(20807, 'https://ror.org/010dms986', 'no_lang_code', 1, 'https://ror.org/010dms986 ORT Israel'),
(20808, 'https://ror.org/010e34m27', 'no_lang_code', 1, 'https://ror.org/010e34m27 Zayer (Spain)'),
(20809, 'https://ror.org/010exe056', 'en', 1, 'https://ror.org/010exe056 Ilfracombe Tyrrell Hospital'),
(20810, 'https://ror.org/010fb5010', 'pt', 1, 'https://ror.org/010fb5010 Secretaria Regional do Ambiente e Recursos Naturais'),
(20811, 'https://ror.org/010frds68', 'no_lang_code', 1, 'https://ror.org/010frds68 Seluxit (Denmark)'),
(20812, 'https://ror.org/010gr4v10', 'no_lang_code', 1, 'https://ror.org/010gr4v10 Nenuphar (France)'),
(20813, 'https://ror.org/010j3wg85', 'en', 1, 'https://ror.org/010j3wg85 Communitech'),
(20814, 'https://ror.org/010jcak55', 'no_lang_code', 1, 'https://ror.org/010jcak55 Plastia (Spain)'),
(20815, 'https://ror.org/010jktr86', 'en', 1, 'https://ror.org/010jktr86 Norwegian Metrology Service'),
(20816, 'https://ror.org/010m84w02', 'no_lang_code', 1, 'https://ror.org/010m84w02 Helix Biopharma (Canada)'),
(20817, 'https://ror.org/010n3pg47', 'no_lang_code', 1, 'https://ror.org/010n3pg47 Zeus Scientific (United States)'),
(20818, 'https://ror.org/010nb2b07', 'en', 1, 'https://ror.org/010nb2b07 Purley War Memorial Hospital'),
(20819, 'https://ror.org/010ps5r85', 'en', 1, 'https://ror.org/010ps5r85 Fundación Universitaria San Martín Saint Martin University'),
(20820, 'https://ror.org/010r9dy59', 'es', 1, 'https://ror.org/010r9dy59 Universidad Autónoma de Chile'),
(20821, 'https://ror.org/010s9qs41', 'en', 1, 'https://ror.org/010s9qs41 Shijiazhuang Great Wall Hospital ēŸ³å®¶åŗ„é•æåŸŽåŒ»é™¢'),
(20822, 'https://ror.org/010tvj547', 'no_lang_code', 1, 'https://ror.org/010tvj547 Sedia Biosciences (United States)'),
(20823, 'https://ror.org/010vqh084', 'en', 1, 'https://ror.org/010vqh084 North Carolina Public Schools'),
(20824, 'https://ror.org/010vry420', 'en', 1, 'https://ror.org/010vry420 National Merit Scholarship Corporation'),
(20825, 'https://ror.org/010w4rs44', 'es', 1, 'https://ror.org/010w4rs44 Universidad TƩcnica Luis Vargas Torres'),
(20826, 'https://ror.org/010wna455', 'no_lang_code', 1, 'https://ror.org/010wna455 ELFE Group (Greece) Ελληνικά Ī›Ī¹Ļ€Ī¬ĻƒĪ¼Ī±Ļ„Ī± και Χημικά'),
(20827, 'https://ror.org/010xbqa75', 'de', 1, 'https://ror.org/010xbqa75 Krankenhaus Bruneck'),
(20828, 'https://ror.org/01109d775', 'en', 1, 'https://ror.org/01109d775 Cairn University'),
(20829, 'https://ror.org/0110g7c84', 'no_lang_code', 1, 'https://ror.org/0110g7c84 WHM Group'),
(20830, 'https://ror.org/01138at48', 'no_lang_code', 1, 'https://ror.org/01138at48 Virtual Open Systems (France)'),
(20831, 'https://ror.org/0116akb37', 'en', 1, 'https://ror.org/0116akb37 Chiba Kaihin Municipal Hospital åƒč‘‰åø‚ē«‹ęµ·ęµœē—…é™¢'),
(20832, 'https://ror.org/0116kk067', 'en', 1, 'https://ror.org/0116kk067 Leatherhead Community Hospital'),
(20833, 'https://ror.org/0117q7625', 'fr', 1, 'https://ror.org/0117q7625 Protestant University in Congo UniversitƩ Protestante au Congo'),
(20834, 'https://ror.org/0117rgr12', 'en', 1, 'https://ror.org/0117rgr12 Perth Exoplanet Survey Telescope Observatory'),
(20835, 'https://ror.org/0119z9797', 'no_lang_code', 1, 'https://ror.org/0119z9797 Cybernet Systems Corporation (Canada)'),
(20836, 'https://ror.org/011adk382', 'en', 1, 'https://ror.org/011adk382 Yanbu University College ŁƒŁ„ŁŠŲ© ŁŠŁ†ŲØŲ¹ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(20837, 'https://ror.org/011bd9v54', 'es', 1, 'https://ror.org/011bd9v54 Universidad Casa Grande'),
(20838, 'https://ror.org/011c78869', 'en', 1, 'https://ror.org/011c78869 Hemel Hempstead Hospital'),
(20839, 'https://ror.org/011d6dm60', 'en', 1, 'https://ror.org/011d6dm60 International University of Management'),
(20840, 'https://ror.org/011ebne09', 'pt', 1, 'https://ror.org/011ebne09 Centro UniversitƔrio Padre Anchieta'),
(20841, 'https://ror.org/011k2tc02', 'en', 1, 'https://ror.org/011k2tc02 Beccles & District War Memorial Hospital'),
(20842, 'https://ror.org/011m1x742', 'en', 1, 'https://ror.org/011m1x742 First People''s Hospital of Chongqing é‡åŗ†åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(20843, 'https://ror.org/011n2s048', 'en', 1, 'https://ror.org/011n2s048 Tianjin Anding Hospital å¤©ę“„åø‚å®‰å®šåŒ»é™¢'),
(20844, 'https://ror.org/011nrx077', 'no_lang_code', 1, 'https://ror.org/011nrx077 Systematic (Netherlands)'),
(20845, 'https://ror.org/011pn8n48', 'en', 1, 'https://ror.org/011pn8n48 Canadian Association for Commonwealth Literature and Language Studies'),
(20846, 'https://ror.org/011va6w40', 'no_lang_code', 1, 'https://ror.org/011va6w40 Stratophase (United Kingdom)'),
(20847, 'https://ror.org/011w61724', 'no_lang_code', 1, 'https://ror.org/011w61724 Sysgo (Czechia)'),
(20848, 'https://ror.org/011w66729', 'en', 1, 'https://ror.org/011w66729 Daniel Langlois Foundation for Art Science and Technology'),
(20849, 'https://ror.org/011wegm62', 'no_lang_code', 1, 'https://ror.org/011wegm62 Technomar (Germany)'),
(20850, 'https://ror.org/011wpwt21', 'en', 1, 'https://ror.org/011wpwt21 Southwestern Law School'),
(20851, 'https://ror.org/011y4d392', 'en', 1, 'https://ror.org/011y4d392 Superior Court of California'),
(20852, 'https://ror.org/011zf9m55', 'no_lang_code', 1, 'https://ror.org/011zf9m55 William Ross (United Kingdom)'),
(20853, 'https://ror.org/0120t7422', 'no_lang_code', 1, 'https://ror.org/0120t7422 Sensys Networks (United States)'),
(20854, 'https://ror.org/0122g5k54', 'pt', 1, 'https://ror.org/0122g5k54 Centro UniversitƔrio de Caratinga'),
(20855, 'https://ror.org/0127drs35', 'en', 1, 'https://ror.org/0127drs35 Little Plumstead Hospital'),
(20856, 'https://ror.org/012835d77', 'pt', 1, 'https://ror.org/012835d77 Centro UniversitƔrio do ParƔ'),
(20857, 'https://ror.org/01299qg41', 'en', 1, 'https://ror.org/01299qg41 Nez Perce Tribal Executive Committee'),
(20858, 'https://ror.org/0129z0867', 'en', 1, 'https://ror.org/0129z0867 Jean Piaget University of Angola Universidade Jean Piaget de Angola'),
(20859, 'https://ror.org/012g3p565', 'en', 1, 'https://ror.org/012g3p565 St Barnabas Hospital'),
(20860, 'https://ror.org/012k6p920', 'no_lang_code', 1, 'https://ror.org/012k6p920 National Microelectronics Applications Centre (Ireland)'),
(20861, 'https://ror.org/012m7et47', 'no_lang_code', 1, 'https://ror.org/012m7et47 Naneum (United Kingdom)'),
(20862, 'https://ror.org/012mfm969', 'no_lang_code', 1, 'https://ror.org/012mfm969 NIL Technology (Denmark)'),
(20863, 'https://ror.org/012mmaq80', 'pt', 1, 'https://ror.org/012mmaq80 Centro UniversitƔrio Franciscano do ParanƔ'),
(20864, 'https://ror.org/012tc8p52', 'no_lang_code', 1, 'https://ror.org/012tc8p52 Techint (Italy)'),
(20865, 'https://ror.org/012v8ks77', 'en', 1, 'https://ror.org/012v8ks77 San Luis Obispo County Drug and Alcohol Services'),
(20866, 'https://ror.org/012wtwr40', 'pt', 1, 'https://ror.org/012wtwr40 Centro UniversitƔrio Newton Paiva'),
(20867, 'https://ror.org/0134twj05', 'en', 1, 'https://ror.org/0134twj05 Youth Service Project'),
(20868, 'https://ror.org/01380h596', 'es', 1, 'https://ror.org/01380h596 Instituto Profesional Latinoamericano de Comercio Exterior'),
(20869, 'https://ror.org/01388jj23', 'en', 1, 'https://ror.org/01388jj23 National Consumers League'),
(20870, 'https://ror.org/0138bxv06', 'es', 1, 'https://ror.org/0138bxv06 Centro Universitario Luis Donaldo Colosio Murrieta'),
(20871, 'https://ror.org/0138xww93', 'no_lang_code', 1, 'https://ror.org/0138xww93 Prism Informatics (Italy)'),
(20872, 'https://ror.org/0139vf833', 'es', 1, 'https://ror.org/0139vf833 Universidad San Gregorio de Portoviejo'),
(20873, 'https://ror.org/013etyn53', 'en', 1, 'https://ror.org/013etyn53 National Communication Association'),
(20874, 'https://ror.org/013fgjz36', 'es', 1, 'https://ror.org/013fgjz36 Universidad Lux'),
(20875, 'https://ror.org/013fs2498', 'en', 1, 'https://ror.org/013fs2498 Woodbury University'),
(20876, 'https://ror.org/013g3g638', 'no_lang_code', 1, 'https://ror.org/013g3g638 Vertically Integrated Systems (Germany)'),
(20877, 'https://ror.org/013jc2p81', 'en', 1, 'https://ror.org/013jc2p81 Swope Health Services'),
(20878, 'https://ror.org/013m3my89', 'es', 1, 'https://ror.org/013m3my89 Universidad Nacional Micaela Bastidas de Apurimac'),
(20879, 'https://ror.org/013n8jm40', 'no_lang_code', 1, 'https://ror.org/013n8jm40 ThƩsame (France)'),
(20880, 'https://ror.org/013p21z46', 'fr', 1, 'https://ror.org/013p21z46 Institut supĆ©rieur de la Magistrature المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للقضاؔ'),
(20881, 'https://ror.org/013p2c441', 'no_lang_code', 1, 'https://ror.org/013p2c441 Centre for Imaging Technology Commercialization'),
(20882, 'https://ror.org/013pajk64', 'pt', 1, 'https://ror.org/013pajk64 FUMEC University Universidade Fundação Mineira de Educação e Cultura'),
(20883, 'https://ror.org/013qbng65', 'en', 1, 'https://ror.org/013qbng65 Andover War Memorial Hospital'),
(20884, 'https://ror.org/013qfkw58', 'en', 1, 'https://ror.org/013qfkw58 Maharishi Markandeshwar University, Mullana ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤®ą¤°ą„ą¤•ą¤‚ą¤¦ą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤®ą„ą¤²ą¤¾ą¤Øą¤¾'),
(20885, 'https://ror.org/013qt8483', 'en', 1, 'https://ror.org/013qt8483 University of the Ozarks'),
(20886, 'https://ror.org/013r61763', 'no_lang_code', 1, 'https://ror.org/013r61763 SignaBlok (United States)'),
(20887, 'https://ror.org/013sryf19', 'en', 1, 'https://ror.org/013sryf19 Hertfordshire Community NHS Trust'),
(20888, 'https://ror.org/013veys68', 'en', 1, 'https://ror.org/013veys68 Cassel Hospital'),
(20889, 'https://ror.org/013vgsx18', 'no_lang_code', 1, 'https://ror.org/013vgsx18 Protein Express (United States)'),
(20890, 'https://ror.org/013wfcy24', 'no_lang_code', 1, 'https://ror.org/013wfcy24 Storvik (Norway)'),
(20891, 'https://ror.org/013wphc16', 'en', 1, 'https://ror.org/013wphc16 Castleberg Hospital'),
(20892, 'https://ror.org/013ykv656', 'en', 1, 'https://ror.org/013ykv656 SEMI'),
(20893, 'https://ror.org/013ys5k90', 'es', 1, 'https://ror.org/013ys5k90 Universidad del SinĆŗ'),
(20894, 'https://ror.org/0142g0j16', 'en', 1, 'https://ror.org/0142g0j16 Pendle Community Hospital'),
(20895, 'https://ror.org/0142kd761', 'it', 1, 'https://ror.org/0142kd761 Ricerca e Progetto'),
(20896, 'https://ror.org/0144xq035', 'en', 1, 'https://ror.org/0144xq035 FOD FinanciĆ«n FƖD Finanzen SPF Finances, Service Public Federal Finances'),
(20897, 'https://ror.org/0144zzh56', 'en', 1, 'https://ror.org/0144zzh56 Bassetlaw Hospital'),
(20898, 'https://ror.org/01450d509', 'no_lang_code', 1, 'https://ror.org/01450d509 Semantic Web Company (Austria)'),
(20899, 'https://ror.org/0145cvg83', 'en', 1, 'https://ror.org/0145cvg83 Business University of Costa Rica Universidad Empresarial de Costa Rica'),
(20900, 'https://ror.org/0145dtj11', 'en', 1, 'https://ror.org/0145dtj11 University of Santa Monica'),
(20901, 'https://ror.org/0147bee55', 'no_lang_code', 1, 'https://ror.org/0147bee55 Mondragon Corporation (Germany)');
INSERT INTO `rors` VALUES
(20902, 'https://ror.org/0148chp23', 'no_lang_code', 1, 'https://ror.org/0148chp23 Cortech Solutions (United States)'),
(20903, 'https://ror.org/0148s0r28', 'no_lang_code', 1, 'https://ror.org/0148s0r28 Pharmaxis (Canada)'),
(20904, 'https://ror.org/014fgst40', 'no_lang_code', 1, 'https://ror.org/014fgst40 Suni Medical Imaging (United States)'),
(20905, 'https://ror.org/014gamn09', 'no_lang_code', 1, 'https://ror.org/014gamn09 Novomer (United States)'),
(20906, 'https://ror.org/014hb3529', 'no_lang_code', 1, 'https://ror.org/014hb3529 Synome (United Kingdom)'),
(20907, 'https://ror.org/014hye081', 'no_lang_code', 1, 'https://ror.org/014hye081 Maxam (Spain)'),
(20908, 'https://ror.org/014hygp17', 'no_lang_code', 1, 'https://ror.org/014hygp17 Vitkovice - Research and Development (Czechia)'),
(20909, 'https://ror.org/014khff20', 'en', 1, 'https://ror.org/014khff20 Kampala University'),
(20910, 'https://ror.org/014m3pp97', 'en', 1, 'https://ror.org/014m3pp97 San Diego Mesa College'),
(20911, 'https://ror.org/014nw6h77', 'en', 1, 'https://ror.org/014nw6h77 Regional Energy Agency of Crete'),
(20912, 'https://ror.org/014pn4247', 'no_lang_code', 1, 'https://ror.org/014pn4247 FitBionic (United States)'),
(20913, 'https://ror.org/014pqsx51', 'es', 1, 'https://ror.org/014pqsx51 Universidad Privada de Tacna'),
(20914, 'https://ror.org/014v77g24', 'en', 1, 'https://ror.org/014v77g24 Centre for Drug Research and Development'),
(20915, 'https://ror.org/014x14082', 'en', 1, 'https://ror.org/014x14082 Queen Victoria Hospital'),
(20916, 'https://ror.org/014ydfp77', 'no_lang_code', 1, 'https://ror.org/014ydfp77 Neoceram (Belgium)'),
(20917, 'https://ror.org/0150qbw95', 'es', 1, 'https://ror.org/0150qbw95 Universidad Mexicana de Educación a Distancia'),
(20918, 'https://ror.org/015135f27', 'en', 1, 'https://ror.org/015135f27 Sealaska Heritage Institute'),
(20919, 'https://ror.org/01517we84', 'fr', 1, 'https://ror.org/01517we84 Institut SupĆ©rieur International du Tourisme de Tanger المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠ Ł„Ł„Ų³ŁŠŲ§Ų­Ų©'),
(20920, 'https://ror.org/0151s7v18', 'no_lang_code', 1, 'https://ror.org/0151s7v18 Umicore (Germany)'),
(20921, 'https://ror.org/0152e2z91', 'pt', 1, 'https://ror.org/0152e2z91 Universidade IguaƧu'),
(20922, 'https://ror.org/0154ejv33', 'en', 1, 'https://ror.org/0154ejv33 Herts and Essex Hospital'),
(20923, 'https://ror.org/01555fr96', 'pt', 1, 'https://ror.org/01555fr96 Centro UniversitƔrio Amparense'),
(20924, 'https://ror.org/0156q9695', 'no_lang_code', 1, 'https://ror.org/0156q9695 Tecsol'),
(20925, 'https://ror.org/0157yqb81', 'en', 1, 'https://ror.org/0157yqb81 Kandahar University دانؓگاه قندهار'),
(20926, 'https://ror.org/0158yx659', 'fr', 1, 'https://ror.org/0158yx659 Groupe Institut des Hautes Ɖtudes Ɖconomiques et Sociales'),
(20927, 'https://ror.org/015a43103', 'no_lang_code', 1, 'https://ror.org/015a43103 Unisoft (Romania)'),
(20928, 'https://ror.org/015ahgd08', 'en', 1, 'https://ror.org/015ahgd08 Brescia University'),
(20929, 'https://ror.org/015avwq19', 'no_lang_code', 1, 'https://ror.org/015avwq19 Resoltech (France)'),
(20930, 'https://ror.org/015b1qg33', 'no_lang_code', 1, 'https://ror.org/015b1qg33 PBL Assay Science (United States)'),
(20931, 'https://ror.org/015byt818', 'en', 1, 'https://ror.org/015byt818 National Energy Research Center'),
(20932, 'https://ror.org/015c3k777', 'en', 1, 'https://ror.org/015c3k777 Texans Standing Tall'),
(20933, 'https://ror.org/015cbgp91', 'en', 1, 'https://ror.org/015cbgp91 Chibune General Hospital åƒčˆ¹ē—…é™¢'),
(20934, 'https://ror.org/015cent83', 'es', 1, 'https://ror.org/015cent83 Instituto Profesional Providencia'),
(20935, 'https://ror.org/015gsp051', 'en', 1, 'https://ror.org/015gsp051 Tuesdays Children'),
(20936, 'https://ror.org/015h3ax78', 'en', 1, 'https://ror.org/015h3ax78 Trevecca Nazarene University'),
(20937, 'https://ror.org/015hsqv25', 'es', 1, 'https://ror.org/015hsqv25 Corporación Escuela Superior de Administración y Estudios Tecnológicos'),
(20938, 'https://ror.org/015jgm839', 'es', 1, 'https://ror.org/015jgm839 Centro Universitario Emmanuel Kant'),
(20939, 'https://ror.org/015mnn720', 'en', 1, 'https://ror.org/015mnn720 Learning Partnership'),
(20940, 'https://ror.org/015mptv94', 'hu', 1, 'https://ror.org/015mptv94 Somogy Megyei Kaposi Mór Oktató KórhÔz'),
(20941, 'https://ror.org/015mtjx14', 'no_lang_code', 1, 'https://ror.org/015mtjx14 RegeneMed (United States)'),
(20942, 'https://ror.org/015n5ef16', 'en', 1, 'https://ror.org/015n5ef16 Quinsigamond Community College'),
(20943, 'https://ror.org/015pd1843', 'no_lang_code', 1, 'https://ror.org/015pd1843 Phoenix Scientific Industries (United Kingdom)'),
(20944, 'https://ror.org/015pwzh41', 'no_lang_code', 1, 'https://ror.org/015pwzh41 Weyerhaeuser (United States)'),
(20945, 'https://ror.org/015rec412', 'es', 1, 'https://ror.org/015rec412 Corporación Universitaria Autónoma de Nariño'),
(20946, 'https://ror.org/015sct804', 'es', 1, 'https://ror.org/015sct804 Universidad de Ciencias MƩdicas de Sancti Spƭritus'),
(20947, 'https://ror.org/015snna87', 'no_lang_code', 1, 'https://ror.org/015snna87 NOVA Scientific (United States)'),
(20948, 'https://ror.org/015swn341', 'en', 1, 'https://ror.org/015swn341 Hawkhurst Community Hospital'),
(20949, 'https://ror.org/015wdp703', 'en', 1, 'https://ror.org/015wdp703 Federico Villarreal National University Universidad Nacional Federico Villarreal'),
(20950, 'https://ror.org/015x6xa25', 'es', 1, 'https://ror.org/015x6xa25 Corporación John F. Kennedy'),
(20951, 'https://ror.org/015xhb971', 'en', 1, 'https://ror.org/015xhb971 Primrose Hill Hospital'),
(20952, 'https://ror.org/015yk4694', 'no_lang_code', 1, 'https://ror.org/015yk4694 Noesis Solutions (Belgium)'),
(20953, 'https://ror.org/015yks327', 'en', 1, 'https://ror.org/015yks327 Rhode Island Coalition Against Domestic Violence'),
(20954, 'https://ror.org/015z05t63', 'en', 1, 'https://ror.org/015z05t63 MƩtis National Council Ralliement national des MƩtis'),
(20955, 'https://ror.org/0160m7k04', 'fr', 1, 'https://ror.org/0160m7k04 Institut SupƩrieur de Technique MƩdicale'),
(20956, 'https://ror.org/01649ww56', 'en', 1, 'https://ror.org/01649ww56 Institut Pontifical d''Ɖtudes MĆ©diĆ©vales Pontifical Institute of Mediaeval Studies'),
(20957, 'https://ror.org/01663mv64', 'fr', 1, 'https://ror.org/01663mv64 Centre hospitalier Bretagne Atlantique'),
(20958, 'https://ror.org/016967s24', 'es', 1, 'https://ror.org/016967s24 Instituto Profesional Valle Central'),
(20959, 'https://ror.org/016aq4f67', 'es', 1, 'https://ror.org/016aq4f67 Centro de Estudios Universitarios Horacio ZuƱiga'),
(20960, 'https://ror.org/016b8st17', 'es', 1, 'https://ror.org/016b8st17 Universidad Vizcaya de las AmƩricas'),
(20961, 'https://ror.org/016bj9f63', 'en', 1, 'https://ror.org/016bj9f63 United Way of Anchorage'),
(20962, 'https://ror.org/016ec0748', 'no_lang_code', 1, 'https://ror.org/016ec0748 Naval Hospital Yokosuka Japan ęØŖé ˆč³€ē±³ęµ·č»ē—…é™¢'),
(20963, 'https://ror.org/016eqnh03', 'en', 1, 'https://ror.org/016eqnh03 Tartu Biotechnology Park'),
(20964, 'https://ror.org/016fjr533', 'fr', 1, 'https://ror.org/016fjr533 Université du Sine Saloum El-Hâdj Ibrahima NIASS'),
(20965, 'https://ror.org/016g07382', 'no_lang_code', 1, 'https://ror.org/016g07382 Saiseikai Takaoka Hospital ęøˆē”Ÿä¼šé«˜å²”ē—…é™¢'),
(20966, 'https://ror.org/016jrh007', 'en', 1, 'https://ror.org/016jrh007 Khost University دانؓگاه خوست'),
(20967, 'https://ror.org/016jwxj93', 'en', 1, 'https://ror.org/016jwxj93 Surrey County Council'),
(20968, 'https://ror.org/016k08642', 'es', 1, 'https://ror.org/016k08642 Universidad SƤmann de Jalisco'),
(20969, 'https://ror.org/016kak391', 'pt', 1, 'https://ror.org/016kak391 Centro UniversitƔrio FIEO'),
(20970, 'https://ror.org/016kj2436', 'en', 1, 'https://ror.org/016kj2436 Royal Observatory'),
(20971, 'https://ror.org/016ntyy59', 'no_lang_code', 1, 'https://ror.org/016ntyy59 Noble’s Hospital'),
(20972, 'https://ror.org/016r60a96', 'no_lang_code', 1, 'https://ror.org/016r60a96 NOVASiC (France)'),
(20973, 'https://ror.org/016sj4q14', 'en', 1, 'https://ror.org/016sj4q14 Buckingham Community Hospital'),
(20974, 'https://ror.org/016vdk046', 'en', 1, 'https://ror.org/016vdk046 Whipps Cross University Hospital'),
(20975, 'https://ror.org/016wh5q48', 'es', 1, 'https://ror.org/016wh5q48 Centro Universitario del Valle de Zacapu'),
(20976, 'https://ror.org/016xjr028', 'no_lang_code', 1, 'https://ror.org/016xjr028 Rad Data Communications (Israel)'),
(20977, 'https://ror.org/017056r72', 'no_lang_code', 1, 'https://ror.org/017056r72 Thales (Belgium)'),
(20978, 'https://ror.org/0170ffh34', 'fr', 1, 'https://ror.org/0170ffh34 Institut SupƩrieur du GƩnie AppliquƩ'),
(20979, 'https://ror.org/0174fh497', 'no_lang_code', 1, 'https://ror.org/0174fh497 Remmers Bouwchemie (Netherlands)'),
(20980, 'https://ror.org/0174ygc67', 'en', 1, 'https://ror.org/0174ygc67 Potters Bar Community Hospital'),
(20981, 'https://ror.org/0175p1a50', 'es', 1, 'https://ror.org/0175p1a50 Universidad Latinoamericana de Ciencia y TecnologĆ­a'),
(20982, 'https://ror.org/0176aa147', 'en', 1, 'https://ror.org/0176aa147 Petrozavodsk State University ŠŸŠµŃ‚Ń€Š¾Š·Š°Š²Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(20983, 'https://ror.org/01776ep11', 'en', 1, 'https://ror.org/01776ep11 Leeds Community Healthcare NHS Trust'),
(20984, 'https://ror.org/0178yne88', 'es', 1, 'https://ror.org/0178yne88 Servicio AragonƩs de Salud'),
(20985, 'https://ror.org/017ah0j38', 'en', 1, 'https://ror.org/017ah0j38 Horsham Hospital'),
(20986, 'https://ror.org/017b62a57', 'en', 1, 'https://ror.org/017b62a57 Ashburton and Buckfastleigh Health and Wellbeing Centre'),
(20987, 'https://ror.org/017bt7t72', 'en', 1, 'https://ror.org/017bt7t72 Leamington Spa Hospital'),
(20988, 'https://ror.org/017bynh47', 'en', 1, 'https://ror.org/017bynh47 Hospital La Paz Institute for Health Research'),
(20989, 'https://ror.org/017cs0m08', 'en', 1, 'https://ror.org/017cs0m08 Guisborough Primary Care Hospital'),
(20990, 'https://ror.org/017d8cr03', 'nl', 1, 'https://ror.org/017d8cr03 Centre for Agriculture and Environment Foundation Centrum voor Landbouw en Milieu'),
(20991, 'https://ror.org/017f0cd82', 'no_lang_code', 1, 'https://ror.org/017f0cd82 Continental (United Kingdom)'),
(20992, 'https://ror.org/017g3c465', 'es', 1, 'https://ror.org/017g3c465 Universidad Metropolitana de Ciencia y TecnologĆ­a'),
(20993, 'https://ror.org/017gvys12', 'no_lang_code', 1, 'https://ror.org/017gvys12 Sogin (Italy)'),
(20994, 'https://ror.org/017j8hh08', 'de', 1, 'https://ror.org/017j8hh08 Schweizerisches Forschungsinstitut für Hochgebirgsklima und Medizin'),
(20995, 'https://ror.org/017jtd728', 'en', 1, 'https://ror.org/017jtd728 Higher Institute of Mining, Industry and Geology Ɖcole des Mines, de l''Industrie et de la GĆ©ologie'),
(20996, 'https://ror.org/017kqf203', 'no_lang_code', 1, 'https://ror.org/017kqf203 Napper Architects (United Kingdom)'),
(20997, 'https://ror.org/017m8hp04', 'en', 1, 'https://ror.org/017m8hp04 University of Northern Virginia'),
(20998, 'https://ror.org/017mfww27', 'en', 1, 'https://ror.org/017mfww27 Point Park University'),
(20999, 'https://ror.org/017n1k193', 'en', 1, 'https://ror.org/017n1k193 French University of Egypt UniversitĆ© franƧaise d''Ɖgypte الجامعة Ų§Ł„ŁŲ±Ł†Ų³ŁŠŲ© في Ł…ŲµŲ±'),
(21000, 'https://ror.org/017p13n71', 'es', 1, 'https://ror.org/017p13n71 Universidad del Centro de Estudios Macroeconómicos de Argentina Université du centre d''études macroeconomiques d''argentine'),
(21001, 'https://ror.org/017qp3084', 'no_lang_code', 1, 'https://ror.org/017qp3084 Vaasaett (Finland)'),
(21002, 'https://ror.org/017qtn133', 'es', 1, 'https://ror.org/017qtn133 Universidad MonteƔvila'),
(21003, 'https://ror.org/017snsh34', 'es', 1, 'https://ror.org/017snsh34 Institución Universitaria Latina'),
(21004, 'https://ror.org/017t65n61', 'en', 1, 'https://ror.org/017t65n61 North Carolina Families United'),
(21005, 'https://ror.org/017wwgg26', 'en', 1, 'https://ror.org/017wwgg26 Kigali Independent University UniversitƩ libre de kigali'),
(21006, 'https://ror.org/0180ay989', 'no_lang_code', 1, 'https://ror.org/0180ay989 Fukushimura Hospital ä¼Šå‹¢å“Žē¦å³¶ē—…é™¢'),
(21007, 'https://ror.org/01827cp44', 'en', 1, 'https://ror.org/01827cp44 Geyserland Observatory'),
(21008, 'https://ror.org/0182jhx89', 'no_lang_code', 1, 'https://ror.org/0182jhx89 Dunlap-Stone University'),
(21009, 'https://ror.org/018322479', 'en', 1, 'https://ror.org/018322479 Sullivan Veterinary Clinic'),
(21010, 'https://ror.org/0184kye93', 'es', 1, 'https://ror.org/0184kye93 Universidad del Mar'),
(21011, 'https://ror.org/0189yfh12', 'es', 1, 'https://ror.org/0189yfh12 Franco Mexican University Universidad Franco Mexicana'),
(21012, 'https://ror.org/018a3we97', 'no_lang_code', 1, 'https://ror.org/018a3we97 RAFT Solutions (United Kingdom)'),
(21013, 'https://ror.org/018cwj358', 'no_lang_code', 1, 'https://ror.org/018cwj358 Micromega Dynamics (Belgium)'),
(21014, 'https://ror.org/018d33y89', 'en', 1, 'https://ror.org/018d33y89 Neurobehavioral Systems'),
(21015, 'https://ror.org/018dcz204', 'en', 1, 'https://ror.org/018dcz204 Scope'),
(21016, 'https://ror.org/018ekew90', 'en', 1, 'https://ror.org/018ekew90 New Jersey Department of Corrections'),
(21017, 'https://ror.org/018hwj434', 'en', 1, 'https://ror.org/018hwj434 Flemish Public Employment Service Vlaamse Dienst voor Arbeidsbemiddeling en Beroepsopleiding'),
(21018, 'https://ror.org/018kks649', 'no_lang_code', 1, 'https://ror.org/018kks649 Optotek (Slovenia)'),
(21019, 'https://ror.org/018krw812', 'no_lang_code', 1, 'https://ror.org/018krw812 Ridgeback (Italy)'),
(21020, 'https://ror.org/018mj2m06', 'pt', 1, 'https://ror.org/018mj2m06 Centro UniversitƔrio do Norte'),
(21021, 'https://ror.org/018qh5t24', 'en', 1, 'https://ror.org/018qh5t24 North West Ambulance Service NHS Trust'),
(21022, 'https://ror.org/018skgq22', 'no_lang_code', 1, 'https://ror.org/018skgq22 Sellafield (United Kingdom)'),
(21023, 'https://ror.org/018v0f754', 'fr', 1, 'https://ror.org/018v0f754 Ɖcole SupĆ©rieure de la Magistrature المدرســـــة Ų§Ł„Ų¹Ł„ŁŠŁ€Ł€Ł€Ł€Ł€Ų§ للقضــــاؔ'),
(21024, 'https://ror.org/018vhc422', 'fr', 1, 'https://ror.org/018vhc422 Ɖcole SupĆ©rieure des TĆ©lĆ©communications'),
(21025, 'https://ror.org/018w5ms25', 'en', 1, 'https://ror.org/018w5ms25 Second Hospital of Liaohe Oilfield'),
(21026, 'https://ror.org/018xv9w84', 'no_lang_code', 1, 'https://ror.org/018xv9w84 Starpharma (Australia)'),
(21027, 'https://ror.org/018y22094', 'en', 1, 'https://ror.org/018y22094 Hazara University جامعہ ہزارہ'),
(21028, 'https://ror.org/018y2gs33', 'ro', 1, 'https://ror.org/018y2gs33 Institutul Naţional de Cercetare-Dezvoltare in Construcţii Urbanism şi Dezvoltare Teritorială Durabilă National Institute for Research and Development in Construction, Urban Planning and Sustainable Spatial Development'),
(21029, 'https://ror.org/018ze3r73', 'en', 1, 'https://ror.org/018ze3r73 Chukwuemeka Odumegwu Ojukwu University'),
(21030, 'https://ror.org/018zgbn57', 'es', 1, 'https://ror.org/018zgbn57 Universidad del Istmo'),
(21031, 'https://ror.org/01902pd86', 'en', 1, 'https://ror.org/01902pd86 Manchester Digital Development Agency'),
(21032, 'https://ror.org/01913dg57', 'fr', 1, 'https://ror.org/01913dg57 Ɖcole SupĆ©rieure Multinationale des TĆ©lĆ©communications'),
(21033, 'https://ror.org/01930h994', 'no_lang_code', 1, 'https://ror.org/01930h994 TechnoVax (United States)'),
(21034, 'https://ror.org/019496w77', 'en', 1, 'https://ror.org/019496w77 Getty Conservation Institute'),
(21035, 'https://ror.org/0197qh103', 'en', 1, 'https://ror.org/0197qh103 South Baylo University'),
(21036, 'https://ror.org/0197se455', 'no_lang_code', 1, 'https://ror.org/0197se455 Product Innovation and Engineering (United States)'),
(21037, 'https://ror.org/0198hft79', 'no_lang_code', 1, 'https://ror.org/0198hft79 Vaxcel (United States)'),
(21038, 'https://ror.org/0198n3j25', 'en', 1, 'https://ror.org/0198n3j25 Saint Thomas Aquinas North University Universidad del Norte Santo TomƔs de Aquino'),
(21039, 'https://ror.org/01997ht09', 'no_lang_code', 1, 'https://ror.org/01997ht09 Virtuelle Fabrik (Switzerland)'),
(21040, 'https://ror.org/019af7775', 'en', 1, 'https://ror.org/019af7775 St. Joseph Youth Alliance'),
(21041, 'https://ror.org/019b9yp12', 'en', 1, 'https://ror.org/019b9yp12 SINE-Institut Sine Institute Süddeutsches Institut für Empirische Sozialforschung'),
(21042, 'https://ror.org/019c89h28', 'en', 1, 'https://ror.org/019c89h28 Oruro Technical University Universidad TƩcnica de Oruro'),
(21043, 'https://ror.org/019dhar59', 'en', 1, 'https://ror.org/019dhar59 Trinity College'),
(21044, 'https://ror.org/019dk7w11', 'no_lang_code', 1, 'https://ror.org/019dk7w11 Touch Graphics (United States)'),
(21045, 'https://ror.org/019dka583', 'en', 1, 'https://ror.org/019dka583 Petal School District'),
(21046, 'https://ror.org/019fhz939', 'es', 1, 'https://ror.org/019fhz939 Escuela Superior de Ciencias Empresariales'),
(21047, 'https://ror.org/019fz0m35', 'es', 1, 'https://ror.org/019fz0m35 Universidad Maya de las AmƩricas'),
(21048, 'https://ror.org/019h09n30', 'no_lang_code', 1, 'https://ror.org/019h09n30 Positron Systems (United States)'),
(21049, 'https://ror.org/019hr5954', 'en', 1, 'https://ror.org/019hr5954 Safe Blood for Africa Foundation'),
(21050, 'https://ror.org/019htgm96', 'en', 1, 'https://ror.org/019htgm96 Yili Normal University ä¼ŠēŠåøˆčŒƒå­¦é™¢'),
(21051, 'https://ror.org/019jjbt65', 'en', 1, 'https://ror.org/019jjbt65 St. Josefs Hospital'),
(21052, 'https://ror.org/019kdps70', 'no_lang_code', 1, 'https://ror.org/019kdps70 Marben (France)'),
(21053, 'https://ror.org/019mnh256', 'es', 1, 'https://ror.org/019mnh256 Fundación Centro de Educación Superior Investigación y Profesionalización'),
(21054, 'https://ror.org/019nf3y14', 'en', 1, 'https://ror.org/019nf3y14 General Hospital of Jinan Military Command'),
(21055, 'https://ror.org/019nfqa94', 'no_lang_code', 1, 'https://ror.org/019nfqa94 Biotage (Sweden)'),
(21056, 'https://ror.org/019qrvs61', 'no_lang_code', 1, 'https://ror.org/019qrvs61 Pittards (United Kingdom)'),
(21057, 'https://ror.org/019r04q09', 'no_lang_code', 1, 'https://ror.org/019r04q09 SOLIDpower (Italy)'),
(21058, 'https://ror.org/019rfn866', 'en', 1, 'https://ror.org/019rfn866 Melton Mowbray Hospital'),
(21059, 'https://ror.org/019ryn279', 'en', 1, 'https://ror.org/019ryn279 State and University Library'),
(21060, 'https://ror.org/019s0ax51', 'en', 1, 'https://ror.org/019s0ax51 United Way of the Ozarks'),
(21061, 'https://ror.org/019sq5g45', 'fr', 1, 'https://ror.org/019sq5g45 CollĆØge de Valleyfield'),
(21062, 'https://ror.org/019v2dz26', 'no_lang_code', 1, 'https://ror.org/019v2dz26 Point L (Bulgaria)'),
(21063, 'https://ror.org/019vdbe39', 'en', 1, 'https://ror.org/019vdbe39 Ishigaki Local Meteorological Observatory'),
(21064, 'https://ror.org/019w06c66', 'en', 1, 'https://ror.org/019w06c66 Association canadienne des revues savantes Canadian Association of Learned Journals'),
(21065, 'https://ror.org/019wfwn56', 'no_lang_code', 1, 'https://ror.org/019wfwn56 Putzier OberflƤchentechnik (Germany)'),
(21066, 'https://ror.org/019y83h24', 'fr', 1, 'https://ror.org/019y83h24 Ɖcole SupĆ©rieure Vinci'),
(21067, 'https://ror.org/01a04kj17', 'es', 1, 'https://ror.org/01a04kj17 Universidad Hispanoamerica'),
(21068, 'https://ror.org/01a203m72', 'en', 1, 'https://ror.org/01a203m72 Benson Idahosa University'),
(21069, 'https://ror.org/01a35x275', 'en', 1, 'https://ror.org/01a35x275 Westminster City Council'),
(21070, 'https://ror.org/01a583453', 'en', 1, 'https://ror.org/01a583453 Victoria Heart Institute Foundation'),
(21071, 'https://ror.org/01a7g4m79', 'no_lang_code', 1, 'https://ror.org/01a7g4m79 Anyang Eye Hospital å®‰é˜³åø‚ēœ¼ē§‘åŒ»é™¢'),
(21072, 'https://ror.org/01a81wk68', 'pt', 1, 'https://ror.org/01a81wk68 Centro UniversitƔrio de Ensino Superior do Amazonas'),
(21073, 'https://ror.org/01a8rv278', 'no_lang_code', 1, 'https://ror.org/01a8rv278 Thermacore (United Kingdom)'),
(21074, 'https://ror.org/01adb4m49', 'pt', 1, 'https://ror.org/01adb4m49 Centro UniversitƔrio de Franca'),
(21075, 'https://ror.org/01af87512', 'en', 1, 'https://ror.org/01af87512 National Policing Improvement Agency'),
(21076, 'https://ror.org/01afz2176', 'pt', 1, 'https://ror.org/01afz2176 Universidade Salvador'),
(21077, 'https://ror.org/01agfbd76', 'es', 1, 'https://ror.org/01agfbd76 Universidad de las Californias'),
(21078, 'https://ror.org/01agq7t95', 'en', 1, 'https://ror.org/01agq7t95 Open Window School of Visual Communication'),
(21079, 'https://ror.org/01ahgwn58', 'no_lang_code', 1, 'https://ror.org/01ahgwn58 Eckert & Ziegler (United States)'),
(21080, 'https://ror.org/01ajhw692', 'no_lang_code', 1, 'https://ror.org/01ajhw692 NP Photonics (United States)'),
(21081, 'https://ror.org/01am32j78', 'no_lang_code', 1, 'https://ror.org/01am32j78 New Metals and Chemicals (United Kingdom)'),
(21082, 'https://ror.org/01amy5q57', 'en', 1, 'https://ror.org/01amy5q57 Viewpoints Research Institute'),
(21083, 'https://ror.org/01anxpp02', 'no_lang_code', 1, 'https://ror.org/01anxpp02 TissueVision (United States)'),
(21084, 'https://ror.org/01ar9ff23', 'en', 1, 'https://ror.org/01ar9ff23 Malvern Community Hospital'),
(21085, 'https://ror.org/01avsfs85', 'no_lang_code', 1, 'https://ror.org/01avsfs85 Micromath (United States)'),
(21086, 'https://ror.org/01awap711', 'en', 1, 'https://ror.org/01awap711 Office of Naval Research'),
(21087, 'https://ror.org/01awd1q38', 'en', 1, 'https://ror.org/01awd1q38 Saint Martin''s University'),
(21088, 'https://ror.org/01axmcb72', 'es', 1, 'https://ror.org/01axmcb72 Universidad Dorados'),
(21089, 'https://ror.org/01b06j989', 'no_lang_code', 1, 'https://ror.org/01b06j989 Ubiquitous Energy (United States)'),
(21090, 'https://ror.org/01b0sca09', 'en', 1, 'https://ror.org/01b0sca09 University of El Imam El Mahdi Ų¬Ų§Ł…Ų¹Ų© الامام Ų§Ł„Ł…Ł‡ŲÆŁŠ'),
(21091, 'https://ror.org/01b0z6r56', 'sv', 1, 'https://ror.org/01b0z6r56 Teknikens Hus The Technology House'),
(21092, 'https://ror.org/01b2wke14', 'no_lang_code', 1, 'https://ror.org/01b2wke14 Wowbagger Productions'),
(21093, 'https://ror.org/01b3ar606', 'no_lang_code', 1, 'https://ror.org/01b3ar606 Eliko Tehnoloogia Arenduskeskus'),
(21094, 'https://ror.org/01b4rx434', 'en', 1, 'https://ror.org/01b4rx434 Union of the Baltic Cities'),
(21095, 'https://ror.org/01b6bqq51', 'no_lang_code', 1, 'https://ror.org/01b6bqq51 Mesa Analytics & Computing (United States)'),
(21096, 'https://ror.org/01b755e19', 'no_lang_code', 1, 'https://ror.org/01b755e19 Pacbrake (Canada)'),
(21097, 'https://ror.org/01b8x5j53', 'en', 1, 'https://ror.org/01b8x5j53 Bệnh viện Trung ĘÆĘ”ng Huįŗæ Hue Central Hospital'),
(21098, 'https://ror.org/01b9q6e25', 'es', 1, 'https://ror.org/01b9q6e25 Universidad Valle Continental'),
(21099, 'https://ror.org/01ba6zt09', 'no_lang_code', 1, 'https://ror.org/01ba6zt09 Meritor (Germany)'),
(21100, 'https://ror.org/01baz4g36', 'no_lang_code', 1, 'https://ror.org/01baz4g36 Gfi Informatique (France)'),
(21101, 'https://ror.org/01bb1ac21', 'no_lang_code', 1, 'https://ror.org/01bb1ac21 SCI Engineered Materials (United States)'),
(21102, 'https://ror.org/01bc2jm91', 'en', 1, 'https://ror.org/01bc2jm91 Haywards Heath Hospital'),
(21103, 'https://ror.org/01bcan022', 'en', 1, 'https://ror.org/01bcan022 National Aids Education and Services for Minorities'),
(21104, 'https://ror.org/01bcjx771', 'en', 1, 'https://ror.org/01bcjx771 Southern Astrophysical Research Telescope'),
(21105, 'https://ror.org/01bgs7g74', 'no_lang_code', 1, 'https://ror.org/01bgs7g74 Roctest (Canada)'),
(21106, 'https://ror.org/01bhb2k54', 'en', 1, 'https://ror.org/01bhb2k54 Quality Meat Scotland'),
(21107, 'https://ror.org/01bnn5p02', 'en', 1, 'https://ror.org/01bnn5p02 Uplift'),
(21108, 'https://ror.org/01bnxkh93', 'en', 1, 'https://ror.org/01bnxkh93 Petersfield Community Hospital'),
(21109, 'https://ror.org/01bpk4154', 'en', 1, 'https://ror.org/01bpk4154 St Clement''s Hospital'),
(21110, 'https://ror.org/01bqp7k56', 'en', 1, 'https://ror.org/01bqp7k56 University of Advancing Technology'),
(21111, 'https://ror.org/01brsq570', 'en', 1, 'https://ror.org/01brsq570 Weymouth Community Hospital'),
(21112, 'https://ror.org/01brx0y03', 'no_lang_code', 1, 'https://ror.org/01brx0y03 Vitec (France)'),
(21113, 'https://ror.org/01btem129', 'no_lang_code', 1, 'https://ror.org/01btem129 LeadScope (United States)'),
(21114, 'https://ror.org/01btmgx36', 'en', 1, 'https://ror.org/01btmgx36 Spire Cambridge Lea Hospital'),
(21115, 'https://ror.org/01btzfj32', 'en', 1, 'https://ror.org/01btzfj32 BMI Healthcare'),
(21116, 'https://ror.org/01bxyhb88', 'en', 1, 'https://ror.org/01bxyhb88 Nicaraguan University of Science and Technology Universidad Nicaragüense de Ciencia y Tecnologia'),
(21117, 'https://ror.org/01bzgy570', 'en', 1, 'https://ror.org/01bzgy570 Roberts Wesleyan College'),
(21118, 'https://ror.org/01c1hh988', 'no_lang_code', 1, 'https://ror.org/01c1hh988 PalmSens (Netherlands)'),
(21119, 'https://ror.org/01c3gv589', 'en', 1, 'https://ror.org/01c3gv589 Walters Public Schools'),
(21120, 'https://ror.org/01c3gx397', 'en', 1, 'https://ror.org/01c3gx397 Nederlands Jeugdinstituut Netherlands Youth Institute'),
(21121, 'https://ror.org/01c3s4w91', 'en', 1, 'https://ror.org/01c3s4w91 University of Fredericton'),
(21122, 'https://ror.org/01c7gck54', 'en', 1, 'https://ror.org/01c7gck54 Natural Procreative Technology'),
(21123, 'https://ror.org/01c8qhb70', 'en', 1, 'https://ror.org/01c8qhb70 College of The Bahamas'),
(21124, 'https://ror.org/01c8vqx53', 'pt', 1, 'https://ror.org/01c8vqx53 Instituto Superior PolitƩcnico de Songo'),
(21125, 'https://ror.org/01c983z55', 'no_lang_code', 1, 'https://ror.org/01c983z55 New World Medical (United States)'),
(21126, 'https://ror.org/01caave54', 'no_lang_code', 1, 'https://ror.org/01caave54 Technostics (United Kingdom)'),
(21127, 'https://ror.org/01cbxe745', 'en', 1, 'https://ror.org/01cbxe745 Queen Victoria Memorial Hospital'),
(21128, 'https://ror.org/01cqxqw57', 'no_lang_code', 1, 'https://ror.org/01cqxqw57 Norton Aluminium (United Kingdom)'),
(21129, 'https://ror.org/01crqqh49', 'en', 1, 'https://ror.org/01crqqh49 Parmenides Foundation'),
(21130, 'https://ror.org/01crvtj80', 'pt', 1, 'https://ror.org/01crvtj80 Instituto MauĆ” de Tecnologia'),
(21131, 'https://ror.org/01crx9472', 'en', 1, 'https://ror.org/01crx9472 Canadian Association for Social Work Education'),
(21132, 'https://ror.org/01cs05k22', 'no_lang_code', 1, 'https://ror.org/01cs05k22 Belit (Serbia)'),
(21133, 'https://ror.org/01ct8rs42', 'en', 1, 'https://ror.org/01ct8rs42 National Institute of Public Health įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‡įž¶įžįž·įžŸįž»įžįž—įž¶įž–įžŸįž¶įž’įž¶įžšįžŽįŸˆ'),
(21134, 'https://ror.org/01cw3ja29', 'en', 1, 'https://ror.org/01cw3ja29 Higher Institute of Social Service'),
(21135, 'https://ror.org/01cwv3a06', 'no_lang_code', 1, 'https://ror.org/01cwv3a06 Sixteen Films (United Kingdom)'),
(21136, 'https://ror.org/01cxaar63', 'no_lang_code', 1, 'https://ror.org/01cxaar63 Skunkwerks Software (Canada)'),
(21137, 'https://ror.org/01cxg6q60', 'no_lang_code', 1, 'https://ror.org/01cxg6q60 Hidaka Hospital ひだか病院'),
(21138, 'https://ror.org/01cxtyq16', 'es', 1, 'https://ror.org/01cxtyq16 Isae Universidad'),
(21139, 'https://ror.org/01cysch38', 'en', 1, 'https://ror.org/01cysch38 Quebec Federation of University Students'),
(21140, 'https://ror.org/01cz7pz66', 'no_lang_code', 1, 'https://ror.org/01cz7pz66 MitoHealth (United States)'),
(21141, 'https://ror.org/01d0ans39', 'en', 1, 'https://ror.org/01d0ans39 Nuclear Regulatory Authority of the Slovak Republic'),
(21142, 'https://ror.org/01d12jx16', 'no_lang_code', 1, 'https://ror.org/01d12jx16 Nanohmics (United States)'),
(21143, 'https://ror.org/01d1pbg09', 'fr', 1, 'https://ror.org/01d1pbg09 Ɖcole Marocaine des Sciences de l''IngĆ©nieur المدرسة Ų§Ł„Ł…ŲŗŲ±ŲØŁŠŲ© Ł„Ų¹Ł„ŁˆŁ… الهندسة'),
(21144, 'https://ror.org/01d646h83', 'no_lang_code', 1, 'https://ror.org/01d646h83 Smartec (Switzerland)'),
(21145, 'https://ror.org/01d8h9b46', 'en', 1, 'https://ror.org/01d8h9b46 Voyager Sopris Learning'),
(21146, 'https://ror.org/01d97fd71', 'en', 1, 'https://ror.org/01d97fd71 Sedgefield Community Hospital'),
(21147, 'https://ror.org/01dd13a92', 'en', 1, 'https://ror.org/01dd13a92 Sinai University Ų¬Ų§Ł…Ų¹Ų© Ų³ŁŠŁ†Ų§Ų”'),
(21148, 'https://ror.org/01ddvnr27', 'fr', 1, 'https://ror.org/01ddvnr27 Ɖcole SupĆ©rieure de Psychologie'),
(21149, 'https://ror.org/01deq2m43', 'es', 1, 'https://ror.org/01deq2m43 Universidad Del Valle De Cuernavaca'),
(21150, 'https://ror.org/01df6fw27', 'en', 1, 'https://ror.org/01df6fw27 National Patient Safety Foundation'),
(21151, 'https://ror.org/01dh1ha31', 'no_lang_code', 1, 'https://ror.org/01dh1ha31 Stan''s Cafe (United Kingdom)'),
(21152, 'https://ror.org/01dhpn446', 'no_lang_code', 1, 'https://ror.org/01dhpn446 Worgas Bruciatori (Italy)'),
(21153, 'https://ror.org/01dp3s597', 'en', 1, 'https://ror.org/01dp3s597 Thresholds'),
(21154, 'https://ror.org/01dx1mr58', 'en', 1, 'https://ror.org/01dx1mr58 Royal Stoke University Hospital'),
(21155, 'https://ror.org/01dx3d866', 'no_lang_code', 1, 'https://ror.org/01dx3d866 Nesch (United States)'),
(21156, 'https://ror.org/01dxdky35', 'en', 1, 'https://ror.org/01dxdky35 Sidwell Friends School'),
(21157, 'https://ror.org/01dyr7034', 'en', 1, 'https://ror.org/01dyr7034 Yan''an University 延安大学'),
(21158, 'https://ror.org/01dzqrq04', 'pt', 1, 'https://ror.org/01dzqrq04 Universidade La Salle'),
(21159, 'https://ror.org/01e0nt744', 'en', 1, 'https://ror.org/01e0nt744 Naga Municipal Hospital 公立那賀病院'),
(21160, 'https://ror.org/01e0qt032', 'en', 1, 'https://ror.org/01e0qt032 Polish Institute of International Affairs'),
(21161, 'https://ror.org/01e2apd69', 'en', 1, 'https://ror.org/01e2apd69 Wytheville Community College'),
(21162, 'https://ror.org/01e2brw58', 'no_lang_code', 1, 'https://ror.org/01e2brw58 Seecon (Switzerland)'),
(21163, 'https://ror.org/01e2rnt89', 'en', 1, 'https://ror.org/01e2rnt89 Trans European Policy Studies Association'),
(21164, 'https://ror.org/01e3wqt79', 'en', 1, 'https://ror.org/01e3wqt79 Prevent of Brevard'),
(21165, 'https://ror.org/01e6b1w57', 'no_lang_code', 1, 'https://ror.org/01e6b1w57 MicroLS (Germany)'),
(21166, 'https://ror.org/01e6j9276', 'en', 1, 'https://ror.org/01e6j9276 Caltech Submillimeter Observatory'),
(21167, 'https://ror.org/01e78mv37', 'en', 1, 'https://ror.org/01e78mv37 Seminole State College Oklahoma'),
(21168, 'https://ror.org/01e7fkm87', 'fr', 1, 'https://ror.org/01e7fkm87 Ɖcole SupĆ©rieure de Design et des Arts Visuels'),
(21169, 'https://ror.org/01e8sqr65', 'en', 1, 'https://ror.org/01e8sqr65 Parent Support Network of Rhode Island'),
(21170, 'https://ror.org/01e9c5p79', 'no_lang_code', 1, 'https://ror.org/01e9c5p79 Stirling Dynamics (United Kingdom)'),
(21171, 'https://ror.org/01e9g9p17', 'en', 1, 'https://ror.org/01e9g9p17 Ysbyty Gwynedd Hospital NHS Trust'),
(21172, 'https://ror.org/01eaxze48', 'en', 1, 'https://ror.org/01eaxze48 Catholic University of Dry Tropic Farming and Livestock Universidad Católica del Trópico Seco'),
(21173, 'https://ror.org/01ebkw403', 'es', 1, 'https://ror.org/01ebkw403 Universidad YMCA'),
(21174, 'https://ror.org/01ee0g236', 'pt', 1, 'https://ror.org/01ee0g236 Universidade do Estado do Rio Grande do Norte'),
(21175, 'https://ror.org/01ef0g096', 'pt', 1, 'https://ror.org/01ef0g096 Universidade do Planalto Catarinense'),
(21176, 'https://ror.org/01egjwb26', 'fr', 1, 'https://ror.org/01egjwb26 MinistĆØre de l’Éducation nationale, de l’Enfance et de la Jeunesse'),
(21177, 'https://ror.org/01egpew89', 'no_lang_code', 1, 'https://ror.org/01egpew89 YTKO (United Kingdom)'),
(21178, 'https://ror.org/01eh8k851', 'en', 1, 'https://ror.org/01eh8k851 Bridport Community Hospital'),
(21179, 'https://ror.org/01ehwm037', 'no_lang_code', 1, 'https://ror.org/01ehwm037 Ruskinn Technology (United Kingdom)'),
(21180, 'https://ror.org/01ekj9t27', 'no_lang_code', 1, 'https://ror.org/01ekj9t27 Nissan (Switzerland)'),
(21181, 'https://ror.org/01em71b57', 'es', 1, 'https://ror.org/01em71b57 Universidad Católica Santa Rosa'),
(21182, 'https://ror.org/01emh3a91', 'no_lang_code', 1, 'https://ror.org/01emh3a91 Midlands Aerospace Alliance'),
(21183, 'https://ror.org/01en9z723', 'en', 1, 'https://ror.org/01en9z723 Redcar Primary Care Hospital'),
(21184, 'https://ror.org/01ep0vp31', 'no_lang_code', 1, 'https://ror.org/01ep0vp31 Rheinmetall (Germany)'),
(21185, 'https://ror.org/01ep18d71', 'en', 1, 'https://ror.org/01ep18d71 Northern Lincolnshire and Goole Hospitals NHS Foundation Trust'),
(21186, 'https://ror.org/01ep8zz70', 'no_lang_code', 1, 'https://ror.org/01ep8zz70 SSPA (Sweden)'),
(21187, 'https://ror.org/01erhpg17', 'en', 1, 'https://ror.org/01erhpg17 Catholic University of Madagascar Oniversite Katolika eto Madagasikara UniversitƩ Catholique de Madagascar'),
(21188, 'https://ror.org/01esc3z41', 'en', 1, 'https://ror.org/01esc3z41 Wildlife Conservation Society Canada'),
(21189, 'https://ror.org/01eyjev41', 'es', 1, 'https://ror.org/01eyjev41 Universidad Europea'),
(21190, 'https://ror.org/01f00fn77', 'en', 1, 'https://ror.org/01f00fn77 Fresno Pacific University'),
(21191, 'https://ror.org/01f0erc76', 'no_lang_code', 1, 'https://ror.org/01f0erc76 Uncopiers'),
(21192, 'https://ror.org/01f0k6s82', 'en', 1, 'https://ror.org/01f0k6s82 Morgantown High School'),
(21193, 'https://ror.org/01f1vsw14', 'no_lang_code', 1, 'https://ror.org/01f1vsw14 Raytek (Germany)'),
(21194, 'https://ror.org/01f3f2284', 'en', 1, 'https://ror.org/01f3f2284 National Council for Voluntary Organisations'),
(21195, 'https://ror.org/01f51hc20', 'en', 1, 'https://ror.org/01f51hc20 State Agency for the Prevention of Alcohol Related Problems'),
(21196, 'https://ror.org/01f7yhe80', 'no_lang_code', 1, 'https://ror.org/01f7yhe80 Relight (Italy)'),
(21197, 'https://ror.org/01fc8vj32', 'en', 1, 'https://ror.org/01fc8vj32 Zachary Merton Hospital'),
(21198, 'https://ror.org/01fd10471', 'en', 1, 'https://ror.org/01fd10471 Didcot Community Hospital'),
(21199, 'https://ror.org/01fgnkn65', 'en', 1, 'https://ror.org/01fgnkn65 Euro-Mediterranean Water Information System MƩditerranƩen d''Information sur les Savoir'),
(21200, 'https://ror.org/01fgscm92', 'es', 1, 'https://ror.org/01fgscm92 Universidad de HuƔnuco'),
(21201, 'https://ror.org/01fk6s398', 'no_lang_code', 1, 'https://ror.org/01fk6s398 Gilead Sciences (Canada)'),
(21202, 'https://ror.org/01fmzkf37', 'no_lang_code', 1, 'https://ror.org/01fmzkf37 Pervatech (Netherlands)'),
(21203, 'https://ror.org/01fnv4f45', 'no_lang_code', 1, 'https://ror.org/01fnv4f45 Sogesca (Italy)'),
(21204, 'https://ror.org/01fpdz014', 'en', 1, 'https://ror.org/01fpdz014 Biggleswade Hospital Spring House'),
(21205, 'https://ror.org/01fsqt491', 'no_lang_code', 1, 'https://ror.org/01fsqt491 Da Vinci Institute'),
(21206, 'https://ror.org/01fv8ny24', 'fr', 1, 'https://ror.org/01fv8ny24 Ɖcole SupĆ©rieure des Ɖtudes Administratives et Commerciales'),
(21207, 'https://ror.org/01fvz3c20', 'es', 1, 'https://ror.org/01fvz3c20 Universidad del Valle del Fuerte'),
(21208, 'https://ror.org/01fx4ky02', 'no_lang_code', 1, 'https://ror.org/01fx4ky02 Protagen (Germany)'),
(21209, 'https://ror.org/01fzsd381', 'en', 1, 'https://ror.org/01fzsd381 HafenCity University Hamburg HafenCity UniversitƤt Hamburg'),
(21210, 'https://ror.org/01g03yb06', 'pt', 1, 'https://ror.org/01g03yb06 Universidade Gregório Semedo'),
(21211, 'https://ror.org/01g37t325', 'fr', 1, 'https://ror.org/01g37t325 UniversitĆ© Ibn Khaldoun Ų¬Ų§Ł…Ų¹Ų© ؄بن Ų®Ł„ŲÆŁˆŁ† الخاصّة'),
(21212, 'https://ror.org/01g5skz36', 'en', 1, 'https://ror.org/01g5skz36 Ahfad University for Women Ų¬Ų§Ł…Ų¹Ų© الأحفاد للبنات'),
(21213, 'https://ror.org/01g79at26', 'en', 1, 'https://ror.org/01g79at26 Research Institute for Tropical Medicine'),
(21214, 'https://ror.org/01g8wqh49', 'no_lang_code', 1, 'https://ror.org/01g8wqh49 Talkamatic (Sweden)'),
(21215, 'https://ror.org/01g96h026', 'en', 1, 'https://ror.org/01g96h026 Corby Community Hospital'),
(21216, 'https://ror.org/01g9fy909', 'no_lang_code', 1, 'https://ror.org/01g9fy909 ProAmpac (Canada)'),
(21217, 'https://ror.org/01g9vka88', 'en', 1, 'https://ror.org/01g9vka88 College Medical Center'),
(21218, 'https://ror.org/01gaavs46', 'en', 1, 'https://ror.org/01gaavs46 Justo Sierra University Universidad Justo Sierra'),
(21219, 'https://ror.org/01gah9v52', 'pt', 1, 'https://ror.org/01gah9v52 Centro UniversitƔrio de Patos de Minas'),
(21220, 'https://ror.org/01gbfax37', 'en', 1, 'https://ror.org/01gbfax37 Shandong Jianzhu University å±±äøœå»ŗē­‘å¤§å­¦'),
(21221, 'https://ror.org/01gcsh020', 'en', 1, 'https://ror.org/01gcsh020 Hounslow and Richmond Community Healthcare NHS Trust'),
(21222, 'https://ror.org/01gddze50', 'en', 1, 'https://ror.org/01gddze50 Central Michigan University Research Corporation'),
(21223, 'https://ror.org/01gdg5y72', 'no_lang_code', 1, 'https://ror.org/01gdg5y72 Syntesa (Faroe Islands)'),
(21224, 'https://ror.org/01gdk5c28', 'fr', 1, 'https://ror.org/01gdk5c28 Institut des Hautes Ɖtudes Bancaires et FinanciĆØres'),
(21225, 'https://ror.org/01gdx5384', 'no_lang_code', 1, 'https://ror.org/01gdx5384 Ribocon (Germany)'),
(21226, 'https://ror.org/01gfmr708', 'no_lang_code', 1, 'https://ror.org/01gfmr708 MHG Systems (Finland)'),
(21227, 'https://ror.org/01ggm0w72', 'es', 1, 'https://ror.org/01ggm0w72 Universidad Internacional de La Paz'),
(21228, 'https://ror.org/01ggnn306', 'en', 1, 'https://ror.org/01ggnn306 Hunan University of Arts and Science ę¹–å—ę–‡ē†å­¦é™¢'),
(21229, 'https://ror.org/01ghjfc28', 'en', 1, 'https://ror.org/01ghjfc28 Tigard-Tualatin School District'),
(21230, 'https://ror.org/01gnc7759', 'en', 1, 'https://ror.org/01gnc7759 Technical University of Angola Universidade TƩcnica de Angola'),
(21231, 'https://ror.org/01gnx5040', 'en', 1, 'https://ror.org/01gnx5040 Cavendish Hospital'),
(21232, 'https://ror.org/01gsj8877', 'es', 1, 'https://ror.org/01gsj8877 Universidad Hispanoamericana'),
(21233, 'https://ror.org/01gsm0s82', 'en', 1, 'https://ror.org/01gsm0s82 National Postdoctoral Association'),
(21234, 'https://ror.org/01gvkyp03', 'en', 1, 'https://ror.org/01gvkyp03 National Institute of Oceanography ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„ą¤¦ą„ą¤° ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®¤ąÆ‡ą®šą®æą®Æ ą®•ą®Ÿą®²ą®æą®Æą®²ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ ą“Øą“¾ą“·ą“£ąµ½ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą““ą“·ąµą“Æą“¾ą“Øąµ‹ą“—ąµą“°ą“«ą“æ'),
(21235, 'https://ror.org/01gxfn525', 'es', 1, 'https://ror.org/01gxfn525 Universidad de Ciencias y Artes de Chiapas'),
(21236, 'https://ror.org/01gxw4h97', 'en', 1, 'https://ror.org/01gxw4h97 Nottingham Community Housing Association'),
(21237, 'https://ror.org/01gyar131', 'en', 1, 'https://ror.org/01gyar131 Tarporley War Memorial Hospital'),
(21238, 'https://ror.org/01h0jwd72', 'no_lang_code', 1, 'https://ror.org/01h0jwd72 Alfa Laval (France)'),
(21239, 'https://ror.org/01h1szm41', 'es', 1, 'https://ror.org/01h1szm41 Universidad de Chiclayo'),
(21240, 'https://ror.org/01h2m4f20', 'en', 1, 'https://ror.org/01h2m4f20 Osaka Sangyo University å¤§é˜Ŗē”£ę„­å¤§å­¦'),
(21241, 'https://ror.org/01h39r951', 'es', 1, 'https://ror.org/01h39r951 Universidad Paccioli Xalapa'),
(21242, 'https://ror.org/01h4zj733', 'en', 1, 'https://ror.org/01h4zj733 North Cambridgeshire Hospital'),
(21243, 'https://ror.org/01h558915', 'es', 1, 'https://ror.org/01h558915 Universidad Católica Santo Toribio de Mogrovejo'),
(21244, 'https://ror.org/01h5hcg91', 'no_lang_code', 1, 'https://ror.org/01h5hcg91 Valitor (United States)'),
(21245, 'https://ror.org/01h62a972', 'es', 1, 'https://ror.org/01h62a972 Corporación Universitaria de Ciencia y Desarrollo'),
(21246, 'https://ror.org/01h7rq191', 'en', 1, 'https://ror.org/01h7rq191 Torrington Hospital'),
(21247, 'https://ror.org/01h8pq181', 'no_lang_code', 1, 'https://ror.org/01h8pq181 Ailleron (Poland)'),
(21248, 'https://ror.org/01h8yp048', 'es', 1, 'https://ror.org/01h8yp048 Universidad del Cono Sur de las AmƩricas'),
(21249, 'https://ror.org/01hb6tn62', 'es', 1, 'https://ror.org/01hb6tn62 Fundación Universitaria del Área Andina'),
(21250, 'https://ror.org/01hcefx46', 'en', 1, 'https://ror.org/01hcefx46 ShenZhen People’s Hospital ę·±åœ³åø‚äŗŗę°‘åŒ»é™¢'),
(21251, 'https://ror.org/01hf1y767', 'no_lang_code', 1, 'https://ror.org/01hf1y767 Valeport (United Kingdom)'),
(21252, 'https://ror.org/01hf4z573', 'no_lang_code', 1, 'https://ror.org/01hf4z573 Smithers Group (United Kingdom)'),
(21253, 'https://ror.org/01hftn006', 'no_lang_code', 1, 'https://ror.org/01hftn006 Scientific Software International (United States)'),
(21254, 'https://ror.org/01hg95g34', 'en', 1, 'https://ror.org/01hg95g34 York Archaeological Trust'),
(21255, 'https://ror.org/01hhbtp58', 'en', 1, 'https://ror.org/01hhbtp58 Julius Nyerere University of Kankan UniversitƩ Julius Nyerere de Kankan'),
(21256, 'https://ror.org/01hhm9k47', 'en', 1, 'https://ror.org/01hhm9k47 Parent Project Muscular Dystrophy'),
(21257, 'https://ror.org/01hjdgr63', 'pt', 1, 'https://ror.org/01hjdgr63 Instituto Superior de Transportes e ComunicaƧƵe'),
(21258, 'https://ror.org/01hjj5n27', 'en', 1, 'https://ror.org/01hjj5n27 University of Science and Technology of Benin UniversitƩ des Sciences et Technologies du BƩnin'),
(21259, 'https://ror.org/01hk15q16', 'en', 1, 'https://ror.org/01hk15q16 Northwood University'),
(21260, 'https://ror.org/01hk5ha98', 'en', 1, 'https://ror.org/01hk5ha98 St Mary''s Hospital'),
(21261, 'https://ror.org/01hnk0667', 'en', 1, 'https://ror.org/01hnk0667 Zrínyi Miklós National Defence University'),
(21262, 'https://ror.org/01hnk4t11', 'no_lang_code', 1, 'https://ror.org/01hnk4t11 Repotec (Austria)'),
(21263, 'https://ror.org/01hnrbb29', 'en', 1, 'https://ror.org/01hnrbb29 Financial University Финансовый ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ при ŠŸŃ€Š°Š²ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Šµ Российской ФеГерации'),
(21264, 'https://ror.org/01hp71z51', 'no_lang_code', 1, 'https://ror.org/01hp71z51 Philochem (Switzerland)'),
(21265, 'https://ror.org/01hpjfm62', 'en', 1, 'https://ror.org/01hpjfm62 National Society of Professional Engineers'),
(21266, 'https://ror.org/01hs21r74', 'en', 1, 'https://ror.org/01hs21r74 Anyang Tumor Hospital å®‰é˜³åø‚č‚æē˜¤åŒ»é™¢'),
(21267, 'https://ror.org/01hsdm129', 'en', 1, 'https://ror.org/01hsdm129 Wisconsin State Office of the Governor'),
(21268, 'https://ror.org/01hwhvh84', 'no_lang_code', 1, 'https://ror.org/01hwhvh84 ObjectSecurity (United Kingdom)'),
(21269, 'https://ror.org/01hwpsz06', 'en', 1, 'https://ror.org/01hwpsz06 Federal Food Safety and Veterinary Office'),
(21270, 'https://ror.org/01hy5h819', 'no_lang_code', 1, 'https://ror.org/01hy5h819 First Sensor (Canada)'),
(21271, 'https://ror.org/01j0sjc77', 'no_lang_code', 1, 'https://ror.org/01j0sjc77 Vanguard Foundry (United Kingdom)'),
(21272, 'https://ror.org/01j3b2975', 'es', 1, 'https://ror.org/01j3b2975 Universidad Metropolitana de Asunción'),
(21273, 'https://ror.org/01j3wmr10', 'en', 1, 'https://ror.org/01j3wmr10 Accrington Victoria Hospital'),
(21274, 'https://ror.org/01j5awv26', 'en', 1, 'https://ror.org/01j5awv26 Prince Mohammed bin Abdulaziz Hospital'),
(21275, 'https://ror.org/01j64ar73', 'en', 1, 'https://ror.org/01j64ar73 East Cheshire NHS Trust'),
(21276, 'https://ror.org/01j7j0055', 'no_lang_code', 1, 'https://ror.org/01j7j0055 Lear (Spain)'),
(21277, 'https://ror.org/01j7x7d84', 'no_lang_code', 1, 'https://ror.org/01j7x7d84 Alzaiem Alazhari University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ų¹ŁŠŁ… Ų§Ł„Ų£Ų²Ł‡Ų±ŁŠ'),
(21278, 'https://ror.org/01j8j8a87', 'no_lang_code', 1, 'https://ror.org/01j8j8a87 Nanothinx (Greece)'),
(21279, 'https://ror.org/01j9fyk40', 'en', 1, 'https://ror.org/01j9fyk40 Chester le Street Community Hospital'),
(21280, 'https://ror.org/01jases89', 'en', 1, 'https://ror.org/01jases89 WaterCampus'),
(21281, 'https://ror.org/01jc1nc57', 'es', 1, 'https://ror.org/01jc1nc57 Corporación Universitaria del Huila'),
(21282, 'https://ror.org/01je02926', 'en', 1, 'https://ror.org/01je02926 Liverpool Heart and Chest Hospital NHS Trust'),
(21283, 'https://ror.org/01jfptw72', 'pt', 1, 'https://ror.org/01jfptw72 Centro UniversitÔrio do Triângulo'),
(21284, 'https://ror.org/01jg4cx18', 'no_lang_code', 1, 'https://ror.org/01jg4cx18 Statiflo International (United Kingdom)'),
(21285, 'https://ror.org/01jgs5r19', 'es', 1, 'https://ror.org/01jgs5r19 Universidad Privada de Pucallpa'),
(21286, 'https://ror.org/01jmwv231', 'en', 1, 'https://ror.org/01jmwv231 Witney Community Hospital'),
(21287, 'https://ror.org/01jmxjw73', 'no_lang_code', 1, 'https://ror.org/01jmxjw73 Cabot Microelectronics (United States)'),
(21288, 'https://ror.org/01jncky63', 'en', 1, 'https://ror.org/01jncky63 Williams & Associates'),
(21289, 'https://ror.org/01jp0tk64', 'fr', 1, 'https://ror.org/01jp0tk64 Gaston Berger University UniversitƩ Gaston Berger'),
(21290, 'https://ror.org/01jq32a23', 'no_lang_code', 1, 'https://ror.org/01jq32a23 Swanbarton (United Kingdom)'),
(21291, 'https://ror.org/01jrpnz59', 'en', 1, 'https://ror.org/01jrpnz59 Serviciul Hidrmetrologic de Stat State Hydrometeorological Service'),
(21292, 'https://ror.org/01jrywz31', 'no_lang_code', 1, 'https://ror.org/01jrywz31 Optimare (Germany)'),
(21293, 'https://ror.org/01js8h045', 'en', 1, 'https://ror.org/01js8h045 Bērnu klīniskā universitātes slimnīca Children''s Clinical University Hospital'),
(21294, 'https://ror.org/01jthvx19', 'en', 1, 'https://ror.org/01jthvx19 University College of Management Studies'),
(21295, 'https://ror.org/01jtws262', 'en', 1, 'https://ror.org/01jtws262 Chase Acute Outpatients Hospital'),
(21296, 'https://ror.org/01jxhzn15', 'es', 1, 'https://ror.org/01jxhzn15 Centro Universitario MƩxico Valle'),
(21297, 'https://ror.org/01jyyrs78', 'en', 1, 'https://ror.org/01jyyrs78 Dr Edward Koch Foundation'),
(21298, 'https://ror.org/01jzgmh92', 'no_lang_code', 1, 'https://ror.org/01jzgmh92 TRW Automotive (United States)'),
(21299, 'https://ror.org/01k0q5v34', 'en', 1, 'https://ror.org/01k0q5v34 PLA 306 Hospital 解放军306医院'),
(21300, 'https://ror.org/01k1qm960', 'no_lang_code', 1, 'https://ror.org/01k1qm960 Polytronix (United States)'),
(21301, 'https://ror.org/01k2edc04', 'en', 1, 'https://ror.org/01k2edc04 Carter Bequest Primary Care Hospital'),
(21302, 'https://ror.org/01k322j33', 'en', 1, 'https://ror.org/01k322j33 Hellesdon Hospital'),
(21303, 'https://ror.org/01k42ef11', 'en', 1, 'https://ror.org/01k42ef11 Department of County ​Human Services'),
(21304, 'https://ror.org/01k4bzs92', 'en', 1, 'https://ror.org/01k4bzs92 Association des CartothĆØques et Archives Cartographiques du Canada, Association of Canadian Map Libraries and Archives'),
(21305, 'https://ror.org/01k7x2c64', 'en', 1, 'https://ror.org/01k7x2c64 Riverside County Superior Court'),
(21306, 'https://ror.org/01k80zh77', 'en', 1, 'https://ror.org/01k80zh77 Xingming Observatory'),
(21307, 'https://ror.org/01kavk215', 'no_lang_code', 1, 'https://ror.org/01kavk215 Sineurop Nanotech (Germany)'),
(21308, 'https://ror.org/01kb1df65', 'en', 1, 'https://ror.org/01kb1df65 National Council for Geographic Education'),
(21309, 'https://ror.org/01kdzej58', 'en', 1, 'https://ror.org/01kdzej58 Bohai University 渤海大学'),
(21310, 'https://ror.org/01keak954', 'no_lang_code', 1, 'https://ror.org/01keak954 Microelectronica (Romania)'),
(21311, 'https://ror.org/01ketq791', 'en', 1, 'https://ror.org/01ketq791 Aldeburgh Hospital'),
(21312, 'https://ror.org/01kf1n431', 'en', 1, 'https://ror.org/01kf1n431 Minnesota Educational Computing Consortium'),
(21313, 'https://ror.org/01kfgca96', 'no_lang_code', 1, 'https://ror.org/01kfgca96 VersuchsStollen Hagerbach (Switzerland)'),
(21314, 'https://ror.org/01kgmdj61', 'en', 1, 'https://ror.org/01kgmdj61 Canadian Arctic Resources Committee'),
(21315, 'https://ror.org/01kh3en48', 'no_lang_code', 1, 'https://ror.org/01kh3en48 Prysmian Group (Italy)'),
(21316, 'https://ror.org/01kmcym32', 'en', 1, 'https://ror.org/01kmcym32 Ellinbank Observatory'),
(21317, 'https://ror.org/01kpbz654', 'en', 1, 'https://ror.org/01kpbz654 National School Boards Association'),
(21318, 'https://ror.org/01kse2t29', 'no_lang_code', 1, 'https://ror.org/01kse2t29 Microgen (United States)'),
(21319, 'https://ror.org/01kt2cx88', 'en', 1, 'https://ror.org/01kt2cx88 Escuela AgrĆ­cola Panamericana Zamorano Zamorano Pan-American Agricultural School'),
(21320, 'https://ror.org/01kwj6g62', 'en', 1, 'https://ror.org/01kwj6g62 South Hams Hospital'),
(21321, 'https://ror.org/01kyn4312', 'es', 1, 'https://ror.org/01kyn4312 Universidad Agroforestal Fernando Arturo de MeriƱo'),
(21322, 'https://ror.org/01kyqk585', 'en', 1, 'https://ror.org/01kyqk585 Sejet Plant Breeding'),
(21323, 'https://ror.org/01kyyzm82', 'es', 1, 'https://ror.org/01kyyzm82 Universidad Central'),
(21324, 'https://ror.org/01kz0v978', 'no_lang_code', 1, 'https://ror.org/01kz0v978 eBaltics (Latvia)'),
(21325, 'https://ror.org/01m274k23', 'no_lang_code', 1, 'https://ror.org/01m274k23 Zoetis (Canada)'),
(21326, 'https://ror.org/01m4ay116', 'en', 1, 'https://ror.org/01m4ay116 Edward Hain Community Hospital'),
(21327, 'https://ror.org/01m53p035', 'en', 1, 'https://ror.org/01m53p035 Tickhill Road Hospital'),
(21328, 'https://ror.org/01m6agm53', 'en', 1, 'https://ror.org/01m6agm53 Prospect Park Hospital'),
(21329, 'https://ror.org/01m71fs94', 'en', 1, 'https://ror.org/01m71fs94 Dutch Polymer Institute'),
(21330, 'https://ror.org/01m9ht412', 'no_lang_code', 1, 'https://ror.org/01m9ht412 PrvnĆ­ BrněnskĆ” StrojĆ­rna VelkĆ” BĆ­teÅ” (Czechia)'),
(21331, 'https://ror.org/01mc2bj25', 'no_lang_code', 1, 'https://ror.org/01mc2bj25 Thor Technologies (United States)'),
(21332, 'https://ror.org/01mdg2p21', 'en', 1, 'https://ror.org/01mdg2p21 Oregon Observatory'),
(21333, 'https://ror.org/01mdm1v36', 'en', 1, 'https://ror.org/01mdm1v36 Central University Universidad Central'),
(21334, 'https://ror.org/01mdqeh78', 'en', 1, 'https://ror.org/01mdqeh78 Agricultural University of Georgia'),
(21335, 'https://ror.org/01mgm2h35', 'en', 1, 'https://ror.org/01mgm2h35 Center of Excellence in Energy Efficiency'),
(21336, 'https://ror.org/01mhfg188', 'en', 1, 'https://ror.org/01mhfg188 Public Health Authority of the Slovak Republic'),
(21337, 'https://ror.org/01mhzw324', 'no_lang_code', 1, 'https://ror.org/01mhzw324 Nottingham Express Transit (United Kingdom)'),
(21338, 'https://ror.org/01mk0yp55', 'en', 1, 'https://ror.org/01mk0yp55 Soul City Institute for Health & Development Communication');
INSERT INTO `rors` VALUES
(21339, 'https://ror.org/01mkrzp48', 'no_lang_code', 1, 'https://ror.org/01mkrzp48 SKF (Germany)'),
(21340, 'https://ror.org/01mkymc65', 'no_lang_code', 1, 'https://ror.org/01mkymc65 N.A.Software (United Kingdom)'),
(21341, 'https://ror.org/01mqmer16', 'no_lang_code', 1, 'https://ror.org/01mqmer16 Hoffmann-La Roche Roche (France)'),
(21342, 'https://ror.org/01ms7ay74', 'no_lang_code', 1, 'https://ror.org/01ms7ay74 Permobil (United States)'),
(21343, 'https://ror.org/01mv7kb54', 'no_lang_code', 1, 'https://ror.org/01mv7kb54 Rescon Technologies (United Kingdom)'),
(21344, 'https://ror.org/01mw43m66', 'no_lang_code', 1, 'https://ror.org/01mw43m66 Pallas (Germany)'),
(21345, 'https://ror.org/01mx1hz05', 'en', 1, 'https://ror.org/01mx1hz05 Schiller International University'),
(21346, 'https://ror.org/01my6jy29', 'en', 1, 'https://ror.org/01my6jy29 Helston Community Hospital'),
(21347, 'https://ror.org/01my97204', 'no_lang_code', 1, 'https://ror.org/01my97204 WIND Hellas (Greece)'),
(21348, 'https://ror.org/01myfyr56', 'no_lang_code', 1, 'https://ror.org/01myfyr56 Spok'),
(21349, 'https://ror.org/01mzcg363', 'no_lang_code', 1, 'https://ror.org/01mzcg363 Tiger Optics (United States)'),
(21350, 'https://ror.org/01n1wka83', 'en', 1, 'https://ror.org/01n1wka83 Parent/Professional Advocacy League'),
(21351, 'https://ror.org/01n22w217', 'en', 1, 'https://ror.org/01n22w217 Oklahoma City Community College'),
(21352, 'https://ror.org/01n2czj98', 'en', 1, 'https://ror.org/01n2czj98 Touring Club Italiano'),
(21353, 'https://ror.org/01n4hzf84', 'pt', 1, 'https://ror.org/01n4hzf84 Uniabeu Centro UniversitƔrio'),
(21354, 'https://ror.org/01n9x4465', 'no_lang_code', 1, 'https://ror.org/01n9x4465 Nordeconsult (Sweden)'),
(21355, 'https://ror.org/01na7zr61', 'no_lang_code', 1, 'https://ror.org/01na7zr61 ZTS Výskumno-Vývojový Ústav (Slovakia)'),
(21356, 'https://ror.org/01nap1w14', 'no_lang_code', 1, 'https://ror.org/01nap1w14 Transnet (South Africa)'),
(21357, 'https://ror.org/01necnd72', 'no_lang_code', 1, 'https://ror.org/01necnd72 Tisec (Canada)'),
(21358, 'https://ror.org/01ned1220', 'en', 1, 'https://ror.org/01ned1220 Ispat General Hospital ą¤‡ą¤øą¤Ŗą¤Ÿ जनरल ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(21359, 'https://ror.org/01nefj689', 'en', 1, 'https://ror.org/01nefj689 Rye Winchelsea and District Memorial Hospital'),
(21360, 'https://ror.org/01ngsex56', 'no_lang_code', 1, 'https://ror.org/01ngsex56 Mologic (United Kingdom)'),
(21361, 'https://ror.org/01ngyvd83', 'en', 1, 'https://ror.org/01ngyvd83 Brixham Community Hospital'),
(21362, 'https://ror.org/01nmkhv89', 'no_lang_code', 1, 'https://ror.org/01nmkhv89 Squaris'),
(21363, 'https://ror.org/01npmjh66', 'no_lang_code', 1, 'https://ror.org/01npmjh66 Team Defence Information (United Kingdom)'),
(21364, 'https://ror.org/01nqa4s53', 'no_lang_code', 1, 'https://ror.org/01nqa4s53 Nihonkai General Hospital ę—„ęœ¬ęµ·ē·åˆē—…é™¢'),
(21365, 'https://ror.org/01nscpg76', 'no_lang_code', 1, 'https://ror.org/01nscpg76 OZ Optics (Canada)'),
(21366, 'https://ror.org/01nv7k942', 'en', 1, 'https://ror.org/01nv7k942 Hebei General Hospital ę²³åŒ—ēœäŗŗę°‘åŒ»é™¢'),
(21367, 'https://ror.org/01nvdh647', 'en', 1, 'https://ror.org/01nvdh647 Zaozhuang Municipal Hospital ęž£åŗ„åø‚ē«‹åŒ»é™¢'),
(21368, 'https://ror.org/01nvgv947', 'es', 1, 'https://ror.org/01nvgv947 Universidad Evangelica Nicaraguense'),
(21369, 'https://ror.org/01nvnhx40', 'en', 1, 'https://ror.org/01nvnhx40 October University of Modern Sciences and Arts Ų¬Ų§Ł…Ų¹Ų© أكتوبر Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų­ŲÆŁŠŲ«Ų© ŁˆŲ§Ł„Ų¢ŲÆŲ§ŲØ'),
(21370, 'https://ror.org/01nyfcf47', 'it', 1, 'https://ror.org/01nyfcf47 Unioncamere Piemonte'),
(21371, 'https://ror.org/01nzeya05', 'no_lang_code', 1, 'https://ror.org/01nzeya05 Polska Grupa Energetyczna (Poland)'),
(21372, 'https://ror.org/01p12g133', 'no_lang_code', 1, 'https://ror.org/01p12g133 VBC Group (United Kingdom)'),
(21373, 'https://ror.org/01p2bvc62', 'en', 1, 'https://ror.org/01p2bvc62 Columbia International University'),
(21374, 'https://ror.org/01p51xv55', 'en', 1, 'https://ror.org/01p51xv55 St. Marien Hospital'),
(21375, 'https://ror.org/01p542m48', 'no_lang_code', 1, 'https://ror.org/01p542m48 NeoCytex Biopharma (United States)'),
(21376, 'https://ror.org/01p5m8335', 'no_lang_code', 1, 'https://ror.org/01p5m8335 Rapp (Switzerland)'),
(21377, 'https://ror.org/01p6fsx62', 'en', 1, 'https://ror.org/01p6fsx62 Spire Bristol Hospital'),
(21378, 'https://ror.org/01p81kj40', 'fr', 1, 'https://ror.org/01p81kj40 UniversitƩ des Grands Lacs'),
(21379, 'https://ror.org/01pakje56', 'no_lang_code', 1, 'https://ror.org/01pakje56 Stellarray (United States)'),
(21380, 'https://ror.org/01pe51140', 'no_lang_code', 1, 'https://ror.org/01pe51140 Molecular Sensing (United States)'),
(21381, 'https://ror.org/01pe78696', 'es', 1, 'https://ror.org/01pe78696 Universidad del AtlƔntico'),
(21382, 'https://ror.org/01pggea98', 'en', 1, 'https://ror.org/01pggea98 Johnson Community Hospital'),
(21383, 'https://ror.org/01phrhn87', 'no_lang_code', 1, 'https://ror.org/01phrhn87 Acobiom (France)'),
(21384, 'https://ror.org/01pj4rr81', 'en', 1, 'https://ror.org/01pj4rr81 Mid-America Christian University'),
(21385, 'https://ror.org/01pjc8p36', 'en', 1, 'https://ror.org/01pjc8p36 Historical Studies in Education Revue d''histoire de l''Ʃducation'),
(21386, 'https://ror.org/01pjkhn78', 'en', 1, 'https://ror.org/01pjkhn78 School District of Palm Beach County'),
(21387, 'https://ror.org/01pjrq695', 'es', 1, 'https://ror.org/01pjrq695 Universidad Magister'),
(21388, 'https://ror.org/01pk3g458', 'en', 1, 'https://ror.org/01pk3g458 Westchester County Department of Public Safety'),
(21389, 'https://ror.org/01pkd0t05', 'es', 1, 'https://ror.org/01pkd0t05 Colegio Libre de Estudios Universitarios'),
(21390, 'https://ror.org/01pmnjq51', 'no_lang_code', 1, 'https://ror.org/01pmnjq51 Otoconsult (Belgium)'),
(21391, 'https://ror.org/01pn2rg09', 'pt', 1, 'https://ror.org/01pn2rg09 Universidade Castelo Branco'),
(21392, 'https://ror.org/01pp7vs05', 'no_lang_code', 1, 'https://ror.org/01pp7vs05 Nexture Consulting'),
(21393, 'https://ror.org/01ppn2r43', 'no_lang_code', 1, 'https://ror.org/01ppn2r43 Nemko (Norway) Norges Elektriske Materiellkontroll'),
(21394, 'https://ror.org/01pshz178', 'no_lang_code', 1, 'https://ror.org/01pshz178 Nuance Communications (Canada)'),
(21395, 'https://ror.org/01pw31s78', 'en', 1, 'https://ror.org/01pw31s78 Huntercombe Hospital'),
(21396, 'https://ror.org/01pxyx032', 'es', 1, 'https://ror.org/01pxyx032 Fundación Universitaria Colombo Internacional'),
(21397, 'https://ror.org/01pyd3y08', 'en', 1, 'https://ror.org/01pyd3y08 Brampton War Memorial Hospital'),
(21398, 'https://ror.org/01q06dd50', 'en', 1, 'https://ror.org/01q06dd50 New Hampshire Department of Education'),
(21399, 'https://ror.org/01q103038', 'it', 1, 'https://ror.org/01q103038 Ospedale di Stato della Repubblica di San Marino'),
(21400, 'https://ror.org/01q2xjy72', 'no_lang_code', 1, 'https://ror.org/01q2xjy72 ReProtect (United States)'),
(21401, 'https://ror.org/01q48h373', 'no_lang_code', 1, 'https://ror.org/01q48h373 Glanbia (Ireland)'),
(21402, 'https://ror.org/01q4mdv90', 'es', 1, 'https://ror.org/01q4mdv90 Universidad Privada de Oruro'),
(21403, 'https://ror.org/01q5d1g38', 'en', 1, 'https://ror.org/01q5d1g38 Thurrock Community Hospital'),
(21404, 'https://ror.org/01q74hp50', 'no_lang_code', 1, 'https://ror.org/01q74hp50 Blackstone (United States)'),
(21405, 'https://ror.org/01q7nv767', 'en', 1, 'https://ror.org/01q7nv767 Toronto Arts Foundation'),
(21406, 'https://ror.org/01q8pr365', 'en', 1, 'https://ror.org/01q8pr365 Hirslanden Private Hospital Group Privatklinikgruppe Hirslanden'),
(21407, 'https://ror.org/01qbtys04', 'no_lang_code', 1, 'https://ror.org/01qbtys04 Stichting Accessibility'),
(21408, 'https://ror.org/01qd74814', 'no_lang_code', 1, 'https://ror.org/01qd74814 Porifera (United States)'),
(21409, 'https://ror.org/01qgxr245', 'no_lang_code', 1, 'https://ror.org/01qgxr245 NCR (United Kingdom)'),
(21410, 'https://ror.org/01qjejj07', 'no_lang_code', 1, 'https://ror.org/01qjejj07 Bƶrsenverein des Deutschen Buchhandels (Germany)'),
(21411, 'https://ror.org/01qjpbj62', 'no_lang_code', 1, 'https://ror.org/01qjpbj62 Omm Scientific (United States)'),
(21412, 'https://ror.org/01qpqce32', 'en', 1, 'https://ror.org/01qpqce32 Connecticut Science Center'),
(21413, 'https://ror.org/01qq4rp48', 'en', 1, 'https://ror.org/01qq4rp48 Wiltshire Council'),
(21414, 'https://ror.org/01qv0ss31', 'no_lang_code', 1, 'https://ror.org/01qv0ss31 Reconnecting Youth (United States)'),
(21415, 'https://ror.org/01qw5dj60', 'no_lang_code', 1, 'https://ror.org/01qw5dj60 Stellar Biotechnologies (United States)'),
(21416, 'https://ror.org/01qx5e557', 'no_lang_code', 1, 'https://ror.org/01qx5e557 Vicinay Cadenas (Spain)'),
(21417, 'https://ror.org/01qyk0172', 'no_lang_code', 1, 'https://ror.org/01qyk0172 Tantalus Systems (United States)'),
(21418, 'https://ror.org/01r01qv34', 'no_lang_code', 1, 'https://ror.org/01r01qv34 OsteoGeneX (United States)'),
(21419, 'https://ror.org/01r2zsa88', 'no_lang_code', 1, 'https://ror.org/01r2zsa88 Vivid Technologies (United States)'),
(21420, 'https://ror.org/01r3ms014', 'no_lang_code', 1, 'https://ror.org/01r3ms014 U-Hopper (Italy)'),
(21421, 'https://ror.org/01r49jb64', 'no_lang_code', 1, 'https://ror.org/01r49jb64 MicroTEC (Germany)'),
(21422, 'https://ror.org/01r5afm23', 'en', 1, 'https://ror.org/01r5afm23 La Gran Colombia University Universidad La Gran Colombia'),
(21423, 'https://ror.org/01r5xd980', 'en', 1, 'https://ror.org/01r5xd980 Madonna University'),
(21424, 'https://ror.org/01r6bea41', 'es', 1, 'https://ror.org/01r6bea41 Universidad Centroamericana de Ciencias Sociales'),
(21425, 'https://ror.org/01r7j6e08', 'no_lang_code', 1, 'https://ror.org/01r7j6e08 Ultima Foods (Canada)'),
(21426, 'https://ror.org/01r98zz61', 'es', 1, 'https://ror.org/01r98zz61 Universidad Azteca, Universidad Azteca de Chalco'),
(21427, 'https://ror.org/01r99ca40', 'es', 1, 'https://ror.org/01r99ca40 Universidad Abierta y a Distancia de PanamĆ”'),
(21428, 'https://ror.org/01r9fck11', 'en', 1, 'https://ror.org/01r9fck11 Manitoba Environmental Industries Association'),
(21429, 'https://ror.org/01rb66x86', 'no_lang_code', 1, 'https://ror.org/01rb66x86 Veneto Innovazione (Italy)'),
(21430, 'https://ror.org/01rd9jd59', 'en', 1, 'https://ror.org/01rd9jd59 MRB Forschungszentrum für Magnet-Resonanz-Bayern MRB Research Center for Magnetic Resonance Bavaria'),
(21431, 'https://ror.org/01rdh6z55', 'en', 1, 'https://ror.org/01rdh6z55 Columbus University'),
(21432, 'https://ror.org/01rdkm032', 'no_lang_code', 1, 'https://ror.org/01rdkm032 SSBV Aerospace & Technology Group (United Kingdom)'),
(21433, 'https://ror.org/01rdrt489', 'en', 1, 'https://ror.org/01rdrt489 Development of Research and Technologies for Sustainable and Seismically Safe Building'),
(21434, 'https://ror.org/01rebhs43', 'en', 1, 'https://ror.org/01rebhs43 Watts Health Center'),
(21435, 'https://ror.org/01rfam919', 'en', 1, 'https://ror.org/01rfam919 Inner Mongolia Autonomous Region Meteorological Bureau å†…č’™å¤č‡Ŗę²»åŒŗę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(21436, 'https://ror.org/01rh2am22', 'no_lang_code', 1, 'https://ror.org/01rh2am22 Pericle Communications (United States)'),
(21437, 'https://ror.org/01rhd8q72', 'no_lang_code', 1, 'https://ror.org/01rhd8q72 Tolsa (Spain)'),
(21438, 'https://ror.org/01rhgps79', 'no_lang_code', 1, 'https://ror.org/01rhgps79 Oltis Group (Czechia)'),
(21439, 'https://ror.org/01rqzkn19', 'no_lang_code', 1, 'https://ror.org/01rqzkn19 Oerlikon (Liechtenstein)'),
(21440, 'https://ror.org/01rr8w476', 'no_lang_code', 1, 'https://ror.org/01rr8w476 Przedsiębiorstwo Innowacyjno Wdrożeniowe Complex (Poland)'),
(21441, 'https://ror.org/01rswjc57', 'no_lang_code', 1, 'https://ror.org/01rswjc57 Philips (Spain)'),
(21442, 'https://ror.org/01rtq8t93', 'en', 1, 'https://ror.org/01rtq8t93 National Institute for Research and Development in Microtechnologies'),
(21443, 'https://ror.org/01rwn3f68', 'es', 1, 'https://ror.org/01rwn3f68 Universidad Pedro de Valdivia'),
(21444, 'https://ror.org/01rxwxv45', 'no_lang_code', 1, 'https://ror.org/01rxwxv45 Miba (United Kingdom)'),
(21445, 'https://ror.org/01ry0d141', 'no_lang_code', 1, 'https://ror.org/01ry0d141 Müller BBM (Germany)'),
(21446, 'https://ror.org/01ry2m115', 'no_lang_code', 1, 'https://ror.org/01ry2m115 Samaritan Pharmaceuticals (United States)'),
(21447, 'https://ror.org/01ry6r150', 'en', 1, 'https://ror.org/01ry6r150 Pamantasang Silliman Silliman University'),
(21448, 'https://ror.org/01rzvxf60', 'en', 1, 'https://ror.org/01rzvxf60 Pittsburgh AIDS Task Force'),
(21449, 'https://ror.org/01s12hv96', 'no_lang_code', 1, 'https://ror.org/01s12hv96 Miraculins (Canada)'),
(21450, 'https://ror.org/01s3yh696', 'no_lang_code', 1, 'https://ror.org/01s3yh696 Phase Motion Control (Italy)'),
(21451, 'https://ror.org/01s4hhr68', 'no_lang_code', 1, 'https://ror.org/01s4hhr68 Polar Mobile (Canada)'),
(21452, 'https://ror.org/01s5rx042', 'no_lang_code', 1, 'https://ror.org/01s5rx042 Surrey Satellite Technology (United Kingdom)'),
(21453, 'https://ror.org/01s5zad14', 'no_lang_code', 1, 'https://ror.org/01s5zad14 Skanska (Sweden)'),
(21454, 'https://ror.org/01s9fwc30', 'no_lang_code', 1, 'https://ror.org/01s9fwc30 Permanova Lasersystem (Sweden)'),
(21455, 'https://ror.org/01sa7gm83', 'en', 1, 'https://ror.org/01sa7gm83 South Eastern Europe Telecommunications Academy'),
(21456, 'https://ror.org/01sab8554', 'no_lang_code', 1, 'https://ror.org/01sab8554 Moixa Technology (United Kingdom)'),
(21457, 'https://ror.org/01safxj67', 'en', 1, 'https://ror.org/01safxj67 Markham Stouffville Hospital'),
(21458, 'https://ror.org/01sawky49', 'en', 1, 'https://ror.org/01sawky49 Yorkshire Ambulance Service NHS Trust'),
(21459, 'https://ror.org/01scwqh06', 'en', 1, 'https://ror.org/01scwqh06 Catholic University of Colombia Universidad Católica de Colombia'),
(21460, 'https://ror.org/01sde3g80', 'no_lang_code', 1, 'https://ror.org/01sde3g80 Nomad Tech (Portugal)'),
(21461, 'https://ror.org/01sdtdd95', 'en', 1, 'https://ror.org/01sdtdd95 Canadian Institute for Advanced Research Institut Canadien de Recherches AvancƩes'),
(21462, 'https://ror.org/01sg12c31', 'no_lang_code', 1, 'https://ror.org/01sg12c31 Stabilitech BioPharma (United Kingdom)'),
(21463, 'https://ror.org/01sg34z40', 'fr', 1, 'https://ror.org/01sg34z40 RƩunion des musƩes nationaux Grand Palais'),
(21464, 'https://ror.org/01sh4dd92', 'pt', 1, 'https://ror.org/01sh4dd92 Universidade Ɠscar Ribas'),
(21465, 'https://ror.org/01sj9rw78', 'no_lang_code', 1, 'https://ror.org/01sj9rw78 Torrecid (Spain)'),
(21466, 'https://ror.org/01skbhc43', 'no_lang_code', 1, 'https://ror.org/01skbhc43 Ogilvy (Greece)'),
(21467, 'https://ror.org/01skkym94', 'es', 1, 'https://ror.org/01skkym94 Corporación Escuela de Artes y Letras'),
(21468, 'https://ror.org/01sm8xv65', 'es', 1, 'https://ror.org/01sm8xv65 Universidad Tecnológica Privada de Santa Cruz'),
(21469, 'https://ror.org/01sqy6j62', 'fr', 1, 'https://ror.org/01sqy6j62 Centre Hospitalier Intercommunal AndrƩ GrƩgoire Montreuil'),
(21470, 'https://ror.org/01stdbz34', 'en', 1, 'https://ror.org/01stdbz34 National Native American AIDS Prevention Center'),
(21471, 'https://ror.org/01sv41c41', 'es', 1, 'https://ror.org/01sv41c41 Universidad Villasunción'),
(21472, 'https://ror.org/01sv65921', 'no_lang_code', 1, 'https://ror.org/01sv65921 Optima Neuroscience (United States)'),
(21473, 'https://ror.org/01svbr712', 'fr', 1, 'https://ror.org/01svbr712 UniversitƩ GƩnƩral Lansana ContƩ'),
(21474, 'https://ror.org/01svw4c36', 'no_lang_code', 1, 'https://ror.org/01svw4c36 TwistDx (United Kingdom)'),
(21475, 'https://ror.org/01sw8gj26', 'no_lang_code', 1, 'https://ror.org/01sw8gj26 Space Environment Corporation (United States)'),
(21476, 'https://ror.org/01swdcs64', 'en', 1, 'https://ror.org/01swdcs64 Tokyo-Kita Medical Center ę±äŗ¬åŒ—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(21477, 'https://ror.org/01sx0ab33', 'no_lang_code', 1, 'https://ror.org/01sx0ab33 Technology Transfer and Innovation (Italy) Trasferimento Tecnologico e Innovazione'),
(21478, 'https://ror.org/01t11nq62', 'en', 1, 'https://ror.org/01t11nq62 Adamawa State University'),
(21479, 'https://ror.org/01t1wnw38', 'en', 1, 'https://ror.org/01t1wnw38 Strategic Community Services'),
(21480, 'https://ror.org/01t2ccy50', 'en', 1, 'https://ror.org/01t2ccy50 Shellfish Association of Great Britain'),
(21481, 'https://ror.org/01t2ez611', 'fr', 1, 'https://ror.org/01t2ez611 Association pour le DƩveloppement de la Mesure et de l''Evaluation en Education'),
(21482, 'https://ror.org/01t47ze65', 'no_lang_code', 1, 'https://ror.org/01t47ze65 Manus Bio (United States)'),
(21483, 'https://ror.org/01t4pxy10', 'en', 1, 'https://ror.org/01t4pxy10 Dresden International University'),
(21484, 'https://ror.org/01t573x46', 'es', 1, 'https://ror.org/01t573x46 Universidad del Valle de Guadiana'),
(21485, 'https://ror.org/01t881g83', 'en', 1, 'https://ror.org/01t881g83 Saffron Walden Community Hospital'),
(21486, 'https://ror.org/01t8zd103', 'en', 1, 'https://ror.org/01t8zd103 Reading Borough Council'),
(21487, 'https://ror.org/01ta56j94', 'no_lang_code', 1, 'https://ror.org/01ta56j94 Dalian Dermatosis Hospital å¤§čæžåø‚ēš®č‚¤ē—…åŒ»é™¢'),
(21488, 'https://ror.org/01tdcdz60', 'no_lang_code', 1, 'https://ror.org/01tdcdz60 Procter & Gamble (Italy)'),
(21489, 'https://ror.org/01tegtn91', 'no_lang_code', 1, 'https://ror.org/01tegtn91 Pulp and Paper Research Institute'),
(21490, 'https://ror.org/01thvz382', 'es', 1, 'https://ror.org/01thvz382 Universidad de San Jose'),
(21491, 'https://ror.org/01tkc7083', 'en', 1, 'https://ror.org/01tkc7083 Royal Dental Hospital of Melbourne'),
(21492, 'https://ror.org/01tkmq646', 'es', 1, 'https://ror.org/01tkmq646 Universidad Maimónides'),
(21493, 'https://ror.org/01tm0rr86', 'en', 1, 'https://ror.org/01tm0rr86 Fukui University of Technology ē¦äŗ•å·„ę„­å¤§å­¦'),
(21494, 'https://ror.org/01tm7nw04', 'fr', 1, 'https://ror.org/01tm7nw04 Corporation d’AmĆ©nagement et de Protection de la Sainte-Anne'),
(21495, 'https://ror.org/01tm8wm67', 'no_lang_code', 1, 'https://ror.org/01tm8wm67 Motorola Solutions (Israel)'),
(21496, 'https://ror.org/01tnf8c58', 'en', 1, 'https://ror.org/01tnf8c58 Feilding Palmer Hospital'),
(21497, 'https://ror.org/01tnfvr41', 'es', 1, 'https://ror.org/01tnfvr41 Universidad de Congreso'),
(21498, 'https://ror.org/01ty9p111', 'en', 1, 'https://ror.org/01ty9p111 Mount Alvernia Hospital'),
(21499, 'https://ror.org/01v09hh66', 'en', 1, 'https://ror.org/01v09hh66 Rowley Regis Hospital'),
(21500, 'https://ror.org/01v0we819', 'en', 1, 'https://ror.org/01v0we819 Redeemer''s University'),
(21501, 'https://ror.org/01v1gc487', 'no_lang_code', 1, 'https://ror.org/01v1gc487 Technical Database Services (United States)'),
(21502, 'https://ror.org/01v1t8x37', 'en', 1, 'https://ror.org/01v1t8x37 Providence University College and Theological Seminary'),
(21503, 'https://ror.org/01v3kn215', 'en', 1, 'https://ror.org/01v3kn215 Shawnee Mission Northwest High School'),
(21504, 'https://ror.org/01v5hvs93', 'en', 1, 'https://ror.org/01v5hvs93 Victorian Aboriginal Health Service'),
(21505, 'https://ror.org/01v5nhr20', 'en', 1, 'https://ror.org/01v5nhr20 Universidad de la Costa University of the Coast'),
(21506, 'https://ror.org/01v7jqw26', 'en', 1, 'https://ror.org/01v7jqw26 Department of General Services'),
(21507, 'https://ror.org/01v8mkp61', 'es', 1, 'https://ror.org/01v8mkp61 Universidad Santa Paula'),
(21508, 'https://ror.org/01v8tdd80', 'no_lang_code', 1, 'https://ror.org/01v8tdd80 QuantumBio (United States)'),
(21509, 'https://ror.org/01v9kmn87', 'es', 1, 'https://ror.org/01v9kmn87 Centro Universitario Vasco de Quiroga de Huejutla'),
(21510, 'https://ror.org/01v9zh240', 'en', 1, 'https://ror.org/01v9zh240 Bệnh viện Nhi đồng 2 Children''s Hospital 2'),
(21511, 'https://ror.org/01vbx2754', 'no_lang_code', 1, 'https://ror.org/01vbx2754 Unis (Czechia)'),
(21512, 'https://ror.org/01vd34q60', 'es', 1, 'https://ror.org/01vd34q60 Universidad de Margarita'),
(21513, 'https://ror.org/01vf56d70', 'en', 1, 'https://ror.org/01vf56d70 Balochistan University of Information Technology, Engineering and Management Sciences'),
(21514, 'https://ror.org/01vh0ja39', 'en', 1, 'https://ror.org/01vh0ja39 Northgate Hospital'),
(21515, 'https://ror.org/01vn2rt83', 'pt', 1, 'https://ror.org/01vn2rt83 Centro UniversitƔrio de Volta Redonda'),
(21516, 'https://ror.org/01vp1fv93', 'no_lang_code', 1, 'https://ror.org/01vp1fv93 OAS (Germany)'),
(21517, 'https://ror.org/01vp36a05', 'en', 1, 'https://ror.org/01vp36a05 Swiss Internet Security Alliance'),
(21518, 'https://ror.org/01vp66713', 'es', 1, 'https://ror.org/01vp66713 Sistemas Expertos'),
(21519, 'https://ror.org/01vqvef44', 'en', 1, 'https://ror.org/01vqvef44 Achievers University'),
(21520, 'https://ror.org/01vspgn73', 'no_lang_code', 1, 'https://ror.org/01vspgn73 Morgan Innovation and Technology (United Kingdom)'),
(21521, 'https://ror.org/01vw04q95', 'no_lang_code', 1, 'https://ror.org/01vw04q95 Motor Oil (Greece)'),
(21522, 'https://ror.org/01vwap211', 'fr', 1, 'https://ror.org/01vwap211 Institut National des Sciences Comptables et de l’Administration d’Entreprises'),
(21523, 'https://ror.org/01vwm8t51', 'en', 1, 'https://ror.org/01vwm8t51 Francisco de Paula Santander University Universidad Francisco de Paula Santander'),
(21524, 'https://ror.org/01vx5yq44', 'en', 1, 'https://ror.org/01vx5yq44 Port Said University Ų¬Ų§Ł…Ų¹Ų© بورسعيد'),
(21525, 'https://ror.org/01vxy3v29', 'en', 1, 'https://ror.org/01vxy3v29 Eurelectric'),
(21526, 'https://ror.org/01vy2y168', 'no_lang_code', 1, 'https://ror.org/01vy2y168 SimulTOF Systems (United States)'),
(21527, 'https://ror.org/01vy3hr18', 'en', 1, 'https://ror.org/01vy3hr18 Chuo Kikuu cha Kumbukumbu cha Hubert Kairuki Hubert Kairuki Memorial University'),
(21528, 'https://ror.org/01vyfs773', 'no_lang_code', 1, 'https://ror.org/01vyfs773 NETE (United States)'),
(21529, 'https://ror.org/01vyn2554', 'en', 1, 'https://ror.org/01vyn2554 Universidad del Caribe del Sur University of the Southern Caribbean Université de la caraïbe du sud'),
(21530, 'https://ror.org/01vz7g950', 'en', 1, 'https://ror.org/01vz7g950 Seaford Day Hospital'),
(21531, 'https://ror.org/01w0d2z22', 'no_lang_code', 1, 'https://ror.org/01w0d2z22 Sonnenkraft (Austria)'),
(21532, 'https://ror.org/01w17ks16', 'en', 1, 'https://ror.org/01w17ks16 Gabriel René Moreno Autonomous University Universidad Autónoma Gabriel René Moreno'),
(21533, 'https://ror.org/01w1jmq84', 'fr', 1, 'https://ror.org/01w1jmq84 Ɖcole Normale SupĆ©rieure - Marrakech'),
(21534, 'https://ror.org/01w21ky57', 'no_lang_code', 1, 'https://ror.org/01w21ky57 SiMPore (United States)'),
(21535, 'https://ror.org/01w37vv29', 'pt', 1, 'https://ror.org/01w37vv29 Centro UniversitƔrio Capital'),
(21536, 'https://ror.org/01w3f6g06', 'no_lang_code', 1, 'https://ror.org/01w3f6g06 Wieland (Germany)'),
(21537, 'https://ror.org/01w41ag04', 'no_lang_code', 1, 'https://ror.org/01w41ag04 Millab Consult (Norway)'),
(21538, 'https://ror.org/01w7yex89', 'no_lang_code', 1, 'https://ror.org/01w7yex89 Exechon (Sweden)'),
(21539, 'https://ror.org/01w8n3n62', 'no_lang_code', 1, 'https://ror.org/01w8n3n62 Schneider Electric (Germany)'),
(21540, 'https://ror.org/01w96sp43', 'pt', 1, 'https://ror.org/01w96sp43 Universidade de MarĆ­lia'),
(21541, 'https://ror.org/01w9xxr98', 'en', 1, 'https://ror.org/01w9xxr98 Freed–Hardeman University'),
(21542, 'https://ror.org/01wa93237', 'no_lang_code', 1, 'https://ror.org/01wa93237 Raymor (Canada)'),
(21543, 'https://ror.org/01wbcv120', 'en', 1, 'https://ror.org/01wbcv120 Manchester Airport'),
(21544, 'https://ror.org/01wca3r14', 'en', 1, 'https://ror.org/01wca3r14 Wavefront Wireless Commercialization Centre'),
(21545, 'https://ror.org/01wchfr56', 'no_lang_code', 1, 'https://ror.org/01wchfr56 Mesolight (United States)'),
(21546, 'https://ror.org/01we5we17', 'no_lang_code', 1, 'https://ror.org/01we5we17 S. B. Barnes Associates (United States)'),
(21547, 'https://ror.org/01wfnf418', 'es', 1, 'https://ror.org/01wfnf418 Universidad Loyola'),
(21548, 'https://ror.org/01wgb4d05', 'en', 1, 'https://ror.org/01wgb4d05 Lings Bar Hospital'),
(21549, 'https://ror.org/01whdh078', 'no_lang_code', 1, 'https://ror.org/01whdh078 Positron (United States)'),
(21550, 'https://ror.org/01whrhv58', 'fr', 1, 'https://ror.org/01whrhv58 Institut SupĆ©rieur d’Electronique et des RĆ©seaux & TĆ©lĆ©communications'),
(21551, 'https://ror.org/01wj7vt66', 'en', 1, 'https://ror.org/01wj7vt66 Golden Gate University'),
(21552, 'https://ror.org/01wnb0b83', 'es', 1, 'https://ror.org/01wnb0b83 Universidad Central'),
(21553, 'https://ror.org/01wnj5m91', 'no_lang_code', 1, 'https://ror.org/01wnj5m91 Bonnier Technology Group (Germany)'),
(21554, 'https://ror.org/01wnnzc43', 'no_lang_code', 1, 'https://ror.org/01wnnzc43 Tobii (Sweden)'),
(21555, 'https://ror.org/01wnxx236', 'en', 1, 'https://ror.org/01wnxx236 Blue Nile University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„ الأزرق'),
(21556, 'https://ror.org/01wpjrj73', 'fr', 1, 'https://ror.org/01wpjrj73 Centre Hospitalier de Niort'),
(21557, 'https://ror.org/01wx3s220', 'en', 1, 'https://ror.org/01wx3s220 Alton Community Hospital'),
(21558, 'https://ror.org/01wx7k245', 'en', 1, 'https://ror.org/01wx7k245 Langdon Hospital'),
(21559, 'https://ror.org/01wze9664', 'no_lang_code', 1, 'https://ror.org/01wze9664 Zeno Semiconductor (United States)'),
(21560, 'https://ror.org/01wzp0b05', 'en', 1, 'https://ror.org/01wzp0b05 Milford Elementary School'),
(21561, 'https://ror.org/01x2g0m45', 'no_lang_code', 1, 'https://ror.org/01x2g0m45 Ocean Atmosphere Systems (Germany)'),
(21562, 'https://ror.org/01x2szn70', 'es', 1, 'https://ror.org/01x2szn70 Universidad Cervantina'),
(21563, 'https://ror.org/01x74qw27', 'no_lang_code', 1, 'https://ror.org/01x74qw27 Tribo Flow Separations (United States)'),
(21564, 'https://ror.org/01x7pha69', 'fr', 1, 'https://ror.org/01x7pha69 Institut Marocain de Management'),
(21565, 'https://ror.org/01x8f1980', 'no_lang_code', 1, 'https://ror.org/01x8f1980 NanoGriptech (United States)'),
(21566, 'https://ror.org/01xew6m16', 'en', 1, 'https://ror.org/01xew6m16 Nuffield Health Bristol Hospital'),
(21567, 'https://ror.org/01xexqx38', 'en', 1, 'https://ror.org/01xexqx38 Ministarstvo Prosvjete Ministry of Education'),
(21568, 'https://ror.org/01xf5pq20', 'fr', 1, 'https://ror.org/01xf5pq20 UniversitĆ© Tunis Carthage Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³ قرطاج'),
(21569, 'https://ror.org/01xhcza12', 'en', 1, 'https://ror.org/01xhcza12 University of the West'),
(21570, 'https://ror.org/01xjgpq49', 'no_lang_code', 1, 'https://ror.org/01xjgpq49 Sakushin Gakuin University ä½œę–°å­¦é™¢å¤§å­¦'),
(21571, 'https://ror.org/01xprs690', 'en', 1, 'https://ror.org/01xprs690 UniversitƩ de ziguinchor Ziguinchor University'),
(21572, 'https://ror.org/01xpzce83', 'es', 1, 'https://ror.org/01xpzce83 Centro Universitario Siglo XXI'),
(21573, 'https://ror.org/01xq6at75', 'no_lang_code', 1, 'https://ror.org/01xq6at75 Team (Italy)'),
(21574, 'https://ror.org/01xqc8g04', 'en', 1, 'https://ror.org/01xqc8g04 Un-Convention'),
(21575, 'https://ror.org/01xqg1464', 'en', 1, 'https://ror.org/01xqg1464 Institution of Engineering and Technology'),
(21576, 'https://ror.org/01xs3h851', 'en', 1, 'https://ror.org/01xs3h851 Society for the Study of Egyptian Antiquities'),
(21577, 'https://ror.org/01xzw5f75', 'es', 1, 'https://ror.org/01xzw5f75 Universidad de San Pedro Sula University of San Pedro Sula'),
(21578, 'https://ror.org/01y38kk41', 'en', 1, 'https://ror.org/01y38kk41 Logistics University of People''s Armed Police Force äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜ŸåŽå‹¤å­¦é™¢'),
(21579, 'https://ror.org/01y3yr807', 'es', 1, 'https://ror.org/01y3yr807 Universidad Empresarial Siglo 21'),
(21580, 'https://ror.org/01y661f36', 'en', 1, 'https://ror.org/01y661f36 Wantage Community Hospital'),
(21581, 'https://ror.org/01y9fq553', 'en', 1, 'https://ror.org/01y9fq553 St Helen''s Rehabilitation Hospital'),
(21582, 'https://ror.org/01yb75b63', 'no_lang_code', 1, 'https://ror.org/01yb75b63 Zeeko (United Kingdom)'),
(21583, 'https://ror.org/01yb9sv02', 'no_lang_code', 1, 'https://ror.org/01yb9sv02 Petroleum Helicopters International (United States)'),
(21584, 'https://ror.org/01ybgev21', 'no_lang_code', 1, 'https://ror.org/01ybgev21 Prevas (Norway)'),
(21585, 'https://ror.org/01ybmjm77', 'es', 1, 'https://ror.org/01ybmjm77 Instituto Profesional Helen Keller'),
(21586, 'https://ror.org/01yczqg15', 'es', 1, 'https://ror.org/01yczqg15 Universidad Enrique Díaz de León'),
(21587, 'https://ror.org/01ye8vh67', 'en', 1, 'https://ror.org/01ye8vh67 Hassania School of Public Works Ɖcole Hassania des travaux publics المدرسة Ų§Ł„Ų­Ų³Ł†ŁŠŲ© للأؓغال Ų§Ł„Ų¹Ł…ŁˆŁ…ŁŠŲ©'),
(21588, 'https://ror.org/01yf3k683', 'en', 1, 'https://ror.org/01yf3k683 New York City Fire Department'),
(21589, 'https://ror.org/01yg3gs77', 'es', 1, 'https://ror.org/01yg3gs77 Corporación Politécnico Colombo Andino'),
(21590, 'https://ror.org/01ygx6877', 'en', 1, 'https://ror.org/01ygx6877 Mind'),
(21591, 'https://ror.org/01yj2ng88', 'no_lang_code', 1, 'https://ror.org/01yj2ng88 ProControl (Italy)'),
(21592, 'https://ror.org/01yjpe866', 'en', 1, 'https://ror.org/01yjpe866 Women in Government'),
(21593, 'https://ror.org/01ykn4h51', 'es', 1, 'https://ror.org/01ykn4h51 Universidad del Soconusco'),
(21594, 'https://ror.org/01yp0v682', 'no_lang_code', 1, 'https://ror.org/01yp0v682 StrateCision (United States)'),
(21595, 'https://ror.org/01ypqqm93', 'en', 1, 'https://ror.org/01ypqqm93 Port Elizabeth Provincial Hospital'),
(21596, 'https://ror.org/01yrvea59', 'no_lang_code', 1, 'https://ror.org/01yrvea59 Valdez & Associates (United States)'),
(21597, 'https://ror.org/01ysbeb83', 'es', 1, 'https://ror.org/01ysbeb83 Universidad de Ciencias Pedagógicas José de la Luz Caballero'),
(21598, 'https://ror.org/01yssfs05', 'en', 1, 'https://ror.org/01yssfs05 Green Lane Hospital'),
(21599, 'https://ror.org/01yt1q538', 'fr', 1, 'https://ror.org/01yt1q538 Institut International des Sciences et de Technologie'),
(21600, 'https://ror.org/01yt8p082', 'no_lang_code', 1, 'https://ror.org/01yt8p082 Nobatek'),
(21601, 'https://ror.org/01yw95a78', 'en', 1, 'https://ror.org/01yw95a78 Universidad del Centro Educativo Latinoamericano University of the Latin American Educational Center'),
(21602, 'https://ror.org/01ywnqg74', 'en', 1, 'https://ror.org/01ywnqg74 Chichester Hospital'),
(21603, 'https://ror.org/01yxt3w38', 'en', 1, 'https://ror.org/01yxt3w38 Dorking Community Hospital'),
(21604, 'https://ror.org/01yztcr70', 'pt', 1, 'https://ror.org/01yztcr70 Universidade de CuiabĆ”'),
(21605, 'https://ror.org/01z02vf77', 'no_lang_code', 1, 'https://ror.org/01z02vf77 Oxyrase (United States)'),
(21606, 'https://ror.org/01z0qcv19', 'en', 1, 'https://ror.org/01z0qcv19 Oakwater Laboratories'),
(21607, 'https://ror.org/01z110311', 'es', 1, 'https://ror.org/01z110311 Universidad Especializada de las AmƩricas'),
(21608, 'https://ror.org/01z1mg159', 'no_lang_code', 1, 'https://ror.org/01z1mg159 Schafer-N (Denmark)'),
(21609, 'https://ror.org/01z55tz06', 'no_lang_code', 1, 'https://ror.org/01z55tz06 Oxsensis (United Kingdom)'),
(21610, 'https://ror.org/01z5z6p69', 'en', 1, 'https://ror.org/01z5z6p69 Alston Community Hospital'),
(21611, 'https://ror.org/01z675j45', 'es', 1, 'https://ror.org/01z675j45 Unidades Tecnológicas de Santander'),
(21612, 'https://ror.org/01z6f4063', 'en', 1, 'https://ror.org/01z6f4063 DMI St. Eugene University'),
(21613, 'https://ror.org/01z947v86', 'no_lang_code', 1, 'https://ror.org/01z947v86 Tetra Corporation (United States)'),
(21614, 'https://ror.org/01za8kp04', 'en', 1, 'https://ror.org/01za8kp04 National University of Catamarca Universidad Nacional de Catamarca'),
(21615, 'https://ror.org/01zcwem74', 'no_lang_code', 1, 'https://ror.org/01zcwem74 Post Brenhinol Royal Mail Group (United Kingdom) a'' Phuist RƬoghail'),
(21616, 'https://ror.org/01zdej617', 'no_lang_code', 1, 'https://ror.org/01zdej617 SyntheZyme (United States)'),
(21617, 'https://ror.org/01zfccs95', 'en', 1, 'https://ror.org/01zfccs95 Gravesham Community Hospital'),
(21618, 'https://ror.org/01zfx2510', 'it', 1, 'https://ror.org/01zfx2510 TTS Italia'),
(21619, 'https://ror.org/01zgv1x24', 'en', 1, 'https://ror.org/01zgv1x24 Portland Public Schools'),
(21620, 'https://ror.org/01zhpfy26', 'no_lang_code', 1, 'https://ror.org/01zhpfy26 Next Limit Technologies (Spain)'),
(21621, 'https://ror.org/01zhzx806', 'en', 1, 'https://ror.org/01zhzx806 Callington Road Hospital'),
(21622, 'https://ror.org/01zjsj463', 'no_lang_code', 1, 'https://ror.org/01zjsj463 Walter Frank & Sons (United Kingdom)'),
(21623, 'https://ror.org/01zk9kz10', 'en', 1, 'https://ror.org/01zk9kz10 Nelson Hospital'),
(21624, 'https://ror.org/01znaqx63', 'no_lang_code', 1, 'https://ror.org/01znaqx63 Pensoft Publishers (Bulgaria)'),
(21625, 'https://ror.org/01znas443', 'en', 1, 'https://ror.org/01znas443 Ministry of Education, Science and Technological Development'),
(21626, 'https://ror.org/01znzmx53', 'no_lang_code', 1, 'https://ror.org/01znzmx53 Multimeric Biotherapeutics (United States)'),
(21627, 'https://ror.org/01zstgj41', 'es', 1, 'https://ror.org/01zstgj41 Universidad Nacional Experimental Rafael MarĆ­a Baralt'),
(21628, 'https://ror.org/01ztsjv38', 'en', 1, 'https://ror.org/01ztsjv38 Mayflower Community Hospital'),
(21629, 'https://ror.org/01zv5dm50', 'no_lang_code', 1, 'https://ror.org/01zv5dm50 PDS (United States)'),
(21630, 'https://ror.org/01zw0xy27', 'es', 1, 'https://ror.org/01zw0xy27 Escuela de Cadetes de PolicĆ­a General Santander'),
(21631, 'https://ror.org/01zw9zg68', 'no_lang_code', 1, 'https://ror.org/01zw9zg68 African Methodist Episcopal University'),
(21632, 'https://ror.org/01zy04g55', 'no_lang_code', 1, 'https://ror.org/01zy04g55 Silios Technologies (France)'),
(21633, 'https://ror.org/01zzmf129', 'en', 1, 'https://ror.org/01zzmf129 Xi’an University 脿安文理学院'),
(21634, 'https://ror.org/01zzt6n55', 'fr', 1, 'https://ror.org/01zzt6n55 Institut d''Histoire de l''AmƩrique FranƧaise'),
(21635, 'https://ror.org/0200b5370', 'en', 1, 'https://ror.org/0200b5370 The Gordon Hospital'),
(21636, 'https://ror.org/0201by934', 'en', 1, 'https://ror.org/0201by934 Octavia Housing'),
(21637, 'https://ror.org/0202f7m63', 'it', 1, 'https://ror.org/0202f7m63 Osservatorio Astronomico Armenzano'),
(21638, 'https://ror.org/02045bf64', 'en', 1, 'https://ror.org/02045bf64 Tansian University'),
(21639, 'https://ror.org/020ck1591', 'en', 1, 'https://ror.org/020ck1591 Police Academy in Szczytno'),
(21640, 'https://ror.org/020e47v47', 'no_lang_code', 1, 'https://ror.org/020e47v47 Organovo (United States)'),
(21641, 'https://ror.org/020ek1893', 'no_lang_code', 1, 'https://ror.org/020ek1893 Salsnes Filter (Norway)'),
(21642, 'https://ror.org/020gp5z38', 'en', 1, 'https://ror.org/020gp5z38 Newburgh Enlarged City School District'),
(21643, 'https://ror.org/020vke347', 'en', 1, 'https://ror.org/020vke347 Queen Mary''s Hospital For Children'),
(21644, 'https://ror.org/020vpzw85', 'no_lang_code', 1, 'https://ror.org/020vpzw85 PhaseSpace (United Kingdom)'),
(21645, 'https://ror.org/020w9wy05', 'en', 1, 'https://ror.org/020w9wy05 Renaissance University'),
(21646, 'https://ror.org/020wq5714', 'en', 1, 'https://ror.org/020wq5714 Chuo Kikuu cha Arusha University of Arusha'),
(21647, 'https://ror.org/0210qe842', 'no_lang_code', 1, 'https://ror.org/0210qe842 Mannari Hospital äø‡ęˆē—…é™¢'),
(21648, 'https://ror.org/0210zq234', 'en', 1, 'https://ror.org/0210zq234 Savernake Community Hospital'),
(21649, 'https://ror.org/02123w421', 'no_lang_code', 1, 'https://ror.org/02123w421 Sir Robert McAlpine (United Kingdom)'),
(21650, 'https://ror.org/02141x466', 'no_lang_code', 1, 'https://ror.org/02141x466 Subsea 7 (United Kingdom)'),
(21651, 'https://ror.org/0215hrs79', 'no_lang_code', 1, 'https://ror.org/0215hrs79 Plasmaterm (Romania)'),
(21652, 'https://ror.org/02191hv61', 'no_lang_code', 1, 'https://ror.org/02191hv61 Zyberwear (United States)'),
(21653, 'https://ror.org/0219pnb09', 'en', 1, 'https://ror.org/0219pnb09 New Cairo Academy'),
(21654, 'https://ror.org/021gxmd22', 'no_lang_code', 1, 'https://ror.org/021gxmd22 RVJ - Editores (Portugal)'),
(21655, 'https://ror.org/021jdc910', 'es', 1, 'https://ror.org/021jdc910 Universidad Regional del Norte'),
(21656, 'https://ror.org/021k2cy37', 'it', 1, 'https://ror.org/021k2cy37 Suor Orsola Benincasa University of Naples UniversitĆ  degli Studi Suor Orsola Benincasa UniversitĆ© sœur-ursule-benincasa'),
(21657, 'https://ror.org/021mz4j77', 'no_lang_code', 1, 'https://ror.org/021mz4j77 Velcourt (United Kingdom)'),
(21658, 'https://ror.org/021njs178', 'es', 1, 'https://ror.org/021njs178 Intercontinental University Universidad Intercontinental'),
(21659, 'https://ror.org/021q7b987', 'no_lang_code', 1, 'https://ror.org/021q7b987 Tadiran Batteries (Germany)'),
(21660, 'https://ror.org/021qf1j15', 'en', 1, 'https://ror.org/021qf1j15 Townlands Memorial Hospital'),
(21661, 'https://ror.org/021rhh009', 'no_lang_code', 1, 'https://ror.org/021rhh009 Oracle (Germany)'),
(21662, 'https://ror.org/021rpyr13', 'en', 1, 'https://ror.org/021rpyr13 Canadian Society for Italian Studies SociĆ©tĆ© Canadienne pour les Ɖtudes Italiennes'),
(21663, 'https://ror.org/021s39r20', 'es', 1, 'https://ror.org/021s39r20 Colegio Metodista de Costa Rica'),
(21664, 'https://ror.org/021wnqb35', 'en', 1, 'https://ror.org/021wnqb35 Withernsea Hospital'),
(21665, 'https://ror.org/021wwet11', 'no_lang_code', 1, 'https://ror.org/021wwet11 Transvalor (France)'),
(21666, 'https://ror.org/021xsee05', 'no_lang_code', 1, 'https://ror.org/021xsee05 Norac Pharma (United States)'),
(21667, 'https://ror.org/021zm0v94', 'es', 1, 'https://ror.org/021zm0v94 Instituto Profesional Agrario Adolfo Matthei'),
(21668, 'https://ror.org/0220q4w51', 'en', 1, 'https://ror.org/0220q4w51 WEGEMT'),
(21669, 'https://ror.org/0220rp185', 'en', 1, 'https://ror.org/0220rp185 Stockport NHS Foundation Trust'),
(21670, 'https://ror.org/022283x63', 'no_lang_code', 1, 'https://ror.org/022283x63 Oxfam'),
(21671, 'https://ror.org/0225snd59', 'en', 1, 'https://ror.org/0225snd59 Finis Terrae University Universidad Finis Terrae'),
(21672, 'https://ror.org/0227qpa16', 'en', 1, 'https://ror.org/0227qpa16 NHS Blood and Transplant'),
(21673, 'https://ror.org/022awwm23', 'en', 1, 'https://ror.org/022awwm23 Wellcome Collection'),
(21674, 'https://ror.org/022b6b871', 'en', 1, 'https://ror.org/022b6b871 Jobu University 上武大学'),
(21675, 'https://ror.org/022brwp40', 'en', 1, 'https://ror.org/022brwp40 Cannock Chase Hospital'),
(21676, 'https://ror.org/022camr20', 'en', 1, 'https://ror.org/022camr20 Universidad de las Ciencias InformƔticas University of Information Science'),
(21677, 'https://ror.org/022ejqa41', 'en', 1, 'https://ror.org/022ejqa41 BMI The Ridgeway Hospital'),
(21678, 'https://ror.org/022fzky59', 'no_lang_code', 1, 'https://ror.org/022fzky59 Optiwave Systems (Canada)'),
(21679, 'https://ror.org/022hr6a87', 'en', 1, 'https://ror.org/022hr6a87 Veria Central Public Library Γημόσια κεντρική βιβλιοθήκη βέροιας'),
(21680, 'https://ror.org/022j77113', 'en', 1, 'https://ror.org/022j77113 San Juan County Partnership'),
(21681, 'https://ror.org/022jsgk59', 'en', 1, 'https://ror.org/022jsgk59 West Cornwall Hospital'),
(21682, 'https://ror.org/022nmct36', 'en', 1, 'https://ror.org/022nmct36 Michigan Coalition to End Domestic and Sexual Violence'),
(21683, 'https://ror.org/022ps9t53', 'en', 1, 'https://ror.org/022ps9t53 New York State Senate'),
(21684, 'https://ror.org/022qam104', 'es', 1, 'https://ror.org/022qam104 Spanish Autonomous University of Durango Universidad Autónoma España de Durango'),
(21685, 'https://ror.org/022r3pj76', 'es', 1, 'https://ror.org/022r3pj76 Instituto Universitario Asociación Cristiana de Jóvenes'),
(21686, 'https://ror.org/022rmxm39', 'no_lang_code', 1, 'https://ror.org/022rmxm39 Sprout Design (United Kingdom)'),
(21687, 'https://ror.org/022s5gm85', 'en', 1, 'https://ror.org/022s5gm85 Dongguan People’s Hospital äøœčŽžåø‚äŗŗę°‘åŒ»é™¢'),
(21688, 'https://ror.org/022sn3k05', 'es', 1, 'https://ror.org/022sn3k05 Universidad Peruana de Ciencias e InformƔtica'),
(21689, 'https://ror.org/022t9bz35', 'es', 1, 'https://ror.org/022t9bz35 Instituto Profesional Los Leones'),
(21690, 'https://ror.org/022vfdk28', 'no_lang_code', 1, 'https://ror.org/022vfdk28 OSM DAN (Israel) או.אה.אמ. - דן בע"מ'),
(21691, 'https://ror.org/022vq0k77', 'no_lang_code', 1, 'https://ror.org/022vq0k77 Test Labs International (Canada)'),
(21692, 'https://ror.org/022w8nz24', 'no_lang_code', 1, 'https://ror.org/022w8nz24 PlayGen (United Kingdom)'),
(21693, 'https://ror.org/022wmtv37', 'en', 1, 'https://ror.org/022wmtv37 Crandall University'),
(21694, 'https://ror.org/022wsx863', 'et', 1, 'https://ror.org/022wsx863 Miksike'),
(21695, 'https://ror.org/022y4t490', 'en', 1, 'https://ror.org/022y4t490 Sarah Samuels Center for Public Health & Evaluation'),
(21696, 'https://ror.org/0231kjt76', 'en', 1, 'https://ror.org/0231kjt76 Montana Office of Public Instruction'),
(21697, 'https://ror.org/0231mbz86', 'no_lang_code', 1, 'https://ror.org/0231mbz86 Anglo American (United Kingdom)'),
(21698, 'https://ror.org/0232v5h12', 'no_lang_code', 1, 'https://ror.org/0232v5h12 PharmaReview Corporation'),
(21699, 'https://ror.org/02336q433', 'no_lang_code', 1, 'https://ror.org/02336q433 Enghouse Interactive (United Kingdom)'),
(21700, 'https://ror.org/0233by794', 'no_lang_code', 1, 'https://ror.org/0233by794 ReNeuron (United Kingdom)'),
(21701, 'https://ror.org/0233tck35', 'en', 1, 'https://ror.org/0233tck35 Wallingford Community Hospital'),
(21702, 'https://ror.org/0235cda14', 'no_lang_code', 1, 'https://ror.org/0235cda14 Qserve Group (Netherlands)'),
(21703, 'https://ror.org/0235m5777', 'fr', 1, 'https://ror.org/0235m5777 Ɖcole SupĆ©rieure de Communication et de PublicitĆ©'),
(21704, 'https://ror.org/02380m508', 'en', 1, 'https://ror.org/02380m508 Medway Maritime Hospital'),
(21705, 'https://ror.org/0239tnv53', 'no_lang_code', 1, 'https://ror.org/0239tnv53 Omdurman Ahlia University Ų¬Ų§Ł…Ų¹Ų© أم درمان Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(21706, 'https://ror.org/023cpce20', 'en', 1, 'https://ror.org/023cpce20 Universidad Internacional Webber Webber International University'),
(21707, 'https://ror.org/023cs4y60', 'no_lang_code', 1, 'https://ror.org/023cs4y60 Remote Sensing Solutions (Germany)'),
(21708, 'https://ror.org/023gbp227', 'en', 1, 'https://ror.org/023gbp227 Community Sector Council Newfoundland and Labrador'),
(21709, 'https://ror.org/023jjn461', 'no_lang_code', 1, 'https://ror.org/023jjn461 Varta Microbattery (Germany)'),
(21710, 'https://ror.org/023k5b089', 'en', 1, 'https://ror.org/023k5b089 Textile Research Institute'),
(21711, 'https://ror.org/023kh3y84', 'no_lang_code', 1, 'https://ror.org/023kh3y84 Sidekick Studios (United Kingdom)'),
(21712, 'https://ror.org/023m5rq87', 'en', 1, 'https://ror.org/023m5rq87 National Pedagogic University Universidad Pedagógica Nacional'),
(21713, 'https://ror.org/023mbkk92', 'no_lang_code', 1, 'https://ror.org/023mbkk92 Tektronix (Canada)'),
(21714, 'https://ror.org/023njmx50', 'no_lang_code', 1, 'https://ror.org/023njmx50 Midland Valley Exploration (United Kingdom)'),
(21715, 'https://ror.org/023r30q21', 'no_lang_code', 1, 'https://ror.org/023r30q21 Sitex 45 (Romania)'),
(21716, 'https://ror.org/023wbcv08', 'no_lang_code', 1, 'https://ror.org/023wbcv08 TP Vision (Belgium)'),
(21717, 'https://ror.org/023ys3x64', 'no_lang_code', 1, 'https://ror.org/023ys3x64 Thermo Fisher Scientific (Denmark)'),
(21718, 'https://ror.org/023zc1f33', 'fr', 1, 'https://ror.org/023zc1f33 Ɖtablissement Dar El Hadith El Hassania Ł…Ų¤Ų³Ų³Ų© ŲÆŲ§Ų± Ų§Ł„Ų­ŲÆŁŠŲ« Ų§Ł„Ų­Ų³Ł†ŁŠŲ©'),
(21719, 'https://ror.org/02401m575', 'no_lang_code', 1, 'https://ror.org/02401m575 Supanetics (United Kingdom)'),
(21720, 'https://ror.org/0240exq58', 'en', 1, 'https://ror.org/0240exq58 Skegness Hospital'),
(21721, 'https://ror.org/0241a4222', 'es', 1, 'https://ror.org/0241a4222 Hospital Provincial de Rosario'),
(21722, 'https://ror.org/0241ard09', 'no_lang_code', 1, 'https://ror.org/0241ard09 Vertellus Specialties (United Kingdom)'),
(21723, 'https://ror.org/02440j369', 'no_lang_code', 1, 'https://ror.org/02440j369 NiTech Solutions (United Kingdom)'),
(21724, 'https://ror.org/02465cd10', 'fr', 1, 'https://ror.org/02465cd10 Women''s and Gender Studies et Recherches FƩministes'),
(21725, 'https://ror.org/024am6q88', 'no_lang_code', 1, 'https://ror.org/024am6q88 HBW-Gubesch Kunststoff-Engineering (Germany)'),
(21726, 'https://ror.org/024ccd889', 'en', 1, 'https://ror.org/024ccd889 Wayland Baptist University'),
(21727, 'https://ror.org/024epr358', 'en', 1, 'https://ror.org/024epr358 Kendray Hospital'),
(21728, 'https://ror.org/024et1e33', 'en', 1, 'https://ror.org/024et1e33 Polytechnic University of San Luis Potosƭ Universidad PolitƩcnica de San Luis Potosƭ'),
(21729, 'https://ror.org/024gy8x37', 'en', 1, 'https://ror.org/024gy8x37 Population Reference Bureau'),
(21730, 'https://ror.org/024h3kh50', 'no_lang_code', 1, 'https://ror.org/024h3kh50 Ridan (Poland)'),
(21731, 'https://ror.org/024j02139', 'en', 1, 'https://ror.org/024j02139 Northeast Communities Against Substance Abuse'),
(21732, 'https://ror.org/024kwvm84', 'en', 1, 'https://ror.org/024kwvm84 Kyungil University'),
(21733, 'https://ror.org/024mfhp94', 'no_lang_code', 1, 'https://ror.org/024mfhp94 Scytl (Spain)'),
(21734, 'https://ror.org/024mpte60', 'en', 1, 'https://ror.org/024mpte60 University of Kairouan UniversitĆ© de kairouan Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚ŁŠŲ±ŁˆŲ§Ł†'),
(21735, 'https://ror.org/024msj675', 'es', 1, 'https://ror.org/024msj675 Universidad YacambĆŗ'),
(21736, 'https://ror.org/024mswg55', 'en', 1, 'https://ror.org/024mswg55 Blakelands Hospital'),
(21737, 'https://ror.org/024n99014', 'en', 1, 'https://ror.org/024n99014 Thames Valley Hospital'),
(21738, 'https://ror.org/024nbxn35', 'en', 1, 'https://ror.org/024nbxn35 Jiaozuo University ē„¦ä½œå¤§å­¦'),
(21739, 'https://ror.org/024nrkt38', 'no_lang_code', 1, 'https://ror.org/024nrkt38 Diebold Nixdorf (Germany)'),
(21740, 'https://ror.org/024pjcr93', 'no_lang_code', 1, 'https://ror.org/024pjcr93 Red Electrica de Espana (Spain)'),
(21741, 'https://ror.org/024q7v561', 'no_lang_code', 1, 'https://ror.org/024q7v561 Synyo (Austria)'),
(21742, 'https://ror.org/024rsp410', 'pt', 1, 'https://ror.org/024rsp410 Centro UniversitƔrio de Lavras'),
(21743, 'https://ror.org/024tpjw43', 'en', 1, 'https://ror.org/024tpjw43 The Princess Grace Hospital'),
(21744, 'https://ror.org/024v03d05', 'en', 1, 'https://ror.org/024v03d05 Bradwell Community Hospital'),
(21745, 'https://ror.org/024w5t184', 'en', 1, 'https://ror.org/024w5t184 Runnymede Trust'),
(21746, 'https://ror.org/024wfy702', 'no_lang_code', 1, 'https://ror.org/024wfy702 Niadyne Pharma (United States)'),
(21747, 'https://ror.org/024wgn240', 'pt', 1, 'https://ror.org/024wgn240 Centro UniversitƔrio de Desenvolvimento do Centro Oeste'),
(21748, 'https://ror.org/024xe4a86', 'no_lang_code', 1, 'https://ror.org/024xe4a86 Oros (France)'),
(21749, 'https://ror.org/024xqxd02', 'no_lang_code', 1, 'https://ror.org/024xqxd02 RUAG (Sweden)'),
(21750, 'https://ror.org/024xrts92', 'en', 1, 'https://ror.org/024xrts92 Port Gamble S''Klallam Tribal Council'),
(21751, 'https://ror.org/024yaae06', 'fr', 1, 'https://ror.org/024yaae06 UniversitƩ Catholique du Congo'),
(21752, 'https://ror.org/024yfg990', 'en', 1, 'https://ror.org/024yfg990 Ukrainian Scientific and Research Institute of Ecological Problems'),
(21753, 'https://ror.org/02507sy82', 'en', 1, 'https://ror.org/02507sy82 St George''s Hospital'),
(21754, 'https://ror.org/0250q0m17', 'es', 1, 'https://ror.org/0250q0m17 Universidad Interamericana'),
(21755, 'https://ror.org/02558h854', 'es', 1, 'https://ror.org/02558h854 Hospital Quirónsalud Barcelona'),
(21756, 'https://ror.org/0256nsb38', 'no_lang_code', 1, 'https://ror.org/0256nsb38 Urba 2000'),
(21757, 'https://ror.org/02571vj15', 'no_lang_code', 1, 'https://ror.org/02571vj15 University of Skikda UniversitƩ of 20 aoƻt 1955 of Skikda'),
(21758, 'https://ror.org/02598xm52', 'no_lang_code', 1, 'https://ror.org/02598xm52 Services and Studies for Air Navigation and Aeronautical Safety'),
(21759, 'https://ror.org/0259tmr25', 'es', 1, 'https://ror.org/0259tmr25 Centro Universitario Juana de Asbaje'),
(21760, 'https://ror.org/0259yjc90', 'en', 1, 'https://ror.org/0259yjc90 Zimbabwe Association of Church-Related Hospitals'),
(21761, 'https://ror.org/025bepc78', 'no_lang_code', 1, 'https://ror.org/025bepc78 3D Systems (Belgium)'),
(21762, 'https://ror.org/025bx6p27', 'en', 1, 'https://ror.org/025bx6p27 St Pancras Hospital'),
(21763, 'https://ror.org/025d3w458', 'es', 1, 'https://ror.org/025d3w458 Universidad Interamericana de Educación a Distancia de PanamÔ'),
(21764, 'https://ror.org/025ebgz81', 'no_lang_code', 1, 'https://ror.org/025ebgz81 NanoTechLabs (United States)'),
(21765, 'https://ror.org/025gwsg11', 'en', 1, 'https://ror.org/025gwsg11 Shangqiu First People''s Hospital å•†äø˜åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(21766, 'https://ror.org/025pjyp02', 'no_lang_code', 1, 'https://ror.org/025pjyp02 Plasma Coatings (United Kingdom)'),
(21767, 'https://ror.org/025qja684', 'en', 1, 'https://ror.org/025qja684 Omdurman Islamic University Ų¬Ų§Ł…Ų¹Ų© أم درمان Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(21768, 'https://ror.org/025rxqy43', 'da', 1, 'https://ror.org/025rxqy43 Danish National Archives Statens Arkivers'),
(21769, 'https://ror.org/025s2ay93', 'en', 1, 'https://ror.org/025s2ay93 North Cotswolds Hospital'),
(21770, 'https://ror.org/025tf9d31', 'no_lang_code', 1, 'https://ror.org/025tf9d31 Red Hat (Ireland)'),
(21771, 'https://ror.org/025tsch51', 'no_lang_code', 1, 'https://ror.org/025tsch51 Scientific Computing & Modelling (Netherlands)'),
(21772, 'https://ror.org/025tvnr06', 'en', 1, 'https://ror.org/025tvnr06 National School of Built and Ground Works Engineering'),
(21773, 'https://ror.org/025tyv665', 'no_lang_code', 1, 'https://ror.org/025tyv665 Pavemetrics Systems (Canada)'),
(21774, 'https://ror.org/025xjs150', 'en', 1, 'https://ror.org/025xjs150 El Shorouk Academy'),
(21775, 'https://ror.org/025xt6a66', 'no_lang_code', 1, 'https://ror.org/025xt6a66 Samo (Italy)'),
(21776, 'https://ror.org/025zd8760', 'pt', 1, 'https://ror.org/025zd8760 Universidade do Vale do SapucaĆ­'),
(21777, 'https://ror.org/025zp0g22', 'en', 1, 'https://ror.org/025zp0g22 Association Canadienne pour les Ɖtudes sur la Cooperation Canadian Association for Studies in Co-operation'),
(21778, 'https://ror.org/025zz8754', 'en', 1, 'https://ror.org/025zz8754 NWT Literacy Council');
INSERT INTO `rors` VALUES
(21779, 'https://ror.org/02604an77', 'es', 1, 'https://ror.org/02604an77 Escuela Colombiana de Rehabilitación'),
(21780, 'https://ror.org/02606ke74', 'en', 1, 'https://ror.org/02606ke74 Richmond Royal Hospital'),
(21781, 'https://ror.org/0260r5f51', 'en', 1, 'https://ror.org/0260r5f51 Swindon Borough Council'),
(21782, 'https://ror.org/0260zag83', 'en', 1, 'https://ror.org/0260zag83 St. Lawrence College'),
(21783, 'https://ror.org/0261fx274', 'no_lang_code', 1, 'https://ror.org/0261fx274 Schüßler-Plan (Germany)'),
(21784, 'https://ror.org/0262yf988', 'en', 1, 'https://ror.org/0262yf988 Alderney Hospital'),
(21785, 'https://ror.org/02631q704', 'fr', 1, 'https://ror.org/02631q704 Ɖcole SupĆ©rieure des Industries du Textile et de l''Habillement'),
(21786, 'https://ror.org/0263kr214', 'es', 1, 'https://ror.org/0263kr214 Universidad del Valle de Santiago'),
(21787, 'https://ror.org/0264gtk20', 'en', 1, 'https://ror.org/0264gtk20 Marion General Hospital'),
(21788, 'https://ror.org/0264qnp36', 'en', 1, 'https://ror.org/0264qnp36 Second Artillery General Hospital of Chinese People''s Liberation Army äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬äŗŒē‚®å…µę€»åŒ»é™¢'),
(21789, 'https://ror.org/02657e607', 'pt', 1, 'https://ror.org/02657e607 Instituto Superior de CiĆŖncias e Tecnologia Alberto Chipande'),
(21790, 'https://ror.org/0266khk21', 'no_lang_code', 1, 'https://ror.org/0266khk21 Merlin Circuit Technology (United Kingdom)'),
(21791, 'https://ror.org/026a52219', 'no_lang_code', 1, 'https://ror.org/026a52219 Moixa (United Kingdom)'),
(21792, 'https://ror.org/026b2vr33', 'no_lang_code', 1, 'https://ror.org/026b2vr33 Rofin (United Kingdom)'),
(21793, 'https://ror.org/026cgfq41', 'no_lang_code', 1, 'https://ror.org/026cgfq41 Quality Electrodynamics (United States)'),
(21794, 'https://ror.org/026cn0061', 'en', 1, 'https://ror.org/026cn0061 Erith and District Hospital'),
(21795, 'https://ror.org/026efkc57', 'en', 1, 'https://ror.org/026efkc57 Scottish Universities Physics Alliance'),
(21796, 'https://ror.org/026enhk32', 'no_lang_code', 1, 'https://ror.org/026enhk32 Tarp (United States)'),
(21797, 'https://ror.org/026jsye16', 'no_lang_code', 1, 'https://ror.org/026jsye16 Y-Stress (United States)'),
(21798, 'https://ror.org/026p1jb43', 'en', 1, 'https://ror.org/026p1jb43 Universidad del Valle de Atemajac University of the Valley of Atemajac'),
(21799, 'https://ror.org/026pfmg90', 'fr', 1, 'https://ror.org/026pfmg90 Ɖcole Africaine de la MĆ©tĆ©orologie et de l''Aviation Civile'),
(21800, 'https://ror.org/026s89d26', 'en', 1, 'https://ror.org/026s89d26 William Howard Taft University'),
(21801, 'https://ror.org/026tvqe20', 'no_lang_code', 1, 'https://ror.org/026tvqe20 Astronomical Observatory Nicolaus Copernicus астрономическа Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ Šø ŠæŠ»Š°Š½ŠµŃ‚Š°Ń€ŠøŃƒŠ¼ ā€žŠŠøŠŗŠ¾Š»Š°Š¹ ŠšŠ¾ŠæŠµŃ€Š½ŠøŠŗā€œ'),
(21802, 'https://ror.org/026v6r221', 'en', 1, 'https://ror.org/026v6r221 Tewkesbury Community Hospital'),
(21803, 'https://ror.org/026vdme11', 'en', 1, 'https://ror.org/026vdme11 Higher Institute for Cooperative and Administrative Studies'),
(21804, 'https://ror.org/026x43f05', 'no_lang_code', 1, 'https://ror.org/026x43f05 NKE Instrumentation (France)'),
(21805, 'https://ror.org/026xnjn61', 'no_lang_code', 1, 'https://ror.org/026xnjn61 Whirlpool (Italy)'),
(21806, 'https://ror.org/026y0w292', 'en', 1, 'https://ror.org/026y0w292 Twyford Church of England High School'),
(21807, 'https://ror.org/0271jbv59', 'no_lang_code', 1, 'https://ror.org/0271jbv59 Proactive Oral Solutions (United States)'),
(21808, 'https://ror.org/0272t8w72', 'no_lang_code', 1, 'https://ror.org/0272t8w72 Naeva Tec (Spain)'),
(21809, 'https://ror.org/0272v4z91', 'en', 1, 'https://ror.org/0272v4z91 Warminster Community Hospital'),
(21810, 'https://ror.org/027840k02', 'en', 1, 'https://ror.org/027840k02 Catholic University of Santiago del Estero Universidad Católica de Santiago del Estero'),
(21811, 'https://ror.org/02788t795', 'en', 1, 'https://ror.org/02788t795 Maudsley Hospital'),
(21812, 'https://ror.org/0279qd249', 'en', 1, 'https://ror.org/0279qd249 Bexhill Hospital'),
(21813, 'https://ror.org/0279yv972', 'en', 1, 'https://ror.org/0279yv972 Pharaohs Higher Institute of Computer Information Systems and Management معهد الفراعنة العالى للحاسب الألى ŁˆŁ†ŲøŁ… Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ ŁˆŲ§Ł„Ų„ŲÆŲ§Ų±Ų©'),
(21814, 'https://ror.org/027a5xq62', 'en', 1, 'https://ror.org/027a5xq62 Women in Resource Development'),
(21815, 'https://ror.org/027a72a41', 'no_lang_code', 1, 'https://ror.org/027a72a41 Sioux Manufacturing (United States)'),
(21816, 'https://ror.org/027cgen28', 'en', 1, 'https://ror.org/027cgen28 Shanghai Guanghua Hospital of Integrated Traditional Chinese and Western Medicine äøŠęµ·åø‚å…‰åŽäø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(21817, 'https://ror.org/027df5686', 'en', 1, 'https://ror.org/027df5686 Learning Ally'),
(21818, 'https://ror.org/027e1wk64', 'en', 1, 'https://ror.org/027e1wk64 Hunters Hill Observatory'),
(21819, 'https://ror.org/027e4g787', 'en', 1, 'https://ror.org/027e4g787 York Teaching Hospital NHS Foundation Trust'),
(21820, 'https://ror.org/027ep7e51', 'en', 1, 'https://ror.org/027ep7e51 Sutton Cottage Hospital'),
(21821, 'https://ror.org/027f5z015', 'no_lang_code', 1, 'https://ror.org/027f5z015 Xigen (Switzerland)'),
(21822, 'https://ror.org/027fdd835', 'en', 1, 'https://ror.org/027fdd835 Vanier College'),
(21823, 'https://ror.org/027g41b71', 'no_lang_code', 1, 'https://ror.org/027g41b71 Picanol (Belgium)'),
(21824, 'https://ror.org/027h8t796', 'en', 1, 'https://ror.org/027h8t796 Bundesamt für Statistik Federal Statistical Office Office fédéral de la statistique Ufficio federale di statistica Uffizi federal da statistica'),
(21825, 'https://ror.org/027m8k660', 'en', 1, 'https://ror.org/027m8k660 Monroe County Department of Human Services'),
(21826, 'https://ror.org/027ng0s03', 'no_lang_code', 1, 'https://ror.org/027ng0s03 META Group'),
(21827, 'https://ror.org/027pap738', 'no_lang_code', 1, 'https://ror.org/027pap738 Resensys (United States)'),
(21828, 'https://ror.org/027pq2t86', 'no_lang_code', 1, 'https://ror.org/027pq2t86 Sidac (Italy)'),
(21829, 'https://ror.org/027pwvz62', 'es', 1, 'https://ror.org/027pwvz62 Universidad Pedagógica Mariscal Sucre'),
(21830, 'https://ror.org/027q6qt05', 'es', 1, 'https://ror.org/027q6qt05 Universidad EvangƩlica de las AmƩricas'),
(21831, 'https://ror.org/027qm5t47', 'no_lang_code', 1, 'https://ror.org/027qm5t47 FitzGerald Nurseries (Ireland)'),
(21832, 'https://ror.org/027wvv544', 'en', 1, 'https://ror.org/027wvv544 Pershore Community Hospital'),
(21833, 'https://ror.org/027x71w42', 'no_lang_code', 1, 'https://ror.org/027x71w42 Mandala Biosciences (United States)'),
(21834, 'https://ror.org/027x7jn80', 'no_lang_code', 1, 'https://ror.org/027x7jn80 NeuroSearch (Denmark)'),
(21835, 'https://ror.org/027xm5n95', 'en', 1, 'https://ror.org/027xm5n95 National Research and Education Network'),
(21836, 'https://ror.org/027y3mp05', 'es', 1, 'https://ror.org/027y3mp05 Universidad Chileno BritƔnica de Cultura'),
(21837, 'https://ror.org/027yy2w57', 'en', 1, 'https://ror.org/027yy2w57 Kobatake Hospital å°ē• ē—…é™¢'),
(21838, 'https://ror.org/027z1kr85', 'no_lang_code', 1, 'https://ror.org/027z1kr85 PhenoSystems (Belgium)'),
(21839, 'https://ror.org/0280gjv27', 'no_lang_code', 1, 'https://ror.org/0280gjv27 GMV Innovating Solutions (Portugal)'),
(21840, 'https://ror.org/0280r7h11', 'en', 1, 'https://ror.org/0280r7h11 Mid Essex Hospital Services NHS Trust'),
(21841, 'https://ror.org/028177t76', 'en', 1, 'https://ror.org/028177t76 Concordia University Texas Universidad Concordia Texas'),
(21842, 'https://ror.org/0281stt89', 'no_lang_code', 1, 'https://ror.org/0281stt89 Gruppo Scienzia Machinale (Italy)'),
(21843, 'https://ror.org/0281w2821', 'no_lang_code', 1, 'https://ror.org/0281w2821 Sofie Biosciences (United States)'),
(21844, 'https://ror.org/0282d8z17', 'no_lang_code', 1, 'https://ror.org/0282d8z17 Coesia (Italy)'),
(21845, 'https://ror.org/0282rt868', 'en', 1, 'https://ror.org/0282rt868 Deutsches Hygiene-Museum German Hygiene Museum'),
(21846, 'https://ror.org/028301226', 'en', 1, 'https://ror.org/028301226 West Virginia Department of Education'),
(21847, 'https://ror.org/028380v12', 'es', 1, 'https://ror.org/028380v12 Fundación Academia de Dibujo Profesional'),
(21848, 'https://ror.org/0283d6p96', 'es', 1, 'https://ror.org/0283d6p96 Instituto Profesional Escuela De Contadores Auditores De Santiago'),
(21849, 'https://ror.org/02846rb74', 'en', 1, 'https://ror.org/02846rb74 Whitby Hospital'),
(21850, 'https://ror.org/02854zp38', 'pt', 1, 'https://ror.org/02854zp38 Centro Universitario Toledo'),
(21851, 'https://ror.org/0285v1m71', 'es', 1, 'https://ror.org/0285v1m71 Universidad Comunera'),
(21852, 'https://ror.org/0287cjk10', 'en', 1, 'https://ror.org/0287cjk10 Spire Little Aston Hospital'),
(21853, 'https://ror.org/0287xzx52', 'en', 1, 'https://ror.org/0287xzx52 Republican Research Center for Radiation Medicine and Human Ecology'),
(21854, 'https://ror.org/0289gr697', 'es', 1, 'https://ror.org/0289gr697 Institución Universitaria Colegio Mayor de Antioquia'),
(21855, 'https://ror.org/0289zbq28', 'en', 1, 'https://ror.org/0289zbq28 Shasta County Chemical People'),
(21856, 'https://ror.org/028dfkq31', 'es', 1, 'https://ror.org/028dfkq31 Universidad Americana de Acapulco'),
(21857, 'https://ror.org/028f2wx05', 'en', 1, 'https://ror.org/028f2wx05 Chartwell Diagnostic and Imaging Centre'),
(21858, 'https://ror.org/028fpac96', 'es', 1, 'https://ror.org/028fpac96 Fundación Interamericana Técnica'),
(21859, 'https://ror.org/028gajb68', 'en', 1, 'https://ror.org/028gajb68 Nile Valley University Ų¬Ų§Ł…Ų¹Ų© وادي Ų§Ł„Ł†ŁŠŁ„'),
(21860, 'https://ror.org/028gkvf62', 'pt', 1, 'https://ror.org/028gkvf62 Centro UniversitƔrio Nossa Senhora do Patrocƭnio'),
(21861, 'https://ror.org/028m0e381', 'no_lang_code', 1, 'https://ror.org/028m0e381 Protein Technologies (United Kingdom)'),
(21862, 'https://ror.org/028r5k665', 'no_lang_code', 1, 'https://ror.org/028r5k665 Platit (Switzerland)'),
(21863, 'https://ror.org/028rmam09', 'no_lang_code', 1, 'https://ror.org/028rmam09 Shijiazhuang University ēŸ³å®¶åŗ„å­¦é™¢'),
(21864, 'https://ror.org/028tdwj14', 'no_lang_code', 1, 'https://ror.org/028tdwj14 RSscan International (Belgium)'),
(21865, 'https://ror.org/028th4269', 'fr', 1, 'https://ror.org/028th4269 Ɖcole des Hautes Ɖtudes de Biotechnologie et de SantĆ©'),
(21866, 'https://ror.org/028w3g135', 'es', 1, 'https://ror.org/028w3g135 Universidad JosƩ Carlos Mariategui'),
(21867, 'https://ror.org/0293hjc54', 'no_lang_code', 1, 'https://ror.org/0293hjc54 Sustainable Energy Systems (United Kingdom)'),
(21868, 'https://ror.org/0294g4w14', 'no_lang_code', 1, 'https://ror.org/0294g4w14 TerOpta (United Kingdom)'),
(21869, 'https://ror.org/0294yf460', 'no_lang_code', 1, 'https://ror.org/0294yf460 France Rol (France)'),
(21870, 'https://ror.org/0295ktr04', 'no_lang_code', 1, 'https://ror.org/0295ktr04 Nordic Transport Development'),
(21871, 'https://ror.org/0295q2p17', 'no_lang_code', 1, 'https://ror.org/0295q2p17 Metabolic Solutions Development Company (United States)'),
(21872, 'https://ror.org/0297hyv43', 'en', 1, 'https://ror.org/0297hyv43 National Cancer Registrars Association'),
(21873, 'https://ror.org/0297n1v45', 'en', 1, 'https://ror.org/0297n1v45 Amberton University Universidad Amberton'),
(21874, 'https://ror.org/029ccny38', 'es', 1, 'https://ror.org/029ccny38 Universidad Católica de Pereira'),
(21875, 'https://ror.org/029d6y387', 'no_lang_code', 1, 'https://ror.org/029d6y387 STM Products (Italy)'),
(21876, 'https://ror.org/029gksr15', 'no_lang_code', 1, 'https://ror.org/029gksr15 SilicoLife (Portugal)'),
(21877, 'https://ror.org/029jcrc31', 'en', 1, 'https://ror.org/029jcrc31 British Constructional Steelwork Association'),
(21878, 'https://ror.org/029jgxb70', 'pt', 1, 'https://ror.org/029jgxb70 Centro UniversitƔrio Curitiba'),
(21879, 'https://ror.org/029jt9a82', 'en', 1, 'https://ror.org/029jt9a82 International University of Africa Ų¬Ų§Ł…Ų¹Ų© Ų„ŁŲ±ŁŠŁ‚ŁŠŲ§ Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(21880, 'https://ror.org/029me2q51', 'en', 1, 'https://ror.org/029me2q51 Egyptian Russian University الجامعة Ų§Ł„Ų±ŁˆŲ³ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(21881, 'https://ror.org/029mrrs96', 'en', 1, 'https://ror.org/029mrrs96 Noah''s Ark Children''s Hospital for Wales Ysbyty Arch Noa Plant Cymru'),
(21882, 'https://ror.org/029nhgs15', 'no_lang_code', 1, 'https://ror.org/029nhgs15 WesTest Engineering (United States)'),
(21883, 'https://ror.org/029nxc858', 'en', 1, 'https://ror.org/029nxc858 Maine Department of Education'),
(21884, 'https://ror.org/029qjm428', 'es', 1, 'https://ror.org/029qjm428 Instituto Profesional de Ciencias de la Computación'),
(21885, 'https://ror.org/029rkt035', 'en', 1, 'https://ror.org/029rkt035 Remote Sensing Application Center'),
(21886, 'https://ror.org/029s29983', 'en', 1, 'https://ror.org/029s29983 Genome Canada'),
(21887, 'https://ror.org/029v2wj86', 'en', 1, 'https://ror.org/029v2wj86 Council of Ministers of Education'),
(21888, 'https://ror.org/029vb5696', 'en', 1, 'https://ror.org/029vb5696 Zimbabwe National Quality Assurance Program'),
(21889, 'https://ror.org/029xkyf70', 'en', 1, 'https://ror.org/029xkyf70 Spire Dunedin Hospital'),
(21890, 'https://ror.org/029y8px13', 'en', 1, 'https://ror.org/029y8px13 Newmarket Hospital'),
(21891, 'https://ror.org/029z5ap77', 'es', 1, 'https://ror.org/029z5ap77 Corporación Universitaria Republicana'),
(21892, 'https://ror.org/029zzvq50', 'es', 1, 'https://ror.org/029zzvq50 Universidad Israel'),
(21893, 'https://ror.org/02a46sb39', 'en', 1, 'https://ror.org/02a46sb39 Tetoora Road Observatory'),
(21894, 'https://ror.org/02a6j1h04', 'fi', 1, 'https://ror.org/02a6j1h04 Tietotalo'),
(21895, 'https://ror.org/02a7np905', 'es', 1, 'https://ror.org/02a7np905 Centro Universitario Latinoamericano de Morelos'),
(21896, 'https://ror.org/02a7ztw78', 'no_lang_code', 1, 'https://ror.org/02a7ztw78 Microsemi (United Kingdom)'),
(21897, 'https://ror.org/02a809t02', 'no_lang_code', 1, 'https://ror.org/02a809t02 Vizzuality (Spain)'),
(21898, 'https://ror.org/02a97td45', 'fr', 1, 'https://ror.org/02a97td45 Observatoire de Dauban'),
(21899, 'https://ror.org/02a9dqv95', 'no_lang_code', 1, 'https://ror.org/02a9dqv95 Trias (Greece)'),
(21900, 'https://ror.org/02ab1bc46', 'en', 1, 'https://ror.org/02ab1bc46 University Center Augusto Motta'),
(21901, 'https://ror.org/02abh5f58', 'no_lang_code', 1, 'https://ror.org/02abh5f58 LC Vision (United States)'),
(21902, 'https://ror.org/02abn3h81', 'en', 1, 'https://ror.org/02abn3h81 National Society of Black Physicists'),
(21903, 'https://ror.org/02abxwv41', 'en', 1, 'https://ror.org/02abxwv41 Wyoming Department of Education'),
(21904, 'https://ror.org/02acc9e56', 'fr', 1, 'https://ror.org/02acc9e56 Institut des Hautes Ɖtudes de Tunis Institute of Advanced Studies of Tunis'),
(21905, 'https://ror.org/02aethq11', 'no_lang_code', 1, 'https://ror.org/02aethq11 Wapice (Finland)'),
(21906, 'https://ror.org/02agt5758', 'no_lang_code', 1, 'https://ror.org/02agt5758 Northern Technologies International (United States)'),
(21907, 'https://ror.org/02ahe3232', 'en', 1, 'https://ror.org/02ahe3232 European Society of Cardiology'),
(21908, 'https://ror.org/02ahky613', 'es', 1, 'https://ror.org/02ahky613 Northeastern University Universidad del Noreste'),
(21909, 'https://ror.org/02akddf79', 'en', 1, 'https://ror.org/02akddf79 Canadian Catholic Historical Association'),
(21910, 'https://ror.org/02akgnc95', 'no_lang_code', 1, 'https://ror.org/02akgnc95 Solems (France)'),
(21911, 'https://ror.org/02aneaq95', 'es', 1, 'https://ror.org/02aneaq95 Universidad de Xalapa'),
(21912, 'https://ror.org/02anx2442', 'en', 1, 'https://ror.org/02anx2442 Simon Kuznets Kharkiv National University of Economics Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(21913, 'https://ror.org/02ar3bt91', 'en', 1, 'https://ror.org/02ar3bt91 Bệnh Viện Da Liį»…u ThĆ nh Phố Hồ ChĆ­ Minh HCMC Hospital of Dermato Venereology'),
(21914, 'https://ror.org/02ar7jm50', 'en', 1, 'https://ror.org/02ar7jm50 Kwara State Polytechnic'),
(21915, 'https://ror.org/02arcr276', 'en', 1, 'https://ror.org/02arcr276 National Association of State Departments of Agriculture'),
(21916, 'https://ror.org/02arzvn48', 'es', 1, 'https://ror.org/02arzvn48 Instituto de Ciencias Tecnológicas'),
(21917, 'https://ror.org/02atwwv43', 'en', 1, 'https://ror.org/02atwwv43 Slovenian Institute for Adult Education'),
(21918, 'https://ror.org/02av9qc14', 'no_lang_code', 1, 'https://ror.org/02av9qc14 Protein Metrics (United States)'),
(21919, 'https://ror.org/02aye8x76', 'no_lang_code', 1, 'https://ror.org/02aye8x76 Triarii (Netherlands)'),
(21920, 'https://ror.org/02ayk5126', 'no_lang_code', 1, 'https://ror.org/02ayk5126 Dalanj University Ų¬Ų§Ł…Ų¹Ų© الدلنج'),
(21921, 'https://ror.org/02azgvq37', 'pt', 1, 'https://ror.org/02azgvq37 Universidade Zambeze'),
(21922, 'https://ror.org/02b1nt179', 'no_lang_code', 1, 'https://ror.org/02b1nt179 Harvard Bioscience (United States)'),
(21923, 'https://ror.org/02b27c547', 'en', 1, 'https://ror.org/02b27c547 Dartford And Gravesham NHS Trust'),
(21924, 'https://ror.org/02b2dcj06', 'no_lang_code', 1, 'https://ror.org/02b2dcj06 Nokian Renkaat Nokian Tyres (Finland)'),
(21925, 'https://ror.org/02b2fgs53', 'en', 1, 'https://ror.org/02b2fgs53 St Augustine College of South Africa'),
(21926, 'https://ror.org/02b2yz332', 'es', 1, 'https://ror.org/02b2yz332 Universidad Nororiental Privada Gran Mariscal de Ayacucho'),
(21927, 'https://ror.org/02b34td92', 'no_lang_code', 1, 'https://ror.org/02b34td92 Ai Corporation (United Kingdom)'),
(21928, 'https://ror.org/02b4apg34', 'es', 1, 'https://ror.org/02b4apg34 Escuela PolitƩcnica Javeriana del Ecuador'),
(21929, 'https://ror.org/02b50et21', 'no_lang_code', 1, 'https://ror.org/02b50et21 Souriau (France)'),
(21930, 'https://ror.org/02b7n7v15', 'es', 1, 'https://ror.org/02b7n7v15 Universidad Católica de Santa Fe'),
(21931, 'https://ror.org/02bb0ey42', 'es', 1, 'https://ror.org/02bb0ey42 Universidad Nueva Esparta'),
(21932, 'https://ror.org/02bczys52', 'en', 1, 'https://ror.org/02bczys52 Society for Science & the Public'),
(21933, 'https://ror.org/02bf8nh75', 'no_lang_code', 1, 'https://ror.org/02bf8nh75 ModellTechnik Rapid Prototyping (Germany)'),
(21934, 'https://ror.org/02bftc014', 'no_lang_code', 1, 'https://ror.org/02bftc014 Audiprel (Spain)'),
(21935, 'https://ror.org/02bgm5h12', 'en', 1, 'https://ror.org/02bgm5h12 Community Living Welland Pelham'),
(21936, 'https://ror.org/02bn5bg05', 'no_lang_code', 1, 'https://ror.org/02bn5bg05 Plasticell (United Kingdom)'),
(21937, 'https://ror.org/02bnf4x85', 'fr', 1, 'https://ror.org/02bnf4x85 UniversitƩ Simon Kimbangu'),
(21938, 'https://ror.org/02bnw0f54', 'es', 1, 'https://ror.org/02bnw0f54 Universidad de Investigación y Desarrollo, Universitaria de Investigación y Desarrollo'),
(21939, 'https://ror.org/02bpb1j41', 'en', 1, 'https://ror.org/02bpb1j41 Nye Communities Coalition'),
(21940, 'https://ror.org/02brpgm25', 'en', 1, 'https://ror.org/02brpgm25 Canadian Evaluation Society SociƩtƩ Canadienne d''Ʃvaluation'),
(21941, 'https://ror.org/02bs1me11', 'en', 1, 'https://ror.org/02bs1me11 Sea Studios Foundation'),
(21942, 'https://ror.org/02bsvz023', 'en', 1, 'https://ror.org/02bsvz023 Hinckley and Bosworth Community Hospital'),
(21943, 'https://ror.org/02bt72x97', 'no_lang_code', 1, 'https://ror.org/02bt72x97 Sciprom (Switzerland)'),
(21944, 'https://ror.org/02bwd6p34', 'en', 1, 'https://ror.org/02bwd6p34 Ashfield Community Hospital'),
(21945, 'https://ror.org/02bwmj336', 'no_lang_code', 1, 'https://ror.org/02bwmj336 NSK (United Kingdom)'),
(21946, 'https://ror.org/02by00s02', 'no_lang_code', 1, 'https://ror.org/02by00s02 SunPower (Germany)'),
(21947, 'https://ror.org/02by1h611', 'no_lang_code', 1, 'https://ror.org/02by1h611 Prospektiker (Spain)'),
(21948, 'https://ror.org/02bz32326', 'en', 1, 'https://ror.org/02bz32326 Philadelphia Education Fund'),
(21949, 'https://ror.org/02bzvpv63', 'es', 1, 'https://ror.org/02bzvpv63 Universidad Autónoma del Pacífico'),
(21950, 'https://ror.org/02c18bt40', 'en', 1, 'https://ror.org/02c18bt40 Leicester Frith Hospital'),
(21951, 'https://ror.org/02c2fvd82', 'en', 1, 'https://ror.org/02c2fvd82 Association for Science and Discovery Centres'),
(21952, 'https://ror.org/02c3a1v05', 'en', 1, 'https://ror.org/02c3a1v05 Spire Gatwick Park Hospital'),
(21953, 'https://ror.org/02c3ywg26', 'no_lang_code', 1, 'https://ror.org/02c3ywg26 Edison (Italy)'),
(21954, 'https://ror.org/02c561939', 'en', 1, 'https://ror.org/02c561939 Union University'),
(21955, 'https://ror.org/02c5he528', 'en', 1, 'https://ror.org/02c5he528 International Maritime University of Panama Universidad MarĆ­tima Internacional de PanamĆ”'),
(21956, 'https://ror.org/02c6xtt27', 'en', 1, 'https://ror.org/02c6xtt27 University of East-West Medicine'),
(21957, 'https://ror.org/02c8rf527', 'no_lang_code', 1, 'https://ror.org/02c8rf527 Synthesis and Research (Greece)'),
(21958, 'https://ror.org/02c8ytn85', 'no_lang_code', 1, 'https://ror.org/02c8ytn85 SMART Group (United Kingdom)'),
(21959, 'https://ror.org/02c9ztd98', 'en', 1, 'https://ror.org/02c9ztd98 Seattle Public Schools'),
(21960, 'https://ror.org/02ca38p84', 'no_lang_code', 1, 'https://ror.org/02ca38p84 Quretec (Estonia)'),
(21961, 'https://ror.org/02canyd30', 'en', 1, 'https://ror.org/02canyd30 Newton Community Hospital'),
(21962, 'https://ror.org/02cdhc958', 'no_lang_code', 1, 'https://ror.org/02cdhc958 Parker Hannifin (United Kingdom)'),
(21963, 'https://ror.org/02cdyrc89', 'en', 1, 'https://ror.org/02cdyrc89 Suzhou Municipal Hospital č‹å·žåø‚ē«‹åŒ»é™¢'),
(21964, 'https://ror.org/02cf9zs75', 'es', 1, 'https://ror.org/02cf9zs75 Universidad Americana de Morelos'),
(21965, 'https://ror.org/02cgt3c05', 'en', 1, 'https://ror.org/02cgt3c05 Guangxi Zhuang Autonomous Region Brain Hospital å¹æč„æå£®ę—č‡Ŗę²»åŒŗč„‘ē§‘åŒ»é™¢'),
(21966, 'https://ror.org/02ch5h698', 'no_lang_code', 1, 'https://ror.org/02ch5h698 Nexor (United Kingdom)'),
(21967, 'https://ror.org/02ch8xp61', 'no_lang_code', 1, 'https://ror.org/02ch8xp61 Oxford NanoSystems (United Kingdom)'),
(21968, 'https://ror.org/02cj2g073', 'no_lang_code', 1, 'https://ror.org/02cj2g073 Syzygy Memory Plastics (United States)'),
(21969, 'https://ror.org/02ckere89', 'en', 1, 'https://ror.org/02ckere89 Sergio Arboleda University Universidad Sergio Arboleda'),
(21970, 'https://ror.org/02ckk6855', 'en', 1, 'https://ror.org/02ckk6855 Kent Community Health NHS Foundation Trust'),
(21971, 'https://ror.org/02ckzhz90', 'en', 1, 'https://ror.org/02ckzhz90 Blackberry Hill Hospital'),
(21972, 'https://ror.org/02cmcc109', 'no_lang_code', 1, 'https://ror.org/02cmcc109 TRIM edicine (United States)'),
(21973, 'https://ror.org/02cntp233', 'en', 1, 'https://ror.org/02cntp233 Daido University 大同大学'),
(21974, 'https://ror.org/02cpp6046', 'en', 1, 'https://ror.org/02cpp6046 Regional Advisory and Information Centre Presov'),
(21975, 'https://ror.org/02cqr9y77', 'en', 1, 'https://ror.org/02cqr9y77 Possum Observatory'),
(21976, 'https://ror.org/02crmer26', 'en', 1, 'https://ror.org/02crmer26 Obong University'),
(21977, 'https://ror.org/02crzj551', 'en', 1, 'https://ror.org/02crzj551 HƓpital Montfort Montfort Hospital'),
(21978, 'https://ror.org/02cs5nk10', 'pt', 1, 'https://ror.org/02cs5nk10 Centro UniversitƔrio do Espƭrito Santo'),
(21979, 'https://ror.org/02cs9pv18', 'en', 1, 'https://ror.org/02cs9pv18 Universidad Ciencias de la InformƔtica University Ucinf'),
(21980, 'https://ror.org/02cs9t297', 'no_lang_code', 1, 'https://ror.org/02cs9t297 Thales (Austria)'),
(21981, 'https://ror.org/02cv67x09', 'en', 1, 'https://ror.org/02cv67x09 North Dakota Legislative Council'),
(21982, 'https://ror.org/02cxvat25', 'en', 1, 'https://ror.org/02cxvat25 University of Bakhtalruda Ų¬Ų§Ł…Ų¹Ų© ŲØŲ®ŲŖ الرضا'),
(21983, 'https://ror.org/02cyaf297', 'no_lang_code', 1, 'https://ror.org/02cyaf297 Sonic Concepts (United States)'),
(21984, 'https://ror.org/02cz4sf27', 'en', 1, 'https://ror.org/02cz4sf27 National Alliance for Medication Assisted Recovery'),
(21985, 'https://ror.org/02czb6c47', 'en', 1, 'https://ror.org/02czb6c47 Association canadienne d''Ʃtudes en loisir Canadian Association for Leisure Studies'),
(21986, 'https://ror.org/02d07sw41', 'no_lang_code', 1, 'https://ror.org/02d07sw41 WS Energia (Portugal)'),
(21987, 'https://ror.org/02d0hr347', 'en', 1, 'https://ror.org/02d0hr347 Maryport Victoria Cottage Hospital'),
(21988, 'https://ror.org/02d1znh19', 'no_lang_code', 1, 'https://ror.org/02d1znh19 Vallon (Germany)'),
(21989, 'https://ror.org/02d3f2520', 'no_lang_code', 1, 'https://ror.org/02d3f2520 Nanonex (United States)'),
(21990, 'https://ror.org/02d5d0r05', 'en', 1, 'https://ror.org/02d5d0r05 North Staffordshire Combined Healthcare NHS Trust'),
(21991, 'https://ror.org/02d640813', 'en', 1, 'https://ror.org/02d640813 International Centre for Comparative Criminology'),
(21992, 'https://ror.org/02d6evb60', 'es', 1, 'https://ror.org/02d6evb60 Instituto Profesional La Araucana'),
(21993, 'https://ror.org/02d75a424', 'en', 1, 'https://ror.org/02d75a424 University of Management and Technology'),
(21994, 'https://ror.org/02d7rnk16', 'en', 1, 'https://ror.org/02d7rnk16 North Seattle College'),
(21995, 'https://ror.org/02d994c36', 'no_lang_code', 1, 'https://ror.org/02d994c36 Aerogeodezijos institutas Institute of Aerial Geodesy (Lithuania)'),
(21996, 'https://ror.org/02day0j61', 'no_lang_code', 1, 'https://ror.org/02day0j61 Nova Medical (United States)'),
(21997, 'https://ror.org/02dbkpn67', 'no_lang_code', 1, 'https://ror.org/02dbkpn67 Nutech Industries (United States)'),
(21998, 'https://ror.org/02dchwm66', 'no_lang_code', 1, 'https://ror.org/02dchwm66 Third Eye Diagnostics (United States)'),
(21999, 'https://ror.org/02dd4nc12', 'es', 1, 'https://ror.org/02dd4nc12 Centro Diocesano de Estudio y Reflexión'),
(22000, 'https://ror.org/02ddjw503', 'en', 1, 'https://ror.org/02ddjw503 Academy of Arts Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„ŁŁ†ŁˆŁ†ā€Ž'),
(22001, 'https://ror.org/02ddk7s51', 'es', 1, 'https://ror.org/02ddk7s51 TICBioMed'),
(22002, 'https://ror.org/02de7mm40', 'en', 1, 'https://ror.org/02de7mm40 Basildon Hospital'),
(22003, 'https://ror.org/02de9p942', 'no_lang_code', 1, 'https://ror.org/02de9p942 ValveXchange (United States)'),
(22004, 'https://ror.org/02dhmwy14', 'en', 1, 'https://ror.org/02dhmwy14 The Berkshire Independent Hospital'),
(22005, 'https://ror.org/02dhn4e70', 'en', 1, 'https://ror.org/02dhn4e70 Itami City Hospital åø‚ē«‹ä¼Šäø¹ē—…é™¢'),
(22006, 'https://ror.org/02djp1y08', 'es', 1, 'https://ror.org/02djp1y08 Universidad TajĆ­n'),
(22007, 'https://ror.org/02dm3hc63', 'pt', 1, 'https://ror.org/02dm3hc63 Centro UniversitƔrio de Jales'),
(22008, 'https://ror.org/02drgk151', 'en', 1, 'https://ror.org/02drgk151 Coleman University'),
(22009, 'https://ror.org/02ds0wa60', 'en', 1, 'https://ror.org/02ds0wa60 Olympic Athletic Center of Athens "Spiros Louis"'),
(22010, 'https://ror.org/02dt8zs37', 'en', 1, 'https://ror.org/02dt8zs37 The Foscote Hospital'),
(22011, 'https://ror.org/02dv1n029', 'fr', 1, 'https://ror.org/02dv1n029 SantƩ Mentale au QuƩbec'),
(22012, 'https://ror.org/02dveg925', 'en', 1, 'https://ror.org/02dveg925 University of Boumerdes Ų¬Ų§Ł…Ų¹Ų© Ų§Ł…Ų­Ł…ŲÆ بوڤرة ŲØŁˆŁ…Ų±ŲÆŲ§Ų³'),
(22013, 'https://ror.org/02dx4w725', 'de', 1, 'https://ror.org/02dx4w725 Wirtschaftsfƶrderungsinstitut'),
(22014, 'https://ror.org/02dy89791', 'no_lang_code', 1, 'https://ror.org/02dy89791 Manifattura Italiana del Brembo (Italy)'),
(22015, 'https://ror.org/02dyjqg10', 'es', 1, 'https://ror.org/02dyjqg10 Sociedad Hispano Mundial'),
(22016, 'https://ror.org/02dzc0673', 'en', 1, 'https://ror.org/02dzc0673 Alliance for Permanent Access'),
(22017, 'https://ror.org/02e0n1919', 'es', 1, 'https://ror.org/02e0n1919 Instituto Universitario Centro de Estudio y Diagnóstico de las Disgnacias del Uruguay'),
(22018, 'https://ror.org/02e2avb86', 'en', 1, 'https://ror.org/02e2avb86 Information Technology Foundation for Education'),
(22019, 'https://ror.org/02e2j2x69', 'no_lang_code', 1, 'https://ror.org/02e2j2x69 Tunstall Healthcare (United Kingdom)'),
(22020, 'https://ror.org/02e2ve941', 'en', 1, 'https://ror.org/02e2ve941 Mount Meru University'),
(22021, 'https://ror.org/02e2yc259', 'en', 1, 'https://ror.org/02e2yc259 University Yahia Fares of Medea Ų¬Ų§Ł…Ų¹Ų© يحي فارس ŲØŲ§Ł„Ł…ŲÆŁŠŲ©'),
(22022, 'https://ror.org/02e3fqh84', 'no_lang_code', 1, 'https://ror.org/02e3fqh84 Serim Research Corporation (United States)'),
(22023, 'https://ror.org/02e3jby32', 'en', 1, 'https://ror.org/02e3jby32 BMI The Runnymede Hospital'),
(22024, 'https://ror.org/02e4cmf45', 'es', 1, 'https://ror.org/02e4cmf45 Universidad Liceo Cervantino'),
(22025, 'https://ror.org/02e5pwb51', 'en', 1, 'https://ror.org/02e5pwb51 Rochford Community Hospital'),
(22026, 'https://ror.org/02e6tdc21', 'en', 1, 'https://ror.org/02e6tdc21 Association Canadienne de Linguistique Canadian Linguistic Association'),
(22027, 'https://ror.org/02e6wxz44', 'en', 1, 'https://ror.org/02e6wxz44 St Helens and Knowsley Teaching Hospitals NHS Trust'),
(22028, 'https://ror.org/02e7h1n39', 'es', 1, 'https://ror.org/02e7h1n39 Universidad Intercultural del Estado de MƩxico'),
(22029, 'https://ror.org/02e8s3123', 'es', 1, 'https://ror.org/02e8s3123 Instituto Universitario Italiano de Rosario'),
(22030, 'https://ror.org/02e9hj615', 'no_lang_code', 1, 'https://ror.org/02e9hj615 Transpire (United States)'),
(22031, 'https://ror.org/02e9j2825', 'en', 1, 'https://ror.org/02e9j2825 St. Albans School'),
(22032, 'https://ror.org/02ec5fm39', 'no_lang_code', 1, 'https://ror.org/02ec5fm39 First Innovation Park'),
(22033, 'https://ror.org/02ecccn63', 'no_lang_code', 1, 'https://ror.org/02ecccn63 Xandem Technology (United States)'),
(22034, 'https://ror.org/02ech7z91', 'es', 1, 'https://ror.org/02ech7z91 Corporación Universitaria Rafael Nuñez'),
(22035, 'https://ror.org/02ed69v98', 'es', 1, 'https://ror.org/02ed69v98 Instituto Profesional Diego Portales'),
(22036, 'https://ror.org/02ef5kc35', 'no_lang_code', 1, 'https://ror.org/02ef5kc35 Vitas (Norway)'),
(22037, 'https://ror.org/02eftbv72', 'en', 1, 'https://ror.org/02eftbv72 Rocky Mountain Virology Club'),
(22038, 'https://ror.org/02ehsaf86', 'no_lang_code', 1, 'https://ror.org/02ehsaf86 Mark Group (United Kingdom)'),
(22039, 'https://ror.org/02ekfze92', 'en', 1, 'https://ror.org/02ekfze92 Ohio County Together We Care Coalition'),
(22040, 'https://ror.org/02ekga339', 'en', 1, 'https://ror.org/02ekga339 Duchy Hospital'),
(22041, 'https://ror.org/02ekwm539', 'no_lang_code', 1, 'https://ror.org/02ekwm539 Planet'),
(22042, 'https://ror.org/02em67c34', 'no_lang_code', 1, 'https://ror.org/02em67c34 Siet (Italy)'),
(22043, 'https://ror.org/02emk4871', 'no_lang_code', 1, 'https://ror.org/02emk4871 Polyraz (Israel)'),
(22044, 'https://ror.org/02eney694', 'en', 1, 'https://ror.org/02eney694 Nevada PEP'),
(22045, 'https://ror.org/02engqd33', 'en', 1, 'https://ror.org/02engqd33 Museum of New Mexico'),
(22046, 'https://ror.org/02enncp58', 'no_lang_code', 1, 'https://ror.org/02enncp58 Tigerlily Films (United Kingdom)'),
(22047, 'https://ror.org/02esyae02', 'en', 1, 'https://ror.org/02esyae02 Science Fair Foundation of BC'),
(22048, 'https://ror.org/02et1jt70', 'no_lang_code', 1, 'https://ror.org/02et1jt70 Peraso Technologies (Canada)'),
(22049, 'https://ror.org/02evkff51', 'no_lang_code', 1, 'https://ror.org/02evkff51 J.Schneeberger Maschinen (Switzerland)'),
(22050, 'https://ror.org/02evz6a53', 'no_lang_code', 1, 'https://ror.org/02evz6a53 X Flow (Netherlands)'),
(22051, 'https://ror.org/02ewbw974', 'en', 1, 'https://ror.org/02ewbw974 Leigh House Hospital'),
(22052, 'https://ror.org/02exeb428', 'en', 1, 'https://ror.org/02exeb428 Modern Academy'),
(22053, 'https://ror.org/02f25xq68', 'no_lang_code', 1, 'https://ror.org/02f25xq68 Modern Water (United Kingdom)'),
(22054, 'https://ror.org/02f28xw52', 'no_lang_code', 1, 'https://ror.org/02f28xw52 Verisante Technology (Canada)'),
(22055, 'https://ror.org/02f38w092', 'no_lang_code', 1, 'https://ror.org/02f38w092 Xeros Technologies (United Kingdom)'),
(22056, 'https://ror.org/02f3t1d20', 'es', 1, 'https://ror.org/02f3t1d20 Instituto Universitario Franco InglƩs de MƩxico'),
(22057, 'https://ror.org/02f622w49', 'en', 1, 'https://ror.org/02f622w49 Kelling Hospital'),
(22058, 'https://ror.org/02f6q5s54', 'es', 1, 'https://ror.org/02f6q5s54 Universidad Americana'),
(22059, 'https://ror.org/02f73m916', 'no_lang_code', 1, 'https://ror.org/02f73m916 Sauf Consulting'),
(22060, 'https://ror.org/02f7sfa33', 'en', 1, 'https://ror.org/02f7sfa33 John F. Kennedy Center for the Performing Arts'),
(22061, 'https://ror.org/02fb1gt16', 'no_lang_code', 1, 'https://ror.org/02fb1gt16 Tribosonics (United Kingdom)'),
(22062, 'https://ror.org/02fdpxr39', 'no_lang_code', 1, 'https://ror.org/02fdpxr39 Southern Biotechnology Associates'),
(22063, 'https://ror.org/02feeaa54', 'en', 1, 'https://ror.org/02feeaa54 Association Canadienne pour l''Avancement des Ʃtudes NƩerlandaises Canadian Association for the Advancement of Netherlandic Studies'),
(22064, 'https://ror.org/02ff3pb56', 'no_lang_code', 1, 'https://ror.org/02ff3pb56 NetSmart (Greece)'),
(22065, 'https://ror.org/02fg51t11', 'en', 1, 'https://ror.org/02fg51t11 Safe Drinking Water Foundation'),
(22066, 'https://ror.org/02fgfjw51', 'en', 1, 'https://ror.org/02fgfjw51 Mauritius Institute of Education'),
(22067, 'https://ror.org/02fgyh323', 'es', 1, 'https://ror.org/02fgyh323 Universidad del Valle de Toluca'),
(22068, 'https://ror.org/02fj6b627', 'en', 1, 'https://ror.org/02fj6b627 Guangxi University of Science and Technology å¹æč„æē§‘ęŠ€å¤§å­¦'),
(22069, 'https://ror.org/02fjyx055', 'fr', 1, 'https://ror.org/02fjyx055 Institut SupƩrieur de Gestion des Entreprises'),
(22070, 'https://ror.org/02fky0856', 'pt', 1, 'https://ror.org/02fky0856 Madeira Tecnopolo'),
(22071, 'https://ror.org/02fm5cr50', 'no_lang_code', 1, 'https://ror.org/02fm5cr50 Rohrer (Switzerland)'),
(22072, 'https://ror.org/02fnq4841', 'es', 1, 'https://ror.org/02fnq4841 Universidad Católica de Honduras Nuestra Señora Reina de la Paz'),
(22073, 'https://ror.org/02fpcgg22', 'en', 1, 'https://ror.org/02fpcgg22 Penrith Community Hospital'),
(22074, 'https://ror.org/02fpgs304', 'no_lang_code', 1, 'https://ror.org/02fpgs304 Trimek (Spain)'),
(22075, 'https://ror.org/02fqsc924', 'en', 1, 'https://ror.org/02fqsc924 University of Livingstonia'),
(22076, 'https://ror.org/02fsk5c21', 'en', 1, 'https://ror.org/02fsk5c21 University Pathologists'),
(22077, 'https://ror.org/02fwenk18', 'en', 1, 'https://ror.org/02fwenk18 Thebes Academy Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų·ŁŠŲØŁ‡'),
(22078, 'https://ror.org/02fwj4283', 'pl', 1, 'https://ror.org/02fwj4283 Geoscience and Marine Research & Consulting Przedsiębiorstwo Badań i Doradztwa'),
(22079, 'https://ror.org/02fwtg066', 'en', 1, 'https://ror.org/02fwtg066 Sudan University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(22080, 'https://ror.org/02fxyjz60', 'es', 1, 'https://ror.org/02fxyjz60 Universidad Interamericana'),
(22081, 'https://ror.org/02fyv5292', 'en', 1, 'https://ror.org/02fyv5292 Mediterranean School of Business المدرسة Ų§Ł„Ł…ŲŖŁˆŲ³Ų·ŁŠŲ© للأعمال'),
(22082, 'https://ror.org/02fz88323', 'no_lang_code', 1, 'https://ror.org/02fz88323 SP Group (Denmark)'),
(22083, 'https://ror.org/02g102751', 'en', 1, 'https://ror.org/02g102751 Wisconsin Department of Public Instruction'),
(22084, 'https://ror.org/02g14hj64', 'no_lang_code', 1, 'https://ror.org/02g14hj64 Smart Reamer Drilling Systems (United Kingdom)'),
(22085, 'https://ror.org/02g21fq05', 'fr', 1, 'https://ror.org/02g21fq05 Institut des Hautes Ɖtudes Commerciales et Ɖconomiques'),
(22086, 'https://ror.org/02g236n66', 'fr', 1, 'https://ror.org/02g236n66 UniversitƩ Roi Henri Christophe'),
(22087, 'https://ror.org/02g4dgx92', 'no_lang_code', 1, 'https://ror.org/02g4dgx92 Separation Design Group'),
(22088, 'https://ror.org/02g5dr532', 'no_lang_code', 1, 'https://ror.org/02g5dr532 Seirei Sakura Citizen Hospital č–éš·ä½å€‰åø‚ę°‘ē—…é™¢'),
(22089, 'https://ror.org/02g5n6964', 'no_lang_code', 1, 'https://ror.org/02g5n6964 Sembiosys Genetics (Canada)'),
(22090, 'https://ror.org/02g5t8y66', 'no_lang_code', 1, 'https://ror.org/02g5t8y66 Yole DƩveloppement (France)'),
(22091, 'https://ror.org/02g6vys92', 'no_lang_code', 1, 'https://ror.org/02g6vys92 PFP Cybersecurity (United States)'),
(22092, 'https://ror.org/02g77ac10', 'en', 1, 'https://ror.org/02g77ac10 Red Crow Community College'),
(22093, 'https://ror.org/02g8ke585', 'fr', 1, 'https://ror.org/02g8ke585 Institut National de Statistique et d''Economie AppliquĆ©e المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ لل؄حصاؔ ŁˆŲ§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŲ§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠ'),
(22094, 'https://ror.org/02g8ybs83', 'no_lang_code', 1, 'https://ror.org/02g8ybs83 AstenJohnson (Belgium)'),
(22095, 'https://ror.org/02g9gg448', 'fr', 1, 'https://ror.org/02g9gg448 Ɖcole Nationale de Management et de l''Administration de la SantĆ©'),
(22096, 'https://ror.org/02gad0c63', 'en', 1, 'https://ror.org/02gad0c63 Polaris Observatory Association'),
(22097, 'https://ror.org/02gashc76', 'es', 1, 'https://ror.org/02gashc76 Instituto Profesional Eatri'),
(22098, 'https://ror.org/02gdc3814', 'en', 1, 'https://ror.org/02gdc3814 Lipscomb University'),
(22099, 'https://ror.org/02gdq7j49', 'en', 1, 'https://ror.org/02gdq7j49 White Balance Projects Pool Agency'),
(22100, 'https://ror.org/02gfnab20', 'en', 1, 'https://ror.org/02gfnab20 Bridgnorth Community Hospital'),
(22101, 'https://ror.org/02ghs4671', 'pt', 1, 'https://ror.org/02ghs4671 Universidade Independente de Angola'),
(22102, 'https://ror.org/02gj0v433', 'en', 1, 'https://ror.org/02gj0v433 Gardner–Webb University'),
(22103, 'https://ror.org/02gj6ck68', 'en', 1, 'https://ror.org/02gj6ck68 Iberoamerican University Universidad de IberoamƩrica'),
(22104, 'https://ror.org/02gk19b80', 'en', 1, 'https://ror.org/02gk19b80 North Central University'),
(22105, 'https://ror.org/02gk90651', 'no_lang_code', 1, 'https://ror.org/02gk90651 Mobics (Greece)'),
(22106, 'https://ror.org/02gm6vn88', 'es', 1, 'https://ror.org/02gm6vn88 Consorcio Educativo Oxford'),
(22107, 'https://ror.org/02gm74063', 'en', 1, 'https://ror.org/02gm74063 Priory Hospital Cheadle Royal'),
(22108, 'https://ror.org/02gqhnf32', 'es', 1, 'https://ror.org/02gqhnf32 Centro Universitario Oriente de MƩxico'),
(22109, 'https://ror.org/02gs7pb27', 'no_lang_code', 1, 'https://ror.org/02gs7pb27 ScanArc Plasma Technologies (Sweden)'),
(22110, 'https://ror.org/02gs9j702', 'no_lang_code', 1, 'https://ror.org/02gs9j702 Narco Freedom (United States)'),
(22111, 'https://ror.org/02gwnf178', 'en', 1, 'https://ror.org/02gwnf178 Swedish Chemicals Agency'),
(22112, 'https://ror.org/02gyrfm31', 'en', 1, 'https://ror.org/02gyrfm31 Sheppey Community Hospital'),
(22113, 'https://ror.org/02gz76y84', 'es', 1, 'https://ror.org/02gz76y84 Universidad Nacional Abierta'),
(22114, 'https://ror.org/02h0hx086', 'no_lang_code', 1, 'https://ror.org/02h0hx086 Predict (France)'),
(22115, 'https://ror.org/02h1gvb73', 'no_lang_code', 1, 'https://ror.org/02h1gvb73 Oliver Crispin Robotics (United Kingdom)'),
(22116, 'https://ror.org/02h1mkm69', 'en', 1, 'https://ror.org/02h1mkm69 Musicians Union'),
(22117, 'https://ror.org/02h2m5t91', 'no_lang_code', 1, 'https://ror.org/02h2m5t91 WIGeoGIS (Austria)'),
(22118, 'https://ror.org/02h3p3q22', 'en', 1, 'https://ror.org/02h3p3q22 Canadian Society for Mesopotamian Studies SociƩtƩ Canadienne des Etudes MƩsopotamiennes'),
(22119, 'https://ror.org/02h400990', 'no_lang_code', 1, 'https://ror.org/02h400990 Q linea (Sweden)'),
(22120, 'https://ror.org/02h43kn72', 'en', 1, 'https://ror.org/02h43kn72 St. Leonards Hospital'),
(22121, 'https://ror.org/02h5n6z77', 'en', 1, 'https://ror.org/02h5n6z77 Centro UniversitƔrio Jorge Amado Jorge Amado University Center'),
(22122, 'https://ror.org/02h7txh22', 'en', 1, 'https://ror.org/02h7txh22 Sage Colleges'),
(22123, 'https://ror.org/02h9dhk84', 'no_lang_code', 1, 'https://ror.org/02h9dhk84 SweTree Technologies (Sweden)'),
(22124, 'https://ror.org/02haqm712', 'en', 1, 'https://ror.org/02haqm712 Matsubara Mayflower Hospital ę¾åŽŸćƒ”ć‚¤ćƒ•ćƒ©ćƒÆćƒ¼ē—…'),
(22125, 'https://ror.org/02hevb853', 'en', 1, 'https://ror.org/02hevb853 Nebraska Educational Telecommunications'),
(22126, 'https://ror.org/02hf6mx60', 'en', 1, 'https://ror.org/02hf6mx60 National Research University of Electronic Technology ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ МИЭТ'),
(22127, 'https://ror.org/02hfw7a32', 'en', 1, 'https://ror.org/02hfw7a32 North Hennepin Community College'),
(22128, 'https://ror.org/02hg69287', 'no_lang_code', 1, 'https://ror.org/02hg69287 Peacocks Medical Group (United Kingdom)'),
(22129, 'https://ror.org/02hg9tz16', 'no_lang_code', 1, 'https://ror.org/02hg9tz16 Spree NDT'),
(22130, 'https://ror.org/02hgg3s41', 'no_lang_code', 1, 'https://ror.org/02hgg3s41 Veiki-VNL (Hungary)'),
(22131, 'https://ror.org/02hh51f62', 'en', 1, 'https://ror.org/02hh51f62 International Medical and Technological University'),
(22132, 'https://ror.org/02hjh3741', 'no_lang_code', 1, 'https://ror.org/02hjh3741 THINK3 (France)'),
(22133, 'https://ror.org/02hkdyy22', 'no_lang_code', 1, 'https://ror.org/02hkdyy22 OneSource (Portugal)'),
(22134, 'https://ror.org/02hm6zw53', 'pt', 1, 'https://ror.org/02hm6zw53 Centro UniversitÔrio Belas Artes de São Paulo'),
(22135, 'https://ror.org/02hnvfm11', 'pt', 1, 'https://ror.org/02hnvfm11 Universidade de Sorocaba'),
(22136, 'https://ror.org/02hqgsn65', 'no_lang_code', 1, 'https://ror.org/02hqgsn65 Visual Dimension (Belgium)'),
(22137, 'https://ror.org/02hr72y72', 'en', 1, 'https://ror.org/02hr72y72 Open Data Institute'),
(22138, 'https://ror.org/02hrrdm75', 'en', 1, 'https://ror.org/02hrrdm75 Institut für Kooperationsmanagement und interdisziplinäre Forschung Nexus Institute for Cooperation Management and Interdisciplinary Research'),
(22139, 'https://ror.org/02hsdts66', 'es', 1, 'https://ror.org/02hsdts66 Universidad de Flores'),
(22140, 'https://ror.org/02hsk2p49', 'en', 1, 'https://ror.org/02hsk2p49 United States Conference of Mayors'),
(22141, 'https://ror.org/02htksw11', 'en', 1, 'https://ror.org/02htksw11 Longridge Community Hospital'),
(22142, 'https://ror.org/02htmyh81', 'en', 1, 'https://ror.org/02htmyh81 Slovak Business Agency'),
(22143, 'https://ror.org/02hvxe361', 'en', 1, 'https://ror.org/02hvxe361 Queen''s Hospital'),
(22144, 'https://ror.org/02hx0yn76', 'en', 1, 'https://ror.org/02hx0yn76 Quest University Canada'),
(22145, 'https://ror.org/02hx18343', 'en', 1, 'https://ror.org/02hx18343 Pudong New Area People''s Hospital'),
(22146, 'https://ror.org/02hx2nv16', 'fr', 1, 'https://ror.org/02hx2nv16 Ɖcole des Hautes Ɖtudes en IngĆ©nierie des SystĆØmes d''Information'),
(22147, 'https://ror.org/02hxnx131', 'no_lang_code', 1, 'https://ror.org/02hxnx131 T-Connect (Italy)'),
(22148, 'https://ror.org/02hy1ey22', 'fr', 1, 'https://ror.org/02hy1ey22 Ɖcole Polytechnique d''Architecture et d''Urbanisme'),
(22149, 'https://ror.org/02hz1w568', 'no_lang_code', 1, 'https://ror.org/02hz1w568 Nanogap Sub-NM-Powder (Spain)'),
(22150, 'https://ror.org/02hzqbc55', 'en', 1, 'https://ror.org/02hzqbc55 Kaili University å‡Æé‡Œå­¦é™¢'),
(22151, 'https://ror.org/02j003371', 'es', 1, 'https://ror.org/02j003371 Universidad de las AmƩricas'),
(22152, 'https://ror.org/02j07fr50', 'fr', 1, 'https://ror.org/02j07fr50 UniversitĆ© Centrale de Tunis الجامعة Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠŲ© الخاصة'),
(22153, 'https://ror.org/02j0dnv45', 'en', 1, 'https://ror.org/02j0dnv45 Zambia Centre for Accountancy Studies'),
(22154, 'https://ror.org/02j2yhq26', 'en', 1, 'https://ror.org/02j2yhq26 Naval Aeronautical and Astronautical University äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›čˆŖē©ŗå·„ēØ‹å­¦é™¢'),
(22155, 'https://ror.org/02j3qj605', 'en', 1, 'https://ror.org/02j3qj605 Dartmouth Hospital'),
(22156, 'https://ror.org/02j3x9q40', 'no_lang_code', 1, 'https://ror.org/02j3x9q40 Polyphotonix (United Kingdom)'),
(22157, 'https://ror.org/02j3yv935', 'en', 1, 'https://ror.org/02j3yv935 Oceanites'),
(22158, 'https://ror.org/02j5qmn70', 'en', 1, 'https://ror.org/02j5qmn70 Dongguk University Los Angeles'),
(22159, 'https://ror.org/02j65kc59', 'no_lang_code', 1, 'https://ror.org/02j65kc59 Simcyp (United Kingdom)'),
(22160, 'https://ror.org/02j7n9748', 'en', 1, 'https://ror.org/02j7n9748 Lancashire Teaching Hospitals NHS Foundation Trust'),
(22161, 'https://ror.org/02j7qhm81', 'no_lang_code', 1, 'https://ror.org/02j7qhm81 Alu-Releco Oy (Finland)'),
(22162, 'https://ror.org/02jakhr06', 'no_lang_code', 1, 'https://ror.org/02jakhr06 Voicekey (United Kingdom)'),
(22163, 'https://ror.org/02jewd384', 'no_lang_code', 1, 'https://ror.org/02jewd384 Phil Jones Associates (United Kingdom)'),
(22164, 'https://ror.org/02jgpyd84', 'en', 1, 'https://ror.org/02jgpyd84 German Jordanian University الجامعة Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ© Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(22165, 'https://ror.org/02jhx4860', 'en', 1, 'https://ror.org/02jhx4860 Upper Iowa University'),
(22166, 'https://ror.org/02jjcbg38', 'en', 1, 'https://ror.org/02jjcbg38 St Ann''s Hospital'),
(22167, 'https://ror.org/02jk75847', 'en', 1, 'https://ror.org/02jk75847 Higher National Veterinary School المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„ŲØŁŠŲ·Ų±Ų©'),
(22168, 'https://ror.org/02jmk1h66', 'en', 1, 'https://ror.org/02jmk1h66 Chuo Kikuu cha Mtakatifu Yohana Tanzania St. John''s University of Tanzania'),
(22169, 'https://ror.org/02jn32p79', 'it', 1, 'https://ror.org/02jn32p79 Ospedale Madonna Delle Grazie'),
(22170, 'https://ror.org/02jndq195', 'no_lang_code', 1, 'https://ror.org/02jndq195 Vixar (United States)'),
(22171, 'https://ror.org/02jpv5m37', 'no_lang_code', 1, 'https://ror.org/02jpv5m37 NorChip (Norway)'),
(22172, 'https://ror.org/02js17r36', 'en', 1, 'https://ror.org/02js17r36 South Tees Hospitals NHS Foundation Trust'),
(22173, 'https://ror.org/02jtgw663', 'en', 1, 'https://ror.org/02jtgw663 North Walsham and District War Memorial Hospital'),
(22174, 'https://ror.org/02jv2qv86', 'en', 1, 'https://ror.org/02jv2qv86 St Mary''s Hospital'),
(22175, 'https://ror.org/02jvezs96', 'no_lang_code', 1, 'https://ror.org/02jvezs96 Vamp Tech (Italy)'),
(22176, 'https://ror.org/02jwdjd44', 'fr', 1, 'https://ror.org/02jwdjd44 Institut Universitaire Siantou'),
(22177, 'https://ror.org/02jxcp012', 'en', 1, 'https://ror.org/02jxcp012 Ida Darwin hospital'),
(22178, 'https://ror.org/02jy5b122', 'en', 1, 'https://ror.org/02jy5b122 Management and Development for Health'),
(22179, 'https://ror.org/02jybwh86', 'nl', 1, 'https://ror.org/02jybwh86 Stichting Technisch Centrum vd Keramische Industrie'),
(22180, 'https://ror.org/02jz9yj75', 'no_lang_code', 1, 'https://ror.org/02jz9yj75 Tecmic (Portugal)'),
(22181, 'https://ror.org/02k1p7q76', 'no_lang_code', 1, 'https://ror.org/02k1p7q76 RJ Lee Group (United States)'),
(22182, 'https://ror.org/02k20ry04', 'en', 1, 'https://ror.org/02k20ry04 Guadarrama Observatory'),
(22183, 'https://ror.org/02k4qm934', 'ca', 1, 'https://ror.org/02k4qm934 Hospital General de Catalunya'),
(22184, 'https://ror.org/02k52c211', 'en', 1, 'https://ror.org/02k52c211 Marketing Science Institute'),
(22185, 'https://ror.org/02k5gcb44', 'en', 1, 'https://ror.org/02k5gcb44 Society of Nuclear Medicine and Molecular Imaging'),
(22186, 'https://ror.org/02k5yax48', 'es', 1, 'https://ror.org/02k5yax48 Universidad Rural de Guatemala'),
(22187, 'https://ror.org/02k7ven88', 'es', 1, 'https://ror.org/02k7ven88 Universidad Metropolitana del Centro'),
(22188, 'https://ror.org/02k7y2v57', 'fr', 1, 'https://ror.org/02k7y2v57 UniversitƩ Protestante de Lubumbashi'),
(22189, 'https://ror.org/02k87s158', 'no_lang_code', 1, 'https://ror.org/02k87s158 Sherbrooke Innopole (Canada)'),
(22190, 'https://ror.org/02k8yy996', 'no_lang_code', 1, 'https://ror.org/02k8yy996 TLS Technik Spezialpulver (Germany)'),
(22191, 'https://ror.org/02k98xb21', 'en', 1, 'https://ror.org/02k98xb21 Kim Il-sung University ź¹€ģ¼ģ„±ģ¢…ķ•©ėŒ€ķ•™'),
(22192, 'https://ror.org/02kh2f959', 'en', 1, 'https://ror.org/02kh2f959 Marine Scotland'),
(22193, 'https://ror.org/02kha8k84', 'es', 1, 'https://ror.org/02kha8k84 Universidad de la Sierra'),
(22194, 'https://ror.org/02kkv7f68', 'en', 1, 'https://ror.org/02kkv7f68 Falmouth Community Hospital'),
(22195, 'https://ror.org/02km87d05', 'no_lang_code', 1, 'https://ror.org/02km87d05 Wittmann (Austria)'),
(22196, 'https://ror.org/02kpejc28', 'no_lang_code', 1, 'https://ror.org/02kpejc28 Siemens (Greece)'),
(22197, 'https://ror.org/02kpg0b77', 'fr', 1, 'https://ror.org/02kpg0b77 Institut des Hautes Ɖtudes Bancaires, FinanciĆØres et ManagĆ©riale'),
(22198, 'https://ror.org/02kpy6370', 'es', 1, 'https://ror.org/02kpy6370 Universidad Alfred Nobel de Mexico'),
(22199, 'https://ror.org/02kqgpw05', 'no_lang_code', 1, 'https://ror.org/02kqgpw05 Photonic Knowledge (Canada)'),
(22200, 'https://ror.org/02krbtc48', 'no_lang_code', 1, 'https://ror.org/02krbtc48 Paradigm Pharmaceuticals (United States)'),
(22201, 'https://ror.org/02kss3272', 'en', 1, 'https://ror.org/02kss3272 Newcastle Dental Hospital'),
(22202, 'https://ror.org/02ktv4k43', 'no_lang_code', 1, 'https://ror.org/02ktv4k43 Pacific Insight Electronics (Canada)'),
(22203, 'https://ror.org/02kv8bx48', 'en', 1, 'https://ror.org/02kv8bx48 American University of Nigeria'),
(22204, 'https://ror.org/02kwxw490', 'no_lang_code', 1, 'https://ror.org/02kwxw490 Superform (United Kingdom)'),
(22205, 'https://ror.org/02kx72w21', 'en', 1, 'https://ror.org/02kx72w21 University of Philosophical Research'),
(22206, 'https://ror.org/02kzda898', 'no_lang_code', 1, 'https://ror.org/02kzda898 Videometer (Denmark)'),
(22207, 'https://ror.org/02kzsfv42', 'en', 1, 'https://ror.org/02kzsfv42 Canada Council for the Arts Conseil des Arts du Canada'),
(22208, 'https://ror.org/02m0mz421', 'en', 1, 'https://ror.org/02m0mz421 Children''s Society'),
(22209, 'https://ror.org/02m4a5582', 'en', 1, 'https://ror.org/02m4a5582 Voronezh State Pedagogical University Воронежский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22210, 'https://ror.org/02m4skm46', 'no_lang_code', 1, 'https://ror.org/02m4skm46 National Electric Vehicle Sweden (Sweden)'),
(22211, 'https://ror.org/02m8e4g04', 'no_lang_code', 1, 'https://ror.org/02m8e4g04 RTZ Associates (United States)');
INSERT INTO `rors` VALUES
(22212, 'https://ror.org/02m8qhj08', 'en', 1, 'https://ror.org/02m8qhj08 Anton de Kom Universiteit van Suriname Anton de Kom University of Suriname'),
(22213, 'https://ror.org/02m9n8819', 'no_lang_code', 1, 'https://ror.org/02m9n8819 Polykemi (Sweden)'),
(22214, 'https://ror.org/02mb9ff20', 'no_lang_code', 1, 'https://ror.org/02mb9ff20 QuSpin (United States)'),
(22215, 'https://ror.org/02mczgx58', 'es', 1, 'https://ror.org/02mczgx58 Universidad Latina de MƩxico'),
(22216, 'https://ror.org/02mdd6971', 'en', 1, 'https://ror.org/02mdd6971 Canadian Society of Church History SociĆ©tĆ© Canadienne d’Histoire de l’Eglise'),
(22217, 'https://ror.org/02mfqq252', 'no_lang_code', 1, 'https://ror.org/02mfqq252 Optivision (United States)'),
(22218, 'https://ror.org/02mgaej21', 'en', 1, 'https://ror.org/02mgaej21 Guest Hospital'),
(22219, 'https://ror.org/02mgbaa73', 'en', 1, 'https://ror.org/02mgbaa73 Students on Ice'),
(22220, 'https://ror.org/02mhr7958', 'en', 1, 'https://ror.org/02mhr7958 Positive Impact'),
(22221, 'https://ror.org/02mmf4x63', 'no_lang_code', 1, 'https://ror.org/02mmf4x63 Tetra Therapeutics (United States)'),
(22222, 'https://ror.org/02mp26y45', 'no_lang_code', 1, 'https://ror.org/02mp26y45 Precical (Belgium)'),
(22223, 'https://ror.org/02mp6w091', 'en', 1, 'https://ror.org/02mp6w091 NewOpera'),
(22224, 'https://ror.org/02mpd6q30', 'no_lang_code', 1, 'https://ror.org/02mpd6q30 Velcura Therapeutics (United States)'),
(22225, 'https://ror.org/02mr2gx69', 'en', 1, 'https://ror.org/02mr2gx69 Experimental Station for the Industry of the Essential Oils and Citrus Products Stazione Sperimentale per le Industrie delle Essenze e dei Derivati dagli Agrumi'),
(22226, 'https://ror.org/02mrv4556', 'en', 1, 'https://ror.org/02mrv4556 Technopolis'),
(22227, 'https://ror.org/02msjvh03', 'en', 1, 'https://ror.org/02msjvh03 Govind Ballabh Pant University of Agriculture and Technology ą¤—ą„‹ą¤µą¤æą¤Øą„ą¤¦ ą¤¬ą¤²ą„ą¤²ą¤­ ą¤Ŗą¤Øą„ą¤¤ ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(22228, 'https://ror.org/02mt4w922', 'no_lang_code', 1, 'https://ror.org/02mt4w922 Siemens (Netherlands)'),
(22229, 'https://ror.org/02mvdhz93', 'no_lang_code', 1, 'https://ror.org/02mvdhz93 Aqua Metrology Systems (United States)'),
(22230, 'https://ror.org/02mvn1p69', 'no_lang_code', 1, 'https://ror.org/02mvn1p69 Ivchenko Progress (Ukraine) Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠµ Š¼Š°ŃˆŠøŠ½Š¾Š±ŃƒŠ“Ń–Š²Š½Šµ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŃŒŠŗŠµ Š±ŃŽŃ€Š¾'),
(22231, 'https://ror.org/02mxrwx85', 'en', 1, 'https://ror.org/02mxrwx85 Pinal Hispanic Council'),
(22232, 'https://ror.org/02mzn3c26', 'en', 1, 'https://ror.org/02mzn3c26 Holmevalley Memorial Hospital'),
(22233, 'https://ror.org/02n094r49', 'en', 1, 'https://ror.org/02n094r49 Universidad del Museo Social Argentino University of Argentine Social Museum'),
(22234, 'https://ror.org/02n0het18', 'en', 1, 'https://ror.org/02n0het18 Adventist University of Central Africa Universite Adventiste d''Afrique Central'),
(22235, 'https://ror.org/02n4khb55', 'en', 1, 'https://ror.org/02n4khb55 Open University of Sudan Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(22236, 'https://ror.org/02n6vx076', 'en', 1, 'https://ror.org/02n6vx076 BMI The Highfield Hospital'),
(22237, 'https://ror.org/02n84y322', 'no_lang_code', 1, 'https://ror.org/02n84y322 OXGENE (United Kingdom)'),
(22238, 'https://ror.org/02na5hw74', 'no_lang_code', 1, 'https://ror.org/02na5hw74 Sciences Computers Consultants (France)'),
(22239, 'https://ror.org/02nanqt16', 'no_lang_code', 1, 'https://ror.org/02nanqt16 Planer (United Kingdom)'),
(22240, 'https://ror.org/02nbhy609', 'en', 1, 'https://ror.org/02nbhy609 Monroe County Department of Public Health'),
(22241, 'https://ror.org/02nbj1r55', 'fr', 1, 'https://ror.org/02nbj1r55 UniversitƩ des Sciences et de la Technologie d''Oran Mohamed Boudiaf'),
(22242, 'https://ror.org/02nc4gn73', 'da', 1, 'https://ror.org/02nc4gn73 Thomas B Thriges Fond'),
(22243, 'https://ror.org/02ndvaj90', 'en', 1, 'https://ror.org/02ndvaj90 Westhaven Hospital'),
(22244, 'https://ror.org/02nf34254', 'en', 1, 'https://ror.org/02nf34254 Queens University of Charlotte'),
(22245, 'https://ror.org/02njbw696', 'es', 1, 'https://ror.org/02njbw696 Simón Bolívar University Universidad Simón Bolívar'),
(22246, 'https://ror.org/02nm3nh05', 'fr', 1, 'https://ror.org/02nm3nh05 Ɖcole des Hautes Ɖtudes Commerciales Techniques et Informatiques'),
(22247, 'https://ror.org/02nn67a65', 'es', 1, 'https://ror.org/02nn67a65 Universidad Tecnológica Indoamérica'),
(22248, 'https://ror.org/02np1f094', 'es', 1, 'https://ror.org/02np1f094 Unión Americana de Educación Superior'),
(22249, 'https://ror.org/02nq1ed11', 'es', 1, 'https://ror.org/02nq1ed11 Corporación Universitaria Reformada'),
(22250, 'https://ror.org/02ns7ka34', 'en', 1, 'https://ror.org/02ns7ka34 Arab Studies and Research Institute معهد Ų§Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(22251, 'https://ror.org/02nv0qb16', 'en', 1, 'https://ror.org/02nv0qb16 Ohio Christian University'),
(22252, 'https://ror.org/02nv68711', 'es', 1, 'https://ror.org/02nv68711 Universidad del Cine'),
(22253, 'https://ror.org/02nwd3v30', 'no_lang_code', 1, 'https://ror.org/02nwd3v30 Groupe Lacroix (France)'),
(22254, 'https://ror.org/02nwh8244', 'no_lang_code', 1, 'https://ror.org/02nwh8244 Federal Polytechnic Nekede'),
(22255, 'https://ror.org/02nwsnt47', 'en', 1, 'https://ror.org/02nwsnt47 Council of Canadians with Disabilities'),
(22256, 'https://ror.org/02nysre97', 'en', 1, 'https://ror.org/02nysre97 Olathe Public Schools'),
(22257, 'https://ror.org/02nz5n617', 'en', 1, 'https://ror.org/02nz5n617 Oaklands Hospital'),
(22258, 'https://ror.org/02nz79p21', 'no_lang_code', 1, 'https://ror.org/02nz79p21 Solagro'),
(22259, 'https://ror.org/02p06pt44', 'es', 1, 'https://ror.org/02p06pt44 Universidad Mexicana'),
(22260, 'https://ror.org/02p0xr181', 'es', 1, 'https://ror.org/02p0xr181 Corporación Universitaria Cenda'),
(22261, 'https://ror.org/02p1s6n26', 'en', 1, 'https://ror.org/02p1s6n26 Spire Wellesley Hospital'),
(22262, 'https://ror.org/02p2msn36', 'en', 1, 'https://ror.org/02p2msn36 Siena Heights University'),
(22263, 'https://ror.org/02p303e31', 'es', 1, 'https://ror.org/02p303e31 Universidad Tecnológica Iberoamericana'),
(22264, 'https://ror.org/02p48rd74', 'no_lang_code', 1, 'https://ror.org/02p48rd74 Research Detectors (United States)'),
(22265, 'https://ror.org/02p4t4z91', 'no_lang_code', 1, 'https://ror.org/02p4t4z91 Ori Martin (Italy)'),
(22266, 'https://ror.org/02p5b1x56', 'no_lang_code', 1, 'https://ror.org/02p5b1x56 Spirent Communications (United Kingdom)'),
(22267, 'https://ror.org/02p6aa271', 'en', 1, 'https://ror.org/02p6aa271 North-Eastern Federal University Деверо-Восточный Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22268, 'https://ror.org/02p6gmn22', 'es', 1, 'https://ror.org/02p6gmn22 Universidad AnƔhuac Puebla'),
(22269, 'https://ror.org/02p928v94', 'en', 1, 'https://ror.org/02p928v94 Universidade da Integração Internacional da Lusofonia Afro-Brasileira University for International Integration of the Afro-Brazilian Lusophony'),
(22270, 'https://ror.org/02p9tsq18', 'en', 1, 'https://ror.org/02p9tsq18 Nexus Research'),
(22271, 'https://ror.org/02pbyff74', 'fr', 1, 'https://ror.org/02pbyff74 Institut Royal de Formation des Cadres de la Jeunesse et des Sports المعهد Ų§Ł„Ł…Ł„ŁƒŁŠ Ł„ŲŖŁƒŁˆŁŠŁ† Ų£Ų·Ų± Ų§Ł„Ų“ŲØŁŠŲØŲ© و Ų§Ł„Ų±ŁŠŲ§Ų¶Ų©'),
(22272, 'https://ror.org/02pc02b40', 'no_lang_code', 1, 'https://ror.org/02pc02b40 Saturn Bioponics (United Kingdom)'),
(22273, 'https://ror.org/02pc4ce72', 'en', 1, 'https://ror.org/02pc4ce72 Richardson Hospital'),
(22274, 'https://ror.org/02peb2h94', 'en', 1, 'https://ror.org/02peb2h94 Stockport Metropolitan Borough Council'),
(22275, 'https://ror.org/02pfwd463', 'es', 1, 'https://ror.org/02pfwd463 Universidad Gestalt'),
(22276, 'https://ror.org/02pfxyr52', 'no_lang_code', 1, 'https://ror.org/02pfxyr52 Sunfire (Germany)'),
(22277, 'https://ror.org/02pfzx187', 'no_lang_code', 1, 'https://ror.org/02pfzx187 Norwegian Veterinary Centre for Contract Research and Commercial Services'),
(22278, 'https://ror.org/02pg8gw87', 'no_lang_code', 1, 'https://ror.org/02pg8gw87 SPTS Technologies (United Kingdom)'),
(22279, 'https://ror.org/02pgkhq67', 'es', 1, 'https://ror.org/02pgkhq67 Universidad del Altiplano'),
(22280, 'https://ror.org/02pgzvy52', 'en', 1, 'https://ror.org/02pgzvy52 Westmorland General Hospital'),
(22281, 'https://ror.org/02phxrh78', 'no_lang_code', 1, 'https://ror.org/02phxrh78 Samputensili (Italy)'),
(22282, 'https://ror.org/02pj05f64', 'no_lang_code', 1, 'https://ror.org/02pj05f64 Etegent Technologies (United States)'),
(22283, 'https://ror.org/02pj7we23', 'pt', 1, 'https://ror.org/02pj7we23 Centro UniversitÔrio Fundação Santo André'),
(22284, 'https://ror.org/02pkcfj18', 'no_lang_code', 1, 'https://ror.org/02pkcfj18 Trivisio Prototyping (Germany)'),
(22285, 'https://ror.org/02pn8ds72', 'no_lang_code', 1, 'https://ror.org/02pn8ds72 Wetlands Incubator (Belgium)'),
(22286, 'https://ror.org/02pr9jr80', 'no_lang_code', 1, 'https://ror.org/02pr9jr80 Prosys (Germany)'),
(22287, 'https://ror.org/02pse8162', 'en', 1, 'https://ror.org/02pse8162 RWI – Leibniz Institute for Economic Research RWI – Leibniz-Institut für Wirtschaftsforschung'),
(22288, 'https://ror.org/02pt8pf90', 'en', 1, 'https://ror.org/02pt8pf90 Horncastle War Memorial Hospital'),
(22289, 'https://ror.org/02pvy4b66', 'no_lang_code', 1, 'https://ror.org/02pvy4b66 TomTom (Germany)'),
(22290, 'https://ror.org/02pygx129', 'pl', 1, 'https://ror.org/02pygx129 Urząd Miasta Krakowa'),
(22291, 'https://ror.org/02pyw9g57', 'en', 1, 'https://ror.org/02pyw9g57 Higher Institute of Engineering المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للهندسة'),
(22292, 'https://ror.org/02pzx2c51', 'no_lang_code', 1, 'https://ror.org/02pzx2c51 OyaGen (United States)'),
(22293, 'https://ror.org/02pzxyp49', 'es', 1, 'https://ror.org/02pzxyp49 Universidad Católica de Oriente'),
(22294, 'https://ror.org/02q0kr716', 'en', 1, 'https://ror.org/02q0kr716 United Way of Yellowstone County'),
(22295, 'https://ror.org/02q28q956', 'en', 1, 'https://ror.org/02q28q956 Chengdu Second People''s Hospital ęˆéƒ½åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(22296, 'https://ror.org/02q2vkv24', 'en', 1, 'https://ror.org/02q2vkv24 Bodmin Hospital'),
(22297, 'https://ror.org/02q3acz97', 'no_lang_code', 1, 'https://ror.org/02q3acz97 Materialise (Germany)'),
(22298, 'https://ror.org/02q3wgj37', 'es', 1, 'https://ror.org/02q3wgj37 Instituto Barraquer de AmƩrica'),
(22299, 'https://ror.org/02q4bdb50', 'pt', 1, 'https://ror.org/02q4bdb50 Centro Regional UniversitƔrio de Espƭrito Santo do Pinhal'),
(22300, 'https://ror.org/02q5k5n31', 'en', 1, 'https://ror.org/02q5k5n31 Colorado Women''s College'),
(22301, 'https://ror.org/02q65bp28', 'no_lang_code', 1, 'https://ror.org/02q65bp28 Tordivel (Norway)'),
(22302, 'https://ror.org/02q8ggc38', 'en', 1, 'https://ror.org/02q8ggc38 Transnational Family Research Institute'),
(22303, 'https://ror.org/02qch8k63', 'en', 1, 'https://ror.org/02qch8k63 Briercrest College and Seminary'),
(22304, 'https://ror.org/02qchka04', 'es', 1, 'https://ror.org/02qchka04 Instituto Universitario de Oaxaca'),
(22305, 'https://ror.org/02qdw7f92', 'no_lang_code', 1, 'https://ror.org/02qdw7f92 Solari (Italy)'),
(22306, 'https://ror.org/02qfb0f37', 'en', 1, 'https://ror.org/02qfb0f37 San Mateo County Human Services'),
(22307, 'https://ror.org/02qgahb88', 'es', 1, 'https://ror.org/02qgahb88 Universidad TƩcnica de Manabƭ'),
(22308, 'https://ror.org/02qjcp783', 'en', 1, 'https://ror.org/02qjcp783 Services, Industrial, Professional and Technical Union'),
(22309, 'https://ror.org/02qmp6f83', 'en', 1, 'https://ror.org/02qmp6f83 Office of the Bronx District Attorney'),
(22310, 'https://ror.org/02qn44j35', 'fr', 1, 'https://ror.org/02qn44j35 UniversitƩ de Moundou'),
(22311, 'https://ror.org/02qpg3d02', 'no_lang_code', 1, 'https://ror.org/02qpg3d02 Safran (Germany)'),
(22312, 'https://ror.org/02qqh1v44', 'no_lang_code', 1, 'https://ror.org/02qqh1v44 OceanWaveS (Germany)'),
(22313, 'https://ror.org/02qrvdj69', 'en', 1, 'https://ror.org/02qrvdj69 Chuo Kikuu cha Mzumbe Mzumbe University'),
(22314, 'https://ror.org/02qy5zc16', 'en', 1, 'https://ror.org/02qy5zc16 Women''s Health In Women''s Hands'),
(22315, 'https://ror.org/02qykes20', 'fr', 1, 'https://ror.org/02qykes20 Centre Hospitalier de Valence'),
(22316, 'https://ror.org/02r084d93', 'fr', 1, 'https://ror.org/02r084d93 Centre Hospitalier AndrƩe Rosemon'),
(22317, 'https://ror.org/02r1ykk72', 'no_lang_code', 1, 'https://ror.org/02r1ykk72 Mobilaps (United States)'),
(22318, 'https://ror.org/02r34kc48', 'no_lang_code', 1, 'https://ror.org/02r34kc48 WheelRight (United Kingdom)'),
(22319, 'https://ror.org/02r3wcw82', 'en', 1, 'https://ror.org/02r3wcw82 Columbia Southern University'),
(22320, 'https://ror.org/02r42y861', 'no_lang_code', 1, 'https://ror.org/02r42y861 Monition (United Kingdom)'),
(22321, 'https://ror.org/02r6k7132', 'no_lang_code', 1, 'https://ror.org/02r6k7132 Chiang Mai Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(22322, 'https://ror.org/02r6y1x03', 'no_lang_code', 1, 'https://ror.org/02r6y1x03 STC Group (Netherlands)'),
(22323, 'https://ror.org/02r7t0d73', 'es', 1, 'https://ror.org/02r7t0d73 Universidad Autónoma Juan Misael Saracho'),
(22324, 'https://ror.org/02r8frq60', 'en', 1, 'https://ror.org/02r8frq60 Bisei Astronomical Observatory'),
(22325, 'https://ror.org/02r8zc629', 'en', 1, 'https://ror.org/02r8zc629 Market Drayton Cottage Hospital'),
(22326, 'https://ror.org/02rabtj57', 'es', 1, 'https://ror.org/02rabtj57 Instituto Profesional de Chile'),
(22327, 'https://ror.org/02rbkz523', 'en', 1, 'https://ror.org/02rbkz523 Yancheng First People''s Hospital ē›åŸŽåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(22328, 'https://ror.org/02rbr5948', 'no_lang_code', 1, 'https://ror.org/02rbr5948 Ghana Christian University College'),
(22329, 'https://ror.org/02rdhze40', 'en', 1, 'https://ror.org/02rdhze40 Middlesex Community College'),
(22330, 'https://ror.org/02rgx8605', 'en', 1, 'https://ror.org/02rgx8605 Scottsdale Community College'),
(22331, 'https://ror.org/02rh4fw73', 'en', 1, 'https://ror.org/02rh4fw73 University of Minnesota Rochester'),
(22332, 'https://ror.org/02rj52618', 'no_lang_code', 1, 'https://ror.org/02rj52618 RheoSense (United States)'),
(22333, 'https://ror.org/02rjekw63', 'fr', 1, 'https://ror.org/02rjekw63 Institut SupĆ©rieur des Sciences de l''Ɖducation de GuinĆ©e'),
(22334, 'https://ror.org/02rna7j18', 'no_lang_code', 1, 'https://ror.org/02rna7j18 Abzena (United Kingdom)'),
(22335, 'https://ror.org/02rp4gd98', 'es', 1, 'https://ror.org/02rp4gd98 Universidad Nacional de Ucayali'),
(22336, 'https://ror.org/02rpp4n56', 'en', 1, 'https://ror.org/02rpp4n56 Science and Technology Interactive Center'),
(22337, 'https://ror.org/02rq1qj48', 'fr', 1, 'https://ror.org/02rq1qj48 Institut National de la Jeunesse et des Sports'),
(22338, 'https://ror.org/02rqc5533', 'en', 1, 'https://ror.org/02rqc5533 Nesta'),
(22339, 'https://ror.org/02rrha849', 'pt', 1, 'https://ror.org/02rrha849 Universidade Santa CecĆ­lia'),
(22340, 'https://ror.org/02rrq8748', 'no_lang_code', 1, 'https://ror.org/02rrq8748 Descartes (Belgium)'),
(22341, 'https://ror.org/02rrrky22', 'no_lang_code', 1, 'https://ror.org/02rrrky22 Development Delivery International'),
(22342, 'https://ror.org/02rs30x67', 'no_lang_code', 1, 'https://ror.org/02rs30x67 Melexis (Germany)'),
(22343, 'https://ror.org/02rsx0d74', 'es', 1, 'https://ror.org/02rsx0d74 Universidad de Puebla'),
(22344, 'https://ror.org/02rxdft45', 'en', 1, 'https://ror.org/02rxdft45 Water Authority of Jordan'),
(22345, 'https://ror.org/02ry6ba16', 'en', 1, 'https://ror.org/02ry6ba16 Society for the Study of Architecture in Canada SociĆ©tĆ© pour l''Ɖtude de l''Architecture au Canada'),
(22346, 'https://ror.org/02ryc4y44', 'en', 1, 'https://ror.org/02ryc4y44 East and North Hertfordshire NHS Trust'),
(22347, 'https://ror.org/02rzbnj22', 'no_lang_code', 1, 'https://ror.org/02rzbnj22 Trusted Positioning (Canada)'),
(22348, 'https://ror.org/02rzpp332', 'es', 1, 'https://ror.org/02rzpp332 Universidad Cristóbal Colón'),
(22349, 'https://ror.org/02s12gd46', 'en', 1, 'https://ror.org/02s12gd46 Sjofartsverket Swedish Maritime Administration'),
(22350, 'https://ror.org/02s1b7x83', 'en', 1, 'https://ror.org/02s1b7x83 Workington Community Hospital'),
(22351, 'https://ror.org/02s2a9m37', 'en', 1, 'https://ror.org/02s2a9m37 Agricultural University of Havana'),
(22352, 'https://ror.org/02s3p6s69', 'en', 1, 'https://ror.org/02s3p6s69 Projects in Motion'),
(22353, 'https://ror.org/02s47bv30', 'no_lang_code', 1, 'https://ror.org/02s47bv30 Prosolia (United States)'),
(22354, 'https://ror.org/02s93t850', 'es', 1, 'https://ror.org/02s93t850 Universidad Pontificia de MƩxico'),
(22355, 'https://ror.org/02sca6s74', 'no_lang_code', 1, 'https://ror.org/02sca6s74 Tracasa (Spain)'),
(22356, 'https://ror.org/02scrd410', 'no_lang_code', 1, 'https://ror.org/02scrd410 Techin (Poland)'),
(22357, 'https://ror.org/02sd61b37', 'no_lang_code', 1, 'https://ror.org/02sd61b37 Yangon ENT Hospital ရန်ကုန် နား နှာခေါင်း į€œį€Šį€ŗį€į€»į€±į€¬į€„į€ŗį€ø ဆေးရုံ'),
(22358, 'https://ror.org/02se1sp19', 'en', 1, 'https://ror.org/02se1sp19 Harplands Hospital'),
(22359, 'https://ror.org/02se5xj66', 'en', 1, 'https://ror.org/02se5xj66 National Medical Association'),
(22360, 'https://ror.org/02sejv728', 'en', 1, 'https://ror.org/02sejv728 Chuo Kikuu cha Zanzibar Zanzibar University Ų¬Ų§Ł…Ų¹Ų© زنجبار'),
(22361, 'https://ror.org/02sfdnr59', 'pt', 1, 'https://ror.org/02sfdnr59 Universidade SĆ£o Marcos'),
(22362, 'https://ror.org/02sghbs34', 'en', 1, 'https://ror.org/02sghbs34 University of Rio Grande and Rio Grande Community College'),
(22363, 'https://ror.org/02sh10804', 'no_lang_code', 1, 'https://ror.org/02sh10804 Future Electronics (Netherlands)'),
(22364, 'https://ror.org/02sh2xr17', 'no_lang_code', 1, 'https://ror.org/02sh2xr17 MIL Corporation (United States)'),
(22365, 'https://ror.org/02shmve39', 'en', 1, 'https://ror.org/02shmve39 Mongolian University of Science and Technology ŠØŠøŠ½Š¶Š»ŃŃ… Ухаан Технологийн Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(22366, 'https://ror.org/02sj6gg16', 'no_lang_code', 1, 'https://ror.org/02sj6gg16 Pharmaplant (Germany)'),
(22367, 'https://ror.org/02sqp5835', 'es', 1, 'https://ror.org/02sqp5835 Universidad de los Hemisferios'),
(22368, 'https://ror.org/02sr8z564', 'no_lang_code', 1, 'https://ror.org/02sr8z564 Northrop Grumman (Norway)'),
(22369, 'https://ror.org/02st14b97', 'no_lang_code', 1, 'https://ror.org/02st14b97 SokolovskĆ” UhelnĆ” (Czechia)'),
(22370, 'https://ror.org/02svrcw68', 'no_lang_code', 1, 'https://ror.org/02svrcw68 Micro Systems Engineering (Germany)'),
(22371, 'https://ror.org/02sx8r245', 'en', 1, 'https://ror.org/02sx8r245 Southwold Hospital'),
(22372, 'https://ror.org/02syy7986', 'en', 1, 'https://ror.org/02syy7986 Norwegian Water Resources and Energy Directorate'),
(22373, 'https://ror.org/02szcd955', 'no_lang_code', 1, 'https://ror.org/02szcd955 Positive Action'),
(22374, 'https://ror.org/02t055680', 'en', 1, 'https://ror.org/02t055680 Ahram Canadian University Ų¬Ų§Ł…Ų¹Ų© الأهرام Ų§Ł„ŁƒŁ†ŲÆŁŠŲ©'),
(22375, 'https://ror.org/02t1zaz23', 'no_lang_code', 1, 'https://ror.org/02t1zaz23 Procarta Biosystems (United Kingdom)'),
(22376, 'https://ror.org/02t22fn57', 'es', 1, 'https://ror.org/02t22fn57 Universidad Anglohispanomexicana'),
(22377, 'https://ror.org/02t4nyn12', 'en', 1, 'https://ror.org/02t4nyn12 Aryabhatta Research Institute of Observational Sciences'),
(22378, 'https://ror.org/02t51xq98', 'no_lang_code', 1, 'https://ror.org/02t51xq98 SoilVision Systems (Canada)'),
(22379, 'https://ror.org/02t54e151', 'en', 1, 'https://ror.org/02t54e151 Icesi University Universidad Icesi'),
(22380, 'https://ror.org/02t5bjk31', 'no_lang_code', 1, 'https://ror.org/02t5bjk31 Pulsotronic (Germany)'),
(22381, 'https://ror.org/02t5kd339', 'en', 1, 'https://ror.org/02t5kd339 Ontario Aggregate Resources Corporation'),
(22382, 'https://ror.org/02t80dd48', 'no_lang_code', 1, 'https://ror.org/02t80dd48 Teem Photonics (France)'),
(22383, 'https://ror.org/02t8gc695', 'en', 1, 'https://ror.org/02t8gc695 Odyssey House'),
(22384, 'https://ror.org/02t8vgv97', 'no_lang_code', 1, 'https://ror.org/02t8vgv97 Sony (Sweden)'),
(22385, 'https://ror.org/02tdw9g37', 'no_lang_code', 1, 'https://ror.org/02tdw9g37 Release Mobile (United Kingdom)'),
(22386, 'https://ror.org/02te4t940', 'en', 1, 'https://ror.org/02te4t940 Universidad del Claustro de Sor Juana University of the Cloister of Sor Juana'),
(22387, 'https://ror.org/02tfgas26', 'no_lang_code', 1, 'https://ror.org/02tfgas26 SĆØleco (Italy)'),
(22388, 'https://ror.org/02tg03m61', 'no_lang_code', 1, 'https://ror.org/02tg03m61 Photon Design (United Kingdom)'),
(22389, 'https://ror.org/02tg3d712', 'en', 1, 'https://ror.org/02tg3d712 Lambert Memorial Community Hospital'),
(22390, 'https://ror.org/02tgqv590', 'en', 1, 'https://ror.org/02tgqv590 Regent University College of Science and Technology'),
(22391, 'https://ror.org/02tk9ek40', 'en', 1, 'https://ror.org/02tk9ek40 Clitheroe Community Hospital'),
(22392, 'https://ror.org/02tp9ep96', 'en', 1, 'https://ror.org/02tp9ep96 Statistical Office of the Republic of Slovenia'),
(22393, 'https://ror.org/02tq8vz07', 'en', 1, 'https://ror.org/02tq8vz07 Quisqueya University UniversitƩ Quisqueya'),
(22394, 'https://ror.org/02trpe492', 'en', 1, 'https://ror.org/02trpe492 Bugema University'),
(22395, 'https://ror.org/02tvd9h19', 'no_lang_code', 1, 'https://ror.org/02tvd9h19 Virtual Corporation (United States)'),
(22396, 'https://ror.org/02tythz78', 'en', 1, 'https://ror.org/02tythz78 Pan-Atlantic University'),
(22397, 'https://ror.org/02v042q73', 'en', 1, 'https://ror.org/02v042q73 Conservatorio del Tolima Conservatory of Tolima'),
(22398, 'https://ror.org/02v8m8m62', 'fr', 1, 'https://ror.org/02v8m8m62 Ɖcole Inter-Ɖtats des Sciences et MĆ©decine VĆ©tĆ©rinaires de Dakar'),
(22399, 'https://ror.org/02v92t976', 'fi', 1, 'https://ror.org/02v92t976 PƤijƤt-HƤmeen Keskussairaala'),
(22400, 'https://ror.org/02v996210', 'no_lang_code', 1, 'https://ror.org/02v996210 NetUnion (Switzerland)'),
(22401, 'https://ror.org/02vbc1t40', 'no_lang_code', 1, 'https://ror.org/02vbc1t40 Softing (Germany)'),
(22402, 'https://ror.org/02vbm2f39', 'no_lang_code', 1, 'https://ror.org/02vbm2f39 Nanova Biomaterials (United States)'),
(22403, 'https://ror.org/02vbtzd72', 'es', 1, 'https://ror.org/02vbtzd72 Universidad Santo TomƔs'),
(22404, 'https://ror.org/02vbxvt28', 'en', 1, 'https://ror.org/02vbxvt28 Swedish Institute of Assistive Technology'),
(22405, 'https://ror.org/02vcffh37', 'en', 1, 'https://ror.org/02vcffh37 Sarah Bush Lincoln Health System'),
(22406, 'https://ror.org/02vdg3j11', 'no_lang_code', 1, 'https://ror.org/02vdg3j11 Rational Biotechnology (United States)'),
(22407, 'https://ror.org/02vg7rh06', 'es', 1, 'https://ror.org/02vg7rh06 Thomas More Universitas, Universidad Thomas More'),
(22408, 'https://ror.org/02vh6gg23', 'en', 1, 'https://ror.org/02vh6gg23 Crawley Hospital'),
(22409, 'https://ror.org/02vhqqh86', 'no_lang_code', 1, 'https://ror.org/02vhqqh86 Rio Tinto (United States)'),
(22410, 'https://ror.org/02vj2b283', 'en', 1, 'https://ror.org/02vj2b283 Setting Priorities for Retirement Years Foundation'),
(22411, 'https://ror.org/02vm0aw48', 'fr', 1, 'https://ror.org/02vm0aw48 Centre Hospitalier de Troyes'),
(22412, 'https://ror.org/02vmcxs72', 'no_lang_code', 1, 'https://ror.org/02vmcxs72 Mulungushi University'),
(22413, 'https://ror.org/02vmfn041', 'en', 1, 'https://ror.org/02vmfn041 Phoenix Programs'),
(22414, 'https://ror.org/02vp0x259', 'en', 1, 'https://ror.org/02vp0x259 Association Canadienne d''Ethnologie et de Folklore Folklore Studies Association of Canada'),
(22415, 'https://ror.org/02vpjdc07', 'en', 1, 'https://ror.org/02vpjdc07 Franklyn Community Hospital'),
(22416, 'https://ror.org/02vsbhs07', 'no_lang_code', 1, 'https://ror.org/02vsbhs07 Planetek Hellas (Greece)'),
(22417, 'https://ror.org/02vt0t860', 'no_lang_code', 1, 'https://ror.org/02vt0t860 In-Situ (United States)'),
(22418, 'https://ror.org/02vtemz45', 'en', 1, 'https://ror.org/02vtemz45 Discovery Programme'),
(22419, 'https://ror.org/02vttnw51', 'en', 1, 'https://ror.org/02vttnw51 Verification Research, Training and Information Centre'),
(22420, 'https://ror.org/02vvsd246', 'no_lang_code', 1, 'https://ror.org/02vvsd246 Vorbeck (United States)'),
(22421, 'https://ror.org/02vxbf684', 'en', 1, 'https://ror.org/02vxbf684 Winfield Hospital'),
(22422, 'https://ror.org/02w1kdc51', 'en', 1, 'https://ror.org/02w1kdc51 University of Technology, Jamaica'),
(22423, 'https://ror.org/02w4pz848', 'en', 1, 'https://ror.org/02w4pz848 Light University of Bujumbur Université lLumière de Bujumbura'),
(22424, 'https://ror.org/02w7b8538', 'es', 1, 'https://ror.org/02w7b8538 Centro Universitario de Tenango del Valle'),
(22425, 'https://ror.org/02w91w637', 'en', 1, 'https://ror.org/02w91w637 Newcastle upon Tyne Hospital'),
(22426, 'https://ror.org/02wa2k617', 'no_lang_code', 1, 'https://ror.org/02wa2k617 Space Syntax (United Kingdom)'),
(22427, 'https://ror.org/02wcat891', 'no_lang_code', 1, 'https://ror.org/02wcat891 MRC Holland (Netherlands)'),
(22428, 'https://ror.org/02wdfve94', 'no_lang_code', 1, 'https://ror.org/02wdfve94 Stokast (Canada)'),
(22429, 'https://ror.org/02wdrwh83', 'en', 1, 'https://ror.org/02wdrwh83 Space Telescope European Coordinating Facility'),
(22430, 'https://ror.org/02wfc0z28', 'en', 1, 'https://ror.org/02wfc0z28 Shawnee Mission South High School'),
(22431, 'https://ror.org/02wh0by57', 'no_lang_code', 1, 'https://ror.org/02wh0by57 Vybion (United States)'),
(22432, 'https://ror.org/02wk2dc91', 'en', 1, 'https://ror.org/02wk2dc91 William Jessup University'),
(22433, 'https://ror.org/02wmz0223', 'no_lang_code', 1, 'https://ror.org/02wmz0223 Micropore Technologies (United Kingdom)'),
(22434, 'https://ror.org/02wmzx058', 'es', 1, 'https://ror.org/02wmzx058 Universidad JosƩ Vasconcelos de Oaxaca'),
(22435, 'https://ror.org/02wnmt242', 'no_lang_code', 1, 'https://ror.org/02wnmt242 PhaseBio Pharmaceuticals (United States)'),
(22436, 'https://ror.org/02wp8az94', 'no_lang_code', 1, 'https://ror.org/02wp8az94 HolidayCheck Group (Germany)'),
(22437, 'https://ror.org/02wqh6z44', 'fr', 1, 'https://ror.org/02wqh6z44 Chateau Guiraud'),
(22438, 'https://ror.org/02wr25f53', 'no_lang_code', 1, 'https://ror.org/02wr25f53 Unisense (Denmark)'),
(22439, 'https://ror.org/02wtemq51', 'en', 1, 'https://ror.org/02wtemq51 Cumberland University'),
(22440, 'https://ror.org/02wtt8e62', 'no_lang_code', 1, 'https://ror.org/02wtt8e62 OpTek Systems (United Kingdom)'),
(22441, 'https://ror.org/02wxh6849', 'no_lang_code', 1, 'https://ror.org/02wxh6849 SQW Group (United Kingdom)'),
(22442, 'https://ror.org/02wyktf69', 'en', 1, 'https://ror.org/02wyktf69 Mill View Hospital'),
(22443, 'https://ror.org/02x14ne40', 'no_lang_code', 1, 'https://ror.org/02x14ne40 Optrak (United Kingdom)'),
(22444, 'https://ror.org/02x1vjb06', 'en', 1, 'https://ror.org/02x1vjb06 Nakagawanosato Hospital for the Disabled'),
(22445, 'https://ror.org/02x2yhv10', 'en', 1, 'https://ror.org/02x2yhv10 Shawnee Health Service and Development Corporation'),
(22446, 'https://ror.org/02x5def49', 'en', 1, 'https://ror.org/02x5def49 Whitstable and Tankerton Hospital'),
(22447, 'https://ror.org/02x62qd57', 'es', 1, 'https://ror.org/02x62qd57 Universidad Católica Santa María La Antigua'),
(22448, 'https://ror.org/02x6tcp11', 'en', 1, 'https://ror.org/02x6tcp11 Bolivia Adventist University Universidad Adventista de Bolivia'),
(22449, 'https://ror.org/02xbagc94', 'no_lang_code', 1, 'https://ror.org/02xbagc94 Yankee Environmental System (United States)'),
(22450, 'https://ror.org/02xbmha33', 'en', 1, 'https://ror.org/02xbmha33 Montagu Hospital'),
(22451, 'https://ror.org/02xd7yj05', 'no_lang_code', 1, 'https://ror.org/02xd7yj05 Yamaha (Netherlands)'),
(22452, 'https://ror.org/02xex0f63', 'en', 1, 'https://ror.org/02xex0f63 Stroud Maternity Hospital'),
(22453, 'https://ror.org/02xf01n45', 'en', 1, 'https://ror.org/02xf01n45 Palo Alto Institute'),
(22454, 'https://ror.org/02xhybk62', 'en', 1, 'https://ror.org/02xhybk62 National AIDS Commission'),
(22455, 'https://ror.org/02xjxgz53', 'en', 1, 'https://ror.org/02xjxgz53 Joetsu University of Education äøŠč¶Šę•™č‚²å¤§å­¦'),
(22456, 'https://ror.org/02xnefk61', 'en', 1, 'https://ror.org/02xnefk61 Ridge Lea Hospital'),
(22457, 'https://ror.org/02xphqm22', 'en', 1, 'https://ror.org/02xphqm22 County Hospital'),
(22458, 'https://ror.org/02xq7yj60', 'no_lang_code', 1, 'https://ror.org/02xq7yj60 Overspeed (Germany)'),
(22459, 'https://ror.org/02xse0b92', 'en', 1, 'https://ror.org/02xse0b92 NIU Observatory'),
(22460, 'https://ror.org/02xt2gf57', 'no_lang_code', 1, 'https://ror.org/02xt2gf57 Imamura Hospital ä»Šę‘ē—…é™¢'),
(22461, 'https://ror.org/02xt59385', 'fr', 1, 'https://ror.org/02xt59385 Ɖcole SupĆ©rieure de Gestion et des Sciences de l''Informatique'),
(22462, 'https://ror.org/02xtk7r80', 'en', 1, 'https://ror.org/02xtk7r80 New Horizons Community Service Board'),
(22463, 'https://ror.org/02xtrpd94', 'no_lang_code', 1, 'https://ror.org/02xtrpd94 Seureco (France)'),
(22464, 'https://ror.org/02xv0d283', 'en', 1, 'https://ror.org/02xv0d283 Essays on Canadian Writing'),
(22465, 'https://ror.org/02xw8cw23', 'es', 1, 'https://ror.org/02xw8cw23 Universidad del Valle'),
(22466, 'https://ror.org/02xxmeg14', 'en', 1, 'https://ror.org/02xxmeg14 MyFace'),
(22467, 'https://ror.org/02xyh0e61', 'fr', 1, 'https://ror.org/02xyh0e61 Ɖcole Africaine des MĆ©tiers de l''Architecture et de l''Urbanisme'),
(22468, 'https://ror.org/02xz41712', 'en', 1, 'https://ror.org/02xz41712 Billedkunst Skolerne Det Kongelige Danske Kunstakademis Schools of Visual Arts, The Royal Danish Academy of Fine Arts'),
(22469, 'https://ror.org/02xzjn598', 'en', 1, 'https://ror.org/02xzjn598 Regent College'),
(22470, 'https://ror.org/02xzt0b24', 'no_lang_code', 1, 'https://ror.org/02xzt0b24 Yuzhnoye State Design Office (Ukraine) Державне ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŃŒŠŗŠµ Š±ŃŽŃ€Š¾ Ā«ŠŸŃ–Š²Š“ŠµŠ½Š½ŠµĀ» ім. М. К. ŠÆŠ½Š³ŠµŠ»Ń'),
(22471, 'https://ror.org/02y28sc20', 'en', 1, 'https://ror.org/02y28sc20 Visva-Bharati University ą¤µą¤æą¤¶ą„ą¤µ-ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦­ą¦¾ą¦°ą¦¤ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ਵਿਸ਼ਵ ਭਾਰਤੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą“µą“æą“¶ąµą“µą“­ą“¾ą“°ą“¤ą“æ ą“øąµ¼ ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(22472, 'https://ror.org/02y2zxx30', 'en', 1, 'https://ror.org/02y2zxx30 Lizard Hollow Observatory'),
(22473, 'https://ror.org/02y4de895', 'en', 1, 'https://ror.org/02y4de895 Methodist University of Angola Universidade Metodista de Angola'),
(22474, 'https://ror.org/02y535c02', 'en', 1, 'https://ror.org/02y535c02 State College of Florida Manatee-Sarasota'),
(22475, 'https://ror.org/02y600b55', 'no_lang_code', 1, 'https://ror.org/02y600b55 Microlab Devices (United Kingdom)'),
(22476, 'https://ror.org/02y6w3696', 'en', 1, 'https://ror.org/02y6w3696 Norwegian Seafood Association'),
(22477, 'https://ror.org/02y7rg150', 'pt', 1, 'https://ror.org/02y7rg150 Instituto Superior de Ciências e Tecnologia de Moçambique'),
(22478, 'https://ror.org/02y7tka90', 'no_lang_code', 1, 'https://ror.org/02y7tka90 MicroDiscovery (Germany)'),
(22479, 'https://ror.org/02y88x190', 'en', 1, 'https://ror.org/02y88x190 Museu Nacional de Arqueologia National Archaeology Museum'),
(22480, 'https://ror.org/02y8qpa51', 'no_lang_code', 1, 'https://ror.org/02y8qpa51 JDA Software (Canada)'),
(22481, 'https://ror.org/02yeqtv37', 'no_lang_code', 1, 'https://ror.org/02yeqtv37 WƤrtsilƤ (Netherlands)'),
(22482, 'https://ror.org/02ykdz073', 'en', 1, 'https://ror.org/02ykdz073 Kwame Nkrumah University'),
(22483, 'https://ror.org/02yke5x89', 'es', 1, 'https://ror.org/02yke5x89 Universidad de la Empresa'),
(22484, 'https://ror.org/02ync6318', 'en', 1, 'https://ror.org/02ync6318 The Beardwood Hospital'),
(22485, 'https://ror.org/02yng3249', 'en', 1, 'https://ror.org/02yng3249 Inner Mongolia People''s Hospital å†…č’™å¤č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(22486, 'https://ror.org/02yq33n72', 'en', 1, 'https://ror.org/02yq33n72 Maidstone and Tunbridge Wells NHS Trust'),
(22487, 'https://ror.org/02ys1m002', 'en', 1, 'https://ror.org/02ys1m002 Association for the Advancement of Scandinavian Studies in Canada l''Association pour l''avancement des Ʃtudes scandinaves au Canada'),
(22488, 'https://ror.org/02yvak009', 'en', 1, 'https://ror.org/02yvak009 Holsworthy Community Hospital'),
(22489, 'https://ror.org/02yy98a98', 'en', 1, 'https://ror.org/02yy98a98 Zero Carbon Hub'),
(22490, 'https://ror.org/02yzpv617', 'no_lang_code', 1, 'https://ror.org/02yzpv617 Piramal (Canada)'),
(22491, 'https://ror.org/02z0zz187', 'fr', 1, 'https://ror.org/02z0zz187 Institut SupƩrieur de comptabilitƩ Audit et Finance'),
(22492, 'https://ror.org/02z191186', 'es', 1, 'https://ror.org/02z191186 Universidad Tecnológica Americana'),
(22493, 'https://ror.org/02z1yy887', 'no_lang_code', 1, 'https://ror.org/02z1yy887 Population and Social Policy Consultants'),
(22494, 'https://ror.org/02z5k4q74', 'fr', 1, 'https://ror.org/02z5k4q74 UniversitƩ Libre de Luozi'),
(22495, 'https://ror.org/02z7t7h39', 'no_lang_code', 1, 'https://ror.org/02z7t7h39 SocietĆ  Italiana Apparecchi Scientifici (Italy)'),
(22496, 'https://ror.org/02za70122', 'no_lang_code', 1, 'https://ror.org/02za70122 Ruhrverband (Germany)'),
(22497, 'https://ror.org/02za9ff59', 'en', 1, 'https://ror.org/02za9ff59 European Rail Research Institute'),
(22498, 'https://ror.org/02zax3c17', 'en', 1, 'https://ror.org/02zax3c17 Jerusalem Institute for Israel Studies'),
(22499, 'https://ror.org/02zb8tm77', 'en', 1, 'https://ror.org/02zb8tm77 Yosemite Community College District'),
(22500, 'https://ror.org/02zjv1c92', 'no_lang_code', 1, 'https://ror.org/02zjv1c92 Sustainable Venture Development Partners (United Kingdom)'),
(22501, 'https://ror.org/02zkjb195', 'es', 1, 'https://ror.org/02zkjb195 Universidad JosƩ Marƭa Vargas'),
(22502, 'https://ror.org/02zkpaw44', 'en', 1, 'https://ror.org/02zkpaw44 Herbs for Horses'),
(22503, 'https://ror.org/02zkph911', 'no_lang_code', 1, 'https://ror.org/02zkph911 AVL (France)'),
(22504, 'https://ror.org/02zmc3h95', 'en', 1, 'https://ror.org/02zmc3h95 Public Health Foundation'),
(22505, 'https://ror.org/02zmzxn38', 'en', 1, 'https://ror.org/02zmzxn38 Pennsylvania Institute of Technology'),
(22506, 'https://ror.org/02znd6t60', 'en', 1, 'https://ror.org/02znd6t60 Canadian Psychological Association'),
(22507, 'https://ror.org/02znknb21', 'no_lang_code', 1, 'https://ror.org/02znknb21 Prysmian Group (United Kingdom)'),
(22508, 'https://ror.org/02zp2wx66', 'en', 1, 'https://ror.org/02zp2wx66 Schnƶrringen Telescope Science Institute'),
(22509, 'https://ror.org/02zq48n91', 'en', 1, 'https://ror.org/02zq48n91 Hanzhong People''s Hospital ę±‰äø­åø‚äŗŗę°‘åŒ»é™¢'),
(22510, 'https://ror.org/02zqg7m89', 'fr', 1, 'https://ror.org/02zqg7m89 Centre Hospitalier de BƩthune'),
(22511, 'https://ror.org/02zrdtc90', 'en', 1, 'https://ror.org/02zrdtc90 McMaster Divinity College'),
(22512, 'https://ror.org/02zrx8k78', 'no_lang_code', 1, 'https://ror.org/02zrx8k78 Resonon (United States)'),
(22513, 'https://ror.org/02zw4ny56', 'no_lang_code', 1, 'https://ror.org/02zw4ny56 Vitamib (France)'),
(22514, 'https://ror.org/02zy1d441', 'no_lang_code', 1, 'https://ror.org/02zy1d441 Sensap (Greece)'),
(22515, 'https://ror.org/02zy3sy39', 'no_lang_code', 1, 'https://ror.org/02zy3sy39 Pacific Biomarkers (United States)'),
(22516, 'https://ror.org/02zy8pf47', 'no_lang_code', 1, 'https://ror.org/02zy8pf47 TransƉnergie (France)'),
(22517, 'https://ror.org/02zyq5q98', 'no_lang_code', 1, 'https://ror.org/02zyq5q98 Meyer Turku (Finland)'),
(22518, 'https://ror.org/03001j263', 'es', 1, 'https://ror.org/03001j263 Universidad Continental de las Ciencias las Artes'),
(22519, 'https://ror.org/0302q4d52', 'en', 1, 'https://ror.org/0302q4d52 Manila Observatory'),
(22520, 'https://ror.org/0302zgk11', 'en', 1, 'https://ror.org/0302zgk11 Zubov State Oceanographic Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ океанографический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š.Š.Š—ŃƒŠ±Š¾Š²Š°'),
(22521, 'https://ror.org/0303yjn29', 'en', 1, 'https://ror.org/0303yjn29 Ukrainian scientific center of Ecology of Sea'),
(22522, 'https://ror.org/0305nje64', 'pt', 1, 'https://ror.org/0305nje64 Universidade Salgado de Oliveira'),
(22523, 'https://ror.org/0305q4m96', 'no_lang_code', 1, 'https://ror.org/0305q4m96 PostScriptum (Greece)'),
(22524, 'https://ror.org/0305v8773', 'en', 1, 'https://ror.org/0305v8773 Stephens College'),
(22525, 'https://ror.org/0306pcd50', 'fr', 1, 'https://ror.org/0306pcd50 UniversitƩ EvangƩlique en Afrique'),
(22526, 'https://ror.org/03098ta78', 'no_lang_code', 1, 'https://ror.org/03098ta78 Optical Fiber Solutions (Denmark)'),
(22527, 'https://ror.org/030b93p62', 'es', 1, 'https://ror.org/030b93p62 Universidad Champagnat'),
(22528, 'https://ror.org/030bs8t82', 'no_lang_code', 1, 'https://ror.org/030bs8t82 Zymera (United States)'),
(22529, 'https://ror.org/030f3em06', 'no_lang_code', 1, 'https://ror.org/030f3em06 XData Corporation (United States)'),
(22530, 'https://ror.org/030jtw105', 'es', 1, 'https://ror.org/030jtw105 Universidad CuauhnƔhuac'),
(22531, 'https://ror.org/030ncfx10', 'es', 1, 'https://ror.org/030ncfx10 Universidad Metropolitana de Monterrey'),
(22532, 'https://ror.org/030nfm877', 'no_lang_code', 1, 'https://ror.org/030nfm877 Saigata National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹ć•ć„ćŒćŸē—…é™¢'),
(22533, 'https://ror.org/030p4ph45', 'en', 1, 'https://ror.org/030p4ph45 Wotton Lawn Hospital'),
(22534, 'https://ror.org/030pd1x82', 'de', 1, 'https://ror.org/030pd1x82 Kreiskliniken Reutlingen'),
(22535, 'https://ror.org/030raqa76', 'no_lang_code', 1, 'https://ror.org/030raqa76 Stirling Cryogenics (Netherlands)'),
(22536, 'https://ror.org/030rphv15', 'en', 1, 'https://ror.org/030rphv15 Virtual Dimension Center'),
(22537, 'https://ror.org/030sq7c39', 'no_lang_code', 1, 'https://ror.org/030sq7c39 IMA (Italy)'),
(22538, 'https://ror.org/030tm6614', 'no_lang_code', 1, 'https://ror.org/030tm6614 INES-Ruhengeri Institut d''Enseignement supƩrieur de Ruhengeri'),
(22539, 'https://ror.org/030tx1703', 'no_lang_code', 1, 'https://ror.org/030tx1703 Tacchella Macchine (Italy)'),
(22540, 'https://ror.org/030v7ct83', 'es', 1, 'https://ror.org/030v7ct83 Institución Universitaria Antonio José Camacho'),
(22541, 'https://ror.org/030vkw561', 'es', 1, 'https://ror.org/030vkw561 Universidad Alejandro de Humboldt'),
(22542, 'https://ror.org/030w7x329', 'es', 1, 'https://ror.org/030w7x329 Observatorio astronómico municipal de Murcia "La Murta"'),
(22543, 'https://ror.org/030wrns14', 'no_lang_code', 1, 'https://ror.org/030wrns14 Northern Digital (Canada)'),
(22544, 'https://ror.org/030xx9n34', 'en', 1, 'https://ror.org/030xx9n34 Mandalay University į€™į€”į€¹į€į€œį€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(22545, 'https://ror.org/030zrse19', 'en', 1, 'https://ror.org/030zrse19 New and Renewable Energy Authority'),
(22546, 'https://ror.org/0311gd774', 'en', 1, 'https://ror.org/0311gd774 Research Institute of Industrial Economics'),
(22547, 'https://ror.org/0311x3t35', 'no_lang_code', 1, 'https://ror.org/0311x3t35 REL (United States)'),
(22548, 'https://ror.org/0314vzp76', 'en', 1, 'https://ror.org/0314vzp76 Orkney Fisheries Association'),
(22549, 'https://ror.org/03154z139', 'no_lang_code', 1, 'https://ror.org/03154z139 Creation Technologies (United States)'),
(22550, 'https://ror.org/031601h81', 'no_lang_code', 1, 'https://ror.org/031601h81 PricewaterhouseCoopers (Netherlands)'),
(22551, 'https://ror.org/0317pbn61', 'en', 1, 'https://ror.org/0317pbn61 Minot Public Schools'),
(22552, 'https://ror.org/031903y12', 'en', 1, 'https://ror.org/031903y12 Canadian Council on Social Development'),
(22553, 'https://ror.org/0319ch597', 'no_lang_code', 1, 'https://ror.org/0319ch597 Floralis (France)'),
(22554, 'https://ror.org/031dgzs07', 'no_lang_code', 1, 'https://ror.org/031dgzs07 Dogo Onsen Hospital é“å¾Œęø©ę³‰ē—…é™¢'),
(22555, 'https://ror.org/031gdw727', 'no_lang_code', 1, 'https://ror.org/031gdw727 SimulConsult'),
(22556, 'https://ror.org/031h0qv85', 'es', 1, 'https://ror.org/031h0qv85 Universidad Nacional Experimental de las Artes'),
(22557, 'https://ror.org/031j8q670', 'en', 1, 'https://ror.org/031j8q670 Rafael Urdaneta University Universidad Rafael Urdaneta'),
(22558, 'https://ror.org/031jtdj18', 'no_lang_code', 1, 'https://ror.org/031jtdj18 Technologie Agentur Struktur Keramik (Germany)'),
(22559, 'https://ror.org/031km1t38', 'no_lang_code', 1, 'https://ror.org/031km1t38 Software for Critical Systems (Spain)'),
(22560, 'https://ror.org/031m3tz43', 'es', 1, 'https://ror.org/031m3tz43 Universidad Mesoamericana'),
(22561, 'https://ror.org/031mc4w27', 'en', 1, 'https://ror.org/031mc4w27 Hinckley and District Hospital'),
(22562, 'https://ror.org/031mcge81', 'en', 1, 'https://ror.org/031mcge81 Nunavik Regional Board of Health and Social Services RƩgie rƩgionale de la santƩ et des services sociaux du Nunavik'),
(22563, 'https://ror.org/031pdhx80', 'es', 1, 'https://ror.org/031pdhx80 Escuela Superior Politécnica Ecológica Amazónica'),
(22564, 'https://ror.org/031ph8d53', 'en', 1, 'https://ror.org/031ph8d53 Hochschule Worms University of Applied Sciences Worms'),
(22565, 'https://ror.org/031q3mt20', 'no_lang_code', 1, 'https://ror.org/031q3mt20 UbiVac (United States)'),
(22566, 'https://ror.org/031qqmw72', 'no_lang_code', 1, 'https://ror.org/031qqmw72 SmileSonica (Canada)'),
(22567, 'https://ror.org/031ra7072', 'fr', 1, 'https://ror.org/031ra7072 Universiapolis - UniversitƩ Internationale d''Agadir'),
(22568, 'https://ror.org/031rhf983', 'no_lang_code', 1, 'https://ror.org/031rhf983 Veeco (United Kingdom)'),
(22569, 'https://ror.org/031swr525', 'en', 1, 'https://ror.org/031swr525 Mossley Hill Hospital'),
(22570, 'https://ror.org/031tysd23', 'no_lang_code', 1, 'https://ror.org/031tysd23 Coherent (United States)'),
(22571, 'https://ror.org/031vfrf75', 'es', 1, 'https://ror.org/031vfrf75 Universidad Nacional de Piura'),
(22572, 'https://ror.org/031vt9q97', 'en', 1, 'https://ror.org/031vt9q97 BrĆønnĆøysund Register Centre'),
(22573, 'https://ror.org/031xrtf85', 'no_lang_code', 1, 'https://ror.org/031xrtf85 PassivSystems (United Kingdom)'),
(22574, 'https://ror.org/031y39h26', 'es', 1, 'https://ror.org/031y39h26 Universidad del Valle de Orizaba'),
(22575, 'https://ror.org/031y8am81', 'en', 1, 'https://ror.org/031y8am81 Nanjing University of Finance and Economics å—äŗ¬č“¢ē»å¤§å­¦'),
(22576, 'https://ror.org/0325v0r75', 'en', 1, 'https://ror.org/0325v0r75 Faversham Cottage Hospital'),
(22577, 'https://ror.org/03275xe23', 'en', 1, 'https://ror.org/03275xe23 University of Nyala Ų¬Ų§Ł…Ų¹Ų© Ł†ŁŠŲ§Ł„Ų§'),
(22578, 'https://ror.org/032bb5546', 'en', 1, 'https://ror.org/032bb5546 Polis'),
(22579, 'https://ror.org/032bg8m67', 'pt', 1, 'https://ror.org/032bg8m67 Centro UniversitƔrio da Cidade'),
(22580, 'https://ror.org/032bjve71', 'en', 1, 'https://ror.org/032bjve71 Krasnoyarsk Regional Clinical Hospital ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠ°Ń ŠŗŃ€Š°ŠµŠ²Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(22581, 'https://ror.org/032cxyf89', 'no_lang_code', 1, 'https://ror.org/032cxyf89 Maniero Elettronica (Italy)'),
(22582, 'https://ror.org/032e59714', 'en', 1, 'https://ror.org/032e59714 Olsztyn Planetarium and Astronomical Observatory Olsztyńskiego Planetarium i Obserwatorium Astronomicznego'),
(22583, 'https://ror.org/032g46r36', 'en', 1, 'https://ror.org/032g46r36 Renal Research Institute'),
(22584, 'https://ror.org/032h5dn41', 'no_lang_code', 1, 'https://ror.org/032h5dn41 Orthox (United Kingdom)'),
(22585, 'https://ror.org/032j67572', 'no_lang_code', 1, 'https://ror.org/032j67572 Vossloh (Spain)'),
(22586, 'https://ror.org/032kn8622', 'en', 1, 'https://ror.org/032kn8622 Colman Hospital'),
(22587, 'https://ror.org/032qvyh31', 'en', 1, 'https://ror.org/032qvyh31 Goulandris Natural History Museum ĪœĪæĻ…ĻƒĪµĪÆĪæ ΓουλανΓρή Ī¦Ļ…ĻƒĪ¹ĪŗĪ®Ļ‚ Ī™ĻƒĻ„ĪæĻĪÆĪ±Ļ‚'),
(22588, 'https://ror.org/032tej786', 'es', 1, 'https://ror.org/032tej786 Centro Universitario Oparin'),
(22589, 'https://ror.org/032tne230', 'en', 1, 'https://ror.org/032tne230 Society of Wetland Scientists'),
(22590, 'https://ror.org/032wwjz85', 'no_lang_code', 1, 'https://ror.org/032wwjz85 TELINT RTD Consultancy Services (United Kingdom)'),
(22591, 'https://ror.org/032ycrz75', 'no_lang_code', 1, 'https://ror.org/032ycrz75 WiCell'),
(22592, 'https://ror.org/0331kj160', 'en', 1, 'https://ror.org/0331kj160 Pedagogical University Universidade Pedagógica'),
(22593, 'https://ror.org/03323pz98', 'en', 1, 'https://ror.org/03323pz98 Hubei Provincial Women and Children''s Hospital ę¹–åŒ—ēœå¦‡å¹¼äæå„é™¢'),
(22594, 'https://ror.org/03339q147', 'en', 1, 'https://ror.org/03339q147 HƄRKƄMƄEN OBSERVATORIO Taurus Hill Observatory'),
(22595, 'https://ror.org/0333kwv03', 'en', 1, 'https://ror.org/0333kwv03 Millom Hospital'),
(22596, 'https://ror.org/0334dng85', 'no_lang_code', 1, 'https://ror.org/0334dng85 Agroknow (Greece)'),
(22597, 'https://ror.org/0334n7472', 'nl', 1, 'https://ror.org/0334n7472 Stichting Ecobaby'),
(22598, 'https://ror.org/0335q7x18', 'es', 1, 'https://ror.org/0335q7x18 Universidad JosƩ Cecilio del Valle'),
(22599, 'https://ror.org/0335wvc55', 'no_lang_code', 1, 'https://ror.org/0335wvc55 Teledyne Technologies (Canada)'),
(22600, 'https://ror.org/03374t109', 'en', 1, 'https://ror.org/03374t109 Canadian International College Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁ†ŲÆŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(22601, 'https://ror.org/0338q3942', 'en', 1, 'https://ror.org/0338q3942 Akhbar El Yom Academy Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ų®ŲØŲ§Ų± Ų§Ł„ŁŠŁˆŁ…'),
(22602, 'https://ror.org/033a14h05', 'no_lang_code', 1, 'https://ror.org/033a14h05 Ball (Germany)'),
(22603, 'https://ror.org/033dcc869', 'no_lang_code', 1, 'https://ror.org/033dcc869 Nano Liquid Devices (United States)'),
(22604, 'https://ror.org/033fgr632', 'es', 1, 'https://ror.org/033fgr632 Universidad de Ciencias Medicas'),
(22605, 'https://ror.org/033g2f326', 'en', 1, 'https://ror.org/033g2f326 Pima County Juvenile Court'),
(22606, 'https://ror.org/033hgw744', 'en', 1, 'https://ror.org/033hgw744 Hebei Eye Hospital ę²³åŒ—ēœēœ¼ē§‘åŒ»é™¢'),
(22607, 'https://ror.org/033tvp994', 'en', 1, 'https://ror.org/033tvp994 Kenya Methodist University'),
(22608, 'https://ror.org/033vzfc66', 'fr', 1, 'https://ror.org/033vzfc66 Ɖcole Normale SupĆ©rieure de Nouakchott'),
(22609, 'https://ror.org/033wn7604', 'en', 1, 'https://ror.org/033wn7604 Babington Hospital'),
(22610, 'https://ror.org/033xhzd30', 'en', 1, 'https://ror.org/033xhzd30 Tunisia Private University UniversitƩ libre de tunis'),
(22611, 'https://ror.org/033z3xa85', 'en', 1, 'https://ror.org/033z3xa85 Invest Canada'),
(22612, 'https://ror.org/033z99h42', 'en', 1, 'https://ror.org/033z99h42 Montefiore Hospital'),
(22613, 'https://ror.org/0340p7w89', 'en', 1, 'https://ror.org/0340p7w89 Crowborough War Memorial Hospital'),
(22614, 'https://ror.org/0343mqp27', 'en', 1, 'https://ror.org/0343mqp27 The Portland Hospital'),
(22615, 'https://ror.org/03444yt49', 'en', 1, 'https://ror.org/03444yt49 Blackpool Teaching Hospitals NHS Foundation Trust'),
(22616, 'https://ror.org/0344tkb11', 'no_lang_code', 1, 'https://ror.org/0344tkb11 Los Alamos Technical Associates (United States)'),
(22617, 'https://ror.org/0345azg35', 'no_lang_code', 1, 'https://ror.org/0345azg35 Entellexi (Ireland)'),
(22618, 'https://ror.org/0345me483', 'no_lang_code', 1, 'https://ror.org/0345me483 Origo (Iceland)'),
(22619, 'https://ror.org/03463y591', 'es', 1, 'https://ror.org/03463y591 Instituto Gamma'),
(22620, 'https://ror.org/03477ff34', 'en', 1, 'https://ror.org/03477ff34 Drug-Free NC'),
(22621, 'https://ror.org/0347vza26', 'en', 1, 'https://ror.org/0347vza26 Association Canadienne d''Etudes Environnementales Environmental Studies Association of Canada'),
(22622, 'https://ror.org/0348e5q84', 'en', 1, 'https://ror.org/0348e5q84 Society of Indian Automobile Manufacturers'),
(22623, 'https://ror.org/034dk5y08', 'en', 1, 'https://ror.org/034dk5y08 Ocean Discovery Institute'),
(22624, 'https://ror.org/034frgp20', 'no_lang_code', 1, 'https://ror.org/034frgp20 TE Connectivity (United States)'),
(22625, 'https://ror.org/034fwy907', 'no_lang_code', 1, 'https://ror.org/034fwy907 Mountain View Clinical Research'),
(22626, 'https://ror.org/034g8wg77', 'no_lang_code', 1, 'https://ror.org/034g8wg77 Vandurit (Italy)'),
(22627, 'https://ror.org/034hr8t11', 'no_lang_code', 1, 'https://ror.org/034hr8t11 SecurityMatters (Netherlands)'),
(22628, 'https://ror.org/034j4d090', 'no_lang_code', 1, 'https://ror.org/034j4d090 Sentinel Oncology (United Kingdom)'),
(22629, 'https://ror.org/034kn0n30', 'no_lang_code', 1, 'https://ror.org/034kn0n30 Phio Pharmaceuticals (United States)'),
(22630, 'https://ror.org/034msqq35', 'fr', 1, 'https://ror.org/034msqq35 UniversitƩ Sainte-Anne'),
(22631, 'https://ror.org/034mv9n91', 'en', 1, 'https://ror.org/034mv9n91 National Health Information Center NƔrodnƩ Centrum Zdravotnƭckych InformƔciƭ'),
(22632, 'https://ror.org/034p8wt80', 'no_lang_code', 1, 'https://ror.org/034p8wt80 Industrial Solar (Germany)'),
(22633, 'https://ror.org/034pc0d25', 'no_lang_code', 1, 'https://ror.org/034pc0d25 Versarien Technologies (United Kingdom)'),
(22634, 'https://ror.org/034pxmg95', 'no_lang_code', 1, 'https://ror.org/034pxmg95 Silanis Technology (Canada)'),
(22635, 'https://ror.org/034sakr12', 'es', 1, 'https://ror.org/034sakr12 Universidad Anahuac Oaxaca'),
(22636, 'https://ror.org/034taa614', 'no_lang_code', 1, 'https://ror.org/034taa614 MetaSensing (Netherlands)'),
(22637, 'https://ror.org/034vsyd62', 'it', 1, 'https://ror.org/034vsyd62 Ospedale del Tigullio, Presidio Ospedaliero'),
(22638, 'https://ror.org/034zkkc78', 'no_lang_code', 1, 'https://ror.org/034zkkc78 Teikyo Heisei University åøäŗ¬å¹³ęˆå¤§å­¦'),
(22639, 'https://ror.org/034zz5290', 'no_lang_code', 1, 'https://ror.org/034zz5290 Perseus (Belgium)'),
(22640, 'https://ror.org/0350h3282', 'es', 1, 'https://ror.org/0350h3282 Universidad del Norte'),
(22641, 'https://ror.org/0351rxv20', 'en', 1, 'https://ror.org/0351rxv20 Universidad de Ciencias Comerciales University of Commercial Sciences'),
(22642, 'https://ror.org/0352jg241', 'es', 1, 'https://ror.org/0352jg241 Corporación Universitaria Empresarial de Salamanca');
INSERT INTO `rors` VALUES
(22643, 'https://ror.org/0358d0w14', 'en', 1, 'https://ror.org/0358d0w14 Antioch University Santa Barbara'),
(22644, 'https://ror.org/035a99w03', 'fr', 1, 'https://ror.org/035a99w03 Ɖcole Nationale d''Administration et de Magistrature'),
(22645, 'https://ror.org/035bfyh12', 'en', 1, 'https://ror.org/035bfyh12 Canadian Association for Business Economics'),
(22646, 'https://ror.org/035cxwv94', 'en', 1, 'https://ror.org/035cxwv94 South Side Help Center'),
(22647, 'https://ror.org/035cyhw15', 'en', 1, 'https://ror.org/035cyhw15 Changchun University of Chinese Medicine'),
(22648, 'https://ror.org/035e3w906', 'no_lang_code', 1, 'https://ror.org/035e3w906 Mapper Lithography (Netherlands)'),
(22649, 'https://ror.org/035ennw33', 'no_lang_code', 1, 'https://ror.org/035ennw33 Vanchem Performance Chemicals (Canada)'),
(22650, 'https://ror.org/035hn9w86', 'en', 1, 'https://ror.org/035hn9w86 Canadian Society for the Study of Higher Education'),
(22651, 'https://ror.org/035jyty51', 'en', 1, 'https://ror.org/035jyty51 Moscow State University of Geodesy and Cartography Моско́вский Š³Š¾ŃŃƒŠ“а́рственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ геоГе́зии Šø картогра́фии'),
(22652, 'https://ror.org/035mpnm25', 'pt', 1, 'https://ror.org/035mpnm25 Universidade Metropolitana de Santos'),
(22653, 'https://ror.org/035pp4j25', 'fr', 1, 'https://ror.org/035pp4j25 Ɖcole Normale SupĆ©rieure de l''Enseignement Technique de Mohammedia'),
(22654, 'https://ror.org/035r6p857', 'en', 1, 'https://ror.org/035r6p857 Rhode Island League of Cities and Towns'),
(22655, 'https://ror.org/035r9vd46', 'en', 1, 'https://ror.org/035r9vd46 OspidƩal Naomh Fionnbarra St. Finbarr''s Hospital'),
(22656, 'https://ror.org/035rgqg63', 'fr', 1, 'https://ror.org/035rgqg63 Institut National SupƩrieur des Sciences et Techniques d''AbƩchƩ'),
(22657, 'https://ror.org/035s9ab89', 'en', 1, 'https://ror.org/035s9ab89 Canadiana.org'),
(22658, 'https://ror.org/035t09566', 'en', 1, 'https://ror.org/035t09566 Universidad del Turismo University of Tourism'),
(22659, 'https://ror.org/035tcgz88', 'es', 1, 'https://ror.org/035tcgz88 Universidad Marista'),
(22660, 'https://ror.org/035vgnr05', 'no_lang_code', 1, 'https://ror.org/035vgnr05 Nexcis (France)'),
(22661, 'https://ror.org/035xbae69', 'en', 1, 'https://ror.org/035xbae69 Lymington New Forest Hospital'),
(22662, 'https://ror.org/035zn2q74', 'en', 1, 'https://ror.org/035zn2q74 Pir Mehr Ali Shah Arid Agriculture University پیر مہر Ų¹Ł„ŪŒ ؓاہ ŲØŲ§Ų±Ų§Ł†ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(22663, 'https://ror.org/03618vx64', 'pt', 1, 'https://ror.org/03618vx64 Centro UniversitĆ”rio Serra dos ƓrgĆ£os'),
(22664, 'https://ror.org/0364c8r59', 'no_lang_code', 1, 'https://ror.org/0364c8r59 Chubu Gakuin University äø­éƒØå­¦é™¢å¤§å­¦'),
(22665, 'https://ror.org/03673ew24', 'lv', 1, 'https://ror.org/03673ew24 Tehnoloģiju Attīstības Forums'),
(22666, 'https://ror.org/0367eqd42', 'es', 1, 'https://ror.org/0367eqd42 Instituto Centroamericano de Administración Pública'),
(22667, 'https://ror.org/0368bwa14', 'en', 1, 'https://ror.org/0368bwa14 West Lane Hospital'),
(22668, 'https://ror.org/03693e022', 'es', 1, 'https://ror.org/03693e022 Universidad Iberoamericana del Ecuador'),
(22669, 'https://ror.org/036b2ns30', 'es', 1, 'https://ror.org/036b2ns30 Catholic University of Bolivia Universidad Católica Bolivia San Pablo'),
(22670, 'https://ror.org/036bprp03', 'en', 1, 'https://ror.org/036bprp03 Ridgeview'),
(22671, 'https://ror.org/036dhjm48', 'no_lang_code', 1, 'https://ror.org/036dhjm48 Pars Makina (Turkey)'),
(22672, 'https://ror.org/036dpa939', 'en', 1, 'https://ror.org/036dpa939 Dawlish Community Hospital'),
(22673, 'https://ror.org/036f1as09', 'es', 1, 'https://ror.org/036f1as09 Universidad EvangƩlica Boliviana'),
(22674, 'https://ror.org/036gt0m92', 'en', 1, 'https://ror.org/036gt0m92 Jean Piaget University of Cape Verde Universidade Jean Piaget de Cabo Verde'),
(22675, 'https://ror.org/036h2g521', 'no_lang_code', 1, 'https://ror.org/036h2g521 Tony Gee and Partners'),
(22676, 'https://ror.org/036j17m86', 'no_lang_code', 1, 'https://ror.org/036j17m86 Soft dB (Canada)'),
(22677, 'https://ror.org/036jygv32', 'en', 1, 'https://ror.org/036jygv32 Supreme Council of Antiquities'),
(22678, 'https://ror.org/036m3h813', 'en', 1, 'https://ror.org/036m3h813 University of Ngozi UniversitƩ de Ngozi'),
(22679, 'https://ror.org/036nzz613', 'en', 1, 'https://ror.org/036nzz613 Places For People'),
(22680, 'https://ror.org/036p7xd52', 'en', 1, 'https://ror.org/036p7xd52 West Berkshire Community Hospital'),
(22681, 'https://ror.org/036qcnh52', 'en', 1, 'https://ror.org/036qcnh52 Education Northwest'),
(22682, 'https://ror.org/036t2wx59', 'it', 1, 'https://ror.org/036t2wx59 Osservatorio Astronomico di Monte Agliale'),
(22683, 'https://ror.org/036tx2n48', 'en', 1, 'https://ror.org/036tx2n48 Edenbridge and District War Memorial Hospital'),
(22684, 'https://ror.org/036x6w630', 'en', 1, 'https://ror.org/036x6w630 Shri Mata Vaishno Devi University ą¤¶ą„ą¤°ą„€ माता ą¤µą„ˆą¤·ą„ą¤£ą„‹ ą¤¦ą„‡ą¤µą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(22685, 'https://ror.org/036yfjc53', 'en', 1, 'https://ror.org/036yfjc53 Nassau Alcohol Crime Drug Abatement Coalition'),
(22686, 'https://ror.org/036z4j470', 'no_lang_code', 1, 'https://ror.org/036z4j470 Systems, Applications & Products in Data Processing (Switzerland)'),
(22687, 'https://ror.org/0370r0855', 'en', 1, 'https://ror.org/0370r0855 Prevention Links'),
(22688, 'https://ror.org/0371t1780', 'es', 1, 'https://ror.org/0371t1780 Universidad Nacional de ItapĆŗa'),
(22689, 'https://ror.org/0372scc98', 'no_lang_code', 1, 'https://ror.org/0372scc98 Supply Network Shannon (Ireland)'),
(22690, 'https://ror.org/0372w8x42', 'en', 1, 'https://ror.org/0372w8x42 Bideford Medical Centre'),
(22691, 'https://ror.org/03758j340', 'es', 1, 'https://ror.org/03758j340 Universidad Privada Boliviana'),
(22692, 'https://ror.org/0376t7t08', 'sv', 1, 'https://ror.org/0376t7t08 SƶdertƤlje Hospital SƶdertƤlje Sjukhus'),
(22693, 'https://ror.org/03774pf85', 'en', 1, 'https://ror.org/03774pf85 Fareham Community Hospital'),
(22694, 'https://ror.org/0377t1328', 'en', 1, 'https://ror.org/0377t1328 European Southern Observatory'),
(22695, 'https://ror.org/03784bx86', 'en', 1, 'https://ror.org/03784bx86 Zhuhai Hospital of Integrated Traditional Chinese and Western Medicine ē ęµ·åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(22696, 'https://ror.org/03791dn70', 'en', 1, 'https://ror.org/03791dn70 Regional Maritime University'),
(22697, 'https://ror.org/0379k6g72', 'en', 1, 'https://ror.org/0379k6g72 Avon and Wiltshire Mental Health Partnership NHS Trust'),
(22698, 'https://ror.org/037ampg77', 'en', 1, 'https://ror.org/037ampg77 Office of Science & Technology Austria'),
(22699, 'https://ror.org/037bdd431', 'en', 1, 'https://ror.org/037bdd431 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(22700, 'https://ror.org/037bs9x45', 'no_lang_code', 1, 'https://ror.org/037bs9x45 Sivers IMA (Sweden)'),
(22701, 'https://ror.org/037f2xv36', 'en', 1, 'https://ror.org/037f2xv36 Buckinghamshire Healthcare NHS Trust'),
(22702, 'https://ror.org/037fxwm47', 'no_lang_code', 1, 'https://ror.org/037fxwm47 Iron Mountain (United States)'),
(22703, 'https://ror.org/037fz4341', 'en', 1, 'https://ror.org/037fz4341 Moseley Hall Hospital'),
(22704, 'https://ror.org/037h6n733', 'es', 1, 'https://ror.org/037h6n733 Corporación Universitaria Regional del Caribe'),
(22705, 'https://ror.org/037hxym60', 'de', 1, 'https://ror.org/037hxym60 Evangelisches Krankenhaus Bethesda Mƶnchengladbach'),
(22706, 'https://ror.org/037k3aw68', 'es', 1, 'https://ror.org/037k3aw68 Universidad Internacional de las AmƩricas'),
(22707, 'https://ror.org/037ksca52', 'no_lang_code', 1, 'https://ror.org/037ksca52 PerkinElmer (Finland)'),
(22708, 'https://ror.org/037mdcp74', 'no_lang_code', 1, 'https://ror.org/037mdcp74 NIS (United Kingdom)'),
(22709, 'https://ror.org/037mvh302', 'en', 1, 'https://ror.org/037mvh302 Canadian Association for the Study of Adult Education'),
(22710, 'https://ror.org/037p78440', 'no_lang_code', 1, 'https://ror.org/037p78440 Rups Consultancy and Project Management'),
(22711, 'https://ror.org/037pkxm09', 'en', 1, 'https://ror.org/037pkxm09 Kyungnam University ź²½ė‚ØėŒ€ķ•™źµ'),
(22712, 'https://ror.org/037xpb040', 'en', 1, 'https://ror.org/037xpb040 Sanford Medical Center'),
(22713, 'https://ror.org/037y00t77', 'en', 1, 'https://ror.org/037y00t77 Milton Keynes Council'),
(22714, 'https://ror.org/037ya9w12', 'hu', 1, 'https://ror.org/037ya9w12 Állattenyésztési és TakarmÔnyozÔsi Kutatóintézet'),
(22715, 'https://ror.org/0381mdg49', 'no_lang_code', 1, 'https://ror.org/0381mdg49 XiO Photonics (Netherlands)'),
(22716, 'https://ror.org/03836f632', 'pt', 1, 'https://ror.org/03836f632 Centro UniversitƔrio do Planalto de AraxƔ'),
(22717, 'https://ror.org/0384gj524', 'no_lang_code', 1, 'https://ror.org/0384gj524 Diazyme (United States)'),
(22718, 'https://ror.org/0384p7414', 'es', 1, 'https://ror.org/0384p7414 Instituto Universitario de la PolicĆ­a Federal Argentina'),
(22719, 'https://ror.org/0385et328', 'no_lang_code', 1, 'https://ror.org/0385et328 R2M Solution (Italy)'),
(22720, 'https://ror.org/03862pz95', 'no_lang_code', 1, 'https://ror.org/03862pz95 Trellis Bioscience (United States)'),
(22721, 'https://ror.org/038724806', 'en', 1, 'https://ror.org/038724806 University of Yangon į€›į€”į€ŗį€€į€Æį€”į€ŗį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(22722, 'https://ror.org/0387p5v08', 'en', 1, 'https://ror.org/0387p5v08 Research Association for Tunnels and Transport Facilities Studiengesellschaft für Tunnel und Verkehrsanlagen'),
(22723, 'https://ror.org/03891kb88', 'en', 1, 'https://ror.org/03891kb88 Tanzania Youth Alliance'),
(22724, 'https://ror.org/038ajm817', 'fr', 1, 'https://ror.org/038ajm817 UniversitƩ Arabe des Sciences'),
(22725, 'https://ror.org/038bgqv50', 'es', 1, 'https://ror.org/038bgqv50 Universidad Laica Vicente Rocafuerte de Guayaquil'),
(22726, 'https://ror.org/038cq1h45', 'en', 1, 'https://ror.org/038cq1h45 Khartoum International Institute for Arabic Languague معهد Ų§Ł„Ų®Ų±Ų·ŁˆŁ… Ų§Ł„ŲÆŁˆŁ„ŁŠ للغة Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(22727, 'https://ror.org/038d7xb21', 'es', 1, 'https://ror.org/038d7xb21 Universidad ICEL'),
(22728, 'https://ror.org/038ddjp72', 'en', 1, 'https://ror.org/038ddjp72 State University of Vale do AcaraĆŗ Universidade Estadual Vale do AcaraĆŗ'),
(22729, 'https://ror.org/038h1j843', 'no_lang_code', 1, 'https://ror.org/038h1j843 SGG (Italy)'),
(22730, 'https://ror.org/038j0b276', 'es', 1, 'https://ror.org/038j0b276 Universidad Adventista de Chile'),
(22731, 'https://ror.org/038jdep47', 'en', 1, 'https://ror.org/038jdep47 Kyushu Nutrition Welfare University ä¹å·žę „é¤Šē¦ē„‰å¤§å­¦'),
(22732, 'https://ror.org/038k3z155', 'no_lang_code', 1, 'https://ror.org/038k3z155 RDM Group (United Kingdom)'),
(22733, 'https://ror.org/038m8ky73', 'no_lang_code', 1, 'https://ror.org/038m8ky73 Promau Engineering (Italy)'),
(22734, 'https://ror.org/038n50j48', 'en', 1, 'https://ror.org/038n50j48 Altan Observatory'),
(22735, 'https://ror.org/038n73266', 'en', 1, 'https://ror.org/038n73266 St Michael''s Hospital'),
(22736, 'https://ror.org/038p55355', 'de', 1, 'https://ror.org/038p55355 Altonaer Kinderkrankenhaus'),
(22737, 'https://ror.org/038q56410', 'fr', 1, 'https://ror.org/038q56410 Société de Protection des Forêts contre les Insectes et Maladies'),
(22738, 'https://ror.org/038qg8k28', 'no_lang_code', 1, 'https://ror.org/038qg8k28 Prologia (France)'),
(22739, 'https://ror.org/038r0hg73', 'en', 1, 'https://ror.org/038r0hg73 Environmental and Sustainable Construction Association'),
(22740, 'https://ror.org/038s37067', 'pt', 1, 'https://ror.org/038s37067 Museu de Arte Pré-Histórica de Mação'),
(22741, 'https://ror.org/038s91v75', 'en', 1, 'https://ror.org/038s91v75 L''UniversitƩ du Maine Ơ Fort Kent University of Maine at Fort Kent'),
(22742, 'https://ror.org/038t6d126', 'es', 1, 'https://ror.org/038t6d126 Instituto Universitario AeronƔutico'),
(22743, 'https://ror.org/038tfyw56', 'no_lang_code', 1, 'https://ror.org/038tfyw56 Sequoyah (Belgium)'),
(22744, 'https://ror.org/038thw008', 'en', 1, 'https://ror.org/038thw008 Fujian Provincial People''s Hospital ē¦å»ŗēœäŗŗę°‘åŒ»é™¢'),
(22745, 'https://ror.org/038tkhb28', 'no_lang_code', 1, 'https://ror.org/038tkhb28 MicronOptics (United States)'),
(22746, 'https://ror.org/038zxea36', 'en', 1, 'https://ror.org/038zxea36 Chelsea and Westminster Hospital'),
(22747, 'https://ror.org/0391kcn80', 'no_lang_code', 1, 'https://ror.org/0391kcn80 Zentrum für Rationelle Energieanwendung und Umwelt (Germany)'),
(22748, 'https://ror.org/039207457', 'es', 1, 'https://ror.org/039207457 Centro Universitario Hispano Mexicano'),
(22749, 'https://ror.org/0392yzq14', 'no_lang_code', 1, 'https://ror.org/0392yzq14 Inanna Publications and Education (Canada)'),
(22750, 'https://ror.org/0393pnh14', 'en', 1, 'https://ror.org/0393pnh14 Skyline High School'),
(22751, 'https://ror.org/0393z2b10', 'en', 1, 'https://ror.org/0393z2b10 Institute of Fisheries and Aquaculture'),
(22752, 'https://ror.org/039401462', 'en', 1, 'https://ror.org/039401462 Yuxian People''s Hospital ē›‚åŽæäŗŗę°‘åŒ»é™¢'),
(22753, 'https://ror.org/0394e4913', 'no_lang_code', 1, 'https://ror.org/0394e4913 Silicon Radar (Germany)'),
(22754, 'https://ror.org/03951zg45', 'es', 1, 'https://ror.org/03951zg45 Universidad Nacional Experimental Simón Rodríguez'),
(22755, 'https://ror.org/0395ge265', 'en', 1, 'https://ror.org/0395ge265 Weybridge Community Hospital'),
(22756, 'https://ror.org/0395v5z30', 'en', 1, 'https://ror.org/0395v5z30 Austrian Institute of Spatial Planning'),
(22757, 'https://ror.org/0396gjt51', 'no_lang_code', 1, 'https://ror.org/0396gjt51 Volterra (United Kingdom)'),
(22758, 'https://ror.org/03979gq82', 'es', 1, 'https://ror.org/03979gq82 Universidad Fundepos'),
(22759, 'https://ror.org/03984t928', 'en', 1, 'https://ror.org/03984t928 Science Health Allied Research Education'),
(22760, 'https://ror.org/0398jd975', 'en', 1, 'https://ror.org/0398jd975 IMM Graduate School of Marketing'),
(22761, 'https://ror.org/0399cww89', 'no_lang_code', 1, 'https://ror.org/0399cww89 Toppan (United Kingdom)'),
(22762, 'https://ror.org/0399msg87', 'no_lang_code', 1, 'https://ror.org/0399msg87 Grammer (Germany)'),
(22763, 'https://ror.org/0399zkh42', 'en', 1, 'https://ror.org/0399zkh42 Wuxi No.2 People''s Hospital ę— é””åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(22764, 'https://ror.org/039ardd72', 'no_lang_code', 1, 'https://ror.org/039ardd72 Xintek (United States)'),
(22765, 'https://ror.org/039b6fr04', 'no_lang_code', 1, 'https://ror.org/039b6fr04 SEA-invest (France)'),
(22766, 'https://ror.org/039br8e21', 'fr', 1, 'https://ror.org/039br8e21 Topos Aquitaine'),
(22767, 'https://ror.org/039deg344', 'no_lang_code', 1, 'https://ror.org/039deg344 OJ-Bio (United Kingdom)'),
(22768, 'https://ror.org/039e57198', 'no_lang_code', 1, 'https://ror.org/039e57198 XSB (United States)'),
(22769, 'https://ror.org/039emag51', 'es', 1, 'https://ror.org/039emag51 Autonomous University of Fresnillo Universidad Autónoma de Fresnillo'),
(22770, 'https://ror.org/039f5pg25', 'it', 1, 'https://ror.org/039f5pg25 Azienda Sanitaria Locale Alessandria'),
(22771, 'https://ror.org/039fm7e11', 'en', 1, 'https://ror.org/039fm7e11 Universidad Mayor Real y Pontificia San Francisco Xavier de Chuquisaca University of Saint Francis Xavier'),
(22772, 'https://ror.org/039g8ab81', 'en', 1, 'https://ror.org/039g8ab81 Fourth People''s Hospital of Shenzhen ę·±åœ³åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(22773, 'https://ror.org/039gx9203', 'en', 1, 'https://ror.org/039gx9203 Navarro College'),
(22774, 'https://ror.org/039he1k03', 'no_lang_code', 1, 'https://ror.org/039he1k03 Nanoparticle BioChem (United States)'),
(22775, 'https://ror.org/039j29a96', 'no_lang_code', 1, 'https://ror.org/039j29a96 Plastic Electronics (Netherlands)'),
(22776, 'https://ror.org/039je2z22', 'no_lang_code', 1, 'https://ror.org/039je2z22 PathoFinder (Netherlands)'),
(22777, 'https://ror.org/039jmcx36', 'no_lang_code', 1, 'https://ror.org/039jmcx36 CsillagÔszati és FöldtudomÔnyi Kutatóközpont Konkoly Thege Miklós CsillagÔszati Intézet Konkoly Observatory'),
(22778, 'https://ror.org/039n74540', 'es', 1, 'https://ror.org/039n74540 Centro Universitario de Occidente'),
(22779, 'https://ror.org/039neah40', 'en', 1, 'https://ror.org/039neah40 Practical Action'),
(22780, 'https://ror.org/039nqq780', 'no_lang_code', 1, 'https://ror.org/039nqq780 Virtualware Group (Spain)'),
(22781, 'https://ror.org/039pch476', 'en', 1, 'https://ror.org/039pch476 Josai International University åŸŽč„æå›½éš›å¤§å­¦'),
(22782, 'https://ror.org/039pz2z06', 'en', 1, 'https://ror.org/039pz2z06 Norwalk Community College'),
(22783, 'https://ror.org/039rc8x03', 'no_lang_code', 1, 'https://ror.org/039rc8x03 Polgenix (United States)'),
(22784, 'https://ror.org/039s4ex98', 'en', 1, 'https://ror.org/039s4ex98 Patrick Stead Hospital'),
(22785, 'https://ror.org/039sdwk42', 'en', 1, 'https://ror.org/039sdwk42 Leominster Community Hospital'),
(22786, 'https://ror.org/039szfp14', 'en', 1, 'https://ror.org/039szfp14 Ranken Technical College'),
(22787, 'https://ror.org/03a0kcr96', 'no_lang_code', 1, 'https://ror.org/03a0kcr96 Silverchair Information Systems (United States)'),
(22788, 'https://ror.org/03a0s3r85', 'no_lang_code', 1, 'https://ror.org/03a0s3r85 Ziena Optimization (United States)'),
(22789, 'https://ror.org/03a0zrg31', 'fr', 1, 'https://ror.org/03a0zrg31 UniversitĆ© Internationale de Tunis الجامعة Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„ŲŖŁˆŁ†Ų³'),
(22790, 'https://ror.org/03a17f132', 'no_lang_code', 1, 'https://ror.org/03a17f132 Light Chain Bioscience (Switzerland)'),
(22791, 'https://ror.org/03a1a6r50', 'no_lang_code', 1, 'https://ror.org/03a1a6r50 Trasys International (Belgium)'),
(22792, 'https://ror.org/03a42q045', 'en', 1, 'https://ror.org/03a42q045 Nara University å„ˆč‰Æå¤§å­¦'),
(22793, 'https://ror.org/03a5kqj07', 'pt', 1, 'https://ror.org/03a5kqj07 Centro UniversitƔrio Unirondon'),
(22794, 'https://ror.org/03a5x6z77', 'es', 1, 'https://ror.org/03a5x6z77 Universidad Nacional de Loja'),
(22795, 'https://ror.org/03a7vht50', 'no_lang_code', 1, 'https://ror.org/03a7vht50 Grenson (United Kingdom)'),
(22796, 'https://ror.org/03a8wcj58', 'en', 1, 'https://ror.org/03a8wcj58 Research Circle Associates'),
(22797, 'https://ror.org/03a98ms41', 'no_lang_code', 1, 'https://ror.org/03a98ms41 New Dawn Enterprises (Canada)'),
(22798, 'https://ror.org/03aa02381', 'en', 1, 'https://ror.org/03aa02381 Bulgarian Association of Software Companies'),
(22799, 'https://ror.org/03aam4v69', 'pt', 1, 'https://ror.org/03aam4v69 Universidade Colinas de BoƩ'),
(22800, 'https://ror.org/03aawc123', 'es', 1, 'https://ror.org/03aawc123 Fundación Universitaria del Espinal'),
(22801, 'https://ror.org/03acae918', 'en', 1, 'https://ror.org/03acae918 Hitchin Hospital'),
(22802, 'https://ror.org/03ad1cn37', 'es', 1, 'https://ror.org/03ad1cn37 Universidad Nacional Pedro Henrƭquez UreƱa'),
(22803, 'https://ror.org/03af1tj71', 'en', 1, 'https://ror.org/03af1tj71 Queen Charlotte''s and Chelsea Hospital'),
(22804, 'https://ror.org/03afd0v14', 'en', 1, 'https://ror.org/03afd0v14 Orpington Hospital'),
(22805, 'https://ror.org/03ag0xf08', 'en', 1, 'https://ror.org/03ag0xf08 Bassano Bresciano Astronomical Observatory Osservatorio Astronomico di Bassano Bresciano'),
(22806, 'https://ror.org/03agge938', 'no_lang_code', 1, 'https://ror.org/03agge938 Smith & Nephew (United Kingdom)'),
(22807, 'https://ror.org/03aqsxt86', 'es', 1, 'https://ror.org/03aqsxt86 Universidad Creativa'),
(22808, 'https://ror.org/03arr3t82', 'fr', 1, 'https://ror.org/03arr3t82 Institut Sous-RƩgional de Statistique et d''Economie AppliquƩe'),
(22809, 'https://ror.org/03atgj124', 'en', 1, 'https://ror.org/03atgj124 World Obesity Federation'),
(22810, 'https://ror.org/03aynys49', 'en', 1, 'https://ror.org/03aynys49 Southwest Texas Junior College'),
(22811, 'https://ror.org/03b0ym704', 'en', 1, 'https://ror.org/03b0ym704 Tokyo Keizai University ę±äŗ¬ēµŒęøˆå¤§å­¦'),
(22812, 'https://ror.org/03b135v89', 'en', 1, 'https://ror.org/03b135v89 Moscow Regional Psychiatry Hospital No.5 ŠŸŃŠøŃ…ŠøŠ°Ń‚Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–5'),
(22813, 'https://ror.org/03b243z64', 'no_lang_code', 1, 'https://ror.org/03b243z64 Pellet Productions (United States)'),
(22814, 'https://ror.org/03b5r4s12', 'en', 1, 'https://ror.org/03b5r4s12 Victoria Central Hospital'),
(22815, 'https://ror.org/03b7kxh09', 'en', 1, 'https://ror.org/03b7kxh09 Balearic Islands Coastal Observing and Forecasting System'),
(22816, 'https://ror.org/03b80ms04', 'es', 1, 'https://ror.org/03b80ms04 Universidad Jean Piaget'),
(22817, 'https://ror.org/03b80zh39', 'en', 1, 'https://ror.org/03b80zh39 Saskatchewan Science Centre'),
(22818, 'https://ror.org/03b9y4e65', 'en', 1, 'https://ror.org/03b9y4e65 Abdul Wali Khan University Mardan'),
(22819, 'https://ror.org/03ba09a49', 'es', 1, 'https://ror.org/03ba09a49 Fundación Tecnológica Autónoma de BogotÔ'),
(22820, 'https://ror.org/03bd77x85', 'no_lang_code', 1, 'https://ror.org/03bd77x85 Raisio (Finland)'),
(22821, 'https://ror.org/03befxt38', 'en', 1, 'https://ror.org/03befxt38 Everest University'),
(22822, 'https://ror.org/03beypq35', 'es', 1, 'https://ror.org/03beypq35 Universidad HernƔn CortƩs'),
(22823, 'https://ror.org/03bhas793', 'en', 1, 'https://ror.org/03bhas793 Youth Development'),
(22824, 'https://ror.org/03bj1fs86', 'es', 1, 'https://ror.org/03bj1fs86 Institución Universitaria Colombo Americana'),
(22825, 'https://ror.org/03bjqrv17', 'no_lang_code', 1, 'https://ror.org/03bjqrv17 SeaOwl Technology Solutions (France)'),
(22826, 'https://ror.org/03bm5es30', 'en', 1, 'https://ror.org/03bm5es30 University of Dongola Ų¬Ų§Ł…Ų¹Ų© دنقلا'),
(22827, 'https://ror.org/03bmvpf93', 'no_lang_code', 1, 'https://ror.org/03bmvpf93 Tesco (United Kingdom)'),
(22828, 'https://ror.org/03bnqh738', 'en', 1, 'https://ror.org/03bnqh738 Castleford, Normanton and District Hospital'),
(22829, 'https://ror.org/03bpj1h80', 'en', 1, 'https://ror.org/03bpj1h80 Centre for Community Based Research'),
(22830, 'https://ror.org/03bq93t15', 'no_lang_code', 1, 'https://ror.org/03bq93t15 NanoVir (United States)'),
(22831, 'https://ror.org/03bvdp262', 'en', 1, 'https://ror.org/03bvdp262 Farrington High School'),
(22832, 'https://ror.org/03bwvnd45', 'no_lang_code', 1, 'https://ror.org/03bwvnd45 TecPart Verband Technische Kunststoff-Produkte e.V.'),
(22833, 'https://ror.org/03byjr489', 'pt', 1, 'https://ror.org/03byjr489 Centro UniversitƔrio Cesumar'),
(22834, 'https://ror.org/03bzmm215', 'pt', 1, 'https://ror.org/03bzmm215 Centro UniversitÔrio da Fundação Educacional Guaxupé'),
(22835, 'https://ror.org/03c0n7870', 'es', 1, 'https://ror.org/03c0n7870 Universidad de TecnologĆ­a y Comercio'),
(22836, 'https://ror.org/03c1bg807', 'pt', 1, 'https://ror.org/03c1bg807 Centro UniversitƔrio de Votuporanga'),
(22837, 'https://ror.org/03c4aza49', 'en', 1, 'https://ror.org/03c4aza49 HRH Princess Christian''s Hospital'),
(22838, 'https://ror.org/03c4na604', 'no_lang_code', 1, 'https://ror.org/03c4na604 Soliani Emc (Italy)'),
(22839, 'https://ror.org/03c5e1619', 'en', 1, 'https://ror.org/03c5e1619 Yasuda Women''s University 安田儳子大学'),
(22840, 'https://ror.org/03c8a9g31', 'no_lang_code', 1, 'https://ror.org/03c8a9g31 Power Lake (Sweden)'),
(22841, 'https://ror.org/03c8kha54', 'en', 1, 'https://ror.org/03c8kha54 Spire Hartswood Hospital'),
(22842, 'https://ror.org/03c8qq315', 'en', 1, 'https://ror.org/03c8qq315 Tver State University Тверской Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(22843, 'https://ror.org/03c922h13', 'no_lang_code', 1, 'https://ror.org/03c922h13 Xerox (United Kingdom)'),
(22844, 'https://ror.org/03c9fpk55', 'en', 1, 'https://ror.org/03c9fpk55 Korea National University of Education ķ•œźµ­źµģ›ėŒ€ķ•™źµ'),
(22845, 'https://ror.org/03cacct79', 'no', 1, 'https://ror.org/03cacct79 Seniornett'),
(22846, 'https://ror.org/03caevp73', 'en', 1, 'https://ror.org/03caevp73 Renacres Hospital'),
(22847, 'https://ror.org/03cdvzq70', 'no_lang_code', 1, 'https://ror.org/03cdvzq70 Kƶrber (Germany)'),
(22848, 'https://ror.org/03ceam220', 'pt', 1, 'https://ror.org/03ceam220 Museu da PresidĆŖncia da RepĆŗblica'),
(22849, 'https://ror.org/03cej9w90', 'en', 1, 'https://ror.org/03cej9w90 Wokingham Hospital'),
(22850, 'https://ror.org/03cgbtn12', 'en', 1, 'https://ror.org/03cgbtn12 Pyay Technological University į€•į€¼į€Šį€ŗį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(22851, 'https://ror.org/03cgz8503', 'no_lang_code', 1, 'https://ror.org/03cgz8503 Wardell Armstrong (United Kingdom)'),
(22852, 'https://ror.org/03chmh893', 'es', 1, 'https://ror.org/03chmh893 Universidad Santa Fe'),
(22853, 'https://ror.org/03cj80e19', 'es', 1, 'https://ror.org/03cj80e19 Universitario Bauhaus'),
(22854, 'https://ror.org/03cjabw52', 'es', 1, 'https://ror.org/03cjabw52 Institución Universitaria Bellas Artes y Ciencias de Bolívar'),
(22855, 'https://ror.org/03ckrc057', 'no_lang_code', 1, 'https://ror.org/03ckrc057 Norsk Hydro (Sweden)'),
(22856, 'https://ror.org/03cn75x12', 'no_lang_code', 1, 'https://ror.org/03cn75x12 Elwyn'),
(22857, 'https://ror.org/03cqn2k13', 'es', 1, 'https://ror.org/03cqn2k13 Universidad del Tacana'),
(22858, 'https://ror.org/03cr9qq80', 'es', 1, 'https://ror.org/03cr9qq80 Instituto Superior de Educación Rural'),
(22859, 'https://ror.org/03cssbw37', 'no_lang_code', 1, 'https://ror.org/03cssbw37 Parallel Consulting (United States)'),
(22860, 'https://ror.org/03ct1tp35', 'no_lang_code', 1, 'https://ror.org/03ct1tp35 Progressive Energy (United Kingdom)'),
(22861, 'https://ror.org/03ctf4s64', 'no_lang_code', 1, 'https://ror.org/03ctf4s64 Safoso (Switzerland)'),
(22862, 'https://ror.org/03cx5n871', 'no_lang_code', 1, 'https://ror.org/03cx5n871 OZ Biosciences (France)'),
(22863, 'https://ror.org/03cyqfb07', 'sk', 1, 'https://ror.org/03cyqfb07 TekovskÔ HvezdÔreň, TekovskÔ hvezdÔreň v Leviciach'),
(22864, 'https://ror.org/03cyvf362', 'no_lang_code', 1, 'https://ror.org/03cyvf362 Immune Regulation (United Kingdom)'),
(22865, 'https://ror.org/03cze4377', 'no_lang_code', 1, 'https://ror.org/03cze4377 Power Curbers (United States)'),
(22866, 'https://ror.org/03d1dz577', 'no_lang_code', 1, 'https://ror.org/03d1dz577 WSP Sverige (Sweden)'),
(22867, 'https://ror.org/03d47z838', 'en', 1, 'https://ror.org/03d47z838 National Observatory Observatório Nacional'),
(22868, 'https://ror.org/03d6w0229', 'es', 1, 'https://ror.org/03d6w0229 Universidad JosƩ Antonio PƔez'),
(22869, 'https://ror.org/03d7x2a93', 'no_lang_code', 1, 'https://ror.org/03d7x2a93 Tritech Group (United Kingdom)'),
(22870, 'https://ror.org/03d8nc804', 'en', 1, 'https://ror.org/03d8nc804 Tantramar Wetlands Centre'),
(22871, 'https://ror.org/03d8xva75', 'en', 1, 'https://ror.org/03d8xva75 Dilke Memorial Hospital'),
(22872, 'https://ror.org/03daw3m97', 'no_lang_code', 1, 'https://ror.org/03daw3m97 Schlumberger (Netherlands)'),
(22873, 'https://ror.org/03db1hz44', 'es', 1, 'https://ror.org/03db1hz44 Universidad Católica San Pablo'),
(22874, 'https://ror.org/03db8ra47', 'en', 1, 'https://ror.org/03db8ra47 Association for Canadian and QuĆ©bec Literatures L’Association des littĆ©ratures canadiennes et quĆ©bĆ©coise'),
(22875, 'https://ror.org/03dbt2x59', 'no_lang_code', 1, 'https://ror.org/03dbt2x59 Villeroy & Boch (Germany)'),
(22876, 'https://ror.org/03ddeer04', 'en', 1, 'https://ror.org/03ddeer04 University of Qom دانؓگاه قم'),
(22877, 'https://ror.org/03ddhqc48', 'no_lang_code', 1, 'https://ror.org/03ddhqc48 Q Sphere (United Kingdom)'),
(22878, 'https://ror.org/03ddtra52', 'en', 1, 'https://ror.org/03ddtra52 Mikocheni Agricultural Research Institute'),
(22879, 'https://ror.org/03deqdj72', 'es', 1, 'https://ror.org/03deqdj72 Universidad de San MartĆ­n de Porres, University of San MartĆ­n de Porres'),
(22880, 'https://ror.org/03df6me86', 'en', 1, 'https://ror.org/03df6me86 West View Integrated Care Centre'),
(22881, 'https://ror.org/03dnnq935', 'en', 1, 'https://ror.org/03dnnq935 Antioch University Los Angeles'),
(22882, 'https://ror.org/03dp0vf82', 'no_lang_code', 1, 'https://ror.org/03dp0vf82 Oxford BioMedica (United Kingdom)'),
(22883, 'https://ror.org/03dpd7s60', 'no_lang_code', 1, 'https://ror.org/03dpd7s60 Trustor Precision Components (Sweden)'),
(22884, 'https://ror.org/03dqd5c54', 'en', 1, 'https://ror.org/03dqd5c54 Telecommunications Policy Research Conference'),
(22885, 'https://ror.org/03dr5vm44', 'en', 1, 'https://ror.org/03dr5vm44 Aconcagua University Universidad del Aconcagua'),
(22886, 'https://ror.org/03dt5t405', 'fr', 1, 'https://ror.org/03dt5t405 Ɖcole SupĆ©rieure d''Architecture d''IntĆ©rieur'),
(22887, 'https://ror.org/03dw0z746', 'en', 1, 'https://ror.org/03dw0z746 Halstead Hospital'),
(22888, 'https://ror.org/03dwthp43', 'no_lang_code', 1, 'https://ror.org/03dwthp43 Vascular Pharmaceuticals (United States)'),
(22889, 'https://ror.org/03dww3s84', 'en', 1, 'https://ror.org/03dww3s84 Springfield Hospital'),
(22890, 'https://ror.org/03dy61e04', 'no_lang_code', 1, 'https://ror.org/03dy61e04 ScienCentral (United States)'),
(22891, 'https://ror.org/03e207173', 'en', 1, 'https://ror.org/03e207173 Hunan Children''s Hospital ę¹–å—ēœå„æē«„åŒ»é™¢'),
(22892, 'https://ror.org/03e398g80', 'es', 1, 'https://ror.org/03e398g80 Centro Universitario Americano del Estado de Morelos'),
(22893, 'https://ror.org/03e47dk66', 'es', 1, 'https://ror.org/03e47dk66 Universidad Argentina John F. Kennedy'),
(22894, 'https://ror.org/03e4g1593', 'en', 1, 'https://ror.org/03e4g1593 West Hertfordshire Hospitals NHS Trust'),
(22895, 'https://ror.org/03e4qp353', 'en', 1, 'https://ror.org/03e4qp353 Sylvia Lawry Centre for Multiple Sclerosis Research'),
(22896, 'https://ror.org/03e4w4b74', 'no_lang_code', 1, 'https://ror.org/03e4w4b74 OptTek Systems (United States)'),
(22897, 'https://ror.org/03e5ggr08', 'no_lang_code', 1, 'https://ror.org/03e5ggr08 Kelme (Spain)'),
(22898, 'https://ror.org/03e79yx85', 'es', 1, 'https://ror.org/03e79yx85 Instituto Tolimense de Formación Técnica Profesional'),
(22899, 'https://ror.org/03e7f5c12', 'fr', 1, 'https://ror.org/03e7f5c12 Institut Universitaire de la CƓte'),
(22900, 'https://ror.org/03ea76440', 'fr', 1, 'https://ror.org/03ea76440 UniversitƩ Libre de Kinshasa'),
(22901, 'https://ror.org/03ee58b76', 'en', 1, 'https://ror.org/03ee58b76 Kellokosken Sairaala Kellokoski Hospital'),
(22902, 'https://ror.org/03efy3764', 'no_lang_code', 1, 'https://ror.org/03efy3764 THT Control Oy (Finland)'),
(22903, 'https://ror.org/03egk3v94', 'en', 1, 'https://ror.org/03egk3v94 Advanced Applied Physics Solutions'),
(22904, 'https://ror.org/03egsqc60', 'no_lang_code', 1, 'https://ror.org/03egsqc60 TiConUno (Italy)'),
(22905, 'https://ror.org/03endhe31', 'en', 1, 'https://ror.org/03endhe31 PDC-ARGOS'),
(22906, 'https://ror.org/03esg6y90', 'no_lang_code', 1, 'https://ror.org/03esg6y90 Zenalux Biomedical (United States)'),
(22907, 'https://ror.org/03et5bx91', 'es', 1, 'https://ror.org/03et5bx91 Fundación Universitaria Juan de Castellanos'),
(22908, 'https://ror.org/03etsty64', 'no_lang_code', 1, 'https://ror.org/03etsty64 Tadiso (United States)'),
(22909, 'https://ror.org/03etyp213', 'no_lang_code', 1, 'https://ror.org/03etyp213 Municipality of Athens Development Agency'),
(22910, 'https://ror.org/03ev3zx04', 'no_lang_code', 1, 'https://ror.org/03ev3zx04 Slider Studio (United Kingdom)'),
(22911, 'https://ror.org/03ewnz430', 'en', 1, 'https://ror.org/03ewnz430 Women Accepting Responsibility'),
(22912, 'https://ror.org/03ex17v30', 'no_lang_code', 1, 'https://ror.org/03ex17v30 RMC Research (United States)'),
(22913, 'https://ror.org/03ex76y18', 'no_lang_code', 1, 'https://ror.org/03ex76y18 Spring Techno (Germany)'),
(22914, 'https://ror.org/03ez88s78', 'fr', 1, 'https://ror.org/03ez88s78 Sup de Co Marrakech, Ɖcole SupĆ©rieure de Commerce de Marrakech'),
(22915, 'https://ror.org/03f08pf79', 'en', 1, 'https://ror.org/03f08pf79 St. Gregory''s University'),
(22916, 'https://ror.org/03f099r71', 'fr', 1, 'https://ror.org/03f099r71 Institut universitaire de technologie, Instituts Universitaires de Technologie'),
(22917, 'https://ror.org/03f0t8b71', 'es', 1, 'https://ror.org/03f0t8b71 Universidad TƩcnica del Norte'),
(22918, 'https://ror.org/03f1b8d27', 'no_lang_code', 1, 'https://ror.org/03f1b8d27 Foundry (United Kingdom)'),
(22919, 'https://ror.org/03f419588', 'no_lang_code', 1, 'https://ror.org/03f419588 Confers (United Kingdom)'),
(22920, 'https://ror.org/03f4xfe90', 'no_lang_code', 1, 'https://ror.org/03f4xfe90 Simulation Solutions (United Kingdom)'),
(22921, 'https://ror.org/03f511537', 'no_lang_code', 1, 'https://ror.org/03f511537 Zumtobel Group (United Kingdom)'),
(22922, 'https://ror.org/03f5kyb42', 'en', 1, 'https://ror.org/03f5kyb42 Greenside Design Center College of Design'),
(22923, 'https://ror.org/03f6phn52', 'no_lang_code', 1, 'https://ror.org/03f6phn52 CompaƱƭa Mexicana de Radiologƭa (United States)'),
(22924, 'https://ror.org/03f6smv36', 'no_lang_code', 1, 'https://ror.org/03f6smv36 Wind Technologies (United Kingdom)'),
(22925, 'https://ror.org/03f750x06', 'en', 1, 'https://ror.org/03f750x06 Technical Chamber of Greece'),
(22926, 'https://ror.org/03f7qhc68', 'en', 1, 'https://ror.org/03f7qhc68 Broadgreen Hospital'),
(22927, 'https://ror.org/03faefq04', 'no_lang_code', 1, 'https://ror.org/03faefq04 Warwick Analytics (United Kingdom)'),
(22928, 'https://ror.org/03fbb4j63', 'no_lang_code', 1, 'https://ror.org/03fbb4j63 Finisar (Sweden)'),
(22929, 'https://ror.org/03fcyzf82', 'en', 1, 'https://ror.org/03fcyzf82 New Mexico Family Network'),
(22930, 'https://ror.org/03fdxqq72', 'no_lang_code', 1, 'https://ror.org/03fdxqq72 Puracyp (United States)'),
(22931, 'https://ror.org/03fehwj53', 'es', 1, 'https://ror.org/03fehwj53 Universidad San Pedro'),
(22932, 'https://ror.org/03ff1e896', 'en', 1, 'https://ror.org/03ff1e896 Centre for Applied Psychology, Environmental and Social Research Zentrum für angewandte Psychologie, Umwelt- und Sozialforschung'),
(22933, 'https://ror.org/03fgj8421', 'fr', 1, 'https://ror.org/03fgj8421 Ɖcole d''Architecture de Casablanca'),
(22934, 'https://ror.org/03fgtjr33', 'en', 1, 'https://ror.org/03fgtjr33 Copperbelt University'),
(22935, 'https://ror.org/03fhhje23', 'en', 1, 'https://ror.org/03fhhje23 Cleary University'),
(22936, 'https://ror.org/03fjqhm56', 'es', 1, 'https://ror.org/03fjqhm56 Universidad Cristiana de Bolivia'),
(22937, 'https://ror.org/03fknw408', 'en', 1, 'https://ror.org/03fknw408 UK Data Archive'),
(22938, 'https://ror.org/03fpnp855', 'fr', 1, 'https://ror.org/03fpnp855 Association Canadienne des Sociologues et Anthropologues de Langue FranƧaise'),
(22939, 'https://ror.org/03fqttr31', 'en', 1, 'https://ror.org/03fqttr31 Odiham Cottage Hospital'),
(22940, 'https://ror.org/03fs0qz59', 'no_lang_code', 1, 'https://ror.org/03fs0qz59 Türksat (Turkey) Türksat Uydu Haberleşme Kablo TV ve İşletme A.Ş.'),
(22941, 'https://ror.org/03fv6f056', 'fr', 1, 'https://ror.org/03fv6f056 Centre Hospitalier d''Arras'),
(22942, 'https://ror.org/03fxxpd92', 'en', 1, 'https://ror.org/03fxxpd92 National Penghu University of Science and Technology åœ‹ē«‹ę¾Žę¹–ē§‘ęŠ€å¤§å­ø'),
(22943, 'https://ror.org/03fzdf593', 'de', 1, 'https://ror.org/03fzdf593 PROJEKTkompetenz'),
(22944, 'https://ror.org/03fzvpt97', 'en', 1, 'https://ror.org/03fzvpt97 Northeast Iowa Dairy Foundation'),
(22945, 'https://ror.org/03g0mt494', 'es', 1, 'https://ror.org/03g0mt494 Universidad AnÔhuac de Cancún'),
(22946, 'https://ror.org/03g16s487', 'en', 1, 'https://ror.org/03g16s487 Palmer Community Hospital'),
(22947, 'https://ror.org/03g33jp38', 'en', 1, 'https://ror.org/03g33jp38 Los Algarrobos Observatory Observatorio Los Algarrobos'),
(22948, 'https://ror.org/03g407536', 'en', 1, 'https://ror.org/03g407536 University of Toliara UniversitƩ de Toliara'),
(22949, 'https://ror.org/03g47g866', 'en', 1, 'https://ror.org/03g47g866 University Hospitals of North Midlands NHS Trust'),
(22950, 'https://ror.org/03g5fjs36', 'no_lang_code', 1, 'https://ror.org/03g5fjs36 Third Dimension Technologies (United States)'),
(22951, 'https://ror.org/03g6mxw58', 'es', 1, 'https://ror.org/03g6mxw58 Universidad IndĆ­gena Quechua Boliviana Casimiro Huanca'),
(22952, 'https://ror.org/03g867362', 'es', 1, 'https://ror.org/03g867362 Universidad de la Marina Mercante'),
(22953, 'https://ror.org/03g8egf97', 'pt', 1, 'https://ror.org/03g8egf97 Centro UniversitƔrio do Norte Paulista'),
(22954, 'https://ror.org/03ga86b15', 'en', 1, 'https://ror.org/03ga86b15 Living on Earth'),
(22955, 'https://ror.org/03gca2v38', 'en', 1, 'https://ror.org/03gca2v38 Production Management Institute of Southern Africa'),
(22956, 'https://ror.org/03gd99924', 'en', 1, 'https://ror.org/03gd99924 Spire Alexandra Hospital'),
(22957, 'https://ror.org/03gdfyp04', 'en', 1, 'https://ror.org/03gdfyp04 Farnham Hospital & Centre For Health'),
(22958, 'https://ror.org/03ge13j80', 'no_lang_code', 1, 'https://ror.org/03ge13j80 Analogic (United States)'),
(22959, 'https://ror.org/03ge8ff34', 'es', 1, 'https://ror.org/03ge8ff34 Universidad Latinoamericana'),
(22960, 'https://ror.org/03gex3a30', 'en', 1, 'https://ror.org/03gex3a30 PlasticsEurope'),
(22961, 'https://ror.org/03gfrak98', 'en', 1, 'https://ror.org/03gfrak98 West Liberty University'),
(22962, 'https://ror.org/03gfza185', 'no_lang_code', 1, 'https://ror.org/03gfza185 EduHintOVD (Netherlands)'),
(22963, 'https://ror.org/03gh8yg14', 'en', 1, 'https://ror.org/03gh8yg14 Project Oceanology'),
(22964, 'https://ror.org/03ghr6q93', 'no_lang_code', 1, 'https://ror.org/03ghr6q93 PLANCO Consulting (Germany)'),
(22965, 'https://ror.org/03gq1d339', 'en', 1, 'https://ror.org/03gq1d339 University of NgaoundƩrƩ UniversitƩ de NgaoundƩrƩ'),
(22966, 'https://ror.org/03gq1kz58', 'no_lang_code', 1, 'https://ror.org/03gq1kz58 Research & Diagnostic Antibodies (United States)'),
(22967, 'https://ror.org/03gqwjw57', 'en', 1, 'https://ror.org/03gqwjw57 Damelin'),
(22968, 'https://ror.org/03gr30s78', 'en', 1, 'https://ror.org/03gr30s78 Buckland Hospital'),
(22969, 'https://ror.org/03grmx823', 'es', 1, 'https://ror.org/03grmx823 Universidad Interamericana de PanamĆ”'),
(22970, 'https://ror.org/03gs3ft47', 'en', 1, 'https://ror.org/03gs3ft47 Science Museum Group'),
(22971, 'https://ror.org/03gsgk545', 'en', 1, 'https://ror.org/03gsgk545 Universidad de la Amazonia University of the Amazon'),
(22972, 'https://ror.org/03gtw5096', 'es', 1, 'https://ror.org/03gtw5096 Universidad Xilotzingo'),
(22973, 'https://ror.org/03gvct920', 'no_lang_code', 1, 'https://ror.org/03gvct920 Tecnologia e Engenharia de Materiais (Portugal)'),
(22974, 'https://ror.org/03gy7zk94', 'no_lang_code', 1, 'https://ror.org/03gy7zk94 O-Ray Pharma (United States)'),
(22975, 'https://ror.org/03gz60y52', 'pt', 1, 'https://ror.org/03gz60y52 Raiz - Instituto De Investigação Da Floresta E Papel'),
(22976, 'https://ror.org/03h1y5m90', 'fr', 1, 'https://ror.org/03h1y5m90 Institut SupƩrieur de Statistique de Lubumbashi'),
(22977, 'https://ror.org/03h362x79', 'en', 1, 'https://ror.org/03h362x79 Missoula County Public Schools'),
(22978, 'https://ror.org/03hbnch67', 'en', 1, 'https://ror.org/03hbnch67 Social Development Commission'),
(22979, 'https://ror.org/03hbpmj07', 'no_lang_code', 1, 'https://ror.org/03hbpmj07 ResearchWorks (United States)'),
(22980, 'https://ror.org/03hcgzj74', 'en', 1, 'https://ror.org/03hcgzj74 Isebrook Hospital'),
(22981, 'https://ror.org/03hefp680', 'es', 1, 'https://ror.org/03hefp680 Universidad Nacional de Huancavelica'),
(22982, 'https://ror.org/03hendk30', 'es', 1, 'https://ror.org/03hendk30 Enac Instituto Profesional'),
(22983, 'https://ror.org/03hfh6394', 'pt', 1, 'https://ror.org/03hfh6394 Instituto Superior Cristão'),
(22984, 'https://ror.org/03hh4xv28', 'en', 1, 'https://ror.org/03hh4xv28 Trades Union Congress'),
(22985, 'https://ror.org/03hhd1t97', 'es', 1, 'https://ror.org/03hhd1t97 Universidad Tec De Oriente'),
(22986, 'https://ror.org/03hhjm063', 'en', 1, 'https://ror.org/03hhjm063 Western Piedmont Community College'),
(22987, 'https://ror.org/03hhk3369', 'fr', 1, 'https://ror.org/03hhk3369 Armand Frappier Museum'),
(22988, 'https://ror.org/03hj4jr80', 'en', 1, 'https://ror.org/03hj4jr80 North Carolina Biotechnology Center'),
(22989, 'https://ror.org/03hjbt093', 'en', 1, 'https://ror.org/03hjbt093 The Polytechnic Ibadan'),
(22990, 'https://ror.org/03hm2pw19', 'no_lang_code', 1, 'https://ror.org/03hm2pw19 NRU PrƤzisionstechnologie (Germany)'),
(22991, 'https://ror.org/03hm6e417', 'en', 1, 'https://ror.org/03hm6e417 Radiation Protection Institute'),
(22992, 'https://ror.org/03hqvaq14', 'en', 1, 'https://ror.org/03hqvaq14 Thomas Nelson Community College'),
(22993, 'https://ror.org/03hqvqf51', 'no_lang_code', 1, 'https://ror.org/03hqvqf51 Xinyang Central Hospital äæ”é˜³åø‚äø­åæƒåŒ»é™¢'),
(22994, 'https://ror.org/03hr7f472', 'es', 1, 'https://ror.org/03hr7f472 Centro Universitario de Ciudad JuƔrez'),
(22995, 'https://ror.org/03ht5e806', 'en', 1, 'https://ror.org/03ht5e806 Northern Ostrobothnia Hospital District Pohjois-Pohjanmaan Sairaanhoitopiiri'),
(22996, 'https://ror.org/03htt2d69', 'no_lang_code', 1, 'https://ror.org/03htt2d69 Pfizer (Italy)'),
(22997, 'https://ror.org/03hxjwt59', 'en', 1, 'https://ror.org/03hxjwt59 Southwest Louisiana Area Health Education Center'),
(22998, 'https://ror.org/03hyrhe39', 'no_lang_code', 1, 'https://ror.org/03hyrhe39 Novacta (United Kingdom)'),
(22999, 'https://ror.org/03j2kra17', 'no_lang_code', 1, 'https://ror.org/03j2kra17 Prodyne (United States)'),
(23000, 'https://ror.org/03j6adw74', 'en', 1, 'https://ror.org/03j6adw74 Gadarif University Ų¬Ų§Ł…Ų¹Ų© القضارف'),
(23001, 'https://ror.org/03jafxc29', 'no_lang_code', 1, 'https://ror.org/03jafxc29 Micro Photon Devices'),
(23002, 'https://ror.org/03jd2c182', 'no_lang_code', 1, 'https://ror.org/03jd2c182 REFAMED (Italy)'),
(23003, 'https://ror.org/03jem4j71', 'no_lang_code', 1, 'https://ror.org/03jem4j71 Meta Vision Systems (United Kingdom)'),
(23004, 'https://ror.org/03jf8k683', 'en', 1, 'https://ror.org/03jf8k683 Monterey Peninsula Unified School District'),
(23005, 'https://ror.org/03jfhm487', 'en', 1, 'https://ror.org/03jfhm487 National University of Chilecito Universidad Nacional de Chilecito'),
(23006, 'https://ror.org/03jfsyd35', 'en', 1, 'https://ror.org/03jfsyd35 Clarke International University'),
(23007, 'https://ror.org/03jh7vc52', 'no_lang_code', 1, 'https://ror.org/03jh7vc52 PA Consulting Group'),
(23008, 'https://ror.org/03jjrt588', 'en', 1, 'https://ror.org/03jjrt588 Zenith University College'),
(23009, 'https://ror.org/03jjx5w61', 'en', 1, 'https://ror.org/03jjx5w61 Rathbone Hospital'),
(23010, 'https://ror.org/03jnhsd98', 'en', 1, 'https://ror.org/03jnhsd98 Bioindustrial Innovation Canada'),
(23011, 'https://ror.org/03jq5gp77', 'en', 1, 'https://ror.org/03jq5gp77 Minnesota Zoo'),
(23012, 'https://ror.org/03jv4cw45', 'no_lang_code', 1, 'https://ror.org/03jv4cw45 AudioCodes (Israel)'),
(23013, 'https://ror.org/03jvxy171', 'no_lang_code', 1, 'https://ror.org/03jvxy171 Micro Optics Technologies (United States)'),
(23014, 'https://ror.org/03jyntf28', 'no_lang_code', 1, 'https://ror.org/03jyntf28 Zubiola (Spain)'),
(23015, 'https://ror.org/03jytqt55', 'en', 1, 'https://ror.org/03jytqt55 BMI Bishops Wood Hospital'),
(23016, 'https://ror.org/03jzm5a44', 'es', 1, 'https://ror.org/03jzm5a44 Rafael LandĆ­var University, Universidad Rafael LandĆ­var'),
(23017, 'https://ror.org/03jzxkg37', 'en', 1, 'https://ror.org/03jzxkg37 Senshu University 専修大学'),
(23018, 'https://ror.org/03k0tfa09', 'no_lang_code', 1, 'https://ror.org/03k0tfa09 Trusted Renewables (United Kingdom)'),
(23019, 'https://ror.org/03k3dgs02', 'no_lang_code', 1, 'https://ror.org/03k3dgs02 Orange (Belgium)'),
(23020, 'https://ror.org/03k42h168', 'en', 1, 'https://ror.org/03k42h168 Indspire'),
(23021, 'https://ror.org/03k552p43', 'es', 1, 'https://ror.org/03k552p43 Universidad Católica de La Plata'),
(23022, 'https://ror.org/03k6gj822', 'en', 1, 'https://ror.org/03k6gj822 Ajayi Crowther University'),
(23023, 'https://ror.org/03k6wst68', 'en', 1, 'https://ror.org/03k6wst68 Hopewood Park Hospital'),
(23024, 'https://ror.org/03k7v9g07', 'no_lang_code', 1, 'https://ror.org/03k7v9g07 Seratec (Germany)'),
(23025, 'https://ror.org/03k95y741', 'en', 1, 'https://ror.org/03k95y741 South Warwickshire NHS Foundation Trust'),
(23026, 'https://ror.org/03k9hrc16', 'en', 1, 'https://ror.org/03k9hrc16 Florida State University-Panama'),
(23027, 'https://ror.org/03kcc1a98', 'no_lang_code', 1, 'https://ror.org/03kcc1a98 Recupyl (France)'),
(23028, 'https://ror.org/03kce8684', 'en', 1, 'https://ror.org/03kce8684 Tenbury Community Hospital'),
(23029, 'https://ror.org/03kcqne70', 'es', 1, 'https://ror.org/03kcqne70 Instituto Departamental de Bellas Artes'),
(23030, 'https://ror.org/03kea0d35', 'en', 1, 'https://ror.org/03kea0d35 St Mary''s Hospital'),
(23031, 'https://ror.org/03kfrqx27', 'no_lang_code', 1, 'https://ror.org/03kfrqx27 Nemaura Pharma (United Kingdom)'),
(23032, 'https://ror.org/03khznd17', 'en', 1, 'https://ror.org/03khznd17 Gloucestershire Health and Care NHS Foundation Trust'),
(23033, 'https://ror.org/03kk6t048', 'no_lang_code', 1, 'https://ror.org/03kk6t048 Taitech (United States)'),
(23034, 'https://ror.org/03kkfk814', 'en', 1, 'https://ror.org/03kkfk814 University of Jijel Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŲ¬Ł„'),
(23035, 'https://ror.org/03kkjyb15', 'en', 1, 'https://ror.org/03kkjyb15 Peking University Shenzhen Hospital åŒ—äŗ¬å¤§å­¦ę·±åœ³åŒ»é™¢'),
(23036, 'https://ror.org/03kn6cb12', 'en', 1, 'https://ror.org/03kn6cb12 October High Institute For Enginnering and Technology معهد أكتوبر Ų§Ł„Ų¹Ų§Ł„ŁŠ للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(23037, 'https://ror.org/03kqcyw85', 'es', 1, 'https://ror.org/03kqcyw85 Universidad Nacional del Altiplano'),
(23038, 'https://ror.org/03kqywj10', 'es', 1, 'https://ror.org/03kqywj10 Universidad Nuestra SeƱora de La Paz'),
(23039, 'https://ror.org/03ks3fa41', 'no_lang_code', 1, 'https://ror.org/03ks3fa41 SpazioDati (Italy)'),
(23040, 'https://ror.org/03ksty822', 'no_lang_code', 1, 'https://ror.org/03ksty822 New Generation Biogas'),
(23041, 'https://ror.org/03kswc577', 'no_lang_code', 1, 'https://ror.org/03kswc577 Statistics Collaborative'),
(23042, 'https://ror.org/03ktccz26', 'no_lang_code', 1, 'https://ror.org/03ktccz26 PinMed (United States)'),
(23043, 'https://ror.org/03kvekp81', 'no_lang_code', 1, 'https://ror.org/03kvekp81 Turkish Electro Technology (Turkey)'),
(23044, 'https://ror.org/03kvq4w45', 'nl', 1, 'https://ror.org/03kvq4w45 Nationaal ICT Instituut in de Zorg'),
(23045, 'https://ror.org/03kvy9649', 'fr', 1, 'https://ror.org/03kvy9649 Pour la SolidaritƩ'),
(23046, 'https://ror.org/03kw02y34', 'no_lang_code', 1, 'https://ror.org/03kw02y34 Navimetric (Spain)'),
(23047, 'https://ror.org/03kytre74', 'no_lang_code', 1, 'https://ror.org/03kytre74 Roslin Cells (United Kingdom)'),
(23048, 'https://ror.org/03kytw120', 'no_lang_code', 1, 'https://ror.org/03kytw120 Pro Optica (Romania)'),
(23049, 'https://ror.org/03m033p80', 'no_lang_code', 1, 'https://ror.org/03m033p80 Sappi (Netherlands)'),
(23050, 'https://ror.org/03m1s4j75', 'es', 1, 'https://ror.org/03m1s4j75 Universidad de Oriente'),
(23051, 'https://ror.org/03m3n7e70', 'en', 1, 'https://ror.org/03m3n7e70 Braintree Community Hospital'),
(23052, 'https://ror.org/03m69ak30', 'es', 1, 'https://ror.org/03m69ak30 Universidad de NorteamƩrica'),
(23053, 'https://ror.org/03m7qwy32', 'en', 1, 'https://ror.org/03m7qwy32 William Penn University'),
(23054, 'https://ror.org/03m7rw736', 'en', 1, 'https://ror.org/03m7rw736 Nacionalni laboratorij za zdravje, okolje in hrano National Laboratory of Health, Environment and Food'),
(23055, 'https://ror.org/03maf3k43', 'en', 1, 'https://ror.org/03maf3k43 Indoc Research'),
(23056, 'https://ror.org/03mcgtd30', 'es', 1, 'https://ror.org/03mcgtd30 Centro de Diseño, Arquitectura y Construcción'),
(23057, 'https://ror.org/03mcm6a50', 'fr', 1, 'https://ror.org/03mcm6a50 Institut SupƩrieur de Statistiques de Kinshasa'),
(23058, 'https://ror.org/03me22p27', 'no_lang_code', 1, 'https://ror.org/03me22p27 ProCertus BioPharm (United States)'),
(23059, 'https://ror.org/03mexge56', 'fr', 1, 'https://ror.org/03mexge56 Ɖcole SupĆ©rieure d''Informatique et de Management des Affaires'),
(23060, 'https://ror.org/03mg4mw05', 'es', 1, 'https://ror.org/03mg4mw05 Grupo de Observadores Astronómicos de Tenerife'),
(23061, 'https://ror.org/03mj51g65', 'it', 1, 'https://ror.org/03mj51g65 Ospedaliero Santa Barbara'),
(23062, 'https://ror.org/03mjm4596', 'no_lang_code', 1, 'https://ror.org/03mjm4596 TYPSA Group (Spain)'),
(23063, 'https://ror.org/03mmsj102', 'no_lang_code', 1, 'https://ror.org/03mmsj102 Personal Space Technologies (Netherlands)'),
(23064, 'https://ror.org/03mnvhz29', 'es', 1, 'https://ror.org/03mnvhz29 Universidad Nacional Experimental PolitƩcnica "Antonio JosƩ de Sucre"'),
(23065, 'https://ror.org/03mq8zc85', 'en', 1, 'https://ror.org/03mq8zc85 Central Middlesex Hospital'),
(23066, 'https://ror.org/03mqxhm40', 'en', 1, 'https://ror.org/03mqxhm40 Museums Association'),
(23067, 'https://ror.org/03ms28n48', 'no_lang_code', 1, 'https://ror.org/03ms28n48 Pixelligent (United States)'),
(23068, 'https://ror.org/03ms5t516', 'en', 1, 'https://ror.org/03ms5t516 Lydney and District Hospital'),
(23069, 'https://ror.org/03mvpvm42', 'en', 1, 'https://ror.org/03mvpvm42 Center Technological University Universidad Tecnológica del Centro'),
(23070, 'https://ror.org/03mwysa89', 'en', 1, 'https://ror.org/03mwysa89 The Concrete Centre'),
(23071, 'https://ror.org/03mx33742', 'es', 1, 'https://ror.org/03mx33742 Universidad de Santander'),
(23072, 'https://ror.org/03mxhve08', 'fr', 1, 'https://ror.org/03mxhve08 Institut SupƩrieur PƩdagogique Technique'),
(23073, 'https://ror.org/03myyx716', 'es', 1, 'https://ror.org/03myyx716 Universidad ISA'),
(23074, 'https://ror.org/03mzgz227', 'no_lang_code', 1, 'https://ror.org/03mzgz227 Meso (United States)'),
(23075, 'https://ror.org/03n0qh685', 'en', 1, 'https://ror.org/03n0qh685 National Patient Safety Agency'),
(23076, 'https://ror.org/03n2yg143', 'es', 1, 'https://ror.org/03n2yg143 Centro Universitario en Periodismo y Publicidad'),
(23077, 'https://ror.org/03n3q3154', 'en', 1, 'https://ror.org/03n3q3154 Concrete Society'),
(23078, 'https://ror.org/03n5zh241', 'no_lang_code', 1, 'https://ror.org/03n5zh241 Oryzon Genomics (Spain)'),
(23079, 'https://ror.org/03n7nwh86', 'es', 1, 'https://ror.org/03n7nwh86 Universidad Católica Sedes Sapientiae');
INSERT INTO `rors` VALUES
(23080, 'https://ror.org/03n8k5298', 'en', 1, 'https://ror.org/03n8k5298 Association canadienne des industrielles Canadian Industrial Relations Association'),
(23081, 'https://ror.org/03ndmx042', 'en', 1, 'https://ror.org/03ndmx042 Riverside County Department of Environmental Health'),
(23082, 'https://ror.org/03nfzc873', 'es', 1, 'https://ror.org/03nfzc873 Universidad Boliviana de InformƔtica'),
(23083, 'https://ror.org/03nhf7k19', 'no_lang_code', 1, 'https://ror.org/03nhf7k19 PJH (United Kingdom)'),
(23084, 'https://ror.org/03njhn887', 'en', 1, 'https://ror.org/03njhn887 Society of Wood Science and Technology'),
(23085, 'https://ror.org/03njk0639', 'no_lang_code', 1, 'https://ror.org/03njk0639 Rangen (United States)'),
(23086, 'https://ror.org/03njp5837', 'fr', 1, 'https://ror.org/03njp5837 Ɖcole Royale de l''Air de Marrakech المدرسة Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ų§Ł„Ų¬ŁˆŁŠŲ©'),
(23087, 'https://ror.org/03njz2k95', 'no_lang_code', 1, 'https://ror.org/03njz2k95 Optech (Canada)'),
(23088, 'https://ror.org/03nm76w91', 'es', 1, 'https://ror.org/03nm76w91 Universidad Instituto Universitario del Estado de MƩxico'),
(23089, 'https://ror.org/03nmehh68', 'fr', 1, 'https://ror.org/03nmehh68 UniversitƩ du Lac Tanganyika'),
(23090, 'https://ror.org/03nr54n68', 'no_lang_code', 1, 'https://ror.org/03nr54n68 Nordic Bioscience (Denmark)'),
(23091, 'https://ror.org/03nvtfm43', 'en', 1, 'https://ror.org/03nvtfm43 Concordia University'),
(23092, 'https://ror.org/03nycav22', 'en', 1, 'https://ror.org/03nycav22 Roxbourne Medical Centre'),
(23093, 'https://ror.org/03p5xhb29', 'es', 1, 'https://ror.org/03p5xhb29 Universidad Nacional de Pilar'),
(23094, 'https://ror.org/03p72cz81', 'no_lang_code', 1, 'https://ror.org/03p72cz81 LDK (Greece)'),
(23095, 'https://ror.org/03p7g4h78', 'en', 1, 'https://ror.org/03p7g4h78 Gorno-Altaisk State University Горно-Алтайский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(23096, 'https://ror.org/03p7h8068', 'es', 1, 'https://ror.org/03p7h8068 Fundación Universitaria de PopayÔn'),
(23097, 'https://ror.org/03p7psc15', 'no_lang_code', 1, 'https://ror.org/03p7psc15 Stocznia Gdynia (Poland)'),
(23098, 'https://ror.org/03p823x35', 'en', 1, 'https://ror.org/03p823x35 Caritas University'),
(23099, 'https://ror.org/03paspt34', 'no_lang_code', 1, 'https://ror.org/03paspt34 Microlime (Portugal)'),
(23100, 'https://ror.org/03pca2t30', 'en', 1, 'https://ror.org/03pca2t30 Presbyterian Medical Services'),
(23101, 'https://ror.org/03pf5zs64', 'en', 1, 'https://ror.org/03pf5zs64 Royal National Throat Nose and Ear Hospital'),
(23102, 'https://ror.org/03pge2g16', 'no_lang_code', 1, 'https://ror.org/03pge2g16 NovAtel (Canada)'),
(23103, 'https://ror.org/03pgf7z08', 'no_lang_code', 1, 'https://ror.org/03pgf7z08 SSM Computer Systems (Cyprus)'),
(23104, 'https://ror.org/03pgvsr43', 'en', 1, 'https://ror.org/03pgvsr43 Mining Industry Human Resources Council'),
(23105, 'https://ror.org/03ph49z03', 'en', 1, 'https://ror.org/03ph49z03 Islamic University in Uganda'),
(23106, 'https://ror.org/03pj63790', 'no_lang_code', 1, 'https://ror.org/03pj63790 ZirChrom Separations (United States)'),
(23107, 'https://ror.org/03pkpht31', 'fr', 1, 'https://ror.org/03pkpht31 Institut SupƩrieur de Commerce de Kinshasa'),
(23108, 'https://ror.org/03pkrx282', 'en', 1, 'https://ror.org/03pkrx282 Loughborough Hospital'),
(23109, 'https://ror.org/03pkwvf72', 'en', 1, 'https://ror.org/03pkwvf72 Campion College'),
(23110, 'https://ror.org/03pmd4r81', 'no_lang_code', 1, 'https://ror.org/03pmd4r81 R&R Systems (Netherlands)'),
(23111, 'https://ror.org/03pmj9e82', 'en', 1, 'https://ror.org/03pmj9e82 Centre for Probe Development and Commercialization'),
(23112, 'https://ror.org/03pmvds50', 'en', 1, 'https://ror.org/03pmvds50 MindFuel'),
(23113, 'https://ror.org/03pnptn66', 'es', 1, 'https://ror.org/03pnptn66 Universidad Internacional de Profesiones y Escuela Internacional de Turismo'),
(23114, 'https://ror.org/03pnxfz55', 'no_lang_code', 1, 'https://ror.org/03pnxfz55 Boehringer Ingelheim (Sweden)'),
(23115, 'https://ror.org/03pq0dv21', 'no_lang_code', 1, 'https://ror.org/03pq0dv21 Vecima Technology (United Kingdom)'),
(23116, 'https://ror.org/03pq34j38', 'en', 1, 'https://ror.org/03pq34j38 BMI Goring Hall Hospital'),
(23117, 'https://ror.org/03pqmqc37', 'en', 1, 'https://ror.org/03pqmqc37 St. Margaret''s Hospital'),
(23118, 'https://ror.org/03pwcr767', 'en', 1, 'https://ror.org/03pwcr767 Niger Delta University'),
(23119, 'https://ror.org/03pwm1612', 'no_lang_code', 1, 'https://ror.org/03pwm1612 Allied Vision Technologies (Canada)'),
(23120, 'https://ror.org/03pxqf194', 'pt', 1, 'https://ror.org/03pxqf194 Centro UniversitƔrio Anhanguera'),
(23121, 'https://ror.org/03pxqyk55', 'pt', 1, 'https://ror.org/03pxqyk55 Universidade Regional do Noroeste do Estado do Rio Grande do Sul'),
(23122, 'https://ror.org/03pxrb028', 'no_lang_code', 1, 'https://ror.org/03pxrb028 Photonic Science (United Kingdom)'),
(23123, 'https://ror.org/03pys9888', 'en', 1, 'https://ror.org/03pys9888 High-Tech Rabat-Agdal'),
(23124, 'https://ror.org/03pz77m13', 'no_lang_code', 1, 'https://ror.org/03pz77m13 Nemetschek Allplan (Slovakia)'),
(23125, 'https://ror.org/03pze9w21', 'es', 1, 'https://ror.org/03pze9w21 Corporación Universitaria Americana'),
(23126, 'https://ror.org/03q03s114', 'es', 1, 'https://ror.org/03q03s114 Universidad de las Ciencias y el Arte de Costa Rica'),
(23127, 'https://ror.org/03q0dfp67', 'en', 1, 'https://ror.org/03q0dfp67 Catholic University of Central Africa UniversitƩ catholique d''afrique centrale'),
(23128, 'https://ror.org/03q0gmx50', 'es', 1, 'https://ror.org/03q0gmx50 Universidad Libre de Costa Rica'),
(23129, 'https://ror.org/03q0k8124', 'no_lang_code', 1, 'https://ror.org/03q0k8124 Xaar (United Kingdom)'),
(23130, 'https://ror.org/03q1ded50', 'en', 1, 'https://ror.org/03q1ded50 Midrand Graduate Institute'),
(23131, 'https://ror.org/03q1mhb89', 'no_lang_code', 1, 'https://ror.org/03q1mhb89 Scour Prevention Systems (United Kingdom)'),
(23132, 'https://ror.org/03q2kkx59', 'no_lang_code', 1, 'https://ror.org/03q2kkx59 Touchstone Research Laboratory (United States)'),
(23133, 'https://ror.org/03q83c436', 'en', 1, 'https://ror.org/03q83c436 Association for Canadian Studies'),
(23134, 'https://ror.org/03q8g2x76', 'es', 1, 'https://ror.org/03q8g2x76 Universidad Cristiana Autónoma de Nicaragua'),
(23135, 'https://ror.org/03q8k9q03', 'no_lang_code', 1, 'https://ror.org/03q8k9q03 Huntsman (United Kingdom)'),
(23136, 'https://ror.org/03qc71575', 'en', 1, 'https://ror.org/03qc71575 Western Community Hospital'),
(23137, 'https://ror.org/03qecha53', 'no_lang_code', 1, 'https://ror.org/03qecha53 Vaxart (United States)'),
(23138, 'https://ror.org/03qg1ka05', 'es', 1, 'https://ror.org/03qg1ka05 Universidad Loyola del PacĆ­fico'),
(23139, 'https://ror.org/03qgjv684', 'no_lang_code', 1, 'https://ror.org/03qgjv684 SeaSpace (United States)'),
(23140, 'https://ror.org/03qgxnq88', 'no_lang_code', 1, 'https://ror.org/03qgxnq88 Redes EnergƩticas Nacionais (Portugal)'),
(23141, 'https://ror.org/03qjxzd42', 'en', 1, 'https://ror.org/03qjxzd42 South West Regional Authority'),
(23142, 'https://ror.org/03qm7cd09', 'no_lang_code', 1, 'https://ror.org/03qm7cd09 TechnoFirst (France)'),
(23143, 'https://ror.org/03qn4hk51', 'no_lang_code', 1, 'https://ror.org/03qn4hk51 Xilinx (Canada)'),
(23144, 'https://ror.org/03qngxd77', 'es', 1, 'https://ror.org/03qngxd77 Corporación Escuela Tecnológica del Oriente'),
(23145, 'https://ror.org/03qsw6f66', 'es', 1, 'https://ror.org/03qsw6f66 Universidad del Alica'),
(23146, 'https://ror.org/03qtd7e32', 'es', 1, 'https://ror.org/03qtd7e32 Asociación Psicoanalítica de Buenos Aires'),
(23147, 'https://ror.org/03qtxpc80', 'pt', 1, 'https://ror.org/03qtxpc80 Centro UniversitƔrio Plƭnio Leite'),
(23148, 'https://ror.org/03qv51n94', 'en', 1, 'https://ror.org/03qv51n94 National Authority for Remote Sensing and Space Sciences'),
(23149, 'https://ror.org/03qx9j992', 'en', 1, 'https://ror.org/03qx9j992 Association Canadienne de Communication Canadian Communication Association'),
(23150, 'https://ror.org/03qxvyy35', 'en', 1, 'https://ror.org/03qxvyy35 Dhaka University of Engineering & Technology ঢাকা ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(23151, 'https://ror.org/03qyvw759', 'en', 1, 'https://ror.org/03qyvw759 St Mary''s Hospital'),
(23152, 'https://ror.org/03qzc6q48', 'es', 1, 'https://ror.org/03qzc6q48 Universidad de Tijuana'),
(23153, 'https://ror.org/03r0ajw35', 'en', 1, 'https://ror.org/03r0ajw35 National Association of Research and Educational e-Infrastructures'),
(23154, 'https://ror.org/03r16h820', 'en', 1, 'https://ror.org/03r16h820 Oklahoma Department of Agriculture Food and Forestry'),
(23155, 'https://ror.org/03r1qk590', 'en', 1, 'https://ror.org/03r1qk590 Milton Keynes Hospital NHS Foundation Trust'),
(23156, 'https://ror.org/03r487h15', 'es', 1, 'https://ror.org/03r487h15 Universidad Notarial Argentina'),
(23157, 'https://ror.org/03r4mvw95', 'no_lang_code', 1, 'https://ror.org/03r4mvw95 South Yorkshire Passenger Transport Executive'),
(23158, 'https://ror.org/03r7b1f79', 'en', 1, 'https://ror.org/03r7b1f79 Turgut Ɩzal University Turgut Ɩzal Ɯniversitesi'),
(23159, 'https://ror.org/03r885q17', 'no_lang_code', 1, 'https://ror.org/03r885q17 Prolog Development Center'),
(23160, 'https://ror.org/03r8s5x58', 'no_lang_code', 1, 'https://ror.org/03r8s5x58 Osiris Therapeutics (United States)'),
(23161, 'https://ror.org/03raf0607', 'en', 1, 'https://ror.org/03raf0607 Linzhou Cancer Hospital ęž—å·žåø‚č‚æē˜¤åŒ»é™¢'),
(23162, 'https://ror.org/03rb80v65', 'no_lang_code', 1, 'https://ror.org/03rb80v65 Sequenom (United States)'),
(23163, 'https://ror.org/03rdgye13', 'pt', 1, 'https://ror.org/03rdgye13 Centro UniversitƔrio do Sul de Minas'),
(23164, 'https://ror.org/03rhn0886', 'en', 1, 'https://ror.org/03rhn0886 Regional Youth Adult Social Action Partnership'),
(23165, 'https://ror.org/03rhw7p81', 'en', 1, 'https://ror.org/03rhw7p81 Camborne Redruth Community Hospital'),
(23166, 'https://ror.org/03rj1yh85', 'en', 1, 'https://ror.org/03rj1yh85 Bob Jones University'),
(23167, 'https://ror.org/03rjhfb18', 'es', 1, 'https://ror.org/03rjhfb18 Universidad de Aconcagua'),
(23168, 'https://ror.org/03rk04a05', 'no_lang_code', 1, 'https://ror.org/03rk04a05 Tecan (United Kingdom)'),
(23169, 'https://ror.org/03rk9dw54', 'en', 1, 'https://ror.org/03rk9dw54 Williams Unified School District'),
(23170, 'https://ror.org/03rkach21', 'es', 1, 'https://ror.org/03rkach21 Instituto de Estudios Universitarios'),
(23171, 'https://ror.org/03rkhvp51', 'en', 1, 'https://ror.org/03rkhvp51 Yamhill County Public Health'),
(23172, 'https://ror.org/03rm88931', 'en', 1, 'https://ror.org/03rm88931 Blandford Community Hospital'),
(23173, 'https://ror.org/03rmnkv16', 'en', 1, 'https://ror.org/03rmnkv16 Antelope Hills Observatory'),
(23174, 'https://ror.org/03rnv3v52', 'no_lang_code', 1, 'https://ror.org/03rnv3v52 Source BioScience (United Kingdom)'),
(23175, 'https://ror.org/03rp0q895', 'es', 1, 'https://ror.org/03rp0q895 Universidad Albert Einstein'),
(23176, 'https://ror.org/03rqy4d08', 'en', 1, 'https://ror.org/03rqy4d08 Emir Abdelkader University of Islamic Sciences Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± Ų¹ŲØŲÆ القادر'),
(23177, 'https://ror.org/03rrvgg66', 'en', 1, 'https://ror.org/03rrvgg66 Women''s Treatment Center'),
(23178, 'https://ror.org/03rsfqa52', 'es', 1, 'https://ror.org/03rsfqa52 Universidad de Especialidades'),
(23179, 'https://ror.org/03rt1dc30', 'en', 1, 'https://ror.org/03rt1dc30 Swedish Foundry Association'),
(23180, 'https://ror.org/03rt6nv56', 'no_lang_code', 1, 'https://ror.org/03rt6nv56 PowerCell (Sweden)'),
(23181, 'https://ror.org/03s13ge81', 'en', 1, 'https://ror.org/03s13ge81 Youth and Family Services of Haddam Killingworth'),
(23182, 'https://ror.org/03s1cky33', 'en', 1, 'https://ror.org/03s1cky33 Newark Hospital'),
(23183, 'https://ror.org/03s2p3287', 'no_lang_code', 1, 'https://ror.org/03s2p3287 Pluservice (Italy)'),
(23184, 'https://ror.org/03s5kf753', 'no_lang_code', 1, 'https://ror.org/03s5kf753 ULMA Embedded Solutions'),
(23185, 'https://ror.org/03s5r1026', 'en', 1, 'https://ror.org/03s5r1026 Mountains of the Moon University'),
(23186, 'https://ror.org/03s746s06', 'no_lang_code', 1, 'https://ror.org/03s746s06 Pinnacle Pharmaceuticals (United States)'),
(23187, 'https://ror.org/03s7e5303', 'no_lang_code', 1, 'https://ror.org/03s7e5303 SGF International (Germany)'),
(23188, 'https://ror.org/03s8c2x09', 'en', 1, 'https://ror.org/03s8c2x09 Future University in Egypt Ų¬Ų§Ł…Ų¹Ų© المستقبل ŲØŁ…ŲµŲ±'),
(23189, 'https://ror.org/03s8xc553', 'en', 1, 'https://ror.org/03s8xc553 Shanxi Datong University 山脿大同大学'),
(23190, 'https://ror.org/03s9etx54', 'en', 1, 'https://ror.org/03s9etx54 National Economists Club'),
(23191, 'https://ror.org/03s9hs139', 'en', 1, 'https://ror.org/03s9hs139 International Islamic University Malaysia Universiti Islam Antarabangsa Malaysia ą“‡ąµ»ą“±ąµ¼ą“Øą“¾ą“·ą“Øąµ½ ą“‡ą“øąµā€ą“²ą“¾ą“®ą“æą“•ąµ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµā€ą“øą“æą“±ąµą“±ą“æ ą“®ą“²ąµ‡ą“·ąµą“Æ'),
(23192, 'https://ror.org/03s9xhv46', 'no_lang_code', 1, 'https://ror.org/03s9xhv46 Take The Wind (Portugal)'),
(23193, 'https://ror.org/03sb6zx08', 'no_lang_code', 1, 'https://ror.org/03sb6zx08 Scanwel (United Kingdom)'),
(23194, 'https://ror.org/03sdg3x20', 'es', 1, 'https://ror.org/03sdg3x20 Universidad Femenina del Sagrado Corazón'),
(23195, 'https://ror.org/03sj17n32', 'no_lang_code', 1, 'https://ror.org/03sj17n32 Molecular Innovations (United States)'),
(23196, 'https://ror.org/03sja0d46', 'en', 1, 'https://ror.org/03sja0d46 Village for Families and Children'),
(23197, 'https://ror.org/03skmn868', 'no_lang_code', 1, 'https://ror.org/03skmn868 Saltworks Technologies (Canada)'),
(23198, 'https://ror.org/03smwm886', 'en', 1, 'https://ror.org/03smwm886 Higher Institute for Tourism, Hotels and Computer المعهد العالى Ł„Ł„Ų³ŁŠŲ§Ų­Ų© ŁˆŲ§Ł„ŁŁ†Ų§ŲÆŁ‚ ŁˆŲ§Ł„Ų­Ų§Ų³ŲØ الآلى - Ų§Ł„Ų³ŁŠŁˆŁ / Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(23199, 'https://ror.org/03snwcw72', 'en', 1, 'https://ror.org/03snwcw72 Sittingbourne Memorial Hospital'),
(23200, 'https://ror.org/03spqk736', 'fr', 1, 'https://ror.org/03spqk736 Haute Ɖcole de Commerce et de Management'),
(23201, 'https://ror.org/03srdnd02', 'en', 1, 'https://ror.org/03srdnd02 Livingstone Community Hospital'),
(23202, 'https://ror.org/03syqx014', 'no_lang_code', 1, 'https://ror.org/03syqx014 Marie Curie Association'),
(23203, 'https://ror.org/03sz3nv18', 'no_lang_code', 1, 'https://ror.org/03sz3nv18 VHsquared (United Kingdom)'),
(23204, 'https://ror.org/03szqsq92', 'en', 1, 'https://ror.org/03szqsq92 Carter Observatory'),
(23205, 'https://ror.org/03t0xat23', 'no_lang_code', 1, 'https://ror.org/03t0xat23 Paralab (Portugal)'),
(23206, 'https://ror.org/03t1bjt91', 'es', 1, 'https://ror.org/03t1bjt91 Universidad del Golfo'),
(23207, 'https://ror.org/03t1pvr70', 'en', 1, 'https://ror.org/03t1pvr70 Roca'),
(23208, 'https://ror.org/03t2yqt79', 'no_lang_code', 1, 'https://ror.org/03t2yqt79 Plastal (Italy)'),
(23209, 'https://ror.org/03t542436', 'en', 1, 'https://ror.org/03t542436 Berkshire Healthcare NHS Foundation Trust'),
(23210, 'https://ror.org/03t59pc95', 'en', 1, 'https://ror.org/03t59pc95 Pennine Care NHS Foundation Trust'),
(23211, 'https://ror.org/03t7ag653', 'ro', 1, 'https://ror.org/03t7ag653 Institutul National de Cercetare Dezvoltare pentru Tehnologii Criogenice si Izotopice'),
(23212, 'https://ror.org/03t7c1217', 'en', 1, 'https://ror.org/03t7c1217 Keiju Medical Center ęµåÆæē·åˆē—…é™¢'),
(23213, 'https://ror.org/03t8fag37', 'no_lang_code', 1, 'https://ror.org/03t8fag37 Tiscali (Italy)'),
(23214, 'https://ror.org/03t9xp890', 'en', 1, 'https://ror.org/03t9xp890 East Cleveland Primary Care Hospital'),
(23215, 'https://ror.org/03tarqk49', 'en', 1, 'https://ror.org/03tarqk49 Hospital of St. Cross'),
(23216, 'https://ror.org/03tbnx652', 'en', 1, 'https://ror.org/03tbnx652 Missouri Area Health Education Center'),
(23217, 'https://ror.org/03tdxj229', 'no_lang_code', 1, 'https://ror.org/03tdxj229 VPIphotonics (Germany)'),
(23218, 'https://ror.org/03tgm5090', 'en', 1, 'https://ror.org/03tgm5090 Observatorio Astronómico Nacional de España Spanish National Observatory'),
(23219, 'https://ror.org/03thbf157', 'en', 1, 'https://ror.org/03thbf157 Bolivarian University of Venezuela Universidad Bolivariana de Venezuela'),
(23220, 'https://ror.org/03tjw1547', 'en', 1, 'https://ror.org/03tjw1547 Innovate Niagara'),
(23221, 'https://ror.org/03tqyjq53', 'no_lang_code', 1, 'https://ror.org/03tqyjq53 Burness Corlett Three Quays (United Kingdom)'),
(23222, 'https://ror.org/03twab133', 'no_lang_code', 1, 'https://ror.org/03twab133 Viper RF (United Kingdom)'),
(23223, 'https://ror.org/03twmm656', 'da', 1, 'https://ror.org/03twmm656 Syddansk Erhvervsskole'),
(23224, 'https://ror.org/03tx9kw79', 'en', 1, 'https://ror.org/03tx9kw79 The Hydrogen and Fuel Cell Center The Zentrum für BrennstoffzellenTechnik'),
(23225, 'https://ror.org/03txgdk33', 'no_lang_code', 1, 'https://ror.org/03txgdk33 Probetex (United States)'),
(23226, 'https://ror.org/03tz0hf33', 'es', 1, 'https://ror.org/03tz0hf33 Universidad Internacional San Isidro Labrador'),
(23227, 'https://ror.org/03tz9dg23', 'fr', 1, 'https://ror.org/03tz9dg23 La BoƮte Ơ lettres'),
(23228, 'https://ror.org/03v02jr28', 'no_lang_code', 1, 'https://ror.org/03v02jr28 Amerindian Research in Quebec (Canada)'),
(23229, 'https://ror.org/03v11kp57', 'no_lang_code', 1, 'https://ror.org/03v11kp57 Merlexi (United States)'),
(23230, 'https://ror.org/03v1e0p66', 'no_lang_code', 1, 'https://ror.org/03v1e0p66 Smiths Detection (France)'),
(23231, 'https://ror.org/03v1s7z10', 'no_lang_code', 1, 'https://ror.org/03v1s7z10 Norcontel'),
(23232, 'https://ror.org/03v330a52', 'en', 1, 'https://ror.org/03v330a52 Tunbridge Wells Hospital'),
(23233, 'https://ror.org/03v5ycz03', 'en', 1, 'https://ror.org/03v5ycz03 Universidad de Belgrano University of Belgrano UniversitƩ de belgrano'),
(23234, 'https://ror.org/03v7qgt03', 'no_lang_code', 1, 'https://ror.org/03v7qgt03 Siemens (Sweden)'),
(23235, 'https://ror.org/03v8ncw80', 'no_lang_code', 1, 'https://ror.org/03v8ncw80 Robinson Brothers (United Kingdom)'),
(23236, 'https://ror.org/03v8pzh67', 'no_lang_code', 1, 'https://ror.org/03v8pzh67 Eurofins (Germany)'),
(23237, 'https://ror.org/03v96p621', 'no_lang_code', 1, 'https://ror.org/03v96p621 TenCate (Netherlands)'),
(23238, 'https://ror.org/03vbb1674', 'en', 1, 'https://ror.org/03vbb1674 Longton Cottage Hospital'),
(23239, 'https://ror.org/03vcjwt28', 'en', 1, 'https://ror.org/03vcjwt28 Organisation for International Dialogue and Conflict Management'),
(23240, 'https://ror.org/03vd9ca20', 'no_lang_code', 1, 'https://ror.org/03vd9ca20 Pflegewerk (Germany)'),
(23241, 'https://ror.org/03vfey433', 'no_lang_code', 1, 'https://ror.org/03vfey433 Lion Capital (United Kingdom)'),
(23242, 'https://ror.org/03vgpfk89', 'nl', 1, 'https://ror.org/03vgpfk89 Waste'),
(23243, 'https://ror.org/03vgyhc77', 'en', 1, 'https://ror.org/03vgyhc77 Northrise University'),
(23244, 'https://ror.org/03vn3wv31', 'en', 1, 'https://ror.org/03vn3wv31 Midhurst Community Hospital'),
(23245, 'https://ror.org/03vr42a56', 'en', 1, 'https://ror.org/03vr42a56 Oniversite Toamasina University of Toamasina UniversitƩ de Toamasina'),
(23246, 'https://ror.org/03vt4hz19', 'en', 1, 'https://ror.org/03vt4hz19 Belarusian State University of Transport Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń‚Ń€Š°Š½ŃŠæŠ°Ń€Ń‚Ńƒ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ транспорта'),
(23247, 'https://ror.org/03vtyzs10', 'en', 1, 'https://ror.org/03vtyzs10 Mersey Care NHS Trust'),
(23248, 'https://ror.org/03vvfjv50', 'en', 1, 'https://ror.org/03vvfjv50 OpticsValley'),
(23249, 'https://ror.org/03vyvsr30', 'en', 1, 'https://ror.org/03vyvsr30 Roane County Anti-Drug Coalition'),
(23250, 'https://ror.org/03w0prb16', 'es', 1, 'https://ror.org/03w0prb16 Observatorio San Calixto'),
(23251, 'https://ror.org/03w1cw951', 'en', 1, 'https://ror.org/03w1cw951 Juan AgustĆ­n Maza University Universidad Juan AgustĆ­n Maza'),
(23252, 'https://ror.org/03w3fxa59', 'no_lang_code', 1, 'https://ror.org/03w3fxa59 Technodyne International (United Kingdom)'),
(23253, 'https://ror.org/03w40bm70', 'no_lang_code', 1, 'https://ror.org/03w40bm70 Manufacturas Serviplast (Spain)'),
(23254, 'https://ror.org/03w44ry84', 'en', 1, 'https://ror.org/03w44ry84 Mico University College'),
(23255, 'https://ror.org/03w4vm615', 'en', 1, 'https://ror.org/03w4vm615 Kitakashiwa Rehabilitation General Hospital åŒ—ęŸćƒŖćƒćƒ“ćƒŖē·åˆē—…é™¢'),
(23256, 'https://ror.org/03w52sy75', 'no_lang_code', 1, 'https://ror.org/03w52sy75 Moma (Italy)'),
(23257, 'https://ror.org/03w6mvs43', 'en', 1, 'https://ror.org/03w6mvs43 Western International University'),
(23258, 'https://ror.org/03wa0f361', 'es', 1, 'https://ror.org/03wa0f361 Instituto Latinoamericano de Computación'),
(23259, 'https://ror.org/03wb76824', 'es', 1, 'https://ror.org/03wb76824 The New World University Universidad Nuevo Mundo'),
(23260, 'https://ror.org/03wbarw78', 'es', 1, 'https://ror.org/03wbarw78 Universidad Nacional de Tumbes'),
(23261, 'https://ror.org/03wbhaj27', 'no_lang_code', 1, 'https://ror.org/03wbhaj27 VIB Isolatietechniek (Netherlands)'),
(23262, 'https://ror.org/03wcr7550', 'en', 1, 'https://ror.org/03wcr7550 Sendai Astronomical Observatory'),
(23263, 'https://ror.org/03wezdz19', 'es', 1, 'https://ror.org/03wezdz19 Universidad Nacional Experimental de los Llanos Centrales Rómulo Gallegos'),
(23264, 'https://ror.org/03wgc9z97', 'en', 1, 'https://ror.org/03wgc9z97 Stanley Park Ecology Society'),
(23265, 'https://ror.org/03wgh3441', 'es', 1, 'https://ror.org/03wgh3441 Colegio FrancƩs Hidalgo de MƩxico'),
(23266, 'https://ror.org/03whcj350', 'en', 1, 'https://ror.org/03whcj350 Universidad FermĆ­n Toro University FermĆ­n Toro'),
(23267, 'https://ror.org/03wjfkr41', 'no_lang_code', 1, 'https://ror.org/03wjfkr41 Smiths Group (Germany)'),
(23268, 'https://ror.org/03wjn2094', 'es', 1, 'https://ror.org/03wjn2094 Universidad Privada del Valle'),
(23269, 'https://ror.org/03wkbyb17', 'en', 1, 'https://ror.org/03wkbyb17 Morioka University 盛岔大学'),
(23270, 'https://ror.org/03ws9cb65', 'fr', 1, 'https://ror.org/03ws9cb65 Ɖcole SupĆ©rieure AlgĆ©rienne des Affaires'),
(23271, 'https://ror.org/03wsag231', 'en', 1, 'https://ror.org/03wsag231 Bureau suisse de prƩvention des accidents Swiss Council for Accident Prevention'),
(23272, 'https://ror.org/03wtgv294', 'no_lang_code', 1, 'https://ror.org/03wtgv294 Regulus (Czechia)'),
(23273, 'https://ror.org/03wwbgv53', 'es', 1, 'https://ror.org/03wwbgv53 Escuela Argentina de Negocios'),
(23274, 'https://ror.org/03wwn0z54', 'no_lang_code', 1, 'https://ror.org/03wwn0z54 NovaMechanics (Cyprus)'),
(23275, 'https://ror.org/03wwspn40', 'en', 1, 'https://ror.org/03wwspn40 Palestine Polytechnic University Ų¬Ų§Ł…Ų¹Ų© ŲØŁˆŁ„ŁŠŲŖŁƒŁ†Łƒ ŁŁ„Ų³Ų·ŁŠŁ†'),
(23276, 'https://ror.org/03wz3nt64', 'es', 1, 'https://ror.org/03wz3nt64 Universidad Autónoma del Noreste'),
(23277, 'https://ror.org/03x0e3627', 'no_lang_code', 1, 'https://ror.org/03x0e3627 Regens (Hungary)'),
(23278, 'https://ror.org/03x2gtw59', 'no_lang_code', 1, 'https://ror.org/03x2gtw59 TagArray (United States)'),
(23279, 'https://ror.org/03x3ydk90', 'en', 1, 'https://ror.org/03x3ydk90 Finansministeriet Ministry of Finance Valtiovarainministeriƶ'),
(23280, 'https://ror.org/03x43nn58', 'de', 1, 'https://ror.org/03x43nn58 Bagnoud Observatory, Observatoire FranƧois-Xavier Bagnoud'),
(23281, 'https://ror.org/03x4dqr80', 'no_lang_code', 1, 'https://ror.org/03x4dqr80 SiliCycle (Canada)'),
(23282, 'https://ror.org/03x53c263', 'es', 1, 'https://ror.org/03x53c263 Facultad de Teologƭa del Uruguay MonseƱor Mariano Soler'),
(23283, 'https://ror.org/03x653m21', 'es', 1, 'https://ror.org/03x653m21 Universidad Autónoma del Paraguay'),
(23284, 'https://ror.org/03x6w2s62', 'fr', 1, 'https://ror.org/03x6w2s62 UniversitƩ Protestante d''Afrique Centrale'),
(23285, 'https://ror.org/03xaemp51', 'no_lang_code', 1, 'https://ror.org/03xaemp51 Phoebus Optoelectronics (United States)'),
(23286, 'https://ror.org/03xbfbm37', 'pt', 1, 'https://ror.org/03xbfbm37 Centro UniversitƔrio do Cerrado Patrocƭnio'),
(23287, 'https://ror.org/03xbt0w63', 'en', 1, 'https://ror.org/03xbt0w63 New Orleans AIDS Task Force'),
(23288, 'https://ror.org/03xe7w214', 'en', 1, 'https://ror.org/03xe7w214 East–West University'),
(23289, 'https://ror.org/03xe86v46', 'en', 1, 'https://ror.org/03xe86v46 Wisconsin International University College'),
(23290, 'https://ror.org/03xgtvr81', 'it', 1, 'https://ror.org/03xgtvr81 Italian Labour Union Unione Italiana del Lavoro'),
(23291, 'https://ror.org/03xmq9934', 'en', 1, 'https://ror.org/03xmq9934 Han Dan City Eye Hospital - The Third Hospital of Handan é‚Æéƒøåø‚ēœ¼ē§‘åŒ»é™¢ļ¼ˆé‚Æéƒøåø‚ē¬¬äø‰åŒ»é™¢ļ¼‰'),
(23292, 'https://ror.org/03xnr5143', 'en', 1, 'https://ror.org/03xnr5143 Barking, Havering And Redbridge University Hospitals NHS Trust'),
(23293, 'https://ror.org/03xvqcz58', 'en', 1, 'https://ror.org/03xvqcz58 Mount Wilson Observatory Observatoire du mont wilson Observatorio Monte Wilson'),
(23294, 'https://ror.org/03xyda961', 'en', 1, 'https://ror.org/03xyda961 Northland Pioneer College'),
(23295, 'https://ror.org/03xz4j444', 'fr', 1, 'https://ror.org/03xz4j444 Ɖcole Normale SupĆ©rieure de Constantine'),
(23296, 'https://ror.org/03y0ep822', 'en', 1, 'https://ror.org/03y0ep822 World Health Organization - Zambia'),
(23297, 'https://ror.org/03y2yf271', 'fr', 1, 'https://ror.org/03y2yf271 Time UniversitƩ'),
(23298, 'https://ror.org/03y3mds25', 'no_lang_code', 1, 'https://ror.org/03y3mds25 Phoenix Technologies (Canada)'),
(23299, 'https://ror.org/03y42nm11', 'es', 1, 'https://ror.org/03y42nm11 Universidad de Ciencias Pedagógicas Félix Varela Morales'),
(23300, 'https://ror.org/03y5bfq47', 'en', 1, 'https://ror.org/03y5bfq47 Health International Private University'),
(23301, 'https://ror.org/03y69cp37', 'no_lang_code', 1, 'https://ror.org/03y69cp37 Veris Technologies (United States)'),
(23302, 'https://ror.org/03y7n6m87', 'en', 1, 'https://ror.org/03y7n6m87 Norton Sound Health Corporation'),
(23303, 'https://ror.org/03y8hzv17', 'no_lang_code', 1, 'https://ror.org/03y8hzv17 Southeast'),
(23304, 'https://ror.org/03ybzg790', 'en', 1, 'https://ror.org/03ybzg790 Shoreline Community College'),
(23305, 'https://ror.org/03ydszt61', 'fr', 1, 'https://ror.org/03ydszt61 Ɖcole SupĆ©rieure de Banque المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للمصرفة'),
(23306, 'https://ror.org/03ye93e96', 'pt', 1, 'https://ror.org/03ye93e96 Centro UniversitÔrio Monte Serrat, São Judas Campus Unimonte'),
(23307, 'https://ror.org/03yff7e55', 'no_lang_code', 1, 'https://ror.org/03yff7e55 Unisys (Belgium)'),
(23308, 'https://ror.org/03ygyva39', 'en', 1, 'https://ror.org/03ygyva39 Walnut Tree Hospital'),
(23309, 'https://ror.org/03yj8bt58', 'fr', 1, 'https://ror.org/03yj8bt58 Ɖcole Nationale de Commerce et de Gestion de Tanger المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للتجارة ŁˆŲ§Ł„ŲŖŲ³ŁŠŁŠŲ± بطنجة'),
(23310, 'https://ror.org/03yk2q786', 'en', 1, 'https://ror.org/03yk2q786 Wye Valley NHS Trust'),
(23311, 'https://ror.org/03ykx6g33', 'pt', 1, 'https://ror.org/03ykx6g33 Centro Universitario FIAM FAAM'),
(23312, 'https://ror.org/03ymdz715', 'no_lang_code', 1, 'https://ror.org/03ymdz715 MIDI (United States)'),
(23313, 'https://ror.org/03yph8055', 'en', 1, 'https://ror.org/03yph8055 Changsha University of Science and Technology 长沙理巄大学'),
(23314, 'https://ror.org/03ytfqd86', 'no_lang_code', 1, 'https://ror.org/03ytfqd86 UD-GenoMed (Hungary)'),
(23315, 'https://ror.org/03yy7hq10', 'en', 1, 'https://ror.org/03yy7hq10 Grantham University'),
(23316, 'https://ror.org/03yy8w025', 'en', 1, 'https://ror.org/03yy8w025 Nuclear Safety Research Institute NukleÔris BiztonsÔgi Kutatóintézet'),
(23317, 'https://ror.org/03yz6x113', 'no_lang_code', 1, 'https://ror.org/03yz6x113 Cisco Systems (Israel)'),
(23318, 'https://ror.org/03yzht074', 'es', 1, 'https://ror.org/03yzht074 Universidad Valle del Momboy'),
(23319, 'https://ror.org/03z02dh69', 'en', 1, 'https://ror.org/03z02dh69 The South Cheshire Private Hospital'),
(23320, 'https://ror.org/03z0f3m78', 'es', 1, 'https://ror.org/03z0f3m78 Universidad del PacĆ­fico'),
(23321, 'https://ror.org/03z0m9f65', 'es', 1, 'https://ror.org/03z0m9f65 Universidad Pablo Guardado ChƔvez'),
(23322, 'https://ror.org/03z157k13', 'no_lang_code', 1, 'https://ror.org/03z157k13 OceanWorks International (Canada)'),
(23323, 'https://ror.org/03z30sy43', 'no_lang_code', 1, 'https://ror.org/03z30sy43 Imenco (Norway)'),
(23324, 'https://ror.org/03z3p7a13', 'no_lang_code', 1, 'https://ror.org/03z3p7a13 Turbowinds (Belgium)'),
(23325, 'https://ror.org/03z59cm68', 'en', 1, 'https://ror.org/03z59cm68 Henley-Putnam School of Strategic Security'),
(23326, 'https://ror.org/03z7yy926', 'no_lang_code', 1, 'https://ror.org/03z7yy926 Techneat Engineering (United Kingdom)'),
(23327, 'https://ror.org/03z9psf49', 'no_lang_code', 1, 'https://ror.org/03z9psf49 Protabit (United States)'),
(23328, 'https://ror.org/03zaddr67', 'en', 1, 'https://ror.org/03zaddr67 Moorfields Eye Hospital NHS Foundation Trust'),
(23329, 'https://ror.org/03zay0n25', 'no_lang_code', 1, 'https://ror.org/03zay0n25 Nasfine Photonics (United States)'),
(23330, 'https://ror.org/03zbds496', 'en', 1, 'https://ror.org/03zbds496 Berrywood Hospital'),
(23331, 'https://ror.org/03zeb7y98', 'en', 1, 'https://ror.org/03zeb7y98 Institute of Social Work'),
(23332, 'https://ror.org/03zefc030', 'en', 1, 'https://ror.org/03zefc030 Lancashire Care NHS Foundation Trust'),
(23333, 'https://ror.org/03zhs2308', 'en', 1, 'https://ror.org/03zhs2308 Royal Society of Tropical Medicine and Hygiene'),
(23334, 'https://ror.org/03zj6v943', 'en', 1, 'https://ror.org/03zj6v943 Norfolk County Council'),
(23335, 'https://ror.org/03zkf9p37', 'fr', 1, 'https://ror.org/03zkf9p37 Ɖcole SupĆ©rieure de Management AppliquĆ©'),
(23336, 'https://ror.org/03zrqq643', 'en', 1, 'https://ror.org/03zrqq643 Santa Barbara County Public Health Department'),
(23337, 'https://ror.org/03zs39p74', 'en', 1, 'https://ror.org/03zs39p74 Altrincham Hospital'),
(23338, 'https://ror.org/03zsfdv59', 'no_lang_code', 1, 'https://ror.org/03zsfdv59 TecnologĆ­as y Equipos para el Medio Ambiente (Spain)'),
(23339, 'https://ror.org/03zttj648', 'no_lang_code', 1, 'https://ror.org/03zttj648 Tractell (United States)'),
(23340, 'https://ror.org/03ztzw430', 'en', 1, 'https://ror.org/03ztzw430 Uckfield Community Hospital'),
(23341, 'https://ror.org/03zvd4k21', 'no_lang_code', 1, 'https://ror.org/03zvd4k21 CFI Technologies (United States)'),
(23342, 'https://ror.org/03zvhsj76', 'no_lang_code', 1, 'https://ror.org/03zvhsj76 Microcosm (United States)'),
(23343, 'https://ror.org/03zw9a495', 'no_lang_code', 1, 'https://ror.org/03zw9a495 Quantos (France)'),
(23344, 'https://ror.org/03zxhtw58', 'no_lang_code', 1, 'https://ror.org/03zxhtw58 Manufacture d''Orgues Muhleisen (France)'),
(23345, 'https://ror.org/03zzjgp12', 'en', 1, 'https://ror.org/03zzjgp12 South Carolina Sea Grant Consortium'),
(23346, 'https://ror.org/0400yw722', 'en', 1, 'https://ror.org/0400yw722 South African College of Applied Psychology'),
(23347, 'https://ror.org/04020mn90', 'no_lang_code', 1, 'https://ror.org/04020mn90 Oxitec (United Kingdom)'),
(23348, 'https://ror.org/04031z735', 'pt', 1, 'https://ror.org/04031z735 Universidade Brasil'),
(23349, 'https://ror.org/0405vqf70', 'no_lang_code', 1, 'https://ror.org/0405vqf70 Scholastic Corporation (United States)'),
(23350, 'https://ror.org/040747t72', 'no_lang_code', 1, 'https://ror.org/040747t72 Substrakt (United Kingdom)'),
(23351, 'https://ror.org/0408ee822', 'en', 1, 'https://ror.org/0408ee822 Quebec Labrador Foundation'),
(23352, 'https://ror.org/040akr227', 'es', 1, 'https://ror.org/040akr227 Universidad Nacional José Faustino SÔnchez Carrión'),
(23353, 'https://ror.org/040c7js64', 'no_lang_code', 1, 'https://ror.org/040c7js64 Xi''an Shiyou University č„æå®‰ēŸ³ę²¹å¤§å­¦'),
(23354, 'https://ror.org/040cwqt59', 'no_lang_code', 1, 'https://ror.org/040cwqt59 Pemu (Hungary)'),
(23355, 'https://ror.org/040hyy284', 'es', 1, 'https://ror.org/040hyy284 Universidad Experimental Felix Adam, Universidad Experimental FƩlix Adam'),
(23356, 'https://ror.org/040nc8096', 'no_lang_code', 1, 'https://ror.org/040nc8096 Teknoloji Arastirma ve Gelistirme Endustriyel Urunler Bilisim Teknolojileri San Tic'),
(23357, 'https://ror.org/040ngxe09', 'en', 1, 'https://ror.org/040ngxe09 Ashtead Hospital'),
(23358, 'https://ror.org/040p70661', 'es', 1, 'https://ror.org/040p70661 Universidad Intercultural de Chiapas'),
(23359, 'https://ror.org/040ppgc54', 'no_lang_code', 1, 'https://ror.org/040ppgc54 R-Biopharm (Germany)'),
(23360, 'https://ror.org/040r3xq19', 'es', 1, 'https://ror.org/040r3xq19 Universidad de León'),
(23361, 'https://ror.org/040tj8752', 'no_lang_code', 1, 'https://ror.org/040tj8752 Multicert (Portugal)'),
(23362, 'https://ror.org/040tkk892', 'es', 1, 'https://ror.org/040tkk892 Universidad Nacional Experimental MarĆ­tima del Caribe'),
(23363, 'https://ror.org/040tqqd15', 'en', 1, 'https://ror.org/040tqqd15 Universidad de Cundinamarca University of Cundinamarca'),
(23364, 'https://ror.org/040v4pr09', 'no_lang_code', 1, 'https://ror.org/040v4pr09 RSK Assessments (United States)'),
(23365, 'https://ror.org/040w1dr55', 'en', 1, 'https://ror.org/040w1dr55 University of the Arts'),
(23366, 'https://ror.org/040ycw505', 'no_lang_code', 1, 'https://ror.org/040ycw505 Oracle (Belgium)'),
(23367, 'https://ror.org/0410akr80', 'en', 1, 'https://ror.org/0410akr80 Esperance Hospital'),
(23368, 'https://ror.org/041105s88', 'en', 1, 'https://ror.org/041105s88 Dovedale Day Hospital'),
(23369, 'https://ror.org/0411fwb51', 'en', 1, 'https://ror.org/0411fwb51 Ellen Badger Hospital'),
(23370, 'https://ror.org/0413qrt75', 'no_lang_code', 1, 'https://ror.org/0413qrt75 Stirling Technology (United States)'),
(23371, 'https://ror.org/0413w0z02', 'en', 1, 'https://ror.org/0413w0z02 Northeast Document Conservation Center'),
(23372, 'https://ror.org/0414fnh91', 'en', 1, 'https://ror.org/0414fnh91 Huntington University'),
(23373, 'https://ror.org/0415cr103', 'no_lang_code', 1, 'https://ror.org/0415cr103 Novo Nordisk (United Kingdom)'),
(23374, 'https://ror.org/041d0jh94', 'en', 1, 'https://ror.org/041d0jh94 Western Massachusetts Training Consortium'),
(23375, 'https://ror.org/041deym60', 'en', 1, 'https://ror.org/041deym60 Center for Technology & Innovation Management'),
(23376, 'https://ror.org/041drhd97', 'no_lang_code', 1, 'https://ror.org/041drhd97 United Medix Laboratories (Finland) Yhtyneet Medix Laboratoriot'),
(23377, 'https://ror.org/041f1nz98', 'pt', 1, 'https://ror.org/041f1nz98 Universidade TƩcnica de MoƧambique'),
(23378, 'https://ror.org/041ftcz16', 'en', 1, 'https://ror.org/041ftcz16 Naugatuck Valley Community College'),
(23379, 'https://ror.org/041g8ev90', 'no_lang_code', 1, 'https://ror.org/041g8ev90 Optomesures (France)'),
(23380, 'https://ror.org/041geh851', 'en', 1, 'https://ror.org/041geh851 Melksham Community Hospital'),
(23381, 'https://ror.org/041gqhg24', 'en', 1, 'https://ror.org/041gqhg24 University of Maine at Augusta'),
(23382, 'https://ror.org/041gzn235', 'en', 1, 'https://ror.org/041gzn235 Hendon Hospital'),
(23383, 'https://ror.org/041h8y823', 'en', 1, 'https://ror.org/041h8y823 Ecomuseum Zoo Zoo Ecomuseum'),
(23384, 'https://ror.org/041mj3y24', 'en', 1, 'https://ror.org/041mj3y24 Eccleshill Community Hospital'),
(23385, 'https://ror.org/041q37h40', 'en', 1, 'https://ror.org/041q37h40 Cambridgeshire Community Services NHS Trust'),
(23386, 'https://ror.org/041r3wk12', 'en', 1, 'https://ror.org/041r3wk12 Partnership for Food Safety Education'),
(23387, 'https://ror.org/041rwsw06', 'en', 1, 'https://ror.org/041rwsw06 Igbinedion University'),
(23388, 'https://ror.org/041vrah58', 'no_lang_code', 1, 'https://ror.org/041vrah58 Nanocopoeia (United States)'),
(23389, 'https://ror.org/041wsqp45', 'es', 1, 'https://ror.org/041wsqp45 Institución Universitaria Colegios de Colombia'),
(23390, 'https://ror.org/041xceh77', 'no_lang_code', 1, 'https://ror.org/041xceh77 Paques (Netherlands)'),
(23391, 'https://ror.org/041z9yd20', 'en', 1, 'https://ror.org/041z9yd20 InsPIRE Network for Environment'),
(23392, 'https://ror.org/0422ksx61', 'en', 1, 'https://ror.org/0422ksx61 Prostate Centre’s Translational Research Initiative for Accelerated Discovery and Development'),
(23393, 'https://ror.org/0422kxg07', 'nl', 1, 'https://ror.org/0422kxg07 Mariaziekenhuis'),
(23394, 'https://ror.org/0423djy10', 'no_lang_code', 1, 'https://ror.org/0423djy10 Naturstoff-Technik (Germany)'),
(23395, 'https://ror.org/04240b022', 'no_lang_code', 1, 'https://ror.org/04240b022 Feonic Technology (United Kingdom)'),
(23396, 'https://ror.org/0424nxb97', 'en', 1, 'https://ror.org/0424nxb97 National Alliance of Healthcare Purchaser Coalitions'),
(23397, 'https://ror.org/0425hsv68', 'no_lang_code', 1, 'https://ror.org/0425hsv68 PaxVax (United States)'),
(23398, 'https://ror.org/042647v76', 'en', 1, 'https://ror.org/042647v76 Together Enhancing Awareness Coalition'),
(23399, 'https://ror.org/0426xa281', 'es', 1, 'https://ror.org/0426xa281 Universidad Tecnológica de Aguascalientes'),
(23400, 'https://ror.org/0429kgt51', 'en', 1, 'https://ror.org/0429kgt51 Geophysical Institute of Israel המכון הגיאופיהי ×œ×™×©×Ø××œ'),
(23401, 'https://ror.org/042a0mn98', 'no_lang_code', 1, 'https://ror.org/042a0mn98 Essent (Netherlands)'),
(23402, 'https://ror.org/042bpn241', 'en', 1, 'https://ror.org/042bpn241 Bayside Hospital for Animals'),
(23403, 'https://ror.org/042c61z58', 'no_lang_code', 1, 'https://ror.org/042c61z58 SimuTech Group (United States)'),
(23404, 'https://ror.org/042dcve90', 'en', 1, 'https://ror.org/042dcve90 Rose State College'),
(23405, 'https://ror.org/042g3qa69', 'en', 1, 'https://ror.org/042g3qa69 Xian Yang Central Hospital å’øé˜³åø‚äø­åæƒåŒ»é™¢'),
(23406, 'https://ror.org/042ga5208', 'es', 1, 'https://ror.org/042ga5208 Las Campanas Observatory'),
(23407, 'https://ror.org/042gckq23', 'en', 1, 'https://ror.org/042gckq23 Peruvian Union University Universidad Peruana Unión'),
(23408, 'https://ror.org/042ge2m79', 'no_lang_code', 1, 'https://ror.org/042ge2m79 OptoNet (United States)'),
(23409, 'https://ror.org/042jnea65', 'en', 1, 'https://ror.org/042jnea65 Institute of Agricultural Economics and Information'),
(23410, 'https://ror.org/042ry7b85', 'en', 1, 'https://ror.org/042ry7b85 Shanxi Provincial Children''s Hospital å±±č„æēœå¦‡å¹¼äæå„é™¢'),
(23411, 'https://ror.org/042vkw919', 'no_lang_code', 1, 'https://ror.org/042vkw919 Oxis Energy (United Kingdom)'),
(23412, 'https://ror.org/042x9qq51', 'en', 1, 'https://ror.org/042x9qq51 University of Zalingei Ų¬Ų§Ł…Ų¹Ų© Ų²Ų§Ł„Ł†Ų¬ŁŠ'),
(23413, 'https://ror.org/042xekv98', 'es', 1, 'https://ror.org/042xekv98 Universidad Tamaulipeca'),
(23414, 'https://ror.org/042xfk211', 'es', 1, 'https://ror.org/042xfk211 Universidad PolitƩcnica de Baja California'),
(23415, 'https://ror.org/042xxm757', 'no_lang_code', 1, 'https://ror.org/042xxm757 Viotech Communications (France)'),
(23416, 'https://ror.org/042y9a646', 'en', 1, 'https://ror.org/042y9a646 International Institute for Higher Education in Morocco'),
(23417, 'https://ror.org/042yy9v72', 'es', 1, 'https://ror.org/042yy9v72 Fundación Tecnológica Antonio de Arévalo'),
(23418, 'https://ror.org/0431avj27', 'en', 1, 'https://ror.org/0431avj27 National University of Education Enrique GuzmÔn y Valle Universidad Nacional de Educación Enrique GuzmÔn y Valle'),
(23419, 'https://ror.org/0431htb77', 'no_lang_code', 1, 'https://ror.org/0431htb77 Vukov Extra (Slovakia)'),
(23420, 'https://ror.org/0431re516', 'no_lang_code', 1, 'https://ror.org/0431re516 Ylec Consultants'),
(23421, 'https://ror.org/0432yv872', 'fr', 1, 'https://ror.org/0432yv872 UniversitƩ PƩdagogique Nationale'),
(23422, 'https://ror.org/04331z002', 'es', 1, 'https://ror.org/04331z002 Corporación Universitaria Iberoamericana'),
(23423, 'https://ror.org/04344z734', 'no_lang_code', 1, 'https://ror.org/04344z734 Romax Technology (United Kingdom)'),
(23424, 'https://ror.org/0436f0775', 'en', 1, 'https://ror.org/0436f0775 Ashford Hospital'),
(23425, 'https://ror.org/0436xg366', 'es', 1, 'https://ror.org/0436xg366 Instituto Universitario de Ciencias de la Salud - Fundación Héctor A. Barceló'),
(23426, 'https://ror.org/043753e82', 'no_lang_code', 1, 'https://ror.org/043753e82 Sarmap (Switzerland)'),
(23427, 'https://ror.org/04382kq29', 'es', 1, 'https://ror.org/04382kq29 Universidad Nacional Experimental de los Llanos Occidentales Ezequiel Zamora'),
(23428, 'https://ror.org/04389kb95', 'en', 1, 'https://ror.org/04389kb95 Queen Mary''s Hospital'),
(23429, 'https://ror.org/043djj103', 'en', 1, 'https://ror.org/043djj103 Goole and District Hospital'),
(23430, 'https://ror.org/043e0fg15', 'en', 1, 'https://ror.org/043e0fg15 Chartered Institute of Marketing Ghana'),
(23431, 'https://ror.org/043eemy38', 'pt', 1, 'https://ror.org/043eemy38 Centro UniversitƔrio de Formiga'),
(23432, 'https://ror.org/043f17j87', 'no_lang_code', 1, 'https://ror.org/043f17j87 Pre Chasm Research Limited (United Kingdom)'),
(23433, 'https://ror.org/043gn8060', 'en', 1, 'https://ror.org/043gn8060 Adventist University of Haiti Université Adventiste d''Haïti'),
(23434, 'https://ror.org/043h8xk50', 'es', 1, 'https://ror.org/043h8xk50 Universidad Maya'),
(23435, 'https://ror.org/043hwx747', 'no_lang_code', 1, 'https://ror.org/043hwx747 Proteome Sciences (United Kingdom)'),
(23436, 'https://ror.org/043kgww95', 'en', 1, 'https://ror.org/043kgww95 Fowey Hospital'),
(23437, 'https://ror.org/043kj4v41', 'en', 1, 'https://ror.org/043kj4v41 William F Ryan Community Health Center'),
(23438, 'https://ror.org/043tekr24', 'en', 1, 'https://ror.org/043tekr24 Skipton General Hospital'),
(23439, 'https://ror.org/043tt0v89', 'en', 1, 'https://ror.org/043tt0v89 Calderstones Hospital'),
(23440, 'https://ror.org/043vxnh96', 'en', 1, 'https://ror.org/043vxnh96 Universidade de Cruz Alta University of Cruz Alta'),
(23441, 'https://ror.org/043xyyp36', 'en', 1, 'https://ror.org/043xyyp36 Bethesda University'),
(23442, 'https://ror.org/043yfh051', 'de', 1, 'https://ror.org/043yfh051 Prof. Hess Kinderklinik'),
(23443, 'https://ror.org/043z5qa52', 'en', 1, 'https://ror.org/043z5qa52 Lead City University'),
(23444, 'https://ror.org/043zhb260', 'en', 1, 'https://ror.org/043zhb260 Buxton Hospital'),
(23445, 'https://ror.org/0440cy367', 'no_lang_code', 1, 'https://ror.org/0440cy367 University of Liberia'),
(23446, 'https://ror.org/0441qm375', 'no_lang_code', 1, 'https://ror.org/0441qm375 Meteotest (Switzerland)'),
(23447, 'https://ror.org/04454sk28', 'no_lang_code', 1, 'https://ror.org/04454sk28 Aer Lingus (Ireland)'),
(23448, 'https://ror.org/0446qvy77', 'en', 1, 'https://ror.org/0446qvy77 Fuji Heavy Industries Health Insurance Society Ota Memorial Hospital ē·åˆå¤Ŗē”°ē—…é™¢'),
(23449, 'https://ror.org/044bdx604', 'en', 1, 'https://ror.org/044bdx604 Tokyo University of Information Sciences ę±äŗ¬ęƒ…å ±å¤§å­¦'),
(23450, 'https://ror.org/044ce3082', 'pt', 1, 'https://ror.org/044ce3082 Universidade São TomÔs de Moçambique'),
(23451, 'https://ror.org/044dman78', 'en', 1, 'https://ror.org/044dman78 National Counter Terrorism Security Office'),
(23452, 'https://ror.org/044evsy53', 'es', 1, 'https://ror.org/044evsy53 Universidad San Pablo'),
(23453, 'https://ror.org/044g0p936', 'pt', 1, 'https://ror.org/044g0p936 Centro UniversitÔrio do Maranhão University Centre of Maranhão'),
(23454, 'https://ror.org/044g7e667', 'no_lang_code', 1, 'https://ror.org/044g7e667 R-Biopharm (United Kingdom)'),
(23455, 'https://ror.org/044hjch50', 'no_lang_code', 1, 'https://ror.org/044hjch50 Phasex (United States)'),
(23456, 'https://ror.org/044ht0n88', 'en', 1, 'https://ror.org/044ht0n88 State Hydrological Institute Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ гиГрологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(23457, 'https://ror.org/044j72x94', 'no_lang_code', 1, 'https://ror.org/044j72x94 PolyGene'),
(23458, 'https://ror.org/044jexg93', 'es', 1, 'https://ror.org/044jexg93 Universidad ContemporƔnea'),
(23459, 'https://ror.org/044jjd544', 'nl', 1, 'https://ror.org/044jjd544 Dedicon, Federatie Nederlandse Blindenbibliotheken'),
(23460, 'https://ror.org/044pany34', 'en', 1, 'https://ror.org/044pany34 Sanming University äø‰ę˜Žå­¦é™¢'),
(23461, 'https://ror.org/044q21j42', 'en', 1, 'https://ror.org/044q21j42 Ureshino Medical Center å¬‰é‡ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(23462, 'https://ror.org/044q54x11', 'en', 1, 'https://ror.org/044q54x11 Globe University'),
(23463, 'https://ror.org/044qmzh69', 'pt', 1, 'https://ror.org/044qmzh69 NĆŗcleo Interactivo de Astronomia'),
(23464, 'https://ror.org/044sckz61', 'no_lang_code', 1, 'https://ror.org/044sckz61 Matsushiro Seismological Observatory ę°—č±”åŗę¾ä»£åœ°éœ‡č¦³ęø¬ę‰€'),
(23465, 'https://ror.org/044sxgs38', 'en', 1, 'https://ror.org/044sxgs38 National Foundation for Educational Research'),
(23466, 'https://ror.org/044t6xx36', 'en', 1, 'https://ror.org/044t6xx36 Chippenham Community Hospital'),
(23467, 'https://ror.org/044vb6b87', 'no_lang_code', 1, 'https://ror.org/044vb6b87 Polymark (Netherlands)'),
(23468, 'https://ror.org/044wgre19', 'no_lang_code', 1, 'https://ror.org/044wgre19 Octane Wireless (United States)'),
(23469, 'https://ror.org/044wksr86', 'no_lang_code', 1, 'https://ror.org/044wksr86 Okayama Saidaiji Hospital 岔山脿大寺病院'),
(23470, 'https://ror.org/044ypyq07', 'es', 1, 'https://ror.org/044ypyq07 Universidad Hispana'),
(23471, 'https://ror.org/044zf4559', 'no_lang_code', 1, 'https://ror.org/044zf4559 Food Machinery Company (United Kingdom)'),
(23472, 'https://ror.org/044zpm314', 'no_lang_code', 1, 'https://ror.org/044zpm314 PolarOnyx (United States)'),
(23473, 'https://ror.org/044zqfh96', 'no_lang_code', 1, 'https://ror.org/044zqfh96 Oxford Metrics (United Kingdom)'),
(23474, 'https://ror.org/0451w9n55', 'en', 1, 'https://ror.org/0451w9n55 Polytechnical University of Kabul دکابل Ł¾ŁˆŁ„ŪŒ ŲŖŲ®Ł†ŪŒŚ© Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(23475, 'https://ror.org/04553p226', 'es', 1, 'https://ror.org/04553p226 Instituto TƩcnico Agrƭcola'),
(23476, 'https://ror.org/0455vfz21', 'en', 1, 'https://ror.org/0455vfz21 Women''s Health Research Institute'),
(23477, 'https://ror.org/04570b518', 'en', 1, 'https://ror.org/04570b518 World Conservation Monitoring Centre'),
(23478, 'https://ror.org/0457fah73', 'en', 1, 'https://ror.org/0457fah73 Cromer Hospital'),
(23479, 'https://ror.org/0457w0821', 'en', 1, 'https://ror.org/0457w0821 OW2 Consortium'),
(23480, 'https://ror.org/04581yq69', 'en', 1, 'https://ror.org/04581yq69 Special Olympics'),
(23481, 'https://ror.org/045a17r54', 'no_lang_code', 1, 'https://ror.org/045a17r54 Xyken (United States)'),
(23482, 'https://ror.org/045bf1m77', 'no_lang_code', 1, 'https://ror.org/045bf1m77 CJR Propulsion (United Kingdom)'),
(23483, 'https://ror.org/045ct3157', 'no_lang_code', 1, 'https://ror.org/045ct3157 Zabala Innovation Consulting (Spain)'),
(23484, 'https://ror.org/045e6gk66', 'no_lang_code', 1, 'https://ror.org/045e6gk66 Queues Enforth Development (United States)'),
(23485, 'https://ror.org/045f0ws19', 'en', 1, 'https://ror.org/045f0ws19 Universities of Giessen and Marburg Lung Center'),
(23486, 'https://ror.org/045gpd643', 'en', 1, 'https://ror.org/045gpd643 Volunteers of America Oregon'),
(23487, 'https://ror.org/045k6gy12', 'es', 1, 'https://ror.org/045k6gy12 Instituto Universitario Anglo EspaƱol'),
(23488, 'https://ror.org/045mkqe52', 'en', 1, 'https://ror.org/045mkqe52 Centro UniversitƔrio de Brasƭlia University Center of Brasƭlia'),
(23489, 'https://ror.org/045n1e339', 'en', 1, 'https://ror.org/045n1e339 Mile End Hospital'),
(23490, 'https://ror.org/045na4q63', 'no_lang_code', 1, 'https://ror.org/045na4q63 Nemetschek (Germany)'),
(23491, 'https://ror.org/045pr1e07', 'no_lang_code', 1, 'https://ror.org/045pr1e07 Vitalus Nutrition (Canada)'),
(23492, 'https://ror.org/045r28721', 'en', 1, 'https://ror.org/045r28721 Newham University Hospital'),
(23493, 'https://ror.org/045rvh172', 'en', 1, 'https://ror.org/045rvh172 Cairo Higher Institute'),
(23494, 'https://ror.org/045rztm55', 'en', 1, 'https://ror.org/045rztm55 University of Sierra Leone'),
(23495, 'https://ror.org/045yxgc38', 'en', 1, 'https://ror.org/045yxgc38 The Beaumont Hospital'),
(23496, 'https://ror.org/045z19p32', 'no_lang_code', 1, 'https://ror.org/045z19p32 Virtual Trip (Greece)'),
(23497, 'https://ror.org/045zca936', 'no_lang_code', 1, 'https://ror.org/045zca936 Mosaic Films (United Kingdom)'),
(23498, 'https://ror.org/045zk7t12', 'en', 1, 'https://ror.org/045zk7t12 AcadĆ©mie internationale mohammed vi de l''aviation civile International Academy Mohammed VI of Civil Aviation Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ł…Ų­Ł…ŲÆ السادس Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„Ų·ŁŠŲ±Ų§Ł† Ų§Ł„Ł…ŲÆŁ†ŁŠ'),
(23499, 'https://ror.org/04606qq63', 'es', 1, 'https://ror.org/04606qq63 Universidad Nacional Evangelica'),
(23500, 'https://ror.org/0460r5302', 'en', 1, 'https://ror.org/0460r5302 MaRS Innovation'),
(23501, 'https://ror.org/046107172', 'en', 1, 'https://ror.org/046107172 Providence Center'),
(23502, 'https://ror.org/0463j8f36', 'en', 1, 'https://ror.org/0463j8f36 Spire Regency Hospital'),
(23503, 'https://ror.org/0463w2783', 'en', 1, 'https://ror.org/0463w2783 Confederation of British Metalforming'),
(23504, 'https://ror.org/0465c2k31', 'en', 1, 'https://ror.org/0465c2k31 Bupa Cromwell Hospital'),
(23505, 'https://ror.org/0465dww62', 'no_lang_code', 1, 'https://ror.org/0465dww62 Acentia (United States)'),
(23506, 'https://ror.org/0465f2g39', 'no_lang_code', 1, 'https://ror.org/0465f2g39 RBC Investor & Treasury Services (France)'),
(23507, 'https://ror.org/0466m5p44', 'no_lang_code', 1, 'https://ror.org/0466m5p44 ACOEM (France)'),
(23508, 'https://ror.org/0468knt27', 'no_lang_code', 1, 'https://ror.org/0468knt27 Worldsensing (Spain)'),
(23509, 'https://ror.org/0468v2w64', 'fr', 1, 'https://ror.org/0468v2w64 Union des Industries et des MƩtiers de la MƩtallurgie Union of Metallurgies Industries'),
(23510, 'https://ror.org/046aa8x19', 'pt', 1, 'https://ror.org/046aa8x19 Centro UniversitÔrio de União da Vitória'),
(23511, 'https://ror.org/046c75y25', 'no_lang_code', 1, 'https://ror.org/046c75y25 Witt Industrial Electronics (Germany)'),
(23512, 'https://ror.org/046dsb945', 'no_lang_code', 1, 'https://ror.org/046dsb945 Cicor (Germany)');
INSERT INTO `rors` VALUES
(23513, 'https://ror.org/046e9gn41', 'no_lang_code', 1, 'https://ror.org/046e9gn41 Offshore Monitoring (Cyprus)'),
(23514, 'https://ror.org/046f4dc56', 'en', 1, 'https://ror.org/046f4dc56 Dynastee'),
(23515, 'https://ror.org/046gbzb64', 'no_lang_code', 1, 'https://ror.org/046gbzb64 A.P. MĆøller–MƦrsk A/S Maersk (Denmark)'),
(23516, 'https://ror.org/046k0vn34', 'no_lang_code', 1, 'https://ror.org/046k0vn34 SKF (United Kingdom)'),
(23517, 'https://ror.org/046k1jz27', 'no_lang_code', 1, 'https://ror.org/046k1jz27 Troux Technologies (Norway)'),
(23518, 'https://ror.org/046m09909', 'no_lang_code', 1, 'https://ror.org/046m09909 Venture Chemicals (United States)'),
(23519, 'https://ror.org/046nf9z89', 'en', 1, 'https://ror.org/046nf9z89 Golestan University دانؓگاه گلستان'),
(23520, 'https://ror.org/046np5693', 'en', 1, 'https://ror.org/046np5693 Metropolitan University Universidad Metropolitana'),
(23521, 'https://ror.org/046rmzh87', 'en', 1, 'https://ror.org/046rmzh87 Bensham Hospital'),
(23522, 'https://ror.org/046vjzm79', 'es', 1, 'https://ror.org/046vjzm79 Universidad Gastón Dachary'),
(23523, 'https://ror.org/046w1bq45', 'en', 1, 'https://ror.org/046w1bq45 SkellefteƄ Municipality'),
(23524, 'https://ror.org/046wsbf61', 'en', 1, 'https://ror.org/046wsbf61 St Michael''s Hospital'),
(23525, 'https://ror.org/046xg8y70', 'fr', 1, 'https://ror.org/046xg8y70 Ɖcole Polytechnique de ThiĆØs'),
(23526, 'https://ror.org/046xprq08', 'no_lang_code', 1, 'https://ror.org/046xprq08 Management Support Technology (United States)'),
(23527, 'https://ror.org/04700yz30', 'fr', 1, 'https://ror.org/04700yz30 UniversitƩ libre des Pays des Grands Lacs'),
(23528, 'https://ror.org/04709y508', 'no_lang_code', 1, 'https://ror.org/04709y508 Seagate (United Kingdom)'),
(23529, 'https://ror.org/0470n4p24', 'en', 1, 'https://ror.org/0470n4p24 Peninsula College'),
(23530, 'https://ror.org/04727qm97', 'no_lang_code', 1, 'https://ror.org/04727qm97 Nomor Research (Germany)'),
(23531, 'https://ror.org/0472pbn77', 'no_lang_code', 1, 'https://ror.org/0472pbn77 NTN-SNR (France)'),
(23532, 'https://ror.org/047353127', 'fr', 1, 'https://ror.org/047353127 Institut SupƩrieur PƩdagogique de Gitwe'),
(23533, 'https://ror.org/0473emp75', 'no_lang_code', 1, 'https://ror.org/0473emp75 Moor Instruments (United Kingdom)'),
(23534, 'https://ror.org/0473v0343', 'es', 1, 'https://ror.org/0473v0343 Center of Higher University Studies Centro de Estudios Superiores Universitarios'),
(23535, 'https://ror.org/0474evh54', 'en', 1, 'https://ror.org/0474evh54 Tioga County Partnership for Community Health'),
(23536, 'https://ror.org/0474gxy81', 'en', 1, 'https://ror.org/0474gxy81 Universidad de La Salle (BogotĆ”) University of La Salle'),
(23537, 'https://ror.org/0475dfc79', 'no_lang_code', 1, 'https://ror.org/0475dfc79 Stavanger Installasjon (Norway)'),
(23538, 'https://ror.org/0476nv437', 'no_lang_code', 1, 'https://ror.org/0476nv437 Sinhatech (United States)'),
(23539, 'https://ror.org/04776hp32', 'en', 1, 'https://ror.org/04776hp32 Prospectors & Developers Association of Canada'),
(23540, 'https://ror.org/047865819', 'fr', 1, 'https://ror.org/047865819 NanoQuƩbec (Canada)'),
(23541, 'https://ror.org/04789m930', 'no_lang_code', 1, 'https://ror.org/04789m930 SNL (Sweden)'),
(23542, 'https://ror.org/047a24r47', 'es', 1, 'https://ror.org/047a24r47 Universidad Mariano Galvez, Universidad Mariano GƔlvez de Guatemala'),
(23543, 'https://ror.org/047bp1713', 'en', 1, 'https://ror.org/047bp1713 North University of China äø­åŒ—å¤§å­¦'),
(23544, 'https://ror.org/047dkfr85', 'en', 1, 'https://ror.org/047dkfr85 South East Texas Council on Alcohol and Drug Abuse'),
(23545, 'https://ror.org/047dmk096', 'en', 1, 'https://ror.org/047dmk096 Metro Wellness and Community Centers'),
(23546, 'https://ror.org/047dr9v36', 'en', 1, 'https://ror.org/047dr9v36 Network Human Services'),
(23547, 'https://ror.org/047dz7p79', 'fr', 1, 'https://ror.org/047dz7p79 OcƩanopolis'),
(23548, 'https://ror.org/047e7td90', 'fr', 1, 'https://ror.org/047e7td90 Ɖcole SupĆ©rieure d''Informatique AppliquĆ©e'),
(23549, 'https://ror.org/047ej6x83', 'no_lang_code', 1, 'https://ror.org/047ej6x83 Within Technologies (United Kingdom)'),
(23550, 'https://ror.org/047feaw16', 'en', 1, 'https://ror.org/047feaw16 Shrewsbury and Telford Hospital NHS Trust'),
(23551, 'https://ror.org/047fp1735', 'en', 1, 'https://ror.org/047fp1735 Mineral Products Association'),
(23552, 'https://ror.org/047gmeb26', 'no_lang_code', 1, 'https://ror.org/047gmeb26 VeraChem (United States)'),
(23553, 'https://ror.org/047hq4296', 'es', 1, 'https://ror.org/047hq4296 Universidad Valle del Grijalva'),
(23554, 'https://ror.org/047kyg834', 'en', 1, 'https://ror.org/047kyg834 Universidad de Guayaquil University of Guayaquil'),
(23555, 'https://ror.org/047m46r71', 'no_lang_code', 1, 'https://ror.org/047m46r71 Oxford Technologies (United Kingdom)'),
(23556, 'https://ror.org/047qtjs73', 'es', 1, 'https://ror.org/047qtjs73 Universidad Metropolitana Latin Campus'),
(23557, 'https://ror.org/047t0bc17', 'no_lang_code', 1, 'https://ror.org/047t0bc17 Moravek Biochemicals (United States)'),
(23558, 'https://ror.org/047tgv290', 'en', 1, 'https://ror.org/047tgv290 Chuo Kikuu cha Kikristo cha Pan Africa Pan Africa Christian University'),
(23559, 'https://ror.org/047vkpj90', 'en', 1, 'https://ror.org/047vkpj90 San Cristóbal of Huamanga University Universidad Nacional de San Cristóbal de Huamanga'),
(23560, 'https://ror.org/047vmzn25', 'no_lang_code', 1, 'https://ror.org/047vmzn25 Digital Equipment (Germany)'),
(23561, 'https://ror.org/047vq0f11', 'fr', 1, 'https://ror.org/047vq0f11 UniversitƩ du Sahel'),
(23562, 'https://ror.org/047xrr705', 'en', 1, 'https://ror.org/047xrr705 Peruvian University of Applied Sciences Universidad Peruana de Ciencias Aplicadas'),
(23563, 'https://ror.org/047xxr477', 'es', 1, 'https://ror.org/047xxr477 Institución Universitaria Salazar y Herrera'),
(23564, 'https://ror.org/0480jab46', 'fr', 1, 'https://ror.org/0480jab46 Institut International des Assurances'),
(23565, 'https://ror.org/0480vrj36', 'en', 1, 'https://ror.org/0480vrj36 Surrey and Sussex Healthcare NHS Trust'),
(23566, 'https://ror.org/04811ff34', 'en', 1, 'https://ror.org/04811ff34 Public Entity Risk Institute'),
(23567, 'https://ror.org/0481cg432', 'en', 1, 'https://ror.org/0481cg432 Pandit Ravishankar Shukla University पंऔित रविशंकर ą¤¶ą„ą¤•ą„ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(23568, 'https://ror.org/0482ajw49', 'en', 1, 'https://ror.org/0482ajw49 Ghana Baptist University College'),
(23569, 'https://ror.org/0483w8753', 'no_lang_code', 1, 'https://ror.org/0483w8753 Silex Microsystems (Sweden)'),
(23570, 'https://ror.org/0485xdc86', 'no_lang_code', 1, 'https://ror.org/0485xdc86 Texas MicroPower (United States)'),
(23571, 'https://ror.org/0485yr844', 'en', 1, 'https://ror.org/0485yr844 Bellatrix Astronomical Observatory'),
(23572, 'https://ror.org/0486mwv16', 'en', 1, 'https://ror.org/0486mwv16 Portbase'),
(23573, 'https://ror.org/048919h66', 'en', 1, 'https://ror.org/048919h66 North Middlesex University Hospital NHS Trust'),
(23574, 'https://ror.org/0489rhw98', 'no_lang_code', 1, 'https://ror.org/0489rhw98 Sintec (Italy)'),
(23575, 'https://ror.org/0489xkg05', 'no_lang_code', 1, 'https://ror.org/0489xkg05 Traficon (Finland)'),
(23576, 'https://ror.org/048aa3w78', 'fr', 1, 'https://ror.org/048aa3w78 Institut SupƩrieur Agronomique et VƩtƩrinaire ValƩry Giscard d''Estaing'),
(23577, 'https://ror.org/048aq6484', 'no_lang_code', 1, 'https://ror.org/048aq6484 Intersand (Canada)'),
(23578, 'https://ror.org/048b34d51', 'en', 1, 'https://ror.org/048b34d51 National Hospital for Neurology and Neurosurgery'),
(23579, 'https://ror.org/048d6we82', 'no_lang_code', 1, 'https://ror.org/048d6we82 TSM Control Systems (Ireland)'),
(23580, 'https://ror.org/048e56r52', 'no_lang_code', 1, 'https://ror.org/048e56r52 NexusAB (United Kingdom)'),
(23581, 'https://ror.org/048g63s89', 'no_lang_code', 1, 'https://ror.org/048g63s89 Soundprint Media Center'),
(23582, 'https://ror.org/048j6y202', 'no_lang_code', 1, 'https://ror.org/048j6y202 Novatea (Italy)'),
(23583, 'https://ror.org/048jjtk40', 'no_lang_code', 1, 'https://ror.org/048jjtk40 Youth Radio (United States)'),
(23584, 'https://ror.org/048knqr75', 'en', 1, 'https://ror.org/048knqr75 Bicester Community Hospital'),
(23585, 'https://ror.org/048kzgs94', 'no_lang_code', 1, 'https://ror.org/048kzgs94 Orla Protein Technologies (United Kingdom)'),
(23586, 'https://ror.org/048maqj86', 'no_lang_code', 1, 'https://ror.org/048maqj86 Stone Ridge Technology (United States)'),
(23587, 'https://ror.org/048mdnr65', 'no_lang_code', 1, 'https://ror.org/048mdnr65 Nortis (United States)'),
(23588, 'https://ror.org/048q8cd91', 'en', 1, 'https://ror.org/048q8cd91 Omaha Nation Community Response Team'),
(23589, 'https://ror.org/048s0v676', 'en', 1, 'https://ror.org/048s0v676 Abu Dhabi Falcon Hospital مستؓفى أبو ظبي Ł„Ł„ŲµŁ‚ŁˆŲ±'),
(23590, 'https://ror.org/048s2rn92', 'en', 1, 'https://ror.org/048s2rn92 United States Naval Observatory'),
(23591, 'https://ror.org/048sa9h54', 'en', 1, 'https://ror.org/048sa9h54 John Black Day Hospital'),
(23592, 'https://ror.org/048t5j590', 'no_lang_code', 1, 'https://ror.org/048t5j590 Seedri Puukool'),
(23593, 'https://ror.org/048t8tm52', 'no_lang_code', 1, 'https://ror.org/048t8tm52 Q Bioanalytic (Germany)'),
(23594, 'https://ror.org/048tcp333', 'no_lang_code', 1, 'https://ror.org/048tcp333 Polysolar (United Kingdom)'),
(23595, 'https://ror.org/048tcym87', 'no_lang_code', 1, 'https://ror.org/048tcym87 Treibacher (Austria)'),
(23596, 'https://ror.org/048v4wb07', 'en', 1, 'https://ror.org/048v4wb07 Minnesota Association for Children''s Mental Health'),
(23597, 'https://ror.org/048vvpr19', 'en', 1, 'https://ror.org/048vvpr19 Felixstowe Community Hospital'),
(23598, 'https://ror.org/048xkyz52', 'no_lang_code', 1, 'https://ror.org/048xkyz52 Umbria Filler (Italy)'),
(23599, 'https://ror.org/048yh2980', 'es', 1, 'https://ror.org/048yh2980 Universidad Villa Rica'),
(23600, 'https://ror.org/048yn7628', 'en', 1, 'https://ror.org/048yn7628 Harz University of Applied Sciences Hochschule Harz'),
(23601, 'https://ror.org/0490r6s77', 'en', 1, 'https://ror.org/0490r6s77 Tapestry Institute'),
(23602, 'https://ror.org/0493fng90', 'no_lang_code', 1, 'https://ror.org/0493fng90 Rosti (Denmark)'),
(23603, 'https://ror.org/0494t4v58', 'no_lang_code', 1, 'https://ror.org/0494t4v58 Synthesites (Greece)'),
(23604, 'https://ror.org/0497ykj02', 'no_lang_code', 1, 'https://ror.org/0497ykj02 Simcon kunststofftechnische Software (Germany)'),
(23605, 'https://ror.org/04980c792', 'no_lang_code', 1, 'https://ror.org/04980c792 MOL Group (Hungary)'),
(23606, 'https://ror.org/0498fb204', 'es', 1, 'https://ror.org/0498fb204 Instituto Nacional de Educación Superior Dr. Raúl Peña'),
(23607, 'https://ror.org/049cnc419', 'no_lang_code', 1, 'https://ror.org/049cnc419 Stemina Biomarker Discovery (United States)'),
(23608, 'https://ror.org/049d3ch40', 'en', 1, 'https://ror.org/049d3ch40 Kidderminster Hospital and Treatment Centre'),
(23609, 'https://ror.org/049f03n31', 'en', 1, 'https://ror.org/049f03n31 Meridian Community College'),
(23610, 'https://ror.org/049q27a79', 'en', 1, 'https://ror.org/049q27a79 Dereham Hospital'),
(23611, 'https://ror.org/049r7sn84', 'es', 1, 'https://ror.org/049r7sn84 Universidad Rafael Belloso ChacĆ­n'),
(23612, 'https://ror.org/049s20792', 'en', 1, 'https://ror.org/049s20792 European Committee of Environmental Technology Suppliers Associations'),
(23613, 'https://ror.org/049sdnw14', 'es', 1, 'https://ror.org/049sdnw14 Universidad Veritas'),
(23614, 'https://ror.org/049ta3d96', 'en', 1, 'https://ror.org/049ta3d96 Institute For Leadership And Communication Studies'),
(23615, 'https://ror.org/049tfqy31', 'es', 1, 'https://ror.org/049tfqy31 Universidad MƩxico Americana del Norte'),
(23616, 'https://ror.org/049wrh220', 'no_lang_code', 1, 'https://ror.org/049wrh220 Hashimoto Municipal Hospital ę©‹ęœ¬åø‚ę°‘ē—…é™¢'),
(23617, 'https://ror.org/049xny288', 'no_lang_code', 1, 'https://ror.org/049xny288 SERE-Tech Innovation (United Kingdom)'),
(23618, 'https://ror.org/049yar178', 'en', 1, 'https://ror.org/049yar178 South Carolina Department of Education'),
(23619, 'https://ror.org/04a0xmf69', 'en', 1, 'https://ror.org/04a0xmf69 General Hospital of Nafplio Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΑργολίΓας'),
(23620, 'https://ror.org/04a2tdz26', 'no_lang_code', 1, 'https://ror.org/04a2tdz26 TheraTarget (United States)'),
(23621, 'https://ror.org/04a3htt14', 'it', 1, 'https://ror.org/04a3htt14 Consorzio Interuniversitario Fisica Spaziale'),
(23622, 'https://ror.org/04a4v0j95', 'en', 1, 'https://ror.org/04a4v0j95 National Museum of Natural History ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ ŠæŃ€ŠøŃ€Š¾Š“Š¾Š½Š°ŃƒŃ‡ŠµŠ½ музей'),
(23623, 'https://ror.org/04a52t496', 'no_lang_code', 1, 'https://ror.org/04a52t496 Teleprime (United States)'),
(23624, 'https://ror.org/04aaq2k96', 'en', 1, 'https://ror.org/04aaq2k96 Martin University'),
(23625, 'https://ror.org/04abrpb32', 'es', 1, 'https://ror.org/04abrpb32 Universidad Norbert Wiener'),
(23626, 'https://ror.org/04adde783', 'no_lang_code', 1, 'https://ror.org/04adde783 Unisign (Netherlands)'),
(23627, 'https://ror.org/04aen0982', 'fr', 1, 'https://ror.org/04aen0982 Centre Africain d''Ɖtudes SupĆ©rieures en Gestion'),
(23628, 'https://ror.org/04afz7s27', 'pt', 1, 'https://ror.org/04afz7s27 Centro UniversitƔrio Barriga Verde'),
(23629, 'https://ror.org/04ag0vk97', 'no_lang_code', 1, 'https://ror.org/04ag0vk97 Stichting AlmereGrid'),
(23630, 'https://ror.org/04ahb7r80', 'no_lang_code', 1, 'https://ror.org/04ahb7r80 Chienkuo Technology University å»ŗåœ‹ē§‘ęŠ€å¤§å­ø'),
(23631, 'https://ror.org/04amrcw69', 'en', 1, 'https://ror.org/04amrcw69 Central Research Institute of Ferrous Metallurgy I P Bardina Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾ā€“ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ черной Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø им. И.П. БарГина'),
(23632, 'https://ror.org/04amyvf24', 'en', 1, 'https://ror.org/04amyvf24 St Peter''s Hospital'),
(23633, 'https://ror.org/04ar26726', 'en', 1, 'https://ror.org/04ar26726 Wesley College'),
(23634, 'https://ror.org/04arhmz60', 'en', 1, 'https://ror.org/04arhmz60 Heritage Christian University'),
(23635, 'https://ror.org/04arj7s97', 'fr', 1, 'https://ror.org/04arj7s97 Groupe Ɖcole SupĆ©rieure de Commerce de Dakar'),
(23636, 'https://ror.org/04artyh12', 'no_lang_code', 1, 'https://ror.org/04artyh12 Opalux (Canada)'),
(23637, 'https://ror.org/04as3by48', 'no_lang_code', 1, 'https://ror.org/04as3by48 Electricity Supply Board (United Kingdom)'),
(23638, 'https://ror.org/04aszsx88', 'no_lang_code', 1, 'https://ror.org/04aszsx88 Robotronics (United States)'),
(23639, 'https://ror.org/04atxr455', 'en', 1, 'https://ror.org/04atxr455 BMI Fawkham Manor Hospital'),
(23640, 'https://ror.org/04avwdy85', 'en', 1, 'https://ror.org/04avwdy85 Nottinghamshire County Council'),
(23641, 'https://ror.org/04avzvx04', 'en', 1, 'https://ror.org/04avzvx04 National Community Health Partners'),
(23642, 'https://ror.org/04aw3a105', 'no_lang_code', 1, 'https://ror.org/04aw3a105 Vitech Systems (United States)'),
(23643, 'https://ror.org/04ax1v403', 'no_lang_code', 1, 'https://ror.org/04ax1v403 Renson (Belgium)'),
(23644, 'https://ror.org/04ax9w078', 'en', 1, 'https://ror.org/04ax9w078 Canadian Anthropology Society'),
(23645, 'https://ror.org/04axt3e70', 'en', 1, 'https://ror.org/04axt3e70 Autonomous Intercultural University of Sinaloa Universidad Autónoma Intercultural de Sinaloa'),
(23646, 'https://ror.org/04azbjd07', 'pt', 1, 'https://ror.org/04azbjd07 Centro UniversitƔrio de Sete Lagoas'),
(23647, 'https://ror.org/04azdj983', 'en', 1, 'https://ror.org/04azdj983 Snow College'),
(23648, 'https://ror.org/04b28td81', 'en', 1, 'https://ror.org/04b28td81 Latin University of Panama Universidad Latina de PanamĆ”'),
(23649, 'https://ror.org/04b3gg905', 'en', 1, 'https://ror.org/04b3gg905 Evesham Community Hospital'),
(23650, 'https://ror.org/04b4w6n09', 'es', 1, 'https://ror.org/04b4w6n09 Universidad de las Naciones'),
(23651, 'https://ror.org/04b9js332', 'es', 1, 'https://ror.org/04b9js332 Universidad de San Miguel'),
(23652, 'https://ror.org/04bd41p10', 'en', 1, 'https://ror.org/04bd41p10 Bristol Homeopathic Hospital'),
(23653, 'https://ror.org/04bdwem21', 'no_lang_code', 1, 'https://ror.org/04bdwem21 Energieversorgungs und Verkehrsgesellschaft Aachen (Germany)'),
(23654, 'https://ror.org/04be2dn15', 'en', 1, 'https://ror.org/04be2dn15 University of Science and Technology Bannu ŲØŁ†ŁˆŚŗ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف سائنس Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(23655, 'https://ror.org/04be5z192', 'es', 1, 'https://ror.org/04be5z192 Universidad BĆ­blica Latinoamericana'),
(23656, 'https://ror.org/04bhtgq69', 'no_lang_code', 1, 'https://ror.org/04bhtgq69 Thien eDrives (Austria)'),
(23657, 'https://ror.org/04bhzjf61', 'en', 1, 'https://ror.org/04bhzjf61 Minnesota Department of Education'),
(23658, 'https://ror.org/04bjr9m61', 'es', 1, 'https://ror.org/04bjr9m61 Manuela BeltrƔn University Universidad Manuela BeltrƔn'),
(23659, 'https://ror.org/04bk3rn37', 'en', 1, 'https://ror.org/04bk3rn37 Lytham Hospital'),
(23660, 'https://ror.org/04bkge991', 'no_lang_code', 1, 'https://ror.org/04bkge991 Next Technology Tecnotessile (Italy)'),
(23661, 'https://ror.org/04bm0js74', 'no_lang_code', 1, 'https://ror.org/04bm0js74 Cristal (United Kingdom)'),
(23662, 'https://ror.org/04bn7c421', 'no_lang_code', 1, 'https://ror.org/04bn7c421 Trivella (Italy)'),
(23663, 'https://ror.org/04bp6s359', 'en', 1, 'https://ror.org/04bp6s359 Association of European Science and Technology Transfer Professionals'),
(23664, 'https://ror.org/04bpsn575', 'en', 1, 'https://ror.org/04bpsn575 Metropolitan University of Technology Universidad Tecnológica Metropolitana'),
(23665, 'https://ror.org/04bqa8v55', 'en', 1, 'https://ror.org/04bqa8v55 Bowmere Hospital'),
(23666, 'https://ror.org/04bs93498', 'en', 1, 'https://ror.org/04bs93498 North Country Health Consortium'),
(23667, 'https://ror.org/04bssxt85', 'no_lang_code', 1, 'https://ror.org/04bssxt85 Universal Technology Corporation (United States)'),
(23668, 'https://ror.org/04btmx930', 'en', 1, 'https://ror.org/04btmx930 Kaiser Permanente San Leandro Medical Center'),
(23669, 'https://ror.org/04btw2k35', 'no_lang_code', 1, 'https://ror.org/04btw2k35 Reagecon (Ireland)'),
(23670, 'https://ror.org/04bwwvv47', 'es', 1, 'https://ror.org/04bwwvv47 National Police of Honduras PolicĆ­a Nacional de Honduras'),
(23671, 'https://ror.org/04c1jfd27', 'en', 1, 'https://ror.org/04c1jfd27 Substance Abuse Free Environment'),
(23672, 'https://ror.org/04c2yfj62', 'no_lang_code', 1, 'https://ror.org/04c2yfj62 Precision BioLogic (Canada)'),
(23673, 'https://ror.org/04c5em741', 'en', 1, 'https://ror.org/04c5em741 Wigton Community Hospital'),
(23674, 'https://ror.org/04c5rqn31', 'no_lang_code', 1, 'https://ror.org/04c5rqn31 Projection Plasma SystĆØme (France)'),
(23675, 'https://ror.org/04c7brx88', 'es', 1, 'https://ror.org/04c7brx88 Centro Universitario de Coatzacoalcos'),
(23676, 'https://ror.org/04c97xg15', 'no_lang_code', 1, 'https://ror.org/04c97xg15 Modular Robotics (United States)'),
(23677, 'https://ror.org/04caqsq71', 'es', 1, 'https://ror.org/04caqsq71 Universidad Marista de Guadalajara'),
(23678, 'https://ror.org/04cat5h68', 'fr', 1, 'https://ror.org/04cat5h68 Institut des Hautes Ɖtudes de Management Institute for Advanced Studies in Management'),
(23679, 'https://ror.org/04cb36z24', 'ro', 1, 'https://ror.org/04cb36z24 Opinia'),
(23680, 'https://ror.org/04cd78k07', 'en', 1, 'https://ror.org/04cd78k07 London Ambulance Service NHS Trust'),
(23681, 'https://ror.org/04ce08670', 'no_lang_code', 1, 'https://ror.org/04ce08670 IHS Markit (Germany)'),
(23682, 'https://ror.org/04ceqtd27', 'no_lang_code', 1, 'https://ror.org/04ceqtd27 Phoenix Systems (United States)'),
(23683, 'https://ror.org/04cgmbd24', 'en', 1, 'https://ror.org/04cgmbd24 Pharos University in Alexandria Ų¬Ų§Ł…Ų¹Ų© فاروس ŲØŲ§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(23684, 'https://ror.org/04ch7mp32', 'no_lang_code', 1, 'https://ror.org/04ch7mp32 PY Automation (France)'),
(23685, 'https://ror.org/04cj88d36', 'fr', 1, 'https://ror.org/04cj88d36 Institut National de la Poste et des Technologies de l''Information et de la Communication المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŲØŲ±ŁŠŲÆ ŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ŲŖ ال؄علام ŁˆŲ§Ł„Ų§ŲŖŲµŲ§Ł„'),
(23686, 'https://ror.org/04ckzt204', 'en', 1, 'https://ror.org/04ckzt204 Distrito Escolar Unificado de Tucson Tucson Unified School District'),
(23687, 'https://ror.org/04cmc9894', 'en', 1, 'https://ror.org/04cmc9894 National Pedagogic University Universidad Pedagógica Nacional'),
(23688, 'https://ror.org/04cmmy395', 'en', 1, 'https://ror.org/04cmmy395 Regional Centre for Mapping of Resources for Development'),
(23689, 'https://ror.org/04cnaq122', 'es', 1, 'https://ror.org/04cnaq122 Universidad Madero Papaloapan'),
(23690, 'https://ror.org/04cntmc13', 'en', 1, 'https://ror.org/04cntmc13 London North West Healthcare NHS Trust'),
(23691, 'https://ror.org/04cqvxz08', 'no_lang_code', 1, 'https://ror.org/04cqvxz08 Signum Computer (Germany)'),
(23692, 'https://ror.org/04ct9as78', 'en', 1, 'https://ror.org/04ct9as78 Jinzhou Kangning Hospital é”¦å·žåø‚åŗ·å®åŒ»é™¢'),
(23693, 'https://ror.org/04cte7x29', 'no_lang_code', 1, 'https://ror.org/04cte7x29 Randox (United Kingdom)'),
(23694, 'https://ror.org/04cvncw24', 'no_lang_code', 1, 'https://ror.org/04cvncw24 Rinicom (United Kingdom)'),
(23695, 'https://ror.org/04cw56e87', 'no_lang_code', 1, 'https://ror.org/04cw56e87 Sidasa Engineering (Spain)'),
(23696, 'https://ror.org/04cyft771', 'es', 1, 'https://ror.org/04cyft771 Fundación de Estudios Superiores Universitarios de UrabÔ'),
(23697, 'https://ror.org/04cz2yk65', 'en', 1, 'https://ror.org/04cz2yk65 Myndigheten fƶr samhƤllsskydd och beredskap Swedish Civil Contingencies Agency'),
(23698, 'https://ror.org/04d567260', 'en', 1, 'https://ror.org/04d567260 Protein Society'),
(23699, 'https://ror.org/04d5w6769', 'en', 1, 'https://ror.org/04d5w6769 STM Association'),
(23700, 'https://ror.org/04d6bgk38', 'es', 1, 'https://ror.org/04d6bgk38 Universidad del Distrito Federal'),
(23701, 'https://ror.org/04d77zt55', 'en', 1, 'https://ror.org/04d77zt55 Multiprofile Hospital for Active Treatment in Neurology and Psychiatry St. Naum'),
(23702, 'https://ror.org/04d78jp86', 'en', 1, 'https://ror.org/04d78jp86 Ripon Community Hospital'),
(23703, 'https://ror.org/04d7nv189', 'en', 1, 'https://ror.org/04d7nv189 Wolverhampton Hospital'),
(23704, 'https://ror.org/04d87jn14', 'en', 1, 'https://ror.org/04d87jn14 Royston Hospital'),
(23705, 'https://ror.org/04d9b4k91', 'no_lang_code', 1, 'https://ror.org/04d9b4k91 Sciarra Laboratories'),
(23706, 'https://ror.org/04da2f798', 'no_lang_code', 1, 'https://ror.org/04da2f798 Prime Photonics (United States)'),
(23707, 'https://ror.org/04dabmn58', 'en', 1, 'https://ror.org/04dabmn58 Monterey Institute for Research in Astronomy'),
(23708, 'https://ror.org/04danph04', 'en', 1, 'https://ror.org/04danph04 British School at Rome'),
(23709, 'https://ror.org/04dbvvk55', 'en', 1, 'https://ror.org/04dbvvk55 Bingham University'),
(23710, 'https://ror.org/04dcx0979', 'pt', 1, 'https://ror.org/04dcx0979 Centro UniversitƔrio Una'),
(23711, 'https://ror.org/04dd14e02', 'no_lang_code', 1, 'https://ror.org/04dd14e02 Tymora Analytical Operations (United States)'),
(23712, 'https://ror.org/04de4xn59', 'no_lang_code', 1, 'https://ror.org/04de4xn59 Neogen (United States)'),
(23713, 'https://ror.org/04dew2c51', 'en', 1, 'https://ror.org/04dew2c51 Russian State Hydrometeorological University Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Российский Š³Š¾ŃŃƒŠ“арственный гиГрометеорологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(23714, 'https://ror.org/04dfd2922', 'en', 1, 'https://ror.org/04dfd2922 South Great Plain Regional Innovation Agency'),
(23715, 'https://ror.org/04dfr7a85', 'en', 1, 'https://ror.org/04dfr7a85 Universidad de Pamplona University of Pamplona'),
(23716, 'https://ror.org/04dga5e65', 'en', 1, 'https://ror.org/04dga5e65 Lifeline Hospital ą“²ąµˆą“«ąµ ą“²ąµˆąµ» ą“¹ąµ‡ą“¾ą“øąµą“Ŗą“æą“±ąµą“±ąµ½'),
(23717, 'https://ror.org/04dge0m73', 'no_lang_code', 1, 'https://ror.org/04dge0m73 Psutec (Belgium)'),
(23718, 'https://ror.org/04dhsfx79', 'en', 1, 'https://ror.org/04dhsfx79 Maritime Administration of Latvia'),
(23719, 'https://ror.org/04dj1dn66', 'fr', 1, 'https://ror.org/04dj1dn66 Ɖcole Nationale SupĆ©rieure d''Informatique المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ لل؄علام Ų§Ł„Ų£Ł„ŁŠ'),
(23720, 'https://ror.org/04dj4k716', 'no_lang_code', 1, 'https://ror.org/04dj4k716 S&F Systemtechnik (Germany)'),
(23721, 'https://ror.org/04dj8vz80', 'en', 1, 'https://ror.org/04dj8vz80 Doncaster Gate Hospital'),
(23722, 'https://ror.org/04djera41', 'es', 1, 'https://ror.org/04djera41 Universidad La Salle Costa Rica'),
(23723, 'https://ror.org/04djzg510', 'no_lang_code', 1, 'https://ror.org/04djzg510 Procter & Gamble (Switzerland)'),
(23724, 'https://ror.org/04dkmxz35', 'no_lang_code', 1, 'https://ror.org/04dkmxz35 NorthWestNET'),
(23725, 'https://ror.org/04dkzbv90', 'en', 1, 'https://ror.org/04dkzbv90 Society for Personality and Social Psychology'),
(23726, 'https://ror.org/04dmp9d90', 'no_lang_code', 1, 'https://ror.org/04dmp9d90 Teinsa (Spain)'),
(23727, 'https://ror.org/04dqppw26', 'pt', 1, 'https://ror.org/04dqppw26 Instituto Superior de Ciencias de Saude'),
(23728, 'https://ror.org/04dt01t51', 'en', 1, 'https://ror.org/04dt01t51 Orleans Parish School Board'),
(23729, 'https://ror.org/04dthhc71', 'no_lang_code', 1, 'https://ror.org/04dthhc71 RODAX Impex (Romania)'),
(23730, 'https://ror.org/04dvk9y30', 'es', 1, 'https://ror.org/04dvk9y30 Universidad Autónoma de Asunción'),
(23731, 'https://ror.org/04dwrr446', 'no_lang_code', 1, 'https://ror.org/04dwrr446 Optics Technology (United States)'),
(23732, 'https://ror.org/04dxan340', 'en', 1, 'https://ror.org/04dxan340 Neumont University'),
(23733, 'https://ror.org/04dz93c71', 'es', 1, 'https://ror.org/04dz93c71 Universidad Central de MƩxico'),
(23734, 'https://ror.org/04e0p7290', 'en', 1, 'https://ror.org/04e0p7290 Cossham Hospital'),
(23735, 'https://ror.org/04e118j07', 'en', 1, 'https://ror.org/04e118j07 Dallas Baptist University'),
(23736, 'https://ror.org/04e43jr31', 'no_lang_code', 1, 'https://ror.org/04e43jr31 Turris (Canada)'),
(23737, 'https://ror.org/04e53n160', 'no_lang_code', 1, 'https://ror.org/04e53n160 SocietĆ  Industrie Chimiche ITaliane (Italy)'),
(23738, 'https://ror.org/04e5ccf06', 'en', 1, 'https://ror.org/04e5ccf06 Society for Muscle Biology'),
(23739, 'https://ror.org/04e7cmm10', 'no_lang_code', 1, 'https://ror.org/04e7cmm10 Wherry & Sons (United Kingdom)'),
(23740, 'https://ror.org/04e9s0y96', 'en', 1, 'https://ror.org/04e9s0y96 Partnership for Prevention'),
(23741, 'https://ror.org/04ea6sw58', 'es', 1, 'https://ror.org/04ea6sw58 Universidad Nicaragüense de Estudios Humanisticos'),
(23742, 'https://ror.org/04ebnqc56', 'en', 1, 'https://ror.org/04ebnqc56 Egyptian Institute of Alexandria Academy for Administration & Accounting المعهد Ų§Ł„Ł…ŲµŲ±ŁŠ Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ© لل؄دارة ŁˆŲ§Ł„Ł…Ų­Ų§Ų³ŲØŲ©'),
(23743, 'https://ror.org/04ecsax77', 'no_lang_code', 1, 'https://ror.org/04ecsax77 Message Pharmaceuticals (United States)'),
(23744, 'https://ror.org/04edxwx83', 'en', 1, 'https://ror.org/04edxwx83 FidƩlitas University Universidad FidƩlitas'),
(23745, 'https://ror.org/04eeanr22', 'es', 1, 'https://ror.org/04eeanr22 Universidad Unidad'),
(23746, 'https://ror.org/04eeb2398', 'en', 1, 'https://ror.org/04eeb2398 Post University'),
(23747, 'https://ror.org/04eerm638', 'en', 1, 'https://ror.org/04eerm638 Mercer Island School District'),
(23748, 'https://ror.org/04eexme77', 'en', 1, 'https://ror.org/04eexme77 Autonomous University of Chiapas Universidad Autónoma de Chiapas'),
(23749, 'https://ror.org/04eg77e50', 'no_lang_code', 1, 'https://ror.org/04eg77e50 Texas Instruments (United Kingdom)'),
(23750, 'https://ror.org/04egxam60', 'fr', 1, 'https://ror.org/04egxam60 Institut Universitaire du Congo'),
(23751, 'https://ror.org/04ehjk122', 'en', 1, 'https://ror.org/04ehjk122 Nottinghamshire Healthcare NHS Foundation Trust'),
(23752, 'https://ror.org/04ekw4q78', 'no_lang_code', 1, 'https://ror.org/04ekw4q78 Selective Genetics (United States)'),
(23753, 'https://ror.org/04en6gs70', 'es', 1, 'https://ror.org/04en6gs70 Universidad Kino'),
(23754, 'https://ror.org/04ena6v85', 'es', 1, 'https://ror.org/04ena6v85 Universidad PolitƩcnica de Chiapas'),
(23755, 'https://ror.org/04enbdz15', 'no_lang_code', 1, 'https://ror.org/04enbdz15 Worldwide Fruit (United Kingdom)'),
(23756, 'https://ror.org/04epv6m25', 'en', 1, 'https://ror.org/04epv6m25 Hornsea Cottage Hospital'),
(23757, 'https://ror.org/04eq6c443', 'no_lang_code', 1, 'https://ror.org/04eq6c443 The Maltsters'' Association of Great Britain (United Kingdom)'),
(23758, 'https://ror.org/04eq9z946', 'no_lang_code', 1, 'https://ror.org/04eq9z946 Synergetics (Belgium)'),
(23759, 'https://ror.org/04eqf8242', 'no_lang_code', 1, 'https://ror.org/04eqf8242 SKF (France)'),
(23760, 'https://ror.org/04es4vf69', 'no_lang_code', 1, 'https://ror.org/04es4vf69 Nemucore Medical Innovations (United States)'),
(23761, 'https://ror.org/04etart85', 'no_lang_code', 1, 'https://ror.org/04etart85 Guideline Geo (Sweden)'),
(23762, 'https://ror.org/04evvaq96', 'en', 1, 'https://ror.org/04evvaq96 Shirley Oaks Hospital'),
(23763, 'https://ror.org/04f0w3t91', 'no_lang_code', 1, 'https://ror.org/04f0w3t91 Vestas (Netherlands)'),
(23764, 'https://ror.org/04f1s1f80', 'es', 1, 'https://ror.org/04f1s1f80 Universidad Florencio del Castillo'),
(23765, 'https://ror.org/04f1w1v43', 'no_lang_code', 1, 'https://ror.org/04f1w1v43 Teracom (Sweden)'),
(23766, 'https://ror.org/04f254318', 'no_lang_code', 1, 'https://ror.org/04f254318 Skretting (Norway)'),
(23767, 'https://ror.org/04f2wck35', 'en', 1, 'https://ror.org/04f2wck35 St. Stephen''s University'),
(23768, 'https://ror.org/04f33ym80', 'no_lang_code', 1, 'https://ror.org/04f33ym80 Triple Ring Technologies (United States)'),
(23769, 'https://ror.org/04f3y7g60', 'no_lang_code', 1, 'https://ror.org/04f3y7g60 Omgatech (Italy)'),
(23770, 'https://ror.org/04f4nzq23', 'en', 1, 'https://ror.org/04f4nzq23 Retford Hospital'),
(23771, 'https://ror.org/04f5epv26', 'en', 1, 'https://ror.org/04f5epv26 Weskoppies Psychiatric Hospital'),
(23772, 'https://ror.org/04f6dd023', 'pt', 1, 'https://ror.org/04f6dd023 Centro UniversitÔrio Municipal de São José'),
(23773, 'https://ror.org/04f6j3x86', 'en', 1, 'https://ror.org/04f6j3x86 Nordic Innovation'),
(23774, 'https://ror.org/04f6sbc78', 'pt', 1, 'https://ror.org/04f6sbc78 Centro Universitario Fluminense'),
(23775, 'https://ror.org/04f77nk30', 'en', 1, 'https://ror.org/04f77nk30 National Asian Pacific American Families Against Substance Abuse'),
(23776, 'https://ror.org/04f79ny61', 'no_lang_code', 1, 'https://ror.org/04f79ny61 Symetrica Security (United Kingdom)'),
(23777, 'https://ror.org/04f8bz958', 'no_lang_code', 1, 'https://ror.org/04f8bz958 Super Pulse (United States)'),
(23778, 'https://ror.org/04f8nq106', 'no_lang_code', 1, 'https://ror.org/04f8nq106 PHIMECA (France)'),
(23779, 'https://ror.org/04f9bf414', 'en', 1, 'https://ror.org/04f9bf414 Niger State Polytechnic'),
(23780, 'https://ror.org/04f9fry73', 'no_lang_code', 1, 'https://ror.org/04f9fry73 Plassys (France)'),
(23781, 'https://ror.org/04fb0yn25', 'en', 1, 'https://ror.org/04fb0yn25 The Wellington Hospital'),
(23782, 'https://ror.org/04fbzsy15', 'no_lang_code', 1, 'https://ror.org/04fbzsy15 Manus Neurodynamica (United Kingdom)'),
(23783, 'https://ror.org/04fcs7q74', 'es', 1, 'https://ror.org/04fcs7q74 Universidad de la CiƩnega'),
(23784, 'https://ror.org/04fcynh72', 'en', 1, 'https://ror.org/04fcynh72 Departamento de NiƱos, Juventud y Familias de Nuevo MƩxico New Mexico Children Youth and Families Department'),
(23785, 'https://ror.org/04fd5vj08', 'pt', 1, 'https://ror.org/04fd5vj08 Instituto Superior PolitƩcnico de Manica'),
(23786, 'https://ror.org/04fefzq80', 'en', 1, 'https://ror.org/04fefzq80 Javon Bea Hospital-Rockton'),
(23787, 'https://ror.org/04fg67f94', 'en', 1, 'https://ror.org/04fg67f94 German Machine Tool Builders Association Verein Deutscher Werkzeugmaschinenfabriken'),
(23788, 'https://ror.org/04fg9yv80', 'en', 1, 'https://ror.org/04fg9yv80 Nature Conservancy of Canada'),
(23789, 'https://ror.org/04fham916', 'en', 1, 'https://ror.org/04fham916 Farnham Road Hospital'),
(23790, 'https://ror.org/04fjxr127', 'en', 1, 'https://ror.org/04fjxr127 The Silesian Planetarium Śląskie Planetarium i Obserwatorium Astronomiczne'),
(23791, 'https://ror.org/04fkxrb51', 'en', 1, 'https://ror.org/04fkxrb51 Devon Partnership NHS Trust'),
(23792, 'https://ror.org/04fqgk073', 'en', 1, 'https://ror.org/04fqgk073 Yuba Community College District'),
(23793, 'https://ror.org/04ft55h12', 'es', 1, 'https://ror.org/04ft55h12 Universidad del Norte de Nicaragua'),
(23794, 'https://ror.org/04fxhkj84', 'no_lang_code', 1, 'https://ror.org/04fxhkj84 Adlink (United Kingdom)'),
(23795, 'https://ror.org/04fyd6s73', 'no_lang_code', 1, 'https://ror.org/04fyd6s73 Fiat Chrysler Automobiles (France)'),
(23796, 'https://ror.org/04fz79c74', 'en', 1, 'https://ror.org/04fz79c74 Universidad de Palermo University of Palermo'),
(23797, 'https://ror.org/04g0t2d47', 'en', 1, 'https://ror.org/04g0t2d47 Western Eye Hospital'),
(23798, 'https://ror.org/04g124k93', 'fr', 1, 'https://ror.org/04g124k93 Ɖcole SupĆ©rieure d''Informatique AppliquĆ©e Ć  la Gestion'),
(23799, 'https://ror.org/04g2nab09', 'no_lang_code', 1, 'https://ror.org/04g2nab09 Snam (Italy)'),
(23800, 'https://ror.org/04g3q2c19', 'no_lang_code', 1, 'https://ror.org/04g3q2c19 Stromatec (United States)'),
(23801, 'https://ror.org/04g3zjj79', 'en', 1, 'https://ror.org/04g3zjj79 Stratford Hospital'),
(23802, 'https://ror.org/04g6ar987', 'no_lang_code', 1, 'https://ror.org/04g6ar987 S-Solar (Sweden)'),
(23803, 'https://ror.org/04g6v3637', 'en', 1, 'https://ror.org/04g6v3637 Great Western Hospitals NHS Foundation Trust'),
(23804, 'https://ror.org/04g7dxn12', 'es', 1, 'https://ror.org/04g7dxn12 Universidad de Ciencias Empresariales y Sociales'),
(23805, 'https://ror.org/04g86yb67', 'no_lang_code', 1, 'https://ror.org/04g86yb67 VLP Biotech (United States)'),
(23806, 'https://ror.org/04g934a02', 'no_lang_code', 1, 'https://ror.org/04g934a02 Mierij Meteo'),
(23807, 'https://ror.org/04g9r9c91', 'no_lang_code', 1, 'https://ror.org/04g9r9c91 Volcano Corporation (United States)'),
(23808, 'https://ror.org/04gdrc249', 'pt', 1, 'https://ror.org/04gdrc249 Centro UniversitƔrio de ItajubƔ'),
(23809, 'https://ror.org/04gfxe325', 'en', 1, 'https://ror.org/04gfxe325 Black Swamp Bird Observatory'),
(23810, 'https://ror.org/04gka6q50', 'en', 1, 'https://ror.org/04gka6q50 Presbyterian St. Luke''s Medical Center'),
(23811, 'https://ror.org/04gmf5p72', 'fr', 1, 'https://ror.org/04gmf5p72 Ɖcole Nationale SupĆ©rieure de Technologie المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(23812, 'https://ror.org/04gp23z26', 'en', 1, 'https://ror.org/04gp23z26 Prudhoe Hospital'),
(23813, 'https://ror.org/04gpr3c11', 'no_lang_code', 1, 'https://ror.org/04gpr3c11 SocietĆ  Italiana Trasporti Automobilistici (Italy)'),
(23814, 'https://ror.org/04gptps55', 'no_lang_code', 1, 'https://ror.org/04gptps55 Senstar (Canada)'),
(23815, 'https://ror.org/04gq65788', 'pt', 1, 'https://ror.org/04gq65788 Centro UniversitƔrio Paulistano'),
(23816, 'https://ror.org/04gs1nw86', 'no_lang_code', 1, 'https://ror.org/04gs1nw86 FiberLogix (United Kingdom)'),
(23817, 'https://ror.org/04gse8s13', 'no_lang_code', 1, 'https://ror.org/04gse8s13 Xactagen (United States)'),
(23818, 'https://ror.org/04gv9vj98', 'en', 1, 'https://ror.org/04gv9vj98 Barnet and Chase Farm NHS Hospitals Trust'),
(23819, 'https://ror.org/04gvwsw92', 'no_lang_code', 1, 'https://ror.org/04gvwsw92 Yantric (United States)'),
(23820, 'https://ror.org/04gx8zb05', 'de', 1, 'https://ror.org/04gx8zb05 Zentralinstitut für die Kassenärztliche Versorgung in der Bundesrepublik Deutschland'),
(23821, 'https://ror.org/04h1c0m97', 'no_lang_code', 1, 'https://ror.org/04h1c0m97 Umweltsensortechnik (Germany)'),
(23822, 'https://ror.org/04h2hb382', 'en', 1, 'https://ror.org/04h2hb382 Southwest Georgia Area Health Education Center'),
(23823, 'https://ror.org/04h484195', 'no_lang_code', 1, 'https://ror.org/04h484195 Printed Electronics (United Kingdom)'),
(23824, 'https://ror.org/04h6f0y45', 'no_lang_code', 1, 'https://ror.org/04h6f0y45 National Hyperbaric Centre'),
(23825, 'https://ror.org/04h6jt451', 'en', 1, 'https://ror.org/04h6jt451 Stratton Community Hospital'),
(23826, 'https://ror.org/04h6m2g55', 'en', 1, 'https://ror.org/04h6m2g55 Cobham Community Hospital'),
(23827, 'https://ror.org/04h794874', 'en', 1, 'https://ror.org/04h794874 Koriyama Women''s University 郔山儳子大学'),
(23828, 'https://ror.org/04h80zb52', 'no_lang_code', 1, 'https://ror.org/04h80zb52 International Game Technology (Canada)'),
(23829, 'https://ror.org/04h86q851', 'fr', 1, 'https://ror.org/04h86q851 Ɖcole SupĆ©rieure Internationale de Gestion'),
(23830, 'https://ror.org/04ha7mv34', 'no_lang_code', 1, 'https://ror.org/04ha7mv34 Surface Transforms (United Kingdom)'),
(23831, 'https://ror.org/04hb77r84', 'no_lang_code', 1, 'https://ror.org/04hb77r84 Plastic Electronic (Austria)'),
(23832, 'https://ror.org/04hcrmf43', 'en', 1, 'https://ror.org/04hcrmf43 National Down Syndrome Society'),
(23833, 'https://ror.org/04hdfdt60', 'no_lang_code', 1, 'https://ror.org/04hdfdt60 Spartan Solutions (United Kingdom)'),
(23834, 'https://ror.org/04hdj2902', 'en', 1, 'https://ror.org/04hdj2902 Tennessee Temple University'),
(23835, 'https://ror.org/04hect109', 'en', 1, 'https://ror.org/04hect109 Saint Gregory''s Catholic College'),
(23836, 'https://ror.org/04hm3y828', 'es', 1, 'https://ror.org/04hm3y828 Universidad del Caribe'),
(23837, 'https://ror.org/04hmkr267', 'no_lang_code', 1, 'https://ror.org/04hmkr267 Onefive (Switzerland)'),
(23838, 'https://ror.org/04hqh3a23', 'nl', 1, 'https://ror.org/04hqh3a23 Stichting Bouwresearch'),
(23839, 'https://ror.org/04hsnt894', 'no_lang_code', 1, 'https://ror.org/04hsnt894 Microbial Insights (United States)'),
(23840, 'https://ror.org/04htacw13', 'es', 1, 'https://ror.org/04htacw13 Universidad PolitƩcnica Hispano Mexicana'),
(23841, 'https://ror.org/04htkzn50', 'en', 1, 'https://ror.org/04htkzn50 Youth & Family Services'),
(23842, 'https://ror.org/04hvez104', 'en', 1, 'https://ror.org/04hvez104 Ross on Wye Hospital'),
(23843, 'https://ror.org/04hvybk54', 'no_lang_code', 1, 'https://ror.org/04hvybk54 Seneca Productions (United Kingdom)'),
(23844, 'https://ror.org/04hx5st34', 'en', 1, 'https://ror.org/04hx5st34 University of Virginia''s College at Wise'),
(23845, 'https://ror.org/04hy3rc65', 'no_lang_code', 1, 'https://ror.org/04hy3rc65 Red Tail Hawk Corporation (United States)'),
(23846, 'https://ror.org/04hyfx005', 'no_lang_code', 1, 'https://ror.org/04hyfx005 Oxford Nanopore Technologies (United Kingdom)'),
(23847, 'https://ror.org/04j2q1352', 'es', 1, 'https://ror.org/04j2q1352 Instituto Centroamericano de Administración de Empresas'),
(23848, 'https://ror.org/04j351e79', 'en', 1, 'https://ror.org/04j351e79 Hochschule Koblenz Koblenz University of Applied Sciences'),
(23849, 'https://ror.org/04j3tef82', 'es', 1, 'https://ror.org/04j3tef82 Centro Universitario Incarnate Word'),
(23850, 'https://ror.org/04j539t95', 'no_lang_code', 1, 'https://ror.org/04j539t95 Meyer Burger Technology (Switzerland)'),
(23851, 'https://ror.org/04j5b4618', 'no_lang_code', 1, 'https://ror.org/04j5b4618 Navidea Biopharmaceuticals (United States)'),
(23852, 'https://ror.org/04j6csa16', 'en', 1, 'https://ror.org/04j6csa16 Rogers County Volunteers for Youth'),
(23853, 'https://ror.org/04j6ssn11', 'en', 1, 'https://ror.org/04j6ssn11 Sinai Higher Institute for Tourism and Hotels المعهد المصرى العالى Ł„Ł„Ų³ŁŠŲ§Ų­Ų© ŁˆŲ§Ł„ŁŁ†Ų§ŲÆŁ‚'),
(23854, 'https://ror.org/04j9dfg85', 'en', 1, 'https://ror.org/04j9dfg85 Kongo University UniversitƩ Kongo'),
(23855, 'https://ror.org/04j9g4c85', 'en', 1, 'https://ror.org/04j9g4c85 Wareham Community Hospital'),
(23856, 'https://ror.org/04j9vr008', 'es', 1, 'https://ror.org/04j9vr008 Centro UniversitƔrio Internacional'),
(23857, 'https://ror.org/04jaxd697', 'no_lang_code', 1, 'https://ror.org/04jaxd697 SeaChange Pharmaceuticals (United States)'),
(23858, 'https://ror.org/04jb7ky60', 'no_lang_code', 1, 'https://ror.org/04jb7ky60 Nanocerox (United States)'),
(23859, 'https://ror.org/04jbqz480', 'no_lang_code', 1, 'https://ror.org/04jbqz480 Variation Biotechnologies (Canada)'),
(23860, 'https://ror.org/04jdjn903', 'en', 1, 'https://ror.org/04jdjn903 Jingning County People''s Hospital ę™Æå®ē•²ę—č‡Ŗę²»åŽæäŗŗę°‘åŒ»é™¢'),
(23861, 'https://ror.org/04jhxpq45', 'es', 1, 'https://ror.org/04jhxpq45 Universidad Iberoamericana'),
(23862, 'https://ror.org/04jj38x11', 'en', 1, 'https://ror.org/04jj38x11 West Coast University'),
(23863, 'https://ror.org/04jj8zx97', 'no_lang_code', 1, 'https://ror.org/04jj8zx97 Shahid Motahari Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ Ł…Ų·Ł‡Ų±ŪŒ'),
(23864, 'https://ror.org/04jjpme94', 'no_lang_code', 1, 'https://ror.org/04jjpme94 Meridian Bioscience (United States)'),
(23865, 'https://ror.org/04jjy0g33', 'pt', 1, 'https://ror.org/04jjy0g33 Hospital Braga Hospital de Braga'),
(23866, 'https://ror.org/04jk6hn97', 'en', 1, 'https://ror.org/04jk6hn97 Silicon Valley University Universidad de Silicon Valley'),
(23867, 'https://ror.org/04jmcwc90', 'en', 1, 'https://ror.org/04jmcwc90 Newcastle College'),
(23868, 'https://ror.org/04jmsq731', 'en', 1, 'https://ror.org/04jmsq731 Arab American University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© - Ų¬Ł†ŁŠŁ†'),
(23869, 'https://ror.org/04jr0a134', 'en', 1, 'https://ror.org/04jr0a134 Academy of Art University'),
(23870, 'https://ror.org/04jr90994', 'en', 1, 'https://ror.org/04jr90994 St Martin''s Hospital'),
(23871, 'https://ror.org/04jsebv71', 'en', 1, 'https://ror.org/04jsebv71 Institute of Finance Management'),
(23872, 'https://ror.org/04jst1j84', 'es', 1, 'https://ror.org/04jst1j84 Universidad Columbia del Paraguay'),
(23873, 'https://ror.org/04jwm9504', 'en', 1, 'https://ror.org/04jwm9504 International Council for Canadian Studies'),
(23874, 'https://ror.org/04jxq7458', 'fr', 1, 'https://ror.org/04jxq7458 Association des DƩmographes du QuƩbec'),
(23875, 'https://ror.org/04jxt9a41', 'no_lang_code', 1, 'https://ror.org/04jxt9a41 Plasma Clean (United Kingdom)'),
(23876, 'https://ror.org/04jyjz861', 'pt', 1, 'https://ror.org/04jyjz861 Centro UniversitÔrio Módulo'),
(23877, 'https://ror.org/04jyr6737', 'en', 1, 'https://ror.org/04jyr6737 Hexham General Hospital'),
(23878, 'https://ror.org/04jzb8h35', 'no_lang_code', 1, 'https://ror.org/04jzb8h35 Sound&Fury'),
(23879, 'https://ror.org/04jzrvb03', 'en', 1, 'https://ror.org/04jzrvb03 Walsall Healthcare NHS Trust'),
(23880, 'https://ror.org/04k1c4v44', 'pt', 1, 'https://ror.org/04k1c4v44 Centro UniversitƔrio de Barra Mansa'),
(23881, 'https://ror.org/04k2dc025', 'es', 1, 'https://ror.org/04k2dc025 Universidad Don Vasco'),
(23882, 'https://ror.org/04k2k1k52', 'no_lang_code', 1, 'https://ror.org/04k2k1k52 Isesaki Fukushima Hospital ä¼Šå‹¢å“Žē¦å³¶ē—…é™¢'),
(23883, 'https://ror.org/04k34dm23', 'en', 1, 'https://ror.org/04k34dm23 John Coupland Hospital'),
(23884, 'https://ror.org/04k46b490', 'en', 1, 'https://ror.org/04k46b490 Red Sea University Ų¬Ų§Ł…Ų¹Ų© البحر الأحمر'),
(23885, 'https://ror.org/04k7gd586', 'no_lang_code', 1, 'https://ror.org/04k7gd586 Systems, Applications & Products in Data Processing (United Kingdom)'),
(23886, 'https://ror.org/04k9y3p96', 'no_lang_code', 1, 'https://ror.org/04k9y3p96 Optoscribe (United Kingdom)'),
(23887, 'https://ror.org/04kbsj707', 'es', 1, 'https://ror.org/04kbsj707 Escuela Tecnológica Instituto Técnico Central'),
(23888, 'https://ror.org/04kdk0s45', 'es', 1, 'https://ror.org/04kdk0s45 Corporación Universitaria Santa Rosa de Cabal'),
(23889, 'https://ror.org/04kdk6h75', 'no_lang_code', 1, 'https://ror.org/04kdk6h75 Registro Internacional Naval (Portugal)'),
(23890, 'https://ror.org/04kmnk678', 'en', 1, 'https://ror.org/04kmnk678 Woodstock Union High School & Middle School'),
(23891, 'https://ror.org/04kmxp840', 'no_lang_code', 1, 'https://ror.org/04kmxp840 Target (Germany)'),
(23892, 'https://ror.org/04kn30428', 'no_lang_code', 1, 'https://ror.org/04kn30428 BSD Crown (Israel)'),
(23893, 'https://ror.org/04kpzy923', 'en', 1, 'https://ror.org/04kpzy923 Princess Alexandra Hospital NHS Trust'),
(23894, 'https://ror.org/04ks7cj51', 'no_lang_code', 1, 'https://ror.org/04ks7cj51 Petroleum of Venezuela (Venezuela) Petróleos de Venezuela'),
(23895, 'https://ror.org/04kw0xk03', 'en', 1, 'https://ror.org/04kw0xk03 Canadian Co-operative Association'),
(23896, 'https://ror.org/04kw8a006', 'en', 1, 'https://ror.org/04kw8a006 Julian Hospital'),
(23897, 'https://ror.org/04kwdvd47', 'no_lang_code', 1, 'https://ror.org/04kwdvd47 Optronics Technologies (Greece)'),
(23898, 'https://ror.org/04kwrcn69', 'es', 1, 'https://ror.org/04kwrcn69 Universidad Tecnológica Costarricense'),
(23899, 'https://ror.org/04kxxrj13', 'no_lang_code', 1, 'https://ror.org/04kxxrj13 QCMetrix (United States)'),
(23900, 'https://ror.org/04ky2sd92', 'en', 1, 'https://ror.org/04ky2sd92 Squamish Nation'),
(23901, 'https://ror.org/04ky74j22', 'en', 1, 'https://ror.org/04ky74j22 Technologie-Transfer-Zentrum Bremerhaven Technology Transfer Center Bremerhaven'),
(23902, 'https://ror.org/04m0bzb15', 'en', 1, 'https://ror.org/04m0bzb15 Rogers State University UniversitĆ© d''Ɖtat de rogers'),
(23903, 'https://ror.org/04m1ha467', 'en', 1, 'https://ror.org/04m1ha467 Sebha University Ų¬Ų§Ł…Ų¹Ų© سبها'),
(23904, 'https://ror.org/04m4fy391', 'en', 1, 'https://ror.org/04m4fy391 Centro UniversitƔrio Senac Senac University Center'),
(23905, 'https://ror.org/04m5pzk31', 'es', 1, 'https://ror.org/04m5pzk31 Fundación Universitaria Autónoma De Las Américas'),
(23906, 'https://ror.org/04m5tys43', 'it', 1, 'https://ror.org/04m5tys43 Tecnoalimenti'),
(23907, 'https://ror.org/04m8jeb72', 'no_lang_code', 1, 'https://ror.org/04m8jeb72 Polymem (France)'),
(23908, 'https://ror.org/04mb3yn31', 'en', 1, 'https://ror.org/04mb3yn31 Wansbeck General Hospital'),
(23909, 'https://ror.org/04mfpk422', 'no_lang_code', 1, 'https://ror.org/04mfpk422 Srico (United States)'),
(23910, 'https://ror.org/04mfr9y95', 'en', 1, 'https://ror.org/04mfr9y95 Midlands Technical College'),
(23911, 'https://ror.org/04mfx2z51', 'no_lang_code', 1, 'https://ror.org/04mfx2z51 Replicon (United States)'),
(23912, 'https://ror.org/04mgp5b41', 'no_lang_code', 1, 'https://ror.org/04mgp5b41 Sarossa (United States)'),
(23913, 'https://ror.org/04mk5mk38', 'en', 1, 'https://ror.org/04mk5mk38 Cyprus International University Uluslararası Kıbrıs Üniversitesi'),
(23914, 'https://ror.org/04mma9b71', 'en', 1, 'https://ror.org/04mma9b71 Shri Siddhivinayak Ganapati Cancer Hospital ą¤¶ą„ą¤°ą„€ ą¤øą¤æą¤¦ą„ą¤§ą¤æą¤µą¤æą¤Øą¤¾ą¤Æą¤• ą¤—ą¤£ą¤Ŗą¤¤ą„€ ą¤•ą„…ą¤Øą„ą¤øą¤° ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(23915, 'https://ror.org/04mmq3h75', 'en', 1, 'https://ror.org/04mmq3h75 University of Defence Универзитет оГбране'),
(23916, 'https://ror.org/04mptne15', 'no_lang_code', 1, 'https://ror.org/04mptne15 Strategic Solutions Consulting (United States)'),
(23917, 'https://ror.org/04msd0t92', 'es', 1, 'https://ror.org/04msd0t92 Universidad PolitƩcnica Estatal del Carchi'),
(23918, 'https://ror.org/04mvrqy78', 'es', 1, 'https://ror.org/04mvrqy78 Universidad del Desarrollo Profesional'),
(23919, 'https://ror.org/04mw1zx86', 'en', 1, 'https://ror.org/04mw1zx86 Karachay-Cherkess State Pedagogical University ŠšŠ°Ń€Š°Ń‡Š°ŠµŠ²Š¾-Черкесский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(23920, 'https://ror.org/04n037429', 'en', 1, 'https://ror.org/04n037429 Chard & District Hospital'),
(23921, 'https://ror.org/04n2k3w88', 'en', 1, 'https://ror.org/04n2k3w88 Welsh Centre for Printing and Coating'),
(23922, 'https://ror.org/04n3nh595', 'en', 1, 'https://ror.org/04n3nh595 Department of Forestry'),
(23923, 'https://ror.org/04n6hyy67', 'pt', 1, 'https://ror.org/04n6hyy67 Instituto Superior de Artes e Cultura'),
(23924, 'https://ror.org/04n6z1w07', 'en', 1, 'https://ror.org/04n6z1w07 Bridgeways Day Hospital'),
(23925, 'https://ror.org/04n76m431', 'no_lang_code', 1, 'https://ror.org/04n76m431 Meridian Medical Systems (United States)'),
(23926, 'https://ror.org/04na4ar59', 'en', 1, 'https://ror.org/04na4ar59 Center of Informatization in the Sphere of Culture'),
(23927, 'https://ror.org/04nckd528', 'en', 1, 'https://ror.org/04nckd528 Dorset County Hospital NHS Foundation Trust'),
(23928, 'https://ror.org/04ndj7y66', 'it', 1, 'https://ror.org/04ndj7y66 Osservatorio Astronomico della Regione Autonoma Valle d''Aosta'),
(23929, 'https://ror.org/04nen0q36', 'es', 1, 'https://ror.org/04nen0q36 Corporación Tecnológica de BogotÔ'),
(23930, 'https://ror.org/04nfs2483', 'en', 1, 'https://ror.org/04nfs2483 Universidad de St. Francis University of St. Francis'),
(23931, 'https://ror.org/04nhyde41', 'no_lang_code', 1, 'https://ror.org/04nhyde41 Premix (Finland)'),
(23932, 'https://ror.org/04nk1k821', 'en', 1, 'https://ror.org/04nk1k821 Kao Yuan University é«˜č‹‘ē§‘ęŠ€å¤§å­ø'),
(23933, 'https://ror.org/04nmbd607', 'en', 1, 'https://ror.org/04nmbd607 Universidad de Córdoba University of Córdoba'),
(23934, 'https://ror.org/04nqhm289', 'en', 1, 'https://ror.org/04nqhm289 New Victoria Hospital'),
(23935, 'https://ror.org/04ns19e26', 'en', 1, 'https://ror.org/04ns19e26 Association of Canadian College and University Teachers of English'),
(23936, 'https://ror.org/04ns7jw88', 'no_lang_code', 1, 'https://ror.org/04ns7jw88 Solo Kleinmotoren (Germany)'),
(23937, 'https://ror.org/04nsmrq40', 'en', 1, 'https://ror.org/04nsmrq40 Kwararafa University'),
(23938, 'https://ror.org/04nt4km71', 'no_lang_code', 1, 'https://ror.org/04nt4km71 Ventiva (United States)'),
(23939, 'https://ror.org/04ntynb59', 'en', 1, 'https://ror.org/04ntynb59 Enugu State University of Science and Technology'),
(23940, 'https://ror.org/04nx23795', 'en', 1, 'https://ror.org/04nx23795 Blyth Community Hospital'),
(23941, 'https://ror.org/04nxy6d06', 'no_lang_code', 1, 'https://ror.org/04nxy6d06 Stelar (Italy)');
INSERT INTO `rors` VALUES
(23942, 'https://ror.org/04ny3nx36', 'es', 1, 'https://ror.org/04ny3nx36 Universidad Benito JuƔrez Garcƭa'),
(23943, 'https://ror.org/04ny69498', 'no_lang_code', 1, 'https://ror.org/04ny69498 Millidyne (Finland)'),
(23944, 'https://ror.org/04ny9jk61', 'en', 1, 'https://ror.org/04ny9jk61 Clevedon Hospital'),
(23945, 'https://ror.org/04nz0sd46', 'en', 1, 'https://ror.org/04nz0sd46 Teddington Memorial Hospital'),
(23946, 'https://ror.org/04p0fsa07', 'en', 1, 'https://ror.org/04p0fsa07 Bệnh viện đa khoa tỉnh KhĆ”nh Hòa Khanh Hoa General Hospital'),
(23947, 'https://ror.org/04p0rqr57', 'no_lang_code', 1, 'https://ror.org/04p0rqr57 Unimetrik (Spain)'),
(23948, 'https://ror.org/04p2g8a33', 'es', 1, 'https://ror.org/04p2g8a33 Instituto Universitario Puebla'),
(23949, 'https://ror.org/04p47he44', 'pt', 1, 'https://ror.org/04p47he44 Sociedade de Ensino UniversitƔrio do Nordeste'),
(23950, 'https://ror.org/04p58r664', 'no_lang_code', 1, 'https://ror.org/04p58r664 Ratos (Sweden)'),
(23951, 'https://ror.org/04p6k7180', 'no_lang_code', 1, 'https://ror.org/04p6k7180 Marksman Cellject (Canada)'),
(23952, 'https://ror.org/04p77ts85', 'en', 1, 'https://ror.org/04p77ts85 Canadian Historical Association SociƩtƩ historique du Canada'),
(23953, 'https://ror.org/04p83bg23', 'es', 1, 'https://ror.org/04p83bg23 Instituto Profesional Libertador de Los Andes'),
(23954, 'https://ror.org/04p861642', 'en', 1, 'https://ror.org/04p861642 Dulwich Community Hospital'),
(23955, 'https://ror.org/04p8px794', 'no_lang_code', 1, 'https://ror.org/04p8px794 Optomec (United States)'),
(23956, 'https://ror.org/04pan0z69', 'no_lang_code', 1, 'https://ror.org/04pan0z69 Trueflaw (Finland)'),
(23957, 'https://ror.org/04pat0b95', 'no_lang_code', 1, 'https://ror.org/04pat0b95 OnTo Technology (United States)'),
(23958, 'https://ror.org/04pbdwx95', 'no_lang_code', 1, 'https://ror.org/04pbdwx95 Opway (Portugal)'),
(23959, 'https://ror.org/04pcnys31', 'no_lang_code', 1, 'https://ror.org/04pcnys31 Numerical Algorithms Group (United Kingdom)'),
(23960, 'https://ror.org/04pdbrh74', 'no_lang_code', 1, 'https://ror.org/04pdbrh74 Sievi (Finland)'),
(23961, 'https://ror.org/04peg0q52', 'en', 1, 'https://ror.org/04peg0q52 Network of Aquaculture Centres in Asia-Pacific'),
(23962, 'https://ror.org/04pf4cg46', 'no_lang_code', 1, 'https://ror.org/04pf4cg46 Speech Processing Solutions (United States)'),
(23963, 'https://ror.org/04pf6mc33', 'en', 1, 'https://ror.org/04pf6mc33 Maine School Administrative District 1'),
(23964, 'https://ror.org/04pfq1012', 'no_lang_code', 1, 'https://ror.org/04pfq1012 Pyramid Technical Consultants (United States)'),
(23965, 'https://ror.org/04pggra29', 'en', 1, 'https://ror.org/04pggra29 Miami International University of Art & Design Universidad Internacional de Miami de Arte & DiseƱo'),
(23966, 'https://ror.org/04pm6wp87', 'no_lang_code', 1, 'https://ror.org/04pm6wp87 Smiths Detection (Canada)'),
(23967, 'https://ror.org/04pnqcx66', 'pt', 1, 'https://ror.org/04pnqcx66 Centro UniversitÔrio de João Pessoa'),
(23968, 'https://ror.org/04pp32a12', 'no_lang_code', 1, 'https://ror.org/04pp32a12 Pfaff Industriemaschinen (Germany)'),
(23969, 'https://ror.org/04ppn0b98', 'no_lang_code', 1, 'https://ror.org/04ppn0b98 Rebellion (United Kingdom)'),
(23970, 'https://ror.org/04pqpvr75', 'es', 1, 'https://ror.org/04pqpvr75 Universidad de Los Andes'),
(23971, 'https://ror.org/04pqyhc66', 'no_lang_code', 1, 'https://ror.org/04pqyhc66 OptoSci (United Kingdom)'),
(23972, 'https://ror.org/04pry7b16', 'fr', 1, 'https://ror.org/04pry7b16 Ɖcole Normale SupĆ©rieure de TĆ©touan'),
(23973, 'https://ror.org/04pt7tz26', 'en', 1, 'https://ror.org/04pt7tz26 West Heath Hospital'),
(23974, 'https://ror.org/04ptyy568', 'en', 1, 'https://ror.org/04ptyy568 Western Iowa Tech Community College'),
(23975, 'https://ror.org/04pvj3017', 'en', 1, 'https://ror.org/04pvj3017 Wycliffe College'),
(23976, 'https://ror.org/04pvywd96', 'no_lang_code', 1, 'https://ror.org/04pvywd96 Microsystems (United Kingdom)'),
(23977, 'https://ror.org/04py01q17', 'en', 1, 'https://ror.org/04py01q17 BMI The Droitwich Spa Hospital'),
(23978, 'https://ror.org/04pyajs57', 'no_lang_code', 1, 'https://ror.org/04pyajs57 Inspecta (Sweden)'),
(23979, 'https://ror.org/04pyed255', 'en', 1, 'https://ror.org/04pyed255 Transport Systems Catapult'),
(23980, 'https://ror.org/04pys4598', 'en', 1, 'https://ror.org/04pys4598 Internet Memory Foundation'),
(23981, 'https://ror.org/04pyty074', 'en', 1, 'https://ror.org/04pyty074 Pennsylvania Coalition Against Rape'),
(23982, 'https://ror.org/04q1p4j28', 'no_lang_code', 1, 'https://ror.org/04q1p4j28 Solvo Biotechnology (Hungary)'),
(23983, 'https://ror.org/04q1zdg40', 'en', 1, 'https://ror.org/04q1zdg40 Caterham Dene Hospital'),
(23984, 'https://ror.org/04q23nr55', 'en', 1, 'https://ror.org/04q23nr55 Safe States Alliance'),
(23985, 'https://ror.org/04q4vw719', 'en', 1, 'https://ror.org/04q4vw719 Plymouth Hospital'),
(23986, 'https://ror.org/04q8seb48', 'fr', 1, 'https://ror.org/04q8seb48 Ɖcole SupĆ©rieure de Management'),
(23987, 'https://ror.org/04qcmbz41', 'no_lang_code', 1, 'https://ror.org/04qcmbz41 NanOasis Technologies (United States)'),
(23988, 'https://ror.org/04qcq6322', 'en', 1, 'https://ror.org/04qcq6322 Yamagata Prefectural University of Health Sciences å±±å½¢ēœŒē«‹äæå„åŒ»ē™‚å¤§å­¦'),
(23989, 'https://ror.org/04qctfn73', 'no_lang_code', 1, 'https://ror.org/04qctfn73 Nexus Engineering (Bulgaria)'),
(23990, 'https://ror.org/04qd8km43', 'en', 1, 'https://ror.org/04qd8km43 West Valley College'),
(23991, 'https://ror.org/04qd9zx60', 'no_lang_code', 1, 'https://ror.org/04qd9zx60 Swatch Group (Switzerland)'),
(23992, 'https://ror.org/04qgx7b19', 'es', 1, 'https://ror.org/04qgx7b19 Universidad de Relaciones y Estudios Internacionales'),
(23993, 'https://ror.org/04qhjq449', 'no_lang_code', 1, 'https://ror.org/04qhjq449 Nomisma (Italy)'),
(23994, 'https://ror.org/04qkkdk37', 'en', 1, 'https://ror.org/04qkkdk37 Royal Oak Community Coalition'),
(23995, 'https://ror.org/04qkww785', 'en', 1, 'https://ror.org/04qkww785 Saskatchewan Environment Industry and Managers Association'),
(23996, 'https://ror.org/04qkxwh87', 'no_lang_code', 1, 'https://ror.org/04qkxwh87 Wellcore'),
(23997, 'https://ror.org/04qm2hq24', 'es', 1, 'https://ror.org/04qm2hq24 Universidad Insurgentes'),
(23998, 'https://ror.org/04qnw1866', 'no_lang_code', 1, 'https://ror.org/04qnw1866 Polycom (Slovenia)'),
(23999, 'https://ror.org/04qnyww97', 'en', 1, 'https://ror.org/04qnyww97 Spire St Anthony’s Hospital'),
(24000, 'https://ror.org/04qpp5q81', 'en', 1, 'https://ror.org/04qpp5q81 Minuteman High School'),
(24001, 'https://ror.org/04qrbj889', 'no_lang_code', 1, 'https://ror.org/04qrbj889 Stadtwerke Bochum (Germany)'),
(24002, 'https://ror.org/04qrwnv94', 'en', 1, 'https://ror.org/04qrwnv94 Bệnh viện Hùng Vʰʔng Hung Vuong Hospital'),
(24003, 'https://ror.org/04qs2sz84', 'en', 1, 'https://ror.org/04qs2sz84 Central Hospital of Wuhan ę­¦ę±‰åø‚äø­åæƒåŒ»é™¢'),
(24004, 'https://ror.org/04qsyx010', 'no_lang_code', 1, 'https://ror.org/04qsyx010 TriOS Mess und Datentechnik (Germany)'),
(24005, 'https://ror.org/04qt1cz93', 'en', 1, 'https://ror.org/04qt1cz93 National Association of EMS Physicians'),
(24006, 'https://ror.org/04qtafx02', 'en', 1, 'https://ror.org/04qtafx02 Informal logic (Canada)'),
(24007, 'https://ror.org/04qtcz169', 'es', 1, 'https://ror.org/04qtcz169 Universitario Francisco de AsĆ­s'),
(24008, 'https://ror.org/04qwwm875', 'en', 1, 'https://ror.org/04qwwm875 Nanao hospital äøƒå°¾ē—…é™¢'),
(24009, 'https://ror.org/04qxpma28', 'pt', 1, 'https://ror.org/04qxpma28 Centro UniversitƔrio de Araraquara'),
(24010, 'https://ror.org/04qxyd889', 'en', 1, 'https://ror.org/04qxyd889 Ocean County College'),
(24011, 'https://ror.org/04qzrw529', 'en', 1, 'https://ror.org/04qzrw529 Yaroslav-the-Wise Novgorod State University ŠŠ¾Š²Š³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ярослава ŠœŃƒŠ“рого'),
(24012, 'https://ror.org/04r10g051', 'en', 1, 'https://ror.org/04r10g051 Birmingham Community Healthcare NHS Trust'),
(24013, 'https://ror.org/04r3ghh39', 'no_lang_code', 1, 'https://ror.org/04r3ghh39 Virtici (United States)'),
(24014, 'https://ror.org/04r5d4283', 'no_lang_code', 1, 'https://ror.org/04r5d4283 Starfire Industries (United States)'),
(24015, 'https://ror.org/04r5hpa11', 'no_lang_code', 1, 'https://ror.org/04r5hpa11 YDreams (Portugal)'),
(24016, 'https://ror.org/04r8gaf17', 'pt', 1, 'https://ror.org/04r8gaf17 Universidade Vila Velha'),
(24017, 'https://ror.org/04r8t4c49', 'en', 1, 'https://ror.org/04r8t4c49 Sup Management سيب مناجمنت'),
(24018, 'https://ror.org/04rb4x926', 'no_lang_code', 1, 'https://ror.org/04rb4x926 ShapeSpace (United Kingdom)'),
(24019, 'https://ror.org/04retwk85', 'no_lang_code', 1, 'https://ror.org/04retwk85 O.D. 260 (United States)'),
(24020, 'https://ror.org/04rg2ce06', 'no_lang_code', 1, 'https://ror.org/04rg2ce06 VistaMed (Ireland)'),
(24021, 'https://ror.org/04rhjk233', 'es', 1, 'https://ror.org/04rhjk233 Universidad Instituto Nacional de Ciencias Exactas'),
(24022, 'https://ror.org/04rktjw27', 'no_lang_code', 1, 'https://ror.org/04rktjw27 Profusa (United States)'),
(24023, 'https://ror.org/04rnd5t03', 'no_lang_code', 1, 'https://ror.org/04rnd5t03 Nanomotion (Israel)'),
(24024, 'https://ror.org/04rqchc36', 'en', 1, 'https://ror.org/04rqchc36 Native Health'),
(24025, 'https://ror.org/04rs46204', 'no_lang_code', 1, 'https://ror.org/04rs46204 United Science'),
(24026, 'https://ror.org/04rtgz764', 'en', 1, 'https://ror.org/04rtgz764 Texas Center for Infectious Disease'),
(24027, 'https://ror.org/04rtnbn65', 'no_lang_code', 1, 'https://ror.org/04rtnbn65 Molecular Networks (Germany)'),
(24028, 'https://ror.org/04rtr9n62', 'en', 1, 'https://ror.org/04rtr9n62 Scottish Qualifications Authority'),
(24029, 'https://ror.org/04rxffs27', 'en', 1, 'https://ror.org/04rxffs27 Fleet Community Hospital'),
(24030, 'https://ror.org/04ry38w69', 'en', 1, 'https://ror.org/04ry38w69 Research Studios Austria'),
(24031, 'https://ror.org/04s03zf45', 'en', 1, 'https://ror.org/04s03zf45 Tees, Esk and Wear Valleys NHS Foundation Trust'),
(24032, 'https://ror.org/04s1c7214', 'no_lang_code', 1, 'https://ror.org/04s1c7214 Pretexo (France)'),
(24033, 'https://ror.org/04s1zn642', 'no_lang_code', 1, 'https://ror.org/04s1zn642 Notox (Denmark)'),
(24034, 'https://ror.org/04s2jq961', 'es', 1, 'https://ror.org/04s2jq961 Universidad Nacional del Oriente'),
(24035, 'https://ror.org/04s3hp788', 'es', 1, 'https://ror.org/04s3hp788 Centro Universitario del Noreste'),
(24036, 'https://ror.org/04s4egp92', 'no', 1, 'https://ror.org/04s4egp92 Tel-Tek'),
(24037, 'https://ror.org/04s4k6s39', 'no_lang_code', 1, 'https://ror.org/04s4k6s39 Samsung (Germany)'),
(24038, 'https://ror.org/04s65rw96', 'es', 1, 'https://ror.org/04s65rw96 Universidad Regiomontana'),
(24039, 'https://ror.org/04s8gft68', 'en', 1, 'https://ror.org/04s8gft68 National Institute for Bioprocessing Research and Training'),
(24040, 'https://ror.org/04sahz302', 'en', 1, 'https://ror.org/04sahz302 Newtown Hospital'),
(24041, 'https://ror.org/04sbdyg82', 'no_lang_code', 1, 'https://ror.org/04sbdyg82 Piaggio (Spain)'),
(24042, 'https://ror.org/04sc7sk27', 'en', 1, 'https://ror.org/04sc7sk27 European Social Observatory'),
(24043, 'https://ror.org/04scjv535', 'no_lang_code', 1, 'https://ror.org/04scjv535 Hedgeye (United States)'),
(24044, 'https://ror.org/04scnnc07', 'en', 1, 'https://ror.org/04scnnc07 Sadat Academy for Management Sciences Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© السادات Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ©'),
(24045, 'https://ror.org/04scsxq13', 'en', 1, 'https://ror.org/04scsxq13 Newholme Hospital'),
(24046, 'https://ror.org/04sgryq04', 'no_lang_code', 1, 'https://ror.org/04sgryq04 Mirasys (Finland)'),
(24047, 'https://ror.org/04sh4pf16', 'pt', 1, 'https://ror.org/04sh4pf16 Instituto Superior de Ciencias Sociais e RelaƧƵes Internacionais'),
(24048, 'https://ror.org/04shzs249', 'en', 1, 'https://ror.org/04shzs249 Hampshire Hospitals NHS Foundation Trust'),
(24049, 'https://ror.org/04sjj9841', 'no_lang_code', 1, 'https://ror.org/04sjj9841 Avid (Germany)'),
(24050, 'https://ror.org/04sk00116', 'en', 1, 'https://ror.org/04sk00116 Higher Knowledge Institute of Languages ​​and Translation'),
(24051, 'https://ror.org/04skaq459', 'es', 1, 'https://ror.org/04skaq459 Hospital Nacional de NiƱos'),
(24052, 'https://ror.org/04smrv092', 'no_lang_code', 1, 'https://ror.org/04smrv092 KLA (Ireland)'),
(24053, 'https://ror.org/04snjkd04', 'en', 1, 'https://ror.org/04snjkd04 Association Canadienne pour la Recherche Théâtrale Canadian Association for Theatre Research'),
(24054, 'https://ror.org/04spmxm14', 'en', 1, 'https://ror.org/04spmxm14 Plant Protection Institute'),
(24055, 'https://ror.org/04ssgxk51', 'en', 1, 'https://ror.org/04ssgxk51 Ashworth Hospital'),
(24056, 'https://ror.org/04svzdw14', 'es', 1, 'https://ror.org/04svzdw14 Centro Universitario de Mercadotecnia y Publicidad'),
(24057, 'https://ror.org/04sx1q420', 'en', 1, 'https://ror.org/04sx1q420 East Riding Community Hospital'),
(24058, 'https://ror.org/04syg1z63', 'en', 1, 'https://ror.org/04syg1z63 Maniilaq Association'),
(24059, 'https://ror.org/04szbq460', 'es', 1, 'https://ror.org/04szbq460 Universidad Abierta'),
(24060, 'https://ror.org/04t104d61', 'en', 1, 'https://ror.org/04t104d61 Southwestern College - Kansas'),
(24061, 'https://ror.org/04t3bd569', 'no_lang_code', 1, 'https://ror.org/04t3bd569 Power Plus Communications (Germany)'),
(24062, 'https://ror.org/04t3wh438', 'en', 1, 'https://ror.org/04t3wh438 Haslemere Hospital'),
(24063, 'https://ror.org/04t50sy53', 'sv', 1, 'https://ror.org/04t50sy53 VƤsterbottens LƤns Landsting'),
(24064, 'https://ror.org/04t57g552', 'no_lang_code', 1, 'https://ror.org/04t57g552 Reaction Engines (United Kingdom)'),
(24065, 'https://ror.org/04t5n6k60', 'no_lang_code', 1, 'https://ror.org/04t5n6k60 Praevium Research (United States)'),
(24066, 'https://ror.org/04t60r196', 'no_lang_code', 1, 'https://ror.org/04t60r196 Xiros (United Kingdom)'),
(24067, 'https://ror.org/04t6erm02', 'no_lang_code', 1, 'https://ror.org/04t6erm02 Infor (United States)'),
(24068, 'https://ror.org/04t718460', 'en', 1, 'https://ror.org/04t718460 Southern New Hampshire University UniversitƩ du sud du new hampshire'),
(24069, 'https://ror.org/04t730v47', 'en', 1, 'https://ror.org/04t730v47 National Technological University Universidad Tecnológica Nacional'),
(24070, 'https://ror.org/04t7w7h11', 'en', 1, 'https://ror.org/04t7w7h11 Alfred Bean Hospital'),
(24071, 'https://ror.org/04t83hz09', 'en', 1, 'https://ror.org/04t83hz09 Mansfield Community Hospital'),
(24072, 'https://ror.org/04t8nza80', 'no_lang_code', 1, 'https://ror.org/04t8nza80 MathWorks (United Kingdom)'),
(24073, 'https://ror.org/04t8wxc05', 'en', 1, 'https://ror.org/04t8wxc05 Yorkville University'),
(24074, 'https://ror.org/04t93g058', 'en', 1, 'https://ror.org/04t93g058 Rossall Hospital'),
(24075, 'https://ror.org/04t9p4363', 'en', 1, 'https://ror.org/04t9p4363 Joseph Ayo Babalola University'),
(24076, 'https://ror.org/04tc27d43', 'es', 1, 'https://ror.org/04tc27d43 Escuela Universitaria de Fisioterapia de la ONCE'),
(24077, 'https://ror.org/04tccz814', 'no_lang_code', 1, 'https://ror.org/04tccz814 Hua chiew hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø«ąø±ąø§ą¹€ąø‰ąøµąø¢ąø§'),
(24078, 'https://ror.org/04tcyer40', 'en', 1, 'https://ror.org/04tcyer40 High Institute for Management Sciences المعهد العالى Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ© ŲØŲ§Ł„Ł‚Ų·Ų§Ł…ŁŠŲ©'),
(24079, 'https://ror.org/04td9e852', 'en', 1, 'https://ror.org/04td9e852 Wetlands International'),
(24080, 'https://ror.org/04thy0g29', 'es', 1, 'https://ror.org/04thy0g29 Universitaria Agustiniana'),
(24081, 'https://ror.org/04tjmjk63', 'es', 1, 'https://ror.org/04tjmjk63 Universidad de Zamora'),
(24082, 'https://ror.org/04tqrbk66', 'es', 1, 'https://ror.org/04tqrbk66 Hospital Universitario de Móstoles'),
(24083, 'https://ror.org/04tqy5b82', 'no_lang_code', 1, 'https://ror.org/04tqy5b82 QuanTech (United States)'),
(24084, 'https://ror.org/04tsj5e88', 'no_lang_code', 1, 'https://ror.org/04tsj5e88 New Light Industries (United States)'),
(24085, 'https://ror.org/04ttx6h98', 'en', 1, 'https://ror.org/04ttx6h98 Talcott Mountain Science Center for Student Involvement'),
(24086, 'https://ror.org/04tvjvp97', 'en', 1, 'https://ror.org/04tvjvp97 East Sussex Healthcare NHS Trust'),
(24087, 'https://ror.org/04tzj1935', 'no_lang_code', 1, 'https://ror.org/04tzj1935 Planet'),
(24088, 'https://ror.org/04v0as660', 'en', 1, 'https://ror.org/04v0as660 Hillingdon Hospitals NHS Foundation Trust'),
(24089, 'https://ror.org/04v3zn617', 'no_lang_code', 1, 'https://ror.org/04v3zn617 Fungisem (Spain)'),
(24090, 'https://ror.org/04v5gcw55', 'en', 1, 'https://ror.org/04v5gcw55 Shanghai Pudong New Area Gongli Hospital äøŠęµ·åø‚ęµ¦äøœę–°åŒŗå…¬åˆ©åŒ»é™¢'),
(24091, 'https://ror.org/04v7h0g25', 'no_lang_code', 1, 'https://ror.org/04v7h0g25 Plant Bioscience Limited (United Kingdom)'),
(24092, 'https://ror.org/04v85zm05', 'no_lang_code', 1, 'https://ror.org/04v85zm05 Valencell (United States)'),
(24093, 'https://ror.org/04v9get85', 'es', 1, 'https://ror.org/04v9get85 Centro Universitario Patria'),
(24094, 'https://ror.org/04v9sac23', 'no_lang_code', 1, 'https://ror.org/04v9sac23 Microflown Technologies (Netherlands)'),
(24095, 'https://ror.org/04vb14m12', 'en', 1, 'https://ror.org/04vb14m12 Paignton Health and Wellbeing Centre'),
(24096, 'https://ror.org/04vbnwv73', 'es', 1, 'https://ror.org/04vbnwv73 Universidad del EjƩrcito y Fuerza AƩrea'),
(24097, 'https://ror.org/04vck0k59', 'en', 1, 'https://ror.org/04vck0k59 Ministry of Agriculture وزارة الفلاحة'),
(24098, 'https://ror.org/04vev9295', 'de', 1, 'https://ror.org/04vev9295 Technisches Museum Wien Vienna Technical Museum'),
(24099, 'https://ror.org/04vf94f14', 'no_lang_code', 1, 'https://ror.org/04vf94f14 Northern Lipids (Canada)'),
(24100, 'https://ror.org/04vgz8j88', 'en', 1, 'https://ror.org/04vgz8j88 University Hospital Lewisham'),
(24101, 'https://ror.org/04vh21716', 'es', 1, 'https://ror.org/04vh21716 Universidad Unión Bolivariana'),
(24102, 'https://ror.org/04vhngq09', 'en', 1, 'https://ror.org/04vhngq09 Salesian University Universidad Salesiana'),
(24103, 'https://ror.org/04vjfp916', 'de', 1, 'https://ror.org/04vjfp916 Hochschule Magdeburg-Stendal Magdeburg-Stendal University of Applied Sciences'),
(24104, 'https://ror.org/04vndy634', 'en', 1, 'https://ror.org/04vndy634 Friary Community Hospital'),
(24105, 'https://ror.org/04vp8rw50', 'en', 1, 'https://ror.org/04vp8rw50 Green IT Amsterdam'),
(24106, 'https://ror.org/04vpw3947', 'en', 1, 'https://ror.org/04vpw3947 Spire Southampton Hospital'),
(24107, 'https://ror.org/04vq0vq60', 'es', 1, 'https://ror.org/04vq0vq60 Universidad Estatal del Valle de Ecatepec'),
(24108, 'https://ror.org/04vq1gm90', 'en', 1, 'https://ror.org/04vq1gm90 V. Bakul Institute for Superhard Materials'),
(24109, 'https://ror.org/04vq5b176', 'en', 1, 'https://ror.org/04vq5b176 TESL Canada Federation'),
(24110, 'https://ror.org/04vt0z780', 'en', 1, 'https://ror.org/04vt0z780 Warren Wilson College'),
(24111, 'https://ror.org/04vt6h473', 'no_lang_code', 1, 'https://ror.org/04vt6h473 Vioryl (Greece)'),
(24112, 'https://ror.org/04vv3qe07', 'en', 1, 'https://ror.org/04vv3qe07 Social and Environmental Research Institute'),
(24113, 'https://ror.org/04vva3h08', 'fr', 1, 'https://ror.org/04vva3h08 RĆ©seau Trans-Tech’s'),
(24114, 'https://ror.org/04vvfch80', 'es', 1, 'https://ror.org/04vvfch80 Sistemas Genómicos'),
(24115, 'https://ror.org/04w0krt75', 'no_lang_code', 1, 'https://ror.org/04w0krt75 MLS Multimedia (Greece)'),
(24116, 'https://ror.org/04w32pe18', 'no_lang_code', 1, 'https://ror.org/04w32pe18 Thalia Design Automation (United Kingdom)'),
(24117, 'https://ror.org/04wd2n987', 'en', 1, 'https://ror.org/04wd2n987 Autonomous University of Durango Universidad Autónoma de Durango'),
(24118, 'https://ror.org/04wdzge25', 'no_lang_code', 1, 'https://ror.org/04wdzge25 Semapa (Portugal)'),
(24119, 'https://ror.org/04we7sp72', 'no_lang_code', 1, 'https://ror.org/04we7sp72 Visual Acuity (United Kingdom)'),
(24120, 'https://ror.org/04wegbp55', 'en', 1, 'https://ror.org/04wegbp55 Tambov State Technical University Тамбовский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(24121, 'https://ror.org/04wgyjv21', 'en', 1, 'https://ror.org/04wgyjv21 Le Quy Don Technical University ĐẔi hį»c Kỹ thuįŗ­t LĆŖ Quý ĐƓn'),
(24122, 'https://ror.org/04wj0w424', 'pt', 1, 'https://ror.org/04wj0w424 Universidade Nilton Lins'),
(24123, 'https://ror.org/04wkq2s46', 'en', 1, 'https://ror.org/04wkq2s46 Police University College Poliisiammattikorkeakoulu'),
(24124, 'https://ror.org/04wmg9c19', 'en', 1, 'https://ror.org/04wmg9c19 Office of Rail Regulation'),
(24125, 'https://ror.org/04wpttf67', 'no_lang_code', 1, 'https://ror.org/04wpttf67 Orbital Biosciences (United States)'),
(24126, 'https://ror.org/04wrajv07', 'no_lang_code', 1, 'https://ror.org/04wrajv07 Sirius Thinking (United States)'),
(24127, 'https://ror.org/04wsphp71', 'en', 1, 'https://ror.org/04wsphp71 Port of Gothenburg'),
(24128, 'https://ror.org/04wvr4b69', 'es', 1, 'https://ror.org/04wvr4b69 Universidad Internacional de la Integración de América Latina'),
(24129, 'https://ror.org/04wwnad27', 'en', 1, 'https://ror.org/04wwnad27 Santa Fe Indian School'),
(24130, 'https://ror.org/04wwsjb72', 'en', 1, 'https://ror.org/04wwsjb72 Canadian Cartographic Association L''Association Canadienne de Cartographie'),
(24131, 'https://ror.org/04wwz3282', 'en', 1, 'https://ror.org/04wwz3282 EIA University Universidad EIA'),
(24132, 'https://ror.org/04wx25x02', 'fr', 1, 'https://ror.org/04wx25x02 Ɖcole des Sciences de I''information Ł…ŲÆŲ±Ų³Ų© Ų¹Ł„ŁˆŁ… Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ'),
(24133, 'https://ror.org/04wz8fg60', 'no_lang_code', 1, 'https://ror.org/04wz8fg60 QED Technologies (United States)'),
(24134, 'https://ror.org/04x2ven38', 'en', 1, 'https://ror.org/04x2ven38 Tidewater Community College'),
(24135, 'https://ror.org/04x85at27', 'en', 1, 'https://ror.org/04x85at27 Pacific Environment'),
(24136, 'https://ror.org/04x8q5j40', 'es', 1, 'https://ror.org/04x8q5j40 Technological University of Hermosillo Universidad Tecnológica de Hermosillo'),
(24137, 'https://ror.org/04x94xw62', 'en', 1, 'https://ror.org/04x94xw62 University of Saint Mary'),
(24138, 'https://ror.org/04xafps82', 'en', 1, 'https://ror.org/04xafps82 Southern Adventist University'),
(24139, 'https://ror.org/04xamr707', 'en', 1, 'https://ror.org/04xamr707 Ilkeston Hospital'),
(24140, 'https://ror.org/04xb8zj39', 'no_lang_code', 1, 'https://ror.org/04xb8zj39 Mincon (Ireland)'),
(24141, 'https://ror.org/04xbsst68', 'fr', 1, 'https://ror.org/04xbsst68 Higher National Agronomic School Ɖcole Nationale SupĆ©rieure Agronomique لمدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للفلاحة'),
(24142, 'https://ror.org/04xf6c905', 'en', 1, 'https://ror.org/04xf6c905 Northcentral University'),
(24143, 'https://ror.org/04xfzjn96', 'no_lang_code', 1, 'https://ror.org/04xfzjn96 Polytec Research (Norway)'),
(24144, 'https://ror.org/04xg7ga92', 'en', 1, 'https://ror.org/04xg7ga92 Wathwood Hospital'),
(24145, 'https://ror.org/04xhwje32', 'no_lang_code', 1, 'https://ror.org/04xhwje32 Mirriad (United Kingdom)'),
(24146, 'https://ror.org/04xjm9m94', 'en', 1, 'https://ror.org/04xjm9m94 Swedish National Police Board'),
(24147, 'https://ror.org/04xjs5g68', 'en', 1, 'https://ror.org/04xjs5g68 Spire London East Hospital'),
(24148, 'https://ror.org/04xmxqq10', 'no_lang_code', 1, 'https://ror.org/04xmxqq10 Teles (Germany)'),
(24149, 'https://ror.org/04xnj7444', 'no_lang_code', 1, 'https://ror.org/04xnj7444 Südwestrundfunk (Germany)'),
(24150, 'https://ror.org/04xp48827', 'en', 1, 'https://ror.org/04xp48827 European University Cyprus Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(24151, 'https://ror.org/04xrk2k91', 'en', 1, 'https://ror.org/04xrk2k91 University of Africa'),
(24152, 'https://ror.org/04xtvq436', 'en', 1, 'https://ror.org/04xtvq436 Kurashiki University of Science and the Arts å€‰ę•·čŠøč”“ē§‘å­¦å¤§å­¦'),
(24153, 'https://ror.org/04xx19x53', 'es', 1, 'https://ror.org/04xx19x53 Universidad del Sureste'),
(24154, 'https://ror.org/04xxqrf38', 'no_lang_code', 1, 'https://ror.org/04xxqrf38 New Jersey Microsystems (United States)'),
(24155, 'https://ror.org/04xxs0n60', 'es', 1, 'https://ror.org/04xxs0n60 Universidad Bicentenaria de Aragua'),
(24156, 'https://ror.org/04y086814', 'no_lang_code', 1, 'https://ror.org/04y086814 Onyx Solar (Spain)'),
(24157, 'https://ror.org/04y087m76', 'no_lang_code', 1, 'https://ror.org/04y087m76 TRX Systems (United States)'),
(24158, 'https://ror.org/04y12vd76', 'fr', 1, 'https://ror.org/04y12vd76 Ɖcole Nationale SupĆ©rieure de l''Administration المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ لل؄دارة'),
(24159, 'https://ror.org/04y735546', 'en', 1, 'https://ror.org/04y735546 Bệnh Viện Đa Khoa Đồng ThĆ”p Dong Thap Hospital'),
(24160, 'https://ror.org/04y784b90', 'no_lang_code', 1, 'https://ror.org/04y784b90 Precision Research (United States)'),
(24161, 'https://ror.org/04ychh985', 'es', 1, 'https://ror.org/04ychh985 Universidad del Valle de Tlaxcala'),
(24162, 'https://ror.org/04yd0ad61', 'en', 1, 'https://ror.org/04yd0ad61 Latin University of Costa Rica Universidad Latina de Costa Rica'),
(24163, 'https://ror.org/04yd2kr04', 'no_lang_code', 1, 'https://ror.org/04yd2kr04 PCB Piezotronics (United States)'),
(24164, 'https://ror.org/04yeh8h63', 'en', 1, 'https://ror.org/04yeh8h63 General Secretariat for Research and Technology'),
(24165, 'https://ror.org/04yewpw08', 'no_lang_code', 1, 'https://ror.org/04yewpw08 Xim (United Kingdom)'),
(24166, 'https://ror.org/04yexcn51', 'no_lang_code', 1, 'https://ror.org/04yexcn51 Ghana Institute of Management and Public Administration'),
(24167, 'https://ror.org/04yfnda77', 'en', 1, 'https://ror.org/04yfnda77 UK Energy Research Centre'),
(24168, 'https://ror.org/04ygf3832', 'en', 1, 'https://ror.org/04ygf3832 Whitworth Hospital'),
(24169, 'https://ror.org/04yhr9792', 'ca', 1, 'https://ror.org/04yhr9792 Fundació Observatori Esteve Duran'),
(24170, 'https://ror.org/04yhwpc24', 'no_lang_code', 1, 'https://ror.org/04yhwpc24 Microbial ID (United States)'),
(24171, 'https://ror.org/04ykrg907', 'en', 1, 'https://ror.org/04ykrg907 Atlantic University'),
(24172, 'https://ror.org/04ymc1w90', 'en', 1, 'https://ror.org/04ymc1w90 Admiral Makarov National University of Shipbuilding ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŠ¾Ń€Š°Š±Š»ŠµŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ имени аГмирала ŠœŠ°ŠŗŠ°Ń€Š¾Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŠ¾Ń€Š°Š±Š»ŠµŠ±ŃƒŠ“ŃƒŠ²Š°Š½Š½Ń імені аГмірала ŠœŠ°ŠŗŠ°Ń€Š¾Š²Š°'),
(24173, 'https://ror.org/04ymgwq66', 'en', 1, 'https://ror.org/04ymgwq66 Changzhou University åøøå·žå¤§å­¦'),
(24174, 'https://ror.org/04ymsjg74', 'no_lang_code', 1, 'https://ror.org/04ymsjg74 MRK Systeme (Germany)'),
(24175, 'https://ror.org/04yrw8521', 'es', 1, 'https://ror.org/04yrw8521 Instituto Profesional Carlos Casanueva'),
(24176, 'https://ror.org/04yv47b75', 'en', 1, 'https://ror.org/04yv47b75 Northern Caribbean University'),
(24177, 'https://ror.org/04yvhah88', 'no_lang_code', 1, 'https://ror.org/04yvhah88 SymTrend (United States)'),
(24178, 'https://ror.org/04yytzs50', 'no_lang_code', 1, 'https://ror.org/04yytzs50 Avaya (Israel)'),
(24179, 'https://ror.org/04yzd5a95', 'en', 1, 'https://ror.org/04yzd5a95 Mental Health Consumer Survivor Network'),
(24180, 'https://ror.org/04yzhbz69', 'no_lang_code', 1, 'https://ror.org/04yzhbz69 Produtec (Germany)'),
(24181, 'https://ror.org/04z26gb41', 'no_lang_code', 1, 'https://ror.org/04z26gb41 Workbook Publishing'),
(24182, 'https://ror.org/04z5gvs07', 'en', 1, 'https://ror.org/04z5gvs07 Bureau des Services Ć  la Jeunesse Youth Services Bureau of Ottawa'),
(24183, 'https://ror.org/04z5n3121', 'en', 1, 'https://ror.org/04z5n3121 Kings Park Hospital'),
(24184, 'https://ror.org/04z6mea27', 'no_lang_code', 1, 'https://ror.org/04z6mea27 Mexel (France)'),
(24185, 'https://ror.org/04z7f4v54', 'pt', 1, 'https://ror.org/04z7f4v54 Centro UniversitƔrio Herminio Ometto de Araras'),
(24186, 'https://ror.org/04z7k0065', 'no_lang_code', 1, 'https://ror.org/04z7k0065 Phoenix Contact (Germany)'),
(24187, 'https://ror.org/04z80e107', 'es', 1, 'https://ror.org/04z80e107 Universidad Blas Pascal'),
(24188, 'https://ror.org/04z8j8871', 'en', 1, 'https://ror.org/04z8j8871 Mental Health Mental Retardation of Tarrant County'),
(24189, 'https://ror.org/04z95ym83', 'no_lang_code', 1, 'https://ror.org/04z95ym83 Takao Hospital ć™ć‚€ć®ć•ćØé«˜å°¾ē—…é™¢'),
(24190, 'https://ror.org/04zc4t851', 'en', 1, 'https://ror.org/04zc4t851 Ruby Lake Lagoon Nature Reserve Society'),
(24191, 'https://ror.org/04zccg612', 'es', 1, 'https://ror.org/04zccg612 Universidad Centroamericana de Ciencias Empresariales'),
(24192, 'https://ror.org/04zcv8n51', 'no_lang_code', 1, 'https://ror.org/04zcv8n51 Ohmatex (Denmark)'),
(24193, 'https://ror.org/04ze4qf38', 'en', 1, 'https://ror.org/04ze4qf38 Thame Community Hospital'),
(24194, 'https://ror.org/04zfq3f98', 'en', 1, 'https://ror.org/04zfq3f98 University of Kordofan Ų¬Ų§Ł…Ų¹Ų© ŁƒŲ±ŲÆŁŲ§Ł†'),
(24195, 'https://ror.org/04zg05e03', 'no_lang_code', 1, 'https://ror.org/04zg05e03 Autoneum (Switzerland)'),
(24196, 'https://ror.org/04zgwt671', 'es', 1, 'https://ror.org/04zgwt671 Universidad Vasco de Quiroga'),
(24197, 'https://ror.org/04zhcfg57', 'en', 1, 'https://ror.org/04zhcfg57 Avataq Cultural Institute'),
(24198, 'https://ror.org/04zj5v917', 'en', 1, 'https://ror.org/04zj5v917 Peabody'),
(24199, 'https://ror.org/04zqv4n59', 'no_lang_code', 1, 'https://ror.org/04zqv4n59 MetraLabs (Germany)'),
(24200, 'https://ror.org/04zvs4n17', 'no_lang_code', 1, 'https://ror.org/04zvs4n17 SRM Reti e MobilitĆ  (Italy)'),
(24201, 'https://ror.org/04zvx4d72', 'en', 1, 'https://ror.org/04zvx4d72 Royal Commission on the Ancient and Historical Monuments of Wales'),
(24202, 'https://ror.org/04zwbxk42', 'en', 1, 'https://ror.org/04zwbxk42 Switchboard of Miami'),
(24203, 'https://ror.org/04zzdbj59', 'en', 1, 'https://ror.org/04zzdbj59 Canadian Nautical Research Society SociƩtƩ Canadienne Pour la Recherche Nautique'),
(24204, 'https://ror.org/04zzpgm55', 'en', 1, 'https://ror.org/04zzpgm55 Abbey Ridge Observatory'),
(24205, 'https://ror.org/0500ysm83', 'no_lang_code', 1, 'https://ror.org/0500ysm83 RoadNarrows (United States)'),
(24206, 'https://ror.org/0501n4373', 'es', 1, 'https://ror.org/0501n4373 Grupo Universitario Modelo'),
(24207, 'https://ror.org/0502t5s28', 'en', 1, 'https://ror.org/0502t5s28 International Research Institute of Stavanger'),
(24208, 'https://ror.org/0502vxg14', 'en', 1, 'https://ror.org/0502vxg14 Catholic University College of Ghana'),
(24209, 'https://ror.org/0504dfg48', 'no_lang_code', 1, 'https://ror.org/0504dfg48 Tohoku Gakuin University ę±åŒ—å­¦é™¢å¤§å­¦'),
(24210, 'https://ror.org/0504g5x95', 'no_lang_code', 1, 'https://ror.org/0504g5x95 Vornia Biomaterials (Ireland)'),
(24211, 'https://ror.org/0506tgm76', 'en', 1, 'https://ror.org/0506tgm76 Shahrekord University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکي ؓهرکرد'),
(24212, 'https://ror.org/05072ws38', 'no_lang_code', 1, 'https://ror.org/05072ws38 Omtaş (Turkey)'),
(24213, 'https://ror.org/050850526', 'en', 1, 'https://ror.org/050850526 Michael Okpara University of Agriculture'),
(24214, 'https://ror.org/0509k2n94', 'en', 1, 'https://ror.org/0509k2n94 Society for Research on Biological Rhythms'),
(24215, 'https://ror.org/050bn6e97', 'no_lang_code', 1, 'https://ror.org/050bn6e97 SƤchsische BinnenhƤfen Oberelbe (Germany)'),
(24216, 'https://ror.org/050e4js82', 'no_lang_code', 1, 'https://ror.org/050e4js82 Neumedicines (United States)'),
(24217, 'https://ror.org/050h4qj76', 'es', 1, 'https://ror.org/050h4qj76 Universidad del Desarrollo Empresarial y Pedagógico'),
(24218, 'https://ror.org/050j0b044', 'es', 1, 'https://ror.org/050j0b044 Universidad Privada Cumbre'),
(24219, 'https://ror.org/050j7sq19', 'en', 1, 'https://ror.org/050j7sq19 Woodlands Hospital'),
(24220, 'https://ror.org/050m0fd20', 'no_lang_code', 1, 'https://ror.org/050m0fd20 Texilia (Italy)'),
(24221, 'https://ror.org/050m55h61', 'no_lang_code', 1, 'https://ror.org/050m55h61 Stansted Fluid Power (United Kingdom)'),
(24222, 'https://ror.org/050mgpz97', 'en', 1, 'https://ror.org/050mgpz97 Jungwon University'),
(24223, 'https://ror.org/050nfgr37', 'en', 1, 'https://ror.org/050nfgr37 Beijing Tsinghua Chang Gung Hospital åŒ—äŗ¬ęø…åŽé•æåŗšåŒ»é™¢'),
(24224, 'https://ror.org/050pakd64', 'no_lang_code', 1, 'https://ror.org/050pakd64 Diodes (United Kingdom)'),
(24225, 'https://ror.org/050qdy167', 'en', 1, 'https://ror.org/050qdy167 Knowledge Centre Wind turbine Materials and Constructions'),
(24226, 'https://ror.org/050swxx85', 'en', 1, 'https://ror.org/050swxx85 Plateau State University'),
(24227, 'https://ror.org/050znhp97', 'no_lang_code', 1, 'https://ror.org/050znhp97 Sirtres (Italy)'),
(24228, 'https://ror.org/050zs3956', 'en', 1, 'https://ror.org/050zs3956 Herat University دانؓگاه هرات'),
(24229, 'https://ror.org/0513sfw33', 'en', 1, 'https://ror.org/0513sfw33 BMI The Princess Margaret Hospital'),
(24230, 'https://ror.org/05152r856', 'no_lang_code', 1, 'https://ror.org/05152r856 Socotec (France)'),
(24231, 'https://ror.org/051544512', 'no_lang_code', 1, 'https://ror.org/051544512 Oncovir (United States)'),
(24232, 'https://ror.org/0519xb662', 'no_lang_code', 1, 'https://ror.org/0519xb662 Sensor Coating Systems (United Kingdom)'),
(24233, 'https://ror.org/051ar9e27', 'en', 1, 'https://ror.org/051ar9e27 St Albans City Hospital'),
(24234, 'https://ror.org/051bw0z52', 'en', 1, 'https://ror.org/051bw0z52 Emsworth Hospital'),
(24235, 'https://ror.org/051dv4419', 'en', 1, 'https://ror.org/051dv4419 Woodlands Hospital'),
(24236, 'https://ror.org/051dyvc17', 'en', 1, 'https://ror.org/051dyvc17 Technical College of Applied Sciences'),
(24237, 'https://ror.org/051e4zg07', 'no_lang_code', 1, 'https://ror.org/051e4zg07 Risk Engineering (Bulgaria) Риск инженеринг'),
(24238, 'https://ror.org/051ewjv50', 'no_lang_code', 1, 'https://ror.org/051ewjv50 Nohms Technologies (United States)'),
(24239, 'https://ror.org/051ff2v60', 'en', 1, 'https://ror.org/051ff2v60 House of Experiments'),
(24240, 'https://ror.org/051g6zc94', 'no_lang_code', 1, 'https://ror.org/051g6zc94 VM Discovery (United States)'),
(24241, 'https://ror.org/051gp5616', 'no_lang_code', 1, 'https://ror.org/051gp5616 Teledyne Princeton Instruments (United States)'),
(24242, 'https://ror.org/051jrjw38', 'en', 1, 'https://ror.org/051jrjw38 University of Lahore جامعہ Ł„Ų§ŪŁˆŲ±'),
(24243, 'https://ror.org/051kdrm61', 'es', 1, 'https://ror.org/051kdrm61 Universidad Santa MarĆ­a'),
(24244, 'https://ror.org/051mkpw87', 'en', 1, 'https://ror.org/051mkpw87 Nipomo Health Center'),
(24245, 'https://ror.org/051nhdr80', 'es', 1, 'https://ror.org/051nhdr80 Universidad del Centro de MƩxico'),
(24246, 'https://ror.org/051ny1b38', 'no_lang_code', 1, 'https://ror.org/051ny1b38 Orthogonal (United States)'),
(24247, 'https://ror.org/051p4rr20', 'en', 1, 'https://ror.org/051p4rr20 Ashford and St Peter''s Hospitals NHS Foundation Trust'),
(24248, 'https://ror.org/051rngw70', 'no_lang_code', 1, 'https://ror.org/051rngw70 Shahrekord University دانؓگاه ؓهرکرد'),
(24249, 'https://ror.org/051s9as34', 'en', 1, 'https://ror.org/051s9as34 Hundens Lane Day Hospital'),
(24250, 'https://ror.org/051t2wp85', 'no_lang_code', 1, 'https://ror.org/051t2wp85 Pulmotect (United States)'),
(24251, 'https://ror.org/051tn6h07', 'no_lang_code', 1, 'https://ror.org/051tn6h07 Heraeus (Germany) Heraeus Konzern'),
(24252, 'https://ror.org/051tv6j02', 'en', 1, 'https://ror.org/051tv6j02 Canadian Bioethics Society SociƩtƩ Canadienne de la BioƩthique MƩdicale'),
(24253, 'https://ror.org/051vg7x60', 'en', 1, 'https://ror.org/051vg7x60 Simpson University'),
(24254, 'https://ror.org/051vt5y84', 'no_lang_code', 1, 'https://ror.org/051vt5y84 Turkcell (Turkey)'),
(24255, 'https://ror.org/051xvqh87', 'es', 1, 'https://ror.org/051xvqh87 Católica del Norte Fundación Universitaria'),
(24256, 'https://ror.org/0522zyy65', 'no_lang_code', 1, 'https://ror.org/0522zyy65 Rusangu University'),
(24257, 'https://ror.org/0523dv891', 'no_lang_code', 1, 'https://ror.org/0523dv891 3R Agrocarbon (Hungary)'),
(24258, 'https://ror.org/0523w1957', 'no_lang_code', 1, 'https://ror.org/0523w1957 Micromatica (Italy)'),
(24259, 'https://ror.org/0524gsp03', 'no_lang_code', 1, 'https://ror.org/0524gsp03 Visup (Italy)'),
(24260, 'https://ror.org/0527rwj48', 'es', 1, 'https://ror.org/0527rwj48 Colegiatura Colombiana Institución Universitaria'),
(24261, 'https://ror.org/0529f2p24', 'no_lang_code', 1, 'https://ror.org/0529f2p24 Trillium Therapeutics (Canada)'),
(24262, 'https://ror.org/052am5598', 'no_lang_code', 1, 'https://ror.org/052am5598 Vida Diagnostics (United States)'),
(24263, 'https://ror.org/052b1ym09', 'en', 1, 'https://ror.org/052b1ym09 Oxford City Council'),
(24264, 'https://ror.org/052bnvt46', 'fr', 1, 'https://ror.org/052bnvt46 Institut National des Postes et TĆ©lĆ©communications المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŲØŲ±ŁŠŲÆ ŁˆŲ§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ'),
(24265, 'https://ror.org/052e8ag96', 'en', 1, 'https://ror.org/052e8ag96 Northwest Florida State College'),
(24266, 'https://ror.org/052egrr51', 'es', 1, 'https://ror.org/052egrr51 Universidad del Pedregal'),
(24267, 'https://ror.org/052f9ak76', 'no_lang_code', 1, 'https://ror.org/052f9ak76 Recylex (France)'),
(24268, 'https://ror.org/052gehj09', 'no_lang_code', 1, 'https://ror.org/052gehj09 TBC Innovations (France)'),
(24269, 'https://ror.org/052heck55', 'no_lang_code', 1, 'https://ror.org/052heck55 SelenBio (United States)'),
(24270, 'https://ror.org/052hkvj39', 'en', 1, 'https://ror.org/052hkvj39 Spot Observatory'),
(24271, 'https://ror.org/052hs4w81', 'no_lang_code', 1, 'https://ror.org/052hs4w81 Bonn Science Shop Wissenschaftsladen'),
(24272, 'https://ror.org/052j5y866', 'no_lang_code', 1, 'https://ror.org/052j5y866 On Our Own of Maryland (United States)'),
(24273, 'https://ror.org/052j6vb86', 'no_lang_code', 1, 'https://ror.org/052j6vb86 WPP (Belgium)'),
(24274, 'https://ror.org/052matx73', 'no_lang_code', 1, 'https://ror.org/052matx73 Span'),
(24275, 'https://ror.org/052mp5r63', 'fr', 1, 'https://ror.org/052mp5r63 Pigier BƩnin'),
(24276, 'https://ror.org/052q8e925', 'fr', 1, 'https://ror.org/052q8e925 Ɖcole Normale SupĆ©rieure de Bouzareah Alger المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ببوزريعة'),
(24277, 'https://ror.org/052vng007', 'en', 1, 'https://ror.org/052vng007 University of Mkar'),
(24278, 'https://ror.org/052yb5x42', 'en', 1, 'https://ror.org/052yb5x42 San Luis Obispo County Mental Health Services'),
(24279, 'https://ror.org/05323ve69', 'no_lang_code', 1, 'https://ror.org/05323ve69 RetroVirox (United States)'),
(24280, 'https://ror.org/0532a6411', 'no_lang_code', 1, 'https://ror.org/0532a6411 Twickenham Plating Group (United Kingdom)'),
(24281, 'https://ror.org/0533vxh11', 'no_lang_code', 1, 'https://ror.org/0533vxh11 RISC Software (Austria)'),
(24282, 'https://ror.org/0535vdn91', 'en', 1, 'https://ror.org/0535vdn91 Soma Central Hospital čŒ¶ē•‘ä¼š 相馬中央病院'),
(24283, 'https://ror.org/05367pr87', 'no_lang_code', 1, 'https://ror.org/05367pr87 Smart Polymers Research Corporation (United States)'),
(24284, 'https://ror.org/0536ye693', 'en', 1, 'https://ror.org/0536ye693 Mental Health and Recovery Services Board'),
(24285, 'https://ror.org/05397ce75', 'en', 1, 'https://ror.org/05397ce75 Busoga University'),
(24286, 'https://ror.org/053ctwk70', 'pt', 1, 'https://ror.org/053ctwk70 Centro UniversitÔrio Assunção'),
(24287, 'https://ror.org/053d5gs04', 'es', 1, 'https://ror.org/053d5gs04 Universidad Filadelfia de MƩxico'),
(24288, 'https://ror.org/053f59471', 'en', 1, 'https://ror.org/053f59471 Haltwhistle War Memorial Hospital'),
(24289, 'https://ror.org/053gqad93', 'en', 1, 'https://ror.org/053gqad93 Swaffham Community Hospital'),
(24290, 'https://ror.org/053mas820', 'en', 1, 'https://ror.org/053mas820 The Holly Private Hospital'),
(24291, 'https://ror.org/053nycv62', 'en', 1, 'https://ror.org/053nycv62 Korea University of Technology and Education ķ•œźµ­źø°ģˆ źµģœ”ėŒ€ķ•™źµ'),
(24292, 'https://ror.org/053pwmv60', 'en', 1, 'https://ror.org/053pwmv60 V.I. Vernadsky Institute of Geochemistry and Analytical Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠžŃ€Š“ена Ленина Šø ŠžŃ€Š“ŠµŠ½Š° ŠžŠŗŃ‚ŃŠ±Ń€ŃŒŃŠŗŠ¾Š¹ Š ŠµŠ²Š¾Š»ŃŽŃ†ŠøŠø Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геохимии Šø аналитической химии им. Š’.И. ВернаГского Российской акаГемии наук'),
(24293, 'https://ror.org/053qp6k29', 'no_lang_code', 1, 'https://ror.org/053qp6k29 MAN (Denmark)'),
(24294, 'https://ror.org/053qrc350', 'no_lang_code', 1, 'https://ror.org/053qrc350 Riegger Diamantwerkzeuge (Germany)'),
(24295, 'https://ror.org/053sksp51', 'en', 1, 'https://ror.org/053sksp51 Perth Observatory'),
(24296, 'https://ror.org/053tj6993', 'no_lang_code', 1, 'https://ror.org/053tj6993 Schauenburg (United Kingdom)'),
(24297, 'https://ror.org/053x1t631', 'no_lang_code', 1, 'https://ror.org/053x1t631 Neotherix (United Kingdom)'),
(24298, 'https://ror.org/053x7m526', 'no_lang_code', 1, 'https://ror.org/053x7m526 Renewable Energy Corporation (Norway)'),
(24299, 'https://ror.org/053xzd705', 'en', 1, 'https://ror.org/053xzd705 St Martins Hospital'),
(24300, 'https://ror.org/053zbv090', 'es', 1, 'https://ror.org/053zbv090 Facultad de TeologĆ­a Pontificia y Civil de Lima'),
(24301, 'https://ror.org/0540xtx50', 'es', 1, 'https://ror.org/0540xtx50 Corporación Internacional para el Desarrollo Educativo'),
(24302, 'https://ror.org/0543r8412', 'en', 1, 'https://ror.org/0543r8412 Public Technology Institute'),
(24303, 'https://ror.org/054446c79', 'no_lang_code', 1, 'https://ror.org/054446c79 SAS Institute (United Kingdom)'),
(24304, 'https://ror.org/0544vva66', 'es', 1, 'https://ror.org/0544vva66 Universidad Fray Luca Paccioli'),
(24305, 'https://ror.org/05478zz46', 'es', 1, 'https://ror.org/05478zz46 Autonomous University of Santo Domingo Universidad Autónoma de Santo Domingo'),
(24306, 'https://ror.org/0547s4559', 'en', 1, 'https://ror.org/0547s4559 Catholic University of Angola Universidade Católica de Angola'),
(24307, 'https://ror.org/0547wea53', 'en', 1, 'https://ror.org/0547wea53 St George''s Park'),
(24308, 'https://ror.org/0548ncv24', 'fr', 1, 'https://ror.org/0548ncv24 Federation of Canadian Demographers FƩdƩration Canadienne de DƩmographie'),
(24309, 'https://ror.org/0548x8e24', 'en', 1, 'https://ror.org/0548x8e24 Waypoint Centre de Soins de SantƩ Mentale Waypoint Centre for Mental Health Care'),
(24310, 'https://ror.org/054dn2d35', 'en', 1, 'https://ror.org/054dn2d35 Institute for Christian Studies'),
(24311, 'https://ror.org/054e03k79', 'no_lang_code', 1, 'https://ror.org/054e03k79 PML Applications (United Kingdom)'),
(24312, 'https://ror.org/054etzm63', 'en', 1, 'https://ror.org/054etzm63 Minghsin University of Science and Technology ę˜Žę–°ē§‘ęŠ€å¤§å­ø'),
(24313, 'https://ror.org/054gfsx77', 'no_lang_code', 1, 'https://ror.org/054gfsx77 Techno Innovation South Tyrol (Italy)'),
(24314, 'https://ror.org/054hbkf39', 'pt', 1, 'https://ror.org/054hbkf39 Centro UniversitƔrio Carioca'),
(24315, 'https://ror.org/054ja5q23', 'en', 1, 'https://ror.org/054ja5q23 National Alliance for Partnerships in Equity'),
(24316, 'https://ror.org/054ky9h60', 'en', 1, 'https://ror.org/054ky9h60 Bel Campus Technological University UniversitƩ Technologique Bel Campus'),
(24317, 'https://ror.org/054mek730', 'no_lang_code', 1, 'https://ror.org/054mek730 Zoo Digital (United Kingdom)'),
(24318, 'https://ror.org/054nkx469', 'en', 1, 'https://ror.org/054nkx469 Capital University of Physical Education and Sports é¦–éƒ½ä½“č‚²å­¦é™¢'),
(24319, 'https://ror.org/054phan86', 'en', 1, 'https://ror.org/054phan86 Independence University'),
(24320, 'https://ror.org/054s7hj41', 'en', 1, 'https://ror.org/054s7hj41 Jones International University'),
(24321, 'https://ror.org/054s94437', 'es', 1, 'https://ror.org/054s94437 Escuela de Administración y Mercadotecnia del Quindío'),
(24322, 'https://ror.org/054s97w65', 'en', 1, 'https://ror.org/054s97w65 National School of Public Health, Management and Professional Development Şcoala NaÅ£ională de Sănătate Publică, Management şi PerfecÅ£ionare Ć®n Domeniul Sanitar'),
(24323, 'https://ror.org/054tzxc20', 'es', 1, 'https://ror.org/054tzxc20 Universidad Católica Nordestana'),
(24324, 'https://ror.org/054v4yq51', 'es', 1, 'https://ror.org/054v4yq51 Universidad de Londres, University of London'),
(24325, 'https://ror.org/054v95b28', 'en', 1, 'https://ror.org/054v95b28 Tufts Health Care Institute'),
(24326, 'https://ror.org/054w60c75', 'no_lang_code', 1, 'https://ror.org/054w60c75 Touchstone Exploration (Canada)'),
(24327, 'https://ror.org/054wcm905', 'en', 1, 'https://ror.org/054wcm905 Stroud General Hospital'),
(24328, 'https://ror.org/054ysee23', 'en', 1, 'https://ror.org/054ysee23 Barton Community Health & Care Centre'),
(24329, 'https://ror.org/054zyxm40', 'en', 1, 'https://ror.org/054zyxm40 Urban planning Institute of the Republic of Slovenia Urbanistični inŔtitut Republike Slovenije'),
(24330, 'https://ror.org/055133v13', 'no_lang_code', 1, 'https://ror.org/055133v13 Segasist Technologies (Canada)'),
(24331, 'https://ror.org/0551j4575', 'no_lang_code', 1, 'https://ror.org/0551j4575 Parabon Computation (United States)'),
(24332, 'https://ror.org/055214t07', 'no_lang_code', 1, 'https://ror.org/055214t07 ProImmune (United Kingdom)'),
(24333, 'https://ror.org/0552sh187', 'no_lang_code', 1, 'https://ror.org/0552sh187 Cohort (United Kingdom)'),
(24334, 'https://ror.org/05535qr20', 'en', 1, 'https://ror.org/05535qr20 New Selby War Memorial Hospital'),
(24335, 'https://ror.org/0554vw273', 'en', 1, 'https://ror.org/0554vw273 Molesey Hospital'),
(24336, 'https://ror.org/05552se64', 'no_lang_code', 1, 'https://ror.org/05552se64 Proceed (United States)'),
(24337, 'https://ror.org/0555qme52', 'en', 1, 'https://ror.org/0555qme52 Third People''s Hospital of Yunnan Province äŗ‘å—ēœē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(24338, 'https://ror.org/055622428', 'en', 1, 'https://ror.org/055622428 Digital Heritage Netherlands'),
(24339, 'https://ror.org/055663266', 'sl', 1, 'https://ror.org/055663266 InŔtitut za Celulozo in Papir Ljubljana'),
(24340, 'https://ror.org/0556an218', 'no_lang_code', 1, 'https://ror.org/0556an218 Tescan (Czechia)'),
(24341, 'https://ror.org/0557nfa06', 'no_lang_code', 1, 'https://ror.org/0557nfa06 SociĆ©tĆ© Tunisienne de l''ElectricitĆ© et du Gaz (Tunisia) Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„ŲŖŁˆŁ†Ų³ŁŠŲ© Ł„Ł„ŁƒŁ‡Ų±ŲØŲ§Ų” و الغاز'),
(24342, 'https://ror.org/05589zr38', 'en', 1, 'https://ror.org/05589zr38 Cuttington University'),
(24343, 'https://ror.org/0558fr586', 'en', 1, 'https://ror.org/0558fr586 Mental Health Systems'),
(24344, 'https://ror.org/055a3gx21', 'no_lang_code', 1, 'https://ror.org/055a3gx21 Schoenfabriek Wed. J.P. van Bommel (Netherlands)'),
(24345, 'https://ror.org/055agmx53', 'en', 1, 'https://ror.org/055agmx53 Michigan Department of Education'),
(24346, 'https://ror.org/055c5vt19', 'no_lang_code', 1, 'https://ror.org/055c5vt19 EnServe Group (United Kingdom)'),
(24347, 'https://ror.org/055d5bf90', 'es', 1, 'https://ror.org/055d5bf90 Universidad Católica Luis Amigó'),
(24348, 'https://ror.org/055jskg35', 'en', 1, 'https://ror.org/055jskg35 Eastman Dental Hospital'),
(24349, 'https://ror.org/055k1rd14', 'en', 1, 'https://ror.org/055k1rd14 GreenCentre Canada'),
(24350, 'https://ror.org/055k5br96', 'en', 1, 'https://ror.org/055k5br96 Bridgewater Hospital'),
(24351, 'https://ror.org/055k73q58', 'es', 1, 'https://ror.org/055k73q58 Corporación Universitaria Autónoma del Cauca'),
(24352, 'https://ror.org/055khg266', 'fr', 1, 'https://ror.org/055khg266 Institut Universitaire de France'),
(24353, 'https://ror.org/055kzt142', 'es', 1, 'https://ror.org/055kzt142 Fundación Universitaria Internacional del Tropico Américano'),
(24354, 'https://ror.org/055mabf46', 'es', 1, 'https://ror.org/055mabf46 Universidad Colegio Mayor de Cundinamarca'),
(24355, 'https://ror.org/055mawj54', 'en', 1, 'https://ror.org/055mawj54 Mercy Medical Center Merced'),
(24356, 'https://ror.org/055pdxb86', 'en', 1, 'https://ror.org/055pdxb86 East Midlands Ambulance Service NHS Trust'),
(24357, 'https://ror.org/055qatb41', 'en', 1, 'https://ror.org/055qatb41 Royal London Hospital for Integrated Medicine'),
(24358, 'https://ror.org/055qs4r72', 'en', 1, 'https://ror.org/055qs4r72 Gosport War Memorial Hospital'),
(24359, 'https://ror.org/055sezq52', 'en', 1, 'https://ror.org/055sezq52 Northumbria Specialist Emergency Care Hospital'),
(24360, 'https://ror.org/055vanj37', 'no_lang_code', 1, 'https://ror.org/055vanj37 Shift (United Kingdom)'),
(24361, 'https://ror.org/055vv6n72', 'en', 1, 'https://ror.org/055vv6n72 Sevenoaks Hospital'),
(24362, 'https://ror.org/055wnve73', 'en', 1, 'https://ror.org/055wnve73 Bromyard Community Hospital'),
(24363, 'https://ror.org/055wq3834', 'en', 1, 'https://ror.org/055wq3834 Samra University of Oriental Medicine'),
(24364, 'https://ror.org/055x1j102', 'en', 1, 'https://ror.org/055x1j102 Norwegian Shipowners'' Association'),
(24365, 'https://ror.org/055yhzz06', 'en', 1, 'https://ror.org/055yhzz06 Transport Research Institute'),
(24366, 'https://ror.org/055zfv570', 'no_lang_code', 1, 'https://ror.org/055zfv570 Brookes Publishing (United States)'),
(24367, 'https://ror.org/0562efv25', 'de', 1, 'https://ror.org/0562efv25 Stadtwerke Bad Urach (Germany)'),
(24368, 'https://ror.org/0563nxn44', 'en', 1, 'https://ror.org/0563nxn44 Tennessee Wesleyan College'),
(24369, 'https://ror.org/05641j286', 'en', 1, 'https://ror.org/05641j286 Leek Moorlands Hospital'),
(24370, 'https://ror.org/0565qcy75', 'es', 1, 'https://ror.org/0565qcy75 Universidad Privada Abierta Latinoamericana'),
(24371, 'https://ror.org/0565tfh19', 'no_lang_code', 1, 'https://ror.org/0565tfh19 Sol-Gel Solutions (United States)'),
(24372, 'https://ror.org/0566ns265', 'es', 1, 'https://ror.org/0566ns265 PolitƩcnico de la Costa AtlƔntica'),
(24373, 'https://ror.org/0567d0m75', 'en', 1, 'https://ror.org/0567d0m75 Shropshire Council'),
(24374, 'https://ror.org/0568p5w10', 'pt', 1, 'https://ror.org/0568p5w10 Centro UniversitƔrio Central Paulista'),
(24375, 'https://ror.org/0568rcd29', 'no_lang_code', 1, 'https://ror.org/0568rcd29 Kharkov Technologies');
INSERT INTO `rors` VALUES
(24376, 'https://ror.org/0568y3j03', 'en', 1, 'https://ror.org/0568y3j03 Federal University of Technology Minna'),
(24377, 'https://ror.org/056az9397', 'es', 1, 'https://ror.org/056az9397 Universidad Santo Tomas de Oriente y Medio DĆ­a'),
(24378, 'https://ror.org/056bwcz71', 'en', 1, 'https://ror.org/056bwcz71 Scottish Funding Council'),
(24379, 'https://ror.org/056cpmr59', 'no_lang_code', 1, 'https://ror.org/056cpmr59 Aluminium Refining, Degassing and Filtering (Canada)'),
(24380, 'https://ror.org/056cswn75', 'no_lang_code', 1, 'https://ror.org/056cswn75 Tesi (Italy)'),
(24381, 'https://ror.org/056ct0w58', 'en', 1, 'https://ror.org/056ct0w58 George Moore Community Clinic'),
(24382, 'https://ror.org/056e22e24', 'en', 1, 'https://ror.org/056e22e24 Vaughn College of Aeronautics and Technology'),
(24383, 'https://ror.org/056e30g48', 'en', 1, 'https://ror.org/056e30g48 Salem University'),
(24384, 'https://ror.org/056g73y51', 'es', 1, 'https://ror.org/056g73y51 PolitƩcnico Colombiano Jaime Isaza Cadavid'),
(24385, 'https://ror.org/056j3a225', 'no_lang_code', 1, 'https://ror.org/056j3a225 Tele-Rilevamento Europa (Italy)'),
(24386, 'https://ror.org/056jc8s48', 'en', 1, 'https://ror.org/056jc8s48 Regent Business School'),
(24387, 'https://ror.org/056kd2x19', 'en', 1, 'https://ror.org/056kd2x19 Moors for the Future Partnership'),
(24388, 'https://ror.org/056nda222', 'en', 1, 'https://ror.org/056nda222 Kentucky Christian University'),
(24389, 'https://ror.org/056nq5k92', 'pt', 1, 'https://ror.org/056nq5k92 Universidade Presidente AntƓnio Carlos'),
(24390, 'https://ror.org/056qmem13', 'en', 1, 'https://ror.org/056qmem13 Xenobiotic Detection Systems'),
(24391, 'https://ror.org/056r32056', 'en', 1, 'https://ror.org/056r32056 Spire Manchester Hospital'),
(24392, 'https://ror.org/056s99406', 'no_lang_code', 1, 'https://ror.org/056s99406 Norcada (Canada)'),
(24393, 'https://ror.org/056sq4g25', 'en', 1, 'https://ror.org/056sq4g25 Bệnh viện Đa khoa Trung tĆ¢m Tiền Giang Tien Giang General Hospital'),
(24394, 'https://ror.org/056twcg53', 'en', 1, 'https://ror.org/056twcg53 Terros'),
(24395, 'https://ror.org/056w4rq63', 'no_lang_code', 1, 'https://ror.org/056w4rq63 Trentino Network (Italy)'),
(24396, 'https://ror.org/056z4ss26', 'no_lang_code', 1, 'https://ror.org/056z4ss26 People Designs (United States)'),
(24397, 'https://ror.org/056zqx422', 'en', 1, 'https://ror.org/056zqx422 Chantry House Day Hospital'),
(24398, 'https://ror.org/0570cz029', 'no_lang_code', 1, 'https://ror.org/0570cz029 Rodenburg Biopolymers (Netherlands)'),
(24399, 'https://ror.org/0570zmv60', 'es', 1, 'https://ror.org/0570zmv60 Universidad TƩcnica de Babahoyo'),
(24400, 'https://ror.org/0572yqv42', 'no_lang_code', 1, 'https://ror.org/0572yqv42 Sunplugged (Austria)'),
(24401, 'https://ror.org/0573cnq15', 'es', 1, 'https://ror.org/0573cnq15 Instituto Superior PolitƩcnico JosƩ Antonio Echeverrƭa, Polytechnic JosƩ Antonio Echeverrƭa'),
(24402, 'https://ror.org/0575c3z81', 'en', 1, 'https://ror.org/0575c3z81 Sullivan University'),
(24403, 'https://ror.org/0576nnr74', 'en', 1, 'https://ror.org/0576nnr74 Pacific Union College'),
(24404, 'https://ror.org/0576s0350', 'es', 1, 'https://ror.org/0576s0350 Universidad Autónoma de Colombia'),
(24405, 'https://ror.org/05773jf61', 'es', 1, 'https://ror.org/05773jf61 Universidad Olmeca'),
(24406, 'https://ror.org/0577hrn12', 'es', 1, 'https://ror.org/0577hrn12 Instituto Profesional Esucomex'),
(24407, 'https://ror.org/0577sef82', 'en', 1, 'https://ror.org/0577sef82 Severtsov Institute of Ecology and Evolution Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø ŃŠ²Š¾Š»ŃŽŃ†ŠøŠø им.А.Š. Деверцова Российской акаГемии наук'),
(24408, 'https://ror.org/057943037', 'no_lang_code', 1, 'https://ror.org/057943037 National Institute of Public Administration'),
(24409, 'https://ror.org/0579rm888', 'en', 1, 'https://ror.org/0579rm888 St Nicholas Hospital'),
(24410, 'https://ror.org/0579ze136', 'en', 1, 'https://ror.org/0579ze136 Havant War Memorial Hospital'),
(24411, 'https://ror.org/057ckep42', 'es', 1, 'https://ror.org/057ckep42 Universidad Jean-Jacques Rousseau'),
(24412, 'https://ror.org/057ewam52', 'no_lang_code', 1, 'https://ror.org/057ewam52 Oxford Intelligent Machines (United Kingdom)'),
(24413, 'https://ror.org/057g08s23', 'es', 1, 'https://ror.org/057g08s23 Universidad AnƔhuac MƩxico Sur, Universidad AnƔhuac del Sur'),
(24414, 'https://ror.org/057j7ch92', 'no_lang_code', 1, 'https://ror.org/057j7ch92 National Bank of Greece (Greece) Εθνική Τράπεζα της ΕλλάΓος'),
(24415, 'https://ror.org/057jy1g44', 'en', 1, 'https://ror.org/057jy1g44 Liskeard Community Hospital'),
(24416, 'https://ror.org/057ngt219', 'es', 1, 'https://ror.org/057ngt219 Universidad de Sotavento'),
(24417, 'https://ror.org/057nkmn52', 'es', 1, 'https://ror.org/057nkmn52 Universidad Escuela Libre de Derecho'),
(24418, 'https://ror.org/057pbd488', 'es', 1, 'https://ror.org/057pbd488 Universidad Mesoamericana de San AgustĆ­n'),
(24419, 'https://ror.org/057s2cn07', 'en', 1, 'https://ror.org/057s2cn07 Minneapolis Public Schools'),
(24420, 'https://ror.org/057stj941', 'en', 1, 'https://ror.org/057stj941 National Trust for Scotland'),
(24421, 'https://ror.org/057tq3593', 'en', 1, 'https://ror.org/057tq3593 Technologiestichting STW Technology Foundation STW'),
(24422, 'https://ror.org/057trv649', 'en', 1, 'https://ror.org/057trv649 Edgware Community Hospital'),
(24423, 'https://ror.org/0580hfn92', 'no_lang_code', 1, 'https://ror.org/0580hfn92 Solidica (United States)'),
(24424, 'https://ror.org/0581ret63', 'no_lang_code', 1, 'https://ror.org/0581ret63 Societate Comerciala Pentru Cercetare, Proiectare si Productie de Echipamente si Instalatii de Automatizare (Romania)'),
(24425, 'https://ror.org/0582rgx13', 'no_lang_code', 1, 'https://ror.org/0582rgx13 Veolia (United Kingdom)'),
(24426, 'https://ror.org/0583cna36', 'no_lang_code', 1, 'https://ror.org/0583cna36 Rochal Industries (United States)'),
(24427, 'https://ror.org/0586wsk08', 'no_lang_code', 1, 'https://ror.org/0586wsk08 OHB (Germany)'),
(24428, 'https://ror.org/05874db82', 'en', 1, 'https://ror.org/05874db82 Excellence Cluster Universe Exzellenzcluster Universe'),
(24429, 'https://ror.org/05884e364', 'no_lang_code', 1, 'https://ror.org/05884e364 nsm Norbert SchlƤfli (Switzerland)'),
(24430, 'https://ror.org/0589vxh51', 'no_lang_code', 1, 'https://ror.org/0589vxh51 Datacorp (United States)'),
(24431, 'https://ror.org/058aanc53', 'es', 1, 'https://ror.org/058aanc53 Escuela Moderna de MĆŗsica y Danza, Instituto Profesional Escuela Moderna De Musica'),
(24432, 'https://ror.org/058cq2c73', 'es', 1, 'https://ror.org/058cq2c73 Centro Universitario de Sonora'),
(24433, 'https://ror.org/058gc3944', 'en', 1, 'https://ror.org/058gc3944 The Chiltern Hospital'),
(24434, 'https://ror.org/058gcv483', 'en', 1, 'https://ror.org/058gcv483 Antioch University Seattle'),
(24435, 'https://ror.org/058m4x348', 'no_lang_code', 1, 'https://ror.org/058m4x348 Setas (Turkey)'),
(24436, 'https://ror.org/058mq4s80', 'en', 1, 'https://ror.org/058mq4s80 Stamford and Rutland Hospital'),
(24437, 'https://ror.org/058n7kw16', 'en', 1, 'https://ror.org/058n7kw16 Netcare Jakaranda Hospital'),
(24438, 'https://ror.org/058qd2v11', 'en', 1, 'https://ror.org/058qd2v11 Auchi Polytechnic'),
(24439, 'https://ror.org/058t5ay13', 'no_lang_code', 1, 'https://ror.org/058t5ay13 RGB Medical Devices (Spain)'),
(24440, 'https://ror.org/058t6q245', 'no_lang_code', 1, 'https://ror.org/058t6q245 Chemsupply (Switzerland)'),
(24441, 'https://ror.org/058tjhm78', 'en', 1, 'https://ror.org/058tjhm78 Grays Court Community Hospital'),
(24442, 'https://ror.org/058vzj997', 'en', 1, 'https://ror.org/058vzj997 MidAmerica Nazarene University'),
(24443, 'https://ror.org/058xhgv89', 'no_lang_code', 1, 'https://ror.org/058xhgv89 Railinfratrust (Netherlands)'),
(24444, 'https://ror.org/058y6mx80', 'en', 1, 'https://ror.org/058y6mx80 Shipley Hospital'),
(24445, 'https://ror.org/058znsm64', 'en', 1, 'https://ror.org/058znsm64 Bluefields Indian and Caribbean University'),
(24446, 'https://ror.org/0591ezr39', 'no_lang_code', 1, 'https://ror.org/0591ezr39 Desso (Belgium)'),
(24447, 'https://ror.org/0593ysv62', 'no_lang_code', 1, 'https://ror.org/0593ysv62 Rainbow Photonics (Switzerland)'),
(24448, 'https://ror.org/0594b8154', 'no_lang_code', 1, 'https://ror.org/0594b8154 SiteOne Therapeutics (United States)'),
(24449, 'https://ror.org/05956p547', 'pt', 1, 'https://ror.org/05956p547 Centro UniversitƔrio Moura Lacerda'),
(24450, 'https://ror.org/0595jb241', 'no_lang_code', 1, 'https://ror.org/0595jb241 Mikron (Germany)'),
(24451, 'https://ror.org/0597mp424', 'no_lang_code', 1, 'https://ror.org/0597mp424 Myasishchev Design Bureau (Russia)'),
(24452, 'https://ror.org/0599s7z02', 'no_lang_code', 1, 'https://ror.org/0599s7z02 QuantLogic (United States)'),
(24453, 'https://ror.org/059aewc73', 'en', 1, 'https://ror.org/059aewc73 New England College'),
(24454, 'https://ror.org/059b0jm33', 'no_lang_code', 1, 'https://ror.org/059b0jm33 Management Science Associates (United States)'),
(24455, 'https://ror.org/059c7vm29', 'en', 1, 'https://ror.org/059c7vm29 St Lukes Hospital'),
(24456, 'https://ror.org/059cxs985', 'no_lang_code', 1, 'https://ror.org/059cxs985 MariLim (Germany)'),
(24457, 'https://ror.org/059dwew39', 'fr', 1, 'https://ror.org/059dwew39 Ɖcole SupĆ©rieure des Sciences de l''IngĆ©nierie Commerciale'),
(24458, 'https://ror.org/059g9tt96', 'no_lang_code', 1, 'https://ror.org/059g9tt96 Finisar (Germany)'),
(24459, 'https://ror.org/059gprs28', 'no_lang_code', 1, 'https://ror.org/059gprs28 Rocky Research (United States)'),
(24460, 'https://ror.org/059hjnz30', 'es', 1, 'https://ror.org/059hjnz30 Fundación de Estudios Superiores Comfanorte, Universidad FESC'),
(24461, 'https://ror.org/059jz3381', 'en', 1, 'https://ror.org/059jz3381 Cygnet Hospital Wyke'),
(24462, 'https://ror.org/059m1x137', 'en', 1, 'https://ror.org/059m1x137 Universidad de Celaya University of Celaya'),
(24463, 'https://ror.org/059n14w82', 'no_lang_code', 1, 'https://ror.org/059n14w82 TomTom (Belgium)'),
(24464, 'https://ror.org/059p0a776', 'en', 1, 'https://ror.org/059p0a776 American Sentinel University'),
(24465, 'https://ror.org/059q1xd66', 'no_lang_code', 1, 'https://ror.org/059q1xd66 RE Hydrogen (United Kingdom)'),
(24466, 'https://ror.org/059r07p39', 'no_lang_code', 1, 'https://ror.org/059r07p39 Silver Lake Research (United States)'),
(24467, 'https://ror.org/059r50h13', 'en', 1, 'https://ror.org/059r50h13 Gyeongnam National University of Science and Technology ź²½ė‚Øź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(24468, 'https://ror.org/059sj0146', 'en', 1, 'https://ror.org/059sj0146 TrĘ°į»ng ĐẔi hį»c CĆ“ng nghiệp Việt TrƬ Viet Tri University of Industry'),
(24469, 'https://ror.org/059srqj16', 'en', 1, 'https://ror.org/059srqj16 Responsive Centers For Psychology & Learning'),
(24470, 'https://ror.org/059vkfm47', 'it', 1, 'https://ror.org/059vkfm47 Agenzia Regionale di SanitĆ  della Toscana'),
(24471, 'https://ror.org/059ymwe78', 'no_lang_code', 1, 'https://ror.org/059ymwe78 Tangerine (United Kingdom)'),
(24472, 'https://ror.org/059zvbg42', 'en', 1, 'https://ror.org/059zvbg42 Balkh University Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† بلخ'),
(24473, 'https://ror.org/05a2d1861', 'no_lang_code', 1, 'https://ror.org/05a2d1861 Transfaction (United Kingdom)'),
(24474, 'https://ror.org/05a5dkj17', 'en', 1, 'https://ror.org/05a5dkj17 Exeter Hospital'),
(24475, 'https://ror.org/05a8pa318', 'no_lang_code', 1, 'https://ror.org/05a8pa318 Vertex Pharmaceuticals (Canada)'),
(24476, 'https://ror.org/05a9sj961', 'en', 1, 'https://ror.org/05a9sj961 Methodist University College Ghana'),
(24477, 'https://ror.org/05a9wb080', 'es', 1, 'https://ror.org/05a9wb080 Universidad Adventista de Nicaragua'),
(24478, 'https://ror.org/05a9xrg77', 'en', 1, 'https://ror.org/05a9xrg77 Mayfair Day Hospital'),
(24479, 'https://ror.org/05aargr36', 'en', 1, 'https://ror.org/05aargr36 Association Canadienne d’études CinĆ©matographiques Film Studies Association of Canada'),
(24480, 'https://ror.org/05abphe57', 'no_lang_code', 1, 'https://ror.org/05abphe57 Runcom Technologies (Israel)'),
(24481, 'https://ror.org/05acryg85', 'en', 1, 'https://ror.org/05acryg85 Claremont Private Hospital'),
(24482, 'https://ror.org/05afmgm93', 'no_lang_code', 1, 'https://ror.org/05afmgm93 Sachtleben Bergbau (Germany)'),
(24483, 'https://ror.org/05afs3z13', 'no_lang_code', 1, 'https://ror.org/05afs3z13 Novartis (Canada)'),
(24484, 'https://ror.org/05akcf597', 'en', 1, 'https://ror.org/05akcf597 Geological Observatory of Coldigioco Osservatorio Geologico di Coldigioco'),
(24485, 'https://ror.org/05amrd548', 'en', 1, 'https://ror.org/05amrd548 University of Ouargla Ų¬Ų§Ł…Ų¹Ų© Ł‚Ų§ŲµŲÆŁŠ Ł…Ų±ŲØŲ§Ų­'),
(24486, 'https://ror.org/05anzrg13', 'en', 1, 'https://ror.org/05anzrg13 East of England Ambulance Service NHS Trust'),
(24487, 'https://ror.org/05ap1zt54', 'en', 1, 'https://ror.org/05ap1zt54 Miguel de Cervantes University Universidad Miguel de Cervantes'),
(24488, 'https://ror.org/05aq6yn88', 'en', 1, 'https://ror.org/05aq6yn88 Office of Extramural Research'),
(24489, 'https://ror.org/05arjae42', 'en', 1, 'https://ror.org/05arjae42 Guilin University of Electronic Technology ę”‚ęž—ē”µå­ē§‘ęŠ€å¤§å­¦'),
(24490, 'https://ror.org/05as1qb59', 'en', 1, 'https://ror.org/05as1qb59 Texas Higher Education Coordinating Board'),
(24491, 'https://ror.org/05atnc387', 'no_lang_code', 1, 'https://ror.org/05atnc387 O.N. Diagnostics (United States)'),
(24492, 'https://ror.org/05av3kx76', 'no_lang_code', 1, 'https://ror.org/05av3kx76 Ramon.Space (Israel)'),
(24493, 'https://ror.org/05avmn224', 'es', 1, 'https://ror.org/05avmn224 Fundación Universitaria San Alfonso'),
(24494, 'https://ror.org/05awwc719', 'fr', 1, 'https://ror.org/05awwc719 Institut SupƩrieur de l''Information et de la Communication'),
(24495, 'https://ror.org/05ax6jr03', 'no_lang_code', 1, 'https://ror.org/05ax6jr03 Polymer Chemistry Innovations (United States)'),
(24496, 'https://ror.org/05ay23762', 'en', 1, 'https://ror.org/05ay23762 Liaoning University of Technology 辽宁巄业大学'),
(24497, 'https://ror.org/05ay71920', 'no_lang_code', 1, 'https://ror.org/05ay71920 Solpros (Finland)'),
(24498, 'https://ror.org/05aydvg23', 'de', 1, 'https://ror.org/05aydvg23 Verband Deutscher Maschinen- und Anlagenbau'),
(24499, 'https://ror.org/05azmgh93', 'en', 1, 'https://ror.org/05azmgh93 Merseytravel'),
(24500, 'https://ror.org/05b0f8e85', 'en', 1, 'https://ror.org/05b0f8e85 Orenburg State University ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(24501, 'https://ror.org/05b51m931', 'es', 1, 'https://ror.org/05b51m931 Universidad Nacional de Agricultura'),
(24502, 'https://ror.org/05b6t0504', 'en', 1, 'https://ror.org/05b6t0504 Queen Victoria Memorial Hospital'),
(24503, 'https://ror.org/05b724e43', 'en', 1, 'https://ror.org/05b724e43 Society of Behavioral Medicine'),
(24504, 'https://ror.org/05ba61w94', 'no_lang_code', 1, 'https://ror.org/05ba61w94 Photonics Bretagne (France)'),
(24505, 'https://ror.org/05baf4s06', 'en', 1, 'https://ror.org/05baf4s06 Ussuriysk Astrophysical Observatory Š£ŃŃŃƒŃ€ŠøŠ¹ŃŠŗŠ°Ń Š°ŃŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ Š”Š’Šž Š ŠŠ'),
(24506, 'https://ror.org/05be09h62', 'en', 1, 'https://ror.org/05be09h62 Fordingbridge Hospital'),
(24507, 'https://ror.org/05bep5d95', 'no_lang_code', 1, 'https://ror.org/05bep5d95 Schumacher Orgelbau (Belgium)'),
(24508, 'https://ror.org/05bf5jb12', 'es', 1, 'https://ror.org/05bf5jb12 Universidad Alzate de Ozumba'),
(24509, 'https://ror.org/05bh64v90', 'en', 1, 'https://ror.org/05bh64v90 South Thames College'),
(24510, 'https://ror.org/05bh7ap46', 'en', 1, 'https://ror.org/05bh7ap46 Management College of Southern Africa'),
(24511, 'https://ror.org/05bhh5n73', 'no_lang_code', 1, 'https://ror.org/05bhh5n73 Utility Systems Science and Software (United States)'),
(24512, 'https://ror.org/05bk70695', 'fr', 1, 'https://ror.org/05bk70695 Association Canadienne d''Education de Langue FranƧaise'),
(24513, 'https://ror.org/05bkfzh58', 'en', 1, 'https://ror.org/05bkfzh58 Surfactant Associates'),
(24514, 'https://ror.org/05bmme985', 'en', 1, 'https://ror.org/05bmme985 Monkwearmouth Hospital'),
(24515, 'https://ror.org/05bnh4739', 'pt', 1, 'https://ror.org/05bnh4739 Universidade Regional Integrada do Alto Uruguai e das MissƵes'),
(24516, 'https://ror.org/05bpqke85', 'en', 1, 'https://ror.org/05bpqke85 Coddenham Astronomical Observatory'),
(24517, 'https://ror.org/05bvt3s14', 'no_lang_code', 1, 'https://ror.org/05bvt3s14 S2 Grupo (Spain)'),
(24518, 'https://ror.org/05by3c979', 'no_lang_code', 1, 'https://ror.org/05by3c979 Verax Biomedical (United States)'),
(24519, 'https://ror.org/05bzhd221', 'no_lang_code', 1, 'https://ror.org/05bzhd221 Ridge and Partners (United Kingdom)'),
(24520, 'https://ror.org/05c016d08', 'no_lang_code', 1, 'https://ror.org/05c016d08 ECW Press (Canada)'),
(24521, 'https://ror.org/05c0hj959', 'en', 1, 'https://ror.org/05c0hj959 Hospital Tengku Ampuan Rahimah Tengku Ampuan Rahimah Hospital'),
(24522, 'https://ror.org/05c0ns027', 'en', 1, 'https://ror.org/05c0ns027 Perm National Research Polytechnic University Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(24523, 'https://ror.org/05c2yb215', 'fr', 1, 'https://ror.org/05c2yb215 Ɖcole des Hautes Ɖtudes Ɖconomiques et Commerciales'),
(24524, 'https://ror.org/05c815e48', 'fr', 1, 'https://ror.org/05c815e48 Centre Hospitalier Intercommunal de FrƩjus Saint-Raphaƫl'),
(24525, 'https://ror.org/05c9jga87', 'en', 1, 'https://ror.org/05c9jga87 Assumption University'),
(24526, 'https://ror.org/05c9nwr56', 'en', 1, 'https://ror.org/05c9nwr56 Riverland Community College'),
(24527, 'https://ror.org/05cckd696', 'no_lang_code', 1, 'https://ror.org/05cckd696 PCAS (France)'),
(24528, 'https://ror.org/05ccyg372', 'en', 1, 'https://ror.org/05ccyg372 National Institute for Nuclear, Chemical and Biological Protection'),
(24529, 'https://ror.org/05cdryb21', 'fr', 1, 'https://ror.org/05cdryb21 UniversitƩ Montplaisir Tunis'),
(24530, 'https://ror.org/05cedyx57', 'fr', 1, 'https://ror.org/05cedyx57 Institut SupƩrieur de Commerce et d''Administration des Entreprises'),
(24531, 'https://ror.org/05chrxg27', 'en', 1, 'https://ror.org/05chrxg27 Ibrahim Badamasi Babangida University'),
(24532, 'https://ror.org/05cka2t18', 'en', 1, 'https://ror.org/05cka2t18 Agricultural Academy Делскостопанска Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(24533, 'https://ror.org/05cq1w341', 'fr', 1, 'https://ror.org/05cq1w341 SociƩtƩ Canadienne de ThƩologie'),
(24534, 'https://ror.org/05cqf3m25', 'en', 1, 'https://ror.org/05cqf3m25 Adventist University Cosendai UniversitƩ Adventiste Cosendai'),
(24535, 'https://ror.org/05cqge031', 'es', 1, 'https://ror.org/05cqge031 Universidad Católica del TÔchira'),
(24536, 'https://ror.org/05cwdc397', 'es', 1, 'https://ror.org/05cwdc397 Hospital Posadas'),
(24537, 'https://ror.org/05cydna96', 'no_lang_code', 1, 'https://ror.org/05cydna96 TPF (Poland)'),
(24538, 'https://ror.org/05czwfr97', 'no_lang_code', 1, 'https://ror.org/05czwfr97 Innovalia (Spain)'),
(24539, 'https://ror.org/05d10zv92', 'en', 1, 'https://ror.org/05d10zv92 Monkton Hall Hospital'),
(24540, 'https://ror.org/05d4aam89', 'en', 1, 'https://ror.org/05d4aam89 Woking Community Hospital'),
(24541, 'https://ror.org/05d4tza70', 'no_lang_code', 1, 'https://ror.org/05d4tza70 Roland Hill (United Kingdom)'),
(24542, 'https://ror.org/05d6fm330', 'es', 1, 'https://ror.org/05d6fm330 Universidad Privada del Estado de MƩxico'),
(24543, 'https://ror.org/05d7z0p34', 'es', 1, 'https://ror.org/05d7z0p34 Instituto Universitario en Sistemas Administrativos de Monterrey'),
(24544, 'https://ror.org/05d8vt634', 'en', 1, 'https://ror.org/05d8vt634 Harrison Middleton University'),
(24545, 'https://ror.org/05d944x37', 'en', 1, 'https://ror.org/05d944x37 Jimo District Qingdao Hospital of Traditional Chinese Medicine é’å²›åø‚å³å¢ØåŒŗäø­åŒ»åŒ»é™¢'),
(24546, 'https://ror.org/05d9zj517', 'en', 1, 'https://ror.org/05d9zj517 Ormskirk District General Hospital'),
(24547, 'https://ror.org/05db2n282', 'no_lang_code', 1, 'https://ror.org/05db2n282 Willmott Dixon (United Kingdom)'),
(24548, 'https://ror.org/05db8zr24', 'en', 1, 'https://ror.org/05db8zr24 NED University of Engineering and Technology Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś± Ū½ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ جي جامعہ Ų§ŁŠŁ† اي ŚŠŁŠā€Ž جامعہ Ų§ŪŒŁ† ای ڈی ŲØŲ±Ų§Ų¦Ū’ انجنئرنگ اور Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(24549, 'https://ror.org/05ddevr29', 'es', 1, 'https://ror.org/05ddevr29 Universidad TƩcnica Privada Cosmos'),
(24550, 'https://ror.org/05ddtd277', 'no_lang_code', 1, 'https://ror.org/05ddtd277 Tinsley Bridge Group'),
(24551, 'https://ror.org/05debfq75', 'en', 1, 'https://ror.org/05debfq75 Misr University for Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ± Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(24552, 'https://ror.org/05dfkf260', 'en', 1, 'https://ror.org/05dfkf260 Cirencester Hospital'),
(24553, 'https://ror.org/05dgxmx67', 'en', 1, 'https://ror.org/05dgxmx67 Romanian Authority For Nuclear Activities'),
(24554, 'https://ror.org/05dj7d812', 'en', 1, 'https://ror.org/05dj7d812 Midorigaoka Hospital ćæć©ć‚Šćƒ¶äø˜ē—…é™¢'),
(24555, 'https://ror.org/05dj7ef89', 'en', 1, 'https://ror.org/05dj7ef89 Canadian Network for Innovation in Education RƩseau Canadien Pour l''innovation en Education'),
(24556, 'https://ror.org/05dktpm65', 'en', 1, 'https://ror.org/05dktpm65 White Cross Court Rehabilitation Hospital'),
(24557, 'https://ror.org/05dm1m153', 'es', 1, 'https://ror.org/05dm1m153 International University of America Universidad Internacional de AmƩrica'),
(24558, 'https://ror.org/05dnz5861', 'no_lang_code', 1, 'https://ror.org/05dnz5861 Metalografica (Spain)'),
(24559, 'https://ror.org/05drjbx41', 'en', 1, 'https://ror.org/05drjbx41 MiningWatch Canada'),
(24560, 'https://ror.org/05dsrdr13', 'en', 1, 'https://ror.org/05dsrdr13 Canadian Forum on Civil Justice'),
(24561, 'https://ror.org/05dvsnx49', 'en', 1, 'https://ror.org/05dvsnx49 Al-Neelain University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„ŁŠŁ†'),
(24562, 'https://ror.org/05dx64395', 'en', 1, 'https://ror.org/05dx64395 National University of the Arts Universidad Nacional de las Artes'),
(24563, 'https://ror.org/05dyv4r79', 'en', 1, 'https://ror.org/05dyv4r79 Women In Need'),
(24564, 'https://ror.org/05dyy5830', 'es', 1, 'https://ror.org/05dyy5830 Corporación Universitaria Unitec'),
(24565, 'https://ror.org/05e1h7h42', 'en', 1, 'https://ror.org/05e1h7h42 Pan-Provincial Vaccine Enterprise'),
(24566, 'https://ror.org/05e1n7415', 'en', 1, 'https://ror.org/05e1n7415 Highbury Hospital'),
(24567, 'https://ror.org/05e29fw09', 'en', 1, 'https://ror.org/05e29fw09 Wright House Wellness Center'),
(24568, 'https://ror.org/05e2hx460', 'fr', 1, 'https://ror.org/05e2hx460 Ɖcole Marocaine de Banque et de Commerce International'),
(24569, 'https://ror.org/05e2jbm26', 'es', 1, 'https://ror.org/05e2jbm26 Universidad Privada Antonio Guillermo Urrelo'),
(24570, 'https://ror.org/05e3env38', 'no_lang_code', 1, 'https://ror.org/05e3env38 Sintex (Czechia)'),
(24571, 'https://ror.org/05e4e0g07', 'en', 1, 'https://ror.org/05e4e0g07 Westbourne Green Community Hospital'),
(24572, 'https://ror.org/05e812q79', 'es', 1, 'https://ror.org/05e812q79 Universidad Católica Tecnológica de Barahona'),
(24573, 'https://ror.org/05e8ym512', 'en', 1, 'https://ror.org/05e8ym512 Stockholm International Peace Research Institute'),
(24574, 'https://ror.org/05e9egp81', 'no_lang_code', 1, 'https://ror.org/05e9egp81 Swamp Optics (United States)'),
(24575, 'https://ror.org/05ede8r89', 'en', 1, 'https://ror.org/05ede8r89 Central American Adventist University Universidad Adventista de Centro America'),
(24576, 'https://ror.org/05eg6hv92', 'no_lang_code', 1, 'https://ror.org/05eg6hv92 Thunderhead Engineering (United States)'),
(24577, 'https://ror.org/05ehb7y93', 'no_lang_code', 1, 'https://ror.org/05ehb7y93 PageFlip (United States)'),
(24578, 'https://ror.org/05ejj5g23', 'no_lang_code', 1, 'https://ror.org/05ejj5g23 Pipistrel (Slovenia)'),
(24579, 'https://ror.org/05epxhz73', 'en', 1, 'https://ror.org/05epxhz73 South Molton Medical Centre'),
(24580, 'https://ror.org/05eq5hq62', 'en', 1, 'https://ror.org/05eq5hq62 Tabbin Institute for Metallurgical Studies معهد Ų§Ł„ŲŖŲØŁŠŁ† للدراسات Ų§Ł„Ł…Ų¹ŲÆŁ†ŁŠŲ©'),
(24581, 'https://ror.org/05eqgj969', 'en', 1, 'https://ror.org/05eqgj969 Austrian Society for Environment and Technology Ɩsterreichische Gesellschaft für Umwelt und Technik'),
(24582, 'https://ror.org/05esb3126', 'en', 1, 'https://ror.org/05esb3126 Mountain Comprehensive Care Centre'),
(24583, 'https://ror.org/05f1mgb50', 'no_lang_code', 1, 'https://ror.org/05f1mgb50 Phytolutions (Germany)'),
(24584, 'https://ror.org/05f1yv317', 'no_lang_code', 1, 'https://ror.org/05f1yv317 Zansors (United States)'),
(24585, 'https://ror.org/05f2jr081', 'pt', 1, 'https://ror.org/05f2jr081 Centro UniversitƔrio de Rio Preto'),
(24586, 'https://ror.org/05f3efm35', 'en', 1, 'https://ror.org/05f3efm35 Tulsa Community College'),
(24587, 'https://ror.org/05f46p870', 'pt', 1, 'https://ror.org/05f46p870 Centro UniversitÔrio Católico do Sudoeste do ParanÔ'),
(24588, 'https://ror.org/05f4fmq20', 'en', 1, 'https://ror.org/05f4fmq20 Brentwood Community Hospital'),
(24589, 'https://ror.org/05f560223', 'no_lang_code', 1, 'https://ror.org/05f560223 Skymark (United Kingdom)'),
(24590, 'https://ror.org/05f57qd45', 'no_lang_code', 1, 'https://ror.org/05f57qd45 Simbiente (Portugal)'),
(24591, 'https://ror.org/05f5j6225', 'en', 1, 'https://ror.org/05f5j6225 University Town of Shenzhen ę·±åœ³å¤§å­¦åŸŽ'),
(24592, 'https://ror.org/05f6vdg41', 'no_lang_code', 1, 'https://ror.org/05f6vdg41 Noray Bioinformatics (Spain)'),
(24593, 'https://ror.org/05f7acz87', 'no_lang_code', 1, 'https://ror.org/05f7acz87 W/E Consultants'),
(24594, 'https://ror.org/05f8ahf97', 'en', 1, 'https://ror.org/05f8ahf97 Llandrindod Wells Hospital'),
(24595, 'https://ror.org/05f93c840', 'en', 1, 'https://ror.org/05f93c840 International Academy for Engineering and Media Science Ų§Ł„Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© للهندسة ŁˆŲ¹Ł„ŁˆŁ… الاعلام'),
(24596, 'https://ror.org/05f9e0404', 'en', 1, 'https://ror.org/05f9e0404 Paulton Hospital'),
(24597, 'https://ror.org/05fa42p74', 'en', 1, 'https://ror.org/05fa42p74 Southend University Hospital NHS Foundation Trust'),
(24598, 'https://ror.org/05fafcp48', 'no_lang_code', 1, 'https://ror.org/05fafcp48 Golder Associates (United Kingdom)'),
(24599, 'https://ror.org/05fdmhs75', 'fr', 1, 'https://ror.org/05fdmhs75 Institut National des Sciences de l''ArchĆ©ologie et du Patrimoine المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ų¹Ł„ŁˆŁ… الآثار ŁˆŲ§Ł„ŲŖŲ±Ų§Ų«'),
(24600, 'https://ror.org/05fejsj94', 'en', 1, 'https://ror.org/05fejsj94 Volunteer Behavioral Health Care System'),
(24601, 'https://ror.org/05ffyfw07', 'en', 1, 'https://ror.org/05ffyfw07 Association canadienne de science politique Canadian Political Science Association'),
(24602, 'https://ror.org/05fgy3p67', 'en', 1, 'https://ror.org/05fgy3p67 West London Mental Health NHS Trust'),
(24603, 'https://ror.org/05fheeb41', 'en', 1, 'https://ror.org/05fheeb41 Universidad de Sancti Spƭritus JosƩ Martƭ PƩrez University of Sancti Spƭritus JosƩ Martƭ PƩrez'),
(24604, 'https://ror.org/05fhgtk93', 'en', 1, 'https://ror.org/05fhgtk93 La commission des Ʃtudiants Students Commission'),
(24605, 'https://ror.org/05fhkjk84', 'no_lang_code', 1, 'https://ror.org/05fhkjk84 Onteca (United Kingdom)'),
(24606, 'https://ror.org/05fnph064', 'es', 1, 'https://ror.org/05fnph064 Universidad Realƭstica de MƩxico'),
(24607, 'https://ror.org/05fnsjm04', 'en', 1, 'https://ror.org/05fnsjm04 Brooklands Hospital'),
(24608, 'https://ror.org/05fsfff09', 'en', 1, 'https://ror.org/05fsfff09 L''Association d''art des universitƩs du Canada Universities Art Association of Canada'),
(24609, 'https://ror.org/05fsnfd13', 'en', 1, 'https://ror.org/05fsnfd13 Lewes Victoria Hospital'),
(24610, 'https://ror.org/05g0b4875', 'no_lang_code', 1, 'https://ror.org/05g0b4875 Teknimed (France)'),
(24611, 'https://ror.org/05g1k4d79', 'en', 1, 'https://ror.org/05g1k4d79 North-Caucasus Federal University Деверо-Кавказский Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(24612, 'https://ror.org/05g223j58', 'no_lang_code', 1, 'https://ror.org/05g223j58 Plant (United States)'),
(24613, 'https://ror.org/05g23q746', 'en', 1, 'https://ror.org/05g23q746 Mid Yorkshire Hospitals NHS Trust'),
(24614, 'https://ror.org/05g269s74', 'no_lang_code', 1, 'https://ror.org/05g269s74 Systemite (Sweden)'),
(24615, 'https://ror.org/05g3wdh84', 'en', 1, 'https://ror.org/05g3wdh84 Akwa Ibom State University'),
(24616, 'https://ror.org/05g82f642', 'en', 1, 'https://ror.org/05g82f642 National Telecommunications Institute المعهد Ų§Ł„Ł‚ŁˆŁ…Ł‰ للاتصالات'),
(24617, 'https://ror.org/05g9kje37', 'fr', 1, 'https://ror.org/05g9kje37 Institut SupƩrieur de Gestion'),
(24618, 'https://ror.org/05ga8m074', 'en', 1, 'https://ror.org/05ga8m074 Pennine Acute Hospitals NHS Trust'),
(24619, 'https://ror.org/05gaa6j70', 'en', 1, 'https://ror.org/05gaa6j70 Bolivarian University of Chile Universidad Bolivariana de Chile'),
(24620, 'https://ror.org/05gcakm88', 'en', 1, 'https://ror.org/05gcakm88 Association of Lunar and Planetary Observers'),
(24621, 'https://ror.org/05ge25h32', 'en', 1, 'https://ror.org/05ge25h32 National Circus School Ɖcole nationale de cirque'),
(24622, 'https://ror.org/05gfgee67', 'no_lang_code', 1, 'https://ror.org/05gfgee67 ProteinLogic (United Kingdom)'),
(24623, 'https://ror.org/05ggcs531', 'en', 1, 'https://ror.org/05ggcs531 Catholic University of Trujillo Universidad Católica de Trujillo'),
(24624, 'https://ror.org/05ggndd89', 'no_lang_code', 1, 'https://ror.org/05ggndd89 eLEAF (Netherlands)'),
(24625, 'https://ror.org/05gj0xf20', 'no_lang_code', 1, 'https://ror.org/05gj0xf20 Ubisense'),
(24626, 'https://ror.org/05gjd9170', 'en', 1, 'https://ror.org/05gjd9170 Polytechnic University of the Valley of Mexico Universidad PolitƩcnica del Valle de MƩxico'),
(24627, 'https://ror.org/05gn43523', 'no_lang_code', 1, 'https://ror.org/05gn43523 Smart Metering Systems (United Kingdom)'),
(24628, 'https://ror.org/05gp0bv85', 'no_lang_code', 1, 'https://ror.org/05gp0bv85 SEAS-NVE (Denmark)'),
(24629, 'https://ror.org/05gptew44', 'no_lang_code', 1, 'https://ror.org/05gptew44 National Computing Centre (United Kingdom)'),
(24630, 'https://ror.org/05gqfmc91', 'en', 1, 'https://ror.org/05gqfmc91 Nebraska Department of Agriculture'),
(24631, 'https://ror.org/05gqfsf87', 'es', 1, 'https://ror.org/05gqfsf87 Universidad Autónoma del Caribe'),
(24632, 'https://ror.org/05gtkhg75', 'no_lang_code', 1, 'https://ror.org/05gtkhg75 Predictek (United States)'),
(24633, 'https://ror.org/05gwcqj56', 'en', 1, 'https://ror.org/05gwcqj56 Umaru Musa Yar''adua University'),
(24634, 'https://ror.org/05gwq9m97', 'no_lang_code', 1, 'https://ror.org/05gwq9m97 SpectraGenetics (United States)'),
(24635, 'https://ror.org/05gx5rk78', 'no_lang_code', 1, 'https://ror.org/05gx5rk78 Spolchemie (Czechia) Spolek pro chemickou a hutní výrobu'),
(24636, 'https://ror.org/05gzs4q18', 'no_lang_code', 1, 'https://ror.org/05gzs4q18 Tesla Engineering (United Kingdom)'),
(24637, 'https://ror.org/05h017e13', 'no_lang_code', 1, 'https://ror.org/05h017e13 Sciperio (United States)'),
(24638, 'https://ror.org/05h22s698', 'fi', 1, 'https://ror.org/05h22s698 Hankasalmen observatorio, Hankasalmi Observatory'),
(24639, 'https://ror.org/05h279t85', 'en', 1, 'https://ror.org/05h279t85 Observatoire du vatican Specola Vaticana Vatican Observatory Vatikanische Sternwarte'),
(24640, 'https://ror.org/05h2czb21', 'no_lang_code', 1, 'https://ror.org/05h2czb21 Nutech (Germany)'),
(24641, 'https://ror.org/05h2sfb33', 'de', 1, 'https://ror.org/05h2sfb33 Platte Consult'),
(24642, 'https://ror.org/05h2ydr55', 'no_lang_code', 1, 'https://ror.org/05h2ydr55 Milagen (United States)'),
(24643, 'https://ror.org/05h3nqt19', 'no_lang_code', 1, 'https://ror.org/05h3nqt19 TC Scientific (Canada)'),
(24644, 'https://ror.org/05h4nz838', 'no_lang_code', 1, 'https://ror.org/05h4nz838 UCO Raymond Denim (Belgium)'),
(24645, 'https://ror.org/05h6yvy73', 'es', 1, 'https://ror.org/05h6yvy73 Universidad Nacional de la AmazonĆ­a Peruana'),
(24646, 'https://ror.org/05h85dx49', 'no_lang_code', 1, 'https://ror.org/05h85dx49 Vipem Hackert (Germany)'),
(24647, 'https://ror.org/05h877m37', 'no_lang_code', 1, 'https://ror.org/05h877m37 WaterstofNet (Belgium)'),
(24648, 'https://ror.org/05h9c3z20', 'es', 1, 'https://ror.org/05h9c3z20 Universidad del Valle de MƩxico'),
(24649, 'https://ror.org/05h9h0e34', 'en', 1, 'https://ror.org/05h9h0e34 Hokkai Gakuen University åŒ—ęµ·å­¦åœ’å¤§å­¦'),
(24650, 'https://ror.org/05h9ysj75', 'en', 1, 'https://ror.org/05h9ysj75 Willesden Community Rehabilitation Hospital'),
(24651, 'https://ror.org/05ha03268', 'en', 1, 'https://ror.org/05ha03268 Lincolnshire Community Health Services NHS Trust'),
(24652, 'https://ror.org/05hawxe81', 'en', 1, 'https://ror.org/05hawxe81 YangPu Geriatric Hospital äøŠęµ·åø‚ęØęµ¦č€å¹“åŒ»é™¢'),
(24653, 'https://ror.org/05hhc1155', 'en', 1, 'https://ror.org/05hhc1155 Bronberg Observatory'),
(24654, 'https://ror.org/05hjjhn63', 'es', 1, 'https://ror.org/05hjjhn63 Centro de Estudios Universitarios Arkos'),
(24655, 'https://ror.org/05hjs5k87', 'no_lang_code', 1, 'https://ror.org/05hjs5k87 Sick (Germany)'),
(24656, 'https://ror.org/05hjyfv39', 'es', 1, 'https://ror.org/05hjyfv39 Universidad del Centro del BajĆ­o'),
(24657, 'https://ror.org/05hk9ey90', 'en', 1, 'https://ror.org/05hk9ey90 Sage Gateshead'),
(24658, 'https://ror.org/05hkcdk24', 'en', 1, 'https://ror.org/05hkcdk24 Union of Dairy Beef Food Industrialists and Producers of Turkey'),
(24659, 'https://ror.org/05hnnj870', 'hu', 1, 'https://ror.org/05hnnj870 VADASKERT FOUNDATION FOR CHILDREN''S MENTAL HEALTH Vadaskert AlapƭtvƔny a Gyermekek Lelki EgƩszsƩgƩƩrt'),
(24660, 'https://ror.org/05hpc6k82', 'es', 1, 'https://ror.org/05hpc6k82 Universidad Marista de MƩrida'),
(24661, 'https://ror.org/05hpjvd22', 'en', 1, 'https://ror.org/05hpjvd22 Republican Research and Practical Center for Epidemiology and Microbiology Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(24662, 'https://ror.org/05hpsdw90', 'no_lang_code', 1, 'https://ror.org/05hpsdw90 Nice Systems (Israel)'),
(24663, 'https://ror.org/05hsgxf19', 'en', 1, 'https://ror.org/05hsgxf19 Milpark Education'),
(24664, 'https://ror.org/05htddj49', 'en', 1, 'https://ror.org/05htddj49 Orange County Board of Commissioners'),
(24665, 'https://ror.org/05htkw892', 'no_lang_code', 1, 'https://ror.org/05htkw892 Hemanext (United States)'),
(24666, 'https://ror.org/05htw0667', 'en', 1, 'https://ror.org/05htw0667 Finlandia University UniversitƩ finlandia'),
(24667, 'https://ror.org/05htw5381', 'no_lang_code', 1, 'https://ror.org/05htw5381 Organogenesis (United States)'),
(24668, 'https://ror.org/05hvsnq92', 'en', 1, 'https://ror.org/05hvsnq92 Naropa University'),
(24669, 'https://ror.org/05j2jar38', 'en', 1, 'https://ror.org/05j2jar38 Peterlee Community Hospital'),
(24670, 'https://ror.org/05j2xah23', 'es', 1, 'https://ror.org/05j2xah23 Universidad Latina de AmƩrica'),
(24671, 'https://ror.org/05j35dh88', 'no_lang_code', 1, 'https://ror.org/05j35dh88 Q Bot (United Kingdom)'),
(24672, 'https://ror.org/05j49wk85', 'en', 1, 'https://ror.org/05j49wk85 Springfield University Hospital'),
(24673, 'https://ror.org/05j4pfa30', 'pt', 1, 'https://ror.org/05j4pfa30 Hospital de São Sebastião'),
(24674, 'https://ror.org/05j53g380', 'no_lang_code', 1, 'https://ror.org/05j53g380 Innovation Pharmaceuticals (United States)'),
(24675, 'https://ror.org/05j75hk11', 'no_lang_code', 1, 'https://ror.org/05j75hk11 Masermic (Spain)'),
(24676, 'https://ror.org/05j7bes85', 'no_lang_code', 1, 'https://ror.org/05j7bes85 Progress Printing (United States)'),
(24677, 'https://ror.org/05j857112', 'no_lang_code', 1, 'https://ror.org/05j857112 WS (Germany)'),
(24678, 'https://ror.org/05j8jw743', 'es', 1, 'https://ror.org/05j8jw743 Universidad de la Comunicación'),
(24679, 'https://ror.org/05j8nkz58', 'no_lang_code', 1, 'https://ror.org/05j8nkz58 Innovation Enterprise Impuls (Poland)'),
(24680, 'https://ror.org/05j9gf041', 'no_lang_code', 1, 'https://ror.org/05j9gf041 Merinova (Finland)'),
(24681, 'https://ror.org/05jf4s961', 'no_lang_code', 1, 'https://ror.org/05jf4s961 NanoIntegris (United States)'),
(24682, 'https://ror.org/05jj6ma85', 'es', 1, 'https://ror.org/05jj6ma85 Institución Universitaria de Envigado'),
(24683, 'https://ror.org/05jj78523', 'no_lang_code', 1, 'https://ror.org/05jj78523 Polinter (Spain)'),
(24684, 'https://ror.org/05jjyv308', 'en', 1, 'https://ror.org/05jjyv308 Chelmsford and Essex Hospital'),
(24685, 'https://ror.org/05jk5p721', 'no_lang_code', 1, 'https://ror.org/05jk5p721 Pedro Roquet (Spain)'),
(24686, 'https://ror.org/05jm9mh74', 'fr', 1, 'https://ror.org/05jm9mh74 Centre Hospitalier RenƩ-Dubos'),
(24687, 'https://ror.org/05jn5y837', 'en', 1, 'https://ror.org/05jn5y837 Cross Lane Hospital'),
(24688, 'https://ror.org/05jnqz832', 'es', 1, 'https://ror.org/05jnqz832 Catholic University of Culiacan Universidad Católica de CuliacÔn'),
(24689, 'https://ror.org/05jrasj33', 'no_lang_code', 1, 'https://ror.org/05jrasj33 Optocap (United Kingdom)'),
(24690, 'https://ror.org/05jsyda60', 'no_lang_code', 1, 'https://ror.org/05jsyda60 Technoport (Luxembourg)'),
(24691, 'https://ror.org/05jthnf79', 'no_lang_code', 1, 'https://ror.org/05jthnf79 PBS Turbo (Czechia)'),
(24692, 'https://ror.org/05jthsa98', 'es', 1, 'https://ror.org/05jthsa98 Universidad Abierta Para Adultos'),
(24693, 'https://ror.org/05jtjvf20', 'no_lang_code', 1, 'https://ror.org/05jtjvf20 Omnisense (United Kingdom)'),
(24694, 'https://ror.org/05jtnhy61', 'en', 1, 'https://ror.org/05jtnhy61 Bệnh viện Nhi đồng 1 Children''s Hospital 1'),
(24695, 'https://ror.org/05jv51744', 'no_lang_code', 1, 'https://ror.org/05jv51744 Surflay Nanotec (Germany)'),
(24696, 'https://ror.org/05jvh0739', 'en', 1, 'https://ror.org/05jvh0739 Sonoda Women''s University åœ’ē”°å­¦åœ’å„³å­å¤§å­¦'),
(24697, 'https://ror.org/05jy9jt03', 'en', 1, 'https://ror.org/05jy9jt03 Sierra College'),
(24698, 'https://ror.org/05jybk243', 'en', 1, 'https://ror.org/05jybk243 Professional Engineers Ontario'),
(24699, 'https://ror.org/05jz3sn81', 'en', 1, 'https://ror.org/05jz3sn81 University of the Cumberlands'),
(24700, 'https://ror.org/05k120s23', 'en', 1, 'https://ror.org/05k120s23 Nasson College'),
(24701, 'https://ror.org/05k19bk82', 'es', 1, 'https://ror.org/05k19bk82 Universidad Cristiana de PanamĆ”'),
(24702, 'https://ror.org/05k1xfg56', 'no_lang_code', 1, 'https://ror.org/05k1xfg56 Pharos International (Belgium)'),
(24703, 'https://ror.org/05k21nx54', 'en', 1, 'https://ror.org/05k21nx54 Samuel Johnson Community Hospital'),
(24704, 'https://ror.org/05k2ek264', 'no_lang_code', 1, 'https://ror.org/05k2ek264 Vigo System (Poland)'),
(24705, 'https://ror.org/05k35b119', 'de', 1, 'https://ror.org/05k35b119 Staatliches Museum für Naturkunde Stuttgart State Museum of Natural History Stuttgart'),
(24706, 'https://ror.org/05k5g2d46', 'no_lang_code', 1, 'https://ror.org/05k5g2d46 NBE Tech (United States)'),
(24707, 'https://ror.org/05k6ewa71', 'no_lang_code', 1, 'https://ror.org/05k6ewa71 Where''s Everybody (Malta)'),
(24708, 'https://ror.org/05k887p27', 'no_lang_code', 1, 'https://ror.org/05k887p27 R&D Systems (United States)'),
(24709, 'https://ror.org/05ke08a35', 'no_lang_code', 1, 'https://ror.org/05ke08a35 Air Products (Spain)'),
(24710, 'https://ror.org/05keb2d81', 'no_lang_code', 1, 'https://ror.org/05keb2d81 Yprema (France)'),
(24711, 'https://ror.org/05khdc453', 'es', 1, 'https://ror.org/05khdc453 Universidad PĆŗblica de El Alto'),
(24712, 'https://ror.org/05kkct931', 'es', 1, 'https://ror.org/05kkct931 Universidad APEC, Universidad Acción Pro-Educación y Cultura'),
(24713, 'https://ror.org/05km9hp38', 'en', 1, 'https://ror.org/05km9hp38 Jefferson Hospital for Neuroscience'),
(24714, 'https://ror.org/05kpdq249', 'pt', 1, 'https://ror.org/05kpdq249 Centro UniversitƔrio Celso Lisboa'),
(24715, 'https://ror.org/05kvc3j25', 'es', 1, 'https://ror.org/05kvc3j25 Universidad Mundial'),
(24716, 'https://ror.org/05kzvw994', 'en', 1, 'https://ror.org/05kzvw994 Three Rivers Community College'),
(24717, 'https://ror.org/05m031e17', 'en', 1, 'https://ror.org/05m031e17 Universidad de Cienfuegos University of Cienfuegos'),
(24718, 'https://ror.org/05m0z9f45', 'no_lang_code', 1, 'https://ror.org/05m0z9f45 Duro Felguera (Spain)'),
(24719, 'https://ror.org/05m25x550', 'no_lang_code', 1, 'https://ror.org/05m25x550 Microsens (Switzerland)'),
(24720, 'https://ror.org/05m3mzx29', 'no_lang_code', 1, 'https://ror.org/05m3mzx29 Gnubila Technology (France)'),
(24721, 'https://ror.org/05m3wdv79', 'en', 1, 'https://ror.org/05m3wdv79 Wichita Community Foundation'),
(24722, 'https://ror.org/05m4hh157', 'no_lang_code', 1, 'https://ror.org/05m4hh157 Pulkovo Observatory ŠŸŃƒŠ»ŠŗŠ¾Š²ŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(24723, 'https://ror.org/05m58vw43', 'en', 1, 'https://ror.org/05m58vw43 St Austell Community Hospital'),
(24724, 'https://ror.org/05m7smv12', 'en', 1, 'https://ror.org/05m7smv12 Egyptian Aviation Academy Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŁŠŲ±Ų§Ł†'),
(24725, 'https://ror.org/05mb0rj41', 'no_lang_code', 1, 'https://ror.org/05mb0rj41 Virtual Brands (United States)'),
(24726, 'https://ror.org/05mbcxm36', 'no_lang_code', 1, 'https://ror.org/05mbcxm36 Almina (Portugal)'),
(24727, 'https://ror.org/05mcdgy79', 'en', 1, 'https://ror.org/05mcdgy79 Spire Clare Park Hospital'),
(24728, 'https://ror.org/05mcefa73', 'no_lang_code', 1, 'https://ror.org/05mcefa73 Sifam Tinsley (United Kingdom)'),
(24729, 'https://ror.org/05mcesg65', 'en', 1, 'https://ror.org/05mcesg65 Colorado Christian University'),
(24730, 'https://ror.org/05mjwb095', 'no_lang_code', 1, 'https://ror.org/05mjwb095 NanoWave (United States)'),
(24731, 'https://ror.org/05mnjs436', 'en', 1, 'https://ror.org/05mnjs436 Dezhou University 德州学院'),
(24732, 'https://ror.org/05mpv2p10', 'no_lang_code', 1, 'https://ror.org/05mpv2p10 Sunamp (United Kingdom)'),
(24733, 'https://ror.org/05mqxwn60', 'no_lang_code', 1, 'https://ror.org/05mqxwn60 Star-Oddi (Iceland)'),
(24734, 'https://ror.org/05msnze33', 'de', 1, 'https://ror.org/05msnze33 Agaplesion Diakonieklinikum Rotenburg'),
(24735, 'https://ror.org/05mwf7z25', 'no_lang_code', 1, 'https://ror.org/05mwf7z25 Refind (Sweden)'),
(24736, 'https://ror.org/05mx53e97', 'es', 1, 'https://ror.org/05mx53e97 Universidad Amazonica de Pando'),
(24737, 'https://ror.org/05mxhk636', 'en', 1, 'https://ror.org/05mxhk636 Princess of Wales Community Hospital'),
(24738, 'https://ror.org/05myvnr67', 'en', 1, 'https://ror.org/05myvnr67 Romsey Hospital'),
(24739, 'https://ror.org/05myvyk91', 'es', 1, 'https://ror.org/05myvyk91 Universidad del Arte Ganexa'),
(24740, 'https://ror.org/05mzsjr54', 'no_lang_code', 1, 'https://ror.org/05mzsjr54 TechnoPhage (Portugal)'),
(24741, 'https://ror.org/05n1t5q87', 'en', 1, 'https://ror.org/05n1t5q87 Ripley Hospital'),
(24742, 'https://ror.org/05n2gzs35', 'fr', 1, 'https://ror.org/05n2gzs35 UniversitĆ© Djilali Bounaama Khemis Miliana Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ„Ų§Ł„ŁŠ ŲØŁˆŁ†Ų¹Ų§Ł…Ų© Ų®Ł…ŁŠŲ³ Ł…Ł„ŁŠŲ§Ł†Ų©'),
(24743, 'https://ror.org/05n47cs30', 'en', 1, 'https://ror.org/05n47cs30 Nangarhar University دانؓگاه ننگرهار'),
(24744, 'https://ror.org/05n7j1m63', 'en', 1, 'https://ror.org/05n7j1m63 West Valley High School'),
(24745, 'https://ror.org/05n8nz691', 'no_lang_code', 1, 'https://ror.org/05n8nz691 SOLID (Austria)'),
(24746, 'https://ror.org/05ncmk960', 'fr', 1, 'https://ror.org/05ncmk960 Institut National d''AmƩnagement et d''Urbanisme'),
(24747, 'https://ror.org/05ncqj764', 'en', 1, 'https://ror.org/05ncqj764 Huangshi Central Hospital é»„ēŸ³åø‚äø­åæƒåŒ»é™¢'),
(24748, 'https://ror.org/05ndyzk28', 'no_lang_code', 1, 'https://ror.org/05ndyzk28 Luftfartsverket (Sweden) Swedish Civil Aviation Administration'),
(24749, 'https://ror.org/05net6471', 'pt', 1, 'https://ror.org/05net6471 Centro UniversitƔrio da Grande Dourados'),
(24750, 'https://ror.org/05nkfrm56', 'fr', 1, 'https://ror.org/05nkfrm56 MinistĆØre de l''Enseignement Superieur et de la Recherche'),
(24751, 'https://ror.org/05nm1mf61', 'no_lang_code', 1, 'https://ror.org/05nm1mf61 Cegos (Italy)'),
(24752, 'https://ror.org/05np2xn95', 'en', 1, 'https://ror.org/05np2xn95 Kwara State University'),
(24753, 'https://ror.org/05nq31604', 'no_lang_code', 1, 'https://ror.org/05nq31604 Mirari Biosciences (United States)'),
(24754, 'https://ror.org/05nqrfj72', 'no_lang_code', 1, 'https://ror.org/05nqrfj72 UK Power Networks'),
(24755, 'https://ror.org/05nrv0z71', 'no_lang_code', 1, 'https://ror.org/05nrv0z71 Sorain Cecchini Tecno (Italy)'),
(24756, 'https://ror.org/05ntbjw82', 'no_lang_code', 1, 'https://ror.org/05ntbjw82 Microtest (Spain)'),
(24757, 'https://ror.org/05nvnp350', 'en', 1, 'https://ror.org/05nvnp350 Richmond Area Multi-Services'),
(24758, 'https://ror.org/05nw3yr55', 'en', 1, 'https://ror.org/05nw3yr55 St Ann’s Hospital'),
(24759, 'https://ror.org/05p2fta25', 'en', 1, 'https://ror.org/05p2fta25 Harwich And District Hospital'),
(24760, 'https://ror.org/05p4rzq96', 'es', 1, 'https://ror.org/05p4rzq96 Universidad SeƱor de SipƔn'),
(24761, 'https://ror.org/05p4xk507', 'en', 1, 'https://ror.org/05p4xk507 Canadian Research Institute for the Advancement of Women Institut Canadien de Recherches sur les Femmes'),
(24762, 'https://ror.org/05p5dfv61', 'en', 1, 'https://ror.org/05p5dfv61 Tennessee Voices for Children'),
(24763, 'https://ror.org/05p811391', 'en', 1, 'https://ror.org/05p811391 National Advanced School of Public Works Ɖcole Nationale SupĆ©rieure des Travaux Publics'),
(24764, 'https://ror.org/05p8sx023', 'es', 1, 'https://ror.org/05p8sx023 Corporación Universitaria Centro Superior'),
(24765, 'https://ror.org/05p9dka41', 'es', 1, 'https://ror.org/05p9dka41 Universidad de Matehuala'),
(24766, 'https://ror.org/05pa24340', 'fr', 1, 'https://ror.org/05pa24340 Ɖcole Royale Navale'),
(24767, 'https://ror.org/05pa5kt82', 'en', 1, 'https://ror.org/05pa5kt82 Radioactive Waste Repository Authority'),
(24768, 'https://ror.org/05pbbmz23', 'en', 1, 'https://ror.org/05pbbmz23 Bureau du Conseil privƩ Privy Council Office'),
(24769, 'https://ror.org/05pbmhp44', 'en', 1, 'https://ror.org/05pbmhp44 Mediterranean Network of Basin Organisations'),
(24770, 'https://ror.org/05petvd47', 'en', 1, 'https://ror.org/05petvd47 Tibet University č„æč—å¤§å­¦'),
(24771, 'https://ror.org/05pgmqf50', 'no_lang_code', 1, 'https://ror.org/05pgmqf50 Profile Associates (United States)'),
(24772, 'https://ror.org/05pjd0m90', 'en', 1, 'https://ror.org/05pjd0m90 The Royal Wolverhampton NHS Trust'),
(24773, 'https://ror.org/05pm0vd24', 'es', 1, 'https://ror.org/05pm0vd24 Fundación Universitaria Los Libertadores University Foundation Los Libertadores'),
(24774, 'https://ror.org/05pnejf26', 'fr', 1, 'https://ror.org/05pnejf26 Ɖcole Polyvalente SupĆ©rieure d''Informatique et d''Ɖlectronique'),
(24775, 'https://ror.org/05pnzjf85', 'es', 1, 'https://ror.org/05pnzjf85 Universidad Estatal del Sur de Manabi'),
(24776, 'https://ror.org/05ppcbv70', 'no_lang_code', 1, 'https://ror.org/05ppcbv70 Meggitt (France)'),
(24777, 'https://ror.org/05ppgmq25', 'no_lang_code', 1, 'https://ror.org/05ppgmq25 Socialdata (Germany)'),
(24778, 'https://ror.org/05ppr9v64', 'no_lang_code', 1, 'https://ror.org/05ppr9v64 Posit Science (United States)'),
(24779, 'https://ror.org/05pq96t26', 'no_lang_code', 1, 'https://ror.org/05pq96t26 Association of the Austrian Cement Industry Vereinigung der Ɩsterreichischen Zementindustrie'),
(24780, 'https://ror.org/05pqt0f15', 'no_lang_code', 1, 'https://ror.org/05pqt0f15 NanoPET Pharma (Germany)'),
(24781, 'https://ror.org/05pv4jg27', 'en', 1, 'https://ror.org/05pv4jg27 Udaipur Solar Observatory'),
(24782, 'https://ror.org/05pvbk494', 'en', 1, 'https://ror.org/05pvbk494 Western Delta University'),
(24783, 'https://ror.org/05pvtn103', 'en', 1, 'https://ror.org/05pvtn103 Hythe Hospital'),
(24784, 'https://ror.org/05py7h914', 'no_lang_code', 1, 'https://ror.org/05py7h914 Nimbus (Italy)'),
(24785, 'https://ror.org/05pzh4402', 'sv', 1, 'https://ror.org/05pzh4402 Visby lasarett'),
(24786, 'https://ror.org/05q041y44', 'no_lang_code', 1, 'https://ror.org/05q041y44 Kokugakuin University åœ‹å­øé™¢å¤§å­ø'),
(24787, 'https://ror.org/05q10zf45', 'no_lang_code', 1, 'https://ror.org/05q10zf45 Quviq (Sweden)'),
(24788, 'https://ror.org/05q1et630', 'no_lang_code', 1, 'https://ror.org/05q1et630 Prototal (Sweden)'),
(24789, 'https://ror.org/05q1nwf35', 'sv', 1, 'https://ror.org/05q1nwf35 NordGen'),
(24790, 'https://ror.org/05q1xcs51', 'no_lang_code', 1, 'https://ror.org/05q1xcs51 PDS Biotechnology (United States)'),
(24791, 'https://ror.org/05q2fkx40', 'no_lang_code', 1, 'https://ror.org/05q2fkx40 Mondeca (France)'),
(24792, 'https://ror.org/05q2q5n15', 'no_lang_code', 1, 'https://ror.org/05q2q5n15 Progis Software (Austria)'),
(24793, 'https://ror.org/05q37wj74', 'es', 1, 'https://ror.org/05q37wj74 Fundación Universitaria de San Gil'),
(24794, 'https://ror.org/05q6p8h20', 'en', 1, 'https://ror.org/05q6p8h20 Wilkes-Barre General Hospital'),
(24795, 'https://ror.org/05q6sxg43', 'es', 1, 'https://ror.org/05q6sxg43 Universidad Interamericana del Norte'),
(24796, 'https://ror.org/05q7b6a32', 'en', 1, 'https://ror.org/05q7b6a32 Orchards Day Hospital'),
(24797, 'https://ror.org/05q9vjc76', 'no_lang_code', 1, 'https://ror.org/05q9vjc76 Richmond Chemical (United States)'),
(24798, 'https://ror.org/05qc8r157', 'no_lang_code', 1, 'https://ror.org/05qc8r157 Portic Barcelona'),
(24799, 'https://ror.org/05qd85289', 'no_lang_code', 1, 'https://ror.org/05qd85289 Outotec (Finland)'),
(24800, 'https://ror.org/05qdfs727', 'no_lang_code', 1, 'https://ror.org/05qdfs727 Silicon Audio (United States)'),
(24801, 'https://ror.org/05qep9y26', 'no_lang_code', 1, 'https://ror.org/05qep9y26 Perceptive Engineering (United Kingdom)'),
(24802, 'https://ror.org/05qf4x681', 'en', 1, 'https://ror.org/05qf4x681 Manchester Digital Laboratory');
INSERT INTO `rors` VALUES
(24803, 'https://ror.org/05qgtj846', 'no_lang_code', 1, 'https://ror.org/05qgtj846 Ogenx Therapeutics (United States)'),
(24804, 'https://ror.org/05qh38f12', 'en', 1, 'https://ror.org/05qh38f12 Takushoku University ę‹“ę®– 大学'),
(24805, 'https://ror.org/05qj15q72', 'en', 1, 'https://ror.org/05qj15q72 Southwestern Christian University'),
(24806, 'https://ror.org/05qj4gz58', 'no_lang_code', 1, 'https://ror.org/05qj4gz58 MicroSurfaces (United States)'),
(24807, 'https://ror.org/05qj64q37', 'en', 1, 'https://ror.org/05qj64q37 United States International University Africa'),
(24808, 'https://ror.org/05qqnvx16', 'no_lang_code', 1, 'https://ror.org/05qqnvx16 Metropolitana Milanese (Italy)'),
(24809, 'https://ror.org/05qqqz947', 'en', 1, 'https://ror.org/05qqqz947 Ohio Development Services Agency'),
(24810, 'https://ror.org/05qs31q25', 'en', 1, 'https://ror.org/05qs31q25 Kyoto University Research Reactor Institute äŗ¬éƒ½å¤§å­¦č¤‡åˆåŽŸå­åŠ›ē§‘å­¦ē ”ē©¶ę‰€'),
(24811, 'https://ror.org/05qtb1210', 'no_lang_code', 1, 'https://ror.org/05qtb1210 Poste Italiane (Italy)'),
(24812, 'https://ror.org/05qteks55', 'no_lang_code', 1, 'https://ror.org/05qteks55 Ametek (United Kingdom)'),
(24813, 'https://ror.org/05qxc8r48', 'es', 1, 'https://ror.org/05qxc8r48 Instituto Profesional De Ciencias Y Artes'),
(24814, 'https://ror.org/05r2h7161', 'en', 1, 'https://ror.org/05r2h7161 Test Positive Aware Network'),
(24815, 'https://ror.org/05r2yk395', 'en', 1, 'https://ror.org/05r2yk395 TƤhtitieteellinen yhdistys Ursa ry Ursa Astronomical Association'),
(24816, 'https://ror.org/05r4ezy10', 'no_lang_code', 1, 'https://ror.org/05r4ezy10 XMOS (United Kingdom)'),
(24817, 'https://ror.org/05r5dcc67', 'en', 1, 'https://ror.org/05r5dcc67 Mold Community Hospital Ysbyty Cymuned yr Wyddgrug'),
(24818, 'https://ror.org/05r61jg22', 'no_lang_code', 1, 'https://ror.org/05r61jg22 Oikon (Croatia)'),
(24819, 'https://ror.org/05r754v60', 'es', 1, 'https://ror.org/05r754v60 Universidad Autónoma de Piedras Negras'),
(24820, 'https://ror.org/05r7p7m46', 'no_lang_code', 1, 'https://ror.org/05r7p7m46 Offshore Installation Services (United Kingdom)'),
(24821, 'https://ror.org/05r7wgd74', 'no_lang_code', 1, 'https://ror.org/05r7wgd74 Nexans (Germany)'),
(24822, 'https://ror.org/05r7x7136', 'en', 1, 'https://ror.org/05r7x7136 Society for Mathematical Psychology'),
(24823, 'https://ror.org/05r89fw56', 'es', 1, 'https://ror.org/05r89fw56 Universidad del Valle de Puebla'),
(24824, 'https://ror.org/05r8m9m38', 'no_lang_code', 1, 'https://ror.org/05r8m9m38 Newbiotechnic (Spain)'),
(24825, 'https://ror.org/05r9r2h28', 'es', 1, 'https://ror.org/05r9r2h28 Universidad de la Integración de las Américas'),
(24826, 'https://ror.org/05radvt19', 'en', 1, 'https://ror.org/05radvt19 University of Hawaii–West Oahu'),
(24827, 'https://ror.org/05rcf8d17', 'es', 1, 'https://ror.org/05rcf8d17 Universidad Continental'),
(24828, 'https://ror.org/05rcqrz41', 'en', 1, 'https://ror.org/05rcqrz41 African Institute of Science and Technology'),
(24829, 'https://ror.org/05reesp83', 'en', 1, 'https://ror.org/05reesp83 University Psychiatric Hospital Univerzitetna psihiatrična klinika Ljubljana'),
(24830, 'https://ror.org/05ref2c25', 'no_lang_code', 1, 'https://ror.org/05ref2c25 Valacta (Canada)'),
(24831, 'https://ror.org/05rfgws98', 'en', 1, 'https://ror.org/05rfgws98 Department of Health'),
(24832, 'https://ror.org/05rga6m50', 'no_lang_code', 1, 'https://ror.org/05rga6m50 OmniActive Health Technologies (Canada)'),
(24833, 'https://ror.org/05rnpra73', 'no_lang_code', 1, 'https://ror.org/05rnpra73 Tapecon (United States)'),
(24834, 'https://ror.org/05rp7bv68', 'no_lang_code', 1, 'https://ror.org/05rp7bv68 Polatis (United Kingdom)'),
(24835, 'https://ror.org/05rqdkd73', 'es', 1, 'https://ror.org/05rqdkd73 Centro Universitario Columbia'),
(24836, 'https://ror.org/05rr3y439', 'en', 1, 'https://ror.org/05rr3y439 Free University of Tbilisi ДвобоГный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Тбилиси įƒ—įƒįƒ•įƒ˜įƒ”įƒ£įƒ¤įƒįƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(24837, 'https://ror.org/05rrwve30', 'no_lang_code', 1, 'https://ror.org/05rrwve30 Ripple (United States)'),
(24838, 'https://ror.org/05rsfnx05', 'es', 1, 'https://ror.org/05rsfnx05 Universidad Pedagógica Nacional Francisco MorazÔn'),
(24839, 'https://ror.org/05rtxtk57', 'en', 1, 'https://ror.org/05rtxtk57 Pocatello High School'),
(24840, 'https://ror.org/05rvmn457', 'no_lang_code', 1, 'https://ror.org/05rvmn457 Visual Health Information'),
(24841, 'https://ror.org/05rye6v40', 'en', 1, 'https://ror.org/05rye6v40 Saskatchewan Conservation Learning Centre'),
(24842, 'https://ror.org/05s08zz66', 'no_lang_code', 1, 'https://ror.org/05s08zz66 Ultrasion (Spain)'),
(24843, 'https://ror.org/05s293m17', 'en', 1, 'https://ror.org/05s293m17 Congleton War Memorial Hospital'),
(24844, 'https://ror.org/05s29c959', 'en', 1, 'https://ror.org/05s29c959 Nahda University Ų¬Ų§Ł…Ų¹Ų© النهضة'),
(24845, 'https://ror.org/05s8ae250', 'es', 1, 'https://ror.org/05s8ae250 American Isthmus University Universidad Istmo Americana'),
(24846, 'https://ror.org/05s8x6c38', 'en', 1, 'https://ror.org/05s8x6c38 Novena University'),
(24847, 'https://ror.org/05sagpq04', 'en', 1, 'https://ror.org/05sagpq04 Women in Science and Engineering Newfoundland and Labrador'),
(24848, 'https://ror.org/05sbphk63', 'no_lang_code', 1, 'https://ror.org/05sbphk63 Plastic Flow (United States)'),
(24849, 'https://ror.org/05sd0rs38', 'no_lang_code', 1, 'https://ror.org/05sd0rs38 Reach Technologies (Canada)'),
(24850, 'https://ror.org/05sd11n59', 'fr', 1, 'https://ror.org/05sd11n59 Ɖcole Nationale d''Administration et de Magistrature'),
(24851, 'https://ror.org/05sd91r15', 'en', 1, 'https://ror.org/05sd91r15 Istituto di Ricerca per la Terapia Genetica Umana Research Institute for Genetic and Human Therapy'),
(24852, 'https://ror.org/05sdess02', 'no_lang_code', 1, 'https://ror.org/05sdess02 mLED (United Kingdom)'),
(24853, 'https://ror.org/05sed7d42', 'no_lang_code', 1, 'https://ror.org/05sed7d42 Tingtun (Norway)'),
(24854, 'https://ror.org/05sfyk691', 'en', 1, 'https://ror.org/05sfyk691 Department of Behavioral Health and Intellectual Disability Services'),
(24855, 'https://ror.org/05shyvt50', 'en', 1, 'https://ror.org/05shyvt50 Langley Green Hospital'),
(24856, 'https://ror.org/05sj65q02', 'no_lang_code', 1, 'https://ror.org/05sj65q02 THAP Group (United States)'),
(24857, 'https://ror.org/05sjfxm32', 'en', 1, 'https://ror.org/05sjfxm32 Orders of St John Care Trust'),
(24858, 'https://ror.org/05sjmgm82', 'en', 1, 'https://ror.org/05sjmgm82 World Agency of Planetary Monitoring & Earthquake Risk Reduction'),
(24859, 'https://ror.org/05sjznd72', 'en', 1, 'https://ror.org/05sjznd72 Morinomiya University of Medical Sciences ę£®ćƒŽå®®åŒ»ē™‚å¤§å­¦'),
(24860, 'https://ror.org/05skzv947', 'no_lang_code', 1, 'https://ror.org/05skzv947 CTT Group (Canada)'),
(24861, 'https://ror.org/05smvaw93', 'no_lang_code', 1, 'https://ror.org/05smvaw93 Zigpos (Germany)'),
(24862, 'https://ror.org/05smwx616', 'no_lang_code', 1, 'https://ror.org/05smwx616 Schneeberger (Switzerland)'),
(24863, 'https://ror.org/05smxxj12', 'en', 1, 'https://ror.org/05smxxj12 Malton Community Hospital'),
(24864, 'https://ror.org/05sngcy82', 'no_lang_code', 1, 'https://ror.org/05sngcy82 STEAG (Germany) Steinkohlen-ElektrizitƤt'),
(24865, 'https://ror.org/05spgdz37', 'es', 1, 'https://ror.org/05spgdz37 Universidad Autónoma de La Laguna'),
(24866, 'https://ror.org/05sps8h71', 'no_lang_code', 1, 'https://ror.org/05sps8h71 Reischauer (Germany)'),
(24867, 'https://ror.org/05spz0x25', 'en', 1, 'https://ror.org/05spz0x25 National Institute of Building Sciences'),
(24868, 'https://ror.org/05sq6ae13', 'en', 1, 'https://ror.org/05sq6ae13 Manor Hospital'),
(24869, 'https://ror.org/05sr81t86', 'no_lang_code', 1, 'https://ror.org/05sr81t86 Scan Messtechnik (Austria)'),
(24870, 'https://ror.org/05srxwy94', 'en', 1, 'https://ror.org/05srxwy94 Higher Institute of Applied Arts المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„ŁŁ†ŁˆŁ† Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(24871, 'https://ror.org/05ss0jg28', 'es', 1, 'https://ror.org/05ss0jg28 Institución Tecnológica Cedesistemas'),
(24872, 'https://ror.org/05st2e578', 'no_lang_code', 1, 'https://ror.org/05st2e578 Verdezyne (United States)'),
(24873, 'https://ror.org/05sxd8019', 'en', 1, 'https://ror.org/05sxd8019 Six County Association of Governments'),
(24874, 'https://ror.org/05szy4c49', 'en', 1, 'https://ror.org/05szy4c49 San Diego City College'),
(24875, 'https://ror.org/05t156v90', 'no_lang_code', 1, 'https://ror.org/05t156v90 ZS-Handling (Germany)'),
(24876, 'https://ror.org/05t197591', 'en', 1, 'https://ror.org/05t197591 American University of Paris'),
(24877, 'https://ror.org/05t1w2321', 'en', 1, 'https://ror.org/05t1w2321 Wells Community Hospital'),
(24878, 'https://ror.org/05t3rbf71', 'no_lang_code', 1, 'https://ror.org/05t3rbf71 Voxiva (United States)'),
(24879, 'https://ror.org/05t6b6536', 'no_lang_code', 1, 'https://ror.org/05t6b6536 PhotoBiotics (United Kingdom)'),
(24880, 'https://ror.org/05t6bf545', 'es', 1, 'https://ror.org/05t6bf545 Centro Universitario Interamericano'),
(24881, 'https://ror.org/05t8m1733', 'en', 1, 'https://ror.org/05t8m1733 Social Work Institute in Cairo'),
(24882, 'https://ror.org/05t9gqf54', 'en', 1, 'https://ror.org/05t9gqf54 New Charter University'),
(24883, 'https://ror.org/05td7ze90', 'en', 1, 'https://ror.org/05td7ze90 GB Hunter Memorial Hospital'),
(24884, 'https://ror.org/05tdgzn66', 'en', 1, 'https://ror.org/05tdgzn66 Troy Community Coalition'),
(24885, 'https://ror.org/05te51965', 'en', 1, 'https://ror.org/05te51965 Kure Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹å‘‰åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(24886, 'https://ror.org/05teaww98', 'en', 1, 'https://ror.org/05teaww98 York Technical College'),
(24887, 'https://ror.org/05tfkwc03', 'en', 1, 'https://ror.org/05tfkwc03 Barnes Hospital'),
(24888, 'https://ror.org/05tfp2303', 'en', 1, 'https://ror.org/05tfp2303 Clacton Hospital'),
(24889, 'https://ror.org/05thgyd14', 'en', 1, 'https://ror.org/05thgyd14 Metropolitan Interdenominational Church'),
(24890, 'https://ror.org/05tjaf288', 'en', 1, 'https://ror.org/05tjaf288 Komazawa University 駒澤大学'),
(24891, 'https://ror.org/05tjt1495', 'no_lang_code', 1, 'https://ror.org/05tjt1495 Systèmes d''Information à Référence Spatiale (France)'),
(24892, 'https://ror.org/05tk74w54', 'fr', 1, 'https://ror.org/05tk74w54 Fédération Hospitalière de France'),
(24893, 'https://ror.org/05tkb8v92', 'es', 1, 'https://ror.org/05tkb8v92 Universidad Autónoma Latinoamericana'),
(24894, 'https://ror.org/05tkd5f92', 'no_lang_code', 1, 'https://ror.org/05tkd5f92 UGN-Umwelttechnik (Germany)'),
(24895, 'https://ror.org/05tv4xd72', 'es', 1, 'https://ror.org/05tv4xd72 Universidad Tecnológica Intercontinental'),
(24896, 'https://ror.org/05tv80m53', 'pt', 1, 'https://ror.org/05tv80m53 Instituto Superior Politecnico de Tete'),
(24897, 'https://ror.org/05twfp995', 'en', 1, 'https://ror.org/05twfp995 Africa Nazarene University'),
(24898, 'https://ror.org/05twga530', 'en', 1, 'https://ror.org/05twga530 Oklahoma Wesleyan University'),
(24899, 'https://ror.org/05ty6tb10', 'en', 1, 'https://ror.org/05ty6tb10 Native Women''s Association of Canada'),
(24900, 'https://ror.org/05v1ekw79', 'en', 1, 'https://ror.org/05v1ekw79 Dongyang University ė™ģ–‘ėŒ€ķ•™źµ'),
(24901, 'https://ror.org/05v2asf50', 'es', 1, 'https://ror.org/05v2asf50 Universidad Nacional de Moquegua'),
(24902, 'https://ror.org/05v3fv602', 'no_lang_code', 1, 'https://ror.org/05v3fv602 Endeavour (United Kingdom)'),
(24903, 'https://ror.org/05v3gve10', 'no_lang_code', 1, 'https://ror.org/05v3gve10 Prolon Control Systems (Denmark)'),
(24904, 'https://ror.org/05v4wt877', 'en', 1, 'https://ror.org/05v4wt877 Paul Watkiss Associates'),
(24905, 'https://ror.org/05v8dd891', 'no_lang_code', 1, 'https://ror.org/05v8dd891 Tekkva Consult (Denmark)'),
(24906, 'https://ror.org/05v8evh13', 'no_lang_code', 1, 'https://ror.org/05v8evh13 Nutra Canada (Canada)'),
(24907, 'https://ror.org/05vawe413', 'no_lang_code', 1, 'https://ror.org/05vawe413 Yuhuangding Hospital ēƒŸå°ęÆ“ē’œé”¶åŒ»é™¢'),
(24908, 'https://ror.org/05vh9vp33', 'en', 1, 'https://ror.org/05vh9vp33 Zucker Hillside Hospital'),
(24909, 'https://ror.org/05vhbmg11', 'en', 1, 'https://ror.org/05vhbmg11 Auckland Park Hospital'),
(24910, 'https://ror.org/05vkg6y29', 'en', 1, 'https://ror.org/05vkg6y29 Fieldhead Hospital'),
(24911, 'https://ror.org/05vm4ac48', 'es', 1, 'https://ror.org/05vm4ac48 Universidad Alva Edison'),
(24912, 'https://ror.org/05vmcgv71', 'no_lang_code', 1, 'https://ror.org/05vmcgv71 Dana (Germany)'),
(24913, 'https://ror.org/05vn6by16', 'no_lang_code', 1, 'https://ror.org/05vn6by16 Viewrope'),
(24914, 'https://ror.org/05vr9w866', 'en', 1, 'https://ror.org/05vr9w866 Latin American University of Science and Technology Universidad Latinoamericana de Ciencia y TecnologĆ­a'),
(24915, 'https://ror.org/05vv75456', 'en', 1, 'https://ror.org/05vv75456 Alcoholism Center for Women'),
(24916, 'https://ror.org/05vwr6v04', 'no_lang_code', 1, 'https://ror.org/05vwr6v04 Sistemas Y Redes Telematicas (Spain)'),
(24917, 'https://ror.org/05w0kdr76', 'en', 1, 'https://ror.org/05w0kdr76 Us Helping Us People Into Living'),
(24918, 'https://ror.org/05w0r7981', 'no_lang_code', 1, 'https://ror.org/05w0r7981 Steven Winter Associates (United States)'),
(24919, 'https://ror.org/05w3scj59', 'en', 1, 'https://ror.org/05w3scj59 Doddington Hospital'),
(24920, 'https://ror.org/05w4mbn40', 'en', 1, 'https://ror.org/05w4mbn40 Aichi Developmental Disability Center ę„›ēŸ„ēœŒåŒ»ē™‚ē™‚č‚²ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(24921, 'https://ror.org/05w5qjg18', 'en', 1, 'https://ror.org/05w5qjg18 Milwaukee Public Schools'),
(24922, 'https://ror.org/05w7nha79', 'no_lang_code', 1, 'https://ror.org/05w7nha79 Seekda (Austria)'),
(24923, 'https://ror.org/05w9cds44', 'no_lang_code', 1, 'https://ror.org/05w9cds44 Oelheld (Germany)'),
(24924, 'https://ror.org/05w9m5a46', 'en', 1, 'https://ror.org/05w9m5a46 National Blood Clot Alliance'),
(24925, 'https://ror.org/05war1b27', 'no_lang_code', 1, 'https://ror.org/05war1b27 TQ Environmental (United Kingdom)'),
(24926, 'https://ror.org/05wc21r71', 'es', 1, 'https://ror.org/05wc21r71 Universidad de Negocios ISEC'),
(24927, 'https://ror.org/05wch2w55', 'no_lang_code', 1, 'https://ror.org/05wch2w55 Zylon (United States)'),
(24928, 'https://ror.org/05we8km13', 'en', 1, 'https://ror.org/05we8km13 Leeds Dental Hospital'),
(24929, 'https://ror.org/05wgv9z07', 'no_lang_code', 1, 'https://ror.org/05wgv9z07 Resonant Sensors (United States)'),
(24930, 'https://ror.org/05wgye104', 'no_lang_code', 1, 'https://ror.org/05wgye104 143-Gnosca Osservatorio Astronomico di Gnosca'),
(24931, 'https://ror.org/05wh3xd46', 'en', 1, 'https://ror.org/05wh3xd46 Riga Graduate School of Law Rygos aukÅ”toji teisės mokykla Š ŠøŠ¶ŃŠŗŠ°Ń Š²Ń‹ŃŃˆŠ°Ń школа права'),
(24932, 'https://ror.org/05wj4em96', 'no_lang_code', 1, 'https://ror.org/05wj4em96 NextInput (United States)'),
(24933, 'https://ror.org/05wn3nd60', 'no_lang_code', 1, 'https://ror.org/05wn3nd60 Specto Natura'),
(24934, 'https://ror.org/05wnzmz28', 'no_lang_code', 1, 'https://ror.org/05wnzmz28 S2 Corporation (United States)'),
(24935, 'https://ror.org/05wq53m96', 'no_lang_code', 1, 'https://ror.org/05wq53m96 Rockwood Lithium (Germany)'),
(24936, 'https://ror.org/05wrc0w56', 'en', 1, 'https://ror.org/05wrc0w56 National University of Formosa Universidad Nacional de Formosa'),
(24937, 'https://ror.org/05wt11w07', 'no_lang_code', 1, 'https://ror.org/05wt11w07 Pultrall (Canada)'),
(24938, 'https://ror.org/05wt6nv93', 'en', 1, 'https://ror.org/05wt6nv93 University College of Technology'),
(24939, 'https://ror.org/05wvb7e41', 'no_lang_code', 1, 'https://ror.org/05wvb7e41 Mentor InterActive (United States)'),
(24940, 'https://ror.org/05wwhcb10', 'no_lang_code', 1, 'https://ror.org/05wwhcb10 Western Systems Research (United States)'),
(24941, 'https://ror.org/05wwm0q58', 'en', 1, 'https://ror.org/05wwm0q58 Chung Shan Hospital 中山醫院'),
(24942, 'https://ror.org/05wxraw41', 'no_lang_code', 1, 'https://ror.org/05wxraw41 Nortek (Canada)'),
(24943, 'https://ror.org/05x0fca68', 'en', 1, 'https://ror.org/05x0fca68 Universidad de Navojoa University of Navojoa'),
(24944, 'https://ror.org/05x1e2z17', 'no_lang_code', 1, 'https://ror.org/05x1e2z17 Sherwood Scientific (United Kingdom)'),
(24945, 'https://ror.org/05x1mdb86', 'en', 1, 'https://ror.org/05x1mdb86 Totnes Community Hospital'),
(24946, 'https://ror.org/05x1tpn63', 'fr', 1, 'https://ror.org/05x1tpn63 PƓle VƩhicule du Futur'),
(24947, 'https://ror.org/05x21v161', 'fr', 1, 'https://ror.org/05x21v161 Institut SupĆ©rieur d’Informatique, Programmation et Analyse'),
(24948, 'https://ror.org/05x3h8029', 'no_lang_code', 1, 'https://ror.org/05x3h8029 Gruppo Trombini (Italy)'),
(24949, 'https://ror.org/05x5xt830', 'en', 1, 'https://ror.org/05x5xt830 Spire Washington Hospital'),
(24950, 'https://ror.org/05x6q7t13', 'no_lang_code', 1, 'https://ror.org/05x6q7t13 Alberoni University دانؓگاه Ų§Ł„ŲØŪŒŲ±ŁˆŁ†ŪŒ'),
(24951, 'https://ror.org/05x6t5z92', 'en', 1, 'https://ror.org/05x6t5z92 Fleetwood Hospital'),
(24952, 'https://ror.org/05x786n86', 'no_lang_code', 1, 'https://ror.org/05x786n86 Stopford Energy & Environment (United Kingdom)'),
(24953, 'https://ror.org/05x8hy709', 'en', 1, 'https://ror.org/05x8hy709 North Carolina Wesleyan College'),
(24954, 'https://ror.org/05x92kx88', 'en', 1, 'https://ror.org/05x92kx88 North Dakota State Board of Higher Education'),
(24955, 'https://ror.org/05x9bmy83', 'no_lang_code', 1, 'https://ror.org/05x9bmy83 Ommic (France)'),
(24956, 'https://ror.org/05x9r8j38', 'no_lang_code', 1, 'https://ror.org/05x9r8j38 Vector Fabrics (Netherlands)'),
(24957, 'https://ror.org/05xbyzq55', 'en', 1, 'https://ror.org/05xbyzq55 Tokyo Kasei University ę±äŗ¬å®¶ę”æå¤§å­¦'),
(24958, 'https://ror.org/05xc4qj60', 'en', 1, 'https://ror.org/05xc4qj60 Libertador Experimental Pedagogical University Universidad Pedagógica Experimental Libertador'),
(24959, 'https://ror.org/05xeh0r58', 'no_lang_code', 1, 'https://ror.org/05xeh0r58 PhytoCeutica (United States)'),
(24960, 'https://ror.org/05xekmj63', 'en', 1, 'https://ror.org/05xekmj63 Sir Robert Peel Community Hospital'),
(24961, 'https://ror.org/05xg5y175', 'es', 1, 'https://ror.org/05xg5y175 Polytechnic University of Aguascalientes Universidad PolitƩcnica de Aguascalientes'),
(24962, 'https://ror.org/05xhfc919', 'en', 1, 'https://ror.org/05xhfc919 Fairford Hospital'),
(24963, 'https://ror.org/05xjh4a29', 'no_lang_code', 1, 'https://ror.org/05xjh4a29 Mine Safety Appliances (United States)'),
(24964, 'https://ror.org/05xk81g65', 'no_lang_code', 1, 'https://ror.org/05xk81g65 SR Technics (Ireland)'),
(24965, 'https://ror.org/05xmgd629', 'en', 1, 'https://ror.org/05xmgd629 TB HIV Care Association'),
(24966, 'https://ror.org/05xnzvx23', 'no_lang_code', 1, 'https://ror.org/05xnzvx23 Multimatic ILSA (Germany)'),
(24967, 'https://ror.org/05xpg8a23', 'en', 1, 'https://ror.org/05xpg8a23 Grace University'),
(24968, 'https://ror.org/05xq4gr47', 'en', 1, 'https://ror.org/05xq4gr47 Canada–France–Hawaii Telescope'),
(24969, 'https://ror.org/05xq4sr56', 'lv', 1, 'https://ror.org/05xq4sr56 Ventspils Digitālais Centrs'),
(24970, 'https://ror.org/05xrt2s12', 'es', 1, 'https://ror.org/05xrt2s12 Universidad del Desarrollo del Estado de Puebla'),
(24971, 'https://ror.org/05xrwp171', 'pt', 1, 'https://ror.org/05xrwp171 Centro UniversitƔrio Geraldo Di Biase'),
(24972, 'https://ror.org/05xs36f43', 'es', 1, 'https://ror.org/05xs36f43 Universidad La RepĆŗblica'),
(24973, 'https://ror.org/05xw5kw49', 'es', 1, 'https://ror.org/05xw5kw49 Universidad de Tamazunchale'),
(24974, 'https://ror.org/05xwfa541', 'en', 1, 'https://ror.org/05xwfa541 Keswick Community Hospital'),
(24975, 'https://ror.org/05xz7ye37', 'no_lang_code', 1, 'https://ror.org/05xz7ye37 Union Biometrica (United States)'),
(24976, 'https://ror.org/05y0ts542', 'no_lang_code', 1, 'https://ror.org/05y0ts542 Norton Cast Products (United Kingdom)'),
(24977, 'https://ror.org/05y3ab566', 'en', 1, 'https://ror.org/05y3ab566 Okayama Ceramics Research Foundation å²”å±±ć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(24978, 'https://ror.org/05y5wb377', 'no_lang_code', 1, 'https://ror.org/05y5wb377 Vanderpol''s Eggs (Canada)'),
(24979, 'https://ror.org/05y6c0296', 'no_lang_code', 1, 'https://ror.org/05y6c0296 Tetra Tech (Canada)'),
(24980, 'https://ror.org/05y7edy46', 'no_lang_code', 1, 'https://ror.org/05y7edy46 West Kordofan University Ų¬Ų§Ł…Ų¹Ų© ŲŗŲ±ŲØ ŁƒŲ±ŲÆŁŲ§Ł†'),
(24981, 'https://ror.org/05y7nb940', 'nl', 1, 'https://ror.org/05y7nb940 Stichting Lettinga Associates'),
(24982, 'https://ror.org/05y8ejc62', 'no_lang_code', 1, 'https://ror.org/05y8ejc62 Mellon Technologies (Greece)'),
(24983, 'https://ror.org/05y8sjx72', 'no_lang_code', 1, 'https://ror.org/05y8sjx72 Nanofiber Solutions (United States)'),
(24984, 'https://ror.org/05yat8w11', 'no_lang_code', 1, 'https://ror.org/05yat8w11 Valtronic (Switzerland)'),
(24985, 'https://ror.org/05ycegt40', 'en', 1, 'https://ror.org/05ycegt40 Banasthali University ą¤µą¤Øą¤øą„ą¤„ą¤²ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(24986, 'https://ror.org/05yd5nz87', 'no_lang_code', 1, 'https://ror.org/05yd5nz87 Glintt (Portugal)'),
(24987, 'https://ror.org/05yd61k38', 'en', 1, 'https://ror.org/05yd61k38 Hollins Park Hospital'),
(24988, 'https://ror.org/05ydfbx15', 'de', 1, 'https://ror.org/05ydfbx15 Klinikum St. Marien Amberg'),
(24989, 'https://ror.org/05ye5k232', 'no_lang_code', 1, 'https://ror.org/05ye5k232 Pontydysgu'),
(24990, 'https://ror.org/05yede386', 'no_lang_code', 1, 'https://ror.org/05yede386 Manz (Germany)'),
(24991, 'https://ror.org/05yevm258', 'en', 1, 'https://ror.org/05yevm258 Bệnh viện Phįŗ”m Ngį»c Thįŗ”ch Pham Ngoc Thach Hospital'),
(24992, 'https://ror.org/05yfwg049', 'en', 1, 'https://ror.org/05yfwg049 College of African Wildlife Management'),
(24993, 'https://ror.org/05ygpsa84', 'en', 1, 'https://ror.org/05ygpsa84 North Downs Hospital'),
(24994, 'https://ror.org/05yh2rr37', 'en', 1, 'https://ror.org/05yh2rr37 Caribbean University Université Caraïbe'),
(24995, 'https://ror.org/05yh37w40', 'en', 1, 'https://ror.org/05yh37w40 Uganda Management Institute'),
(24996, 'https://ror.org/05yhgzh28', 'no_lang_code', 1, 'https://ror.org/05yhgzh28 Vaisala (Finland) ʋæiĢÆsƦlƦ'),
(24997, 'https://ror.org/05yj9kv10', 'de', 1, 'https://ror.org/05yj9kv10 Salus-Fachklinikum Uchtspringe Klinik für Allgemeine Psychiatrie und Psychotherapie'),
(24998, 'https://ror.org/05ymj3g35', 'en', 1, 'https://ror.org/05ymj3g35 Trowbridge Community Hospital'),
(24999, 'https://ror.org/05yprsb81', 'en', 1, 'https://ror.org/05yprsb81 The Chagrin Valley Astronomical Society'),
(25000, 'https://ror.org/05yq37p91', 'pt', 1, 'https://ror.org/05yq37p91 Centro UniversitƔrio do Leste de Minas Gerais'),
(25001, 'https://ror.org/0003nwf42', 'en', 1, 'https://ror.org/0003nwf42 Martha''s Vineyard Museum'),
(25002, 'https://ror.org/0005k2a75', 'id', 1, 'https://ror.org/0005k2a75 Universitas Suryadarma'),
(25003, 'https://ror.org/0008aac48', 'en', 1, 'https://ror.org/0008aac48 Confederated Tribes of Warm Springs'),
(25004, 'https://ror.org/0008bt423', 'en', 1, 'https://ror.org/0008bt423 University of Fiji'),
(25005, 'https://ror.org/0008taf66', 'en', 1, 'https://ror.org/0008taf66 Bushnell University'),
(25006, 'https://ror.org/000b7ms85', 'en', 1, 'https://ror.org/000b7ms85 Zhongkai University of Agriculture and Engineering ä»²ęŗå†œäøšå·„ēØ‹å­¦é™¢'),
(25007, 'https://ror.org/000cpw023', 'en', 1, 'https://ror.org/000cpw023 Philadelphia History Museum'),
(25008, 'https://ror.org/000etct68', 'en', 1, 'https://ror.org/000etct68 Muteesa I Royal University'),
(25009, 'https://ror.org/000hf9438', 'en', 1, 'https://ror.org/000hf9438 Monmouth Museum'),
(25010, 'https://ror.org/000hzy098', 'en', 1, 'https://ror.org/000hzy098 Saint Petersburg State Pediatric Medical University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГиатрический меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25011, 'https://ror.org/000jexb59', 'no_lang_code', 1, 'https://ror.org/000jexb59 Chemcomex (Czechia)'),
(25012, 'https://ror.org/000ks8283', 'id', 1, 'https://ror.org/000ks8283 Universitas Soerjo Ngawi'),
(25013, 'https://ror.org/000nj1063', 'en', 1, 'https://ror.org/000nj1063 Akademia Humanistyczna im. Aleksandra Gieysztora w Pułtusku Pułtusk Academy of Humanities'),
(25014, 'https://ror.org/000p7dd29', 'en', 1, 'https://ror.org/000p7dd29 Trade Co-operative University of Moldova Universitatea Cooperatist-Comerciala din Moldova'),
(25015, 'https://ror.org/000qred46', 'no_lang_code', 1, 'https://ror.org/000qred46 Zero Liquid Discharge (Czechia)'),
(25016, 'https://ror.org/000rak666', 'en', 1, 'https://ror.org/000rak666 Humak University of Applied Sciences Humanistinen ammattikorkeakoulu'),
(25017, 'https://ror.org/000rmbn42', 'en', 1, 'https://ror.org/000rmbn42 American Conservatory Theater'),
(25018, 'https://ror.org/000ta0r04', 'en', 1, 'https://ror.org/000ta0r04 Springdale Public Library'),
(25019, 'https://ror.org/000tee703', 'en', 1, 'https://ror.org/000tee703 Northeastern State University Деверный Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25020, 'https://ror.org/000vgrb22', 'en', 1, 'https://ror.org/000vgrb22 Pyongyang University of Science and Technology ķ‰ģ–‘ź³¼ķ•™źø°ģˆ ėŒ€ķ•™'),
(25021, 'https://ror.org/000vknf06', 'en', 1, 'https://ror.org/000vknf06 Państwowa Wyższa Szkoła Filmowa, Telewizyjna i Teatralna im. Leona Schillera ŁódÅŗ Film School'),
(25022, 'https://ror.org/000wbnn77', 'en', 1, 'https://ror.org/000wbnn77 Texarkana Regional Arts and Humanities Council'),
(25023, 'https://ror.org/000wr2p83', 'en', 1, 'https://ror.org/000wr2p83 Biblioteca Pública de Los Ángeles Bibliothèque publique de los angeles Los Angeles Public Library'),
(25024, 'https://ror.org/000z6yg06', 'no_lang_code', 1, 'https://ror.org/000z6yg06 Brano Group (Czechia)'),
(25025, 'https://ror.org/000zjjz42', 'en', 1, 'https://ror.org/000zjjz42 Russell Library'),
(25026, 'https://ror.org/000zprs97', 'en', 1, 'https://ror.org/000zprs97 Kaliningrad Law Institute Ministry of Internal Affairs of the Russian Federation ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“ŃŠŗŠøŠ¹ Филиал Данкт - ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Š³Š¾ Университета ŠœŠ’Š” России'),
(25027, 'https://ror.org/0014xm371', 'en', 1, 'https://ror.org/0014xm371 Foundation for Research on Information Technologies in Society'),
(25028, 'https://ror.org/00156qz84', 'no_lang_code', 1, 'https://ror.org/00156qz84 Al-Shahbaa University Ų¬Ų§Ł…Ų¹Ų© الؓهباؔ'),
(25029, 'https://ror.org/001575385', 'en', 1, 'https://ror.org/001575385 International Centre for Genetic Engineering and Biotechnology'),
(25030, 'https://ror.org/0015fn754', 'en', 1, 'https://ror.org/0015fn754 Corpus Christi Public Libraries'),
(25031, 'https://ror.org/0016yxd93', 'en', 1, 'https://ror.org/0016yxd93 Early Manuscripts Electronic Library'),
(25032, 'https://ror.org/00172cb16', 'en', 1, 'https://ror.org/00172cb16 Boston Athenaeum'),
(25033, 'https://ror.org/001889b65', 'en', 1, 'https://ror.org/001889b65 University of the Holy Quran and Islamic Sciences Ų¬Ų§Ł…Ų¹Ų© القرآن Ų§Ł„ŁƒŲ±ŁŠŁ… ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(25034, 'https://ror.org/0018jvy55', 'id', 1, 'https://ror.org/0018jvy55 Universitas Alkhairaat'),
(25035, 'https://ror.org/00194tb08', 'en', 1, 'https://ror.org/00194tb08 People''s University of Bangladesh ą¦¦ą§ą¦Æ পিপলস ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(25036, 'https://ror.org/0019bf448', 'en', 1, 'https://ror.org/0019bf448 University of Pittsburgh at Bradford'),
(25037, 'https://ror.org/0019h0z47', 'en', 1, 'https://ror.org/0019h0z47 AlAlamein International University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„Ł…ŁŠŁ†'),
(25038, 'https://ror.org/001ekgz09', 'no_lang_code', 1, 'https://ror.org/001ekgz09 Babu Banarasi Das University బాబు బనారసీ ą°¦ą°¾ą°øą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(25039, 'https://ror.org/001et4e78', 'en', 1, 'https://ror.org/001et4e78 Hiroshima City University åŗƒå³¶åø‚ē«‹å¤§å­¦'),
(25040, 'https://ror.org/001gw2c60', 'id', 1, 'https://ror.org/001gw2c60 Universitas Muhammadiyah Luwuk Banggai'),
(25041, 'https://ror.org/001hawd46', 'id', 1, 'https://ror.org/001hawd46 Universitas Al-washliyah Labuhanbatu'),
(25042, 'https://ror.org/001jzfx32', 'en', 1, 'https://ror.org/001jzfx32 Santa Barbara Trust for Historic Preservation'),
(25043, 'https://ror.org/001ksx577', 'en', 1, 'https://ror.org/001ksx577 Milligan College'),
(25044, 'https://ror.org/001nzxd62', 'en', 1, 'https://ror.org/001nzxd62 Nagoya Women''s University 名古屋儳子大学'),
(25045, 'https://ror.org/001r73k91', 'en', 1, 'https://ror.org/001r73k91 AMA Computer University Pamantasang Pangkompyuter ng AMA'),
(25046, 'https://ror.org/001rxva70', 'en', 1, 'https://ror.org/001rxva70 Recreation and Conservation Office'),
(25047, 'https://ror.org/001t9zn91', 'en', 1, 'https://ror.org/001t9zn91 South Dakota Department of Tourism'),
(25048, 'https://ror.org/001tgea40', 'cs', 1, 'https://ror.org/001tgea40 Muzeum Vysočiny Jihlava'),
(25049, 'https://ror.org/001tjgg88', 'en', 1, 'https://ror.org/001tjgg88 Save the Bay'),
(25050, 'https://ror.org/001vaag74', 'en', 1, 'https://ror.org/001vaag74 Poughkeepsie Public Library District'),
(25051, 'https://ror.org/001w4ps18', 'en', 1, 'https://ror.org/001w4ps18 Tula State Pedagogical University named after L.N. Tolstoy Тульский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š›. Š. Толстого'),
(25052, 'https://ror.org/001wjeh94', 'en', 1, 'https://ror.org/001wjeh94 Hokusho University åŒ—ēæ”å¤§å­¦'),
(25053, 'https://ror.org/001wq6b70', 'en', 1, 'https://ror.org/001wq6b70 Appalachian Mountain Club'),
(25054, 'https://ror.org/001x6y413', 'no_lang_code', 1, 'https://ror.org/001x6y413 Palamuru University పాలమూరు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(25055, 'https://ror.org/001y2wd07', 'en', 1, 'https://ror.org/001y2wd07 Lunghwa University of Science and Technology é¾čÆē§‘ęŠ€å¤§å­ø'),
(25056, 'https://ror.org/0020vtt98', 'en', 1, 'https://ror.org/0020vtt98 Ohr-O''Keefe Museum Of Art'),
(25057, 'https://ror.org/0022yfe36', 'en', 1, 'https://ror.org/0022yfe36 Lviv National Musical Academy named after Mykola Lysenko Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŃƒŠ·ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń імені М. Š’. Лисенка'),
(25058, 'https://ror.org/0024s9602', 'en', 1, 'https://ror.org/0024s9602 Vermont Public Radio'),
(25059, 'https://ror.org/0025x8m44', 'en', 1, 'https://ror.org/0025x8m44 SeaWorld Entertainment'),
(25060, 'https://ror.org/0029qfe93', 'en', 1, 'https://ror.org/0029qfe93 Society of Biblical Literature'),
(25061, 'https://ror.org/0029zp883', 'en', 1, 'https://ror.org/0029zp883 TrĘ°į»ng ĐẔi hį»c SĆ¢n khįŗ„u – Điện įŗ£nh ThĆ nh phố Hồ ChĆ­ Minh University of Theatre and Cinema Ho Chi Minh City'),
(25062, 'https://ror.org/002c8b395', 'en', 1, 'https://ror.org/002c8b395 Christian Bilingual University of Congo UniversitƩ ChrƩtienne Bilingue du Congo'),
(25063, 'https://ror.org/002dktj83', 'en', 1, 'https://ror.org/002dktj83 Meru University of Science and Technology'),
(25064, 'https://ror.org/002dnpc64', 'cs', 1, 'https://ror.org/002dnpc64 Muzeum a Galerie Orlických Hor'),
(25065, 'https://ror.org/002e3gt76', 'no_lang_code', 1, 'https://ror.org/002e3gt76 Compureg Plzen (Czechia)'),
(25066, 'https://ror.org/002ec3041', 'no_lang_code', 1, 'https://ror.org/002ec3041 Vodni Zdroje (Czechia)'),
(25067, 'https://ror.org/002f6by15', 'no_lang_code', 1, 'https://ror.org/002f6by15 Dicom (Czechia)'),
(25068, 'https://ror.org/002gjns90', 'en', 1, 'https://ror.org/002gjns90 Collaborative for Educational Services'),
(25069, 'https://ror.org/002grtm11', 'no_lang_code', 1, 'https://ror.org/002grtm11 Dakshina Bharat Hindi Prachar Sabha'),
(25070, 'https://ror.org/002h08g67', 'en', 1, 'https://ror.org/002h08g67 Las Vegas Convention and Visitors Authority'),
(25071, 'https://ror.org/002hbfc50', 'en', 1, 'https://ror.org/002hbfc50 Jilin Jianzhu University å‰ęž—å»ŗē­‘å¤§å­¦'),
(25072, 'https://ror.org/002jehj87', 'no_lang_code', 1, 'https://ror.org/002jehj87 Hussite Museum Tabor'),
(25073, 'https://ror.org/002jtmt62', 'en', 1, 'https://ror.org/002jtmt62 Business School Ostrava'),
(25074, 'https://ror.org/002m6kk35', 'no_lang_code', 1, 'https://ror.org/002m6kk35 Vanda Institute įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“ įžœįŸ‰įž¶įž“įŸ‹įžŠįž¶'),
(25075, 'https://ror.org/002qeva03', 'en', 1, 'https://ror.org/002qeva03 Bangkok University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(25076, 'https://ror.org/002qkam19', 'en', 1, 'https://ror.org/002qkam19 Izhevsk State Agricultural Academy Š˜Š¶ŠµŠ²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25077, 'https://ror.org/002rp1x36', 'no_lang_code', 1, 'https://ror.org/002rp1x36 Siemens (Czechia)'),
(25078, 'https://ror.org/002rphp73', 'id', 1, 'https://ror.org/002rphp73 Universitas Tri Dharma'),
(25079, 'https://ror.org/002s77n28', 'en', 1, 'https://ror.org/002s77n28 National University of Architecture and Construction of Armenia ÕƒÕ”Ö€ÕæÕ”Ö€Õ”ÕŗÕ„ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ և Õ·Õ«Õ¶Õ”Ö€Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(25080, 'https://ror.org/002t87n17', 'en', 1, 'https://ror.org/002t87n17 Hawaiian Islands Land Trust'),
(25081, 'https://ror.org/002x5gq86', 'en', 1, 'https://ror.org/002x5gq86 Turkmen Agricultural University Named after S.A. Niyazov Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. А. ŠŠøŃŠ·Š¾Š²Š°'),
(25082, 'https://ror.org/002xar614', 'en', 1, 'https://ror.org/002xar614 Takming University of Science and Technology å¾·ę˜Žč²”ē¶“ē§‘ęŠ€å¤§å­ø'),
(25083, 'https://ror.org/002xc5p11', 'en', 1, 'https://ror.org/002xc5p11 Dr. Babasaheb Ambedkar Open University ઔો. બાબાસાહેબ આંબેઔકર ąŖ“ąŖŖąŖØ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(25084, 'https://ror.org/002xnzp34', 'en', 1, 'https://ror.org/002xnzp34 Rostov State Transport University Ростовский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(25085, 'https://ror.org/002xvag29', 'en', 1, 'https://ror.org/002xvag29 Moscow Regional Institute of Management and Law Московский областной ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(25086, 'https://ror.org/002yd0837', 'en', 1, 'https://ror.org/002yd0837 New York State Office of Parks, Recreation and Historic Preservation'),
(25087, 'https://ror.org/002zjz985', 'en', 1, 'https://ror.org/002zjz985 Ural Institute of Economics, Management and Law Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(25088, 'https://ror.org/003042j23', 'en', 1, 'https://ror.org/003042j23 Gulf of Maine Association'),
(25089, 'https://ror.org/00331xs95', 'en', 1, 'https://ror.org/00331xs95 Howon University ķ˜øģ›ėŒ€ķ•™źµ'),
(25090, 'https://ror.org/0033b8372', 'en', 1, 'https://ror.org/0033b8372 Hallmark University'),
(25091, 'https://ror.org/0033gxm08', 'en', 1, 'https://ror.org/0033gxm08 Mahambet Otemiusly West Kazakhstan University ŠœŠ°Ń…Š°Š¼Š±ŠµŃ‚ Өтемісов атынГағы Батыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ ŠœŠµŠ¼Š»ŠµŠŗŠµŃ‚Ń‚Ń–Šŗ Университеті'),
(25092, 'https://ror.org/0033tjv05', 'en', 1, 'https://ror.org/0033tjv05 Freeport Art Museum'),
(25093, 'https://ror.org/0033vjp52', 'en', 1, 'https://ror.org/0033vjp52 Museum of the Cherokee Indian'),
(25094, 'https://ror.org/0034wme67', 'id', 1, 'https://ror.org/0034wme67 Universitas Muhammadiyah Bengkulu'),
(25095, 'https://ror.org/0035dw758', 'en', 1, 'https://ror.org/0035dw758 Rustavi Academy of Higher Education'),
(25096, 'https://ror.org/0036qse20', 'no_lang_code', 1, 'https://ror.org/0036qse20 Ohkagakuen University ę”œčŠ±å­¦åœ’å¤§å­¦'),
(25097, 'https://ror.org/00379n634', 'en', 1, 'https://ror.org/00379n634 Kyrgyz State University of Construction, Transport and Architecture named after N. Isanov ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š°, транспорта Šø Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ им.Š.Исанова Š.Исанов атынГагы ŠšŃ‹Ń€Š³Ń‹Š· мамлекеттик ŠŗŃƒŃ€ŃƒŠ»ŃƒŃˆ, транспорт жана Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š° ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(25098, 'https://ror.org/0037an472', 'en', 1, 'https://ror.org/0037an472 Kyoto Bunkyo University äŗ¬éƒ½ę–‡ę•™å¤§å­¦'),
(25099, 'https://ror.org/0037nyg09', 'en', 1, 'https://ror.org/0037nyg09 UNIVERSITAS MUHAMMADIYAH MATARAM University of Muhammadiyah Mataram'),
(25100, 'https://ror.org/0038d9d86', 'en', 1, 'https://ror.org/0038d9d86 Kentucky Historical Society'),
(25101, 'https://ror.org/003ag3w45', 'en', 1, 'https://ror.org/003ag3w45 Saint Andrew First-Called Georgian University of the Patriarchate of Georgia įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒžįƒįƒ¢įƒ įƒ˜įƒįƒ įƒ„įƒįƒ” įƒ¬įƒ›įƒ˜įƒ“įƒ įƒįƒœįƒ“įƒ įƒ˜įƒ įƒžįƒ˜įƒ įƒ•įƒ”įƒšįƒ¬įƒįƒ“įƒ”įƒ‘įƒ£įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(25102, 'https://ror.org/003aj1676', 'en', 1, 'https://ror.org/003aj1676 Volgograd Academy of the Russian Internal Affairs Ministry Š’Š¾Š»Š³Š¾Š³Ń€Š°Š“ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(25103, 'https://ror.org/003ajks37', 'en', 1, 'https://ror.org/003ajks37 Bessemer Historical Society'),
(25104, 'https://ror.org/003e2cn37', 'en', 1, 'https://ror.org/003e2cn37 Chinese Historical Society of America'),
(25105, 'https://ror.org/003gx4r22', 'en', 1, 'https://ror.org/003gx4r22 University of Georgia Press'),
(25106, 'https://ror.org/003h4kj85', 'en', 1, 'https://ror.org/003h4kj85 Rajamangala University of Technology Rattanakosin ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø£ąø±ąø•ąø™ą¹‚ąøąøŖąø“ąø™ąø—ąø£ą¹Œ'),
(25107, 'https://ror.org/003jq9j58', 'pl', 1, 'https://ror.org/003jq9j58 Papieski Wydział Teologiczny we Wrocławiu'),
(25108, 'https://ror.org/003js3p07', 'en', 1, 'https://ror.org/003js3p07 University of Valley Forge'),
(25109, 'https://ror.org/003ktzf45', 'id', 1, 'https://ror.org/003ktzf45 Universitas Respati Yogyakarta'),
(25110, 'https://ror.org/003nhtz06', 'en', 1, 'https://ror.org/003nhtz06 Pekin Public Library'),
(25111, 'https://ror.org/003pkj597', 'en', 1, 'https://ror.org/003pkj597 State Historical Society of North Dakota'),
(25112, 'https://ror.org/003rage82', 'en', 1, 'https://ror.org/003rage82 National-Louis University'),
(25113, 'https://ror.org/003rjf961', 'en', 1, 'https://ror.org/003rjf961 WGBH Educational Foundation'),
(25114, 'https://ror.org/003sxhp42', 'en', 1, 'https://ror.org/003sxhp42 Higher Institute of Management Š’Ń‹ŃŃˆŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(25115, 'https://ror.org/003w6kb85', 'no_lang_code', 1, 'https://ror.org/003w6kb85 Shikoku Gakuin University 四国学院大学'),
(25116, 'https://ror.org/003wx9n05', 'en', 1, 'https://ror.org/003wx9n05 Stony Brook School'),
(25117, 'https://ror.org/003y2vw22', 'en', 1, 'https://ror.org/003y2vw22 Worcester Art Museum'),
(25118, 'https://ror.org/00402nc75', 'en', 1, 'https://ror.org/00402nc75 Pennsylvania Historical and Museum Commission'),
(25119, 'https://ror.org/00409ce90', 'en', 1, 'https://ror.org/00409ce90 Ethiopian Civil Service University į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆ²į‰Ŗįˆ įˆ°įˆ­į‰Ŗįˆµ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(25120, 'https://ror.org/004140w27', 'en', 1, 'https://ror.org/004140w27 Park City Museum'),
(25121, 'https://ror.org/0045h2h15', 'en', 1, 'https://ror.org/0045h2h15 Southern Ute Museum'),
(25122, 'https://ror.org/004684q56', 'en', 1, 'https://ror.org/004684q56 Takamatsu University é«˜ę¾å¤§å­¦'),
(25123, 'https://ror.org/00473rv55', 'en', 1, 'https://ror.org/00473rv55 Pamantasan ng Makati University of Makati'),
(25124, 'https://ror.org/0047xfd47', 'en', 1, 'https://ror.org/0047xfd47 National Kaohsiung University of Hospitality and Tourism åœ‹ē«‹é«˜é›„é¤ę—…å¤§å­ø'),
(25125, 'https://ror.org/004cg6a95', 'pl', 1, 'https://ror.org/004cg6a95 Wyższa Szkoła Ekonomii, Prawa i Nauk Medycznych im. prof. Edwarda Lipińskiego'),
(25126, 'https://ror.org/004drcv69', 'id', 1, 'https://ror.org/004drcv69 Universitas Iskandar Muda'),
(25127, 'https://ror.org/004eeze55', 'en', 1, 'https://ror.org/004eeze55 Hainan Medical University ęµ·å—åŒ»å­¦é™¢'),
(25128, 'https://ror.org/004emtb57', 'en', 1, 'https://ror.org/004emtb57 Phetchabun Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøŽą¹€ąøžąøŠąø£ąøšąø¹ąø£ąø“ą¹Œ'),
(25129, 'https://ror.org/004fm2e78', 'no_lang_code', 1, 'https://ror.org/004fm2e78 Gascontrol (Czechia)'),
(25130, 'https://ror.org/004h6zh49', 'en', 1, 'https://ror.org/004h6zh49 Samuel S. Fleisher Art Memorial'),
(25131, 'https://ror.org/004hnyk37', 'en', 1, 'https://ror.org/004hnyk37 Rangamati Science and Technology University ą¦°ą¦¾ą¦™ą§ą¦—ą¦¾ą¦®ą¦¾ą¦Ÿą¦æ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(25132, 'https://ror.org/004j0wk96', 'en', 1, 'https://ror.org/004j0wk96 Princeton Theological Seminary'),
(25133, 'https://ror.org/004j2ry26', 'en', 1, 'https://ror.org/004j2ry26 Women''s Studio Workshop'),
(25134, 'https://ror.org/004mb3588', 'no_lang_code', 1, 'https://ror.org/004mb3588 TL Ultralight (Czechia)'),
(25135, 'https://ror.org/004n8kf32', 'en', 1, 'https://ror.org/004n8kf32 Idaho Governors Office of Species Conservation'),
(25136, 'https://ror.org/004qjck53', 'en', 1, 'https://ror.org/004qjck53 University of Science and Technology Omdurman Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ų§Ł†Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł†ŁŠŲ©'),
(25137, 'https://ror.org/004rj5351', 'en', 1, 'https://ror.org/004rj5351 Herndon Home Museum'),
(25138, 'https://ror.org/004s6ct47', 'en', 1, 'https://ror.org/004s6ct47 Orenburg State Agrarian University ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25139, 'https://ror.org/004th3s59', 'en', 1, 'https://ror.org/004th3s59 International Budo University å›½éš›ę­¦é“å¤§å­¦'),
(25140, 'https://ror.org/004tqq928', 'en', 1, 'https://ror.org/004tqq928 Haverford Township Free Library'),
(25141, 'https://ror.org/004wnty12', 'en', 1, 'https://ror.org/004wnty12 Open University of Kaohsiung é«˜é›„åø‚ē«‹ē©ŗäø­å¤§å­ø'),
(25142, 'https://ror.org/004yhfd32', 'en', 1, 'https://ror.org/004yhfd32 Museum of Innovation and Science'),
(25143, 'https://ror.org/004z40955', 'no_lang_code', 1, 'https://ror.org/004z40955 Alfa Union (Czechia)'),
(25144, 'https://ror.org/004ze6w33', 'en', 1, 'https://ror.org/004ze6w33 Chechen State University Чеченский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25145, 'https://ror.org/005059r08', 'no_lang_code', 1, 'https://ror.org/005059r08 Naberezhnye Chelny State Pedagogical Institute ŠŠ°Š±ŠµŃ€ŠµŠ¶Š½Š¾Ń‡ŠµŠ»Š½ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25146, 'https://ror.org/0051kz410', 'en', 1, 'https://ror.org/0051kz410 Tokiwa University 常磐大学'),
(25147, 'https://ror.org/0051sgx15', 'en', 1, 'https://ror.org/0051sgx15 University of Bagamoyo'),
(25148, 'https://ror.org/0053ash76', 'no_lang_code', 1, 'https://ror.org/0053ash76 Aero (Czechia)'),
(25149, 'https://ror.org/0054vex45', 'en', 1, 'https://ror.org/0054vex45 Victoria University of Bangladesh ą¦­ą¦æą¦•ą§ą¦Ÿą§‹ą¦°ą¦æą¦Æą¦¼ą¦¾ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(25150, 'https://ror.org/00567j574', 'id', 1, 'https://ror.org/00567j574 Universitas Malahayati'),
(25151, 'https://ror.org/0056fa628', 'en', 1, 'https://ror.org/0056fa628 Monad University'),
(25152, 'https://ror.org/0056jkv70', 'en', 1, 'https://ror.org/0056jkv70 Dr. Rajendra Prasad Central Agriculture University ą¤”ą„‰. ą¤°ą¤¾ą¤œą„‡ą¤‚ą¤¦ą„ą¤° ą¤Ŗą„ą¤°ą¤øą¤¾ą¤¦ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25153, 'https://ror.org/00571jt67', 'en', 1, 'https://ror.org/00571jt67 St. Francis College'),
(25154, 'https://ror.org/0057j2q22', 'en', 1, 'https://ror.org/0057j2q22 Pennsylvania Fish and Boat Commission'),
(25155, 'https://ror.org/0058h2h62', 'en', 1, 'https://ror.org/0058h2h62 Museum of History & Industry'),
(25156, 'https://ror.org/0058jyq07', 'en', 1, 'https://ror.org/0058jyq07 Holy Trinity University'),
(25157, 'https://ror.org/0058n8150', 'no_lang_code', 1, 'https://ror.org/0058n8150 Lasak (Czechia)'),
(25158, 'https://ror.org/0058xhs49', 'en', 1, 'https://ror.org/0058xhs49 Constantin BrĆ¢ncuși University of Targu Jiu'),
(25159, 'https://ror.org/005adyv40', 'no_lang_code', 1, 'https://ror.org/005adyv40 Coming Plus (Czechia)'),
(25160, 'https://ror.org/005b14v72', 'es', 1, 'https://ror.org/005b14v72 Universidad Interglobal'),
(25161, 'https://ror.org/005bjd415', 'en', 1, 'https://ror.org/005bjd415 Sultan Idris Education University Universiti Pendidikan Sultan Idris ą®ŖąÆ†ą®£ąÆą®Ÿą®æą®Ÿą®æą®•ąÆą®•ą®¾ą®©ąÆ ą®šąÆą®²ąÆą®¤ą®¾ą®©ąÆ ą®‡ą®¤ąÆą®°ąÆ€ą®šąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(25162, 'https://ror.org/005d8s603', 'en', 1, 'https://ror.org/005d8s603 University of Finance and Economics Данхүү ЭГийн Засгийн Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(25163, 'https://ror.org/005da4z68', 'en', 1, 'https://ror.org/005da4z68 Mykolaiv V.O. Sukhomlynskyi National University ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’.Šž. Š”ŃƒŃ…Š¾Š¼Š»ŠøŠ½ŃŃŒŠŗŠ¾Š³Š¾'),
(25164, 'https://ror.org/005e2k071', 'en', 1, 'https://ror.org/005e2k071 Burao University Jaamacada Burco'),
(25165, 'https://ror.org/005fbjb88', 'en', 1, 'https://ror.org/005fbjb88 San Diego Unified Port District'),
(25166, 'https://ror.org/005gjt698', 'en', 1, 'https://ror.org/005gjt698 University Geomedi įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ įƒ’įƒ”įƒįƒ›įƒ”įƒ“įƒ˜'),
(25167, 'https://ror.org/005j4qv80', 'no_lang_code', 1, 'https://ror.org/005j4qv80 Xinjiang Petroleum Society äø­å›½ēŸ³ę²¹å­¦ä¼š'),
(25168, 'https://ror.org/005k0q572', 'en', 1, 'https://ror.org/005k0q572 Tajik State University of Law Business and Politics Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Давлатии Ņ²ŃƒŅ›ŃƒŅ›, Бизнес, ва Диёсати Тоҷикистон'),
(25169, 'https://ror.org/005kyzk28', 'en', 1, 'https://ror.org/005kyzk28 Kurt Weill Foundation for Music'),
(25170, 'https://ror.org/005mtxn43', 'en', 1, 'https://ror.org/005mtxn43 Tunica Museum'),
(25171, 'https://ror.org/005nxh826', 'en', 1, 'https://ror.org/005nxh826 Samuel Adegboyega University'),
(25172, 'https://ror.org/005q8d646', 'en', 1, 'https://ror.org/005q8d646 European Faculty of Law Evropska pravna fakulteta'),
(25173, 'https://ror.org/005qaye06', 'en', 1, 'https://ror.org/005qaye06 Beaux-arts de pennsylvanie Pennsylvania Academy of the Fine Arts'),
(25174, 'https://ror.org/005qr1k22', 'no_lang_code', 1, 'https://ror.org/005qr1k22 Bhaktivedanta College Bhaktivedanta HittudomĆ”nyi Főiskola'),
(25175, 'https://ror.org/005qzg609', 'en', 1, 'https://ror.org/005qzg609 University of Arkansas Community College at Batesville'),
(25176, 'https://ror.org/005vjg312', 'en', 1, 'https://ror.org/005vjg312 University of Ecology and Management in Warsaw Wyższa Szkoła Ekologii i Zarządzania w Warszawie'),
(25177, 'https://ror.org/005y2a635', 'en', 1, 'https://ror.org/005y2a635 Earth Island Institute'),
(25178, 'https://ror.org/005z3e143', 'id', 1, 'https://ror.org/005z3e143 Universitas Abulyatama'),
(25179, 'https://ror.org/005zjex51', 'en', 1, 'https://ror.org/005zjex51 Saint-Petersburg State University of Technology and Design'),
(25180, 'https://ror.org/00602gv86', 'en', 1, 'https://ror.org/00602gv86 Akademia Polonijna Polonia University'),
(25181, 'https://ror.org/0060bz664', 'en', 1, 'https://ror.org/0060bz664 Mississippi Department of Archives and History'),
(25182, 'https://ror.org/0062skg93', 'en', 1, 'https://ror.org/0062skg93 University of South Florida Sarasota–Manatee'),
(25183, 'https://ror.org/00648rz05', 'en', 1, 'https://ror.org/00648rz05 W. H. Over Museum'),
(25184, 'https://ror.org/0064m4x84', 'en', 1, 'https://ror.org/0064m4x84 Colorado Heights University'),
(25185, 'https://ror.org/00656df32', 'en', 1, 'https://ror.org/00656df32 National Society of The Colonial Dames of America'),
(25186, 'https://ror.org/0065qv150', 'en', 1, 'https://ror.org/0065qv150 Ludwik Solski Academy for the Dramatic Arts Państwowa Wyższa Szkoła Teatralna im. Ludwika Solskiego w Krakowie'),
(25187, 'https://ror.org/0067y8s97', 'en', 1, 'https://ror.org/0067y8s97 Texas Marine Mammal Stranding Network'),
(25188, 'https://ror.org/0069psd02', 'en', 1, 'https://ror.org/0069psd02 European School of Law and Administration Europejska Wyższa Szkoła Prawa i Administracji'),
(25189, 'https://ror.org/006a84f66', 'en', 1, 'https://ror.org/006a84f66 Humane Society of the United States'),
(25190, 'https://ror.org/006c2dp67', 'en', 1, 'https://ror.org/006c2dp67 Kwassui Women''s University 擻氓儳子大学'),
(25191, 'https://ror.org/006cjk069', 'en', 1, 'https://ror.org/006cjk069 Krishna Kanta Handiqui State Open University ą¦•ą§ƒą¦·ą§ą¦£ą¦•ą¦¾ą¦Øą§ą¦¤ ą¦øą¦Øą§ą¦¦ą¦æą¦•ą§ˆ ą¦°ą¦¾ą¦œą§ą¦Æą¦æą¦• ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(25192, 'https://ror.org/006eggh59', 'cs', 1, 'https://ror.org/006eggh59 JihomoravskĆ© muzeum ve Znojmě, South Moravian Museum in Znojmo'),
(25193, 'https://ror.org/006fs1j92', 'en', 1, 'https://ror.org/006fs1j92 Gangwon Provincial University'),
(25194, 'https://ror.org/006gp7f65', 'no_lang_code', 1, 'https://ror.org/006gp7f65 Baekseok Arts University ė°±ģ„ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(25195, 'https://ror.org/006hvb134', 'en', 1, 'https://ror.org/006hvb134 Idaho State Historical Society'),
(25196, 'https://ror.org/006ks2460', 'en', 1, 'https://ror.org/006ks2460 Juraj Dobrila University of Pula SveučiliÅ”te Jurja Dobrile u Puli Универзитет ŠˆŃƒŃ€Š°Ń˜Š° Добриле у Пули'),
(25197, 'https://ror.org/006pnw132', 'en', 1, 'https://ror.org/006pnw132 Le Iunivesite Aoao o Samoa National University of Samoa'),
(25198, 'https://ror.org/006qbbs65', 'en', 1, 'https://ror.org/006qbbs65 Dallas Historical Society'),
(25199, 'https://ror.org/006r53q22', 'en', 1, 'https://ror.org/006r53q22 Tom Lea Institute'),
(25200, 'https://ror.org/006rbkq36', 'no_lang_code', 1, 'https://ror.org/006rbkq36 T-MAPY (Czechia)');
INSERT INTO `rors` VALUES
(25201, 'https://ror.org/006sv2266', 'en', 1, 'https://ror.org/006sv2266 Classic Private University ŠšŠ»Š°ŃŠøŃ‡Š½ŠøŠ¹ приватний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25202, 'https://ror.org/006sy0h18', 'no_lang_code', 1, 'https://ror.org/006sy0h18 Unit Plus (Czechia)'),
(25203, 'https://ror.org/006tnfe02', 'en', 1, 'https://ror.org/006tnfe02 National Taichung University of Education åœ‹ē«‹č‡ŗäø­ę•™č‚²å¤§å­ø'),
(25204, 'https://ror.org/006v7bf86', 'en', 1, 'https://ror.org/006v7bf86 Harvard University Press'),
(25205, 'https://ror.org/006wqrx41', 'en', 1, 'https://ror.org/006wqrx41 Korea National University of Cultural Heritage ķ•œźµ­ģ „ķ†µė¬øķ™”ėŒ€ķ•™źµ'),
(25206, 'https://ror.org/00711xr15', 'en', 1, 'https://ror.org/00711xr15 Tallahassee Museum'),
(25207, 'https://ror.org/0071art98', 'no_lang_code', 1, 'https://ror.org/0071art98 Angkor University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž„įŸ’įž‚įžš'),
(25208, 'https://ror.org/0072em063', 'en', 1, 'https://ror.org/0072em063 World Music Productions'),
(25209, 'https://ror.org/007528s45', 'no_lang_code', 1, 'https://ror.org/007528s45 CKD Elektrotechnika (Czechia)'),
(25210, 'https://ror.org/0075h8406', 'no_lang_code', 1, 'https://ror.org/0075h8406 Ghazni University دانؓگاه ŲŗŲ²Ł†ŪŒ'),
(25211, 'https://ror.org/0077sy889', 'en', 1, 'https://ror.org/0077sy889 School of Economics and Management of Public Administration in Bratislava VysokÔ Ŕkola ekonómie a manažmentu verejnej sprÔvy v Bratislave'),
(25212, 'https://ror.org/00791c793', 'id', 1, 'https://ror.org/00791c793 Universitas Persada Indonesia Yayasan Administrasi Indonesia'),
(25213, 'https://ror.org/007a2j788', 'en', 1, 'https://ror.org/007a2j788 Smolensk State Agricultural Academy Š”Š¼Š¾Š»ŠµŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25214, 'https://ror.org/007avbc90', 'en', 1, 'https://ror.org/007avbc90 Kansai University of Social Welfare é–¢č„æē¦ē„‰å¤§å­¦'),
(25215, 'https://ror.org/007dt0y58', 'en', 1, 'https://ror.org/007dt0y58 Pacific Marine Mammal Center'),
(25216, 'https://ror.org/007fy8586', 'en', 1, 'https://ror.org/007fy8586 Houghton Lake Public Library'),
(25217, 'https://ror.org/007hp0t61', 'en', 1, 'https://ror.org/007hp0t61 Muhammadiyah University of North Maluku Universitas Muhammadiyah Maluku Utara'),
(25218, 'https://ror.org/007jmf435', 'en', 1, 'https://ror.org/007jmf435 Ecology Action'),
(25219, 'https://ror.org/007mjrc64', 'cs', 1, 'https://ror.org/007mjrc64 GerontologickƩ Centrum'),
(25220, 'https://ror.org/007qxz427', 'en', 1, 'https://ror.org/007qxz427 Tamil Nadu Teachers Education University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®†ą®šą®æą®°ą®æą®Æą®°ąÆ ą®•ą®²ąÆą®µą®æą®Æą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(25221, 'https://ror.org/007s0q763', 'no_lang_code', 1, 'https://ror.org/007s0q763 ERA (Czechia)'),
(25222, 'https://ror.org/007s7qx27', 'en', 1, 'https://ror.org/007s7qx27 Gyeongin National University of Education ź²½ģøźµģœ”ėŒ€ķ•™źµ'),
(25223, 'https://ror.org/007sfrj26', 'en', 1, 'https://ror.org/007sfrj26 Tver State Technical University Тверской Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25224, 'https://ror.org/007vwze84', 'en', 1, 'https://ror.org/007vwze84 Saint Petersburg State University of Cinema and Television Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кино Šø Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ'),
(25225, 'https://ror.org/007w4fd36', 'en', 1, 'https://ror.org/007w4fd36 Japan Center for Michigan Universities ćƒŸć‚·ć‚¬ćƒ³å·žē«‹å¤§å­¦é€£åˆę—„ęœ¬ć‚»ćƒ³ć‚æćƒ¼'),
(25226, 'https://ror.org/007y61a09', 'en', 1, 'https://ror.org/007y61a09 Carbon County Museum'),
(25227, 'https://ror.org/0080c1a18', 'en', 1, 'https://ror.org/0080c1a18 Azerbaijan State University of Culture and Arts Azərbaycan Dƶvlət Mədəniyyət və İncəsənət Universiteti АзербайГжанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(25228, 'https://ror.org/0085esk58', 'id', 1, 'https://ror.org/0085esk58 Universitas Kutai Kartanegara'),
(25229, 'https://ror.org/0085wxm22', 'no_lang_code', 1, 'https://ror.org/0085wxm22 Seijoh University ę˜ŸåŸŽå¤§å­¦'),
(25230, 'https://ror.org/008642w33', 'en', 1, 'https://ror.org/008642w33 Plains Art Museum'),
(25231, 'https://ror.org/00869mm41', 'en', 1, 'https://ror.org/00869mm41 Rochester Historical Society'),
(25232, 'https://ror.org/008754496', 'no_lang_code', 1, 'https://ror.org/008754496 Ryutsu Keizai University ęµé€šēµŒęøˆå¤§å­¦'),
(25233, 'https://ror.org/008836v19', 'pt', 1, 'https://ror.org/008836v19 Universidade Sénior Contemporânea'),
(25234, 'https://ror.org/0089fq749', 'en', 1, 'https://ror.org/0089fq749 Baddi University of Emerging Sciences and Technologies ą¤¬ą¤¦ą„ą¤¦ą„€ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤®ą„‡ą¤°ą„ą¤—ą¤æą¤‚ą¤— ą¤øą¤¾ą¤‡ą¤‚ą¤øą„‡ą¤ø और ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(25235, 'https://ror.org/008a62c70', 'en', 1, 'https://ror.org/008a62c70 Pacific Shellfish Institute'),
(25236, 'https://ror.org/008bb2h75', 'no_lang_code', 1, 'https://ror.org/008bb2h75 Musashino Academia Musicae ę­¦č”µé‡ŽéŸ³ę„½å¤§å­¦'),
(25237, 'https://ror.org/008bbzm95', 'en', 1, 'https://ror.org/008bbzm95 Korea Nazarene University ė‚˜ģ‚¬ė ›ėŒ€ķ•™źµ'),
(25238, 'https://ror.org/008cmk776', 'id', 1, 'https://ror.org/008cmk776 Universitas Islam Attahiriyah'),
(25239, 'https://ror.org/008dh2426', 'en', 1, 'https://ror.org/008dh2426 National University of Modern Languages Ł‚ŁˆŁ…ŪŒ جامعہ ŲØŲ±Ų§Ų¦Ū’ جدید Ł„Ų³Ų§Ł†ŪŒŲ§ŲŖ'),
(25240, 'https://ror.org/008hty861', 'en', 1, 'https://ror.org/008hty861 Cincinnati Art Museum'),
(25241, 'https://ror.org/008jssb69', 'en', 1, 'https://ror.org/008jssb69 University of Computer Studies Mandalay'),
(25242, 'https://ror.org/008mz8m34', 'en', 1, 'https://ror.org/008mz8m34 Jagadguru Rambhadracharya Handicapped University ą¤œą¤—ą¤¦ą„ą¤—ą„ą¤°ą„ ą¤°ą¤¾ą¤®ą¤­ą¤¦ą„ą¤°ą¤¾ą¤šą¤¾ą¤°ą„ą¤Æ विकलांग ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ąŖœąŖ—ąŖ¦ą«ąŖ—ą«ąŖ°ą« ąŖ°ąŖ¾ąŖ®ąŖ­ąŖ¦ą«ąŖ°ąŖ¾ąŖšąŖ¾ąŖ°ą«ąŖÆ વિકલાંગ ąŖµąŖæąŖ¶ą«ąŖµąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖ²ąŖÆ'),
(25243, 'https://ror.org/008nk3d11', 'en', 1, 'https://ror.org/008nk3d11 Zetech University'),
(25244, 'https://ror.org/008p8p838', 'en', 1, 'https://ror.org/008p8p838 Ontario County Historical Society'),
(25245, 'https://ror.org/008phw744', 'en', 1, 'https://ror.org/008phw744 Canal Corridor Association'),
(25246, 'https://ror.org/008pxsf13', 'en', 1, 'https://ror.org/008pxsf13 Yangon Technological University į€›į€”į€ŗį€€į€Æį€”į€ŗį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(25247, 'https://ror.org/008q9az43', 'en', 1, 'https://ror.org/008q9az43 Western Heritage Center'),
(25248, 'https://ror.org/008vs4b49', 'en', 1, 'https://ror.org/008vs4b49 Maymont Foundation'),
(25249, 'https://ror.org/008wejk32', 'en', 1, 'https://ror.org/008wejk32 Trauma Hospital of Brno ÚrazovÔ nemocnice'),
(25250, 'https://ror.org/008wkze26', 'en', 1, 'https://ror.org/008wkze26 Phitsanulok University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø“ąø©ąø“ąøøą¹‚ąø„ąø'),
(25251, 'https://ror.org/008xj1y67', 'en', 1, 'https://ror.org/008xj1y67 National Technical Training Institute įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‡įž¶įžįž·įž”įžŽįŸ’įžįž»įŸ‡įž”įžŽįŸ’įžįž¶įž›įž”įž…įŸ’įž…įŸįž€įž‘įŸįžŸ'),
(25252, 'https://ror.org/0090dta57', 'id', 1, 'https://ror.org/0090dta57 Universitas Islam Nusantara'),
(25253, 'https://ror.org/0090r4223', 'en', 1, 'https://ror.org/0090r4223 St. John International University'),
(25254, 'https://ror.org/0091wgk69', 'en', 1, 'https://ror.org/0091wgk69 Khabarovsk State Institute of Arts and Culture Єабаровский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25255, 'https://ror.org/0092t1z08', 'en', 1, 'https://ror.org/0092t1z08 The Future University Ų¬Ų§Ł…Ų¹Ų© المستقبل'),
(25256, 'https://ror.org/009323b35', 'id', 1, 'https://ror.org/009323b35 Universitas Sultan Fatah'),
(25257, 'https://ror.org/009565791', 'en', 1, 'https://ror.org/009565791 Orca Network'),
(25258, 'https://ror.org/0095v1k44', 'en', 1, 'https://ror.org/0095v1k44 Chelyabinsk State Agroengineering Academy Южно-Š£Ń€Š°ĢŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ агра́рный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚'),
(25259, 'https://ror.org/0095xcq10', 'en', 1, 'https://ror.org/0095xcq10 University of Management and Technology ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŁ†Ų¬Ł…Ł†Ł¹ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(25260, 'https://ror.org/0097e1k27', 'en', 1, 'https://ror.org/0097e1k27 Wright-Patterson Air Force Base'),
(25261, 'https://ror.org/0097mbe50', 'en', 1, 'https://ror.org/0097mbe50 Kharkiv National University of Construction and Architecture Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° й Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(25262, 'https://ror.org/009bn4527', 'en', 1, 'https://ror.org/009bn4527 Moscow International Higher Business School ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š²Ń‹ŃŃˆŠ°Ń школа бизнеса'),
(25263, 'https://ror.org/009c3s802', 'en', 1, 'https://ror.org/009c3s802 Martin Luther Christian University'),
(25264, 'https://ror.org/009e66y24', 'en', 1, 'https://ror.org/009e66y24 Urals Institute of Management Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(25265, 'https://ror.org/009f6yv14', 'en', 1, 'https://ror.org/009f6yv14 Kansai University of Nursing and Health Sciences é–¢č„æēœ‹č­·åŒ»ē™‚å¤§å­¦'),
(25266, 'https://ror.org/009fpea76', 'en', 1, 'https://ror.org/009fpea76 Katonah Museum of Art'),
(25267, 'https://ror.org/009jm4h46', 'en', 1, 'https://ror.org/009jm4h46 Sara Hightower Regional Library System'),
(25268, 'https://ror.org/009jymh91', 'en', 1, 'https://ror.org/009jymh91 Dallas Heritage Village'),
(25269, 'https://ror.org/009kcw598', 'en', 1, 'https://ror.org/009kcw598 Jatiya Kabi Kazi Nazrul Islam University ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ কবি ą¦•ą¦¾ą¦œą§€ নজরুল ইসলাম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(25270, 'https://ror.org/009m17x95', 'en', 1, 'https://ror.org/009m17x95 Kyrgyz Economic University ŠšŃ‹Ń€Š³Ń‹Š· Экономика ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø М. Š Ń‹ŃŠŗŃƒŠ»Š±ŠµŠŗŠ¾Š² ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. М. Š Ń‹ŃŠŗŃƒŠ»Š±ŠµŠŗŠ¾Š²Š°'),
(25271, 'https://ror.org/009mf3820', 'en', 1, 'https://ror.org/009mf3820 Artsakh State University Арцахский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ԱրցՔխի ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶Õ« Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ ÕæÕ„Õ²Õ„ÕÆÕ”Õ£Õ«Ö€'),
(25272, 'https://ror.org/009mysd22', 'no_lang_code', 1, 'https://ror.org/009mysd22 Otemon Gakuin University 追手門学院大学'),
(25273, 'https://ror.org/009ramd78', 'en', 1, 'https://ror.org/009ramd78 Pacific Adventist University'),
(25274, 'https://ror.org/009ryyp22', 'en', 1, 'https://ror.org/009ryyp22 Auburn City Schools'),
(25275, 'https://ror.org/009st3569', 'en', 1, 'https://ror.org/009st3569 Tel Hai Academic College המכללה ×”××§×“×ž×™×Ŗ תל-חי'),
(25276, 'https://ror.org/009sv4j63', 'en', 1, 'https://ror.org/009sv4j63 La Consolacion University Philippines Pamantasang La Consolacion sa Pilipinas'),
(25277, 'https://ror.org/009tdqt52', 'en', 1, 'https://ror.org/009tdqt52 National Maritime Museum of the Gulf of Mexico'),
(25278, 'https://ror.org/009ty3557', 'no_lang_code', 1, 'https://ror.org/009ty3557 Stavexis (Czechia)'),
(25279, 'https://ror.org/009w67677', 'no_lang_code', 1, 'https://ror.org/009w67677 Cross ZlĆ­n (Czechia)'),
(25280, 'https://ror.org/009wgvk87', 'en', 1, 'https://ror.org/009wgvk87 Centre for Higher Education Studies'),
(25281, 'https://ror.org/009yjbg58', 'en', 1, 'https://ror.org/009yjbg58 Notre Dame of Dadiangas University'),
(25282, 'https://ror.org/009yykm50', 'en', 1, 'https://ror.org/009yykm50 Palm Springs Art Museum'),
(25283, 'https://ror.org/009z6a066', 'en', 1, 'https://ror.org/009z6a066 California State Coastal Conservancy'),
(25284, 'https://ror.org/00a08ze66', 'en', 1, 'https://ror.org/00a08ze66 Laurel University'),
(25285, 'https://ror.org/00a2bsk55', 'en', 1, 'https://ror.org/00a2bsk55 Jewish Historical Society of Greater Washington'),
(25286, 'https://ror.org/00a686c80', 'en', 1, 'https://ror.org/00a686c80 Maranatha Baptist University'),
(25287, 'https://ror.org/00a6ctc34', 'en', 1, 'https://ror.org/00a6ctc34 EIILM University ई.आइ.आइ.ą¤ą¤².ą¤ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25288, 'https://ror.org/00a6ywr91', 'en', 1, 'https://ror.org/00a6ywr91 Szkoła Główna Turystyki i Hotelarstwa Vistula Vistula School of Hospitality'),
(25289, 'https://ror.org/00a7f9203', 'no_lang_code', 1, 'https://ror.org/00a7f9203 KRD (Czechia)'),
(25290, 'https://ror.org/00a7q4w79', 'en', 1, 'https://ror.org/00a7q4w79 Caribbean Cultural Center African Diaspora Institute'),
(25291, 'https://ror.org/00a7wgt63', 'en', 1, 'https://ror.org/00a7wgt63 Winterthur Museum Garden and Library'),
(25292, 'https://ror.org/00a8hpd04', 'en', 1, 'https://ror.org/00a8hpd04 Niigata University of Rehabilitation ę–°ę½ŸćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å¤§å­¦'),
(25293, 'https://ror.org/00aahf144', 'en', 1, 'https://ror.org/00aahf144 Telfair Museum of Art'),
(25294, 'https://ror.org/00abagg24', 'en', 1, 'https://ror.org/00abagg24 Janardan Rai Nagar Rajasthan Vidyapeeth University ą¤œą¤Øą¤¾ą¤°ą„ą¤¦ą¤Ø राय नागर ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25295, 'https://ror.org/00ae65a65', 'en', 1, 'https://ror.org/00ae65a65 Samarkand Institute of Economics and Service Samarqand iqtisodiyot va servis instituti'),
(25296, 'https://ror.org/00afkg479', 'en', 1, 'https://ror.org/00afkg479 Anchorage Museum'),
(25297, 'https://ror.org/00ag8ns14', 'en', 1, 'https://ror.org/00ag8ns14 Modern Language Association'),
(25298, 'https://ror.org/00ak23720', 'en', 1, 'https://ror.org/00ak23720 Higher Education Centre Novo Mesto VisokoŔolsko SrediŔče Novo Mesto'),
(25299, 'https://ror.org/00amtww28', 'en', 1, 'https://ror.org/00amtww28 Lummi Indian Business Council'),
(25300, 'https://ror.org/00andm809', 'pl', 1, 'https://ror.org/00andm809 Akademia Sztuk Pięknych w Gdańsku'),
(25301, 'https://ror.org/00angtv54', 'en', 1, 'https://ror.org/00angtv54 Western Museum of Mining & Industry'),
(25302, 'https://ror.org/00ap81005', 'en', 1, 'https://ror.org/00ap81005 Amon Carter Museum of American Art'),
(25303, 'https://ror.org/00aq42n63', 'en', 1, 'https://ror.org/00aq42n63 Salem College'),
(25304, 'https://ror.org/00atcgp07', 'en', 1, 'https://ror.org/00atcgp07 Manuel L. Quezon University Pamantasang Manuel L. Quezon'),
(25305, 'https://ror.org/00atp1s12', 'en', 1, 'https://ror.org/00atp1s12 Caucasus International University'),
(25306, 'https://ror.org/00avk7342', 'en', 1, 'https://ror.org/00avk7342 Friends of Fellows Riverside Gardens'),
(25307, 'https://ror.org/00avnw427', 'en', 1, 'https://ror.org/00avnw427 Minnesota Historical Society'),
(25308, 'https://ror.org/00axxxt35', 'en', 1, 'https://ror.org/00axxxt35 Parkway School District'),
(25309, 'https://ror.org/00ay49j69', 'no_lang_code', 1, 'https://ror.org/00ay49j69 HlasovƩ centrum Praha Medical Healthcom (Czechia)'),
(25310, 'https://ror.org/00azgtq24', 'en', 1, 'https://ror.org/00azgtq24 Shri Jagannath Sanskrit University ą¤¶ą„ą¤°ą„€ ą¤œą¤—ą¤Øą„ą¤Øą¤¾ą¤„ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¬¶ą­ą¬°ą­€ ą¬œą¬—ą¬Øą­ą¬Øą¬¾ą¬„ ą¬øą¬‚ą¬øą­ą¬•ą­ƒą¬¤ ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(25311, 'https://ror.org/00b52zb38', 'no_lang_code', 1, 'https://ror.org/00b52zb38 Tramaz (Czechia)'),
(25312, 'https://ror.org/00b718e82', 'en', 1, 'https://ror.org/00b718e82 Shanto-Mariam University of Creative Technology ą¦¶ą¦¾ą¦Øą§ą¦¤-মরিয়ম ą¦øą§ƒą¦œą¦Øą¦¶ą§€ą¦² ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(25313, 'https://ror.org/00bad4666', 'en', 1, 'https://ror.org/00bad4666 Andijan State University Andijon davlat universiteti'),
(25314, 'https://ror.org/00bah2v32', 'en', 1, 'https://ror.org/00bah2v32 Kyrgyz State Medical Academy'),
(25315, 'https://ror.org/00bdm1273', 'en', 1, 'https://ror.org/00bdm1273 Institute for Marine Mammal Studies'),
(25316, 'https://ror.org/00beege11', 'no_lang_code', 1, 'https://ror.org/00beege11 Webnode (Czechia)'),
(25317, 'https://ror.org/00bfxmt28', 'en', 1, 'https://ror.org/00bfxmt28 Washington National Opera'),
(25318, 'https://ror.org/00bgzqr58', 'id', 1, 'https://ror.org/00bgzqr58 Universitas Sains dan Teknologi Jayapura'),
(25319, 'https://ror.org/00bhzt187', 'id', 1, 'https://ror.org/00bhzt187 Universitas Pembinaan Masyarakat Indonesia Medan'),
(25320, 'https://ror.org/00bn59524', 'en', 1, 'https://ror.org/00bn59524 Ethics and Public Policy Center'),
(25321, 'https://ror.org/00bt0h739', 'id', 1, 'https://ror.org/00bt0h739 Universitas Muhammadiyah Parepare'),
(25322, 'https://ror.org/00bt5t811', 'en', 1, 'https://ror.org/00bt5t811 Tennessee State Museum'),
(25323, 'https://ror.org/00bwfj843', 'en', 1, 'https://ror.org/00bwfj843 Private Fachhochschule Wedel University of Applied Sciences Wedel'),
(25324, 'https://ror.org/00bwtjf83', 'en', 1, 'https://ror.org/00bwtjf83 Tampere University of Applied Sciences Tampereen Ammattikorkeakoulu'),
(25325, 'https://ror.org/00byxyj96', 'en', 1, 'https://ror.org/00byxyj96 Gemological Centers'),
(25326, 'https://ror.org/00bzckd95', 'en', 1, 'https://ror.org/00bzckd95 Arts, Sciences and Technology University in Lebanon'),
(25327, 'https://ror.org/00c0mqp91', 'en', 1, 'https://ror.org/00c0mqp91 Christian Business Faculty Association'),
(25328, 'https://ror.org/00c2t9540', 'en', 1, 'https://ror.org/00c2t9540 Taisho University 大正大学'),
(25329, 'https://ror.org/00c3r5g90', 'no_lang_code', 1, 'https://ror.org/00c3r5g90 Generi Biotech (Czechia)'),
(25330, 'https://ror.org/00c4wmy51', 'no_lang_code', 1, 'https://ror.org/00c4wmy51 Surugadai University é§æę²³å°å¤§å­¦'),
(25331, 'https://ror.org/00ca12a38', 'hi', 1, 'https://ror.org/00ca12a38 Mahatma Gandhi Chitrakoot Gramodaya Vishwavidyalaya'),
(25332, 'https://ror.org/00ca5f112', 'en', 1, 'https://ror.org/00ca5f112 Oklahoma Historical Society'),
(25333, 'https://ror.org/00cae8n39', 'en', 1, 'https://ror.org/00cae8n39 Yessenov University ŠØ. Есенов атынГағы Университет'),
(25334, 'https://ror.org/00cbhey71', 'en', 1, 'https://ror.org/00cbhey71 Changchun Normal University é•æę˜„åøˆčŒƒå¤§å­¦'),
(25335, 'https://ror.org/00cbm0437', 'en', 1, 'https://ror.org/00cbm0437 Bridge University'),
(25336, 'https://ror.org/00ccd8760', 'no_lang_code', 1, 'https://ror.org/00ccd8760 Formdesign (Czechia)'),
(25337, 'https://ror.org/00ceabv15', 'en', 1, 'https://ror.org/00ceabv15 International Coalition of Sites of Conscience'),
(25338, 'https://ror.org/00cf0ab87', 'en', 1, 'https://ror.org/00cf0ab87 Southeast University ą¦øą¦¾ą¦‰ą¦„ą¦‡ą¦øą§ą¦Ÿ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(25339, 'https://ror.org/00cfc2e66', 'en', 1, 'https://ror.org/00cfc2e66 Mission Inn Foundation'),
(25340, 'https://ror.org/00cgkxv41', 'en', 1, 'https://ror.org/00cgkxv41 Buriram Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøšąøøąø£ąøµąø£ąø±ąø”ąø¢ą¹Œ'),
(25341, 'https://ror.org/00chesn46', 'en', 1, 'https://ror.org/00chesn46 Olney Carnegie Library'),
(25342, 'https://ror.org/00cjtj637', 'en', 1, 'https://ror.org/00cjtj637 Abraham Lincoln University'),
(25343, 'https://ror.org/00cnm9016', 'no_lang_code', 1, 'https://ror.org/00cnm9016 Upper Volga Institute'),
(25344, 'https://ror.org/00cnme797', 'no_lang_code', 1, 'https://ror.org/00cnme797 Kanazawa Gakuin University 金沢学院大学'),
(25345, 'https://ror.org/00cqxck67', 'en', 1, 'https://ror.org/00cqxck67 Center for Southern Folklore'),
(25346, 'https://ror.org/00cvkwk76', 'en', 1, 'https://ror.org/00cvkwk76 Flagler College'),
(25347, 'https://ror.org/00cwqzv43', 'en', 1, 'https://ror.org/00cwqzv43 Northeast Historic Film'),
(25348, 'https://ror.org/00cwwxh37', 'id', 1, 'https://ror.org/00cwwxh37 Universitas Esa Unggul'),
(25349, 'https://ror.org/00cyrce09', 'en', 1, 'https://ror.org/00cyrce09 Akademie Sting Sting Academy'),
(25350, 'https://ror.org/00cyrx553', 'id', 1, 'https://ror.org/00cyrx553 Universitas Prof. Dr. Hazairin SH.'),
(25351, 'https://ror.org/00cz1vp94', 'en', 1, 'https://ror.org/00cz1vp94 Linebaugh Public Library'),
(25352, 'https://ror.org/00d059615', 'no_lang_code', 1, 'https://ror.org/00d059615 Komfi (Czechia)'),
(25353, 'https://ror.org/00d167n54', 'en', 1, 'https://ror.org/00d167n54 Novosibirsk State Medical University ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25354, 'https://ror.org/00d18mr25', 'en', 1, 'https://ror.org/00d18mr25 Chabot College'),
(25355, 'https://ror.org/00d440w27', 'no_lang_code', 1, 'https://ror.org/00d440w27 Tenri University 天理大学'),
(25356, 'https://ror.org/00d54pv09', 'en', 1, 'https://ror.org/00d54pv09 Henry Morrison Flagler Museum'),
(25357, 'https://ror.org/00d55g310', 'en', 1, 'https://ror.org/00d55g310 Transbaikal State University Š—Š°Š±Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25358, 'https://ror.org/00d7gza76', 'id', 1, 'https://ror.org/00d7gza76 Universitas Darul Ulum Islamic Centre Sudirman'),
(25359, 'https://ror.org/00d8vfy18', 'no_lang_code', 1, 'https://ror.org/00d8vfy18 Seawater Greenhouse (United Kingdom)'),
(25360, 'https://ror.org/00db2vc28', 'en', 1, 'https://ror.org/00db2vc28 Karelia University of Applied Sciences Karelia-ammattikorkeakoulu'),
(25361, 'https://ror.org/00dbgmf72', 'en', 1, 'https://ror.org/00dbgmf72 Washburn Norlands Living History Center'),
(25362, 'https://ror.org/00dbrh564', 'en', 1, 'https://ror.org/00dbrh564 Maldives National University Ž‹ŽØŽˆŽ¬Ž€ŽØŽƒŽ§Ž‡Ž°Ž–Ž­ŽŽŽ¬ ޤައުމީ Ž”ŽŖŽ‚ŽØŽˆŽ¦ŽƒŽŽØŽ“Ž©'),
(25363, 'https://ror.org/00dcg0248', 'no_lang_code', 1, 'https://ror.org/00dcg0248 Yadanabon University ရတနာပုံ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(25364, 'https://ror.org/00dd6af44', 'en', 1, 'https://ror.org/00dd6af44 Thang Long University TrĘ°į»ng ĐẔi hį»c Thăng Long'),
(25365, 'https://ror.org/00df8wr13', 'no_lang_code', 1, 'https://ror.org/00df8wr13 Education Management Corporation (United States)'),
(25366, 'https://ror.org/00dfrzy25', 'en', 1, 'https://ror.org/00dfrzy25 Carnegie Trust for the Universities of Scotland'),
(25367, 'https://ror.org/00dgmek64', 'en', 1, 'https://ror.org/00dgmek64 Anthology Film Archives'),
(25368, 'https://ror.org/00dgyv454', 'en', 1, 'https://ror.org/00dgyv454 Fuji University 富士大学'),
(25369, 'https://ror.org/00dh8qa61', 'en', 1, 'https://ror.org/00dh8qa61 East Bohemian Museum in Pardubice VýchodočeskĆ© muzeum v PardubicĆ­ch'),
(25370, 'https://ror.org/00dj68t85', 'en', 1, 'https://ror.org/00dj68t85 Bishop John T. Walker National Learning Center'),
(25371, 'https://ror.org/00dpn5080', 'en', 1, 'https://ror.org/00dpn5080 Coastal Resources Management Council'),
(25372, 'https://ror.org/00ds41r10', 'en', 1, 'https://ror.org/00ds41r10 Carnegie Mellon University Australia'),
(25373, 'https://ror.org/00dwyn417', 'en', 1, 'https://ror.org/00dwyn417 Takachiho University é«˜åƒē©‚å¤§å­¦'),
(25374, 'https://ror.org/00dyv5995', 'en', 1, 'https://ror.org/00dyv5995 Institute of Foreign Languages Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иностранных ŃŠ·Ń‹ŠŗŠ¾Š²'),
(25375, 'https://ror.org/00e26jr92', 'id', 1, 'https://ror.org/00e26jr92 Universitas Bale Bandung'),
(25376, 'https://ror.org/00e42hf98', 'en', 1, 'https://ror.org/00e42hf98 Kurgan State Agricultural Academy by T S Maltsev ŠšŃƒŃ€Š³Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Š¢.Š”'),
(25377, 'https://ror.org/00e4pwa85', 'en', 1, 'https://ror.org/00e4pwa85 Rudny Industrial Institute Š ŃƒŠ“Š½Ń‹Š¹ Š˜Š½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»Š“Ń‹Ņ› Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(25378, 'https://ror.org/00e5rqn68', 'en', 1, 'https://ror.org/00e5rqn68 Sonoma County Library'),
(25379, 'https://ror.org/00e7n9517', 'en', 1, 'https://ror.org/00e7n9517 Pryazovskyi State Technical University Przyazowski Państwowy Uniwersytet Techniczny ŠŸŃ€ŠøŠ°Š·Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŸŃ€ŠøŠ°Š·Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25380, 'https://ror.org/00e936y53', 'en', 1, 'https://ror.org/00e936y53 Turkmen State Institute of Transport and Communication'),
(25381, 'https://ror.org/00ea13906', 'en', 1, 'https://ror.org/00ea13906 Kangnam University ź°•ė‚ØėŒ€ķ•™źµ'),
(25382, 'https://ror.org/00eaycp31', 'en', 1, 'https://ror.org/00eaycp31 IMC Fachhochschule Krems IMC University of Applied Sciences Krems'),
(25383, 'https://ror.org/00ebesp71', 'en', 1, 'https://ror.org/00ebesp71 Dagestan State Agricultural Academy'),
(25384, 'https://ror.org/00ebk5277', 'en', 1, 'https://ror.org/00ebk5277 Tbilisi Humanitarian Teaching University įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ°įƒ£įƒ›įƒįƒœįƒ˜įƒ¢įƒįƒ įƒ£įƒšįƒ˜ įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(25385, 'https://ror.org/00eckk830', 'en', 1, 'https://ror.org/00eckk830 Oman Medical College ŁƒŁ„ŁŠŲ© Ų¹ŁŁ…Ų§Ł† Ų§Ł„Ų·ŲØŁŠŲ©'),
(25386, 'https://ror.org/00ecy3w15', 'en', 1, 'https://ror.org/00ecy3w15 Jan Amos Komensky University Univerzita Jana Amose KomenskƩho Praha'),
(25387, 'https://ror.org/00edm2h72', 'en', 1, 'https://ror.org/00edm2h72 Wadi International University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© الخاصة'),
(25388, 'https://ror.org/00efgh409', 'en', 1, 'https://ror.org/00efgh409 Indian Institute of Foreign Trade ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤¦ą„‡ą¤¶ ą¤µą„ą¤Æą¤¾ą¤Ŗą¤¾ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(25389, 'https://ror.org/00ege8681', 'en', 1, 'https://ror.org/00ege8681 Bamyan University ŲÆŲØŲ§Ł…ŪŒŲ§Ł† Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲØŲ§Ł…ŪŒŲ§Ł†ā€Ž'),
(25390, 'https://ror.org/00eq8hh49', 'en', 1, 'https://ror.org/00eq8hh49 Karagandy State University Š•.А.Бөкетов атынГағы ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŠšŠ°Ń€Š°Š³Š°Š½Š“ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š•. А. Š‘ŃƒŠŗŠµŃ‚Š¾Š²Š°'),
(25391, 'https://ror.org/00eqgy272', 'en', 1, 'https://ror.org/00eqgy272 Allameh Mohaddes Nouri University دانؓگاه علامه Ł…Ų­ŲÆŲ« Ł†ŁˆŲ±ŪŒ'),
(25392, 'https://ror.org/00eqjev45', 'en', 1, 'https://ror.org/00eqjev45 Society for the Protection of New Hampshire Forests'),
(25393, 'https://ror.org/00eqtt103', 'no_lang_code', 1, 'https://ror.org/00eqtt103 Pneukom (Czechia)'),
(25394, 'https://ror.org/00erb5q72', 'en', 1, 'https://ror.org/00erb5q72 Caraga State University'),
(25395, 'https://ror.org/00erv7q04', 'en', 1, 'https://ror.org/00erv7q04 Kumar Bhaskar Varma Sanskrit and Ancient Studies University ą¤•ą„ą¤®ą¤¾ą¤° ą¤­ą¤¾ą¤øą„ą¤•ą¤° ą¤µą¤°ą„ą¤®ą¤¾ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¾ą¤¤ą¤Ø ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ কুমাৰ ą¦­ą¦¾ą¦øą§ą¦•ą§° ą¦¬ą§°ą§ą¦®ą¦¾ ą¦øą¦‚ą¦øą§ą¦•ą§ƒą¦¤ আৰু পুৰাতন ą¦…ą¦§ą§ą¦Æą¦Æą¦¼ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(25396, 'https://ror.org/00et8e744', 'en', 1, 'https://ror.org/00et8e744 English Speaking Union'),
(25397, 'https://ror.org/00et93377', 'en', 1, 'https://ror.org/00et93377 Rattana Bundit University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø±ąø•ąø™ąøšąø±ąø“ąø‘ąø“ąø•'),
(25398, 'https://ror.org/00exza086', 'en', 1, 'https://ror.org/00exza086 Malama Kai Foundation'),
(25399, 'https://ror.org/00ey2ce45', 'id', 1, 'https://ror.org/00ey2ce45 Universitas Simalungun'),
(25400, 'https://ror.org/00ey9xa07', 'en', 1, 'https://ror.org/00ey9xa07 Harbin University å“ˆå°”ę»Øå­¦é™¢'),
(25401, 'https://ror.org/00ez0sd51', 'en', 1, 'https://ror.org/00ez0sd51 Institute for Environmental Policy'),
(25402, 'https://ror.org/00f2nse09', 'en', 1, 'https://ror.org/00f2nse09 Cape Ann Museum'),
(25403, 'https://ror.org/00f3w5j61', 'no_lang_code', 1, 'https://ror.org/00f3w5j61 Oikos University'),
(25404, 'https://ror.org/00f5esq17', 'en', 1, 'https://ror.org/00f5esq17 Hijiyama University 比治山大学'),
(25405, 'https://ror.org/00f60z765', 'en', 1, 'https://ror.org/00f60z765 Los Angeles County Museum of Art'),
(25406, 'https://ror.org/00f7p4623', 'en', 1, 'https://ror.org/00f7p4623 City Lore the New York Center for Urban Culture'),
(25407, 'https://ror.org/00f8d9297', 'id', 1, 'https://ror.org/00f8d9297 Universitas Muhammadiyah Gresik'),
(25408, 'https://ror.org/00f99ht56', 'en', 1, 'https://ror.org/00f99ht56 Washington State Historical Society'),
(25409, 'https://ror.org/00fc27062', 'en', 1, 'https://ror.org/00fc27062 Providence Public Library'),
(25410, 'https://ror.org/00fchwr06', 'no_lang_code', 1, 'https://ror.org/00fchwr06 Optokon (Czechia)'),
(25411, 'https://ror.org/00fcxqx79', 'en', 1, 'https://ror.org/00fcxqx79 Budapesti Metropolitan Egyetem University of Applied Science Budapest'),
(25412, 'https://ror.org/00fds2k14', 'en', 1, 'https://ror.org/00fds2k14 FargŹ»ona politexnika instituti Ferghana Polytechnical Institute Ферганский ŠŸŠ¾Š»ŠøŃ‚ехнический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25413, 'https://ror.org/00fh84p67', 'fr', 1, 'https://ror.org/00fh84p67 Ɖcole d''Informatique, d''Ɖlectronique et d''Expertise Comptable'),
(25414, 'https://ror.org/00fhcxc56', 'en', 1, 'https://ror.org/00fhcxc56 Ibb University Ų¬Ų§Ł…Ų¹Ų© Ų„ŲØ'),
(25415, 'https://ror.org/00fjsz467', 'en', 1, 'https://ror.org/00fjsz467 North Carolina Wildlife Resources Commission'),
(25416, 'https://ror.org/00fkbtp02', 'en', 1, 'https://ror.org/00fkbtp02 Alhosn University Ų¬Ų§Ł…Ų¹Ų© الحصن'),
(25417, 'https://ror.org/00fkjwd61', 'en', 1, 'https://ror.org/00fkjwd61 Ural Law Institute Russian Ministry of Internal Affairs Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25418, 'https://ror.org/00fkkrz35', 'en', 1, 'https://ror.org/00fkkrz35 Adirondack Museum'),
(25419, 'https://ror.org/00fky1y76', 'no_lang_code', 1, 'https://ror.org/00fky1y76 MBT Metal (Czechia)'),
(25420, 'https://ror.org/00fmwma48', 'en', 1, 'https://ror.org/00fmwma48 Alaska Fisheries Development Foundation'),
(25421, 'https://ror.org/00fnehe27', 'en', 1, 'https://ror.org/00fnehe27 Riverside Metropolitan Museum'),
(25422, 'https://ror.org/00fnry208', 'en', 1, 'https://ror.org/00fnry208 Daejeon Catholic University'),
(25423, 'https://ror.org/00fp2m518', 'en', 1, 'https://ror.org/00fp2m518 Baba Ghulam Shah Badshah University ŲØŲ§ŲØŲ§ ŲŗŁŁ„Ų§Ł… ؓاہ بادؓاہ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ बाबा ą¤—ą¤¼ą„ą¤²ą¤¾ą¤® शाह बादशाह ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(25424, 'https://ror.org/00fpr8c10', 'en', 1, 'https://ror.org/00fpr8c10 Fort Ross Conservancy'),
(25425, 'https://ror.org/00fqce595', 'en', 1, 'https://ror.org/00fqce595 Birmingham Civil Rights Institute'),
(25426, 'https://ror.org/00fqfkm54', 'no_lang_code', 1, 'https://ror.org/00fqfkm54 Matsuyama Shinonome College ę¾å±±ę±é›²å„³å­å¤§å­¦'),
(25427, 'https://ror.org/00frehm74', 'en', 1, 'https://ror.org/00frehm74 Daegu Technical University ėŒ€źµ¬ź³µģ—…ėŒ€ķ•™źµ'),
(25428, 'https://ror.org/00frg6v09', 'en', 1, 'https://ror.org/00frg6v09 Budapest Contemporary Dance Academy Budapest KortĆ”rstĆ”nc Főiskola'),
(25429, 'https://ror.org/00fs9wb06', 'en', 1, 'https://ror.org/00fs9wb06 University of Raparin Ų¬Ų§Ł…Ų¹Ų© Ų±Ų§ŲØŲ±ŁŠŁ†'),
(25430, 'https://ror.org/00fshqt18', 'no_lang_code', 1, 'https://ror.org/00fshqt18 Exbio (Czechia)'),
(25431, 'https://ror.org/00ft99q05', 'en', 1, 'https://ror.org/00ft99q05 Portland Museum'),
(25432, 'https://ror.org/00fx6sd20', 'en', 1, 'https://ror.org/00fx6sd20 Frank Lloyd Wright Trust'),
(25433, 'https://ror.org/00fxdpg38', 'en', 1, 'https://ror.org/00fxdpg38 Defiant Requiem Foundation'),
(25434, 'https://ror.org/00g0n6t22', 'en', 1, 'https://ror.org/00g0n6t22 Fakir Mohan University'),
(25435, 'https://ror.org/00g0p9k78', 'en', 1, 'https://ror.org/00g0p9k78 Onomichi City University 尾道市立大学'),
(25436, 'https://ror.org/00g0t4m04', 'en', 1, 'https://ror.org/00g0t4m04 Japanese Red Cross College of Nursing ę—„ęœ¬čµ¤åå­—ēœ‹č­·å¤§å­¦'),
(25437, 'https://ror.org/00g1je163', 'en', 1, 'https://ror.org/00g1je163 Almetyevsk State Oil Institute ŠŠ»ŃŒŠ¼ŠµŃ‚ŃŒŠµŠ²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25438, 'https://ror.org/00g1psz15', 'en', 1, 'https://ror.org/00g1psz15 Azerbaijan University Azərbaycan Universiteti'),
(25439, 'https://ror.org/00g1zds18', 'en', 1, 'https://ror.org/00g1zds18 Samara State University of Social Sciences and Education Дамарский Š³Š¾ŃŃƒŠ“арственный ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25440, 'https://ror.org/00g3q3z36', 'en', 1, 'https://ror.org/00g3q3z36 Arizona State Museum'),
(25441, 'https://ror.org/00g49fd96', 'en', 1, 'https://ror.org/00g49fd96 Pandit Deendayal Upadhyaya Shekhawati University पंऔित ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤‰ą¤Ŗą¤¾ą¤§ą„ą¤Æą¤¾ą¤Æ ą¤¶ą„‡ą¤–ą¤¾ą¤µą¤¾ą¤Ÿą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25442, 'https://ror.org/00g6nvj03', 'en', 1, 'https://ror.org/00g6nvj03 Institute of State and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²Š° Šø права Российской акаГемии наук'),
(25443, 'https://ror.org/00g8avn41', 'en', 1, 'https://ror.org/00g8avn41 Portland Art Museum'),
(25444, 'https://ror.org/00g9rmg66', 'en', 1, 'https://ror.org/00g9rmg66 Institut Pertanian Malang'),
(25445, 'https://ror.org/00gdqcd57', 'en', 1, 'https://ror.org/00gdqcd57 Lipeck Ecology-Humanitarian Institute Липецкий ŃŠŗŠ¾Š»Š¾Š³Š¾-Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25446, 'https://ror.org/00ge2jh15', 'en', 1, 'https://ror.org/00ge2jh15 Peres Academic Center ×”×ž×Ø×›×– האקדמי ×¤×Ø×”ā€Ž'),
(25447, 'https://ror.org/00ggmmz77', 'en', 1, 'https://ror.org/00ggmmz77 Iakob Gogebashvili Telavi State University įƒ˜įƒįƒ™įƒįƒ‘ įƒ’įƒįƒ’įƒ”įƒ‘įƒįƒØįƒ•įƒ˜įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ—įƒ”įƒšįƒįƒ•įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ¢įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(25448, 'https://ror.org/00gh5bn60', 'en', 1, 'https://ror.org/00gh5bn60 Deep Springs College'),
(25449, 'https://ror.org/00ghnnz67', 'en', 1, 'https://ror.org/00ghnnz67 Unity Productions Foundation'),
(25450, 'https://ror.org/00ghshv09', 'en', 1, 'https://ror.org/00ghshv09 Kotarbinski University of Information Technology and Management in Olsztyn'),
(25451, 'https://ror.org/00ghx1590', 'en', 1, 'https://ror.org/00ghx1590 International Balkan University'),
(25452, 'https://ror.org/00gj2kk32', 'en', 1, 'https://ror.org/00gj2kk32 Russian New University'),
(25453, 'https://ror.org/00gjkwr85', 'en', 1, 'https://ror.org/00gjkwr85 Hanoi Open University TrĘ°į»ng ĐẔi hį»c Mở HĆ  Nį»™i'),
(25454, 'https://ror.org/00gjmav90', 'id', 1, 'https://ror.org/00gjmav90 Universitas Sunan Giri'),
(25455, 'https://ror.org/00gjv5s24', 'en', 1, 'https://ror.org/00gjv5s24 H.S. Skovoroda Kharkiv National Pedagogical University Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š“Ń€ŠøŠ³Š¾Ń€Ń–Ń ДковороГи Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ДковороГы'),
(25456, 'https://ror.org/00gkfj461', 'en', 1, 'https://ror.org/00gkfj461 Marine Mammal Stranding Center'),
(25457, 'https://ror.org/00gpcst68', 'en', 1, 'https://ror.org/00gpcst68 Brunswick-Glynn County Library'),
(25458, 'https://ror.org/00gpmpm48', 'en', 1, 'https://ror.org/00gpmpm48 Morton Museum'),
(25459, 'https://ror.org/00gq3pb70', 'en', 1, 'https://ror.org/00gq3pb70 Vologda State Milk Academy named after NV Vereshchagina'),
(25460, 'https://ror.org/00grg8947', 'cs', 1, 'https://ror.org/00grg8947 Ústav ArcheologickĆ© PamĆ”tkovĆ© PĆ©Äe StřednĆ­ch Čech'),
(25461, 'https://ror.org/00grh1m39', 'en', 1, 'https://ror.org/00grh1m39 National College of Arts Ł†ŪŒŲ“Ł†Ł„ کالج آف آرٹس'),
(25462, 'https://ror.org/00gxe6p18', 'en', 1, 'https://ror.org/00gxe6p18 Nizhny Novgorod Commercial Institute ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ коммерческий ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25463, 'https://ror.org/00gxhrz08', 'en', 1, 'https://ror.org/00gxhrz08 Gulf of Alaska Coastal Communities Coalition'),
(25464, 'https://ror.org/00gxmhc57', 'en', 1, 'https://ror.org/00gxmhc57 Kent State University at Stark'),
(25465, 'https://ror.org/00gz03w45', 'pl', 1, 'https://ror.org/00gz03w45 West Pomeranian Business School in Szczecin Zachodniopomorska Szkoła Biznesu w Szczecinie'),
(25466, 'https://ror.org/00gzbxs44', 'no_lang_code', 1, 'https://ror.org/00gzbxs44 Invos (Czechia)'),
(25467, 'https://ror.org/00h15ta02', 'en', 1, 'https://ror.org/00h15ta02 AMA International University Ų¬Ų§Ł…Ų¹Ų© أما Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ų§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(25468, 'https://ror.org/00h4vp021', 'no_lang_code', 1, 'https://ror.org/00h4vp021 Hexagon (Czechia)'),
(25469, 'https://ror.org/00h4y9r32', 'en', 1, 'https://ror.org/00h4y9r32 Dallas Public Library'),
(25470, 'https://ror.org/00h6mz496', 'en', 1, 'https://ror.org/00h6mz496 High Museum of Art'),
(25471, 'https://ror.org/00h8svb48', 'en', 1, 'https://ror.org/00h8svb48 Fruitlands Museum'),
(25472, 'https://ror.org/00h9f3r10', 'en', 1, 'https://ror.org/00h9f3r10 Historic Macon Foundation'),
(25473, 'https://ror.org/00hay9j83', 'en', 1, 'https://ror.org/00hay9j83 Sakhalin State University Дахалинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25474, 'https://ror.org/00hb0gy21', 'en', 1, 'https://ror.org/00hb0gy21 Kuzbass Institute of Economics and Law Кузбасский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(25475, 'https://ror.org/00hbg5c91', 'no_lang_code', 1, 'https://ror.org/00hbg5c91 Business Innovation Centre (Czechia) PodnikatelskĆ© InovačnĆ­ Centrum'),
(25476, 'https://ror.org/00hcj4147', 'en', 1, 'https://ror.org/00hcj4147 Kidscommons Columbus Community Children''s Museum'),
(25477, 'https://ror.org/00hcmxe97', 'en', 1, 'https://ror.org/00hcmxe97 Volgograd State Pedagogical University ВолгограГский Š³Š¾ŃŃƒŠ“арственный ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25478, 'https://ror.org/00hdt0550', 'en', 1, 'https://ror.org/00hdt0550 Kagawa Prefectural College of Health Sciences é¦™å·ēœŒē«‹äæå„åŒ»ē™‚å¤§å­¦'),
(25479, 'https://ror.org/00he2gv62', 'en', 1, 'https://ror.org/00he2gv62 Africa Center'),
(25480, 'https://ror.org/00hj5kv86', 'no_lang_code', 1, 'https://ror.org/00hj5kv86 CKD Blansko Engineering (Czechia)'),
(25481, 'https://ror.org/00hmh4f17', 'en', 1, 'https://ror.org/00hmh4f17 Volgograd State Academy of Physical Culture Š’Š¾Š»Š³Š¾Š³Ń€Š°Š“ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25482, 'https://ror.org/00hn38v76', 'hu', 1, 'https://ror.org/00hn38v76 John Wesley Theological College Wesley JĆ”nos LelkĆ©szkĆ©pző Főiskola'),
(25483, 'https://ror.org/00hnkz789', 'en', 1, 'https://ror.org/00hnkz789 Bohol Island State University'),
(25484, 'https://ror.org/00hnq3t35', 'id', 1, 'https://ror.org/00hnq3t35 Universitas Satyagama'),
(25485, 'https://ror.org/00hny2n79', 'en', 1, 'https://ror.org/00hny2n79 Pamantasan ng Asya at Pasipiko University of Asia and the Pacific'),
(25486, 'https://ror.org/00hqpmg61', 'en', 1, 'https://ror.org/00hqpmg61 Indus University Ų§Ł†ŚŠŲ³ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(25487, 'https://ror.org/00hvbx079', 'en', 1, 'https://ror.org/00hvbx079 School of International Relations دانؓکده روابط ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ وزارت Ų§Ł…ŁˆŲ± Ų®Ų§Ų±Ų¬Ł‡ā€Ž'),
(25488, 'https://ror.org/00hvwkt50', 'en', 1, 'https://ror.org/00hvwkt50 Leibniz Institute for the German Language Leibniz-Institut für Deutsche Sprache'),
(25489, 'https://ror.org/00hzk4n75', 'en', 1, 'https://ror.org/00hzk4n75 WTVS Detroit Public Television'),
(25490, 'https://ror.org/00j0x9b96', 'en', 1, 'https://ror.org/00j0x9b96 Ulyanovsk State Pedagogical University Named After I. Ulyanov Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. Š. Š£Š»ŃŒŃŠ½Š¾Š²Š°'),
(25491, 'https://ror.org/00j11hr96', 'en', 1, 'https://ror.org/00j11hr96 National Symphony Orchestra'),
(25492, 'https://ror.org/00j2vzg50', 'en', 1, 'https://ror.org/00j2vzg50 McArthur Public Library'),
(25493, 'https://ror.org/00j78xh95', 'no_lang_code', 1, 'https://ror.org/00j78xh95 Dongyang Mirae University ė™ģ–‘ėÆøėž˜ėŒ€ķ•™źµ'),
(25494, 'https://ror.org/00j8vky29', 'no_lang_code', 1, 'https://ror.org/00j8vky29 Euroalarm (Czechia)'),
(25495, 'https://ror.org/00jcrsy58', 'en', 1, 'https://ror.org/00jcrsy58 Sugino Fashion College ę‰é‡Žęœé£¾å¤§å­¦'),
(25496, 'https://ror.org/00jenrw75', 'en', 1, 'https://ror.org/00jenrw75 American Jewish Archives'),
(25497, 'https://ror.org/00jfh4f20', 'en', 1, 'https://ror.org/00jfh4f20 Northwest Indian Fisheries Commission'),
(25498, 'https://ror.org/00jgwn197', 'en', 1, 'https://ror.org/00jgwn197 Sher-e-Kashmir University of Agricultural Sciences and Technology of Kashmir ą¤¶ą„‡ą¤°-ą¤-ą¤•ą¤¶ą„ą¤®ą„€ą¤° ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25499, 'https://ror.org/00jkdhd30', 'en', 1, 'https://ror.org/00jkdhd30 Saint Mary''s University'),
(25500, 'https://ror.org/00jkprj19', 'en', 1, 'https://ror.org/00jkprj19 John Paul the Great Catholic University'),
(25501, 'https://ror.org/00jn77c36', 'en', 1, 'https://ror.org/00jn77c36 Voronezh State Academy of Arts Š’Š¾Ń€Š¾Š½ŠµŠ¶ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(25502, 'https://ror.org/00jnbe692', 'en', 1, 'https://ror.org/00jnbe692 University of Business and Administration in Gdynia Wyższa Szkoła Administracji i Biznesu im. Eugeniusza Kwiatkowskiego w Gdyni'),
(25503, 'https://ror.org/00jpcea69', 'en', 1, 'https://ror.org/00jpcea69 Hawaii Nature Center'),
(25504, 'https://ror.org/00jpcnb73', 'en', 1, 'https://ror.org/00jpcnb73 Russian Institute of Theatre Arts Российский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠøŃŠŗŃƒŃŃŃ‚Š²Š°'),
(25505, 'https://ror.org/00jpxtg25', 'en', 1, 'https://ror.org/00jpxtg25 Baekseok Culture University ė°±ģ„ė¬øķ™”ėŒ€ķ•™źµ'),
(25506, 'https://ror.org/00jrqwc52', 'en', 1, 'https://ror.org/00jrqwc52 Shuya State Pedagogical University Шуйский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(25507, 'https://ror.org/00jwjhn70', 'no_lang_code', 1, 'https://ror.org/00jwjhn70 Satturn HoleŔov (Czechia)'),
(25508, 'https://ror.org/00jxh3a14', 'en', 1, 'https://ror.org/00jxh3a14 Chicago Humanities Festival'),
(25509, 'https://ror.org/00jy45w85', 'en', 1, 'https://ror.org/00jy45w85 Northland Community and Technical College'),
(25510, 'https://ror.org/00jycx546', 'en', 1, 'https://ror.org/00jycx546 John Jermain Memorial Library'),
(25511, 'https://ror.org/00jyqx898', 'en', 1, 'https://ror.org/00jyqx898 University of Maryland Baltimore Washington Medical Center'),
(25512, 'https://ror.org/00jzdyg03', 'en', 1, 'https://ror.org/00jzdyg03 Buryat State Academy of Agriculture Š‘ŃƒŃ€ŃŃ‚ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(25513, 'https://ror.org/00k0bzz46', 'en', 1, 'https://ror.org/00k0bzz46 Far-Eastern Academy of Public Service Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹'),
(25514, 'https://ror.org/00k27aj44', 'en', 1, 'https://ror.org/00k27aj44 University of the Philippines Open University'),
(25515, 'https://ror.org/00k5dse37', 'no_lang_code', 1, 'https://ror.org/00k5dse37 LučebnĆ­ ZĆ”vody Draslovka (Czechia)'),
(25516, 'https://ror.org/00k5tp492', 'en', 1, 'https://ror.org/00k5tp492 Bac Ha International University TrĘ°į»ng ĐẔi hį»c Quốc tįŗæ BįŗÆc HĆ '),
(25517, 'https://ror.org/00k5yxn79', 'no_lang_code', 1, 'https://ror.org/00k5yxn79 Applus+ IDIADA (Czechia)'),
(25518, 'https://ror.org/00k6ffj36', 'en', 1, 'https://ror.org/00k6ffj36 Caucasus Academic Centre'),
(25519, 'https://ror.org/00k729t32', 'id', 1, 'https://ror.org/00k729t32 Institut Teknologi Minaesa'),
(25520, 'https://ror.org/00k82dv87', 'en', 1, 'https://ror.org/00k82dv87 Society for Classical Studies'),
(25521, 'https://ror.org/00k9d9279', 'en', 1, 'https://ror.org/00k9d9279 Bass Museum'),
(25522, 'https://ror.org/00k9qqk71', 'en', 1, 'https://ror.org/00k9qqk71 Washington Performing Arts'),
(25523, 'https://ror.org/00kd3pe49', 'en', 1, 'https://ror.org/00kd3pe49 Association for Documentary Editing'),
(25524, 'https://ror.org/00ke8ye77', 'en', 1, 'https://ror.org/00ke8ye77 Aletheia University ēœŸē†å¤§å­ø'),
(25525, 'https://ror.org/00kgrdz47', 'en', 1, 'https://ror.org/00kgrdz47 Digital Hollywood University ćƒ‡ć‚øć‚æćƒ«ćƒćƒŖć‚¦ćƒƒćƒ‰å¤§å­¦'),
(25526, 'https://ror.org/00kj4zk54', 'en', 1, 'https://ror.org/00kj4zk54 Tabriz Islamic Arts University دانؓگاه هنر Ų§Ų³Ł„Ų§Ł…ŪŒ تبریز'),
(25527, 'https://ror.org/00kjhnt51', 'id', 1, 'https://ror.org/00kjhnt51 Universitas Bhayangkara Jakarta Raya'),
(25528, 'https://ror.org/00kjtwf88', 'no_lang_code', 1, 'https://ror.org/00kjtwf88 Medtec VOP (Czechia)'),
(25529, 'https://ror.org/00kkavr87', 'en', 1, 'https://ror.org/00kkavr87 Heisei College of Music 平成音愽大学'),
(25530, 'https://ror.org/00kp9ef37', 'en', 1, 'https://ror.org/00kp9ef37 Shahid Sattari University of Aeronautical Engineering دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† Ł‡ŁˆŲ§ŪŒŪŒ Ų“Ł‡ŪŒŲÆ ستاری'),
(25531, 'https://ror.org/00kr4pg87', 'en', 1, 'https://ror.org/00kr4pg87 Durham Museum'),
(25532, 'https://ror.org/00krt8g98', 'id', 1, 'https://ror.org/00krt8g98 Institut Kesenian Makassar'),
(25533, 'https://ror.org/00ksn4909', 'en', 1, 'https://ror.org/00ksn4909 Ulyanovsk State Technical University Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25534, 'https://ror.org/00kswsq18', 'no_lang_code', 1, 'https://ror.org/00kswsq18 Sand Team (Czechia)'),
(25535, 'https://ror.org/00kvgk775', 'en', 1, 'https://ror.org/00kvgk775 Rise Adventures'),
(25536, 'https://ror.org/00kvxyg87', 'no_lang_code', 1, 'https://ror.org/00kvxyg87 Tesla Blatna (Czechia)'),
(25537, 'https://ror.org/00kxb1h72', 'en', 1, 'https://ror.org/00kxb1h72 China Foreign Affairs University 外交学院'),
(25538, 'https://ror.org/00kza6883', 'en', 1, 'https://ror.org/00kza6883 National Italian American Foundation'),
(25539, 'https://ror.org/00kzy6m08', 'no_lang_code', 1, 'https://ror.org/00kzy6m08 PoličskĆ© StrojĆ­rny (Czechia)'),
(25540, 'https://ror.org/00m1jj386', 'en', 1, 'https://ror.org/00m1jj386 Rybinsk State Aviation Technological Academy'),
(25541, 'https://ror.org/00m2sk374', 'en', 1, 'https://ror.org/00m2sk374 Asia Pacific International University, Asia-Pacific International University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ą¹€ąø­ą¹€ąøŠąøµąø¢-ą¹ąø›ąø‹ąø“ąøŸąø“ąø'),
(25542, 'https://ror.org/00m2v3519', 'no_lang_code', 1, 'https://ror.org/00m2v3519 Zasagt Khan institute'),
(25543, 'https://ror.org/00m4aws33', 'en', 1, 'https://ror.org/00m4aws33 Seoul Theological University ģ„œģšøģ‹ ķ•™ėŒ€ķ•™źµ'),
(25544, 'https://ror.org/00m5dhe11', 'en', 1, 'https://ror.org/00m5dhe11 Arunai Engineering College ą®…ą®°ąÆą®£ąÆˆ ą®ŖąÆ†ą®¾ą®±ą®æą®Æą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(25545, 'https://ror.org/00m6vcy72', 'no_lang_code', 1, 'https://ror.org/00m6vcy72 Edip (Czechia)'),
(25546, 'https://ror.org/00m77t269', 'id', 1, 'https://ror.org/00m77t269 Institut Ilmu Kesehatan Bhakti Wiyata'),
(25547, 'https://ror.org/00m9qmh56', 'en', 1, 'https://ror.org/00m9qmh56 Moffatt-Ladd House and Garden'),
(25548, 'https://ror.org/00mc18523', 'en', 1, 'https://ror.org/00mc18523 British University in Dubai'),
(25549, 'https://ror.org/00mc6bw20', 'en', 1, 'https://ror.org/00mc6bw20 Dr. C. V. Raman University ą¤”ą„‰. ą¤øą„€.ą¤µą„€. रमन ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25550, 'https://ror.org/00mct1g07', 'en', 1, 'https://ror.org/00mct1g07 Museum of the City of New York'),
(25551, 'https://ror.org/00mcwq335', 'en', 1, 'https://ror.org/00mcwq335 Indira Gandhi Agricultural University इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25552, 'https://ror.org/00megt644', 'en', 1, 'https://ror.org/00megt644 Namangan Engineering Pedagogical Institute Namangan muhandislik-pedagogika instituti'),
(25553, 'https://ror.org/00mhsjf71', 'en', 1, 'https://ror.org/00mhsjf71 Lake Simcoe Region Conservation Authority'),
(25554, 'https://ror.org/00mhtk149', 'en', 1, 'https://ror.org/00mhtk149 National History Day'),
(25555, 'https://ror.org/00mjyx438', 'en', 1, 'https://ror.org/00mjyx438 Mount Vernon Hotel Museum & Garden'),
(25556, 'https://ror.org/00mm4ys28', 'en', 1, 'https://ror.org/00mm4ys28 Bitlis Eren University Bitlis Eren Üniversitesi'),
(25557, 'https://ror.org/00mmgjm27', 'en', 1, 'https://ror.org/00mmgjm27 Museum of Boulder'),
(25558, 'https://ror.org/00mns7418', 'no_lang_code', 1, 'https://ror.org/00mns7418 Hiroshima Kokusai Gakuin University åŗƒå³¶å›½éš›å­¦é™¢å¤§å­¦'),
(25559, 'https://ror.org/00mpnf546', 'en', 1, 'https://ror.org/00mpnf546 Unibersidad ng Mindanaw University of Mindanao'),
(25560, 'https://ror.org/00mqpp445', 'id', 1, 'https://ror.org/00mqpp445 Universitas Samawa'),
(25561, 'https://ror.org/00msaq364', 'en', 1, 'https://ror.org/00msaq364 Sault Ste. Marie Area Public Schools'),
(25562, 'https://ror.org/00mwkta11', 'en', 1, 'https://ror.org/00mwkta11 Coonamessett Farm Foundation'),
(25563, 'https://ror.org/00mxaqt17', 'en', 1, 'https://ror.org/00mxaqt17 Cleveland Community College'),
(25564, 'https://ror.org/00my96x13', 'no_lang_code', 1, 'https://ror.org/00my96x13 Farmet (Czechia)'),
(25565, 'https://ror.org/00myp7129', 'en', 1, 'https://ror.org/00myp7129 Youngsan University of Son Studies ģ˜ģ‚°ģ„ ķ•™ėŒ€ķ•™źµ'),
(25566, 'https://ror.org/00mzm0g64', 'en', 1, 'https://ror.org/00mzm0g64 Berkshire Museum'),
(25567, 'https://ror.org/00n1ygd32', 'en', 1, 'https://ror.org/00n1ygd32 Belarusian State Agrarian Technical University Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ аграрны Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(25568, 'https://ror.org/00n34gb90', 'en', 1, 'https://ror.org/00n34gb90 St. Mary''s Seminary and University'),
(25569, 'https://ror.org/00n357243', 'en', 1, 'https://ror.org/00n357243 New York Folklore Society'),
(25570, 'https://ror.org/00n3kap46', 'en', 1, 'https://ror.org/00n3kap46 KCRW Foundation'),
(25571, 'https://ror.org/00n5y3d41', 'en', 1, 'https://ror.org/00n5y3d41 Boston Public Library');
INSERT INTO `rors` VALUES
(25572, 'https://ror.org/00n6web48', 'en', 1, 'https://ror.org/00n6web48 Georgian State University of Subtropical Agriculture Š“Ń€ŃƒŠ·ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃƒŠ±Ń‚Ń€Š¾ŠæŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(25573, 'https://ror.org/00n8j9g10', 'en', 1, 'https://ror.org/00n8j9g10 Corban University'),
(25574, 'https://ror.org/00n9dj543', 'en', 1, 'https://ror.org/00n9dj543 Museo de Bellas Artes de Houston Museum of Fine Arts, Houston MusƩe des beaux-arts de houston'),
(25575, 'https://ror.org/00na8b236', 'en', 1, 'https://ror.org/00na8b236 De La Salle Araneta University Pamantasang De La Salle Araneta'),
(25576, 'https://ror.org/00nagev26', 'en', 1, 'https://ror.org/00nagev26 Vinnytsia National Technical University Winnicki Narodowy Uniwersytet Techniczny Š’Ń–Š½Š½ŠøŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25577, 'https://ror.org/00nbyv331', 'en', 1, 'https://ror.org/00nbyv331 Central Academy of Fine Arts äø­å¤®ē¾ŽęœÆå­¦é™¢'),
(25578, 'https://ror.org/00ndyyr79', 'en', 1, 'https://ror.org/00ndyyr79 Walker Art Center'),
(25579, 'https://ror.org/00nf68x61', 'en', 1, 'https://ror.org/00nf68x61 Belgorod State Agricultural University БелгороГский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25580, 'https://ror.org/00nk7p507', 'en', 1, 'https://ror.org/00nk7p507 Riau University Universitas Riau'),
(25581, 'https://ror.org/00nk9hm21', 'en', 1, 'https://ror.org/00nk9hm21 Ingush State University Ингушский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(25582, 'https://ror.org/00nm35319', 'en', 1, 'https://ror.org/00nm35319 St. Johnsbury Athenaeum'),
(25583, 'https://ror.org/00nncg672', 'en', 1, 'https://ror.org/00nncg672 Moscow Financial Legal Institution Московский финансово-правовой ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25584, 'https://ror.org/00nnwpb90', 'no_lang_code', 1, 'https://ror.org/00nnwpb90 Novosibirsk Humanitarian Institute ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25585, 'https://ror.org/00nphdr35', 'en', 1, 'https://ror.org/00nphdr35 Rayalaseema University రాయలసీమ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(25586, 'https://ror.org/00nqcp204', 'no_lang_code', 1, 'https://ror.org/00nqcp204 Niigata Seiryo University ę–°ę½Ÿé’é™µå¤§å­¦'),
(25587, 'https://ror.org/00nsa3x45', 'en', 1, 'https://ror.org/00nsa3x45 Museum of Fine Arts, Boston'),
(25588, 'https://ror.org/00nsejf36', 'no_lang_code', 1, 'https://ror.org/00nsejf36 Museum of Casa Grande'),
(25589, 'https://ror.org/00nszah81', 'en', 1, 'https://ror.org/00nszah81 Krasnoyarsk State Pedagogical University ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25590, 'https://ror.org/00nthvx56', 'en', 1, 'https://ror.org/00nthvx56 Kansai University of International Studies é–¢č„æå›½éš›å¤§å­¦'),
(25591, 'https://ror.org/00ntmy339', 'en', 1, 'https://ror.org/00ntmy339 New Bedford Whaling Museum'),
(25592, 'https://ror.org/00nv3pd93', 'en', 1, 'https://ror.org/00nv3pd93 Kanazawa College of Art é‡‘ę²¢ē¾Žč”“å·„čŠøå¤§å­¦'),
(25593, 'https://ror.org/00nv6q035', 'en', 1, 'https://ror.org/00nv6q035 Khyber Medical University جامعہ طبی Ų®ŪŒŲØŲ±ā€¬ā€Ž'),
(25594, 'https://ror.org/00nvmb859', 'en', 1, 'https://ror.org/00nvmb859 International Research & Exchanges Board'),
(25595, 'https://ror.org/00nvwb533', 'fr', 1, 'https://ror.org/00nvwb533 UniversitƩ Internationale de Casablanca'),
(25596, 'https://ror.org/00nzbtt45', 'en', 1, 'https://ror.org/00nzbtt45 Cazenovia College'),
(25597, 'https://ror.org/00p04vc15', 'en', 1, 'https://ror.org/00p04vc15 U15 Group of Canadian Research Universities'),
(25598, 'https://ror.org/00p08ff25', 'no_lang_code', 1, 'https://ror.org/00p08ff25 PortƔl (Czechia)'),
(25599, 'https://ror.org/00p092380', 'en', 1, 'https://ror.org/00p092380 Wyoming State Archives'),
(25600, 'https://ror.org/00p29dt33', 'no_lang_code', 1, 'https://ror.org/00p29dt33 SIGMA Výzkumný a Vývojový Ústav (Czechia)'),
(25601, 'https://ror.org/00p61n467', 'en', 1, 'https://ror.org/00p61n467 Cambridge Public School'),
(25602, 'https://ror.org/00p70j486', 'no_lang_code', 1, 'https://ror.org/00p70j486 Romotop (Czechia)'),
(25603, 'https://ror.org/00p8em311', 'en', 1, 'https://ror.org/00p8em311 Gyeongju University ź²½ģ£¼ėŒ€ķ•™źµ'),
(25604, 'https://ror.org/00pajwz74', 'en', 1, 'https://ror.org/00pajwz74 Lodz International Studies Academy Wyższa Szkoła Studiów Międzynarodowych w Łodzi'),
(25605, 'https://ror.org/00pbj0581', 'en', 1, 'https://ror.org/00pbj0581 Institute of Management and Business Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента Šø бизнеса'),
(25606, 'https://ror.org/00pbv8y11', 'en', 1, 'https://ror.org/00pbv8y11 Otaru University of Commerce å°ęØ½å•†ē§‘å¤§å­¦'),
(25607, 'https://ror.org/00pcrgz71', 'en', 1, 'https://ror.org/00pcrgz71 Historians of Netherlandish Art'),
(25608, 'https://ror.org/00pcyc255', 'en', 1, 'https://ror.org/00pcyc255 Saint-Petersburg State University of Telecommunications Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹ имени проф. М. А. Бонч-Š‘Ń€ŃƒŠµŠ²ŠøŃ‡Š°'),
(25609, 'https://ror.org/00pdwbh96', 'en', 1, 'https://ror.org/00pdwbh96 University of St. La Salle'),
(25610, 'https://ror.org/00peyn760', 'no_lang_code', 1, 'https://ror.org/00peyn760 Vongchavalitkul University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø§ąø‡ąø©ą¹ŒąøŠąø§ąø„ąø“ąø•ąøąøøąø„'),
(25611, 'https://ror.org/00pj6qg65', 'en', 1, 'https://ror.org/00pj6qg65 Franklin County Historical and Museum Society'),
(25612, 'https://ror.org/00pkb2403', 'en', 1, 'https://ror.org/00pkb2403 Historical Society of Rockland County'),
(25613, 'https://ror.org/00pnmpx53', 'en', 1, 'https://ror.org/00pnmpx53 TrĘ°į»ng ĐẔi hį»c Mỹ thuįŗ­t Việt Nam Vietnam University of Fine Arts Ɖcole des beaux-arts du viĆŖt nam'),
(25614, 'https://ror.org/00pqc4v87', 'id', 1, 'https://ror.org/00pqc4v87 Universitas Widya Dharma Klaten'),
(25615, 'https://ror.org/00pqvmk25', 'en', 1, 'https://ror.org/00pqvmk25 Lalit Narayan Mithila University ललित नारायण मिऄिला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25616, 'https://ror.org/00ps2tb42', 'en', 1, 'https://ror.org/00ps2tb42 Confederation of Industry of the Czech Republic'),
(25617, 'https://ror.org/00pt5by23', 'en', 1, 'https://ror.org/00pt5by23 Xi''an Physical Education University 脿安体育学院'),
(25618, 'https://ror.org/00pvwxq76', 'no_lang_code', 1, 'https://ror.org/00pvwxq76 Damodaram Sanjivayya National Law University దామోదరం ą°øą°‚ą°œą±€ą°µą°Æą±ą°Æ ą°œą°¾ą°¤ą±€ą°Æ లా ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(25619, 'https://ror.org/00pxasb28', 'en', 1, 'https://ror.org/00pxasb28 Bunka Fashion Graduate University ę–‡åŒ–ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³å¤§å­¦é™¢å¤§å­¦'),
(25620, 'https://ror.org/00pz8ca62', 'en', 1, 'https://ror.org/00pz8ca62 University of Donja Gorica Univerzitet Donja Gorica Универзитет Š”Š¾ŃšŠ° Горица'),
(25621, 'https://ror.org/00pzf4g66', 'en', 1, 'https://ror.org/00pzf4g66 Academia Navală Mircea cel Bătrân Mircea cel Batran Naval Academy'),
(25622, 'https://ror.org/00q15p987', 'en', 1, 'https://ror.org/00q15p987 Dadabhoy Institute of Higher Education ŲÆŲ§ŲÆŲ§Ś€ŁˆŲ¦ŁŠ Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف Ł‡Ų§Ų¦ŁŠŲ± Ų§ŁŠŲ¬ŁˆŚŖŁŠŲ“Ł†'),
(25623, 'https://ror.org/00q6g3329', 'en', 1, 'https://ror.org/00q6g3329 Virginia Aquarium & Marine Science Center'),
(25624, 'https://ror.org/00q6pka22', 'en', 1, 'https://ror.org/00q6pka22 Gujarat National Law University'),
(25625, 'https://ror.org/00q709v87', 'en', 1, 'https://ror.org/00q709v87 Kellogg Community College'),
(25626, 'https://ror.org/00q798164', 'en', 1, 'https://ror.org/00q798164 Voronezh Institute of Economics and Social Management Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(25627, 'https://ror.org/00q96wx12', 'en', 1, 'https://ror.org/00q96wx12 Vitebsk State Technological University Витебский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Віцебскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Š°Š»Š°Š³Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(25628, 'https://ror.org/00qa31321', 'en', 1, 'https://ror.org/00qa31321 The Ohio State University at Lima'),
(25629, 'https://ror.org/00qa5cz12', 'id', 1, 'https://ror.org/00qa5cz12 Institut Seni Indonesia Padangpanjang'),
(25630, 'https://ror.org/00qacgj85', 'en', 1, 'https://ror.org/00qacgj85 Chappaqua Central School District'),
(25631, 'https://ror.org/00qaje814', 'en', 1, 'https://ror.org/00qaje814 Rīgas Ekonomikas augstskola Stockholm School of Economics in Riga Stokholmo ekonomikos aukŔtoji mokykla Rygoje'),
(25632, 'https://ror.org/00qb4ds53', 'en', 1, 'https://ror.org/00qb4ds53 Getty Research Institute'),
(25633, 'https://ror.org/00qcawn35', 'en', 1, 'https://ror.org/00qcawn35 Chicago Metro History Education Center'),
(25634, 'https://ror.org/00qcnss81', 'en', 1, 'https://ror.org/00qcnss81 Mongolian National University Монгол Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(25635, 'https://ror.org/00qf4ya40', 'en', 1, 'https://ror.org/00qf4ya40 EarthCorps'),
(25636, 'https://ror.org/00qgfa553', 'en', 1, 'https://ror.org/00qgfa553 California Historical Society'),
(25637, 'https://ror.org/00qgg7097', 'id', 1, 'https://ror.org/00qgg7097 Universitas Majalengka'),
(25638, 'https://ror.org/00qjgk605', 'en', 1, 'https://ror.org/00qjgk605 Mercu Buana University Universitas Mercu Buana'),
(25639, 'https://ror.org/00qjr8462', 'en', 1, 'https://ror.org/00qjr8462 Association for Public Art'),
(25640, 'https://ror.org/00qkjg138', 'en', 1, 'https://ror.org/00qkjg138 Center for Independent Documentary'),
(25641, 'https://ror.org/00qmy9z88', 'en', 1, 'https://ror.org/00qmy9z88 Higher Colleges of Technology ŁƒŁ„ŁŠŁ‘Ų§ŲŖ Ų§Ł„ŲŖŁ‚Ł†ŁŠŁ‘Ų© Ų§Ł„Ų¹Ł„ŁŠŲ§'),
(25642, 'https://ror.org/00qp7zm97', 'en', 1, 'https://ror.org/00qp7zm97 Ypsilanti District Library'),
(25643, 'https://ror.org/00qpbmv96', 'en', 1, 'https://ror.org/00qpbmv96 PƤpstliche UniversitƤt der Salesianer Salesian Pontifical University UniversitƠ Pontificia Salesiana UniversitƩ pontificale salƩsienne'),
(25644, 'https://ror.org/00qqptx17', 'en', 1, 'https://ror.org/00qqptx17 St. Petersburg Institute of Jewish Studies ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ИуГаики'),
(25645, 'https://ror.org/00qqt8p51', 'en', 1, 'https://ror.org/00qqt8p51 Rolling Hills Library'),
(25646, 'https://ror.org/00qt2x502', 'ro', 1, 'https://ror.org/00qt2x502 Universitatea Danubius Galati'),
(25647, 'https://ror.org/00qte7767', 'no_lang_code', 1, 'https://ror.org/00qte7767 Camea (Czechia)'),
(25648, 'https://ror.org/00qyadr13', 'en', 1, 'https://ror.org/00qyadr13 Hanyang Women''s University ķ•œģ–‘ģ—¬ģžėŒ€ķ•™źµ'),
(25649, 'https://ror.org/00r0xhf81', 'en', 1, 'https://ror.org/00r0xhf81 Petroleum University of Technology دانؓگاه صنعت نفت'),
(25650, 'https://ror.org/00r4zhc79', 'no_lang_code', 1, 'https://ror.org/00r4zhc79 Pskov Volny Institute Псковский Š’Š¾Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25651, 'https://ror.org/00r664k32', 'en', 1, 'https://ror.org/00r664k32 University Hospital'),
(25652, 'https://ror.org/00r6f6s13', 'en', 1, 'https://ror.org/00r6f6s13 Bostonian Society'),
(25653, 'https://ror.org/00r6nzx24', 'en', 1, 'https://ror.org/00r6nzx24 Ibaraki Christian University čŒØåŸŽć‚­ćƒŖć‚¹ćƒˆę•™å¤§å­¦'),
(25654, 'https://ror.org/00r8qyj34', 'en', 1, 'https://ror.org/00r8qyj34 Sendai University 仙台大学'),
(25655, 'https://ror.org/00r8vrd74', 'en', 1, 'https://ror.org/00r8vrd74 Poplar Forest'),
(25656, 'https://ror.org/00r9wsd64', 'en', 1, 'https://ror.org/00r9wsd64 Florida State College at Jacksonville'),
(25657, 'https://ror.org/00r9zdb57', 'en', 1, 'https://ror.org/00r9zdb57 Pueblo of Pojoaque'),
(25658, 'https://ror.org/00rb8n537', 'en', 1, 'https://ror.org/00rb8n537 University of Structural Engineering and Architecture Lyuben Karavelov Š’ŠøŃŃˆŠµ строително ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ "Š›ŃŽŠ±ŠµŠ½ ŠšŠ°Ń€Š°Š²ŠµŠ»Š¾Š²"'),
(25659, 'https://ror.org/00rb9a558', 'en', 1, 'https://ror.org/00rb9a558 Technical museum in Brno TechnickĆ© muzeum v Brně'),
(25660, 'https://ror.org/00rcpgp95', 'en', 1, 'https://ror.org/00rcpgp95 Capitol University Medical Center'),
(25661, 'https://ror.org/00rfn0469', 'en', 1, 'https://ror.org/00rfn0469 Tangshan College 唐山学院'),
(25662, 'https://ror.org/00rfz2d73', 'en', 1, 'https://ror.org/00rfz2d73 Baltimore Museum of Industry'),
(25663, 'https://ror.org/00rgtms46', 'en', 1, 'https://ror.org/00rgtms46 American Jewish Committee'),
(25664, 'https://ror.org/00rhgqg04', 'en', 1, 'https://ror.org/00rhgqg04 Almaty Management University ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ бизнеса Єалықаралық бизнес Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(25665, 'https://ror.org/00rjhzp80', 'en', 1, 'https://ror.org/00rjhzp80 Peter Yegen Jr. Yellowstone County Museum'),
(25666, 'https://ror.org/00rm3g179', 'en', 1, 'https://ror.org/00rm3g179 Ifugao State University Pamantasang Estado ng Ifugao'),
(25667, 'https://ror.org/00rmfj856', 'en', 1, 'https://ror.org/00rmfj856 Assam Don Bosco University অসম ą¦”ą¦Øą¦¬ā€™ą¦øą§ą¦•ā€™ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(25668, 'https://ror.org/00rn8t694', 'en', 1, 'https://ror.org/00rn8t694 Lushootseed Research'),
(25669, 'https://ror.org/00rnbsz17', 'no_lang_code', 1, 'https://ror.org/00rnbsz17 ISATech (Czechia)'),
(25670, 'https://ror.org/00rpbm450', 'en', 1, 'https://ror.org/00rpbm450 Bronx Museum of the Arts'),
(25671, 'https://ror.org/00rq40n03', 'en', 1, 'https://ror.org/00rq40n03 Janusz Korczak Pedagogical University in Warsaw Wyższa Szkoła Pedagogiczna im. Janusza Korczaka w Warszawie'),
(25672, 'https://ror.org/00rq5kg69', 'en', 1, 'https://ror.org/00rq5kg69 Azerbaijan International University'),
(25673, 'https://ror.org/00rqx7a67', 'en', 1, 'https://ror.org/00rqx7a67 St. Louis County Historical Society'),
(25674, 'https://ror.org/00rspdh33', 'en', 1, 'https://ror.org/00rspdh33 Asia Euro University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ įž¢įž¶įžŸįŸŠįžø įž¢įžŗįžšįŸ‰įž»įž”'),
(25675, 'https://ror.org/00rswnr18', 'en', 1, 'https://ror.org/00rswnr18 Newport Public Library'),
(25676, 'https://ror.org/00rt3cy21', 'en', 1, 'https://ror.org/00rt3cy21 Visayas State University'),
(25677, 'https://ror.org/00rwcdf75', 'en', 1, 'https://ror.org/00rwcdf75 Narodowy Uniwersytet Leśnictwa Ukrainy Ukrainian National Forestry University ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украины ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ лісотехнічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ України'),
(25678, 'https://ror.org/00rz4p908', 'en', 1, 'https://ror.org/00rz4p908 American Sports University'),
(25679, 'https://ror.org/00s18am05', 'en', 1, 'https://ror.org/00s18am05 Everglades University'),
(25680, 'https://ror.org/00s1rmw18', 'en', 1, 'https://ror.org/00s1rmw18 Christian Theological Academy in Warsaw Warsaw Chrześcijańska Akademia Teologiczna w Warszawie'),
(25681, 'https://ror.org/00s2dgg43', 'id', 1, 'https://ror.org/00s2dgg43 Universitas Iba'),
(25682, 'https://ror.org/00s2rk252', 'en', 1, 'https://ror.org/00s2rk252 Shaheed Benazir Bhutto Women University ؓہید ŲØŪ’ Ł†ŲøŪŒŲ± بھٹو ŁˆŪŒŁ…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(25683, 'https://ror.org/00s4gpc71', 'no_lang_code', 1, 'https://ror.org/00s4gpc71 HELP International Corporation (Malaysia)'),
(25684, 'https://ror.org/00s4n9v76', 'no_lang_code', 1, 'https://ror.org/00s4n9v76 Sasol (United Kingdom)'),
(25685, 'https://ror.org/00s71kj23', 'en', 1, 'https://ror.org/00s71kj23 Oregon Department of Land Conservation and Development'),
(25686, 'https://ror.org/00s817895', 'en', 1, 'https://ror.org/00s817895 French-American Foundation'),
(25687, 'https://ror.org/00s8h5d08', 'en', 1, 'https://ror.org/00s8h5d08 Hodges University'),
(25688, 'https://ror.org/00s8r8p14', 'en', 1, 'https://ror.org/00s8r8p14 Faculty of Media Fakulteta za medije'),
(25689, 'https://ror.org/00s8wpn62', 'en', 1, 'https://ror.org/00s8wpn62 Consortium of Universities of the Washington Metropolitan Area'),
(25690, 'https://ror.org/00sew4x53', 'en', 1, 'https://ror.org/00sew4x53 Odlar Yurdu Universiteti Odlar Yurdu University'),
(25691, 'https://ror.org/00sftz254', 'en', 1, 'https://ror.org/00sftz254 Archaeological Conservancy'),
(25692, 'https://ror.org/00shnh382', 'en', 1, 'https://ror.org/00shnh382 Lugansk National Agrarian University Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25693, 'https://ror.org/00skfd876', 'en', 1, 'https://ror.org/00skfd876 International Higher School of Practical Psychology Starptautiskā Praktiskās Psiholoģijas Augstskola'),
(25694, 'https://ror.org/00smk4k22', 'cs', 1, 'https://ror.org/00smk4k22 Observatory and planetarium ČeskĆ© Budějovice and Klet'' Observatory'),
(25695, 'https://ror.org/00ssp9h11', 'en', 1, 'https://ror.org/00ssp9h11 Arba Minch University į‹ØįŠ įˆ­į‰£ įˆįŠ•įŒ­ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(25696, 'https://ror.org/00stqsy74', 'en', 1, 'https://ror.org/00stqsy74 Samara State Agrarian University Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25697, 'https://ror.org/00strmv13', 'en', 1, 'https://ror.org/00strmv13 Queens University ą¦•ą§ą¦‡ą¦Øą§ą¦ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(25698, 'https://ror.org/00swfpj56', 'no_lang_code', 1, 'https://ror.org/00swfpj56 Alu Like'),
(25699, 'https://ror.org/00sx18m30', 'en', 1, 'https://ror.org/00sx18m30 Charles River Museum of Industry & Innovation'),
(25700, 'https://ror.org/00sx9nz72', 'en', 1, 'https://ror.org/00sx9nz72 American Council for Southern Asian Art'),
(25701, 'https://ror.org/00sxgks21', 'en', 1, 'https://ror.org/00sxgks21 New Jersey Historical Society'),
(25702, 'https://ror.org/00sxnz850', 'en', 1, 'https://ror.org/00sxnz850 University of Development Alternative ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦”ą§‡ą¦­ą¦²ą¦Ŗą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦…ą¦²ą§ą¦Ÿą¦¾ą¦°ą¦Øą§‡ą¦Ÿą¦æą¦­'),
(25703, 'https://ror.org/00sxtta05', 'en', 1, 'https://ror.org/00sxtta05 University of Ragusa UniversitĆ  di Ragusa'),
(25704, 'https://ror.org/00syfh407', 'en', 1, 'https://ror.org/00syfh407 Strawbery Banke Museum'),
(25705, 'https://ror.org/00syjsq54', 'en', 1, 'https://ror.org/00syjsq54 Bezalel Academy of Arts and Design בצלאל, אקדמיה ×œ××ž× ×•×Ŗ ועיצוב'),
(25706, 'https://ror.org/00syyzh74', 'id', 1, 'https://ror.org/00syyzh74 Institut Bisnis Nusantara'),
(25707, 'https://ror.org/00sz2vy62', 'no_lang_code', 1, 'https://ror.org/00sz2vy62 Foton (Czechia)'),
(25708, 'https://ror.org/00t12nc24', 'no_lang_code', 1, 'https://ror.org/00t12nc24 Pfeiffer Vacuum (France)'),
(25709, 'https://ror.org/00t30sg60', 'en', 1, 'https://ror.org/00t30sg60 Baltic International Institute of Tourism Балтийский Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(25710, 'https://ror.org/00t4hq413', 'en', 1, 'https://ror.org/00t4hq413 Barrington Public Library'),
(25711, 'https://ror.org/00t5e6645', 'no_lang_code', 1, 'https://ror.org/00t5e6645 Debiopharm Group (Canada)'),
(25712, 'https://ror.org/00t7tpg38', 'no_lang_code', 1, 'https://ror.org/00t7tpg38 Zetor (Czechia)'),
(25713, 'https://ror.org/00takby20', 'hu', 1, 'https://ror.org/00takby20 GĆ”l Ferenc Főiskola'),
(25714, 'https://ror.org/00tas1680', 'en', 1, 'https://ror.org/00tas1680 North Sumatra Islamic University Universitas Islam Sumatera Utara'),
(25715, 'https://ror.org/00td5v713', 'en', 1, 'https://ror.org/00td5v713 National Institute of Public Administration المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ لل؄دارة العامة'),
(25716, 'https://ror.org/00tean533', 'en', 1, 'https://ror.org/00tean533 Ho Chi Minh City Open University TrĘ°į»ng ĐẔi hį»c Mở ThĆ nh phố Hồ ChĆ­ Minh'),
(25717, 'https://ror.org/00tf0yk25', 'en', 1, 'https://ror.org/00tf0yk25 Adyghe State University АГыгейский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(25718, 'https://ror.org/00tfv9y59', 'en', 1, 'https://ror.org/00tfv9y59 Ukrainian Academy of Banking of the National Bank of Ukraine ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠ¾Ń— справи ŠŠ‘Š£'),
(25719, 'https://ror.org/00thekh91', 'en', 1, 'https://ror.org/00thekh91 Nagoya University of Commerce and Business åå¤å±‹å•†ē§‘å¤§å­¦'),
(25720, 'https://ror.org/00tm62b95', 'no_lang_code', 1, 'https://ror.org/00tm62b95 Samara Medical Institute Reaviz Дамарский меГицинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Reavis'),
(25721, 'https://ror.org/00tngcb91', 'en', 1, 'https://ror.org/00tngcb91 Oregon State University Cascades'),
(25722, 'https://ror.org/00tnt9w66', 'en', 1, 'https://ror.org/00tnt9w66 Montpelier Foundation'),
(25723, 'https://ror.org/00tspj053', 'en', 1, 'https://ror.org/00tspj053 Prydniprovs’ka State Academy of Civil Engineering and Architecture ŠŸŃ€ŠøŠ“Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° та Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(25724, 'https://ror.org/00txwbc30', 'en', 1, 'https://ror.org/00txwbc30 Chanakya National Law University ą¤šą¤¾ą¤£ą¤•ą„ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25725, 'https://ror.org/00tzc5v60', 'en', 1, 'https://ror.org/00tzc5v60 Maikop State Technological University Майкопский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25726, 'https://ror.org/00tzrs836', 'no_lang_code', 1, 'https://ror.org/00tzrs836 Stahl-Zentrum (Germany)'),
(25727, 'https://ror.org/00v1asp42', 'no_lang_code', 1, 'https://ror.org/00v1asp42 Eldis Pardubice (Czechia)'),
(25728, 'https://ror.org/00v23bh67', 'en', 1, 'https://ror.org/00v23bh67 University of Fairfax'),
(25729, 'https://ror.org/00v2ecp17', 'en', 1, 'https://ror.org/00v2ecp17 St. Louis County Department of Parks and Recreation'),
(25730, 'https://ror.org/00v3ejk86', 'en', 1, 'https://ror.org/00v3ejk86 National Institute of Business įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‡įž¶įžįž·įž–įž¶įžŽįž·įž‡įŸ’įž‡įžŸįž¶įžŸįŸ’įžšįŸ’įžŠ'),
(25731, 'https://ror.org/00v3y0a25', 'id', 1, 'https://ror.org/00v3y0a25 Universitas Ichsan Gorontalo'),
(25732, 'https://ror.org/00v4vjb95', 'en', 1, 'https://ror.org/00v4vjb95 Technological University of the Philippines Teknolohikal na Unibersidad ng Pilipinas'),
(25733, 'https://ror.org/00v6e9296', 'no_lang_code', 1, 'https://ror.org/00v6e9296 Dormer Pramet Tools (Czechia)'),
(25734, 'https://ror.org/00v76vw28', 'en', 1, 'https://ror.org/00v76vw28 Tajik State University of Commerce Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии тиҷорати Тоҷикистон ТаГжикский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ коммерции'),
(25735, 'https://ror.org/00v8gq385', 'en', 1, 'https://ror.org/00v8gq385 Marist School'),
(25736, 'https://ror.org/00v8sj862', 'en', 1, 'https://ror.org/00v8sj862 Cure 4 The Kids Foundation'),
(25737, 'https://ror.org/00v8szc63', 'pl', 1, 'https://ror.org/00v8szc63 Warszawska Szkoła Zarządzania - Szkoła Wyższa'),
(25738, 'https://ror.org/00v8tm605', 'en', 1, 'https://ror.org/00v8tm605 United South End Settlements'),
(25739, 'https://ror.org/00v9n6a67', 'en', 1, 'https://ror.org/00v9n6a67 Moscow University of Finance and Law Московский финансово-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25740, 'https://ror.org/00va6jd32', 'en', 1, 'https://ror.org/00va6jd32 Academician Yuriy Bugay International Scientific and Technical University ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ науково-технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені акаГеміка Š®Ń€Ń–я Š‘ŃƒŠ³Š°Ń'),
(25741, 'https://ror.org/00vab0213', 'en', 1, 'https://ror.org/00vab0213 University of Tripoli Lebanon Ų¬Ų§Ł…Ų¹Ų© طرابلس لبنان'),
(25742, 'https://ror.org/00vadgf54', 'no_lang_code', 1, 'https://ror.org/00vadgf54 Kaziranga University'),
(25743, 'https://ror.org/00vb9c215', 'en', 1, 'https://ror.org/00vb9c215 Universitas Bunda Mulia University of Bunda Mulia'),
(25744, 'https://ror.org/00vbzs544', 'en', 1, 'https://ror.org/00vbzs544 TrĘ°į»ng ĐẔi hį»c Văn Hiįŗæn Văn Hiįŗæn University'),
(25745, 'https://ror.org/00vc1fz20', 'en', 1, 'https://ror.org/00vc1fz20 Universitas Singaperbangsa Karawang University of Singaperbangsa Karawang'),
(25746, 'https://ror.org/00vcqer65', 'id', 1, 'https://ror.org/00vcqer65 Universitas Mahendradatta'),
(25747, 'https://ror.org/00vcrhv91', 'en', 1, 'https://ror.org/00vcrhv91 Potato Research Institute'),
(25748, 'https://ror.org/00vd44543', 'en', 1, 'https://ror.org/00vd44543 American Jewish Historical Society'),
(25749, 'https://ror.org/00vetxt84', 'en', 1, 'https://ror.org/00vetxt84 Maine State Museum'),
(25750, 'https://ror.org/00vfdqg37', 'en', 1, 'https://ror.org/00vfdqg37 Modern University for the Humanities Š”Š¾Š²Ń€ŠµŠ¼ŠµŠ½Š½Š°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25751, 'https://ror.org/00vgj0470', 'en', 1, 'https://ror.org/00vgj0470 American World University'),
(25752, 'https://ror.org/00vhkhz92', 'en', 1, 'https://ror.org/00vhkhz92 Fairbanks North Star Borough Library'),
(25753, 'https://ror.org/00vk44673', 'en', 1, 'https://ror.org/00vk44673 Petro Mohyla Black Sea National University Черноморский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ŠŸŠµŃ‚ра ŠœŠ¾Š³ŠøŠ»Ń‹ Š§Š¾Ń€Š½Š¾Š¼Š¾Ń€ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠŸŠµŃ‚Ń€Š° Могили'),
(25754, 'https://ror.org/00vk7w211', 'en', 1, 'https://ror.org/00vk7w211 North Ossetian State University Деверо-ŠžŃŠµŃ‚ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. Š›. Š„ŠµŃ‚Š°Š³ŃƒŃ€Š¾Š²Š°'),
(25755, 'https://ror.org/00vkd8x05', 'en', 1, 'https://ror.org/00vkd8x05 International Islamic University College Selangor Kolej Universiti Islam Antarabangsa Selangor'),
(25756, 'https://ror.org/00vnfjq11', 'no_lang_code', 1, 'https://ror.org/00vnfjq11 CereProc (United Kingdom)'),
(25757, 'https://ror.org/00vnpja80', 'en', 1, 'https://ror.org/00vnpja80 Modern University for Business and Science الجامعة Ų§Ł„Ų­ŲÆŁŠŲ«Ų© لل؄دارة ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ…'),
(25758, 'https://ror.org/00vp4y570', 'id', 1, 'https://ror.org/00vp4y570 Universitas 17 Agustus 1945 Jakarta'),
(25759, 'https://ror.org/00vq1d511', 'en', 1, 'https://ror.org/00vq1d511 Shizuoka Institute of Science and Technology é™å²”ē†å·„ē§‘å¤§å­¦'),
(25760, 'https://ror.org/00vr9xx71', 'en', 1, 'https://ror.org/00vr9xx71 Central University of Tibetan Studies'),
(25761, 'https://ror.org/00vsh5s78', 'en', 1, 'https://ror.org/00vsh5s78 Arts and Science Center for Southeast Arkansas'),
(25762, 'https://ror.org/00vss0n50', 'en', 1, 'https://ror.org/00vss0n50 Reinhardt University'),
(25763, 'https://ror.org/00vx77439', 'en', 1, 'https://ror.org/00vx77439 National Association for Equal Opportunity in Higher Education'),
(25764, 'https://ror.org/00w19nh03', 'en', 1, 'https://ror.org/00w19nh03 Biblioteca PĆŗblica de Chicago Chicago Public Library'),
(25765, 'https://ror.org/00w2phz39', 'no_lang_code', 1, 'https://ror.org/00w2phz39 Rigaku Innovative Technologies Europe (Czechia)'),
(25766, 'https://ror.org/00w64gh11', 'en', 1, 'https://ror.org/00w64gh11 Oregon Department of Fish and Wildlife'),
(25767, 'https://ror.org/00w8pm168', 'en', 1, 'https://ror.org/00w8pm168 Everson Museum of Art'),
(25768, 'https://ror.org/00wbbfv86', 'fr', 1, 'https://ror.org/00wbbfv86 UniversitƩ Catholique du Graben'),
(25769, 'https://ror.org/00wd70b02', 'en', 1, 'https://ror.org/00wd70b02 Pennsylvania Department of Environmental Protection'),
(25770, 'https://ror.org/00we17t20', 'en', 1, 'https://ror.org/00we17t20 Foundation University'),
(25771, 'https://ror.org/00wez3666', 'en', 1, 'https://ror.org/00wez3666 Joslyn Art Museum'),
(25772, 'https://ror.org/00wftzf58', 'no_lang_code', 1, 'https://ror.org/00wftzf58 Chepos (Czechia)'),
(25773, 'https://ror.org/00whe2089', 'en', 1, 'https://ror.org/00whe2089 Donetsk National Technical University Doniecki Narodowy Uniwersytet Techniczny Донецкий Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25774, 'https://ror.org/00whryr74', 'en', 1, 'https://ror.org/00whryr74 Knox County Public Library'),
(25775, 'https://ror.org/00wnxn610', 'en', 1, 'https://ror.org/00wnxn610 ETV Endowment of South Carolina'),
(25776, 'https://ror.org/00wptnt05', 'en', 1, 'https://ror.org/00wptnt05 Utsunomiya Kyowa University 宇都宮共和大学'),
(25777, 'https://ror.org/00wswag56', 'en', 1, 'https://ror.org/00wswag56 Concord Museum'),
(25778, 'https://ror.org/00wtb8g49', 'en', 1, 'https://ror.org/00wtb8g49 Shobi University å°šē¾Žå­¦åœ’å¤§å­¦'),
(25779, 'https://ror.org/00wtwp073', 'en', 1, 'https://ror.org/00wtwp073 St. Matthew''s University'),
(25780, 'https://ror.org/00ww0x553', 'no_lang_code', 1, 'https://ror.org/00ww0x553 Energie - Stavební a BÔňskÔ (Czechia)'),
(25781, 'https://ror.org/00wwdre49', 'no_lang_code', 1, 'https://ror.org/00wwdre49 Trexima (Czechia)'),
(25782, 'https://ror.org/00wx9pc76', 'en', 1, 'https://ror.org/00wx9pc76 Washakie Museum & Cultural Center'),
(25783, 'https://ror.org/00wy14q17', 'en', 1, 'https://ror.org/00wy14q17 National Taiwan University of Arts åœ‹ē«‹č‡ŗē£č—č”“å¤§å­ø'),
(25784, 'https://ror.org/00wyq5s37', 'en', 1, 'https://ror.org/00wyq5s37 St. John''s University č–ē“„ēæ°ē§‘ęŠ€å¤§å­ø'),
(25785, 'https://ror.org/00wzhrk33', 'en', 1, 'https://ror.org/00wzhrk33 Pratt Museum'),
(25786, 'https://ror.org/00wzykr41', 'en', 1, 'https://ror.org/00wzykr41 New Hampshire State Library'),
(25787, 'https://ror.org/00x3gtf37', 'en', 1, 'https://ror.org/00x3gtf37 Shizuoka Sangyo University é™å²”ē”£ę„­å¤§å­¦'),
(25788, 'https://ror.org/00x481437', 'en', 1, 'https://ror.org/00x481437 George Eastman House'),
(25789, 'https://ror.org/00x4epv84', 'en', 1, 'https://ror.org/00x4epv84 Southern Luzon State University'),
(25790, 'https://ror.org/00x4r3w91', 'no_lang_code', 1, 'https://ror.org/00x4r3w91 Vakar (Czechia)'),
(25791, 'https://ror.org/00x5je630', 'en', 1, 'https://ror.org/00x5je630 Don State Technical University ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Донской Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25792, 'https://ror.org/00x6sm138', 'en', 1, 'https://ror.org/00x6sm138 Neural Stem Cell Institute'),
(25793, 'https://ror.org/00x705929', 'no_lang_code', 1, 'https://ror.org/00x705929 VƭtkovickƩ SlƩvƔrny (Czechia)'),
(25794, 'https://ror.org/00x7x0z13', 'en', 1, 'https://ror.org/00x7x0z13 New Jersey Community College Consortium For Workforce & Economic Development'),
(25795, 'https://ror.org/00x9nm172', 'en', 1, 'https://ror.org/00x9nm172 Chuvash State Pedagogical University Чувашский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. ŠÆ. Яковлева'),
(25796, 'https://ror.org/00xbjad38', 'en', 1, 'https://ror.org/00xbjad38 Adamson University Pamantasang Adamson'),
(25797, 'https://ror.org/00xe94w55', 'en', 1, 'https://ror.org/00xe94w55 Pre Columbian Art Research Institute'),
(25798, 'https://ror.org/00xf20k05', 'en', 1, 'https://ror.org/00xf20k05 Institute of Natural Sciences and Ecology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ естественных наук Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(25799, 'https://ror.org/00xfxvy87', 'en', 1, 'https://ror.org/00xfxvy87 Irbid National University Ų¬Ų§Ł…Ų¹Ų© Ų„Ų±ŲØŲÆ Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(25800, 'https://ror.org/00xgkd576', 'en', 1, 'https://ror.org/00xgkd576 Mescalero Apache Tribe'),
(25801, 'https://ror.org/00xh8va68', 'no_lang_code', 1, 'https://ror.org/00xh8va68 Shri Venkateshwara University ą¤¶ą„ą¤°ą„€ ą¤µą„‡ą¤‚ą¤•ą¤Ÿą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25802, 'https://ror.org/00xhtpg39', 'en', 1, 'https://ror.org/00xhtpg39 Taungoo University į€į€±į€¬į€„į€ŗį€„į€°į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(25803, 'https://ror.org/00xjfn370', 'no_lang_code', 1, 'https://ror.org/00xjfn370 JAP Industries (Czechia)'),
(25804, 'https://ror.org/00xmaxz39', 'no_lang_code', 1, 'https://ror.org/00xmaxz39 Portland Stage (United States)'),
(25805, 'https://ror.org/00xngee30', 'en', 1, 'https://ror.org/00xngee30 Alice Lloyd College'),
(25806, 'https://ror.org/00xpev657', 'en', 1, 'https://ror.org/00xpev657 Pacific American Foundation'),
(25807, 'https://ror.org/00xqebk56', 'en', 1, 'https://ror.org/00xqebk56 West Los Angeles College'),
(25808, 'https://ror.org/00xs48965', 'en', 1, 'https://ror.org/00xs48965 Graduate Theological Union'),
(25809, 'https://ror.org/00xtqnh37', 'en', 1, 'https://ror.org/00xtqnh37 Rochester Institute of Technology Kosovo'),
(25810, 'https://ror.org/00xwqff48', 'en', 1, 'https://ror.org/00xwqff48 Ave Maria University'),
(25811, 'https://ror.org/00xwryd04', 'en', 1, 'https://ror.org/00xwryd04 Kobe Shinwa Women''s University ē„žęˆøč¦Ŗå’Œå„³å­å¤§å­¦'),
(25812, 'https://ror.org/00xxekd18', 'en', 1, 'https://ror.org/00xxekd18 Latvian Maritime Academy Latvijas Jūras Akadēmija'),
(25813, 'https://ror.org/00xz8jv85', 'en', 1, 'https://ror.org/00xz8jv85 Richard J. Daley College'),
(25814, 'https://ror.org/00y0cnq88', 'id', 1, 'https://ror.org/00y0cnq88 Universitas Bung Karno'),
(25815, 'https://ror.org/00y184b33', 'en', 1, 'https://ror.org/00y184b33 Jaamacadda Teknoolajiyadda Somaliland Somaliland University of Technology'),
(25816, 'https://ror.org/00y47bm46', 'en', 1, 'https://ror.org/00y47bm46 Crimean State Engineering Pedagogical University ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠøŠ¹ інженерно-пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠšŃ€Ń‹Š¼ŃŠŗŠøŠ¹ инженерно-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25817, 'https://ror.org/00y5xdc54', 'id', 1, 'https://ror.org/00y5xdc54 Universitas Nahdlatul Ulama Surakarta'),
(25818, 'https://ror.org/00y611a79', 'en', 1, 'https://ror.org/00y611a79 Shiraz University of Arts دانؓگاه هنر ؓیراز'),
(25819, 'https://ror.org/00y64xg88', 'en', 1, 'https://ror.org/00y64xg88 Vermont Folklife Center'),
(25820, 'https://ror.org/00y792711', 'en', 1, 'https://ror.org/00y792711 Technological University of Tajikistan Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø техникии Тоҷикистон ба номи М.ŠžŃŠøŠ¼Ó£ ТаГжикский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. ŠžŃŠøŠ¼Šø'),
(25821, 'https://ror.org/00y809n33', 'en', 1, 'https://ror.org/00y809n33 Tokyo University of the Arts ę±äŗ¬čŠøč”“å¤§å­¦'),
(25822, 'https://ror.org/00ybawk55', 'en', 1, 'https://ror.org/00ybawk55 Florida International University Alumni Association'),
(25823, 'https://ror.org/00ybfzj27', 'en', 1, 'https://ror.org/00ybfzj27 Karnataka State Dr.Gangubai Hanagal Music and Performing Arts University ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ಔಾ. ಗಂಗೂಬಾಯಿ ą²¹ą²¾ą²Øą²—ą²²ą³ ಸಂಗೀತ ą²®ą²¤ą³ą²¤ą³ ą²Ŗą³ą²°ą²¦ą²°ą³ą²¶ą²• ಕಲೆಗಳ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(25824, 'https://ror.org/00yc4pf20', 'no_lang_code', 1, 'https://ror.org/00yc4pf20 BD Sensors (Czechia)'),
(25825, 'https://ror.org/00yctqd52', 'en', 1, 'https://ror.org/00yctqd52 Eastern Economics and Law Humanities Š’Š¾ŃŃ‚Š¾Ń‡Š½Š°Ń ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(25826, 'https://ror.org/00yezxw87', 'no_lang_code', 1, 'https://ror.org/00yezxw87 Chodang University ģ“ˆė‹¹ėŒ€ķ•™źµ'),
(25827, 'https://ror.org/00yf8nr88', 'en', 1, 'https://ror.org/00yf8nr88 Institute of Technology and Business'),
(25828, 'https://ror.org/00ymx4t37', 'en', 1, 'https://ror.org/00ymx4t37 MUSE Film and Television'),
(25829, 'https://ror.org/00ynatg20', 'no_lang_code', 1, 'https://ror.org/00ynatg20 Universal Research Group (Pakistan)'),
(25830, 'https://ror.org/00yrjw682', 'id', 1, 'https://ror.org/00yrjw682 Universitas Darussalam Ambon'),
(25831, 'https://ror.org/00ys4cv94', 'en', 1, 'https://ror.org/00ys4cv94 Agora University Universitatea Agora'),
(25832, 'https://ror.org/00ytmwg30', 'en', 1, 'https://ror.org/00ytmwg30 Donga College of Health ė™ģ•„ė³“ź±“ėŒ€ķ•™źµ'),
(25833, 'https://ror.org/00yydx071', 'no_lang_code', 1, 'https://ror.org/00yydx071 Osaka Seikei University 大阪成蹊大学'),
(25834, 'https://ror.org/00z249n13', 'no_lang_code', 1, 'https://ror.org/00z249n13 Nagoya Bunri University åå¤å±‹ę–‡ē†å¤§å­¦'),
(25835, 'https://ror.org/00z3zzh92', 'en', 1, 'https://ror.org/00z3zzh92 Iliff School of Theology'),
(25836, 'https://ror.org/00z50sv45', 'en', 1, 'https://ror.org/00z50sv45 Shin Ansan University ģ‹ ģ•ˆģ‚°ėŒ€ķ•™źµ'),
(25837, 'https://ror.org/00z6fc259', 'en', 1, 'https://ror.org/00z6fc259 Jewish Theological Seminary'),
(25838, 'https://ror.org/00z6fwj27', 'en', 1, 'https://ror.org/00z6fwj27 Magnitogorsk State University ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25839, 'https://ror.org/00z9cn431', 'en', 1, 'https://ror.org/00z9cn431 Kühne Logistics University'),
(25840, 'https://ror.org/00zabvw84', 'en', 1, 'https://ror.org/00zabvw84 Russian State Specialized Academy of Arts Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠæŠµŃ†ŠøŠ°Š»ŠøŠ·ŠøŃ€Š¾Š²Š°Š½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(25841, 'https://ror.org/00zc2km17', 'en', 1, 'https://ror.org/00zc2km17 Living History Farms'),
(25842, 'https://ror.org/00zgr4s34', 'en', 1, 'https://ror.org/00zgr4s34 Sokoto State University'),
(25843, 'https://ror.org/00zh3gn22', 'en', 1, 'https://ror.org/00zh3gn22 Auro University'),
(25844, 'https://ror.org/00zjez215', 'en', 1, 'https://ror.org/00zjez215 Czech Medical Association of J.E. Purkyne ČeskĆ” lĆ©kařskĆ” společnost Jana Evangelisty Purkyně'),
(25845, 'https://ror.org/00zk06669', 'en', 1, 'https://ror.org/00zk06669 Songho University ģ†”ķ˜øėŒ€ķ•™źµ'),
(25846, 'https://ror.org/00znvr495', 'en', 1, 'https://ror.org/00znvr495 Mattress Factory'),
(25847, 'https://ror.org/00zqbkp20', 'en', 1, 'https://ror.org/00zqbkp20 Omsk State Institute of Service ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сервиса'),
(25848, 'https://ror.org/00zs3p911', 'en', 1, 'https://ror.org/00zs3p911 San Antonio Public Library Foundation'),
(25849, 'https://ror.org/00ztyd753', 'en', 1, 'https://ror.org/00ztyd753 University of Puthisastra įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ā€‹ įž–įž»įž‘įŸ’įž’įž·įžŸįž¶įžŸįŸ’įžįŸ’įžš'),
(25850, 'https://ror.org/00zv9ny53', 'en', 1, 'https://ror.org/00zv9ny53 Moscow Region State University Московский Š³Š¾ŃŃƒŠ“арственный областной ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25851, 'https://ror.org/00zvja711', 'en', 1, 'https://ror.org/00zvja711 Carlyle House Historic Park'),
(25852, 'https://ror.org/00zvtrm48', 'en', 1, 'https://ror.org/00zvtrm48 Delaware Department of Natural Resources and Environmental Control'),
(25853, 'https://ror.org/00zxty319', 'no_lang_code', 1, 'https://ror.org/00zxty319 Naragakuen University å„ˆč‰Æē”£ę„­å¤§å­¦'),
(25854, 'https://ror.org/00zxz8845', 'en', 1, 'https://ror.org/00zxz8845 National University of Pharmacy ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ фармацевтичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25855, 'https://ror.org/00zyp8708', 'en', 1, 'https://ror.org/00zyp8708 Shevchenko Transnistria State University Universitatea de Stat din Transnistria ŠŸŃ€ŠøŠ“Š½ŠµŃŃ‚Ń€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Тараса Шевченко'),
(25856, 'https://ror.org/00zz2cd87', 'en', 1, 'https://ror.org/00zz2cd87 Kannur University ą“•ą“£ąµą“£ąµ‚ąµ¼ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(25857, 'https://ror.org/0100d8y50', 'id', 1, 'https://ror.org/0100d8y50 Universitas Tamansiswa, Universitas Tamansiswa Padang'),
(25858, 'https://ror.org/010299218', 'en', 1, 'https://ror.org/010299218 Minnesota Public Radio'),
(25859, 'https://ror.org/01041e172', 'en', 1, 'https://ror.org/01041e172 University of Maryland Rehabilitation & Orthopaedic Institute'),
(25860, 'https://ror.org/01044vd48', 'en', 1, 'https://ror.org/01044vd48 Tama Art University å¤šę‘©ē¾Žč”“å¤§å­¦'),
(25861, 'https://ror.org/01062jn59', 'no_lang_code', 1, 'https://ror.org/01062jn59 Archaia Brno (Czechia)'),
(25862, 'https://ror.org/0106zg078', 'no_lang_code', 1, 'https://ror.org/0106zg078 ENKI (Czechia)'),
(25863, 'https://ror.org/01083gz70', 'no_lang_code', 1, 'https://ror.org/01083gz70 Daiichi Sankyo (United Kingdom)'),
(25864, 'https://ror.org/0108chx74', 'en', 1, 'https://ror.org/0108chx74 Akademia Muzyczna im. Karola Szymanowskiego w Katowicach Karol Szymanowski Academy of Music'),
(25865, 'https://ror.org/010bdvy81', 'en', 1, 'https://ror.org/010bdvy81 Omsk State Pedagogical University ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25866, 'https://ror.org/010btwb70', 'en', 1, 'https://ror.org/010btwb70 Donbas National Academy of Civil Engineering and Architecture Š”Š¾Š½Š±Š°ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(25867, 'https://ror.org/010cbg926', 'en', 1, 'https://ror.org/010cbg926 Hyupsung University ķ˜‘ģ„±ėŒ€ķ•™źµ'),
(25868, 'https://ror.org/010hy3w58', 'en', 1, 'https://ror.org/010hy3w58 Kharkiv State University of Food Technology and Trade Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń…Š°Ń€Ń‡ŃƒŠ²Š°Š½Š½Ń та торгівлі Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŠøŃ‚Š°Š½ŠøŃ Šø торговли'),
(25869, 'https://ror.org/010j1fa26', 'en', 1, 'https://ror.org/010j1fa26 History Center of Olmsted County'),
(25870, 'https://ror.org/010kbv636', 'en', 1, 'https://ror.org/010kbv636 Hubei Institute of Fine Arts ę¹–åŒ—ē¾ŽęœÆå­¦é™¢'),
(25871, 'https://ror.org/010m6ab92', 'en', 1, 'https://ror.org/010m6ab92 Kuzbass State Pedagogical Academy Novokuzneckij Gosudarstvennyj Pedagogičeskij Institut'),
(25872, 'https://ror.org/010nsc013', 'no_lang_code', 1, 'https://ror.org/010nsc013 Svay Rieng University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ā€‹įžŸįŸ’įžœįž¶įž™įžšįŸ€įž„'),
(25873, 'https://ror.org/010nsv610', 'no_lang_code', 1, 'https://ror.org/010nsv610 Seisen Jogakuin College 清泉儳学院大学'),
(25874, 'https://ror.org/010pg3352', 'cs', 1, 'https://ror.org/010pg3352 Comenius Museum in Přerov, Muzeum KomenskĆ©ho v Přerově'),
(25875, 'https://ror.org/010pkba38', 'en', 1, 'https://ror.org/010pkba38 Sanyo Gakuen University 山陽学園大学'),
(25876, 'https://ror.org/010qmx075', 'en', 1, 'https://ror.org/010qmx075 Howard County Library System'),
(25877, 'https://ror.org/010s58a40', 'en', 1, 'https://ror.org/010s58a40 Volgograd Municipal Institute of Arts Š’Š¾Š»Š³Š¾Š³Ń€Š°Š“ŃŠŗŠ°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени П. А. Š”ŠµŃ€ŠµŠ±Ń€ŃŠŗŠ¾Š²Š° [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(25878, 'https://ror.org/010vxxa64', 'en', 1, 'https://ror.org/010vxxa64 Kyrgyz State National University И.Арабаев атынГагы ŠšŃ‹Ń€Š³Ń‹Š· мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(25879, 'https://ror.org/010x2s304', 'en', 1, 'https://ror.org/010x2s304 Krasnodar State University of Culture and Arts ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(25880, 'https://ror.org/010xtt879', 'no_lang_code', 1, 'https://ror.org/010xtt879 VUP Medical (Czechia) Výzkumný Ústav Pletařský'),
(25881, 'https://ror.org/010zm1770', 'en', 1, 'https://ror.org/010zm1770 Kansas City Museum'),
(25882, 'https://ror.org/0110at529', 'en', 1, 'https://ror.org/0110at529 Odessa National Medical University ŠžŠ“ŠµŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25883, 'https://ror.org/0112cfy18', 'en', 1, 'https://ror.org/0112cfy18 Belarusian Trade-Economic University of Consumer Cooperation Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– ганГлёва-ŃŠŗŠ°Š½Š°Š¼Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ спажывецкай кааперацыі'),
(25884, 'https://ror.org/01131jt26', 'en', 1, 'https://ror.org/01131jt26 Chester County Historical Society'),
(25885, 'https://ror.org/01136x372', 'en', 1, 'https://ror.org/01136x372 Institute of Nuclear Physics'),
(25886, 'https://ror.org/0113dxj57', 'en', 1, 'https://ror.org/0113dxj57 Baltimore City Life Museums'),
(25887, 'https://ror.org/0115qty58', 'en', 1, 'https://ror.org/0115qty58 St. Petersburg University of the Ministry of Internal Affairs of Russia Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ’Š” России'),
(25888, 'https://ror.org/0116q3567', 'en', 1, 'https://ror.org/0116q3567 Community Renewal Society'),
(25889, 'https://ror.org/0118mmr39', 'en', 1, 'https://ror.org/0118mmr39 Institute for American Indian Studies'),
(25890, 'https://ror.org/0119xjz67', 'en', 1, 'https://ror.org/0119xjz67 Moscow Banking Institute Московский банковский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(25891, 'https://ror.org/011bzep68', 'en', 1, 'https://ror.org/011bzep68 Catticus Corporation'),
(25892, 'https://ror.org/011c0vt04', 'en', 1, 'https://ror.org/011c0vt04 Ho Chi Minh City University of Transport TrĘ°į»ng ĐẔi hį»c Giao thĆ“ng vįŗ­n tįŗ£i ThĆ nh phố Hồ ChĆ­ Minh'),
(25893, 'https://ror.org/011d8sm39', 'en', 1, 'https://ror.org/011d8sm39 Changsha University 长沙学院'),
(25894, 'https://ror.org/011m7wt79', 'id', 1, 'https://ror.org/011m7wt79 Universitas Trunajaya Bontang'),
(25895, 'https://ror.org/011p6p421', 'en', 1, 'https://ror.org/011p6p421 Barrington Area Historical Society'),
(25896, 'https://ror.org/011rv5893', 'en', 1, 'https://ror.org/011rv5893 Delmon University for Science & Technology Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ„Ł…ŁˆŁ† Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(25897, 'https://ror.org/011tc6n71', 'en', 1, 'https://ror.org/011tc6n71 Cebu Doctors'' University'),
(25898, 'https://ror.org/011tkrr13', 'en', 1, 'https://ror.org/011tkrr13 Federation of State Humanities Councils'),
(25899, 'https://ror.org/011tvp436', 'en', 1, 'https://ror.org/011tvp436 Iona Senior Services'),
(25900, 'https://ror.org/011vbeg19', 'en', 1, 'https://ror.org/011vbeg19 Rizal Technological University'),
(25901, 'https://ror.org/011w3dy65', 'no_lang_code', 1, 'https://ror.org/011w3dy65 Bhupendra Narayan Mandal University ą¤­ą„‚ą¤Ŗą„‡ą¤‚ą¤¦ą„ą¤° नारायण मंऔल ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25902, 'https://ror.org/011wymc20', 'en', 1, 'https://ror.org/011wymc20 Maitama Sule University Kano'),
(25903, 'https://ror.org/011x6fh62', 'en', 1, 'https://ror.org/011x6fh62 Tamil Nadu Dr. Ambedkar Law University ą®Ÿą®¾ą®•ąÆą®Ÿą®°ąÆ ą®…ą®®ąÆą®ŖąÆ‡ą®¤ąÆą®•ą®°ąÆ ą®šą®ŸąÆą®Ÿą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(25904, 'https://ror.org/011xrgv27', 'en', 1, 'https://ror.org/011xrgv27 Leyte Normal University'),
(25905, 'https://ror.org/011y7xt38', 'en', 1, 'https://ror.org/011y7xt38 Ƈankırı Karatekin University Ƈankırı Karatekin Üniversitesi'),
(25906, 'https://ror.org/011ydgp35', 'en', 1, 'https://ror.org/011ydgp35 Otgontenger University ŠžŃ‚Š³Š¾Š½Ń‚ŃŠ½Š³ŃŃ€ ŠøŃ… ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(25907, 'https://ror.org/01224kh78', 'en', 1, 'https://ror.org/01224kh78 Sunflower County Library'),
(25908, 'https://ror.org/0123ya521', 'en', 1, 'https://ror.org/0123ya521 South Dakota Library Association'),
(25909, 'https://ror.org/01250xt95', 'en', 1, 'https://ror.org/01250xt95 National Fish and Wildlife Foundation'),
(25910, 'https://ror.org/01268am16', 'en', 1, 'https://ror.org/01268am16 National Museum Institute of the History of Art, Conservation and Museology ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø कला इतिहास, ą¤øą¤‚ą¤°ą¤•ą„ą¤·ą¤£ ą¤ą¤µą¤‚ ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø'),
(25911, 'https://ror.org/012752q54', 'en', 1, 'https://ror.org/012752q54 East Meadow Public Library'),
(25912, 'https://ror.org/01295by53', 'en', 1, 'https://ror.org/01295by53 Terrebonne Parish Library'),
(25913, 'https://ror.org/0129z1286', 'en', 1, 'https://ror.org/0129z1286 Ipswich Historical Society'),
(25914, 'https://ror.org/012a85e51', 'en', 1, 'https://ror.org/012a85e51 University of Economics and Innovation Wyższa Szkoła Ekonomii i Innowacjii w Lublinie'),
(25915, 'https://ror.org/012br3z79', 'en', 1, 'https://ror.org/012br3z79 University of Liberal Arts Bangladesh ą¦‡ą¦‰ą¦Øą¦æą¦°ą§ą¦­ą¦¾ą¦øą¦æą¦Ÿą¦æ অব লিবারেল ą¦†ą¦°ą§ą¦Ÿą¦ø বাংলাদেশ'),
(25916, 'https://ror.org/012g45386', 'en', 1, 'https://ror.org/012g45386 Papua New Guinea University of Technology'),
(25917, 'https://ror.org/012jv0m98', 'en', 1, 'https://ror.org/012jv0m98 Hanoi University of Business and Technology TrĘ°į»ng ĐẔi hį»c Kinh doanh vĆ  CĆ“ng nghệ HĆ  Nį»™i'),
(25918, 'https://ror.org/012mcha64', 'en', 1, 'https://ror.org/012mcha64 Czech Association of Scientific and Technical Societies'),
(25919, 'https://ror.org/012pr3y94', 'no_lang_code', 1, 'https://ror.org/012pr3y94 Variel (Czechia)'),
(25920, 'https://ror.org/012rxev91', 'hi', 1, 'https://ror.org/012rxev91 Jai Prakash Vishwavidyalaya'),
(25921, 'https://ror.org/012tb7473', 'en', 1, 'https://ror.org/012tb7473 Malawi Adventist University'),
(25922, 'https://ror.org/012w6mj89', 'cs', 1, 'https://ror.org/012w6mj89 RegionĆ”lnĆ­ muzeum ve VysokĆ©m Mýtě, VysokĆ© Mýto Regional Museum'),
(25923, 'https://ror.org/0130a6s10', 'en', 1, 'https://ror.org/0130a6s10 Foundation University Islamabad ŁŲ§Ų¤Ł†ŚˆŪŒŲ“Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ اسلام Ų¢ŲØŲ§ŲÆ'),
(25924, 'https://ror.org/013164r34', 'en', 1, 'https://ror.org/013164r34 Chesapeake Bay Maritime Museum'),
(25925, 'https://ror.org/0133h5567', 'en', 1, 'https://ror.org/0133h5567 Yangon University of Economics'),
(25926, 'https://ror.org/0133zej97', 'cs', 1, 'https://ror.org/0133zej97 MuzejnĆ­ a VlastivědnĆ” Společnost v Brně'),
(25927, 'https://ror.org/013609965', 'en', 1, 'https://ror.org/013609965 City University Ų¬Ų§Ł…Ų¹Ų© المنار في طرابلس'),
(25928, 'https://ror.org/013812419', 'en', 1, 'https://ror.org/013812419 Jack Straw Cultural Center'),
(25929, 'https://ror.org/013922990', 'en', 1, 'https://ror.org/013922990 Brandman University'),
(25930, 'https://ror.org/013aqa754', 'en', 1, 'https://ror.org/013aqa754 Tamil Nadu Open University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®¤ą®æą®±ą®ØąÆą®¤ą®Øą®æą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(25931, 'https://ror.org/013cc5h66', 'en', 1, 'https://ror.org/013cc5h66 Tver State Medical University Š¢Š²ŠµŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ');
INSERT INTO `rors` VALUES
(25932, 'https://ror.org/013cp5728', 'en', 1, 'https://ror.org/013cp5728 Vladikavkaz Institute of Management ВлаГикавказский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(25933, 'https://ror.org/013d87239', 'en', 1, 'https://ror.org/013d87239 HITEC University'),
(25934, 'https://ror.org/013dqcj88', 'en', 1, 'https://ror.org/013dqcj88 University of Medical Technology Yangon'),
(25935, 'https://ror.org/013gnjn86', 'en', 1, 'https://ror.org/013gnjn86 Linguistics University of Nizhny Novgorod ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. А. Š”Š¾Š±Ń€Š¾Š»ŃŽŠ±Š¾Š²Š°'),
(25936, 'https://ror.org/013gnym04', 'no_lang_code', 1, 'https://ror.org/013gnym04 Tanger computersystems'),
(25937, 'https://ror.org/013h3xr51', 'en', 1, 'https://ror.org/013h3xr51 Izmir University İzmir Üniversitesi'),
(25938, 'https://ror.org/013kf9t32', 'en', 1, 'https://ror.org/013kf9t32 Hanseatic University Rostock Private HanseuniversitƤt'),
(25939, 'https://ror.org/013mk4f48', 'id', 1, 'https://ror.org/013mk4f48 Universitas Wiralodra'),
(25940, 'https://ror.org/013mrxa54', 'en', 1, 'https://ror.org/013mrxa54 East Baton Rouge Parish Library'),
(25941, 'https://ror.org/013rj3567', 'en', 1, 'https://ror.org/013rj3567 Studio of Ecological Models'),
(25942, 'https://ror.org/013s89d74', 'en', 1, 'https://ror.org/013s89d74 St James''s University Hospital'),
(25943, 'https://ror.org/013tad429', 'en', 1, 'https://ror.org/013tad429 Benadir University Jaamacada Banaadir جامعـــة ŲØŁ†Ł€Ł€Ł€Ų§ŲÆŲ±ā€Ž'),
(25944, 'https://ror.org/013v4ng57', 'en', 1, 'https://ror.org/013v4ng57 Biblioteca PĆŗblica de San Francisco BibliothĆØque publique de san francisco San Francisco Public Library'),
(25945, 'https://ror.org/013ye6h36', 'en', 1, 'https://ror.org/013ye6h36 Fort Bend Museum'),
(25946, 'https://ror.org/013yz2z49', 'en', 1, 'https://ror.org/013yz2z49 Presbyterian Historical Society'),
(25947, 'https://ror.org/0140mkx22', 'en', 1, 'https://ror.org/0140mkx22 West Baton Rouge Museum'),
(25948, 'https://ror.org/01473qm81', 'en', 1, 'https://ror.org/01473qm81 Siberian Institute of Business Management and Psychology Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø психологии'),
(25949, 'https://ror.org/0148bwv84', 'en', 1, 'https://ror.org/0148bwv84 Lafayette Public Library'),
(25950, 'https://ror.org/01491yv14', 'en', 1, 'https://ror.org/01491yv14 Ukrainian Academy of Printing Š£ŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ печати Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š“Ń€ŃƒŠŗŠ°Ń€ŃŃ‚Š²Š°'),
(25951, 'https://ror.org/01492me75', 'en', 1, 'https://ror.org/01492me75 University of Management and Administration in Zamosc Wyższa Szkoła Zarządzania i Administracji'),
(25952, 'https://ror.org/0149y8a98', 'en', 1, 'https://ror.org/0149y8a98 Turkmen State Power Engineering Institute Türkmenistanyñ Döwlet Energetika Instituty'),
(25953, 'https://ror.org/014bbcf72', 'en', 1, 'https://ror.org/014bbcf72 Nagasaki Wesleyan University é•·å“Žć‚¦ć‚Øć‚¹ćƒ¬ćƒ¤ćƒ³å¤§å­¦'),
(25954, 'https://ror.org/014bfp158', 'en', 1, 'https://ror.org/014bfp158 OASIS Institute'),
(25955, 'https://ror.org/014bk4g26', 'en', 1, 'https://ror.org/014bk4g26 International Teaching University of Georgia įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ "įƒ’įƒįƒ įƒ’įƒįƒ”įƒįƒšįƒ˜"'),
(25956, 'https://ror.org/014cjmc76', 'en', 1, 'https://ror.org/014cjmc76 Swinburne University of Technology Sarawak Campus'),
(25957, 'https://ror.org/014cke235', 'en', 1, 'https://ror.org/014cke235 Dalat University TrĘ°į»ng ĐẔi hį»c ĐƠ Lįŗ”t UniversitĆ© de Dalat 大叻大学'),
(25958, 'https://ror.org/014cnmj57', 'en', 1, 'https://ror.org/014cnmj57 Duale Hochschule Baden-Württemberg Ravensburg Ravensburg University of Cooperative Education'),
(25959, 'https://ror.org/014e5wn40', 'no_lang_code', 1, 'https://ror.org/014e5wn40 MSV Systems (Czechia)'),
(25960, 'https://ror.org/014e7p840', 'en', 1, 'https://ror.org/014e7p840 Robert Morris University Illinois'),
(25961, 'https://ror.org/014f6m860', 'en', 1, 'https://ror.org/014f6m860 Yelets State University named after Ivan Bunin Елецкий Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им.И.А. Š‘ŃƒŠ½ŠøŠ½Š°'),
(25962, 'https://ror.org/014hxxb31', 'en', 1, 'https://ror.org/014hxxb31 Oryol State University of Economics and Trade ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø торговли'),
(25963, 'https://ror.org/014jej306', 'en', 1, 'https://ror.org/014jej306 Alice Ferguson Foundation'),
(25964, 'https://ror.org/014jqnm52', 'en', 1, 'https://ror.org/014jqnm52 J.C. Bose University of Science & Technology, YMCA'),
(25965, 'https://ror.org/014jyaw47', 'en', 1, 'https://ror.org/014jyaw47 Fukuoka Prefectural University ē¦å²”ēœŒē«‹å¤§å­¦'),
(25966, 'https://ror.org/014mbfe79', 'en', 1, 'https://ror.org/014mbfe79 Fairfax County Park Authority'),
(25967, 'https://ror.org/014napr78', 'en', 1, 'https://ror.org/014napr78 Moscow State Mining University Московский Š³Š¾ŃŃƒŠ“арственный горный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25968, 'https://ror.org/014phfv49', 'en', 1, 'https://ror.org/014phfv49 Kobe College ē„žęˆøå„³å­¦é™¢å¤§å­¦'),
(25969, 'https://ror.org/014pw6s10', 'en', 1, 'https://ror.org/014pw6s10 Public Health Institute Ostrava ZdravotnĆ­ Ćŗstav se sĆ­dlem v Ostravě'),
(25970, 'https://ror.org/014q5e672', 'no_lang_code', 1, 'https://ror.org/014q5e672 Tedom (Czechia)'),
(25971, 'https://ror.org/014qdh252', 'en', 1, 'https://ror.org/014qdh252 Ural State Forestry Engineering University Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25972, 'https://ror.org/014qh1461', 'cs', 1, 'https://ror.org/014qh1461 Regional Museum in Olomouc VlastivědnĆ© Muzeum v Olomouci'),
(25973, 'https://ror.org/014tq2r65', 'en', 1, 'https://ror.org/014tq2r65 Imaginarium of South Texas'),
(25974, 'https://ror.org/014y22g21', 'en', 1, 'https://ror.org/014y22g21 Conseil des universitƩs de l''Ontario Council of Ontario Universities'),
(25975, 'https://ror.org/014yxjm16', 'en', 1, 'https://ror.org/014yxjm16 Moscow State Academy of Water Transport ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ воГного транспорта'),
(25976, 'https://ror.org/014zenb08', 'en', 1, 'https://ror.org/014zenb08 Jāzepa VÄ«tola Latvijas MÅ«zikas akadēmija Jāzeps VÄ«tols Latvian Academy of Music Latvijos Jazepo Vytuolio muzikos akademija Š›Š°Ń‚Š²ŠøŠ¹ŃŠŗŠ°Ń Š¼ŃƒŠ·Ń‹ŠŗŠ°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Язепа Витола'),
(25977, 'https://ror.org/0150mxn38', 'en', 1, 'https://ror.org/0150mxn38 President Ramon Magsaysay State University'),
(25978, 'https://ror.org/01539v588', 'en', 1, 'https://ror.org/01539v588 Oranim Academic College of Education ××•×Ø× ×™× - המכללה ×”××§×“×ž×™×Ŗ לחינוך Ų§ŁˆŲ±Ł†ŁŠŁ…'),
(25979, 'https://ror.org/01563cr83', 'en', 1, 'https://ror.org/01563cr83 Santa Barbara Museum of Art'),
(25980, 'https://ror.org/015bdn754', 'no_lang_code', 1, 'https://ror.org/015bdn754 Hanalei Watershed Hui'),
(25981, 'https://ror.org/015dapv07', 'en', 1, 'https://ror.org/015dapv07 Tajik State Pedagogical University Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии омӯзгории Тоҷикистон ба номи ДаГриГГин Айнӣ ТаГжикский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š”.Айни'),
(25982, 'https://ror.org/015dhy417', 'en', 1, 'https://ror.org/015dhy417 Luther University ė£Øķ„°ėŒ€ķ•™źµ'),
(25983, 'https://ror.org/015es7f77', 'en', 1, 'https://ror.org/015es7f77 Centre international de la photographie Centro internacional de FotografĆ­a International Center of Photography'),
(25984, 'https://ror.org/015f81693', 'en', 1, 'https://ror.org/015f81693 Atlantic Council'),
(25985, 'https://ror.org/015j3ky41', 'en', 1, 'https://ror.org/015j3ky41 Art Academy of Latvia Latvijas Mākslas akadēmija Latvijos dailės akademija Š›Š°Ń‚Š²ŠøŠ¹ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²'),
(25986, 'https://ror.org/015jqsk41', 'en', 1, 'https://ror.org/015jqsk41 Penza State Agricultural Academy Пензенский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25987, 'https://ror.org/015k56t61', 'id', 1, 'https://ror.org/015k56t61 Universitas Tribhuwana Tunggadewi'),
(25988, 'https://ror.org/015kg8q36', 'en', 1, 'https://ror.org/015kg8q36 National University of Study and Research in Law'),
(25989, 'https://ror.org/015mnqg92', 'en', 1, 'https://ror.org/015mnqg92 Italian Cultural Society of Washington D.C.'),
(25990, 'https://ror.org/015n4ka04', 'en', 1, 'https://ror.org/015n4ka04 Webster University Thailand ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø§ąøšąøŖą¹€ąø•ąø­ąø£ą¹Œ'),
(25991, 'https://ror.org/015ndca91', 'en', 1, 'https://ror.org/015ndca91 Three Village Historical Society'),
(25992, 'https://ror.org/015q2z284', 'en', 1, 'https://ror.org/015q2z284 Tsukuba International University ć¤ćć°å›½éš›å¤§å­¦'),
(25993, 'https://ror.org/015t2rt70', 'en', 1, 'https://ror.org/015t2rt70 East Hampton Historical Society'),
(25994, 'https://ror.org/015t4c879', 'id', 1, 'https://ror.org/015t4c879 Universitas Nurtanio'),
(25995, 'https://ror.org/015tjr078', 'en', 1, 'https://ror.org/015tjr078 California Marine Sanctuary Foundation'),
(25996, 'https://ror.org/015va4q78', 'en', 1, 'https://ror.org/015va4q78 Humanitarian Institute of Television and Broadcasting M.A. LitovĆØina Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ Šø Ń€Š°Š“ŠøŠ¾Š²ŠµŃ‰Š°Š½ŠøŃ'),
(25997, 'https://ror.org/015ve7h33', 'en', 1, 'https://ror.org/015ve7h33 Iloilo Science and Technology University Universitas Technologiae et Scientiarum Iloilensis'),
(25998, 'https://ror.org/015vt5466', 'en', 1, 'https://ror.org/015vt5466 Preservation Society of Newport County'),
(25999, 'https://ror.org/015zf4p69', 'en', 1, 'https://ror.org/015zf4p69 Jewish Publication Society'),
(26000, 'https://ror.org/015zw2f19', 'en', 1, 'https://ror.org/015zw2f19 Moscow Technical University of Communication and Informatics Московский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ²ŃŠ·Šø Šø информатики'),
(26001, 'https://ror.org/01628w679', 'en', 1, 'https://ror.org/01628w679 Transport and Telecommunication Institute Transporta un Sakaru InstitÅ«ts Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Транспорта Šø Š”Š²ŃŠ·Šø'),
(26002, 'https://ror.org/0163dw893', 'en', 1, 'https://ror.org/0163dw893 Aichi Mizuho College ę„›ēŸ„ćæćšć»å¤§å­¦'),
(26003, 'https://ror.org/0163jwc47', 'en', 1, 'https://ror.org/0163jwc47 Kutafin Moscow State Law University Московский Š³Š¾ŃŃƒŠ“арственный ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Šž. Š•. ŠšŃƒŃ‚Š°Ń„ŠøŠ½Š°'),
(26004, 'https://ror.org/01652va36', 'en', 1, 'https://ror.org/01652va36 Kenya Highlands University'),
(26005, 'https://ror.org/0165g4976', 'no_lang_code', 1, 'https://ror.org/0165g4976 Selton (Czechia) Výzkumné Centrum Selton'),
(26006, 'https://ror.org/0165s9m45', 'en', 1, 'https://ror.org/0165s9m45 Kabardino-Balkar State Agrarian University ŠšŠ°Š±Š°Ń€Š“ŠøŠ½Š¾-Балкарский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. М. Кокова'),
(26007, 'https://ror.org/01670bg46', 'en', 1, 'https://ror.org/01670bg46 Bahir Dar University į‰£įˆ…įˆ­ į‹³įˆ­ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(26008, 'https://ror.org/0167rnj42', 'en', 1, 'https://ror.org/0167rnj42 Ansbach University of Applied Sciences Hochschule Ansbach'),
(26009, 'https://ror.org/016848p13', 'en', 1, 'https://ror.org/016848p13 Baptist University of the AmƩricas'),
(26010, 'https://ror.org/0168zcn11', 'en', 1, 'https://ror.org/0168zcn11 Korea National University of Arts ķ•œźµ­ģ˜ˆģˆ ģ¢…ķ•©ķ•™źµ'),
(26011, 'https://ror.org/016ahab87', 'en', 1, 'https://ror.org/016ahab87 Alecu Russo State University of Bălți Universitatea de Stat Alecu Russo din Bălți Š‘ŠµŠ»ŃŒŃ†ŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26012, 'https://ror.org/016bpc336', 'en', 1, 'https://ror.org/016bpc336 International Pacific University 環太平擋大学'),
(26013, 'https://ror.org/016ck0282', 'en', 1, 'https://ror.org/016ck0282 Pima County Public Library'),
(26014, 'https://ror.org/016e0xz09', 'en', 1, 'https://ror.org/016e0xz09 Kent State University at Salem'),
(26015, 'https://ror.org/016epqy31', 'en', 1, 'https://ror.org/016epqy31 Kansai University of Welfare Sciences é–¢č„æē¦ē„‰ē§‘å­¦å¤§å­¦'),
(26016, 'https://ror.org/016ezn892', 'en', 1, 'https://ror.org/016ezn892 Freedom Trail Foundation'),
(26017, 'https://ror.org/016gp6x28', 'en', 1, 'https://ror.org/016gp6x28 University of South Florida St. Petersburg'),
(26018, 'https://ror.org/016grcy95', 'en', 1, 'https://ror.org/016grcy95 Takaoka University of Law é«˜å²”ę³•ē§‘å¤§å­¦'),
(26019, 'https://ror.org/016hp9x85', 'en', 1, 'https://ror.org/016hp9x85 Gunma Prefectural Women''s University ē¾¤é¦¬ēœŒē«‹å„³å­å¤§å­¦'),
(26020, 'https://ror.org/016jek077', 'no_lang_code', 1, 'https://ror.org/016jek077 VĆ­tkovice Machinery Group (Czechia)'),
(26021, 'https://ror.org/016jp5513', 'cs', 1, 'https://ror.org/016jp5513 ZĆ”padočeskĆ© Muzeum v Plzni'),
(26022, 'https://ror.org/016mg6236', 'en', 1, 'https://ror.org/016mg6236 Columbia County Historical Society'),
(26023, 'https://ror.org/016mnyy39', 'no_lang_code', 1, 'https://ror.org/016mnyy39 Dekra (Czechia)'),
(26024, 'https://ror.org/016n6yn28', 'id', 1, 'https://ror.org/016n6yn28 Universitas Yudharta Pasuruan'),
(26025, 'https://ror.org/016p6a998', 'en', 1, 'https://ror.org/016p6a998 Ukhta State Technical University'),
(26026, 'https://ror.org/016rpxr13', 'no_lang_code', 1, 'https://ror.org/016rpxr13 Ing. Ivo Herman (Czechia)'),
(26027, 'https://ror.org/016t28114', 'en', 1, 'https://ror.org/016t28114 Negros Oriental State University Pamantasang Estatal ng Negros Oriental'),
(26028, 'https://ror.org/016tn3814', 'en', 1, 'https://ror.org/016tn3814 Komi State Pedagogical Institute Коми Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(26029, 'https://ror.org/016ty7524', 'en', 1, 'https://ror.org/016ty7524 Fort Mason Center'),
(26030, 'https://ror.org/016w0gt88', 'en', 1, 'https://ror.org/016w0gt88 American Institute for Yemeni Studies'),
(26031, 'https://ror.org/016wtjs52', 'no_lang_code', 1, 'https://ror.org/016wtjs52 Sobriety (Czechia) Střízlivost'),
(26032, 'https://ror.org/016xtkd46', 'en', 1, 'https://ror.org/016xtkd46 Cambridge Arts Council'),
(26033, 'https://ror.org/016yc1h10', 'en', 1, 'https://ror.org/016yc1h10 Doon University ą¤¦ą„‚ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(26034, 'https://ror.org/01704t520', 'en', 1, 'https://ror.org/01704t520 Foreign Policy Association'),
(26035, 'https://ror.org/0172hvg27', 'en', 1, 'https://ror.org/0172hvg27 Aichi University ę„›ēŸ„å¤§å­¦'),
(26036, 'https://ror.org/0173r0e90', 'en', 1, 'https://ror.org/0173r0e90 Arellano University'),
(26037, 'https://ror.org/0173s1z72', 'en', 1, 'https://ror.org/0173s1z72 Museum of the Moving Image'),
(26038, 'https://ror.org/01743b883', 'en', 1, 'https://ror.org/01743b883 Central Women''s University ą¦•ą§‡ą¦Øą§ą¦¦ą§ą¦°ą§€ą¦Æą¦¼ মহিলা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(26039, 'https://ror.org/0174xeh18', 'en', 1, 'https://ror.org/0174xeh18 Plains Indians & Pioneers Museum'),
(26040, 'https://ror.org/0175kt397', 'en', 1, 'https://ror.org/0175kt397 Lahore School of Economics'),
(26041, 'https://ror.org/0179yft03', 'en', 1, 'https://ror.org/0179yft03 Indus Valley School of Art and Architecture Ų§Ł†ŚŠŲ³ ŁˆŁŠŁ„ŁŠ Ų§Ų³ŚŖŁˆŁ„ آف آرٽ Ų§ŁŠŁ†ŚŠ Ų¢Ų±ŚŖŁŠŁ½ŁŠŚŖŚ†Ų±'),
(26042, 'https://ror.org/017b2mp08', 'en', 1, 'https://ror.org/017b2mp08 Old Sturbridge Village'),
(26043, 'https://ror.org/017fqwn34', 'en', 1, 'https://ror.org/017fqwn34 Upper Nile University'),
(26044, 'https://ror.org/017fw5s62', 'en', 1, 'https://ror.org/017fw5s62 Des Moines Public Library'),
(26045, 'https://ror.org/017hfdc92', 'en', 1, 'https://ror.org/017hfdc92 Kharkiv University of Humanities People’s Ukrainian Academy Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠŠ°Ń€Š¾Š“Š½Š° ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ» Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠŠ°Ń€Š¾Š“Š½Š°Ń ŃƒŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃĀ»'),
(26046, 'https://ror.org/017mhpd33', 'en', 1, 'https://ror.org/017mhpd33 Massachusetts Library Association'),
(26047, 'https://ror.org/017nqsd88', 'no_lang_code', 1, 'https://ror.org/017nqsd88 Sampurnanand Sanskrit Vishwavidyalaya ą¤øą¤®ą„ą¤Ŗą„‚ą¤°ą„ą¤£ą¤¾ą¤Øą¤Øą„ą¤¦ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®šą®®ąÆą®ŖąÆ‚ą®°ąÆą®£ą®¾ą®©ą®ØąÆą®¤ąÆ ą®šą®®ą®šąÆą®•ą®æą®°ąÆą®¤ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(26048, 'https://ror.org/017qmqm77', 'en', 1, 'https://ror.org/017qmqm77 Americas Society'),
(26049, 'https://ror.org/017sgna85', 'en', 1, 'https://ror.org/017sgna85 University Medical Center of Southern Nevada'),
(26050, 'https://ror.org/017tesn46', 'en', 1, 'https://ror.org/017tesn46 Orel State Agrarian University ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(26051, 'https://ror.org/017v7rz39', 'no_lang_code', 1, 'https://ror.org/017v7rz39 Singidunum University Универзитет ДингиГунум'),
(26052, 'https://ror.org/017vp5k51', 'en', 1, 'https://ror.org/017vp5k51 Saratov State Academy of Law Š”Š°Ń€Š°Ń‚Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(26053, 'https://ror.org/017wcen79', 'en', 1, 'https://ror.org/017wcen79 Alabama Public Library Service'),
(26054, 'https://ror.org/017wmdt28', 'en', 1, 'https://ror.org/017wmdt28 S. Toraighyrov Pavlodar State University Торайғыров атынГағы ŠŸŠ°Š²Š»Š¾Š“Š°Ń€ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(26055, 'https://ror.org/017ybv328', 'no_lang_code', 1, 'https://ror.org/017ybv328 TES Vsetƍn (Czechia)'),
(26056, 'https://ror.org/017yg8081', 'no_lang_code', 1, 'https://ror.org/017yg8081 PPM Factum Research'),
(26057, 'https://ror.org/0183bt791', 'en', 1, 'https://ror.org/0183bt791 Rhode Island Department of Environmental Management'),
(26058, 'https://ror.org/01845nt85', 'id', 1, 'https://ror.org/01845nt85 Universitas Pendidikan Putra Indonesia Cianjur'),
(26059, 'https://ror.org/01846yk50', 'no_lang_code', 1, 'https://ror.org/01846yk50 Chuo Kikuu cha Teofilo Kisanji Teofilo Kisanji University'),
(26060, 'https://ror.org/0184f3p11', 'en', 1, 'https://ror.org/0184f3p11 Central Mindanao University'),
(26061, 'https://ror.org/018528593', 'en', 1, 'https://ror.org/018528593 Nyenrode Business Universiteit Nyenrode Business University'),
(26062, 'https://ror.org/018av9q43', 'en', 1, 'https://ror.org/018av9q43 Association for Recorded Sound Collections'),
(26063, 'https://ror.org/018cbs791', 'en', 1, 'https://ror.org/018cbs791 Salt Lake City Public Library'),
(26064, 'https://ror.org/018cj0796', 'en', 1, 'https://ror.org/018cj0796 Japanese American Citizens League'),
(26065, 'https://ror.org/018cmez05', 'en', 1, 'https://ror.org/018cmez05 Adventist HealthCare Shady Grove Medical Center'),
(26066, 'https://ror.org/018ey4p62', 'no_lang_code', 1, 'https://ror.org/018ey4p62 Advanced Hall Sensors (United Kingdom)'),
(26067, 'https://ror.org/018g81q42', 'en', 1, 'https://ror.org/018g81q42 Comisión Histórica de Texas Texas Historical Commission'),
(26068, 'https://ror.org/018gqjy33', 'en', 1, 'https://ror.org/018gqjy33 Charleston Museum'),
(26069, 'https://ror.org/018gzjd49', 'en', 1, 'https://ror.org/018gzjd49 Bataan Peninsula State University'),
(26070, 'https://ror.org/018h19434', 'en', 1, 'https://ror.org/018h19434 Institute of Practical Oriental Studies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ практического Š²Š¾ŃŃ‚Š¾ŠŗŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(26071, 'https://ror.org/018jdfk45', 'en', 1, 'https://ror.org/018jdfk45 Jiaying University å˜‰åŗ”å­¦é™¢'),
(26072, 'https://ror.org/018jek817', 'no_lang_code', 1, 'https://ror.org/018jek817 Shuchiin University 種智院大学'),
(26073, 'https://ror.org/018kzpw73', 'en', 1, 'https://ror.org/018kzpw73 Krasnodar University of Ministry of Internal Affairs of Russia ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ’Š” России'),
(26074, 'https://ror.org/018mf9d35', 'en', 1, 'https://ror.org/018mf9d35 Tashkent Financial Institute Toshkent Moliya Instituti Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Финансовый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(26075, 'https://ror.org/018nbkm47', 'en', 1, 'https://ror.org/018nbkm47 L. C. Bates Museum'),
(26076, 'https://ror.org/018p1hd91', 'en', 1, 'https://ror.org/018p1hd91 Kainan University é–‹å—å¤§å­ø'),
(26077, 'https://ror.org/018pdh902', 'en', 1, 'https://ror.org/018pdh902 Anyang University ģ•ˆģ–‘ėŒ€ķ•™źµ'),
(26078, 'https://ror.org/018qe6n41', 'en', 1, 'https://ror.org/018qe6n41 International Humanitarian and Economic Institute ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(26079, 'https://ror.org/018sv0913', 'en', 1, 'https://ror.org/018sv0913 McGill-Queen''s University Press'),
(26080, 'https://ror.org/018tkrn90', 'id', 1, 'https://ror.org/018tkrn90 Universitas Islam Batik'),
(26081, 'https://ror.org/018vp6382', 'no_lang_code', 1, 'https://ror.org/018vp6382 ASICentrum (Czechia)'),
(26082, 'https://ror.org/018vvrr03', 'id', 1, 'https://ror.org/018vvrr03 Universitas Gajayana Malang'),
(26083, 'https://ror.org/018wdpk10', 'no_lang_code', 1, 'https://ror.org/018wdpk10 GeneProof (Czechia)'),
(26084, 'https://ror.org/018zgez30', 'en', 1, 'https://ror.org/018zgez30 Hammond Castle Museum'),
(26085, 'https://ror.org/0191rk783', 'id', 1, 'https://ror.org/0191rk783 Universitas Sains Al-Qur''an'),
(26086, 'https://ror.org/0191vmf59', 'en', 1, 'https://ror.org/0191vmf59 Ocean County Library'),
(26087, 'https://ror.org/0192kva73', 'en', 1, 'https://ror.org/0192kva73 Teton County Library'),
(26088, 'https://ror.org/0194nje30', 'id', 1, 'https://ror.org/0194nje30 Universitas Kuningan'),
(26089, 'https://ror.org/0195p5j91', 'en', 1, 'https://ror.org/0195p5j91 Hawaii Department of Defense'),
(26090, 'https://ror.org/01960yv21', 'en', 1, 'https://ror.org/01960yv21 Columbia River Inter-Tribal Fish Commission'),
(26091, 'https://ror.org/019787q29', 'en', 1, 'https://ror.org/019787q29 UCSI University Universiti UCSI'),
(26092, 'https://ror.org/01981np70', 'en', 1, 'https://ror.org/01981np70 Tenshi College 天使大学'),
(26093, 'https://ror.org/0198m6535', 'en', 1, 'https://ror.org/0198m6535 Faculty of Polymer Technology Fakulteta za Tehnologijo Polimerov'),
(26094, 'https://ror.org/01992n513', 'en', 1, 'https://ror.org/01992n513 Lexington Historical Society'),
(26095, 'https://ror.org/019cqkm24', 'en', 1, 'https://ror.org/019cqkm24 Cannon Cancer Ministry'),
(26096, 'https://ror.org/019cy2194', 'en', 1, 'https://ror.org/019cy2194 Kyiv International University ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ міжнароГний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26097, 'https://ror.org/019en2y21', 'en', 1, 'https://ror.org/019en2y21 Batangas State University Pambansang Pamantasan ng Batangas'),
(26098, 'https://ror.org/019j0kq88', 'en', 1, 'https://ror.org/019j0kq88 International Tennis Hall of Fame'),
(26099, 'https://ror.org/019jcfv68', 'en', 1, 'https://ror.org/019jcfv68 American Bar Association Fund for Justice and Education'),
(26100, 'https://ror.org/019kr0669', 'en', 1, 'https://ror.org/019kr0669 Southwest University of Visual Arts'),
(26101, 'https://ror.org/019n6wd93', 'en', 1, 'https://ror.org/019n6wd93 St. Paul University Manila'),
(26102, 'https://ror.org/019nq5750', 'no_lang_code', 1, 'https://ror.org/019nq5750 Tieto (Czechia)'),
(26103, 'https://ror.org/019qp0530', 'id', 1, 'https://ror.org/019qp0530 Universitas Boyolali'),
(26104, 'https://ror.org/019v5rt51', 'en', 1, 'https://ror.org/019v5rt51 Wallenberg Institute of Special Education and Psychology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ пеГагогики Šø психологии'),
(26105, 'https://ror.org/019vbp610', 'en', 1, 'https://ror.org/019vbp610 Siberian State University of Telecommunications and Informatics Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹ Šø информатики'),
(26106, 'https://ror.org/019xw1562', 'en', 1, 'https://ror.org/019xw1562 Instituto de Arte de MineƔpolis Minneapolis Institute of Arts'),
(26107, 'https://ror.org/019z71x08', 'en', 1, 'https://ror.org/019z71x08 Kijowski Narodowy Uniwersytet Ekonomiczny im. Wadyma Hetmana Kyiv National Economic University named after Vadym Hetman Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВаГима Š“ŠµŃ‚ŃŒŠ¼Š°Š½Š°'),
(26108, 'https://ror.org/01a0xg480', 'no_lang_code', 1, 'https://ror.org/01a0xg480 STV Group (Czechia)'),
(26109, 'https://ror.org/01a1mkv71', 'en', 1, 'https://ror.org/01a1mkv71 Dayton Art Institute'),
(26110, 'https://ror.org/01a233t53', 'en', 1, 'https://ror.org/01a233t53 Moscow State Art and Industry Academy named after SG Stroganov ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š¾-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Š”. Š“. Дтроганова'),
(26111, 'https://ror.org/01a26qd14', 'en', 1, 'https://ror.org/01a26qd14 American Littoral Society'),
(26112, 'https://ror.org/01a2dv184', 'no_lang_code', 1, 'https://ror.org/01a2dv184 Fine (Czechia)'),
(26113, 'https://ror.org/01a3vkf51', 'en', 1, 'https://ror.org/01a3vkf51 Harold Washington College'),
(26114, 'https://ror.org/01a3w2x24', 'no_lang_code', 1, 'https://ror.org/01a3w2x24 Magadh University मगध ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(26115, 'https://ror.org/01a3wy042', 'es', 1, 'https://ror.org/01a3wy042 Fundación Vía Libre'),
(26116, 'https://ror.org/01a4bey28', 'en', 1, 'https://ror.org/01a4bey28 Polish Open University Wyższa Szkoła Zarządzania'),
(26117, 'https://ror.org/01a4tb013', 'en', 1, 'https://ror.org/01a4tb013 World Turtle Trust'),
(26118, 'https://ror.org/01a4wvs18', 'en', 1, 'https://ror.org/01a4wvs18 Eastern Liaoning University č¾½äøœå­¦é™¢'),
(26119, 'https://ror.org/01a6gjq30', 'id', 1, 'https://ror.org/01a6gjq30 Universitas Methodist Indonesia'),
(26120, 'https://ror.org/01a7snz60', 'en', 1, 'https://ror.org/01a7snz60 Hochschule für Fernsehen und Film München University of Television and Film Munich'),
(26121, 'https://ror.org/01a9q0j25', 'en', 1, 'https://ror.org/01a9q0j25 Enoch Pratt Free Library'),
(26122, 'https://ror.org/01aa0f770', 'en', 1, 'https://ror.org/01aa0f770 Archaeology Society of Staten Island'),
(26123, 'https://ror.org/01aa4jj71', 'en', 1, 'https://ror.org/01aa4jj71 Internacionalni univerzitet u Sarajevu International University of Sarajevo Međunarodno sveučiliÅ”te u Sarajevu'),
(26124, 'https://ror.org/01aa9v197', 'no_lang_code', 1, 'https://ror.org/01aa9v197 Zbrojovka VsetĆ­n (Czechia)'),
(26125, 'https://ror.org/01aacw488', 'en', 1, 'https://ror.org/01aacw488 Historic St. Mary’s City Commission'),
(26126, 'https://ror.org/01aadv713', 'en', 1, 'https://ror.org/01aadv713 Herzegovina University SveučiliŔte Hercegovina'),
(26127, 'https://ror.org/01abaah21', 'en', 1, 'https://ror.org/01abaah21 Hį»c viện NĆ“ng nghiệp Việt Nam UniversitĆ© d''agriculture de hanoĆÆ Vietnam National University of Agriculture'),
(26128, 'https://ror.org/01abd7j14', 'cs', 1, 'https://ror.org/01abd7j14 Ústav ArcheologickĆ© PamĆ”tkovĆ© PĆ©Äe SeverozĆ”padnĆ­ch Čech'),
(26129, 'https://ror.org/01abtgj51', 'en', 1, 'https://ror.org/01abtgj51 Gandhigram Rural Institute ą¤—ą„ą¤°ą¤¾ą¤ą¤§ą„€ą¤—ą„ą¤°ą¤¾ą¤® ą¤—ą„ą¤°ą¤¾ą¤®ą„€ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®•ą®¾ą®ØąÆą®¤ą®æ ą®•ą®æą®°ą®¾ą®®ą®®ąÆ ą®•ą®æą®°ą®¾ą®®ą®æą®Æą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“—ą“¾ą“Øąµą“§ą“æą“—ąµą“°ą“¾ą“‚ ą“•ą“²ąµą“Ŗą“æą“¤ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(26130, 'https://ror.org/01aebfd38', 'no_lang_code', 1, 'https://ror.org/01aebfd38 Ortep (Czechia)'),
(26131, 'https://ror.org/01aepry57', 'en', 1, 'https://ror.org/01aepry57 AlMughtaribeen University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŲŗŲŖŲ±ŲØŁŠŁ†'),
(26132, 'https://ror.org/01afz1h27', 'en', 1, 'https://ror.org/01afz1h27 Minnesota State Community and Technical College'),
(26133, 'https://ror.org/01agfg023', 'en', 1, 'https://ror.org/01agfg023 Detroit Historical Society'),
(26134, 'https://ror.org/01ah0xq26', 'id', 1, 'https://ror.org/01ah0xq26 Universitas Sjakhyakirti'),
(26135, 'https://ror.org/01aj86x04', 'en', 1, 'https://ror.org/01aj86x04 National Constitution Center'),
(26136, 'https://ror.org/01ak8sk10', 'en', 1, 'https://ror.org/01ak8sk10 Wayne County Community College District'),
(26137, 'https://ror.org/01akgs808', 'en', 1, 'https://ror.org/01akgs808 National Transport University ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ транспортний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26138, 'https://ror.org/01amn0803', 'en', 1, 'https://ror.org/01amn0803 Waljat Colleges of Applied Sciences ŁƒŁ„ŁŠŲ©ŁˆŁ„Ų¬Ų§ŲŖ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(26139, 'https://ror.org/01anxqg21', 'en', 1, 'https://ror.org/01anxqg21 Vyatka State University Š’ŃŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26140, 'https://ror.org/01apvpc22', 'no_lang_code', 1, 'https://ror.org/01apvpc22 Summa (Czechia)'),
(26141, 'https://ror.org/01aq4v448', 'no_lang_code', 1, 'https://ror.org/01aq4v448 Dias Turnov (Czechia)'),
(26142, 'https://ror.org/01aqm4b31', 'en', 1, 'https://ror.org/01aqm4b31 Chrysler Museum of Art'),
(26143, 'https://ror.org/01asa8g02', 'en', 1, 'https://ror.org/01asa8g02 Tongmyong University ė™ėŖ… ėŒ€ķ•™źµ'),
(26144, 'https://ror.org/01asxey89', 'en', 1, 'https://ror.org/01asxey89 Please Touch Museum'),
(26145, 'https://ror.org/01atxym92', 'en', 1, 'https://ror.org/01atxym92 Peabody Institute Library'),
(26146, 'https://ror.org/01avkfv81', 'en', 1, 'https://ror.org/01avkfv81 Baqir Al-Olum University دانؓگاه ŲØŲ§Ł‚Ų±Ų§Ł„Ų¹Ł„ŁˆŁ…'),
(26147, 'https://ror.org/01awa7g66', 'en', 1, 'https://ror.org/01awa7g66 Lakeland College'),
(26148, 'https://ror.org/01ayynt22', 'en', 1, 'https://ror.org/01ayynt22 Calvert Marine Museum'),
(26149, 'https://ror.org/01azf6k87', 'en', 1, 'https://ror.org/01azf6k87 Malcolm X College'),
(26150, 'https://ror.org/01b15w051', 'en', 1, 'https://ror.org/01b15w051 Institut Manajemen Telkom Telkom Institute of Management'),
(26151, 'https://ror.org/01b1rvg28', 'en', 1, 'https://ror.org/01b1rvg28 Daegu Arts University ėŒ€źµ¬ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(26152, 'https://ror.org/01b33j376', 'en', 1, 'https://ror.org/01b33j376 Academy of Fine Arts in Katowice Akademia Sztuk Pięknych w Katowicach'),
(26153, 'https://ror.org/01b54nd92', 'en', 1, 'https://ror.org/01b54nd92 AJINIYOZ NOMIDAGI NUKUS DAVLAT PEDAGOGIKA INSTITUTI Nukus State Pedagogical Institute named after Ajiniyaz'),
(26154, 'https://ror.org/01b5krq60', 'en', 1, 'https://ror.org/01b5krq60 Arhoolie Foundation'),
(26155, 'https://ror.org/01b8htz39', 'en', 1, 'https://ror.org/01b8htz39 Poltava University of Economics and Trade ŠŸŠ¾Š»Ń‚Š°Š²ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø торговли ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ економіки і торгівлі'),
(26156, 'https://ror.org/01b8wwr26', 'no_lang_code', 1, 'https://ror.org/01b8wwr26 University Hospital Center Dr DragiÅ”a MiÅ”ović ŠšŠ»ŠøŠ½ŠøŃ‡ŠŗŠ¾-болнички центар Др Š”Ń€Š°Š³ŠøŃˆŠ° ŠœŠøŃˆŠ¾Š²ŠøŃ›-Š”ŠµŠ“ŠøŃšŠµ'),
(26157, 'https://ror.org/01ba09j13', 'no_lang_code', 1, 'https://ror.org/01ba09j13 Edinburgh Instruments (United Kingdom)'),
(26158, 'https://ror.org/01bawjd60', 'en', 1, 'https://ror.org/01bawjd60 Municipal Art Society of New York'),
(26159, 'https://ror.org/01bb96d76', 'id', 1, 'https://ror.org/01bb96d76 Universitas Musi Rawas'),
(26160, 'https://ror.org/01bdmvf66', 'id', 1, 'https://ror.org/01bdmvf66 Institut Teknologi Nasional Malang'),
(26161, 'https://ror.org/01bf2c792', 'no_lang_code', 1, 'https://ror.org/01bf2c792 ING Corporation (Czechia)'),
(26162, 'https://ror.org/01bgnmj50', 'en', 1, 'https://ror.org/01bgnmj50 Bryan College'),
(26163, 'https://ror.org/01bhqx716', 'en', 1, 'https://ror.org/01bhqx716 Moscow New Law Institute Московский ŠŠ¾Š²Ń‹Š¹ ЮриГический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(26164, 'https://ror.org/01bjw7k75', 'en', 1, 'https://ror.org/01bjw7k75 Gelato University'),
(26165, 'https://ror.org/01bkha031', 'en', 1, 'https://ror.org/01bkha031 International University in Moscow ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Москве'),
(26166, 'https://ror.org/01bmg2a15', 'en', 1, 'https://ror.org/01bmg2a15 Islom Karimov nomidagi Toshkent davlat texnika universiteti Tashkent State Technical University named after Islam Karimov'),
(26167, 'https://ror.org/01bnbne13', 'en', 1, 'https://ror.org/01bnbne13 Rochester Hills Public Library'),
(26168, 'https://ror.org/01bndk311', 'en', 1, 'https://ror.org/01bndk311 Berkeley Public Library'),
(26169, 'https://ror.org/01bp4wd47', 'en', 1, 'https://ror.org/01bp4wd47 Aklan State University'),
(26170, 'https://ror.org/01bq0zt34', 'no_lang_code', 1, 'https://ror.org/01bq0zt34 HVM Plasma (Czechia)'),
(26171, 'https://ror.org/01bq81t66', 'en', 1, 'https://ror.org/01bq81t66 Philippine Women''s University'),
(26172, 'https://ror.org/01bt5mj78', 'en', 1, 'https://ror.org/01bt5mj78 Quchan University of Advanced Technology دانؓگاه Ł…Ł‡Ł†ŲÆŲ³ŪŒ ŁŁ†Ų§ŁˆŲ±ŪŒā€ŒŁ‡Ų§ŪŒ Ł†ŁˆŪŒŁ† Ł‚ŁˆŚ†Ų§Ł†'),
(26173, 'https://ror.org/01bw8k626', 'no_lang_code', 1, 'https://ror.org/01bw8k626 SHM (Czechia)'),
(26174, 'https://ror.org/01bwbjs64', 'id', 1, 'https://ror.org/01bwbjs64 Universitas Katolik Santo Thomas'),
(26175, 'https://ror.org/01bx6mz39', 'no_lang_code', 1, 'https://ror.org/01bx6mz39 Dekonta (Czechia)'),
(26176, 'https://ror.org/01bxsr356', 'en', 1, 'https://ror.org/01bxsr356 Hansei University ķ•œģ„øėŒ€ķ•™źµ'),
(26177, 'https://ror.org/01bz4gq06', 'en', 1, 'https://ror.org/01bz4gq06 University of Management TISBI Университет Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ "Š¢Š˜Š”Š‘Š˜"'),
(26178, 'https://ror.org/01bzvkv54', 'en', 1, 'https://ror.org/01bzvkv54 Chugye University for the Arts ģ¶”ź³„ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(26179, 'https://ror.org/01c07rv55', 'en', 1, 'https://ror.org/01c07rv55 Spring Lake District Library'),
(26180, 'https://ror.org/01c2b7840', 'en', 1, 'https://ror.org/01c2b7840 Center for Anti-Slavery Studies'),
(26181, 'https://ror.org/01c2d8v48', 'en', 1, 'https://ror.org/01c2d8v48 International Association for Continuing Engineering Education Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ•ŠŠ•Š”Š–ŠœŠ•ŠŠ¢Š И Š Š«ŠŠšŠ'),
(26182, 'https://ror.org/01c2m5m96', 'en', 1, 'https://ror.org/01c2m5m96 Alaska State Library'),
(26183, 'https://ror.org/01c3xmp59', 'en', 1, 'https://ror.org/01c3xmp59 State University of Land Use Planning Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ по Š·ŠµŠ¼Š»ŠµŃƒŃŃ‚Ń€Š¾Š¹ŃŃ‚Š²Ńƒ'),
(26184, 'https://ror.org/01c4p4327', 'id', 1, 'https://ror.org/01c4p4327 Universitas Darwan Ali'),
(26185, 'https://ror.org/01c5aqg65', 'en', 1, 'https://ror.org/01c5aqg65 Bulacan State University Pamantasang Pampamahalaang Bulacan'),
(26186, 'https://ror.org/01c81a459', 'en', 1, 'https://ror.org/01c81a459 Holy Name University'),
(26187, 'https://ror.org/01cayw543', 'en', 1, 'https://ror.org/01cayw543 North Dakota Superintendent of Public Instruction'),
(26188, 'https://ror.org/01ccvyq03', 'en', 1, 'https://ror.org/01ccvyq03 Gretsa University'),
(26189, 'https://ror.org/01cczbd45', 'no_lang_code', 1, 'https://ror.org/01cczbd45 PrimeCell Therapeutics (Czechia)'),
(26190, 'https://ror.org/01cewnk49', 'no_lang_code', 1, 'https://ror.org/01cewnk49 Associated British Foods (United Kingdom)'),
(26191, 'https://ror.org/01cg6kh39', 'en', 1, 'https://ror.org/01cg6kh39 Far Eastern University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŸąø²ąø£ą¹Œąø­ąøµąøŖą¹€ąø—ąø­ąø£ą¹Œąø™'),
(26192, 'https://ror.org/01ch6q924', 'en', 1, 'https://ror.org/01ch6q924 Globis University Graduate School of Management ć‚°ćƒ­ćƒ¼ćƒ“ć‚¹ēµŒå–¶å¤§å­¦é™¢å¤§å­¦'),
(26193, 'https://ror.org/01chwg263', 'en', 1, 'https://ror.org/01chwg263 St. George''s School'),
(26194, 'https://ror.org/01cj4g713', 'no_lang_code', 1, 'https://ror.org/01cj4g713 Ashiwi Awan Museum and Heritage Center'),
(26195, 'https://ror.org/01cn1fp33', 'en', 1, 'https://ror.org/01cn1fp33 Hibbing Public Library'),
(26196, 'https://ror.org/01cnqpt53', 'en', 1, 'https://ror.org/01cnqpt53 Jain University'),
(26197, 'https://ror.org/01crwkz66', 'en', 1, 'https://ror.org/01crwkz66 Fatoni University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŸąø²ąøąø­ąø™ąøµ'),
(26198, 'https://ror.org/01ct2zf81', 'en', 1, 'https://ror.org/01ct2zf81 North Dakota State Railroad Museum'),
(26199, 'https://ror.org/01cxrck43', 'en', 1, 'https://ror.org/01cxrck43 Connecticut River Joint Commissions'),
(26200, 'https://ror.org/01cyq8n55', 'en', 1, 'https://ror.org/01cyq8n55 Asia University 亜瓰亜大学'),
(26201, 'https://ror.org/01cyvd251', 'pl', 1, 'https://ror.org/01cyvd251 Wyższa Szkoła Zarządzania i Administracji w Opolu'),
(26202, 'https://ror.org/01d0v9064', 'en', 1, 'https://ror.org/01d0v9064 Virginia Department of Conservation and Recreation'),
(26203, 'https://ror.org/01d1mtx18', 'en', 1, 'https://ror.org/01d1mtx18 Stillwater Public Library'),
(26204, 'https://ror.org/01d30w739', 'en', 1, 'https://ror.org/01d30w739 Deutsche Universität für Verwaltungswissenschaften Speyer German University of Administrative Sciences'),
(26205, 'https://ror.org/01d357781', 'en', 1, 'https://ror.org/01d357781 Institut Bisnis dan Informatika Kwik Kian Gie Kwik Kian Gie School of Business'),
(26206, 'https://ror.org/01d3jsk91', 'en', 1, 'https://ror.org/01d3jsk91 Phetchaburi Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąøžąøŠąø£ąøšąøøąø£ąøµ'),
(26207, 'https://ror.org/01d3tej48', 'en', 1, 'https://ror.org/01d3tej48 University of New York Tirana'),
(26208, 'https://ror.org/01d4s2403', 'en', 1, 'https://ror.org/01d4s2403 Prince William County Public Schools'),
(26209, 'https://ror.org/01d5d9q11', 'no_lang_code', 1, 'https://ror.org/01d5d9q11 VodohospodÔřský Rozvoj a Výstavba'),
(26210, 'https://ror.org/01d606394', 'en', 1, 'https://ror.org/01d606394 Shoshone Episcopal Mission'),
(26211, 'https://ror.org/01d6nwa88', 'no_lang_code', 1, 'https://ror.org/01d6nwa88 Hajvery University جامعہ ہجویری'),
(26212, 'https://ror.org/01d763831', 'en', 1, 'https://ror.org/01d763831 Siberian State Industrial University Дибирский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26213, 'https://ror.org/01d81q939', 'en', 1, 'https://ror.org/01d81q939 National Open University åœ‹ē«‹ē©ŗäø­å¤§å­ø'),
(26214, 'https://ror.org/01dafqj83', 'en', 1, 'https://ror.org/01dafqj83 Japan Lutheran College ćƒ«ćƒ¼ćƒ†ćƒ«å­¦é™¢å¤§å­¦'),
(26215, 'https://ror.org/01dbbhw70', 'en', 1, 'https://ror.org/01dbbhw70 Bashkir Academy of Public Administration and Management under the Head of the Republic of Bashkortostan Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при Главе Республики Š‘Š°ŃˆŠŗŠ¾Ń€Ń‚Š¾ŃŃ‚Š°Š½'),
(26216, 'https://ror.org/01dfpjy51', 'en', 1, 'https://ror.org/01dfpjy51 Gulf University ŁƒŁ„ŁŠŲ© Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(26217, 'https://ror.org/01dfsmx55', 'en', 1, 'https://ror.org/01dfsmx55 De Anza College'),
(26218, 'https://ror.org/01dgmap57', 'en', 1, 'https://ror.org/01dgmap57 Saskatchewan Registered Nurses Association'),
(26219, 'https://ror.org/01djkf495', 'en', 1, 'https://ror.org/01djkf495 BaiCheng Normal University ē™½åŸŽåøˆčŒƒå­¦é™¢'),
(26220, 'https://ror.org/01dk2f490', 'en', 1, 'https://ror.org/01dk2f490 Newton Public Schools'),
(26221, 'https://ror.org/01dnm0v11', 'en', 1, 'https://ror.org/01dnm0v11 Historic Northampton'),
(26222, 'https://ror.org/01drxfn09', 'en', 1, 'https://ror.org/01drxfn09 American Film Institute'),
(26223, 'https://ror.org/01dssfj41', 'en', 1, 'https://ror.org/01dssfj41 University Memory and Aging Center'),
(26224, 'https://ror.org/01dtz7721', 'en', 1, 'https://ror.org/01dtz7721 Shelburne Museum'),
(26225, 'https://ror.org/01dv2a529', 'no_lang_code', 1, 'https://ror.org/01dv2a529 University of Novi Pazar Univerzitet u Novom Pazaru'),
(26226, 'https://ror.org/01dw2jw22', 'en', 1, 'https://ror.org/01dw2jw22 National Museum of African Art'),
(26227, 'https://ror.org/01e0a6275', 'no_lang_code', 1, 'https://ror.org/01e0a6275 Military Research Institute Vojenský Výzkumný Ústav'),
(26228, 'https://ror.org/01e0ns064', 'en', 1, 'https://ror.org/01e0ns064 University of East ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ آف Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś±ŲŒ آرٽس، سائنس Ų§ŁŠŁ†ŚŠ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠā€Ž'),
(26229, 'https://ror.org/01e0p8e37', 'en', 1, 'https://ror.org/01e0p8e37 China Youth University for Political Sciences äø­å›½é’å¹“ę”æę²»å­¦é™¢'),
(26230, 'https://ror.org/01e0stw12', 'en', 1, 'https://ror.org/01e0stw12 Universitatea de Vest Vasile Goldiș din Arad Vasile Goldis Western University of Arad'),
(26231, 'https://ror.org/01e15b368', 'no_lang_code', 1, 'https://ror.org/01e15b368 ƚVP Běchovice (Czechia)'),
(26232, 'https://ror.org/01e249g49', 'en', 1, 'https://ror.org/01e249g49 Point University'),
(26233, 'https://ror.org/01e3ztx72', 'en', 1, 'https://ror.org/01e3ztx72 Oregon Zoo'),
(26234, 'https://ror.org/01e438y82', 'en', 1, 'https://ror.org/01e438y82 White House Historical Association'),
(26235, 'https://ror.org/01e5xrj50', 'no_lang_code', 1, 'https://ror.org/01e5xrj50 Elko Ep (Czechia)'),
(26236, 'https://ror.org/01e6gz331', 'en', 1, 'https://ror.org/01e6gz331 Armenian State University of Economics Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ ÕæÕ¶ÕæÕ„Õ½Õ”Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(26237, 'https://ror.org/01e8b7f16', 'en', 1, 'https://ror.org/01e8b7f16 La Salle University Pamantasang La Salle ng Ozamis'),
(26238, 'https://ror.org/01e8byp18', 'en', 1, 'https://ror.org/01e8byp18 Pamantasang Kristiyano ng Pilipinas Philippine Christian University'),
(26239, 'https://ror.org/01e8sd806', 'en', 1, 'https://ror.org/01e8sd806 Himalayan University'),
(26240, 'https://ror.org/01e9k5563', 'en', 1, 'https://ror.org/01e9k5563 New Hanover County Public Library'),
(26241, 'https://ror.org/01ea9yh77', 'en', 1, 'https://ror.org/01ea9yh77 Magic Valley Arts Council'),
(26242, 'https://ror.org/01ede0v48', 'en', 1, 'https://ror.org/01ede0v48 Potomac River Fisheries Commission'),
(26243, 'https://ror.org/01edg5683', 'en', 1, 'https://ror.org/01edg5683 Nevada Department of Tourism and Cultural Affairs'),
(26244, 'https://ror.org/01efqy167', 'en', 1, 'https://ror.org/01efqy167 Pambansang Pamantasan ng Tarlac Tarlac State University'),
(26245, 'https://ror.org/01egc7v56', 'en', 1, 'https://ror.org/01egc7v56 Camden County Historical Society'),
(26246, 'https://ror.org/01egvzq87', 'en', 1, 'https://ror.org/01egvzq87 Louisiana Baptist University'),
(26247, 'https://ror.org/01epw0x06', 'en', 1, 'https://ror.org/01epw0x06 Fahd bin Sultan University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± فهد بن سلطان'),
(26248, 'https://ror.org/01eq17163', 'en', 1, 'https://ror.org/01eq17163 James V Brown Library'),
(26249, 'https://ror.org/01eqdrh28', 'en', 1, 'https://ror.org/01eqdrh28 Thousand Islands Museum'),
(26250, 'https://ror.org/01eqf3s47', 'en', 1, 'https://ror.org/01eqf3s47 Tyumen State Academy of World Economics, Management and Law Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ мировой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(26251, 'https://ror.org/01erfz980', 'en', 1, 'https://ror.org/01erfz980 Donbas State Technical University Донбасский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š”Š¾Š½Š±Š°ŃŃŒŠŗŠøŠ¹ Гержавний технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26252, 'https://ror.org/01etj5m31', 'en', 1, 'https://ror.org/01etj5m31 Oregon Department of State Lands'),
(26253, 'https://ror.org/01etn5q21', 'en', 1, 'https://ror.org/01etn5q21 Tokyo Fuji University ę±äŗ¬åÆŒå£«å¤§å­¦'),
(26254, 'https://ror.org/01etvnv23', 'en', 1, 'https://ror.org/01etvnv23 Polish University Abroad'),
(26255, 'https://ror.org/01ewram45', 'en', 1, 'https://ror.org/01ewram45 International University of Business and Law ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±Ń–Š·Š½ŠµŃŃƒ і права'),
(26256, 'https://ror.org/01ewxsd47', 'en', 1, 'https://ror.org/01ewxsd47 Russian State Vocational Pedagogical University Российский Š³Š¾ŃŃƒŠ“арственный ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26257, 'https://ror.org/01exjg943', 'no_lang_code', 1, 'https://ror.org/01exjg943 Fukuyama Heisei University ē¦å±±å¹³ęˆå¤§å­¦'),
(26258, 'https://ror.org/01ezcv773', 'en', 1, 'https://ror.org/01ezcv773 Interregional Academy of Personnel Management Międzyregionalna Akademia Zarządzania Personelem w Kijowie ŠœŠµŠ¶Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ персоналом ŠœŃ–Š¶Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń персоналом'),
(26259, 'https://ror.org/01f1fsr30', 'en', 1, 'https://ror.org/01f1fsr30 Saigon University TrĘ°į»ng ĐẔi hį»c SĆ i Gòn UniversitĆ© de saigon 脿蓔大学'),
(26260, 'https://ror.org/01f1ses45', 'en', 1, 'https://ror.org/01f1ses45 Ivano-Frankivsk National Technical University of Oil and Gas Івано-Š¤Ń€Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ нафти і газу'),
(26261, 'https://ror.org/01f3q9353', 'en', 1, 'https://ror.org/01f3q9353 Cedar Rapids Public Library'),
(26262, 'https://ror.org/01f42q428', 'en', 1, 'https://ror.org/01f42q428 Center for Asian American Media'),
(26263, 'https://ror.org/01f4b0a81', 'en', 1, 'https://ror.org/01f4b0a81 Friends of the Saint Paul Public Library'),
(26264, 'https://ror.org/01f51gm92', 'en', 1, 'https://ror.org/01f51gm92 Mindanao State University Naawan'),
(26265, 'https://ror.org/01f5z6908', 'en', 1, 'https://ror.org/01f5z6908 Massachusetts Archives'),
(26266, 'https://ror.org/01far4758', 'en', 1, 'https://ror.org/01far4758 Delaware County Historical Association'),
(26267, 'https://ror.org/01favr389', 'en', 1, 'https://ror.org/01favr389 Saint Petersburg State University of Architecture and Civil Engineering Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26268, 'https://ror.org/01fazjm63', 'en', 1, 'https://ror.org/01fazjm63 FacultƩ pontificale de thƩologie saint-bonaventure Pontifical University of St. Bonaventure Pontificia FacoltƠ Teologica San Bonaventura'),
(26269, 'https://ror.org/01fcxf261', 'en', 1, 'https://ror.org/01fcxf261 Caulfield Hospital'),
(26270, 'https://ror.org/01feqhy89', 'en', 1, 'https://ror.org/01feqhy89 Campbell Center for Historic Preservation Studies'),
(26271, 'https://ror.org/01ff1ev27', 'en', 1, 'https://ror.org/01ff1ev27 University of Kamina UniversitƩ de Kamina'),
(26272, 'https://ror.org/01ffhnr70', 'en', 1, 'https://ror.org/01ffhnr70 Cambridge University Health Partners'),
(26273, 'https://ror.org/01fjc2t47', 'no_lang_code', 1, 'https://ror.org/01fjc2t47 Stavus (Czechia)'),
(26274, 'https://ror.org/01fjdq469', 'en', 1, 'https://ror.org/01fjdq469 John Cabot University'),
(26275, 'https://ror.org/01fmz7t89', 'en', 1, 'https://ror.org/01fmz7t89 Lesgaft National State University of Physical Education, Sport and Health ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Š·Š“Š¾Ń€Š¾Š²ŃŒŃ им. Лесгафта'),
(26276, 'https://ror.org/01fnz6z30', 'id', 1, 'https://ror.org/01fnz6z30 Universitas Islam Jember'),
(26277, 'https://ror.org/01fqmwr23', 'en', 1, 'https://ror.org/01fqmwr23 Czech Moravian Psychological Society, Czech-Moravian Psychological Society'),
(26278, 'https://ror.org/01fwksc03', 'en', 1, 'https://ror.org/01fwksc03 Far East University'),
(26279, 'https://ror.org/01fxfpm96', 'en', 1, 'https://ror.org/01fxfpm96 Techno Global University ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ ą¤—ą„ą¤²ą„‹ą¤¬ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€, ą¤øą¤æą¤°ą„‹ą¤‚ą¤œ'),
(26280, 'https://ror.org/01fyk0v41', 'en', 1, 'https://ror.org/01fyk0v41 Shimonoseki City University 下関市立大学'),
(26281, 'https://ror.org/01fyxr563', 'no_lang_code', 1, 'https://ror.org/01fyxr563 DHA Suffa University ڊي Ų§ŁŠŚ‡ اي سفا ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(26282, 'https://ror.org/01fzwn388', 'no_lang_code', 1, 'https://ror.org/01fzwn388 Józef Piłsudski Institute of America'),
(26283, 'https://ror.org/01g0ns998', 'en', 1, 'https://ror.org/01g0ns998 Private University of Trujillo Universidad Privada de Trujillo'),
(26284, 'https://ror.org/01g0sat63', 'en', 1, 'https://ror.org/01g0sat63 Salam University سلام Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†ā€Ž Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų³Ł„Ų§Ł…ā€Ž)'),
(26285, 'https://ror.org/01g14tq52', 'en', 1, 'https://ror.org/01g14tq52 State University of Bangladesh ą¦øą§ą¦Ÿą§‡ą¦Ÿ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(26286, 'https://ror.org/01g1t6g78', 'en', 1, 'https://ror.org/01g1t6g78 Whitney Museum of American Art'),
(26287, 'https://ror.org/01g5vrq32', 'en', 1, 'https://ror.org/01g5vrq32 Cincinnati Fire Museum'),
(26288, 'https://ror.org/01g9q1f24', 'id', 1, 'https://ror.org/01g9q1f24 Universitas Informatika dan Bisnis Indonesia'),
(26289, 'https://ror.org/01ga8zd22', 'en', 1, 'https://ror.org/01ga8zd22 Andijan State Medical Institute Andijon Davlat Tibbiyot Instituti'),
(26290, 'https://ror.org/01gcnxt20', 'no_lang_code', 1, 'https://ror.org/01gcnxt20 Gwangju University ź“‘ģ£¼ėŒ€ķ•™źµ'),
(26291, 'https://ror.org/01gdhra86', 'en', 1, 'https://ror.org/01gdhra86 Hewlett Woodmere Public Library'),
(26292, 'https://ror.org/01gevtd65', 'en', 1, 'https://ror.org/01gevtd65 Electronic Literature Organization'),
(26293, 'https://ror.org/01gffqk05', 'en', 1, 'https://ror.org/01gffqk05 Victorian Society in America'),
(26294, 'https://ror.org/01gfny940', 'en', 1, 'https://ror.org/01gfny940 Miyazaki Municipal University å®®å“Žå…¬ē«‹å¤§å­¦'),
(26295, 'https://ror.org/01gktk238', 'en', 1, 'https://ror.org/01gktk238 Velikie Luki State Academy of Physical Culture and Sports Š’ŠµŠ»ŠøŠŗŠ¾Š»ŃƒŠŗŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта');
INSERT INTO `rors` VALUES
(26296, 'https://ror.org/01gm99y36', 'hi', 1, 'https://ror.org/01gm99y36 Gujarat Vidyapith, ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖŖą«€ąŖ  ą®•ąÆą®œą®°ą®¾ą®¤ąÆ ą®µą®æą®¤ąÆą®Æą®¾ą®ŖąÆ€ą®Ÿą®®ąÆ'),
(26297, 'https://ror.org/01gneb536', 'en', 1, 'https://ror.org/01gneb536 Wolf Hollow Wildlife Rehabilitation Center'),
(26298, 'https://ror.org/01gpjtj97', 'en', 1, 'https://ror.org/01gpjtj97 Delhi Historical Society'),
(26299, 'https://ror.org/01gpyzk95', 'en', 1, 'https://ror.org/01gpyzk95 Samudra University Universitas Samudra'),
(26300, 'https://ror.org/01gq85p89', 'no_lang_code', 1, 'https://ror.org/01gq85p89 RPC Promens (Czechia)'),
(26301, 'https://ror.org/01gq8b646', 'en', 1, 'https://ror.org/01gq8b646 Griot Museum of Black History & Culture'),
(26302, 'https://ror.org/01gtgc095', 'en', 1, 'https://ror.org/01gtgc095 Kyoei University 共栄大学'),
(26303, 'https://ror.org/01gtvs751', 'no_lang_code', 1, 'https://ror.org/01gtvs751 Ahmet Yesevi University ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ казахско-Ń‚ŃƒŃ€ŠµŃ†ŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š„. А. Яссави Єалықаралық қазақ-түрік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(26304, 'https://ror.org/01gw7yt49', 'en', 1, 'https://ror.org/01gw7yt49 Samara Institute of Management Дамарский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(26305, 'https://ror.org/01gwmqw64', 'en', 1, 'https://ror.org/01gwmqw64 Mandalay Technological University į€™į€”į€¹į€į€œį€±į€øį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(26306, 'https://ror.org/01gwrbq98', 'id', 1, 'https://ror.org/01gwrbq98 Institut Pertanian Stiper'),
(26307, 'https://ror.org/01gz5zx42', 'it', 1, 'https://ror.org/01gz5zx42 UniversitĆ  per Stranieri Dante Alighieri UniversitĆ© pour Ɖtrangers de Reggio de Calabre'),
(26308, 'https://ror.org/01gzemj61', 'en', 1, 'https://ror.org/01gzemj61 Liepājas Universitāte University of Liepāja'),
(26309, 'https://ror.org/01h2mws14', 'en', 1, 'https://ror.org/01h2mws14 Chicago Film Archives'),
(26310, 'https://ror.org/01h37vy24', 'en', 1, 'https://ror.org/01h37vy24 Wake County Public Libraries'),
(26311, 'https://ror.org/01h4b7m22', 'en', 1, 'https://ror.org/01h4b7m22 Litchfield Historical Society'),
(26312, 'https://ror.org/01h55mk94', 'en', 1, 'https://ror.org/01h55mk94 Aryabhatta Knowledge University ą¤†ą¤°ą„ą¤Æą¤­ą¤Ÿą„ą¤Ÿ ą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(26313, 'https://ror.org/01h6cr239', 'en', 1, 'https://ror.org/01h6cr239 International University of Kagoshima é¹æå…å³¶å›½éš›å¤§å­¦'),
(26314, 'https://ror.org/01h7dw523', 'en', 1, 'https://ror.org/01h7dw523 South Street Seaport Museum'),
(26315, 'https://ror.org/01h8c9041', 'en', 1, 'https://ror.org/01h8c9041 Syrian Private University الجامعة Ų§Ł„Ų³ŁˆŲ±ŁŠŲ© الخاصة'),
(26316, 'https://ror.org/01h8y6y39', 'en', 1, 'https://ror.org/01h8y6y39 Panzhihua University ę”€ęžčŠ±å­¦é™¢'),
(26317, 'https://ror.org/01h9zz434', 'en', 1, 'https://ror.org/01h9zz434 Japanese Red Cross Kyushu International College of Nursing ę—„ęœ¬čµ¤åå­—ä¹å·žå›½éš›ēœ‹č­·å¤§å­¦'),
(26318, 'https://ror.org/01hcvr073', 'en', 1, 'https://ror.org/01hcvr073 Ranchi University ą¤°ą¤¾ą¤‚ą¤šą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(26319, 'https://ror.org/01hd68v37', 'en', 1, 'https://ror.org/01hd68v37 Ittihad University'),
(26320, 'https://ror.org/01hdcfr51', 'en', 1, 'https://ror.org/01hdcfr51 Islamic Azad University, Komijan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ś©Ł…ŪŒŲ¬Ų§Ł†'),
(26321, 'https://ror.org/01hdkb925', 'en', 1, 'https://ror.org/01hdkb925 Jožef Stefan International Postgraduate School'),
(26322, 'https://ror.org/01hgeey64', 'en', 1, 'https://ror.org/01hgeey64 Novosibirsk State Agricultural University ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26323, 'https://ror.org/01hhetk66', 'no_lang_code', 1, 'https://ror.org/01hhetk66 Kavikulaguru Kalidas Sanskrit University ą¤•ą¤µą¤æą¤•ą„ą¤²ą¤—ą„ą¤°ą„ कालिदास ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(26324, 'https://ror.org/01hhj0x41', 'en', 1, 'https://ror.org/01hhj0x41 Biznesa augstskola Turība Turība University'),
(26325, 'https://ror.org/01hnnne31', 'en', 1, 'https://ror.org/01hnnne31 Siddhartha University'),
(26326, 'https://ror.org/01hq9q866', 'no_lang_code', 1, 'https://ror.org/01hq9q866 Hirosaki Gakuin University 弘前学院大学'),
(26327, 'https://ror.org/01hvh9s85', 'en', 1, 'https://ror.org/01hvh9s85 Jewish Museum of Maryland'),
(26328, 'https://ror.org/01hw7a574', 'en', 1, 'https://ror.org/01hw7a574 Vermilion Parish Library'),
(26329, 'https://ror.org/01hxe3g21', 'en', 1, 'https://ror.org/01hxe3g21 Hanoi University of Culture ĐẔi hį»c Văn hóa HĆ  Nį»™i'),
(26330, 'https://ror.org/01hzjbc83', 'no_lang_code', 1, 'https://ror.org/01hzjbc83 TÜV SÜD (Czechia)'),
(26331, 'https://ror.org/01j11yw06', 'en', 1, 'https://ror.org/01j11yw06 ConVida - Popular Arts of the Americas'),
(26332, 'https://ror.org/01j1wt659', 'id', 1, 'https://ror.org/01j1wt659 Universitas Muhammadiyah Malang'),
(26333, 'https://ror.org/01j33wn03', 'en', 1, 'https://ror.org/01j33wn03 Andrew County Museum'),
(26334, 'https://ror.org/01j5wgc53', 'id', 1, 'https://ror.org/01j5wgc53 Universitas Djuanda'),
(26335, 'https://ror.org/01j8m3g31', 'en', 1, 'https://ror.org/01j8m3g31 Brookings Public Library'),
(26336, 'https://ror.org/01jaj0217', 'en', 1, 'https://ror.org/01jaj0217 Manchester Historic Association'),
(26337, 'https://ror.org/01jbjw881', 'en', 1, 'https://ror.org/01jbjw881 Youngdong University ģ˜ė™ėŒ€ķ•™źµ'),
(26338, 'https://ror.org/01jc1xp35', 'en', 1, 'https://ror.org/01jc1xp35 Northern University Bangladesh ą¦Øą¦°ą§ą¦¦ą¦¾ą¦°ą§ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(26339, 'https://ror.org/01jc4j574', 'en', 1, 'https://ror.org/01jc4j574 Chaudhary Devi Lal University ą¤šą„Œą¤§ą¤°ą„€ ą¤¦ą„‡ą¤µą„€ लाल ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(26340, 'https://ror.org/01jcts315', 'no_lang_code', 1, 'https://ror.org/01jcts315 Green Gas (Czechia)'),
(26341, 'https://ror.org/01jdxxe39', 'en', 1, 'https://ror.org/01jdxxe39 Central Bicol State University of Agriculture'),
(26342, 'https://ror.org/01jdzvf98', 'en', 1, 'https://ror.org/01jdzvf98 Pamantasang Estado ng Pangasinan Pangasinan State University'),
(26343, 'https://ror.org/01jfxry94', 'en', 1, 'https://ror.org/01jfxry94 Worcester Public Library'),
(26344, 'https://ror.org/01jk54m37', 'en', 1, 'https://ror.org/01jk54m37 WTTW'),
(26345, 'https://ror.org/01jm65960', 'en', 1, 'https://ror.org/01jm65960 Academia de Muzică Gheorghe Dima Gheorghe Dima Music Academy'),
(26346, 'https://ror.org/01jptvt03', 'no_lang_code', 1, 'https://ror.org/01jptvt03 Moravian Museum MoravskƩ ZemskƩ Muzeum'),
(26347, 'https://ror.org/01jqhew41', 'no_lang_code', 1, 'https://ror.org/01jqhew41 Svar Life Science (Netherlands)'),
(26348, 'https://ror.org/01jra8x56', 'id', 1, 'https://ror.org/01jra8x56 Institut Kesenian Jakarta'),
(26349, 'https://ror.org/01js4x705', 'en', 1, 'https://ror.org/01js4x705 Fƶrsvarshƶgskolan Maanpuolustuskorkeakoulu National Defence University'),
(26350, 'https://ror.org/01jseqj92', 'en', 1, 'https://ror.org/01jseqj92 Elkhorn Slough Foundation'),
(26351, 'https://ror.org/01jsqmy50', 'en', 1, 'https://ror.org/01jsqmy50 Longmont Museum'),
(26352, 'https://ror.org/01jswq303', 'en', 1, 'https://ror.org/01jswq303 Spartan Health Sciences University'),
(26353, 'https://ror.org/01jt32312', 'en', 1, 'https://ror.org/01jt32312 Uiduk University ģœ„ė•ėŒ€ķ•™źµ'),
(26354, 'https://ror.org/01jvfs579', 'no_lang_code', 1, 'https://ror.org/01jvfs579 MEgA Measuring Energy Apparatus (Czechia)'),
(26355, 'https://ror.org/01jwftv68', 'en', 1, 'https://ror.org/01jwftv68 San Joaquin County Historical Society & Museum'),
(26356, 'https://ror.org/01jwyc227', 'no_lang_code', 1, 'https://ror.org/01jwyc227 VOP (Czechia)'),
(26357, 'https://ror.org/01jxtqc31', 'en', 1, 'https://ror.org/01jxtqc31 TrĘ°į»ng ĐẔi hį»c Việt - Đức Vietnamese-German University'),
(26358, 'https://ror.org/01jy7a082', 'en', 1, 'https://ror.org/01jy7a082 Institute for Languages ​​and Cultures Leo Tolstoy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ·Ń‹ŠŗŠ¾Š² Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ имени Š›ŃŒŠ²Š° Толстого'),
(26359, 'https://ror.org/01jyn4427', 'en', 1, 'https://ror.org/01jyn4427 Cyprus College of Art'),
(26360, 'https://ror.org/01jyq0293', 'en', 1, 'https://ror.org/01jyq0293 Tennessee Historical Society'),
(26361, 'https://ror.org/01k073v05', 'en', 1, 'https://ror.org/01k073v05 Macon County History Museum'),
(26362, 'https://ror.org/01k0nxd36', 'en', 1, 'https://ror.org/01k0nxd36 Gulf of Maine Lobster Foundation'),
(26363, 'https://ror.org/01k12f283', 'no_lang_code', 1, 'https://ror.org/01k12f283 Dhurakij Pundit University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø˜ąøøąø£ąøąø“ąøˆąøšąø±ąø“ąø‘ąø“ąø•ąø¢ą¹Œ'),
(26364, 'https://ror.org/01k1ffv36', 'en', 1, 'https://ror.org/01k1ffv36 Finance and Economics Institute of Tajikistan'),
(26365, 'https://ror.org/01k21s024', 'en', 1, 'https://ror.org/01k21s024 Caldwell West Caldwell Public Schools'),
(26366, 'https://ror.org/01k5wet88', 'en', 1, 'https://ror.org/01k5wet88 Institute of Theology of Estonian Evangelical Lutheran Church'),
(26367, 'https://ror.org/01k604769', 'en', 1, 'https://ror.org/01k604769 University of Santo Tomas–Legazpi'),
(26368, 'https://ror.org/01k7msp60', 'en', 1, 'https://ror.org/01k7msp60 Leominster Public Library'),
(26369, 'https://ror.org/01k93bx74', 'no_lang_code', 1, 'https://ror.org/01k93bx74 Borcad (Czechia)'),
(26370, 'https://ror.org/01k9bj230', 'en', 1, 'https://ror.org/01k9bj230 Jissen Women''s University 実践儳子大学'),
(26371, 'https://ror.org/01k9bqa11', 'en', 1, 'https://ror.org/01k9bqa11 Ehime Prefectural University of Health Science ę„›åŖ›ēœŒē«‹åŒ»ē™‚ęŠ€č”“å¤§å­¦'),
(26372, 'https://ror.org/01ka28180', 'en', 1, 'https://ror.org/01ka28180 Massachusetts College of Liberal Arts'),
(26373, 'https://ror.org/01kbgns38', 'en', 1, 'https://ror.org/01kbgns38 Coastal Society'),
(26374, 'https://ror.org/01kbvt179', 'en', 1, 'https://ror.org/01kbvt179 New Mexico State University Carlsbad'),
(26375, 'https://ror.org/01kbx8t50', 'pl', 1, 'https://ror.org/01kbx8t50 Wyższa Szkoła Handlu i Finansów Międzynarodowych im. Fryderyka Skarbka'),
(26376, 'https://ror.org/01kcmgv15', 'en', 1, 'https://ror.org/01kcmgv15 Shakespeare and Company'),
(26377, 'https://ror.org/01kdeza40', 'en', 1, 'https://ror.org/01kdeza40 Taipei National University of the Arts åœ‹ē«‹č‡ŗåŒ—č—č”“å¤§å­ø'),
(26378, 'https://ror.org/01kghnd85', 'en', 1, 'https://ror.org/01kghnd85 Czech Society for Oriental Studies'),
(26379, 'https://ror.org/01khb1c27', 'en', 1, 'https://ror.org/01khb1c27 Sichuan Conservatory of Music 四川音乐学院'),
(26380, 'https://ror.org/01khe0643', 'en', 1, 'https://ror.org/01khe0643 Harapan Bangsa Institute of Technology Institut Teknologi Harapan Bangsa'),
(26381, 'https://ror.org/01khmmn16', 'en', 1, 'https://ror.org/01khmmn16 Boston Latin Academy'),
(26382, 'https://ror.org/01kk80q05', 'no_lang_code', 1, 'https://ror.org/01kk80q05 Envites (Czechia)'),
(26383, 'https://ror.org/01km1t027', 'id', 1, 'https://ror.org/01km1t027 Universitas Pesantren Tinggi Darul Ulum Jombang'),
(26384, 'https://ror.org/01km3r089', 'no_lang_code', 1, 'https://ror.org/01km3r089 Lias Vintířov (Czechia)'),
(26385, 'https://ror.org/01kn8x502', 'en', 1, 'https://ror.org/01kn8x502 Ural State Agrarian University Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26386, 'https://ror.org/01kq1we52', 'en', 1, 'https://ror.org/01kq1we52 Eastern Asia University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø­ąøµąøŖą¹€ąø—ąø“ąø£ą¹Œąø™ą¹€ąø­ą¹€ąøŠąøµąø¢'),
(26387, 'https://ror.org/01kqsbg21', 'en', 1, 'https://ror.org/01kqsbg21 American Federation of Arts'),
(26388, 'https://ror.org/01kr68e52', 'en', 1, 'https://ror.org/01kr68e52 Germantown Historical Society'),
(26389, 'https://ror.org/01kt71615', 'en', 1, 'https://ror.org/01kt71615 TOSHKENT TO''QIMACHILIK VA YENGIL SANOAT INSTITUTI Tashkent Institute of Textile and Light Industry Š¢ŠŠØŠšŠ•ŠŠ¢Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š•ŠšŠ”Š¢Š˜Š›Š¬ŠŠžŠ™ И Š›Š•Š“ŠšŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(26390, 'https://ror.org/01kxpxf76', 'en', 1, 'https://ror.org/01kxpxf76 Yashwantrao Chavan Maharashtra Open University यशवंतराव ą¤šą¤µą„ą¤¹ą¤¾ą¤£ ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(26391, 'https://ror.org/01ky50t09', 'pl', 1, 'https://ror.org/01ky50t09 Uczelnia Techniczno-Handlowa im. Heleny Chodkowskiej'),
(26392, 'https://ror.org/01kyajw84', 'en', 1, 'https://ror.org/01kyajw84 Pamantasan ng Iloilo University of Iloilo'),
(26393, 'https://ror.org/01kyzdy66', 'fr', 1, 'https://ror.org/01kyzdy66 Al Imam Al Ouzai University Ų¬Ų§Ł…Ų¹Ų© ال؄مام Ų§Ł„Ų£ŁˆŲ²Ų§Ų¹ŁŠ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(26394, 'https://ror.org/01m00b434', 'en', 1, 'https://ror.org/01m00b434 Islamic University of Niger UniversitƩ islamique de say'),
(26395, 'https://ror.org/01m0m3p30', 'en', 1, 'https://ror.org/01m0m3p30 Saint Petersburg State Theatre Arts Academy Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠøŃŠŗŃƒŃŃŃ‚Š²Š°'),
(26396, 'https://ror.org/01m20f643', 'en', 1, 'https://ror.org/01m20f643 Voronezh State Technical University Š’ŠžŠ ŠžŠŠ•Š–Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ Š¢Š•Š„ŠŠ˜Š§Š•Š”ŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(26397, 'https://ror.org/01m28kg79', 'en', 1, 'https://ror.org/01m28kg79 Ajloun National University Ų¬Ų§Ł…Ų¹Ų© Ų¹Ų¬Ł„ŁˆŁ† Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(26398, 'https://ror.org/01m54ds80', 'en', 1, 'https://ror.org/01m54ds80 Cherkasy State Technological University Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠøŠ¹ Гержавний технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26399, 'https://ror.org/01m5bd961', 'en', 1, 'https://ror.org/01m5bd961 Cabell County Public Library'),
(26400, 'https://ror.org/01m631n05', 'en', 1, 'https://ror.org/01m631n05 Southern Sakhalin Institute of Economics, Law and Computer Science'),
(26401, 'https://ror.org/01m67jf71', 'en', 1, 'https://ror.org/01m67jf71 NIILM University ą¤Øą„€ą¤²ą¤® ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(26402, 'https://ror.org/01m6ap410', 'en', 1, 'https://ror.org/01m6ap410 Universidade de SĆ£o JosĆ© University of Saint Joseph č–č‹„ē‘Ÿå¤§å­ø'),
(26403, 'https://ror.org/01m877795', 'en', 1, 'https://ror.org/01m877795 Museum of Contemporary Art Chicago'),
(26404, 'https://ror.org/01m91v580', 'en', 1, 'https://ror.org/01m91v580 Universiti Tun Abdul Razak'),
(26405, 'https://ror.org/01m9cz451', 'en', 1, 'https://ror.org/01m9cz451 Tanzania Commission for Universities'),
(26406, 'https://ror.org/01mc23556', 'cs', 1, 'https://ror.org/01mc23556 KrajskĆ” Nemocnice Liberec'),
(26407, 'https://ror.org/01mcrnj60', 'en', 1, 'https://ror.org/01mcrnj60 Majmaah University Ų¬Ų§Ł…Ų¹Ų© المجمعة'),
(26408, 'https://ror.org/01md6nx87', 'en', 1, 'https://ror.org/01md6nx87 Samuel Bogumił Linde College of Modern Languages Wyższa Szkoła Języków Obcych im. Samuela Bogumiła Lindego'),
(26409, 'https://ror.org/01mebf576', 'en', 1, 'https://ror.org/01mebf576 Voronezh State University of Engineering Technologies Воронежский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ инженерных технологий'),
(26410, 'https://ror.org/01mema083', 'en', 1, 'https://ror.org/01mema083 Emirates Aviation University Ų¬Ų§Ł…Ų¹Ų© Ų·ŁŠŲ±Ų§Ł† الامارات'),
(26411, 'https://ror.org/01mh73q44', 'en', 1, 'https://ror.org/01mh73q44 Potti Sreeramulu Telugu University ą®¤ąÆ†ą®²ąÆą®™ąÆą®•ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°Ŗą±Šą°Ÿą±ą°Ÿą°æ ą°¶ą±ą°°ą±€ą°°ą°¾ą°®ą±ą°²ą± తెలుగు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(26412, 'https://ror.org/01mhwy230', 'no_lang_code', 1, 'https://ror.org/01mhwy230 Řepařský Institut Semčice (Czechia)'),
(26413, 'https://ror.org/01mj1hb53', 'it', 1, 'https://ror.org/01mj1hb53 Consorzio Interuniversitario per la Ricerca Tecnologica Nucleare'),
(26414, 'https://ror.org/01mjqan41', 'en', 1, 'https://ror.org/01mjqan41 Moscow Institute of State Management and Law Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(26415, 'https://ror.org/01mkm2y61', 'en', 1, 'https://ror.org/01mkm2y61 Sri Sai University'),
(26416, 'https://ror.org/01mkmmc36', 'no_lang_code', 1, 'https://ror.org/01mkmmc36 Hop Research Institute (Czechia)'),
(26417, 'https://ror.org/01mm32049', 'en', 1, 'https://ror.org/01mm32049 Pamantasan ng Lungsod ng Kalookan University of Caloocan City'),
(26418, 'https://ror.org/01mmcf932', 'en', 1, 'https://ror.org/01mmcf932 California College of the Arts'),
(26419, 'https://ror.org/01mp0jc41', 'en', 1, 'https://ror.org/01mp0jc41 Language Conservancy'),
(26420, 'https://ror.org/01mq0zx57', 'en', 1, 'https://ror.org/01mq0zx57 Virgen Milagrosa University Foundation'),
(26421, 'https://ror.org/01mqdq746', 'en', 1, 'https://ror.org/01mqdq746 Johnstown Area Heritage Association'),
(26422, 'https://ror.org/01mr2n737', 'no_lang_code', 1, 'https://ror.org/01mr2n737 Å koda (Czechia)'),
(26423, 'https://ror.org/01msfnj86', 'id', 1, 'https://ror.org/01msfnj86 Universitas Sisingamangaraja XII'),
(26424, 'https://ror.org/01mt0cc57', 'en', 1, 'https://ror.org/01mt0cc57 Kiang Wu Nursing College of Macau ę¾³é—Øę±Ÿę¹–ęŠ¤ē†å­¦é™¢'),
(26425, 'https://ror.org/01mt0f775', 'en', 1, 'https://ror.org/01mt0f775 Northwest Straits Foundation'),
(26426, 'https://ror.org/01mtmt650', 'no_lang_code', 1, 'https://ror.org/01mtmt650 TTC Telekomunikace (Czechia)'),
(26427, 'https://ror.org/01mxx0e62', 'en', 1, 'https://ror.org/01mxx0e62 Hanoi University TrĘ°į»ng ĐẔi hį»c HĆ  Nį»™i UniversitĆ© de hanoĆÆ'),
(26428, 'https://ror.org/01mys8c02', 'en', 1, 'https://ror.org/01mys8c02 Niigata University of Management ę–°ę½ŸēµŒå–¶å¤§å­¦'),
(26429, 'https://ror.org/01mz1bm43', 'id', 1, 'https://ror.org/01mz1bm43 Universitas Flores'),
(26430, 'https://ror.org/01mz8f913', 'en', 1, 'https://ror.org/01mz8f913 Abbe Museum'),
(26431, 'https://ror.org/01n0ygw36', 'en', 1, 'https://ror.org/01n0ygw36 Slamka Consulting'),
(26432, 'https://ror.org/01n0ym997', 'en', 1, 'https://ror.org/01n0ym997 Kaichi International University é–‹ę™ŗå›½éš›å¤§å­¦'),
(26433, 'https://ror.org/01n6wkv11', 'id', 1, 'https://ror.org/01n6wkv11 Universitas Muara Bungo'),
(26434, 'https://ror.org/01n7ngw29', 'en', 1, 'https://ror.org/01n7ngw29 NationsUniversity'),
(26435, 'https://ror.org/01n7wbg90', 'no_lang_code', 1, 'https://ror.org/01n7wbg90 Higashiosaka College & Higashiosaka Junior College ę±å¤§é˜Ŗå¤§å­¦ćƒ»ę±å¤§é˜Ŗå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(26436, 'https://ror.org/01n85yk97', 'en', 1, 'https://ror.org/01n85yk97 Stephen Phillips Memorial Trust House in Salem'),
(26437, 'https://ror.org/01nag1a70', 'id', 1, 'https://ror.org/01nag1a70 Institut Teknologi Indonesia'),
(26438, 'https://ror.org/01nbgfe29', 'en', 1, 'https://ror.org/01nbgfe29 Build Bright University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž”įŸ€įž›įž”įŸ’įžšįž¶įž™ įžšįž¶įž‡įž’įž¶įž“įžøįž—įŸ’įž“įŸ†įž–įŸįž‰'),
(26439, 'https://ror.org/01ncpsy43', 'en', 1, 'https://ror.org/01ncpsy43 Wisconsin Department of Administration'),
(26440, 'https://ror.org/01nevky14', 'en', 1, 'https://ror.org/01nevky14 Hayfield University'),
(26441, 'https://ror.org/01nf6pr96', 'en', 1, 'https://ror.org/01nf6pr96 Buffalo History Museum'),
(26442, 'https://ror.org/01nfka669', 'en', 1, 'https://ror.org/01nfka669 South Carolina State Museum'),
(26443, 'https://ror.org/01ng7yw81', 'en', 1, 'https://ror.org/01ng7yw81 Society for Values in Higher Education'),
(26444, 'https://ror.org/01ngjj893', 'en', 1, 'https://ror.org/01ngjj893 University of Human Arts and Sciences äŗŗé–“ē·åˆē§‘å­¦å¤§å­¦'),
(26445, 'https://ror.org/01nkqk925', 'en', 1, 'https://ror.org/01nkqk925 Jain Vishva Bharati University ą¤œą„ˆą¤Ø ą¤µą¤æą¤¶ą„ą¤µ ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(26446, 'https://ror.org/01nm0nj94', 'en', 1, 'https://ror.org/01nm0nj94 Jesus University'),
(26447, 'https://ror.org/01nrk6j30', 'en', 1, 'https://ror.org/01nrk6j30 MingDao University ę˜Žé“å¤§å­ø'),
(26448, 'https://ror.org/01nrsdg41', 'en', 1, 'https://ror.org/01nrsdg41 Saint - Petersburg State Chemical Pharmaceutical Academy Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń химико-Ń„Š°Ń€Š¼Š°Ń†ŠµŠ²Ń‚ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(26449, 'https://ror.org/01nsk9g93', 'cs', 1, 'https://ror.org/01nsk9g93 Matice MoravskĆ”'),
(26450, 'https://ror.org/01nsv4k44', 'id', 1, 'https://ror.org/01nsv4k44 Universitas Swadaya Gunung Jati'),
(26451, 'https://ror.org/01nsvrs46', 'no_lang_code', 1, 'https://ror.org/01nsvrs46 UniControls (Czechia)'),
(26452, 'https://ror.org/01ntg7h46', 'no_lang_code', 1, 'https://ror.org/01ntg7h46 VÚHŽ (Czechia)'),
(26453, 'https://ror.org/01ntn7t82', 'en', 1, 'https://ror.org/01ntn7t82 Newark Public Library'),
(26454, 'https://ror.org/01ntwgd63', 'en', 1, 'https://ror.org/01ntwgd63 Nosov Magnitogorsk State Technical University ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26455, 'https://ror.org/01nvm2856', 'en', 1, 'https://ror.org/01nvm2856 Maryland University of Integrative Health'),
(26456, 'https://ror.org/01nwz9n42', 'en', 1, 'https://ror.org/01nwz9n42 International School for Social and Business Studies Mednarodna Fakulteta za Družbene in Poslovne Študije'),
(26457, 'https://ror.org/01p3ehe02', 'no_lang_code', 1, 'https://ror.org/01p3ehe02 Souphanouvong University ąŗ”ąŗ°ąŗ«ąŗ²ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ą»„ąŗ„ąŗŖąŗøąŗžąŗ²ąŗ™ąŗøąŗ§ąŗ»ąŗ‡'),
(26458, 'https://ror.org/01p48z987', 'en', 1, 'https://ror.org/01p48z987 Columbus Museum of Art'),
(26459, 'https://ror.org/01p4b7n26', 'en', 1, 'https://ror.org/01p4b7n26 Electric Power University TrĘ°į»ng ĐẔi hį»c Điện lį»±c'),
(26460, 'https://ror.org/01p4pqq97', 'sl', 1, 'https://ror.org/01p4pqq97 Å ola za Risanje in Slikanje'),
(26461, 'https://ror.org/01p68kb80', 'en', 1, 'https://ror.org/01p68kb80 Idaho Department of Parks and Recreation'),
(26462, 'https://ror.org/01p6xxb83', 'en', 1, 'https://ror.org/01p6xxb83 Belarusian State University of Culture and Arts Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ і Š¼Š°ŃŃ‚Š°Ń†Ń‚Š²Š°Ńž Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(26463, 'https://ror.org/01pahsa11', 'no_lang_code', 1, 'https://ror.org/01pahsa11 KM Trade (Czechia)'),
(26464, 'https://ror.org/01pc8bt60', 'en', 1, 'https://ror.org/01pc8bt60 Higher Institute of Islamic Studies المعهد العالى للدراسات Ų§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠŲ©'),
(26465, 'https://ror.org/01pcwfm43', 'en', 1, 'https://ror.org/01pcwfm43 Saint-Petersburg Institute of Economy and Management Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(26466, 'https://ror.org/01pddqk16', 'en', 1, 'https://ror.org/01pddqk16 National University of Theatre and Film I.L. Caragiale Universitatea Naţională de Artă Teatrală şi Cinematografică I.L.Caragiale'),
(26467, 'https://ror.org/01pdmef49', 'no_lang_code', 1, 'https://ror.org/01pdmef49 KKCG (Czechia)'),
(26468, 'https://ror.org/01pebx748', 'en', 1, 'https://ror.org/01pebx748 National Farmers Union'),
(26469, 'https://ror.org/01pewms44', 'en', 1, 'https://ror.org/01pewms44 Balch Institute for Ethnic Studies'),
(26470, 'https://ror.org/01pf23a70', 'en', 1, 'https://ror.org/01pf23a70 YIVO Institute for Jewish Research'),
(26471, 'https://ror.org/01phqre83', 'en', 1, 'https://ror.org/01phqre83 Tohoku Institute of Technology ę±åŒ—å·„ę„­å¤§å­¦'),
(26472, 'https://ror.org/01phypy63', 'en', 1, 'https://ror.org/01phypy63 Motlow State Community College'),
(26473, 'https://ror.org/01pjme364', 'en', 1, 'https://ror.org/01pjme364 Nanyang Academy of Fine Arts ą®Øą®©ąÆą®Æą®¾ą®™ąÆ ą®…ą®•ą®¾ą®Ÿą®®ą®æ ą®†ą®ƒą®ŖąÆ ą®ƒą®ŖąÆˆą®©ąÆ ą®†ą®°ąÆą®ŸąÆą®øąÆ'),
(26474, 'https://ror.org/01pjy1768', 'en', 1, 'https://ror.org/01pjy1768 Armavir Linguistic Social Institution Армавирский лингвистический ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(26475, 'https://ror.org/01pk8rb11', 'en', 1, 'https://ror.org/01pk8rb11 University of Kirkuk Ų¬Ų§Ł…Ų¹Ų© كركوك'),
(26476, 'https://ror.org/01pkeax38', 'en', 1, 'https://ror.org/01pkeax38 Saitama Institute of Technology åŸ¼ēŽ‰å·„ę„­å¤§å­¦'),
(26477, 'https://ror.org/01pn1ra92', 'en', 1, 'https://ror.org/01pn1ra92 International Institute of Management LINK ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента Š›Š˜ŠŠš'),
(26478, 'https://ror.org/01pqsf698', 'en', 1, 'https://ror.org/01pqsf698 Bangladesh Islami University বাংলাদেশ ইসলামী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(26479, 'https://ror.org/01pr3g631', 'en', 1, 'https://ror.org/01pr3g631 Staten Island Historical Society'),
(26480, 'https://ror.org/01przwh33', 'en', 1, 'https://ror.org/01przwh33 Akademia Teatralna im. Aleksandra Zelwerowicza w Warszawie Aleksander Zelwerowicz National Academy of Dramatic Art in Warsaw'),
(26481, 'https://ror.org/01pt4x202', 'en', 1, 'https://ror.org/01pt4x202 Kyushu Institute of Information Sciences ä¹å·žęƒ…å ±å¤§å­¦'),
(26482, 'https://ror.org/01pv73b02', 'en', 1, 'https://ror.org/01pv73b02 Czech Science Foundation'),
(26483, 'https://ror.org/01px61q40', 'fr', 1, 'https://ror.org/01px61q40 Institut PrivƩ de Gestion Institut SupƩrieur de Technologie Industrielle'),
(26484, 'https://ror.org/01pxd1c06', 'en', 1, 'https://ror.org/01pxd1c06 Southern Maryland Regional Library Association'),
(26485, 'https://ror.org/01pxek286', 'en', 1, 'https://ror.org/01pxek286 Thongsook College วณทยาคัยทองสุข'),
(26486, 'https://ror.org/01pytr632', 'en', 1, 'https://ror.org/01pytr632 Murmansk Arctic State University ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠøŠ¹ арктический Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26487, 'https://ror.org/01pzyyx54', 'en', 1, 'https://ror.org/01pzyyx54 National Information and Consulting Centre for Culture'),
(26488, 'https://ror.org/01q00vp39', 'en', 1, 'https://ror.org/01q00vp39 Nagoya University of Arts åå¤å±‹čŠøč”“å¤§å­¦'),
(26489, 'https://ror.org/01q0sjp54', 'en', 1, 'https://ror.org/01q0sjp54 University of Buraimi Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ±ŁŠŁ…ŁŠ'),
(26490, 'https://ror.org/01q2ncb61', 'en', 1, 'https://ror.org/01q2ncb61 Osaka University of Comprehensive Children Education å¤§é˜Ŗē·åˆäæč‚²å¤§å­¦'),
(26491, 'https://ror.org/01q2ngy08', 'en', 1, 'https://ror.org/01q2ngy08 Moscow Institute of Entrepreneurship and Law Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° Šø права'),
(26492, 'https://ror.org/01q4jy609', 'en', 1, 'https://ror.org/01q4jy609 Radio America'),
(26493, 'https://ror.org/01q5jse34', 'en', 1, 'https://ror.org/01q5jse34 Krasnoyarsk State Institute of Art ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(26494, 'https://ror.org/01q6w5x52', 'en', 1, 'https://ror.org/01q6w5x52 North Eastern University ดหาวณทยาคัยภาคตะวันออกเฉียงเหนือ'),
(26495, 'https://ror.org/01qa01910', 'en', 1, 'https://ror.org/01qa01910 Currier Museum of Art'),
(26496, 'https://ror.org/01qadzk38', 'en', 1, 'https://ror.org/01qadzk38 Pacific Coast University'),
(26497, 'https://ror.org/01qafy255', 'en', 1, 'https://ror.org/01qafy255 MF Norwegian School of Theology, Religion and Society'),
(26498, 'https://ror.org/01qc33y56', 'en', 1, 'https://ror.org/01qc33y56 National Institute of Sports and Tourism of Turkmenistan'),
(26499, 'https://ror.org/01qe1a488', 'en', 1, 'https://ror.org/01qe1a488 Azerbaijan Technical University Azərbaycan Texniki Universiteti АзербайГжанский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26500, 'https://ror.org/01qg39d38', 'en', 1, 'https://ror.org/01qg39d38 Old Swedes Foundation'),
(26501, 'https://ror.org/01qgdf403', 'en', 1, 'https://ror.org/01qgdf403 Catholic University Our Lady of Good Counsel Kompleksi Spitalor Universitar "Zoja e Kƫshillit tƫ Mirƫ"'),
(26502, 'https://ror.org/01qh9t631', 'en', 1, 'https://ror.org/01qh9t631 International University of Logistics and Transport in Wrocław Międzynarodowa Wyższa Szkoła Logistyki i Transportu we Wrocławiu'),
(26503, 'https://ror.org/01qheje62', 'no_lang_code', 1, 'https://ror.org/01qheje62 Shokei Gakuin University å°šēµ…å­¦é™¢å¤§å­¦'),
(26504, 'https://ror.org/01qhq4s12', 'en', 1, 'https://ror.org/01qhq4s12 Wells National Estuarine Research Reserve'),
(26505, 'https://ror.org/01qkgph35', 'en', 1, 'https://ror.org/01qkgph35 Pennsbury Manor'),
(26506, 'https://ror.org/01qkq8c66', 'en', 1, 'https://ror.org/01qkq8c66 Spiru Haret University Universitatea Spiru Haret'),
(26507, 'https://ror.org/01qne9c81', 'en', 1, 'https://ror.org/01qne9c81 St. Catherine University č–ć‚«ć‚æćƒŖćƒŠå¤§å­¦'),
(26508, 'https://ror.org/01qnswy10', 'en', 1, 'https://ror.org/01qnswy10 University Press of Kansas'),
(26509, 'https://ror.org/01qp4wa34', 'en', 1, 'https://ror.org/01qp4wa34 Asian Art Museum'),
(26510, 'https://ror.org/01qq6yz91', 'en', 1, 'https://ror.org/01qq6yz91 Manila Central University'),
(26511, 'https://ror.org/01qva9798', 'en', 1, 'https://ror.org/01qva9798 Mewar University ą¤®ą„‡ą¤µą¤¾ą¤”ą¤¼ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(26512, 'https://ror.org/01qvty264', 'en', 1, 'https://ror.org/01qvty264 Central Agency for Jewish Education'),
(26513, 'https://ror.org/01qw7a563', 'no_lang_code', 1, 'https://ror.org/01qw7a563 Tokyo Seitoku University ę±äŗ¬ęˆå¾³å¤§å­¦'),
(26514, 'https://ror.org/01qxgsr72', 'en', 1, 'https://ror.org/01qxgsr72 Latvijas Nacionālā Aizsardzības Akadēmija National Defence Academy of Latvia'),
(26515, 'https://ror.org/01qxhf360', 'en', 1, 'https://ror.org/01qxhf360 Concordia University'),
(26516, 'https://ror.org/01qzkbq71', 'en', 1, 'https://ror.org/01qzkbq71 Multnomah University'),
(26517, 'https://ror.org/01qzzz835', 'en', 1, 'https://ror.org/01qzzz835 Levine Museum of the New South'),
(26518, 'https://ror.org/01r097937', 'en', 1, 'https://ror.org/01r097937 Defense Acquisition University'),
(26519, 'https://ror.org/01r1xp191', 'no_lang_code', 1, 'https://ror.org/01r1xp191 AEC (Czechia)'),
(26520, 'https://ror.org/01r27v904', 'en', 1, 'https://ror.org/01r27v904 Sardar Vallabhbhai Patel University of Agriculture & Technology सरदार ą¤µą¤²ą„ą¤²ą¤­ą¤­ą¤¾ą¤ˆ ą¤Ŗą¤Ÿą„‡ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤—ą„ą¤°ą„€ą¤•ą¤²ą„ą¤šą¤° & ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(26521, 'https://ror.org/01r2j4a39', 'en', 1, 'https://ror.org/01r2j4a39 GEA College'),
(26522, 'https://ror.org/01r35da74', 'no_lang_code', 1, 'https://ror.org/01r35da74 Lƶw & Spol (Czechia)'),
(26523, 'https://ror.org/01r3kcg18', 'en', 1, 'https://ror.org/01r3kcg18 Osaka University of Economics and Law å¤§é˜ŖēµŒęøˆę³•ē§‘å¤§å­¦'),
(26524, 'https://ror.org/01r3zxa49', 'id', 1, 'https://ror.org/01r3zxa49 Indonesian Institute of Informatics Institut Informatika Indonesia'),
(26525, 'https://ror.org/01r4khx38', 'en', 1, 'https://ror.org/01r4khx38 Aichi Prefectural University of Fine Arts and Music ę„›ēŸ„ēœŒē«‹čŠøč”“å¤§å­¦'),
(26526, 'https://ror.org/01r61sr78', 'en', 1, 'https://ror.org/01r61sr78 China Academy of Art äø­å›½ē¾ŽęœÆå­¦é™¢'),
(26527, 'https://ror.org/01r8s1c93', 'en', 1, 'https://ror.org/01r8s1c93 Siberian State University of Physical Education and Sport Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(26528, 'https://ror.org/01ra0jf88', 'no_lang_code', 1, 'https://ror.org/01ra0jf88 Aseko (Czechia)'),
(26529, 'https://ror.org/01rb75107', 'en', 1, 'https://ror.org/01rb75107 National University of Advanced Legal Studies'),
(26530, 'https://ror.org/01rbdtr54', 'en', 1, 'https://ror.org/01rbdtr54 Faculty for State and European Studies, Faculty of Administrative and European Studies Fakultet za državne i evropske studije'),
(26531, 'https://ror.org/01rbtc528', 'en', 1, 'https://ror.org/01rbtc528 National Council of La Raza'),
(26532, 'https://ror.org/01rckwh32', 'en', 1, 'https://ror.org/01rckwh32 Mawlamyine University į€™į€±į€¬į€ŗį€œį€™į€¼į€­į€Æį€„į€ŗ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(26533, 'https://ror.org/01rcq3q20', 'en', 1, 'https://ror.org/01rcq3q20 Hankou University ę±‰å£å­¦é™¢'),
(26534, 'https://ror.org/01rd41j61', 'en', 1, 'https://ror.org/01rd41j61 Sevastopol National University of Nuclear Energy and Industry Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ ŃŠ½ŠµŃ€Š³ŠøŠø Šø ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ“ŠµŃ€Š½Š¾Ń— енергії та промисловості'),
(26535, 'https://ror.org/01rec3330', 'no_lang_code', 1, 'https://ror.org/01rec3330 University of Mbandaka UniversitƩ de mbandaka'),
(26536, 'https://ror.org/01rf04680', 'en', 1, 'https://ror.org/01rf04680 Busan National University of Education ė¶€ģ‚°źµģœ”ėŒ€ķ•™źµ'),
(26537, 'https://ror.org/01rk9d029', 'en', 1, 'https://ror.org/01rk9d029 International University of Struga ŠœŠµŃ“ŃƒŠ½Š°Ń€Š¾Š“ŠµŠ½ Универзитет Š”Ń‚Ń€ŃƒŠ³Š°'),
(26538, 'https://ror.org/01rkrzs64', 'en', 1, 'https://ror.org/01rkrzs64 Hokkaido Bunkyo University åŒ—ęµ·é“ę–‡ę•™å¤§å­¦'),
(26539, 'https://ror.org/01rn0fp76', 'en', 1, 'https://ror.org/01rn0fp76 Kazakh-British Technical University ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾-Британский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½-Британ техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(26540, 'https://ror.org/01rnr2315', 'en', 1, 'https://ror.org/01rnr2315 Institute of Management Sciences Lahore'),
(26541, 'https://ror.org/01rqcwn02', 'en', 1, 'https://ror.org/01rqcwn02 LCC International University LCC tarptautinis universitetas'),
(26542, 'https://ror.org/01rrz9s51', 'en', 1, 'https://ror.org/01rrz9s51 Victoria University'),
(26543, 'https://ror.org/01rs03g07', 'en', 1, 'https://ror.org/01rs03g07 Uttaradit Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø­ąøøąø•ąø£ąø”ąø“ąø•ąø–ą¹Œ'),
(26544, 'https://ror.org/01rtkeb16', 'id', 1, 'https://ror.org/01rtkeb16 Universitas Merdeka Malang'),
(26545, 'https://ror.org/01rvscc63', 'en', 1, 'https://ror.org/01rvscc63 Ossabaw Island Foundation'),
(26546, 'https://ror.org/01rx5pn96', 'en', 1, 'https://ror.org/01rx5pn96 Mashantucket Pequot Museum and Research Center'),
(26547, 'https://ror.org/01rxjzf54', 'en', 1, 'https://ror.org/01rxjzf54 University of the East Ramon Magsaysay Memorial Medical Center'),
(26548, 'https://ror.org/01ryrzh03', 'en', 1, 'https://ror.org/01ryrzh03 Kobe City College of Nursing ē„žęˆøåø‚ēœ‹č­·å¤§å­¦'),
(26549, 'https://ror.org/01ryxs984', 'en', 1, 'https://ror.org/01ryxs984 NorthEast Regional Epilepsy Group'),
(26550, 'https://ror.org/01rz15025', 'en', 1, 'https://ror.org/01rz15025 New York University Press'),
(26551, 'https://ror.org/01s0tbs34', 'en', 1, 'https://ror.org/01s0tbs34 Sukhishvili Teaching University'),
(26552, 'https://ror.org/01s1qps03', 'en', 1, 'https://ror.org/01s1qps03 American Academic Research Institute in Iraq'),
(26553, 'https://ror.org/01s4pfm44', 'fr', 1, 'https://ror.org/01s4pfm44 Institut Africain d''Informatique'),
(26554, 'https://ror.org/01s5kvh23', 'en', 1, 'https://ror.org/01s5kvh23 Youngsan University ģ˜ģ‚°ėŒ€ķ•™źµ'),
(26555, 'https://ror.org/01s5r7k60', 'en', 1, 'https://ror.org/01s5r7k60 Razavi University of Islamic Sciences دانؓگاه Ų¹Ł„ŁˆŁ… Ų§Ų³Ł„Ų§Ł…ŪŒ رضوی'),
(26556, 'https://ror.org/01sbmsw53', 'no_lang_code', 1, 'https://ror.org/01sbmsw53 Saku University 佐久大学'),
(26557, 'https://ror.org/01sby4e06', 'en', 1, 'https://ror.org/01sby4e06 Nizhny Novgorod State Conservatory named after M.I. Glinka ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени М. И. Глинки [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(26558, 'https://ror.org/01scq9q08', 'no_lang_code', 1, 'https://ror.org/01scq9q08 Tanadgusix (United States)'),
(26559, 'https://ror.org/01sczx256', 'en', 1, 'https://ror.org/01sczx256 Athens Regional Library System'),
(26560, 'https://ror.org/01se2zd78', 'no_lang_code', 1, 'https://ror.org/01se2zd78 Adikavi Nannaya University ఆదికవి ą°Øą°Øą±ą°Øą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(26561, 'https://ror.org/01setje54', 'en', 1, 'https://ror.org/01setje54 Institute of Contemporary Art'),
(26562, 'https://ror.org/01sfc5174', 'en', 1, 'https://ror.org/01sfc5174 Research Foundation for the State University of New York'),
(26563, 'https://ror.org/01sfz7q36', 'en', 1, 'https://ror.org/01sfz7q36 University of South Asia جامعہ Ų¬Ł†ŁˆŲØŪŒ ایؓیا'),
(26564, 'https://ror.org/01sg1cf32', 'en', 1, 'https://ror.org/01sg1cf32 Santa Monica Public Library'),
(26565, 'https://ror.org/01sgknf35', 'en', 1, 'https://ror.org/01sgknf35 Hakodate University 函館大学'),
(26566, 'https://ror.org/01sm6nn11', 'en', 1, 'https://ror.org/01sm6nn11 Central Ukrainian National Technical University Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26567, 'https://ror.org/01smbry50', 'en', 1, 'https://ror.org/01smbry50 Daehan Theological University ėŒ€ķ•œģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(26568, 'https://ror.org/01sr63h27', 'en', 1, 'https://ror.org/01sr63h27 Chuo Kikuu cha Kumbukumbu cha Sebastian Kolowa Sebastian Kolowa Memorial University'),
(26569, 'https://ror.org/01sw9sf76', 'en', 1, 'https://ror.org/01sw9sf76 Ellis University'),
(26570, 'https://ror.org/01sy57r11', 'en', 1, 'https://ror.org/01sy57r11 Kazan State Conservatoire named after N. Zhiganov ŠšŠ°Š·Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń консерватории им. Š.Š“.Жиганова'),
(26571, 'https://ror.org/01szxxe12', 'en', 1, 'https://ror.org/01szxxe12 Busan Presbyterian University ė¶€ģ‚°ģž„ģ‹ ėŒ€ķ•™źµ'),
(26572, 'https://ror.org/01t027h44', 'en', 1, 'https://ror.org/01t027h44 Clark County Museum'),
(26573, 'https://ror.org/01t085091', 'en', 1, 'https://ror.org/01t085091 Native American Center for the Living Arts'),
(26574, 'https://ror.org/01t0d1m90', 'en', 1, 'https://ror.org/01t0d1m90 Iran Banking Institute مؤسسه Ų¹Ų§Ł„ŪŒ ŲØŲ§Ł†Ś©ŲÆŲ§Ų±ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(26575, 'https://ror.org/01t2k5x76', 'no_lang_code', 1, 'https://ror.org/01t2k5x76 Deona Medi (Czechia)'),
(26576, 'https://ror.org/01t4e0y16', 'en', 1, 'https://ror.org/01t4e0y16 North Enterprise Institute Деверный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(26577, 'https://ror.org/01t588655', 'no_lang_code', 1, 'https://ror.org/01t588655 Theatre for a New Audience'),
(26578, 'https://ror.org/01t79g318', 'id', 1, 'https://ror.org/01t79g318 Universitas Slamet Riyadi'),
(26579, 'https://ror.org/01t8hz352', 'en', 1, 'https://ror.org/01t8hz352 Ivanovo State Power University Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ивановский Š³Š¾ŃŃƒŠ“арственный ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’.И. Ленина'),
(26580, 'https://ror.org/01tfbz441', 'no_lang_code', 1, 'https://ror.org/01tfbz441 Nanhua University å—čÆå¤§å­ø'),
(26581, 'https://ror.org/01tkgk805', 'en', 1, 'https://ror.org/01tkgk805 Moravian Gallery in Brno'),
(26582, 'https://ror.org/01tmmzv45', 'en', 1, 'https://ror.org/01tmmzv45 Institute of Space Technology Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ آف اسپیس Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(26583, 'https://ror.org/01tmv6x44', 'en', 1, 'https://ror.org/01tmv6x44 Marine Animal Rescue Society'),
(26584, 'https://ror.org/01tqhyj40', 'en', 1, 'https://ror.org/01tqhyj40 Chaiyaphum Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŠąø±ąø¢ąø ąø¹ąø”ąø“'),
(26585, 'https://ror.org/01txr9233', 'en', 1, 'https://ror.org/01txr9233 Great Lakes Commission'),
(26586, 'https://ror.org/01txxd494', 'en', 1, 'https://ror.org/01txxd494 French Cultural Center'),
(26587, 'https://ror.org/01tycan35', 'no_lang_code', 1, 'https://ror.org/01tycan35 Elis Plzen (Czechia)'),
(26588, 'https://ror.org/01tz4vf62', 'en', 1, 'https://ror.org/01tz4vf62 Kyiv National I. K. Karpenko-Kary Theatre, Cinema and Television University ŠšŠøĢŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°ĢŠ»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ Ń‚ŠµŠ°ĢŃ‚Ń€Ńƒ, кіно́ і Ń‚ŠµŠ»ŠµŠ±Š°ĢŃ‡ŠµŠ½Š½Ń і́мені Іва́на ŠšŠ°ĢŃ€ŠæŠ¾Š²ŠøŃ‡Š° ŠšŠ°Ń€ŠæŠµĢŠ½ŠŗŠ°-ŠšŠ°ĢŃ€Š¾Š³Š¾ Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ театра, кино Šø Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ имени И. К. ŠšŠ°Ń€ŠæŠµŠ½ŠŗŠ¾-ŠšŠ°Ń€Š¾Š³Š¾'),
(26589, 'https://ror.org/01tze4598', 'no_lang_code', 1, 'https://ror.org/01tze4598 SVCS Process Innovation (Czechia)'),
(26590, 'https://ror.org/01v4enb76', 'en', 1, 'https://ror.org/01v4enb76 Richard Bland College'),
(26591, 'https://ror.org/01v53ec59', 'no_lang_code', 1, 'https://ror.org/01v53ec59 OCHI Inženýring (Czechia)'),
(26592, 'https://ror.org/01v6rb042', 'en', 1, 'https://ror.org/01v6rb042 New Orleans Public Library'),
(26593, 'https://ror.org/01vap5e49', 'en', 1, 'https://ror.org/01vap5e49 Saint Petersburg Institute of International Economic Relations, Economics and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒĢŃ‚ Š²Š½ŠµŃˆŠ½ŠµŃŠŗŠ¾Š½Š¾Š¼ŠøĢŃ‡ŠµŃŠŗŠøŃ… ŃŠ²ŃĢŠ·ŠµŠ¹, ŃŠŗŠ¾Š½Š¾ĢŠ¼ŠøŠŗŠø Šø пра́ва, Š˜Š’Š­Š”Š­ĢŠŸ'),
(26594, 'https://ror.org/01vbp3w59', 'no_lang_code', 1, 'https://ror.org/01vbp3w59 Instantview (United Kingdom)'),
(26595, 'https://ror.org/01vg6n598', 'en', 1, 'https://ror.org/01vg6n598 Darul Ihsan University দারুল ইহসান ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(26596, 'https://ror.org/01vgnaz04', 'en', 1, 'https://ror.org/01vgnaz04 Carnegie Museum of Art'),
(26597, 'https://ror.org/01vk4fh57', 'en', 1, 'https://ror.org/01vk4fh57 Armavir State Pedagogical Academy Армавирский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26598, 'https://ror.org/01vkmy441', 'en', 1, 'https://ror.org/01vkmy441 Earth Force'),
(26599, 'https://ror.org/01vpt4w06', 'id', 1, 'https://ror.org/01vpt4w06 Universitas Iqra Buru'),
(26600, 'https://ror.org/01vtcxa47', 'no_lang_code', 1, 'https://ror.org/01vtcxa47 CoorsTek (Czechia)'),
(26601, 'https://ror.org/01vw69t89', 'en', 1, 'https://ror.org/01vw69t89 Dagestan State University Дагестанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26602, 'https://ror.org/01vwk0k32', 'en', 1, 'https://ror.org/01vwk0k32 John L. Miller Great Neck North High School'),
(26603, 'https://ror.org/01vwns954', 'no_lang_code', 1, 'https://ror.org/01vwns954 Lingaya''s Vidyapeeth'),
(26604, 'https://ror.org/01w0a0q45', 'no_lang_code', 1, 'https://ror.org/01w0a0q45 Speel Praha (Czechia)'),
(26605, 'https://ror.org/01w0fb867', 'en', 1, 'https://ror.org/01w0fb867 Alanus Hochschule für Kunst und Gesellschaft Alanus University of Arts and Social Sciences'),
(26606, 'https://ror.org/01w1er029', 'en', 1, 'https://ror.org/01w1er029 International University College Of Technology Kolej Universiti Teknologi Antarabangsa Twintech'),
(26607, 'https://ror.org/01w33af17', 'en', 1, 'https://ror.org/01w33af17 Royal University of Fine Arts UniversitĆ© royale des beaux-arts įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įžœįž·įž…įž·įžįŸ’įžšįžŸįž·įž›įŸ’įž”įŸˆ'),
(26608, 'https://ror.org/01w423a47', 'en', 1, 'https://ror.org/01w423a47 Tomsk State University of Architecture and Building Томский Š³Š¾ŃŃƒŠ“арственный Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26609, 'https://ror.org/01w4nn703', 'en', 1, 'https://ror.org/01w4nn703 Central Community College'),
(26610, 'https://ror.org/01w60n236', 'en', 1, 'https://ror.org/01w60n236 Sumy State University Думский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Думський Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26611, 'https://ror.org/01w6bk780', 'en', 1, 'https://ror.org/01w6bk780 Historic New England'),
(26612, 'https://ror.org/01w7c9759', 'id', 1, 'https://ror.org/01w7c9759 Universitas Islam Al-Azhar Mataram'),
(26613, 'https://ror.org/01w860d88', 'en', 1, 'https://ror.org/01w860d88 National Experimental University of the Armed Forces Universidad Nacional Experimental PolitƩcnica de la Fuerza Armada Bolivariana'),
(26614, 'https://ror.org/01w9gwk84', 'en', 1, 'https://ror.org/01w9gwk84 Charleston County Public Library'),
(26615, 'https://ror.org/01wacaj92', 'en', 1, 'https://ror.org/01wacaj92 Nation University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø™ąøŠąø±ą¹ˆąø™'),
(26616, 'https://ror.org/01wbbse44', 'en', 1, 'https://ror.org/01wbbse44 Marine Mammal Center'),
(26617, 'https://ror.org/01wcf4732', 'en', 1, 'https://ror.org/01wcf4732 Kenton County Public Library'),
(26618, 'https://ror.org/01wdhap14', 'en', 1, 'https://ror.org/01wdhap14 University of Health Sciences Antigua'),
(26619, 'https://ror.org/01wfhkb67', 'en', 1, 'https://ror.org/01wfhkb67 Iraqi University الجامعة Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ©'),
(26620, 'https://ror.org/01wfs6j95', 'en', 1, 'https://ror.org/01wfs6j95 U.S. Association of Former Members of Congress'),
(26621, 'https://ror.org/01wfzer83', 'en', 1, 'https://ror.org/01wfzer83 Dire Dawa University'),
(26622, 'https://ror.org/01wgqyk09', 'no_lang_code', 1, 'https://ror.org/01wgqyk09 B&C Dopravnƭ SystƩmy (Czechia)'),
(26623, 'https://ror.org/01whfz932', 'en', 1, 'https://ror.org/01whfz932 Belarusian State Academy of Telecommunications Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ĢŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń ŃŃƒĢŠ²ŃŠ·Ń– Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠ²ŃŠ·Šø'),
(26624, 'https://ror.org/01wj9kt25', 'en', 1, 'https://ror.org/01wj9kt25 Museum of Contemporary Art, Los Angeles'),
(26625, 'https://ror.org/01wk6nt82', 'en', 1, 'https://ror.org/01wk6nt82 Northwest Maritime Center'),
(26626, 'https://ror.org/01wmc1580', 'en', 1, 'https://ror.org/01wmc1580 Methodist Theological University'),
(26627, 'https://ror.org/01wmn7w14', 'en', 1, 'https://ror.org/01wmn7w14 Institute of Advanced Media Arts and Sciences ęƒ…å ±ē§‘å­¦čŠøč”“å¤§å­¦é™¢å¤§å­¦'),
(26628, 'https://ror.org/01wmx5158', 'no_lang_code', 1, 'https://ror.org/01wmx5158 Tohoku Bunka Gakuen University ę±åŒ—ę–‡åŒ–å­¦åœ’å¤§å­¦'),
(26629, 'https://ror.org/01wp52t96', 'en', 1, 'https://ror.org/01wp52t96 Asian University for Women ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ ফর উইমেন'),
(26630, 'https://ror.org/01wqn3353', 'id', 1, 'https://ror.org/01wqn3353 Universitas Muhammadiyah Prof Dr Hamka'),
(26631, 'https://ror.org/01wr29484', 'en', 1, 'https://ror.org/01wr29484 Rostov State Rakhmaninov Conservatory Š Š¾ŃŃ‚Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. Š”.Š’. Рахманинова'),
(26632, 'https://ror.org/01wsre374', 'en', 1, 'https://ror.org/01wsre374 Olive–Harvey College'),
(26633, 'https://ror.org/01wwdyj49', 'en', 1, 'https://ror.org/01wwdyj49 ICFAI University, Mizoram'),
(26634, 'https://ror.org/01wx5mw98', 'en', 1, 'https://ror.org/01wx5mw98 Buddhist and Pali University of Sri Lanka ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶¶ą·žą¶Æą·Šą¶° ą·„ą· ą¶“ą·ą¶½ą·’ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(26635, 'https://ror.org/01wx9h016', 'en', 1, 'https://ror.org/01wx9h016 Clinton-Macomb Public Library'),
(26636, 'https://ror.org/01wy5em73', 'en', 1, 'https://ror.org/01wy5em73 North Slope Borough'),
(26637, 'https://ror.org/01wy81410', 'no_lang_code', 1, 'https://ror.org/01wy81410 Fite (Czechia)'),
(26638, 'https://ror.org/01wz7zs96', 'no_lang_code', 1, 'https://ror.org/01wz7zs96 Mimasaka University ē¾Žä½œå¤§å­¦'),
(26639, 'https://ror.org/01x05rm94', 'en', 1, 'https://ror.org/01x05rm94 Maebashi Institute of Technology å‰ę©‹å·„ē§‘å¤§å­¦'),
(26640, 'https://ror.org/01x1bp495', 'en', 1, 'https://ror.org/01x1bp495 Holy Angel University Pamantasang Holy Angel'),
(26641, 'https://ror.org/01x1xh678', 'en', 1, 'https://ror.org/01x1xh678 East Bohemian Museum Muzeum východních Čech'),
(26642, 'https://ror.org/01x24z916', 'en', 1, 'https://ror.org/01x24z916 Turkmen State Institute of Architecture and Construction'),
(26643, 'https://ror.org/01x3s6v81', 'en', 1, 'https://ror.org/01x3s6v81 Primary Source'),
(26644, 'https://ror.org/01x3sga45', 'en', 1, 'https://ror.org/01x3sga45 St. Louis County Missouri'),
(26645, 'https://ror.org/01x4bmq04', 'en', 1, 'https://ror.org/01x4bmq04 Ekaterinburg State Theatre Institute Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(26646, 'https://ror.org/01x5f7a18', 'en', 1, 'https://ror.org/01x5f7a18 Byzantine Studies Association of North America'),
(26647, 'https://ror.org/01x5kh380', 'en', 1, 'https://ror.org/01x5kh380 University of West Yangon ရန်ကုန် နနောက်ပိုင်း į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(26648, 'https://ror.org/01x7y0t66', 'en', 1, 'https://ror.org/01x7y0t66 Tuscaloosa Public Library'),
(26649, 'https://ror.org/01x7yyx87', 'en', 1, 'https://ror.org/01x7yyx87 National Ribat University Ų¬Ų§Ł…Ų¹Ų© الرباط Ų§Ł„ŁˆŲ·Ł†ŁŠ'),
(26650, 'https://ror.org/01x8ank07', 'en', 1, 'https://ror.org/01x8ank07 Kyiv Slavonic University ŠšŠøŃ—Š²ŃŃŒŠ¾Š³Š¾ славістичного ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ'),
(26651, 'https://ror.org/01xapxe37', 'en', 1, 'https://ror.org/01xapxe37 Dr. Hari Singh Gour University ą¤”ą„‰. हरिसिंह ą¤—ą„Œą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(26652, 'https://ror.org/01xc8qy31', 'no_lang_code', 1, 'https://ror.org/01xc8qy31 Ujp Praha (Czechia)'),
(26653, 'https://ror.org/01xcp0546', 'no_lang_code', 1, 'https://ror.org/01xcp0546 Fishmaster (United States)'),
(26654, 'https://ror.org/01xe4n390', 'en', 1, 'https://ror.org/01xe4n390 Downeast Institute'),
(26655, 'https://ror.org/01xh0rq67', 'no_lang_code', 1, 'https://ror.org/01xh0rq67 Lajovic Tuba Embalaža (Slovenia)'),
(26656, 'https://ror.org/01xhsfb21', 'en', 1, 'https://ror.org/01xhsfb21 Kursk State Agricultural Academy named after Professor II Ivanova ŠšŃƒŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени профессора Иванова II');
INSERT INTO `rors` VALUES
(26657, 'https://ror.org/01xmbc541', 'en', 1, 'https://ror.org/01xmbc541 Lafayette Science Museum'),
(26658, 'https://ror.org/01xmbf059', 'en', 1, 'https://ror.org/01xmbf059 Universities at Medway'),
(26659, 'https://ror.org/01xn8m022', 'en', 1, 'https://ror.org/01xn8m022 Mark Twain House and Museum'),
(26660, 'https://ror.org/01xnx1y03', 'en', 1, 'https://ror.org/01xnx1y03 Hartford Seminary'),
(26661, 'https://ror.org/01xq9f254', 'en', 1, 'https://ror.org/01xq9f254 State Legislative Leaders Foundation'),
(26662, 'https://ror.org/01xr78s65', 'pl', 1, 'https://ror.org/01xr78s65 Wyższa Szkoła Kultury Prawa i Sztuki Marketingu'),
(26663, 'https://ror.org/01xsjnd35', 'en', 1, 'https://ror.org/01xsjnd35 Tilak Maharashtra Vidyapeeth ą¤Ÿą¤æą¤³ą¤• ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(26664, 'https://ror.org/01xts9v65', 'en', 1, 'https://ror.org/01xts9v65 Seoul National University of Education ģ„œģšøźµģœ”ėŒ€ķ•™źµ'),
(26665, 'https://ror.org/01xy1dh32', 'en', 1, 'https://ror.org/01xy1dh32 Kobe International University ē„žęˆøå›½éš›å¤§å­¦'),
(26666, 'https://ror.org/01xydej26', 'id', 1, 'https://ror.org/01xydej26 Universitas Mahaputra Muhammad Yamin'),
(26667, 'https://ror.org/01xyxtp53', 'en', 1, 'https://ror.org/01xyxtp53 CECOS University'),
(26668, 'https://ror.org/01xz43q57', 'en', 1, 'https://ror.org/01xz43q57 Academy of Choral Arts named after V Popov ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ хорового ŠøŃŠŗŃƒŃŃŃ‚ва'),
(26669, 'https://ror.org/01y2mxy57', 'en', 1, 'https://ror.org/01y2mxy57 JosƩ Rizal University Pamantasang JosƩ Rizal'),
(26670, 'https://ror.org/01y3cgz33', 'no_lang_code', 1, 'https://ror.org/01y3cgz33 Jihostroj (Czechia)'),
(26671, 'https://ror.org/01y3mxb71', 'no_lang_code', 1, 'https://ror.org/01y3mxb71 Central European Data Agency (Czechia)'),
(26672, 'https://ror.org/01y56kp76', 'en', 1, 'https://ror.org/01y56kp76 Southeast Bangkok College ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø‹ąø²ąø˜ą¹Œąø­ąøµąøŖąø—ą¹Œąøšąø²ąø‡ąøąø­ąø'),
(26673, 'https://ror.org/01y5fjx51', 'en', 1, 'https://ror.org/01y5fjx51 Hainan Tropical Ocean University ęµ·å—ēƒ­åø¦ęµ·ę“‹å­¦é™¢'),
(26674, 'https://ror.org/01y5jsp78', 'en', 1, 'https://ror.org/01y5jsp78 Public Radio International'),
(26675, 'https://ror.org/01y6vee45', 'en', 1, 'https://ror.org/01y6vee45 Chelyabinsk Institute of Economics and Law named after M.V.Ladoshin Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права имени M.V.Ladoshin'),
(26676, 'https://ror.org/01y7t5s25', 'en', 1, 'https://ror.org/01y7t5s25 Samarkand State Architectural and Civil-Engineering Institute Samarqand davlat arxitektura qurilish instituti'),
(26677, 'https://ror.org/01y80n017', 'id', 1, 'https://ror.org/01y80n017 Universitas Achmad Yani'),
(26678, 'https://ror.org/01y82bt90', 'no_lang_code', 1, 'https://ror.org/01y82bt90 TamƔstslikt Cultural Institute'),
(26679, 'https://ror.org/01y8d6z34', 'en', 1, 'https://ror.org/01y8d6z34 MVN University'),
(26680, 'https://ror.org/01y9hq132', 'en', 1, 'https://ror.org/01y9hq132 Oregon Historical Society'),
(26681, 'https://ror.org/01yapab09', 'en', 1, 'https://ror.org/01yapab09 Moravian Music Foundation'),
(26682, 'https://ror.org/01yarzs52', 'en', 1, 'https://ror.org/01yarzs52 Medici Archive Project'),
(26683, 'https://ror.org/01ygp7b39', 'en', 1, 'https://ror.org/01ygp7b39 National Law University Jodhpur'),
(26684, 'https://ror.org/01yjjdm95', 'no_lang_code', 1, 'https://ror.org/01yjjdm95 Lenam (Czechia)'),
(26685, 'https://ror.org/01yjpt684', 'en', 1, 'https://ror.org/01yjpt684 Pontifical Urban University Pontificia UniversitƠ Urbaniana PƤpstliche UniversitƤt Urbaniana UniversitƩ pontificale urbaniana'),
(26686, 'https://ror.org/01yjw8d43', 'en', 1, 'https://ror.org/01yjw8d43 Mari State University ŠœŠ°Ń€ŠøŠ¹ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26687, 'https://ror.org/01yk0dg70', 'no_lang_code', 1, 'https://ror.org/01yk0dg70 VVUU (Czechia)'),
(26688, 'https://ror.org/01ypcyq30', 'en', 1, 'https://ror.org/01ypcyq30 Nagasaki University of Foreign Studies é•·å“Žå¤–å›½čŖžå¤§å­¦'),
(26689, 'https://ror.org/01yq8nk56', 'en', 1, 'https://ror.org/01yq8nk56 Learning Through an Expanded Arts Program'),
(26690, 'https://ror.org/01ysajg40', 'en', 1, 'https://ror.org/01ysajg40 Conception Seminary College'),
(26691, 'https://ror.org/01ysyyn95', 'en', 1, 'https://ror.org/01ysyyn95 Rensselaer County Historical Society'),
(26692, 'https://ror.org/01yv6y468', 'no_lang_code', 1, 'https://ror.org/01yv6y468 Setec Institute įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“ā€‹ įžŸįŸŠįž·įžįž·įž€'),
(26693, 'https://ror.org/01yvmh709', 'en', 1, 'https://ror.org/01yvmh709 Astrakhan State Medical University Астраханский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Университет'),
(26694, 'https://ror.org/01yyzg640', 'en', 1, 'https://ror.org/01yyzg640 West Ural Institute of Economics and Law ЗапаГно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(26695, 'https://ror.org/01yzd1685', 'no_lang_code', 1, 'https://ror.org/01yzd1685 Stomix (Czechia)'),
(26696, 'https://ror.org/01z1bn264', 'en', 1, 'https://ror.org/01z1bn264 TrĘ°į»ng ĐẔi hį»c Ngoįŗ”i ngữ, ĐẔi hį»c Quốc gia HĆ  Nį»™i University of Languages and International Studies'),
(26697, 'https://ror.org/01z1xpx75', 'en', 1, 'https://ror.org/01z1xpx75 Mordovia State Pedagogical Institute named after ME Evseveva Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ "ŠœŠ¾Ń€Š“Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени М. Š•. Š•Š²ŃŠµŠ²ŃŒŠµŠ²Š°"'),
(26698, 'https://ror.org/01z1zmc91', 'en', 1, 'https://ror.org/01z1zmc91 Moscow State Forest University Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ леса'),
(26699, 'https://ror.org/01z23y265', 'en', 1, 'https://ror.org/01z23y265 Kharkiv National Agrarian University named after V.V.Dokuchajev Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ім. Š’.Š’. Š”Š¾ŠŗŃƒŃ‡Š°Ń”Š²Š°'),
(26700, 'https://ror.org/01z3yjr32', 'en', 1, 'https://ror.org/01z3yjr32 El Paso Children''s Hospital'),
(26701, 'https://ror.org/01z5b9q11', 'en', 1, 'https://ror.org/01z5b9q11 Dance Notation Bureau'),
(26702, 'https://ror.org/01z75n202', 'en', 1, 'https://ror.org/01z75n202 Institute of Contemporary Education "YurInfoR-MGU"'),
(26703, 'https://ror.org/01z91qx97', 'en', 1, 'https://ror.org/01z91qx97 Sea Research Foundation'),
(26704, 'https://ror.org/01za4nr66', 'en', 1, 'https://ror.org/01za4nr66 Loudoun County Public Library'),
(26705, 'https://ror.org/01zdg1s07', 'en', 1, 'https://ror.org/01zdg1s07 Vermont Historical Society'),
(26706, 'https://ror.org/01zdsw203', 'en', 1, 'https://ror.org/01zdsw203 Tatar American Regional Institute Татарско-американский Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(26707, 'https://ror.org/01zgmhv16', 'no_lang_code', 1, 'https://ror.org/01zgmhv16 Danaher (Belgium)'),
(26708, 'https://ror.org/01zmykx63', 'en', 1, 'https://ror.org/01zmykx63 Central Arkansas Library System'),
(26709, 'https://ror.org/01zmze177', 'pl', 1, 'https://ror.org/01zmze177 Gdańska Wyższa Szkoła Humanistyczna'),
(26710, 'https://ror.org/01znwv148', 'en', 1, 'https://ror.org/01znwv148 Azerbaijan State Marine Academy Azərbaycan Dƶvlət Dəniz Akademiyası ŠŠ·ŠµŃ€Š±Š°Š¹Š“Š¶Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼Š¾Ń€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(26711, 'https://ror.org/01zpp3d44', 'en', 1, 'https://ror.org/01zpp3d44 Homerton University Hospital NHS Foundation Trust'),
(26712, 'https://ror.org/01zr7q119', 'es', 1, 'https://ror.org/01zr7q119 Universidad Autónoma de Santa Ana'),
(26713, 'https://ror.org/01zs84n26', 'en', 1, 'https://ror.org/01zs84n26 Institute of Management Business and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ, бизнеса Šø права'),
(26714, 'https://ror.org/01zskeg15', 'en', 1, 'https://ror.org/01zskeg15 Animal Production Institute'),
(26715, 'https://ror.org/01zte6c10', 'id', 1, 'https://ror.org/01zte6c10 Universitas Cordova'),
(26716, 'https://ror.org/01zvpbb37', 'pl', 1, 'https://ror.org/01zvpbb37 Wyższa Szkoła Zarządzania i Bankowości w Poznaniu'),
(26717, 'https://ror.org/01zwh2149', 'no_lang_code', 1, 'https://ror.org/01zwh2149 Jawaharlal Nehru Krishi Vishwa Vidyalaya जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(26718, 'https://ror.org/01zxjwg19', 'no_lang_code', 1, 'https://ror.org/01zxjwg19 Lymphedema Therapy (United States)'),
(26719, 'https://ror.org/01zy6vk67', 'en', 1, 'https://ror.org/01zy6vk67 Bishop Stuart University'),
(26720, 'https://ror.org/01zzs2082', 'en', 1, 'https://ror.org/01zzs2082 Swedish American Historical Society'),
(26721, 'https://ror.org/0204b4294', 'en', 1, 'https://ror.org/0204b4294 Pamantasang Imaculada Conception University of the Immaculate Conception'),
(26722, 'https://ror.org/0204dk470', 'en', 1, 'https://ror.org/0204dk470 Stuhr Museum'),
(26723, 'https://ror.org/0204f9621', 'en', 1, 'https://ror.org/0204f9621 Muhammad University of Islam'),
(26724, 'https://ror.org/020756q03', 'en', 1, 'https://ror.org/020756q03 Chiba Prefectural University of Health Sciences åƒč‘‰ēœŒē«‹äæå„åŒ»ē™‚å¤§å­¦'),
(26725, 'https://ror.org/0207r1190', 'en', 1, 'https://ror.org/0207r1190 Urawa University ęµ¦å’Œå¤§å­¦'),
(26726, 'https://ror.org/020an1644', 'en', 1, 'https://ror.org/020an1644 Maulana Azad National Urdu University Ł…ŁˆŁ„Ų§Ł†Ų§ Ų¢Ų²Ų§ŲÆ Ł†ŪŒŲ“Ł†Ł„ اردو ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ மவுலானா ą®†ą®šą®¾ą®¤ąÆ ą®¤ąÆ‡ą®šą®æą®Æ உருது ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“®ąµŒą“²ą“¾ą“Øą“¾ ą“†ą“øą“¾ą“¦ąµ ą“Øą“¾ą“·ą“Øąµ½ ą“‰ąµ¼ą“¦ąµ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ਮੌਲਾਨਾ ąØ†ąØœąØ¼ąØ¾ąØ¦ ਨੈਸ਼ਨਲ ਉਰਦੂ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(26727, 'https://ror.org/020b0tc15', 'en', 1, 'https://ror.org/020b0tc15 Louisiana Library Association'),
(26728, 'https://ror.org/020bck234', 'en', 1, 'https://ror.org/020bck234 Philadelphia Zoo'),
(26729, 'https://ror.org/020czch62', 'no_lang_code', 1, 'https://ror.org/020czch62 TESLA (Czechia)'),
(26730, 'https://ror.org/020db1e56', 'no_lang_code', 1, 'https://ror.org/020db1e56 Joongbu University ģ¤‘ė¶€ėŒ€ķ•™źµ'),
(26731, 'https://ror.org/020extk17', 'en', 1, 'https://ror.org/020extk17 Institute of Professional Evaluation Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ оценки'),
(26732, 'https://ror.org/020frqf17', 'en', 1, 'https://ror.org/020frqf17 Gorky Institute of World Literature Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мировой Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ имени А. М. Š“Š¾Ń€ŃŒŠŗŠ¾Š³Š¾ Š ŠŠ'),
(26733, 'https://ror.org/020hbs629', 'en', 1, 'https://ror.org/020hbs629 Kyiv National Linguistic University Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ лінгвістичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26734, 'https://ror.org/020hftg31', 'en', 1, 'https://ror.org/020hftg31 Institute for Schools of the Future'),
(26735, 'https://ror.org/020ja6z54', 'en', 1, 'https://ror.org/020ja6z54 Kamphaeng Phet Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøąø³ą¹ąøžąø‡ą¹€ąøžąøŠąø£'),
(26736, 'https://ror.org/020jhxv22', 'en', 1, 'https://ror.org/020jhxv22 Clarksburg-Harrison Public Library'),
(26737, 'https://ror.org/020jv3j52', 'en', 1, 'https://ror.org/020jv3j52 Zaoksky Adventist University Заокский аГвентистский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26738, 'https://ror.org/020kbv448', 'en', 1, 'https://ror.org/020kbv448 Johnson University Florida'),
(26739, 'https://ror.org/020kwj692', 'en', 1, 'https://ror.org/020kwj692 Sumy State A.S.Makarenko Pedagogical University'),
(26740, 'https://ror.org/020kyg948', 'en', 1, 'https://ror.org/020kyg948 Health Charities Coalition of Canada'),
(26741, 'https://ror.org/020m36v47', 'en', 1, 'https://ror.org/020m36v47 South Ural State Institute of Arts named after P.I. Tchaikovsky Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² им. П.И. Чайковского'),
(26742, 'https://ror.org/020mrfq61', 'en', 1, 'https://ror.org/020mrfq61 Changzhou Institute of Technology åøøå·žå·„å­¦é™¢'),
(26743, 'https://ror.org/020p0cm86', 'en', 1, 'https://ror.org/020p0cm86 Ryazan Institute of Management and Law Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(26744, 'https://ror.org/020peey21', 'en', 1, 'https://ror.org/020peey21 Kobe City University of Foreign Studies ē„žęˆøåø‚å¤–å›½čŖžå¤§å­¦'),
(26745, 'https://ror.org/020qfzf72', 'en', 1, 'https://ror.org/020qfzf72 Kyrgyz-Russian Slavic University named after B.N. Yeltsin ŠšŠøŃ€Š³ŠøŠ·ŃŠŗŠ¾-российский ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Бориса Š•Š»ŃŒŃ†ŠøŠ½Š°'),
(26746, 'https://ror.org/020rm6403', 'no_lang_code', 1, 'https://ror.org/020rm6403 National Cell and Tissue Centre (Czechia)'),
(26747, 'https://ror.org/020rnar76', 'no_lang_code', 1, 'https://ror.org/020rnar76 Bochemie (Czechia)'),
(26748, 'https://ror.org/020rxmm63', 'no_lang_code', 1, 'https://ror.org/020rxmm63 KovƔrna VIVA (Czechia)'),
(26749, 'https://ror.org/020stct92', 'en', 1, 'https://ror.org/020stct92 Department of Conservation and Recreation'),
(26750, 'https://ror.org/020t5em76', 'en', 1, 'https://ror.org/020t5em76 Museum of Sonoma County'),
(26751, 'https://ror.org/020we4134', 'en', 1, 'https://ror.org/020we4134 University of Wah واہ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(26752, 'https://ror.org/020y85m88', 'en', 1, 'https://ror.org/020y85m88 Andover Historical Society'),
(26753, 'https://ror.org/020ywsx42', 'en', 1, 'https://ror.org/020ywsx42 Moscow Academy of Education Natalia Nesterova ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠŠ°Ń‚Š°Š»ŃŒŠø ŠŠµŃŃ‚ŠµŃ€Š¾Š²Š¾Š¹'),
(26754, 'https://ror.org/020z26690', 'en', 1, 'https://ror.org/020z26690 Moscow State Linguistic University Московский Š³Š¾ŃŃƒŠ“арственный лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26755, 'https://ror.org/020z55s31', 'en', 1, 'https://ror.org/020z55s31 Hogeschool Wittenborg Wittenborg University'),
(26756, 'https://ror.org/0210pwe06', 'en', 1, 'https://ror.org/0210pwe06 Tezukayama University åøå”šå±±å¤§å­¦'),
(26757, 'https://ror.org/0210srm80', 'en', 1, 'https://ror.org/0210srm80 Lutheran School of Theology at Chicago'),
(26758, 'https://ror.org/0210z5p53', 'en', 1, 'https://ror.org/0210z5p53 Northern Virginia Regional Park Authority'),
(26759, 'https://ror.org/0211wgq19', 'en', 1, 'https://ror.org/0211wgq19 Tver State Agricultural Academy Тверской Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26760, 'https://ror.org/02128gy91', 'en', 1, 'https://ror.org/02128gy91 Thai Nguyen University ĐẔi hį»c ThĆ”i NguyĆŖn'),
(26761, 'https://ror.org/0212gyx73', 'en', 1, 'https://ror.org/0212gyx73 Batumi Shota Rustaveli State University Š‘Š°Ń‚ŃƒŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шота Š ŃƒŃŃ‚авели įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒØįƒįƒ—įƒ įƒ įƒ£įƒ”įƒ—įƒįƒ•įƒ”įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(26762, 'https://ror.org/0212pqc18', 'en', 1, 'https://ror.org/0212pqc18 Lasbela University of Agriculture Water and Marine Science'),
(26763, 'https://ror.org/0212sa234', 'no_lang_code', 1, 'https://ror.org/0212sa234 Cybula (United Kingdom)'),
(26764, 'https://ror.org/02152vc29', 'en', 1, 'https://ror.org/02152vc29 Bogdan Voda University Universitatea ā€žBogdan VodÄƒā€'),
(26765, 'https://ror.org/0217vcy92', 'en', 1, 'https://ror.org/0217vcy92 Franklin University Switzerland'),
(26766, 'https://ror.org/021a5w723', 'id', 1, 'https://ror.org/021a5w723 Universitas Patria Artha'),
(26767, 'https://ror.org/021anqv82', 'no_lang_code', 1, 'https://ror.org/021anqv82 Shirayuri University ē™½ē™¾åˆå„³å­å¤§å­¦'),
(26768, 'https://ror.org/021b48m83', 'en', 1, 'https://ror.org/021b48m83 Luhansk State University of Internal Affairs named after E.O.Didorenko Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел имени Š­. А. ДиГоренко Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ імені Š•Š“ŃƒŠ°Ń€Š“Š° ДіГоренка'),
(26769, 'https://ror.org/021djka98', 'en', 1, 'https://ror.org/021djka98 National Underground Railroad Freedom Center'),
(26770, 'https://ror.org/021f6t344', 'no_lang_code', 1, 'https://ror.org/021f6t344 Elvac Ekotechnika (Czechia)'),
(26771, 'https://ror.org/021fekh57', 'en', 1, 'https://ror.org/021fekh57 Rhode Island Black Heritage Society'),
(26772, 'https://ror.org/021hq5q33', 'en', 1, 'https://ror.org/021hq5q33 Sebelas Maret University Universitas Sebelas Maret'),
(26773, 'https://ror.org/021hqjd76', 'en', 1, 'https://ror.org/021hqjd76 Dagestan State Medical Academy Дагестанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26774, 'https://ror.org/021hrr735', 'en', 1, 'https://ror.org/021hrr735 Huntington Museum of Art'),
(26775, 'https://ror.org/021m3j510', 'en', 1, 'https://ror.org/021m3j510 International Academy of Philosophy Internationale Akademie für Philosophie'),
(26776, 'https://ror.org/021m4bd11', 'en', 1, 'https://ror.org/021m4bd11 European Peace University'),
(26777, 'https://ror.org/021myjd74', 'en', 1, 'https://ror.org/021myjd74 National Museum of Mexican Art'),
(26778, 'https://ror.org/021p07t45', 'id', 1, 'https://ror.org/021p07t45 Universitas Gunung Rinjani'),
(26779, 'https://ror.org/021s7kp67', 'en', 1, 'https://ror.org/021s7kp67 Gorsky State Agrarian University Горский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26780, 'https://ror.org/021tdez87', 'en', 1, 'https://ror.org/021tdez87 Dallas Museum of Art'),
(26781, 'https://ror.org/021tsqw04', 'en', 1, 'https://ror.org/021tsqw04 Ateneo de Naga University Pamantasang Ateneo de Naga'),
(26782, 'https://ror.org/021wtff78', 'en', 1, 'https://ror.org/021wtff78 Seattle Art Museum'),
(26783, 'https://ror.org/021yq0b87', 'en', 1, 'https://ror.org/021yq0b87 Wesleyan University Philippines'),
(26784, 'https://ror.org/021zagz69', 'en', 1, 'https://ror.org/021zagz69 Slavic Business Institute'),
(26785, 'https://ror.org/0220wbr36', 'en', 1, 'https://ror.org/0220wbr36 Community College Humanities Association'),
(26786, 'https://ror.org/02216ze18', 'no_lang_code', 1, 'https://ror.org/02216ze18 Pilsen Tools (Czechia)'),
(26787, 'https://ror.org/0221rj138', 'en', 1, 'https://ror.org/0221rj138 Hanford Mills Museum'),
(26788, 'https://ror.org/02221cp63', 'no_lang_code', 1, 'https://ror.org/02221cp63 PROCES - Centre for Municipal and Regional Development (Czechia)'),
(26789, 'https://ror.org/02232tv51', 'en', 1, 'https://ror.org/02232tv51 Buzzards Bay Coalition'),
(26790, 'https://ror.org/0223jhh02', 'en', 1, 'https://ror.org/0223jhh02 Louisiana State Museum'),
(26791, 'https://ror.org/0224tgs93', 'en', 1, 'https://ror.org/0224tgs93 Pamantasang Trinitas ng Asya Trinity University of Asia'),
(26792, 'https://ror.org/0227kwk61', 'en', 1, 'https://ror.org/0227kwk61 Hai Phong University TrĘ°į»ng ĐẔi hį»c Hįŗ£i Phòng'),
(26793, 'https://ror.org/02285qe65', 'id', 1, 'https://ror.org/02285qe65 Institut Teknologi Padang'),
(26794, 'https://ror.org/0229a7v30', 'no_lang_code', 1, 'https://ror.org/0229a7v30 SVM Microwaves (Czechia)'),
(26795, 'https://ror.org/0229k3q35', 'en', 1, 'https://ror.org/0229k3q35 Maharshi Dayanand Saraswati University ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤¦ą¤Æą¤¾ą¤Øą¤Øą„ą¤¦ ą¤øą¤°ą¤øą„ą¤µą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤…ą¤œą¤®ą„‡ą¤°'),
(26796, 'https://ror.org/022a1fs04', 'en', 1, 'https://ror.org/022a1fs04 Prime University ą¦Ŗą§ą¦°ą¦¾ą¦‡ą¦® ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(26797, 'https://ror.org/022a4es02', 'en', 1, 'https://ror.org/022a4es02 Institute of Economics and Culture Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(26798, 'https://ror.org/022b23347', 'en', 1, 'https://ror.org/022b23347 Seian University of Art and Design ęˆå®‰é€ å½¢å¤§å­¦'),
(26799, 'https://ror.org/022ckte53', 'en', 1, 'https://ror.org/022ckte53 Institute of Chartered Financial Analysts of India ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤šą¤¾ą¤°ą„ą¤Ÿą¤°ą„ą¤” ą¤µą¤æą¤¤ą„ą¤¤ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤²ą„‡ą¤·ą¤• ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(26800, 'https://ror.org/022ef1r75', 'en', 1, 'https://ror.org/022ef1r75 Delaware Historical Society'),
(26801, 'https://ror.org/022j0r779', 'en', 1, 'https://ror.org/022j0r779 American Institute for Conservation of Historic & Artistic Works'),
(26802, 'https://ror.org/022j25y55', 'en', 1, 'https://ror.org/022j25y55 East Delta University ą¦‡ą¦øą§ą¦Ÿ ą¦”ą§‡ą¦²ą§ą¦Ÿą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(26803, 'https://ror.org/022jg8f66', 'en', 1, 'https://ror.org/022jg8f66 Yemenia University الجامعة Ų§Ł„ŁŠŁ…Ł†ŁŠŲ©'),
(26804, 'https://ror.org/022jkh022', 'no_lang_code', 1, 'https://ror.org/022jkh022 Hradecký Písek (Czechia)'),
(26805, 'https://ror.org/022ktzz27', 'en', 1, 'https://ror.org/022ktzz27 Uman National University of Horticulture Уманський Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ саГівництва'),
(26806, 'https://ror.org/022nh8g63', 'en', 1, 'https://ror.org/022nh8g63 Huntsville Museum of Art'),
(26807, 'https://ror.org/022qy6h97', 'en', 1, 'https://ror.org/022qy6h97 Alcide De Gasperi University of Euroregional Economy in Józefów Alcide De Gasperi University of Euroregional Economy w Józefowie'),
(26808, 'https://ror.org/022rp9q74', 'en', 1, 'https://ror.org/022rp9q74 Senri Kinran University åƒé‡Œé‡‘č˜­å¤§å­¦'),
(26809, 'https://ror.org/022v6g479', 'en', 1, 'https://ror.org/022v6g479 Henderson County Public Library'),
(26810, 'https://ror.org/022xhck05', 'en', 1, 'https://ror.org/022xhck05 Haliç University Haliç Üniversitesi'),
(26811, 'https://ror.org/02311bm93', 'en', 1, 'https://ror.org/02311bm93 Inner Mongolia University of Finance and Economics å†…č’™å¤č“¢ē»å¤§å­¦'),
(26812, 'https://ror.org/0231s0n71', 'no_lang_code', 1, 'https://ror.org/0231s0n71 Watrad (Czechia)'),
(26813, 'https://ror.org/0232btn91', 'en', 1, 'https://ror.org/0232btn91 New England Historic Genealogical Society'),
(26814, 'https://ror.org/0233vx723', 'en', 1, 'https://ror.org/0233vx723 Freeport Historical Society'),
(26815, 'https://ror.org/0234wz714', 'no_lang_code', 1, 'https://ror.org/0234wz714 Environmental Technologies (United States)'),
(26816, 'https://ror.org/0236n1k26', 'en', 1, 'https://ror.org/0236n1k26 Association of the Innovation Center of Electronics'),
(26817, 'https://ror.org/0236zx722', 'no_lang_code', 1, 'https://ror.org/0236zx722 Gundalow (United States)'),
(26818, 'https://ror.org/02375ts60', 'en', 1, 'https://ror.org/02375ts60 New Siberian Institute ŠŠ¾Š²Ń‹Š¹ сибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(26819, 'https://ror.org/02376g836', 'en', 1, 'https://ror.org/02376g836 Franz Liszt Academy of Music'),
(26820, 'https://ror.org/0238cf984', 'en', 1, 'https://ror.org/0238cf984 Central Philippine University Pamantasang Sentral ng Pilipinas'),
(26821, 'https://ror.org/0238qsm25', 'en', 1, 'https://ror.org/0238qsm25 Nihon Fukushi University ę—„ęœ¬ē¦ē„‰å¤§å­¦'),
(26822, 'https://ror.org/0239rpj17', 'en', 1, 'https://ror.org/0239rpj17 ImagineIF Libraries'),
(26823, 'https://ror.org/023b1vx40', 'no_lang_code', 1, 'https://ror.org/023b1vx40 MathAn Praha (Czechia)'),
(26824, 'https://ror.org/023bes347', 'en', 1, 'https://ror.org/023bes347 Sikkim Manipal University'),
(26825, 'https://ror.org/023crty50', 'en', 1, 'https://ror.org/023crty50 Shahroud University of Medical Sciences'),
(26826, 'https://ror.org/023cthp32', 'en', 1, 'https://ror.org/023cthp32 Witherspoon Institute'),
(26827, 'https://ror.org/023czz272', 'en', 1, 'https://ror.org/023czz272 American University of Rome Amerikanische UniversitƤt Rom UniversitƩ amƩricaine de Rome'),
(26828, 'https://ror.org/023d4z626', 'en', 1, 'https://ror.org/023d4z626 University Hospital of Oran مستؓفى ŁˆŁ‡Ų±Ų§Ł† Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(26829, 'https://ror.org/023gma697', 'no_lang_code', 1, 'https://ror.org/023gma697 Synthos Group (Czechia)'),
(26830, 'https://ror.org/023gw3p07', 'no_lang_code', 1, 'https://ror.org/023gw3p07 Washington Ballet (United States)'),
(26831, 'https://ror.org/023jsyh61', 'en', 1, 'https://ror.org/023jsyh61 Mokpo National Maritime University ėŖ©ķ¬ķ•“ģ–‘ėŒ€ķ•™źµ'),
(26832, 'https://ror.org/023jtzw61', 'en', 1, 'https://ror.org/023jtzw61 Flowerdew Hundred Foundation'),
(26833, 'https://ror.org/023jw8186', 'no_lang_code', 1, 'https://ror.org/023jw8186 Sapporo Ōtani University 札幌大谷大学'),
(26834, 'https://ror.org/023k50a48', 'it', 1, 'https://ror.org/023k50a48 Fondazione Italiana per la Ricerca in Agricoltura Biologica e Biodinamica'),
(26835, 'https://ror.org/023mp3m37', 'en', 1, 'https://ror.org/023mp3m37 Hong Kong Virtual University 香港虛擬大學'),
(26836, 'https://ror.org/023ntbt15', 'en', 1, 'https://ror.org/023ntbt15 Japanese Red Cross Toyota College of Nursing ę—„ęœ¬čµ¤åå­—č±Šē”°ēœ‹č­·å¤§å­¦'),
(26837, 'https://ror.org/023ra7e85', 'en', 1, 'https://ror.org/023ra7e85 Allen Public Library'),
(26838, 'https://ror.org/023rme066', 'en', 1, 'https://ror.org/023rme066 South Puget Sound Community College'),
(26839, 'https://ror.org/023t8mt09', 'en', 1, 'https://ror.org/023t8mt09 Hong Kong Shue Yan University 香港樹仁大學'),
(26840, 'https://ror.org/023tdry64', 'en', 1, 'https://ror.org/023tdry64 Sirjan University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų³ŪŒŲ±Ų¬Ų§Ł†'),
(26841, 'https://ror.org/023tegq12', 'en', 1, 'https://ror.org/023tegq12 Jaamacadda Hargeysa University of Hargeisa Ų¬Ų§Ł…Ų¹Ų© Ł‡Ų±Ų¬ŁŠŲ³Ų§'),
(26842, 'https://ror.org/023wavd33', 'en', 1, 'https://ror.org/023wavd33 Pampanga State Agricultural University'),
(26843, 'https://ror.org/023y0xv72', 'en', 1, 'https://ror.org/023y0xv72 Paul Revere Memorial Association'),
(26844, 'https://ror.org/0242zbf37', 'en', 1, 'https://ror.org/0242zbf37 Alaska Seafood Marketing Institute'),
(26845, 'https://ror.org/0243h2p98', 'en', 1, 'https://ror.org/0243h2p98 St.Tikhon''s Orthodox University ŠŸŃ€Š°Š²Š¾ŃŠ»Š°Š²Š½Ń‹Š¹ Š”Š²ŃŃ‚Š¾-Тихоновский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26846, 'https://ror.org/0244fjs95', 'en', 1, 'https://ror.org/0244fjs95 San Antonio Public Library'),
(26847, 'https://ror.org/02450sh88', 'en', 1, 'https://ror.org/02450sh88 Society for American Music'),
(26848, 'https://ror.org/0246ges37', 'en', 1, 'https://ror.org/0246ges37 Independence Seaport Museum'),
(26849, 'https://ror.org/0247ag655', 'id', 1, 'https://ror.org/0247ag655 Universitas Islam Indragiri'),
(26850, 'https://ror.org/0247jm624', 'en', 1, 'https://ror.org/0247jm624 Gulf of Mexico Foundation'),
(26851, 'https://ror.org/0247pbj10', 'en', 1, 'https://ror.org/0247pbj10 Ubon Ratchathani Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(26852, 'https://ror.org/024b38m94', 'en', 1, 'https://ror.org/024b38m94 St. Paul University Quezon City'),
(26853, 'https://ror.org/024ba6473', 'en', 1, 'https://ror.org/024ba6473 Hebei Institute of Physical Education ę²³åŒ—ä½“č‚²å­¦é™¢'),
(26854, 'https://ror.org/024ckfb15', 'en', 1, 'https://ror.org/024ckfb15 Academy of the Police Force in Bratislava AkadƩmia PolicajnƩho zboru v Bratislave'),
(26855, 'https://ror.org/024d7eg57', 'id', 1, 'https://ror.org/024d7eg57 Universitas Sulawesi Tenggara'),
(26856, 'https://ror.org/024e4df17', 'en', 1, 'https://ror.org/024e4df17 California Institute of the Arts Instituto de Artes de California'),
(26857, 'https://ror.org/024etxn40', 'en', 1, 'https://ror.org/024etxn40 S.Seifullin Kazakh Agro Technical University Š”. Š”ŠµŠ¹Ń„ŃƒŠ»Š»ŠøŠ½ атынГағы қазақ агротехникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(26858, 'https://ror.org/024h65n23', 'no_lang_code', 1, 'https://ror.org/024h65n23 Favea (Czechia)'),
(26859, 'https://ror.org/024hcay96', 'en', 1, 'https://ror.org/024hcay96 Achva Academic College המכללה ×”××§×“×ž×™×Ŗ אחוה'),
(26860, 'https://ror.org/024j7nb58', 'en', 1, 'https://ror.org/024j7nb58 Pavlodar State Pedagogical University ŠŸŠ°Š²Š»Š¾Š“Š°Ń€ мемлекеттік пеГагогикалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(26861, 'https://ror.org/024jjwz66', 'en', 1, 'https://ror.org/024jjwz66 Regional Communal Higher Educational Institution Institute of Entrepreneurship Strategy ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ траГиційної меГицини'),
(26862, 'https://ror.org/024jn1h80', 'en', 1, 'https://ror.org/024jn1h80 Arts and Theatre Institute'),
(26863, 'https://ror.org/024mdxt30', 'en', 1, 'https://ror.org/024mdxt30 Moscow Institute of Foreign Languages Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иностранных ŃŠ·Ń‹ŠŗŠ¾Š²'),
(26864, 'https://ror.org/024nn8203', 'hu', 1, 'https://ror.org/024nn8203 Adventista Teológiai Fõiskola Hungarian Adventist Theological College'),
(26865, 'https://ror.org/024p3pn20', 'no_lang_code', 1, 'https://ror.org/024p3pn20 Seisa Dohto University ę˜Ÿę§Žé“éƒ½å¤§å­¦'),
(26866, 'https://ror.org/024psbf52', 'en', 1, 'https://ror.org/024psbf52 W. F. Albright Institute of Archaeological Research'),
(26867, 'https://ror.org/024s2tr48', 'en', 1, 'https://ror.org/024s2tr48 Bakke Graduate University'),
(26868, 'https://ror.org/024t55b22', 'en', 1, 'https://ror.org/024t55b22 Ulysses S. Grant Association'),
(26869, 'https://ror.org/024v1qn33', 'en', 1, 'https://ror.org/024v1qn33 Arizona State Land Department'),
(26870, 'https://ror.org/024w08x16', 'en', 1, 'https://ror.org/024w08x16 Columbia River Maritime Museum'),
(26871, 'https://ror.org/024xmp423', 'en', 1, 'https://ror.org/024xmp423 Ural State University of Physical Culture'),
(26872, 'https://ror.org/024ytaq06', 'en', 1, 'https://ror.org/024ytaq06 Field Studies Council'),
(26873, 'https://ror.org/024zspx22', 'en', 1, 'https://ror.org/024zspx22 Comrat State University Komrat Devlet Üniversitesi Universitatea de Stat din Comrat ŠšŠ¾Š¼Ń€Š°Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26874, 'https://ror.org/02532pm14', 'en', 1, 'https://ror.org/02532pm14 International University of Korea ķ•œźµ­źµ­ģ œėŒ€ķ•™źµ'),
(26875, 'https://ror.org/02543bv68', 'en', 1, 'https://ror.org/02543bv68 Akita University of Nursing and Welfare ē§‹ē”°ēœ‹č­·ē¦ē„‰å¤§å­¦'),
(26876, 'https://ror.org/0255nn983', 'en', 1, 'https://ror.org/0255nn983 Thiruvalluvar University ą®¤ą®æą®°ąÆą®µą®³ąÆą®³ąÆą®µą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(26877, 'https://ror.org/02579k123', 'id', 1, 'https://ror.org/02579k123 Universitas Bina Darma'),
(26878, 'https://ror.org/025acyt23', 'en', 1, 'https://ror.org/025acyt23 Warner University'),
(26879, 'https://ror.org/025b8gs35', 'no_lang_code', 1, 'https://ror.org/025b8gs35 Bioveta (Czechia)'),
(26880, 'https://ror.org/025dv5233', 'en', 1, 'https://ror.org/025dv5233 Iberia Parish Library'),
(26881, 'https://ror.org/025e3rc84', 'en', 1, 'https://ror.org/025e3rc84 University of Cambodia įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(26882, 'https://ror.org/025ee3160', 'id', 1, 'https://ror.org/025ee3160 Universitas WR Supratman'),
(26883, 'https://ror.org/025gjwv49', 'no_lang_code', 1, 'https://ror.org/025gjwv49 Ekowatt (Czechia)'),
(26884, 'https://ror.org/025h0r574', 'es', 1, 'https://ror.org/025h0r574 Fundación Pública Galega de Medicina Xenómica Genomic Medicine Group'),
(26885, 'https://ror.org/025hwk980', 'en', 1, 'https://ror.org/025hwk980 South Kazakhstan Medical Academy ŠžŅ£Ń‚ŅÆŃŃ‚Ń–Šŗ ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ меГицина Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(26886, 'https://ror.org/025kkqh74', 'en', 1, 'https://ror.org/025kkqh74 Ural State Conservatory named after M.P. Mussorgsky Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени М. П. ŠœŃƒŃŠ¾Ń€Š³ŃŠŗŠ¾Š³Š¾'),
(26887, 'https://ror.org/025km4h87', 'en', 1, 'https://ror.org/025km4h87 Gansu Institute of Political Science and Law ē”˜č‚ƒę”æę³•å­¦é™¢'),
(26888, 'https://ror.org/025kxab11', 'en', 1, 'https://ror.org/025kxab11 Jilin College of the Arts å‰ęž—č‰ŗęœÆå­¦é™¢'),
(26889, 'https://ror.org/025p05r74', 'en', 1, 'https://ror.org/025p05r74 Sachem Public Library'),
(26890, 'https://ror.org/025p0rk11', 'en', 1, 'https://ror.org/025p0rk11 Islamic Azad University of Garmsar دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گرمسار'),
(26891, 'https://ror.org/025p4jf48', 'en', 1, 'https://ror.org/025p4jf48 Tokyo Junshin University ę±äŗ¬ē“”åæƒå¤§å­¦'),
(26892, 'https://ror.org/025q3xb93', 'en', 1, 'https://ror.org/025q3xb93 FEATI University'),
(26893, 'https://ror.org/025q7w350', 'en', 1, 'https://ror.org/025q7w350 Yezin Agricultural University į€›į€±į€†į€„į€ŗį€øį€…į€­į€Æį€€į€ŗį€•į€»į€­į€Æį€øį€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(26894, 'https://ror.org/025qjtp52', 'en', 1, 'https://ror.org/025qjtp52 Annapolis Maritime Museum'),
(26895, 'https://ror.org/025s3sg85', 'no_lang_code', 1, 'https://ror.org/025s3sg85 Elceram (Czechia)'),
(26896, 'https://ror.org/025sb3367', 'en', 1, 'https://ror.org/025sb3367 Gavar State University Ō³Õ”Õ¾Õ”Õ¼Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(26897, 'https://ror.org/025vabz67', 'en', 1, 'https://ror.org/025vabz67 California Coastal Commission'),
(26898, 'https://ror.org/025vqqa73', 'no_lang_code', 1, 'https://ror.org/025vqqa73 J P Kenny'),
(26899, 'https://ror.org/025ycfy09', 'en', 1, 'https://ror.org/025ycfy09 Iowa Department of Cultural Affairs'),
(26900, 'https://ror.org/025yf4572', 'en', 1, 'https://ror.org/025yf4572 New Jersey State Library'),
(26901, 'https://ror.org/025ytsr97', 'en', 1, 'https://ror.org/025ytsr97 Kerala University of Fisheries and Ocean Studies'),
(26902, 'https://ror.org/025ze7j58', 'en', 1, 'https://ror.org/025ze7j58 Kansas City, Kansas Public Library'),
(26903, 'https://ror.org/0262acg06', 'en', 1, 'https://ror.org/0262acg06 American Textile History Museum'),
(26904, 'https://ror.org/0264cyj93', 'en', 1, 'https://ror.org/0264cyj93 Sagami Women''s University 相樔儳子大学'),
(26905, 'https://ror.org/0265z5881', 'en', 1, 'https://ror.org/0265z5881 Elizabeth River Project'),
(26906, 'https://ror.org/0266qh788', 'en', 1, 'https://ror.org/0266qh788 North-West Institute of Management Деверо-ЗапаГный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(26907, 'https://ror.org/0266ryr82', 'no_lang_code', 1, 'https://ror.org/0266ryr82 ApS Brno (Czechia)'),
(26908, 'https://ror.org/0267k9n61', 'no_lang_code', 1, 'https://ror.org/0267k9n61 Kinjo University 金城大学'),
(26909, 'https://ror.org/026b8w395', 'en', 1, 'https://ror.org/026b8w395 Girne American University Girne Amerikan Üniversitesi'),
(26910, 'https://ror.org/026b9sf88', 'no_lang_code', 1, 'https://ror.org/026b9sf88 KR Mangalam University ą¤•ą„‡.आर. मंगलम ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(26911, 'https://ror.org/026g5rw93', 'en', 1, 'https://ror.org/026g5rw93 Pensacola Historical Society'),
(26912, 'https://ror.org/026gk3798', 'en', 1, 'https://ror.org/026gk3798 Baku Slavic University Bakı Slavyan Universiteti Бакинский ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26913, 'https://ror.org/026j13a09', 'en', 1, 'https://ror.org/026j13a09 Doho University åŒęœ‹å¤§å­¦'),
(26914, 'https://ror.org/026k26b95', 'no_lang_code', 1, 'https://ror.org/026k26b95 Aomori Chuo Gakuin University é’ę£®äø­å¤®å­¦é™¢å¤§å­¦'),
(26915, 'https://ror.org/026katm53', 'pl', 1, 'https://ror.org/026katm53 Wyższa Szkoła Zarządzania Marketingowego i Języków Obcych'),
(26916, 'https://ror.org/026mhap18', 'en', 1, 'https://ror.org/026mhap18 Apollonia University Universitatea Apollonia'),
(26917, 'https://ror.org/026nzdq35', 'no_lang_code', 1, 'https://ror.org/026nzdq35 Feminist Press'),
(26918, 'https://ror.org/026q96n20', 'en', 1, 'https://ror.org/026q96n20 Keiwa College ę•¬å’Œå­¦åœ’å¤§å­¦'),
(26919, 'https://ror.org/026qjzt27', 'en', 1, 'https://ror.org/026qjzt27 Saint - Petersburg Institute of Management and Law Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŠŸŃ€Š°Š²Š°'),
(26920, 'https://ror.org/026qx6917', 'en', 1, 'https://ror.org/026qx6917 Chongshin University ģ“ģ‹ ėŒ€ķ•™źµ'),
(26921, 'https://ror.org/026qypj38', 'en', 1, 'https://ror.org/026qypj38 Petre Andrei University of Iași Universitatea "Petre Andrei" din Iasi'),
(26922, 'https://ror.org/026r2c210', 'en', 1, 'https://ror.org/026r2c210 Dallas Institute of Humanities and Culture'),
(26923, 'https://ror.org/026rmnx29', 'en', 1, 'https://ror.org/026rmnx29 Via Vinci Academy'),
(26924, 'https://ror.org/026wj5m95', 'en', 1, 'https://ror.org/026wj5m95 South Carolina Association of Public Library Administration'),
(26925, 'https://ror.org/0272csn50', 'en', 1, 'https://ror.org/0272csn50 Lakshmibai National Institute of Physical Education'),
(26926, 'https://ror.org/02746y325', 'en', 1, 'https://ror.org/02746y325 Operahƶgskolan i Stockholm Tukholman oopperakorkeakoulu University College of Opera in Stockholm'),
(26927, 'https://ror.org/0274ane14', 'en', 1, 'https://ror.org/0274ane14 John Carter Brown Library'),
(26928, 'https://ror.org/0274gjx61', 'en', 1, 'https://ror.org/0274gjx61 University of Traditional Medicine, Mandalay į€į€­į€Æį€„į€ŗį€øį€›į€„į€ŗį€øā€Œį€†į€±į€øį€žį€­į€•į€¹į€•į€¶ā€Œį€€į€»į€±į€¬į€„į€ŗį€ø'),
(26929, 'https://ror.org/0276taz87', 'en', 1, 'https://ror.org/0276taz87 Association for Computers and the Humanities'),
(26930, 'https://ror.org/0277k6k46', 'en', 1, 'https://ror.org/0277k6k46 Maine Maritime Museum'),
(26931, 'https://ror.org/027a68c09', 'no_lang_code', 1, 'https://ror.org/027a68c09 Oritest Group (Czechia)'),
(26932, 'https://ror.org/027anng05', 'en', 1, 'https://ror.org/027anng05 Lebanese International University الجامعة Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ©'),
(26933, 'https://ror.org/027b58k10', 'en', 1, 'https://ror.org/027b58k10 Hiroshima University of Economics 広島経済大学'),
(26934, 'https://ror.org/027dkjg03', 'en', 1, 'https://ror.org/027dkjg03 Keisen University ęµę³‰å„³å­¦åœ’å¤§å­¦'),
(26935, 'https://ror.org/027mg2511', 'en', 1, 'https://ror.org/027mg2511 Tsuda University 擄田唾大学'),
(26936, 'https://ror.org/027n8z047', 'en', 1, 'https://ror.org/027n8z047 St. Cyril and St. Methodius University of Veliko Tarnovo Š’ŠµŠ»ŠøŠŗŠ¾Ń‚ŃŠŃ€Š½Š¾Š²ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26937, 'https://ror.org/027n9q071', 'fr', 1, 'https://ror.org/027n9q071 UniversitƩ des Montagnes'),
(26938, 'https://ror.org/027ngh677', 'en', 1, 'https://ror.org/027ngh677 Roberson Museum and Science Center'),
(26939, 'https://ror.org/027rk0w58', 'en', 1, 'https://ror.org/027rk0w58 Heritage Center of the Union League of Philadelphia'),
(26940, 'https://ror.org/027rrs715', 'en', 1, 'https://ror.org/027rrs715 Rhema University'),
(26941, 'https://ror.org/027thw408', 'en', 1, 'https://ror.org/027thw408 Palo Alto Unified School District'),
(26942, 'https://ror.org/027vj6z88', 'en', 1, 'https://ror.org/027vj6z88 International College of Applied Kinesiology-USA'),
(26943, 'https://ror.org/027yf1g97', 'en', 1, 'https://ror.org/027yf1g97 Daegu Cyber University ėŒ€źµ¬ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(26944, 'https://ror.org/0282prk66', 'en', 1, 'https://ror.org/0282prk66 National University Odesa Law Academy ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Университет ŠžŠ“ŠµŃŃŠŗŠ°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠžŠ“ŠµŃŃŒŠŗŠ° ŃŽŃ€ŠøŠ“ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(26945, 'https://ror.org/0282stx37', 'en', 1, 'https://ror.org/0282stx37 Aston Magna Foundation'),
(26946, 'https://ror.org/02836fb11', 'en', 1, 'https://ror.org/02836fb11 Univers Moldova'),
(26947, 'https://ror.org/0283yy536', 'id', 1, 'https://ror.org/0283yy536 Universitas Lancang Kuning'),
(26948, 'https://ror.org/0285m7689', 'en', 1, 'https://ror.org/0285m7689 Phnom Penh International University'),
(26949, 'https://ror.org/02865ms07', 'en', 1, 'https://ror.org/02865ms07 Islamic Azad University of Gorgan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گرگان'),
(26950, 'https://ror.org/02866re76', 'en', 1, 'https://ror.org/02866re76 Boston University Academy'),
(26951, 'https://ror.org/0287pc187', 'en', 1, 'https://ror.org/0287pc187 Mount Auburn Cemetery'),
(26952, 'https://ror.org/0287qtx49', 'id', 1, 'https://ror.org/0287qtx49 Universitas Sintuwu Maroso'),
(26953, 'https://ror.org/02890tv09', 'en', 1, 'https://ror.org/02890tv09 American Public University System'),
(26954, 'https://ror.org/0289me815', 'en', 1, 'https://ror.org/0289me815 University of South Carolina Lancaster'),
(26955, 'https://ror.org/028a67802', 'no_lang_code', 1, 'https://ror.org/028a67802 Alma Mater Europaea'),
(26956, 'https://ror.org/028bh4q69', 'en', 1, 'https://ror.org/028bh4q69 Bell County Museum'),
(26957, 'https://ror.org/028bz2q30', 'en', 1, 'https://ror.org/028bz2q30 Marlboro College'),
(26958, 'https://ror.org/028bztp57', 'en', 1, 'https://ror.org/028bztp57 Institute of Modern Technologies and Economy ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ современных технологий Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(26959, 'https://ror.org/028ecsj10', 'en', 1, 'https://ror.org/028ecsj10 Periyar Maniammai Institute of Science & Technology ą®ŖąÆ†ą®°ą®æą®Æą®¾ą®°ąÆ ą®®ą®£ą®æą®Æą®®ąÆą®®ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(26960, 'https://ror.org/028h95t32', 'en', 1, 'https://ror.org/028h95t32 Ludong University 鲁东大学'),
(26961, 'https://ror.org/028kehd60', 'en', 1, 'https://ror.org/028kehd60 Ashesi University'),
(26962, 'https://ror.org/028mtfb17', 'en', 1, 'https://ror.org/028mtfb17 Synergy University Московский финансово-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š”ŠøŠ½ŠµŃ€Š³ŠøŃ'),
(26963, 'https://ror.org/028ptjw77', 'en', 1, 'https://ror.org/028ptjw77 Baltic Institute of Economics and Finance Балтийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø финансов'),
(26964, 'https://ror.org/028qksx08', 'en', 1, 'https://ror.org/028qksx08 Institute of Economics and Law Воронежский ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-правовой ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(26965, 'https://ror.org/028r0g017', 'no_lang_code', 1, 'https://ror.org/028r0g017 EMP (Czechia)'),
(26966, 'https://ror.org/028r4zr88', 'en', 1, 'https://ror.org/028r4zr88 Multimedia University of Kenya'),
(26967, 'https://ror.org/028t56857', 'en', 1, 'https://ror.org/028t56857 Magnes Collection of Jewish Art and Life'),
(26968, 'https://ror.org/028vh3r56', 'en', 1, 'https://ror.org/028vh3r56 Suzuka University éˆ“é¹æå›½éš›å¤§å­¦'),
(26969, 'https://ror.org/0292bh813', 'en', 1, 'https://ror.org/0292bh813 Mahaveer Academy of Technology and Science University ą¤®ą„ˆą¤Ÿą„ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(26970, 'https://ror.org/0292j7348', 'en', 1, 'https://ror.org/0292j7348 Kingswood University'),
(26971, 'https://ror.org/02952pd71', 'en', 1, 'https://ror.org/02952pd71 Pwani University'),
(26972, 'https://ror.org/0297ekn51', 'en', 1, 'https://ror.org/0297ekn51 Bergenfield Public Library'),
(26973, 'https://ror.org/0299k9v97', 'en', 1, 'https://ror.org/0299k9v97 Hudson River Valley Greenway'),
(26974, 'https://ror.org/029aq5550', 'no_lang_code', 1, 'https://ror.org/029aq5550 Jaamacada Kismaayo Kismayo University'),
(26975, 'https://ror.org/029bnc353', 'en', 1, 'https://ror.org/029bnc353 American Shakespeare Center'),
(26976, 'https://ror.org/029cdgh07', 'no_lang_code', 1, 'https://ror.org/029cdgh07 HBH Projekt (Czechia)'),
(26977, 'https://ror.org/029d56x50', 'en', 1, 'https://ror.org/029d56x50 St. Lawrence University'),
(26978, 'https://ror.org/029e8g588', 'en', 1, 'https://ror.org/029e8g588 Akobo Heritage and Memorial University'),
(26979, 'https://ror.org/029hrv109', 'en', 1, 'https://ror.org/029hrv109 National Taipei University of Business åœ‹ē«‹č‡ŗåŒ—å•†ę„­å¤§å­ø'),
(26980, 'https://ror.org/029hynv20', 'en', 1, 'https://ror.org/029hynv20 Saint Petersburg Medical Technical Institute Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинских'),
(26981, 'https://ror.org/029nrcq47', 'no_lang_code', 1, 'https://ror.org/029nrcq47 RS Dynamics (Czechia)'),
(26982, 'https://ror.org/029pyt764', 'en', 1, 'https://ror.org/029pyt764 Inter-University Center for Japanese Language Studies ć‚¢ćƒ”ćƒŖć‚«ćƒ»ć‚«ćƒŠćƒ€å¤§å­¦é€£åˆę—„ęœ¬ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(26983, 'https://ror.org/029sbsp57', 'en', 1, 'https://ror.org/029sbsp57 Badakhshan University Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲØŲÆŲ®Ų“Ų§Ł†ā€Ž'),
(26984, 'https://ror.org/029smmd76', 'en', 1, 'https://ror.org/029smmd76 University of Human Environments äŗŗé–“ē’°å¢ƒå¤§å­¦'),
(26985, 'https://ror.org/029t3me68', 'en', 1, 'https://ror.org/029t3me68 Mary Bridge Children''s Health Center'),
(26986, 'https://ror.org/029vq3n45', 'no_lang_code', 1, 'https://ror.org/029vq3n45 Thermo Fisher Scientific (Czechia)'),
(26987, 'https://ror.org/029w8yh46', 'en', 1, 'https://ror.org/029w8yh46 Jacksonville Public Library'),
(26988, 'https://ror.org/029xngd29', 'en', 1, 'https://ror.org/029xngd29 Fryderyk Chopin University of Music Uniwersytet Muzyczny Fryderyka Chopina'),
(26989, 'https://ror.org/029ykak92', 'cs', 1, 'https://ror.org/029ykak92 KrajskĆ” HygienickĆ” Stanice StředočeskĆ©ho Kraje se SĆ­dlem v Praze'),
(26990, 'https://ror.org/029zgsn59', 'en', 1, 'https://ror.org/029zgsn59 Canadian University of Dubai الجامعة Ų§Ł„ŁƒŁ†ŲÆŁŠŲ© دبي'),
(26991, 'https://ror.org/029zx7z39', 'en', 1, 'https://ror.org/029zx7z39 Aomori Public University é’ę£®å…¬ē«‹å¤§å­¦'),
(26992, 'https://ror.org/02a1v1364', 'id', 1, 'https://ror.org/02a1v1364 Universitas Lakidende'),
(26993, 'https://ror.org/02a4ky105', 'en', 1, 'https://ror.org/02a4ky105 Hawai''i Wildlife Fund'),
(26994, 'https://ror.org/02a67c878', 'no_lang_code', 1, 'https://ror.org/02a67c878 Vakuum Praha (Czechia)'),
(26995, 'https://ror.org/02a6jmr02', 'en', 1, 'https://ror.org/02a6jmr02 Cebu Institute of Technology University'),
(26996, 'https://ror.org/02a7kg544', 'no_lang_code', 1, 'https://ror.org/02a7kg544 Seoul Jangsin University'),
(26997, 'https://ror.org/02a7s0q69', 'en', 1, 'https://ror.org/02a7s0q69 American Swedish Historical Museum'),
(26998, 'https://ror.org/02a7zg443', 'en', 1, 'https://ror.org/02a7zg443 University of the Humanities Š„ŅÆŠ¼ŅÆŅÆŠ½Š»ŃŠ³ŠøŠ¹Š½ Ухааны Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(26999, 'https://ror.org/02a86ry03', 'en', 1, 'https://ror.org/02a86ry03 Chuo Kikuu cha Waislamu Morogoro Muslim University of Morogoro'),
(27000, 'https://ror.org/02a9gfy77', 'en', 1, 'https://ror.org/02a9gfy77 Gaston County Public Library'),
(27001, 'https://ror.org/02aayd667', 'en', 1, 'https://ror.org/02aayd667 Emanuel University Universitatea Emanuel'),
(27002, 'https://ror.org/02abkvw08', 'no_lang_code', 1, 'https://ror.org/02abkvw08 Linet (Czechia)'),
(27003, 'https://ror.org/02ad4my11', 'no_lang_code', 1, 'https://ror.org/02ad4my11 DopravnĆ­ RozvojovĆ© Středisko (Czechia)'),
(27004, 'https://ror.org/02afr7y67', 'en', 1, 'https://ror.org/02afr7y67 Onondaga County Public Library'),
(27005, 'https://ror.org/02agqkc58', 'en', 1, 'https://ror.org/02agqkc58 Western University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžœįŸįžŸįŸ’įž‘įž¾įž“'),
(27006, 'https://ror.org/02ahyfq08', 'en', 1, 'https://ror.org/02ahyfq08 University of the Potomac'),
(27007, 'https://ror.org/02ahzqq48', 'no_lang_code', 1, 'https://ror.org/02ahzqq48 Fer Kladno (Czechia)'),
(27008, 'https://ror.org/02amxp214', 'no_lang_code', 1, 'https://ror.org/02amxp214 Mahachulalongkornrajavidyalaya University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø”ąø«ąø²ąøˆąøøąø¬ąø²ąø„ąø‡ąøąø£ąø“ąø£ąø²ąøŠąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(27009, 'https://ror.org/02aps7m22', 'en', 1, 'https://ror.org/02aps7m22 Golden Gate National Parks Conservancy'),
(27010, 'https://ror.org/02aq38w28', 'en', 1, 'https://ror.org/02aq38w28 Lackawanna County Library System'),
(27011, 'https://ror.org/02aq91h52', 'en', 1, 'https://ror.org/02aq91h52 Academy of Public Administration under the aegis of the President of the Republic of Belarus ŠŠŗŠ°Š“ŠµĢŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµĢŠ½ŠøŃ при ŠŸŃ€ŠµŠ·ŠøŠ“е́нте Респу́блики Š‘ŠµŠ»Š°Ń€ŃƒĢŃŃŒ ŠŠŗŠ°Š“ŃĢŠ¼iя ŠŗiŃ€Š°Š²Š°ĢŠ½Š½Ń пры ŠŸŃ€ŃŠ·iŠ“ŃĢŠ½Ń†Šµ Š ŃŃŠæŃƒĢŠ±Š»iŠŗi Š‘ŠµŠ»Š°Ń€ŃƒĢŃŃŒ'),
(27012, 'https://ror.org/02ar8my54', 'en', 1, 'https://ror.org/02ar8my54 Yakima Valley Museum'),
(27013, 'https://ror.org/02asgt557', 'en', 1, 'https://ror.org/02asgt557 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų© / الأردن'),
(27014, 'https://ror.org/02at53m79', 'en', 1, 'https://ror.org/02at53m79 Northern University ناردرن Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ł†ŁˆŚšŲ§Ų± ناردرن ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ Ł†ŁˆŲ“ŪŲ±Ū'),
(27015, 'https://ror.org/02avqnk51', 'en', 1, 'https://ror.org/02avqnk51 Kazakh Academy of Sport and Tourism ŅšŠ°Š·Š°Ņ› спорт және Ń‚ŃƒŃ€ŠøŠ·Š¼ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(27016, 'https://ror.org/02azpgf48', 'en', 1, 'https://ror.org/02azpgf48 American University of Iraq Sulaimani الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ų§Ł„Ų³Ł„ŁŠŁ…Ų§Ł†ŁŠŲ©'),
(27017, 'https://ror.org/02azr0g93', 'en', 1, 'https://ror.org/02azr0g93 Khairun University Universitas Khairun'),
(27018, 'https://ror.org/02b2qz884', 'no_lang_code', 1, 'https://ror.org/02b2qz884 Sinar Mas (Indonesia)'),
(27019, 'https://ror.org/02b394754', 'en', 1, 'https://ror.org/02b394754 University of Pittsburgh at Greensburg'),
(27020, 'https://ror.org/02b3jvc59', 'en', 1, 'https://ror.org/02b3jvc59 South Dakota State Historical Society'),
(27021, 'https://ror.org/02b4gv182', 'en', 1, 'https://ror.org/02b4gv182 Moscow State Agroengineering University named after V.P. Goryachkin Московский Š³Š¾ŃŃƒŠ“арственный агроинженерный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. П. Š“Š¾Ń€ŃŃ‡ŠŗŠøŠ½Š°'),
(27022, 'https://ror.org/02b5k3s39', 'en', 1, 'https://ror.org/02b5k3s39 Texas Parks and Wildlife Department'),
(27023, 'https://ror.org/02barjc38', 'en', 1, 'https://ror.org/02barjc38 Arni University ą¤…ą¤°ą„ą¤Øą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27024, 'https://ror.org/02bbvzp74', 'en', 1, 'https://ror.org/02bbvzp74 Indian Law Institute'),
(27025, 'https://ror.org/02bc24n80', 'en', 1, 'https://ror.org/02bc24n80 Sendai Shirayuri Women''s College ä»™å°ē™½ē™¾åˆå„³å­å¤§å­¦'),
(27026, 'https://ror.org/02bcg1976', 'en', 1, 'https://ror.org/02bcg1976 Islamic Azad University of Tafresh دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تفرؓ'),
(27027, 'https://ror.org/02bdt4v11', 'en', 1, 'https://ror.org/02bdt4v11 Pakistan Institute of Development Economics');
INSERT INTO `rors` VALUES
(27028, 'https://ror.org/02bf1c960', 'en', 1, 'https://ror.org/02bf1c960 Isabella Stewart Gardner Museum'),
(27029, 'https://ror.org/02bfxj795', 'no_lang_code', 1, 'https://ror.org/02bfxj795 Halla Visteon Climate Control (Czechia)'),
(27030, 'https://ror.org/02bgarq81', 'en', 1, 'https://ror.org/02bgarq81 Bay Institute'),
(27031, 'https://ror.org/02bhpc673', 'en', 1, 'https://ror.org/02bhpc673 Bristol Bay Native Association'),
(27032, 'https://ror.org/02bk4fc75', 'en', 1, 'https://ror.org/02bk4fc75 International Conference for the Study of Political Thought'),
(27033, 'https://ror.org/02bk71j42', 'en', 1, 'https://ror.org/02bk71j42 Alaska Department of Military and Veterans Affairs'),
(27034, 'https://ror.org/02bkc9a40', 'en', 1, 'https://ror.org/02bkc9a40 American Academy of Religion'),
(27035, 'https://ror.org/02bkjet92', 'en', 1, 'https://ror.org/02bkjet92 Mississippi Library Commission'),
(27036, 'https://ror.org/02bkptf71', 'no_lang_code', 1, 'https://ror.org/02bkptf71 SilničnĆ­ Vývoj (Czechia)'),
(27037, 'https://ror.org/02bmams93', 'en', 1, 'https://ror.org/02bmams93 St. Thomas University'),
(27038, 'https://ror.org/02bn3q971', 'en', 1, 'https://ror.org/02bn3q971 Rivne State University of Humanities Š Ń–Š²Š½ŠµŠ½ŃŃŒŠŗŠøŠ¹ Гержавний Š³ŃƒŠ¼Š°Š½Ń–тарний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27039, 'https://ror.org/02bn7h511', 'en', 1, 'https://ror.org/02bn7h511 University of La Salette'),
(27040, 'https://ror.org/02bnkm316', 'en', 1, 'https://ror.org/02bnkm316 University of Computer Sciences and Skills Wyższa Szkoła Informatyki w Łodzi'),
(27041, 'https://ror.org/02bprcs59', 'en', 1, 'https://ror.org/02bprcs59 Mariano Marcos State University Pambansang Pamantasan ng Mariano Marcos'),
(27042, 'https://ror.org/02bqzgt47', 'en', 1, 'https://ror.org/02bqzgt47 Dans- och Cirkushƶgskolan University of Dance and Circus'),
(27043, 'https://ror.org/02btq3988', 'en', 1, 'https://ror.org/02btq3988 Sweetwater County Historical Museum'),
(27044, 'https://ror.org/02bvdvz71', 'en', 1, 'https://ror.org/02bvdvz71 Stamford International University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ą¹ąøŖąø•ąø”ąøŸąø­ąø£ą¹Œąø”'),
(27045, 'https://ror.org/02bvvhn54', 'en', 1, 'https://ror.org/02bvvhn54 Abai Kazakh National Pedagogical University Абай атынГағы ŅšŠ°Š·Š°Ņ› ұлттық пеГагогика ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(27046, 'https://ror.org/02bvwpb24', 'en', 1, 'https://ror.org/02bvwpb24 Kokshetau State University ŠšŠ¾ŠŗŃˆŠµŃ‚Š°ŃƒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠšÓ©ŠŗŃˆŠµŃ‚Š°Ńƒ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(27047, 'https://ror.org/02bwrhb42', 'no_lang_code', 1, 'https://ror.org/02bwrhb42 EnerGoConsult (Czechia)'),
(27048, 'https://ror.org/02bwv2c23', 'no_lang_code', 1, 'https://ror.org/02bwv2c23 Letecke Pristroje Praha (Czechia)'),
(27049, 'https://ror.org/02bx4hs93', 'en', 1, 'https://ror.org/02bx4hs93 Buffalo and Erie County Public Library'),
(27050, 'https://ror.org/02bxk9349', 'no_lang_code', 1, 'https://ror.org/02bxk9349 Miracle (Czechia)'),
(27051, 'https://ror.org/02byvvk38', 'no_lang_code', 1, 'https://ror.org/02byvvk38 Disk (Czechia)'),
(27052, 'https://ror.org/02byy8g27', 'en', 1, 'https://ror.org/02byy8g27 Kyushu Lutheran College ä¹å·žćƒ«ćƒ¼ćƒ†ćƒ«å­¦é™¢å¤§å­¦'),
(27053, 'https://ror.org/02bzpph30', 'en', 1, 'https://ror.org/02bzpph30 National Taipei University of Education åœ‹ē«‹č‡ŗåŒ—ę•™č‚²å¤§å­ø'),
(27054, 'https://ror.org/02c1wsz97', 'en', 1, 'https://ror.org/02c1wsz97 National Foundation for Jewish Culture'),
(27055, 'https://ror.org/02c2her03', 'en', 1, 'https://ror.org/02c2her03 Sri Guru Granth Sahib World University ąØøą©ąØ°ą©€ ਗੁਰੂ ąØ—ą©ąØ°ą©°ąØ„ ਸਾਹਿਬ ਵਰਲਔ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(27056, 'https://ror.org/02c2rwt41', 'en', 1, 'https://ror.org/02c2rwt41 Coral Reef Alliance'),
(27057, 'https://ror.org/02c37r983', 'en', 1, 'https://ror.org/02c37r983 University of Negros Occidental – Recoletos'),
(27058, 'https://ror.org/02c385802', 'en', 1, 'https://ror.org/02c385802 George Wythe University'),
(27059, 'https://ror.org/02c733g32', 'id', 1, 'https://ror.org/02c733g32 Universitas Tulang Bawang Lampung'),
(27060, 'https://ror.org/02c7fax93', 'en', 1, 'https://ror.org/02c7fax93 Al Furat University Ų¬Ų§Ł…Ų¹Ų© الفرات'),
(27061, 'https://ror.org/02c875652', 'no_lang_code', 1, 'https://ror.org/02c875652 Research Institute of Textile Machinery VUTS (Czechia)'),
(27062, 'https://ror.org/02c8cxz64', 'en', 1, 'https://ror.org/02c8cxz64 University of the Republic of San Marino UniversitĆ  degli Studi della Repubblica di San Marino'),
(27063, 'https://ror.org/02c8fr539', 'en', 1, 'https://ror.org/02c8fr539 North Bengal Agricultural University Uttar Banga Krishi Viswavidyalaya'),
(27064, 'https://ror.org/02cbb2q94', 'en', 1, 'https://ror.org/02cbb2q94 Trinity Southwest University'),
(27065, 'https://ror.org/02cbm8069', 'en', 1, 'https://ror.org/02cbm8069 South Coast Railroad Museum'),
(27066, 'https://ror.org/02cc4gc68', 'en', 1, 'https://ror.org/02cc4gc68 Allameh Tabataba''i University دانؓگاه علامه طباطبایی'),
(27067, 'https://ror.org/02cd6sx47', 'en', 1, 'https://ror.org/02cd6sx47 Seirei Christopher University č–éš·ć‚ÆćƒŖć‚¹ćƒˆćƒ•ć‚”ćƒ¼å¤§å­¦'),
(27068, 'https://ror.org/02cfjr625', 'no_lang_code', 1, 'https://ror.org/02cfjr625 Kovohutě Příbram NĆ”stupnickĆ” (Czechia)'),
(27069, 'https://ror.org/02cgbcj98', 'en', 1, 'https://ror.org/02cgbcj98 Limkokwing University of Creative Technology Universiti Teknologi Kreatif Limkokwing'),
(27070, 'https://ror.org/02cknsb32', 'en', 1, 'https://ror.org/02cknsb32 WQED'),
(27071, 'https://ror.org/02cm0sv45', 'en', 1, 'https://ror.org/02cm0sv45 Chicago Filmmakers'),
(27072, 'https://ror.org/02cmw6227', 'cs', 1, 'https://ror.org/02cmw6227 KrkonoŔe Mountains National Park SprÔva KrkonoŔského NÔrodního Parku'),
(27073, 'https://ror.org/02cmz8k74', 'en', 1, 'https://ror.org/02cmz8k74 Parsons School of Design'),
(27074, 'https://ror.org/02cne5608', 'en', 1, 'https://ror.org/02cne5608 Glazov State Pedagogical Institute Named after VG Korolenko Š“Š›ŠŠ—ŠžŠ’Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŸŠ•Š”ŠŠ“ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š˜ŠœŠ•ŠŠ˜ Š’.Š“. ŠšŠžŠ ŠžŠ›Š•ŠŠšŠž'),
(27075, 'https://ror.org/02cpgzn10', 'no_lang_code', 1, 'https://ror.org/02cpgzn10 AI Biosciences (United States)'),
(27076, 'https://ror.org/02csxcg02', 'id', 1, 'https://ror.org/02csxcg02 Universitas Dian Nuswantoro'),
(27077, 'https://ror.org/02ct4rh41', 'en', 1, 'https://ror.org/02ct4rh41 Biblioteca PĆŗblica de Queens Queens Public Library'),
(27078, 'https://ror.org/02cxtyv10', 'cs', 1, 'https://ror.org/02cxtyv10 Český Svaz Stavebních Inženýrů'),
(27079, 'https://ror.org/02cxy7q30', 'en', 1, 'https://ror.org/02cxy7q30 Belarusian State Aviation Academy Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ авиации'),
(27080, 'https://ror.org/02czn2d69', 'en', 1, 'https://ror.org/02czn2d69 Society of Architectural Historians'),
(27081, 'https://ror.org/02d04zk75', 'no_lang_code', 1, 'https://ror.org/02d04zk75 Fans (Czechia)'),
(27082, 'https://ror.org/02d0jmr12', 'en', 1, 'https://ror.org/02d0jmr12 Louisville Free Public Library'),
(27083, 'https://ror.org/02d12kw26', 'en', 1, 'https://ror.org/02d12kw26 Eesti EttevƵtluskƵrgkool Mainor Estonian Entrepreneurship University of Applied Sciences'),
(27084, 'https://ror.org/02d19m529', 'en', 1, 'https://ror.org/02d19m529 Tianjin Open University 天擄开放大学'),
(27085, 'https://ror.org/02d2yjc53', 'en', 1, 'https://ror.org/02d2yjc53 University of the Russian Academy of Education Университет Российской АкаГемии ŠžŠ±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(27086, 'https://ror.org/02d4sgc96', 'en', 1, 'https://ror.org/02d4sgc96 Oyster Recovery Partnership'),
(27087, 'https://ror.org/02d6sp246', 'en', 1, 'https://ror.org/02d6sp246 Karoly Robert Foiskola KÔroly Róbert University College'),
(27088, 'https://ror.org/02d8ecr17', 'en', 1, 'https://ror.org/02d8ecr17 Vitebsk State Medical University Віцебскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃžŠ½Ń–Š²ŃŃ€ŃŃ–Ń‚ŃŃ‚'),
(27089, 'https://ror.org/02d9d7j52', 'en', 1, 'https://ror.org/02d9d7j52 Thunchath Ezhuthachan Malayalam University ą®¤ąÆą®žąÆą®šą®¤ąÆą®¤ąÆ ą®Žą®“ąÆą®¤ąÆą®¤ą®šąÆą®šą®©ąÆ மலையாள ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“¤ąµą“žąµą“šą“¤ąµą“¤ąµ ą“Žą““ąµą“¤ąµą“¤ą“šąµą“›ąµ» ą“®ą“²ą“Æą“¾ą“³ą“‚ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(27090, 'https://ror.org/02dbhfj05', 'no_lang_code', 1, 'https://ror.org/02dbhfj05 Euro Support (Czechia)'),
(27091, 'https://ror.org/02dbzr904', 'no_lang_code', 1, 'https://ror.org/02dbzr904 Solikamsk State Pedagogical Institute'),
(27092, 'https://ror.org/02ddvb580', 'en', 1, 'https://ror.org/02ddvb580 Oregon Department of Geology and Mineral Industries'),
(27093, 'https://ror.org/02dfcd792', 'no_lang_code', 1, 'https://ror.org/02dfcd792 Intens (Czechia)'),
(27094, 'https://ror.org/02dg6na50', 'en', 1, 'https://ror.org/02dg6na50 Halkara Türkmen-Türk uniwersiteti International Turkmen-Turkish University ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Ń‚ŃƒŃ€ŠŗŠ¼ŠµŠ½Š¾-Ń‚ŃƒŃ€ŠµŃ†ŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27095, 'https://ror.org/02dgqz246', 'no_lang_code', 1, 'https://ror.org/02dgqz246 Cominfo (Czechia)'),
(27096, 'https://ror.org/02dh37d82', 'no_lang_code', 1, 'https://ror.org/02dh37d82 Vidia (Czechia)'),
(27097, 'https://ror.org/02dhd8054', 'no_lang_code', 1, 'https://ror.org/02dhd8054 Arqball (United States)'),
(27098, 'https://ror.org/02dhkpg18', 'no_lang_code', 1, 'https://ror.org/02dhkpg18 Center for Visual Communication (United States)'),
(27099, 'https://ror.org/02djb3912', 'no_lang_code', 1, 'https://ror.org/02djb3912 Enacon (Czechia)'),
(27100, 'https://ror.org/02dmq8z55', 'no_lang_code', 1, 'https://ror.org/02dmq8z55 General Electric (Czechia)'),
(27101, 'https://ror.org/02dn6hy62', 'en', 1, 'https://ror.org/02dn6hy62 Moscow State University of Environmental Engineering Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ инженерной ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(27102, 'https://ror.org/02dndas03', 'en', 1, 'https://ror.org/02dndas03 Kandiyohi County Historical Society'),
(27103, 'https://ror.org/02dnt2x11', 'en', 1, 'https://ror.org/02dnt2x11 National Training Fund'),
(27104, 'https://ror.org/02dp3m016', 'no_lang_code', 1, 'https://ror.org/02dp3m016 Prefa Brno (Czechia)'),
(27105, 'https://ror.org/02dq9yd39', 'en', 1, 'https://ror.org/02dq9yd39 North Carolina Museum of History'),
(27106, 'https://ror.org/02dqf3w62', 'en', 1, 'https://ror.org/02dqf3w62 Osaka International University å¤§é˜Ŗå›½éš›å¤§å­¦'),
(27107, 'https://ror.org/02drbka58', 'en', 1, 'https://ror.org/02drbka58 Council of the Southern Mountains'),
(27108, 'https://ror.org/02dvskw32', 'en', 1, 'https://ror.org/02dvskw32 Makhanlal Chaturvedi National University of Journalism and Communication माखनलाल ą¤šą¤¤ą„ą¤°ą„ą¤µą„‡ą¤¦ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą¤¤ą„ą¤°ą¤•ą¤¾ą¤°ą¤æą¤¤ą¤¾ ą¤ą¤µą¤‚ ą¤øą¤‚ą¤šą¤¾ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27109, 'https://ror.org/02dwjjq70', 'no_lang_code', 1, 'https://ror.org/02dwjjq70 Cycleco (France)'),
(27110, 'https://ror.org/02dzk6f82', 'en', 1, 'https://ror.org/02dzk6f82 Providence Athenaeum'),
(27111, 'https://ror.org/02dzzka09', 'no_lang_code', 1, 'https://ror.org/02dzzka09 Sungkyul University'),
(27112, 'https://ror.org/02e16wz39', 'en', 1, 'https://ror.org/02e16wz39 Moscow State University of Printing Arts Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ печати'),
(27113, 'https://ror.org/02e2kkf63', 'en', 1, 'https://ror.org/02e2kkf63 Ocean Trust'),
(27114, 'https://ror.org/02e2nnq08', 'en', 1, 'https://ror.org/02e2nnq08 Shandong University of Finance and Economics å±±äøœč“¢ē»å¤§å­¦'),
(27115, 'https://ror.org/02e46xh50', 'en', 1, 'https://ror.org/02e46xh50 International Documentary Association'),
(27116, 'https://ror.org/02e6yym45', 'en', 1, 'https://ror.org/02e6yym45 Apprend Foundation'),
(27117, 'https://ror.org/02e8gsm88', 'no_lang_code', 1, 'https://ror.org/02e8gsm88 ZKL (Czechia)'),
(27118, 'https://ror.org/02e8yt306', 'id', 1, 'https://ror.org/02e8yt306 Nusa Tenggara Barat University Universitas Nusa Tenggara Barat'),
(27119, 'https://ror.org/02ecg3h97', 'en', 1, 'https://ror.org/02ecg3h97 ICFAI University, Dehradun'),
(27120, 'https://ror.org/02ee19461', 'en', 1, 'https://ror.org/02ee19461 Open Universities Australia'),
(27121, 'https://ror.org/02ee2t316', 'en', 1, 'https://ror.org/02ee2t316 University of Wasit Ų¬Ų§Ł…Ų¹Ų© واسط'),
(27122, 'https://ror.org/02eg6d927', 'en', 1, 'https://ror.org/02eg6d927 University of the Cordilleras'),
(27123, 'https://ror.org/02egpvc59', 'en', 1, 'https://ror.org/02egpvc59 Pierce County Library System'),
(27124, 'https://ror.org/02ehsvt70', 'pt', 1, 'https://ror.org/02ehsvt70 Hospital do Divino EspĆ­rito Santo'),
(27125, 'https://ror.org/02ek1bx64', 'en', 1, 'https://ror.org/02ek1bx64 Burgas Free University Š‘ŃƒŃ€Š³Š°ŃŠŗŠø свобоГен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27126, 'https://ror.org/02em0x482', 'en', 1, 'https://ror.org/02em0x482 Kentucky Department for Libraries and Archives'),
(27127, 'https://ror.org/02em1tr51', 'en', 1, 'https://ror.org/02em1tr51 University of Petroleum'),
(27128, 'https://ror.org/02emvsg33', 'en', 1, 'https://ror.org/02emvsg33 Tajik State Medical University Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии тиббии Тоҷикистон ба номи Абӯалӣ Ибни Дино ТаГжикский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27129, 'https://ror.org/02ephqy68', 'en', 1, 'https://ror.org/02ephqy68 Don State Agrarian University Донской Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27130, 'https://ror.org/02er6sh59', 'en', 1, 'https://ror.org/02er6sh59 Suncoast Health Council'),
(27131, 'https://ror.org/02erjps28', 'en', 1, 'https://ror.org/02erjps28 Moscow Institute of Modern Business Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ современного бизнеса'),
(27132, 'https://ror.org/02erz7116', 'no_lang_code', 1, 'https://ror.org/02erz7116 GakushÅ«in School Corporation 学栔法人 学習院'),
(27133, 'https://ror.org/02esqkz27', 'no_lang_code', 1, 'https://ror.org/02esqkz27 ZĆ”vod AutomatizačnĆ­ Techniky (Czechia)'),
(27134, 'https://ror.org/02et39n43', 'no_lang_code', 1, 'https://ror.org/02et39n43 Kerala Kalamandalam ą®•ą®²ą®¾ą®®ą®£ąÆą®Ÿą®²ą®®ąÆ ą“•ąµ‡ą“°ą“³ą“•ą“²ą“¾ą“®ą“£ąµą“”ą“²ą“‚'),
(27135, 'https://ror.org/02ev5wr74', 'no_lang_code', 1, 'https://ror.org/02ev5wr74 Hatyai University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø«ąø²ąø”ą¹ƒąø«ąøą¹ˆ'),
(27136, 'https://ror.org/02ewm5p09', 'en', 1, 'https://ror.org/02ewm5p09 Saitama Gakuen University åŸ¼ēŽ‰å­¦åœ’å¤§å­¦'),
(27137, 'https://ror.org/02exegz49', 'en', 1, 'https://ror.org/02exegz49 Yokkaichi Nursing and Medical Care University å››ę—„åø‚ēœ‹č­·åŒ»ē™‚å¤§å­¦'),
(27138, 'https://ror.org/02exm7r59', 'en', 1, 'https://ror.org/02exm7r59 Rokeby Museum'),
(27139, 'https://ror.org/02f3j0q24', 'en', 1, 'https://ror.org/02f3j0q24 Baliuag University'),
(27140, 'https://ror.org/02f49t952', 'id', 1, 'https://ror.org/02f49t952 Universitas Almuslim'),
(27141, 'https://ror.org/02f5k4n77', 'en', 1, 'https://ror.org/02f5k4n77 DeKalb County Public Library'),
(27142, 'https://ror.org/02f7nxk86', 'id', 1, 'https://ror.org/02f7nxk86 Universitas Palembang'),
(27143, 'https://ror.org/02f8a6404', 'en', 1, 'https://ror.org/02f8a6404 Albanian University'),
(27144, 'https://ror.org/02f9rwx65', 'en', 1, 'https://ror.org/02f9rwx65 Honam Theological University and Seminary ķ˜øė‚Øģ‹ ķ•™ėŒ€ķ•™źµ'),
(27145, 'https://ror.org/02fcwvm90', 'en', 1, 'https://ror.org/02fcwvm90 Suquamish Museum'),
(27146, 'https://ror.org/02ffca462', 'en', 1, 'https://ror.org/02ffca462 Megatrend University ŠœŠµŠ³Š°Ń‚Ń€ŠµŠ½Š“ ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚'),
(27147, 'https://ror.org/02fg4j559', 'en', 1, 'https://ror.org/02fg4j559 Gimcheon University ź¹€ģ²œėŒ€ķ•™źµ'),
(27148, 'https://ror.org/02fh5m162', 'cs', 1, 'https://ror.org/02fh5m162 NƔrodnƭ PedagogickƩ Muzeum a Knihovna J. A. KomenskƩho'),
(27149, 'https://ror.org/02fm1my09', 'id', 1, 'https://ror.org/02fm1my09 Universitas Kristen Indonesia Paulus'),
(27150, 'https://ror.org/02fney094', 'en', 1, 'https://ror.org/02fney094 Billerica Public Library'),
(27151, 'https://ror.org/02fprm943', 'en', 1, 'https://ror.org/02fprm943 Oberlin Heritage Center'),
(27152, 'https://ror.org/02fs2ee62', 'en', 1, 'https://ror.org/02fs2ee62 University of Pikeville UniversitƩ de pikeville'),
(27153, 'https://ror.org/02fstjp34', 'en', 1, 'https://ror.org/02fstjp34 Hochschule für Künste Bremen University of the Arts Bremen'),
(27154, 'https://ror.org/02fvj8330', 'no_lang_code', 1, 'https://ror.org/02fvj8330 Toyohashi Sozo College č±Šę©‹å‰µé€ å¤§å­¦'),
(27155, 'https://ror.org/02fwtv659', 'en', 1, 'https://ror.org/02fwtv659 Herzing University'),
(27156, 'https://ror.org/02fy2kw04', 'no_lang_code', 1, 'https://ror.org/02fy2kw04 Dufonev (Czechia)'),
(27157, 'https://ror.org/02fyfj503', 'en', 1, 'https://ror.org/02fyfj503 Media Working Group'),
(27158, 'https://ror.org/02g30pd64', 'en', 1, 'https://ror.org/02g30pd64 Pontifical University of the Holy Cross Pontificia UniversitƠ della Santa Croce PƤpstliche UniversitƤt vom Heiligen Kreuz Universitat Pontifƭcia de la Santa Creu UniversitƩ pontificale de la sainte-croix'),
(27159, 'https://ror.org/02g3wgj66', 'en', 1, 'https://ror.org/02g3wgj66 Beijing Dance Academy åŒ—äŗ¬čˆžč¹ˆå­¦é™¢'),
(27160, 'https://ror.org/02g4rm341', 'no_lang_code', 1, 'https://ror.org/02g4rm341 G Impuls Praha (Czechia)'),
(27161, 'https://ror.org/02g50bf58', 'en', 1, 'https://ror.org/02g50bf58 Natural History Museum of Utah'),
(27162, 'https://ror.org/02g6px103', 'en', 1, 'https://ror.org/02g6px103 Vologda Institute of Law and Economics ВологоГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ права Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(27163, 'https://ror.org/02g702008', 'en', 1, 'https://ror.org/02g702008 Kalasin University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø²ąø¬ąøŖąø“ąø™ąø˜ąøøą¹Œ'),
(27164, 'https://ror.org/02g847680', 'en', 1, 'https://ror.org/02g847680 University of Kalamoon Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ł„Ł…ŁˆŁ† الخاصة'),
(27165, 'https://ror.org/02g8brk88', 'no_lang_code', 1, 'https://ror.org/02g8brk88 Phranakhon Si Ayutthaya Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøžąø£ąø°ąø™ąø„ąø£ąøØąø£ąøµąø­ąø¢ąøøąø˜ąø¢ąø²'),
(27166, 'https://ror.org/02g97km06', 'en', 1, 'https://ror.org/02g97km06 Russian Islamic University Российский исламский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(27167, 'https://ror.org/02g9ex009', 'en', 1, 'https://ror.org/02g9ex009 Worcester Historical Museum'),
(27168, 'https://ror.org/02ga6x098', 'en', 1, 'https://ror.org/02ga6x098 Fine Arts Museums of San Francisco Museo de Bellas Artes de San Francisco MusƩe des beaux-arts de san francisco'),
(27169, 'https://ror.org/02gb3y251', 'en', 1, 'https://ror.org/02gb3y251 Denver Seminary'),
(27170, 'https://ror.org/02gdq8g56', 'en', 1, 'https://ror.org/02gdq8g56 Tama University å¤šę‘©å¤§å­¦'),
(27171, 'https://ror.org/02gf32v67', 'en', 1, 'https://ror.org/02gf32v67 Voronezh State Agrarian University named after Emperor Peter the Great Воро́нежский Š³Š¾ŃŃƒŠ“а́рственный агра́рный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ и́мени импера́тора ŠŸŠµŃ‚ра́ I'),
(27172, 'https://ror.org/02gfhhc90', 'en', 1, 'https://ror.org/02gfhhc90 Komazawa Women''s University 駒沢儳子大学'),
(27173, 'https://ror.org/02ggacn82', 'en', 1, 'https://ror.org/02ggacn82 New Hampshire Historical Society'),
(27174, 'https://ror.org/02ggnbj54', 'en', 1, 'https://ror.org/02ggnbj54 Tehran University of Art دانؓگاه هنر'),
(27175, 'https://ror.org/02ggx8458', 'no_lang_code', 1, 'https://ror.org/02ggx8458 Vuab Pharma (Czechia)'),
(27176, 'https://ror.org/02gkave86', 'en', 1, 'https://ror.org/02gkave86 Rosenbach Museum and Library'),
(27177, 'https://ror.org/02gm2ae61', 'en', 1, 'https://ror.org/02gm2ae61 University of Science and Technology of Ivory Coast UniversitƩ des Sciences et Technologies de CƓte d''Ivoire'),
(27178, 'https://ror.org/02gmebg52', 'no_lang_code', 1, 'https://ror.org/02gmebg52 Mega (Czechia)'),
(27179, 'https://ror.org/02gne5439', 'en', 1, 'https://ror.org/02gne5439 National Agrarian University Universidad Nacional Agraria'),
(27180, 'https://ror.org/02gnwrw46', 'en', 1, 'https://ror.org/02gnwrw46 Cyprus Institute of Marketing'),
(27181, 'https://ror.org/02gpy8g87', 'en', 1, 'https://ror.org/02gpy8g87 Western Philippines University'),
(27182, 'https://ror.org/02gqmg750', 'en', 1, 'https://ror.org/02gqmg750 State Classical Academy named after Maimonides Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ»Š°ŃŃŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени МаймониГа'),
(27183, 'https://ror.org/02grx1n44', 'en', 1, 'https://ror.org/02grx1n44 New Haven Unified School District'),
(27184, 'https://ror.org/02gv7s365', 'en', 1, 'https://ror.org/02gv7s365 Romanian University of Sciences and Arts "Gheorghe Cristea" Universitatea RomĆ¢na de Știinte și Arte ā€žGheorghe Cristeaā€'),
(27185, 'https://ror.org/02gvn8796', 'en', 1, 'https://ror.org/02gvn8796 Sultan Sharif Ali Islamic University Universiti Islam Sultan Sharif Ali'),
(27186, 'https://ror.org/02gxh9k41', 'en', 1, 'https://ror.org/02gxh9k41 Bullock Museum'),
(27187, 'https://ror.org/02gxppt96', 'no_lang_code', 1, 'https://ror.org/02gxppt96 MateriÔlový A Metalurgický Výzkum (Czechia)'),
(27188, 'https://ror.org/02gxxae53', 'id', 1, 'https://ror.org/02gxxae53 Universitas Panji Sakti'),
(27189, 'https://ror.org/02gyp0j55', 'en', 1, 'https://ror.org/02gyp0j55 Ural Institute of Commerce and Law Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коммерции Šø права'),
(27190, 'https://ror.org/02h7f3665', 'en', 1, 'https://ror.org/02h7f3665 Departamento de Transporte de Wisconsin DƩpartement des transports du wisconsin Wisconsin Department of Transportation'),
(27191, 'https://ror.org/02h7g1s38', 'en', 1, 'https://ror.org/02h7g1s38 Jawaharlal Nehru Architecture and Fine Arts University जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤µą¤¾ą¤øą„ą¤¤ą„ą¤•ą¤²ą¤¾ तऄा ललितकला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27192, 'https://ror.org/02h7vzs32', 'en', 1, 'https://ror.org/02h7vzs32 Korea Development Institute ķ•œźµ­ź°œė°œģ—°źµ¬ģ›'),
(27193, 'https://ror.org/02h8tmh67', 'it', 1, 'https://ror.org/02h8tmh67 Istituto Guglielmo Tagliacarne'),
(27194, 'https://ror.org/02h8xd110', 'id', 1, 'https://ror.org/02h8xd110 Universitas Quality'),
(27195, 'https://ror.org/02h97hh92', 'en', 1, 'https://ror.org/02h97hh92 Cavendish University Uganda'),
(27196, 'https://ror.org/02h9hn661', 'en', 1, 'https://ror.org/02h9hn661 Latvian Academy of Sport Education Latvijas Sporta Pedagoģijas Akadēmija'),
(27197, 'https://ror.org/02hb34304', 'en', 1, 'https://ror.org/02hb34304 EuroAcademy Euroakadeemia'),
(27198, 'https://ror.org/02hbg0y44', 'no_lang_code', 1, 'https://ror.org/02hbg0y44 Hofmeister (Czechia)'),
(27199, 'https://ror.org/02hda4733', 'en', 1, 'https://ror.org/02hda4733 Pamantasan ng San Agustin University of San Agustin'),
(27200, 'https://ror.org/02hf81m35', 'en', 1, 'https://ror.org/02hf81m35 Riordan Clinic'),
(27201, 'https://ror.org/02hfhf494', 'en', 1, 'https://ror.org/02hfhf494 Kuzbass State Technical University Кузбасский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27202, 'https://ror.org/02hgdn135', 'en', 1, 'https://ror.org/02hgdn135 Center for Wooden Boats'),
(27203, 'https://ror.org/02hhqwv47', 'no_lang_code', 1, 'https://ror.org/02hhqwv47 Tonak (Czechia)'),
(27204, 'https://ror.org/02hngjw26', 'en', 1, 'https://ror.org/02hngjw26 Seoul Christian University'),
(27205, 'https://ror.org/02hp1db34', 'no_lang_code', 1, 'https://ror.org/02hp1db34 Research Institute of Organic Syntheses (Czechia) Výzkumný Ústav Organických Syntéz'),
(27206, 'https://ror.org/02hph8r17', 'en', 1, 'https://ror.org/02hph8r17 Grigol Robakidze University įƒ’įƒ įƒ˜įƒ’įƒįƒš įƒ įƒįƒ‘įƒįƒ„įƒ˜įƒ«įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(27207, 'https://ror.org/02hpqxd69', 'en', 1, 'https://ror.org/02hpqxd69 Slater Mill'),
(27208, 'https://ror.org/02hpvf222', 'en', 1, 'https://ror.org/02hpvf222 Moscow Institute of Medical and Social Rehabilitologists Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГико-ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ реабилитологии'),
(27209, 'https://ror.org/02hqgw034', 'no_lang_code', 1, 'https://ror.org/02hqgw034 Envinet (Czechia)'),
(27210, 'https://ror.org/02hrree94', 'en', 1, 'https://ror.org/02hrree94 Gomel State Medical University Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(27211, 'https://ror.org/02hrvn918', 'no_lang_code', 1, 'https://ror.org/02hrvn918 Hydrion (Netherlands)'),
(27212, 'https://ror.org/02hs3et22', 'en', 1, 'https://ror.org/02hs3et22 Grand View University'),
(27213, 'https://ror.org/02hssg709', 'en', 1, 'https://ror.org/02hssg709 Adventist University of the Philippines'),
(27214, 'https://ror.org/02ht5pq60', 'en', 1, 'https://ror.org/02ht5pq60 Kabul University دانؓگاه کابل'),
(27215, 'https://ror.org/02ht85z18', 'en', 1, 'https://ror.org/02ht85z18 Illinois State Historical Society'),
(27216, 'https://ror.org/02htv7m79', 'en', 1, 'https://ror.org/02htv7m79 Araullo University'),
(27217, 'https://ror.org/02hxajc23', 'en', 1, 'https://ror.org/02hxajc23 Kyoto City University of Arts äŗ¬éƒ½åø‚ē«‹čŠøč”“å¤§å­¦'),
(27218, 'https://ror.org/02hyahm52', 'en', 1, 'https://ror.org/02hyahm52 University of Judicial Sciences and Administrative Services دانؓگاه Ų¹Ł„ŁˆŁ… Ł‚Ų¶Ų§ŪŒŪŒ و Ų®ŲÆŁ…Ų§ŲŖ اداری'),
(27219, 'https://ror.org/02j123a71', 'en', 1, 'https://ror.org/02j123a71 National Park Foundation'),
(27220, 'https://ror.org/02j1b8103', 'en', 1, 'https://ror.org/02j1b8103 San Mateo County History Museum'),
(27221, 'https://ror.org/02j1sgb41', 'no_lang_code', 1, 'https://ror.org/02j1sgb41 Jerid (Czechia)'),
(27222, 'https://ror.org/02j1xr113', 'en', 1, 'https://ror.org/02j1xr113 Ashoka University ą¤…ą¤¶ą„‹ą¤•ą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(27223, 'https://ror.org/02j3w7f30', 'en', 1, 'https://ror.org/02j3w7f30 Madhya Pradesh Bhoj Open University ą¤®ą¤§ą„ą¤Æ ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ ą¤­ą„‹ą¤œ ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27224, 'https://ror.org/02j5fab28', 'en', 1, 'https://ror.org/02j5fab28 Institute of Economics and Management Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ (г. ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗ)'),
(27225, 'https://ror.org/02j60s620', 'en', 1, 'https://ror.org/02j60s620 North Pacific Marine Science Foundation'),
(27226, 'https://ror.org/02j6rby23', 'no_lang_code', 1, 'https://ror.org/02j6rby23 Ekola (Czechia)'),
(27227, 'https://ror.org/02j8ga255', 'en', 1, 'https://ror.org/02j8ga255 American International University-Bangladesh আমেরিকান ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ-বাংলাদেশ'),
(27228, 'https://ror.org/02j96nm37', 'en', 1, 'https://ror.org/02j96nm37 Premier University ą¦Ŗą§ą¦°ą¦æą¦®ą¦æą§Ÿą¦¾ą¦° ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(27229, 'https://ror.org/02j98rq95', 'en', 1, 'https://ror.org/02j98rq95 Ternopil Volodymyr Hnatiuk National Pedagogical University Š¢ŠµŃ€Š½Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ВлаГимира Š“Š½Š°Ń‚ŃŽŠŗŠ° Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВолоГимира Š“Š½Š°Ń‚ŃŽŠŗŠ°'),
(27230, 'https://ror.org/02jaw4a32', 'en', 1, 'https://ror.org/02jaw4a32 Carnegie Council for Ethics in International Affairs'),
(27231, 'https://ror.org/02jazz476', 'en', 1, 'https://ror.org/02jazz476 National Centre of Social Studies'),
(27232, 'https://ror.org/02jb0mk52', 'no_lang_code', 1, 'https://ror.org/02jb0mk52 International Data Group (United States)'),
(27233, 'https://ror.org/02jdm8069', 'en', 1, 'https://ror.org/02jdm8069 Tangshan Normal University å”å±±åøˆčŒƒå¤§å­¦'),
(27234, 'https://ror.org/02jf4jr88', 'en', 1, 'https://ror.org/02jf4jr88 Montana Historical Society'),
(27235, 'https://ror.org/02jj93564', 'en', 1, 'https://ror.org/02jj93564 Pontifical University of Salamanca Universidad Pontificia de Salamanca Universitat PontifĆ­cia de Salamanca'),
(27236, 'https://ror.org/02jkgrk30', 'en', 1, 'https://ror.org/02jkgrk30 Parwan University دانؓگاه Ł¾Ų±ŁˆŲ§Ł†'),
(27237, 'https://ror.org/02jkgvx03', 'no_lang_code', 1, 'https://ror.org/02jkgvx03 Edutus Egyetem Edutus University'),
(27238, 'https://ror.org/02jmvh098', 'en', 1, 'https://ror.org/02jmvh098 Angarsk State Technical Academy ŠŠ½Š³Š°Ń€ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¢ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(27239, 'https://ror.org/02jpbb755', 'en', 1, 'https://ror.org/02jpbb755 Mobile Public Library'),
(27240, 'https://ror.org/02jr43a19', 'en', 1, 'https://ror.org/02jr43a19 Graduate Institute of Applied Linguistics'),
(27241, 'https://ror.org/02jsdya97', 'en', 1, 'https://ror.org/02jsdya97 City University of Science and Information Technology سٹی ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف سائنس Ų§ŪŒŁ†Śˆ Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(27242, 'https://ror.org/02jwe8b72', 'fr', 1, 'https://ror.org/02jwe8b72 UniversitƩ Alassane Ouattara'),
(27243, 'https://ror.org/02jwrhw59', 'en', 1, 'https://ror.org/02jwrhw59 Excelsior Springs Museum & Archives'),
(27244, 'https://ror.org/02jx61y97', 'no_lang_code', 1, 'https://ror.org/02jx61y97 Eurocarbon (Netherlands)'),
(27245, 'https://ror.org/02jywrv14', 'no_lang_code', 1, 'https://ror.org/02jywrv14 ON Semiconductor (Czechia)'),
(27246, 'https://ror.org/02k11zt98', 'en', 1, 'https://ror.org/02k11zt98 Daghestan State Pedagogical University Дагестанский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27247, 'https://ror.org/02k14cb26', 'en', 1, 'https://ror.org/02k14cb26 Donbass State Engineering Academy Š”Š¾Š½Š±Š°ŃŃŒŠŗŠ° Гержавна Š¼Š°ŃˆŠøŠ½Š¾Š±ŃƒŠ“івна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(27248, 'https://ror.org/02k1der83', 'id', 1, 'https://ror.org/02k1der83 Jenderal Achmad Yani University Universitas Jenderal Achmad Yani'),
(27249, 'https://ror.org/02k1vq030', 'no_lang_code', 1, 'https://ror.org/02k1vq030 Ryotokuji University 了徳寺大学'),
(27250, 'https://ror.org/02k3bdy11', 'no_lang_code', 1, 'https://ror.org/02k3bdy11 Litmas (Czechia)'),
(27251, 'https://ror.org/02k517853', 'en', 1, 'https://ror.org/02k517853 Luxun Academy of Fine Arts'),
(27252, 'https://ror.org/02k6mtm19', 'en', 1, 'https://ror.org/02k6mtm19 Moscow Academy of Economics and Law ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(27253, 'https://ror.org/02k884a42', 'no_lang_code', 1, 'https://ror.org/02k884a42 Montstav (Czechia)'),
(27254, 'https://ror.org/02k8qat92', 'cs', 1, 'https://ror.org/02k8qat92 ValaÅ”skĆ© Muzeum v Přírodě'),
(27255, 'https://ror.org/02kb5sz66', 'en', 1, 'https://ror.org/02kb5sz66 International University of Monaco UniversitƩ internationale de monaco'),
(27256, 'https://ror.org/02kdbxe33', 'en', 1, 'https://ror.org/02kdbxe33 International Institute of Computer Technologies ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŠ¾Š¼ŠæŃŒŃŽŃ‚ŠµŃ€Š½Ń‹Ń… технологий'),
(27257, 'https://ror.org/02ke44656', 'en', 1, 'https://ror.org/02ke44656 Collegium Da Vinci'),
(27258, 'https://ror.org/02keg3263', 'no_lang_code', 1, 'https://ror.org/02keg3263 Cheju Halla University ģ œģ£¼ķ•œė¼ėŒ€ķ•™źµ'),
(27259, 'https://ror.org/02kfn1p21', 'no_lang_code', 1, 'https://ror.org/02kfn1p21 Cybergenetics (United States)'),
(27260, 'https://ror.org/02kgkbv06', 'en', 1, 'https://ror.org/02kgkbv06 Delaware Library Association'),
(27261, 'https://ror.org/02kht3n03', 'en', 1, 'https://ror.org/02kht3n03 Fitchburg Art Museum'),
(27262, 'https://ror.org/02khw0n64', 'en', 1, 'https://ror.org/02khw0n64 Dniprovsk State Technical University Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27263, 'https://ror.org/02kj9vk28', 'en', 1, 'https://ror.org/02kj9vk28 International University of East Africa'),
(27264, 'https://ror.org/02kja7485', 'en', 1, 'https://ror.org/02kja7485 Hopa Mountain'),
(27265, 'https://ror.org/02kmhbb12', 'en', 1, 'https://ror.org/02kmhbb12 Mattatuck Museum'),
(27266, 'https://ror.org/02knr1992', 'en', 1, 'https://ror.org/02knr1992 International University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž“įŸ’įžįžšįž‡įž¶įžįž·'),
(27267, 'https://ror.org/02kpzs615', 'en', 1, 'https://ror.org/02kpzs615 University Academy Holbeach'),
(27268, 'https://ror.org/02kq60523', 'id', 1, 'https://ror.org/02kq60523 Universitas Muhammadiyah Metro'),
(27269, 'https://ror.org/02kqed404', 'en', 1, 'https://ror.org/02kqed404 College of Environmental Protection Visoka Ŕola za varstvo okolja'),
(27270, 'https://ror.org/02kqv7v54', 'en', 1, 'https://ror.org/02kqv7v54 Baika Women''s University ę¢…čŠ±å„³å­å¤§å­¦'),
(27271, 'https://ror.org/02kr5r375', 'en', 1, 'https://ror.org/02kr5r375 Meridian International Center'),
(27272, 'https://ror.org/02ktptg11', 'en', 1, 'https://ror.org/02ktptg11 Saint Petersburg State University of Culture and Arts ственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(27273, 'https://ror.org/02kvrk655', 'en', 1, 'https://ror.org/02kvrk655 Universitas Katolik Widya Karya Malang Widya Karya Catholic University'),
(27274, 'https://ror.org/02kw8bv11', 'en', 1, 'https://ror.org/02kw8bv11 Moscow Regional Socio-Economic Institute Московский Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(27275, 'https://ror.org/02kx91r96', 'pl', 1, 'https://ror.org/02kx91r96 Małopolska Wyższa Szkoła Ekonomiczna'),
(27276, 'https://ror.org/02m04pz98', 'en', 1, 'https://ror.org/02m04pz98 Tashkent State Higher School of National Dance and Choreography'),
(27277, 'https://ror.org/02m0d6s97', 'id', 1, 'https://ror.org/02m0d6s97 Institut Sains & Teknologi Akprind Yogyakarta'),
(27278, 'https://ror.org/02m0m4f58', 'en', 1, 'https://ror.org/02m0m4f58 Novi Sad Open University ŠŠ¾Š²Š¾ŃŠ°Š“ŃŠŗŠø отворени ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚'),
(27279, 'https://ror.org/02m2dej40', 'en', 1, 'https://ror.org/02m2dej40 University of South Asia ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ সাউ঄ ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾'),
(27280, 'https://ror.org/02m3g8h90', 'en', 1, 'https://ror.org/02m3g8h90 National Children''s Museum'),
(27281, 'https://ror.org/02m4xf424', 'no_lang_code', 1, 'https://ror.org/02m4xf424 WAK System (Czechia)'),
(27282, 'https://ror.org/02m5g6p84', 'en', 1, 'https://ror.org/02m5g6p84 Arizona Historical Society'),
(27283, 'https://ror.org/02m71k567', 'no_lang_code', 1, 'https://ror.org/02m71k567 Nishogakusha University äŗŒę¾å­øčˆå¤§å­¦'),
(27284, 'https://ror.org/02m77cm13', 'en', 1, 'https://ror.org/02m77cm13 Nan Jeon University of Science and Technology å—ę¦®ē§‘ęŠ€å¤§å­ø'),
(27285, 'https://ror.org/02m7y2120', 'en', 1, 'https://ror.org/02m7y2120 Kapiolani Community College'),
(27286, 'https://ror.org/02ma9y414', 'en', 1, 'https://ror.org/02ma9y414 Medical University of the Americas'),
(27287, 'https://ror.org/02mbc1535', 'en', 1, 'https://ror.org/02mbc1535 International Pacific Halibut Commission'),
(27288, 'https://ror.org/02md2kv66', 'en', 1, 'https://ror.org/02md2kv66 Kryvyi Rih National University ŠšŃ€ŠøŠ²Š¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27289, 'https://ror.org/02mewhb28', 'en', 1, 'https://ror.org/02mewhb28 Economic and Law Institute in Moscow ŠœŠžŠ”ŠšŠžŠ’Š”ŠšŠ˜Š™ Š­ŠšŠžŠŠžŠœŠ˜ŠšŠž-ŠŸŠ ŠŠ’ŠžŠ’ŠžŠ™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(27290, 'https://ror.org/02mf8ey61', 'en', 1, 'https://ror.org/02mf8ey61 Kaya University'),
(27291, 'https://ror.org/02mfjgm25', 'en', 1, 'https://ror.org/02mfjgm25 Hwa Hsia University of Technology čÆå¤ē§‘ęŠ€å¤§å­ø'),
(27292, 'https://ror.org/02mfr8m15', 'en', 1, 'https://ror.org/02mfr8m15 Kamsky Institute of Humanitarian and Engineering Technologies Камский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… Šø инженерных технологий'),
(27293, 'https://ror.org/02mfskv37', 'en', 1, 'https://ror.org/02mfskv37 Omsk State Transport University ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(27294, 'https://ror.org/02mgerj62', 'en', 1, 'https://ror.org/02mgerj62 Great Lakes University of Kisumu'),
(27295, 'https://ror.org/02mh2b743', 'no_lang_code', 1, 'https://ror.org/02mh2b743 Princip (Czechia)'),
(27296, 'https://ror.org/02mh3at17', 'en', 1, 'https://ror.org/02mh3at17 Royal University of Law and Economics UniversitĆ© royale de droit et des sciences economiques įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įž“įžøįžįž·įžŸįž¶įžŸįŸ’įžįŸ’įžšįž“įž·įž„įžœįž·įž‘įŸ’įž™įž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšįžŸįŸįžŠįŸ’įž‹įž€įž·įž…įŸ’įž…'),
(27297, 'https://ror.org/02mkkqv65', 'en', 1, 'https://ror.org/02mkkqv65 Imam Sadiq University دانؓگاه Ų§Ł…Ų§Ł… ŲµŲ§ŲÆŁ‚'),
(27298, 'https://ror.org/02mpq1w39', 'en', 1, 'https://ror.org/02mpq1w39 Suamandeep Vidyapeeth University સુમનદીપ વિધાપીઠ'),
(27299, 'https://ror.org/02mq5h296', 'en', 1, 'https://ror.org/02mq5h296 Communal Societies Association'),
(27300, 'https://ror.org/02mqbt594', 'no_lang_code', 1, 'https://ror.org/02mqbt594 Hokusei Gakuen University åŒ—ę˜Ÿå­¦åœ’å¤§å­¦'),
(27301, 'https://ror.org/02mwnfc70', 'en', 1, 'https://ror.org/02mwnfc70 Turkmen State Institute of Culture'),
(27302, 'https://ror.org/02n0ams94', 'en', 1, 'https://ror.org/02n0ams94 Patriot Bible University'),
(27303, 'https://ror.org/02n3d5p55', 'en', 1, 'https://ror.org/02n3d5p55 Yaroslavl State Pedagogical University Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ярославский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. К.Š”. Ушинского'),
(27304, 'https://ror.org/02n4kqn31', 'en', 1, 'https://ror.org/02n4kqn31 Sir Syed University of Engineering and Technology Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś± Ū½ Ł½ŁŠŚŖŁ†ŁŠŚ€ŁŠŲ§Ų³ جي جامعہ Ų³Ų± Ų³ŁŠŲÆā€Ž'),
(27305, 'https://ror.org/02n4s8f32', 'pl', 1, 'https://ror.org/02n4s8f32 Uczelnia Warszawska im. Marii Skłodowskiej-Curie'),
(27306, 'https://ror.org/02n78dn25', 'en', 1, 'https://ror.org/02n78dn25 Higher School of Applied Sciences Visoka Ŕola za storitve'),
(27307, 'https://ror.org/02nas7g61', 'en', 1, 'https://ror.org/02nas7g61 Czech and Slovak Crystallographic Association'),
(27308, 'https://ror.org/02nbq4b63', 'en', 1, 'https://ror.org/02nbq4b63 Maharishi Mahesh Yogi Vedic University ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤®ą¤¹ą„‡ą¤¶ ą¤Æą„‹ą¤—ą„€ ą¤µą„ˆą¤¦ą¤æą¤• ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27309, 'https://ror.org/02nc54350', 'id', 1, 'https://ror.org/02nc54350 Universitas Sawerigading Makassar'),
(27310, 'https://ror.org/02nct1437', 'en', 1, 'https://ror.org/02nct1437 Japanese American National Museum'),
(27311, 'https://ror.org/02nctxr05', 'en', 1, 'https://ror.org/02nctxr05 University of Horticultural Sciences Bagalkote ą²¤ą³‹ą²Ÿą²—ą²¾ą²°ą²æą²•ą³† ą²µą²æą²œą³ą²žą²¾ą²Øą²—ą²³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ą²¬ą²¾ą²—ą²²ą²•ą³‹ą²Ÿą³†'),
(27312, 'https://ror.org/02ndmzk78', 'en', 1, 'https://ror.org/02ndmzk78 Virginia Department of Environmental Quality'),
(27313, 'https://ror.org/02ndvz068', 'en', 1, 'https://ror.org/02ndvz068 Kabul Medical University دانؓگاه Ų·ŲØ کابل'),
(27314, 'https://ror.org/02ne6gz21', 'en', 1, 'https://ror.org/02ne6gz21 Stavropol State Agrarian University Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27315, 'https://ror.org/02nfjwv95', 'en', 1, 'https://ror.org/02nfjwv95 St. Paul University Dumaguete'),
(27316, 'https://ror.org/02nfx9606', 'en', 1, 'https://ror.org/02nfx9606 Altai State Humanities Pedagogical University Алтайский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. М. Шукшина'),
(27317, 'https://ror.org/02ngpcc15', 'no_lang_code', 1, 'https://ror.org/02ngpcc15 CompX (United States)'),
(27318, 'https://ror.org/02nh5kj96', 'en', 1, 'https://ror.org/02nh5kj96 National Academy of Fine Art and Architecture ŠŠ°Ń†Ń–Š¾Š½Š°ĢŠ»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµĢŠ¼Ń–Ń образотво́рчого мисте́цтва і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒĢŃ€Šø'),
(27319, 'https://ror.org/02nnvm683', 'en', 1, 'https://ror.org/02nnvm683 Trout Unlimited'),
(27320, 'https://ror.org/02nsv5p42', 'en', 1, 'https://ror.org/02nsv5p42 Pandit Deendayal Petroleum University पंऔित ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤Ŗą„‡ą¤Ÿą„ą¤°ą„‹ą¤²ą¤æą¤Æą¤® ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ પંઔિત દીનદયાળ ąŖŖą«‡ąŖŸą«ąŖ°ą«‹ąŖ²ąŖæąŖÆąŖ® ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(27321, 'https://ror.org/02ntfea48', 'en', 1, 'https://ror.org/02ntfea48 Prison University Project'),
(27322, 'https://ror.org/02ntrvv07', 'en', 1, 'https://ror.org/02ntrvv07 University Press of New England'),
(27323, 'https://ror.org/02nz5n326', 'en', 1, 'https://ror.org/02nz5n326 South Carolina Historical Society'),
(27324, 'https://ror.org/02p0nzs51', 'pl', 1, 'https://ror.org/02p0nzs51 Wyższa Szkoła Komunikowania i Mediów Społecznych im. Jerzego Giedroycia'),
(27325, 'https://ror.org/02p3kxs50', 'en', 1, 'https://ror.org/02p3kxs50 Museum of International Folk Art'),
(27326, 'https://ror.org/02p42am41', 'en', 1, 'https://ror.org/02p42am41 Islamic Azad University of Birjand دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ ŲØŪŒŲ±Ų¬Ł†ŲÆ'),
(27327, 'https://ror.org/02p4ap272', 'en', 1, 'https://ror.org/02p4ap272 Seneca Falls Historical Society'),
(27328, 'https://ror.org/02p5gkq58', 'en', 1, 'https://ror.org/02p5gkq58 King’s University'),
(27329, 'https://ror.org/02p6jga18', 'en', 1, 'https://ror.org/02p6jga18 Doshisha Women''s College of Liberal Arts åŒåæ—ē¤¾å„³å­å¤§å­¦'),
(27330, 'https://ror.org/02p76dr31', 'id', 1, 'https://ror.org/02p76dr31 Universitas Tridinanti Palembang'),
(27331, 'https://ror.org/02pad2v09', 'fr', 1, 'https://ror.org/02pad2v09 UniversitƩ Officielle de Bukavu'),
(27332, 'https://ror.org/02pd46y72', 'id', 1, 'https://ror.org/02pd46y72 Universitas Respati Indonesia'),
(27333, 'https://ror.org/02peanc96', 'en', 1, 'https://ror.org/02peanc96 Four County Library System'),
(27334, 'https://ror.org/02pfsj857', 'en', 1, 'https://ror.org/02pfsj857 Shenyang Institute of Engineering ę²ˆé˜³å·„ēØ‹å­¦é™¢'),
(27335, 'https://ror.org/02pg2aq98', 'en', 1, 'https://ror.org/02pg2aq98 Private University in the Principality of Liechtenstein Private Universität im Fürstentum Liechtenstein'),
(27336, 'https://ror.org/02pht8w30', 'en', 1, 'https://ror.org/02pht8w30 Universidad de Nueva Caceres University of Nueva Caceres'),
(27337, 'https://ror.org/02pk0yz95', 'en', 1, 'https://ror.org/02pk0yz95 Al Mansour University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ł…Ł†ŲµŁˆŲ± الجامعة'),
(27338, 'https://ror.org/02pky3s76', 'en', 1, 'https://ror.org/02pky3s76 Heard Museum'),
(27339, 'https://ror.org/02pnhcc10', 'en', 1, 'https://ror.org/02pnhcc10 Hochschule für Forstwirtschaft Rottenburg Rottenburg University of Applied Forest Sciences'),
(27340, 'https://ror.org/02pns7e61', 'en', 1, 'https://ror.org/02pns7e61 Magnitogorsk State Conservatory named after M I Glinka ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени М. И. Глинки'),
(27341, 'https://ror.org/02pppmh23', 'en', 1, 'https://ror.org/02pppmh23 Moscow University Touro Московский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¢Š£Š Šž'),
(27342, 'https://ror.org/02pxamv84', 'en', 1, 'https://ror.org/02pxamv84 Black Mountain College Museum and Arts Center'),
(27343, 'https://ror.org/02pxj5t37', 'en', 1, 'https://ror.org/02pxj5t37 Utah State Historical Society'),
(27344, 'https://ror.org/02pxsrh16', 'en', 1, 'https://ror.org/02pxsrh16 Singhania University ą¤øą¤æą¤‚ą¤˜ą¤¾ą¤Øą¤æą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27345, 'https://ror.org/02pzqs694', 'en', 1, 'https://ror.org/02pzqs694 Riara University'),
(27346, 'https://ror.org/02q22s572', 'en', 1, 'https://ror.org/02q22s572 National Catholic Educational Association'),
(27347, 'https://ror.org/02q35ve03', 'en', 1, 'https://ror.org/02q35ve03 Kazakh Ablai Khan University of International Relations and World Languages ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹ Šø мировых ŃŠ·Ń‹ŠŗŠ¾Š² имени Абылай хана ŅšŠ°Š·Š°Ņ› халықаралық қатынастар және әлем тілГері ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(27348, 'https://ror.org/02q3t9m57', 'en', 1, 'https://ror.org/02q3t9m57 National Law Institute University'),
(27349, 'https://ror.org/02q9fse63', 'en', 1, 'https://ror.org/02q9fse63 Southern University Law Center'),
(27350, 'https://ror.org/02q9yhv11', 'en', 1, 'https://ror.org/02q9yhv11 Chesapeake Bay Environmental Center'),
(27351, 'https://ror.org/02qd5e669', 'en', 1, 'https://ror.org/02qd5e669 Moscow State Open University'),
(27352, 'https://ror.org/02qedp211', 'en', 1, 'https://ror.org/02qedp211 Kyungdong University'),
(27353, 'https://ror.org/02qf7df19', 'en', 1, 'https://ror.org/02qf7df19 Central Luzon State University Pamantasang Estado sa Gitnang Luzon'),
(27354, 'https://ror.org/02qfzwh20', 'en', 1, 'https://ror.org/02qfzwh20 Samara Humanitarian Academy Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(27355, 'https://ror.org/02qjzgf79', 'en', 1, 'https://ror.org/02qjzgf79 Lake Champlain Maritime Museum'),
(27356, 'https://ror.org/02qn0vb48', 'en', 1, 'https://ror.org/02qn0vb48 Chiba University of Commerce åƒč‘‰å•†ē§‘å¤§å­¦'),
(27357, 'https://ror.org/02qnwnc62', 'en', 1, 'https://ror.org/02qnwnc62 IEDC-Bled School of Management'),
(27358, 'https://ror.org/02qp15436', 'en', 1, 'https://ror.org/02qp15436 Kijowski Narodowy Uniwersytet Budownictwa i Architektury Kyiv National University of Construction and Architecture Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š° Šø Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(27359, 'https://ror.org/02qq9kc45', 'en', 1, 'https://ror.org/02qq9kc45 Lexington Public Library'),
(27360, 'https://ror.org/02qrax274', 'en', 1, 'https://ror.org/02qrax274 Ras al-Khaimah Medical and Health Sciences University'),
(27361, 'https://ror.org/02qxynb76', 'en', 1, 'https://ror.org/02qxynb76 Montgomery County Historical Society'),
(27362, 'https://ror.org/02qy8xv65', 'en', 1, 'https://ror.org/02qy8xv65 Kazi Nazrul University ą¦•ą¦¾ą¦œą§€ নজরুল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27363, 'https://ror.org/02r0jqm23', 'no_lang_code', 1, 'https://ror.org/02r0jqm23 Microrisc (Czechia)'),
(27364, 'https://ror.org/02r11sv96', 'en', 1, 'https://ror.org/02r11sv96 Free University of Ireland Saor-Ollscoil na hƉireann'),
(27365, 'https://ror.org/02r3m1966', 'en', 1, 'https://ror.org/02r3m1966 National Museum of Wildlife Art'),
(27366, 'https://ror.org/02r6cx512', 'en', 1, 'https://ror.org/02r6cx512 Khujand State University Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии ЄуҷанГ ба номи акаГемик Š‘. Ņ’Š°Ń„ŃƒŃ€Š¾Š² ЄуГжанГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27367, 'https://ror.org/02r9h1127', 'en', 1, 'https://ror.org/02r9h1127 Kharkiv State Academy of Culture'),
(27368, 'https://ror.org/02ra15158', 'en', 1, 'https://ror.org/02ra15158 Persian Heritage Foundation'),
(27369, 'https://ror.org/02rbqkj03', 'id', 1, 'https://ror.org/02rbqkj03 Universitas Pramita Indonesia'),
(27370, 'https://ror.org/02rc7w578', 'en', 1, 'https://ror.org/02rc7w578 National Alliance of Black School Educators'),
(27371, 'https://ror.org/02rcadd38', 'en', 1, 'https://ror.org/02rcadd38 Nagaoka University 長岔大学'),
(27372, 'https://ror.org/02re2pw48', 'en', 1, 'https://ror.org/02re2pw48 Paktia University دانؓگاه پکتیا'),
(27373, 'https://ror.org/02re6fe17', 'en', 1, 'https://ror.org/02re6fe17 Norton University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ įž“įŸįžšįžįž»įž“'),
(27374, 'https://ror.org/02rntm597', 'en', 1, 'https://ror.org/02rntm597 Omsk Academy of the Russian Interior Ministry ŠžŠ¼ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠœŠ’Š” России'),
(27375, 'https://ror.org/02rrx7g18', 'en', 1, 'https://ror.org/02rrx7g18 Barnaul Law Institute of the Russian Interior Ministry Š‘Š°Ń€Š½Š°ŃƒŠ»ŃŒŃŠŗŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(27376, 'https://ror.org/02rsbkz45', 'en', 1, 'https://ror.org/02rsbkz45 Institute of Psychology and Pedagogy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологии Šø пеГагогики'),
(27377, 'https://ror.org/02rsxaa93', 'en', 1, 'https://ror.org/02rsxaa93 Saint Petersburg State University of Aerospace and Instrumentation Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(27378, 'https://ror.org/02rt36v36', 'en', 1, 'https://ror.org/02rt36v36 Organization of American Historians'),
(27379, 'https://ror.org/02rts6b12', 'cs', 1, 'https://ror.org/02rts6b12 NÔrodní Klimatický Program'),
(27380, 'https://ror.org/02rttk866', 'en', 1, 'https://ror.org/02rttk866 Matsumoto University ę¾ęœ¬å¤§å­¦'),
(27381, 'https://ror.org/02rv57d03', 'en', 1, 'https://ror.org/02rv57d03 International University of the Caribbean'),
(27382, 'https://ror.org/02rvdqw36', 'en', 1, 'https://ror.org/02rvdqw36 Virginia Sesquicentennial of the American Civil War Commission'),
(27383, 'https://ror.org/02rwyg032', 'no_lang_code', 1, 'https://ror.org/02rwyg032 Reitaku University 麗澤大学'),
(27384, 'https://ror.org/02rzsax38', 'en', 1, 'https://ror.org/02rzsax38 Ural Institute of Finance and Law Š£Š ŠŠ›Š¬Š”ŠšŠ˜Š™ Š¤Š˜ŠŠŠŠ”ŠžŠ’Šž-Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(27385, 'https://ror.org/02rzsmv54', 'en', 1, 'https://ror.org/02rzsmv54 Smolensk State Institute of Fine Arts Дмоленский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²');
INSERT INTO `rors` VALUES
(27386, 'https://ror.org/02s22e816', 'en', 1, 'https://ror.org/02s22e816 Kyushu International University 九州国際大学'),
(27387, 'https://ror.org/02s232b27', 'en', 1, 'https://ror.org/02s232b27 Shah Abdul Latif University جامعہ ؓاہ Ų¹ŲØŲÆŲ§Ł„Ł„Ų·ŪŒŁā€Ž ؓاه Ų¹ŲØŲÆŲ§Ł„Ł„Ų·ŁŠŁ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠā€Ž'),
(27388, 'https://ror.org/02s3pgd18', 'en', 1, 'https://ror.org/02s3pgd18 Rivier University UniversitƩ rivier'),
(27389, 'https://ror.org/02s5d1b23', 'en', 1, 'https://ror.org/02s5d1b23 Yokohama College of Commerce ęØŖęµœå•†ē§‘å¤§å­¦'),
(27390, 'https://ror.org/02s5jck73', 'en', 1, 'https://ror.org/02s5jck73 J. F. Oberlin University ę”œē¾Žęž—å¤§å­¦'),
(27391, 'https://ror.org/02s5s5e14', 'en', 1, 'https://ror.org/02s5s5e14 Daegu National University of Education ėŒ€źµ¬źµģœ”ėŒ€ķ•™źµ'),
(27392, 'https://ror.org/02s6q6726', 'id', 1, 'https://ror.org/02s6q6726 Universitas Al Washliyah'),
(27393, 'https://ror.org/02s89kd69', 'en', 1, 'https://ror.org/02s89kd69 Korean National Police University ź²½ģ°°ėŒ€ķ•™'),
(27394, 'https://ror.org/02s8x5a25', 'en', 1, 'https://ror.org/02s8x5a25 Suleyman Demirel University Дүлейман Демирел атынГағы Университет'),
(27395, 'https://ror.org/02s9exq69', 'en', 1, 'https://ror.org/02s9exq69 Midwest Art Conservation Center'),
(27396, 'https://ror.org/02s9hd024', 'no_lang_code', 1, 'https://ror.org/02s9hd024 Spur (Czechia)'),
(27397, 'https://ror.org/02sak2w47', 'en', 1, 'https://ror.org/02sak2w47 Neumann University'),
(27398, 'https://ror.org/02saqjz85', 'no_lang_code', 1, 'https://ror.org/02saqjz85 Chukyo Gakuin University 中京学院大学'),
(27399, 'https://ror.org/02scgt846', 'id', 1, 'https://ror.org/02scgt846 Universitas Ngurah Rai'),
(27400, 'https://ror.org/02sd77t30', 'en', 1, 'https://ror.org/02sd77t30 Baewha Women''s University ė°°ķ™”ģ—¬ģžėŒ€ķ•™źµ'),
(27401, 'https://ror.org/02sdhsy65', 'en', 1, 'https://ror.org/02sdhsy65 National Academy for Public Administration under the President of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Гержавного ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(27402, 'https://ror.org/02sdmkj94', 'en', 1, 'https://ror.org/02sdmkj94 Karachi Institute of Economics and Technology'),
(27403, 'https://ror.org/02se7pe38', 'en', 1, 'https://ror.org/02se7pe38 League of Women Voters'),
(27404, 'https://ror.org/02sfa0g63', 'id', 1, 'https://ror.org/02sfa0g63 Universitas Muhamadiyah Sorong'),
(27405, 'https://ror.org/02shm3a27', 'en', 1, 'https://ror.org/02shm3a27 Azerbaijan University of Architecture and Construction Azərbaycan Memarlıq və İnşaat Universiteti'),
(27406, 'https://ror.org/02sknrf76', 'en', 1, 'https://ror.org/02sknrf76 East Siberian Academy of Culture and Arts Восточно- Дибирский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(27407, 'https://ror.org/02snehe53', 'en', 1, 'https://ror.org/02snehe53 Kiryu University ę”ē”Ÿå¤§å­¦'),
(27408, 'https://ror.org/02spway15', 'en', 1, 'https://ror.org/02spway15 Francisco Gavidia University Universidad Francisco Gavidia'),
(27409, 'https://ror.org/02sqe5a64', 'en', 1, 'https://ror.org/02sqe5a64 Puget Sound Restoration Fund'),
(27410, 'https://ror.org/02sqfdy44', 'en', 1, 'https://ror.org/02sqfdy44 Kagoshima Immaculate Heart University é¹æå…å³¶ē“”åæƒå„³å­å¤§å­¦'),
(27411, 'https://ror.org/02srtfa27', 'en', 1, 'https://ror.org/02srtfa27 B&O Railroad Museum'),
(27412, 'https://ror.org/02stszq80', 'no_lang_code', 1, 'https://ror.org/02stszq80 Poltava V.G. Korolenko National Pedagogical University ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’.Š“.ŠšŠ¾Ń€Š¾Š»ŠµŠ½ŠŗŠ°'),
(27413, 'https://ror.org/02sxhaw47', 'en', 1, 'https://ror.org/02sxhaw47 YWCA Madison'),
(27414, 'https://ror.org/02sxwqc72', 'en', 1, 'https://ror.org/02sxwqc72 Decorah Public Library'),
(27415, 'https://ror.org/02syb3g35', 'en', 1, 'https://ror.org/02syb3g35 Washington County Museum'),
(27416, 'https://ror.org/02syyrn67', 'en', 1, 'https://ror.org/02syyrn67 PLA Army Service Academy äø­å›½äŗŗę°‘č§£ę”¾å†›åŽå‹¤å·„ēØ‹å­¦é™¢'),
(27417, 'https://ror.org/02sz0ks17', 'en', 1, 'https://ror.org/02sz0ks17 Canaan Valley Institute'),
(27418, 'https://ror.org/02t0s0z58', 'en', 1, 'https://ror.org/02t0s0z58 LUNGevity Foundation'),
(27419, 'https://ror.org/02t3bgg27', 'no_lang_code', 1, 'https://ror.org/02t3bgg27 Russian Orthodox Institute Sacred Ioann Bogolslov Российский православный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ²ŃŃ‚Š¾Š³Š¾ Иоанна Богослова'),
(27420, 'https://ror.org/02t3h6354', 'en', 1, 'https://ror.org/02t3h6354 Suwon Catholic University'),
(27421, 'https://ror.org/02t6ppt32', 'en', 1, 'https://ror.org/02t6ppt32 Milwaukee Art Museum'),
(27422, 'https://ror.org/02t8zwv43', 'no_lang_code', 1, 'https://ror.org/02t8zwv43 Milcom (Czechia)'),
(27423, 'https://ror.org/02t903v50', 'en', 1, 'https://ror.org/02t903v50 Copper River Watershed Project'),
(27424, 'https://ror.org/02tb9dy59', 'no_lang_code', 1, 'https://ror.org/02tb9dy59 P-D Refractories (Czechia)'),
(27425, 'https://ror.org/02tc4et63', 'en', 1, 'https://ror.org/02tc4et63 Caucasus University įƒ™įƒįƒ•įƒ™įƒįƒ”įƒ˜įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(27426, 'https://ror.org/02tc9zr52', 'en', 1, 'https://ror.org/02tc9zr52 Darul Ulum Islamic University Universitas Islam Darul Ulum Lamongan'),
(27427, 'https://ror.org/02te2cv05', 'en', 1, 'https://ror.org/02te2cv05 Perm State Pharmaceutical Academy ŠŸŠµŃ€Š¼ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń„Š°Ń€Š¼Š°Ń†ŠµŠ²Ń‚ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(27428, 'https://ror.org/02tj4bx84', 'en', 1, 'https://ror.org/02tj4bx84 Armavir Orthodox-Social Institute Армавирский ŠŸŃ€Š°Š²Š¾ŃŠ»Š°Š²Š½Š¾-Š”Š¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(27429, 'https://ror.org/02tjjy347', 'en', 1, 'https://ror.org/02tjjy347 Taiwan Comprehensive University System å°ē£ē¶œåˆå¤§å­øē³»ēµ±'),
(27430, 'https://ror.org/02tme6r37', 'en', 1, 'https://ror.org/02tme6r37 Heliopolis University Ų¬Ų§Ł…Ų¹Ų© Ł‡Ł„ŁŠŁˆŲØŁˆŁ„ŁŠŲ³'),
(27431, 'https://ror.org/02tms8754', 'no_lang_code', 1, 'https://ror.org/02tms8754 Research and Testing Institute Plzen (Czechia) Výzkumný a zkuŔební ústav Plzeň'),
(27432, 'https://ror.org/02tp47674', 'en', 1, 'https://ror.org/02tp47674 Karaite Jewish University'),
(27433, 'https://ror.org/02tr3dx87', 'no_lang_code', 1, 'https://ror.org/02tr3dx87 Vakos XT (Czechia)'),
(27434, 'https://ror.org/02ts93992', 'en', 1, 'https://ror.org/02ts93992 Kaw Nation'),
(27435, 'https://ror.org/02tsdk069', 'en', 1, 'https://ror.org/02tsdk069 North Greenville University'),
(27436, 'https://ror.org/02tt49y26', 'en', 1, 'https://ror.org/02tt49y26 Far Eastern State Transport University'),
(27437, 'https://ror.org/02ttmd632', 'en', 1, 'https://ror.org/02ttmd632 Polessky State University ŠŸŠ°Š»ŠµŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Полесский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27438, 'https://ror.org/02twyz205', 'en', 1, 'https://ror.org/02twyz205 CMJ University ą¤øą„€ą¤ą¤®ą¤œą„‡ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27439, 'https://ror.org/02tyvzz27', 'en', 1, 'https://ror.org/02tyvzz27 Ho Chi Minh City University of Architecture TrĘ°į»ng ĐẔi hį»c Kiįŗæn trĆŗc ThĆ nh phố Hồ ChĆ­ Minh'),
(27440, 'https://ror.org/02v157r64', 'en', 1, 'https://ror.org/02v157r64 Siberian Transport University Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(27441, 'https://ror.org/02v1sf687', 'en', 1, 'https://ror.org/02v1sf687 University of Kochi é«˜ēŸ„ēœŒē«‹å¤§å­¦'),
(27442, 'https://ror.org/02v319z25', 'en', 1, 'https://ror.org/02v319z25 Urmia University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(27443, 'https://ror.org/02v40vz65', 'en', 1, 'https://ror.org/02v40vz65 Belgorod State Technological University БелгороГский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š’. Š“. ŠØŃƒŃ…Š¾Š²Š°'),
(27444, 'https://ror.org/02v5ef260', 'en', 1, 'https://ror.org/02v5ef260 Hong Bang International University TrĘ°į»ng ĐẔi hį»c Quốc tįŗæ Hồng BĆ ng'),
(27445, 'https://ror.org/02v7gew56', 'en', 1, 'https://ror.org/02v7gew56 Adair County Historical Society'),
(27446, 'https://ror.org/02v91zq07', 'no_lang_code', 1, 'https://ror.org/02v91zq07 Wakkanai Hokusei Gakuen College ēØšå†…åŒ—ę˜Ÿå­¦åœ’å¤§å­¦'),
(27447, 'https://ror.org/02vbq0s06', 'en', 1, 'https://ror.org/02vbq0s06 Siberian Law Institute of Russian Federal Drug Control Service Дибирский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¤Š”ŠšŠ России'),
(27448, 'https://ror.org/02vbtbv10', 'en', 1, 'https://ror.org/02vbtbv10 Oklahoma Christian University'),
(27449, 'https://ror.org/02vbwxp10', 'en', 1, 'https://ror.org/02vbwxp10 Dyer Library / Saco Museum'),
(27450, 'https://ror.org/02vc4jb94', 'en', 1, 'https://ror.org/02vc4jb94 Ministry of Foreign Affairs of Turkmenistan ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Šž Š˜ŠŠžŠ”Š¢Š ŠŠŠŠ«Š„ ДЕЛ Š¢Š£Š ŠšŠœŠ•ŠŠ˜Š”Š¢ŠŠŠ'),
(27451, 'https://ror.org/02vd4ns12', 'en', 1, 'https://ror.org/02vd4ns12 Warren County Public Library'),
(27452, 'https://ror.org/02vdy9f86', 'en', 1, 'https://ror.org/02vdy9f86 Broward Public Library Foundation'),
(27453, 'https://ror.org/02vf5zz47', 'no_lang_code', 1, 'https://ror.org/02vf5zz47 Ford Motor Company (Czechia)'),
(27454, 'https://ror.org/02vg1a239', 'en', 1, 'https://ror.org/02vg1a239 Alkauthar Islamic University Ų¬Ų§Ł…Ų¹Ūƒ Ų§Ł„Ś©ŁˆŲ«Ų±'),
(27455, 'https://ror.org/02vgg4e89', 'en', 1, 'https://ror.org/02vgg4e89 Tainan National University of the Arts åœ‹ē«‹č‡ŗå—č—č”“å¤§å­ø'),
(27456, 'https://ror.org/02vh85b91', 'no_lang_code', 1, 'https://ror.org/02vh85b91 Sido Kanhu Murmu University ą¤øą¤æą¤¦ą„‹ ą¤•ą¤¾ą¤Øą„ą¤¹ą„‚ ą¤®ą„ą¤°ą„ą¤®ą„‚ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(27457, 'https://ror.org/02vjjqw44', 'en', 1, 'https://ror.org/02vjjqw44 Broward County Library'),
(27458, 'https://ror.org/02vme4x02', 'no_lang_code', 1, 'https://ror.org/02vme4x02 HistoryMiami'),
(27459, 'https://ror.org/02vmeq302', 'no_lang_code', 1, 'https://ror.org/02vmeq302 JULI Motorenwerk (Czechia)'),
(27460, 'https://ror.org/02vncvd63', 'en', 1, 'https://ror.org/02vncvd63 Philological School of Higher Education Wyższa Szkoła Filologiczna'),
(27461, 'https://ror.org/02vpfbn76', 'en', 1, 'https://ror.org/02vpfbn76 Boston University Brussels'),
(27462, 'https://ror.org/02vpqss43', 'en', 1, 'https://ror.org/02vpqss43 Meadville Public Library'),
(27463, 'https://ror.org/02vrjqh13', 'en', 1, 'https://ror.org/02vrjqh13 Union of Czech Mathematicians and Physicists Verein fur freie Vortrage aus der Mathematik und Physik'),
(27464, 'https://ror.org/02vvanv81', 'no_lang_code', 1, 'https://ror.org/02vvanv81 Ecosond (Czechia)'),
(27465, 'https://ror.org/02vw63h19', 'en', 1, 'https://ror.org/02vw63h19 Uganda Pentecostal University'),
(27466, 'https://ror.org/02vwdd886', 'en', 1, 'https://ror.org/02vwdd886 Belarusian State University of Physical Culture Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ фізічнай ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(27467, 'https://ror.org/02vwn4357', 'en', 1, 'https://ror.org/02vwn4357 National Humanities Center'),
(27468, 'https://ror.org/02vx41k98', 'en', 1, 'https://ror.org/02vx41k98 Hulunbuir University å‘¼ä¼¦č“å°”å­¦é™¢'),
(27469, 'https://ror.org/02vz8g891', 'en', 1, 'https://ror.org/02vz8g891 San Antonio Museum of Art'),
(27470, 'https://ror.org/02w1psy08', 'en', 1, 'https://ror.org/02w1psy08 New England Fishery Management Council'),
(27471, 'https://ror.org/02w34pv31', 'en', 1, 'https://ror.org/02w34pv31 International Community of Women Living with HIV'),
(27472, 'https://ror.org/02w403504', 'en', 1, 'https://ror.org/02w403504 South Eastern Kenya University'),
(27473, 'https://ror.org/02w6v9q55', 'en', 1, 'https://ror.org/02w6v9q55 Akademia Pedagogiki Specjalnej im. Marii Grzegorzewskiej Maria Grzegorzewska Academy of Special Education'),
(27474, 'https://ror.org/02w7eph15', 'en', 1, 'https://ror.org/02w7eph15 New Hampshire Fish and Game Department'),
(27475, 'https://ror.org/02w982447', 'en', 1, 'https://ror.org/02w982447 Library Company of Philadelphia'),
(27476, 'https://ror.org/02wajwy78', 'en', 1, 'https://ror.org/02wajwy78 Brazos Valley Museum of Natural History'),
(27477, 'https://ror.org/02wbgfm85', 'en', 1, 'https://ror.org/02wbgfm85 Warsaw School of Information Technology Wyższa Szkoła Informatyki Stosowanej i Zarządzania'),
(27478, 'https://ror.org/02wbhea49', 'en', 1, 'https://ror.org/02wbhea49 Academy of Federal Security Guard Service of Russian Federation ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ охраны Российской ФеГерации'),
(27479, 'https://ror.org/02wbzep73', 'en', 1, 'https://ror.org/02wbzep73 West Visayas State University'),
(27480, 'https://ror.org/02wcxpr65', 'no_lang_code', 1, 'https://ror.org/02wcxpr65 ATAS (Czechia) ATAS elektromotory NƔchod'),
(27481, 'https://ror.org/02wdfg707', 'en', 1, 'https://ror.org/02wdfg707 Chhattisgarh Swami Vivekanand Technical University ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼ ą¤øą„ą¤µą¤¾ą¤®ą„€ ą¤µą¤æą¤µą„‡ą¤•ą¤¾ą¤Øą¤‚ą¤¦ ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦›ą¦¤ą§ą¦¤ą§€ą¦øą¦—ą¦¢ą¦¼ ą¦øą§ą¦¬ą¦¾ą¦®ą§€ ą¦¬ą¦æą¦¬ą§‡ą¦•ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27482, 'https://ror.org/02we34e32', 'en', 1, 'https://ror.org/02we34e32 Khakass Institute of Business Єакасский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(27483, 'https://ror.org/02we77t30', 'en', 1, 'https://ror.org/02we77t30 Preston Institute of Management Science and Technology'),
(27484, 'https://ror.org/02weg9v26', 'en', 1, 'https://ror.org/02weg9v26 Universiti Terbuka Wawasan Wawasan Open University å®ę„æå¼€ę”¾å¤§å­¦'),
(27485, 'https://ror.org/02weq6r62', 'en', 1, 'https://ror.org/02weq6r62 Smolensk State Academy of Physical Culture, Sport and Tourism Š”Š¼Š¾Š»ŠµŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(27486, 'https://ror.org/02wf2mv31', 'en', 1, 'https://ror.org/02wf2mv31 Mihail Kogălniceanu University Universitatea Mihail Kogălniceanu'),
(27487, 'https://ror.org/02whebm50', 'en', 1, 'https://ror.org/02whebm50 Moscow Institute of Economics Politics and Law Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, политики Šø права'),
(27488, 'https://ror.org/02whw1h12', 'id', 1, 'https://ror.org/02whw1h12 Universitas Kristen Indonesia Tomohon'),
(27489, 'https://ror.org/02wmsc916', 'en', 1, 'https://ror.org/02wmsc916 Guizhou University č“µå·žå¤§å­¦'),
(27490, 'https://ror.org/02wne9d91', 'en', 1, 'https://ror.org/02wne9d91 Nakhchivan State University NaxƧıvan Dƶvlət Universiteti ŠŠ°Ń…ŠøŃ‡ŠµŠ²Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27491, 'https://ror.org/02wp4vw89', 'no_lang_code', 1, 'https://ror.org/02wp4vw89 Nippon Bunri University ę—„ęœ¬ę–‡ē†å¤§å­¦'),
(27492, 'https://ror.org/02wq2gg07', 'no_lang_code', 1, 'https://ror.org/02wq2gg07 Huachiew Chalermprakiet University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø«ąø±ąø§ą¹€ąø‰ąøµąø¢ąø§ą¹€ąø‰ąø„ąø“ąø”ąøžąø£ąø°ą¹€ąøąøµąø¢ąø£ąø•ąø“'),
(27493, 'https://ror.org/02wq67465', 'en', 1, 'https://ror.org/02wq67465 Solomon R. Guggenheim Museum'),
(27494, 'https://ror.org/02wqs2q29', 'en', 1, 'https://ror.org/02wqs2q29 Western Mindanao State University'),
(27495, 'https://ror.org/02wra6g16', 'en', 1, 'https://ror.org/02wra6g16 Glendale University College of Law'),
(27496, 'https://ror.org/02wsba348', 'en', 1, 'https://ror.org/02wsba348 Samara State University of Economics Дамарский Š³Š¾ŃŃƒŠ“арственный ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27497, 'https://ror.org/02wsqx654', 'en', 1, 'https://ror.org/02wsqx654 Highland Park Public Library'),
(27498, 'https://ror.org/02wsybq15', 'en', 1, 'https://ror.org/02wsybq15 Museum of Ventura County'),
(27499, 'https://ror.org/02wtp9k17', 'en', 1, 'https://ror.org/02wtp9k17 Legnica University of Management Wyższa Szkoła Menedżerska w Legnicy'),
(27500, 'https://ror.org/02wvjw989', 'en', 1, 'https://ror.org/02wvjw989 Dr. K.N.Modi University ą¤”ą„‰. ą¤•ą„‡.ą¤ą¤Ø.ą¤®ą„‹ą¤¦ą„€ ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(27501, 'https://ror.org/02wwnew71', 'en', 1, 'https://ror.org/02wwnew71 Smolensk State Medical University смоленский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27502, 'https://ror.org/02wy0t670', 'en', 1, 'https://ror.org/02wy0t670 Talladega Public Library'),
(27503, 'https://ror.org/02wyv1n88', 'en', 1, 'https://ror.org/02wyv1n88 Fairfax County Public Library'),
(27504, 'https://ror.org/02wz4qt92', 'en', 1, 'https://ror.org/02wz4qt92 New Brunswick Free Public Library'),
(27505, 'https://ror.org/02x04jw38', 'en', 1, 'https://ror.org/02x04jw38 Children''s Museum of Pittsburgh'),
(27506, 'https://ror.org/02x0s3f55', 'en', 1, 'https://ror.org/02x0s3f55 Fauquier County Public Library'),
(27507, 'https://ror.org/02x0vsr17', 'en', 1, 'https://ror.org/02x0vsr17 Grass Roots Art and Community Effort'),
(27508, 'https://ror.org/02x3m5z11', 'en', 1, 'https://ror.org/02x3m5z11 Delta International University'),
(27509, 'https://ror.org/02x3whk24', 'no_lang_code', 1, 'https://ror.org/02x3whk24 Betosan (Czechia)'),
(27510, 'https://ror.org/02x3ztz93', 'en', 1, 'https://ror.org/02x3ztz93 Shoin University ę¾č”­å¤§å­¦'),
(27511, 'https://ror.org/02x5hb316', 'en', 1, 'https://ror.org/02x5hb316 Huafan University čÆę¢µå¤§å­ø'),
(27512, 'https://ror.org/02x7w2961', 'en', 1, 'https://ror.org/02x7w2961 Pibulsongkram Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøžąø“ąøšąø¹ąø„ąøŖąø‡ąø„ąø£ąø²ąø”'),
(27513, 'https://ror.org/02x8vnm69', 'en', 1, 'https://ror.org/02x8vnm69 Noyes Museum'),
(27514, 'https://ror.org/02x8vxm77', 'en', 1, 'https://ror.org/02x8vxm77 Mexic-Arte Museum'),
(27515, 'https://ror.org/02xbkp909', 'en', 1, 'https://ror.org/02xbkp909 Riverside County Parks'),
(27516, 'https://ror.org/02xddbh84', 'en', 1, 'https://ror.org/02xddbh84 Russian Academy of Entrepreneurship Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŸŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(27517, 'https://ror.org/02xdzy536', 'en', 1, 'https://ror.org/02xdzy536 Baden-Wuerttemberg Cooperative State University Duale Hochschule Baden-Württemberg'),
(27518, 'https://ror.org/02xfdng11', 'en', 1, 'https://ror.org/02xfdng11 Boricua College'),
(27519, 'https://ror.org/02xg13584', 'en', 1, 'https://ror.org/02xg13584 Alabama Department of Revenue'),
(27520, 'https://ror.org/02xhk8637', 'en', 1, 'https://ror.org/02xhk8637 International Market Institute ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рынка'),
(27521, 'https://ror.org/02xjmhc17', 'cs', 1, 'https://ror.org/02xjmhc17 VysokĆ” Skola Logistiky'),
(27522, 'https://ror.org/02xpf0x05', 'en', 1, 'https://ror.org/02xpf0x05 St. Paul University Philippines'),
(27523, 'https://ror.org/02xr3yb07', 'en', 1, 'https://ror.org/02xr3yb07 University of Bijeljina Univerzitet Bijeljina Универзитет Š‘ŠøŃ˜ŠµŃ™ŠøŠ½Š°'),
(27524, 'https://ror.org/02xrm8562', 'id', 1, 'https://ror.org/02xrm8562 Universitas 17 Agustus 1945 Surabaya'),
(27525, 'https://ror.org/02xs4jc78', 'en', 1, 'https://ror.org/02xs4jc78 Algerian Petroleum Institute Institut AlgƩrien du PƩtrole'),
(27526, 'https://ror.org/02xwcny57', 'id', 1, 'https://ror.org/02xwcny57 Universitas Muhammadiyah Buton'),
(27527, 'https://ror.org/02xx4jg88', 'en', 1, 'https://ror.org/02xx4jg88 Mohammad Ali Jinnah University جامعہ Ł…Ų­Ł…ŲÆ Ų¹Ł„ŪŒ جناح'),
(27528, 'https://ror.org/02xzh7w80', 'no_lang_code', 1, 'https://ror.org/02xzh7w80 SE-MI Technology (Czechia)'),
(27529, 'https://ror.org/02y0s5375', 'en', 1, 'https://ror.org/02y0s5375 Roland Park Country School'),
(27530, 'https://ror.org/02y1frf83', 'en', 1, 'https://ror.org/02y1frf83 John Garang Memorial University of Science and Technology'),
(27531, 'https://ror.org/02y1pga23', 'no_lang_code', 1, 'https://ror.org/02y1pga23 Kushabhau Thakre Patrakarita Avam Jansanchar University ą¤•ą„ą¤¶ą¤¾ą¤­ą¤¾ą¤Š ą¤ ą¤¾ą¤•ą¤°ą„‡ ą¤Ŗą¤¤ą„ą¤°ą¤•ą¤¾ą¤°ą¤æą¤¤ą¤¾ ą¤ą¤µą¤‚ ą¤øą¤‚ą¤šą¤¾ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27532, 'https://ror.org/02y394t43', 'en', 1, 'https://ror.org/02y394t43 Sardar Vallabhbhai National Institute of Technology Surat सरदार ą¤µą¤²ą„ą¤²ą¤­ą¤­ą¤¾ą¤ˆ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤øą„‚ą¤°ą¤¤'),
(27533, 'https://ror.org/02y561s55', 'no_lang_code', 1, 'https://ror.org/02y561s55 LOM Praha (Czechia)'),
(27534, 'https://ror.org/02y676g76', 'en', 1, 'https://ror.org/02y676g76 Springfield Museums'),
(27535, 'https://ror.org/02y6ewg31', 'en', 1, 'https://ror.org/02y6ewg31 Bashkir State Agrarian University Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27536, 'https://ror.org/02y6r1c45', 'en', 1, 'https://ror.org/02y6r1c45 Kogakkan University ēš‡å­øé¤Øå¤§å­¦'),
(27537, 'https://ror.org/02y7be508', 'en', 1, 'https://ror.org/02y7be508 Gomel Engineering Institute Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ инженерный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ МЧД Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(27538, 'https://ror.org/02y7mzf89', 'en', 1, 'https://ror.org/02y7mzf89 Museum of Decorative Arts in Prague UměleckoprÅÆmyslovĆ© Muzeum v Praze'),
(27539, 'https://ror.org/02y7yba16', 'en', 1, 'https://ror.org/02y7yba16 North Pacific Fishery Management Council'),
(27540, 'https://ror.org/02yac4e68', 'pl', 1, 'https://ror.org/02yac4e68 Masurian University in Olecko Wszechnica Mazurska w Olecku'),
(27541, 'https://ror.org/02ydm7k86', 'en', 1, 'https://ror.org/02ydm7k86 Hawaii State Judiciary'),
(27542, 'https://ror.org/02ykdqq93', 'no_lang_code', 1, 'https://ror.org/02ykdqq93 APS (Czechia)'),
(27543, 'https://ror.org/02ykntn67', 'en', 1, 'https://ror.org/02ykntn67 University Press of Mississippi'),
(27544, 'https://ror.org/02ym28w56', 'en', 1, 'https://ror.org/02ym28w56 Fraunces Tavern Museum'),
(27545, 'https://ror.org/02ym98p07', 'no_lang_code', 1, 'https://ror.org/02ym98p07 AMF Reece (Czechia)'),
(27546, 'https://ror.org/02ymr0w73', 'en', 1, 'https://ror.org/02ymr0w73 University of Rizal System'),
(27547, 'https://ror.org/02ymwej51', 'en', 1, 'https://ror.org/02ymwej51 Lyman Museum'),
(27548, 'https://ror.org/02ypf3368', 'no_lang_code', 1, 'https://ror.org/02ypf3368 Tsaritsyn Orthodox University of St. Sergius of Radonezh Царицынский православный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ препоГобного Š”ŠµŃ€Š³ŠøŃ РаГонежского'),
(27549, 'https://ror.org/02yse4t33', 'no_lang_code', 1, 'https://ror.org/02yse4t33 Ham-Final (Czechia)'),
(27550, 'https://ror.org/02ytxkh27', 'en', 1, 'https://ror.org/02ytxkh27 Sirte University Ų¬Ų§Ł…Ų¹Ų© Ų³Ų±ŲŖ'),
(27551, 'https://ror.org/02ywmkj38', 'en', 1, 'https://ror.org/02ywmkj38 Ukrainian Free University Ukrainische Freie Universität München'),
(27552, 'https://ror.org/02ywx2b39', 'en', 1, 'https://ror.org/02ywx2b39 Resource Conservation District of Santa Cruz County'),
(27553, 'https://ror.org/02yx5w936', 'en', 1, 'https://ror.org/02yx5w936 Bering Sea Fishermen’s Association'),
(27554, 'https://ror.org/02yypjn06', 'no_lang_code', 1, 'https://ror.org/02yypjn06 Hiroshima Jogakuin University åŗƒå³¶å„³å­¦é™¢å¤§å­¦'),
(27555, 'https://ror.org/02yyxkw16', 'en', 1, 'https://ror.org/02yyxkw16 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(27556, 'https://ror.org/02yz8wm13', 'en', 1, 'https://ror.org/02yz8wm13 Tokyo Future University ę±äŗ¬ęœŖę„å¤§å­¦'),
(27557, 'https://ror.org/02yzsqk70', 'id', 1, 'https://ror.org/02yzsqk70 Universitas Al-Ghifari'),
(27558, 'https://ror.org/02z51gq92', 'en', 1, 'https://ror.org/02z51gq92 National Civil Rights Museum'),
(27559, 'https://ror.org/02z5czc07', 'en', 1, 'https://ror.org/02z5czc07 Samara State Medical University Дамарский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Университет'),
(27560, 'https://ror.org/02z5xhm28', 'id', 1, 'https://ror.org/02z5xhm28 Universitas Gunung Kidul'),
(27561, 'https://ror.org/02z79er63', 'en', 1, 'https://ror.org/02z79er63 Al Assad University Hospital مستؓفى الأسد Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(27562, 'https://ror.org/02z7csx58', 'en', 1, 'https://ror.org/02z7csx58 Hawaiian Historical Society'),
(27563, 'https://ror.org/02z7pfr92', 'en', 1, 'https://ror.org/02z7pfr92 Oita University of Nursing and Health Sciences å¤§åˆ†ēœŒē«‹ēœ‹č­·ē§‘å­¦å¤§å­¦'),
(27564, 'https://ror.org/02z9b5492', 'en', 1, 'https://ror.org/02z9b5492 Institute of Commerce and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коммерции Šø праваWebsiteDirections'),
(27565, 'https://ror.org/02zfq4z39', 'en', 1, 'https://ror.org/02zfq4z39 Taiwan Hospitality and Tourism University 臺灣觀光學院'),
(27566, 'https://ror.org/02zm6mf23', 'en', 1, 'https://ror.org/02zm6mf23 Bisbee Mining & Historical Museums'),
(27567, 'https://ror.org/02zp6e752', 'en', 1, 'https://ror.org/02zp6e752 Osaka University of Tourism å¤§é˜Ŗč¦³å…‰å¤§å­¦'),
(27568, 'https://ror.org/02zptxe07', 'hi', 1, 'https://ror.org/02zptxe07 Sri Padmavati Mahila Visvavidyalayam ą°Ŗą°¦ą±ą°®ą°¾ą°µą°¤ą°æ మహిళా ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(27569, 'https://ror.org/02zqv0c70', 'en', 1, 'https://ror.org/02zqv0c70 Ufa State Institute of Arts Уфимский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² имени Загира Исмагилова'),
(27570, 'https://ror.org/02zry2p95', 'en', 1, 'https://ror.org/02zry2p95 Almamer University'),
(27571, 'https://ror.org/02zrz7n38', 'id', 1, 'https://ror.org/02zrz7n38 Universitas Dian Nusantara'),
(27572, 'https://ror.org/02ztfnz06', 'en', 1, 'https://ror.org/02ztfnz06 Gori State Teaching University įƒ’įƒįƒ įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(27573, 'https://ror.org/02zy6f603', 'tl', 1, 'https://ror.org/02zy6f603 Centro Escolar University Makati'),
(27574, 'https://ror.org/02zzdhn44', 'en', 1, 'https://ror.org/02zzdhn44 Kyiv Institute of Traditional Medicine'),
(27575, 'https://ror.org/0300ggk05', 'en', 1, 'https://ror.org/0300ggk05 Berkshire Community College'),
(27576, 'https://ror.org/0300khg14', 'fr', 1, 'https://ror.org/0300khg14 Institut Supérieur de Formation aĢ€ Distance'),
(27577, 'https://ror.org/03016c374', 'en', 1, 'https://ror.org/03016c374 Chungwoon University ģ²­ģš“ėŒ€ķ•™źµ'),
(27578, 'https://ror.org/030290415', 'en', 1, 'https://ror.org/030290415 Gifu College of Nursing å²é˜œēœŒē«‹ēœ‹č­·å¤§å­¦'),
(27579, 'https://ror.org/0302dpf35', 'en', 1, 'https://ror.org/0302dpf35 Western New York Public Broadcasting Association'),
(27580, 'https://ror.org/0302nvj93', 'id', 1, 'https://ror.org/0302nvj93 Universitas Nusa Lontar Rote'),
(27581, 'https://ror.org/03030f487', 'en', 1, 'https://ror.org/03030f487 Nong Lam University Ho Chi Minh City TrĘ°į»ng ĐẔi hį»c NĆ“ng LĆ¢m ThĆ nh phố Hồ ChĆ­ Minh'),
(27582, 'https://ror.org/0303m8c17', 'no_lang_code', 1, 'https://ror.org/0303m8c17 Pontex (Czechia)'),
(27583, 'https://ror.org/0304weq09', 'en', 1, 'https://ror.org/0304weq09 California Conservation Corps'),
(27584, 'https://ror.org/03054hf98', 'en', 1, 'https://ror.org/03054hf98 Ider University Š˜Š“ŃŃ€ Š“ŃŃŠ“ ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(27585, 'https://ror.org/03068df82', 'en', 1, 'https://ror.org/03068df82 Jumonji University åę–‡å­—å­¦åœ’å„³å­å¤§å­¦'),
(27586, 'https://ror.org/0308w0t08', 'en', 1, 'https://ror.org/0308w0t08 Institute for Architecture and Urban Studies'),
(27587, 'https://ror.org/03092z988', 'en', 1, 'https://ror.org/03092z988 Saint Petersburg State University of Civil Aviation Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ гражГанской авиации'),
(27588, 'https://ror.org/030a9rt17', 'en', 1, 'https://ror.org/030a9rt17 Marine Conservation Institute'),
(27589, 'https://ror.org/030c1ef86', 'en', 1, 'https://ror.org/030c1ef86 Bhagwant University भगवंत ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(27590, 'https://ror.org/030c9z695', 'en', 1, 'https://ror.org/030c9z695 Madison Museum of Contemporary Art'),
(27591, 'https://ror.org/030dak672', 'en', 1, 'https://ror.org/030dak672 National Textile University Ł†ŪŒŲ“Ł†Ł„ Ł¹ŪŒŚ©Ų³Ł¹Ų§Ų¦Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(27592, 'https://ror.org/030ew6d86', 'en', 1, 'https://ror.org/030ew6d86 Museum of Danish America'),
(27593, 'https://ror.org/030fd1j28', 'no_lang_code', 1, 'https://ror.org/030fd1j28 Yamanashi Eiwa College å±±ę¢Øč‹±å’Œå¤§å­¦'),
(27594, 'https://ror.org/030hvht91', 'en', 1, 'https://ror.org/030hvht91 Texas Folklife Resources'),
(27595, 'https://ror.org/030jhgm36', 'en', 1, 'https://ror.org/030jhgm36 Rappahannock Community College'),
(27596, 'https://ror.org/030kbv745', 'en', 1, 'https://ror.org/030kbv745 Watsonville Wetlands Watch'),
(27597, 'https://ror.org/030kg2v23', 'en', 1, 'https://ror.org/030kg2v23 Oaksterdam University'),
(27598, 'https://ror.org/030nhjt85', 'en', 1, 'https://ror.org/030nhjt85 Webb School of Knoxville'),
(27599, 'https://ror.org/030p1h383', 'en', 1, 'https://ror.org/030p1h383 Buckingham Browne & Nichols'),
(27600, 'https://ror.org/030q11033', 'en', 1, 'https://ror.org/030q11033 Nizhny Novgorod Institute of Management and Business ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента Šø бизнеса'),
(27601, 'https://ror.org/030qptj94', 'en', 1, 'https://ror.org/030qptj94 Lahore Leads University Ł„Ų§ŪŁˆŲ± Ł„ŪŒŚˆŲ² ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(27602, 'https://ror.org/030rcn265', 'en', 1, 'https://ror.org/030rcn265 University of Arts'),
(27603, 'https://ror.org/030sr3j49', 'no_lang_code', 1, 'https://ror.org/030sr3j49 Medistyl (Czechia)'),
(27604, 'https://ror.org/030t96b35', 'en', 1, 'https://ror.org/030t96b35 Lebanese French University الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„ŁŲ±Ł†Ų³ŁŠŲ© للأعمال و ال؄دارة في Ų§Ų±ŲØŁŠŁ„'),
(27605, 'https://ror.org/030vbff53', 'id', 1, 'https://ror.org/030vbff53 Universitas Muhammadiyah Sumatera Barat'),
(27606, 'https://ror.org/030wf7z82', 'en', 1, 'https://ror.org/030wf7z82 Texas State Historical Association'),
(27607, 'https://ror.org/030wwj796', 'id', 1, 'https://ror.org/030wwj796 Universitas Jabal Ghafur'),
(27608, 'https://ror.org/030xw6n96', 'en', 1, 'https://ror.org/030xw6n96 Dawood University of Engineering and Technology ŲÆŲ§Ų¤ŲÆ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(27609, 'https://ror.org/030y6zg68', 'en', 1, 'https://ror.org/030y6zg68 Birmingham Museum of Art'),
(27610, 'https://ror.org/030z21q40', 'en', 1, 'https://ror.org/030z21q40 Orleans Parish Civil Clerk of Court'),
(27611, 'https://ror.org/030zy2k76', 'en', 1, 'https://ror.org/030zy2k76 Wilbur Wright College'),
(27612, 'https://ror.org/0310pe913', 'en', 1, 'https://ror.org/0310pe913 Institute of World Civilizations'),
(27613, 'https://ror.org/0311whq26', 'en', 1, 'https://ror.org/0311whq26 St Theresa International College ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ ą¹€ąø‹ąø™ąø•ą¹Œą¹€ąø—ą¹€ąø£ąø‹ąø²'),
(27614, 'https://ror.org/0314ahf24', 'en', 1, 'https://ror.org/0314ahf24 TransWorld University ē’°ēƒē§‘ęŠ€å¤§å­ø'),
(27615, 'https://ror.org/0314zyy82', 'en', 1, 'https://ror.org/0314zyy82 Ferris University ćƒ•ć‚§ćƒŖć‚¹å„³å­¦é™¢å¤§å­¦'),
(27616, 'https://ror.org/03156th50', 'no_lang_code', 1, 'https://ror.org/03156th50 Koexpro Ostrava (Czechia)'),
(27617, 'https://ror.org/0316yxf08', 'en', 1, 'https://ror.org/0316yxf08 Museum of the Gulf Coast'),
(27618, 'https://ror.org/0318kta67', 'en', 1, 'https://ror.org/0318kta67 Tohoku University of Art and Design ę±åŒ—čŠøč”“å·„ē§‘å¤§å­¦'),
(27619, 'https://ror.org/031ahrf94', 'en', 1, 'https://ror.org/031ahrf94 University of Bamenda UniversitƩ de Bamenda'),
(27620, 'https://ror.org/031bayg24', 'en', 1, 'https://ror.org/031bayg24 Cenderawasih University Universitas Cenderawasih'),
(27621, 'https://ror.org/031bs2a09', 'en', 1, 'https://ror.org/031bs2a09 Ukrainian State University of Chemical Technology Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний хіміко-технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27622, 'https://ror.org/031eg3302', 'en', 1, 'https://ror.org/031eg3302 Teaneck Public Library'),
(27623, 'https://ror.org/031gj7m30', 'id', 1, 'https://ror.org/031gj7m30 Universitas Kristen Papua'),
(27624, 'https://ror.org/031grv787', 'no_lang_code', 1, 'https://ror.org/031grv787 AHT Energetics (Czechia) AHT Energetika'),
(27625, 'https://ror.org/031j5va63', 'en', 1, 'https://ror.org/031j5va63 Blount County Government'),
(27626, 'https://ror.org/031mwx454', 'en', 1, 'https://ror.org/031mwx454 Brigham City Museum-Gallery'),
(27627, 'https://ror.org/031p96b92', 'ro', 1, 'https://ror.org/031p96b92 Universitatea Andrei Şaguna'),
(27628, 'https://ror.org/031px5f40', 'id', 1, 'https://ror.org/031px5f40 Universitas Muhammadiyah Jakarta'),
(27629, 'https://ror.org/031pz1630', 'no_lang_code', 1, 'https://ror.org/031pz1630 Crawford & Stearns (United States)'),
(27630, 'https://ror.org/031rbbf63', 'en', 1, 'https://ror.org/031rbbf63 Japanese American Service Committee'),
(27631, 'https://ror.org/031t0qj16', 'pl', 1, 'https://ror.org/031t0qj16 Wyższa Szkoła Zarządzania w Częstochowie'),
(27632, 'https://ror.org/031tn5142', 'id', 1, 'https://ror.org/031tn5142 Universitas Prof Dr Moestopo'),
(27633, 'https://ror.org/031yv7164', 'en', 1, 'https://ror.org/031yv7164 Hochschule für Musik und Theater Rostock Rostock University of Music and Theatre'),
(27634, 'https://ror.org/031yzhe66', 'en', 1, 'https://ror.org/031yzhe66 Cyprus American Archaeological Research Institute'),
(27635, 'https://ror.org/0322dgg87', 'en', 1, 'https://ror.org/0322dgg87 American University of Culture and Education الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© للثقافة ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ…'),
(27636, 'https://ror.org/032392f02', 'en', 1, 'https://ror.org/032392f02 Sisaket Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąø ศรีสะเกษ'),
(27637, 'https://ror.org/0324chf70', 'en', 1, 'https://ror.org/0324chf70 Sheffield Historical Society'),
(27638, 'https://ror.org/0324psq83', 'en', 1, 'https://ror.org/0324psq83 National Center for Jewish Film'),
(27639, 'https://ror.org/0326y8887', 'en', 1, 'https://ror.org/0326y8887 Kent Memorial Library'),
(27640, 'https://ror.org/03271bg65', 'en', 1, 'https://ror.org/03271bg65 General John A Logan Museum'),
(27641, 'https://ror.org/0328gjw85', 'en', 1, 'https://ror.org/0328gjw85 Florida Aquarium'),
(27642, 'https://ror.org/032dg3327', 'no_lang_code', 1, 'https://ror.org/032dg3327 Trystom (Czechia)'),
(27643, 'https://ror.org/032eyg648', 'en', 1, 'https://ror.org/032eyg648 Belgorod Law Institute of the Russian Interior Ministry БелгороГский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(27644, 'https://ror.org/032f9e998', 'id', 1, 'https://ror.org/032f9e998 Universitas Muhammadiyah Kendari'),
(27645, 'https://ror.org/032fhk095', 'en', 1, 'https://ror.org/032fhk095 Karaj Payam Noor University دانؓگاه Ł¾ŪŒŲ§Ł… Ł†ŁˆŲ± کرج'),
(27646, 'https://ror.org/032k6a629', 'en', 1, 'https://ror.org/032k6a629 FacultƩ d''art et design du massachusetts Massachusetts College of Art and Design'),
(27647, 'https://ror.org/032pgsv75', 'en', 1, 'https://ror.org/032pgsv75 Artifex University Universitatea Artifex'),
(27648, 'https://ror.org/032pgwm02', 'en', 1, 'https://ror.org/032pgwm02 Petre Shotadze Tbilisi Medical Academy įƒžįƒ”įƒ¢įƒ įƒ” įƒØįƒįƒ—įƒįƒ«įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(27649, 'https://ror.org/032pkq250', 'en', 1, 'https://ror.org/032pkq250 Admiral Ushakov State Maritime University'),
(27650, 'https://ror.org/032se3k78', 'en', 1, 'https://ror.org/032se3k78 Yanbian University of Science and Technology å»¶č¾¹ē§‘ęŠ€å¤§å­¦'),
(27651, 'https://ror.org/032sgfc78', 'en', 1, 'https://ror.org/032sgfc78 Ivanovo State Medical Academy Š˜Š²Š°Š½Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(27652, 'https://ror.org/032t2sn55', 'id', 1, 'https://ror.org/032t2sn55 Universitas Wisnuwardhana Malang'),
(27653, 'https://ror.org/032xpkz45', 'no_lang_code', 1, 'https://ror.org/032xpkz45 Tenza (Czechia)'),
(27654, 'https://ror.org/032zdh829', 'no_lang_code', 1, 'https://ror.org/032zdh829 Soning (Czechia)'),
(27655, 'https://ror.org/0330rc745', 'en', 1, 'https://ror.org/0330rc745 Ashikaga University 足利巄愭大学'),
(27656, 'https://ror.org/033243786', 'id', 1, 'https://ror.org/033243786 Universitas Muhammadiyah Sukabumi'),
(27657, 'https://ror.org/0336rcx12', 'no_lang_code', 1, 'https://ror.org/0336rcx12 Korkyt Ata Kyzylorda State University ŅšŠ¾Ń€Ņ›Ń‹Ń‚ Ата атынГағы ŅšŃ‹Š·Ń‹Š»Š¾Ń€Š“Š° мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(27658, 'https://ror.org/03373tb44', 'en', 1, 'https://ror.org/03373tb44 Toyama University of International Studies åÆŒå±±å›½éš›å¤§å­¦'),
(27659, 'https://ror.org/033ajm422', 'en', 1, 'https://ror.org/033ajm422 Boot Hill Museum'),
(27660, 'https://ror.org/033ddqa09', 'en', 1, 'https://ror.org/033ddqa09 Yaroslavl State Theatre Institute Ярославский Š³Š¾ŃŃƒŠ“арственный Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(27661, 'https://ror.org/033dq6x61', 'en', 1, 'https://ror.org/033dq6x61 Ho Chi Minh City University of Law TrĘ°į»ng ĐẔi hį»c Luįŗ­t ThĆ nh phố Hồ ChĆ­ Minh UniversitĆ© de droit d''hĆ“-chi-minh-ville'),
(27662, 'https://ror.org/033g82k60', 'en', 1, 'https://ror.org/033g82k60 Institute of Parliamentarism and Entrepreneurship Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ парламентаризма Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(27663, 'https://ror.org/033ga7d50', 'en', 1, 'https://ror.org/033ga7d50 Old Independence Regional Museum'),
(27664, 'https://ror.org/033hwa625', 'pl', 1, 'https://ror.org/033hwa625 Wyższa Szkoła Pedagogiczna w Łodzi'),
(27665, 'https://ror.org/033kqn293', 'no_lang_code', 1, 'https://ror.org/033kqn293 SMS (Czechia)'),
(27666, 'https://ror.org/033kwjh11', 'no_lang_code', 1, 'https://ror.org/033kwjh11 Nepal Sanskrit University ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27667, 'https://ror.org/033mv0745', 'no_lang_code', 1, 'https://ror.org/033mv0745 Mott MacDonald (Czechia)'),
(27668, 'https://ror.org/033rd6g83', 'no_lang_code', 1, 'https://ror.org/033rd6g83 Beta Control (Czechia)'),
(27669, 'https://ror.org/033rfce62', 'en', 1, 'https://ror.org/033rfce62 Uniwersytet Szawelski Šiauliai University Šiaulių universitetas'),
(27670, 'https://ror.org/033v1q508', 'en', 1, 'https://ror.org/033v1q508 Frontier Nursing University'),
(27671, 'https://ror.org/033v2cg93', 'no_lang_code', 1, 'https://ror.org/033v2cg93 Jig Jiga Jigjiga University'),
(27672, 'https://ror.org/033z56h08', 'en', 1, 'https://ror.org/033z56h08 Polish American Historical Association'),
(27673, 'https://ror.org/03414dm82', 'en', 1, 'https://ror.org/03414dm82 Western Pacific Regional Fishery Management Council'),
(27674, 'https://ror.org/034172q61', 'pl', 1, 'https://ror.org/034172q61 Akademia Muzyczna im. Ignacego Jana Paderewskiego w Poznaniu'),
(27675, 'https://ror.org/0341e8845', 'en', 1, 'https://ror.org/0341e8845 Saengtham College ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąøŖąø‡ąø˜ąø£ąø£ąø”'),
(27676, 'https://ror.org/03455qw25', 'no_lang_code', 1, 'https://ror.org/03455qw25 Trumf International (Czechia)'),
(27677, 'https://ror.org/03472k602', 'no_lang_code', 1, 'https://ror.org/03472k602 Tohoku Seikatsu Bunka University ę±åŒ—ē”Ÿę“»ę–‡åŒ–å¤§å­¦'),
(27678, 'https://ror.org/034882z59', 'en', 1, 'https://ror.org/034882z59 Saint Petersburg State Forest Technical University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27679, 'https://ror.org/034a2ss16', 'en', 1, 'https://ror.org/034a2ss16 Amoud University Jaamacadda Camuud Ų¬Ų§Ł…Ų¹Ų© Ų¹Ł…ŁˆŲÆ'),
(27680, 'https://ror.org/034agrd14', 'en', 1, 'https://ror.org/034agrd14 Lebanese International University UniversitĆ© internationale libanaise الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(27681, 'https://ror.org/034cgwt87', 'en', 1, 'https://ror.org/034cgwt87 Eugene O''Neill Theater Center'),
(27682, 'https://ror.org/034cj1z12', 'en', 1, 'https://ror.org/034cj1z12 Forestry and Game Management Research Institute'),
(27683, 'https://ror.org/034f9gk34', 'en', 1, 'https://ror.org/034f9gk34 Institute of Professional Innovations Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠ¤Š•Š”Š”Š˜ŠžŠŠŠ›Š¬ŠŠ«Š„ Š˜ŠŠŠžŠ’ŠŠ¦Š˜Š™'),
(27684, 'https://ror.org/034f9zy16', 'en', 1, 'https://ror.org/034f9zy16 Samara State Institute of Culture Дамарский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(27685, 'https://ror.org/034ghyw40', 'en', 1, 'https://ror.org/034ghyw40 Ancient Biblical Manuscript Center'),
(27686, 'https://ror.org/034h2va53', 'en', 1, 'https://ror.org/034h2va53 Maharashtra Animal and Fishery Sciences University ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤Ŗą¤¶ą„ व ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ , ą¤Øą¤¾ą¤—ą¤Ŗą„‚ą¤°'),
(27687, 'https://ror.org/034jfs648', 'en', 1, 'https://ror.org/034jfs648 MNEPU Academy ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠŠµŠ·Š°Š²ŠøŃŠøŠ¼Ń‹Š¹ Эколого-ŠŸŠ¾Š»ŠøŃ‚Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(27688, 'https://ror.org/034jwk961', 'pl', 1, 'https://ror.org/034jwk961 Wyższa Szkoła Wychowania Fizycznego i Turystyki w Białymstoku'),
(27689, 'https://ror.org/034k66c68', 'en', 1, 'https://ror.org/034k66c68 Yangon University Of Distance Education į€”į€į€±į€øį€žį€„į€ŗ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(27690, 'https://ror.org/034m42x03', 'en', 1, 'https://ror.org/034m42x03 Abraham Lincoln Presidential Library Foundation'),
(27691, 'https://ror.org/034mgds22', 'en', 1, 'https://ror.org/034mgds22 Siberian State University of Water Transport Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного транспорта'),
(27692, 'https://ror.org/034nbgh40', 'en', 1, 'https://ror.org/034nbgh40 Academy of Labour and Social Relations ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń‚Ń€ŃƒŠ“Š° Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(27693, 'https://ror.org/034teep98', 'no_lang_code', 1, 'https://ror.org/034teep98 SOMA Engineering (Czechia)'),
(27694, 'https://ror.org/034tqw466', 'en', 1, 'https://ror.org/034tqw466 Grozny State Oil Technical University named after Academician MD Millionshtchikov Грозненский Š³Š¾ŃŃƒŠ“арственный Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика М. Š”. ŠœŠøŠ»Š»ŠøŠ¾Š½Ń‰ŠøŠŗŠ¾Š²Š°'),
(27695, 'https://ror.org/034xkmw20', 'en', 1, 'https://ror.org/034xkmw20 Pamantasan ng Cebu University of Cebu'),
(27696, 'https://ror.org/035047r89', 'no_lang_code', 1, 'https://ror.org/035047r89 Hydrosystem Project (Czechia)'),
(27697, 'https://ror.org/0350qvj56', 'en', 1, 'https://ror.org/0350qvj56 Karshi State University Qarshi Davlat Universiteti'),
(27698, 'https://ror.org/0351dnm69', 'en', 1, 'https://ror.org/0351dnm69 American Antiquarian Society'),
(27699, 'https://ror.org/0351h0721', 'no_lang_code', 1, 'https://ror.org/0351h0721 ProSpon (Czechia)'),
(27700, 'https://ror.org/0351xae06', 'en', 1, 'https://ror.org/0351xae06 Torrens University Australia'),
(27701, 'https://ror.org/0351zfv36', 'en', 1, 'https://ror.org/0351zfv36 Surya University'),
(27702, 'https://ror.org/035367g48', 'no_lang_code', 1, 'https://ror.org/035367g48 Tomakomai Komazawa University č‹«å°ē‰§é§’ę¾¤å¤§å­¦'),
(27703, 'https://ror.org/0354d9t07', 'cs', 1, 'https://ror.org/0354d9t07 Nemocnice PodlesĆ­'),
(27704, 'https://ror.org/0357f5c77', 'en', 1, 'https://ror.org/0357f5c77 Bangkok Business College ą¹‚ąø£ąø‡ą¹€ąø£ąøµąø¢ąø™ąøąø£ąøøąø‡ą¹€ąø—ąøžąøąø²ąø£ąøšąø±ąøąøŠąøµąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(27705, 'https://ror.org/03592wg71', 'no_lang_code', 1, 'https://ror.org/03592wg71 Decomkov Praha (Czechia)'),
(27706, 'https://ror.org/0359yqb07', 'en', 1, 'https://ror.org/0359yqb07 Hawaii Seafood Council'),
(27707, 'https://ror.org/035b5r707', 'en', 1, 'https://ror.org/035b5r707 Essex County College'),
(27708, 'https://ror.org/035bxea77', 'en', 1, 'https://ror.org/035bxea77 Bunka Gakuen University ę–‡åŒ–å­¦åœ’å¤§å­¦'),
(27709, 'https://ror.org/035gqys29', 'en', 1, 'https://ror.org/035gqys29 Coastland University'),
(27710, 'https://ror.org/035h3f182', 'en', 1, 'https://ror.org/035h3f182 Moscow State Regional Socio-Humanitarian Institute'),
(27711, 'https://ror.org/035m5dp49', 'en', 1, 'https://ror.org/035m5dp49 Concord Free Public Library'),
(27712, 'https://ror.org/035qaq447', 'en', 1, 'https://ror.org/035qaq447 Yong In University ģš©ģøėŒ€ķ•™źµ'),
(27713, 'https://ror.org/035rzdj42', 'en', 1, 'https://ror.org/035rzdj42 University of Asmara'),
(27714, 'https://ror.org/035t6en21', 'en', 1, 'https://ror.org/035t6en21 Westfield Center for Historical Keyboard Studies'),
(27715, 'https://ror.org/035tbm153', 'en', 1, 'https://ror.org/035tbm153 North Star Museum of Boy Scouting and Girl Scouting'),
(27716, 'https://ror.org/035tsca78', 'en', 1, 'https://ror.org/035tsca78 Craft Contemporary'),
(27717, 'https://ror.org/035v8gz14', 'en', 1, 'https://ror.org/035v8gz14 Fifth Maine Regiment Museum'),
(27718, 'https://ror.org/035xy4n68', 'no_lang_code', 1, 'https://ror.org/035xy4n68 Jawa (Czechia)'),
(27719, 'https://ror.org/035yj9j43', 'id', 1, 'https://ror.org/035yj9j43 Universitas Gresik'),
(27720, 'https://ror.org/035z20t37', 'en', 1, 'https://ror.org/035z20t37 Chelyabinsk State Institute of Culture Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(27721, 'https://ror.org/035zypg15', 'en', 1, 'https://ror.org/035zypg15 Uttara University ą¦‰ą¦¤ą§ą¦¤ą¦°ą¦¾ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(27722, 'https://ror.org/0361pb971', 'en', 1, 'https://ror.org/0361pb971 CuriOdyssey'),
(27723, 'https://ror.org/03626nk78', 'en', 1, 'https://ror.org/03626nk78 Pamantasang Lungsod ng Urdaneta Urdaneta City University'),
(27724, 'https://ror.org/0362r6n51', 'en', 1, 'https://ror.org/0362r6n51 Kokand State Pedagogical Institute named after Mukimi Muqimiy nomidagi Qo''qon davlat pedagogika instituti'),
(27725, 'https://ror.org/0365deq57', 'en', 1, 'https://ror.org/0365deq57 University of Computer Sciences and Economics in Olsztyn WYŻSZA SZKOŁA INFORMATYKI I EKONOMII TWP W OLSZTYNIE'),
(27726, 'https://ror.org/0365emg19', 'en', 1, 'https://ror.org/0365emg19 Captain Avery Museum'),
(27727, 'https://ror.org/0367ee363', 'fr', 1, 'https://ror.org/0367ee363 Centre Hospitalier Universitaire Notre Dame des Secours مستؓفى سيدة Ų§Ł„Ł…Ų¹ŁˆŁ†Ų§ŲŖ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(27728, 'https://ror.org/0367q9f19', 'no_lang_code', 1, 'https://ror.org/0367q9f19 Shakespeare Theatre Company'),
(27729, 'https://ror.org/0367qb939', 'en', 1, 'https://ror.org/0367qb939 Titu Maiorescu University Universitatea Titu Maiorescu'),
(27730, 'https://ror.org/03697kk98', 'en', 1, 'https://ror.org/03697kk98 Intrepid Sea Air & Space Museum'),
(27731, 'https://ror.org/0369c2s29', 'en', 1, 'https://ror.org/0369c2s29 Maine Historical Society'),
(27732, 'https://ror.org/036b03a90', 'en', 1, 'https://ror.org/036b03a90 Al Yamamah University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŁ…Ų§Ł…Ų©'),
(27733, 'https://ror.org/036b8hr27', 'en', 1, 'https://ror.org/036b8hr27 Michigan State Police'),
(27734, 'https://ror.org/036cktz33', 'no_lang_code', 1, 'https://ror.org/036cktz33 Inco Engineering (Czechia)'),
(27735, 'https://ror.org/036cz4488', 'no_lang_code', 1, 'https://ror.org/036cz4488 Sudop Praha (Czechia)'),
(27736, 'https://ror.org/036d1w285', 'en', 1, 'https://ror.org/036d1w285 Academy of Fine Arts in Warsaw Akademia Sztuk Pięknych w Warszawie'),
(27737, 'https://ror.org/036d5d592', 'en', 1, 'https://ror.org/036d5d592 Butte-Silver Bow Public Archives'),
(27738, 'https://ror.org/036feze91', 'no_lang_code', 1, 'https://ror.org/036feze91 Miyagi Gakuin Women''s University 宮城学院儳子大学'),
(27739, 'https://ror.org/036fndg97', 'en', 1, 'https://ror.org/036fndg97 Madina Academy Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ł…ŲÆŁŠŁ†Ł‡'),
(27740, 'https://ror.org/036gxc260', 'en', 1, 'https://ror.org/036gxc260 Institute of Management, Marketing and Finance Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента, маркетинга Šø финансов'),
(27741, 'https://ror.org/036ppfa42', 'en', 1, 'https://ror.org/036ppfa42 Kenai Peninsula Borough'),
(27742, 'https://ror.org/036prgm77', 'en', 1, 'https://ror.org/036prgm77 Honghe University'),
(27743, 'https://ror.org/036pt7h44', 'en', 1, 'https://ror.org/036pt7h44 University Medical Center'),
(27744, 'https://ror.org/036s8jv96', 'en', 1, 'https://ror.org/036s8jv96 Historic Charleston Foundation'),
(27745, 'https://ror.org/036swew50', 'en', 1, 'https://ror.org/036swew50 Chiangrai College ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøŠąøµąø¢ąø‡ąø£ąø²ąø¢'),
(27746, 'https://ror.org/036swtt68', 'cs', 1, 'https://ror.org/036swtt68 České Ekologické Manažerské Centrum'),
(27747, 'https://ror.org/036vgbd10', 'en', 1, 'https://ror.org/036vgbd10 David Yellin College of Education המכללה לחינוך ע"ש דוד ילין'),
(27748, 'https://ror.org/036y50s64', 'en', 1, 'https://ror.org/036y50s64 University Press of Kentucky'),
(27749, 'https://ror.org/0372dx737', 'en', 1, 'https://ror.org/0372dx737 Wheelwright Museum of the American Indian'),
(27750, 'https://ror.org/0374ybm50', 'en', 1, 'https://ror.org/0374ybm50 Erie Canal Museum'),
(27751, 'https://ror.org/0375f2x73', 'pl', 1, 'https://ror.org/0375f2x73 Uczelnia Łazarskiego'),
(27752, 'https://ror.org/03761pf32', 'en', 1, 'https://ror.org/03761pf32 Euro Mediterranean University Evro-sredozemska univerza'),
(27753, 'https://ror.org/037732v94', 'en', 1, 'https://ror.org/037732v94 Central University'),
(27754, 'https://ror.org/0377t7h89', 'no_lang_code', 1, 'https://ror.org/0377t7h89 PrvnĆ­ ŽelezÔřskĆ” Společnost Kladno (Czechia)'),
(27755, 'https://ror.org/0378gm372', 'en', 1, 'https://ror.org/0378gm372 Hochschule RheinMain RheinMain University of Applied Sciences'),
(27756, 'https://ror.org/0378r5x41', 'en', 1, 'https://ror.org/0378r5x41 Tambov State Music and Pedagogical Institute named after S.V. Rachmaninov Š¢ŠŠœŠ‘ŠžŠ’Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠœŠ£Š—Š«ŠšŠŠ›Š¬ŠŠž-ŠŸŠ•Š”ŠŠ“ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ИМ. Š”.Š’. Š ŠŠ„ŠœŠŠŠ˜ŠŠžŠ’Š'),
(27757, 'https://ror.org/0379e1d13', 'no_lang_code', 1, 'https://ror.org/0379e1d13 Oseva Pro (Czechia)');
INSERT INTO `rors` VALUES
(27758, 'https://ror.org/037a1p293', 'id', 1, 'https://ror.org/037a1p293 Universitas Merdeka Pasuruan'),
(27759, 'https://ror.org/037bsar61', 'de', 1, 'https://ror.org/037bsar61 Bundeskriminalamt Federal Criminal Police Office'),
(27760, 'https://ror.org/037fds271', 'en', 1, 'https://ror.org/037fds271 Boxerwood Nature Center and Woodland Garden'),
(27761, 'https://ror.org/037gcmv13', 'en', 1, 'https://ror.org/037gcmv13 Siberian University of Consumer Cooperatives Дибирский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŠ¾Ń‚Ń€ŠµŠ±ŠøŃ‚ŠµŠ»ŃŒŃŠŗŠ¾Š¹ кооперации'),
(27762, 'https://ror.org/037gx5d02', 'en', 1, 'https://ror.org/037gx5d02 Yewon Arts University ģ˜ˆģ›ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(27763, 'https://ror.org/037gzsw41', 'en', 1, 'https://ror.org/037gzsw41 Robert S. Peabody Museum of Archaeology'),
(27764, 'https://ror.org/037mm8r94', 'en', 1, 'https://ror.org/037mm8r94 National Building Museum'),
(27765, 'https://ror.org/037r7e845', 'en', 1, 'https://ror.org/037r7e845 Institute of International Law, Economy, Humanitarian Sciences and Management named after K.V. Rossinskogo Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ•Š–Š”Š£ŠŠŠ ŠžŠ”ŠŠžŠ“Šž ŠŸŠ ŠŠ’Š, Š­ŠšŠžŠŠžŠœŠ˜ŠšŠ˜, Š“Š£ŠœŠŠŠ˜Š¢ŠŠ ŠŠ«Š„ ŠŠŠ£Šš И Š£ŠŸŠ ŠŠ’Š›Š•ŠŠ˜ŠÆ Š˜ŠœŠ•ŠŠ˜ К.Š’. Š ŠžŠ”Š”Š˜ŠŠ”ŠšŠžŠ“Šž'),
(27766, 'https://ror.org/037t55w20', 'en', 1, 'https://ror.org/037t55w20 American Writers Museum'),
(27767, 'https://ror.org/037thy319', 'id', 1, 'https://ror.org/037thy319 Kartini University Universitas Kartini'),
(27768, 'https://ror.org/037wmkw40', 'en', 1, 'https://ror.org/037wmkw40 Benguet State University'),
(27769, 'https://ror.org/037wmsn67', 'en', 1, 'https://ror.org/037wmsn67 Nagoya Sangyo University åå¤å±‹ē”£ę„­å¤§å­¦'),
(27770, 'https://ror.org/037wnwd29', 'no_lang_code', 1, 'https://ror.org/037wnwd29 Safina (Czechia)'),
(27771, 'https://ror.org/037wq3107', 'en', 1, 'https://ror.org/037wq3107 Henry Ford Museum'),
(27772, 'https://ror.org/037ykcx09', 'en', 1, 'https://ror.org/037ykcx09 Gollis University Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁˆŁ„Ų³'),
(27773, 'https://ror.org/037yy5v69', 'en', 1, 'https://ror.org/037yy5v69 Open University Malaysia Universiti Terbuka Malaysia é©¬ę„č„æäŗšå¼€ę”¾å¤§å­¦'),
(27774, 'https://ror.org/037zqsm37', 'en', 1, 'https://ror.org/037zqsm37 Nilai University Universiti Nilai'),
(27775, 'https://ror.org/0382vme49', 'en', 1, 'https://ror.org/0382vme49 Quality Leadership University Panama'),
(27776, 'https://ror.org/03866db80', 'en', 1, 'https://ror.org/03866db80 Kushiro Public University of Economics 釧路公立大学'),
(27777, 'https://ror.org/038840v63', 'cs', 1, 'https://ror.org/038840v63 HygienickĆ” stanice hlavnĆ­ho města Prahy'),
(27778, 'https://ror.org/038ahjw20', 'en', 1, 'https://ror.org/038ahjw20 Association for International Affairs'),
(27779, 'https://ror.org/038aqt498', 'en', 1, 'https://ror.org/038aqt498 Infrastructure University Kuala Lumpur Kolej Universiti Infrastruktur Kuala Lumpur'),
(27780, 'https://ror.org/038h9k518', 'en', 1, 'https://ror.org/038h9k518 Museum of History and Art'),
(27781, 'https://ror.org/038hwvh16', 'fr', 1, 'https://ror.org/038hwvh16 Ɖcole SupĆ©rieure des Affaires Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ų§Ł„ŁŠŲ© لادارة الاعمال'),
(27782, 'https://ror.org/038j0hg40', 'en', 1, 'https://ror.org/038j0hg40 Shelton History Center'),
(27783, 'https://ror.org/038mrg284', 'en', 1, 'https://ror.org/038mrg284 Dane County Library Service'),
(27784, 'https://ror.org/038nzs086', 'en', 1, 'https://ror.org/038nzs086 Orenburg State Pedagogical University ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27785, 'https://ror.org/038rep477', 'en', 1, 'https://ror.org/038rep477 Friedensau Adventist University Theologische Hochschule Friedensau'),
(27786, 'https://ror.org/038sdcw17', 'en', 1, 'https://ror.org/038sdcw17 Cyber University ć‚µć‚¤ćƒćƒ¼å¤§å­¦'),
(27787, 'https://ror.org/038t7hz69', 'en', 1, 'https://ror.org/038t7hz69 IB Euro-Caucasus University'),
(27788, 'https://ror.org/038vzfq40', 'en', 1, 'https://ror.org/038vzfq40 Tuvan State University Тувинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27789, 'https://ror.org/038xsq518', 'en', 1, 'https://ror.org/038xsq518 Lviv National Agrarian University Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Аграрний Університет'),
(27790, 'https://ror.org/0390yrq93', 'en', 1, 'https://ror.org/0390yrq93 Mariners'' Museum'),
(27791, 'https://ror.org/0391xbs96', 'en', 1, 'https://ror.org/0391xbs96 Hokkai School of Commerce åŒ—ęµ·å•†ē§‘å¤§å­¦'),
(27792, 'https://ror.org/0393qmm36', 'en', 1, 'https://ror.org/0393qmm36 Fuller Craft Museum'),
(27793, 'https://ror.org/0395g0930', 'en', 1, 'https://ror.org/0395g0930 Toho College of Music ę±é‚¦éŸ³ę„½å¤§å­¦'),
(27794, 'https://ror.org/03967fe87', 'en', 1, 'https://ror.org/03967fe87 Tainan University of Technology å°å—ę‡‰ē”Øē§‘ęŠ€å¤§å­ø'),
(27795, 'https://ror.org/0398ex766', 'en', 1, 'https://ror.org/0398ex766 Saint Petersburg State University of Economics Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ сервиса Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(27796, 'https://ror.org/039aamd19', 'en', 1, 'https://ror.org/039aamd19 Nihon Pharmaceutical University ę—„ęœ¬č–¬ē§‘å¤§å­¦'),
(27797, 'https://ror.org/039akp542', 'en', 1, 'https://ror.org/039akp542 Oleksandr Dovzhenko Hlukhiv National Pedagogical University Š“Š»ŃƒŃ…Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени АлексанГра Довженко Š“Š»ŃƒŃ…Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠžŠ»ŠµŠŗŃŠ°Š½Š“Ń€Š° Довженка'),
(27798, 'https://ror.org/039avsx35', 'en', 1, 'https://ror.org/039avsx35 Georgian Institute of Public Affairs įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒ–įƒįƒ’įƒįƒ“įƒįƒ”įƒ‘įƒ įƒ˜įƒ• įƒ”įƒįƒ„įƒ›įƒ”įƒ—įƒ ინეტიტუტი'),
(27799, 'https://ror.org/039bc5x74', 'en', 1, 'https://ror.org/039bc5x74 Belhaven University'),
(27800, 'https://ror.org/039byrc41', 'en', 1, 'https://ror.org/039byrc41 Herring Gut Learning Center'),
(27801, 'https://ror.org/039dz9590', 'en', 1, 'https://ror.org/039dz9590 Tianjin Conservatory of Music å¤©ę“„éŸ³ä¹å­¦é™¢'),
(27802, 'https://ror.org/039fgyk85', 'en', 1, 'https://ror.org/039fgyk85 Hanshin University ķ•œģ‹ ėŒ€ķ•™źµ'),
(27803, 'https://ror.org/039hcn695', 'en', 1, 'https://ror.org/039hcn695 Nalanda Open University ą¤Øą¤¾ą¤²ą¤Øą„ą¤¦ą¤¾ ą¤–ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27804, 'https://ror.org/039jmdw40', 'en', 1, 'https://ror.org/039jmdw40 America Bangladesh University আমেরিকা বাংলাদেশ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(27805, 'https://ror.org/039k5fe46', 'en', 1, 'https://ror.org/039k5fe46 Japan University of Economics ę—„ęœ¬ēµŒęøˆå¤§å­¦'),
(27806, 'https://ror.org/039p35x89', 'en', 1, 'https://ror.org/039p35x89 Academy of American Franciscan History'),
(27807, 'https://ror.org/039p5s648', 'en', 1, 'https://ror.org/039p5s648 Assam Down Town University'),
(27808, 'https://ror.org/039pzne76', 'en', 1, 'https://ror.org/039pzne76 Beirut Islamic University الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© في لبنان'),
(27809, 'https://ror.org/039qk4d23', 'en', 1, 'https://ror.org/039qk4d23 Ella Sharp Museum'),
(27810, 'https://ror.org/039r94y94', 'en', 1, 'https://ror.org/039r94y94 Ulyanovsk Higher Civil Aviation School Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ авиационное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ гражГанской авиации'),
(27811, 'https://ror.org/039rewm17', 'en', 1, 'https://ror.org/039rewm17 Kasem Bundit University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøąø©ąø”ąøšąø±ąø“ąø‘ąø“ąø•'),
(27812, 'https://ror.org/039sshh33', 'no_lang_code', 1, 'https://ror.org/039sshh33 Children of the Sea Na Kama Kai'),
(27813, 'https://ror.org/039t4sn90', 'en', 1, 'https://ror.org/039t4sn90 Soegijapranata Catholic University Universitas Katolik Soegijapranata'),
(27814, 'https://ror.org/039wqxn34', 'en', 1, 'https://ror.org/039wqxn34 Cherkasy Institute of Fire Safety named after Chornobyl Heroes of National University of Civil Defence of Ukraine'),
(27815, 'https://ror.org/039xc0449', 'no_lang_code', 1, 'https://ror.org/039xc0449 Ecofluid Group (Czechia)'),
(27816, 'https://ror.org/039xekb14', 'en', 1, 'https://ror.org/039xekb14 Amman Arab University Ų¬Ų§Ł…Ų¹Ų© عمان Ų§Ł„Ų¹Ų±ŲØŁŠŲ© للدراسات Ų§Ł„Ų¹Ł„ŁŠŲ§ الخاصة'),
(27817, 'https://ror.org/039xv0h05', 'en', 1, 'https://ror.org/039xv0h05 Xi''an Conservatory of Music č„æå®‰éŸ³ä¹å­¦é™¢'),
(27818, 'https://ror.org/03a0cvz60', 'en', 1, 'https://ror.org/03a0cvz60 Hsuan Chuang University ēŽ„å„˜å¤§å­ø'),
(27819, 'https://ror.org/03a2jdj94', 'en', 1, 'https://ror.org/03a2jdj94 Heritage Museums and Gardens'),
(27820, 'https://ror.org/03a2yg438', 'id', 1, 'https://ror.org/03a2yg438 Institut Seni Budaya Indonesia Bandung'),
(27821, 'https://ror.org/03a367103', 'en', 1, 'https://ror.org/03a367103 Sandusky Library'),
(27822, 'https://ror.org/03a586v96', 'no_lang_code', 1, 'https://ror.org/03a586v96 Best - Business (Czechia)'),
(27823, 'https://ror.org/03a5bb278', 'en', 1, 'https://ror.org/03a5bb278 Kent State University, East Liverpool'),
(27824, 'https://ror.org/03a6cpb51', 'en', 1, 'https://ror.org/03a6cpb51 University of Goma UniversitƩ de goma'),
(27825, 'https://ror.org/03a752p22', 'en', 1, 'https://ror.org/03a752p22 Department of Land and Natural Resources'),
(27826, 'https://ror.org/03a7ksb41', 'en', 1, 'https://ror.org/03a7ksb41 Birsa Agricultural University बिरसा ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27827, 'https://ror.org/03a8q7p75', 'en', 1, 'https://ror.org/03a8q7p75 Foreign Trade University ĐẔi hį»c Ngoįŗ”i Thʰʔng'),
(27828, 'https://ror.org/03a8rwx10', 'en', 1, 'https://ror.org/03a8rwx10 Universitas YARSI Yarsi University'),
(27829, 'https://ror.org/03aet8853', 'no_lang_code', 1, 'https://ror.org/03aet8853 Tokai Gakuen University ę±ęµ·å­¦åœ’å¤§å­¦'),
(27830, 'https://ror.org/03ag2jv25', 'en', 1, 'https://ror.org/03ag2jv25 Flint Public Library'),
(27831, 'https://ror.org/03ah0ss28', 'en', 1, 'https://ror.org/03ah0ss28 Denver Public Library'),
(27832, 'https://ror.org/03aj6fx58', 'en', 1, 'https://ror.org/03aj6fx58 Far Eastern State Technical Fisheries University'),
(27833, 'https://ror.org/03ajsbp04', 'en', 1, 'https://ror.org/03ajsbp04 Accra Institute of Technology'),
(27834, 'https://ror.org/03an54s92', 'en', 1, 'https://ror.org/03an54s92 Summit County Juvenile Court'),
(27835, 'https://ror.org/03an7d434', 'en', 1, 'https://ror.org/03an7d434 Hyperion University Universitatea Hyperion din Bucureşti'),
(27836, 'https://ror.org/03apehb04', 'en', 1, 'https://ror.org/03apehb04 Muncie Public Library'),
(27837, 'https://ror.org/03aptyv62', 'en', 1, 'https://ror.org/03aptyv62 Nagano University 長野大学'),
(27838, 'https://ror.org/03aqgee13', 'en', 1, 'https://ror.org/03aqgee13 Isfahan University of Art دانؓگاه هنر اصفهان'),
(27839, 'https://ror.org/03avqt992', 'en', 1, 'https://ror.org/03avqt992 Nizhny Novgorod State University of Architecture and Civil Engineering ŠŠ˜Š–Š•Š“ŠžŠ ŠžŠ”Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŠ Š„Š˜Š¢Š•ŠšŠ¢Š£Š ŠŠž-Š”Š¢Š ŠžŠ˜Š¢Š•Š›Š¬ŠŠ«Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(27840, 'https://ror.org/03ayd8t59', 'en', 1, 'https://ror.org/03ayd8t59 Qidong Liver Cancer Prevention Research'),
(27841, 'https://ror.org/03b2rjh82', 'en', 1, 'https://ror.org/03b2rjh82 Marine Conservation Alliance'),
(27842, 'https://ror.org/03b3s2n43', 'en', 1, 'https://ror.org/03b3s2n43 Piedmont Community College'),
(27843, 'https://ror.org/03b4bdb78', 'no_lang_code', 1, 'https://ror.org/03b4bdb78 BLOCK (Czechia)'),
(27844, 'https://ror.org/03b5fdt21', 'no_lang_code', 1, 'https://ror.org/03b5fdt21 Juta (Czechia)'),
(27845, 'https://ror.org/03b657f73', 'en', 1, 'https://ror.org/03b657f73 Kio University 畿央大学'),
(27846, 'https://ror.org/03bch0x53', 'en', 1, 'https://ror.org/03bch0x53 Oakland Museum of California'),
(27847, 'https://ror.org/03bdv1r55', 'en', 1, 'https://ror.org/03bdv1r55 Hadassah Academic College מכללה ××§×“×ž×™×Ŗ הדהה ×™×Ø×•×©×œ×™×'),
(27848, 'https://ror.org/03bej0y93', 'en', 1, 'https://ror.org/03bej0y93 Yu Da University č‚²é”ē§‘ęŠ€å¤§å­ø'),
(27849, 'https://ror.org/03bg9er42', 'en', 1, 'https://ror.org/03bg9er42 New York Transit Museum'),
(27850, 'https://ror.org/03bha2k34', 'en', 1, 'https://ror.org/03bha2k34 University of Medical Technology Mandalay'),
(27851, 'https://ror.org/03bhnt079', 'en', 1, 'https://ror.org/03bhnt079 Penobscot River Restoration Trust'),
(27852, 'https://ror.org/03bj7cd20', 'en', 1, 'https://ror.org/03bj7cd20 Liberty Memorial'),
(27853, 'https://ror.org/03bktwf13', 'no_lang_code', 1, 'https://ror.org/03bktwf13 Aichi Gakusen University ę„›ēŸ„å­¦ę³‰å¤§å­¦'),
(27854, 'https://ror.org/03bnp9h65', 'en', 1, 'https://ror.org/03bnp9h65 Islamic Azad University, Bandar Anzali Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد Ų§Ł†Ų²Ł„ŪŒ'),
(27855, 'https://ror.org/03bs4te22', 'no_lang_code', 1, 'https://ror.org/03bs4te22 Mizan Tepi University'),
(27856, 'https://ror.org/03bvtqh46', 'en', 1, 'https://ror.org/03bvtqh46 Department of Embryology'),
(27857, 'https://ror.org/03bwsp312', 'en', 1, 'https://ror.org/03bwsp312 Kobe Shoin Women''s University ē„žęˆøę¾č”­å„³å­å­¦é™¢å¤§å­¦'),
(27858, 'https://ror.org/03bxk9355', 'no_lang_code', 1, 'https://ror.org/03bxk9355 Syktyvkar State University Дыктывкарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27859, 'https://ror.org/03bya9897', 'en', 1, 'https://ror.org/03bya9897 Seiwa University ęø…å’Œå¤§å­¦'),
(27860, 'https://ror.org/03byfn584', 'en', 1, 'https://ror.org/03byfn584 Academy of Arts of Uzbekistan Oā€˜zbekiston Badiiy akademiyasi ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š² Узбекистана'),
(27861, 'https://ror.org/03c0qqf32', 'en', 1, 'https://ror.org/03c0qqf32 Frankfurt University of Music and Performing Arts Hochschule für Musik und Darstellende Kunst Frankfurt am Main'),
(27862, 'https://ror.org/03c0rtn49', 'en', 1, 'https://ror.org/03c0rtn49 Maryland Historical Society'),
(27863, 'https://ror.org/03c19jm06', 'en', 1, 'https://ror.org/03c19jm06 Universiteti i Elbasanit University of Elbasan'),
(27864, 'https://ror.org/03c21xx79', 'en', 1, 'https://ror.org/03c21xx79 Malikussaleh University Universitas Malikussaleh'),
(27865, 'https://ror.org/03c6e8r26', 'en', 1, 'https://ror.org/03c6e8r26 Dayeh University 大葉大學'),
(27866, 'https://ror.org/03c7trt86', 'en', 1, 'https://ror.org/03c7trt86 Center for Social and Environmental Stewardship'),
(27867, 'https://ror.org/03c824k52', 'en', 1, 'https://ror.org/03c824k52 Samarkand State Medical Institute Š”ŠŠœŠŠ ŠšŠŠŠ”Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(27868, 'https://ror.org/03c8sfz84', 'en', 1, 'https://ror.org/03c8sfz84 Hanoi Architectural University TrĘ°į»ng ĐẔi hį»c Kiįŗæn trĆŗc HĆ  Nį»™i'),
(27869, 'https://ror.org/03cb6na95', 'en', 1, 'https://ror.org/03cb6na95 University of International Golden Indonesia'),
(27870, 'https://ror.org/03cc55r59', 'en', 1, 'https://ror.org/03cc55r59 SveučiliÅ”ni Centar za Protestantsku Teologiju Matija Vlačić Ilirik University Center for Protestant Theology Matthias Flacius Illyricus'),
(27871, 'https://ror.org/03cd9qk80', 'no_lang_code', 1, 'https://ror.org/03cd9qk80 Heluz (Czechia)'),
(27872, 'https://ror.org/03cde6p20', 'en', 1, 'https://ror.org/03cde6p20 Phillips Exeter Academy'),
(27873, 'https://ror.org/03cg3mb71', 'en', 1, 'https://ror.org/03cg3mb71 Moscow Humanitarian Institute of E. Dashkova Московский Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š•.Š . Š”Š°ŃˆŠŗŠ¾Š²Š¾Š¹'),
(27874, 'https://ror.org/03cg4ry50', 'no_lang_code', 1, 'https://ror.org/03cg4ry50 Eltodo (Czechia)'),
(27875, 'https://ror.org/03chcr159', 'en', 1, 'https://ror.org/03chcr159 Vision Maker Media'),
(27876, 'https://ror.org/03chx4004', 'en', 1, 'https://ror.org/03chx4004 DeKalb Library Foundation'),
(27877, 'https://ror.org/03cjmb844', 'no_lang_code', 1, 'https://ror.org/03cjmb844 Fukuoka Jo Gakuin University ē¦å²”å„³å­¦é™¢å¤§å­¦'),
(27878, 'https://ror.org/03ckbnn72', 'en', 1, 'https://ror.org/03ckbnn72 Transnational Law and Business University źµ­ģ œė²•ė„ ź²½ģ˜ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(27879, 'https://ror.org/03ckcj843', 'en', 1, 'https://ror.org/03ckcj843 Perm State Institute of Arts and Culture ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š˜ŃŠŗŃƒŃŃŃ‚Š²Š° Šø ŠšŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(27880, 'https://ror.org/03cmqyv16', 'cs', 1, 'https://ror.org/03cmqyv16 StředočeskĆ© Muzeum v RoztokĆ”ch u Prahy'),
(27881, 'https://ror.org/03cpgdf16', 'en', 1, 'https://ror.org/03cpgdf16 National Academy of Management ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(27882, 'https://ror.org/03ct11z80', 'en', 1, 'https://ror.org/03ct11z80 Scurry County Museum'),
(27883, 'https://ror.org/03cv1mx62', 'id', 1, 'https://ror.org/03cv1mx62 Universitas Islam 45 Bekasi'),
(27884, 'https://ror.org/03cvm1z63', 'en', 1, 'https://ror.org/03cvm1z63 Office of the Mississippi Secretary of State'),
(27885, 'https://ror.org/03cvxzw02', 'en', 1, 'https://ror.org/03cvxzw02 Rajamangala University of Technology Tawan-ok ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø•ąø°ąø§ąø±ąø™ąø­ąø­ąø'),
(27886, 'https://ror.org/03cyyx472', 'no_lang_code', 1, 'https://ror.org/03cyyx472 Katahdin Productions'),
(27887, 'https://ror.org/03d2mp652', 'en', 1, 'https://ror.org/03d2mp652 Taganrog Institute of Management and Economics Частное Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Таганрогский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(27888, 'https://ror.org/03d5rbb25', 'en', 1, 'https://ror.org/03d5rbb25 Pamantasang Normal ng Pilipinas Philippine Normal University'),
(27889, 'https://ror.org/03d7p8g51', 'en', 1, 'https://ror.org/03d7p8g51 Netanya Academic College ŁƒŁ„ŁŠŲ© Ł†ŲŖŲ§Ł†ŁŠŲ§ Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(27890, 'https://ror.org/03d88a580', 'en', 1, 'https://ror.org/03d88a580 Marin Barleti University Universiteti Marin Barleti'),
(27891, 'https://ror.org/03d8nmh82', 'en', 1, 'https://ror.org/03d8nmh82 Kameshwar Singh Darbhanga Sanskrit University ą¤•ą¤¾ą¤®ą„‡ą¤¶ą„ą¤µą¤° सिंह दरभंगा ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27892, 'https://ror.org/03d94a118', 'no_lang_code', 1, 'https://ror.org/03d94a118 SatisGeo (Czechia)'),
(27893, 'https://ror.org/03dbkxb13', 'en', 1, 'https://ror.org/03dbkxb13 Erie MetroParks'),
(27894, 'https://ror.org/03dc0dy65', 'en', 1, 'https://ror.org/03dc0dy65 Kashan University of Medical Sciences'),
(27895, 'https://ror.org/03dcvf827', 'en', 1, 'https://ror.org/03dcvf827 Beykent University Beykent Üniversitesi'),
(27896, 'https://ror.org/03dd8b657', 'en', 1, 'https://ror.org/03dd8b657 Mohi-ud-Din Islamic University Ł…Ų­ŪŒ Ų§Ł„ŲÆŪŒŁ† Ų§Ų³Ł„Ų§Ł…ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒŪ”'),
(27897, 'https://ror.org/03decxd42', 'no_lang_code', 1, 'https://ror.org/03decxd42 Software602 (Czechia)'),
(27898, 'https://ror.org/03dgxrg98', 'en', 1, 'https://ror.org/03dgxrg98 Germanna Virginia Community College'),
(27899, 'https://ror.org/03dhz6n86', 'en', 1, 'https://ror.org/03dhz6n86 Kanagawa University of Human Services ē„žå„ˆå·ēœŒē«‹äæå„ē¦ē„‰å¤§å­¦'),
(27900, 'https://ror.org/03dj8sp02', 'en', 1, 'https://ror.org/03dj8sp02 Providence Montana Health Foundation'),
(27901, 'https://ror.org/03djm2720', 'en', 1, 'https://ror.org/03djm2720 Siberian State Technological University Дибирский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27902, 'https://ror.org/03dmxq167', 'no_lang_code', 1, 'https://ror.org/03dmxq167 GaREP (Czechia)'),
(27903, 'https://ror.org/03dr26375', 'en', 1, 'https://ror.org/03dr26375 Jinwen University of Science and Technology ę™Æę–‡ē§‘ęŠ€å¤§å­ø'),
(27904, 'https://ror.org/03dv91853', 'en', 1, 'https://ror.org/03dv91853 Dortmund University of Applied Sciences and Arts Fachhochschule Dortmund'),
(27905, 'https://ror.org/03dw9f533', 'pl', 1, 'https://ror.org/03dw9f533 Warszawska Wyższa Szkoła Humanistyczna im. Bolesława Prusa'),
(27906, 'https://ror.org/03dwyrh96', 'en', 1, 'https://ror.org/03dwyrh96 Rocky Mount Museum'),
(27907, 'https://ror.org/03dxh7253', 'id', 1, 'https://ror.org/03dxh7253 Universitas Bojonegoro'),
(27908, 'https://ror.org/03dxr8478', 'en', 1, 'https://ror.org/03dxr8478 Farallones Marine Sanctuary Association'),
(27909, 'https://ror.org/03dy9v459', 'en', 1, 'https://ror.org/03dy9v459 Fan Noli University Universiteti "Fan S. Noli"'),
(27910, 'https://ror.org/03e0h3d81', 'en', 1, 'https://ror.org/03e0h3d81 Bansomdejchaopraya Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøšą¹‰ąø²ąø™ąøŖąø”ą¹€ąø”ą¹‡ąøˆą¹€ąøˆą¹‰ąø²ąøžąø£ąø°ąø¢ąø²'),
(27911, 'https://ror.org/03e1ymy32', 'en', 1, 'https://ror.org/03e1ymy32 Sorbonne University Abu Dhabi Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲ±ŲØŁˆŁ† أبوظبي'),
(27912, 'https://ror.org/03e2ja558', 'en', 1, 'https://ror.org/03e2ja558 Togliatti State University Š¢Š¾Š»ŃŒŃŃ‚Ń‚ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27913, 'https://ror.org/03e6rv013', 'en', 1, 'https://ror.org/03e6rv013 Beaconhouse National University ŲØŪŒŚ©Ł† ہاؤس Ł†ŪŒŲ“Ł†Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(27914, 'https://ror.org/03e7c0529', 'en', 1, 'https://ror.org/03e7c0529 Ridgewood Public Schools'),
(27915, 'https://ror.org/03e8pcr67', 'cs', 1, 'https://ror.org/03e8pcr67 KrajskÔ HygienickÔ Stanice Plzeňského Kraje se Sídlem v Plzni'),
(27916, 'https://ror.org/03e99kh24', 'en', 1, 'https://ror.org/03e99kh24 Al-Aqsa University Ų¬Ų§Ł…Ų¹Ų© الأقصى'),
(27917, 'https://ror.org/03eczrc37', 'en', 1, 'https://ror.org/03eczrc37 Dawat University ŲÆ دعوت Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(27918, 'https://ror.org/03ef2km18', 'no_lang_code', 1, 'https://ror.org/03ef2km18 SBP Consult'),
(27919, 'https://ror.org/03efg7b93', 'no_lang_code', 1, 'https://ror.org/03efg7b93 The Egyptian General Company for Tourism and Hotels (Egypt) ايجوث - Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© العامة Ł„Ł„Ų³ŁŠŲ§Ų­Ų© ŁˆŲ§Ł„ŁŁ†Ų§ŲÆŁ‚'),
(27920, 'https://ror.org/03egfpm06', 'en', 1, 'https://ror.org/03egfpm06 Institute of Business Administration Karachi Ų§Ł†Ų³Ł¹ŁŠŁ¹ŁŠŁˆŁ¹ آف بزنس Ų§ŁŠŚˆŁ…Ł†Ų³Ł¹Ų±ŁŠŲ“Ł†'),
(27921, 'https://ror.org/03ekmr487', 'en', 1, 'https://ror.org/03ekmr487 Morgan Library and Museum'),
(27922, 'https://ror.org/03em3tg48', 'en', 1, 'https://ror.org/03em3tg48 Czech Concrete Society'),
(27923, 'https://ror.org/03emyn761', 'en', 1, 'https://ror.org/03emyn761 Radio Diaries'),
(27924, 'https://ror.org/03enayd48', 'en', 1, 'https://ror.org/03enayd48 Perm State Agricultural Academy ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрно-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27925, 'https://ror.org/03enrvz51', 'cs', 1, 'https://ror.org/03enrvz51 NĆ”rodnĆ­ Ústav pro VzdělĆ”vĆ”nĆ­'),
(27926, 'https://ror.org/03evcb553', 'en', 1, 'https://ror.org/03evcb553 Chechen State Pedagogical Institute Чеченский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(27927, 'https://ror.org/03evnn851', 'en', 1, 'https://ror.org/03evnn851 Fairbanks Museum and Planetarium'),
(27928, 'https://ror.org/03ew6av42', 'en', 1, 'https://ror.org/03ew6av42 Arab Community Center for Economic and Social Services'),
(27929, 'https://ror.org/03ewepe58', 'en', 1, 'https://ror.org/03ewepe58 Al-Azhar University Universitas Al-Azhar'),
(27930, 'https://ror.org/03ewvg219', 'en', 1, 'https://ror.org/03ewvg219 International Institute of Hotel Management and Tourism ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гостиничного менеГжмента Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(27931, 'https://ror.org/03ewyw715', 'en', 1, 'https://ror.org/03ewyw715 Jose Rizal Memorial State University'),
(27932, 'https://ror.org/03f059y22', 'en', 1, 'https://ror.org/03f059y22 Institute of Andean Studies'),
(27933, 'https://ror.org/03f0pkh33', 'en', 1, 'https://ror.org/03f0pkh33 Novosibirsk State University of Economics and Management Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ ŠŠ˜ŠŠ„'),
(27934, 'https://ror.org/03f18y477', 'en', 1, 'https://ror.org/03f18y477 Latvian Academy of Culture Latvijas Kulturas akademija'),
(27935, 'https://ror.org/03f31yy77', 'en', 1, 'https://ror.org/03f31yy77 California African American Museum'),
(27936, 'https://ror.org/03f4hkk83', 'en', 1, 'https://ror.org/03f4hkk83 Rutherford B. Hayes Presidential Center'),
(27937, 'https://ror.org/03f82ns94', 'en', 1, 'https://ror.org/03f82ns94 Tippecanoe County Historical Association'),
(27938, 'https://ror.org/03fbdat12', 'en', 1, 'https://ror.org/03fbdat12 Greenwich University'),
(27939, 'https://ror.org/03fcx9267', 'en', 1, 'https://ror.org/03fcx9267 Idaho Department of Fish and Game'),
(27940, 'https://ror.org/03ffqk344', 'en', 1, 'https://ror.org/03ffqk344 Coastal Georgia Historical Society'),
(27941, 'https://ror.org/03ffvb852', 'en', 1, 'https://ror.org/03ffvb852 Jaramogi Oginga Odinga University of Science and Technology'),
(27942, 'https://ror.org/03fgk0a27', 'en', 1, 'https://ror.org/03fgk0a27 United Methodist University'),
(27943, 'https://ror.org/03fgpgg24', 'en', 1, 'https://ror.org/03fgpgg24 Putnam Museum'),
(27944, 'https://ror.org/03fmejp65', 'en', 1, 'https://ror.org/03fmejp65 Norfolk Academy'),
(27945, 'https://ror.org/03fqmz304', 'en', 1, 'https://ror.org/03fqmz304 European University of Bangladesh ইউরোপিয়ান ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(27946, 'https://ror.org/03fvscn16', 'en', 1, 'https://ror.org/03fvscn16 Okinawa Prefectural University of Arts ę²–ēø„ēœŒē«‹čŠøč”“å¤§å­¦'),
(27947, 'https://ror.org/03fvtf211', 'en', 1, 'https://ror.org/03fvtf211 Institute for Structural Policy'),
(27948, 'https://ror.org/03fws8b96', 'en', 1, 'https://ror.org/03fws8b96 Amur State University ŠŠ¼ŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27949, 'https://ror.org/03fx09x73', 'en', 1, 'https://ror.org/03fx09x73 Shaoyang University'),
(27950, 'https://ror.org/03fxpr782', 'en', 1, 'https://ror.org/03fxpr782 North-Caucasian State Institute of Arts Деверо-Кавказский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(27951, 'https://ror.org/03g1eje15', 'en', 1, 'https://ror.org/03g1eje15 Siberian Independent Institute Дибирский независимый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(27952, 'https://ror.org/03g5gja16', 'id', 1, 'https://ror.org/03g5gja16 Universitas Jayabaya'),
(27953, 'https://ror.org/03g873n36', 'en', 1, 'https://ror.org/03g873n36 Pacific University Oregon'),
(27954, 'https://ror.org/03g8fqe42', 'id', 1, 'https://ror.org/03g8fqe42 Universitas Mpu Tantular'),
(27955, 'https://ror.org/03ga61755', 'id', 1, 'https://ror.org/03ga61755 Universitas Bandar Lampung'),
(27956, 'https://ror.org/03gb3sn92', 'no_lang_code', 1, 'https://ror.org/03gb3sn92 Dr. Balasaheb Sawant Konkan Krishi Vidyapeeth'),
(27957, 'https://ror.org/03gdf8x58', 'en', 1, 'https://ror.org/03gdf8x58 Şifa University Şifa Üniversitesi'),
(27958, 'https://ror.org/03gf02c22', 'en', 1, 'https://ror.org/03gf02c22 Folkwang University of the Arts Folkwang Universität der Künste'),
(27959, 'https://ror.org/03gghxt23', 'en', 1, 'https://ror.org/03gghxt23 Pacific Islands Fisheries Group'),
(27960, 'https://ror.org/03gn53446', 'id', 1, 'https://ror.org/03gn53446 Universitas Setia Budi'),
(27961, 'https://ror.org/03gpmrn65', 'en', 1, 'https://ror.org/03gpmrn65 Waterloo Public Library'),
(27962, 'https://ror.org/03gqevz94', 'en', 1, 'https://ror.org/03gqevz94 Herguan University'),
(27963, 'https://ror.org/03gqgr248', 'en', 1, 'https://ror.org/03gqgr248 New Rochelle Public Library'),
(27964, 'https://ror.org/03gqzqb15', 'en', 1, 'https://ror.org/03gqzqb15 Louisiana Department of Wildlife and Fisheries'),
(27965, 'https://ror.org/03grptj54', 'en', 1, 'https://ror.org/03grptj54 Federal Penitentiary Service Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба ŠøŃŠæŠ¾Š»Š½ŠµŠ½ŠøŃ наказаний'),
(27966, 'https://ror.org/03gs0q910', 'en', 1, 'https://ror.org/03gs0q910 Shri Jagdishprasad Jhabarmal Tibrewala University ą¤¶ą„ą¤°ą„€ ą¤œą¤—ą¤¦ą„€ą¤¶ą¤Ŗą„ą¤°ą¤øą¤¾ą¤¦ ą¤ą¤¾ą¤¬ą¤°ą¤®ą¤² ą¤Ÿą¤æą¤¬ą„œą„‡ą¤µą¤¾ą¤²ą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(27967, 'https://ror.org/03gsd6w61', 'en', 1, 'https://ror.org/03gsd6w61 National University of Saint Anthony the Abbot in Cuzco Universidad Nacional de San Antonio Abad del Cusco'),
(27968, 'https://ror.org/03gshtw15', 'no_lang_code', 1, 'https://ror.org/03gshtw15 Global Village Media'),
(27969, 'https://ror.org/03gskda23', 'en', 1, 'https://ror.org/03gskda23 LUM Jean Monnet University Libera UniversitĆ  Mediterranea'),
(27970, 'https://ror.org/03gsvvm69', 'no_lang_code', 1, 'https://ror.org/03gsvvm69 Nagoya Gakuin University 名古屋学院大学'),
(27971, 'https://ror.org/03gveh102', 'en', 1, 'https://ror.org/03gveh102 University of Wisconsin–Fond du Lac'),
(27972, 'https://ror.org/03gvw6m91', 'en', 1, 'https://ror.org/03gvw6m91 Higher Institute of Business Administration المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ لادارة الاعمال'),
(27973, 'https://ror.org/03gz4ds16', 'no_lang_code', 1, 'https://ror.org/03gz4ds16 ÚRS Praha (Czechia)'),
(27974, 'https://ror.org/03gz88214', 'en', 1, 'https://ror.org/03gz88214 University of Medicine Mandalay į€™į€”į€¹į€į€œį€±į€øį€†į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(27975, 'https://ror.org/03h43ff92', 'cs', 1, 'https://ror.org/03h43ff92 Association of Chemical Industry of the Czech Republic Svaz chemického průmyslu České republiky'),
(27976, 'https://ror.org/03h67v482', 'en', 1, 'https://ror.org/03h67v482 Orsk Humanitarian Technology Institute ŠžŃ€ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(27977, 'https://ror.org/03h79eg54', 'en', 1, 'https://ror.org/03h79eg54 Wallingford Public Library'),
(27978, 'https://ror.org/03h7hxc46', 'no_lang_code', 1, 'https://ror.org/03h7hxc46 OEZ (Czechia)'),
(27979, 'https://ror.org/03h8sa373', 'en', 1, 'https://ror.org/03h8sa373 Osmaniye Korkut Ata University Osmaniye Korkut Ata Üniversitesi'),
(27980, 'https://ror.org/03hakcq28', 'en', 1, 'https://ror.org/03hakcq28 Qarshi University Ł‚Ų±Ų“ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(27981, 'https://ror.org/03hamks61', 'en', 1, 'https://ror.org/03hamks61 American University of the Caribbean'),
(27982, 'https://ror.org/03hbktk11', 'no_lang_code', 1, 'https://ror.org/03hbktk11 GiTy (Czechia)'),
(27983, 'https://ror.org/03hbved79', 'en', 1, 'https://ror.org/03hbved79 WSPIA University of Rzeszow Wyższa Szkoła Prawa i Administracji Rzeszów-Przemyśl'),
(27984, 'https://ror.org/03hc2rf16', 'en', 1, 'https://ror.org/03hc2rf16 Metropolitan Indianapolis Public Broadcasting'),
(27985, 'https://ror.org/03hc6qf46', 'en', 1, 'https://ror.org/03hc6qf46 Historic Cherry Hill'),
(27986, 'https://ror.org/03hcakg70', 'en', 1, 'https://ror.org/03hcakg70 Pushkin State Russian language Institute Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŃƒŃŃŠŗŠ¾Š³Š¾ ŃŠ·Ń‹ŠŗŠ° им. А.Š”. Пушкина'),
(27987, 'https://ror.org/03hd23385', 'en', 1, 'https://ror.org/03hd23385 Sokhumi State University ÕÕøÖ‚Õ­ÕøÖ‚Õ“Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ įƒ”įƒįƒ®įƒ£įƒ›įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(27988, 'https://ror.org/03hdcss70', 'cs', 1, 'https://ror.org/03hdcss70 KrajskĆ” ZdravotnĆ­'),
(27989, 'https://ror.org/03hgqv564', 'en', 1, 'https://ror.org/03hgqv564 Association of African American Museums'),
(27990, 'https://ror.org/03hja9k84', 'en', 1, 'https://ror.org/03hja9k84 Fuji Women''s University 藤儳子大学'),
(27991, 'https://ror.org/03hkga097', 'en', 1, 'https://ror.org/03hkga097 Central Academy of Drama äø­å¤®ęˆå‰§å­¦é™¢'),
(27992, 'https://ror.org/03hmxxh50', 'en', 1, 'https://ror.org/03hmxxh50 Czech RE Agency'),
(27993, 'https://ror.org/03hn03h23', 'fr', 1, 'https://ror.org/03hn03h23 UniversitĆ© La Sagesse Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŁƒŁ…Ų©'),
(27994, 'https://ror.org/03hnckv05', 'en', 1, 'https://ror.org/03hnckv05 Mokpo Catholic University ėŖ©ķ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(27995, 'https://ror.org/03ht5xf97', 'en', 1, 'https://ror.org/03ht5xf97 Anaheim University'),
(27996, 'https://ror.org/03j0zym75', 'en', 1, 'https://ror.org/03j0zym75 Rajapark Institute ąøŖąø–ąø²ąøšąø±ąø™ąø£ąø±ąøŠąø•ą¹Œąø ąø²ąø„ąø¢ą¹Œ'),
(27997, 'https://ror.org/03j3t7793', 'en', 1, 'https://ror.org/03j3t7793 Institute of Economics, Management and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(27998, 'https://ror.org/03j5g0n26', 'en', 1, 'https://ror.org/03j5g0n26 USS Constitution Museum'),
(27999, 'https://ror.org/03j999y97', 'en', 1, 'https://ror.org/03j999y97 Nakhon Phanom University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø„ąø£ąøžąø™ąø”'),
(28000, 'https://ror.org/03j9sfh72', 'en', 1, 'https://ror.org/03j9sfh72 Takarazuka University of Arts & Crafts å®å”šé€ å½¢čŠøč”“å¤§å­¦'),
(28001, 'https://ror.org/03jbv9f50', 'en', 1, 'https://ror.org/03jbv9f50 Institute of Friendship of the People of Caucasus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Ń€ŃƒŠ¶Š±Ń‹ нароГов Кавказа'),
(28002, 'https://ror.org/03jcg6182', 'en', 1, 'https://ror.org/03jcg6182 Union of Needletrades Industrial and Textile Employees'),
(28003, 'https://ror.org/03jd7ez57', 'no_lang_code', 1, 'https://ror.org/03jd7ez57 Malama na Honu'),
(28004, 'https://ror.org/03jeahd70', 'no_lang_code', 1, 'https://ror.org/03jeahd70 Shikoku University 四国大学'),
(28005, 'https://ror.org/03jhw8y69', 'en', 1, 'https://ror.org/03jhw8y69 Stockbridge Library Association'),
(28006, 'https://ror.org/03jj8rb41', 'en', 1, 'https://ror.org/03jj8rb41 Nevada State Library, Archives, and Public Records'),
(28007, 'https://ror.org/03jm2w382', 'en', 1, 'https://ror.org/03jm2w382 Gulf of Alaska Keeper'),
(28008, 'https://ror.org/03jnxyq69', 'en', 1, 'https://ror.org/03jnxyq69 Banking University Університет Š±Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠ¾Ń— справи'),
(28009, 'https://ror.org/03jp7rg16', 'en', 1, 'https://ror.org/03jp7rg16 LNM Institute of Information Technology'),
(28010, 'https://ror.org/03jqhsn85', 'no_lang_code', 1, 'https://ror.org/03jqhsn85 Seinan Gakuin University č„æå—å­¦é™¢å¤§å­¦'),
(28011, 'https://ror.org/03jr06221', 'en', 1, 'https://ror.org/03jr06221 Dr Panjabrao Deshmukh Krishi Vidyapeeth ą¤”ą„‰. ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ą¤°ą¤¾ą¤µ ą¤¦ą„‡ą¤¶ą¤®ą„ą¤– ą¤•ą„ƒą¤·ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(28012, 'https://ror.org/03js41c71', 'hu', 1, 'https://ror.org/03js41c71 VeszprĆ©mi Ɖrseki HittudomĆ”nyi FƵiskola'),
(28013, 'https://ror.org/03js77h61', 'en', 1, 'https://ror.org/03js77h61 Classical and Traditional Medicine Academy'),
(28014, 'https://ror.org/03jtq9874', 'no_lang_code', 1, 'https://ror.org/03jtq9874 STAPPA mix (Czechia)'),
(28015, 'https://ror.org/03jtxwz22', 'en', 1, 'https://ror.org/03jtxwz22 Stavropol Institute of VD Chursina Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š’.Š”. Š§ŃƒŃ€ŃŠøŠ½Š°'),
(28016, 'https://ror.org/03jxhcr96', 'en', 1, 'https://ror.org/03jxhcr96 Peking University International Hospital 北大国际医院'),
(28017, 'https://ror.org/03jyrpv84', 'en', 1, 'https://ror.org/03jyrpv84 Oregon Parks and Recreation Department'),
(28018, 'https://ror.org/03jz5v392', 'no_lang_code', 1, 'https://ror.org/03jz5v392 Agritec (Czechia)'),
(28019, 'https://ror.org/03k0fhh26', 'en', 1, 'https://ror.org/03k0fhh26 University of Maryland Medical Center Midtown Campus'),
(28020, 'https://ror.org/03k1g6m92', 'en', 1, 'https://ror.org/03k1g6m92 University of Kindu UniversitƩ de kindu'),
(28021, 'https://ror.org/03k3r1802', 'no_lang_code', 1, 'https://ror.org/03k3r1802 URC Systems (Czechia)'),
(28022, 'https://ror.org/03k3yk915', 'en', 1, 'https://ror.org/03k3yk915 Duluth Business University'),
(28023, 'https://ror.org/03k44kp71', 'id', 1, 'https://ror.org/03k44kp71 Universitas Darul Ulum'),
(28024, 'https://ror.org/03k4a4h69', 'en', 1, 'https://ror.org/03k4a4h69 Brigham City Library'),
(28025, 'https://ror.org/03k5bgb88', 'no_lang_code', 1, 'https://ror.org/03k5bgb88 Bombardier (Italy)'),
(28026, 'https://ror.org/03k5j0a08', 'en', 1, 'https://ror.org/03k5j0a08 Nayoro City University ååÆ„åø‚ē«‹å¤§å­¦'),
(28027, 'https://ror.org/03k5q1m42', 'no_lang_code', 1, 'https://ror.org/03k5q1m42 Poole Gakuin University å­¦ę ”ę³•äŗŗćƒ—ćƒ¼ćƒ«å­¦é™¢'),
(28028, 'https://ror.org/03k7qz240', 'en', 1, 'https://ror.org/03k7qz240 Maharaja Ranjit Singh Punjab Technical University'),
(28029, 'https://ror.org/03k882j22', 'en', 1, 'https://ror.org/03k882j22 Pacific Education Institute'),
(28030, 'https://ror.org/03k883a47', 'en', 1, 'https://ror.org/03k883a47 Moscow Architectural Institute Московский ŠŃ€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(28031, 'https://ror.org/03k922132', 'id', 1, 'https://ror.org/03k922132 Universitas Nusa Nipa Maumere'),
(28032, 'https://ror.org/03k9f1n96', 'en', 1, 'https://ror.org/03k9f1n96 Nagoya University of Foreign Studies åå¤å±‹å¤–å›½čŖžå¤§å­¦'),
(28033, 'https://ror.org/03kb7hq55', 'en', 1, 'https://ror.org/03kb7hq55 Kurume Institute of Technology 久留米巄愭大学'),
(28034, 'https://ror.org/03kc2e209', 'en', 1, 'https://ror.org/03kc2e209 Muhammadiyah University of Makassar Universitas Muhammadiyah Makassar'),
(28035, 'https://ror.org/03kd43413', 'en', 1, 'https://ror.org/03kd43413 Nagoya Zokei University 名古屋造形大学'),
(28036, 'https://ror.org/03keyse18', 'en', 1, 'https://ror.org/03keyse18 Vesterheim Norwegian American Museum'),
(28037, 'https://ror.org/03kfrc103', 'no_lang_code', 1, 'https://ror.org/03kfrc103 Deutsche Montan Technologie (Germany)'),
(28038, 'https://ror.org/03kgy0531', 'en', 1, 'https://ror.org/03kgy0531 Presbyterian University of East Africa'),
(28039, 'https://ror.org/03kh0v816', 'en', 1, 'https://ror.org/03kh0v816 Penza State University of Architecture and Construction Пензенский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ Šø ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(28040, 'https://ror.org/03kht9y85', 'en', 1, 'https://ror.org/03kht9y85 Krasnodar Municipal Medical Institute of Higher Nursing Education ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š¼ŃƒŠ½ŠøŃ†ŠøŠæŠ°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŃˆŠµŠ³Š¾ сестринского Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(28041, 'https://ror.org/03kjjdy81', 'no_lang_code', 1, 'https://ror.org/03kjjdy81 ŽĎAS (Czechia)'),
(28042, 'https://ror.org/03kmzs707', 'no_lang_code', 1, 'https://ror.org/03kmzs707 Strix Chomutov (Czechia)'),
(28043, 'https://ror.org/03ksn2k92', 'en', 1, 'https://ror.org/03ksn2k92 University of Dental Medicine'),
(28044, 'https://ror.org/03kw5ag50', 'en', 1, 'https://ror.org/03kw5ag50 Halla University ķ•œė¼ėŒ€ķ•™źµ'),
(28045, 'https://ror.org/03kytj789', 'en', 1, 'https://ror.org/03kytj789 Chung Chou University of Science and Technology äø­å·žē§‘ęŠ€å¤§å­ø'),
(28046, 'https://ror.org/03kzg4d82', 'en', 1, 'https://ror.org/03kzg4d82 Chelyabinsk Law institute of Ministry of Internal Affairs of Russia Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ ЮриГический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š” России'),
(28047, 'https://ror.org/03kzpe032', 'en', 1, 'https://ror.org/03kzpe032 IEC University'),
(28048, 'https://ror.org/03m2qyw61', 'en', 1, 'https://ror.org/03m2qyw61 School of Business and Management Novo Mesto Visoka sola za upravljanje in poslovanje Novo mesto'),
(28049, 'https://ror.org/03m5h1s11', 'en', 1, 'https://ror.org/03m5h1s11 Turkmen State Institute of Economics and Management Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(28050, 'https://ror.org/03m60k875', 'en', 1, 'https://ror.org/03m60k875 Kyushu Women''s University 九州儳子大学'),
(28051, 'https://ror.org/03m7a5q02', 'en', 1, 'https://ror.org/03m7a5q02 University of the Thai Chamber of Commerce ดหาวณทยาคัยหอการค้าไทย'),
(28052, 'https://ror.org/03m96yn13', 'en', 1, 'https://ror.org/03m96yn13 Marine Mammal Care Center'),
(28053, 'https://ror.org/03mc8zn46', 'en', 1, 'https://ror.org/03mc8zn46 Yeonsung University ģ—°ģ„±ėŒ€ķ•™źµ'),
(28054, 'https://ror.org/03meq3t09', 'en', 1, 'https://ror.org/03meq3t09 Kobe Yamate University ē„žęˆøå±±ę‰‹å¤§å­¦'),
(28055, 'https://ror.org/03mf58h04', 'en', 1, 'https://ror.org/03mf58h04 Roosevelt Institute'),
(28056, 'https://ror.org/03mh64g46', 'en', 1, 'https://ror.org/03mh64g46 Phuket Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø ąø¹ą¹€ąøą¹‡ąø•'),
(28057, 'https://ror.org/03mhzg809', 'en', 1, 'https://ror.org/03mhzg809 ISMA University Informācijas Sistēmu Menedžmenta Augstskola Š’Ń‹ŃŃˆŠ°Ń школа менеГжмента Šø информационных систем'),
(28058, 'https://ror.org/03mj71j26', 'en', 1, 'https://ror.org/03mj71j26 Industrial University of Ho Chi Minh City TrĘ°į»ng ĐẔi hį»c CĆ“ng nghiệp ThĆ nh phố Hồ ChĆ­ Minh'),
(28059, 'https://ror.org/03mkcyk72', 'en', 1, 'https://ror.org/03mkcyk72 Heisei International University å¹³ęˆå›½éš›å¤§å­¦'),
(28060, 'https://ror.org/03mkgng06', 'en', 1, 'https://ror.org/03mkgng06 NorthEast Independent Living Services'),
(28061, 'https://ror.org/03mmdq014', 'id', 1, 'https://ror.org/03mmdq014 Batanghari University Universitas Batanghari'),
(28062, 'https://ror.org/03mnd3q76', 'en', 1, 'https://ror.org/03mnd3q76 Thomas Aquinas College'),
(28063, 'https://ror.org/03mpxe722', 'en', 1, 'https://ror.org/03mpxe722 Academy of Social Education'),
(28064, 'https://ror.org/03mq68c95', 'no_lang_code', 1, 'https://ror.org/03mq68c95 Tokoha Gakuen University åøøč‘‰å­¦åœ’å¤§å­¦'),
(28065, 'https://ror.org/03mry3754', 'id', 1, 'https://ror.org/03mry3754 Universitas Kristen Immanuel'),
(28066, 'https://ror.org/03ms79854', 'en', 1, 'https://ror.org/03ms79854 George Washington University Virginia Campus'),
(28067, 'https://ror.org/03ms7mr17', 'en', 1, 'https://ror.org/03ms7mr17 Far East University é ę±ē§‘ęŠ€å¤§å­ø'),
(28068, 'https://ror.org/03ms8m606', 'en', 1, 'https://ror.org/03ms8m606 Uttarakhand Technical University ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤‚ą¤” ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28069, 'https://ror.org/03mw9fr44', 'en', 1, 'https://ror.org/03mw9fr44 Atyrau University of Oil and Gas ŠŃ‚Ń‹Ń€Š°Ńƒ мұнай және газ Университеті'),
(28070, 'https://ror.org/03mzvzx07', 'en', 1, 'https://ror.org/03mzvzx07 Dhonburi Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø˜ąø™ąøšąøøąø£ąøµ'),
(28071, 'https://ror.org/03n38sb51', 'no_lang_code', 1, 'https://ror.org/03n38sb51 HornickĆ© muzeum Příbram Mining Museum Pribram'),
(28072, 'https://ror.org/03n3y7285', 'en', 1, 'https://ror.org/03n3y7285 American University in Bosnia and Herzegovina Američki univerzitet u Bosni i Hercegovini'),
(28073, 'https://ror.org/03n5w2v49', 'id', 1, 'https://ror.org/03n5w2v49 Universitas Nusa Bangsa'),
(28074, 'https://ror.org/03n7hja66', 'en', 1, 'https://ror.org/03n7hja66 Louisiana Department of Natural Resources'),
(28075, 'https://ror.org/03nb5h994', 'no_lang_code', 1, 'https://ror.org/03nb5h994 EBIS (Czechia)'),
(28076, 'https://ror.org/03ncber98', 'en', 1, 'https://ror.org/03ncber98 Garrett–Evangelical Theological Seminary'),
(28077, 'https://ror.org/03ncgps69', 'no_lang_code', 1, 'https://ror.org/03ncgps69 Maebashi Kyoai Gakuen College å…±ę„›å­¦åœ’å‰ę©‹å›½éš›å¤§å­¦'),
(28078, 'https://ror.org/03ne5hn26', 'en', 1, 'https://ror.org/03ne5hn26 Samtskhe-Javakheti State University įƒ”įƒįƒ›įƒŖįƒ®įƒ”-įƒÆįƒįƒ•įƒįƒ®įƒ”įƒ—įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28079, 'https://ror.org/03nff2e18', 'en', 1, 'https://ror.org/03nff2e18 Kulyab State University named after Abuabdullo Rudaki Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии Кӯлоб ба номи АбӯабГуллоҳи РӯГакӣ ŠšŃƒŠ»ŃŠ±ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28080, 'https://ror.org/03nfkpr39', 'en', 1, 'https://ror.org/03nfkpr39 Cheongju National University of Education ģ²­ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(28081, 'https://ror.org/03nhjhr13', 'id', 1, 'https://ror.org/03nhjhr13 Universitas Ekasakti'),
(28082, 'https://ror.org/03nskz175', 'en', 1, 'https://ror.org/03nskz175 Niigata University of International and Information Studies ę–°ę½Ÿå›½éš›ęƒ…å ±å¤§å­¦'),
(28083, 'https://ror.org/03ntmq932', 'en', 1, 'https://ror.org/03ntmq932 American Rivers'),
(28084, 'https://ror.org/03nw0tx25', 'en', 1, 'https://ror.org/03nw0tx25 Shaheed Mohtarma Benazir Bhutto Medical University Ų“Ł‡ŁŠŲÆ محترمه ŲØŁŠŁ†ŲøŁŠŲ± Ś€Ł½Łˆ Ł…ŁŠŚŠŁŠŚŖŁ„ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ ؓہید محترمہ ŲØŪ’ Ł†ŲøŪŒŲ± بھٹو Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(28085, 'https://ror.org/03nw44p55', 'cs', 1, 'https://ror.org/03nw44p55 Å umava National Park'),
(28086, 'https://ror.org/03nw47j70', 'no_lang_code', 1, 'https://ror.org/03nw47j70 Kanto Gakuen University é–¢ę±å­¦åœ’å¤§å­¦'),
(28087, 'https://ror.org/03nx1r778', 'en', 1, 'https://ror.org/03nx1r778 Zirve University Zirve Üniversitesi'),
(28088, 'https://ror.org/03p1p7q28', 'en', 1, 'https://ror.org/03p1p7q28 Dance Perspectives Foundation'),
(28089, 'https://ror.org/03p4md298', 'en', 1, 'https://ror.org/03p4md298 Shibuya University Network ć‚·ćƒ–ćƒ¤å¤§å­¦'),
(28090, 'https://ror.org/03p5fh293', 'en', 1, 'https://ror.org/03p5fh293 Bethany Global University'),
(28091, 'https://ror.org/03p5y6k26', 'cs', 1, 'https://ror.org/03p5y6k26 ČeskĆ” Společnost AntropologickĆ”'),
(28092, 'https://ror.org/03p7fww37', 'en', 1, 'https://ror.org/03p7fww37 New York State Department of Environmental Conservation'),
(28093, 'https://ror.org/03p7vg590', 'en', 1, 'https://ror.org/03p7vg590 Al-Zahra College for Women ŁƒŁ„ŁŠŲ© الزهراؔ للبنات'),
(28094, 'https://ror.org/03p8px109', 'en', 1, 'https://ror.org/03p8px109 Worthington City School District'),
(28095, 'https://ror.org/03p94a441', 'no_lang_code', 1, 'https://ror.org/03p94a441 Rieter (Czechia)'),
(28096, 'https://ror.org/03pa4ph68', 'en', 1, 'https://ror.org/03pa4ph68 City of Greeley Museums'),
(28097, 'https://ror.org/03paz2a60', 'en', 1, 'https://ror.org/03paz2a60 Moscow Polytechnic University Московский Š³Š¾ŃŃƒŠ“арственный Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28098, 'https://ror.org/03pcb1m79', 'en', 1, 'https://ror.org/03pcb1m79 Shu-Te University ęØ¹å¾·ē§‘ęŠ€å¤§å­ø'),
(28099, 'https://ror.org/03pdpfa44', 'en', 1, 'https://ror.org/03pdpfa44 Wadsworth Atheneum Museum of Art'),
(28100, 'https://ror.org/03pgsk336', 'en', 1, 'https://ror.org/03pgsk336 Marine Resources Council'),
(28101, 'https://ror.org/03phees55', 'en', 1, 'https://ror.org/03phees55 Vikrama Simhapuri University ą°µą°æą°•ą±ą°°ą°® సింహపురి ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(28102, 'https://ror.org/03pjs2912', 'en', 1, 'https://ror.org/03pjs2912 Warsaw University of Technology Business School'),
(28103, 'https://ror.org/03pkef045', 'no_lang_code', 1, 'https://ror.org/03pkef045 Skyleader (Czechia)'),
(28104, 'https://ror.org/03pkka491', 'id', 1, 'https://ror.org/03pkka491 Universitas Islam Syekh Yusuf'),
(28105, 'https://ror.org/03pmgn266', 'en', 1, 'https://ror.org/03pmgn266 Faculty of Applied Social Studies in Nova Gorica Fakulteta za uporabne družbene Ŕtudije v Novi Gorici'),
(28106, 'https://ror.org/03ppx1p25', 'en', 1, 'https://ror.org/03ppx1p25 University of Nagasaki é•·å“ŽēœŒē«‹å¤§å­¦'),
(28107, 'https://ror.org/03pqde616', 'en', 1, 'https://ror.org/03pqde616 Okayama Shoka University 岔山商科大学'),
(28108, 'https://ror.org/03prw2k14', 'en', 1, 'https://ror.org/03prw2k14 Baba Mastnath University बाबा ą¤®ą¤øą„ą¤¤ą¤Øą¤¾ą¤„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28109, 'https://ror.org/03psjxz30', 'en', 1, 'https://ror.org/03psjxz30 Hanoi University of Pharmacy TrĘ°į»ng ĐẔi hį»c Dược HĆ  Nį»™i'),
(28110, 'https://ror.org/03pv9jn63', 'en', 1, 'https://ror.org/03pv9jn63 Grodno State Agrarian University ГроГзенскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ аграрны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(28111, 'https://ror.org/03pwq8a06', 'en', 1, 'https://ror.org/03pwq8a06 Yangon University of Foreign Languages'),
(28112, 'https://ror.org/03pyzpf78', 'en', 1, 'https://ror.org/03pyzpf78 Ural State Pedagogical University Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28113, 'https://ror.org/03pzk6650', 'en', 1, 'https://ror.org/03pzk6650 CƩsar Ritz Colleges'),
(28114, 'https://ror.org/03q05qn16', 'en', 1, 'https://ror.org/03q05qn16 Richard I. Bong Veterans Historical Center'),
(28115, 'https://ror.org/03q14nt21', 'en', 1, 'https://ror.org/03q14nt21 Harriet Beecher Stowe Center'),
(28116, 'https://ror.org/03q4jaz23', 'en', 1, 'https://ror.org/03q4jaz23 Higher School of National Economy in Kutno Wyższa Szkoła Gospodarki Krajowej w Kutnie'),
(28117, 'https://ror.org/03q5fwy02', 'en', 1, 'https://ror.org/03q5fwy02 Notre Dame of Marbel University Pamantasang Notre Dame ng Marbel'),
(28118, 'https://ror.org/03q5knn53', 'en', 1, 'https://ror.org/03q5knn53 Pacifica Foundation'),
(28119, 'https://ror.org/03q6c2121', 'no_lang_code', 1, 'https://ror.org/03q6c2121 CZ Loko (Czechia)'),
(28120, 'https://ror.org/03q6f0894', 'en', 1, 'https://ror.org/03q6f0894 TrĘ°į»ng ĐẔi hį»c TĆ¢n Tįŗ”o TĆ¢n Tįŗ”o University'),
(28121, 'https://ror.org/03q6jrh90', 'pt', 1, 'https://ror.org/03q6jrh90 Centro UniversitƔrio das Faculdades Metropolitanas Unidas'),
(28122, 'https://ror.org/03q6r4119', 'en', 1, 'https://ror.org/03q6r4119 Transportation Corridor Agencies'),
(28123, 'https://ror.org/03q750z50', 'en', 1, 'https://ror.org/03q750z50 Lebanese Canadian University UniversitƩ Libano-Canadienne'),
(28124, 'https://ror.org/03q9g2k63', 'id', 1, 'https://ror.org/03q9g2k63 Universitas Muhammadiyah Gorontalo'),
(28125, 'https://ror.org/03qba2h82', 'en', 1, 'https://ror.org/03qba2h82 Ouachita Parish Public Library'),
(28126, 'https://ror.org/03qcbea07', 'no_lang_code', 1, 'https://ror.org/03qcbea07 BTL ZdravotnickĆ” Technika (Czechia)'),
(28127, 'https://ror.org/03qcg1j33', 'no_lang_code', 1, 'https://ror.org/03qcg1j33 Taisei Gakuin University å¤Ŗęˆå­¦é™¢å¤§å­¦'),
(28128, 'https://ror.org/03qd80k21', 'en', 1, 'https://ror.org/03qd80k21 Jaamacadda Koonfurta Soomaaliya University of Southern Somalia');
INSERT INTO `rors` VALUES
(28129, 'https://ror.org/03qef3650', 'en', 1, 'https://ror.org/03qef3650 Michele & Donald D’Amour Museum of Fine Arts'),
(28130, 'https://ror.org/03qfmrs34', 'en', 1, 'https://ror.org/03qfmrs34 Central Institute of Fisheries Education'),
(28131, 'https://ror.org/03qfy7r49', 'en', 1, 'https://ror.org/03qfy7r49 Carol I National Defence University Universitatea Națională de Apărare ā€žCarol Iā€'),
(28132, 'https://ror.org/03qmqe950', 'en', 1, 'https://ror.org/03qmqe950 Utah Library Association'),
(28133, 'https://ror.org/03qnpty21', 'en', 1, 'https://ror.org/03qnpty21 Jai Narain Vyas University जयनारायण ą¤µą„ą¤Æą¤¾ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28134, 'https://ror.org/03qpq3659', 'en', 1, 'https://ror.org/03qpq3659 Peninsula Library System'),
(28135, 'https://ror.org/03qrxs205', 'no_lang_code', 1, 'https://ror.org/03qrxs205 Blumenbecker (Czechia)'),
(28136, 'https://ror.org/03qtr7n72', 'fr', 1, 'https://ror.org/03qtr7n72 Agence Nationale des FrƩquences'),
(28137, 'https://ror.org/03qvnw793', 'pl', 1, 'https://ror.org/03qvnw793 Wyższa Szkoła Ekonomii i Administracji w Bytomiu'),
(28138, 'https://ror.org/03qw80h61', 'en', 1, 'https://ror.org/03qw80h61 Eastern Kentucky Pride'),
(28139, 'https://ror.org/03r1fjj85', 'en', 1, 'https://ror.org/03r1fjj85 Shaker Museum Mount Lebanon'),
(28140, 'https://ror.org/03r1pm171', 'en', 1, 'https://ror.org/03r1pm171 Kanchanaburi Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøąø²ąøąøˆąø™ąøšąøøąø£ąøµ'),
(28141, 'https://ror.org/03r5vbq81', 'en', 1, 'https://ror.org/03r5vbq81 Cape Cod Museum of Natural History'),
(28142, 'https://ror.org/03r6cc113', 'en', 1, 'https://ror.org/03r6cc113 Kundong University ź±“ė™ėŒ€ķ•™źµ'),
(28143, 'https://ror.org/03r7c7356', 'en', 1, 'https://ror.org/03r7c7356 William Carey University'),
(28144, 'https://ror.org/03r9b8045', 'en', 1, 'https://ror.org/03r9b8045 Academy of the State Fire Service EMERCOM of Russia ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ противопожарной ŃŠ»ŃƒŠ¶Š±Ń‹ МЧД России'),
(28145, 'https://ror.org/03r9jhj30', 'en', 1, 'https://ror.org/03r9jhj30 Saratov State Conservatory named after L. V. Sobinov Š”Š°Ń€Š°Ń‚Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени Š›. Š’. Добинова'),
(28146, 'https://ror.org/03r9v0161', 'no_lang_code', 1, 'https://ror.org/03r9v0161 Elektro Ljubljana (Slovenia)'),
(28147, 'https://ror.org/03rb61q14', 'en', 1, 'https://ror.org/03rb61q14 Baltimore Museum of Art'),
(28148, 'https://ror.org/03rc8sv47', 'en', 1, 'https://ror.org/03rc8sv47 Lutheran Archives Center at Philadelphia'),
(28149, 'https://ror.org/03rcc6237', 'en', 1, 'https://ror.org/03rcc6237 Athenaeum of Philadelphia'),
(28150, 'https://ror.org/03rfp4q66', 'en', 1, 'https://ror.org/03rfp4q66 Santapol College ąø™ąø“ąø•ąø“ąøØąø²ąøŖąø•ąø£ą¹Œ ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŖąø±ąø™ąø•ąøžąø„'),
(28151, 'https://ror.org/03rhsqw80', 'en', 1, 'https://ror.org/03rhsqw80 Alexandria Museum of Art'),
(28152, 'https://ror.org/03rk9qf06', 'en', 1, 'https://ror.org/03rk9qf06 University of Kabianga'),
(28153, 'https://ror.org/03rm49h74', 'en', 1, 'https://ror.org/03rm49h74 Jodhpur National University ą¤œą„‹ą¤§ą¤Ŗą„ą¤° ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28154, 'https://ror.org/03rmb5927', 'en', 1, 'https://ror.org/03rmb5927 Poetry Foundation'),
(28155, 'https://ror.org/03rmfrm44', 'en', 1, 'https://ror.org/03rmfrm44 Institute of Information Security ęƒ…å ±ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£å¤§å­¦é™¢å¤§å­¦'),
(28156, 'https://ror.org/03rn4td60', 'en', 1, 'https://ror.org/03rn4td60 San Diego Public Library'),
(28157, 'https://ror.org/03rrkrc24', 'en', 1, 'https://ror.org/03rrkrc24 Shandong Institute of Business and Technology å±±äøœå·„å•†å­¦é™¢'),
(28158, 'https://ror.org/03rs7bk48', 'en', 1, 'https://ror.org/03rs7bk48 Yeshiva University Museum'),
(28159, 'https://ror.org/03rsg0091', 'en', 1, 'https://ror.org/03rsg0091 Greater Southwest Historical Museum'),
(28160, 'https://ror.org/03rte5t08', 'cs', 1, 'https://ror.org/03rte5t08 ČeskoslovenskĆ” BiologickĆ” Společnost'),
(28161, 'https://ror.org/03rwzd843', 'id', 1, 'https://ror.org/03rwzd843 Universitas Kristen Indonesia Maluku'),
(28162, 'https://ror.org/03ryjp350', 'en', 1, 'https://ror.org/03ryjp350 Pamantasan sa Bisayas University of the Visayas'),
(28163, 'https://ror.org/03ryzhm22', 'en', 1, 'https://ror.org/03ryzhm22 Czech Association of Geophysicists'),
(28164, 'https://ror.org/03rzxvn19', 'no_lang_code', 1, 'https://ror.org/03rzxvn19 Crystalite Bohemia (Czechia)'),
(28165, 'https://ror.org/03s0h5h67', 'en', 1, 'https://ror.org/03s0h5h67 Panhandle Plains Historical Museum'),
(28166, 'https://ror.org/03s0nek04', 'no_lang_code', 1, 'https://ror.org/03s0nek04 Lumnamping College ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø„ąøøą¹ˆąø”ąø™ą¹‰ąø³ąø›ąø“ąø‡'),
(28167, 'https://ror.org/03s2mhd04', 'en', 1, 'https://ror.org/03s2mhd04 Hanoi Law University TrĘ°į»ng ĐẔi hį»c Luįŗ­t HĆ  Nį»™i'),
(28168, 'https://ror.org/03s2yse38', 'en', 1, 'https://ror.org/03s2yse38 Turkmen National Institute of Foreign Languages named after D. Azadi'),
(28169, 'https://ror.org/03s336c88', 'en', 1, 'https://ror.org/03s336c88 Princess of Naradhiwas University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø£ąø²ąø˜ąø“ąø§ąø²ąøŖąø£ąø²ąøŠąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(28170, 'https://ror.org/03s3x9r14', 'en', 1, 'https://ror.org/03s3x9r14 Shri Lal Bahadur Shastri Rashtriya Sanskrit Vidyapeetha ą¤¶ą„ą¤°ą„€ लाल ą¤¬ą¤¹ą¤¾ą¤¦ą„ą¤°ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤°ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(28171, 'https://ror.org/03s49rs22', 'en', 1, 'https://ror.org/03s49rs22 University of Public Health Yangon į€•į€¼į€Šį€ŗį€žį€°į€·į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(ရန်ကုန်)'),
(28172, 'https://ror.org/03s513359', 'en', 1, 'https://ror.org/03s513359 American Institute for Maghrib Studies'),
(28173, 'https://ror.org/03s5jv345', 'en', 1, 'https://ror.org/03s5jv345 Humanitas University in Sosnowiec Wyższa Szkoła Humanitas w Sosnowcu'),
(28174, 'https://ror.org/03s5p4g14', 'en', 1, 'https://ror.org/03s5p4g14 Agrarian State University of Northern Zauralye Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Деверного Š—Š°ŃƒŃ€Š°Š»ŃŒŃ'),
(28175, 'https://ror.org/03s7g5q07', 'no_lang_code', 1, 'https://ror.org/03s7g5q07 ModelƔrna Liaz (Czechia)'),
(28176, 'https://ror.org/03sb1j698', 'no_lang_code', 1, 'https://ror.org/03sb1j698 Indira Kala Sangeet University इंदिरा कला ą¤øą¤‚ą¤—ą„€ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28177, 'https://ror.org/03scay082', 'en', 1, 'https://ror.org/03scay082 University of Arts in Belgrade Univerzitet umetnosti u Beogradu Универзитет ŃƒŠ¼ŠµŃ‚Š½Š¾ŃŃ‚Šø у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ'),
(28178, 'https://ror.org/03sdmkg09', 'no_lang_code', 1, 'https://ror.org/03sdmkg09 ATOMA TepelnĆ” Technika (Czechia)'),
(28179, 'https://ror.org/03se13x79', 'en', 1, 'https://ror.org/03se13x79 Claremont Lincoln University'),
(28180, 'https://ror.org/03sew6f18', 'en', 1, 'https://ror.org/03sew6f18 Institute of International Relations Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… ŃŠ²ŃŠ·ŠµŠ¹'),
(28181, 'https://ror.org/03sey0f76', 'en', 1, 'https://ror.org/03sey0f76 National Nordic Museum'),
(28182, 'https://ror.org/03sf7t726', 'en', 1, 'https://ror.org/03sf7t726 Gongju National University of Education ź³µģ£¼źµģœ”ėŒ€ķ•™źµ'),
(28183, 'https://ror.org/03sfj2c48', 'no_lang_code', 1, 'https://ror.org/03sfj2c48 Pegas Nonwovens (Czechia)'),
(28184, 'https://ror.org/03sfvke56', 'en', 1, 'https://ror.org/03sfvke56 KodolĆ”nyi JĆ”nos Főiskola KodolĆ”nyi JĆ”nos University of Applied Sciences'),
(28185, 'https://ror.org/03sfxyd37', 'en', 1, 'https://ror.org/03sfxyd37 HopeHealth'),
(28186, 'https://ror.org/03sgcr744', 'en', 1, 'https://ror.org/03sgcr744 Ube Frontier University å®‡éƒØćƒ•ćƒ­ćƒ³ćƒ†ć‚£ć‚¢å¤§å­¦'),
(28187, 'https://ror.org/03shzqb14', 'en', 1, 'https://ror.org/03shzqb14 Newports Institute of Communications and Economics Ł†ŁŠŁˆ پورٽس Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف ŚŖŁ…ŁŠŁˆŁ†ŁŠŚŖŁŠŲ“Ł†Ų³ Ų§ŁŠŁ† Ų§ŁŠŚŖŲ§Ł†Ų§Ł…ŚŖŲ³'),
(28188, 'https://ror.org/03sj6v857', 'cs', 1, 'https://ror.org/03sj6v857 Diagnostický Ústav pro MlÔdež'),
(28189, 'https://ror.org/03sk68310', 'en', 1, 'https://ror.org/03sk68310 Larz Anderson Auto Museum'),
(28190, 'https://ror.org/03sna8255', 'en', 1, 'https://ror.org/03sna8255 Izhevsk State Medical Academy Š˜Š¶ŠµŠ²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(28191, 'https://ror.org/03spdpm68', 'en', 1, 'https://ror.org/03spdpm68 State Marine Technical University of St. Petersburg Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ морской технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28192, 'https://ror.org/03sq7qp22', 'en', 1, 'https://ror.org/03sq7qp22 Kutaisi Institute of Medicine'),
(28193, 'https://ror.org/03sqexp58', 'en', 1, 'https://ror.org/03sqexp58 Kawamura Gakuen Women''s University å·ę‘å­¦åœ’å„³å­å¤§å­¦'),
(28194, 'https://ror.org/03srgbm67', 'en', 1, 'https://ror.org/03srgbm67 University of Guelph-Humber'),
(28195, 'https://ror.org/03ss0k162', 'en', 1, 'https://ror.org/03ss0k162 Aldrich Public Library'),
(28196, 'https://ror.org/03ssg8h30', 'no_lang_code', 1, 'https://ror.org/03ssg8h30 Optaglio (Czechia)'),
(28197, 'https://ror.org/03sx66s94', 'en', 1, 'https://ror.org/03sx66s94 KƵrgem Kunstikool Pallas Tartu Art College'),
(28198, 'https://ror.org/03sy3av50', 'en', 1, 'https://ror.org/03sy3av50 Michigan Department of Environment, Great Lakes, and Energy'),
(28199, 'https://ror.org/03sy3gw53', 'en', 1, 'https://ror.org/03sy3gw53 Coalition of Urban and Metropolitan Universities'),
(28200, 'https://ror.org/03syp9w72', 'en', 1, 'https://ror.org/03syp9w72 North Carolina Department of Natural and Cultural Resources'),
(28201, 'https://ror.org/03t0fy352', 'en', 1, 'https://ror.org/03t0fy352 Okinawa Christian University ę²–ēø„ć‚­ćƒŖć‚¹ćƒˆę•™å­¦é™¢å¤§å­¦'),
(28202, 'https://ror.org/03t0van71', 'en', 1, 'https://ror.org/03t0van71 Makah Cultural and Research Center'),
(28203, 'https://ror.org/03t3xs666', 'en', 1, 'https://ror.org/03t3xs666 Institute for Historical Study'),
(28204, 'https://ror.org/03t43c845', 'pl', 1, 'https://ror.org/03t43c845 Wyższa Szkoła Pedagogiczna Związku Nauczycielstwa Polskiego'),
(28205, 'https://ror.org/03t7x0f36', 'en', 1, 'https://ror.org/03t7x0f36 Orel State Institute of Arts and Culture ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(28206, 'https://ror.org/03t7yan60', 'en', 1, 'https://ror.org/03t7yan60 Seattle Public Library'),
(28207, 'https://ror.org/03ta5f363', 'en', 1, 'https://ror.org/03ta5f363 Sons of Union Veterans of the Civil War'),
(28208, 'https://ror.org/03tawch75', 'en', 1, 'https://ror.org/03tawch75 Catholic University of Pusan ė¶€ģ‚°ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(28209, 'https://ror.org/03tb4ym49', 'no_lang_code', 1, 'https://ror.org/03tb4ym49 Vjatka Social Economics Institute Š’ŃŃ‚ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(28210, 'https://ror.org/03tc2j669', 'id', 1, 'https://ror.org/03tc2j669 Institut Teknologi Medan'),
(28211, 'https://ror.org/03te2zs36', 'en', 1, 'https://ror.org/03te2zs36 Beijing Language and Culture University åŒ—äŗ¬čÆ­čØ€å¤§å­¦'),
(28212, 'https://ror.org/03tekv166', 'no_lang_code', 1, 'https://ror.org/03tekv166 HOST vydavatelstvĆ­ (Czechia)'),
(28213, 'https://ror.org/03texeh34', 'en', 1, 'https://ror.org/03texeh34 State of Rhode Island Office of Library and Information Services'),
(28214, 'https://ror.org/03tgn8d86', 'en', 1, 'https://ror.org/03tgn8d86 Dennis Gabor College GABOR DENES FOISKOLA'),
(28215, 'https://ror.org/03tmd6r11', 'no_lang_code', 1, 'https://ror.org/03tmd6r11 ECO Trend (Czechia)'),
(28216, 'https://ror.org/03tmvjq86', 'en', 1, 'https://ror.org/03tmvjq86 Manhattan High School'),
(28217, 'https://ror.org/03tnbmz91', 'en', 1, 'https://ror.org/03tnbmz91 Greater New Orleans Educational Television Foundation'),
(28218, 'https://ror.org/03tqe1x88', 'en', 1, 'https://ror.org/03tqe1x88 Andijan Institute of Agricultural Andijon qishloq xo''jalik instituti'),
(28219, 'https://ror.org/03tsjvt68', 'en', 1, 'https://ror.org/03tsjvt68 Mediterranean University Univerzitet Mediteran'),
(28220, 'https://ror.org/03tsq7092', 'en', 1, 'https://ror.org/03tsq7092 Shedd Aquarium'),
(28221, 'https://ror.org/03ttsq905', 'en', 1, 'https://ror.org/03ttsq905 Baltic State Academy of the Fishing Fleet Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ рыбопромыслового флота'),
(28222, 'https://ror.org/03tvrky57', 'en', 1, 'https://ror.org/03tvrky57 Chesapeake Bay Foundation'),
(28223, 'https://ror.org/03txa8766', 'en', 1, 'https://ror.org/03txa8766 Supreme Court Historical Society'),
(28224, 'https://ror.org/03txeq812', 'no_lang_code', 1, 'https://ror.org/03txeq812 Maurer (Germany)'),
(28225, 'https://ror.org/03v2fas56', 'en', 1, 'https://ror.org/03v2fas56 Paul Quinn College'),
(28226, 'https://ror.org/03v3y9g34', 'en', 1, 'https://ror.org/03v3y9g34 International Solomon University ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ Доломонів ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28227, 'https://ror.org/03v43ry70', 'no_lang_code', 1, 'https://ror.org/03v43ry70 Hybrizyme (United States)'),
(28228, 'https://ror.org/03v63wq09', 'en', 1, 'https://ror.org/03v63wq09 Novosibirsk Institute of Economy, Psychology and Law ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Экономики ŠŸŃŠøŃ…ологии Šø ŠŸŃ€Š°Š²Š°'),
(28229, 'https://ror.org/03v7b1458', 'en', 1, 'https://ror.org/03v7b1458 Chunnam Techno University ģ „ė‚Øź³¼ķ•™ėŒ€ķ•™źµ'),
(28230, 'https://ror.org/03v7fdr41', 'en', 1, 'https://ror.org/03v7fdr41 Tenri Health Care University å¤©ē†åŒ»ē™‚å¤§å­¦'),
(28231, 'https://ror.org/03ve0eh58', 'id', 1, 'https://ror.org/03ve0eh58 Universitas Muhammadiyah Sumatera Utara'),
(28232, 'https://ror.org/03ve83257', 'no_lang_code', 1, 'https://ror.org/03ve83257 Centre for Organic Chemistry (Czechia) Centrum OrganickƩ Chemie'),
(28233, 'https://ror.org/03vejgn42', 'no_lang_code', 1, 'https://ror.org/03vejgn42 Uekusa Gakuen University ę¤č‰å­¦åœ’å¤§å­¦'),
(28234, 'https://ror.org/03vfdas15', 'en', 1, 'https://ror.org/03vfdas15 Maine Library Association'),
(28235, 'https://ror.org/03vfnky71', 'en', 1, 'https://ror.org/03vfnky71 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(28236, 'https://ror.org/03vganq87', 'en', 1, 'https://ror.org/03vganq87 National Academy of Internal Affairs'),
(28237, 'https://ror.org/03vh2mm87', 'en', 1, 'https://ror.org/03vh2mm87 Pinchot University'),
(28238, 'https://ror.org/03vhwes25', 'en', 1, 'https://ror.org/03vhwes25 Gwangju Catholic University ź“‘ģ£¼ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(28239, 'https://ror.org/03vp0e929', 'en', 1, 'https://ror.org/03vp0e929 Monroe County History Center'),
(28240, 'https://ror.org/03vvasf30', 'en', 1, 'https://ror.org/03vvasf30 Lyndon Baines Johnson Foundation'),
(28241, 'https://ror.org/03vw0pp31', 'en', 1, 'https://ror.org/03vw0pp31 Forbes Library'),
(28242, 'https://ror.org/03vwtwp93', 'en', 1, 'https://ror.org/03vwtwp93 Pocumtuck Valley Memorial Association'),
(28243, 'https://ror.org/03vyspr60', 'en', 1, 'https://ror.org/03vyspr60 Johannelund Theological Seminary Johannelunds teologiska hƶgskola'),
(28244, 'https://ror.org/03vzjn737', 'en', 1, 'https://ror.org/03vzjn737 Presidency University ą¦Ŗą§ą¦°ą§‡ą¦øą¦æą¦”ą§‡ą¦Øą§ą¦øą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(28245, 'https://ror.org/03w0tq079', 'en', 1, 'https://ror.org/03w0tq079 Colonial Williamsburg Foundation'),
(28246, 'https://ror.org/03w3a0h43', 'en', 1, 'https://ror.org/03w3a0h43 Evangelische Hochschule Freiburg Protestant University of Applied Sciences Freiburg'),
(28247, 'https://ror.org/03w6h1q24', 'no_lang_code', 1, 'https://ror.org/03w6h1q24 UVB Technik (Czechia)'),
(28248, 'https://ror.org/03w6mtb84', 'en', 1, 'https://ror.org/03w6mtb84 Niigata Institute of Technology ę–°ę½Ÿå·„ē§‘å¤§å­¦'),
(28249, 'https://ror.org/03w78wk23', 'en', 1, 'https://ror.org/03w78wk23 Duluth Public Library'),
(28250, 'https://ror.org/03w99kr42', 'en', 1, 'https://ror.org/03w99kr42 New Orleans Jazz & Heritage Festival and Foundation'),
(28251, 'https://ror.org/03w9qt084', 'en', 1, 'https://ror.org/03w9qt084 Ukrainian-American Concordia University Š’Ń–ŃŠŗŠ¾Š½ŃŠøŠ½ŃŃŒŠŗŠøŠ¹ міжнароГний Університет (ДША) в Україні'),
(28252, 'https://ror.org/03w9szr81', 'en', 1, 'https://ror.org/03w9szr81 Bucheon University ė¶€ģ²œėŒ€ķ•™źµ'),
(28253, 'https://ror.org/03wbwwy70', 'en', 1, 'https://ror.org/03wbwwy70 Pontifical University of Saint Thomas Aquinas Pontificia UniversitƠ San Tommaso d''Aquino PƤpstliche UniversitƤt Heiliger Thomas von Aquin Universitat Pontifƭcia de Sant TomƔs d''Aquino UniversitƩ pontificale saint-thomas-d''aquin'),
(28254, 'https://ror.org/03wcw7m36', 'en', 1, 'https://ror.org/03wcw7m36 Business Breakthrough University ćƒ“ć‚øćƒć‚¹ćƒ»ćƒ–ćƒ¬ćƒ¼ć‚Æć‚¹ćƒ«ćƒ¼å¤§å­¦'),
(28255, 'https://ror.org/03wevch29', 'en', 1, 'https://ror.org/03wevch29 Grinnell Newburg Community School District'),
(28256, 'https://ror.org/03whgpr22', 'en', 1, 'https://ror.org/03whgpr22 Scarsdale Historical Society'),
(28257, 'https://ror.org/03wj83q95', 'en', 1, 'https://ror.org/03wj83q95 Tashkent Automobile and Road Construction Institute Toshkent avtomobil yo''llarini loyihalash, qurish va ekspluatatsiyasi instituti'),
(28258, 'https://ror.org/03wm74n81', 'en', 1, 'https://ror.org/03wm74n81 Jaamacadda Nugaal Nugaal University'),
(28259, 'https://ror.org/03wmttm35', 'no_lang_code', 1, 'https://ror.org/03wmttm35 2N Telecommunications (Czechia) 2N Telekomunikace'),
(28260, 'https://ror.org/03wpvxm81', 'en', 1, 'https://ror.org/03wpvxm81 Windward Community College'),
(28261, 'https://ror.org/03ws6sq43', 'en', 1, 'https://ror.org/03ws6sq43 University of Kalemie UniversitƩ de kalemie'),
(28262, 'https://ror.org/03ws81249', 'en', 1, 'https://ror.org/03ws81249 Karary University Ų¬Ų§Ł…Ų¹Ų© كرري'),
(28263, 'https://ror.org/03wt62c10', 'en', 1, 'https://ror.org/03wt62c10 Vinayaka Missions University விநாயகா ą®®ą®æą®·ą®©ąÆą®øąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(28264, 'https://ror.org/03wtrat67', 'en', 1, 'https://ror.org/03wtrat67 Centre for Integrated Health Programs'),
(28265, 'https://ror.org/03wxwxe24', 'en', 1, 'https://ror.org/03wxwxe24 Budapest University of Jewish Studies OrszĆ”gos RabbikĆ©pző – Zsidó Egyetem'),
(28266, 'https://ror.org/03wya1h47', 'id', 1, 'https://ror.org/03wya1h47 Universitas Pandanaran'),
(28267, 'https://ror.org/03wz5pw26', 'en', 1, 'https://ror.org/03wz5pw26 Dubrovnik International University Libertas međunarodno sveučiliÅ”te - Dubrovnik'),
(28268, 'https://ror.org/03wzf8z32', 'en', 1, 'https://ror.org/03wzf8z32 Center for Alaskan Coastal Studies'),
(28269, 'https://ror.org/03x19vt79', 'cs', 1, 'https://ror.org/03x19vt79 Institut Pro Studium Literatury'),
(28270, 'https://ror.org/03x1wer98', 'en', 1, 'https://ror.org/03x1wer98 Kaetsu University å˜‰ę‚¦å¤§å­¦'),
(28271, 'https://ror.org/03x2fyc79', 'no_lang_code', 1, 'https://ror.org/03x2fyc79 Novosibirsk State Pedagogical University ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28272, 'https://ror.org/03x2r5572', 'en', 1, 'https://ror.org/03x2r5572 Virginia University of Lynchburg'),
(28273, 'https://ror.org/03x3axr33', 'en', 1, 'https://ror.org/03x3axr33 Universitatea "Vasile Alecsandri" din Bacău University of Bacău'),
(28274, 'https://ror.org/03x858v16', 'en', 1, 'https://ror.org/03x858v16 Oceanside Public Library'),
(28275, 'https://ror.org/03x874836', 'en', 1, 'https://ror.org/03x874836 Tsuru University éƒ½ē•™ę–‡ē§‘å¤§å­¦'),
(28276, 'https://ror.org/03x8feb02', 'en', 1, 'https://ror.org/03x8feb02 Saigon International University TrĘ°į»ng ĐẔi hį»c Quốc tįŗæ SĆ i Gòn'),
(28277, 'https://ror.org/03x8jsf97', 'no_lang_code', 1, 'https://ror.org/03x8jsf97 Elitex slƩvƔrna (Czechia)'),
(28278, 'https://ror.org/03x8kxy88', 'en', 1, 'https://ror.org/03x8kxy88 Sochi State University Дочинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28279, 'https://ror.org/03x9g7m54', 'en', 1, 'https://ror.org/03x9g7m54 Lebanese German University الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ©'),
(28280, 'https://ror.org/03xagjf37', 'en', 1, 'https://ror.org/03xagjf37 Kaye Academic College of Education המכללה ×”××§×“×ž×™×Ŗ לחינוך ×¢"ש קיי ŁƒŁ„ŁŠŲ© كي Ł„Ł„ŲŖŲ±ŲØŁŠŲ©'),
(28281, 'https://ror.org/03xay8k75', 'en', 1, 'https://ror.org/03xay8k75 Constanta Maritime University Universitatea Maritimă din Constanța'),
(28282, 'https://ror.org/03xbchh53', 'en', 1, 'https://ror.org/03xbchh53 Islamic Azad University of Shiraz دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓیراز'),
(28283, 'https://ror.org/03xbq6057', 'en', 1, 'https://ror.org/03xbq6057 Kobe Institute Of Computing ē„žęˆøęƒ…å ±å¤§å­¦é™¢å¤§å­¦'),
(28284, 'https://ror.org/03xcvt065', 'en', 1, 'https://ror.org/03xcvt065 Los Medanos College'),
(28285, 'https://ror.org/03xf99d80', 'en', 1, 'https://ror.org/03xf99d80 Hanlyo University ķ•œė ¤ėŒ€ķ•™źµ'),
(28286, 'https://ror.org/03xfjma97', 'en', 1, 'https://ror.org/03xfjma97 Lyceum-Northwestern University'),
(28287, 'https://ror.org/03xmtk846', 'en', 1, 'https://ror.org/03xmtk846 Vincent Pol University Wyższa Szkoła Społeczno-Przyrodnicza im. Wincentego Pola w Lublinie'),
(28288, 'https://ror.org/03xnq6b79', 'en', 1, 'https://ror.org/03xnq6b79 New York State Historical Association'),
(28289, 'https://ror.org/03xpxn276', 'en', 1, 'https://ror.org/03xpxn276 David Agmashenebeli University of Georgia įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ“įƒįƒ•įƒ˜įƒ— įƒįƒ¦įƒ›įƒįƒØįƒ”įƒœįƒ”įƒ‘įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28290, 'https://ror.org/03xqzzq44', 'id', 1, 'https://ror.org/03xqzzq44 Christian University of Indonesia Universitas Kristen Indonesia'),
(28291, 'https://ror.org/03xtc7g80', 'en', 1, 'https://ror.org/03xtc7g80 Industrial Management Institute سازمان Ł…ŲÆŁŠŲ±ŁŠŲŖ ŲµŁ†Ų¹ŲŖŁŠ'),
(28292, 'https://ror.org/03xvjtz09', 'en', 1, 'https://ror.org/03xvjtz09 Hengshui University 蔔氓学院'),
(28293, 'https://ror.org/03xyq7v33', 'en', 1, 'https://ror.org/03xyq7v33 Bunkyo Gakuin University 文京学院大学'),
(28294, 'https://ror.org/03xywcv04', 'en', 1, 'https://ror.org/03xywcv04 Phoenix Art Museum'),
(28295, 'https://ror.org/03xzjyz35', 'en', 1, 'https://ror.org/03xzjyz35 Odessa National Economics University ŠžŠ“ŠµŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28296, 'https://ror.org/03y0kgv22', 'en', 1, 'https://ror.org/03y0kgv22 Ural State Academy of Veterinary Medicine'),
(28297, 'https://ror.org/03y0sm881', 'no_lang_code', 1, 'https://ror.org/03y0sm881 Haigazian University UniversitĆ© haigazian Õ€Õ”ÕµÕÆÕ”Õ¦ÕµÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ Ų¬Ų§Ł…Ų¹Ų© Ł‡Ų§ŁŠŁƒŲ§Ų²ŁŠŲ§Ł†'),
(28298, 'https://ror.org/03y0w9190', 'en', 1, 'https://ror.org/03y0w9190 Beijing Film Academy åŒ—äŗ¬ē”µå½±å­¦é™¢'),
(28299, 'https://ror.org/03y12yp46', 'en', 1, 'https://ror.org/03y12yp46 Nakhon Pathom Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąø›ąøąø”'),
(28300, 'https://ror.org/03y1f1208', 'no_lang_code', 1, 'https://ror.org/03y1f1208 Railway Research Institute (Czechia) Výzkumný Ústav ŽelezničnĆ­'),
(28301, 'https://ror.org/03y1hrs26', 'en', 1, 'https://ror.org/03y1hrs26 Kolhan University'),
(28302, 'https://ror.org/03y2k8882', 'en', 1, 'https://ror.org/03y2k8882 Marathwada Agricultural University वसंतराव ą¤Øą¤¾ą¤ˆą¤• मराठवाऔा ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(28303, 'https://ror.org/03y3an855', 'en', 1, 'https://ror.org/03y3an855 Academia Națională de Informații National Intelligence Academy'),
(28304, 'https://ror.org/03y601s20', 'en', 1, 'https://ror.org/03y601s20 University of Bihać Univerzitet u Bihaću Универзитет у Š‘ŠøŃ…Š°Ń›Ńƒ'),
(28305, 'https://ror.org/03y8n3k44', 'en', 1, 'https://ror.org/03y8n3k44 Edogawa University ę±Ÿęˆøå·å¤§å­¦'),
(28306, 'https://ror.org/03ya6rh87', 'en', 1, 'https://ror.org/03ya6rh87 American Repertory Theater'),
(28307, 'https://ror.org/03yahhs20', 'en', 1, 'https://ror.org/03yahhs20 Bastar University ą¤¬ą¤øą„ą¤¤ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28308, 'https://ror.org/03yca6a35', 'id', 1, 'https://ror.org/03yca6a35 Universitas Ratu Samban'),
(28309, 'https://ror.org/03ydd9q52', 'en', 1, 'https://ror.org/03ydd9q52 Nara Prefectural University å„ˆč‰ÆēœŒē«‹å¤§å­¦'),
(28310, 'https://ror.org/03yezd949', 'en', 1, 'https://ror.org/03yezd949 Quinebaug Valley Community College'),
(28311, 'https://ror.org/03yfe9v83', 'en', 1, 'https://ror.org/03yfe9v83 Air University جامعہ فضایہ'),
(28312, 'https://ror.org/03yhc6593', 'en', 1, 'https://ror.org/03yhc6593 Ateneo de Zamboanga University Pamantasang Ateneo de Zamboanga'),
(28313, 'https://ror.org/03yhyb689', 'no_lang_code', 1, 'https://ror.org/03yhyb689 Maakhir University Ų¬Ų§Ł…Ų¹Ų© Ł…Ų§Ų®Ų±ā€Ž'),
(28314, 'https://ror.org/03yj9h174', 'en', 1, 'https://ror.org/03yj9h174 Gulf and Caribbean Fisheries Institute'),
(28315, 'https://ror.org/03yjyed28', 'en', 1, 'https://ror.org/03yjyed28 Karlshochschule International University'),
(28316, 'https://ror.org/03yme6x53', 'en', 1, 'https://ror.org/03yme6x53 International Business School'),
(28317, 'https://ror.org/03ymnzh47', 'no_lang_code', 1, 'https://ror.org/03ymnzh47 TOS Varnsdorf (Czechia)'),
(28318, 'https://ror.org/03ynprv96', 'en', 1, 'https://ror.org/03ynprv96 Shih Hsin University 世新大學'),
(28319, 'https://ror.org/03yp2sd38', 'en', 1, 'https://ror.org/03yp2sd38 Massanutten Regional Library'),
(28320, 'https://ror.org/03yqhqq55', 'no_lang_code', 1, 'https://ror.org/03yqhqq55 SurfaceTreat (Czechia)'),
(28321, 'https://ror.org/03yr0v123', 'en', 1, 'https://ror.org/03yr0v123 Mackinac State Historic Parks'),
(28322, 'https://ror.org/03ys01s76', 'en', 1, 'https://ror.org/03ys01s76 Public Media Connect'),
(28323, 'https://ror.org/03ys49e51', 'en', 1, 'https://ror.org/03ys49e51 Volga State University of Technology Поволжский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28324, 'https://ror.org/03yta1g89', 'en', 1, 'https://ror.org/03yta1g89 Niigata College of Nursing ę–°ę½ŸēœŒē«‹ēœ‹č­·å¤§å­¦'),
(28325, 'https://ror.org/03yv6sb54', 'no_lang_code', 1, 'https://ror.org/03yv6sb54 OT Energy Services (Czechia)'),
(28326, 'https://ror.org/03yvdgx21', 'en', 1, 'https://ror.org/03yvdgx21 Victoria School of Management'),
(28327, 'https://ror.org/03yyde753', 'en', 1, 'https://ror.org/03yyde753 International Management Institute Saint Petersburg ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента'),
(28328, 'https://ror.org/03yz74e78', 'no_lang_code', 1, 'https://ror.org/03yz74e78 Shiseikan University 至誠館大学'),
(28329, 'https://ror.org/03yzt0f97', 'pl', 1, 'https://ror.org/03yzt0f97 Olsztyńska Szkoła Wyższa im. Józefa Rusieckiego'),
(28330, 'https://ror.org/03z4aa977', 'no_lang_code', 1, 'https://ror.org/03z4aa977 Atmos (Czechia)'),
(28331, 'https://ror.org/03z698x91', 'en', 1, 'https://ror.org/03z698x91 National Pingtung University åœ‹ē«‹å±ę±å¤§å­ø'),
(28332, 'https://ror.org/03zcb0w86', 'en', 1, 'https://ror.org/03zcb0w86 Mercer Museum and Fonthill Castle'),
(28333, 'https://ror.org/03zcb2d36', 'en', 1, 'https://ror.org/03zcb2d36 McPherson University'),
(28334, 'https://ror.org/03zcd8242', 'en', 1, 'https://ror.org/03zcd8242 Queens Museum'),
(28335, 'https://ror.org/03zf73d71', 'id', 1, 'https://ror.org/03zf73d71 Universitas Muhammadiyah Lampung'),
(28336, 'https://ror.org/03zfb6x57', 'en', 1, 'https://ror.org/03zfb6x57 Detroit Institute of Arts'),
(28337, 'https://ror.org/03zfwg795', 'no_lang_code', 1, 'https://ror.org/03zfwg795 Chuo Gakuin University 中央学院大学'),
(28338, 'https://ror.org/03zg21k42', 'en', 1, 'https://ror.org/03zg21k42 Sports Research Institute Of Czech Armed Forces'),
(28339, 'https://ror.org/03zgadm16', 'en', 1, 'https://ror.org/03zgadm16 Bunri University of Hospitality 脿武文理大学'),
(28340, 'https://ror.org/03zhqv657', 'en', 1, 'https://ror.org/03zhqv657 Marshall B. Ketchum University'),
(28341, 'https://ror.org/03zjb7z20', 'en', 1, 'https://ror.org/03zjb7z20 Fukushima University ē¦å³¶å¤§å­¦'),
(28342, 'https://ror.org/03zjsm671', 'en', 1, 'https://ror.org/03zjsm671 Riga Aeronautical Institute Rīgas Aeronavigācijas institūts'),
(28343, 'https://ror.org/03zjvmt75', 'en', 1, 'https://ror.org/03zjvmt75 Mykolayiv National Agrarian University ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŠøŠŗŠ¾Š»Š°ŠµŠ²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28344, 'https://ror.org/03zjy9626', 'en', 1, 'https://ror.org/03zjy9626 Jizzakh Polytechnic Institute Jizzax Poltexnika Instituti'),
(28345, 'https://ror.org/03zka7717', 'en', 1, 'https://ror.org/03zka7717 University of Tifariti Ų¬Ų§Ł…Ų¹Ų© تيفاريتي'),
(28346, 'https://ror.org/03zkjvs45', 'es', 1, 'https://ror.org/03zkjvs45 Universidad del Tepeyac'),
(28347, 'https://ror.org/03zkv1382', 'en', 1, 'https://ror.org/03zkv1382 Amherst Pelham Regional School District'),
(28348, 'https://ror.org/03znmxh49', 'en', 1, 'https://ror.org/03znmxh49 Grail Movement'),
(28349, 'https://ror.org/03zrfs389', 'en', 1, 'https://ror.org/03zrfs389 Aichi Bunkyo University ę„›ēŸ„ę–‡ę•™å¤§å­¦'),
(28350, 'https://ror.org/03zwesg40', 'en', 1, 'https://ror.org/03zwesg40 Indonesia Open University Universitas Terbuka'),
(28351, 'https://ror.org/03zy1r264', 'en', 1, 'https://ror.org/03zy1r264 Montclair Art Museum'),
(28352, 'https://ror.org/03zyppr86', 'en', 1, 'https://ror.org/03zyppr86 Tulsa City-County Library'),
(28353, 'https://ror.org/03zz2hh98', 'no_lang_code', 1, 'https://ror.org/03zz2hh98 VR Group (Czechia)'),
(28354, 'https://ror.org/03zzekj93', 'en', 1, 'https://ror.org/03zzekj93 University of Luzon'),
(28355, 'https://ror.org/04004q467', 'en', 1, 'https://ror.org/04004q467 Ocean Conservancy'),
(28356, 'https://ror.org/0400qtr36', 'en', 1, 'https://ror.org/0400qtr36 Lehigh County Historical Society'),
(28357, 'https://ror.org/0403tv949', 'en', 1, 'https://ror.org/0403tv949 Nalanda University नालंदा ą¤†ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą¤Øą¤¾ą¤²ą¤Øą„ą¤¦ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਨਾਲੰਦਾ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®Øą®¾ą®²ą®ØąÆą®¤ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ నలందా ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(28358, 'https://ror.org/0403ytw22', 'en', 1, 'https://ror.org/0403ytw22 Chandra Shekhar Azad University of Agriculture and Technology ą¤šą¤‚ą¤¦ą„ą¤° ą¤¶ą„‡ą¤–ą¤° ą¤†ą¤œą¤¾ą¤¦ ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28359, 'https://ror.org/0404f9j94', 'en', 1, 'https://ror.org/0404f9j94 Gulistan State University Guliston universiteti'),
(28360, 'https://ror.org/0404wkz93', 'en', 1, 'https://ror.org/0404wkz93 Silesian Museum SlezskƩ zemskƩ muzeum'),
(28361, 'https://ror.org/0406kzg67', 'en', 1, 'https://ror.org/0406kzg67 Georgia OKeeffe Museum'),
(28362, 'https://ror.org/0406t3m57', 'fr', 1, 'https://ror.org/0406t3m57 UniversitƩ Nantes Angers Le Mans'),
(28363, 'https://ror.org/0408gh695', 'en', 1, 'https://ror.org/0408gh695 Nakhon Sawan Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąøŖąø§ąø£ąø£ąø„ą¹Œ'),
(28364, 'https://ror.org/04096bn69', 'no_lang_code', 1, 'https://ror.org/04096bn69 Dürr Systems (Czechia)'),
(28365, 'https://ror.org/040acyg58', 'en', 1, 'https://ror.org/040acyg58 Saint Patrick''s Seminary and University'),
(28366, 'https://ror.org/040cb6934', 'cs', 1, 'https://ror.org/040cb6934 ČeskĆ” Společnost ChemickĆ”'),
(28367, 'https://ror.org/040cm8d21', 'en', 1, 'https://ror.org/040cm8d21 International Burch University Međunarodni univerzitet Burch'),
(28368, 'https://ror.org/040eqhp13', 'en', 1, 'https://ror.org/040eqhp13 Islamic University of Lebanon الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© في لبنان'),
(28369, 'https://ror.org/040f6ar92', 'en', 1, 'https://ror.org/040f6ar92 Tafresh University دانؓگاه تفرؓ'),
(28370, 'https://ror.org/040gghh09', 'no_lang_code', 1, 'https://ror.org/040gghh09 Chugoku Gakuen University äø­å›½å­¦åœ’å¤§å­¦'),
(28371, 'https://ror.org/040jmyh64', 'en', 1, 'https://ror.org/040jmyh64 Jaypee University of Engineering and Technology ą¤œą„‡ą¤Ŗą„€ ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤—ą„ą¤Øą¤¾ą„¤'),
(28372, 'https://ror.org/040knvs26', 'en', 1, 'https://ror.org/040knvs26 Akdeniz Karpaz Üniversitesi University of Mediterranean Karpasia'),
(28373, 'https://ror.org/040kwjv41', 'en', 1, 'https://ror.org/040kwjv41 Kobe Kaisei College ē„žęˆøęµ·ę˜Ÿå„³å­å­¦é™¢å¤§å­¦'),
(28374, 'https://ror.org/040m1gm26', 'id', 1, 'https://ror.org/040m1gm26 Universitas Surakarta'),
(28375, 'https://ror.org/040n9c877', 'id', 1, 'https://ror.org/040n9c877 Universitas Kadiri'),
(28376, 'https://ror.org/040nnqy18', 'en', 1, 'https://ror.org/040nnqy18 National Baseball Hall of Fame and Museum'),
(28377, 'https://ror.org/040p5b123', 'en', 1, 'https://ror.org/040p5b123 Neisse University'),
(28378, 'https://ror.org/040pya631', 'en', 1, 'https://ror.org/040pya631 State Library of Massachusetts'),
(28379, 'https://ror.org/040q3y035', 'en', 1, 'https://ror.org/040q3y035 Volgograd Institute of Economics, Sociology and Law ВолгограГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, социологии Šø права'),
(28380, 'https://ror.org/040rjhz75', 'en', 1, 'https://ror.org/040rjhz75 Yukon River Drainage Fisheries Association'),
(28381, 'https://ror.org/040skpd26', 'pl', 1, 'https://ror.org/040skpd26 Wyższa Szkoła Umiejętności im. Stanisława Staszica w Kielcach'),
(28382, 'https://ror.org/040vydp62', 'en', 1, 'https://ror.org/040vydp62 Mint Museum'),
(28383, 'https://ror.org/040wb2y55', 'no_lang_code', 1, 'https://ror.org/040wb2y55 University of Luhansk Ługański Uniwersytet Narodowy im. Tarasa Szewczenki Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Тараса Шевченко Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Тараса Шевченка'),
(28384, 'https://ror.org/040yze711', 'en', 1, 'https://ror.org/040yze711 Schenectady County Historical Society'),
(28385, 'https://ror.org/04155gf20', 'en', 1, 'https://ror.org/04155gf20 Institute of Technologists ć‚‚ć®ć¤ćć‚Šå¤§å­¦'),
(28386, 'https://ror.org/0415bcp90', 'en', 1, 'https://ror.org/0415bcp90 Churchill Centre'),
(28387, 'https://ror.org/0417k2898', 'en', 1, 'https://ror.org/0417k2898 Innovative University of Eurasia Š˜Š½Š½Š¾Š²Š°Ń†ŠøŠ¾Š½Š½Ń‹Š¹ Евразийский Университет'),
(28388, 'https://ror.org/041990296', 'en', 1, 'https://ror.org/041990296 Bratsk State University Братский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28389, 'https://ror.org/041a5qb18', 'no_lang_code', 1, 'https://ror.org/041a5qb18 KPM Consult (Czechia)'),
(28390, 'https://ror.org/041b0hx46', 'en', 1, 'https://ror.org/041b0hx46 Institute of State Administration Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŠŠ“Š¼ŠøŠ½ŠøŃŃ‚Ń€ŠøŃ€Š¾Š²Š°Š½ŠøŃ'),
(28391, 'https://ror.org/041bgnt86', 'no_lang_code', 1, 'https://ror.org/041bgnt86 Bila Tserkva National Agrarian University Š‘Ń–Š»Š¾Ń†ŠµŃ€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28392, 'https://ror.org/041c53527', 'no_lang_code', 1, 'https://ror.org/041c53527 Třinec Iron and Steel Works TřineckĆ© ŽelezĆ”rny (Czechia)'),
(28393, 'https://ror.org/041dv9q58', 'en', 1, 'https://ror.org/041dv9q58 Lourdes University'),
(28394, 'https://ror.org/041dvv921', 'en', 1, 'https://ror.org/041dvv921 Orange County Library System'),
(28395, 'https://ror.org/041fmvm66', 'en', 1, 'https://ror.org/041fmvm66 Astrakhan Institute of Civil Engineering Астраханский инженерно-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(28396, 'https://ror.org/041gg4s51', 'en', 1, 'https://ror.org/041gg4s51 Natrona County Public Library'),
(28397, 'https://ror.org/041hzs681', 'en', 1, 'https://ror.org/041hzs681 Chuncheon National University of Education ģ¶˜ģ²œźµģœ”ėŒ€ķ•™źµ'),
(28398, 'https://ror.org/041kq1b88', 'en', 1, 'https://ror.org/041kq1b88 Lenox Library Association'),
(28399, 'https://ror.org/041maek06', 'pl', 1, 'https://ror.org/041maek06 Wyższa Szkoła Edukacji Zdrowotnej i Nauk Społecznych w Łodzi'),
(28400, 'https://ror.org/041qsth84', 'en', 1, 'https://ror.org/041qsth84 Balochistan University of Engineering and Technology ŲØŁ„ŁˆŚ†Ų³ŲŖŲ§Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ Ų®Ų¶ŲÆŲ§Ų±'),
(28401, 'https://ror.org/041r0kq89', 'en', 1, 'https://ror.org/041r0kq89 Russian School of Private Law Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń школа частного права'),
(28402, 'https://ror.org/041r66s68', 'en', 1, 'https://ror.org/041r66s68 Moscow State Academy of Veterinary Medicine and Biotechnology named after Skryabin ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ветеринарной меГицины Šø биотехнологии имени К. И. Š”ŠŗŃ€ŃŠ±ŠøŠ½Š°'),
(28403, 'https://ror.org/041szz343', 'en', 1, 'https://ror.org/041szz343 Volgograd State Technical University Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ВолгограГский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28404, 'https://ror.org/041xnqz41', 'en', 1, 'https://ror.org/041xnqz41 Rashtriya Sanskrit Vidyapeetha ą°°ą°¾ą°·ą±ą°Ÿą±ą°°ą±€ą°Æ ą°øą°‚ą°øą±ą°•ą±ƒą°¤ ą°µą°æą°¦ą±ą°Æą°¾ą°Ŗą±€ą° ą°‚'),
(28405, 'https://ror.org/0420yxq36', 'no_lang_code', 1, 'https://ror.org/0420yxq36 Demonta Trade (Czechia)'),
(28406, 'https://ror.org/042160f93', 'en', 1, 'https://ror.org/042160f93 Astrakhan State Conservatory ŠŃŃ‚Ń€Š°Ń…Š°Š½ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠšŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(28407, 'https://ror.org/04239hb35', 'en', 1, 'https://ror.org/04239hb35 Arena Stage'),
(28408, 'https://ror.org/0423bpd98', 'en', 1, 'https://ror.org/0423bpd98 James Sprunt Community College'),
(28409, 'https://ror.org/0423p3470', 'en', 1, 'https://ror.org/0423p3470 Western Pocono Community Library'),
(28410, 'https://ror.org/0423r3m86', 'en', 1, 'https://ror.org/0423r3m86 Hellenic American University'),
(28411, 'https://ror.org/0424c1c69', 'en', 1, 'https://ror.org/0424c1c69 Stavropol State University'),
(28412, 'https://ror.org/0425ee430', 'en', 1, 'https://ror.org/0425ee430 Kona Historical Society'),
(28413, 'https://ror.org/042967d53', 'en', 1, 'https://ror.org/042967d53 El Asher University Ų¬Ų§Ł…Ų¹Ų© العاؓر من Ų±Ł…Ų¶Ų§Ł†ā€Žā€Ž'),
(28414, 'https://ror.org/042acmv76', 'en', 1, 'https://ror.org/042acmv76 Centre Hospitalier et Universitaire de YaoundƩ University Teaching Hospital of Yaounde'),
(28415, 'https://ror.org/042aj7s67', 'id', 1, 'https://ror.org/042aj7s67 Universitas Muhammadiyah Kupang'),
(28416, 'https://ror.org/042asde39', 'en', 1, 'https://ror.org/042asde39 Pennsylvania Emergency Management Agency'),
(28417, 'https://ror.org/042cy6c15', 'en', 1, 'https://ror.org/042cy6c15 Salish Sea Expeditions'),
(28418, 'https://ror.org/042dtza69', 'en', 1, 'https://ror.org/042dtza69 International Information Technologies University ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ информационных технологий Єалықаралық ақпараттық Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃŠ»Š°Ń€ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(28419, 'https://ror.org/042h5qy30', 'en', 1, 'https://ror.org/042h5qy30 International Women University'),
(28420, 'https://ror.org/042jp8q52', 'en', 1, 'https://ror.org/042jp8q52 Pskov State Pedagogical Institute Псковский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(28421, 'https://ror.org/042jrxd70', 'en', 1, 'https://ror.org/042jrxd70 International University of Chabahar دانؓگاه ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ چابهار'),
(28422, 'https://ror.org/042jsgw44', 'en', 1, 'https://ror.org/042jsgw44 Chinju National University of Education ģ§„ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(28423, 'https://ror.org/042k5fe81', 'en', 1, 'https://ror.org/042k5fe81 Yancheng Teachers University'),
(28424, 'https://ror.org/042kvvy70', 'en', 1, 'https://ror.org/042kvvy70 American Councils for International Education'),
(28425, 'https://ror.org/042mxm271', 'en', 1, 'https://ror.org/042mxm271 Moscow State University of Food Production Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ пищевых произвоГств'),
(28426, 'https://ror.org/042p6cb87', 'no_lang_code', 1, 'https://ror.org/042p6cb87 Infram (Czechia)'),
(28427, 'https://ror.org/042r33k66', 'en', 1, 'https://ror.org/042r33k66 University of Pereslavl Университет гороГа ŠŸŠµŃ€ŠµŃŠ»Š°Š²Š»Ń имени А. К. ŠŠ¹Š»Š°Š¼Š°Š·ŃŠ½Š°'),
(28428, 'https://ror.org/042rwda30', 'en', 1, 'https://ror.org/042rwda30 North Coast Marine Mammal Center'),
(28429, 'https://ror.org/042sm6918', 'en', 1, 'https://ror.org/042sm6918 Historic Annapolis Foundation'),
(28430, 'https://ror.org/042v18a02', 'en', 1, 'https://ror.org/042v18a02 Northern Seminary'),
(28431, 'https://ror.org/042vq5636', 'en', 1, 'https://ror.org/042vq5636 Krasnoyarsk State Trade and Economic Institute ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ торгово-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(28432, 'https://ror.org/042vvq103', 'en', 1, 'https://ror.org/042vvq103 Makassed University Ų¬Ų§Ł…Ų¹Ų© المقاصد في بيروت'),
(28433, 'https://ror.org/042xdvf13', 'en', 1, 'https://ror.org/042xdvf13 Chuvash State Agricultural Academy Š§ŃƒŠ²Š°ŃˆŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(28434, 'https://ror.org/04304vh75', 'no_lang_code', 1, 'https://ror.org/04304vh75 ArcelorMittal (Czechia)'),
(28435, 'https://ror.org/0430hbm78', 'en', 1, 'https://ror.org/0430hbm78 Nigerian University Games Association'),
(28436, 'https://ror.org/04314q855', 'en', 1, 'https://ror.org/04314q855 Academy of Physiotheray in Wrocław Wyższa Szkoła Fizjoterapii'),
(28437, 'https://ror.org/0431j8w40', 'en', 1, 'https://ror.org/0431j8w40 Rhode Island Historical Society'),
(28438, 'https://ror.org/0431sew76', 'en', 1, 'https://ror.org/0431sew76 Copper Queen Library'),
(28439, 'https://ror.org/043223922', 'en', 1, 'https://ror.org/043223922 Aino University č—é‡Žå¤§å­¦'),
(28440, 'https://ror.org/0433hvq53', 'en', 1, 'https://ror.org/0433hvq53 Gnessin Russian Academy of Music Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø имени Гнесиных'),
(28441, 'https://ror.org/04345w666', 'en', 1, 'https://ror.org/04345w666 Vermont Ski and Snowboard Museum'),
(28442, 'https://ror.org/043519573', 'en', 1, 'https://ror.org/043519573 Rutland Free Library'),
(28443, 'https://ror.org/0435nmp91', 'en', 1, 'https://ror.org/0435nmp91 Preservation Virginia'),
(28444, 'https://ror.org/0437a7n31', 'en', 1, 'https://ror.org/0437a7n31 Liberal Arts University Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28445, 'https://ror.org/0438jm029', 'en', 1, 'https://ror.org/0438jm029 Northwest Open Technical University Деверо-ЗапаГный открытый технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28446, 'https://ror.org/043arvz49', 'no_lang_code', 1, 'https://ror.org/043arvz49 Technical services for air protection Prague (Czechia) Technické služby ochrany ovzduŔí Praha'),
(28447, 'https://ror.org/043c66817', 'en', 1, 'https://ror.org/043c66817 International Fund for Animal Welfare'),
(28448, 'https://ror.org/043dtk166', 'en', 1, 'https://ror.org/043dtk166 Jahon Iqtisodiyoti va Diplomatiya Universiteti University of World Economy and Diplomacy'),
(28449, 'https://ror.org/043gwkh50', 'en', 1, 'https://ror.org/043gwkh50 Biblioteca PĆŗblica de Houston Houston Public Library'),
(28450, 'https://ror.org/043hpy847', 'en', 1, 'https://ror.org/043hpy847 Royal University for Women الجامعة Ų§Ł„Ł…Ł„ŁƒŁŠŲ© للبنات'),
(28451, 'https://ror.org/043hwa340', 'en', 1, 'https://ror.org/043hwa340 Huntington Theatre Company'),
(28452, 'https://ror.org/043jfav91', 'en', 1, 'https://ror.org/043jfav91 Surigao del Sur State University'),
(28453, 'https://ror.org/043nk9b40', 'en', 1, 'https://ror.org/043nk9b40 Vladimir Law Institute Š’Š›ŠŠ”Š˜ŠœŠ˜Š Š”ŠšŠ˜Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š”Š˜Š Š ŠžŠ”Š”Š˜Š˜'),
(28454, 'https://ror.org/043q5er54', 'en', 1, 'https://ror.org/043q5er54 Frederick Taylor University'),
(28455, 'https://ror.org/043rtjx90', 'en', 1, 'https://ror.org/043rtjx90 Odessa National A. V. Nezhdanova Academy of Music ŠžŠ“ŠµŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŃƒŠ·ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń імені А. Š’. ŠŠµŠ¶Š“Š°Š½Š¾Š²Š¾Ń—'),
(28456, 'https://ror.org/043say313', 'en', 1, 'https://ror.org/043say313 Cavite State University'),
(28457, 'https://ror.org/043spm784', 'en', 1, 'https://ror.org/043spm784 Institute of the Black World'),
(28458, 'https://ror.org/043vmz451', 'en', 1, 'https://ror.org/043vmz451 Syrian Virtual University الجامعة Ų§Ł„Ų§ŁŲŖŲ±Ų§Ų¶ŁŠŲ© Ų§Ł„Ų³ŁˆŲ±ŁŠŲ©'),
(28459, 'https://ror.org/043zbt471', 'en', 1, 'https://ror.org/043zbt471 Dusit Thani College ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø”ąøøąøŖąø“ąø•ąø˜ąø²ąø™ąøµ ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(28460, 'https://ror.org/043zh9f19', 'en', 1, 'https://ror.org/043zh9f19 Islamic Azad University of Sabzevar دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سبزوار'),
(28461, 'https://ror.org/0440wca55', 'en', 1, 'https://ror.org/0440wca55 Bloomington Public Library'),
(28462, 'https://ror.org/0441s6w50', 'no_lang_code', 1, 'https://ror.org/0441s6w50 Seitoku University 聖徳大学'),
(28463, 'https://ror.org/0443ap166', 'en', 1, 'https://ror.org/0443ap166 First Moscow Law Institute ŠŸŠµŃ€Š²Ń‹Š¹ московский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(28464, 'https://ror.org/0443y6a81', 'en', 1, 'https://ror.org/0443y6a81 Academy of Fine Arts and Design in Bratislava VysokÔ Ŕkola výtvarných umení v Bratislave'),
(28465, 'https://ror.org/0444jhh32', 'en', 1, 'https://ror.org/0444jhh32 Bandung Raya University Universitas Bandung Raya'),
(28466, 'https://ror.org/0444rfc43', 'en', 1, 'https://ror.org/0444rfc43 George C Marshall Foundation'),
(28467, 'https://ror.org/0447ajy94', 'en', 1, 'https://ror.org/0447ajy94 University of Wollongong in Dubai Ų¬Ų§Ł…Ų¹Ų© ŁˆŁ„ŁˆŁ†ŲŗŁˆŁ†Ųŗ في دبي'),
(28468, 'https://ror.org/044b0xj37', 'en', 1, 'https://ror.org/044b0xj37 Indonesia University of Education Universitas Pendidikan Indonesia'),
(28469, 'https://ror.org/044b9hy83', 'en', 1, 'https://ror.org/044b9hy83 Faculty of Commercial and Business Sciences Fakultete za Komercialne in Poslovne Vede'),
(28470, 'https://ror.org/044c3e517', 'en', 1, 'https://ror.org/044c3e517 Wildlife Research Team'),
(28471, 'https://ror.org/044cm3z84', 'en', 1, 'https://ror.org/044cm3z84 Belgorod National Research University БелгороГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28472, 'https://ror.org/044dnwe52', 'en', 1, 'https://ror.org/044dnwe52 Minnesota Department of Public Safety'),
(28473, 'https://ror.org/044es9645', 'no_lang_code', 1, 'https://ror.org/044es9645 ČeskomoravskĆ” Kolben Daněk (Czechia)'),
(28474, 'https://ror.org/044f1sg93', 'en', 1, 'https://ror.org/044f1sg93 Oduduwa University'),
(28475, 'https://ror.org/044fdxc08', 'en', 1, 'https://ror.org/044fdxc08 Coastal States Organization'),
(28476, 'https://ror.org/044g8hq51', 'en', 1, 'https://ror.org/044g8hq51 American Council on the Teaching of Foreign Languages'),
(28477, 'https://ror.org/044ghaj56', 'no_lang_code', 1, 'https://ror.org/044ghaj56 Zhytomyr Ivan Franko State University Š–ŠøŃ‚Š¾Š¼ŠøŃ€ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана Франка'),
(28478, 'https://ror.org/044gnjv68', 'en', 1, 'https://ror.org/044gnjv68 Pyatigorsk State University ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28479, 'https://ror.org/044h3my24', 'en', 1, 'https://ror.org/044h3my24 Shadrinsk State Pedagogical Institute ШаГринский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28480, 'https://ror.org/044k1rn02', 'en', 1, 'https://ror.org/044k1rn02 Institute of Business and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса Šø права'),
(28481, 'https://ror.org/044mjsc46', 'en', 1, 'https://ror.org/044mjsc46 Facing History and Ourselves'),
(28482, 'https://ror.org/044nhav08', 'id', 1, 'https://ror.org/044nhav08 Institut Sains dan Teknologi Al-Kamal'),
(28483, 'https://ror.org/044qb6z05', 'no_lang_code', 1, 'https://ror.org/044qb6z05 University of Goroka'),
(28484, 'https://ror.org/044r99091', 'en', 1, 'https://ror.org/044r99091 Saigon Technology University ĐẔi hį»c CĆ“ng nghệ SĆ i Gòn'),
(28485, 'https://ror.org/044sqta95', 'en', 1, 'https://ror.org/044sqta95 Uczelnia Vistula Vistula University'),
(28486, 'https://ror.org/044tdw637', 'en', 1, 'https://ror.org/044tdw637 Mofid University دانؓگاه Ł…ŁŪŒŲÆ'),
(28487, 'https://ror.org/044tv3769', 'id', 1, 'https://ror.org/044tv3769 Universitas Kapuas Sintang'),
(28488, 'https://ror.org/044w7r064', 'en', 1, 'https://ror.org/044w7r064 Restore America''s Estuaries'),
(28489, 'https://ror.org/044wjg020', 'en', 1, 'https://ror.org/044wjg020 Atlanta-Fulton County Library System'),
(28490, 'https://ror.org/0450r7s53', 'no_lang_code', 1, 'https://ror.org/0450r7s53 T-CZ (Czechia)'),
(28491, 'https://ror.org/045101r15', 'no_lang_code', 1, 'https://ror.org/045101r15 B & M InterNets (Czechia)'),
(28492, 'https://ror.org/04515fs89', 'no_lang_code', 1, 'https://ror.org/04515fs89 Vuje (Czechia)'),
(28493, 'https://ror.org/0451bvc41', 'en', 1, 'https://ror.org/0451bvc41 Ganja State University Gəncə Dƶvlət Universiteti Š“ŃŠ½Š“Š¶ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28494, 'https://ror.org/0451e0x59', 'en', 1, 'https://ror.org/0451e0x59 Episcopal Diocese of Pennsylvania');
INSERT INTO `rors` VALUES
(28495, 'https://ror.org/0451vzh57', 'en', 1, 'https://ror.org/0451vzh57 Laramie Plains Museum'),
(28496, 'https://ror.org/0454rb348', 'en', 1, 'https://ror.org/0454rb348 University of Science and Technology of Togo UniversitƩ des Sciences et Technologies du Togo'),
(28497, 'https://ror.org/0455zdm83', 'en', 1, 'https://ror.org/0455zdm83 Busan University of Foreign Studies ė¶€ģ‚°ģ™øźµ­ģ–“ėŒ€ķ•™źµ'),
(28498, 'https://ror.org/0456fjb45', 'en', 1, 'https://ror.org/0456fjb45 Jewish Museum'),
(28499, 'https://ror.org/0456pvf72', 'en', 1, 'https://ror.org/0456pvf72 WMHT Educational Telecommunications'),
(28500, 'https://ror.org/0456z6869', 'no_lang_code', 1, 'https://ror.org/0456z6869 Crytur (Czechia)'),
(28501, 'https://ror.org/0457fn135', 'en', 1, 'https://ror.org/0457fn135 University of Community Health Magway į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(28502, 'https://ror.org/0457pxg28', 'en', 1, 'https://ror.org/0457pxg28 Nanjing University of the Arts å—äŗ¬č‰ŗęœÆå­¦é™¢'),
(28503, 'https://ror.org/0457r1112', 'en', 1, 'https://ror.org/0457r1112 New York City Municipal Archives'),
(28504, 'https://ror.org/0459j6s55', 'no_lang_code', 1, 'https://ror.org/0459j6s55 Intertek (United Kingdom)'),
(28505, 'https://ror.org/045a0wr43', 'en', 1, 'https://ror.org/045a0wr43 Comanche Nation College'),
(28506, 'https://ror.org/045a1m333', 'no_lang_code', 1, 'https://ror.org/045a1m333 Lumos Pharma (United States)'),
(28507, 'https://ror.org/045c1s446', 'en', 1, 'https://ror.org/045c1s446 Research and Breeding Institute of Pomology Holovousy'),
(28508, 'https://ror.org/045c2a463', 'en', 1, 'https://ror.org/045c2a463 Comanche National Museum and Cultural Center'),
(28509, 'https://ror.org/045cem663', 'en', 1, 'https://ror.org/045cem663 Albany Institute of History & Art'),
(28510, 'https://ror.org/045cv1381', 'no_lang_code', 1, 'https://ror.org/045cv1381 Tajik Agrarian University Shirinsho Shotemur Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø аграрии Тоҷикистон ТаГжикский аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28511, 'https://ror.org/045fn2c25', 'en', 1, 'https://ror.org/045fn2c25 St.Tammany Parish Government'),
(28512, 'https://ror.org/045hmbf04', 'en', 1, 'https://ror.org/045hmbf04 Ternopil Ivan Pului National Technical University Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана ŠŸŃƒŠ»ŃŽŃ'),
(28513, 'https://ror.org/045jvzr81', 'en', 1, 'https://ror.org/045jvzr81 Quįŗ£ng BƬnh University TrĘ°į»ng ĐẔi hį»c Quįŗ£ng BƬnh'),
(28514, 'https://ror.org/045kcbr23', 'en', 1, 'https://ror.org/045kcbr23 Friendship House'),
(28515, 'https://ror.org/045m60334', 'en', 1, 'https://ror.org/045m60334 Kazan State University of Culture and Arts'),
(28516, 'https://ror.org/045m93336', 'en', 1, 'https://ror.org/045m93336 National University of Equatorial Guinea Universidad Nacional de Guinea Ecuatorial'),
(28517, 'https://ror.org/045mxyc94', 'en', 1, 'https://ror.org/045mxyc94 Turan University Тұран Университеті Университет Š¢ŃƒŃ€Š°Š½'),
(28518, 'https://ror.org/045qb5273', 'en', 1, 'https://ror.org/045qb5273 D.Y. Patil University'),
(28519, 'https://ror.org/045qyjz25', 'no_lang_code', 1, 'https://ror.org/045qyjz25 Baekseok University ė°±ģ„ėŒ€ķ•™źµ'),
(28520, 'https://ror.org/045rmvd16', 'en', 1, 'https://ror.org/045rmvd16 Dhammakaya Open University'),
(28521, 'https://ror.org/045rrq664', 'en', 1, 'https://ror.org/045rrq664 Research Institute for Soil and Water Conservation'),
(28522, 'https://ror.org/045svrn73', 'en', 1, 'https://ror.org/045svrn73 Institut de l''UniversitƩ de Londres Ơ Paris University of London Institute in Paris'),
(28523, 'https://ror.org/045v19n13', 'en', 1, 'https://ror.org/045v19n13 Breyer State Theology University'),
(28524, 'https://ror.org/045vxh980', 'en', 1, 'https://ror.org/045vxh980 National Defence University Ł†ŪŒŲ“Ł†Ł„ ŚˆŪŒŁŁ†Ų³ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒā€Ž'),
(28525, 'https://ror.org/045wqtv91', 'en', 1, 'https://ror.org/045wqtv91 Kislovodsk Humanitarian and Technical Institute КисловоГский Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-Технический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(28526, 'https://ror.org/045z05062', 'en', 1, 'https://ror.org/045z05062 St. Agnes University 平安儳学院大学'),
(28527, 'https://ror.org/045zwes19', 'en', 1, 'https://ror.org/045zwes19 University of West Los Angeles'),
(28528, 'https://ror.org/0461hph98', 'en', 1, 'https://ror.org/0461hph98 Academy of Social and Economic Development ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø произвоГства'),
(28529, 'https://ror.org/0461r7q95', 'en', 1, 'https://ror.org/0461r7q95 University of Seychelles'),
(28530, 'https://ror.org/0461yj464', 'en', 1, 'https://ror.org/0461yj464 Ural State University of Railway Transport Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(28531, 'https://ror.org/04629sk87', 'en', 1, 'https://ror.org/04629sk87 Bukkyo University 佛教大学'),
(28532, 'https://ror.org/0464k6747', 'en', 1, 'https://ror.org/0464k6747 Maine State Archives'),
(28533, 'https://ror.org/046581250', 'en', 1, 'https://ror.org/046581250 Medan Area University Universitas Medan Area'),
(28534, 'https://ror.org/0465cdj45', 'en', 1, 'https://ror.org/0465cdj45 The Higher School of Art and Design Wyższa Szkoła Sztuki i Projektowania w Łodzi'),
(28535, 'https://ror.org/0467jmw31', 'no_lang_code', 1, 'https://ror.org/0467jmw31 ET International (United States)'),
(28536, 'https://ror.org/04688a324', 'en', 1, 'https://ror.org/04688a324 Nakhon Ratchasima Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąø£ąø²ąøŠąøŖąøµąø”ąø²'),
(28537, 'https://ror.org/0469ncz24', 'en', 1, 'https://ror.org/0469ncz24 Dnipropetrovsk State Medical Academy Š”Š½ŠµŠæŃ€Š¾ŠæŠµŃ‚Ń€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š”Š½Ń–ŠæŃ€Š¾ŠæŠµŃ‚Ń€Š¾Š²ŃŃŒŠŗŠ° Гержавна меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(28538, 'https://ror.org/046a1ah60', 'en', 1, 'https://ror.org/046a1ah60 Rostov State Medical University Ростовский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28539, 'https://ror.org/046d7bv94', 'no_lang_code', 1, 'https://ror.org/046d7bv94 Lodestar Research Corporation (United States)'),
(28540, 'https://ror.org/046ha1n26', 'en', 1, 'https://ror.org/046ha1n26 International Vedic Hindu University'),
(28541, 'https://ror.org/046k1gm58', 'en', 1, 'https://ror.org/046k1gm58 Verona Public Library'),
(28542, 'https://ror.org/046k2tb30', 'en', 1, 'https://ror.org/046k2tb30 Washington State Board for Community and Technical Colleges'),
(28543, 'https://ror.org/046r6pk12', 'en', 1, 'https://ror.org/046r6pk12 Guangzhou Sport University å¹æå·žä½“č‚²å­¦é™¢'),
(28544, 'https://ror.org/046st9p05', 'en', 1, 'https://ror.org/046st9p05 Taunggyi University တောင်ကြီး į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(28545, 'https://ror.org/046wccx89', 'en', 1, 'https://ror.org/046wccx89 Angela BoŔkin Faculty of Health Care Fakulteta za zdravstvo Angele BoŔkin'),
(28546, 'https://ror.org/046wjy580', 'en', 1, 'https://ror.org/046wjy580 Fo Guang University 佛光大學'),
(28547, 'https://ror.org/046xqdg50', 'id', 1, 'https://ror.org/046xqdg50 Universitas Ibnu Chaldun Jakarta'),
(28548, 'https://ror.org/046y60k23', 'pl', 1, 'https://ror.org/046y60k23 Wyższa Szkoła Bankowości i Finansów w Katowicach'),
(28549, 'https://ror.org/046zepm61', 'en', 1, 'https://ror.org/046zepm61 Okinawa University 沖縄大学'),
(28550, 'https://ror.org/046zty610', 'en', 1, 'https://ror.org/046zty610 Lake County Public Library'),
(28551, 'https://ror.org/047183794', 'en', 1, 'https://ror.org/047183794 Moscow State Academy of Physical Education ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(28552, 'https://ror.org/04730q569', 'en', 1, 'https://ror.org/04730q569 International University of Kyrgyzstan'),
(28553, 'https://ror.org/0473ch268', 'en', 1, 'https://ror.org/0473ch268 Russian State University for the Humanities Российский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28554, 'https://ror.org/0473nvz85', 'en', 1, 'https://ror.org/0473nvz85 Hanbuk University'),
(28555, 'https://ror.org/04756ha57', 'en', 1, 'https://ror.org/04756ha57 Nagasaki Junshin Catholic University é•·å“Žē“”åæƒå¤§å­¦'),
(28556, 'https://ror.org/0475cfj29', 'en', 1, 'https://ror.org/0475cfj29 Michurinsk State Agrarian University ŠœŠøŃ‡ŃƒŃ€ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28557, 'https://ror.org/0475wjv32', 'no_lang_code', 1, 'https://ror.org/0475wjv32 Polygra (Czechia)'),
(28558, 'https://ror.org/0476g9w78', 'en', 1, 'https://ror.org/0476g9w78 International Marinelife Alliance'),
(28559, 'https://ror.org/0476td389', 'en', 1, 'https://ror.org/0476td389 Tibet Autonomous Region People''s Hospital č„æč—č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(28560, 'https://ror.org/0478mxw43', 'en', 1, 'https://ror.org/0478mxw43 Kamakura Women''s University 鎌倉儳子大学'),
(28561, 'https://ror.org/047a39447', 'en', 1, 'https://ror.org/047a39447 Fayetteville Public Library'),
(28562, 'https://ror.org/047dxs002', 'en', 1, 'https://ror.org/047dxs002 Minsk Institute of Management Минский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ ŠœŃ–Š½ŃŠŗŃ– Ń–Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ ŠŗŃ–Ń€Š°Š²Š°Š½Š½Ń'),
(28563, 'https://ror.org/047g2hq96', 'en', 1, 'https://ror.org/047g2hq96 Illinois Department of Natural Resources'),
(28564, 'https://ror.org/047hk4n08', 'en', 1, 'https://ror.org/047hk4n08 Koahnic Broadcast Corporation'),
(28565, 'https://ror.org/047khpn70', 'en', 1, 'https://ror.org/047khpn70 Keio University Shonan Fujisawa ę…¶ę‡‰ē¾©å”¾å¤§å­¦ę¹˜å—č—¤ę²¢ć‚­ćƒ£ćƒ³ćƒ‘ć‚¹'),
(28566, 'https://ror.org/047mw5m74', 'en', 1, 'https://ror.org/047mw5m74 Jerash University Ų¬Ų§Ł…Ų¹Ų© Ų¬Ų±Ų“'),
(28567, 'https://ror.org/047p4k652', 'en', 1, 'https://ror.org/047p4k652 Willa Cather Foundation'),
(28568, 'https://ror.org/047pn4f69', 'en', 1, 'https://ror.org/047pn4f69 San JosƩ Public Library'),
(28569, 'https://ror.org/047qsc013', 'no_lang_code', 1, 'https://ror.org/047qsc013 Telangana University తెలంగాణ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(28570, 'https://ror.org/047r2sc84', 'no_lang_code', 1, 'https://ror.org/047r2sc84 Slobomir P University Slobomir P Univerzitet Длобомир П Универзитет'),
(28571, 'https://ror.org/047ref397', 'no_lang_code', 1, 'https://ror.org/047ref397 Telematix Group (Czechia)'),
(28572, 'https://ror.org/047rtk203', 'en', 1, 'https://ror.org/047rtk203 Swiss German University Universitas Swiss German'),
(28573, 'https://ror.org/047tfmf12', 'en', 1, 'https://ror.org/047tfmf12 Indigenous People''s Council for Marine Mammals'),
(28574, 'https://ror.org/047vj8n35', 'en', 1, 'https://ror.org/047vj8n35 Tapee University วณทยาคัยตาปี'),
(28575, 'https://ror.org/047wxqh80', 'en', 1, 'https://ror.org/047wxqh80 International Christian University ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ Š„Ń€ŠøŃŃ‚ŠøŃŠ½ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚-ŠšŠøŃ—Š²'),
(28576, 'https://ror.org/047wxqn68', 'en', 1, 'https://ror.org/047wxqn68 Mejiro University 目白大学'),
(28577, 'https://ror.org/047ypym59', 'en', 1, 'https://ror.org/047ypym59 Saint Petersburg Stieglitz State Academy of Art and Design Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š¾-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени А.Š›. Штиглица'),
(28578, 'https://ror.org/047zrsx48', 'en', 1, 'https://ror.org/047zrsx48 Moscow State Industrial University Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28579, 'https://ror.org/0480pdg65', 'no_lang_code', 1, 'https://ror.org/0480pdg65 Shizuoka Eiwa Gakuin University é™å²”č‹±å’Œå­¦é™¢å¤§å­¦'),
(28580, 'https://ror.org/0481fx056', 'en', 1, 'https://ror.org/0481fx056 Gold Nugget Museum'),
(28581, 'https://ror.org/04829c483', 'en', 1, 'https://ror.org/04829c483 Asian American Asian Research Institute'),
(28582, 'https://ror.org/0483fxt86', 'en', 1, 'https://ror.org/0483fxt86 Samarkand State Institute of Foreign Languages Samarqand davlat chet tillar instituti'),
(28583, 'https://ror.org/0483p3z75', 'en', 1, 'https://ror.org/0483p3z75 Louisiana Museum Foundation'),
(28584, 'https://ror.org/0483r5v56', 'en', 1, 'https://ror.org/0483r5v56 Changshin University ģ°½ģ‹ ėŒ€ķ•™źµ'),
(28585, 'https://ror.org/0485fyg31', 'en', 1, 'https://ror.org/0485fyg31 Russian State Agrarian University - Moscow Timiryazev Agricultural Academy Российский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ — МДЄА имени К.А. Š¢ŠøŠ¼ŠøŃ€ŃŠ·ŠµŠ²Š°'),
(28586, 'https://ror.org/048633e68', 'en', 1, 'https://ror.org/048633e68 Higashi Nippon International University ę±ę—„ęœ¬å›½éš›å¤§å­¦'),
(28587, 'https://ror.org/0486gbb16', 'en', 1, 'https://ror.org/0486gbb16 Higher Institute of Computer Science and Management Technology'),
(28588, 'https://ror.org/0486ta465', 'en', 1, 'https://ror.org/0486ta465 Shenzhen Radio and TV University ę·±åœ³å¹æę’­ē”µč§†å¤§å­¦'),
(28589, 'https://ror.org/048a4ax84', 'en', 1, 'https://ror.org/048a4ax84 Northland International University'),
(28590, 'https://ror.org/048bfyy22', 'id', 1, 'https://ror.org/048bfyy22 Universitas Islam Kadiri'),
(28591, 'https://ror.org/048c1xv24', 'en', 1, 'https://ror.org/048c1xv24 Toyo Gakuen University ę±ę“‹å­¦åœ’å¤§å­¦'),
(28592, 'https://ror.org/048c5qr58', 'en', 1, 'https://ror.org/048c5qr58 Ciesla Foundation'),
(28593, 'https://ror.org/048cnkq84', 'en', 1, 'https://ror.org/048cnkq84 Ontario Confederation of University Faculty Associations'),
(28594, 'https://ror.org/048d4j826', 'en', 1, 'https://ror.org/048d4j826 Tamansiswa Palembang University Universitas Tamansiswa Palembang'),
(28595, 'https://ror.org/048d53c31', 'en', 1, 'https://ror.org/048d53c31 Dagestan State Institute of National Economy Дагестанский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нароГного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(28596, 'https://ror.org/048d6j696', 'en', 1, 'https://ror.org/048d6j696 Kennedy–King College'),
(28597, 'https://ror.org/048e0p659', 'en', 1, 'https://ror.org/048e0p659 University of Science and Culture دانؓگاه علم و فرهنگ'),
(28598, 'https://ror.org/048ef3e11', 'id', 1, 'https://ror.org/048ef3e11 Universitas Atma Jaya Makassar'),
(28599, 'https://ror.org/048f9ne85', 'en', 1, 'https://ror.org/048f9ne85 Research Institute of Inorganic Chemistry Výzkumný ústav anorganické chemie, a.s.'),
(28600, 'https://ror.org/048j6n969', 'en', 1, 'https://ror.org/048j6n969 Shubun University 修文大学'),
(28601, 'https://ror.org/048mwn423', 'en', 1, 'https://ror.org/048mwn423 Sardarkrushinagar Dantiwada Agricultural University ąŖ•ą«ƒąŖ·ąŖæ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, ąŖøąŖ°ąŖ¦ąŖ¾ąŖ°ąŖ•ą«ƒąŖ·ąŖæąŖØąŖ—ąŖ° દાંતીવાઔા'),
(28602, 'https://ror.org/048q3sh29', 'en', 1, 'https://ror.org/048q3sh29 Gyan Vihar University'),
(28603, 'https://ror.org/048rfph76', 'en', 1, 'https://ror.org/048rfph76 Institute of International Trade and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾Š¹ торговли Šø права'),
(28604, 'https://ror.org/048t58j41', 'en', 1, 'https://ror.org/048t58j41 Kwangshin University'),
(28605, 'https://ror.org/048tnx725', 'en', 1, 'https://ror.org/048tnx725 Biblioteca PĆŗblica de Filadelfia Free Library of Philadelphia'),
(28606, 'https://ror.org/048yye826', 'en', 1, 'https://ror.org/048yye826 Keene Public Library'),
(28607, 'https://ror.org/048yz1t88', 'no_lang_code', 1, 'https://ror.org/048yz1t88 Sergiyev Posad Humanitarian Institute Дергиево-ПосаГский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(28608, 'https://ror.org/048z9th72', 'no_lang_code', 1, 'https://ror.org/048z9th72 Momoyama Gakuin University ę”ƒå±±å­¦é™¢å¤§å­¦'),
(28609, 'https://ror.org/048zea267', 'en', 1, 'https://ror.org/048zea267 Jagran Lakecity University'),
(28610, 'https://ror.org/0490a2476', 'en', 1, 'https://ror.org/0490a2476 Sapporo International University ęœ­å¹Œå›½éš›å¤§å­¦'),
(28611, 'https://ror.org/0491jx134', 'en', 1, 'https://ror.org/0491jx134 Garfield County Libraries'),
(28612, 'https://ror.org/049345g13', 'no_lang_code', 1, 'https://ror.org/049345g13 NDCon (Czechia)'),
(28613, 'https://ror.org/0495bs219', 'no_lang_code', 1, 'https://ror.org/0495bs219 OKsystem (Czechia)'),
(28614, 'https://ror.org/0496p0503', 'en', 1, 'https://ror.org/0496p0503 Rissho University 立正大学'),
(28615, 'https://ror.org/0496rd968', 'en', 1, 'https://ror.org/0496rd968 California State Railroad Museum'),
(28616, 'https://ror.org/04981wd25', 'en', 1, 'https://ror.org/04981wd25 Reconstructionist Rabbinical College'),
(28617, 'https://ror.org/0498bq185', 'no_lang_code', 1, 'https://ror.org/0498bq185 GIS-Geoindustry (Czechia)'),
(28618, 'https://ror.org/04999ka44', 'no_lang_code', 1, 'https://ror.org/04999ka44 Medipo ZT (Czechia)'),
(28619, 'https://ror.org/049aaxv89', 'no_lang_code', 1, 'https://ror.org/049aaxv89 Sysnet (Czechia)'),
(28620, 'https://ror.org/049c2kr37', 'en', 1, 'https://ror.org/049c2kr37 Kalaidos Fachhochschule Kalaidos University of Applied Sciences'),
(28621, 'https://ror.org/049d63v97', 'en', 1, 'https://ror.org/049d63v97 Takasaki University of Commerce é«˜å“Žå•†ē§‘å¤§å­¦'),
(28622, 'https://ror.org/049e2jc83', 'en', 1, 'https://ror.org/049e2jc83 Institute of Legal Economics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ правовой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(28623, 'https://ror.org/049fvjs25', 'en', 1, 'https://ror.org/049fvjs25 Tokyo University of Social Welfare ę±äŗ¬ē¦ē„‰å¤§å­¦'),
(28624, 'https://ror.org/049gff252', 'en', 1, 'https://ror.org/049gff252 Universitas Sarjanawiyata Tamansiswa University of Sarjanawiyata Tamansiswa'),
(28625, 'https://ror.org/049jpg876', 'en', 1, 'https://ror.org/049jpg876 Higher Institute for Qualitative Studies المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„Ł†ŁˆŲ¹ŁŠŲ©'),
(28626, 'https://ror.org/049m9e566', 'en', 1, 'https://ror.org/049m9e566 Czech Railways'),
(28627, 'https://ror.org/049nmp689', 'en', 1, 'https://ror.org/049nmp689 Nevsky Institute of Management and Design ŠŠµŠ²ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø Гизайна'),
(28628, 'https://ror.org/049q7vv14', 'id', 1, 'https://ror.org/049q7vv14 Universitas Muhammadiyah Riau'),
(28629, 'https://ror.org/049sfwc36', 'en', 1, 'https://ror.org/049sfwc36 National Intelligence University'),
(28630, 'https://ror.org/049sxg896', 'en', 1, 'https://ror.org/049sxg896 Hemchandracharya North Gujarat University'),
(28631, 'https://ror.org/049te8947', 'en', 1, 'https://ror.org/049te8947 Nayanova University Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(28632, 'https://ror.org/049v2fv58', 'en', 1, 'https://ror.org/049v2fv58 Muban Chombueng Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø«ąø”ąø¹ą¹ˆąøšą¹‰ąø²ąø™ąøˆąø­ąø”ąøšąø¶ąø‡'),
(28633, 'https://ror.org/049wy2009', 'no_lang_code', 1, 'https://ror.org/049wy2009 GF Machinery (Czechia)'),
(28634, 'https://ror.org/049yjjv56', 'en', 1, 'https://ror.org/049yjjv56 Institute for Social and Environmental Transition-International'),
(28635, 'https://ror.org/049ysg747', 'en', 1, 'https://ror.org/049ysg747 Rajshahi University of Engineering & Technology, Rajshahi University of Engineering and Technology ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(28636, 'https://ror.org/04a03m737', 'id', 1, 'https://ror.org/04a03m737 Universitas 45 Mataram'),
(28637, 'https://ror.org/04a07c178', 'en', 1, 'https://ror.org/04a07c178 Louisiana Coastal Protection and Restoration Authority'),
(28638, 'https://ror.org/04a1ctn52', 'en', 1, 'https://ror.org/04a1ctn52 General Lew Wallace Study and Museum'),
(28639, 'https://ror.org/04a2eet46', 'en', 1, 'https://ror.org/04a2eet46 Duxbury Free Library'),
(28640, 'https://ror.org/04a2rz655', 'en', 1, 'https://ror.org/04a2rz655 Rajamangala University of Technology Isan ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø­ąøµąøŖąø²ąø™'),
(28641, 'https://ror.org/04a3e3p04', 'no_lang_code', 1, 'https://ror.org/04a3e3p04 Doosan (Czechia)'),
(28642, 'https://ror.org/04a4sww29', 'en', 1, 'https://ror.org/04a4sww29 National University of Civil Defense of Ukraine ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ гражГанской защиты Украины ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń†ŠøŠ²Ń–Š»ŃŒŠ½Š¾Š³Š¾ Š·Š°Ń…ŠøŃŃ‚Ńƒ України'),
(28643, 'https://ror.org/04a5aqx80', 'en', 1, 'https://ror.org/04a5aqx80 Museum of Indian Arts and Culture'),
(28644, 'https://ror.org/04a5pdm93', 'no_lang_code', 1, 'https://ror.org/04a5pdm93 GuideStar'),
(28645, 'https://ror.org/04a698174', 'no_lang_code', 1, 'https://ror.org/04a698174 Tokyo Kasei Gakuin University ę±äŗ¬å®¶ę”æå­¦é™¢å¤§å­¦'),
(28646, 'https://ror.org/04a8t1e98', 'no_lang_code', 1, 'https://ror.org/04a8t1e98 Osaka Gakuin University å¤§é˜Ŗå­¦é™¢å¤§å­¦'),
(28647, 'https://ror.org/04a8tp355', 'id', 1, 'https://ror.org/04a8tp355 Universitas Teknologi Sulawesi'),
(28648, 'https://ror.org/04a98ab79', 'en', 1, 'https://ror.org/04a98ab79 National Museum of Agriculture NĆ”rodnĆ­ zemědělskĆ© muzeum'),
(28649, 'https://ror.org/04a9xrr47', 'en', 1, 'https://ror.org/04a9xrr47 Hebei Finance University ę²³åŒ—é‡‘čžå­¦é™¢'),
(28650, 'https://ror.org/04aamwz87', 'en', 1, 'https://ror.org/04aamwz87 Woodlawn Museum Gardens & Park'),
(28651, 'https://ror.org/04abjgr86', 'en', 1, 'https://ror.org/04abjgr86 Sacred Heart University'),
(28652, 'https://ror.org/04ag50w09', 'no_lang_code', 1, 'https://ror.org/04ag50w09 Beznoska (Czechia)'),
(28653, 'https://ror.org/04ah8rj19', 'en', 1, 'https://ror.org/04ah8rj19 Kyoto International University äŗ¬éƒ½ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«ćƒ¦ćƒ‹ćƒćƒ¼ć‚·ćƒ†ć‚£ćƒ¼'),
(28654, 'https://ror.org/04ahqr359', 'en', 1, 'https://ror.org/04ahqr359 Jewish Museum in Prague Židovské muzeum v Praze'),
(28655, 'https://ror.org/04ajy5s58', 'en', 1, 'https://ror.org/04ajy5s58 Iman University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų„ŁŠŁ…Ų§Ł†'),
(28656, 'https://ror.org/04anxb269', 'en', 1, 'https://ror.org/04anxb269 Czech Society for New Materials and Technologies'),
(28657, 'https://ror.org/04arqjy59', 'en', 1, 'https://ror.org/04arqjy59 Hermann Grima House'),
(28658, 'https://ror.org/04arxdw58', 'en', 1, 'https://ror.org/04arxdw58 Delaware Division of Historical and Cultural Affairs'),
(28659, 'https://ror.org/04atzpa02', 'en', 1, 'https://ror.org/04atzpa02 Aichi Toho University ę„›ēŸ„ę±é‚¦å¤§å­¦'),
(28660, 'https://ror.org/04aw3qn55', 'en', 1, 'https://ror.org/04aw3qn55 Latvian Christian Academy Latvijas Kristīgā akadēmija'),
(28661, 'https://ror.org/04ayrfe72', 'en', 1, 'https://ror.org/04ayrfe72 Tamil Nadu Dr. J Jayalalitha Fisheries University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®®ąÆ€ą®©ąÆą®µą®³ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(28662, 'https://ror.org/04az9eh24', 'en', 1, 'https://ror.org/04az9eh24 Jilin University of Finance and Economics å‰ęž—č“¢ē»å¤§å­¦'),
(28663, 'https://ror.org/04b25wb90', 'no_lang_code', 1, 'https://ror.org/04b25wb90 Anhanguera (Brazil)'),
(28664, 'https://ror.org/04b4kxc62', 'id', 1, 'https://ror.org/04b4kxc62 Universitas Halmahera'),
(28665, 'https://ror.org/04b4rre17', 'en', 1, 'https://ror.org/04b4rre17 National Law University and Judicial Academy'),
(28666, 'https://ror.org/04b5fcb71', 'en', 1, 'https://ror.org/04b5fcb71 Oakland Public Library'),
(28667, 'https://ror.org/04bad2882', 'en', 1, 'https://ror.org/04bad2882 Civil Aviation Technology College دانؓکده ŁŁ†Ų§ŁˆŲ±ŪŒ Ł‡ŁˆŲ§Ł¾ŪŒŁ…Ų§ŪŒŪŒ Ł‡ŁˆŲ§Ł¾ŪŒŁ…Ų§ŪŒŪŒ'),
(28668, 'https://ror.org/04bccg972', 'en', 1, 'https://ror.org/04bccg972 Tajik National University Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии миллии Тоҷикистон ТаГжикский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28669, 'https://ror.org/04bcsz239', 'en', 1, 'https://ror.org/04bcsz239 Dr. Ram Manohar Lohia National Law University ą¤”ą„‰ राम ą¤®ą¤Øą„‹ą¤¹ą¤° ą¤²ą„‹ą¤¹ą¤æą¤Æą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28670, 'https://ror.org/04bcyx979', 'cs', 1, 'https://ror.org/04bcyx979 VŔeobecnÔ UverovÔ Banka'),
(28671, 'https://ror.org/04bfjqy79', 'en', 1, 'https://ror.org/04bfjqy79 Incheon Catholic University ģøģ²œź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(28672, 'https://ror.org/04bgrkn57', 'en', 1, 'https://ror.org/04bgrkn57 Moscow State University of Medicine and Dentistry Московский Š³Š¾ŃŃƒŠ“арственный меГико-стоматологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28673, 'https://ror.org/04bj64g74', 'en', 1, 'https://ror.org/04bj64g74 Cherokee Heritage Center'),
(28674, 'https://ror.org/04bk45c77', 'en', 1, 'https://ror.org/04bk45c77 Ford''s Theatre'),
(28675, 'https://ror.org/04bmm0q23', 'en', 1, 'https://ror.org/04bmm0q23 Sichuan Fine Arts Institute å››å·ē¾ŽęœÆå­¦é™¢'),
(28676, 'https://ror.org/04bmtez11', 'en', 1, 'https://ror.org/04bmtez11 DOBA Business School DOBA Fakulteta'),
(28677, 'https://ror.org/04bn3r984', 'en', 1, 'https://ror.org/04bn3r984 Kemerovo State University of Culture and the Arts ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(28678, 'https://ror.org/04bn56254', 'en', 1, 'https://ror.org/04bn56254 Osaka Kawasaki Rehabilitation University å¤§é˜Ŗę²³å“ŽćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å¤§å­¦'),
(28679, 'https://ror.org/04bnhs754', 'no_lang_code', 1, 'https://ror.org/04bnhs754 Attl (Czechia)'),
(28680, 'https://ror.org/04bqj0966', 'en', 1, 'https://ror.org/04bqj0966 Broadview University'),
(28681, 'https://ror.org/04bs5h869', 'id', 1, 'https://ror.org/04bs5h869 Institut Teknologi dan Bisnis Kalbe'),
(28682, 'https://ror.org/04bwfnh43', 'en', 1, 'https://ror.org/04bwfnh43 Willamette Heritage Center'),
(28683, 'https://ror.org/04bwss030', 'no_lang_code', 1, 'https://ror.org/04bwss030 Zhezkazgan Baikonurov University Жезказганский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Šž.А. Š‘Š°Š¹ŠŗŠ¾Š½ŃƒŃ€Š¾Š²Š°'),
(28684, 'https://ror.org/04bx7h761', 'en', 1, 'https://ror.org/04bx7h761 Museums of Old York'),
(28685, 'https://ror.org/04bxa3v83', 'en', 1, 'https://ror.org/04bxa3v83 Shiraz University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ ؓیراز'),
(28686, 'https://ror.org/04bxdha50', 'en', 1, 'https://ror.org/04bxdha50 New England Quilt Museum'),
(28687, 'https://ror.org/04byvwj54', 'en', 1, 'https://ror.org/04byvwj54 Heritage Preservation'),
(28688, 'https://ror.org/04byxj259', 'id', 1, 'https://ror.org/04byxj259 Universitas Winaya Mukti'),
(28689, 'https://ror.org/04bz0e642', 'no_lang_code', 1, 'https://ror.org/04bz0e642 Sheikh Bahaei University دانؓگاه ؓیخ ŲØŁ‡Ų§ŪŒŪŒ'),
(28690, 'https://ror.org/04bz6gw73', 'en', 1, 'https://ror.org/04bz6gw73 Sapporo University 札幌大学'),
(28691, 'https://ror.org/04bzgnv13', 'en', 1, 'https://ror.org/04bzgnv13 Oklahoma Library Association'),
(28692, 'https://ror.org/04c16pd38', 'en', 1, 'https://ror.org/04c16pd38 Jeffco Public Schools'),
(28693, 'https://ror.org/04c244340', 'no_lang_code', 1, 'https://ror.org/04c244340 Era-Maptec (Ireland)'),
(28694, 'https://ror.org/04c3c7847', 'en', 1, 'https://ror.org/04c3c7847 Akademia Muzyczna im. Karola Lipińskiego we Wrocławiu Karol Lipiński Academy of Music in Wrocław'),
(28695, 'https://ror.org/04c3gsq51', 'en', 1, 'https://ror.org/04c3gsq51 Frelinghuysen Morris House And Studio'),
(28696, 'https://ror.org/04c89v556', 'en', 1, 'https://ror.org/04c89v556 National Fisheries Institute'),
(28697, 'https://ror.org/04c8h8q45', 'en', 1, 'https://ror.org/04c8h8q45 Leonardo Da Vinci University Universidad Privada Leonardo da Vinci'),
(28698, 'https://ror.org/04c9af145', 'en', 1, 'https://ror.org/04c9af145 University of Manila'),
(28699, 'https://ror.org/04c9fd109', 'en', 1, 'https://ror.org/04c9fd109 Reef Environmental Education Foundation'),
(28700, 'https://ror.org/04ccfjy89', 'en', 1, 'https://ror.org/04ccfjy89 Center for Coastal Studies'),
(28701, 'https://ror.org/04ce9mt19', 'en', 1, 'https://ror.org/04ce9mt19 Hoover Institution'),
(28702, 'https://ror.org/04cfhgb79', 'en', 1, 'https://ror.org/04cfhgb79 Diplomatic Academy of the Russian Foreign Ministry Š”ŠøŠæŠ»Š¾Š¼Š°Ń‚ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠœŠ˜Š” России'),
(28703, 'https://ror.org/04cgn5q20', 'en', 1, 'https://ror.org/04cgn5q20 Al-Quds Open University Ų¬Ų§Ł…Ų¹Ų© القدس Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(28704, 'https://ror.org/04chene87', 'no_lang_code', 1, 'https://ror.org/04chene87 Eeip (Czechia)'),
(28705, 'https://ror.org/04cj4w646', 'no_lang_code', 1, 'https://ror.org/04cj4w646 Magneton (Czechia)'),
(28706, 'https://ror.org/04ck9y280', 'en', 1, 'https://ror.org/04ck9y280 Poznan University of Social Sciences Wyższa Szkoła Umiejętności Społecznych'),
(28707, 'https://ror.org/04cns1483', 'en', 1, 'https://ror.org/04cns1483 Center for the Study of Community Colleges'),
(28708, 'https://ror.org/04csdwy58', 'no_lang_code', 1, 'https://ror.org/04csdwy58 Mahatma Gandhi Antarrashtriya Hindi Vishwavidyalaya Mahatma Gandhi International Hindi University ą¤®ą¤¹ą¤¾ą¤¤ą„ą¤®ą¤¾ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤…ą¤Øą„ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤¹ą¤æą¤Øą„ą¤¦ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28709, 'https://ror.org/04ctw6466', 'en', 1, 'https://ror.org/04ctw6466 Seoul Social Welfare Graduate University ģ„œģšøģ‚¬ķšŒė³µģ§€ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(28710, 'https://ror.org/04cwkhw19', 'en', 1, 'https://ror.org/04cwkhw19 Council for Native Hawaiian Advancement'),
(28711, 'https://ror.org/04cymw545', 'en', 1, 'https://ror.org/04cymw545 Shota Rustaveli Theatre and Film Georgia State University įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒØįƒįƒ—įƒ įƒ įƒ£įƒ”įƒ—įƒįƒ•įƒ”įƒšįƒ˜įƒ” įƒ—įƒ”įƒįƒ¢įƒ įƒ˜įƒ” įƒ“įƒ įƒ™įƒ˜įƒœįƒįƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28712, 'https://ror.org/04cyzbs29', 'en', 1, 'https://ror.org/04cyzbs29 Chaffey College'),
(28713, 'https://ror.org/04czac457', 'en', 1, 'https://ror.org/04czac457 Siberian Academy of Finance and Banking Š”ŠøŠ±ŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ финансов Šø банковского Гела'),
(28714, 'https://ror.org/04d1kkx94', 'en', 1, 'https://ror.org/04d1kkx94 Connecticut Historical Society'),
(28715, 'https://ror.org/04d3gck32', 'id', 1, 'https://ror.org/04d3gck32 Universitas Wijayakusuma Purwokerto'),
(28716, 'https://ror.org/04d4xzq24', 'en', 1, 'https://ror.org/04d4xzq24 Indiana Library Federation'),
(28717, 'https://ror.org/04d5c0f12', 'en', 1, 'https://ror.org/04d5c0f12 Hispanic Society of America'),
(28718, 'https://ror.org/04d8yqq70', 'en', 1, 'https://ror.org/04d8yqq70 Krirk University ดหาวณทยาคัยเกรณก'),
(28719, 'https://ror.org/04d9rzd67', 'en', 1, 'https://ror.org/04d9rzd67 Gulf University for Science & Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(28720, 'https://ror.org/04daenq52', 'en', 1, 'https://ror.org/04daenq52 Valley View University'),
(28721, 'https://ror.org/04dbkth95', 'en', 1, 'https://ror.org/04dbkth95 Academy of Municipal Management ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń Š¼ŃƒŠ½Ń–Ń†ŠøŠæŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(28722, 'https://ror.org/04dea3c58', 'en', 1, 'https://ror.org/04dea3c58 Engineering Academy of the Czech Republic'),
(28723, 'https://ror.org/04df59d52', 'no_lang_code', 1, 'https://ror.org/04df59d52 Ceske Lupkove Zavody (Czechia)'),
(28724, 'https://ror.org/04dh87p33', 'en', 1, 'https://ror.org/04dh87p33 New York State Department of State'),
(28725, 'https://ror.org/04dheyn57', 'en', 1, 'https://ror.org/04dheyn57 Hull Lifesaving Museum'),
(28726, 'https://ror.org/04dmdc523', 'en', 1, 'https://ror.org/04dmdc523 Association of Environmental and Resource Economists'),
(28727, 'https://ror.org/04dmnxh66', 'en', 1, 'https://ror.org/04dmnxh66 CTBC Business School äø­äæ”é‡‘čžē®”ē†å­øé™¢'),
(28728, 'https://ror.org/04dn9wj23', 'en', 1, 'https://ror.org/04dn9wj23 Romblon State University'),
(28729, 'https://ror.org/04dpnfr42', 'en', 1, 'https://ror.org/04dpnfr42 Johnson University'),
(28730, 'https://ror.org/04dq6em15', 'no_lang_code', 1, 'https://ror.org/04dq6em15 Tribotec (Czechia)'),
(28731, 'https://ror.org/04dr3nj83', 'en', 1, 'https://ror.org/04dr3nj83 Fresno County Public Library'),
(28732, 'https://ror.org/04drdpz74', 'en', 1, 'https://ror.org/04drdpz74 Wisconsin Educational Communications Board'),
(28733, 'https://ror.org/04dsq1c96', 'en', 1, 'https://ror.org/04dsq1c96 Library of Hattiesburg, Petal and Forrest County'),
(28734, 'https://ror.org/04e035w81', 'no_lang_code', 1, 'https://ror.org/04e035w81 Reflex (Czechia)'),
(28735, 'https://ror.org/04e1g5k93', 'en', 1, 'https://ror.org/04e1g5k93 Saint Petersburg Institute of Law named after Prince P. Oldenburg Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ права имени ŠŸŃ€ŠøŠ½Ń†Š° П.Š“.ŠžŠ»ŃŒŠ“ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠ¾Š³Š¾'),
(28736, 'https://ror.org/04e45e551', 'en', 1, 'https://ror.org/04e45e551 Columbia State Community College'),
(28737, 'https://ror.org/04e529t38', 'en', 1, 'https://ror.org/04e529t38 Altai State Pedagogical University ŠŠ»Ń‚Š°Š¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(28738, 'https://ror.org/04e6rv019', 'no_lang_code', 1, 'https://ror.org/04e6rv019 Ateko (Czechia)'),
(28739, 'https://ror.org/04eba5983', 'en', 1, 'https://ror.org/04eba5983 Biotechnology Research Institute'),
(28740, 'https://ror.org/04ebe6j88', 'en', 1, 'https://ror.org/04ebe6j88 Xi''an Academy of Fine Arts č„æå®‰ē¾ŽęœÆå­¦é™¢'),
(28741, 'https://ror.org/04ebscd73', 'en', 1, 'https://ror.org/04ebscd73 European University College Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£ŁˆŲ±ŁˆŲØŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(28742, 'https://ror.org/04ec26n40', 'en', 1, 'https://ror.org/04ec26n40 Saint John''s University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø‹ąø™ąø•ą¹Œąøˆąø­ąø«ą¹Œąø™'),
(28743, 'https://ror.org/04eck9c32', 'en', 1, 'https://ror.org/04eck9c32 International Art Campus Prague'),
(28744, 'https://ror.org/04edbcc27', 'en', 1, 'https://ror.org/04edbcc27 James River Association'),
(28745, 'https://ror.org/04edybc52', 'no_lang_code', 1, 'https://ror.org/04edybc52 Biwako Seikei Sport College ć³ć‚ć“ęˆč¹Šć‚¹ćƒćƒ¼ćƒ„å¤§å­¦'),
(28746, 'https://ror.org/04ehpm154', 'en', 1, 'https://ror.org/04ehpm154 West Kazakhstan Marat Ospanov State Medical University М.ŠžŃŠæŠ°Š½Š¾Š² атынГағы Батыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ мемлекеттік меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(28747, 'https://ror.org/04ekepb72', 'pl', 1, 'https://ror.org/04ekepb72 Szkoła Wyższa im. Bogdana Jańskiego'),
(28748, 'https://ror.org/04eqy7d03', 'en', 1, 'https://ror.org/04eqy7d03 Oklahoma State University Institute of Technology'),
(28749, 'https://ror.org/04er67t26', 'en', 1, 'https://ror.org/04er67t26 Old Red Museum of Dallas County History and Culture'),
(28750, 'https://ror.org/04es4w891', 'id', 1, 'https://ror.org/04es4w891 Universitas Yapis Papua'),
(28751, 'https://ror.org/04ew6mz46', 'en', 1, 'https://ror.org/04ew6mz46 Reklamy Institute ŠšŠ°Ń„ŠµŠ“Ń€Š° веб Гизайна, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рекламы'),
(28752, 'https://ror.org/04ez6kn43', 'en', 1, 'https://ror.org/04ez6kn43 Moscow State Academy of Choreography ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ хореографии'),
(28753, 'https://ror.org/04f7wmd40', 'en', 1, 'https://ror.org/04f7wmd40 Pyeongtaek University ķ‰ķƒėŒ€ķ•™źµ'),
(28754, 'https://ror.org/04f8x5b20', 'en', 1, 'https://ror.org/04f8x5b20 Hochschule Merseburg Merseburg University of Applied Sciences'),
(28755, 'https://ror.org/04f9apy08', 'en', 1, 'https://ror.org/04f9apy08 Advanced Institute of Industrial Technology ē”£ę„­ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(28756, 'https://ror.org/04f9eby28', 'en', 1, 'https://ror.org/04f9eby28 Voronezh Institute of High Technologies Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ высоких технологий'),
(28757, 'https://ror.org/04f9r2a11', 'en', 1, 'https://ror.org/04f9r2a11 East African University'),
(28758, 'https://ror.org/04fa2qd52', 'en', 1, 'https://ror.org/04fa2qd52 Sanya University äø‰äŗšå­¦é™¢'),
(28759, 'https://ror.org/04fbh8j71', 'en', 1, 'https://ror.org/04fbh8j71 Arkhangelsk State Technical University ŠŃ€Ń…Š°Š½Š³ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28760, 'https://ror.org/04fc8m485', 'no_lang_code', 1, 'https://ror.org/04fc8m485 Monet (Czechia)'),
(28761, 'https://ror.org/04fdxfa12', 'en', 1, 'https://ror.org/04fdxfa12 Mangalam Research Center for Buddhist Languages'),
(28762, 'https://ror.org/04fe55288', 'es', 1, 'https://ror.org/04fe55288 Asociación de Empresarios Textiles de la Comunidad Valenciana'),
(28763, 'https://ror.org/04fe8b875', 'en', 1, 'https://ror.org/04fe8b875 American University of Afghanistan دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ افغانستان'),
(28764, 'https://ror.org/04ff49a90', 'en', 1, 'https://ror.org/04ff49a90 Amicable Knowledge Solution University ą¤ ą¤•ą„‡ ą¤ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28765, 'https://ror.org/04fgffc11', 'en', 1, 'https://ror.org/04fgffc11 Research Institute of Geodesy, Topography and Cartography'),
(28766, 'https://ror.org/04fh2kz81', 'pl', 1, 'https://ror.org/04fh2kz81 Papieski Wydział Teologiczny w Warszawie Pontifical Faculty of Theology in Warsaw'),
(28767, 'https://ror.org/04fmzje57', 'en', 1, 'https://ror.org/04fmzje57 Rare Book School'),
(28768, 'https://ror.org/04fpqn730', 'en', 1, 'https://ror.org/04fpqn730 International Banking Institute ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ банковский ŠøŠ½ŃŃ‚ŠøŃ‚Ńƒ'),
(28769, 'https://ror.org/04fr5jq93', 'en', 1, 'https://ror.org/04fr5jq93 Georgetown County Library'),
(28770, 'https://ror.org/04frcff47', 'en', 1, 'https://ror.org/04frcff47 Malaysia University of Science and Technology Universiti Sains dan Teknologi Malaysia'),
(28771, 'https://ror.org/04frgwq67', 'en', 1, 'https://ror.org/04frgwq67 Institute of Aviation Medicine'),
(28772, 'https://ror.org/04frhb927', 'en', 1, 'https://ror.org/04frhb927 Global University الجامعة Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(28773, 'https://ror.org/04frsmv44', 'no_lang_code', 1, 'https://ror.org/04frsmv44 Hamamatsu Gakuin University ęµœę¾å­¦é™¢å¤§å­¦'),
(28774, 'https://ror.org/04fswdh23', 'en', 1, 'https://ror.org/04fswdh23 Malama Learning Center'),
(28775, 'https://ror.org/04ft1xc20', 'en', 1, 'https://ror.org/04ft1xc20 St. Martinus University'),
(28776, 'https://ror.org/04ft9rp47', 'en', 1, 'https://ror.org/04ft9rp47 Textile Institute of Pakistan پاکستان کی Ł¹ŪŒŚ©Ų³Ł¹Ų§Ų¦Ł„ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(28777, 'https://ror.org/04ftkte05', 'en', 1, 'https://ror.org/04ftkte05 Libyan International Medical University الجامعة Ų§Ł„Ł„ŁŠŲØŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ©'),
(28778, 'https://ror.org/04fy6jb97', 'en', 1, 'https://ror.org/04fy6jb97 King Mongkut''s University of Technology North Bangkok ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ąøžąø£ąø°ąø™ąø„ąø£ą¹€ąø«ąø™ąø·ąø­'),
(28779, 'https://ror.org/04g11bp59', 'en', 1, 'https://ror.org/04g11bp59 Osaka University of Economics 大阪経済大学'),
(28780, 'https://ror.org/04g3e3p90', 'en', 1, 'https://ror.org/04g3e3p90 Medieval Academy of America'),
(28781, 'https://ror.org/04g3hr176', 'en', 1, 'https://ror.org/04g3hr176 Kingdom University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł…Ł„ŁƒŲ©'),
(28782, 'https://ror.org/04g449w06', 'en', 1, 'https://ror.org/04g449w06 Escuela Juilliard Juilliard School'),
(28783, 'https://ror.org/04g5en476', 'no_lang_code', 1, 'https://ror.org/04g5en476 Ammann (Czechia)'),
(28784, 'https://ror.org/04g8bba17', 'id', 1, 'https://ror.org/04g8bba17 Universitas Paramadina'),
(28785, 'https://ror.org/04gb4k866', 'en', 1, 'https://ror.org/04gb4k866 Rostov State University of Civil Engineering Ростовский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š”Ń‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Университет'),
(28786, 'https://ror.org/04gbh9h57', 'en', 1, 'https://ror.org/04gbh9h57 Perkins School for Blind'),
(28787, 'https://ror.org/04gbk4749', 'en', 1, 'https://ror.org/04gbk4749 Art and Design University of Cluj-Napoca MűvĆ©szeti Ć©s Design Egyetem Universitatea de Artă și Design'),
(28788, 'https://ror.org/04gf7nc77', 'en', 1, 'https://ror.org/04gf7nc77 International Law Institute ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(28789, 'https://ror.org/04gj47650', 'en', 1, 'https://ror.org/04gj47650 Primorskaya State Academy of Agriculture ŠŸŃ€ŠøŠ¼Š¾Ń€ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š”ŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(28790, 'https://ror.org/04gmqtx37', 'en', 1, 'https://ror.org/04gmqtx37 Smolensk State University Дмоленский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28791, 'https://ror.org/04gndk045', 'en', 1, 'https://ror.org/04gndk045 IMADEC University'),
(28792, 'https://ror.org/04gpajp33', 'id', 1, 'https://ror.org/04gpajp33 North Sulawesi University of Technology Universitas Teknologi Sulawesi Utara'),
(28793, 'https://ror.org/04gpw1v92', 'en', 1, 'https://ror.org/04gpw1v92 European University Европски ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚'),
(28794, 'https://ror.org/04gqfff71', 'en', 1, 'https://ror.org/04gqfff71 William F. Laman Public Library System'),
(28795, 'https://ror.org/04gqmrb58', 'en', 1, 'https://ror.org/04gqmrb58 Centre Hospitalier Universitaire Dr-Georges-L.-Dumont Dr. Georges-L.-Dumont University Hospital Centre'),
(28796, 'https://ror.org/04gqpx257', 'en', 1, 'https://ror.org/04gqpx257 Niigata Sangyo University ę–°ę½Ÿē”£ę„­å¤§å­¦'),
(28797, 'https://ror.org/04gr21t50', 'en', 1, 'https://ror.org/04gr21t50 Al Madinah International University Universiti Antarabangsa Al-Madinah'),
(28798, 'https://ror.org/04gsm6763', 'en', 1, 'https://ror.org/04gsm6763 Museum of Contemporary Art San Diego'),
(28799, 'https://ror.org/04gtsq315', 'id', 1, 'https://ror.org/04gtsq315 Universitas Wahid Hasyim'),
(28800, 'https://ror.org/04gvm8679', 'en', 1, 'https://ror.org/04gvm8679 Tomsk Institute of Economics and Law Томский ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(28801, 'https://ror.org/04gy42h78', 'en', 1, 'https://ror.org/04gy42h78 Nanjing Sport Institute å—äŗ¬ä½“č‚²å­¦é™¢'),
(28802, 'https://ror.org/04gyfd783', 'no_lang_code', 1, 'https://ror.org/04gyfd783 Chaopraya University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøˆą¹‰ąø²ąøžąø£ąø°ąø¢ąø²'),
(28803, 'https://ror.org/04gz2h231', 'en', 1, 'https://ror.org/04gz2h231 Okinawa Prefectural College of Nursing ę²–ēø„ēœŒē«‹ēœ‹č­·å¤§å­¦'),
(28804, 'https://ror.org/04h1w2j35', 'en', 1, 'https://ror.org/04h1w2j35 Madan Mohan Malaviya University of Technology मदन ą¤®ą„‹ą¤¹ą¤Ø ą¤®ą¤¾ą¤²ą¤µą„€ą¤Æ ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą„€ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤—ą„‹ą¤°ą¤–ą¤Ŗą„ą¤°'),
(28805, 'https://ror.org/04h2cjt54', 'no_lang_code', 1, 'https://ror.org/04h2cjt54 Brookside Museum'),
(28806, 'https://ror.org/04h4y6q56', 'en', 1, 'https://ror.org/04h4y6q56 Quy Nhon University TrĘ°į»ng ĐẔi Hį»c Quy NhĘ”n'),
(28807, 'https://ror.org/04h5pm325', 'en', 1, 'https://ror.org/04h5pm325 Children''s Museum of Manhattan'),
(28808, 'https://ror.org/04h8p1q11', 'en', 1, 'https://ror.org/04h8p1q11 South Atlantic Fishery Management Council'),
(28809, 'https://ror.org/04h8sfe51', 'en', 1, 'https://ror.org/04h8sfe51 Institute of World Economy and Information Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŃ€Š¾Š²Š¾Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø информатизации'),
(28810, 'https://ror.org/04haaft31', 'en', 1, 'https://ror.org/04haaft31 New Jersey Sea Grant Consortium'),
(28811, 'https://ror.org/04haawm62', 'en', 1, 'https://ror.org/04haawm62 Association for Core Texts and Courses'),
(28812, 'https://ror.org/04hah6r58', 'en', 1, 'https://ror.org/04hah6r58 Asian University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø­ą¹€ąøŠąøµąø¢ąø™'),
(28813, 'https://ror.org/04hb2sf66', 'no_lang_code', 1, 'https://ror.org/04hb2sf66 Kypha (United States)'),
(28814, 'https://ror.org/04hdbtc84', 'en', 1, 'https://ror.org/04hdbtc84 Netaji Subhas Open University ą¦Øą§‡ą¦¤ą¦¾ą¦œą¦æ সুভাষ ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(28815, 'https://ror.org/04hdrrs71', 'en', 1, 'https://ror.org/04hdrrs71 Metropolitan University ą¦®ą¦Ÿą§ą¦°ą§‹ą¦Ŗą¦²ą¦æą¦Ÿą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(28816, 'https://ror.org/04heq0532', 'en', 1, 'https://ror.org/04heq0532 Missoula Public Library'),
(28817, 'https://ror.org/04hfdwy10', 'en', 1, 'https://ror.org/04hfdwy10 Pfleger Institute of Environmental Research'),
(28818, 'https://ror.org/04hfvq252', 'no_lang_code', 1, 'https://ror.org/04hfvq252 Research Institute of Binding Materials Prague (Czechia) Výzkumný ústav maltovin Praha'),
(28819, 'https://ror.org/04hfx2z08', 'cs', 1, 'https://ror.org/04hfx2z08 ČeskĆ” Společnost pro PolitickĆ© Vědy'),
(28820, 'https://ror.org/04hfxwy37', 'en', 1, 'https://ror.org/04hfxwy37 Tyumen Law Institute of the Russian Interior Ministry Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š” России'),
(28821, 'https://ror.org/04hj33b78', 'en', 1, 'https://ror.org/04hj33b78 National University of Music Bucharest Universitatea Națională de Muzică București'),
(28822, 'https://ror.org/04hjmn382', 'en', 1, 'https://ror.org/04hjmn382 University of Economy in Bydgoszcz Wyższa Szkoła Gospodarki w Bydgoszczy'),
(28823, 'https://ror.org/04hjsag95', 'en', 1, 'https://ror.org/04hjsag95 JECRC University'),
(28824, 'https://ror.org/04hjv8v27', 'id', 1, 'https://ror.org/04hjv8v27 Universitas Nusantara Manado'),
(28825, 'https://ror.org/04hk5r056', 'no_lang_code', 1, 'https://ror.org/04hk5r056 Jihlavan (Czechia)'),
(28826, 'https://ror.org/04hks3g45', 'en', 1, 'https://ror.org/04hks3g45 Arkansas Museum of Discovery'),
(28827, 'https://ror.org/04hp7kk26', 'no_lang_code', 1, 'https://ror.org/04hp7kk26 Valaya Alongkorn Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø§ą¹„ąø„ąø¢ąø­ąø„ąø‡ąøąø£ąø“ą¹Œ ą¹ƒąø™ąøžąø£ąø°ąøšąø£ąø”ąø£ąø²ąøŠąø¹ąø›ąø–ąø±ąø”ąø ą¹Œ'),
(28828, 'https://ror.org/04hsm1w74', 'en', 1, 'https://ror.org/04hsm1w74 Moscow Humanitarian Economic Institute Московский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(28829, 'https://ror.org/04hsp7g83', 'en', 1, 'https://ror.org/04hsp7g83 Jaamacadda Puntland Puntland State University'),
(28830, 'https://ror.org/04htfrz79', 'en', 1, 'https://ror.org/04htfrz79 Wenham Museum'),
(28831, 'https://ror.org/04htq1b81', 'id', 1, 'https://ror.org/04htq1b81 Universitas Surapati'),
(28832, 'https://ror.org/04hv8rm39', 'en', 1, 'https://ror.org/04hv8rm39 Maulana Mazharul Haque Arabic and Persian University ą¤®ą„Œą¤²ą¤¾ą¤Øą¤¾ ą¤®ą¤œą¤¹ą¤°ą„‚ą¤² हक ą¤…ą¤°ą¤¬ą„€ व ą¤«ą¤¾ą¤°ą¤øą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28833, 'https://ror.org/04hx9jj82', 'en', 1, 'https://ror.org/04hx9jj82 Kanda University of International Studies ē„žē”°å¤–čŖžå¤§å­¦'),
(28834, 'https://ror.org/04hz6bt63', 'no_lang_code', 1, 'https://ror.org/04hz6bt63 Kovohutě Rokycany (Czechia)'),
(28835, 'https://ror.org/04hzqbs28', 'en', 1, 'https://ror.org/04hzqbs28 Ural Institute of Business Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(28836, 'https://ror.org/04j14gs18', 'en', 1, 'https://ror.org/04j14gs18 Rockland Memorial Library'),
(28837, 'https://ror.org/04j1jjs80', 'en', 1, 'https://ror.org/04j1jjs80 University of Information Technology and Sciences ą¦‡ą¦‰ą¦Øą¦æą¦°ą§ą¦­ą¦¾ą¦øą¦æą¦Ÿą¦æ অব ইনফরমেশন ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą¦ą¦Øą§ą¦” ą¦øą¦¾ą¦‡ą¦Øą§ą¦øą§‡ą¦ø'),
(28838, 'https://ror.org/04j1sf085', 'en', 1, 'https://ror.org/04j1sf085 Maryland State Archives'),
(28839, 'https://ror.org/04j1zjr14', 'no_lang_code', 1, 'https://ror.org/04j1zjr14 Lander Institute'),
(28840, 'https://ror.org/04j3yrr96', 'no_lang_code', 1, 'https://ror.org/04j3yrr96 Imos Brno (Czechia)'),
(28841, 'https://ror.org/04j59hx92', 'en', 1, 'https://ror.org/04j59hx92 William Peace University'),
(28842, 'https://ror.org/04j6k3054', 'en', 1, 'https://ror.org/04j6k3054 Vitebsk State University named after P.M. Masherov Витебский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П. М. ŠœŠ°ŃˆŠµŃ€Š¾Š²Š° Віцебскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń П. М. ŠœŠ°ŃˆŃŃ€Š°Š²Š°'),
(28843, 'https://ror.org/04janbd12', 'no_lang_code', 1, 'https://ror.org/04janbd12 Centro Escolar University Pamantasang Centro Escolar'),
(28844, 'https://ror.org/04japw488', 'en', 1, 'https://ror.org/04japw488 Godfrey Okoye University'),
(28845, 'https://ror.org/04jb7yj10', 'en', 1, 'https://ror.org/04jb7yj10 Hannan University é˜Ŗå—å¤§å­¦'),
(28846, 'https://ror.org/04jd89h35', 'en', 1, 'https://ror.org/04jd89h35 Olivet University'),
(28847, 'https://ror.org/04jdy5g59', 'en', 1, 'https://ror.org/04jdy5g59 Meenakshi Academy of Higher Education and Research'),
(28848, 'https://ror.org/04je1d793', 'en', 1, 'https://ror.org/04je1d793 Institute of the Rockies'),
(28849, 'https://ror.org/04jesgk52', 'en', 1, 'https://ror.org/04jesgk52 Baltic Institute of Ecology, Politics and Law Балтийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø, политики Šø права'),
(28850, 'https://ror.org/04jhcmb20', 'en', 1, 'https://ror.org/04jhcmb20 Kumamoto Gakuen University ē†Šęœ¬å­¦åœ’å¤§å­¦'),
(28851, 'https://ror.org/04jhq1580', 'no_lang_code', 1, 'https://ror.org/04jhq1580 Azin (Czechia)'),
(28852, 'https://ror.org/04jj9d877', 'en', 1, 'https://ror.org/04jj9d877 Graduate School of Government and European Studies'),
(28853, 'https://ror.org/04jpmg381', 'en', 1, 'https://ror.org/04jpmg381 University of Health Science įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžœįž·įž‘įŸ’įž™įž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšįžŸįž»įžįž¶įž—įž·įž”įž¶įž›'),
(28854, 'https://ror.org/04jpmwt24', 'no_lang_code', 1, 'https://ror.org/04jpmwt24 Bidhan Chandra Krishi Viswavidyalaya बिधान ą¤šą¤Øą„ą¤¦ą„ą¤° ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¬ą¦æą¦§ą¦¾ą¦Øą¦šą¦Øą§ą¦¦ą§ą¦° ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(28855, 'https://ror.org/04jq39t97', 'en', 1, 'https://ror.org/04jq39t97 Mohammad Ali Jauhar University ą¤®ą„‹ą¤¹ą¤®ą„ą¤®ą¤¦ ą¤…ą¤²ą„€ ą¤œą„Œą¤¹ą¤° ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(28856, 'https://ror.org/04jr76q91', 'no_lang_code', 1, 'https://ror.org/04jr76q91 Research Institute of Brewing and Malting (Czechia) Výzkumný Ćŗstav pivovarský a sladařský'),
(28857, 'https://ror.org/04jscf286', 'en', 1, 'https://ror.org/04jscf286 Ottawa University'),
(28858, 'https://ror.org/04jta8a45', 'en', 1, 'https://ror.org/04jta8a45 Ohio History Connection');
INSERT INTO `rors` VALUES
(28859, 'https://ror.org/04jte2n37', 'en', 1, 'https://ror.org/04jte2n37 Khadim Ali Shah Bukhari Institute of Technology Ų®Ų§ŲÆŁ… Ų¹Ł„ŁŠ ؓاه بخاري Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف ŲŖŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ'),
(28860, 'https://ror.org/04jtrvy64', 'en', 1, 'https://ror.org/04jtrvy64 Mozyr State Pedagogical University named after I.P.Shamyakin ŠœŠ°Š·Ń‹Ń€ŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ пеГагагічны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ‹Ń‚ŃŃ‚ Ń–Š¼Ń І.П.ŠØŠ°Š¼ŃŠŗŃ–Š½Š°'),
(28861, 'https://ror.org/04jty2903', 'en', 1, 'https://ror.org/04jty2903 Nishinippon Institute of Technology č„æę—„ęœ¬å·„ę„­å¤§å­¦'),
(28862, 'https://ror.org/04jx76k82', 'en', 1, 'https://ror.org/04jx76k82 Korean Council for University Education ķ•œźµ­ėŒ€ķ•™źµģœ”ķ˜‘ģ˜ķšŒ'),
(28863, 'https://ror.org/04jxdd920', 'en', 1, 'https://ror.org/04jxdd920 Newport Beach Public Library'),
(28864, 'https://ror.org/04jzmk773', 'en', 1, 'https://ror.org/04jzmk773 Tafila Technical University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų·ŁŁŠŁ„Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(28865, 'https://ror.org/04k0d3t24', 'no_lang_code', 1, 'https://ror.org/04k0d3t24 Al-KafaĆ t University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁŲ§Ų”Ų§ŲŖ'),
(28866, 'https://ror.org/04k15jp43', 'en', 1, 'https://ror.org/04k15jp43 Russian State University of Tourism and Service Российский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŃƒŃ€ŠøŠ·Š¼Š° Šø сервиса'),
(28867, 'https://ror.org/04k4re972', 'id', 1, 'https://ror.org/04k4re972 Universitas Sisingamangaraja XII Tapanuli'),
(28868, 'https://ror.org/04k5ae675', 'en', 1, 'https://ror.org/04k5ae675 Friends of Peralta Hacienda Historical Park'),
(28869, 'https://ror.org/04ka27d61', 'en', 1, 'https://ror.org/04ka27d61 Al Asyariah Mandar University Universitas Al Asyariah Mandar'),
(28870, 'https://ror.org/04kc1rn33', 'no_lang_code', 1, 'https://ror.org/04kc1rn33 Rcd Radiokomunikace (Czechia)'),
(28871, 'https://ror.org/04kc6x746', 'no_lang_code', 1, 'https://ror.org/04kc6x746 Otemae University å¤§ę‰‹å‰å¤§å­¦'),
(28872, 'https://ror.org/04ke3vc41', 'en', 1, 'https://ror.org/04ke3vc41 Qurtuba University of Science and Information Technology قرطبہ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(28873, 'https://ror.org/04ke9yr06', 'en', 1, 'https://ror.org/04ke9yr06 Seisa University ę˜Ÿę§Žå¤§å­¦'),
(28874, 'https://ror.org/04kep9f40', 'en', 1, 'https://ror.org/04kep9f40 Whale Museum'),
(28875, 'https://ror.org/04kf25f32', 'en', 1, 'https://ror.org/04kf25f32 Shree Guru Gobind Singh Tricentenary University'),
(28876, 'https://ror.org/04kfg7139', 'en', 1, 'https://ror.org/04kfg7139 Saint Petersburg State Conservatory named after N.A. Rimsky-Korsakov Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени Š. А. Римского-ŠšŠ¾Ń€ŃŠ°ŠŗŠ¾Š²Š°'),
(28877, 'https://ror.org/04kj21e96', 'en', 1, 'https://ror.org/04kj21e96 Society for Historians of the Early American Republic'),
(28878, 'https://ror.org/04kjpwa96', 'en', 1, 'https://ror.org/04kjpwa96 Atomi University č·”č¦‹å­¦åœ’å„³å­å¤§å­¦'),
(28879, 'https://ror.org/04km2jv85', 'en', 1, 'https://ror.org/04km2jv85 National Estuarine Research Reserve Association Sistema Nacional de Reservas de Investigación Estuarina'),
(28880, 'https://ror.org/04kn82687', 'en', 1, 'https://ror.org/04kn82687 McLean County Museum of History'),
(28881, 'https://ror.org/04knmnr48', 'en', 1, 'https://ror.org/04knmnr48 Bukidnon State University'),
(28882, 'https://ror.org/04kv23141', 'en', 1, 'https://ror.org/04kv23141 Institute of Marketing and Social Information Technology ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ маркетинга Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-информационных технологий'),
(28883, 'https://ror.org/04kxzy525', 'en', 1, 'https://ror.org/04kxzy525 Dr. Shakuntala Misra National Rehabilitation University ą¤”ą„‰ ą¤¶ą¤•ą„ą¤‚ą¤¤ą¤²ą¤¾ ą¤®ą¤æą¤¶ą„ą¤°ą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤Øą¤°ą„ą¤µą¤¾ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(28884, 'https://ror.org/04m1rgc79', 'no_lang_code', 1, 'https://ror.org/04m1rgc79 Hagemann (Czechia)'),
(28885, 'https://ror.org/04m2r0735', 'en', 1, 'https://ror.org/04m2r0735 Schechter Institute of Jewish Studies מכון ×©×›×˜×Ø למדעי היהדות'),
(28886, 'https://ror.org/04m42eq84', 'en', 1, 'https://ror.org/04m42eq84 University of Shimane å³¶ę ¹ēœŒē«‹å¤§å­¦'),
(28887, 'https://ror.org/04m59hw59', 'en', 1, 'https://ror.org/04m59hw59 Musamus Merauke University Universitas Musamus Merauke'),
(28888, 'https://ror.org/04m7rat64', 'en', 1, 'https://ror.org/04m7rat64 Guru Ravidas Ayurved University ਗੁਰੂ ਰਵੀਦਾਸ ਆਯੂਰਵੇਦ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(28889, 'https://ror.org/04m8f9392', 'en', 1, 'https://ror.org/04m8f9392 Youngnam Foreign Language College ģ˜ė‚Ø 외국얓 ėŒ€ķ•™'),
(28890, 'https://ror.org/04m8vnf64', 'en', 1, 'https://ror.org/04m8vnf64 Historical Society of Washington'),
(28891, 'https://ror.org/04ma34w27', 'en', 1, 'https://ror.org/04ma34w27 Latah County Historical Society'),
(28892, 'https://ror.org/04mb01w79', 'en', 1, 'https://ror.org/04mb01w79 Moscow State Regional Institute of Humanities'),
(28893, 'https://ror.org/04mbnaz72', 'en', 1, 'https://ror.org/04mbnaz72 Georgian Aviation University įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒįƒ•įƒ˜įƒįƒŖįƒ˜įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28894, 'https://ror.org/04md71v26', 'en', 1, 'https://ror.org/04md71v26 Kerala University of Health Sciences ą“•ąµ‡ą“°ą“³ ą“†ą“°ąµ‹ą“—ąµą“Æ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(28895, 'https://ror.org/04mdddd78', 'en', 1, 'https://ror.org/04mdddd78 Minobusan University 身延山大学'),
(28896, 'https://ror.org/04mdk1103', 'en', 1, 'https://ror.org/04mdk1103 Angeles University Foundation Pundasyong Pamantasang Angeles'),
(28897, 'https://ror.org/04mdwrg75', 'en', 1, 'https://ror.org/04mdwrg75 Des Moines Art Center'),
(28898, 'https://ror.org/04mez0d16', 'en', 1, 'https://ror.org/04mez0d16 Regional Museum in Teplice RegionƔlnƭ muzeum v Teplicƭch'),
(28899, 'https://ror.org/04mfba740', 'en', 1, 'https://ror.org/04mfba740 Connecticut State Library'),
(28900, 'https://ror.org/04mfefe23', 'en', 1, 'https://ror.org/04mfefe23 Kyoto Notre Dame University äŗ¬éƒ½ćƒŽćƒ¼ćƒˆćƒ«ćƒ€ćƒ å„³å­å¤§å­¦'),
(28901, 'https://ror.org/04mfnn392', 'no_lang_code', 1, 'https://ror.org/04mfnn392 VVV Most (Czechia)'),
(28902, 'https://ror.org/04mgf6n79', 'en', 1, 'https://ror.org/04mgf6n79 Junagadh Agricultural University ąŖ•ą«ƒąŖ·ąŖæ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, ąŖœą«‚ąŖØąŖ¾ąŖ—ąŖ¢'),
(28903, 'https://ror.org/04mgy5815', 'en', 1, 'https://ror.org/04mgy5815 Kamsky Institute'),
(28904, 'https://ror.org/04mj88k68', 'en', 1, 'https://ror.org/04mj88k68 Perry Institute for Marine Science'),
(28905, 'https://ror.org/04mtaww72', 'en', 1, 'https://ror.org/04mtaww72 Kansas Oil Museum'),
(28906, 'https://ror.org/04mtcj695', 'en', 1, 'https://ror.org/04mtcj695 Unibersidad ng Katimugang Mindanao University of Southern Mindanao'),
(28907, 'https://ror.org/04mtv9h48', 'no_lang_code', 1, 'https://ror.org/04mtv9h48 Level (Czechia)'),
(28908, 'https://ror.org/04mtx7258', 'en', 1, 'https://ror.org/04mtx7258 Peabody Essex Museum'),
(28909, 'https://ror.org/04mvbr723', 'en', 1, 'https://ror.org/04mvbr723 Chuo Kikuu cha Mtakatifu Joseph Tanzania St. Joseph University In Tanzania'),
(28910, 'https://ror.org/04mvvs945', 'en', 1, 'https://ror.org/04mvvs945 Leeds Jane Culbreth Library'),
(28911, 'https://ror.org/04mw1hy69', 'en', 1, 'https://ror.org/04mw1hy69 Al Wataniya Private University الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© الخاصة'),
(28912, 'https://ror.org/04mwhg379', 'en', 1, 'https://ror.org/04mwhg379 Notre Dame University Pamantasang Notre Dame'),
(28913, 'https://ror.org/04my2jj52', 'en', 1, 'https://ror.org/04my2jj52 Center for Strategic and International Studies'),
(28914, 'https://ror.org/04myyf417', 'en', 1, 'https://ror.org/04myyf417 State Institute for Drug Control StĆ”tnĆ­ Ústav pro Kontrolu LĆ©Äiv'),
(28915, 'https://ror.org/04mz77s40', 'en', 1, 'https://ror.org/04mz77s40 El Paso Museum of History'),
(28916, 'https://ror.org/04mzk2m46', 'en', 1, 'https://ror.org/04mzk2m46 Kamskij State Institute of Physical Culture Камский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(28917, 'https://ror.org/04n0gan09', 'no_lang_code', 1, 'https://ror.org/04n0gan09 Hakel (Czechia)'),
(28918, 'https://ror.org/04n0rvp85', 'no_lang_code', 1, 'https://ror.org/04n0rvp85 Tech-X Corporation (United States)'),
(28919, 'https://ror.org/04n1dph88', 'id', 1, 'https://ror.org/04n1dph88 Universitas Sariputra Indonesia Tomohon'),
(28920, 'https://ror.org/04n1has83', 'id', 1, 'https://ror.org/04n1has83 Universitas Sahid Surakarta'),
(28921, 'https://ror.org/04n3hjx90', 'en', 1, 'https://ror.org/04n3hjx90 Association for Slavic East European and Eurasian Studies'),
(28922, 'https://ror.org/04n3n6d60', 'en', 1, 'https://ror.org/04n3n6d60 Sher-e-Kashmir University of Agricultural Sciences and Technology of Jammu'),
(28923, 'https://ror.org/04n6bbc07', 'en', 1, 'https://ror.org/04n6bbc07 The Millennium University মিলেনিয়াম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(28924, 'https://ror.org/04n6g3874', 'en', 1, 'https://ror.org/04n6g3874 Central Rappahannock Regional Library'),
(28925, 'https://ror.org/04n731m62', 'en', 1, 'https://ror.org/04n731m62 Osaka Shoin Women''s University å¤§é˜ŖęØŸč”­å„³å­å¤§å­¦'),
(28926, 'https://ror.org/04n7td094', 'en', 1, 'https://ror.org/04n7td094 Calvin Coolidge Presidential Foundation'),
(28927, 'https://ror.org/04n9bkr44', 'no_lang_code', 1, 'https://ror.org/04n9bkr44 Micronesia Conservation Trust'),
(28928, 'https://ror.org/04na2vb51', 'no_lang_code', 1, 'https://ror.org/04na2vb51 Tsukuba Gakuin University 筑波学院大学'),
(28929, 'https://ror.org/04nawkn69', 'en', 1, 'https://ror.org/04nawkn69 Bunsei University of Art ę–‡ę˜ŸčŠøč”“å¤§å­ø'),
(28930, 'https://ror.org/04ncvza93', 'en', 1, 'https://ror.org/04ncvza93 Charlotte-Mecklenburg Historic Landmarks Commission'),
(28931, 'https://ror.org/04nk82x68', 'en', 1, 'https://ror.org/04nk82x68 University of South Carolina Sumter'),
(28932, 'https://ror.org/04nmr9340', 'en', 1, 'https://ror.org/04nmr9340 Kyoto Saga University of Arts äŗ¬éƒ½åµÆå³ØčŠøč”“å¤§å­¦'),
(28933, 'https://ror.org/04nn8h763', 'id', 1, 'https://ror.org/04nn8h763 Universitas Azzahra'),
(28934, 'https://ror.org/04nnm2t84', 'en', 1, 'https://ror.org/04nnm2t84 Institute of Information Technologies, Economy and Management Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š˜ŠŠ¤ŠžŠ ŠœŠŠ¦Š˜ŠžŠŠŠ«Š„ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š™, Š­ŠšŠžŠŠžŠœŠ˜ŠšŠ˜ И ŠœŠ•ŠŠ•Š”Š–ŠœŠ•ŠŠ¢Š'),
(28935, 'https://ror.org/04nrt0320', 'en', 1, 'https://ror.org/04nrt0320 Fairfax County Public Schools'),
(28936, 'https://ror.org/04nvcbr70', 'en', 1, 'https://ror.org/04nvcbr70 Ryazan State Medical University named after Academician I.P. Pavlov Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика I.P. Павлов'),
(28937, 'https://ror.org/04nvvrb20', 'no_lang_code', 1, 'https://ror.org/04nvvrb20 Dakel (Czechia)'),
(28938, 'https://ror.org/04nwnby06', 'en', 1, 'https://ror.org/04nwnby06 Bayshore Center at Bivalve'),
(28939, 'https://ror.org/04nxva438', 'no_lang_code', 1, 'https://ror.org/04nxva438 Czech Consult (Czechia)'),
(28940, 'https://ror.org/04nxx3204', 'en', 1, 'https://ror.org/04nxx3204 Delaware Agricultural Museum'),
(28941, 'https://ror.org/04nxx3p41', 'en', 1, 'https://ror.org/04nxx3p41 Minsk Radioengineering College Минский РаГиотехнический коллеГж ŠœŃ–́нскі Š Š°Š“Ń‹Ń‘Ń‚ŃŃ…Š½Ń–ĢŃ‡Š½Ń‹ Кале́Гж'),
(28942, 'https://ror.org/04nxym641', 'en', 1, 'https://ror.org/04nxym641 Kazan State Agrarian University Казанский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Аграрный Университет'),
(28943, 'https://ror.org/04nyq6w82', 'en', 1, 'https://ror.org/04nyq6w82 Constitutional Rights Foundation Chicago'),
(28944, 'https://ror.org/04nz95741', 'en', 1, 'https://ror.org/04nz95741 Tatar State University of Humanities and Education Татар Гәүләт Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€-пеГагогика ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹ Татарский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28945, 'https://ror.org/04p11wc95', 'en', 1, 'https://ror.org/04p11wc95 National Council for the Traditional Arts'),
(28946, 'https://ror.org/04p1p1388', 'en', 1, 'https://ror.org/04p1p1388 Civil Defense Academy ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ гражГанской защиты МЧД России'),
(28947, 'https://ror.org/04p1tkq77', 'en', 1, 'https://ror.org/04p1tkq77 Podillya State Agrarian and Engineering University ŠŸŠ¾Š“Ń–Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний аграрно-технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28948, 'https://ror.org/04p3ez076', 'en', 1, 'https://ror.org/04p3ez076 Taipei City University of Science and Technology č‡ŗåŒ—åŸŽåø‚ē§‘ęŠ€å¤§å­ø'),
(28949, 'https://ror.org/04p4fx257', 'no_lang_code', 1, 'https://ror.org/04p4fx257 MSV Elektronika (Czechia)'),
(28950, 'https://ror.org/04p5w4d81', 'no_lang_code', 1, 'https://ror.org/04p5w4d81 Vinci (Czechia)'),
(28951, 'https://ror.org/04p9d0t65', 'no_lang_code', 1, 'https://ror.org/04p9d0t65 Mesing (Czechia)'),
(28952, 'https://ror.org/04p9hvh53', 'en', 1, 'https://ror.org/04p9hvh53 Loei Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąø„ąø¢'),
(28953, 'https://ror.org/04p9k4b15', 'id', 1, 'https://ror.org/04p9k4b15 Universitas Merdeka Ponorogo'),
(28954, 'https://ror.org/04p9zgs78', 'no_lang_code', 1, 'https://ror.org/04p9zgs78 Seigakuin University 聖学院大学'),
(28955, 'https://ror.org/04pad1p35', 'id', 1, 'https://ror.org/04pad1p35 Universitas Cokroaminoto Ngayogyakarta, Universitas Cokroaminoto Yogyakarta'),
(28956, 'https://ror.org/04pbams03', 'en', 1, 'https://ror.org/04pbams03 Perbanas Institute'),
(28957, 'https://ror.org/04pejce58', 'en', 1, 'https://ror.org/04pejce58 Academy of the Interior Ministry of the Republic of Belarus ŠŠŗŠ°Š“ŃŠ¼Ń–Ń ŠœŃ–Š½Ń–ŃŃ‚ŃŃ€ŃŃ‚Š²Š° ŃžŠ½ŃƒŃ‚Ń€Š°Š½Ń‹Ń… ŃŠæŃ€Š°Ńž Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(28958, 'https://ror.org/04pfrr552', 'en', 1, 'https://ror.org/04pfrr552 International Institute of Business Education ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнес-Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(28959, 'https://ror.org/04phxhf89', 'en', 1, 'https://ror.org/04phxhf89 San Francisco Museum of Modern Art'),
(28960, 'https://ror.org/04pj3k910', 'no_lang_code', 1, 'https://ror.org/04pj3k910 CultureWorks (United States)'),
(28961, 'https://ror.org/04pjsje19', 'en', 1, 'https://ror.org/04pjsje19 Great Books Foundation'),
(28962, 'https://ror.org/04pmz9934', 'en', 1, 'https://ror.org/04pmz9934 Siberian State Automobile and Highway University Š”ŠøŠ±ŠøŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾-Š“Š¾Ń€Š¾Š¶Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(28963, 'https://ror.org/04ppdmy96', 'en', 1, 'https://ror.org/04ppdmy96 Tabarestan University مؤسسه Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ طبرستان'),
(28964, 'https://ror.org/04pqedt90', 'en', 1, 'https://ror.org/04pqedt90 Baton Rouge Area Foundation'),
(28965, 'https://ror.org/04pqmjc38', 'id', 1, 'https://ror.org/04pqmjc38 Universitas Putra Indonesia "YPTK"'),
(28966, 'https://ror.org/04pvpk743', 'en', 1, 'https://ror.org/04pvpk743 University of New Hampshire at Manchester'),
(28967, 'https://ror.org/04q1n2n82', 'en', 1, 'https://ror.org/04q1n2n82 Shizuoka University of Art and Culture é™å²”ę–‡åŒ–čŠøč”“å¤§å­¦'),
(28968, 'https://ror.org/04q1vc929', 'en', 1, 'https://ror.org/04q1vc929 Latin American Youth Center'),
(28969, 'https://ror.org/04q3ga974', 'en', 1, 'https://ror.org/04q3ga974 Leeward Community College'),
(28970, 'https://ror.org/04q5kpf78', 'no_lang_code', 1, 'https://ror.org/04q5kpf78 Archimedia Workshop (United States)'),
(28971, 'https://ror.org/04q5p4a74', 'no_lang_code', 1, 'https://ror.org/04q5p4a74 Seisen University 清泉儳子大学'),
(28972, 'https://ror.org/04q5v8a44', 'en', 1, 'https://ror.org/04q5v8a44 Ulaanbaatar International University ŠžŠ»Š¾Š½ ŃƒŠ»ŃŃ‹Š½ ŃƒŠ»Š°Š°Š½Š±Š°Š°Ń‚Š°Ń€Ń‹Š½ ŠøŃ… ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(28973, 'https://ror.org/04q5vv384', 'en', 1, 'https://ror.org/04q5vv384 Hochschule für Angewandte Wissenschaften Hof Hof University of Applied Sciences'),
(28974, 'https://ror.org/04q6vjy48', 'en', 1, 'https://ror.org/04q6vjy48 Holyoke Public Library'),
(28975, 'https://ror.org/04q7z3j57', 'en', 1, 'https://ror.org/04q7z3j57 Saint Paul Public Library'),
(28976, 'https://ror.org/04q98sg39', 'en', 1, 'https://ror.org/04q98sg39 Prague Botanical Garden'),
(28977, 'https://ror.org/04q9yc293', 'id', 1, 'https://ror.org/04q9yc293 Universitas Tama Jagakarsa'),
(28978, 'https://ror.org/04qa18r22', 'id', 1, 'https://ror.org/04qa18r22 Universitas Tidar'),
(28979, 'https://ror.org/04qb0r423', 'en', 1, 'https://ror.org/04qb0r423 Georgian American University įƒ„įƒįƒ įƒ—įƒ£įƒš-įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ£įƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28980, 'https://ror.org/04qbhz780', 'no_lang_code', 1, 'https://ror.org/04qbhz780 Mrag Americas (United States)'),
(28981, 'https://ror.org/04qdhg582', 'en', 1, 'https://ror.org/04qdhg582 Jharkhand Rai University'),
(28982, 'https://ror.org/04qdzzb42', 'en', 1, 'https://ror.org/04qdzzb42 Musashino Art University ę­¦č”µé‡Žē¾Žč”“å¤§å­¦'),
(28983, 'https://ror.org/04qfewz28', 'en', 1, 'https://ror.org/04qfewz28 Crimea State Medical University named after S. I. Georgievsky ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ім. Š”. І. Š“ŠµŠ¾Ń€Š³Ń–Ń”Š²ŃŃŒŠŗŠ¾Š³Š¾ ŠšŃ€Ń‹ĢŠ¼ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøĢŠ½ŃŠŗŠøŠ¹ Университе́т и́мени Š”. И. Гео́ргиевского'),
(28984, 'https://ror.org/04qgykh45', 'en', 1, 'https://ror.org/04qgykh45 Omsk State Medical University ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28985, 'https://ror.org/04qhg3f29', 'cs', 1, 'https://ror.org/04qhg3f29 StřednĆ­ uměleckoprÅÆmyslovĆ” Å”kola sklÔřskĆ” ValaÅ”skĆ© MeziÅ™Ć­ÄĆ­'),
(28986, 'https://ror.org/04qj7fy53', 'en', 1, 'https://ror.org/04qj7fy53 Leavenworth Public Library'),
(28987, 'https://ror.org/04qjkhc08', 'en', 1, 'https://ror.org/04qjkhc08 Mirpur University of Science and Technology Ł…ŪŒŲ±Ł¾ŁˆŲ± ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŲ±Ų§Ū“ سائنس اور Ł¹ŪŒŚ©Ł†ŁˆŁ„ŁˆŲ¬ŪŒ'),
(28988, 'https://ror.org/04qpsed22', 'en', 1, 'https://ror.org/04qpsed22 East Tennessee Historical Society'),
(28989, 'https://ror.org/04qreff64', 'en', 1, 'https://ror.org/04qreff64 Episcopal Academy'),
(28990, 'https://ror.org/04qst5w65', 'en', 1, 'https://ror.org/04qst5w65 Zaporizhzhya National University Запорожский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28991, 'https://ror.org/04qszbx34', 'en', 1, 'https://ror.org/04qszbx34 University of the Sacred Heart č–åæƒå„³å­å¤§å­¦'),
(28992, 'https://ror.org/04qvy9k41', 'no_lang_code', 1, 'https://ror.org/04qvy9k41 Evotec (United Kingdom)'),
(28993, 'https://ror.org/04qw45d53', 'en', 1, 'https://ror.org/04qw45d53 Saint Louis Art Museum'),
(28994, 'https://ror.org/04qwasw26', 'en', 1, 'https://ror.org/04qwasw26 Daekyeung University ėŒ€ź²½ėŒ€ķ•™źµ'),
(28995, 'https://ror.org/04qxzae03', 'en', 1, 'https://ror.org/04qxzae03 University of Business in Wrocław Wyższa Szkoła Handlowa we Wrocławiu'),
(28996, 'https://ror.org/04r04yh88', 'no_lang_code', 1, 'https://ror.org/04r04yh88 Shokei College å°šēµ…å¤§å­¦'),
(28997, 'https://ror.org/04r0rbk24', 'en', 1, 'https://ror.org/04r0rbk24 Tarumanagara University'),
(28998, 'https://ror.org/04r2bzn21', 'no_lang_code', 1, 'https://ror.org/04r2bzn21 Geomedia (Czechia)'),
(28999, 'https://ror.org/04r30sv87', 'id', 1, 'https://ror.org/04r30sv87 Universitas Islam Kalimantan Muhammad Arsyad Al Banjary'),
(29000, 'https://ror.org/04r3dny05', 'no_lang_code', 1, 'https://ror.org/04r3dny05 Vanung University č¬čƒ½ē§‘ęŠ€å¤§å­ø'),
(29001, 'https://ror.org/04r58gt57', 'en', 1, 'https://ror.org/04r58gt57 University of Applied Science and Technology دانؓگاه Ų¬Ų§Ł…Ų¹ Ų¹Ł„Ł…ŪŒ-کاربردی جهاد ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(29002, 'https://ror.org/04r5d0y92', 'en', 1, 'https://ror.org/04r5d0y92 University of Kota ą¤•ą„‹ą¤Ÿą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29003, 'https://ror.org/04r5fv176', 'id', 1, 'https://ror.org/04r5fv176 Universitas Putera Batam'),
(29004, 'https://ror.org/04r5nt755', 'en', 1, 'https://ror.org/04r5nt755 Stockholm Academy of Dramatic Arts Stockholms dramatiska hƶgskola'),
(29005, 'https://ror.org/04r5ttx52', 'no_lang_code', 1, 'https://ror.org/04r5ttx52 Eprona (Czechia)'),
(29006, 'https://ror.org/04r5xzk86', 'en', 1, 'https://ror.org/04r5xzk86 Zhytomyr Polytechnic State University Š–ŠøŃ‚Š¾Š¼ŠøŃ€ŃŃŒŠŗŠøŠ¹ Гержавний технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29007, 'https://ror.org/04r8v5797', 'en', 1, 'https://ror.org/04r8v5797 Hagley Museum and Library'),
(29008, 'https://ror.org/04rbrkq32', 'en', 1, 'https://ror.org/04rbrkq32 Yamanashi Prefectural University å±±ę¢ØēœŒē«‹å¤§å­¦'),
(29009, 'https://ror.org/04rc9cg08', 'en', 1, 'https://ror.org/04rc9cg08 American International University West Africa'),
(29010, 'https://ror.org/04rdgrr80', 'en', 1, 'https://ror.org/04rdgrr80 Kaluga State University named after K.E.Tsiolkovski Калужский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. Š­. Циолковского'),
(29011, 'https://ror.org/04rdq3258', 'en', 1, 'https://ror.org/04rdq3258 University "Eftimie Murgu" of Reşiţa'),
(29012, 'https://ror.org/04rep4w03', 'en', 1, 'https://ror.org/04rep4w03 Izmail State University of Humanities Š†Š·Š¼Š°Ń—Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний Š³ŃƒŠ¼Š°Š½Ń–тарний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29013, 'https://ror.org/04rf2gx08', 'en', 1, 'https://ror.org/04rf2gx08 Alabama Law Enforcement Agency'),
(29014, 'https://ror.org/04rf83d41', 'en', 1, 'https://ror.org/04rf83d41 East-Siberian Institute of the Ministry of Internal Affairs of the Russian Federation восточно-сибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ министерства Š²Š½ŃƒŃ‚ренних Гел российской феГерации'),
(29015, 'https://ror.org/04rfsd440', 'en', 1, 'https://ror.org/04rfsd440 Buryat State University Š‘ŃƒŃ€ŃŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29016, 'https://ror.org/04rg3qa61', 'no_lang_code', 1, 'https://ror.org/04rg3qa61 Sungkonghoe University ģ„±ź³µķšŒėŒ€ķ•™źµ'),
(29017, 'https://ror.org/04rgv1h10', 'en', 1, 'https://ror.org/04rgv1h10 Hebrew Immigrant Aid Society'),
(29018, 'https://ror.org/04rhkrb43', 'en', 1, 'https://ror.org/04rhkrb43 Caroline County Public Library'),
(29019, 'https://ror.org/04rjm0720', 'en', 1, 'https://ror.org/04rjm0720 Spartanburg County Public Libraries'),
(29020, 'https://ror.org/04rkxwr48', 'en', 1, 'https://ror.org/04rkxwr48 Jin-ai University 仁愛大学'),
(29021, 'https://ror.org/04rmm3734', 'en', 1, 'https://ror.org/04rmm3734 National Radio Theater'),
(29022, 'https://ror.org/04rnnme19', 'en', 1, 'https://ror.org/04rnnme19 Fairfield County District Library'),
(29023, 'https://ror.org/04rry3397', 'en', 1, 'https://ror.org/04rry3397 Massachusetts Energy and Environmental Affairs'),
(29024, 'https://ror.org/04rwm8k47', 'en', 1, 'https://ror.org/04rwm8k47 Bronx County Historical Society'),
(29025, 'https://ror.org/04ryb0b77', 'en', 1, 'https://ror.org/04ryb0b77 Coastal States Stewardship Foundation'),
(29026, 'https://ror.org/04s03g948', 'id', 1, 'https://ror.org/04s03g948 Universitas Dr. Soetomo'),
(29027, 'https://ror.org/04s0vw952', 'no_lang_code', 1, 'https://ror.org/04s0vw952 Nuova Quasco (Italy)'),
(29028, 'https://ror.org/04s222234', 'en', 1, 'https://ror.org/04s222234 Sambalpur University ą¬øą¬®ą­ą¬¬ą¬²ą¬Ŗą­ą¬° ą¬¬ą¬æą¬¶ą­ą¬¬ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(29029, 'https://ror.org/04s45sk16', 'en', 1, 'https://ror.org/04s45sk16 Rhode Island PBS Foundation'),
(29030, 'https://ror.org/04s6e0d17', 'no_lang_code', 1, 'https://ror.org/04s6e0d17 Nagoya Keizai University åå¤å±‹ēµŒęøˆå¤§å­¦'),
(29031, 'https://ror.org/04s6jxt38', 'en', 1, 'https://ror.org/04s6jxt38 Sindh Agriculture University Ų³Ł†ŚŒ زرعي ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ Ł½Ł†ŚŠŁˆ ڄام'),
(29032, 'https://ror.org/04s8jdf66', 'en', 1, 'https://ror.org/04s8jdf66 LASALLE College of the Arts Maktab Seni Lasalle ę‹‰čØå°”č‰ŗęœÆå­¦é™¢'),
(29033, 'https://ror.org/04sb3zx15', 'id', 1, 'https://ror.org/04sb3zx15 Institut Pertanian Intan'),
(29034, 'https://ror.org/04scp9x73', 'en', 1, 'https://ror.org/04scp9x73 Unibersidad nin San Antonio University of Saint Anthony'),
(29035, 'https://ror.org/04sd0cj41', 'fr', 1, 'https://ror.org/04sd0cj41 AcadƩmie des Beaux-Arts'),
(29036, 'https://ror.org/04sdbjc29', 'en', 1, 'https://ror.org/04sdbjc29 Kristal University Universiteti Kristal'),
(29037, 'https://ror.org/04se5tt51', 'en', 1, 'https://ror.org/04se5tt51 Bikaner Technical University ą¤¬ą„€ą¤•ą¤¾ą¤Øą„‡ą¤° ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29038, 'https://ror.org/04sfnmc71', 'en', 1, 'https://ror.org/04sfnmc71 Glocal University ą¤—ą„ą¤²ą„‹ą¤•ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(29039, 'https://ror.org/04sfqar89', 'en', 1, 'https://ror.org/04sfqar89 National Marine Life Center'),
(29040, 'https://ror.org/04sjvrk20', 'no_lang_code', 1, 'https://ror.org/04sjvrk20 Maharaja Ganga Singh University महाराजा गंगा सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą¤¾ą¤²ą¤Æ'),
(29041, 'https://ror.org/04spwz235', 'en', 1, 'https://ror.org/04spwz235 American University of Science and Technology UniversitĆ© amĆ©ricaine de sciences et technologie الجامعة Ų§Ł„Ų£Ł…ŁŠŲ±ŁƒŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ā€Ž'),
(29042, 'https://ror.org/04srpf911', 'en', 1, 'https://ror.org/04srpf911 Kharkiv Petro Vasylenko National Technical University of Agriculture Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ім. ŠŸŠµŃ‚Ń€Š° Василенка Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° имени ŠŸŠµŃ‚ра Василенко'),
(29043, 'https://ror.org/04srwt726', 'no_lang_code', 1, 'https://ror.org/04srwt726 HPH (Czechia)'),
(29044, 'https://ror.org/04svrs371', 'id', 1, 'https://ror.org/04svrs371 Universitas Bangun Nusantara'),
(29045, 'https://ror.org/04sw18p91', 'en', 1, 'https://ror.org/04sw18p91 Murmansk State Technical University ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29046, 'https://ror.org/04swmc963', 'en', 1, 'https://ror.org/04swmc963 Pilgrim Hall Museum'),
(29047, 'https://ror.org/04swndt45', 'en', 1, 'https://ror.org/04swndt45 History Colorado Center'),
(29048, 'https://ror.org/04sxw1w14', 'en', 1, 'https://ror.org/04sxw1w14 St. Theresa''s Medical University of Yerevan'),
(29049, 'https://ror.org/04synqw60', 'en', 1, 'https://ror.org/04synqw60 Rajamangala University of Technology Lanna ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø„ą¹‰ąø²ąø™ąø™ąø²'),
(29050, 'https://ror.org/04sysb357', 'en', 1, 'https://ror.org/04sysb357 Library of Virginia'),
(29051, 'https://ror.org/04szbnb37', 'no_lang_code', 1, 'https://ror.org/04szbnb37 Vision Consulting Automotive (Czechia)'),
(29052, 'https://ror.org/04szp2m52', 'en', 1, 'https://ror.org/04szp2m52 Hsiuping University of Science and Technology äæ®å¹³ē§‘ęŠ€å¤§å­ø'),
(29053, 'https://ror.org/04t09e441', 'en', 1, 'https://ror.org/04t09e441 Volga Business Institute'),
(29054, 'https://ror.org/04t1qn077', 'en', 1, 'https://ror.org/04t1qn077 Kyoto Koka Women''s University äŗ¬éƒ½å…‰čÆå„³å­å¤§å­¦'),
(29055, 'https://ror.org/04t27vc74', 'id', 1, 'https://ror.org/04t27vc74 Universitas Widya Kartika'),
(29056, 'https://ror.org/04t2ykm02', 'en', 1, 'https://ror.org/04t2ykm02 Minsk State Linguistic University Минский Š³Š¾ŃŃƒŠ“арственный лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŃ–Š½ŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ лінгвістычны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(29057, 'https://ror.org/04t3peq77', 'id', 1, 'https://ror.org/04t3peq77 Institut Manajemen Koperasi Indonesia'),
(29058, 'https://ror.org/04t50yw64', 'en', 1, 'https://ror.org/04t50yw64 Islamic Azad University, Shahinshahr Branch Ų“Ų§Ł‡ŁŠŁ† Ų“Ł‡Ų±ŲŒŲ“Ų§ŪŒŪŒŁ† ؓهر'),
(29059, 'https://ror.org/04t6tw838', 'en', 1, 'https://ror.org/04t6tw838 Siberian State University Geosystems and Technology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ геосистем Šø технологий'),
(29060, 'https://ror.org/04t7gxr16', 'en', 1, 'https://ror.org/04t7gxr16 Communication University of Zhejiang ęµ™ę±Ÿä¼ åŖ’å­¦é™¢'),
(29061, 'https://ror.org/04t98w133', 'en', 1, 'https://ror.org/04t98w133 Pacific Salmon Commission'),
(29062, 'https://ror.org/04taat540', 'no_lang_code', 1, 'https://ror.org/04taat540 ČeskĆ” BioklimatologickĆ” Společnost (Czechia)'),
(29063, 'https://ror.org/04tcj6w24', 'en', 1, 'https://ror.org/04tcj6w24 Gifu University of Medical Science å²é˜œåŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(29064, 'https://ror.org/04teq3d43', 'no_lang_code', 1, 'https://ror.org/04teq3d43 Akustika Praha (Czechia)'),
(29065, 'https://ror.org/04tf3kx07', 'en', 1, 'https://ror.org/04tf3kx07 Astrakhan State University Астраханский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29066, 'https://ror.org/04tgeej53', 'en', 1, 'https://ror.org/04tgeej53 American University of Madaba الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ł…Ų§ŲÆŲØŲ§'),
(29067, 'https://ror.org/04tj7ta70', 'en', 1, 'https://ror.org/04tj7ta70 Historical Society of Western Pennsylvania'),
(29068, 'https://ror.org/04tp2w352', 'en', 1, 'https://ror.org/04tp2w352 Hagoromo International University ē¾½č”£å›½éš›å¤§å­¦'),
(29069, 'https://ror.org/04ty4mp95', 'en', 1, 'https://ror.org/04ty4mp95 Jorvik Viking Centre'),
(29070, 'https://ror.org/04ty8dh37', 'en', 1, 'https://ror.org/04ty8dh37 Delta State University'),
(29071, 'https://ror.org/04tydb537', 'en', 1, 'https://ror.org/04tydb537 New Hampshire Department of Environmental Services'),
(29072, 'https://ror.org/04v071k95', 'en', 1, 'https://ror.org/04v071k95 Dagestan State Technical University Дагестанский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29073, 'https://ror.org/04v0eyc78', 'en', 1, 'https://ror.org/04v0eyc78 Carlsbad City Library'),
(29074, 'https://ror.org/04v42p132', 'no_lang_code', 1, 'https://ror.org/04v42p132 ETC Consulting'),
(29075, 'https://ror.org/04v4fdz58', 'no_lang_code', 1, 'https://ror.org/04v4fdz58 Advanced Technology Group (Czechia)'),
(29076, 'https://ror.org/04v55rk33', 'en', 1, 'https://ror.org/04v55rk33 St. Louis Public Schools'),
(29077, 'https://ror.org/04v5m9m10', 'en', 1, 'https://ror.org/04v5m9m10 New England Conservatory of Music'),
(29078, 'https://ror.org/04v6fdx75', 'no_lang_code', 1, 'https://ror.org/04v6fdx75 Sako Brno (Czechia)'),
(29079, 'https://ror.org/04v7cww51', 'id', 1, 'https://ror.org/04v7cww51 Universitas Antakusuma'),
(29080, 'https://ror.org/04v7yv031', 'en', 1, 'https://ror.org/04v7yv031 Lanzhou University of Finance and Economics å…°å·žč“¢ē»å¤§å­¦'),
(29081, 'https://ror.org/04v84zt52', 'en', 1, 'https://ror.org/04v84zt52 Children''s Hospital of Western Ontario'),
(29082, 'https://ror.org/04v86ht05', 'en', 1, 'https://ror.org/04v86ht05 The Animas Museum'),
(29083, 'https://ror.org/04v9hhn38', 'en', 1, 'https://ror.org/04v9hhn38 International Academy of Business and Management ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Бизнеса Šø Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(29084, 'https://ror.org/04vb9qy63', 'en', 1, 'https://ror.org/04vb9qy63 Ishikawa Prefectural Nursing University ēŸ³å·ēœŒē«‹ēœ‹č­·å¤§å­¦'),
(29085, 'https://ror.org/04vew1z32', 'en', 1, 'https://ror.org/04vew1z32 Kim Chaek University of Technology ź¹€ģ±…ź³µģ—…ģ¢…ķ•©ėŒ€ķ•™'),
(29086, 'https://ror.org/04vfzt688', 'en', 1, 'https://ror.org/04vfzt688 Archaeological Institute of America'),
(29087, 'https://ror.org/04vh2cv64', 'en', 1, 'https://ror.org/04vh2cv64 Miyazaki Prefectural Nursing University å®®å“ŽēœŒē«‹ēœ‹č­·å¤§å­¦'),
(29088, 'https://ror.org/04vj5r404', 'en', 1, 'https://ror.org/04vj5r404 Honam University ķ˜øė‚ØėŒ€ķ•™źµ'),
(29089, 'https://ror.org/04vk90r05', 'en', 1, 'https://ror.org/04vk90r05 Sochi Institute of Economics and Information Technology Дочинский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Экономики И Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Ń‹Ń… Технологий'),
(29090, 'https://ror.org/04vts6h49', 'no_lang_code', 1, 'https://ror.org/04vts6h49 Kardan University دانؓگاه کاردان دکاردان Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(29091, 'https://ror.org/04vxqfe68', 'en', 1, 'https://ror.org/04vxqfe68 Pathumthani University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø›ąø—ąøøąø”ąø˜ąø²ąø™ąøµ'),
(29092, 'https://ror.org/04vympt94', 'en', 1, 'https://ror.org/04vympt94 Allama Iqbal Open University علامہ اقبال Ų§ŁˆŁ¾Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(29093, 'https://ror.org/04vzsq290', 'en', 1, 'https://ror.org/04vzsq290 Mississippi Alabama Sea Grant Consortium'),
(29094, 'https://ror.org/04w00w616', 'en', 1, 'https://ror.org/04w00w616 Vardhaman Mahaveer Open University ą¤µą¤°ą„ą¤§ą¤®ą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤–ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29095, 'https://ror.org/04w11h594', 'en', 1, 'https://ror.org/04w11h594 Pacific Science Center'),
(29096, 'https://ror.org/04w6xt508', 'en', 1, 'https://ror.org/04w6xt508 University of Minnesota Crookston'),
(29097, 'https://ror.org/04w7k2121', 'no_lang_code', 1, 'https://ror.org/04w7k2121 University of Fukuchiyama ē¦ēŸ„å±±å…¬ē«‹å¤§å­¦'),
(29098, 'https://ror.org/04w893s72', 'en', 1, 'https://ror.org/04w893s72 David Tvildiani Medical University įƒ“įƒįƒ•įƒ˜įƒ— įƒ¢įƒ•įƒ˜įƒšįƒ“įƒ˜įƒįƒœįƒ˜įƒ” ეახ. įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(29099, 'https://ror.org/04w8r2k84', 'no_lang_code', 1, 'https://ror.org/04w8r2k84 Nova Photonics (United States)'),
(29100, 'https://ror.org/04w97d535', 'en', 1, 'https://ror.org/04w97d535 Independent Filmmaker Project'),
(29101, 'https://ror.org/04wd4rg36', 'ro', 1, 'https://ror.org/04wd4rg36 Universitatea de Stat din Tiraspol'),
(29102, 'https://ror.org/04wdt0z89', 'en', 1, 'https://ror.org/04wdt0z89 Hochschule Rhein-Waal Rhine-Waal University of Applied Sciences'),
(29103, 'https://ror.org/04wdw1j96', 'en', 1, 'https://ror.org/04wdw1j96 Volzhsky University after V.N. Tatischev Волжский Университет им. Š’.Š. Татищева'),
(29104, 'https://ror.org/04wewdt41', 'en', 1, 'https://ror.org/04wewdt41 Russian Academy of Advocacy and Notaries Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š°Š“Š²Š¾ŠŗŠ°Ń‚ŃƒŃ€Ń‹ Šø нотариата'),
(29105, 'https://ror.org/04wf8g409', 'en', 1, 'https://ror.org/04wf8g409 Pushkin Leningrad State University ЛенинграГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š”. Пушкина'),
(29106, 'https://ror.org/04wfkgd43', 'en', 1, 'https://ror.org/04wfkgd43 College of Social and Media Culture Wyższa Szkoła Kultury Społecznej i Medialnej w Toruniu'),
(29107, 'https://ror.org/04whwem28', 'en', 1, 'https://ror.org/04whwem28 Japan College of Social Work ę—„ęœ¬ē¤¾ä¼šäŗ‹ę„­å¤§å­¦'),
(29108, 'https://ror.org/04wjmn281', 'en', 1, 'https://ror.org/04wjmn281 Kemerovo Institute of Food Science and Technology ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пищевой ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(29109, 'https://ror.org/04wk53b95', 'en', 1, 'https://ror.org/04wk53b95 University of Djibouti UniversitƩ de djibouti'),
(29110, 'https://ror.org/04wn0mt15', 'en', 1, 'https://ror.org/04wn0mt15 Washington Military Department'),
(29111, 'https://ror.org/04wtn5j93', 'en', 1, 'https://ror.org/04wtn5j93 Thai Binh University of Medicine and Pharmacy TrĘ°į»ng ĐẔi hį»c Y Dược ThĆ”i BƬnh'),
(29112, 'https://ror.org/04wv1t552', 'no_lang_code', 1, 'https://ror.org/04wv1t552 T-Soft (Czechia)'),
(29113, 'https://ror.org/04wv2vw16', 'en', 1, 'https://ror.org/04wv2vw16 Surindra Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąøøąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(29114, 'https://ror.org/04wvk1327', 'en', 1, 'https://ror.org/04wvk1327 Uttarakhand Open University ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤£ą„ą¤” ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29115, 'https://ror.org/04wwgp209', 'en', 1, 'https://ror.org/04wwgp209 Hebron University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŁ„'),
(29116, 'https://ror.org/04x0kmc95', 'en', 1, 'https://ror.org/04x0kmc95 Indianapolis Museum of Art'),
(29117, 'https://ror.org/04x1rx451', 'en', 1, 'https://ror.org/04x1rx451 Calicut University Employees Union ą“•ą“¾ą“²ą“æą“•ąµą“•ą“±ąµą“±ąµ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą“Žą“‚ą“Ŗąµą“²ąµ‡ą“¾ą“Æąµ€ą“øąµ ą“Æąµ‚ą“£ą“æą“Æąµ»'),
(29118, 'https://ror.org/04x2nbf55', 'no_lang_code', 1, 'https://ror.org/04x2nbf55 Synthesia (Czechia)'),
(29119, 'https://ror.org/04x499113', 'en', 1, 'https://ror.org/04x499113 Pundra University of Science and Technology ą¦Ŗą§ą¦Øą§ą¦”ą§ą¦° ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(29120, 'https://ror.org/04x4bgc51', 'fr', 1, 'https://ror.org/04x4bgc51 Institut du Sahel'),
(29121, 'https://ror.org/04x60fh82', 'en', 1, 'https://ror.org/04x60fh82 Akademia Muzyczna im. Feliksa Nowowiejskiego w Bydgoszczy Feliks Nowowiejski Academy of Music in Bydgoszcz'),
(29122, 'https://ror.org/04x649j07', 'en', 1, 'https://ror.org/04x649j07 Cebu Technological University'),
(29123, 'https://ror.org/04x72rc30', 'en', 1, 'https://ror.org/04x72rc30 Delaware Art Museum'),
(29124, 'https://ror.org/04x7zja85', 'en', 1, 'https://ror.org/04x7zja85 Cedar Rapids Museum of Art'),
(29125, 'https://ror.org/04x8bys48', 'id', 1, 'https://ror.org/04x8bys48 Universitas Widya Mataram Yogyakarta'),
(29126, 'https://ror.org/04xak9f33', 'en', 1, 'https://ror.org/04xak9f33 University College of Social Sciences Wyższa Szkoła Lingwistyczna'),
(29127, 'https://ror.org/04xampv42', 'en', 1, 'https://ror.org/04xampv42 Sehan University ģ„øķ•œėŒ€ķ•™źµ'),
(29128, 'https://ror.org/04xbyac61', 'en', 1, 'https://ror.org/04xbyac61 Danville Community College'),
(29129, 'https://ror.org/04xbzq724', 'no_lang_code', 1, 'https://ror.org/04xbzq724 VF (Czechia)'),
(29130, 'https://ror.org/04xc7z697', 'en', 1, 'https://ror.org/04xc7z697 Navoi State Mining Institute'),
(29131, 'https://ror.org/04xg2vm10', 'en', 1, 'https://ror.org/04xg2vm10 Atlanta History Center'),
(29132, 'https://ror.org/04xgmcn83', 'en', 1, 'https://ror.org/04xgmcn83 American Folklore Society'),
(29133, 'https://ror.org/04xhj8132', 'en', 1, 'https://ror.org/04xhj8132 Moscow State Technical University of Civil Aviation Московский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ гражГанской авиации'),
(29134, 'https://ror.org/04xmkh626', 'id', 1, 'https://ror.org/04xmkh626 Universitas 45 Surabaya'),
(29135, 'https://ror.org/04xpe4755', 'en', 1, 'https://ror.org/04xpe4755 Lehman College Art Gallery'),
(29136, 'https://ror.org/04xs0cw05', 'en', 1, 'https://ror.org/04xs0cw05 Kyoto University of Art and Design äŗ¬éƒ½é€ å½¢čŠøč”“å¤§å­¦'),
(29137, 'https://ror.org/04xt0wn96', 'en', 1, 'https://ror.org/04xt0wn96 Diamond Harbour Women''s University ą¦”ą¦¾ą¦Æą¦¼ą¦®ą¦Øą§ą¦” হারবার মহিলা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29138, 'https://ror.org/04xxbqf41', 'no_lang_code', 1, 'https://ror.org/04xxbqf41 Symbiom (Czechia)'),
(29139, 'https://ror.org/04xz43j90', 'en', 1, 'https://ror.org/04xz43j90 Kwangju Women''s University ź“‘ģ£¼ģ—¬ģžėŒ€ķ•™źµ'),
(29140, 'https://ror.org/04y1dd550', 'en', 1, 'https://ror.org/04y1dd550 Philadelphia Department of Records'),
(29141, 'https://ror.org/04y6y6h45', 'en', 1, 'https://ror.org/04y6y6h45 Karnataka State Law University ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ಕಾನೂನು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(29142, 'https://ror.org/04y7f2054', 'en', 1, 'https://ror.org/04y7f2054 Concord Public Schools and Concord-Carlisle Regional School District'),
(29143, 'https://ror.org/04y821h28', 'en', 1, 'https://ror.org/04y821h28 Georgia Historical Society'),
(29144, 'https://ror.org/04y99m182', 'en', 1, 'https://ror.org/04y99m182 Belarusian State Agricultural Academy Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ°Š³Š°ŃŠæŠ°Š“Š°Ń€Ń‡Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń'),
(29145, 'https://ror.org/04ybx1t57', 'en', 1, 'https://ror.org/04ybx1t57 Krasnoyarsk State Academy of Music and Theatre ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø Šø театра'),
(29146, 'https://ror.org/04ye9fj05', 'en', 1, 'https://ror.org/04ye9fj05 Surgut State Pedagogical University Š”ŃƒŃ€Š³ŃƒŃ‚ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(29147, 'https://ror.org/04yff2m38', 'id', 1, 'https://ror.org/04yff2m38 Institut Sains dan Teknologi TD Pardede TD Pardede Institute of Science and Technology'),
(29148, 'https://ror.org/04yh6v913', 'en', 1, 'https://ror.org/04yh6v913 North Asia University ćƒŽćƒ¼ć‚¹ć‚¢ć‚øć‚¢å¤§å­¦'),
(29149, 'https://ror.org/04yh8vz11', 'ro', 1, 'https://ror.org/04yh8vz11 Universitatea George Bacovia Bacau'),
(29150, 'https://ror.org/04yhjzf92', 'en', 1, 'https://ror.org/04yhjzf92 Savannah College of Art and Design'),
(29151, 'https://ror.org/04yhntq62', 'en', 1, 'https://ror.org/04yhntq62 Krishna University'),
(29152, 'https://ror.org/04yjdkj62', 'en', 1, 'https://ror.org/04yjdkj62 Sultan Kudarat State University'),
(29153, 'https://ror.org/04yk1tp18', 'en', 1, 'https://ror.org/04yk1tp18 Bost University دانؓگاه ŲØŲ³ŲŖ'),
(29154, 'https://ror.org/04yntn793', 'id', 1, 'https://ror.org/04yntn793 Universitas Darma Persada'),
(29155, 'https://ror.org/04yqxxq63', 'en', 1, 'https://ror.org/04yqxxq63 Zhongnan University of Economics and Law äø­å—č“¢ē»ę”æę³•å¤§å­¦'),
(29156, 'https://ror.org/04yrwqa21', 'en', 1, 'https://ror.org/04yrwqa21 Islamic Azad University Shahr-e-Rey دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“Ł‡Ų±Ų±ŪŒ'),
(29157, 'https://ror.org/04ysgxa85', 'en', 1, 'https://ror.org/04ysgxa85 Toho Gakuen School of Music ę”ęœ‹å­¦åœ’ éŸ³ę„½éƒØé–€'),
(29158, 'https://ror.org/04yvwfh57', 'en', 1, 'https://ror.org/04yvwfh57 Alpena Community College'),
(29159, 'https://ror.org/04yz5fm13', 'en', 1, 'https://ror.org/04yz5fm13 Mount Ida College'),
(29160, 'https://ror.org/04z1ced74', 'en', 1, 'https://ror.org/04z1ced74 Cascadia Research Collective'),
(29161, 'https://ror.org/04z33a802', 'en', 1, 'https://ror.org/04z33a802 Istanbul Yeni Yüzyıl University Yeni Yüzyıl Üniversitesi'),
(29162, 'https://ror.org/04z37sn09', 'en', 1, 'https://ror.org/04z37sn09 Eurasia International University ŌµÕ¾Ö€Õ”Õ½Õ«Õ” Õ„Õ«Õ»Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ€Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(29163, 'https://ror.org/04z3dv266', 'en', 1, 'https://ror.org/04z3dv266 Kostroma State Agricultural Academy ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29164, 'https://ror.org/04z3jpx43', 'en', 1, 'https://ror.org/04z3jpx43 Shenyang Conservatory of Music ę²ˆé˜³éŸ³ä¹å­¦é™¢'),
(29165, 'https://ror.org/04z484c04', 'id', 1, 'https://ror.org/04z484c04 Universitas Borobudur'),
(29166, 'https://ror.org/04z4g6e62', 'en', 1, 'https://ror.org/04z4g6e62 Pavlo Tychyna Uman State Pedagogical University Уманский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Павла Тычины Уманський Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Павла Тичини'),
(29167, 'https://ror.org/04z5xnd65', 'en', 1, 'https://ror.org/04z5xnd65 Ion Mincu University of Architecture and Urbanism Universitatea de Arhitectură și Urbanism Ion Mincu'),
(29168, 'https://ror.org/04za16w58', 'en', 1, 'https://ror.org/04za16w58 Open Institute of Law ŠžŃ‚ŠŗŃ€Ń‹Ń‚Ń‹Š¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29169, 'https://ror.org/04zax5940', 'en', 1, 'https://ror.org/04zax5940 National Council on Public History'),
(29170, 'https://ror.org/04zbaj011', 'no_lang_code', 1, 'https://ror.org/04zbaj011 Seinan Jo Gakuin University č„æå—å„³å­¦é™¢å¤§å­¦'),
(29171, 'https://ror.org/04zbzhb67', 'en', 1, 'https://ror.org/04zbzhb67 Danish National Academy of Music'),
(29172, 'https://ror.org/04zc7sw86', 'en', 1, 'https://ror.org/04zc7sw86 Serang Raya University Universitas Serang Raya'),
(29173, 'https://ror.org/04zj95y60', 'en', 1, 'https://ror.org/04zj95y60 Dravidian University ą¤¦ą„ą¤°ą¤µą¤æą¤”ą¤¼ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®¤ą®æą®°ą®¾ą®µą®æą®Ÿą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°¦ą±ą°°ą°µą°æą°” ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą± ą²¦ą³ą²°ą²¾ą²µą²æą²” ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(29174, 'https://ror.org/04zjz7s05', 'en', 1, 'https://ror.org/04zjz7s05 Nizhyn Gogol State University ŠŠµŠ¶ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ŠŠøŠŗŠ¾Š»Š°Ń Š“Š¾Š³Š¾Š»Ń ŠŃ–Š¶ŠøŠ½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Миколи Š“Š¾Š³Š¾Š»Ń'),
(29175, 'https://ror.org/04zn7jb34', 'en', 1, 'https://ror.org/04zn7jb34 Moscow State Institute of International Relations Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(29176, 'https://ror.org/04zqz4f11', 'id', 1, 'https://ror.org/04zqz4f11 Universitas Wiraraja'),
(29177, 'https://ror.org/04zrzwm74', 'id', 1, 'https://ror.org/04zrzwm74 Universitas Langlangbuana'),
(29178, 'https://ror.org/04zs74560', 'no_lang_code', 1, 'https://ror.org/04zs74560 Společnost pro Obnovu Vesnice a MalĆ©ho Města'),
(29179, 'https://ror.org/04zskzc62', 'en', 1, 'https://ror.org/04zskzc62 Eastern Samar State University'),
(29180, 'https://ror.org/04ztbty92', 'id', 1, 'https://ror.org/04ztbty92 Institut Ilmu Sosial dan Ilmu Politik Jakarta'),
(29181, 'https://ror.org/04zttnq06', 'en', 1, 'https://ror.org/04zttnq06 Nakhimov Naval Academy Š§Š’Š’ŠœŠ£ им П.Š”. ŠŠ°Ń…ŠøŠ¼Š¾Š²Š°'),
(29182, 'https://ror.org/04zvnyb42', 'en', 1, 'https://ror.org/04zvnyb42 Bursa Orhangazi University Bursa Orhangazi Üniversitesi'),
(29183, 'https://ror.org/04zvt5792', 'no_lang_code', 1, 'https://ror.org/04zvt5792 Four Elements Capital (United Kingdom)'),
(29184, 'https://ror.org/04zvxqj76', 'en', 1, 'https://ror.org/04zvxqj76 Benicia Public Library'),
(29185, 'https://ror.org/04zwjnc85', 'en', 1, 'https://ror.org/04zwjnc85 Carmel Unified School District'),
(29186, 'https://ror.org/04zwvmd78', 'en', 1, 'https://ror.org/04zwvmd78 New Castle Historical Society'),
(29187, 'https://ror.org/04zxaa490', 'en', 1, 'https://ror.org/04zxaa490 Invertis University'),
(29188, 'https://ror.org/04zxxm138', 'en', 1, 'https://ror.org/04zxxm138 Reading Area Community College'),
(29189, 'https://ror.org/04zykg256', 'en', 1, 'https://ror.org/04zykg256 Miami-Dade Public Library System'),
(29190, 'https://ror.org/04zzths72', 'en', 1, 'https://ror.org/04zzths72 Ansan University ģ•ˆģ‚°ėŒ€ķ•™źµ'),
(29191, 'https://ror.org/050041j09', 'en', 1, 'https://ror.org/050041j09 Philadelphia Museum of Art'),
(29192, 'https://ror.org/050058296', 'en', 1, 'https://ror.org/050058296 Wake County Government'),
(29193, 'https://ror.org/05007jy86', 'id', 1, 'https://ror.org/05007jy86 Institut Teknologi Adhi Tama Surabaya'),
(29194, 'https://ror.org/05008jp45', 'en', 1, 'https://ror.org/05008jp45 Northwest University of Politics and Law č„æåŒ—ę”æę³•å¤§å­¦'),
(29195, 'https://ror.org/0500bxx34', 'no_lang_code', 1, 'https://ror.org/0500bxx34 Elmarco (Czechia)'),
(29196, 'https://ror.org/0500dec37', 'en', 1, 'https://ror.org/0500dec37 Packwood House Museum'),
(29197, 'https://ror.org/05028dx30', 'en', 1, 'https://ror.org/05028dx30 University of Medicine 2 Yangon į€†į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗį‚ ရန်ကုန်'),
(29198, 'https://ror.org/0502vx353', 'en', 1, 'https://ror.org/0502vx353 Lviv National Academy of Arts Lwowska Narodowa Akademia Sztuki Š›ŃŒŠ²Š¾Š²ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š² Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń мистецтв'),
(29199, 'https://ror.org/05055ck28', 'en', 1, 'https://ror.org/05055ck28 Calvin University ģ¹¼ė¹ˆėŒ€ķ•™źµ'),
(29200, 'https://ror.org/0505t6e30', 'no_lang_code', 1, 'https://ror.org/0505t6e30 MikroChem LKT (Czechia)'),
(29201, 'https://ror.org/0505vt318', 'en', 1, 'https://ror.org/0505vt318 Siberian Academy of Law, Economics and Management Š”ŠøŠ±ŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ права, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(29202, 'https://ror.org/0506j4s84', 'pl', 1, 'https://ror.org/0506j4s84 Wyższa Szkoła Promocji w Warszawie'),
(29203, 'https://ror.org/05077g455', 'en', 1, 'https://ror.org/05077g455 Save Ellis Island'),
(29204, 'https://ror.org/05081wb05', 'no_lang_code', 1, 'https://ror.org/05081wb05 Yang-En University 仰恩大学'),
(29205, 'https://ror.org/050901n67', 'en', 1, 'https://ror.org/050901n67 Belarusian State Academy of Music Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š¼ŃƒŠ·Ń‹ŠŗŃ– Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø'),
(29206, 'https://ror.org/0509ndt57', 'en', 1, 'https://ror.org/0509ndt57 Namseoul University ė‚Øģ„œģšøėŒ€ķ•™źµ'),
(29207, 'https://ror.org/050a69869', 'en', 1, 'https://ror.org/050a69869 Little Compton Historical Society'),
(29208, 'https://ror.org/050b5gf77', 'en', 1, 'https://ror.org/050b5gf77 Museum of Photographic Arts'),
(29209, 'https://ror.org/050bktx08', 'en', 1, 'https://ror.org/050bktx08 Kovrov State Technological Academy named after V A Degtyarev ŠšŠ¾Š²Ń€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29210, 'https://ror.org/050cz4220', 'en', 1, 'https://ror.org/050cz4220 Vizcaya Museum & Gardens'),
(29211, 'https://ror.org/050dyg448', 'en', 1, 'https://ror.org/050dyg448 Azerbaijan University of Languages Azərbaycan Dillər Universiteti АзербайГжанский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ·Ń‹ŠŗŠ¾Š²'),
(29212, 'https://ror.org/050evx807', 'no_lang_code', 1, 'https://ror.org/050evx807 SVOS (Czechia)');
INSERT INTO `rors` VALUES
(29213, 'https://ror.org/050fbe140', 'en', 1, 'https://ror.org/050fbe140 Hong Kong Academy for Performing Arts é¦™ęøÆę¼”č—å­øé™¢'),
(29214, 'https://ror.org/050hatp65', 'en', 1, 'https://ror.org/050hatp65 Capitol University'),
(29215, 'https://ror.org/050k36w08', 'en', 1, 'https://ror.org/050k36w08 Tchaikovsky State Institute of Physical Culture Чайковский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(29216, 'https://ror.org/050ky8958', 'en', 1, 'https://ror.org/050ky8958 Stearns History Museum'),
(29217, 'https://ror.org/050m5b118', 'en', 1, 'https://ror.org/050m5b118 Mahamakut Buddhist University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø”ąø«ąø²ąø”ąøąøøąøąø£ąø²ąøŠąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(29218, 'https://ror.org/050mny455', 'no_lang_code', 1, 'https://ror.org/050mny455 Polymath Research (United States)'),
(29219, 'https://ror.org/050n8gz83', 'en', 1, 'https://ror.org/050n8gz83 University of Central Thailand ดหาวณทยาคัยภาคกคาง'),
(29220, 'https://ror.org/050ngd429', 'no_lang_code', 1, 'https://ror.org/050ngd429 Akademie (Czechia)'),
(29221, 'https://ror.org/050nj1e51', 'en', 1, 'https://ror.org/050nj1e51 Virginia Department of Historic Resources'),
(29222, 'https://ror.org/050nxyk29', 'en', 1, 'https://ror.org/050nxyk29 Tokyo College of Music ę±äŗ¬éŸ³ę„½å¤§å­¦'),
(29223, 'https://ror.org/050p4pc72', 'id', 1, 'https://ror.org/050p4pc72 Universitas 17 Agustus 1945 Samarinda'),
(29224, 'https://ror.org/050pbhp67', 'en', 1, 'https://ror.org/050pbhp67 Consortium for Coordination of Research activities Concerning the Venice Lagoon System Consorzio per il coordinamento delle ricerche inerenti al sistema lagunare di Venezia'),
(29225, 'https://ror.org/050r2qc20', 'en', 1, 'https://ror.org/050r2qc20 Kyushu University of Nursing and Social Welfare ä¹å·žēœ‹č­·ē¦ē„‰å¤§å­¦'),
(29226, 'https://ror.org/050rnbb37', 'en', 1, 'https://ror.org/050rnbb37 Shomal University دانؓگاه Ų“Ł…Ų§Ł„'),
(29227, 'https://ror.org/050t9a084', 'no_lang_code', 1, 'https://ror.org/050t9a084 BIOPHARM (Czechia)'),
(29228, 'https://ror.org/050trak22', 'no_lang_code', 1, 'https://ror.org/050trak22 Cervenka Consulting (Czechia)'),
(29229, 'https://ror.org/050xprb61', 'en', 1, 'https://ror.org/050xprb61 Pueblo of Zuni'),
(29230, 'https://ror.org/050yj3e54', 'en', 1, 'https://ror.org/050yj3e54 Tohono O''odham Nation'),
(29231, 'https://ror.org/050z7kr33', 'it', 1, 'https://ror.org/050z7kr33 Fondazione Lelio e Lisli Basso'),
(29232, 'https://ror.org/0513d6k55', 'en', 1, 'https://ror.org/0513d6k55 Allentown Public Library'),
(29233, 'https://ror.org/0514m3k39', 'en', 1, 'https://ror.org/0514m3k39 Stredoeurópska vysokÔ Ŕkola v Skalici University of Central Europe in Skalica'),
(29234, 'https://ror.org/0515swv60', 'en', 1, 'https://ror.org/0515swv60 Kartemquin Films'),
(29235, 'https://ror.org/0516eyx49', 'en', 1, 'https://ror.org/0516eyx49 Islamic Azad University of Damavand دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲÆŁ…Ų§ŁˆŁ†ŲÆ'),
(29236, 'https://ror.org/0518w5j31', 'en', 1, 'https://ror.org/0518w5j31 Lankaran State University Lənkəran Dƶvlət Universiteti'),
(29237, 'https://ror.org/05198a862', 'en', 1, 'https://ror.org/05198a862 International Sakharov Environmental Institute ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½Ń‹ Š”Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Ń–Š¼Ń А.Š”. Дахарава БДУ'),
(29238, 'https://ror.org/0519z5y48', 'en', 1, 'https://ror.org/0519z5y48 Staten Island Children''s Museum'),
(29239, 'https://ror.org/051bbhe61', 'en', 1, 'https://ror.org/051bbhe61 Old Stone House'),
(29240, 'https://ror.org/051bwkh16', 'pl', 1, 'https://ror.org/051bwkh16 Wyższa Szkoła Stosunków Międzynarodowych i Amerykanistyki'),
(29241, 'https://ror.org/051czz811', 'en', 1, 'https://ror.org/051czz811 National Academy of Environmental and Resort Construction ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń прироГоохоронного і ŠŗŃƒŃ€Š¾Ń€Ń‚Š½Š¾Š³Š¾ Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š°'),
(29242, 'https://ror.org/051et2y58', 'en', 1, 'https://ror.org/051et2y58 Joong-Ang Sangha University'),
(29243, 'https://ror.org/051f6n260', 'en', 1, 'https://ror.org/051f6n260 Yaroslavl State Agricultural Academy ŠÆŃ€Š¾ŃŠ»Š°Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29244, 'https://ror.org/051gphn80', 'no_lang_code', 1, 'https://ror.org/051gphn80 Pneuven (Czechia)'),
(29245, 'https://ror.org/051j9rm73', 'en', 1, 'https://ror.org/051j9rm73 Father Saturnino Urios University Pamantasang Padre Saturnino Urios'),
(29246, 'https://ror.org/051jm0x83', 'en', 1, 'https://ror.org/051jm0x83 Jalalabad State University Жалал-АбаГ мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(29247, 'https://ror.org/051kvhx87', 'en', 1, 'https://ror.org/051kvhx87 Saba University Ų¬Ų§Ł…Ų¹Ų© Ų³ŲØŲ£'),
(29248, 'https://ror.org/051m28f53', 'no_lang_code', 1, 'https://ror.org/051m28f53 Jensen Management Service (United States)'),
(29249, 'https://ror.org/051mkpe32', 'en', 1, 'https://ror.org/051mkpe32 Bioterra University Bucharest Universitatea Bioterra din București'),
(29250, 'https://ror.org/051sa4h84', 'en', 1, 'https://ror.org/051sa4h84 University of Maroua UniversitƩ de Maroua'),
(29251, 'https://ror.org/051smb947', 'en', 1, 'https://ror.org/051smb947 Nagasaki Institute of Applied Science é•·å“Žē·åˆē§‘å­¦å¤§å­¦'),
(29252, 'https://ror.org/051t2jr69', 'id', 1, 'https://ror.org/051t2jr69 Universitas Pembangunan Panca Budi Medan'),
(29253, 'https://ror.org/051v0c125', 'en', 1, 'https://ror.org/051v0c125 DeCordova Sculpture Park and Museum'),
(29254, 'https://ror.org/051wzgj54', 'id', 1, 'https://ror.org/051wzgj54 Universitas Narotama'),
(29255, 'https://ror.org/051xzna40', 'id', 1, 'https://ror.org/051xzna40 Universitas Muhammadiyah Palu'),
(29256, 'https://ror.org/051zns832', 'en', 1, 'https://ror.org/051zns832 Konan Women''s University ē”²å—å„³å­å¤§å­¦'),
(29257, 'https://ror.org/05202v862', 'en', 1, 'https://ror.org/05202v862 Tarim University å””é‡ŒęœØå¤§å­¦'),
(29258, 'https://ror.org/0520cy215', 'no_lang_code', 1, 'https://ror.org/0520cy215 GEOtest (Czechia)'),
(29259, 'https://ror.org/0520yg777', 'no_lang_code', 1, 'https://ror.org/0520yg777 MindSet Rx (United States)'),
(29260, 'https://ror.org/05238qm85', 'no_lang_code', 1, 'https://ror.org/05238qm85 Amaranth (Czechia)'),
(29261, 'https://ror.org/0525x3k72', 'en', 1, 'https://ror.org/0525x3k72 Zaporizhzhya State Engineering Academy Інженерний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ¾Š³Š¾ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ'),
(29262, 'https://ror.org/052a22698', 'en', 1, 'https://ror.org/052a22698 National Institute of Science and Technology'),
(29263, 'https://ror.org/052bawr89', 'no_lang_code', 1, 'https://ror.org/052bawr89 TOS Kuřim (Czechia)'),
(29264, 'https://ror.org/052crx470', 'id', 1, 'https://ror.org/052crx470 Universitas Islam Lamongan'),
(29265, 'https://ror.org/052d5p297', 'en', 1, 'https://ror.org/052d5p297 Somerville Museum'),
(29266, 'https://ror.org/052dy9793', 'en', 1, 'https://ror.org/052dy9793 Norges musikkhĆøgskole Norjan valtiollinen musiikkikorkeakoulu Norwegian Academy of Music'),
(29267, 'https://ror.org/052j3fv27', 'en', 1, 'https://ror.org/052j3fv27 Rostov Institute of Law of the Ministry of Internal Affairs of the Russian Federation Ростовский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(29268, 'https://ror.org/052nqyp83', 'no_lang_code', 1, 'https://ror.org/052nqyp83 Research Institute for Building Materials (Czechia) Výzkumný ústav stavebních hmot,a.s.'),
(29269, 'https://ror.org/052q00364', 'en', 1, 'https://ror.org/052q00364 Berkshire Theatre Group'),
(29270, 'https://ror.org/052q2t745', 'en', 1, 'https://ror.org/052q2t745 China Conservatory äø­å›½éŸ³ä¹å­¦é™¢'),
(29271, 'https://ror.org/052qf7p09', 'en', 1, 'https://ror.org/052qf7p09 Far Eastern Law Institute of Ministry of Internal Affairs of Russia Š”ŠŠ›Š¬ŠŠ•Š’ŠžŠ”Š¢ŠžŠ§ŠŠ«Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(29272, 'https://ror.org/052w7db62', 'en', 1, 'https://ror.org/052w7db62 HamhÅ­ng University of Chemical Industry ķ•Øķ„ķ™”ķ•™ź³µģ—…ėŒ€ķ•™'),
(29273, 'https://ror.org/052xmwh44', 'en', 1, 'https://ror.org/052xmwh44 Idaho Falls Public Library'),
(29274, 'https://ror.org/052xves36', 'en', 1, 'https://ror.org/052xves36 Myanmar Aerospace Engineering University မြန်မာနိုင်ငံ į€œį€±į€€į€¼į€±į€¬į€„į€ŗį€øį€”į€¾į€„į€·į€ŗį€”į€¬į€€į€¬į€žį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29275, 'https://ror.org/052zrr036', 'en', 1, 'https://ror.org/052zrr036 Canik Başarı University Canik Başarı Üniversitesi'),
(29276, 'https://ror.org/0530t2h81', 'en', 1, 'https://ror.org/0530t2h81 Spicer Adventist University'),
(29277, 'https://ror.org/0531m2867', 'en', 1, 'https://ror.org/0531m2867 Kemerovo State Agricultural Institute ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29278, 'https://ror.org/0533m8c72', 'en', 1, 'https://ror.org/0533m8c72 Webster University Geneva'),
(29279, 'https://ror.org/0538g0d09', 'no_lang_code', 1, 'https://ror.org/0538g0d09 Kurashiki Sakuyo University ćć‚‰ć—ćä½œé™½å¤§å­¦'),
(29280, 'https://ror.org/0538gj066', 'en', 1, 'https://ror.org/0538gj066 National University of the Chaco Austral Universidad Nacional del Chaco Austral'),
(29281, 'https://ror.org/0538j0209', 'en', 1, 'https://ror.org/0538j0209 Qafqaz Universiteti Qafqaz University'),
(29282, 'https://ror.org/0538qav07', 'en', 1, 'https://ror.org/0538qav07 Pacific Symphony'),
(29283, 'https://ror.org/0539t2e91', 'en', 1, 'https://ror.org/0539t2e91 Thorneloe University'),
(29284, 'https://ror.org/0539zen48', 'en', 1, 'https://ror.org/0539zen48 Nalsar University of Law'),
(29285, 'https://ror.org/053bxpc30', 'en', 1, 'https://ror.org/053bxpc30 National Japanese American Historical Society'),
(29286, 'https://ror.org/053em4g68', 'en', 1, 'https://ror.org/053em4g68 Anderson Public Library'),
(29287, 'https://ror.org/053fxhf38', 'en', 1, 'https://ror.org/053fxhf38 International Black Sea University įƒØįƒįƒ•įƒ˜ įƒ–įƒ¦įƒ•įƒ˜įƒ” įƒ”įƒįƒ”įƒ įƒ—įƒįƒØįƒįƒ įƒ˜įƒ”įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(29288, 'https://ror.org/053g25f89', 'id', 1, 'https://ror.org/053g25f89 Universitas Sangga Buana YPKP'),
(29289, 'https://ror.org/053g6f175', 'en', 1, 'https://ror.org/053g6f175 Centre de demande d’admission aux universitĆ©s de l’Ontario Ontario Universities’ Application Centre'),
(29290, 'https://ror.org/053gxvt69', 'id', 1, 'https://ror.org/053gxvt69 Universitas Saburai'),
(29291, 'https://ror.org/053h75930', 'en', 1, 'https://ror.org/053h75930 Bunkyo University 文教大学'),
(29292, 'https://ror.org/053hsst90', 'en', 1, 'https://ror.org/053hsst90 Dr. M.G.R. Educational and Research Institute'),
(29293, 'https://ror.org/053k06e94', 'en', 1, 'https://ror.org/053k06e94 Lauren Rogers Museum of Art'),
(29294, 'https://ror.org/053kevk63', 'en', 1, 'https://ror.org/053kevk63 Ateneo de Manila University'),
(29295, 'https://ror.org/053nvxd25', 'en', 1, 'https://ror.org/053nvxd25 Guru Kashi University ਗੁਰੂ ਕਾਸ਼ੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(29296, 'https://ror.org/053v5zb41', 'en', 1, 'https://ror.org/053v5zb41 Harry S Truman College'),
(29297, 'https://ror.org/053wftt74', 'en', 1, 'https://ror.org/053wftt74 Arak University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ų±Ų§Ś©'),
(29298, 'https://ror.org/053wp5j10', 'no_lang_code', 1, 'https://ror.org/053wp5j10 International Technology Products'),
(29299, 'https://ror.org/053yxat32', 'en', 1, 'https://ror.org/053yxat32 Dr. Sarvepalli Radhakrishnan Rajasthan Ayurved University ą¤”ą„‰ ą¤øą¤°ą„ą¤µą¤Ŗą¤²ą„ą¤²ą„€ ą¤°ą¤¾ą¤§ą¤¾ą¤•ą„ƒą¤·ą„ą¤£ą¤Ø ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤†ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29300, 'https://ror.org/053z1kb20', 'en', 1, 'https://ror.org/053z1kb20 Komsomolsk-on-Amur State Technical University Комсомольский-на-ŠŠ¼ŃƒŃ€Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29301, 'https://ror.org/053zwkn78', 'en', 1, 'https://ror.org/053zwkn78 Montgomery County-Norristown Public Library'),
(29302, 'https://ror.org/0540ez438', 'en', 1, 'https://ror.org/0540ez438 Laramie County Library'),
(29303, 'https://ror.org/05417j740', 'en', 1, 'https://ror.org/05417j740 State University of Gorontalo Universitas Negeri Gorontalo'),
(29304, 'https://ror.org/05486d596', 'en', 1, 'https://ror.org/05486d596 Norwegian Police University College PolitihĆøgskolen'),
(29305, 'https://ror.org/0549zdk35', 'en', 1, 'https://ror.org/0549zdk35 Pamantasan ng Pangasinan University of Pangasinan'),
(29306, 'https://ror.org/054b7a787', 'en', 1, 'https://ror.org/054b7a787 Mississippi Public Broadcasting'),
(29307, 'https://ror.org/054b9aj21', 'en', 1, 'https://ror.org/054b9aj21 El Paso Public Library'),
(29308, 'https://ror.org/054bthw57', 'en', 1, 'https://ror.org/054bthw57 Cypress College'),
(29309, 'https://ror.org/054dx8336', 'en', 1, 'https://ror.org/054dx8336 Iwate Prefectural University å²©ę‰‹ēœŒē«‹å¤§å­¦'),
(29310, 'https://ror.org/054e0wg16', 'en', 1, 'https://ror.org/054e0wg16 University of Northeastern Philippines'),
(29311, 'https://ror.org/054e4t190', 'en', 1, 'https://ror.org/054e4t190 Jeonju National University of Education ģ „ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(29312, 'https://ror.org/054fdbt51', 'en', 1, 'https://ror.org/054fdbt51 AZʏRBAYCAN RESPUBLİKASININ PREZİDENTİ YANINDA DƖVLʏT İDARʏƇİLİK AKADEMİYASI Academy of Public Administration'),
(29313, 'https://ror.org/054ff8869', 'en', 1, 'https://ror.org/054ff8869 San Francisco Symphony'),
(29314, 'https://ror.org/054j84f79', 'en', 1, 'https://ror.org/054j84f79 St. Louis University High School'),
(29315, 'https://ror.org/054jv7347', 'en', 1, 'https://ror.org/054jv7347 Kannada University ą²•ą²Øą³ą²Øą²” ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(29316, 'https://ror.org/054jx1t36', 'en', 1, 'https://ror.org/054jx1t36 Free International University of Moldova Universitatea Liberă Internaţională din Moldova'),
(29317, 'https://ror.org/054m2gy59', 'en', 1, 'https://ror.org/054m2gy59 Jacques Marchais Center of Tibetan Art'),
(29318, 'https://ror.org/054m41m41', 'fr', 1, 'https://ror.org/054m41m41 Institut National du BĆ¢timent et des Travaux Publics'),
(29319, 'https://ror.org/054n82381', 'en', 1, 'https://ror.org/054n82381 Russian University of Cooperation Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ кооперации'),
(29320, 'https://ror.org/054q67042', 'en', 1, 'https://ror.org/054q67042 Nebraska State Historical Society'),
(29321, 'https://ror.org/054qmd302', 'en', 1, 'https://ror.org/054qmd302 Williamsburg Regional Library'),
(29322, 'https://ror.org/054sr2w55', 'en', 1, 'https://ror.org/054sr2w55 Binary University of Management & Entrepreneurship'),
(29323, 'https://ror.org/054t85f27', 'en', 1, 'https://ror.org/054t85f27 Hingham Public Library'),
(29324, 'https://ror.org/054xjq184', 'en', 1, 'https://ror.org/054xjq184 A. N. Kosygin Moscow State Textile University Московский Š³Š¾ŃŃƒŠ“арственный Ń‚ŠµŠŗŃŃ‚ŠøŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š. ŠšŠ¾ŃŃ‹Š³ŠøŠ½Š°'),
(29325, 'https://ror.org/054ygw858', 'en', 1, 'https://ror.org/054ygw858 University of Security Management in KoÅ”ice VysokĆ” Å”kola bezpečnostnĆ©ho manažérstva v KoÅ”iciach'),
(29326, 'https://ror.org/054yvqw54', 'en', 1, 'https://ror.org/054yvqw54 Maryland Association for Environmental and Outdoor Education'),
(29327, 'https://ror.org/0551qsw90', 'en', 1, 'https://ror.org/0551qsw90 Belarusian Russian University Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ¾-Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29328, 'https://ror.org/0552kp582', 'en', 1, 'https://ror.org/0552kp582 Catholic University of South Sudan'),
(29329, 'https://ror.org/055326464', 'en', 1, 'https://ror.org/055326464 Mbeya University of Science and Technology'),
(29330, 'https://ror.org/05540h853', 'no_lang_code', 1, 'https://ror.org/05540h853 Chiba Keizai University åƒč‘‰ēµŒęøˆå¤§å­¦'),
(29331, 'https://ror.org/055688f96', 'en', 1, 'https://ror.org/055688f96 State Conservatory of Uzbekistan'),
(29332, 'https://ror.org/0556naa44', 'en', 1, 'https://ror.org/0556naa44 Yokkaichi University 四旄市大学'),
(29333, 'https://ror.org/0556q6716', 'no_lang_code', 1, 'https://ror.org/0556q6716 AGRO-EKO (Czechia)'),
(29334, 'https://ror.org/05580ht21', 'en', 1, 'https://ror.org/05580ht21 Chengdu Sport University ęˆéƒ½ä½“č‚²å­¦é™¢'),
(29335, 'https://ror.org/0558rq776', 'en', 1, 'https://ror.org/0558rq776 Ramsey County Historical Society'),
(29336, 'https://ror.org/055mbnd94', 'no_lang_code', 1, 'https://ror.org/055mbnd94 Sanno University ē”£ę„­čƒ½ēŽ‡å¤§å­¦'),
(29337, 'https://ror.org/055nq3844', 'no_lang_code', 1, 'https://ror.org/055nq3844 Electronic Product Services (Czechia)'),
(29338, 'https://ror.org/055pc7h14', 'en', 1, 'https://ror.org/055pc7h14 New York City Department of Records and Information Services'),
(29339, 'https://ror.org/055q7hq94', 'en', 1, 'https://ror.org/055q7hq94 New Mexico Commission of Public Records'),
(29340, 'https://ror.org/055rtmw65', 'id', 1, 'https://ror.org/055rtmw65 Universitas Baiturrahmah'),
(29341, 'https://ror.org/055tbsg25', 'en', 1, 'https://ror.org/055tbsg25 Bay Area Radio Drama'),
(29342, 'https://ror.org/055zdhj54', 'zh', 1, 'https://ror.org/055zdhj54 Taiwan Shoufu University, å°ē£é¦–åŗœå¤§å­ø'),
(29343, 'https://ror.org/0560jvm78', 'en', 1, 'https://ror.org/0560jvm78 Veer Bahadur Singh Purvanchal University ą¤µą„€ą¤° ą¤¬ą¤¹ą¤¾ą¤¦ą„ą¤° सिंह ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤‚ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®µąÆ€ą®°ąÆ ą®Ŗą®•ą®¤ąÆ‚ą®°ąÆ ą®šą®æą®™ąÆ ą®ŖąÆ‚ą®°ąÆą®µą®¾ą®žąÆą®šą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(29344, 'https://ror.org/0561zqn56', 'en', 1, 'https://ror.org/0561zqn56 University System of Ohio'),
(29345, 'https://ror.org/0562ytb14', 'en', 1, 'https://ror.org/0562ytb14 Bukovinian State Medical University Š‘ŃƒŠŗŠ¾Š²ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š‘ŃƒŠŗŠ¾Š²ŠøŠ½ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29346, 'https://ror.org/0562zzt06', 'en', 1, 'https://ror.org/0562zzt06 Ryazan State University Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”.А. Есенина'),
(29347, 'https://ror.org/0563h0629', 'no_lang_code', 1, 'https://ror.org/0563h0629 Mangalayatan University मंगलायतन ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(29348, 'https://ror.org/0563jgr23', 'en', 1, 'https://ror.org/0563jgr23 Save the Whales'),
(29349, 'https://ror.org/0563xp259', 'en', 1, 'https://ror.org/0563xp259 Sports University of Tirana Universiteti i Sporteve tƫ Tiranƫs'),
(29350, 'https://ror.org/0564x5q33', 'en', 1, 'https://ror.org/0564x5q33 Menaul Historical Library of the Southwest'),
(29351, 'https://ror.org/05654m147', 'en', 1, 'https://ror.org/05654m147 Center for Civic Education'),
(29352, 'https://ror.org/0567mpb57', 'id', 1, 'https://ror.org/0567mpb57 Universitas Abdurahman Saleh Situbondo'),
(29353, 'https://ror.org/05682nv68', 'en', 1, 'https://ror.org/05682nv68 Pennsylvania Heritage Society'),
(29354, 'https://ror.org/0568p5n31', 'en', 1, 'https://ror.org/0568p5n31 Akita University of Art ē§‹ē”°å…¬ē«‹ē¾Žč”“å¤§å­¦'),
(29355, 'https://ror.org/05696d323', 'en', 1, 'https://ror.org/05696d323 Tokyo Christian University ę±äŗ¬åŸŗē£ę•™å¤§å­¦'),
(29356, 'https://ror.org/056ad8q42', 'en', 1, 'https://ror.org/056ad8q42 Kazimieras Simonavičius University Vilniaus Verslo Teisės Akademija'),
(29357, 'https://ror.org/056bber35', 'en', 1, 'https://ror.org/056bber35 Rajasthan Technical University ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą¤¾ą¤²ą¤Æ'),
(29358, 'https://ror.org/056bksm23', 'en', 1, 'https://ror.org/056bksm23 Osaka Electro-Communication University å¤§é˜Ŗé›»ę°—é€šäæ”å¤§å­¦'),
(29359, 'https://ror.org/056c31v05', 'en', 1, 'https://ror.org/056c31v05 Gregory University Uturu'),
(29360, 'https://ror.org/056c6h780', 'en', 1, 'https://ror.org/056c6h780 American University in the Emirates الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في ال؄مارات'),
(29361, 'https://ror.org/056d32z48', 'en', 1, 'https://ror.org/056d32z48 Pamantasan ng Baguio University of Baguio'),
(29362, 'https://ror.org/056fhh809', 'en', 1, 'https://ror.org/056fhh809 Ashiya University čŠ¦å±‹å¤§å­¦'),
(29363, 'https://ror.org/056fjw561', 'no_lang_code', 1, 'https://ror.org/056fjw561 Induk University ģøė•ėŒ€ķ•™źµ'),
(29364, 'https://ror.org/056gdnv76', 'en', 1, 'https://ror.org/056gdnv76 Kunitachi College of Music å›½ē«‹éŸ³ę„½å¤§å­¦'),
(29365, 'https://ror.org/056hsts40', 'no_lang_code', 1, 'https://ror.org/056hsts40 Evolving Systems Consulting Aerospace (Czechia)'),
(29366, 'https://ror.org/056mtf007', 'en', 1, 'https://ror.org/056mtf007 Czech Space Office'),
(29367, 'https://ror.org/056nwn519', 'en', 1, 'https://ror.org/056nwn519 Keiai University 敬愛大学'),
(29368, 'https://ror.org/056p61s65', 'no_lang_code', 1, 'https://ror.org/056p61s65 Horiba (United Kingdom)'),
(29369, 'https://ror.org/056q8mg35', 'en', 1, 'https://ror.org/056q8mg35 Missouri Historical Society'),
(29370, 'https://ror.org/056rhyt66', 'en', 1, 'https://ror.org/056rhyt66 Saint Paul University Surigao'),
(29371, 'https://ror.org/056rqtp72', 'no_lang_code', 1, 'https://ror.org/056rqtp72 VRL Praha (Czechia)'),
(29372, 'https://ror.org/056sktz68', 'en', 1, 'https://ror.org/056sktz68 Da Nang University of Economics TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ ĐƠ Nįŗµng'),
(29373, 'https://ror.org/056vcnr65', 'en', 1, 'https://ror.org/056vcnr65 Minnesota Department of Natural Resources'),
(29374, 'https://ror.org/056vtz595', 'en', 1, 'https://ror.org/056vtz595 Nueva Ecija University of Science and Technology Pamantasan ng Nueva Ecija sa Agham at Teknolohiya'),
(29375, 'https://ror.org/056wdsj76', 'no_lang_code', 1, 'https://ror.org/056wdsj76 Research Institute for Pharmacy and Biochemistry (Czechia) Výzkumný Ustav pro Farmacii a Biochemii'),
(29376, 'https://ror.org/056xmjm50', 'en', 1, 'https://ror.org/056xmjm50 New Hampshire Lakes Association'),
(29377, 'https://ror.org/056xnk046', 'en', 1, 'https://ror.org/056xnk046 Vali Asr University of Rafsanjan'),
(29378, 'https://ror.org/056z5bx32', 'en', 1, 'https://ror.org/056z5bx32 Hochschule für angewandte Wissenschaften Landshut University of Applied Sciences Landshut'),
(29379, 'https://ror.org/056zvg634', 'en', 1, 'https://ror.org/056zvg634 Independent Production Fund'),
(29380, 'https://ror.org/0571tcv43', 'en', 1, 'https://ror.org/0571tcv43 Alabama Department of Archives and History'),
(29381, 'https://ror.org/0572trk36', 'ro', 1, 'https://ror.org/0572trk36 Institutul Teologic Baptist din București'),
(29382, 'https://ror.org/05735s737', 'no_lang_code', 1, 'https://ror.org/05735s737 Embitron (Czechia)'),
(29383, 'https://ror.org/0575dme84', 'en', 1, 'https://ror.org/0575dme84 Tottori University of Environmental Studies é³„å–ē’°å¢ƒå¤§å­¦'),
(29384, 'https://ror.org/0576vga12', 'en', 1, 'https://ror.org/0576vga12 Podkarpacki Uniwersytet Narodowy im. Wasyla Stefanyka Vasyl Stefanyk Precarpathian National University ŠŸŃ€ŠøŠŗŠ°Ń€ŠæŠ°Ń‚ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’Š°ŃŠøŠ»ŠøŃ Дтефаника ŠŸŃ€ŠøŠŗŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’Š°ŃŠøŠ»Ń Дтефаника'),
(29385, 'https://ror.org/0578kb180', 'en', 1, 'https://ror.org/0578kb180 Altai State Medical University Алтайский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29386, 'https://ror.org/05799pa89', 'no_lang_code', 1, 'https://ror.org/05799pa89 Gondwana University ą¤—ą„‹ą¤‚ą¤”ą¤µą¤¾ą¤Øą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29387, 'https://ror.org/057ap5t09', 'en', 1, 'https://ror.org/057ap5t09 RK University'),
(29388, 'https://ror.org/057db3962', 'pl', 1, 'https://ror.org/057db3962 Wyższa Szkoła Gospodarowania Nieruchomościami'),
(29389, 'https://ror.org/057gnqw22', 'en', 1, 'https://ror.org/057gnqw22 Islamic University of Technology ইসলামিক ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(29390, 'https://ror.org/057j5m475', 'en', 1, 'https://ror.org/057j5m475 Ural Institute for the Humanities Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29391, 'https://ror.org/057jpqa22', 'en', 1, 'https://ror.org/057jpqa22 Christian University of Thailand ดหาวณทยาคัยครณสเตียน'),
(29392, 'https://ror.org/057jstn88', 'en', 1, 'https://ror.org/057jstn88 Center for the Study of the Presidency and Congress'),
(29393, 'https://ror.org/057m8sk45', 'en', 1, 'https://ror.org/057m8sk45 Society of Early Americanists'),
(29394, 'https://ror.org/057makt82', 'en', 1, 'https://ror.org/057makt82 Institute of Applied Mechanics Instituts für angewandte Mechanik'),
(29395, 'https://ror.org/057p3dx48', 'en', 1, 'https://ror.org/057p3dx48 Hanil University ķ•œģ¼ģž„ģ‹ ėŒ€ķ•™źµ'),
(29396, 'https://ror.org/057p7pc42', 'en', 1, 'https://ror.org/057p7pc42 Ural State Mining University Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ горный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29397, 'https://ror.org/057q3ez97', 'en', 1, 'https://ror.org/057q3ez97 Newport Art Museum'),
(29398, 'https://ror.org/057qzst49', 'en', 1, 'https://ror.org/057qzst49 Moscow Humanitarian-Technical Academy ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-Š¢ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29399, 'https://ror.org/057rq6p34', 'en', 1, 'https://ror.org/057rq6p34 National Maritime Center'),
(29400, 'https://ror.org/057vdbk84', 'en', 1, 'https://ror.org/057vdbk84 Saratov State Socio-Economic University Даратовский ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š Š­Š£ им. Š“. Š’. ŠŸŠ»ŠµŃ…Š°Š½Š¾Š²Š°'),
(29401, 'https://ror.org/057y1pm64', 'en', 1, 'https://ror.org/057y1pm64 Institute of Art Restoration Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² реставрации'),
(29402, 'https://ror.org/0581e0971', 'en', 1, 'https://ror.org/0581e0971 Cornell Cooperative Extension of Suffolk County'),
(29403, 'https://ror.org/0586y4s33', 'no_lang_code', 1, 'https://ror.org/0586y4s33 Inoorero University'),
(29404, 'https://ror.org/0587qta27', 'no_lang_code', 1, 'https://ror.org/0587qta27 Prototypa (Czechia)'),
(29405, 'https://ror.org/058afab11', 'en', 1, 'https://ror.org/058afab11 Exploring New Horizons'),
(29406, 'https://ror.org/058ange06', 'en', 1, 'https://ror.org/058ange06 Hebei University of Architecture ę²³åŒ—å»ŗē­‘å·„ēØ‹å­¦é™¢'),
(29407, 'https://ror.org/058bps337', 'id', 1, 'https://ror.org/058bps337 Universitas Pasir Pangaraian'),
(29408, 'https://ror.org/058c2zn82', 'en', 1, 'https://ror.org/058c2zn82 East Africa University Ų¬Ų§Ł…Ų¹Ų© ؓرق Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§'),
(29409, 'https://ror.org/058e7px26', 'en', 1, 'https://ror.org/058e7px26 Azerbaijan State Pedagogical University Azərbaycan Dƶvlət Pedaqoji Universiteti'),
(29410, 'https://ror.org/058h4f948', 'no_lang_code', 1, 'https://ror.org/058h4f948 Keeneland Association'),
(29411, 'https://ror.org/058jafb94', 'en', 1, 'https://ror.org/058jafb94 Kuban State Agrarian University Кубанский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29412, 'https://ror.org/058p2fn24', 'no_lang_code', 1, 'https://ror.org/058p2fn24 Vitrina University'),
(29413, 'https://ror.org/058qbcf90', 'no_lang_code', 1, 'https://ror.org/058qbcf90 PolyComp (Czechia)'),
(29414, 'https://ror.org/058sshm54', 'en', 1, 'https://ror.org/058sshm54 Institute of Oceanology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¾ŠŗŠµŠ°Š½Š¾Š»Š¾Š³ŠøŃ'),
(29415, 'https://ror.org/058svg759', 'en', 1, 'https://ror.org/058svg759 National Institute of Business ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š‘Š˜Š—ŠŠ•Š”Š'),
(29416, 'https://ror.org/058tx1a56', 'en', 1, 'https://ror.org/058tx1a56 Heriot-Watt University Dubai Ų¬Ų§Ł…Ų¹Ų© Ł‡ŁŠŲ±ŁŠŁˆŲŖ-وات دبي'),
(29417, 'https://ror.org/058tztn15', 'no_lang_code', 1, 'https://ror.org/058tztn15 Hydro International (Ireland)'),
(29418, 'https://ror.org/058v42s42', 'en', 1, 'https://ror.org/058v42s42 Utah State University Eastern'),
(29419, 'https://ror.org/058w2q710', 'id', 1, 'https://ror.org/058w2q710 Universitas Wiraswasta Indonesia'),
(29420, 'https://ror.org/058zc6h57', 'en', 1, 'https://ror.org/058zc6h57 Northwest Museum of Arts and Culture'),
(29421, 'https://ror.org/05910xk89', 'no_lang_code', 1, 'https://ror.org/05910xk89 Gukje Cyber University źµ­ģ œģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(29422, 'https://ror.org/05933aq68', 'en', 1, 'https://ror.org/05933aq68 Shizuoka University of Welfare é™å²”ē¦ē„‰å¤§å­¦'),
(29423, 'https://ror.org/0593bd590', 'hu', 1, 'https://ror.org/0593bd590 Szent AtanĆ”z Gƶrƶgkatolikus HittudomĆ”nyi Főiskola'),
(29424, 'https://ror.org/0593kfr97', 'en', 1, 'https://ror.org/0593kfr97 Urganch davlat universiteti Urgench State University'),
(29425, 'https://ror.org/05960ca78', 'en', 1, 'https://ror.org/05960ca78 Russian Academy of Arts Š Š¾ŃŃŠøĢŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµĢŠ¼ŠøŃ Ń…ŃƒŠ“Š¾ĢŠ¶ŠµŃŃ‚Š²'),
(29426, 'https://ror.org/0596j8n35', 'en', 1, 'https://ror.org/0596j8n35 Brookline Public Schools'),
(29427, 'https://ror.org/05986n320', 'en', 1, 'https://ror.org/05986n320 Akaki Tsereteli State University Ō±ÕÆÕ”ÕÆÕ« Ō¾Õ„Ö€Õ„Õ©Õ„Õ¬Õ«Õ« Õ”Õ¶Õ¾Õ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ įƒ„įƒ£įƒ—įƒįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(29428, 'https://ror.org/05999pw96', 'id', 1, 'https://ror.org/05999pw96 Universitas Pancasakti Tegal'),
(29429, 'https://ror.org/0599t2n59', 'en', 1, 'https://ror.org/0599t2n59 Cooch Behar Panchanan Barma University ą¤•ą„‚ą¤š बिहार ą¤Ŗą¤‚ą¤šą¤¾ą¤Øą¤Ø ą¤¬ą¤°ą„ą¤®ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦•ą§‹ą¦šą¦¬ą¦æą¦¹ą¦¾ą¦° ą¦Ŗą¦žą§ą¦šą¦¾ą¦Øą¦Ø ą¦¬ą¦°ą§ą¦®ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29430, 'https://ror.org/059a0tw60', 'en', 1, 'https://ror.org/059a0tw60 DAPHNE Institute of Applied Ecology'),
(29431, 'https://ror.org/059bgad73', 'en', 1, 'https://ror.org/059bgad73 Middle East University Ų¬Ų§Ł…Ų¹Ų© الؓرق Ų§Ł„Ų£ŁˆŲ³Ų·'),
(29432, 'https://ror.org/059cjcr63', 'no_lang_code', 1, 'https://ror.org/059cjcr63 Baiko Gakuin University 梅光学院大学'),
(29433, 'https://ror.org/059cs8z68', 'id', 1, 'https://ror.org/059cs8z68 Universitas Pasundan'),
(29434, 'https://ror.org/059dyfn28', 'en', 1, 'https://ror.org/059dyfn28 Center for Prevention Services'),
(29435, 'https://ror.org/059edgr15', 'en', 1, 'https://ror.org/059edgr15 Donnelly College'),
(29436, 'https://ror.org/059fmyk31', 'en', 1, 'https://ror.org/059fmyk31 Soai University 相愛大学'),
(29437, 'https://ror.org/059fpzy63', 'en', 1, 'https://ror.org/059fpzy63 Muriel L. MacGregor Charitable Trust'),
(29438, 'https://ror.org/059fxrr07', 'en', 1, 'https://ror.org/059fxrr07 Partners for Livable Places'),
(29439, 'https://ror.org/059gxc315', 'en', 1, 'https://ror.org/059gxc315 Cambodian Mekong University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž˜įŸįž‚įž„įŸ’įž‚įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(29440, 'https://ror.org/059hx7q04', 'en', 1, 'https://ror.org/059hx7q04 Gunma University of Health and Welfare ē¾¤é¦¬åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(29441, 'https://ror.org/059hy2f55', 'en', 1, 'https://ror.org/059hy2f55 Gwangju National University of Education ź“‘ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(29442, 'https://ror.org/059jntb51', 'en', 1, 'https://ror.org/059jntb51 Unibersidad ng Saint Louis University of Saint Louis'),
(29443, 'https://ror.org/059kfxy53', 'no_lang_code', 1, 'https://ror.org/059kfxy53 Elitex Machinery (Czechia)'),
(29444, 'https://ror.org/059nxy021', 'en', 1, 'https://ror.org/059nxy021 Tokyo Zokei University ę±äŗ¬é€ å½¢å¤§å­¦'),
(29445, 'https://ror.org/059pgr720', 'en', 1, 'https://ror.org/059pgr720 Gifu Women''s University 岐阜儳子大学'),
(29446, 'https://ror.org/059pxp552', 'en', 1, 'https://ror.org/059pxp552 Rabindra Bharati University ą¤°ą¤µą„€ą¤Øą„ą¤¦ą„ą¤° ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦°ą¦¬ą§€ą¦Øą§ą¦¦ą§ą¦°ą¦­ą¦¾ą¦°ą¦¤ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29447, 'https://ror.org/059t51t95', 'en', 1, 'https://ror.org/059t51t95 Misamis University'),
(29448, 'https://ror.org/059xffm27', 'en', 1, 'https://ror.org/059xffm27 Pontifical University Antonianum Pontificia UniversitƠ Antonianum PƤpstliche UniversitƤt Antonianum UniversitƩ pontificale de saint-antoine'),
(29449, 'https://ror.org/059y7xr21', 'id', 1, 'https://ror.org/059y7xr21 Universitas Tompotika Luwuk'),
(29450, 'https://ror.org/059zrbe49', 'en', 1, 'https://ror.org/059zrbe49 Applied Science University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(29451, 'https://ror.org/05a23ek12', 'en', 1, 'https://ror.org/05a23ek12 Saint Petersburg State Academic Institute of Painting Sculpture and Architecture named after I.E. Repin Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ акаГемический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ живописи ŃŠŗŃƒŠ»ŃŒŠæŃ‚ŃƒŃ€Ń‹ Šø Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ имени И.Š•. Репин'),
(29452, 'https://ror.org/05a30nk74', 'en', 1, 'https://ror.org/05a30nk74 Foundation for Lincoln City Libraries'),
(29453, 'https://ror.org/05a33p325', 'no_lang_code', 1, 'https://ror.org/05a33p325 NovaTarg Therapeutics (United States)'),
(29454, 'https://ror.org/05a3fka94', 'en', 1, 'https://ror.org/05a3fka94 University College of Enterprise and Administration in Lublin Wyższa Szkoła Przedsiębiorczości i Administracji'),
(29455, 'https://ror.org/05a4gt120', 'no_lang_code', 1, 'https://ror.org/05a4gt120 SQS Fiber Optics (Czechia) SQS VlƔknovƔ optika'),
(29456, 'https://ror.org/05a4v8r91', 'en', 1, 'https://ror.org/05a4v8r91 Yunnan Arts University äŗ‘å—č‰ŗęœÆå­¦é™¢'),
(29457, 'https://ror.org/05a550a57', 'en', 1, 'https://ror.org/05a550a57 Dolnośląska Szkoła Wyższa University of Lower Silesia'),
(29458, 'https://ror.org/05a61hj73', 'en', 1, 'https://ror.org/05a61hj73 Thepsatri Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąø—ąøžąøŖąø•ąø£ąøµąø„ąøžąøšąøøąø£ąøµ'),
(29459, 'https://ror.org/05ackpy69', 'no_lang_code', 1, 'https://ror.org/05ackpy69 Northeastern Regional Association of Coastal and Ocean Observing Systems (United States)'),
(29460, 'https://ror.org/05ad1hb84', 'no_lang_code', 1, 'https://ror.org/05ad1hb84 Meopta Optika (Czechia)'),
(29461, 'https://ror.org/05agbef66', 'no_lang_code', 1, 'https://ror.org/05agbef66 MSR Engines (Czechia)'),
(29462, 'https://ror.org/05aghjq44', 'en', 1, 'https://ror.org/05aghjq44 Cincinnati Zoo and Botanical Garden'),
(29463, 'https://ror.org/05ahk0y26', 'no_lang_code', 1, 'https://ror.org/05ahk0y26 KrÔtký Film Praha (Czechia)'),
(29464, 'https://ror.org/05ak6yg81', 'en', 1, 'https://ror.org/05ak6yg81 Reno County Museum'),
(29465, 'https://ror.org/05apvj660', 'no_lang_code', 1, 'https://ror.org/05apvj660 Toshulin (Czechia)'),
(29466, 'https://ror.org/05ar41694', 'en', 1, 'https://ror.org/05ar41694 Korea Christian University'),
(29467, 'https://ror.org/05arzt710', 'en', 1, 'https://ror.org/05arzt710 Sri Sathya Sai Institute of Higher Learning'),
(29468, 'https://ror.org/05at4t633', 'en', 1, 'https://ror.org/05at4t633 Historical Society of Pennsylvania'),
(29469, 'https://ror.org/05atctj59', 'en', 1, 'https://ror.org/05atctj59 Turkmen State Medical University Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŠøŠø'),
(29470, 'https://ror.org/05avebb86', 'en', 1, 'https://ror.org/05avebb86 Alaska Native Harbor Seal Commission'),
(29471, 'https://ror.org/05aymst21', 'en', 1, 'https://ror.org/05aymst21 Minami Kyushu University 南九州大学'),
(29472, 'https://ror.org/05az7em54', 'en', 1, 'https://ror.org/05az7em54 Kent State University at Ashtabula'),
(29473, 'https://ror.org/05b0v1a86', 'en', 1, 'https://ror.org/05b0v1a86 Makah Tribal Council'),
(29474, 'https://ror.org/05b2fjs73', 'en', 1, 'https://ror.org/05b2fjs73 Ferguson Library'),
(29475, 'https://ror.org/05b2prn24', 'en', 1, 'https://ror.org/05b2prn24 Leman University'),
(29476, 'https://ror.org/05b4sem27', 'en', 1, 'https://ror.org/05b4sem27 International Slavic Institute ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Š”Š»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29477, 'https://ror.org/05b4xwc96', 'en', 1, 'https://ror.org/05b4xwc96 Kamianets-Podіlskyi Ivan Ohiienko National University Ukraiński Uniwersytet Państwowy w Kamieńcu Podolskim Кам''ŃŠ½ŠµŃ†ŃŒ-ŠŸŠ¾Š“Ń–Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана ŠžŠ³Ń–єнка ŠšŠ°Š¼ŠµŠ½ŠµŃ†-ПоГольский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29478, 'https://ror.org/05b5sds65', 'en', 1, 'https://ror.org/05b5sds65 University of Misan Ų¬Ų§Ł…Ų¹Ų© Ł…ŁŠŲ³Ų§Ł†'),
(29479, 'https://ror.org/05b7g7730', 'en', 1, 'https://ror.org/05b7g7730 Tungnan University ę±å—ē§‘ęŠ€å¤§å­ø'),
(29480, 'https://ror.org/05bamwv87', 'en', 1, 'https://ror.org/05bamwv87 Ukrainian Engineering Pedagogics Academy Š£ŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń инженерно-ŠæŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° інженерно-пеГагогічна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(29481, 'https://ror.org/05ban2t96', 'en', 1, 'https://ror.org/05ban2t96 Jackson County Historical Society'),
(29482, 'https://ror.org/05bbh2585', 'en', 1, 'https://ror.org/05bbh2585 Ministry of Internal Affairs of the Russian Federation ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Šž Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(29483, 'https://ror.org/05bd7aq21', 'en', 1, 'https://ror.org/05bd7aq21 TrĘ°į»ng ĐẔi hį»c Y khoa Vinh Vinh Medical University'),
(29484, 'https://ror.org/05bdemk73', 'en', 1, 'https://ror.org/05bdemk73 Old South Association'),
(29485, 'https://ror.org/05bemmp19', 'en', 1, 'https://ror.org/05bemmp19 Institute of International Business Education Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾Š³Š¾ бизнес-Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(29486, 'https://ror.org/05bg0c903', 'en', 1, 'https://ror.org/05bg0c903 Southern University ą¦øą¦¾ą¦°ą§ą¦¦ą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29487, 'https://ror.org/05bg8js23', 'en', 1, 'https://ror.org/05bg8js23 Conservation Center for Art and Historic Artifacts'),
(29488, 'https://ror.org/05bhsrq51', 'en', 1, 'https://ror.org/05bhsrq51 Carson Newman University'),
(29489, 'https://ror.org/05bja5p94', 'en', 1, 'https://ror.org/05bja5p94 All Saints University Lango'),
(29490, 'https://ror.org/05bmd4n09', 'en', 1, 'https://ror.org/05bmd4n09 Redwood Library and Athenaeum'),
(29491, 'https://ror.org/05bp24h68', 'en', 1, 'https://ror.org/05bp24h68 Mediterranean Institute of Management Μεσογειακό Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī”Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ·Ļ‚'),
(29492, 'https://ror.org/05bqmct97', 'no_lang_code', 1, 'https://ror.org/05bqmct97 BorsodChem (Czechia)'),
(29493, 'https://ror.org/05bqtq669', 'no_lang_code', 1, 'https://ror.org/05bqtq669 Royal HaskoningDHV (Czechia)'),
(29494, 'https://ror.org/05brr5h08', 'en', 1, 'https://ror.org/05brr5h08 Jaamacada Jamhuriya Jamhuriya University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł…Ł‡ŁˆŲ±ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(29495, 'https://ror.org/05bsrqh80', 'en', 1, 'https://ror.org/05bsrqh80 University of Medicine Magway'),
(29496, 'https://ror.org/05btp4k45', 'en', 1, 'https://ror.org/05btp4k45 FishAmerica Foundation'),
(29497, 'https://ror.org/05bxxrz27', 'en', 1, 'https://ror.org/05bxxrz27 Asia Life University ė³µģŒģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(29498, 'https://ror.org/05byzd324', 'no_lang_code', 1, 'https://ror.org/05byzd324 Hiroshima Bunka Gakuen University åŗƒå³¶ę–‡åŒ–å­¦åœ’å¤§å­¦'),
(29499, 'https://ror.org/05c0t8x83', 'en', 1, 'https://ror.org/05c0t8x83 Frederick Community College'),
(29500, 'https://ror.org/05c132b31', 'id', 1, 'https://ror.org/05c132b31 Universitas Satya Negara Indonesia'),
(29501, 'https://ror.org/05c1a5t19', 'en', 1, 'https://ror.org/05c1a5t19 Chesterfield County Public Library'),
(29502, 'https://ror.org/05c1r5z64', 'en', 1, 'https://ror.org/05c1r5z64 Xingtai University 邢台学院'),
(29503, 'https://ror.org/05c3m0811', 'en', 1, 'https://ror.org/05c3m0811 Central Laboratory of Solar Energy and New Energy Sources Централна Š»Š°Š±Š¾Ń€Š°Ń‚Š¾Ń€ŠøŃ по ŃŠ»ŃŠŠ½Ń‡ŠµŠ²Š° ŠµŠ½ŠµŃ€Š³ŠøŃ Šø нови енергийни източници'),
(29504, 'https://ror.org/05c5yp582', 'id', 1, 'https://ror.org/05c5yp582 Universitas Subang'),
(29505, 'https://ror.org/05c6ejt42', 'en', 1, 'https://ror.org/05c6ejt42 Nihon Bunka University ę—„ęœ¬ę–‡åŒ–å¤§å­¦'),
(29506, 'https://ror.org/05c951c38', 'no_lang_code', 1, 'https://ror.org/05c951c38 Termizo (Czechia)'),
(29507, 'https://ror.org/05cahxq83', 'no_lang_code', 1, 'https://ror.org/05cahxq83 Patron Bohemia (Czechia)'),
(29508, 'https://ror.org/05cbbv691', 'en', 1, 'https://ror.org/05cbbv691 Martinsburg - Berkeley County Public Libraries'),
(29509, 'https://ror.org/05cbg5d14', 'id', 1, 'https://ror.org/05cbg5d14 Institut Teknologi Budi Utomo'),
(29510, 'https://ror.org/05cc9dz89', 'en', 1, 'https://ror.org/05cc9dz89 Moscow Financial and Economic Institute Московский финансово-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29511, 'https://ror.org/05cgtjz78', 'en', 1, 'https://ror.org/05cgtjz78 Qərbi Kaspi Universiteti Western Caspian University'),
(29512, 'https://ror.org/05ch82e76', 'en', 1, 'https://ror.org/05ch82e76 Eternal University'),
(29513, 'https://ror.org/05cn6ne53', 'id', 1, 'https://ror.org/05cn6ne53 Universitas Pancasakti Makassar'),
(29514, 'https://ror.org/05cp38y47', 'en', 1, 'https://ror.org/05cp38y47 Osaka University of Human Sciences å¤§é˜Ŗäŗŗé–“ē§‘å­¦å¤§å­¦'),
(29515, 'https://ror.org/05cphcd65', 'en', 1, 'https://ror.org/05cphcd65 Essentuki Institute of Management Business and Law Š•ŃŃŠµŠ½Ń‚ŃƒŠŗŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ, бизнеса Šø права'),
(29516, 'https://ror.org/05cqafq62', 'en', 1, 'https://ror.org/05cqafq62 Chuka University'),
(29517, 'https://ror.org/05cqdcg79', 'no_lang_code', 1, 'https://ror.org/05cqdcg79 Musashino Gakuin University ę­¦č”µé‡Žå­¦é™¢å¤§å­¦'),
(29518, 'https://ror.org/05cqf4668', 'en', 1, 'https://ror.org/05cqf4668 Haaga-Helia University of Applied Sciences Haaga-Helia ammattikorkeakoulu'),
(29519, 'https://ror.org/05cr38245', 'en', 1, 'https://ror.org/05cr38245 Dixon University Center'),
(29520, 'https://ror.org/05crr5s63', 'en', 1, 'https://ror.org/05crr5s63 SEGi University Universiti SEGi'),
(29521, 'https://ror.org/05cv4zg26', 'en', 1, 'https://ror.org/05cv4zg26 Wirral University Teaching Hospital NHS Foundation Trust'),
(29522, 'https://ror.org/05cv9ex33', 'en', 1, 'https://ror.org/05cv9ex33 University Sinergija Univerzitetska sinergija'),
(29523, 'https://ror.org/05cwvy572', 'en', 1, 'https://ror.org/05cwvy572 Belgorod University of Cooperation, Economics and Law БелгороГский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ кооперации, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(29524, 'https://ror.org/05cwygk15', 'en', 1, 'https://ror.org/05cwygk15 Ho Chi Minh City University of Fine Arts TrĘ°į»ng ĐẔi hį»c Mỹ thuįŗ­t ThĆ nh phố Hồ ChĆ­ Minh UniversitĆ© des beaux-arts d’hĆ“-chi-minh-ville'),
(29525, 'https://ror.org/05cy1av38', 'en', 1, 'https://ror.org/05cy1av38 Moscow City University Московский гороГской ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29526, 'https://ror.org/05cyzhb83', 'no_lang_code', 1, 'https://ror.org/05cyzhb83 Envisan GEM (Czechia)'),
(29527, 'https://ror.org/05czff141', 'en', 1, 'https://ror.org/05czff141 Birmingham Public Library'),
(29528, 'https://ror.org/05d0pgx42', 'en', 1, 'https://ror.org/05d0pgx42 Meio University åę”œå¤§å­¦'),
(29529, 'https://ror.org/05d293n36', 'en', 1, 'https://ror.org/05d293n36 WuFeng University å³é³³ē§‘ęŠ€å¤§å­ø'),
(29530, 'https://ror.org/05d3sbc55', 'en', 1, 'https://ror.org/05d3sbc55 Morris College'),
(29531, 'https://ror.org/05d4cjq55', 'en', 1, 'https://ror.org/05d4cjq55 Congress for the New Urbanism'),
(29532, 'https://ror.org/05d5hbz44', 'en', 1, 'https://ror.org/05d5hbz44 Department of Energy and Environment'),
(29533, 'https://ror.org/05d75ah03', 'en', 1, 'https://ror.org/05d75ah03 International Center of Medieval Art'),
(29534, 'https://ror.org/05d8xgj52', 'no_lang_code', 1, 'https://ror.org/05d8xgj52 Payap University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø²ąø¢ąø±ąøž'),
(29535, 'https://ror.org/05d9d4d82', 'en', 1, 'https://ror.org/05d9d4d82 Kyiv University of Law ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ права'),
(29536, 'https://ror.org/05d9x2e07', 'en', 1, 'https://ror.org/05d9x2e07 Academy of Hotel Management and Catering Industry L’école supĆ©rieure d’hōtellerie et de gastronomie'),
(29537, 'https://ror.org/05dap7r06', 'en', 1, 'https://ror.org/05dap7r06 Fort Collins Museum of Discovery'),
(29538, 'https://ror.org/05db1pj03', 'en', 1, 'https://ror.org/05db1pj03 Dongbei University of Finance and Economics äøœåŒ—č“¢ē»å¤§å­¦'),
(29539, 'https://ror.org/05dd5tz10', 'en', 1, 'https://ror.org/05dd5tz10 Gibbes Museum of Art'),
(29540, 'https://ror.org/05ddbab52', 'en', 1, 'https://ror.org/05ddbab52 Poznan School of Logistics Wyższa Szkoła Logistyki'),
(29541, 'https://ror.org/05ddme474', 'en', 1, 'https://ror.org/05ddme474 Tucson Museum of Art'),
(29542, 'https://ror.org/05de33361', 'no_lang_code', 1, 'https://ror.org/05de33361 STEM (Czechia)'),
(29543, 'https://ror.org/05dg6kp30', 'en', 1, 'https://ror.org/05dg6kp30 Universiteti Pavarƫsia Vlorƫ University Pavaresia Vlore'),
(29544, 'https://ror.org/05dg8sq97', 'en', 1, 'https://ror.org/05dg8sq97 International University in Geneva'),
(29545, 'https://ror.org/05dh0m347', 'cs', 1, 'https://ror.org/05dh0m347 Nadace pro Dějiny kultury ve StřednĆ­ Evropě'),
(29546, 'https://ror.org/05dhkbw86', 'en', 1, 'https://ror.org/05dhkbw86 Moscow State Institute of Electronics and Mathematics Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø Šø математики'),
(29547, 'https://ror.org/05dj31k33', 'id', 1, 'https://ror.org/05dj31k33 Universitas Balikpapan'),
(29548, 'https://ror.org/05djcr692', 'pl', 1, 'https://ror.org/05djcr692 Górnośląska Wyższa Szkoła Pedagogiczna im. Kardynała Augusta Hlonda w Mysłowicach, Górnośląska Wyższa Szkoła Pedagogiczna imienia Kardynała Augusta Hlonda w Mysłowicach'),
(29549, 'https://ror.org/05djmm265', 'id', 1, 'https://ror.org/05djmm265 Universitas Hindu Indonesia'),
(29550, 'https://ror.org/05djtcm98', 'id', 1, 'https://ror.org/05djtcm98 Universitas Islam Jakarta'),
(29551, 'https://ror.org/05dp8mg49', 'en', 1, 'https://ror.org/05dp8mg49 Hồng Đức University TrĘ°į»ng ĐẔi Hį»c Hồng Đức 擪德大学'),
(29552, 'https://ror.org/05dpjef75', 'en', 1, 'https://ror.org/05dpjef75 Seacoast Science Center'),
(29553, 'https://ror.org/05dr87s20', 'no_lang_code', 1, 'https://ror.org/05dr87s20 Dupres Group (Slovakia)'),
(29554, 'https://ror.org/05drg8934', 'en', 1, 'https://ror.org/05drg8934 Riverhead Foundation for Marine Research and Preservation'),
(29555, 'https://ror.org/05dsae220', 'en', 1, 'https://ror.org/05dsae220 Khayyam University دانؓگاه Ų®ŪŒŲ§Ł…'),
(29556, 'https://ror.org/05dx9zk73', 'en', 1, 'https://ror.org/05dx9zk73 Tokyo Women''s College of Physical Education ę±äŗ¬å„³å­ä½“č‚²å¤§å­¦'),
(29557, 'https://ror.org/05dxvt507', 'en', 1, 'https://ror.org/05dxvt507 Pandit Sundarlal Sharma Open University ą¤Ŗą¤£ą„ą¤”ą¤æą¤¤ ą¤øą„ą¤Øą„ą¤¦ą¤°ą¤²ą¤¾ą¤² ą¤¶ą¤°ą„ą¤®ą¤¾ (ą¤®ą„ą¤•ą„ą¤¤) ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29558, 'https://ror.org/05dybcw48', 'id', 1, 'https://ror.org/05dybcw48 Universitas Tulungagung'),
(29559, 'https://ror.org/05dzbpx12', 'fr', 1, 'https://ror.org/05dzbpx12 European University of Scents and Flavors UniversitƩ EuropƩenne des Senteurs & Saveur'),
(29560, 'https://ror.org/05e0g3c64', 'en', 1, 'https://ror.org/05e0g3c64 Kuban Institute of International Business and Management'),
(29561, 'https://ror.org/05e1j4h71', 'en', 1, 'https://ror.org/05e1j4h71 Dauphin County Library System'),
(29562, 'https://ror.org/05e1s8h08', 'en', 1, 'https://ror.org/05e1s8h08 Chicago Architecture Foundation'),
(29563, 'https://ror.org/05e2ncr14', 'en', 1, 'https://ror.org/05e2ncr14 Eastern University ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(29564, 'https://ror.org/05e2tqm03', 'en', 1, 'https://ror.org/05e2tqm03 Center for Puppetry Arts'),
(29565, 'https://ror.org/05e2vjj36', 'en', 1, 'https://ror.org/05e2vjj36 Pacific School of Religion'),
(29566, 'https://ror.org/05e30xz71', 'en', 1, 'https://ror.org/05e30xz71 LeRoy Collins Leon County Public Library'),
(29567, 'https://ror.org/05e3sxn28', 'en', 1, 'https://ror.org/05e3sxn28 Orenburg Institute of Economics and Culture ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(29568, 'https://ror.org/05e3v4r58', 'en', 1, 'https://ror.org/05e3v4r58 Kirkwood Public Library'),
(29569, 'https://ror.org/05e5m9w32', 'en', 1, 'https://ror.org/05e5m9w32 Nueva Vizcaya State University'),
(29570, 'https://ror.org/05e8ahe21', 'en', 1, 'https://ror.org/05e8ahe21 Miyazaki International College 宮哎国際大学'),
(29571, 'https://ror.org/05e8bfc57', 'en', 1, 'https://ror.org/05e8bfc57 Regional Open Social Institute Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ открытый ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29572, 'https://ror.org/05e8t3y83', 'en', 1, 'https://ror.org/05e8t3y83 Rajin University of Marine Transport ė‚˜ģ§„ķ•“ģš“ėŒ€ķ•™ ė§Œė“¤źø°'),
(29573, 'https://ror.org/05ebt7533', 'en', 1, 'https://ror.org/05ebt7533 Turkmen State Pedagogical Institute named Seidnazar Seydi Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Дейитназара ДейГи'),
(29574, 'https://ror.org/05ehpzq05', 'en', 1, 'https://ror.org/05ehpzq05 Korea Baptist Theological University and Seminary ģ¹Øė”€ģ‹ ķ•™ėŒ€ķ•™źµ'),
(29575, 'https://ror.org/05ek5cn41', 'no_lang_code', 1, 'https://ror.org/05ek5cn41 Cogebi (Czechia)'),
(29576, 'https://ror.org/05erxm859', 'no_lang_code', 1, 'https://ror.org/05erxm859 Skanska (Czechia)'),
(29577, 'https://ror.org/05ew8ve77', 'en', 1, 'https://ror.org/05ew8ve77 Gulf & South Atlantic Fisheries Foundation'),
(29578, 'https://ror.org/05ex3a966', 'en', 1, 'https://ror.org/05ex3a966 Ecotrust'),
(29579, 'https://ror.org/05exvy590', 'id', 1, 'https://ror.org/05exvy590 Dwijendra University Universitas Dwijendra'),
(29580, 'https://ror.org/05ey1ky02', 'en', 1, 'https://ror.org/05ey1ky02 Apollos University');
INSERT INTO `rors` VALUES
(29581, 'https://ror.org/05eyk3846', 'en', 1, 'https://ror.org/05eyk3846 American Association for State and Local History'),
(29582, 'https://ror.org/05f06q946', 'id', 1, 'https://ror.org/05f06q946 Universitas Kader Bangsa'),
(29583, 'https://ror.org/05f0cs849', 'en', 1, 'https://ror.org/05f0cs849 Aichi Sangyo University ę„›ēŸ„ē”£ę„­å¤§å­¦'),
(29584, 'https://ror.org/05f211872', 'en', 1, 'https://ror.org/05f211872 LEC Tokyo Legal Mind University LECę±äŗ¬ćƒŖćƒ¼ć‚¬ćƒ«ćƒžć‚¤ćƒ³ćƒ‰å¤§å­¦é™¢å¤§å­¦'),
(29585, 'https://ror.org/05f2ywb48', 'no_lang_code', 1, 'https://ror.org/05f2ywb48 Regenstrief Institute'),
(29586, 'https://ror.org/05f321t07', 'en', 1, 'https://ror.org/05f321t07 Kitchen Sisters Productions'),
(29587, 'https://ror.org/05f3by596', 'en', 1, 'https://ror.org/05f3by596 Parrish Art Museum'),
(29588, 'https://ror.org/05f7ph084', 'en', 1, 'https://ror.org/05f7ph084 Illinois Historic Preservation Agency'),
(29589, 'https://ror.org/05f92a127', 'en', 1, 'https://ror.org/05f92a127 Myitkyina University မြစ်ကြီးနား į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29590, 'https://ror.org/05fbv2v73', 'en', 1, 'https://ror.org/05fbv2v73 Islamic Azad University of Arsanjan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ارسنجان'),
(29591, 'https://ror.org/05fbv4544', 'en', 1, 'https://ror.org/05fbv4544 Chien Hsin University of Science and Technology å„č”Œē§‘ęŠ€å¤§å­ø'),
(29592, 'https://ror.org/05fe2ew26', 'en', 1, 'https://ror.org/05fe2ew26 National Sports Academy Vassil Levski ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Дпортна ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ "Васил Левски"'),
(29593, 'https://ror.org/05fj5jw51', 'en', 1, 'https://ror.org/05fj5jw51 Vyatka State Agricultural Academy Š’ŃŃ‚ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29594, 'https://ror.org/05fkpm735', 'en', 1, 'https://ror.org/05fkpm735 Hodeidah University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŲÆŁŠŲÆŲ©'),
(29595, 'https://ror.org/05fmr5p93', 'no_lang_code', 1, 'https://ror.org/05fmr5p93 MemBrain (Czechia)'),
(29596, 'https://ror.org/05fnn5020', 'en', 1, 'https://ror.org/05fnn5020 Shreemati Nathibai Damodar Thackersey Women''s University ą¤¶ą„ą¤°ą„€ą¤®ą¤¤ą„€ ą¤Øą¤¾ą¤„ą„€ą¤¬ą¤¾ą¤ˆ ą¤¦ą¤¾ą¤®ą„‹ą¤¦ą¤° ą¤ ą¤¾ą¤•ą¤°ą¤øą„€ महिला ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(29597, 'https://ror.org/05fp00270', 'en', 1, 'https://ror.org/05fp00270 American Architectural Foundation'),
(29598, 'https://ror.org/05fpqxw78', 'en', 1, 'https://ror.org/05fpqxw78 Brooklyn Museum'),
(29599, 'https://ror.org/05fqwcn05', 'en', 1, 'https://ror.org/05fqwcn05 SeaWeb'),
(29600, 'https://ror.org/05frh4635', 'no_lang_code', 1, 'https://ror.org/05frh4635 Miyazaki Sangyo-keiei University å®®å“Žē”£ę„­ēµŒå–¶å¤§å­¦'),
(29601, 'https://ror.org/05fscpd23', 'en', 1, 'https://ror.org/05fscpd23 Greenville County Library System'),
(29602, 'https://ror.org/05ftpbf89', 'en', 1, 'https://ror.org/05ftpbf89 Carmel Clay Public Library'),
(29603, 'https://ror.org/05fv5ah77', 'no_lang_code', 1, 'https://ror.org/05fv5ah77 LA Composite (Czechia)'),
(29604, 'https://ror.org/05fvbwq75', 'en', 1, 'https://ror.org/05fvbwq75 Academy of Fine Arts In ŁódÅŗ Władysław Strzemiński'),
(29605, 'https://ror.org/05fwqpw07', 'no_lang_code', 1, 'https://ror.org/05fwqpw07 ProjectSoft (Czechia)'),
(29606, 'https://ror.org/05fybaw10', 'en', 1, 'https://ror.org/05fybaw10 National Council for History Education'),
(29607, 'https://ror.org/05fz3qx12', 'en', 1, 'https://ror.org/05fz3qx12 Institute of Nautical Archaeology'),
(29608, 'https://ror.org/05fz45v32', 'en', 1, 'https://ror.org/05fz45v32 Boundless Readers'),
(29609, 'https://ror.org/05fzc8c45', 'en', 1, 'https://ror.org/05fzc8c45 Tambov State University Тамбовский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29610, 'https://ror.org/05fzsym71', 'en', 1, 'https://ror.org/05fzsym71 Billings Public Library'),
(29611, 'https://ror.org/05fzw1z08', 'en', 1, 'https://ror.org/05fzw1z08 State University of Makassar Universitas Negeri Makassar'),
(29612, 'https://ror.org/05g0wzd49', 'en', 1, 'https://ror.org/05g0wzd49 Ural State Law University Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29613, 'https://ror.org/05g1rz111', 'en', 1, 'https://ror.org/05g1rz111 Lees McRae College'),
(29614, 'https://ror.org/05g48k331', 'en', 1, 'https://ror.org/05g48k331 Hamdan Bin Mohammed Smart University Ų¬Ų§Ł…Ų¹Ų© حمدان بن Ł…Ų­Ł…ŲÆ Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†ŁŠŲ©'),
(29615, 'https://ror.org/05g4f0342', 'en', 1, 'https://ror.org/05g4f0342 Kyoto Seika University äŗ¬éƒ½ē²¾čÆå¤§å­¦'),
(29616, 'https://ror.org/05g59rq62', 'no_lang_code', 1, 'https://ror.org/05g59rq62 VUES Brno (Czechia)'),
(29617, 'https://ror.org/05g7nkm73', 'en', 1, 'https://ror.org/05g7nkm73 Constantin Brâncoveanu University Universitatea Constantin Brâncoveanu'),
(29618, 'https://ror.org/05g7zxm15', 'id', 1, 'https://ror.org/05g7zxm15 Universitas Kebangsaan Republik Indonesia'),
(29619, 'https://ror.org/05g910a37', 'en', 1, 'https://ror.org/05g910a37 Yangon University of Education į€›į€”į€ŗį€€į€Æį€”į€ŗį€•į€Šį€¬į€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29620, 'https://ror.org/05ga5zc50', 'no_lang_code', 1, 'https://ror.org/05ga5zc50 Aikoku Gakuen University ę„›å›½å­¦åœ’å¤§å­¦'),
(29621, 'https://ror.org/05gb7hz97', 'en', 1, 'https://ror.org/05gb7hz97 Oxnard Public Library'),
(29622, 'https://ror.org/05gcme754', 'en', 1, 'https://ror.org/05gcme754 Xi''an International Studies University 脿安外国语大学'),
(29623, 'https://ror.org/05gcxx960', 'en', 1, 'https://ror.org/05gcxx960 St. Paul University Iloilo'),
(29624, 'https://ror.org/05gechm64', 'en', 1, 'https://ror.org/05gechm64 Carnegie Library of Pittsburgh'),
(29625, 'https://ror.org/05ghynn27', 'id', 1, 'https://ror.org/05ghynn27 Universitas Islam Malang'),
(29626, 'https://ror.org/05gp0dh20', 'hu', 1, 'https://ror.org/05gp0dh20 Sola Scriptura Teológiai Főiskola'),
(29627, 'https://ror.org/05gqsa340', 'en', 1, 'https://ror.org/05gqsa340 Hokkaido University of Science åŒ—ęµ·é“ē§‘å­¦å¤§å­¦'),
(29628, 'https://ror.org/05grcng38', 'en', 1, 'https://ror.org/05grcng38 Lake Region State College'),
(29629, 'https://ror.org/05grw1m33', 'en', 1, 'https://ror.org/05grw1m33 Yaroslav Mudryi National Law University ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Ярослава ŠœŃƒŠ“рого'),
(29630, 'https://ror.org/05gya9x53', 'en', 1, 'https://ror.org/05gya9x53 Belleville Public Library'),
(29631, 'https://ror.org/05gz40769', 'en', 1, 'https://ror.org/05gz40769 Den-en Chofu University ē”°åœ’čŖæåøƒå­¦åœ’å¤§å­¦'),
(29632, 'https://ror.org/05gzb7v46', 'en', 1, 'https://ror.org/05gzb7v46 Museum of New Mexico Foundation'),
(29633, 'https://ror.org/05h0pqw77', 'id', 1, 'https://ror.org/05h0pqw77 Universitas Hang Tuah'),
(29634, 'https://ror.org/05h0z7c09', 'en', 1, 'https://ror.org/05h0z7c09 University of Dubai Ų¬Ų§Ł…Ų¹Ų© دبي'),
(29635, 'https://ror.org/05h20p340', 'en', 1, 'https://ror.org/05h20p340 Piedmont International University'),
(29636, 'https://ror.org/05h2tq494', 'id', 1, 'https://ror.org/05h2tq494 Universitas Pgri Banyuwangi'),
(29637, 'https://ror.org/05h4th693', 'en', 1, 'https://ror.org/05h4th693 Yichun University å®œę˜„å­¦é™¢'),
(29638, 'https://ror.org/05h68bp56', 'en', 1, 'https://ror.org/05h68bp56 Nippon Institute of Technology ę—„ęœ¬å·„ę„­å¤§å­¦'),
(29639, 'https://ror.org/05h6xaj60', 'en', 1, 'https://ror.org/05h6xaj60 Korean Bible University'),
(29640, 'https://ror.org/05h6yt550', 'en', 1, 'https://ror.org/05h6yt550 Udon Thani Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø­ąøøąø”ąø£ąø˜ąø²ąø™ąøµ'),
(29641, 'https://ror.org/05h7zf334', 'no_lang_code', 1, 'https://ror.org/05h7zf334 Bombardier (United Kingdom)'),
(29642, 'https://ror.org/05h831e18', 'en', 1, 'https://ror.org/05h831e18 Kursk Institute of Management, Economics and Busines ŠšŃƒŃ€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø бизнеса'),
(29643, 'https://ror.org/05h99gf82', 'en', 1, 'https://ror.org/05h99gf82 Walters Art Museum'),
(29644, 'https://ror.org/05h9b8280', 'cs', 1, 'https://ror.org/05h9b8280 VlastivědnĆ© Muzeum Dr. HostaÅ”e v Klatovech'),
(29645, 'https://ror.org/05ha0y974', 'pl', 1, 'https://ror.org/05ha0y974 Europejska Akademia Sztuk w Warszawie'),
(29646, 'https://ror.org/05ha26626', 'sk', 1, 'https://ror.org/05ha26626 St. Elizabeth College of Health and Social Work VysokÔ Škola Zdravotníctva a SociÔlnej PrÔce sv. Alžbety'),
(29647, 'https://ror.org/05hawb687', 'no_lang_code', 1, 'https://ror.org/05hawb687 Shaqra University Ų¬Ų§Ł…Ų¹Ų© ؓقراؔ'),
(29648, 'https://ror.org/05hc66959', 'no_lang_code', 1, 'https://ror.org/05hc66959 Centre of Civil Engineering (Czechia) Centrum Stavebního Inženýrství'),
(29649, 'https://ror.org/05hcd4f69', 'en', 1, 'https://ror.org/05hcd4f69 Historic Lexington Foundation'),
(29650, 'https://ror.org/05hd9py65', 'id', 1, 'https://ror.org/05hd9py65 Universitas Merdeka Madiun'),
(29651, 'https://ror.org/05henrr38', 'en', 1, 'https://ror.org/05henrr38 Togliatti Academy of Management'),
(29652, 'https://ror.org/05hf7ba61', 'en', 1, 'https://ror.org/05hf7ba61 Mid Western University ą¤®ą¤§ą„ą¤Æą¤Ŗą¤¶ą„ą¤šą¤æą¤®ą¤¾ą¤žą„ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29653, 'https://ror.org/05hfpw879', 'en', 1, 'https://ror.org/05hfpw879 Chiba Institute of Science åƒč‘‰ē§‘å­¦å¤§å­¦'),
(29654, 'https://ror.org/05hgcp219', 'en', 1, 'https://ror.org/05hgcp219 B.S. Ricks Memorial Library'),
(29655, 'https://ror.org/05hjapd30', 'en', 1, 'https://ror.org/05hjapd30 State Academy of Arts of Turkmenistan Türkmenistanyň Döwlet çeperçilik akademiýasy'),
(29656, 'https://ror.org/05hm3gb11', 'en', 1, 'https://ror.org/05hm3gb11 Talbot Historical Society'),
(29657, 'https://ror.org/05hna7313', 'en', 1, 'https://ror.org/05hna7313 Academy of Performing Arts in Bratislava VysokÔ Ŕkola múzických umení v Bratislave'),
(29658, 'https://ror.org/05hpa0166', 'en', 1, 'https://ror.org/05hpa0166 Pejepscot Historical Society'),
(29659, 'https://ror.org/05hq64n33', 'en', 1, 'https://ror.org/05hq64n33 Odessa State University of Internal Affairs ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(29660, 'https://ror.org/05hra0856', 'id', 1, 'https://ror.org/05hra0856 Universitas Muhammadiyah Semarang'),
(29661, 'https://ror.org/05hs3x327', 'en', 1, 'https://ror.org/05hs3x327 American Research Institute in Turkey'),
(29662, 'https://ror.org/05hw4nf80', 'en', 1, 'https://ror.org/05hw4nf80 William K. Sanford Town Library'),
(29663, 'https://ror.org/05j0yvv31', 'no_lang_code', 1, 'https://ror.org/05j0yvv31 Rigel (United States)'),
(29664, 'https://ror.org/05j159d85', 'no_lang_code', 1, 'https://ror.org/05j159d85 Å meral Brno (Czechia)'),
(29665, 'https://ror.org/05j1kzp43', 'en', 1, 'https://ror.org/05j1kzp43 Gilder Lehrman Institute of American History'),
(29666, 'https://ror.org/05j1vt166', 'no_lang_code', 1, 'https://ror.org/05j1vt166 Fuji Tokoha University åÆŒå£«åøøč‘‰å¤§å­¦'),
(29667, 'https://ror.org/05j20qz36', 'en', 1, 'https://ror.org/05j20qz36 Janabadra University'),
(29668, 'https://ror.org/05j23np60', 'en', 1, 'https://ror.org/05j23np60 Galesburg Public Library'),
(29669, 'https://ror.org/05j2ycs33', 'id', 1, 'https://ror.org/05j2ycs33 Universitas Mathla''ul Anwar Banten'),
(29670, 'https://ror.org/05j412v70', 'en', 1, 'https://ror.org/05j412v70 Beppu University 刄府大学'),
(29671, 'https://ror.org/05j7wmw44', 'en', 1, 'https://ror.org/05j7wmw44 Saint Petersburg Social and Economic Institute Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29672, 'https://ror.org/05jbbr095', 'en', 1, 'https://ror.org/05jbbr095 Higher School of Social Technologies SOCIĀLO TEHNOLOĢIJU AUGSTSKOLA'),
(29673, 'https://ror.org/05jbnbs36', 'en', 1, 'https://ror.org/05jbnbs36 Danforth at Framingham State University'),
(29674, 'https://ror.org/05jcsqx24', 'en', 1, 'https://ror.org/05jcsqx24 Saratov State University Даратовский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š“. Š§ŠµŃ€Š½Ń‹ŃˆŠµŠ²ŃŠŗŠ¾Š³Š¾'),
(29675, 'https://ror.org/05jcsvh64', 'en', 1, 'https://ror.org/05jcsvh64 Institute Unic ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ Гистанционного Š¾Š±ŃƒŃ‡ŠµŠ½ŠøŃ'),
(29676, 'https://ror.org/05jesdm52', 'en', 1, 'https://ror.org/05jesdm52 Union Theological Seminary'),
(29677, 'https://ror.org/05jfsf459', 'en', 1, 'https://ror.org/05jfsf459 Kalmyk State University ŠšŠ°Š»Š¼Ń‹Ń†ŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29678, 'https://ror.org/05jg3qp42', 'en', 1, 'https://ror.org/05jg3qp42 New York Studio School of Drawing Painting and Sculpture'),
(29679, 'https://ror.org/05jhq2w18', 'en', 1, 'https://ror.org/05jhq2w18 Maharana Pratap University of Agriculture and Technology'),
(29680, 'https://ror.org/05jhvw838', 'en', 1, 'https://ror.org/05jhvw838 Imperial College of Business Studies بزنس سٹڈیز کے Ų§Ł…Ł¾ŪŒŲ±ŪŒŁ„ کالج'),
(29681, 'https://ror.org/05jhzfe38', 'en', 1, 'https://ror.org/05jhzfe38 Southwest Wetlands Interpretive Association'),
(29682, 'https://ror.org/05jk8qm79', 'en', 1, 'https://ror.org/05jk8qm79 Portland Public Library'),
(29683, 'https://ror.org/05jneht64', 'en', 1, 'https://ror.org/05jneht64 Hot Springs County Museum and Cultural Center'),
(29684, 'https://ror.org/05jnrzf43', 'en', 1, 'https://ror.org/05jnrzf43 Unity University College į‹©įŠ’į‰² į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(29685, 'https://ror.org/05jnwy894', 'en', 1, 'https://ror.org/05jnwy894 Sambalpur University Institute of Information Technology'),
(29686, 'https://ror.org/05jq6y977', 'en', 1, 'https://ror.org/05jq6y977 Webster Museum and Historical Society'),
(29687, 'https://ror.org/05jqxc143', 'en', 1, 'https://ror.org/05jqxc143 School District of Lee County'),
(29688, 'https://ror.org/05jtyp735', 'en', 1, 'https://ror.org/05jtyp735 Webster University Ghana'),
(29689, 'https://ror.org/05jv2yg47', 'en', 1, 'https://ror.org/05jv2yg47 Moscow State Technological University Московский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Технологический Университет'),
(29690, 'https://ror.org/05jv80548', 'en', 1, 'https://ror.org/05jv80548 Kremenchuk Mykhailo Ostrohradskyi National University ŠšŃ€ŠµŠ¼ŠµŠ½Ń‡ŃƒŠ³ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠšŃ€ŠµŠ¼ŠµŠ½Ń‡ŃƒŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠœŠøŃ…Š°Š¹Š»Š° ŠžŃŃ‚Ń€Š¾Š³Ń€Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(29691, 'https://ror.org/05jyzsv32', 'no_lang_code', 1, 'https://ror.org/05jyzsv32 Ekotoxa (Czechia)'),
(29692, 'https://ror.org/05k3n5g92', 'en', 1, 'https://ror.org/05k3n5g92 Amistad Research Center'),
(29693, 'https://ror.org/05k3sdc46', 'en', 1, 'https://ror.org/05k3sdc46 North Sichuan Medical University 川北医学院'),
(29694, 'https://ror.org/05k4ves29', 'en', 1, 'https://ror.org/05k4ves29 University of Marketing and Distribution Sciences ęµé€šē§‘å­¦å¤§å­¦'),
(29695, 'https://ror.org/05k7kyd84', 'en', 1, 'https://ror.org/05k7kyd84 Library of America'),
(29696, 'https://ror.org/05k887869', 'en', 1, 'https://ror.org/05k887869 Cleveland Police Museum'),
(29697, 'https://ror.org/05k8s5247', 'en', 1, 'https://ror.org/05k8s5247 North Carolina Coastal Federation'),
(29698, 'https://ror.org/05kc0qv85', 'en', 1, 'https://ror.org/05kc0qv85 Berea International Theological Seminary ė² ė¢°ģ•„źµ­ģ œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(29699, 'https://ror.org/05kce7016', 'en', 1, 'https://ror.org/05kce7016 Voronezh State Medical Academy named after N.N. Burdenko Воронежский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š.Š. Š‘ŃƒŃ€Š“ŠµŠ½ŠŗŠ¾'),
(29700, 'https://ror.org/05ke4ws41', 'en', 1, 'https://ror.org/05ke4ws41 Yala Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøŽąø¢ąø°ąø„ąø²'),
(29701, 'https://ror.org/05kfm7k22', 'en', 1, 'https://ror.org/05kfm7k22 Omsk State Agrarian University ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П. А. Дтолыпина'),
(29702, 'https://ror.org/05khqpb71', 'en', 1, 'https://ror.org/05khqpb71 University of International Business and Economics åÆ¹å¤–ē»ęµŽč“øę˜“å¤§å­¦'),
(29703, 'https://ror.org/05kjde412', 'no_lang_code', 1, 'https://ror.org/05kjde412 Asociace inovačnĆ­ho podnikĆ”nĆ­ ČeskĆ© republiky z.s. Association of Innovative Entrepreneurship (Czechia)'),
(29704, 'https://ror.org/05kka2g19', 'en', 1, 'https://ror.org/05kka2g19 John W. Higgins Armory'),
(29705, 'https://ror.org/05kknm922', 'en', 1, 'https://ror.org/05kknm922 Bryansk State Technical University Š‘Ń€ŃŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29706, 'https://ror.org/05knchj06', 'en', 1, 'https://ror.org/05knchj06 National Afro-American Museum and Cultural Center'),
(29707, 'https://ror.org/05kptcy79', 'en', 1, 'https://ror.org/05kptcy79 National Universities Commission'),
(29708, 'https://ror.org/05kr6gy36', 'en', 1, 'https://ror.org/05kr6gy36 Karnataka State Women''s University ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ಮಹಿಳಾ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(29709, 'https://ror.org/05ksgvj69', 'en', 1, 'https://ror.org/05ksgvj69 Institute of Contemporary Art Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Довременного Š˜ŃŠŗŃƒŃŃŃ‚ва'),
(29710, 'https://ror.org/05kt2wq49', 'en', 1, 'https://ror.org/05kt2wq49 Academy of the Federal Security Service of the Russian Federation ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ безопасности Российской ФеГерации'),
(29711, 'https://ror.org/05kvcy688', 'en', 1, 'https://ror.org/05kvcy688 Hope University'),
(29712, 'https://ror.org/05kvm7n82', 'en', 1, 'https://ror.org/05kvm7n82 Soochow University ę±å³å¤§å­ø'),
(29713, 'https://ror.org/05kvq4b11', 'en', 1, 'https://ror.org/05kvq4b11 Kumi University'),
(29714, 'https://ror.org/05kw9ye22', 'id', 1, 'https://ror.org/05kw9ye22 Institut Ilmu Sosial dan Ilmu Politik Yapis Biak'),
(29715, 'https://ror.org/05kypfq19', 'cs', 1, 'https://ror.org/05kypfq19 Centrum Pro Komunitnƭ PrƔci'),
(29716, 'https://ror.org/05kz0b404', 'en', 1, 'https://ror.org/05kz0b404 Shenyang Sport University ę²ˆé˜³ä½“č‚²å­¦é™¢'),
(29717, 'https://ror.org/05kz9ez20', 'id', 1, 'https://ror.org/05kz9ez20 Universitas Pawyatan Daha Kediri'),
(29718, 'https://ror.org/05m0ggf57', 'en', 1, 'https://ror.org/05m0ggf57 Catholic University of Applied Sciences Katholische Hochschule Mainz'),
(29719, 'https://ror.org/05m1gnk07', 'en', 1, 'https://ror.org/05m1gnk07 Korea University ęœé®®å¤§å­¦ę ”'),
(29720, 'https://ror.org/05m2gft34', 'en', 1, 'https://ror.org/05m2gft34 Vladimir Institute of Business ВлаГимирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(29721, 'https://ror.org/05m3ysc06', 'en', 1, 'https://ror.org/05m3ysc06 Vinnytsia National Agrarian University Š’Š†ŠŠŠ˜Š¦Š¬ŠšŠ˜Š™ ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠ˜Š™ ŠŠ“Š ŠŠ ŠŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(29722, 'https://ror.org/05m6adj80', 'en', 1, 'https://ror.org/05m6adj80 Takasaki City University of Economics é«˜å“ŽēµŒęøˆå¤§å­¦'),
(29723, 'https://ror.org/05m7h6793', 'en', 1, 'https://ror.org/05m7h6793 Academy of Music, Dance and Fine Arts ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ за музикални танци Šø изобразителни ŠøŠ·ŠŗŃƒŃŃ‚ва'),
(29724, 'https://ror.org/05m9bzv71', 'en', 1, 'https://ror.org/05m9bzv71 Samara State Transport University Дамарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(29725, 'https://ror.org/05marek63', 'en', 1, 'https://ror.org/05marek63 Colorado Springs Pioneers Museum'),
(29726, 'https://ror.org/05md7gj74', 'en', 1, 'https://ror.org/05md7gj74 Czech Zoological Society'),
(29727, 'https://ror.org/05mfk1s45', 'en', 1, 'https://ror.org/05mfk1s45 Nizhny Novgorod State Agricultural Academy'),
(29728, 'https://ror.org/05mg79n26', 'no_lang_code', 1, 'https://ror.org/05mg79n26 ABB (Czechia)'),
(29729, 'https://ror.org/05mh02w22', 'no_lang_code', 1, 'https://ror.org/05mh02w22 Eckernforde Tanga University'),
(29730, 'https://ror.org/05mhcm605', 'en', 1, 'https://ror.org/05mhcm605 Czech Union for Nature Conservation'),
(29731, 'https://ror.org/05mjgmf63', 'en', 1, 'https://ror.org/05mjgmf63 Aleut Marine Mammal Commission'),
(29732, 'https://ror.org/05mjn5p90', 'en', 1, 'https://ror.org/05mjn5p90 Tobolsk Pedagogical Institute named after D. I. Mendeleev Тобольский пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š”.И. МенГелеева'),
(29733, 'https://ror.org/05mk17154', 'en', 1, 'https://ror.org/05mk17154 Bettendorf Public Library and Information Center'),
(29734, 'https://ror.org/05mk2v788', 'en', 1, 'https://ror.org/05mk2v788 American Scandinavian Foundation'),
(29735, 'https://ror.org/05mnfh623', 'no_lang_code', 1, 'https://ror.org/05mnfh623 STARMANS electronics (Czechia)'),
(29736, 'https://ror.org/05mp05a58', 'en', 1, 'https://ror.org/05mp05a58 Billings Farm & Museum'),
(29737, 'https://ror.org/05mq5yf88', 'en', 1, 'https://ror.org/05mq5yf88 Hidayatullah National Law University ą¤¹ą¤æą¤¦ą¤¾ą¤Æą¤¤ą„ą¤²ą„ą¤²ą¤¾ą¤¹ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29738, 'https://ror.org/05ms4pv23', 'en', 1, 'https://ror.org/05ms4pv23 Cagayan State University Pamantasang Estado sa Cagayan'),
(29739, 'https://ror.org/05mvafw22', 'en', 1, 'https://ror.org/05mvafw22 Association for the Study of African American Life and History'),
(29740, 'https://ror.org/05mx3tz05', 'no_lang_code', 1, 'https://ror.org/05mx3tz05 Polymer Institute Brno (Czechia)'),
(29741, 'https://ror.org/05mzj8a56', 'en', 1, 'https://ror.org/05mzj8a56 Kyoto College of Graduate Studies for Informatics äŗ¬éƒ½ęƒ…å ±å¤§å­¦é™¢å¤§å­¦'),
(29742, 'https://ror.org/05mzn8a55', 'en', 1, 'https://ror.org/05mzn8a55 King Sigismund Business School'),
(29743, 'https://ror.org/05mzp7213', 'en', 1, 'https://ror.org/05mzp7213 WYSO Radio Station'),
(29744, 'https://ror.org/05n04ff42', 'en', 1, 'https://ror.org/05n04ff42 Operation Opportunity Foundation'),
(29745, 'https://ror.org/05n0nb142', 'en', 1, 'https://ror.org/05n0nb142 FamilySearch'),
(29746, 'https://ror.org/05n41yg77', 'en', 1, 'https://ror.org/05n41yg77 Historical Society of Frankford'),
(29747, 'https://ror.org/05n436p02', 'en', 1, 'https://ror.org/05n436p02 South Ural State Humanitarian Pedagogical University Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29748, 'https://ror.org/05n4f1v75', 'id', 1, 'https://ror.org/05n4f1v75 Universitas Katolik Darma Cendika'),
(29749, 'https://ror.org/05n4r2p88', 'es', 1, 'https://ror.org/05n4r2p88 Universidad de Sta. Isabel'),
(29750, 'https://ror.org/05n4v6b27', 'en', 1, 'https://ror.org/05n4v6b27 Maritime Gloucester'),
(29751, 'https://ror.org/05n757p35', 'en', 1, 'https://ror.org/05n757p35 Hiroshima Shudo University åŗƒå³¶äæ®é“å¤§å­¦'),
(29752, 'https://ror.org/05n8fe870', 'en', 1, 'https://ror.org/05n8fe870 American University in Bulgaria Американски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(29753, 'https://ror.org/05neg3k91', 'en', 1, 'https://ror.org/05neg3k91 State Musical Pedagogical Institute named M.M.Ippolitova-Ivanov Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š¼ŃƒŠ·Ń‹ŠŗŠ°Š»ŃŒŠ½Š¾-пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени М. М. Š˜ŠæŠæŠ¾Š»ŠøŃ‚Š¾Š²Š°-Иванова'),
(29754, 'https://ror.org/05ng0t640', 'en', 1, 'https://ror.org/05ng0t640 De La Salle Catholic University'),
(29755, 'https://ror.org/05nh9h876', 'en', 1, 'https://ror.org/05nh9h876 House of the Seven Gables'),
(29756, 'https://ror.org/05nj64045', 'en', 1, 'https://ror.org/05nj64045 Institute of Practical Psychology and Psychoanalysis Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ практической психологии Šø психоанализа'),
(29757, 'https://ror.org/05nmhtv58', 'en', 1, 'https://ror.org/05nmhtv58 Atyrau State University named of Kh.Dosmukhamedova ŠŃ‚Ń‹Ń€Š°Ńƒ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŠŃ‚Ń‹Ń€Š°ŃƒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š„. Š”Š¾ŃŠ¼ŃƒŃ…Š°Š¼ŠµŠ“Š¾Š²Š°'),
(29758, 'https://ror.org/05nnaxh18', 'en', 1, 'https://ror.org/05nnaxh18 University of East Yangon ရန်ကုန် နရှေ့ပိုင်း į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29759, 'https://ror.org/05nnnck56', 'en', 1, 'https://ror.org/05nnnck56 The American University of Vietnam ĐẔi hį»c Mỹ tįŗ”i Việt Nam'),
(29760, 'https://ror.org/05nrxes70', 'en', 1, 'https://ror.org/05nrxes70 Academy of Innovation Management ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ менеГжмента инноваций'),
(29761, 'https://ror.org/05nsdjj25', 'en', 1, 'https://ror.org/05nsdjj25 Miyagi University 宮城大学'),
(29762, 'https://ror.org/05nsh7a69', 'en', 1, 'https://ror.org/05nsh7a69 Dhaka International University ঢাকা ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(29763, 'https://ror.org/05nt5pw88', 'no_lang_code', 1, 'https://ror.org/05nt5pw88 GeneTiCA (Czechia)'),
(29764, 'https://ror.org/05nv0ff14', 'no_lang_code', 1, 'https://ror.org/05nv0ff14 Retia (Czechia)'),
(29765, 'https://ror.org/05nwf9e60', 'en', 1, 'https://ror.org/05nwf9e60 Journey Through Hallowed Ground Partnership'),
(29766, 'https://ror.org/05nxbvr71', 'en', 1, 'https://ror.org/05nxbvr71 George Enescu University of Arts of Iași Universitatea de Arte George Enescu din Iași'),
(29767, 'https://ror.org/05p2jqf06', 'no_lang_code', 1, 'https://ror.org/05p2jqf06 Continental (Czechia)'),
(29768, 'https://ror.org/05p2kf948', 'en', 1, 'https://ror.org/05p2kf948 AuslƤnderuniversitƤt Siena University for Foreigners of Siena UniversitƠ per stranieri di Siena UniversitƩ pour Ʃtrangers de sienne'),
(29769, 'https://ror.org/05p2q6194', 'en', 1, 'https://ror.org/05p2q6194 University of Sadat City Ų¬Ų§Ł…Ų¹Ų© Ł…ŲÆŁŠŁ†Ų© السادات'),
(29770, 'https://ror.org/05p38tr07', 'en', 1, 'https://ror.org/05p38tr07 Mie Prefectural College Of Nursing äø‰é‡ēœŒē«‹ēœ‹č­·å¤§å­¦'),
(29771, 'https://ror.org/05p3gfq61', 'en', 1, 'https://ror.org/05p3gfq61 Krasnoyarsk State Agrarian University ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29772, 'https://ror.org/05p5fjx25', 'en', 1, 'https://ror.org/05p5fjx25 Crimean Agrotechnological University ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠøŠ¹ агротехнологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29773, 'https://ror.org/05p6wtx18', 'no_lang_code', 1, 'https://ror.org/05p6wtx18 Research Institute for Brown Coal (Czechia) Výzkumný Ćŗstav pro hnědĆ© uhlĆ­ a.s.'),
(29774, 'https://ror.org/05p70qs58', 'en', 1, 'https://ror.org/05p70qs58 Maine Classical Association'),
(29775, 'https://ror.org/05p7xfk26', 'en', 1, 'https://ror.org/05p7xfk26 Preston University Ł¾Ų±ŪŒŲ³Ł¹Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(29776, 'https://ror.org/05p8tp630', 'en', 1, 'https://ror.org/05p8tp630 International Business School at Vilnius University Vilniaus universiteto Tarptautinio verslo mokykla'),
(29777, 'https://ror.org/05pabrc30', 'en', 1, 'https://ror.org/05pabrc30 Stavropol Finance and Economics Institute'),
(29778, 'https://ror.org/05pc6nk51', 'en', 1, 'https://ror.org/05pc6nk51 New Era University'),
(29779, 'https://ror.org/05pc6w891', 'en', 1, 'https://ror.org/05pc6w891 Kazakh National Medical University ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. Š”. ŠŃŃ„ŠµŠ½Š“ŠøŃŃ€Š¾Š²Š° ŅšŠ°Š·Š°Ņ› ұлттық меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(29780, 'https://ror.org/05pfgty20', 'en', 1, 'https://ror.org/05pfgty20 Guilderland Public Library'),
(29781, 'https://ror.org/05pg3mb97', 'en', 1, 'https://ror.org/05pg3mb97 Muria Kudus University Universitas Muria Kudus'),
(29782, 'https://ror.org/05pgz6x52', 'en', 1, 'https://ror.org/05pgz6x52 Virginia International University'),
(29783, 'https://ror.org/05ph49593', 'en', 1, 'https://ror.org/05ph49593 Ural Institute of the Stock Market Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ФонГового Рынка'),
(29784, 'https://ror.org/05pkzsx39', 'no_lang_code', 1, 'https://ror.org/05pkzsx39 Janus University'),
(29785, 'https://ror.org/05pnt1244', 'no_lang_code', 1, 'https://ror.org/05pnt1244 dataPartner (Czechia)'),
(29786, 'https://ror.org/05pq0wd90', 'en', 1, 'https://ror.org/05pq0wd90 St. Peter''s Institute of Higher Education and Research'),
(29787, 'https://ror.org/05pq46g90', 'en', 1, 'https://ror.org/05pq46g90 Hoa Sen University TrĘ°į»ng ĐẔi hį»c Hoa Sen čŽ²čŠ±å¤§å­¦'),
(29788, 'https://ror.org/05pr0sx93', 'no_lang_code', 1, 'https://ror.org/05pr0sx93 Orgrez (Czechia)'),
(29789, 'https://ror.org/05prjmm12', 'en', 1, 'https://ror.org/05prjmm12 Moscow University for the Humanities Московский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29790, 'https://ror.org/05ptzyt43', 'en', 1, 'https://ror.org/05ptzyt43 Mexican American Catholic College'),
(29791, 'https://ror.org/05pv2w409', 'en', 1, 'https://ror.org/05pv2w409 American Numismatic Society'),
(29792, 'https://ror.org/05pvab842', 'en', 1, 'https://ror.org/05pvab842 Institute of Market Economy, Social Policy and Law Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыночной ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ политики Šø права'),
(29793, 'https://ror.org/05pzp6855', 'en', 1, 'https://ror.org/05pzp6855 Samar State University'),
(29794, 'https://ror.org/05q2ap552', 'en', 1, 'https://ror.org/05q2ap552 Historic Hawaii Foundation'),
(29795, 'https://ror.org/05q4zgq93', 'en', 1, 'https://ror.org/05q4zgq93 Ryazan State Agrotechnological University Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ агротехнологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П.А.ŠšŠ¾ŃŃ‚Ń‹Ń‡ŠµŠ²Š°'),
(29796, 'https://ror.org/05q6eez19', 'en', 1, 'https://ror.org/05q6eez19 International Academy of Marketing and Management ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ маркетинга Šø менеГжмента'),
(29797, 'https://ror.org/05q6gjh32', 'en', 1, 'https://ror.org/05q6gjh32 North Caucasian Social Institute Деверо-Кавказский ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29798, 'https://ror.org/05q8wsh46', 'en', 1, 'https://ror.org/05q8wsh46 PEF Private University of Management Vienna PEF Privatuniversität für Management'),
(29799, 'https://ror.org/05q95ps16', 'en', 1, 'https://ror.org/05q95ps16 Kurgan State University ŠšŃƒŃ€Š³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29800, 'https://ror.org/05q9we431', 'en', 1, 'https://ror.org/05q9we431 Noakhali Science and Technology University নোয়াখালী ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29801, 'https://ror.org/05qbvwf88', 'en', 1, 'https://ror.org/05qbvwf88 Osaka University of Arts å¤§é˜ŖčŠøč”“å¤§å­¦'),
(29802, 'https://ror.org/05qbwsp96', 'en', 1, 'https://ror.org/05qbwsp96 Tyumen State Medical University Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29803, 'https://ror.org/05qby2688', 'id', 1, 'https://ror.org/05qby2688 Universitas Baturaja'),
(29804, 'https://ror.org/05qcjpk30', 'en', 1, 'https://ror.org/05qcjpk30 M. Akmullah Bashkir State Pedagogical University Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. ŠŠŗŠ¼ŃƒŠ»Š»Ń‹'),
(29805, 'https://ror.org/05qdadx80', 'no_lang_code', 1, 'https://ror.org/05qdadx80 Prague Research Institute of Railway Rolling Stock VUKV (Czechia)'),
(29806, 'https://ror.org/05qdq6h40', 'en', 1, 'https://ror.org/05qdq6h40 Naresuan University Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ą¹€ąø£ąøØąø§ąø£'),
(29807, 'https://ror.org/05qgc6h44', 'en', 1, 'https://ror.org/05qgc6h44 Utkal University of Culture'),
(29808, 'https://ror.org/05qjp8n74', 'id', 1, 'https://ror.org/05qjp8n74 Universitas Islam Majapahit'),
(29809, 'https://ror.org/05qk89p66', 'en', 1, 'https://ror.org/05qk89p66 Jefferson Patterson Park and Museum'),
(29810, 'https://ror.org/05qmfqe91', 'id', 1, 'https://ror.org/05qmfqe91 Universitas Yos Soedarso'),
(29811, 'https://ror.org/05qp5sg69', 'en', 1, 'https://ror.org/05qp5sg69 Luther Rice College and Seminary'),
(29812, 'https://ror.org/05qp61e83', 'en', 1, 'https://ror.org/05qp61e83 Musashi University 武蔵大学'),
(29813, 'https://ror.org/05qr5xz39', 'en', 1, 'https://ror.org/05qr5xz39 Institute of Law and Business Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса Šø права'),
(29814, 'https://ror.org/05qrjdq75', 'en', 1, 'https://ror.org/05qrjdq75 Volga State University of Water Transport Волжский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного транспорта'),
(29815, 'https://ror.org/05qwfk367', 'en', 1, 'https://ror.org/05qwfk367 Luarasi University Universiteti Luarasi'),
(29816, 'https://ror.org/05qwrn075', 'en', 1, 'https://ror.org/05qwrn075 Irkutsk State Medical University Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29817, 'https://ror.org/05qx3ve03', 'en', 1, 'https://ror.org/05qx3ve03 Geumgang University źøˆź°•ėŒ€ķ•™źµ'),
(29818, 'https://ror.org/05qxr6b81', 'en', 1, 'https://ror.org/05qxr6b81 Bethlehem Area School District'),
(29819, 'https://ror.org/05qyt4p67', 'en', 1, 'https://ror.org/05qyt4p67 Sardar Bahadur Khan Women''s University Ų³Ų±ŲÆŲ§Ų± بہادر خان Ų®ŁˆŲ§ŲŖŪŒŁ† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(29820, 'https://ror.org/05r250n95', 'no_lang_code', 1, 'https://ror.org/05r250n95 Precheza (Czechia)'),
(29821, 'https://ror.org/05r2k0m61', 'no_lang_code', 1, 'https://ror.org/05r2k0m61 Osaka Jogakuin University å¤§é˜Ŗå„³å­¦é™¢å¤§å­¦'),
(29822, 'https://ror.org/05r42kg44', 'en', 1, 'https://ror.org/05r42kg44 Vilniaus dailės akademija Vilnius Academy of Arts Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠ°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29823, 'https://ror.org/05r4ftt49', 'en', 1, 'https://ror.org/05r4ftt49 The Dane G. Hansen Museum'),
(29824, 'https://ror.org/05r50mj29', 'en', 1, 'https://ror.org/05r50mj29 Siberian State Aerospace University Дибирский Š³Š¾ŃŃƒŠ“арственный Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика М. Ф. Š ŠµŃˆŠµŃ‚Š½Ń‘Š²Š°'),
(29825, 'https://ror.org/05r7e6j86', 'en', 1, 'https://ror.org/05r7e6j86 Multnomah County Library'),
(29826, 'https://ror.org/05r8r3608', 'en', 1, 'https://ror.org/05r8r3608 United States University'),
(29827, 'https://ror.org/05r9rzb75', 'en', 1, 'https://ror.org/05r9rzb75 University of Energy and Natural Resources'),
(29828, 'https://ror.org/05raa0j17', 'no_lang_code', 1, 'https://ror.org/05raa0j17 Mikropur (Czechia)'),
(29829, 'https://ror.org/05rap1m08', 'no_lang_code', 1, 'https://ror.org/05rap1m08 Maharaja Sriram Chandra Bhanja Deo University ମହାରାଜା ą¬¶ą­ą¬°ą­€ą¬°ą¬¾ą¬® ą¬šą¬Øą­ą¬¦ą­ą¬° ą¬­ą¬žą­ą¬œ ଦେଓ ą¬‡ą¬‰ą¬Øą¬æą¬­ą¬°ą­ą¬øą¬æą¬Ÿą¬æ'),
(29830, 'https://ror.org/05rbe6d26', 'en', 1, 'https://ror.org/05rbe6d26 Anacostia Watershed Society'),
(29831, 'https://ror.org/05rbemn16', 'no_lang_code', 1, 'https://ror.org/05rbemn16 Tajmac-zps (Czechia)'),
(29832, 'https://ror.org/05rce5g70', 'en', 1, 'https://ror.org/05rce5g70 Manarat International University মানারাত ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(29833, 'https://ror.org/05rdty581', 'en', 1, 'https://ror.org/05rdty581 Taganrog State Pedagogical Institute Таганрогский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени А.П. Чехова'),
(29834, 'https://ror.org/05re0wz96', 'en', 1, 'https://ror.org/05re0wz96 Surgut ''Planet'' Institute of World Economics and Business Š”ŃƒŃ€Š³ŃƒŃ‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мировой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø бизнеса'),
(29835, 'https://ror.org/05rfp8442', 'en', 1, 'https://ror.org/05rfp8442 Norman Rockwell Museum'),
(29836, 'https://ror.org/05rgcq967', 'en', 1, 'https://ror.org/05rgcq967 Torch Trinity Graduate University ķšƒė¶ˆķŠøė¦¬ė‹ˆķ‹°ģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(29837, 'https://ror.org/05rgwjj62', 'no_lang_code', 1, 'https://ror.org/05rgwjj62 Medical Technologies (Czechia)'),
(29838, 'https://ror.org/05rjmhp95', 'en', 1, 'https://ror.org/05rjmhp95 Academy of Film & Multimedia ā€œMARUBIā€ Akademia e Filmit dhe Multimedias Marubi'),
(29839, 'https://ror.org/05rn18y04', 'en', 1, 'https://ror.org/05rn18y04 Institute of Business, Psychology and Management Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса, психологии Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(29840, 'https://ror.org/05rn78z96', 'en', 1, 'https://ror.org/05rn78z96 Dagon University ဒဂုံ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29841, 'https://ror.org/05rqmax46', 'en', 1, 'https://ror.org/05rqmax46 High Desert Museum'),
(29842, 'https://ror.org/05rt7ve48', 'en', 1, 'https://ror.org/05rt7ve48 Mindanao University of Science and Technology'),
(29843, 'https://ror.org/05rtb3z04', 'en', 1, 'https://ror.org/05rtb3z04 Western Reserve Historical Society'),
(29844, 'https://ror.org/05rvftf63', 'en', 1, 'https://ror.org/05rvftf63 National History Center'),
(29845, 'https://ror.org/05rxs7517', 'en', 1, 'https://ror.org/05rxs7517 Songkhla Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąø‡ąø‚ąø„ąø²'),
(29846, 'https://ror.org/05s0z8a66', 'en', 1, 'https://ror.org/05s0z8a66 Yokohama University of Pharmacy ęØŖęµœč–¬ē§‘å¤§å­¦'),
(29847, 'https://ror.org/05s1mjj45', 'en', 1, 'https://ror.org/05s1mjj45 Retrospective Index to Music Periodicals'),
(29848, 'https://ror.org/05s2ecw65', 'en', 1, 'https://ror.org/05s2ecw65 BGC Trust University Bangladesh বিজিসি ą¦Ÿą§ą¦°ą¦¾ą¦øą§ą¦Ÿ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ বাংলাদেশ'),
(29849, 'https://ror.org/05s3ca234', 'en', 1, 'https://ror.org/05s3ca234 Bangladesh Open University বাংলাদেশ ą¦‰ą¦Øą§ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29850, 'https://ror.org/05s86mf83', 'en', 1, 'https://ror.org/05s86mf83 Vermont Fish & Wildlife Department'),
(29851, 'https://ror.org/05scx8x11', 'id', 1, 'https://ror.org/05scx8x11 Universitas Aki'),
(29852, 'https://ror.org/05sd29c29', 'en', 1, 'https://ror.org/05sd29c29 Pontifical Lateran University Pontificia UniversitƠ Lateranense PƤpstliche LateranuniversitƤt Universitat Pontifƭcia Lateranense UniversitƩ pontificale du latran'),
(29853, 'https://ror.org/05sfaa624', 'en', 1, 'https://ror.org/05sfaa624 Tibiscus University of Timișoara Universitatea Tibiscus din Timișoara'),
(29854, 'https://ror.org/05sh1ye34', 'en', 1, 'https://ror.org/05sh1ye34 History Center in Tompkins County'),
(29855, 'https://ror.org/05shy2j49', 'en', 1, 'https://ror.org/05shy2j49 Saint-Petersburg Institute of Hospitality Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гостеприимства'),
(29856, 'https://ror.org/05sk22f46', 'en', 1, 'https://ror.org/05sk22f46 Mahayana Sutra & Tantra Center'),
(29857, 'https://ror.org/05smtc341', 'en', 1, 'https://ror.org/05smtc341 Irkutsk State Transport University Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(29858, 'https://ror.org/05snv9327', 'en', 1, 'https://ror.org/05snv9327 Gandhara University گاندھارا ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(29859, 'https://ror.org/05sqep420', 'en', 1, 'https://ror.org/05sqep420 Claremont Institute'),
(29860, 'https://ror.org/05ssws785', 'en', 1, 'https://ror.org/05ssws785 Ulyanovsk State Agricultural Academy named after PA Stolypin Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29861, 'https://ror.org/05swf4h71', 'en', 1, 'https://ror.org/05swf4h71 Siberian Institute of Business and Information Technologies Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса Šø информационных технологий'),
(29862, 'https://ror.org/05swzm262', 'en', 1, 'https://ror.org/05swzm262 Institute of Social and Humanities Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Šø Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… наук'),
(29863, 'https://ror.org/05sykgj25', 'en', 1, 'https://ror.org/05sykgj25 Pamantasan ng Hilagang Pilipinas University of Northern Philippines'),
(29864, 'https://ror.org/05t0s7273', 'en', 1, 'https://ror.org/05t0s7273 Kansai Gaidai University é–¢č„æå¤–å›½čŖžå¤§å­¦'),
(29865, 'https://ror.org/05t178043', 'no_lang_code', 1, 'https://ror.org/05t178043 Vyrtych (Czechia)'),
(29866, 'https://ror.org/05t1bc854', 'en', 1, 'https://ror.org/05t1bc854 Korea National Defense University źµ­ė°©ėŒ€ķ•™źµ'),
(29867, 'https://ror.org/05t4srr46', 'en', 1, 'https://ror.org/05t4srr46 Centre for International Cooperation in Education'),
(29868, 'https://ror.org/05t56qd09', 'id', 1, 'https://ror.org/05t56qd09 Dayanu Ikhsanuddin University Universitas Dayanu Ikhsanuddin'),
(29869, 'https://ror.org/05t58bx13', 'en', 1, 'https://ror.org/05t58bx13 Samara State Technical University Дамарский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29870, 'https://ror.org/05t7j2034', 'en', 1, 'https://ror.org/05t7j2034 Preble County Historical Society'),
(29871, 'https://ror.org/05t7wa168', 'no_lang_code', 1, 'https://ror.org/05t7wa168 Trakce (Czechia)'),
(29872, 'https://ror.org/05t9f1n79', 'en', 1, 'https://ror.org/05t9f1n79 National University of Ukraine on Physical Education and Sport ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ фізичного Š²ŠøŃ…Š¾Š²Š°Š½Š½Ń і ŃŠæŠ¾Ń€Ń‚Ńƒ України'),
(29873, 'https://ror.org/05ta60489', 'en', 1, 'https://ror.org/05ta60489 International Institute of Management Arkhangelsk Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(29874, 'https://ror.org/05tcz5141', 'no_lang_code', 1, 'https://ror.org/05tcz5141 BMT Medical Technology (Czechia)'),
(29875, 'https://ror.org/05teadr95', 'cs', 1, 'https://ror.org/05teadr95 PamƔtnƭk NƔrodnƭho Pƭsemnictvƭ'),
(29876, 'https://ror.org/05tep8d22', 'en', 1, 'https://ror.org/05tep8d22 Anna Maria College'),
(29877, 'https://ror.org/05th78b98', 'cs', 1, 'https://ror.org/05th78b98 HvězdĆ”rna v Úpici, Observatory Úpice'),
(29878, 'https://ror.org/05tha3a95', 'en', 1, 'https://ror.org/05tha3a95 Allentown Art Museum'),
(29879, 'https://ror.org/05tk3y812', 'en', 1, 'https://ror.org/05tk3y812 Denver Art Museum'),
(29880, 'https://ror.org/05tkaf051', 'en', 1, 'https://ror.org/05tkaf051 Beatrice Public Library'),
(29881, 'https://ror.org/05tkmsd51', 'en', 1, 'https://ror.org/05tkmsd51 East European Institute of Psychoanalysis Восточно-Европейский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŸŃŠøŃ…Š¾Š°Š½Š°Š»ŠøŠ·Š°'),
(29882, 'https://ror.org/05tmh5a95', 'en', 1, 'https://ror.org/05tmh5a95 Hermitage Museum'),
(29883, 'https://ror.org/05tnbbj36', 'en', 1, 'https://ror.org/05tnbbj36 Geneva Historical Society'),
(29884, 'https://ror.org/05tndeq88', 'en', 1, 'https://ror.org/05tndeq88 Yakima Valley Libraries'),
(29885, 'https://ror.org/05tt1bq68', 'en', 1, 'https://ror.org/05tt1bq68 Commercial Fisheries Research Foundation'),
(29886, 'https://ror.org/05tt5nr09', 'en', 1, 'https://ror.org/05tt5nr09 Ukrainian Catholic University Ukraiński Uniwersytet Katolicki Украинский католический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ ŠŗŠ°Ń‚Š¾Š»ŠøŃ†ŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29887, 'https://ror.org/05ttt8934', 'en', 1, 'https://ror.org/05ttt8934 Wichita Public Library'),
(29888, 'https://ror.org/05tvatp40', 'no_lang_code', 1, 'https://ror.org/05tvatp40 Gifu Shotoku Gakuen University å²é˜œč–å¾³å­¦åœ’å¤§å­¦'),
(29889, 'https://ror.org/05txf9q94', 'en', 1, 'https://ror.org/05txf9q94 Academy of Economic Security ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Š¹ безопасности'),
(29890, 'https://ror.org/05tyb9s14', 'en', 1, 'https://ror.org/05tyb9s14 EKA University of Applied Sciences Ekonomikas un kultƻras augstskola'),
(29891, 'https://ror.org/05v056h48', 'no_lang_code', 1, 'https://ror.org/05v056h48 Explosia (Czechia)'),
(29892, 'https://ror.org/05v0vxa20', 'en', 1, 'https://ror.org/05v0vxa20 Los Angeles Education Partnership'),
(29893, 'https://ror.org/05v3pg621', 'en', 1, 'https://ror.org/05v3pg621 Nan Kai University of Technology å—é–‹ē§‘ęŠ€å¤§å­ø'),
(29894, 'https://ror.org/05v4ecv43', 'en', 1, 'https://ror.org/05v4ecv43 Tver Institute of Ecology and Law Тверской ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø права'),
(29895, 'https://ror.org/05v4xtv52', 'id', 1, 'https://ror.org/05v4xtv52 Universitas Nasional Pasim'),
(29896, 'https://ror.org/05v56p320', 'id', 1, 'https://ror.org/05v56p320 Universitas Muhammadiyah Tapanuli Selatan'),
(29897, 'https://ror.org/05v8e1c02', 'en', 1, 'https://ror.org/05v8e1c02 Massachusetts Department of Fish & Game'),
(29898, 'https://ror.org/05v8v7d33', 'en', 1, 'https://ror.org/05v8v7d33 Yangtze Normal University é•æę±ŸåøˆčŒƒå­¦é™¢'),
(29899, 'https://ror.org/05v9vy052', 'en', 1, 'https://ror.org/05v9vy052 Sulaimani Polytechnic University Ų²Ų§Ł†Ś©Ū†ŪŒ Ł¾Ū†Ł„ŪŒŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ Ų³Ł„ŪŽŁ…Ų§Ł†ŪŒ'),
(29900, 'https://ror.org/05vayj190', 'en', 1, 'https://ror.org/05vayj190 Bee Research Institute Institut für Bienenforschung'),
(29901, 'https://ror.org/05vehv290', 'en', 1, 'https://ror.org/05vehv290 University of Tyumen Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29902, 'https://ror.org/05veqwc59', 'en', 1, 'https://ror.org/05veqwc59 Academy of Labour Social Relations and Tourism ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń праці, ŃŠ¾Ń†Ń–Š°Š»ŃŒŠ½ŠøŃ… віГносин і Ń‚ŃƒŃ€ŠøŠ·Š¼Ńƒ'),
(29903, 'https://ror.org/05vewjh97', 'en', 1, 'https://ror.org/05vewjh97 Ministry of Internal Affairs of the Republic of Tajikistan Вазорати корҳои Гохилии Ņ¶ŃƒŠ¼Ņ³ŃƒŃ€ŠøŠø Тоҷикистон'),
(29904, 'https://ror.org/05vgwdg09', 'en', 1, 'https://ror.org/05vgwdg09 Richards Free Library'),
(29905, 'https://ror.org/05vjhj012', 'pl', 1, 'https://ror.org/05vjhj012 Private Higher School of Social Sciences, Computer Science and Medical Prywatna Wyższa Szkoła Nauk Społecznych, Komputerowych i Medycznych'),
(29906, 'https://ror.org/05vk02k31', 'en', 1, 'https://ror.org/05vk02k31 St. Lucie County Regional History Center'),
(29907, 'https://ror.org/05vkc0567', 'en', 1, 'https://ror.org/05vkc0567 Language of Dance Centre'),
(29908, 'https://ror.org/05vkeks90', 'en', 1, 'https://ror.org/05vkeks90 Moscow Conservatory ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. П. И. Чайковского'),
(29909, 'https://ror.org/05vkk5g69', 'en', 1, 'https://ror.org/05vkk5g69 Hakuoh University ē™½é“Žå¤§å­¦'),
(29910, 'https://ror.org/05vkm7r79', 'en', 1, 'https://ror.org/05vkm7r79 Lower Columbia Estuary Partnership'),
(29911, 'https://ror.org/05vmyj633', 'en', 1, 'https://ror.org/05vmyj633 Saint Petersburg State Academy of Veterinary Medicine Š”ŠŠŠšŠ¢-ŠŸŠ•Š¢Š•Š Š‘Š£Š Š“Š”ŠšŠŠÆ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ Š’Š•Š¢Š•Š Š˜ŠŠŠ ŠŠžŠ™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ«'),
(29912, 'https://ror.org/05vng4613', 'no_lang_code', 1, 'https://ror.org/05vng4613 Wastech (Czechia)'),
(29913, 'https://ror.org/05vp0jk15', 'en', 1, 'https://ror.org/05vp0jk15 Juneau Public Libraries'),
(29914, 'https://ror.org/05vqb6078', 'no_lang_code', 1, 'https://ror.org/05vqb6078 Oprox (Czechia)'),
(29915, 'https://ror.org/05vqg2q68', 'en', 1, 'https://ror.org/05vqg2q68 Balboa Art Conservation Center'),
(29916, 'https://ror.org/05vqqhk28', 'en', 1, 'https://ror.org/05vqqhk28 Institute of International Law and Economics named after AS Griboedova Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾Š³Š¾ права Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø имени А.Š”. ГрибоеГова'),
(29917, 'https://ror.org/05vs2an33', 'en', 1, 'https://ror.org/05vs2an33 Bryansk State Engineering and Technological Academy Š‘Ń€ŃŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń инженерно-Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29918, 'https://ror.org/05vv4xn30', 'en', 1, 'https://ror.org/05vv4xn30 Kobe Tokiwa University ē„žęˆøåøøē›¤å¤§å­¦'),
(29919, 'https://ror.org/05vx7wd63', 'en', 1, 'https://ror.org/05vx7wd63 University of Perpetual Help System DALTA'),
(29920, 'https://ror.org/05vxw9r04', 'en', 1, 'https://ror.org/05vxw9r04 Klamath River Inter-Tribal Fish and Water Commission'),
(29921, 'https://ror.org/05vzasa79', 'en', 1, 'https://ror.org/05vzasa79 Kurmangazy Kazakh National Conservatory ŅšŠ°Š·Š°Ņ› ұлттық ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃŃŃ‹'),
(29922, 'https://ror.org/05w387x59', 'en', 1, 'https://ror.org/05w387x59 Voronezh Institute of Ministry of Internal Affairs Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š”'),
(29923, 'https://ror.org/05w3ffa57', 'en', 1, 'https://ror.org/05w3ffa57 American College'),
(29924, 'https://ror.org/05w462p65', 'id', 1, 'https://ror.org/05w462p65 Universitas Muhammadiyah Palembang'),
(29925, 'https://ror.org/05w5r2e40', 'en', 1, 'https://ror.org/05w5r2e40 Atish Dipankar University of Science and Technology অতীশ ą¦¦ą§€ą¦Ŗą¦™ą§ą¦•ą¦° ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(29926, 'https://ror.org/05w61br16', 'en', 1, 'https://ror.org/05w61br16 Ekvtime Takaishvili Teaching University įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ ā€žįƒ įƒ•įƒįƒšįƒ˜ā€œ'),
(29927, 'https://ror.org/05w61xa76', 'no_lang_code', 1, 'https://ror.org/05w61xa76 Delinfo (Czechia)'),
(29928, 'https://ror.org/05w6dwp35', 'no_lang_code', 1, 'https://ror.org/05w6dwp35 Chikushi Jogakuen University ē­‘ē“«å„³å­¦åœ’å¤§å­¦'),
(29929, 'https://ror.org/05w7ta844', 'en', 1, 'https://ror.org/05w7ta844 Dnepropetrovsk State Institute of Physical Culture and Sport ŠŸŃ€ŠøŠ“Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø і ŃŠæŠ¾Ń€Ń‚Ńƒ'),
(29930, 'https://ror.org/05w92f868', 'fr', 1, 'https://ror.org/05w92f868 Fondation UniversitĆ© FranƧaise en ArmĆ©nie Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶ÕøÖ‚Õ“ Ö†Ö€Õ”Õ¶Õ½Õ«Õ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(29931, 'https://ror.org/05w9k9t67', 'en', 1, 'https://ror.org/05w9k9t67 Davangere University ದಾವಣಗೆರೆ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(29932, 'https://ror.org/05wawev23', 'en', 1, 'https://ror.org/05wawev23 Southwestern University'),
(29933, 'https://ror.org/05wgsx832', 'en', 1, 'https://ror.org/05wgsx832 Kkottongnae University'),
(29934, 'https://ror.org/05wh3vf38', 'en', 1, 'https://ror.org/05wh3vf38 HistoryMakers');
INSERT INTO `rors` VALUES
(29935, 'https://ror.org/05whqt140', 'id', 1, 'https://ror.org/05whqt140 Universitas Fajar'),
(29936, 'https://ror.org/05wj18248', 'en', 1, 'https://ror.org/05wj18248 Hachinohe Institute of Technology å…«ęˆøå·„ę„­å¤§å­¦'),
(29937, 'https://ror.org/05wknye49', 'en', 1, 'https://ror.org/05wknye49 Center for Fiction'),
(29938, 'https://ror.org/05wkq5518', 'en', 1, 'https://ror.org/05wkq5518 Pyongyang Medical University ķ‰ģ–‘ģ˜ķ•™ėŒ€ķ•™'),
(29939, 'https://ror.org/05wnc7373', 'en', 1, 'https://ror.org/05wnc7373 Bethel University'),
(29940, 'https://ror.org/05wr48765', 'en', 1, 'https://ror.org/05wr48765 Chifeng University 赤峰学院'),
(29941, 'https://ror.org/05ws11813', 'no_lang_code', 1, 'https://ror.org/05ws11813 Abasyn University Ų§ŲØŲ§Ų³ŪŒŁ† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(29942, 'https://ror.org/05wsqqr12', 'en', 1, 'https://ror.org/05wsqqr12 Novosibirsk State University of Architecture and Civil Engineering ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29943, 'https://ror.org/05wvagp91', 'en', 1, 'https://ror.org/05wvagp91 Pivdennoukrainskyi natsionalnyi pedagogichnyi universytet imeni K. D. Ushynskogo South Ukrainian National Pedagogical University named after K. D. Ushynsky ŠŸŃ–Š²Š“ŠµŠ½Š½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠšŠ¾ŃŃ‚ŃŠ½Ń‚ŠøŠ½Š° Ушинського'),
(29944, 'https://ror.org/05wvke928', 'en', 1, 'https://ror.org/05wvke928 Tokyo Health Care University ę±äŗ¬åŒ»ē™‚äæå„å¤§å­¦'),
(29945, 'https://ror.org/05wwvg270', 'en', 1, 'https://ror.org/05wwvg270 Kazan Law Institute Казанский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š” России'),
(29946, 'https://ror.org/05wx6v148', 'en', 1, 'https://ror.org/05wx6v148 Carnegie Hall'),
(29947, 'https://ror.org/05wx7ah15', 'en', 1, 'https://ror.org/05wx7ah15 Renaissance Society of America'),
(29948, 'https://ror.org/05x1g5662', 'en', 1, 'https://ror.org/05x1g5662 Piedmont University'),
(29949, 'https://ror.org/05x21mt76', 'en', 1, 'https://ror.org/05x21mt76 Amur State Medical Academy ŠŠ¼ŃƒŃ€ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29950, 'https://ror.org/05x31d492', 'en', 1, 'https://ror.org/05x31d492 Northwestern College - Iowa'),
(29951, 'https://ror.org/05x5g1486', 'en', 1, 'https://ror.org/05x5g1486 Palawan State University'),
(29952, 'https://ror.org/05x5rpn21', 'en', 1, 'https://ror.org/05x5rpn21 American University of Technology دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ ŁŁ†Ų§ŁˆŲ±ŪŒ'),
(29953, 'https://ror.org/05x6rt433', 'id', 1, 'https://ror.org/05x6rt433 Universitas Pamulang'),
(29954, 'https://ror.org/05x852w19', 'en', 1, 'https://ror.org/05x852w19 Longue Vue House and Gardens'),
(29955, 'https://ror.org/05x9hft88', 'id', 1, 'https://ror.org/05x9hft88 Universitas Sahid Jakarta'),
(29956, 'https://ror.org/05xases12', 'en', 1, 'https://ror.org/05xases12 Lepanto Foundation'),
(29957, 'https://ror.org/05xc0dy80', 'en', 1, 'https://ror.org/05xc0dy80 Osaka University of Commerce å¤§é˜Ŗå•†ę„­å¤§å­¦'),
(29958, 'https://ror.org/05xdrya09', 'en', 1, 'https://ror.org/05xdrya09 Rock Point Community School'),
(29959, 'https://ror.org/05xdt2n12', 'en', 1, 'https://ror.org/05xdt2n12 Walter Elwood Museum'),
(29960, 'https://ror.org/05xeme822', 'no_lang_code', 1, 'https://ror.org/05xeme822 PaƱƱāsāstra University of Cambodia įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ā€‹įž”įž‰įŸ’įž‰įž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšā€‹įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(29961, 'https://ror.org/05xezqk59', 'en', 1, 'https://ror.org/05xezqk59 AndrÔssy Gyula Budapesti Német Nyelvű Egyetem AndrÔssy University Budapest'),
(29962, 'https://ror.org/05xjspa12', 'en', 1, 'https://ror.org/05xjspa12 Darul Huda Islamic University UniversitĆ© islamique darul huda Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± الهدى Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ą“¦ą“¾ą“±ąµąµ½ą“¹ąµą“¦ą“¾ ą“‡ą“øąµą“²ą“¾ą“®ą“æą“•ąµ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(29963, 'https://ror.org/05xknxa42', 'en', 1, 'https://ror.org/05xknxa42 Bedƫr University Universiteti Hƫna e Plotƫ'),
(29964, 'https://ror.org/05xkw0e31', 'en', 1, 'https://ror.org/05xkw0e31 V. Sarajishvili Tbilisi State Conservation įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ•.įƒ”įƒįƒ įƒįƒÆįƒ˜įƒØįƒ•įƒ˜įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ™įƒįƒœįƒ”įƒ”įƒ įƒ•įƒįƒ¢įƒįƒ įƒ˜įƒ'),
(29965, 'https://ror.org/05xp8d869', 'en', 1, 'https://ror.org/05xp8d869 Bibliographical Society of America'),
(29966, 'https://ror.org/05xpx5s03', 'en', 1, 'https://ror.org/05xpx5s03 Martin University Hospital UniverzitnĆ” Nemocnica Martin'),
(29967, 'https://ror.org/05xq38r07', 'en', 1, 'https://ror.org/05xq38r07 Calcasieu Parish Public Library'),
(29968, 'https://ror.org/05xqgz809', 'en', 1, 'https://ror.org/05xqgz809 Moscow State Institute of Culture Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(29969, 'https://ror.org/05xtnfk88', 'en', 1, 'https://ror.org/05xtnfk88 Venice International University'),
(29970, 'https://ror.org/05xvhyj32', 'en', 1, 'https://ror.org/05xvhyj32 Armenian National Agrarian University Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ”Õ£Ö€Õ”Ö€Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(29971, 'https://ror.org/05xvq6g12', 'en', 1, 'https://ror.org/05xvq6g12 Ackley Heritage Center'),
(29972, 'https://ror.org/05xw54w34', 'cs', 1, 'https://ror.org/05xw54w34 Academia Rerum Civilium - VysokĆ” Skola Politických a Společenských Věd'),
(29973, 'https://ror.org/05xwxh996', 'en', 1, 'https://ror.org/05xwxh996 Snug Harbor Cultural Center & Botanical Garden'),
(29974, 'https://ror.org/05xyqje95', 'en', 1, 'https://ror.org/05xyqje95 Newport Historical Society'),
(29975, 'https://ror.org/05xz4d742', 'mt', 1, 'https://ror.org/05xz4d742 Fondazzjoni Temi Zammit'),
(29976, 'https://ror.org/05xzaq362', 'en', 1, 'https://ror.org/05xzaq362 M.Auezov South Kazakhstan State University М.Ó˜Š£Š•Š—ŠžŠ’ ŠŠ¢Š«ŠŠ”ŠŅ’Š« ŠžŅ¢Š¢Ņ®Š”Š¢Š†Šš ŅšŠŠ—ŠŅšŠ”Š¢ŠŠ ŠœŠ•ŠœŠ›Š•ŠšŠ•Š¢Š¢Š†Šš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š†'),
(29977, 'https://ror.org/05y3p3k12', 'en', 1, 'https://ror.org/05y3p3k12 Hebrew College'),
(29978, 'https://ror.org/05y3w6z74', 'en', 1, 'https://ror.org/05y3w6z74 Omaha Public Library'),
(29979, 'https://ror.org/05y4r9290', 'en', 1, 'https://ror.org/05y4r9290 Sylhet International University ą¦øą¦æą¦²ą§‡ą¦Ÿ ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(29980, 'https://ror.org/05y7b4225', 'en', 1, 'https://ror.org/05y7b4225 Hanzhong University ķ•œģ¤‘ėŒ€ķ•™źµ'),
(29981, 'https://ror.org/05y7mt438', 'en', 1, 'https://ror.org/05y7mt438 Richmond Public Library'),
(29982, 'https://ror.org/05y8j9f75', 'en', 1, 'https://ror.org/05y8j9f75 Sarguja University ą¤øą¤°ą¤—ą„ą¤œą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29983, 'https://ror.org/05y8x6h30', 'en', 1, 'https://ror.org/05y8x6h30 Al Ghurair University'),
(29984, 'https://ror.org/05y9enm95', 'en', 1, 'https://ror.org/05y9enm95 Baguio Central University'),
(29985, 'https://ror.org/05y9wk989', 'en', 1, 'https://ror.org/05y9wk989 Old Dartmouth Historical Society'),
(29986, 'https://ror.org/05yay2120', 'en', 1, 'https://ror.org/05yay2120 Monk Seal Foundation'),
(29987, 'https://ror.org/05yayh717', 'en', 1, 'https://ror.org/05yayh717 Maiden Voyage Productions'),
(29988, 'https://ror.org/05ybw7k58', 'no_lang_code', 1, 'https://ror.org/05ybw7k58 VUC Praha (Czechia)'),
(29989, 'https://ror.org/05yfc2w21', 'en', 1, 'https://ror.org/05yfc2w21 Shaheed Zulfiqar Ali Bhutto Institute of Science and Technology ؓہید Ų°ŁˆŲ§Ł„ŁŁ‚Ų§Ų± Ų¹Ł„ŪŒ بھٹو Ų§Ł†Ų³Ł¹ŪŒŁ¹ŪŒŁˆŁ¹ آف سائنس Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(29990, 'https://ror.org/05yge8w48', 'en', 1, 'https://ror.org/05yge8w48 Ueno Gakuen University äøŠé‡Žå­¦åœ’å¤§å­¦'),
(29991, 'https://ror.org/05yh8pq36', 'en', 1, 'https://ror.org/05yh8pq36 Baltic Institute of Foreign Languages and International Intercultural Cooperation Балтийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иностранных ŃŠ·Ń‹ŠŗŠ¾Š² Šø Š¼ŠµŠ¶ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½Š¾Š³Š¾ ŃŠ¾Ń‚Ń€ŃƒŠ“Š½ŠøŃ‡ŠµŃŃ‚Š²Š°'),
(29992, 'https://ror.org/05yhrkh78', 'no_lang_code', 1, 'https://ror.org/05yhrkh78 Nishikyushu University č„æä¹å·žå¤§å­¦'),
(29993, 'https://ror.org/05yjmg052', 'no_lang_code', 1, 'https://ror.org/05yjmg052 Temex (Czechia)'),
(29994, 'https://ror.org/05yjqdn82', 'en', 1, 'https://ror.org/05yjqdn82 Kursk State University ŠšŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29995, 'https://ror.org/05yjy4360', 'en', 1, 'https://ror.org/05yjy4360 University of Applied Arts Vienna Universität für angewandte Kunst Wien'),
(29996, 'https://ror.org/05yk27p37', 'en', 1, 'https://ror.org/05yk27p37 Elisabeth University of Music ć‚ØćƒŖć‚¶ćƒ™ćƒˆéŸ³ę„½å¤§å­¦'),
(29997, 'https://ror.org/05ykq3c56', 'no_lang_code', 1, 'https://ror.org/05ykq3c56 Alfred Nobel University Университет имени ŠŠ»ŃŒŃ„реГа ŠŠ¾Š±ŠµŠ»Ń Університет імені ŠŠ»ŃŒŃ„Ń€ŠµŠ“Š° ŠŠ¾Š±ŠµŠ»Ń'),
(29998, 'https://ror.org/05ykvq143', 'en', 1, 'https://ror.org/05ykvq143 Dimitrie Cantemir University Universitatea Dimitrie Cantemir'),
(29999, 'https://ror.org/05yq59a96', 'en', 1, 'https://ror.org/05yq59a96 International Institute of Economics and Law ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(30000, 'https://ror.org/05yqeww58', 'en', 1, 'https://ror.org/05yqeww58 Rajabhat Rajanagarindra University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø£ąø²ąøŠąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(30001, 'https://ror.org/0000m8h16', 'no_lang_code', 1, 'https://ror.org/0000m8h16 QRtech (Sweden)'),
(30002, 'https://ror.org/0000xgr97', 'no_lang_code', 1, 'https://ror.org/0000xgr97 Onyx Optics (United States)'),
(30003, 'https://ror.org/0001ew531', 'en', 1, 'https://ror.org/0001ew531 Adelson Foundation'),
(30004, 'https://ror.org/0002yq607', 'en', 1, 'https://ror.org/0002yq607 Henry Cogswell College'),
(30005, 'https://ror.org/0003gmg65', 'no_lang_code', 1, 'https://ror.org/0003gmg65 Osaka Gas (United States)'),
(30006, 'https://ror.org/0003xa228', 'en', 1, 'https://ror.org/0003xa228 Cancer Prevention and Research Institute of Texas'),
(30007, 'https://ror.org/0005jpy03', 'en', 1, 'https://ror.org/0005jpy03 Israel National Institute for Health Policy Research'),
(30008, 'https://ror.org/0005rqp26', 'no_lang_code', 1, 'https://ror.org/0005rqp26 Netzsch (United States)'),
(30009, 'https://ror.org/0007mw271', 'no_lang_code', 1, 'https://ror.org/0007mw271 Pacific Safety Products (Canada)'),
(30010, 'https://ror.org/000865k88', 'en', 1, 'https://ror.org/000865k88 Lake Macquarie City Council'),
(30011, 'https://ror.org/000896j91', 'no_lang_code', 1, 'https://ror.org/000896j91 Tai Yang Research Company (United States)'),
(30012, 'https://ror.org/000b2tt25', 'en', 1, 'https://ror.org/000b2tt25 Wilburforce Foundation'),
(30013, 'https://ror.org/000cs1t14', 'en', 1, 'https://ror.org/000cs1t14 Harvard NeuroDiscovery Center'),
(30014, 'https://ror.org/000f8rg73', 'hu', 1, 'https://ror.org/000f8rg73 OroshĆ”za VĆ”rosi ƖnkormĆ”nyzat KórhĆ”za'),
(30015, 'https://ror.org/000kjm556', 'en', 1, 'https://ror.org/000kjm556 General Administration of Quality Supervision, Inspection and Quarantine'),
(30016, 'https://ror.org/000nz1091', 'no_lang_code', 1, 'https://ror.org/000nz1091 Modine Manufacturing (United States)'),
(30017, 'https://ror.org/000p6bx44', 'no_lang_code', 1, 'https://ror.org/000p6bx44 Anglo American (Canada)'),
(30018, 'https://ror.org/000v4bn80', 'en', 1, 'https://ror.org/000v4bn80 Crossroads College'),
(30019, 'https://ror.org/000w5kn77', 'en', 1, 'https://ror.org/000w5kn77 Ministry of Environment'),
(30020, 'https://ror.org/000wq3b85', 'no_lang_code', 1, 'https://ror.org/000wq3b85 Iteris (United States)'),
(30021, 'https://ror.org/000x43d10', 'no_lang_code', 1, 'https://ror.org/000x43d10 Cadcamation (Switzerland)'),
(30022, 'https://ror.org/000xe4a49', 'no_lang_code', 1, 'https://ror.org/000xe4a49 Visotek (United States)'),
(30023, 'https://ror.org/000xvke80', 'en', 1, 'https://ror.org/000xvke80 Nanjing Children''s Hospital å—äŗ¬åø‚å„æē«„åŒ»é™¢'),
(30024, 'https://ror.org/000ycm570', 'no_lang_code', 1, 'https://ror.org/000ycm570 Credo Interactive (Canada)'),
(30025, 'https://ror.org/000z6n336', 'no_lang_code', 1, 'https://ror.org/000z6n336 Polartec (United States)'),
(30026, 'https://ror.org/0011c8r66', 'no_lang_code', 1, 'https://ror.org/0011c8r66 CornerTurn (United States)'),
(30027, 'https://ror.org/0012hsk21', 'no_lang_code', 1, 'https://ror.org/0012hsk21 ViGYAN (United States)'),
(30028, 'https://ror.org/0014w1417', 'en', 1, 'https://ror.org/0014w1417 Georgia Sea Grant'),
(30029, 'https://ror.org/0015x1k58', 'en', 1, 'https://ror.org/0015x1k58 National Center for Injury Prevention and Control'),
(30030, 'https://ror.org/00171m316', 'no_lang_code', 1, 'https://ror.org/00171m316 Stellar Science (United States)'),
(30031, 'https://ror.org/0018p0n86', 'en', 1, 'https://ror.org/0018p0n86 Alabama Department of Rehabilitation Services'),
(30032, 'https://ror.org/0018peh15', 'en', 1, 'https://ror.org/0018peh15 Tote Board'),
(30033, 'https://ror.org/0018wtq07', 'no_lang_code', 1, 'https://ror.org/0018wtq07 Diversified Technical Systems (United States)'),
(30034, 'https://ror.org/0019se992', 'no_lang_code', 1, 'https://ror.org/0019se992 Princeton Lightwave (United States)'),
(30035, 'https://ror.org/001abtb92', 'no_lang_code', 1, 'https://ror.org/001abtb92 NeoDynamics (Sweden)'),
(30036, 'https://ror.org/001ader08', 'en', 1, 'https://ror.org/001ader08 Silicon Valley Community Foundation'),
(30037, 'https://ror.org/001b82544', 'no_lang_code', 1, 'https://ror.org/001b82544 Sovar (Canada)'),
(30038, 'https://ror.org/001c1ff51', 'no_lang_code', 1, 'https://ror.org/001c1ff51 Weetabix (Canada)'),
(30039, 'https://ror.org/001c1n781', 'no_lang_code', 1, 'https://ror.org/001c1n781 TƤrnsjƶ Garveri (Sweden)'),
(30040, 'https://ror.org/001c7xr36', 'no_lang_code', 1, 'https://ror.org/001c7xr36 Custom MMIC (United States)'),
(30041, 'https://ror.org/001f9e125', 'en', 1, 'https://ror.org/001f9e125 Jiangsu Academy of Agricultural Sciences ę±Ÿč‹ēœå†œäøšē§‘å­¦é™¢'),
(30042, 'https://ror.org/001htc678', 'en', 1, 'https://ror.org/001htc678 Ravensbourne University London'),
(30043, 'https://ror.org/001jdxs64', 'no_lang_code', 1, 'https://ror.org/001jdxs64 Stuart Olson (Canada)'),
(30044, 'https://ror.org/001k0r742', 'no_lang_code', 1, 'https://ror.org/001k0r742 DigiLens (United States)'),
(30045, 'https://ror.org/001mpn042', 'no_lang_code', 1, 'https://ror.org/001mpn042 Baldor Electric (United States)'),
(30046, 'https://ror.org/001r6dj72', 'en', 1, 'https://ror.org/001r6dj72 Southeastern Bible College'),
(30047, 'https://ror.org/001rfde81', 'no_lang_code', 1, 'https://ror.org/001rfde81 Henan Tianguan Group (China)'),
(30048, 'https://ror.org/001rv3303', 'en', 1, 'https://ror.org/001rv3303 Vermont Center for Independent Living'),
(30049, 'https://ror.org/001tp4w71', 'en', 1, 'https://ror.org/001tp4w71 Crafts Council'),
(30050, 'https://ror.org/001vezc41', 'en', 1, 'https://ror.org/001vezc41 Administration rƩgionale Kativik Kativik Regional Government'),
(30051, 'https://ror.org/001yh3598', 'no_lang_code', 1, 'https://ror.org/001yh3598 Linde (Canada)'),
(30052, 'https://ror.org/001yrmh12', 'en', 1, 'https://ror.org/001yrmh12 Defense Logistics Agency'),
(30053, 'https://ror.org/0020g7t18', 'no_lang_code', 1, 'https://ror.org/0020g7t18 Davidson Technologies (United States)'),
(30054, 'https://ror.org/0021ws843', 'en', 1, 'https://ror.org/0021ws843 Ministry of Community Safety and Correctional Services Ministère de la Sécurité communautaire et des Services correctionnels'),
(30055, 'https://ror.org/0023ydp64', 'en', 1, 'https://ror.org/0023ydp64 Malden Public Schools'),
(30056, 'https://ror.org/0025qh018', 'no_lang_code', 1, 'https://ror.org/0025qh018 Procera Networks (Sweden)'),
(30057, 'https://ror.org/00269y122', 'no_lang_code', 1, 'https://ror.org/00269y122 Serstech (Sweden)'),
(30058, 'https://ror.org/0026h4837', 'en', 1, 'https://ror.org/0026h4837 Nanjing Institute of Vegetable Science'),
(30059, 'https://ror.org/0027t6e72', 'no_lang_code', 1, 'https://ror.org/0027t6e72 G&S Titanium (United States)'),
(30060, 'https://ror.org/0028hgc48', 'en', 1, 'https://ror.org/0028hgc48 Utah Space Grant Consortium'),
(30061, 'https://ror.org/002a8dp29', 'no_lang_code', 1, 'https://ror.org/002a8dp29 Sunol Sciences Corporation (United States)'),
(30062, 'https://ror.org/002av1788', 'no_lang_code', 1, 'https://ror.org/002av1788 Scanscot Technology (Sweden)'),
(30063, 'https://ror.org/002dzmc91', 'no_lang_code', 1, 'https://ror.org/002dzmc91 Almi (Sweden)'),
(30064, 'https://ror.org/002e77370', 'no_lang_code', 1, 'https://ror.org/002e77370 Brainvest (Hungary)'),
(30065, 'https://ror.org/002famp79', 'no_lang_code', 1, 'https://ror.org/002famp79 Türk Telekom (Turkey)'),
(30066, 'https://ror.org/002fqp272', 'en', 1, 'https://ror.org/002fqp272 Hostos Community College'),
(30067, 'https://ror.org/002fy4y97', 'no_lang_code', 1, 'https://ror.org/002fy4y97 Metso (Canada)'),
(30068, 'https://ror.org/002fzqp75', 'en', 1, 'https://ror.org/002fzqp75 University for Peace'),
(30069, 'https://ror.org/002g2cw45', 'no_lang_code', 1, 'https://ror.org/002g2cw45 D2L (Canada)'),
(30070, 'https://ror.org/002g6sj22', 'en', 1, 'https://ror.org/002g6sj22 Bertrand Russell College'),
(30071, 'https://ror.org/002hd9629', 'no_lang_code', 1, 'https://ror.org/002hd9629 Opto-Knowledge Systems (United States)'),
(30072, 'https://ror.org/002jd6n35', 'en', 1, 'https://ror.org/002jd6n35 Gulf of Mexico University Research Collaborative'),
(30073, 'https://ror.org/002kffq59', 'no_lang_code', 1, 'https://ror.org/002kffq59 Evolva (Denmark)'),
(30074, 'https://ror.org/002m0p291', 'en', 1, 'https://ror.org/002m0p291 Beihai People''s Hospital'),
(30075, 'https://ror.org/002n46c33', 'no_lang_code', 1, 'https://ror.org/002n46c33 Olin (Canada)'),
(30076, 'https://ror.org/002qb2q37', 'en', 1, 'https://ror.org/002qb2q37 Hainan Tranquility Hospital'),
(30077, 'https://ror.org/002sgqx17', 'en', 1, 'https://ror.org/002sgqx17 Western Economic Diversification Canada'),
(30078, 'https://ror.org/002sk1760', 'no_lang_code', 1, 'https://ror.org/002sk1760 Hy-Tek Manufacturing Company (United States)'),
(30079, 'https://ror.org/002tqyd59', 'no_lang_code', 1, 'https://ror.org/002tqyd59 Seemann Composites (United States)'),
(30080, 'https://ror.org/002w9k038', 'en', 1, 'https://ror.org/002w9k038 Brooklyn Law School'),
(30081, 'https://ror.org/002xt7430', 'no_lang_code', 1, 'https://ror.org/002xt7430 Cold Cut Systems (Sweden)'),
(30082, 'https://ror.org/002z5ed28', 'en', 1, 'https://ror.org/002z5ed28 Cumulative Environmental Management Association'),
(30083, 'https://ror.org/0031hzx04', 'en', 1, 'https://ror.org/0031hzx04 Florida Agency for Health Care Administration'),
(30084, 'https://ror.org/0031n1577', 'en', 1, 'https://ror.org/0031n1577 Leeds Arts University'),
(30085, 'https://ror.org/003392690', 'en', 1, 'https://ror.org/003392690 Dr. Hasan Sadikin General Hospital'),
(30086, 'https://ror.org/00344m990', 'no_lang_code', 1, 'https://ror.org/00344m990 Chenomx (Canada)'),
(30087, 'https://ror.org/00348tk97', 'no_lang_code', 1, 'https://ror.org/00348tk97 Relko (Slovakia)'),
(30088, 'https://ror.org/0035qd675', 'no_lang_code', 1, 'https://ror.org/0035qd675 BTech Acoustics (United States)'),
(30089, 'https://ror.org/00361m323', 'no_lang_code', 1, 'https://ror.org/00361m323 Micro Delta T (Sweden)'),
(30090, 'https://ror.org/0036fzf58', 'no_lang_code', 1, 'https://ror.org/0036fzf58 Richardson Electronics (United States)'),
(30091, 'https://ror.org/0037zd360', 'no_lang_code', 1, 'https://ror.org/0037zd360 CombiQ (Sweden)'),
(30092, 'https://ror.org/0038bns95', 'no_lang_code', 1, 'https://ror.org/0038bns95 Amsen Technologies (United States)'),
(30093, 'https://ror.org/0038pvp74', 'no_lang_code', 1, 'https://ror.org/0038pvp74 Acoustic Ideas (United States)'),
(30094, 'https://ror.org/003aea848', 'en', 1, 'https://ror.org/003aea848 Columbia Region Healthcare Engineers Association'),
(30095, 'https://ror.org/003b9xn19', 'no_lang_code', 1, 'https://ror.org/003b9xn19 Neptec Design Group (Canada)'),
(30096, 'https://ror.org/003cpqh10', 'en', 1, 'https://ror.org/003cpqh10 State Administration of Traditional Chinese Medicine of the People''s Republic of China å›½å®¶äø­åŒ»čÆē®”ē†å±€'),
(30097, 'https://ror.org/003g4n960', 'no_lang_code', 1, 'https://ror.org/003g4n960 Templeman Automation (United States)'),
(30098, 'https://ror.org/003g6b432', 'en', 1, 'https://ror.org/003g6b432 Bernstein Center for Computational Neuroscience Gƶttingen'),
(30099, 'https://ror.org/003h3w310', 'no_lang_code', 1, 'https://ror.org/003h3w310 TSG Solutions (United States)'),
(30100, 'https://ror.org/003n8re58', 'en', 1, 'https://ror.org/003n8re58 Shanghai Astronomical Observatory äø­å›½ē§‘å­¦é™¢äøŠęµ·å¤©ę–‡å°'),
(30101, 'https://ror.org/003pxap67', 'en', 1, 'https://ror.org/003pxap67 Physiological Society'),
(30102, 'https://ror.org/003qgxx91', 'no_lang_code', 1, 'https://ror.org/003qgxx91 Production Products (United States)'),
(30103, 'https://ror.org/003rdc798', 'en', 1, 'https://ror.org/003rdc798 Baker College'),
(30104, 'https://ror.org/003sbhj60', 'en', 1, 'https://ror.org/003sbhj60 Ceres'),
(30105, 'https://ror.org/003sjbp72', 'no_lang_code', 1, 'https://ror.org/003sjbp72 Waiward Steel (Canada)'),
(30106, 'https://ror.org/003tbr369', 'no_lang_code', 1, 'https://ror.org/003tbr369 Alten (Sweden)'),
(30107, 'https://ror.org/003vejz32', 'en', 1, 'https://ror.org/003vejz32 Flowers Canada Growers'),
(30108, 'https://ror.org/003veqw46', 'no_lang_code', 1, 'https://ror.org/003veqw46 Oil States International (United States)'),
(30109, 'https://ror.org/003wq4h14', 'en', 1, 'https://ror.org/003wq4h14 Gansu Province Computing Center'),
(30110, 'https://ror.org/003x4qs37', 'en', 1, 'https://ror.org/003x4qs37 St. Lawrence Seaway Management'),
(30111, 'https://ror.org/003zm6h82', 'no_lang_code', 1, 'https://ror.org/003zm6h82 TransTech Systems (United States)'),
(30112, 'https://ror.org/0040z7z59', 'no_lang_code', 1, 'https://ror.org/0040z7z59 M Corp (United States)'),
(30113, 'https://ror.org/0041dx816', 'no_lang_code', 1, 'https://ror.org/0041dx816 Vutch-Chemitex (Slovakia)'),
(30114, 'https://ror.org/0043qk943', 'en', 1, 'https://ror.org/0043qk943 A-R Editions'),
(30115, 'https://ror.org/00450rp60', 'no_lang_code', 1, 'https://ror.org/00450rp60 Federal Fabrics Fibers (United States)'),
(30116, 'https://ror.org/0045x2741', 'en', 1, 'https://ror.org/0045x2741 Agency for Toxic Substances and Disease Registry'),
(30117, 'https://ror.org/0046kpv26', 'en', 1, 'https://ror.org/0046kpv26 World Institute on Disability'),
(30118, 'https://ror.org/0046r4y62', 'no_lang_code', 1, 'https://ror.org/0046r4y62 Complete Genomics (United States)'),
(30119, 'https://ror.org/0046st885', 'no_lang_code', 1, 'https://ror.org/0046st885 Ortelio (United Kingdom)'),
(30120, 'https://ror.org/004735h66', 'en', 1, 'https://ror.org/004735h66 Hydrogen Link Denmark Association'),
(30121, 'https://ror.org/004868y83', 'no_lang_code', 1, 'https://ror.org/004868y83 PolymerPlus (United States)'),
(30122, 'https://ror.org/0048a4976', 'en', 1, 'https://ror.org/0048a4976 Shanghai Eye Disease Prevention & Treatment Center'),
(30123, 'https://ror.org/004a9b380', 'no_lang_code', 1, 'https://ror.org/004a9b380 SdPhotonics (United States)'),
(30124, 'https://ror.org/004b0n253', 'no_lang_code', 1, 'https://ror.org/004b0n253 Applied Optimization (United States)'),
(30125, 'https://ror.org/004bdz679', 'en', 1, 'https://ror.org/004bdz679 Ministry of Health'),
(30126, 'https://ror.org/004cdt922', 'no_lang_code', 1, 'https://ror.org/004cdt922 Illinois Tool Works (United States)'),
(30127, 'https://ror.org/004eknx63', 'en', 1, 'https://ror.org/004eknx63 Third Hospital of Hebei Medical University'),
(30128, 'https://ror.org/004g82f36', 'no_lang_code', 1, 'https://ror.org/004g82f36 Kleijnen Systematic Reviews (United Kingdom)'),
(30129, 'https://ror.org/004ktdh03', 'no_lang_code', 1, 'https://ror.org/004ktdh03 Acree Technologies (United States)'),
(30130, 'https://ror.org/004kz1j51', 'no_lang_code', 1, 'https://ror.org/004kz1j51 Ross-Hime Designs (United States)'),
(30131, 'https://ror.org/004p56m59', 'en', 1, 'https://ror.org/004p56m59 Center for Health Care Strategies'),
(30132, 'https://ror.org/004qfqh71', 'en', 1, 'https://ror.org/004qfqh71 National Museum'),
(30133, 'https://ror.org/004qxz190', 'en', 1, 'https://ror.org/004qxz190 Fondation ontarienne de neurotraumatologie Ontario Neurotrauma Foundation'),
(30134, 'https://ror.org/004r22g79', 'en', 1, 'https://ror.org/004r22g79 Orangutan Conservancy'),
(30135, 'https://ror.org/004sfzf96', 'no_lang_code', 1, 'https://ror.org/004sfzf96 Solus (United States)'),
(30136, 'https://ror.org/004tts638', 'no_lang_code', 1, 'https://ror.org/004tts638 Aegisound (United States)'),
(30137, 'https://ror.org/004tze884', 'en', 1, 'https://ror.org/004tze884 Institute of Natural Science ė¦¬ź³¼ėŒ€ķ•™'),
(30138, 'https://ror.org/004vpqq08', 'no_lang_code', 1, 'https://ror.org/004vpqq08 Princeton Microwave Technology (United States)'),
(30139, 'https://ror.org/004wfw106', 'no_lang_code', 1, 'https://ror.org/004wfw106 AllCell (United States)'),
(30140, 'https://ror.org/004whvh21', 'no_lang_code', 1, 'https://ror.org/004whvh21 Applied Bio-nomics (Canada)'),
(30141, 'https://ror.org/004znts92', 'no_lang_code', 1, 'https://ror.org/004znts92 Tomologic (Sweden)'),
(30142, 'https://ror.org/0050hxg48', 'en', 1, 'https://ror.org/0050hxg48 Hungarian Sociological Association'),
(30143, 'https://ror.org/0052cdv44', 'no_lang_code', 1, 'https://ror.org/0052cdv44 RÔció Kiadói (Hungary)'),
(30144, 'https://ror.org/0052kfx70', 'no_lang_code', 1, 'https://ror.org/0052kfx70 KMT Hepatech (Canada)'),
(30145, 'https://ror.org/0052sz171', 'no_lang_code', 1, 'https://ror.org/0052sz171 Enhanced Vision (United States)'),
(30146, 'https://ror.org/0053xaw54', 'en', 1, 'https://ror.org/0053xaw54 Cluster für kardiovaskuläre Forschung Ludwig Boltzmann Cluster for Cardiovascular Research'),
(30147, 'https://ror.org/005570a84', 'no_lang_code', 1, 'https://ror.org/005570a84 DakotaLink (United States)'),
(30148, 'https://ror.org/0055k7a87', 'en', 1, 'https://ror.org/0055k7a87 New Energy and Industrial Technology Development Organization ę–°ć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ»ē”£ę„­ęŠ€č”“ē·åˆé–‹ē™ŗę©Ÿę§‹'),
(30149, 'https://ror.org/0056bph73', 'no_lang_code', 1, 'https://ror.org/0056bph73 Professional Analysis (United States)'),
(30150, 'https://ror.org/0056qvz32', 'no_lang_code', 1, 'https://ror.org/0056qvz32 Vision Engineering (Italy)'),
(30151, 'https://ror.org/0056wjq13', 'en', 1, 'https://ror.org/0056wjq13 Stone Lantern Films'),
(30152, 'https://ror.org/0056xt122', 'no_lang_code', 1, 'https://ror.org/0056xt122 Decision Sciences International Corporation (United States)'),
(30153, 'https://ror.org/00579ee64', 'no_lang_code', 1, 'https://ror.org/00579ee64 SkySight Technologies (United States)'),
(30154, 'https://ror.org/0058p7h33', 'no_lang_code', 1, 'https://ror.org/0058p7h33 MassMutual Financial Group (United States)'),
(30155, 'https://ror.org/005brkn65', 'no_lang_code', 1, 'https://ror.org/005brkn65 Silicon Power Corporation (United States)'),
(30156, 'https://ror.org/005cgd502', 'no_lang_code', 1, 'https://ror.org/005cgd502 Digital Authentication Technologies (United States)'),
(30157, 'https://ror.org/005ehq652', 'no_lang_code', 1, 'https://ror.org/005ehq652 GBL Systems Corporation (United States)'),
(30158, 'https://ror.org/005gfkp44', 'no_lang_code', 1, 'https://ror.org/005gfkp44 Denison Mines (Canada)'),
(30159, 'https://ror.org/005gjjf63', 'en', 1, 'https://ror.org/005gjjf63 National Psoriasis Foundation'),
(30160, 'https://ror.org/005h28707', 'no_lang_code', 1, 'https://ror.org/005h28707 Versar (United States)'),
(30161, 'https://ror.org/005p6bw54', 'en', 1, 'https://ror.org/005p6bw54 Albertina'),
(30162, 'https://ror.org/005qng483', 'no_lang_code', 1, 'https://ror.org/005qng483 Decision Dynamics (United States)'),
(30163, 'https://ror.org/005r3tp02', 'en', 1, 'https://ror.org/005r3tp02 South African National Biodiversity Institute'),
(30164, 'https://ror.org/005rhrm66', 'en', 1, 'https://ror.org/005rhrm66 Australian Renewable Energy Agency'),
(30165, 'https://ror.org/005rnxx75', 'en', 1, 'https://ror.org/005rnxx75 Swedish Medtech'),
(30166, 'https://ror.org/005rt3g54', 'fi', 1, 'https://ror.org/005rt3g54 Emil Aaltosen SƤƤtiƶ'),
(30167, 'https://ror.org/005t59805', 'no_lang_code', 1, 'https://ror.org/005t59805 First RF (United States)'),
(30168, 'https://ror.org/005t93q82', 'no_lang_code', 1, 'https://ror.org/005t93q82 Findwise (Sweden)'),
(30169, 'https://ror.org/005z7vs15', 'en', 1, 'https://ror.org/005z7vs15 First Affiliated Hospital of Sichuan Medical University'),
(30170, 'https://ror.org/0060v6x94', 'no_lang_code', 1, 'https://ror.org/0060v6x94 Nanexa (Sweden)'),
(30171, 'https://ror.org/0061brs54', 'no_lang_code', 1, 'https://ror.org/0061brs54 Escape Communications (United States)'),
(30172, 'https://ror.org/0064b6s04', 'no_lang_code', 1, 'https://ror.org/0064b6s04 Qnergy (United States)'),
(30173, 'https://ror.org/0066jxm83', 'en', 1, 'https://ror.org/0066jxm83 Albion Centre'),
(30174, 'https://ror.org/0068xq694', 'en', 1, 'https://ror.org/0068xq694 Hospital of Southern Norway'),
(30175, 'https://ror.org/00691gs61', 'en', 1, 'https://ror.org/00691gs61 Institute for Research and Development'),
(30176, 'https://ror.org/0069sam62', 'en', 1, 'https://ror.org/0069sam62 Kalahari Meerkat Project'),
(30177, 'https://ror.org/006arvw77', 'en', 1, 'https://ror.org/006arvw77 Landseed Hospital'),
(30178, 'https://ror.org/006bvpc76', 'no_lang_code', 1, 'https://ror.org/006bvpc76 Terahertz Technology Solutions (Canada)'),
(30179, 'https://ror.org/006cpk585', 'no_lang_code', 1, 'https://ror.org/006cpk585 Jarden (United States)'),
(30180, 'https://ror.org/006cta510', 'no_lang_code', 1, 'https://ror.org/006cta510 CELIM'),
(30181, 'https://ror.org/006dn3r34', 'en', 1, 'https://ror.org/006dn3r34 American Foundation for Pharmaceutical Education'),
(30182, 'https://ror.org/006ejj273', 'no_lang_code', 1, 'https://ror.org/006ejj273 Parallax Research (United States)'),
(30183, 'https://ror.org/006h41552', 'no_lang_code', 1, 'https://ror.org/006h41552 Appear Networks (Sweden)'),
(30184, 'https://ror.org/006j36p28', 'es', 1, 'https://ror.org/006j36p28 Comisión Interministerial de Ciencia y Tecnología'),
(30185, 'https://ror.org/006kyfp82', 'hu', 1, 'https://ror.org/006kyfp82 Deri Muzeum'),
(30186, 'https://ror.org/006ndaj41', 'en', 1, 'https://ror.org/006ndaj41 Planetary Data System'),
(30187, 'https://ror.org/006qwnw28', 'en', 1, 'https://ror.org/006qwnw28 Hawaii Invasive Species Council'),
(30188, 'https://ror.org/006ss0h52', 'en', 1, 'https://ror.org/006ss0h52 Oak Foundation'),
(30189, 'https://ror.org/006tfee03', 'no_lang_code', 1, 'https://ror.org/006tfee03 Evisive (United States)'),
(30190, 'https://ror.org/006w9n065', 'en', 1, 'https://ror.org/006w9n065 Mercer County Mosquito Control'),
(30191, 'https://ror.org/006xt8f23', 'no_lang_code', 1, 'https://ror.org/006xt8f23 Technical Directions Incorporation (United States)'),
(30192, 'https://ror.org/006xy9v19', 'no_lang_code', 1, 'https://ror.org/006xy9v19 SM&A (United States)'),
(30193, 'https://ror.org/006z2nm40', 'no_lang_code', 1, 'https://ror.org/006z2nm40 Newport (United States)'),
(30194, 'https://ror.org/0071xq104', 'no_lang_code', 1, 'https://ror.org/0071xq104 Advanced Biomass R&D Center (South Korea)'),
(30195, 'https://ror.org/0075y4q70', 'en', 1, 'https://ror.org/0075y4q70 361 Interactive'),
(30196, 'https://ror.org/007735r88', 'en', 1, 'https://ror.org/007735r88 Arlington Baptist College'),
(30197, 'https://ror.org/007736j10', 'en', 1, 'https://ror.org/007736j10 Mitchell College'),
(30198, 'https://ror.org/007737841', 'no_lang_code', 1, 'https://ror.org/007737841 PDF Solutions (United States)'),
(30199, 'https://ror.org/007anfg84', 'no_lang_code', 1, 'https://ror.org/007anfg84 GS Engineering (United States)'),
(30200, 'https://ror.org/007b0pc67', 'no_lang_code', 1, 'https://ror.org/007b0pc67 Gooch & Housego (Greece)'),
(30201, 'https://ror.org/007b74r43', 'en', 1, 'https://ror.org/007b74r43 Ludwig Boltzmann Institute for Retinology and Biomicroscopic Laser Surgery'),
(30202, 'https://ror.org/007c5ag63', 'no_lang_code', 1, 'https://ror.org/007c5ag63 Star Technology and Research (United States)'),
(30203, 'https://ror.org/007e0tk18', 'no_lang_code', 1, 'https://ror.org/007e0tk18 AOSense (United States)'),
(30204, 'https://ror.org/007fycn42', 'en', 1, 'https://ror.org/007fycn42 Walkerton Clean Water Centre'),
(30205, 'https://ror.org/007hq6h29', 'en', 1, 'https://ror.org/007hq6h29 Quebec Intensive Silviculture Network RƩseau Ligniculture QuƩbec'),
(30206, 'https://ror.org/007hqhx04', 'en', 1, 'https://ror.org/007hqhx04 New Saint Andrews College'),
(30207, 'https://ror.org/007j0dg36', 'no_lang_code', 1, 'https://ror.org/007j0dg36 Baker Engineering and Risk Consultants (United States)'),
(30208, 'https://ror.org/007jev255', 'no_lang_code', 1, 'https://ror.org/007jev255 Future-Shape (Germany)'),
(30209, 'https://ror.org/007jk3r28', 'no_lang_code', 1, 'https://ror.org/007jk3r28 Presteve Foods (Canada)'),
(30210, 'https://ror.org/007kcsb16', 'no_lang_code', 1, 'https://ror.org/007kcsb16 Hultsteins (Sweden)'),
(30211, 'https://ror.org/007kwc354', 'no_lang_code', 1, 'https://ror.org/007kwc354 VUIS - CESTY (Slovakia)'),
(30212, 'https://ror.org/007nh3f56', 'no_lang_code', 1, 'https://ror.org/007nh3f56 East West Enterprises (United States)'),
(30213, 'https://ror.org/007pgtp80', 'pt', 1, 'https://ror.org/007pgtp80 Fundação Cearense de Apoio ao Desenvolvimento Científico e Tecnológico'),
(30214, 'https://ror.org/007qd1t98', 'en', 1, 'https://ror.org/007qd1t98 Instituto Federal de Educação, Ciência e Tecnologia do Rio de Janeiro Rio de Janeiro Federal Institute of Education, Science and Technology'),
(30215, 'https://ror.org/007s7bj48', 'no_lang_code', 1, 'https://ror.org/007s7bj48 ADA-ES (United States)'),
(30216, 'https://ror.org/007vkx321', 'en', 1, 'https://ror.org/007vkx321 Energy Industries of Ohio'),
(30217, 'https://ror.org/007xevs95', 'no_lang_code', 1, 'https://ror.org/007xevs95 Metalite Industries (United States)'),
(30218, 'https://ror.org/00804ej42', 'no_lang_code', 1, 'https://ror.org/00804ej42 Chockie Group International (United States)'),
(30219, 'https://ror.org/0080e5892', 'en', 1, 'https://ror.org/0080e5892 Centro Oncologico Veterinario Veterinary Oncological Center'),
(30220, 'https://ror.org/00821cz13', 'en', 1, 'https://ror.org/00821cz13 Batten Disease Support and Research Association'),
(30221, 'https://ror.org/00825gt63', 'pt', 1, 'https://ror.org/00825gt63 Quadro de Referência Estratégico Nacional'),
(30222, 'https://ror.org/00831g358', 'no_lang_code', 1, 'https://ror.org/00831g358 Stirling Dynamics (United States)'),
(30223, 'https://ror.org/00835s883', 'no_lang_code', 1, 'https://ror.org/00835s883 Ionautics (Sweden)'),
(30224, 'https://ror.org/0085gp855', 'no_lang_code', 1, 'https://ror.org/0085gp855 SEZ Krompachy (Slovakia)'),
(30225, 'https://ror.org/008952r45', 'no_lang_code', 1, 'https://ror.org/008952r45 Excellatron (United States)'),
(30226, 'https://ror.org/008a9hf75', 'en', 1, 'https://ror.org/008a9hf75 City University of Seattle'),
(30227, 'https://ror.org/008aaf926', 'en', 1, 'https://ror.org/008aaf926 Diabetes Australia'),
(30228, 'https://ror.org/008bs5r20', 'en', 1, 'https://ror.org/008bs5r20 Fisher Center for Alzheimer''s Research Foundation'),
(30229, 'https://ror.org/008c12b21', 'no_lang_code', 1, 'https://ror.org/008c12b21 Communications & Power Industries (United States)'),
(30230, 'https://ror.org/008dxar67', 'no_lang_code', 1, 'https://ror.org/008dxar67 Scint-X (Sweden)'),
(30231, 'https://ror.org/008g2yb06', 'no_lang_code', 1, 'https://ror.org/008g2yb06 Opus Technologies (United States)'),
(30232, 'https://ror.org/008nkqk13', 'en', 1, 'https://ror.org/008nkqk13 Ministry of Trade, Industry and Energy ėŒ€ķ•œėÆ¼źµ­ ģ‚°ģ—…ķ†µģƒģžģ›ė¶€'),
(30233, 'https://ror.org/008q5qf73', 'en', 1, 'https://ror.org/008q5qf73 Edison Welding Institute'),
(30234, 'https://ror.org/008qp6e21', 'en', 1, 'https://ror.org/008qp6e21 Rehabilitation Research and Development Service'),
(30235, 'https://ror.org/008s0t457', 'no_lang_code', 1, 'https://ror.org/008s0t457 Nokia (Canada)'),
(30236, 'https://ror.org/008vgd385', 'en', 1, 'https://ror.org/008vgd385 International Association for Dental Research'),
(30237, 'https://ror.org/008yned87', 'en', 1, 'https://ror.org/008yned87 National Farmers Union'),
(30238, 'https://ror.org/008za0b72', 'nl', 1, 'https://ror.org/008za0b72 Openbare Scholengemeenschap De Hogeberg'),
(30239, 'https://ror.org/0091y3468', 'no_lang_code', 1, 'https://ror.org/0091y3468 Photon-X (United States)'),
(30240, 'https://ror.org/0092sq867', 'no_lang_code', 1, 'https://ror.org/0092sq867 MAHLE Filter Systems (Canada)'),
(30241, 'https://ror.org/0094tm228', 'en', 1, 'https://ror.org/0094tm228 Wellcome Centre for Cell-Matrix Research'),
(30242, 'https://ror.org/0095xwr23', 'en', 1, 'https://ror.org/0095xwr23 Max Planck Institute of Microstructure Physics Max-Planck-Institut für Mikrostrukturphysik'),
(30243, 'https://ror.org/0095xxn33', 'no_lang_code', 1, 'https://ror.org/0095xxn33 SEPS Technologies (Sweden)'),
(30244, 'https://ror.org/0099f7q64', 'no_lang_code', 1, 'https://ror.org/0099f7q64 Phillips 66 (United States)'),
(30245, 'https://ror.org/009axkg17', 'en', 1, 'https://ror.org/009axkg17 Indian Council of Social Science Research'),
(30246, 'https://ror.org/009bwq091', 'no_lang_code', 1, 'https://ror.org/009bwq091 Sunrez (United States)'),
(30247, 'https://ror.org/009fatj68', 'en', 1, 'https://ror.org/009fatj68 Riga High Tech University'),
(30248, 'https://ror.org/009fhna20', 'en', 1, 'https://ror.org/009fhna20 British Columbia Dairy Association'),
(30249, 'https://ror.org/009kb1442', 'no_lang_code', 1, 'https://ror.org/009kb1442 Radyne (United States)'),
(30250, 'https://ror.org/009r6as98', 'no_lang_code', 1, 'https://ror.org/009r6as98 Technology Applications (United States)'),
(30251, 'https://ror.org/009rps409', 'no_lang_code', 1, 'https://ror.org/009rps409 CBRITE (United States)'),
(30252, 'https://ror.org/009rw8n36', 'en', 1, 'https://ror.org/009rw8n36 Institute of Microelectronics'),
(30253, 'https://ror.org/009tdmt49', 'no_lang_code', 1, 'https://ror.org/009tdmt49 Hoa''s Tool Shop (Sweden)'),
(30254, 'https://ror.org/009va1d27', 'no_lang_code', 1, 'https://ror.org/009va1d27 ADMA Products (United States)'),
(30255, 'https://ror.org/009xj7f03', 'en', 1, 'https://ror.org/009xj7f03 Oneida Indian Nation'),
(30256, 'https://ror.org/009yq5939', 'no_lang_code', 1, 'https://ror.org/009yq5939 Energent (United States)'),
(30257, 'https://ror.org/009yzbm74', 'en', 1, 'https://ror.org/009yzbm74 Office of Gas and Electricity Markets'),
(30258, 'https://ror.org/00a3n8178', 'no_lang_code', 1, 'https://ror.org/00a3n8178 System Planning Corporation (United States)'),
(30259, 'https://ror.org/00a3trs85', 'no_lang_code', 1, 'https://ror.org/00a3trs85 Kunskapsbolaget (Sweden)'),
(30260, 'https://ror.org/00a4h2c62', 'en', 1, 'https://ror.org/00a4h2c62 Rippl-Rónai Museum'),
(30261, 'https://ror.org/00a4ryj05', 'no_lang_code', 1, 'https://ror.org/00a4ryj05 UIL Holdings (United States)'),
(30262, 'https://ror.org/00a65gg79', 'no_lang_code', 1, 'https://ror.org/00a65gg79 Advanced Conductor Technologies (United States)'),
(30263, 'https://ror.org/00a83t181', 'no_lang_code', 1, 'https://ror.org/00a83t181 BioForest Technologies (Canada)'),
(30264, 'https://ror.org/00ab43a31', 'no_lang_code', 1, 'https://ror.org/00ab43a31 Optronic (Sweden)'),
(30265, 'https://ror.org/00ad2fh66', 'no_lang_code', 1, 'https://ror.org/00ad2fh66 Dental Rat (United States)'),
(30266, 'https://ror.org/00afrj253', 'en', 1, 'https://ror.org/00afrj253 International Telecommunication Union'),
(30267, 'https://ror.org/00agf0486', 'no_lang_code', 1, 'https://ror.org/00agf0486 Concorde Battery (United States)'),
(30268, 'https://ror.org/00agy5a68', 'it', 1, 'https://ror.org/00agy5a68 Fondazione Cassa Risparmio Perugia'),
(30269, 'https://ror.org/00ampbq92', 'en', 1, 'https://ror.org/00ampbq92 Guysborough County Inshore Fishermen''s Association'),
(30270, 'https://ror.org/00anzjr50', 'en', 1, 'https://ror.org/00anzjr50 Ɩrebro Municipality'),
(30271, 'https://ror.org/00apfvn95', 'no_lang_code', 1, 'https://ror.org/00apfvn95 Mathematical Systems & Solutions (United States)'),
(30272, 'https://ror.org/00aqt9352', 'en', 1, 'https://ror.org/00aqt9352 Turkish Academy of Sciences'),
(30273, 'https://ror.org/00aw7vf84', 'it', 1, 'https://ror.org/00aw7vf84 Fondazione Crui'),
(30274, 'https://ror.org/00awy7q97', 'en', 1, 'https://ror.org/00awy7q97 Swedish Institute of International Affairs'),
(30275, 'https://ror.org/00axxrg60', 'no_lang_code', 1, 'https://ror.org/00axxrg60 Star Microwave (United States)'),
(30276, 'https://ror.org/00ay9je56', 'no_lang_code', 1, 'https://ror.org/00ay9je56 Aeroprobe (United States)'),
(30277, 'https://ror.org/00az0wf23', 'no_lang_code', 1, 'https://ror.org/00az0wf23 Integrity Applications Incorporated (United States)'),
(30278, 'https://ror.org/00az5dt38', 'en', 1, 'https://ror.org/00az5dt38 Carnegie Mellon University Qatar'),
(30279, 'https://ror.org/00azj3a07', 'en', 1, 'https://ror.org/00azj3a07 Ministry of Security and Public Administration'),
(30280, 'https://ror.org/00b2em573', 'no_lang_code', 1, 'https://ror.org/00b2em573 Assett (United States)'),
(30281, 'https://ror.org/00b44sj21', 'en', 1, 'https://ror.org/00b44sj21 Dean College'),
(30282, 'https://ror.org/00b4mz884', 'no_lang_code', 1, 'https://ror.org/00b4mz884 Sensors (United States)'),
(30283, 'https://ror.org/00b510j51', 'no_lang_code', 1, 'https://ror.org/00b510j51 Sierra Lobo (United States)'),
(30284, 'https://ror.org/00b60bj84', 'no_lang_code', 1, 'https://ror.org/00b60bj84 Borregaard (Norway)'),
(30285, 'https://ror.org/00b6h1f45', 'no_lang_code', 1, 'https://ror.org/00b6h1f45 Commonwealth Computer Research (United States)'),
(30286, 'https://ror.org/00bame609', 'en', 1, 'https://ror.org/00bame609 Integrative Neuroscience Initiative on Alcoholism'),
(30287, 'https://ror.org/00bchtj94', 'en', 1, 'https://ror.org/00bchtj94 B. J. Medical College & Sassoon Hospital'),
(30288, 'https://ror.org/00bd4cb30', 'en', 1, 'https://ror.org/00bd4cb30 Appalachian School of Law'),
(30289, 'https://ror.org/00bdga736', 'no_lang_code', 1, 'https://ror.org/00bdga736 ImmunoGenes (Hungary)'),
(30290, 'https://ror.org/00be47m52', 'no_lang_code', 1, 'https://ror.org/00be47m52 Perimed (Sweden)'),
(30291, 'https://ror.org/00bgn4761', 'no_lang_code', 1, 'https://ror.org/00bgn4761 MW Canada (Canada)'),
(30292, 'https://ror.org/00bhae667', 'no_lang_code', 1, 'https://ror.org/00bhae667 Aluminerie Alouette (Canada)'),
(30293, 'https://ror.org/00bhnj053', 'en', 1, 'https://ror.org/00bhnj053 Felix Thornley Cobbold Agricultural Trust'),
(30294, 'https://ror.org/00bn9mm21', 'no_lang_code', 1, 'https://ror.org/00bn9mm21 Publit (Sweden)'),
(30295, 'https://ror.org/00bngcf58', 'no_lang_code', 1, 'https://ror.org/00bngcf58 Trident Research (United States)'),
(30296, 'https://ror.org/00bscyw28', 'en', 1, 'https://ror.org/00bscyw28 International Bureau of Fiscal Documentation'),
(30297, 'https://ror.org/00bw19968', 'en', 1, 'https://ror.org/00bw19968 Molly Brown House Museum'),
(30298, 'https://ror.org/00bwwrk44', 'en', 1, 'https://ror.org/00bwwrk44 Royal Pharmaceutical Society'),
(30299, 'https://ror.org/00bx7wr94', 'sk', 1, 'https://ror.org/00bx7wr94 ZÔkladnÔ umeleckÔ Ŕkola Jozefa Rosinského'),
(30300, 'https://ror.org/00byz6s18', 'fr', 1, 'https://ror.org/00byz6s18 Geneva League Against Cancer Ligue Genevoise Contre le Cancer'),
(30301, 'https://ror.org/00c0exh17', 'no_lang_code', 1, 'https://ror.org/00c0exh17 Enova (United States)'),
(30302, 'https://ror.org/00c10fm85', 'no_lang_code', 1, 'https://ror.org/00c10fm85 Wedgestone Press (United States)'),
(30303, 'https://ror.org/00c19d043', 'no_lang_code', 1, 'https://ror.org/00c19d043 Foro Energy (United States)'),
(30304, 'https://ror.org/00c1q0x03', 'en', 1, 'https://ror.org/00c1q0x03 Teikyo University of Japan in Durham'),
(30305, 'https://ror.org/00c4zhw53', 'en', 1, 'https://ror.org/00c4zhw53 Open Group'),
(30306, 'https://ror.org/00c5zkt18', 'no_lang_code', 1, 'https://ror.org/00c5zkt18 D&P (United States)'),
(30307, 'https://ror.org/00c6qf472', 'pt', 1, 'https://ror.org/00c6qf472 Instituto Infnet'),
(30308, 'https://ror.org/00c7wdg54', 'en', 1, 'https://ror.org/00c7wdg54 International Centre for Applied Research and Sustainable Technology'),
(30309, 'https://ror.org/00c9pzm73', 'en', 1, 'https://ror.org/00c9pzm73 Easterseals'),
(30310, 'https://ror.org/00c9zyz36', 'no_lang_code', 1, 'https://ror.org/00c9zyz36 Hive Streaming (Sweden)'),
(30311, 'https://ror.org/00cafxy65', 'en', 1, 'https://ror.org/00cafxy65 University of Missouri Women''s and Children''s Hospital'),
(30312, 'https://ror.org/00chnhh80', 'en', 1, 'https://ror.org/00chnhh80 Carbon Management Canada'),
(30313, 'https://ror.org/00cjeg736', 'en', 1, 'https://ror.org/00cjeg736 Birmingham and Solihull Mental Health NHS Foundation Trust'),
(30314, 'https://ror.org/00cjrc276', 'fr', 1, 'https://ror.org/00cjrc276 Mitacs'),
(30315, 'https://ror.org/00ckb9008', 'en', 1, 'https://ror.org/00ckb9008 Heze Medical College'),
(30316, 'https://ror.org/00ckp1t80', 'no_lang_code', 1, 'https://ror.org/00ckp1t80 F. A. Hayek Foundation'),
(30317, 'https://ror.org/00cmjga69', 'en', 1, 'https://ror.org/00cmjga69 Clearwater Christian College'),
(30318, 'https://ror.org/00cnb1p42', 'no_lang_code', 1, 'https://ror.org/00cnb1p42 Ocean Acoustical Services and Instrumentation Systems (United States)'),
(30319, 'https://ror.org/00cpm4162', 'no_lang_code', 1, 'https://ror.org/00cpm4162 Ascent Technology (United States)'),
(30320, 'https://ror.org/00cpqht96', 'no_lang_code', 1, 'https://ror.org/00cpqht96 Bencar (Sweden)'),
(30321, 'https://ror.org/00cqb7125', 'no_lang_code', 1, 'https://ror.org/00cqb7125 CM Labs Simulations (Canada)'),
(30322, 'https://ror.org/00cxa0895', 'no_lang_code', 1, 'https://ror.org/00cxa0895 InterDigital (Canada)'),
(30323, 'https://ror.org/00cxc2y95', 'en', 1, 'https://ror.org/00cxc2y95 Klingenstein Third Generation Foundation'),
(30324, 'https://ror.org/00cz5rb58', 'no_lang_code', 1, 'https://ror.org/00cz5rb58 Salutron (United States)'),
(30325, 'https://ror.org/00d1b1c41', 'it', 1, 'https://ror.org/00d1b1c41 Compagnia di San Paolo'),
(30326, 'https://ror.org/00d27f502', 'en', 1, 'https://ror.org/00d27f502 McPherson College'),
(30327, 'https://ror.org/00dbz8197', 'no_lang_code', 1, 'https://ror.org/00dbz8197 Teratech Components (United Kingdom)'),
(30328, 'https://ror.org/00dds9q45', 'en', 1, 'https://ror.org/00dds9q45 Maine College of Art'),
(30329, 'https://ror.org/00djgx116', 'no_lang_code', 1, 'https://ror.org/00djgx116 Eurostep (Sweden)'),
(30330, 'https://ror.org/00dkdd931', 'no_lang_code', 1, 'https://ror.org/00dkdd931 Quantum Group (United States)'),
(30331, 'https://ror.org/00dkye506', 'de', 1, 'https://ror.org/00dkye506 Boehringer Ingelheim Fonds, Stiftung für Medizinische Grundlagenforschung'),
(30332, 'https://ror.org/00dmrtz93', 'no_lang_code', 1, 'https://ror.org/00dmrtz93 AdValue Photonics (United States)'),
(30333, 'https://ror.org/00dpgqt54', 'en', 1, 'https://ror.org/00dpgqt54 Mianyang Third People''s Hospital'),
(30334, 'https://ror.org/00dpq7q77', 'en', 1, 'https://ror.org/00dpq7q77 Alcohol Research UK'),
(30335, 'https://ror.org/00dpszj83', 'hu', 1, 'https://ror.org/00dpszj83 Magyar NyelvtudomƔnyi TƔrsasƔgot Society of Hungarian Linguistics'),
(30336, 'https://ror.org/00dqs9848', 'no_lang_code', 1, 'https://ror.org/00dqs9848 Sensor Development (United States)'),
(30337, 'https://ror.org/00dqyqs74', 'en', 1, 'https://ror.org/00dqyqs74 California Foundation for Independent Living Centers'),
(30338, 'https://ror.org/00dtxmk25', 'en', 1, 'https://ror.org/00dtxmk25 Colorado Springs Fine Arts Center'),
(30339, 'https://ror.org/00dwh5a52', 'no_lang_code', 1, 'https://ror.org/00dwh5a52 CellaVision (Sweden)'),
(30340, 'https://ror.org/00dxczh48', 'en', 1, 'https://ror.org/00dxczh48 John D. and Catherine T. MacArthur Foundation'),
(30341, 'https://ror.org/00dyskt91', 'no_lang_code', 1, 'https://ror.org/00dyskt91 Sheetak (United States)'),
(30342, 'https://ror.org/00dz87637', 'no_lang_code', 1, 'https://ror.org/00dz87637 Nexterra (Canada)'),
(30343, 'https://ror.org/00dzbg839', 'en', 1, 'https://ror.org/00dzbg839 Royal Astronomical Society'),
(30344, 'https://ror.org/00dztkz65', 'en', 1, 'https://ror.org/00dztkz65 Graduate School Experimental Plant Sciences'),
(30345, 'https://ror.org/00e0w3260', 'en', 1, 'https://ror.org/00e0w3260 Arcus Foundation'),
(30346, 'https://ror.org/00e2yw845', 'no_lang_code', 1, 'https://ror.org/00e2yw845 Archaeolingua Foundation'),
(30347, 'https://ror.org/00e3mqz93', 'en', 1, 'https://ror.org/00e3mqz93 VƵro Institute'),
(30348, 'https://ror.org/00e4bwe12', 'en', 1, 'https://ror.org/00e4bwe12 Max Planck Institute for Extraterrestrial Physics Max-Planck-Institut für Extraterrestrische Physik'),
(30349, 'https://ror.org/00e5h6e42', 'no_lang_code', 1, 'https://ror.org/00e5h6e42 1366 Technologies (United States)'),
(30350, 'https://ror.org/00e6nys21', 'en', 1, 'https://ror.org/00e6nys21 Government of Romania'),
(30351, 'https://ror.org/00eb4p978', 'no_lang_code', 1, 'https://ror.org/00eb4p978 Adiabatics (United States)'),
(30352, 'https://ror.org/00ed7qw32', 'en', 1, 'https://ror.org/00ed7qw32 Western Michigan University Cooley Law School'),
(30353, 'https://ror.org/00efjh764', 'no_lang_code', 1, 'https://ror.org/00efjh764 Kyma Technologies (United States)'),
(30354, 'https://ror.org/00ejeex29', 'en', 1, 'https://ror.org/00ejeex29 Institute of Physical-Chemical and Biological Problems in Soil Science Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физико-химических Šø биологических проблем ŠæŠ¾Ń‡Š²Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(30355, 'https://ror.org/00ejq3005', 'en', 1, 'https://ror.org/00ejq3005 Foyle Foundation'),
(30356, 'https://ror.org/00ekapt69', 'no_lang_code', 1, 'https://ror.org/00ekapt69 Mƶbelriket (Swedenā€Ž)'),
(30357, 'https://ror.org/00emnts94', 'en', 1, 'https://ror.org/00emnts94 Bavarian Research Foundation Bayerische Forschungsstiftung');
INSERT INTO `rors` VALUES
(30358, 'https://ror.org/00emrap86', 'no_lang_code', 1, 'https://ror.org/00emrap86 Entrust (Canada)'),
(30359, 'https://ror.org/00env1778', 'en', 1, 'https://ror.org/00env1778 Canadian Dermatology Foundation'),
(30360, 'https://ror.org/00epkt019', 'no_lang_code', 1, 'https://ror.org/00epkt019 Akadémiai Kiadó (Hungary)'),
(30361, 'https://ror.org/00eqp4438', 'no_lang_code', 1, 'https://ror.org/00eqp4438 Systems Planning and Analysis (United States)'),
(30362, 'https://ror.org/00etg9b89', 'sk', 1, 'https://ror.org/00etg9b89 SlovenskÔ LegÔlna Metrológia'),
(30363, 'https://ror.org/00ev6sa36', 'en', 1, 'https://ror.org/00ev6sa36 Daiwa Anglo-Japanese Foundation'),
(30364, 'https://ror.org/00ev71s96', 'en', 1, 'https://ror.org/00ev71s96 Alzheimer Scotland'),
(30365, 'https://ror.org/00ewcgt31', 'no_lang_code', 1, 'https://ror.org/00ewcgt31 Clear Science Corporation (United States)'),
(30366, 'https://ror.org/00f012347', 'no_lang_code', 1, 'https://ror.org/00f012347 InternetSpeech (United States)'),
(30367, 'https://ror.org/00f08y308', 'sv', 1, 'https://ror.org/00f08y308 Wilhelm & Martina Lundgrens Stiftelser'),
(30368, 'https://ror.org/00f1fk963', 'no_lang_code', 1, 'https://ror.org/00f1fk963 Servier (Canada)'),
(30369, 'https://ror.org/00f1hrs84', 'no_lang_code', 1, 'https://ror.org/00f1hrs84 Ergenics (United States)'),
(30370, 'https://ror.org/00f2vm529', 'en', 1, 'https://ror.org/00f2vm529 Artificial Insemination Center of Quebec Centre d''InsƩmination artificielle du QuƩbec'),
(30371, 'https://ror.org/00f3bt271', 'no_lang_code', 1, 'https://ror.org/00f3bt271 Alameda Applied Sciences Corporation (United States)'),
(30372, 'https://ror.org/00f3sc705', 'en', 1, 'https://ror.org/00f3sc705 Fritz Thyssen Foundation Fritz Thyssen Stiftung'),
(30373, 'https://ror.org/00f44np30', 'en', 1, 'https://ror.org/00f44np30 Singapore Institute of Manufacturing Technology'),
(30374, 'https://ror.org/00f47ek31', 'no_lang_code', 1, 'https://ror.org/00f47ek31 Torrey Pines Logic (United States)'),
(30375, 'https://ror.org/00f58bn11', 'no_lang_code', 1, 'https://ror.org/00f58bn11 Mudawar Thermal Systems (United States)'),
(30376, 'https://ror.org/00f5xa066', 'no_lang_code', 1, 'https://ror.org/00f5xa066 ExoAnalytic Solutions (United States)'),
(30377, 'https://ror.org/00f6jds84', 'no_lang_code', 1, 'https://ror.org/00f6jds84 Applied Science Innovations (United States)'),
(30378, 'https://ror.org/00f76ab84', 'no_lang_code', 1, 'https://ror.org/00f76ab84 Codexis (United States)'),
(30379, 'https://ror.org/00fahmw72', 'en', 1, 'https://ror.org/00fahmw72 Canadian Occupational Therapy Foundation'),
(30380, 'https://ror.org/00farq383', 'no_lang_code', 1, 'https://ror.org/00farq383 DeciBel Research (United States)'),
(30381, 'https://ror.org/00fcfxd73', 'no_lang_code', 1, 'https://ror.org/00fcfxd73 Eurea'),
(30382, 'https://ror.org/00fdawj48', 'en', 1, 'https://ror.org/00fdawj48 Leo Baeck Institute'),
(30383, 'https://ror.org/00fdzyk40', 'en', 1, 'https://ror.org/00fdzyk40 Korea Health Industry Development Institute'),
(30384, 'https://ror.org/00fe3kx30', 'no_lang_code', 1, 'https://ror.org/00fe3kx30 Rmc (Slovakia)'),
(30385, 'https://ror.org/00fed8j81', 'no_lang_code', 1, 'https://ror.org/00fed8j81 Laser Operations (United States)'),
(30386, 'https://ror.org/00ffka868', 'no_lang_code', 1, 'https://ror.org/00ffka868 Western Power Distribution (United Kingdom)'),
(30387, 'https://ror.org/00fg8jj39', 'no_lang_code', 1, 'https://ror.org/00fg8jj39 Applied Signals Intelligence (United States)'),
(30388, 'https://ror.org/00fgmrc59', 'no_lang_code', 1, 'https://ror.org/00fgmrc59 CDI (United States)'),
(30389, 'https://ror.org/00fh0k280', 'en', 1, 'https://ror.org/00fh0k280 Morning Sun'),
(30390, 'https://ror.org/00fh23037', 'no_lang_code', 1, 'https://ror.org/00fh23037 Michelman (United States)'),
(30391, 'https://ror.org/00fk9d670', 'en', 1, 'https://ror.org/00fk9d670 Taoyuan Chang Gung Memorial Hospital'),
(30392, 'https://ror.org/00fmqk596', 'no_lang_code', 1, 'https://ror.org/00fmqk596 Cobolt (Sweden)'),
(30393, 'https://ror.org/00fmts116', 'es', 1, 'https://ror.org/00fmts116 Fundación José Ortega y Gasset-Gregorio Marañón'),
(30394, 'https://ror.org/00fs71k85', 'no_lang_code', 1, 'https://ror.org/00fs71k85 Cape Eleuthera Institute'),
(30395, 'https://ror.org/00fzkzp38', 'no_lang_code', 1, 'https://ror.org/00fzkzp38 CNS Systems (Sweden)'),
(30396, 'https://ror.org/00g0v7f54', 'no_lang_code', 1, 'https://ror.org/00g0v7f54 Tekmar (Slovakia)'),
(30397, 'https://ror.org/00g5vpp27', 'en', 1, 'https://ror.org/00g5vpp27 Iowa Finance Authority'),
(30398, 'https://ror.org/00g5z0e60', 'en', 1, 'https://ror.org/00g5z0e60 Center for Research on Inter-group Relations and Conflict Resolution'),
(30399, 'https://ror.org/00gfsxd52', 'sv', 1, 'https://ror.org/00gfsxd52 Svensk Kollektivtrafik'),
(30400, 'https://ror.org/00gg9m594', 'en', 1, 'https://ror.org/00gg9m594 Landscape Institute'),
(30401, 'https://ror.org/00ghhyx51', 'no_lang_code', 1, 'https://ror.org/00ghhyx51 CACI International (United States)'),
(30402, 'https://ror.org/00ghy7y53', 'no_lang_code', 1, 'https://ror.org/00ghy7y53 Electronic Concepts and Engineering (United States)'),
(30403, 'https://ror.org/00gn3nj37', 'en', 1, 'https://ror.org/00gn3nj37 Binzhou Medical College Hospital'),
(30404, 'https://ror.org/00gnbgz55', 'no_lang_code', 1, 'https://ror.org/00gnbgz55 AMN (Netherlands)'),
(30405, 'https://ror.org/00gnm3617', 'en', 1, 'https://ror.org/00gnm3617 Skeena Fisheries Commission'),
(30406, 'https://ror.org/00gprmt59', 'en', 1, 'https://ror.org/00gprmt59 NetPort Science Park'),
(30407, 'https://ror.org/00gq9jc61', 'no_lang_code', 1, 'https://ror.org/00gq9jc61 Custom Technology (United States)'),
(30408, 'https://ror.org/00gqn7179', 'no_lang_code', 1, 'https://ror.org/00gqn7179 Gorman Bros Lumber (Canada)'),
(30409, 'https://ror.org/00gskyj95', 'en', 1, 'https://ror.org/00gskyj95 Ningbo Science and Technology Bureau å®ę³¢åø‚ē§‘ęŠ€å±€'),
(30410, 'https://ror.org/00gspzk92', 'no_lang_code', 1, 'https://ror.org/00gspzk92 Sapien Systems (United States)'),
(30411, 'https://ror.org/00gtgme55', 'no_lang_code', 1, 'https://ror.org/00gtgme55 Qlucore (Sweden)'),
(30412, 'https://ror.org/00gtk7t05', 'no_lang_code', 1, 'https://ror.org/00gtk7t05 RLS Global (Sweden)'),
(30413, 'https://ror.org/00gtpjy03', 'no_lang_code', 1, 'https://ror.org/00gtpjy03 ASML (United States)'),
(30414, 'https://ror.org/00gvcmw36', 'en', 1, 'https://ror.org/00gvcmw36 Kent County Council'),
(30415, 'https://ror.org/00gvkt544', 'no_lang_code', 1, 'https://ror.org/00gvkt544 Technology Management Company (United States)'),
(30416, 'https://ror.org/00gwb6z35', 'no_lang_code', 1, 'https://ror.org/00gwb6z35 Railway Repair and Engineering Works (Slovakia)'),
(30417, 'https://ror.org/00gws9676', 'en', 1, 'https://ror.org/00gws9676 YaoundƩ General Hospital'),
(30418, 'https://ror.org/00gwv7d20', 'en', 1, 'https://ror.org/00gwv7d20 China Animal Disease Control Center äø­å›½åŠØē‰©ē–«ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(30419, 'https://ror.org/00gxbxx21', 'no_lang_code', 1, 'https://ror.org/00gxbxx21 QRDc (United States)'),
(30420, 'https://ror.org/00gxct719', 'es', 1, 'https://ror.org/00gxct719 Asociación Española Contra el CÔncer Spanish Association Against Cancer'),
(30421, 'https://ror.org/00gzf3318', 'no_lang_code', 1, 'https://ror.org/00gzf3318 Proof Research (United States)'),
(30422, 'https://ror.org/00h4nzs54', 'en', 1, 'https://ror.org/00h4nzs54 Zhumadian Central Hospital'),
(30423, 'https://ror.org/00h4tvg43', 'no_lang_code', 1, 'https://ror.org/00h4tvg43 Systems Engineering and Assessment (United Kingdom)'),
(30424, 'https://ror.org/00h5ca650', 'fr', 1, 'https://ror.org/00h5ca650 Fondation Lefoulon-Delalande'),
(30425, 'https://ror.org/00h6yfh70', 'no_lang_code', 1, 'https://ror.org/00h6yfh70 Innovation Impact (Sweden)'),
(30426, 'https://ror.org/00h7j7m14', 'fr', 1, 'https://ror.org/00h7j7m14 ComitƩ National de Lutte contre le SIDA'),
(30427, 'https://ror.org/00h7q8720', 'no_lang_code', 1, 'https://ror.org/00h7q8720 Guelph Utility Pole (Canada)'),
(30428, 'https://ror.org/00h8ny829', 'no_lang_code', 1, 'https://ror.org/00h8ny829 Ingredion (Canada)'),
(30429, 'https://ror.org/00hbekd38', 'no_lang_code', 1, 'https://ror.org/00hbekd38 Wavecon (United States)'),
(30430, 'https://ror.org/00hcek131', 'no_lang_code', 1, 'https://ror.org/00hcek131 SimWay (Sweden)'),
(30431, 'https://ror.org/00hd6em58', 'no_lang_code', 1, 'https://ror.org/00hd6em58 Oxazogen (United States)'),
(30432, 'https://ror.org/00he98j14', 'en', 1, 'https://ror.org/00he98j14 Institute for Laser Technology å…¬ē›Šč²”å›£ę³•äŗŗ ćƒ¬ćƒ¼ć‚¶ćƒ¼ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(30433, 'https://ror.org/00heb0a94', 'no_lang_code', 1, 'https://ror.org/00heb0a94 Stark Aerospace (United States)'),
(30434, 'https://ror.org/00hg9t388', 'en', 1, 'https://ror.org/00hg9t388 Campus Science Support Facilities'),
(30435, 'https://ror.org/00hhybr57', 'no_lang_code', 1, 'https://ror.org/00hhybr57 Sensor Concepts (United States)'),
(30436, 'https://ror.org/00hjjbv09', 'no_lang_code', 1, 'https://ror.org/00hjjbv09 Applied Nanotools (Canada)'),
(30437, 'https://ror.org/00hjkzk85', 'no_lang_code', 1, 'https://ror.org/00hjkzk85 Open Text (Canada)'),
(30438, 'https://ror.org/00hkdgr14', 'en', 1, 'https://ror.org/00hkdgr14 Seiwa Hospital é’å’Œē—…é™¢'),
(30439, 'https://ror.org/00hm4yk03', 'en', 1, 'https://ror.org/00hm4yk03 92nd Street Young Men''s and Young Women''s Hebrew Association'),
(30440, 'https://ror.org/00hm8vh37', 'no_lang_code', 1, 'https://ror.org/00hm8vh37 Tolko (Canada)'),
(30441, 'https://ror.org/00hn6mk14', 'no_lang_code', 1, 'https://ror.org/00hn6mk14 Ridgetop Group (United States)'),
(30442, 'https://ror.org/00hneab90', 'no_lang_code', 1, 'https://ror.org/00hneab90 Aero-Tech Engineering (United States)'),
(30443, 'https://ror.org/00hprwh76', 'no_lang_code', 1, 'https://ror.org/00hprwh76 Absiskey (France)'),
(30444, 'https://ror.org/00hpwje09', 'de', 1, 'https://ror.org/00hpwje09 Tierärztliche Praxis für Neurologie'),
(30445, 'https://ror.org/00hqnb941', 'no_lang_code', 1, 'https://ror.org/00hqnb941 Asahi Kasei (United States)'),
(30446, 'https://ror.org/00ht4dp10', 'en', 1, 'https://ror.org/00ht4dp10 Havs- och Vattenmyndigheten Swedish Agency for Marine and Water Management'),
(30447, 'https://ror.org/00hth4774', 'no_lang_code', 1, 'https://ror.org/00hth4774 HeyStaks Technologies (Ireland)'),
(30448, 'https://ror.org/00hvk3c79', 'en', 1, 'https://ror.org/00hvk3c79 Maharaj Vijayaram Gajapathi Raj College of Engineering'),
(30449, 'https://ror.org/00hw5ad77', 'no_lang_code', 1, 'https://ror.org/00hw5ad77 Cermaq (Canada)'),
(30450, 'https://ror.org/00hwxbz16', 'en', 1, 'https://ror.org/00hwxbz16 Wisconsin Alumni Research Foundation'),
(30451, 'https://ror.org/00j4a0m56', 'no_lang_code', 1, 'https://ror.org/00j4a0m56 Mistik Management (Canada)'),
(30452, 'https://ror.org/00j5x7m46', 'no_lang_code', 1, 'https://ror.org/00j5x7m46 Maga (Slovakia)'),
(30453, 'https://ror.org/00j5y7k81', 'no_lang_code', 1, 'https://ror.org/00j5y7k81 Longgang Central Hospital'),
(30454, 'https://ror.org/00j64zh12', 'no_lang_code', 1, 'https://ror.org/00j64zh12 Advanced Engines Development (United States)'),
(30455, 'https://ror.org/00j65sp23', 'no_lang_code', 1, 'https://ror.org/00j65sp23 CanKids KidsCan'),
(30456, 'https://ror.org/00j81st88', 'no_lang_code', 1, 'https://ror.org/00j81st88 Cenovus Energy (Canada)'),
(30457, 'https://ror.org/00j8gx359', 'en', 1, 'https://ror.org/00j8gx359 Group of Eight'),
(30458, 'https://ror.org/00j8z2m73', 'en', 1, 'https://ror.org/00j8z2m73 United States-Israel Binational Science Foundation'),
(30459, 'https://ror.org/00j935m10', 'no_lang_code', 1, 'https://ror.org/00j935m10 Cismet (Germany)'),
(30460, 'https://ror.org/00j9qx055', 'en', 1, 'https://ror.org/00j9qx055 Maryland Department of Disabilities'),
(30461, 'https://ror.org/00jch3e54', 'no_lang_code', 1, 'https://ror.org/00jch3e54 Omega Piezo Technologies (United States)'),
(30462, 'https://ror.org/00jdqa737', 'en', 1, 'https://ror.org/00jdqa737 Research and Development for Silicates and Ceramics'),
(30463, 'https://ror.org/00jf79q69', 'no_lang_code', 1, 'https://ror.org/00jf79q69 Financial Research (Hungary)'),
(30464, 'https://ror.org/00jkz6g04', 'sk', 1, 'https://ror.org/00jkz6g04 GymnÔzium Ľudovíta Štúra'),
(30465, 'https://ror.org/00jmv3y79', 'no_lang_code', 1, 'https://ror.org/00jmv3y79 Institute for Studies and Power Engineering (Romania)'),
(30466, 'https://ror.org/00jp8d455', 'en', 1, 'https://ror.org/00jp8d455 Research Corporation for Science Advancement'),
(30467, 'https://ror.org/00jqraq76', 'fr', 1, 'https://ror.org/00jqraq76 Fondation de la Faune du QuƩbec'),
(30468, 'https://ror.org/00jqwr190', 'en', 1, 'https://ror.org/00jqwr190 Dignitas International'),
(30469, 'https://ror.org/00jtran50', 'en', 1, 'https://ror.org/00jtran50 CUNY School of Law'),
(30470, 'https://ror.org/00jwytm78', 'en', 1, 'https://ror.org/00jwytm78 Department of Primary Industries, Parks, Water and Environment'),
(30471, 'https://ror.org/00jx5ax65', 'no_lang_code', 1, 'https://ror.org/00jx5ax65 Osemi (Canada)'),
(30472, 'https://ror.org/00jycx837', 'no_lang_code', 1, 'https://ror.org/00jycx837 Eotron (United States)'),
(30473, 'https://ror.org/00jykkj27', 'no_lang_code', 1, 'https://ror.org/00jykkj27 Intuitive Research and Technology Corporation (United States)'),
(30474, 'https://ror.org/00jz0gc70', 'no_lang_code', 1, 'https://ror.org/00jz0gc70 JV Driver Projects (Canada)'),
(30475, 'https://ror.org/00jz36n32', 'no_lang_code', 1, 'https://ror.org/00jz36n32 Miller Group (Canada)'),
(30476, 'https://ror.org/00k1fnr45', 'no_lang_code', 1, 'https://ror.org/00k1fnr45 Integument Technologies (United States)'),
(30477, 'https://ror.org/00k2gdw14', 'en', 1, 'https://ror.org/00k2gdw14 National Institute for Research in Tribal Health'),
(30478, 'https://ror.org/00k54xy93', 'no_lang_code', 1, 'https://ror.org/00k54xy93 PowerData (United States)'),
(30479, 'https://ror.org/00k5eg781', 'en', 1, 'https://ror.org/00k5eg781 Canadian Heritage Patrimoine Canadien'),
(30480, 'https://ror.org/00k5pte35', 'en', 1, 'https://ror.org/00k5pte35 NIHR Birmingham Liver Biomedical Research Unit'),
(30481, 'https://ror.org/00k5wwd38', 'no_lang_code', 1, 'https://ror.org/00k5wwd38 Aeroconseil (France)'),
(30482, 'https://ror.org/00k68p940', 'no_lang_code', 1, 'https://ror.org/00k68p940 Pathfinder Systems (United States)'),
(30483, 'https://ror.org/00k6x1e94', 'no_lang_code', 1, 'https://ror.org/00k6x1e94 VCUQatar'),
(30484, 'https://ror.org/00k71kh37', 'en', 1, 'https://ror.org/00k71kh37 Clark College'),
(30485, 'https://ror.org/00kbbk236', 'en', 1, 'https://ror.org/00kbbk236 V Foundation for Cancer Research'),
(30486, 'https://ror.org/00kchf187', 'no_lang_code', 1, 'https://ror.org/00kchf187 Moberg Pharma (Sweden)'),
(30487, 'https://ror.org/00kdyte44', 'no_lang_code', 1, 'https://ror.org/00kdyte44 Huys Industries (Canada)'),
(30488, 'https://ror.org/00kh19327', 'no_lang_code', 1, 'https://ror.org/00kh19327 AEH (Slovakia)'),
(30489, 'https://ror.org/00kj3ag10', 'no_lang_code', 1, 'https://ror.org/00kj3ag10 Hentzen (United States)'),
(30490, 'https://ror.org/00kj8fh75', 'no_lang_code', 1, 'https://ror.org/00kj8fh75 Multi-Phase Technologies (United States)'),
(30491, 'https://ror.org/00kj8tn74', 'no_lang_code', 1, 'https://ror.org/00kj8tn74 EcoCatalytic Technologies (United States)'),
(30492, 'https://ror.org/00kkt6q96', 'no_lang_code', 1, 'https://ror.org/00kkt6q96 Dynacast (United States)'),
(30493, 'https://ror.org/00kp81a07', 'no_lang_code', 1, 'https://ror.org/00kp81a07 JX Crystals (United States)'),
(30494, 'https://ror.org/00ks8df69', 'no_lang_code', 1, 'https://ror.org/00ks8df69 Verendus System (Sweden)'),
(30495, 'https://ror.org/00ktc0z93', 'no_lang_code', 1, 'https://ror.org/00ktc0z93 Timars (Sweden)'),
(30496, 'https://ror.org/00kw7bx58', 'no_lang_code', 1, 'https://ror.org/00kw7bx58 ATC New Technologies (United States)'),
(30497, 'https://ror.org/00kwhq089', 'en', 1, 'https://ror.org/00kwhq089 American Institute of Indian Studies'),
(30498, 'https://ror.org/00kwjx418', 'en', 1, 'https://ror.org/00kwjx418 Cataract Foundation of the Philippines'),
(30499, 'https://ror.org/00kxash64', 'en', 1, 'https://ror.org/00kxash64 Belarusian Republican Foundation for Fundamental Research'),
(30500, 'https://ror.org/00kyrfw38', 'no_lang_code', 1, 'https://ror.org/00kyrfw38 McGaw Technology (United States)'),
(30501, 'https://ror.org/00kz6zq32', 'no_lang_code', 1, 'https://ror.org/00kz6zq32 Higher Education Press (China)'),
(30502, 'https://ror.org/00kzn0453', 'en', 1, 'https://ror.org/00kzn0453 Viscardi Center'),
(30503, 'https://ror.org/00kztq733', 'en', 1, 'https://ror.org/00kztq733 Isaac Newton Institute'),
(30504, 'https://ror.org/00m35h465', 'en', 1, 'https://ror.org/00m35h465 Center for New American Media'),
(30505, 'https://ror.org/00m3nhd65', 'en', 1, 'https://ror.org/00m3nhd65 The Natural Step'),
(30506, 'https://ror.org/00m3wrz48', 'en', 1, 'https://ror.org/00m3wrz48 Institut des Ɖtats-unis pour la paix United States Institute of Peace'),
(30507, 'https://ror.org/00m7w8s72', 'en', 1, 'https://ror.org/00m7w8s72 Wellcome Centre for Molecular Parasitology'),
(30508, 'https://ror.org/00m8bhr79', 'no_lang_code', 1, 'https://ror.org/00m8bhr79 Kalos Technologies (United States)'),
(30509, 'https://ror.org/00m9ba392', 'no_lang_code', 1, 'https://ror.org/00m9ba392 Bahawal Victoria Hospital ŲØŪŲ§ŁˆŁ„ وکٹوریہ Ų³Ł¾ŲŖŲ§Ł„ā€¬ā€Ž,'),
(30510, 'https://ror.org/00m9dbm09', 'en', 1, 'https://ror.org/00m9dbm09 Public Health Department'),
(30511, 'https://ror.org/00ma2r948', 'en', 1, 'https://ror.org/00ma2r948 African Studies Centre Afrika Studiecentrum'),
(30512, 'https://ror.org/00mag5698', 'no_lang_code', 1, 'https://ror.org/00mag5698 Vivoline Medical (Sweden)'),
(30513, 'https://ror.org/00md1r011', 'no_lang_code', 1, 'https://ror.org/00md1r011 SARomics Biostructures (Sweden)'),
(30514, 'https://ror.org/00mepd532', 'en', 1, 'https://ror.org/00mepd532 Catholic Theological Private University Linz Katholische Privat-UniversitƤt Linz'),
(30515, 'https://ror.org/00mesrk97', 'en', 1, 'https://ror.org/00mesrk97 Barton College'),
(30516, 'https://ror.org/00mh27630', 'no_lang_code', 1, 'https://ror.org/00mh27630 RNET Technologies (United States)'),
(30517, 'https://ror.org/00mh3mf48', 'no_lang_code', 1, 'https://ror.org/00mh3mf48 Centriair (Sweden)'),
(30518, 'https://ror.org/00mh7ne83', 'en', 1, 'https://ror.org/00mh7ne83 Fergusson College'),
(30519, 'https://ror.org/00mj90n62', 'en', 1, 'https://ror.org/00mj90n62 Qingdao Mental Health Center'),
(30520, 'https://ror.org/00mkdan60', 'no_lang_code', 1, 'https://ror.org/00mkdan60 Volvo (United States)'),
(30521, 'https://ror.org/00mmb7886', 'no_lang_code', 1, 'https://ror.org/00mmb7886 Electrodynamics Associates (United States)'),
(30522, 'https://ror.org/00mmq8h56', 'no_lang_code', 1, 'https://ror.org/00mmq8h56 GoHypersonic (United States)'),
(30523, 'https://ror.org/00mn2bk17', 'en', 1, 'https://ror.org/00mn2bk17 Environmental and Water Resources Engineering'),
(30524, 'https://ror.org/00mn56c32', 'en', 1, 'https://ror.org/00mn56c32 British Red Cross'),
(30525, 'https://ror.org/00mn6be63', 'en', 1, 'https://ror.org/00mn6be63 John S. and James L. Knight Foundation'),
(30526, 'https://ror.org/00mnqcr93', 'no_lang_code', 1, 'https://ror.org/00mnqcr93 Alcohol Countermeasure Systems (Canada)'),
(30527, 'https://ror.org/00mpfdw74', 'en', 1, 'https://ror.org/00mpfdw74 Remington College'),
(30528, 'https://ror.org/00mq1v554', 'en', 1, 'https://ror.org/00mq1v554 Environment Research and Technology Development Fund'),
(30529, 'https://ror.org/00mq90977', 'no_lang_code', 1, 'https://ror.org/00mq90977 Hordeum (Slovakia)'),
(30530, 'https://ror.org/00mrdc589', 'en', 1, 'https://ror.org/00mrdc589 Institute of Clinical Research'),
(30531, 'https://ror.org/00msnw430', 'en', 1, 'https://ror.org/00msnw430 Watkins College of Art Design and Film'),
(30532, 'https://ror.org/00mwgpv54', 'no_lang_code', 1, 'https://ror.org/00mwgpv54 Eclipse Energy Systems (United States)'),
(30533, 'https://ror.org/00my25942', 'en', 1, 'https://ror.org/00my25942 Fudan University Shanghai Cancer Center'),
(30534, 'https://ror.org/00my5vx03', 'id', 1, 'https://ror.org/00my5vx03 Yayasan Masyarakat Dan Perikanan Indonesia'),
(30535, 'https://ror.org/00mzj5z57', 'en', 1, 'https://ror.org/00mzj5z57 Centre Tecnològic de Nutrició i Salut Technological Center of Nutrition and Health'),
(30536, 'https://ror.org/00n1x4x37', 'no_lang_code', 1, 'https://ror.org/00n1x4x37 Linnaeus Plant Sciences (Canada)'),
(30537, 'https://ror.org/00n20jq68', 'en', 1, 'https://ror.org/00n20jq68 British Ecological Society'),
(30538, 'https://ror.org/00n3ezc34', 'no_lang_code', 1, 'https://ror.org/00n3ezc34 Nammo (United States)'),
(30539, 'https://ror.org/00n4kpm21', 'en', 1, 'https://ror.org/00n4kpm21 Construction Owners Association of Alberta'),
(30540, 'https://ror.org/00n7wkq71', 'no_lang_code', 1, 'https://ror.org/00n7wkq71 Orexplore (Sweden)'),
(30541, 'https://ror.org/00n8pjn35', 'en', 1, 'https://ror.org/00n8pjn35 National Bernstein Network Computational Neuroscience Nationale Bernstein Netzwerk Computational Neuroscience'),
(30542, 'https://ror.org/00nag1e52', 'no_lang_code', 1, 'https://ror.org/00nag1e52 Magnolia Optical Technologies (United States)'),
(30543, 'https://ror.org/00nc55f03', 'pt', 1, 'https://ror.org/00nc55f03 Fundação de Amparo à Pesquisa do Estado de Minas Gerais'),
(30544, 'https://ror.org/00nd3ps77', 'no_lang_code', 1, 'https://ror.org/00nd3ps77 Level Set Systems (United States)'),
(30545, 'https://ror.org/00ndnda10', 'en', 1, 'https://ror.org/00ndnda10 University of Pharmacy Mandalay į€†į€±į€øį€į€«į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(į€™į€”į€¹į€į€œį€±į€ø)'),
(30546, 'https://ror.org/00ne5nn12', 'no_lang_code', 1, 'https://ror.org/00ne5nn12 EOSPACE (United States)'),
(30547, 'https://ror.org/00neqwx86', 'no_lang_code', 1, 'https://ror.org/00neqwx86 Hydromantis Environmental Software Solutions (Canada)'),
(30548, 'https://ror.org/00ng3qf76', 'no_lang_code', 1, 'https://ror.org/00ng3qf76 Uv Tech (Sweden)'),
(30549, 'https://ror.org/00nggaz43', 'en', 1, 'https://ror.org/00nggaz43 Georg Simon Ohm University of Applied Sciences Nuremberg Technische Hochschule Nürnberg Georg Simon Ohm'),
(30550, 'https://ror.org/00ngrw992', 'no_lang_code', 1, 'https://ror.org/00ngrw992 Linden Photonics (United States)'),
(30551, 'https://ror.org/00nkcmy90', 'en', 1, 'https://ror.org/00nkcmy90 National Bank of Austria Ɩsterreichische Nationalbank'),
(30552, 'https://ror.org/00nn4h902', 'en', 1, 'https://ror.org/00nn4h902 Ecancer'),
(30553, 'https://ror.org/00nnd3206', 'no_lang_code', 1, 'https://ror.org/00nnd3206 Thales (Canada)'),
(30554, 'https://ror.org/00np6vq88', 'en', 1, 'https://ror.org/00np6vq88 Welch Foundation'),
(30555, 'https://ror.org/00np88202', 'en', 1, 'https://ror.org/00np88202 Swedish Industrial Design Foundation'),
(30556, 'https://ror.org/00nq2vw96', 'no_lang_code', 1, 'https://ror.org/00nq2vw96 Fastvdo (United States)'),
(30557, 'https://ror.org/00nrbsf87', 'en', 1, 'https://ror.org/00nrbsf87 Institute of Oncology Prof. Dr. Ion Chiricuta'),
(30558, 'https://ror.org/00nrhr905', 'no_lang_code', 1, 'https://ror.org/00nrhr905 Torch Technologies (United States)'),
(30559, 'https://ror.org/00ntx3406', 'no_lang_code', 1, 'https://ror.org/00ntx3406 Micro Cooling Concepts (United States)'),
(30560, 'https://ror.org/00ny54t68', 'no_lang_code', 1, 'https://ror.org/00ny54t68 BI Pure Water (Canada)'),
(30561, 'https://ror.org/00ny76115', 'en', 1, 'https://ror.org/00ny76115 Forage Genetics International'),
(30562, 'https://ror.org/00nyhq937', 'en', 1, 'https://ror.org/00nyhq937 Association Canadienne des Producteurs d''Acier Canadian Steel Producers Association'),
(30563, 'https://ror.org/00p0n9a62', 'en', 1, 'https://ror.org/00p0n9a62 Minhang District Central Hospital'),
(30564, 'https://ror.org/00p2jsg72', 'no_lang_code', 1, 'https://ror.org/00p2jsg72 Unilever (Canada)'),
(30565, 'https://ror.org/00p3jpt93', 'no_lang_code', 1, 'https://ror.org/00p3jpt93 Touchtech (Sweden)'),
(30566, 'https://ror.org/00p3k1n22', 'no_lang_code', 1, 'https://ror.org/00p3k1n22 AkzoNobel (Canada)'),
(30567, 'https://ror.org/00p6c4n60', 'no_lang_code', 1, 'https://ror.org/00p6c4n60 Autoline Insurance (United Kingdom)'),
(30568, 'https://ror.org/00p77cm62', 'no_lang_code', 1, 'https://ror.org/00p77cm62 Fugro (United Kingdom)'),
(30569, 'https://ror.org/00p7ds424', 'en', 1, 'https://ror.org/00p7ds424 Discovery Eye Foundation'),
(30570, 'https://ror.org/00p82qb91', 'no_lang_code', 1, 'https://ror.org/00p82qb91 Polymer Research Technologies (Canada)'),
(30571, 'https://ror.org/00p8x9d62', 'no_lang_code', 1, 'https://ror.org/00p8x9d62 Kemira (Canada)'),
(30572, 'https://ror.org/00p9jf779', 'en', 1, 'https://ror.org/00p9jf779 Medicines for Malaria Venture'),
(30573, 'https://ror.org/00pavee11', 'en', 1, 'https://ror.org/00pavee11 CSG Centre for Society and the Life Sciences'),
(30574, 'https://ror.org/00pbgsg09', 'de', 1, 'https://ror.org/00pbgsg09 Asklepios Klinik Altona'),
(30575, 'https://ror.org/00pftnv23', 'sv', 1, 'https://ror.org/00pftnv23 Association of Heavy Vehicles Tunga Fordon'),
(30576, 'https://ror.org/00phyfh89', 'no_lang_code', 1, 'https://ror.org/00phyfh89 Sperient (United States)'),
(30577, 'https://ror.org/00png4t13', 'no_lang_code', 1, 'https://ror.org/00png4t13 mZeal Communications (United States)'),
(30578, 'https://ror.org/00pngyt39', 'en', 1, 'https://ror.org/00pngyt39 Hemostasis and Thrombosis Research Society'),
(30579, 'https://ror.org/00pwncn89', 'en', 1, 'https://ror.org/00pwncn89 Biobanking and Biomolecular Resources Research Infrastructure Consortium'),
(30580, 'https://ror.org/00px7ap78', 'en', 1, 'https://ror.org/00px7ap78 Building Testing and Research Institute'),
(30581, 'https://ror.org/00py6j950', 'no_lang_code', 1, 'https://ror.org/00py6j950 QuesTek (United States)'),
(30582, 'https://ror.org/00pyb4029', 'no_lang_code', 1, 'https://ror.org/00pyb4029 Sustainable Business Hub (Sweden)'),
(30583, 'https://ror.org/00pyrxj28', 'no_lang_code', 1, 'https://ror.org/00pyrxj28 American Research Corporation of Virginia (United States)'),
(30584, 'https://ror.org/00q0w7q33', 'no_lang_code', 1, 'https://ror.org/00q0w7q33 J.B. Anderson & Son (United States)'),
(30585, 'https://ror.org/00q1jh816', 'no_lang_code', 1, 'https://ror.org/00q1jh816 Innoflight (United States)'),
(30586, 'https://ror.org/00q1xza85', 'no_lang_code', 1, 'https://ror.org/00q1xza85 PEL Associates (United States)'),
(30587, 'https://ror.org/00q29hr25', 'no_lang_code', 1, 'https://ror.org/00q29hr25 De Francisci Machine Company (United States)'),
(30588, 'https://ror.org/00q2mch05', 'no_lang_code', 1, 'https://ror.org/00q2mch05 Charles River Laboratories (United Kingdom)'),
(30589, 'https://ror.org/00q2zjc87', 'en', 1, 'https://ror.org/00q2zjc87 Blue Cross Blue Shield of Michigan Foundation'),
(30590, 'https://ror.org/00q534t73', 'no_lang_code', 1, 'https://ror.org/00q534t73 SeCan (Canada)'),
(30591, 'https://ror.org/00q5f5t70', 'no_lang_code', 1, 'https://ror.org/00q5f5t70 Luminit (United States)'),
(30592, 'https://ror.org/00q8efx07', 'no_lang_code', 1, 'https://ror.org/00q8efx07 FloDesign (United States)'),
(30593, 'https://ror.org/00q9zmg67', 'no_lang_code', 1, 'https://ror.org/00q9zmg67 Envirocare (Slovakia)'),
(30594, 'https://ror.org/00qb1n040', 'fr', 1, 'https://ror.org/00qb1n040 Centre de Recherche MƩdicale et Sanitaire'),
(30595, 'https://ror.org/00qc9cw63', 'no_lang_code', 1, 'https://ror.org/00qc9cw63 Vironova (Sweden)'),
(30596, 'https://ror.org/00qd48t56', 'no_lang_code', 1, 'https://ror.org/00qd48t56 Cognizant (United Kingdom)'),
(30597, 'https://ror.org/00qjb4236', 'en', 1, 'https://ror.org/00qjb4236 Association Canadienne de la Technologie de l''Information Information Technology Association of Canada'),
(30598, 'https://ror.org/00qnfvz68', 'en', 1, 'https://ror.org/00qnfvz68 Open Society Foundations'),
(30599, 'https://ror.org/00qtxnd58', 'en', 1, 'https://ror.org/00qtxnd58 Hungarian National Blood Transfusion Service'),
(30600, 'https://ror.org/00qy2eq52', 'en', 1, 'https://ror.org/00qy2eq52 Universities Federation for Animal Welfare'),
(30601, 'https://ror.org/00qyat195', 'en', 1, 'https://ror.org/00qyat195 National Centre for Nuclear Energy, Science and Technology'),
(30602, 'https://ror.org/00qys8f30', 'no_lang_code', 1, 'https://ror.org/00qys8f30 Penn West Exploration (Canada)'),
(30603, 'https://ror.org/00qzpz347', 'no_lang_code', 1, 'https://ror.org/00qzpz347 TelAztec (United States)'),
(30604, 'https://ror.org/00r151p09', 'en', 1, 'https://ror.org/00r151p09 Hungarian National Museum'),
(30605, 'https://ror.org/00r178r74', 'no_lang_code', 1, 'https://ror.org/00r178r74 TvƄ Punkt Ett (Sweden)'),
(30606, 'https://ror.org/00r1rs707', 'no_lang_code', 1, 'https://ror.org/00r1rs707 Mirion Technologies (United States)'),
(30607, 'https://ror.org/00r4d5d70', 'no_lang_code', 1, 'https://ror.org/00r4d5d70 Hazelett (United States)'),
(30608, 'https://ror.org/00r69j102', 'no_lang_code', 1, 'https://ror.org/00r69j102 Blue Canyon Technologies (United States)'),
(30609, 'https://ror.org/00r6akf90', 'en', 1, 'https://ror.org/00r6akf90 Agencia Española de Cooperación Internacional para el Desarrollo Spanish Agency for International Development Cooperation'),
(30610, 'https://ror.org/00r7zrn27', 'nl', 1, 'https://ror.org/00r7zrn27 Museum of the Tropics Tropenmuseum'),
(30611, 'https://ror.org/00r95sc10', 'no_lang_code', 1, 'https://ror.org/00r95sc10 Fires (Slovakia)'),
(30612, 'https://ror.org/00ra24d41', 'en', 1, 'https://ror.org/00ra24d41 National Science and Technology Entrepreneurship Development Board'),
(30613, 'https://ror.org/00ra63c74', 'fr', 1, 'https://ror.org/00ra63c74 Centre Hospitalier Territorial de Nouvelle-CalƩdonie'),
(30614, 'https://ror.org/00rbdec72', 'en', 1, 'https://ror.org/00rbdec72 Dyer Island Conservation Trust'),
(30615, 'https://ror.org/00rbj3548', 'en', 1, 'https://ror.org/00rbj3548 Diabetes Research Institute Foundation'),
(30616, 'https://ror.org/00rceb094', 'no_lang_code', 1, 'https://ror.org/00rceb094 International Submarine Engineering (Canada)'),
(30617, 'https://ror.org/00rd9q776', 'en', 1, 'https://ror.org/00rd9q776 Museum of Literature'),
(30618, 'https://ror.org/00rdpwj76', 'en', 1, 'https://ror.org/00rdpwj76 Spencer Foundation'),
(30619, 'https://ror.org/00rf4tg97', 'no_lang_code', 1, 'https://ror.org/00rf4tg97 Suniva (United States)'),
(30620, 'https://ror.org/00rg88503', 'fr', 1, 'https://ror.org/00rg88503 Centre de Recherche MƩdicales de LambarƩnƩ'),
(30621, 'https://ror.org/00rgzpv08', 'en', 1, 'https://ror.org/00rgzpv08 Fujian Provincial Department of Science and Technology'),
(30622, 'https://ror.org/00rhqh755', 'no_lang_code', 1, 'https://ror.org/00rhqh755 RDL (United States)'),
(30623, 'https://ror.org/00rkkzx80', 'no_lang_code', 1, 'https://ror.org/00rkkzx80 Houghton Mifflin Harcourt (United States)'),
(30624, 'https://ror.org/00rmvjy83', 'en', 1, 'https://ror.org/00rmvjy83 Ministry of Civil Affairs äø­åŽäŗŗę°‘å…±å’Œå›½ę°‘ę”æéƒØ'),
(30625, 'https://ror.org/00rmxs729', 'no_lang_code', 1, 'https://ror.org/00rmxs729 Acadian Peat Moss (Canada)'),
(30626, 'https://ror.org/00rp11x24', 'no_lang_code', 1, 'https://ror.org/00rp11x24 Walsh Medical Devices (Canada)'),
(30627, 'https://ror.org/00rqzt374', 'no_lang_code', 1, 'https://ror.org/00rqzt374 Dane Technologies (United States)'),
(30628, 'https://ror.org/00rs1n196', 'no_lang_code', 1, 'https://ror.org/00rs1n196 Restek (United States)'),
(30629, 'https://ror.org/00rt0xj75', 'fr', 1, 'https://ror.org/00rt0xj75 Agence ThƩmatique de Recherche en Science de la SantƩ'),
(30630, 'https://ror.org/00rv4tb81', 'no_lang_code', 1, 'https://ror.org/00rv4tb81 Optical Engines (United States)'),
(30631, 'https://ror.org/00rvf1k93', 'no_lang_code', 1, 'https://ror.org/00rvf1k93 Upsher-Smith Laboratories (United States)'),
(30632, 'https://ror.org/00rxhq344', 'de', 1, 'https://ror.org/00rxhq344 Innoventor'),
(30633, 'https://ror.org/00ryamr02', 'en', 1, 'https://ror.org/00ryamr02 Sea to Shore Alliance'),
(30634, 'https://ror.org/00ryd3444', 'no_lang_code', 1, 'https://ror.org/00ryd3444 Dynalloy (United States)'),
(30635, 'https://ror.org/00ryqe969', 'no_lang_code', 1, 'https://ror.org/00ryqe969 Engineering Associates (United States)'),
(30636, 'https://ror.org/00s8ey170', 'no_lang_code', 1, 'https://ror.org/00s8ey170 Paulsson (United States)'),
(30637, 'https://ror.org/00s8p6c75', 'pt', 1, 'https://ror.org/00s8p6c75 AgĆŖncia Paulista de Tecnologia dos Agronegócios SĆ£o Paulo’s Agency for Agribusiness Technology'),
(30638, 'https://ror.org/00s9t5z05', 'no_lang_code', 1, 'https://ror.org/00s9t5z05 Canetique (Canada)'),
(30639, 'https://ror.org/00safct20', 'en', 1, 'https://ror.org/00safct20 National Pork Board'),
(30640, 'https://ror.org/00saj4962', 'en', 1, 'https://ror.org/00saj4962 Medical Research Scotland'),
(30641, 'https://ror.org/00scbd467', 'en', 1, 'https://ror.org/00scbd467 National Bureau of Plant Genetic Resources'),
(30642, 'https://ror.org/00scjy223', 'no_lang_code', 1, 'https://ror.org/00scjy223 Core Laboratories (United States)'),
(30643, 'https://ror.org/00scm8y78', 'en', 1, 'https://ror.org/00scm8y78 Life Science Governance Institute'),
(30644, 'https://ror.org/00sdxex41', 'en', 1, 'https://ror.org/00sdxex41 Autograph ABP'),
(30645, 'https://ror.org/00sdyry80', 'en', 1, 'https://ror.org/00sdyry80 Museum of Hungarian Agriculture'),
(30646, 'https://ror.org/00sebb670', 'no_lang_code', 1, 'https://ror.org/00sebb670 Clinique d''OptomĆ©trie l’Émerillon (Canada)'),
(30647, 'https://ror.org/00seqvw16', 'no_lang_code', 1, 'https://ror.org/00seqvw16 Replify (United Kingdom)'),
(30648, 'https://ror.org/00sfcfc45', 'no_lang_code', 1, 'https://ror.org/00sfcfc45 Heliotrope Technologies (United States)'),
(30649, 'https://ror.org/00sfss216', 'hu', 1, 'https://ror.org/00sfss216 Magyar KƶzgazdasƔgi TƔrsasƔg'),
(30650, 'https://ror.org/00sgdxg36', 'en', 1, 'https://ror.org/00sgdxg36 Instituto de Milenio de AstrofĆ­sica Millennium Institute of Astrophysics'),
(30651, 'https://ror.org/00shj4079', 'no_lang_code', 1, 'https://ror.org/00shj4079 Noveltis (France)'),
(30652, 'https://ror.org/00sjtsn56', 'no_lang_code', 1, 'https://ror.org/00sjtsn56 Pulse Energy (New Zealand)'),
(30653, 'https://ror.org/00sjx7d61', 'no_lang_code', 1, 'https://ror.org/00sjx7d61 Vencore (United States)'),
(30654, 'https://ror.org/00skv9577', 'es', 1, 'https://ror.org/00skv9577 Fundación Mutua Madrileña'),
(30655, 'https://ror.org/00sne9z79', 'en', 1, 'https://ror.org/00sne9z79 ResMed Foundation'),
(30656, 'https://ror.org/00snhrb56', 'sv', 1, 'https://ror.org/00snhrb56 SkƄne Food Innovation Network SkƄnes Livsmedelsakademi'),
(30657, 'https://ror.org/00snkpt73', 'no_lang_code', 1, 'https://ror.org/00snkpt73 Advanced Anti-Terror Technologies (United States)'),
(30658, 'https://ror.org/00snt7e27', 'no_lang_code', 1, 'https://ror.org/00snt7e27 FIKRA'),
(30659, 'https://ror.org/00sp9ha44', 'no_lang_code', 1, 'https://ror.org/00sp9ha44 Optical Physics Company (United States)'),
(30660, 'https://ror.org/00ssgrj25', 'en', 1, 'https://ror.org/00ssgrj25 Amazon Research Foundation Fundação AmazÓnia Paraense de Amparo à Pesquisa'),
(30661, 'https://ror.org/00sz7mx24', 'no_lang_code', 1, 'https://ror.org/00sz7mx24 Friction Stir Link (United States)'),
(30662, 'https://ror.org/00t354q81', 'en', 1, 'https://ror.org/00t354q81 Association of Zoos and Aquariums'),
(30663, 'https://ror.org/00t3ptr62', 'no_lang_code', 1, 'https://ror.org/00t3ptr62 Boston Micromachines (United States)'),
(30664, 'https://ror.org/00t46nv75', 'fr', 1, 'https://ror.org/00t46nv75 Actions pour l’Environnement et le DĆ©veloppement Durable'),
(30665, 'https://ror.org/00t6b3b82', 'no_lang_code', 1, 'https://ror.org/00t6b3b82 EXcorLab (Germany)'),
(30666, 'https://ror.org/00t6svq33', 'en', 1, 'https://ror.org/00t6svq33 Canadian Anesthesiologists'' Society'),
(30667, 'https://ror.org/00t7fmg72', 'en', 1, 'https://ror.org/00t7fmg72 Centre for Research on Brain Language and Music'),
(30668, 'https://ror.org/00t7jb983', 'es', 1, 'https://ror.org/00t7jb983 Consorcio Hospitalario Provincial de Castellón'),
(30669, 'https://ror.org/00t9kp067', 'no_lang_code', 1, 'https://ror.org/00t9kp067 Acuity Technologies (United States)'),
(30670, 'https://ror.org/00td0ce11', 'no_lang_code', 1, 'https://ror.org/00td0ce11 AFCO Systems (United States)'),
(30671, 'https://ror.org/00td2g412', 'no_lang_code', 1, 'https://ror.org/00td2g412 Softronic (Sweden)'),
(30672, 'https://ror.org/00teqnm16', 'no_lang_code', 1, 'https://ror.org/00teqnm16 SPX Transformer Solutions (United States)'),
(30673, 'https://ror.org/00texw081', 'no_lang_code', 1, 'https://ror.org/00texw081 Magellium (United Kingdom)'),
(30674, 'https://ror.org/00tf8zn82', 'no_lang_code', 1, 'https://ror.org/00tf8zn82 Altex Technologies Corporation (United States)'),
(30675, 'https://ror.org/00tgd3g89', 'no_lang_code', 1, 'https://ror.org/00tgd3g89 Ontar (United States)'),
(30676, 'https://ror.org/00thhxf09', 'no_lang_code', 1, 'https://ror.org/00thhxf09 Lambda Instruments (United States)'),
(30677, 'https://ror.org/00thz8j39', 'no_lang_code', 1, 'https://ror.org/00thz8j39 Gleason (Italy)'),
(30678, 'https://ror.org/00tjfzj89', 'no_lang_code', 1, 'https://ror.org/00tjfzj89 Sustainable Home Survey (United Kingdom)'),
(30679, 'https://ror.org/00tktp346', 'no_lang_code', 1, 'https://ror.org/00tktp346 Effectus But Different (Sweden)'),
(30680, 'https://ror.org/00tmnnm82', 'no_lang_code', 1, 'https://ror.org/00tmnnm82 Kingston Software Factory (Canada)'),
(30681, 'https://ror.org/00tmwya54', 'en', 1, 'https://ror.org/00tmwya54 L’Institut International de l’Eau de Stockholm Stockholm International Water Institute'),
(30682, 'https://ror.org/00tn07286', 'en', 1, 'https://ror.org/00tn07286 Canadian Wood Council Conseil canadien du bois'),
(30683, 'https://ror.org/00tntzp09', 'en', 1, 'https://ror.org/00tntzp09 German-Israeli Foundation for Scientific Research and Development'),
(30684, 'https://ror.org/00tqhym28', 'en', 1, 'https://ror.org/00tqhym28 Institute of Croatian Language and Linguistics'),
(30685, 'https://ror.org/00trnds81', 'en', 1, 'https://ror.org/00trnds81 Saskatchewan Health Research Foundation'),
(30686, 'https://ror.org/00ts92g58', 'nl', 1, 'https://ror.org/00ts92g58 Dunea'),
(30687, 'https://ror.org/00ttqn045', 'en', 1, 'https://ror.org/00ttqn045 Danish Ramazzini Center'),
(30688, 'https://ror.org/00ttz3768', 'no_lang_code', 1, 'https://ror.org/00ttz3768 Ultramed (United States)'),
(30689, 'https://ror.org/00twbd828', 'en', 1, 'https://ror.org/00twbd828 The World Academy of Sciences'),
(30690, 'https://ror.org/00twmc436', 'no_lang_code', 1, 'https://ror.org/00twmc436 Setrab (Sweden)'),
(30691, 'https://ror.org/00twq6n75', 'no_lang_code', 1, 'https://ror.org/00twq6n75 OssDsign (Sweden)'),
(30692, 'https://ror.org/00v2a6g95', 'en', 1, 'https://ror.org/00v2a6g95 Center for Plant Conservation'),
(30693, 'https://ror.org/00v3jqn19', 'en', 1, 'https://ror.org/00v3jqn19 Agence mondiale antidopage World Anti-Doping Agency'),
(30694, 'https://ror.org/00v61f080', 'no_lang_code', 1, 'https://ror.org/00v61f080 Industrial Planning Technology (United States)'),
(30695, 'https://ror.org/00v6g9845', 'no_lang_code', 1, 'https://ror.org/00v6g9845 Siemens (China)'),
(30696, 'https://ror.org/00v7akn72', 'en', 1, 'https://ror.org/00v7akn72 Women Helping Others Foundation'),
(30697, 'https://ror.org/00v7tvz77', 'no_lang_code', 1, 'https://ror.org/00v7tvz77 VÚRUP (Slovakia)'),
(30698, 'https://ror.org/00v7z6m55', 'en', 1, 'https://ror.org/00v7z6m55 Limassol General Hospital'),
(30699, 'https://ror.org/00v84va72', 'no_lang_code', 1, 'https://ror.org/00v84va72 Ford Motor Company (Canada) Ford du Canada LimitƩe'),
(30700, 'https://ror.org/00v8g0168', 'en', 1, 'https://ror.org/00v8g0168 Jiangxi Provincial Cancer Hospital ę±Ÿč„æēœč‚æē˜¤åŒ»é™¢'),
(30701, 'https://ror.org/00v996f56', 'no_lang_code', 1, 'https://ror.org/00v996f56 Vuki (Slovakia)'),
(30702, 'https://ror.org/00vapxw25', 'en', 1, 'https://ror.org/00vapxw25 American Academy of Art'),
(30703, 'https://ror.org/00vb2a765', 'de', 1, 'https://ror.org/00vb2a765 ISAAC Gesellschaft für Unterstützte Kommunikation'),
(30704, 'https://ror.org/00vc5fc11', 'no_lang_code', 1, 'https://ror.org/00vc5fc11 Data Harbor (United States)'),
(30705, 'https://ror.org/00vet8y51', 'no_lang_code', 1, 'https://ror.org/00vet8y51 Spectrum Magnetics (United States)'),
(30706, 'https://ror.org/00vkb8q56', 'en', 1, 'https://ror.org/00vkb8q56 Ningbo City College of Vocational Technology'),
(30707, 'https://ror.org/00vm23y87', 'no_lang_code', 1, 'https://ror.org/00vm23y87 Safe (United States)'),
(30708, 'https://ror.org/00vnh7v52', 'en', 1, 'https://ror.org/00vnh7v52 Johanneberg Science Park'),
(30709, 'https://ror.org/00vrd0936', 'en', 1, 'https://ror.org/00vrd0936 307th Hospital of Chinese People’s Liberation Army 307医院'),
(30710, 'https://ror.org/00vt3ry76', 'en', 1, 'https://ror.org/00vt3ry76 Nutricia Research Foundation'),
(30711, 'https://ror.org/00vxgjw72', 'en', 1, 'https://ror.org/00vxgjw72 Ministry of Health and Welfare ėŒ€ķ•œėÆ¼źµ­ 볓걓복지부'),
(30712, 'https://ror.org/00vyw7j44', 'en', 1, 'https://ror.org/00vyw7j44 Swedish Institute for Studies in Education and Research'),
(30713, 'https://ror.org/00vzq1e41', 'no_lang_code', 1, 'https://ror.org/00vzq1e41 Decisive Analytics Corporation (United States)'),
(30714, 'https://ror.org/00w00g774', 'no_lang_code', 1, 'https://ror.org/00w00g774 Applied Diamond (United States)'),
(30715, 'https://ror.org/00w1v8g84', 'pt', 1, 'https://ror.org/00w1v8g84 Laboratório Nacional de Ciência e Tecnologia do Bioetanol'),
(30716, 'https://ror.org/00w3ghh40', 'en', 1, 'https://ror.org/00w3ghh40 Central European House of Photography'),
(30717, 'https://ror.org/00w4c2196', 'no_lang_code', 1, 'https://ror.org/00w4c2196 Capco (United States)'),
(30718, 'https://ror.org/00w5b2218', 'no_lang_code', 1, 'https://ror.org/00w5b2218 Orbotech (United States)'),
(30719, 'https://ror.org/00w5q8f78', 'en', 1, 'https://ror.org/00w5q8f78 Canadian Standards Association'),
(30720, 'https://ror.org/00w5xhg82', 'no_lang_code', 1, 'https://ror.org/00w5xhg82 Assured Information Security (United States)'),
(30721, 'https://ror.org/00w77y420', 'no_lang_code', 1, 'https://ror.org/00w77y420 BlackPak (United States)'),
(30722, 'https://ror.org/00w8cq239', 'pt', 1, 'https://ror.org/00w8cq239 Foundation for Research Support of GoiÔs State Fundação de Apoio a Pesquisa do Estado de GoiÔs'),
(30723, 'https://ror.org/00w8gjz75', 'en', 1, 'https://ror.org/00w8gjz75 Iowa Department for the Blind'),
(30724, 'https://ror.org/00w901m21', 'no_lang_code', 1, 'https://ror.org/00w901m21 Candent Technologies (United States)'),
(30725, 'https://ror.org/00w964w95', 'no_lang_code', 1, 'https://ror.org/00w964w95 SDS International (United States)'),
(30726, 'https://ror.org/00wcmt229', 'no_lang_code', 1, 'https://ror.org/00wcmt229 C. van ''t Riet Dairy Technology (Netherlands)'),
(30727, 'https://ror.org/00wgjgc44', 'no_lang_code', 1, 'https://ror.org/00wgjgc44 Cellworks Research (India)'),
(30728, 'https://ror.org/00wgn9w85', 'no_lang_code', 1, 'https://ror.org/00wgn9w85 Redondo Optics (United States)'),
(30729, 'https://ror.org/00wh57194', 'en', 1, 'https://ror.org/00wh57194 Alberta Energy'),
(30730, 'https://ror.org/00wj1b221', 'no_lang_code', 1, 'https://ror.org/00wj1b221 Integrated Statistics (United States)'),
(30731, 'https://ror.org/00wjbbg08', 'no_lang_code', 1, 'https://ror.org/00wjbbg08 Loki (United States)'),
(30732, 'https://ror.org/00wjr1b41', 'no_lang_code', 1, 'https://ror.org/00wjr1b41 Nu-Tech Precision Metals (Canada)'),
(30733, 'https://ror.org/00wk05f95', 'en', 1, 'https://ror.org/00wk05f95 CeNTech'),
(30734, 'https://ror.org/00wkyd235', 'no_lang_code', 1, 'https://ror.org/00wkyd235 Louisiana-Pacific (Canada)'),
(30735, 'https://ror.org/00wmm1d15', 'en', 1, 'https://ror.org/00wmm1d15 Institute of Art History'),
(30736, 'https://ror.org/00wmrqg59', 'no_lang_code', 1, 'https://ror.org/00wmrqg59 West Fraser (Canada)'),
(30737, 'https://ror.org/00wpg5z42', 'en', 1, 'https://ror.org/00wpg5z42 East Tallinn Central Hospital'),
(30738, 'https://ror.org/00wpqwm31', 'no_lang_code', 1, 'https://ror.org/00wpqwm31 Astron Wireless Technologies (United States)'),
(30739, 'https://ror.org/00wqezk94', 'no_lang_code', 1, 'https://ror.org/00wqezk94 Intelligent Light (United States)'),
(30740, 'https://ror.org/00wqx6897', 'en', 1, 'https://ror.org/00wqx6897 Agence EuropĆ©enne ChargĆ©e de la SĆ©curitĆ© des RĆ©seaux et de l''Information European Union Agency for Network and Information Security ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ της Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĪ®Ļ‚ ĪˆĪ½Ļ‰ĻƒĪ·Ļ‚ για την Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī± Ī”Ī¹ĪŗĻ„ĻĻ‰Ī½ και Ī Ī»Ī·ĻĪæĻ†ĪæĻĪ¹ĻŽĪ½'),
(30741, 'https://ror.org/00wqzbn30', 'no_lang_code', 1, 'https://ror.org/00wqzbn30 KGHM Polska MiedÅŗ (Poland)'),
(30742, 'https://ror.org/00wtk6m97', 'en', 1, 'https://ror.org/00wtk6m97 Growth Analysis'),
(30743, 'https://ror.org/00wz44k82', 'no_lang_code', 1, 'https://ror.org/00wz44k82 VBN Components (Sweden)'),
(30744, 'https://ror.org/00x187281', 'no_lang_code', 1, 'https://ror.org/00x187281 Knobley Technical Associates (United States)'),
(30745, 'https://ror.org/00x3xyg66', 'en', 1, 'https://ror.org/00x3xyg66 North Staffordshire Clinical Commissioning Group'),
(30746, 'https://ror.org/00x3ywr72', 'no_lang_code', 1, 'https://ror.org/00x3ywr72 Ostara Nutrient Recovery Technologies (Canada)'),
(30747, 'https://ror.org/00x43jw16', 'no_lang_code', 1, 'https://ror.org/00x43jw16 Intrinsix (United States)'),
(30748, 'https://ror.org/00x4j8f40', 'no_lang_code', 1, 'https://ror.org/00x4j8f40 Carolina Unmanned Vehicles (United States)'),
(30749, 'https://ror.org/00x75mt56', 'en', 1, 'https://ror.org/00x75mt56 Tzu Hui Institute of Technology'),
(30750, 'https://ror.org/00x8a1s60', 'no_lang_code', 1, 'https://ror.org/00x8a1s60 Andritz (Canada)'),
(30751, 'https://ror.org/00x9kww32', 'en', 1, 'https://ror.org/00x9kww32 Jackson College'),
(30752, 'https://ror.org/00xactn75', 'no_lang_code', 1, 'https://ror.org/00xactn75 Epitaxial Technologies (United States)'),
(30753, 'https://ror.org/00xcd7y72', 'en', 1, 'https://ror.org/00xcd7y72 All India Council for Technical Education'),
(30754, 'https://ror.org/00xectf18', 'no_lang_code', 1, 'https://ror.org/00xectf18 Weston Solutions (United States)'),
(30755, 'https://ror.org/00xfvky15', 'en', 1, 'https://ror.org/00xfvky15 Ohio Sea Grant College Program'),
(30756, 'https://ror.org/00xfzhw50', 'no_lang_code', 1, 'https://ror.org/00xfzhw50 Abeam Technologies (United States)'),
(30757, 'https://ror.org/00xfzzb18', 'no_lang_code', 1, 'https://ror.org/00xfzzb18 Neva Ridge Technologies (United States)'),
(30758, 'https://ror.org/00xn7zn29', 'en', 1, 'https://ror.org/00xn7zn29 Kazakh-American University'),
(30759, 'https://ror.org/00xr6ce64', 'no_lang_code', 1, 'https://ror.org/00xr6ce64 Food Dudes (United Kingdom)'),
(30760, 'https://ror.org/00xr9yb90', 'en', 1, 'https://ror.org/00xr9yb90 Great Lakes Fishery Trust'),
(30761, 'https://ror.org/00xrqbp98', 'no_lang_code', 1, 'https://ror.org/00xrqbp98 Solink (Canada)'),
(30762, 'https://ror.org/00xtdda21', 'no_lang_code', 1, 'https://ror.org/00xtdda21 Monocl (Sweden)'),
(30763, 'https://ror.org/00xtnmz27', 'no_lang_code', 1, 'https://ror.org/00xtnmz27 Hain Celestial (Canada)'),
(30764, 'https://ror.org/00xtpbs68', 'en', 1, 'https://ror.org/00xtpbs68 Claude Leon Foundation'),
(30765, 'https://ror.org/00xw46r83', 'no_lang_code', 1, 'https://ror.org/00xw46r83 Top Notch Building Maintenance (Canada)'),
(30766, 'https://ror.org/00xytbp33', 'en', 1, 'https://ror.org/00xytbp33 Ethiopian Public Health Institute'),
(30767, 'https://ror.org/00xyx0e45', 'no_lang_code', 1, 'https://ror.org/00xyx0e45 ITS (Sweden)'),
(30768, 'https://ror.org/00xz1k913', 'no_lang_code', 1, 'https://ror.org/00xz1k913 Cerpotech (Norway)'),
(30769, 'https://ror.org/00y3nx324', 'no_lang_code', 1, 'https://ror.org/00y3nx324 Auriga Microwave (United States)'),
(30770, 'https://ror.org/00y49kv97', 'no_lang_code', 1, 'https://ror.org/00y49kv97 Microwave Vision Group (United States)'),
(30771, 'https://ror.org/00y65x556', 'en', 1, 'https://ror.org/00y65x556 American Gastroenterological Association'),
(30772, 'https://ror.org/00y6d1y15', 'en', 1, 'https://ror.org/00y6d1y15 ƅkroken Science Park'),
(30773, 'https://ror.org/00y6khe77', 'en', 1, 'https://ror.org/00y6khe77 Ministerstvo zdravotnictví České republiky Ministry of Health'),
(30774, 'https://ror.org/00y81cg83', 'en', 1, 'https://ror.org/00y81cg83 Home Office Y Swyddfa Gartref'),
(30775, 'https://ror.org/00y8dmj81', 'no_lang_code', 1, 'https://ror.org/00y8dmj81 ƚstav Radiačnej Ochrany (Slovakia)'),
(30776, 'https://ror.org/00y9e9y23', 'no_lang_code', 1, 'https://ror.org/00y9e9y23 4C Strategies (Sweden)'),
(30777, 'https://ror.org/00yaw3b91', 'en', 1, 'https://ror.org/00yaw3b91 Arts and Culture Trust'),
(30778, 'https://ror.org/00ybhm522', 'en', 1, 'https://ror.org/00ybhm522 Flight Attendant Medical Research Institute'),
(30779, 'https://ror.org/00yc8qw13', 'no_lang_code', 1, 'https://ror.org/00yc8qw13 Coca Cola (United States)'),
(30780, 'https://ror.org/00yd8v543', 'no_lang_code', 1, 'https://ror.org/00yd8v543 McQ (United States)'),
(30781, 'https://ror.org/00yepf257', 'en', 1, 'https://ror.org/00yepf257 Ovarian Cancer Action'),
(30782, 'https://ror.org/00yhave05', 'en', 1, 'https://ror.org/00yhave05 Estonian History Museum'),
(30783, 'https://ror.org/00yj47665', 'en', 1, 'https://ror.org/00yj47665 Lee County Board of Commissioners'),
(30784, 'https://ror.org/00yjc4530', 'no_lang_code', 1, 'https://ror.org/00yjc4530 Polaris Sensor Technologies (United States)'),
(30785, 'https://ror.org/00yk56168', 'no_lang_code', 1, 'https://ror.org/00yk56168 MARK Resources (United States)'),
(30786, 'https://ror.org/00yp7b787', 'en', 1, 'https://ror.org/00yp7b787 Applied Scientific Research Fund'),
(30787, 'https://ror.org/00ypx0z29', 'en', 1, 'https://ror.org/00ypx0z29 Institute of Physics and Technology'),
(30788, 'https://ror.org/00ypx8t52', 'en', 1, 'https://ror.org/00ypx8t52 Sociaal Historisch Centrum voor Limburg Social Historic Centre for Limburg'),
(30789, 'https://ror.org/00ysvtr77', 'no_lang_code', 1, 'https://ror.org/00ysvtr77 Thales (United States)'),
(30790, 'https://ror.org/00yt1z637', 'en', 1, 'https://ror.org/00yt1z637 Scientific Services'),
(30791, 'https://ror.org/00yt9y116', 'no_lang_code', 1, 'https://ror.org/00yt9y116 Findus (Sweden)');
INSERT INTO `rors` VALUES
(30792, 'https://ror.org/00yv7ry10', 'en', 1, 'https://ror.org/00yv7ry10 Mississippi Department of Rehabilitation Services'),
(30793, 'https://ror.org/00ywaqr80', 'sv', 1, 'https://ror.org/00ywaqr80 Chalmersinvest'),
(30794, 'https://ror.org/00yx0s761', 'en', 1, 'https://ror.org/00yx0s761 First Affiliated Hospital of Liaoning Medical University'),
(30795, 'https://ror.org/00yx8y731', 'no_lang_code', 1, 'https://ror.org/00yx8y731 Excet (United States)'),
(30796, 'https://ror.org/00yxhwc11', 'en', 1, 'https://ror.org/00yxhwc11 Dundee City Council'),
(30797, 'https://ror.org/00z4nbg03', 'en', 1, 'https://ror.org/00z4nbg03 National Environment Agency'),
(30798, 'https://ror.org/00z58wj40', 'no_lang_code', 1, 'https://ror.org/00z58wj40 Allstate (United States)'),
(30799, 'https://ror.org/00z6yks89', 'en', 1, 'https://ror.org/00z6yks89 Thomas College'),
(30800, 'https://ror.org/00z74sn08', 'en', 1, 'https://ror.org/00z74sn08 Departamento de Transporte de Nueva Jersey New Jersey Department of Transportation'),
(30801, 'https://ror.org/00z7yba83', 'en', 1, 'https://ror.org/00z7yba83 New York Academy of Art'),
(30802, 'https://ror.org/00z84b305', 'no_lang_code', 1, 'https://ror.org/00z84b305 Microscan Systems (United States)'),
(30803, 'https://ror.org/00z8w4e54', 'no_lang_code', 1, 'https://ror.org/00z8w4e54 CBC (Canada) SociƩtƩ Radio-Canada'),
(30804, 'https://ror.org/00zam0e96', 'en', 1, 'https://ror.org/00zam0e96 Institut de Pathologie et de GƩnƩtique, Institute of Pathology and Genetics'),
(30805, 'https://ror.org/00zbf3d93', 'en', 1, 'https://ror.org/00zbf3d93 Health Research Council of New Zealand'),
(30806, 'https://ror.org/00zc1hf95', 'en', 1, 'https://ror.org/00zc1hf95 National Sleep Foundation'),
(30807, 'https://ror.org/00zcxra43', 'en', 1, 'https://ror.org/00zcxra43 Namal College'),
(30808, 'https://ror.org/00ze7b628', 'no_lang_code', 1, 'https://ror.org/00ze7b628 Geophex (United States)'),
(30809, 'https://ror.org/00zegpe12', 'no_lang_code', 1, 'https://ror.org/00zegpe12 Morphix Technologies (United States)'),
(30810, 'https://ror.org/00zf1g010', 'en', 1, 'https://ror.org/00zf1g010 Waitt Foundation'),
(30811, 'https://ror.org/00zffwe40', 'no_lang_code', 1, 'https://ror.org/00zffwe40 Xcell (Slovakia)'),
(30812, 'https://ror.org/00zgdb249', 'en', 1, 'https://ror.org/00zgdb249 Science and Engineering Research Council'),
(30813, 'https://ror.org/00zh5wn98', 'en', 1, 'https://ror.org/00zh5wn98 Netherlands Metabolomics Centre'),
(30814, 'https://ror.org/00zjtrn44', 'no_lang_code', 1, 'https://ror.org/00zjtrn44 Jackson Laboratories (India)'),
(30815, 'https://ror.org/00zmn9v56', 'de', 1, 'https://ror.org/00zmn9v56 Ludwig Boltzmann Institut für Epilepsie und Neuromuskuläre Erkrankungen'),
(30816, 'https://ror.org/00zmtvv40', 'no_lang_code', 1, 'https://ror.org/00zmtvv40 Research Support Instruments (United States)'),
(30817, 'https://ror.org/00znyv691', 'en', 1, 'https://ror.org/00znyv691 Danish National Research Foundation'),
(30818, 'https://ror.org/00zqa9n78', 'nl', 1, 'https://ror.org/00zqa9n78 Rode Kruis-Vlaanderen'),
(30819, 'https://ror.org/00zsnqw46', 'en', 1, 'https://ror.org/00zsnqw46 Austrian Museum of Folk Life and Folk Art Ɩsterreichisches Museum für Volkskunde'),
(30820, 'https://ror.org/00zsvs615', 'en', 1, 'https://ror.org/00zsvs615 AccessMatters'),
(30821, 'https://ror.org/00zvm9z02', 'en', 1, 'https://ror.org/00zvm9z02 Tabor College'),
(30822, 'https://ror.org/00zwndh37', 'no_lang_code', 1, 'https://ror.org/00zwndh37 Amtrak (United States)'),
(30823, 'https://ror.org/00zwq0r67', 'en', 1, 'https://ror.org/00zwq0r67 Texas Commission on Environmental Quality'),
(30824, 'https://ror.org/00zzaq393', 'no_lang_code', 1, 'https://ror.org/00zzaq393 Ocean Power Technologies (United Kingdom)'),
(30825, 'https://ror.org/0101kca69', 'no_lang_code', 1, 'https://ror.org/0101kca69 Grace (Canada)'),
(30826, 'https://ror.org/0101xrq71', 'en', 1, 'https://ror.org/0101xrq71 Department of Science and Technology ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ विभाग ą“¶ą“¾ą“øąµą“¤ąµą“° ą“øą“¾ą“™ąµą“•ąµ‡ą“¤ą“æą“• ą“µą“•ąµą“Ŗąµą“Ŗąµ'),
(30827, 'https://ror.org/01044pa52', 'no_lang_code', 1, 'https://ror.org/01044pa52 Lonza (Canada)'),
(30828, 'https://ror.org/0105p2j56', 'en', 1, 'https://ror.org/0105p2j56 National Museum of Natural Science åœ‹ē«‹č‡Ŗē„¶ē§‘å­øåšē‰©é¤Ø'),
(30829, 'https://ror.org/0106d7657', 'en', 1, 'https://ror.org/0106d7657 Korea International Cooperation Agency ķ•œźµ­źµ­ģ œķ˜‘ė „ė‹Ø'),
(30830, 'https://ror.org/01079a392', 'en', 1, 'https://ror.org/01079a392 National Museum of Antiquities Rijksmuseum van Oudheden'),
(30831, 'https://ror.org/0108bjm70', 'no_lang_code', 1, 'https://ror.org/0108bjm70 GlaxoSmithKline (Australia)'),
(30832, 'https://ror.org/0109nma88', 'en', 1, 'https://ror.org/0109nma88 Min-Hwei College of Health Care Management'),
(30833, 'https://ror.org/010bgev76', 'en', 1, 'https://ror.org/010bgev76 Florida College'),
(30834, 'https://ror.org/010bn5e72', 'no_lang_code', 1, 'https://ror.org/010bn5e72 V Corp Technologies (United States)'),
(30835, 'https://ror.org/010bx4f33', 'no_lang_code', 1, 'https://ror.org/010bx4f33 KRD Molecular Technologies (Slovakia)'),
(30836, 'https://ror.org/010csj794', 'no_lang_code', 1, 'https://ror.org/010csj794 RemoteReality (United States)'),
(30837, 'https://ror.org/010e60082', 'no_lang_code', 1, 'https://ror.org/010e60082 Thorpe Seeop (United States)'),
(30838, 'https://ror.org/010eef547', 'en', 1, 'https://ror.org/010eef547 Pathologist Bio-Medical Laboratories'),
(30839, 'https://ror.org/010ees266', 'no_lang_code', 1, 'https://ror.org/010ees266 Sweco (Sweden)'),
(30840, 'https://ror.org/010eh3243', 'no_lang_code', 1, 'https://ror.org/010eh3243 Acentech (United States)'),
(30841, 'https://ror.org/010ggtr76', 'no_lang_code', 1, 'https://ror.org/010ggtr76 Cybosoft (United States)'),
(30842, 'https://ror.org/010gk9n67', 'no_lang_code', 1, 'https://ror.org/010gk9n67 Avantek (Slovakia)'),
(30843, 'https://ror.org/010gvqg61', 'pt', 1, 'https://ror.org/010gvqg61 Museu Paraense EmĆ­lio Goeldi'),
(30844, 'https://ror.org/010h1b677', 'en', 1, 'https://ror.org/010h1b677 Technological University Pakokku'),
(30845, 'https://ror.org/010hd8e46', 'no_lang_code', 1, 'https://ror.org/010hd8e46 Areta (Slovakia)'),
(30846, 'https://ror.org/010hpfk35', 'no_lang_code', 1, 'https://ror.org/010hpfk35 Li Creative Technologies (United States)'),
(30847, 'https://ror.org/010j7cb18', 'no_lang_code', 1, 'https://ror.org/010j7cb18 Sardegna Ricerche (Italy)'),
(30848, 'https://ror.org/010mkx366', 'no_lang_code', 1, 'https://ror.org/010mkx366 APS Materials (United States)'),
(30849, 'https://ror.org/010mtd283', 'en', 1, 'https://ror.org/010mtd283 Elizabeth R. Griffin Research Foundation'),
(30850, 'https://ror.org/010p50m34', 'en', 1, 'https://ror.org/010p50m34 Bernstein Center for Computational Neuroscience Freiburg'),
(30851, 'https://ror.org/010p72t82', 'no_lang_code', 1, 'https://ror.org/010p72t82 Processkontroll (Sweden)'),
(30852, 'https://ror.org/010pdkv94', 'hu', 1, 'https://ror.org/010pdkv94 NógrÔd Megyei Múzeumi Szervezet'),
(30853, 'https://ror.org/010qvsb68', 'no_lang_code', 1, 'https://ror.org/010qvsb68 American GNC (United States)'),
(30854, 'https://ror.org/010s3fx23', 'no_lang_code', 1, 'https://ror.org/010s3fx23 Crunchfish (Sweden)'),
(30855, 'https://ror.org/010smqa50', 'no_lang_code', 1, 'https://ror.org/010smqa50 Spaceflight Industries (United States)'),
(30856, 'https://ror.org/010t10c49', 'no_lang_code', 1, 'https://ror.org/010t10c49 Alta Precision (Canada)'),
(30857, 'https://ror.org/010t23411', 'no_lang_code', 1, 'https://ror.org/010t23411 MTS3 (United States)'),
(30858, 'https://ror.org/010wj6161', 'en', 1, 'https://ror.org/010wj6161 Saint Anthony College of Nursing'),
(30859, 'https://ror.org/010xz5h94', 'no_lang_code', 1, 'https://ror.org/010xz5h94 Mivac Development (Sweden)'),
(30860, 'https://ror.org/010z1he39', 'no_lang_code', 1, 'https://ror.org/010z1he39 Hulteberg (Sweden)'),
(30861, 'https://ror.org/010zr5r54', 'en', 1, 'https://ror.org/010zr5r54 Calgary Construction Association'),
(30862, 'https://ror.org/010zsv180', 'en', 1, 'https://ror.org/010zsv180 Network for Transport Measures'),
(30863, 'https://ror.org/0111qwn65', 'sk', 1, 'https://ror.org/0111qwn65 European Legal Center Európske PrĆ”vne Centrum Občianske Združenie'),
(30864, 'https://ror.org/0113m2308', 'no_lang_code', 1, 'https://ror.org/0113m2308 General Dynamics (Canada)'),
(30865, 'https://ror.org/0113ps589', 'es', 1, 'https://ror.org/0113ps589 KarumbƩ'),
(30866, 'https://ror.org/0113rr846', 'no_lang_code', 1, 'https://ror.org/0113rr846 Analytical Engineering (United States)'),
(30867, 'https://ror.org/011400c72', 'no_lang_code', 1, 'https://ror.org/011400c72 Purelink (Canada)'),
(30868, 'https://ror.org/01140r423', 'en', 1, 'https://ror.org/01140r423 Israel Institute for Advanced Studies'),
(30869, 'https://ror.org/01148ya73', 'no_lang_code', 1, 'https://ror.org/01148ya73 Material Innovations (United States)'),
(30870, 'https://ror.org/0114dtv81', 'no_lang_code', 1, 'https://ror.org/0114dtv81 Advanced Projects Research Incorporated (United States)'),
(30871, 'https://ror.org/0115hrs73', 'en', 1, 'https://ror.org/0115hrs73 Gulf of Mexico Research Initiative'),
(30872, 'https://ror.org/0119mwr04', 'en', 1, 'https://ror.org/0119mwr04 Hungarian Open air Museum'),
(30873, 'https://ror.org/011a33g95', 'en', 1, 'https://ror.org/011a33g95 Baptist College of Florida'),
(30874, 'https://ror.org/011av7236', 'no_lang_code', 1, 'https://ror.org/011av7236 Advanced BioRefinery (Canada)'),
(30875, 'https://ror.org/011b9vp56', 'en', 1, 'https://ror.org/011b9vp56 Ruian People''s Hospital ē‘žå®‰åø‚äŗŗę°‘åŒ»é™¢'),
(30876, 'https://ror.org/011cttk80', 'no_lang_code', 1, 'https://ror.org/011cttk80 Manning Applied Technology (United States)'),
(30877, 'https://ror.org/011fjkk76', 'en', 1, 'https://ror.org/011fjkk76 Indian Association for Cancer Research'),
(30878, 'https://ror.org/011gv1m09', 'no_lang_code', 1, 'https://ror.org/011gv1m09 PhaseSpace (United States)'),
(30879, 'https://ror.org/011hf9620', 'no_lang_code', 1, 'https://ror.org/011hf9620 Nordic Paper (Sweden)'),
(30880, 'https://ror.org/011j46d86', 'no_lang_code', 1, 'https://ror.org/011j46d86 FriGeo (Sweden)'),
(30881, 'https://ror.org/011pv9p44', 'en', 1, 'https://ror.org/011pv9p44 Kootenay Association for Science & Technology'),
(30882, 'https://ror.org/011qdcn44', 'no_lang_code', 1, 'https://ror.org/011qdcn44 Infinia Technology Corporation (United States)'),
(30883, 'https://ror.org/011rzkg17', 'en', 1, 'https://ror.org/011rzkg17 Endocrine Society of Australia'),
(30884, 'https://ror.org/011x6n313', 'en', 1, 'https://ror.org/011x6n313 Leona M. and Harry B. Helmsley Charitable Trust'),
(30885, 'https://ror.org/011y67d23', 'no_lang_code', 1, 'https://ror.org/011y67d23 Novo Nordisk (United States)'),
(30886, 'https://ror.org/011ye7p58', 'en', 1, 'https://ror.org/011ye7p58 NHS Education for Scotland'),
(30887, 'https://ror.org/0120ky124', 'en', 1, 'https://ror.org/0120ky124 National Breast Cancer Foundation'),
(30888, 'https://ror.org/0121dpf30', 'en', 1, 'https://ror.org/0121dpf30 Health Resources and Services Administration'),
(30889, 'https://ror.org/012494h40', 'no_lang_code', 1, 'https://ror.org/012494h40 Mercene Labs (Sweden)'),
(30890, 'https://ror.org/0125jx070', 'en', 1, 'https://ror.org/0125jx070 Henry Luce Foundation'),
(30891, 'https://ror.org/01261x550', 'no_lang_code', 1, 'https://ror.org/01261x550 Planar Energy (United States)'),
(30892, 'https://ror.org/01274hc70', 'no_lang_code', 1, 'https://ror.org/01274hc70 Colorado Engineering (United States)'),
(30893, 'https://ror.org/0128dmh12', 'en', 1, 'https://ror.org/0128dmh12 Hertfordshire Partnership University NHS Foundation Trust'),
(30894, 'https://ror.org/0128rca86', 'no_lang_code', 1, 'https://ror.org/0128rca86 Applied NanoFemto Technologies (United States)'),
(30895, 'https://ror.org/0129yjg29', 'no_lang_code', 1, 'https://ror.org/0129yjg29 Altamira Technologies'),
(30896, 'https://ror.org/012ap0z55', 'no_lang_code', 1, 'https://ror.org/012ap0z55 Equinox (United States)'),
(30897, 'https://ror.org/012bjmg46', 'no_lang_code', 1, 'https://ror.org/012bjmg46 Kinova (Canada)'),
(30898, 'https://ror.org/012c68819', 'no_lang_code', 1, 'https://ror.org/012c68819 Bedford Signals (United States)'),
(30899, 'https://ror.org/012cgww08', 'fr', 1, 'https://ror.org/012cgww08 Univalor'),
(30900, 'https://ror.org/012d8w472', 'en', 1, 'https://ror.org/012d8w472 Australia and New Zealand Banking Group'),
(30901, 'https://ror.org/012daz151', 'en', 1, 'https://ror.org/012daz151 Government of The Gambia'),
(30902, 'https://ror.org/012dbxn21', 'no_lang_code', 1, 'https://ror.org/012dbxn21 Marucco Stoddard Ferenbach and Walsh (United States)'),
(30903, 'https://ror.org/012dygg49', 'no_lang_code', 1, 'https://ror.org/012dygg49 FishEye Software (United States)'),
(30904, 'https://ror.org/012e65633', 'no_lang_code', 1, 'https://ror.org/012e65633 Welkin Sciences (United States)'),
(30905, 'https://ror.org/012e7ew08', 'en', 1, 'https://ror.org/012e7ew08 Centre de la SƩcuritƩ des TƩlƩcommunications Communications Security Establishment'),
(30906, 'https://ror.org/012f2cn18', 'en', 1, 'https://ror.org/012f2cn18 Second Affiliated Hospital of Dalian Medical University'),
(30907, 'https://ror.org/012fc2585', 'no_lang_code', 1, 'https://ror.org/012fc2585 Development Services Security Innovations (Slovakia)'),
(30908, 'https://ror.org/012gvd160', 'no_lang_code', 1, 'https://ror.org/012gvd160 Good Nutrition Ideas (United States)'),
(30909, 'https://ror.org/012j0vk40', 'no_lang_code', 1, 'https://ror.org/012j0vk40 POET Technologies (United States)'),
(30910, 'https://ror.org/012kf4317', 'en', 1, 'https://ror.org/012kf4317 Alexander von Humboldt Foundation Alexander von Humboldt-Stiftung'),
(30911, 'https://ror.org/012m8gv78', 'en', 1, 'https://ror.org/012m8gv78 Luxembourg Institute of Health'),
(30912, 'https://ror.org/012mzw131', 'en', 1, 'https://ror.org/012mzw131 Leverhulme Trust'),
(30913, 'https://ror.org/012njsm94', 'no_lang_code', 1, 'https://ror.org/012njsm94 PositiveID (United States)'),
(30914, 'https://ror.org/012pww143', 'no_lang_code', 1, 'https://ror.org/012pww143 Logos Technologies (United States)'),
(30915, 'https://ror.org/012s3r374', 'en', 1, 'https://ror.org/012s3r374 Ministry of Science, Technology and Innovation'),
(30916, 'https://ror.org/012saek46', 'en', 1, 'https://ror.org/012saek46 Metropolitan College of New York'),
(30917, 'https://ror.org/012w91b90', 'en', 1, 'https://ror.org/012w91b90 Foundation for the Advancement of Mesoamerican Studies'),
(30918, 'https://ror.org/012x04f41', 'no_lang_code', 1, 'https://ror.org/012x04f41 DELL (Ireland)'),
(30919, 'https://ror.org/012y9zp98', 'en', 1, 'https://ror.org/012y9zp98 Commission for Technology and Innovation Kommission für Technologie und Innovation'),
(30920, 'https://ror.org/012yx8878', 'no_lang_code', 1, 'https://ror.org/012yx8878 Pioneer Astronautics (United States)'),
(30921, 'https://ror.org/012zqg360', 'no_lang_code', 1, 'https://ror.org/012zqg360 Wedeven Associates (United States)'),
(30922, 'https://ror.org/0131mn086', 'en', 1, 'https://ror.org/0131mn086 Manitoba Arts Council'),
(30923, 'https://ror.org/0131rtf77', 'no_lang_code', 1, 'https://ror.org/0131rtf77 II-VI (United States)'),
(30924, 'https://ror.org/0132wmv23', 'en', 1, 'https://ror.org/0132wmv23 Changsha Central Hospital'),
(30925, 'https://ror.org/0133h2564', 'en', 1, 'https://ror.org/0133h2564 Dead Sea and Arava Science Center מו"פ ×ž×“×‘×Ø וים המלח'),
(30926, 'https://ror.org/013456141', 'no_lang_code', 1, 'https://ror.org/013456141 Spang (United States)'),
(30927, 'https://ror.org/01354x477', 'no_lang_code', 1, 'https://ror.org/01354x477 Fantastic Data (United States)'),
(30928, 'https://ror.org/01356ja15', 'no_lang_code', 1, 'https://ror.org/01356ja15 Rock West Solutions (United States)'),
(30929, 'https://ror.org/0135d5q90', 'no_lang_code', 1, 'https://ror.org/0135d5q90 Valueguard (Sweden)'),
(30930, 'https://ror.org/0138q7t80', 'en', 1, 'https://ror.org/0138q7t80 Malaysia Genome Institute'),
(30931, 'https://ror.org/013a8zf56', 'no_lang_code', 1, 'https://ror.org/013a8zf56 SynTech Bioenergy (United States)'),
(30932, 'https://ror.org/013g16z83', 'no_lang_code', 1, 'https://ror.org/013g16z83 Accenture (United States)'),
(30933, 'https://ror.org/013g40c36', 'no_lang_code', 1, 'https://ror.org/013g40c36 Sysav South Scania Waste (Sweden)'),
(30934, 'https://ror.org/013gj1r61', 'en', 1, 'https://ror.org/013gj1r61 Gulf Organisation for Research & Development'),
(30935, 'https://ror.org/013grne12', 'en', 1, 'https://ror.org/013grne12 Intensive Care Society'),
(30936, 'https://ror.org/013h40e84', 'no_lang_code', 1, 'https://ror.org/013h40e84 Myers Power Products (United States)'),
(30937, 'https://ror.org/013mr5k03', 'en', 1, 'https://ror.org/013mr5k03 Clinton Health Access Initiative'),
(30938, 'https://ror.org/013qcs149', 'no_lang_code', 1, 'https://ror.org/013qcs149 Snook (United Kingdom)'),
(30939, 'https://ror.org/013qwzt07', 'no_lang_code', 1, 'https://ror.org/013qwzt07 Silicon Technologies (United States)'),
(30940, 'https://ror.org/013r6rv26', 'en', 1, 'https://ror.org/013r6rv26 Foundation for Market Economy'),
(30941, 'https://ror.org/013td7j77', 'no_lang_code', 1, 'https://ror.org/013td7j77 Pragati Synergetic Research (United States)'),
(30942, 'https://ror.org/013x6aj18', 'no_lang_code', 1, 'https://ror.org/013x6aj18 Alpine Helicopters (Canada)'),
(30943, 'https://ror.org/013x6g466', 'en', 1, 'https://ror.org/013x6g466 Canadian Turfgrass Research Foundation'),
(30944, 'https://ror.org/013ybys37', 'en', 1, 'https://ror.org/013ybys37 Museum für angewandte Kunst Museum of Applied Arts'),
(30945, 'https://ror.org/0141dj035', 'en', 1, 'https://ror.org/0141dj035 Satou Hospital'),
(30946, 'https://ror.org/0141yg674', 'en', 1, 'https://ror.org/0141yg674 Gavi'),
(30947, 'https://ror.org/0142xw417', 'no_lang_code', 1, 'https://ror.org/0142xw417 CanBiocin (Canada)'),
(30948, 'https://ror.org/0143g4710', 'en', 1, 'https://ror.org/0143g4710 Lexington School for the Deaf'),
(30949, 'https://ror.org/0143z3t44', 'en', 1, 'https://ror.org/0143z3t44 Canterbury Shaker Village'),
(30950, 'https://ror.org/01448m136', 'en', 1, 'https://ror.org/01448m136 Bombay Veterinary College'),
(30951, 'https://ror.org/0144g8j35', 'no_lang_code', 1, 'https://ror.org/0144g8j35 Applied Thermal Sciences (United States)'),
(30952, 'https://ror.org/0144hyz50', 'no_lang_code', 1, 'https://ror.org/0144hyz50 Island Timberlands (Canada)'),
(30953, 'https://ror.org/01485rp97', 'no_lang_code', 1, 'https://ror.org/01485rp97 Shanghai Hi-Tech joint biotechnology R & D (China)'),
(30954, 'https://ror.org/014hhab16', 'en', 1, 'https://ror.org/014hhab16 Chadacre Agricultural Trust'),
(30955, 'https://ror.org/014k07p29', 'en', 1, 'https://ror.org/014k07p29 Wenzao Ursuline University of Languages ę–‡č—»å¤–čŖžå¤§å­ø'),
(30956, 'https://ror.org/014kebm02', 'no_lang_code', 1, 'https://ror.org/014kebm02 Exfluor Research (United States)'),
(30957, 'https://ror.org/014kx8q82', 'en', 1, 'https://ror.org/014kx8q82 Blue Cross and Blue Shield of North Carolina Foundation'),
(30958, 'https://ror.org/014m7xt26', 'no_lang_code', 1, 'https://ror.org/014m7xt26 Sukra Helitek (United States)'),
(30959, 'https://ror.org/014ngq634', 'en', 1, 'https://ror.org/014ngq634 Australian Federation of Graduate Women New South Wales'),
(30960, 'https://ror.org/014nyvw32', 'pt', 1, 'https://ror.org/014nyvw32 Centro de Educação Profissional em Tecnologia da Informação de Petrópolis'),
(30961, 'https://ror.org/014pyq554', 'en', 1, 'https://ror.org/014pyq554 Australian Historical Association'),
(30962, 'https://ror.org/014rsed66', 'en', 1, 'https://ror.org/014rsed66 Belgian American Educational Foundation'),
(30963, 'https://ror.org/014vgfm17', 'no_lang_code', 1, 'https://ror.org/014vgfm17 Unomaly (Sweden)'),
(30964, 'https://ror.org/014xar778', 'no_lang_code', 1, 'https://ror.org/014xar778 PolyPlus Battery Company (United States)'),
(30965, 'https://ror.org/014xzez86', 'no_lang_code', 1, 'https://ror.org/014xzez86 Immunocore (United Kingdom)'),
(30966, 'https://ror.org/014yc4v19', 'no_lang_code', 1, 'https://ror.org/014yc4v19 Inera (Sweden)'),
(30967, 'https://ror.org/014yfah54', 'no_lang_code', 1, 'https://ror.org/014yfah54 Aurel Systems (Canada)'),
(30968, 'https://ror.org/014ys2k69', 'en', 1, 'https://ror.org/014ys2k69 American Society for Clinical Laboratory Science'),
(30969, 'https://ror.org/014zq2g68', 'no_lang_code', 1, 'https://ror.org/014zq2g68 Cestné stavby Žilina (Slovakia)'),
(30970, 'https://ror.org/014zxe029', 'es', 1, 'https://ror.org/014zxe029 Center for Research and Teaching in Economics Centro de Investigación y Docencia Económicas'),
(30971, 'https://ror.org/014zxhb96', 'en', 1, 'https://ror.org/014zxhb96 Accordia Global Health Foundation'),
(30972, 'https://ror.org/0151men77', 'no_lang_code', 1, 'https://ror.org/0151men77 American Energy Technologies Co (United States)'),
(30973, 'https://ror.org/0152xm391', 'en', 1, 'https://ror.org/0152xm391 Minerva Foundation'),
(30974, 'https://ror.org/0153e3n79', 'no_lang_code', 1, 'https://ror.org/0153e3n79 Varian Medical Systems (Canada)'),
(30975, 'https://ror.org/0153e7534', 'no_lang_code', 1, 'https://ror.org/0153e7534 Interdisciplinary Consulting Corporation (United States)'),
(30976, 'https://ror.org/0153ngy95', 'en', 1, 'https://ror.org/0153ngy95 Southern Research Institute'),
(30977, 'https://ror.org/01545pm61', 'no_lang_code', 1, 'https://ror.org/01545pm61 Analog Devices (United States)'),
(30978, 'https://ror.org/0154hk987', 'no_lang_code', 1, 'https://ror.org/0154hk987 Entegris (United States)'),
(30979, 'https://ror.org/0156qw326', 'no_lang_code', 1, 'https://ror.org/0156qw326 VƩtoquinol (Canada)'),
(30980, 'https://ror.org/0156t7498', 'en', 1, 'https://ror.org/0156t7498 Wildlife Habitat Canada (Canada)'),
(30981, 'https://ror.org/0158ck073', 'en', 1, 'https://ror.org/0158ck073 King''s Fund'),
(30982, 'https://ror.org/0158pg778', 'no_lang_code', 1, 'https://ror.org/0158pg778 SPINEA (Slovakia)'),
(30983, 'https://ror.org/015a8e339', 'no_lang_code', 1, 'https://ror.org/015a8e339 GoldenSUN (Slovakia)'),
(30984, 'https://ror.org/015a91g19', 'no_lang_code', 1, 'https://ror.org/015a91g19 Syntonics (United States)'),
(30985, 'https://ror.org/015d68237', 'no_lang_code', 1, 'https://ror.org/015d68237 Amtec (United States)'),
(30986, 'https://ror.org/015dbac72', 'no_lang_code', 1, 'https://ror.org/015dbac72 Hot Disk (Sweden)'),
(30987, 'https://ror.org/015dgkc47', 'en', 1, 'https://ror.org/015dgkc47 Mathleaks'),
(30988, 'https://ror.org/015frpz66', 'no_lang_code', 1, 'https://ror.org/015frpz66 Diamond Visionics (United States)'),
(30989, 'https://ror.org/015h23t48', 'no_lang_code', 1, 'https://ror.org/015h23t48 Trident Systems (United States)'),
(30990, 'https://ror.org/015j3sb07', 'en', 1, 'https://ror.org/015j3sb07 Sustainable Energy Authority of Ireland'),
(30991, 'https://ror.org/015jn0h55', 'en', 1, 'https://ror.org/015jn0h55 Public and Science'),
(30992, 'https://ror.org/015m1y186', 'no_lang_code', 1, 'https://ror.org/015m1y186 Bonnier (Sweden)'),
(30993, 'https://ror.org/015p9va32', 'en', 1, 'https://ror.org/015p9va32 Singapore Institute for Clinical Sciences'),
(30994, 'https://ror.org/015qzwq73', 'en', 1, 'https://ror.org/015qzwq73 Henan Psychiatric Hospital'),
(30995, 'https://ror.org/015r6y659', 'no_lang_code', 1, 'https://ror.org/015r6y659 CTS Corporation (United States)'),
(30996, 'https://ror.org/015rq8k57', 'no_lang_code', 1, 'https://ror.org/015rq8k57 Doosan Heavy Industries & Construction (South Korea)'),
(30997, 'https://ror.org/015t55b95', 'en', 1, 'https://ror.org/015t55b95 Small Business Administration'),
(30998, 'https://ror.org/015vnk029', 'no_lang_code', 1, 'https://ror.org/015vnk029 Hillrom (United States)'),
(30999, 'https://ror.org/015vz5m81', 'no_lang_code', 1, 'https://ror.org/015vz5m81 Konstrukta - Industry (Slovakia)'),
(31000, 'https://ror.org/015wjhp16', 'en', 1, 'https://ror.org/015wjhp16 New York State Department of Labor'),
(31001, 'https://ror.org/015wjxy04', 'no_lang_code', 1, 'https://ror.org/015wjxy04 Teknikfƶretagen (Sweden)'),
(31002, 'https://ror.org/015wxat58', 'no_lang_code', 1, 'https://ror.org/015wxat58 Quantum Intelligence (United States)'),
(31003, 'https://ror.org/015x8jm48', 'en', 1, 'https://ror.org/015x8jm48 Ministry of Housing and Urban-Rural Development äø­åŽäŗŗę°‘å…±å’Œå›½ä½ęˆæå’ŒåŸŽä¹”å»ŗč®¾éƒØ'),
(31004, 'https://ror.org/015xhag49', 'no_lang_code', 1, 'https://ror.org/015xhag49 Archol (Netherlands)'),
(31005, 'https://ror.org/015yp6v32', 'en', 1, 'https://ror.org/015yp6v32 Maritime Fishermen''s Union'),
(31006, 'https://ror.org/015z1mm31', 'no_lang_code', 1, 'https://ror.org/015z1mm31 Kuraray (Canada)'),
(31007, 'https://ror.org/015z2kc86', 'no_lang_code', 1, 'https://ror.org/015z2kc86 Acconeer (Sweden)'),
(31008, 'https://ror.org/015zgtx05', 'no_lang_code', 1, 'https://ror.org/015zgtx05 Autonomous Solutions (United States)'),
(31009, 'https://ror.org/0160n9y05', 'no_lang_code', 1, 'https://ror.org/0160n9y05 Blatek (United States)'),
(31010, 'https://ror.org/01642ad53', 'no_lang_code', 1, 'https://ror.org/01642ad53 Electronic Warfare Associates (United States)'),
(31011, 'https://ror.org/0165bgf07', 'no_lang_code', 1, 'https://ror.org/0165bgf07 Provexa (Sweden)'),
(31012, 'https://ror.org/0165d9303', 'en', 1, 'https://ror.org/0165d9303 Harish-Chandra Research Institute ą¤¹ą¤°ą„€ą¤¶ą¤šą¤‚ą¤¦ą„ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(31013, 'https://ror.org/01687ga56', 'en', 1, 'https://ror.org/01687ga56 Museum of Work'),
(31014, 'https://ror.org/0168eqd84', 'no_lang_code', 1, 'https://ror.org/0168eqd84 North American Construction Group (Canada)'),
(31015, 'https://ror.org/0169by476', 'en', 1, 'https://ror.org/0169by476 St. Louis Christian College'),
(31016, 'https://ror.org/016a9kk10', 'en', 1, 'https://ror.org/016a9kk10 Institute of Economics Zagreb'),
(31017, 'https://ror.org/016bks835', 'en', 1, 'https://ror.org/016bks835 Spartanburg Methodist College'),
(31018, 'https://ror.org/016cc6840', 'no_lang_code', 1, 'https://ror.org/016cc6840 Mobile Heights (Sweden)'),
(31019, 'https://ror.org/016e1rp63', 'no_lang_code', 1, 'https://ror.org/016e1rp63 Tango Systems (United States)'),
(31020, 'https://ror.org/016e27a17', 'no_lang_code', 1, 'https://ror.org/016e27a17 Gloyer-Taylor Laboratories (United States)'),
(31021, 'https://ror.org/016en1t86', 'en', 1, 'https://ror.org/016en1t86 Foundational Questions Institute'),
(31022, 'https://ror.org/016fy5v41', 'fr', 1, 'https://ror.org/016fy5v41 Association QuƩbƩcoise des Fournisseurs et Utilisateurs de Bitume, Bitume QuƩbec'),
(31023, 'https://ror.org/016hg3c35', 'no_lang_code', 1, 'https://ror.org/016hg3c35 Cyber Defense Agency (United States)'),
(31024, 'https://ror.org/016k8tv59', 'no_lang_code', 1, 'https://ror.org/016k8tv59 Solvay (United States)'),
(31025, 'https://ror.org/016m2r485', 'no_lang_code', 1, 'https://ror.org/016m2r485 Cangzhou Central Hospital'),
(31026, 'https://ror.org/016mfjj65', 'es', 1, 'https://ror.org/016mfjj65 Red TemÔtica de Investigación Cooperativa en CÔncer'),
(31027, 'https://ror.org/016mr6c68', 'no_lang_code', 1, 'https://ror.org/016mr6c68 Akka Technologies (Italy)'),
(31028, 'https://ror.org/016n3e076', 'no_lang_code', 1, 'https://ror.org/016n3e076 Wiotech (Sweden)'),
(31029, 'https://ror.org/016p59286', 'en', 1, 'https://ror.org/016p59286 Jinan City Science and Technology Bureau'),
(31030, 'https://ror.org/016qa9g64', 'en', 1, 'https://ror.org/016qa9g64 Straight Ahead Pictures'),
(31031, 'https://ror.org/016qjmh37', 'no_lang_code', 1, 'https://ror.org/016qjmh37 LINC Design (United States)'),
(31032, 'https://ror.org/016s74507', 'en', 1, 'https://ror.org/016s74507 Wuhan Science and Technology Bureau'),
(31033, 'https://ror.org/016s82z56', 'no_lang_code', 1, 'https://ror.org/016s82z56 Photonic Systems (United States)'),
(31034, 'https://ror.org/016s9js25', 'no_lang_code', 1, 'https://ror.org/016s9js25 Tecnologia e Ricerca Italiana (Italy)'),
(31035, 'https://ror.org/016svkp29', 'no_lang_code', 1, 'https://ror.org/016svkp29 Norsk Hydro (Slovakia)'),
(31036, 'https://ror.org/016xdy456', 'en', 1, 'https://ror.org/016xdy456 Croatian Institute of History'),
(31037, 'https://ror.org/016xr3h51', 'no_lang_code', 1, 'https://ror.org/016xr3h51 Technosoft (United States)'),
(31038, 'https://ror.org/016xz2m71', 'en', 1, 'https://ror.org/016xz2m71 Oriental Institute of Technology'),
(31039, 'https://ror.org/016y8yf14', 'no_lang_code', 1, 'https://ror.org/016y8yf14 OLA Display (Canada)'),
(31040, 'https://ror.org/016ykaq31', 'no_lang_code', 1, 'https://ror.org/016ykaq31 Nissan (United States)'),
(31041, 'https://ror.org/016ywfq33', 'no_lang_code', 1, 'https://ror.org/016ywfq33 Directed Energy Solutions (United States)'),
(31042, 'https://ror.org/016znkc94', 'no_lang_code', 1, 'https://ror.org/016znkc94 Rainford Precision (United Kingdom)'),
(31043, 'https://ror.org/0171fce94', 'no_lang_code', 1, 'https://ror.org/0171fce94 Neya Systems (United States)'),
(31044, 'https://ror.org/01722g748', 'en', 1, 'https://ror.org/01722g748 Aircast Foundation'),
(31045, 'https://ror.org/0172fj584', 'es', 1, 'https://ror.org/0172fj584 Canary Islands Government Gobierno de Canarias'),
(31046, 'https://ror.org/0173k6h24', 'en', 1, 'https://ror.org/0173k6h24 Bugher Foundation'),
(31047, 'https://ror.org/0173t5b71', 'no_lang_code', 1, 'https://ror.org/0173t5b71 Hyteon (Canada)'),
(31048, 'https://ror.org/0174sz637', 'nl', 1, 'https://ror.org/0174sz637 NuGO'),
(31049, 'https://ror.org/0178rhq59', 'no_lang_code', 1, 'https://ror.org/0178rhq59 Varentec (United States)'),
(31050, 'https://ror.org/017a18y80', 'es', 1, 'https://ror.org/017a18y80 Hospital de Poniente'),
(31051, 'https://ror.org/017aem598', 'en', 1, 'https://ror.org/017aem598 Centre Franco-Indien pour la Promotion de la Recherche AvancƩe Indo-French Centre for the Promotion of Advanced Research'),
(31052, 'https://ror.org/017b5z472', 'en', 1, 'https://ror.org/017b5z472 Halifax Regional Water Commission'),
(31053, 'https://ror.org/017cs1c33', 'en', 1, 'https://ror.org/017cs1c33 Chiang Ching-kuo Foundation'),
(31054, 'https://ror.org/017d7xm97', 'en', 1, 'https://ror.org/017d7xm97 Fanjingshan National Nature Reserve'),
(31055, 'https://ror.org/017dk1028', 'no_lang_code', 1, 'https://ror.org/017dk1028 Zolo Technologies (United States)'),
(31056, 'https://ror.org/017ef8252', 'en', 1, 'https://ror.org/017ef8252 Institute for System Programming Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ системного ŠæŃ€Š¾Š³Ń€Š°Š¼Š¼ŠøŃ€Š¾Š²Š°Š½ŠøŃ'),
(31057, 'https://ror.org/017faj253', 'en', 1, 'https://ror.org/017faj253 Instituts für Altersforschung Ludwig Boltzmann Institute for Age Research'),
(31058, 'https://ror.org/017frem55', 'no_lang_code', 1, 'https://ror.org/017frem55 General Nano (United States)'),
(31059, 'https://ror.org/017gd8s27', 'de', 1, 'https://ror.org/017gd8s27 Initiative Minderheiten Tirol'),
(31060, 'https://ror.org/017k1wy04', 'no_lang_code', 1, 'https://ror.org/017k1wy04 Lasen (United States)'),
(31061, 'https://ror.org/017ky5708', 'en', 1, 'https://ror.org/017ky5708 Centre for Healthy Start Initiative'),
(31062, 'https://ror.org/017me6m94', 'no_lang_code', 1, 'https://ror.org/017me6m94 Microwave Monolithics (United States)'),
(31063, 'https://ror.org/017n5tt56', 'no_lang_code', 1, 'https://ror.org/017n5tt56 Tilde (Estonia)'),
(31064, 'https://ror.org/017pbda46', 'en', 1, 'https://ror.org/017pbda46 Slovak Youth Institute'),
(31065, 'https://ror.org/017pe7554', 'no_lang_code', 1, 'https://ror.org/017pe7554 Cubic (United States)'),
(31066, 'https://ror.org/017ry0003', 'no_lang_code', 1, 'https://ror.org/017ry0003 Hermes Medical Solutions (Sweden)'),
(31067, 'https://ror.org/017t6fa07', 'en', 1, 'https://ror.org/017t6fa07 Xinyang College of Agriculture and Forestry äæ”é˜³å†œęž—å­¦é™¢'),
(31068, 'https://ror.org/017w8ej57', 'no_lang_code', 1, 'https://ror.org/017w8ej57 Genetec (United States)'),
(31069, 'https://ror.org/017wp8650', 'no_lang_code', 1, 'https://ror.org/017wp8650 BioTillion (United States)'),
(31070, 'https://ror.org/017xy1565', 'no_lang_code', 1, 'https://ror.org/017xy1565 Optistring (Sweden)'),
(31071, 'https://ror.org/017yczc37', 'en', 1, 'https://ror.org/017yczc37 Society for Family Health Nigeria'),
(31072, 'https://ror.org/01822d048', 'en', 1, 'https://ror.org/01822d048 Norwegian Nurses Organisation'),
(31073, 'https://ror.org/0182em051', 'en', 1, 'https://ror.org/0182em051 Menlo College'),
(31074, 'https://ror.org/0182wtt39', 'no_lang_code', 1, 'https://ror.org/0182wtt39 Fracture Analysis Consultants (United States)'),
(31075, 'https://ror.org/01845n260', 'no_lang_code', 1, 'https://ror.org/01845n260 BIOX (Canada)'),
(31076, 'https://ror.org/0186h8060', 'en', 1, 'https://ror.org/0186h8060 DWI – Leibniz Institute for Interactive Materials DWI – Leibniz-Institut für Interaktive Materialien'),
(31077, 'https://ror.org/018723a84', 'no_lang_code', 1, 'https://ror.org/018723a84 Qpoint Composite (Germany)'),
(31078, 'https://ror.org/01884b046', 'it', 1, 'https://ror.org/01884b046 Azienda Ospedaliera di Cosenza'),
(31079, 'https://ror.org/018c3mn79', 'no_lang_code', 1, 'https://ror.org/018c3mn79 L-3 Aeromet (United States)'),
(31080, 'https://ror.org/018hw2e85', 'no_lang_code', 1, 'https://ror.org/018hw2e85 Fingerprint Cards (Sweden)'),
(31081, 'https://ror.org/018k5nw16', 'no_lang_code', 1, 'https://ror.org/018k5nw16 IAP Research (United States)'),
(31082, 'https://ror.org/018kdpd27', 'en', 1, 'https://ror.org/018kdpd27 Leakey Foundation'),
(31083, 'https://ror.org/018pb7a22', 'no_lang_code', 1, 'https://ror.org/018pb7a22 Excillum (Sweden)'),
(31084, 'https://ror.org/018qgs575', 'no_lang_code', 1, 'https://ror.org/018qgs575 Wireless Edge (Canada)'),
(31085, 'https://ror.org/018tnrf75', 'no_lang_code', 1, 'https://ror.org/018tnrf75 Inorganic Specialists (United States)'),
(31086, 'https://ror.org/018v9ga43', 'no_lang_code', 1, 'https://ror.org/018v9ga43 Computer Multimedia Productions Corporation (United States)'),
(31087, 'https://ror.org/018vkvj59', 'fr', 1, 'https://ror.org/018vkvj59 Conseil RƩgional de Champagne-Ardenne'),
(31088, 'https://ror.org/018w7fz66', 'en', 1, 'https://ror.org/018w7fz66 Royal Free Charity'),
(31089, 'https://ror.org/018wfhg78', 'en', 1, 'https://ror.org/018wfhg78 National Research Council of Thailand'),
(31090, 'https://ror.org/018xens77', 'en', 1, 'https://ror.org/018xens77 Ithaka Harbors'),
(31091, 'https://ror.org/018xr7s92', 'no_lang_code', 1, 'https://ror.org/018xr7s92 EllisDon (Canada)'),
(31092, 'https://ror.org/0192jzd36', 'no_lang_code', 1, 'https://ror.org/0192jzd36 Cartiere Modesto Cardella (Italy)'),
(31093, 'https://ror.org/0193tbt93', 'no_lang_code', 1, 'https://ror.org/0193tbt93 Nordiq (Sweden)'),
(31094, 'https://ror.org/01949vb52', 'no_lang_code', 1, 'https://ror.org/01949vb52 OptiGrate (United States)'),
(31095, 'https://ror.org/01984jp66', 'en', 1, 'https://ror.org/01984jp66 British Interplanetary Society'),
(31096, 'https://ror.org/0198c2b48', 'no_lang_code', 1, 'https://ror.org/0198c2b48 Japan Medi- Mental Institute'),
(31097, 'https://ror.org/0199b8691', 'no_lang_code', 1, 'https://ror.org/0199b8691 NestlƩ (Canada)'),
(31098, 'https://ror.org/0199mb206', 'no_lang_code', 1, 'https://ror.org/0199mb206 Sensera (United States)'),
(31099, 'https://ror.org/019a0gk53', 'en', 1, 'https://ror.org/019a0gk53 Kidney Foundation of Canada La Fondation Canadienne du Rein'),
(31100, 'https://ror.org/019a9pq44', 'no_lang_code', 1, 'https://ror.org/019a9pq44 Schemagi (Sweden)'),
(31101, 'https://ror.org/019ae2j05', 'en', 1, 'https://ror.org/019ae2j05 Save the Elephants'),
(31102, 'https://ror.org/019axjh19', 'fr', 1, 'https://ror.org/019axjh19 ECAM Institut SupƩrieur Industriel'),
(31103, 'https://ror.org/019c00g57', 'en', 1, 'https://ror.org/019c00g57 Academy of Television Arts and Sciences'),
(31104, 'https://ror.org/019ejtj82', 'en', 1, 'https://ror.org/019ejtj82 Budapest History Museum'),
(31105, 'https://ror.org/019gpcj13', 'en', 1, 'https://ror.org/019gpcj13 Patent- och registreringsverket Ruotsin patentti- ja rekisterivirasto Swedish Patent and Registration Office'),
(31106, 'https://ror.org/019mrv168', 'en', 1, 'https://ror.org/019mrv168 New England Law'),
(31107, 'https://ror.org/019naky64', 'no_lang_code', 1, 'https://ror.org/019naky64 PricewaterhouseCoopers (Sweden)'),
(31108, 'https://ror.org/019nmk183', 'no_lang_code', 1, 'https://ror.org/019nmk183 Promimic (Sweden)'),
(31109, 'https://ror.org/019p8h045', 'en', 1, 'https://ror.org/019p8h045 Camille and Henry Dreyfus Foundation'),
(31110, 'https://ror.org/019r2ty74', 'no_lang_code', 1, 'https://ror.org/019r2ty74 OpenEye (Sweden)'),
(31111, 'https://ror.org/019s18q02', 'en', 1, 'https://ror.org/019s18q02 Inspire Foundation'),
(31112, 'https://ror.org/019s3af92', 'no_lang_code', 1, 'https://ror.org/019s3af92 Qunav (United States)'),
(31113, 'https://ror.org/019s9g820', 'no_lang_code', 1, 'https://ror.org/019s9g820 Mechanical Solutions (United States)'),
(31114, 'https://ror.org/019xtsv53', 'en', 1, 'https://ror.org/019xtsv53 Assar Gabrielsson Foundation Stiftelsen Assar Gabrielssons Fond'),
(31115, 'https://ror.org/019ys4329', 'en', 1, 'https://ror.org/019ys4329 Observatory and Planetarium of Maximilian Hell'),
(31116, 'https://ror.org/01a0wa442', 'en', 1, 'https://ror.org/01a0wa442 Student Competitions'),
(31117, 'https://ror.org/01a1mp446', 'en', 1, 'https://ror.org/01a1mp446 Stockholm Innovation & Growth'),
(31118, 'https://ror.org/01a2d7067', 'es', 1, 'https://ror.org/01a2d7067 Instituto Nacional de Salud del NiƱo'),
(31119, 'https://ror.org/01a2jte10', 'en', 1, 'https://ror.org/01a2jte10 Skƶvde Municipality'),
(31120, 'https://ror.org/01a2pr469', 'en', 1, 'https://ror.org/01a2pr469 Naval Research Board ą¤Øą„Œą¤øą„‡ą¤Øą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤¬ą„‹ą¤°ą„ą¤”'),
(31121, 'https://ror.org/01a3m3f05', 'no_lang_code', 1, 'https://ror.org/01a3m3f05 Reservoir Labs (United States)'),
(31122, 'https://ror.org/01a3xvy78', 'no_lang_code', 1, 'https://ror.org/01a3xvy78 Hi-Test Laboratories (United States)'),
(31123, 'https://ror.org/01a3yyc70', 'en', 1, 'https://ror.org/01a3yyc70 Western Australian Museum'),
(31124, 'https://ror.org/01a6nz466', 'no_lang_code', 1, 'https://ror.org/01a6nz466 Milliken & Company (United States)'),
(31125, 'https://ror.org/01a8wwc80', 'no_lang_code', 1, 'https://ror.org/01a8wwc80 Rutter (Canada)'),
(31126, 'https://ror.org/01a961x31', 'no_lang_code', 1, 'https://ror.org/01a961x31 Nano Terra (United States)'),
(31127, 'https://ror.org/01aa99w95', 'no_lang_code', 1, 'https://ror.org/01aa99w95 Austro Control (Austria) Ɩsterreichische Gesellschaft für Zivilluftfahrt'),
(31128, 'https://ror.org/01abtbz07', 'no_lang_code', 1, 'https://ror.org/01abtbz07 Sensible Solutions (Sweden)'),
(31129, 'https://ror.org/01abzsb47', 'no_lang_code', 1, 'https://ror.org/01abzsb47 Prediction Systems (United States)'),
(31130, 'https://ror.org/01acb5n90', 'no_lang_code', 1, 'https://ror.org/01acb5n90 Deep Web Technologies (United States)'),
(31131, 'https://ror.org/01adk7m17', 'en', 1, 'https://ror.org/01adk7m17 Associated Medical Services'),
(31132, 'https://ror.org/01aefzx37', 'en', 1, 'https://ror.org/01aefzx37 Sweden-Japan Foundation'),
(31133, 'https://ror.org/01age2z78', 'no_lang_code', 1, 'https://ror.org/01age2z78 Oxford Instruments (United States)'),
(31134, 'https://ror.org/01ajjyg96', 'en', 1, 'https://ror.org/01ajjyg96 Swedish Standards Institute'),
(31135, 'https://ror.org/01aktk249', 'en', 1, 'https://ror.org/01aktk249 Seven'),
(31136, 'https://ror.org/01an3s209', 'no_lang_code', 1, 'https://ror.org/01an3s209 Technical Resource Group (United States)'),
(31137, 'https://ror.org/01ankh713', 'no_lang_code', 1, 'https://ror.org/01ankh713 First Welding Company (Slovakia)'),
(31138, 'https://ror.org/01aq0x225', 'no_lang_code', 1, 'https://ror.org/01aq0x225 Luxel (United States)'),
(31139, 'https://ror.org/01are4896', 'no_lang_code', 1, 'https://ror.org/01are4896 Van Leer Jerusalem Institute'),
(31140, 'https://ror.org/01arsa478', 'en', 1, 'https://ror.org/01arsa478 Stevens–Henager College'),
(31141, 'https://ror.org/01ary0143', 'no_lang_code', 1, 'https://ror.org/01ary0143 Kairos Future (Sweden)'),
(31142, 'https://ror.org/01avpmh18', 'no_lang_code', 1, 'https://ror.org/01avpmh18 Cdup (Sweden)'),
(31143, 'https://ror.org/01axmbr32', 'de', 1, 'https://ror.org/01axmbr32 Thüringer Aufbaubank'),
(31144, 'https://ror.org/01axmz803', 'no_lang_code', 1, 'https://ror.org/01axmz803 Control Vision (United States)'),
(31145, 'https://ror.org/01b1yxa46', 'no_lang_code', 1, 'https://ror.org/01b1yxa46 MMICMAN (United States)'),
(31146, 'https://ror.org/01b242r72', 'no_lang_code', 1, 'https://ror.org/01b242r72 Sirona Health Solutions (Sweden)'),
(31147, 'https://ror.org/01b3dk794', 'no_lang_code', 1, 'https://ror.org/01b3dk794 Autodesk (Canada)'),
(31148, 'https://ror.org/01b448t83', 'no_lang_code', 1, 'https://ror.org/01b448t83 Brimrose (United States)'),
(31149, 'https://ror.org/01b4acr91', 'fr', 1, 'https://ror.org/01b4acr91 Centre de Recherche en Sciences Animales de Deschambault'),
(31150, 'https://ror.org/01b4ex890', 'no_lang_code', 1, 'https://ror.org/01b4ex890 Digital Scientific (United Kingdom)'),
(31151, 'https://ror.org/01b556x61', 'no_lang_code', 1, 'https://ror.org/01b556x61 Apollo Microwaves (Canada)'),
(31152, 'https://ror.org/01b72rt03', 'en', 1, 'https://ror.org/01b72rt03 Patrick Henry College'),
(31153, 'https://ror.org/01b7fm202', 'en', 1, 'https://ror.org/01b7fm202 Bowel Disease Research Foundation'),
(31154, 'https://ror.org/01bat1a85', 'no_lang_code', 1, 'https://ror.org/01bat1a85 Cytodiagnostics (Canada)'),
(31155, 'https://ror.org/01bch2f85', 'no_lang_code', 1, 'https://ror.org/01bch2f85 Erigo Technologies (United States)'),
(31156, 'https://ror.org/01bcxbz42', 'en', 1, 'https://ror.org/01bcxbz42 Shantou University Mental Health Center'),
(31157, 'https://ror.org/01bdv4312', 'en', 1, 'https://ror.org/01bdv4312 Koninklijk Instituut voor Taal-, Land- en Volkenkunde Royal Netherlands Institute of Southeast Asian and Caribbean Studies'),
(31158, 'https://ror.org/01bes9d74', 'no_lang_code', 1, 'https://ror.org/01bes9d74 CeraNova (United States)'),
(31159, 'https://ror.org/01bfcjz55', 'en', 1, 'https://ror.org/01bfcjz55 West Yangon Technological University į€›į€”į€ŗį€€į€Æį€”į€ŗį€”į€”į€±į€¬į€€į€ŗį€•į€­į€Æį€„į€ŗį€øį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(31160, 'https://ror.org/01bfczx74', 'en', 1, 'https://ror.org/01bfczx74 Washington Space Grant Consortium'),
(31161, 'https://ror.org/01bgg3897', 'no_lang_code', 1, 'https://ror.org/01bgg3897 Anasphere (United States)'),
(31162, 'https://ror.org/01bj7zb33', 'no_lang_code', 1, 'https://ror.org/01bj7zb33 Monogram Technologies (Slovakia)'),
(31163, 'https://ror.org/01bk8ee93', 'en', 1, 'https://ror.org/01bk8ee93 Cancer Society of New Zealand'),
(31164, 'https://ror.org/01bn00n07', 'no_lang_code', 1, 'https://ror.org/01bn00n07 Telescent (United States)'),
(31165, 'https://ror.org/01br46v91', 'no_lang_code', 1, 'https://ror.org/01br46v91 Global Strategic Solutions (United States)'),
(31166, 'https://ror.org/01brvan73', 'no_lang_code', 1, 'https://ror.org/01brvan73 Environetix Technologies (United States)'),
(31167, 'https://ror.org/01bshdg19', 'no_lang_code', 1, 'https://ror.org/01bshdg19 Vinci (Slovakia)'),
(31168, 'https://ror.org/01bstzn19', 'en', 1, 'https://ror.org/01bstzn19 European Cooperation in Science and Technology'),
(31169, 'https://ror.org/01bt34y59', 'en', 1, 'https://ror.org/01bt34y59 College Art Association'),
(31170, 'https://ror.org/01bzmx018', 'no_lang_code', 1, 'https://ror.org/01bzmx018 Morgan Solar (Canada)'),
(31171, 'https://ror.org/01c1aet04', 'no_lang_code', 1, 'https://ror.org/01c1aet04 OSI Systems (United Kingdom)'),
(31172, 'https://ror.org/01c2xde22', 'no_lang_code', 1, 'https://ror.org/01c2xde22 Ducommun (United States)'),
(31173, 'https://ror.org/01c2zcv46', 'no_lang_code', 1, 'https://ror.org/01c2zcv46 OPX Biotechnologies (United States)'),
(31174, 'https://ror.org/01c3dm486', 'no_lang_code', 1, 'https://ror.org/01c3dm486 MetLife (United States)'),
(31175, 'https://ror.org/01c4g5a09', 'no_lang_code', 1, 'https://ror.org/01c4g5a09 HERION Systemtechnik (Germany)'),
(31176, 'https://ror.org/01c6mdq20', 'no_lang_code', 1, 'https://ror.org/01c6mdq20 21CSi (United States)'),
(31177, 'https://ror.org/01c7dcx25', 'no_lang_code', 1, 'https://ror.org/01c7dcx25 Motion Metrics International (Canada)'),
(31178, 'https://ror.org/01c9a4v35', 'no_lang_code', 1, 'https://ror.org/01c9a4v35 Novatio Engineering (United States)'),
(31179, 'https://ror.org/01c9rqr26', 'en', 1, 'https://ror.org/01c9rqr26 VA Tennessee Valley Healthcare System'),
(31180, 'https://ror.org/01cbwn720', 'en', 1, 'https://ror.org/01cbwn720 Institute of Chemical and Engineering Sciences'),
(31181, 'https://ror.org/01ceg2d52', 'en', 1, 'https://ror.org/01ceg2d52 Rhode Island Department of Human Services'),
(31182, 'https://ror.org/01cewrs34', 'en', 1, 'https://ror.org/01cewrs34 Menzies Foundation'),
(31183, 'https://ror.org/01cf25767', 'no_lang_code', 1, 'https://ror.org/01cf25767 Orexo (Sweden)'),
(31184, 'https://ror.org/01cf7yd40', 'no_lang_code', 1, 'https://ror.org/01cf7yd40 Arzon Solar (United States)'),
(31185, 'https://ror.org/01cgkw709', 'no_lang_code', 1, 'https://ror.org/01cgkw709 Delastek (Canada)'),
(31186, 'https://ror.org/01ch4jq10', 'en', 1, 'https://ror.org/01ch4jq10 Chemical Institute of Canada Institut de Chimie du Canada'),
(31187, 'https://ror.org/01chx4j35', 'no_lang_code', 1, 'https://ror.org/01chx4j35 DEKRA Industrial (Sweden)'),
(31188, 'https://ror.org/01ckgz972', 'no_lang_code', 1, 'https://ror.org/01ckgz972 Epsilon Lambda Electronics (United States)'),
(31189, 'https://ror.org/01cmstr73', 'no_lang_code', 1, 'https://ror.org/01cmstr73 Combain Mobile (Sweden)'),
(31190, 'https://ror.org/01cn04b23', 'en', 1, 'https://ror.org/01cn04b23 Minnesota Pollution Control Agency'),
(31191, 'https://ror.org/01cq4cc70', 'no_lang_code', 1, 'https://ror.org/01cq4cc70 Blue Sky Electronics (United States)'),
(31192, 'https://ror.org/01cqwmh55', 'en', 1, 'https://ror.org/01cqwmh55 First People''s Hospital of Foshan'),
(31193, 'https://ror.org/01crvvh84', 'no_lang_code', 1, 'https://ror.org/01crvvh84 MicroStep (Slovakia)'),
(31194, 'https://ror.org/01cswdc74', 'no_lang_code', 1, 'https://ror.org/01cswdc74 AEgis Technologies (United States)'),
(31195, 'https://ror.org/01cv9mb69', 'en', 1, 'https://ror.org/01cv9mb69 Ruxmaniben Deepchand Gardi Medical College'),
(31196, 'https://ror.org/01cvsyf94', 'no_lang_code', 1, 'https://ror.org/01cvsyf94 Labex (Sweden)'),
(31197, 'https://ror.org/01cvt5v65', 'no_lang_code', 1, 'https://ror.org/01cvt5v65 MBM Group (Slovakia)'),
(31198, 'https://ror.org/01cwt3h50', 'no_lang_code', 1, 'https://ror.org/01cwt3h50 Gothia Innovation (Sweden)'),
(31199, 'https://ror.org/01cx8sm26', 'pt', 1, 'https://ror.org/01cx8sm26 Universidade Sociedade Educacional de Santa Catarina'),
(31200, 'https://ror.org/01cxj0y97', 'no_lang_code', 1, 'https://ror.org/01cxj0y97 Nanophase Technologies (United States)'),
(31201, 'https://ror.org/01cxmjx85', 'no_lang_code', 1, 'https://ror.org/01cxmjx85 LoadPath (United States)'),
(31202, 'https://ror.org/01d176154', 'en', 1, 'https://ror.org/01d176154 Jiangsu Institute of Parasitic Diseases ę±Ÿč‹ēœåÆ„ē”Ÿč™«ē—…é˜²ę²»ē ”ē©¶ę‰€'),
(31203, 'https://ror.org/01d183086', 'en', 1, 'https://ror.org/01d183086 National Public Health and Medical Officer Service Állami Népegészségügyi és Tisztiorvosi SzolgÔlat'),
(31204, 'https://ror.org/01d2mj830', 'no_lang_code', 1, 'https://ror.org/01d2mj830 Quantum3D (United States)'),
(31205, 'https://ror.org/01d4rpj46', 'no_lang_code', 1, 'https://ror.org/01d4rpj46 MicroVision (United States)'),
(31206, 'https://ror.org/01d4xtf25', 'no_lang_code', 1, 'https://ror.org/01d4xtf25 Agribrands Purina (Canada)'),
(31207, 'https://ror.org/01d59wc32', 'no_lang_code', 1, 'https://ror.org/01d59wc32 Metna (United States)'),
(31208, 'https://ror.org/01d5zhz86', 'en', 1, 'https://ror.org/01d5zhz86 Cordoba University'),
(31209, 'https://ror.org/01d6wrk87', 'en', 1, 'https://ror.org/01d6wrk87 Education Department of Fujian Province'),
(31210, 'https://ror.org/01d7ehm71', 'no_lang_code', 1, 'https://ror.org/01d7ehm71 Mobile Intelligence (United States)'),
(31211, 'https://ror.org/01d7y2240', 'en', 1, 'https://ror.org/01d7y2240 Ministry of Home Affairs'),
(31212, 'https://ror.org/01dbg2h54', 'no_lang_code', 1, 'https://ror.org/01dbg2h54 Immunsystem (Sweden)'),
(31213, 'https://ror.org/01dbyqv08', 'en', 1, 'https://ror.org/01dbyqv08 Alabama Farmers Federation'),
(31214, 'https://ror.org/01ddf6k31', 'no_lang_code', 1, 'https://ror.org/01ddf6k31 Omnisys Instruments (Sweden)'),
(31215, 'https://ror.org/01dhnm219', 'no_lang_code', 1, 'https://ror.org/01dhnm219 Solvatten (Sweden)'),
(31216, 'https://ror.org/01djnt473', 'en', 1, 'https://ror.org/01djnt473 First Affiliated Hospital of Jiamusi University'),
(31217, 'https://ror.org/01dmrgp19', 'en', 1, 'https://ror.org/01dmrgp19 Departamento de DST, Aids e Hepatites Virais Departamento de Infecciones de Transmisión Sexual, Sida y Hepatitis Virales Department of STD, AIDS and Viral Hepatitis'),
(31218, 'https://ror.org/01ds51411', 'en', 1, 'https://ror.org/01ds51411 Texas Sea Grant College Program'),
(31219, 'https://ror.org/01dtadb22', 'en', 1, 'https://ror.org/01dtadb22 Christensen Fund'),
(31220, 'https://ror.org/01dzyb381', 'en', 1, 'https://ror.org/01dzyb381 Sabah Wildlife Department'),
(31221, 'https://ror.org/01e507517', 'no_lang_code', 1, 'https://ror.org/01e507517 CBot (Sweden)'),
(31222, 'https://ror.org/01e5ksw89', 'en', 1, 'https://ror.org/01e5ksw89 Ontario Clean Water Agency'),
(31223, 'https://ror.org/01e5nrv58', 'no_lang_code', 1, 'https://ror.org/01e5nrv58 Parans (Sweden)'),
(31224, 'https://ror.org/01e7j1q59', 'no_lang_code', 1, 'https://ror.org/01e7j1q59 Advanced Practical Diagnostics (Belgium)'),
(31225, 'https://ror.org/01e89hk47', 'no_lang_code', 1, 'https://ror.org/01e89hk47 Energy Focus (United States)'),
(31226, 'https://ror.org/01e98vj82', 'no_lang_code', 1, 'https://ror.org/01e98vj82 Flexiwaggon (Sweden)'),
(31227, 'https://ror.org/01eb22z31', 'en', 1, 'https://ror.org/01eb22z31 German-Russian Interdisciplinary Science Center'),
(31228, 'https://ror.org/01eb9tc45', 'it', 1, 'https://ror.org/01eb9tc45 Ospedale Sant Antonio'),
(31229, 'https://ror.org/01ebst690', 'no_lang_code', 1, 'https://ror.org/01ebst690 Axela (Canada)');
INSERT INTO `rors` VALUES
(31230, 'https://ror.org/01eggyv13', 'no_lang_code', 1, 'https://ror.org/01eggyv13 Translume (United States)'),
(31231, 'https://ror.org/01ehxp168', 'en', 1, 'https://ror.org/01ehxp168 Kentucky Assistive Technology Services Network'),
(31232, 'https://ror.org/01ekca690', 'no_lang_code', 1, 'https://ror.org/01ekca690 Solvay (Canada)'),
(31233, 'https://ror.org/01emb2995', 'en', 1, 'https://ror.org/01emb2995 Ogden Engineering & Associates'),
(31234, 'https://ror.org/01ent8r08', 'no_lang_code', 1, 'https://ror.org/01ent8r08 Castolin Eutectic (United Kingdom)'),
(31235, 'https://ror.org/01eqzew76', 'no_lang_code', 1, 'https://ror.org/01eqzew76 Antik Telecom (Slovakia)'),
(31236, 'https://ror.org/01er75989', 'en', 1, 'https://ror.org/01er75989 Fraternal Order of Eagles'),
(31237, 'https://ror.org/01erc2q10', 'en', 1, 'https://ror.org/01erc2q10 Suzhou Guangji Hospital'),
(31238, 'https://ror.org/01es9dw61', 'en', 1, 'https://ror.org/01es9dw61 Ministry of Micro, Small and Medium Enterprises ą¤øą„‚ą¤•ą„ą¤·ą„ą¤® , ą¤²ą¤˜ą„ और ą¤®ą¤§ą„ą¤Æą¤® ą¤‰ą¤¦ą„ą¤Æą¤® ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(31239, 'https://ror.org/01etdvs72', 'en', 1, 'https://ror.org/01etdvs72 Wellbeing of Women'),
(31240, 'https://ror.org/01evs2j21', 'no_lang_code', 1, 'https://ror.org/01evs2j21 BMA Engineering (United States)'),
(31241, 'https://ror.org/01evwk382', 'en', 1, 'https://ror.org/01evwk382 American Bureau of Shipping'),
(31242, 'https://ror.org/01ew1f053', 'no_lang_code', 1, 'https://ror.org/01ew1f053 Genias Software (Germany)'),
(31243, 'https://ror.org/01ew97b74', 'no_lang_code', 1, 'https://ror.org/01ew97b74 Optifin Invest (Slovakia)'),
(31244, 'https://ror.org/01ewwhz50', 'no_lang_code', 1, 'https://ror.org/01ewwhz50 Vibratess (United States)'),
(31245, 'https://ror.org/01ey7we33', 'en', 1, 'https://ror.org/01ey7we33 Daqing Oilfield General Hospital'),
(31246, 'https://ror.org/01eznm763', 'no_lang_code', 1, 'https://ror.org/01eznm763 TreadStone Technologies (United States)'),
(31247, 'https://ror.org/01f00bj82', 'no_lang_code', 1, 'https://ror.org/01f00bj82 American Lithium Energy (United States)'),
(31248, 'https://ror.org/01f0gap96', 'no_lang_code', 1, 'https://ror.org/01f0gap96 Technical Products Incorporation (United States)'),
(31249, 'https://ror.org/01f2gxt17', 'no_lang_code', 1, 'https://ror.org/01f2gxt17 Alpha Omega Electromagnetics (United States)'),
(31250, 'https://ror.org/01f3h2833', 'no_lang_code', 1, 'https://ror.org/01f3h2833 Memtronics (United States)'),
(31251, 'https://ror.org/01f3z1j62', 'en', 1, 'https://ror.org/01f3z1j62 Primate Conservation'),
(31252, 'https://ror.org/01f45ap57', 'no_lang_code', 1, 'https://ror.org/01f45ap57 SimWright (United States)'),
(31253, 'https://ror.org/01f55nv10', 'no_lang_code', 1, 'https://ror.org/01f55nv10 Vitrolife (Sweden)'),
(31254, 'https://ror.org/01f5v9z11', 'en', 1, 'https://ror.org/01f5v9z11 Swedish Network for Innovation & Technology Transfer Support'),
(31255, 'https://ror.org/01f8jdn16', 'en', 1, 'https://ror.org/01f8jdn16 Historical Archives'),
(31256, 'https://ror.org/01fbgjv04', 'en', 1, 'https://ror.org/01fbgjv04 Shandong Academy of Agricultural Sciences å±±äøœēœčŠ±ē”Ÿē ”ē©¶ę‰€'),
(31257, 'https://ror.org/01fd86n56', 'en', 1, 'https://ror.org/01fd86n56 Second Hospital of Shandong University'),
(31258, 'https://ror.org/01fda9e47', 'no_lang_code', 1, 'https://ror.org/01fda9e47 Prolysis (United Kingdom)'),
(31259, 'https://ror.org/01fha7a79', 'no_lang_code', 1, 'https://ror.org/01fha7a79 OptiPro Systems (United States)'),
(31260, 'https://ror.org/01fj3w057', 'no_lang_code', 1, 'https://ror.org/01fj3w057 ViTRAK Systems (Canada)'),
(31261, 'https://ror.org/01fjfh042', 'no_lang_code', 1, 'https://ror.org/01fjfh042 ƅF (Sweden)'),
(31262, 'https://ror.org/01fn7me06', 'en', 1, 'https://ror.org/01fn7me06 Ruotsin kansainvƤlisen kehitysyhteistyƶn keskusvirasto Swedish International Development Cooperation Agency'),
(31263, 'https://ror.org/01fn80642', 'no_lang_code', 1, 'https://ror.org/01fn80642 PepsiCo (Canada)'),
(31264, 'https://ror.org/01fncf688', 'es', 1, 'https://ror.org/01fncf688 Institute of Science and Technology of the Federal District Instituto de Ciencia y Tecnologia del Distrito Federal'),
(31265, 'https://ror.org/01fpe8896', 'no_lang_code', 1, 'https://ror.org/01fpe8896 P-mat'),
(31266, 'https://ror.org/01fphh031', 'en', 1, 'https://ror.org/01fphh031 NIHR Leicester-Loughborough Diet, Lifestyle and Physical Activity Biomedical Research Unit'),
(31267, 'https://ror.org/01fpkk097', 'no_lang_code', 1, 'https://ror.org/01fpkk097 MegaWave (United States)'),
(31268, 'https://ror.org/01fqmah26', 'en', 1, 'https://ror.org/01fqmah26 Photonics Electronics Technology Research Association ćƒ•ć‚©ćƒˆćƒ‹ć‚Æć‚¹ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(31269, 'https://ror.org/01frgsc79', 'en', 1, 'https://ror.org/01frgsc79 Association canadienne des carburants Canadian Fuels Association'),
(31270, 'https://ror.org/01fs6c127', 'no_lang_code', 1, 'https://ror.org/01fs6c127 Signal Processing Devices (Sweden)'),
(31271, 'https://ror.org/01fz2rj87', 'nl', 1, 'https://ror.org/01fz2rj87 Nederlandse Brandwonden Stichting'),
(31272, 'https://ror.org/01fz30h98', 'no_lang_code', 1, 'https://ror.org/01fz30h98 IntelliEPI (United States)'),
(31273, 'https://ror.org/01fzcdg14', 'no_lang_code', 1, 'https://ror.org/01fzcdg14 Quasonix (United States)'),
(31274, 'https://ror.org/01g07dr78', 'no_lang_code', 1, 'https://ror.org/01g07dr78 Green Mountain Radio Research (United States)'),
(31275, 'https://ror.org/01g0b8d40', 'no_lang_code', 1, 'https://ror.org/01g0b8d40 Trend Micro (Canada)'),
(31276, 'https://ror.org/01g2jxv60', 'no_lang_code', 1, 'https://ror.org/01g2jxv60 KPM Industries (Canada)'),
(31277, 'https://ror.org/01g3ss027', 'en', 1, 'https://ror.org/01g3ss027 Kerr Foundation'),
(31278, 'https://ror.org/01g6g9h28', 'en', 1, 'https://ror.org/01g6g9h28 Li Ka Shing Foundation'),
(31279, 'https://ror.org/01g790094', 'en', 1, 'https://ror.org/01g790094 American University for Humanities'),
(31280, 'https://ror.org/01g7c0g45', 'en', 1, 'https://ror.org/01g7c0g45 Parapsychology Foundation'),
(31281, 'https://ror.org/01g8r3j92', 'no_lang_code', 1, 'https://ror.org/01g8r3j92 Follicum (Sweden)'),
(31282, 'https://ror.org/01g8xep57', 'no_lang_code', 1, 'https://ror.org/01g8xep57 STI Electronics (United States)'),
(31283, 'https://ror.org/01g9kt839', 'en', 1, 'https://ror.org/01g9kt839 Estonian National Museum'),
(31284, 'https://ror.org/01g9ye888', 'no_lang_code', 1, 'https://ror.org/01g9ye888 Toray International Europe (Germany)'),
(31285, 'https://ror.org/01ga56p68', 'no_lang_code', 1, 'https://ror.org/01ga56p68 Remcom (United States)'),
(31286, 'https://ror.org/01gb56c55', 'it', 1, 'https://ror.org/01gb56c55 Cariplo Foundation Fondazione Cariplo'),
(31287, 'https://ror.org/01gbbz114', 'en', 1, 'https://ror.org/01gbbz114 Westcountry Rivers Trust'),
(31288, 'https://ror.org/01gbk3827', 'es', 1, 'https://ror.org/01gbk3827 Instituto del Mar del Peru'),
(31289, 'https://ror.org/01gbnn715', 'no_lang_code', 1, 'https://ror.org/01gbnn715 Indiana Microelectronics (United States)'),
(31290, 'https://ror.org/01gd7b947', 'en', 1, 'https://ror.org/01gd7b947 Damon Runyon Cancer Research Foundation'),
(31291, 'https://ror.org/01gdbf303', 'en', 1, 'https://ror.org/01gdbf303 Royal College of General Practitioners'),
(31292, 'https://ror.org/01gdjt538', 'en', 1, 'https://ror.org/01gdjt538 CUNY Advanced Science Research Center'),
(31293, 'https://ror.org/01gdspj25', 'en', 1, 'https://ror.org/01gdspj25 Manitoba Canola Growers Association'),
(31294, 'https://ror.org/01gdw4351', 'no_lang_code', 1, 'https://ror.org/01gdw4351 TechFlow (United States)'),
(31295, 'https://ror.org/01gehdq90', 'no_lang_code', 1, 'https://ror.org/01gehdq90 Yad Ben Zvi'),
(31296, 'https://ror.org/01gehgc29', 'no_lang_code', 1, 'https://ror.org/01gehgc29 Ebert Composites (United States)'),
(31297, 'https://ror.org/01gejm974', 'en', 1, 'https://ror.org/01gejm974 American Academy of Audiology Foundation'),
(31298, 'https://ror.org/01gfeyd95', 'en', 1, 'https://ror.org/01gfeyd95 Northumbria Healthcare NHS Foundation Trust'),
(31299, 'https://ror.org/01gffq935', 'no_lang_code', 1, 'https://ror.org/01gffq935 Nyfors (Sweden)'),
(31300, 'https://ror.org/01gjmdw96', 'no_lang_code', 1, 'https://ror.org/01gjmdw96 Alfa Products and Technologies (Belgium)'),
(31301, 'https://ror.org/01gjtys23', 'no', 1, 'https://ror.org/01gjtys23 Trondheim Kommune'),
(31302, 'https://ror.org/01gk7a979', 'no_lang_code', 1, 'https://ror.org/01gk7a979 HyPerComp (United States)'),
(31303, 'https://ror.org/01gp78072', 'no_lang_code', 1, 'https://ror.org/01gp78072 ATA Engineering (United States)'),
(31304, 'https://ror.org/01gpy1v41', 'no_lang_code', 1, 'https://ror.org/01gpy1v41 ExxonMobil (Canada)'),
(31305, 'https://ror.org/01gpyzq83', 'fi', 1, 'https://ror.org/01gpyzq83 Jenny and Antti Wihuri Foundation Jenny ja Antti Wihurin Rahasto'),
(31306, 'https://ror.org/01gqc4379', 'no_lang_code', 1, 'https://ror.org/01gqc4379 Detectify (Sweden)'),
(31307, 'https://ror.org/01gsckf69', 'en', 1, 'https://ror.org/01gsckf69 Central Christian College of the Bible'),
(31308, 'https://ror.org/01gshyb58', 'en', 1, 'https://ror.org/01gshyb58 Qatar Science and Technology Park واحة Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ في قطر'),
(31309, 'https://ror.org/01gtwn585', 'no_lang_code', 1, 'https://ror.org/01gtwn585 Athera (Sweden)'),
(31310, 'https://ror.org/01gycsq30', 'en', 1, 'https://ror.org/01gycsq30 Epilepsy Research UK'),
(31311, 'https://ror.org/01h06db67', 'en', 1, 'https://ror.org/01h06db67 Institute of Informatics and Statistics InŔtitút informatiky a Ŕtatistiky'),
(31312, 'https://ror.org/01h1amn32', 'no_lang_code', 1, 'https://ror.org/01h1amn32 Hazenberg Archeologie (Netherlands)'),
(31313, 'https://ror.org/01h439d80', 'en', 1, 'https://ror.org/01h439d80 Third Hospital of Nanchang'),
(31314, 'https://ror.org/01h6a1346', 'no_lang_code', 1, 'https://ror.org/01h6a1346 D&S Consultants (United States)'),
(31315, 'https://ror.org/01h6vn910', 'no_lang_code', 1, 'https://ror.org/01h6vn910 GTVT (Slovakia)'),
(31316, 'https://ror.org/01h7phx34', 'no_lang_code', 1, 'https://ror.org/01h7phx34 ITS Electronics (Canada)'),
(31317, 'https://ror.org/01h7rcq14', 'no_lang_code', 1, 'https://ror.org/01h7rcq14 Wave Computation Technologies (United States)'),
(31318, 'https://ror.org/01h8vbd96', 'en', 1, 'https://ror.org/01h8vbd96 Korea Drug Development Fund'),
(31319, 'https://ror.org/01hb8gc46', 'no_lang_code', 1, 'https://ror.org/01hb8gc46 Danubia NanoTech (Slovakia)'),
(31320, 'https://ror.org/01hgpf702', 'en', 1, 'https://ror.org/01hgpf702 Pan African Tsetse and Trypanosomiasis Eradication Campaign'),
(31321, 'https://ror.org/01hht6e57', 'en', 1, 'https://ror.org/01hht6e57 Bethune Second Hospital'),
(31322, 'https://ror.org/01hj26z68', 'en', 1, 'https://ror.org/01hj26z68 Richmond County Savings Foundation'),
(31323, 'https://ror.org/01hj33v12', 'no_lang_code', 1, 'https://ror.org/01hj33v12 Echo Ridge (United States)'),
(31324, 'https://ror.org/01hkbh902', 'en', 1, 'https://ror.org/01hkbh902 Scottish Rite Masonic Museum and Library'),
(31325, 'https://ror.org/01hmp5p66', 'no_lang_code', 1, 'https://ror.org/01hmp5p66 Ubisoft (Canada)'),
(31326, 'https://ror.org/01hqp1g48', 'en', 1, 'https://ror.org/01hqp1g48 Hochschule Kehl University of Applied Sciences Kehl'),
(31327, 'https://ror.org/01hr92802', 'no_lang_code', 1, 'https://ror.org/01hr92802 Hontek (United States)'),
(31328, 'https://ror.org/01hsj7470', 'no_lang_code', 1, 'https://ror.org/01hsj7470 Securboration (United States)'),
(31329, 'https://ror.org/01hwjc346', 'en', 1, 'https://ror.org/01hwjc346 Concern Foundation'),
(31330, 'https://ror.org/01hx6v225', 'en', 1, 'https://ror.org/01hx6v225 Champlain College'),
(31331, 'https://ror.org/01hyee328', 'da', 1, 'https://ror.org/01hyee328 Dansk RĆøde Kors'),
(31332, 'https://ror.org/01j0cm669', 'en', 1, 'https://ror.org/01j0cm669 China Space Foundation'),
(31333, 'https://ror.org/01j1d9a35', 'no_lang_code', 1, 'https://ror.org/01j1d9a35 Filtration Solutions (United States)'),
(31334, 'https://ror.org/01j4h9t83', 'fr', 1, 'https://ror.org/01j4h9t83 Institut de Recherche pour le DƩveloppement Institute of Research for the Development'),
(31335, 'https://ror.org/01j5et233', 'no_lang_code', 1, 'https://ror.org/01j5et233 Numerica Corporation (United States)'),
(31336, 'https://ror.org/01j6fq995', 'en', 1, 'https://ror.org/01j6fq995 Wosinsky Mór County Museum'),
(31337, 'https://ror.org/01j78w442', 'en', 1, 'https://ror.org/01j78w442 Germantown Academy'),
(31338, 'https://ror.org/01j7tpx52', 'no_lang_code', 1, 'https://ror.org/01j7tpx52 DSM (Austria)'),
(31339, 'https://ror.org/01j8arr96', 'no_lang_code', 1, 'https://ror.org/01j8arr96 Union Gas (Canada)'),
(31340, 'https://ror.org/01ja11s84', 'en', 1, 'https://ror.org/01ja11s84 School of the Museum of Fine Arts'),
(31341, 'https://ror.org/01ja2b492', 'no_lang_code', 1, 'https://ror.org/01ja2b492 Besab (Sweden)'),
(31342, 'https://ror.org/01jbchh45', 'no_lang_code', 1, 'https://ror.org/01jbchh45 Essilor (Canada)'),
(31343, 'https://ror.org/01jcqzd89', 'en', 1, 'https://ror.org/01jcqzd89 Chongqing City Mental Health Center'),
(31344, 'https://ror.org/01je3h843', 'en', 1, 'https://ror.org/01je3h843 Institute for New Economic Thinking'),
(31345, 'https://ror.org/01jeg6k27', 'no_lang_code', 1, 'https://ror.org/01jeg6k27 Varta Micro Innovation (Austria)'),
(31346, 'https://ror.org/01jg6rj30', 'en', 1, 'https://ror.org/01jg6rj30 College of the Albemarle'),
(31347, 'https://ror.org/01jgp6d54', 'it', 1, 'https://ror.org/01jgp6d54 Istituto di Astrofisica Spaziale e Fisica Cosmica di Milano'),
(31348, 'https://ror.org/01jjrt576', 'no_lang_code', 1, 'https://ror.org/01jjrt576 Sun Gro Horticulture (Canada)'),
(31349, 'https://ror.org/01jn0jb26', 'no_lang_code', 1, 'https://ror.org/01jn0jb26 Colas (Canada)'),
(31350, 'https://ror.org/01jp7k726', 'en', 1, 'https://ror.org/01jp7k726 Asian Development Research Institute'),
(31351, 'https://ror.org/01js9sf40', 'en', 1, 'https://ror.org/01js9sf40 Maine Health Access Foundation'),
(31352, 'https://ror.org/01jtfaj68', 'no_lang_code', 1, 'https://ror.org/01jtfaj68 Andec Manufacturing (Canada)'),
(31353, 'https://ror.org/01jvd8304', 'en', 1, 'https://ror.org/01jvd8304 Provincial Health Services Authority'),
(31354, 'https://ror.org/01jw22w13', 'no_lang_code', 1, 'https://ror.org/01jw22w13 ContextVision (Sweden)'),
(31355, 'https://ror.org/01jwwmn11', 'no_lang_code', 1, 'https://ror.org/01jwwmn11 SwedNanoTech (Sweden)'),
(31356, 'https://ror.org/01jzqw278', 'no_lang_code', 1, 'https://ror.org/01jzqw278 Helios Remote Sensing Systems (United States)'),
(31357, 'https://ror.org/01k0xxh86', 'no_lang_code', 1, 'https://ror.org/01k0xxh86 Green Cross (South Korea)'),
(31358, 'https://ror.org/01k1x3b35', 'en', 1, 'https://ror.org/01k1x3b35 Zhuhai People''s Hospital ē ęµ·åø‚äŗŗę°‘åŒ»é™¢'),
(31359, 'https://ror.org/01k3hq685', 'en', 1, 'https://ror.org/01k3hq685 Zhongda Hospital Southeast University'),
(31360, 'https://ror.org/01k6cv303', 'no_lang_code', 1, 'https://ror.org/01k6cv303 API Technologies (United States)'),
(31361, 'https://ror.org/01k7j5430', 'no_lang_code', 1, 'https://ror.org/01k7j5430 Design Interactive (United States)'),
(31362, 'https://ror.org/01k7rsf15', 'no_lang_code', 1, 'https://ror.org/01k7rsf15 Adsantec (United States)'),
(31363, 'https://ror.org/01k89ak47', 'en', 1, 'https://ror.org/01k89ak47 Agriaquaculture Nutritional Genomic Center'),
(31364, 'https://ror.org/01k8fjb77', 'no_lang_code', 1, 'https://ror.org/01k8fjb77 OverHorizon (Sweden)'),
(31365, 'https://ror.org/01k999n94', 'en', 1, 'https://ror.org/01k999n94 University of Calgary in Qatar'),
(31366, 'https://ror.org/01ka9rn66', 'en', 1, 'https://ror.org/01ka9rn66 Ministry of Gender Equality and Family ėŒ€ķ•œėÆ¼źµ­ 여성가씱부'),
(31367, 'https://ror.org/01kae7563', 'en', 1, 'https://ror.org/01kae7563 DƩpartement des transports du michigan Michigan Department of Transportation'),
(31368, 'https://ror.org/01kc9n234', 'no_lang_code', 1, 'https://ror.org/01kc9n234 BGC Engineering (Canada)'),
(31369, 'https://ror.org/01kcex014', 'no_lang_code', 1, 'https://ror.org/01kcex014 Optimization Technology (United States)'),
(31370, 'https://ror.org/01kcva023', 'en', 1, 'https://ror.org/01kcva023 Ministry of Education ę–°åŠ å”ę•™č‚²éƒØ'),
(31371, 'https://ror.org/01kd5m353', 'sv', 1, 'https://ror.org/01kd5m353 VINNOVA, Verket fƶr innovationssystem'),
(31372, 'https://ror.org/01kgxxx41', 'en', 1, 'https://ror.org/01kgxxx41 North Carolina Sea Grant'),
(31373, 'https://ror.org/01khmxb55', 'en', 1, 'https://ror.org/01khmxb55 Jiangyin People''s Hospital'),
(31374, 'https://ror.org/01kjq0112', 'en', 1, 'https://ror.org/01kjq0112 Foundation for Advancement of International Science å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(31375, 'https://ror.org/01kjwc090', 'en', 1, 'https://ror.org/01kjwc090 Musicians Emergency Fund'),
(31376, 'https://ror.org/01kjwqy11', 'en', 1, 'https://ror.org/01kjwqy11 Ministry of Human Resources and Social Security äø­åŽäŗŗę°‘å…±å’Œå›½äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœéƒØ'),
(31377, 'https://ror.org/01kkxsr20', 'no_lang_code', 1, 'https://ror.org/01kkxsr20 Staal Technisch Centrum (Netherlands)'),
(31378, 'https://ror.org/01kmmtp84', 'en', 1, 'https://ror.org/01kmmtp84 Programs for Assessment of Technology in Health Research Institute'),
(31379, 'https://ror.org/01knxge52', 'no_lang_code', 1, 'https://ror.org/01knxge52 Ericsson (United Kingdom)'),
(31380, 'https://ror.org/01kpjmx04', 'en', 1, 'https://ror.org/01kpjmx04 Carlsberg Foundation'),
(31381, 'https://ror.org/01kqc7c98', 'no_lang_code', 1, 'https://ror.org/01kqc7c98 Pellion Technologies (United States)'),
(31382, 'https://ror.org/01ks4mk39', 'no_lang_code', 1, 'https://ror.org/01ks4mk39 Realtime Embedded (Sweden)'),
(31383, 'https://ror.org/01ksx6c70', 'en', 1, 'https://ror.org/01ksx6c70 Connecticut Sea Grant'),
(31384, 'https://ror.org/01kt8dn14', 'en', 1, 'https://ror.org/01kt8dn14 Weihai City Mental Health Center'),
(31385, 'https://ror.org/01kv3wg35', 'en', 1, 'https://ror.org/01kv3wg35 Kavli Institute for Theoretical Sciences 中国科学院理论物理研究所'),
(31386, 'https://ror.org/01kv42962', 'en', 1, 'https://ror.org/01kv42962 Asparagus Farmers of Ontario'),
(31387, 'https://ror.org/01kvhrk82', 'no_lang_code', 1, 'https://ror.org/01kvhrk82 PTC (Canada)'),
(31388, 'https://ror.org/01kvnds84', 'no_lang_code', 1, 'https://ror.org/01kvnds84 SCS Engineering (United States)'),
(31389, 'https://ror.org/01kw00110', 'no_lang_code', 1, 'https://ror.org/01kw00110 Applied Precision (Slovakia)'),
(31390, 'https://ror.org/01kxxsk90', 'no_lang_code', 1, 'https://ror.org/01kxxsk90 Klimator (Sweden)'),
(31391, 'https://ror.org/01kzsq416', 'en', 1, 'https://ror.org/01kzsq416 First People''s Hospital of Kunshan ę˜†å±±åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(31392, 'https://ror.org/01m05be67', 'no_lang_code', 1, 'https://ror.org/01m05be67 Scientific Forming Technologies Corporation (United States)'),
(31393, 'https://ror.org/01m05qy31', 'sv', 1, 'https://ror.org/01m05qy31 Svensk FƄgel Service'),
(31394, 'https://ror.org/01m0js248', 'no_lang_code', 1, 'https://ror.org/01m0js248 24M (United States)'),
(31395, 'https://ror.org/01m290237', 'no_lang_code', 1, 'https://ror.org/01m290237 Lindsay Associates Architects (United States)'),
(31396, 'https://ror.org/01m293240', 'no_lang_code', 1, 'https://ror.org/01m293240 Survice Engineering (United States)'),
(31397, 'https://ror.org/01m5ew684', 'en', 1, 'https://ror.org/01m5ew684 Education New Zealand'),
(31398, 'https://ror.org/01m5zqn93', 'no_lang_code', 1, 'https://ror.org/01m5zqn93 Ipso Facto (France)'),
(31399, 'https://ror.org/01m7awg34', 'en', 1, 'https://ror.org/01m7awg34 Clayton College of Natural Health'),
(31400, 'https://ror.org/01m90ba17', 'de', 1, 'https://ror.org/01m90ba17 Filmarchiv Austria'),
(31401, 'https://ror.org/01ma57r88', 'en', 1, 'https://ror.org/01ma57r88 Smith Richardson Foundation'),
(31402, 'https://ror.org/01mart011', 'no_lang_code', 1, 'https://ror.org/01mart011 ReliaCoat Technologies (United States)'),
(31403, 'https://ror.org/01mcgws81', 'no_lang_code', 1, 'https://ror.org/01mcgws81 ObjectVideo (United States)'),
(31404, 'https://ror.org/01mcvy510', 'en', 1, 'https://ror.org/01mcvy510 Harvard College Observatory'),
(31405, 'https://ror.org/01mcwn339', 'en', 1, 'https://ror.org/01mcwn339 Hope for Depression Research Foundation'),
(31406, 'https://ror.org/01mdjbm03', 'en', 1, 'https://ror.org/01mdjbm03 Fourth Hospital of Hebei Medical University ę²³åŒ—åŒ»ē§‘å¤§å­¦ē¬¬å››åŒ»é™¢'),
(31407, 'https://ror.org/01mf7pb88', 'no_lang_code', 1, 'https://ror.org/01mf7pb88 Expert Microsystems (United States)'),
(31408, 'https://ror.org/01mj08x55', 'en', 1, 'https://ror.org/01mj08x55 College of Policing'),
(31409, 'https://ror.org/01mpknn43', 'no_lang_code', 1, 'https://ror.org/01mpknn43 iAnalysis (Japan)'),
(31410, 'https://ror.org/01mqf7t37', 'no_lang_code', 1, 'https://ror.org/01mqf7t37 DragoonITCN (United States)'),
(31411, 'https://ror.org/01mqp0v57', 'en', 1, 'https://ror.org/01mqp0v57 Montana Economic Revitalization and Development Institute'),
(31412, 'https://ror.org/01mqvzc02', 'en', 1, 'https://ror.org/01mqvzc02 Newfoundland Aquaculture Industry Association'),
(31413, 'https://ror.org/01mre6t58', 'en', 1, 'https://ror.org/01mre6t58 Pan African Urological Surgeons Association'),
(31414, 'https://ror.org/01mrzcs29', 'no_lang_code', 1, 'https://ror.org/01mrzcs29 UniCredit (United States)'),
(31415, 'https://ror.org/01mttx554', 'no_lang_code', 1, 'https://ror.org/01mttx554 Immunicum (Sweden)'),
(31416, 'https://ror.org/01mv87107', 'no_lang_code', 1, 'https://ror.org/01mv87107 Top-Vu Technology (United States)'),
(31417, 'https://ror.org/01mwnwc77', 'en', 1, 'https://ror.org/01mwnwc77 Manchester Art Gallery'),
(31418, 'https://ror.org/01my2ss20', 'en', 1, 'https://ror.org/01my2ss20 Hult International Business School'),
(31419, 'https://ror.org/01mynms41', 'en', 1, 'https://ror.org/01mynms41 Temeke Municipal Council'),
(31420, 'https://ror.org/01n1w8781', 'no_lang_code', 1, 'https://ror.org/01n1w8781 Symetrix (United States)'),
(31421, 'https://ror.org/01n28jn45', 'en', 1, 'https://ror.org/01n28jn45 Swedish National Bank'),
(31422, 'https://ror.org/01n29bn70', 'no_lang_code', 1, 'https://ror.org/01n29bn70 Peregrine Falcon (United States)'),
(31423, 'https://ror.org/01n3v7c44', 'en', 1, 'https://ror.org/01n3v7c44 Liaoning Provincial People''s Hospital č¾½å®ēœäŗŗę°‘åŒ»é™¢'),
(31424, 'https://ror.org/01n54ck79', 'en', 1, 'https://ror.org/01n54ck79 Dutch Dairy Association Nederlandse Zuivel Organisatie'),
(31425, 'https://ror.org/01n5m5w72', 'no_lang_code', 1, 'https://ror.org/01n5m5w72 Corporate Executive Board (United States)'),
(31426, 'https://ror.org/01n5yhf55', 'no_lang_code', 1, 'https://ror.org/01n5yhf55 Apogee Technology (United States)'),
(31427, 'https://ror.org/01n673471', 'en', 1, 'https://ror.org/01n673471 Corcoran College of Art and Design'),
(31428, 'https://ror.org/01n6agm35', 'en', 1, 'https://ror.org/01n6agm35 Minnesota Sea Grant'),
(31429, 'https://ror.org/01n6v0a11', 'no_lang_code', 1, 'https://ror.org/01n6v0a11 Dalian Municipal Central Hospital å¤§čæžåø‚äø­åæƒåŒ»é™¢'),
(31430, 'https://ror.org/01na0pb61', 'fr', 1, 'https://ror.org/01na0pb61 Institut de Biologie Physico-Chimique'),
(31431, 'https://ror.org/01nacxm37', 'en', 1, 'https://ror.org/01nacxm37 Somerset County Council'),
(31432, 'https://ror.org/01nedp435', 'no_lang_code', 1, 'https://ror.org/01nedp435 Discovery Machine (United States)'),
(31433, 'https://ror.org/01nf1vh59', 'en', 1, 'https://ror.org/01nf1vh59 EDUCON'),
(31434, 'https://ror.org/01ngvra90', 'no_lang_code', 1, 'https://ror.org/01ngvra90 Sony Digital Audio Disc Corporation (Austria)'),
(31435, 'https://ror.org/01nh4s312', 'en', 1, 'https://ror.org/01nh4s312 Government of Slovakia'),
(31436, 'https://ror.org/01njdr168', 'en', 1, 'https://ror.org/01njdr168 Finnish Academy of Science and Letters'),
(31437, 'https://ror.org/01nk5jw70', 'no_lang_code', 1, 'https://ror.org/01nk5jw70 Bjarga (Sweden)'),
(31438, 'https://ror.org/01nk8bv65', 'no_lang_code', 1, 'https://ror.org/01nk8bv65 HPS Simulations (United States)'),
(31439, 'https://ror.org/01np3hz61', 'no_lang_code', 1, 'https://ror.org/01np3hz61 Silatech'),
(31440, 'https://ror.org/01npwtv09', 'en', 1, 'https://ror.org/01npwtv09 Prostate Cancer Foundation'),
(31441, 'https://ror.org/01nr1y793', 'no_lang_code', 1, 'https://ror.org/01nr1y793 LinQuest (United States)'),
(31442, 'https://ror.org/01nsg6818', 'no_lang_code', 1, 'https://ror.org/01nsg6818 Simpson Biotech Company (Taiwan)'),
(31443, 'https://ror.org/01nt9tz90', 'no_lang_code', 1, 'https://ror.org/01nt9tz90 Accurate Automation (United States)'),
(31444, 'https://ror.org/01nv5t982', 'no_lang_code', 1, 'https://ror.org/01nv5t982 IncSys (United States)'),
(31445, 'https://ror.org/01nvd0q76', 'en', 1, 'https://ror.org/01nvd0q76 Chettinad Health City'),
(31446, 'https://ror.org/01ny0n591', 'no_lang_code', 1, 'https://ror.org/01ny0n591 Thermavant (United States)'),
(31447, 'https://ror.org/01nz1gv09', 'no_lang_code', 1, 'https://ror.org/01nz1gv09 Peerless Technologies (United States)'),
(31448, 'https://ror.org/01nz9v648', 'no_lang_code', 1, 'https://ror.org/01nz9v648 HiFunda (United States)'),
(31449, 'https://ror.org/01p232496', 'la', 1, 'https://ror.org/01p232496 Fons Vitae Lyceum'),
(31450, 'https://ror.org/01p2rmv38', 'no_lang_code', 1, 'https://ror.org/01p2rmv38 DataSoft (United States)'),
(31451, 'https://ror.org/01p30rj34', 'en', 1, 'https://ror.org/01p30rj34 Calcutta State Transport Corporation'),
(31452, 'https://ror.org/01p369f26', 'nl', 1, 'https://ror.org/01p369f26 AA Brediusstichting'),
(31453, 'https://ror.org/01p7q7732', 'no_lang_code', 1, 'https://ror.org/01p7q7732 Senzime (Sweden)'),
(31454, 'https://ror.org/01p7x7924', 'en', 1, 'https://ror.org/01p7x7924 San Joaquin College of Law'),
(31455, 'https://ror.org/01p8v8m79', 'no_lang_code', 1, 'https://ror.org/01p8v8m79 Plasmonics (United States)'),
(31456, 'https://ror.org/01p92gv96', 'en', 1, 'https://ror.org/01p92gv96 Fourth People''s Hospital of Liaocheng'),
(31457, 'https://ror.org/01pckwj65', 'en', 1, 'https://ror.org/01pckwj65 Escuela de Cine de Nueva York New York Film Academy'),
(31458, 'https://ror.org/01pcpwp52', 'no_lang_code', 1, 'https://ror.org/01pcpwp52 RPM International (Canada)'),
(31459, 'https://ror.org/01pcq0j68', 'no_lang_code', 1, 'https://ror.org/01pcq0j68 Cargill (United States)'),
(31460, 'https://ror.org/01pd7my79', 'en', 1, 'https://ror.org/01pd7my79 Krebsliga Schweiz Ligue Suisse Contre le Cancer Swiss Cancer League'),
(31461, 'https://ror.org/01peehd17', 'no_lang_code', 1, 'https://ror.org/01peehd17 Cimarron Software (United States)'),
(31462, 'https://ror.org/01pey0n03', 'et', 1, 'https://ror.org/01pey0n03 VƤhiuuringute Tehnoloogia Arenduskeskus'),
(31463, 'https://ror.org/01pg4hf90', 'no_lang_code', 1, 'https://ror.org/01pg4hf90 Beck Engineering (United States)'),
(31464, 'https://ror.org/01pj5nn22', 'en', 1, 'https://ror.org/01pj5nn22 Stanley Medical Research Institute'),
(31465, 'https://ror.org/01pkpj777', 'en', 1, 'https://ror.org/01pkpj777 Sontag Foundation'),
(31466, 'https://ror.org/01pkxvt59', 'no_lang_code', 1, 'https://ror.org/01pkxvt59 Anamet (United States)'),
(31467, 'https://ror.org/01pn5vj05', 'no_lang_code', 1, 'https://ror.org/01pn5vj05 Search-Lab (Hungary)'),
(31468, 'https://ror.org/01pn7y126', 'no_lang_code', 1, 'https://ror.org/01pn7y126 POC Tech Group (United States)'),
(31469, 'https://ror.org/01pp7nc38', 'no_lang_code', 1, 'https://ror.org/01pp7nc38 Redox Power Systems (United States)'),
(31470, 'https://ror.org/01ppg1t70', 'en', 1, 'https://ror.org/01ppg1t70 British Association for Psychopharmacology'),
(31471, 'https://ror.org/01pqy3846', 'en', 1, 'https://ror.org/01pqy3846 Larry Ellison Foundation'),
(31472, 'https://ror.org/01ptpr676', 'en', 1, 'https://ror.org/01ptpr676 State Committee of Science Ō³Õ«ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ ÕÆÕøÕ“Õ«ÕæÕ„'),
(31473, 'https://ror.org/01pw4qf65', 'no_lang_code', 1, 'https://ror.org/01pw4qf65 Accipiter Systems (United States)'),
(31474, 'https://ror.org/01pw8kd98', 'no_lang_code', 1, 'https://ror.org/01pw8kd98 Vyvoj Martin (Slovakia)'),
(31475, 'https://ror.org/01pwgd096', 'en', 1, 'https://ror.org/01pwgd096 SKA Observatory'),
(31476, 'https://ror.org/01pwte708', 'no_lang_code', 1, 'https://ror.org/01pwte708 Verlag Holzhausen (Austria)'),
(31477, 'https://ror.org/01px5z495', 'no_lang_code', 1, 'https://ror.org/01px5z495 Tempest Technologies (United States)'),
(31478, 'https://ror.org/01q0vs094', 'en', 1, 'https://ror.org/01q0vs094 East London NHS Foundation Trust'),
(31479, 'https://ror.org/01q1xmp44', 'no_lang_code', 1, 'https://ror.org/01q1xmp44 MKP Structural Design Associates (United States)'),
(31480, 'https://ror.org/01q28w082', 'no_lang_code', 1, 'https://ror.org/01q28w082 Team Aquatic (Canada)'),
(31481, 'https://ror.org/01q3by234', 'no_lang_code', 1, 'https://ror.org/01q3by234 Ekjut'),
(31482, 'https://ror.org/01q437m46', 'de', 1, 'https://ror.org/01q437m46 Wasser Cluster Lunz'),
(31483, 'https://ror.org/01q5qh616', 'hu', 1, 'https://ror.org/01q5qh616 Kecskeméti Katona József Múzeum'),
(31484, 'https://ror.org/01q5v7e13', 'en', 1, 'https://ror.org/01q5v7e13 Lowe Syndrome Trust'),
(31485, 'https://ror.org/01q6vb404', 'en', 1, 'https://ror.org/01q6vb404 Department of Chemicals and Petrochemicals'),
(31486, 'https://ror.org/01q7y9w80', 'no_lang_code', 1, 'https://ror.org/01q7y9w80 VĆŗez (Slovakia)'),
(31487, 'https://ror.org/01q880378', 'no_lang_code', 1, 'https://ror.org/01q880378 Innovative Technology Applications (United States)'),
(31488, 'https://ror.org/01q8h4282', 'en', 1, 'https://ror.org/01q8h4282 Regional Council in Kalmar County'),
(31489, 'https://ror.org/01q8wz079', 'no_lang_code', 1, 'https://ror.org/01q8wz079 Komet Group (Austria)'),
(31490, 'https://ror.org/01qa3q834', 'no_lang_code', 1, 'https://ror.org/01qa3q834 Hardy Pictures (United Kingdom)'),
(31491, 'https://ror.org/01qa8aw24', 'en', 1, 'https://ror.org/01qa8aw24 Smith Chapel Bible University'),
(31492, 'https://ror.org/01qa8hz22', 'no_lang_code', 1, 'https://ror.org/01qa8hz22 Aventure (Sweden)'),
(31493, 'https://ror.org/01qcn4432', 'no_lang_code', 1, 'https://ror.org/01qcn4432 Serendipity Innovations (Sweden)'),
(31494, 'https://ror.org/01qdbbk19', 'en', 1, 'https://ror.org/01qdbbk19 Special Astrophysical Observatory Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š”ŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š°Ń Š°ŃŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ Российской акаГемии наук'),
(31495, 'https://ror.org/01qdy0382', 'no_lang_code', 1, 'https://ror.org/01qdy0382 Tafisa (Canada)'),
(31496, 'https://ror.org/01qmxzb47', 'en', 1, 'https://ror.org/01qmxzb47 Top Institute Pharma'),
(31497, 'https://ror.org/01qpebh25', 'en', 1, 'https://ror.org/01qpebh25 Central Armed Police Forces'),
(31498, 'https://ror.org/01qpf3c64', 'en', 1, 'https://ror.org/01qpf3c64 Waldorf College'),
(31499, 'https://ror.org/01qpq3w78', 'no_lang_code', 1, 'https://ror.org/01qpq3w78 Golder Associates (United States)'),
(31500, 'https://ror.org/01qq34m02', 'en', 1, 'https://ror.org/01qq34m02 Bernstein Center for Computational Neuroscience Heidelberg-Mannheim'),
(31501, 'https://ror.org/01qqbx440', 'sk', 1, 'https://ror.org/01qqbx440 Roľnícke družstvo Moravany'),
(31502, 'https://ror.org/01qqfah13', 'en', 1, 'https://ror.org/01qqfah13 Brewton-Parker College'),
(31503, 'https://ror.org/01qr4dp91', 'no_lang_code', 1, 'https://ror.org/01qr4dp91 Defense Holdings (United States)'),
(31504, 'https://ror.org/01qr4jt84', 'no_lang_code', 1, 'https://ror.org/01qr4jt84 EnWave Corporation (Canada)'),
(31505, 'https://ror.org/01qr5zh59', 'en', 1, 'https://ror.org/01qr5zh59 Public Health Laboratory Ivo de Carneri'),
(31506, 'https://ror.org/01qrenj43', 'en', 1, 'https://ror.org/01qrenj43 Ɩrnskƶldsvik Municipality'),
(31507, 'https://ror.org/01qvk6016', 'en', 1, 'https://ror.org/01qvk6016 Zero to Three'),
(31508, 'https://ror.org/01qwawt17', 'en', 1, 'https://ror.org/01qwawt17 William Penn Foundation'),
(31509, 'https://ror.org/01qynr066', 'en', 1, 'https://ror.org/01qynr066 Red Cliff Band of Lake Superior Chippewa'),
(31510, 'https://ror.org/01r00g076', 'no_lang_code', 1, 'https://ror.org/01r00g076 Bristol-Myers Squibb (Canada)'),
(31511, 'https://ror.org/01r0k6965', 'en', 1, 'https://ror.org/01r0k6965 Netherlands Bioinformatics Centre'),
(31512, 'https://ror.org/01r1e1h27', 'en', 1, 'https://ror.org/01r1e1h27 London Mathematical Society'),
(31513, 'https://ror.org/01r376258', 'en', 1, 'https://ror.org/01r376258 Netherlands Architecture Institute'),
(31514, 'https://ror.org/01r494568', 'en', 1, 'https://ror.org/01r494568 Life Pacific College'),
(31515, 'https://ror.org/01r49ds17', 'en', 1, 'https://ror.org/01r49ds17 Nova Scotia Department of Agriculture'),
(31516, 'https://ror.org/01r8d0v51', 'no_lang_code', 1, 'https://ror.org/01r8d0v51 Nobel Museum'),
(31517, 'https://ror.org/01rbmhr75', 'en', 1, 'https://ror.org/01rbmhr75 Istanbul Metropolitan Municipality'),
(31518, 'https://ror.org/01rckyv04', 'en', 1, 'https://ror.org/01rckyv04 Austrian Society for Cybernetic Studies Ɩsterreichische Studiengesellschaft für Kybernetik'),
(31519, 'https://ror.org/01rcvq140', 'en', 1, 'https://ror.org/01rcvq140 Chongqing University of Arts and Sciences é‡åŗ†ę–‡ē†å­¦é™¢'),
(31520, 'https://ror.org/01reevc91', 'no_lang_code', 1, 'https://ror.org/01reevc91 Intelligent Systems Research (United States)'),
(31521, 'https://ror.org/01rg81308', 'no_lang_code', 1, 'https://ror.org/01rg81308 Flint Rehabilitation Devices (United States)'),
(31522, 'https://ror.org/01rj6x283', 'en', 1, 'https://ror.org/01rj6x283 Regional Municipality of Durham'),
(31523, 'https://ror.org/01rkdw075', 'no_lang_code', 1, 'https://ror.org/01rkdw075 AnyBody Technology (Denmark)'),
(31524, 'https://ror.org/01rm6ad42', 'no_lang_code', 1, 'https://ror.org/01rm6ad42 Nalcor Energy (Canada)'),
(31525, 'https://ror.org/01rp86637', 'no_lang_code', 1, 'https://ror.org/01rp86637 Robust Chip (United States)'),
(31526, 'https://ror.org/01rq0mb28', 'no_lang_code', 1, 'https://ror.org/01rq0mb28 Energy Storage Systems (United States)'),
(31527, 'https://ror.org/01rr16k76', 'en', 1, 'https://ror.org/01rr16k76 Friends School of Baltimore'),
(31528, 'https://ror.org/01rrc6194', 'en', 1, 'https://ror.org/01rrc6194 VƤsterƄs Municipality'),
(31529, 'https://ror.org/01rswrs24', 'no_lang_code', 1, 'https://ror.org/01rswrs24 Ɖtudes-Recherches-MatĆ©riaux (France)'),
(31530, 'https://ror.org/01rvfwh35', 'no_lang_code', 1, 'https://ror.org/01rvfwh35 Laricina Energy (Canada)'),
(31531, 'https://ror.org/01rwvcf75', 'no_lang_code', 1, 'https://ror.org/01rwvcf75 Mentis Sciences (United States)'),
(31532, 'https://ror.org/01rybb297', 'no_lang_code', 1, 'https://ror.org/01rybb297 Edge Technologies (United States)'),
(31533, 'https://ror.org/01rz5qz78', 'no_lang_code', 1, 'https://ror.org/01rz5qz78 Murata (United States)'),
(31534, 'https://ror.org/01s0mmt42', 'no_lang_code', 1, 'https://ror.org/01s0mmt42 Black Forest Engineering (United States)'),
(31535, 'https://ror.org/01s5k1048', 'no_lang_code', 1, 'https://ror.org/01s5k1048 Norfolk Southern (United States)'),
(31536, 'https://ror.org/01sbpwv26', 'no_lang_code', 1, 'https://ror.org/01sbpwv26 Plasmatrix (Sweden)'),
(31537, 'https://ror.org/01scb6a48', 'no_lang_code', 1, 'https://ror.org/01scb6a48 EM Photonics (United States)'),
(31538, 'https://ror.org/01scetz04', 'en', 1, 'https://ror.org/01scetz04 National Disability Institute'),
(31539, 'https://ror.org/01sfsq511', 'no_lang_code', 1, 'https://ror.org/01sfsq511 Infinity Pharmaceuticals (United States)'),
(31540, 'https://ror.org/01shbv660', 'en', 1, 'https://ror.org/01shbv660 Agricultural Research Development Agency ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąøžąø±ąø’ąø™ąø²ąøąø²ąø£ąø§ąø“ąøˆąø±ąø¢ąøąø²ąø£ą¹€ąøąø©ąø•ąø£'),
(31541, 'https://ror.org/01skcjx25', 'no_lang_code', 1, 'https://ror.org/01skcjx25 Far Tech (United States)'),
(31542, 'https://ror.org/01skhd946', 'en', 1, 'https://ror.org/01skhd946 Center for Disease Dynamics, Economics & Policy'),
(31543, 'https://ror.org/01snw6n75', 'en', 1, 'https://ror.org/01snw6n75 International Genomics Consortium'),
(31544, 'https://ror.org/01sr6x298', 'en', 1, 'https://ror.org/01sr6x298 Pastoral and Environmental Network in the Horn of Africa'),
(31545, 'https://ror.org/01ss1ax86', 'no_lang_code', 1, 'https://ror.org/01ss1ax86 Geosigma (Sweden)'),
(31546, 'https://ror.org/01ssww473', 'en', 1, 'https://ror.org/01ssww473 Clarity Films'),
(31547, 'https://ror.org/01sv5w039', 'en', 1, 'https://ror.org/01sv5w039 Tinker Foundation'),
(31548, 'https://ror.org/01sv72659', 'en', 1, 'https://ror.org/01sv72659 Computer Measurement Laboratory'),
(31549, 'https://ror.org/01swjvn57', 'no_lang_code', 1, 'https://ror.org/01swjvn57 Qatari Diar (Qatar)'),
(31550, 'https://ror.org/01syrqz32', 'en', 1, 'https://ror.org/01syrqz32 University of North Korean Studies ė¶ķ•œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(31551, 'https://ror.org/01szhjj90', 'no_lang_code', 1, 'https://ror.org/01szhjj90 Xebec (Canada)'),
(31552, 'https://ror.org/01szhx446', 'no_lang_code', 1, 'https://ror.org/01szhx446 Torch Hill Investment Partners (United States)'),
(31553, 'https://ror.org/01szvzc53', 'no_lang_code', 1, 'https://ror.org/01szvzc53 Biomer Technology (United Kingdom)'),
(31554, 'https://ror.org/01t04bt85', 'en', 1, 'https://ror.org/01t04bt85 Brooks Institute'),
(31555, 'https://ror.org/01t0hys38', 'no_lang_code', 1, 'https://ror.org/01t0hys38 Ciment QuƩbec (Canada)'),
(31556, 'https://ror.org/01t1a2303', 'en', 1, 'https://ror.org/01t1a2303 Canadian Optometric Education Trust Fund Fonds de Fiducie des OptomƩtristes Canadiens pour l''Education'),
(31557, 'https://ror.org/01t2e5682', 'no_lang_code', 1, 'https://ror.org/01t2e5682 CNH Industrial (Canada)'),
(31558, 'https://ror.org/01t4yq738', 'no_lang_code', 1, 'https://ror.org/01t4yq738 Cube Technology (United States)'),
(31559, 'https://ror.org/01t6xjs55', 'no_lang_code', 1, 'https://ror.org/01t6xjs55 Exmar (Belgium)'),
(31560, 'https://ror.org/01t75ff47', 'en', 1, 'https://ror.org/01t75ff47 Fernfachhochschule Schweiz Swiss Distance University of Applied Sciences'),
(31561, 'https://ror.org/01t8r8650', 'no_lang_code', 1, 'https://ror.org/01t8r8650 Tinta (Hungary)'),
(31562, 'https://ror.org/01t931b89', 'no_lang_code', 1, 'https://ror.org/01t931b89 Dais Analytic Corporation (United States)'),
(31563, 'https://ror.org/01tasjp55', 'no_lang_code', 1, 'https://ror.org/01tasjp55 Cipherstone Technologies (Sweden)'),
(31564, 'https://ror.org/01tasya06', 'no_lang_code', 1, 'https://ror.org/01tasya06 Charles River Laboratories (Netherlands)'),
(31565, 'https://ror.org/01tb3h052', 'no_lang_code', 1, 'https://ror.org/01tb3h052 Next Century Corporation (United States)'),
(31566, 'https://ror.org/01tbz5p94', 'no_lang_code', 1, 'https://ror.org/01tbz5p94 Integrated Solutions for Systems (United States)'),
(31567, 'https://ror.org/01tdhf121', 'en', 1, 'https://ror.org/01tdhf121 Parent Information Center'),
(31568, 'https://ror.org/01tgakh12', 'no_lang_code', 1, 'https://ror.org/01tgakh12 Alcoa (Canada)'),
(31569, 'https://ror.org/01tgbzq38', 'no_lang_code', 1, 'https://ror.org/01tgbzq38 QuickFlex (United States)'),
(31570, 'https://ror.org/01tgdj837', 'no_lang_code', 1, 'https://ror.org/01tgdj837 Taiga (Sweden)'),
(31571, 'https://ror.org/01th7sf79', 'en', 1, 'https://ror.org/01th7sf79 Connecticut Space Grant Consortium'),
(31572, 'https://ror.org/01th8rf13', 'no_lang_code', 1, 'https://ror.org/01th8rf13 Cambridge Life Sciences (United Kingdom)'),
(31573, 'https://ror.org/01thcx676', 'de', 1, 'https://ror.org/01thcx676 Stiftung Rheinland-Pfalz für Innovation'),
(31574, 'https://ror.org/01tj74z64', 'it', 1, 'https://ror.org/01tj74z64 Associazione Italiana per l''Agricoltura Biologica'),
(31575, 'https://ror.org/01tjn9x38', 'no_lang_code', 1, 'https://ror.org/01tjn9x38 UBC (United States)'),
(31576, 'https://ror.org/01tmp3s87', 'no_lang_code', 1, 'https://ror.org/01tmp3s87 ModuleWorks (Romania)'),
(31577, 'https://ror.org/01tmp4163', 'no_lang_code', 1, 'https://ror.org/01tmp4163 Datec Coating (Canada)'),
(31578, 'https://ror.org/01tqp0709', 'en', 1, 'https://ror.org/01tqp0709 Austrian Institute of Historical Research Institut für Ɩsterreichische Geschichtsforschung'),
(31579, 'https://ror.org/01trb8031', 'en', 1, 'https://ror.org/01trb8031 European Global Ocean Observing System'),
(31580, 'https://ror.org/01tyn7n29', 'en', 1, 'https://ror.org/01tyn7n29 Prime Minister''s Office'),
(31581, 'https://ror.org/01v01a242', 'no_lang_code', 1, 'https://ror.org/01v01a242 Xbrane Biopharma (Sweden)'),
(31582, 'https://ror.org/01v392555', 'no_lang_code', 1, 'https://ror.org/01v392555 Koo & Associates International (United States)'),
(31583, 'https://ror.org/01v4jww63', 'en', 1, 'https://ror.org/01v4jww63 Value Addition Institute'),
(31584, 'https://ror.org/01v4vcm68', 'fr', 1, 'https://ror.org/01v4vcm68 Labex Corail'),
(31585, 'https://ror.org/01v67s579', 'no_lang_code', 1, 'https://ror.org/01v67s579 Natrix Separations (Canada)'),
(31586, 'https://ror.org/01v6nvw72', 'de', 1, 'https://ror.org/01v6nvw72 StifterHaus'),
(31587, 'https://ror.org/01v6wg951', 'no_lang_code', 1, 'https://ror.org/01v6wg951 Vista Clara (United States)'),
(31588, 'https://ror.org/01v7qfc32', 'en', 1, 'https://ror.org/01v7qfc32 National Department of Health'),
(31589, 'https://ror.org/01v82v626', 'no_lang_code', 1, 'https://ror.org/01v82v626 FoundCare'),
(31590, 'https://ror.org/01v99n607', 'en', 1, 'https://ror.org/01v99n607 Shark Spotters'),
(31591, 'https://ror.org/01vatmj83', 'no_lang_code', 1, 'https://ror.org/01vatmj83 MZA Associates (United States)'),
(31592, 'https://ror.org/01vb6q136', 'en', 1, 'https://ror.org/01vb6q136 Netherlands Space Office'),
(31593, 'https://ror.org/01vb92e72', 'no_lang_code', 1, 'https://ror.org/01vb92e72 Polaris Systems Optimization (United States)'),
(31594, 'https://ror.org/01vfsab41', 'en', 1, 'https://ror.org/01vfsab41 FacultĆ© d''arts de l''universitĆ© d''Ɖtat de caroline du nord University of North Carolina School of the Arts'),
(31595, 'https://ror.org/01vmfza15', 'tr', 1, 'https://ror.org/01vmfza15 Erciyes Üniversitesi Tıp Fakültesi Hastaneleri'),
(31596, 'https://ror.org/01vmgtx82', 'no_lang_code', 1, 'https://ror.org/01vmgtx82 Sentient Science (United States)'),
(31597, 'https://ror.org/01vn8wp97', 'en', 1, 'https://ror.org/01vn8wp97 Brown County Historical Society'),
(31598, 'https://ror.org/01vtndz62', 'en', 1, 'https://ror.org/01vtndz62 British University Vietnam'),
(31599, 'https://ror.org/01vx3k426', 'no_lang_code', 1, 'https://ror.org/01vx3k426 Maverick (United States)'),
(31600, 'https://ror.org/01vxra992', 'no_lang_code', 1, 'https://ror.org/01vxra992 R&D Dynamics (United States)'),
(31601, 'https://ror.org/01vyraz80', 'no_lang_code', 1, 'https://ror.org/01vyraz80 DSM (Sweden)'),
(31602, 'https://ror.org/01w0rme55', 'no_lang_code', 1, 'https://ror.org/01w0rme55 AmberWave (United States)'),
(31603, 'https://ror.org/01w1ayy11', 'no_lang_code', 1, 'https://ror.org/01w1ayy11 Glucox Biotech (Sweden)'),
(31604, 'https://ror.org/01w1vg437', 'fr', 1, 'https://ror.org/01w1vg437 Doctors Without Borders Médecins Sans Frontières'),
(31605, 'https://ror.org/01w3dn975', 'no_lang_code', 1, 'https://ror.org/01w3dn975 Canadian General-Tower (Canada)'),
(31606, 'https://ror.org/01w466f66', 'en', 1, 'https://ror.org/01w466f66 Trinity College of Florida'),
(31607, 'https://ror.org/01w4p7624', 'no_lang_code', 1, 'https://ror.org/01w4p7624 Eticas Research & Consulting (Spain)'),
(31608, 'https://ror.org/01w5pm594', 'no_lang_code', 1, 'https://ror.org/01w5pm594 Jiangsu Nhwa Pharmaceutical (China)'),
(31609, 'https://ror.org/01w6p0240', 'no_lang_code', 1, 'https://ror.org/01w6p0240 Energy Research Consultants (United States)'),
(31610, 'https://ror.org/01w98nb39', 'no_lang_code', 1, 'https://ror.org/01w98nb39 TM4 (Canada)'),
(31611, 'https://ror.org/01w9cfb64', 'en', 1, 'https://ror.org/01w9cfb64 Kenya Wildlife Service Shirika la Huduma kwa Wanyama Pori ya Kenya'),
(31612, 'https://ror.org/01wc7km43', 'no_lang_code', 1, 'https://ror.org/01wc7km43 Canada Malting (Canada)'),
(31613, 'https://ror.org/01wcqa315', 'en', 1, 'https://ror.org/01wcqa315 Action Medical Research'),
(31614, 'https://ror.org/01wcx2305', 'en', 1, 'https://ror.org/01wcx2305 Nanjing Brain Hospital'),
(31615, 'https://ror.org/01wd8pa65', 'en', 1, 'https://ror.org/01wd8pa65 China Medical University Beigang Hospital'),
(31616, 'https://ror.org/01wfv3m53', 'no_lang_code', 1, 'https://ror.org/01wfv3m53 Teva Pharmaceuticals (Israel) טבע תעשיות ×¤×Ø×ž×¦×‘×˜×™×•×Ŗ בע"מ صناعات تيفا Ų§Ł„ŲµŁŠŲÆŁ„ŁŠŲ©'),
(31617, 'https://ror.org/01wg5gq86', 'no_lang_code', 1, 'https://ror.org/01wg5gq86 Simplot (United States)'),
(31618, 'https://ror.org/01wjew854', 'en', 1, 'https://ror.org/01wjew854 Joint Space Science Institute'),
(31619, 'https://ror.org/01wm1ge07', 'no_lang_code', 1, 'https://ror.org/01wm1ge07 Littoral Research Group (United States)'),
(31620, 'https://ror.org/01wm7qx64', 'en', 1, 'https://ror.org/01wm7qx64 Shenyang Environmental Protection Bureau'),
(31621, 'https://ror.org/01wn7w598', 'en', 1, 'https://ror.org/01wn7w598 Affiliated Hospital of Taishan Medical University'),
(31622, 'https://ror.org/01wnead86', 'no_lang_code', 1, 'https://ror.org/01wnead86 Arius3D (Canada)'),
(31623, 'https://ror.org/01wng0g34', 'es', 1, 'https://ror.org/01wng0g34 Centro de Estudios de Física del Cosmos de Aragón'),
(31624, 'https://ror.org/01wq1xf82', 'en', 1, 'https://ror.org/01wq1xf82 European Academy of Technology and Innovation Assessment'),
(31625, 'https://ror.org/01wqdsj65', 'no_lang_code', 1, 'https://ror.org/01wqdsj65 Professional Services Group (United States)'),
(31626, 'https://ror.org/01wt3vs82', 'en', 1, 'https://ror.org/01wt3vs82 Dana Foundation'),
(31627, 'https://ror.org/01wtjj434', 'en', 1, 'https://ror.org/01wtjj434 SKA Telescope, South Africa'),
(31628, 'https://ror.org/01wtjyf13', 'en', 1, 'https://ror.org/01wtjyf13 Office of Dietary Supplements'),
(31629, 'https://ror.org/01wtzjm14', 'no_lang_code', 1, 'https://ror.org/01wtzjm14 Global Aerospace (United States)'),
(31630, 'https://ror.org/01wxdd722', 'en', 1, 'https://ror.org/01wxdd722 Deutsche Krebshilfe German Cancer Aid'),
(31631, 'https://ror.org/01wzzs254', 'en', 1, 'https://ror.org/01wzzs254 Foreign Investment Review Board'),
(31632, 'https://ror.org/01x0ypd40', 'no_lang_code', 1, 'https://ror.org/01x0ypd40 Morton Photonics (United States)'),
(31633, 'https://ror.org/01x22f448', 'no_lang_code', 1, 'https://ror.org/01x22f448 PC Krause & Associates (United States)'),
(31634, 'https://ror.org/01x33g729', 'no_lang_code', 1, 'https://ror.org/01x33g729 Bioglobe (Germany)'),
(31635, 'https://ror.org/01x3s6t84', 'no_lang_code', 1, 'https://ror.org/01x3s6t84 Innovatum (Sweden)'),
(31636, 'https://ror.org/01x48g070', 'no_lang_code', 1, 'https://ror.org/01x48g070 Sage Technologies (United States)'),
(31637, 'https://ror.org/01x4f0278', 'no_lang_code', 1, 'https://ror.org/01x4f0278 Thermacore (United States)'),
(31638, 'https://ror.org/01x5t2m44', 'it', 1, 'https://ror.org/01x5t2m44 Fondazione Edo ed Elvo Tempia'),
(31639, 'https://ror.org/01x6hat91', 'en', 1, 'https://ror.org/01x6hat91 Coating Consultancy'),
(31640, 'https://ror.org/01x6ma944', 'no_lang_code', 1, 'https://ror.org/01x6ma944 BC Hydro (Canada)'),
(31641, 'https://ror.org/01x87db24', 'en', 1, 'https://ror.org/01x87db24 Sunder Lal Jain Hospital'),
(31642, 'https://ror.org/01x91c597', 'en', 1, 'https://ror.org/01x91c597 Association for Youth, Science and Technology'),
(31643, 'https://ror.org/01xa12s81', 'no_lang_code', 1, 'https://ror.org/01xa12s81 Beltran (United States)'),
(31644, 'https://ror.org/01xbk7a82', 'no_lang_code', 1, 'https://ror.org/01xbk7a82 ACTA (United States)'),
(31645, 'https://ror.org/01xcf8q67', 'no_lang_code', 1, 'https://ror.org/01xcf8q67 BlockMaster (Sweden)'),
(31646, 'https://ror.org/01xdzbt45', 'no_lang_code', 1, 'https://ror.org/01xdzbt45 Verisk Analytics (United States)'),
(31647, 'https://ror.org/01xew3x83', 'no_lang_code', 1, 'https://ror.org/01xew3x83 EMAG Technologies (United States)'),
(31648, 'https://ror.org/01xhkgx67', 'no_lang_code', 1, 'https://ror.org/01xhkgx67 Aoptix Technologies (United States)'),
(31649, 'https://ror.org/01xjjmp17', 'nl', 1, 'https://ror.org/01xjjmp17 Museum Catharijneconvent'),
(31650, 'https://ror.org/01xmtac13', 'en', 1, 'https://ror.org/01xmtac13 Stefan University'),
(31651, 'https://ror.org/01xmtfq82', 'en', 1, 'https://ror.org/01xmtfq82 Northwest Health Foundation'),
(31652, 'https://ror.org/01xnpjk23', 'no_lang_code', 1, 'https://ror.org/01xnpjk23 Vanderwell Contractors (Canada)'),
(31653, 'https://ror.org/01xp8jx84', 'no_lang_code', 1, 'https://ror.org/01xp8jx84 Ormet Circuits (United States)'),
(31654, 'https://ror.org/01xpmbc27', 'en', 1, 'https://ror.org/01xpmbc27 Thomson Reuters Foundation'),
(31655, 'https://ror.org/01xrzxy63', 'es', 1, 'https://ror.org/01xrzxy63 Museo de San Isidro'),
(31656, 'https://ror.org/01xsmpb09', 'en', 1, 'https://ror.org/01xsmpb09 Autism Research Institute'),
(31657, 'https://ror.org/01xsqqn76', 'en', 1, 'https://ror.org/01xsqqn76 Ministry of Education and Science of Perm Region'),
(31658, 'https://ror.org/01xt0a511', 'en', 1, 'https://ror.org/01xt0a511 National Museum of Ethnology Rijksmuseum Volkenkunde'),
(31659, 'https://ror.org/01xtd5c13', 'en', 1, 'https://ror.org/01xtd5c13 CIS Scientific'),
(31660, 'https://ror.org/01xv22m76', 'de', 1, 'https://ror.org/01xv22m76 Bundesmobilienverwaltung'),
(31661, 'https://ror.org/01xvbqz61', 'en', 1, 'https://ror.org/01xvbqz61 National Council on Disability'),
(31662, 'https://ror.org/01xx86r77', 'no_lang_code', 1, 'https://ror.org/01xx86r77 Biolin Scientific (United Kingdom)'),
(31663, 'https://ror.org/01xyfgx59', 'no_lang_code', 1, 'https://ror.org/01xyfgx59 Dynetics (United States)'),
(31664, 'https://ror.org/01y0rg445', 'no_lang_code', 1, 'https://ror.org/01y0rg445 AventuSoft (United States)'),
(31665, 'https://ror.org/01y4ah893', 'en', 1, 'https://ror.org/01y4ah893 Michigan Economic Development Corporation'),
(31666, 'https://ror.org/01y4kmz24', 'en', 1, 'https://ror.org/01y4kmz24 NIHR Royal Brompton Cardiovascular Biomedical Research Unit'),
(31667, 'https://ror.org/01y5j7h75', 'no_lang_code', 1, 'https://ror.org/01y5j7h75 Ecrossculture (United States)'),
(31668, 'https://ror.org/01y5xsj54', 'en', 1, 'https://ror.org/01y5xsj54 Black Hills Center for American Indian Health');
INSERT INTO `rors` VALUES
(31669, 'https://ror.org/01y6tnr87', 'no_lang_code', 1, 'https://ror.org/01y6tnr87 Blue-O Technology (Canada)'),
(31670, 'https://ror.org/01y8hgg23', 'no_lang_code', 1, 'https://ror.org/01y8hgg23 Cistel Technology (Canada)'),
(31671, 'https://ror.org/01y922f71', 'en', 1, 'https://ror.org/01y922f71 Academia de la Guardia Costera de Estados Unidos United States Coast Guard Academy'),
(31672, 'https://ror.org/01y96v851', 'no_lang_code', 1, 'https://ror.org/01y96v851 Viron Therapeutics (Canada)'),
(31673, 'https://ror.org/01y9dfy03', 'no_lang_code', 1, 'https://ror.org/01y9dfy03 Bihrle Applied Research (United States)'),
(31674, 'https://ror.org/01yasd238', 'en', 1, 'https://ror.org/01yasd238 Trinity Baptist College'),
(31675, 'https://ror.org/01ybxby37', 'no_lang_code', 1, 'https://ror.org/01ybxby37 Noisecom (United States)'),
(31676, 'https://ror.org/01ydcrt14', 'no_lang_code', 1, 'https://ror.org/01ydcrt14 Lumir Research Institute (United States)'),
(31677, 'https://ror.org/01ydrx675', 'no_lang_code', 1, 'https://ror.org/01ydrx675 Air Products (United States)'),
(31678, 'https://ror.org/01ye2hc74', 'en', 1, 'https://ror.org/01ye2hc74 Grape Growers of Ontario'),
(31679, 'https://ror.org/01yeyxy55', 'no_lang_code', 1, 'https://ror.org/01yeyxy55 Intercontinental Exchange (United States)'),
(31680, 'https://ror.org/01yf5bk03', 'no_lang_code', 1, 'https://ror.org/01yf5bk03 Engineering & Scientific Innovations (United States)'),
(31681, 'https://ror.org/01yg3ff09', 'en', 1, 'https://ror.org/01yg3ff09 NIHR Southampton Respiratory Biomedical Research Unit'),
(31682, 'https://ror.org/01ygm5w19', 'en', 1, 'https://ror.org/01ygm5w19 Centre for Biomedical Network Research on Rare Diseases Centro de Investigación Biomédica en Red de Enfermedades Raras'),
(31683, 'https://ror.org/01ygzxb58', 'en', 1, 'https://ror.org/01ygzxb58 Rijksakademie van beeldende kunsten Royal Academy of Visual Arts'),
(31684, 'https://ror.org/01yh3cc69', 'no_lang_code', 1, 'https://ror.org/01yh3cc69 Sensing Strategies Incorporation (United States)'),
(31685, 'https://ror.org/01yhhvk26', 'no_lang_code', 1, 'https://ror.org/01yhhvk26 Honeybee Robotics (United States)'),
(31686, 'https://ror.org/01yjd3664', 'no_lang_code', 1, 'https://ror.org/01yjd3664 Link Microtek (United Kingdom)'),
(31687, 'https://ror.org/01yktd853', 'en', 1, 'https://ror.org/01yktd853 Consumer Commission on the Accreditation of Health Services'),
(31688, 'https://ror.org/01yncvq70', 'no_lang_code', 1, 'https://ror.org/01yncvq70 Aventia (Spain)'),
(31689, 'https://ror.org/01yp11k49', 'no_lang_code', 1, 'https://ror.org/01yp11k49 Diversitech (United States)'),
(31690, 'https://ror.org/01ypjv288', 'no_lang_code', 1, 'https://ror.org/01ypjv288 Absolicon Solar Collector (Sweden)'),
(31691, 'https://ror.org/01yqb3s19', 'en', 1, 'https://ror.org/01yqb3s19 Ontario Commercial Fisheries'' Association'),
(31692, 'https://ror.org/01ysrp540', 'en', 1, 'https://ror.org/01ysrp540 Chester Zoo'),
(31693, 'https://ror.org/01yykey67', 'no_lang_code', 1, 'https://ror.org/01yykey67 General Electric (Qatar)'),
(31694, 'https://ror.org/01z2za656', 'no_lang_code', 1, 'https://ror.org/01z2za656 Dekonta (Slovakia)'),
(31695, 'https://ror.org/01z63c948', 'no_lang_code', 1, 'https://ror.org/01z63c948 Actuant (Sweden)'),
(31696, 'https://ror.org/01z7k2z53', 'no_lang_code', 1, 'https://ror.org/01z7k2z53 Systems Dynamics (United States)'),
(31697, 'https://ror.org/01z81gq54', 'en', 1, 'https://ror.org/01z81gq54 American Association of Endodontists'),
(31698, 'https://ror.org/01z8tr155', 'en', 1, 'https://ror.org/01z8tr155 China Aerospace Science and Technology Corporation äø­å›½čˆŖå¤©ē§‘ęŠ€é›†å›¢'),
(31699, 'https://ror.org/01zbqc597', 'no_lang_code', 1, 'https://ror.org/01zbqc597 ThyssenKrupp (Italy) ThyssenKrupp Italia'),
(31700, 'https://ror.org/01zc1hx59', 'en', 1, 'https://ror.org/01zc1hx59 Animal Nutrition Association of Canada'),
(31701, 'https://ror.org/01zcf4n33', 'en', 1, 'https://ror.org/01zcf4n33 American Foundation for Suicide Prevention'),
(31702, 'https://ror.org/01zcfag54', 'no_lang_code', 1, 'https://ror.org/01zcfag54 Smart Eye (Sweden)'),
(31703, 'https://ror.org/01zf2fw60', 'en', 1, 'https://ror.org/01zf2fw60 Bluefield College'),
(31704, 'https://ror.org/01zf6g661', 'no_lang_code', 1, 'https://ror.org/01zf6g661 Advanced Coherent Technologies (United States)'),
(31705, 'https://ror.org/01zg1tt02', 'en', 1, 'https://ror.org/01zg1tt02 MRC Protein Phosphorylation and Ubiquitylation Unit'),
(31706, 'https://ror.org/01zgavk21', 'no_lang_code', 1, 'https://ror.org/01zgavk21 Tacton Systems (Sweden)'),
(31707, 'https://ror.org/01zh4s520', 'no_lang_code', 1, 'https://ror.org/01zh4s520 Scientific Data Systems (United States)'),
(31708, 'https://ror.org/01zmzpt10', 'en', 1, 'https://ror.org/01zmzpt10 Bangladesh Rice Research Institute বাংলাদেশ ধান গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(31709, 'https://ror.org/01znwdd95', 'no_lang_code', 1, 'https://ror.org/01znwdd95 AxioMx (United States)'),
(31710, 'https://ror.org/01ztrqp26', 'no_lang_code', 1, 'https://ror.org/01ztrqp26 Blue Pencil Group (United States)'),
(31711, 'https://ror.org/01ztv7k18', 'no_lang_code', 1, 'https://ror.org/01ztv7k18 Carnegie Robotics (United States)'),
(31712, 'https://ror.org/01zwnkm40', 'no_lang_code', 1, 'https://ror.org/01zwnkm40 Minnesota Wire (United States)'),
(31713, 'https://ror.org/01zwr3j29', 'en', 1, 'https://ror.org/01zwr3j29 Nordic Joint Committee for Agricultural and Food Research'),
(31714, 'https://ror.org/01zxe4w25', 'no_lang_code', 1, 'https://ror.org/01zxe4w25 Innovative Research (United States)'),
(31715, 'https://ror.org/01zxfhv73', 'no_lang_code', 1, 'https://ror.org/01zxfhv73 Energetics (United States)'),
(31716, 'https://ror.org/01zyxxc50', 'no_lang_code', 1, 'https://ror.org/01zyxxc50 Wolfram MathCore (Sweden)'),
(31717, 'https://ror.org/01zzzs782', 'no_lang_code', 1, 'https://ror.org/01zzzs782 Variation Reduction Solutions (United States)'),
(31718, 'https://ror.org/020299x40', 'en', 1, 'https://ror.org/020299x40 Xian Mental Health Center'),
(31719, 'https://ror.org/0202czp82', 'no_lang_code', 1, 'https://ror.org/0202czp82 Connecticut Innovations (United States)'),
(31720, 'https://ror.org/02031zf96', 'en', 1, 'https://ror.org/02031zf96 Particle Data Group'),
(31721, 'https://ror.org/0203am321', 'en', 1, 'https://ror.org/0203am321 Gƶteborg Region Association of Local Authorities'),
(31722, 'https://ror.org/0203dma96', 'no_lang_code', 1, 'https://ror.org/0203dma96 MESH (United States)'),
(31723, 'https://ror.org/0206mzz42', 'en', 1, 'https://ror.org/0206mzz42 International Center for Human Sciences'),
(31724, 'https://ror.org/0206q6m49', 'no_lang_code', 1, 'https://ror.org/0206q6m49 Angstrom Engineering (Canada)'),
(31725, 'https://ror.org/020am1515', 'no_lang_code', 1, 'https://ror.org/020am1515 Nico Technologies (United States)'),
(31726, 'https://ror.org/020b8ew17', 'no_lang_code', 1, 'https://ror.org/020b8ew17 Gannon Motor and Controls (United States)'),
(31727, 'https://ror.org/020bmkg54', 'no_lang_code', 1, 'https://ror.org/020bmkg54 Outotec (Canada)'),
(31728, 'https://ror.org/020by8p54', 'no_lang_code', 1, 'https://ror.org/020by8p54 HexaTech (United States)'),
(31729, 'https://ror.org/020ct4t61', 'en', 1, 'https://ror.org/020ct4t61 Pensacola Christian College'),
(31730, 'https://ror.org/020ddnn22', 'en', 1, 'https://ror.org/020ddnn22 Bundesamt für Energie Swiss Federal Office of Energy'),
(31731, 'https://ror.org/020dg9f27', 'en', 1, 'https://ror.org/020dg9f27 Keelung Chang Gung Memorial Hospital'),
(31732, 'https://ror.org/020dp5a36', 'en', 1, 'https://ror.org/020dp5a36 C.T. de Wit Graduate School for Production Ecology and Resource Conservation'),
(31733, 'https://ror.org/020dsfj21', 'no_lang_code', 1, 'https://ror.org/020dsfj21 FastCAP Systems (United States)'),
(31734, 'https://ror.org/020epnp70', 'no_lang_code', 1, 'https://ror.org/020epnp70 Technical Data Analysis (United States)'),
(31735, 'https://ror.org/020ezhp63', 'no_lang_code', 1, 'https://ror.org/020ezhp63 Conceptual Mindworks (United States)'),
(31736, 'https://ror.org/020h4b682', 'no_lang_code', 1, 'https://ror.org/020h4b682 Digital Science (United States)'),
(31737, 'https://ror.org/020hpsx21', 'hu', 1, 'https://ror.org/020hpsx21 Civil RÔdió'),
(31738, 'https://ror.org/020hsr785', 'nl', 1, 'https://ror.org/020hsr785 Nederlands Instituut voor Wetenschappelijke Informatiediensten'),
(31739, 'https://ror.org/020k6v967', 'nl', 1, 'https://ror.org/020k6v967 Nierstichting'),
(31740, 'https://ror.org/020kdtk66', 'en', 1, 'https://ror.org/020kdtk66 Recruitment and Assesment Centre'),
(31741, 'https://ror.org/020qxnz74', 'en', 1, 'https://ror.org/020qxnz74 Dhaka Community Hospital Trust'),
(31742, 'https://ror.org/020r9kq92', 'no_lang_code', 1, 'https://ror.org/020r9kq92 CelluForce (Canada)'),
(31743, 'https://ror.org/020r9sg22', 'no_lang_code', 1, 'https://ror.org/020r9sg22 Chevron (Canada)'),
(31744, 'https://ror.org/020rmhj69', 'no_lang_code', 1, 'https://ror.org/020rmhj69 Findout Technologies (Sweden)'),
(31745, 'https://ror.org/020rxjn58', 'no_lang_code', 1, 'https://ror.org/020rxjn58 Cornerstone Research Group (United States)'),
(31746, 'https://ror.org/020t0kf33', 'en', 1, 'https://ror.org/020t0kf33 Cornish College of the Arts'),
(31747, 'https://ror.org/020tbqw59', 'no_lang_code', 1, 'https://ror.org/020tbqw59 OEwaves (United States)'),
(31748, 'https://ror.org/020vg7c14', 'no_lang_code', 1, 'https://ror.org/020vg7c14 RedZone Robotics (United States)'),
(31749, 'https://ror.org/020w2fr77', 'no_lang_code', 1, 'https://ror.org/020w2fr77 Robotics Research (United States)'),
(31750, 'https://ror.org/020w7x032', 'en', 1, 'https://ror.org/020w7x032 Sir Halley Stewart Trust'),
(31751, 'https://ror.org/020yran20', 'no_lang_code', 1, 'https://ror.org/020yran20 Primus Power (United States)'),
(31752, 'https://ror.org/020z47w89', 'no_lang_code', 1, 'https://ror.org/020z47w89 Novici Biotech (United States)'),
(31753, 'https://ror.org/0210rze73', 'en', 1, 'https://ror.org/0210rze73 Stavros Niarchos Foundation'),
(31754, 'https://ror.org/0211vdk93', 'en', 1, 'https://ror.org/0211vdk93 Belgian Development Agency'),
(31755, 'https://ror.org/0212emb53', 'no_lang_code', 1, 'https://ror.org/0212emb53 Symplectic Engineering Corporation (United States)'),
(31756, 'https://ror.org/0215n2163', 'no_lang_code', 1, 'https://ror.org/0215n2163 RadiaBeam Technologies (United States)'),
(31757, 'https://ror.org/02168q889', 'no_lang_code', 1, 'https://ror.org/02168q889 InteraXon (Canada)'),
(31758, 'https://ror.org/0216whp02', 'en', 1, 'https://ror.org/0216whp02 Canadian Hemophilia Society SociƩtƩ Canadienne de l''HƩmophilie'),
(31759, 'https://ror.org/0218hya98', 'en', 1, 'https://ror.org/0218hya98 Department of Higher Education'),
(31760, 'https://ror.org/0219rxc78', 'no_lang_code', 1, 'https://ror.org/0219rxc78 Polisilk (Spain)'),
(31761, 'https://ror.org/021a9kk09', 'no_lang_code', 1, 'https://ror.org/021a9kk09 Aurrion (United States)'),
(31762, 'https://ror.org/021aawt29', 'en', 1, 'https://ror.org/021aawt29 Great Britain Sasakawa Foundation'),
(31763, 'https://ror.org/021asz590', 'en', 1, 'https://ror.org/021asz590 National Center on Birth Defects and Developmental Disabilities'),
(31764, 'https://ror.org/021ccwy92', 'no_lang_code', 1, 'https://ror.org/021ccwy92 APR Technologies (Sweden)'),
(31765, 'https://ror.org/021g6m489', 'en', 1, 'https://ror.org/021g6m489 American Printing House for the Blind'),
(31766, 'https://ror.org/021g7ye04', 'no_lang_code', 1, 'https://ror.org/021g7ye04 Kaer Biotherapeutics (United States)'),
(31767, 'https://ror.org/021gzyw51', 'no_lang_code', 1, 'https://ror.org/021gzyw51 Signal Processing (United States)'),
(31768, 'https://ror.org/021j0xm63', 'en', 1, 'https://ror.org/021j0xm63 Medaille College'),
(31769, 'https://ror.org/021jhha43', 'no_lang_code', 1, 'https://ror.org/021jhha43 Senionlab (Sweden)'),
(31770, 'https://ror.org/021jv3185', 'en', 1, 'https://ror.org/021jv3185 Globe Institute of Technology'),
(31771, 'https://ror.org/021kp0270', 'no_lang_code', 1, 'https://ror.org/021kp0270 SoarTech (United States)'),
(31772, 'https://ror.org/021ky1s64', 'en', 1, 'https://ror.org/021ky1s64 Beijing Anding Hospital åŒ—äŗ¬å®‰å®šåŒ»é™¢'),
(31773, 'https://ror.org/021nfay74', 'en', 1, 'https://ror.org/021nfay74 Ningbo Kangning Hospital'),
(31774, 'https://ror.org/021p1en02', 'no_lang_code', 1, 'https://ror.org/021p1en02 Automated Dynamics (United States)'),
(31775, 'https://ror.org/021pv6792', 'en', 1, 'https://ror.org/021pv6792 CATAAlliance'),
(31776, 'https://ror.org/021t0p839', 'en', 1, 'https://ror.org/021t0p839 Santa Rosa Junior College'),
(31777, 'https://ror.org/021t57y21', 'no_lang_code', 1, 'https://ror.org/021t57y21 HUI Research (Sweden)'),
(31778, 'https://ror.org/021tyky57', 'no_lang_code', 1, 'https://ror.org/021tyky57 Evidence Based Research (United States)'),
(31779, 'https://ror.org/021wdam30', 'no_lang_code', 1, 'https://ror.org/021wdam30 DK-SPEC (Canada)'),
(31780, 'https://ror.org/021y1yq56', 'no_lang_code', 1, 'https://ror.org/021y1yq56 Emergent Space Technologies (United States)'),
(31781, 'https://ror.org/021yrfz74', 'no_lang_code', 1, 'https://ror.org/021yrfz74 SemLab (Netherlands)'),
(31782, 'https://ror.org/021zf9412', 'no_lang_code', 1, 'https://ror.org/021zf9412 Gavagai (Sweden)'),
(31783, 'https://ror.org/0220qmg06', 'no_lang_code', 1, 'https://ror.org/0220qmg06 Charmtech Labs (United States)'),
(31784, 'https://ror.org/0220z0193', 'no_lang_code', 1, 'https://ror.org/0220z0193 Scope Group (United States)'),
(31785, 'https://ror.org/0221y4w38', 'no_lang_code', 1, 'https://ror.org/0221y4w38 Johnson Research & Development (United States)'),
(31786, 'https://ror.org/02236vg19', 'no_lang_code', 1, 'https://ror.org/02236vg19 Structural Analytics (United States)'),
(31787, 'https://ror.org/0223gf763', 'no_lang_code', 1, 'https://ror.org/0223gf763 Easel Biotechnologies (United States)'),
(31788, 'https://ror.org/022485d27', 'en', 1, 'https://ror.org/022485d27 College of Agriculture at Križevci'),
(31789, 'https://ror.org/0225asj53', 'en', 1, 'https://ror.org/0225asj53 Department of Health'),
(31790, 'https://ror.org/0226byw17', 'en', 1, 'https://ror.org/0226byw17 Charter Oak State College'),
(31791, 'https://ror.org/0226hy875', 'no_lang_code', 1, 'https://ror.org/0226hy875 Minesto (Sweden)'),
(31792, 'https://ror.org/022c4zk48', 'en', 1, 'https://ror.org/022c4zk48 Small and Medium Business Administration'),
(31793, 'https://ror.org/022cgsm35', 'no_lang_code', 1, 'https://ror.org/022cgsm35 Imuna Pharm (Slovakia)'),
(31794, 'https://ror.org/022d1jx60', 'en', 1, 'https://ror.org/022d1jx60 Lung Foundation Australia'),
(31795, 'https://ror.org/022d46z41', 'no_lang_code', 1, 'https://ror.org/022d46z41 Kraft Heinz (Canada)'),
(31796, 'https://ror.org/022kdc073', 'no_lang_code', 1, 'https://ror.org/022kdc073 Iris Technology (United States)'),
(31797, 'https://ror.org/022nyme12', 'en', 1, 'https://ror.org/022nyme12 Alaska Space Grant Program'),
(31798, 'https://ror.org/022sa0k38', 'no_lang_code', 1, 'https://ror.org/022sa0k38 Kronos (Canada)'),
(31799, 'https://ror.org/022t09m69', 'no_lang_code', 1, 'https://ror.org/022t09m69 Optea (Sweden)'),
(31800, 'https://ror.org/022t22x02', 'no_lang_code', 1, 'https://ror.org/022t22x02 Kinetic BEI (United States)'),
(31801, 'https://ror.org/022t45q87', 'no_lang_code', 1, 'https://ror.org/022t45q87 Marstrom Composite (Sweden)'),
(31802, 'https://ror.org/022t7q367', 'en', 1, 'https://ror.org/022t7q367 Indiana Clinical and Translational Sciences Institute'),
(31803, 'https://ror.org/022vy2r94', 'no_lang_code', 1, 'https://ror.org/022vy2r94 Decipher Biosciences (Canada)'),
(31804, 'https://ror.org/022w59k49', 'en', 1, 'https://ror.org/022w59k49 Alaska State Museum'),
(31805, 'https://ror.org/022xj6v07', 'en', 1, 'https://ror.org/022xj6v07 Monterey College of Law'),
(31806, 'https://ror.org/0233s9736', 'en', 1, 'https://ror.org/0233s9736 United Community Center'),
(31807, 'https://ror.org/0235jt055', 'no_lang_code', 1, 'https://ror.org/0235jt055 Swedish Electroforming Technology (Sweden)'),
(31808, 'https://ror.org/0235ynz50', 'no_lang_code', 1, 'https://ror.org/0235ynz50 Informer (Greece)'),
(31809, 'https://ror.org/0236x7636', 'no_lang_code', 1, 'https://ror.org/0236x7636 KBL Group International (United States)'),
(31810, 'https://ror.org/0237x2s28', 'no_lang_code', 1, 'https://ror.org/0237x2s28 Axis Photonique (Canada)'),
(31811, 'https://ror.org/023844j81', 'en', 1, 'https://ror.org/023844j81 Massachusetts Rehabilitation Commission'),
(31812, 'https://ror.org/0238w0s48', 'no_lang_code', 1, 'https://ror.org/0238w0s48 Spytek Aerospace (United States)'),
(31813, 'https://ror.org/023a30207', 'no_lang_code', 1, 'https://ror.org/023a30207 Telesta Therapeutics (Canada)'),
(31814, 'https://ror.org/023ckfc30', 'en', 1, 'https://ror.org/023ckfc30 Grand River Conservation Authority'),
(31815, 'https://ror.org/023e5m798', 'en', 1, 'https://ror.org/023e5m798 North East London NHS Foundation Trust'),
(31816, 'https://ror.org/023egja51', 'no_lang_code', 1, 'https://ror.org/023egja51 Lyndon Fish Hatcheries'),
(31817, 'https://ror.org/023f4f524', 'fr', 1, 'https://ror.org/023f4f524 Fondation Congolaise Pour La Recherche MƩdicale'),
(31818, 'https://ror.org/023h32w18', 'no_lang_code', 1, 'https://ror.org/023h32w18 McLaren Honda (United Kingdom)'),
(31819, 'https://ror.org/023kmdf41', 'es', 1, 'https://ror.org/023kmdf41 Centro Dermatológico Federico Lleras Acosta'),
(31820, 'https://ror.org/023pdrd93', 'no_lang_code', 1, 'https://ror.org/023pdrd93 ZOA (Uganda)'),
(31821, 'https://ror.org/023q7ek24', 'no_lang_code', 1, 'https://ror.org/023q7ek24 Stornoway Diamond (Canada)'),
(31822, 'https://ror.org/023rnh198', 'en', 1, 'https://ror.org/023rnh198 Alberta Livestock and Meat Agency'),
(31823, 'https://ror.org/023s10w93', 'en', 1, 'https://ror.org/023s10w93 Ministry of Sustainable Development, Environment and the Fight against Climate Change'),
(31824, 'https://ror.org/023te5r95', 'en', 1, 'https://ror.org/023te5r95 Fifth Affiliated Hospital of Sun Yat-sen University'),
(31825, 'https://ror.org/023wsvq95', 'en', 1, 'https://ror.org/023wsvq95 Department of Foreign Affairs and Trade'),
(31826, 'https://ror.org/023wx0t90', 'en', 1, 'https://ror.org/023wx0t90 Ministry of Environment, Forests and Climate Change'),
(31827, 'https://ror.org/023xh4g85', 'no_lang_code', 1, 'https://ror.org/023xh4g85 Eutecus (United States)'),
(31828, 'https://ror.org/023xmtf12', 'en', 1, 'https://ror.org/023xmtf12 Assemblea delle Donne per lo Sviluppo e la Lotta all''Esclusione Sociale Assembly of Women for Development and the Struggle against Social Exclusion'),
(31829, 'https://ror.org/023xrdj21', 'en', 1, 'https://ror.org/023xrdj21 International Mental Health Research Organization'),
(31830, 'https://ror.org/023zamm70', 'en', 1, 'https://ror.org/023zamm70 CANDU Owners Group'),
(31831, 'https://ror.org/023zmfm94', 'fr', 1, 'https://ror.org/023zmfm94 SociƩtƩ GƩologique de France'),
(31832, 'https://ror.org/0240caq72', 'no_lang_code', 1, 'https://ror.org/0240caq72 Contship Italia (Italy)'),
(31833, 'https://ror.org/0240wfg28', 'no_lang_code', 1, 'https://ror.org/0240wfg28 MTS Technologies (United States)'),
(31834, 'https://ror.org/02417p338', 'en', 1, 'https://ror.org/02417p338 Parkinson''s UK'),
(31835, 'https://ror.org/0241w9k67', 'ro', 1, 'https://ror.org/0241w9k67 Institutul de Cercetare-Dezvoltare pentru Protecţia Plantelor'),
(31836, 'https://ror.org/0242vta36', 'en', 1, 'https://ror.org/0242vta36 University of Pittsburgh at Titusville'),
(31837, 'https://ror.org/0245w0f92', 'no_lang_code', 1, 'https://ror.org/0245w0f92 Phantom Design (United States)'),
(31838, 'https://ror.org/0248qb926', 'es', 1, 'https://ror.org/0248qb926 Fundación Mapfre'),
(31839, 'https://ror.org/024arnh55', 'no_lang_code', 1, 'https://ror.org/024arnh55 Solid State Scientific Corporation (United States)'),
(31840, 'https://ror.org/024ctqw02', 'en', 1, 'https://ror.org/024ctqw02 Korea Military Academy ėŒ€ķ•œėÆ¼źµ­ ģœ”źµ°ģ‚¬ź“€ķ•™źµ'),
(31841, 'https://ror.org/024dc0f12', 'no_lang_code', 1, 'https://ror.org/024dc0f12 HeidelbergCement (Canada)'),
(31842, 'https://ror.org/024e9aw38', 'en', 1, 'https://ror.org/024e9aw38 European CanCer Organisation'),
(31843, 'https://ror.org/024eb7n23', 'no_lang_code', 1, 'https://ror.org/024eb7n23 Prism Computational Sciences (United States)'),
(31844, 'https://ror.org/024efz335', 'no_lang_code', 1, 'https://ror.org/024efz335 Innovative Energy Solution (United States)'),
(31845, 'https://ror.org/024fgbf65', 'no_lang_code', 1, 'https://ror.org/024fgbf65 HEM Technologies (United States)'),
(31846, 'https://ror.org/024gx1m25', 'no_lang_code', 1, 'https://ror.org/024gx1m25 IntelliWork (Sweden)'),
(31847, 'https://ror.org/024h8p458', 'es', 1, 'https://ror.org/024h8p458 Ministerio de Salud'),
(31848, 'https://ror.org/024hwtz39', 'no_lang_code', 1, 'https://ror.org/024hwtz39 SenseAir (Sweden)'),
(31849, 'https://ror.org/024nxr378', 'no_lang_code', 1, 'https://ror.org/024nxr378 Avineon (United States)'),
(31850, 'https://ror.org/024p99359', 'no_lang_code', 1, 'https://ror.org/024p99359 BainUltra (Canada)'),
(31851, 'https://ror.org/024s1p860', 'no_lang_code', 1, 'https://ror.org/024s1p860 NanoDesign (Slovakia)'),
(31852, 'https://ror.org/024tm3y55', 'no_lang_code', 1, 'https://ror.org/024tm3y55 Glonatech (Greece)'),
(31853, 'https://ror.org/024vtv124', 'hu', 1, 'https://ror.org/024vtv124 Enciklopédia Kiadó'),
(31854, 'https://ror.org/024w82g14', 'no_lang_code', 1, 'https://ror.org/024w82g14 GeneSiC Semiconductor (United States)'),
(31855, 'https://ror.org/024wcbg54', 'no_lang_code', 1, 'https://ror.org/024wcbg54 Free2move (Sweden)'),
(31856, 'https://ror.org/024x8v141', 'en', 1, 'https://ror.org/024x8v141 Shandong Mental Health Center'),
(31857, 'https://ror.org/024zyky79', 'no_lang_code', 1, 'https://ror.org/024zyky79 Network Sensing Technologies (United States)'),
(31858, 'https://ror.org/0251djz27', 'en', 1, 'https://ror.org/0251djz27 Cabarrus College of Health Sciences'),
(31859, 'https://ror.org/02543xy77', 'no_lang_code', 1, 'https://ror.org/02543xy77 Abaris Training (United States)'),
(31860, 'https://ror.org/0256rxv90', 'en', 1, 'https://ror.org/0256rxv90 Economic Review Foundation'),
(31861, 'https://ror.org/02585xs81', 'no_lang_code', 1, 'https://ror.org/02585xs81 Black Laboratories (United States)'),
(31862, 'https://ror.org/0259vv330', 'en', 1, 'https://ror.org/0259vv330 International Centre for Diffraction Data'),
(31863, 'https://ror.org/025a5nc26', 'no_lang_code', 1, 'https://ror.org/025a5nc26 JEM Engineering (United States)'),
(31864, 'https://ror.org/025ct3y55', 'no_lang_code', 1, 'https://ror.org/025ct3y55 TechSource (United States)'),
(31865, 'https://ror.org/025cy1d38', 'en', 1, 'https://ror.org/025cy1d38 Department of Health Social Services and Public Safety'),
(31866, 'https://ror.org/025e41s54', 'no_lang_code', 1, 'https://ror.org/025e41s54 Spectral Energies (United States)'),
(31867, 'https://ror.org/025gg5e98', 'en', 1, 'https://ror.org/025gg5e98 Healis Sekhsaria Institute For Public Health'),
(31868, 'https://ror.org/025jhd967', 'no_lang_code', 1, 'https://ror.org/025jhd967 Systems, Applications & Products in Data Processing (Canada)'),
(31869, 'https://ror.org/025jq2275', 'no_lang_code', 1, 'https://ror.org/025jq2275 TransAlta (Canada)'),
(31870, 'https://ror.org/025n1fp68', 'pt', 1, 'https://ror.org/025n1fp68 Institute of Aeronautics and Space Instituto de AeronƔutica e EspaƧo'),
(31871, 'https://ror.org/025nk1308', 'no_lang_code', 1, 'https://ror.org/025nk1308 Sectra (Sweden)'),
(31872, 'https://ror.org/025nrv979', 'no_lang_code', 1, 'https://ror.org/025nrv979 Phygen (United States)'),
(31873, 'https://ror.org/025pqzv51', 'en', 1, 'https://ror.org/025pqzv51 QMedic'),
(31874, 'https://ror.org/025q90g47', 'no_lang_code', 1, 'https://ror.org/025q90g47 Grieg Seafood (Canada)'),
(31875, 'https://ror.org/025qfq989', 'no_lang_code', 1, 'https://ror.org/025qfq989 Villa Pro (Slovakia)'),
(31876, 'https://ror.org/025qv0671', 'en', 1, 'https://ror.org/025qv0671 North West Cancer Research'),
(31877, 'https://ror.org/025qyhe63', 'no_lang_code', 1, 'https://ror.org/025qyhe63 Advanced Powder Solutions (United States)'),
(31878, 'https://ror.org/025qzmf95', 'no_lang_code', 1, 'https://ror.org/025qzmf95 Logikos (United States)'),
(31879, 'https://ror.org/025ras206', 'en', 1, 'https://ror.org/025ras206 Ningbo Municipal People''s Government'),
(31880, 'https://ror.org/025rxfw41', 'no_lang_code', 1, 'https://ror.org/025rxfw41 Semantic Designs (United States)'),
(31881, 'https://ror.org/025t5fr72', 'no_lang_code', 1, 'https://ror.org/025t5fr72 Viscogel (Sweden)'),
(31882, 'https://ror.org/025v1gy78', 'no_lang_code', 1, 'https://ror.org/025v1gy78 Crown Investments Corporation (Canada)'),
(31883, 'https://ror.org/025whmn93', 'en', 1, 'https://ror.org/025whmn93 Transport for Greater Manchester'),
(31884, 'https://ror.org/025yjyh61', 'no_lang_code', 1, 'https://ror.org/025yjyh61 Bioprocess Control (Sweden)'),
(31885, 'https://ror.org/025z7wk46', 'no_lang_code', 1, 'https://ror.org/025z7wk46 Gu Holding (Sweden)'),
(31886, 'https://ror.org/0265bng15', 'no_lang_code', 1, 'https://ror.org/0265bng15 Pioneering Decisive Solutions (United States)'),
(31887, 'https://ror.org/02675s371', 'en', 1, 'https://ror.org/02675s371 Japan BCG Laboratory ę—„ęœ¬ćƒ“ćƒ¼ć‚·ćƒ¼ć‚øćƒ¼č£½é€ ę Ŗå¼ä¼šē¤¾'),
(31888, 'https://ror.org/0267nkd62', 'en', 1, 'https://ror.org/0267nkd62 Higher Education Academy'),
(31889, 'https://ror.org/0267rbx05', 'hu', 1, 'https://ror.org/0267rbx05 BaƔr-Madas ReformƔtus GimnƔzium'),
(31890, 'https://ror.org/0268acg39', 'no_lang_code', 1, 'https://ror.org/0268acg39 SCS Energy (United States)'),
(31891, 'https://ror.org/0268nwh16', 'en', 1, 'https://ror.org/0268nwh16 Carroll Center for the Blind'),
(31892, 'https://ror.org/0268pvz05', 'no_lang_code', 1, 'https://ror.org/0268pvz05 PnP Innovations (United States)'),
(31893, 'https://ror.org/026bqfq17', 'en', 1, 'https://ror.org/026bqfq17 Second Affiliated Hospital of Zhengzhou University'),
(31894, 'https://ror.org/026d26k38', 'no_lang_code', 1, 'https://ror.org/026d26k38 D-Star Engineering (United States)'),
(31895, 'https://ror.org/026d6ma13', 'pt', 1, 'https://ror.org/026d6ma13 Fundação de Amparo à Pesquisa do Estado do Amazonas'),
(31896, 'https://ror.org/026djmp70', 'no_lang_code', 1, 'https://ror.org/026djmp70 RayBiotech (China)'),
(31897, 'https://ror.org/026fd2357', 'en', 1, 'https://ror.org/026fd2357 Southwest Bible College and Seminary'),
(31898, 'https://ror.org/026hjc247', 'en', 1, 'https://ror.org/026hjc247 Florida Southern College Universidad de Florida del Sur'),
(31899, 'https://ror.org/026k6c650', 'no_lang_code', 1, 'https://ror.org/026k6c650 Orielle (United States)'),
(31900, 'https://ror.org/026m4hd24', 'en', 1, 'https://ror.org/026m4hd24 Kidney Health Australia'),
(31901, 'https://ror.org/026mgjd21', 'no_lang_code', 1, 'https://ror.org/026mgjd21 bioMƩrieux (India)'),
(31902, 'https://ror.org/026p72y65', 'no_lang_code', 1, 'https://ror.org/026p72y65 Material (Belgium)'),
(31903, 'https://ror.org/026rg9t92', 'no_lang_code', 1, 'https://ror.org/026rg9t92 PolyK Technologies (United States)'),
(31904, 'https://ror.org/026tmj997', 'no_lang_code', 1, 'https://ror.org/026tmj997 Materials Sciences (United States)'),
(31905, 'https://ror.org/026tvjz61', 'sv', 1, 'https://ror.org/026tvjz61 ATK Arbetstagarkonsultation'),
(31906, 'https://ror.org/026txtp63', 'no_lang_code', 1, 'https://ror.org/026txtp63 Ineos (United States)'),
(31907, 'https://ror.org/026v53e29', 'en', 1, 'https://ror.org/026v53e29 National IT industry Promotion Agency ģ •ė³“ķ†µģ‹ ģ‚°ģ—…ģ§„ķ„ģ›'),
(31908, 'https://ror.org/026venb53', 'no_lang_code', 1, 'https://ror.org/026venb53 Huawei Technologies (Canada)'),
(31909, 'https://ror.org/026x8jh45', 'en', 1, 'https://ror.org/026x8jh45 Dutch Centre for Field Ornithology Niederländisches Zentrum für Feldornithologie'),
(31910, 'https://ror.org/026xacc21', 'no_lang_code', 1, 'https://ror.org/026xacc21 Thoth Technology (Canada)'),
(31911, 'https://ror.org/026yx1y36', 'no_lang_code', 1, 'https://ror.org/026yx1y36 Ozma (Sweden)'),
(31912, 'https://ror.org/026z1v086', 'en', 1, 'https://ror.org/026z1v086 Lasell College'),
(31913, 'https://ror.org/026zht694', 'pt', 1, 'https://ror.org/026zht694 Fundação de Amparo à Pesquisa do Estado do Piauí'),
(31914, 'https://ror.org/026zxn394', 'en', 1, 'https://ror.org/026zxn394 Centre for Integrated Research in the Rural Environment'),
(31915, 'https://ror.org/02704qw51', 'en', 1, 'https://ror.org/02704qw51 Wellcome Centre for Human Neuroimaging'),
(31916, 'https://ror.org/0271r8814', 'no_lang_code', 1, 'https://ror.org/0271r8814 Kion Defense Technologies (United States)'),
(31917, 'https://ror.org/0274e5q02', 'en', 1, 'https://ror.org/0274e5q02 Boston Conservatory Conservatoire de boston'),
(31918, 'https://ror.org/0276qgf45', 'no_lang_code', 1, 'https://ror.org/0276qgf45 iBeam Materials (United States)'),
(31919, 'https://ror.org/027754r66', 'en', 1, 'https://ror.org/027754r66 Novo Nordisk UK Research Foundation'),
(31920, 'https://ror.org/027990s04', 'no_lang_code', 1, 'https://ror.org/027990s04 Black River Systems (United States)'),
(31921, 'https://ror.org/0279n3m18', 'sr', 1, 'https://ror.org/0279n3m18 Pokrajinski Sekretarijat za Nauku i TehnoloŔki Razvoj Provincial Secretariat for Science and Technological Development'),
(31922, 'https://ror.org/027c2h907', 'es', 1, 'https://ror.org/027c2h907 Red de Investigación Cardiovascular'),
(31923, 'https://ror.org/027epca68', 'en', 1, 'https://ror.org/027epca68 China Institute in America'),
(31924, 'https://ror.org/027g2v939', 'en', 1, 'https://ror.org/027g2v939 Vermont Department of Disabilities Aging and Independent Living'),
(31925, 'https://ror.org/027gw7s27', 'no_lang_code', 1, 'https://ror.org/027gw7s27 Taizhou Municipal Hospital'),
(31926, 'https://ror.org/027hreq63', 'nl', 1, 'https://ror.org/027hreq63 Koninklijke Scholengemeenschap'),
(31927, 'https://ror.org/027jcmq30', 'no_lang_code', 1, 'https://ror.org/027jcmq30 Aeronix (United States)'),
(31928, 'https://ror.org/027npbp21', 'hu', 1, 'https://ror.org/027npbp21 Vas Megyei KormƔnyhivatalt'),
(31929, 'https://ror.org/027qmp433', 'no_lang_code', 1, 'https://ror.org/027qmp433 Conlogic (Sweden)'),
(31930, 'https://ror.org/027qy6d19', 'es', 1, 'https://ror.org/027qy6d19 Centro Regional de Selección y Reproducción Animal'),
(31931, 'https://ror.org/027r7x563', 'no_lang_code', 1, 'https://ror.org/027r7x563 Net Squared (United States)'),
(31932, 'https://ror.org/027s74w23', 'no_lang_code', 1, 'https://ror.org/027s74w23 Damaskos (United States)'),
(31933, 'https://ror.org/027smmx64', 'no_lang_code', 1, 'https://ror.org/027smmx64 Materials Systems (United States)'),
(31934, 'https://ror.org/027wsdy85', 'no_lang_code', 1, 'https://ror.org/027wsdy85 Digital Optics Technologies (United States)'),
(31935, 'https://ror.org/027xav248', 'en', 1, 'https://ror.org/027xav248 Finnish Cultural Foundation'),
(31936, 'https://ror.org/027xe4b29', 'no_lang_code', 1, 'https://ror.org/027xe4b29 Renco Group (United States)'),
(31937, 'https://ror.org/027yna928', 'no_lang_code', 1, 'https://ror.org/027yna928 Natures (Slovakia)'),
(31938, 'https://ror.org/027z7k446', 'no_lang_code', 1, 'https://ror.org/027z7k446 B.E. Meyers & Co (United States)'),
(31939, 'https://ror.org/0285fde08', 'en', 1, 'https://ror.org/0285fde08 Jain Foundation'),
(31940, 'https://ror.org/0286gjk84', 'en', 1, 'https://ror.org/0286gjk84 Canadian Seed Growers Association'),
(31941, 'https://ror.org/02878nd97', 'no_lang_code', 1, 'https://ror.org/02878nd97 Canadian Pacific Railway (Canada)'),
(31942, 'https://ror.org/0287gd772', 'no_lang_code', 1, 'https://ror.org/0287gd772 New Potato Technologies (United States)'),
(31943, 'https://ror.org/0287jnj14', 'en', 1, 'https://ror.org/0287jnj14 Centro de Investigação em Saúde de Manhiça Manhiça Health Research Centre'),
(31944, 'https://ror.org/0287k2v97', 'no_lang_code', 1, 'https://ror.org/0287k2v97 Hal Technology (United States)'),
(31945, 'https://ror.org/028876725', 'no_lang_code', 1, 'https://ror.org/028876725 EpiWorks (United States)'),
(31946, 'https://ror.org/0288pey56', 'no_lang_code', 1, 'https://ror.org/0288pey56 KLSS (United States)'),
(31947, 'https://ror.org/0288ss544', 'no_lang_code', 1, 'https://ror.org/0288ss544 Glomics (United States)'),
(31948, 'https://ror.org/0288xhz86', 'no_lang_code', 1, 'https://ror.org/0288xhz86 Evolva Holding (United States)'),
(31949, 'https://ror.org/0289akc76', 'no_lang_code', 1, 'https://ror.org/0289akc76 Canatec (Canada)'),
(31950, 'https://ror.org/0289d9s26', 'no_lang_code', 1, 'https://ror.org/0289d9s26 Robert Heffley Engineering (United States)'),
(31951, 'https://ror.org/028btas66', 'no_lang_code', 1, 'https://ror.org/028btas66 Applied Physical Electronics (United States)'),
(31952, 'https://ror.org/028dx7d12', 'no_lang_code', 1, 'https://ror.org/028dx7d12 Rether Networks (United States)'),
(31953, 'https://ror.org/028e6y556', 'en', 1, 'https://ror.org/028e6y556 Tumour Institute of Tuscany'),
(31954, 'https://ror.org/028erp057', 'no_lang_code', 1, 'https://ror.org/028erp057 Coherent Technical Services (United States)'),
(31955, 'https://ror.org/028g62054', 'no_lang_code', 1, 'https://ror.org/028g62054 Replisaurus Technologies (Sweden)'),
(31956, 'https://ror.org/028gxg804', 'no_lang_code', 1, 'https://ror.org/028gxg804 Catalytic Materials (United States)'),
(31957, 'https://ror.org/028hejq20', 'no_lang_code', 1, 'https://ror.org/028hejq20 LinkNet (United States)'),
(31958, 'https://ror.org/028hvvb93', 'sv', 1, 'https://ror.org/028hvvb93 Svenska Uppfinnarefƶreningen'),
(31959, 'https://ror.org/028jdjq42', 'no_lang_code', 1, 'https://ror.org/028jdjq42 Dominca (United States)'),
(31960, 'https://ror.org/028jkr794', 'no_lang_code', 1, 'https://ror.org/028jkr794 PrimeKey Solutions (Sweden)'),
(31961, 'https://ror.org/028kxkn33', 'no_lang_code', 1, 'https://ror.org/028kxkn33 Brayton Energy (United States)'),
(31962, 'https://ror.org/028pagn69', 'en', 1, 'https://ror.org/028pagn69 London Metropolitan Archives'),
(31963, 'https://ror.org/028pgd321', 'en', 1, 'https://ror.org/028pgd321 Affiliated Hospital of Jiangsu University'),
(31964, 'https://ror.org/028s8e034', 'no_lang_code', 1, 'https://ror.org/028s8e034 Utilities Kingston (Canada)'),
(31965, 'https://ror.org/028vf7c32', 'en', 1, 'https://ror.org/028vf7c32 Africa Innovations Institute'),
(31966, 'https://ror.org/0290hax27', 'en', 1, 'https://ror.org/0290hax27 Gatsby Charitable Foundation'),
(31967, 'https://ror.org/0290taq42', 'no_lang_code', 1, 'https://ror.org/0290taq42 Applied Nano Surfaces (Sweden)'),
(31968, 'https://ror.org/02951hv89', 'no_lang_code', 1, 'https://ror.org/02951hv89 Campbell Scientific (Canada)'),
(31969, 'https://ror.org/02968zb41', 'no_lang_code', 1, 'https://ror.org/02968zb41 Assa Abloy (United States)'),
(31970, 'https://ror.org/0296ss903', 'en', 1, 'https://ror.org/0296ss903 Alberta Children’s Hospital Foundation'),
(31971, 'https://ror.org/0297rgf95', 'no_lang_code', 1, 'https://ror.org/0297rgf95 OR Concepts Applied (United States)'),
(31972, 'https://ror.org/0298hp073', 'en', 1, 'https://ror.org/0298hp073 NIHR Liverpool Pancreatic Biomedical Research Unit'),
(31973, 'https://ror.org/0298xnj14', 'en', 1, 'https://ror.org/0298xnj14 Kentucky Educational Television'),
(31974, 'https://ror.org/02990z368', 'no_lang_code', 1, 'https://ror.org/02990z368 MicroXact (United States)'),
(31975, 'https://ror.org/029a84r94', 'no_lang_code', 1, 'https://ror.org/029a84r94 Psi Chi'),
(31976, 'https://ror.org/029acmk59', 'en', 1, 'https://ror.org/029acmk59 Baptist Community Ministries'),
(31977, 'https://ror.org/029dygd35', 'en', 1, 'https://ror.org/029dygd35 National Institutes of Biotechnology Malaysia'),
(31978, 'https://ror.org/029e47x73', 'en', 1, 'https://ror.org/029e47x73 Georgetown University in Qatar Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁˆŲ±Ų¬ŲŖŲ§ŁˆŁ†'),
(31979, 'https://ror.org/029jacn25', 'no_lang_code', 1, 'https://ror.org/029jacn25 SiEnergy Systems (United States)'),
(31980, 'https://ror.org/029k5s383', 'en', 1, 'https://ror.org/029k5s383 Association canadienne des tƩlƩcommunications sans fil Canadian Wireless Telecommunications Association'),
(31981, 'https://ror.org/029ke3y74', 'en', 1, 'https://ror.org/029ke3y74 SEE Center'),
(31982, 'https://ror.org/029m27614', 'no_lang_code', 1, 'https://ror.org/029m27614 Out of the Fog Research (United States)'),
(31983, 'https://ror.org/029ncv135', 'no_lang_code', 1, 'https://ror.org/029ncv135 WeldQC (United States)'),
(31984, 'https://ror.org/029qxj390', 'no_lang_code', 1, 'https://ror.org/029qxj390 AET (United States)'),
(31985, 'https://ror.org/029xftc44', 'no_lang_code', 1, 'https://ror.org/029xftc44 Innovative Wireless Technologies (United States)'),
(31986, 'https://ror.org/029xgej46', 'en', 1, 'https://ror.org/029xgej46 Orthopaedic Research and Education Foundation'),
(31987, 'https://ror.org/029yh7e40', 'en', 1, 'https://ror.org/029yh7e40 District of Columbia Water and Sewer Authority'),
(31988, 'https://ror.org/029yy5f63', 'en', 1, 'https://ror.org/029yy5f63 Northwest College of Art & Design'),
(31989, 'https://ror.org/029zfr186', 'no_lang_code', 1, 'https://ror.org/029zfr186 Synkola (Slovakia)'),
(31990, 'https://ror.org/02a3gym89', 'no_lang_code', 1, 'https://ror.org/02a3gym89 MTECH Laboratories (United States)'),
(31991, 'https://ror.org/02a3w7r50', 'en', 1, 'https://ror.org/02a3w7r50 Hereditary Disease Foundation'),
(31992, 'https://ror.org/02a3z0p48', 'en', 1, 'https://ror.org/02a3z0p48 Federal Council'),
(31993, 'https://ror.org/02a4k9d45', 'en', 1, 'https://ror.org/02a4k9d45 Blooms Syndrome Foundation'),
(31994, 'https://ror.org/02a5smf05', 'en', 1, 'https://ror.org/02a5smf05 Cockcroft Institute'),
(31995, 'https://ror.org/02a87jr47', 'no_lang_code', 1, 'https://ror.org/02a87jr47 ASR (United States)'),
(31996, 'https://ror.org/02a9kj848', 'en', 1, 'https://ror.org/02a9kj848 SƶdertƤlje Municipality'),
(31997, 'https://ror.org/02aadsr63', 'en', 1, 'https://ror.org/02aadsr63 Independent Ecological Centre'),
(31998, 'https://ror.org/02ad7ap24', 'en', 1, 'https://ror.org/02ad7ap24 Qujing Normal University ę›²é–åøˆčŒƒå­¦é™¢'),
(31999, 'https://ror.org/02adffe18', 'no_lang_code', 1, 'https://ror.org/02adffe18 Sigma-K (United States)'),
(32000, 'https://ror.org/02ae31880', 'no_lang_code', 1, 'https://ror.org/02ae31880 Qualcomm (Canada)'),
(32001, 'https://ror.org/02ae4zw82', 'en', 1, 'https://ror.org/02ae4zw82 American Precision Museum'),
(32002, 'https://ror.org/02aeyw607', 'no_lang_code', 1, 'https://ror.org/02aeyw607 Qrodo (Sweden)'),
(32003, 'https://ror.org/02agp0d04', 'en', 1, 'https://ror.org/02agp0d04 Link Foundation'),
(32004, 'https://ror.org/02aj8hb75', 'no_lang_code', 1, 'https://ror.org/02aj8hb75 Trade Extensions (Sweden)'),
(32005, 'https://ror.org/02aj9jk84', 'en', 1, 'https://ror.org/02aj9jk84 Jiangsu Provincial Authorities Hospital ę±Ÿč‹ēœēœēŗ§ęœŗå…³åŒ»é™¢'),
(32006, 'https://ror.org/02ajj7j73', 'no_lang_code', 1, 'https://ror.org/02ajj7j73 BIO (Canada)'),
(32007, 'https://ror.org/02ajxzc79', 'no_lang_code', 1, 'https://ror.org/02ajxzc79 Thar Energy (United States)'),
(32008, 'https://ror.org/02akadd86', 'no_lang_code', 1, 'https://ror.org/02akadd86 Stedfast (Canada)'),
(32009, 'https://ror.org/02amd8949', 'no_lang_code', 1, 'https://ror.org/02amd8949 Demeton Technologies (United States)'),
(32010, 'https://ror.org/02ap4eq27', 'no_lang_code', 1, 'https://ror.org/02ap4eq27 Origin Energy (Australia)'),
(32011, 'https://ror.org/02asacd21', 'no_lang_code', 1, 'https://ror.org/02asacd21 QPS (Netherlands)'),
(32012, 'https://ror.org/02av38n71', 'de', 1, 'https://ror.org/02av38n71 HELIOS St. Elisabeth Klinik Oberhausen'),
(32013, 'https://ror.org/02axhzy41', 'en', 1, 'https://ror.org/02axhzy41 American Society for Laser Medicine and Surgery'),
(32014, 'https://ror.org/02ayg6516', 'en', 1, 'https://ror.org/02ayg6516 Guangxi University of Finance and Economics å¹æč„æč“¢ē»å­¦é™¢'),
(32015, 'https://ror.org/02ayh6y70', 'no_lang_code', 1, 'https://ror.org/02ayh6y70 Husqvarna (Sweden)'),
(32016, 'https://ror.org/02b1qyv69', 'en', 1, 'https://ror.org/02b1qyv69 Devlet Planlama Teşkilatı State Planning Organization'),
(32017, 'https://ror.org/02b207r52', 'en', 1, 'https://ror.org/02b207r52 Ministry of Science and Technology'),
(32018, 'https://ror.org/02b2hzg62', 'sv', 1, 'https://ror.org/02b2hzg62 Rinkebyakademien'),
(32019, 'https://ror.org/02b4me685', 'no_lang_code', 1, 'https://ror.org/02b4me685 Tokatsu Hospital'),
(32020, 'https://ror.org/02b6qtv44', 'no_lang_code', 1, 'https://ror.org/02b6qtv44 Thermal Electronics (United States)'),
(32021, 'https://ror.org/02bax5p58', 'no_lang_code', 1, 'https://ror.org/02bax5p58 Ionic Systems (United States)'),
(32022, 'https://ror.org/02bck4b72', 'no_lang_code', 1, 'https://ror.org/02bck4b72 AMT Die Casting (Canada) Moulage sous pression AMT'),
(32023, 'https://ror.org/02be22443', 'de', 1, 'https://ror.org/02be22443 Ferdinand-Braun-Institut, Leibniz-Institut für Höchstfrequenztechnik'),
(32024, 'https://ror.org/02bffdv67', 'en', 1, 'https://ror.org/02bffdv67 Ministry of Education of the Republic of Belarus'),
(32025, 'https://ror.org/02bh3n268', 'no_lang_code', 1, 'https://ror.org/02bh3n268 MidƩ Technology (United States)'),
(32026, 'https://ror.org/02bhsam28', 'no_lang_code', 1, 'https://ror.org/02bhsam28 Computer Control Technology (Slovakia)'),
(32027, 'https://ror.org/02bjb1a43', 'no_lang_code', 1, 'https://ror.org/02bjb1a43 GearWheel (Sweden)'),
(32028, 'https://ror.org/02bmd7x67', 'en', 1, 'https://ror.org/02bmd7x67 British Pharmacological Society'),
(32029, 'https://ror.org/02bnr9368', 'en', 1, 'https://ror.org/02bnr9368 Southern Technical College'),
(32030, 'https://ror.org/02bssr922', 'no_lang_code', 1, 'https://ror.org/02bssr922 Shoestring Press (United States)'),
(32031, 'https://ror.org/02btef130', 'no_lang_code', 1, 'https://ror.org/02btef130 F6S Network (United Kingdom)'),
(32032, 'https://ror.org/02bvjeb84', 'en', 1, 'https://ror.org/02bvjeb84 Techmania Science Center'),
(32033, 'https://ror.org/02by97j27', 'no_lang_code', 1, 'https://ror.org/02by97j27 Arca Progetti (Italy)'),
(32034, 'https://ror.org/02byc7177', 'no_lang_code', 1, 'https://ror.org/02byc7177 Motor Design (United Kingdom)'),
(32035, 'https://ror.org/02bz1zk40', 'no_lang_code', 1, 'https://ror.org/02bz1zk40 Design Net Engineering (United States)'),
(32036, 'https://ror.org/02bzj4420', 'en', 1, 'https://ror.org/02bzj4420 Health Foundation'),
(32037, 'https://ror.org/02c53vf48', 'no_lang_code', 1, 'https://ror.org/02c53vf48 Plant Sensory Systems (United States)'),
(32038, 'https://ror.org/02c5gz222', 'no_lang_code', 1, 'https://ror.org/02c5gz222 Scientific Solutions Innovative Research and Engineering (United States)'),
(32039, 'https://ror.org/02c944e82', 'en', 1, 'https://ror.org/02c944e82 St. Elizabeth Youngstown Hospital'),
(32040, 'https://ror.org/02c9tf451', 'en', 1, 'https://ror.org/02c9tf451 Charles H. Revson Foundation'),
(32041, 'https://ror.org/02c9zcr51', 'no_lang_code', 1, 'https://ror.org/02c9zcr51 Advanced Cerametrics (United States)'),
(32042, 'https://ror.org/02caat392', 'en', 1, 'https://ror.org/02caat392 Multiple Sclerosis Research Australia'),
(32043, 'https://ror.org/02cdzet69', 'en', 1, 'https://ror.org/02cdzet69 Federation of Finnish Learned Societies'),
(32044, 'https://ror.org/02cg78r45', 'no_lang_code', 1, 'https://ror.org/02cg78r45 Visual Editor Consultants (United States)'),
(32045, 'https://ror.org/02ch6zk08', 'en', 1, 'https://ror.org/02ch6zk08 Plant Production Research Institute'),
(32046, 'https://ror.org/02chwny87', 'no_lang_code', 1, 'https://ror.org/02chwny87 Rockland Capital (United States)'),
(32047, 'https://ror.org/02cj87r87', 'no_lang_code', 1, 'https://ror.org/02cj87r87 Pacific Rim Engineering (United States)'),
(32048, 'https://ror.org/02cj8qz82', 'en', 1, 'https://ror.org/02cj8qz82 Nebraska Methodist College'),
(32049, 'https://ror.org/02ckxxf86', 'no_lang_code', 1, 'https://ror.org/02ckxxf86 Digital Specialty Chemicals (Canada)'),
(32050, 'https://ror.org/02cmxdd33', 'en', 1, 'https://ror.org/02cmxdd33 Kate''s Foundation'),
(32051, 'https://ror.org/02cnc7158', 'no_lang_code', 1, 'https://ror.org/02cnc7158 Aerovel Corporation (United States)'),
(32052, 'https://ror.org/02cr5sn51', 'no_lang_code', 1, 'https://ror.org/02cr5sn51 Guided Systems Technologies (United States)'),
(32053, 'https://ror.org/02cwr7s69', 'nl', 1, 'https://ror.org/02cwr7s69 Stichting Astma Bestrijding'),
(32054, 'https://ror.org/02cxh9170', 'no_lang_code', 1, 'https://ror.org/02cxh9170 Boston Engineering (United States)'),
(32055, 'https://ror.org/02cybaz37', 'en', 1, 'https://ror.org/02cybaz37 PHG Foundation'),
(32056, 'https://ror.org/02d2g0205', 'en', 1, 'https://ror.org/02d2g0205 NIHR Cambridge Dementia Biomedical Research Unit'),
(32057, 'https://ror.org/02d540t02', 'en', 1, 'https://ror.org/02d540t02 Poliomyelitis Research Foundation'),
(32058, 'https://ror.org/02d54v010', 'en', 1, 'https://ror.org/02d54v010 Black Sea Commission'),
(32059, 'https://ror.org/02d58c802', 'en', 1, 'https://ror.org/02d58c802 Kidney & Urology Foundation of America'),
(32060, 'https://ror.org/02d794w74', 'no_lang_code', 1, 'https://ror.org/02d794w74 Duslo (Slovakia)'),
(32061, 'https://ror.org/02d79dn07', 'no_lang_code', 1, 'https://ror.org/02d79dn07 Valore (United States)'),
(32062, 'https://ror.org/02d8hxb72', 'no_lang_code', 1, 'https://ror.org/02d8hxb72 Invariant Corporation (United States)'),
(32063, 'https://ror.org/02d9dkk61', 'en', 1, 'https://ror.org/02d9dkk61 Gout Research Foundation'),
(32064, 'https://ror.org/02d9kar35', 'no_lang_code', 1, 'https://ror.org/02d9kar35 Ellen (Sweden)'),
(32065, 'https://ror.org/02damtp46', 'no_lang_code', 1, 'https://ror.org/02damtp46 AFFiRiS (Austria)'),
(32066, 'https://ror.org/02dbz7n48', 'en', 1, 'https://ror.org/02dbz7n48 Ministry of Public Health Ministère de la Santé Publique'),
(32067, 'https://ror.org/02dcjej90', 'no_lang_code', 1, 'https://ror.org/02dcjej90 RTDS Technologies (Canada)'),
(32068, 'https://ror.org/02dcndt64', 'no_lang_code', 1, 'https://ror.org/02dcndt64 Rite-Solutions (United States)'),
(32069, 'https://ror.org/02dcwa654', 'en', 1, 'https://ror.org/02dcwa654 Nacka Municipality'),
(32070, 'https://ror.org/02ddbvr12', 'no_lang_code', 1, 'https://ror.org/02ddbvr12 MicroContinuum (United States)'),
(32071, 'https://ror.org/02ddfy797', 'en', 1, 'https://ror.org/02ddfy797 82th Hospital of Pla'),
(32072, 'https://ror.org/02de0za51', 'en', 1, 'https://ror.org/02de0za51 Vanguard University'),
(32073, 'https://ror.org/02dfarm97', 'it', 1, 'https://ror.org/02dfarm97 Procoat'),
(32074, 'https://ror.org/02dfyb978', 'en', 1, 'https://ror.org/02dfyb978 American Liver Foundation'),
(32075, 'https://ror.org/02dh89n26', 'no_lang_code', 1, 'https://ror.org/02dh89n26 BerrieHill Research (United States)'),
(32076, 'https://ror.org/02dhhsj48', 'no_lang_code', 1, 'https://ror.org/02dhhsj48 Blue Institute (Sweden)'),
(32077, 'https://ror.org/02dj61c35', 'en', 1, 'https://ror.org/02dj61c35 British Society for Rheumatology'),
(32078, 'https://ror.org/02djzdr35', 'no_lang_code', 1, 'https://ror.org/02djzdr35 Synfonica (United States)'),
(32079, 'https://ror.org/02dk5kk54', 'en', 1, 'https://ror.org/02dk5kk54 Museum of Fine Arts'),
(32080, 'https://ror.org/02dphc844', 'en', 1, 'https://ror.org/02dphc844 United States Sports Academy'),
(32081, 'https://ror.org/02dr9de73', 'no_lang_code', 1, 'https://ror.org/02dr9de73 Brantford Energy (Canada)'),
(32082, 'https://ror.org/02dtjfs50', 'en', 1, 'https://ror.org/02dtjfs50 Merck Institute for Science Education'),
(32083, 'https://ror.org/02dv36z82', 'no_lang_code', 1, 'https://ror.org/02dv36z82 NatriSoft (Netherlands)'),
(32084, 'https://ror.org/02dx2xm20', 'en', 1, 'https://ror.org/02dx2xm20 Xiangyang Central Hospital'),
(32085, 'https://ror.org/02dxgtw53', 'no_lang_code', 1, 'https://ror.org/02dxgtw53 Unitechnologies (Switzerland)'),
(32086, 'https://ror.org/02dyrpb22', 'en', 1, 'https://ror.org/02dyrpb22 Office de protection de la nature de Toronto et de la rƩgion Toronto and Region Conservation Authority'),
(32087, 'https://ror.org/02dzzer59', 'no_lang_code', 1, 'https://ror.org/02dzzer59 Cha Corporation (United States)'),
(32088, 'https://ror.org/02e10dg71', 'no_lang_code', 1, 'https://ror.org/02e10dg71 Fatigue Technology (United States)'),
(32089, 'https://ror.org/02e1fjy29', 'no_lang_code', 1, 'https://ror.org/02e1fjy29 AFA Insurance (Sweden)'),
(32090, 'https://ror.org/02e2erp81', 'en', 1, 'https://ror.org/02e2erp81 Grayson-Jockey Club Research Foundation'),
(32091, 'https://ror.org/02e998f13', 'en', 1, 'https://ror.org/02e998f13 Equal Arts'),
(32092, 'https://ror.org/02e9qns56', 'no_lang_code', 1, 'https://ror.org/02e9qns56 Sustainable Innovation (Sweden)'),
(32093, 'https://ror.org/02ea4nx72', 'en', 1, 'https://ror.org/02ea4nx72 East Asian Observatory'),
(32094, 'https://ror.org/02eb31840', 'en', 1, 'https://ror.org/02eb31840 Greensboro College'),
(32095, 'https://ror.org/02ebg5q27', 'en', 1, 'https://ror.org/02ebg5q27 Glenn Foundation for Medical Research'),
(32096, 'https://ror.org/02edr8z79', 'en', 1, 'https://ror.org/02edr8z79 Thailand Graduate Institute of Science and Technology ą¹‚ąø„ąø£ąø‡ąøąø²ąø£ąø—ąøøąø™ąøŖąø–ąø²ąøšąø±ąø™ąøšąø±ąø“ąø‘ąø“ąø•ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œą¹ąø„ąø°ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹„ąø—ąø¢'),
(32097, 'https://ror.org/02efksf92', 'no_lang_code', 1, 'https://ror.org/02efksf92 Aetion (United States)'),
(32098, 'https://ror.org/02egtfm54', 'pt', 1, 'https://ror.org/02egtfm54 Instituto de Biologia do ExƩrcito'),
(32099, 'https://ror.org/02eha7521', 'no_lang_code', 1, 'https://ror.org/02eha7521 Blue Mobile Systems (Sweden)'),
(32100, 'https://ror.org/02ekkcr74', 'de', 1, 'https://ror.org/02ekkcr74 Ludwig Boltzmann für Klinische Neurobiologie'),
(32101, 'https://ror.org/02eq82485', 'no_lang_code', 1, 'https://ror.org/02eq82485 Combined Computer Services (Netherlands)'),
(32102, 'https://ror.org/02eqsb844', 'en', 1, 'https://ror.org/02eqsb844 Canada West Ski Areas Association'),
(32103, 'https://ror.org/02erd4b86', 'no_lang_code', 1, 'https://ror.org/02erd4b86 Engineering and Software System Solutions (United States)'),
(32104, 'https://ror.org/02esv1036', 'no_lang_code', 1, 'https://ror.org/02esv1036 Ingenieursburo Balvers (Netherlands)'),
(32105, 'https://ror.org/02et2g954', 'sk', 1, 'https://ror.org/02et2g954 Centrum Voľného Casu'),
(32106, 'https://ror.org/02etpnx57', 'no_lang_code', 1, 'https://ror.org/02etpnx57 Battlespace Simulations (United States)');
INSERT INTO `rors` VALUES
(32107, 'https://ror.org/02evahm41', 'en', 1, 'https://ror.org/02evahm41 Biomasa Association'),
(32108, 'https://ror.org/02ewzby52', 'en', 1, 'https://ror.org/02ewzby52 Berlin Brandenburg Institute of Advanced Biodiversity Research Berlin-Brandenburgisches Institut für Biodiversitätsforschung'),
(32109, 'https://ror.org/02ex4jy25', 'no_lang_code', 1, 'https://ror.org/02ex4jy25 iRobot (United States)'),
(32110, 'https://ror.org/02f36qr48', 'en', 1, 'https://ror.org/02f36qr48 University of Pharmacy Yangon į€†į€±į€øį€į€«į€ø į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ ရန်ကုန်'),
(32111, 'https://ror.org/02f3xk561', 'en', 1, 'https://ror.org/02f3xk561 Cancer Research Institute'),
(32112, 'https://ror.org/02f76s144', 'no_lang_code', 1, 'https://ror.org/02f76s144 PlainSight Group (United States)'),
(32113, 'https://ror.org/02f7dt951', 'no_lang_code', 1, 'https://ror.org/02f7dt951 RTI (Sweden)'),
(32114, 'https://ror.org/02f8z2f57', 'en', 1, 'https://ror.org/02f8z2f57 First People’s Hospital of Zunyi'),
(32115, 'https://ror.org/02f9pmn17', 'no_lang_code', 1, 'https://ror.org/02f9pmn17 Gibson Energy (Canada)'),
(32116, 'https://ror.org/02fa0f492', 'en', 1, 'https://ror.org/02fa0f492 United Nations University Institute on Comparative Regional Integration Studies'),
(32117, 'https://ror.org/02facr303', 'en', 1, 'https://ror.org/02facr303 Canadian Federation of Humane Societies'),
(32118, 'https://ror.org/02fcst635', 'no_lang_code', 1, 'https://ror.org/02fcst635 AFreeze (Austria)'),
(32119, 'https://ror.org/02fd57127', 'no_lang_code', 1, 'https://ror.org/02fd57127 Criterion Health (United States)'),
(32120, 'https://ror.org/02fd77q25', 'en', 1, 'https://ror.org/02fd77q25 Council of Forest Industries'),
(32121, 'https://ror.org/02ff5rr83', 'en', 1, 'https://ror.org/02ff5rr83 National Society for Histotechnology'),
(32122, 'https://ror.org/02fg2n207', 'no_lang_code', 1, 'https://ror.org/02fg2n207 Blue Wolf Capital Partners (United States)'),
(32123, 'https://ror.org/02fh4wa11', 'no_lang_code', 1, 'https://ror.org/02fh4wa11 RPA Electronic Solutions (United States)'),
(32124, 'https://ror.org/02fjj1z35', 'en', 1, 'https://ror.org/02fjj1z35 Caribbean Research and Management of Biodiversity Foundation'),
(32125, 'https://ror.org/02fkk6k65', 'en', 1, 'https://ror.org/02fkk6k65 Ministry of Culture, Sports and Tourism ėŒ€ķ•œėÆ¼źµ­ ė¬øķ™”ģ²“ģœ”ź“€ź“‘ė¶€'),
(32126, 'https://ror.org/02fkt1r75', 'no_lang_code', 1, 'https://ror.org/02fkt1r75 Pharmatest (Finland)'),
(32127, 'https://ror.org/02fm3s653', 'sv', 1, 'https://ror.org/02fm3s653 Svensk Form'),
(32128, 'https://ror.org/02fmdkd55', 'no_lang_code', 1, 'https://ror.org/02fmdkd55 Nibie Ab (Sweden)'),
(32129, 'https://ror.org/02fnwes63', 'no_lang_code', 1, 'https://ror.org/02fnwes63 ASRC Federal Analytical Service (United States)'),
(32130, 'https://ror.org/02fnywa89', 'en', 1, 'https://ror.org/02fnywa89 Ministerio de Salud y de Protección Social Ministry of Health and Social Protection'),
(32131, 'https://ror.org/02fp2rz53', 'en', 1, 'https://ror.org/02fp2rz53 New Hampshire Farm Museum'),
(32132, 'https://ror.org/02fsqa093', 'en', 1, 'https://ror.org/02fsqa093 Korea Institute of Drug Safety and Risk Management'),
(32133, 'https://ror.org/02fsqj683', 'en', 1, 'https://ror.org/02fsqj683 Accelerate Brain Cancer Cure'),
(32134, 'https://ror.org/02ftdsn70', 'no_lang_code', 1, 'https://ror.org/02ftdsn70 Taihe Hospital'),
(32135, 'https://ror.org/02fvtx219', 'en', 1, 'https://ror.org/02fvtx219 Ford Foundation'),
(32136, 'https://ror.org/02fym2550', 'no_lang_code', 1, 'https://ror.org/02fym2550 Codagenix (United States)'),
(32137, 'https://ror.org/02g0mbf40', 'no_lang_code', 1, 'https://ror.org/02g0mbf40 Chai-Na-Ta (Canada)'),
(32138, 'https://ror.org/02g0pbt71', 'no_lang_code', 1, 'https://ror.org/02g0pbt71 Intelligent Systems Technology (United States)'),
(32139, 'https://ror.org/02g1cyr24', 'no_lang_code', 1, 'https://ror.org/02g1cyr24 Moody''s Corporation (United States)'),
(32140, 'https://ror.org/02g36m681', 'es', 1, 'https://ror.org/02g36m681 Instituto Tecnológico de Soledad AtlÔntico'),
(32141, 'https://ror.org/02g4e1v18', 'no_lang_code', 1, 'https://ror.org/02g4e1v18 Metabiota (Cameroon)'),
(32142, 'https://ror.org/02g55p177', 'no_lang_code', 1, 'https://ror.org/02g55p177 Flow International Corporation (United States)'),
(32143, 'https://ror.org/02g70zk77', 'no_lang_code', 1, 'https://ror.org/02g70zk77 BioEnergy International (Austria)'),
(32144, 'https://ror.org/02g8tfh80', 'ms', 1, 'https://ror.org/02g8tfh80 Hospital Sarikei'),
(32145, 'https://ror.org/02g8zn394', 'no_lang_code', 1, 'https://ror.org/02g8zn394 Nova Management (United States)'),
(32146, 'https://ror.org/02g9c9v38', 'en', 1, 'https://ror.org/02g9c9v38 Aetna Foundation'),
(32147, 'https://ror.org/02ga6ke46', 'en', 1, 'https://ror.org/02ga6ke46 Parteq Innovations (Canada)'),
(32148, 'https://ror.org/02gbk8644', 'no_lang_code', 1, 'https://ror.org/02gbk8644 LRM Industries International (United States)'),
(32149, 'https://ror.org/02gc7qc02', 'en', 1, 'https://ror.org/02gc7qc02 World Cancer Research Fund UK'),
(32150, 'https://ror.org/02gd5t807', 'nl', 1, 'https://ror.org/02gd5t807 Christelijk Gymnasium Utrecht'),
(32151, 'https://ror.org/02geyw402', 'no_lang_code', 1, 'https://ror.org/02geyw402 QorTek (United States)'),
(32152, 'https://ror.org/02gfyfp86', 'no_lang_code', 1, 'https://ror.org/02gfyfp86 Calendula (Slovakia)'),
(32153, 'https://ror.org/02gjczz49', 'no_lang_code', 1, 'https://ror.org/02gjczz49 Adlyfe (United States)'),
(32154, 'https://ror.org/02gmy7y33', 'en', 1, 'https://ror.org/02gmy7y33 Temasek Defence Systems Institute'),
(32155, 'https://ror.org/02gp2h315', 'no_lang_code', 1, 'https://ror.org/02gp2h315 FuelCell Energy (United States)'),
(32156, 'https://ror.org/02gp85x20', 'en', 1, 'https://ror.org/02gp85x20 Carnegie Corporation of New York'),
(32157, 'https://ror.org/02gq0fg61', 'en', 1, 'https://ror.org/02gq0fg61 Motor Neurone Disease Association'),
(32158, 'https://ror.org/02gs17047', 'no_lang_code', 1, 'https://ror.org/02gs17047 HelioCaminus (Sweden)'),
(32159, 'https://ror.org/02gsap059', 'no_lang_code', 1, 'https://ror.org/02gsap059 CarrƩ Technologies (Canada)'),
(32160, 'https://ror.org/02gsfxh78', 'no_lang_code', 1, 'https://ror.org/02gsfxh78 Envic Sense (Sweden)'),
(32161, 'https://ror.org/02gsyjh62', 'fr', 1, 'https://ror.org/02gsyjh62 UP-Tex'),
(32162, 'https://ror.org/02gt7fw23', 'no_lang_code', 1, 'https://ror.org/02gt7fw23 Burge Environmental (United States)'),
(32163, 'https://ror.org/02gtbcv54', 'no_lang_code', 1, 'https://ror.org/02gtbcv54 Nexam Chemical (Sweden)'),
(32164, 'https://ror.org/02gtcat87', 'no_lang_code', 1, 'https://ror.org/02gtcat87 Focus Microwaves (Canada)'),
(32165, 'https://ror.org/02gtdm304', 'no_lang_code', 1, 'https://ror.org/02gtdm304 Avogy (United States)'),
(32166, 'https://ror.org/02gv7j358', 'en', 1, 'https://ror.org/02gv7j358 Westminster Seminary California'),
(32167, 'https://ror.org/02gw53818', 'no_lang_code', 1, 'https://ror.org/02gw53818 Veryday (Sweden)'),
(32168, 'https://ror.org/02gx43549', 'en', 1, 'https://ror.org/02gx43549 Departamento de Educación Pública de Nuevo México New Mexico Public Education Department'),
(32169, 'https://ror.org/02gxnzq82', 'en', 1, 'https://ror.org/02gxnzq82 EgyesĆ­tett Szent IstvĆ”n Ć©s Szent LĆ”szló KórhĆ”z-RendelőintĆ©zet Unified Szent IstvĆ”n and Szent LĆ”szló Hospital'),
(32170, 'https://ror.org/02gysew38', 'en', 1, 'https://ror.org/02gysew38 Global Fund to Fight AIDS, Tuberculosis and Malaria'),
(32171, 'https://ror.org/02h0mx958', 'no_lang_code', 1, 'https://ror.org/02h0mx958 Education Training & Consulting Company (Slovakia)'),
(32172, 'https://ror.org/02h15pd98', 'no_lang_code', 1, 'https://ror.org/02h15pd98 Osstell (Sweden)'),
(32173, 'https://ror.org/02h1stz09', 'en', 1, 'https://ror.org/02h1stz09 Boston Symphony Orchestra'),
(32174, 'https://ror.org/02h291k47', 'en', 1, 'https://ror.org/02h291k47 Horticulture Innovation Australia'),
(32175, 'https://ror.org/02h43gk75', 'en', 1, 'https://ror.org/02h43gk75 Israel Cancer Research Fund'),
(32176, 'https://ror.org/02h67vt10', 'en', 1, 'https://ror.org/02h67vt10 Aintree University Hospitals NHS Foundation Trust'),
(32177, 'https://ror.org/02h7g2017', 'en', 1, 'https://ror.org/02h7g2017 British Skin Foundation'),
(32178, 'https://ror.org/02h7h5x62', 'no_lang_code', 1, 'https://ror.org/02h7h5x62 Electro Standards Laboratories (United States)'),
(32179, 'https://ror.org/02h7kh904', 'en', 1, 'https://ror.org/02h7kh904 Associação Portuguesa das Indústrias de Cerâmica e de Cristalaria Portuguese Association of the Ceramics Industry'),
(32180, 'https://ror.org/02h83nc26', 'nl', 1, 'https://ror.org/02h83nc26 Koninklijke Landmacht'),
(32181, 'https://ror.org/02h8kp866', 'no_lang_code', 1, 'https://ror.org/02h8kp866 Polpharma Biologics (Netherlands)'),
(32182, 'https://ror.org/02hb9s226', 'no_lang_code', 1, 'https://ror.org/02hb9s226 ORB Analytics (United States)'),
(32183, 'https://ror.org/02hbm8b43', 'no_lang_code', 1, 'https://ror.org/02hbm8b43 Evaporated Coatings (United States)'),
(32184, 'https://ror.org/02hbnw031', 'no_lang_code', 1, 'https://ror.org/02hbnw031 Cermet (United States)'),
(32185, 'https://ror.org/02hc2ra25', 'en', 1, 'https://ror.org/02hc2ra25 Canadian International Grains Institute'),
(32186, 'https://ror.org/02hchde94', 'en', 1, 'https://ror.org/02hchde94 Government of Russia ŠŸŃ€Š°Š²ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š¾ Российской ФеГерации'),
(32187, 'https://ror.org/02hcxaq60', 'en', 1, 'https://ror.org/02hcxaq60 Ministry of Education and Science'),
(32188, 'https://ror.org/02hdk9s78', 'en', 1, 'https://ror.org/02hdk9s78 University of Nursing Yangon į€žį€°į€”į€¬į€•į€¼į€Æį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(ရန်ကုန်)'),
(32189, 'https://ror.org/02hg6xf68', 'no_lang_code', 1, 'https://ror.org/02hg6xf68 Applied Quantum Technologies (United States)'),
(32190, 'https://ror.org/02hj7hh93', 'no_lang_code', 1, 'https://ror.org/02hj7hh93 Schneider Electric (Canada)'),
(32191, 'https://ror.org/02hkywq03', 'no_lang_code', 1, 'https://ror.org/02hkywq03 Kinectrics (Canada)'),
(32192, 'https://ror.org/02hpaa158', 'no_lang_code', 1, 'https://ror.org/02hpaa158 Polatin Corporation (United States)'),
(32193, 'https://ror.org/02hpzfx69', 'no_lang_code', 1, 'https://ror.org/02hpzfx69 Propagation Research Associates (United States)'),
(32194, 'https://ror.org/02hq6wv21', 'de', 1, 'https://ror.org/02hq6wv21 Deutsche Herzstiftung'),
(32195, 'https://ror.org/02hqwnx33', 'no_lang_code', 1, 'https://ror.org/02hqwnx33 Western Digital (United States)'),
(32196, 'https://ror.org/02hrn9a05', 'no_lang_code', 1, 'https://ror.org/02hrn9a05 IHS Markit (United States)'),
(32197, 'https://ror.org/02hs57b27', 'no_lang_code', 1, 'https://ror.org/02hs57b27 RDA (United States)'),
(32198, 'https://ror.org/02hsr5c48', 'no_lang_code', 1, 'https://ror.org/02hsr5c48 ImmerVision (Canada)'),
(32199, 'https://ror.org/02htdjb57', 'no_lang_code', 1, 'https://ror.org/02htdjb57 Bial (Portugal)'),
(32200, 'https://ror.org/02j0q7e02', 'en', 1, 'https://ror.org/02j0q7e02 Departamento de Transporte de Pensilvania Pennsylvania Department of Transportation'),
(32201, 'https://ror.org/02j25ht90', 'fr', 1, 'https://ror.org/02j25ht90 Society of outdoor recreation establishments of Quebec SociƩtƩ des Ʃtablissements de plein air du QuƩbec, SƩpaq'),
(32202, 'https://ror.org/02j3q7j55', 'en', 1, 'https://ror.org/02j3q7j55 NIHR Royal Brompton Respiratory Biomedical Research Unit'),
(32203, 'https://ror.org/02j43hc79', 'no_lang_code', 1, 'https://ror.org/02j43hc79 Biophotonic Solutions (United States)'),
(32204, 'https://ror.org/02j5aza86', 'en', 1, 'https://ror.org/02j5aza86 Swedish History Museum'),
(32205, 'https://ror.org/02j7y6936', 'en', 1, 'https://ror.org/02j7y6936 Centre for BioSystems Genomics'),
(32206, 'https://ror.org/02j8w6q81', 'no_lang_code', 1, 'https://ror.org/02j8w6q81 Gruppo Formula (Italy)'),
(32207, 'https://ror.org/02jc9yx83', 'no_lang_code', 1, 'https://ror.org/02jc9yx83 Hendrix Genetics (Canada)'),
(32208, 'https://ror.org/02jd1mn89', 'no_lang_code', 1, 'https://ror.org/02jd1mn89 Emstone (Sweden)'),
(32209, 'https://ror.org/02jecj653', 'it', 1, 'https://ror.org/02jecj653 Fondazione Cassa di Risparmio di Padova e Rovigo'),
(32210, 'https://ror.org/02jeg3v06', 'no_lang_code', 1, 'https://ror.org/02jeg3v06 Mechmath (United States)'),
(32211, 'https://ror.org/02jesmk44', 'en', 1, 'https://ror.org/02jesmk44 American Foundation for AIDS Research'),
(32212, 'https://ror.org/02jfa8730', 'no_lang_code', 1, 'https://ror.org/02jfa8730 Chevron (United States)'),
(32213, 'https://ror.org/02jgx6t51', 'no_lang_code', 1, 'https://ror.org/02jgx6t51 Kratos Defense & Security Solutions (United States)'),
(32214, 'https://ror.org/02jj42f67', 'en', 1, 'https://ror.org/02jj42f67 Alberta Oil Sands Technology and Research Authority'),
(32215, 'https://ror.org/02jktn113', 'en', 1, 'https://ror.org/02jktn113 International Center for Relativistic Astrophysics'),
(32216, 'https://ror.org/02jmed939', 'no_lang_code', 1, 'https://ror.org/02jmed939 Sivananthan Laboratories (United States)'),
(32217, 'https://ror.org/02jp14137', 'no_lang_code', 1, 'https://ror.org/02jp14137 Halotechnics (United States)'),
(32218, 'https://ror.org/02jpa9x52', 'en', 1, 'https://ror.org/02jpa9x52 China Medical Board'),
(32219, 'https://ror.org/02js2n445', 'no_lang_code', 1, 'https://ror.org/02js2n445 Aptima (United States)'),
(32220, 'https://ror.org/02jsxtf08', 'no_lang_code', 1, 'https://ror.org/02jsxtf08 Pacific Street Films (United States)'),
(32221, 'https://ror.org/02jtc9v47', 'no_lang_code', 1, 'https://ror.org/02jtc9v47 Norleaf Networks (Canada)'),
(32222, 'https://ror.org/02jwtre75', 'sv', 1, 'https://ror.org/02jwtre75 Stiftelsen SKAPA'),
(32223, 'https://ror.org/02jx81v73', 'no_lang_code', 1, 'https://ror.org/02jx81v73 Academic Software (United States)'),
(32224, 'https://ror.org/02jy5yr69', 'en', 1, 'https://ror.org/02jy5yr69 Golden State Baptist College'),
(32225, 'https://ror.org/02jy9d058', 'en', 1, 'https://ror.org/02jy9d058 Florida Space Grant Consortium'),
(32226, 'https://ror.org/02k4b9v70', 'en', 1, 'https://ror.org/02k4b9v70 Det Europæiske Miljøagentur European Environment Agency Europäische Umweltagentur'),
(32227, 'https://ror.org/02k4ca766', 'no_lang_code', 1, 'https://ror.org/02k4ca766 NuWaves Engineering (United States)'),
(32228, 'https://ror.org/02k50y650', 'no_lang_code', 1, 'https://ror.org/02k50y650 Mikros Systems (United States)'),
(32229, 'https://ror.org/02k55qr52', 'no_lang_code', 1, 'https://ror.org/02k55qr52 Cambridge Cognition (United Kingdom)'),
(32230, 'https://ror.org/02k5trd79', 'no_lang_code', 1, 'https://ror.org/02k5trd79 Shape Change Technologies (United States)'),
(32231, 'https://ror.org/02kazyy76', 'no_lang_code', 1, 'https://ror.org/02kazyy76 Ascendant Engineering Solutions (United States)'),
(32232, 'https://ror.org/02kbyb945', 'no_lang_code', 1, 'https://ror.org/02kbyb945 Electrik Box (Canada)'),
(32233, 'https://ror.org/02kcne908', 'no_lang_code', 1, 'https://ror.org/02kcne908 Pro-Tech Design & Manufacturing (United States)'),
(32234, 'https://ror.org/02kesxz96', 'en', 1, 'https://ror.org/02kesxz96 Longer Life Foundation'),
(32235, 'https://ror.org/02kj36x76', 'no_lang_code', 1, 'https://ror.org/02kj36x76 Geotech Instruments (United States)'),
(32236, 'https://ror.org/02kna3n95', 'en', 1, 'https://ror.org/02kna3n95 Prostate Cancer Foundation of Australia'),
(32237, 'https://ror.org/02knm8c59', 'en', 1, 'https://ror.org/02knm8c59 Departamento de Educación de la Florida Florida Department of Education'),
(32238, 'https://ror.org/02knntf03', 'no_lang_code', 1, 'https://ror.org/02knntf03 IJ Research (United States)'),
(32239, 'https://ror.org/02kq93n74', 'no_lang_code', 1, 'https://ror.org/02kq93n74 Gradientech (Sweden)'),
(32240, 'https://ror.org/02krbn758', 'en', 1, 'https://ror.org/02krbn758 Botanical Society of Britain and Ireland'),
(32241, 'https://ror.org/02ksqdr49', 'no_lang_code', 1, 'https://ror.org/02ksqdr49 General Sciences (United States)'),
(32242, 'https://ror.org/02kstas42', 'en', 1, 'https://ror.org/02kstas42 Affiliated Hospital of Guizhou Medical University'),
(32243, 'https://ror.org/02kstzn75', 'en', 1, 'https://ror.org/02kstzn75 Institute for Medical Biology Instytut Biologii Medycznej Polskiej Akademii Nauk'),
(32244, 'https://ror.org/02kt0tf86', 'en', 1, 'https://ror.org/02kt0tf86 Davis College - New York'),
(32245, 'https://ror.org/02ktfc112', 'no_lang_code', 1, 'https://ror.org/02ktfc112 Digital Science (United Kingdom)'),
(32246, 'https://ror.org/02kx1hs47', 'en', 1, 'https://ror.org/02kx1hs47 Brera Astronomical Observatory Observatoire astronomique de brera osservatorio astronomico di Brera'),
(32247, 'https://ror.org/02kx7se86', 'en', 1, 'https://ror.org/02kx7se86 Kidney Research UK'),
(32248, 'https://ror.org/02ky21x08', 'en', 1, 'https://ror.org/02ky21x08 Departamento de Transporte de Texas DƩpartement des transports du texas Texas Department of Transportation'),
(32249, 'https://ror.org/02kzdnj79', 'en', 1, 'https://ror.org/02kzdnj79 South African Thoracic Society'),
(32250, 'https://ror.org/02m0sxt16', 'en', 1, 'https://ror.org/02m0sxt16 Illinois Assistive Technology Program'),
(32251, 'https://ror.org/02m14pj94', 'no_lang_code', 1, 'https://ror.org/02m14pj94 Palcan Energy Corporation (Canada)'),
(32252, 'https://ror.org/02m24xz19', 'en', 1, 'https://ror.org/02m24xz19 Multiple Sclerosis Trust'),
(32253, 'https://ror.org/02m359g33', 'no_lang_code', 1, 'https://ror.org/02m359g33 ANDRO (United States)'),
(32254, 'https://ror.org/02m94vn37', 'no_lang_code', 1, 'https://ror.org/02m94vn37 Vorago Technologies (United States)'),
(32255, 'https://ror.org/02m9t8y16', 'no_lang_code', 1, 'https://ror.org/02m9t8y16 QuinStar Technology (United States)'),
(32256, 'https://ror.org/02ma2ny91', 'no_lang_code', 1, 'https://ror.org/02ma2ny91 Princeton Satellite Systems (United States)'),
(32257, 'https://ror.org/02ma9nk57', 'no_lang_code', 1, 'https://ror.org/02ma9nk57 Capraro Technologies (United States)'),
(32258, 'https://ror.org/02mab7v83', 'no_lang_code', 1, 'https://ror.org/02mab7v83 Potawatomi Business Development (United States)'),
(32259, 'https://ror.org/02mba1x93', 'no_lang_code', 1, 'https://ror.org/02mba1x93 BrockTek (United States)'),
(32260, 'https://ror.org/02mbhaf77', 'no_lang_code', 1, 'https://ror.org/02mbhaf77 Research Applications Corporation (United States)'),
(32261, 'https://ror.org/02mgm5r23', 'en', 1, 'https://ror.org/02mgm5r23 Makerere University Walter Reed Project'),
(32262, 'https://ror.org/02mgwph26', 'no_lang_code', 1, 'https://ror.org/02mgwph26 Mitera Hospital'),
(32263, 'https://ror.org/02mkhvn23', 'no_lang_code', 1, 'https://ror.org/02mkhvn23 Voxway (Sweden)'),
(32264, 'https://ror.org/02mp0vf47', 'en', 1, 'https://ror.org/02mp0vf47 National Cancer Research Institute'),
(32265, 'https://ror.org/02ms27492', 'en', 1, 'https://ror.org/02ms27492 California Rice Research Board'),
(32266, 'https://ror.org/02mv2m613', 'no_lang_code', 1, 'https://ror.org/02mv2m613 Elektrokarbon (Slovakia)'),
(32267, 'https://ror.org/02mv9sr91', 'en', 1, 'https://ror.org/02mv9sr91 Academy of Motion Picture Arts and Sciences'),
(32268, 'https://ror.org/02my4g447', 'no_lang_code', 1, 'https://ror.org/02my4g447 Ocean Power Technologies (United States)'),
(32269, 'https://ror.org/02my7ff12', 'it', 1, 'https://ror.org/02my7ff12 Catania Astrophysical Observatory Osservatorio Astrofisico di Catania'),
(32270, 'https://ror.org/02n2kz479', 'no_lang_code', 1, 'https://ror.org/02n2kz479 Kvarnstrands (Sweden)'),
(32271, 'https://ror.org/02n74s845', 'sv', 1, 'https://ror.org/02n74s845 Kalmar Art Museum Kalmar Konstmuseum'),
(32272, 'https://ror.org/02n77yt92', 'no_lang_code', 1, 'https://ror.org/02n77yt92 Enmax (Canada)'),
(32273, 'https://ror.org/02n9m6n25', 'no_lang_code', 1, 'https://ror.org/02n9m6n25 Meeting the Challenge (United States)'),
(32274, 'https://ror.org/02na09p21', 'en', 1, 'https://ror.org/02na09p21 Bristol Clinical Commissioning Group'),
(32275, 'https://ror.org/02na1q715', 'en', 1, 'https://ror.org/02na1q715 Friendly Sons of St. Patrick'),
(32276, 'https://ror.org/02nc46417', 'en', 1, 'https://ror.org/02nc46417 Sony Computer Science Laboratories ć‚½ćƒ‹ćƒ¼ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶ę‰€'),
(32277, 'https://ror.org/02nd7ks20', 'no_lang_code', 1, 'https://ror.org/02nd7ks20 Schrader International (United Kingdom)'),
(32278, 'https://ror.org/02ngn2w22', 'en', 1, 'https://ror.org/02ngn2w22 Mt. Sierra College'),
(32279, 'https://ror.org/02njhwg64', 'no_lang_code', 1, 'https://ror.org/02njhwg64 Osborne & Associates (United States)'),
(32280, 'https://ror.org/02nkwwe88', 'en', 1, 'https://ror.org/02nkwwe88 Minerva Brooks Memorial Library'),
(32281, 'https://ror.org/02nkxrq89', 'en', 1, 'https://ror.org/02nkxrq89 Hochschule Ruhr West Ruhr West University of Applied Sciences'),
(32282, 'https://ror.org/02nmsd267', 'en', 1, 'https://ror.org/02nmsd267 Coastal Oceans Research and Development in the Indian Ocean'),
(32283, 'https://ror.org/02np0kc30', 'en', 1, 'https://ror.org/02np0kc30 CESSI'),
(32284, 'https://ror.org/02np5p423', 'no_lang_code', 1, 'https://ror.org/02np5p423 Uganda Clays (Uganda)'),
(32285, 'https://ror.org/02nqj0b62', 'en', 1, 'https://ror.org/02nqj0b62 Economic Development Board'),
(32286, 'https://ror.org/02nwht553', 'es', 1, 'https://ror.org/02nwht553 Red Espanola de Investigacion en Patologia Infecciosa'),
(32287, 'https://ror.org/02nxjps75', 'en', 1, 'https://ror.org/02nxjps75 Summit University'),
(32288, 'https://ror.org/02ny7hp72', 'no_lang_code', 1, 'https://ror.org/02ny7hp72 Adsys Controls (United States)'),
(32289, 'https://ror.org/02nz03g03', 'en', 1, 'https://ror.org/02nz03g03 American Foundation for the Blind'),
(32290, 'https://ror.org/02p0fq023', 'no_lang_code', 1, 'https://ror.org/02p0fq023 Prompt (Canada)'),
(32291, 'https://ror.org/02p1scb62', 'no_lang_code', 1, 'https://ror.org/02p1scb62 Greatbatch (United States)'),
(32292, 'https://ror.org/02p3nxd53', 'no_lang_code', 1, 'https://ror.org/02p3nxd53 Penny (Sweden)'),
(32293, 'https://ror.org/02p47zr16', 'en', 1, 'https://ror.org/02p47zr16 BC Greenhouse Growers Association'),
(32294, 'https://ror.org/02p4b3a61', 'en', 1, 'https://ror.org/02p4b3a61 Christian Bible College and Seminary'),
(32295, 'https://ror.org/02p5wcj62', 'no_lang_code', 1, 'https://ror.org/02p5wcj62 Diamorph (Sweden)'),
(32296, 'https://ror.org/02p65v128', 'no_lang_code', 1, 'https://ror.org/02p65v128 Semtech (United States)'),
(32297, 'https://ror.org/02p6p6z73', 'no_lang_code', 1, 'https://ror.org/02p6p6z73 Mikon (Slovakia)'),
(32298, 'https://ror.org/02p745c92', 'en', 1, 'https://ror.org/02p745c92 Swedish Farmers’ Foundation for Agricultural Research'),
(32299, 'https://ror.org/02p7svq74', 'en', 1, 'https://ror.org/02p7svq74 Guy''s and St Thomas'' Charity'),
(32300, 'https://ror.org/02p89gk05', 'en', 1, 'https://ror.org/02p89gk05 Swedish Municipal Workers'' Union'),
(32301, 'https://ror.org/02phhfw40', 'en', 1, 'https://ror.org/02phhfw40 Innovative Vector Control Consortium'),
(32302, 'https://ror.org/02pj6m510', 'en', 1, 'https://ror.org/02pj6m510 Pacific Oaks College'),
(32303, 'https://ror.org/02pkfd360', 'no_lang_code', 1, 'https://ror.org/02pkfd360 Reaction Systems (United States)'),
(32304, 'https://ror.org/02pn9ep17', 'it', 1, 'https://ror.org/02pn9ep17 Pontifical Atheneum of St. Anselm Pontificio Ateneo Sant''Anselmo'),
(32305, 'https://ror.org/02ppy9c89', 'en', 1, 'https://ror.org/02ppy9c89 NIHR Nottingham Digestive Diseases Biomedical Research Unit'),
(32306, 'https://ror.org/02pq7w335', 'no_lang_code', 1, 'https://ror.org/02pq7w335 Berkshire Hathaway (United States)'),
(32307, 'https://ror.org/02pqmy074', 'en', 1, 'https://ror.org/02pqmy074 Winthrop Rockefeller Foundation'),
(32308, 'https://ror.org/02pr6am85', 'en', 1, 'https://ror.org/02pr6am85 Arkansas Department of Career Education'),
(32309, 'https://ror.org/02prx6004', 'no_lang_code', 1, 'https://ror.org/02prx6004 Generic Assays (Germany)'),
(32310, 'https://ror.org/02pscrx27', 'no_lang_code', 1, 'https://ror.org/02pscrx27 Karolinska Development (Sweden)'),
(32311, 'https://ror.org/02pse1737', 'no_lang_code', 1, 'https://ror.org/02pse1737 Redwood Pharma (Sweden)'),
(32312, 'https://ror.org/02ptcjs87', 'no_lang_code', 1, 'https://ror.org/02ptcjs87 Air Liquide (United States)'),
(32313, 'https://ror.org/02pvba079', 'no_lang_code', 1, 'https://ror.org/02pvba079 Mayachitra (United States)'),
(32314, 'https://ror.org/02pvd7916', 'en', 1, 'https://ror.org/02pvd7916 CODAC Behavioral Health Services'),
(32315, 'https://ror.org/02pvr8q36', 'de', 1, 'https://ror.org/02pvr8q36 Berufbildungsschule Winterthur'),
(32316, 'https://ror.org/02py10784', 'no_lang_code', 1, 'https://ror.org/02py10784 Albireo (Sweden)'),
(32317, 'https://ror.org/02pyp0e56', 'en', 1, 'https://ror.org/02pyp0e56 Saxet Surface Science'),
(32318, 'https://ror.org/02q0s1x22', 'no_lang_code', 1, 'https://ror.org/02q0s1x22 Hitachi Global Storage Technologies (United States)'),
(32319, 'https://ror.org/02q2gmw58', 'no_lang_code', 1, 'https://ror.org/02q2gmw58 Teshmont (Canada)'),
(32320, 'https://ror.org/02q2m1930', 'no_lang_code', 1, 'https://ror.org/02q2m1930 Monsanto (Canada)'),
(32321, 'https://ror.org/02q36eh13', 'en', 1, 'https://ror.org/02q36eh13 National Center for HIV/AIDS, Dermatology and STD'),
(32322, 'https://ror.org/02q3ges18', 'no_lang_code', 1, 'https://ror.org/02q3ges18 Ɩhlins (Sweden)'),
(32323, 'https://ror.org/02q578v20', 'en', 1, 'https://ror.org/02q578v20 Oklahoma Center for the Advancement of Science and Technology'),
(32324, 'https://ror.org/02q5qpb12', 'en', 1, 'https://ror.org/02q5qpb12 Conservation and Ecosystem Health Alliance'),
(32325, 'https://ror.org/02q5vez72', 'no_lang_code', 1, 'https://ror.org/02q5vez72 Schwarzwaldmilch Freiburg (Germany)'),
(32326, 'https://ror.org/02q6ekp33', 'no_lang_code', 1, 'https://ror.org/02q6ekp33 Blue Bear (United Kingdom)'),
(32327, 'https://ror.org/02q6wz850', 'no_lang_code', 1, 'https://ror.org/02q6wz850 Proteus (United Kingdom)'),
(32328, 'https://ror.org/02q79aa51', 'no_lang_code', 1, 'https://ror.org/02q79aa51 Chemosvit Fibrochem (Slovakia)'),
(32329, 'https://ror.org/02q7ym472', 'de', 1, 'https://ror.org/02q7ym472 Helios Park-Klinikum Leipzig'),
(32330, 'https://ror.org/02q83sc19', 'de', 1, 'https://ror.org/02q83sc19 Wilhelm Sander Stiftung'),
(32331, 'https://ror.org/02q84p957', 'no_lang_code', 1, 'https://ror.org/02q84p957 Parmalat (Canada)'),
(32332, 'https://ror.org/02q87d656', 'no_lang_code', 1, 'https://ror.org/02q87d656 Trademco (Greece)'),
(32333, 'https://ror.org/02q8a6a36', 'no_lang_code', 1, 'https://ror.org/02q8a6a36 CMSoft (United States)'),
(32334, 'https://ror.org/02q8pz475', 'en', 1, 'https://ror.org/02q8pz475 Photons Canada'),
(32335, 'https://ror.org/02qdg4b08', 'en', 1, 'https://ror.org/02qdg4b08 Agricultural Institute Osijek'),
(32336, 'https://ror.org/02qg55h92', 'no_lang_code', 1, 'https://ror.org/02qg55h92 Star Cryoelectronics (United States)'),
(32337, 'https://ror.org/02qh9e431', 'no_lang_code', 1, 'https://ror.org/02qh9e431 JF Kapnek Trust'),
(32338, 'https://ror.org/02qjep944', 'en', 1, 'https://ror.org/02qjep944 Waverly Consort'),
(32339, 'https://ror.org/02qjpax34', 'no_lang_code', 1, 'https://ror.org/02qjpax34 Material Concepts (United States)'),
(32340, 'https://ror.org/02qkhx131', 'en', 1, 'https://ror.org/02qkhx131 Jiangxi Pingxiang People''s Hospital'),
(32341, 'https://ror.org/02qkmsm66', 'no_lang_code', 1, 'https://ror.org/02qkmsm66 Control Systems Research (United States)'),
(32342, 'https://ror.org/02qm4q539', 'no_lang_code', 1, 'https://ror.org/02qm4q539 Rockwell Automation (Canada)'),
(32343, 'https://ror.org/02qmhct90', 'en', 1, 'https://ror.org/02qmhct90 The Second Nanning People''s Hospital å—å®åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(32344, 'https://ror.org/02qmw3e81', 'en', 1, 'https://ror.org/02qmw3e81 Centre of Plasma Physics - Institute for Plasma Research ą¤Ŗą„ą¤²ą¤¾ą¤œą„ą¤®ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø பிளாசுமா ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(32345, 'https://ror.org/02qn7c872', 'no_lang_code', 1, 'https://ror.org/02qn7c872 Phononic Devices (United States)'),
(32346, 'https://ror.org/02qs0dv08', 'en', 1, 'https://ror.org/02qs0dv08 Hungarian Astronomical Association'),
(32347, 'https://ror.org/02qv02186', 'en', 1, 'https://ror.org/02qv02186 Water Research Commission'),
(32348, 'https://ror.org/02qv4je94', 'no_lang_code', 1, 'https://ror.org/02qv4je94 Impact Coatings (Sweden)'),
(32349, 'https://ror.org/02qva2y28', 'en', 1, 'https://ror.org/02qva2y28 Samuel Waxman Cancer Research Foundation'),
(32350, 'https://ror.org/02qx2bv92', 'no_lang_code', 1, 'https://ror.org/02qx2bv92 Geoexperts (Slovakia)'),
(32351, 'https://ror.org/02qx2s478', 'en', 1, 'https://ror.org/02qx2s478 Southern and Eastern Norway Regional Health Authority'),
(32352, 'https://ror.org/02qx7jz53', 'no_lang_code', 1, 'https://ror.org/02qx7jz53 Wolf Technical Services (United States)'),
(32353, 'https://ror.org/02qxp9a05', 'en', 1, 'https://ror.org/02qxp9a05 Granite State College'),
(32354, 'https://ror.org/02qxv7b63', 'en', 1, 'https://ror.org/02qxv7b63 Cryptobranchid Interest Group'),
(32355, 'https://ror.org/02qy4hb70', 'no_lang_code', 1, 'https://ror.org/02qy4hb70 Clayburn Refractories (Canada)'),
(32356, 'https://ror.org/02qy4xp49', 'no_lang_code', 1, 'https://ror.org/02qy4xp49 Stena Recycling (Sweden)'),
(32357, 'https://ror.org/02qzya303', 'no_lang_code', 1, 'https://ror.org/02qzya303 NovaSpectra (United States)'),
(32358, 'https://ror.org/02r089428', 'no_lang_code', 1, 'https://ror.org/02r089428 AgilOptics (United States)'),
(32359, 'https://ror.org/02r0g0093', 'no_lang_code', 1, 'https://ror.org/02r0g0093 Southern Company (United States)'),
(32360, 'https://ror.org/02r0y3932', 'sk', 1, 'https://ror.org/02r0y3932 Vyskumny Ústav Dopravny'),
(32361, 'https://ror.org/02r14vp15', 'no_lang_code', 1, 'https://ror.org/02r14vp15 National Influenza Center'),
(32362, 'https://ror.org/02r1k0x59', 'en', 1, 'https://ror.org/02r1k0x59 Packaging Arena'),
(32363, 'https://ror.org/02r1sb446', 'no_lang_code', 1, 'https://ror.org/02r1sb446 Scientica (Slovakia)'),
(32364, 'https://ror.org/02r3f8m74', 'no_lang_code', 1, 'https://ror.org/02r3f8m74 Farr Fields (United States)'),
(32365, 'https://ror.org/02r5jp158', 'en', 1, 'https://ror.org/02r5jp158 Center for International Rehabilitation'),
(32366, 'https://ror.org/02r5m5t30', 'fr', 1, 'https://ror.org/02r5m5t30 Doctors Without Borders MĆ©decins Sans FrontiĆØresā€Ž'),
(32367, 'https://ror.org/02r6tx669', 'no_lang_code', 1, 'https://ror.org/02r6tx669 Biteam (Sweden)'),
(32368, 'https://ror.org/02r7nkw81', 'pt', 1, 'https://ror.org/02r7nkw81 Araucaria Foundation Fundação AraucÔria'),
(32369, 'https://ror.org/02r7s3859', 'no_lang_code', 1, 'https://ror.org/02r7s3859 Vernon Seed Orchard Company (Canada)'),
(32370, 'https://ror.org/02r8axs93', 'no_lang_code', 1, 'https://ror.org/02r8axs93 NeuroRx Research (Canada)'),
(32371, 'https://ror.org/02r8tn769', 'en', 1, 'https://ror.org/02r8tn769 Asia-Pacific Network for Global Change Research'),
(32372, 'https://ror.org/02r9x2x37', 'no_lang_code', 1, 'https://ror.org/02r9x2x37 InnovaTek (United States)'),
(32373, 'https://ror.org/02raka351', 'no_lang_code', 1, 'https://ror.org/02raka351 Imperial Metals (Canada)'),
(32374, 'https://ror.org/02rd7bb97', 'no_lang_code', 1, 'https://ror.org/02rd7bb97 Mercury Systems (United States)'),
(32375, 'https://ror.org/02rdwwh89', 'nl', 1, 'https://ror.org/02rdwwh89 Christelijke Scholengemeenschap Walcheren'),
(32376, 'https://ror.org/02rf1sg12', 'no_lang_code', 1, 'https://ror.org/02rf1sg12 Ecoloop (Sweden)'),
(32377, 'https://ror.org/02rf9jr43', 'en', 1, 'https://ror.org/02rf9jr43 Austrian Association of Women Artists Vereinigung bildender Künstlerinnen Ɩsterreichs'),
(32378, 'https://ror.org/02rfzns68', 'en', 1, 'https://ror.org/02rfzns68 A*STAR-NUS Clinical Imaging Research Centre'),
(32379, 'https://ror.org/02rj0as03', 'en', 1, 'https://ror.org/02rj0as03 Josiah Macy Jr Foundation'),
(32380, 'https://ror.org/02rkyk519', 'no_lang_code', 1, 'https://ror.org/02rkyk519 ME-Inspection SK (Slovakia)'),
(32381, 'https://ror.org/02rpygq27', 'en', 1, 'https://ror.org/02rpygq27 Credit Comfort'),
(32382, 'https://ror.org/02rrbkd45', 'no_lang_code', 1, 'https://ror.org/02rrbkd45 OrganoClick (Sweden)'),
(32383, 'https://ror.org/02rv73z09', 'no_lang_code', 1, 'https://ror.org/02rv73z09 Enoshima Aquarium'),
(32384, 'https://ror.org/02rvm6b03', 'en', 1, 'https://ror.org/02rvm6b03 Defence Science and Technology Agency'),
(32385, 'https://ror.org/02rwvh228', 'no_lang_code', 1, 'https://ror.org/02rwvh228 Advanced Optical Systems (United States)'),
(32386, 'https://ror.org/02rxjkx06', 'es', 1, 'https://ror.org/02rxjkx06 Centro Nacional de Enfermedades Tropicales'),
(32387, 'https://ror.org/02ry1ef38', 'no_lang_code', 1, 'https://ror.org/02ry1ef38 Vigor Wave Energy (Sweden)'),
(32388, 'https://ror.org/02ryfff02', 'en', 1, 'https://ror.org/02ryfff02 Songjiang District Central Hospital'),
(32389, 'https://ror.org/02rzw6h69', 'en', 1, 'https://ror.org/02rzw6h69 Helmholtz Institute Jena Helmholtz-Institut Jena'),
(32390, 'https://ror.org/02s06cq86', 'no_lang_code', 1, 'https://ror.org/02s06cq86 Arbec Forest Products (Canada)'),
(32391, 'https://ror.org/02s21g398', 'en', 1, 'https://ror.org/02s21g398 Coral Reef Research Foundation'),
(32392, 'https://ror.org/02s3mqv16', 'no_lang_code', 1, 'https://ror.org/02s3mqv16 Polymeright (United States)'),
(32393, 'https://ror.org/02s4dhq46', 'en', 1, 'https://ror.org/02s4dhq46 Instituto Nacional de Biodiversidad National Biodiversity Institute'),
(32394, 'https://ror.org/02s5wxe37', 'no_lang_code', 1, 'https://ror.org/02s5wxe37 Applied Poleramic (United States)'),
(32395, 'https://ror.org/02s7bp606', 'en', 1, 'https://ror.org/02s7bp606 Chartered Institute of Plumbing and Heating Engineering'),
(32396, 'https://ror.org/02s7h1n35', 'no_lang_code', 1, 'https://ror.org/02s7h1n35 Emel (Slovakia)'),
(32397, 'https://ror.org/02s9h8g68', 'ro', 1, 'https://ror.org/02s9h8g68 Poliția de Frontieră RomĆ¢nă'),
(32398, 'https://ror.org/02s9hwc03', 'es', 1, 'https://ror.org/02s9hwc03 Hospital Infantil Manuel de JesĆŗs Rivera'),
(32399, 'https://ror.org/02s9z8855', 'no_lang_code', 1, 'https://ror.org/02s9z8855 Firalis (France)'),
(32400, 'https://ror.org/02sba6v14', 'no_lang_code', 1, 'https://ror.org/02sba6v14 West Pharmaceutical Services (United States)'),
(32401, 'https://ror.org/02scsee13', 'no_lang_code', 1, 'https://ror.org/02scsee13 Etalon (Germany)'),
(32402, 'https://ror.org/02se70931', 'en', 1, 'https://ror.org/02se70931 California HealthCare Foundation'),
(32403, 'https://ror.org/02seeba69', 'en', 1, 'https://ror.org/02seeba69 Walther Cancer Foundation'),
(32404, 'https://ror.org/02sg0rn97', 'no_lang_code', 1, 'https://ror.org/02sg0rn97 Integrated Adaptive Applications (United States)'),
(32405, 'https://ror.org/02ske4z75', 'no_lang_code', 1, 'https://ror.org/02ske4z75 Aquatic Systems (United States)'),
(32406, 'https://ror.org/02skpkw64', 'en', 1, 'https://ror.org/02skpkw64 Shenzhen KangNing Hospital'),
(32407, 'https://ror.org/02snbhr24', 'en', 1, 'https://ror.org/02snbhr24 Grand Challenges Canada'),
(32408, 'https://ror.org/02sr74r45', 'en', 1, 'https://ror.org/02sr74r45 Biopterre'),
(32409, 'https://ror.org/02ssn9g91', 'en', 1, 'https://ror.org/02ssn9g91 U.S. Poultry and Egg Association'),
(32410, 'https://ror.org/02svyk642', 'no_lang_code', 1, 'https://ror.org/02svyk642 Arkema (Canada)'),
(32411, 'https://ror.org/02swwnp83', 'en', 1, 'https://ror.org/02swwnp83 Nepal Health Research Council'),
(32412, 'https://ror.org/02swwpp84', 'en', 1, 'https://ror.org/02swwpp84 Juvenile Diabetes Research Foundation'),
(32413, 'https://ror.org/02sy8ft18', 'en', 1, 'https://ror.org/02sy8ft18 National Records of Scotland'),
(32414, 'https://ror.org/02syf5698', 'no_lang_code', 1, 'https://ror.org/02syf5698 Business Region Gƶteborg (Sweden)'),
(32415, 'https://ror.org/02syt4h28', 'no_lang_code', 1, 'https://ror.org/02syt4h28 Sendero Group (United States)'),
(32416, 'https://ror.org/02syy6g64', 'no_lang_code', 1, 'https://ror.org/02syy6g64 Armacell (Canada)'),
(32417, 'https://ror.org/02sz42a76', 'en', 1, 'https://ror.org/02sz42a76 Monroe College'),
(32418, 'https://ror.org/02t0nms65', 'no_lang_code', 1, 'https://ror.org/02t0nms65 Novozymes (Canada)'),
(32419, 'https://ror.org/02t171j61', 'en', 1, 'https://ror.org/02t171j61 California Institute for Human Science'),
(32420, 'https://ror.org/02t1yaf39', 'en', 1, 'https://ror.org/02t1yaf39 Fetzer Institute'),
(32421, 'https://ror.org/02t5vgv32', 'no_lang_code', 1, 'https://ror.org/02t5vgv32 GasPorOx (Sweden)'),
(32422, 'https://ror.org/02t6ken40', 'no_lang_code', 1, 'https://ror.org/02t6ken40 Full Circle Research (United States)'),
(32423, 'https://ror.org/02t942m04', 'no_lang_code', 1, 'https://ror.org/02t942m04 Edaptive Computing (United States)'),
(32424, 'https://ror.org/02t9jkq72', 'no_lang_code', 1, 'https://ror.org/02t9jkq72 Beam Engineering for Advanced Measurements (United States)'),
(32425, 'https://ror.org/02t9nbh81', 'no_lang_code', 1, 'https://ror.org/02t9nbh81 Lowell Digisonde International (United States)'),
(32426, 'https://ror.org/02tajka68', 'no_lang_code', 1, 'https://ror.org/02tajka68 Kalsi Engineering (United States)'),
(32427, 'https://ror.org/02taxhk03', 'no_lang_code', 1, 'https://ror.org/02taxhk03 Aqwest (United States)'),
(32428, 'https://ror.org/02tbvhh96', 'en', 1, 'https://ror.org/02tbvhh96 First Affiliated Hospital of Xi''an Jiaotong University'),
(32429, 'https://ror.org/02tc9fx21', 'it', 1, 'https://ror.org/02tc9fx21 Dipartimento per le pari opportunitĆ '),
(32430, 'https://ror.org/02te5rf52', 'pt', 1, 'https://ror.org/02te5rf52 Fundação de Amparo à Ciência e Tecnologia de Pernambuco'),
(32431, 'https://ror.org/02techz27', 'no_lang_code', 1, 'https://ror.org/02techz27 T-Industry (Slovakia)'),
(32432, 'https://ror.org/02tenpc86', 'en', 1, 'https://ror.org/02tenpc86 Scottish Universities Life Sciences Alliance'),
(32433, 'https://ror.org/02tggj648', 'no_lang_code', 1, 'https://ror.org/02tggj648 KraussMaffei (Slovakia)'),
(32434, 'https://ror.org/02tgjtw54', 'no_lang_code', 1, 'https://ror.org/02tgjtw54 Applied Radar (United States)'),
(32435, 'https://ror.org/02thhxe24', 'en', 1, 'https://ror.org/02thhxe24 Alaska Bible College'),
(32436, 'https://ror.org/02tm5n709', 'no_lang_code', 1, 'https://ror.org/02tm5n709 Heraeus (Canada)'),
(32437, 'https://ror.org/02tm9s162', 'en', 1, 'https://ror.org/02tm9s162 Imperial War Museum'),
(32438, 'https://ror.org/02tmzwm33', 'en', 1, 'https://ror.org/02tmzwm33 Guerci Consulting Services'),
(32439, 'https://ror.org/02tn54y74', 'no_lang_code', 1, 'https://ror.org/02tn54y74 Read Jones Christoffersen (Canada)'),
(32440, 'https://ror.org/02tqbra66', 'no_lang_code', 1, 'https://ror.org/02tqbra66 MaxPower (United States)'),
(32441, 'https://ror.org/02tqmtb62', 'no_lang_code', 1, 'https://ror.org/02tqmtb62 Yankee Scientific (United States)'),
(32442, 'https://ror.org/02tr21n67', 'en', 1, 'https://ror.org/02tr21n67 Internet Foundation In Sweden'),
(32443, 'https://ror.org/02trd4c61', 'no_lang_code', 1, 'https://ror.org/02trd4c61 Ultimara (United States)'),
(32444, 'https://ror.org/02tvhnn50', 'hu', 1, 'https://ror.org/02tvhnn50 KÔrolyi SÔndor KórhÔz'),
(32445, 'https://ror.org/02ty5cy83', 'no_lang_code', 1, 'https://ror.org/02ty5cy83 Infinera (United States)'),
(32446, 'https://ror.org/02tyyce58', 'no_lang_code', 1, 'https://ror.org/02tyyce58 Bcn Cambra Logica De Projectes'),
(32447, 'https://ror.org/02v09hm63', 'no_lang_code', 1, 'https://ror.org/02v09hm63 Surmet (United States)'),
(32448, 'https://ror.org/02v5pea97', 'en', 1, 'https://ror.org/02v5pea97 American Porphyria Foundation'),
(32449, 'https://ror.org/02v63pq94', 'no_lang_code', 1, 'https://ror.org/02v63pq94 Power Standards Lab (United States)'),
(32450, 'https://ror.org/02v6jgb22', 'no_lang_code', 1, 'https://ror.org/02v6jgb22 Creativ-Ceutical (France)'),
(32451, 'https://ror.org/02v8p6669', 'no_lang_code', 1, 'https://ror.org/02v8p6669 Omnitek Partners (United States)'),
(32452, 'https://ror.org/02v93c994', 'no_lang_code', 1, 'https://ror.org/02v93c994 Blade Diagnostics (United States)'),
(32453, 'https://ror.org/02vbdk750', 'no_lang_code', 1, 'https://ror.org/02vbdk750 Patrys (Germany)'),
(32454, 'https://ror.org/02vbgbc26', 'en', 1, 'https://ror.org/02vbgbc26 Hungarian National Gallery'),
(32455, 'https://ror.org/02vbx3q13', 'no_lang_code', 1, 'https://ror.org/02vbx3q13 CH Four Biogas (Canada)'),
(32456, 'https://ror.org/02vf3h353', 'en', 1, 'https://ror.org/02vf3h353 Le Conseil mƩdical du Canada Medical Council of Canada'),
(32457, 'https://ror.org/02vfebb84', 'en', 1, 'https://ror.org/02vfebb84 Westbrook University'),
(32458, 'https://ror.org/02vfyyh15', 'no_lang_code', 1, 'https://ror.org/02vfyyh15 CU Aerospace (United States)'),
(32459, 'https://ror.org/02vhq0d75', 'en', 1, 'https://ror.org/02vhq0d75 Mid Sweden Science Park'),
(32460, 'https://ror.org/02vk7w417', 'en', 1, 'https://ror.org/02vk7w417 Welsh National College'),
(32461, 'https://ror.org/02vkwpj59', 'no_lang_code', 1, 'https://ror.org/02vkwpj59 West of England Local Enterprise Partnership (United Kingdom)'),
(32462, 'https://ror.org/02vmvtc06', 'no_lang_code', 1, 'https://ror.org/02vmvtc06 Redoxis (Sweden)'),
(32463, 'https://ror.org/02vp4yp31', 'no_lang_code', 1, 'https://ror.org/02vp4yp31 Exothermics (United States)'),
(32464, 'https://ror.org/02vrn1720', 'sk', 1, 'https://ror.org/02vrn1720 Výskumný Ústav Mliekarenský'),
(32465, 'https://ror.org/02vs70k74', 'en', 1, 'https://ror.org/02vs70k74 Malmƶ Municipality'),
(32466, 'https://ror.org/02vt3b359', 'en', 1, 'https://ror.org/02vt3b359 Government of Jilin Province'),
(32467, 'https://ror.org/02vt8b034', 'no_lang_code', 1, 'https://ror.org/02vt8b034 Algoryx Simulation (Sweden)'),
(32468, 'https://ror.org/02vtcvw94', 'no_lang_code', 1, 'https://ror.org/02vtcvw94 Gilasio Coding (Israel)'),
(32469, 'https://ror.org/02vtff553', 'en', 1, 'https://ror.org/02vtff553 Texas Chiropractic College'),
(32470, 'https://ror.org/02vvx3p07', 'no_lang_code', 1, 'https://ror.org/02vvx3p07 TeachTown (United States)'),
(32471, 'https://ror.org/02vx8p498', 'no_lang_code', 1, 'https://ror.org/02vx8p498 Hudbay Minerals (Canada)'),
(32472, 'https://ror.org/02vxk8v76', 'en', 1, 'https://ror.org/02vxk8v76 Ladies Leukemia League'),
(32473, 'https://ror.org/02vz36p73', 'no_lang_code', 1, 'https://ror.org/02vz36p73 Prevention Group'),
(32474, 'https://ror.org/02vz62k77', 'en', 1, 'https://ror.org/02vz62k77 Republic of Burundi RƩpublique du Burundi'),
(32475, 'https://ror.org/02vzczv80', 'en', 1, 'https://ror.org/02vzczv80 College of Veterinarians of British Columbia'),
(32476, 'https://ror.org/02vzf2422', 'en', 1, 'https://ror.org/02vzf2422 Academia de la Marina Mercante de los Estados Unidos AcadĆ©mie de la marine marchande des Ɖtats-unis United States Merchant Marine Academy'),
(32477, 'https://ror.org/02vzkf466', 'en', 1, 'https://ror.org/02vzkf466 Judicial Academy of the Slovak Republic'),
(32478, 'https://ror.org/02vzqaq35', 'en', 1, 'https://ror.org/02vzqaq35 First Hospital of Shanxi Medical University'),
(32479, 'https://ror.org/02vzzw378', 'en', 1, 'https://ror.org/02vzzw378 Hancock Shaker Village'),
(32480, 'https://ror.org/02w5xx833', 'no_lang_code', 1, 'https://ror.org/02w5xx833 Biomotif (Sweden)'),
(32481, 'https://ror.org/02w6gr951', 'en', 1, 'https://ror.org/02w6gr951 Shanghai Institute of Applied Physics äø­å›½ē§‘å­¦é™¢äøŠęµ·åŗ”ē”Øē‰©ē†ē ”ē©¶ę‰€'),
(32482, 'https://ror.org/02w7ppq59', 'no_lang_code', 1, 'https://ror.org/02w7ppq59 Narrative (Sweden)'),
(32483, 'https://ror.org/02wbbzx11', 'en', 1, 'https://ror.org/02wbbzx11 New School for Jewish Studies'),
(32484, 'https://ror.org/02wdjff78', 'en', 1, 'https://ror.org/02wdjff78 State Studies Foundation'),
(32485, 'https://ror.org/02wdwnk04', 'en', 1, 'https://ror.org/02wdwnk04 British Heart Foundation'),
(32486, 'https://ror.org/02we8bf02', 'no_lang_code', 1, 'https://ror.org/02we8bf02 NewMarket Corporation (United States)'),
(32487, 'https://ror.org/02wedcm51', 'no_lang_code', 1, 'https://ror.org/02wedcm51 Tezzaron Semiconductor (United States)'),
(32488, 'https://ror.org/02werpm25', 'no_lang_code', 1, 'https://ror.org/02werpm25 MMA Design (United States)'),
(32489, 'https://ror.org/02wev3m05', 'no_lang_code', 1, 'https://ror.org/02wev3m05 Matsys (United States)'),
(32490, 'https://ror.org/02wh8xm70', 'en', 1, 'https://ror.org/02wh8xm70 Shanxi Eye Hospital'),
(32491, 'https://ror.org/02wk8wx53', 'en', 1, 'https://ror.org/02wk8wx53 Gouvernement du Nouveau-Brunswick Government of New Brunswick'),
(32492, 'https://ror.org/02wkxng78', 'no_lang_code', 1, 'https://ror.org/02wkxng78 RecondOil (Sweden)'),
(32493, 'https://ror.org/02wpr4m51', 'no_lang_code', 1, 'https://ror.org/02wpr4m51 Kumetrix (United States)'),
(32494, 'https://ror.org/02wr53m35', 'no_lang_code', 1, 'https://ror.org/02wr53m35 Arboritec (Sweden)'),
(32495, 'https://ror.org/02wv5fj21', 'en', 1, 'https://ror.org/02wv5fj21 Children''s Cancer Research Fund'),
(32496, 'https://ror.org/02wvrmv25', 'no_lang_code', 1, 'https://ror.org/02wvrmv25 Industrial Development Center (Sweden)'),
(32497, 'https://ror.org/02wwt0d68', 'no_lang_code', 1, 'https://ror.org/02wwt0d68 Shinsera Technologies (Japan)'),
(32498, 'https://ror.org/02wx5p869', 'no_lang_code', 1, 'https://ror.org/02wx5p869 Howden (United Kingdom)'),
(32499, 'https://ror.org/02wx79d08', 'no_lang_code', 1, 'https://ror.org/02wx79d08 Taiwan Semiconductor Manufacturing Company (Taiwan) å°ē£ē©é«”é›»č·Æč£½é€ å…¬åø'),
(32500, 'https://ror.org/02wyf5v78', 'no_lang_code', 1, 'https://ror.org/02wyf5v78 JonDeTech (Sweden)'),
(32501, 'https://ror.org/02wzw7340', 'no_lang_code', 1, 'https://ror.org/02wzw7340 Advanced Infoneering (United States)'),
(32502, 'https://ror.org/02x2xf445', 'en', 1, 'https://ror.org/02x2xf445 Institute of Nature Conservation Instytut Ochrony Przyrody'),
(32503, 'https://ror.org/02x3pxw11', 'no_lang_code', 1, 'https://ror.org/02x3pxw11 Precision Varionic International (United Kingdom)'),
(32504, 'https://ror.org/02x81h069', 'en', 1, 'https://ror.org/02x81h069 Organization for Tropical Studies'),
(32505, 'https://ror.org/02x9spt42', 'no_lang_code', 1, 'https://ror.org/02x9spt42 WestGen (Canada)'),
(32506, 'https://ror.org/02xa5f497', 'en', 1, 'https://ror.org/02xa5f497 Healthcare Georgia Foundation'),
(32507, 'https://ror.org/02xbjfn31', 'en', 1, 'https://ror.org/02xbjfn31 Middle East Fertility Society'),
(32508, 'https://ror.org/02xdb6745', 'et', 1, 'https://ror.org/02xdb6745 Emakeele Selts'),
(32509, 'https://ror.org/02xewxa75', 'en', 1, 'https://ror.org/02xewxa75 Berkeley College'),
(32510, 'https://ror.org/02xey9a22', 'en', 1, 'https://ror.org/02xey9a22 Fogarty International Center'),
(32511, 'https://ror.org/02xgmf234', 'no_lang_code', 1, 'https://ror.org/02xgmf234 Amelex (United States)'),
(32512, 'https://ror.org/02xqtsp69', 'hu', 1, 'https://ror.org/02xqtsp69 Móra Ferenc Múzeum'),
(32513, 'https://ror.org/02xrt8f30', 'no_lang_code', 1, 'https://ror.org/02xrt8f30 FarCo Technologies (United States)'),
(32514, 'https://ror.org/02xrzsw71', 'no_lang_code', 1, 'https://ror.org/02xrzsw71 QmagiQ (United States)'),
(32515, 'https://ror.org/02xvp8z16', 'en', 1, 'https://ror.org/02xvp8z16 Ministry of Higher Education Ministère de l''Enseignement Supérieur'),
(32516, 'https://ror.org/02xwkbq98', 'en', 1, 'https://ror.org/02xwkbq98 National Heart Foundation of New Zealand'),
(32517, 'https://ror.org/02xx4aw44', 'en', 1, 'https://ror.org/02xx4aw44 Peak Parent Center'),
(32518, 'https://ror.org/02xxx6w64', 'en', 1, 'https://ror.org/02xxx6w64 81th Hospital of PLA äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬å…«äø€åŒ»é™¢'),
(32519, 'https://ror.org/02xy94a15', 'no_lang_code', 1, 'https://ror.org/02xy94a15 ChromoGenics (Sweden)'),
(32520, 'https://ror.org/02xzsdt57', 'no_lang_code', 1, 'https://ror.org/02xzsdt57 Surface Optics (United States)'),
(32521, 'https://ror.org/02y114t67', 'no_lang_code', 1, 'https://ror.org/02y114t67 Autogrid Systems (United States)'),
(32522, 'https://ror.org/02y2gng66', 'en', 1, 'https://ror.org/02y2gng66 Save the Children'),
(32523, 'https://ror.org/02y2j7w80', 'no_lang_code', 1, 'https://ror.org/02y2j7w80 RBS Technologies (United States)'),
(32524, 'https://ror.org/02y3cnq68', 'en', 1, 'https://ror.org/02y3cnq68 Biomedical Informatics Research Center Antwerp'),
(32525, 'https://ror.org/02y47bf73', 'no_lang_code', 1, 'https://ror.org/02y47bf73 Evonik (Canada)'),
(32526, 'https://ror.org/02y5ra618', 'no_lang_code', 1, 'https://ror.org/02y5ra618 Bacher Energie (Switzerland)'),
(32527, 'https://ror.org/02y720j55', 'no_lang_code', 1, 'https://ror.org/02y720j55 Guild Hall'),
(32528, 'https://ror.org/02y751y19', 'no_lang_code', 1, 'https://ror.org/02y751y19 Kellogg''s (Canada)'),
(32529, 'https://ror.org/02y8zvn85', 'no_lang_code', 1, 'https://ror.org/02y8zvn85 GP Technologies (United States)'),
(32530, 'https://ror.org/02yg6th19', 'no_lang_code', 1, 'https://ror.org/02yg6th19 Elteco (Slovakia)'),
(32531, 'https://ror.org/02ygftm07', 'no_lang_code', 1, 'https://ror.org/02ygftm07 Pharmachem Laboratories (United States)'),
(32532, 'https://ror.org/02yk12g97', 'no_lang_code', 1, 'https://ror.org/02yk12g97 Hexagon Lincoln (United States)'),
(32533, 'https://ror.org/02ykcmr55', 'en', 1, 'https://ror.org/02ykcmr55 Shandong Province Animal Husbandry and Veterinary Bureau'),
(32534, 'https://ror.org/02ymk8b69', 'en', 1, 'https://ror.org/02ymk8b69 Xi''an University of Science and Education Foundation'),
(32535, 'https://ror.org/02ympmq44', 'no_lang_code', 1, 'https://ror.org/02ympmq44 Crossfield Technology (United States)'),
(32536, 'https://ror.org/02yn1nr06', 'en', 1, 'https://ror.org/02yn1nr06 California Sea Grant'),
(32537, 'https://ror.org/02ypd5h61', 'no_lang_code', 1, 'https://ror.org/02ypd5h61 Simulation Technologies (United States)'),
(32538, 'https://ror.org/02ytn5d60', 'no_lang_code', 1, 'https://ror.org/02ytn5d60 Ferring Pharmaceuticals (United States)'),
(32539, 'https://ror.org/02yv7gj50', 'no_lang_code', 1, 'https://ror.org/02yv7gj50 SNP Genetics (South Korea)'),
(32540, 'https://ror.org/02yyd0927', 'no_lang_code', 1, 'https://ror.org/02yyd0927 Holochip (United States)'),
(32541, 'https://ror.org/02yyzvz79', 'en', 1, 'https://ror.org/02yyzvz79 Texas Emerging Technology Fund'),
(32542, 'https://ror.org/02yz1n812', 'en', 1, 'https://ror.org/02yz1n812 AIDS Clinical Trials Group');
INSERT INTO `rors` VALUES
(32543, 'https://ror.org/02z02cv32', 'en', 1, 'https://ror.org/02z02cv32 Institut de l’Énergie Ɖolienne du Canada Wind Energy Institute of Canada'),
(32544, 'https://ror.org/02z0nsb22', 'en', 1, 'https://ror.org/02z0nsb22 Institute of Mountain Hazards and Environment äø­å›½ē§‘å­¦é™¢ę°“åˆ©éƒØęˆéƒ½å±±åœ°ē¾å®³äøŽēŽÆå¢ƒē ”ē©¶ę‰€'),
(32545, 'https://ror.org/02z0ywx65', 'nl', 1, 'https://ror.org/02z0ywx65 Regionale scholengemeenschap Goeree-Overflakkee'),
(32546, 'https://ror.org/02z2a9w02', 'en', 1, 'https://ror.org/02z2a9w02 Horserace Betting Levy Board'),
(32547, 'https://ror.org/02z4mtf98', 'no_lang_code', 1, 'https://ror.org/02z4mtf98 Sturman Industries (United States)'),
(32548, 'https://ror.org/02z4q1r45', 'en', 1, 'https://ror.org/02z4q1r45 PƤrnu Museum'),
(32549, 'https://ror.org/02z4rpq04', 'en', 1, 'https://ror.org/02z4rpq04 Ottó Herman Museum'),
(32550, 'https://ror.org/02z681y43', 'en', 1, 'https://ror.org/02z681y43 National Rifle Association of America'),
(32551, 'https://ror.org/02z95aw27', 'no_lang_code', 1, 'https://ror.org/02z95aw27 Peterborough Utilities Service (Canada)'),
(32552, 'https://ror.org/02zbnnb30', 'no_lang_code', 1, 'https://ror.org/02zbnnb30 Knowledge Broadband Services (Greece)'),
(32553, 'https://ror.org/02zcf8e64', 'no_lang_code', 1, 'https://ror.org/02zcf8e64 Gener8 (United States)'),
(32554, 'https://ror.org/02zdz9d52', 'en', 1, 'https://ror.org/02zdz9d52 Association for Behavior Analysis International'),
(32555, 'https://ror.org/02zez7725', 'en', 1, 'https://ror.org/02zez7725 Bimini Biological Field Station Foundation'),
(32556, 'https://ror.org/02zg7gg26', 'no_lang_code', 1, 'https://ror.org/02zg7gg26 MC10 (United States)'),
(32557, 'https://ror.org/02zh48v40', 'no_lang_code', 1, 'https://ror.org/02zh48v40 Magle (Sweden)'),
(32558, 'https://ror.org/02zh9ta75', 'no_lang_code', 1, 'https://ror.org/02zh9ta75 BeeMobile (Sweden)'),
(32559, 'https://ror.org/02zhy2e32', 'no_lang_code', 1, 'https://ror.org/02zhy2e32 Sigolis (Sweden)'),
(32560, 'https://ror.org/02zkxjz73', 'fr', 1, 'https://ror.org/02zkxjz73 Fondation de France'),
(32561, 'https://ror.org/02zmcw850', 'no_lang_code', 1, 'https://ror.org/02zmcw850 Treviso Tecnologia (Italy)'),
(32562, 'https://ror.org/02zngav60', 'no_lang_code', 1, 'https://ror.org/02zngav60 SimVentions (United States)'),
(32563, 'https://ror.org/02zq38y32', 'en', 1, 'https://ror.org/02zq38y32 Korea Institute of Energy Technology Evaluation and Planning'),
(32564, 'https://ror.org/02zqq5p14', 'no_lang_code', 1, 'https://ror.org/02zqq5p14 Michelin (Canada)'),
(32565, 'https://ror.org/02zqqn969', 'no_lang_code', 1, 'https://ror.org/02zqqn969 Dillon Consulting'),
(32566, 'https://ror.org/02zryj468', 'no_lang_code', 1, 'https://ror.org/02zryj468 Irflex (United States)'),
(32567, 'https://ror.org/02ztj8667', 'en', 1, 'https://ror.org/02ztj8667 Royal Irgalmasrendi Hospital'),
(32568, 'https://ror.org/02zwjvm55', 'en', 1, 'https://ror.org/02zwjvm55 Blue Mountain College'),
(32569, 'https://ror.org/02zxar492', 'no_lang_code', 1, 'https://ror.org/02zxar492 Kulite (United States)'),
(32570, 'https://ror.org/02zxbg516', 'en', 1, 'https://ror.org/02zxbg516 National Forest Centre'),
(32571, 'https://ror.org/02zxqxw53', 'en', 1, 'https://ror.org/02zxqxw53 AXA Research Fund'),
(32572, 'https://ror.org/02zxyre23', 'en', 1, 'https://ror.org/02zxyre23 Beijing Aerospace General Hospital'),
(32573, 'https://ror.org/02zydys88', 'no_lang_code', 1, 'https://ror.org/02zydys88 Delta-Q Technologies (Canada)'),
(32574, 'https://ror.org/02zz5ef94', 'en', 1, 'https://ror.org/02zz5ef94 Clarke Schools for Hearing and Speech'),
(32575, 'https://ror.org/0300cef81', 'no_lang_code', 1, 'https://ror.org/0300cef81 Lola ya Bonobo'),
(32576, 'https://ror.org/0302b4677', 'en', 1, 'https://ror.org/0302b4677 British Academy'),
(32577, 'https://ror.org/0302v9k70', 'en', 1, 'https://ror.org/0302v9k70 Connecticut State Emergency Response Commission'),
(32578, 'https://ror.org/0302x4x02', 'no_lang_code', 1, 'https://ror.org/0302x4x02 Biogas Barth (Germany)'),
(32579, 'https://ror.org/0303r7956', 'no_lang_code', 1, 'https://ror.org/0303r7956 Strategic Insight (United States)'),
(32580, 'https://ror.org/030417565', 'no_lang_code', 1, 'https://ror.org/030417565 VSL Systems (Sweden)'),
(32581, 'https://ror.org/03055qx94', 'en', 1, 'https://ror.org/03055qx94 Canada Economic Development for Quebec Regions'),
(32582, 'https://ror.org/030689123', 'en', 1, 'https://ror.org/030689123 Georgia Research Alliance'),
(32583, 'https://ror.org/0306syb73', 'no_lang_code', 1, 'https://ror.org/0306syb73 Eigent Technologies (United States)'),
(32584, 'https://ror.org/0309hgk38', 'no_lang_code', 1, 'https://ror.org/0309hgk38 Plasan (United States)'),
(32585, 'https://ror.org/030a75q40', 'no_lang_code', 1, 'https://ror.org/030a75q40 Vision Systems Incorporation (United States)'),
(32586, 'https://ror.org/030cszc07', 'en', 1, 'https://ror.org/030cszc07 Australian Astronomical Observatory'),
(32587, 'https://ror.org/030d08e08', 'en', 1, 'https://ror.org/030d08e08 China Tobacco å›½å®¶ēƒŸč‰äø“å–å±€'),
(32588, 'https://ror.org/030f5x630', 'no_lang_code', 1, 'https://ror.org/030f5x630 Labormedizinische Zentrum Dr Risch (Switzerland)'),
(32589, 'https://ror.org/030hmhj85', 'de', 1, 'https://ror.org/030hmhj85 Institut für Wissenschaft und Kunst'),
(32590, 'https://ror.org/030ms0k96', 'en', 1, 'https://ror.org/030ms0k96 Alfa College'),
(32591, 'https://ror.org/030nbqh22', 'no_lang_code', 1, 'https://ror.org/030nbqh22 MRV Communications (United States)'),
(32592, 'https://ror.org/030p6wg21', 'no_lang_code', 1, 'https://ror.org/030p6wg21 EnZinc (United States)'),
(32593, 'https://ror.org/030qdbw52', 'en', 1, 'https://ror.org/030qdbw52 Association Vahatra'),
(32594, 'https://ror.org/030rdap26', 'ms', 1, 'https://ror.org/030rdap26 Hospital Sungai Buloh'),
(32595, 'https://ror.org/030sbze61', 'en', 1, 'https://ror.org/030sbze61 Institute for Molecular Medicine Finland'),
(32596, 'https://ror.org/030sqdt03', 'no_lang_code', 1, 'https://ror.org/030sqdt03 BPM Consulting (Slovakia)'),
(32597, 'https://ror.org/030trv569', 'no_lang_code', 1, 'https://ror.org/030trv569 Aecom (Canada)'),
(32598, 'https://ror.org/030tskq39', 'no_lang_code', 1, 'https://ror.org/030tskq39 Kigre (United States)'),
(32599, 'https://ror.org/030v6q043', 'no_lang_code', 1, 'https://ror.org/030v6q043 SeaLandAire Technologies (United States)'),
(32600, 'https://ror.org/030vh3375', 'no_lang_code', 1, 'https://ror.org/030vh3375 IDELIX Software (Canada)'),
(32601, 'https://ror.org/030vkcn94', 'en', 1, 'https://ror.org/030vkcn94 Korean Red Cross'),
(32602, 'https://ror.org/030vkvb42', 'no_lang_code', 1, 'https://ror.org/030vkvb42 Process Instruments (United States)'),
(32603, 'https://ror.org/030w99567', 'pt', 1, 'https://ror.org/030w99567 Financiadora de Estudos e Projetos Funding Authority for Studies and Projects'),
(32604, 'https://ror.org/030wt4r64', 'no_lang_code', 1, 'https://ror.org/030wt4r64 Sci-Tec (United States)'),
(32605, 'https://ror.org/03122yk49', 'no_lang_code', 1, 'https://ror.org/03122yk49 Optical Sciences (United States)'),
(32606, 'https://ror.org/03133qe46', 'en', 1, 'https://ror.org/03133qe46 Fight for Sight'),
(32607, 'https://ror.org/0313w9h47', 'en', 1, 'https://ror.org/0313w9h47 Swedish House of Finance'),
(32608, 'https://ror.org/031422186', 'sv', 1, 'https://ror.org/031422186 Norrkƶping Science Park'),
(32609, 'https://ror.org/0314naf78', 'no_lang_code', 1, 'https://ror.org/0314naf78 San Diego Composites (United States)'),
(32610, 'https://ror.org/0315yxm36', 'no_lang_code', 1, 'https://ror.org/0315yxm36 BroadReach Healthcare (South Africa)'),
(32611, 'https://ror.org/0316wrd42', 'en', 1, 'https://ror.org/0316wrd42 Victorian Cancer Agency'),
(32612, 'https://ror.org/031756c24', 'es', 1, 'https://ror.org/031756c24 Consejo Estatal de Ciencia, Tecnología e Innovación de Chihuahua'),
(32613, 'https://ror.org/0317zr716', 'no_lang_code', 1, 'https://ror.org/0317zr716 Ethnographic Museum'),
(32614, 'https://ror.org/031a6e068', 'it', 1, 'https://ror.org/031a6e068 Associazione Nazionale per l’Isolamento Termico e Acustico'),
(32615, 'https://ror.org/031drvr68', 'en', 1, 'https://ror.org/031drvr68 Bali Psychiatric Center'),
(32616, 'https://ror.org/031fs4257', 'en', 1, 'https://ror.org/031fs4257 British Columbia Blueberry Council'),
(32617, 'https://ror.org/031g86d21', 'no_lang_code', 1, 'https://ror.org/031g86d21 Hstar Technologies (United States)'),
(32618, 'https://ror.org/031ghkc34', 'no_lang_code', 1, 'https://ror.org/031ghkc34 Agile Systems (United States)'),
(32619, 'https://ror.org/031kbs337', 'en', 1, 'https://ror.org/031kbs337 Institut für jüdische Geschichte Ɩsterreichs Institute for Jewish History in Austria'),
(32620, 'https://ror.org/031m8pd59', 'en', 1, 'https://ror.org/031m8pd59 South Carolina Vocational Rehabilitation Department'),
(32621, 'https://ror.org/031md1b10', 'en', 1, 'https://ror.org/031md1b10 Cord Blood Center'),
(32622, 'https://ror.org/031n58j85', 'no_lang_code', 1, 'https://ror.org/031n58j85 Eos Photonics (United States)'),
(32623, 'https://ror.org/031nm5713', 'en', 1, 'https://ror.org/031nm5713 Chongqing Municipality Education Commission'),
(32624, 'https://ror.org/031p7wh32', 'en', 1, 'https://ror.org/031p7wh32 European Association for Cancer Research'),
(32625, 'https://ror.org/031r5nr48', 'no_lang_code', 1, 'https://ror.org/031r5nr48 Vecna Technologies (United States)'),
(32626, 'https://ror.org/031v6xt50', 'en', 1, 'https://ror.org/031v6xt50 Pine Manor College'),
(32627, 'https://ror.org/031wq1t38', 'en', 1, 'https://ror.org/031wq1t38 Ministry of Transport'),
(32628, 'https://ror.org/031yy4354', 'no_lang_code', 1, 'https://ror.org/031yy4354 MediWiSe (United Kingdom)'),
(32629, 'https://ror.org/031z84p26', 'no_lang_code', 1, 'https://ror.org/031z84p26 Agbar (Spain) Sociedad General de Aguas de Barcelona'),
(32630, 'https://ror.org/031zdk170', 'no_lang_code', 1, 'https://ror.org/031zdk170 Florida Turbine Technologies (United States)'),
(32631, 'https://ror.org/031zfq432', 'no_lang_code', 1, 'https://ror.org/031zfq432 Ferring Pharmaceuticals (Switzerland)'),
(32632, 'https://ror.org/031zhyz22', 'en', 1, 'https://ror.org/031zhyz22 Institute for Human Centered Design'),
(32633, 'https://ror.org/031zv7121', 'no_lang_code', 1, 'https://ror.org/031zv7121 IQE (United States)'),
(32634, 'https://ror.org/0320gnw44', 'it', 1, 'https://ror.org/0320gnw44 Consorzio Futuro in Ricerca'),
(32635, 'https://ror.org/0321f3g84', 'no_lang_code', 1, 'https://ror.org/0321f3g84 Doberman (Sweden)'),
(32636, 'https://ror.org/0321tjn48', 'es', 1, 'https://ror.org/0321tjn48 Instituto de Formación y Estudios Sociales'),
(32637, 'https://ror.org/0322ccw15', 'no_lang_code', 1, 'https://ror.org/0322ccw15 Prototek (United States)'),
(32638, 'https://ror.org/0325s8d52', 'en', 1, 'https://ror.org/0325s8d52 Mulier Institute'),
(32639, 'https://ror.org/0325zgw13', 'no_lang_code', 1, 'https://ror.org/0325zgw13 Transmisie Engineering (Slovakia)'),
(32640, 'https://ror.org/0326cx138', 'no_lang_code', 1, 'https://ror.org/0326cx138 Philips (Canada)'),
(32641, 'https://ror.org/0327ade70', 'no_lang_code', 1, 'https://ror.org/0327ade70 Spectra Energy (Canada)'),
(32642, 'https://ror.org/0327kb204', 'no_lang_code', 1, 'https://ror.org/0327kb204 Limes Audio (Sweden)'),
(32643, 'https://ror.org/0329mpy71', 'no_lang_code', 1, 'https://ror.org/0329mpy71 Techsburg (United States)'),
(32644, 'https://ror.org/0329q1430', 'en', 1, 'https://ror.org/0329q1430 Estonian Association for Applied Linguistics'),
(32645, 'https://ror.org/032bte841', 'no_lang_code', 1, 'https://ror.org/032bte841 Rogers Communications (Canada)'),
(32646, 'https://ror.org/032he5k36', 'no_lang_code', 1, 'https://ror.org/032he5k36 KortÔrs Könyvkiadói (Hungary)'),
(32647, 'https://ror.org/032hk6448', 'en', 1, 'https://ror.org/032hk6448 Changshu No.1 People''s Hospital'),
(32648, 'https://ror.org/032j0xp45', 'en', 1, 'https://ror.org/032j0xp45 Toccoa Falls College'),
(32649, 'https://ror.org/032nbqb04', 'en', 1, 'https://ror.org/032nbqb04 Illinois Department of Commerce and Economic Opportunity'),
(32650, 'https://ror.org/032p34689', 'no_lang_code', 1, 'https://ror.org/032p34689 KnowCharge (Canada)'),
(32651, 'https://ror.org/032p73z44', 'en', 1, 'https://ror.org/032p73z44 Sea Turtle Conservancy'),
(32652, 'https://ror.org/032pjd111', 'no_lang_code', 1, 'https://ror.org/032pjd111 Plasma Technology (United States)'),
(32653, 'https://ror.org/032rem971', 'en', 1, 'https://ror.org/032rem971 Metropolitan University College'),
(32654, 'https://ror.org/032sd8787', 'no_lang_code', 1, 'https://ror.org/032sd8787 Axiomatics (Sweden)'),
(32655, 'https://ror.org/032srmw97', 'bs', 1, 'https://ror.org/032srmw97 Svjetski Univerzitetski Bosne i Hercegovine'),
(32656, 'https://ror.org/032tyv240', 'en', 1, 'https://ror.org/032tyv240 Institute of Molecular Science and Technologies Istituto di Scienze e Tecnologie Molecolari'),
(32657, 'https://ror.org/0331gec24', 'no_lang_code', 1, 'https://ror.org/0331gec24 Enigmatics (United States)'),
(32658, 'https://ror.org/03334wr17', 'en', 1, 'https://ror.org/03334wr17 Museum at Eldridge Street'),
(32659, 'https://ror.org/03336v443', 'no_lang_code', 1, 'https://ror.org/03336v443 Solana Networks (Canada)'),
(32660, 'https://ror.org/03338g593', 'no_lang_code', 1, 'https://ror.org/03338g593 Lamda Technology (Greece)'),
(32661, 'https://ror.org/0333c2q56', 'no_lang_code', 1, 'https://ror.org/0333c2q56 Rugate Technologies (United States)'),
(32662, 'https://ror.org/0333dtq15', 'no_lang_code', 1, 'https://ror.org/0333dtq15 Hewlett-Packard (Canada)'),
(32663, 'https://ror.org/0333shy78', 'no_lang_code', 1, 'https://ror.org/0333shy78 Renegade Materials Corporation (United States)'),
(32664, 'https://ror.org/0333xzh65', 'en', 1, 'https://ror.org/0333xzh65 Wolfson Foundation'),
(32665, 'https://ror.org/03356n642', 'en', 1, 'https://ror.org/03356n642 Lister Institute of Preventive Medicine'),
(32666, 'https://ror.org/0335n2618', 'en', 1, 'https://ror.org/0335n2618 Jiangsu Agricultural Science and Technology Innovation Fund'),
(32667, 'https://ror.org/0337qzr68', 'no_lang_code', 1, 'https://ror.org/0337qzr68 Linearizer Technology (United States)'),
(32668, 'https://ror.org/0337t4k55', 'hu', 1, 'https://ror.org/0337t4k55 OrszƔgos LelkipƔsztori IntƩzet'),
(32669, 'https://ror.org/0338vpb86', 'no_lang_code', 1, 'https://ror.org/0338vpb86 Microelectronics Research Development (United States)'),
(32670, 'https://ror.org/033904843', 'en', 1, 'https://ror.org/033904843 New Economic School Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń школа'),
(32671, 'https://ror.org/033958n71', 'en', 1, 'https://ror.org/033958n71 Nederlandse School voor Openbaar Bestuur Netherlands School of Public Administration'),
(32672, 'https://ror.org/0339vy375', 'en', 1, 'https://ror.org/0339vy375 TransCen'),
(32673, 'https://ror.org/033cz6738', 'en', 1, 'https://ror.org/033cz6738 Oklahoma Department of Rehabilitation Services'),
(32674, 'https://ror.org/033f0gp46', 'no_lang_code', 1, 'https://ror.org/033f0gp46 Datalan (Slovakia)'),
(32675, 'https://ror.org/033g7w111', 'no_lang_code', 1, 'https://ror.org/033g7w111 Accel Brands (United States)'),
(32676, 'https://ror.org/033jxn043', 'en', 1, 'https://ror.org/033jxn043 Washington State Department of Commerce'),
(32677, 'https://ror.org/033khx691', 'no_lang_code', 1, 'https://ror.org/033khx691 Uson Marine (Sweden)'),
(32678, 'https://ror.org/033km7y93', 'no_lang_code', 1, 'https://ror.org/033km7y93 SoHaR (United States)'),
(32679, 'https://ror.org/033n46m09', 'no_lang_code', 1, 'https://ror.org/033n46m09 DB&A (United States)'),
(32680, 'https://ror.org/033r93f52', 'no_lang_code', 1, 'https://ror.org/033r93f52 Clothworkers Company (United Kingdom)'),
(32681, 'https://ror.org/033rwdt55', 'no_lang_code', 1, 'https://ror.org/033rwdt55 McAsphalt Industries (Canada)'),
(32682, 'https://ror.org/033we5h36', 'no_lang_code', 1, 'https://ror.org/033we5h36 Vaxine (Australia)'),
(32683, 'https://ror.org/033wnbm63', 'no_lang_code', 1, 'https://ror.org/033wnbm63 Jensen Hughes (United States)'),
(32684, 'https://ror.org/033xh9c11', 'no_lang_code', 1, 'https://ror.org/033xh9c11 Scientific Systems (United States)'),
(32685, 'https://ror.org/033xtdz52', 'pt', 1, 'https://ror.org/033xtdz52 Instituto de Pesquisas Jardim Botânico do Rio de Janeiro'),
(32686, 'https://ror.org/033y13v84', 'no_lang_code', 1, 'https://ror.org/033y13v84 Hotswaps (Sweden)'),
(32687, 'https://ror.org/033z7g133', 'en', 1, 'https://ror.org/033z7g133 Ministry of Energy, Northern Development and Mines MinistĆØre de l''Ɖnergie, du DĆ©veloppement du Nord et des Mines'),
(32688, 'https://ror.org/033zd2x30', 'no_lang_code', 1, 'https://ror.org/033zd2x30 O/E Land (Canada)'),
(32689, 'https://ror.org/033zf9867', 'en', 1, 'https://ror.org/033zf9867 Missouri Department of Labor and Industrial Relations'),
(32690, 'https://ror.org/03400ft78', 'en', 1, 'https://ror.org/03400ft78 Norfolk and Suffolk NHS Foundation Trust'),
(32691, 'https://ror.org/0343ms580', 'no_lang_code', 1, 'https://ror.org/0343ms580 Applied Spectra (United States)'),
(32692, 'https://ror.org/0349d5t97', 'no_lang_code', 1, 'https://ror.org/0349d5t97 Alkit Communications (Sweden)'),
(32693, 'https://ror.org/034csv258', 'sv', 1, 'https://ror.org/034csv258 ƖvertorneĆ„ Municipality'),
(32694, 'https://ror.org/034exbn27', 'no_lang_code', 1, 'https://ror.org/034exbn27 Veloxiti (United States)'),
(32695, 'https://ror.org/034ezwg26', 'en', 1, 'https://ror.org/034ezwg26 National Chung Shan Institute of Science and Technology'),
(32696, 'https://ror.org/034gcgw60', 'en', 1, 'https://ror.org/034gcgw60 Institute of Space and Astronautical Science 宇宙科学研究所'),
(32697, 'https://ror.org/034gqf495', 'no_lang_code', 1, 'https://ror.org/034gqf495 Wattguard (Sweden)'),
(32698, 'https://ror.org/034hhvm18', 'no_lang_code', 1, 'https://ror.org/034hhvm18 Trout Green Technologies (United States)'),
(32699, 'https://ror.org/034npc439', 'en', 1, 'https://ror.org/034npc439 Sixth Hospital of Changchun City'),
(32700, 'https://ror.org/034pgmb82', 'no_lang_code', 1, 'https://ror.org/034pgmb82 Dolphin Computer Access (United Kingdom)'),
(32701, 'https://ror.org/034rss031', 'en', 1, 'https://ror.org/034rss031 Holstein Association of Canada'),
(32702, 'https://ror.org/034wc9785', 'no_lang_code', 1, 'https://ror.org/034wc9785 Coskata (United States)'),
(32703, 'https://ror.org/034wh4067', 'en', 1, 'https://ror.org/034wh4067 Wine Council of Ontario'),
(32704, 'https://ror.org/03516qg53', 'no_lang_code', 1, 'https://ror.org/03516qg53 Ngenic (Sweden)'),
(32705, 'https://ror.org/0351r3c39', 'no_lang_code', 1, 'https://ror.org/0351r3c39 VIP Sensors (United States)'),
(32706, 'https://ror.org/0353v0664', 'no_lang_code', 1, 'https://ror.org/0353v0664 Clinical Laserthermia Systems (Sweden)'),
(32707, 'https://ror.org/0353xr267', 'no_lang_code', 1, 'https://ror.org/0353xr267 Visita Service (Sweden)'),
(32708, 'https://ror.org/0354agh42', 'no_lang_code', 1, 'https://ror.org/0354agh42 Fair Isaac Corporation (United States)'),
(32709, 'https://ror.org/03557jp84', 'en', 1, 'https://ror.org/03557jp84 Orangutan Information Centre'),
(32710, 'https://ror.org/03562m240', 'en', 1, 'https://ror.org/03562m240 Housing and Building National Research Center'),
(32711, 'https://ror.org/035684d86', 'en', 1, 'https://ror.org/035684d86 Voeikov Main Geophysical Observatory Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š“Š»Š°Š²Š½Š°Ń Š³ŠµŠ¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. А.И.Воейкова'),
(32712, 'https://ror.org/03573qv54', 'en', 1, 'https://ror.org/03573qv54 Orthopaedic Research'),
(32713, 'https://ror.org/0357dmp95', 'no_lang_code', 1, 'https://ror.org/0357dmp95 Utility Development (United States)'),
(32714, 'https://ror.org/03586p284', 'no_lang_code', 1, 'https://ror.org/03586p284 J. D. Irving (Canada)'),
(32715, 'https://ror.org/0359sgh16', 'no_lang_code', 1, 'https://ror.org/0359sgh16 Advanced Technologies Group (United States)'),
(32716, 'https://ror.org/035af0m16', 'no_lang_code', 1, 'https://ror.org/035af0m16 Icellate (Sweden)'),
(32717, 'https://ror.org/035c3nf67', 'pt', 1, 'https://ror.org/035c3nf67 National Service for Industrial Training ServiƧo Nacional de Aprendizagem Industrial'),
(32718, 'https://ror.org/035gbh774', 'no_lang_code', 1, 'https://ror.org/035gbh774 Lumerical Solutions (Canada)'),
(32719, 'https://ror.org/035gbps25', 'en', 1, 'https://ror.org/035gbps25 National Metrology Centre'),
(32720, 'https://ror.org/035hx7715', 'en', 1, 'https://ror.org/035hx7715 Wisconsin Sea Grant'),
(32721, 'https://ror.org/035jt5x02', 'nl', 1, 'https://ror.org/035jt5x02 CINOP'),
(32722, 'https://ror.org/035kh8h98', 'no_lang_code', 1, 'https://ror.org/035kh8h98 Measurement Technology Northwest (United States)'),
(32723, 'https://ror.org/035m9f342', 'en', 1, 'https://ror.org/035m9f342 Beth Johnson Foundation'),
(32724, 'https://ror.org/035njr402', 'no_lang_code', 1, 'https://ror.org/035njr402 Dynamic Systems & Research (United States)'),
(32725, 'https://ror.org/035ra0284', 'no_lang_code', 1, 'https://ror.org/035ra0284 TTC Technologies (United States)'),
(32726, 'https://ror.org/035rrps97', 'en', 1, 'https://ror.org/035rrps97 National Research Council'),
(32727, 'https://ror.org/035rs9v13', 'en', 1, 'https://ror.org/035rs9v13 Second Affiliated Hospital of Shantou University Medical College'),
(32728, 'https://ror.org/035ryz567', 'no_lang_code', 1, 'https://ror.org/035ryz567 Atac (United States)'),
(32729, 'https://ror.org/035skgh09', 'en', 1, 'https://ror.org/035skgh09 Comisión para la Igualdad de Oportunidades en el Empleo de los Estados Unidos United States Equal Employment Opportunity Commission'),
(32730, 'https://ror.org/035tnyy05', 'en', 1, 'https://ror.org/035tnyy05 John Templeton Foundation'),
(32731, 'https://ror.org/035tsx707', 'en', 1, 'https://ror.org/035tsx707 Swedish Incubators & Science Parks'),
(32732, 'https://ror.org/035vmht26', 'en', 1, 'https://ror.org/035vmht26 China Association for Science and Technology'),
(32733, 'https://ror.org/035w40502', 'en', 1, 'https://ror.org/035w40502 Institute for Learning and Development'),
(32734, 'https://ror.org/035w78024', 'no_lang_code', 1, 'https://ror.org/035w78024 Robotic Research (United States)'),
(32735, 'https://ror.org/035wmq455', 'en', 1, 'https://ror.org/035wmq455 Deutsche Leberstiftung German Liver Foundation'),
(32736, 'https://ror.org/035x8xc95', 'no_lang_code', 1, 'https://ror.org/035x8xc95 Bohemia Interactive Simulations (United States)'),
(32737, 'https://ror.org/035yp8515', 'no_lang_code', 1, 'https://ror.org/035yp8515 Modern Technology Solutions (United States)'),
(32738, 'https://ror.org/035z4sk50', 'no_lang_code', 1, 'https://ror.org/035z4sk50 Perfekt (Slovakia)'),
(32739, 'https://ror.org/035zntx80', 'en', 1, 'https://ror.org/035zntx80 Queensland Museum'),
(32740, 'https://ror.org/0363anr51', 'en', 1, 'https://ror.org/0363anr51 Hague Institute for Global Justice'),
(32741, 'https://ror.org/0363pts49', 'en', 1, 'https://ror.org/0363pts49 Institute for Nuclear Science and Technology VIỆN KHOA HỌC Vƀ KỸ THUįŗ¬T Hįŗ T NHƂN'),
(32742, 'https://ror.org/0364wnh23', 'en', 1, 'https://ror.org/0364wnh23 Swedish Maritime Technology Forum'),
(32743, 'https://ror.org/03659b965', 'no_lang_code', 1, 'https://ror.org/03659b965 Solinst (Canada)'),
(32744, 'https://ror.org/0365vfb57', 'en', 1, 'https://ror.org/0365vfb57 Canadian Sheet Steel Building Institute'),
(32745, 'https://ror.org/0368jnd28', 'en', 1, 'https://ror.org/0368jnd28 Dutch Cancer Society KWF Kankerbestrijding'),
(32746, 'https://ror.org/036adea75', 'en', 1, 'https://ror.org/036adea75 Sherman College of Chiropractic'),
(32747, 'https://ror.org/036c4jb90', 'en', 1, 'https://ror.org/036c4jb90 Royal Air Force Museum'),
(32748, 'https://ror.org/036cxc626', 'no_lang_code', 1, 'https://ror.org/036cxc626 Inwido (Sweden)'),
(32749, 'https://ror.org/036e45z28', 'sv', 1, 'https://ror.org/036e45z28 AffƤrsutveckling fƶr BesƶksnƤringen'),
(32750, 'https://ror.org/036g4a137', 'en', 1, 'https://ror.org/036g4a137 Manitoba Aerospace Association'),
(32751, 'https://ror.org/036mae937', 'no_lang_code', 1, 'https://ror.org/036mae937 Cereal Research (Hungary)'),
(32752, 'https://ror.org/036nq5137', 'en', 1, 'https://ror.org/036nq5137 Ministry of Education'),
(32753, 'https://ror.org/036p7gy85', 'en', 1, 'https://ror.org/036p7gy85 Secretariat of Environment and Natural Resources SecretarĆ­a del Medio Ambiente y Recursos Naturales'),
(32754, 'https://ror.org/036qcm975', 'en', 1, 'https://ror.org/036qcm975 San Francisco Art Institute'),
(32755, 'https://ror.org/036qj5r13', 'en', 1, 'https://ror.org/036qj5r13 Cambridge College'),
(32756, 'https://ror.org/036v5qv16', 'no_lang_code', 1, 'https://ror.org/036v5qv16 General Hospital Asklepieio Voulas'),
(32757, 'https://ror.org/036ve4657', 'en', 1, 'https://ror.org/036ve4657 Building and Construction Authority'),
(32758, 'https://ror.org/036vnbc76', 'ro', 1, 'https://ror.org/036vnbc76 Spitalul Clinic Judetean de Urgentã Craiova'),
(32759, 'https://ror.org/036wp9g51', 'en', 1, 'https://ror.org/036wp9g51 Vienna Wiesenthal Institute for Holocaust Studies'),
(32760, 'https://ror.org/036xb2667', 'en', 1, 'https://ror.org/036xb2667 Ministry of Strategy and Finance ėŒ€ķ•œėÆ¼źµ­ źø°ķšģž¬ģ •ė¶€'),
(32761, 'https://ror.org/036yap806', 'no_lang_code', 1, 'https://ror.org/036yap806 Abera Bioscience (Sweden)'),
(32762, 'https://ror.org/036ymgf08', 'en', 1, 'https://ror.org/036ymgf08 Fuel Cells and Hydrogen'),
(32763, 'https://ror.org/036yv4y78', 'en', 1, 'https://ror.org/036yv4y78 Cogswell Polytechnical College'),
(32764, 'https://ror.org/0370d4798', 'en', 1, 'https://ror.org/0370d4798 Legacy Heritage Fund'),
(32765, 'https://ror.org/0371kdw96', 'en', 1, 'https://ror.org/0371kdw96 The Liverpool Institute for Performing Arts'),
(32766, 'https://ror.org/03731ze76', 'fr', 1, 'https://ror.org/03731ze76 Nouvelles Cliniques Nantaises'),
(32767, 'https://ror.org/03734kr33', 'en', 1, 'https://ror.org/03734kr33 Taiwan Livestock Research Institute ē•œē”¢č©¦é©—ę‰€'),
(32768, 'https://ror.org/0374a5s68', 'en', 1, 'https://ror.org/0374a5s68 Beijing Municipal Health Bureau'),
(32769, 'https://ror.org/0374ebf38', 'en', 1, 'https://ror.org/0374ebf38 FilmOntario'),
(32770, 'https://ror.org/0375gyz30', 'no_lang_code', 1, 'https://ror.org/0375gyz30 Full Spectrum Technologies (United States)'),
(32771, 'https://ror.org/0375vv569', 'da', 1, 'https://ror.org/0375vv569 Hjerteforeningen'),
(32772, 'https://ror.org/0375ygm12', 'no_lang_code', 1, 'https://ror.org/0375ygm12 Constellation Brands (Canada)'),
(32773, 'https://ror.org/0376mq589', 'en', 1, 'https://ror.org/0376mq589 Royal Tyrrell Museum'),
(32774, 'https://ror.org/0379w2016', 'en', 1, 'https://ror.org/0379w2016 Healthwise'),
(32775, 'https://ror.org/037ba3b98', 'no_lang_code', 1, 'https://ror.org/037ba3b98 Corline Systems (Sweden)'),
(32776, 'https://ror.org/037ck9w07', 'no_lang_code', 1, 'https://ror.org/037ck9w07 Flow Control Industries (United States)'),
(32777, 'https://ror.org/037dz3r63', 'en', 1, 'https://ror.org/037dz3r63 UK-India Education and Research Initiative'),
(32778, 'https://ror.org/037ej5648', 'en', 1, 'https://ror.org/037ej5648 Departamento de Transporte de Virginia Occidental DƩpartement des transports de la virginie-occidentale West Virginia Department of Transportation'),
(32779, 'https://ror.org/037na0x96', 'no_lang_code', 1, 'https://ror.org/037na0x96 Kerr Wood Leidal Associates (Canada)'),
(32780, 'https://ror.org/037nbwt68', 'en', 1, 'https://ror.org/037nbwt68 Fulbright Commission'),
(32781, 'https://ror.org/037ncgg21', 'no_lang_code', 1, 'https://ror.org/037ncgg21 Test Devices (United States)'),
(32782, 'https://ror.org/037nx0e70', 'en', 1, 'https://ror.org/037nx0e70 Slovak Research and Development Agency'),
(32783, 'https://ror.org/037qe5327', 'en', 1, 'https://ror.org/037qe5327 Carroll Shelby Foundation'),
(32784, 'https://ror.org/037rzqn07', 'no_lang_code', 1, 'https://ror.org/037rzqn07 FlexEl (United States)'),
(32785, 'https://ror.org/037t16559', 'no_lang_code', 1, 'https://ror.org/037t16559 Nuvotronics (United States)'),
(32786, 'https://ror.org/037tx1q23', 'en', 1, 'https://ror.org/037tx1q23 Pathological Society'),
(32787, 'https://ror.org/037v60n25', 'no_lang_code', 1, 'https://ror.org/037v60n25 Recorded Future (Sweden)'),
(32788, 'https://ror.org/037wdp291', 'no_lang_code', 1, 'https://ror.org/037wdp291 Stone Mountain Technologies (United States)'),
(32789, 'https://ror.org/037xt7q95', 'no_lang_code', 1, 'https://ror.org/037xt7q95 CEIT Consulting (Slovakia)'),
(32790, 'https://ror.org/037y28f85', 'no_lang_code', 1, 'https://ror.org/037y28f85 PreTalen (United States)'),
(32791, 'https://ror.org/0380ffk22', 'no_lang_code', 1, 'https://ror.org/0380ffk22 Karagozian & Case (United States)'),
(32792, 'https://ror.org/0380pyj70', 'no_lang_code', 1, 'https://ror.org/0380pyj70 PAT Industries (United States)'),
(32793, 'https://ror.org/03811dk14', 'no_lang_code', 1, 'https://ror.org/03811dk14 Sherritt (Canada)'),
(32794, 'https://ror.org/0381kee24', 'no_lang_code', 1, 'https://ror.org/0381kee24 MYMIC (United States)'),
(32795, 'https://ror.org/03829z108', 'no', 1, 'https://ror.org/03829z108 Norlandia'),
(32796, 'https://ror.org/0383eqy30', 'no_lang_code', 1, 'https://ror.org/0383eqy30 Exibea (Sweden)'),
(32797, 'https://ror.org/03844ds60', 'en', 1, 'https://ror.org/03844ds60 Irish Cancer Society'),
(32798, 'https://ror.org/03860nf78', 'no_lang_code', 1, 'https://ror.org/03860nf78 SenseGraphics (Sweden)'),
(32799, 'https://ror.org/0388c8g69', 'no_lang_code', 1, 'https://ror.org/0388c8g69 Thalion (Slovakia)'),
(32800, 'https://ror.org/03890hq18', 'no_lang_code', 1, 'https://ror.org/03890hq18 Triton Systems (United States)'),
(32801, 'https://ror.org/03897n412', 'no_lang_code', 1, 'https://ror.org/03897n412 5-D Systems (United States)'),
(32802, 'https://ror.org/0389wyq54', 'no_lang_code', 1, 'https://ror.org/0389wyq54 Aerocrine (Sweden)'),
(32803, 'https://ror.org/038cgyc59', 'en', 1, 'https://ror.org/038cgyc59 Hartwell Foundation'),
(32804, 'https://ror.org/038d4gk82', 'no_lang_code', 1, 'https://ror.org/038d4gk82 MaXentric Technologies (United States)'),
(32805, 'https://ror.org/038djf877', 'en', 1, 'https://ror.org/038djf877 Department of Health Services'),
(32806, 'https://ror.org/038e15474', 'no_lang_code', 1, 'https://ror.org/038e15474 Fabris (Canada)'),
(32807, 'https://ror.org/038fabn80', 'sv', 1, 'https://ror.org/038fabn80 Stiftelsen Marknadstekniskt Centrum'),
(32808, 'https://ror.org/038g1k790', 'en', 1, 'https://ror.org/038g1k790 Thomas Cole Historic House'),
(32809, 'https://ror.org/038ggnx21', 'no_lang_code', 1, 'https://ror.org/038ggnx21 Sytronics (United States)'),
(32810, 'https://ror.org/038h81468', 'no_lang_code', 1, 'https://ror.org/038h81468 ReformTech (Sweden)'),
(32811, 'https://ror.org/038h9a412', 'en', 1, 'https://ror.org/038h9a412 National League of Cities'),
(32812, 'https://ror.org/038j31m11', 'no_lang_code', 1, 'https://ror.org/038j31m11 Essential Research (United States)'),
(32813, 'https://ror.org/038j4hz26', 'en', 1, 'https://ror.org/038j4hz26 Partnership for Advanced Computing in Europe'),
(32814, 'https://ror.org/038k3d331', 'no_lang_code', 1, 'https://ror.org/038k3d331 CAE Solutions (United States)'),
(32815, 'https://ror.org/038kpzv03', 'en', 1, 'https://ror.org/038kpzv03 Retina Vitreous Associates Medical Group'),
(32816, 'https://ror.org/038m4nz41', 'no_lang_code', 1, 'https://ror.org/038m4nz41 Spiritech Advanced Products (United States)'),
(32817, 'https://ror.org/038mg2014', 'en', 1, 'https://ror.org/038mg2014 Maine CITE Coordinating Center'),
(32818, 'https://ror.org/038qb7y28', 'no_lang_code', 1, 'https://ror.org/038qb7y28 Millar Western (Canada)'),
(32819, 'https://ror.org/038rwdb10', 'no_lang_code', 1, 'https://ror.org/038rwdb10 Niowave (United States)'),
(32820, 'https://ror.org/038tfqe91', 'no_lang_code', 1, 'https://ror.org/038tfqe91 FumoPrep (Hungary)'),
(32821, 'https://ror.org/038twcm90', 'no_lang_code', 1, 'https://ror.org/038twcm90 Center For Innovative Food Technology (United States)'),
(32822, 'https://ror.org/038vyt185', 'en', 1, 'https://ror.org/038vyt185 Qatar Cardiovascular Research Center'),
(32823, 'https://ror.org/038xmzj21', 'en', 1, 'https://ror.org/038xmzj21 Shanghai East Hospital'),
(32824, 'https://ror.org/038y74z78', 'no_lang_code', 1, 'https://ror.org/038y74z78 Inkubatorn i BorƄs (Sweden)'),
(32825, 'https://ror.org/038z36w15', 'no_lang_code', 1, 'https://ror.org/038z36w15 Applied EM (United States)'),
(32826, 'https://ror.org/0391xj275', 'no_lang_code', 1, 'https://ror.org/0391xj275 CoreCode International (Sweden)'),
(32827, 'https://ror.org/0392s7a63', 'no_lang_code', 1, 'https://ror.org/0392s7a63 Accelogic (United States)'),
(32828, 'https://ror.org/0392tq432', 'en', 1, 'https://ror.org/0392tq432 National Consortium for Zoonosis Research'),
(32829, 'https://ror.org/039463c38', 'no_lang_code', 1, 'https://ror.org/039463c38 Nalas Engineering Services (United States)'),
(32830, 'https://ror.org/039543c28', 'en', 1, 'https://ror.org/039543c28 St Xavier’s College'),
(32831, 'https://ror.org/0395cym93', 'no_lang_code', 1, 'https://ror.org/0395cym93 Inovati (United States)'),
(32832, 'https://ror.org/039872b94', 'no_lang_code', 1, 'https://ror.org/039872b94 Summit Power Group (United States)'),
(32833, 'https://ror.org/0399xk126', 'en', 1, 'https://ror.org/0399xk126 International Trachoma Initiative'),
(32834, 'https://ror.org/039bq6320', 'no_lang_code', 1, 'https://ror.org/039bq6320 Cellular Materials International (United States)'),
(32835, 'https://ror.org/039c4fg18', 'en', 1, 'https://ror.org/039c4fg18 Gibraltar Museum'),
(32836, 'https://ror.org/039cbfe54', 'no_lang_code', 1, 'https://ror.org/039cbfe54 Invicro (United States)'),
(32837, 'https://ror.org/039d46111', 'no_lang_code', 1, 'https://ror.org/039d46111 Safran (United States)'),
(32838, 'https://ror.org/039d88t66', 'no_lang_code', 1, 'https://ror.org/039d88t66 Sigma Labs (United States)'),
(32839, 'https://ror.org/039d9wr27', 'en', 1, 'https://ror.org/039d9wr27 National Heart Foundation of Australia'),
(32840, 'https://ror.org/039f14703', 'no_lang_code', 1, 'https://ror.org/039f14703 QuantaSpec (United States)'),
(32841, 'https://ror.org/039f5ga37', 'no_lang_code', 1, 'https://ror.org/039f5ga37 Pingtung Hospital'),
(32842, 'https://ror.org/039fe9y64', 'no_lang_code', 1, 'https://ror.org/039fe9y64 Qintec (Slovakia)'),
(32843, 'https://ror.org/039fwba89', 'en', 1, 'https://ror.org/039fwba89 Korea Research Council for Industrial Science and Technology'),
(32844, 'https://ror.org/039fwv620', 'en', 1, 'https://ror.org/039fwv620 Sierra Nevada College'),
(32845, 'https://ror.org/039je3989', 'no_lang_code', 1, 'https://ror.org/039je3989 Dynapower (United States)'),
(32846, 'https://ror.org/039kp3w51', 'no_lang_code', 1, 'https://ror.org/039kp3w51 Rotite Technologies (United Kingdom)'),
(32847, 'https://ror.org/039nsp746', 'no_lang_code', 1, 'https://ror.org/039nsp746 RGS Associates (United States)'),
(32848, 'https://ror.org/039qv4027', 'no_lang_code', 1, 'https://ror.org/039qv4027 Biovica (Sweden)'),
(32849, 'https://ror.org/039rgny44', 'en', 1, 'https://ror.org/039rgny44 Clinton Foundation'),
(32850, 'https://ror.org/039ryse59', 'en', 1, 'https://ror.org/039ryse59 Ichthus College'),
(32851, 'https://ror.org/039shy520', 'en', 1, 'https://ror.org/039shy520 Institut für Hochenergiephysik Institute of High Energy Physics'),
(32852, 'https://ror.org/039tznx53', 'no_lang_code', 1, 'https://ror.org/039tznx53 Ventana Research Corporation (United States)'),
(32853, 'https://ror.org/039xdb007', 'no_lang_code', 1, 'https://ror.org/039xdb007 Optellios (United States)'),
(32854, 'https://ror.org/039zy9n12', 'no_lang_code', 1, 'https://ror.org/039zy9n12 OmegaWare (United States)'),
(32855, 'https://ror.org/03a02sz29', 'en', 1, 'https://ror.org/03a02sz29 Lublin Oncology Center'),
(32856, 'https://ror.org/03a0t9098', 'no_lang_code', 1, 'https://ror.org/03a0t9098 Virtual EM (United States)'),
(32857, 'https://ror.org/03a3x6z66', 'no_lang_code', 1, 'https://ror.org/03a3x6z66 Optimal Synthesis (United States)'),
(32858, 'https://ror.org/03a4a4y95', 'nl', 1, 'https://ror.org/03a4a4y95 Stichting Cultureel Erfgoed Zeeland'),
(32859, 'https://ror.org/03a4k1f37', 'en', 1, 'https://ror.org/03a4k1f37 Kingsborough Community College'),
(32860, 'https://ror.org/03a6gjz18', 'en', 1, 'https://ror.org/03a6gjz18 Society of Hospital Pharmacists of Australia'),
(32861, 'https://ror.org/03a6msw65', 'no_lang_code', 1, 'https://ror.org/03a6msw65 Technology for Energy Corporation (United States)'),
(32862, 'https://ror.org/03a96q734', 'no_lang_code', 1, 'https://ror.org/03a96q734 Syntronic (Sweden)'),
(32863, 'https://ror.org/03aavtt27', 'no_lang_code', 1, 'https://ror.org/03aavtt27 Minerva Systems & Technologies (United States)'),
(32864, 'https://ror.org/03abrt645', 'no_lang_code', 1, 'https://ror.org/03abrt645 DNA Solutions (United States)'),
(32865, 'https://ror.org/03acd6h82', 'no_lang_code', 1, 'https://ror.org/03acd6h82 GeoModel Solar (Slovakia)'),
(32866, 'https://ror.org/03aceaw85', 'en', 1, 'https://ror.org/03aceaw85 Sihanouk Hospital Center of HOPE'),
(32867, 'https://ror.org/03advjx75', 'en', 1, 'https://ror.org/03advjx75 Future Position X'),
(32868, 'https://ror.org/03ae5ch37', 'no_lang_code', 1, 'https://ror.org/03ae5ch37 Toyon (United States)'),
(32869, 'https://ror.org/03aeyg892', 'en', 1, 'https://ror.org/03aeyg892 Japan Science Society'),
(32870, 'https://ror.org/03af2bn79', 'en', 1, 'https://ror.org/03af2bn79 New Brunswick Theological Seminary'),
(32871, 'https://ror.org/03ajebt28', 'no_lang_code', 1, 'https://ror.org/03ajebt28 Smart Skin (Canada)'),
(32872, 'https://ror.org/03ak9vt35', 'en', 1, 'https://ror.org/03ak9vt35 Gemeinnützige Hertie-Stiftung Hertie Foundation'),
(32873, 'https://ror.org/03antpb48', 'en', 1, 'https://ror.org/03antpb48 Stem Cells Australia'),
(32874, 'https://ror.org/03aq7kf18', 'en', 1, 'https://ror.org/03aq7kf18 Second Affiliated Hospital of Xi''an Jiaotong University'),
(32875, 'https://ror.org/03aqvdh64', 'no_lang_code', 1, 'https://ror.org/03aqvdh64 Mecdon (Sweden)'),
(32876, 'https://ror.org/03at87b18', 'en', 1, 'https://ror.org/03at87b18 Saskatchewan Pork Development Board'),
(32877, 'https://ror.org/03atssj74', 'en', 1, 'https://ror.org/03atssj74 Eli and Edythe Broad Foundation'),
(32878, 'https://ror.org/03axpa761', 'hu', 1, 'https://ror.org/03axpa761 Budapest City Archives'),
(32879, 'https://ror.org/03azy6w67', 'en', 1, 'https://ror.org/03azy6w67 Energy Institute Hrvoje Požar'),
(32880, 'https://ror.org/03b0bkp29', 'no_lang_code', 1, 'https://ror.org/03b0bkp29 Vicon (United States)'),
(32881, 'https://ror.org/03b1dn215', 'en', 1, 'https://ror.org/03b1dn215 New York Institute of Art and Design'),
(32882, 'https://ror.org/03b20q825', 'no_lang_code', 1, 'https://ror.org/03b20q825 Baker Engineering (United States)'),
(32883, 'https://ror.org/03b4y8811', 'en', 1, 'https://ror.org/03b4y8811 Cancer Council Tasmania'),
(32884, 'https://ror.org/03b7vrw33', 'fr', 1, 'https://ror.org/03b7vrw33 Conseil RƩgional d''Auvergne'),
(32885, 'https://ror.org/03bc0qh53', 'no_lang_code', 1, 'https://ror.org/03bc0qh53 Space Micro (United States)'),
(32886, 'https://ror.org/03bcppp62', 'no_lang_code', 1, 'https://ror.org/03bcppp62 Quantum Dimension (United States)'),
(32887, 'https://ror.org/03bd0by56', 'no_lang_code', 1, 'https://ror.org/03bd0by56 Kennametal (United States)'),
(32888, 'https://ror.org/03benss35', 'en', 1, 'https://ror.org/03benss35 Alzheimer Society of Canada SociƩtƩ Alzheimer du Canada'),
(32889, 'https://ror.org/03bgwd624', 'en', 1, 'https://ror.org/03bgwd624 Ministry of Foreign Affairs ėŒ€ķ•œėÆ¼źµ­ 외교부'),
(32890, 'https://ror.org/03bh94f16', 'en', 1, 'https://ror.org/03bh94f16 Centre of the Region HanĆ” for Biotechnical and Agricultural Research'),
(32891, 'https://ror.org/03bkq6a07', 'en', 1, 'https://ror.org/03bkq6a07 Research School for Medieval Studies'),
(32892, 'https://ror.org/03bmxpp39', 'no_lang_code', 1, 'https://ror.org/03bmxpp39 Boeing (Canada)'),
(32893, 'https://ror.org/03bnsxq66', 'en', 1, 'https://ror.org/03bnsxq66 Public Works and Government Services Canada Travaux publics et Services gouvernementaux Canada'),
(32894, 'https://ror.org/03bqa6225', 'no_lang_code', 1, 'https://ror.org/03bqa6225 UAV Turbines (United States)'),
(32895, 'https://ror.org/03br03g05', 'no_lang_code', 1, 'https://ror.org/03br03g05 Bakomi'),
(32896, 'https://ror.org/03bsmfz84', 'en', 1, 'https://ror.org/03bsmfz84 Volkswagen Foundation VolkswagenStiftung'),
(32897, 'https://ror.org/03bt48876', 'no_lang_code', 1, 'https://ror.org/03bt48876 Yantaishan Hospital ēƒŸå°å±±åŒ»é™¢'),
(32898, 'https://ror.org/03btg3r19', 'no_lang_code', 1, 'https://ror.org/03btg3r19 MWT Materials (United States)'),
(32899, 'https://ror.org/03bthmz47', 'no_lang_code', 1, 'https://ror.org/03bthmz47 Sedna Digital Solutions (United States)'),
(32900, 'https://ror.org/03bvys615', 'hu', 1, 'https://ror.org/03bvys615 RÔday Gyűjtemény'),
(32901, 'https://ror.org/03bxfwk92', 'no_lang_code', 1, 'https://ror.org/03bxfwk92 Enmesh (Sweden)'),
(32902, 'https://ror.org/03bxtpd68', 'no_lang_code', 1, 'https://ror.org/03bxtpd68 Sigma Tau (Italy)'),
(32903, 'https://ror.org/03bz02915', 'no_lang_code', 1, 'https://ror.org/03bz02915 Infobric (Sweden)'),
(32904, 'https://ror.org/03bznzd25', 'en', 1, 'https://ror.org/03bznzd25 Cambodia National Malaria Center'),
(32905, 'https://ror.org/03c0wvm84', 'no_lang_code', 1, 'https://ror.org/03c0wvm84 OFS (United States)'),
(32906, 'https://ror.org/03c1ky010', 'no_lang_code', 1, 'https://ror.org/03c1ky010 MRT System (Sweden)'),
(32907, 'https://ror.org/03c2x7w83', 'no_lang_code', 1, 'https://ror.org/03c2x7w83 BioLamina (Sweden)'),
(32908, 'https://ror.org/03c5nrv09', 'no_lang_code', 1, 'https://ror.org/03c5nrv09 STAR-H (United States)'),
(32909, 'https://ror.org/03c6c9520', 'en', 1, 'https://ror.org/03c6c9520 Israel Academy of Sciences and Humanities האקדמיה ×”×œ××•×ž×™×Ŗ ×”×™×©×Ø××œ×™×Ŗ למדעים'),
(32910, 'https://ror.org/03c864431', 'en', 1, 'https://ror.org/03c864431 Federation of European Aquaculture Producers'),
(32911, 'https://ror.org/03cahhx41', 'no_lang_code', 1, 'https://ror.org/03cahhx41 CadScan (United Kingdom)'),
(32912, 'https://ror.org/03cb41332', 'no_lang_code', 1, 'https://ror.org/03cb41332 KCF Technologies (United States)'),
(32913, 'https://ror.org/03ce7te88', 'no_lang_code', 1, 'https://ror.org/03ce7te88 Mach I (United States)'),
(32914, 'https://ror.org/03cen5169', 'it', 1, 'https://ror.org/03cen5169 Fondazione Cassa di Risparmio di Modena'),
(32915, 'https://ror.org/03ceqdn81', 'no_lang_code', 1, 'https://ror.org/03ceqdn81 Semerane (United States)'),
(32916, 'https://ror.org/03cfat183', 'en', 1, 'https://ror.org/03cfat183 Fiber Optic Valley'),
(32917, 'https://ror.org/03cgjk195', 'en', 1, 'https://ror.org/03cgjk195 Roche Organ Transplantation Research Foundation'),
(32918, 'https://ror.org/03ck8xc11', 'no_lang_code', 1, 'https://ror.org/03ck8xc11 CDM Smith (United States)'),
(32919, 'https://ror.org/03ckpzr37', 'en', 1, 'https://ror.org/03ckpzr37 State Key Joint Laboratory of Environment Simulation and Pollution Control'),
(32920, 'https://ror.org/03cmqpr17', 'en', 1, 'https://ror.org/03cmqpr17 Affiliated Hospital of Guilin Medical College'),
(32921, 'https://ror.org/03cns3576', 'no_lang_code', 1, 'https://ror.org/03cns3576 BehavioSec (Sweden)'),
(32922, 'https://ror.org/03cnssq44', 'en', 1, 'https://ror.org/03cnssq44 Danish Science Factory'),
(32923, 'https://ror.org/03cpyc314', 'en', 1, 'https://ror.org/03cpyc314 National Research Foundation'),
(32924, 'https://ror.org/03ct0rb34', 'en', 1, 'https://ror.org/03ct0rb34 Michigan Jewish Institute'),
(32925, 'https://ror.org/03cvfxv40', 'en', 1, 'https://ror.org/03cvfxv40 BrightFocus Foundation'),
(32926, 'https://ror.org/03cyq8t52', 'no_lang_code', 1, 'https://ror.org/03cyq8t52 Fluidic Energy (United States)'),
(32927, 'https://ror.org/03czazr10', 'en', 1, 'https://ror.org/03czazr10 Grid Protection Alliance'),
(32928, 'https://ror.org/03d17t865', 'en', 1, 'https://ror.org/03d17t865 Zoos Victoria'),
(32929, 'https://ror.org/03d1tvr44', 'fr', 1, 'https://ror.org/03d1tvr44 ITESCIA'),
(32930, 'https://ror.org/03d3pnq21', 'en', 1, 'https://ror.org/03d3pnq21 Christendom College'),
(32931, 'https://ror.org/03d3r6333', 'no_lang_code', 1, 'https://ror.org/03d3r6333 NeoChemir (Japan) ćƒć‚Ŗć‚±ćƒŸć‚¢'),
(32932, 'https://ror.org/03d7pcc67', 'no_lang_code', 1, 'https://ror.org/03d7pcc67 Oatly (Sweden)'),
(32933, 'https://ror.org/03d8pfr88', 'no_lang_code', 1, 'https://ror.org/03d8pfr88 Optical Sciences Company (United States)'),
(32934, 'https://ror.org/03d9g2g58', 'en', 1, 'https://ror.org/03d9g2g58 American Association of Orthodontists'),
(32935, 'https://ror.org/03dacnf06', 'no_lang_code', 1, 'https://ror.org/03dacnf06 Skinfrared (United States)'),
(32936, 'https://ror.org/03daevf76', 'no_lang_code', 1, 'https://ror.org/03daevf76 Contango Strategies (Canada)'),
(32937, 'https://ror.org/03dfstc27', 'no_lang_code', 1, 'https://ror.org/03dfstc27 Commonwealth Plywood (Canada)'),
(32938, 'https://ror.org/03dgngj22', 'en', 1, 'https://ror.org/03dgngj22 Andover College'),
(32939, 'https://ror.org/03dhrm424', 'en', 1, 'https://ror.org/03dhrm424 Mercy College of Health Sciences'),
(32940, 'https://ror.org/03djma825', 'no_lang_code', 1, 'https://ror.org/03djma825 Analatom (United States)'),
(32941, 'https://ror.org/03djmvy73', 'en', 1, 'https://ror.org/03djmvy73 Mwanza Intervention Trials Unit'),
(32942, 'https://ror.org/03dr0ny42', 'no_lang_code', 1, 'https://ror.org/03dr0ny42 NovaCell Technology (South Korea) ė…øė°”ģ…€ķ…Œķ¬ė†€ė”œģ§€'),
(32943, 'https://ror.org/03dwefb78', 'en', 1, 'https://ror.org/03dwefb78 Minnesota Department of Employment and Economic Development'),
(32944, 'https://ror.org/03dx9c487', 'en', 1, 'https://ror.org/03dx9c487 Supreme Commission for Tourism and Antiquities'),
(32945, 'https://ror.org/03dy4aq19', 'en', 1, 'https://ror.org/03dy4aq19 James S. McDonnell Foundation'),
(32946, 'https://ror.org/03e0d1j33', 'en', 1, 'https://ror.org/03e0d1j33 Raptor Protection of Slovakia'),
(32947, 'https://ror.org/03e21eb82', 'no_lang_code', 1, 'https://ror.org/03e21eb82 Eriez (United States)'),
(32948, 'https://ror.org/03e26cs04', 'no_lang_code', 1, 'https://ror.org/03e26cs04 NumerEx (United States)'),
(32949, 'https://ror.org/03e2b0r58', 'no_lang_code', 1, 'https://ror.org/03e2b0r58 Critical Technologies (United States)'),
(32950, 'https://ror.org/03e2zdg56', 'no_lang_code', 1, 'https://ror.org/03e2zdg56 Elcom (Slovakia)'),
(32951, 'https://ror.org/03e48bt75', 'no_lang_code', 1, 'https://ror.org/03e48bt75 Heat Trace (United Kingdom)'),
(32952, 'https://ror.org/03e5r3h78', 'no_lang_code', 1, 'https://ror.org/03e5r3h78 Cogenra Solar (United States)'),
(32953, 'https://ror.org/03e673w40', 'no_lang_code', 1, 'https://ror.org/03e673w40 CybAero (Sweden)'),
(32954, 'https://ror.org/03e7ywm06', 'no_lang_code', 1, 'https://ror.org/03e7ywm06 Magnus Chemicals (Canada) Produits Chimiques Magnus'),
(32955, 'https://ror.org/03e835n43', 'no_lang_code', 1, 'https://ror.org/03e835n43 Avigilon (United States)'),
(32956, 'https://ror.org/03e8kpv69', 'no_lang_code', 1, 'https://ror.org/03e8kpv69 XCounter (Sweden)'),
(32957, 'https://ror.org/03e970380', 'no_lang_code', 1, 'https://ror.org/03e970380 Akela (United States)'),
(32958, 'https://ror.org/03earrv48', 'no_lang_code', 1, 'https://ror.org/03earrv48 C3I (United States)'),
(32959, 'https://ror.org/03ebk0c60', 'en', 1, 'https://ror.org/03ebk0c60 Suzhou Research Institute'),
(32960, 'https://ror.org/03edyst18', 'en', 1, 'https://ror.org/03edyst18 Museum of Applied Arts'),
(32961, 'https://ror.org/03eecgp81', 'en', 1, 'https://ror.org/03eecgp81 Office of Under Secretary of Energy for Science'),
(32962, 'https://ror.org/03ef4eh86', 'no_lang_code', 1, 'https://ror.org/03ef4eh86 KPC Group (Netherlands)'),
(32963, 'https://ror.org/03eg9e545', 'no_lang_code', 1, 'https://ror.org/03eg9e545 Airwatergreen (Sweden)'),
(32964, 'https://ror.org/03egaj678', 'es', 1, 'https://ror.org/03egaj678 Agencia Nacional de Investigación e Innovación'),
(32965, 'https://ror.org/03ejgvq45', 'no_lang_code', 1, 'https://ror.org/03ejgvq45 ReTreck (Sweden)'),
(32966, 'https://ror.org/03ejqwd09', 'en', 1, 'https://ror.org/03ejqwd09 Diabetes Foundation'),
(32967, 'https://ror.org/03ek62e72', 'en', 1, 'https://ror.org/03ek62e72 Public Health Agency'),
(32968, 'https://ror.org/03ekq2173', 'en', 1, 'https://ror.org/03ekq2173 Camden and Islington NHS Foundation Trust'),
(32969, 'https://ror.org/03ekv5207', 'no_lang_code', 1, 'https://ror.org/03ekv5207 Acumentrics (United States)'),
(32970, 'https://ror.org/03ekxyc66', 'no_lang_code', 1, 'https://ror.org/03ekxyc66 Apollo Enterprise Solutions (United States)'),
(32971, 'https://ror.org/03encks65', 'no_lang_code', 1, 'https://ror.org/03encks65 Microwave Bonding Instruments (United States)'),
(32972, 'https://ror.org/03epg4e71', 'en', 1, 'https://ror.org/03epg4e71 Esperantic Studies Foundation'),
(32973, 'https://ror.org/03es0vc41', 'no_lang_code', 1, 'https://ror.org/03es0vc41 FiberTech Optica (Canada)'),
(32974, 'https://ror.org/03ev2fp74', 'no_lang_code', 1, 'https://ror.org/03ev2fp74 Dairy Innovation Australia (Australia)'),
(32975, 'https://ror.org/03ez0dn33', 'no_lang_code', 1, 'https://ror.org/03ez0dn33 Maryland Aerospace (United States)'),
(32976, 'https://ror.org/03f0wr475', 'no_lang_code', 1, 'https://ror.org/03f0wr475 Veritune (United States)'),
(32977, 'https://ror.org/03f1en951', 'en', 1, 'https://ror.org/03f1en951 Delfos Hospital'),
(32978, 'https://ror.org/03f1mqp12', 'no_lang_code', 1, 'https://ror.org/03f1mqp12 VCORE Solutions (United States)'),
(32979, 'https://ror.org/03f1xkz75', 'en', 1, 'https://ror.org/03f1xkz75 Bluefield State College'),
(32980, 'https://ror.org/03f2xnj73', 'es', 1, 'https://ror.org/03f2xnj73 Consejo de Ciencia y TecnologĆ­a del Estado de Tabasco'),
(32981, 'https://ror.org/03f2xpf83', 'no_lang_code', 1, 'https://ror.org/03f2xpf83 Vesta Sciences (United States)'),
(32982, 'https://ror.org/03f455d91', 'en', 1, 'https://ror.org/03f455d91 School Nutrition Association'),
(32983, 'https://ror.org/03f4rhz75', 'no_lang_code', 1, 'https://ror.org/03f4rhz75 Metamaterial Technologies (Canada)'),
(32984, 'https://ror.org/03f4vz666', 'no_lang_code', 1, 'https://ror.org/03f4vz666 Vusapl (Slovakia)'),
(32985, 'https://ror.org/03f516154', 'en', 1, 'https://ror.org/03f516154 Rasmussen College');
INSERT INTO `rors` VALUES
(32986, 'https://ror.org/03f5eqm42', 'en', 1, 'https://ror.org/03f5eqm42 NIHR Nottingham Hearing Biomedical Research Unit'),
(32987, 'https://ror.org/03f6tf726', 'en', 1, 'https://ror.org/03f6tf726 Initiative for Automotive Manufacturing Innovation'),
(32988, 'https://ror.org/03f89nr30', 'en', 1, 'https://ror.org/03f89nr30 Sensory Access Foundation'),
(32989, 'https://ror.org/03f9gsg45', 'en', 1, 'https://ror.org/03f9gsg45 Beef Cattle Research Council'),
(32990, 'https://ror.org/03f9nc143', 'en', 1, 'https://ror.org/03f9nc143 Skolkovo Institute of Science and Technology Дколковский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ науки Šø технологий'),
(32991, 'https://ror.org/03f9wqe45', 'en', 1, 'https://ror.org/03f9wqe45 Vasculitis Foundation'),
(32992, 'https://ror.org/03fa61n31', 'no_lang_code', 1, 'https://ror.org/03fa61n31 PR & Company (United States)'),
(32993, 'https://ror.org/03fafnr39', 'en', 1, 'https://ror.org/03fafnr39 Transport Accident Commission'),
(32994, 'https://ror.org/03fb0b548', 'en', 1, 'https://ror.org/03fb0b548 Austrian State Archives Ɩsterreichisches Staatsarchiv'),
(32995, 'https://ror.org/03fcp6428', 'no_lang_code', 1, 'https://ror.org/03fcp6428 Low Vision International (Sweden)'),
(32996, 'https://ror.org/03fcvqn57', 'en', 1, 'https://ror.org/03fcvqn57 Graham Foundation'),
(32997, 'https://ror.org/03fffdr10', 'no_lang_code', 1, 'https://ror.org/03fffdr10 3D Technology Laboratories (United States)'),
(32998, 'https://ror.org/03fhmzh26', 'no_lang_code', 1, 'https://ror.org/03fhmzh26 Mate (Slovakia)'),
(32999, 'https://ror.org/03fjcpp91', 'no_lang_code', 1, 'https://ror.org/03fjcpp91 Ariterm (Sweden)'),
(33000, 'https://ror.org/03fkfs504', 'en', 1, 'https://ror.org/03fkfs504 LuleƄ Municipality'),
(33001, 'https://ror.org/03fn5kb59', 'no_lang_code', 1, 'https://ror.org/03fn5kb59 PresenceLearning (United States)'),
(33002, 'https://ror.org/03fq30e75', 'no_lang_code', 1, 'https://ror.org/03fq30e75 Aldevron (United States)'),
(33003, 'https://ror.org/03fqmv203', 'no_lang_code', 1, 'https://ror.org/03fqmv203 Starmonde Publishing Group'),
(33004, 'https://ror.org/03ftf4376', 'no_lang_code', 1, 'https://ror.org/03ftf4376 Ammono (Poland)'),
(33005, 'https://ror.org/03ftv5p16', 'no_lang_code', 1, 'https://ror.org/03ftv5p16 Newton Energy Group (United States)'),
(33006, 'https://ror.org/03fvqqb90', 'no_lang_code', 1, 'https://ror.org/03fvqqb90 AltheaDx (United States)'),
(33007, 'https://ror.org/03fwraz06', 'no_lang_code', 1, 'https://ror.org/03fwraz06 Applied Technologies (United States)'),
(33008, 'https://ror.org/03fx0xk26', 'en', 1, 'https://ror.org/03fx0xk26 The Jane Goodall Institute'),
(33009, 'https://ror.org/03fytgw96', 'no_lang_code', 1, 'https://ror.org/03fytgw96 Cegteszt (Hungary)'),
(33010, 'https://ror.org/03fz1e596', 'no_lang_code', 1, 'https://ror.org/03fz1e596 Radiant Research (United States)'),
(33011, 'https://ror.org/03g03dn68', 'en', 1, 'https://ror.org/03g03dn68 Green Technology Center'),
(33012, 'https://ror.org/03g0ec482', 'no_lang_code', 1, 'https://ror.org/03g0ec482 NAL Research (United States)'),
(33013, 'https://ror.org/03g1ghk63', 'no_lang_code', 1, 'https://ror.org/03g1ghk63 RCT Systems (United States)'),
(33014, 'https://ror.org/03g37tj89', 'no_lang_code', 1, 'https://ror.org/03g37tj89 Premune (Sweden)'),
(33015, 'https://ror.org/03g38ta48', 'en', 1, 'https://ror.org/03g38ta48 Council for Learning Disabilities'),
(33016, 'https://ror.org/03g39em38', 'hu', 1, 'https://ror.org/03g39em38 Vermes Miklós OrszÔgos Fizikus TehetségÔpoló és Kutató AlapítvÔny'),
(33017, 'https://ror.org/03g8hqd12', 'no_lang_code', 1, 'https://ror.org/03g8hqd12 Amica Science Eeig (United Kingdom)'),
(33018, 'https://ror.org/03g8y8161', 'no_lang_code', 1, 'https://ror.org/03g8y8161 Galois (United States)'),
(33019, 'https://ror.org/03gappd85', 'en', 1, 'https://ror.org/03gappd85 Mount Aloysius College'),
(33020, 'https://ror.org/03gby7r56', 'no_lang_code', 1, 'https://ror.org/03gby7r56 Artium Technologies (United States)'),
(33021, 'https://ror.org/03gc99a64', 'no_lang_code', 1, 'https://ror.org/03gc99a64 CF Technologies (United States)'),
(33022, 'https://ror.org/03gcvf773', 'no_lang_code', 1, 'https://ror.org/03gcvf773 Decision Sciences (United States)'),
(33023, 'https://ror.org/03gddmx06', 'en', 1, 'https://ror.org/03gddmx06 Calmette Hospital HƓpital calmette'),
(33024, 'https://ror.org/03gk11k54', 'en', 1, 'https://ror.org/03gk11k54 American Water Works Association'),
(33025, 'https://ror.org/03gkadw36', 'no_lang_code', 1, 'https://ror.org/03gkadw36 Sappasithiprasong Hospital'),
(33026, 'https://ror.org/03gne5057', 'en', 1, 'https://ror.org/03gne5057 Genome British Columbia'),
(33027, 'https://ror.org/03gpwsk37', 'no_lang_code', 1, 'https://ror.org/03gpwsk37 DSPlogic (United States)'),
(33028, 'https://ror.org/03gsrqx39', 'no_lang_code', 1, 'https://ror.org/03gsrqx39 Premium Brands Holdings (Canada)'),
(33029, 'https://ror.org/03gwgww50', 'no_lang_code', 1, 'https://ror.org/03gwgww50 Rolls-Royce (United States)'),
(33030, 'https://ror.org/03gx28593', 'en', 1, 'https://ror.org/03gx28593 Dutch Language Union Nederlandse Taalunie'),
(33031, 'https://ror.org/03gyay052', 'sv', 1, 'https://ror.org/03gyay052 Fƶrbundet Unga Forskare'),
(33032, 'https://ror.org/03gzf0d03', 'en', 1, 'https://ror.org/03gzf0d03 Alabama Commission on Higher Education'),
(33033, 'https://ror.org/03h1r4p85', 'no_lang_code', 1, 'https://ror.org/03h1r4p85 Film Odyssey (United States)'),
(33034, 'https://ror.org/03h4e4c54', 'en', 1, 'https://ror.org/03h4e4c54 Model Animal Research Center'),
(33035, 'https://ror.org/03h5fme53', 'no_lang_code', 1, 'https://ror.org/03h5fme53 Nuvera Biosciences (United States)'),
(33036, 'https://ror.org/03h6x6x11', 'no_lang_code', 1, 'https://ror.org/03h6x6x11 Curtiss-Wright (United States)'),
(33037, 'https://ror.org/03h71cc02', 'fr', 1, 'https://ror.org/03h71cc02 Bouthillette Parizeau'),
(33038, 'https://ror.org/03h8ck063', 'no_lang_code', 1, 'https://ror.org/03h8ck063 Virginia Diodes (United States)'),
(33039, 'https://ror.org/03ham7h73', 'no_lang_code', 1, 'https://ror.org/03ham7h73 Silicon Designs (United States)'),
(33040, 'https://ror.org/03hgpat49', 'no_lang_code', 1, 'https://ror.org/03hgpat49 Kalesnikoff Lumber (Canada)'),
(33041, 'https://ror.org/03hjnwv43', 'en', 1, 'https://ror.org/03hjnwv43 Arkansas Space Grant Consortium'),
(33042, 'https://ror.org/03hkh9419', 'no_lang_code', 1, 'https://ror.org/03hkh9419 China Southern Power Grid (China)'),
(33043, 'https://ror.org/03hkwwc75', 'no_lang_code', 1, 'https://ror.org/03hkwwc75 IPM Engineering (Slovakia)'),
(33044, 'https://ror.org/03hkx5x33', 'no_lang_code', 1, 'https://ror.org/03hkx5x33 Ormond (United States)'),
(33045, 'https://ror.org/03hp51383', 'en', 1, 'https://ror.org/03hp51383 Center for Ecoliteracy'),
(33046, 'https://ror.org/03hq8dt79', 'no_lang_code', 1, 'https://ror.org/03hq8dt79 Materium Innovations (Canada)'),
(33047, 'https://ror.org/03hrc3v54', 'no_lang_code', 1, 'https://ror.org/03hrc3v54 Agnik (United States)'),
(33048, 'https://ror.org/03ht43x94', 'no_lang_code', 1, 'https://ror.org/03ht43x94 VIStology (United States)'),
(33049, 'https://ror.org/03htcwb41', 'no_lang_code', 1, 'https://ror.org/03htcwb41 Metal Oxide Technologies (United States)'),
(33050, 'https://ror.org/03htdje54', 'no_lang_code', 1, 'https://ror.org/03htdje54 Oerlikon (United Kingdom)'),
(33051, 'https://ror.org/03htnqd27', 'sv', 1, 'https://ror.org/03htnqd27 ƅke Wibergs Stiftelse'),
(33052, 'https://ror.org/03htsh285', 'no_lang_code', 1, 'https://ror.org/03htsh285 Sigma³ (United States)'),
(33053, 'https://ror.org/03hv2xm40', 'no_lang_code', 1, 'https://ror.org/03hv2xm40 Argtec (United States)'),
(33054, 'https://ror.org/03hxbcz95', 'no_lang_code', 1, 'https://ror.org/03hxbcz95 Airec (Sweden)'),
(33055, 'https://ror.org/03hxk2a16', 'no_lang_code', 1, 'https://ror.org/03hxk2a16 BHP (Canada)'),
(33056, 'https://ror.org/03hxrmn64', 'en', 1, 'https://ror.org/03hxrmn64 Institute for the Study of Education and Human Development'),
(33057, 'https://ror.org/03hz8wd80', 'en', 1, 'https://ror.org/03hz8wd80 Lundbeck Foundation'),
(33058, 'https://ror.org/03hzbee62', 'no_lang_code', 1, 'https://ror.org/03hzbee62 Symvionics (United States)'),
(33059, 'https://ror.org/03j2mew82', 'en', 1, 'https://ror.org/03j2mew82 Jinan Stomatological Hospital ęµŽå—åø‚å£č…”åŒ»é™¢'),
(33060, 'https://ror.org/03j35d806', 'no_lang_code', 1, 'https://ror.org/03j35d806 Advanced Oxygen Technologies (United States)'),
(33061, 'https://ror.org/03j4sms74', 'en', 1, 'https://ror.org/03j4sms74 Alberta Farm Animal Care Association'),
(33062, 'https://ror.org/03j5jkz79', 'en', 1, 'https://ror.org/03j5jkz79 Jiangxi Mental Health Center'),
(33063, 'https://ror.org/03j68qs29', 'no_lang_code', 1, 'https://ror.org/03j68qs29 Qualtech Systems Incorporation (United States)'),
(33064, 'https://ror.org/03j7gdq44', 'no_lang_code', 1, 'https://ror.org/03j7gdq44 Aqua-Q (Sweden)'),
(33065, 'https://ror.org/03j7vt284', 'no_lang_code', 1, 'https://ror.org/03j7vt284 Physics, Materials and Applied Mathematics Research (United States)'),
(33066, 'https://ror.org/03jb0m794', 'no_lang_code', 1, 'https://ror.org/03jb0m794 SciTec (United States)'),
(33067, 'https://ror.org/03jbr4b58', 'no_lang_code', 1, 'https://ror.org/03jbr4b58 Munktell Science Park (Sweden)'),
(33068, 'https://ror.org/03jbxjn08', 'en', 1, 'https://ror.org/03jbxjn08 BiodƓme de MontrƩal Montreal Biodome'),
(33069, 'https://ror.org/03jbyh296', 'no_lang_code', 1, 'https://ror.org/03jbyh296 Left Hand Design (United States)'),
(33070, 'https://ror.org/03jc1ps31', 'no_lang_code', 1, 'https://ror.org/03jc1ps31 Exide Technologies (United States)'),
(33071, 'https://ror.org/03jcj5d12', 'no_lang_code', 1, 'https://ror.org/03jcj5d12 Fortis Flt. Lt. Rajan Dhall Hospital'),
(33072, 'https://ror.org/03jcmr522', 'no_lang_code', 1, 'https://ror.org/03jcmr522 re8 Bioplastics (Sweden)'),
(33073, 'https://ror.org/03jes3672', 'hu', 1, 'https://ror.org/03jes3672 Informatikai, TƔvkƶzlƩsi Ʃs Elektronikai VƔllalkozƔsok SzƶvetsƩge'),
(33074, 'https://ror.org/03jfjvh87', 'en', 1, 'https://ror.org/03jfjvh87 Health Promotion Agency'),
(33075, 'https://ror.org/03jgkwp62', 'no_lang_code', 1, 'https://ror.org/03jgkwp62 Electrical Distribution Design (United States)'),
(33076, 'https://ror.org/03jhz9k05', 'en', 1, 'https://ror.org/03jhz9k05 Mission to Save the Helpless'),
(33077, 'https://ror.org/03jkv2r60', 'no_lang_code', 1, 'https://ror.org/03jkv2r60 Pressure BioSciences (United States)'),
(33078, 'https://ror.org/03jn2ja08', 'no_lang_code', 1, 'https://ror.org/03jn2ja08 Xperi (United States)'),
(33079, 'https://ror.org/03jp5g380', 'en', 1, 'https://ror.org/03jp5g380 Agence de promotion Ʃconomique du Canada atlantique Atlantic Canada Opportunities Agency'),
(33080, 'https://ror.org/03jqyh750', 'no_lang_code', 1, 'https://ror.org/03jqyh750 IDEX Corporation (United States)'),
(33081, 'https://ror.org/03jsnw290', 'en', 1, 'https://ror.org/03jsnw290 Australian College of Nursing'),
(33082, 'https://ror.org/03jst3522', 'no_lang_code', 1, 'https://ror.org/03jst3522 Fulcrum Corporation (United States)'),
(33083, 'https://ror.org/03jvnsg56', 'no_lang_code', 1, 'https://ror.org/03jvnsg56 Saplo (Sweden)'),
(33084, 'https://ror.org/03jwrz939', 'en', 1, 'https://ror.org/03jwrz939 Biomathematics and Statistics Scotland'),
(33085, 'https://ror.org/03k09ka51', 'en', 1, 'https://ror.org/03k09ka51 Institute for Financial Research'),
(33086, 'https://ror.org/03k1e3764', 'en', 1, 'https://ror.org/03k1e3764 American Physical Therapy Association'),
(33087, 'https://ror.org/03k1vma03', 'no_lang_code', 1, 'https://ror.org/03k1vma03 Energetic Materials and Products Incorporation (United States)'),
(33088, 'https://ror.org/03k4ert93', 'no_lang_code', 1, 'https://ror.org/03k4ert93 Googol (Sweden)'),
(33089, 'https://ror.org/03k5d2j20', 'no_lang_code', 1, 'https://ror.org/03k5d2j20 Balassi Kiadó (Hungary)'),
(33090, 'https://ror.org/03k5mtb95', 'de', 1, 'https://ror.org/03k5mtb95 Archiv der Erzdiƶzese Salzburg'),
(33091, 'https://ror.org/03k5xes38', 'en', 1, 'https://ror.org/03k5xes38 Data Storage Institute'),
(33092, 'https://ror.org/03k64vf14', 'no_lang_code', 1, 'https://ror.org/03k64vf14 WW Technology Group (United States)'),
(33093, 'https://ror.org/03k8x7365', 'en', 1, 'https://ror.org/03k8x7365 American Skin Association'),
(33094, 'https://ror.org/03kcmdr33', 'en', 1, 'https://ror.org/03kcmdr33 Susan G. Komen Wyoming'),
(33095, 'https://ror.org/03kcnwv71', 'no_lang_code', 1, 'https://ror.org/03kcnwv71 Bjƶrkemar Construction & Consulting (Sweden)'),
(33096, 'https://ror.org/03ke6rf22', 'en', 1, 'https://ror.org/03ke6rf22 NIHR Leicester Cardiovascular Biomedical Research Unit'),
(33097, 'https://ror.org/03kes6q06', 'no_lang_code', 1, 'https://ror.org/03kes6q06 Ludlum Measurements (United States)'),
(33098, 'https://ror.org/03kfnwp54', 'en', 1, 'https://ror.org/03kfnwp54 Bernstein Center for Computational Neuroscience Tübingen'),
(33099, 'https://ror.org/03kgcsq08', 'no_lang_code', 1, 'https://ror.org/03kgcsq08 China State Construction Engineering (China) äø­å›½å»ŗē­‘č„æå—č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(33100, 'https://ror.org/03kh18j96', 'no_lang_code', 1, 'https://ror.org/03kh18j96 Advanced Dynamics (United States)'),
(33101, 'https://ror.org/03kk0s825', 'pt', 1, 'https://ror.org/03kk0s825 Fundação Carlos Chagas Filho de Amparo à Pesquisa do Estado do Rio de Janeiro'),
(33102, 'https://ror.org/03kmh7v63', 'en', 1, 'https://ror.org/03kmh7v63 Virginia Department for Aging and Rehabilitative Services'),
(33103, 'https://ror.org/03kq24308', 'en', 1, 'https://ror.org/03kq24308 NHS Ayrshire and Arran'),
(33104, 'https://ror.org/03kqbjd86', 'en', 1, 'https://ror.org/03kqbjd86 Plastics Recyclers Europe'),
(33105, 'https://ror.org/03kqv8w58', 'no_lang_code', 1, 'https://ror.org/03kqv8w58 Peregrine Diamonds (Canada)'),
(33106, 'https://ror.org/03krk4x43', 'no_lang_code', 1, 'https://ror.org/03krk4x43 Propulsion Science and Technology (United States)'),
(33107, 'https://ror.org/03krqra54', 'en', 1, 'https://ror.org/03krqra54 Wisconsin Department of Workforce Development'),
(33108, 'https://ror.org/03krz3n62', 'en', 1, 'https://ror.org/03krz3n62 Canadian Cattlemen''s Association'),
(33109, 'https://ror.org/03ks2qn81', 'no_lang_code', 1, 'https://ror.org/03ks2qn81 Sioen Industries (Belgium)'),
(33110, 'https://ror.org/03ksgnr33', 'en', 1, 'https://ror.org/03ksgnr33 SwedenBIO'),
(33111, 'https://ror.org/03ktab054', 'fr', 1, 'https://ror.org/03ktab054 ConfƩrence RƩgionale des EluEs du Bas-Saint-Laurent'),
(33112, 'https://ror.org/03kv72t22', 'no_lang_code', 1, 'https://ror.org/03kv72t22 Simpson Weather Associates (United States)'),
(33113, 'https://ror.org/03kvh2f84', 'en', 1, 'https://ror.org/03kvh2f84 National Office of Mines'),
(33114, 'https://ror.org/03kx2pj14', 'en', 1, 'https://ror.org/03kx2pj14 Royal Society of Edinburgh'),
(33115, 'https://ror.org/03ky42c33', 'en', 1, 'https://ror.org/03ky42c33 Taichung Hospital'),
(33116, 'https://ror.org/03kyjez48', 'no_lang_code', 1, 'https://ror.org/03kyjez48 Adelan (United Kingdom)'),
(33117, 'https://ror.org/03kz6k786', 'no_lang_code', 1, 'https://ror.org/03kz6k786 The Technology Partnership (United States)'),
(33118, 'https://ror.org/03m099247', 'no_lang_code', 1, 'https://ror.org/03m099247 Proximion (Sweden)'),
(33119, 'https://ror.org/03m27ps35', 'no_lang_code', 1, 'https://ror.org/03m27ps35 Applied Pulsed Power (United States)'),
(33120, 'https://ror.org/03m3hse57', 'en', 1, 'https://ror.org/03m3hse57 Department of Environment, Land, Water and Planning'),
(33121, 'https://ror.org/03m41f504', 'no_lang_code', 1, 'https://ror.org/03m41f504 Basic Commerce and Industries (United States)'),
(33122, 'https://ror.org/03m4h9428', 'no_lang_code', 1, 'https://ror.org/03m4h9428 Defense Research Associates (United States)'),
(33123, 'https://ror.org/03m51nf34', 'en', 1, 'https://ror.org/03m51nf34 NIHR Barts Cardiovascular Biomedical Research Unit'),
(33124, 'https://ror.org/03m6exj18', 'no_lang_code', 1, 'https://ror.org/03m6exj18 Msm Group (Slovakia)'),
(33125, 'https://ror.org/03mb73f47', 'no_lang_code', 1, 'https://ror.org/03mb73f47 TVN Systems (United States)'),
(33126, 'https://ror.org/03mc42j92', 'no_lang_code', 1, 'https://ror.org/03mc42j92 Deployable Space Systems (United States)'),
(33127, 'https://ror.org/03mdeq638', 'en', 1, 'https://ror.org/03mdeq638 University of Natural Medicine'),
(33128, 'https://ror.org/03mj2b997', 'no_lang_code', 1, 'https://ror.org/03mj2b997 Hutchinson (Canada)'),
(33129, 'https://ror.org/03mp67a46', 'en', 1, 'https://ror.org/03mp67a46 Centre des Technologies du Gaz Naturel Natural Gas Technologies Centre'),
(33130, 'https://ror.org/03mw3xk75', 'no_lang_code', 1, 'https://ror.org/03mw3xk75 Adaptive Methods (United States)'),
(33131, 'https://ror.org/03mynna02', 'es', 1, 'https://ror.org/03mynna02 Centre Nacional d''Anàlisi Genòmica Centro Nacional de AnÔlisis Genómico'),
(33132, 'https://ror.org/03myqtf56', 'es', 1, 'https://ror.org/03myqtf56 Programa Iberoamericano de Ciencia y TecnologĆ­a para el Desarrollo'),
(33133, 'https://ror.org/03n0yn137', 'no_lang_code', 1, 'https://ror.org/03n0yn137 X-Fab (United States)'),
(33134, 'https://ror.org/03n17tr67', 'no_lang_code', 1, 'https://ror.org/03n17tr67 F. MƩnard (Canada)'),
(33135, 'https://ror.org/03n3q7643', 'no_lang_code', 1, 'https://ror.org/03n3q7643 SensorMetrix (United States)'),
(33136, 'https://ror.org/03n3qwf37', 'en', 1, 'https://ror.org/03n3qwf37 Third People''s Hospital of Huzhou'),
(33137, 'https://ror.org/03n51vw80', 'en', 1, 'https://ror.org/03n51vw80 Croatian Science Foundation'),
(33138, 'https://ror.org/03n5g6138', 'en', 1, 'https://ror.org/03n5g6138 Digital Catapult'),
(33139, 'https://ror.org/03n6w3476', 'no_lang_code', 1, 'https://ror.org/03n6w3476 CLC (Italy)'),
(33140, 'https://ror.org/03n7hz788', 'no_lang_code', 1, 'https://ror.org/03n7hz788 GoalArt (Sweden)'),
(33141, 'https://ror.org/03n8at419', 'no_lang_code', 1, 'https://ror.org/03n8at419 Monitor Coatings (United Kingdom)'),
(33142, 'https://ror.org/03n8zwa93', 'no_lang_code', 1, 'https://ror.org/03n8zwa93 Galorath (United States)'),
(33143, 'https://ror.org/03n9v8v45', 'en', 1, 'https://ror.org/03n9v8v45 Community Services for Autistic Adults and Children'),
(33144, 'https://ror.org/03napcw37', 'en', 1, 'https://ror.org/03napcw37 Institute of Semiconductor Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики ŠæŠ¾Š»ŃƒŠæŃ€Š¾Š²Š¾Š“Š½ŠøŠŗŠ¾Š² им. А.Š’. Ржанова Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(33145, 'https://ror.org/03nawc604', 'en', 1, 'https://ror.org/03nawc604 TNO Management Consultants'),
(33146, 'https://ror.org/03nb8cd76', 'en', 1, 'https://ror.org/03nb8cd76 Shanghai Chenshan Plant Science Research Center äøŠęµ·č¾°å±±ę¤ē‰©ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(33147, 'https://ror.org/03ne2zw20', 'en', 1, 'https://ror.org/03ne2zw20 International Union of Pure and Applied Chemistry'),
(33148, 'https://ror.org/03nfexg07', 'fr', 1, 'https://ror.org/03nfexg07 Institut National de SantƩ Publique'),
(33149, 'https://ror.org/03ngd3730', 'no_lang_code', 1, 'https://ror.org/03ngd3730 Mobergs (Sweden)'),
(33150, 'https://ror.org/03nh07n18', 'en', 1, 'https://ror.org/03nh07n18 Center for the Study of Issues in Public Mental Health'),
(33151, 'https://ror.org/03nhjjj32', 'en', 1, 'https://ror.org/03nhjjj32 Webster Vienna Private University'),
(33152, 'https://ror.org/03nhk5x18', 'no_lang_code', 1, 'https://ror.org/03nhk5x18 StratEdge (United States)'),
(33153, 'https://ror.org/03nk3sc73', 'nl', 1, 'https://ror.org/03nk3sc73 Bonaventuracollege'),
(33154, 'https://ror.org/03npats33', 'en', 1, 'https://ror.org/03npats33 Blue Ventures'),
(33155, 'https://ror.org/03nqxn280', 'en', 1, 'https://ror.org/03nqxn280 Christian Aid'),
(33156, 'https://ror.org/03nscdm67', 'no_lang_code', 1, 'https://ror.org/03nscdm67 OptiCall Software (Sweden)'),
(33157, 'https://ror.org/03nt1ca89', 'en', 1, 'https://ror.org/03nt1ca89 Maritime and Port Authority of Singapore'),
(33158, 'https://ror.org/03ntprd85', 'en', 1, 'https://ror.org/03ntprd85 Sir Jules Thorn Charitable Trust'),
(33159, 'https://ror.org/03nxmmd82', 'no_lang_code', 1, 'https://ror.org/03nxmmd82 Paragon Space Development Corporation (United States)'),
(33160, 'https://ror.org/03nz4ge59', 'no_lang_code', 1, 'https://ror.org/03nz4ge59 Global Seawater Extraction Technologies (United States)'),
(33161, 'https://ror.org/03p0jv517', 'en', 1, 'https://ror.org/03p0jv517 Eugene Research Institute'),
(33162, 'https://ror.org/03p2em878', 'no_lang_code', 1, 'https://ror.org/03p2em878 UQM Technologies (United States)'),
(33163, 'https://ror.org/03p31hk68', 'en', 1, 'https://ror.org/03p31hk68 Shanghai Traditional Chinese Medicine Hospital'),
(33164, 'https://ror.org/03p3fax91', 'no_lang_code', 1, 'https://ror.org/03p3fax91 Caerus Molecular Diagnostics (United States)'),
(33165, 'https://ror.org/03p641z80', 'en', 1, 'https://ror.org/03p641z80 Prostate Cancer Canada'),
(33166, 'https://ror.org/03p65m515', 'en', 1, 'https://ror.org/03p65m515 New York Consortium in Evolutionary Primatology'),
(33167, 'https://ror.org/03p9d3z47', 'en', 1, 'https://ror.org/03p9d3z47 American Breast Cancer Foundation'),
(33168, 'https://ror.org/03pbzwf28', 'no_lang_code', 1, 'https://ror.org/03pbzwf28 Tellabs (United States)'),
(33169, 'https://ror.org/03pdfag88', 'nl', 1, 'https://ror.org/03pdfag88 Marecollege'),
(33170, 'https://ror.org/03pdrba07', 'no_lang_code', 1, 'https://ror.org/03pdrba07 Sandbox Learning (United States)'),
(33171, 'https://ror.org/03pdzzh36', 'no_lang_code', 1, 'https://ror.org/03pdzzh36 TYK America (United States)'),
(33172, 'https://ror.org/03pfyd630', 'en', 1, 'https://ror.org/03pfyd630 Lourie Center for Children''s Social & Emotional Wellness'),
(33173, 'https://ror.org/03pmb4h38', 'pt', 1, 'https://ror.org/03pmb4h38 Instituto Nacional de Tecnologias de Informação e Comunicação'),
(33174, 'https://ror.org/03pngmk68', 'no_lang_code', 1, 'https://ror.org/03pngmk68 Total (Canada)'),
(33175, 'https://ror.org/03pt05741', 'en', 1, 'https://ror.org/03pt05741 Business Sweden'),
(33176, 'https://ror.org/03pt6pg29', 'en', 1, 'https://ror.org/03pt6pg29 Canadian Chlorine Chemistry Council'),
(33177, 'https://ror.org/03pty3341', 'no_lang_code', 1, 'https://ror.org/03pty3341 QPS Photronics (Canada)'),
(33178, 'https://ror.org/03pv43p79', 'en', 1, 'https://ror.org/03pv43p79 Ministry of Forests and Soil Conservation'),
(33179, 'https://ror.org/03pvq9f35', 'en', 1, 'https://ror.org/03pvq9f35 Regional Municipality of Ottawa'),
(33180, 'https://ror.org/03pwapz26', 'en', 1, 'https://ror.org/03pwapz26 American Foundation for Children with AIDS'),
(33181, 'https://ror.org/03q0f4n26', 'no_lang_code', 1, 'https://ror.org/03q0f4n26 Edison International (United States)'),
(33182, 'https://ror.org/03q0mq753', 'no_lang_code', 1, 'https://ror.org/03q0mq753 PartTec (United States)'),
(33183, 'https://ror.org/03q13kq93', 'no_lang_code', 1, 'https://ror.org/03q13kq93 Public Service Electric and Gas (United States)'),
(33184, 'https://ror.org/03q1hhd84', 'no_lang_code', 1, 'https://ror.org/03q1hhd84 Phase Sensitive Innovations (United States)'),
(33185, 'https://ror.org/03q4zw938', 'en', 1, 'https://ror.org/03q4zw938 Institute of Current World Affairs'),
(33186, 'https://ror.org/03q5bhc14', 'sk', 1, 'https://ror.org/03q5bhc14 GymnĆ”zium Andreja SlĆ”dkoviča'),
(33187, 'https://ror.org/03q854t26', 'en', 1, 'https://ror.org/03q854t26 Höhere Bundeslehr- und Forschungsanstalt für Landwirtschaft, Landtechnik und Lebensmitteltechnologie Josephinum Research'),
(33188, 'https://ror.org/03q9jvk55', 'no_lang_code', 1, 'https://ror.org/03q9jvk55 Premier Coatings (United States)'),
(33189, 'https://ror.org/03qadc961', 'da', 1, 'https://ror.org/03qadc961 Nordea-fonden'),
(33190, 'https://ror.org/03qafph14', 'it', 1, 'https://ror.org/03qafph14 Istituto di Astrofisica Spaziale e Fisica cosmica di Palermo'),
(33191, 'https://ror.org/03qe79b76', 'no_lang_code', 1, 'https://ror.org/03qe79b76 Optiplan (Sweden)'),
(33192, 'https://ror.org/03qehyx72', 'en', 1, 'https://ror.org/03qehyx72 Ministry of Patriots and Veterans Affairs'),
(33193, 'https://ror.org/03qekm213', 'no_lang_code', 1, 'https://ror.org/03qekm213 Cosine (Netherlands)'),
(33194, 'https://ror.org/03qepc107', 'en', 1, 'https://ror.org/03qepc107 Federal Almazov North-West Medical Research Centre Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Деверо-ЗапаГный Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр имени Š’.А. Алмазова ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(33195, 'https://ror.org/03qevzg44', 'en', 1, 'https://ror.org/03qevzg44 Richard King Mellon Foundation'),
(33196, 'https://ror.org/03qh32912', 'en', 1, 'https://ror.org/03qh32912 Food and Health Bureau é£Ÿē‰©åŠč”žē”Ÿå±€'),
(33197, 'https://ror.org/03qk82695', 'no_lang_code', 1, 'https://ror.org/03qk82695 Newport Coachworks (United States)'),
(33198, 'https://ror.org/03qm91g53', 'no_lang_code', 1, 'https://ror.org/03qm91g53 Telesecurity Sciences (United States)'),
(33199, 'https://ror.org/03qn8x345', 'en', 1, 'https://ror.org/03qn8x345 SIT Graduate Institute'),
(33200, 'https://ror.org/03qp5ww24', 'en', 1, 'https://ror.org/03qp5ww24 Centre for Immunity, Infection and Evolution'),
(33201, 'https://ror.org/03qqbvj08', 'no_lang_code', 1, 'https://ror.org/03qqbvj08 PTC (United States)'),
(33202, 'https://ror.org/03qqngv96', 'en', 1, 'https://ror.org/03qqngv96 Living Streets'),
(33203, 'https://ror.org/03qr5a489', 'no_lang_code', 1, 'https://ror.org/03qr5a489 Information System Technologies (United States)'),
(33204, 'https://ror.org/03qsax043', 'no_lang_code', 1, 'https://ror.org/03qsax043 FISO Technologies (Canada)'),
(33205, 'https://ror.org/03qt0ma29', 'no_lang_code', 1, 'https://ror.org/03qt0ma29 Software and Engineering Associates (United States)'),
(33206, 'https://ror.org/03qxwkk89', 'no_lang_code', 1, 'https://ror.org/03qxwkk89 Lipidomix (Germany)'),
(33207, 'https://ror.org/03qyfje32', 'en', 1, 'https://ror.org/03qyfje32 Institut national de recherche biomƩdicale National Institute of Biomedical Research'),
(33208, 'https://ror.org/03r06fs10', 'en', 1, 'https://ror.org/03r06fs10 Nordic Institute for Theoretical Physics'),
(33209, 'https://ror.org/03r0pj309', 'en', 1, 'https://ror.org/03r0pj309 Wolf Science Center'),
(33210, 'https://ror.org/03r0qv641', 'en', 1, 'https://ror.org/03r0qv641 Slovak Public Health Association'),
(33211, 'https://ror.org/03r24h131', 'en', 1, 'https://ror.org/03r24h131 Kaifeng City Children''s Hospital'),
(33212, 'https://ror.org/03r5ah485', 'en', 1, 'https://ror.org/03r5ah485 Texas Research Institute'),
(33213, 'https://ror.org/03r907b47', 'no_lang_code', 1, 'https://ror.org/03r907b47 Crye Precision (United States)'),
(33214, 'https://ror.org/03r95z943', 'no_lang_code', 1, 'https://ror.org/03r95z943 Prometheus (United States)'),
(33215, 'https://ror.org/03rb2qm14', 'en', 1, 'https://ror.org/03rb2qm14 Canadian Avalanche Association'),
(33216, 'https://ror.org/03rcg4460', 'en', 1, 'https://ror.org/03rcg4460 American Guild of Organists'),
(33217, 'https://ror.org/03renyq06', 'en', 1, 'https://ror.org/03renyq06 Institute of History Magyar TudomƔnyos AkadƩmia TƶrtƩnettudomƔnyi IntƩzete'),
(33218, 'https://ror.org/03rfn9b75', 'fr', 1, 'https://ror.org/03rfn9b75 Artsen Zonder Grenzen Doctors Without Borders Médecins Sans Frontières'),
(33219, 'https://ror.org/03rj6e862', 'no_lang_code', 1, 'https://ror.org/03rj6e862 Graphenea (Spain)'),
(33220, 'https://ror.org/03rj7b697', 'no_lang_code', 1, 'https://ror.org/03rj7b697 Enerworks (Canada)'),
(33221, 'https://ror.org/03rkwjs94', 'no_lang_code', 1, 'https://ror.org/03rkwjs94 SensAbues (Sweden)'),
(33222, 'https://ror.org/03rn5p709', 'de', 1, 'https://ror.org/03rn5p709 Architekturzentrum Wien'),
(33223, 'https://ror.org/03rnj7j86', 'no_lang_code', 1, 'https://ror.org/03rnj7j86 Ordela (United States)'),
(33224, 'https://ror.org/03rq52312', 'no_lang_code', 1, 'https://ror.org/03rq52312 Conductive Composites (United States)'),
(33225, 'https://ror.org/03rqmey35', 'no_lang_code', 1, 'https://ror.org/03rqmey35 EverNu Technology (United States)'),
(33226, 'https://ror.org/03rwxcx12', 'en', 1, 'https://ror.org/03rwxcx12 Bath and North East Somerset Council'),
(33227, 'https://ror.org/03rx0gp36', 'en', 1, 'https://ror.org/03rx0gp36 Royal College of Paediatrics and Child Health'),
(33228, 'https://ror.org/03rybxa06', 'en', 1, 'https://ror.org/03rybxa06 Ministry of the Environment ē’°å¢ƒēœ'),
(33229, 'https://ror.org/03s3npz41', 'no_lang_code', 1, 'https://ror.org/03s3npz41 Rolta (United States)'),
(33230, 'https://ror.org/03s4kpx37', 'en', 1, 'https://ror.org/03s4kpx37 Chest Hospital, Ministry of Health and Welfare'),
(33231, 'https://ror.org/03s6fxf66', 'no_lang_code', 1, 'https://ror.org/03s6fxf66 Timber Specialties (Canada)'),
(33232, 'https://ror.org/03s8maf24', 'no_lang_code', 1, 'https://ror.org/03s8maf24 Frontier Performance Polymers (United States)'),
(33233, 'https://ror.org/03s8rh204', 'en', 1, 'https://ror.org/03s8rh204 University Legal Services'),
(33234, 'https://ror.org/03s918289', 'no_lang_code', 1, 'https://ror.org/03s918289 Halliburton (United States)'),
(33235, 'https://ror.org/03s96de24', 'en', 1, 'https://ror.org/03s96de24 Hearst Foundations'),
(33236, 'https://ror.org/03s99w274', 'no_lang_code', 1, 'https://ror.org/03s99w274 Innovation Pioneers (Sweden)'),
(33237, 'https://ror.org/03s9h8898', 'en', 1, 'https://ror.org/03s9h8898 Garden Club of America'),
(33238, 'https://ror.org/03s9xxw55', 'en', 1, 'https://ror.org/03s9xxw55 National Ataxia Foundation'),
(33239, 'https://ror.org/03sc5te70', 'en', 1, 'https://ror.org/03sc5te70 Sunvapor'),
(33240, 'https://ror.org/03sdr0263', 'en', 1, 'https://ror.org/03sdr0263 Rheumatology Research Foundation'),
(33241, 'https://ror.org/03seew607', 'no_lang_code', 1, 'https://ror.org/03seew607 Applied Mathematics (United States)'),
(33242, 'https://ror.org/03sf2jx83', 'no_lang_code', 1, 'https://ror.org/03sf2jx83 Traclabs (United States)'),
(33243, 'https://ror.org/03sfqvm15', 'en', 1, 'https://ror.org/03sfqvm15 Sabah Forestry Department'),
(33244, 'https://ror.org/03shhge35', 'no_lang_code', 1, 'https://ror.org/03shhge35 BioArctic Neuroscience (Sweden)'),
(33245, 'https://ror.org/03sjenh86', 'en', 1, 'https://ror.org/03sjenh86 Warner Pacific College'),
(33246, 'https://ror.org/03sjs8573', 'en', 1, 'https://ror.org/03sjs8573 Canon Foundation in Europe'),
(33247, 'https://ror.org/03sm03s92', 'no_lang_code', 1, 'https://ror.org/03sm03s92 OpGen (United States)'),
(33248, 'https://ror.org/03smbm342', 'no_lang_code', 1, 'https://ror.org/03smbm342 Surgical Specialties (United States)'),
(33249, 'https://ror.org/03snc9f81', 'no_lang_code', 1, 'https://ror.org/03snc9f81 HyperSizer (United States)'),
(33250, 'https://ror.org/03snehy11', 'fr', 1, 'https://ror.org/03snehy11 Institut de Recherche et de DƩveloppement en Agroenvironnement Institute for Research and Development in Agri-Environment'),
(33251, 'https://ror.org/03snnmr62', 'no_lang_code', 1, 'https://ror.org/03snnmr62 Glint Photonics (United States)'),
(33252, 'https://ror.org/03snrcf80', 'no_lang_code', 1, 'https://ror.org/03snrcf80 Staccato Technologies (Sweden)'),
(33253, 'https://ror.org/03snw9541', 'no_lang_code', 1, 'https://ror.org/03snw9541 Pageau Morel and Associates (Canada)'),
(33254, 'https://ror.org/03spj8080', 'no_lang_code', 1, 'https://ror.org/03spj8080 Solute (United States)'),
(33255, 'https://ror.org/03sry2h30', 'en', 1, 'https://ror.org/03sry2h30 Max Planck Institute for Gravitational Physics Max-Planck-Institut für Gravitationsphysik'),
(33256, 'https://ror.org/03st6mq49', 'no_lang_code', 1, 'https://ror.org/03st6mq49 LightWorks (United States)'),
(33257, 'https://ror.org/03sxag889', 'no_lang_code', 1, 'https://ror.org/03sxag889 MetaSolutions (Sweden)'),
(33258, 'https://ror.org/03sxnxp24', 'en', 1, 'https://ror.org/03sxnxp24 Hangzhou Wanxiang Polytechnic'),
(33259, 'https://ror.org/03symbb61', 'no_lang_code', 1, 'https://ror.org/03symbb61 Quanta Technology (United States)'),
(33260, 'https://ror.org/03szmqd24', 'no_lang_code', 1, 'https://ror.org/03szmqd24 Applied Minds (United States)'),
(33261, 'https://ror.org/03t00e535', 'en', 1, 'https://ror.org/03t00e535 Sport Support Center'),
(33262, 'https://ror.org/03t0h6z08', 'no_lang_code', 1, 'https://ror.org/03t0h6z08 DANTE Solutions (United States)'),
(33263, 'https://ror.org/03t61s708', 'en', 1, 'https://ror.org/03t61s708 Parliament of United Kingdom TÅ·''r Arglwyddi'),
(33264, 'https://ror.org/03t810x25', 'no_lang_code', 1, 'https://ror.org/03t810x25 Disruptive Materials (Sweden)'),
(33265, 'https://ror.org/03t857d14', 'en', 1, 'https://ror.org/03t857d14 AIDS Foundation East-West'),
(33266, 'https://ror.org/03tbhyj83', 'en', 1, 'https://ror.org/03tbhyj83 Area ''A'' Crab Association'),
(33267, 'https://ror.org/03tcfa010', 'en', 1, 'https://ror.org/03tcfa010 Nevada Department of Employment Training and Rehabilitation'),
(33268, 'https://ror.org/03tcp5e90', 'no_lang_code', 1, 'https://ror.org/03tcp5e90 Brookhaven Technology Group (United States)'),
(33269, 'https://ror.org/03tcppy59', 'en', 1, 'https://ror.org/03tcppy59 The Research Council'),
(33270, 'https://ror.org/03td1t893', 'no_lang_code', 1, 'https://ror.org/03td1t893 Hitachi (Canada)'),
(33271, 'https://ror.org/03tdxa512', 'no_lang_code', 1, 'https://ror.org/03tdxa512 Exencotech (Sweden)'),
(33272, 'https://ror.org/03teef091', 'en', 1, 'https://ror.org/03teef091 Samueli Institute'),
(33273, 'https://ror.org/03th3y983', 'en', 1, 'https://ror.org/03th3y983 Chicago House and Social Service Agency'),
(33274, 'https://ror.org/03tk7a811', 'no_lang_code', 1, 'https://ror.org/03tk7a811 Industrial Filter & Pump Manufacturing (United States)'),
(33275, 'https://ror.org/03tn5kh37', 'en', 1, 'https://ror.org/03tn5kh37 Second Hospital of Shanxi Medical University å±±č„æåŒ»ē§‘å¤§å­¦ē¬¬äŗŒåŒ»é™¢'),
(33276, 'https://ror.org/03tnwmt68', 'no_lang_code', 1, 'https://ror.org/03tnwmt68 Massa Products (United States)'),
(33277, 'https://ror.org/03tqh5n18', 'en', 1, 'https://ror.org/03tqh5n18 Fraunhofer Chalmers Centrum fƶr Industrimatematik Fraunhofer Chalmers Research Centre for Industrial Mathematics'),
(33278, 'https://ror.org/03tw0yk66', 'no_lang_code', 1, 'https://ror.org/03tw0yk66 Spectral Imaging Laboratory (United States)'),
(33279, 'https://ror.org/03tx62s72', 'en', 1, 'https://ror.org/03tx62s72 Nichols College'),
(33280, 'https://ror.org/03tz2a620', 'en', 1, 'https://ror.org/03tz2a620 Lund Municipality'),
(33281, 'https://ror.org/03tzb7t51', 'en', 1, 'https://ror.org/03tzb7t51 Meningitis Research Foundation'),
(33282, 'https://ror.org/03v559f24', 'no_lang_code', 1, 'https://ror.org/03v559f24 PPS Group (Slovakia)'),
(33283, 'https://ror.org/03v5g8n66', 'no_lang_code', 1, 'https://ror.org/03v5g8n66 ElectroDynamic Applications (United States)'),
(33284, 'https://ror.org/03v5h9q93', 'no_lang_code', 1, 'https://ror.org/03v5h9q93 Redsense Medical (Sweden)'),
(33285, 'https://ror.org/03v6fak96', 'no_lang_code', 1, 'https://ror.org/03v6fak96 AIR Worldwide (United Kingdom)'),
(33286, 'https://ror.org/03v6x9115', 'en', 1, 'https://ror.org/03v6x9115 Ministry of Health and Public Hygiene'),
(33287, 'https://ror.org/03v7a9n80', 'en', 1, 'https://ror.org/03v7a9n80 CS Fund'),
(33288, 'https://ror.org/03v7cee73', 'no_lang_code', 1, 'https://ror.org/03v7cee73 Bioservo Technologies (Sweden)'),
(33289, 'https://ror.org/03v7zn827', 'en', 1, 'https://ror.org/03v7zn827 Clifton Labs'),
(33290, 'https://ror.org/03v918835', 'no_lang_code', 1, 'https://ror.org/03v918835 Grainseed (United Kingdom)'),
(33291, 'https://ror.org/03va2bz55', 'en', 1, 'https://ror.org/03va2bz55 International Society for Heart and Lung Transplantation'),
(33292, 'https://ror.org/03vasz419', 'no_lang_code', 1, 'https://ror.org/03vasz419 KM System (Slovakia)'),
(33293, 'https://ror.org/03vcepm09', 'no_lang_code', 1, 'https://ror.org/03vcepm09 Rosstech Signals (Canada)'),
(33294, 'https://ror.org/03vcrdp23', 'no_lang_code', 1, 'https://ror.org/03vcrdp23 Oneday Wall (Sweden)'),
(33295, 'https://ror.org/03vdsrw05', 'no_lang_code', 1, 'https://ror.org/03vdsrw05 Arxan (United States)'),
(33296, 'https://ror.org/03vdweg30', 'no_lang_code', 1, 'https://ror.org/03vdweg30 Essar Steel Algoma (Canada)'),
(33297, 'https://ror.org/03ve2m955', 'en', 1, 'https://ror.org/03ve2m955 Association for the Integrated Development-Comilla'),
(33298, 'https://ror.org/03vek6g79', 'en', 1, 'https://ror.org/03vek6g79 Tartu Emajoe School'),
(33299, 'https://ror.org/03vftr423', 'en', 1, 'https://ror.org/03vftr423 Entrepreneurship and Small Business Research Institute'),
(33300, 'https://ror.org/03vgy2486', 'no_lang_code', 1, 'https://ror.org/03vgy2486 MacAulay-Brown (United States)'),
(33301, 'https://ror.org/03vn7pd98', 'en', 1, 'https://ror.org/03vn7pd98 Nanotechnology Industries Association'),
(33302, 'https://ror.org/03vqm2n93', 'pt', 1, 'https://ror.org/03vqm2n93 Fundação de Amparo à Pesquisa e ao Desenvolvimento Científico e Tecnológico do Maranhão'),
(33303, 'https://ror.org/03vrnre28', 'en', 1, 'https://ror.org/03vrnre28 Innov & Export PME'),
(33304, 'https://ror.org/03vt5je06', 'no_lang_code', 1, 'https://ror.org/03vt5je06 Scienta Scientific (Sweden)'),
(33305, 'https://ror.org/03vtm2512', 'no_lang_code', 1, 'https://ror.org/03vtm2512 TECO-Westinghouse (Canada)'),
(33306, 'https://ror.org/03vtpmc73', 'en', 1, 'https://ror.org/03vtpmc73 Institute of Archaeology'),
(33307, 'https://ror.org/03vyh9251', 'no_lang_code', 1, 'https://ror.org/03vyh9251 LightSpin Technologies (United States)'),
(33308, 'https://ror.org/03w007e62', 'no_lang_code', 1, 'https://ror.org/03w007e62 Aware (United States)'),
(33309, 'https://ror.org/03w2v9593', 'en', 1, 'https://ror.org/03w2v9593 Israeli Centers for Research Excellence'),
(33310, 'https://ror.org/03w6bzp59', 'no_lang_code', 1, 'https://ror.org/03w6bzp59 Fujitsu (Sweden)'),
(33311, 'https://ror.org/03w6rv149', 'pt', 1, 'https://ror.org/03w6rv149 Instituto Federal de Educação Ciência e Tecnologia do Norte de Minas Gerais'),
(33312, 'https://ror.org/03w6wcs90', 'no_lang_code', 1, 'https://ror.org/03w6wcs90 Quattriuum (Canada)'),
(33313, 'https://ror.org/03w767q23', 'no_lang_code', 1, 'https://ror.org/03w767q23 Chang Industry (United States)'),
(33314, 'https://ror.org/03w7dtv60', 'no_lang_code', 1, 'https://ror.org/03w7dtv60 Quantum Leap Innovations (United States)'),
(33315, 'https://ror.org/03w7j1z86', 'fr', 1, 'https://ror.org/03w7j1z86 Centre de Recherche et de Veille sur les Maladies Emergentes dans l’OcĆ©an Indien'),
(33316, 'https://ror.org/03w805n83', 'fr', 1, 'https://ror.org/03w805n83 Conseil rƩgional de Haute-Normandie'),
(33317, 'https://ror.org/03w8zjq15', 'en', 1, 'https://ror.org/03w8zjq15 The Audio Recording Academy'),
(33318, 'https://ror.org/03we2aj97', 'en', 1, 'https://ror.org/03we2aj97 Medgar Evers College'),
(33319, 'https://ror.org/03wenc761', 'no_lang_code', 1, 'https://ror.org/03wenc761 Sanova (United States)'),
(33320, 'https://ror.org/03wj61f53', 'en', 1, 'https://ror.org/03wj61f53 Colegio Nacional National College'),
(33321, 'https://ror.org/03wjh4t84', 'en', 1, 'https://ror.org/03wjh4t84 National Agricultural and Food Centre'),
(33322, 'https://ror.org/03wn6yq26', 'no_lang_code', 1, 'https://ror.org/03wn6yq26 Relay Software (United Kingdom)'),
(33323, 'https://ror.org/03wnkex20', 'no_lang_code', 1, 'https://ror.org/03wnkex20 Safetronics (Slovakia)'),
(33324, 'https://ror.org/03wnqyy64', 'en', 1, 'https://ror.org/03wnqyy64 Netherlands Consortium for Healthy Ageing'),
(33325, 'https://ror.org/03wnrsb51', 'en', 1, 'https://ror.org/03wnrsb51 Shandong Provincial QianFoShan Hospital å±±äøœēœåƒä½›å±±åŒ»é™¢'),
(33326, 'https://ror.org/03wpn6023', 'no_lang_code', 1, 'https://ror.org/03wpn6023 SAE - Automation (Slovakia)'),
(33327, 'https://ror.org/03wpppw84', 'no_lang_code', 1, 'https://ror.org/03wpppw84 Bridgestone (United States)'),
(33328, 'https://ror.org/03wrep505', 'it', 1, 'https://ror.org/03wrep505 Ente Cassa di Risparmio di Firenze'),
(33329, 'https://ror.org/03wrrj239', 'no_lang_code', 1, 'https://ror.org/03wrrj239 Wallbridge Mining (Canada)'),
(33330, 'https://ror.org/03ww55028', 'en', 1, 'https://ror.org/03ww55028 Joint BioEnergy Institute'),
(33331, 'https://ror.org/03wwg5r17', 'no_lang_code', 1, 'https://ror.org/03wwg5r17 Discovery Semiconductors (United States)'),
(33332, 'https://ror.org/03wxvt516', 'no_lang_code', 1, 'https://ror.org/03wxvt516 Technology Solutions Experts (United States)'),
(33333, 'https://ror.org/03wy95943', 'no_lang_code', 1, 'https://ror.org/03wy95943 B-Con Engineering (Canada)'),
(33334, 'https://ror.org/03wyamy27', 'nl', 1, 'https://ror.org/03wyamy27 Huizinga Instituut'),
(33335, 'https://ror.org/03x0p3p41', 'no_lang_code', 1, 'https://ror.org/03x0p3p41 GA Drilling (Slovakia)'),
(33336, 'https://ror.org/03x0rzg54', 'no_lang_code', 1, 'https://ror.org/03x0rzg54 Shenhua Group (China)'),
(33337, 'https://ror.org/03x1jt541', 'en', 1, 'https://ror.org/03x1jt541 Le Centre Hospitalier Princesse Grace Princess Grace Hospital Centre'),
(33338, 'https://ror.org/03x3v9r72', 'no_lang_code', 1, 'https://ror.org/03x3v9r72 Denator (Sweden)'),
(33339, 'https://ror.org/03x41sw74', 'no_lang_code', 1, 'https://ror.org/03x41sw74 Surgical Science (Sweden)'),
(33340, 'https://ror.org/03x50jr04', 'no_lang_code', 1, 'https://ror.org/03x50jr04 Terrigio (Sweden)'),
(33341, 'https://ror.org/03x725c05', 'no_lang_code', 1, 'https://ror.org/03x725c05 Federated Co-operatives (Canada)'),
(33342, 'https://ror.org/03x8rhq63', 'en', 1, 'https://ror.org/03x8rhq63 Institute of Modern Physics 中国科学院近代物理研究所'),
(33343, 'https://ror.org/03xbccz06', 'en', 1, 'https://ror.org/03xbccz06 Wellcome Centre for Cell Biology'),
(33344, 'https://ror.org/03xc04149', 'no_lang_code', 1, 'https://ror.org/03xc04149 Numotion (United States)'),
(33345, 'https://ror.org/03xcvwx77', 'no_lang_code', 1, 'https://ror.org/03xcvwx77 Pojen General Hospital'),
(33346, 'https://ror.org/03xeae684', 'en', 1, 'https://ror.org/03xeae684 Cystic Fibrosis Trust'),
(33347, 'https://ror.org/03xg85719', 'en', 1, 'https://ror.org/03xg85719 Institute for Advanced Study Wissenschaftskolleg zu Berlin'),
(33348, 'https://ror.org/03xg8pv73', 'en', 1, 'https://ror.org/03xg8pv73 Covenant College'),
(33349, 'https://ror.org/03xhps368', 'no_lang_code', 1, 'https://ror.org/03xhps368 DB Biotech (Slovakia)'),
(33350, 'https://ror.org/03xj38z92', 'en', 1, 'https://ror.org/03xj38z92 Welch College'),
(33351, 'https://ror.org/03xjasx48', 'no_lang_code', 1, 'https://ror.org/03xjasx48 Semikron (Slovakia)'),
(33352, 'https://ror.org/03xnrcj96', 'no_lang_code', 1, 'https://ror.org/03xnrcj96 Continental Computers (United States)'),
(33353, 'https://ror.org/03xpb8754', 'no_lang_code', 1, 'https://ror.org/03xpb8754 CCT Intermodal (Sweden)'),
(33354, 'https://ror.org/03xpj4h50', 'no_lang_code', 1, 'https://ror.org/03xpj4h50 Bioland (South Korea)'),
(33355, 'https://ror.org/03xqmhf90', 'no_lang_code', 1, 'https://ror.org/03xqmhf90 Breault Research Organization (United States)'),
(33356, 'https://ror.org/03xqpdg50', 'da', 1, 'https://ror.org/03xqpdg50 Danish Rheumatism Association Gigtforeningen'),
(33357, 'https://ror.org/03xr9q522', 'en', 1, 'https://ror.org/03xr9q522 Kuwait Foundation for the Advancement of Sciences'),
(33358, 'https://ror.org/03xrrsn68', 'no_lang_code', 1, 'https://ror.org/03xrrsn68 Riksteatern (Sweden)'),
(33359, 'https://ror.org/03xsjat94', 'en', 1, 'https://ror.org/03xsjat94 Natural Resources Data Management System'),
(33360, 'https://ror.org/03xvqgb25', 'fr', 1, 'https://ror.org/03xvqgb25 Montreal Transit Corporation SociƩtƩ de Transport de MontrƩal'),
(33361, 'https://ror.org/03xw80974', 'es', 1, 'https://ror.org/03xw80974 EcoCiencia'),
(33362, 'https://ror.org/03xw8f892', 'no_lang_code', 1, 'https://ror.org/03xw8f892 Q Free (Netherlands)'),
(33363, 'https://ror.org/03y2gwe85', 'en', 1, 'https://ror.org/03y2gwe85 Russian Science Foundation'),
(33364, 'https://ror.org/03y315f21', 'en', 1, 'https://ror.org/03y315f21 Government of Malaysia Kerajaan Persekutuan Malaysia'),
(33365, 'https://ror.org/03y3tpz14', 'no_lang_code', 1, 'https://ror.org/03y3tpz14 Inteno (Sweden)'),
(33366, 'https://ror.org/03y46gc61', 'no_lang_code', 1, 'https://ror.org/03y46gc61 Megmilk Snow Brand (Japan) é›Ŗå°ä¹³ę„­ę Ŗå¼ä¼šē¤¾'),
(33367, 'https://ror.org/03y73tk19', 'no_lang_code', 1, 'https://ror.org/03y73tk19 InView Technology Corporation (United States)'),
(33368, 'https://ror.org/03y9hjd03', 'no_lang_code', 1, 'https://ror.org/03y9hjd03 Structural Integrity Associates (United States)'),
(33369, 'https://ror.org/03yc06y43', 'no_lang_code', 1, 'https://ror.org/03yc06y43 Petrel Robertson Consulting (Canada)'),
(33370, 'https://ror.org/03ycgwr13', 'no_lang_code', 1, 'https://ror.org/03ycgwr13 TimeSys (United States)'),
(33371, 'https://ror.org/03ycz8v76', 'en', 1, 'https://ror.org/03ycz8v76 Bosque School'),
(33372, 'https://ror.org/03ydemh16', 'no_lang_code', 1, 'https://ror.org/03ydemh16 Tau - Chem (Slovakia)'),
(33373, 'https://ror.org/03ye0w166', 'en', 1, 'https://ror.org/03ye0w166 Canadian Wildlife Federation FƩdƩration Canadienne de la Faune'),
(33374, 'https://ror.org/03ye3kp90', 'no_lang_code', 1, 'https://ror.org/03ye3kp90 Sciss (Sweden)'),
(33375, 'https://ror.org/03yfnx990', 'no_lang_code', 1, 'https://ror.org/03yfnx990 Advanced Emissions Solutions (United States)'),
(33376, 'https://ror.org/03yhn1973', 'en', 1, 'https://ror.org/03yhn1973 Praxis Institute for Participatory Practices'),
(33377, 'https://ror.org/03yhprz62', 'en', 1, 'https://ror.org/03yhprz62 John S. Dunn Foundation'),
(33378, 'https://ror.org/03yktc864', 'no_lang_code', 1, 'https://ror.org/03yktc864 Aneeve Nanotechnologies (United States)'),
(33379, 'https://ror.org/03ym3x587', 'no_lang_code', 1, 'https://ror.org/03ym3x587 Tydock Pharma (Italy)'),
(33380, 'https://ror.org/03ypap427', 'no_lang_code', 1, 'https://ror.org/03ypap427 Saudi Aramco (Saudi Arabia)'),
(33381, 'https://ror.org/03yqfnv74', 'en', 1, 'https://ror.org/03yqfnv74 Cure Cancer Australia'),
(33382, 'https://ror.org/03yvcwz92', 'no_lang_code', 1, 'https://ror.org/03yvcwz92 Suzuken (Japan)'),
(33383, 'https://ror.org/03yw8ff53', 'no_lang_code', 1, 'https://ror.org/03yw8ff53 TechMarket (Sweden)'),
(33384, 'https://ror.org/03yxd7304', 'en', 1, 'https://ror.org/03yxd7304 Israel Cancer Association'),
(33385, 'https://ror.org/03yywea39', 'no_lang_code', 1, 'https://ror.org/03yywea39 Plasma Processes (United States)'),
(33386, 'https://ror.org/03z0m1393', 'no_lang_code', 1, 'https://ror.org/03z0m1393 Advanced Device Technology (United States)'),
(33387, 'https://ror.org/03z0yfj91', 'no_lang_code', 1, 'https://ror.org/03z0yfj91 AcousticAgree (Sweden)'),
(33388, 'https://ror.org/03z192g48', 'no_lang_code', 1, 'https://ror.org/03z192g48 CrossWing (Canada)'),
(33389, 'https://ror.org/03z1vf588', 'en', 1, 'https://ror.org/03z1vf588 South-South Exchange Programme for Research on the History of Development'),
(33390, 'https://ror.org/03z2kds18', 'en', 1, 'https://ror.org/03z2kds18 Bethany Lutheran College'),
(33391, 'https://ror.org/03z2py885', 'en', 1, 'https://ror.org/03z2py885 National Eye Research Centre'),
(33392, 'https://ror.org/03z47zw42', 'no_lang_code', 1, 'https://ror.org/03z47zw42 Charles River Analytics (United States)'),
(33393, 'https://ror.org/03z777f25', 'no_lang_code', 1, 'https://ror.org/03z777f25 Surface Treatment Technologies (United States)'),
(33394, 'https://ror.org/03z7xev21', 'en', 1, 'https://ror.org/03z7xev21 Asthma UK'),
(33395, 'https://ror.org/03z8rmr27', 'en', 1, 'https://ror.org/03z8rmr27 Tudor Place'),
(33396, 'https://ror.org/03z9cwa38', 'en', 1, 'https://ror.org/03z9cwa38 Korea Evaluation Institute of Industrial Technology'),
(33397, 'https://ror.org/03zcxha54', 'de', 1, 'https://ror.org/03zcxha54 Else Krƶner-Fresenius-Stiftung'),
(33398, 'https://ror.org/03zefh326', 'no_lang_code', 1, 'https://ror.org/03zefh326 Siva (Italy)'),
(33399, 'https://ror.org/03zejnj81', 'no_lang_code', 1, 'https://ror.org/03zejnj81 Cyclicor (Sweden)'),
(33400, 'https://ror.org/03zeqmc64', 'en', 1, 'https://ror.org/03zeqmc64 High Energy Materials Research Laboratory ą¤‰ą¤šą„ą¤š ą¤‰ą¤°ą„ą¤œą¤¾ ą¤Ŗą¤¦ą¤¾ą¤°ą„ą¤„ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(33401, 'https://ror.org/03zf72497', 'no_lang_code', 1, 'https://ror.org/03zf72497 Consol Energy (United States)'),
(33402, 'https://ror.org/03zkdcr67', 'en', 1, 'https://ror.org/03zkdcr67 Academy of American Poets'),
(33403, 'https://ror.org/03zkhjb46', 'en', 1, 'https://ror.org/03zkhjb46 Midwestern Baptist College'),
(33404, 'https://ror.org/03zqd9158', 'no_lang_code', 1, 'https://ror.org/03zqd9158 BioResonator (Sweden)'),
(33405, 'https://ror.org/03zts9g74', 'no_lang_code', 1, 'https://ror.org/03zts9g74 Idera Pharmaceuticals (United States)'),
(33406, 'https://ror.org/03zvsh960', 'no_lang_code', 1, 'https://ror.org/03zvsh960 Oracle (Canada)'),
(33407, 'https://ror.org/03zwkr441', 'en', 1, 'https://ror.org/03zwkr441 Association canadienne des optomƩtristes Canadian Association Of Optometrists'),
(33408, 'https://ror.org/03zwpmf03', 'no_lang_code', 1, 'https://ror.org/03zwpmf03 Biont (Slovakia)'),
(33409, 'https://ror.org/03zxdhd63', 'no_lang_code', 1, 'https://ror.org/03zxdhd63 Shared Spectrum Company (United States)'),
(33410, 'https://ror.org/040046r87', 'no_lang_code', 1, 'https://ror.org/040046r87 KƤllbergs Industri (Sweden)'),
(33411, 'https://ror.org/0401b3q74', 'no_lang_code', 1, 'https://ror.org/0401b3q74 Cascade Microtech (United States)'),
(33412, 'https://ror.org/04049nt84', 'no_lang_code', 1, 'https://ror.org/04049nt84 Ultra Communications (United States)'),
(33413, 'https://ror.org/0405nh111', 'de', 1, 'https://ror.org/0405nh111 Bundesamt für Wasserwirtschaft'),
(33414, 'https://ror.org/040657n65', 'nl', 1, 'https://ror.org/040657n65 Ons Middelbaar Onderwijs'),
(33415, 'https://ror.org/04089t965', 'en', 1, 'https://ror.org/04089t965 Abraham Baldwin Agricultural College'),
(33416, 'https://ror.org/0409k5a27', 'en', 1, 'https://ror.org/0409k5a27 Shenzhen Children''s Hospital ę·±åœ³åø‚å„æē«„åŒ»é™¢'),
(33417, 'https://ror.org/040aks519', 'en', 1, 'https://ror.org/040aks519 Bethune International Peace Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ē™½ę±‚ę©å›½é™…å’Œå¹³åŒ»é™¢');
INSERT INTO `rors` VALUES
(33418, 'https://ror.org/040bs6h16', 'en', 1, 'https://ror.org/040bs6h16 National Chin-Yi University of Technology'),
(33419, 'https://ror.org/040ch0e11', 'en', 1, 'https://ror.org/040ch0e11 Cambridgeshire and Peterborough NHS Foundation Trust'),
(33420, 'https://ror.org/040cjbv15', 'en', 1, 'https://ror.org/040cjbv15 Interior Lumber Manufacturers Association'),
(33421, 'https://ror.org/040d40q10', 'de', 1, 'https://ror.org/040d40q10 Kunstakademie Düsseldorf'),
(33422, 'https://ror.org/040d52e71', 'en', 1, 'https://ror.org/040d52e71 IEEE Foundation'),
(33423, 'https://ror.org/040e70m72', 'no_lang_code', 1, 'https://ror.org/040e70m72 ISSAC (United States)'),
(33424, 'https://ror.org/040ep7n71', 'no_lang_code', 1, 'https://ror.org/040ep7n71 Near Earth Autonomy (United States)'),
(33425, 'https://ror.org/040fdbg50', 'no_lang_code', 1, 'https://ror.org/040fdbg50 Wave Control Systems (Canada)'),
(33426, 'https://ror.org/040gfwf91', 'no_lang_code', 1, 'https://ror.org/040gfwf91 EWE (Germany)'),
(33427, 'https://ror.org/040gnq226', 'en', 1, 'https://ror.org/040gnq226 First Affiliated Hospital of Gannan Medical University'),
(33428, 'https://ror.org/040kxva36', 'hu', 1, 'https://ror.org/040kxva36 Atlantisz AlapƭtvƔny'),
(33429, 'https://ror.org/040mndz48', 'no_lang_code', 1, 'https://ror.org/040mndz48 ArmorWorks (United States)'),
(33430, 'https://ror.org/040mzvg39', 'en', 1, 'https://ror.org/040mzvg39 PHI University Psychiatric Clinic - Skopje'),
(33431, 'https://ror.org/040nbcv84', 'en', 1, 'https://ror.org/040nbcv84 Trace Crossings Elementary School'),
(33432, 'https://ror.org/040nxjw81', 'fr', 1, 'https://ror.org/040nxjw81 Haute Ɖcole de Bruxelles'),
(33433, 'https://ror.org/040pmcr47', 'en', 1, 'https://ror.org/040pmcr47 Maryland Higher Education Commission'),
(33434, 'https://ror.org/040qg6n73', 'no_lang_code', 1, 'https://ror.org/040qg6n73 Acadia Cyber Solutions (United States)'),
(33435, 'https://ror.org/040rwep31', 'en', 1, 'https://ror.org/040rwep31 Peking University Shougang Hospital åŒ—äŗ¬å¤§å­¦é¦–é‹¼åŒ»é™¢'),
(33436, 'https://ror.org/040s9tj83', 'no_lang_code', 1, 'https://ror.org/040s9tj83 Zebra Technologies (United States)'),
(33437, 'https://ror.org/040v79746', 'en', 1, 'https://ror.org/040v79746 Research Capacity Building Collaboration Wales'),
(33438, 'https://ror.org/040vbkv27', 'no_lang_code', 1, 'https://ror.org/040vbkv27 Telus (Canada)'),
(33439, 'https://ror.org/040wesb37', 'en', 1, 'https://ror.org/040wesb37 Barclay College'),
(33440, 'https://ror.org/04193qa97', 'no_lang_code', 1, 'https://ror.org/04193qa97 LGL Group (United States)'),
(33441, 'https://ror.org/041b73r77', 'no_lang_code', 1, 'https://ror.org/041b73r77 Underground Systems (United States)'),
(33442, 'https://ror.org/041db3c58', 'en', 1, 'https://ror.org/041db3c58 Greenleaf University'),
(33443, 'https://ror.org/041dzw371', 'en', 1, 'https://ror.org/041dzw371 Eesti Keele Instituut Institute of the Estonian Language'),
(33444, 'https://ror.org/041emnb33', 'en', 1, 'https://ror.org/041emnb33 Biomedical Research Foundation of Northwest Louisiana'),
(33445, 'https://ror.org/041g2v089', 'no_lang_code', 1, 'https://ror.org/041g2v089 Ekospol (Slovakia)'),
(33446, 'https://ror.org/041h2kk78', 'hu', 1, 'https://ror.org/041h2kk78 Pest Megyei Múzeumok IgazgatósÔga'),
(33447, 'https://ror.org/041jx2z70', 'en', 1, 'https://ror.org/041jx2z70 Triangle Research and Development Center'),
(33448, 'https://ror.org/041mwxn09', 'no_lang_code', 1, 'https://ror.org/041mwxn09 Onboard Dynamics (United States)'),
(33449, 'https://ror.org/041my0n44', 'no_lang_code', 1, 'https://ror.org/041my0n44 Vadum (United States)'),
(33450, 'https://ror.org/041n00p08', 'no_lang_code', 1, 'https://ror.org/041n00p08 Ready Set Sign (United States)'),
(33451, 'https://ror.org/041n69t03', 'no_lang_code', 1, 'https://ror.org/041n69t03 Dacom (Netherlands)'),
(33452, 'https://ror.org/041nhp446', 'en', 1, 'https://ror.org/041nhp446 Women''s Fund for Health Education and Research'),
(33453, 'https://ror.org/041q4rp74', 'no_lang_code', 1, 'https://ror.org/041q4rp74 Eurofins (Slovakia)'),
(33454, 'https://ror.org/041qyrj45', 'fr', 1, 'https://ror.org/041qyrj45 Doctors Without Borders Médecins Sans Frontières'),
(33455, 'https://ror.org/041t5x242', 'en', 1, 'https://ror.org/041t5x242 Tenovus Cancer Care'),
(33456, 'https://ror.org/041y97z83', 'no_lang_code', 1, 'https://ror.org/041y97z83 Mike Wiegele Helicopter Skiing (Canada)'),
(33457, 'https://ror.org/041yj5753', 'en', 1, 'https://ror.org/041yj5753 Stomatology Hospital'),
(33458, 'https://ror.org/0420sjb95', 'no_lang_code', 1, 'https://ror.org/0420sjb95 TextWise (United States)'),
(33459, 'https://ror.org/0421ba211', 'en', 1, 'https://ror.org/0421ba211 Turku Centre for Biotechnology'),
(33460, 'https://ror.org/0421p8j22', 'en', 1, 'https://ror.org/0421p8j22 Wuxi Third People''s Hospital'),
(33461, 'https://ror.org/0422rme67', 'no_lang_code', 1, 'https://ror.org/0422rme67 Integrated Systems Solutions (United States)'),
(33462, 'https://ror.org/04237en35', 'fr', 1, 'https://ror.org/04237en35 Artsen zonder Grenzen Doctors Without Borders Médecins Sans Frontières'),
(33463, 'https://ror.org/0423wr780', 'no_lang_code', 1, 'https://ror.org/0423wr780 Job Performance Systems (United States)'),
(33464, 'https://ror.org/0424rzx44', 'no_lang_code', 1, 'https://ror.org/0424rzx44 Innospire Systems (United States)'),
(33465, 'https://ror.org/0429ctb76', 'no_lang_code', 1, 'https://ror.org/0429ctb76 Warwick Mills (United States)'),
(33466, 'https://ror.org/0429te836', 'en', 1, 'https://ror.org/0429te836 Ministry of Education'),
(33467, 'https://ror.org/042a7gm30', 'hu', 1, 'https://ror.org/042a7gm30 Korall TÔrsadalomtörténeti Folyóirat'),
(33468, 'https://ror.org/042abnq57', 'no_lang_code', 1, 'https://ror.org/042abnq57 Elintrix (United States)'),
(33469, 'https://ror.org/042dp4138', 'no_lang_code', 1, 'https://ror.org/042dp4138 Technology Service Corporation (United States)'),
(33470, 'https://ror.org/042fse352', 'no_lang_code', 1, 'https://ror.org/042fse352 TiER1 (United States)'),
(33471, 'https://ror.org/042gbet74', 'no_lang_code', 1, 'https://ror.org/042gbet74 AB Realisator (Sweden)'),
(33472, 'https://ror.org/042kgb568', 'en', 1, 'https://ror.org/042kgb568 AgriBio'),
(33473, 'https://ror.org/042kkhb55', 'no_lang_code', 1, 'https://ror.org/042kkhb55 Malibu IQ (United States)'),
(33474, 'https://ror.org/042qrnq11', 'hu', 1, 'https://ror.org/042qrnq11 Society for the Dissemination of Scientific Knowledge TudomĆ”nyos Ismeretterjesztő TĆ”rsulat'),
(33475, 'https://ror.org/042ssda85', 'no_lang_code', 1, 'https://ror.org/042ssda85 Chantiers Chibougamau (Canada)'),
(33476, 'https://ror.org/042te9f59', 'en', 1, 'https://ror.org/042te9f59 Sabin Vaccine Institute'),
(33477, 'https://ror.org/042wp4851', 'no_lang_code', 1, 'https://ror.org/042wp4851 CompuTherm (United States)'),
(33478, 'https://ror.org/042zqj962', 'no_lang_code', 1, 'https://ror.org/042zqj962 Nordic Medcom (Sweden)'),
(33479, 'https://ror.org/04315yv37', 'en', 1, 'https://ror.org/04315yv37 Edinburgh International Science Festival'),
(33480, 'https://ror.org/0434af134', 'en', 1, 'https://ror.org/0434af134 Michigan Public Service Commission'),
(33481, 'https://ror.org/0434keq61', 'en', 1, 'https://ror.org/0434keq61 Ministry of Social and Family Development ę–°åŠ å”ē¤¾ä¼šåŠå®¶åŗ­å‘å±•éƒØ'),
(33482, 'https://ror.org/0434pxk87', 'en', 1, 'https://ror.org/0434pxk87 Eskilstuna Municipality'),
(33483, 'https://ror.org/0435dvj48', 'en', 1, 'https://ror.org/0435dvj48 Cultural Heritage Administration ė¬øķ™”ģž¬ģ²­'),
(33484, 'https://ror.org/0436y2h42', 'de', 1, 'https://ror.org/0436y2h42 Hermann Staudinger Gymnasium'),
(33485, 'https://ror.org/0437v2m88', 'en', 1, 'https://ror.org/0437v2m88 School of Visual Arts'),
(33486, 'https://ror.org/04380ve97', 'en', 1, 'https://ror.org/04380ve97 Korea Communications Commission'),
(33487, 'https://ror.org/04390vz03', 'en', 1, 'https://ror.org/04390vz03 National Arts Council of South Africa'),
(33488, 'https://ror.org/043bbp842', 'no_lang_code', 1, 'https://ror.org/043bbp842 EyeTalk Systems (United States)'),
(33489, 'https://ror.org/043bpky34', 'en', 1, 'https://ror.org/043bpky34 Nanjing University of Posts and Telecommunications å—äŗ¬é‚®ē”µå¤§å­¦'),
(33490, 'https://ror.org/043bzv808', 'no_lang_code', 1, 'https://ror.org/043bzv808 Referentia Systems (United States)'),
(33491, 'https://ror.org/043c9gs72', 'no_lang_code', 1, 'https://ror.org/043c9gs72 Diversified Technologies (United States)'),
(33492, 'https://ror.org/043egek32', 'en', 1, 'https://ror.org/043egek32 Neighborhood Legal Services'),
(33493, 'https://ror.org/043ejs261', 'no_lang_code', 1, 'https://ror.org/043ejs261 Hysitron (United States)'),
(33494, 'https://ror.org/043fwdk81', 'en', 1, 'https://ror.org/043fwdk81 Multiple Sclerosis Society'),
(33495, 'https://ror.org/043hpt843', 'no_lang_code', 1, 'https://ror.org/043hpt843 BorgWarner (Sweden)'),
(33496, 'https://ror.org/043m01p16', 'no_lang_code', 1, 'https://ror.org/043m01p16 Innovative Dynamics (United States)'),
(33497, 'https://ror.org/043mcwe63', 'en', 1, 'https://ror.org/043mcwe63 Lake Forest Graduate School of Management'),
(33498, 'https://ror.org/043n69j88', 'en', 1, 'https://ror.org/043n69j88 UBC Properties Trust'),
(33499, 'https://ror.org/043pya965', 'en', 1, 'https://ror.org/043pya965 Research Institute of Agricultural and Food Economics'),
(33500, 'https://ror.org/043qkx395', 'en', 1, 'https://ror.org/043qkx395 Centre for Ultrahigh Bandwidth Devices for Optical Systems'),
(33501, 'https://ror.org/043r2f182', 'no_lang_code', 1, 'https://ror.org/043r2f182 IDEAconsult'),
(33502, 'https://ror.org/043s2sj95', 'no_lang_code', 1, 'https://ror.org/043s2sj95 Nanotrons (United States)'),
(33503, 'https://ror.org/043v5mq85', 'en', 1, 'https://ror.org/043v5mq85 Sustainable Sweden Southeast'),
(33504, 'https://ror.org/043yd9j22', 'no_lang_code', 1, 'https://ror.org/043yd9j22 TeraDiode (United States)'),
(33505, 'https://ror.org/043ydgy90', 'no_lang_code', 1, 'https://ror.org/043ydgy90 Gondolat Publishing (Hungary)'),
(33506, 'https://ror.org/0440s3562', 'no_lang_code', 1, 'https://ror.org/0440s3562 Viventia Bio (Canada)'),
(33507, 'https://ror.org/0442rep98', 'no_lang_code', 1, 'https://ror.org/0442rep98 Abakan (United States)'),
(33508, 'https://ror.org/0442ywx89', 'no_lang_code', 1, 'https://ror.org/0442ywx89 Gƶteborg & Co TrƤffpunkt (Sweden)'),
(33509, 'https://ror.org/044446k52', 'en', 1, 'https://ror.org/044446k52 Beijing Academy of Food Sciences åŒ—äŗ¬é£Ÿå“ē§‘å­¦ē ”ē©¶é™¢'),
(33510, 'https://ror.org/0444fnd49', 'en', 1, 'https://ror.org/0444fnd49 University of Southern California Sea Grant'),
(33511, 'https://ror.org/044ac0f56', 'no_lang_code', 1, 'https://ror.org/044ac0f56 Magnolia Solar (United States)'),
(33512, 'https://ror.org/044awgt66', 'en', 1, 'https://ror.org/044awgt66 Joint Implementation Network'),
(33513, 'https://ror.org/044bcwg38', 'no_lang_code', 1, 'https://ror.org/044bcwg38 Intevac (United States)'),
(33514, 'https://ror.org/044d35368', 'hu', 1, 'https://ror.org/044d35368 Damjanich JÔnos Múzeum'),
(33515, 'https://ror.org/044f8a932', 'no_lang_code', 1, 'https://ror.org/044f8a932 Data Power Decisions (United States)'),
(33516, 'https://ror.org/044g35w58', 'es', 1, 'https://ror.org/044g35w58 Ibercaja Banco'),
(33517, 'https://ror.org/044gr8720', 'en', 1, 'https://ror.org/044gr8720 Heythrop College, University of London'),
(33518, 'https://ror.org/044hmkx85', 'en', 1, 'https://ror.org/044hmkx85 Singapore Stem Cell Consortium'),
(33519, 'https://ror.org/044panr52', 'en', 1, 'https://ror.org/044panr52 Egyptian Petroleum Research Institute'),
(33520, 'https://ror.org/044s7x198', 'en', 1, 'https://ror.org/044s7x198 Association of Professional Engineers and Geoscientists of Manitoba'),
(33521, 'https://ror.org/044txnm15', 'no_lang_code', 1, 'https://ror.org/044txnm15 1Spatial (United States)'),
(33522, 'https://ror.org/044vr6g03', 'en', 1, 'https://ror.org/044vr6g03 Science and Technology Development Fund'),
(33523, 'https://ror.org/044x68458', 'en', 1, 'https://ror.org/044x68458 Instituto Nacional de CiĆŖncia e Tecnologia em Biologia Estrutural e Bioimagens National Institute of Science and Technology for Structural Biology and Bioimaging'),
(33524, 'https://ror.org/044ym4p17', 'en', 1, 'https://ror.org/044ym4p17 Climate and Energy Fund Klima und Energiefonds'),
(33525, 'https://ror.org/045205d09', 'en', 1, 'https://ror.org/045205d09 Clinton Foundation'),
(33526, 'https://ror.org/0454gfp30', 'nl', 1, 'https://ror.org/0454gfp30 Sint Maartenskliniek'),
(33527, 'https://ror.org/0455ha759', 'da', 1, 'https://ror.org/0455ha759 Filadelfia'),
(33528, 'https://ror.org/04566sr16', 'no_lang_code', 1, 'https://ror.org/04566sr16 Jentek Sensors (United States)'),
(33529, 'https://ror.org/04587tq63', 'sv', 1, 'https://ror.org/04587tq63 Eksjƶ Municipality'),
(33530, 'https://ror.org/04595zj73', 'en', 1, 'https://ror.org/04595zj73 Xi’an Children’s Hospital'),
(33531, 'https://ror.org/0459phn12', 'en', 1, 'https://ror.org/0459phn12 Australian Cancer Research Foundation'),
(33532, 'https://ror.org/045a2mc38', 'en', 1, 'https://ror.org/045a2mc38 Cape Breton Development Corporation'),
(33533, 'https://ror.org/045aka220', 'no_lang_code', 1, 'https://ror.org/045aka220 Ecoland (Slovakia)'),
(33534, 'https://ror.org/045cazh10', 'no_lang_code', 1, 'https://ror.org/045cazh10 Smiths Interconnect (United States)'),
(33535, 'https://ror.org/045dnqy78', 'fr', 1, 'https://ror.org/045dnqy78 Conseil RƩgional du Languedoc-Roussillon'),
(33536, 'https://ror.org/045h1za13', 'nl', 1, 'https://ror.org/045h1za13 Stichting voor Christelijke Filosofie'),
(33537, 'https://ror.org/045hsta97', 'no_lang_code', 1, 'https://ror.org/045hsta97 Progressive Waste Solutions (Canada)'),
(33538, 'https://ror.org/045jt2189', 'en', 1, 'https://ror.org/045jt2189 International Trachoma Initiative'),
(33539, 'https://ror.org/045jyg234', 'de', 1, 'https://ror.org/045jyg234 Verein für Krebsforschung'),
(33540, 'https://ror.org/045k5vt03', 'en', 1, 'https://ror.org/045k5vt03 International Society for Optics and Photonics'),
(33541, 'https://ror.org/045mtcs38', 'no_lang_code', 1, 'https://ror.org/045mtcs38 CorActive (Canada)'),
(33542, 'https://ror.org/045na2h79', 'no_lang_code', 1, 'https://ror.org/045na2h79 MFC Industrial (United States)'),
(33543, 'https://ror.org/045pt6r46', 'no_lang_code', 1, 'https://ror.org/045pt6r46 Makel Engineering (United States)'),
(33544, 'https://ror.org/045pznz06', 'no_lang_code', 1, 'https://ror.org/045pznz06 Valley Tech Systems (United States)'),
(33545, 'https://ror.org/045thge14', 'en', 1, 'https://ror.org/045thge14 Finnish Red Cross'),
(33546, 'https://ror.org/045vgz384', 'en', 1, 'https://ror.org/045vgz384 Government of Netherlands Nederlandse Regering'),
(33547, 'https://ror.org/045vwy185', 'en', 1, 'https://ror.org/045vwy185 Seventh People''s Hospital of Shanghai'),
(33548, 'https://ror.org/045w2qd40', 'no_lang_code', 1, 'https://ror.org/045w2qd40 ElectroHeat (Sweden)'),
(33549, 'https://ror.org/045whza52', 'no_lang_code', 1, 'https://ror.org/045whza52 Instrumental Sciences (United States)'),
(33550, 'https://ror.org/045wyyr37', 'no_lang_code', 1, 'https://ror.org/045wyyr37 Evans Capacitor (United States)'),
(33551, 'https://ror.org/045x7cm28', 'nl', 1, 'https://ror.org/045x7cm28 Archeologisch Diensten Centrum (Netherlands)'),
(33552, 'https://ror.org/045xnm641', 'no_lang_code', 1, 'https://ror.org/045xnm641 GlycoScientific (United States)'),
(33553, 'https://ror.org/045yjpn53', 'en', 1, 'https://ror.org/045yjpn53 Hebei Mental Health Center'),
(33554, 'https://ror.org/045yq4549', 'no_lang_code', 1, 'https://ror.org/045yq4549 LC-Tec Displays (Sweden)'),
(33555, 'https://ror.org/04600bt44', 'en', 1, 'https://ror.org/04600bt44 Ministry for Culture and Heritage'),
(33556, 'https://ror.org/046107075', 'en', 1, 'https://ror.org/046107075 Oregon Sea Grant'),
(33557, 'https://ror.org/0461jpd45', 'no_lang_code', 1, 'https://ror.org/0461jpd45 Science and Technology Applications (United States)'),
(33558, 'https://ror.org/0462e7n29', 'en', 1, 'https://ror.org/0462e7n29 Heilongjiang Postdoctoral Fund'),
(33559, 'https://ror.org/0462xwv27', 'fr', 1, 'https://ror.org/0462xwv27 UniversitƩ Nangui Abrogoua'),
(33560, 'https://ror.org/0463x0716', 'no_lang_code', 1, 'https://ror.org/0463x0716 Red Glead Discovery (Sweden)'),
(33561, 'https://ror.org/04650gr34', 'en', 1, 'https://ror.org/04650gr34 Centre for Research in Astrophysics of QuƩbec'),
(33562, 'https://ror.org/0465y5v04', 'no_lang_code', 1, 'https://ror.org/0465y5v04 Epsilon Systems (United States)'),
(33563, 'https://ror.org/0467qa071', 'en', 1, 'https://ror.org/0467qa071 Nordic Museum'),
(33564, 'https://ror.org/04697zk19', 'no_lang_code', 1, 'https://ror.org/04697zk19 Innovative Configuration (United States)'),
(33565, 'https://ror.org/046eh8t80', 'en', 1, 'https://ror.org/046eh8t80 CHDI Foundation'),
(33566, 'https://ror.org/046ejs207', 'no_lang_code', 1, 'https://ror.org/046ejs207 Red Ninja (United Kingdom)'),
(33567, 'https://ror.org/046ep5e79', 'no_lang_code', 1, 'https://ror.org/046ep5e79 KGS Group (Canada)'),
(33568, 'https://ror.org/046fp0073', 'no_lang_code', 1, 'https://ror.org/046fp0073 ParaTools (United States)'),
(33569, 'https://ror.org/046ftar42', 'no_lang_code', 1, 'https://ror.org/046ftar42 Cortana (United States)'),
(33570, 'https://ror.org/046k8b628', 'en', 1, 'https://ror.org/046k8b628 United Indian Health Services'),
(33571, 'https://ror.org/046n57345', 'en', 1, 'https://ror.org/046n57345 Hefei Institutes of Physical Science åˆč‚„ē‰©č“Øē§‘å­¦ē ”ē©¶é™¢'),
(33572, 'https://ror.org/046nkt812', 'no_lang_code', 1, 'https://ror.org/046nkt812 8 Rivers Capital (United States)'),
(33573, 'https://ror.org/046qmva50', 'no_lang_code', 1, 'https://ror.org/046qmva50 SA Technologies (United States)'),
(33574, 'https://ror.org/046secg30', 'en', 1, 'https://ror.org/046secg30 Lee Foundation'),
(33575, 'https://ror.org/046t0ph31', 'no_lang_code', 1, 'https://ror.org/046t0ph31 Elevance Renewable Sciences (United States)'),
(33576, 'https://ror.org/046v2xt32', 'no_lang_code', 1, 'https://ror.org/046v2xt32 Lexicon Technologies (United States)'),
(33577, 'https://ror.org/046y2e354', 'no_lang_code', 1, 'https://ror.org/046y2e354 Cinside (Sweden)'),
(33578, 'https://ror.org/046zezr58', 'en', 1, 'https://ror.org/046zezr58 Office of Disease Prevention'),
(33579, 'https://ror.org/046zwst09', 'no_lang_code', 1, 'https://ror.org/046zwst09 Reliable System Services (United States)'),
(33580, 'https://ror.org/04725j767', 'en', 1, 'https://ror.org/04725j767 Shasta Bible College and Graduate School'),
(33581, 'https://ror.org/04731xt44', 'en', 1, 'https://ror.org/04731xt44 National Space Biomedical Research Institute'),
(33582, 'https://ror.org/0473khm44', 'pt', 1, 'https://ror.org/0473khm44 Fundação de Amparo à Pesquisa do Estado da Bahia'),
(33583, 'https://ror.org/047406z28', 'no_lang_code', 1, 'https://ror.org/047406z28 RHI Magnesita (Canada)'),
(33584, 'https://ror.org/04749me90', 'no_lang_code', 1, 'https://ror.org/04749me90 AmeriPrint (United States)'),
(33585, 'https://ror.org/0479dbk76', 'no_lang_code', 1, 'https://ror.org/0479dbk76 Allcomp (United States)'),
(33586, 'https://ror.org/047an3241', 'en', 1, 'https://ror.org/047an3241 Supreme Council Of Health'),
(33587, 'https://ror.org/047aw1y82', 'en', 1, 'https://ror.org/047aw1y82 Second Hospital of Anhui Medical University'),
(33588, 'https://ror.org/047btv285', 'no_lang_code', 1, 'https://ror.org/047btv285 Sydney Steel (Canada)'),
(33589, 'https://ror.org/047dhbt11', 'no_lang_code', 1, 'https://ror.org/047dhbt11 Marotta Controls (United States)'),
(33590, 'https://ror.org/047egay20', 'en', 1, 'https://ror.org/047egay20 Maj and Tor Nessling Foundation'),
(33591, 'https://ror.org/047fr0y29', 'en', 1, 'https://ror.org/047fr0y29 Washington Sea Grant'),
(33592, 'https://ror.org/047gav625', 'no_lang_code', 1, 'https://ror.org/047gav625 Skyonic (United States)'),
(33593, 'https://ror.org/047hk9367', 'en', 1, 'https://ror.org/047hk9367 Royal Australasian College of Physicians'),
(33594, 'https://ror.org/047hn5n73', 'no_lang_code', 1, 'https://ror.org/047hn5n73 Elforsk (Sweden)'),
(33595, 'https://ror.org/047j0y804', 'no_lang_code', 1, 'https://ror.org/047j0y804 Radiant Genomics (United States)'),
(33596, 'https://ror.org/047jywd74', 'en', 1, 'https://ror.org/047jywd74 Kids Kidney Research'),
(33597, 'https://ror.org/047kbmp67', 'no_lang_code', 1, 'https://ror.org/047kbmp67 Global Services (Slovakia)'),
(33598, 'https://ror.org/047kyy460', 'no_lang_code', 1, 'https://ror.org/047kyy460 Advanced Resources International (United States)'),
(33599, 'https://ror.org/047p1nv89', 'no_lang_code', 1, 'https://ror.org/047p1nv89 Neonode (Sweden)'),
(33600, 'https://ror.org/047pm4955', 'en', 1, 'https://ror.org/047pm4955 Croce Rossa Svizzera Croix-Rouge suisse Schweizerisches Rote Kreuz Swiss Red Cross'),
(33601, 'https://ror.org/047t8cy26', 'no_lang_code', 1, 'https://ror.org/047t8cy26 Research Solutions International (United States)'),
(33602, 'https://ror.org/047wvvg23', 'en', 1, 'https://ror.org/047wvvg23 Center for Translational Molecular Medicine'),
(33603, 'https://ror.org/047yqrk88', 'no_lang_code', 1, 'https://ror.org/047yqrk88 Metabiota (United States)'),
(33604, 'https://ror.org/047zhzq42', 'no_lang_code', 1, 'https://ror.org/047zhzq42 Motorola (Canada)'),
(33605, 'https://ror.org/048116458', 'en', 1, 'https://ror.org/048116458 Department of Transportation, Infrastructure and Energy'),
(33606, 'https://ror.org/0481e1q24', 'en', 1, 'https://ror.org/0481e1q24 Hogeschool Rotterdam Rotterdam University of Applied Sciences'),
(33607, 'https://ror.org/0481xe004', 'no_lang_code', 1, 'https://ror.org/0481xe004 Arotech (United States)'),
(33608, 'https://ror.org/0481zh362', 'no_lang_code', 1, 'https://ror.org/0481zh362 Preeye Solutions (Sweden)'),
(33609, 'https://ror.org/04830x266', 'en', 1, 'https://ror.org/04830x266 Paracel Laboratories'),
(33610, 'https://ror.org/04882a678', 'no_lang_code', 1, 'https://ror.org/04882a678 MidDec Scandinavia (Sweden)'),
(33611, 'https://ror.org/0489qz649', 'fr', 1, 'https://ror.org/0489qz649 Fondation ARC pour la Recherche sur le Cancer'),
(33612, 'https://ror.org/048b0ns33', 'en', 1, 'https://ror.org/048b0ns33 Aga Khan Foundation'),
(33613, 'https://ror.org/048cnym07', 'no_lang_code', 1, 'https://ror.org/048cnym07 Vextec (United States)'),
(33614, 'https://ror.org/048d8vj36', 'no_lang_code', 1, 'https://ror.org/048d8vj36 Global Technology Connection (United States)'),
(33615, 'https://ror.org/048f9kd86', 'no_lang_code', 1, 'https://ror.org/048f9kd86 Applied Defense Solutions (United States)'),
(33616, 'https://ror.org/048gf2b30', 'de', 1, 'https://ror.org/048gf2b30 AllerGen'),
(33617, 'https://ror.org/048jjce41', 'hu', 1, 'https://ror.org/048jjce41 Hadtörténeti Intézet és Múzeum'),
(33618, 'https://ror.org/048kv9325', 'no_lang_code', 1, 'https://ror.org/048kv9325 Applications Research (United States)'),
(33619, 'https://ror.org/048m3cq30', 'no_lang_code', 1, 'https://ror.org/048m3cq30 Paladin Labs (Canada)'),
(33620, 'https://ror.org/048mg0d76', 'sk', 1, 'https://ror.org/048mg0d76 ÚstrednÔ VojenskÔ Nemocnica Ružomberok'),
(33621, 'https://ror.org/048nn3q69', 'fr', 1, 'https://ror.org/048nn3q69 France AgriMer, Ɖtablissement National des Produits de l''Agriculture et de la Mer'),
(33622, 'https://ror.org/048p52p98', 'en', 1, 'https://ror.org/048p52p98 Canada Auto Workers'),
(33623, 'https://ror.org/048q23a93', 'en', 1, 'https://ror.org/048q23a93 Xuzhou Central Hospital'),
(33624, 'https://ror.org/048qkq105', 'en', 1, 'https://ror.org/048qkq105 Wolfgang Pauli Institute'),
(33625, 'https://ror.org/048r2d478', 'en', 1, 'https://ror.org/048r2d478 Computer Based Training for Cognitive Behavioral Therapy'),
(33626, 'https://ror.org/048r9g705', 'en', 1, 'https://ror.org/048r9g705 Royal Albert Memorial Museum'),
(33627, 'https://ror.org/048tdcg16', 'en', 1, 'https://ror.org/048tdcg16 Ohio Lake Erie Commission'),
(33628, 'https://ror.org/048xjjh50', 'en', 1, 'https://ror.org/048xjjh50 Ministre du dĆ©veloppement des ressources humaines Ministry of Human Resource Development मानव संसाधन विकास ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ மனிதவள ą®®ąÆ‡ą®®ąÆą®Ŗą®¾ą®ŸąÆą®ŸąÆ ą®…ą®®ąÆˆą®šąÆą®šą®•ą®®ąÆ'),
(33629, 'https://ror.org/048yqnw40', 'en', 1, 'https://ror.org/048yqnw40 Historic Deerfield'),
(33630, 'https://ror.org/048z8ts16', 'no_lang_code', 1, 'https://ror.org/048z8ts16 Kiverdi (United States)'),
(33631, 'https://ror.org/048zd9m77', 'en', 1, 'https://ror.org/048zd9m77 Foundation for Polish Science'),
(33632, 'https://ror.org/048zxak11', 'no_lang_code', 1, 'https://ror.org/048zxak11 TEAM'),
(33633, 'https://ror.org/04904kp41', 'no_lang_code', 1, 'https://ror.org/04904kp41 Spiber Technologies (Sweden)'),
(33634, 'https://ror.org/0492gsr48', 'en', 1, 'https://ror.org/0492gsr48 Brain Research Foundation'),
(33635, 'https://ror.org/04935k107', 'de', 1, 'https://ror.org/04935k107 Verein für Geschichte der Arbeiterbewegung'),
(33636, 'https://ror.org/0497dq098', 'en', 1, 'https://ror.org/0497dq098 British Columbia Broiler Hatching Egg Commission'),
(33637, 'https://ror.org/049835d66', 'no_lang_code', 1, 'https://ror.org/049835d66 Institute of Political History (Hungary)'),
(33638, 'https://ror.org/0498yg883', 'en', 1, 'https://ror.org/0498yg883 Gutenberg College'),
(33639, 'https://ror.org/0499es143', 'en', 1, 'https://ror.org/0499es143 Olivet College'),
(33640, 'https://ror.org/0499r1e09', 'no_lang_code', 1, 'https://ror.org/0499r1e09 Archer Daniels Midland (United States)'),
(33641, 'https://ror.org/049b7hm56', 'en', 1, 'https://ror.org/049b7hm56 Horse Council BC'),
(33642, 'https://ror.org/049bwjd71', 'no_lang_code', 1, 'https://ror.org/049bwjd71 Alpha Star (United States)'),
(33643, 'https://ror.org/049c6rx58', 'en', 1, 'https://ror.org/049c6rx58 MTO Safety'),
(33644, 'https://ror.org/049e28v28', 'da', 1, 'https://ror.org/049e28v28 National Science Ethics Committee Nationale Videnskabsetiske KomitƩ'),
(33645, 'https://ror.org/049f48g82', 'no_lang_code', 1, 'https://ror.org/049f48g82 F&S Building Innovations (United States)'),
(33646, 'https://ror.org/049fnxe71', 'en', 1, 'https://ror.org/049fnxe71 Bioprocessing Technology Institute'),
(33647, 'https://ror.org/049fv0n19', 'no_lang_code', 1, 'https://ror.org/049fv0n19 Time Domain (United States)'),
(33648, 'https://ror.org/049g9p164', 'en', 1, 'https://ror.org/049g9p164 Austrian Research Agency for Post-War Justice'),
(33649, 'https://ror.org/049j2m240', 'en', 1, 'https://ror.org/049j2m240 Department of Health of Guangdong Province'),
(33650, 'https://ror.org/049k0qb06', 'no_lang_code', 1, 'https://ror.org/049k0qb06 Information Systems Laboratories (United States)'),
(33651, 'https://ror.org/049k26g38', 'en', 1, 'https://ror.org/049k26g38 Croatian Forest Research Institute'),
(33652, 'https://ror.org/049p7zw58', 'no_lang_code', 1, 'https://ror.org/049p7zw58 MesoScribe Technologies (United States)'),
(33653, 'https://ror.org/049p9kt19', 'en', 1, 'https://ror.org/049p9kt19 Netherlands Institute for Art History'),
(33654, 'https://ror.org/049prb569', 'en', 1, 'https://ror.org/049prb569 NHS Lanarkshire'),
(33655, 'https://ror.org/049tk1906', 'no_lang_code', 1, 'https://ror.org/049tk1906 Flex (Sweden)'),
(33656, 'https://ror.org/049vf5c24', 'en', 1, 'https://ror.org/049vf5c24 Endangered Wildlife Trust'),
(33657, 'https://ror.org/049xqkn84', 'en', 1, 'https://ror.org/049xqkn84 Administration canadienne de la sƻretƩ du transport aƩrien Canadian Air Transport Security Authority'),
(33658, 'https://ror.org/049zmb830', 'no_lang_code', 1, 'https://ror.org/049zmb830 Afognak Native Corporation (United States)'),
(33659, 'https://ror.org/04a0z4y72', 'no_lang_code', 1, 'https://ror.org/04a0z4y72 Nordic Aircraft (Sweden)'),
(33660, 'https://ror.org/04a0z8p03', 'no_lang_code', 1, 'https://ror.org/04a0z8p03 J.A. Woollam Company (United States)'),
(33661, 'https://ror.org/04a3gjw65', 'en', 1, 'https://ror.org/04a3gjw65 Ministry of Education ą¦¶ą¦æą¦•ą§ą¦·ą¦¾ ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(33662, 'https://ror.org/04a579b24', 'no_lang_code', 1, 'https://ror.org/04a579b24 Alpha Medical (Slovakia)'),
(33663, 'https://ror.org/04a7ab069', 'no_lang_code', 1, 'https://ror.org/04a7ab069 AEF Global (Canada)'),
(33664, 'https://ror.org/04a8v6p14', 'no_lang_code', 1, 'https://ror.org/04a8v6p14 Hisense (United States)'),
(33665, 'https://ror.org/04a95cm55', 'no_lang_code', 1, 'https://ror.org/04a95cm55 FMB Feinwerk- und Messtechnik (Germany)'),
(33666, 'https://ror.org/04abk6t05', 'en', 1, 'https://ror.org/04abk6t05 Department of Biodiversity, Conservation and Attractions'),
(33667, 'https://ror.org/04abv6630', 'en', 1, 'https://ror.org/04abv6630 Instituts für Krebsforschung Ludwig Boltzmann Institute for Cancer Research'),
(33668, 'https://ror.org/04acx6166', 'no_lang_code', 1, 'https://ror.org/04acx6166 Lassonde Industries (Canada)'),
(33669, 'https://ror.org/04ad94n97', 'no_lang_code', 1, 'https://ror.org/04ad94n97 Comptoir Agricole Sabrevois (Canada)'),
(33670, 'https://ror.org/04aedks88', 'no_lang_code', 1, 'https://ror.org/04aedks88 Rainbow Communications (United States)'),
(33671, 'https://ror.org/04aejqj79', 'no_lang_code', 1, 'https://ror.org/04aejqj79 RDRtec (United States)'),
(33672, 'https://ror.org/04ahd1307', 'no_lang_code', 1, 'https://ror.org/04ahd1307 Foam Matrix (United States)'),
(33673, 'https://ror.org/04anrg987', 'en', 1, 'https://ror.org/04anrg987 Plimoth Plantation'),
(33674, 'https://ror.org/04ap8h142', 'en', 1, 'https://ror.org/04ap8h142 Arid Forest Research Institute'),
(33675, 'https://ror.org/04ap8m727', 'no_lang_code', 1, 'https://ror.org/04ap8m727 FiberSensing (Portugal)'),
(33676, 'https://ror.org/04apt4x36', 'en', 1, 'https://ror.org/04apt4x36 Regional Municipality of Waterloo'),
(33677, 'https://ror.org/04aqat463', 'en', 1, 'https://ror.org/04aqat463 Zhejiang Provincial Natural Science Foundation ęµ™ę±Ÿēœč‡Ŗē„¶ē§‘å­¦åŸŗé‡‘å§”å‘˜ä¼š'),
(33678, 'https://ror.org/04asd3g14', 'en', 1, 'https://ror.org/04asd3g14 Greater Portland Landmarks'),
(33679, 'https://ror.org/04atp4p48', 'en', 1, 'https://ror.org/04atp4p48 China Scholarship Council å›½å®¶ē•™å­¦åŸŗé‡‘ē®”ē†å§”å‘˜ä¼š'),
(33680, 'https://ror.org/04ayzes68', 'en', 1, 'https://ror.org/04ayzes68 Research Associates of Syracuse'),
(33681, 'https://ror.org/04az2a138', 'en', 1, 'https://ror.org/04az2a138 Stockholm Science City Foundation'),
(33682, 'https://ror.org/04b019n96', 'no_lang_code', 1, 'https://ror.org/04b019n96 LiveData (United States)'),
(33683, 'https://ror.org/04b0s8g05', 'no_lang_code', 1, 'https://ror.org/04b0s8g05 Husky Energy (Canada)'),
(33684, 'https://ror.org/04b102659', 'de', 1, 'https://ror.org/04b102659 Klinik Barmelweid'),
(33685, 'https://ror.org/04b12nt82', 'no_lang_code', 1, 'https://ror.org/04b12nt82 PNSensor (Germany)'),
(33686, 'https://ror.org/04b1cqt16', 'no_lang_code', 1, 'https://ror.org/04b1cqt16 DNA Chip Research (Japan) ę Ŗå¼ä¼šē¤¾DNAćƒćƒƒćƒ—ē ”ē©¶ę‰€'),
(33687, 'https://ror.org/04b1eqn95', 'no_lang_code', 1, 'https://ror.org/04b1eqn95 Bodkin Design & Engineering (United States)'),
(33688, 'https://ror.org/04b3ehq94', 'en', 1, 'https://ror.org/04b3ehq94 Australian Wildlife Conservancy'),
(33689, 'https://ror.org/04b46da24', 'no_lang_code', 1, 'https://ror.org/04b46da24 Mayflower Communications (United States)'),
(33690, 'https://ror.org/04b4jcw62', 'no_lang_code', 1, 'https://ror.org/04b4jcw62 Geostock (United States)'),
(33691, 'https://ror.org/04b4pz972', 'no_lang_code', 1, 'https://ror.org/04b4pz972 Modus Operandi (United States)'),
(33692, 'https://ror.org/04b4rxp95', 'en', 1, 'https://ror.org/04b4rxp95 Nuts, Bolts and Thingamajigs'),
(33693, 'https://ror.org/04b621m59', 'en', 1, 'https://ror.org/04b621m59 Stockholm School of Entrepreneurship'),
(33694, 'https://ror.org/04b6d3182', 'no_lang_code', 1, 'https://ror.org/04b6d3182 Western Slovakian Energy Corporation ZƔpadoslovenskƔ Energetika (Slovakia)'),
(33695, 'https://ror.org/04b6jkz71', 'en', 1, 'https://ror.org/04b6jkz71 China Ocean Mineral Resource R&D Association'),
(33696, 'https://ror.org/04b7xxn32', 'en', 1, 'https://ror.org/04b7xxn32 United States Social Security Administration'),
(33697, 'https://ror.org/04b9sdb26', 'no_lang_code', 1, 'https://ror.org/04b9sdb26 Tri Alpha Energy (United States)'),
(33698, 'https://ror.org/04b9y0b76', 'en', 1, 'https://ror.org/04b9y0b76 Government Hospital of Thoracic Medicine'),
(33699, 'https://ror.org/04bac2365', 'en', 1, 'https://ror.org/04bac2365 Interface Symposia'),
(33700, 'https://ror.org/04bbq7097', 'no_lang_code', 1, 'https://ror.org/04bbq7097 Spirit Lake Consulting (United States)'),
(33701, 'https://ror.org/04bbzfz74', 'sk', 1, 'https://ror.org/04bbzfz74 Stredoslovenské múzeum'),
(33702, 'https://ror.org/04bdm2a74', 'en', 1, 'https://ror.org/04bdm2a74 CUNY Energy Institute'),
(33703, 'https://ror.org/04be58j18', 'no_lang_code', 1, 'https://ror.org/04be58j18 Folke RydƩn Production (Sweden)'),
(33704, 'https://ror.org/04bjdr366', 'en', 1, 'https://ror.org/04bjdr366 Institut Fur Friedensforschung Und Sicherheitspolitik Institute for Peace Research and Security Policy'),
(33705, 'https://ror.org/04bjg9m96', 'en', 1, 'https://ror.org/04bjg9m96 Defense Acquisition Program Administration'),
(33706, 'https://ror.org/04bjytq67', 'sv', 1, 'https://ror.org/04bjytq67 Jan Wallanders och Tom Hedelius stiftelse'),
(33707, 'https://ror.org/04bk4t231', 'en', 1, 'https://ror.org/04bk4t231 National Tax Service'),
(33708, 'https://ror.org/04bpasa69', 'en', 1, 'https://ror.org/04bpasa69 Appalachian Regional Commission'),
(33709, 'https://ror.org/04bpn6s66', 'en', 1, 'https://ror.org/04bpn6s66 Beijing Municipal Education Commission'),
(33710, 'https://ror.org/04btpac66', 'no_lang_code', 1, 'https://ror.org/04btpac66 KWD (Slovakia)'),
(33711, 'https://ror.org/04bxn2127', 'en', 1, 'https://ror.org/04bxn2127 Japan Food Research Laboratories ę—„ęœ¬é£Ÿå“ē ”ē©¶ę‰€'),
(33712, 'https://ror.org/04bxtw313', 'no_lang_code', 1, 'https://ror.org/04bxtw313 SfƩra (Slovakia)'),
(33713, 'https://ror.org/04bxzgg25', 'fr', 1, 'https://ror.org/04bxzgg25 Cemsuisse'),
(33714, 'https://ror.org/04bz45c46', 'en', 1, 'https://ror.org/04bz45c46 Bernstein Center for Computational Neuroscience Munich'),
(33715, 'https://ror.org/04bzg5466', 'en', 1, 'https://ror.org/04bzg5466 University of Chicago Research Bangladesh'),
(33716, 'https://ror.org/04c2kcw65', 'no_lang_code', 1, 'https://ror.org/04c2kcw65 Seibersdorf Laboratories (Austria)'),
(33717, 'https://ror.org/04c31tk69', 'no_lang_code', 1, 'https://ror.org/04c31tk69 Texel (Canada)'),
(33718, 'https://ror.org/04c326720', 'no_lang_code', 1, 'https://ror.org/04c326720 Axcentua (Sweden)'),
(33719, 'https://ror.org/04c4bwh63', 'en', 1, 'https://ror.org/04c4bwh63 Cologne Excellence Cluster on Cellular Stress Responses in Aging Associated Diseases Exzellenzcluster Cellular Stress Responses in Aging-Associated Diseases'),
(33720, 'https://ror.org/04c66ah90', 'no_lang_code', 1, 'https://ror.org/04c66ah90 Antex Western (Canada)'),
(33721, 'https://ror.org/04c691616', 'en', 1, 'https://ror.org/04c691616 Technological Educational Institute of Peloponnese ΤΕΙ Ī ĪµĪ»ĪæĻ€ĪæĪ½Ī½Ī®ĻƒĪæĻ…'),
(33722, 'https://ror.org/04c767n32', 'en', 1, 'https://ror.org/04c767n32 Southern Regional Council'),
(33723, 'https://ror.org/04c9me270', 'no_lang_code', 1, 'https://ror.org/04c9me270 Milcord (United States)'),
(33724, 'https://ror.org/04cey8951', 'en', 1, 'https://ror.org/04cey8951 Lancaster Bible College'),
(33725, 'https://ror.org/04ch2gv47', 'en', 1, 'https://ror.org/04ch2gv47 Government of Saskatchewan'),
(33726, 'https://ror.org/04chpf767', 'fr', 1, 'https://ror.org/04chpf767 SociƩtƩ de DƩveloppement de I''industrie Maricole'),
(33727, 'https://ror.org/04chtc989', 'no_lang_code', 1, 'https://ror.org/04chtc989 Crearum (Sweden)'),
(33728, 'https://ror.org/04cj0jk63', 'de', 1, 'https://ror.org/04cj0jk63 Landesmuseum KƤrnten'),
(33729, 'https://ror.org/04cma1r71', 'en', 1, 'https://ror.org/04cma1r71 Group for the Analysis of Development Grupo de AnƔlisis para el Desarrollo'),
(33730, 'https://ror.org/04cmszv87', 'en', 1, 'https://ror.org/04cmszv87 Wallace H. Coulter Foundation'),
(33731, 'https://ror.org/04cn82p68', 'no_lang_code', 1, 'https://ror.org/04cn82p68 Manning Diversified Forest Products (Canada)'),
(33732, 'https://ror.org/04cr2kz28', 'no_lang_code', 1, 'https://ror.org/04cr2kz28 Genesis Industries (United States)'),
(33733, 'https://ror.org/04cs8dp04', 'en', 1, 'https://ror.org/04cs8dp04 West Coast Trollers Association'),
(33734, 'https://ror.org/04cvg8m78', 'no_lang_code', 1, 'https://ror.org/04cvg8m78 Future Vehicle Technologies (Canada)'),
(33735, 'https://ror.org/04cw9df25', 'no_lang_code', 1, 'https://ror.org/04cw9df25 Pacific Engineering (United States)'),
(33736, 'https://ror.org/04cwxh229', 'en', 1, 'https://ror.org/04cwxh229 Nova Scotia Department of Energy'),
(33737, 'https://ror.org/04cxwzs93', 'en', 1, 'https://ror.org/04cxwzs93 IT Foundation for the Visually Impaired'),
(33738, 'https://ror.org/04d832p61', 'no_lang_code', 1, 'https://ror.org/04d832p61 Nutronics (United States)'),
(33739, 'https://ror.org/04d8cf622', 'en', 1, 'https://ror.org/04d8cf622 International Partnership for the Hydrogen and Fuel Cell in the Economy'),
(33740, 'https://ror.org/04d8ywj90', 'en', 1, 'https://ror.org/04d8ywj90 Multiple Sclerosis Society of Canada SociƩtƩ canadienne de la sclƩrose en plaques'),
(33741, 'https://ror.org/04d96be50', 'no_lang_code', 1, 'https://ror.org/04d96be50 Parker Hannifin (United States)'),
(33742, 'https://ror.org/04d9sry41', 'no_lang_code', 1, 'https://ror.org/04d9sry41 Novosense (Sweden)'),
(33743, 'https://ror.org/04ddd7237', 'en', 1, 'https://ror.org/04ddd7237 Congress of Neurological Surgeons'),
(33744, 'https://ror.org/04dft6z85', 'en', 1, 'https://ror.org/04dft6z85 Conner Prairie'),
(33745, 'https://ror.org/04dhm2b57', 'no_lang_code', 1, 'https://ror.org/04dhm2b57 Ericsson (Denmark)'),
(33746, 'https://ror.org/04djvx395', 'en', 1, 'https://ror.org/04djvx395 Foundation for Research Support of the Federal District'),
(33747, 'https://ror.org/04djzj803', 'no_lang_code', 1, 'https://ror.org/04djzj803 Signature Research (United States)'),
(33748, 'https://ror.org/04dmcck46', 'no_lang_code', 1, 'https://ror.org/04dmcck46 RAM Photonics (United States)'),
(33749, 'https://ror.org/04dnqhj72', 'en', 1, 'https://ror.org/04dnqhj72 Central Christian College of Kansas'),
(33750, 'https://ror.org/04drjs621', 'en', 1, 'https://ror.org/04drjs621 Research to Prevent Blindness'),
(33751, 'https://ror.org/04dv8zc45', 'no_lang_code', 1, 'https://ror.org/04dv8zc45 Capital Power (Canada)'),
(33752, 'https://ror.org/04dvghk72', 'no_lang_code', 1, 'https://ror.org/04dvghk72 Wireless 2000 RF & UWB Technologies (Canada)'),
(33753, 'https://ror.org/04dxp6p61', 'no_lang_code', 1, 'https://ror.org/04dxp6p61 Koenigsegg Automotive (Sweden)'),
(33754, 'https://ror.org/04dyhjr58', 'no_lang_code', 1, 'https://ror.org/04dyhjr58 Medtronic (Ireland)'),
(33755, 'https://ror.org/04dz3dj65', 'no_lang_code', 1, 'https://ror.org/04dz3dj65 Totech (Sweden)'),
(33756, 'https://ror.org/04dzt3j15', 'no_lang_code', 1, 'https://ror.org/04dzt3j15 Osiris (Hungary)'),
(33757, 'https://ror.org/04e10gs59', 'no_lang_code', 1, 'https://ror.org/04e10gs59 Boisaco (Canada)'),
(33758, 'https://ror.org/04e1s4y56', 'no_lang_code', 1, 'https://ror.org/04e1s4y56 The Design Knowledge Company (United States)'),
(33759, 'https://ror.org/04e209f39', 'en', 1, 'https://ror.org/04e209f39 Loewe Center for Synthetic Microbiology Loewe-Zentrum für Synthetische Mikrobiologie'),
(33760, 'https://ror.org/04e2ah412', 'en', 1, 'https://ror.org/04e2ah412 University of Atlanta'),
(33761, 'https://ror.org/04e3zg361', 'en', 1, 'https://ror.org/04e3zg361 Rosetrees Trust'),
(33762, 'https://ror.org/04e5g4k17', 'en', 1, 'https://ror.org/04e5g4k17 Technological University Myitkyina į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ (မြစ်ကြီးနား)'),
(33763, 'https://ror.org/04e5kcp15', 'no_lang_code', 1, 'https://ror.org/04e5kcp15 RONA (Slovakia)'),
(33764, 'https://ror.org/04e6jcd64', 'en', 1, 'https://ror.org/04e6jcd64 Thrombosis Research Institute'),
(33765, 'https://ror.org/04e77ta80', 'no_lang_code', 1, 'https://ror.org/04e77ta80 Genovis (Sweden)'),
(33766, 'https://ror.org/04e98j339', 'en', 1, 'https://ror.org/04e98j339 United States-Israel Binational Agricultural Research and Development Fund'),
(33767, 'https://ror.org/04e9fmf35', 'no_lang_code', 1, 'https://ror.org/04e9fmf35 EQUA Simulation (Sweden)'),
(33768, 'https://ror.org/04ea6k136', 'no_lang_code', 1, 'https://ror.org/04ea6k136 Assocalzaturifici (Italy)'),
(33769, 'https://ror.org/04eanvj85', 'no_lang_code', 1, 'https://ror.org/04eanvj85 Audio Analytic (United Kingdom)'),
(33770, 'https://ror.org/04ebjet06', 'en', 1, 'https://ror.org/04ebjet06 Michigan Disability Rights Coalition'),
(33771, 'https://ror.org/04ecck436', 'en', 1, 'https://ror.org/04ecck436 Public Utilities Board'),
(33772, 'https://ror.org/04eddkf89', 'no_lang_code', 1, 'https://ror.org/04eddkf89 Illinois Rocstar (United States)'),
(33773, 'https://ror.org/04edzrx46', 'hu', 1, 'https://ror.org/04edzrx46 Forster Kƶzpont'),
(33774, 'https://ror.org/04ehcx813', 'no_lang_code', 1, 'https://ror.org/04ehcx813 FTL Systems (United States)'),
(33775, 'https://ror.org/04ehqrw09', 'en', 1, 'https://ror.org/04ehqrw09 Institute for Foreign Affairs and Trade'),
(33776, 'https://ror.org/04ene8p36', 'en', 1, 'https://ror.org/04ene8p36 Commission for Scientific Investigations in Greenland Kommissionen for Videnskabelige UndersĆøgelser i GrĆønland'),
(33777, 'https://ror.org/04enz2k98', 'en', 1, 'https://ror.org/04enz2k98 Chengdu Normal University'),
(33778, 'https://ror.org/04epbgw81', 'no_lang_code', 1, 'https://ror.org/04epbgw81 Lakota Technical Solutions (United States)'),
(33779, 'https://ror.org/04erqh270', 'no_lang_code', 1, 'https://ror.org/04erqh270 Liberating Technologies (United States)'),
(33780, 'https://ror.org/04etphg07', 'en', 1, 'https://ror.org/04etphg07 Conservation Leadership Programme'),
(33781, 'https://ror.org/04evq8811', 'en', 1, 'https://ror.org/04evq8811 State Library of New South Wales'),
(33782, 'https://ror.org/04ez3hr33', 'en', 1, 'https://ror.org/04ez3hr33 Athens City'),
(33783, 'https://ror.org/04ezkb708', 'no_lang_code', 1, 'https://ror.org/04ezkb708 Biorealis (Slovakia)'),
(33784, 'https://ror.org/04f097438', 'en', 1, 'https://ror.org/04f097438 National Evidenc- based healthcare Collaborating Agency'),
(33785, 'https://ror.org/04f1s4r56', 'en', 1, 'https://ror.org/04f1s4r56 Psychiatric Rehabilitation Association'),
(33786, 'https://ror.org/04f3bkd55', 'no_lang_code', 1, 'https://ror.org/04f3bkd55 Cascade (United States)'),
(33787, 'https://ror.org/04f4r6066', 'no_lang_code', 1, 'https://ror.org/04f4r6066 Talentum (Sweden)'),
(33788, 'https://ror.org/04f5gee24', 'no_lang_code', 1, 'https://ror.org/04f5gee24 Nelson Engineering (United States)'),
(33789, 'https://ror.org/04f5ngh80', 'en', 1, 'https://ror.org/04f5ngh80 Independent Broadcasting Associates'),
(33790, 'https://ror.org/04f5qb772', 'no_lang_code', 1, 'https://ror.org/04f5qb772 Inventech Europe (Sweden)'),
(33791, 'https://ror.org/04f6m0p71', 'no_lang_code', 1, 'https://ror.org/04f6m0p71 AOSOL (Portugal)'),
(33792, 'https://ror.org/04f786589', 'no_lang_code', 1, 'https://ror.org/04f786589 Chunghwa Telecom (Taiwan)'),
(33793, 'https://ror.org/04f919z92', 'no_lang_code', 1, 'https://ror.org/04f919z92 Perrigo (Belgium)'),
(33794, 'https://ror.org/04f9t1x17', 'en', 1, 'https://ror.org/04f9t1x17 Novartis Foundation'),
(33795, 'https://ror.org/04fa4r544', 'en', 1, 'https://ror.org/04fa4r544 ORCID'),
(33796, 'https://ror.org/04fb6qy86', 'no_lang_code', 1, 'https://ror.org/04fb6qy86 Dongfeng General Hospital'),
(33797, 'https://ror.org/04fc1p069', 'no_lang_code', 1, 'https://ror.org/04fc1p069 Smiths Detection (United States)'),
(33798, 'https://ror.org/04fc5qm41', 'no_lang_code', 1, 'https://ror.org/04fc5qm41 Toyota Kosei Hospital č±Šē”°åŽšē”Ÿē—…é™¢'),
(33799, 'https://ror.org/04fdrwm29', 'no_lang_code', 1, 'https://ror.org/04fdrwm29 Odyssey Investment Partners (United States)'),
(33800, 'https://ror.org/04fe2dt25', 'no_lang_code', 1, 'https://ror.org/04fe2dt25 Renaissance Sciences Corporation (United States)'),
(33801, 'https://ror.org/04fe9w827', 'no_lang_code', 1, 'https://ror.org/04fe9w827 Vehicle Control Technologies (United States)'),
(33802, 'https://ror.org/04fexsb73', 'en', 1, 'https://ror.org/04fexsb73 Emmaus Bible College'),
(33803, 'https://ror.org/04fn4g645', 'en', 1, 'https://ror.org/04fn4g645 Master''s College'),
(33804, 'https://ror.org/04fphdf97', 'no_lang_code', 1, 'https://ror.org/04fphdf97 Avtech (Sweden)'),
(33805, 'https://ror.org/04fr9je54', 'en', 1, 'https://ror.org/04fr9je54 Chartered Institute of Logistics and Transport'),
(33806, 'https://ror.org/04frprb97', 'no_lang_code', 1, 'https://ror.org/04frprb97 Odyssian Technology (United States)'),
(33807, 'https://ror.org/04fskt963', 'en', 1, 'https://ror.org/04fskt963 Bupa UK Foundation'),
(33808, 'https://ror.org/04fszpp16', 'en', 1, 'https://ror.org/04fszpp16 Dongyang People''s Hospital'),
(33809, 'https://ror.org/04ftnqm48', 'no_lang_code', 1, 'https://ror.org/04ftnqm48 Versatilis (United States)'),
(33810, 'https://ror.org/04fvc0724', 'no_lang_code', 1, 'https://ror.org/04fvc0724 Sage Technologies (United States)'),
(33811, 'https://ror.org/04fves619', 'en', 1, 'https://ror.org/04fves619 Forest Institute'),
(33812, 'https://ror.org/04fzzvb87', 'sk', 1, 'https://ror.org/04fzzvb87 Aqua Vita - ŽivÔ voda'),
(33813, 'https://ror.org/04g0byc83', 'no_lang_code', 1, 'https://ror.org/04g0byc83 Stilman Advanced Strategies (United States)'),
(33814, 'https://ror.org/04g0qyf70', 'no_lang_code', 1, 'https://ror.org/04g0qyf70 TopVisible (Sweden)'),
(33815, 'https://ror.org/04g20q935', 'en', 1, 'https://ror.org/04g20q935 Scleroderma Foundation'),
(33816, 'https://ror.org/04g3dhy48', 'no_lang_code', 1, 'https://ror.org/04g3dhy48 American Semiconductor (United States)'),
(33817, 'https://ror.org/04g507h60', 'no_lang_code', 1, 'https://ror.org/04g507h60 AirScience Technologies (Canada)'),
(33818, 'https://ror.org/04g6qfd94', 'en', 1, 'https://ror.org/04g6qfd94 European Foundation for Alcohol Research'),
(33819, 'https://ror.org/04g99jx54', 'en', 1, 'https://ror.org/04g99jx54 Fachhochschule Stralsund University of Applied Sciences Stralsund'),
(33820, 'https://ror.org/04gacff49', 'no_lang_code', 1, 'https://ror.org/04gacff49 GreenValue (Switzerland)'),
(33821, 'https://ror.org/04gbjf340', 'en', 1, 'https://ror.org/04gbjf340 Nyack College'),
(33822, 'https://ror.org/04gf4dd67', 'no_lang_code', 1, 'https://ror.org/04gf4dd67 Systems & Processes Engineering Corporation (United States)'),
(33823, 'https://ror.org/04gffem11', 'en', 1, 'https://ror.org/04gffem11 American Orthopaedic Association'),
(33824, 'https://ror.org/04gg6xa16', 'no_lang_code', 1, 'https://ror.org/04gg6xa16 Monnaie royale canadienne Royal Canadian Mint (Canada)'),
(33825, 'https://ror.org/04gggzb44', 'no_lang_code', 1, 'https://ror.org/04gggzb44 Spectranetix (United States)'),
(33826, 'https://ror.org/04ggv2982', 'en', 1, 'https://ror.org/04ggv2982 Piedmont College'),
(33827, 'https://ror.org/04gk5xv95', 'en', 1, 'https://ror.org/04gk5xv95 National Organization for Rare Disorders'),
(33828, 'https://ror.org/04gkgzp76', 'sk', 1, 'https://ror.org/04gkgzp76 Centire'),
(33829, 'https://ror.org/04gm72267', 'no_lang_code', 1, 'https://ror.org/04gm72267 VoiceAge (Canada)'),
(33830, 'https://ror.org/04gmhya03', 'en', 1, 'https://ror.org/04gmhya03 Pelican Cancer Foundation'),
(33831, 'https://ror.org/04gmrm344', 'it', 1, 'https://ror.org/04gmrm344 Fondazione Monte di Bologna and Ravenna'),
(33832, 'https://ror.org/04gp12571', 'no_lang_code', 1, 'https://ror.org/04gp12571 ChemoCentryx (United States)'),
(33833, 'https://ror.org/04gq2fa58', 'en', 1, 'https://ror.org/04gq2fa58 Zhejiang Institute of Science and Technology Information'),
(33834, 'https://ror.org/04gq4y167', 'no_lang_code', 1, 'https://ror.org/04gq4y167 UFA (United States)'),
(33835, 'https://ror.org/04gqzc140', 'no_lang_code', 1, 'https://ror.org/04gqzc140 Paton (Canada)'),
(33836, 'https://ror.org/04gsnvb07', 'no_lang_code', 1, 'https://ror.org/04gsnvb07 Thorlabs (United States)'),
(33837, 'https://ror.org/04gswc637', 'no_lang_code', 1, 'https://ror.org/04gswc637 STR Europe (France)'),
(33838, 'https://ror.org/04gtbbw62', 'no_lang_code', 1, 'https://ror.org/04gtbbw62 Equinor (Canada)'),
(33839, 'https://ror.org/04gvcex51', 'en', 1, 'https://ror.org/04gvcex51 Ministry of National Development'),
(33840, 'https://ror.org/04gvkax77', 'en', 1, 'https://ror.org/04gvkax77 Hangzhou Science and Technology Commission'),
(33841, 'https://ror.org/04gwzr713', 'fr', 1, 'https://ror.org/04gwzr713 IngƩsup'),
(33842, 'https://ror.org/04gyrp304', 'fr', 1, 'https://ror.org/04gyrp304 Fondation d''Aide pour la Recherche sur la Sclerose en Plaques'),
(33843, 'https://ror.org/04gz17b59', 'en', 1, 'https://ror.org/04gz17b59 Northern Jiangsu People''s Hospital ę±Ÿč‹ēœč‹åŒ—äŗŗę°‘åŒ»é™¢'),
(33844, 'https://ror.org/04gzn8442', 'no_lang_code', 1, 'https://ror.org/04gzn8442 Frontier Technology Incorporation (United States)'),
(33845, 'https://ror.org/04h08bc47', 'no_lang_code', 1, 'https://ror.org/04h08bc47 M4 Engineering (United States)'),
(33846, 'https://ror.org/04h174r26', 'no_lang_code', 1, 'https://ror.org/04h174r26 Dafo Fomtec (Sweden)'),
(33847, 'https://ror.org/04h1em726', 'en', 1, 'https://ror.org/04h1em726 Mount Washington College'),
(33848, 'https://ror.org/04h1q4c89', 'no_lang_code', 1, 'https://ror.org/04h1q4c89 Applied Materials (United States)'),
(33849, 'https://ror.org/04h2r8894', 'no_lang_code', 1, 'https://ror.org/04h2r8894 LuminUltra Technologies (Canada)'),
(33850, 'https://ror.org/04h2sqw81', 'no_lang_code', 1, 'https://ror.org/04h2sqw81 Aguettant (France)'),
(33851, 'https://ror.org/04h38r646', 'en', 1, 'https://ror.org/04h38r646 FoodDrinkEurope'),
(33852, 'https://ror.org/04h893p85', 'no_lang_code', 1, 'https://ror.org/04h893p85 Protobios (Estonia)'),
(33853, 'https://ror.org/04hadnb81', 'no_lang_code', 1, 'https://ror.org/04hadnb81 ConocoPhillips (United States)'),
(33854, 'https://ror.org/04hcen254', 'no_lang_code', 1, 'https://ror.org/04hcen254 Energy Research Company (United States)'),
(33855, 'https://ror.org/04hd1y677', 'en', 1, 'https://ror.org/04hd1y677 Hewlett Foundation'),
(33856, 'https://ror.org/04he8ec30', 'no_lang_code', 1, 'https://ror.org/04he8ec30 Finja (Sweden)');
INSERT INTO `rors` VALUES
(33857, 'https://ror.org/04hezhj72', 'no_lang_code', 1, 'https://ror.org/04hezhj72 Fibercryst (France)'),
(33858, 'https://ror.org/04hg0kz24', 'en', 1, 'https://ror.org/04hg0kz24 Van Ameringen Foundation'),
(33859, 'https://ror.org/04hgt1t77', 'en', 1, 'https://ror.org/04hgt1t77 Centenary College of New Jersey'),
(33860, 'https://ror.org/04hgyes27', 'no_lang_code', 1, 'https://ror.org/04hgyes27 Ideus (Sweden)'),
(33861, 'https://ror.org/04hh7yg67', 'no_lang_code', 1, 'https://ror.org/04hh7yg67 SunDanzer (United States)'),
(33862, 'https://ror.org/04hhyvs94', 'no_lang_code', 1, 'https://ror.org/04hhyvs94 TyrƩns (Sweden)'),
(33863, 'https://ror.org/04hhyx074', 'en', 1, 'https://ror.org/04hhyx074 Goldey–Beacom College'),
(33864, 'https://ror.org/04hjgjc21', 'en', 1, 'https://ror.org/04hjgjc21 Canadian Hydrogen and Fuel Cell Association'),
(33865, 'https://ror.org/04hk68s94', 'no_lang_code', 1, 'https://ror.org/04hk68s94 Gipeco (Sweden)'),
(33866, 'https://ror.org/04hkp7874', 'no_lang_code', 1, 'https://ror.org/04hkp7874 Eurorad (France)'),
(33867, 'https://ror.org/04hqrkw15', 'no_lang_code', 1, 'https://ror.org/04hqrkw15 Architectural Applications (United States)'),
(33868, 'https://ror.org/04hvmsy06', 'no_lang_code', 1, 'https://ror.org/04hvmsy06 Cochlear (Australia)'),
(33869, 'https://ror.org/04hx50087', 'no_lang_code', 1, 'https://ror.org/04hx50087 ScoreCloud (Sweden)'),
(33870, 'https://ror.org/04hx9nd03', 'no_lang_code', 1, 'https://ror.org/04hx9nd03 Atlantic Hydrogen (Canada)'),
(33871, 'https://ror.org/04hxkjw81', 'no_lang_code', 1, 'https://ror.org/04hxkjw81 Global Engineering Research and Technologies (United States)'),
(33872, 'https://ror.org/04hzq0286', 'no_lang_code', 1, 'https://ror.org/04hzq0286 Keystone Synergistic Enterprises (United States)'),
(33873, 'https://ror.org/04j0ce487', 'en', 1, 'https://ror.org/04j0ce487 Nasarawa State Ministry of Health'),
(33874, 'https://ror.org/04j0y0e37', 'en', 1, 'https://ror.org/04j0y0e37 Brown Foundation'),
(33875, 'https://ror.org/04j12y625', 'en', 1, 'https://ror.org/04j12y625 European Centre of Tort and Insurance Law Europäische Zentrum für Schadenersatz- und Versicherungsrecht'),
(33876, 'https://ror.org/04j23ff69', 'en', 1, 'https://ror.org/04j23ff69 Alaska Sea Grant'),
(33877, 'https://ror.org/04j48qz06', 'en', 1, 'https://ror.org/04j48qz06 VISTA Science & Technology'),
(33878, 'https://ror.org/04j4a6x59', 'en', 1, 'https://ror.org/04j4a6x59 MRC Lifecourse Epidemiology Unit'),
(33879, 'https://ror.org/04j62df57', 'no_lang_code', 1, 'https://ror.org/04j62df57 Atmospheric Observing Systems (United States)'),
(33880, 'https://ror.org/04j68sw28', 'en', 1, 'https://ror.org/04j68sw28 Heart Research UK'),
(33881, 'https://ror.org/04j808v60', 'en', 1, 'https://ror.org/04j808v60 Research Institute of Posts and Telecommunications'),
(33882, 'https://ror.org/04j8bfv31', 'no_lang_code', 1, 'https://ror.org/04j8bfv31 Sienna Technologies (United States)'),
(33883, 'https://ror.org/04j8pdt93', 'en', 1, 'https://ror.org/04j8pdt93 Chadwick University'),
(33884, 'https://ror.org/04j9acc95', 'no_lang_code', 1, 'https://ror.org/04j9acc95 Infrared Laboratories (United States)'),
(33885, 'https://ror.org/04j9nyn50', 'no_lang_code', 1, 'https://ror.org/04j9nyn50 Nielsen Engineering & Research (United States)'),
(33886, 'https://ror.org/04jc8gz43', 'no_lang_code', 1, 'https://ror.org/04jc8gz43 Archangel Systems (United States)'),
(33887, 'https://ror.org/04jeg4294', 'en', 1, 'https://ror.org/04jeg4294 Ideon Agro Food'),
(33888, 'https://ror.org/04jfj6996', 'no_lang_code', 1, 'https://ror.org/04jfj6996 Triangle Polymer Technologies (United States)'),
(33889, 'https://ror.org/04jfp6348', 'no_lang_code', 1, 'https://ror.org/04jfp6348 Soraa (United States)'),
(33890, 'https://ror.org/04jg69j33', 'en', 1, 'https://ror.org/04jg69j33 Hainan Medical College Hospital'),
(33891, 'https://ror.org/04jgfn484', 'no_lang_code', 1, 'https://ror.org/04jgfn484 Applied Technology Associates (United States)'),
(33892, 'https://ror.org/04jhpx964', 'en', 1, 'https://ror.org/04jhpx964 Washington Employment Security Department'),
(33893, 'https://ror.org/04jhtcf60', 'no_lang_code', 1, 'https://ror.org/04jhtcf60 Orora Design Technologies (United States)'),
(33894, 'https://ror.org/04jn6q565', 'no_lang_code', 1, 'https://ror.org/04jn6q565 Goleta Star (United States)'),
(33895, 'https://ror.org/04jnb5p59', 'no_lang_code', 1, 'https://ror.org/04jnb5p59 OpiFlex (Sweden)'),
(33896, 'https://ror.org/04jnjav79', 'no_lang_code', 1, 'https://ror.org/04jnjav79 Vónin (Canada)'),
(33897, 'https://ror.org/04jnypc35', 'no_lang_code', 1, 'https://ror.org/04jnypc35 Integrum (Sweden)'),
(33898, 'https://ror.org/04jp1vs97', 'no_lang_code', 1, 'https://ror.org/04jp1vs97 Hill Engineering (United States)'),
(33899, 'https://ror.org/04jp6nz39', 'en', 1, 'https://ror.org/04jp6nz39 Bat Conservation International'),
(33900, 'https://ror.org/04jp8cn27', 'no_lang_code', 1, 'https://ror.org/04jp8cn27 Advanced Rotorcraft Technology (United States)'),
(33901, 'https://ror.org/04jpeqm39', 'no_lang_code', 1, 'https://ror.org/04jpeqm39 EsFem'),
(33902, 'https://ror.org/04jpp2r68', 'sk', 1, 'https://ror.org/04jpp2r68 Szenczi MolnƔr Albert Alapiskola'),
(33903, 'https://ror.org/04jpp6j90', 'en', 1, 'https://ror.org/04jpp6j90 Rothamsted International'),
(33904, 'https://ror.org/04jrdcy74', 'en', 1, 'https://ror.org/04jrdcy74 Dutch Network of Systems and Control'),
(33905, 'https://ror.org/04jrey505', 'no_lang_code', 1, 'https://ror.org/04jrey505 Kurt J. Lesker (United Kingdom)'),
(33906, 'https://ror.org/04jrge359', 'no_lang_code', 1, 'https://ror.org/04jrge359 FlexProp (Sweden)'),
(33907, 'https://ror.org/04jsh2530', 'en', 1, 'https://ror.org/04jsh2530 Andrew W. Mellon Foundation'),
(33908, 'https://ror.org/04jt8tp60', 'no_lang_code', 1, 'https://ror.org/04jt8tp60 Southeast Nonwovens (United States)'),
(33909, 'https://ror.org/04jvq2733', 'no_lang_code', 1, 'https://ror.org/04jvq2733 Soquem (Canada)'),
(33910, 'https://ror.org/04jwmyw53', 'en', 1, 'https://ror.org/04jwmyw53 International Association of Machinists and Aerospace Workers'),
(33911, 'https://ror.org/04k00np26', 'no_lang_code', 1, 'https://ror.org/04k00np26 BrainAid (United States)'),
(33912, 'https://ror.org/04k09rt14', 'en', 1, 'https://ror.org/04k09rt14 National Council on Aging'),
(33913, 'https://ror.org/04kc9j928', 'no_lang_code', 1, 'https://ror.org/04kc9j928 Zöldségtermesztési Kutató Intézet (Hungary)'),
(33914, 'https://ror.org/04kczqa55', 'en', 1, 'https://ror.org/04kczqa55 Central Penn College'),
(33915, 'https://ror.org/04kevy945', 'no_lang_code', 1, 'https://ror.org/04kevy945 Tecnologie Avanzate (Italy)'),
(33916, 'https://ror.org/04kfqps12', 'no_lang_code', 1, 'https://ror.org/04kfqps12 Information Extraction & Transport (United States)'),
(33917, 'https://ror.org/04kg99k11', 'en', 1, 'https://ror.org/04kg99k11 John Innes Foundation'),
(33918, 'https://ror.org/04khywr62', 'no_lang_code', 1, 'https://ror.org/04khywr62 Veritay Technology (United States)'),
(33919, 'https://ror.org/04kjswq56', 'no_lang_code', 1, 'https://ror.org/04kjswq56 Electro Magnetic Applications (United States)'),
(33920, 'https://ror.org/04kk7gt95', 'no_lang_code', 1, 'https://ror.org/04kk7gt95 Libri Kiadó (Hungary)'),
(33921, 'https://ror.org/04kmn0d38', 'no_lang_code', 1, 'https://ror.org/04kmn0d38 Catalyst Paper (Canada)'),
(33922, 'https://ror.org/04kn6vt85', 'en', 1, 'https://ror.org/04kn6vt85 Korea Maritime Institute ķ•œźµ­ķ•“ģ–‘ģˆ˜ģ‚°ź°œė°œģ›'),
(33923, 'https://ror.org/04knyj922', 'no_lang_code', 1, 'https://ror.org/04knyj922 Optimax (United States)'),
(33924, 'https://ror.org/04kpceh54', 'no_lang_code', 1, 'https://ror.org/04kpceh54 Directed Vapor Technologies (United States)'),
(33925, 'https://ror.org/04kptf457', 'en', 1, 'https://ror.org/04kptf457 Centre Scientifique de Monaco Scientific Centre of Monaco'),
(33926, 'https://ror.org/04kqrq649', 'no_lang_code', 1, 'https://ror.org/04kqrq649 PP Polymer (Sweden)'),
(33927, 'https://ror.org/04ks5c429', 'no_lang_code', 1, 'https://ror.org/04ks5c429 Analytical Services & Materials (United States)'),
(33928, 'https://ror.org/04ksb3515', 'en', 1, 'https://ror.org/04ksb3515 NIHR Queen Square Dementia Biomedical Research Unit'),
(33929, 'https://ror.org/04kshqx58', 'no_lang_code', 1, 'https://ror.org/04kshqx58 Mtekvision (Canada)'),
(33930, 'https://ror.org/04kx2vh28', 'en', 1, 'https://ror.org/04kx2vh28 Programa Mundial de Alimentos Programma Alimentare Mondiale Programme Alimentaire Mondial World Food Programme'),
(33931, 'https://ror.org/04kx6mx16', 'no_lang_code', 1, 'https://ror.org/04kx6mx16 JRM Technologies (United States)'),
(33932, 'https://ror.org/04kzdy639', 'en', 1, 'https://ror.org/04kzdy639 Institute for Development and International Relations'),
(33933, 'https://ror.org/04m1j1t24', 'en', 1, 'https://ror.org/04m1j1t24 Australian Institute of Criminology'),
(33934, 'https://ror.org/04m7z7z76', 'no_lang_code', 1, 'https://ror.org/04m7z7z76 Third Wave Systems (United States)'),
(33935, 'https://ror.org/04md3b668', 'no_lang_code', 1, 'https://ror.org/04md3b668 Astronautics Corporation of America'),
(33936, 'https://ror.org/04md8p839', 'no_lang_code', 1, 'https://ror.org/04md8p839 Materials Research Institute (United States)'),
(33937, 'https://ror.org/04mf3j007', 'no_lang_code', 1, 'https://ror.org/04mf3j007 TES International (United States)'),
(33938, 'https://ror.org/04mgr5526', 'no_lang_code', 1, 'https://ror.org/04mgr5526 Svenska Aerogel (Sweden)'),
(33939, 'https://ror.org/04mh2zc60', 'en', 1, 'https://ror.org/04mh2zc60 John E. Fetzer Memorial Trust'),
(33940, 'https://ror.org/04mhnz122', 'en', 1, 'https://ror.org/04mhnz122 Assistive Technology Resource Centers of Hawaii'),
(33941, 'https://ror.org/04mjjg550', 'no_lang_code', 1, 'https://ror.org/04mjjg550 Scientic (United States)'),
(33942, 'https://ror.org/04mjpn004', 'no_lang_code', 1, 'https://ror.org/04mjpn004 Athena Environmental Sciences (United States)'),
(33943, 'https://ror.org/04mm8xb27', 'no_lang_code', 1, 'https://ror.org/04mm8xb27 SciGenom Labs (India)'),
(33944, 'https://ror.org/04mnkdm02', 'en', 1, 'https://ror.org/04mnkdm02 Aeronautics Research and Development Board'),
(33945, 'https://ror.org/04mpce960', 'no_lang_code', 1, 'https://ror.org/04mpce960 NapvilƔg (Hungary)'),
(33946, 'https://ror.org/04mpn1847', 'en', 1, 'https://ror.org/04mpn1847 Institute of Ethnology and Folklore Research'),
(33947, 'https://ror.org/04mqxq306', 'no_lang_code', 1, 'https://ror.org/04mqxq306 TransMIT (Germany)'),
(33948, 'https://ror.org/04mr67481', 'en', 1, 'https://ror.org/04mr67481 Technological University Kyaukse į€€į€»į€±į€¬į€€į€ŗį€†į€Šį€ŗ į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(33949, 'https://ror.org/04mr81w67', 'no_lang_code', 1, 'https://ror.org/04mr81w67 Ceska Astronomicka Spolecnost'),
(33950, 'https://ror.org/04ms6qb33', 'no_lang_code', 1, 'https://ror.org/04ms6qb33 STUNS'),
(33951, 'https://ror.org/04mseyk78', 'no_lang_code', 1, 'https://ror.org/04mseyk78 NDI Engineering Company (United States)'),
(33952, 'https://ror.org/04mtxrz85', 'no_lang_code', 1, 'https://ror.org/04mtxrz85 Ortoma (Sweden)'),
(33953, 'https://ror.org/04mvxcw39', 'no_lang_code', 1, 'https://ror.org/04mvxcw39 O’Gara Group (United States)'),
(33954, 'https://ror.org/04mw0p229', 'no_lang_code', 1, 'https://ror.org/04mw0p229 Matrix Research (United States)'),
(33955, 'https://ror.org/04mwe1m14', 'en', 1, 'https://ror.org/04mwe1m14 Victim Support'),
(33956, 'https://ror.org/04mwmd860', 'en', 1, 'https://ror.org/04mwmd860 SaskWater'),
(33957, 'https://ror.org/04mypf355', 'en', 1, 'https://ror.org/04mypf355 HeliCat Canada'),
(33958, 'https://ror.org/04n2jeh03', 'en', 1, 'https://ror.org/04n2jeh03 Oticon Foundation in New Zealand'),
(33959, 'https://ror.org/04n404y68', 'fr', 1, 'https://ror.org/04n404y68 Institut de Recherche en RƩadaptation-RƩinsertion'),
(33960, 'https://ror.org/04n4d5575', 'no_lang_code', 1, 'https://ror.org/04n4d5575 Nu-Trek (United States)'),
(33961, 'https://ror.org/04n4x0209', 'en', 1, 'https://ror.org/04n4x0209 College for Creative Studies'),
(33962, 'https://ror.org/04n65rp89', 'en', 1, 'https://ror.org/04n65rp89 Doris Duke Charitable Foundation'),
(33963, 'https://ror.org/04n80xp42', 'en', 1, 'https://ror.org/04n80xp42 Gastroenterological Society of Australia'),
(33964, 'https://ror.org/04n91v483', 'no_lang_code', 1, 'https://ror.org/04n91v483 Metron (United States)'),
(33965, 'https://ror.org/04n95h407', 'it', 1, 'https://ror.org/04n95h407 Istituto Italiano per l''Africa e l''Oriente'),
(33966, 'https://ror.org/04nbqb988', 'en', 1, 'https://ror.org/04nbqb988 CHA Bundang Medical Center'),
(33967, 'https://ror.org/04nderh91', 'no_lang_code', 1, 'https://ror.org/04nderh91 Time Critical Networks (Sweden)'),
(33968, 'https://ror.org/04ndsf485', 'no_lang_code', 1, 'https://ror.org/04ndsf485 Polymer Aging Concepts (United States)'),
(33969, 'https://ror.org/04ne7ew72', 'no_lang_code', 1, 'https://ror.org/04ne7ew72 Canadian Bio-Systems (Canada)'),
(33970, 'https://ror.org/04nf1vj74', 'no_lang_code', 1, 'https://ror.org/04nf1vj74 Zenterio (Sweden)'),
(33971, 'https://ror.org/04ngjd421', 'no_lang_code', 1, 'https://ror.org/04ngjd421 Uminova Innovation (Sweden)'),
(33972, 'https://ror.org/04ngy8121', 'no_lang_code', 1, 'https://ror.org/04ngy8121 Remtech (United States)'),
(33973, 'https://ror.org/04nk31t13', 'no_lang_code', 1, 'https://ror.org/04nk31t13 Community Options (United States)'),
(33974, 'https://ror.org/04nk9a874', 'no_lang_code', 1, 'https://ror.org/04nk9a874 Scandinavian Leadership (Sweden)'),
(33975, 'https://ror.org/04nkjmp39', 'no_lang_code', 1, 'https://ror.org/04nkjmp39 AeroDNA (United Kingdom)'),
(33976, 'https://ror.org/04nmx3106', 'no_lang_code', 1, 'https://ror.org/04nmx3106 AngloGold Ashanti (South Africa)'),
(33977, 'https://ror.org/04nne1357', 'en', 1, 'https://ror.org/04nne1357 Henan Provincial Health Bureau'),
(33978, 'https://ror.org/04nnrzq56', 'en', 1, 'https://ror.org/04nnrzq56 Sextures Institute'),
(33979, 'https://ror.org/04nqft813', 'no_lang_code', 1, 'https://ror.org/04nqft813 Ahrens (Sweden)'),
(33980, 'https://ror.org/04nr5bm84', 'en', 1, 'https://ror.org/04nr5bm84 Social Security Information Service'),
(33981, 'https://ror.org/04nrmrg07', 'en', 1, 'https://ror.org/04nrmrg07 Korea Meteorological Administration'),
(33982, 'https://ror.org/04nsrjg86', 'et', 1, 'https://ror.org/04nsrjg86 Under and Tuglas Literature Centre Underi ja Tuglase Kirjanduskeskus'),
(33983, 'https://ror.org/04ntqmb28', 'no_lang_code', 1, 'https://ror.org/04ntqmb28 Applied Visions (United States)'),
(33984, 'https://ror.org/04p0je704', 'en', 1, 'https://ror.org/04p0je704 Korean Cancer Association'),
(33985, 'https://ror.org/04p0nk708', 'en', 1, 'https://ror.org/04p0nk708 Regional Hospital West Jutland'),
(33986, 'https://ror.org/04p1set31', 'no_lang_code', 1, 'https://ror.org/04p1set31 Platinum Equity (United States)'),
(33987, 'https://ror.org/04p61m296', 'no_lang_code', 1, 'https://ror.org/04p61m296 Minacs (Canada)'),
(33988, 'https://ror.org/04p7acy55', 'no_lang_code', 1, 'https://ror.org/04p7acy55 LNK (United States)'),
(33989, 'https://ror.org/04pdgtw09', 'no_lang_code', 1, 'https://ror.org/04pdgtw09 Celadon Laboratories (United States)'),
(33990, 'https://ror.org/04pge2a40', 'en', 1, 'https://ror.org/04pge2a40 Second Affiliated Hospital of Nanjing Medical University'),
(33991, 'https://ror.org/04pgzvj03', 'en', 1, 'https://ror.org/04pgzvj03 Association des constructeurs de routes et grands travaux du QuƩbec QuƩbec Road Builders and Heavy Construction Association'),
(33992, 'https://ror.org/04pk3vt21', 'no_lang_code', 1, 'https://ror.org/04pk3vt21 Nexant (United States)'),
(33993, 'https://ror.org/04pkb2v55', 'en', 1, 'https://ror.org/04pkb2v55 EsmƩe Fairbairn Foundation'),
(33994, 'https://ror.org/04pke7819', 'en', 1, 'https://ror.org/04pke7819 National Centre for Vocational Education Research'),
(33995, 'https://ror.org/04pm25196', 'no_lang_code', 1, 'https://ror.org/04pm25196 Datachassi (Sweden)'),
(33996, 'https://ror.org/04pmctd13', 'en', 1, 'https://ror.org/04pmctd13 Haliburton Forest & Wild Life Reserve'),
(33997, 'https://ror.org/04pmnt922', 'no_lang_code', 1, 'https://ror.org/04pmnt922 Apollo Instruments (United States)'),
(33998, 'https://ror.org/04pnhdn93', 'fr', 1, 'https://ror.org/04pnhdn93 ONG Karkara'),
(33999, 'https://ror.org/04pp5y813', 'no_lang_code', 1, 'https://ror.org/04pp5y813 Selee Corporation (United States)'),
(34000, 'https://ror.org/04ppfc921', 'no_lang_code', 1, 'https://ror.org/04ppfc921 Earthmaster Environmental Strategies (Canada)'),
(34001, 'https://ror.org/04ps3wn70', 'no_lang_code', 1, 'https://ror.org/04ps3wn70 Op -Tim (Slovakia)'),
(34002, 'https://ror.org/04ptmx344', 'en', 1, 'https://ror.org/04ptmx344 Arkansas Biosciences Institute'),
(34003, 'https://ror.org/04ptp8872', 'en', 1, 'https://ror.org/04ptp8872 London Centre for Nanotechnology'),
(34004, 'https://ror.org/04pw0tr28', 'nl', 1, 'https://ror.org/04pw0tr28 Refaja Ziekenhuis'),
(34005, 'https://ror.org/04pyyzw22', 'en', 1, 'https://ror.org/04pyyzw22 Western Pennsylvania School for Blind Children'),
(34006, 'https://ror.org/04q2v3586', 'en', 1, 'https://ror.org/04q2v3586 Devereux'),
(34007, 'https://ror.org/04q5n7269', 'en', 1, 'https://ror.org/04q5n7269 Carolina Institute for NanoMedicine'),
(34008, 'https://ror.org/04q61p086', 'no_lang_code', 1, 'https://ror.org/04q61p086 Emcore (United States)'),
(34009, 'https://ror.org/04q644746', 'en', 1, 'https://ror.org/04q644746 Giovanni Armenise-Harvard Foundation'),
(34010, 'https://ror.org/04q6d4d25', 'en', 1, 'https://ror.org/04q6d4d25 Istituto Svedese di studi classici a Roma Swedish Institute in Rome'),
(34011, 'https://ror.org/04q6fz931', 'en', 1, 'https://ror.org/04q6fz931 Zoological Park Organization'),
(34012, 'https://ror.org/04q745m62', 'no_lang_code', 1, 'https://ror.org/04q745m62 Radiance Technologies (United States)'),
(34013, 'https://ror.org/04q7mb252', 'no_lang_code', 1, 'https://ror.org/04q7mb252 Samarkand2015 (Sweden)'),
(34014, 'https://ror.org/04q7s3d74', 'no_lang_code', 1, 'https://ror.org/04q7s3d74 Softronics (United States)'),
(34015, 'https://ror.org/04q7y8a54', 'en', 1, 'https://ror.org/04q7y8a54 Conway School of Landscape Design'),
(34016, 'https://ror.org/04q8pt676', 'no_lang_code', 1, 'https://ror.org/04q8pt676 Tecrea (United Kingdom)'),
(34017, 'https://ror.org/04q9kfc05', 'en', 1, 'https://ror.org/04q9kfc05 Nanjing Chest Hospital'),
(34018, 'https://ror.org/04qamdm65', 'en', 1, 'https://ror.org/04qamdm65 International Cinematographers Guild'),
(34019, 'https://ror.org/04qdvmd91', 'en', 1, 'https://ror.org/04qdvmd91 IASO General Hospital'),
(34020, 'https://ror.org/04qfph657', 'en', 1, 'https://ror.org/04qfph657 Korea Institute of Industrial Technology ķ•œźµ­ģƒģ‚°źø°ģˆ ģ—°źµ¬ģ›'),
(34021, 'https://ror.org/04qjz4x37', 'en', 1, 'https://ror.org/04qjz4x37 Redcar and Cleveland Borough Council'),
(34022, 'https://ror.org/04qk3p464', 'no_lang_code', 1, 'https://ror.org/04qk3p464 PVOH Polymers (United Kingdom)'),
(34023, 'https://ror.org/04qrrwn88', 'hu', 1, 'https://ror.org/04qrrwn88 Piarista Rend Magyar TartomƔnya'),
(34024, 'https://ror.org/04qsy0p12', 'no_lang_code', 1, 'https://ror.org/04qsy0p12 Centeye (United States)'),
(34025, 'https://ror.org/04qvsw345', 'no_lang_code', 1, 'https://ror.org/04qvsw345 Spectrum Photonics (United States)'),
(34026, 'https://ror.org/04qysqs39', 'en', 1, 'https://ror.org/04qysqs39 Georgia Department of Labor'),
(34027, 'https://ror.org/04r2pjg84', 'sk', 1, 'https://ror.org/04r2pjg84 Forests of the Slovak Republic Lesy Slovenskej Republiky'),
(34028, 'https://ror.org/04r345w95', 'no_lang_code', 1, 'https://ror.org/04r345w95 GelTech Solutions (United States)'),
(34029, 'https://ror.org/04r34kg48', 'no_lang_code', 1, 'https://ror.org/04r34kg48 Energie NB Power (Canada) Ɖnergie NB'),
(34030, 'https://ror.org/04r3dvv20', 'no_lang_code', 1, 'https://ror.org/04r3dvv20 Selden Mast (Sweden)'),
(34031, 'https://ror.org/04r4qwn25', 'no_lang_code', 1, 'https://ror.org/04r4qwn25 Proxim (United States)'),
(34032, 'https://ror.org/04r5mx435', 'no_lang_code', 1, 'https://ror.org/04r5mx435 Airex (United States)'),
(34033, 'https://ror.org/04r5s4b52', 'en', 1, 'https://ror.org/04r5s4b52 Center for Scientific Review'),
(34034, 'https://ror.org/04r5y2a19', 'no_lang_code', 1, 'https://ror.org/04r5y2a19 Reynard Corporation (United States)'),
(34035, 'https://ror.org/04r7gz902', 'no_lang_code', 1, 'https://ror.org/04r7gz902 Metrodat (Slovakia)'),
(34036, 'https://ror.org/04r7x1v43', 'no_lang_code', 1, 'https://ror.org/04r7x1v43 MAT-Obaly (Slovakia)'),
(34037, 'https://ror.org/04r8f0505', 'no_lang_code', 1, 'https://ror.org/04r8f0505 Oculus Innovative Sciences (United States)'),
(34038, 'https://ror.org/04r8fwm85', 'en', 1, 'https://ror.org/04r8fwm85 Evangelical Lutheran Church'),
(34039, 'https://ror.org/04r8wdj07', 'en', 1, 'https://ror.org/04r8wdj07 Kansas Public Schools'),
(34040, 'https://ror.org/04r9x9n80', 'no_lang_code', 1, 'https://ror.org/04r9x9n80 Shanxi Zhendong Pharmaceutical (China) å±±č„æęŒÆäøœåˆ¶čÆč‚”ä»½ęœ‰é™å…¬åø'),
(34041, 'https://ror.org/04ra7gd43', 'no_lang_code', 1, 'https://ror.org/04ra7gd43 3TEX (United States)'),
(34042, 'https://ror.org/04rad3358', 'no_lang_code', 1, 'https://ror.org/04rad3358 Prefa Alfa (Slovakia)'),
(34043, 'https://ror.org/04rc4nw15', 'no_lang_code', 1, 'https://ror.org/04rc4nw15 Enseco Energy Services (Canada)'),
(34044, 'https://ror.org/04rc5xe97', 'no_lang_code', 1, 'https://ror.org/04rc5xe97 Agpyme (Spain)'),
(34045, 'https://ror.org/04rcsw002', 'no_lang_code', 1, 'https://ror.org/04rcsw002 Lumina (Sweden)'),
(34046, 'https://ror.org/04re59v49', 'no_lang_code', 1, 'https://ror.org/04re59v49 St. Martin de Porres Hospital'),
(34047, 'https://ror.org/04rekk491', 'en', 1, 'https://ror.org/04rekk491 Bavarian State Collection of Zoology Zoologische Staatssammlung München'),
(34048, 'https://ror.org/04rekpn43', 'no_lang_code', 1, 'https://ror.org/04rekpn43 Q-Peak (United States)'),
(34049, 'https://ror.org/04rfd1d05', 'no_lang_code', 1, 'https://ror.org/04rfd1d05 Space Photonics (United States)'),
(34050, 'https://ror.org/04rhtf097', 'en', 1, 'https://ror.org/04rhtf097 Nanjing Second Hospital'),
(34051, 'https://ror.org/04rjn7856', 'no_lang_code', 1, 'https://ror.org/04rjn7856 Clipper Windpower (United States)'),
(34052, 'https://ror.org/04rk0sp93', 'en', 1, 'https://ror.org/04rk0sp93 Institute of Management Accountants'),
(34053, 'https://ror.org/04rn1rm44', 'en', 1, 'https://ror.org/04rn1rm44 Education Department of Heilongjiang Province'),
(34054, 'https://ror.org/04rnkb958', 'en', 1, 'https://ror.org/04rnkb958 Hillside Rehabilitation Hospital'),
(34055, 'https://ror.org/04rpteb42', 'no_lang_code', 1, 'https://ror.org/04rpteb42 Pranalytica (United States)'),
(34056, 'https://ror.org/04rr8j290', 'no_lang_code', 1, 'https://ror.org/04rr8j290 Construction DJL (Canada)'),
(34057, 'https://ror.org/04rtm4g41', 'no_lang_code', 1, 'https://ror.org/04rtm4g41 PV3 Technologies (United Kingdom)'),
(34058, 'https://ror.org/04rvgdt43', 'no_lang_code', 1, 'https://ror.org/04rvgdt43 NquiringMinds (United Kingdom)'),
(34059, 'https://ror.org/04rwrjk88', 'no_lang_code', 1, 'https://ror.org/04rwrjk88 Bioptech (Sweden)'),
(34060, 'https://ror.org/04rx5dj17', 'es', 1, 'https://ror.org/04rx5dj17 Contactica'),
(34061, 'https://ror.org/04rx5jd37', 'no_lang_code', 1, 'https://ror.org/04rx5jd37 Dignitas Technologies (United States)'),
(34062, 'https://ror.org/04rxtvg30', 'no_lang_code', 1, 'https://ror.org/04rxtvg30 Carbon Solutions (United States)'),
(34063, 'https://ror.org/04rxwag77', 'no_lang_code', 1, 'https://ror.org/04rxwag77 Setek Elektronik (Sweden)'),
(34064, 'https://ror.org/04ryr8437', 'en', 1, 'https://ror.org/04ryr8437 Udens College'),
(34065, 'https://ror.org/04rz3gb85', 'no_lang_code', 1, 'https://ror.org/04rz3gb85 Dragonfly Pictures (United States)'),
(34066, 'https://ror.org/04s1kwh20', 'no_lang_code', 1, 'https://ror.org/04s1kwh20 Xidex (United States)'),
(34067, 'https://ror.org/04s1sff11', 'no_lang_code', 1, 'https://ror.org/04s1sff11 Scientific Simulations (United States)'),
(34068, 'https://ror.org/04s1tmp27', 'no_lang_code', 1, 'https://ror.org/04s1tmp27 CogniTech (United States)'),
(34069, 'https://ror.org/04s346m05', 'en', 1, 'https://ror.org/04s346m05 Commission on Higher Education'),
(34070, 'https://ror.org/04s4s0979', 'en', 1, 'https://ror.org/04s4s0979 NIHR Leicester Respiratory Biomedical Research Unit'),
(34071, 'https://ror.org/04s705w68', 'no_lang_code', 1, 'https://ror.org/04s705w68 Nscrypt (United States)'),
(34072, 'https://ror.org/04sa7fj09', 'hu', 1, 'https://ror.org/04sa7fj09 Teleki LÔszló AlapítvÔny'),
(34073, 'https://ror.org/04sbdgk59', 'no_lang_code', 1, 'https://ror.org/04sbdgk59 Medicyte (Germany)'),
(34074, 'https://ror.org/04sdd2113', 'en', 1, 'https://ror.org/04sdd2113 Old Church Slavonic Institute'),
(34075, 'https://ror.org/04sdnwd65', 'en', 1, 'https://ror.org/04sdnwd65 Hesston College'),
(34076, 'https://ror.org/04sdthy66', 'no_lang_code', 1, 'https://ror.org/04sdthy66 Cascade Engineering (United States)'),
(34077, 'https://ror.org/04shrgb80', 'en', 1, 'https://ror.org/04shrgb80 Allen College'),
(34078, 'https://ror.org/04sk2fc62', 'no_lang_code', 1, 'https://ror.org/04sk2fc62 Materials Research & Design (United States)'),
(34079, 'https://ror.org/04skcvp73', 'en', 1, 'https://ror.org/04skcvp73 European Research Institute of Catalysis'),
(34080, 'https://ror.org/04spw8212', 'en', 1, 'https://ror.org/04spw8212 New Delhi Tuberculosis Center'),
(34081, 'https://ror.org/04sr9vb86', 'en', 1, 'https://ror.org/04sr9vb86 Pacific Northwest College of Art'),
(34082, 'https://ror.org/04ssevy49', 'en', 1, 'https://ror.org/04ssevy49 Addenbrooke''s Charitable Trust'),
(34083, 'https://ror.org/04ssfcp90', 'no_lang_code', 1, 'https://ror.org/04ssfcp90 Spectra Research (United States)'),
(34084, 'https://ror.org/04ssj3y56', 'no_lang_code', 1, 'https://ror.org/04ssj3y56 LSP Technologies (United States)'),
(34085, 'https://ror.org/04ssneh08', 'no_lang_code', 1, 'https://ror.org/04ssneh08 Parrheim Foods (Canada)'),
(34086, 'https://ror.org/04sv7km52', 'en', 1, 'https://ror.org/04sv7km52 Tanzania Wildlife Research Institute'),
(34087, 'https://ror.org/04sy3cj85', 'en', 1, 'https://ror.org/04sy3cj85 Slovak National Museum'),
(34088, 'https://ror.org/04szzqs55', 'sk', 1, 'https://ror.org/04szzqs55 FakultnÔ nemocnica s poliklinikou Žilina'),
(34089, 'https://ror.org/04t269f15', 'en', 1, 'https://ror.org/04t269f15 National Endowment for the Arts'),
(34090, 'https://ror.org/04t2cp653', 'no_lang_code', 1, 'https://ror.org/04t2cp653 Spacescape (Sweden)'),
(34091, 'https://ror.org/04t2ktq36', 'no_lang_code', 1, 'https://ror.org/04t2ktq36 Genvac Aerospace (United States)'),
(34092, 'https://ror.org/04t48sm91', 'en', 1, 'https://ror.org/04t48sm91 Bundesamt für Umwelt Federal Office for the Environment'),
(34093, 'https://ror.org/04t838f48', 'en', 1, 'https://ror.org/04t838f48 Central Norway Regional Health Authority'),
(34094, 'https://ror.org/04t871j63', 'no_lang_code', 1, 'https://ror.org/04t871j63 Eacom Timber Corporation (Canada)'),
(34095, 'https://ror.org/04tbxet45', 'no_lang_code', 1, 'https://ror.org/04tbxet45 Jacobs (Canada)'),
(34096, 'https://ror.org/04tcsyg17', 'no_lang_code', 1, 'https://ror.org/04tcsyg17 Spencer Industries (United States)'),
(34097, 'https://ror.org/04tdm7z37', 'no_lang_code', 1, 'https://ror.org/04tdm7z37 Fluorochem (United States)'),
(34098, 'https://ror.org/04tebqy16', 'no_lang_code', 1, 'https://ror.org/04tebqy16 Air Fuel Synthesis (United Kingdom)'),
(34099, 'https://ror.org/04tf4mr55', 'nl', 1, 'https://ror.org/04tf4mr55 SNS Reaal'),
(34100, 'https://ror.org/04tgjxk96', 'no_lang_code', 1, 'https://ror.org/04tgjxk96 Research Network (United States)'),
(34101, 'https://ror.org/04tnbqb63', 'en', 1, 'https://ror.org/04tnbqb63 The Francis Crick Institute'),
(34102, 'https://ror.org/04tqkwm17', 'no_lang_code', 1, 'https://ror.org/04tqkwm17 APIS (Slovakia)'),
(34103, 'https://ror.org/04ttpa220', 'no_lang_code', 1, 'https://ror.org/04ttpa220 Abreos Biosciences (United States)'),
(34104, 'https://ror.org/04tvsxd59', 'sv', 1, 'https://ror.org/04tvsxd59 Almega'),
(34105, 'https://ror.org/04tw2wg46', 'en', 1, 'https://ror.org/04tw2wg46 Wood Industry Cluster'),
(34106, 'https://ror.org/04txrym18', 'no_lang_code', 1, 'https://ror.org/04txrym18 Vector Test Systems (United States)'),
(34107, 'https://ror.org/04tz9fd40', 'en', 1, 'https://ror.org/04tz9fd40 International Institute for Asian Studies'),
(34108, 'https://ror.org/04v0pva46', 'no_lang_code', 1, 'https://ror.org/04v0pva46 Dalton Pharma Services (Canada)'),
(34109, 'https://ror.org/04v3xs363', 'en', 1, 'https://ror.org/04v3xs363 Alberta Chicken Producers (Canada)'),
(34110, 'https://ror.org/04v4hfj66', 'no_lang_code', 1, 'https://ror.org/04v4hfj66 Image Intelligence (Sweden)'),
(34111, 'https://ror.org/04v77td31', 'no_lang_code', 1, 'https://ror.org/04v77td31 AdTech Systems Research (United States)'),
(34112, 'https://ror.org/04v83ky93', 'en', 1, 'https://ror.org/04v83ky93 National Foundation for Cancer Research'),
(34113, 'https://ror.org/04v9rq331', 'no_lang_code', 1, 'https://ror.org/04v9rq331 ProcesnƔ AutomatizƔcia (Slovakia)'),
(34114, 'https://ror.org/04v9v0986', 'en', 1, 'https://ror.org/04v9v0986 CFA Institute'),
(34115, 'https://ror.org/04vba8s95', 'no_lang_code', 1, 'https://ror.org/04vba8s95 International BEZ Group (Slovakia)'),
(34116, 'https://ror.org/04vbqh983', 'no_lang_code', 1, 'https://ror.org/04vbqh983 Physitron (United States)'),
(34117, 'https://ror.org/04vc8w180', 'no_lang_code', 1, 'https://ror.org/04vc8w180 New Editions Consulting (United States)'),
(34118, 'https://ror.org/04vfnc742', 'no_lang_code', 1, 'https://ror.org/04vfnc742 Founders Alliance (Sweden)'),
(34119, 'https://ror.org/04vgqqp29', 'en', 1, 'https://ror.org/04vgqqp29 Gendarmerie royale du Canada Royal Canadian Mounted Police'),
(34120, 'https://ror.org/04vj0np78', 'no_lang_code', 1, 'https://ror.org/04vj0np78 GlobVision (Canada)'),
(34121, 'https://ror.org/04vn3x119', 'no_lang_code', 1, 'https://ror.org/04vn3x119 RAM Laboratories (United States)'),
(34122, 'https://ror.org/04vnmgz72', 'no_lang_code', 1, 'https://ror.org/04vnmgz72 Anholt Technologies (United States)'),
(34123, 'https://ror.org/04vnw0c78', 'no_lang_code', 1, 'https://ror.org/04vnw0c78 Lewis Innovative Technologies (United States)'),
(34124, 'https://ror.org/04vnww336', 'en', 1, 'https://ror.org/04vnww336 College of Metaphysical Studies'),
(34125, 'https://ror.org/04vpw9y87', 'no_lang_code', 1, 'https://ror.org/04vpw9y87 PCL Construction (Canada)'),
(34126, 'https://ror.org/04vrv9h08', 'en', 1, 'https://ror.org/04vrv9h08 Diabetes Action Research and Education Foundation'),
(34127, 'https://ror.org/04vxrmy57', 'no_lang_code', 1, 'https://ror.org/04vxrmy57 Kushing (Slovakia)'),
(34128, 'https://ror.org/04vyqcg16', 'no_lang_code', 1, 'https://ror.org/04vyqcg16 Somfy (Canada)'),
(34129, 'https://ror.org/04w0bwe53', 'no_lang_code', 1, 'https://ror.org/04w0bwe53 AIL Research (United States)'),
(34130, 'https://ror.org/04w1bc909', 'no_lang_code', 1, 'https://ror.org/04w1bc909 MOHR Test and Measurement (United States)'),
(34131, 'https://ror.org/04w25gn33', 'no_lang_code', 1, 'https://ror.org/04w25gn33 Lambert Peat Moss (Canada)'),
(34132, 'https://ror.org/04w6kn183', 'fr', 1, 'https://ror.org/04w6kn183 Fondation pour la Recherche MƩdicale'),
(34133, 'https://ror.org/04w6mxh75', 'en', 1, 'https://ror.org/04w6mxh75 Bronx Community College'),
(34134, 'https://ror.org/04w6n1v49', 'en', 1, 'https://ror.org/04w6n1v49 National Urban League'),
(34135, 'https://ror.org/04w7knf95', 'no_lang_code', 1, 'https://ror.org/04w7knf95 Mechanical Design (Slovakia)'),
(34136, 'https://ror.org/04wae4s50', 'no_lang_code', 1, 'https://ror.org/04wae4s50 Lambda Science (United States)'),
(34137, 'https://ror.org/04wazj198', 'en', 1, 'https://ror.org/04wazj198 Steel Structures Education Foundation'),
(34138, 'https://ror.org/04wcab306', 'no_lang_code', 1, 'https://ror.org/04wcab306 Photidify (Sweden)'),
(34139, 'https://ror.org/04wd0my56', 'no_lang_code', 1, 'https://ror.org/04wd0my56 Ardoran (Estonia)'),
(34140, 'https://ror.org/04wehfb27', 'no_lang_code', 1, 'https://ror.org/04wehfb27 Vectraxx (United States)'),
(34141, 'https://ror.org/04wehyc39', 'en', 1, 'https://ror.org/04wehyc39 International Council of Shopping Centers'),
(34142, 'https://ror.org/04wf6rg14', 'no_lang_code', 1, 'https://ror.org/04wf6rg14 MACOM (United States)'),
(34143, 'https://ror.org/04wgdyk95', 'no_lang_code', 1, 'https://ror.org/04wgdyk95 Biopeak Corporation (Canada)'),
(34144, 'https://ror.org/04wgeqw93', 'no_lang_code', 1, 'https://ror.org/04wgeqw93 Winterkvist.com (Sweden)'),
(34145, 'https://ror.org/04wgp8f82', 'en', 1, 'https://ror.org/04wgp8f82 South Texas College of Law'),
(34146, 'https://ror.org/04whx4k53', 'en', 1, 'https://ror.org/04whx4k53 Global Initiative on Psychiatry'),
(34147, 'https://ror.org/04wk8me05', 'no_lang_code', 1, 'https://ror.org/04wk8me05 Global InfoTek (United States)'),
(34148, 'https://ror.org/04wpn1218', 'de', 1, 'https://ror.org/04wpn1218 Kantonsspital Graubünden'),
(34149, 'https://ror.org/04wqpp325', 'no_lang_code', 1, 'https://ror.org/04wqpp325 Betamont (Slovakia)'),
(34150, 'https://ror.org/04wrhjz25', 'en', 1, 'https://ror.org/04wrhjz25 Society for Reproduction and Fertility'),
(34151, 'https://ror.org/04wrx4c64', 'no_lang_code', 1, 'https://ror.org/04wrx4c64 Wildcat Discovery Technologies (United States)'),
(34152, 'https://ror.org/04wtq2305', 'en', 1, 'https://ror.org/04wtq2305 China Geological Survey äø­å›½åœ°č“Øč°ƒęŸ„å±€ę°“ę–‡åœ°č“ØēŽÆå¢ƒåœ°č“Øč°ƒęŸ„äø­åæƒ'),
(34153, 'https://ror.org/04ww0w091', 'no_lang_code', 1, 'https://ror.org/04ww0w091 Microsoft (India)'),
(34154, 'https://ror.org/04wwvn851', 'no_lang_code', 1, 'https://ror.org/04wwvn851 Princeton Scientific (United States)'),
(34155, 'https://ror.org/04wx1rb43', 'en', 1, 'https://ror.org/04wx1rb43 Winona County Historical Society'),
(34156, 'https://ror.org/04wxx2b44', 'no_lang_code', 1, 'https://ror.org/04wxx2b44 Maibec (Canada)'),
(34157, 'https://ror.org/04wyg6495', 'en', 1, 'https://ror.org/04wyg6495 Australian Centre for International Agricultural Research'),
(34158, 'https://ror.org/04x0cn975', 'no_lang_code', 1, 'https://ror.org/04x0cn975 Axxence (Slovakia)'),
(34159, 'https://ror.org/04x0tcn90', 'en', 1, 'https://ror.org/04x0tcn90 Hudson River Foundation'),
(34160, 'https://ror.org/04x12sm71', 'en', 1, 'https://ror.org/04x12sm71 Century University'),
(34161, 'https://ror.org/04x1arp29', 'en', 1, 'https://ror.org/04x1arp29 Brain Hospital of Jilin'),
(34162, 'https://ror.org/04x3cxs03', 'en', 1, 'https://ror.org/04x3cxs03 National Medical Research Council'),
(34163, 'https://ror.org/04x4c2m45', 'no_lang_code', 1, 'https://ror.org/04x4c2m45 Springmatter (United States)'),
(34164, 'https://ror.org/04x5rgv88', 'en', 1, 'https://ror.org/04x5rgv88 Canadian Honey Council'),
(34165, 'https://ror.org/04x6taa57', 'no_lang_code', 1, 'https://ror.org/04x6taa57 CBL (Germany)'),
(34166, 'https://ror.org/04xbqmj23', 'en', 1, 'https://ror.org/04xbqmj23 Indian National Centre for Ocean Information Services'),
(34167, 'https://ror.org/04xe6vy97', 'no_lang_code', 1, 'https://ror.org/04xe6vy97 Evidente (Sweden)'),
(34168, 'https://ror.org/04xem0k66', 'no_lang_code', 1, 'https://ror.org/04xem0k66 Vignet (United States)'),
(34169, 'https://ror.org/04xf33703', 'no_lang_code', 1, 'https://ror.org/04xf33703 Nalco (Canada)'),
(34170, 'https://ror.org/04xh4sy96', 'no_lang_code', 1, 'https://ror.org/04xh4sy96 Sƶdra SkogsƤgarna (Sweden)'),
(34171, 'https://ror.org/04xjzws62', 'no_lang_code', 1, 'https://ror.org/04xjzws62 Electronics Development Corporation (United States)'),
(34172, 'https://ror.org/04xk7h867', 'no_lang_code', 1, 'https://ror.org/04xk7h867 AeroSoft (United States)'),
(34173, 'https://ror.org/04xmt0833', 'en', 1, 'https://ror.org/04xmt0833 Ministry of Environment ėŒ€ķ•œėÆ¼źµ­ ķ™˜ź²½ė¶€'),
(34174, 'https://ror.org/04xp41626', 'no_lang_code', 1, 'https://ror.org/04xp41626 PrivaTran (United States)'),
(34175, 'https://ror.org/04xrr3c79', 'en', 1, 'https://ror.org/04xrr3c79 Environmental Protection Department of Jiangsu Province'),
(34176, 'https://ror.org/04xrsmr92', 'en', 1, 'https://ror.org/04xrsmr92 Applied Natural Sciences'),
(34177, 'https://ror.org/04xt42358', 'en', 1, 'https://ror.org/04xt42358 Tennessee Department of Human Services'),
(34178, 'https://ror.org/04xt5aa77', 'en', 1, 'https://ror.org/04xt5aa77 Ministry of Land, Infrastructure and Transport ėŒ€ķ•œėÆ¼źµ­ 국토교통부'),
(34179, 'https://ror.org/04xwjyh18', 'en', 1, 'https://ror.org/04xwjyh18 SKIP of New York'),
(34180, 'https://ror.org/04xx2fj27', 'no_lang_code', 1, 'https://ror.org/04xx2fj27 Chip Design Systems (United States)'),
(34181, 'https://ror.org/04xy18872', 'en', 1, 'https://ror.org/04xy18872 Royal College of Psychiatrists'),
(34182, 'https://ror.org/04xy3z086', 'en', 1, 'https://ror.org/04xy3z086 Dermatology Foundation'),
(34183, 'https://ror.org/04xya2p21', 'no_lang_code', 1, 'https://ror.org/04xya2p21 ATS Automation Tooling Systems (United States)'),
(34184, 'https://ror.org/04y0mk629', 'no_lang_code', 1, 'https://ror.org/04y0mk629 Blackwing (Sweden)'),
(34185, 'https://ror.org/04y300229', 'no_lang_code', 1, 'https://ror.org/04y300229 MicroStep-MIS (Slovakia)'),
(34186, 'https://ror.org/04y3y3z32', 'no_lang_code', 1, 'https://ror.org/04y3y3z32 ScandiDos (Sweden)'),
(34187, 'https://ror.org/04y4tfw76', 'no_lang_code', 1, 'https://ror.org/04y4tfw76 Advanced Communication Systems (United States)'),
(34188, 'https://ror.org/04y7nvm17', 'no_lang_code', 1, 'https://ror.org/04y7nvm17 Innovative Defense Technologies (United States)'),
(34189, 'https://ror.org/04y9h8038', 'no_lang_code', 1, 'https://ror.org/04y9h8038 Seamless Solutions (United States)'),
(34190, 'https://ror.org/04y9pdp40', 'no_lang_code', 1, 'https://ror.org/04y9pdp40 General Compression (United States)'),
(34191, 'https://ror.org/04ya3w052', 'no_lang_code', 1, 'https://ror.org/04ya3w052 TriTech Software Systems (United States)'),
(34192, 'https://ror.org/04ybhpd24', 'no_lang_code', 1, 'https://ror.org/04ybhpd24 Enbio (United States)'),
(34193, 'https://ror.org/04yehrw46', 'no_lang_code', 1, 'https://ror.org/04yehrw46 Adaptive Dynamics (United States)'),
(34194, 'https://ror.org/04yhapk09', 'en', 1, 'https://ror.org/04yhapk09 University of Palestine Ų¬Ų§Ł…Ų¹Ų© ŁŁ„Ų³Ų·ŁŠŁ†'),
(34195, 'https://ror.org/04ykewa84', 'no_lang_code', 1, 'https://ror.org/04ykewa84 Acosense (Sweden)'),
(34196, 'https://ror.org/04ymvv874', 'no_lang_code', 1, 'https://ror.org/04ymvv874 Maritime Applied Physics Corporation (United States)'),
(34197, 'https://ror.org/04yncke10', 'no_lang_code', 1, 'https://ror.org/04yncke10 Gooch & Housego (United States)'),
(34198, 'https://ror.org/04yqw4y82', 'no_lang_code', 1, 'https://ror.org/04yqw4y82 MS Technology (United States)'),
(34199, 'https://ror.org/04yr2wm37', 'no_lang_code', 1, 'https://ror.org/04yr2wm37 Logrotex (Spain)'),
(34200, 'https://ror.org/04yrdyp94', 'no_lang_code', 1, 'https://ror.org/04yrdyp94 Quantic EMC (Canada)'),
(34201, 'https://ror.org/04yrgb625', 'no_lang_code', 1, 'https://ror.org/04yrgb625 Vanguard Space Technologies (United States)'),
(34202, 'https://ror.org/04ys2fq69', 'no_lang_code', 1, 'https://ror.org/04ys2fq69 Aegis Technology (United States)'),
(34203, 'https://ror.org/04ysbng93', 'en', 1, 'https://ror.org/04ysbng93 RAF Models & Displays'),
(34204, 'https://ror.org/04ysmca02', 'en', 1, 'https://ror.org/04ysmca02 Irvine University'),
(34205, 'https://ror.org/04yswnp37', 'no_lang_code', 1, 'https://ror.org/04yswnp37 Systima Technologies (United States)'),
(34206, 'https://ror.org/04ytsjz62', 'no_lang_code', 1, 'https://ror.org/04ytsjz62 C & P Technologies (United States)'),
(34207, 'https://ror.org/04yvpz902', 'no_lang_code', 1, 'https://ror.org/04yvpz902 Vertec Biosolvents (United States)'),
(34208, 'https://ror.org/04yvxfz47', 'no_lang_code', 1, 'https://ror.org/04yvxfz47 American Axle & Manufacturing (Sweden)'),
(34209, 'https://ror.org/04yw8y022', 'no_lang_code', 1, 'https://ror.org/04yw8y022 Hunan New Wellful (China)'),
(34210, 'https://ror.org/04yxh1b11', 'en', 1, 'https://ror.org/04yxh1b11 Fundy Tidal'),
(34211, 'https://ror.org/04yxhmf18', 'en', 1, 'https://ror.org/04yxhmf18 Poets House'),
(34212, 'https://ror.org/04yxrg865', 'no_lang_code', 1, 'https://ror.org/04yxrg865 Nap Kiadó (Hungary) Sun Publishing'),
(34213, 'https://ror.org/04yxssd91', 'no_lang_code', 1, 'https://ror.org/04yxssd91 Advanced Photonix (United States)'),
(34214, 'https://ror.org/04yz0ht31', 'no_lang_code', 1, 'https://ror.org/04yz0ht31 SpaceTime Communication (Sweden)'),
(34215, 'https://ror.org/04yznky14', 'no_lang_code', 1, 'https://ror.org/04yznky14 Intech (Slovakia)'),
(34216, 'https://ror.org/04yzv9k35', 'no_lang_code', 1, 'https://ror.org/04yzv9k35 Archinoetics (United States)'),
(34217, 'https://ror.org/04yzz6k63', 'no_lang_code', 1, 'https://ror.org/04yzz6k63 Damilic (United States)'),
(34218, 'https://ror.org/04z13ha89', 'no_lang_code', 1, 'https://ror.org/04z13ha89 Jinhua Central Hospital é‡‘åŽåø‚äø­åæƒåŒ»é™¢'),
(34219, 'https://ror.org/04z3aby64', 'en', 1, 'https://ror.org/04z3aby64 First Affiliated Hospital of Hebei Medical University'),
(34220, 'https://ror.org/04z3wz653', 'en', 1, 'https://ror.org/04z3wz653 Netherlands Institute for Advanced Study in the Humanities and Social Sciences'),
(34221, 'https://ror.org/04z5km850', 'no_lang_code', 1, 'https://ror.org/04z5km850 Bascom Hunter (United States)'),
(34222, 'https://ror.org/04z6hjp93', 'en', 1, 'https://ror.org/04z6hjp93 Chinese Culture Center of San Francisco'),
(34223, 'https://ror.org/04za2jd50', 'no_lang_code', 1, 'https://ror.org/04za2jd50 Mabarex (Canada)'),
(34224, 'https://ror.org/04ze64w44', 'en', 1, 'https://ror.org/04ze64w44 Changzhou Third People''s Hospital'),
(34225, 'https://ror.org/04zfzxr62', 'no_lang_code', 1, 'https://ror.org/04zfzxr62 RHAMM Technologies (United States)'),
(34226, 'https://ror.org/04zgyz643', 'no_lang_code', 1, 'https://ror.org/04zgyz643 Uppdragshuset (Sweden)'),
(34227, 'https://ror.org/04zhd1705', 'it', 1, 'https://ror.org/04zhd1705 Policlinico Casilino'),
(34228, 'https://ror.org/04zkm8r02', 'en', 1, 'https://ror.org/04zkm8r02 Brewing and Malting Barley Research Institute'),
(34229, 'https://ror.org/04zmvq270', 'no_lang_code', 1, 'https://ror.org/04zmvq270 Wizdom Systems (United States)'),
(34230, 'https://ror.org/04zq3xb25', 'en', 1, 'https://ror.org/04zq3xb25 Illinois Environmental Protection Agency'),
(34231, 'https://ror.org/04zsgrk35', 'en', 1, 'https://ror.org/04zsgrk35 Luther Seminary'),
(34232, 'https://ror.org/04zt3wx35', 'en', 1, 'https://ror.org/04zt3wx35 Canada Mortgage and Housing Corporation Societe canadienne d''hypotheque et du logement'),
(34233, 'https://ror.org/04zt7fp74', 'no_lang_code', 1, 'https://ror.org/04zt7fp74 Streamline Automation (United States)'),
(34234, 'https://ror.org/04ztfpt34', 'no_lang_code', 1, 'https://ror.org/04ztfpt34 Boreal Laser (Canada)'),
(34235, 'https://ror.org/04zvkqw17', 'no_lang_code', 1, 'https://ror.org/04zvkqw17 Signal Systems Corporation (United States)'),
(34236, 'https://ror.org/04zz3cg37', 'no_lang_code', 1, 'https://ror.org/04zz3cg37 Monterey Technologies (United States)'),
(34237, 'https://ror.org/05005pp50', 'no_lang_code', 1, 'https://ror.org/05005pp50 Division By Zero (Sweden)'),
(34238, 'https://ror.org/05014nn74', 'no_lang_code', 1, 'https://ror.org/05014nn74 CreateAbility Concepts (United States)'),
(34239, 'https://ror.org/05021m385', 'no_lang_code', 1, 'https://ror.org/05021m385 Arclay (Canada) Arclay Technologies Naturelles'),
(34240, 'https://ror.org/0502j4525', 'no_lang_code', 1, 'https://ror.org/0502j4525 SkuTek Instrumentation (United States)'),
(34241, 'https://ror.org/0503xdx77', 'pt', 1, 'https://ror.org/0503xdx77 Fundação de Amparo à Pesquisa e Inovação do Estado de Santa Catarina'),
(34242, 'https://ror.org/0506t0t42', 'fr', 1, 'https://ror.org/0506t0t42 Doctors Without Borders Médecins Sans Frontières'),
(34243, 'https://ror.org/05072yv34', 'sv', 1, 'https://ror.org/05072yv34 Barncancerfonden Swedish Childhood Cancer Foundation'),
(34244, 'https://ror.org/050azj708', 'no_lang_code', 1, 'https://ror.org/050azj708 GenUs BioSystems (United States)'),
(34245, 'https://ror.org/050cc9q33', 'no_lang_code', 1, 'https://ror.org/050cc9q33 Virtual Simulation and Training (United States)'),
(34246, 'https://ror.org/050cwt049', 'no_lang_code', 1, 'https://ror.org/050cwt049 TeraXion (Canada)'),
(34247, 'https://ror.org/050d4yq46', 'fr', 1, 'https://ror.org/050d4yq46 Desjardins, Mouvement des caisses Desjardins'),
(34248, 'https://ror.org/050dp5763', 'en', 1, 'https://ror.org/050dp5763 Professional Staff Congress'),
(34249, 'https://ror.org/050dxn033', 'no_lang_code', 1, 'https://ror.org/050dxn033 Street Smart Equipment (Sweden)'),
(34250, 'https://ror.org/050enm509', 'no_lang_code', 1, 'https://ror.org/050enm509 Watersprint (Sweden)'),
(34251, 'https://ror.org/050fxb616', 'no_lang_code', 1, 'https://ror.org/050fxb616 Solidia Technologies (United States)'),
(34252, 'https://ror.org/050hn9p12', 'no_lang_code', 1, 'https://ror.org/050hn9p12 Menon International (United States)'),
(34253, 'https://ror.org/050hvq478', 'en', 1, 'https://ror.org/050hvq478 Budapest Institute'),
(34254, 'https://ror.org/050jqn596', 'en', 1, 'https://ror.org/050jqn596 South Bohemia research center of aquaculture and biodiversity of hydrocenoses'),
(34255, 'https://ror.org/050kwa993', 'en', 1, 'https://ror.org/050kwa993 British Society of Animal Science'),
(34256, 'https://ror.org/050pyja33', 'no_lang_code', 1, 'https://ror.org/050pyja33 Phoenix Canada Oil Company (Canada)'),
(34257, 'https://ror.org/050qmck25', 'no_lang_code', 1, 'https://ror.org/050qmck25 TE SubCom (United States)'),
(34258, 'https://ror.org/050rgn017', 'en', 1, 'https://ror.org/050rgn017 Diabetes UK'),
(34259, 'https://ror.org/050tm0329', 'en', 1, 'https://ror.org/050tm0329 Colorado Department of Education'),
(34260, 'https://ror.org/050tq6t62', 'en', 1, 'https://ror.org/050tq6t62 International Solar Energy Research Center Konstanz'),
(34261, 'https://ror.org/050vtbc65', 'no_lang_code', 1, 'https://ror.org/050vtbc65 Vestigia'),
(34262, 'https://ror.org/050w3c487', 'no_lang_code', 1, 'https://ror.org/050w3c487 RedBite (United Kingdom)'),
(34263, 'https://ror.org/050whk651', 'no_lang_code', 1, 'https://ror.org/050whk651 Nlogic (United States)'),
(34264, 'https://ror.org/050yj7e58', 'en', 1, 'https://ror.org/050yj7e58 Cement Association of Canada'),
(34265, 'https://ror.org/050yq5k07', 'no_lang_code', 1, 'https://ror.org/050yq5k07 Aerobotix (United States)'),
(34266, 'https://ror.org/050yqvv05', 'es', 1, 'https://ror.org/050yqvv05 Fondo Nacional de Ciencia Tecnología e Innovación'),
(34267, 'https://ror.org/05100e415', 'en', 1, 'https://ror.org/05100e415 Venture Cup'),
(34268, 'https://ror.org/051177492', 'no_lang_code', 1, 'https://ror.org/051177492 BP (Canada)'),
(34269, 'https://ror.org/0511ejf03', 'no_lang_code', 1, 'https://ror.org/0511ejf03 OMS Lighting (Slovakia)'),
(34270, 'https://ror.org/05130dm31', 'en', 1, 'https://ror.org/05130dm31 Bonnie Walker and Associates'),
(34271, 'https://ror.org/0514w0t77', 'en', 1, 'https://ror.org/0514w0t77 Yixing Tumor Hospital'),
(34272, 'https://ror.org/0515k5w36', 'en', 1, 'https://ror.org/0515k5w36 Rita Allen Foundation'),
(34273, 'https://ror.org/05191c058', 'en', 1, 'https://ror.org/05191c058 Japan Society'),
(34274, 'https://ror.org/05198nw13', 'no_lang_code', 1, 'https://ror.org/05198nw13 Immunovia (Sweden)'),
(34275, 'https://ror.org/0519hrc61', 'sv', 1, 'https://ror.org/0519hrc61 Tekniska Hƶgskolans StudentkƄr'),
(34276, 'https://ror.org/051affp12', 'no_lang_code', 1, 'https://ror.org/051affp12 K2 Energy Solutions (United States)'),
(34277, 'https://ror.org/051b2q112', 'no_lang_code', 1, 'https://ror.org/051b2q112 ITT (United States)'),
(34278, 'https://ror.org/051c4bd82', 'en', 1, 'https://ror.org/051c4bd82 First Bethune Hospital of Jilin University å‰ęž—å¤§å­¦ē¬¬äø€åŒ»é™¢ē§‘ē ”ę•™å­¦ę„¼'),
(34279, 'https://ror.org/051d4q284', 'no_lang_code', 1, 'https://ror.org/051d4q284 UtopiaCompression (United States)'),
(34280, 'https://ror.org/051d8c692', 'no_lang_code', 1, 'https://ror.org/051d8c692 Single Technologies (Sweden)'),
(34281, 'https://ror.org/051e8wd44', 'no_lang_code', 1, 'https://ror.org/051e8wd44 Digital Solid State Propulsion (United States)'),
(34282, 'https://ror.org/051eek848', 'no_lang_code', 1, 'https://ror.org/051eek848 Paradigm Productions (United States)'),
(34283, 'https://ror.org/051fk5x88', 'no_lang_code', 1, 'https://ror.org/051fk5x88 Heptares Therapeutics (United Kingdom)'),
(34284, 'https://ror.org/051g4aa15', 'no_lang_code', 1, 'https://ror.org/051g4aa15 Arcticus Systems (Sweden)'),
(34285, 'https://ror.org/051m8tg66', 'en', 1, 'https://ror.org/051m8tg66 Centre de Traduction des Organes de l''Union Européenne Translation Centre for the Bodies of the European Union Übersetzungszentrum für die Einrichtungen der Europäischen Union'),
(34286, 'https://ror.org/051mn7g75', 'en', 1, 'https://ror.org/051mn7g75 Peepoople'),
(34287, 'https://ror.org/051n06p20', 'no_lang_code', 1, 'https://ror.org/051n06p20 Esprit (Slovakia)'),
(34288, 'https://ror.org/051n9kx09', 'en', 1, 'https://ror.org/051n9kx09 National Emergency Management Agency'),
(34289, 'https://ror.org/051nezy81', 'no_lang_code', 1, 'https://ror.org/051nezy81 Geneton (Slovakia)'),
(34290, 'https://ror.org/051pand48', 'no_lang_code', 1, 'https://ror.org/051pand48 RINI Technologies (United States)'),
(34291, 'https://ror.org/051pks088', 'no_lang_code', 1, 'https://ror.org/051pks088 Alelo (United States)'),
(34292, 'https://ror.org/051qp9k68', 'no_lang_code', 1, 'https://ror.org/051qp9k68 Texila American University'),
(34293, 'https://ror.org/051rke185', 'no_lang_code', 1, 'https://ror.org/051rke185 Eagle Harbor Technologies (United States)'),
(34294, 'https://ror.org/051s8tq24', 'en', 1, 'https://ror.org/051s8tq24 Canadian Mining Industry Research Organization'),
(34295, 'https://ror.org/051sz9w49', 'no_lang_code', 1, 'https://ror.org/051sz9w49 G-trend (Slovakia)'),
(34296, 'https://ror.org/051w9pj35', 'en', 1, 'https://ror.org/051w9pj35 Integrated Behavioral Technologies'),
(34297, 'https://ror.org/051wxy155', 'no_lang_code', 1, 'https://ror.org/051wxy155 SAFCell (United States)'),
(34298, 'https://ror.org/051xfvw62', 'no_lang_code', 1, 'https://ror.org/051xfvw62 Futures in Rehabilitation Management (United States)');
INSERT INTO `rors` VALUES
(34299, 'https://ror.org/051z3gy60', 'no_lang_code', 1, 'https://ror.org/051z3gy60 SySense (United States)'),
(34300, 'https://ror.org/0521thx35', 'no_lang_code', 1, 'https://ror.org/0521thx35 HLS Research (United States)'),
(34301, 'https://ror.org/05225qa62', 'no_lang_code', 1, 'https://ror.org/05225qa62 Ascatron (Sweden)'),
(34302, 'https://ror.org/052261q33', 'en', 1, 'https://ror.org/052261q33 Swedish Heart-Lung Foundation'),
(34303, 'https://ror.org/0523w5y95', 'no_lang_code', 1, 'https://ror.org/0523w5y95 Industrial Measurement Systems (United States)'),
(34304, 'https://ror.org/05249qj80', 'en', 1, 'https://ror.org/05249qj80 Positive Behavioral Solutions'),
(34305, 'https://ror.org/0524pqp96', 'en', 1, 'https://ror.org/0524pqp96 Sexual Health Clinic'),
(34306, 'https://ror.org/05257z229', 'en', 1, 'https://ror.org/05257z229 Human Growth Foundation'),
(34307, 'https://ror.org/0526rb807', 'no_lang_code', 1, 'https://ror.org/0526rb807 Government Cost Accounting System (United States)'),
(34308, 'https://ror.org/0526snb40', 'en', 1, 'https://ror.org/0526snb40 Royal Academy of Engineering'),
(34309, 'https://ror.org/052cd4384', 'no_lang_code', 1, 'https://ror.org/052cd4384 JDLL (United States)'),
(34310, 'https://ror.org/052cqpt62', 'en', 1, 'https://ror.org/052cqpt62 Australian Society for Parasitology'),
(34311, 'https://ror.org/052csg198', 'en', 1, 'https://ror.org/052csg198 Alfred P. Sloan Foundation'),
(34312, 'https://ror.org/052f1qm24', 'no_lang_code', 1, 'https://ror.org/052f1qm24 Mw-innovation (Sweden)'),
(34313, 'https://ror.org/052fns920', 'no_lang_code', 1, 'https://ror.org/052fns920 Victor Technologies (United States)'),
(34314, 'https://ror.org/052h4sm36', 'no_lang_code', 1, 'https://ror.org/052h4sm36 Abel Manufacturing Company (United States)'),
(34315, 'https://ror.org/052hy8d96', 'no_lang_code', 1, 'https://ror.org/052hy8d96 Microphase Coatings (United States)'),
(34316, 'https://ror.org/052kdcb58', 'en', 1, 'https://ror.org/052kdcb58 Institute for Nuclear Research Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(34317, 'https://ror.org/052q16111', 'no_lang_code', 1, 'https://ror.org/052q16111 Mathtech (United States)'),
(34318, 'https://ror.org/052q3cn21', 'en', 1, 'https://ror.org/052q3cn21 National Institute of Malariology, Parasitology and Entomology'),
(34319, 'https://ror.org/052syjz96', 'no_lang_code', 1, 'https://ror.org/052syjz96 Environmental Remediation Consultants (United States)'),
(34320, 'https://ror.org/052tkjg37', 'no_lang_code', 1, 'https://ror.org/052tkjg37 Systems & Materials Research Corporation (United States)'),
(34321, 'https://ror.org/052vnbj45', 'no_lang_code', 1, 'https://ror.org/052vnbj45 Apache (Canada)'),
(34322, 'https://ror.org/052xa3526', 'sv', 1, 'https://ror.org/052xa3526 FoU Sƶdertƶrn'),
(34323, 'https://ror.org/0530w0388', 'no_lang_code', 1, 'https://ror.org/0530w0388 Object Research Systems (Canada)'),
(34324, 'https://ror.org/0532ef257', 'no_lang_code', 1, 'https://ror.org/0532ef257 Cargill (Canada)'),
(34325, 'https://ror.org/0533a4v91', 'no_lang_code', 1, 'https://ror.org/0533a4v91 Ambalux (United States)'),
(34326, 'https://ror.org/0533jxz69', 'no_lang_code', 1, 'https://ror.org/0533jxz69 Saab (United States)'),
(34327, 'https://ror.org/05357zt36', 'en', 1, 'https://ror.org/05357zt36 Ministry of Justice'),
(34328, 'https://ror.org/05370mv03', 'en', 1, 'https://ror.org/05370mv03 Woods Hole Sea Grant'),
(34329, 'https://ror.org/0537cvg39', 'no_lang_code', 1, 'https://ror.org/0537cvg39 Magna International (Canada)'),
(34330, 'https://ror.org/0537h0h72', 'en', 1, 'https://ror.org/0537h0h72 Housing and Development Board 组屋'),
(34331, 'https://ror.org/0538jkx44', 'no_lang_code', 1, 'https://ror.org/0538jkx44 Diversified Energy (United States)'),
(34332, 'https://ror.org/05391qc94', 'en', 1, 'https://ror.org/05391qc94 National Coal Mining Museum for England'),
(34333, 'https://ror.org/05396f476', 'no_lang_code', 1, 'https://ror.org/05396f476 BioDetection Systems (Netherlands)'),
(34334, 'https://ror.org/053cbsa02', 'en', 1, 'https://ror.org/053cbsa02 Cleveland Institute of Music'),
(34335, 'https://ror.org/053gdty29', 'en', 1, 'https://ror.org/053gdty29 Creative Thermal Solutions'),
(34336, 'https://ror.org/053hp2m86', 'no_lang_code', 1, 'https://ror.org/053hp2m86 SICOM Systems (United States)'),
(34337, 'https://ror.org/053j10c72', 'es', 1, 'https://ror.org/053j10c72 Instituto Murciano de Investigación Biosanitaria'),
(34338, 'https://ror.org/053j2sg20', 'no_lang_code', 1, 'https://ror.org/053j2sg20 Sentar (United States)'),
(34339, 'https://ror.org/053jbrv80', 'en', 1, 'https://ror.org/053jbrv80 Manitoba Forage Seed Association'),
(34340, 'https://ror.org/053met561', 'no_lang_code', 1, 'https://ror.org/053met561 RetCorr (Sweden)'),
(34341, 'https://ror.org/053pbaz76', 'no_lang_code', 1, 'https://ror.org/053pbaz76 RPC Bebo (United Kingdom)'),
(34342, 'https://ror.org/053qcv951', 'en', 1, 'https://ror.org/053qcv951 European Association of Distance Teaching Universities'),
(34343, 'https://ror.org/053staa05', 'en', 1, 'https://ror.org/053staa05 Anti Filariasis Campaign'),
(34344, 'https://ror.org/053v2gh09', 'en', 1, 'https://ror.org/053v2gh09 Second Xiangya Hospital of Central South University'),
(34345, 'https://ror.org/053y5js51', 'no_lang_code', 1, 'https://ror.org/053y5js51 Real-Time Innovations (United States)'),
(34346, 'https://ror.org/0540t6b85', 'no_lang_code', 1, 'https://ror.org/0540t6b85 Metaara Medical Technologies (Canada)'),
(34347, 'https://ror.org/054271w14', 'no_lang_code', 1, 'https://ror.org/054271w14 Computational Sensors (United States)'),
(34348, 'https://ror.org/05438sd72', 'no_lang_code', 1, 'https://ror.org/05438sd72 Table Mountain Optics (United States)'),
(34349, 'https://ror.org/0543jq429', 'no_lang_code', 1, 'https://ror.org/0543jq429 Kalscott Engineering (United States)'),
(34350, 'https://ror.org/054586n40', 'en', 1, 'https://ror.org/054586n40 Gƶcseji Museum'),
(34351, 'https://ror.org/0546qf840', 'no_lang_code', 1, 'https://ror.org/0546qf840 MAYA Design (United States)'),
(34352, 'https://ror.org/0548bd853', 'no_lang_code', 1, 'https://ror.org/0548bd853 Roli (United Kingdom)'),
(34353, 'https://ror.org/0549cht89', 'en', 1, 'https://ror.org/0549cht89 Algaeventure Systems'),
(34354, 'https://ror.org/054a0at43', 'en', 1, 'https://ror.org/054a0at43 Michigan Department of Licensing and Regulatory Affairs'),
(34355, 'https://ror.org/054bzew20', 'no_lang_code', 1, 'https://ror.org/054bzew20 Cellular Dynamics International (United States)'),
(34356, 'https://ror.org/054dq0621', 'no_lang_code', 1, 'https://ror.org/054dq0621 China National Offshore Oil Corporation (China) äø­ęµ·ēŸ³ę²¹ē ”ē©¶äø­åæƒ'),
(34357, 'https://ror.org/054fk6316', 'no_lang_code', 1, 'https://ror.org/054fk6316 Tau Technologies (United States)'),
(34358, 'https://ror.org/054h84g22', 'en', 1, 'https://ror.org/054h84g22 Canadian Council of Professional Fish Harvesters'),
(34359, 'https://ror.org/054kjk513', 'no_lang_code', 1, 'https://ror.org/054kjk513 IRnova (Sweden)'),
(34360, 'https://ror.org/054kvr030', 'en', 1, 'https://ror.org/054kvr030 University System of Taiwan'),
(34361, 'https://ror.org/054njw727', 'no_lang_code', 1, 'https://ror.org/054njw727 Ergolab (Sweden)'),
(34362, 'https://ror.org/054srn740', 'no_lang_code', 1, 'https://ror.org/054srn740 EPIR Technologies (United States)'),
(34363, 'https://ror.org/054t0wk73', 'en', 1, 'https://ror.org/054t0wk73 Hilbert College'),
(34364, 'https://ror.org/054tbbe35', 'en', 1, 'https://ror.org/054tbbe35 International Council on Mining and Metals'),
(34365, 'https://ror.org/054y9c036', 'it', 1, 'https://ror.org/054y9c036 Telescopio Nazionale Galileo'),
(34366, 'https://ror.org/054ym8s18', 'no_lang_code', 1, 'https://ror.org/054ym8s18 SƄgCenter (Sweden)'),
(34367, 'https://ror.org/05503d050', 'en', 1, 'https://ror.org/05503d050 Ministry of the Interior of the Republic of Latvia'),
(34368, 'https://ror.org/05506vc27', 'no_lang_code', 1, 'https://ror.org/05506vc27 Ultrazvuk (Slovakia)'),
(34369, 'https://ror.org/0553q3w79', 'en', 1, 'https://ror.org/0553q3w79 National Society for the Prevention of Cruelty to Children'),
(34370, 'https://ror.org/0558bzs02', 'no_lang_code', 1, 'https://ror.org/0558bzs02 Iron Ore Company (Canada)'),
(34371, 'https://ror.org/055909c12', 'no_lang_code', 1, 'https://ror.org/055909c12 Avirtek (United States)'),
(34372, 'https://ror.org/0559w8070', 'no_lang_code', 1, 'https://ror.org/0559w8070 Immune Therapy Holdings (Sweden)'),
(34373, 'https://ror.org/055aaqn82', 'fr', 1, 'https://ror.org/055aaqn82 Centre d''expertise et de recherche en infrastructures urbaines'),
(34374, 'https://ror.org/055arfx13', 'no_lang_code', 1, 'https://ror.org/055arfx13 Electronic Arts (Canada)'),
(34375, 'https://ror.org/055d8gs64', 'en', 1, 'https://ror.org/055d8gs64 Dutch Techcentre for Life Sciences'),
(34376, 'https://ror.org/055e0bc90', 'en', 1, 'https://ror.org/055e0bc90 JEVS Human Services'),
(34377, 'https://ror.org/055gka453', 'en', 1, 'https://ror.org/055gka453 State Administration of Foreign Experts Affairs'),
(34378, 'https://ror.org/055j5f215', 'en', 1, 'https://ror.org/055j5f215 Earthgen'),
(34379, 'https://ror.org/055kcmv29', 'no_lang_code', 1, 'https://ror.org/055kcmv29 Anautics (United States)'),
(34380, 'https://ror.org/055kw3s45', 'no_lang_code', 1, 'https://ror.org/055kw3s45 APIC (United States)'),
(34381, 'https://ror.org/055mrxn09', 'no_lang_code', 1, 'https://ror.org/055mrxn09 Early Warning (United States)'),
(34382, 'https://ror.org/055n66f64', 'no_lang_code', 1, 'https://ror.org/055n66f64 Dancing Dots (United States)'),
(34383, 'https://ror.org/055pabd63', 'no_lang_code', 1, 'https://ror.org/055pabd63 IERUS Technologies (United States)'),
(34384, 'https://ror.org/055pf8065', 'en', 1, 'https://ror.org/055pf8065 ERA-NET Plant Genomics'),
(34385, 'https://ror.org/055pgv213', 'de', 1, 'https://ror.org/055pgv213 Halbleiterlabor der Max-Planck-Gesellschaft, Halbleiterlabor of the Max-Planck-Society'),
(34386, 'https://ror.org/055r3qb62', 'no_lang_code', 1, 'https://ror.org/055r3qb62 IN Space (United States)'),
(34387, 'https://ror.org/055w1jz52', 'no_lang_code', 1, 'https://ror.org/055w1jz52 Sosei Group Corporation (United Kingdom)'),
(34388, 'https://ror.org/055w74b96', 'en', 1, 'https://ror.org/055w74b96 First Affiliated Hospital of Dalian Medical University å¤§čæžåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(34389, 'https://ror.org/056154p75', 'no_lang_code', 1, 'https://ror.org/056154p75 Gestamp (Sweden)'),
(34390, 'https://ror.org/0561xc723', 'en', 1, 'https://ror.org/0561xc723 Swedish Foundation for International Cooperation in Research and Higher Education'),
(34391, 'https://ror.org/0562vg232', 'en', 1, 'https://ror.org/0562vg232 Ernest C. Manning Awards Foundation La Fondation des Prix Ernest C. Manning'),
(34392, 'https://ror.org/056544713', 'en', 1, 'https://ror.org/056544713 National Graduate School of Quality Management'),
(34393, 'https://ror.org/05658r667', 'no_lang_code', 1, 'https://ror.org/05658r667 Total Quality Systems (United States)'),
(34394, 'https://ror.org/0565gth98', 'fr', 1, 'https://ror.org/0565gth98 Ouranos'),
(34395, 'https://ror.org/0566crb40', 'en', 1, 'https://ror.org/0566crb40 French-Swedish Research Association'),
(34396, 'https://ror.org/0566y6534', 'no_lang_code', 1, 'https://ror.org/0566y6534 Sotera Defense Solutions (United States)'),
(34397, 'https://ror.org/0567f1w19', 'en', 1, 'https://ror.org/0567f1w19 Nederlands Instituut voor Onderzoek in de Katalyse Netherlands Institute for Catalysis Research'),
(34398, 'https://ror.org/0567fxj77', 'no_lang_code', 1, 'https://ror.org/0567fxj77 Hog Administrative Marketing Services (Canada)'),
(34399, 'https://ror.org/0567jp802', 'no_lang_code', 1, 'https://ror.org/0567jp802 Mutewatch (Sweden)'),
(34400, 'https://ror.org/0569jas47', 'en', 1, 'https://ror.org/0569jas47 Laguna Department of Education'),
(34401, 'https://ror.org/0569vjj73', 'en', 1, 'https://ror.org/0569vjj73 Australian Wine Research Institute'),
(34402, 'https://ror.org/056a3nr23', 'en', 1, 'https://ror.org/056a3nr23 Advertising Educational Foundation'),
(34403, 'https://ror.org/056c5ze41', 'no_lang_code', 1, 'https://ror.org/056c5ze41 M. Alexander Nugent Consulting (United States)'),
(34404, 'https://ror.org/056hf9h18', 'en', 1, 'https://ror.org/056hf9h18 New York State Department of Agriculture and Markets'),
(34405, 'https://ror.org/056nspe91', 'en', 1, 'https://ror.org/056nspe91 Federation of the Food and Drink Industries of the Czech Republic'),
(34406, 'https://ror.org/056pabz88', 'en', 1, 'https://ror.org/056pabz88 Nathan Cummings Foundation'),
(34407, 'https://ror.org/056q60969', 'en', 1, 'https://ror.org/056q60969 Cattle Industry Development Council'),
(34408, 'https://ror.org/056r4cj44', 'en', 1, 'https://ror.org/056r4cj44 Charity Storm'),
(34409, 'https://ror.org/056r88m65', 'pt', 1, 'https://ror.org/056r88m65 Fundação Hospitalar do Estado de Minas Gerais'),
(34410, 'https://ror.org/056rhtj86', 'sv', 1, 'https://ror.org/056rhtj86 HƤlsans Nya Verktyg'),
(34411, 'https://ror.org/056s1k160', 'no_lang_code', 1, 'https://ror.org/056s1k160 Analysis and Measurement Services (United States)'),
(34412, 'https://ror.org/056xwsc46', 'no_lang_code', 1, 'https://ror.org/056xwsc46 American Water (Canada)'),
(34413, 'https://ror.org/056y81r79', 'en', 1, 'https://ror.org/056y81r79 Higher Education Funding Council for Wales'),
(34414, 'https://ror.org/056z8k029', 'no_lang_code', 1, 'https://ror.org/056z8k029 SST Wireless (Canada)'),
(34415, 'https://ror.org/0570n2773', 'en', 1, 'https://ror.org/0570n2773 Institute for Tourism'),
(34416, 'https://ror.org/0572j2882', 'no_lang_code', 1, 'https://ror.org/0572j2882 Schlumberger (Canada)'),
(34417, 'https://ror.org/0573tzb24', 'no_lang_code', 1, 'https://ror.org/0573tzb24 Hunter Defense Technologies (United States)'),
(34418, 'https://ror.org/0574nqa10', 'no_lang_code', 1, 'https://ror.org/0574nqa10 WINTEC (United States)'),
(34419, 'https://ror.org/0575ww420', 'no_lang_code', 1, 'https://ror.org/0575ww420 Cyan Systems (United States)'),
(34420, 'https://ror.org/0576bcx21', 'no_lang_code', 1, 'https://ror.org/0576bcx21 ANP Technologies (United States)'),
(34421, 'https://ror.org/0576dtf44', 'no_lang_code', 1, 'https://ror.org/0576dtf44 Molecular Discovery (United Kingdom)'),
(34422, 'https://ror.org/0577j0g35', 'en', 1, 'https://ror.org/0577j0g35 Human Resource Development Group'),
(34423, 'https://ror.org/057b2ek35', 'en', 1, 'https://ror.org/057b2ek35 Intensive Care National Audit & Research Centre'),
(34424, 'https://ror.org/057cz4c58', 'fr', 1, 'https://ror.org/057cz4c58 Centre de DƩveloppement du Porc du QuƩbec'),
(34425, 'https://ror.org/057e7ah68', 'no_lang_code', 1, 'https://ror.org/057e7ah68 Badrilla (United Kingdom)'),
(34426, 'https://ror.org/057eesj13', 'no_lang_code', 1, 'https://ror.org/057eesj13 Shermag (Canada)'),
(34427, 'https://ror.org/057kca452', 'no_lang_code', 1, 'https://ror.org/057kca452 SenSic (Sweden)'),
(34428, 'https://ror.org/057m37z25', 'en', 1, 'https://ror.org/057m37z25 Maine School of Science and Mathematics'),
(34429, 'https://ror.org/057mh7566', 'en', 1, 'https://ror.org/057mh7566 MiraCosta College'),
(34430, 'https://ror.org/057qbe640', 'en', 1, 'https://ror.org/057qbe640 Southern Regional Assembly'),
(34431, 'https://ror.org/057rnbw54', 'en', 1, 'https://ror.org/057rnbw54 Ivy Foundation'),
(34432, 'https://ror.org/057s3rs39', 'no_lang_code', 1, 'https://ror.org/057s3rs39 Mabtech (Sweden)'),
(34433, 'https://ror.org/057s7cs58', 'no_lang_code', 1, 'https://ror.org/057s7cs58 Primateria (Sweden)'),
(34434, 'https://ror.org/057t8sx48', 'en', 1, 'https://ror.org/057t8sx48 Pacific Northwest Foundation'),
(34435, 'https://ror.org/057tmpb95', 'no_lang_code', 1, 'https://ror.org/057tmpb95 International Association of Virtual Organizations (United States)'),
(34436, 'https://ror.org/057w9fs93', 'it', 1, 'https://ror.org/057w9fs93 Istituto di Genomica Applicata'),
(34437, 'https://ror.org/057w9g751', 'no_lang_code', 1, 'https://ror.org/057w9g751 Tialinx (United States)'),
(34438, 'https://ror.org/057wkj006', 'en', 1, 'https://ror.org/057wkj006 Center for Excellence in Basic Sciences ą¤®ą„Œą¤²ą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤•ą¤°ą„ą¤· ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(34439, 'https://ror.org/057xcq908', 'no_lang_code', 1, 'https://ror.org/057xcq908 Inerventions (Sweden)'),
(34440, 'https://ror.org/05808qp03', 'en', 1, 'https://ror.org/05808qp03 Jiangxi Academy of Forestry ę±Ÿč„æēœęž—äøšē§‘å­¦é™¢'),
(34441, 'https://ror.org/0583kge49', 'no_lang_code', 1, 'https://ror.org/0583kge49 Mosaic ATM (United States)'),
(34442, 'https://ror.org/05848kk30', 'no_lang_code', 1, 'https://ror.org/05848kk30 Cascades (Canada)'),
(34443, 'https://ror.org/0584kkb18', 'en', 1, 'https://ror.org/0584kkb18 Gerda Henkel Foundation Gerda Henkel Stiftung'),
(34444, 'https://ror.org/0585vsm16', 'en', 1, 'https://ror.org/0585vsm16 Earthwatch Institute'),
(34445, 'https://ror.org/0586v7c76', 'no_lang_code', 1, 'https://ror.org/0586v7c76 Thermal Systems Technology (Sweden)'),
(34446, 'https://ror.org/0587gk311', 'no_lang_code', 1, 'https://ror.org/0587gk311 Flexenclosure (Sweden)'),
(34447, 'https://ror.org/0587xtk95', 'no_lang_code', 1, 'https://ror.org/0587xtk95 Kalite Sistem Group (Turkey)'),
(34448, 'https://ror.org/058a12170', 'en', 1, 'https://ror.org/058a12170 Royal Swedish Academy of Engineering Sciences'),
(34449, 'https://ror.org/058a2pj71', 'it', 1, 'https://ror.org/058a2pj71 Fondazione Toscana Gabriele Monasterio'),
(34450, 'https://ror.org/058agte50', 'no_lang_code', 1, 'https://ror.org/058agte50 Blücher (Germany)'),
(34451, 'https://ror.org/058b4nw61', 'sv', 1, 'https://ror.org/058b4nw61 Teknopol'),
(34452, 'https://ror.org/058bgdt55', 'no_lang_code', 1, 'https://ror.org/058bgdt55 Cotton (United States)'),
(34453, 'https://ror.org/058bh7p93', 'de', 1, 'https://ror.org/058bh7p93 Pflanzensoziologische Institut'),
(34454, 'https://ror.org/058c0xb46', 'en', 1, 'https://ror.org/058c0xb46 Crohn''s and Colitis UK'),
(34455, 'https://ror.org/058c5yh92', 'no_lang_code', 1, 'https://ror.org/058c5yh92 Shanghai Fenghe Information Technology (China)'),
(34456, 'https://ror.org/058ewaq25', 'no_lang_code', 1, 'https://ror.org/058ewaq25 IntraMicron (United States)'),
(34457, 'https://ror.org/058hg4545', 'no_lang_code', 1, 'https://ror.org/058hg4545 Simris Alg (Sweden)'),
(34458, 'https://ror.org/058jhz755', 'no_lang_code', 1, 'https://ror.org/058jhz755 Rotordynamics-Seal Research (United States)'),
(34459, 'https://ror.org/058k59m52', 'en', 1, 'https://ror.org/058k59m52 Queen Medical'),
(34460, 'https://ror.org/058nd7377', 'nl', 1, 'https://ror.org/058nd7377 Museum Boerhaave'),
(34461, 'https://ror.org/058nry849', 'en', 1, 'https://ror.org/058nry849 Geological Survey of Israel'),
(34462, 'https://ror.org/058pbt095', 'no_lang_code', 1, 'https://ror.org/058pbt095 Avalon Rare Metals (Canada)'),
(34463, 'https://ror.org/058pyyv44', 'en', 1, 'https://ror.org/058pyyv44 National Astronomical Observatories äø­å›½ē§‘å­¦é™¢å›½å®¶å¤©ę–‡å°'),
(34464, 'https://ror.org/058qtek75', 'en', 1, 'https://ror.org/058qtek75 Flinn Foundation'),
(34465, 'https://ror.org/058qtt435', 'en', 1, 'https://ror.org/058qtt435 United Nations Population Fund'),
(34466, 'https://ror.org/058smmw67', 'en', 1, 'https://ror.org/058smmw67 Ian Potter Foundation'),
(34467, 'https://ror.org/058tbj885', 'no_lang_code', 1, 'https://ror.org/058tbj885 Vipo (Slovakia)'),
(34468, 'https://ror.org/058vwmj73', 'no_lang_code', 1, 'https://ror.org/058vwmj73 MicroAssembly Technologies (United States)'),
(34469, 'https://ror.org/058zz0t50', 'en', 1, 'https://ror.org/058zz0t50 Southern California University for Professional Studies'),
(34470, 'https://ror.org/0592h9m82', 'en', 1, 'https://ror.org/0592h9m82 Department of Emergency Services and Public Protection'),
(34471, 'https://ror.org/0592vaq06', 'en', 1, 'https://ror.org/0592vaq06 Channel 7 Children''s Research Foundation'),
(34472, 'https://ror.org/0593qvg67', 'no_lang_code', 1, 'https://ror.org/0593qvg67 Anger Machining (Austria)'),
(34473, 'https://ror.org/0593wzx95', 'no_lang_code', 1, 'https://ror.org/0593wzx95 Ballard Power Systems (United States)'),
(34474, 'https://ror.org/05943ep32', 'no_lang_code', 1, 'https://ror.org/05943ep32 Anasoft (Slovakia)'),
(34475, 'https://ror.org/059617j81', 'en', 1, 'https://ror.org/059617j81 Crown College'),
(34476, 'https://ror.org/059b4v909', 'en', 1, 'https://ror.org/059b4v909 Michigan Manufacturing Technology Center'),
(34477, 'https://ror.org/059bes354', 'en', 1, 'https://ror.org/059bes354 Minnesota Department of Administration'),
(34478, 'https://ror.org/059cy3h71', 'no_lang_code', 1, 'https://ror.org/059cy3h71 Meggitt (United States)'),
(34479, 'https://ror.org/059fa3x42', 'en', 1, 'https://ror.org/059fa3x42 Korean Institute of Criminology'),
(34480, 'https://ror.org/059gy7s73', 'en', 1, 'https://ror.org/059gy7s73 American Society of Echocardiography'),
(34481, 'https://ror.org/059hh8s03', 'en', 1, 'https://ror.org/059hh8s03 Arc of the United States'),
(34482, 'https://ror.org/059hk6n77', 'en', 1, 'https://ror.org/059hk6n77 Bombay Natural History Society'),
(34483, 'https://ror.org/059hsda18', 'no_lang_code', 1, 'https://ror.org/059hsda18 Apple (United States)'),
(34484, 'https://ror.org/059n53q30', 'no_lang_code', 1, 'https://ror.org/059n53q30 Doric Lenses (Canada)'),
(34485, 'https://ror.org/059nraq63', 'no_lang_code', 1, 'https://ror.org/059nraq63 Automatic Sync Technologies (United States)'),
(34486, 'https://ror.org/059s50x31', 'no_lang_code', 1, 'https://ror.org/059s50x31 Brainglass (Sweden)'),
(34487, 'https://ror.org/059tmdq14', 'de', 1, 'https://ror.org/059tmdq14 Institut für den Donauraum und Mitteleuropa'),
(34488, 'https://ror.org/059vhx348', 'fr', 1, 'https://ror.org/059vhx348 Centre de Recherche en SantƩ de Nouna'),
(34489, 'https://ror.org/059vrj561', 'no_lang_code', 1, 'https://ror.org/059vrj561 Orbit Logic (United States)'),
(34490, 'https://ror.org/059xf0t91', 'no_lang_code', 1, 'https://ror.org/059xf0t91 Dominion Diagnostics (United States)'),
(34491, 'https://ror.org/059xj7p12', 'en', 1, 'https://ror.org/059xj7p12 Matheny Hospital'),
(34492, 'https://ror.org/059xraf34', 'no_lang_code', 1, 'https://ror.org/059xraf34 Alstom (Canada)'),
(34493, 'https://ror.org/059y2we84', 'no_lang_code', 1, 'https://ror.org/059y2we84 BlazeTech (United States)'),
(34494, 'https://ror.org/059yjzn93', 'en', 1, 'https://ror.org/059yjzn93 A*STAR Graduate Academy'),
(34495, 'https://ror.org/059z1vb17', 'no_lang_code', 1, 'https://ror.org/059z1vb17 Hackett Publishing (United States)'),
(34496, 'https://ror.org/05a0zp865', 'no_lang_code', 1, 'https://ror.org/05a0zp865 NanoTechRanch (United States)'),
(34497, 'https://ror.org/05a2v3w63', 'no_lang_code', 1, 'https://ror.org/05a2v3w63 Under Armour (United States)'),
(34498, 'https://ror.org/05a3mwa69', 'en', 1, 'https://ror.org/05a3mwa69 LaGuardia Community College'),
(34499, 'https://ror.org/05a45xc26', 'no_lang_code', 1, 'https://ror.org/05a45xc26 Alberta Pork (Canada)'),
(34500, 'https://ror.org/05a45xy69', 'no_lang_code', 1, 'https://ror.org/05a45xy69 Compass Technology Group (United States)'),
(34501, 'https://ror.org/05a4edg92', 'no_lang_code', 1, 'https://ror.org/05a4edg92 CathPrint (Sweden)'),
(34502, 'https://ror.org/05a4hd624', 'no_lang_code', 1, 'https://ror.org/05a4hd624 Varadero Capital (United States)'),
(34503, 'https://ror.org/05a7g7f24', 'en', 1, 'https://ror.org/05a7g7f24 Hebei Provincial Department of Science and Technology'),
(34504, 'https://ror.org/05a9qm317', 'no_lang_code', 1, 'https://ror.org/05a9qm317 Cascade Designs (United States)'),
(34505, 'https://ror.org/05a9skj35', 'en', 1, 'https://ror.org/05a9skj35 Children''s Hospital of Suzhou University'),
(34506, 'https://ror.org/05addyx39', 'no_lang_code', 1, 'https://ror.org/05addyx39 GeneFirst (United Kingdom)'),
(34507, 'https://ror.org/05ae2mx22', 'no_lang_code', 1, 'https://ror.org/05ae2mx22 Opsun Technologies (Canada)'),
(34508, 'https://ror.org/05agqdk49', 'no_lang_code', 1, 'https://ror.org/05agqdk49 Ciena (Canada)'),
(34509, 'https://ror.org/05am3rr09', 'no_lang_code', 1, 'https://ror.org/05am3rr09 H&R Technology (United States)'),
(34510, 'https://ror.org/05amww303', 'no_lang_code', 1, 'https://ror.org/05amww303 InterSyn Technologies (United States)'),
(34511, 'https://ror.org/05anqp385', 'en', 1, 'https://ror.org/05anqp385 Seeper'),
(34512, 'https://ror.org/05apbp152', 'sv', 1, 'https://ror.org/05apbp152 Signhild Engkvists Stiftelse'),
(34513, 'https://ror.org/05ar16409', 'no_lang_code', 1, 'https://ror.org/05ar16409 Med Graph (United States)'),
(34514, 'https://ror.org/05at2ry89', 'en', 1, 'https://ror.org/05at2ry89 Nichols House Museum'),
(34515, 'https://ror.org/05atbz571', 'no_lang_code', 1, 'https://ror.org/05atbz571 Mentor Communication (Sweden)'),
(34516, 'https://ror.org/05avmtm72', 'en', 1, 'https://ror.org/05avmtm72 Arnold and Mabel Beckman Foundation'),
(34517, 'https://ror.org/05awrjz19', 'no_lang_code', 1, 'https://ror.org/05awrjz19 Monolith Semiconductor (United States)'),
(34518, 'https://ror.org/05awxd849', 'no_lang_code', 1, 'https://ror.org/05awxd849 Viaspace (United States)'),
(34519, 'https://ror.org/05ax5pz51', 'no_lang_code', 1, 'https://ror.org/05ax5pz51 Wavefront Research (United States)'),
(34520, 'https://ror.org/05ay2ee52', 'no_lang_code', 1, 'https://ror.org/05ay2ee52 Sporian Microsystems (United States)'),
(34521, 'https://ror.org/05aycsg86', 'en', 1, 'https://ror.org/05aycsg86 Ministry of Aliyah and Immigrant Absorption Ministère de l''Alya et de l''Intégration'),
(34522, 'https://ror.org/05az3m671', 'de', 1, 'https://ror.org/05az3m671 Evangelisches Studienwerk Villigst Protestant Academic Foundation'),
(34523, 'https://ror.org/05b09zv71', 'no_lang_code', 1, 'https://ror.org/05b09zv71 Lembke Elektromekaniska Verkstad (Sweden)'),
(34524, 'https://ror.org/05b0j5x36', 'en', 1, 'https://ror.org/05b0j5x36 Mother and Infant Research Activities'),
(34525, 'https://ror.org/05b2t8s27', 'en', 1, 'https://ror.org/05b2t8s27 Bavarian Forest National Park Nationalpark Bayerischer Wald'),
(34526, 'https://ror.org/05b497x63', 'no_lang_code', 1, 'https://ror.org/05b497x63 PROTO Manufacturing (United States)'),
(34527, 'https://ror.org/05b5j3m40', 'en', 1, 'https://ror.org/05b5j3m40 Academic Ranking and Rating Agency'),
(34528, 'https://ror.org/05b6dcx13', 'en', 1, 'https://ror.org/05b6dcx13 Cystic Fibrosis Canada Fibrose kystique Canada'),
(34529, 'https://ror.org/05b85tk06', 'no_lang_code', 1, 'https://ror.org/05b85tk06 Microcide (United States)'),
(34530, 'https://ror.org/05b8hvw73', 'no_lang_code', 1, 'https://ror.org/05b8hvw73 Borregaard (United Kingdom)'),
(34531, 'https://ror.org/05b9w0m88', 'pt', 1, 'https://ror.org/05b9w0m88 Laboratório Interinstitucional de e-Astronomia'),
(34532, 'https://ror.org/05bakh610', 'en', 1, 'https://ror.org/05bakh610 Healthway'),
(34533, 'https://ror.org/05bem9j20', 'no_lang_code', 1, 'https://ror.org/05bem9j20 Crabion (Italy)'),
(34534, 'https://ror.org/05bhj5e29', 'no_lang_code', 1, 'https://ror.org/05bhj5e29 Azmark Aero System (United States)'),
(34535, 'https://ror.org/05bhnjv02', 'no_lang_code', 1, 'https://ror.org/05bhnjv02 Twinleaf (United States)'),
(34536, 'https://ror.org/05bmnx256', 'no_lang_code', 1, 'https://ror.org/05bmnx256 VUP (Slovakia)'),
(34537, 'https://ror.org/05bmt7297', 'no_lang_code', 1, 'https://ror.org/05bmt7297 Consolidated Edison (United States)'),
(34538, 'https://ror.org/05bp6d935', 'no_lang_code', 1, 'https://ror.org/05bp6d935 Sealite (United States)'),
(34539, 'https://ror.org/05bq4ms81', 'en', 1, 'https://ror.org/05bq4ms81 Britton Fund'),
(34540, 'https://ror.org/05bqzfg94', 'no', 1, 'https://ror.org/05bqzfg94 NordForsk'),
(34541, 'https://ror.org/05bs32x30', 'no_lang_code', 1, 'https://ror.org/05bs32x30 Silvaco (United Kingdom)'),
(34542, 'https://ror.org/05bs6ak67', 'it', 1, 'https://ror.org/05bs6ak67 Ente Ospedaliero Ospedali Galliera'),
(34543, 'https://ror.org/05bt80j81', 'no_lang_code', 1, 'https://ror.org/05bt80j81 Tecolote Research (United States)'),
(34544, 'https://ror.org/05bthpx67', 'no_lang_code', 1, 'https://ror.org/05bthpx67 Indusec (Sweden)'),
(34545, 'https://ror.org/05bwra959', 'no_lang_code', 1, 'https://ror.org/05bwra959 Nian-Crae (United States)'),
(34546, 'https://ror.org/05bz3w661', 'en', 1, 'https://ror.org/05bz3w661 Canadian Liver Foundation Fondation Canadienne du Foie'),
(34547, 'https://ror.org/05bzq4y23', 'no_lang_code', 1, 'https://ror.org/05bzq4y23 Efficax Energy (Sweden)'),
(34548, 'https://ror.org/05c0v3585', 'no_lang_code', 1, 'https://ror.org/05c0v3585 Takeda (United Kingdom)'),
(34549, 'https://ror.org/05c11kf69', 'no_lang_code', 1, 'https://ror.org/05c11kf69 Veolia (United States)'),
(34550, 'https://ror.org/05c20s821', 'en', 1, 'https://ror.org/05c20s821 Canadian Concrete Masonry Producers Association'),
(34551, 'https://ror.org/05c27bs83', 'en', 1, 'https://ror.org/05c27bs83 Singapore Clinical Research Institute'),
(34552, 'https://ror.org/05c4phg25', 'no_lang_code', 1, 'https://ror.org/05c4phg25 AS Composite (Canada)'),
(34553, 'https://ror.org/05c4twb82', 'no_lang_code', 1, 'https://ror.org/05c4twb82 AMS (Finland)'),
(34554, 'https://ror.org/05c6fpb26', 'no_lang_code', 1, 'https://ror.org/05c6fpb26 EnerDel (United States)'),
(34555, 'https://ror.org/05c7nfs29', 'en', 1, 'https://ror.org/05c7nfs29 Commission on Rehabilitation Counselor Certification'),
(34556, 'https://ror.org/05cbz1141', 'no_lang_code', 1, 'https://ror.org/05cbz1141 Irras (Sweden)'),
(34557, 'https://ror.org/05chjan92', 'en', 1, 'https://ror.org/05chjan92 Jinan Military General Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ęµŽå—å†›åŒŗę€»åŒ»é™¢'),
(34558, 'https://ror.org/05cj5gd51', 'nl', 1, 'https://ror.org/05cj5gd51 Amsterdam Museum'),
(34559, 'https://ror.org/05cjg8w59', 'no_lang_code', 1, 'https://ror.org/05cjg8w59 NanoLab (United States)'),
(34560, 'https://ror.org/05cjxt577', 'en', 1, 'https://ror.org/05cjxt577 Herzog College'),
(34561, 'https://ror.org/05cjzsz62', 'de', 1, 'https://ror.org/05cjzsz62 Institut für Volkskultur und Kulturentwicklung'),
(34562, 'https://ror.org/05cn4v910', 'en', 1, 'https://ror.org/05cn4v910 Sheffield Health and Social Care NHS Foundation Trust'),
(34563, 'https://ror.org/05cndr128', 'no_lang_code', 1, 'https://ror.org/05cndr128 Research Center for Non Destructive Testing (Austria)'),
(34564, 'https://ror.org/05cnf4c39', 'en', 1, 'https://ror.org/05cnf4c39 Changzhi Medical College Peace Hospital'),
(34565, 'https://ror.org/05cp34c97', 'en', 1, 'https://ror.org/05cp34c97 ENDependence Center of Northern Virginia'),
(34566, 'https://ror.org/05cp7zh43', 'no_lang_code', 1, 'https://ror.org/05cp7zh43 Gamma Dynamics (United States)'),
(34567, 'https://ror.org/05cs9vc86', 'no_lang_code', 1, 'https://ror.org/05cs9vc86 Tesoro (United States)'),
(34568, 'https://ror.org/05csz3511', 'no_lang_code', 1, 'https://ror.org/05csz3511 SI2 Technologies (United States)'),
(34569, 'https://ror.org/05ctyj936', 'en', 1, 'https://ror.org/05ctyj936 Yan''an Hospital Affiliated To Kunming Medical University ę˜†ę˜Žåø‚å»¶å®‰åŒ»é™¢'),
(34570, 'https://ror.org/05cwfaq02', 'no_lang_code', 1, 'https://ror.org/05cwfaq02 Anyar (United States)'),
(34571, 'https://ror.org/05cxavv95', 'no_lang_code', 1, 'https://ror.org/05cxavv95 Metacomp Technologies (United States)'),
(34572, 'https://ror.org/05cxkpp05', 'en', 1, 'https://ror.org/05cxkpp05 DigiPen Institute of Technology'),
(34573, 'https://ror.org/05d1q3s30', 'en', 1, 'https://ror.org/05d1q3s30 IK Foundation'),
(34574, 'https://ror.org/05d1yjv69', 'no_lang_code', 1, 'https://ror.org/05d1yjv69 InnoVactiv (Canada)'),
(34575, 'https://ror.org/05d23rn59', 'en', 1, 'https://ror.org/05d23rn59 Clear Creek Baptist Bible College'),
(34576, 'https://ror.org/05d3gq009', 'no_lang_code', 1, 'https://ror.org/05d3gq009 Alberco Construction (Canada)'),
(34577, 'https://ror.org/05d3xzj88', 'hu', 1, 'https://ror.org/05d3xzj88 Jósa AndrÔs Múzeum'),
(34578, 'https://ror.org/05d54dv30', 'no_lang_code', 1, 'https://ror.org/05d54dv30 Viscando Traffic Systems (Sweden)'),
(34579, 'https://ror.org/05d5rz672', 'no_lang_code', 1, 'https://ror.org/05d5rz672 Quantum Technologies (Sweden)'),
(34580, 'https://ror.org/05d7pyf88', 'no_lang_code', 1, 'https://ror.org/05d7pyf88 Kord Technologies (United States)'),
(34581, 'https://ror.org/05d8hvk64', 'en', 1, 'https://ror.org/05d8hvk64 Global Medical Excellence Cluster'),
(34582, 'https://ror.org/05d8zhh23', 'no_lang_code', 1, 'https://ror.org/05d8zhh23 Elfarm (Sweden)'),
(34583, 'https://ror.org/05dbptw67', 'en', 1, 'https://ror.org/05dbptw67 Landelijke Onderzoekschool Taalwetenschap Netherlands Graduate School of Linguistics'),
(34584, 'https://ror.org/05dbx6743', 'en', 1, 'https://ror.org/05dbx6743 Department of Veterans Affairs'),
(34585, 'https://ror.org/05deh3d91', 'no_lang_code', 1, 'https://ror.org/05deh3d91 HeidelbergCement (Sweden)'),
(34586, 'https://ror.org/05depyc87', 'no_lang_code', 1, 'https://ror.org/05depyc87 L.Garde (United States)'),
(34587, 'https://ror.org/05dg7rt55', 'no_lang_code', 1, 'https://ror.org/05dg7rt55 Mazda (United States)'),
(34588, 'https://ror.org/05dmw9n70', 'no_lang_code', 1, 'https://ror.org/05dmw9n70 Gold Peak Industries (China)'),
(34589, 'https://ror.org/05dp7m259', 'no_lang_code', 1, 'https://ror.org/05dp7m259 Integrated Software (United States)'),
(34590, 'https://ror.org/05dpb2x88', 'no_lang_code', 1, 'https://ror.org/05dpb2x88 Tolmar (United States)'),
(34591, 'https://ror.org/05dqm7k77', 'en', 1, 'https://ror.org/05dqm7k77 Onderstepoort Veterinary Institute'),
(34592, 'https://ror.org/05drfg619', 'en', 1, 'https://ror.org/05drfg619 Central and North West London NHS Foundation Trust'),
(34593, 'https://ror.org/05drtms27', 'no_lang_code', 1, 'https://ror.org/05drtms27 Aqwary (Sweden)'),
(34594, 'https://ror.org/05ds25z56', 'no_lang_code', 1, 'https://ror.org/05ds25z56 Presagis (United States)'),
(34595, 'https://ror.org/05dsmqn98', 'no_lang_code', 1, 'https://ror.org/05dsmqn98 Medtronic (Canada)'),
(34596, 'https://ror.org/05dsr2a44', 'en', 1, 'https://ror.org/05dsr2a44 High Blood Pressure Research Council of Australia'),
(34597, 'https://ror.org/05dtjn343', 'no_lang_code', 1, 'https://ror.org/05dtjn343 Feldan (Canada)'),
(34598, 'https://ror.org/05dtvab05', 'no_lang_code', 1, 'https://ror.org/05dtvab05 Konica Minolta (Japan) ć‚³ćƒ‹ć‚«ćƒŸćƒŽćƒ«ć‚æćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(34599, 'https://ror.org/05dxas544', 'no_lang_code', 1, 'https://ror.org/05dxas544 Moon Express (United States)'),
(34600, 'https://ror.org/05dxk7523', 'no_lang_code', 1, 'https://ror.org/05dxk7523 Fibics (Canada)'),
(34601, 'https://ror.org/05e05d728', 'no_lang_code', 1, 'https://ror.org/05e05d728 Support Systems Associates (United States)'),
(34602, 'https://ror.org/05e1qed59', 'en', 1, 'https://ror.org/05e1qed59 Leading Health Care'),
(34603, 'https://ror.org/05e1zqb39', 'en', 1, 'https://ror.org/05e1zqb39 George Institute for Global Health'),
(34604, 'https://ror.org/05e2hap84', 'no_lang_code', 1, 'https://ror.org/05e2hap84 Imperium (United States)'),
(34605, 'https://ror.org/05e4d7a97', 'en', 1, 'https://ror.org/05e4d7a97 Queensland Emergency Medicine Research Foundation'),
(34606, 'https://ror.org/05e4gqg94', 'en', 1, 'https://ror.org/05e4gqg94 County Administrative Board of Stockholm'),
(34607, 'https://ror.org/05e7gcx12', 'no_lang_code', 1, 'https://ror.org/05e7gcx12 Dellcron (Sweden)'),
(34608, 'https://ror.org/05e8kbn88', 'en', 1, 'https://ror.org/05e8kbn88 Affiliated Hospital of Jining Medical University'),
(34609, 'https://ror.org/05e9f4749', 'no_lang_code', 1, 'https://ror.org/05e9f4749 Heron Systems (United States)'),
(34610, 'https://ror.org/05ea73r86', 'no_lang_code', 1, 'https://ror.org/05ea73r86 Spotscale (Sweden)'),
(34611, 'https://ror.org/05eagc649', 'en', 1, 'https://ror.org/05eagc649 Central Institute for Experimental Animals å®ŸéØ“å‹•ē‰©äø­å¤®ē ”ē©¶ę‰€'),
(34612, 'https://ror.org/05eapnn11', 'no_lang_code', 1, 'https://ror.org/05eapnn11 Zetec (United States)'),
(34613, 'https://ror.org/05eb69c53', 'no_lang_code', 1, 'https://ror.org/05eb69c53 Dynamotive Energy Systems (Canada)'),
(34614, 'https://ror.org/05ed9kb76', 'no_lang_code', 1, 'https://ror.org/05ed9kb76 Curadel (United States)'),
(34615, 'https://ror.org/05edmwq13', 'en', 1, 'https://ror.org/05edmwq13 Sundsvall Municipality'),
(34616, 'https://ror.org/05efm5n07', 'en', 1, 'https://ror.org/05efm5n07 National Health Insurance Service'),
(34617, 'https://ror.org/05eg49r29', 'en', 1, 'https://ror.org/05eg49r29 Bulgarian Science Fund'),
(34618, 'https://ror.org/05ejn6z75', 'no_lang_code', 1, 'https://ror.org/05ejn6z75 Metronome (United States)'),
(34619, 'https://ror.org/05ekh0s13', 'no_lang_code', 1, 'https://ror.org/05ekh0s13 MOgene (United States)'),
(34620, 'https://ror.org/05em4qg89', 'no_lang_code', 1, 'https://ror.org/05em4qg89 Piab (Sweden)'),
(34621, 'https://ror.org/05emypz02', 'no_lang_code', 1, 'https://ror.org/05emypz02 Transformator Design (Sweden)'),
(34622, 'https://ror.org/05esem239', 'en', 1, 'https://ror.org/05esem239 Max Planck Institute for Meteorology Max-Planck-Institut für Meteorologie'),
(34623, 'https://ror.org/05ev3vr27', 'en', 1, 'https://ror.org/05ev3vr27 Quanzhou Institute of Equipment Manufacturing Haixi Institute äø­å›½ē§‘å­¦é™¢ęµ·č„æē ”ē©¶é™¢ę³‰å·žč£…å¤‡åˆ¶é€ ē ”ē©¶ę‰€'),
(34624, 'https://ror.org/05ev63k17', 'no_lang_code', 1, 'https://ror.org/05ev63k17 Mikro-Tek (Canada)'),
(34625, 'https://ror.org/05evyfq09', 'en', 1, 'https://ror.org/05evyfq09 Balassi Institute'),
(34626, 'https://ror.org/05evznf71', 'fr', 1, 'https://ror.org/05evznf71 Institut de Recherche et d''Histoire des Textes'),
(34627, 'https://ror.org/05ewr7t48', 'en', 1, 'https://ror.org/05ewr7t48 Cure Alzheimer’s Fund'),
(34628, 'https://ror.org/05exfab56', 'en', 1, 'https://ror.org/05exfab56 Neurosciences Research Foundation'),
(34629, 'https://ror.org/05f1qm765', 'en', 1, 'https://ror.org/05f1qm765 Kopint-TƔrki Institute for Economic Research'),
(34630, 'https://ror.org/05f4xbp74', 'no_lang_code', 1, 'https://ror.org/05f4xbp74 ThinKom Solutions (United States)'),
(34631, 'https://ror.org/05f5h9j45', 'no_lang_code', 1, 'https://ror.org/05f5h9j45 Sentech Corporation (United States)'),
(34632, 'https://ror.org/05f6k3t36', 'en', 1, 'https://ror.org/05f6k3t36 Henry Viscardi School'),
(34633, 'https://ror.org/05f6mfg13', 'no_lang_code', 1, 'https://ror.org/05f6mfg13 Avisys (United States)'),
(34634, 'https://ror.org/05f7khr13', 'en', 1, 'https://ror.org/05f7khr13 Women''s Health Initiative'),
(34635, 'https://ror.org/05f7x7e62', 'no_lang_code', 1, 'https://ror.org/05f7x7e62 Gotmic (Sweden)'),
(34636, 'https://ror.org/05f8s1h70', 'no_lang_code', 1, 'https://ror.org/05f8s1h70 Kforce (United States)'),
(34637, 'https://ror.org/05fb9ak14', 'en', 1, 'https://ror.org/05fb9ak14 Robert Schalkenbach Foundation'),
(34638, 'https://ror.org/05fckk939', 'en', 1, 'https://ror.org/05fckk939 Institute of Turkish Studies'),
(34639, 'https://ror.org/05fcmfe52', 'nl', 1, 'https://ror.org/05fcmfe52 Frisian Academy Fryske Akademy'),
(34640, 'https://ror.org/05fe24682', 'en', 1, 'https://ror.org/05fe24682 Northern Territory Environment Protection Authority'),
(34641, 'https://ror.org/05fhe0r85', 'en', 1, 'https://ror.org/05fhe0r85 Agency for Defense Development źµ­ė°©ź³¼ķ•™ģ—°źµ¬ģ†Œ'),
(34642, 'https://ror.org/05fjnvm14', 'no_lang_code', 1, 'https://ror.org/05fjnvm14 Flow Analysis (United States)'),
(34643, 'https://ror.org/05fm0gf36', 'en', 1, 'https://ror.org/05fm0gf36 Danish Working Environment Authority'),
(34644, 'https://ror.org/05fp2zb41', 'en', 1, 'https://ror.org/05fp2zb41 Midwest Biomedical Research Foundation'),
(34645, 'https://ror.org/05fs2rz39', 'en', 1, 'https://ror.org/05fs2rz39 Zilina International Airport'),
(34646, 'https://ror.org/05ftq9h16', 'no_lang_code', 1, 'https://ror.org/05ftq9h16 Micromolding Solutions (Canada)'),
(34647, 'https://ror.org/05fytb963', 'no_lang_code', 1, 'https://ror.org/05fytb963 Windsor Utilities Commission (Canada)'),
(34648, 'https://ror.org/05g0xkn45', 'en', 1, 'https://ror.org/05g0xkn45 Polycystic Kidney Disease Foundation'),
(34649, 'https://ror.org/05g28da90', 'no_lang_code', 1, 'https://ror.org/05g28da90 Strategic Analysis (United States)'),
(34650, 'https://ror.org/05g5zwf18', 'no_lang_code', 1, 'https://ror.org/05g5zwf18 Sioxmachines (Sweden)'),
(34651, 'https://ror.org/05g702x36', 'no_lang_code', 1, 'https://ror.org/05g702x36 Phillips Service Industries (United States)'),
(34652, 'https://ror.org/05g8eqe22', 'en', 1, 'https://ror.org/05g8eqe22 Federation of Technical and Scientific Societies'),
(34653, 'https://ror.org/05gc32295', 'no_lang_code', 1, 'https://ror.org/05gc32295 Telcred (Sweden)'),
(34654, 'https://ror.org/05gdz9864', 'en', 1, 'https://ror.org/05gdz9864 University of Nursing Mandalay į€žį€°į€”į€¬į€•į€¼į€Æį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(į€™į€”į€¹į€į€œį€±į€ø)'),
(34655, 'https://ror.org/05gf3n961', 'en', 1, 'https://ror.org/05gf3n961 Tomsk Cancer Research Institute Томский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ онкологии'),
(34656, 'https://ror.org/05gfwht30', 'en', 1, 'https://ror.org/05gfwht30 Civil Aviation Administration of China äø­å›½ę°‘ē”ØčˆŖē©ŗå±€'),
(34657, 'https://ror.org/05gggm169', 'en', 1, 'https://ror.org/05gggm169 HelpAge India'),
(34658, 'https://ror.org/05gqsac13', 'no_lang_code', 1, 'https://ror.org/05gqsac13 SpaceTech (United States)'),
(34659, 'https://ror.org/05grkcd68', 'en', 1, 'https://ror.org/05grkcd68 Cleveland Institute of Art'),
(34660, 'https://ror.org/05gs2as25', 'no_lang_code', 1, 'https://ror.org/05gs2as25 Quantum Signal (United States)'),
(34661, 'https://ror.org/05gte4h93', 'en', 1, 'https://ror.org/05gte4h93 Walsh Associates'),
(34662, 'https://ror.org/05gw5ee29', 'en', 1, 'https://ror.org/05gw5ee29 Edogawa Hospital ę±Ÿęˆøå·ē—…é™¢'),
(34663, 'https://ror.org/05gz34e20', 'no_lang_code', 1, 'https://ror.org/05gz34e20 SA Photonics (United States)'),
(34664, 'https://ror.org/05gzybf15', 'en', 1, 'https://ror.org/05gzybf15 Lake Huron & Elgin Area Primary Water Supply Systems'),
(34665, 'https://ror.org/05h6bgs51', 'no_lang_code', 1, 'https://ror.org/05h6bgs51 Samtrafiken (Sweden)'),
(34666, 'https://ror.org/05h7a4r64', 'no_lang_code', 1, 'https://ror.org/05h7a4r64 Phostec (Slovakia)'),
(34667, 'https://ror.org/05h887517', 'en', 1, 'https://ror.org/05h887517 Canadian Horticultural Council'),
(34668, 'https://ror.org/05h95z887', 'no_lang_code', 1, 'https://ror.org/05h95z887 Orono Spectral Solutions (United States)'),
(34669, 'https://ror.org/05hakgg65', 'no_lang_code', 1, 'https://ror.org/05hakgg65 Advanced Power Electronics (United States)'),
(34670, 'https://ror.org/05hdz2063', 'pt', 1, 'https://ror.org/05hdz2063 Foundation for Research Support of Mato Grosso State Fundação de Amparo à Pesquisa do Estado de Mato Grosso'),
(34671, 'https://ror.org/05he87q93', 'en', 1, 'https://ror.org/05he87q93 NIOD Institute for War, Holocaust and Genocide Studies NIOD Instituut voor Oorlogs-, Holocaust- en Genocidestudies'),
(34672, 'https://ror.org/05hfet039', 'en', 1, 'https://ror.org/05hfet039 Ministry of National Defense ėŒ€ķ•œėÆ¼źµ­ źµ­ė°©ė¶€'),
(34673, 'https://ror.org/05hgx5v83', 'no_lang_code', 1, 'https://ror.org/05hgx5v83 Think A Move (United States)'),
(34674, 'https://ror.org/05hp6hk95', 'no_lang_code', 1, 'https://ror.org/05hp6hk95 APi Group (United States)'),
(34675, 'https://ror.org/05hpdky94', 'en', 1, 'https://ror.org/05hpdky94 British Columbia Salmon Farmers Association'),
(34676, 'https://ror.org/05hv0ec94', 'no_lang_code', 1, 'https://ror.org/05hv0ec94 Integral Consulting (United States)'),
(34677, 'https://ror.org/05hvam844', 'en', 1, 'https://ror.org/05hvam844 Anti-Doping Laboratory'),
(34678, 'https://ror.org/05hzgnr17', 'no_lang_code', 1, 'https://ror.org/05hzgnr17 Vatell (United States)'),
(34679, 'https://ror.org/05hzpah25', 'no_lang_code', 1, 'https://ror.org/05hzpah25 TimberWest Forest (Canada)'),
(34680, 'https://ror.org/05j00pb84', 'no_lang_code', 1, 'https://ror.org/05j00pb84 Materials Processing (United States)'),
(34681, 'https://ror.org/05j0gfp71', 'no_lang_code', 1, 'https://ror.org/05j0gfp71 Daewoong Pharmaceutical (South Korea) ėŒ€ģ›…ģ œģ•½'),
(34682, 'https://ror.org/05j2v5m42', 'no_lang_code', 1, 'https://ror.org/05j2v5m42 Five Stones Research Corporation (United States)'),
(34683, 'https://ror.org/05j3a2m34', 'en', 1, 'https://ror.org/05j3a2m34 Analytical Center MNiOP'),
(34684, 'https://ror.org/05j4ab836', 'no_lang_code', 1, 'https://ror.org/05j4ab836 IMSAR (United States)'),
(34685, 'https://ror.org/05j577q42', 'no_lang_code', 1, 'https://ror.org/05j577q42 Vectos (United Kingdom)'),
(34686, 'https://ror.org/05j70cm37', 'en', 1, 'https://ror.org/05j70cm37 Jewish Community Foundation of Greater MetroWest NJ'),
(34687, 'https://ror.org/05j7hv850', 'no_lang_code', 1, 'https://ror.org/05j7hv850 GeoMechanics Technologies (United States)'),
(34688, 'https://ror.org/05j8j0w49', 'no_lang_code', 1, 'https://ror.org/05j8j0w49 Advanced Glazings (Canada)'),
(34689, 'https://ror.org/05jbwz743', 'en', 1, 'https://ror.org/05jbwz743 Sarasota University'),
(34690, 'https://ror.org/05jc9p859', 'en', 1, 'https://ror.org/05jc9p859 NeuroSurgical Research Foundation'),
(34691, 'https://ror.org/05jdbvf64', 'no_lang_code', 1, 'https://ror.org/05jdbvf64 Arcon (United States)'),
(34692, 'https://ror.org/05jds5x60', 'en', 1, 'https://ror.org/05jds5x60 University of Bahri Ų¬Ų§Ł…Ų¹Ų© بحري'),
(34693, 'https://ror.org/05jekg408', 'no_lang_code', 1, 'https://ror.org/05jekg408 InferLink (United States)'),
(34694, 'https://ror.org/05jetay51', 'no_lang_code', 1, 'https://ror.org/05jetay51 Riverbed (United States)'),
(34695, 'https://ror.org/05jf1ma54', 'de', 1, 'https://ror.org/05jf1ma54 Bern University of Teacher Education PƤdagogische Hochschule Bern'),
(34696, 'https://ror.org/05jf45g20', 'no_lang_code', 1, 'https://ror.org/05jf45g20 KVH Industries (United States)'),
(34697, 'https://ror.org/05jfe3192', 'en', 1, 'https://ror.org/05jfe3192 Connecticut Department of Social Services'),
(34698, 'https://ror.org/05jgd9317', 'no_lang_code', 1, 'https://ror.org/05jgd9317 Gratex International (Slovakia)'),
(34699, 'https://ror.org/05jjpbn70', 'en', 1, 'https://ror.org/05jjpbn70 Alliance for Technology Access'),
(34700, 'https://ror.org/05jjs7f83', 'no_lang_code', 1, 'https://ror.org/05jjs7f83 General Lasertronics Corporation (United States)'),
(34701, 'https://ror.org/05jmh8x88', 'en', 1, 'https://ror.org/05jmh8x88 Shanghai Zhabei District Shibei Hospital'),
(34702, 'https://ror.org/05jnjmr07', 'en', 1, 'https://ror.org/05jnjmr07 Virginia Department of Education'),
(34703, 'https://ror.org/05jnt4x38', 'no_lang_code', 1, 'https://ror.org/05jnt4x38 METSS (United States)'),
(34704, 'https://ror.org/05jthwf86', 'no_lang_code', 1, 'https://ror.org/05jthwf86 KWI Group (United States)'),
(34705, 'https://ror.org/05jtrt935', 'pt', 1, 'https://ror.org/05jtrt935 Fundação de Apoio ao Desenvolvimento do Ensino, Ciência e Tecnologia do Estado de Mato Grosso do Sul'),
(34706, 'https://ror.org/05jxbth48', 'no_lang_code', 1, 'https://ror.org/05jxbth48 General Kinetics (United States)'),
(34707, 'https://ror.org/05k037b50', 'en', 1, 'https://ror.org/05k037b50 Women Make Movies'),
(34708, 'https://ror.org/05k0v5t92', 'de', 1, 'https://ror.org/05k0v5t92 ForschungsĀ­kuratorium Textil'),
(34709, 'https://ror.org/05k1j9p68', 'en', 1, 'https://ror.org/05k1j9p68 Scandinavian Automotive Supplier Association'),
(34710, 'https://ror.org/05k1jx057', 'en', 1, 'https://ror.org/05k1jx057 Texas Space Grant Consortium'),
(34711, 'https://ror.org/05k2cam34', 'no_lang_code', 1, 'https://ror.org/05k2cam34 Impact Hub (Sweden)'),
(34712, 'https://ror.org/05k37cq18', 'no_lang_code', 1, 'https://ror.org/05k37cq18 Custom Security Industries (Canada)'),
(34713, 'https://ror.org/05k78d918', 'no_lang_code', 1, 'https://ror.org/05k78d918 Typotex (Hungary)'),
(34714, 'https://ror.org/05k969473', 'en', 1, 'https://ror.org/05k969473 Sheldon Museum and Cultural Center'),
(34715, 'https://ror.org/05k9vtj41', 'no_lang_code', 1, 'https://ror.org/05k9vtj41 Fuseforward (Canada)'),
(34716, 'https://ror.org/05kaxyq51', 'en', 1, 'https://ror.org/05kaxyq51 Meertens Institute Meertens Instituut'),
(34717, 'https://ror.org/05kdrns38', 'no_lang_code', 1, 'https://ror.org/05kdrns38 Sierra Engineering (United States)'),
(34718, 'https://ror.org/05kgcpg38', 'no_lang_code', 1, 'https://ror.org/05kgcpg38 Imagination Engines (United States)'),
(34719, 'https://ror.org/05kmh8z64', 'en', 1, 'https://ror.org/05kmh8z64 Apicha Community Health Center'),
(34720, 'https://ror.org/05kmmnb39', 'no_lang_code', 1, 'https://ror.org/05kmmnb39 TNS (United States)'),
(34721, 'https://ror.org/05knz5v90', 'no_lang_code', 1, 'https://ror.org/05knz5v90 DESE Research (United States)'),
(34722, 'https://ror.org/05krx3x83', 'en', 1, 'https://ror.org/05krx3x83 Ontario Dairy Council'),
(34723, 'https://ror.org/05kt92j68', 'en', 1, 'https://ror.org/05kt92j68 Access Technologies'),
(34724, 'https://ror.org/05kxcj202', 'en', 1, 'https://ror.org/05kxcj202 French Institute of Pondicherry Institut FranƧais de PondichĆ©ry ą®Ŗą®¾ą®£ąÆą®Ÿą®æą®šąÆą®šąÆ‡ą®°ą®æ ą®Ŗą®æą®°ąÆ†ą®žąÆą®šąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(34725, 'https://ror.org/05kyb6m55', 'no_lang_code', 1, 'https://ror.org/05kyb6m55 Diamond Antenna and Microwave (United States)'),
(34726, 'https://ror.org/05kz03q36', 'no_lang_code', 1, 'https://ror.org/05kz03q36 WindVector'),
(34727, 'https://ror.org/05kz9t998', 'no_lang_code', 1, 'https://ror.org/05kz9t998 Tondi Elektroonika (Estonia)'),
(34728, 'https://ror.org/05m0n6v74', 'en', 1, 'https://ror.org/05m0n6v74 Kentucky Office of Vocational Rehabilitation'),
(34729, 'https://ror.org/05m1p5x56', 'en', 1, 'https://ror.org/05m1p5x56 First Affiliated Hospital Zhejiang University'),
(34730, 'https://ror.org/05m2de985', 'no_lang_code', 1, 'https://ror.org/05m2de985 Exchange Income (Canada)'),
(34731, 'https://ror.org/05m38qe70', 'en', 1, 'https://ror.org/05m38qe70 Ministry of Defence'),
(34732, 'https://ror.org/05m43a381', 'no_lang_code', 1, 'https://ror.org/05m43a381 Euclid Techlabs (United States)'),
(34733, 'https://ror.org/05m4pkm65', 'no_lang_code', 1, 'https://ror.org/05m4pkm65 IBC Coatings Technologies (United States)'),
(34734, 'https://ror.org/05m4rmw09', 'en', 1, 'https://ror.org/05m4rmw09 Fondo Monetario Internacional Fonds monƩtaire international International Monetary Fund'),
(34735, 'https://ror.org/05m93m079', 'en', 1, 'https://ror.org/05m93m079 Oakwood Academy'),
(34736, 'https://ror.org/05mc52190', 'no_lang_code', 1, 'https://ror.org/05mc52190 Polymer Factory (Sweden)');
INSERT INTO `rors` VALUES
(34737, 'https://ror.org/05mcs2t73', 'en', 1, 'https://ror.org/05mcs2t73 Ministry of Higher Education'),
(34738, 'https://ror.org/05mcyt529', 'en', 1, 'https://ror.org/05mcyt529 Korea Federation of Science and Technology Societies ķ•œźµ­ź³¼ķ•™źø°ģˆ ė‹Øģ²“ģ“ģ—°ķ•©ķšŒ'),
(34739, 'https://ror.org/05mffvf70', 'no_lang_code', 1, 'https://ror.org/05mffvf70 SiliconPro (Canada)'),
(34740, 'https://ror.org/05mfxbk05', 'no_lang_code', 1, 'https://ror.org/05mfxbk05 MIB Engineers (United States)'),
(34741, 'https://ror.org/05mh8bc44', 'en', 1, 'https://ror.org/05mh8bc44 Manchester Grammar School'),
(34742, 'https://ror.org/05mjgqe69', 'no_lang_code', 1, 'https://ror.org/05mjgqe69 Toyota Central Research and Development Laboratories (Japan) 中央研究所'),
(34743, 'https://ror.org/05mm98a47', 'no_lang_code', 1, 'https://ror.org/05mm98a47 Square One (United States)'),
(34744, 'https://ror.org/05mmkyr56', 'no_lang_code', 1, 'https://ror.org/05mmkyr56 Synectics (United States)'),
(34745, 'https://ror.org/05mn41x71', 'no_lang_code', 1, 'https://ror.org/05mn41x71 Highview Power Storage (United Kingdom)'),
(34746, 'https://ror.org/05mqewt50', 'en', 1, 'https://ror.org/05mqewt50 Jiangjin Central Hospital'),
(34747, 'https://ror.org/05mrev375', 'en', 1, 'https://ror.org/05mrev375 Etosha Ecological Institute'),
(34748, 'https://ror.org/05mt9p027', 'en', 1, 'https://ror.org/05mt9p027 Research Foundation ITSUU Laboratory ä¹™åÆē ”ē©¶ę‰€'),
(34749, 'https://ror.org/05mwvz623', 'en', 1, 'https://ror.org/05mwvz623 Beyondblue'),
(34750, 'https://ror.org/05mx11h55', 'en', 1, 'https://ror.org/05mx11h55 Ministry of Agriculture and Agro Based Industry'),
(34751, 'https://ror.org/05mzf7c50', 'no_lang_code', 1, 'https://ror.org/05mzf7c50 Tri-Con Concrete Finishing (Canada)'),
(34752, 'https://ror.org/05n22dr57', 'en', 1, 'https://ror.org/05n22dr57 BC Innovation Council'),
(34753, 'https://ror.org/05n3asa33', 'es', 1, 'https://ror.org/05n3asa33 Instituto de Investigación Biomédica de MÔlaga'),
(34754, 'https://ror.org/05n3gpp89', 'no_lang_code', 1, 'https://ror.org/05n3gpp89 Streamline Numerics (United States)'),
(34755, 'https://ror.org/05n4wp011', 'en', 1, 'https://ror.org/05n4wp011 Society of Abdominal Radiology'),
(34756, 'https://ror.org/05n50qc07', 'en', 1, 'https://ror.org/05n50qc07 Nanchong Central Hospital å—å……åø‚äø­åæƒåŒ»é™¢'),
(34757, 'https://ror.org/05n7hc005', 'no_lang_code', 1, 'https://ror.org/05n7hc005 EVRAZ (United States)'),
(34758, 'https://ror.org/05na5dm15', 'no_lang_code', 1, 'https://ror.org/05na5dm15 Precise Biometrics (Sweden) ē²¾ęŗ–ē”Ÿē‰©č­˜åˆ„å…¬'),
(34759, 'https://ror.org/05nb4dd58', 'no_lang_code', 1, 'https://ror.org/05nb4dd58 Envia Systems (United States)'),
(34760, 'https://ror.org/05nf7ha92', 'no_lang_code', 1, 'https://ror.org/05nf7ha92 Global Embedded Technologies (United States)'),
(34761, 'https://ror.org/05ngf5n66', 'en', 1, 'https://ror.org/05ngf5n66 UNStudio'),
(34762, 'https://ror.org/05njdn771', 'no_lang_code', 1, 'https://ror.org/05njdn771 Stiefvater Consultants (United States)'),
(34763, 'https://ror.org/05nnc2r34', 'no_lang_code', 1, 'https://ror.org/05nnc2r34 DWA Technologies (United States)'),
(34764, 'https://ror.org/05npcf755', 'no_lang_code', 1, 'https://ror.org/05npcf755 Microcom (United States)'),
(34765, 'https://ror.org/05npdkv31', 'no_lang_code', 1, 'https://ror.org/05npdkv31 Sonaca (Canada)'),
(34766, 'https://ror.org/05npsjk50', 'en', 1, 'https://ror.org/05npsjk50 Limestone College'),
(34767, 'https://ror.org/05nq2wt36', 'no_lang_code', 1, 'https://ror.org/05nq2wt36 EasyMining (Sweden)'),
(34768, 'https://ror.org/05nzk9q32', 'no_lang_code', 1, 'https://ror.org/05nzk9q32 Intelligent Machines (Sweden)'),
(34769, 'https://ror.org/05nzkcm44', 'en', 1, 'https://ror.org/05nzkcm44 Australian Seafood Cooperative Research Center'),
(34770, 'https://ror.org/05nzwyq50', 'en', 1, 'https://ror.org/05nzwyq50 JPB Foundation'),
(34771, 'https://ror.org/05p0ja512', 'en', 1, 'https://ror.org/05p0ja512 Chemistry Industry Association of Canada'),
(34772, 'https://ror.org/05p20a626', 'en', 1, 'https://ror.org/05p20a626 Food Standards Agency'),
(34773, 'https://ror.org/05p275942', 'en', 1, 'https://ror.org/05p275942 Pacific College of Oriental Medicine'),
(34774, 'https://ror.org/05p4j2138', 'no_lang_code', 1, 'https://ror.org/05p4j2138 Bunge (Canada)'),
(34775, 'https://ror.org/05p4yqc22', 'en', 1, 'https://ror.org/05p4yqc22 PanAmerican Bioinformatics Institute'),
(34776, 'https://ror.org/05p5fe205', 'nl', 1, 'https://ror.org/05p5fe205 Internationale Vereniging voor Neerlandistiek'),
(34777, 'https://ror.org/05p76h610', 'no_lang_code', 1, 'https://ror.org/05p76h610 MagiQ Technologies (United States)'),
(34778, 'https://ror.org/05p8yat86', 'en', 1, 'https://ror.org/05p8yat86 Acent Laboratories'),
(34779, 'https://ror.org/05pc4pd06', 'en', 1, 'https://ror.org/05pc4pd06 Alaska Department of Labor and Workforce Development'),
(34780, 'https://ror.org/05pcb3x66', 'no_lang_code', 1, 'https://ror.org/05pcb3x66 C-Therm Technologies (Canada)'),
(34781, 'https://ror.org/05pcwq620', 'no_lang_code', 1, 'https://ror.org/05pcwq620 Scientific Applications & Research Associates (United States)'),
(34782, 'https://ror.org/05pf1p208', 'fr', 1, 'https://ror.org/05pf1p208 Institut FranƧais du Cheval et de l''Ɖquitation'),
(34783, 'https://ror.org/05pfbbk72', 'no_lang_code', 1, 'https://ror.org/05pfbbk72 SoniPulse (United States)'),
(34784, 'https://ror.org/05pft2x28', 'en', 1, 'https://ror.org/05pft2x28 UmeƄ Municipality'),
(34785, 'https://ror.org/05pg13f04', 'en', 1, 'https://ror.org/05pg13f04 Morris Animal Foundation'),
(34786, 'https://ror.org/05pgnn319', 'en', 1, 'https://ror.org/05pgnn319 Cambridge Healthtech Institute'),
(34787, 'https://ror.org/05pj1wk28', 'no_lang_code', 1, 'https://ror.org/05pj1wk28 Orbital Systems (Sweden)'),
(34788, 'https://ror.org/05pj73f13', 'no_lang_code', 1, 'https://ror.org/05pj73f13 TIAX (United States)'),
(34789, 'https://ror.org/05pmf3t53', 'en', 1, 'https://ror.org/05pmf3t53 New England Institute of Technology'),
(34790, 'https://ror.org/05pmkqv04', 'en', 1, 'https://ror.org/05pmkqv04 First Hospital of Qinhuangdao'),
(34791, 'https://ror.org/05pmq5w14', 'de', 1, 'https://ror.org/05pmq5w14 Deutsche Bundesstiftung Umwelt'),
(34792, 'https://ror.org/05ppfhw72', 'no_lang_code', 1, 'https://ror.org/05ppfhw72 Analytical Spectral Devices (United States)'),
(34793, 'https://ror.org/05ppvc341', 'en', 1, 'https://ror.org/05ppvc341 Third World Newsreel'),
(34794, 'https://ror.org/05ppvf150', 'no_lang_code', 1, 'https://ror.org/05ppvf150 Impact Technology Development (United States)'),
(34795, 'https://ror.org/05pqqge35', 'en', 1, 'https://ror.org/05pqqge35 Anhui Mental Health Center å®‰å¾½ēœē²¾ē„žå«ē”Ÿé˜²ę²»äø­åæƒ'),
(34796, 'https://ror.org/05przbs16', 'no_lang_code', 1, 'https://ror.org/05przbs16 Beckett Energy Systems'),
(34797, 'https://ror.org/05ptj5165', 'no_lang_code', 1, 'https://ror.org/05ptj5165 Needs Drive (Swedenā€Ž)'),
(34798, 'https://ror.org/05pvrkb04', 'no_lang_code', 1, 'https://ror.org/05pvrkb04 Innosys (United States)'),
(34799, 'https://ror.org/05pwx6044', 'no_lang_code', 1, 'https://ror.org/05pwx6044 NuCrypt (United States)'),
(34800, 'https://ror.org/05px8wc91', 'hu', 1, 'https://ror.org/05px8wc91 Tokaji BorvidĆ©k SzőlĆ©szeti Ć©s BorĆ”szati KutatóintĆ©zet'),
(34801, 'https://ror.org/05pzwgc51', 'no_lang_code', 1, 'https://ror.org/05pzwgc51 Devices for Dignity'),
(34802, 'https://ror.org/05q0w0a95', 'no_lang_code', 1, 'https://ror.org/05q0w0a95 Dynamic Structures and Materials (United States)'),
(34803, 'https://ror.org/05q1b6223', 'en', 1, 'https://ror.org/05q1b6223 Wallace Foundation'),
(34804, 'https://ror.org/05q3g7p38', 'de', 1, 'https://ror.org/05q3g7p38 PƤdagogische Hochschule Salzburg University of Education Salzburg'),
(34805, 'https://ror.org/05q5vb956', 'no_lang_code', 1, 'https://ror.org/05q5vb956 Learnimation (United States)'),
(34806, 'https://ror.org/05q5yzt24', 'en', 1, 'https://ror.org/05q5yzt24 Wellington Medical Research Foundation'),
(34807, 'https://ror.org/05q86z175', 'no_lang_code', 1, 'https://ror.org/05q86z175 International Mezzo Technologies (United States)'),
(34808, 'https://ror.org/05q8ckj10', 'en', 1, 'https://ror.org/05q8ckj10 Nazarene Bible College'),
(34809, 'https://ror.org/05q9hkp18', 'en', 1, 'https://ror.org/05q9hkp18 Austrian Institute for International Affairs Ɩsterreichische Institut für Internationale Politik'),
(34810, 'https://ror.org/05qb22n20', 'no_lang_code', 1, 'https://ror.org/05qb22n20 ChemImage (United States)'),
(34811, 'https://ror.org/05qbc4793', 'no_lang_code', 1, 'https://ror.org/05qbc4793 Diacarbon Energy (Canada)'),
(34812, 'https://ror.org/05qcea723', 'no_lang_code', 1, 'https://ror.org/05qcea723 Nike (United States)'),
(34813, 'https://ror.org/05qcvcp08', 'no_lang_code', 1, 'https://ror.org/05qcvcp08 Sika (Canada)'),
(34814, 'https://ror.org/05qdsyx92', 'no_lang_code', 1, 'https://ror.org/05qdsyx92 International Electronic Machines (United States)'),
(34815, 'https://ror.org/05qedhe85', 'no_lang_code', 1, 'https://ror.org/05qedhe85 ITER China'),
(34816, 'https://ror.org/05qg6df59', 'no_lang_code', 1, 'https://ror.org/05qg6df59 Art Anderson Associates (United States)'),
(34817, 'https://ror.org/05qj34p41', 'no_lang_code', 1, 'https://ror.org/05qj34p41 Hood Technology (United States)'),
(34818, 'https://ror.org/05qk3ge34', 'en', 1, 'https://ror.org/05qk3ge34 Nuclear Safety And Security Commission'),
(34819, 'https://ror.org/05qkx3604', 'no_lang_code', 1, 'https://ror.org/05qkx3604 Migma (United States)'),
(34820, 'https://ror.org/05qkx9513', 'no_lang_code', 1, 'https://ror.org/05qkx9513 SCA Technica (United States)'),
(34821, 'https://ror.org/05qm89p23', 'no_lang_code', 1, 'https://ror.org/05qm89p23 Makai Ocean Engineering (United States)'),
(34822, 'https://ror.org/05qmdfk04', 'no_lang_code', 1, 'https://ror.org/05qmdfk04 Millennium Engineering and Integration (United States)'),
(34823, 'https://ror.org/05qmfyw56', 'en', 1, 'https://ror.org/05qmfyw56 International Myeloma Foundation'),
(34824, 'https://ror.org/05qnvg564', 'no_lang_code', 1, 'https://ror.org/05qnvg564 Rehab Ideas (United States)'),
(34825, 'https://ror.org/05qnwyb92', 'en', 1, 'https://ror.org/05qnwyb92 British Lung Foundation'),
(34826, 'https://ror.org/05qp6pd10', 'no_lang_code', 1, 'https://ror.org/05qp6pd10 Wuxi Taihu Hospital'),
(34827, 'https://ror.org/05qphs016', 'no_lang_code', 1, 'https://ror.org/05qphs016 Fotonic (Sweden)'),
(34828, 'https://ror.org/05qty9v66', 'no_lang_code', 1, 'https://ror.org/05qty9v66 Dessau-Soprin (Canada)'),
(34829, 'https://ror.org/05qvpbw57', 'en', 1, 'https://ror.org/05qvpbw57 Danida Fellowship Centre'),
(34830, 'https://ror.org/05qwshn40', 'no_lang_code', 1, 'https://ror.org/05qwshn40 CYBER Learning Corporation (United States)'),
(34831, 'https://ror.org/05qxk3m85', 'no_lang_code', 1, 'https://ror.org/05qxk3m85 Xylophane (Sweden)'),
(34832, 'https://ror.org/05qyxnj95', 'fr', 1, 'https://ror.org/05qyxnj95 Centre d’Infectiologie Christophe MĆ©rieux of Laos'),
(34833, 'https://ror.org/05qzy6511', 'no_lang_code', 1, 'https://ror.org/05qzy6511 Research Institute for Man Made Fibres (Slovakia)'),
(34834, 'https://ror.org/05r04zn83', 'en', 1, 'https://ror.org/05r04zn83 Regional Municipality of Niagara'),
(34835, 'https://ror.org/05r2bq179', 'no_lang_code', 1, 'https://ror.org/05r2bq179 Invocon (United States)'),
(34836, 'https://ror.org/05r2ts661', 'en', 1, 'https://ror.org/05r2ts661 Fulbright Foundation'),
(34837, 'https://ror.org/05rb1bm79', 'no_lang_code', 1, 'https://ror.org/05rb1bm79 RBC Technologies (United States)'),
(34838, 'https://ror.org/05rbbc072', 'en', 1, 'https://ror.org/05rbbc072 Kosciuszko Foundation'),
(34839, 'https://ror.org/05rbdsb19', 'en', 1, 'https://ror.org/05rbdsb19 Water Research Foundation'),
(34840, 'https://ror.org/05rbrm011', 'no_lang_code', 1, 'https://ror.org/05rbrm011 Multimatic (Canada)'),
(34841, 'https://ror.org/05rcmw333', 'no_lang_code', 1, 'https://ror.org/05rcmw333 Materials Technologies (United States)'),
(34842, 'https://ror.org/05rd5v488', 'no_lang_code', 1, 'https://ror.org/05rd5v488 CMTech (Australia)'),
(34843, 'https://ror.org/05re5hn81', 'no_lang_code', 1, 'https://ror.org/05re5hn81 Ideal Power (United States)'),
(34844, 'https://ror.org/05rezmm46', 'en', 1, 'https://ror.org/05rezmm46 Software Technology and Applications Competence Center'),
(34845, 'https://ror.org/05rfchc95', 'no_lang_code', 1, 'https://ror.org/05rfchc95 Beacon Interactive Systems (United States)'),
(34846, 'https://ror.org/05rrq0b46', 'no_lang_code', 1, 'https://ror.org/05rrq0b46 Fafard et FrĆØres (Canada)'),
(34847, 'https://ror.org/05rt6q248', 'no_lang_code', 1, 'https://ror.org/05rt6q248 Toyota Motor Corporation (Canada)'),
(34848, 'https://ror.org/05rwjrt81', 'no_lang_code', 1, 'https://ror.org/05rwjrt81 Berger (Canada)'),
(34849, 'https://ror.org/05rwjyj14', 'en', 1, 'https://ror.org/05rwjyj14 Fusion Academy'),
(34850, 'https://ror.org/05rwxjp51', 'no_lang_code', 1, 'https://ror.org/05rwxjp51 Emitech (United States)'),
(34851, 'https://ror.org/05rxftm59', 'no_lang_code', 1, 'https://ror.org/05rxftm59 Colloidal Resource (Sweden)'),
(34852, 'https://ror.org/05rxmpb48', 'nl', 1, 'https://ror.org/05rxmpb48 BC Broekhin Roermond'),
(34853, 'https://ror.org/05ry90052', 'fr', 1, 'https://ror.org/05ry90052 Alphabio'),
(34854, 'https://ror.org/05ry92539', 'no_lang_code', 1, 'https://ror.org/05ry92539 Powertec (Slovakia)'),
(34855, 'https://ror.org/05ryv2g97', 'no_lang_code', 1, 'https://ror.org/05ryv2g97 Compagnie Industrielle de la Matière Végétale (France)'),
(34856, 'https://ror.org/05rz01y20', 'no_lang_code', 1, 'https://ror.org/05rz01y20 Fieldmetrics (United States)'),
(34857, 'https://ror.org/05s1c4z27', 'en', 1, 'https://ror.org/05s1c4z27 Sichuan Provincial Department of Education'),
(34858, 'https://ror.org/05s37rv07', 'no_lang_code', 1, 'https://ror.org/05s37rv07 Acellent Technologies (United States)'),
(34859, 'https://ror.org/05s7mav43', 'no_lang_code', 1, 'https://ror.org/05s7mav43 Clear Align (United States)'),
(34860, 'https://ror.org/05s7mx240', 'no_lang_code', 1, 'https://ror.org/05s7mx240 Cyrium Technologies (Canada)'),
(34861, 'https://ror.org/05s7yfr86', 'no_lang_code', 1, 'https://ror.org/05s7yfr86 VI Manufacturing (United States)'),
(34862, 'https://ror.org/05sb4tp69', 'no_lang_code', 1, 'https://ror.org/05sb4tp69 Global Engineering and Materials (United States)'),
(34863, 'https://ror.org/05sdn2w97', 'no_lang_code', 1, 'https://ror.org/05sdn2w97 Integrated Photonics Technology (United States)'),
(34864, 'https://ror.org/05sdssj84', 'no_lang_code', 1, 'https://ror.org/05sdssj84 New England Research (United States)'),
(34865, 'https://ror.org/05sfep667', 'en', 1, 'https://ror.org/05sfep667 Ministerio de Agricultura y Desarrollo Rural Ministry of Agriculture and Rural Development'),
(34866, 'https://ror.org/05sfwv538', 'en', 1, 'https://ror.org/05sfwv538 Great Lakes Fishery Commission'),
(34867, 'https://ror.org/05shz5j84', 'no_lang_code', 1, 'https://ror.org/05shz5j84 Management Sciences (United States)'),
(34868, 'https://ror.org/05skev209', 'no_lang_code', 1, 'https://ror.org/05skev209 SixPoint Materials (United States)'),
(34869, 'https://ror.org/05skxzn48', 'en', 1, 'https://ror.org/05skxzn48 Georgian National Museum įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒ›įƒ£įƒ–įƒ”'),
(34870, 'https://ror.org/05sm6p196', 'en', 1, 'https://ror.org/05sm6p196 Jiangsu Provincial Hospital of Traditional Chinese Medicine ę±Ÿč‹ēœäø­åŒ»čÆē ”ē©¶é™¢'),
(34871, 'https://ror.org/05sn2fr43', 'en', 1, 'https://ror.org/05sn2fr43 Marine Mammal Commission'),
(34872, 'https://ror.org/05snapr15', 'en', 1, 'https://ror.org/05snapr15 Mary Kay Foundation'),
(34873, 'https://ror.org/05sndhx91', 'no_lang_code', 1, 'https://ror.org/05sndhx91 Air Turbine Technology (United States)'),
(34874, 'https://ror.org/05snhb688', 'no_lang_code', 1, 'https://ror.org/05snhb688 NextGen Aeronautics (United States)'),
(34875, 'https://ror.org/05snkc171', 'no_lang_code', 1, 'https://ror.org/05snkc171 IMPETUS Afea (Sweden)'),
(34876, 'https://ror.org/05snmdb74', 'no_lang_code', 1, 'https://ror.org/05snmdb74 Enser (United States)'),
(34877, 'https://ror.org/05sprqy15', 'en', 1, 'https://ror.org/05sprqy15 Cambridge Commonwealth European and International Trust'),
(34878, 'https://ror.org/05sqz7r04', 'no_lang_code', 1, 'https://ror.org/05sqz7r04 Vucht (Slovakia)'),
(34879, 'https://ror.org/05sr58560', 'no_lang_code', 1, 'https://ror.org/05sr58560 Shear Form (United States)'),
(34880, 'https://ror.org/05srg5036', 'en', 1, 'https://ror.org/05srg5036 Hungarian Institute for Educational Research and Development'),
(34881, 'https://ror.org/05sydm958', 'no_lang_code', 1, 'https://ror.org/05sydm958 ATS Automation Tooling Systems (Canada)'),
(34882, 'https://ror.org/05t0mvy43', 'no_lang_code', 1, 'https://ror.org/05t0mvy43 Princeton Optronics (United States)'),
(34883, 'https://ror.org/05t2esn81', 'no_lang_code', 1, 'https://ror.org/05t2esn81 ParetoLogic (Canada)'),
(34884, 'https://ror.org/05t3ccn58', 'en', 1, 'https://ror.org/05t3ccn58 Qatar Faculty of Islamic Studies'),
(34885, 'https://ror.org/05t4zqc79', 'no_lang_code', 1, 'https://ror.org/05t4zqc79 GeoInformation (United Kingdom)'),
(34886, 'https://ror.org/05t5z9252', 'no_lang_code', 1, 'https://ror.org/05t5z9252 Synergia (United States)'),
(34887, 'https://ror.org/05t7fez51', 'no_lang_code', 1, 'https://ror.org/05t7fez51 Danaher (Sweden)'),
(34888, 'https://ror.org/05tbkx115', 'en', 1, 'https://ror.org/05tbkx115 Kansas City Art Institute'),
(34889, 'https://ror.org/05tcsqz68', 'en', 1, 'https://ror.org/05tcsqz68 Foundation for Innovative New Diagnostics'),
(34890, 'https://ror.org/05te4e461', 'en', 1, 'https://ror.org/05te4e461 American College of Veterinary Internal Medicine Foundation'),
(34891, 'https://ror.org/05te6r535', 'en', 1, 'https://ror.org/05te6r535 New World School of the Arts'),
(34892, 'https://ror.org/05te6yt75', 'no_lang_code', 1, 'https://ror.org/05te6yt75 Intelligent Models (United States)'),
(34893, 'https://ror.org/05tg9ea20', 'no_lang_code', 1, 'https://ror.org/05tg9ea20 XMCO (United States)'),
(34894, 'https://ror.org/05tk49h93', 'no_lang_code', 1, 'https://ror.org/05tk49h93 Girochem (Slovakia)'),
(34895, 'https://ror.org/05tmhhz44', 'en', 1, 'https://ror.org/05tmhhz44 Access Technologies Group'),
(34896, 'https://ror.org/05tmmj622', 'no_lang_code', 1, 'https://ror.org/05tmmj622 Safety Dynamics (United States)'),
(34897, 'https://ror.org/05tppc012', 'en', 1, 'https://ror.org/05tppc012 Dasman Diabetes Institute'),
(34898, 'https://ror.org/05tpsgh61', 'en', 1, 'https://ror.org/05tpsgh61 Fraunhofer Institute for Biomedical Engineering Fraunhofer-Institut für Biomedizinische Technik'),
(34899, 'https://ror.org/05tqbd879', 'en', 1, 'https://ror.org/05tqbd879 Energy Market Authority'),
(34900, 'https://ror.org/05tqbw409', 'no_lang_code', 1, 'https://ror.org/05tqbw409 Information International Associates (United States)'),
(34901, 'https://ror.org/05ttfpv30', 'en', 1, 'https://ror.org/05ttfpv30 Ontario Bean Growers'),
(34902, 'https://ror.org/05ttq4j04', 'no_lang_code', 1, 'https://ror.org/05ttq4j04 SPI Surgical (United States)'),
(34903, 'https://ror.org/05tvcyg29', 'en', 1, 'https://ror.org/05tvcyg29 Government of Manitoba'),
(34904, 'https://ror.org/05tw77m82', 'hu', 1, 'https://ror.org/05tw77m82 HortobƔgy National Park Directorate'),
(34905, 'https://ror.org/05twhx581', 'no_lang_code', 1, 'https://ror.org/05twhx581 Metric Systems Corporation (United States)'),
(34906, 'https://ror.org/05txqkd02', 'en', 1, 'https://ror.org/05txqkd02 Association for Asian Studies'),
(34907, 'https://ror.org/05txzf778', 'en', 1, 'https://ror.org/05txzf778 Jones College'),
(34908, 'https://ror.org/05v32ez80', 'no_lang_code', 1, 'https://ror.org/05v32ez80 Broadata Communications (United States)'),
(34909, 'https://ror.org/05v43a449', 'no_lang_code', 1, 'https://ror.org/05v43a449 Expand (United States)'),
(34910, 'https://ror.org/05v5qfp15', 'en', 1, 'https://ror.org/05v5qfp15 Rehasport Clinic'),
(34911, 'https://ror.org/05v6b0t46', 'es', 1, 'https://ror.org/05v6b0t46 Magdalena Villegas de MartĆ­nez el Hospital'),
(34912, 'https://ror.org/05v6gdb70', 'en', 1, 'https://ror.org/05v6gdb70 National Assembly'),
(34913, 'https://ror.org/05v6k5v13', 'no_lang_code', 1, 'https://ror.org/05v6k5v13 Hanil E-Hwa (Slovakia)'),
(34914, 'https://ror.org/05v8xqq83', 'no_lang_code', 1, 'https://ror.org/05v8xqq83 Advanced Processing Technology (United States)'),
(34915, 'https://ror.org/05v981p28', 'no_lang_code', 1, 'https://ror.org/05v981p28 Water and Earth Science Associates (Canada)'),
(34916, 'https://ror.org/05v9n8905', 'en', 1, 'https://ror.org/05v9n8905 Indian Centre for Space Physics'),
(34917, 'https://ror.org/05vab6055', 'no_lang_code', 1, 'https://ror.org/05vab6055 Air Liquide (Canada)'),
(34918, 'https://ror.org/05vagkn68', 'cs', 1, 'https://ror.org/05vagkn68 PlanetƔrium Praha'),
(34919, 'https://ror.org/05vb2nq58', 'no_lang_code', 1, 'https://ror.org/05vb2nq58 Select Engineering Services (United States)'),
(34920, 'https://ror.org/05vbajd50', 'no_lang_code', 1, 'https://ror.org/05vbajd50 EkoBalans Fenix (Sweden)'),
(34921, 'https://ror.org/05vcq0t75', 'no_lang_code', 1, 'https://ror.org/05vcq0t75 Metis Design Corporation (United States)'),
(34922, 'https://ror.org/05vd00053', 'en', 1, 'https://ror.org/05vd00053 Terry Fox Foundation'),
(34923, 'https://ror.org/05vd41376', 'no_lang_code', 1, 'https://ror.org/05vd41376 CreoNex Systems (United States)'),
(34924, 'https://ror.org/05vdzgj37', 'sv', 1, 'https://ror.org/05vdzgj37 Drivhuset'),
(34925, 'https://ror.org/05vewsj04', 'en', 1, 'https://ror.org/05vewsj04 Mentor Technologies'),
(34926, 'https://ror.org/05vf01n02', 'en', 1, 'https://ror.org/05vf01n02 Fourth People''s Hospital of Changzhou'),
(34927, 'https://ror.org/05vf4zc90', 'en', 1, 'https://ror.org/05vf4zc90 Austrian Political Science Association Ɩsterreichische Gesellschaft für Politikwissenschaft'),
(34928, 'https://ror.org/05vfxqe03', 'no_lang_code', 1, 'https://ror.org/05vfxqe03 Devon Energy (Canada)'),
(34929, 'https://ror.org/05vg9e808', 'no_lang_code', 1, 'https://ror.org/05vg9e808 Ferro Solutions (United States)'),
(34930, 'https://ror.org/05vgnmj77', 'no_lang_code', 1, 'https://ror.org/05vgnmj77 Innovation Management Consulting Group (Sweden)'),
(34931, 'https://ror.org/05vj6nt70', 'en', 1, 'https://ror.org/05vj6nt70 Appalshop'),
(34932, 'https://ror.org/05vje5x10', 'en', 1, 'https://ror.org/05vje5x10 Vision Australia'),
(34933, 'https://ror.org/05vjvk624', 'en', 1, 'https://ror.org/05vjvk624 Architects Council of Europe, Conseil des Architectes d''Europe'),
(34934, 'https://ror.org/05vmgsb62', 'no_lang_code', 1, 'https://ror.org/05vmgsb62 Procont (Slovakia)'),
(34935, 'https://ror.org/05vpcsf30', 'no_lang_code', 1, 'https://ror.org/05vpcsf30 VT Systems (United States)'),
(34936, 'https://ror.org/05vpf1q78', 'no_lang_code', 1, 'https://ror.org/05vpf1q78 Baker Hughes (Canada)'),
(34937, 'https://ror.org/05vq9wd94', 'en', 1, 'https://ror.org/05vq9wd94 Gongju National Hospital 국립공주병원'),
(34938, 'https://ror.org/05vxv5b07', 'no_lang_code', 1, 'https://ror.org/05vxv5b07 Applied Optoelectronics (United States)'),
(34939, 'https://ror.org/05w2bg973', 'no_lang_code', 1, 'https://ror.org/05w2bg973 Wasatch Molecular (United States)'),
(34940, 'https://ror.org/05w2sen95', 'no_lang_code', 1, 'https://ror.org/05w2sen95 Della Enterprises (United States)'),
(34941, 'https://ror.org/05w34fa93', 'no_lang_code', 1, 'https://ror.org/05w34fa93 ARC Technology (United States)'),
(34942, 'https://ror.org/05w4c2r57', 'en', 1, 'https://ror.org/05w4c2r57 Digital Media Arts College'),
(34943, 'https://ror.org/05w4yc230', 'no_lang_code', 1, 'https://ror.org/05w4yc230 Silvus Technologies (United States)'),
(34944, 'https://ror.org/05w5dvb13', 'no_lang_code', 1, 'https://ror.org/05w5dvb13 General Society of Surveillance SGS (Canada)'),
(34945, 'https://ror.org/05w5nnw18', 'en', 1, 'https://ror.org/05w5nnw18 International Institute for Advanced Scientific Studies "Eduardo R. Caianiello" Istituto Internazionale per gli Alti Studi Scientifici'),
(34946, 'https://ror.org/05w7kkt66', 'en', 1, 'https://ror.org/05w7kkt66 American Roentgen Ray Society'),
(34947, 'https://ror.org/05w9s5139', 'no_lang_code', 1, 'https://ror.org/05w9s5139 Affibody (Sweden)'),
(34948, 'https://ror.org/05w9z6s63', 'sv', 1, 'https://ror.org/05w9z6s63 Swecare'),
(34949, 'https://ror.org/05wbpaf14', 'en', 1, 'https://ror.org/05wbpaf14 First Affiliated Hospital of Wannan Medical College'),
(34950, 'https://ror.org/05wd8g307', 'no_lang_code', 1, 'https://ror.org/05wd8g307 Omega Micro Technologies (United States)'),
(34951, 'https://ror.org/05wdmgk52', 'no_lang_code', 1, 'https://ror.org/05wdmgk52 Avatar Medical (United States)'),
(34952, 'https://ror.org/05wf4cy96', 'no_lang_code', 1, 'https://ror.org/05wf4cy96 YTL (United Kingdom)'),
(34953, 'https://ror.org/05wga2g83', 'ms', 1, 'https://ror.org/05wga2g83 Hospital Sultanah Bahiyah'),
(34954, 'https://ror.org/05wjg2334', 'no_lang_code', 1, 'https://ror.org/05wjg2334 STARR Life Sciences (United States)'),
(34955, 'https://ror.org/05wmge648', 'no_lang_code', 1, 'https://ror.org/05wmge648 Lite Machines (United States)'),
(34956, 'https://ror.org/05wn9at08', 'no_lang_code', 1, 'https://ror.org/05wn9at08 Yellow Island Aquaculture (Canada)'),
(34957, 'https://ror.org/05wntbe07', 'no_lang_code', 1, 'https://ror.org/05wntbe07 LPA Software Solutions (United States)'),
(34958, 'https://ror.org/05wr1pv20', 'no_lang_code', 1, 'https://ror.org/05wr1pv20 Advanced Energy Systems (United States)'),
(34959, 'https://ror.org/05wvxzm41', 'en', 1, 'https://ror.org/05wvxzm41 Society for Imaging Informatics in Medicine'),
(34960, 'https://ror.org/05wx5rz20', 'nl', 1, 'https://ror.org/05wx5rz20 Onderzoekschool Ethiek'),
(34961, 'https://ror.org/05x0qkj16', 'en', 1, 'https://ror.org/05x0qkj16 Technological University Hpa-An'),
(34962, 'https://ror.org/05x181c75', 'no_lang_code', 1, 'https://ror.org/05x181c75 Optonicus (United States)'),
(34963, 'https://ror.org/05x6xky11', 'no_lang_code', 1, 'https://ror.org/05x6xky11 Predect (Sweden)'),
(34964, 'https://ror.org/05x74wc07', 'en', 1, 'https://ror.org/05x74wc07 Dutch Inspectorate of Education Inspectie van het Onderwijs'),
(34965, 'https://ror.org/05x8n1r57', 'no_lang_code', 1, 'https://ror.org/05x8n1r57 Analytical Processes Engineered Solutions (United States)'),
(34966, 'https://ror.org/05x91m338', 'en', 1, 'https://ror.org/05x91m338 Norwegian Labour Movement Archives and Library'),
(34967, 'https://ror.org/05x9ajk82', 'no_lang_code', 1, 'https://ror.org/05x9ajk82 Nokomis (United States)'),
(34968, 'https://ror.org/05x9zm716', 'en', 1, 'https://ror.org/05x9zm716 Fourth Affiliated Hospital of Anhui Medical University å®‰å¾½åŒ»ē§‘å¤§å­¦ē¬¬å››é™„å±žåŒ»é™¢'),
(34969, 'https://ror.org/05xc28811', 'no_lang_code', 1, 'https://ror.org/05xc28811 Image Acoustics (United States)'),
(34970, 'https://ror.org/05xcbaa04', 'no_lang_code', 1, 'https://ror.org/05xcbaa04 Lubricating Specialties Company (United States)'),
(34971, 'https://ror.org/05xd8w204', 'en', 1, 'https://ror.org/05xd8w204 Fuzhou Neuro Psychiatric Hospital'),
(34972, 'https://ror.org/05xd9aq52', 'en', 1, 'https://ror.org/05xd9aq52 Ohio Environmental Protection Agency'),
(34973, 'https://ror.org/05xf0vz59', 'no_lang_code', 1, 'https://ror.org/05xf0vz59 Easy Global Market (France)'),
(34974, 'https://ror.org/05xj3t215', 'en', 1, 'https://ror.org/05xj3t215 American Neurotology Society'),
(34975, 'https://ror.org/05xkm9j63', 'en', 1, 'https://ror.org/05xkm9j63 Institute for Christian Works'),
(34976, 'https://ror.org/05xkzd182', 'en', 1, 'https://ror.org/05xkzd182 Directorate General of Health Services'),
(34977, 'https://ror.org/05xnsh975', 'en', 1, 'https://ror.org/05xnsh975 Maddie''s Fund'),
(34978, 'https://ror.org/05xpbrb70', 'en', 1, 'https://ror.org/05xpbrb70 Karl-Adam Bonnier Foundation'),
(34979, 'https://ror.org/05xsj9862', 'no_lang_code', 1, 'https://ror.org/05xsj9862 Emerging Concepts (United States)'),
(34980, 'https://ror.org/05xsw6b79', 'no_lang_code', 1, 'https://ror.org/05xsw6b79 Aralia Systems (United Kingdom)'),
(34981, 'https://ror.org/05xv7s149', 'no_lang_code', 1, 'https://ror.org/05xv7s149 Bioscience (Slovakia)'),
(34982, 'https://ror.org/05xwwfy96', 'en', 1, 'https://ror.org/05xwwfy96 German National Academic Foundation Studienstiftung des deutschen Volkes'),
(34983, 'https://ror.org/05xwxtv51', 'no_lang_code', 1, 'https://ror.org/05xwxtv51 PHDS (United States)'),
(34984, 'https://ror.org/05xxpak83', 'no_lang_code', 1, 'https://ror.org/05xxpak83 Cognimatics (Sweden)'),
(34985, 'https://ror.org/05xyq8x40', 'no_lang_code', 1, 'https://ror.org/05xyq8x40 SCS Engineers (United States)'),
(34986, 'https://ror.org/05xzvxw52', 'es', 1, 'https://ror.org/05xzvxw52 Universidad AeronƔutica en QuerƩtaro'),
(34987, 'https://ror.org/05y0vh566', 'en', 1, 'https://ror.org/05y0vh566 Global Solutions for Infectious Diseases'),
(34988, 'https://ror.org/05y1kkq06', 'en', 1, 'https://ror.org/05y1kkq06 Centre for Health Equity Studies'),
(34989, 'https://ror.org/05y5f7345', 'en', 1, 'https://ror.org/05y5f7345 Oxfordshire Clinical Commissioning Group'),
(34990, 'https://ror.org/05y6gdf04', 'no_lang_code', 1, 'https://ror.org/05y6gdf04 AZ Technology (United States)'),
(34991, 'https://ror.org/05y76jh28', 'no_lang_code', 1, 'https://ror.org/05y76jh28 Morcom International (United States)'),
(34992, 'https://ror.org/05y86p525', 'no_lang_code', 1, 'https://ror.org/05y86p525 Analysis Design & Diagnostics (United States)'),
(34993, 'https://ror.org/05y957z51', 'en', 1, 'https://ror.org/05y957z51 Marwell Zoo'),
(34994, 'https://ror.org/05y99bn19', 'no_lang_code', 1, 'https://ror.org/05y99bn19 Cycorp (United States)'),
(34995, 'https://ror.org/05ybejm06', 'no_lang_code', 1, 'https://ror.org/05ybejm06 RE2 (United States)'),
(34996, 'https://ror.org/05ybkj905', 'en', 1, 'https://ror.org/05ybkj905 Cetacean Society International'),
(34997, 'https://ror.org/05ydj2y02', 'no_lang_code', 1, 'https://ror.org/05ydj2y02 Advanced Systems & Technologies (United States)'),
(34998, 'https://ror.org/05yekth54', 'no_lang_code', 1, 'https://ror.org/05yekth54 Finning (Canada)'),
(34999, 'https://ror.org/05ygyjd33', 'en', 1, 'https://ror.org/05ygyjd33 Virginia Environmental Endowment'),
(35000, 'https://ror.org/05yj6x102', 'no_lang_code', 1, 'https://ror.org/05yj6x102 Biotika (Slovakia)'),
(35001, 'https://ror.org/0000pmw59', 'en', 1, 'https://ror.org/0000pmw59 Institute of Vertebrate Paleontology and Paleoanthropology äø­å›½ē§‘å­¦é™¢å¤č„Šę¤ŽåŠØē‰©äøŽå¤äŗŗē±»ē ”ē©¶ę‰€'),
(35002, 'https://ror.org/0000xh558', 'no_lang_code', 1, 'https://ror.org/0000xh558 BioBag (Norway)'),
(35003, 'https://ror.org/0001mcx38', 'no_lang_code', 1, 'https://ror.org/0001mcx38 Opusphere (Brazil)'),
(35004, 'https://ror.org/00053vy13', 'no_lang_code', 1, 'https://ror.org/00053vy13 Koyama Fukusei Hospital ē„žå±±å¾©ē”Ÿē—…é™¢'),
(35005, 'https://ror.org/000558439', 'no_lang_code', 1, 'https://ror.org/000558439 Hydrolift (Norway)'),
(35006, 'https://ror.org/000aph098', 'en', 1, 'https://ror.org/000aph098 Hainan Maternal and Child Health Hospital'),
(35007, 'https://ror.org/000d6be88', 'no_lang_code', 1, 'https://ror.org/000d6be88 Linax (Brazil)'),
(35008, 'https://ror.org/000d92m60', 'en', 1, 'https://ror.org/000d92m60 Midlands Provincial Hospital'),
(35009, 'https://ror.org/000dj4022', 'pt', 1, 'https://ror.org/000dj4022 Fundação para o Desenvolvimento Médico e Hospitalar'),
(35010, 'https://ror.org/000e19x32', 'no_lang_code', 1, 'https://ror.org/000e19x32 Kjeller Innovasjon (Norway) Kjeller Innovation'),
(35011, 'https://ror.org/000e9w685', 'en', 1, 'https://ror.org/000e9w685 Tokyo College of Environment'),
(35012, 'https://ror.org/000evwg49', 'en', 1, 'https://ror.org/000evwg49 Hochschule für Musik Franz Liszt Weimar University of Music FRANZ LISZT Weimar'),
(35013, 'https://ror.org/000ex0h82', 'no_lang_code', 1, 'https://ror.org/000ex0h82 Maruwa Foods and Biosciences (Japan)'),
(35014, 'https://ror.org/000fr0609', 'no_lang_code', 1, 'https://ror.org/000fr0609 Stangeskovene (Norway)'),
(35015, 'https://ror.org/000ft5096', 'no_lang_code', 1, 'https://ror.org/000ft5096 Agricef (Brazil)'),
(35016, 'https://ror.org/000j1tr86', 'en', 1, 'https://ror.org/000j1tr86 Qinghai University Affiliated Hospital é’ęµ·å¤§å­¦é™„å±žåŒ»é™¢'),
(35017, 'https://ror.org/000n97s94', 'no_lang_code', 1, 'https://ror.org/000n97s94 BioMaxima (Poland)'),
(35018, 'https://ror.org/000nw5c60', 'en', 1, 'https://ror.org/000nw5c60 St. John''s Pleasant Valley Hospital'),
(35019, 'https://ror.org/000nwzp56', 'de', 1, 'https://ror.org/000nwzp56 Stadtarchiv Erfurt'),
(35020, 'https://ror.org/000pke647', 'no_lang_code', 1, 'https://ror.org/000pke647 Arctic Nutrition (Norway)'),
(35021, 'https://ror.org/000pvc513', 'fr', 1, 'https://ror.org/000pvc513 Institut de Chimie de Nice'),
(35022, 'https://ror.org/000q6bw04', 'no_lang_code', 1, 'https://ror.org/000q6bw04 SmartBio Tecnologia (Brazil)'),
(35023, 'https://ror.org/000q9yz13', 'en', 1, 'https://ror.org/000q9yz13 University College of Agriculture and Environmental Studies'),
(35024, 'https://ror.org/000qg2787', 'no_lang_code', 1, 'https://ror.org/000qg2787 Imerso (Norway)'),
(35025, 'https://ror.org/000qjd183', 'no_lang_code', 1, 'https://ror.org/000qjd183 Falck Nutec (Norway)'),
(35026, 'https://ror.org/000rdbk18', 'en', 1, 'https://ror.org/000rdbk18 Max Planck Institute for Empirical Aesthetics Max-Planck-Institut für Empirische Ƅsthetik'),
(35027, 'https://ror.org/000sq7c21', 'no', 1, 'https://ror.org/000sq7c21 Norges RĆøde Kors Norwegian Red Cross'),
(35028, 'https://ror.org/000y1tz34', 'no_lang_code', 1, 'https://ror.org/000y1tz34 Atotech (Slovenia)'),
(35029, 'https://ror.org/000yesh06', 'en', 1, 'https://ror.org/000yesh06 Navodaya Dental College and Hospital'),
(35030, 'https://ror.org/001122g55', 'no_lang_code', 1, 'https://ror.org/001122g55 Innolink (Finland)'),
(35031, 'https://ror.org/001212e83', 'en', 1, 'https://ror.org/001212e83 Western Norway Regional Health Authority'),
(35032, 'https://ror.org/0012vvx22', 'no_lang_code', 1, 'https://ror.org/0012vvx22 Kintama (Canada)'),
(35033, 'https://ror.org/0013ka569', 'no_lang_code', 1, 'https://ror.org/0013ka569 Wenaas Workwear (Norway)'),
(35034, 'https://ror.org/0014nwk66', 'no_lang_code', 1, 'https://ror.org/0014nwk66 Alchemy (Brazil)'),
(35035, 'https://ror.org/00169ff80', 'en', 1, 'https://ror.org/00169ff80 Sturgeon Community Hospital'),
(35036, 'https://ror.org/0016atv87', 'en', 1, 'https://ror.org/0016atv87 Nantong Maternity and Child Health Hospital'),
(35037, 'https://ror.org/0018abm07', 'en', 1, 'https://ror.org/0018abm07 PSB College Vietnam'),
(35038, 'https://ror.org/0019g5792', 'en', 1, 'https://ror.org/0019g5792 Taksim Alman Hastanesi Taksim German Hospital'),
(35039, 'https://ror.org/001bbwj30', 'it', 1, 'https://ror.org/001bbwj30 Azienda Sanitaria UnitĆ  Locale di Reggio Emilia'),
(35040, 'https://ror.org/001bdqp77', 'no_lang_code', 1, 'https://ror.org/001bdqp77 Belver Brasil Instrumentos (Brazil)'),
(35041, 'https://ror.org/001dr7z09', 'no_lang_code', 1, 'https://ror.org/001dr7z09 Senshio Rifu hospital'),
(35042, 'https://ror.org/001dvq796', 'no', 1, 'https://ror.org/001dvq796 Hemne Kommune'),
(35043, 'https://ror.org/001dwsq82', 'no_lang_code', 1, 'https://ror.org/001dwsq82 Pleat (Norway)'),
(35044, 'https://ror.org/001e5z833', 'en', 1, 'https://ror.org/001e5z833 Wuqing District People''s Hospital'),
(35045, 'https://ror.org/001g8x550', 'no_lang_code', 1, 'https://ror.org/001g8x550 Solum Forlag (Norway)'),
(35046, 'https://ror.org/001g9gn21', 'pt', 1, 'https://ror.org/001g9gn21 Faculdade Brasil'),
(35047, 'https://ror.org/001gbdr73', 'no_lang_code', 1, 'https://ror.org/001gbdr73 Beijing VDJBio (China)'),
(35048, 'https://ror.org/001jrcp20', 'no_lang_code', 1, 'https://ror.org/001jrcp20 Flapres (Norway)'),
(35049, 'https://ror.org/001khdx24', 'no_lang_code', 1, 'https://ror.org/001khdx24 AquaFence (Norway)'),
(35050, 'https://ror.org/001nyte24', 'no_lang_code', 1, 'https://ror.org/001nyte24 Gerenciamento Tecnologia e Sistemas (Brazil)'),
(35051, 'https://ror.org/001prbr35', 'no_lang_code', 1, 'https://ror.org/001prbr35 Vónin Refa (Norway)'),
(35052, 'https://ror.org/001s2e926', 'no_lang_code', 1, 'https://ror.org/001s2e926 Eurofins (Norway)'),
(35053, 'https://ror.org/001shqf12', 'en', 1, 'https://ror.org/001shqf12 American University of Antigua'),
(35054, 'https://ror.org/001tbyf75', 'en', 1, 'https://ror.org/001tbyf75 Duchess Anna Amalia Library Herzogin Anna Amalia Bibliothek'),
(35055, 'https://ror.org/001wtjx27', 'no_lang_code', 1, 'https://ror.org/001wtjx27 Tata Steel (India)'),
(35056, 'https://ror.org/001yqrb02', 'de', 1, 'https://ror.org/001yqrb02 Hochschule Bremerhaven University of Applied Sciences Bremerhaven'),
(35057, 'https://ror.org/00201ef63', 'de', 1, 'https://ror.org/00201ef63 Stadtarchiv Grevesmühlen'),
(35058, 'https://ror.org/0021b8g40', 'no_lang_code', 1, 'https://ror.org/0021b8g40 Naviaq (Norway)'),
(35059, 'https://ror.org/0021wxc35', 'no_lang_code', 1, 'https://ror.org/0021wxc35 Fjord Marin (Norway)'),
(35060, 'https://ror.org/002205j24', 'no_lang_code', 1, 'https://ror.org/002205j24 GlobalMag (Brazil)'),
(35061, 'https://ror.org/002273w22', 'en', 1, 'https://ror.org/002273w22 Baptist College of Health Sciences'),
(35062, 'https://ror.org/00238y219', 'no_lang_code', 1, 'https://ror.org/00238y219 BlƄst Film (Norway)'),
(35063, 'https://ror.org/0023n0d81', 'no', 1, 'https://ror.org/0023n0d81 Ƙksnes Kommune'),
(35064, 'https://ror.org/00254th47', 'en', 1, 'https://ror.org/00254th47 Western Isles Hospital'),
(35065, 'https://ror.org/0025ymj94', 'pt', 1, 'https://ror.org/0025ymj94 Sociedade Brasileira de CiĆŖncia e Tecnologia de Alimentos'),
(35066, 'https://ror.org/00262f659', 'pt', 1, 'https://ror.org/00262f659 Associação dos Geógrafos Brasileiros'),
(35067, 'https://ror.org/0026mdx79', 'en', 1, 'https://ror.org/0026mdx79 Meizhou City People''s Hospital ę¢…å·žåø‚äŗŗę°‘åŒ»é™¢'),
(35068, 'https://ror.org/0027zt973', 'en', 1, 'https://ror.org/0027zt973 Swiss Association for Private Schools and Universities'),
(35069, 'https://ror.org/0028m9f31', 'no_lang_code', 1, 'https://ror.org/0028m9f31 Comtrade (Slovenia)'),
(35070, 'https://ror.org/002bjj765', 'en', 1, 'https://ror.org/002bjj765 Bantry General Hospital OspidƩal GinearƔlta Bheanntraƭ'),
(35071, 'https://ror.org/002c7zk35', 'en', 1, 'https://ror.org/002c7zk35 Eglin Air Force Base'),
(35072, 'https://ror.org/002dg3j61', 'no', 1, 'https://ror.org/002dg3j61 NHO Logistikk og Transport'),
(35073, 'https://ror.org/002jdaq33', 'en', 1, 'https://ror.org/002jdaq33 Division of Molecular & Cellular Biosciences'),
(35074, 'https://ror.org/002jt8031', 'no_lang_code', 1, 'https://ror.org/002jt8031 PubGene (Norway)'),
(35075, 'https://ror.org/002kk4g03', 'en', 1, 'https://ror.org/002kk4g03 Nkozi Hospital'),
(35076, 'https://ror.org/002kp7y60', 'no_lang_code', 1, 'https://ror.org/002kp7y60 Bergen Energi (Norway)'),
(35077, 'https://ror.org/002kxw589', 'no_lang_code', 1, 'https://ror.org/002kxw589 Gentros (Brazil)'),
(35078, 'https://ror.org/002mm7c07', 'en', 1, 'https://ror.org/002mm7c07 Henan University Huaihe Hospital and Huaihe Clinical Institute'),
(35079, 'https://ror.org/002n0by50', 'de', 1, 'https://ror.org/002n0by50 Katharinenhospital'),
(35080, 'https://ror.org/002ngbk13', 'en', 1, 'https://ror.org/002ngbk13 Yeungjin College ģ˜ģ§„ģ „ė¬øėŒ€ķ•™'),
(35081, 'https://ror.org/002npz476', 'en', 1, 'https://ror.org/002npz476 Mohak Hitech Speciality Hospital'),
(35082, 'https://ror.org/002qg6270', 'no_lang_code', 1, 'https://ror.org/002qg6270 Bring (Norway)'),
(35083, 'https://ror.org/002rwrx57', 'no_lang_code', 1, 'https://ror.org/002rwrx57 MOTECH Plasma (Norway)'),
(35084, 'https://ror.org/002ryrd72', 'sl', 1, 'https://ror.org/002ryrd72 Pomurski muzej Murska Sobota'),
(35085, 'https://ror.org/002t0k030', 'no_lang_code', 1, 'https://ror.org/002t0k030 Detec (Norway)'),
(35086, 'https://ror.org/002t5m579', 'no_lang_code', 1, 'https://ror.org/002t5m579 Dinamo (Norway)'),
(35087, 'https://ror.org/002td2d02', 'en', 1, 'https://ror.org/002td2d02 Hong Kong Adventist Hospital 香港港安醫院'),
(35088, 'https://ror.org/002tr2c66', 'no_lang_code', 1, 'https://ror.org/002tr2c66 Nofi TromsĆø (Norway)'),
(35089, 'https://ror.org/002v59719', 'no_lang_code', 1, 'https://ror.org/002v59719 Idemitsu Kosan (Japan) å‡ŗå…‰čˆˆē”£'),
(35090, 'https://ror.org/002w0zt72', 'no_lang_code', 1, 'https://ror.org/002w0zt72 Oralls (Brazil)'),
(35091, 'https://ror.org/002wqxx21', 'no_lang_code', 1, 'https://ror.org/002wqxx21 Lipidx (Norway)'),
(35092, 'https://ror.org/002zf0s07', 'no_lang_code', 1, 'https://ror.org/002zf0s07 SystemlĆøsning (Norway)'),
(35093, 'https://ror.org/002zkqx49', 'en', 1, 'https://ror.org/002zkqx49 Quebec Society for the Protection of Plants SociƩtƩ de Protection des Plantes du QuƩbec'),
(35094, 'https://ror.org/0030apy05', 'no_lang_code', 1, 'https://ror.org/0030apy05 CoorsTek (Norway)'),
(35095, 'https://ror.org/00313pn56', 'en', 1, 'https://ror.org/00313pn56 Other Side Studio'),
(35096, 'https://ror.org/0032cnc36', 'en', 1, 'https://ror.org/0032cnc36 Paphos General Hospital'),
(35097, 'https://ror.org/0033xm087', 'pt', 1, 'https://ror.org/0033xm087 Instituto de Estudos do Mar Almirante Paulo Moreira'),
(35098, 'https://ror.org/0036ate90', 'en', 1, 'https://ror.org/0036ate90 Nuffield Orthopaedic Centre'),
(35099, 'https://ror.org/0036pxz38', 'en', 1, 'https://ror.org/0036pxz38 Korean Association of Maxillofacial Plastic and Reconstructive Surgery'),
(35100, 'https://ror.org/0038s7b86', 'no_lang_code', 1, 'https://ror.org/0038s7b86 Helland MĆøbler (Norway)'),
(35101, 'https://ror.org/0038zp908', 'en', 1, 'https://ror.org/0038zp908 Institute of Genetics and Animal Biotechnology of the Polish Academy of Sciences Instytut Genetyki i Biotechnologii Zwierząt Polskiej Akademii Nauk'),
(35102, 'https://ror.org/003agrv69', 'no_lang_code', 1, 'https://ror.org/003agrv69 Allstar PZL Glider (Poland)'),
(35103, 'https://ror.org/003c2h870', 'pt', 1, 'https://ror.org/003c2h870 Fundação Zerbini'),
(35104, 'https://ror.org/003cthx96', 'en', 1, 'https://ror.org/003cthx96 Fredrikstad Dyrehospital'),
(35105, 'https://ror.org/003dc0936', 'no_lang_code', 1, 'https://ror.org/003dc0936 Sero (Norway)'),
(35106, 'https://ror.org/003dgzf80', 'no_lang_code', 1, 'https://ror.org/003dgzf80 Firmenich (Norway)'),
(35107, 'https://ror.org/003ednf28', 'no_lang_code', 1, 'https://ror.org/003ednf28 Norsk Hummer (Norway)'),
(35108, 'https://ror.org/003f8ap84', 'en', 1, 'https://ror.org/003f8ap84 Cerro Coso Community College'),
(35109, 'https://ror.org/003fgxd95', 'no_lang_code', 1, 'https://ror.org/003fgxd95 Future Solutions (Norway)'),
(35110, 'https://ror.org/003fyqt13', 'pt', 1, 'https://ror.org/003fyqt13 AVM Faculdade Integrada'),
(35111, 'https://ror.org/003m47s20', 'no_lang_code', 1, 'https://ror.org/003m47s20 Produs Aqua (Norway)'),
(35112, 'https://ror.org/003mb7998', 'en', 1, 'https://ror.org/003mb7998 Eleanor Slater Hospital'),
(35113, 'https://ror.org/003ms1470', 'no_lang_code', 1, 'https://ror.org/003ms1470 InflowControl (Norway)'),
(35114, 'https://ror.org/003n39798', 'no_lang_code', 1, 'https://ror.org/003n39798 Talkped (Norway)'),
(35115, 'https://ror.org/003r70w25', 'no_lang_code', 1, 'https://ror.org/003r70w25 Otechos (Norway)'),
(35116, 'https://ror.org/003sdh081', 'en', 1, 'https://ror.org/003sdh081 Instytut Historii im. Tadeusza Manteuffla Tadeusz Manteuffel Institute of History'),
(35117, 'https://ror.org/003t41316', 'en', 1, 'https://ror.org/003t41316 Rogaland Training & Education Centre'),
(35118, 'https://ror.org/003w57e32', 'no', 1, 'https://ror.org/003w57e32 Norsk Matraps'),
(35119, 'https://ror.org/003wp4g82', 'no_lang_code', 1, 'https://ror.org/003wp4g82 NorgesfƓr (Norway)'),
(35120, 'https://ror.org/003x1ca72', 'en', 1, 'https://ror.org/003x1ca72 Clark Art Institute Instituto de Arte Clark'),
(35121, 'https://ror.org/003xfve38', 'tr', 1, 'https://ror.org/003xfve38 Ankara Mevki Asker Hastanesi'),
(35122, 'https://ror.org/003xjza53', 'no_lang_code', 1, 'https://ror.org/003xjza53 Centro de Tecnologia Canavieira Sugarcane Research Center (Brazil)'),
(35123, 'https://ror.org/003xvn846', 'no_lang_code', 1, 'https://ror.org/003xvn846 ZUM urban planning, design (Slovenia)'),
(35124, 'https://ror.org/003xxrm77', 'en', 1, 'https://ror.org/003xxrm77 Wirral Women and Children''s Hospital'),
(35125, 'https://ror.org/003y01g65', 'no_lang_code', 1, 'https://ror.org/003y01g65 4Subsea (Norway)'),
(35126, 'https://ror.org/003yx8k21', 'no_lang_code', 1, 'https://ror.org/003yx8k21 Elretur (Norway)'),
(35127, 'https://ror.org/0043mfh16', 'no_lang_code', 1, 'https://ror.org/0043mfh16 Integrated Detector Electronics AS (Norway)'),
(35128, 'https://ror.org/0044jmf17', 'no_lang_code', 1, 'https://ror.org/0044jmf17 CFD Marine (Norway)'),
(35129, 'https://ror.org/00467a196', 'no_lang_code', 1, 'https://ror.org/00467a196 Sindh Madressatul Islam University سندھ Ł…ŲÆŲ±Ų³Ūƒ الاسلام Ų³Ł†ŚŒ مدرسته Ų§Ł„Ų§Ų³Ł„Ų§Ł…ā€Ž'),
(35130, 'https://ror.org/0047hkh43', 'en', 1, 'https://ror.org/0047hkh43 Alsalam University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ų“ŁŠŲ® Ł…Ų­Ł…ŲÆ Ų§Ł„ŁƒŲ³Ł†Ų²Ų§Ł† الجامعة'),
(35131, 'https://ror.org/0047pk836', 'no_lang_code', 1, 'https://ror.org/0047pk836 Crevi (Norway)'),
(35132, 'https://ror.org/0048mhp79', 'no_lang_code', 1, 'https://ror.org/0048mhp79 WorleyParsons (Brazil)'),
(35133, 'https://ror.org/0048zyh71', 'no_lang_code', 1, 'https://ror.org/0048zyh71 AREX (Poland)'),
(35134, 'https://ror.org/0049mdg50', 'no_lang_code', 1, 'https://ror.org/0049mdg50 INFOKLINIKA (Poland)'),
(35135, 'https://ror.org/004cakc07', 'en', 1, 'https://ror.org/004cakc07 Norwegian Academy of Technological Sciences'),
(35136, 'https://ror.org/004g4mj14', 'en', 1, 'https://ror.org/004g4mj14 Association for Electrotechnics and Automation in Industry'),
(35137, 'https://ror.org/004gk0w56', 'en', 1, 'https://ror.org/004gk0w56 Gordon College, Gordon State College'),
(35138, 'https://ror.org/004h6mc53', 'de', 1, 'https://ror.org/004h6mc53 UniversitƤtsklinik Marien Hospital Herne'),
(35139, 'https://ror.org/004hd5y14', 'en', 1, 'https://ror.org/004hd5y14 Leibniz Institute for Plasma Science and Technology Leibniz-Institut für Plasmaforschung und Technologie'),
(35140, 'https://ror.org/004j26v17', 'en', 1, 'https://ror.org/004j26v17 Jiading District Central Hospital'),
(35141, 'https://ror.org/004kgh805', 'no_lang_code', 1, 'https://ror.org/004kgh805 Amebis (Slovenia)'),
(35142, 'https://ror.org/004kvma63', 'en', 1, 'https://ror.org/004kvma63 Lismore Base Hospital'),
(35143, 'https://ror.org/004n2nr09', 'en', 1, 'https://ror.org/004n2nr09 Fraunhofer Institute for Physical Measurement Techniques Fraunhofer-Institut für Physikalische Messtechnik'),
(35144, 'https://ror.org/004p7xa79', 'en', 1, 'https://ror.org/004p7xa79 Cowal Community Hospital'),
(35145, 'https://ror.org/004q90683', 'en', 1, 'https://ror.org/004q90683 Calvin Theological Seminary'),
(35146, 'https://ror.org/004qehs09', 'en', 1, 'https://ror.org/004qehs09 Quzhou City People''s Hospital'),
(35147, 'https://ror.org/004r88k74', 'no_lang_code', 1, 'https://ror.org/004r88k74 Prox Dynamics (Norway)'),
(35148, 'https://ror.org/004rmpj87', 'no_lang_code', 1, 'https://ror.org/004rmpj87 Light Tech (Brazil)'),
(35149, 'https://ror.org/004wdwb09', 'en', 1, 'https://ror.org/004wdwb09 WellStar Douglas Hospital'),
(35150, 'https://ror.org/004xrke09', 'no_lang_code', 1, 'https://ror.org/004xrke09 Halogen (Norway)'),
(35151, 'https://ror.org/004yws045', 'no_lang_code', 1, 'https://ror.org/004yws045 Fjordland (Norway)'),
(35152, 'https://ror.org/004z3dy70', 'no_lang_code', 1, 'https://ror.org/004z3dy70 Polski Holding Obronny (Poland)'),
(35153, 'https://ror.org/0055ya375', 'no_lang_code', 1, 'https://ror.org/0055ya375 MGGP Aero (Poland)'),
(35154, 'https://ror.org/0056jcm84', 'en', 1, 'https://ror.org/0056jcm84 National Hospital'),
(35155, 'https://ror.org/0057m5255', 'no_lang_code', 1, 'https://ror.org/0057m5255 JEOL (United States)'),
(35156, 'https://ror.org/0057mbc31', 'en', 1, 'https://ror.org/0057mbc31 Windsor Regional Hospital'),
(35157, 'https://ror.org/005c74108', 'de', 1, 'https://ror.org/005c74108 Polymet Jena'),
(35158, 'https://ror.org/005ckkn56', 'no_lang_code', 1, 'https://ror.org/005ckkn56 Demetrix (Poland)'),
(35159, 'https://ror.org/005cxvy66', 'no_lang_code', 1, 'https://ror.org/005cxvy66 PB Online (Poland)'),
(35160, 'https://ror.org/005czd885', 'no_lang_code', 1, 'https://ror.org/005czd885 Simlink (Norway)'),
(35161, 'https://ror.org/005dgnw92', 'en', 1, 'https://ror.org/005dgnw92 Austin Presbyterian Theological Seminary'),
(35162, 'https://ror.org/005fhb985', 'no_lang_code', 1, 'https://ror.org/005fhb985 BƄtservice (Norway)'),
(35163, 'https://ror.org/005jwm150', 'no_lang_code', 1, 'https://ror.org/005jwm150 Grupo GuaƧu (Brazil)'),
(35164, 'https://ror.org/005pn5z34', 'en', 1, 'https://ror.org/005pn5z34 Federal Institute of São Paulo Instituto Federal de Educação, Ciência e Tecnologia de São Paulo'),
(35165, 'https://ror.org/005td0w95', 'es', 1, 'https://ror.org/005td0w95 Hospital Psiquiatrico Infantil Juan N Navarro'),
(35166, 'https://ror.org/005tsjq27', 'en', 1, 'https://ror.org/005tsjq27 Las Positas College'),
(35167, 'https://ror.org/005x6cs54', 'no_lang_code', 1, 'https://ror.org/005x6cs54 Nanocore (Brazil)'),
(35168, 'https://ror.org/005x7q366', 'en', 1, 'https://ror.org/005x7q366 PIH Health Hospital'),
(35169, 'https://ror.org/00632ee91', 'no_lang_code', 1, 'https://ror.org/00632ee91 Polonia Aero (Poland)'),
(35170, 'https://ror.org/0063fxv95', 'no_lang_code', 1, 'https://ror.org/0063fxv95 Semenarna (Slovenia)'),
(35171, 'https://ror.org/00640dd83', 'no_lang_code', 1, 'https://ror.org/00640dd83 Lexikon Editora Digital (Brazil)'),
(35172, 'https://ror.org/0065vqr08', 'no_lang_code', 1, 'https://ror.org/0065vqr08 Mobiletech (Norway)'),
(35173, 'https://ror.org/0066ttc69', 'no_lang_code', 1, 'https://ror.org/0066ttc69 NorgesGruppen (Norway)'),
(35174, 'https://ror.org/00673mt18', 'en', 1, 'https://ror.org/00673mt18 North Okkalapa General Hospital မြောက် į€„į€€į€¹į€€į€œį€¬į€•į€†į€±į€øį€›į€Æį€¶'),
(35175, 'https://ror.org/0067rre51', 'no_lang_code', 1, 'https://ror.org/0067rre51 EcoZON (Brazil)'),
(35176, 'https://ror.org/006a04p80', 'en', 1, 'https://ror.org/006a04p80 Dodge City Community College'),
(35177, 'https://ror.org/006ajxc32', 'en', 1, 'https://ror.org/006ajxc32 Xiaochang People''s Hospital å­ę˜ŒåŽæē¬¬äø€äŗŗę°‘åŒ»é™¢');
INSERT INTO `rors` VALUES
(35178, 'https://ror.org/006f4gp05', 'no_lang_code', 1, 'https://ror.org/006f4gp05 Deltagruppen (Norway)'),
(35179, 'https://ror.org/006fh5g40', 'en', 1, 'https://ror.org/006fh5g40 Lipetsk State Technical University'),
(35180, 'https://ror.org/006gt3q68', 'no_lang_code', 1, 'https://ror.org/006gt3q68 DeAmp (Norway)'),
(35181, 'https://ror.org/006hmqw32', 'no', 1, 'https://ror.org/006hmqw32 AksjeNorge'),
(35182, 'https://ror.org/006hvpn82', 'en', 1, 'https://ror.org/006hvpn82 Islamic Azad University of Shahreza'),
(35183, 'https://ror.org/006je8v76', 'fr', 1, 'https://ror.org/006je8v76 Institut de Biochimie et Biophysique MolƩculaire et Cellulaire'),
(35184, 'https://ror.org/006mjdb74', 'no_lang_code', 1, 'https://ror.org/006mjdb74 Miriam (Norway)'),
(35185, 'https://ror.org/006p8df44', 'en', 1, 'https://ror.org/006p8df44 AMRI Hospitals'),
(35186, 'https://ror.org/006pshn89', 'en', 1, 'https://ror.org/006pshn89 Seojeong University ģ„œģ •ėŒ€ķ•™źµ'),
(35187, 'https://ror.org/006xrke70', 'no_lang_code', 1, 'https://ror.org/006xrke70 Ecological Engineering Institute'),
(35188, 'https://ror.org/006xrph64', 'en', 1, 'https://ror.org/006xrph64 Central Hospital Affiliated to Shenyang Medical College'),
(35189, 'https://ror.org/006z5we64', 'no', 1, 'https://ror.org/006z5we64 Salten RegionrƄd'),
(35190, 'https://ror.org/0070zck46', 'no_lang_code', 1, 'https://ror.org/0070zck46 Aquatic Farms (United States)'),
(35191, 'https://ror.org/00726et14', 'en', 1, 'https://ror.org/00726et14 West China Second University Hospital of Sichuan University'),
(35192, 'https://ror.org/0072bcq84', 'no_lang_code', 1, 'https://ror.org/0072bcq84 Profvet (Norway)'),
(35193, 'https://ror.org/00737wk38', 'en', 1, 'https://ror.org/00737wk38 Sai Krishna Medical College & Hospital'),
(35194, 'https://ror.org/00744et58', 'no_lang_code', 1, 'https://ror.org/00744et58 Å tore Steel (Slovenia)'),
(35195, 'https://ror.org/00747z152', 'no_lang_code', 1, 'https://ror.org/00747z152 Hardanger Fjordfrukt (Norway)'),
(35196, 'https://ror.org/00749c973', 'en', 1, 'https://ror.org/00749c973 Eastern Shore Hospital Center'),
(35197, 'https://ror.org/0074zqk79', 'en', 1, 'https://ror.org/0074zqk79 Madzikane Ka Zulu Memorial Hospital'),
(35198, 'https://ror.org/00753wa45', 'no_lang_code', 1, 'https://ror.org/00753wa45 Ƙsterdalsmia (Norway)'),
(35199, 'https://ror.org/0076czt51', 'no_lang_code', 1, 'https://ror.org/0076czt51 Metas (Norway)'),
(35200, 'https://ror.org/0077bn238', 'en', 1, 'https://ror.org/0077bn238 Niloufer Hospital'),
(35201, 'https://ror.org/007cf5b05', 'no_lang_code', 1, 'https://ror.org/007cf5b05 Star Information Systems (Norway)'),
(35202, 'https://ror.org/007g4ze80', 'pt', 1, 'https://ror.org/007g4ze80 Departamento Intersindical de Estatƭstica e Estudos SocioeconƓmicos'),
(35203, 'https://ror.org/007gdk107', 'no_lang_code', 1, 'https://ror.org/007gdk107 Saga Welco (Norway)'),
(35204, 'https://ror.org/007gm3994', 'no_lang_code', 1, 'https://ror.org/007gm3994 Selvaag Gruppen (Norway)'),
(35205, 'https://ror.org/007hw6r71', 'de', 1, 'https://ror.org/007hw6r71 Archäologisches Landesmuseum Baden-Württemberg'),
(35206, 'https://ror.org/007pk1x33', 'no_lang_code', 1, 'https://ror.org/007pk1x33 Lifemed (Brazil)'),
(35207, 'https://ror.org/007q6cq88', 'no_lang_code', 1, 'https://ror.org/007q6cq88 Doble (Norway)'),
(35208, 'https://ror.org/007s9wc50', 'no_lang_code', 1, 'https://ror.org/007s9wc50 York Osteoarchaeology (United Kingdom)'),
(35209, 'https://ror.org/007sqfz40', 'no_lang_code', 1, 'https://ror.org/007sqfz40 PricewaterhouseCoopers (Norway)'),
(35210, 'https://ror.org/007ssvs37', 'no_lang_code', 1, 'https://ror.org/007ssvs37 Seashell (Norway)'),
(35211, 'https://ror.org/007svmx82', 'en', 1, 'https://ror.org/007svmx82 Caldwell Memorial Hospital'),
(35212, 'https://ror.org/007vzwm62', 'en', 1, 'https://ror.org/007vzwm62 Northern College'),
(35213, 'https://ror.org/007x12q48', 'en', 1, 'https://ror.org/007x12q48 Central Carolina Community College'),
(35214, 'https://ror.org/007xs6t35', 'en', 1, 'https://ror.org/007xs6t35 Community College of Aurora'),
(35215, 'https://ror.org/007z4mw61', 'en', 1, 'https://ror.org/007z4mw61 Bakırkƶy Psychiatric Hospital'),
(35216, 'https://ror.org/00803nh20', 'en', 1, 'https://ror.org/00803nh20 Runde Environmental Centre'),
(35217, 'https://ror.org/0082dha77', 'en', 1, 'https://ror.org/0082dha77 Logan Hospital'),
(35218, 'https://ror.org/0082w0p19', 'en', 1, 'https://ror.org/0082w0p19 Northridge Hospital Medical Center'),
(35219, 'https://ror.org/008533323', 'no_lang_code', 1, 'https://ror.org/008533323 Thermolab (Poland)'),
(35220, 'https://ror.org/0086rk289', 'en', 1, 'https://ror.org/0086rk289 Łukasiewicz Instytut Napędów i Maszyn Elektrycznych KOMEL Łukasiewicz Research Network - Institute of Electrical Drives & Machines KOMEL'),
(35221, 'https://ror.org/0086skx40', 'en', 1, 'https://ror.org/0086skx40 Adana Hospital'),
(35222, 'https://ror.org/00884mc13', 'no_lang_code', 1, 'https://ror.org/00884mc13 Cupp Computing (Norway)'),
(35223, 'https://ror.org/008etp691', 'no_lang_code', 1, 'https://ror.org/008etp691 GlucoSet (Norway)'),
(35224, 'https://ror.org/008j9bq89', 'fi', 1, 'https://ror.org/008j9bq89 LƤnsi-Pohjan Sairaanhoitopiirin KuntayhtymƤ'),
(35225, 'https://ror.org/008n8dd57', 'en', 1, 'https://ror.org/008n8dd57 Leibniz Institute for Science and Mathematics Education Leibniz-Institut für die Pädagogik der Naturwissenschaften und Mathematik'),
(35226, 'https://ror.org/008neaz95', 'no_lang_code', 1, 'https://ror.org/008neaz95 Episcenter (Slovenia)'),
(35227, 'https://ror.org/008nfm327', 'en', 1, 'https://ror.org/008nfm327 Aditya Jyot Eye Hospital'),
(35228, 'https://ror.org/008nqpv19', 'pt', 1, 'https://ror.org/008nqpv19 Santa Casa da Misericórdia de Bragança Paulista'),
(35229, 'https://ror.org/008ny3111', 'en', 1, 'https://ror.org/008ny3111 K.S. Hegde Hospital ą²œą²øą³ą²Ÿą²æą³•ą²øą³ ಕೆ.ą²Žą²øą³ ą²¹ą³†ą²—ą³ą²”ą³† ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(35230, 'https://ror.org/008p6rr25', 'en', 1, 'https://ror.org/008p6rr25 Huanghe Science and Technology College é»„ę²³ē§‘ęŠ€å­¦é™¢'),
(35231, 'https://ror.org/008qm8389', 'no', 1, 'https://ror.org/008qm8389 Norsk Skogmuseum'),
(35232, 'https://ror.org/008qzvt03', 'no_lang_code', 1, 'https://ror.org/008qzvt03 Inaq (Norway)'),
(35233, 'https://ror.org/008rxa151', 'no_lang_code', 1, 'https://ror.org/008rxa151 Infrared Clinical Cancer Diagnostics (Norway)'),
(35234, 'https://ror.org/008stff69', 'no_lang_code', 1, 'https://ror.org/008stff69 Blue Planet (Norway)'),
(35235, 'https://ror.org/008t32k41', 'en', 1, 'https://ror.org/008t32k41 Hun School of Princeton'),
(35236, 'https://ror.org/008trbz07', 'en', 1, 'https://ror.org/008trbz07 Hospital Tuaran Tuaran Hospital'),
(35237, 'https://ror.org/008vpwk50', 'no_lang_code', 1, 'https://ror.org/008vpwk50 Victoria Hospital'),
(35238, 'https://ror.org/008wzyk06', 'en', 1, 'https://ror.org/008wzyk06 HƩlio Alonso University'),
(35239, 'https://ror.org/008x0kw97', 'no_lang_code', 1, 'https://ror.org/008x0kw97 Inventi (Norway)'),
(35240, 'https://ror.org/008y17h10', 'no_lang_code', 1, 'https://ror.org/008y17h10 Retriev Technologies (United States)'),
(35241, 'https://ror.org/008zn4267', 'en', 1, 'https://ror.org/008zn4267 Mid Coast Hospital'),
(35242, 'https://ror.org/0091yh482', 'en', 1, 'https://ror.org/0091yh482 Institute of Health Services and Policy Research'),
(35243, 'https://ror.org/0092pe568', 'en', 1, 'https://ror.org/0092pe568 Community Hospital of San Bernardino'),
(35244, 'https://ror.org/00930df66', 'no_lang_code', 1, 'https://ror.org/00930df66 Ulefos Esco (Norway)'),
(35245, 'https://ror.org/00936hn50', 'no_lang_code', 1, 'https://ror.org/00936hn50 Gepco (Brazil)'),
(35246, 'https://ror.org/0093x0153', 'en', 1, 'https://ror.org/0093x0153 American Association of Pharmaceutical Scientists'),
(35247, 'https://ror.org/0094sxw24', 'no_lang_code', 1, 'https://ror.org/0094sxw24 InnoCentive (United States)'),
(35248, 'https://ror.org/0095jfr46', 'no_lang_code', 1, 'https://ror.org/0095jfr46 IKT Indre Namdal (Norway)'),
(35249, 'https://ror.org/0097rw043', 'no_lang_code', 1, 'https://ror.org/0097rw043 Taoka Hospital'),
(35250, 'https://ror.org/00980wf60', 'no_lang_code', 1, 'https://ror.org/00980wf60 Tecnovip (Brazil)'),
(35251, 'https://ror.org/00989y104', 'en', 1, 'https://ror.org/00989y104 New Century International Hospital for Children'),
(35252, 'https://ror.org/0098fsf52', 'pt', 1, 'https://ror.org/0098fsf52 ServiƧo AutƓnomo de Ɓgua e Esgoto de Jaboticabal'),
(35253, 'https://ror.org/009ag0z22', 'no_lang_code', 1, 'https://ror.org/009ag0z22 Toshima Manufacturing (Japan)'),
(35254, 'https://ror.org/009aksf94', 'no_lang_code', 1, 'https://ror.org/009aksf94 Vejthani Hospital'),
(35255, 'https://ror.org/009bjed14', 'en', 1, 'https://ror.org/009bjed14 Goodwin College'),
(35256, 'https://ror.org/009egh542', 'no_lang_code', 1, 'https://ror.org/009egh542 Calera (United States)'),
(35257, 'https://ror.org/009kef261', 'pt', 1, 'https://ror.org/009kef261 Instituto UniversitƔrio de Pesquisas do Rio de Janeiro'),
(35258, 'https://ror.org/009mn4a13', 'no_lang_code', 1, 'https://ror.org/009mn4a13 Energy Restructuring Agency (Slovenia)'),
(35259, 'https://ror.org/009mq9d73', 'en', 1, 'https://ror.org/009mq9d73 Agence universitaire de la Francophonie Francophone University Association'),
(35260, 'https://ror.org/009nmab38', 'en', 1, 'https://ror.org/009nmab38 World Allergy Organization'),
(35261, 'https://ror.org/009p5nb11', 'fr', 1, 'https://ror.org/009p5nb11 Centre de RƩfƩrence DƩficits Immunitaires HƩrƩditaires'),
(35262, 'https://ror.org/009r3dd41', 'no_lang_code', 1, 'https://ror.org/009r3dd41 CVS Mobile (Slovenia)'),
(35263, 'https://ror.org/009rsfm47', 'no_lang_code', 1, 'https://ror.org/009rsfm47 MedieoperatĆørene (Norway)'),
(35264, 'https://ror.org/009ssz662', 'en', 1, 'https://ror.org/009ssz662 Shenzhen Occupational Disease Prevention Hospital'),
(35265, 'https://ror.org/009tejc24', 'no_lang_code', 1, 'https://ror.org/009tejc24 Zaptec (Norway)'),
(35266, 'https://ror.org/009vyay43', 'no_lang_code', 1, 'https://ror.org/009vyay43 Stavanger Health Research (Norway)'),
(35267, 'https://ror.org/009wzft49', 'en', 1, 'https://ror.org/009wzft49 Norwegian Hydrogen Forum'),
(35268, 'https://ror.org/009xa9473', 'en', 1, 'https://ror.org/009xa9473 Arrow Lakes Hospital'),
(35269, 'https://ror.org/00a0d6g98', 'no_lang_code', 1, 'https://ror.org/00a0d6g98 Mhnano (Brazil)'),
(35270, 'https://ror.org/00a1sfb75', 'en', 1, 'https://ror.org/00a1sfb75 Fhrai Institute of Hospitality Management'),
(35271, 'https://ror.org/00a2gj556', 'en', 1, 'https://ror.org/00a2gj556 Martina Hansens Hospital'),
(35272, 'https://ror.org/00a39qp34', 'no_lang_code', 1, 'https://ror.org/00a39qp34 Movation (Norway)'),
(35273, 'https://ror.org/00a3jhq22', 'no', 1, 'https://ror.org/00a3jhq22 Re Kommune'),
(35274, 'https://ror.org/00a5p2894', 'no_lang_code', 1, 'https://ror.org/00a5p2894 Komga Hospital'),
(35275, 'https://ror.org/00a6rw165', 'en', 1, 'https://ror.org/00a6rw165 Fraunhofer Institute for High Frequency Physics and Radar Techniques Fraunhofer-Institut für Hochfrequenzphysik und Radartechnik'),
(35276, 'https://ror.org/00a7y2r22', 'en', 1, 'https://ror.org/00a7y2r22 Reiss Engelhorn Museum Reiss-Engelhorn-Museen'),
(35277, 'https://ror.org/00a84en41', 'no_lang_code', 1, 'https://ror.org/00a84en41 Mari Petroleum Company (Pakistan)'),
(35278, 'https://ror.org/00a9g0t62', 'no_lang_code', 1, 'https://ror.org/00a9g0t62 Flatsetsund Engineering (Norway)'),
(35279, 'https://ror.org/00aaeae98', 'no_lang_code', 1, 'https://ror.org/00aaeae98 XTronica (Norway)'),
(35280, 'https://ror.org/00aagcd70', 'no_lang_code', 1, 'https://ror.org/00aagcd70 Calpro (Norway)'),
(35281, 'https://ror.org/00abh5k34', 'no_lang_code', 1, 'https://ror.org/00abh5k34 Mizushima Central Hospital'),
(35282, 'https://ror.org/00acxsg16', 'no_lang_code', 1, 'https://ror.org/00acxsg16 Herbicat (Brazil)'),
(35283, 'https://ror.org/00aeqjw83', 'en', 1, 'https://ror.org/00aeqjw83 Jessie McPherson Private Hospital'),
(35284, 'https://ror.org/00af5g613', 'no_lang_code', 1, 'https://ror.org/00af5g613 SMM production systems (Slovenia)'),
(35285, 'https://ror.org/00afava75', 'no_lang_code', 1, 'https://ror.org/00afava75 IQX-Inove Qualyx (Brazil)'),
(35286, 'https://ror.org/00ag1gh03', 'en', 1, 'https://ror.org/00ag1gh03 WhaleSafari'),
(35287, 'https://ror.org/00agykx25', 'no_lang_code', 1, 'https://ror.org/00agykx25 Hydal Aluminium Profiler (Norway)'),
(35288, 'https://ror.org/00ajd9b21', 'en', 1, 'https://ror.org/00ajd9b21 Western Galilee College המכללה ×”××§×“×ž×™×Ŗ גליל ×ž×¢×Ø×‘×™'),
(35289, 'https://ror.org/00ajvp903', 'no_lang_code', 1, 'https://ror.org/00ajvp903 Cofimvaba Hospital'),
(35290, 'https://ror.org/00akpdm49', 'de', 1, 'https://ror.org/00akpdm49 Ludwig Forum für Internationale Kunst'),
(35291, 'https://ror.org/00an0xj57', 'no_lang_code', 1, 'https://ror.org/00an0xj57 Taro Pharmaceuticals (Canada)'),
(35292, 'https://ror.org/00an7dj71', 'no_lang_code', 1, 'https://ror.org/00an7dj71 Wickman Spacecraft & Propulsion Company (United States)'),
(35293, 'https://ror.org/00aphdz18', 'no_lang_code', 1, 'https://ror.org/00aphdz18 Morgan Stanley (United States)'),
(35294, 'https://ror.org/00asd2k77', 'no_lang_code', 1, 'https://ror.org/00asd2k77 Comsol (United States)'),
(35295, 'https://ror.org/00at1a685', 'no_lang_code', 1, 'https://ror.org/00at1a685 Poseidon (Norway)'),
(35296, 'https://ror.org/00atz9x05', 'no', 1, 'https://ror.org/00atz9x05 Cultura Bank'),
(35297, 'https://ror.org/00aw48305', 'en', 1, 'https://ror.org/00aw48305 Sri Venkateswara Veterinary University ą°¶ą±ą°°ą±€ ą°µą±‡ą°‚ą°•ą°Ÿą±‡ą°¶ą±ą°µą°° ą°Ŗą°¶ą±ą°µą±ˆą°¦ą±ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚, తిరుపతి'),
(35298, 'https://ror.org/00awmjf06', 'no_lang_code', 1, 'https://ror.org/00awmjf06 Vibhavadi Hospital'),
(35299, 'https://ror.org/00awpxt48', 'no_lang_code', 1, 'https://ror.org/00awpxt48 Applica Test & Certification (Norway)'),
(35300, 'https://ror.org/00aycwa77', 'no_lang_code', 1, 'https://ror.org/00aycwa77 Fibraforte (Brazil)'),
(35301, 'https://ror.org/00azt0581', 'no_lang_code', 1, 'https://ror.org/00azt0581 BT Signaal (Norway)'),
(35302, 'https://ror.org/00b0jsn50', 'en', 1, 'https://ror.org/00b0jsn50 Cape Breton Regional Hospital'),
(35303, 'https://ror.org/00b0t5r83', 'de', 1, 'https://ror.org/00b0t5r83 Kunst- und Museumsbibliothek der Stadt Kƶln'),
(35304, 'https://ror.org/00b0x7350', 'no_lang_code', 1, 'https://ror.org/00b0x7350 Igmat (Slovenia)'),
(35305, 'https://ror.org/00b1cv365', 'no_lang_code', 1, 'https://ror.org/00b1cv365 GrĆønt Punkt Norge (Norway)'),
(35306, 'https://ror.org/00b26s419', 'en', 1, 'https://ror.org/00b26s419 Providence Milwaukie Hospital'),
(35307, 'https://ror.org/00b2b8c41', 'en', 1, 'https://ror.org/00b2b8c41 Hospital Kajang Kajang Hospital'),
(35308, 'https://ror.org/00b2xnk27', 'en', 1, 'https://ror.org/00b2xnk27 Lviv City Children''s Hospital'),
(35309, 'https://ror.org/00b4pqy74', 'no_lang_code', 1, 'https://ror.org/00b4pqy74 Military Communication Works No 2 (Poland)'),
(35310, 'https://ror.org/00b6j6x40', 'en', 1, 'https://ror.org/00b6j6x40 International Psychoanalytic University Berlin'),
(35311, 'https://ror.org/00b9tfp03', 'pt', 1, 'https://ror.org/00b9tfp03 Assembleia Legislativa de SĆ£o Paulo'),
(35312, 'https://ror.org/00bckke66', 'pt', 1, 'https://ror.org/00bckke66 Associação dos Floricultores da Região da Via Dutra'),
(35313, 'https://ror.org/00bcxky47', 'no_lang_code', 1, 'https://ror.org/00bcxky47 Scale Protection (Norway)'),
(35314, 'https://ror.org/00bdnn422', 'no_lang_code', 1, 'https://ror.org/00bdnn422 Seatrans (Norway)'),
(35315, 'https://ror.org/00bdqv395', 'en', 1, 'https://ror.org/00bdqv395 District Headquarters Hospital Battagram Ł…Ų±Ś©Ų²ŪŒ ضلع ہسپتال بٹگرام'),
(35316, 'https://ror.org/00be2mx71', 'no_lang_code', 1, 'https://ror.org/00be2mx71 Gorenjska Predilnica (Slovenia)'),
(35317, 'https://ror.org/00bfqf394', 'no', 1, 'https://ror.org/00bfqf394 Karasjok Kommune'),
(35318, 'https://ror.org/00bg5ds86', 'no_lang_code', 1, 'https://ror.org/00bg5ds86 JointBiomed (Norway)'),
(35319, 'https://ror.org/00bj5yr20', 'no_lang_code', 1, 'https://ror.org/00bj5yr20 Mesko (Poland)'),
(35320, 'https://ror.org/00bkc1729', 'en', 1, 'https://ror.org/00bkc1729 Ministry of Planning, Budget and Management Ministério do Planejamento, Orçamento, e Gestão'),
(35321, 'https://ror.org/00bkgf580', 'pt', 1, 'https://ror.org/00bkgf580 Fundação de Apoio à Universidade Federal de São Paulo'),
(35322, 'https://ror.org/00bm58p15', 'en', 1, 'https://ror.org/00bm58p15 Santa Ynez Valley Cottage Hospital'),
(35323, 'https://ror.org/00bmjpn60', 'no_lang_code', 1, 'https://ror.org/00bmjpn60 Bandwidth10 (United States)'),
(35324, 'https://ror.org/00bneyt76', 'en', 1, 'https://ror.org/00bneyt76 Raiganj University'),
(35325, 'https://ror.org/00bpk6053', 'en', 1, 'https://ror.org/00bpk6053 Orentreich Foundation for the Advancement of Science'),
(35326, 'https://ror.org/00bpta863', 'de', 1, 'https://ror.org/00bpta863 Leibniz-Zentrum für Literatur- und Kulturforschung'),
(35327, 'https://ror.org/00brmyn57', 'en', 1, 'https://ror.org/00brmyn57 Xinhui People''s Hospital'),
(35328, 'https://ror.org/00bsg1308', 'no_lang_code', 1, 'https://ror.org/00bsg1308 Seram Coatings (Norway)'),
(35329, 'https://ror.org/00bxnjh68', 'no_lang_code', 1, 'https://ror.org/00bxnjh68 Hunton Fiber (Norway)'),
(35330, 'https://ror.org/00by0d563', 'no_lang_code', 1, 'https://ror.org/00by0d563 RPR Technologies (Norway)'),
(35331, 'https://ror.org/00by76g53', 'no_lang_code', 1, 'https://ror.org/00by76g53 Fish Pool (Norway)'),
(35332, 'https://ror.org/00bzyh805', 'no_lang_code', 1, 'https://ror.org/00bzyh805 Dinamo Networks (Brazil)'),
(35333, 'https://ror.org/00c0xnf10', 'en', 1, 'https://ror.org/00c0xnf10 Ahmed Bin Mohammed Military College'),
(35334, 'https://ror.org/00c1cxt77', 'no_lang_code', 1, 'https://ror.org/00c1cxt77 Industry Media Group (Norway)'),
(35335, 'https://ror.org/00c2cek40', 'no_lang_code', 1, 'https://ror.org/00c2cek40 Betonmast (Norway)'),
(35336, 'https://ror.org/00c2s7991', 'no_lang_code', 1, 'https://ror.org/00c2s7991 Glommen Skog (Norway)'),
(35337, 'https://ror.org/00c3hyn70', 'no_lang_code', 1, 'https://ror.org/00c3hyn70 Robot Aviation (Norway)'),
(35338, 'https://ror.org/00c3nj152', 'no_lang_code', 1, 'https://ror.org/00c3nj152 Sea Urchin Farm (Norway)'),
(35339, 'https://ror.org/00c652853', 'no_lang_code', 1, 'https://ror.org/00c652853 Data Respons (Norway)'),
(35340, 'https://ror.org/00c6b0p07', 'pt', 1, 'https://ror.org/00c6b0p07 Instituto Internacional de Ciencias Sociais'),
(35341, 'https://ror.org/00c6b0t92', 'no_lang_code', 1, 'https://ror.org/00c6b0t92 Autocomp Management (Poland)'),
(35342, 'https://ror.org/00c8gax70', 'en', 1, 'https://ror.org/00c8gax70 Queen Elizabeth II Jubilee Hospital'),
(35343, 'https://ror.org/00c92tc34', 'no_lang_code', 1, 'https://ror.org/00c92tc34 Viking Development Group (Norway)'),
(35344, 'https://ror.org/00c99c668', 'en', 1, 'https://ror.org/00c99c668 Akershus County Council'),
(35345, 'https://ror.org/00c9dk124', 'no_lang_code', 1, 'https://ror.org/00c9dk124 Forskning.no (Norway)'),
(35346, 'https://ror.org/00ca9p538', 'es', 1, 'https://ror.org/00ca9p538 Instituto Tecnológico de Querétaro Technological Institute of Querétaro'),
(35347, 'https://ror.org/00caaxe50', 'no_lang_code', 1, 'https://ror.org/00caaxe50 Idex (Norway)'),
(35348, 'https://ror.org/00cadpz88', 'no_lang_code', 1, 'https://ror.org/00cadpz88 Enigma Systemy Ochrony Informacji (Poland)'),
(35349, 'https://ror.org/00cafag88', 'no_lang_code', 1, 'https://ror.org/00cafag88 Vitex (Brazil)'),
(35350, 'https://ror.org/00cb94380', 'no', 1, 'https://ror.org/00cb94380 Valnesfjord Helsesportssenter'),
(35351, 'https://ror.org/00ccgr484', 'pt', 1, 'https://ror.org/00ccgr484 Real Hospital PortuguĆŖs'),
(35352, 'https://ror.org/00cd60776', 'no_lang_code', 1, 'https://ror.org/00cd60776 Animaze Technology (Norway)'),
(35353, 'https://ror.org/00cdxfz76', 'en', 1, 'https://ror.org/00cdxfz76 Brattleboro Memorial Hospital'),
(35354, 'https://ror.org/00cgmd914', 'no_lang_code', 1, 'https://ror.org/00cgmd914 Siemens (Norway)'),
(35355, 'https://ror.org/00chm8v09', 'pt', 1, 'https://ror.org/00chm8v09 Departamento Nacional de Produção Mineral'),
(35356, 'https://ror.org/00cj6df44', 'en', 1, 'https://ror.org/00cj6df44 Cloete Joubert Hospital'),
(35357, 'https://ror.org/00cm1b035', 'no_lang_code', 1, 'https://ror.org/00cm1b035 Prombiom Tecnologia (Brazil)'),
(35358, 'https://ror.org/00cm8fy76', 'en', 1, 'https://ror.org/00cm8fy76 Institute of Mediterranean and Oriental Cultures Instytut Kultur Śródziemnomorskich i Orientalnych Polskiej Akademii Nauk'),
(35359, 'https://ror.org/00cn03n83', 'en', 1, 'https://ror.org/00cn03n83 Technology and Engineering Center for Space Utilization äø­å›½ē§‘å­¦é™¢ē©ŗé—“åŗ”ē”Øå·„ēØ‹äøŽęŠ€ęœÆäø­åæƒ'),
(35360, 'https://ror.org/00cndk772', 'no_lang_code', 1, 'https://ror.org/00cndk772 Icon (United Kingdom)'),
(35361, 'https://ror.org/00cpsd622', 'en', 1, 'https://ror.org/00cpsd622 Lilly Endowment'),
(35362, 'https://ror.org/00csq2k70', 'en', 1, 'https://ror.org/00csq2k70 Fraunhofer Institute for High-Speed Dynamics, Ernst-Mach-Institut Fraunhofer-Institut für Kurzzeitdynamik, Ernst-Mach-Institut'),
(35363, 'https://ror.org/00cv5j742', 'no_lang_code', 1, 'https://ror.org/00cv5j742 Fabryka Armatur Swarzędz (Poland)'),
(35364, 'https://ror.org/00cw5w418', 'no_lang_code', 1, 'https://ror.org/00cw5w418 Eletro MƔquinas ComƩrcio e RepresentaƧƵes (Brazil)'),
(35365, 'https://ror.org/00cwj5e90', 'en', 1, 'https://ror.org/00cwj5e90 Government Royapettah Hospital'),
(35366, 'https://ror.org/00cwj5j78', 'no_lang_code', 1, 'https://ror.org/00cwj5j78 Tele-Com (Norway)'),
(35367, 'https://ror.org/00cx39g50', 'no_lang_code', 1, 'https://ror.org/00cx39g50 Isola (Norway)'),
(35368, 'https://ror.org/00cy3ar81', 'en', 1, 'https://ror.org/00cy3ar81 People’s Hospital of Wenshan Prefecture'),
(35369, 'https://ror.org/00d066w75', 'en', 1, 'https://ror.org/00d066w75 Brazilian Internet Steering Committee ComitĆŖ Gestor da Internet no Brasil'),
(35370, 'https://ror.org/00d2wxy31', 'en', 1, 'https://ror.org/00d2wxy31 Jinan Maternity And Care Hospital'),
(35371, 'https://ror.org/00d3ws365', 'en', 1, 'https://ror.org/00d3ws365 Aga Khan Hospital for Women'),
(35372, 'https://ror.org/00d415h66', 'en', 1, 'https://ror.org/00d415h66 Palm Springs General Hospital'),
(35373, 'https://ror.org/00d5dra59', 'no_lang_code', 1, 'https://ror.org/00d5dra59 KenBIT (Poland)'),
(35374, 'https://ror.org/00d5e0a67', 'en', 1, 'https://ror.org/00d5e0a67 Devon General Hospital'),
(35375, 'https://ror.org/00d5qfz16', 'en', 1, 'https://ror.org/00d5qfz16 Norwegian Institute of Wood Technology'),
(35376, 'https://ror.org/00d64xh03', 'no_lang_code', 1, 'https://ror.org/00d64xh03 Maxeta (Norway)'),
(35377, 'https://ror.org/00d65rw94', 'no_lang_code', 1, 'https://ror.org/00d65rw94 Cimos (Slovenia)'),
(35378, 'https://ror.org/00dasvg19', 'no_lang_code', 1, 'https://ror.org/00dasvg19 Offshore Sensing (Norway)'),
(35379, 'https://ror.org/00dbebs66', 'pt', 1, 'https://ror.org/00dbebs66 Sociedade Brasileira de Diabetes'),
(35380, 'https://ror.org/00dbw6487', 'no_lang_code', 1, 'https://ror.org/00dbw6487 Damel (Poland)'),
(35381, 'https://ror.org/00dc48k09', 'en', 1, 'https://ror.org/00dc48k09 Sri Narayani Hospital & Research Centre'),
(35382, 'https://ror.org/00dcw5152', 'no_lang_code', 1, 'https://ror.org/00dcw5152 Teddy TV (Norway)'),
(35383, 'https://ror.org/00deak765', 'no_lang_code', 1, 'https://ror.org/00deak765 Veidekke (Norway)'),
(35384, 'https://ror.org/00dew5745', 'no_lang_code', 1, 'https://ror.org/00dew5745 Fjordforsk (Norway)'),
(35385, 'https://ror.org/00df11c89', 'no_lang_code', 1, 'https://ror.org/00df11c89 Bach Technology (Norway)'),
(35386, 'https://ror.org/00dftxz84', 'no_lang_code', 1, 'https://ror.org/00dftxz84 KFB Polska (Poland)'),
(35387, 'https://ror.org/00dga6q15', 'en', 1, 'https://ror.org/00dga6q15 Dalian Jinzhou First People''s Hospital'),
(35388, 'https://ror.org/00dhzdc05', 'no_lang_code', 1, 'https://ror.org/00dhzdc05 Omega Media (Norway)'),
(35389, 'https://ror.org/00djq1r46', 'no_lang_code', 1, 'https://ror.org/00djq1r46 Optibrium (United Kingdom)'),
(35390, 'https://ror.org/00djr0052', 'no_lang_code', 1, 'https://ror.org/00djr0052 Arkitektskap (Norway)'),
(35391, 'https://ror.org/00dn6p145', 'no_lang_code', 1, 'https://ror.org/00dn6p145 kopex (Poland)'),
(35392, 'https://ror.org/00dn9yd16', 'no_lang_code', 1, 'https://ror.org/00dn9yd16 Fmaiis (Brazil)'),
(35393, 'https://ror.org/00dpc3e39', 'en', 1, 'https://ror.org/00dpc3e39 American Nonsmokers'' Rights Foundation'),
(35394, 'https://ror.org/00dpztj76', 'en', 1, 'https://ror.org/00dpztj76 Institute of Cancer Research'),
(35395, 'https://ror.org/00dpzx715', 'en', 1, 'https://ror.org/00dpzx715 Suleyman Demirel University Research and Education Hospital'),
(35396, 'https://ror.org/00dqbnh70', 'no_lang_code', 1, 'https://ror.org/00dqbnh70 Goap (Slovenia)'),
(35397, 'https://ror.org/00drj4p25', 'no_lang_code', 1, 'https://ror.org/00drj4p25 Optopol Technology (Slovenia)'),
(35398, 'https://ror.org/00dxw3680', 'no_lang_code', 1, 'https://ror.org/00dxw3680 Move About (Norway)'),
(35399, 'https://ror.org/00e0f3814', 'no_lang_code', 1, 'https://ror.org/00e0f3814 Awat (Poland)'),
(35400, 'https://ror.org/00e252407', 'en', 1, 'https://ror.org/00e252407 Oasis Hospital'),
(35401, 'https://ror.org/00e2n6h96', 'en', 1, 'https://ror.org/00e2n6h96 Walla Walla General Hospital'),
(35402, 'https://ror.org/00e42ba10', 'en', 1, 'https://ror.org/00e42ba10 Qiongtai Teachers College'),
(35403, 'https://ror.org/00e507q54', 'no_lang_code', 1, 'https://ror.org/00e507q54 Electric Dreams (Brazil)'),
(35404, 'https://ror.org/00e6cpy98', 'no_lang_code', 1, 'https://ror.org/00e6cpy98 Algaetech (Norway)'),
(35405, 'https://ror.org/00e6njw97', 'no_lang_code', 1, 'https://ror.org/00e6njw97 SunSense (Norway)'),
(35406, 'https://ror.org/00e6xyd22', 'no_lang_code', 1, 'https://ror.org/00e6xyd22 TideTec (Norway)'),
(35407, 'https://ror.org/00e7r7m66', 'en', 1, 'https://ror.org/00e7r7m66 Max Super Speciality Hospital'),
(35408, 'https://ror.org/00e99cv66', 'no_lang_code', 1, 'https://ror.org/00e99cv66 Centro Hospitalar Conde de SĆ£o JanuĆ”rio Hospital Conde S. JanuĆ”rio ä»ä¼Æēˆµē»¼åˆåŒ»é™¢'),
(35409, 'https://ror.org/00e9cav63', 'en', 1, 'https://ror.org/00e9cav63 Al-Qasemi Academic College of Education'),
(35410, 'https://ror.org/00e9gka57', 'no_lang_code', 1, 'https://ror.org/00e9gka57 Budimex (Poland)'),
(35411, 'https://ror.org/00e9nf534', 'en', 1, 'https://ror.org/00e9nf534 Lake Taylor Transitional Care Hospital'),
(35412, 'https://ror.org/00ebdgr24', 'en', 1, 'https://ror.org/00ebdgr24 Chengdu Third People''s Hospital ęˆéƒ½åø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(35413, 'https://ror.org/00ebt7309', 'pt', 1, 'https://ror.org/00ebt7309 Pro CrianƧa Cardƭaca'),
(35414, 'https://ror.org/00ec1q452', 'no_lang_code', 1, 'https://ror.org/00ec1q452 Conexus (Norway)'),
(35415, 'https://ror.org/00ecchs44', 'de', 1, 'https://ror.org/00ecchs44 Institut für Nanophotonik'),
(35416, 'https://ror.org/00eeh3p16', 'en', 1, 'https://ror.org/00eeh3p16 Eagle Ridge Hospital'),
(35417, 'https://ror.org/00egat183', 'de', 1, 'https://ror.org/00egat183 Gesellschaft zur Fƶrderung der Naturwissenschaftlich-Technischen Forschung'),
(35418, 'https://ror.org/00ehthc25', 'no_lang_code', 1, 'https://ror.org/00ehthc25 Didai Tecnologia'),
(35419, 'https://ror.org/00ej99c12', 'no_lang_code', 1, 'https://ror.org/00ej99c12 Centre for Research and Development in Telecommunications (Brazil)'),
(35420, 'https://ror.org/00emgcm32', 'no_lang_code', 1, 'https://ror.org/00emgcm32 Vallvi (Norway)'),
(35421, 'https://ror.org/00eswsq11', 'en', 1, 'https://ror.org/00eswsq11 Rawson-Neal Hospital'),
(35422, 'https://ror.org/00etk3t37', 'no_lang_code', 1, 'https://ror.org/00etk3t37 Norske Skog (Norway) Norwegian Forest Industries'),
(35423, 'https://ror.org/00evszt20', 'en', 1, 'https://ror.org/00evszt20 Ford Hospital and Research Centre'),
(35424, 'https://ror.org/00ex4he60', 'en', 1, 'https://ror.org/00ex4he60 Virtual High School'),
(35425, 'https://ror.org/00f041n88', 'en', 1, 'https://ror.org/00f041n88 Mbarara National Referral Hospital'),
(35426, 'https://ror.org/00f0wme23', 'en', 1, 'https://ror.org/00f0wme23 Livingstone Hospital'),
(35427, 'https://ror.org/00f1jfy92', 'no_lang_code', 1, 'https://ror.org/00f1jfy92 DOF Subsea (Norway)'),
(35428, 'https://ror.org/00f37g133', 'no', 1, 'https://ror.org/00f37g133 Norsk Matematisk Forening'),
(35429, 'https://ror.org/00f4pfk27', 'pt', 1, 'https://ror.org/00f4pfk27 Instituto Penido Burnier'),
(35430, 'https://ror.org/00f4x2j47', 'no_lang_code', 1, 'https://ror.org/00f4x2j47 Korporacja Wschód (Poland)'),
(35431, 'https://ror.org/00f58mx93', 'en', 1, 'https://ror.org/00f58mx93 Suzhou Institute of Biomedical Engineering and Technology äø­å›½ē§‘å­¦é™¢č‹å·žē”Ÿē‰©åŒ»å­¦å·„ēØ‹ęŠ€ęœÆē ”ē©¶ę‰€'),
(35432, 'https://ror.org/00f656h73', 'no_lang_code', 1, 'https://ror.org/00f656h73 Asian Star Anchor Chain (China)'),
(35433, 'https://ror.org/00f659030', 'en', 1, 'https://ror.org/00f659030 Bucks County Community College'),
(35434, 'https://ror.org/00f72x493', 'en', 1, 'https://ror.org/00f72x493 University College of Applied Science Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(35435, 'https://ror.org/00f89q571', 'no_lang_code', 1, 'https://ror.org/00f89q571 Elsewedy Electric (Slovenia)'),
(35436, 'https://ror.org/00f8nat88', 'no_lang_code', 1, 'https://ror.org/00f8nat88 Tekstina (Slovenia)'),
(35437, 'https://ror.org/00f9jfw45', 'en', 1, 'https://ror.org/00f9jfw45 Tamale Teaching Hospital'),
(35438, 'https://ror.org/00fbxbf55', 'en', 1, 'https://ror.org/00fbxbf55 Manjara Ayurvedic Medical College and Hospital'),
(35439, 'https://ror.org/00fedxs81', 'no_lang_code', 1, 'https://ror.org/00fedxs81 LxRay (Japan)'),
(35440, 'https://ror.org/00fg16924', 'no_lang_code', 1, 'https://ror.org/00fg16924 Zomega Terahertz (United States)'),
(35441, 'https://ror.org/00fj2g686', 'no_lang_code', 1, 'https://ror.org/00fj2g686 Kontali (Norway)'),
(35442, 'https://ror.org/00fmvp630', 'en', 1, 'https://ror.org/00fmvp630 OspidƩal Naomh Conaill St. Conal''s Psychiatric Hospital'),
(35443, 'https://ror.org/00fq5tf47', 'en', 1, 'https://ror.org/00fq5tf47 Geodetic Institute of Slovenia'),
(35444, 'https://ror.org/00frd8c57', 'no_lang_code', 1, 'https://ror.org/00frd8c57 Techglass (Poland)'),
(35445, 'https://ror.org/00fs3p617', 'en', 1, 'https://ror.org/00fs3p617 Norwegian Institute of Journalism'),
(35446, 'https://ror.org/00fs6w428', 'no_lang_code', 1, 'https://ror.org/00fs6w428 MazeMap (Norway)'),
(35447, 'https://ror.org/00fst5z79', 'no', 1, 'https://ror.org/00fst5z79 LofotrƄdet'),
(35448, 'https://ror.org/00fsyr319', 'pt', 1, 'https://ror.org/00fsyr319 Pia Sociedade de SĆ£o Paulo'),
(35449, 'https://ror.org/00fts7a69', 'en', 1, 'https://ror.org/00fts7a69 Zhangqiu City People''s Hospital ē« äø˜åŒŗäŗŗę°‘åŒ»é™¢'),
(35450, 'https://ror.org/00fvw4t71', 'sl', 1, 'https://ror.org/00fvw4t71 Kmetijsko Gozdarski Zavod Nova Gorica'),
(35451, 'https://ror.org/00fw3pm40', 'no_lang_code', 1, 'https://ror.org/00fw3pm40 Betta Tecnologia (Brazil)'),
(35452, 'https://ror.org/00fweme20', 'en', 1, 'https://ror.org/00fweme20 Chinese General Hospital College of Nursing and Liberal Arts'),
(35453, 'https://ror.org/00fwhek95', 'en', 1, 'https://ror.org/00fwhek95 Laboratory of Molecular Genetics'),
(35454, 'https://ror.org/00fx97040', 'no_lang_code', 1, 'https://ror.org/00fx97040 Ablevision (Brazil)'),
(35455, 'https://ror.org/00fxawc57', 'no_lang_code', 1, 'https://ror.org/00fxawc57 Visual Solutions (Norway)'),
(35456, 'https://ror.org/00fxmev27', 'no_lang_code', 1, 'https://ror.org/00fxmev27 Axdev Group (Canada)'),
(35457, 'https://ror.org/00g01gj95', 'de', 1, 'https://ror.org/00g01gj95 Marienhospital Stuttgart'),
(35458, 'https://ror.org/00g1f7p91', 'en', 1, 'https://ror.org/00g1f7p91 Weisman Art Museum'),
(35459, 'https://ror.org/00g212534', 'tr', 1, 'https://ror.org/00g212534 Hitit Üniversitesi Ƈorum Eğitim ve Araştırma Hastanesi'),
(35460, 'https://ror.org/00g3h5036', 'no_lang_code', 1, 'https://ror.org/00g3h5036 Reelwell (Norway)'),
(35461, 'https://ror.org/00g3szh73', 'no_lang_code', 1, 'https://ror.org/00g3szh73 Ecco Fibers (Brazil) Ecco Fibras Ɠpticas e Dispositivos'),
(35462, 'https://ror.org/00g5afz31', 'no_lang_code', 1, 'https://ror.org/00g5afz31 Dynatec (Norway)'),
(35463, 'https://ror.org/00g5hfp88', 'en', 1, 'https://ror.org/00g5hfp88 Columbia Theological Seminary'),
(35464, 'https://ror.org/00g7qk458', 'no_lang_code', 1, 'https://ror.org/00g7qk458 Daihen Varstroj (Slovenia)'),
(35465, 'https://ror.org/00g89bg08', 'en', 1, 'https://ror.org/00g89bg08 Serdang Hospital'),
(35466, 'https://ror.org/00g8k7g33', 'en', 1, 'https://ror.org/00g8k7g33 Norwegian Academy of Science and Letters'),
(35467, 'https://ror.org/00g9q3p96', 'no_lang_code', 1, 'https://ror.org/00g9q3p96 JHJ (Poland)'),
(35468, 'https://ror.org/00gar9b27', 'en', 1, 'https://ror.org/00gar9b27 NorStella Foundation'),
(35469, 'https://ror.org/00gbgk256', 'en', 1, 'https://ror.org/00gbgk256 MaineGeneral Medical Center'),
(35470, 'https://ror.org/00gbks067', 'en', 1, 'https://ror.org/00gbks067 Norwegian Forestry Society'),
(35471, 'https://ror.org/00gbs4x54', 'en', 1, 'https://ror.org/00gbs4x54 Institute for the Languages of Finland'),
(35472, 'https://ror.org/00gbsxt88', 'no_lang_code', 1, 'https://ror.org/00gbsxt88 Norsk Gjenvinning (Norway)'),
(35473, 'https://ror.org/00gc3ww13', 'no_lang_code', 1, 'https://ror.org/00gc3ww13 Human Factors Solutions (Norway)'),
(35474, 'https://ror.org/00gdm3q19', 'en', 1, 'https://ror.org/00gdm3q19 Brazilian Dental Materials Group Grupo Brasileiro de Materiais DentƔrios'),
(35475, 'https://ror.org/00ggs5315', 'en', 1, 'https://ror.org/00ggs5315 Woolmanhill Hospital'),
(35476, 'https://ror.org/00ggx8446', 'no_lang_code', 1, 'https://ror.org/00ggx8446 Bergene Holm (Norway)'),
(35477, 'https://ror.org/00gh97247', 'en', 1, 'https://ror.org/00gh97247 Mighty Penguins Sled Hockey'),
(35478, 'https://ror.org/00gmcpk75', 'no_lang_code', 1, 'https://ror.org/00gmcpk75 Impetro International (Norway)'),
(35479, 'https://ror.org/00gnjv286', 'no_lang_code', 1, 'https://ror.org/00gnjv286 VivID (Norway)'),
(35480, 'https://ror.org/00gpwad22', 'en', 1, 'https://ror.org/00gpwad22 Samaritan North Lincoln Hospital'),
(35481, 'https://ror.org/00gq58w69', 'en', 1, 'https://ror.org/00gq58w69 Brazilian Naval School Escola Naval'),
(35482, 'https://ror.org/00gqs6w28', 'no_lang_code', 1, 'https://ror.org/00gqs6w28 Taxus (Poland)'),
(35483, 'https://ror.org/00grb5v24', 'no_lang_code', 1, 'https://ror.org/00grb5v24 Elliptic Labs (Norway)'),
(35484, 'https://ror.org/00grekx31', 'en', 1, 'https://ror.org/00grekx31 Synod Hospital'),
(35485, 'https://ror.org/00gwbbj79', 'no_lang_code', 1, 'https://ror.org/00gwbbj79 Xepto (Norway)'),
(35486, 'https://ror.org/00gwqq432', 'en', 1, 'https://ror.org/00gwqq432 Sherman Oaks Hospital'),
(35487, 'https://ror.org/00gxg1c10', 'en', 1, 'https://ror.org/00gxg1c10 St. Helena Hospital'),
(35488, 'https://ror.org/00gzhxp51', 'no_lang_code', 1, 'https://ror.org/00gzhxp51 Optimeering (Norway)'),
(35489, 'https://ror.org/00h2mxm24', 'en', 1, 'https://ror.org/00h2mxm24 Paras Hospitals'),
(35490, 'https://ror.org/00h600x29', 'no_lang_code', 1, 'https://ror.org/00h600x29 Seadrill (Norway)'),
(35491, 'https://ror.org/00h6n4889', 'en', 1, 'https://ror.org/00h6n4889 Aviation Valley'),
(35492, 'https://ror.org/00h85rj63', 'no_lang_code', 1, 'https://ror.org/00h85rj63 Ryoka Systems (Japan)'),
(35493, 'https://ror.org/00h9cwn45', 'en', 1, 'https://ror.org/00h9cwn45 Computer Applications and Quantitative Methods in Archaeology'),
(35494, 'https://ror.org/00ha5jx35', 'en', 1, 'https://ror.org/00ha5jx35 Haikou City People''s Hospital'),
(35495, 'https://ror.org/00hb1zy68', 'en', 1, 'https://ror.org/00hb1zy68 Swedish Chemical Society'),
(35496, 'https://ror.org/00hdm6c37', 'no_lang_code', 1, 'https://ror.org/00hdm6c37 Shenzhen Weiguang Biological Products (China)'),
(35497, 'https://ror.org/00heqzt73', 'pt', 1, 'https://ror.org/00heqzt73 Arquivo Histórico Judaico Brasileiro'),
(35498, 'https://ror.org/00het1s45', 'en', 1, 'https://ror.org/00het1s45 Forsyth Technical Community College'),
(35499, 'https://ror.org/00hgq1a05', 'en', 1, 'https://ror.org/00hgq1a05 Arctic Monitoring And Assessment Programme'),
(35500, 'https://ror.org/00hkhkg72', 'no_lang_code', 1, 'https://ror.org/00hkhkg72 ZEM (Norway)'),
(35501, 'https://ror.org/00hn0mq04', 'en', 1, 'https://ror.org/00hn0mq04 Daelim University College ėŒ€ė¦¼ėŒ€ķ•™źµ'),
(35502, 'https://ror.org/00hpvb303', 'no_lang_code', 1, 'https://ror.org/00hpvb303 Leiv Eiriksson Nyskaping (Norway)'),
(35503, 'https://ror.org/00hs0rb66', 'no_lang_code', 1, 'https://ror.org/00hs0rb66 Torghatten (Norway)'),
(35504, 'https://ror.org/00hscp190', 'no_lang_code', 1, 'https://ror.org/00hscp190 Capia (Norway)'),
(35505, 'https://ror.org/00hvh1x59', 'en', 1, 'https://ror.org/00hvh1x59 St John of God Subiaco Hospital'),
(35506, 'https://ror.org/00hwjxp97', 'no_lang_code', 1, 'https://ror.org/00hwjxp97 Pesa (Poland)'),
(35507, 'https://ror.org/00hwt9s33', 'no_lang_code', 1, 'https://ror.org/00hwt9s33 St Francis’ Hospital'),
(35508, 'https://ror.org/00hzhrq25', 'no_lang_code', 1, 'https://ror.org/00hzhrq25 Enoco (Norway)'),
(35509, 'https://ror.org/00j0keq36', 'no_lang_code', 1, 'https://ror.org/00j0keq36 Oryza (Japan)'),
(35510, 'https://ror.org/00j3kev89', 'no_lang_code', 1, 'https://ror.org/00j3kev89 Sotera Wireless (United States)'),
(35511, 'https://ror.org/00j3ph269', 'no_lang_code', 1, 'https://ror.org/00j3ph269 International technology Alliance (Norway)'),
(35512, 'https://ror.org/00j3qc684', 'en', 1, 'https://ror.org/00j3qc684 Ansal University'),
(35513, 'https://ror.org/00j4fqt27', 'en', 1, 'https://ror.org/00j4fqt27 National Neurosciences Centre'),
(35514, 'https://ror.org/00j582x21', 'no_lang_code', 1, 'https://ror.org/00j582x21 Noryards (Norway)'),
(35515, 'https://ror.org/00j8epd55', 'fr', 1, 'https://ror.org/00j8epd55 CEA Gramat'),
(35516, 'https://ror.org/00jc39915', 'no_lang_code', 1, 'https://ror.org/00jc39915 Revolugenix (Brazil)'),
(35517, 'https://ror.org/00jhc4f65', 'no_lang_code', 1, 'https://ror.org/00jhc4f65 Pivotal (Canada)'),
(35518, 'https://ror.org/00jhh5t96', 'en', 1, 'https://ror.org/00jhh5t96 Institute of Environmental Biology and Biotechnology L’Institut de Biologie Environnementale et Biotechnologie'),
(35519, 'https://ror.org/00jjwaj46', 'en', 1, 'https://ror.org/00jjwaj46 Dr George Mukhari Hospital'),
(35520, 'https://ror.org/00jkcwn82', 'no_lang_code', 1, 'https://ror.org/00jkcwn82 IKM Group (Norway)'),
(35521, 'https://ror.org/00jkecz03', 'en', 1, 'https://ror.org/00jkecz03 Willingway Hospital'),
(35522, 'https://ror.org/00jkz7z57', 'no_lang_code', 1, 'https://ror.org/00jkz7z57 Fishbones (Norway)'),
(35523, 'https://ror.org/00jm2yd36', 'en', 1, 'https://ror.org/00jm2yd36 Bishop Veterinary Hospital'),
(35524, 'https://ror.org/00jn73068', 'no_lang_code', 1, 'https://ror.org/00jn73068 Fatland (Norway)'),
(35525, 'https://ror.org/00jp1zb22', 'en', 1, 'https://ror.org/00jp1zb22 Defence Metallurgical Research Laboratory'),
(35526, 'https://ror.org/00jqpet07', 'no_lang_code', 1, 'https://ror.org/00jqpet07 Fernandez Hospital'),
(35527, 'https://ror.org/00jrxyr16', 'no_lang_code', 1, 'https://ror.org/00jrxyr16 Santokba Durlabhji Memorial hospital'),
(35528, 'https://ror.org/00jscjq02', 'no_lang_code', 1, 'https://ror.org/00jscjq02 T&G Elektro (Norway)'),
(35529, 'https://ror.org/00jvapg71', 'no_lang_code', 1, 'https://ror.org/00jvapg71 Incon EletrƓnica (Brazil)'),
(35530, 'https://ror.org/00k172x46', 'no_lang_code', 1, 'https://ror.org/00k172x46 Innotech Solar (Norway)'),
(35531, 'https://ror.org/00k3bnk40', 'en', 1, 'https://ror.org/00k3bnk40 Zithulele Hospital'),
(35532, 'https://ror.org/00k3k7m85', 'no_lang_code', 1, 'https://ror.org/00k3k7m85 CrayoNano (Norway)'),
(35533, 'https://ror.org/00k3mkd53', 'no_lang_code', 1, 'https://ror.org/00k3mkd53 Future Subsea (Norway)'),
(35534, 'https://ror.org/00k5ek978', 'no_lang_code', 1, 'https://ror.org/00k5ek978 SmartFactory (Germany) Technologie-Initiative SmartFactory KL'),
(35535, 'https://ror.org/00k5mw791', 'no_lang_code', 1, 'https://ror.org/00k5mw791 Didac (Norway)'),
(35536, 'https://ror.org/00k9r5g94', 'en', 1, 'https://ror.org/00k9r5g94 Technical College System of Georgia'),
(35537, 'https://ror.org/00kazcx49', 'en', 1, 'https://ror.org/00kazcx49 Madenat Alelem University College ŁƒŁ„ŁŠŲ© Ł…ŲÆŁŠŁ†Ų© العلم الجامعة'),
(35538, 'https://ror.org/00keqx598', 'en', 1, 'https://ror.org/00keqx598 Mallow General Hospital OspidƩal GinearƔlta Mhala'),
(35539, 'https://ror.org/00kga6267', 'en', 1, 'https://ror.org/00kga6267 Rift Valley University'),
(35540, 'https://ror.org/00khmgv85', 'no_lang_code', 1, 'https://ror.org/00khmgv85 Fisioatual (Brazil)'),
(35541, 'https://ror.org/00kkxne40', 'en', 1, 'https://ror.org/00kkxne40 Suzhou Kowloon Hospital'),
(35542, 'https://ror.org/00km5bz41', 'no_lang_code', 1, 'https://ror.org/00km5bz41 Casablanca (Brazil)'),
(35543, 'https://ror.org/00kmb9t52', 'no', 1, 'https://ror.org/00kmb9t52 Molde kommune'),
(35544, 'https://ror.org/00kmqf908', 'en', 1, 'https://ror.org/00kmqf908 Christ the King Seminary'),
(35545, 'https://ror.org/00kpjpr15', 'pt', 1, 'https://ror.org/00kpjpr15 Fundação de Ciência, Aplicações e Tecnologia Espaciais'),
(35546, 'https://ror.org/00kpyx284', 'no_lang_code', 1, 'https://ror.org/00kpyx284 Naturbilder (Norway)'),
(35547, 'https://ror.org/00krkjc90', 'no_lang_code', 1, 'https://ror.org/00krkjc90 Hadeland Glassverk (Norway)'),
(35548, 'https://ror.org/00ks2fw34', 'en', 1, 'https://ror.org/00ks2fw34 Norwegian Biotechnology Advisory Board'),
(35549, 'https://ror.org/00kt5tf40', 'en', 1, 'https://ror.org/00kt5tf40 Norwegian Association of Disabled'),
(35550, 'https://ror.org/00kx97841', 'en', 1, 'https://ror.org/00kx97841 Michener Institute'),
(35551, 'https://ror.org/00kxdwc81', 'no_lang_code', 1, 'https://ror.org/00kxdwc81 Tanggangzi hospital'),
(35552, 'https://ror.org/00kxk0k30', 'en', 1, 'https://ror.org/00kxk0k30 Rudolf Steiner University College'),
(35553, 'https://ror.org/00kytsw15', 'en', 1, 'https://ror.org/00kytsw15 West End Hospital'),
(35554, 'https://ror.org/00m1fvd66', 'en', 1, 'https://ror.org/00m1fvd66 Catherine Booth Hospital ą®•ą®¾ą®¤ą®°ą®æą®©ąÆ ą®ŖąÆ‚ą®¤ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ மனை'),
(35555, 'https://ror.org/00m84gg72', 'en', 1, 'https://ror.org/00m84gg72 Central Clinical Hospital No 2 named Semashko Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š‘Š¾Š»ŃŒŠ½ŠøŃ†Š° имени Демашко'),
(35556, 'https://ror.org/00m8pwv45', 'no_lang_code', 1, 'https://ror.org/00m8pwv45 Donka Hospital'),
(35557, 'https://ror.org/00m94xd51', 'no_lang_code', 1, 'https://ror.org/00m94xd51 Thermtech (Norway)'),
(35558, 'https://ror.org/00mb5m706', 'no_lang_code', 1, 'https://ror.org/00mb5m706 Inovamat (Brazil)'),
(35559, 'https://ror.org/00mfpj979', 'no_lang_code', 1, 'https://ror.org/00mfpj979 Dong-A ST (South Korea)'),
(35560, 'https://ror.org/00mfqc035', 'no_lang_code', 1, 'https://ror.org/00mfqc035 AKVA Group (Norway)'),
(35561, 'https://ror.org/00mgq3q11', 'de', 1, 'https://ror.org/00mgq3q11 Unfallkrankenhaus Meidling'),
(35562, 'https://ror.org/00mp05931', 'no_lang_code', 1, 'https://ror.org/00mp05931 Vulcan Wireless (United States)'),
(35563, 'https://ror.org/00mpvas76', 'en', 1, 'https://ror.org/00mpvas76 ƅlesund Hospital'),
(35564, 'https://ror.org/00msr5x28', 'en', 1, 'https://ror.org/00msr5x28 Aut Even Hospital'),
(35565, 'https://ror.org/00mtbts87', 'no_lang_code', 1, 'https://ror.org/00mtbts87 ClanSoft (Brazil)'),
(35566, 'https://ror.org/00mwp9n57', 'en', 1, 'https://ror.org/00mwp9n57 Tower Psychiatric Hospital'),
(35567, 'https://ror.org/00myd9a07', 'en', 1, 'https://ror.org/00myd9a07 Counselling Centre for Children, Adolescents and Parents'),
(35568, 'https://ror.org/00mytnc41', 'no_lang_code', 1, 'https://ror.org/00mytnc41 HEICO (France)'),
(35569, 'https://ror.org/00n002f65', 'no_lang_code', 1, 'https://ror.org/00n002f65 Metal Ravne (Slovenia)'),
(35570, 'https://ror.org/00n08qc60', 'en', 1, 'https://ror.org/00n08qc60 Unciano Colleges and General Hospital'),
(35571, 'https://ror.org/00n0gcp81', 'en', 1, 'https://ror.org/00n0gcp81 Naguru General Hospital'),
(35572, 'https://ror.org/00n12r929', 'no_lang_code', 1, 'https://ror.org/00n12r929 MESH (Norway)'),
(35573, 'https://ror.org/00n17e497', 'no_lang_code', 1, 'https://ror.org/00n17e497 Tecnologia Aplicada Watanabe Watanabe Applied Technology (Brazil)'),
(35574, 'https://ror.org/00n3mcd10', 'de', 1, 'https://ror.org/00n3mcd10 Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen'),
(35575, 'https://ror.org/00n4e0w09', 'no_lang_code', 1, 'https://ror.org/00n4e0w09 ZEG Power (Norway)'),
(35576, 'https://ror.org/00n4vrp79', 'pt', 1, 'https://ror.org/00n4vrp79 Centro de Tecnologia Mineral'),
(35577, 'https://ror.org/00na8v834', 'no_lang_code', 1, 'https://ror.org/00na8v834 SnĆøgg (Norway)'),
(35578, 'https://ror.org/00na98362', 'en', 1, 'https://ror.org/00na98362 Bakersfield Heart Hospital'),
(35579, 'https://ror.org/00nbjph85', 'no_lang_code', 1, 'https://ror.org/00nbjph85 Polish Armaments Group (Poland)'),
(35580, 'https://ror.org/00nexa929', 'no_lang_code', 1, 'https://ror.org/00nexa929 Eidsiva BredbƄnd (Norway)'),
(35581, 'https://ror.org/00nf2y042', 'no_lang_code', 1, 'https://ror.org/00nf2y042 Rindalshytter (Norway)'),
(35582, 'https://ror.org/00nfrej94', 'en', 1, 'https://ror.org/00nfrej94 Norwegian Directorate of Public Construction and Property'),
(35583, 'https://ror.org/00ngrh496', 'en', 1, 'https://ror.org/00ngrh496 Fundação Instituto de Pesquisas EconÓmicas Institute of Economic Research Foundation'),
(35584, 'https://ror.org/00ngt1q87', 'en', 1, 'https://ror.org/00ngt1q87 Biblical Theological Seminary'),
(35585, 'https://ror.org/00njcfy31', 'no_lang_code', 1, 'https://ror.org/00njcfy31 Standard Bio (Norway)'),
(35586, 'https://ror.org/00nm2s695', 'pt', 1, 'https://ror.org/00nm2s695 Associação Nacional de Pós-Graduação e Pesquisa em Educação'),
(35587, 'https://ror.org/00nmk1536', 'no_lang_code', 1, 'https://ror.org/00nmk1536 Avinor (Norway)'),
(35588, 'https://ror.org/00nnsna93', 'no_lang_code', 1, 'https://ror.org/00nnsna93 Camgian Microsystems (United States)'),
(35589, 'https://ror.org/00nnw5g58', 'no_lang_code', 1, 'https://ror.org/00nnw5g58 Graminor (Norway)'),
(35590, 'https://ror.org/00np0kv70', 'en', 1, 'https://ror.org/00np0kv70 Mease Dunedin Hospital'),
(35591, 'https://ror.org/00nqqgg17', 'en', 1, 'https://ror.org/00nqqgg17 National Security Authority'),
(35592, 'https://ror.org/00nr0z368', 'no_lang_code', 1, 'https://ror.org/00nr0z368 Shaklee (United States)'),
(35593, 'https://ror.org/00nrggp23', 'de', 1, 'https://ror.org/00nrggp23 Klinikum Vest'),
(35594, 'https://ror.org/00nsej663', 'pt', 1, 'https://ror.org/00nsej663 Laboratório Bacchi'),
(35595, 'https://ror.org/00nsveh54', 'no_lang_code', 1, 'https://ror.org/00nsveh54 Corentium (Norway)'),
(35596, 'https://ror.org/00nwwb878', 'en', 1, 'https://ror.org/00nwwb878 Littleton Adventist Hospital'),
(35597, 'https://ror.org/00nx39s55', 'en', 1, 'https://ror.org/00nx39s55 Georg Kolbe Museum'),
(35598, 'https://ror.org/00nynxj47', 'no_lang_code', 1, 'https://ror.org/00nynxj47 Faveo (Norway)'),
(35599, 'https://ror.org/00p15ac84', 'no_lang_code', 1, 'https://ror.org/00p15ac84 Davvi Girji (Norway)'),
(35600, 'https://ror.org/00p1s4075', 'en', 1, 'https://ror.org/00p1s4075 Institut für Arbeitsrecht und Arbeitsbeziehungen in der Europäischen Union Institute for Labour Law and Industrial Relations in the European Union'),
(35601, 'https://ror.org/00p1y4e96', 'no_lang_code', 1, 'https://ror.org/00p1y4e96 Itera - Inovação e Desenvolvimento Tecnológico (Brazil)'),
(35602, 'https://ror.org/00p43ne90', 'en', 1, 'https://ror.org/00p43ne90 Mahsa University'),
(35603, 'https://ror.org/00p4fjt47', 'en', 1, 'https://ror.org/00p4fjt47 Innovation Maritime'),
(35604, 'https://ror.org/00p5w8488', 'en', 1, 'https://ror.org/00p5w8488 Elliot Provincial Hospital'),
(35605, 'https://ror.org/00p9dzj96', 'pl', 1, 'https://ror.org/00p9dzj96 Ogród Zoologiczny w Krakowie'),
(35606, 'https://ror.org/00pbr1q26', 'no_lang_code', 1, 'https://ror.org/00pbr1q26 Mahle Letrika (Slovenia)'),
(35607, 'https://ror.org/00pd69702', 'no_lang_code', 1, 'https://ror.org/00pd69702 TGS (Norway)'),
(35608, 'https://ror.org/00pdjsv51', 'en', 1, 'https://ror.org/00pdjsv51 National Mississippi River Museum & Aquarium'),
(35609, 'https://ror.org/00pe9yd58', 'no_lang_code', 1, 'https://ror.org/00pe9yd58 Denofa (Norway)'),
(35610, 'https://ror.org/00pejg468', 'no_lang_code', 1, 'https://ror.org/00pejg468 Wodociągi Kłodzkie (Poland)'),
(35611, 'https://ror.org/00pfazs12', 'no_lang_code', 1, 'https://ror.org/00pfazs12 Kennedy Martin Health Outcomes (United Kingdom)'),
(35612, 'https://ror.org/00pffbm70', 'en', 1, 'https://ror.org/00pffbm70 Daegu Health College ėŒ€źµ¬ė³“ź±“ėŒ€ķ•™źµ'),
(35613, 'https://ror.org/00ph73362', 'no_lang_code', 1, 'https://ror.org/00ph73362 P.E. LaMoreaux & Associates (United States)'),
(35614, 'https://ror.org/00pjedz72', 'pt', 1, 'https://ror.org/00pjedz72 Secretaria Municipal de Educação de São Paulo'),
(35615, 'https://ror.org/00pkwdr13', 'en', 1, 'https://ror.org/00pkwdr13 Cecil College'),
(35616, 'https://ror.org/00pndr306', 'no_lang_code', 1, 'https://ror.org/00pndr306 Hybrid Energy (Norway)'),
(35617, 'https://ror.org/00ppmht14', 'es', 1, 'https://ror.org/00ppmht14 Hospital Borda, Hospital Interdisciplinario Psicoasistencial JosƩ Tiburcio Borda'),
(35618, 'https://ror.org/00ppwz362', 'no_lang_code', 1, 'https://ror.org/00ppwz362 ScanVacc (Norway)'),
(35619, 'https://ror.org/00pqahb84', 'no_lang_code', 1, 'https://ror.org/00pqahb84 NanoVelos (Poland)'),
(35620, 'https://ror.org/00pr7tv03', 'no_lang_code', 1, 'https://ror.org/00pr7tv03 Shippingcluster (Norway)'),
(35621, 'https://ror.org/00ps78702', 'no_lang_code', 1, 'https://ror.org/00ps78702 Simicon (Norway)'),
(35622, 'https://ror.org/00pvkt339', 'no_lang_code', 1, 'https://ror.org/00pvkt339 Finnish Consulting Group (Finland)'),
(35623, 'https://ror.org/00py85p62', 'en', 1, 'https://ror.org/00py85p62 Kyanous Stavros Hospital'),
(35624, 'https://ror.org/00pz7qc35', 'de', 1, 'https://ror.org/00pz7qc35 Ortenau Klinikum');
INSERT INTO `rors` VALUES
(35625, 'https://ror.org/00pzh0w90', 'tr', 1, 'https://ror.org/00pzh0w90 Kocaeli Üniversitesi Araştırma ve Uygulama Hastanesi'),
(35626, 'https://ror.org/00q0t9719', 'no_lang_code', 1, 'https://ror.org/00q0t9719 StormGeo (Norway)'),
(35627, 'https://ror.org/00q13z447', 'no_lang_code', 1, 'https://ror.org/00q13z447 PRORES (Norway)'),
(35628, 'https://ror.org/00q6e3362', 'en', 1, 'https://ror.org/00q6e3362 Friends of Independence National Historical Park'),
(35629, 'https://ror.org/00q6t4456', 'en', 1, 'https://ror.org/00q6t4456 National Federation of Polish NGOs'),
(35630, 'https://ror.org/00q7vjv87', 'no_lang_code', 1, 'https://ror.org/00q7vjv87 Optime Subsea Services (Norway)'),
(35631, 'https://ror.org/00q7xcw45', 'en', 1, 'https://ror.org/00q7xcw45 Australian Lutheran College'),
(35632, 'https://ror.org/00q9ekq83', 'no_lang_code', 1, 'https://ror.org/00q9ekq83 Dar Al Shifaa Hospital'),
(35633, 'https://ror.org/00qae8971', 'en', 1, 'https://ror.org/00qae8971 Institute for History of Natural Sciences äø­å›½ē§‘å­¦é™¢č‡Ŗē„¶ē§‘å­¦å²ē ”ē©¶ę‰€'),
(35634, 'https://ror.org/00qbb2v66', 'en', 1, 'https://ror.org/00qbb2v66 Kharkiv University of Air Force'),
(35635, 'https://ror.org/00qbe9m93', 'en', 1, 'https://ror.org/00qbe9m93 Howard College'),
(35636, 'https://ror.org/00qbv9d45', 'en', 1, 'https://ror.org/00qbv9d45 Andover Newton Theological School'),
(35637, 'https://ror.org/00qbw4596', 'pt', 1, 'https://ror.org/00qbw4596 Instituto de NeurociĆŖncias e Comportamento'),
(35638, 'https://ror.org/00qcchj97', 'no_lang_code', 1, 'https://ror.org/00qcchj97 Yaskawa (Slovenia)'),
(35639, 'https://ror.org/00qch4977', 'no_lang_code', 1, 'https://ror.org/00qch4977 Pro Analysis (Norway)'),
(35640, 'https://ror.org/00qej3243', 'en', 1, 'https://ror.org/00qej3243 Medina General Hospital'),
(35641, 'https://ror.org/00qh0h134', 'sl', 1, 'https://ror.org/00qh0h134 SploŔna BolniŔnica Slovenj Gradec'),
(35642, 'https://ror.org/00qh12n88', 'en', 1, 'https://ror.org/00qh12n88 Laguna State Polytechnic University'),
(35643, 'https://ror.org/00qh28f47', 'no_lang_code', 1, 'https://ror.org/00qh28f47 Svilanit (Slovenia)'),
(35644, 'https://ror.org/00qh6jg85', 'en', 1, 'https://ror.org/00qh6jg85 Al-Ahli Hospital'),
(35645, 'https://ror.org/00qhjc802', 'no_lang_code', 1, 'https://ror.org/00qhjc802 Alianta (Slovenia)'),
(35646, 'https://ror.org/00qhxf575', 'en', 1, 'https://ror.org/00qhxf575 Nokami Kousei Sougo Hospital'),
(35647, 'https://ror.org/00qjry581', 'en', 1, 'https://ror.org/00qjry581 Warwickshire Hospital'),
(35648, 'https://ror.org/00qjyjx92', 'no_lang_code', 1, 'https://ror.org/00qjyjx92 Langlee Wave Power (Norway)'),
(35649, 'https://ror.org/00qnzks08', 'no_lang_code', 1, 'https://ror.org/00qnzks08 Krakodlew (Poland)'),
(35650, 'https://ror.org/00qq5j134', 'no_lang_code', 1, 'https://ror.org/00qq5j134 Pax Forlag (Norway)'),
(35651, 'https://ror.org/00qqspx12', 'no_lang_code', 1, 'https://ror.org/00qqspx12 Kappa Bioscience (Norway)'),
(35652, 'https://ror.org/00qrrj311', 'no', 1, 'https://ror.org/00qrrj311 Abelia'),
(35653, 'https://ror.org/00qryer39', 'en', 1, 'https://ror.org/00qryer39 International Institute of Information Technology ą¤…ą¤‚ą¤¤ą¤°ą„ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤­ą„ą¤µą¤Øą„‡ą¤¶ą„ą¤µą¤°'),
(35654, 'https://ror.org/00qs33y73', 'en', 1, 'https://ror.org/00qs33y73 Bowen University Teaching Hospital'),
(35655, 'https://ror.org/00qw5wg75', 'en', 1, 'https://ror.org/00qw5wg75 Guizhou Cancer Hospital'),
(35656, 'https://ror.org/00qwdz285', 'no_lang_code', 1, 'https://ror.org/00qwdz285 Teekay (Norway)'),
(35657, 'https://ror.org/00r2mkt64', 'no_lang_code', 1, 'https://ror.org/00r2mkt64 Weatherford (Norway)'),
(35658, 'https://ror.org/00r2t8g81', 'en', 1, 'https://ror.org/00r2t8g81 Parkway East Hospital'),
(35659, 'https://ror.org/00r398124', 'en', 1, 'https://ror.org/00r398124 Ganzhou People''s Hospital'),
(35660, 'https://ror.org/00r4x3y44', 'no_lang_code', 1, 'https://ror.org/00r4x3y44 Vectron Biosolutions (Norway)'),
(35661, 'https://ror.org/00r5q3093', 'no', 1, 'https://ror.org/00r5q3093 Norsk SjĆømatsenter'),
(35662, 'https://ror.org/00r69t692', 'no', 1, 'https://ror.org/00r69t692 Nordnorske EntreprenĆørers Service Organisasjon'),
(35663, 'https://ror.org/00r80q412', 'en', 1, 'https://ror.org/00r80q412 Research Centre for Eastern and South Eastern Europe Wissenschaftszentrum Ost- und Südosteuropa Regensburg'),
(35664, 'https://ror.org/00rac3p42', 'no_lang_code', 1, 'https://ror.org/00rac3p42 Polikem (Brazil)'),
(35665, 'https://ror.org/00raj4980', 'en', 1, 'https://ror.org/00raj4980 USRowing'),
(35666, 'https://ror.org/00rb2cm82', 'en', 1, 'https://ror.org/00rb2cm82 Universal College'),
(35667, 'https://ror.org/00rc8te69', 'en', 1, 'https://ror.org/00rc8te69 ICT Telemark'),
(35668, 'https://ror.org/00rds0p35', 'en', 1, 'https://ror.org/00rds0p35 Hospitali ya Nairobi Nairobi Hospital'),
(35669, 'https://ror.org/00repdk15', 'no_lang_code', 1, 'https://ror.org/00repdk15 Talum (Slovenia)'),
(35670, 'https://ror.org/00rezgj18', 'en', 1, 'https://ror.org/00rezgj18 Winfocus'),
(35671, 'https://ror.org/00rj40e45', 'en', 1, 'https://ror.org/00rj40e45 North Cape Municipality'),
(35672, 'https://ror.org/00rmr1x70', 'no_lang_code', 1, 'https://ror.org/00rmr1x70 Hart Tech (Poland)'),
(35673, 'https://ror.org/00rmzby10', 'en', 1, 'https://ror.org/00rmzby10 Norwegian Centre for Design and Architecture'),
(35674, 'https://ror.org/00rqqzf78', 'en', 1, 'https://ror.org/00rqqzf78 Daud Memorial Hospital'),
(35675, 'https://ror.org/00rs0x560', 'pt', 1, 'https://ror.org/00rs0x560 Fundação de Estudos AgrÔrios Luiz de Queiroz'),
(35676, 'https://ror.org/00rs1fw09', 'no_lang_code', 1, 'https://ror.org/00rs1fw09 Asel-Tech (Brazil) Asel-Tech Tecnologia e AutomaƧăo'),
(35677, 'https://ror.org/00rs50b76', 'en', 1, 'https://ror.org/00rs50b76 Chabahar Maritime University'),
(35678, 'https://ror.org/00rvh4702', 'no_lang_code', 1, 'https://ror.org/00rvh4702 Comet Biotech (Norway)'),
(35679, 'https://ror.org/00rwtwt20', 'en', 1, 'https://ror.org/00rwtwt20 Northeast Catholic College'),
(35680, 'https://ror.org/00rx1ga86', 'en', 1, 'https://ror.org/00rx1ga86 Central Hospital of YaoundƩ HƓpital Central de YaoundƩ'),
(35681, 'https://ror.org/00s0b8a75', 'en', 1, 'https://ror.org/00s0b8a75 Institute of Human Development, Child and Youth Health'),
(35682, 'https://ror.org/00s0xs310', 'no_lang_code', 1, 'https://ror.org/00s0xs310 Polaris (Brazil)'),
(35683, 'https://ror.org/00s13br28', 'en', 1, 'https://ror.org/00s13br28 Henan Normal University ę²³å—åøˆčŒƒå¤§å­¦'),
(35684, 'https://ror.org/00s21wr35', 'no_lang_code', 1, 'https://ror.org/00s21wr35 Polymer Standards Service (Germany)'),
(35685, 'https://ror.org/00s3sq827', 'en', 1, 'https://ror.org/00s3sq827 HƓpital gynƩco-obstƩtrique et pƩdiatrique de YaoundƩ YaoundƩ Gynaecology, Obstetrics and Pediatrics Hospital'),
(35686, 'https://ror.org/00s3yxg72', 'no_lang_code', 1, 'https://ror.org/00s3yxg72 Green Cube Management (Norway)'),
(35687, 'https://ror.org/00s6pe011', 'no_lang_code', 1, 'https://ror.org/00s6pe011 Made for Movement (Norway)'),
(35688, 'https://ror.org/00sbttv49', 'fr', 1, 'https://ror.org/00sbttv49 DƩlƩgation Paris 12'),
(35689, 'https://ror.org/00sc9ba80', 'no_lang_code', 1, 'https://ror.org/00sc9ba80 Compsis (Brazil)'),
(35690, 'https://ror.org/00sd35b30', 'en', 1, 'https://ror.org/00sd35b30 Luzerne County Community College'),
(35691, 'https://ror.org/00sf52z42', 'no_lang_code', 1, 'https://ror.org/00sf52z42 Truven Health Analytics (United States)'),
(35692, 'https://ror.org/00sgkxj28', 'no_lang_code', 1, 'https://ror.org/00sgkxj28 Katowice Coal Holding (Poland)'),
(35693, 'https://ror.org/00sgprf31', 'en', 1, 'https://ror.org/00sgprf31 OspidƩal Naomh Dympna St. Dympna''s Hospital'),
(35694, 'https://ror.org/00sgtyj59', 'no_lang_code', 1, 'https://ror.org/00sgtyj59 Ansteel (China)'),
(35695, 'https://ror.org/00shkn419', 'no', 1, 'https://ror.org/00shkn419 Gründerskolen Alumni'),
(35696, 'https://ror.org/00sj27p43', 'de', 1, 'https://ror.org/00sj27p43 Landesarchiv Nordrhein-Westfalen'),
(35697, 'https://ror.org/00sjjkp82', 'no_lang_code', 1, 'https://ror.org/00sjjkp82 Instar (Poland)'),
(35698, 'https://ror.org/00sk8vk27', 'no_lang_code', 1, 'https://ror.org/00sk8vk27 Dolphin Geophysical (Norway)'),
(35699, 'https://ror.org/00sm4bp25', 'en', 1, 'https://ror.org/00sm4bp25 Crafton Hills College'),
(35700, 'https://ror.org/00snpfp77', 'en', 1, 'https://ror.org/00snpfp77 Norwegian Association of Economists'),
(35701, 'https://ror.org/00spt4n57', 'en', 1, 'https://ror.org/00spt4n57 Lianyungang Maternal and Children’s Hospital'),
(35702, 'https://ror.org/00srhwt80', 'en', 1, 'https://ror.org/00srhwt80 Norwegian National Research Ethics Committees'),
(35703, 'https://ror.org/00ssdam06', 'en', 1, 'https://ror.org/00ssdam06 The Mount'),
(35704, 'https://ror.org/00sx97n88', 'en', 1, 'https://ror.org/00sx97n88 Centre for International Relations'),
(35705, 'https://ror.org/00sxf2f02', 'no_lang_code', 1, 'https://ror.org/00sxf2f02 Inovyn Norge (Norway)'),
(35706, 'https://ror.org/00sy03c71', 'en', 1, 'https://ror.org/00sy03c71 Teaching Hospital Batticaloa போதனா ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆ ą®®ą®ŸąÆą®Ÿą®•ąÆą®•ą®³ą®ŖąÆą®ŖąÆ'),
(35707, 'https://ror.org/00syyqa87', 'en', 1, 'https://ror.org/00syyqa87 Orthopaedic University Hospital Friedrichsheim OrthopƤdische UniversitƤtsklinik Friedrichsheim'),
(35708, 'https://ror.org/00t2vjb05', 'no_lang_code', 1, 'https://ror.org/00t2vjb05 White River Technologies (United States)'),
(35709, 'https://ror.org/00t30f389', 'en', 1, 'https://ror.org/00t30f389 Children''s Hospital of San Antonio'),
(35710, 'https://ror.org/00t3ejb31', 'en', 1, 'https://ror.org/00t3ejb31 Kamuli General Hospital'),
(35711, 'https://ror.org/00t3epc32', 'no_lang_code', 1, 'https://ror.org/00t3epc32 Kruse Smith (Norway)'),
(35712, 'https://ror.org/00t3hse28', 'no_lang_code', 1, 'https://ror.org/00t3hse28 AhR Pharmaceuticals (United States)'),
(35713, 'https://ror.org/00t4w1v80', 'es', 1, 'https://ror.org/00t4w1v80 Hospital de Viladecans'),
(35714, 'https://ror.org/00t5zf034', 'pt', 1, 'https://ror.org/00t5zf034 Associação Brasileira de Estatística'),
(35715, 'https://ror.org/00t7chs43', 'no_lang_code', 1, 'https://ror.org/00t7chs43 R.J.Rygg International (Norway)'),
(35716, 'https://ror.org/00t7r5h51', 'en', 1, 'https://ror.org/00t7r5h51 Center for Autism and Related Disorders'),
(35717, 'https://ror.org/00t8aqf69', 'no_lang_code', 1, 'https://ror.org/00t8aqf69 OptaCore (Slovenia)'),
(35718, 'https://ror.org/00t8j2x68', 'en', 1, 'https://ror.org/00t8j2x68 Eston College'),
(35719, 'https://ror.org/00t954r14', 'en', 1, 'https://ror.org/00t954r14 University Hospital St. Marina'),
(35720, 'https://ror.org/00t9sn355', 'no_lang_code', 1, 'https://ror.org/00t9sn355 Avexxin (Norway)'),
(35721, 'https://ror.org/00tajj279', 'no', 1, 'https://ror.org/00tajj279 Unge aksjonƦrer'),
(35722, 'https://ror.org/00tavxp27', 'no_lang_code', 1, 'https://ror.org/00tavxp27 Syngenta (Belgium)'),
(35723, 'https://ror.org/00tbh0a59', 'en', 1, 'https://ror.org/00tbh0a59 Gulu Hospital'),
(35724, 'https://ror.org/00tcrkx08', 'no_lang_code', 1, 'https://ror.org/00tcrkx08 Vardar (Norway)'),
(35725, 'https://ror.org/00td2nm66', 'no_lang_code', 1, 'https://ror.org/00td2nm66 Nova Sea (Norway)'),
(35726, 'https://ror.org/00td4wt22', 'en', 1, 'https://ror.org/00td4wt22 Lower Saxony Institute for Historical Coastal Research Niedersächsisches Institut für historische Küstenforschung'),
(35727, 'https://ror.org/00td7a857', 'en', 1, 'https://ror.org/00td7a857 Federation of Norwegian Agricultural Co-operatives'),
(35728, 'https://ror.org/00tdd5j20', 'no_lang_code', 1, 'https://ror.org/00tdd5j20 Elektrobudowa (Poland)'),
(35729, 'https://ror.org/00te78715', 'no_lang_code', 1, 'https://ror.org/00te78715 Metallco (Norway)'),
(35730, 'https://ror.org/00tejnf65', 'en', 1, 'https://ror.org/00tejnf65 Milton Ulladulla Hospital'),
(35731, 'https://ror.org/00tem3932', 'no_lang_code', 1, 'https://ror.org/00tem3932 Hynor LillestrĆøm (Norway)'),
(35732, 'https://ror.org/00tmaba41', 'en', 1, 'https://ror.org/00tmaba41 Montana Department of Corrections'),
(35733, 'https://ror.org/00tsmp672', 'en', 1, 'https://ror.org/00tsmp672 Narvik Science Park'),
(35734, 'https://ror.org/00txnqh94', 'en', 1, 'https://ror.org/00txnqh94 37 Military Hospital'),
(35735, 'https://ror.org/00tya8c87', 'no_lang_code', 1, 'https://ror.org/00tya8c87 Terratec (Norway)'),
(35736, 'https://ror.org/00tzehs45', 'no_lang_code', 1, 'https://ror.org/00tzehs45 Cobrasper (Brazil)'),
(35737, 'https://ror.org/00v19am98', 'en', 1, 'https://ror.org/00v19am98 Hospital del estado de Utah Utah State Hospital'),
(35738, 'https://ror.org/00v1kpv21', 'en', 1, 'https://ror.org/00v1kpv21 Maindiff Court Hospital Ysbyty Maindiff Court'),
(35739, 'https://ror.org/00v7c5185', 'no_lang_code', 1, 'https://ror.org/00v7c5185 Mycoteam (Norway)'),
(35740, 'https://ror.org/00v8gh961', 'no_lang_code', 1, 'https://ror.org/00v8gh961 Petrolink (Norway)'),
(35741, 'https://ror.org/00va2ea06', 'no_lang_code', 1, 'https://ror.org/00va2ea06 Ampara Hospital ą¶…ą¶øą·Šą¶“ą·ą¶» ą¶»ą·ą·„ą¶½'),
(35742, 'https://ror.org/00var7h03', 'pt', 1, 'https://ror.org/00var7h03 Hospital Samaritano de SĆ£o Paulo'),
(35743, 'https://ror.org/00vb2ts27', 'no_lang_code', 1, 'https://ror.org/00vb2ts27 Drawski (Poland)'),
(35744, 'https://ror.org/00vbqcv97', 'no', 1, 'https://ror.org/00vbqcv97 Narvik Sykehus'),
(35745, 'https://ror.org/00vby1197', 'no_lang_code', 1, 'https://ror.org/00vby1197 MMC Green Technology (Norway)'),
(35746, 'https://ror.org/00vd2t792', 'no_lang_code', 1, 'https://ror.org/00vd2t792 R4F Tecnologia (Brazil)'),
(35747, 'https://ror.org/00vd4yx94', 'no_lang_code', 1, 'https://ror.org/00vd4yx94 Chazhikattu Hospital'),
(35748, 'https://ror.org/00ve36y89', 'no_lang_code', 1, 'https://ror.org/00ve36y89 Fanbooster (Norway)'),
(35749, 'https://ror.org/00ve8y072', 'no_lang_code', 1, 'https://ror.org/00ve8y072 Saemien Sijte'),
(35750, 'https://ror.org/00vfc7k77', 'no_lang_code', 1, 'https://ror.org/00vfc7k77 North Energy (Norway)'),
(35751, 'https://ror.org/00vfe5x12', 'pt', 1, 'https://ror.org/00vfe5x12 Espaço Ciência Viva'),
(35752, 'https://ror.org/00vfzzr15', 'no_lang_code', 1, 'https://ror.org/00vfzzr15 Ticon (Brazil)'),
(35753, 'https://ror.org/00vggt529', 'no_lang_code', 1, 'https://ror.org/00vggt529 Tauron (Poland)'),
(35754, 'https://ror.org/00vgj1d44', 'no_lang_code', 1, 'https://ror.org/00vgj1d44 Sunano (China)'),
(35755, 'https://ror.org/00vjvqk56', 'en', 1, 'https://ror.org/00vjvqk56 DESA'),
(35756, 'https://ror.org/00vjwj043', 'no_lang_code', 1, 'https://ror.org/00vjwj043 Kroma Equipamentos Especiais (Brazil)'),
(35757, 'https://ror.org/00vk4de58', 'no_lang_code', 1, 'https://ror.org/00vk4de58 Red, Orange and Green Environmental Technologies (Brazil)'),
(35758, 'https://ror.org/00vk5m430', 'en', 1, 'https://ror.org/00vk5m430 Milton District Hospital'),
(35759, 'https://ror.org/00vkfw855', 'no_lang_code', 1, 'https://ror.org/00vkfw855 Sirc (Poland)'),
(35760, 'https://ror.org/00vnpmg64', 'en', 1, 'https://ror.org/00vnpmg64 Oregon International Council'),
(35761, 'https://ror.org/00vnz7193', 'no_lang_code', 1, 'https://ror.org/00vnz7193 Arctic Pharma (Norway)'),
(35762, 'https://ror.org/00vq26t70', 'no_lang_code', 1, 'https://ror.org/00vq26t70 Canzibe Hospital'),
(35763, 'https://ror.org/00vqmcb18', 'no_lang_code', 1, 'https://ror.org/00vqmcb18 Verdal Inspection and Technology Center (Norway)'),
(35764, 'https://ror.org/00vva8g89', 'en', 1, 'https://ror.org/00vva8g89 Fourth People''s Hospital of Sichuan Province'),
(35765, 'https://ror.org/00vvj5e57', 'no_lang_code', 1, 'https://ror.org/00vvj5e57 TotAl-gruppen (Norway)'),
(35766, 'https://ror.org/00w069474', 'en', 1, 'https://ror.org/00w069474 Ancora Psychiatric Hospital'),
(35767, 'https://ror.org/00w1jf336', 'en', 1, 'https://ror.org/00w1jf336 Europa Ziekenhuizen Europe Hospitals'),
(35768, 'https://ror.org/00w1szk34', 'no_lang_code', 1, 'https://ror.org/00w1szk34 Ravimed (Poland)'),
(35769, 'https://ror.org/00w2nrp41', 'en', 1, 'https://ror.org/00w2nrp41 Kalafong Hospitaal Kalafong Hospital'),
(35770, 'https://ror.org/00w3t2881', 'no_lang_code', 1, 'https://ror.org/00w3t2881 Med Data Quest (United States)'),
(35771, 'https://ror.org/00w4knw64', 'pt', 1, 'https://ror.org/00w4knw64 Fundação Faculdade de Odontologia'),
(35772, 'https://ror.org/00w52ce92', 'no_lang_code', 1, 'https://ror.org/00w52ce92 Hansa Borg Bryggerier (Norway)'),
(35773, 'https://ror.org/00wctst51', 'pt', 1, 'https://ror.org/00wctst51 Associação Nacional de Pós-Graduação e Pesquisa em Ciências Sociais'),
(35774, 'https://ror.org/00we5be91', 'en', 1, 'https://ror.org/00we5be91 Deutsches Zentrum für Altersfragen German Centre of Gerontology'),
(35775, 'https://ror.org/00wg75m45', 'no_lang_code', 1, 'https://ror.org/00wg75m45 Thermo Fisher Scientific (Japan)'),
(35776, 'https://ror.org/00wp87h24', 'no_lang_code', 1, 'https://ror.org/00wp87h24 NovaBiotics (Norway)'),
(35777, 'https://ror.org/00wp8rt14', 'en', 1, 'https://ror.org/00wp8rt14 Association of the Technological Integrated Systems Laboratory Laboratório de Sistemas IntegrÔveis Tecnológico'),
(35778, 'https://ror.org/00wpbh181', 'no_lang_code', 1, 'https://ror.org/00wpbh181 TecSUS Tecnologias para a Sustentabilidade (Brazil)'),
(35779, 'https://ror.org/00wq53e84', 'no_lang_code', 1, 'https://ror.org/00wq53e84 GeneSeque (Norway)'),
(35780, 'https://ror.org/00wqdg589', 'en', 1, 'https://ror.org/00wqdg589 Criswell College'),
(35781, 'https://ror.org/00wrds652', 'no_lang_code', 1, 'https://ror.org/00wrds652 Frost Produkt (Norway)'),
(35782, 'https://ror.org/00wrp4434', 'en', 1, 'https://ror.org/00wrp4434 Institute of Agricultural and Food Economics'),
(35783, 'https://ror.org/00wsgg405', 'no_lang_code', 1, 'https://ror.org/00wsgg405 Integrated Optoelectronics (Norway)'),
(35784, 'https://ror.org/00wtrhc98', 'en', 1, 'https://ror.org/00wtrhc98 Institute of Geography and Spatial Organization, Polish Academy of Sciences'),
(35785, 'https://ror.org/00wwb2b69', 'en', 1, 'https://ror.org/00wwb2b69 The First People''s Hospital of Shunde'),
(35786, 'https://ror.org/00wz29n17', 'no_lang_code', 1, 'https://ror.org/00wz29n17 Gascontrol Polska'),
(35787, 'https://ror.org/00x035a35', 'en', 1, 'https://ror.org/00x035a35 Energy Agency for Southeast'),
(35788, 'https://ror.org/00x11zg33', 'en', 1, 'https://ror.org/00x11zg33 Gateway Community and Technical College'),
(35789, 'https://ror.org/00x1wkj06', 'fr', 1, 'https://ror.org/00x1wkj06 Robotique FIRST QuƩbec'),
(35790, 'https://ror.org/00x2q5f89', 'en', 1, 'https://ror.org/00x2q5f89 Randall Children''s Hospital at Legacy Emanuel'),
(35791, 'https://ror.org/00x67m532', 'en', 1, 'https://ror.org/00x67m532 Hanover University of Music Drama and Media Hochschule für Musik, Theater und Medien Hannover'),
(35792, 'https://ror.org/00xb1ja93', 'en', 1, 'https://ror.org/00xb1ja93 Polish Seed Trade Association'),
(35793, 'https://ror.org/00xcyc711', 'no_lang_code', 1, 'https://ror.org/00xcyc711 Environmental Resources Management (United Kingdom)'),
(35794, 'https://ror.org/00xdpd607', 'en', 1, 'https://ror.org/00xdpd607 Brazilian Society of Nuclear Biosciences Sociedade Brasileira de BiociĆŖncias Nucleares'),
(35795, 'https://ror.org/00xj09k15', 'pt', 1, 'https://ror.org/00xj09k15 Secretaria Municipal do Desenvolvimento EconƓmico e Turismo'),
(35796, 'https://ror.org/00xm9b761', 'no_lang_code', 1, 'https://ror.org/00xm9b761 Commitment (Norway)'),
(35797, 'https://ror.org/00xnq7h44', 'de', 1, 'https://ror.org/00xnq7h44 Hochschule für Künste im Sozialen'),
(35798, 'https://ror.org/00xrcsz24', 'no', 1, 'https://ror.org/00xrcsz24 Hvorfor det'),
(35799, 'https://ror.org/00xrr2d51', 'fr', 1, 'https://ror.org/00xrr2d51 Sante Montreal'),
(35800, 'https://ror.org/00xsgfc59', 'it', 1, 'https://ror.org/00xsgfc59 Azienda Ospedaliera Bolognini Seriate'),
(35801, 'https://ror.org/00xv9sn23', 'de', 1, 'https://ror.org/00xv9sn23 Martin-Luther-Krankenhaus'),
(35802, 'https://ror.org/00xw2x114', 'en', 1, 'https://ror.org/00xw2x114 Tangshan People''s Hospital'),
(35803, 'https://ror.org/00xwpb736', 'no_lang_code', 1, 'https://ror.org/00xwpb736 Apis Flora (Brazil) Apis Flora Industrial e Comercial Ltda'),
(35804, 'https://ror.org/00xxfcb49', 'no_lang_code', 1, 'https://ror.org/00xxfcb49 Navtor (Norway)'),
(35805, 'https://ror.org/00xxveb47', 'no_lang_code', 1, 'https://ror.org/00xxveb47 Kalkulo (Norway)'),
(35806, 'https://ror.org/00xzsc219', 'no_lang_code', 1, 'https://ror.org/00xzsc219 Aurland Naturverkstad (Norway)'),
(35807, 'https://ror.org/00y0hrk69', 'no_lang_code', 1, 'https://ror.org/00y0hrk69 Catch Solar Energy (Norway)'),
(35808, 'https://ror.org/00y0tkz25', 'en', 1, 'https://ror.org/00y0tkz25 Australian Law Reform Commission'),
(35809, 'https://ror.org/00y18kr09', 'de', 1, 'https://ror.org/00y18kr09 Stadtarchiv Gifhorn'),
(35810, 'https://ror.org/00y2ehr59', 'no_lang_code', 1, 'https://ror.org/00y2ehr59 Ambra Solutions (Brazil)'),
(35811, 'https://ror.org/00y3by878', 'en', 1, 'https://ror.org/00y3by878 De Lin Institute of Technology å¾·éœ–ęŠ€č”“å­øé™¢'),
(35812, 'https://ror.org/00y495746', 'no_lang_code', 1, 'https://ror.org/00y495746 PCI Biotech (Norway)'),
(35813, 'https://ror.org/00y78ex22', 'no_lang_code', 1, 'https://ror.org/00y78ex22 Genoa (Brazil)'),
(35814, 'https://ror.org/00y8zcm61', 'en', 1, 'https://ror.org/00y8zcm61 Chattagram Maa-O-Shishu Hospital Medical College'),
(35815, 'https://ror.org/00ya08494', 'en', 1, 'https://ror.org/00ya08494 Bumrungrad International Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøšąø³ąø£ąøøąø‡ąø£ąø²ąø©ąøŽąø£ą¹Œ'),
(35816, 'https://ror.org/00ycas454', 'no_lang_code', 1, 'https://ror.org/00ycas454 Telio (Norway)'),
(35817, 'https://ror.org/00yejqr65', 'en', 1, 'https://ror.org/00yejqr65 Zhejiang DongFang Vocational and Technical College'),
(35818, 'https://ror.org/00yfewz72', 'en', 1, 'https://ror.org/00yfewz72 Piedmont Henry Hospital'),
(35819, 'https://ror.org/00yg0kc17', 'pt', 1, 'https://ror.org/00yg0kc17 Ação Educativa'),
(35820, 'https://ror.org/00yjpxn36', 'en', 1, 'https://ror.org/00yjpxn36 Maharashtra National Law University Mumbai'),
(35821, 'https://ror.org/00yk34w18', 'en', 1, 'https://ror.org/00yk34w18 Bainbridge State College'),
(35822, 'https://ror.org/00ykry024', 'no_lang_code', 1, 'https://ror.org/00ykry024 Sevitel (Poland)'),
(35823, 'https://ror.org/00yntsj40', 'en', 1, 'https://ror.org/00yntsj40 South County Hospital'),
(35824, 'https://ror.org/00yv11a49', 'de', 1, 'https://ror.org/00yv11a49 Niedersächsisches Landesamt für Denkmalpflege'),
(35825, 'https://ror.org/00yxvfq91', 'no_lang_code', 1, 'https://ror.org/00yxvfq91 Slips Technologies (United States)'),
(35826, 'https://ror.org/00yycrh80', 'no_lang_code', 1, 'https://ror.org/00yycrh80 Hidria (Slovenia)'),
(35827, 'https://ror.org/00z12fn95', 'no', 1, 'https://ror.org/00z12fn95 Lundes Gartneri'),
(35828, 'https://ror.org/00z451h60', 'no_lang_code', 1, 'https://ror.org/00z451h60 Trefokus (Norway)'),
(35829, 'https://ror.org/00z6pvt32', 'en', 1, 'https://ror.org/00z6pvt32 Burnaby Hospital'),
(35830, 'https://ror.org/00z78kg48', 'no_lang_code', 1, 'https://ror.org/00z78kg48 Partecurae Analysis (Brazil)'),
(35831, 'https://ror.org/00z8qyj05', 'pt', 1, 'https://ror.org/00z8qyj05 Fundação Educacional de Ituverava'),
(35832, 'https://ror.org/00za2ev77', 'no_lang_code', 1, 'https://ror.org/00za2ev77 Reciclapac (Brazil)'),
(35833, 'https://ror.org/00zave958', 'no', 1, 'https://ror.org/00zave958 Norsk Teknisk Museum'),
(35834, 'https://ror.org/00zayq578', 'de', 1, 'https://ror.org/00zayq578 Staatliche Akademie der Bildenden Künste Stuttgart State Academy of Fine Arts in Stuttgart'),
(35835, 'https://ror.org/00zec6783', 'en', 1, 'https://ror.org/00zec6783 Tongwon University ė™ģ›ėŒ€ķ•™źµ'),
(35836, 'https://ror.org/00zfwf776', 'pt', 1, 'https://ror.org/00zfwf776 Associação Brasileira de Estudos de Defesa'),
(35837, 'https://ror.org/00zgpxe28', 'no_lang_code', 1, 'https://ror.org/00zgpxe28 CondAlign (Norway)'),
(35838, 'https://ror.org/00zh2nr83', 'no_lang_code', 1, 'https://ror.org/00zh2nr83 Sigla (Norway)'),
(35839, 'https://ror.org/00zh9em21', 'pt', 1, 'https://ror.org/00zh9em21 Centro de Estudos da Voz'),
(35840, 'https://ror.org/00zhnhw93', 'no_lang_code', 1, 'https://ror.org/00zhnhw93 Matpartner (Norway)'),
(35841, 'https://ror.org/00zjkp172', 'no_lang_code', 1, 'https://ror.org/00zjkp172 Tsat (Norway)'),
(35842, 'https://ror.org/00zmypf05', 'no_lang_code', 1, 'https://ror.org/00zmypf05 Le Loch Healthcare (Poland)'),
(35843, 'https://ror.org/00zsezt30', 'no_lang_code', 1, 'https://ror.org/00zsezt30 Pudong Maternal and Child Health Hospital'),
(35844, 'https://ror.org/00zsg1530', 'no_lang_code', 1, 'https://ror.org/00zsg1530 Vision iO (Norway)'),
(35845, 'https://ror.org/00zt5yw80', 'en', 1, 'https://ror.org/00zt5yw80 American Oriental Society'),
(35846, 'https://ror.org/00zx28k54', 'no_lang_code', 1, 'https://ror.org/00zx28k54 Artecriação (Brazil)'),
(35847, 'https://ror.org/00zzy9k89', 'no_lang_code', 1, 'https://ror.org/00zzy9k89 Norsk Hoppemelk (Norway)'),
(35848, 'https://ror.org/0100xag24', 'pt', 1, 'https://ror.org/0100xag24 Associação Brasileira de Médicos VeterinÔrios de Equídeos'),
(35849, 'https://ror.org/0101h5125', 'pt', 1, 'https://ror.org/0101h5125 Instituto Brasileiro de Mercado de Capitais'),
(35850, 'https://ror.org/0101zye71', 'en', 1, 'https://ror.org/0101zye71 Brazilian Institute of Geography and Statistics Instituto Brasileiro de Geografia e EstatĆ­stica'),
(35851, 'https://ror.org/0104fhy48', 'no_lang_code', 1, 'https://ror.org/0104fhy48 Inter-Metro (Brazil)'),
(35852, 'https://ror.org/010552r76', 'no_lang_code', 1, 'https://ror.org/010552r76 IBE (Slovenia)'),
(35853, 'https://ror.org/01059d966', 'no_lang_code', 1, 'https://ror.org/01059d966 Norinnova (Norway)'),
(35854, 'https://ror.org/0107jsx26', 'en', 1, 'https://ror.org/0107jsx26 Norwegian Society of Automatic Control'),
(35855, 'https://ror.org/0108yh543', 'no_lang_code', 1, 'https://ror.org/0108yh543 Making View (Norway)'),
(35856, 'https://ror.org/01094wq95', 'no_lang_code', 1, 'https://ror.org/01094wq95 Cybernetica (Norway)'),
(35857, 'https://ror.org/0109vey20', 'no_lang_code', 1, 'https://ror.org/0109vey20 Marlo (Norway)'),
(35858, 'https://ror.org/010a00062', 'no_lang_code', 1, 'https://ror.org/010a00062 TMG-BMC (Slovenia)'),
(35859, 'https://ror.org/010a3bp06', 'no_lang_code', 1, 'https://ror.org/010a3bp06 Hermes Academic Publishing and Bookshop (Norway)'),
(35860, 'https://ror.org/010ajwv03', 'no_lang_code', 1, 'https://ror.org/010ajwv03 Eli Lilly (Singapore)'),
(35861, 'https://ror.org/010bpy365', 'no_lang_code', 1, 'https://ror.org/010bpy365 Kwekwe General Hospital'),
(35862, 'https://ror.org/010e5k554', 'no_lang_code', 1, 'https://ror.org/010e5k554 Aquafarm Equipment (Norway)'),
(35863, 'https://ror.org/010e7qh86', 'no_lang_code', 1, 'https://ror.org/010e7qh86 Idrettssenteret (Norway)'),
(35864, 'https://ror.org/010ehb542', 'no_lang_code', 1, 'https://ror.org/010ehb542 Urbem Tecnologia Ambiental (Brazil)'),
(35865, 'https://ror.org/010h1w694', 'no_lang_code', 1, 'https://ror.org/010h1w694 Innovatech (Brazil)'),
(35866, 'https://ror.org/010h5fs55', 'en', 1, 'https://ror.org/010h5fs55 PIH Health'),
(35867, 'https://ror.org/010mck520', 'de', 1, 'https://ror.org/010mck520 Universitäres Kinderwunschzentrum Lübeck'),
(35868, 'https://ror.org/010mrqa05', 'en', 1, 'https://ror.org/010mrqa05 Arts Council Norway'),
(35869, 'https://ror.org/010nnnk31', 'pl', 1, 'https://ror.org/010nnnk31 Wojskowy Instytut Techniki Pancernej i Samochodowej'),
(35870, 'https://ror.org/010qfrm44', 'no_lang_code', 1, 'https://ror.org/010qfrm44 Compuminer Mineração de Dados & BI (Brazil)'),
(35871, 'https://ror.org/010szz537', 'no_lang_code', 1, 'https://ror.org/010szz537 Sorbwater Technology (Norway)'),
(35872, 'https://ror.org/010t80406', 'en', 1, 'https://ror.org/010t80406 Duplin General Hospital'),
(35873, 'https://ror.org/010tqsy45', 'en', 1, 'https://ror.org/010tqsy45 Beijing United Family Hospital'),
(35874, 'https://ror.org/010tvwd33', 'no_lang_code', 1, 'https://ror.org/010tvwd33 Rcasoft InformƔtica (Brazil)'),
(35875, 'https://ror.org/010twav05', 'no_lang_code', 1, 'https://ror.org/010twav05 Cientistas (Brazil)'),
(35876, 'https://ror.org/010vett18', 'no_lang_code', 1, 'https://ror.org/010vett18 Tieto (Norway)'),
(35877, 'https://ror.org/010vfte86', 'en', 1, 'https://ror.org/010vfte86 Rogaland County Council'),
(35878, 'https://ror.org/010w37e28', 'en', 1, 'https://ror.org/010w37e28 Ghana Atomic Energy Commission'),
(35879, 'https://ror.org/010y28g02', 'no_lang_code', 1, 'https://ror.org/010y28g02 Fupe Systems (Norway)'),
(35880, 'https://ror.org/0110em457', 'pl', 1, 'https://ror.org/0110em457 Górnośląskie Centrum Medyczne'),
(35881, 'https://ror.org/0110xbk95', 'en', 1, 'https://ror.org/0110xbk95 St Elizabeth Mission Hospital'),
(35882, 'https://ror.org/0111q0t22', 'en', 1, 'https://ror.org/0111q0t22 Wujiang District People''s Hospital å“ę±Ÿåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(35883, 'https://ror.org/0112jt408', 'no_lang_code', 1, 'https://ror.org/0112jt408 Ipel - Itibanyl Produtos Especiais (Brazil)'),
(35884, 'https://ror.org/01132my48', 'en', 1, 'https://ror.org/01132my48 Mengo Hospital'),
(35885, 'https://ror.org/0113n2b16', 'en', 1, 'https://ror.org/0113n2b16 Aleris Hamlet Hospital'),
(35886, 'https://ror.org/0117bm254', 'no_lang_code', 1, 'https://ror.org/0117bm254 Rfideas (Brazil)'),
(35887, 'https://ror.org/0119f6n25', 'pt', 1, 'https://ror.org/0119f6n25 Fundação Energia e Saneamento'),
(35888, 'https://ror.org/011at3t25', 'en', 1, 'https://ror.org/011at3t25 European University of Rome'),
(35889, 'https://ror.org/011b7yt80', 'en', 1, 'https://ror.org/011b7yt80 Rashid Latif Medical College'),
(35890, 'https://ror.org/011fsqw83', 'no_lang_code', 1, 'https://ror.org/011fsqw83 HomeControl (Norway)'),
(35891, 'https://ror.org/011g06z87', 'en', 1, 'https://ror.org/011g06z87 Trincomalee Hospital ą¶­ą·Šā€ą¶»ą·’ą¶šą·”ą¶«ą·ą¶øą¶½ą¶ŗ ą¶»ą·ą·„ą¶½'),
(35892, 'https://ror.org/011m6ze86', 'no_lang_code', 1, 'https://ror.org/011m6ze86 Mexeo (Poland)'),
(35893, 'https://ror.org/011mfhx24', 'en', 1, 'https://ror.org/011mfhx24 Oslo Chamber of Commerce'),
(35894, 'https://ror.org/011nk9770', 'en', 1, 'https://ror.org/011nk9770 Shri Ramswaroop Memorial University'),
(35895, 'https://ror.org/011p1c445', 'no_lang_code', 1, 'https://ror.org/011p1c445 Kihoku hospital'),
(35896, 'https://ror.org/011qemc14', 'no_lang_code', 1, 'https://ror.org/011qemc14 SolidTech (Norway)'),
(35897, 'https://ror.org/011s3c574', 'no_lang_code', 1, 'https://ror.org/011s3c574 Stranda Prolog (Norway)'),
(35898, 'https://ror.org/011sx0d94', 'en', 1, 'https://ror.org/011sx0d94 Oslo Public Library'),
(35899, 'https://ror.org/011xmw283', 'en', 1, 'https://ror.org/011xmw283 Kuluva Hospital'),
(35900, 'https://ror.org/011zjcv36', 'de', 1, 'https://ror.org/011zjcv36 Unfallkrankenhaus Berlin'),
(35901, 'https://ror.org/011ztk477', 'no_lang_code', 1, 'https://ror.org/011ztk477 Litostroj Power (Slovenia)'),
(35902, 'https://ror.org/0120amd78', 'de', 1, 'https://ror.org/0120amd78 Institut für Sozialwissenschaftliche Forschung'),
(35903, 'https://ror.org/0120sbw19', 'no_lang_code', 1, 'https://ror.org/0120sbw19 Norwegian Directorate for Education and Training Utdanningsdirektoratet'),
(35904, 'https://ror.org/0122ngb55', 'no_lang_code', 1, 'https://ror.org/0122ngb55 Saint-Gobain (Norway)'),
(35905, 'https://ror.org/01249dt22', 'en', 1, 'https://ror.org/01249dt22 Aqua (France)'),
(35906, 'https://ror.org/012674h84', 'no_lang_code', 1, 'https://ror.org/012674h84 Ericsson (Norway)'),
(35907, 'https://ror.org/0126dzb30', 'cs', 1, 'https://ror.org/0126dzb30 SlezskĆ” Nemocnice v Opavě'),
(35908, 'https://ror.org/01277af53', 'no_lang_code', 1, 'https://ror.org/01277af53 Zenitel (Norway)'),
(35909, 'https://ror.org/012ang229', 'pt', 1, 'https://ror.org/012ang229 Instituto Nacional de Tecnologia National Institute of Technology'),
(35910, 'https://ror.org/012b0w593', 'en', 1, 'https://ror.org/012b0w593 Kilcreene Orthopaedic Hospital OspidƩal OrtaipƩideach Kilcreene'),
(35911, 'https://ror.org/012bzsw43', 'en', 1, 'https://ror.org/012bzsw43 Danish National Institute of Public Health Statens Institut for Folkesundhed'),
(35912, 'https://ror.org/012dd9d89', 'no_lang_code', 1, 'https://ror.org/012dd9d89 poLight (Norway)'),
(35913, 'https://ror.org/012dwyq75', 'no_lang_code', 1, 'https://ror.org/012dwyq75 Gassco (Norway)'),
(35914, 'https://ror.org/012ey9m84', 'en', 1, 'https://ror.org/012ey9m84 Brazilian Society of Research and Assistance to Craniofacial Rehabilitation Hospital of Sobrapar'),
(35915, 'https://ror.org/012ezqr21', 'no_lang_code', 1, 'https://ror.org/012ezqr21 Norsk Geografisk Selskap'),
(35916, 'https://ror.org/012ga1w05', 'en', 1, 'https://ror.org/012ga1w05 Memorial Ankara Hospital'),
(35917, 'https://ror.org/012hfzv58', 'no_lang_code', 1, 'https://ror.org/012hfzv58 Armada (Poland)'),
(35918, 'https://ror.org/012j4s611', 'de', 1, 'https://ror.org/012j4s611 UniversitƤtsklinikum Tulln'),
(35919, 'https://ror.org/012k58098', 'en', 1, 'https://ror.org/012k58098 Mercy Defiance Hospital'),
(35920, 'https://ror.org/012m63179', 'en', 1, 'https://ror.org/012m63179 Leanchoil Hospital'),
(35921, 'https://ror.org/012p2hd37', 'no_lang_code', 1, 'https://ror.org/012p2hd37 Albany Molecular Research (Singapore)'),
(35922, 'https://ror.org/012q7s492', 'no_lang_code', 1, 'https://ror.org/012q7s492 Visual Sciences (United States)'),
(35923, 'https://ror.org/012sdxq48', 'en', 1, 'https://ror.org/012sdxq48 Arendal Municipality'),
(35924, 'https://ror.org/012ttce43', 'en', 1, 'https://ror.org/012ttce43 State Scientific Research Institute of Aviation Systems Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных систем'),
(35925, 'https://ror.org/012w90b89', 'en', 1, 'https://ror.org/012w90b89 Emirates Academy of Hospitality Management'),
(35926, 'https://ror.org/012xbj452', 'en', 1, 'https://ror.org/012xbj452 Fourth People’s Hospital of Jinan'),
(35927, 'https://ror.org/012zdsa19', 'no_lang_code', 1, 'https://ror.org/012zdsa19 Dips (Norway)'),
(35928, 'https://ror.org/0130rew69', 'en', 1, 'https://ror.org/0130rew69 Bon Secours Hospital'),
(35929, 'https://ror.org/013171h84', 'en', 1, 'https://ror.org/013171h84 Aware Global Hospital'),
(35930, 'https://ror.org/0133spp95', 'no_lang_code', 1, 'https://ror.org/0133spp95 Metal Expert (Poland)'),
(35931, 'https://ror.org/013572v77', 'no_lang_code', 1, 'https://ror.org/013572v77 ActionPhoto International (Norway)'),
(35932, 'https://ror.org/013796n77', 'pt', 1, 'https://ror.org/013796n77 Fundação de Apoio à Escola Técnica'),
(35933, 'https://ror.org/013afsb92', 'no_lang_code', 1, 'https://ror.org/013afsb92 Spiro Medical (Norway)'),
(35934, 'https://ror.org/013b2a427', 'en', 1, 'https://ror.org/013b2a427 Campbell Hospital'),
(35935, 'https://ror.org/013c4m264', 'no_lang_code', 1, 'https://ror.org/013c4m264 Waters (China)'),
(35936, 'https://ror.org/013c8e386', 'no_lang_code', 1, 'https://ror.org/013c8e386 S2G Biochem (Canada)'),
(35937, 'https://ror.org/013exrh58', 'no', 1, 'https://ror.org/013exrh58 Kanvas'),
(35938, 'https://ror.org/013pbge12', 'en', 1, 'https://ror.org/013pbge12 Poltegor Institute'),
(35939, 'https://ror.org/013v3p656', 'no_lang_code', 1, 'https://ror.org/013v3p656 Telzas (Poland)'),
(35940, 'https://ror.org/013z3dx97', 'en', 1, 'https://ror.org/013z3dx97 Eastern Idaho Technical College'),
(35941, 'https://ror.org/013zxek87', 'en', 1, 'https://ror.org/013zxek87 Hallym Polytechnic University ēæ°ęž—č–åæƒå¤§å­øę ” ķ•œė¦¼ģ„±ģ‹¬ėŒ€ķ•™źµ'),
(35942, 'https://ror.org/0140x9678', 'en', 1, 'https://ror.org/0140x9678 Jiujiang First People''s Hospital'),
(35943, 'https://ror.org/0141vbw04', 'en', 1, 'https://ror.org/0141vbw04 Piedmont Newnan Hospital'),
(35944, 'https://ror.org/01435bw87', 'no_lang_code', 1, 'https://ror.org/01435bw87 Itatex (Brazil)'),
(35945, 'https://ror.org/01436qt40', 'no_lang_code', 1, 'https://ror.org/01436qt40 Mednax (United States)'),
(35946, 'https://ror.org/0145cbg67', 'no_lang_code', 1, 'https://ror.org/0145cbg67 Adal (Poland)'),
(35947, 'https://ror.org/0146e2321', 'no_lang_code', 1, 'https://ror.org/0146e2321 Terra Viva Consultoria Ambiental (Brazil)'),
(35948, 'https://ror.org/01480s295', 'no_lang_code', 1, 'https://ror.org/01480s295 Pearson (United Kingdom)'),
(35949, 'https://ror.org/0148n2a41', 'no_lang_code', 1, 'https://ror.org/0148n2a41 Safelink (Norway)'),
(35950, 'https://ror.org/014cmtr13', 'en', 1, 'https://ror.org/014cmtr13 Unit for Social Innovation and Research Shipyard'),
(35951, 'https://ror.org/014crwt40', 'no_lang_code', 1, 'https://ror.org/014crwt40 Due MiljĆø (Norway)'),
(35952, 'https://ror.org/014dynf21', 'no_lang_code', 1, 'https://ror.org/014dynf21 InnSep (Norway)'),
(35953, 'https://ror.org/014eq5c38', 'en', 1, 'https://ror.org/014eq5c38 Adventist Health Simi Valley'),
(35954, 'https://ror.org/014eweh95', 'en', 1, 'https://ror.org/014eweh95 Division of Grants & Agreements'),
(35955, 'https://ror.org/014frm951', 'no_lang_code', 1, 'https://ror.org/014frm951 MĆøre Maritime (Norway)'),
(35956, 'https://ror.org/014has228', 'en', 1, 'https://ror.org/014has228 Fort Saskatchewan Community Hospital'),
(35957, 'https://ror.org/014kzqt55', 'no_lang_code', 1, 'https://ror.org/014kzqt55 Rheumatech (Norway)'),
(35958, 'https://ror.org/014m06j94', 'en', 1, 'https://ror.org/014m06j94 Sterkstroom Provincial Hospital'),
(35959, 'https://ror.org/014mmh993', 'no_lang_code', 1, 'https://ror.org/014mmh993 BIA (Slovenia)'),
(35960, 'https://ror.org/014nmkx89', 'en', 1, 'https://ror.org/014nmkx89 Mediterranean Institute for Advanced Studies'),
(35961, 'https://ror.org/014q50n13', 'no_lang_code', 1, 'https://ror.org/014q50n13 Advance SoluƧƵes em InformƔtica (Brazil)'),
(35962, 'https://ror.org/014rks409', 'en', 1, 'https://ror.org/014rks409 Finland University'),
(35963, 'https://ror.org/014snft51', 'no_lang_code', 1, 'https://ror.org/014snft51 Harpha Sea (Slovenia)'),
(35964, 'https://ror.org/014tr1k14', 'en', 1, 'https://ror.org/014tr1k14 Redland Hospital'),
(35965, 'https://ror.org/014wzed86', 'no_lang_code', 1, 'https://ror.org/014wzed86 Smiths Group (United Kingdom)'),
(35966, 'https://ror.org/014x3kb31', 'en', 1, 'https://ror.org/014x3kb31 Huntsville Hospital'),
(35967, 'https://ror.org/014x4zd69', 'en', 1, 'https://ror.org/014x4zd69 LewisGale Hospital Montgomery'),
(35968, 'https://ror.org/014ycqe77', 'fr', 1, 'https://ror.org/014ycqe77 Institut d''Ɖconomie Publique'),
(35969, 'https://ror.org/014yncy15', 'no_lang_code', 1, 'https://ror.org/014yncy15 XCOM Wireless (United States)'),
(35970, 'https://ror.org/014zbcz37', 'en', 1, 'https://ror.org/014zbcz37 Korea Centre for Atmospheric Environment Research'),
(35971, 'https://ror.org/0152tc190', 'en', 1, 'https://ror.org/0152tc190 Yantai Infectious Diseases Hospital'),
(35972, 'https://ror.org/0153jrn34', 'en', 1, 'https://ror.org/0153jrn34 Champlain Regional College Collège régional champlain de saint-lambert'),
(35973, 'https://ror.org/01549pn89', 'no_lang_code', 1, 'https://ror.org/01549pn89 West Group (Norway)'),
(35974, 'https://ror.org/01555zp21', 'en', 1, 'https://ror.org/01555zp21 Swiss School of Tourism and Hospitality'),
(35975, 'https://ror.org/01562cp57', 'en', 1, 'https://ror.org/01562cp57 Bethel Baptist Hospital'),
(35976, 'https://ror.org/0156b0f63', 'en', 1, 'https://ror.org/0156b0f63 Board of European Students of Technology'),
(35977, 'https://ror.org/0156shp22', 'en', 1, 'https://ror.org/0156shp22 Bon Secours Hospital Dublin'),
(35978, 'https://ror.org/0157zmb13', 'en', 1, 'https://ror.org/0157zmb13 Citrus College'),
(35979, 'https://ror.org/0158j3249', 'no_lang_code', 1, 'https://ror.org/0158j3249 FelleskjĆøpet Agri (Norway)'),
(35980, 'https://ror.org/01599c412', 'en', 1, 'https://ror.org/01599c412 Lower Saxony State Museum NiedersƤchsisches Landesmuseum Hannover'),
(35981, 'https://ror.org/0159fax30', 'no', 1, 'https://ror.org/0159fax30 Porsanger Kommune'),
(35982, 'https://ror.org/0159gyh21', 'no_lang_code', 1, 'https://ror.org/0159gyh21 Telekom Slovenije (Slovenia)'),
(35983, 'https://ror.org/015aem925', 'en', 1, 'https://ror.org/015aem925 New Generation University College'),
(35984, 'https://ror.org/015ar5551', 'pt', 1, 'https://ror.org/015ar5551 Secretaria de Ciência, Tecnologia e Inovação da Marinha'),
(35985, 'https://ror.org/015ck6z19', 'no_lang_code', 1, 'https://ror.org/015ck6z19 G3 Ungplanter (Norway)'),
(35986, 'https://ror.org/015ckc894', 'no_lang_code', 1, 'https://ror.org/015ckc894 Aibel (Norway)'),
(35987, 'https://ror.org/015g7kj97', 'no_lang_code', 1, 'https://ror.org/015g7kj97 Xrgia (Norway)'),
(35988, 'https://ror.org/015g8zg50', 'en', 1, 'https://ror.org/015g8zg50 Royal Buckinghamshire Hospital'),
(35989, 'https://ror.org/015gtm372', 'en', 1, 'https://ror.org/015gtm372 Steve Biko Akademiese Hospitaal Steve Biko Hospital'),
(35990, 'https://ror.org/015jsx554', 'no_lang_code', 1, 'https://ror.org/015jsx554 Zel Technologies (United States)'),
(35991, 'https://ror.org/015ndme87', 'en', 1, 'https://ror.org/015ndme87 Dream Adaptive Recreation'),
(35992, 'https://ror.org/015tqbb95', 'en', 1, 'https://ror.org/015tqbb95 Tumor Hospital of Xinjiang Medical University'),
(35993, 'https://ror.org/015w8tk05', 'en', 1, 'https://ror.org/015w8tk05 Hospital de Olhos Sadalla Amin Ghanem Sadalla Amin Ghanem Eye Hospital'),
(35994, 'https://ror.org/015z4kn26', 'en', 1, 'https://ror.org/015z4kn26 117th Hospital of People''s Liberation Army'),
(35995, 'https://ror.org/0162adx59', 'en', 1, 'https://ror.org/0162adx59 Hull College'),
(35996, 'https://ror.org/016455p20', 'no_lang_code', 1, 'https://ror.org/016455p20 OMBE Plast (Norway)'),
(35997, 'https://ror.org/01653mw07', 'en', 1, 'https://ror.org/01653mw07 Bệnh viện ĐƠ Nįŗµng Da Nang Hospital'),
(35998, 'https://ror.org/016646t85', 'en', 1, 'https://ror.org/016646t85 Business Region Bergen'),
(35999, 'https://ror.org/016bw3t53', 'en', 1, 'https://ror.org/016bw3t53 Second Hospital of Yichang'),
(36000, 'https://ror.org/016ftvg65', 'no_lang_code', 1, 'https://ror.org/016ftvg65 Lytix Biopharma (Norway)'),
(36001, 'https://ror.org/016gp0w25', 'no_lang_code', 1, 'https://ror.org/016gp0w25 Emerson (Norway)'),
(36002, 'https://ror.org/016j6rk60', 'en', 1, 'https://ror.org/016j6rk60 Accra Technical University'),
(36003, 'https://ror.org/016jvas21', 'en', 1, 'https://ror.org/016jvas21 T1D Exchange'),
(36004, 'https://ror.org/016k98t76', 'en', 1, 'https://ror.org/016k98t76 Nanjing Traditional Chinese Medicine Hospital'),
(36005, 'https://ror.org/016mx5748', 'en', 1, 'https://ror.org/016mx5748 Monash Children’s Hospital'),
(36006, 'https://ror.org/016mx6p04', 'no_lang_code', 1, 'https://ror.org/016mx6p04 Liegruppen (Norway)'),
(36007, 'https://ror.org/016peqn40', 'no_lang_code', 1, 'https://ror.org/016peqn40 Teknisk Lys (Norway)'),
(36008, 'https://ror.org/016pvmh77', 'no_lang_code', 1, 'https://ror.org/016pvmh77 Botngaard (Norway)'),
(36009, 'https://ror.org/016qgdx27', 'no_lang_code', 1, 'https://ror.org/016qgdx27 ATM Brovig (Norway)'),
(36010, 'https://ror.org/016sv8t06', 'no_lang_code', 1, 'https://ror.org/016sv8t06 Biovotec (Norway)'),
(36011, 'https://ror.org/016thfw32', 'no_lang_code', 1, 'https://ror.org/016thfw32 Kjemi (Norway)'),
(36012, 'https://ror.org/016wzar13', 'no_lang_code', 1, 'https://ror.org/016wzar13 Arex Defense (Slovenia)'),
(36013, 'https://ror.org/016yah886', 'en', 1, 'https://ror.org/016yah886 Norwegian Institute of Local History'),
(36014, 'https://ror.org/016yh0k66', 'pl', 1, 'https://ror.org/016yh0k66 Wojskowy Instytut Chemii i Radiometrii'),
(36015, 'https://ror.org/016zetd68', 'no_lang_code', 1, 'https://ror.org/016zetd68 iExcel (Norway)'),
(36016, 'https://ror.org/0170a8r40', 'no_lang_code', 1, 'https://ror.org/0170a8r40 Humanpass (South Korea)'),
(36017, 'https://ror.org/0170m4k80', 'en', 1, 'https://ror.org/0170m4k80 Los Angeles Pierce College'),
(36018, 'https://ror.org/0170ys284', 'en', 1, 'https://ror.org/0170ys284 Connect'),
(36019, 'https://ror.org/0171xsf67', 'no_lang_code', 1, 'https://ror.org/0171xsf67 Response Nordic (Norway)'),
(36020, 'https://ror.org/017365f98', 'no_lang_code', 1, 'https://ror.org/017365f98 Devworks Game Technology (Brazil)'),
(36021, 'https://ror.org/017422k09', 'no_lang_code', 1, 'https://ror.org/017422k09 Centro Técnico de Automação (Brazil)'),
(36022, 'https://ror.org/0174nta86', 'es', 1, 'https://ror.org/0174nta86 Hospital Alto Guadalquivir'),
(36023, 'https://ror.org/0175hgp63', 'en', 1, 'https://ror.org/0175hgp63 Malda Medical College and Hospital'),
(36024, 'https://ror.org/0176ge440', 'no_lang_code', 1, 'https://ror.org/0176ge440 IV Group (Norway)'),
(36025, 'https://ror.org/0177s1090', 'es', 1, 'https://ror.org/0177s1090 Instituto Tecnológico de Nogales'),
(36026, 'https://ror.org/017aag272', 'no_lang_code', 1, 'https://ror.org/017aag272 Scanship (Norway)'),
(36027, 'https://ror.org/017apa262', 'no_lang_code', 1, 'https://ror.org/017apa262 GurskĆøy (Norway)'),
(36028, 'https://ror.org/017aqqw29', 'en', 1, 'https://ror.org/017aqqw29 Brazilian Society for the Advancement of Science Sociedade Brasileira para o Progresso da CiĆŖncia'),
(36029, 'https://ror.org/017bpsz44', 'no_lang_code', 1, 'https://ror.org/017bpsz44 Rejonowe Przedsiębiorstwo Wodociągów i Kanalizacji W Sosnowcu (Poland)'),
(36030, 'https://ror.org/017c6yw85', 'no_lang_code', 1, 'https://ror.org/017c6yw85 OSO Hotwater (Norway)'),
(36031, 'https://ror.org/017cmyy42', 'en', 1, 'https://ror.org/017cmyy42 Falmouth Hospital'),
(36032, 'https://ror.org/017em7993', 'no_lang_code', 1, 'https://ror.org/017em7993 Aerocosmos Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ мониторинга ŠŠ­Š ŠžŠšŠžŠ”ŠœŠžŠ”'),
(36033, 'https://ror.org/017enfr88', 'en', 1, 'https://ror.org/017enfr88 Franciszek Górski Institute of Plant Physiology Instytut Fizjologii Roślin im. Franciszek Górskiego'),
(36034, 'https://ror.org/017fps450', 'no_lang_code', 1, 'https://ror.org/017fps450 Fornebu Consulting (Norway)'),
(36035, 'https://ror.org/017fyx225', 'en', 1, 'https://ror.org/017fyx225 Institute of Art Instytut Sztuki Polskiej Akademii Nauk'),
(36036, 'https://ror.org/017ga1x09', 'no_lang_code', 1, 'https://ror.org/017ga1x09 Level-5 (Japan)'),
(36037, 'https://ror.org/017gwgp39', 'no_lang_code', 1, 'https://ror.org/017gwgp39 Blue Dot Solutions (Poland)'),
(36038, 'https://ror.org/017hmpr31', 'no_lang_code', 1, 'https://ror.org/017hmpr31 Narcissus Pesquisa ClĆ­nica e Biotecnologia (Brazil)'),
(36039, 'https://ror.org/017hmzz19', 'es', 1, 'https://ror.org/017hmzz19 Hospital Carlos Van Buren'),
(36040, 'https://ror.org/017j15308', 'en', 1, 'https://ror.org/017j15308 University Press of Florida'),
(36041, 'https://ror.org/017jdxf89', 'no_lang_code', 1, 'https://ror.org/017jdxf89 Sibanye Gold (South Africa)'),
(36042, 'https://ror.org/017jtm929', 'no', 1, 'https://ror.org/017jtm929 Polaria'),
(36043, 'https://ror.org/017q09r90', 'no_lang_code', 1, 'https://ror.org/017q09r90 Otech Marine Services (Norway)'),
(36044, 'https://ror.org/017qbxe07', 'pt', 1, 'https://ror.org/017qbxe07 Centro Infantil Boldrini'),
(36045, 'https://ror.org/017qjg066', 'en', 1, 'https://ror.org/017qjg066 Dahua Hospital'),
(36046, 'https://ror.org/017s6v868', 'en', 1, 'https://ror.org/017s6v868 Jilin Vocational College of Industry and Technology'),
(36047, 'https://ror.org/017t8rw26', 'no_lang_code', 1, 'https://ror.org/017t8rw26 Tramppo (Brazil)'),
(36048, 'https://ror.org/017vkhg73', 'it', 1, 'https://ror.org/017vkhg73 Azienda Ospedaliera di Valtellina e Valchiavenna'),
(36049, 'https://ror.org/017vpsa98', 'no_lang_code', 1, 'https://ror.org/017vpsa98 Redcord (Norway)'),
(36050, 'https://ror.org/017vpw228', 'en', 1, 'https://ror.org/017vpw228 Great Plains College'),
(36051, 'https://ror.org/017wtg883', 'no_lang_code', 1, 'https://ror.org/017wtg883 Sogn Aqua (Norway)'),
(36052, 'https://ror.org/017x9j395', 'en', 1, 'https://ror.org/017x9j395 Indiana Orthopaedic Hospital'),
(36053, 'https://ror.org/017za6717', 'no_lang_code', 1, 'https://ror.org/017za6717 Dignio (Norway)'),
(36054, 'https://ror.org/018049485', 'no_lang_code', 1, 'https://ror.org/018049485 Enghouse Systems (Norway)'),
(36055, 'https://ror.org/0180r1p81', 'en', 1, 'https://ror.org/0180r1p81 Pellervo Economic Research'),
(36056, 'https://ror.org/0182n4f20', 'en', 1, 'https://ror.org/0182n4f20 National Center for University Entrance Examinations ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§å­¦å…„č©¦ć‚»ćƒ³ć‚æćƒ¼'),
(36057, 'https://ror.org/01846wa75', 'no_lang_code', 1, 'https://ror.org/01846wa75 Profixio (Norway)'),
(36058, 'https://ror.org/0184f7469', 'de', 1, 'https://ror.org/0184f7469 Alb Fils Kliniken'),
(36059, 'https://ror.org/0184ryh50', 'no', 1, 'https://ror.org/0184ryh50 Hospital Organiser'),
(36060, 'https://ror.org/0185jey51', 'fr', 1, 'https://ror.org/0185jey51 French for School of High Studies in Engineering Hautes Ɖtudes d''IngĆ©nieur'),
(36061, 'https://ror.org/018674f79', 'no_lang_code', 1, 'https://ror.org/018674f79 Laboratorium Kosmetyczne Dr Irena Eris (Poland)'),
(36062, 'https://ror.org/0186a6222', 'no_lang_code', 1, 'https://ror.org/0186a6222 Grieg Seafood (Norway)'),
(36063, 'https://ror.org/0187b5307', 'no_lang_code', 1, 'https://ror.org/0187b5307 Fermentec (Brazil)'),
(36064, 'https://ror.org/0187ced18', 'no_lang_code', 1, 'https://ror.org/0187ced18 Furore film (Norway)'),
(36065, 'https://ror.org/0187k6t98', 'no_lang_code', 1, 'https://ror.org/0187k6t98 SES Europe (Norway)'),
(36066, 'https://ror.org/01882y777', 'en', 1, 'https://ror.org/01882y777 Stony Brook Medicine'),
(36067, 'https://ror.org/0188h2v81', 'en', 1, 'https://ror.org/0188h2v81 Patton State Hospital'),
(36068, 'https://ror.org/0188hvh39', 'tr', 1, 'https://ror.org/0188hvh39 Gelişim Üniversitesi'),
(36069, 'https://ror.org/0189bb227', 'no_lang_code', 1, 'https://ror.org/0189bb227 Alcontrol Laboratories (Norway)'),
(36070, 'https://ror.org/018a0bk66', 'no_lang_code', 1, 'https://ror.org/018a0bk66 Rolls-Royce (Norway)'),
(36071, 'https://ror.org/018ay6c72', 'no_lang_code', 1, 'https://ror.org/018ay6c72 Beisfjord Sementvarefabrikk (Norway)'),
(36072, 'https://ror.org/018baft35', 'en', 1, 'https://ror.org/018baft35 Cochise College'),
(36073, 'https://ror.org/018c7c068', 'en', 1, 'https://ror.org/018c7c068 JiangSu Armed Police General Hospital');
INSERT INTO `rors` VALUES
(36074, 'https://ror.org/018ced875', 'en', 1, 'https://ror.org/018ced875 Federal University Lokoja'),
(36075, 'https://ror.org/018dznw39', 'en', 1, 'https://ror.org/018dznw39 Rubaga Hospital'),
(36076, 'https://ror.org/018fymd62', 'en', 1, 'https://ror.org/018fymd62 Kamla Nehru Memorial Hospital'),
(36077, 'https://ror.org/018gwvf53', 'no_lang_code', 1, 'https://ror.org/018gwvf53 Eureka Pumps (Norway)'),
(36078, 'https://ror.org/018jfg264', 'no_lang_code', 1, 'https://ror.org/018jfg264 Seacalx (Norway)'),
(36079, 'https://ror.org/018jj2831', 'no_lang_code', 1, 'https://ror.org/018jj2831 Nanomed (Brazil)'),
(36080, 'https://ror.org/018mn5n05', 'no_lang_code', 1, 'https://ror.org/018mn5n05 Feed Control (Norway)'),
(36081, 'https://ror.org/018mr1k06', 'no_lang_code', 1, 'https://ror.org/018mr1k06 Četrta Pot (Slovenia)'),
(36082, 'https://ror.org/018nftw61', 'no_lang_code', 1, 'https://ror.org/018nftw61 Dataloy (Norway)'),
(36083, 'https://ror.org/018nk4a27', 'en', 1, 'https://ror.org/018nk4a27 Global Open University'),
(36084, 'https://ror.org/018pest88', 'en', 1, 'https://ror.org/018pest88 Cradock Provincial Hospital'),
(36085, 'https://ror.org/018rc2s15', 'no_lang_code', 1, 'https://ror.org/018rc2s15 NorSun (Norway)'),
(36086, 'https://ror.org/018s9hj09', 'sl', 1, 'https://ror.org/018s9hj09 InŔtitut za Javno Upravo'),
(36087, 'https://ror.org/018samx11', 'en', 1, 'https://ror.org/018samx11 Zone01 Robotics'),
(36088, 'https://ror.org/018tgms75', 'no_lang_code', 1, 'https://ror.org/018tgms75 Microdesign Informatica Tecnologia Industria e Comerico (Brazil)'),
(36089, 'https://ror.org/018w84g35', 'pt', 1, 'https://ror.org/018w84g35 Instituto Barretos de Tecnologia'),
(36090, 'https://ror.org/018wm7s07', 'en', 1, 'https://ror.org/018wm7s07 Coal Mining Museum in Zabrze'),
(36091, 'https://ror.org/018wmr002', 'no_lang_code', 1, 'https://ror.org/018wmr002 ƅkrehamn TrĆ„lbĆøteri (Norway)'),
(36092, 'https://ror.org/018xkp798', 'no_lang_code', 1, 'https://ror.org/018xkp798 C-Feed (Norway)'),
(36093, 'https://ror.org/018zf4j27', 'no', 1, 'https://ror.org/018zf4j27 Gjerdrum kommune'),
(36094, 'https://ror.org/0197t7j38', 'en', 1, 'https://ror.org/0197t7j38 Bon Secours Hospital Cork'),
(36095, 'https://ror.org/0198mwj18', 'en', 1, 'https://ror.org/0198mwj18 North Norwegian Art Center'),
(36096, 'https://ror.org/0198yxk45', 'no_lang_code', 1, 'https://ror.org/0198yxk45 LinkGen (Brazil)'),
(36097, 'https://ror.org/019aeg752', 'en', 1, 'https://ror.org/019aeg752 Bryansk State Agrarian University Š‘Ń€ŃŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36098, 'https://ror.org/019bexy50', 'hu', 1, 'https://ror.org/019bexy50 Szent BorbÔla KórhÔz'),
(36099, 'https://ror.org/019c3k705', 'no_lang_code', 1, 'https://ror.org/019c3k705 Vitality Innovation (Norway)'),
(36100, 'https://ror.org/019cg0811', 'pt', 1, 'https://ror.org/019cg0811 Instituto Histórico e GeogrÔfico Brasileiro'),
(36101, 'https://ror.org/019cs7136', 'no_lang_code', 1, 'https://ror.org/019cs7136 Atmel (Norway)'),
(36102, 'https://ror.org/019cw2518', 'en', 1, 'https://ror.org/019cw2518 Alameda County Public Health Department'),
(36103, 'https://ror.org/019cxby81', 'en', 1, 'https://ror.org/019cxby81 Biblioteca Nacional do Brasil National Library of Brazil'),
(36104, 'https://ror.org/019dzwc76', 'no', 1, 'https://ror.org/019dzwc76 Lebesby kommune'),
(36105, 'https://ror.org/019f0qd57', 'no_lang_code', 1, 'https://ror.org/019f0qd57 Sognefrukt (Norway)'),
(36106, 'https://ror.org/019gdfm13', 'es', 1, 'https://ror.org/019gdfm13 Hospital Universitario Rey Juan Carlos'),
(36107, 'https://ror.org/019h74q49', 'no_lang_code', 1, 'https://ror.org/019h74q49 PPUH Bryk Witold Bryk (Poland)'),
(36108, 'https://ror.org/019hjw009', 'en', 1, 'https://ror.org/019hjw009 Fraunhofer Institute for Industrial Mathematics Fraunhofer-Institut für Techno- und Wirtschaftsmathematik'),
(36109, 'https://ror.org/019nn6105', 'no_lang_code', 1, 'https://ror.org/019nn6105 BW Group (Norway)'),
(36110, 'https://ror.org/019q0kc03', 'no_lang_code', 1, 'https://ror.org/019q0kc03 Biowater Technology (Norway)'),
(36111, 'https://ror.org/019rdg506', 'no_lang_code', 1, 'https://ror.org/019rdg506 Saiseikaisenri Hospital'),
(36112, 'https://ror.org/019sgcz74', 'en', 1, 'https://ror.org/019sgcz74 Slovenian Centre of Excellence for Space Sciences and Technologies'),
(36113, 'https://ror.org/019thgp94', 'en', 1, 'https://ror.org/019thgp94 Adventist Health Community Care-Hanford'),
(36114, 'https://ror.org/019wdt926', 'no_lang_code', 1, 'https://ror.org/019wdt926 Himgiri Zee University'),
(36115, 'https://ror.org/019wmzy95', 'no_lang_code', 1, 'https://ror.org/019wmzy95 VS Safety (Norway)'),
(36116, 'https://ror.org/019wpez42', 'no_lang_code', 1, 'https://ror.org/019wpez42 Proteket (Norway)'),
(36117, 'https://ror.org/019yny421', 'en', 1, 'https://ror.org/019yny421 Santa Paula Hospital'),
(36118, 'https://ror.org/01a1mq059', 'en', 1, 'https://ror.org/01a1mq059 ARC Centre of Excellence in Plant Energy Biology'),
(36119, 'https://ror.org/01a2gef28', 'en', 1, 'https://ror.org/01a2gef28 Nanjing Maternity and Child Health Care Hospital'),
(36120, 'https://ror.org/01a48y329', 'es', 1, 'https://ror.org/01a48y329 Hospital Punta Pacifica'),
(36121, 'https://ror.org/01a62v145', 'en', 1, 'https://ror.org/01a62v145 Leibniz Institute of Vegetable and Ornamental Crops Leibniz-Institut für Gemüse- und Zierpflanzenbau'),
(36122, 'https://ror.org/01a66pc38', 'no_lang_code', 1, 'https://ror.org/01a66pc38 MRA Indústria de Equipamentos EletrÓnicos (Brazil)'),
(36123, 'https://ror.org/01a6v1434', 'no_lang_code', 1, 'https://ror.org/01a6v1434 Moltres (Norway)'),
(36124, 'https://ror.org/01a7fxy42', 'en', 1, 'https://ror.org/01a7fxy42 St. Brendan''s Hospital'),
(36125, 'https://ror.org/01a80cj23', 'no_lang_code', 1, 'https://ror.org/01a80cj23 Novartis (Netherlands)'),
(36126, 'https://ror.org/01aaadk61', 'no_lang_code', 1, 'https://ror.org/01aaadk61 JB Well Solutions (Norway)'),
(36127, 'https://ror.org/01abdqw97', 'no_lang_code', 1, 'https://ror.org/01abdqw97 Dhulikhel Hospital'),
(36128, 'https://ror.org/01absdg22', 'en', 1, 'https://ror.org/01absdg22 Saidu Teaching Hospital'),
(36129, 'https://ror.org/01abzeb36', 'en', 1, 'https://ror.org/01abzeb36 Bladen Community College'),
(36130, 'https://ror.org/01adnc146', 'no_lang_code', 1, 'https://ror.org/01adnc146 CFlex (Brazil)'),
(36131, 'https://ror.org/01adsn089', 'no_lang_code', 1, 'https://ror.org/01adsn089 Metaltech Sorocaba Equipamentos e ServiƧos (Brazil)'),
(36132, 'https://ror.org/01adx2n38', 'no_lang_code', 1, 'https://ror.org/01adx2n38 Viken Skog (Norway)'),
(36133, 'https://ror.org/01af24v42', 'es', 1, 'https://ror.org/01af24v42 Instituto Tecnológico de Mérida'),
(36134, 'https://ror.org/01afg1s08', 'no_lang_code', 1, 'https://ror.org/01afg1s08 Reime (Norway)'),
(36135, 'https://ror.org/01ahbf530', 'en', 1, 'https://ror.org/01ahbf530 Silverton Hospital'),
(36136, 'https://ror.org/01aj5dy09', 'en', 1, 'https://ror.org/01aj5dy09 Marquette General Hospital'),
(36137, 'https://ror.org/01ajzj063', 'no_lang_code', 1, 'https://ror.org/01ajzj063 GMV Innovating Solutions (Poland)'),
(36138, 'https://ror.org/01am5a204', 'en', 1, 'https://ror.org/01am5a204 Sobramfa – Medical Education and Humanism'),
(36139, 'https://ror.org/01ams7d26', 'pt', 1, 'https://ror.org/01ams7d26 Sociedade Brasileira de Alimentação e Nutrição'),
(36140, 'https://ror.org/01apaq485', 'en', 1, 'https://ror.org/01apaq485 Fort England Psigiatriese hospitaal Fort England Psychiatric Hospital'),
(36141, 'https://ror.org/01ar8dr59', 'en', 1, 'https://ror.org/01ar8dr59 Division of Chemistry'),
(36142, 'https://ror.org/01ark0470', 'en', 1, 'https://ror.org/01ark0470 Abudwak Maternity and Children''s Hospital Isbitaalka Caabudwaaq ee Daryeelka Umulaha iyo Caruurta'),
(36143, 'https://ror.org/01arxq231', 'no_lang_code', 1, 'https://ror.org/01arxq231 Cobuilder (Norway)'),
(36144, 'https://ror.org/01b1fn946', 'en', 1, 'https://ror.org/01b1fn946 American College, Madurai'),
(36145, 'https://ror.org/01b2feq51', 'no_lang_code', 1, 'https://ror.org/01b2feq51 Envit (Slovenia)'),
(36146, 'https://ror.org/01b923653', 'no_lang_code', 1, 'https://ror.org/01b923653 Zebra Biologics (United States)'),
(36147, 'https://ror.org/01bd9d715', 'en', 1, 'https://ror.org/01bd9d715 Kamuli Mission Hospital'),
(36148, 'https://ror.org/01bdmd194', 'de', 1, 'https://ror.org/01bdmd194 Rems-Murr-Klinikum'),
(36149, 'https://ror.org/01befse58', 'en', 1, 'https://ror.org/01befse58 Bryn Athyn College'),
(36150, 'https://ror.org/01bfb0f53', 'no_lang_code', 1, 'https://ror.org/01bfb0f53 Maritime Robotics (Norway)'),
(36151, 'https://ror.org/01bgked92', 'fr', 1, 'https://ror.org/01bgked92 Centre de SantƩ et de Services Sociaux de la Montagne'),
(36152, 'https://ror.org/01bhgpn34', 'no_lang_code', 1, 'https://ror.org/01bhgpn34 TRAK (Poland)'),
(36153, 'https://ror.org/01bjya005', 'en', 1, 'https://ror.org/01bjya005 Darbhanga Medical College and Hospital'),
(36154, 'https://ror.org/01bkvqx83', 'en', 1, 'https://ror.org/01bkvqx83 Affiliated Hospital of Hangzhou Normal University'),
(36155, 'https://ror.org/01bnqts78', 'en', 1, 'https://ror.org/01bnqts78 Lake Washington Institute of Technology'),
(36156, 'https://ror.org/01bpdjm13', 'en', 1, 'https://ror.org/01bpdjm13 Keiser University Latin American Campus'),
(36157, 'https://ror.org/01bqcs587', 'en', 1, 'https://ror.org/01bqcs587 Holy Apostles College and Seminary'),
(36158, 'https://ror.org/01bqp1107', 'no_lang_code', 1, 'https://ror.org/01bqp1107 Selfa (Norway)'),
(36159, 'https://ror.org/01bqtxm09', 'no_lang_code', 1, 'https://ror.org/01bqtxm09 VIsport (Slovenia)'),
(36160, 'https://ror.org/01br8pc86', 'no_lang_code', 1, 'https://ror.org/01br8pc86 Allskog (Norway)'),
(36161, 'https://ror.org/01bre2z07', 'en', 1, 'https://ror.org/01bre2z07 Fremont Memorial Hospital'),
(36162, 'https://ror.org/01brm2x11', 'de', 1, 'https://ror.org/01brm2x11 Diakovere'),
(36163, 'https://ror.org/01brr5229', 'en', 1, 'https://ror.org/01brr5229 Brazilian Radiation Protection Society Sociedade Brasileira de Proteção Radiológica'),
(36164, 'https://ror.org/01brz0r85', 'pt', 1, 'https://ror.org/01brz0r85 Instituto Irmãs Santa Marcelina'),
(36165, 'https://ror.org/01btsgc53', 'no_lang_code', 1, 'https://ror.org/01btsgc53 Miejskie Przedsiebiorstwo Wodociągów i Kanalizacji (Poland)'),
(36166, 'https://ror.org/01by4sz34', 'no_lang_code', 1, 'https://ror.org/01by4sz34 Ultizyme International (Japan)'),
(36167, 'https://ror.org/01c0exk17', 'en', 1, 'https://ror.org/01c0exk17 First Affiliated Hospital of Heilongjiang University of Chinese Medicine'),
(36168, 'https://ror.org/01c1w2064', 'no_lang_code', 1, 'https://ror.org/01c1w2064 Zakład Wodociągów i Kanalizacji (Poland)'),
(36169, 'https://ror.org/01c5r3056', 'en', 1, 'https://ror.org/01c5r3056 Holy Spirit Hospital'),
(36170, 'https://ror.org/01c6xft10', 'no_lang_code', 1, 'https://ror.org/01c6xft10 ClampOn (Norway)'),
(36171, 'https://ror.org/01c7p3v19', 'no_lang_code', 1, 'https://ror.org/01c7p3v19 Japan Aviation Electronics Industry (Japan) ę—„ęœ¬čˆŖē©ŗé›»å­å·„ę„­'),
(36172, 'https://ror.org/01ca46h26', 'en', 1, 'https://ror.org/01ca46h26 Association of Minority Health Professions Schools'),
(36173, 'https://ror.org/01cay9k79', 'en', 1, 'https://ror.org/01cay9k79 Sri Ramachandra Medical Centre'),
(36174, 'https://ror.org/01cb7ff94', 'no_lang_code', 1, 'https://ror.org/01cb7ff94 Nordic Aquafarms (Norway)'),
(36175, 'https://ror.org/01cbjg783', 'en', 1, 'https://ror.org/01cbjg783 Mercy St. Charles Hospital'),
(36176, 'https://ror.org/01cce5t38', 'en', 1, 'https://ror.org/01cce5t38 Silchar Medical College and Hospital'),
(36177, 'https://ror.org/01ccpfp25', 'en', 1, 'https://ror.org/01ccpfp25 Danat Al Emarat Women & Children’s Hospital'),
(36178, 'https://ror.org/01cdn3r29', 'fr', 1, 'https://ror.org/01cdn3r29 Ɖcole Nationale SupĆ©rieure des Beaux-Arts, Ɖcole des beaux-arts Ɖcole des Beaux-Arts'),
(36179, 'https://ror.org/01cj6rb73', 'no_lang_code', 1, 'https://ror.org/01cj6rb73 Ibsentelecom (Norway)'),
(36180, 'https://ror.org/01cjxj157', 'no_lang_code', 1, 'https://ror.org/01cjxj157 Mestre Dos Mares (Brazil)'),
(36181, 'https://ror.org/01cmrry21', 'en', 1, 'https://ror.org/01cmrry21 Royal Hospital for Neuro-disability'),
(36182, 'https://ror.org/01cnbre95', 'no_lang_code', 1, 'https://ror.org/01cnbre95 Suzhou Creative Nano-carbon (China)'),
(36183, 'https://ror.org/01cnqh417', 'en', 1, 'https://ror.org/01cnqh417 Mount Elizabeth Novena Hospital'),
(36184, 'https://ror.org/01cs6sy07', 'pt', 1, 'https://ror.org/01cs6sy07 Faculdade Unida de Suzano'),
(36185, 'https://ror.org/01cskd113', 'en', 1, 'https://ror.org/01cskd113 Al-Ameen Pre University College'),
(36186, 'https://ror.org/01ct33c94', 'no_lang_code', 1, 'https://ror.org/01ct33c94 Eccos IndĆŗstria MetalĆŗrgica (Brazil)'),
(36187, 'https://ror.org/01ctwqf32', 'no_lang_code', 1, 'https://ror.org/01ctwqf32 BrynslĆøkken (Norway)'),
(36188, 'https://ror.org/01cydpj49', 'no_lang_code', 1, 'https://ror.org/01cydpj49 InNano (Norway)'),
(36189, 'https://ror.org/01cyhds50', 'no_lang_code', 1, 'https://ror.org/01cyhds50 Eyetec Equipamentos Oftalmicos (Brazil)'),
(36190, 'https://ror.org/01d2w7m45', 'no_lang_code', 1, 'https://ror.org/01d2w7m45 Inovax (Brazil)'),
(36191, 'https://ror.org/01d3knk22', 'no_lang_code', 1, 'https://ror.org/01d3knk22 Clarity Water Treatment Systems (Norway)'),
(36192, 'https://ror.org/01d43dx11', 'no_lang_code', 1, 'https://ror.org/01d43dx11 Lectinect (Norway)'),
(36193, 'https://ror.org/01d5ccc15', 'de', 1, 'https://ror.org/01d5ccc15 Literaturarchiv'),
(36194, 'https://ror.org/01d7hm230', 'en', 1, 'https://ror.org/01d7hm230 Christian Hospital Serkawn'),
(36195, 'https://ror.org/01d92zj09', 'no_lang_code', 1, 'https://ror.org/01d92zj09 Oilfield Technology Group (Norway)'),
(36196, 'https://ror.org/01d9byf14', 'en', 1, 'https://ror.org/01d9byf14 County Governor of Sogn og Fjordane'),
(36197, 'https://ror.org/01da73p86', 'no_lang_code', 1, 'https://ror.org/01da73p86 Keep-it Technologies (Norway)'),
(36198, 'https://ror.org/01dafpx49', 'en', 1, 'https://ror.org/01dafpx49 Buluba Hospital'),
(36199, 'https://ror.org/01dcvkj86', 'en', 1, 'https://ror.org/01dcvkj86 Medenta'),
(36200, 'https://ror.org/01dd2km13', 'no_lang_code', 1, 'https://ror.org/01dd2km13 Bruning (Brazil)'),
(36201, 'https://ror.org/01ddmgr89', 'no_lang_code', 1, 'https://ror.org/01ddmgr89 Norhard (Norway)'),
(36202, 'https://ror.org/01ddx3048', 'no_lang_code', 1, 'https://ror.org/01ddx3048 Transformex (Poland)'),
(36203, 'https://ror.org/01dfmkn15', 'no_lang_code', 1, 'https://ror.org/01dfmkn15 Sky Island Alliance (United States)'),
(36204, 'https://ror.org/01dh5eq20', 'no_lang_code', 1, 'https://ror.org/01dh5eq20 Zakład Budowy Urządzeń Spawalniczych (Poland)'),
(36205, 'https://ror.org/01djj8165', 'no_lang_code', 1, 'https://ror.org/01djj8165 Genderguide (Norway)'),
(36206, 'https://ror.org/01dm6f769', 'no_lang_code', 1, 'https://ror.org/01dm6f769 Forus NƦringspark (Norway)'),
(36207, 'https://ror.org/01dqpe181', 'no_lang_code', 1, 'https://ror.org/01dqpe181 EyeLife (Norway)'),
(36208, 'https://ror.org/01dscr755', 'no_lang_code', 1, 'https://ror.org/01dscr755 Termorens (Norway)'),
(36209, 'https://ror.org/01dv0vw10', 'en', 1, 'https://ror.org/01dv0vw10 Bahrain Polytechnic ŲØŁˆŁ„ŁŠŲŖŁƒŁ†Łƒ Ų§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(36210, 'https://ror.org/01dvjey82', 'en', 1, 'https://ror.org/01dvjey82 Shellharbour Hospital'),
(36211, 'https://ror.org/01dvk8489', 'en', 1, 'https://ror.org/01dvk8489 Finley Hospital'),
(36212, 'https://ror.org/01dvw2p26', 'en', 1, 'https://ror.org/01dvw2p26 Akces Lab'),
(36213, 'https://ror.org/01dx1gy36', 'no_lang_code', 1, 'https://ror.org/01dx1gy36 MMOptics (Brazil)'),
(36214, 'https://ror.org/01dxv3z76', 'no_lang_code', 1, 'https://ror.org/01dxv3z76 Tech Damper (Norway)'),
(36215, 'https://ror.org/01dy1y679', 'en', 1, 'https://ror.org/01dy1y679 Nakornthon Hospital'),
(36216, 'https://ror.org/01e00rm10', 'no_lang_code', 1, 'https://ror.org/01e00rm10 Tecnologia e CiĆŖncia Educacional (Brazil)'),
(36217, 'https://ror.org/01e1z6807', 'no_lang_code', 1, 'https://ror.org/01e1z6807 Photocure (Norway)'),
(36218, 'https://ror.org/01e2adt21', 'en', 1, 'https://ror.org/01e2adt21 School of Business and Management'),
(36219, 'https://ror.org/01e3zyd27', 'no_lang_code', 1, 'https://ror.org/01e3zyd27 Pelias Norsk Skadedyrkontroll (Norway)'),
(36220, 'https://ror.org/01e4tbd96', 'en', 1, 'https://ror.org/01e4tbd96 National University of Management įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž‡įž¶įžįž·įž‚įŸ’įžšįž”įŸ‹įž‚įŸ’įžšįž„'),
(36221, 'https://ror.org/01e6n7467', 'no_lang_code', 1, 'https://ror.org/01e6n7467 Synthon Especialidades QuĆ­micas (Brazil)'),
(36222, 'https://ror.org/01e7p2b30', 'pt', 1, 'https://ror.org/01e7p2b30 Instituto Histórico e GeogrÔfico de São Paulo'),
(36223, 'https://ror.org/01e7t7h48', 'no_lang_code', 1, 'https://ror.org/01e7t7h48 Sadar + Vuga (Slovenia)'),
(36224, 'https://ror.org/01e91b575', 'no_lang_code', 1, 'https://ror.org/01e91b575 Elecde (Norway)'),
(36225, 'https://ror.org/01eb3qa50', 'en', 1, 'https://ror.org/01eb3qa50 Institute of Mathematics, Physics, and Mechanics'),
(36226, 'https://ror.org/01eewg647', 'no_lang_code', 1, 'https://ror.org/01eewg647 Studio Promocji MIT (Poland)'),
(36227, 'https://ror.org/01egm4002', 'no_lang_code', 1, 'https://ror.org/01egm4002 CoreAll (Norway)'),
(36228, 'https://ror.org/01ep3aj25', 'no_lang_code', 1, 'https://ror.org/01ep3aj25 Centralny Ośrodek Informatyki Górnictwa'),
(36229, 'https://ror.org/01eqw4y61', 'pt', 1, 'https://ror.org/01eqw4y61 Sociedade Brasileira de Geologia'),
(36230, 'https://ror.org/01evj3822', 'no_lang_code', 1, 'https://ror.org/01evj3822 Jotaeme Fitafer (Brazil)'),
(36231, 'https://ror.org/01ewp8233', 'tr', 1, 'https://ror.org/01ewp8233 Yedikule Surp PırgiƧ Armenian Hospital Yedikule Surp PırgiƧ Ermeni Hastanesi'),
(36232, 'https://ror.org/01ewyge67', 'pt', 1, 'https://ror.org/01ewyge67 Instituto Paulo Freire'),
(36233, 'https://ror.org/01exddw17', 'no_lang_code', 1, 'https://ror.org/01exddw17 Tellu (Norway)'),
(36234, 'https://ror.org/01ey80h28', 'pt', 1, 'https://ror.org/01ey80h28 Sociedade Brasileira de Toxicologia'),
(36235, 'https://ror.org/01f11rr66', 'no_lang_code', 1, 'https://ror.org/01f11rr66 Hegnar Media (Norway)'),
(36236, 'https://ror.org/01f176r46', 'no_lang_code', 1, 'https://ror.org/01f176r46 Iskra Mehanizmi (Slovenia)'),
(36237, 'https://ror.org/01f1ext93', 'no_lang_code', 1, 'https://ror.org/01f1ext93 IMC Engineering Poland (Poland)'),
(36238, 'https://ror.org/01f2vgw59', 'en', 1, 'https://ror.org/01f2vgw59 Norwegian National Rail Administration'),
(36239, 'https://ror.org/01f3dz928', 'en', 1, 'https://ror.org/01f3dz928 Logan Regional Hospital'),
(36240, 'https://ror.org/01f3n2767', 'no_lang_code', 1, 'https://ror.org/01f3n2767 Sensocure (Norway)'),
(36241, 'https://ror.org/01f3xmn08', 'no_lang_code', 1, 'https://ror.org/01f3xmn08 Spica International (Slovenia)'),
(36242, 'https://ror.org/01f4ph383', 'no_lang_code', 1, 'https://ror.org/01f4ph383 MiljĆø-Teknologi (Norway)'),
(36243, 'https://ror.org/01f59ee73', 'no', 1, 'https://ror.org/01f59ee73 Sogn RegionrƄd'),
(36244, 'https://ror.org/01f60xs15', 'en', 1, 'https://ror.org/01f60xs15 Agriculture and Forestry University ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą„ƒą¤·ą¤æ तऄा वन ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(36245, 'https://ror.org/01f6t6q54', 'no_lang_code', 1, 'https://ror.org/01f6t6q54 Emam Reza Hospital'),
(36246, 'https://ror.org/01f8zms39', 'en', 1, 'https://ror.org/01f8zms39 Billroth Hospitals'),
(36247, 'https://ror.org/01fa85441', 'en', 1, 'https://ror.org/01fa85441 NU Hospital Group'),
(36248, 'https://ror.org/01fafm680', 'en', 1, 'https://ror.org/01fafm680 Specialty Hospital, Jordan'),
(36249, 'https://ror.org/01fba6t94', 'no_lang_code', 1, 'https://ror.org/01fba6t94 Group Image (Poland)'),
(36250, 'https://ror.org/01fbjr446', 'pl', 1, 'https://ror.org/01fbjr446 Instytut Metalurgii Żelaza im. Stanisława Staszica Stanislaw Staszic Institute for Ferrous Metallurgy'),
(36251, 'https://ror.org/01fen8d67', 'en', 1, 'https://ror.org/01fen8d67 Association of Schools of Public Health in the European Region'),
(36252, 'https://ror.org/01fj3m631', 'en', 1, 'https://ror.org/01fj3m631 Association of Consulting Engineers'),
(36253, 'https://ror.org/01fktj061', 'en', 1, 'https://ror.org/01fktj061 Florida Department of Elder Affairs'),
(36254, 'https://ror.org/01fmmx322', 'no_lang_code', 1, 'https://ror.org/01fmmx322 Tekna (Norway)'),
(36255, 'https://ror.org/01fnbm952', 'no_lang_code', 1, 'https://ror.org/01fnbm952 Madshus (Norway)'),
(36256, 'https://ror.org/01fntqb44', 'no_lang_code', 1, 'https://ror.org/01fntqb44 Sefako (Poland)'),
(36257, 'https://ror.org/01fp6hr92', 'en', 1, 'https://ror.org/01fp6hr92 Japanese Society of Tropical Medicine'),
(36258, 'https://ror.org/01fpkt395', 'de', 1, 'https://ror.org/01fpkt395 Christian Doppler Klinik'),
(36259, 'https://ror.org/01fr0xp26', 'en', 1, 'https://ror.org/01fr0xp26 John B. Lacson Foundation Maritime University'),
(36260, 'https://ror.org/01fr2g046', 'en', 1, 'https://ror.org/01fr2g046 Peace Arch Hospital'),
(36261, 'https://ror.org/01fsf9j67', 'en', 1, 'https://ror.org/01fsf9j67 Lowestoft Hospital'),
(36262, 'https://ror.org/01fw7k425', 'no_lang_code', 1, 'https://ror.org/01fw7k425 Wired (Japan)'),
(36263, 'https://ror.org/01fwpma03', 'no_lang_code', 1, 'https://ror.org/01fwpma03 KRONOS (Norway)'),
(36264, 'https://ror.org/01g1j0r83', 'no_lang_code', 1, 'https://ror.org/01g1j0r83 LojaFƔcil (Brazil)'),
(36265, 'https://ror.org/01g22pf62', 'no_lang_code', 1, 'https://ror.org/01g22pf62 Ruter (Norway)'),
(36266, 'https://ror.org/01g2j3891', 'no_lang_code', 1, 'https://ror.org/01g2j3891 Thermo Fisher Scientific (Finland)'),
(36267, 'https://ror.org/01g4sny84', 'no_lang_code', 1, 'https://ror.org/01g4sny84 IC Targets (Norway)'),
(36268, 'https://ror.org/01g5hc933', 'en', 1, 'https://ror.org/01g5hc933 St John of God Geelong Hospital'),
(36269, 'https://ror.org/01g6hae70', 'no_lang_code', 1, 'https://ror.org/01g6hae70 Advanced Research Systems'),
(36270, 'https://ror.org/01gaazr53', 'no_lang_code', 1, 'https://ror.org/01gaazr53 Østensjø Rederi (Norway)'),
(36271, 'https://ror.org/01gbtqs26', 'no_lang_code', 1, 'https://ror.org/01gbtqs26 MicroA (Norway)'),
(36272, 'https://ror.org/01gbz1v61', 'no_lang_code', 1, 'https://ror.org/01gbz1v61 CardioDx (United States)'),
(36273, 'https://ror.org/01gdbj015', 'no_lang_code', 1, 'https://ror.org/01gdbj015 Perutnina Ptuj (Slovenia)'),
(36274, 'https://ror.org/01gdwxc49', 'no_lang_code', 1, 'https://ror.org/01gdwxc49 Ośrodek Badawczo-Rozwojowy Urządzeń Mechanicznych (Poland)'),
(36275, 'https://ror.org/01gezpw47', 'no_lang_code', 1, 'https://ror.org/01gezpw47 Durdans Hospital'),
(36276, 'https://ror.org/01ghxpd93', 'no_lang_code', 1, 'https://ror.org/01ghxpd93 Sir Ganga Ram Hospital Ų³Ų± گنگا Ų±Ų§Ł… ہسپتال'),
(36277, 'https://ror.org/01gjcwg85', 'en', 1, 'https://ror.org/01gjcwg85 Tayler Bequest District Hospital'),
(36278, 'https://ror.org/01gjrpr51', 'no_lang_code', 1, 'https://ror.org/01gjrpr51 Salus Group (Brazil)'),
(36279, 'https://ror.org/01gkfjz83', 'no_lang_code', 1, 'https://ror.org/01gkfjz83 Altave (Brazil)'),
(36280, 'https://ror.org/01gkp6p31', 'en', 1, 'https://ror.org/01gkp6p31 Maria Fareri Children''s Hospital'),
(36281, 'https://ror.org/01gmpxf32', 'no_lang_code', 1, 'https://ror.org/01gmpxf32 Clave (Brazil)'),
(36282, 'https://ror.org/01gn4gb91', 'en', 1, 'https://ror.org/01gn4gb91 Kenvale College'),
(36283, 'https://ror.org/01gpaz870', 'en', 1, 'https://ror.org/01gpaz870 Det kongelige Justis- og beredskapsdepartementet Ministry of Justice and Public Security'),
(36284, 'https://ror.org/01grd6v95', 'en', 1, 'https://ror.org/01grd6v95 Copper Mountain College'),
(36285, 'https://ror.org/01gsyn886', 'en', 1, 'https://ror.org/01gsyn886 Casper College'),
(36286, 'https://ror.org/01gt3r273', 'no_lang_code', 1, 'https://ror.org/01gt3r273 EL-Automatyka (Poland)'),
(36287, 'https://ror.org/01gw0xq27', 'en', 1, 'https://ror.org/01gw0xq27 Guelph General Hospital'),
(36288, 'https://ror.org/01gy2wn10', 'no_lang_code', 1, 'https://ror.org/01gy2wn10 GlycaNova (Norway)'),
(36289, 'https://ror.org/01gz2ss49', 'no_lang_code', 1, 'https://ror.org/01gz2ss49 Kelda Drilling Controls (Norway)'),
(36290, 'https://ror.org/01gz5rq53', 'no_lang_code', 1, 'https://ror.org/01gz5rq53 Ceragon (Norway)'),
(36291, 'https://ror.org/01gz84683', 'no_lang_code', 1, 'https://ror.org/01gz84683 BluGlass (Australia)'),
(36292, 'https://ror.org/01gzder05', 'no_lang_code', 1, 'https://ror.org/01gzder05 Hans-Petter Brathaug (Norway)'),
(36293, 'https://ror.org/01h16sk12', 'no_lang_code', 1, 'https://ror.org/01h16sk12 Ekornes (Norway)'),
(36294, 'https://ror.org/01h2p4517', 'en', 1, 'https://ror.org/01h2p4517 Mt. Washington Pediatric Hospital'),
(36295, 'https://ror.org/01h4bh480', 'en', 1, 'https://ror.org/01h4bh480 Royal College of Surgeons in Ireland - Bahrain Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„Ų·ŲØŁŠŲ©'),
(36296, 'https://ror.org/01h6cpb10', 'fr', 1, 'https://ror.org/01h6cpb10 Centre de SantƩ et de Services Sociaux de la Vieille-Capitale'),
(36297, 'https://ror.org/01h9bce24', 'no_lang_code', 1, 'https://ror.org/01h9bce24 ZootFly (Slovenia)'),
(36298, 'https://ror.org/01h9sha04', 'en', 1, 'https://ror.org/01h9sha04 Instytut Języka Polskiego Polskiej Akademii Nauk The Institute of the Polish Language of the Polish Academy of Sciences'),
(36299, 'https://ror.org/01h9spb06', 'en', 1, 'https://ror.org/01h9spb06 Korea National University of Welfare ķ•œźµ­ė³µģ§€ėŒ€ķ•™źµ'),
(36300, 'https://ror.org/01hbgfy53', 'no_lang_code', 1, 'https://ror.org/01hbgfy53 Applied StemCell (United States)'),
(36301, 'https://ror.org/01hcbs823', 'en', 1, 'https://ror.org/01hcbs823 Norwegain Radium Hospital Research Foundation'),
(36302, 'https://ror.org/01hcfbh13', 'en', 1, 'https://ror.org/01hcfbh13 Ashwini Hospital'),
(36303, 'https://ror.org/01hcrwv94', 'no_lang_code', 1, 'https://ror.org/01hcrwv94 Engineering Research & Analysis (United States)'),
(36304, 'https://ror.org/01hctzw61', 'en', 1, 'https://ror.org/01hctzw61 Khawaja Farid Social Security Hospital خواجہ فرید Ų³ŁˆŲ“Ł„ سیکورٹی ہسپتال'),
(36305, 'https://ror.org/01hewj013', 'no_lang_code', 1, 'https://ror.org/01hewj013 Icra Produtos Para Cerâmica (Brazil)'),
(36306, 'https://ror.org/01hfvpj82', 'en', 1, 'https://ror.org/01hfvpj82 Indian Institute of Advanced Study इंऔियन ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ आफ ą¤ą¤”ą¤µą¤¾ą¤‚ą¤øą„ą¤” ą¤øą„ą¤Ÿą¤”ą„€'),
(36307, 'https://ror.org/01hgb6e08', 'en', 1, 'https://ror.org/01hgb6e08 Hamedan University of Technology'),
(36308, 'https://ror.org/01hgvdq15', 'no_lang_code', 1, 'https://ror.org/01hgvdq15 Zimmerman Associates (United States)'),
(36309, 'https://ror.org/01hh45364', 'en', 1, 'https://ror.org/01hh45364 Central Electronics Engineering Research Institute ą¤•ą„‡ą¤Øą„ ą¤¦ą„ą¤°ą„€ą¤Æ ą¤‡ą¤²ą„‡ą¤•ą„ ą¤Ÿą„ą¤°ą„‹ą¤Øą¤æą¤•ą„€ ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ ऄान (ą¤øą„€ą¤°ą„€)'),
(36310, 'https://ror.org/01hh9ag93', 'en', 1, 'https://ror.org/01hh9ag93 Institute of Subtropical Agriculture äø­å›½ē§‘å­¦é™¢äŗšēƒ­åø¦å†œäøšē”Ÿę€ē ”ē©¶ę‰€'),
(36311, 'https://ror.org/01hhq6g52', 'en', 1, 'https://ror.org/01hhq6g52 Alta View Hospital'),
(36312, 'https://ror.org/01hj51r83', 'en', 1, 'https://ror.org/01hj51r83 Universal Engineering College'),
(36313, 'https://ror.org/01hjbaa35', 'no', 1, 'https://ror.org/01hjbaa35 Gjemnes Kommune'),
(36314, 'https://ror.org/01hjhm267', 'fr', 1, 'https://ror.org/01hjhm267 CEA Le Ripault'),
(36315, 'https://ror.org/01hmp0h76', 'no_lang_code', 1, 'https://ror.org/01hmp0h76 Petroleum Geo-Services (Norway)'),
(36316, 'https://ror.org/01hpg6340', 'en', 1, 'https://ror.org/01hpg6340 Grönemeyer Institut für MikroTherapie Grönemeyer Institute for MicroTherapy'),
(36317, 'https://ror.org/01hpww940', 'no_lang_code', 1, 'https://ror.org/01hpww940 Ultra Hi PlƔsticos Industriais (Brazil)'),
(36318, 'https://ror.org/01hqrqj31', 'en', 1, 'https://ror.org/01hqrqj31 Oslo Centre for Interdisciplinary Environmental and Social Research'),
(36319, 'https://ror.org/01hqxm727', 'no_lang_code', 1, 'https://ror.org/01hqxm727 Norsk Mineral (Norway)'),
(36320, 'https://ror.org/01hr9q823', 'en', 1, 'https://ror.org/01hr9q823 Gaston College'),
(36321, 'https://ror.org/01hv74g78', 'en', 1, 'https://ror.org/01hv74g78 Scripps Green Hospital'),
(36322, 'https://ror.org/01hw8wm79', 'no_lang_code', 1, 'https://ror.org/01hw8wm79 TrĆøndelag Forskning og Utvikling (Norway)'),
(36323, 'https://ror.org/01hwe9w34', 'en', 1, 'https://ror.org/01hwe9w34 Sonoma Valley Hospital'),
(36324, 'https://ror.org/01hxvmm54', 'no_lang_code', 1, 'https://ror.org/01hxvmm54 Logos Biosystems (South Korea)'),
(36325, 'https://ror.org/01hyf2b24', 'no_lang_code', 1, 'https://ror.org/01hyf2b24 Clean Marine (Norway)'),
(36326, 'https://ror.org/01hz8vp40', 'no_lang_code', 1, 'https://ror.org/01hz8vp40 Peszke (Poland)'),
(36327, 'https://ror.org/01j157486', 'en', 1, 'https://ror.org/01j157486 College of Industrial Engineering'),
(36328, 'https://ror.org/01j511762', 'en', 1, 'https://ror.org/01j511762 Armament Research and Development Establishment ą¤†ą¤Æą„ą¤§ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾'),
(36329, 'https://ror.org/01j5rbx63', 'no_lang_code', 1, 'https://ror.org/01j5rbx63 Metalex (Brazil)'),
(36330, 'https://ror.org/01j5v0d02', 'es', 1, 'https://ror.org/01j5v0d02 Hospital Universitario de Burgos'),
(36331, 'https://ror.org/01j77q308', 'no_lang_code', 1, 'https://ror.org/01j77q308 Mata Chanan Devi Hospital'),
(36332, 'https://ror.org/01j7r2734', 'en', 1, 'https://ror.org/01j7r2734 Union Hospital 仁安醫院'),
(36333, 'https://ror.org/01j9jq089', 'en', 1, 'https://ror.org/01j9jq089 Overseas Chinese University åƒ‘å…‰ē§‘ęŠ€å¤§å­ø'),
(36334, 'https://ror.org/01j9yjt02', 'sl', 1, 'https://ror.org/01j9yjt02 Zdravstveni dom dr. Adolfa Drolca Maribor'),
(36335, 'https://ror.org/01j9zyw40', 'en', 1, 'https://ror.org/01j9zyw40 Institute of Environmental Engineering Instytut Podstaw Inżynierii Środowiska Polskiej Akademii Nauk'),
(36336, 'https://ror.org/01ja4zf46', 'no_lang_code', 1, 'https://ror.org/01ja4zf46 Le-tehnika (Slovenia)'),
(36337, 'https://ror.org/01jcpms10', 'no_lang_code', 1, 'https://ror.org/01jcpms10 Leonhard Nilsen & SĆønner (Norway)'),
(36338, 'https://ror.org/01jdhnc41', 'no_lang_code', 1, 'https://ror.org/01jdhnc41 WƤrtsilƤ (Norway)'),
(36339, 'https://ror.org/01jdjjh55', 'de', 1, 'https://ror.org/01jdjjh55 SƤchsisches Staatsarchiv'),
(36340, 'https://ror.org/01jf1v940', 'en', 1, 'https://ror.org/01jf1v940 Qingzhou City People''s Hospital'),
(36341, 'https://ror.org/01jk9f236', 'no_lang_code', 1, 'https://ror.org/01jk9f236 Tissue Gene (United States)'),
(36342, 'https://ror.org/01jmv0y82', 'no_lang_code', 1, 'https://ror.org/01jmv0y82 EDG Equipamentos e Controles (Brazil)'),
(36343, 'https://ror.org/01jnj9432', 'no_lang_code', 1, 'https://ror.org/01jnj9432 Lozenetz Hospital Университетска болница Лозенец'),
(36344, 'https://ror.org/01jnnpe14', 'no_lang_code', 1, 'https://ror.org/01jnnpe14 Boehringer Ingelheim (United Kingdom)'),
(36345, 'https://ror.org/01jnsyr23', 'en', 1, 'https://ror.org/01jnsyr23 Norwegian Golf Federation'),
(36346, 'https://ror.org/01jq15d50', 'en', 1, 'https://ror.org/01jq15d50 Clover Park Technical College'),
(36347, 'https://ror.org/01jvdrm66', 'pl', 1, 'https://ror.org/01jvdrm66 Technika Podwodna (Poland)'),
(36348, 'https://ror.org/01jww0j97', 'no_lang_code', 1, 'https://ror.org/01jww0j97 Kleven Maritime (Norway)'),
(36349, 'https://ror.org/01jy8d602', 'no_lang_code', 1, 'https://ror.org/01jy8d602 Baker Hughes (Norway)'),
(36350, 'https://ror.org/01jydv679', 'en', 1, 'https://ror.org/01jydv679 Fawcett Memorial Hospital'),
(36351, 'https://ror.org/01jyw2164', 'en', 1, 'https://ror.org/01jyw2164 Hospital Taiping Taiping Hospital'),
(36352, 'https://ror.org/01jz2hz84', 'en', 1, 'https://ror.org/01jz2hz84 National Kidney Foundation Singapore'),
(36353, 'https://ror.org/01jzfkq41', 'no_lang_code', 1, 'https://ror.org/01jzfkq41 Nortroll (Norway)'),
(36354, 'https://ror.org/01jzgfe96', 'en', 1, 'https://ror.org/01jzgfe96 Bombo Hospital'),
(36355, 'https://ror.org/01k08w337', 'en', 1, 'https://ror.org/01k08w337 El Camino Hospital'),
(36356, 'https://ror.org/01k0zsm40', 'no_lang_code', 1, 'https://ror.org/01k0zsm40 Vodovod-Kanalizacija (Slovenia)'),
(36357, 'https://ror.org/01k30an65', 'no_lang_code', 1, 'https://ror.org/01k30an65 Ekopop (Poland)'),
(36358, 'https://ror.org/01k4cfw02', 'en', 1, 'https://ror.org/01k4cfw02 Mater Misericordiae Hospital'),
(36359, 'https://ror.org/01k638r21', 'en', 1, 'https://ror.org/01k638r21 Office of International Science and Engineering'),
(36360, 'https://ror.org/01k67xz52', 'no_lang_code', 1, 'https://ror.org/01k67xz52 Plany (Norway)'),
(36361, 'https://ror.org/01k6cft19', 'en', 1, 'https://ror.org/01k6cft19 Laney College'),
(36362, 'https://ror.org/01k8p3j71', 'no_lang_code', 1, 'https://ror.org/01k8p3j71 Lattix (Norway)'),
(36363, 'https://ror.org/01k8sh332', 'no_lang_code', 1, 'https://ror.org/01k8sh332 Isotop (Israel)'),
(36364, 'https://ror.org/01kaftk72', 'no_lang_code', 1, 'https://ror.org/01kaftk72 Mallavi Hospital'),
(36365, 'https://ror.org/01kakjy62', 'en', 1, 'https://ror.org/01kakjy62 Newport Hospital'),
(36366, 'https://ror.org/01kdvbn15', 'en', 1, 'https://ror.org/01kdvbn15 Anugrah Narayan Magadh Medical College & Hospital ą¤…ą¤Øą„ą¤—ą„ą¤°ą¤¹ नारायण मगध ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(36367, 'https://ror.org/01kdxra28', 'en', 1, 'https://ror.org/01kdxra28 Academy of Sciences and Literature Akademie der Wissenschaften und der Literatur Mainz'),
(36368, 'https://ror.org/01kjwt492', 'no_lang_code', 1, 'https://ror.org/01kjwt492 Imari Arita Kyoritsu Hospital'),
(36369, 'https://ror.org/01kk1nf20', 'en', 1, 'https://ror.org/01kk1nf20 Institute of Industrial Organic Chemistry'),
(36370, 'https://ror.org/01kmxkx53', 'no_lang_code', 1, 'https://ror.org/01kmxkx53 Jain Irrigation Systems (India)'),
(36371, 'https://ror.org/01kp9rn35', 'en', 1, 'https://ror.org/01kp9rn35 Jewish Museum Berlin Jüdisches Museum Berlin'),
(36372, 'https://ror.org/01kpm8k86', 'en', 1, 'https://ror.org/01kpm8k86 Bethesda Hospital ą®ŖąÆ†ą®¤ąÆ†ą®øąÆą®¤ą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(36373, 'https://ror.org/01kpwv903', 'no_lang_code', 1, 'https://ror.org/01kpwv903 Capital Fund Management (France)'),
(36374, 'https://ror.org/01kpx5a10', 'no_lang_code', 1, 'https://ror.org/01kpx5a10 Mestergruppen (Norway)'),
(36375, 'https://ror.org/01kr7ch79', 'no_lang_code', 1, 'https://ror.org/01kr7ch79 Knowledge Networks & Business Solutions (Brazil)'),
(36376, 'https://ror.org/01krpsy48', 'en', 1, 'https://ror.org/01krpsy48 Division of Electrical, Communications & Cyber Systems'),
(36377, 'https://ror.org/01ktbtm29', 'no_lang_code', 1, 'https://ror.org/01ktbtm29 Matrix Engineering (United States)'),
(36378, 'https://ror.org/01ktv8680', 'no_lang_code', 1, 'https://ror.org/01ktv8680 Mosaic Solutions (Norway)'),
(36379, 'https://ror.org/01kvzjx09', 'no_lang_code', 1, 'https://ror.org/01kvzjx09 Eco Inhibitors (Norway)'),
(36380, 'https://ror.org/01kwdp645', 'en', 1, 'https://ror.org/01kwdp645 Kailuan General Hospital'),
(36381, 'https://ror.org/01kwzvc26', 'no_lang_code', 1, 'https://ror.org/01kwzvc26 Uranet (Brazil)'),
(36382, 'https://ror.org/01kyk7057', 'no_lang_code', 1, 'https://ror.org/01kyk7057 Kaleidoskopet (Norway)'),
(36383, 'https://ror.org/01kzp9g64', 'no_lang_code', 1, 'https://ror.org/01kzp9g64 Etsy (United States)'),
(36384, 'https://ror.org/01m05cc74', 'no_lang_code', 1, 'https://ror.org/01m05cc74 Piaram (Brazil) Piaram Productos Nanotechnologicos'),
(36385, 'https://ror.org/01m343c98', 'en', 1, 'https://ror.org/01m343c98 Waseda Bioscience Research Institute in Singapore'),
(36386, 'https://ror.org/01m44ga74', 'pt', 1, 'https://ror.org/01m44ga74 Secretaria de Planejamento e Gestão'),
(36387, 'https://ror.org/01m4fm654', 'no_lang_code', 1, 'https://ror.org/01m4fm654 Tecnident (Brazil)'),
(36388, 'https://ror.org/01m4hhk76', 'pl', 1, 'https://ror.org/01m4hhk76 Stowarzyszenie Nowa Wspólna Droga'),
(36389, 'https://ror.org/01mbqex31', 'no', 1, 'https://ror.org/01mbqex31 Hermetikken NƦringshage'),
(36390, 'https://ror.org/01mbz8562', 'fr', 1, 'https://ror.org/01mbz8562 CEA LITEN'),
(36391, 'https://ror.org/01mccm505', 'no_lang_code', 1, 'https://ror.org/01mccm505 Meawallet (Norway)'),
(36392, 'https://ror.org/01mdh2992', 'no_lang_code', 1, 'https://ror.org/01mdh2992 Magister Solutions (Finland)'),
(36393, 'https://ror.org/01mfdy709', 'no_lang_code', 1, 'https://ror.org/01mfdy709 Signalcard (Brazil)'),
(36394, 'https://ror.org/01mfkkh63', 'no_lang_code', 1, 'https://ror.org/01mfkkh63 Guangzhou Chemistry (China) äø­ē§‘é™¢å¹æå·žåŒ–å­¦ęœ‰é™å…¬åø'),
(36395, 'https://ror.org/01mfwsz24', 'no_lang_code', 1, 'https://ror.org/01mfwsz24 Clavis Technology (Norway)'),
(36396, 'https://ror.org/01mgdzc49', 'en', 1, 'https://ror.org/01mgdzc49 Centre for Quantum Technologies'),
(36397, 'https://ror.org/01mgp9933', 'no_lang_code', 1, 'https://ror.org/01mgp9933 Fotonica (Brazil)'),
(36398, 'https://ror.org/01mj88p41', 'no_lang_code', 1, 'https://ror.org/01mj88p41 SolstĆ­cio Energia (Brazil)'),
(36399, 'https://ror.org/01mjqb881', 'sl', 1, 'https://ror.org/01mjqb881 InŔtituta za Neionizirna Sevanja'),
(36400, 'https://ror.org/01mkt8h07', 'en', 1, 'https://ror.org/01mkt8h07 National Museum of Slovenia'),
(36401, 'https://ror.org/01mmhvx47', 'no_lang_code', 1, 'https://ror.org/01mmhvx47 Epizyme (United States)'),
(36402, 'https://ror.org/01mng8331', 'en', 1, 'https://ror.org/01mng8331 Division of Computing and Communication Foundations'),
(36403, 'https://ror.org/01mny2094', 'no_lang_code', 1, 'https://ror.org/01mny2094 Suita Tokushukai Hospital'),
(36404, 'https://ror.org/01mqcfb91', 'no_lang_code', 1, 'https://ror.org/01mqcfb91 Green Pool (Australia)'),
(36405, 'https://ror.org/01mr84c03', 'no_lang_code', 1, 'https://ror.org/01mr84c03 Ipark (Norway)'),
(36406, 'https://ror.org/01ms51d52', 'en', 1, 'https://ror.org/01ms51d52 National Institute of Technology, Tsuruoka College é¶“å²”å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(36407, 'https://ror.org/01mstep31', 'no_lang_code', 1, 'https://ror.org/01mstep31 Regenics (Norway)'),
(36408, 'https://ror.org/01mvkzj41', 'no_lang_code', 1, 'https://ror.org/01mvkzj41 Microsemi (United States)'),
(36409, 'https://ror.org/01n09m616', 'en', 1, 'https://ror.org/01n09m616 Bangladesh Agricultural Research Institute বাংলাদেশ ą¦•ą§ƒą¦·ą¦æ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(36410, 'https://ror.org/01n3ps908', 'no', 1, 'https://ror.org/01n3ps908 BesteBakken'),
(36411, 'https://ror.org/01n4nv253', 'no_lang_code', 1, 'https://ror.org/01n4nv253 Preline Fishfarming Systems (Norway)'),
(36412, 'https://ror.org/01n5bzx98', 'no_lang_code', 1, 'https://ror.org/01n5bzx98 Petoro (Norway)'),
(36413, 'https://ror.org/01n6mms53', 'en', 1, 'https://ror.org/01n6mms53 State Library of Württemberg Württembergische Landesbibliothek'),
(36414, 'https://ror.org/01n70wn69', 'no_lang_code', 1, 'https://ror.org/01n70wn69 Knutsen OAS Shipping (Norway)'),
(36415, 'https://ror.org/01na16w26', 'no_lang_code', 1, 'https://ror.org/01na16w26 Nanosystem (Russia)'),
(36416, 'https://ror.org/01ne8cy78', 'fr', 1, 'https://ror.org/01ne8cy78 Salon Carrière Formation de Québec'),
(36417, 'https://ror.org/01nevmj51', 'en', 1, 'https://ror.org/01nevmj51 Co-opertive Housing Federation of Norway'),
(36418, 'https://ror.org/01nfh3016', 'pt', 1, 'https://ror.org/01nfh3016 Hospital Erasto Gaertner'),
(36419, 'https://ror.org/01nj2eb64', 'no_lang_code', 1, 'https://ror.org/01nj2eb64 Welspun (India)'),
(36420, 'https://ror.org/01nj3h423', 'no_lang_code', 1, 'https://ror.org/01nj3h423 APIM Therapeutics (Norway)'),
(36421, 'https://ror.org/01nkg7v26', 'en', 1, 'https://ror.org/01nkg7v26 Upper River Valley Hospital'),
(36422, 'https://ror.org/01nkx9v56', 'en', 1, 'https://ror.org/01nkx9v56 Mease Countryside Hospital'),
(36423, 'https://ror.org/01nmv4r50', 'no_lang_code', 1, 'https://ror.org/01nmv4r50 Selsan Tecnologia Industrial e Comercial (Brazil)'),
(36424, 'https://ror.org/01nmxvn49', 'no_lang_code', 1, 'https://ror.org/01nmxvn49 Chengdu Organic Chemicals (China) äø­å›½ē§‘å­¦é™¢ęˆéƒ½ęœ‰ęœŗåŒ–å­¦ęœ‰é™å…¬åø'),
(36425, 'https://ror.org/01npwa559', 'en', 1, 'https://ror.org/01npwa559 Hospital de San Bernardo St Bernard''s Hospital'),
(36426, 'https://ror.org/01ns8dn21', 'no_lang_code', 1, 'https://ror.org/01ns8dn21 Aquatic Concept group (Norway)'),
(36427, 'https://ror.org/01nvcgz36', 'no', 1, 'https://ror.org/01nvcgz36 Norsk Namnelag'),
(36428, 'https://ror.org/01nvkaf11', 'en', 1, 'https://ror.org/01nvkaf11 San Francisco Firefighters Cancer Prevention Foundation'),
(36429, 'https://ror.org/01nvq1078', 'no_lang_code', 1, 'https://ror.org/01nvq1078 TECES'),
(36430, 'https://ror.org/01p03pa87', 'de', 1, 'https://ror.org/01p03pa87 Brandenburgisches Landesamt für Denkmalpflege und Archäologisches Landesmuseum'),
(36431, 'https://ror.org/01p25q678', 'en', 1, 'https://ror.org/01p25q678 Yili Friendship Hospital'),
(36432, 'https://ror.org/01p2dyg20', 'no', 1, 'https://ror.org/01p2dyg20 Hattfjelldal Kommune'),
(36433, 'https://ror.org/01p3c2g14', 'en', 1, 'https://ror.org/01p3c2g14 Turriff Cottage Hospital'),
(36434, 'https://ror.org/01p4fde84', 'no_lang_code', 1, 'https://ror.org/01p4fde84 Findus (Norway)'),
(36435, 'https://ror.org/01paha414', 'en', 1, 'https://ror.org/01paha414 Osaki Citizen Hospital å¤§å“Žåø‚ę°‘ē—…é™¢'),
(36436, 'https://ror.org/01pbftg81', 'no_lang_code', 1, 'https://ror.org/01pbftg81 Toxikón (Brazil)'),
(36437, 'https://ror.org/01pc7k308', 'en', 1, 'https://ror.org/01pc7k308 Division of Materials Research'),
(36438, 'https://ror.org/01pcm0w39', 'en', 1, 'https://ror.org/01pcm0w39 Canadian Forces College'),
(36439, 'https://ror.org/01pdwrw82', 'pt', 1, 'https://ror.org/01pdwrw82 Secretaria de Gestão Pública'),
(36440, 'https://ror.org/01pe10g60', 'en', 1, 'https://ror.org/01pe10g60 Institute of Philosophy and Sociology Instytut Filozofii i Socjologii'),
(36441, 'https://ror.org/01pf53a69', 'no', 1, 'https://ror.org/01pf53a69 Storfjord Kommune'),
(36442, 'https://ror.org/01pfm3094', 'no_lang_code', 1, 'https://ror.org/01pfm3094 Sweco (Poland)'),
(36443, 'https://ror.org/01pfs6p94', 'en', 1, 'https://ror.org/01pfs6p94 KM Shah Dental College and Hospital'),
(36444, 'https://ror.org/01pgeyv96', 'no_lang_code', 1, 'https://ror.org/01pgeyv96 Adamed (Poland)'),
(36445, 'https://ror.org/01pgfea66', 'en', 1, 'https://ror.org/01pgfea66 Jammu Hospital'),
(36446, 'https://ror.org/01pj54844', 'no_lang_code', 1, 'https://ror.org/01pj54844 Zetkama (Poland)'),
(36447, 'https://ror.org/01pjxkf30', 'en', 1, 'https://ror.org/01pjxkf30 Xinjiang Astronomical Observatory äø­å›½ē§‘å­¦é™¢ę–°ē–†å¤©ę–‡å°'),
(36448, 'https://ror.org/01pmf1z12', 'pt', 1, 'https://ror.org/01pmf1z12 Hospital SĆ£o Vicente de Paulo'),
(36449, 'https://ror.org/01pn94h16', 'no_lang_code', 1, 'https://ror.org/01pn94h16 Changetech (Norway)'),
(36450, 'https://ror.org/01pndf691', 'fi', 1, 'https://ror.org/01pndf691 VƤestƶliitto'),
(36451, 'https://ror.org/01pp0ar58', 'en', 1, 'https://ror.org/01pp0ar58 Bowral & District Hospital'),
(36452, 'https://ror.org/01pqs5k49', 'tr', 1, 'https://ror.org/01pqs5k49 Baltalimanı Kemik Hastalıkları Hastanesi'),
(36453, 'https://ror.org/01prk3x73', 'en', 1, 'https://ror.org/01prk3x73 Academic Center of Medicine'),
(36454, 'https://ror.org/01psj0w95', 'no_lang_code', 1, 'https://ror.org/01psj0w95 Alcoa (Norway)'),
(36455, 'https://ror.org/01psywt28', 'pt', 1, 'https://ror.org/01psywt28 Secretaria do Governo Municipal'),
(36456, 'https://ror.org/01pt0s458', 'en', 1, 'https://ror.org/01pt0s458 Bayi Children''s Hospital'),
(36457, 'https://ror.org/01ptvbz51', 'de', 1, 'https://ror.org/01ptvbz51 Asklepios Kliniken Bad Abbach'),
(36458, 'https://ror.org/01ptw3s93', 'no_lang_code', 1, 'https://ror.org/01ptw3s93 JAS Technologies (Poland)'),
(36459, 'https://ror.org/01ptz4362', 'no_lang_code', 1, 'https://ror.org/01ptz4362 Misasa Onsen Hospital'),
(36460, 'https://ror.org/01pvv7388', 'no_lang_code', 1, 'https://ror.org/01pvv7388 G&T Septech (Norway)'),
(36461, 'https://ror.org/01pwx8e77', 'sl', 1, 'https://ror.org/01pwx8e77 MEIS Storitve za Okolje'),
(36462, 'https://ror.org/01pwxk906', 'no_lang_code', 1, 'https://ror.org/01pwxk906 Opplysningskontoret for Meieriprodukter (Norway)'),
(36463, 'https://ror.org/01py34264', 'no', 1, 'https://ror.org/01py34264 Sparebankforeningen i Norge'),
(36464, 'https://ror.org/01pykff63', 'en', 1, 'https://ror.org/01pykff63 Holy Innocents Children''s Hospital'),
(36465, 'https://ror.org/01pznaa94', 'en', 1, 'https://ror.org/01pznaa94 Norwegian Institute of International Affairs'),
(36466, 'https://ror.org/01q0yhx95', 'en', 1, 'https://ror.org/01q0yhx95 Masaka Hospital'),
(36467, 'https://ror.org/01q1nqh97', 'en', 1, 'https://ror.org/01q1nqh97 Cabell Huntington Hospital'),
(36468, 'https://ror.org/01q2fk491', 'en', 1, 'https://ror.org/01q2fk491 Institute of Technology and Life Sciences'),
(36469, 'https://ror.org/01q2gyr74', 'no_lang_code', 1, 'https://ror.org/01q2gyr74 Mbuma Mission Hospital'),
(36470, 'https://ror.org/01q30s265', 'no_lang_code', 1, 'https://ror.org/01q30s265 Searis (Norway)'),
(36471, 'https://ror.org/01q4c7394', 'no_lang_code', 1, 'https://ror.org/01q4c7394 Thync (United States)'),
(36472, 'https://ror.org/01q6r0v22', 'pl', 1, 'https://ror.org/01q6r0v22 Centrum Leczenia Oparzeń'),
(36473, 'https://ror.org/01q726526', 'no_lang_code', 1, 'https://ror.org/01q726526 Litostroj Group (Slovenia)'),
(36474, 'https://ror.org/01q855b60', 'no_lang_code', 1, 'https://ror.org/01q855b60 Bhabha Hospital'),
(36475, 'https://ror.org/01q86p724', 'no_lang_code', 1, 'https://ror.org/01q86p724 Flexmedia (Brazil)'),
(36476, 'https://ror.org/01q9kjc87', 'en', 1, 'https://ror.org/01q9kjc87 Brampton Civic Hospital'),
(36477, 'https://ror.org/01qb65r21', 'no_lang_code', 1, 'https://ror.org/01qb65r21 Adalia Film (Norway)'),
(36478, 'https://ror.org/01qbm4443', 'en', 1, 'https://ror.org/01qbm4443 Basildon and Thurrock University Hospitals NHS Foundation Trust'),
(36479, 'https://ror.org/01qbvbs17', 'no_lang_code', 1, 'https://ror.org/01qbvbs17 Vita Care (Brazil)'),
(36480, 'https://ror.org/01qdaxa32', 'no_lang_code', 1, 'https://ror.org/01qdaxa32 Supê Soluções (Brazil)'),
(36481, 'https://ror.org/01qgsj208', 'de', 1, 'https://ror.org/01qgsj208 Münchner Stadtbibliothek'),
(36482, 'https://ror.org/01qhzmf23', 'no_lang_code', 1, 'https://ror.org/01qhzmf23 Ekion Tecnologia de Veƭculos ElƩtricos (Brazil)'),
(36483, 'https://ror.org/01qj9e285', 'en', 1, 'https://ror.org/01qj9e285 Yuhan University ģœ ķ•œėŒ€ķ•™źµ'),
(36484, 'https://ror.org/01qjnmr21', 'en', 1, 'https://ror.org/01qjnmr21 Redwood Memorial Hospital'),
(36485, 'https://ror.org/01qjq7726', 'no_lang_code', 1, 'https://ror.org/01qjq7726 Nucleus (Norway)'),
(36486, 'https://ror.org/01qk21t24', 'no_lang_code', 1, 'https://ror.org/01qk21t24 Toma Mat (Norway)'),
(36487, 'https://ror.org/01qmde036', 'no_lang_code', 1, 'https://ror.org/01qmde036 Tercja Systemy Pomiarowe i Komputerowe (Poland)'),
(36488, 'https://ror.org/01qnbng82', 'pt', 1, 'https://ror.org/01qnbng82 Instituto Sedes Sapientiae'),
(36489, 'https://ror.org/01qq0f268', 'no_lang_code', 1, 'https://ror.org/01qq0f268 Maharaja Yeshwantrao Hospital'),
(36490, 'https://ror.org/01qt0ws77', 'no_lang_code', 1, 'https://ror.org/01qt0ws77 Bambisana Hospital'),
(36491, 'https://ror.org/01qtabf22', 'en', 1, 'https://ror.org/01qtabf22 Processors and Growers Research Organisation'),
(36492, 'https://ror.org/01qvdnz37', 'no_lang_code', 1, 'https://ror.org/01qvdnz37 Hafslund (Norway)'),
(36493, 'https://ror.org/01qxktz51', 'no_lang_code', 1, 'https://ror.org/01qxktz51 Con-Form (Norway)'),
(36494, 'https://ror.org/01qyqee78', 'no_lang_code', 1, 'https://ror.org/01qyqee78 Faktotum Informasjon (Norway)'),
(36495, 'https://ror.org/01r1kqm06', 'en', 1, 'https://ror.org/01r1kqm06 Ramin Agriculture and Natural Resources University of Khouzestan'),
(36496, 'https://ror.org/01r2b6235', 'no_lang_code', 1, 'https://ror.org/01r2b6235 Lester (Poland)'),
(36497, 'https://ror.org/01r3x0471', 'no_lang_code', 1, 'https://ror.org/01r3x0471 Nebb (Norway)'),
(36498, 'https://ror.org/01r41r914', 'no_lang_code', 1, 'https://ror.org/01r41r914 NorthSea Container Line (Norway)'),
(36499, 'https://ror.org/01r53zj15', 'no_lang_code', 1, 'https://ror.org/01r53zj15 Smartfish (Norway)'),
(36500, 'https://ror.org/01r5p9y80', 'en', 1, 'https://ror.org/01r5p9y80 Methodist Hospital'),
(36501, 'https://ror.org/01r6rnc70', 'no_lang_code', 1, 'https://ror.org/01r6rnc70 Midot (Israel)'),
(36502, 'https://ror.org/01r70sq06', 'en', 1, 'https://ror.org/01r70sq06 Deutsches Forschungsinstitut für öffentliche Verwaltung German Research Institute for Public Administration'),
(36503, 'https://ror.org/01r729996', 'no_lang_code', 1, 'https://ror.org/01r729996 Tubądzin (Poland)'),
(36504, 'https://ror.org/01r72g906', 'no_lang_code', 1, 'https://ror.org/01r72g906 Verdartis (Brazil)'),
(36505, 'https://ror.org/01r742665', 'en', 1, 'https://ror.org/01r742665 Coxa Hospital'),
(36506, 'https://ror.org/01r8m0a35', 'en', 1, 'https://ror.org/01r8m0a35 The Ohio State University Newark'),
(36507, 'https://ror.org/01r8rcr36', 'no_lang_code', 1, 'https://ror.org/01r8rcr36 Tongren Hospital'),
(36508, 'https://ror.org/01r8seb12', 'pt', 1, 'https://ror.org/01r8seb12 Associação Brasileira de Antropologia'),
(36509, 'https://ror.org/01r9w2e44', 'pt', 1, 'https://ror.org/01r9w2e44 Associação Brasileira de Estudos Populacionais'),
(36510, 'https://ror.org/01ra53y91', 'en', 1, 'https://ror.org/01ra53y91 Aditya Birla Memorial Hospital'),
(36511, 'https://ror.org/01rcr6221', 'no_lang_code', 1, 'https://ror.org/01rcr6221 Silesia Oil (Poland)'),
(36512, 'https://ror.org/01rdbqt89', 'en', 1, 'https://ror.org/01rdbqt89 Slovene Ethnographic Museum'),
(36513, 'https://ror.org/01re9k832', 'no', 1, 'https://ror.org/01re9k832 Hornindal Kommune'),
(36514, 'https://ror.org/01reqxx39', 'no_lang_code', 1, 'https://ror.org/01reqxx39 Hardsoft Microprocessor Systems (Poland)'),
(36515, 'https://ror.org/01rgpbf42', 'no_lang_code', 1, 'https://ror.org/01rgpbf42 Tianjin Hi-Tech Superconducting Electronic Technology (China)');
INSERT INTO `rors` VALUES
(36516, 'https://ror.org/01rkxa860', 'no_lang_code', 1, 'https://ror.org/01rkxa860 Dr. Reddy''s Laboratories (India) ą¤”ą„‰. ą¤°ą„‡ą¤”ą„ą¤”ą„€ą¤œ ą¤²ą„‡ą¤¬ą„‹ą¤°ą„‡ą¤Ÿą¤°ą„€ą¤œ டா. ą®°ąÆ†ą®ŸąÆą®ŸąÆ€ą®šąÆ ఔా. ą°°ą±†ą°”ą±ą°”ą±€ą°øą± ą°²ą±ą°Æą°¾ą°¬ą±ą°øą± ಔಾ. ą²°ą³†ą²”ą³ą²”ą³€''ą²øą³ ą²²ą³ą²Æą²¾ą²¬ą³‹ą²°ą³‡ą²Ÿą²°ą³€ą²øą³'),
(36517, 'https://ror.org/01rmmxf18', 'no_lang_code', 1, 'https://ror.org/01rmmxf18 TEGma (Norway)'),
(36518, 'https://ror.org/01rpb1437', 'en', 1, 'https://ror.org/01rpb1437 Paul Hastings'),
(36519, 'https://ror.org/01rppxt60', 'en', 1, 'https://ror.org/01rppxt60 American Indian College'),
(36520, 'https://ror.org/01rvays47', 'en', 1, 'https://ror.org/01rvays47 Division of Integrative Organismal Systems'),
(36521, 'https://ror.org/01rvbmq75', 'en', 1, 'https://ror.org/01rvbmq75 New Era College ę–°ēŗŖå…ƒå­¦é™¢'),
(36522, 'https://ror.org/01rvrxf39', 'no_lang_code', 1, 'https://ror.org/01rvrxf39 Abbon (Norway)'),
(36523, 'https://ror.org/01rw40d12', 'en', 1, 'https://ror.org/01rw40d12 Jubail Industrial College ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬ŲØŁŠŁ„ Ų§Ł„ŲµŁ†Ų§Ų¹ŁŠŲ©'),
(36524, 'https://ror.org/01rwa6k95', 'no_lang_code', 1, 'https://ror.org/01rwa6k95 Kongsberg Innovasjon (Norway)'),
(36525, 'https://ror.org/01rwnqg85', 'no_lang_code', 1, 'https://ror.org/01rwnqg85 Mecsense (Norway)'),
(36526, 'https://ror.org/01rwv5z20', 'en', 1, 'https://ror.org/01rwv5z20 Garda SƭochƔna College'),
(36527, 'https://ror.org/01rxnnx98', 'no_lang_code', 1, 'https://ror.org/01rxnnx98 Radiotechnika Marketing (Poland)'),
(36528, 'https://ror.org/01ry3tb23', 'en', 1, 'https://ror.org/01ry3tb23 ACPM Dental College and Hospital'),
(36529, 'https://ror.org/01rz48a94', 'no_lang_code', 1, 'https://ror.org/01rz48a94 Wilson Sonsini Goodrich & Rosati'),
(36530, 'https://ror.org/01rzns588', 'no_lang_code', 1, 'https://ror.org/01rzns588 Racetronix (Brazil)'),
(36531, 'https://ror.org/01rzrn583', 'en', 1, 'https://ror.org/01rzrn583 University of Military Science and Technology'),
(36532, 'https://ror.org/01rztx461', 'en', 1, 'https://ror.org/01rztx461 University of Medical Sciences and Technology Ų¬Ų§Ł…Ų¹Ų© Ł…Ų£Ł…ŁˆŁ† Ų­Ł…ŁŠŲÆŲ©'),
(36533, 'https://ror.org/01s154648', 'en', 1, 'https://ror.org/01s154648 The Eighth People’s Hospital of Nanning'),
(36534, 'https://ror.org/01s1hzr17', 'en', 1, 'https://ror.org/01s1hzr17 Prince County Hospital'),
(36535, 'https://ror.org/01s2r6v67', 'no_lang_code', 1, 'https://ror.org/01s2r6v67 Genotyping BPI (Brazil)'),
(36536, 'https://ror.org/01s3wfa18', 'de', 1, 'https://ror.org/01s3wfa18 Schüchtermann-Klinik'),
(36537, 'https://ror.org/01s41hv32', 'no_lang_code', 1, 'https://ror.org/01s41hv32 Bonavision Auxilios Opticos (Brazil)'),
(36538, 'https://ror.org/01s776p02', 'no_lang_code', 1, 'https://ror.org/01s776p02 Shalamar Hospital'),
(36539, 'https://ror.org/01sd0e661', 'no_lang_code', 1, 'https://ror.org/01sd0e661 AMO (Germany)'),
(36540, 'https://ror.org/01sdfmp14', 'en', 1, 'https://ror.org/01sdfmp14 Berlin Partner for Business and Technology'),
(36541, 'https://ror.org/01seqfb61', 'no_lang_code', 1, 'https://ror.org/01seqfb61 Vitacress (United Kingdom)'),
(36542, 'https://ror.org/01sf89923', 'no_lang_code', 1, 'https://ror.org/01sf89923 Tomra (Norway)'),
(36543, 'https://ror.org/01sh1rd07', 'no_lang_code', 1, 'https://ror.org/01sh1rd07 Polyform (Norway)'),
(36544, 'https://ror.org/01sh25n93', 'en', 1, 'https://ror.org/01sh25n93 Institute for Environmental Protection and Sensors'),
(36545, 'https://ror.org/01shdt141', 'en', 1, 'https://ror.org/01shdt141 Lake–Sumter State College'),
(36546, 'https://ror.org/01shra089', 'es', 1, 'https://ror.org/01shra089 Banco de la RepĆŗblica Colombia'),
(36547, 'https://ror.org/01sj7p872', 'en', 1, 'https://ror.org/01sj7p872 St John of God Hospital Sierra Leone'),
(36548, 'https://ror.org/01sjjfh02', 'en', 1, 'https://ror.org/01sjjfh02 Horizon College and Seminary'),
(36549, 'https://ror.org/01spyyb53', 'no_lang_code', 1, 'https://ror.org/01spyyb53 Beijing Biocytogen (China)'),
(36550, 'https://ror.org/01sq60k61', 'no_lang_code', 1, 'https://ror.org/01sq60k61 Gramatex (Slovenia)'),
(36551, 'https://ror.org/01sqbks28', 'no_lang_code', 1, 'https://ror.org/01sqbks28 Nordox (Norway)'),
(36552, 'https://ror.org/01stsya15', 'en', 1, 'https://ror.org/01stsya15 St. John''s Hospital'),
(36553, 'https://ror.org/01sv08344', 'no_lang_code', 1, 'https://ror.org/01sv08344 Vallitech (Brazil)'),
(36554, 'https://ror.org/01swgw930', 'no_lang_code', 1, 'https://ror.org/01swgw930 Flowtec (Norway)'),
(36555, 'https://ror.org/01sx9kd33', 'de', 1, 'https://ror.org/01sx9kd33 Stadtarchiv Mainz'),
(36556, 'https://ror.org/01sxsjd59', 'en', 1, 'https://ror.org/01sxsjd59 Rajiv Gandhi University of Knowledge Technologies'),
(36557, 'https://ror.org/01sy5zn44', 'en', 1, 'https://ror.org/01sy5zn44 Bureau of Land Management'),
(36558, 'https://ror.org/01sz1dt34', 'en', 1, 'https://ror.org/01sz1dt34 Å tefan Kukura Hospital in Michalovce'),
(36559, 'https://ror.org/01sz7a883', 'no', 1, 'https://ror.org/01sz7a883 Fjellregionen'),
(36560, 'https://ror.org/01t0mhp33', 'no_lang_code', 1, 'https://ror.org/01t0mhp33 Manila Consulting Group (United States)'),
(36561, 'https://ror.org/01t19y493', 'no_lang_code', 1, 'https://ror.org/01t19y493 NeoSentio (Poland)'),
(36562, 'https://ror.org/01t1wff71', 'no', 1, 'https://ror.org/01t1wff71 Tenketanken Tau'),
(36563, 'https://ror.org/01t4pxk43', 'de', 1, 'https://ror.org/01t4pxk43 St. Bernward Krankenhaus'),
(36564, 'https://ror.org/01t4pzq33', 'de', 1, 'https://ror.org/01t4pzq33 Max Bergmann Zentrum für Biomaterialien'),
(36565, 'https://ror.org/01t63bj13', 'en', 1, 'https://ror.org/01t63bj13 Mercy Willard Hospital'),
(36566, 'https://ror.org/01t6w5q16', 'no_lang_code', 1, 'https://ror.org/01t6w5q16 FelleskjĆøpet (Norway)'),
(36567, 'https://ror.org/01t8rk370', 'en', 1, 'https://ror.org/01t8rk370 AuswƤrtiges Amt Federal Foreign Office'),
(36568, 'https://ror.org/01tajhr18', 'en', 1, 'https://ror.org/01tajhr18 Princess Margaret Hospital'),
(36569, 'https://ror.org/01tc1se08', 'no_lang_code', 1, 'https://ror.org/01tc1se08 Kolektor (Slovenia)'),
(36570, 'https://ror.org/01tcanc07', 'no_lang_code', 1, 'https://ror.org/01tcanc07 Yotta Navigation (United States)'),
(36571, 'https://ror.org/01teejf37', 'en', 1, 'https://ror.org/01teejf37 Defence Research and Development Laboratory ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(36572, 'https://ror.org/01thm5617', 'no_lang_code', 1, 'https://ror.org/01thm5617 OceanSaver (Norway)'),
(36573, 'https://ror.org/01tm0s838', 'en', 1, 'https://ror.org/01tm0s838 OspidƩal Naomh Colm Cille St. Columcille''s Hospital'),
(36574, 'https://ror.org/01tm3ht72', 'no_lang_code', 1, 'https://ror.org/01tm3ht72 Deep Sea Anchors (Norway)'),
(36575, 'https://ror.org/01tm5gc80', 'no_lang_code', 1, 'https://ror.org/01tm5gc80 Securo (Norway)'),
(36576, 'https://ror.org/01tmhf693', 'no_lang_code', 1, 'https://ror.org/01tmhf693 Recombinant Antibody Technology (United Kingdom)'),
(36577, 'https://ror.org/01tnkds55', 'en', 1, 'https://ror.org/01tnkds55 Connecticut Valley Hospital'),
(36578, 'https://ror.org/01tnvpc68', 'en', 1, 'https://ror.org/01tnvpc68 Emerging Frontiers Office'),
(36579, 'https://ror.org/01tphmj73', 'en', 1, 'https://ror.org/01tphmj73 Atlantic Cape Community College'),
(36580, 'https://ror.org/01tsqk383', 'no_lang_code', 1, 'https://ror.org/01tsqk383 Almas Hospital'),
(36581, 'https://ror.org/01tt6ct02', 'no_lang_code', 1, 'https://ror.org/01tt6ct02 Myworkout (Norway)'),
(36582, 'https://ror.org/01ttpsp54', 'en', 1, 'https://ror.org/01ttpsp54 East Yangon General Hospital ရန်ကုန် နရှေ့ပိုင်း ဆေးရုံ'),
(36583, 'https://ror.org/01tv6je98', 'no_lang_code', 1, 'https://ror.org/01tv6je98 AXTech (Norway)'),
(36584, 'https://ror.org/01tvtq106', 'no_lang_code', 1, 'https://ror.org/01tvtq106 Posicom (Norway)'),
(36585, 'https://ror.org/01tz02k91', 'no_lang_code', 1, 'https://ror.org/01tz02k91 Tec3GEO (Brazil)'),
(36586, 'https://ror.org/01tzaf675', 'de', 1, 'https://ror.org/01tzaf675 Joseph Haydn-Institut'),
(36587, 'https://ror.org/01v1qva17', 'no_lang_code', 1, 'https://ror.org/01v1qva17 Virttu Biologics (United Kingdom)'),
(36588, 'https://ror.org/01v2fcr49', 'de', 1, 'https://ror.org/01v2fcr49 Jura-Museum EichstƤtt'),
(36589, 'https://ror.org/01v46ba07', 'no_lang_code', 1, 'https://ror.org/01v46ba07 Madeplas (Brazil)'),
(36590, 'https://ror.org/01v4x4669', 'en', 1, 'https://ror.org/01v4x4669 AdventHealth East Orlando'),
(36591, 'https://ror.org/01v583s72', 'no_lang_code', 1, 'https://ror.org/01v583s72 Arendals Fossekompani (Norway)'),
(36592, 'https://ror.org/01v5fm873', 'no_lang_code', 1, 'https://ror.org/01v5fm873 Reliable Software Resources (United States)'),
(36593, 'https://ror.org/01v5rq776', 'en', 1, 'https://ror.org/01v5rq776 Swami Pranavananda Homoeopathic Medical College and Hospital'),
(36594, 'https://ror.org/01v67r190', 'en', 1, 'https://ror.org/01v67r190 Clark Fork Valley Hospital'),
(36595, 'https://ror.org/01v6q6r30', 'en', 1, 'https://ror.org/01v6q6r30 Lackawanna College'),
(36596, 'https://ror.org/01v7axg06', 'pt', 1, 'https://ror.org/01v7axg06 Federação Brasileira de Psicodrama'),
(36597, 'https://ror.org/01v83yg31', 'en', 1, 'https://ror.org/01v83yg31 Linzi District People''s Hospital'),
(36598, 'https://ror.org/01v9cv612', 'en', 1, 'https://ror.org/01v9cv612 O’Connor Hospital'),
(36599, 'https://ror.org/01vd9vr78', 'no_lang_code', 1, 'https://ror.org/01vd9vr78 Halvors Tradisjonsfisk (Norway)'),
(36600, 'https://ror.org/01vdq2v07', 'no', 1, 'https://ror.org/01vdq2v07 Trondheim Havn IKS'),
(36601, 'https://ror.org/01vjmbb44', 'no_lang_code', 1, 'https://ror.org/01vjmbb44 Insolita Studios (Brazil)'),
(36602, 'https://ror.org/01vjpav59', 'no_lang_code', 1, 'https://ror.org/01vjpav59 Norwegian Crystals (Norway)'),
(36603, 'https://ror.org/01vkqwg02', 'no_lang_code', 1, 'https://ror.org/01vkqwg02 InPhase Solutions (Norway)'),
(36604, 'https://ror.org/01vn1cc81', 'en', 1, 'https://ror.org/01vn1cc81 Galloway Community Hospital'),
(36605, 'https://ror.org/01vnjbg30', 'en', 1, 'https://ror.org/01vnjbg30 Division of Information Systems'),
(36606, 'https://ror.org/01vq6my12', 'no_lang_code', 1, 'https://ror.org/01vq6my12 Golder Associates (China)'),
(36607, 'https://ror.org/01vstb938', 'pt', 1, 'https://ror.org/01vstb938 Universidade Katyavala Bwila'),
(36608, 'https://ror.org/01vt9fn98', 'en', 1, 'https://ror.org/01vt9fn98 Maritime CleanTech West'),
(36609, 'https://ror.org/01vxfv915', 'no_lang_code', 1, 'https://ror.org/01vxfv915 OptimarStette (Norway)'),
(36610, 'https://ror.org/01vzhs891', 'no_lang_code', 1, 'https://ror.org/01vzhs891 Sensorteknikk (Norway)'),
(36611, 'https://ror.org/01vzjr049', 'en', 1, 'https://ror.org/01vzjr049 Instytut Mechaniki Górotworu Strata Mechanics Research Institute'),
(36612, 'https://ror.org/01w05wy86', 'en', 1, 'https://ror.org/01w05wy86 University of Professional Studies'),
(36613, 'https://ror.org/01w17p094', 'no_lang_code', 1, 'https://ror.org/01w17p094 EnĆøk-Senteret (Norway)'),
(36614, 'https://ror.org/01w2a1611', 'no_lang_code', 1, 'https://ror.org/01w2a1611 Egovita (Poland)'),
(36615, 'https://ror.org/01w3zv781', 'en', 1, 'https://ror.org/01w3zv781 Niilo MƤki institute'),
(36616, 'https://ror.org/01w5jqs06', 'no_lang_code', 1, 'https://ror.org/01w5jqs06 Pol-Spec-Tech-Service (Poland)'),
(36617, 'https://ror.org/01w86pt71', 'en', 1, 'https://ror.org/01w86pt71 Sibu Hospital'),
(36618, 'https://ror.org/01w8a9z74', 'no_lang_code', 1, 'https://ror.org/01w8a9z74 Nanox (Brazil)'),
(36619, 'https://ror.org/01wajv258', 'no_lang_code', 1, 'https://ror.org/01wajv258 Brunvoll (Norway)'),
(36620, 'https://ror.org/01wbmq566', 'no', 1, 'https://ror.org/01wbmq566 Torsken kommune'),
(36621, 'https://ror.org/01wc63152', 'es', 1, 'https://ror.org/01wc63152 Hospital General de Almansa'),
(36622, 'https://ror.org/01wfa7737', 'no_lang_code', 1, 'https://ror.org/01wfa7737 ATES (Slovenia)'),
(36623, 'https://ror.org/01wfedj41', 'it', 1, 'https://ror.org/01wfedj41 Ospedale Cervesi di Cattolica'),
(36624, 'https://ror.org/01wfgh551', 'en', 1, 'https://ror.org/01wfgh551 Fifth Affiliated Hospital of Zhengzhou University'),
(36625, 'https://ror.org/01wgg9r40', 'en', 1, 'https://ror.org/01wgg9r40 Carroll Community College'),
(36626, 'https://ror.org/01wgkjr48', 'no_lang_code', 1, 'https://ror.org/01wgkjr48 Dynamic Research (United States)'),
(36627, 'https://ror.org/01wm3xb93', 'en', 1, 'https://ror.org/01wm3xb93 Richmond Hospital'),
(36628, 'https://ror.org/01wpx1p02', 'en', 1, 'https://ror.org/01wpx1p02 Centre de santƩ et de services sociaux Institut universitaire de gƩriatrie de Sherbrooke Health and Social Services Centre University Institute of Geriatrics of Sherbrooke'),
(36629, 'https://ror.org/01wq03263', 'no_lang_code', 1, 'https://ror.org/01wq03263 Biomega (Norway)'),
(36630, 'https://ror.org/01wqqbh83', 'no_lang_code', 1, 'https://ror.org/01wqqbh83 Złotecki (Poland)'),
(36631, 'https://ror.org/01wrmdz98', 'no_lang_code', 1, 'https://ror.org/01wrmdz98 Cyrbe (Brazil)'),
(36632, 'https://ror.org/01wvsk422', 'no', 1, 'https://ror.org/01wvsk422 Mellomrom Arkitekturpsykologi'),
(36633, 'https://ror.org/01wvtht83', 'en', 1, 'https://ror.org/01wvtht83 Russian Children''s Clinical Hospital'),
(36634, 'https://ror.org/01wy8wf04', 'no_lang_code', 1, 'https://ror.org/01wy8wf04 Norwell (Norway)'),
(36635, 'https://ror.org/01wzmsm36', 'en', 1, 'https://ror.org/01wzmsm36 Faulkner State Community College'),
(36636, 'https://ror.org/01x1d6d19', 'no', 1, 'https://ror.org/01x1d6d19 Psykologica'),
(36637, 'https://ror.org/01x1p1c14', 'no_lang_code', 1, 'https://ror.org/01x1p1c14 Ophthalmos (Brazil)'),
(36638, 'https://ror.org/01x3q7681', 'no_lang_code', 1, 'https://ror.org/01x3q7681 Liquiline (Norway)'),
(36639, 'https://ror.org/01x578c48', 'no', 1, 'https://ror.org/01x578c48 Emballasjeforeningen'),
(36640, 'https://ror.org/01x5kq968', 'no', 1, 'https://ror.org/01x5kq968 Studix'),
(36641, 'https://ror.org/01x5rsx73', 'no_lang_code', 1, 'https://ror.org/01x5rsx73 Educomp Solutions (India)'),
(36642, 'https://ror.org/01x5tzy43', 'no_lang_code', 1, 'https://ror.org/01x5tzy43 ADK Hospital'),
(36643, 'https://ror.org/01x675h84', 'en', 1, 'https://ror.org/01x675h84 Institute of Mathematical Machines'),
(36644, 'https://ror.org/01x6yf687', 'no_lang_code', 1, 'https://ror.org/01x6yf687 Artec Aqua (Norway)'),
(36645, 'https://ror.org/01x84xc38', 'en', 1, 'https://ror.org/01x84xc38 Philosophisch-Theologische Hochschule Sankt Georgen Sankt Georgen Graduate School of Philosophy and Theology'),
(36646, 'https://ror.org/01x99wc57', 'no_lang_code', 1, 'https://ror.org/01x99wc57 MicroTech Innovation (Norway)'),
(36647, 'https://ror.org/01x9cep12', 'no_lang_code', 1, 'https://ror.org/01x9cep12 Wienerberger (Norway)'),
(36648, 'https://ror.org/01xa4wv03', 'no_lang_code', 1, 'https://ror.org/01xa4wv03 Hydromega (Poland)'),
(36649, 'https://ror.org/01xc51294', 'no_lang_code', 1, 'https://ror.org/01xc51294 Scana (Norway)'),
(36650, 'https://ror.org/01xcx0382', 'en', 1, 'https://ror.org/01xcx0382 Sutherland Hospital'),
(36651, 'https://ror.org/01xd8qn15', 'en', 1, 'https://ror.org/01xd8qn15 St Woolos Hospital'),
(36652, 'https://ror.org/01xdmtt96', 'no_lang_code', 1, 'https://ror.org/01xdmtt96 Biolink Group (Norway)'),
(36653, 'https://ror.org/01xdsqb07', 'no_lang_code', 1, 'https://ror.org/01xdsqb07 Kvalvik (Norway)'),
(36654, 'https://ror.org/01xdw4k60', 'pt', 1, 'https://ror.org/01xdw4k60 Centro Brasileiro de AnƔlise e Planejamento'),
(36655, 'https://ror.org/01xet8208', 'de', 1, 'https://ror.org/01xet8208 Olgahospital'),
(36656, 'https://ror.org/01xgb9x41', 'no_lang_code', 1, 'https://ror.org/01xgb9x41 Sway (Norway)'),
(36657, 'https://ror.org/01xkb1z92', 'no_lang_code', 1, 'https://ror.org/01xkb1z92 Peterson (Norway)'),
(36658, 'https://ror.org/01xn49b44', 'no_lang_code', 1, 'https://ror.org/01xn49b44 CPZ International'),
(36659, 'https://ror.org/01xn7k765', 'en', 1, 'https://ror.org/01xn7k765 Corfu General Clinic'),
(36660, 'https://ror.org/01xn9tc24', 'no_lang_code', 1, 'https://ror.org/01xn9tc24 Promost Consulting (Poland)'),
(36661, 'https://ror.org/01xncyx73', 'en', 1, 'https://ror.org/01xncyx73 Second People''s Hospital of NanTong å—é€šåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(36662, 'https://ror.org/01xp9ya88', 'en', 1, 'https://ror.org/01xp9ya88 Flinders Private Hospital'),
(36663, 'https://ror.org/01xpk0z24', 'sl', 1, 'https://ror.org/01xpk0z24 Psihiatrična BolniŔnica Ormož'),
(36664, 'https://ror.org/01xqcr941', 'no_lang_code', 1, 'https://ror.org/01xqcr941 TECE Norge (Norway)'),
(36665, 'https://ror.org/01xqpsp32', 'en', 1, 'https://ror.org/01xqpsp32 Fountain Way'),
(36666, 'https://ror.org/01xryb297', 'no_lang_code', 1, 'https://ror.org/01xryb297 Indra Navia (Norway)'),
(36667, 'https://ror.org/01xsmx049', 'no_lang_code', 1, 'https://ror.org/01xsmx049 ImagineRT (Poland)'),
(36668, 'https://ror.org/01xssd484', 'no_lang_code', 1, 'https://ror.org/01xssd484 SAS Cargo (Norway)'),
(36669, 'https://ror.org/01xt6pa06', 'en', 1, 'https://ror.org/01xt6pa06 Mubende Hospital'),
(36670, 'https://ror.org/01xvh4n70', 'no_lang_code', 1, 'https://ror.org/01xvh4n70 Bull Ski & Kajakk (Norway)'),
(36671, 'https://ror.org/01xy3fg04', 'no_lang_code', 1, 'https://ror.org/01xy3fg04 Eltcrac System (Poland)'),
(36672, 'https://ror.org/01y07zp44', 'en', 1, 'https://ror.org/01y07zp44 Second Affiliated Hospital of Inner Mongolia Medical University'),
(36673, 'https://ror.org/01y0nwc34', 'no_lang_code', 1, 'https://ror.org/01y0nwc34 Odysci (Brazil)'),
(36674, 'https://ror.org/01y130z09', 'en', 1, 'https://ror.org/01y130z09 United Nations University-International Institute for Global Health'),
(36675, 'https://ror.org/01y361889', 'en', 1, 'https://ror.org/01y361889 Islamic Azad University Mahshahr دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ماهؓهر'),
(36676, 'https://ror.org/01y3dkh13', 'no_lang_code', 1, 'https://ror.org/01y3dkh13 Enalta Inovações Tecnológicas (Brazil)'),
(36677, 'https://ror.org/01y3fwb07', 'en', 1, 'https://ror.org/01y3fwb07 Aga Khan Hospital, Mombasa'),
(36678, 'https://ror.org/01y4k8j51', 'no_lang_code', 1, 'https://ror.org/01y4k8j51 Isothermal Technology (United Kingdom)'),
(36679, 'https://ror.org/01y5z8p89', 'en', 1, 'https://ror.org/01y5z8p89 James Cook University Singapore'),
(36680, 'https://ror.org/01y60ry16', 'en', 1, 'https://ror.org/01y60ry16 Gateway Seminary'),
(36681, 'https://ror.org/01y7nr056', 'no_lang_code', 1, 'https://ror.org/01y7nr056 Dpcom (Norway)'),
(36682, 'https://ror.org/01y87aw49', 'en', 1, 'https://ror.org/01y87aw49 Jilin City Central Hospital'),
(36683, 'https://ror.org/01y8byw03', 'no_lang_code', 1, 'https://ror.org/01y8byw03 Meaning Processing (Finland)'),
(36684, 'https://ror.org/01yb2dp72', 'no_lang_code', 1, 'https://ror.org/01yb2dp72 Br4Science (Brazil)'),
(36685, 'https://ror.org/01ybqnp73', 'de', 1, 'https://ror.org/01ybqnp73 Katholisches Klinikum Essen'),
(36686, 'https://ror.org/01ybxp914', 'de', 1, 'https://ror.org/01ybxp914 Landesamt für Denkmalpflege und Archäologie Sachsen-Anhalt'),
(36687, 'https://ror.org/01yejqg95', 'no_lang_code', 1, 'https://ror.org/01yejqg95 Applied Technical Services (United States)'),
(36688, 'https://ror.org/01yemzx31', 'en', 1, 'https://ror.org/01yemzx31 St. Anthony Hospital'),
(36689, 'https://ror.org/01ygcjp85', 'no_lang_code', 1, 'https://ror.org/01ygcjp85 Biosense Laboratories (Norway)'),
(36690, 'https://ror.org/01yj0ps95', 'en', 1, 'https://ror.org/01yj0ps95 Novant Health Charlotte Orthopedic Hospital'),
(36691, 'https://ror.org/01yjqh416', 'en', 1, 'https://ror.org/01yjqh416 Angkor Hospital for Children'),
(36692, 'https://ror.org/01yk80k13', 'no_lang_code', 1, 'https://ror.org/01yk80k13 Hytron (Brazil)'),
(36693, 'https://ror.org/01yn06q53', 'no', 1, 'https://ror.org/01yn06q53 Avdeling for Utdanning Nord-TrĆøndelag Fylkeskommune'),
(36694, 'https://ror.org/01yq0dc07', 'no_lang_code', 1, 'https://ror.org/01yq0dc07 Innovation Performance (Norway)'),
(36695, 'https://ror.org/01yq3x543', 'en', 1, 'https://ror.org/01yq3x543 Indira Gandhi Memorial Hospital'),
(36696, 'https://ror.org/01yr8vh25', 'no_lang_code', 1, 'https://ror.org/01yr8vh25 K.A. Rasmussen (Norway)'),
(36697, 'https://ror.org/01yvp8p19', 'en', 1, 'https://ror.org/01yvp8p19 General Numerics Research Lab'),
(36698, 'https://ror.org/01yweg667', 'no_lang_code', 1, 'https://ror.org/01yweg667 Simtronics (Norway)'),
(36699, 'https://ror.org/01yxywh30', 'no_lang_code', 1, 'https://ror.org/01yxywh30 Icopal (Poland)'),
(36700, 'https://ror.org/01yyc4w33', 'no_lang_code', 1, 'https://ror.org/01yyc4w33 Vidarforlaget (Norway)'),
(36701, 'https://ror.org/01yz57p78', 'en', 1, 'https://ror.org/01yz57p78 Iran University of Industries and Mines'),
(36702, 'https://ror.org/01z00ad02', 'no_lang_code', 1, 'https://ror.org/01z00ad02 EFD Induction (Norway)'),
(36703, 'https://ror.org/01z143507', 'en', 1, 'https://ror.org/01z143507 Institute of Electronics 中国科学院电子学研究所'),
(36704, 'https://ror.org/01z1jq781', 'no_lang_code', 1, 'https://ror.org/01z1jq781 Opinion (Norway)'),
(36705, 'https://ror.org/01z3h6v80', 'en', 1, 'https://ror.org/01z3h6v80 Norwegian Securities Dealers Association'),
(36706, 'https://ror.org/01z5a7f98', 'en', 1, 'https://ror.org/01z5a7f98 Webstudent'),
(36707, 'https://ror.org/01z5xma55', 'de', 1, 'https://ror.org/01z5xma55 Krankenhaus der Elisabethinen'),
(36708, 'https://ror.org/01z6h9229', 'no_lang_code', 1, 'https://ror.org/01z6h9229 Nowoczesne Techniki Instalacyjne (Poland)'),
(36709, 'https://ror.org/01z6y6z64', 'no', 1, 'https://ror.org/01z6y6z64 657 Oslo'),
(36710, 'https://ror.org/01z735w38', 'no_lang_code', 1, 'https://ror.org/01z735w38 Rek Swed (Poland)'),
(36711, 'https://ror.org/01z9pc360', 'no_lang_code', 1, 'https://ror.org/01z9pc360 GK (Norway)'),
(36712, 'https://ror.org/01za4wm85', 'pt', 1, 'https://ror.org/01za4wm85 Solução Ambiental Assessoria e Consultoria'),
(36713, 'https://ror.org/01zb5kv44', 'no_lang_code', 1, 'https://ror.org/01zb5kv44 Rajagiri Hospital'),
(36714, 'https://ror.org/01zevds37', 'no_lang_code', 1, 'https://ror.org/01zevds37 Germinal (Brazil)'),
(36715, 'https://ror.org/01zhqzf22', 'no_lang_code', 1, 'https://ror.org/01zhqzf22 VardĆø Barents Base (Norway)'),
(36716, 'https://ror.org/01zjqqd74', 'no_lang_code', 1, 'https://ror.org/01zjqqd74 Tottori Prefectural Kousei Hospital é³„å–ēœŒē«‹åŽšē”Ÿē—…é™¢'),
(36717, 'https://ror.org/01zjrck77', 'en', 1, 'https://ror.org/01zjrck77 National University'),
(36718, 'https://ror.org/01zkhn749', 'en', 1, 'https://ror.org/01zkhn749 St Christopher''s Hospice'),
(36719, 'https://ror.org/01zmf6239', 'no_lang_code', 1, 'https://ror.org/01zmf6239 Strongpoint (Norway)'),
(36720, 'https://ror.org/01zmty518', 'no_lang_code', 1, 'https://ror.org/01zmty518 Opera Software (Norway)'),
(36721, 'https://ror.org/01zn6j405', 'pt', 1, 'https://ror.org/01zn6j405 Academia de CiĆŖncias do Estado de SĆ£o Paulo'),
(36722, 'https://ror.org/01zndg142', 'en', 1, 'https://ror.org/01zndg142 Northeastern Vermont Regional Hospital'),
(36723, 'https://ror.org/01znj1w09', 'en', 1, 'https://ror.org/01znj1w09 Saint Thomas - Rutherford Hospital'),
(36724, 'https://ror.org/01zpfhn04', 'no_lang_code', 1, 'https://ror.org/01zpfhn04 Nattopharma (Norway)'),
(36725, 'https://ror.org/01zq8yd65', 'en', 1, 'https://ror.org/01zq8yd65 ProMedica Fostoria Community Hospital'),
(36726, 'https://ror.org/01zqypb88', 'en', 1, 'https://ror.org/01zqypb88 Institut für Informationsmanagement Bremen Institute for Information Management Bremen'),
(36727, 'https://ror.org/01zs0qn80', 'no_lang_code', 1, 'https://ror.org/01zs0qn80 Efix (Brazil)'),
(36728, 'https://ror.org/01zsd9g12', 'pt', 1, 'https://ror.org/01zsd9g12 Centro Cerâmico do Brasil'),
(36729, 'https://ror.org/01zwcb774', 'no_lang_code', 1, 'https://ror.org/01zwcb774 Deoxi Biotecnologia (Brazil)'),
(36730, 'https://ror.org/01zx9b829', 'en', 1, 'https://ror.org/01zx9b829 Aliwal North Hospital'),
(36731, 'https://ror.org/01zzvpv85', 'fr', 1, 'https://ror.org/01zzvpv85 CƩgep de Saint-Laurent'),
(36732, 'https://ror.org/0205pd806', 'no_lang_code', 1, 'https://ror.org/0205pd806 ECHO (Slovenia)'),
(36733, 'https://ror.org/0206aqk41', 'en', 1, 'https://ror.org/0206aqk41 Institut für die Geschichte der deutschen Juden Institute for the History of the German Jews'),
(36734, 'https://ror.org/0207qan07', 'no_lang_code', 1, 'https://ror.org/0207qan07 Geoambiente (Brazil)'),
(36735, 'https://ror.org/02091ng19', 'en', 1, 'https://ror.org/02091ng19 Lowell General Hospital'),
(36736, 'https://ror.org/0209g3a14', 'no_lang_code', 1, 'https://ror.org/0209g3a14 Innovations for Heart and Vessels (Poland)'),
(36737, 'https://ror.org/020deqr47', 'en', 1, 'https://ror.org/020deqr47 Eastern Norway Research Institute'),
(36738, 'https://ror.org/020e65m33', 'no_lang_code', 1, 'https://ror.org/020e65m33 AMES (Slovenia)'),
(36739, 'https://ror.org/020eynm41', 'en', 1, 'https://ror.org/020eynm41 Stracathro Hospital'),
(36740, 'https://ror.org/020f80982', 'no_lang_code', 1, 'https://ror.org/020f80982 Lividi (Norway)'),
(36741, 'https://ror.org/020hwg097', 'en', 1, 'https://ror.org/020hwg097 Institute for the Protection of Cultural Heritage of Slovenia'),
(36742, 'https://ror.org/020r4kx11', 'en', 1, 'https://ror.org/020r4kx11 Coquitlam College'),
(36743, 'https://ror.org/020rm1980', 'no_lang_code', 1, 'https://ror.org/020rm1980 Res Publica (Norway)'),
(36744, 'https://ror.org/020t0j562', 'en', 1, 'https://ror.org/020t0j562 Mahatma Gandhi Mission Medical College and Hospital'),
(36745, 'https://ror.org/020twtp42', 'en', 1, 'https://ror.org/020twtp42 Swiss Institute for Management and Hospitality'),
(36746, 'https://ror.org/020v4ez65', 'no_lang_code', 1, 'https://ror.org/020v4ez65 PREZIOSO Linjebygg (Norway)'),
(36747, 'https://ror.org/020vj5597', 'no', 1, 'https://ror.org/020vj5597 SĆørlandet Kunnskapspark'),
(36748, 'https://ror.org/0210sec94', 'no_lang_code', 1, 'https://ror.org/0210sec94 Hammertech (Norway)'),
(36749, 'https://ror.org/02149rc02', 'en', 1, 'https://ror.org/02149rc02 Vilniaus Å v. Juozapo kunigų seminarija Vilnius St. Joseph Seminary Š”ŠµŠ¼ŠøŠ½Š°Ń€ŠøŃ Š”Š²ŃŃ‚Š¾Š³Š¾ Š˜Š¾ŃŠøŃ„Š°'),
(36750, 'https://ror.org/0214vep53', 'no_lang_code', 1, 'https://ror.org/0214vep53 Madwaleni Hospital'),
(36751, 'https://ror.org/02156y972', 'no_lang_code', 1, 'https://ror.org/02156y972 Eli Lilly (India)'),
(36752, 'https://ror.org/0216ejh55', 'en', 1, 'https://ror.org/0216ejh55 Stutterheim Provincial Hospital'),
(36753, 'https://ror.org/0217s3a79', 'fr', 1, 'https://ror.org/0217s3a79 Centre Hospitalier Universitaire Yalgado OuƩdraogo'),
(36754, 'https://ror.org/0218d7462', 'ms', 1, 'https://ror.org/0218d7462 Manipal Hospital Klang'),
(36755, 'https://ror.org/021b6hf74', 'en', 1, 'https://ror.org/021b6hf74 Shanxi Taiyuan Jinkang Rheumatism Hospital'),
(36756, 'https://ror.org/021bx9h20', 'en', 1, 'https://ror.org/021bx9h20 Inver Hills Community College'),
(36757, 'https://ror.org/021c3kv95', 'no_lang_code', 1, 'https://ror.org/021c3kv95 Ƙkologisk Spesialkorn (Norway)'),
(36758, 'https://ror.org/021d0nd97', 'en', 1, 'https://ror.org/021d0nd97 First Scandinavia'),
(36759, 'https://ror.org/021dpgf14', 'no', 1, 'https://ror.org/021dpgf14 RegionrƄdet for Hallingdal'),
(36760, 'https://ror.org/021f59e59', 'en', 1, 'https://ror.org/021f59e59 Manchester Memorial Hospital'),
(36761, 'https://ror.org/021f7p178', 'en', 1, 'https://ror.org/021f7p178'),
(36762, 'https://ror.org/021fpfb36', 'no_lang_code', 1, 'https://ror.org/021fpfb36 Docmap (Norway)'),
(36763, 'https://ror.org/021frtx57', 'no_lang_code', 1, 'https://ror.org/021frtx57 Lychnoflora (Brazil)'),
(36764, 'https://ror.org/021gz1h55', 'no_lang_code', 1, 'https://ror.org/021gz1h55 Logon (Slovenia)'),
(36765, 'https://ror.org/021h8nm63', 'no_lang_code', 1, 'https://ror.org/021h8nm63 Knowit (Norway)'),
(36766, 'https://ror.org/021j2r958', 'no_lang_code', 1, 'https://ror.org/021j2r958 ACROS Security (Slovenia)'),
(36767, 'https://ror.org/021jq8741', 'en', 1, 'https://ror.org/021jq8741 Alliance for Health Policy and Systems Research'),
(36768, 'https://ror.org/021k9av74', 'no_lang_code', 1, 'https://ror.org/021k9av74 DEV Tecnologia (Brazil)'),
(36769, 'https://ror.org/021pm4a51', 'no_lang_code', 1, 'https://ror.org/021pm4a51 Utep (Brazil)'),
(36770, 'https://ror.org/021s7xp77', 'no_lang_code', 1, 'https://ror.org/021s7xp77 Helios (Slovenia)'),
(36771, 'https://ror.org/021sest91', 'no_lang_code', 1, 'https://ror.org/021sest91 BCS Tecnologia (Brazil)'),
(36772, 'https://ror.org/021yjvj30', 'en', 1, 'https://ror.org/021yjvj30 Norwegian Seafood Council'),
(36773, 'https://ror.org/021ypf588', 'no_lang_code', 1, 'https://ror.org/021ypf588 Scan4news (Norway)'),
(36774, 'https://ror.org/0220s7h54', 'en', 1, 'https://ror.org/0220s7h54 Institute for Civilization and Culture'),
(36775, 'https://ror.org/022641m79', 'no_lang_code', 1, 'https://ror.org/022641m79 Klar Tale'),
(36776, 'https://ror.org/0226dyd29', 'no', 1, 'https://ror.org/0226dyd29 SĆørlandet Boligbyggelag'),
(36777, 'https://ror.org/022861y27', 'no_lang_code', 1, 'https://ror.org/022861y27 Ektimo (Slovenia)'),
(36778, 'https://ror.org/0229zva94', 'no_lang_code', 1, 'https://ror.org/0229zva94 Tecplas Indústria e Comércio (Brazil)'),
(36779, 'https://ror.org/022ave037', 'en', 1, 'https://ror.org/022ave037 Campbellford Memorial Hospital'),
(36780, 'https://ror.org/022aw4932', 'no_lang_code', 1, 'https://ror.org/022aw4932 Mine Master (Poland)'),
(36781, 'https://ror.org/022bcfn34', 'no_lang_code', 1, 'https://ror.org/022bcfn34 Hansen Protection (Norway)'),
(36782, 'https://ror.org/022c1nw12', 'fi', 1, 'https://ror.org/022c1nw12 Salla'),
(36783, 'https://ror.org/022cbyf89', 'en', 1, 'https://ror.org/022cbyf89 Gaochun People''s Hospital'),
(36784, 'https://ror.org/022cem317', 'no_lang_code', 1, 'https://ror.org/022cem317 Multicorpos Engenharia (Brazil)'),
(36785, 'https://ror.org/022dft797', 'en', 1, 'https://ror.org/022dft797 Los Angeles Valley College'),
(36786, 'https://ror.org/022e3pg27', 'en', 1, 'https://ror.org/022e3pg27 Praesterno Foundation'),
(36787, 'https://ror.org/022egts32', 'no_lang_code', 1, 'https://ror.org/022egts32 Altech (Brazil)'),
(36788, 'https://ror.org/022gnfx83', 'no_lang_code', 1, 'https://ror.org/022gnfx83 Shell (Norway) Shell i Norge'),
(36789, 'https://ror.org/022j85822', 'no_lang_code', 1, 'https://ror.org/022j85822 Eurofins (Brazil)'),
(36790, 'https://ror.org/022ke2j41', 'no_lang_code', 1, 'https://ror.org/022ke2j41 Electromagnetic Geoservices (Norway)'),
(36791, 'https://ror.org/022m3jb71', 'en', 1, 'https://ror.org/022m3jb71 Hoima Hospital'),
(36792, 'https://ror.org/022qggq29', 'en', 1, 'https://ror.org/022qggq29 Hordaland County Council'),
(36793, 'https://ror.org/022qzp196', 'no_lang_code', 1, 'https://ror.org/022qzp196 Alimetrics (Finland)'),
(36794, 'https://ror.org/022sv5w75', 'en', 1, 'https://ror.org/022sv5w75 Islamic Azad University of Ahar دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد اهر'),
(36795, 'https://ror.org/022v7y137', 'en', 1, 'https://ror.org/022v7y137 Thomas Embling Hospital'),
(36796, 'https://ror.org/022w5pf74', 'en', 1, 'https://ror.org/022w5pf74 Institute for Symbolic analysis and Development of Information Technologies'),
(36797, 'https://ror.org/022w6y159', 'en', 1, 'https://ror.org/022w6y159 Norwegian Medical Association'),
(36798, 'https://ror.org/022x9cm37', 'no_lang_code', 1, 'https://ror.org/022x9cm37 Vocalize (Brazil)'),
(36799, 'https://ror.org/02324e112', 'en', 1, 'https://ror.org/02324e112 Mission Hospital'),
(36800, 'https://ror.org/0232rsc48', 'pt', 1, 'https://ror.org/0232rsc48 Secretaria da JustiƧa e da Defesa da Cidadania'),
(36801, 'https://ror.org/023312y65', 'no_lang_code', 1, 'https://ror.org/023312y65 Hystorsys (Norway)'),
(36802, 'https://ror.org/02333k624', 'en', 1, 'https://ror.org/02333k624 St. Joseph Dental College'),
(36803, 'https://ror.org/02346dc53', 'no_lang_code', 1, 'https://ror.org/02346dc53 Visitech (Norway)'),
(36804, 'https://ror.org/0234wv516', 'en', 1, 'https://ror.org/0234wv516 Chaohu Hospital of Anhui Medical University'),
(36805, 'https://ror.org/0234z1974', 'no_lang_code', 1, 'https://ror.org/0234z1974 Amedia (Norway)'),
(36806, 'https://ror.org/0235t2b60', 'fr', 1, 'https://ror.org/0235t2b60 Centre des Sciences de MontrƩal'),
(36807, 'https://ror.org/0236gc710', 'no_lang_code', 1, 'https://ror.org/0236gc710 SPPT Pesquisas Tecnológicas (Brazil)'),
(36808, 'https://ror.org/02394tn51', 'en', 1, 'https://ror.org/02394tn51 Columbia Basin College'),
(36809, 'https://ror.org/0239h0795', 'no_lang_code', 1, 'https://ror.org/0239h0795 Interon (Norway)'),
(36810, 'https://ror.org/0239rms91', 'no_lang_code', 1, 'https://ror.org/0239rms91 Biosergen (Norway)'),
(36811, 'https://ror.org/0239t8d82', 'no_lang_code', 1, 'https://ror.org/0239t8d82 Sensoft Automação (Brazil)'),
(36812, 'https://ror.org/0239yvq05', 'no_lang_code', 1, 'https://ror.org/0239yvq05 Expro (Norway)'),
(36813, 'https://ror.org/023ac3y20', 'en', 1, 'https://ror.org/023ac3y20 Chedoke Hospital'),
(36814, 'https://ror.org/023afa504', 'en', 1, 'https://ror.org/023afa504 Oregon State Hospital'),
(36815, 'https://ror.org/023ahcz89', 'en', 1, 'https://ror.org/023ahcz89 Max Planck Institute for Comparative and International Private Law Max-Planck-Institut für Ausländisches und Internationales Privatrecht'),
(36816, 'https://ror.org/023ar3785', 'en', 1, 'https://ror.org/023ar3785 County Governor of Nordland'),
(36817, 'https://ror.org/023e2rv43', 'no_lang_code', 1, 'https://ror.org/023e2rv43 Clearwater Group (Norway)'),
(36818, 'https://ror.org/023e9bm81', 'en', 1, 'https://ror.org/023e9bm81 Muhammad Nawaz Sharif University of Engineering & Technology'),
(36819, 'https://ror.org/023f84a29', 'no_lang_code', 1, 'https://ror.org/023f84a29 Statkraft (Norway)'),
(36820, 'https://ror.org/023fkcg80', 'en', 1, 'https://ror.org/023fkcg80 Africa International University'),
(36821, 'https://ror.org/023kmsj44', 'no_lang_code', 1, 'https://ror.org/023kmsj44 WINGS ICT Solutions (Greece)'),
(36822, 'https://ror.org/023m9d467', 'no_lang_code', 1, 'https://ror.org/023m9d467 Energy Dynamics (Norway)'),
(36823, 'https://ror.org/023mn6e26', 'en', 1, 'https://ror.org/023mn6e26 Semicolon'),
(36824, 'https://ror.org/023mvn081', 'en', 1, 'https://ror.org/023mvn081 Mevlana University Hospital'),
(36825, 'https://ror.org/023p8r457', 'en', 1, 'https://ror.org/023p8r457 Norwegian Forest Owners Association'),
(36826, 'https://ror.org/023pf5e38', 'en', 1, 'https://ror.org/023pf5e38 Somerville Hospital'),
(36827, 'https://ror.org/023pfp970', 'de', 1, 'https://ror.org/023pfp970 Staatsarchiv Bremen'),
(36828, 'https://ror.org/023q7sf47', 'no_lang_code', 1, 'https://ror.org/023q7sf47 BodĆø Science Park (Norway)'),
(36829, 'https://ror.org/023q9y161', 'no_lang_code', 1, 'https://ror.org/023q9y161 Albatros Aluminium (Poland)'),
(36830, 'https://ror.org/023rbaw78', 'fr', 1, 'https://ror.org/023rbaw78 UniversitƩ des Sciences, des Techniques et des Technologies de Bamako'),
(36831, 'https://ror.org/023s53v33', 'no_lang_code', 1, 'https://ror.org/023s53v33 Invel (Brazil)'),
(36832, 'https://ror.org/023sbte93', 'en', 1, 'https://ror.org/023sbte93 Cosumnes River College'),
(36833, 'https://ror.org/023vb4t46', 'de', 1, 'https://ror.org/023vb4t46 Institut für Sächsische Geschichte und Volkskunde'),
(36834, 'https://ror.org/023vx9026', 'no_lang_code', 1, 'https://ror.org/023vx9026 Prediktor (Norway)'),
(36835, 'https://ror.org/023wja311', 'sl', 1, 'https://ror.org/023wja311 FrančiŔkanski Družinski InŔtitut'),
(36836, 'https://ror.org/023x8re17', 'no_lang_code', 1, 'https://ror.org/023x8re17 Bangkok Christian Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøąø£ąøøąø‡ą¹€ąø—ąøžąø„ąø£ąø“ąøŖą¹€ąø•ąøµąø¢ąø™'),
(36837, 'https://ror.org/023zwk705', 'no_lang_code', 1, 'https://ror.org/023zwk705 IPS (Brazil)'),
(36838, 'https://ror.org/0243vac68', 'en', 1, 'https://ror.org/0243vac68 GMC Hospital'),
(36839, 'https://ror.org/0244q6h72', 'no_lang_code', 1, 'https://ror.org/0244q6h72 LPKF Group (Slovenia)'),
(36840, 'https://ror.org/0244tm524', 'no_lang_code', 1, 'https://ror.org/0244tm524 Securenok (Norway)'),
(36841, 'https://ror.org/0244wrw23', 'no_lang_code', 1, 'https://ror.org/0244wrw23 AGX Tecnologia (Brazil)'),
(36842, 'https://ror.org/0245knx74', 'no_lang_code', 1, 'https://ror.org/0245knx74 Tidal Sails (Norway)'),
(36843, 'https://ror.org/0247xas18', 'en', 1, 'https://ror.org/0247xas18 Guigang City People''s Hospital'),
(36844, 'https://ror.org/02492wy41', 'no_lang_code', 1, 'https://ror.org/02492wy41 Biogrid (Norway)'),
(36845, 'https://ror.org/024a7ry57', 'en', 1, 'https://ror.org/024a7ry57 KjeĆøy Research & Education Center, Trading Post and Fishing Village'),
(36846, 'https://ror.org/024bc8636', 'no_lang_code', 1, 'https://ror.org/024bc8636 Novitech (Slovakia)'),
(36847, 'https://ror.org/024dhg912', 'no_lang_code', 1, 'https://ror.org/024dhg912 Seamless (Norway)'),
(36848, 'https://ror.org/024f41j50', 'no_lang_code', 1, 'https://ror.org/024f41j50 Versor Inovação Tecnológica (Brazil)'),
(36849, 'https://ror.org/024fetb28', 'no_lang_code', 1, 'https://ror.org/024fetb28 Salt Sea & Limno Technology'),
(36850, 'https://ror.org/024jky872', 'no', 1, 'https://ror.org/024jky872 Norsk Trevare'),
(36851, 'https://ror.org/024kjg104', 'pt', 1, 'https://ror.org/024kjg104 Associação Brasileira de InformÔtica'),
(36852, 'https://ror.org/024m1yq44', 'no_lang_code', 1, 'https://ror.org/024m1yq44 Camelback (Brazil)'),
(36853, 'https://ror.org/024mwqq28', 'en', 1, 'https://ror.org/024mwqq28 Buskerud County Municipality'),
(36854, 'https://ror.org/024mz1171', 'no_lang_code', 1, 'https://ror.org/024mz1171 Budopex (Poland)'),
(36855, 'https://ror.org/024nns705', 'en', 1, 'https://ror.org/024nns705 Tana Municipality'),
(36856, 'https://ror.org/024nzz449', 'de', 1, 'https://ror.org/024nzz449 Institut für Sozialforschung und Sozialwirtschaft'),
(36857, 'https://ror.org/024pdem44', 'en', 1, 'https://ror.org/024pdem44 Hyogo University 兵庫大学'),
(36858, 'https://ror.org/024s10v78', 'no_lang_code', 1, 'https://ror.org/024s10v78 ESU-Services (Switzerland)'),
(36859, 'https://ror.org/024sym234', 'en', 1, 'https://ror.org/024sym234 St. Cloud Hospital'),
(36860, 'https://ror.org/024thra40', 'en', 1, 'https://ror.org/024thra40 Helmholtz Institute Mainz Helmholtz-Institut Mainz'),
(36861, 'https://ror.org/024tya472', 'pt', 1, 'https://ror.org/024tya472 Sociedade Brasileira de GenƩtica'),
(36862, 'https://ror.org/024vfsp92', 'en', 1, 'https://ror.org/024vfsp92 UPMC Presbyterian'),
(36863, 'https://ror.org/024x6hc31', 'no_lang_code', 1, 'https://ror.org/024x6hc31 Agder Energi (Norway)'),
(36864, 'https://ror.org/024xst005', 'no_lang_code', 1, 'https://ror.org/024xst005 Alten (Italy)'),
(36865, 'https://ror.org/024yt9656', 'en', 1, 'https://ror.org/024yt9656 Villa Maria Hospital'),
(36866, 'https://ror.org/02506kf89', 'de', 1, 'https://ror.org/02506kf89 Klinikum Weiden'),
(36867, 'https://ror.org/0253es752', 'en', 1, 'https://ror.org/0253es752 Martin Luther King, Jr. Community Hospital'),
(36868, 'https://ror.org/0254m6v25', 'no_lang_code', 1, 'https://ror.org/0254m6v25 Harald KrogsƦter (Norway)'),
(36869, 'https://ror.org/0257s2812', 'en', 1, 'https://ror.org/0257s2812 Robina Hospital'),
(36870, 'https://ror.org/0257syp95', 'de', 1, 'https://ror.org/0257syp95 Friedrich-Ebert-Krankenhaus'),
(36871, 'https://ror.org/0259bcz98', 'en', 1, 'https://ror.org/0259bcz98 Brisbane School of Theology, Crossway College'),
(36872, 'https://ror.org/0259gsa43', 'en', 1, 'https://ror.org/0259gsa43 Brigham Young University Hawaii, Brigham Young University–Hawaii'),
(36873, 'https://ror.org/025cgya16', 'no_lang_code', 1, 'https://ror.org/025cgya16 GTM Mobil (Poland)'),
(36874, 'https://ror.org/025fme611', 'en', 1, 'https://ror.org/025fme611 Lewisham College, Lewisham Southwark College'),
(36875, 'https://ror.org/025g6sc95', 'en', 1, 'https://ror.org/025g6sc95 President''s Emergency Plan for AIDS Relief'),
(36876, 'https://ror.org/025j99319', 'no_lang_code', 1, 'https://ror.org/025j99319 Elop (Norway)'),
(36877, 'https://ror.org/025jcmr63', 'no_lang_code', 1, 'https://ror.org/025jcmr63 Clorovale Diamantes (Brazil)'),
(36878, 'https://ror.org/025jpz175', 'no_lang_code', 1, 'https://ror.org/025jpz175 Csub (Norway)'),
(36879, 'https://ror.org/025m8nj62', 'no_lang_code', 1, 'https://ror.org/025m8nj62 Frontier Hospital'),
(36880, 'https://ror.org/025p6sg19', 'en', 1, 'https://ror.org/025p6sg19 Limbe Provincial Hospital'),
(36881, 'https://ror.org/025q8bf29', 'no_lang_code', 1, 'https://ror.org/025q8bf29 BEWi (Norway)'),
(36882, 'https://ror.org/025rbqk82', 'en', 1, 'https://ror.org/025rbqk82 Small and Medium Enterprises Development Organization'),
(36883, 'https://ror.org/025ve8p25', 'no_lang_code', 1, 'https://ror.org/025ve8p25 Gazprombank'),
(36884, 'https://ror.org/025wsd308', 'en', 1, 'https://ror.org/025wsd308 Sieć Badawcza Łukasiewicz – Przemysłowy Instytut Motoryzacji Łukasiewicz Research Network - Automotive Industry Institute'),
(36885, 'https://ror.org/025xvg623', 'no_lang_code', 1, 'https://ror.org/025xvg623 EY Technologies (United States)'),
(36886, 'https://ror.org/025z8hh73', 'tr', 1, 'https://ror.org/025z8hh73 Suluova Devlet Hastanesi'),
(36887, 'https://ror.org/0261d1g37', 'en', 1, 'https://ror.org/0261d1g37 Second Hospital of Nanchang'),
(36888, 'https://ror.org/0261v0920', 'no_lang_code', 1, 'https://ror.org/0261v0920 Pedmo (Poland)'),
(36889, 'https://ror.org/02621tf26', 'no_lang_code', 1, 'https://ror.org/02621tf26 Norboat (Norway)'),
(36890, 'https://ror.org/0266m8d62', 'de', 1, 'https://ror.org/0266m8d62 Frankfurter Goethe Haus – Freies Deutsches Hochstift'),
(36891, 'https://ror.org/02671ys76', 'tr', 1, 'https://ror.org/02671ys76 Yunus Emre Hastanesi'),
(36892, 'https://ror.org/026dp8058', 'en', 1, 'https://ror.org/026dp8058 Baghdad College of Economic Sciences University ŁƒŁ„ŁŠŲ© ŲØŲŗŲÆŲ§ŲÆ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŁŠŲ© الجامعة'),
(36893, 'https://ror.org/026g68t18', 'no_lang_code', 1, 'https://ror.org/026g68t18 Zhoushan Hospital'),
(36894, 'https://ror.org/026j3ke77', 'en', 1, 'https://ror.org/026j3ke77 Asbury Theological Seminary'),
(36895, 'https://ror.org/026k8vn84', 'no_lang_code', 1, 'https://ror.org/026k8vn84 PPM Robotics (Norway)'),
(36896, 'https://ror.org/026kbck74', 'no_lang_code', 1, 'https://ror.org/026kbck74 Proeletronic (Brazil)'),
(36897, 'https://ror.org/026nfkh32', 'no', 1, 'https://ror.org/026nfkh32 Modum Bad – Gordon Johnsens stiftelse'),
(36898, 'https://ror.org/026t4yj55', 'no_lang_code', 1, 'https://ror.org/026t4yj55 Retura (Norway)'),
(36899, 'https://ror.org/026taa863', 'en', 1, 'https://ror.org/026taa863 Fraunhofer Institute for Machine Tools and Forming Technology Fraunhofer-Institut für Werkzeugmaschinen und Umformtechnik'),
(36900, 'https://ror.org/026xrdv37', 'no_lang_code', 1, 'https://ror.org/026xrdv37 Playax Internet (Brazil)'),
(36901, 'https://ror.org/026y8kf09', 'no_lang_code', 1, 'https://ror.org/026y8kf09 Halify (Norway)'),
(36902, 'https://ror.org/0271rqt72', 'pt', 1, 'https://ror.org/0271rqt72 Fundação de Rotarianos de São Paulo'),
(36903, 'https://ror.org/0271xgz16', 'en', 1, 'https://ror.org/0271xgz16 Women of Color Breast Cancer Survivors'' Support Project'),
(36904, 'https://ror.org/02729dt24', 'no_lang_code', 1, 'https://ror.org/02729dt24 NavSys (Norway)'),
(36905, 'https://ror.org/0272hbz69', 'no_lang_code', 1, 'https://ror.org/0272hbz69 SeaSide (Norway)'),
(36906, 'https://ror.org/0272wvz49', 'en', 1, 'https://ror.org/0272wvz49 Los Angeles Trade Technical College Universidad Comunitaria Vocacional–TĆ©cnica de Los Ɓngeles'),
(36907, 'https://ror.org/02730rb40', 'no_lang_code', 1, 'https://ror.org/02730rb40 Novelda (Norway)'),
(36908, 'https://ror.org/027419338', 'en', 1, 'https://ror.org/027419338 Rygge Municipality'),
(36909, 'https://ror.org/027697215', 'en', 1, 'https://ror.org/027697215 College of West Anglia'),
(36910, 'https://ror.org/027dbtv13', 'no_lang_code', 1, 'https://ror.org/027dbtv13 Mextra (Brazil)'),
(36911, 'https://ror.org/027ec3b27', 'no_lang_code', 1, 'https://ror.org/027ec3b27 Anod-Arc ComƩrcio e ServiƧos Anod-arc (Brazil)'),
(36912, 'https://ror.org/027hr5e81', 'no_lang_code', 1, 'https://ror.org/027hr5e81 Melbu Systems (Norway)'),
(36913, 'https://ror.org/027kfm928', 'no_lang_code', 1, 'https://ror.org/027kfm928 Troms Kraft (Norway)'),
(36914, 'https://ror.org/027n0t368', 'no_lang_code', 1, 'https://ror.org/027n0t368 Nordic wildfish (Norway)'),
(36915, 'https://ror.org/027p4v066', 'no_lang_code', 1, 'https://ror.org/027p4v066 EAB Engineering (Norway)'),
(36916, 'https://ror.org/027pg7t61', 'no_lang_code', 1, 'https://ror.org/027pg7t61 Chemyunion (Brazil)'),
(36917, 'https://ror.org/027pytp55', 'no', 1, 'https://ror.org/027pytp55 Eidskog Kommune'),
(36918, 'https://ror.org/027q1ta90', 'en', 1, 'https://ror.org/027q1ta90 Georgia Military College'),
(36919, 'https://ror.org/027qtg134', 'no_lang_code', 1, 'https://ror.org/027qtg134 Flexit (Norway)'),
(36920, 'https://ror.org/027r49s81', 'no_lang_code', 1, 'https://ror.org/027r49s81 Fortis Malar Hospital'),
(36921, 'https://ror.org/027s4f313', 'no_lang_code', 1, 'https://ror.org/027s4f313 Menon Business Economics (Norway)'),
(36922, 'https://ror.org/027sjp768', 'en', 1, 'https://ror.org/027sjp768 Queanbeyan District Hospital'),
(36923, 'https://ror.org/027snk764', 'no_lang_code', 1, 'https://ror.org/027snk764 SpinChip Diagnostics (Norway)'),
(36924, 'https://ror.org/027sqes69', 'no_lang_code', 1, 'https://ror.org/027sqes69 Iskra (Slovenia)'),
(36925, 'https://ror.org/027t6ka17', 'en', 1, 'https://ror.org/027t6ka17 Indian School of Business इंऔियन ą¤øą„ą¤•ą„‚ą¤² ऑफ ą¤¬ą¤æą¤œą¤Øą„‡ą¤ø ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°øą±ą°•ą±‚ą°²ą± ą°†ą°«ą± ą°¬ą°æą°œą°æą°Øą±†ą°øą± ą²‡ą²‚ą²”ą²æą²Æą²Øą³ ą²øą³ą²•ą³‚ą²²ą³ ą²†ą²«ą³ ą²¬ą²æą²øą²æą²Øą³†ą²øą³'),
(36926, 'https://ror.org/027wzg564', 'en', 1, 'https://ror.org/027wzg564 Australian College of Applied Psychology'),
(36927, 'https://ror.org/027xmwe42', 'en', 1, 'https://ror.org/027xmwe42 General Hospital of Drama'),
(36928, 'https://ror.org/027xvbw13', 'en', 1, 'https://ror.org/027xvbw13 Orthopaedic Hospital Valdoltra'),
(36929, 'https://ror.org/027y59j70', 'en', 1, 'https://ror.org/027y59j70 Mariakani Cottage Hospital'),
(36930, 'https://ror.org/027z9zj80', 'no_lang_code', 1, 'https://ror.org/027z9zj80 Numerola (Finland)'),
(36931, 'https://ror.org/027zxhv97', 'no_lang_code', 1, 'https://ror.org/027zxhv97 Research Management (Norway)'),
(36932, 'https://ror.org/028203t96', 'en', 1, 'https://ror.org/028203t96 Peace Harbor Hospital'),
(36933, 'https://ror.org/028521m47', 'no_lang_code', 1, 'https://ror.org/028521m47 Balter Medical (Norway)'),
(36934, 'https://ror.org/02869ee65', 'no_lang_code', 1, 'https://ror.org/02869ee65 FiReCo (Norway)'),
(36935, 'https://ror.org/0289r4642', 'en', 1, 'https://ror.org/0289r4642 St. John''s Rehab Hospital'),
(36936, 'https://ror.org/028a3zj94', 'no', 1, 'https://ror.org/028a3zj94 Solskjerming'),
(36937, 'https://ror.org/028bcwc63', 'no_lang_code', 1, 'https://ror.org/028bcwc63 Fabriscale Technologies (Norway)'),
(36938, 'https://ror.org/028dt6y58', 'no_lang_code', 1, 'https://ror.org/028dt6y58 Bergen TeknologioverfĆøring (Norway)'),
(36939, 'https://ror.org/028fs8s54', 'no_lang_code', 1, 'https://ror.org/028fs8s54 Radionor Communications (Norway)'),
(36940, 'https://ror.org/028fzwe08', 'fr', 1, 'https://ror.org/028fzwe08 Laboratoire des ProcƩdƩs en Milieux Granulaires Granulaires'),
(36941, 'https://ror.org/028hxy872', 'pl', 1, 'https://ror.org/028hxy872 Centrum Medyczne Aurismed'),
(36942, 'https://ror.org/028j9tc52', 'de', 1, 'https://ror.org/028j9tc52 Niedersächsisches Institut für frühkindliche Bildung und Entwicklung'),
(36943, 'https://ror.org/028r81743', 'en', 1, 'https://ror.org/028r81743 Habitat for Humanity'),
(36944, 'https://ror.org/028rs2d85', 'no_lang_code', 1, 'https://ror.org/028rs2d85 ReNorway (Norway)'),
(36945, 'https://ror.org/028t3qn68', 'no_lang_code', 1, 'https://ror.org/028t3qn68 Meventus (Norway)'),
(36946, 'https://ror.org/028wsx658', 'no_lang_code', 1, 'https://ror.org/028wsx658 Danaher (Norway)'),
(36947, 'https://ror.org/028xyhs09', 'pt', 1, 'https://ror.org/028xyhs09 Processos - SoluƧƵes de Engenharia (Brazil)'),
(36948, 'https://ror.org/028yd4c30', 'en', 1, 'https://ror.org/028yd4c30 Division of Civil, Mechanical & Manufacturing Innovation'),
(36949, 'https://ror.org/028zzym80', 'no_lang_code', 1, 'https://ror.org/028zzym80 Morenot (Norway)'),
(36950, 'https://ror.org/02903cd17', 'no_lang_code', 1, 'https://ror.org/02903cd17 Keysight Technologies (United States)'),
(36951, 'https://ror.org/02921wt38', 'en', 1, 'https://ror.org/02921wt38 Grace Cottage Hospital'),
(36952, 'https://ror.org/0293jje80', 'no_lang_code', 1, 'https://ror.org/0293jje80 Cetis (Slovenia)'),
(36953, 'https://ror.org/02957ep02', 'no_lang_code', 1, 'https://ror.org/02957ep02 Pol-Nil (Poland)'),
(36954, 'https://ror.org/0295npy46', 'no_lang_code', 1, 'https://ror.org/0295npy46 Zeracryl (Norway)'),
(36955, 'https://ror.org/029amtg39', 'no_lang_code', 1, 'https://ror.org/029amtg39 Fermavi (Brazil)'),
(36956, 'https://ror.org/029d98p07', 'en', 1, 'https://ror.org/029d98p07 Southampton Children''s Hospital'),
(36957, 'https://ror.org/029m5wr77', 'en', 1, 'https://ror.org/029m5wr77 Grande International Hospital'),
(36958, 'https://ror.org/029ndw944', 'no', 1, 'https://ror.org/029ndw944 Norsk VirkesmƄling'),
(36959, 'https://ror.org/029s65f92', 'en', 1, 'https://ror.org/029s65f92 Ministry of Communications MinistƩrio das ComunicaƧƵes'),
(36960, 'https://ror.org/029w49918', 'no_lang_code', 1, 'https://ror.org/029w49918 Mengchao Hepatobiliary Hospital'),
(36961, 'https://ror.org/02a0q1e43', 'en', 1, 'https://ror.org/02a0q1e43 Norwegian Universities and Colleges Admission Service'),
(36962, 'https://ror.org/02a1wev37', 'no_lang_code', 1, 'https://ror.org/02a1wev37 E Plug (Norway)'),
(36963, 'https://ror.org/02a242w84', 'no_lang_code', 1, 'https://ror.org/02a242w84 Savo (Norway)'),
(36964, 'https://ror.org/02a2hb496', 'en', 1, 'https://ror.org/02a2hb496 Nazareth Hospital EMMS مستؓفى الناصرة Ų§.Ł….Ł….Ų³'),
(36965, 'https://ror.org/02a3nmn42', 'pt', 1, 'https://ror.org/02a3nmn42 Fundação Educacional D. André Arcoverde'),
(36966, 'https://ror.org/02a3v6h38', 'no_lang_code', 1, 'https://ror.org/02a3v6h38 Electrical Subsea and Drilling (Norway)'),
(36967, 'https://ror.org/02a65dj82', 'en', 1, 'https://ror.org/02a65dj82 SBE Office of Multidisciplinary Activities');
INSERT INTO `rors` VALUES
(36968, 'https://ror.org/02a9cbd93', 'no_lang_code', 1, 'https://ror.org/02a9cbd93 Novo Mel (Brazil)'),
(36969, 'https://ror.org/02acpt629', 'en', 1, 'https://ror.org/02acpt629 Aeris Futuro Foundation'),
(36970, 'https://ror.org/02ad2pb06', 'en', 1, 'https://ror.org/02ad2pb06 International American University'),
(36971, 'https://ror.org/02ad32n85', 'de', 1, 'https://ror.org/02ad32n85 Klassik Stiftung Weimar'),
(36972, 'https://ror.org/02afrq658', 'no_lang_code', 1, 'https://ror.org/02afrq658 Polarkonsult (Norway)'),
(36973, 'https://ror.org/02agh6277', 'no_lang_code', 1, 'https://ror.org/02agh6277 CO2-Norway (Norway)'),
(36974, 'https://ror.org/02agpjg13', 'en', 1, 'https://ror.org/02agpjg13 Matany Hospital'),
(36975, 'https://ror.org/02agrc313', 'en', 1, 'https://ror.org/02agrc313 Rebecca Sealy Hospital'),
(36976, 'https://ror.org/02ahy9q02', 'no_lang_code', 1, 'https://ror.org/02ahy9q02 Iskra ZaŔčite (Slovenia)'),
(36977, 'https://ror.org/02akjg578', 'en', 1, 'https://ror.org/02akjg578 Mackinnon Memorial Hospital'),
(36978, 'https://ror.org/02an0gw26', 'en', 1, 'https://ror.org/02an0gw26 Cumberland County College'),
(36979, 'https://ror.org/02ans6w40', 'en', 1, 'https://ror.org/02ans6w40 Network Learning Lab'),
(36980, 'https://ror.org/02apz9z86', 'no_lang_code', 1, 'https://ror.org/02apz9z86 Wojas (Poland)'),
(36981, 'https://ror.org/02aqc1f57', 'no', 1, 'https://ror.org/02aqc1f57 3T Helse (Norway)'),
(36982, 'https://ror.org/02ar02c28', 'en', 1, 'https://ror.org/02ar02c28 Wuxi Fourth People''s Hospital'),
(36983, 'https://ror.org/02ar2nf05', 'en', 1, 'https://ror.org/02ar2nf05 Shandong Provincial Hospital å±±äøœēœē«‹åŒ»é™¢'),
(36984, 'https://ror.org/02attg727', 'no_lang_code', 1, 'https://ror.org/02attg727 Bayer (Norway)'),
(36985, 'https://ror.org/02ax94a12', 'en', 1, 'https://ror.org/02ax94a12 Addis Continental Institute of Public Health'),
(36986, 'https://ror.org/02axhzn68', 'en', 1, 'https://ror.org/02axhzn68 Naggalama Hospital'),
(36987, 'https://ror.org/02axqg987', 'en', 1, 'https://ror.org/02axqg987 Angelina College'),
(36988, 'https://ror.org/02ay6xb89', 'en', 1, 'https://ror.org/02ay6xb89 Norwegian Kennel Club'),
(36989, 'https://ror.org/02ayrn205', 'no_lang_code', 1, 'https://ror.org/02ayrn205 Waddan Systems (United States)'),
(36990, 'https://ror.org/02az15671', 'en', 1, 'https://ror.org/02az15671 Kilgore College'),
(36991, 'https://ror.org/02az81309', 'no_lang_code', 1, 'https://ror.org/02az81309 Konjekt (Norway)'),
(36992, 'https://ror.org/02b3z7h52', 'en', 1, 'https://ror.org/02b3z7h52 International Association for Comparative Research on Leukemia and Related Diseases'),
(36993, 'https://ror.org/02b3zmq47', 'en', 1, 'https://ror.org/02b3zmq47 Norwegian Center of Expertise'),
(36994, 'https://ror.org/02b7hq178', 'no_lang_code', 1, 'https://ror.org/02b7hq178 Breeze (Norway)'),
(36995, 'https://ror.org/02b8bdw43', 'de', 1, 'https://ror.org/02b8bdw43 Praxisklinik für Orthopädie, Unfall- und Neurochirurgie'),
(36996, 'https://ror.org/02bc2r066', 'no_lang_code', 1, 'https://ror.org/02bc2r066 Alfsen og Gunderson (Norway)'),
(36997, 'https://ror.org/02bc4vm73', 'no_lang_code', 1, 'https://ror.org/02bc4vm73 Sonitor Technologies (Norway)'),
(36998, 'https://ror.org/02bd3qj97', 'en', 1, 'https://ror.org/02bd3qj97 Kensington College of Business'),
(36999, 'https://ror.org/02bdht408', 'no_lang_code', 1, 'https://ror.org/02bdht408 Thema (Brazil)'),
(37000, 'https://ror.org/02bfb2d67', 'en', 1, 'https://ror.org/02bfb2d67 Martha''s Vineyard Hospital'),
(37001, 'https://ror.org/02bg43d92', 'en', 1, 'https://ror.org/02bg43d92 P.Z. Meyer Hospital'),
(37002, 'https://ror.org/02bga3905', 'no_lang_code', 1, 'https://ror.org/02bga3905 Rofi (Norway)'),
(37003, 'https://ror.org/02bjjst49', 'en', 1, 'https://ror.org/02bjjst49 Bergen Science Center'),
(37004, 'https://ror.org/02bme6n25', 'en', 1, 'https://ror.org/02bme6n25 Association of Independent Colleges and Universities in Massachusetts'),
(37005, 'https://ror.org/02bnct292', 'en', 1, 'https://ror.org/02bnct292 South Bruce Grey Health Centre'),
(37006, 'https://ror.org/02bnr5073', 'en', 1, 'https://ror.org/02bnr5073 Stomatological Hospital of Chongqing Medical University'),
(37007, 'https://ror.org/02bp8ne74', 'no_lang_code', 1, 'https://ror.org/02bp8ne74 Orochem Technologies (United States)'),
(37008, 'https://ror.org/02br7py06', 'en', 1, 'https://ror.org/02br7py06 Shanghai Advanced Research Institute äøŠęµ·é«˜ē­‰ē ”ē©¶é™¢'),
(37009, 'https://ror.org/02bs89v88', 'no_lang_code', 1, 'https://ror.org/02bs89v88 Geograf (Norway)'),
(37010, 'https://ror.org/02bsc8781', 'no_lang_code', 1, 'https://ror.org/02bsc8781 Gezhouba Explosive (China)'),
(37011, 'https://ror.org/02bsh9z73', 'en', 1, 'https://ror.org/02bsh9z73 Curt Engelhorn Centre Archaeometry Curt-Engelhorn-Zentrum ArchƤometrie'),
(37012, 'https://ror.org/02bt3yy91', 'en', 1, 'https://ror.org/02bt3yy91 Miami Valley Hospital South'),
(37013, 'https://ror.org/02bte5314', 'no_lang_code', 1, 'https://ror.org/02bte5314 Maritim Food (Norway)'),
(37014, 'https://ror.org/02bvyfx27', 'no_lang_code', 1, 'https://ror.org/02bvyfx27 Techfilter (Brazil)'),
(37015, 'https://ror.org/02bxe3959', 'en', 1, 'https://ror.org/02bxe3959 Changchun Obstetrics and Gynecology Hospital'),
(37016, 'https://ror.org/02c00pn47', 'en', 1, 'https://ror.org/02c00pn47 Durango Institute of Technology Instituto Tecnológico de Durango'),
(37017, 'https://ror.org/02c1qc696', 'ms', 1, 'https://ror.org/02c1qc696 Hospital Seberang Jaya'),
(37018, 'https://ror.org/02c1wa369', 'no_lang_code', 1, 'https://ror.org/02c1wa369 Interwell (Norway)'),
(37019, 'https://ror.org/02c28a074', 'de', 1, 'https://ror.org/02c28a074 Kantonsspital Münsterlingen'),
(37020, 'https://ror.org/02c2cgf66', 'no_lang_code', 1, 'https://ror.org/02c2cgf66 Engemap (Brazil)'),
(37021, 'https://ror.org/02c3nsj20', 'tr', 1, 'https://ror.org/02c3nsj20 Beytepe Asker Hastanesi'),
(37022, 'https://ror.org/02c3phe56', 'en', 1, 'https://ror.org/02c3phe56 Witold Stefański Institute of Parasitology Witolda Stefańskiego Instytut Parazytologii PAN'),
(37023, 'https://ror.org/02c46jq57', 'en', 1, 'https://ror.org/02c46jq57 StƤdel Museum StƤdelsches Kunstinstitut und StƤdtische Galerie'),
(37024, 'https://ror.org/02c4ez492', 'no_lang_code', 1, 'https://ror.org/02c4ez492 Hershey (United States)'),
(37025, 'https://ror.org/02c52d726', 'no_lang_code', 1, 'https://ror.org/02c52d726 Netvmi (Brazil)'),
(37026, 'https://ror.org/02c5dz126', 'en', 1, 'https://ror.org/02c5dz126 University B.T. & Evening College'),
(37027, 'https://ror.org/02ca6sz73', 'no_lang_code', 1, 'https://ror.org/02ca6sz73 BNW-Energy (Norway)'),
(37028, 'https://ror.org/02cbfxf79', 'en', 1, 'https://ror.org/02cbfxf79 St Patrick''s Hospital'),
(37029, 'https://ror.org/02cdemf49', 'en', 1, 'https://ror.org/02cdemf49 European Liaison Office of the German Research Organisations Kooperationsstelle EU der Wissenschaftsorganisationen'),
(37030, 'https://ror.org/02ceer540', 'no_lang_code', 1, 'https://ror.org/02ceer540 SalMar (Norway)'),
(37031, 'https://ror.org/02cfg8q88', 'en', 1, 'https://ror.org/02cfg8q88 Council of Christian Hospitals'),
(37032, 'https://ror.org/02cghc635', 'no_lang_code', 1, 'https://ror.org/02cghc635 Buchang Pharma (China)'),
(37033, 'https://ror.org/02cjc1z91', 'no_lang_code', 1, 'https://ror.org/02cjc1z91 Humanwell Healthcare Group (China)'),
(37034, 'https://ror.org/02ck8dx35', 'no_lang_code', 1, 'https://ror.org/02ck8dx35 Al-Salam Hospital Hopital de la Paix'),
(37035, 'https://ror.org/02ckz2f26', 'en', 1, 'https://ror.org/02ckz2f26 Kansas City Kansas Community College'),
(37036, 'https://ror.org/02cnnsp10', 'en', 1, 'https://ror.org/02cnnsp10 Forest Science and Research Institute Instituto de Pesquisas e Estudos Florestais'),
(37037, 'https://ror.org/02cpyxc95', 'no_lang_code', 1, 'https://ror.org/02cpyxc95 NutraQ (Norway)'),
(37038, 'https://ror.org/02cqb6d97', 'no_lang_code', 1, 'https://ror.org/02cqb6d97 Zakład Automatyki Przemysłowej (Poland)'),
(37039, 'https://ror.org/02crxt883', 'no_lang_code', 1, 'https://ror.org/02crxt883 Intravision Group (Norway)'),
(37040, 'https://ror.org/02czw4g92', 'en', 1, 'https://ror.org/02czw4g92 New Leaf Venture Partners'),
(37041, 'https://ror.org/02d0cnn24', 'en', 1, 'https://ror.org/02d0cnn24 Agriculture Fisheries and Conservation Department, Agriculture, Fisheries and Conservation Department 漁農自然護理署'),
(37042, 'https://ror.org/02d0m4q63', 'no_lang_code', 1, 'https://ror.org/02d0m4q63 Nokia (Norway)'),
(37043, 'https://ror.org/02d0sw995', 'no_lang_code', 1, 'https://ror.org/02d0sw995 Mlinotest (Slovenia)'),
(37044, 'https://ror.org/02d3hy418', 'en', 1, 'https://ror.org/02d3hy418 Institute of Applied Economic Research Instituto de Pesquisa EconƓmica Aplicada'),
(37045, 'https://ror.org/02d3w1b29', 'no_lang_code', 1, 'https://ror.org/02d3w1b29 Capgemini (Norway)'),
(37046, 'https://ror.org/02d4aa907', 'no', 1, 'https://ror.org/02d4aa907 Norsk Arkeologisk Selskap'),
(37047, 'https://ror.org/02d50z080', 'no_lang_code', 1, 'https://ror.org/02d50z080 Compello (Norway)'),
(37048, 'https://ror.org/02d5qsh80', 'no_lang_code', 1, 'https://ror.org/02d5qsh80 Scheme Lab (Brazil)'),
(37049, 'https://ror.org/02d66ss51', 'no_lang_code', 1, 'https://ror.org/02d66ss51 Accert (Brazil)'),
(37050, 'https://ror.org/02d6w7230', 'en', 1, 'https://ror.org/02d6w7230 Kolej Universiti TATI TATI University College'),
(37051, 'https://ror.org/02d7jm947', 'no_lang_code', 1, 'https://ror.org/02d7jm947 Mundal Gruppen (Norway)'),
(37052, 'https://ror.org/02d9k8j51', 'en', 1, 'https://ror.org/02d9k8j51 Employees'' State Insurance Model Hospital'),
(37053, 'https://ror.org/02db4tt61', 'no_lang_code', 1, 'https://ror.org/02db4tt61 BergenshalvĆøens Kommunale Kraftselskap (Norway)'),
(37054, 'https://ror.org/02dc6j928', 'en', 1, 'https://ror.org/02dc6j928 Torrance State Hospital'),
(37055, 'https://ror.org/02ddbzq19', 'no_lang_code', 1, 'https://ror.org/02ddbzq19 Subsea Smart Solutions (Norway)'),
(37056, 'https://ror.org/02ddq0w66', 'pt', 1, 'https://ror.org/02ddq0w66 Fundação Cesgranrio'),
(37057, 'https://ror.org/02deds976', 'no_lang_code', 1, 'https://ror.org/02deds976 Medsonic (Cyprus)'),
(37058, 'https://ror.org/02dhjed84', 'en', 1, 'https://ror.org/02dhjed84 OspidƩal GinearƔlta Thiobraid Ɓrann Theas South Tipperary General Hospital'),
(37059, 'https://ror.org/02djg1003', 'no_lang_code', 1, 'https://ror.org/02djg1003 Trolltind (Norway)'),
(37060, 'https://ror.org/02dm0bq25', 'fr', 1, 'https://ror.org/02dm0bq25 Institut de Transplantation Urologie en Nephrologie'),
(37061, 'https://ror.org/02dm2w078', 'no_lang_code', 1, 'https://ror.org/02dm2w078 Brvant (Brazil)'),
(37062, 'https://ror.org/02dmket45', 'no', 1, 'https://ror.org/02dmket45 Transparency International Norge'),
(37063, 'https://ror.org/02dngnr16', 'pt', 1, 'https://ror.org/02dngnr16 Hospital Amaral Carvalho'),
(37064, 'https://ror.org/02dnm2t22', 'en', 1, 'https://ror.org/02dnm2t22 Berkeley City College'),
(37065, 'https://ror.org/02drpw934', 'no_lang_code', 1, 'https://ror.org/02drpw934 Ciech (Poland)'),
(37066, 'https://ror.org/02dtaqx81', 'en', 1, 'https://ror.org/02dtaqx81 Nova Scotia Hospital'),
(37067, 'https://ror.org/02dv3wb67', 'de', 1, 'https://ror.org/02dv3wb67 Kommission für Geschichte des Parlamentarismus und der politischen Parteien'),
(37068, 'https://ror.org/02dv83r66', 'no_lang_code', 1, 'https://ror.org/02dv83r66 AgriOS (Brazil)'),
(37069, 'https://ror.org/02dv98466', 'en', 1, 'https://ror.org/02dv98466 Georgetown Hospital'),
(37070, 'https://ror.org/02dvf9b44', 'en', 1, 'https://ror.org/02dvf9b44 Heidelberg Academy of Sciences and Humanities Heidelberger Akademie der Wissenschaften'),
(37071, 'https://ror.org/02dvkbx23', 'no_lang_code', 1, 'https://ror.org/02dvkbx23 Syskon (Poland)'),
(37072, 'https://ror.org/02dw30c90', 'en', 1, 'https://ror.org/02dw30c90 Barstow Community Hospital'),
(37073, 'https://ror.org/02dwtw793', 'en', 1, 'https://ror.org/02dwtw793 Bryce Hospital'),
(37074, 'https://ror.org/02dwwjd32', 'no_lang_code', 1, 'https://ror.org/02dwwjd32 Norwegian Biochemical (Norway)'),
(37075, 'https://ror.org/02dxe8s77', 'en', 1, 'https://ror.org/02dxe8s77 National Hospital'),
(37076, 'https://ror.org/02dyzf078', 'en', 1, 'https://ror.org/02dyzf078 Central Baptist College'),
(37077, 'https://ror.org/02dz2hb46', 'en', 1, 'https://ror.org/02dz2hb46 Division of Social and Economic Sciences'),
(37078, 'https://ror.org/02e07gw14', 'no_lang_code', 1, 'https://ror.org/02e07gw14 Wilh. Wilhelmsen (Norway)'),
(37079, 'https://ror.org/02e29gr04', 'no_lang_code', 1, 'https://ror.org/02e29gr04 Planktonic (Norway)'),
(37080, 'https://ror.org/02e2px796', 'no_lang_code', 1, 'https://ror.org/02e2px796 Hƶegh LNG (Norway)'),
(37081, 'https://ror.org/02e3ta377', 'no_lang_code', 1, 'https://ror.org/02e3ta377 Kjeldstad (Norway)'),
(37082, 'https://ror.org/02e5r8n65', 'de', 1, 'https://ror.org/02e5r8n65 Sankt-Antonius-Hospital Eschweiler'),
(37083, 'https://ror.org/02e5y0e76', 'no', 1, 'https://ror.org/02e5y0e76 Valdres Folkemuseum'),
(37084, 'https://ror.org/02e66s593', 'no_lang_code', 1, 'https://ror.org/02e66s593 2K Tools (Norway)'),
(37085, 'https://ror.org/02e6g6a88', 'no_lang_code', 1, 'https://ror.org/02e6g6a88 Laerdal (Norway)'),
(37086, 'https://ror.org/02e81hv64', 'no_lang_code', 1, 'https://ror.org/02e81hv64 Umrao Hospital'),
(37087, 'https://ror.org/02e8wzn87', 'en', 1, 'https://ror.org/02e8wzn87 Naomi House and Jacksplace'),
(37088, 'https://ror.org/02e8y7481', 'en', 1, 'https://ror.org/02e8y7481 Nansen Neuroscience Network'),
(37089, 'https://ror.org/02eb4t121', 'en', 1, 'https://ror.org/02eb4t121 Purple Mountain Observatory äø­å›½ē§‘å­¦é™¢ē“«é‡‘å±±å¤©ę–‡å°'),
(37090, 'https://ror.org/02ebhah82', 'no_lang_code', 1, 'https://ror.org/02ebhah82 Eyasys (Norway)'),
(37091, 'https://ror.org/02eees117', 'no_lang_code', 1, 'https://ror.org/02eees117 ProduksjonsTeknologi (Norway)'),
(37092, 'https://ror.org/02eefwm92', 'no_lang_code', 1, 'https://ror.org/02eefwm92 Norwegian State Railways (Norway)'),
(37093, 'https://ror.org/02ejbzv65', 'no_lang_code', 1, 'https://ror.org/02ejbzv65 St. Raphael''s Hospital'),
(37094, 'https://ror.org/02ekw8p73', 'no', 1, 'https://ror.org/02ekw8p73 Teknova'),
(37095, 'https://ror.org/02epdjj68', 'es', 1, 'https://ror.org/02epdjj68 Hospital Civil de Guadalajara'),
(37096, 'https://ror.org/02eqa6h17', 'no_lang_code', 1, 'https://ror.org/02eqa6h17 Industrial Control Design (Norway)'),
(37097, 'https://ror.org/02eqnr535', 'no_lang_code', 1, 'https://ror.org/02eqnr535 BioLab Innovative Research Technologies (Poland)'),
(37098, 'https://ror.org/02er3bg49', 'pt', 1, 'https://ror.org/02er3bg49 Centro UniversitƔrio Eurƭpedes de Marilia, Centro UniversitƔrio Eurƭpedes de Marƭlia'),
(37099, 'https://ror.org/02espa273', 'no_lang_code', 1, 'https://ror.org/02espa273 Euromedik'),
(37100, 'https://ror.org/02etfr602', 'en', 1, 'https://ror.org/02etfr602 Our Lady of Fatima Hospital'),
(37101, 'https://ror.org/02ev4fa71', 'no_lang_code', 1, 'https://ror.org/02ev4fa71 AGR Group (Norway)'),
(37102, 'https://ror.org/02evq8q51', 'en', 1, 'https://ror.org/02evq8q51 Ganta United Methodist Hospital'),
(37103, 'https://ror.org/02ez0zm48', 'en', 1, 'https://ror.org/02ez0zm48 Taixing People''s Hospital'),
(37104, 'https://ror.org/02ez7hy34', 'no_lang_code', 1, 'https://ror.org/02ez7hy34 Cubility (Norway)'),
(37105, 'https://ror.org/02ezmc341', 'pt', 1, 'https://ror.org/02ezmc341 Forum Brasileiro de Segurança Pública'),
(37106, 'https://ror.org/02f2p8175', 'en', 1, 'https://ror.org/02f2p8175 Front Range Community College'),
(37107, 'https://ror.org/02f3rn888', 'es', 1, 'https://ror.org/02f3rn888 Hospital Regional Rancagua'),
(37108, 'https://ror.org/02f42pw58', 'no_lang_code', 1, 'https://ror.org/02f42pw58 Yunnan Observatories äŗ‘å—å¤©ę–‡å°'),
(37109, 'https://ror.org/02f5aec20', 'de', 1, 'https://ror.org/02f5aec20 Hegau-Bodensee-Klinikum Singen'),
(37110, 'https://ror.org/02f6hdc06', 'en', 1, 'https://ror.org/02f6hdc06 King Abdullah University Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ المؤسس Ų¹ŲØŲÆ الله Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(37111, 'https://ror.org/02f8b2d05', 'no_lang_code', 1, 'https://ror.org/02f8b2d05 Bama Gruppen (Norway)'),
(37112, 'https://ror.org/02fa7s823', 'no_lang_code', 1, 'https://ror.org/02fa7s823 Fujian Tobacco Industry Limited Liability Company (China)'),
(37113, 'https://ror.org/02fad4q52', 'en', 1, 'https://ror.org/02fad4q52 Appalachian Bible College'),
(37114, 'https://ror.org/02fb28f73', 'no_lang_code', 1, 'https://ror.org/02fb28f73 Micropply (United Kingdom)'),
(37115, 'https://ror.org/02fbyyv82', 'es', 1, 'https://ror.org/02fbyyv82 Hospital Vilardebó'),
(37116, 'https://ror.org/02fd97s83', 'no', 1, 'https://ror.org/02fd97s83 TrĆøndelags Europakontor'),
(37117, 'https://ror.org/02fe8jz98', 'no_lang_code', 1, 'https://ror.org/02fe8jz98 Ultrahaptics (United Kingdom)'),
(37118, 'https://ror.org/02fhv9758', 'en', 1, 'https://ror.org/02fhv9758 Antara'),
(37119, 'https://ror.org/02fkrbc57', 'no_lang_code', 1, 'https://ror.org/02fkrbc57 Kawamura Hospital'),
(37120, 'https://ror.org/02fm22986', 'pt', 1, 'https://ror.org/02fm22986 Instituto Sócioambiental'),
(37121, 'https://ror.org/02fmy3k80', 'no_lang_code', 1, 'https://ror.org/02fmy3k80 Kubara Lamina (Poland)'),
(37122, 'https://ror.org/02fn3t029', 'sl', 1, 'https://ror.org/02fn3t029 Sicenter (Slovenia)'),
(37123, 'https://ror.org/02fqn3k51', 'en', 1, 'https://ror.org/02fqn3k51 Academy of Arts Die Akademie der Künste'),
(37124, 'https://ror.org/02fqwth13', 'no_lang_code', 1, 'https://ror.org/02fqwth13 Ocean Visuals (Norway)'),
(37125, 'https://ror.org/02fv99722', 'de', 1, 'https://ror.org/02fv99722 Germanisches Nationalmuseum'),
(37126, 'https://ror.org/02fvak958', 'no_lang_code', 1, 'https://ror.org/02fvak958 Olympia Diagnostics (United States)'),
(37127, 'https://ror.org/02fxjt553', 'en', 1, 'https://ror.org/02fxjt553 John Sealy Hospital'),
(37128, 'https://ror.org/02fyaen82', 'pt', 1, 'https://ror.org/02fyaen82 Sociedade Brasileira de VƔcuo'),
(37129, 'https://ror.org/02g0pj253', 'en', 1, 'https://ror.org/02g0pj253 Centegra Hospital McHenry'),
(37130, 'https://ror.org/02g38qb36', 'no_lang_code', 1, 'https://ror.org/02g38qb36 VARD (Norway)'),
(37131, 'https://ror.org/02g4abr06', 'en', 1, 'https://ror.org/02g4abr06 Broughton Hospital'),
(37132, 'https://ror.org/02g83kd39', 'en', 1, 'https://ror.org/02g83kd39 Penticton Regional Hospital'),
(37133, 'https://ror.org/02g9xm383', 'no_lang_code', 1, 'https://ror.org/02g9xm383 Abilia (Norway)'),
(37134, 'https://ror.org/02gaz5v17', 'pt', 1, 'https://ror.org/02gaz5v17 Toledo Prudente Centro UniversitƔrio'),
(37135, 'https://ror.org/02gb6yk96', 'en', 1, 'https://ror.org/02gb6yk96 Gracie Square Hospital'),
(37136, 'https://ror.org/02gcgk516', 'pt', 1, 'https://ror.org/02gcgk516 Associação Brasileira de AnÔlise Térmica e Calorimetria'),
(37137, 'https://ror.org/02gdmcq40', 'no_lang_code', 1, 'https://ror.org/02gdmcq40 Norwegian Group (Norway)'),
(37138, 'https://ror.org/02gg7et70', 'no_lang_code', 1, 'https://ror.org/02gg7et70 Unior (Slovenia)'),
(37139, 'https://ror.org/02ggbdh30', 'fr', 1, 'https://ror.org/02ggbdh30 CƩgep Marie-Victorin'),
(37140, 'https://ror.org/02ggf1973', 'en', 1, 'https://ror.org/02ggf1973 Yemeni Jordanian University'),
(37141, 'https://ror.org/02ggsxt79', 'en', 1, 'https://ror.org/02ggsxt79 Beijing Health Vocational College'),
(37142, 'https://ror.org/02ghdr016', 'no', 1, 'https://ror.org/02ghdr016 Nasjonalmuseet National Museum of Art, Architecture and Design'),
(37143, 'https://ror.org/02gma2x70', 'no_lang_code', 1, 'https://ror.org/02gma2x70 Connect LNG (Norway)'),
(37144, 'https://ror.org/02gmdvw97', 'en', 1, 'https://ror.org/02gmdvw97 Slovenian Institute of Quality and Metrology'),
(37145, 'https://ror.org/02grxeb87', 'no', 1, 'https://ror.org/02grxeb87 Grid-Arendal'),
(37146, 'https://ror.org/02gt91x70', 'en', 1, 'https://ror.org/02gt91x70 Calvary Wakefield Hospital'),
(37147, 'https://ror.org/02gvqxg57', 'no_lang_code', 1, 'https://ror.org/02gvqxg57 Cinkarna (Slovenia)'),
(37148, 'https://ror.org/02gxbm014', 'no_lang_code', 1, 'https://ror.org/02gxbm014 FEM Engineering (Norway)'),
(37149, 'https://ror.org/02gxndb03', 'en', 1, 'https://ror.org/02gxndb03 National Archives Services of Norway'),
(37150, 'https://ror.org/02h1qnm70', 'en', 1, 'https://ror.org/02h1qnm70 Alexander von Humboldt Institut für Internet und Gesellschaft Alexander von Humboldt Institute for Internet and Society'),
(37151, 'https://ror.org/02h25ds10', 'no_lang_code', 1, 'https://ror.org/02h25ds10 IGEA (Slovenia)'),
(37152, 'https://ror.org/02h2ywm64', 'en', 1, 'https://ror.org/02h2ywm64 The First People''s Hospital of Changde'),
(37153, 'https://ror.org/02h3c2z65', 'no_lang_code', 1, 'https://ror.org/02h3c2z65 Xeme Biopharma (United States)'),
(37154, 'https://ror.org/02h4pw461', 'nl', 1, 'https://ror.org/02h4pw461 Accare'),
(37155, 'https://ror.org/02h59q288', 'en', 1, 'https://ror.org/02h59q288 Lillehammer Municipality'),
(37156, 'https://ror.org/02h5h0a06', 'en', 1, 'https://ror.org/02h5h0a06 College of Applied Sciences- Ibri'),
(37157, 'https://ror.org/02h67ht97', 'tr', 1, 'https://ror.org/02h67ht97 Sakarya Eğitim ve Araştırma Hastanesi Sakarya Training and Research Hospital'),
(37158, 'https://ror.org/02h866337', 'no_lang_code', 1, 'https://ror.org/02h866337 BioBee (Israel)'),
(37159, 'https://ror.org/02h8v7m77', 'en', 1, 'https://ror.org/02h8v7m77 Center for Selective C–H Functionalization'),
(37160, 'https://ror.org/02h988s91', 'de', 1, 'https://ror.org/02h988s91 Ingenieure für das Bauwesen'),
(37161, 'https://ror.org/02h9b8h17', 'en', 1, 'https://ror.org/02h9b8h17 Chesterfield Royal Hospital NHS Foundation Trust'),
(37162, 'https://ror.org/02h9qaw79', 'en', 1, 'https://ror.org/02h9qaw79 AnMed Health Women''s & Children''s Hospital'),
(37163, 'https://ror.org/02hb0te91', 'no_lang_code', 1, 'https://ror.org/02hb0te91 Cambi (Norway)'),
(37164, 'https://ror.org/02hbbce41', 'no_lang_code', 1, 'https://ror.org/02hbbce41 Metrel (Slovenia)'),
(37165, 'https://ror.org/02hbww352', 'no_lang_code', 1, 'https://ror.org/02hbww352 Porolon (Norway)'),
(37166, 'https://ror.org/02he3sm39', 'no_lang_code', 1, 'https://ror.org/02he3sm39 Robotic Drilling Systems (Norway)'),
(37167, 'https://ror.org/02hfm7873', 'de', 1, 'https://ror.org/02hfm7873 Focke Museum'),
(37168, 'https://ror.org/02hfya711', 'no_lang_code', 1, 'https://ror.org/02hfya711 Tosama (Slovenia)'),
(37169, 'https://ror.org/02hhjhn88', 'en', 1, 'https://ror.org/02hhjhn88 B.J. Vorster Hospital'),
(37170, 'https://ror.org/02hkfs074', 'en', 1, 'https://ror.org/02hkfs074 Helderberg College'),
(37171, 'https://ror.org/02hm5wz09', 'en', 1, 'https://ror.org/02hm5wz09 Centracare'),
(37172, 'https://ror.org/02ht58c79', 'no', 1, 'https://ror.org/02ht58c79 GlƄmdal RegionrƄd'),
(37173, 'https://ror.org/02hw4sy21', 'no_lang_code', 1, 'https://ror.org/02hw4sy21 AudioPlus (Norway)'),
(37174, 'https://ror.org/02hzjcs51', 'no_lang_code', 1, 'https://ror.org/02hzjcs51 Veritas Life Sciences (Brazil)'),
(37175, 'https://ror.org/02hzxf772', 'no_lang_code', 1, 'https://ror.org/02hzxf772 Sitma (Norway)'),
(37176, 'https://ror.org/02j08vc33', 'no_lang_code', 1, 'https://ror.org/02j08vc33 Labena (Slovenia)'),
(37177, 'https://ror.org/02j0abw33', 'de', 1, 'https://ror.org/02j0abw33 Felix Platter Spital, Felix Platter-Hospital'),
(37178, 'https://ror.org/02j0gyf89', 'en', 1, 'https://ror.org/02j0gyf89 Wuhan Botanical Garden äø­å›½ē§‘å­¦é™¢ę­¦ę±‰ę¤ē‰©å›­'),
(37179, 'https://ror.org/02j3f7p78', 'en', 1, 'https://ror.org/02j3f7p78 Ugie Hospital'),
(37180, 'https://ror.org/02j40nc84', 'en', 1, 'https://ror.org/02j40nc84 Olean General Hospital'),
(37181, 'https://ror.org/02j43z323', 'en', 1, 'https://ror.org/02j43z323 Institute of Security Technologies MORATEX'),
(37182, 'https://ror.org/02j52w730', 'pt', 1, 'https://ror.org/02j52w730 Sociedade Brasileira de Microbiologia'),
(37183, 'https://ror.org/02j6c6694', 'no_lang_code', 1, 'https://ror.org/02j6c6694 Cotec (Brazil)'),
(37184, 'https://ror.org/02j8tr589', 'en', 1, 'https://ror.org/02j8tr589 Inha Technical College'),
(37185, 'https://ror.org/02jadyf48', 'no_lang_code', 1, 'https://ror.org/02jadyf48 Mg Soft (Slovenia)'),
(37186, 'https://ror.org/02jey0g96', 'en', 1, 'https://ror.org/02jey0g96 Bradford College, England'),
(37187, 'https://ror.org/02jh1am07', 'en', 1, 'https://ror.org/02jh1am07 Utah Geological Survey'),
(37188, 'https://ror.org/02jje0527', 'no_lang_code', 1, 'https://ror.org/02jje0527 Rotar (Brazil)'),
(37189, 'https://ror.org/02jjgkb92', 'en', 1, 'https://ror.org/02jjgkb92 Telemark Research Institute'),
(37190, 'https://ror.org/02jm9xx29', 'no_lang_code', 1, 'https://ror.org/02jm9xx29 Medecell (Brazil)'),
(37191, 'https://ror.org/02jmyy013', 'fr', 1, 'https://ror.org/02jmyy013 CƩgep du Vieux MontrƩal'),
(37192, 'https://ror.org/02jnx6884', 'en', 1, 'https://ror.org/02jnx6884 Blackhawk Technical College'),
(37193, 'https://ror.org/02jq6we42', 'no_lang_code', 1, 'https://ror.org/02jq6we42 Military Aviation Works No. 1 (Poland)'),
(37194, 'https://ror.org/02jr64v33', 'no_lang_code', 1, 'https://ror.org/02jr64v33 Surface (Brazil)'),
(37195, 'https://ror.org/02js51327', 'no_lang_code', 1, 'https://ror.org/02js51327 Akaer (Brazil)'),
(37196, 'https://ror.org/02jt05p62', 'no', 1, 'https://ror.org/02jt05p62 Norges Sildesalgslag Norwegian Herring Sales Association'),
(37197, 'https://ror.org/02jv8h741', 'ro', 1, 'https://ror.org/02jv8h741 Spitalul Clinic Dr. C. I. Parhon'),
(37198, 'https://ror.org/02jv9pf54', 'no', 1, 'https://ror.org/02jv9pf54 Praktisk-Teologiske Seminar'),
(37199, 'https://ror.org/02jxdjn74', 'en', 1, 'https://ror.org/02jxdjn74 Mayo Hospital'),
(37200, 'https://ror.org/02jxznk77', 'en', 1, 'https://ror.org/02jxznk77 Joint Base San Antonio'),
(37201, 'https://ror.org/02jy2nq64', 'en', 1, 'https://ror.org/02jy2nq64 Deutsches Institut für Kautschuktechnologie German Institute of Rubber Technology'),
(37202, 'https://ror.org/02jywn868', 'en', 1, 'https://ror.org/02jywn868 Islamic Azad University of Farahan'),
(37203, 'https://ror.org/02jzh4f23', 'no_lang_code', 1, 'https://ror.org/02jzh4f23 Innovatech Telecom (Brazil)'),
(37204, 'https://ror.org/02k1hw394', 'en', 1, 'https://ror.org/02k1hw394 Directorate for Cultural Heritage Riksantikvaren'),
(37205, 'https://ror.org/02k2nf272', 'no_lang_code', 1, 'https://ror.org/02k2nf272 Innova (Norway)'),
(37206, 'https://ror.org/02k4een92', 'no_lang_code', 1, 'https://ror.org/02k4een92 Vaxxinova (Norway)'),
(37207, 'https://ror.org/02k5vwz61', 'pt', 1, 'https://ror.org/02k5vwz61 Abutua Tecnologia'),
(37208, 'https://ror.org/02k69yb86', 'no_lang_code', 1, 'https://ror.org/02k69yb86 Veplas (Slovenia)'),
(37209, 'https://ror.org/02k9k5a61', 'de', 1, 'https://ror.org/02k9k5a61 Landesamt für Denkmalpflege Hessen'),
(37210, 'https://ror.org/02kbptg74', 'no_lang_code', 1, 'https://ror.org/02kbptg74 DNA Consult GenƩtica e Biotecnologia (Brazil)'),
(37211, 'https://ror.org/02kcgy861', 'en', 1, 'https://ror.org/02kcgy861 Peninsula HealthCare Connection'),
(37212, 'https://ror.org/02kdq5f02', 'no', 1, 'https://ror.org/02kdq5f02 Fredrikstad Kommune'),
(37213, 'https://ror.org/02kdtt649', 'en', 1, 'https://ror.org/02kdtt649 Islamic University of Science and Technology'),
(37214, 'https://ror.org/02kdw7y22', 'no_lang_code', 1, 'https://ror.org/02kdw7y22 Norwegian Electro Ceramics (Norway)'),
(37215, 'https://ror.org/02ke3k930', 'en', 1, 'https://ror.org/02ke3k930 Presbyterian University and Theological Seminary'),
(37216, 'https://ror.org/02kepmn21', 'no_lang_code', 1, 'https://ror.org/02kepmn21 Quimlab (Brazil)'),
(37217, 'https://ror.org/02knacy77', 'no_lang_code', 1, 'https://ror.org/02knacy77 TV 2 (Norway)'),
(37218, 'https://ror.org/02knph556', 'no_lang_code', 1, 'https://ror.org/02knph556 Plastal (Norway)'),
(37219, 'https://ror.org/02kpq2a15', 'no_lang_code', 1, 'https://ror.org/02kpq2a15 Head Energy (Norway)'),
(37220, 'https://ror.org/02kqmtt46', 'no_lang_code', 1, 'https://ror.org/02kqmtt46 siRNAsense (Norway)'),
(37221, 'https://ror.org/02ks0br87', 'en', 1, 'https://ror.org/02ks0br87 Institute of Medical Technology and Equipment'),
(37222, 'https://ror.org/02kv9xm28', 'de', 1, 'https://ror.org/02kv9xm28 Archaeological Heritage Office in Saxony Landesamt für Archäologie Sachsen'),
(37223, 'https://ror.org/02kxhwm03', 'no_lang_code', 1, 'https://ror.org/02kxhwm03 MjĆøsen Skog (Norway)'),
(37224, 'https://ror.org/02kxqpx65', 'no_lang_code', 1, 'https://ror.org/02kxqpx65 Anteo (Norway)'),
(37225, 'https://ror.org/02kz5ap91', 'no_lang_code', 1, 'https://ror.org/02kz5ap91 Ferrx (Norway)'),
(37226, 'https://ror.org/02kzasj84', 'no_lang_code', 1, 'https://ror.org/02kzasj84 Fleximedical (Brazil)'),
(37227, 'https://ror.org/02kzvnr24', 'en', 1, 'https://ror.org/02kzvnr24 Senate of Serampore College ą¤øą„€ą¤Øą„‡ą¤Ÿ अफ ą¤øą„‡ą¤°ą¤¾ą¤®ą¤Ŗą„‹ą¤° ą¤•ą¤²ą„‡ą¤œ (ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ) ą¦øą§‡ą¦Øą§‡ą¦Ÿ অফ ą¦¶ą§ą¦°ą§€ą¦°ą¦¾ą¦®ą¦Ŗą§ą¦° ą¦•ą¦²ą§‡ą¦œ'),
(37228, 'https://ror.org/02m4ddy14', 'en', 1, 'https://ror.org/02m4ddy14 Entomological Society of Brazil Sociedade Brasileira de Entomologia'),
(37229, 'https://ror.org/02m7cm823', 'pt', 1, 'https://ror.org/02m7cm823 Sociedade Brasileira de Econometria'),
(37230, 'https://ror.org/02m7msy24', 'en', 1, 'https://ror.org/02m7msy24 North China Institute of Aerospace Engineering'),
(37231, 'https://ror.org/02m7v1314', 'no_lang_code', 1, 'https://ror.org/02m7v1314 DARS (Slovenia)'),
(37232, 'https://ror.org/02m8hhb31', 'no_lang_code', 1, 'https://ror.org/02m8hhb31 Matsutani America (United States)'),
(37233, 'https://ror.org/02mavc002', 'en', 1, 'https://ror.org/02mavc002 Max Planck Institute for Social Anthropology Max-Planck-Institut für Ethnologische Forschung'),
(37234, 'https://ror.org/02me8mn40', 'no_lang_code', 1, 'https://ror.org/02me8mn40 Otivio (Norway)'),
(37235, 'https://ror.org/02meh8z92', 'no', 1, 'https://ror.org/02meh8z92 Stavanger Kommune'),
(37236, 'https://ror.org/02mfvb853', 'no_lang_code', 1, 'https://ror.org/02mfvb853 Miros (Norway)'),
(37237, 'https://ror.org/02mgtjj52', 'en', 1, 'https://ror.org/02mgtjj52 Islamic Azad University of Parand دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد پرند'),
(37238, 'https://ror.org/02mm6ps96', 'no_lang_code', 1, 'https://ror.org/02mm6ps96 DeltaCO2 (Brazil)'),
(37239, 'https://ror.org/02mp59d98', 'fr', 1, 'https://ror.org/02mp59d98 Centre Hospitalier de Gonesse'),
(37240, 'https://ror.org/02mrs6s31', 'en', 1, 'https://ror.org/02mrs6s31 Maclear Hospital'),
(37241, 'https://ror.org/02mskse42', 'no', 1, 'https://ror.org/02mskse42 Oslo Kommune'),
(37242, 'https://ror.org/02mt99d54', 'no_lang_code', 1, 'https://ror.org/02mt99d54 Vigmostad & BjĆørke (Norway)'),
(37243, 'https://ror.org/02mtj1m22', 'en', 1, 'https://ror.org/02mtj1m22 Strathcona Community Hospital'),
(37244, 'https://ror.org/02mvjj250', 'pt', 1, 'https://ror.org/02mvjj250 Fundação Apinco de Ciência e Tecnologia Avícolas'),
(37245, 'https://ror.org/02mxhgm70', 'de', 1, 'https://ror.org/02mxhgm70 Stadtarchiv Worms'),
(37246, 'https://ror.org/02mxywv89', 'en', 1, 'https://ror.org/02mxywv89 Highland Community College - Illinois'),
(37247, 'https://ror.org/02myr0q32', 'en', 1, 'https://ror.org/02myr0q32 EUR-Oceans Consortium'),
(37248, 'https://ror.org/02mz22k75', 'no', 1, 'https://ror.org/02mz22k75 Norsk Friluftsliv'),
(37249, 'https://ror.org/02mzaws48', 'no_lang_code', 1, 'https://ror.org/02mzaws48 Resman (Norway)'),
(37250, 'https://ror.org/02n1s9498', 'no_lang_code', 1, 'https://ror.org/02n1s9498 Co-action Publishing (Norway)'),
(37251, 'https://ror.org/02n2tgb73', 'no', 1, 'https://ror.org/02n2tgb73 Bergen Kommune ByrƄdsavd for Helse og Omsorg'),
(37252, 'https://ror.org/02nbj1d88', 'pt', 1, 'https://ror.org/02nbj1d88 Fórum de Entidades Nacionais da Psicologia Brasileira'),
(37253, 'https://ror.org/02negn633', 'no_lang_code', 1, 'https://ror.org/02negn633 ICT Group (Norway)'),
(37254, 'https://ror.org/02nejrd79', 'no_lang_code', 1, 'https://ror.org/02nejrd79 FlexEnable (United Kingdom)'),
(37255, 'https://ror.org/02nh4wx40', 'en', 1, 'https://ror.org/02nh4wx40 Institute of Agricultural and Food Biotechnology'),
(37256, 'https://ror.org/02nhdg694', 'no_lang_code', 1, 'https://ror.org/02nhdg694 Aeroalcool Tecnologia (Brazil)'),
(37257, 'https://ror.org/02nhhj727', 'no_lang_code', 1, 'https://ror.org/02nhhj727 Wavefront (United States)'),
(37258, 'https://ror.org/02nhz2g44', 'en', 1, 'https://ror.org/02nhz2g44 Social and Environmental Entrepreneurs'),
(37259, 'https://ror.org/02nkd6y23', 'pl', 1, 'https://ror.org/02nkd6y23 Instytut Archeologii i Etnologii'),
(37260, 'https://ror.org/02nmtb782', 'no', 1, 'https://ror.org/02nmtb782 Norsk Kjemisk Selskap Norwegian Chemical Society'),
(37261, 'https://ror.org/02nnqja38', 'no_lang_code', 1, 'https://ror.org/02nnqja38 Yerwada Mental Hospital'),
(37262, 'https://ror.org/02nqgwy66', 'en', 1, 'https://ror.org/02nqgwy66 Institut de la Statistique du QuƩbec Quebec Statistical Institute'),
(37263, 'https://ror.org/02nrcd067', 'it', 1, 'https://ror.org/02nrcd067 Ospedale di Latisana'),
(37264, 'https://ror.org/02nssyt88', 'no_lang_code', 1, 'https://ror.org/02nssyt88 Norwegian Hull Club (Norway)'),
(37265, 'https://ror.org/02ntagd75', 'en', 1, 'https://ror.org/02ntagd75 Great Lakes Christian College'),
(37266, 'https://ror.org/02nvrva15', 'no_lang_code', 1, 'https://ror.org/02nvrva15 Reemsys (Norway)'),
(37267, 'https://ror.org/02nw88150', 'pt', 1, 'https://ror.org/02nw88150 Academia Nacional de Cuidados Paliativos'),
(37268, 'https://ror.org/02nwjvq32', 'no_lang_code', 1, 'https://ror.org/02nwjvq32 Lein Applied Diagnostics (United Kingdom)'),
(37269, 'https://ror.org/02nwx5237', 'no_lang_code', 1, 'https://ror.org/02nwx5237 Health Biomed (China)'),
(37270, 'https://ror.org/02ny12416', 'en', 1, 'https://ror.org/02ny12416 University College for Women'),
(37271, 'https://ror.org/02nywzg97', 'no', 1, 'https://ror.org/02nywzg97 Tresenteret'),
(37272, 'https://ror.org/02p1tbs51', 'no_lang_code', 1, 'https://ror.org/02p1tbs51 Trollhetta (Norway)'),
(37273, 'https://ror.org/02p2c1595', 'en', 1, 'https://ror.org/02p2c1595 Islamia College University Ų§Ų³Ł„Ų§Ł…ŪŒŪ کالج ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(37274, 'https://ror.org/02p2n1t29', 'no_lang_code', 1, 'https://ror.org/02p2n1t29 Fronter (Norway)'),
(37275, 'https://ror.org/02p3z0a62', 'en', 1, 'https://ror.org/02p3z0a62 Mount Ayliff Hospital'),
(37276, 'https://ror.org/02p4hh588', 'no_lang_code', 1, 'https://ror.org/02p4hh588 PatoGen (Norway)'),
(37277, 'https://ror.org/02p57rg87', 'en', 1, 'https://ror.org/02p57rg87 Brazilian Society of Speech Sociedade Brasileira de Fonoaudiologia'),
(37278, 'https://ror.org/02p68mp54', 'no_lang_code', 1, 'https://ror.org/02p68mp54 Voca (Norway)'),
(37279, 'https://ror.org/02p8wff42', 'en', 1, 'https://ror.org/02p8wff42 Testing and Certification Laboratories'),
(37280, 'https://ror.org/02p932s29', 'no_lang_code', 1, 'https://ror.org/02p932s29 IMPETUS Afea (Norway)'),
(37281, 'https://ror.org/02pc96p08', 'no_lang_code', 1, 'https://ror.org/02pc96p08 E-CO Energi (Norway)'),
(37282, 'https://ror.org/02pepyh86', 'en', 1, 'https://ror.org/02pepyh86 Preston University'),
(37283, 'https://ror.org/02pewm513', 'pt', 1, 'https://ror.org/02pewm513 Instituto Paulista de Ensino e Pesquisa'),
(37284, 'https://ror.org/02pfhds36', 'en', 1, 'https://ror.org/02pfhds36 Iloilo Mission Hospital'),
(37285, 'https://ror.org/02pgs0t39', 'en', 1, 'https://ror.org/02pgs0t39 Hospital Santo TomƔs Saint Thomas Hospital'),
(37286, 'https://ror.org/02pj56a46', 'no_lang_code', 1, 'https://ror.org/02pj56a46 Pinus TKI (Slovenia)'),
(37287, 'https://ror.org/02pkggd65', 'no_lang_code', 1, 'https://ror.org/02pkggd65 Innoventus SĆør (Norway)'),
(37288, 'https://ror.org/02pknm559', 'no', 1, 'https://ror.org/02pknm559 Skedsmo kommune'),
(37289, 'https://ror.org/02pktej77', 'en', 1, 'https://ror.org/02pktej77 Kincardine Community Hospital'),
(37290, 'https://ror.org/02pman068', 'no_lang_code', 1, 'https://ror.org/02pman068 Viris (Slovenia)'),
(37291, 'https://ror.org/02pmesx16', 'no_lang_code', 1, 'https://ror.org/02pmesx16 Promar (Poland)'),
(37292, 'https://ror.org/02prj1520', 'no_lang_code', 1, 'https://ror.org/02prj1520 TRUMPF (Poland)'),
(37293, 'https://ror.org/02ps5zx04', 'en', 1, 'https://ror.org/02ps5zx04 Moroto Hospital'),
(37294, 'https://ror.org/02pvadn84', 'de', 1, 'https://ror.org/02pvadn84 Geisteswissenschaftliche Zentren Berlin'),
(37295, 'https://ror.org/02px7xz82', 'en', 1, 'https://ror.org/02px7xz82 Oslo Vest Rotary Klubb'),
(37296, 'https://ror.org/02pxhh871', 'no_lang_code', 1, 'https://ror.org/02pxhh871 Petroleumsoft (Norway)'),
(37297, 'https://ror.org/02pyb2233', 'es', 1, 'https://ror.org/02pyb2233 Hospital La Inmaculada'),
(37298, 'https://ror.org/02pz5h498', 'no_lang_code', 1, 'https://ror.org/02pz5h498 Robotnorge (Norway)'),
(37299, 'https://ror.org/02pzvty54', 'en', 1, 'https://ror.org/02pzvty54 Apollo KH Hospital'),
(37300, 'https://ror.org/02q2b0g11', 'no_lang_code', 1, 'https://ror.org/02q2b0g11 Tafalofefe Hospital'),
(37301, 'https://ror.org/02q2v1q18', 'no_lang_code', 1, 'https://ror.org/02q2v1q18 Alta (Poland)'),
(37302, 'https://ror.org/02q350s40', 'no_lang_code', 1, 'https://ror.org/02q350s40 Brook Lyndhurst (United Kingdom)'),
(37303, 'https://ror.org/02q3pem31', 'no_lang_code', 1, 'https://ror.org/02q3pem31 Yanhee Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø¢ąø±ąø™ąø®ąøµ'),
(37304, 'https://ror.org/02q3q6m55', 'no', 1, 'https://ror.org/02q3q6m55 Norges Blindeforbund'),
(37305, 'https://ror.org/02q5gf687', 'no', 1, 'https://ror.org/02q5gf687 AndĆøya Space Center'),
(37306, 'https://ror.org/02q6tz689', 'no_lang_code', 1, 'https://ror.org/02q6tz689 Rimfrost (Norway)'),
(37307, 'https://ror.org/02q764m16', 'no_lang_code', 1, 'https://ror.org/02q764m16 Baidya and Banskota Hospital'),
(37308, 'https://ror.org/02q9r3565', 'fi', 1, 'https://ror.org/02q9r3565 Kainun Institutti'),
(37309, 'https://ror.org/02qa92s63', 'en', 1, 'https://ror.org/02qa92s63 Breast Cancer Now'),
(37310, 'https://ror.org/02qaq7m46', 'no_lang_code', 1, 'https://ror.org/02qaq7m46 Delitek (Norway)'),
(37311, 'https://ror.org/02qg60849', 'no_lang_code', 1, 'https://ror.org/02qg60849 Engineering Systems (United States)'),
(37312, 'https://ror.org/02qgf1459', 'no_lang_code', 1, 'https://ror.org/02qgf1459 Dora Nginza Hospital'),
(37313, 'https://ror.org/02qhdd073', 'en', 1, 'https://ror.org/02qhdd073 Aizawl Adventist Hospital'),
(37314, 'https://ror.org/02qhxnk51', 'no_lang_code', 1, 'https://ror.org/02qhxnk51 OneCo (Norway)'),
(37315, 'https://ror.org/02qhzp658', 'en', 1, 'https://ror.org/02qhzp658 Hawaii Tokai International College'),
(37316, 'https://ror.org/02qhzxt05', 'en', 1, 'https://ror.org/02qhzxt05 Norwegian Business and Industry Security Council'),
(37317, 'https://ror.org/02qk18s08', 'en', 1, 'https://ror.org/02qk18s08 International Center for Tropical Agriculture'),
(37318, 'https://ror.org/02qkr4e94', 'no_lang_code', 1, 'https://ror.org/02qkr4e94 Inspirator (Norway)'),
(37319, 'https://ror.org/02qkrgf06', 'no_lang_code', 1, 'https://ror.org/02qkrgf06 Oxford Instruments (Germany)'),
(37320, 'https://ror.org/02qna0m23', 'no_lang_code', 1, 'https://ror.org/02qna0m23 Buddy Electric (Norway)'),
(37321, 'https://ror.org/02qnspa70', 'no_lang_code', 1, 'https://ror.org/02qnspa70 Abyssus Marine Services (Norway)'),
(37322, 'https://ror.org/02qpb0e30', 'en', 1, 'https://ror.org/02qpb0e30 Kaunas County Public Library'),
(37323, 'https://ror.org/02qpcpw42', 'en', 1, 'https://ror.org/02qpcpw42 Finnish Institute of International Affairs Ulkopoliittinen instituutti Utrikespolitiska institutet'),
(37324, 'https://ror.org/02qqapf71', 'no_lang_code', 1, 'https://ror.org/02qqapf71 National Oilwell Varco (Norway)'),
(37325, 'https://ror.org/02qqqms67', 'fr', 1, 'https://ror.org/02qqqms67 BibliothĆØque Nationale du Royaume du Maroc'),
(37326, 'https://ror.org/02qs38f38', 'en', 1, 'https://ror.org/02qs38f38 Finnish Youth Research Society'),
(37327, 'https://ror.org/02qsgha90', 'en', 1, 'https://ror.org/02qsgha90 General Theological Seminary'),
(37328, 'https://ror.org/02qvzqk75', 'pt', 1, 'https://ror.org/02qvzqk75 Associação Paulista para o Desenvolvimento da Medicina'),
(37329, 'https://ror.org/02qw5pa02', 'en', 1, 'https://ror.org/02qw5pa02 St. Francis Hospital Nkokonjeru'),
(37330, 'https://ror.org/02qz80268', 'no_lang_code', 1, 'https://ror.org/02qz80268 Norwegian Subsea (Norway)'),
(37331, 'https://ror.org/02qzb7q11', 'no_lang_code', 1, 'https://ror.org/02qzb7q11 Sparx Group (Japan)'),
(37332, 'https://ror.org/02qzqg182', 'en', 1, 'https://ror.org/02qzqg182 Centegra Hospital Woodstock'),
(37333, 'https://ror.org/02r0eqd13', 'en', 1, 'https://ror.org/02r0eqd13 College of Medicine & Sagore Dutta Hospital'),
(37334, 'https://ror.org/02r3v8c94', 'en', 1, 'https://ror.org/02r3v8c94 Housatonic Community College'),
(37335, 'https://ror.org/02r44dv51', 'sl', 1, 'https://ror.org/02r44dv51 Ekoremediacijski TehnoloŔki Center'),
(37336, 'https://ror.org/02r4rcw08', 'en', 1, 'https://ror.org/02r4rcw08 European Research Group on Environment and Health in the Transport Sector Europäische Forschungsvereinigung für Umwelt und Gesundheit im Transportsektor e.V.'),
(37337, 'https://ror.org/02r5d5757', 'en', 1, 'https://ror.org/02r5d5757 Crisis Training'),
(37338, 'https://ror.org/02r61ng07', 'en', 1, 'https://ror.org/02r61ng07 Energy Farm'),
(37339, 'https://ror.org/02r7hq914', 'no_lang_code', 1, 'https://ror.org/02r7hq914 Fortum (Norway)'),
(37340, 'https://ror.org/02r7w5t06', 'no_lang_code', 1, 'https://ror.org/02r7w5t06 DrƤger (Norway)'),
(37341, 'https://ror.org/02r8dvt87', 'no_lang_code', 1, 'https://ror.org/02r8dvt87 Thinfilm (Norway)'),
(37342, 'https://ror.org/02r92m054', 'no_lang_code', 1, 'https://ror.org/02r92m054 Hagen (Norway)'),
(37343, 'https://ror.org/02raeh877', 'no_lang_code', 1, 'https://ror.org/02raeh877 Microbeads (Norway)'),
(37344, 'https://ror.org/02raqmj47', 'no', 1, 'https://ror.org/02raqmj47 Boligbygg Oslo KF'),
(37345, 'https://ror.org/02rbj4561', 'no_lang_code', 1, 'https://ror.org/02rbj4561 Tronrud Engineering (Norway)'),
(37346, 'https://ror.org/02rbp5787', 'en', 1, 'https://ror.org/02rbp5787 Kiwoko Hospital'),
(37347, 'https://ror.org/02rbpk607', 'no_lang_code', 1, 'https://ror.org/02rbpk607 NGC Aerospace (Canada)'),
(37348, 'https://ror.org/02rcybf88', 'no_lang_code', 1, 'https://ror.org/02rcybf88 Medgal (Poland)'),
(37349, 'https://ror.org/02rdzmk74', 'en', 1, 'https://ror.org/02rdzmk74 Division of Computer and Network Systems'),
(37350, 'https://ror.org/02rf6w514', 'da', 1, 'https://ror.org/02rf6w514 Hou Maritime IdrƦtsefterskole'),
(37351, 'https://ror.org/02rgjy857', 'en', 1, 'https://ror.org/02rgjy857 Dartmouth General Hospital'),
(37352, 'https://ror.org/02rjd3g51', 'no_lang_code', 1, 'https://ror.org/02rjd3g51 Jotun (Norway)'),
(37353, 'https://ror.org/02rmcnx09', 'no_lang_code', 1, 'https://ror.org/02rmcnx09 Induktio (Slovenia)'),
(37354, 'https://ror.org/02rpzg225', 'en', 1, 'https://ror.org/02rpzg225 Fort Portal Hospital'),
(37355, 'https://ror.org/02rr4wh12', 'no_lang_code', 1, 'https://ror.org/02rr4wh12 Skogselskapet i Oppland (Norway)'),
(37356, 'https://ror.org/02rrvb782', 'fr', 1, 'https://ror.org/02rrvb782 Quebec Television Broadcasting Corporation TƩlƩ-QuƩbec'),
(37357, 'https://ror.org/02rsn0x61', 'en', 1, 'https://ror.org/02rsn0x61 Allied Hospital'),
(37358, 'https://ror.org/02rtkz848', 'no_lang_code', 1, 'https://ror.org/02rtkz848 Athena Seafoods (Norway)'),
(37359, 'https://ror.org/02rtsfd15', 'en', 1, 'https://ror.org/02rtsfd15 PƤdagogische Hochschule Freiburg University of Education Freiburg'),
(37360, 'https://ror.org/02rtvpy35', 'no_lang_code', 1, 'https://ror.org/02rtvpy35 Recaltech (Brazil)'),
(37361, 'https://ror.org/02rw6sa19', 'en', 1, 'https://ror.org/02rw6sa19 Blue Ridge Community College'),
(37362, 'https://ror.org/02rwqk393', 'no_lang_code', 1, 'https://ror.org/02rwqk393 Siporex (Brazil)'),
(37363, 'https://ror.org/02rxjts25', 'de', 1, 'https://ror.org/02rxjts25 Minerva Stiftung'),
(37364, 'https://ror.org/02rxkjh73', 'no_lang_code', 1, 'https://ror.org/02rxkjh73 Natural Products & Technologies (Brazil)'),
(37365, 'https://ror.org/02rxr6563', 'no_lang_code', 1, 'https://ror.org/02rxr6563 Molteno Hospital'),
(37366, 'https://ror.org/02rxw4j53', 'no_lang_code', 1, 'https://ror.org/02rxw4j53 Light Emergency Stretcher Systems (Norway)'),
(37367, 'https://ror.org/02ry07h90', 'en', 1, 'https://ror.org/02ry07h90 Cooper Hospital'),
(37368, 'https://ror.org/02rz58g17', 'en', 1, 'https://ror.org/02rz58g17 Xishuangbanna Tropical Botanical Garden č„æåŒē‰ˆēŗ³ēƒ­åø¦ę¤ē‰©å›­'),
(37369, 'https://ror.org/02rzdts70', 'en', 1, 'https://ror.org/02rzdts70 Alabama College of Osteopathic Medicine'),
(37370, 'https://ror.org/02s2gmj52', 'no_lang_code', 1, 'https://ror.org/02s2gmj52 Effect Ships International (Norway)'),
(37371, 'https://ror.org/02s49nq19', 'en', 1, 'https://ror.org/02s49nq19 Banner Lassen Medical Center'),
(37372, 'https://ror.org/02s54wa56', 'no_lang_code', 1, 'https://ror.org/02s54wa56 Nanocenter'),
(37373, 'https://ror.org/02sbrrx86', 'no_lang_code', 1, 'https://ror.org/02sbrrx86 Dod RobƓs Investidores (Brazil)'),
(37374, 'https://ror.org/02sda1489', 'no_lang_code', 1, 'https://ror.org/02sda1489 Brusell Communications (Norway)'),
(37375, 'https://ror.org/02sdj1163', 'no_lang_code', 1, 'https://ror.org/02sdj1163 HyBond (Norway)'),
(37376, 'https://ror.org/02sgbmf75', 'en', 1, 'https://ror.org/02sgbmf75 United Spinal Association'),
(37377, 'https://ror.org/02sgvxq87', 'en', 1, 'https://ror.org/02sgvxq87 Admas University'),
(37378, 'https://ror.org/02sgy5e89', 'en', 1, 'https://ror.org/02sgy5e89 USA Boccia'),
(37379, 'https://ror.org/02sh7hr68', 'en', 1, 'https://ror.org/02sh7hr68 Butler Community College'),
(37380, 'https://ror.org/02sht8d21', 'no_lang_code', 1, 'https://ror.org/02sht8d21 Nordly Holding (Norway)'),
(37381, 'https://ror.org/02sjnxv88', 'no_lang_code', 1, 'https://ror.org/02sjnxv88 Geodetski Zavod Celje (Slovenia)'),
(37382, 'https://ror.org/02sjwdt08', 'no_lang_code', 1, 'https://ror.org/02sjwdt08 Designit (Norway)'),
(37383, 'https://ror.org/02sk5qk36', 'en', 1, 'https://ror.org/02sk5qk36 Alamance Community College'),
(37384, 'https://ror.org/02smgwb83', 'no_lang_code', 1, 'https://ror.org/02smgwb83 Suma Indústria e Comércio (Brasil)'),
(37385, 'https://ror.org/02srty072', 'en', 1, 'https://ror.org/02srty072 Woosong University ģš°ģ†”ėŒ€ķ•™źµ'),
(37386, 'https://ror.org/02sv85a88', 'no_lang_code', 1, 'https://ror.org/02sv85a88 Rocksource (Norway)'),
(37387, 'https://ror.org/02sz00v89', 'pt', 1, 'https://ror.org/02sz00v89 Sociedade Brasileira de Cirurgia Cardiovascular'),
(37388, 'https://ror.org/02szqsk98', 'en', 1, 'https://ror.org/02szqsk98 East Bardera Mothers and Children''s Hospital'),
(37389, 'https://ror.org/02t2f7916', 'en', 1, 'https://ror.org/02t2f7916 St Petersburg Psychiatric Hospital of Specialized Type with Intense Observation Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń ŠæŃŠøŃ…ŠøŠ°Ń‚Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° специализированного типа с интенсивным Š½Š°Š±Š»ŃŽŠ“ением'),
(37390, 'https://ror.org/02t36nw30', 'en', 1, 'https://ror.org/02t36nw30 Independence Community College'),
(37391, 'https://ror.org/02t3pnf96', 'no_lang_code', 1, 'https://ror.org/02t3pnf96 WuXiPRA (China)'),
(37392, 'https://ror.org/02t5j7398', 'en', 1, 'https://ror.org/02t5j7398 Cedar Valley College'),
(37393, 'https://ror.org/02t5nc402', 'no_lang_code', 1, 'https://ror.org/02t5nc402 Omega Consult (Slovenia)'),
(37394, 'https://ror.org/02t62cz46', 'pt', 1, 'https://ror.org/02t62cz46 Associação Nacional de Pesquisa e Pós-Graduação em Turismo'),
(37395, 'https://ror.org/02t6kpd72', 'no', 1, 'https://ror.org/02t6kpd72 Norsk Folkemuseum'),
(37396, 'https://ror.org/02t8k3a73', 'pt', 1, 'https://ror.org/02t8k3a73 Centro de Estudos Educação e Sociedade'),
(37397, 'https://ror.org/02t8t0f85', 'no_lang_code', 1, 'https://ror.org/02t8t0f85 DWG Arquitetura e Sistemas (Brazil)'),
(37398, 'https://ror.org/02t8zdk52', 'no_lang_code', 1, 'https://ror.org/02t8zdk52 Biota Guard (Norway)'),
(37399, 'https://ror.org/02taagt52', 'no_lang_code', 1, 'https://ror.org/02taagt52 Provista (Norway)'),
(37400, 'https://ror.org/02te9ba85', 'no_lang_code', 1, 'https://ror.org/02te9ba85 Nettverk Norge (Norway)'),
(37401, 'https://ror.org/02tezqe13', 'no_lang_code', 1, 'https://ror.org/02tezqe13 Esotech (Slovenia)'),
(37402, 'https://ror.org/02tgjqk78', 'no_lang_code', 1, 'https://ror.org/02tgjqk78 Adigo (Norway)'),
(37403, 'https://ror.org/02thtn249', 'fr', 1, 'https://ror.org/02thtn249 KƩroul'),
(37404, 'https://ror.org/02tj71548', 'no_lang_code', 1, 'https://ror.org/02tj71548 Eudora Energia (Brazil)'),
(37405, 'https://ror.org/02tk6p688', 'no_lang_code', 1, 'https://ror.org/02tk6p688 SimSea (Norway)'),
(37406, 'https://ror.org/02tvj3q58', 'fr', 1, 'https://ror.org/02tvj3q58 Centre National des Sciences et Technologies NuclƩaires'),
(37407, 'https://ror.org/02tvrwm90', 'en', 1, 'https://ror.org/02tvrwm90 Canada Excellence Research Chairs Chaires d’Excellence en Recherche du Canada'),
(37408, 'https://ror.org/02twzqt54', 'en', 1, 'https://ror.org/02twzqt54 Fayetteville Technical Community College'),
(37409, 'https://ror.org/02tzc1925', 'en', 1, 'https://ror.org/02tzc1925 Haydom Lutheran Hospital'),
(37410, 'https://ror.org/02tzs1080', 'en', 1, 'https://ror.org/02tzs1080 St. Anne Mercy Hospital'),
(37411, 'https://ror.org/02v3n9z83', 'en', 1, 'https://ror.org/02v3n9z83 ISG Institute for Social Research Institut für Sozialforschung und Gesellschaftspolitik'),
(37412, 'https://ror.org/02v4sna49', 'no_lang_code', 1, 'https://ror.org/02v4sna49 Seatower (Norway)'),
(37413, 'https://ror.org/02vdfy254', 'en', 1, 'https://ror.org/02vdfy254 Berjaya University College of Hospitality'),
(37414, 'https://ror.org/02vdp4743', 'no_lang_code', 1, 'https://ror.org/02vdp4743 TraceTracker (Norway)'),
(37415, 'https://ror.org/02vds7q94', 'en', 1, 'https://ror.org/02vds7q94 St. Clair College'),
(37416, 'https://ror.org/02vfaew05', 'no_lang_code', 1, 'https://ror.org/02vfaew05 Medcore (Poland)'),
(37417, 'https://ror.org/02vfqaw29', 'no_lang_code', 1, 'https://ror.org/02vfqaw29 Go Mobile (Norway)'),
(37418, 'https://ror.org/02vfz1845', 'no_lang_code', 1, 'https://ror.org/02vfz1845 Weifa (Norway)'),
(37419, 'https://ror.org/02vhvhj11', 'en', 1, 'https://ror.org/02vhvhj11 Shaikh Zayed Medical College and Hospital'),
(37420, 'https://ror.org/02vhyd254', 'en', 1, 'https://ror.org/02vhyd254 Rama University'),
(37421, 'https://ror.org/02vkr9a39', 'no_lang_code', 1, 'https://ror.org/02vkr9a39 Deep Ocean Technology (Poland)');
INSERT INTO `rors` VALUES
(37422, 'https://ror.org/02vn96q13', 'no_lang_code', 1, 'https://ror.org/02vn96q13 Vestdavit (Norway)'),
(37423, 'https://ror.org/02vspvr81', 'pl', 1, 'https://ror.org/02vspvr81 Centrum Medyczne iMed24'),
(37424, 'https://ror.org/02vvyxq62', 'no_lang_code', 1, 'https://ror.org/02vvyxq62 Brady (Norway)'),
(37425, 'https://ror.org/02vwh7h84', 'en', 1, 'https://ror.org/02vwh7h84 Military Communication Institute'),
(37426, 'https://ror.org/02vwv0r85', 'no_lang_code', 1, 'https://ror.org/02vwv0r85 Jenox (Poland)'),
(37427, 'https://ror.org/02vwzhc72', 'en', 1, 'https://ror.org/02vwzhc72 Kirklandside Hospital'),
(37428, 'https://ror.org/02vzn9b06', 'no_lang_code', 1, 'https://ror.org/02vzn9b06 Idteq (Norway)'),
(37429, 'https://ror.org/02vzzsr12', 'no_lang_code', 1, 'https://ror.org/02vzzsr12 Sima (Norway)'),
(37430, 'https://ror.org/02w1m8s39', 'no_lang_code', 1, 'https://ror.org/02w1m8s39 FAS (Poland)'),
(37431, 'https://ror.org/02w46bq53', 'no_lang_code', 1, 'https://ror.org/02w46bq53 Dr.Techn.Olav Olsen (Norway)'),
(37432, 'https://ror.org/02w4kss89', 'no_lang_code', 1, 'https://ror.org/02w4kss89 MĆøreforsking (Norway)'),
(37433, 'https://ror.org/02w5cw191', 'no_lang_code', 1, 'https://ror.org/02w5cw191 KOM Lux Fibras Ɠpticas (Brazil)'),
(37434, 'https://ror.org/02w7pyj82', 'en', 1, 'https://ror.org/02w7pyj82 Priory Hospital Altrincham'),
(37435, 'https://ror.org/02w8d2553', 'no', 1, 'https://ror.org/02w8d2553 ƅmot Kommune'),
(37436, 'https://ror.org/02w96wv37', 'no_lang_code', 1, 'https://ror.org/02w96wv37 Ramboll (Norway)'),
(37437, 'https://ror.org/02w9zyq75', 'no_lang_code', 1, 'https://ror.org/02w9zyq75 Pharmasum Therapeutics (Norway)'),
(37438, 'https://ror.org/02wbjm117', 'en', 1, 'https://ror.org/02wbjm117 Bundesarchiv German Federal Archives'),
(37439, 'https://ror.org/02wccra50', 'en', 1, 'https://ror.org/02wccra50 Christchurch Clinical Studies Trust'),
(37440, 'https://ror.org/02we0g281', 'en', 1, 'https://ror.org/02we0g281 Bon Secours Hospital Galway'),
(37441, 'https://ror.org/02wf8xc83', 'de', 1, 'https://ror.org/02wf8xc83 Rudolfinerhaus Hospital'),
(37442, 'https://ror.org/02whjr542', 'en', 1, 'https://ror.org/02whjr542 Braemar Hospital'),
(37443, 'https://ror.org/02wjs8c89', 'en', 1, 'https://ror.org/02wjs8c89 Asia Oceania Geosciences Society'),
(37444, 'https://ror.org/02wsxm934', 'no_lang_code', 1, 'https://ror.org/02wsxm934 Lerum (Norway)'),
(37445, 'https://ror.org/02wt6e634', 'en', 1, 'https://ror.org/02wt6e634 Leibniz Institute for Regional Geography Leibniz-Institut für Länderkunde'),
(37446, 'https://ror.org/02wwftm12', 'en', 1, 'https://ror.org/02wwftm12 Panyu District Central Hospital'),
(37447, 'https://ror.org/02x0ymb50', 'en', 1, 'https://ror.org/02x0ymb50 Council for Mental Health'),
(37448, 'https://ror.org/02x1q2477', 'en', 1, 'https://ror.org/02x1q2477 Max Planck Institute for Research on Collective Goods Max-Planck-Institut zur Erforschung von Gemeinschaftsgütern'),
(37449, 'https://ror.org/02x57pk47', 'no_lang_code', 1, 'https://ror.org/02x57pk47 Incontrol (Brazil)'),
(37450, 'https://ror.org/02x98g831', 'en', 1, 'https://ror.org/02x98g831 Xuzhou Children Hospital'),
(37451, 'https://ror.org/02xay1410', 'en', 1, 'https://ror.org/02xay1410 Mathrusri Ramabai Ambedkar Dental College & Hospital'),
(37452, 'https://ror.org/02xbqbw69', 'en', 1, 'https://ror.org/02xbqbw69 Via Christi Hospital'),
(37453, 'https://ror.org/02xd7fn78', 'en', 1, 'https://ror.org/02xd7fn78 Etobicoke General Hospital'),
(37454, 'https://ror.org/02xjdt420', 'no_lang_code', 1, 'https://ror.org/02xjdt420 Systherm (Poland)'),
(37455, 'https://ror.org/02xnfye26', 'no_lang_code', 1, 'https://ror.org/02xnfye26 Egersund Group (Norway)'),
(37456, 'https://ror.org/02xq4sz17', 'no_lang_code', 1, 'https://ror.org/02xq4sz17 Myhrene (Norway)'),
(37457, 'https://ror.org/02xqp7x96', 'no_lang_code', 1, 'https://ror.org/02xqp7x96 Shenyang Institute of Computing Technology (China) äø­å›½ē§‘å­¦é™¢ę²ˆé˜³č®”ē®—ęŠ€ęœÆē ”ē©¶ę‰€'),
(37458, 'https://ror.org/02xrpdt68', 'en', 1, 'https://ror.org/02xrpdt68 Luohe Medical College'),
(37459, 'https://ror.org/02xsnmk21', 'en', 1, 'https://ror.org/02xsnmk21 Nyakibale Hospital'),
(37460, 'https://ror.org/02xv7km65', 'en', 1, 'https://ror.org/02xv7km65 Japanese Society of Physiological Anthropology'),
(37461, 'https://ror.org/02xvrbk22', 'en', 1, 'https://ror.org/02xvrbk22 Hospital Sultan Abdul Halim Sultan Abdul Halim Hospital'),
(37462, 'https://ror.org/02xw13d29', 'en', 1, 'https://ror.org/02xw13d29 Katherine Hospital'),
(37463, 'https://ror.org/02xztm077', 'en', 1, 'https://ror.org/02xztm077 Educational Research Institute'),
(37464, 'https://ror.org/02y051p53', 'no_lang_code', 1, 'https://ror.org/02y051p53 Armatura (Poland)'),
(37465, 'https://ror.org/02y0fdf18', 'no_lang_code', 1, 'https://ror.org/02y0fdf18 Tetra Tech (Brazil)'),
(37466, 'https://ror.org/02y0nmb35', 'no_lang_code', 1, 'https://ror.org/02y0nmb35 Grenland Energy (Norway)'),
(37467, 'https://ror.org/02y2arb86', 'no_lang_code', 1, 'https://ror.org/02y2arb86 Chiba Aoba Municipal Hospital åƒč‘‰åø‚ē«‹é’č‘‰ē—…é™¢'),
(37468, 'https://ror.org/02y3prs94', 'en', 1, 'https://ror.org/02y3prs94 Booth University College'),
(37469, 'https://ror.org/02y5cd625', 'no_lang_code', 1, 'https://ror.org/02y5cd625 Dordrecht Hospital'),
(37470, 'https://ror.org/02y5heq38', 'en', 1, 'https://ror.org/02y5heq38 Charnock Hospital'),
(37471, 'https://ror.org/02y8fm890', 'pl', 1, 'https://ror.org/02y8fm890 Wojewódzki Ośrodek Medycyny Pracy'),
(37472, 'https://ror.org/02yag5627', 'no', 1, 'https://ror.org/02yag5627 Egede Instituttet'),
(37473, 'https://ror.org/02yf7vb16', 'no_lang_code', 1, 'https://ror.org/02yf7vb16 PepsiCo (United Kingdom)'),
(37474, 'https://ror.org/02ygq7y20', 'no_lang_code', 1, 'https://ror.org/02ygq7y20 Sigma (Poland)'),
(37475, 'https://ror.org/02yhs7m71', 'en', 1, 'https://ror.org/02yhs7m71 Fraunhofer Institute for Applied Polymer Research Fraunhofer-Institut für Angewandte Polymerforschung'),
(37476, 'https://ror.org/02yj38452', 'no_lang_code', 1, 'https://ror.org/02yj38452 Intecmat (Brazil)'),
(37477, 'https://ror.org/02yj6ya55', 'en', 1, 'https://ror.org/02yj6ya55 Asian Hospital and Medical Center'),
(37478, 'https://ror.org/02yj8ay39', 'en', 1, 'https://ror.org/02yj8ay39 Royal Hospital Chelsea'),
(37479, 'https://ror.org/02yjsqr32', 'de', 1, 'https://ror.org/02yjsqr32 Krankenhaus Oberndorf'),
(37480, 'https://ror.org/02ykc9w32', 'no_lang_code', 1, 'https://ror.org/02ykc9w32 Holmens (Norway)'),
(37481, 'https://ror.org/02yq0sn95', 'no_lang_code', 1, 'https://ror.org/02yq0sn95 Posten (Norway)'),
(37482, 'https://ror.org/02yq66p71', 'no_lang_code', 1, 'https://ror.org/02yq66p71 BioNumerik (United States)'),
(37483, 'https://ror.org/02yr30s14', 'no', 1, 'https://ror.org/02yr30s14 Drammen Kommune'),
(37484, 'https://ror.org/02ywapq94', 'pt', 1, 'https://ror.org/02ywapq94 Associação Brasileira de Pesquisadores em História EconÓmica'),
(37485, 'https://ror.org/02yxa8882', 'no_lang_code', 1, 'https://ror.org/02yxa8882 Optron MicromecĆ¢nica Ɠptica (Brazil)'),
(37486, 'https://ror.org/02yxcv577', 'no_lang_code', 1, 'https://ror.org/02yxcv577 Kom Forlag (Norway)'),
(37487, 'https://ror.org/02yyma482', 'en', 1, 'https://ror.org/02yyma482 International Tourism Institute'),
(37488, 'https://ror.org/02yyqh779', 'no_lang_code', 1, 'https://ror.org/02yyqh779 Numedalsutvikling (Norway)'),
(37489, 'https://ror.org/02z1zrr65', 'no_lang_code', 1, 'https://ror.org/02z1zrr65 Fobox (Norway)'),
(37490, 'https://ror.org/02z2mhx36', 'en', 1, 'https://ror.org/02z2mhx36 Association of Local Colleges and Universities'),
(37491, 'https://ror.org/02z3m0q91', 'no_lang_code', 1, 'https://ror.org/02z3m0q91 Synthos (Poland)'),
(37492, 'https://ror.org/02z5j8t37', 'no_lang_code', 1, 'https://ror.org/02z5j8t37 Dínamo Automação Industrial (Brazil)'),
(37493, 'https://ror.org/02z5rm416', 'en', 1, 'https://ror.org/02z5rm416 Butabika Hospital'),
(37494, 'https://ror.org/02z6mh533', 'no_lang_code', 1, 'https://ror.org/02z6mh533 Kahoot (Norway)'),
(37495, 'https://ror.org/02z6zf495', 'no_lang_code', 1, 'https://ror.org/02z6zf495 Seas Fabrikker (Norway)'),
(37496, 'https://ror.org/02z875e74', 'en', 1, 'https://ror.org/02z875e74 Ashraff Memorial Hospital'),
(37497, 'https://ror.org/02z89pc64', 'en', 1, 'https://ror.org/02z89pc64 Mindanao Sanitarium and Hospital College'),
(37498, 'https://ror.org/02z9c4y45', 'en', 1, 'https://ror.org/02z9c4y45 Osawatomie State Hospital'),
(37499, 'https://ror.org/02zbc1a16', 'en', 1, 'https://ror.org/02zbc1a16 Department of the Treasury'),
(37500, 'https://ror.org/02zc5r772', 'en', 1, 'https://ror.org/02zc5r772 Box Hill Institute'),
(37501, 'https://ror.org/02zfghc79', 'en', 1, 'https://ror.org/02zfghc79 Mother Hospital'),
(37502, 'https://ror.org/02zg72e18', 'no_lang_code', 1, 'https://ror.org/02zg72e18 Dovre (Norway)'),
(37503, 'https://ror.org/02zg8vj63', 'no_lang_code', 1, 'https://ror.org/02zg8vj63 Equacional (Brazil)'),
(37504, 'https://ror.org/02zgfyq81', 'en', 1, 'https://ror.org/02zgfyq81 Sarah Network of Rehabilitation Hospitals'),
(37505, 'https://ror.org/02zhfb961', 'no_lang_code', 1, 'https://ror.org/02zhfb961 ForzaSys (Norway)'),
(37506, 'https://ror.org/02zhmsp02', 'no_lang_code', 1, 'https://ror.org/02zhmsp02 HOBAS (Poland)'),
(37507, 'https://ror.org/02zkwve04', 'en', 1, 'https://ror.org/02zkwve04 Norristown State Hospital'),
(37508, 'https://ror.org/02zm5n619', 'no_lang_code', 1, 'https://ror.org/02zm5n619 Ernst-B. Johansen (Norway)'),
(37509, 'https://ror.org/02zs4aq98', 'no_lang_code', 1, 'https://ror.org/02zs4aq98 Sencer (Brazil)'),
(37510, 'https://ror.org/02zs6px59', 'no_lang_code', 1, 'https://ror.org/02zs6px59 Tecam Laboratórios (Brazil)'),
(37511, 'https://ror.org/02zv5qf81', 'tr', 1, 'https://ror.org/02zv5qf81 Şanlıurfa Mehmet Akif İnan Education and Research Hospital Şanlıurfa Mehmet Akif İnan Eğitim ve Araştırma Hastanesi'),
(37512, 'https://ror.org/02zvm4r30', 'en', 1, 'https://ror.org/02zvm4r30 Black Hawk College'),
(37513, 'https://ror.org/02zvwwf46', 'pt', 1, 'https://ror.org/02zvwwf46 Secretaria de Saneamento e Recursos HƬdricos'),
(37514, 'https://ror.org/02zww6317', 'en', 1, 'https://ror.org/02zww6317 Central Institute of Indian Languages ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ भाषा ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ą¬­ą¬¾ą¬°ą¬¤ą­€ą­Ÿ ଭାଷା ą¬Ŗą­ą¬°ą¬¤ą¬æą¬·ą­ą¬ ą¬¾ą¬Ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆŠą®“ą®æą®•ą®³ą®æą®©ąÆ ą®Øą®ŸąÆą®µą®£ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(37515, 'https://ror.org/02zx99z61', 'no_lang_code', 1, 'https://ror.org/02zx99z61 Excelchip (Brazil)'),
(37516, 'https://ror.org/02zyv6x15', 'no_lang_code', 1, 'https://ror.org/02zyv6x15 Gibson Innovations (Belgium)'),
(37517, 'https://ror.org/03006q137', 'en', 1, 'https://ror.org/03006q137 Denmar Specialist Psychiatric Hospital'),
(37518, 'https://ror.org/0301jsj38', 'no_lang_code', 1, 'https://ror.org/0301jsj38 Aqua Energy Solutions (Norway)'),
(37519, 'https://ror.org/0302jrc12', 'no_lang_code', 1, 'https://ror.org/0302jrc12 Meier & Giacaglia Medidores (Brazil)'),
(37520, 'https://ror.org/03037mp68', 'no_lang_code', 1, 'https://ror.org/03037mp68 Sensovann (Norway)'),
(37521, 'https://ror.org/0303drj82', 'no_lang_code', 1, 'https://ror.org/0303drj82 Personalis (United States)'),
(37522, 'https://ror.org/0304chs76', 'en', 1, 'https://ror.org/0304chs76 Coalinga State Hospital'),
(37523, 'https://ror.org/03051w252', 'de', 1, 'https://ror.org/03051w252 Bauernmuseum Bamberger Land'),
(37524, 'https://ror.org/030617867', 'no_lang_code', 1, 'https://ror.org/030617867 Shandong Jiaotong Hospital'),
(37525, 'https://ror.org/0306a8d50', 'en', 1, 'https://ror.org/0306a8d50 Annenberg Center for Health Sciences at Eisenhower'),
(37526, 'https://ror.org/0308pxz24', 'en', 1, 'https://ror.org/0308pxz24 Services Hospital سروسز ہسپتال'),
(37527, 'https://ror.org/0309m1r07', 'en', 1, 'https://ror.org/0309m1r07 Institut für Vogelforschung "Vogelwarte Helgolandā€œ Institute of Avian Research'),
(37528, 'https://ror.org/0309pcg09', 'en', 1, 'https://ror.org/0309pcg09 Shanghai Eighth People Hospital'),
(37529, 'https://ror.org/030a0m094', 'no_lang_code', 1, 'https://ror.org/030a0m094 Commfides Norge (Norway)'),
(37530, 'https://ror.org/030cwsf88', 'en', 1, 'https://ror.org/030cwsf88 Yancheng Third People''s Hospital'),
(37531, 'https://ror.org/030erj688', 'en', 1, 'https://ror.org/030erj688 Oberlin Group'),
(37532, 'https://ror.org/030f60051', 'en', 1, 'https://ror.org/030f60051 Ten Chen Hospital'),
(37533, 'https://ror.org/030ffke25', 'en', 1, 'https://ror.org/030ffke25 Guangdong University of Petrochemical Technology å¹æäøœēŸ³ę²¹åŒ–å·„å­¦é™¢'),
(37534, 'https://ror.org/030hd3e53', 'en', 1, 'https://ror.org/030hd3e53 Catawba Valley Community College'),
(37535, 'https://ror.org/030jh8c52', 'en', 1, 'https://ror.org/030jh8c52 Tuality Forest Grove Hospital'),
(37536, 'https://ror.org/030jpqj15', 'en', 1, 'https://ror.org/030jpqj15 Goulburn Base Hospital'),
(37537, 'https://ror.org/030jqbn26', 'en', 1, 'https://ror.org/030jqbn26 Department of Health č”žē”Ÿē½²'),
(37538, 'https://ror.org/030k21z47', 'en', 1, 'https://ror.org/030k21z47 Beijing Institute of Nanoenergy and Nanosystems äø­å›½ē§‘å­¦é™¢åŒ—äŗ¬ēŗ³ē±³čƒ½ęŗäøŽē³»ē»Ÿē ”ē©¶ę‰€'),
(37539, 'https://ror.org/030maey82', 'no_lang_code', 1, 'https://ror.org/030maey82 Heads (Norway)'),
(37540, 'https://ror.org/030mp9g18', 'no_lang_code', 1, 'https://ror.org/030mp9g18 Sdc Engenharia (Brazil)'),
(37541, 'https://ror.org/030ncf194', 'en', 1, 'https://ror.org/030ncf194 Cooper Green Mercy Hospital'),
(37542, 'https://ror.org/030nxya44', 'en', 1, 'https://ror.org/030nxya44 Indian Institute of Sugarcane Research'),
(37543, 'https://ror.org/030qwf038', 'de', 1, 'https://ror.org/030qwf038 Marien Hospital Düsseldorf'),
(37544, 'https://ror.org/030sr2v21', 'en', 1, 'https://ror.org/030sr2v21 Hainan General Hospital ęµ·å—ēœäŗŗę°‘åŒ»é™¢'),
(37545, 'https://ror.org/030sy9j53', 'en', 1, 'https://ror.org/030sy9j53 St. Luke''s Hospital'),
(37546, 'https://ror.org/030t3j082', 'no_lang_code', 1, 'https://ror.org/030t3j082 I-Sea (Norway)'),
(37547, 'https://ror.org/030t4re78', 'fr', 1, 'https://ror.org/030t4re78 MusƩe du Fjord'),
(37548, 'https://ror.org/030tvx861', 'de', 1, 'https://ror.org/030tvx861 Klinikum Wels-Grieskirchen'),
(37549, 'https://ror.org/030vz9r78', 'en', 1, 'https://ror.org/030vz9r78 Ashfield Healthcare'),
(37550, 'https://ror.org/030xgr181', 'en', 1, 'https://ror.org/030xgr181 Vinzenz Pallotti Hospital Bensberg'),
(37551, 'https://ror.org/030ztmv39', 'no_lang_code', 1, 'https://ror.org/030ztmv39 Landis International (United States)'),
(37552, 'https://ror.org/030zz7j19', 'pl', 1, 'https://ror.org/030zz7j19 Centrum Badań i Innowacji Pro-Akademia'),
(37553, 'https://ror.org/0312wfb17', 'no_lang_code', 1, 'https://ror.org/0312wfb17 GridSky Software (Norway)'),
(37554, 'https://ror.org/0315kxv51', 'no_lang_code', 1, 'https://ror.org/0315kxv51 HV Plast (Norway)'),
(37555, 'https://ror.org/03163ea17', 'no_lang_code', 1, 'https://ror.org/03163ea17 Fiskeriforum Vest (Norway)'),
(37556, 'https://ror.org/0316g5c30', 'no_lang_code', 1, 'https://ror.org/0316g5c30 Kings Bay (Norway)'),
(37557, 'https://ror.org/0316g6k10', 'no_lang_code', 1, 'https://ror.org/0316g6k10 Store Norske (Norway)'),
(37558, 'https://ror.org/0316khr05', 'no_lang_code', 1, 'https://ror.org/0316khr05 OmniTek (Brazil)'),
(37559, 'https://ror.org/0317k7j67', 'en', 1, 'https://ror.org/0317k7j67 Lanka Hospitals'),
(37560, 'https://ror.org/031870q06', 'no_lang_code', 1, 'https://ror.org/031870q06 Orchid Pharma (India)'),
(37561, 'https://ror.org/0319n6680', 'no', 1, 'https://ror.org/0319n6680 Kunnskapssenter for Laks og VannmiljĆø'),
(37562, 'https://ror.org/031ak8575', 'en', 1, 'https://ror.org/031ak8575 Tsuen Wan Adventist Hospital'),
(37563, 'https://ror.org/031bnv033', 'en', 1, 'https://ror.org/031bnv033 Brighter Beginnings'),
(37564, 'https://ror.org/031ekp611', 'no_lang_code', 1, 'https://ror.org/031ekp611 BCL Technologies (United States)'),
(37565, 'https://ror.org/031fazd56', 'en', 1, 'https://ror.org/031fazd56 Cavan General Hospital OspidƩal GinearƔlta an ChabhƔin'),
(37566, 'https://ror.org/031g15v45', 'en', 1, 'https://ror.org/031g15v45 Institute for High Technologies and Systems'),
(37567, 'https://ror.org/031g83w70', 'no_lang_code', 1, 'https://ror.org/031g83w70 Polwax (Poland)'),
(37568, 'https://ror.org/031m7k936', 'no_lang_code', 1, 'https://ror.org/031m7k936 GjĆøco (Norway)'),
(37569, 'https://ror.org/031mmkk34', 'en', 1, 'https://ror.org/031mmkk34 Palms of Pasadena Hospital'),
(37570, 'https://ror.org/031my5009', 'en', 1, 'https://ror.org/031my5009 Asia e University'),
(37571, 'https://ror.org/031nbsp88', 'no_lang_code', 1, 'https://ror.org/031nbsp88 MHWirth (Norway)'),
(37572, 'https://ror.org/031szhw45', 'no_lang_code', 1, 'https://ror.org/031szhw45 Infinita (Slovenia)'),
(37573, 'https://ror.org/031ts3559', 'en', 1, 'https://ror.org/031ts3559 Doowon Technical University College ė‘ģ›ź³µź³¼ėŒ€ķ•™źµ'),
(37574, 'https://ror.org/031va0421', 'es', 1, 'https://ror.org/031va0421 Hospital San Pedro'),
(37575, 'https://ror.org/031x8mb64', 'no_lang_code', 1, 'https://ror.org/031x8mb64 MƄltidets (Norway)'),
(37576, 'https://ror.org/031xv5t30', 'no', 1, 'https://ror.org/031xv5t30 Urban SjĆøfront'),
(37577, 'https://ror.org/031xy6s33', 'pl', 1, 'https://ror.org/031xy6s33 Institute of Rural Health Instytut Medycyny Wsi im. Witolda ChodÅŗki'),
(37578, 'https://ror.org/031zj0q48', 'en', 1, 'https://ror.org/031zj0q48 Institute of Engineering Thermophysics äø­å›½ē§‘å­¦é™¢å·„ēØ‹ēƒ­ē‰©ē†ē ”ē©¶ę‰€'),
(37579, 'https://ror.org/031zx7n25', 'en', 1, 'https://ror.org/031zx7n25 Norwegian Bible Society'),
(37580, 'https://ror.org/03248dr08', 'no_lang_code', 1, 'https://ror.org/03248dr08 Robert Bosch (Slovenia)'),
(37581, 'https://ror.org/0324c8f61', 'en', 1, 'https://ror.org/0324c8f61 Mahak Hospital and Rehabilitation Complex ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł…Ų­Ś©'),
(37582, 'https://ror.org/0326h5856', 'no', 1, 'https://ror.org/0326h5856 Aga Halibut'),
(37583, 'https://ror.org/0327c5w84', 'no_lang_code', 1, 'https://ror.org/0327c5w84 Resonator (Norway)'),
(37584, 'https://ror.org/0327sj791', 'no_lang_code', 1, 'https://ror.org/0327sj791 S.S. Gida Hospital'),
(37585, 'https://ror.org/0328dqn15', 'en', 1, 'https://ror.org/0328dqn15 Norwegian Coastal Administration'),
(37586, 'https://ror.org/032az3k06', 'en', 1, 'https://ror.org/032az3k06 Ashland Community Hospital'),
(37587, 'https://ror.org/032bhb453', 'no_lang_code', 1, 'https://ror.org/032bhb453 Łódzki Regionalny Park Naukowo-Technologiczny (Poland)'),
(37588, 'https://ror.org/032bps724', 'no_lang_code', 1, 'https://ror.org/032bps724 AsGa (Brazil)'),
(37589, 'https://ror.org/032bzhf86', 'en', 1, 'https://ror.org/032bzhf86 Vision International University'),
(37590, 'https://ror.org/032g22j83', 'en', 1, 'https://ror.org/032g22j83 Oswego Community Hospital'),
(37591, 'https://ror.org/032hca325', 'en', 1, 'https://ror.org/032hca325 Hsing Wu University é†’å¾ē§‘ęŠ€å¤§å­ø'),
(37592, 'https://ror.org/032jq1431', 'no_lang_code', 1, 'https://ror.org/032jq1431 KLRU-TV'),
(37593, 'https://ror.org/032kjn442', 'en', 1, 'https://ror.org/032kjn442 Indian Institute of Vegetable Research'),
(37594, 'https://ror.org/032p5d762', 'no_lang_code', 1, 'https://ror.org/032p5d762 Polprek (Poland)'),
(37595, 'https://ror.org/032qsa580', 'en', 1, 'https://ror.org/032qsa580 Nishikawa Hospital'),
(37596, 'https://ror.org/032rn0w24', 'en', 1, 'https://ror.org/032rn0w24 Gower College Swansea'),
(37597, 'https://ror.org/032tqk105', 'no_lang_code', 1, 'https://ror.org/032tqk105 Nordlaks (Norway)'),
(37598, 'https://ror.org/032vny106', 'no_lang_code', 1, 'https://ror.org/032vny106 Mountcrest University College'),
(37599, 'https://ror.org/032vq8n85', 'no_lang_code', 1, 'https://ror.org/032vq8n85 Augmentium Pharma Consulting (Canada)'),
(37600, 'https://ror.org/032yhrq65', 'no_lang_code', 1, 'https://ror.org/032yhrq65 Mission Hospital Durgapur'),
(37601, 'https://ror.org/032ymtx48', 'no_lang_code', 1, 'https://ror.org/032ymtx48 ICR (Norway)'),
(37602, 'https://ror.org/032ymzc07', 'en', 1, 'https://ror.org/032ymzc07 Fachhochschule Graubünden University of Applied Sciences of the Grisons'),
(37603, 'https://ror.org/0331bk778', 'en', 1, 'https://ror.org/0331bk778 Nsambya Hospital'),
(37604, 'https://ror.org/03327ex30', 'de', 1, 'https://ror.org/03327ex30 Bayerische Staatssammlung für Paläontologie und Geologie'),
(37605, 'https://ror.org/0332phy25', 'no_lang_code', 1, 'https://ror.org/0332phy25 Mouse Specifics (United States)'),
(37606, 'https://ror.org/0332xca13', 'en', 1, 'https://ror.org/0332xca13 Ibn Sina National College for Medical Studies ŁƒŁ„ŁŠŲ© ابن Ų³ŁŠŁ†Ų§'),
(37607, 'https://ror.org/03345rt93', 'no_lang_code', 1, 'https://ror.org/03345rt93 Imaging Technology Consulting (United States)'),
(37608, 'https://ror.org/033573j20', 'no_lang_code', 1, 'https://ror.org/033573j20 Kyowa Hakko Kirin (Singapore)'),
(37609, 'https://ror.org/0335pr187', 'en', 1, 'https://ror.org/0335pr187 Fourth Affiliated Hospital of Guangxi Medical University'),
(37610, 'https://ror.org/033722021', 'en', 1, 'https://ror.org/033722021 Institute of Plant Protection'),
(37611, 'https://ror.org/0337j9c19', 'no_lang_code', 1, 'https://ror.org/0337j9c19 Wojskowe Zakłady Inżynieryjne (Poland)'),
(37612, 'https://ror.org/0337pwh54', 'no_lang_code', 1, 'https://ror.org/0337pwh54 WiSub (Norway)'),
(37613, 'https://ror.org/033dx8j94', 'en', 1, 'https://ror.org/033dx8j94 University B.D.T College of Engineering'),
(37614, 'https://ror.org/033eygk88', 'no_lang_code', 1, 'https://ror.org/033eygk88 AMS (Slovenia)'),
(37615, 'https://ror.org/033fq2155', 'en', 1, 'https://ror.org/033fq2155 Institute for Hydraulic Research'),
(37616, 'https://ror.org/033fsme98', 'no_lang_code', 1, 'https://ror.org/033fsme98 TeraRecon (United States)'),
(37617, 'https://ror.org/033js6g46', 'en', 1, 'https://ror.org/033js6g46 Institute of Electrical Engineering 中国科学院电巄研究所'),
(37618, 'https://ror.org/033jzmc70', 'en', 1, 'https://ror.org/033jzmc70 Leon Wiltse Memorial Hospital ģœŒģŠ¤źø°ė…ė³‘ģ›'),
(37619, 'https://ror.org/033kyng81', 'de', 1, 'https://ror.org/033kyng81 Diakonissenkrankenhaus'),
(37620, 'https://ror.org/033mwhp49', 'no_lang_code', 1, 'https://ror.org/033mwhp49 Bass (Norway)'),
(37621, 'https://ror.org/033n39v56', 'pt', 1, 'https://ror.org/033n39v56 Associação Brasileira para a Proteção dos Alimentos'),
(37622, 'https://ror.org/033pwxw54', 'en', 1, 'https://ror.org/033pwxw54 Kisiizi Hospital'),
(37623, 'https://ror.org/033pzck63', 'no_lang_code', 1, 'https://ror.org/033pzck63 Koppert (Brazil)'),
(37624, 'https://ror.org/033r6dh57', 'pt', 1, 'https://ror.org/033r6dh57 Secretaria de Desenvolvimento EconÓmico, Ciência, Tecnologia e Inovação'),
(37625, 'https://ror.org/033tsye23', 'no', 1, 'https://ror.org/033tsye23 Akademika (Norway)'),
(37626, 'https://ror.org/033v3bb42', 'en', 1, 'https://ror.org/033v3bb42 Blythedale Children''s Hospital'),
(37627, 'https://ror.org/033wnan59', 'no_lang_code', 1, 'https://ror.org/033wnan59 D.A. Glass (Poland)'),
(37628, 'https://ror.org/0343myz07', 'en', 1, 'https://ror.org/0343myz07 Montana State University System'),
(37629, 'https://ror.org/0344nnn17', 'no_lang_code', 1, 'https://ror.org/0344nnn17 Total (Germany)'),
(37630, 'https://ror.org/0346psp61', 'no_lang_code', 1, 'https://ror.org/0346psp61 Ulstein Group (Norway)'),
(37631, 'https://ror.org/034dn0836', 'en', 1, 'https://ror.org/034dn0836 Institute of Psychology Instytut Psychologii Polska Akademia Nauk'),
(37632, 'https://ror.org/034e8et22', 'no_lang_code', 1, 'https://ror.org/034e8et22 Science and Technology Corporation (Norway)'),
(37633, 'https://ror.org/034epfv80', 'no_lang_code', 1, 'https://ror.org/034epfv80 Fluenta (Norway)'),
(37634, 'https://ror.org/034fa5k55', 'no_lang_code', 1, 'https://ror.org/034fa5k55 Ecology Glass (Brazil)'),
(37635, 'https://ror.org/034ga4e26', 'no_lang_code', 1, 'https://ror.org/034ga4e26 Moods of Norway (Norway)'),
(37636, 'https://ror.org/034hztf92', 'de', 1, 'https://ror.org/034hztf92 Hanseatic Wirtschaftsarchiv, Stiftung Hanseatisches Wirtschaftsarchiv'),
(37637, 'https://ror.org/034j4ta73', 'no_lang_code', 1, 'https://ror.org/034j4ta73 Shanda Games'),
(37638, 'https://ror.org/034jg6t98', 'pt', 1, 'https://ror.org/034jg6t98 Centro UniversitÔrio Fundação Assis Gurgacz'),
(37639, 'https://ror.org/034m1ez10', 'en', 1, 'https://ror.org/034m1ez10 Science of Learning Centers Program Coordinating Committee'),
(37640, 'https://ror.org/034nkgy63', 'no_lang_code', 1, 'https://ror.org/034nkgy63 Nexus (Brazil)'),
(37641, 'https://ror.org/034pj3s87', 'en', 1, 'https://ror.org/034pj3s87 Kazakh-Russian International University'),
(37642, 'https://ror.org/034qc6c88', 'no_lang_code', 1, 'https://ror.org/034qc6c88 RMF Consultoria (Brazil)'),
(37643, 'https://ror.org/034qf1506', 'no_lang_code', 1, 'https://ror.org/034qf1506 Lindum (Norway)'),
(37644, 'https://ror.org/034qn2e75', 'en', 1, 'https://ror.org/034qn2e75 Community Hospital of Long Beach'),
(37645, 'https://ror.org/034qxt397', 'it', 1, 'https://ror.org/034qxt397 Azienda Ospedaliero-Universitaria Cagliari'),
(37646, 'https://ror.org/034r02c45', 'no_lang_code', 1, 'https://ror.org/034r02c45 Themag (Brazil)'),
(37647, 'https://ror.org/034r26m89', 'en', 1, 'https://ror.org/034r26m89 Contra Costa College'),
(37648, 'https://ror.org/034wdms74', 'no', 1, 'https://ror.org/034wdms74 LĆøvenskiold Fossum'),
(37649, 'https://ror.org/034wzt925', 'no_lang_code', 1, 'https://ror.org/034wzt925 Omex (Norway)'),
(37650, 'https://ror.org/034yf4q42', 'no_lang_code', 1, 'https://ror.org/034yf4q42 Ryjor (Brazil)'),
(37651, 'https://ror.org/034yp4s66', 'no_lang_code', 1, 'https://ror.org/034yp4s66 Austevoll Seafood (Norway)'),
(37652, 'https://ror.org/034zes736', 'en', 1, 'https://ror.org/034zes736 Bluegrass Community and Technical College'),
(37653, 'https://ror.org/0351dr811', 'no_lang_code', 1, 'https://ror.org/0351dr811 DPR Engenharia (Brazil)'),
(37654, 'https://ror.org/03526fm87', 'no_lang_code', 1, 'https://ror.org/03526fm87 MRE SoluƧƵes (Brazil)'),
(37655, 'https://ror.org/03526x064', 'no_lang_code', 1, 'https://ror.org/03526x064 Huddlestock Capital (Norway)'),
(37656, 'https://ror.org/0352m1z03', 'no_lang_code', 1, 'https://ror.org/0352m1z03 IMS Group (Norway)'),
(37657, 'https://ror.org/0353d6x38', 'no_lang_code', 1, 'https://ror.org/0353d6x38 Amarin (United States)'),
(37658, 'https://ror.org/03541w302', 'en', 1, 'https://ror.org/03541w302 Arua Regional Referral Hospital'),
(37659, 'https://ror.org/03545fq57', 'en', 1, 'https://ror.org/03545fq57 Comisión Federal de Comunicaciones Federal Communications Commission'),
(37660, 'https://ror.org/0357w4d04', 'no_lang_code', 1, 'https://ror.org/0357w4d04 Sana Pharma Medical (Norway)'),
(37661, 'https://ror.org/0358k0g48', 'en', 1, 'https://ror.org/0358k0g48 Academy of Music in Kraków Akademia Muzyczna w Krakowie'),
(37662, 'https://ror.org/0358q4810', 'en', 1, 'https://ror.org/0358q4810 Ruihua Affiliated Hospital of Soochow University'),
(37663, 'https://ror.org/0358v9d31', 'en', 1, 'https://ror.org/0358v9d31 Affiliated Hospital of Youjiang Medical University for Nationalities'),
(37664, 'https://ror.org/03591vd47', 'no_lang_code', 1, 'https://ror.org/03591vd47 MKS Electronic Systems (Slovenia)'),
(37665, 'https://ror.org/035by7v51', 'no', 1, 'https://ror.org/035by7v51 Kappabel'),
(37666, 'https://ror.org/035c32k36', 'no_lang_code', 1, 'https://ror.org/035c32k36 Gardo General Hospital'),
(37667, 'https://ror.org/035f23321', 'de', 1, 'https://ror.org/035f23321 Frobenius Institute for Research in Cultural Anthropology Frobenius-Institut'),
(37668, 'https://ror.org/035hn3t86', 'en', 1, 'https://ror.org/035hn3t86 Staatliches Museum für Naturkunde Karlsruhe State Museum of Natural History Karlsruhe'),
(37669, 'https://ror.org/035mhpy30', 'no_lang_code', 1, 'https://ror.org/035mhpy30 Orlen (Poland) Polski Koncern Naftowy Orlen'),
(37670, 'https://ror.org/035qg4911', 'no_lang_code', 1, 'https://ror.org/035qg4911 Electric System & Laser Technology (Poland)'),
(37671, 'https://ror.org/035rf9c29', 'en', 1, 'https://ror.org/035rf9c29 Noguchi Hospital'),
(37672, 'https://ror.org/035rm0c83', 'en', 1, 'https://ror.org/035rm0c83 Norman Regional Hospital'),
(37673, 'https://ror.org/035sj1s35', 'fr', 1, 'https://ror.org/035sj1s35 Service de Recherche et d''EXpertise en Transformation des Produits Forestiers'),
(37674, 'https://ror.org/035veqr40', 'en', 1, 'https://ror.org/035veqr40 Elizabeth Donkin Hospital'),
(37675, 'https://ror.org/035vexy28', 'no_lang_code', 1, 'https://ror.org/035vexy28 HĆørselslaben (Norway)'),
(37676, 'https://ror.org/035w01f39', 'no_lang_code', 1, 'https://ror.org/035w01f39 Hexagon (Norway)'),
(37677, 'https://ror.org/035wt7p80', 'en', 1, 'https://ror.org/035wt7p80 Shengli Oilfield Central Hospital'),
(37678, 'https://ror.org/035xenz28', 'en', 1, 'https://ror.org/035xenz28 American School of Warsaw'),
(37679, 'https://ror.org/035y1f917', 'pt', 1, 'https://ror.org/035y1f917 Centro de Estudos do Laboratório de Aptidão Física de São Caetano do Sul'),
(37680, 'https://ror.org/035yrx309', 'en', 1, 'https://ror.org/035yrx309 Norwood Hospital'),
(37681, 'https://ror.org/0360rgf68', 'de', 1, 'https://ror.org/0360rgf68 Sophien-und Hufeland Klinikum'),
(37682, 'https://ror.org/0360yvh71', 'de', 1, 'https://ror.org/0360yvh71 Krankenhaus Lindenbrunn'),
(37683, 'https://ror.org/03617rq47', 'en', 1, 'https://ror.org/03617rq47 The First People’s Hospital of Lianyungang'),
(37684, 'https://ror.org/0361rdk10', 'no_lang_code', 1, 'https://ror.org/0361rdk10 Forget-Me-Not (Norway)'),
(37685, 'https://ror.org/0361v2a25', 'no_lang_code', 1, 'https://ror.org/0361v2a25 IRSPIN (Slovenia)'),
(37686, 'https://ror.org/0363hbd07', 'no', 1, 'https://ror.org/0363hbd07 Tinn kommune'),
(37687, 'https://ror.org/0364zga38', 'no_lang_code', 1, 'https://ror.org/0364zga38 Det Norske Samlaget (Norway)'),
(37688, 'https://ror.org/0368f8s77', 'en', 1, 'https://ror.org/0368f8s77 Atlanta Metropolitan College, Atlanta Metropolitan State College'),
(37689, 'https://ror.org/036bcm133', 'en', 1, 'https://ror.org/036bcm133 Asian Development Bank Bangko sa Pagpapaunlad ng Asya'),
(37690, 'https://ror.org/036cvz290', 'en', 1, 'https://ror.org/036cvz290 Leshan Normal University ä¹å±±åøˆčŒƒå­¦é™¢'),
(37691, 'https://ror.org/036d0t930', 'en', 1, 'https://ror.org/036d0t930 Minto Ophthalmic Hospital'),
(37692, 'https://ror.org/036d7m178', 'de', 1, 'https://ror.org/036d7m178 Klinikum Bielefeld'),
(37693, 'https://ror.org/036dmxc82', 'no_lang_code', 1, 'https://ror.org/036dmxc82 Dat (Norway)'),
(37694, 'https://ror.org/036e7jk76', 'no_lang_code', 1, 'https://ror.org/036e7jk76 Matczak Autonadwozia (Poland)'),
(37695, 'https://ror.org/036evcw04', 'no_lang_code', 1, 'https://ror.org/036evcw04 M3 Helse'),
(37696, 'https://ror.org/036fhj216', 'no', 1, 'https://ror.org/036fhj216 MƦre Landbruksskole'),
(37697, 'https://ror.org/036g8b848', 'en', 1, 'https://ror.org/036g8b848 Inverurie Hospital'),
(37698, 'https://ror.org/036jhyh48', 'no_lang_code', 1, 'https://ror.org/036jhyh48 Ko-Aks (Norway)'),
(37699, 'https://ror.org/036k6sw03', 'en', 1, 'https://ror.org/036k6sw03 Tone Lise Academy'),
(37700, 'https://ror.org/036m1ng26', 'no_lang_code', 1, 'https://ror.org/036m1ng26 TIC-LENS Laser Technologies (Slovenia)'),
(37701, 'https://ror.org/036mc2b83', 'no_lang_code', 1, 'https://ror.org/036mc2b83 Mvisia (Brazil)'),
(37702, 'https://ror.org/036nbhr81', 'no', 1, 'https://ror.org/036nbhr81 Fjell Kommune'),
(37703, 'https://ror.org/036prk722', 'pt', 1, 'https://ror.org/036prk722 Faculdade de Agudos'),
(37704, 'https://ror.org/036qhje24', 'no_lang_code', 1, 'https://ror.org/036qhje24 Norwegian Hydropower (Norway)'),
(37705, 'https://ror.org/036r3bf08', 'no_lang_code', 1, 'https://ror.org/036r3bf08 Atkins (Norway)'),
(37706, 'https://ror.org/036s60e53', 'en', 1, 'https://ror.org/036s60e53 Aberdeen Provincial Hospital'),
(37707, 'https://ror.org/036vdb341', 'en', 1, 'https://ror.org/036vdb341 Hopkinsville Community College'),
(37708, 'https://ror.org/036wf7b34', 'no_lang_code', 1, 'https://ror.org/036wf7b34 Benteler (Norway)'),
(37709, 'https://ror.org/036xk1d10', 'no_lang_code', 1, 'https://ror.org/036xk1d10 AgromiljĆø (Norway)'),
(37710, 'https://ror.org/036yer645', 'no_lang_code', 1, 'https://ror.org/036yer645 Tellippalai Hospital'),
(37711, 'https://ror.org/036z4hp15', 'en', 1, 'https://ror.org/036z4hp15 Nelson Mandela Academic Hospital'),
(37712, 'https://ror.org/0371j5q71', 'no_lang_code', 1, 'https://ror.org/0371j5q71 Ƙrsted (Norway)'),
(37713, 'https://ror.org/0374eby90', 'no_lang_code', 1, 'https://ror.org/0374eby90 Valkenberg Hospital'),
(37714, 'https://ror.org/03753r186', 'en', 1, 'https://ror.org/03753r186 Dupont Hospital'),
(37715, 'https://ror.org/0375jhj23', 'en', 1, 'https://ror.org/0375jhj23 Little Flower Hospital & Research Centre'),
(37716, 'https://ror.org/0376qrw20', 'no_lang_code', 1, 'https://ror.org/0376qrw20 AnaCon (Norway)'),
(37717, 'https://ror.org/0377jb567', 'no_lang_code', 1, 'https://ror.org/0377jb567 Expology (Norway)'),
(37718, 'https://ror.org/0377q3w53', 'en', 1, 'https://ror.org/0377q3w53 Saskatchewan Hospital'),
(37719, 'https://ror.org/037958547', 'en', 1, 'https://ror.org/037958547 Munch Museum'),
(37720, 'https://ror.org/0379mtc39', 'no_lang_code', 1, 'https://ror.org/0379mtc39 Metronik (Slovenia)'),
(37721, 'https://ror.org/0379wsf91', 'no_lang_code', 1, 'https://ror.org/0379wsf91 Nextsys (Norway)'),
(37722, 'https://ror.org/037afsz69', 'no_lang_code', 1, 'https://ror.org/037afsz69 BioMar (Norway)'),
(37723, 'https://ror.org/037asfq15', 'en', 1, 'https://ror.org/037asfq15 Thai Nguyen National General Hospital'),
(37724, 'https://ror.org/037c3sd41', 'pt', 1, 'https://ror.org/037c3sd41 Fondazione Università Vita Cristiana Fundação UniversitÔria Vida Cristã'),
(37725, 'https://ror.org/037e53n70', 'no_lang_code', 1, 'https://ror.org/037e53n70 Marine design (Norway)'),
(37726, 'https://ror.org/037emwa26', 'en', 1, 'https://ror.org/037emwa26 Polish Wood Cluster'),
(37727, 'https://ror.org/037hcxy67', 'no_lang_code', 1, 'https://ror.org/037hcxy67 eDrilling (Norway)'),
(37728, 'https://ror.org/037hj0t48', 'no_lang_code', 1, 'https://ror.org/037hj0t48 HIPOT-RR (Slovenia)'),
(37729, 'https://ror.org/037hw8d27', 'en', 1, 'https://ror.org/037hw8d27 Bestian Medical Center'),
(37730, 'https://ror.org/037kzdg33', 'it', 1, 'https://ror.org/037kzdg33 Santissima TrinitĆ '),
(37731, 'https://ror.org/037nj1h98', 'en', 1, 'https://ror.org/037nj1h98 Labmass Laboratory'),
(37732, 'https://ror.org/037p52j25', 'en', 1, 'https://ror.org/037p52j25 Institute of Theoretical and Applied Informatics Instytut Informatyki Teoretycznej i Stosowanej Polskiej Akademii Nauk'),
(37733, 'https://ror.org/037p86664', 'en', 1, 'https://ror.org/037p86664 Leibniz Institute for Crystal Growth Leibniz-Institut für Kristallzüchtung'),
(37734, 'https://ror.org/037pdaj95', 'no_lang_code', 1, 'https://ror.org/037pdaj95 Sheriff Film Company (Norway)'),
(37735, 'https://ror.org/037r20s14', 'en', 1, 'https://ror.org/037r20s14 Bellona Foundation'),
(37736, 'https://ror.org/037sc9d45', 'en', 1, 'https://ror.org/037sc9d45 LillestrĆøm Centre of Expertise'),
(37737, 'https://ror.org/037ssjt43', 'no_lang_code', 1, 'https://ror.org/037ssjt43 Martje Venter Hospital'),
(37738, 'https://ror.org/037ve0v69', 'en', 1, 'https://ror.org/037ve0v69 Yanbian University Hospital'),
(37739, 'https://ror.org/037w1y594', 'en', 1, 'https://ror.org/037w1y594 International Hospital of Bahrain مستؓفى Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„ŲÆŁˆŁ„ŁŠ'),
(37740, 'https://ror.org/037wp0751', 'en', 1, 'https://ror.org/037wp0751 Gratz College'),
(37741, 'https://ror.org/037x86n09', 'pl', 1, 'https://ror.org/037x86n09 Centrum Cyfrowe Projekt'),
(37742, 'https://ror.org/037z21177', 'no_lang_code', 1, 'https://ror.org/037z21177 Pro Barents (Norway)'),
(37743, 'https://ror.org/037zgz558', 'en', 1, 'https://ror.org/037zgz558 Vavuniya General Hospital'),
(37744, 'https://ror.org/037zm3n13', 'no_lang_code', 1, 'https://ror.org/037zm3n13 Fosbrasil (Brazil)'),
(37745, 'https://ror.org/03803zg51', 'no_lang_code', 1, 'https://ror.org/03803zg51 Biopcycle (Brazil)'),
(37746, 'https://ror.org/03850me26', 'en', 1, 'https://ror.org/03850me26 Mutolere Hospital'),
(37747, 'https://ror.org/0385e5n50', 'no_lang_code', 1, 'https://ror.org/0385e5n50 Ineos (Norway)'),
(37748, 'https://ror.org/0387h3509', 'no_lang_code', 1, 'https://ror.org/0387h3509 Spartacus Forlag (Norway)'),
(37749, 'https://ror.org/0387raj07', 'de', 1, 'https://ror.org/0387raj07 Asklepios Klinik St. Georg'),
(37750, 'https://ror.org/0388pet74', 'en', 1, 'https://ror.org/0388pet74 Office of Emerging Frontiers and Multidisciplinary Activities'),
(37751, 'https://ror.org/038a7tx93', 'no', 1, 'https://ror.org/038a7tx93 Materialisten'),
(37752, 'https://ror.org/038arc322', 'en', 1, 'https://ror.org/038arc322 Asia-Pacific Society for Computers in Education'),
(37753, 'https://ror.org/038astr05', 'en', 1, 'https://ror.org/038astr05 Dominican House of Studies'),
(37754, 'https://ror.org/038awey71', 'en', 1, 'https://ror.org/038awey71 Management Research Institute'),
(37755, 'https://ror.org/038b7sx49', 'no_lang_code', 1, 'https://ror.org/038b7sx49 Adaptimmune (United Kingdom)'),
(37756, 'https://ror.org/038c55s31', 'en', 1, 'https://ror.org/038c55s31 Dar es Salaam Institute of Technology'),
(37757, 'https://ror.org/038dzsp73', 'no_lang_code', 1, 'https://ror.org/038dzsp73 C-NAV (Norway)'),
(37758, 'https://ror.org/038g0j466', 'en', 1, 'https://ror.org/038g0j466 Fort Grey TB Hospital'),
(37759, 'https://ror.org/038m8dc24', 'en', 1, 'https://ror.org/038m8dc24 Great Basin College'),
(37760, 'https://ror.org/038ny6229', 'no_lang_code', 1, 'https://ror.org/038ny6229 RED Consulting (Norway)'),
(37761, 'https://ror.org/038p3sh66', 'no_lang_code', 1, 'https://ror.org/038p3sh66 Eikonal do Brasil (Brazil)'),
(37762, 'https://ror.org/038pj4t13', 'en', 1, 'https://ror.org/038pj4t13 CollĆØge universitaire du nord University College of the North'),
(37763, 'https://ror.org/038q6p167', 'no_lang_code', 1, 'https://ror.org/038q6p167 Hyperthermics (Norway)'),
(37764, 'https://ror.org/038rse530', 'no_lang_code', 1, 'https://ror.org/038rse530 Sumitomo Rubber Industries (Japan) ä½å‹ć‚“ćƒ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(37765, 'https://ror.org/038wth296', 'no_lang_code', 1, 'https://ror.org/038wth296 Scanwatt (Norway)'),
(37766, 'https://ror.org/038wvk427', 'pt', 1, 'https://ror.org/038wvk427 Secretaria Municipal de Desenvolvimento EconÓmico e Negócios de Turismo'),
(37767, 'https://ror.org/038xfsp37', 'no_lang_code', 1, 'https://ror.org/038xfsp37 EMO Orodjarna (Slovenia)'),
(37768, 'https://ror.org/038y3xt87', 'en', 1, 'https://ror.org/038y3xt87 Aga Khan Hospital, Kisumu'),
(37769, 'https://ror.org/038ydmp22', 'no_lang_code', 1, 'https://ror.org/038ydmp22 Alpha Br Produtos QuĆ­micos (Brazil)'),
(37770, 'https://ror.org/038ynt641', 'no_lang_code', 1, 'https://ror.org/038ynt641 Symphonical (Norway)'),
(37771, 'https://ror.org/038z2kp14', 'en', 1, 'https://ror.org/038z2kp14 Blue Mountain Hospital'),
(37772, 'https://ror.org/038zrcp32', 'en', 1, 'https://ror.org/038zrcp32 Energy Norway'),
(37773, 'https://ror.org/0390t1205', 'en', 1, 'https://ror.org/0390t1205 Saskatoon City Hospital'),
(37774, 'https://ror.org/0392qcg83', 'no_lang_code', 1, 'https://ror.org/0392qcg83 Corollarium (Brazil)'),
(37775, 'https://ror.org/0396mnx76', 'es', 1, 'https://ror.org/0396mnx76 Hospital de Manises'),
(37776, 'https://ror.org/039726g63', 'no_lang_code', 1, 'https://ror.org/039726g63 Cardiaccs (Norway)'),
(37777, 'https://ror.org/0398fjy18', 'en', 1, 'https://ror.org/0398fjy18 St Francis Chronic Hospital'),
(37778, 'https://ror.org/0399rn938', 'no_lang_code', 1, 'https://ror.org/0399rn938 Inventas (Norway)'),
(37779, 'https://ror.org/039a9p804', 'no_lang_code', 1, 'https://ror.org/039a9p804 Reinertsen (Norway)'),
(37780, 'https://ror.org/039j5vj89', 'en', 1, 'https://ror.org/039j5vj89 Prevention of Organ Failure'),
(37781, 'https://ror.org/039javj55', 'fr', 1, 'https://ror.org/039javj55 Institut de Recherches en Technologies et Sciences pour le Vivant'),
(37782, 'https://ror.org/039jpp391', 'no_lang_code', 1, 'https://ror.org/039jpp391 Defa (Norway)'),
(37783, 'https://ror.org/039kas258', 'en', 1, 'https://ror.org/039kas258 Imperial Valley College'),
(37784, 'https://ror.org/039mdjd71', 'en', 1, 'https://ror.org/039mdjd71 Central Texas College'),
(37785, 'https://ror.org/039n2wf68', 'no_lang_code', 1, 'https://ror.org/039n2wf68 Kokilaben Dhirubhai Ambani Hospital'),
(37786, 'https://ror.org/039r09095', 'no_lang_code', 1, 'https://ror.org/039r09095 SillaJen (United States)'),
(37787, 'https://ror.org/039rg3x29', 'en', 1, 'https://ror.org/039rg3x29 City of Bristol College'),
(37788, 'https://ror.org/039s5aa86', 'no_lang_code', 1, 'https://ror.org/039s5aa86 Optsensys (Brazil)'),
(37789, 'https://ror.org/039t3gk55', 'no_lang_code', 1, 'https://ror.org/039t3gk55 Biopdi (Brazil)'),
(37790, 'https://ror.org/039v11z91', 'en', 1, 'https://ror.org/039v11z91 Biratnagar Eye Hospital'),
(37791, 'https://ror.org/039v2y730', 'en', 1, 'https://ror.org/039v2y730 Summa St. Thomas Hospital'),
(37792, 'https://ror.org/039xdzv43', 'en', 1, 'https://ror.org/039xdzv43 Norwegian Maritime Authority'),
(37793, 'https://ror.org/03a07kg34', 'pl', 1, 'https://ror.org/03a07kg34 Uniwersytecki Szpital Kliniczny w Olsztynie'),
(37794, 'https://ror.org/03a0eje69', 'no_lang_code', 1, 'https://ror.org/03a0eje69 Helioenergia (Poland)'),
(37795, 'https://ror.org/03a22gk67', 'en', 1, 'https://ror.org/03a22gk67 Anton Trstenjak Institute'),
(37796, 'https://ror.org/03a3xs663', 'pt', 1, 'https://ror.org/03a3xs663 Secretaria do Meio Ambiente'),
(37797, 'https://ror.org/03a470v04', 'en', 1, 'https://ror.org/03a470v04 Kabale Hospital'),
(37798, 'https://ror.org/03acm9457', 'no_lang_code', 1, 'https://ror.org/03acm9457 Parker Maritime (Norway)'),
(37799, 'https://ror.org/03ad5a420', 'no_lang_code', 1, 'https://ror.org/03ad5a420 Grupa Azoty (Poland)'),
(37800, 'https://ror.org/03ag00v40', 'no_lang_code', 1, 'https://ror.org/03ag00v40 Devoteam (Norway)'),
(37801, 'https://ror.org/03ahnb373', 'en', 1, 'https://ror.org/03ahnb373 Institute for developmental and strategic analysis'),
(37802, 'https://ror.org/03ajdty96', 'no', 1, 'https://ror.org/03ajdty96 Norsif'),
(37803, 'https://ror.org/03am6ps88', 'en', 1, 'https://ror.org/03am6ps88 Institute for Spatial Policies InŔtitut za politike prostora'),
(37804, 'https://ror.org/03andxb27', 'no_lang_code', 1, 'https://ror.org/03andxb27 Medistem (Panama)'),
(37805, 'https://ror.org/03angs540', 'no_lang_code', 1, 'https://ror.org/03angs540 Gether (Norway)'),
(37806, 'https://ror.org/03aqe2s98', 'no_lang_code', 1, 'https://ror.org/03aqe2s98 Structum (Slovenia)'),
(37807, 'https://ror.org/03armkb15', 'en', 1, 'https://ror.org/03armkb15 Pomerado Hospital'),
(37808, 'https://ror.org/03as2hc70', 'en', 1, 'https://ror.org/03as2hc70 Instytut Technik Innowacyjnych EMAG Łukasiewicz Research Network - Institute of Innovative Technologies EMAG'),
(37809, 'https://ror.org/03asev112', 'en', 1, 'https://ror.org/03asev112 London Bridge Hospital'),
(37810, 'https://ror.org/03asvq815', 'en', 1, 'https://ror.org/03asvq815 Central University of Kashmir ą¤•ą¤¶ą„ą¤®ą„€ą¤° ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(37811, 'https://ror.org/03at7j224', 'en', 1, 'https://ror.org/03at7j224 Manhattan Christian College'),
(37812, 'https://ror.org/03atmxx79', 'en', 1, 'https://ror.org/03atmxx79 Westerly Hospital'),
(37813, 'https://ror.org/03axr8b14', 'pt', 1, 'https://ror.org/03axr8b14 Conselho de reitores das Universidades Estaduais de SĆ£o Paulo'),
(37814, 'https://ror.org/03ayyme69', 'no', 1, 'https://ror.org/03ayyme69 Troms Fylkeskommune'),
(37815, 'https://ror.org/03azf9x72', 'no_lang_code', 1, 'https://ror.org/03azf9x72 Edtech Foundry (Norway)'),
(37816, 'https://ror.org/03b081a48', 'no_lang_code', 1, 'https://ror.org/03b081a48 CLB Engenharia Consultiva (Brazil)'),
(37817, 'https://ror.org/03b0jpz35', 'no_lang_code', 1, 'https://ror.org/03b0jpz35 Normex (Norway)'),
(37818, 'https://ror.org/03b2r8705', 'no', 1, 'https://ror.org/03b2r8705 SĆørlandslisten'),
(37819, 'https://ror.org/03b5r3y93', 'no', 1, 'https://ror.org/03b5r3y93 Wikimedia Norge'),
(37820, 'https://ror.org/03b5xce19', 'en', 1, 'https://ror.org/03b5xce19 South Seminole Hospital'),
(37821, 'https://ror.org/03b6zwf53', 'en', 1, 'https://ror.org/03b6zwf53 Finnish Society for Nutrition Research'),
(37822, 'https://ror.org/03b9q7371', 'en', 1, 'https://ror.org/03b9q7371 Hochschule Neubrandenburg Neubrandenburg University of Applied Sciences'),
(37823, 'https://ror.org/03b9s4g93', 'en', 1, 'https://ror.org/03b9s4g93 Hutchinson Community College'),
(37824, 'https://ror.org/03b9y3q37', 'pt', 1, 'https://ror.org/03b9y3q37 Sociedade Brasileira de Estudos de Cinema e Audiovisual'),
(37825, 'https://ror.org/03batkt67', 'no_lang_code', 1, 'https://ror.org/03batkt67 Arcont (Slovenia)'),
(37826, 'https://ror.org/03bavv282', 'pt', 1, 'https://ror.org/03bavv282 Associação Brasileira de Tratamentos de Superfície'),
(37827, 'https://ror.org/03bbqn881', 'de', 1, 'https://ror.org/03bbqn881 Gottfried Wilhelm Leibniz Bibliothek'),
(37828, 'https://ror.org/03bc1mz40', 'en', 1, 'https://ror.org/03bc1mz40 Ibero-American Institute Ibero-Amerikanisches Institut Instituto Ibero-Americano Patrimonio Cultural Prusiano'),
(37829, 'https://ror.org/03bchcy62', 'en', 1, 'https://ror.org/03bchcy62 Tax Justice Network'),
(37830, 'https://ror.org/03bdanr16', 'no_lang_code', 1, 'https://ror.org/03bdanr16 SuperZinco (Brazil)'),
(37831, 'https://ror.org/03bdq2a67', 'no_lang_code', 1, 'https://ror.org/03bdq2a67 Acies Bio (Slovenia)'),
(37832, 'https://ror.org/03bgteg28', 'no_lang_code', 1, 'https://ror.org/03bgteg28 Evangelical Presbyterian University College'),
(37833, 'https://ror.org/03bh3se42', 'en', 1, 'https://ror.org/03bh3se42 Spring Valley Hospital'),
(37834, 'https://ror.org/03bh7xn56', 'en', 1, 'https://ror.org/03bh7xn56 Laerdal Global Health'),
(37835, 'https://ror.org/03bjv2y17', 'en', 1, 'https://ror.org/03bjv2y17 Orlov State University'),
(37836, 'https://ror.org/03bk36k19', 'en', 1, 'https://ror.org/03bk36k19 Infectious Disease Models and Innovative Therapies'),
(37837, 'https://ror.org/03bke4038', 'es', 1, 'https://ror.org/03bke4038 Hospital general de San Fernando, San Fernando General Hospital'),
(37838, 'https://ror.org/03bpan768', 'de', 1, 'https://ror.org/03bpan768 Thüringisches Hauptstaatsarchiv Weimar'),
(37839, 'https://ror.org/03bpgs673', 'no_lang_code', 1, 'https://ror.org/03bpgs673 Linus (Norway)'),
(37840, 'https://ror.org/03bsbwd57', 'pt', 1, 'https://ror.org/03bsbwd57 Sociedade Brasileira de Biologia Celular'),
(37841, 'https://ror.org/03bxx2v05', 'no_lang_code', 1, 'https://ror.org/03bxx2v05 CHR Cerâmica Técnica (Brazil)'),
(37842, 'https://ror.org/03c1zct07', 'no', 1, 'https://ror.org/03c1zct07 Norsk LandbruksrƄdgiving'),
(37843, 'https://ror.org/03c3mm140', 'en', 1, 'https://ror.org/03c3mm140 NĆ”nfāng DĆ xuĆ© XuĆ©yuĆ n Southern University College å—ę–¹å¤§å­¦å­¦é™¢'),
(37844, 'https://ror.org/03c4e0176', 'no_lang_code', 1, 'https://ror.org/03c4e0176 Smia Gjerdeprodukter (Norway)'),
(37845, 'https://ror.org/03c4nng82', 'no_lang_code', 1, 'https://ror.org/03c4nng82 Hutton Energy (Poland)'),
(37846, 'https://ror.org/03c8hg310', 'no_lang_code', 1, 'https://ror.org/03c8hg310 Velana Living (Slovenia)'),
(37847, 'https://ror.org/03c935487', 'no', 1, 'https://ror.org/03c935487 Eyde-Nettverket'),
(37848, 'https://ror.org/03c9ncn37', 'en', 1, 'https://ror.org/03c9ncn37 Wuhan National Laboratory for Optoelectronics'),
(37849, 'https://ror.org/03ccc5z68', 'de', 1, 'https://ror.org/03ccc5z68 Evangelische Hochschule Ludwigsburg'),
(37850, 'https://ror.org/03ccj3w73', 'en', 1, 'https://ror.org/03ccj3w73 Heart Life Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć‹ć‚Šć‚†ć—ä¼š'),
(37851, 'https://ror.org/03ccpe393', 'no_lang_code', 1, 'https://ror.org/03ccpe393 BASF (Norway)'),
(37852, 'https://ror.org/03cdqv492', 'no_lang_code', 1, 'https://ror.org/03cdqv492 Timm (Norway)'),
(37853, 'https://ror.org/03cdz5d08', 'en', 1, 'https://ror.org/03cdz5d08 Quality Enhancement Research Initiative'),
(37854, 'https://ror.org/03cebfr78', 'no_lang_code', 1, 'https://ror.org/03cebfr78 Torvald Klaveness (Norway)'),
(37855, 'https://ror.org/03cek7y17', 'no_lang_code', 1, 'https://ror.org/03cek7y17 Domel (Slovenia)'),
(37856, 'https://ror.org/03cgmq069', 'no_lang_code', 1, 'https://ror.org/03cgmq069 DBV Technologies (France)'),
(37857, 'https://ror.org/03cjy1t09', 'en', 1, 'https://ror.org/03cjy1t09 Hospital general de Puerto EspaƱa Port of Spain General Hospital'),
(37858, 'https://ror.org/03cm42t62', 'en', 1, 'https://ror.org/03cm42t62 Rajarshee Chhatrapati Shahu Maharaj Government Medical College and CPR Hospital Kolhapur'),
(37859, 'https://ror.org/03cnzfb68', 'no_lang_code', 1, 'https://ror.org/03cnzfb68 LerĆøy (Norway)'),
(37860, 'https://ror.org/03cpk2k89', 'no_lang_code', 1, 'https://ror.org/03cpk2k89 Aquarius (Slovenia)'),
(37861, 'https://ror.org/03cqb5x54', 'no_lang_code', 1, 'https://ror.org/03cqb5x54 Rotogine (Brazil)'),
(37862, 'https://ror.org/03cqkrn62', 'no_lang_code', 1, 'https://ror.org/03cqkrn62 Massefabrikken'),
(37863, 'https://ror.org/03cr88393', 'no_lang_code', 1, 'https://ror.org/03cr88393 Antares EletrƓnica (Brazil)'),
(37864, 'https://ror.org/03crstk25', 'no_lang_code', 1, 'https://ror.org/03crstk25 Jomar (Norway)'),
(37865, 'https://ror.org/03crxcn36', 'en', 1, 'https://ror.org/03crxcn36 Albstadt-Sigmaringen University Hochschule Albstadt-Sigmaringen'),
(37866, 'https://ror.org/03cw78f47', 'en', 1, 'https://ror.org/03cw78f47 Instituto Latino Americano da Sepse Latin American Sepsis Institute'),
(37867, 'https://ror.org/03cwq3j60', 'en', 1, 'https://ror.org/03cwq3j60 Wilhelm Stahl Provincial Hospital'),
(37868, 'https://ror.org/03cxg0n72', 'no_lang_code', 1, 'https://ror.org/03cxg0n72 Mitsubishi Corporation (Norway)'),
(37869, 'https://ror.org/03czqdx05', 'en', 1, 'https://ror.org/03czqdx05 Bedford Provincial Hospital'),
(37870, 'https://ror.org/03d11xx07', 'no_lang_code', 1, 'https://ror.org/03d11xx07 Alfa Laval (Norway)'),
(37871, 'https://ror.org/03d1se459', 'en', 1, 'https://ror.org/03d1se459 St Cadoc''s Hospital'),
(37872, 'https://ror.org/03d3kf570', 'en', 1, 'https://ror.org/03d3kf570 Orphanet'),
(37873, 'https://ror.org/03d41qd17', 'no_lang_code', 1, 'https://ror.org/03d41qd17 OiW Process (Norway)'),
(37874, 'https://ror.org/03d436n40', 'en', 1, 'https://ror.org/03d436n40 Florida Coastal School of Law');
INSERT INTO `rors` VALUES
(37875, 'https://ror.org/03d5h2g68', 'no_lang_code', 1, 'https://ror.org/03d5h2g68 Nawaloka Hospital ą¶±ą·€ą¶½ą·ą¶š ą¶»ą·ą·„ą¶½'),
(37876, 'https://ror.org/03d6j2008', 'en', 1, 'https://ror.org/03d6j2008 Lake Superior College'),
(37877, 'https://ror.org/03d772195', 'no_lang_code', 1, 'https://ror.org/03d772195 Supra Elco (Poland)'),
(37878, 'https://ror.org/03d8xe868', 'no', 1, 'https://ror.org/03d8xe868 Oppland Fylkeskommune'),
(37879, 'https://ror.org/03d8y7214', 'en', 1, 'https://ror.org/03d8y7214 Yunnan Forestry Vocational and Technical College'),
(37880, 'https://ror.org/03d9q1m75', 'no_lang_code', 1, 'https://ror.org/03d9q1m75 Petroleum Technology Company (Norway)'),
(37881, 'https://ror.org/03dbjrt28', 'no_lang_code', 1, 'https://ror.org/03dbjrt28 Kverneland Aqua (Norway)'),
(37882, 'https://ror.org/03dbk8y32', 'no_lang_code', 1, 'https://ror.org/03dbk8y32 H. Henriksen (Norway)'),
(37883, 'https://ror.org/03dc24792', 'no_lang_code', 1, 'https://ror.org/03dc24792 Iskra Medical (Slovenia)'),
(37884, 'https://ror.org/03dcjha26', 'no_lang_code', 1, 'https://ror.org/03dcjha26 Macrolog (Brazil)'),
(37885, 'https://ror.org/03dd4nz58', 'en', 1, 'https://ror.org/03dd4nz58 Baptist Bible College'),
(37886, 'https://ror.org/03ddg4c94', 'no_lang_code', 1, 'https://ror.org/03ddg4c94 SW2 SoluƧƵes em TI (Brazil)'),
(37887, 'https://ror.org/03de1e587', 'en', 1, 'https://ror.org/03de1e587 Holland Hospital'),
(37888, 'https://ror.org/03df3zw56', 'en', 1, 'https://ror.org/03df3zw56 Midland Regional Hospital at Tullamore Ospidéal GinearÔlta Thulach Mhór'),
(37889, 'https://ror.org/03dj06y91', 'no_lang_code', 1, 'https://ror.org/03dj06y91 SnĆøhetta (Norway)'),
(37890, 'https://ror.org/03dncqh14', 'no_lang_code', 1, 'https://ror.org/03dncqh14 Ichimaru Pharcos (Japan)'),
(37891, 'https://ror.org/03dpjfc73', 'en', 1, 'https://ror.org/03dpjfc73 Amsterdam University College'),
(37892, 'https://ror.org/03dsp8w17', 'en', 1, 'https://ror.org/03dsp8w17 Union General Hospital'),
(37893, 'https://ror.org/03dwaqx98', 'no_lang_code', 1, 'https://ror.org/03dwaqx98 Femto (Brazil)'),
(37894, 'https://ror.org/03dxa6r53', 'no_lang_code', 1, 'https://ror.org/03dxa6r53 Hemnes Mekaniske Verksted (Norway)'),
(37895, 'https://ror.org/03e3wca31', 'en', 1, 'https://ror.org/03e3wca31 Canning College'),
(37896, 'https://ror.org/03e49jp29', 'no_lang_code', 1, 'https://ror.org/03e49jp29 Zakłady Urządzeń Kotłowych Stąporków (Poland)'),
(37897, 'https://ror.org/03e70fp94', 'en', 1, 'https://ror.org/03e70fp94 Oslo Medtech'),
(37898, 'https://ror.org/03e7k3562', 'en', 1, 'https://ror.org/03e7k3562 St Barnabas Hospital'),
(37899, 'https://ror.org/03e9kb581', 'no_lang_code', 1, 'https://ror.org/03e9kb581 Ferring Pharmaceuticals (United Kingdom)'),
(37900, 'https://ror.org/03ebbfh95', 'en', 1, 'https://ror.org/03ebbfh95 Fraunhofer Institute for Laser Technology Fraunhofer-Institut für Lasertechnik'),
(37901, 'https://ror.org/03ebv4744', 'en', 1, 'https://ror.org/03ebv4744 University College of the Cayman Islands'),
(37902, 'https://ror.org/03ec28972', 'en', 1, 'https://ror.org/03ec28972 Hamburg Institute for Social Research Hamburger Institut für Sozialforschung'),
(37903, 'https://ror.org/03edcef46', 'no_lang_code', 1, 'https://ror.org/03edcef46 Acquest (Brazil)'),
(37904, 'https://ror.org/03edgm225', 'en', 1, 'https://ror.org/03edgm225 Nebraska Orthopaedic Hospital'),
(37905, 'https://ror.org/03edsg024', 'en', 1, 'https://ror.org/03edsg024 Hospital Sultan Haji Ahmad Shah Sultan Haji Ahmad Shah Hospital'),
(37906, 'https://ror.org/03eem3b66', 'no_lang_code', 1, 'https://ror.org/03eem3b66 Faafu Atoll Hospital'),
(37907, 'https://ror.org/03efsge90', 'en', 1, 'https://ror.org/03efsge90 Steinbeis University Berlin Steinbeis-Hochschule Berlin'),
(37908, 'https://ror.org/03ejke973', 'no_lang_code', 1, 'https://ror.org/03ejke973 NCC (Norway)'),
(37909, 'https://ror.org/03em5rb28', 'en', 1, 'https://ror.org/03em5rb28 Nalanda Medical College and Hospital ą¤Øą¤¾ą¤²ą¤Øą„ą¤¦ą¤¾ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ और ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(37910, 'https://ror.org/03eqe9f63', 'es', 1, 'https://ror.org/03eqe9f63 Hospital Universitario de la Samaritana University Hospital of the Samaritan'),
(37911, 'https://ror.org/03es91d09', 'no_lang_code', 1, 'https://ror.org/03es91d09 Acer Novo Mesto (Slovenia)'),
(37912, 'https://ror.org/03ewzbm88', 'en', 1, 'https://ror.org/03ewzbm88 Sapporo Toho Hospital'),
(37913, 'https://ror.org/03ezm5049', 'no', 1, 'https://ror.org/03ezm5049 Tannlege Ole Christian Amundsen'),
(37914, 'https://ror.org/03f2jcq85', 'tr', 1, 'https://ror.org/03f2jcq85 Diyarbakır Gazi Yaşargil Eğitim ve Araştırma Hastanesi'),
(37915, 'https://ror.org/03f6y6166', 'en', 1, 'https://ror.org/03f6y6166 Lira Hospital'),
(37916, 'https://ror.org/03f8dte96', 'no_lang_code', 1, 'https://ror.org/03f8dte96 Onion Tecnologia (Brazil)'),
(37917, 'https://ror.org/03fatc842', 'en', 1, 'https://ror.org/03fatc842 Jose Pearson TB Hospital'),
(37918, 'https://ror.org/03fb1av13', 'no_lang_code', 1, 'https://ror.org/03fb1av13 Tomax (Norway)'),
(37919, 'https://ror.org/03fb58t45', 'en', 1, 'https://ror.org/03fb58t45 Maharishi University of Management and Technology'),
(37920, 'https://ror.org/03fbtkm67', 'no_lang_code', 1, 'https://ror.org/03fbtkm67 Prekubator (Norway)'),
(37921, 'https://ror.org/03fd44j44', 'no_lang_code', 1, 'https://ror.org/03fd44j44 Beike Biotechnology (China) åŒ—ē§‘ē”Ÿē‰©ē§‘ęŠ€'),
(37922, 'https://ror.org/03fe6f421', 'no_lang_code', 1, 'https://ror.org/03fe6f421 Brascoelma (Brazil)'),
(37923, 'https://ror.org/03fevrz39', 'no_lang_code', 1, 'https://ror.org/03fevrz39 SuperOffice (Norway)'),
(37924, 'https://ror.org/03ffv2k10', 'en', 1, 'https://ror.org/03ffv2k10 Offshore Renewable Energy Catapult'),
(37925, 'https://ror.org/03fgkm950', 'en', 1, 'https://ror.org/03fgkm950 Harcum College'),
(37926, 'https://ror.org/03fh45z28', 'en', 1, 'https://ror.org/03fh45z28 Charles Stewart Mott Foundation'),
(37927, 'https://ror.org/03fhbcz65', 'no_lang_code', 1, 'https://ror.org/03fhbcz65 Confocal Science (Japan)'),
(37928, 'https://ror.org/03fjs1746', 'no_lang_code', 1, 'https://ror.org/03fjs1746 HerbjĆørn Kolstad (Norway)'),
(37929, 'https://ror.org/03fknzz27', 'no_lang_code', 1, 'https://ror.org/03fknzz27 E-Test (Poland)'),
(37930, 'https://ror.org/03fm4pf61', 'en', 1, 'https://ror.org/03fm4pf61 Milan Vidmar Electric Power Research Institute'),
(37931, 'https://ror.org/03fmefz35', 'en', 1, 'https://ror.org/03fmefz35 Lagan Valley Hospital'),
(37932, 'https://ror.org/03fnhx680', 'no_lang_code', 1, 'https://ror.org/03fnhx680 Oshaug Metall (Norway)'),
(37933, 'https://ror.org/03fp2bh88', 'en', 1, 'https://ror.org/03fp2bh88 Mount Carmel Hospital'),
(37934, 'https://ror.org/03fpa6x12', 'no_lang_code', 1, 'https://ror.org/03fpa6x12 Oil Tools Of Norway (Norway)'),
(37935, 'https://ror.org/03fpmzv72', 'no_lang_code', 1, 'https://ror.org/03fpmzv72 Krajowa Spółka Cukrowa (Poland)'),
(37936, 'https://ror.org/03frnyk41', 'pt', 1, 'https://ror.org/03frnyk41 Associação Saúde da Família'),
(37937, 'https://ror.org/03frs5880', 'no_lang_code', 1, 'https://ror.org/03frs5880 Delprodukt (Norway)'),
(37938, 'https://ror.org/03frvp088', 'en', 1, 'https://ror.org/03frvp088 International University for Science and Technology'),
(37939, 'https://ror.org/03fs8gt32', 'no_lang_code', 1, 'https://ror.org/03fs8gt32 Plasto (Norway)'),
(37940, 'https://ror.org/03ft27t79', 'no_lang_code', 1, 'https://ror.org/03ft27t79 Advanced Materials and Technologies (Slovenia)'),
(37941, 'https://ror.org/03fvtr511', 'en', 1, 'https://ror.org/03fvtr511 Hanscom Air Force Base'),
(37942, 'https://ror.org/03fvzd757', 'en', 1, 'https://ror.org/03fvzd757 Blackpool and The Fylde College'),
(37943, 'https://ror.org/03fw3x319', 'en', 1, 'https://ror.org/03fw3x319 Frƶlunda Specialist Hospital Frƶlunda Specialistsjukhus'),
(37944, 'https://ror.org/03fwdp923', 'no_lang_code', 1, 'https://ror.org/03fwdp923 ReaQuim (Brazil)'),
(37945, 'https://ror.org/03fwf5291', 'no_lang_code', 1, 'https://ror.org/03fwf5291 Patentus (Poland)'),
(37946, 'https://ror.org/03fytj861', 'en', 1, 'https://ror.org/03fytj861 La Palma Intercommunity Hospital'),
(37947, 'https://ror.org/03g4xy420', 'no_lang_code', 1, 'https://ror.org/03g4xy420 IBSS BIOMED (Poland)'),
(37948, 'https://ror.org/03g6dfe56', 'en', 1, 'https://ror.org/03g6dfe56 Garden Organic'),
(37949, 'https://ror.org/03g7zhh97', 'en', 1, 'https://ror.org/03g7zhh97 Uist and Barra Hospital'),
(37950, 'https://ror.org/03g87he71', 'en', 1, 'https://ror.org/03g87he71 Division of Environmental Biology'),
(37951, 'https://ror.org/03gd0pk10', 'no_lang_code', 1, 'https://ror.org/03gd0pk10 Yashoda Hospital'),
(37952, 'https://ror.org/03gde5b77', 'no_lang_code', 1, 'https://ror.org/03gde5b77 IOR Chemco (Norway)'),
(37953, 'https://ror.org/03gezv924', 'no_lang_code', 1, 'https://ror.org/03gezv924 Intel (Taiwan)'),
(37954, 'https://ror.org/03ggx6m14', 'pt', 1, 'https://ror.org/03ggx6m14 Muncipal de Bom Jesus do Itabapoana'),
(37955, 'https://ror.org/03gj2cq31', 'en', 1, 'https://ror.org/03gj2cq31 Max Planck Institute for Tax Law and Public Finance Max-Planck-Institut für Steuerrecht und Ɩffentliche Finanzen'),
(37956, 'https://ror.org/03gm8q023', 'no_lang_code', 1, 'https://ror.org/03gm8q023 Vizrt (Norway)'),
(37957, 'https://ror.org/03gt4py31', 'no_lang_code', 1, 'https://ror.org/03gt4py31 Smartbrain (Norway)'),
(37958, 'https://ror.org/03gth6e91', 'en', 1, 'https://ror.org/03gth6e91 OspidƩal Ollscoile Chiarraƭ University Hospital Kerry'),
(37959, 'https://ror.org/03gw23n83', 'no_lang_code', 1, 'https://ror.org/03gw23n83 Górnośląski Park Przemysłowy (Poland)'),
(37960, 'https://ror.org/03gwhmn95', 'en', 1, 'https://ror.org/03gwhmn95 Institute of Genetics'),
(37961, 'https://ror.org/03gxy9f87', 'en', 1, 'https://ror.org/03gxy9f87 Chengdu Fifth People''s Hospital'),
(37962, 'https://ror.org/03gyd9q58', 'no_lang_code', 1, 'https://ror.org/03gyd9q58 Annoroad Gene Technology (China)'),
(37963, 'https://ror.org/03h1e6k67', 'en', 1, 'https://ror.org/03h1e6k67 Trichur Heart Hospital'),
(37964, 'https://ror.org/03h2ryz41', 'no_lang_code', 1, 'https://ror.org/03h2ryz41 Adresseavisen (Norway)'),
(37965, 'https://ror.org/03h4k9g13', 'no_lang_code', 1, 'https://ror.org/03h4k9g13 Aqua Bio Technology (Norway)'),
(37966, 'https://ror.org/03h4tn103', 'en', 1, 'https://ror.org/03h4tn103 Arkansas Public Service Commission'),
(37967, 'https://ror.org/03h58v266', 'no_lang_code', 1, 'https://ror.org/03h58v266 CellCura (Norway)'),
(37968, 'https://ror.org/03h61ra63', 'en', 1, 'https://ror.org/03h61ra63 Fraunhofer Center for International Management and Knowledge Economy Fraunhofer-Zentrum für Internationales Management und Wissensökonomie'),
(37969, 'https://ror.org/03h66a821', 'no_lang_code', 1, 'https://ror.org/03h66a821 ADTS (Brazil)'),
(37970, 'https://ror.org/03h68ys54', 'no_lang_code', 1, 'https://ror.org/03h68ys54 Kongsberg Automotive (Poland)'),
(37971, 'https://ror.org/03h6f8g89', 'no_lang_code', 1, 'https://ror.org/03h6f8g89 Seagarden (Norway)'),
(37972, 'https://ror.org/03h6wcn09', 'no_lang_code', 1, 'https://ror.org/03h6wcn09 Smerud Medical Research (Norway)'),
(37973, 'https://ror.org/03h7kv823', 'en', 1, 'https://ror.org/03h7kv823 Institute for Sustainable Innovative Technologies'),
(37974, 'https://ror.org/03hb33c79', 'en', 1, 'https://ror.org/03hb33c79 Gansu Provincial Cancer Hospital Gansu Provincial Academic Instiute for Medical Research ē”˜č‚ƒēœåŒ»å­¦ē§‘å­¦ē ”ē©¶é™¢'),
(37975, 'https://ror.org/03hc5gb19', 'no_lang_code', 1, 'https://ror.org/03hc5gb19 American Industrial Partners (United States)'),
(37976, 'https://ror.org/03hf7ar06', 'no_lang_code', 1, 'https://ror.org/03hf7ar06 VIS Systems (Poland)'),
(37977, 'https://ror.org/03hf9pe15', 'en', 1, 'https://ror.org/03hf9pe15 RĆøyken Municipality'),
(37978, 'https://ror.org/03hjnd594', 'no_lang_code', 1, 'https://ror.org/03hjnd594 San’an Optoelectronics (China)'),
(37979, 'https://ror.org/03hjp7620', 'en', 1, 'https://ror.org/03hjp7620 Central Party School of the Communist Party of China äø­å…±äø­å¤®å…šę ”'),
(37980, 'https://ror.org/03hjz0g77', 'no_lang_code', 1, 'https://ror.org/03hjz0g77 Applied Petroleum Technology (Norway)'),
(37981, 'https://ror.org/03hpex020', 'en', 1, 'https://ror.org/03hpex020 Unity Fellowship Church Movement'),
(37982, 'https://ror.org/03hqca282', 'en', 1, 'https://ror.org/03hqca282 Norwegian Association for Development Research'),
(37983, 'https://ror.org/03hrj0y40', 'no_lang_code', 1, 'https://ror.org/03hrj0y40 Syslab International (Norway)'),
(37984, 'https://ror.org/03hsyk684', 'no_lang_code', 1, 'https://ror.org/03hsyk684 Nextera (Norway)'),
(37985, 'https://ror.org/03ht2bz32', 'en', 1, 'https://ror.org/03ht2bz32 Institute of Medical Sciences and Sum Hospital'),
(37986, 'https://ror.org/03hw14970', 'no_lang_code', 1, 'https://ror.org/03hw14970 Synlab (Germany)'),
(37987, 'https://ror.org/03hw2sw66', 'en', 1, 'https://ror.org/03hw2sw66 Sociedade de Botânica de São Paulo São Paulo Botanical Society'),
(37988, 'https://ror.org/03hwy2z57', 'en', 1, 'https://ror.org/03hwy2z57 Paul University Awka'),
(37989, 'https://ror.org/03hxbk195', 'de', 1, 'https://ror.org/03hxbk195 Kliniken der Stadt Kƶln'),
(37990, 'https://ror.org/03hy7r126', 'no_lang_code', 1, 'https://ror.org/03hy7r126 Warm Systems (Norway)'),
(37991, 'https://ror.org/03hzkp562', 'de', 1, 'https://ror.org/03hzkp562 Academy of Visual Arts Leipzig Hochschule für Grafik und Buchkunst Leipzig'),
(37992, 'https://ror.org/03j2t9x72', 'no_lang_code', 1, 'https://ror.org/03j2t9x72 Salto (Norway)'),
(37993, 'https://ror.org/03j3ybc16', 'no_lang_code', 1, 'https://ror.org/03j3ybc16 Vedde (Norway)'),
(37994, 'https://ror.org/03j4kg535', 'en', 1, 'https://ror.org/03j4kg535 Gateway Technical College'),
(37995, 'https://ror.org/03j4kxk06', 'no_lang_code', 1, 'https://ror.org/03j4kxk06 Enovate (Norway)'),
(37996, 'https://ror.org/03j5ebv52', 'en', 1, 'https://ror.org/03j5ebv52 Zero Emissions Resource Organisation'),
(37997, 'https://ror.org/03j5m6417', 'no_lang_code', 1, 'https://ror.org/03j5m6417 Vista Analyse (Norway)'),
(37998, 'https://ror.org/03j6dmn04', 'no_lang_code', 1, 'https://ror.org/03j6dmn04 MSP (Poland)'),
(37999, 'https://ror.org/03j7efk91', 'en', 1, 'https://ror.org/03j7efk91 New Chemical Syntheses Institute'),
(38000, 'https://ror.org/03j8tnm47', 'en', 1, 'https://ror.org/03j8tnm47 Centre fédéral d''éducation technologique celso suckow da fonseca Centro Federal de Educação Tecnológica Celso Suckow da Fonseca Federal Center for Technological Education Celso Suckow da Fonseca'),
(38001, 'https://ror.org/03j93xk55', 'no_lang_code', 1, 'https://ror.org/03j93xk55 Zhejiang Hisun Pharmaceutical (China)'),
(38002, 'https://ror.org/03jbfte74', 'no_lang_code', 1, 'https://ror.org/03jbfte74 Restrack (Norway)'),
(38003, 'https://ror.org/03jc49e50', 'en', 1, 'https://ror.org/03jc49e50 Darshan Dental College and Hospital'),
(38004, 'https://ror.org/03jchgp61', 'no_lang_code', 1, 'https://ror.org/03jchgp61 Impol (Slovenia)'),
(38005, 'https://ror.org/03jexcz37', 'en', 1, 'https://ror.org/03jexcz37 Central Institute of Technology'),
(38006, 'https://ror.org/03jkgmn26', 'no_lang_code', 1, 'https://ror.org/03jkgmn26 PUH Team (Slovenia)'),
(38007, 'https://ror.org/03jm3ya95', 'en', 1, 'https://ror.org/03jm3ya95 Oroville Hospital'),
(38008, 'https://ror.org/03jnqax33', 'no_lang_code', 1, 'https://ror.org/03jnqax33 TSO Logic (Canada)'),
(38009, 'https://ror.org/03jp77920', 'no_lang_code', 1, 'https://ror.org/03jp77920 PBS (Poland)'),
(38010, 'https://ror.org/03jpq8k18', 'no_lang_code', 1, 'https://ror.org/03jpq8k18 Wireless Instrumentation Systems (Norway)'),
(38011, 'https://ror.org/03jpsgw63', 'no_lang_code', 1, 'https://ror.org/03jpsgw63 Cytovation (Norway)'),
(38012, 'https://ror.org/03jpvv707', 'no_lang_code', 1, 'https://ror.org/03jpvv707 AM Technologies (Poland)'),
(38013, 'https://ror.org/03jv3zx29', 'en', 1, 'https://ror.org/03jv3zx29 Foundation of Cardiac Surgery Development'),
(38014, 'https://ror.org/03jvj6959', 'en', 1, 'https://ror.org/03jvj6959 Vanivilas Women and Children Hospital'),
(38015, 'https://ror.org/03jx3ep44', 'no', 1, 'https://ror.org/03jx3ep44 Church Educational Centre Kirkelig Pedagogisk Senter'),
(38016, 'https://ror.org/03jxb9w83', 'no', 1, 'https://ror.org/03jxb9w83 Norwegian Seafood Federation SjĆømat Norge'),
(38017, 'https://ror.org/03jygq783', 'en', 1, 'https://ror.org/03jygq783 Carroll Hospital'),
(38018, 'https://ror.org/03k18wv31', 'no_lang_code', 1, 'https://ror.org/03k18wv31 Instituto Internacional de Ecologia (Brazil)'),
(38019, 'https://ror.org/03k1p5343', 'no_lang_code', 1, 'https://ror.org/03k1p5343 Pit Radwar (Poland)'),
(38020, 'https://ror.org/03k31r283', 'no_lang_code', 1, 'https://ror.org/03k31r283 Specodlew (Poland)'),
(38021, 'https://ror.org/03k3gy769', 'en', 1, 'https://ror.org/03k3gy769 Itojo Hospital'),
(38022, 'https://ror.org/03k83h416', 'no_lang_code', 1, 'https://ror.org/03k83h416 Compass (Brazil)'),
(38023, 'https://ror.org/03kcw4w74', 'en', 1, 'https://ror.org/03kcw4w74 Brazilian Society of Computational and Applied Mathematics Sociedade Brasileira de MatemƔtica Aplicada e Computacional'),
(38024, 'https://ror.org/03kd6q497', 'no_lang_code', 1, 'https://ror.org/03kd6q497 Completion Technology Resources (Norway)'),
(38025, 'https://ror.org/03kfqmz83', 'en', 1, 'https://ror.org/03kfqmz83 University of Technology and Management UniversitĆ© de technologie et management ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(38026, 'https://ror.org/03kgran92', 'no_lang_code', 1, 'https://ror.org/03kgran92 Nexans (Norway)'),
(38027, 'https://ror.org/03khqdg35', 'es', 1, 'https://ror.org/03khqdg35 Universidad de Zamboanga'),
(38028, 'https://ror.org/03kjtb134', 'no_lang_code', 1, 'https://ror.org/03kjtb134 Tsan Yuk Hospital č“Šč‚²é†«é™¢'),
(38029, 'https://ror.org/03kk5qq41', 'no_lang_code', 1, 'https://ror.org/03kk5qq41 WellSeek (United States)'),
(38030, 'https://ror.org/03ks3nw90', 'pt', 1, 'https://ror.org/03ks3nw90 Escola da Cidade'),
(38031, 'https://ror.org/03ktys708', 'no', 1, 'https://ror.org/03ktys708 Realistforeningen'),
(38032, 'https://ror.org/03kvr9360', 'en', 1, 'https://ror.org/03kvr9360 181st Hospital of Chinese People''s Liberation Army'),
(38033, 'https://ror.org/03kwc4219', 'en', 1, 'https://ror.org/03kwc4219 Jersey Community Hospital'),
(38034, 'https://ror.org/03kwtfg48', 'no', 1, 'https://ror.org/03kwtfg48 Foreningen GranittRock'),
(38035, 'https://ror.org/03kxws612', 'no_lang_code', 1, 'https://ror.org/03kxws612 Medema (Norway)'),
(38036, 'https://ror.org/03ky2vw43', 'no_lang_code', 1, 'https://ror.org/03ky2vw43 Topro (Norway)'),
(38037, 'https://ror.org/03m0r4h89', 'no_lang_code', 1, 'https://ror.org/03m0r4h89 Desun Hospital & Heart Institute'),
(38038, 'https://ror.org/03m1j9m44', 'pt', 1, 'https://ror.org/03m1j9m44 Faculdade SĆ£o Leopoldo Mandic'),
(38039, 'https://ror.org/03m2axv35', 'en', 1, 'https://ror.org/03m2axv35 Finnish Jazz & Pop Archive'),
(38040, 'https://ror.org/03m340337', 'en', 1, 'https://ror.org/03m340337 Tamil Nadu Government Multi Super Speciality Hospital ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ புதிய ą®šą®ŸąÆą®Ÿą®®ą®©ąÆą®±ą®®ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ தலைமை ą®šąÆ†ą®Æą®²ą®• ą®µą®³ą®¾ą®•ą®®ąÆ'),
(38041, 'https://ror.org/03m3pb051', 'no_lang_code', 1, 'https://ror.org/03m3pb051 Scenario (Brazil)'),
(38042, 'https://ror.org/03m6hxg23', 'pt', 1, 'https://ror.org/03m6hxg23 Sociedade Brasileira de CatƔlise'),
(38043, 'https://ror.org/03m6mr356', 'no_lang_code', 1, 'https://ror.org/03m6mr356 Metafocus (Norway)'),
(38044, 'https://ror.org/03ma9wk70', 'no_lang_code', 1, 'https://ror.org/03ma9wk70 AstraZeneca (India)'),
(38045, 'https://ror.org/03mahcv92', 'en', 1, 'https://ror.org/03mahcv92 LIKES – Foundation for Sport and Health Sciences'),
(38046, 'https://ror.org/03mg4e956', 'no_lang_code', 1, 'https://ror.org/03mg4e956 Mahle (Poland)'),
(38047, 'https://ror.org/03mh5ac32', 'no_lang_code', 1, 'https://ror.org/03mh5ac32 Precifica PreƧo Inteligente (Brazil)'),
(38048, 'https://ror.org/03mhtag13', 'pt', 1, 'https://ror.org/03mhtag13 Fundação Faculdade de Medicina'),
(38049, 'https://ror.org/03mned672', 'en', 1, 'https://ror.org/03mned672 Marienfelde Refugee Center Museum'),
(38050, 'https://ror.org/03mp7t709', 'no_lang_code', 1, 'https://ror.org/03mp7t709 Vitrogen (Brazil)'),
(38051, 'https://ror.org/03mpgr607', 'no_lang_code', 1, 'https://ror.org/03mpgr607 Value Frontier (Japan)'),
(38052, 'https://ror.org/03mpynm22', 'it', 1, 'https://ror.org/03mpynm22 Ospedale Pesenti Fenaroli'),
(38053, 'https://ror.org/03mq2bd64', 'en', 1, 'https://ror.org/03mq2bd64 Carilion New River Valley Medical Center'),
(38054, 'https://ror.org/03mxktp47', 'fr', 1, 'https://ror.org/03mxktp47 Institut de Biologie de l''Ɖcole Normale SupĆ©rieure'),
(38055, 'https://ror.org/03mznce35', 'de', 1, 'https://ror.org/03mznce35 RegierungsprƤsidium Stuttgart'),
(38056, 'https://ror.org/03n1tvb36', 'en', 1, 'https://ror.org/03n1tvb36 Humanitas Mater Domini'),
(38057, 'https://ror.org/03n2mgz21', 'pt', 1, 'https://ror.org/03n2mgz21 Centro de Estudos em Psicologia da SaĆŗde'),
(38058, 'https://ror.org/03n3hc844', 'no_lang_code', 1, 'https://ror.org/03n3hc844 Safran (Brazil)'),
(38059, 'https://ror.org/03n3nz506', 'no_lang_code', 1, 'https://ror.org/03n3nz506 General Motors (Poland)'),
(38060, 'https://ror.org/03n3tgc33', 'no_lang_code', 1, 'https://ror.org/03n3tgc33 Tecnozinco Tratamento Superficial (Brazil)'),
(38061, 'https://ror.org/03n439y66', 'en', 1, 'https://ror.org/03n439y66 Funabashi Orthopaedic Hospital'),
(38062, 'https://ror.org/03n4tsy42', 'no_lang_code', 1, 'https://ror.org/03n4tsy42 GOE-IP (Norway)'),
(38063, 'https://ror.org/03n53gr48', 'no_lang_code', 1, 'https://ror.org/03n53gr48 Human Longevity (United States)'),
(38064, 'https://ror.org/03n6dw312', 'no_lang_code', 1, 'https://ror.org/03n6dw312 German Plastics Center Süddeutsches Kunststoff-Zentrum (Germany)'),
(38065, 'https://ror.org/03n73vq73', 'en', 1, 'https://ror.org/03n73vq73 Fourth Paradigm Institute'),
(38066, 'https://ror.org/03nask903', 'en', 1, 'https://ror.org/03nask903 Bay Park Community Hospital'),
(38067, 'https://ror.org/03naspe88', 'en', 1, 'https://ror.org/03naspe88 Ali Osman Sonmez Oncology Hospital'),
(38068, 'https://ror.org/03neqmv05', 'no_lang_code', 1, 'https://ror.org/03neqmv05 LGC Standards (Poland)'),
(38069, 'https://ror.org/03ngy3w26', 'no_lang_code', 1, 'https://ror.org/03ngy3w26 Grove Knutsen (Norway)'),
(38070, 'https://ror.org/03nhtqr81', 'en', 1, 'https://ror.org/03nhtqr81 Kibuli Hospital'),
(38071, 'https://ror.org/03njstw94', 'no_lang_code', 1, 'https://ror.org/03njstw94 VISIONBR Tecnologia e Informatica (Brazil)'),
(38072, 'https://ror.org/03nk70a85', 'en', 1, 'https://ror.org/03nk70a85 Kangan Institute'),
(38073, 'https://ror.org/03nn1bn76', 'en', 1, 'https://ror.org/03nn1bn76 Associação Nacional dos Programas de Pós-graduação em Comunicação Brazilian National Association of Graduate Programs in Communication'),
(38074, 'https://ror.org/03nt90n09', 'sl', 1, 'https://ror.org/03nt90n09 RogaŔka Medical Centre'),
(38075, 'https://ror.org/03nw30958', 'en', 1, 'https://ror.org/03nw30958 Dr. Mehta''s Children''s Hospital'),
(38076, 'https://ror.org/03nwfz403', 'no_lang_code', 1, 'https://ror.org/03nwfz403 Krka (Slovenia)'),
(38077, 'https://ror.org/03nyhx379', 'no_lang_code', 1, 'https://ror.org/03nyhx379 General Hospital Ernakulam'),
(38078, 'https://ror.org/03nyxmy82', 'no_lang_code', 1, 'https://ror.org/03nyxmy82 Sumitomo Chemical (Japan) 住友化学'),
(38079, 'https://ror.org/03nznv947', 'no_lang_code', 1, 'https://ror.org/03nznv947 Adaptive Intelligent Systems (United States)'),
(38080, 'https://ror.org/03p184w47', 'en', 1, 'https://ror.org/03p184w47 People''s Hospital of Bishan District'),
(38081, 'https://ror.org/03p2ng128', 'no_lang_code', 1, 'https://ror.org/03p2ng128 Cheddikulam Hospital'),
(38082, 'https://ror.org/03p37kd86', 'en', 1, 'https://ror.org/03p37kd86 Midnapore Medical College and Hospital'),
(38083, 'https://ror.org/03p5jz112', 'en', 1, 'https://ror.org/03p5jz112 Federal University Lafia'),
(38084, 'https://ror.org/03p5ygk36', 'en', 1, 'https://ror.org/03p5ygk36 Lishui Maternity and Child Health Care Hospital'),
(38085, 'https://ror.org/03p7abc05', 'fr', 1, 'https://ror.org/03p7abc05 Association pour la Recherche au CollƩgial'),
(38086, 'https://ror.org/03pda7361', 'no', 1, 'https://ror.org/03pda7361 Voss Kommune'),
(38087, 'https://ror.org/03pehnk14', 'no_lang_code', 1, 'https://ror.org/03pehnk14 A&A Biotechnology (Poland)'),
(38088, 'https://ror.org/03pephy40', 'pt', 1, 'https://ror.org/03pephy40 Mosteiro de SĆ£o Bento, SĆ£o Bento Monastery'),
(38089, 'https://ror.org/03pf0r360', 'no_lang_code', 1, 'https://ror.org/03pf0r360 Br. Birkeland (Norway)'),
(38090, 'https://ror.org/03pf0yc39', 'en', 1, 'https://ror.org/03pf0yc39 Confederation College'),
(38091, 'https://ror.org/03pgmt571', 'no_lang_code', 1, 'https://ror.org/03pgmt571 Cflow Fish Handling (Norway)'),
(38092, 'https://ror.org/03pgv3k36', 'en', 1, 'https://ror.org/03pgv3k36 Trondheim-Fjord Rivers'),
(38093, 'https://ror.org/03pkxjx53', 'no_lang_code', 1, 'https://ror.org/03pkxjx53 Steinsvik (Norway)'),
(38094, 'https://ror.org/03pmg8447', 'en', 1, 'https://ror.org/03pmg8447 Los Angeles City College'),
(38095, 'https://ror.org/03pp54d63', 'no_lang_code', 1, 'https://ror.org/03pp54d63 GKN (Norway)'),
(38096, 'https://ror.org/03ppkyp25', 'en', 1, 'https://ror.org/03ppkyp25 Center for Studies of Holocaust and Religious Minorities'),
(38097, 'https://ror.org/03pwyy961', 'en', 1, 'https://ror.org/03pwyy961 Fraunhofer Institute for Manufacturing Technology and Advanced Materials Fraunhofer-Institut für Fertigungstechnik und Angewandte Materialforschung'),
(38098, 'https://ror.org/03pxk9k03', 'no_lang_code', 1, 'https://ror.org/03pxk9k03 Savatech (Slovenia)'),
(38099, 'https://ror.org/03py58635', 'en', 1, 'https://ror.org/03py58635 Global Public Policy Institute'),
(38100, 'https://ror.org/03q150v29', 'no_lang_code', 1, 'https://ror.org/03q150v29 DirectLight (Brazil)'),
(38101, 'https://ror.org/03q1w1s93', 'en', 1, 'https://ror.org/03q1w1s93 Colorectal Surgical Associates'),
(38102, 'https://ror.org/03q27nw68', 'no_lang_code', 1, 'https://ror.org/03q27nw68 Kirchhoff (Poland)'),
(38103, 'https://ror.org/03q2tdj19', 'no_lang_code', 1, 'https://ror.org/03q2tdj19 OncoArendi Therapeutics (Poland)'),
(38104, 'https://ror.org/03q52r448', 'no_lang_code', 1, 'https://ror.org/03q52r448 Offshore Simulator Centre (Norway)'),
(38105, 'https://ror.org/03q53r674', 'no_lang_code', 1, 'https://ror.org/03q53r674 Victoria Hospital'),
(38106, 'https://ror.org/03q6hax08', 'en', 1, 'https://ror.org/03q6hax08 St. Helena Hospital'),
(38107, 'https://ror.org/03q9tge24', 'en', 1, 'https://ror.org/03q9tge24 Sai Nath University'),
(38108, 'https://ror.org/03qa8qv52', 'en', 1, 'https://ror.org/03qa8qv52 Dr. H. Gordon Roberts Hospital'),
(38109, 'https://ror.org/03qatc504', 'no_lang_code', 1, 'https://ror.org/03qatc504 Krzysztof Kucharczyk Techniki Elektroforetyczne (Poland)'),
(38110, 'https://ror.org/03qe0g959', 'sl', 1, 'https://ror.org/03qe0g959 Cosylab'),
(38111, 'https://ror.org/03qf55f50', 'no_lang_code', 1, 'https://ror.org/03qf55f50 Digital Insight (Norway)'),
(38112, 'https://ror.org/03qg29w70', 'no_lang_code', 1, 'https://ror.org/03qg29w70 Jastrzębska Spółka Węglowa (Poland)'),
(38113, 'https://ror.org/03qg3qz10', 'no', 1, 'https://ror.org/03qg3qz10 Vestskog'),
(38114, 'https://ror.org/03qkdhn31', 'no_lang_code', 1, 'https://ror.org/03qkdhn31 Lars (Poland)'),
(38115, 'https://ror.org/03qm2cd43', 'no_lang_code', 1, 'https://ror.org/03qm2cd43 EnergiUnion (Norway)'),
(38116, 'https://ror.org/03qmwet62', 'sl', 1, 'https://ror.org/03qmwet62 Ekonomski InŔtitut'),
(38117, 'https://ror.org/03qng6g45', 'en', 1, 'https://ror.org/03qng6g45 Norwegian Farmers'' Union'),
(38118, 'https://ror.org/03qp5np35', 'en', 1, 'https://ror.org/03qp5np35 Bridgwater College'),
(38119, 'https://ror.org/03qpxp676', 'no_lang_code', 1, 'https://ror.org/03qpxp676 Norway Well Solutions'),
(38120, 'https://ror.org/03qv32r22', 'no_lang_code', 1, 'https://ror.org/03qv32r22 RC ConstruƧƵes (Brazil)'),
(38121, 'https://ror.org/03qve6z66', 'en', 1, 'https://ror.org/03qve6z66 St Lucy''s Hospital'),
(38122, 'https://ror.org/03qw5kx45', 'pt', 1, 'https://ror.org/03qw5kx45 Santa Casa de Misericórdia de São Carlos'),
(38123, 'https://ror.org/03r296s11', 'no', 1, 'https://ror.org/03r296s11 UllevƄl Sykehusapotek'),
(38124, 'https://ror.org/03r400k37', 'en', 1, 'https://ror.org/03r400k37 Frank Phillips College'),
(38125, 'https://ror.org/03r4az639', 'en', 1, 'https://ror.org/03r4az639 Sixth Affiliated Hospital of Xinjiang Medical University'),
(38126, 'https://ror.org/03r6wjz53', 'pt', 1, 'https://ror.org/03r6wjz53 Secretaria da Educação'),
(38127, 'https://ror.org/03r8cvf94', 'no_lang_code', 1, 'https://ror.org/03r8cvf94 STATinMED (United States)'),
(38128, 'https://ror.org/03r8nx235', 'en', 1, 'https://ror.org/03r8nx235 Albert B. Chandler Hospital'),
(38129, 'https://ror.org/03r9gvk70', 'en', 1, 'https://ror.org/03r9gvk70 Kalongo Hospital'),
(38130, 'https://ror.org/03r9wk794', 'en', 1, 'https://ror.org/03r9wk794 Kayts Hospital'),
(38131, 'https://ror.org/03rad7938', 'no_lang_code', 1, 'https://ror.org/03rad7938 Vest i Havet (Norway)'),
(38132, 'https://ror.org/03rcgd081', 'no_lang_code', 1, 'https://ror.org/03rcgd081 Pharmaq (Norway)'),
(38133, 'https://ror.org/03rcrwp92', 'en', 1, 'https://ror.org/03rcrwp92 South Okanagan General Hospital'),
(38134, 'https://ror.org/03rdeqz85', 'no_lang_code', 1, 'https://ror.org/03rdeqz85 Norsk Automatisering (Norway)'),
(38135, 'https://ror.org/03rdmxv04', 'no_lang_code', 1, 'https://ror.org/03rdmxv04 Guolian Futures (China)'),
(38136, 'https://ror.org/03re5nh85', 'pt', 1, 'https://ror.org/03re5nh85 Sociedade Brasileira de FĆ­sica'),
(38137, 'https://ror.org/03rfk3a08', 'de', 1, 'https://ror.org/03rfk3a08 St. Vincenz-Krankenhaus Limburg'),
(38138, 'https://ror.org/03rgdaq32', 'no_lang_code', 1, 'https://ror.org/03rgdaq32 Norsafe (Norway)'),
(38139, 'https://ror.org/03rhsnv81', 'en', 1, 'https://ror.org/03rhsnv81 Hippocrateon Private Hospital'),
(38140, 'https://ror.org/03rk9kh93', 'en', 1, 'https://ror.org/03rk9kh93 Summerlin Hospital Medical Center'),
(38141, 'https://ror.org/03rkmps36', 'en', 1, 'https://ror.org/03rkmps36 Berlin School of Economics and Law Hochschule für Wirtschaft und Recht'),
(38142, 'https://ror.org/03rm5rm15', 'en', 1, 'https://ror.org/03rm5rm15 Settlers Hospital'),
(38143, 'https://ror.org/03rq35s79', 'no_lang_code', 1, 'https://ror.org/03rq35s79 Guangzhou Electronic Technology (China) äø­ē§‘é™¢å¹æå·žē”µå­ęŠ€ęœÆęœ‰é™å…¬åø'),
(38144, 'https://ror.org/03rrfz230', 'pt', 1, 'https://ror.org/03rrfz230 Empresa de Pesquisa AgropecuƔria do Estado do Rio de Janeiro'),
(38145, 'https://ror.org/03rsw7n31', 'en', 1, 'https://ror.org/03rsw7n31 Davao Doctors Hospital'),
(38146, 'https://ror.org/03rwraz38', 'no_lang_code', 1, 'https://ror.org/03rwraz38 Baader Food Processing Machinery (Norway)'),
(38147, 'https://ror.org/03s204r94', 'no_lang_code', 1, 'https://ror.org/03s204r94 Pluristem Therapeutics (Israel)'),
(38148, 'https://ror.org/03s4f5949', 'no_lang_code', 1, 'https://ror.org/03s4f5949 Techni (Norway)'),
(38149, 'https://ror.org/03s6gep62', 'no_lang_code', 1, 'https://ror.org/03s6gep62 Ogrody Dankiewicz (Poland)'),
(38150, 'https://ror.org/03s6yf189', 'no_lang_code', 1, 'https://ror.org/03s6yf189 Nammo (Norway)'),
(38151, 'https://ror.org/03s7c3y50', 'no_lang_code', 1, 'https://ror.org/03s7c3y50 Przedsiębiorstwo Badań Geofizycznych'),
(38152, 'https://ror.org/03s8epn20', 'en', 1, 'https://ror.org/03s8epn20 Aerospace Research Institute of Materials and Processing Technology čˆŖå¤©ęę–™åŠå·„č‰ŗē ”ē©¶ę‰€'),
(38153, 'https://ror.org/03sb1fv32', 'no_lang_code', 1, 'https://ror.org/03sb1fv32 Cupron (Israel)'),
(38154, 'https://ror.org/03sb6qc51', 'no_lang_code', 1, 'https://ror.org/03sb6qc51 BrĆødrene Dahl (Norway)'),
(38155, 'https://ror.org/03sb9qx96', 'no_lang_code', 1, 'https://ror.org/03sb9qx96 Ecotone (Norway)'),
(38156, 'https://ror.org/03sd8nm03', 'en', 1, 'https://ror.org/03sd8nm03 Cefn Coed Hospital'),
(38157, 'https://ror.org/03sdprd87', 'en', 1, 'https://ror.org/03sdprd87 Quirino State University'),
(38158, 'https://ror.org/03sdvby86', 'no_lang_code', 1, 'https://ror.org/03sdvby86 Bio&Green (Brazil)'),
(38159, 'https://ror.org/03se59c70', 'no_lang_code', 1, 'https://ror.org/03se59c70 NRK (Norway)'),
(38160, 'https://ror.org/03se7gq11', 'no_lang_code', 1, 'https://ror.org/03se7gq11 Subhydro (Norway)'),
(38161, 'https://ror.org/03sffv110', 'en', 1, 'https://ror.org/03sffv110 Kagando Hospital'),
(38162, 'https://ror.org/03smr8g19', 'no_lang_code', 1, 'https://ror.org/03smr8g19 Thomson Reuters (Brazil)'),
(38163, 'https://ror.org/03snt1857', 'en', 1, 'https://ror.org/03snt1857 A.M. Obukhov Institute of Atmospheric Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики атмосферы им. А.М. ŠžŠ±ŃƒŃ…Š¾Š²Š° Российской акаГемии наук'),
(38164, 'https://ror.org/03ss19281', 'no', 1, 'https://ror.org/03ss19281 Klepp Kommune'),
(38165, 'https://ror.org/03sss6f31', 'no_lang_code', 1, 'https://ror.org/03sss6f31 Thales (Brazil)'),
(38166, 'https://ror.org/03st26d34', 'no_lang_code', 1, 'https://ror.org/03st26d34 Opto EletrƓnica (Brazil)'),
(38167, 'https://ror.org/03svm3p52', 'no', 1, 'https://ror.org/03svm3p52 VitenWahl Andreas Wahl'),
(38168, 'https://ror.org/03sy52r18', 'en', 1, 'https://ror.org/03sy52r18 HƓpital Chinois de MontrƩal, Montreal Chinese Hospital'),
(38169, 'https://ror.org/03sya6q88', 'no_lang_code', 1, 'https://ror.org/03sya6q88 Uskom (Poland)'),
(38170, 'https://ror.org/03sygwm20', 'en', 1, 'https://ror.org/03sygwm20 Emilio Aguinaldo College Kolehiyong Emilio Aguinaldo'),
(38171, 'https://ror.org/03syp5w68', 'en', 1, 'https://ror.org/03syp5w68 Zefat Academic College'),
(38172, 'https://ror.org/03sz7ps56', 'no_lang_code', 1, 'https://ror.org/03sz7ps56 Zivko Aeronautics (United States)'),
(38173, 'https://ror.org/03t1qsw88', 'en', 1, 'https://ror.org/03t1qsw88 Arad County Clinical Hospital'),
(38174, 'https://ror.org/03t3p6f87', 'no', 1, 'https://ror.org/03t3p6f87 Haraldsplass Diakonale Sykehus'),
(38175, 'https://ror.org/03t3x0x69', 'no', 1, 'https://ror.org/03t3x0x69 Norsk Sosiologforening'),
(38176, 'https://ror.org/03t4eaf83', 'no_lang_code', 1, 'https://ror.org/03t4eaf83 Forristall Ocean Engineering (United States)'),
(38177, 'https://ror.org/03t6b8n75', 'no_lang_code', 1, 'https://ror.org/03t6b8n75 Institute of Integrated Clinical Research (Brazil) Instituto de Pesquisa ClĆ­nica Integrada Ltda'),
(38178, 'https://ror.org/03t6bjv67', 'en', 1, 'https://ror.org/03t6bjv67 Hillsborough Hospital HƓpital hillsborough'),
(38179, 'https://ror.org/03t6hvd19', 'no', 1, 'https://ror.org/03t6hvd19 Suldal Kommune'),
(38180, 'https://ror.org/03t6npk27', 'en', 1, 'https://ror.org/03t6npk27 Old Port of Montreal Corporation SociƩtƩ du Vieux-Port de MontrƩal'),
(38181, 'https://ror.org/03t9p8264', 'no_lang_code', 1, 'https://ror.org/03t9p8264 Scandinavian Business Seating (Norway)'),
(38182, 'https://ror.org/03ta1q534', 'en', 1, 'https://ror.org/03ta1q534 Panti Rapih Hospital Rumah Sakit Umum Panti Rapih'),
(38183, 'https://ror.org/03ta7wx62', 'en', 1, 'https://ror.org/03ta7wx62 Hi-Tech Medical College & Hospital'),
(38184, 'https://ror.org/03td46k39', 'no_lang_code', 1, 'https://ror.org/03td46k39 Refazenda (Brazil)'),
(38185, 'https://ror.org/03tdc2j03', 'no_lang_code', 1, 'https://ror.org/03tdc2j03 Waldrex (Poland)'),
(38186, 'https://ror.org/03tebpn36', 'en', 1, 'https://ror.org/03tebpn36 International Labour Organization Internationale Arbeitsorganisation Organisation internationale du travail Organizzazione internazionale del lavoro'),
(38187, 'https://ror.org/03ted7148', 'en', 1, 'https://ror.org/03ted7148 Korean Society for Quality Management'),
(38188, 'https://ror.org/03th00v97', 'en', 1, 'https://ror.org/03th00v97 Atlantic General Hospital'),
(38189, 'https://ror.org/03thytm37', 'no_lang_code', 1, 'https://ror.org/03thytm37 Manarom Hospital'),
(38190, 'https://ror.org/03tjs3938', 'en', 1, 'https://ror.org/03tjs3938 BLK Super Speciality Hospital'),
(38191, 'https://ror.org/03tkbnt96', 'en', 1, 'https://ror.org/03tkbnt96 Barlow Respiratory Hospital'),
(38192, 'https://ror.org/03tkxvj23', 'pt', 1, 'https://ror.org/03tkxvj23 Arquivo PĆŗblico do Estado do Rio de Janeiro'),
(38193, 'https://ror.org/03tma2759', 'pt', 1, 'https://ror.org/03tma2759 Associação Paulista de Medicina'),
(38194, 'https://ror.org/03tmst390', 'en', 1, 'https://ror.org/03tmst390 Frank R. Howard Memorial Hospital'),
(38195, 'https://ror.org/03tn1hf10', 'pt', 1, 'https://ror.org/03tn1hf10 Associação Brasileira de Polímeros'),
(38196, 'https://ror.org/03tnggn83', 'no_lang_code', 1, 'https://ror.org/03tnggn83 FourC (Norway)'),
(38197, 'https://ror.org/03try1s84', 'no_lang_code', 1, 'https://ror.org/03try1s84 Inlaks & Budhrani Hospital'),
(38198, 'https://ror.org/03tsk0927', 'en', 1, 'https://ror.org/03tsk0927 Murshidabad Medical College and Hospital'),
(38199, 'https://ror.org/03tt6x206', 'no_lang_code', 1, 'https://ror.org/03tt6x206 Shimadzu (China)'),
(38200, 'https://ror.org/03ttb4s72', 'no_lang_code', 1, 'https://ror.org/03ttb4s72 Agat (Poland)'),
(38201, 'https://ror.org/03tv82d64', 'no_lang_code', 1, 'https://ror.org/03tv82d64 Japan Bio Products (Japan)'),
(38202, 'https://ror.org/03tw2c072', 'no_lang_code', 1, 'https://ror.org/03tw2c072 Sandvik (Norway)'),
(38203, 'https://ror.org/03tws3217', 'en', 1, 'https://ror.org/03tws3217 Jiangxi Provincial Children''s Hospital'),
(38204, 'https://ror.org/03ty9wj75', 'de', 1, 'https://ror.org/03ty9wj75 Leibniz-Zentrum Moderner Orient'),
(38205, 'https://ror.org/03v1svm63', 'pl', 1, 'https://ror.org/03v1svm63 University of Information Technology Wyższa Szkoła Technologii Informatycznych w Warszawie'),
(38206, 'https://ror.org/03v1yvt11', 'no_lang_code', 1, 'https://ror.org/03v1yvt11 AquaScan (Norway)'),
(38207, 'https://ror.org/03v2esq45', 'no_lang_code', 1, 'https://ror.org/03v2esq45 Predilnica Litija (Slovenia)'),
(38208, 'https://ror.org/03v372z22', 'en', 1, 'https://ror.org/03v372z22 College of Medicine & JNM Hospital'),
(38209, 'https://ror.org/03v3vkp27', 'no_lang_code', 1, 'https://ror.org/03v3vkp27 Plasma liits (Brazil)'),
(38210, 'https://ror.org/03v4s6070', 'pt', 1, 'https://ror.org/03v4s6070 Coordenadoria Geral da Universidade'),
(38211, 'https://ror.org/03v958f45', 'de', 1, 'https://ror.org/03v958f45 Kliniken Essen-Mitte'),
(38212, 'https://ror.org/03v95wd71', 'no_lang_code', 1, 'https://ror.org/03v95wd71 Azet Products (Poland)'),
(38213, 'https://ror.org/03va80p69', 'no_lang_code', 1, 'https://ror.org/03va80p69 Gemalto (Poland)'),
(38214, 'https://ror.org/03vaa9790', 'no_lang_code', 1, 'https://ror.org/03vaa9790 ITS (Norway)'),
(38215, 'https://ror.org/03vbt0765', 'en', 1, 'https://ror.org/03vbt0765 Institute of Gender and Health'),
(38216, 'https://ror.org/03vcw8k58', 'en', 1, 'https://ror.org/03vcw8k58 Ling Tung University å¶ŗę±ē§‘ęŠ€å¤§å­ø'),
(38217, 'https://ror.org/03veakt65', 'en', 1, 'https://ror.org/03veakt65 Instituto Militar de Engenharia Military Institute of Engineering'),
(38218, 'https://ror.org/03vgy8f59', 'en', 1, 'https://ror.org/03vgy8f59 Glen Grey Provincial Hospital'),
(38219, 'https://ror.org/03vj43k94', 'no_lang_code', 1, 'https://ror.org/03vj43k94 Nortransport (Norway)'),
(38220, 'https://ror.org/03vjmg579', 'no_lang_code', 1, 'https://ror.org/03vjmg579 Pan-Nutri (Slovenia)'),
(38221, 'https://ror.org/03vm72742', 'no', 1, 'https://ror.org/03vm72742 Vest-TelemarkrƄdet'),
(38222, 'https://ror.org/03vn4w338', 'no_lang_code', 1, 'https://ror.org/03vn4w338 Norli Libris (Norway)'),
(38223, 'https://ror.org/03vndx142', 'en', 1, 'https://ror.org/03vndx142 Dijlah University College ŁƒŁ„ŁŠŲ© دجلة الجامعة'),
(38224, 'https://ror.org/03vpyey53', 'no_lang_code', 1, 'https://ror.org/03vpyey53 Fotona (Slovenia)'),
(38225, 'https://ror.org/03vsgkg08', 'no_lang_code', 1, 'https://ror.org/03vsgkg08 Laska Technika Przemysłowa (Poland)'),
(38226, 'https://ror.org/03vsy6588', 'no_lang_code', 1, 'https://ror.org/03vsy6588 Segel (Norway)'),
(38227, 'https://ror.org/03vt5c527', 'en', 1, 'https://ror.org/03vt5c527 Royal Gwent Hospital Ysbyty Brenhinol Gwent'),
(38228, 'https://ror.org/03vvyat40', 'en', 1, 'https://ror.org/03vvyat40 Institute for Research in Materials and Applications'),
(38229, 'https://ror.org/03vwx5r63', 'no_lang_code', 1, 'https://ror.org/03vwx5r63 CromƔtica (Brazil)'),
(38230, 'https://ror.org/03vxaxy97', 'en', 1, 'https://ror.org/03vxaxy97 Peterhead Community Hospital'),
(38231, 'https://ror.org/03vxb8t23', 'en', 1, 'https://ror.org/03vxb8t23 Hellenic College Holy Cross Greek Orthodox School of Theology, Hellenic College and Holy Cross Greek Orthodox School of Theology'),
(38232, 'https://ror.org/03vyq6t71', 'en', 1, 'https://ror.org/03vyq6t71 Fraunhofer Institut für System- und Innovationsforschung Fraunhofer Institute for Systems and Innovation Research'),
(38233, 'https://ror.org/03w0yv793', 'no', 1, 'https://ror.org/03w0yv793 Norske Takstolprodusenters Forening'),
(38234, 'https://ror.org/03w1sg385', 'nl', 1, 'https://ror.org/03w1sg385 Damiaan Dicht bij het leven'),
(38235, 'https://ror.org/03w4fhz38', 'no_lang_code', 1, 'https://ror.org/03w4fhz38 DMG Mori (Poland)'),
(38236, 'https://ror.org/03w55j836', 'no_lang_code', 1, 'https://ror.org/03w55j836 Kulej (Poland)'),
(38237, 'https://ror.org/03w5c7758', 'no_lang_code', 1, 'https://ror.org/03w5c7758 Heggset Engineering (Norway)'),
(38238, 'https://ror.org/03w5nvk39', 'en', 1, 'https://ror.org/03w5nvk39 Oslo Stock Exchange'),
(38239, 'https://ror.org/03wcqja14', 'no_lang_code', 1, 'https://ror.org/03wcqja14 Wuhan YZY Biopharma (China)'),
(38240, 'https://ror.org/03wen3n10', 'en', 1, 'https://ror.org/03wen3n10 Clinica de Salud del Valle de Salinas'),
(38241, 'https://ror.org/03wgsrq67', 'en', 1, 'https://ror.org/03wgsrq67 Vestre Viken Hospital Trust'),
(38242, 'https://ror.org/03wgydg43', 'no_lang_code', 1, 'https://ror.org/03wgydg43 RollerSafe (Norway)'),
(38243, 'https://ror.org/03whyax55', 'no_lang_code', 1, 'https://ror.org/03whyax55 Bevital (Norway)'),
(38244, 'https://ror.org/03wparr05', 'no_lang_code', 1, 'https://ror.org/03wparr05 eCoast (New Zealand)'),
(38245, 'https://ror.org/03wrd3648', 'en', 1, 'https://ror.org/03wrd3648 Montclair Hospital Medical Center'),
(38246, 'https://ror.org/03wrq5388', 'de', 1, 'https://ror.org/03wrq5388 Institut für Grenzgebiete der Psychologie und Psychohygiene'),
(38247, 'https://ror.org/03wsafn70', 'no_lang_code', 1, 'https://ror.org/03wsafn70 VeriSat (Norway)'),
(38248, 'https://ror.org/03wtb7y24', 'no_lang_code', 1, 'https://ror.org/03wtb7y24 Advion (United Kingdom)'),
(38249, 'https://ror.org/03x053h94', 'en', 1, 'https://ror.org/03x053h94 Brazilian Institute of Neuropsychology and Behaviour Instituto Brasileiro de Neuropsicologia e Comportamento'),
(38250, 'https://ror.org/03x0g5n48', 'en', 1, 'https://ror.org/03x0g5n48 Business School Lausanne'),
(38251, 'https://ror.org/03x0ke992', 'no_lang_code', 1, 'https://ror.org/03x0ke992 Thermo Fisher Scientific (Norway)'),
(38252, 'https://ror.org/03x18qq52', 'en', 1, 'https://ror.org/03x18qq52 Consortium de recherche et d''innovation en technologies mƩdicales du QuƩbec Quebec Consortium for Industrial Research and Innovation in Medical Technology'),
(38253, 'https://ror.org/03x46pr49', 'no_lang_code', 1, 'https://ror.org/03x46pr49 EnSol (Norway)'),
(38254, 'https://ror.org/03x72q350', 'en', 1, 'https://ror.org/03x72q350 Gwangju Health University ź“‘ģ£¼ė³“ź±“ėŒ€ķ•™źµ'),
(38255, 'https://ror.org/03x74qd84', 'de', 1, 'https://ror.org/03x74qd84 Landesarchiv Sachsen-Anhalt'),
(38256, 'https://ror.org/03x75jm90', 'no', 1, 'https://ror.org/03x75jm90 Nord-TrĆøndelag FylkesKommune'),
(38257, 'https://ror.org/03x9m5a16', 'no_lang_code', 1, 'https://ror.org/03x9m5a16 Celerway Communication (Norway)'),
(38258, 'https://ror.org/03x9v0071', 'no_lang_code', 1, 'https://ror.org/03x9v0071 Wilson Composites (United States)'),
(38259, 'https://ror.org/03xaygd04', 'fr', 1, 'https://ror.org/03xaygd04 Centre QuƩbƩcois du P.E.N. International'),
(38260, 'https://ror.org/03xckv489', 'no', 1, 'https://ror.org/03xckv489 Institutt for Grafiske Medier'),
(38261, 'https://ror.org/03xdw5e88', 'no_lang_code', 1, 'https://ror.org/03xdw5e88 Typhonix (Norway)'),
(38262, 'https://ror.org/03xe8sk89', 'no_lang_code', 1, 'https://ror.org/03xe8sk89 Institute of Metagenomics and Microbial Technologies (Slovenia)'),
(38263, 'https://ror.org/03xebwg03', 'no_lang_code', 1, 'https://ror.org/03xebwg03 Salt (Norway)'),
(38264, 'https://ror.org/03xgcy581', 'no_lang_code', 1, 'https://ror.org/03xgcy581 Holta Invest (Norway)'),
(38265, 'https://ror.org/03xgpq506', 'en', 1, 'https://ror.org/03xgpq506 Norwegian Society for Medical Informatics'),
(38266, 'https://ror.org/03xjymw07', 'no', 1, 'https://ror.org/03xjymw07 Norwea'),
(38267, 'https://ror.org/03xks2j10', 'no_lang_code', 1, 'https://ror.org/03xks2j10 Argus Remote Systems (Norway)'),
(38268, 'https://ror.org/03xn8jx42', 'no_lang_code', 1, 'https://ror.org/03xn8jx42 AFRY (Norway)'),
(38269, 'https://ror.org/03xssrp53', 'fr', 1, 'https://ror.org/03xssrp53 DƩlƩgation RƩgionale Occitanie PyrƩnƩes'),
(38270, 'https://ror.org/03xsw0p28', 'no_lang_code', 1, 'https://ror.org/03xsw0p28 Arkitektur og Byggteknikk (Norway)'),
(38271, 'https://ror.org/03xvmxn09', 'en', 1, 'https://ror.org/03xvmxn09 Mills Memorial Hospital'),
(38272, 'https://ror.org/03xx2xa59', 'en', 1, 'https://ror.org/03xx2xa59 Desert Springs Hospital'),
(38273, 'https://ror.org/03xy1px17', 'en', 1, 'https://ror.org/03xy1px17 Greater Cincinnati Consortium of Colleges and Universities'),
(38274, 'https://ror.org/03xyg3m20', 'en', 1, 'https://ror.org/03xyg3m20 Division of Industrial Innovation & Partnerships'),
(38275, 'https://ror.org/03y150857', 'en', 1, 'https://ror.org/03y150857 Irvine Valley College'),
(38276, 'https://ror.org/03y2b4f92', 'pt', 1, 'https://ror.org/03y2b4f92 Bioline - Consultoria e Engenharia Ambiental'),
(38277, 'https://ror.org/03y2gf405', 'no_lang_code', 1, 'https://ror.org/03y2gf405 Bulldozer Film (Norway)'),
(38278, 'https://ror.org/03y2s5683', 'no_lang_code', 1, 'https://ror.org/03y2s5683 Oxford Research (Norway)'),
(38279, 'https://ror.org/03y3mre69', 'no_lang_code', 1, 'https://ror.org/03y3mre69 AHR (United Kingdom)'),
(38280, 'https://ror.org/03y615034', 'no_lang_code', 1, 'https://ror.org/03y615034 Insurance Process Management (Norway)'),
(38281, 'https://ror.org/03y62np16', 'no_lang_code', 1, 'https://ror.org/03y62np16 Cautus Geo (Norway)'),
(38282, 'https://ror.org/03yajhg79', 'en', 1, 'https://ror.org/03yajhg79 Educell'),
(38283, 'https://ror.org/03yew7g23', 'no_lang_code', 1, 'https://ror.org/03yew7g23 Graphene Batteries (Norway)'),
(38284, 'https://ror.org/03yg95m91', 'no_lang_code', 1, 'https://ror.org/03yg95m91 Royal Fish (Brazil)'),
(38285, 'https://ror.org/03ykazq11', 'no_lang_code', 1, 'https://ror.org/03ykazq11 Nel (Norway)'),
(38286, 'https://ror.org/03ymdwd91', 'no_lang_code', 1, 'https://ror.org/03ymdwd91 Sollis (Brazil)'),
(38287, 'https://ror.org/03yn2qz25', 'en', 1, 'https://ror.org/03yn2qz25 Leduc Community Hospital'),
(38288, 'https://ror.org/03ynjfm77', 'en', 1, 'https://ror.org/03ynjfm77 King & Spalding'),
(38289, 'https://ror.org/03ypdxy52', 'no_lang_code', 1, 'https://ror.org/03ypdxy52 OptoLink (Brazil)'),
(38290, 'https://ror.org/03yqxd013', 'no_lang_code', 1, 'https://ror.org/03yqxd013 Omegatri (Norway)'),
(38291, 'https://ror.org/03yr3hm52', 'no', 1, 'https://ror.org/03yr3hm52 Norsk Sveiseteknisk Forbund'),
(38292, 'https://ror.org/03ytzbe98', 'en', 1, 'https://ror.org/03ytzbe98 HBCU Library Alliance'),
(38293, 'https://ror.org/03yvfnr08', 'no_lang_code', 1, 'https://ror.org/03yvfnr08 Ayanda (Norway)'),
(38294, 'https://ror.org/03yvwxc80', 'en', 1, 'https://ror.org/03yvwxc80 Sierra View Medical Center'),
(38295, 'https://ror.org/03ywcxa16', 'no_lang_code', 1, 'https://ror.org/03ywcxa16 NorDan (Norway)'),
(38296, 'https://ror.org/03yy00h78', 'no_lang_code', 1, 'https://ror.org/03yy00h78 Avfall Norge (Norway)'),
(38297, 'https://ror.org/03yy70b29', 'no_lang_code', 1, 'https://ror.org/03yy70b29 Celsa (Poland)'),
(38298, 'https://ror.org/03yyk9v83', 'en', 1, 'https://ror.org/03yyk9v83 Norwegian Computer Society'),
(38299, 'https://ror.org/03yzrhw11', 'no_lang_code', 1, 'https://ror.org/03yzrhw11 Cala Provincial Hospital'),
(38300, 'https://ror.org/03z0dd375', 'en', 1, 'https://ror.org/03z0dd375 Seed Forum'),
(38301, 'https://ror.org/03z1ps729', 'en', 1, 'https://ror.org/03z1ps729 Aga Khan Hospital Dar es Salaam'),
(38302, 'https://ror.org/03z1ygw19', 'en', 1, 'https://ror.org/03z1ygw19 Walter Eucken Institut'),
(38303, 'https://ror.org/03z2ts232', 'en', 1, 'https://ror.org/03z2ts232 Swedish Film Institute'),
(38304, 'https://ror.org/03z526x05', 'en', 1, 'https://ror.org/03z526x05 Midland Regional Hospital Mullingar Ospidéal Réigiúnach an Mhuilinn Chearr'),
(38305, 'https://ror.org/03z55gw17', 'no_lang_code', 1, 'https://ror.org/03z55gw17 Norwegian Oilfield Supply'),
(38306, 'https://ror.org/03z6nc566', 'no_lang_code', 1, 'https://ror.org/03z6nc566 Atheno (Norway)'),
(38307, 'https://ror.org/03z70cs67', 'no_lang_code', 1, 'https://ror.org/03z70cs67 Imag Indústria e Comércio de Componentes EletrÓnicos (Brasil)'),
(38308, 'https://ror.org/03zc07z23', 'no_lang_code', 1, 'https://ror.org/03zc07z23 Durgabai Deshmukh Hospital'),
(38309, 'https://ror.org/03zdb8v54', 'no_lang_code', 1, 'https://ror.org/03zdb8v54 Oltis Polska (Poland)'),
(38310, 'https://ror.org/03ze07515', 'fr', 1, 'https://ror.org/03ze07515 CEA Valduc'),
(38311, 'https://ror.org/03zezqe26', 'no_lang_code', 1, 'https://ror.org/03zezqe26 Tool Tech (Norway)'),
(38312, 'https://ror.org/03zfe3916', 'no_lang_code', 1, 'https://ror.org/03zfe3916 Autosan (Poland)'),
(38313, 'https://ror.org/03zgm9x14', 'no_lang_code', 1, 'https://ror.org/03zgm9x14 Portal (Norway)'),
(38314, 'https://ror.org/03zh4gk78', 'no_lang_code', 1, 'https://ror.org/03zh4gk78 Evry (Norway)'),
(38315, 'https://ror.org/03zmadd59', 'en', 1, 'https://ror.org/03zmadd59 American Federation for Medical Research'),
(38316, 'https://ror.org/03zn2vc68', 'no_lang_code', 1, 'https://ror.org/03zn2vc68 Niko (Slovenia)');
INSERT INTO `rors` VALUES
(38317, 'https://ror.org/03zn6c508', 'en', 1, 'https://ror.org/03zn6c508 Institute of Tibetan Plateau Research äø­å›½ē§‘å­¦é™¢é’č—é«˜åŽŸē ”ē©¶ę‰€'),
(38318, 'https://ror.org/03zn6e898', 'no_lang_code', 1, 'https://ror.org/03zn6e898 Profectum (Norway)'),
(38319, 'https://ror.org/03znsa629', 'no_lang_code', 1, 'https://ror.org/03znsa629 Neuron EletrƓnica (Brazil)'),
(38320, 'https://ror.org/03zrmej96', 'en', 1, 'https://ror.org/03zrmej96 Jefferson Community and Technical College'),
(38321, 'https://ror.org/03zskka50', 'en', 1, 'https://ror.org/03zskka50 Metro Area Community Empowerment'),
(38322, 'https://ror.org/0402vjj88', 'no_lang_code', 1, 'https://ror.org/0402vjj88 Trilobite (Norway)'),
(38323, 'https://ror.org/04034ej81', 'pt', 1, 'https://ror.org/04034ej81 Sociedade Brasileira Para o Desenvolvimento da Pesquisa em Cirurgia'),
(38324, 'https://ror.org/0403fs498', 'no_lang_code', 1, 'https://ror.org/0403fs498 Vista Utredning (Norway)'),
(38325, 'https://ror.org/0403nm782', 'en', 1, 'https://ror.org/0403nm782 American School of Milan'),
(38326, 'https://ror.org/0403qtv92', 'en', 1, 'https://ror.org/0403qtv92 Duncan Village Day Hospital'),
(38327, 'https://ror.org/040481r38', 'en', 1, 'https://ror.org/040481r38 Norwegian Trotting Association'),
(38328, 'https://ror.org/0408sy511', 'no_lang_code', 1, 'https://ror.org/0408sy511 FinsbrƄten (Norway)'),
(38329, 'https://ror.org/040bdaa45', 'en', 1, 'https://ror.org/040bdaa45 Instituto de Engenharia Nuclear Nuclear Engineering Institute'),
(38330, 'https://ror.org/040bhbn44', 'no_lang_code', 1, 'https://ror.org/040bhbn44 Klais SoluƧƵes Consultoria e Desenvolvimento (Brazil)'),
(38331, 'https://ror.org/040bxjg62', 'pt', 1, 'https://ror.org/040bxjg62 Fundação Casa de Rui Barbosa'),
(38332, 'https://ror.org/040cbt857', 'no_lang_code', 1, 'https://ror.org/040cbt857 Bioware (Brazil)'),
(38333, 'https://ror.org/040d6j646', 'it', 1, 'https://ror.org/040d6j646 Ospedale dell'' Angelo'),
(38334, 'https://ror.org/040dak484', 'no_lang_code', 1, 'https://ror.org/040dak484 Mecmar (Norway)'),
(38335, 'https://ror.org/040dcjh11', 'no_lang_code', 1, 'https://ror.org/040dcjh11 Adiel Comercial (Brazil)'),
(38336, 'https://ror.org/040djv263', 'en', 1, 'https://ror.org/040djv263 Max Planck Institute for Molecular Biomedicine Max-Planck-Institut für Molekulare Biomedizin'),
(38337, 'https://ror.org/040dnmx71', 'en', 1, 'https://ror.org/040dnmx71 Museu de Arte de SĆ£o Paulo SĆ£o Paulo Museum of Art'),
(38338, 'https://ror.org/040f86t49', 'en', 1, 'https://ror.org/040f86t49 Dr. Kariadi Hospital Rumah Sakit Dr. Kariadi'),
(38339, 'https://ror.org/040g62b80', 'pt', 1, 'https://ror.org/040g62b80 Escola Superior de Propaganda e Marketing School of Higher Education in Advertising and Marketing'),
(38340, 'https://ror.org/040g67t40', 'en', 1, 'https://ror.org/040g67t40 Association of Polish Cities'),
(38341, 'https://ror.org/040h8qn92', 'en', 1, 'https://ror.org/040h8qn92 Fuda Cancer Hospital'),
(38342, 'https://ror.org/040njjb71', 'en', 1, 'https://ror.org/040njjb71 TechSoup'),
(38343, 'https://ror.org/040pmw620', 'en', 1, 'https://ror.org/040pmw620 Medicine Hat Regional Hospital'),
(38344, 'https://ror.org/040pw5174', 'no_lang_code', 1, 'https://ror.org/040pw5174 Marmor Hotavlje Group (Slovenia)'),
(38345, 'https://ror.org/040tgwz33', 'en', 1, 'https://ror.org/040tgwz33 Lourdes Hospital'),
(38346, 'https://ror.org/040tq8233', 'no_lang_code', 1, 'https://ror.org/040tq8233 Aschehoug (Norway)'),
(38347, 'https://ror.org/040w2fg16', 'no', 1, 'https://ror.org/040w2fg16 Bergens Rederiforening'),
(38348, 'https://ror.org/040wxw844', 'no', 1, 'https://ror.org/040wxw844 Norsk Fysisk Selskap'),
(38349, 'https://ror.org/040x31d97', 'en', 1, 'https://ror.org/040x31d97 Worcester Recovery Center and Hospital'),
(38350, 'https://ror.org/040y5k757', 'en', 1, 'https://ror.org/040y5k757 Seventh day Adventist Hospital'),
(38351, 'https://ror.org/040y85z67', 'no_lang_code', 1, 'https://ror.org/040y85z67 Tidewater (Norway)'),
(38352, 'https://ror.org/040yf2s15', 'de', 1, 'https://ror.org/040yf2s15 Landesmuseum Württemberg'),
(38353, 'https://ror.org/040zfw946', 'no_lang_code', 1, 'https://ror.org/040zfw946 Doosan Yonkang Foundation'),
(38354, 'https://ror.org/041137e25', 'en', 1, 'https://ror.org/041137e25 Central Institute of Freshwater Aquaculture'),
(38355, 'https://ror.org/0413f6k16', 'en', 1, 'https://ror.org/0413f6k16 Ministry of Labor and Employment MinistƩrio do Trabalho e Emprego'),
(38356, 'https://ror.org/0415f1661', 'no_lang_code', 1, 'https://ror.org/0415f1661 Mathura Das Mathur Hospital ą¤®ą¤„ą„ą¤°ą¤¾ą¤¦ą¤¾ą¤ø ą¤®ą¤¾ą¤„ą„ą¤° ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(38357, 'https://ror.org/04160ha27', 'en', 1, 'https://ror.org/04160ha27 Pentecost University College'),
(38358, 'https://ror.org/0417dsh96', 'no_lang_code', 1, 'https://ror.org/0417dsh96 Harpo (Poland)'),
(38359, 'https://ror.org/0417pw826', 'no_lang_code', 1, 'https://ror.org/0417pw826 Lyse (Norway)'),
(38360, 'https://ror.org/0418vfj03', 'no', 1, 'https://ror.org/0418vfj03 Norges IngeniĆør- og Teknologorganisasjon'),
(38361, 'https://ror.org/04196w034', 'en', 1, 'https://ror.org/04196w034 Ministry of Culture MinistƩrio da Cultura'),
(38362, 'https://ror.org/0419dzy74', 'pt', 1, 'https://ror.org/0419dzy74 Instituto Lina Bo e P.M. Bardi'),
(38363, 'https://ror.org/041a34162', 'no_lang_code', 1, 'https://ror.org/041a34162 Cennabras (Brazil)'),
(38364, 'https://ror.org/041c7s516', 'en', 1, 'https://ror.org/041c7s516 Calvary Hospital'),
(38365, 'https://ror.org/041c8tt83', 'fr', 1, 'https://ror.org/041c8tt83 Centres IntƩgrƩ Universitaires de SantƩ et de Services Sociaux'),
(38366, 'https://ror.org/041dcxd16', 'en', 1, 'https://ror.org/041dcxd16 Lanchester Road Hospital'),
(38367, 'https://ror.org/041dnc326', 'en', 1, 'https://ror.org/041dnc326 Turner Memorial Hospital'),
(38368, 'https://ror.org/041fsgg33', 'no_lang_code', 1, 'https://ror.org/041fsgg33 AMS Kepler (Brazil)'),
(38369, 'https://ror.org/041nm8c07', 'de', 1, 'https://ror.org/041nm8c07 ForWind Zentrum für Windenergieforschung'),
(38370, 'https://ror.org/041qnde49', 'en', 1, 'https://ror.org/041qnde49 Azerbaijan National Aerospace Agency Azərbaycan Milli Aerokosmik Agentliyi'),
(38371, 'https://ror.org/041ts2d40', 'en', 1, 'https://ror.org/041ts2d40 Affiliated Zhongshan Hospital of Dalian University'),
(38372, 'https://ror.org/041vdra32', 'no', 1, 'https://ror.org/041vdra32 Friends of the Earth Norway Naturvernforbundet'),
(38373, 'https://ror.org/041ww9d57', 'no_lang_code', 1, 'https://ror.org/041ww9d57 Ocean Energy (Norway)'),
(38374, 'https://ror.org/041xr2b79', 'it', 1, 'https://ror.org/041xr2b79 Ospedale di Civita Castellana'),
(38375, 'https://ror.org/041z54681', 'en', 1, 'https://ror.org/041z54681 Mediclinic City Hospital'),
(38376, 'https://ror.org/042170a43', 'no_lang_code', 1, 'https://ror.org/042170a43 Xizang Minzu University č„æč—ę°‘ę—å­¦é™¢'),
(38377, 'https://ror.org/0422n9778', 'no_lang_code', 1, 'https://ror.org/0422n9778 Magtech (Norway)'),
(38378, 'https://ror.org/0424mj572', 'no_lang_code', 1, 'https://ror.org/0424mj572 Stimline (Norway)'),
(38379, 'https://ror.org/0425b0029', 'no_lang_code', 1, 'https://ror.org/0425b0029 Vartdal Plast (Norway)'),
(38380, 'https://ror.org/042664e79', 'pt', 1, 'https://ror.org/042664e79 Secretaria de Agricultura e Abastecimento'),
(38381, 'https://ror.org/0426ffx42', 'en', 1, 'https://ror.org/0426ffx42 Pacific Research Institute'),
(38382, 'https://ror.org/04293qd70', 'pt', 1, 'https://ror.org/04293qd70 Associação Brasileira da Batata'),
(38383, 'https://ror.org/042bm3f17', 'no', 1, 'https://ror.org/042bm3f17 AksjonƦrforeningen'),
(38384, 'https://ror.org/042dsac10', 'en', 1, 'https://ror.org/042dsac10 Helmholtz Institute for Pharmaceutical Research Saarland Helmholtz-Institut für Pharmazeutische Forschung Saarland'),
(38385, 'https://ror.org/042epp307', 'no_lang_code', 1, 'https://ror.org/042epp307 JĆøtul (Norway)'),
(38386, 'https://ror.org/042eq7k73', 'no_lang_code', 1, 'https://ror.org/042eq7k73 Semcon (Norway)'),
(38387, 'https://ror.org/042ghyj15', 'no_lang_code', 1, 'https://ror.org/042ghyj15 Bf Clay Especialidades (Brazil)'),
(38388, 'https://ror.org/042grvw12', 'no_lang_code', 1, 'https://ror.org/042grvw12 Neuro Device (Poland)'),
(38389, 'https://ror.org/042k07j95', 'no_lang_code', 1, 'https://ror.org/042k07j95 Quartz Corp (Norway)'),
(38390, 'https://ror.org/042pyga86', 'en', 1, 'https://ror.org/042pyga86 Tianjin Institute of Industrial Biotechnology äø­å›½ē§‘å­¦é™¢å¤©ę“„å·„äøšē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(38391, 'https://ror.org/042qcb753', 'no_lang_code', 1, 'https://ror.org/042qcb753 Nompumelelo Hospital'),
(38392, 'https://ror.org/042s03372', 'en', 1, 'https://ror.org/042s03372 Center for Child and Adolescent Mental Health, Eastern and Southern Norway'),
(38393, 'https://ror.org/042s2r166', 'no_lang_code', 1, 'https://ror.org/042s2r166 Marine Constructions (Norway)'),
(38394, 'https://ror.org/042tpyj36', 'no_lang_code', 1, 'https://ror.org/042tpyj36 Formatto (Brazil)'),
(38395, 'https://ror.org/042vs4796', 'no_lang_code', 1, 'https://ror.org/042vs4796 NergƄrd (Norway)'),
(38396, 'https://ror.org/042y68y70', 'no', 1, 'https://ror.org/042y68y70 Trondheim Science Museum Vitensenteret i Trondheim'),
(38397, 'https://ror.org/042yzj970', 'no_lang_code', 1, 'https://ror.org/042yzj970 Yonsei Sarang Hospital'),
(38398, 'https://ror.org/042z7hw74', 'en', 1, 'https://ror.org/042z7hw74 Changsha Environmental Protection College'),
(38399, 'https://ror.org/042ze4p12', 'en', 1, 'https://ror.org/042ze4p12 Ben Taub Hospital'),
(38400, 'https://ror.org/042zefm29', 'no_lang_code', 1, 'https://ror.org/042zefm29 Pedra Agroindustrial (Brazil)'),
(38401, 'https://ror.org/0433s0254', 'en', 1, 'https://ror.org/0433s0254 Instituto Tecnológico de Morelia Morelia Institute of Technology'),
(38402, 'https://ror.org/04348hm12', 'no_lang_code', 1, 'https://ror.org/04348hm12 Gavita (Norway)'),
(38403, 'https://ror.org/0435fd055', 'en', 1, 'https://ror.org/0435fd055 Britannia Royal Naval College'),
(38404, 'https://ror.org/0436hk567', 'no_lang_code', 1, 'https://ror.org/0436hk567 Karanda Mission Hospital'),
(38405, 'https://ror.org/0438q2q05', 'no_lang_code', 1, 'https://ror.org/0438q2q05 NorgesmĆøllene (Norway)'),
(38406, 'https://ror.org/04395y550', 'no_lang_code', 1, 'https://ror.org/04395y550 Alwernia (Poland)'),
(38407, 'https://ror.org/043ad9j09', 'no_lang_code', 1, 'https://ror.org/043ad9j09 Goodtech (Norway)'),
(38408, 'https://ror.org/043bgwc02', 'de', 1, 'https://ror.org/043bgwc02 Stiftung Schleswig-Holsteinische Landesmuseen'),
(38409, 'https://ror.org/043cf4715', 'no_lang_code', 1, 'https://ror.org/043cf4715 Beck Engineering (Norway)'),
(38410, 'https://ror.org/043dmbr88', 'en', 1, 'https://ror.org/043dmbr88 Westminster Memorial Hospital'),
(38411, 'https://ror.org/043e82c76', 'en', 1, 'https://ror.org/043e82c76 Sultan Ismail Specialist Hospital'),
(38412, 'https://ror.org/043f3ea85', 'fr', 1, 'https://ror.org/043f3ea85 Centre de Transfert Pour la RƩussite Educative du QuƩbec'),
(38413, 'https://ror.org/043jqct61', 'no', 1, 'https://ror.org/043jqct61 Start Norge'),
(38414, 'https://ror.org/043m37669', 'en', 1, 'https://ror.org/043m37669 Capricorn Coast Hospital'),
(38415, 'https://ror.org/043mmxr96', 'en', 1, 'https://ror.org/043mmxr96 Atlanta Film Festival'),
(38416, 'https://ror.org/043mnf671', 'en', 1, 'https://ror.org/043mnf671 Midland Regional Hospital Portlaoise Ospidéal Réigiúnach LÔr Tíre, Port Laoise'),
(38417, 'https://ror.org/043p9x506', 'no_lang_code', 1, 'https://ror.org/043p9x506 Shutech (Japan)'),
(38418, 'https://ror.org/043qb7f72', 'en', 1, 'https://ror.org/043qb7f72 Fleming Cottage Hospital'),
(38419, 'https://ror.org/043qs7x90', 'no_lang_code', 1, 'https://ror.org/043qs7x90 Conpart (Norway)'),
(38420, 'https://ror.org/043tanr92', 'no', 1, 'https://ror.org/043tanr92 Ɓrran JulevsƔme GuovdƔsj Lulesamisk Senter'),
(38421, 'https://ror.org/043tfr230', 'en', 1, 'https://ror.org/043tfr230 Institute of Neurosciences, Mental Health and Addiction'),
(38422, 'https://ror.org/043w2w702', 'en', 1, 'https://ror.org/043w2w702 Inland Norway Energy Agency'),
(38423, 'https://ror.org/043x6wz15', 'no_lang_code', 1, 'https://ror.org/043x6wz15 Hardkop (Poland)'),
(38424, 'https://ror.org/043xx4m81', 'no_lang_code', 1, 'https://ror.org/043xx4m81 Cybid (Poland)'),
(38425, 'https://ror.org/043yqwn61', 'no_lang_code', 1, 'https://ror.org/043yqwn61 Tolero Pharmaceuticals (United States)'),
(38426, 'https://ror.org/043ysjp15', 'no_lang_code', 1, 'https://ror.org/043ysjp15 Hacienda (Norway)'),
(38427, 'https://ror.org/043zemc40', 'en', 1, 'https://ror.org/043zemc40 Queen Maud University College'),
(38428, 'https://ror.org/0440ajd58', 'pl', 1, 'https://ror.org/0440ajd58 Ośrodek Badawczo-Rozwojowy Centrum Techniki Morskiej'),
(38429, 'https://ror.org/0440dpw16', 'no_lang_code', 1, 'https://ror.org/0440dpw16 Advanced Fiber Resources (China)'),
(38430, 'https://ror.org/0440kgc56', 'en', 1, 'https://ror.org/0440kgc56 Boai Hospital of Zhongshan äø­å±±åø‚åšēˆ±åŒ»é™¢'),
(38431, 'https://ror.org/0443z5530', 'en', 1, 'https://ror.org/0443z5530 San Jose Hospital & Trauma Center'),
(38432, 'https://ror.org/0444s8s29', 'no_lang_code', 1, 'https://ror.org/0444s8s29 Biomolex (Norway)'),
(38433, 'https://ror.org/04488qt04', 'en', 1, 'https://ror.org/04488qt04 Congress-Conference'),
(38434, 'https://ror.org/0448sak71', 'en', 1, 'https://ror.org/0448sak71 Fraunhofer Institute for Ceramic Technologies and Systems Fraunhofer-Institut für Keramische Technologien und Systeme'),
(38435, 'https://ror.org/044a6j606', 'no_lang_code', 1, 'https://ror.org/044a6j606 Calcus (Norway)'),
(38436, 'https://ror.org/044dxh921', 'en', 1, 'https://ror.org/044dxh921 Matha Ayurveda Eye Hospital'),
(38437, 'https://ror.org/044dz3b65', 'pt', 1, 'https://ror.org/044dz3b65 Instituto de Psicologia Comportamental de SĆ£o Carlos'),
(38438, 'https://ror.org/044e25681', 'no_lang_code', 1, 'https://ror.org/044e25681 Kolon Life Science (South Korea)'),
(38439, 'https://ror.org/044jw3g30', 'no_lang_code', 1, 'https://ror.org/044jw3g30 Karakter'),
(38440, 'https://ror.org/044kqk861', 'no_lang_code', 1, 'https://ror.org/044kqk861 Instituto Vital Brazil (Brazil)'),
(38441, 'https://ror.org/044mbfr67', 'en', 1, 'https://ror.org/044mbfr67 Institute of Aging'),
(38442, 'https://ror.org/044nfga98', 'pt', 1, 'https://ror.org/044nfga98 Centro de Tecnologia da Informação Renato Archer'),
(38443, 'https://ror.org/044pnqk33', 'no_lang_code', 1, 'https://ror.org/044pnqk33 Kolpa (Slovenia)'),
(38444, 'https://ror.org/044qsan02', 'no_lang_code', 1, 'https://ror.org/044qsan02 Lumex (Norway)'),
(38445, 'https://ror.org/044tsct54', 'en', 1, 'https://ror.org/044tsct54 Norwegian Steel Association'),
(38446, 'https://ror.org/044wyhr42', 'no_lang_code', 1, 'https://ror.org/044wyhr42 Kehl (Brazil)'),
(38447, 'https://ror.org/044xa2871', 'no_lang_code', 1, 'https://ror.org/044xa2871 Human Dialog (Norway)'),
(38448, 'https://ror.org/044xemj90', 'no_lang_code', 1, 'https://ror.org/044xemj90 Dar Al-Shifa Hospital مستؓفى ŲÆŲ§Ų± Ų§Ł„Ų“ŁŲ§Ų”ā€Ž'),
(38449, 'https://ror.org/044xepv65', 'no_lang_code', 1, 'https://ror.org/044xepv65 Rosetta Genomics (Israel)'),
(38450, 'https://ror.org/044ybef51', 'en', 1, 'https://ror.org/044ybef51 National Cancer Institute'),
(38451, 'https://ror.org/0450swy91', 'en', 1, 'https://ror.org/0450swy91 All Hallows College'),
(38452, 'https://ror.org/04571v857', 'no_lang_code', 1, 'https://ror.org/04571v857 MetsƤhallitus (Finland)'),
(38453, 'https://ror.org/0458ana96', 'fr', 1, 'https://ror.org/0458ana96 Institut FranƧais de la Brasserie et de la Malterie, Institut FranƧais des Boissons, de la Brasserie et de la Malterie'),
(38454, 'https://ror.org/045905m75', 'en', 1, 'https://ror.org/045905m75 Associação Brasileira de Buiatria Brazilian Buiatrics Association'),
(38455, 'https://ror.org/045akps60', 'en', 1, 'https://ror.org/045akps60 Hudson County Community College'),
(38456, 'https://ror.org/045e9rc94', 'pt', 1, 'https://ror.org/045e9rc94 Hospital do Rim e Hipertensão'),
(38457, 'https://ror.org/045f8n343', 'no_lang_code', 1, 'https://ror.org/045f8n343 BP Norge (Norway)'),
(38458, 'https://ror.org/045fr5063', 'no_lang_code', 1, 'https://ror.org/045fr5063 Aspiro (Norway)'),
(38459, 'https://ror.org/045fwjn44', 'no_lang_code', 1, 'https://ror.org/045fwjn44 Wellcem (Norway)'),
(38460, 'https://ror.org/045gdxt02', 'de', 1, 'https://ror.org/045gdxt02 Hochschule für bildende Künste University of Fine Arts in Hamburg'),
(38461, 'https://ror.org/045gv5c80', 'de', 1, 'https://ror.org/045gv5c80 Stadtarchiv Ibbenbüren'),
(38462, 'https://ror.org/045h1r327', 'no_lang_code', 1, 'https://ror.org/045h1r327 Scott Group Studio (United States)'),
(38463, 'https://ror.org/045hhpe19', 'no_lang_code', 1, 'https://ror.org/045hhpe19 Statskog (Norway)'),
(38464, 'https://ror.org/045js9z71', 'no_lang_code', 1, 'https://ror.org/045js9z71 Bevi Plastic (Brazil)'),
(38465, 'https://ror.org/045k8ds88', 'no_lang_code', 1, 'https://ror.org/045k8ds88 Multi Vegetal FitocosmƩticos (Brazil)'),
(38466, 'https://ror.org/045kr5p19', 'en', 1, 'https://ror.org/045kr5p19 Life Groenkloof Hospital'),
(38467, 'https://ror.org/045mkw584', 'no_lang_code', 1, 'https://ror.org/045mkw584 Nanosyn (United States)'),
(38468, 'https://ror.org/045ms0x79', 'en', 1, 'https://ror.org/045ms0x79 Egyptian e-Learning University الجامعة Ų§Ł„Ł…ŲµŲ±ŁŠŲ© للتعلم Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†Ł‰'),
(38469, 'https://ror.org/045pn0g98', 'no_lang_code', 1, 'https://ror.org/045pn0g98 Atonus Engineering Systems (Brazil)'),
(38470, 'https://ror.org/045pt3n52', 'no_lang_code', 1, 'https://ror.org/045pt3n52 Guatifer Usinagem e Ferramentaria (Brazil)'),
(38471, 'https://ror.org/045qetg51', 'no_lang_code', 1, 'https://ror.org/045qetg51 Biotec Pharmacon (Norway)'),
(38472, 'https://ror.org/045qycg64', 'no_lang_code', 1, 'https://ror.org/045qycg64 PostNord (Norway)'),
(38473, 'https://ror.org/045rymn14', 'en', 1, 'https://ror.org/045rymn14 Ningbo University Affiliated Hospital å®ę³¢å¤§å­¦åŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(38474, 'https://ror.org/045s3s145', 'en', 1, 'https://ror.org/045s3s145 Lake District Hospital'),
(38475, 'https://ror.org/045tkmf79', 'en', 1, 'https://ror.org/045tkmf79 Belmont Hospital'),
(38476, 'https://ror.org/045twjx32', 'en', 1, 'https://ror.org/045twjx32 West Yangon General Hospital ရန်ကုန် နနောက်ပိုင်း ဆေးရုံ'),
(38477, 'https://ror.org/045wnmj48', 'en', 1, 'https://ror.org/045wnmj48 Hospital Naval de Puerto Williams Naval Hospital of Puerto Williams'),
(38478, 'https://ror.org/045yjdg59', 'en', 1, 'https://ror.org/045yjdg59 Hill College'),
(38479, 'https://ror.org/0461fey84', 'no_lang_code', 1, 'https://ror.org/0461fey84 Pammakaristos Hospital'),
(38480, 'https://ror.org/0461qh336', 'sl', 1, 'https://ror.org/0461qh336 BiotehniŔki Center Naklo'),
(38481, 'https://ror.org/0463xj055', 'no_lang_code', 1, 'https://ror.org/0463xj055 SimWorx (Brazil)'),
(38482, 'https://ror.org/0464f7620', 'en', 1, 'https://ror.org/0464f7620 Whidden Memorial Hospital'),
(38483, 'https://ror.org/0465m1925', 'pt', 1, 'https://ror.org/0465m1925 Sociedade Brasileira de QuĆ­mica'),
(38484, 'https://ror.org/0467wcr64', 'no_lang_code', 1, 'https://ror.org/0467wcr64 Wavetek (Brazil)'),
(38485, 'https://ror.org/0468t7w37', 'en', 1, 'https://ror.org/0468t7w37 Palestine Technical College'),
(38486, 'https://ror.org/046c79798', 'no_lang_code', 1, 'https://ror.org/046c79798 Snƶball Film (Norway)'),
(38487, 'https://ror.org/046f4h193', 'no_lang_code', 1, 'https://ror.org/046f4h193 Abcodia (United Kingdom)'),
(38488, 'https://ror.org/046gga527', 'en', 1, 'https://ror.org/046gga527 King Khalid University Hospital'),
(38489, 'https://ror.org/046h6tv02', 'no_lang_code', 1, 'https://ror.org/046h6tv02 Ak. Grieg Norge (Norway)'),
(38490, 'https://ror.org/046j4d739', 'en', 1, 'https://ror.org/046j4d739 HƓpital gƩnƩral du Lakeshore Lakeshore General Hospital'),
(38491, 'https://ror.org/046n0zq43', 'en', 1, 'https://ror.org/046n0zq43 Wuhan Branch of the National Science Library äø­å›½ē§‘å­¦é™¢ę­¦ę±‰ę–‡ēŒ®ęƒ…ęŠ„äø­åæƒ'),
(38492, 'https://ror.org/046ntxd30', 'no_lang_code', 1, 'https://ror.org/046ntxd30 Korth Rfid (Brazil)'),
(38493, 'https://ror.org/046q1bp69', 'en', 1, 'https://ror.org/046q1bp69 Guizhou Provincial People''s Hospital č“µå·žēœäŗŗę°‘åŒ»é™¢'),
(38494, 'https://ror.org/046s0tg81', 'en', 1, 'https://ror.org/046s0tg81 Massac Memorial Hospital'),
(38495, 'https://ror.org/046sh6j17', 'en', 1, 'https://ror.org/046sh6j17 Birla Institute of Technology and Science, Pilani - Goa Campus'),
(38496, 'https://ror.org/046vamx76', 'en', 1, 'https://ror.org/046vamx76 Tripura Medical College & Dr. B.R. Ambedkar Memorial Teaching Hospital'),
(38497, 'https://ror.org/046yj6w95', 'no_lang_code', 1, 'https://ror.org/046yj6w95 GasPlas (Norway)'),
(38498, 'https://ror.org/046yjsn38', 'no_lang_code', 1, 'https://ror.org/046yjsn38 Glen Dimplex Nordic (Norway)'),
(38499, 'https://ror.org/046yyy878', 'no_lang_code', 1, 'https://ror.org/046yyy878 Seaweed Energy Solutions (Norway)'),
(38500, 'https://ror.org/0470nf974', 'en', 1, 'https://ror.org/0470nf974 Federal University Kashere'),
(38501, 'https://ror.org/0471zv972', 'en', 1, 'https://ror.org/0471zv972 Division of Chemical, Bioengineering, Environmental, and Transport Systems'),
(38502, 'https://ror.org/04743aj70', 'en', 1, 'https://ror.org/04743aj70 Wuhan Third Hospital'),
(38503, 'https://ror.org/0476s4736', 'no_lang_code', 1, 'https://ror.org/0476s4736 Fortelab (Brazil)'),
(38504, 'https://ror.org/04776x595', 'no_lang_code', 1, 'https://ror.org/04776x595 Assunta Hospital Hospital Assunta é˜æę¾å¤§åŒ»é™¢'),
(38505, 'https://ror.org/047b0ff75', 'no_lang_code', 1, 'https://ror.org/047b0ff75 Gritek (China)'),
(38506, 'https://ror.org/047cs9w11', 'no_lang_code', 1, 'https://ror.org/047cs9w11 SmartCare (Norway)'),
(38507, 'https://ror.org/047dn2208', 'no_lang_code', 1, 'https://ror.org/047dn2208 ENOVA (Norway)'),
(38508, 'https://ror.org/047eb3p71', 'no_lang_code', 1, 'https://ror.org/047eb3p71 Gudbrandsdalsmat (Norway)'),
(38509, 'https://ror.org/047ev4v84', 'es', 1, 'https://ror.org/047ev4v84 Hospital Universitario del Henares'),
(38510, 'https://ror.org/047ew8298', 'en', 1, 'https://ror.org/047ew8298 Rowan College at Burlington County'),
(38511, 'https://ror.org/047fbt408', 'no_lang_code', 1, 'https://ror.org/047fbt408 Autronica Fire and Security (Norway)'),
(38512, 'https://ror.org/047gb2729', 'no_lang_code', 1, 'https://ror.org/047gb2729 Agro Lab Plants (Brazil)'),
(38513, 'https://ror.org/047ge9e14', 'en', 1, 'https://ror.org/047ge9e14 Longmont United Hospital'),
(38514, 'https://ror.org/047jbnz84', 'no', 1, 'https://ror.org/047jbnz84 SĆør-TrĆøndelag County Authority'),
(38515, 'https://ror.org/047jhq856', 'no', 1, 'https://ror.org/047jhq856 AT Skog'),
(38516, 'https://ror.org/047nye843', 'no_lang_code', 1, 'https://ror.org/047nye843 Colly (Brazil)'),
(38517, 'https://ror.org/047pt5178', 'en', 1, 'https://ror.org/047pt5178 Institute of Problems of Mechanical Engineering Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ Российской акаГемии наук'),
(38518, 'https://ror.org/047rnn627', 'pt', 1, 'https://ror.org/047rnn627 Fundação Otorrinolaringologia'),
(38519, 'https://ror.org/047vmpf34', 'en', 1, 'https://ror.org/047vmpf34 Oxford Educational Institutions'),
(38520, 'https://ror.org/047yd9004', 'en', 1, 'https://ror.org/047yd9004 Institute for Color Science and Technology'),
(38521, 'https://ror.org/047ytwp82', 'en', 1, 'https://ror.org/047ytwp82 Karamay Central Hospital å…‹ę‹‰ēŽ›ä¾åø‚äø­åæƒåŒ»é™¢Ā·äŗ‘åŒ»é™¢'),
(38522, 'https://ror.org/0481e3r23', 'en', 1, 'https://ror.org/0481e3r23 Society for Immunotherapy of Cancer'),
(38523, 'https://ror.org/0482b5b22', 'en', 1, 'https://ror.org/0482b5b22 Brazilian Agricultural Research Corporation Empresa Brasileira de Pesquisa AgropecuƔria'),
(38524, 'https://ror.org/0482b6s78', 'no_lang_code', 1, 'https://ror.org/0482b6s78 Abili (Brazil)'),
(38525, 'https://ror.org/0483p1w82', 'en', 1, 'https://ror.org/0483p1w82 Great North Children''s Hospital'),
(38526, 'https://ror.org/0483q4e62', 'en', 1, 'https://ror.org/0483q4e62 Office of the Auditor General of Norway'),
(38527, 'https://ror.org/0483wn475', 'no', 1, 'https://ror.org/0483wn475 Coperiosenteret'),
(38528, 'https://ror.org/0486aq354', 'en', 1, 'https://ror.org/0486aq354 Whakatane Hospital'),
(38529, 'https://ror.org/04880yb19', 'en', 1, 'https://ror.org/04880yb19 LUdeS University Libera Universita degli Studi di Scienze Umane e Tecnologiche di Lugano'),
(38530, 'https://ror.org/048b5ng26', 'no_lang_code', 1, 'https://ror.org/048b5ng26 Covance (Australia)'),
(38531, 'https://ror.org/048c3ks84', 'no_lang_code', 1, 'https://ror.org/048c3ks84 3GSolar (Norway)'),
(38532, 'https://ror.org/048cn7s66', 'en', 1, 'https://ror.org/048cn7s66 MedCoast Scandinavia'),
(38533, 'https://ror.org/048fm8466', 'en', 1, 'https://ror.org/048fm8466 Edna Adan Maternity Hospital'),
(38534, 'https://ror.org/048gskb76', 'no_lang_code', 1, 'https://ror.org/048gskb76 Novamedia (Italy)'),
(38535, 'https://ror.org/048k0ye22', 'no_lang_code', 1, 'https://ror.org/048k0ye22 Technes AgrĆ­cola (Brazil)'),
(38536, 'https://ror.org/048ke3y07', 'en', 1, 'https://ror.org/048ke3y07 Hindu Mission Hospital'),
(38537, 'https://ror.org/048p06y15', 'en', 1, 'https://ror.org/048p06y15 Prince Aly Khan Hospital'),
(38538, 'https://ror.org/048pv7j43', 'no_lang_code', 1, 'https://ror.org/048pv7j43 BMT Group (Brazil)'),
(38539, 'https://ror.org/048snr569', 'en', 1, 'https://ror.org/048snr569 Boulder City Hospital'),
(38540, 'https://ror.org/048vdhs48', 'de', 1, 'https://ror.org/048vdhs48 Common Library Network Verbundzentrale des GBV'),
(38541, 'https://ror.org/048vzmn57', 'en', 1, 'https://ror.org/048vzmn57 Fraunhofer Institute for Surface Engineering and Thin Films Fraunhofer-Institut für Schicht- und Oberflächentechnik'),
(38542, 'https://ror.org/048wdxr20', 'no_lang_code', 1, 'https://ror.org/048wdxr20 Sarojini Devi Eye Hospital'),
(38543, 'https://ror.org/048xmz857', 'en', 1, 'https://ror.org/048xmz857 Kankakee State Hospital'),
(38544, 'https://ror.org/048xxxv92', 'en', 1, 'https://ror.org/048xxxv92 Toowoomba Hospital'),
(38545, 'https://ror.org/048ym4d69', 'it', 1, 'https://ror.org/048ym4d69 Azienda USL di Pescara'),
(38546, 'https://ror.org/0491f2496', 'en', 1, 'https://ror.org/0491f2496 Dr Neville Fernando Teaching Hospital'),
(38547, 'https://ror.org/0493ajd33', 'no_lang_code', 1, 'https://ror.org/0493ajd33 Plexision (United States)'),
(38548, 'https://ror.org/0493m8x04', 'en', 1, 'https://ror.org/0493m8x04 Guangdong Province Women and Children Hospital'),
(38549, 'https://ror.org/0496qn750', 'no', 1, 'https://ror.org/0496qn750 Lyskultur'),
(38550, 'https://ror.org/0498mas94', 'pt', 1, 'https://ror.org/0498mas94 Associação Brasileira de Ciência Política'),
(38551, 'https://ror.org/0498n0s19', 'no_lang_code', 1, 'https://ror.org/0498n0s19 SMA Tecnologia (Brazil)'),
(38552, 'https://ror.org/0499krd69', 'fr', 1, 'https://ror.org/0499krd69 Museum of Civilization MusƩe de la Civilisation'),
(38553, 'https://ror.org/049ayn705', 'no_lang_code', 1, 'https://ror.org/049ayn705 Huta Stalowa Wola (Poland)'),
(38554, 'https://ror.org/049dr2b41', 'no_lang_code', 1, 'https://ror.org/049dr2b41 ZF Friedrichshafen (Belgium)'),
(38555, 'https://ror.org/049epw866', 'en', 1, 'https://ror.org/049epw866 Shenzhen Shajing Affiliated Hospital of Guangzhou Medical University'),
(38556, 'https://ror.org/049fsr430', 'no_lang_code', 1, 'https://ror.org/049fsr430 PMEC Sistemas (Brazil)'),
(38557, 'https://ror.org/049gbkg80', 'no_lang_code', 1, 'https://ror.org/049gbkg80 Acona (Norway)'),
(38558, 'https://ror.org/049k17734', 'no_lang_code', 1, 'https://ror.org/049k17734 Medfiles (Finland)'),
(38559, 'https://ror.org/049k3fp61', 'en', 1, 'https://ror.org/049k3fp61 American Society for Eighteenth-Century Studies'),
(38560, 'https://ror.org/049k8ev11', 'en', 1, 'https://ror.org/049k8ev11 Society of Open Innovation Technology Market & Complexity'),
(38561, 'https://ror.org/049nrz535', 'en', 1, 'https://ror.org/049nrz535 Department of Scientific and Industrial Research'),
(38562, 'https://ror.org/049pr6f34', 'en', 1, 'https://ror.org/049pr6f34 Canadian Society of Allergy and Clinical Immunology'),
(38563, 'https://ror.org/049pxhr81', 'en', 1, 'https://ror.org/049pxhr81 The Nairobi Women’s Hospital'),
(38564, 'https://ror.org/049qcgg02', 'no_lang_code', 1, 'https://ror.org/049qcgg02 Redox (Norway)'),
(38565, 'https://ror.org/049vhtm85', 'no_lang_code', 1, 'https://ror.org/049vhtm85 Timpel (Brazil)'),
(38566, 'https://ror.org/049vsq398', 'en', 1, 'https://ror.org/049vsq398 Affiliated Hospital of Hebei University'),
(38567, 'https://ror.org/049whr973', 'no_lang_code', 1, 'https://ror.org/049whr973 Teleplan Consulting (Norway)'),
(38568, 'https://ror.org/049xxah85', 'en', 1, 'https://ror.org/049xxah85 Deutsche Gesellschaft für Auswärtige Politik German Council on Foreign Relations'),
(38569, 'https://ror.org/049ymah45', 'en', 1, 'https://ror.org/049ymah45 Bệnh viện Việt Đức Viet Duc Hospital'),
(38570, 'https://ror.org/04a021880', 'no_lang_code', 1, 'https://ror.org/04a021880 Optolink (Russia)'),
(38571, 'https://ror.org/04a10z221', 'no_lang_code', 1, 'https://ror.org/04a10z221 Consafe Logistics (Norway)'),
(38572, 'https://ror.org/04a1amm82', 'no_lang_code', 1, 'https://ror.org/04a1amm82 ZRE Gdańsk (Poland)'),
(38573, 'https://ror.org/04a1h1h05', 'no_lang_code', 1, 'https://ror.org/04a1h1h05 Smart Solution (Norway)'),
(38574, 'https://ror.org/04a24qj50', 'no', 1, 'https://ror.org/04a24qj50 Stiftelsen Bergensklinikkene'),
(38575, 'https://ror.org/04a4nak07', 'pt', 1, 'https://ror.org/04a4nak07 Instituto Polis'),
(38576, 'https://ror.org/04a57ke25', 'no_lang_code', 1, 'https://ror.org/04a57ke25 PKP Group (Poland)'),
(38577, 'https://ror.org/04a6scr36', 'pt', 1, 'https://ror.org/04a6scr36 Sociedade de Nefrologia do Estado de SĆ£o Paulo'),
(38578, 'https://ror.org/04a94ee43', 'en', 1, 'https://ror.org/04a94ee43 Sanko University'),
(38579, 'https://ror.org/04abbvn76', 'no_lang_code', 1, 'https://ror.org/04abbvn76 ECOsubsea (Norway)'),
(38580, 'https://ror.org/04abccf14', 'no_lang_code', 1, 'https://ror.org/04abccf14 Lee''s Pharmaceutical (China)'),
(38581, 'https://ror.org/04acsr153', 'en', 1, 'https://ror.org/04acsr153 Academy of Opto-Electronics 中国科学院光电研究院'),
(38582, 'https://ror.org/04adbw927', 'no_lang_code', 1, 'https://ror.org/04adbw927 Inner Mongolia Yili Industrial Group (China) 伊利集团'),
(38583, 'https://ror.org/04adqmv58', 'cs', 1, 'https://ror.org/04adqmv58 Centrum kardiovaskulĆ”rnĆ­ a transplantačnĆ­ chirurgie'),
(38584, 'https://ror.org/04aenby30', 'en', 1, 'https://ror.org/04aenby30 African University College of Communications'),
(38585, 'https://ror.org/04afck573', 'no_lang_code', 1, 'https://ror.org/04afck573 Thermaflex (Poland)'),
(38586, 'https://ror.org/04agghx84', 'en', 1, 'https://ror.org/04agghx84 MarLife (Norway)'),
(38587, 'https://ror.org/04ajr8041', 'no_lang_code', 1, 'https://ror.org/04ajr8041 Gastronomisk Institutt'),
(38588, 'https://ror.org/04ajwkn20', 'en', 1, 'https://ror.org/04ajwkn20 Gangnam Severance Hospital'),
(38589, 'https://ror.org/04am2ad87', 'no_lang_code', 1, 'https://ror.org/04am2ad87 Seaworks (Norway)'),
(38590, 'https://ror.org/04am65f10', 'sl', 1, 'https://ror.org/04am65f10 Skupina IRI Ljubljana'),
(38591, 'https://ror.org/04ap5x931', 'en', 1, 'https://ror.org/04ap5x931 Division of Physics'),
(38592, 'https://ror.org/04apegc06', 'no_lang_code', 1, 'https://ror.org/04apegc06 Reactive Metal Particles (Norway)'),
(38593, 'https://ror.org/04aq1ms94', 'en', 1, 'https://ror.org/04aq1ms94 Eastern Shore Memorial Hospital'),
(38594, 'https://ror.org/04arg4k48', 'no_lang_code', 1, 'https://ror.org/04arg4k48 Idea Electronic Systems (Brazil) Idea Sistemas EletrƓnicos'),
(38595, 'https://ror.org/04arjdq12', 'no_lang_code', 1, 'https://ror.org/04arjdq12 Sekal (Norway)'),
(38596, 'https://ror.org/04atwyt60', 'pt', 1, 'https://ror.org/04atwyt60 Fundação Armando Alvares Penteado, Fundação Armando Álvares Penteado'),
(38597, 'https://ror.org/04avbbr42', 'no_lang_code', 1, 'https://ror.org/04avbbr42 Nanobionics (Brazil)'),
(38598, 'https://ror.org/04avk7z79', 'en', 1, 'https://ror.org/04avk7z79 Sacred Heart Hospital'),
(38599, 'https://ror.org/04aynjg70', 'no_lang_code', 1, 'https://ror.org/04aynjg70 Rising Star Products (Norway)'),
(38600, 'https://ror.org/04aza8v20', 'no_lang_code', 1, 'https://ror.org/04aza8v20 Wireless Power & Communication (Norway)'),
(38601, 'https://ror.org/04b0jeh75', 'pt', 1, 'https://ror.org/04b0jeh75 Associação Nacional de Transportes Públicos'),
(38602, 'https://ror.org/04b14sj77', 'en', 1, 'https://ror.org/04b14sj77 Peterborough Regional College'),
(38603, 'https://ror.org/04b3dbk68', 'en', 1, 'https://ror.org/04b3dbk68 Institute for Comparative Research in Human Culture'),
(38604, 'https://ror.org/04b40n161', 'no_lang_code', 1, 'https://ror.org/04b40n161 Seria (Norway)'),
(38605, 'https://ror.org/04b4kkz92', 'no_lang_code', 1, 'https://ror.org/04b4kkz92 MedNose (Norway)'),
(38606, 'https://ror.org/04b64cp31', 'en', 1, 'https://ror.org/04b64cp31 HƓpital Sainte-Anne Ste. Anne''s Hospital'),
(38607, 'https://ror.org/04b709v36', 'no_lang_code', 1, 'https://ror.org/04b709v36 Calora Subsea (Norway)'),
(38608, 'https://ror.org/04b90kd02', 'no_lang_code', 1, 'https://ror.org/04b90kd02 Fultec Inox (Brazil)'),
(38609, 'https://ror.org/04baw4297', 'en', 1, 'https://ror.org/04baw4297 Jiangmen Central Hospital'),
(38610, 'https://ror.org/04bbesv37', 'en', 1, 'https://ror.org/04bbesv37 Adventist International Institute of Advanced Studies'),
(38611, 'https://ror.org/04bcp1r41', 'no_lang_code', 1, 'https://ror.org/04bcp1r41 BƦrgƄrden Ƙstre Enger (Norway)'),
(38612, 'https://ror.org/04bdbag67', 'no_lang_code', 1, 'https://ror.org/04bdbag67 Geomatikk (Norway)'),
(38613, 'https://ror.org/04bfpy692', 'sl', 1, 'https://ror.org/04bfpy692 S&T Slovenija'),
(38614, 'https://ror.org/04bjfzn83', 'fr', 1, 'https://ror.org/04bjfzn83 Centre Hospitalier d''Albi'),
(38615, 'https://ror.org/04bkje958', 'de', 1, 'https://ror.org/04bkje958 Kliniken Schmieder'),
(38616, 'https://ror.org/04bmqy315', 'fr', 1, 'https://ror.org/04bmqy315 Centre Hospitalier Universitaire d’Oujda'),
(38617, 'https://ror.org/04bndcy38', 'no_lang_code', 1, 'https://ror.org/04bndcy38 Remstat (Poland)'),
(38618, 'https://ror.org/04bpra047', 'no_lang_code', 1, 'https://ror.org/04bpra047 Mustad (Norway)'),
(38619, 'https://ror.org/04bpvsh10', 'no_lang_code', 1, 'https://ror.org/04bpvsh10 Epsis (Norway)'),
(38620, 'https://ror.org/04bsr5107', 'no_lang_code', 1, 'https://ror.org/04bsr5107 Helly Hansen (Norway)'),
(38621, 'https://ror.org/04bsrdh64', 'en', 1, 'https://ror.org/04bsrdh64 StrĆømme Foundation'),
(38622, 'https://ror.org/04bst6v91', 'en', 1, 'https://ror.org/04bst6v91 Winnie Palmer Hospital for Women & Babies'),
(38623, 'https://ror.org/04bw0hg47', 'en', 1, 'https://ror.org/04bw0hg47 Faculty of Design'),
(38624, 'https://ror.org/04bwvvd57', 'no_lang_code', 1, 'https://ror.org/04bwvvd57 SAS Institute (Norway)'),
(38625, 'https://ror.org/04bxk0j07', 'no_lang_code', 1, 'https://ror.org/04bxk0j07 NĆŗcleo de Pesquisas Aplicadas (Brazil)'),
(38626, 'https://ror.org/04bxrwt74', 'no_lang_code', 1, 'https://ror.org/04bxrwt74 Environgas (Norway)'),
(38627, 'https://ror.org/04bykga04', 'en', 1, 'https://ror.org/04bykga04 ASCE Foundation'),
(38628, 'https://ror.org/04bz3d640', 'en', 1, 'https://ror.org/04bz3d640 Kitovu Hospital'),
(38629, 'https://ror.org/04c0mxs15', 'no_lang_code', 1, 'https://ror.org/04c0mxs15 Leif HĆøegh (Norway)'),
(38630, 'https://ror.org/04c1v2b17', 'en', 1, 'https://ror.org/04c1v2b17 Center for Innovation'),
(38631, 'https://ror.org/04c2cdz27', 'no', 1, 'https://ror.org/04c2cdz27 Norsk FjĆørfelag'),
(38632, 'https://ror.org/04c318s33', 'en', 1, 'https://ror.org/04c318s33 Camden and Campbelltown Hospitals'),
(38633, 'https://ror.org/04c6t2v13', 'no_lang_code', 1, 'https://ror.org/04c6t2v13 TDJ (Poland)'),
(38634, 'https://ror.org/04c7hbg15', 'no_lang_code', 1, 'https://ror.org/04c7hbg15 Norwegian Graphite (Norway)'),
(38635, 'https://ror.org/04c9n9394', 'no_lang_code', 1, 'https://ror.org/04c9n9394 Rotoboost (Norway)'),
(38636, 'https://ror.org/04cbhvr29', 'no_lang_code', 1, 'https://ror.org/04cbhvr29 PartnerPlast (Norway)'),
(38637, 'https://ror.org/04ce4rf90', 'en', 1, 'https://ror.org/04ce4rf90 Dr. Rajendra Prasad Government Medical College'),
(38638, 'https://ror.org/04cgmg165', 'en', 1, 'https://ror.org/04cgmg165 Wuhan Sixth Hospital'),
(38639, 'https://ror.org/04chwrz02', 'no_lang_code', 1, 'https://ror.org/04chwrz02 Nord-TrĆøndelag Elektrisitetsverk (Norway)'),
(38640, 'https://ror.org/04cjp6w49', 'no_lang_code', 1, 'https://ror.org/04cjp6w49 Tezca (Brazil)'),
(38641, 'https://ror.org/04ckq7q54', 'no', 1, 'https://ror.org/04ckq7q54 Direktoratet for Ćøkonomistyring'),
(38642, 'https://ror.org/04cp2as26', 'en', 1, 'https://ror.org/04cp2as26 Learn By Motion'),
(38643, 'https://ror.org/04crred05', 'en', 1, 'https://ror.org/04crred05 Paradox Sports'),
(38644, 'https://ror.org/04csdp142', 'no_lang_code', 1, 'https://ror.org/04csdp142 Algae Biotecnologia (Brazil)'),
(38645, 'https://ror.org/04csfg491', 'en', 1, 'https://ror.org/04csfg491 Bedford Orthopedic Hospital'),
(38646, 'https://ror.org/04ctbxy49', 'en', 1, 'https://ror.org/04ctbxy49 VIA University College'),
(38647, 'https://ror.org/04ctcce15', 'en', 1, 'https://ror.org/04ctcce15 Norwegian Ports Association'),
(38648, 'https://ror.org/04cvmcb43', 'en', 1, 'https://ror.org/04cvmcb43 Bialystok School of Economics'),
(38649, 'https://ror.org/04cwrrv92', 'de', 1, 'https://ror.org/04cwrrv92 Praxis für Humangenetik'),
(38650, 'https://ror.org/04cwzs398', 'en', 1, 'https://ror.org/04cwzs398 Alvin Community College'),
(38651, 'https://ror.org/04cxs2q71', 'no_lang_code', 1, 'https://ror.org/04cxs2q71 Createc (United Kingdom)'),
(38652, 'https://ror.org/04cymm537', 'es', 1, 'https://ror.org/04cymm537 Instituto Tecnológico de Ciudad Madero'),
(38653, 'https://ror.org/04d1j9a12', 'no_lang_code', 1, 'https://ror.org/04d1j9a12 Lanopro (Norway)'),
(38654, 'https://ror.org/04d1z5w79', 'en', 1, 'https://ror.org/04d1z5w79 Gena'),
(38655, 'https://ror.org/04d25v571', 'no_lang_code', 1, 'https://ror.org/04d25v571 Cosmo Bio (Japan)'),
(38656, 'https://ror.org/04d2fgr32', 'no_lang_code', 1, 'https://ror.org/04d2fgr32 Zenit (Poland)'),
(38657, 'https://ror.org/04d3fgy68', 'no_lang_code', 1, 'https://ror.org/04d3fgy68 Svovel (Norway)'),
(38658, 'https://ror.org/04d3sf574', 'en', 1, 'https://ror.org/04d3sf574 Henan Provincial Chest Hospital ę²³å—ēœčƒøē§‘åŒ»é™¢'),
(38659, 'https://ror.org/04d4bt482', 'en', 1, 'https://ror.org/04d4bt482 Isra University Ų¬Ų§Ł…Ų¹Ų© ال؄سراؔ'),
(38660, 'https://ror.org/04d5fry87', 'no_lang_code', 1, 'https://ror.org/04d5fry87 Hyejeon College ķ˜œģ „ėŒ€ķ•™źµ'),
(38661, 'https://ror.org/04d5rm267', 'en', 1, 'https://ror.org/04d5rm267 Chesapeake College'),
(38662, 'https://ror.org/04d68yh59', 'en', 1, 'https://ror.org/04d68yh59 IILM Institute for Higher Education'),
(38663, 'https://ror.org/04d6hs296', 'no_lang_code', 1, 'https://ror.org/04d6hs296 Centagro (Brazil)'),
(38664, 'https://ror.org/04d8dwz89', 'no_lang_code', 1, 'https://ror.org/04d8dwz89 Bio Soja Group (Brazil) Grupo Bio Soja'),
(38665, 'https://ror.org/04da9qq88', 'no_lang_code', 1, 'https://ror.org/04da9qq88 PaleBlue (Norway)'),
(38666, 'https://ror.org/04dacm347', 'no_lang_code', 1, 'https://ror.org/04dacm347 Mentum (Norway)'),
(38667, 'https://ror.org/04dbasv67', 'en', 1, 'https://ror.org/04dbasv67 Canmore General Hospital'),
(38668, 'https://ror.org/04dcrct74', 'no_lang_code', 1, 'https://ror.org/04dcrct74 Exova Metech (Norway)'),
(38669, 'https://ror.org/04dcv0236', 'en', 1, 'https://ror.org/04dcv0236 Norwegian State Housing Bank'),
(38670, 'https://ror.org/04ddxpg37', 'en', 1, 'https://ror.org/04ddxpg37 Albyn Hospital'),
(38671, 'https://ror.org/04dh6fw56', 'en', 1, 'https://ror.org/04dh6fw56 Instituto Tecnológico de Jiquilpan Technological Institute of Jiquilpan'),
(38672, 'https://ror.org/04dhkam06', 'en', 1, 'https://ror.org/04dhkam06 Los Robles Hospital & Medical Center'),
(38673, 'https://ror.org/04dhpvj28', 'no_lang_code', 1, 'https://ror.org/04dhpvj28 Líbera Tecnologia e Inovação (Brazil)'),
(38674, 'https://ror.org/04dj1na10', 'en', 1, 'https://ror.org/04dj1na10 University College Lillebaelt University College LillebƦlt'),
(38675, 'https://ror.org/04dj9qm44', 'pt', 1, 'https://ror.org/04dj9qm44 Laboratório Biosintesis P&D'),
(38676, 'https://ror.org/04djf6d46', 'no_lang_code', 1, 'https://ror.org/04djf6d46 Sava (Slovenia)'),
(38677, 'https://ror.org/04dm8yx03', 'en', 1, 'https://ror.org/04dm8yx03 North-West State Technical University'),
(38678, 'https://ror.org/04dmsj331', 'no_lang_code', 1, 'https://ror.org/04dmsj331 Mylifeproducts (Norway)'),
(38679, 'https://ror.org/04dp8fd47', 'en', 1, 'https://ror.org/04dp8fd47 Jubilee Hospital'),
(38680, 'https://ror.org/04dpavv81', 'no_lang_code', 1, 'https://ror.org/04dpavv81 I 2 Družba za ZaložniŔtvo Izobraževanje in Raziskovanje'),
(38681, 'https://ror.org/04dq2e820', 'pt', 1, 'https://ror.org/04dq2e820 Associação Brasileira de Psicoterapia e Medicina Comportamental'),
(38682, 'https://ror.org/04dq5k727', 'en', 1, 'https://ror.org/04dq5k727 BMI The Meriden Hospital'),
(38683, 'https://ror.org/04dqh1705', 'no_lang_code', 1, 'https://ror.org/04dqh1705 Kayros Ambiental e AgrĆ­cola (Brazil)'),
(38684, 'https://ror.org/04dr0x243', 'en', 1, 'https://ror.org/04dr0x243 Arroyo Grande Community Hospital'),
(38685, 'https://ror.org/04drf3w31', 'no_lang_code', 1, 'https://ror.org/04drf3w31 Dencril (Brazil)'),
(38686, 'https://ror.org/04dwnx646', 'no_lang_code', 1, 'https://ror.org/04dwnx646 Smi Human (Norway)'),
(38687, 'https://ror.org/04dz9hf76', 'no_lang_code', 1, 'https://ror.org/04dz9hf76 Onsite Treatment Technologies (Norway)'),
(38688, 'https://ror.org/04e0ysh28', 'no_lang_code', 1, 'https://ror.org/04e0ysh28 Trouw Nutrition (Brazil)'),
(38689, 'https://ror.org/04e1yzk82', 'en', 1, 'https://ror.org/04e1yzk82 Robert Schumann Hochschule Robert Schumann University of Music and Media'),
(38690, 'https://ror.org/04e25k642', 'no_lang_code', 1, 'https://ror.org/04e25k642 Metal Plasma (Brazil)'),
(38691, 'https://ror.org/04e3aws14', 'en', 1, 'https://ror.org/04e3aws14 Farooq Hospital'),
(38692, 'https://ror.org/04e4aky44', 'en', 1, 'https://ror.org/04e4aky44 American Fork Hospital'),
(38693, 'https://ror.org/04e7dhd60', 'en', 1, 'https://ror.org/04e7dhd60 Vermont State Hospital'),
(38694, 'https://ror.org/04e7zd380', 'en', 1, 'https://ror.org/04e7zd380 Berlin Central and Regional Library Zentral- und Landesbibliothek Berlin'),
(38695, 'https://ror.org/04e99wk33', 'no_lang_code', 1, 'https://ror.org/04e99wk33 Nygon (Norway)'),
(38696, 'https://ror.org/04e9sck44', 'no_lang_code', 1, 'https://ror.org/04e9sck44 Visma (Norway)'),
(38697, 'https://ror.org/04ea07q57', 'no_lang_code', 1, 'https://ror.org/04ea07q57 Mytech (Japan)'),
(38698, 'https://ror.org/04eac2y27', 'en', 1, 'https://ror.org/04eac2y27 Institute for Project Management and Information Technology'),
(38699, 'https://ror.org/04ebj7x87', 'no_lang_code', 1, 'https://ror.org/04ebj7x87 Genbody (South Korea)'),
(38700, 'https://ror.org/04eefyt88', 'en', 1, 'https://ror.org/04eefyt88 Bhisho Provincial Hospital'),
(38701, 'https://ror.org/04efgec06', 'no', 1, 'https://ror.org/04efgec06 Sikkerhetssenteret RĆørvik'),
(38702, 'https://ror.org/04eh3ca90', 'no_lang_code', 1, 'https://ror.org/04eh3ca90 WuXi AppTec (China)'),
(38703, 'https://ror.org/04ehae637', 'no_lang_code', 1, 'https://ror.org/04ehae637 Therma Industri (Norway)'),
(38704, 'https://ror.org/04ehecb51', 'no_lang_code', 1, 'https://ror.org/04ehecb51 Intrapoint (Norway)'),
(38705, 'https://ror.org/04ehzpr81', 'no_lang_code', 1, 'https://ror.org/04ehzpr81 Odfjell Drilling (Norway)'),
(38706, 'https://ror.org/04ejtfc04', 'no_lang_code', 1, 'https://ror.org/04ejtfc04 Biobe (Norway)'),
(38707, 'https://ror.org/04ejvay74', 'de', 1, 'https://ror.org/04ejvay74 Prosper Hospital'),
(38708, 'https://ror.org/04enaaj19', 'en', 1, 'https://ror.org/04enaaj19 Volgograd State Agricultural University'),
(38709, 'https://ror.org/04epdwv63', 'no_lang_code', 1, 'https://ror.org/04epdwv63 Termall (Poland)'),
(38710, 'https://ror.org/04er4p734', 'no_lang_code', 1, 'https://ror.org/04er4p734 Itabras Mineração (Brazil)'),
(38711, 'https://ror.org/04err9585', 'no_lang_code', 1, 'https://ror.org/04err9585 Norges Vel (Norway)'),
(38712, 'https://ror.org/04esh0d76', 'en', 1, 'https://ror.org/04esh0d76 Melrose-Wakefield Hospital'),
(38713, 'https://ror.org/04etf9p48', 'it', 1, 'https://ror.org/04etf9p48 Ospedali Riuniti San Giovanni di Dio e Ruggi d''Aragona'),
(38714, 'https://ror.org/04evhzp91', 'fr', 1, 'https://ror.org/04evhzp91 Agence Science Presse'),
(38715, 'https://ror.org/04evkdk49', 'no_lang_code', 1, 'https://ror.org/04evkdk49 MEMS (Brazil)'),
(38716, 'https://ror.org/04evrma49', 'no_lang_code', 1, 'https://ror.org/04evrma49 Nicarnica Aviation (Norway)'),
(38717, 'https://ror.org/04ew4eb36', 'en', 1, 'https://ror.org/04ew4eb36 St John of God Hospital'),
(38718, 'https://ror.org/04ey7f468', 'en', 1, 'https://ror.org/04ey7f468 Saint Mary''s Hospital Luodong'),
(38719, 'https://ror.org/04f0f7630', 'en', 1, 'https://ror.org/04f0f7630 Centro Conjunto de Advertencia de Tifones Joint Typhoon Warning Center'),
(38720, 'https://ror.org/04f2zcj37', 'no_lang_code', 1, 'https://ror.org/04f2zcj37 PoliMaT Centre of Excellence (Slovenia)'),
(38721, 'https://ror.org/04f330m50', 'en', 1, 'https://ror.org/04f330m50 Clovis Community College'),
(38722, 'https://ror.org/04f501w39', 'no_lang_code', 1, 'https://ror.org/04f501w39 Aseon (Norway)'),
(38723, 'https://ror.org/04f7crx66', 'en', 1, 'https://ror.org/04f7crx66 Red Deer Regional Hospital'),
(38724, 'https://ror.org/04f970v93', 'en', 1, 'https://ror.org/04f970v93 Fifth Affiliated Hospital of Xinjiang Medical University'),
(38725, 'https://ror.org/04faqmv97', 'pl', 1, 'https://ror.org/04faqmv97 Stowarzyszenie Łódzki Klub Amazonka'),
(38726, 'https://ror.org/04fbf2x65', 'no_lang_code', 1, 'https://ror.org/04fbf2x65 Wojskowe Zakłady Motoryzacyjne (Poland)'),
(38727, 'https://ror.org/04fc0n424', 'no_lang_code', 1, 'https://ror.org/04fc0n424 Colifast (Norway)'),
(38728, 'https://ror.org/04fc2q781', 'en', 1, 'https://ror.org/04fc2q781 Divisional Headquarters Teaching Hospital Mirpur'),
(38729, 'https://ror.org/04fcfgh72', 'en', 1, 'https://ror.org/04fcfgh72 Bayshore Community Hospital'),
(38730, 'https://ror.org/04fd1r707', 'no_lang_code', 1, 'https://ror.org/04fd1r707 Kverneland Group (Norway)'),
(38731, 'https://ror.org/04fe46645', 'en', 1, 'https://ror.org/04fe46645 University Hospital in Halle UniversitƤtsklinikum Halle'),
(38732, 'https://ror.org/04fe8dr29', 'no_lang_code', 1, 'https://ror.org/04fe8dr29 Biological Consulting Services (United States)'),
(38733, 'https://ror.org/04febtn50', 'no_lang_code', 1, 'https://ror.org/04febtn50 FinnMedi (Finland)'),
(38734, 'https://ror.org/04fehbe54', 'no_lang_code', 1, 'https://ror.org/04fehbe54 Salonit Anhovo (Slovenia)'),
(38735, 'https://ror.org/04fehsp44', 'en', 1, 'https://ror.org/04fehsp44 Liv Hospital'),
(38736, 'https://ror.org/04ffwnd85', 'en', 1, 'https://ror.org/04ffwnd85 Epsom Hospital'),
(38737, 'https://ror.org/04fgxrt38', 'en', 1, 'https://ror.org/04fgxrt38 Kirsch Foundation'),
(38738, 'https://ror.org/04fh8sh30', 'pt', 1, 'https://ror.org/04fh8sh30 Sociedade Brasileira de Estudos Interdisciplinares da Comunicação'),
(38739, 'https://ror.org/04fhs8414', 'no', 1, 'https://ror.org/04fhs8414 OppegƄrd Kommune'),
(38740, 'https://ror.org/04fhvfc61', 'no_lang_code', 1, 'https://ror.org/04fhvfc61 Olivita (Norway)'),
(38741, 'https://ror.org/04fjgxw20', 'pt', 1, 'https://ror.org/04fjgxw20 NĆŗcleo Paradigma'),
(38742, 'https://ror.org/04fm9y474', 'en', 1, 'https://ror.org/04fm9y474 North East University'),
(38743, 'https://ror.org/04fmx6120', 'no_lang_code', 1, 'https://ror.org/04fmx6120 Chaotic.com (United States)'),
(38744, 'https://ror.org/04fnhr972', 'en', 1, 'https://ror.org/04fnhr972 He Eye Hospital'),
(38745, 'https://ror.org/04fnkjm97', 'en', 1, 'https://ror.org/04fnkjm97 South Norway European Office'),
(38746, 'https://ror.org/04fr8n552', 'no_lang_code', 1, 'https://ror.org/04fr8n552 Elea iC (Slovenia)'),
(38747, 'https://ror.org/04frfb960', 'en', 1, 'https://ror.org/04frfb960 Mackay Base Hospital'),
(38748, 'https://ror.org/04ftf3m30', 'en', 1, 'https://ror.org/04ftf3m30 Fort Ticonderoga Association'),
(38749, 'https://ror.org/04fx4vz25', 'en', 1, 'https://ror.org/04fx4vz25 Community Health Centre Ljubljana'),
(38750, 'https://ror.org/04fzjj956', 'no_lang_code', 1, 'https://ror.org/04fzjj956 NTNU Technology Transfer (Norway)'),
(38751, 'https://ror.org/04g138p23', 'de', 1, 'https://ror.org/04g138p23 NiedersƤchsisches Landesarchiv'),
(38752, 'https://ror.org/04g471954', 'no_lang_code', 1, 'https://ror.org/04g471954 Ecotec Equipment and Systems (Brazil)'),
(38753, 'https://ror.org/04g6zen34', 'en', 1, 'https://ror.org/04g6zen34 Bibliotheca Hertziana - Max-Planck-Institut für Kunstgeschichte Bibliotheca Hertziana – Max Planck Institute for Art History'),
(38754, 'https://ror.org/04g7c7q49', 'no_lang_code', 1, 'https://ror.org/04g7c7q49 ALIS Engineering and Systems Solutions (Brazil) ALIS SoluƧƵes em Engenharia e Sistemas'),
(38755, 'https://ror.org/04g9pp561', 'no_lang_code', 1, 'https://ror.org/04g9pp561 Fortis Hospital'),
(38756, 'https://ror.org/04gaydk29', 'no_lang_code', 1, 'https://ror.org/04gaydk29 Piql (Norway)'),
(38757, 'https://ror.org/04gc45324', 'no_lang_code', 1, 'https://ror.org/04gc45324 Jool Capital Partner (Norway)'),
(38758, 'https://ror.org/04gcrjz11', 'en', 1, 'https://ror.org/04gcrjz11 Sir Sunderlal Hospital'),
(38759, 'https://ror.org/04gd7mk44', 'no_lang_code', 1, 'https://ror.org/04gd7mk44 Aanderaa (Norway)'),
(38760, 'https://ror.org/04gens608', 'no_lang_code', 1, 'https://ror.org/04gens608 NorTronic (Norway)'),
(38761, 'https://ror.org/04gfj4836', 'no_lang_code', 1, 'https://ror.org/04gfj4836 Vipharm (Poland)'),
(38762, 'https://ror.org/04ghzbn43', 'no_lang_code', 1, 'https://ror.org/04ghzbn43 ASPA (Poland)'),
(38763, 'https://ror.org/04gjng233', 'no_lang_code', 1, 'https://ror.org/04gjng233 Nanofitotec (Brazil)');
INSERT INTO `rors` VALUES
(38764, 'https://ror.org/04gnscf86', 'no_lang_code', 1, 'https://ror.org/04gnscf86 Fredrikstad Energi (Norway)'),
(38765, 'https://ror.org/04gnvkj51', 'pt', 1, 'https://ror.org/04gnvkj51 Instituto Cultural Cravo Albin'),
(38766, 'https://ror.org/04gp4me61', 'no', 1, 'https://ror.org/04gp4me61 Norsk Medieforskerlag'),
(38767, 'https://ror.org/04gqcjz27', 'no_lang_code', 1, 'https://ror.org/04gqcjz27 Scatec (Norway)'),
(38768, 'https://ror.org/04grq3m63', 'en', 1, 'https://ror.org/04grq3m63 American Heart of Poland'),
(38769, 'https://ror.org/04gs6v336', 'en', 1, 'https://ror.org/04gs6v336 Jining First People''s Hospital ęµŽå®åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(38770, 'https://ror.org/04gsfat44', 'no_lang_code', 1, 'https://ror.org/04gsfat44 GeoPlayGround (Norway)'),
(38771, 'https://ror.org/04gsxzk49', 'no_lang_code', 1, 'https://ror.org/04gsxzk49 Gran Tre (Norway)'),
(38772, 'https://ror.org/04gtryb63', 'no_lang_code', 1, 'https://ror.org/04gtryb63 Life Science Center Düsseldorf (Germany)'),
(38773, 'https://ror.org/04gwybq17', 'en', 1, 'https://ror.org/04gwybq17 Welding Institute (Slovenia)'),
(38774, 'https://ror.org/04gyfva88', 'no_lang_code', 1, 'https://ror.org/04gyfva88 Bio Controle (Brazil)'),
(38775, 'https://ror.org/04gzs4s06', 'es', 1, 'https://ror.org/04gzs4s06 Hospital BritƔnico'),
(38776, 'https://ror.org/04gztv912', 'no_lang_code', 1, 'https://ror.org/04gztv912 Etac (Norway)'),
(38777, 'https://ror.org/04gzw7t05', 'en', 1, 'https://ror.org/04gzw7t05 Coahoma Community College'),
(38778, 'https://ror.org/04h0zn247', 'no_lang_code', 1, 'https://ror.org/04h0zn247 Chiron (Norway)'),
(38779, 'https://ror.org/04h1dx218', 'no_lang_code', 1, 'https://ror.org/04h1dx218 Wasko (Poland)'),
(38780, 'https://ror.org/04h1n6t82', 'no_lang_code', 1, 'https://ror.org/04h1n6t82 Bartec Pixavi (Norway)'),
(38781, 'https://ror.org/04h29cm67', 'no_lang_code', 1, 'https://ror.org/04h29cm67'),
(38782, 'https://ror.org/04h3xje09', 'en', 1, 'https://ror.org/04h3xje09 College of Podiatry'),
(38783, 'https://ror.org/04h84kq35', 'en', 1, 'https://ror.org/04h84kq35 Sobell House'),
(38784, 'https://ror.org/04h8qa024', 'no_lang_code', 1, 'https://ror.org/04h8qa024 Empilisweni District Hospital'),
(38785, 'https://ror.org/04h9z0906', 'en', 1, 'https://ror.org/04h9z0906 Central Piedmont Community College'),
(38786, 'https://ror.org/04hbame29', 'en', 1, 'https://ror.org/04hbame29 Gheskio Centers'),
(38787, 'https://ror.org/04hbbc968', 'en', 1, 'https://ror.org/04hbbc968 Kalmunai North Hospital ą®•ą®²ąÆą®®ąÆą®©ąÆˆ ą®µą®Ÿą®•ąÆą®•ąÆ ஆதார ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆ'),
(38788, 'https://ror.org/04hbzm840', 'en', 1, 'https://ror.org/04hbzm840 Chinese General Hospital and Medical Center'),
(38789, 'https://ror.org/04hcs1a71', 'en', 1, 'https://ror.org/04hcs1a71 Bay State College'),
(38790, 'https://ror.org/04hdhsf72', 'no_lang_code', 1, 'https://ror.org/04hdhsf72 Visuray (Norway)'),
(38791, 'https://ror.org/04hfdry06', 'en', 1, 'https://ror.org/04hfdry06 Virika Hospital'),
(38792, 'https://ror.org/04hh2kn75', 'en', 1, 'https://ror.org/04hh2kn75 OspidƩal Chontae Ros ComƔin Roscommon University Hospital'),
(38793, 'https://ror.org/04hqqqx81', 'en', 1, 'https://ror.org/04hqqqx81 Chamber of Agriculture and Forestry of Slovenia'),
(38794, 'https://ror.org/04hwc4q95', 'no_lang_code', 1, 'https://ror.org/04hwc4q95 Histoindex (Singapore)'),
(38795, 'https://ror.org/04hxqef50', 'no', 1, 'https://ror.org/04hxqef50 Dans i Skolen'),
(38796, 'https://ror.org/04hy2yk18', 'no', 1, 'https://ror.org/04hy2yk18 Egal Teater'),
(38797, 'https://ror.org/04hybbx63', 'no_lang_code', 1, 'https://ror.org/04hybbx63 Prophylix Pharma (Norway)'),
(38798, 'https://ror.org/04hyzh408', 'no', 1, 'https://ror.org/04hyzh408 VestvÄgøy Kommune'),
(38799, 'https://ror.org/04hzcb818', 'no_lang_code', 1, 'https://ror.org/04hzcb818 Wang Electro-Opto (United States)'),
(38800, 'https://ror.org/04j1qx617', 'en', 1, 'https://ror.org/04j1qx617 Aviation General Hospital'),
(38801, 'https://ror.org/04j246913', 'no_lang_code', 1, 'https://ror.org/04j246913 Badger Explorer (Norway)'),
(38802, 'https://ror.org/04j2kd042', 'en', 1, 'https://ror.org/04j2kd042 Paddington Cat Hospital'),
(38803, 'https://ror.org/04j3z9j34', 'no_lang_code', 1, 'https://ror.org/04j3z9j34 Arkitektbedriftene (Norway)'),
(38804, 'https://ror.org/04j69ht58', 'en', 1, 'https://ror.org/04j69ht58 Hewu Hospital'),
(38805, 'https://ror.org/04j6cwd10', 'no_lang_code', 1, 'https://ror.org/04j6cwd10 RLP AgroScience (Germany)'),
(38806, 'https://ror.org/04j6r2795', 'en', 1, 'https://ror.org/04j6r2795 National Education Institute of the Republic of Slovenia'),
(38807, 'https://ror.org/04j6xxj55', 'en', 1, 'https://ror.org/04j6xxj55 Ufa State University of Economics and Service'),
(38808, 'https://ror.org/04j9afg86', 'en', 1, 'https://ror.org/04j9afg86 Centre of Excellence NAMASTE'),
(38809, 'https://ror.org/04j9me356', 'no_lang_code', 1, 'https://ror.org/04j9me356 Engene (Brazil)'),
(38810, 'https://ror.org/04ja6xk17', 'no_lang_code', 1, 'https://ror.org/04ja6xk17 Genomed (Poland)'),
(38811, 'https://ror.org/04jbyz122', 'en', 1, 'https://ror.org/04jbyz122 Edmond and Lily Safra Children''s Hospital'),
(38812, 'https://ror.org/04je37366', 'en', 1, 'https://ror.org/04je37366 Indian Agricultural Universities Association'),
(38813, 'https://ror.org/04jgpa018', 'en', 1, 'https://ror.org/04jgpa018 Babasaheb Bhimrao Ambedkar Bihar University'),
(38814, 'https://ror.org/04jh1kc52', 'no_lang_code', 1, 'https://ror.org/04jh1kc52 Wirescan (Norway)'),
(38815, 'https://ror.org/04jhrwr82', 'de', 1, 'https://ror.org/04jhrwr82 St. Joseph-Krankenhaus'),
(38816, 'https://ror.org/04jmra880', 'en', 1, 'https://ror.org/04jmra880 Scientific Research Centre Bistra Ptu'),
(38817, 'https://ror.org/04jn7v116', 'en', 1, 'https://ror.org/04jn7v116 Yangon Children''s Hospital į€›į€”į€ŗį€€į€Æį€”į€ŗį€€į€œį€±į€øį€†į€±į€øį€›į€Æį€¶į€€į€¼į€®'),
(38818, 'https://ror.org/04jnhhw51', 'en', 1, 'https://ror.org/04jnhhw51 Carolinas HealthCare Foundation'),
(38819, 'https://ror.org/04jnt3s43', 'no_lang_code', 1, 'https://ror.org/04jnt3s43 SelĆøy Undervannsservice (Norway)'),
(38820, 'https://ror.org/04jqvmp15', 'no_lang_code', 1, 'https://ror.org/04jqvmp15 Swix Sport (Norway)'),
(38821, 'https://ror.org/04jvka613', 'en', 1, 'https://ror.org/04jvka613 National Institute of Technology, Toyama College åÆŒå±±é«˜ē­‰å°‚é–€å­¦ę ”'),
(38822, 'https://ror.org/04jvq3152', 'pt', 1, 'https://ror.org/04jvq3152 Sociedade Brasileira de Medicina Nuclear e Imagem Molecular'),
(38823, 'https://ror.org/04jw7he54', 'no', 1, 'https://ror.org/04jw7he54 JƦrmuseet'),
(38824, 'https://ror.org/04jwvvb34', 'no_lang_code', 1, 'https://ror.org/04jwvvb34 Welding Science (Brazil)'),
(38825, 'https://ror.org/04jxxwk32', 'en', 1, 'https://ror.org/04jxxwk32 KKR ENT Hospital and Research Institute'),
(38826, 'https://ror.org/04k0a2p36', 'no_lang_code', 1, 'https://ror.org/04k0a2p36 Van Drunen Farms (United States)'),
(38827, 'https://ror.org/04k25m262', 'en', 1, 'https://ror.org/04k25m262 108 Military Central Hospital Bệnh viện Trung ʰʔng QuĆ¢n đội 108'),
(38828, 'https://ror.org/04k62rh44', 'en', 1, 'https://ror.org/04k62rh44 Beijing Royal Integrative Medicine Hospital'),
(38829, 'https://ror.org/04k6p0323', 'es', 1, 'https://ror.org/04k6p0323 Centro de Ciencias Penales y PolĆ­tica Criminal'),
(38830, 'https://ror.org/04k7z5476', 'no_lang_code', 1, 'https://ror.org/04k7z5476 Norsk Medisinsk Syklotronsenter (Norway)'),
(38831, 'https://ror.org/04k9mqs78', 'en', 1, 'https://ror.org/04k9mqs78 Office of Integrative Activities'),
(38832, 'https://ror.org/04kae4d54', 'no_lang_code', 1, 'https://ror.org/04kae4d54 Farmacore (Brazil)'),
(38833, 'https://ror.org/04kam9969', 'no_lang_code', 1, 'https://ror.org/04kam9969 Przemysłowe Centrum Optyki (Poland)'),
(38834, 'https://ror.org/04kbca671', 'no_lang_code', 1, 'https://ror.org/04kbca671 Enhanced Drilling (Norway)'),
(38835, 'https://ror.org/04kbwjr52', 'no_lang_code', 1, 'https://ror.org/04kbwjr52 Kleive Mekaniske and Industriservice (Norway)'),
(38836, 'https://ror.org/04kd0pe74', 'no_lang_code', 1, 'https://ror.org/04kd0pe74 CD-adapco (Germany)'),
(38837, 'https://ror.org/04kecee19', 'en', 1, 'https://ror.org/04kecee19 Institute of Homeopathy James Tyler Kent Instituto de Homeopatia James Tyler Kent'),
(38838, 'https://ror.org/04kff0p34', 'no_lang_code', 1, 'https://ror.org/04kff0p34 Polsat (Poland)'),
(38839, 'https://ror.org/04kfz7522', 'no_lang_code', 1, 'https://ror.org/04kfz7522 Flex (Canada)'),
(38840, 'https://ror.org/04kggmg61', 'no_lang_code', 1, 'https://ror.org/04kggmg61 Zephyr Software (United States)'),
(38841, 'https://ror.org/04kgpzh67', 'en', 1, 'https://ror.org/04kgpzh67 Confederation of Norwegian Enterprise'),
(38842, 'https://ror.org/04kmnjy05', 'en', 1, 'https://ror.org/04kmnjy05 Deccan School of Hospital Management'),
(38843, 'https://ror.org/04knhp704', 'no', 1, 'https://ror.org/04knhp704 Finnmark Fylkeskommune'),
(38844, 'https://ror.org/04kqbmr61', 'no_lang_code', 1, 'https://ror.org/04kqbmr61 Nunatak (Norway)'),
(38845, 'https://ror.org/04krcaz19', 'no_lang_code', 1, 'https://ror.org/04krcaz19 Feedback Aquaculture (Norway)'),
(38846, 'https://ror.org/04krpa529', 'no_lang_code', 1, 'https://ror.org/04krpa529 WindMaster Technologies'),
(38847, 'https://ror.org/04kt5nj50', 'no_lang_code', 1, 'https://ror.org/04kt5nj50 Maritime MĆøbler (Norway)'),
(38848, 'https://ror.org/04ktat366', 'en', 1, 'https://ror.org/04ktat366 Helmholtz-Institut Münster Helmholtz-Institute Münster'),
(38849, 'https://ror.org/04kvfjw03', 'en', 1, 'https://ror.org/04kvfjw03 Madras Institute of Development Studies ą®šąÆ†ą®©ąÆą®©ąÆˆ ą®µą®³ą®°ąÆą®šąÆą®šą®æ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(38850, 'https://ror.org/04kzyq982', 'no_lang_code', 1, 'https://ror.org/04kzyq982 LABO Mixed Realities (Norway)'),
(38851, 'https://ror.org/04m1akh07', 'no_lang_code', 1, 'https://ror.org/04m1akh07 Radenska (Slovenia)'),
(38852, 'https://ror.org/04m21mw32', 'pt', 1, 'https://ror.org/04m21mw32 State University of AmapĆ” Universidade Estadual do AmapĆ”'),
(38853, 'https://ror.org/04m3mdp26', 'pt', 1, 'https://ror.org/04m3mdp26 Associação Brasileira de Alergia e Imunologia'),
(38854, 'https://ror.org/04m55cb74', 'no_lang_code', 1, 'https://ror.org/04m55cb74 Anandalok Hospital ą¤†ą¤Øą¤‚ą¤¦ą¤²ą„‹ą¤• ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(38855, 'https://ror.org/04m5b7294', 'en', 1, 'https://ror.org/04m5b7294 Jaseng Hospital of Korean Medicine'),
(38856, 'https://ror.org/04m5dzp25', 'no_lang_code', 1, 'https://ror.org/04m5dzp25 Oida Hospital'),
(38857, 'https://ror.org/04m6b4442', 'en', 1, 'https://ror.org/04m6b4442 Maksymilian Pluta Institute of Applied Optics'),
(38858, 'https://ror.org/04m7ezr62', 'no_lang_code', 1, 'https://ror.org/04m7ezr62 Tele-Fonika Kable (Poland)'),
(38859, 'https://ror.org/04m8ndw19', 'no_lang_code', 1, 'https://ror.org/04m8ndw19 Silkem (Slovenia)'),
(38860, 'https://ror.org/04m91d487', 'no_lang_code', 1, 'https://ror.org/04m91d487 Dynea (Norway)'),
(38861, 'https://ror.org/04maxh374', 'en', 1, 'https://ror.org/04maxh374 Documenta Archive'),
(38862, 'https://ror.org/04mc60a87', 'it', 1, 'https://ror.org/04mc60a87 Ospedale Buon Consiglio Fatebenefratelli'),
(38863, 'https://ror.org/04mcehe57', 'no_lang_code', 1, 'https://ror.org/04mcehe57 Tind Technologies (Norway)'),
(38864, 'https://ror.org/04mcj7g72', 'no_lang_code', 1, 'https://ror.org/04mcj7g72 Bialanx (United States)'),
(38865, 'https://ror.org/04me72w78', 'en', 1, 'https://ror.org/04me72w78 Chinook Regional Hospital'),
(38866, 'https://ror.org/04mf0wv34', 'fr', 1, 'https://ror.org/04mf0wv34 CEA LETI'),
(38867, 'https://ror.org/04mffe096', 'no_lang_code', 1, 'https://ror.org/04mffe096 Aqualex Multimedia Consortium (Ireland)'),
(38868, 'https://ror.org/04mg8wm74', 'en', 1, 'https://ror.org/04mg8wm74 Division of Astronomical Sciences'),
(38869, 'https://ror.org/04mmf1y69', 'en', 1, 'https://ror.org/04mmf1y69 Chandragupt Institute of Management'),
(38870, 'https://ror.org/04my4mt94', 'no_lang_code', 1, 'https://ror.org/04my4mt94 Ayasdi (United States)'),
(38871, 'https://ror.org/04myjbb93', 'no_lang_code', 1, 'https://ror.org/04myjbb93 Organia (Brazil)'),
(38872, 'https://ror.org/04mzgyy45', 'en', 1, 'https://ror.org/04mzgyy45 Wayne County Historical Society'),
(38873, 'https://ror.org/04n0d8e29', 'pt', 1, 'https://ror.org/04n0d8e29 Instituto Nacional de Educação de Surdos'),
(38874, 'https://ror.org/04n0rp146', 'no_lang_code', 1, 'https://ror.org/04n0rp146 Enjet (South Korea)'),
(38875, 'https://ror.org/04n13s404', 'no_lang_code', 1, 'https://ror.org/04n13s404 Thoni Alutec (Poland)'),
(38876, 'https://ror.org/04n305y15', 'en', 1, 'https://ror.org/04n305y15 British Veterinary Association'),
(38877, 'https://ror.org/04n4kxk55', 'en', 1, 'https://ror.org/04n4kxk55 Hickman Community Hospital'),
(38878, 'https://ror.org/04n4xbr51', 'no_lang_code', 1, 'https://ror.org/04n4xbr51 Sensor Tech (Poland)'),
(38879, 'https://ror.org/04n5ych62', 'en', 1, 'https://ror.org/04n5ych62 AdventHealth Lake Placid'),
(38880, 'https://ror.org/04n6gdq39', 'en', 1, 'https://ror.org/04n6gdq39 First People''s Hospital of Nanning'),
(38881, 'https://ror.org/04n7kzx92', 'no_lang_code', 1, 'https://ror.org/04n7kzx92 Megafine Pharma (India)'),
(38882, 'https://ror.org/04nb3k259', 'no_lang_code', 1, 'https://ror.org/04nb3k259 SST it solutions (Brazil)'),
(38883, 'https://ror.org/04nc4qk98', 'no_lang_code', 1, 'https://ror.org/04nc4qk98 High Density Devices (Norway)'),
(38884, 'https://ror.org/04ncd3k75', 'no', 1, 'https://ror.org/04ncd3k75 Sogndal Fotball'),
(38885, 'https://ror.org/04ndjyr10', 'en', 1, 'https://ror.org/04ndjyr10 National Science Library äø­å›½ē§‘å­¦é™¢ę–‡ēŒ®ęƒ…ęŠ„äø­åæƒ'),
(38886, 'https://ror.org/04ngq0c47', 'en', 1, 'https://ror.org/04ngq0c47 Coal Mining Museum of Slovenia'),
(38887, 'https://ror.org/04nhq6337', 'no_lang_code', 1, 'https://ror.org/04nhq6337 Abelium (Slovenia)'),
(38888, 'https://ror.org/04njjet64', 'en', 1, 'https://ror.org/04njjet64 Nova revija Institute for Humanities'),
(38889, 'https://ror.org/04nkken68', 'de', 1, 'https://ror.org/04nkken68 Augustana-Hochschule Neuendettelsau'),
(38890, 'https://ror.org/04nkxbz64', 'no_lang_code', 1, 'https://ror.org/04nkxbz64 Tommen Gram Folie (Norway)'),
(38891, 'https://ror.org/04nppa482', 'no_lang_code', 1, 'https://ror.org/04nppa482 Nextomics Biosciences (China) ęœŖę„ē»„ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(38892, 'https://ror.org/04nq64115', 'no_lang_code', 1, 'https://ror.org/04nq64115 Ekliptik (Slovenia)'),
(38893, 'https://ror.org/04nqnb117', 'en', 1, 'https://ror.org/04nqnb117 Institute of Criminology'),
(38894, 'https://ror.org/04nsfpy51', 'en', 1, 'https://ror.org/04nsfpy51 Historical Archive of the City of Cologne Historisches Archiv der Stadt Kƶln'),
(38895, 'https://ror.org/04nsks563', 'en', 1, 'https://ror.org/04nsks563 Tang Hospital'),
(38896, 'https://ror.org/04nsp1e11', 'no_lang_code', 1, 'https://ror.org/04nsp1e11 Douchebags (Norway)'),
(38897, 'https://ror.org/04nx0sn11', 'no_lang_code', 1, 'https://ror.org/04nx0sn11 Fesil (Norway)'),
(38898, 'https://ror.org/04nxj7050', 'no_lang_code', 1, 'https://ror.org/04nxj7050 B. Braun (Germany)'),
(38899, 'https://ror.org/04nybae35', 'no_lang_code', 1, 'https://ror.org/04nybae35 Drug Discovery Laboratory (Norway)'),
(38900, 'https://ror.org/04nybwt17', 'en', 1, 'https://ror.org/04nybwt17 Therapeutic Guidelines'),
(38901, 'https://ror.org/04p3ja862', 'en', 1, 'https://ror.org/04p3ja862 Skagit Valley Hospital'),
(38902, 'https://ror.org/04p5pgm74', 'no_lang_code', 1, 'https://ror.org/04p5pgm74 Funcom (Norway)'),
(38903, 'https://ror.org/04p6jw654', 'en', 1, 'https://ror.org/04p6jw654 Shoalhaven District Memorial Hospital'),
(38904, 'https://ror.org/04p73je79', 'en', 1, 'https://ror.org/04p73je79 Angal Hospital'),
(38905, 'https://ror.org/04p795979', 'no_lang_code', 1, 'https://ror.org/04p795979 Gce Node Service (Norway)'),
(38906, 'https://ror.org/04p8aem44', 'no_lang_code', 1, 'https://ror.org/04p8aem44 Logiq (Norway)'),
(38907, 'https://ror.org/04p94x951', 'no_lang_code', 1, 'https://ror.org/04p94x951 Maritime Suppliers (Norway)'),
(38908, 'https://ror.org/04p98pm42', 'no_lang_code', 1, 'https://ror.org/04p98pm42 Alfa (Norway)'),
(38909, 'https://ror.org/04pbpmy81', 'no_lang_code', 1, 'https://ror.org/04pbpmy81 Joma International (Norway)'),
(38910, 'https://ror.org/04pc6dy04', 'en', 1, 'https://ror.org/04pc6dy04 St. Theresa’s Multi-Speciality Hospital ą°øą±†ą°Æą°æą°‚ą°Ÿą± తెరెసా ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(38911, 'https://ror.org/04pdhvs51', 'no_lang_code', 1, 'https://ror.org/04pdhvs51 Expansão Científica (Brazil)'),
(38912, 'https://ror.org/04pg95t29', 'no_lang_code', 1, 'https://ror.org/04pg95t29 Aarbakke Innovation (Norway)'),
(38913, 'https://ror.org/04pgq1648', 'fr', 1, 'https://ror.org/04pgq1648 Centre de Liaison Sur l''Intervention et la PrƩvention Psychosociales'),
(38914, 'https://ror.org/04ph6jr06', 'no_lang_code', 1, 'https://ror.org/04ph6jr06 Nortek (Norway)'),
(38915, 'https://ror.org/04pkdxp64', 'en', 1, 'https://ror.org/04pkdxp64 Laidlaw College'),
(38916, 'https://ror.org/04pp10d34', 'en', 1, 'https://ror.org/04pp10d34 Wakari Hospital'),
(38917, 'https://ror.org/04ppv9r66', 'no_lang_code', 1, 'https://ror.org/04ppv9r66 AquaGen (Norway)'),
(38918, 'https://ror.org/04pq2gg30', 'en', 1, 'https://ror.org/04pq2gg30 Beijing Open University'),
(38919, 'https://ror.org/04pqbzj36', 'pt', 1, 'https://ror.org/04pqbzj36 Associação Brasileira de Oncologia VeterinÔria'),
(38920, 'https://ror.org/04pr9yn16', 'no_lang_code', 1, 'https://ror.org/04pr9yn16 Metrolab CalibraƧƵes (Brazil)'),
(38921, 'https://ror.org/04pspdc11', 'no_lang_code', 1, 'https://ror.org/04pspdc11 Novocure (United States)'),
(38922, 'https://ror.org/04pxf4m67', 'no_lang_code', 1, 'https://ror.org/04pxf4m67 Ener-G (Norway)'),
(38923, 'https://ror.org/04py84927', 'en', 1, 'https://ror.org/04py84927 Our Lady of Bellefonte Hospital'),
(38924, 'https://ror.org/04pyf6e44', 'no_lang_code', 1, 'https://ror.org/04pyf6e44 Gartnerhallen (Norway)'),
(38925, 'https://ror.org/04pzgb662', 'en', 1, 'https://ror.org/04pzgb662 The Scarborough Hospital'),
(38926, 'https://ror.org/04pzwdz82', 'no_lang_code', 1, 'https://ror.org/04pzwdz82 NutriVita Suplementos (Brazil)'),
(38927, 'https://ror.org/04q0nd296', 'en', 1, 'https://ror.org/04q0nd296 EM Strasbourg Business School'),
(38928, 'https://ror.org/04q0w2t43', 'no_lang_code', 1, 'https://ror.org/04q0w2t43 Evac (Norway)'),
(38929, 'https://ror.org/04q162150', 'en', 1, 'https://ror.org/04q162150 Trinity Hospital of Augusta'),
(38930, 'https://ror.org/04q18mv54', 'en', 1, 'https://ror.org/04q18mv54 Sugarcane Breeding Institute'),
(38931, 'https://ror.org/04q36bj19', 'en', 1, 'https://ror.org/04q36bj19 Islamic Azad University of Kashan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کاؓان'),
(38932, 'https://ror.org/04q385q62', 'no_lang_code', 1, 'https://ror.org/04q385q62 Biotech (Brazil)'),
(38933, 'https://ror.org/04q3mp532', 'en', 1, 'https://ror.org/04q3mp532 Institute of Mathematics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики ŠŠŠ України Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики ŠŠŠ Украины'),
(38934, 'https://ror.org/04q4re318', 'no_lang_code', 1, 'https://ror.org/04q4re318 GGG (Norway)'),
(38935, 'https://ror.org/04q5jra63', 'no_lang_code', 1, 'https://ror.org/04q5jra63 Inven2 (Norway)'),
(38936, 'https://ror.org/04q60r444', 'no_lang_code', 1, 'https://ror.org/04q60r444 Pipetech International (Norway)'),
(38937, 'https://ror.org/04q61xe51', 'no_lang_code', 1, 'https://ror.org/04q61xe51 Sensorlink (Norway)'),
(38938, 'https://ror.org/04q9bek18', 'en', 1, 'https://ror.org/04q9bek18 Isothermal Community College'),
(38939, 'https://ror.org/04q9g9s58', 'no_lang_code', 1, 'https://ror.org/04q9g9s58 Voss Scientific (United States)'),
(38940, 'https://ror.org/04q9n1p25', 'no_lang_code', 1, 'https://ror.org/04q9n1p25 Osrodek Konstrukcyjno Badawczy (Poland)'),
(38941, 'https://ror.org/04qa0nf30', 'en', 1, 'https://ror.org/04qa0nf30 Desert Valley Hospital'),
(38942, 'https://ror.org/04qbta562', 'en', 1, 'https://ror.org/04qbta562 Department of Public'),
(38943, 'https://ror.org/04qe4s326', 'en', 1, 'https://ror.org/04qe4s326 MediHope Super Specialty Hospital'),
(38944, 'https://ror.org/04qfjb814', 'en', 1, 'https://ror.org/04qfjb814 International Hereditary Cancer Center'),
(38945, 'https://ror.org/04qh35y55', 'pl', 1, 'https://ror.org/04qh35y55 Fundacja Ewy Błaszczyk Akogo'),
(38946, 'https://ror.org/04qjtha44', 'no_lang_code', 1, 'https://ror.org/04qjtha44 Environmental Tectonics (Poland)'),
(38947, 'https://ror.org/04qktrs60', 'no_lang_code', 1, 'https://ror.org/04qktrs60 Esri Polska (Poland)'),
(38948, 'https://ror.org/04qn9mx93', 'en', 1, 'https://ror.org/04qn9mx93 Division of Biological Infrastructure'),
(38949, 'https://ror.org/04qnpyg73', 'pt', 1, 'https://ror.org/04qnpyg73 Ministry of Development, Industry and Foreign Trade Ministério do Desenvolvimento, Indústria e Comércio Exterior'),
(38950, 'https://ror.org/04qqnyh49', 'de', 1, 'https://ror.org/04qqnyh49 Hessisches Landesmuseum Darmstadt'),
(38951, 'https://ror.org/04qrzjd35', 'en', 1, 'https://ror.org/04qrzjd35 Nordland County Council'),
(38952, 'https://ror.org/04qs54252', 'en', 1, 'https://ror.org/04qs54252 Alyn Hospital'),
(38953, 'https://ror.org/04qvybk43', 'en', 1, 'https://ror.org/04qvybk43 Bumin Hospital Group'),
(38954, 'https://ror.org/04qw53y32', 'no_lang_code', 1, 'https://ror.org/04qw53y32 CenterKontura (Slovenia)'),
(38955, 'https://ror.org/04qwxfa96', 'en', 1, 'https://ror.org/04qwxfa96 Central Alabama Community College'),
(38956, 'https://ror.org/04qyb2227', 'no_lang_code', 1, 'https://ror.org/04qyb2227 Foley Hoag (United States)'),
(38957, 'https://ror.org/04qze1e43', 'fr', 1, 'https://ror.org/04qze1e43 MontrƩal InVivo'),
(38958, 'https://ror.org/04r0t2b06', 'no_lang_code', 1, 'https://ror.org/04r0t2b06 Auto Galeria (Poland)'),
(38959, 'https://ror.org/04r2bq949', 'no_lang_code', 1, 'https://ror.org/04r2bq949 Kaplan (United States) Kaplan international colleges'),
(38960, 'https://ror.org/04r3qwa04', 'no_lang_code', 1, 'https://ror.org/04r3qwa04 BjĆørnson (Norway)'),
(38961, 'https://ror.org/04r3yqx69', 'no_lang_code', 1, 'https://ror.org/04r3yqx69 OptiNose (Norway)'),
(38962, 'https://ror.org/04r45q768', 'en', 1, 'https://ror.org/04r45q768 Universities Austria Ɩsterreichische UniversitƤtenkonferenz'),
(38963, 'https://ror.org/04r5dzw32', 'no_lang_code', 1, 'https://ror.org/04r5dzw32 CodeIT (Norway)'),
(38964, 'https://ror.org/04r5sb480', 'no_lang_code', 1, 'https://ror.org/04r5sb480 AMZ (Poland)'),
(38965, 'https://ror.org/04r5v7152', 'pt', 1, 'https://ror.org/04r5v7152 Sociedade Brasileira de Fruticultura'),
(38966, 'https://ror.org/04r6eem28', 'en', 1, 'https://ror.org/04r6eem28 National Library of Serbia ŠŠ°Ń€Š¾Š“Š½Š° библиотека Š”Ń€Š±ŠøŃ˜Šµ'),
(38967, 'https://ror.org/04r6ymp55', 'en', 1, 'https://ror.org/04r6ymp55 Central State Hospital'),
(38968, 'https://ror.org/04r6zx259', 'en', 1, 'https://ror.org/04r6zx259 AdventHealth Sebring'),
(38969, 'https://ror.org/04r98y365', 'no_lang_code', 1, 'https://ror.org/04r98y365 Figgjo (Norway)'),
(38970, 'https://ror.org/04rb1tf06', 'en', 1, 'https://ror.org/04rb1tf06 City College Coventry'),
(38971, 'https://ror.org/04rccsv84', 'no_lang_code', 1, 'https://ror.org/04rccsv84 FORCE Technology (Norway)'),
(38972, 'https://ror.org/04rcnsw78', 'en', 1, 'https://ror.org/04rcnsw78 Royal Hospital School'),
(38973, 'https://ror.org/04rf11p79', 'no_lang_code', 1, 'https://ror.org/04rf11p79 Global Pet (Brazil)'),
(38974, 'https://ror.org/04rfn0m45', 'no_lang_code', 1, 'https://ror.org/04rfn0m45 Chriship (Norway)'),
(38975, 'https://ror.org/04rftbm22', 'en', 1, 'https://ror.org/04rftbm22 Federation of Experimental Biology Societies Federação de Sociedades de Biologia Experimental'),
(38976, 'https://ror.org/04rk73070', 'no_lang_code', 1, 'https://ror.org/04rk73070 Scanmar (Norway)'),
(38977, 'https://ror.org/04rn19w05', 'no', 1, 'https://ror.org/04rn19w05 Berg kommune'),
(38978, 'https://ror.org/04rq4r017', 'en', 1, 'https://ror.org/04rq4r017 John F Finn Institute for Public Safety'),
(38979, 'https://ror.org/04rqs6380', 'en', 1, 'https://ror.org/04rqs6380 College of Southern Idaho'),
(38980, 'https://ror.org/04rrkhs81', 'en', 1, 'https://ror.org/04rrkhs81 Manchester Academic Health Science Centre'),
(38981, 'https://ror.org/04rrs4x54', 'en', 1, 'https://ror.org/04rrs4x54 University of Central Asia'),
(38982, 'https://ror.org/04rrsxv85', 'no_lang_code', 1, 'https://ror.org/04rrsxv85 Regentis Biomaterials (Israel)'),
(38983, 'https://ror.org/04rs6p381', 'en', 1, 'https://ror.org/04rs6p381 Butterworth Hospital'),
(38984, 'https://ror.org/04rss9b70', 'fr', 1, 'https://ror.org/04rss9b70 Centre Jeunesse de Quebec'),
(38985, 'https://ror.org/04rx3a489', 'en', 1, 'https://ror.org/04rx3a489 Central Lakes College'),
(38986, 'https://ror.org/04s0b8n66', 'fr', 1, 'https://ror.org/04s0b8n66 Institut d''Histoire du Temps PrƩsent'),
(38987, 'https://ror.org/04s1b0x88', 'no_lang_code', 1, 'https://ror.org/04s1b0x88 EN-FIST Centre of Excellence (Slovenia)'),
(38988, 'https://ror.org/04s1njj71', 'en', 1, 'https://ror.org/04s1njj71 Adelaide Provincial Hospital'),
(38989, 'https://ror.org/04s2w8b69', 'en', 1, 'https://ror.org/04s2w8b69 Al Khawarizmi International College'),
(38990, 'https://ror.org/04s3waj07', 'en', 1, 'https://ror.org/04s3waj07 Chung Cheong University 忠淸大學 ģ¶©ģ²­ėŒ€ķ•™źµ'),
(38991, 'https://ror.org/04s468185', 'no_lang_code', 1, 'https://ror.org/04s468185 CLS Technology (Norway)'),
(38992, 'https://ror.org/04s4d8021', 'no_lang_code', 1, 'https://ror.org/04s4d8021 TrĆønderEnergi (Norway)'),
(38993, 'https://ror.org/04s6c8c61', 'no_lang_code', 1, 'https://ror.org/04s6c8c61 Promip (Brazil)'),
(38994, 'https://ror.org/04s6nsa81', 'en', 1, 'https://ror.org/04s6nsa81 Covenant Theological Seminary'),
(38995, 'https://ror.org/04s85wv17', 'pt', 1, 'https://ror.org/04s85wv17 Sociedade de UsuƔrios de Computadores e Equipamentos SubsidiƔrios, Sucesu Nacional'),
(38996, 'https://ror.org/04s8a3621', 'no_lang_code', 1, 'https://ror.org/04s8a3621 Magnamed (Brazil)'),
(38997, 'https://ror.org/04s8e0q95', 'de', 1, 'https://ror.org/04s8e0q95 Stadtbibliothek Nürnberg'),
(38998, 'https://ror.org/04sa8xk52', 'no_lang_code', 1, 'https://ror.org/04sa8xk52 OilCraft (Norway)'),
(38999, 'https://ror.org/04sapp259', 'no_lang_code', 1, 'https://ror.org/04sapp259 Labcom Sistemas (Brazil)'),
(39000, 'https://ror.org/04sbrn764', 'no_lang_code', 1, 'https://ror.org/04sbrn764 Dantherm Power (Denmark)'),
(39001, 'https://ror.org/04sdpvy45', 'no_lang_code', 1, 'https://ror.org/04sdpvy45 Adapti (Slovenia)'),
(39002, 'https://ror.org/04sjxr917', 'en', 1, 'https://ror.org/04sjxr917 Rideout Memorial Hospital'),
(39003, 'https://ror.org/04skrd412', 'pt', 1, 'https://ror.org/04skrd412 Fundação Paulista de Tecnologia e Educação'),
(39004, 'https://ror.org/04snbqe72', 'no_lang_code', 1, 'https://ror.org/04snbqe72 Condor Instruments (Brazil)'),
(39005, 'https://ror.org/04spvzc70', 'tr', 1, 'https://ror.org/04spvzc70 Balikli Rum Vakfi Hastanesi, Balıklı Rum Hastanesi Balıklı Greek Hospital'),
(39006, 'https://ror.org/04sqfs158', 'en', 1, 'https://ror.org/04sqfs158 St. Rose Dominican Hospital'),
(39007, 'https://ror.org/04srvp011', 'no_lang_code', 1, 'https://ror.org/04srvp011 Versis Tecnologia (Brazil)'),
(39008, 'https://ror.org/04st2h187', 'en', 1, 'https://ror.org/04st2h187 Andries Vosloo Hospital'),
(39009, 'https://ror.org/04st31e64', 'pt', 1, 'https://ror.org/04st31e64 Associação Brasileira de Pesquisadores de Comunicação Organizacional e de Relações Públicas'),
(39010, 'https://ror.org/04sxr1261', 'en', 1, 'https://ror.org/04sxr1261 Nanjing Institute of Astronomical Optics & Technology äø­å›½ē§‘å­¦é™¢å—äŗ¬å¤©ę–‡å…‰å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(39011, 'https://ror.org/04sz74c83', 'en', 1, 'https://ror.org/04sz74c83 Shandong Shierming Eye Hospital'),
(39012, 'https://ror.org/04szag615', 'en', 1, 'https://ror.org/04szag615 Dawson Community College'),
(39013, 'https://ror.org/04t1ycn35', 'en', 1, 'https://ror.org/04t1ycn35 G. Kuppuswamy Naidu Memorial Hospital'),
(39014, 'https://ror.org/04t213y95', 'pt', 1, 'https://ror.org/04t213y95 Sociedade Brasileira de Imunologia'),
(39015, 'https://ror.org/04t6q1p67', 'en', 1, 'https://ror.org/04t6q1p67 Neath Port Talbot Hospital'),
(39016, 'https://ror.org/04t7avg40', 'no_lang_code', 1, 'https://ror.org/04t7avg40 Anlegg Bolig RĆør & Varme AS (Norway)'),
(39017, 'https://ror.org/04t999r74', 'en', 1, 'https://ror.org/04t999r74 Department of Corrections'),
(39018, 'https://ror.org/04t9jdp81', 'no_lang_code', 1, 'https://ror.org/04t9jdp81 BioGenex (India)'),
(39019, 'https://ror.org/04tav6r22', 'sv', 1, 'https://ror.org/04tav6r22 Sjukhuset i Lidkƶping'),
(39020, 'https://ror.org/04td70f50', 'no_lang_code', 1, 'https://ror.org/04td70f50 Ulltveit-Moe Group (Norway)'),
(39021, 'https://ror.org/04tdcgr05', 'no_lang_code', 1, 'https://ror.org/04tdcgr05 Eramet (Norway)'),
(39022, 'https://ror.org/04tf09b52', 'de', 1, 'https://ror.org/04tf09b52 St.-Johannes-Hospital Dortmund'),
(39023, 'https://ror.org/04tfeav65', 'no_lang_code', 1, 'https://ror.org/04tfeav65 Nature Oil & Gas (Norway)'),
(39024, 'https://ror.org/04thm3d12', 'de', 1, 'https://ror.org/04thm3d12 Malteser Krankenhaus St. Anna'),
(39025, 'https://ror.org/04tk9dh57', 'no_lang_code', 1, 'https://ror.org/04tk9dh57 Global Colors Polska (Poland)'),
(39026, 'https://ror.org/04tkqn952', 'en', 1, 'https://ror.org/04tkqn952 Sackville Memorial Hospital'),
(39027, 'https://ror.org/04tkyvc79', 'no_lang_code', 1, 'https://ror.org/04tkyvc79 Abraxas Olgierd Jeremiasz (Poland)'),
(39028, 'https://ror.org/04tm92h03', 'no_lang_code', 1, 'https://ror.org/04tm92h03 Wakaba Hospital'),
(39029, 'https://ror.org/04tmzke54', 'no_lang_code', 1, 'https://ror.org/04tmzke54 Innovative Scientific Solutions (United States)'),
(39030, 'https://ror.org/04tn4w071', 'pt', 1, 'https://ror.org/04tn4w071 Fundação CECIERJ'),
(39031, 'https://ror.org/04tvhd893', 'pt', 1, 'https://ror.org/04tvhd893 Museu de Astronomia e CiĆŖncias Afins'),
(39032, 'https://ror.org/04tvje441', 'no_lang_code', 1, 'https://ror.org/04tvje441 Stinger Technology (Norway)'),
(39033, 'https://ror.org/04v0t8a58', 'no_lang_code', 1, 'https://ror.org/04v0t8a58 WB Electronics (Poland)'),
(39034, 'https://ror.org/04v1f7r08', 'en', 1, 'https://ror.org/04v1f7r08 Museum of Migration'),
(39035, 'https://ror.org/04v1qxj13', 'en', 1, 'https://ror.org/04v1qxj13 Antelope Valley Hospital'),
(39036, 'https://ror.org/04v2q5679', 'no_lang_code', 1, 'https://ror.org/04v2q5679 PluriCell (Brazil)'),
(39037, 'https://ror.org/04v3sbr52', 'no_lang_code', 1, 'https://ror.org/04v3sbr52 Kjeller Vindteknikk (Norway)'),
(39038, 'https://ror.org/04v5bkc47', 'no_lang_code', 1, 'https://ror.org/04v5bkc47 Aventa (Norway)'),
(39039, 'https://ror.org/04v6t0889', 'en', 1, 'https://ror.org/04v6t0889 Norwegian Water'),
(39040, 'https://ror.org/04v7ec183', 'no_lang_code', 1, 'https://ror.org/04v7ec183 Terenzi (Brazil)'),
(39041, 'https://ror.org/04v7ke830', 'sk', 1, 'https://ror.org/04v7ke830 Stredna Priemyselna Skola Samuela Mikoviniho'),
(39042, 'https://ror.org/04v86g664', 'no_lang_code', 1, 'https://ror.org/04v86g664 MiniHydro (Norway)'),
(39043, 'https://ror.org/04v8gpn54', 'no', 1, 'https://ror.org/04v8gpn54 Kvinner i Skogbruket'),
(39044, 'https://ror.org/04v8qfb10', 'en', 1, 'https://ror.org/04v8qfb10 Jakarta State Polytechnic Politeknik Negeri Jakarta PolitĆØknik Negri Jakarta'),
(39045, 'https://ror.org/04v8qm048', 'en', 1, 'https://ror.org/04v8qm048 St. Elizabeth''s Hospital'),
(39046, 'https://ror.org/04v95p207', 'en', 1, 'https://ror.org/04v95p207 Panzhihua Central Hospital'),
(39047, 'https://ror.org/04vbcaz46', 'no_lang_code', 1, 'https://ror.org/04vbcaz46 Indústria Brasileira de MÔquinas e Equipamentos (Brazil)'),
(39048, 'https://ror.org/04vbdge38', 'no_lang_code', 1, 'https://ror.org/04vbdge38 Victor Vision (Brazil)'),
(39049, 'https://ror.org/04vbyvm90', 'es', 1, 'https://ror.org/04vbyvm90 Instituto Tecnológico de Saltillo Technological Institute of Saltillo'),
(39050, 'https://ror.org/04vd6m647', 'no_lang_code', 1, 'https://ror.org/04vd6m647 Geotecno (Brazil)'),
(39051, 'https://ror.org/04vdftk11', 'no_lang_code', 1, 'https://ror.org/04vdftk11 Gtac Solutions (Brazil)'),
(39052, 'https://ror.org/04ve0xz37', 'no_lang_code', 1, 'https://ror.org/04ve0xz37 Cemad (Poland)'),
(39053, 'https://ror.org/04vfeym88', 'en', 1, 'https://ror.org/04vfeym88 Norwegian Fund and Asset Management Association'),
(39054, 'https://ror.org/04vgd5j91', 'no_lang_code', 1, 'https://ror.org/04vgd5j91 Pachemtech (Poland)'),
(39055, 'https://ror.org/04vh5xb31', 'en', 1, 'https://ror.org/04vh5xb31 Centennial Hills Hospital'),
(39056, 'https://ror.org/04vmef791', 'no_lang_code', 1, 'https://ror.org/04vmef791 Mentor Interactive (Brazil)'),
(39057, 'https://ror.org/04vp97q80', 'no_lang_code', 1, 'https://ror.org/04vp97q80 OP Bio Factory (Japan)'),
(39058, 'https://ror.org/04vr78v16', 'no_lang_code', 1, 'https://ror.org/04vr78v16 General Electric (Norway)'),
(39059, 'https://ror.org/04vvd8839', 'ro', 1, 'https://ror.org/04vvd8839 Universitatea Ioan Slavici'),
(39060, 'https://ror.org/04vx4mk32', 'en', 1, 'https://ror.org/04vx4mk32 Leibniz Institute of Surface Engineering Leibniz-Institut für Oberflächenmodifizierung'),
(39061, 'https://ror.org/04vxfxp93', 'no_lang_code', 1, 'https://ror.org/04vxfxp93 Flavor Tec (Brazil)'),
(39062, 'https://ror.org/04vxgz290', 'no_lang_code', 1, 'https://ror.org/04vxgz290 Remora (Norway)'),
(39063, 'https://ror.org/04vyb7b30', 'no_lang_code', 1, 'https://ror.org/04vyb7b30 Vilpo (Slovenia)'),
(39064, 'https://ror.org/04vz51s38', 'no_lang_code', 1, 'https://ror.org/04vz51s38 Erichsen & Horgen (Norway)'),
(39065, 'https://ror.org/04w1y7251', 'pt', 1, 'https://ror.org/04w1y7251 Instituto Nacional da Propriedade Industrial'),
(39066, 'https://ror.org/04w4hwt37', 'no_lang_code', 1, 'https://ror.org/04w4hwt37 Simula Innovation (Norway)'),
(39067, 'https://ror.org/04w5mzj20', 'en', 1, 'https://ror.org/04w5mzj20 Changsha Hospital for Maternal and Child Health Care'),
(39068, 'https://ror.org/04w6cnp87', 'no_lang_code', 1, 'https://ror.org/04w6cnp87 LaserTools Tecnologia (Brazil)'),
(39069, 'https://ror.org/04w708p35', 'no_lang_code', 1, 'https://ror.org/04w708p35 Rolvsoy Metalindustri (Norway)'),
(39070, 'https://ror.org/04w8mv523', 'pt', 1, 'https://ror.org/04w8mv523 Secretaria Municipal de Cultura'),
(39071, 'https://ror.org/04wadnc74', 'en', 1, 'https://ror.org/04wadnc74 Mittal hospital'),
(39072, 'https://ror.org/04watzy58', 'no_lang_code', 1, 'https://ror.org/04watzy58 IT&D Informação Tecnologia e Desenvolvimento (Brazil)'),
(39073, 'https://ror.org/04wbyjk66', 'no_lang_code', 1, 'https://ror.org/04wbyjk66 7Sense Group (Norway)'),
(39074, 'https://ror.org/04wcc2q98', 'no_lang_code', 1, 'https://ror.org/04wcc2q98 Accenture (Norway)'),
(39075, 'https://ror.org/04wcfwt17', 'no_lang_code', 1, 'https://ror.org/04wcfwt17 Tagarno Norge (Norway)'),
(39076, 'https://ror.org/04we0sp42', 'en', 1, 'https://ror.org/04we0sp42 University College of Commerce & Business Management'),
(39077, 'https://ror.org/04wfzsh36', 'no_lang_code', 1, 'https://ror.org/04wfzsh36 CapCOGITO (Canada)'),
(39078, 'https://ror.org/04wnz4487', 'en', 1, 'https://ror.org/04wnz4487 Texas Health Arlington Memorial'),
(39079, 'https://ror.org/04wp4st08', 'en', 1, 'https://ror.org/04wp4st08 Llanfrechfa Grange Hospital'),
(39080, 'https://ror.org/04wpmh396', 'no_lang_code', 1, 'https://ror.org/04wpmh396 Norsonic (Norway)'),
(39081, 'https://ror.org/04wqsqf86', 'en', 1, 'https://ror.org/04wqsqf86 Dresden Academy of Fine Arts Hochschule für Bildende Künste Dresden'),
(39082, 'https://ror.org/04wr6tn02', 'en', 1, 'https://ror.org/04wr6tn02 Institute of Contemporary History'),
(39083, 'https://ror.org/04wsp0t42', 'no_lang_code', 1, 'https://ror.org/04wsp0t42 Grieg Group (Norway)'),
(39084, 'https://ror.org/04wtxqn67', 'en', 1, 'https://ror.org/04wtxqn67 Dresden State Art Collections Staatliche Kunstsammlungen Dresden'),
(39085, 'https://ror.org/04wy35175', 'pt', 1, 'https://ror.org/04wy35175 Instituto Superior de Educação do Rio de Janeiro'),
(39086, 'https://ror.org/04wyvw190', 'no', 1, 'https://ror.org/04wyvw190 Nesna Kommune'),
(39087, 'https://ror.org/04x0mgy69', 'en', 1, 'https://ror.org/04x0mgy69 Hospital Melaka Malacca General Hospital'),
(39088, 'https://ror.org/04x0t4f03', 'no_lang_code', 1, 'https://ror.org/04x0t4f03 Benchmark Holdings (Norway)'),
(39089, 'https://ror.org/04x14e475', 'en', 1, 'https://ror.org/04x14e475 Institute for Ethnic Studies'),
(39090, 'https://ror.org/04x1mps47', 'no_lang_code', 1, 'https://ror.org/04x1mps47 Ele-DriveCo (Poland)'),
(39091, 'https://ror.org/04x1zna55', 'en', 1, 'https://ror.org/04x1zna55 Valley Regional Hospital'),
(39092, 'https://ror.org/04x20w027', 'no_lang_code', 1, 'https://ror.org/04x20w027 Synthetica (Norway)'),
(39093, 'https://ror.org/04x2gpd09', 'en', 1, 'https://ror.org/04x2gpd09 Yangon Central Women''s Hospital ရန်ကုန် į€—į€Ÿį€­į€Æ į€”į€™į€»į€­į€Æį€øį€žį€™į€®į€ø ဆေးရုံ'),
(39094, 'https://ror.org/04x3j0s69', 'en', 1, 'https://ror.org/04x3j0s69 Gilbert Bain Hospital'),
(39095, 'https://ror.org/04x3rvs94', 'no_lang_code', 1, 'https://ror.org/04x3rvs94 Metallteknikk (Norway)'),
(39096, 'https://ror.org/04x4hjg39', 'no_lang_code', 1, 'https://ror.org/04x4hjg39 Globus Medical (United States)'),
(39097, 'https://ror.org/04x57eq39', 'en', 1, 'https://ror.org/04x57eq39 St John Berchmans University College'),
(39098, 'https://ror.org/04x5ap794', 'en', 1, 'https://ror.org/04x5ap794 M. S. Ramaiah Dental College and Hospital'),
(39099, 'https://ror.org/04x626p25', 'no_lang_code', 1, 'https://ror.org/04x626p25 Navita (Brazil)'),
(39100, 'https://ror.org/04x762r03', 'en', 1, 'https://ror.org/04x762r03 Sri Sai Super Speciality Hospital ą¤¶ą„ą¤°ą„€ साई ą¤øą„ą¤Ŗą¤° ą¤øą„ą¤Ŗą„‡ą¤¶ą¤²ą¤æą¤Ÿą„€ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(39101, 'https://ror.org/04x931c50', 'en', 1, 'https://ror.org/04x931c50 POSC Caesar Association'),
(39102, 'https://ror.org/04xaked44', 'es', 1, 'https://ror.org/04xaked44 Hospital San Hipólito'),
(39103, 'https://ror.org/04xdy7f60', 'no_lang_code', 1, 'https://ror.org/04xdy7f60 Izolacja-Jarocin (Poland)'),
(39104, 'https://ror.org/04xef4937', 'no_lang_code', 1, 'https://ror.org/04xef4937 Aqualine (Norway)'),
(39105, 'https://ror.org/04xex7r55', 'no_lang_code', 1, 'https://ror.org/04xex7r55 Ronkowski (Poland)'),
(39106, 'https://ror.org/04xk7k966', 'en', 1, 'https://ror.org/04xk7k966 Institute of Paleobiology Instytut Paleobiologii'),
(39107, 'https://ror.org/04xmgtd15', 'no_lang_code', 1, 'https://ror.org/04xmgtd15 Invenia (Norway)'),
(39108, 'https://ror.org/04xngad53', 'pt', 1, 'https://ror.org/04xngad53 Fundação Escola de Comércio Álvares Penteado'),
(39109, 'https://ror.org/04xpcd506', 'pl', 1, 'https://ror.org/04xpcd506 Polskie Sieci Elektroenergetyczne'),
(39110, 'https://ror.org/04xphfg38', 'no_lang_code', 1, 'https://ror.org/04xphfg38 Hermes Microvision (United States)'),
(39111, 'https://ror.org/04xvv6376', 'en', 1, 'https://ror.org/04xvv6376 BA School of Business and Finance Banku Augstskola'),
(39112, 'https://ror.org/04xxxy475', 'no_lang_code', 1, 'https://ror.org/04xxxy475 SquareHead Technology (Norway)'),
(39113, 'https://ror.org/04xys6a56', 'no_lang_code', 1, 'https://ror.org/04xys6a56 Verdaz (Brazil)'),
(39114, 'https://ror.org/04xzpvb32', 'en', 1, 'https://ror.org/04xzpvb32 Nobody’s Children Foundation'),
(39115, 'https://ror.org/04y0g6r28', 'no_lang_code', 1, 'https://ror.org/04y0g6r28 TechnipFMC (Norway)'),
(39116, 'https://ror.org/04y1t5a55', 'en', 1, 'https://ror.org/04y1t5a55 Colorado Wyoming Academy of Science'),
(39117, 'https://ror.org/04y22rp03', 'no_lang_code', 1, 'https://ror.org/04y22rp03 Delfin Technologies (Finland)'),
(39118, 'https://ror.org/04y244695', 'no_lang_code', 1, 'https://ror.org/04y244695 W5 Technlogies (United States)'),
(39119, 'https://ror.org/04y2bwa40', 'en', 1, 'https://ror.org/04y2bwa40 Chenzhou First People''s Hospital'),
(39120, 'https://ror.org/04y523h62', 'en', 1, 'https://ror.org/04y523h62 Oakville-Trafalgar Memorial Hospital'),
(39121, 'https://ror.org/04y52r328', 'en', 1, 'https://ror.org/04y52r328 Novika Solutions'),
(39122, 'https://ror.org/04y5m6789', 'no', 1, 'https://ror.org/04y5m6789 Stiftinga For Folkemusikk og Folkedans'),
(39123, 'https://ror.org/04y5wt580', 'no', 1, 'https://ror.org/04y5wt580 Overhalla Kommune'),
(39124, 'https://ror.org/04y7frr04', 'no_lang_code', 1, 'https://ror.org/04y7frr04 PriMove Infrastructure Development Consultants (India)'),
(39125, 'https://ror.org/04y9czb62', 'no_lang_code', 1, 'https://ror.org/04y9czb62 Borginnovasj (Norway)'),
(39126, 'https://ror.org/04yc38g92', 'en', 1, 'https://ror.org/04yc38g92 Samaritan Lebanon Community Hospital'),
(39127, 'https://ror.org/04ygnx468', 'en', 1, 'https://ror.org/04ygnx468 Johnston Community College'),
(39128, 'https://ror.org/04yh74t68', 'no_lang_code', 1, 'https://ror.org/04yh74t68 Infineon Technologies (Norway)'),
(39129, 'https://ror.org/04yh9yy49', 'en', 1, 'https://ror.org/04yh9yy49 Brazilian Network Information Center Núcleo de Informação e Coordenação do Ponto BR'),
(39130, 'https://ror.org/04yj32x80', 'no_lang_code', 1, 'https://ror.org/04yj32x80 Coss (Brazil)'),
(39131, 'https://ror.org/04ymxv744', 'pt', 1, 'https://ror.org/04ymxv744 Fundação Bienal de São Paulo'),
(39132, 'https://ror.org/04yntp988', 'no_lang_code', 1, 'https://ror.org/04yntp988 Ente (Poland)'),
(39133, 'https://ror.org/04ynvhf97', 'en', 1, 'https://ror.org/04ynvhf97 Het Zuid-Afrikaans Hospitaal en Diakonessenhuis Zuid-Afrikaans Hospital'),
(39134, 'https://ror.org/04ypbx278', 'no_lang_code', 1, 'https://ror.org/04ypbx278 Sigurd LĆøkeland (Norway)'),
(39135, 'https://ror.org/04yqgnw12', 'no_lang_code', 1, 'https://ror.org/04yqgnw12 Miko Marine (Norway)'),
(39136, 'https://ror.org/04yr0ey26', 'fr', 1, 'https://ror.org/04yr0ey26 RĆ©seau Technoscience Saguenay–Lac-Saint-Jean'),
(39137, 'https://ror.org/04ysdg006', 'en', 1, 'https://ror.org/04ysdg006 Anderson Hospital'),
(39138, 'https://ror.org/04yvdan45', 'en', 1, 'https://ror.org/04yvdan45 Tang Du Hospital'),
(39139, 'https://ror.org/04yxrt293', 'fr', 1, 'https://ror.org/04yxrt293 Ordre des Psychologues du QuƩbec'),
(39140, 'https://ror.org/04yxyzj48', 'it', 1, 'https://ror.org/04yxyzj48 Azienda Ospedaliera Nazionale SS. Antonio e Biagio e Cesare Arrigo'),
(39141, 'https://ror.org/04yzj0y93', 'en', 1, 'https://ror.org/04yzj0y93 Arignar Anna Memorial Cancer Hospital & Research Institute ą®…ą®°ą®šąÆ ą®…ą®±ą®æą®žą®°ąÆ ą®…ą®£ąÆą®£ą®¾ நினைவு ą®ŖąÆą®±ąÆą®±ąÆą®ØąÆ‹ą®ÆąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆą®ÆąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®²ąÆˆą®Æą®®ąÆą®®ąÆ'),
(39142, 'https://ror.org/04yzwsd04', 'no_lang_code', 1, 'https://ror.org/04yzwsd04 Lucotec (Brazil)'),
(39143, 'https://ror.org/04z2wa675', 'no_lang_code', 1, 'https://ror.org/04z2wa675 Nanonics Imaging (Israel)'),
(39144, 'https://ror.org/04z3wpq90', 'no_lang_code', 1, 'https://ror.org/04z3wpq90 Setred (Norway)'),
(39145, 'https://ror.org/04z5mkt27', 'no_lang_code', 1, 'https://ror.org/04z5mkt27 C10 Pharma (Norway)'),
(39146, 'https://ror.org/04z6y5271', 'no_lang_code', 1, 'https://ror.org/04z6y5271 Mepex Consult (Norway)'),
(39147, 'https://ror.org/04z80h498', 'no', 1, 'https://ror.org/04z80h498 Mektron'),
(39148, 'https://ror.org/04zab0068', 'no_lang_code', 1, 'https://ror.org/04zab0068 Industriell Design og Teknologi (Norway)'),
(39149, 'https://ror.org/04zbn7k04', 'en', 1, 'https://ror.org/04zbn7k04 Norwegian Agency for Development Cooperation'),
(39150, 'https://ror.org/04zbxvv62', 'no_lang_code', 1, 'https://ror.org/04zbxvv62 Zoaring (Norway)'),
(39151, 'https://ror.org/04zcpm936', 'pt', 1, 'https://ror.org/04zcpm936 Faculdade de Mococa'),
(39152, 'https://ror.org/04zeekc72', 'no', 1, 'https://ror.org/04zeekc72 LĆødingen kommune'),
(39153, 'https://ror.org/04zfra764', 'no_lang_code', 1, 'https://ror.org/04zfra764 Unger Fabrikker (Norway)'),
(39154, 'https://ror.org/04zg8gg70', 'en', 1, 'https://ror.org/04zg8gg70 Lloydminster Hospital'),
(39155, 'https://ror.org/04zkkh342', 'no_lang_code', 1, 'https://ror.org/04zkkh342 Hangzhou Xixi hospital'),
(39156, 'https://ror.org/04zn3ze07', 'sl', 1, 'https://ror.org/04zn3ze07 Animal Hospital Postojna'),
(39157, 'https://ror.org/04znhwb73', 'en', 1, 'https://ror.org/04znhwb73 Center for Scientific Research and Higher Education at Ensenada Centro de Investigación Científica y de Educación Superior de Ensenada'),
(39158, 'https://ror.org/04znkkz68', 'en', 1, 'https://ror.org/04znkkz68 Daewon University College ėŒ€ģ›ėŒ€ķ•™źµ'),
(39159, 'https://ror.org/04zppa787', 'no_lang_code', 1, 'https://ror.org/04zppa787 Jets Vacuum (Norway)'),
(39160, 'https://ror.org/04zqksp15', 'en', 1, 'https://ror.org/04zqksp15 International Society for Ecological Economics'),
(39161, 'https://ror.org/04ztaw443', 'en', 1, 'https://ror.org/04ztaw443 Fisheries Research Institute of Slovenia'),
(39162, 'https://ror.org/04zvzt585', 'no_lang_code', 1, 'https://ror.org/04zvzt585 ProteobrƔs (Brazil)'),
(39163, 'https://ror.org/04zyaf064', 'no_lang_code', 1, 'https://ror.org/04zyaf064 Akvaforsk Genetics Center (Norway)'),
(39164, 'https://ror.org/04zympr28', 'en', 1, 'https://ror.org/04zympr28 Insch War Memorial Hospital'),
(39165, 'https://ror.org/04zypah04', 'no_lang_code', 1, 'https://ror.org/04zypah04 L3Harris (Norway)'),
(39166, 'https://ror.org/04zzhqg11', 'no', 1, 'https://ror.org/04zzhqg11 Studentsamskipnaden i Trondheim'),
(39167, 'https://ror.org/05011r820', 'no_lang_code', 1, 'https://ror.org/05011r820 Orkana Forlag (Norway)'),
(39168, 'https://ror.org/0502tm991', 'en', 1, 'https://ror.org/0502tm991 Shenzhen Zhongshan Urological Hospital'),
(39169, 'https://ror.org/05041v694', 'en', 1, 'https://ror.org/05041v694 ProfessionshĆøjskolen UCC University College Capital'),
(39170, 'https://ror.org/0504mbn59', 'no_lang_code', 1, 'https://ror.org/0504mbn59 Novartis (Slovenia)'),
(39171, 'https://ror.org/0508eaq76', 'no_lang_code', 1, 'https://ror.org/0508eaq76 Chavakachcheri Hospital'),
(39172, 'https://ror.org/0508hmq85', 'no_lang_code', 1, 'https://ror.org/0508hmq85 Antoniosi Tecnologia Agroindustrial (Brazil)'),
(39173, 'https://ror.org/0509azq23', 'no_lang_code', 1, 'https://ror.org/0509azq23 Tendeka (Norway)'),
(39174, 'https://ror.org/0509e3289', 'en', 1, 'https://ror.org/0509e3289 Instituto Nacional de AntropologĆ­a e Historia National Institute of Anthropology and History'),
(39175, 'https://ror.org/050aq1k87', 'pt', 1, 'https://ror.org/050aq1k87 Sociedade Brasileira de Pesquisa Odontológica'),
(39176, 'https://ror.org/050c4yn95', 'en', 1, 'https://ror.org/050c4yn95 County Governor of SĆør-TrĆøndelag'),
(39177, 'https://ror.org/050f2kd12', 'en', 1, 'https://ror.org/050f2kd12 Lindbergh Foundation'),
(39178, 'https://ror.org/050jgsv04', 'en', 1, 'https://ror.org/050jgsv04 Somerset Hospital'),
(39179, 'https://ror.org/050kr2566', 'no_lang_code', 1, 'https://ror.org/050kr2566 FraktefartĆøyenes Rederiforening (Norway)'),
(39180, 'https://ror.org/050kv7279', 'en', 1, 'https://ror.org/050kv7279 Ishaka Adventist Hospital'),
(39181, 'https://ror.org/050n8x383', 'en', 1, 'https://ror.org/050n8x383 The Bristol-Myers Squibb Children''s Hospital'),
(39182, 'https://ror.org/050ng1611', 'no_lang_code', 1, 'https://ror.org/050ng1611 Admit (Norway)'),
(39183, 'https://ror.org/050phcn63', 'de', 1, 'https://ror.org/050phcn63 LVR-Klinik Kƶln'),
(39184, 'https://ror.org/050phsp73', 'no', 1, 'https://ror.org/050phsp73 MarkedhĆøyskolen'),
(39185, 'https://ror.org/050pqc318', 'no', 1, 'https://ror.org/050pqc318 Norsk Algeforening'),
(39186, 'https://ror.org/050psgz02', 'no_lang_code', 1, 'https://ror.org/050psgz02 Misque (Brazil)'),
(39187, 'https://ror.org/050qh0g23', 'en', 1, 'https://ror.org/050qh0g23 Villa Torri Hospital'),
(39188, 'https://ror.org/050rnw378', 'en', 1, 'https://ror.org/050rnw378 Division of Engineering Education & Centers'),
(39189, 'https://ror.org/050sa6c22', 'no_lang_code', 1, 'https://ror.org/050sa6c22 Alpina (Slovenia)'),
(39190, 'https://ror.org/050spgz68', 'en', 1, 'https://ror.org/050spgz68 Institute of Deep-Sea Science and Engineering äø­å›½ē§‘å­¦é™¢ę·±ęµ·ē§‘å­¦äøŽå·„ēØ‹ē ”ē©¶ę‰€'),
(39191, 'https://ror.org/050vybr60', 'en', 1, 'https://ror.org/050vybr60 Equator Aircraft Norway'),
(39192, 'https://ror.org/050w53c21', 'en', 1, 'https://ror.org/050w53c21 Free and Open Source Software Foundation'),
(39193, 'https://ror.org/050zafg52', 'no_lang_code', 1, 'https://ror.org/050zafg52 Fjord IT (Norway)'),
(39194, 'https://ror.org/0510v1781', 'no', 1, 'https://ror.org/0510v1781 Sandefjord Kommune'),
(39195, 'https://ror.org/0510w1f89', 'no_lang_code', 1, 'https://ror.org/0510w1f89 Eletrovento (Brazil)'),
(39196, 'https://ror.org/0514c4d93', 'en', 1, 'https://ror.org/0514c4d93 Kanagawa Dental University ē„žå„ˆå·ę­Æē§‘å¤§å­¦'),
(39197, 'https://ror.org/0515bx276', 'no_lang_code', 1, 'https://ror.org/0515bx276 Cappelen Damm (Norway)'),
(39198, 'https://ror.org/0515m2n86', 'en', 1, 'https://ror.org/0515m2n86 Max Planck Institute for Comparative Public Law and International Law Max-Planck-Institut für ausländisches öffentliches Recht und Völkerrecht'),
(39199, 'https://ror.org/0517ce304', 'en', 1, 'https://ror.org/0517ce304 Kingston University'),
(39200, 'https://ror.org/0519cg026', 'en', 1, 'https://ror.org/0519cg026 Knox Theological Seminary'),
(39201, 'https://ror.org/0519mfj33', 'no_lang_code', 1, 'https://ror.org/0519mfj33 Ostomycure (Norway)'),
(39202, 'https://ror.org/051axz542', 'en', 1, 'https://ror.org/051axz542 Manor College'),
(39203, 'https://ror.org/051c73j58', 'no_lang_code', 1, 'https://ror.org/051c73j58 Gonar (Poland)'),
(39204, 'https://ror.org/051cacg72', 'en', 1, 'https://ror.org/051cacg72 Samaritan Albany General Hospital'),
(39205, 'https://ror.org/051cpbj61', 'no_lang_code', 1, 'https://ror.org/051cpbj61 Sensum (Slovenia)'),
(39206, 'https://ror.org/051d2r706', 'no_lang_code', 1, 'https://ror.org/051d2r706 Selventa (United States)'),
(39207, 'https://ror.org/051dggm19', 'en', 1, 'https://ror.org/051dggm19 Dublin Business School'),
(39208, 'https://ror.org/051eh0e10', 'no_lang_code', 1, 'https://ror.org/051eh0e10 Caritas Hospital'),
(39209, 'https://ror.org/051f5za14', 'no_lang_code', 1, 'https://ror.org/051f5za14 Engimplan (Brazil)'),
(39210, 'https://ror.org/051fftw81', 'en', 1, 'https://ror.org/051fftw81 Division of Mathematical Sciences');
INSERT INTO `rors` VALUES
(39211, 'https://ror.org/051g1tp93', 'no_lang_code', 1, 'https://ror.org/051g1tp93 Domos (Norway)'),
(39212, 'https://ror.org/051hcjr97', 'pt', 1, 'https://ror.org/051hcjr97 Fundação Carlos Chagas'),
(39213, 'https://ror.org/051jybk56', 'en', 1, 'https://ror.org/051jybk56 Henan Provincial Eye Hospital ę²³å—ēœēœ¼ē§‘ē ”ē©¶ę‰€'),
(39214, 'https://ror.org/051mhmc69', 'en', 1, 'https://ror.org/051mhmc69 Fernand Braudel Institute of World Economics Instituto Fernand Braudel de Economia Mundial'),
(39215, 'https://ror.org/051nfce45', 'de', 1, 'https://ror.org/051nfce45 Endokrinologikum'),
(39216, 'https://ror.org/051p4t773', 'en', 1, 'https://ror.org/051p4t773 Institute for Church, Religion, and Worldview Research'),
(39217, 'https://ror.org/051pcb820', 'en', 1, 'https://ror.org/051pcb820 University of the Nations'),
(39218, 'https://ror.org/051pm1k39', 'en', 1, 'https://ror.org/051pm1k39 Encino Hospital Medical Center'),
(39219, 'https://ror.org/051q8jk17', 'en', 1, 'https://ror.org/051q8jk17 Higher Technological Institute المعهد Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ Ų§Ł„Ų¹Ų§Ł„ŁŠ'),
(39220, 'https://ror.org/051srph65', 'no_lang_code', 1, 'https://ror.org/051srph65 Imatis (Norway)'),
(39221, 'https://ror.org/051tbnd05', 'no_lang_code', 1, 'https://ror.org/051tbnd05 Fjellstrand (Norway)'),
(39222, 'https://ror.org/051tt6c85', 'it', 1, 'https://ror.org/051tt6c85 Azienda Ospedaliero-Universitaria Policlinico - Vittorio Emanuele'),
(39223, 'https://ror.org/051wkpd79', 'pt', 1, 'https://ror.org/051wkpd79 Faculdades Integradas Teresa D''Ɓvila'),
(39224, 'https://ror.org/051z2qe83', 'no_lang_code', 1, 'https://ror.org/051z2qe83 BrasilOzƓnio (Brazil)'),
(39225, 'https://ror.org/0520d0g72', 'en', 1, 'https://ror.org/0520d0g72 Academy of Physiotherapy in Wrocław'),
(39226, 'https://ror.org/0520whs57', 'en', 1, 'https://ror.org/0520whs57 IBAT College'),
(39227, 'https://ror.org/0523nzq15', 'en', 1, 'https://ror.org/0523nzq15 Juan S. Alano Memorial Hospital'),
(39228, 'https://ror.org/0523wf777', 'en', 1, 'https://ror.org/0523wf777 Ridgecrest Regional Hospital'),
(39229, 'https://ror.org/0524wwz72', 'no_lang_code', 1, 'https://ror.org/0524wwz72 Unigen Tecnologia pelo DNA (Brazil)'),
(39230, 'https://ror.org/05256tw11', 'en', 1, 'https://ror.org/05256tw11 Cologne University of Music Hochschule für Musik und Tanz Köln'),
(39231, 'https://ror.org/0526xz308', 'de', 1, 'https://ror.org/0526xz308 Siloah St. Trudpert Klinikum'),
(39232, 'https://ror.org/05272pa41', 'en', 1, 'https://ror.org/05272pa41 Municipality of Andebu'),
(39233, 'https://ror.org/052b84r98', 'no_lang_code', 1, 'https://ror.org/052b84r98 FiberWork (Brazil)'),
(39234, 'https://ror.org/052bnfg64', 'no_lang_code', 1, 'https://ror.org/052bnfg64 Kryptus (Brazil)'),
(39235, 'https://ror.org/052frf812', 'en', 1, 'https://ror.org/052frf812 Shanmuganathan Engineering College'),
(39236, 'https://ror.org/052fv6w39', 'pt', 1, 'https://ror.org/052fv6w39 Academia Brasileira de Audiologia Brazilian Academy of Audiology'),
(39237, 'https://ror.org/052gr5r08', 'en', 1, 'https://ror.org/052gr5r08 Simula School'),
(39238, 'https://ror.org/052gzq419', 'de', 1, 'https://ror.org/052gzq419 Hochschule für Jüdische Studien'),
(39239, 'https://ror.org/052k3m749', 'no_lang_code', 1, 'https://ror.org/052k3m749 Invenire Internacional InformƔtica (Brazil)'),
(39240, 'https://ror.org/052nb9d93', 'no_lang_code', 1, 'https://ror.org/052nb9d93 Cuesta (Brazil)'),
(39241, 'https://ror.org/052nwsb77', 'no_lang_code', 1, 'https://ror.org/052nwsb77 Norwex (Norway)'),
(39242, 'https://ror.org/052nzzz22', 'en', 1, 'https://ror.org/052nzzz22 Aberdeen Regional Hospital'),
(39243, 'https://ror.org/052pha961', 'en', 1, 'https://ror.org/052pha961 National School of Leadership in Education'),
(39244, 'https://ror.org/052q3v778', 'en', 1, 'https://ror.org/052q3v778 Northwest Orthopaedic Specialists'),
(39245, 'https://ror.org/052q5nf15', 'en', 1, 'https://ror.org/052q5nf15 Five Continents Museum Staatliches Museum für Völkerkunde'),
(39246, 'https://ror.org/052rvmw54', 'no_lang_code', 1, 'https://ror.org/052rvmw54 Underbakke (Norway)'),
(39247, 'https://ror.org/052tt7c68', 'de', 1, 'https://ror.org/052tt7c68 Carl Gustav Carus-Institut'),
(39248, 'https://ror.org/052wcqj17', 'fr', 1, 'https://ror.org/052wcqj17 Institut de Biologie et Technologies Institute of Biology and Technology'),
(39249, 'https://ror.org/052x09g67', 'en', 1, 'https://ror.org/052x09g67 Norwegian Film Institute'),
(39250, 'https://ror.org/052yjgk16', 'en', 1, 'https://ror.org/052yjgk16 Hung Yen University of Technology and Education TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m Kỹ thuįŗ­t Hʰng YĆŖn'),
(39251, 'https://ror.org/052yqc035', 'no_lang_code', 1, 'https://ror.org/052yqc035 Muthu Hospital'),
(39252, 'https://ror.org/052z6qn75', 'no_lang_code', 1, 'https://ror.org/052z6qn75 FMP Technology (Germany)'),
(39253, 'https://ror.org/0530erx71', 'en', 1, 'https://ror.org/0530erx71 Weiss Memorial Hospital'),
(39254, 'https://ror.org/05342be32', 'en', 1, 'https://ror.org/05342be32 Askham Bryan College'),
(39255, 'https://ror.org/05351er27', 'no_lang_code', 1, 'https://ror.org/05351er27 VoiceASP (Norway)'),
(39256, 'https://ror.org/0535s4372', 'no_lang_code', 1, 'https://ror.org/0535s4372 Mobilarm (Norway)'),
(39257, 'https://ror.org/0536rsk67', 'en', 1, 'https://ror.org/0536rsk67 First Affiliated Hospital of Henan University'),
(39258, 'https://ror.org/0539xgm86', 'pt', 1, 'https://ror.org/0539xgm86 Instituto Estadual de Diabetes e Endocrinologia Luiz Capriglione'),
(39259, 'https://ror.org/053a2cp42', 'en', 1, 'https://ror.org/053a2cp42 Division of Information and Intelligent Systems'),
(39260, 'https://ror.org/053cj9d07', 'en', 1, 'https://ror.org/053cj9d07 Onderstepoort Veterinary Academic Hospital Onderstepoort-dierehospitaal'),
(39261, 'https://ror.org/053e9nw85', 'en', 1, 'https://ror.org/053e9nw85 Evangelical Theological Faculty Evangelische Theologische Faculteit Evangelische Theologische Faculteit Leuven FacultƩ de thƩologie ƩvangƩlique de louvain'),
(39262, 'https://ror.org/053gnae26', 'en', 1, 'https://ror.org/053gnae26 Concordia Hospital'),
(39263, 'https://ror.org/053k88v22', 'no_lang_code', 1, 'https://ror.org/053k88v22 CreoTech (Norway)'),
(39264, 'https://ror.org/053mjnp36', 'no_lang_code', 1, 'https://ror.org/053mjnp36 LivaNova (Belgium)'),
(39265, 'https://ror.org/053mnmm40', 'no_lang_code', 1, 'https://ror.org/053mnmm40 City Motion (Norway)'),
(39266, 'https://ror.org/053p7mr76', 'no_lang_code', 1, 'https://ror.org/053p7mr76 Animalia (Norway)'),
(39267, 'https://ror.org/053pw6b94', 'no_lang_code', 1, 'https://ror.org/053pw6b94 Vitenparken'),
(39268, 'https://ror.org/053pwq338', 'no_lang_code', 1, 'https://ror.org/053pwq338 ETI Elektroelement (Slovenia)'),
(39269, 'https://ror.org/053qb6g74', 'en', 1, 'https://ror.org/053qb6g74 Paper and Fibre Research Institute'),
(39270, 'https://ror.org/053s3hs07', 'no_lang_code', 1, 'https://ror.org/053s3hs07 Astronika (Poland)'),
(39271, 'https://ror.org/053sej726', 'no_lang_code', 1, 'https://ror.org/053sej726 Agra (Norway)'),
(39272, 'https://ror.org/053syz184', 'en', 1, 'https://ror.org/053syz184 Wuhan Technical College of Communications'),
(39273, 'https://ror.org/053tba870', 'en', 1, 'https://ror.org/053tba870 Ethiopian Police University College'),
(39274, 'https://ror.org/053tv0d72', 'no_lang_code', 1, 'https://ror.org/053tv0d72 Capwell (Norway)'),
(39275, 'https://ror.org/053vdc408', 'no_lang_code', 1, 'https://ror.org/053vdc408 Subsea Chokes International (Norway)'),
(39276, 'https://ror.org/053ws4838', 'en', 1, 'https://ror.org/053ws4838 Airport Shunyi District Hospital'),
(39277, 'https://ror.org/053x7k331', 'en', 1, 'https://ror.org/053x7k331 St Luke''s Hospital'),
(39278, 'https://ror.org/053xcdp31', 'no_lang_code', 1, 'https://ror.org/053xcdp31 Genomar (Norway)'),
(39279, 'https://ror.org/053y0qd29', 'it', 1, 'https://ror.org/053y0qd29 Azienda Ospedaliera Pugliese Ciaccio'),
(39280, 'https://ror.org/053y7yq36', 'no_lang_code', 1, 'https://ror.org/053y7yq36 BRI Offshore (Norway)'),
(39281, 'https://ror.org/053zh1b29', 'no_lang_code', 1, 'https://ror.org/053zh1b29 Camo (Norway)'),
(39282, 'https://ror.org/053zwxr79', 'en', 1, 'https://ror.org/053zwxr79 United Nations University – Maastricht Economic and Social Research Institute on Innovation and Technology'),
(39283, 'https://ror.org/0547b1h57', 'no_lang_code', 1, 'https://ror.org/0547b1h57 Softhis (Poland)'),
(39284, 'https://ror.org/0547sph41', 'no', 1, 'https://ror.org/0547sph41 Hedmark Kunnskapspark'),
(39285, 'https://ror.org/054b9va62', 'no_lang_code', 1, 'https://ror.org/054b9va62 Overplay (Brazil)'),
(39286, 'https://ror.org/054dsb308', 'en', 1, 'https://ror.org/054dsb308 Dr. Everett Chalmers Regional Hospital'),
(39287, 'https://ror.org/054dshd81', 'en', 1, 'https://ror.org/054dshd81 International University MITSO'),
(39288, 'https://ror.org/054dxwf20', 'no_lang_code', 1, 'https://ror.org/054dxwf20 Vibrant Data (United States)'),
(39289, 'https://ror.org/054h11b04', 'en', 1, 'https://ror.org/054h11b04 Central Finland Health Care District Keski-Suomen keskussairaala'),
(39290, 'https://ror.org/054hb1p97', 'no_lang_code', 1, 'https://ror.org/054hb1p97 BR Express (Brazil)'),
(39291, 'https://ror.org/054k08k63', 'en', 1, 'https://ror.org/054k08k63 World Laparoscopy Hospital'),
(39292, 'https://ror.org/054kgv845', 'no_lang_code', 1, 'https://ror.org/054kgv845 Unifeeder (Norway)'),
(39293, 'https://ror.org/054m12006', 'no_lang_code', 1, 'https://ror.org/054m12006 Mikanit (Poland)'),
(39294, 'https://ror.org/054n7j171', 'no_lang_code', 1, 'https://ror.org/054n7j171 Biochos (Norway)'),
(39295, 'https://ror.org/054p5nv83', 'no_lang_code', 1, 'https://ror.org/054p5nv83 Azumi Hospital'),
(39296, 'https://ror.org/054r3a876', 'no_lang_code', 1, 'https://ror.org/054r3a876 Nordic Mining (Norway)'),
(39297, 'https://ror.org/054v2zz61', 'no_lang_code', 1, 'https://ror.org/054v2zz61 RemovAid (Norway)'),
(39298, 'https://ror.org/054ykyc47', 'en', 1, 'https://ror.org/054ykyc47 Palo Verde Hospital'),
(39299, 'https://ror.org/054ympc71', 'en', 1, 'https://ror.org/054ympc71 Norwegian Beekeepers Association'),
(39300, 'https://ror.org/055081974', 'no_lang_code', 1, 'https://ror.org/055081974 Lid Invest (Norway)'),
(39301, 'https://ror.org/05515v279', 'en', 1, 'https://ror.org/05515v279 Metro Health Hospital'),
(39302, 'https://ror.org/05516nt33', 'no_lang_code', 1, 'https://ror.org/05516nt33 Jordan Valley Semiconductors (China)'),
(39303, 'https://ror.org/0551mkt91', 'de', 1, 'https://ror.org/0551mkt91 St. Remigius Krankenhaus Opladen'),
(39304, 'https://ror.org/0554mjv55', 'de', 1, 'https://ror.org/0554mjv55 Institut für EnergieTransformation'),
(39305, 'https://ror.org/05569xx10', 'no_lang_code', 1, 'https://ror.org/05569xx10 Bionor (Norway)'),
(39306, 'https://ror.org/05594xe57', 'no_lang_code', 1, 'https://ror.org/05594xe57 InterMedium (Norway)'),
(39307, 'https://ror.org/0559rdv60', 'no_lang_code', 1, 'https://ror.org/0559rdv60 Spesialprodukter SĆør (Norway)'),
(39308, 'https://ror.org/055bk1853', 'no_lang_code', 1, 'https://ror.org/055bk1853 Unichem (Slovenia)'),
(39309, 'https://ror.org/055faex28', 'no_lang_code', 1, 'https://ror.org/055faex28 Crown Bioscience (China)'),
(39310, 'https://ror.org/055frmz88', 'no_lang_code', 1, 'https://ror.org/055frmz88 Teknomedia (Norway)'),
(39311, 'https://ror.org/055fsxq56', 'no_lang_code', 1, 'https://ror.org/055fsxq56 Intertek (Switzerland)'),
(39312, 'https://ror.org/055ftza32', 'en', 1, 'https://ror.org/055ftza32 Institute of Internal Auditors Norway'),
(39313, 'https://ror.org/055fzjh61', 'no_lang_code', 1, 'https://ror.org/055fzjh61 Neorad (Norway)'),
(39314, 'https://ror.org/055g39p68', 'sk', 1, 'https://ror.org/055g39p68 SlovenskĆ” SpoločnosÅ„ pre Kvalitu'),
(39315, 'https://ror.org/055hsdr48', 'no_lang_code', 1, 'https://ror.org/055hsdr48 Centro de Espectrometria de Massas Aplicada (Brazil)'),
(39316, 'https://ror.org/055j3vp97', 'no_lang_code', 1, 'https://ror.org/055j3vp97 Enel (Poland)'),
(39317, 'https://ror.org/055jgd565', 'no_lang_code', 1, 'https://ror.org/055jgd565 Orkel (Norway)'),
(39318, 'https://ror.org/055jjx645', 'en', 1, 'https://ror.org/055jjx645 Oslo Cancer Cluster'),
(39319, 'https://ror.org/055nt8z76', 'no_lang_code', 1, 'https://ror.org/055nt8z76 Glor (Norway)'),
(39320, 'https://ror.org/055pv4k97', 'no_lang_code', 1, 'https://ror.org/055pv4k97 Pemco (Norway)'),
(39321, 'https://ror.org/055q5tj54', 'no_lang_code', 1, 'https://ror.org/055q5tj54 BioCer Entwicklungs (Germany)'),
(39322, 'https://ror.org/055ta3j62', 'no_lang_code', 1, 'https://ror.org/055ta3j62 Strainoptics (United States)'),
(39323, 'https://ror.org/055tjvf60', 'no_lang_code', 1, 'https://ror.org/055tjvf60 Med-Storm Innovation (Norway)'),
(39324, 'https://ror.org/055vk7b41', 'en', 1, 'https://ror.org/055vk7b41 Ng Teng Fong General Hospital'),
(39325, 'https://ror.org/055wgnw59', 'en', 1, 'https://ror.org/055wgnw59 Norwegian Nobel Institute'),
(39326, 'https://ror.org/055y2wa71', 'no_lang_code', 1, 'https://ror.org/055y2wa71 Limpgas Tecnologia (Brazil)'),
(39327, 'https://ror.org/0560ehd58', 'en', 1, 'https://ror.org/0560ehd58 Stephen Cottage Hospital'),
(39328, 'https://ror.org/0561ntb60', 'no_lang_code', 1, 'https://ror.org/0561ntb60 Impact Clean Power Technology (Poland)'),
(39329, 'https://ror.org/0563w4015', 'sl', 1, 'https://ror.org/0563w4015 TehnoloŔko raziskovalni center JUB'),
(39330, 'https://ror.org/0563z6d74', 'en', 1, 'https://ror.org/0563z6d74 421 Hospital of PLA'),
(39331, 'https://ror.org/0568w4770', 'en', 1, 'https://ror.org/0568w4770 Bible College of South Australia'),
(39332, 'https://ror.org/056agx034', 'de', 1, 'https://ror.org/056agx034 Krankenhaus Neuwerk "Maria von den Aposteln"'),
(39333, 'https://ror.org/056bjcd96', 'no_lang_code', 1, 'https://ror.org/056bjcd96 Jiangsu Shengze Hospital'),
(39334, 'https://ror.org/056c41506', 'no_lang_code', 1, 'https://ror.org/056c41506 Serodus (Norway)'),
(39335, 'https://ror.org/056c4z730', 'en', 1, 'https://ror.org/056c4z730 ProfessionshĆøjskolen University College Nordjylland University College of Northern Denmark'),
(39336, 'https://ror.org/056cywe62', 'en', 1, 'https://ror.org/056cywe62 Defense Language Institute Foreign Language Center'),
(39337, 'https://ror.org/056ej1m32', 'no_lang_code', 1, 'https://ror.org/056ej1m32 Marex (Norway)'),
(39338, 'https://ror.org/056hxdb03', 'no_lang_code', 1, 'https://ror.org/056hxdb03 Griaule Biometrics (Brazil)'),
(39339, 'https://ror.org/056m9b429', 'pt', 1, 'https://ror.org/056m9b429 Sociedade AstronƓmica Brasileira'),
(39340, 'https://ror.org/056mrrf04', 'en', 1, 'https://ror.org/056mrrf04 St. Luke''s Hospital'),
(39341, 'https://ror.org/056n6pc71', 'no_lang_code', 1, 'https://ror.org/056n6pc71 NanoPhotonica (United States)'),
(39342, 'https://ror.org/056nsw527', 'no_lang_code', 1, 'https://ror.org/056nsw527 Explomet (Poland)'),
(39343, 'https://ror.org/056pzh665', 'en', 1, 'https://ror.org/056pzh665 Raulerson Hospital'),
(39344, 'https://ror.org/056rkh971', 'en', 1, 'https://ror.org/056rkh971 Stony Brook Children''s Hospital'),
(39345, 'https://ror.org/056rxss60', 'no_lang_code', 1, 'https://ror.org/056rxss60 XMobots (Brazil)'),
(39346, 'https://ror.org/056sydj58', 'en', 1, 'https://ror.org/056sydj58 National Wheelchair Softball Association'),
(39347, 'https://ror.org/056v9a321', 'en', 1, 'https://ror.org/056v9a321 Caneus International'),
(39348, 'https://ror.org/056zqys57', 'no_lang_code', 1, 'https://ror.org/056zqys57 Solution Seeker (Norway)'),
(39349, 'https://ror.org/05701yq92', 'es', 1, 'https://ror.org/05701yq92 Hospital Base Guillermo Almenara Irigoyen'),
(39350, 'https://ror.org/0570jbq35', 'en', 1, 'https://ror.org/0570jbq35 Fusion UK'),
(39351, 'https://ror.org/0572dex65', 'no', 1, 'https://ror.org/0572dex65 Vitensenteret SĆørlandet'),
(39352, 'https://ror.org/0572v5y16', 'en', 1, 'https://ror.org/0572v5y16 University College Lahore'),
(39353, 'https://ror.org/0574vhp63', 'no_lang_code', 1, 'https://ror.org/0574vhp63 Nordic Quantum Computing Group (Norway)'),
(39354, 'https://ror.org/05789m354', 'no_lang_code', 1, 'https://ror.org/05789m354 Incubadora Tecnológica Univap Revap (Brazil)'),
(39355, 'https://ror.org/057919b11', 'no_lang_code', 1, 'https://ror.org/057919b11 K & K Designs (Norway)'),
(39356, 'https://ror.org/0579e9266', 'en', 1, 'https://ror.org/0579e9266 Beijing Fengtai Hospital'),
(39357, 'https://ror.org/057bfzf92', 'no_lang_code', 1, 'https://ror.org/057bfzf92 Camlin Technologies (United Kingdom)'),
(39358, 'https://ror.org/057f18p10', 'no_lang_code', 1, 'https://ror.org/057f18p10 Encap Security (Norway)'),
(39359, 'https://ror.org/057gs9r51', 'en', 1, 'https://ror.org/057gs9r51 Glion Institute of Higher Education Institut de hautes Ʃtudes de glion'),
(39360, 'https://ror.org/057hmyk78', 'no', 1, 'https://ror.org/057hmyk78 Ungt EntreprenĆørskap'),
(39361, 'https://ror.org/057k8tk89', 'es', 1, 'https://ror.org/057k8tk89 Sociedad de BiologĆ­a de Chile'),
(39362, 'https://ror.org/057mx6f31', 'no_lang_code', 1, 'https://ror.org/057mx6f31 Klohn Crippen Berger (Canada)'),
(39363, 'https://ror.org/057n9mf41', 'no_lang_code', 1, 'https://ror.org/057n9mf41 Jolly Aero (Slovenia)'),
(39364, 'https://ror.org/057q4k809', 'no_lang_code', 1, 'https://ror.org/057q4k809 Solstad Offshore (Norway)'),
(39365, 'https://ror.org/057scmk50', 'en', 1, 'https://ror.org/057scmk50 Sami Parliament of Finland'),
(39366, 'https://ror.org/057t0vd36', 'en', 1, 'https://ror.org/057t0vd36 Government Unani and Ayurvedic Degree College and Hospital'),
(39367, 'https://ror.org/057vq6e26', 'en', 1, 'https://ror.org/057vq6e26 Beijing Hospital of Traditional Chinese Medicine åŒ—äŗ¬åø‚äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(39368, 'https://ror.org/057xpxe28', 'no_lang_code', 1, 'https://ror.org/057xpxe28 Norsk KirkegƄrdsservice (Norway)'),
(39369, 'https://ror.org/057xvqd88', 'sl', 1, 'https://ror.org/057xvqd88 Veterinarska Bolnica Maribor'),
(39370, 'https://ror.org/057zq5186', 'no', 1, 'https://ror.org/057zq5186 MĆøre og Romsdal Fylkeskommune'),
(39371, 'https://ror.org/05808w753', 'en', 1, 'https://ror.org/05808w753 Norwegian Institute of Emotion-focused Therapy'),
(39372, 'https://ror.org/05817s869', 'no_lang_code', 1, 'https://ror.org/05817s869 Snowdon (United States)'),
(39373, 'https://ror.org/0582p8j71', 'en', 1, 'https://ror.org/0582p8j71 Jagannath University'),
(39374, 'https://ror.org/05884yn26', 'en', 1, 'https://ror.org/05884yn26 Conselho de Pesquisas em Educação e Ciências Sciences and Education Research Council'),
(39375, 'https://ror.org/0588hkb73', 'no_lang_code', 1, 'https://ror.org/0588hkb73 Quality Management Software (Norway)'),
(39376, 'https://ror.org/05891dg79', 'pt', 1, 'https://ror.org/05891dg79 Fundação André Tosello'),
(39377, 'https://ror.org/0589hep89', 'en', 1, 'https://ror.org/0589hep89 Norwegian Centre for Space-related Education'),
(39378, 'https://ror.org/058a3vg17', 'en', 1, 'https://ror.org/058a3vg17 Central Mental Hospital'),
(39379, 'https://ror.org/058b5kq09', 'no_lang_code', 1, 'https://ror.org/058b5kq09 Polskie Górnictwo Naftowe i Gazownictwo (Poland)'),
(39380, 'https://ror.org/058bst240', 'no_lang_code', 1, 'https://ror.org/058bst240 Hamidia Hospital'),
(39381, 'https://ror.org/058d7nh07', 'no_lang_code', 1, 'https://ror.org/058d7nh07 Oncoinvent (Norway)'),
(39382, 'https://ror.org/058g2b535', 'no_lang_code', 1, 'https://ror.org/058g2b535 Limnos (Slovenia)'),
(39383, 'https://ror.org/058gxc624', 'no_lang_code', 1, 'https://ror.org/058gxc624 NLI Innovation (Norway)'),
(39384, 'https://ror.org/058gxfr70', 'no_lang_code', 1, 'https://ror.org/058gxfr70 NorMedia (Norway)'),
(39385, 'https://ror.org/058jj2467', 'no_lang_code', 1, 'https://ror.org/058jj2467 Mechanix Film (Norway)'),
(39386, 'https://ror.org/058jrcm27', 'en', 1, 'https://ror.org/058jrcm27 Aust-Agder County Municipality'),
(39387, 'https://ror.org/058kgj085', 'no_lang_code', 1, 'https://ror.org/058kgj085 Hexalab (Brazil)'),
(39388, 'https://ror.org/058r2a869', 'no_lang_code', 1, 'https://ror.org/058r2a869 Comptel (Norway)'),
(39389, 'https://ror.org/058ran651', 'no_lang_code', 1, 'https://ror.org/058ran651 King Oscar (Norway)'),
(39390, 'https://ror.org/058rvd314', 'fr', 1, 'https://ror.org/058rvd314 Institut de Physique ThƩorique'),
(39391, 'https://ror.org/058sgvn64', 'en', 1, 'https://ror.org/058sgvn64 Alameda Hospital'),
(39392, 'https://ror.org/058xdps70', 'en', 1, 'https://ror.org/058xdps70 Guangdong Province Science and Technology Library'),
(39393, 'https://ror.org/058yg6182', 'en', 1, 'https://ror.org/058yg6182 Brandenburg Main State Archive Brandenburgisches Landeshauptarchiv'),
(39394, 'https://ror.org/058zgr739', 'en', 1, 'https://ror.org/058zgr739 Consortium de Recherche en Oncologie Clinique du QuƩbec Quebec - Clinical Research Organization in Cancer'),
(39395, 'https://ror.org/0590q1218', 'en', 1, 'https://ror.org/0590q1218 Innovest'),
(39396, 'https://ror.org/0591czb14', 'pt', 1, 'https://ror.org/0591czb14 Secretaria da Segurança Pública'),
(39397, 'https://ror.org/0591e2567', 'de', 1, 'https://ror.org/0591e2567 Spital Limmattal'),
(39398, 'https://ror.org/0591rz722', 'no_lang_code', 1, 'https://ror.org/0591rz722 Triad (Norway)'),
(39399, 'https://ror.org/0592jzf54', 'no', 1, 'https://ror.org/0592jzf54 SpareBank 1 Nord-Norge'),
(39400, 'https://ror.org/0592q0v50', 'en', 1, 'https://ror.org/0592q0v50 Giustino Fortunato University UniversitĆ  degli Studi Giustino Fortunato'),
(39401, 'https://ror.org/0593dvd47', 'en', 1, 'https://ror.org/0593dvd47 Deutsches Orient-Institut German Orient Foundation'),
(39402, 'https://ror.org/0594j9961', 'fr', 1, 'https://ror.org/0594j9961 UniversitƩ des Sciences, de Technologie et de MƩdecine'),
(39403, 'https://ror.org/0594wgp58', 'en', 1, 'https://ror.org/0594wgp58 Mercy Tiffin Hospital'),
(39404, 'https://ror.org/059795h04', 'no_lang_code', 1, 'https://ror.org/059795h04 Papirbredden Innovasjon (Norway)'),
(39405, 'https://ror.org/0597nct77', 'en', 1, 'https://ror.org/0597nct77 Morton Hospital'),
(39406, 'https://ror.org/059cfwd16', 'no_lang_code', 1, 'https://ror.org/059cfwd16 Calanus (Norway)'),
(39407, 'https://ror.org/059ed8079', 'en', 1, 'https://ror.org/059ed8079 Alliance for European Diabetes Research'),
(39408, 'https://ror.org/059egf570', 'no_lang_code', 1, 'https://ror.org/059egf570 Lucinski (Brazil)'),
(39409, 'https://ror.org/059fh8358', 'no_lang_code', 1, 'https://ror.org/059fh8358 Trysil Kommune'),
(39410, 'https://ror.org/059gy0v60', 'en', 1, 'https://ror.org/059gy0v60 Women of Essence'),
(39411, 'https://ror.org/059h94t31', 'no_lang_code', 1, 'https://ror.org/059h94t31 REN (Norway)'),
(39412, 'https://ror.org/059jaw607', 'no_lang_code', 1, 'https://ror.org/059jaw607 Clean Silicon (Norway)'),
(39413, 'https://ror.org/059jbqt71', 'fr', 1, 'https://ror.org/059jbqt71 Institut du Nouveau Monde'),
(39414, 'https://ror.org/059m0z495', 'no_lang_code', 1, 'https://ror.org/059m0z495 Premium Rosa (Poland)'),
(39415, 'https://ror.org/059mcba53', 'no_lang_code', 1, 'https://ror.org/059mcba53 Preseria (Norway)'),
(39416, 'https://ror.org/059p4v436', 'no_lang_code', 1, 'https://ror.org/059p4v436 Kanazawa Hospital 金沢病院'),
(39417, 'https://ror.org/059s74574', 'en', 1, 'https://ror.org/059s74574 Labour Institute for Economic Research'),
(39418, 'https://ror.org/059skkh49', 'no_lang_code', 1, 'https://ror.org/059skkh49 TKK'),
(39419, 'https://ror.org/059wee776', 'no_lang_code', 1, 'https://ror.org/059wee776 Nigrad (Slovenia)'),
(39420, 'https://ror.org/059x5ff13', 'no_lang_code', 1, 'https://ror.org/059x5ff13 Aliança Orgânica Soluções Ambientais (Brazil)'),
(39421, 'https://ror.org/059xg9r41', 'no_lang_code', 1, 'https://ror.org/059xg9r41 Unified Messaging Systems (Norway)'),
(39422, 'https://ror.org/059xx0z39', 'en', 1, 'https://ror.org/059xx0z39 Norwegian Labour Inspection Authority'),
(39423, 'https://ror.org/059yn9d94', 'no', 1, 'https://ror.org/059yn9d94 Asker kommune'),
(39424, 'https://ror.org/059z8dx76', 'no_lang_code', 1, 'https://ror.org/059z8dx76 Danko Hodowla Roślin (Poland)'),
(39425, 'https://ror.org/059zjhp33', 'en', 1, 'https://ror.org/059zjhp33 Sector Asset Management'),
(39426, 'https://ror.org/059zrhd58', 'no_lang_code', 1, 'https://ror.org/059zrhd58 Norsk Juletre (Norway)'),
(39427, 'https://ror.org/05a18r864', 'en', 1, 'https://ror.org/05a18r864 International Ocean Discovery Program'),
(39428, 'https://ror.org/05a1hde32', 'no_lang_code', 1, 'https://ror.org/05a1hde32 Sypress Forlag (Norway)'),
(39429, 'https://ror.org/05a1ns214', 'no_lang_code', 1, 'https://ror.org/05a1ns214 Regatta (Norway)'),
(39430, 'https://ror.org/05a4p4j42', 'en', 1, 'https://ror.org/05a4p4j42 Peace Institute- Institute for Contemporary Social and Political Studies'),
(39431, 'https://ror.org/05a60y787', 'en', 1, 'https://ror.org/05a60y787 Intercultural Open University Foundation'),
(39432, 'https://ror.org/05a637472', 'en', 1, 'https://ror.org/05a637472 CURE Children’s Hospital of Uganda'),
(39433, 'https://ror.org/05a70mg07', 'en', 1, 'https://ror.org/05a70mg07 Nakaseke Hospital'),
(39434, 'https://ror.org/05a8h2h02', 'pt', 1, 'https://ror.org/05a8h2h02 Sociedade Brasileira de História da Ciência'),
(39435, 'https://ror.org/05a8p8995', 'no_lang_code', 1, 'https://ror.org/05a8p8995 Glencore (Norway)'),
(39436, 'https://ror.org/05abjx080', 'no_lang_code', 1, 'https://ror.org/05abjx080 Spider Solutions (Norway)'),
(39437, 'https://ror.org/05agnp051', 'no_lang_code', 1, 'https://ror.org/05agnp051 Nema Research (United States)'),
(39438, 'https://ror.org/05ahdc712', 'en', 1, 'https://ror.org/05ahdc712 GS1 Norway'),
(39439, 'https://ror.org/05ahxa252', 'en', 1, 'https://ror.org/05ahxa252 ASA University Bangladesh আশা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ বাংলাদেশ'),
(39440, 'https://ror.org/05ajm2r35', 'no_lang_code', 1, 'https://ror.org/05ajm2r35 Dynavec (Norway)'),
(39441, 'https://ror.org/05akpxs80', 'no_lang_code', 1, 'https://ror.org/05akpxs80 Nordic Semiconductor (Norway)'),
(39442, 'https://ror.org/05amp0d44', 'no_lang_code', 1, 'https://ror.org/05amp0d44 Novamed (Italy)'),
(39443, 'https://ror.org/05an5n875', 'en', 1, 'https://ror.org/05an5n875 Saad Specialist Hospital مستؓفى Ų³Ų¹ŲÆ Ų§Ł„ŲŖŲ®ŲµŲµŁŠ'),
(39444, 'https://ror.org/05aq38y40', 'no_lang_code', 1, 'https://ror.org/05aq38y40 ProQuest (United Kingdom)'),
(39445, 'https://ror.org/05as0g053', 'en', 1, 'https://ror.org/05as0g053 Mithila Minority Dental College And Hospital'),
(39446, 'https://ror.org/05ate2e14', 'fr', 1, 'https://ror.org/05ate2e14 Ɖcole des Mines de Douai'),
(39447, 'https://ror.org/05b2zm953', 'no_lang_code', 1, 'https://ror.org/05b2zm953 Pullup (Brazil)'),
(39448, 'https://ror.org/05b30h594', 'no_lang_code', 1, 'https://ror.org/05b30h594 Real Alloy (Norway)'),
(39449, 'https://ror.org/05b51ak88', 'no_lang_code', 1, 'https://ror.org/05b51ak88 Chinese People’s Liberation Army 263 hospital'),
(39450, 'https://ror.org/05b52bg33', 'en', 1, 'https://ror.org/05b52bg33 Tatarstan Academy of Sciences'),
(39451, 'https://ror.org/05b5whm83', 'en', 1, 'https://ror.org/05b5whm83 Norwegian Agency for Quality Assurance in Education'),
(39452, 'https://ror.org/05b8fve51', 'no_lang_code', 1, 'https://ror.org/05b8fve51 Archer (Norway)'),
(39453, 'https://ror.org/05b9s4832', 'no_lang_code', 1, 'https://ror.org/05b9s4832 EXA-M Instrumentação Biomédica (Brazil)'),
(39454, 'https://ror.org/05baenv82', 'no_lang_code', 1, 'https://ror.org/05baenv82 Luxo (Norway)'),
(39455, 'https://ror.org/05bbbm605', 'en', 1, 'https://ror.org/05bbbm605 Military Institute of Engineer Technology'),
(39456, 'https://ror.org/05bbns833', 'en', 1, 'https://ror.org/05bbns833 University College of Islamabad'),
(39457, 'https://ror.org/05bcfye76', 'no_lang_code', 1, 'https://ror.org/05bcfye76 Kawmet (Poland)'),
(39458, 'https://ror.org/05bfknj54', 'en', 1, 'https://ror.org/05bfknj54 St. Joseph Hospital'),
(39459, 'https://ror.org/05bg39511', 'no_lang_code', 1, 'https://ror.org/05bg39511 ReSight (Norway)'),
(39460, 'https://ror.org/05bgpkm02', 'en', 1, 'https://ror.org/05bgpkm02 Krantisinh Nana Patil College of Veterinary Science'),
(39461, 'https://ror.org/05bkbs460', 'en', 1, 'https://ror.org/05bkbs460 Obafemi Awolowo University Teaching Hospitals Complex'),
(39462, 'https://ror.org/05bkcgf50', 'en', 1, 'https://ror.org/05bkcgf50 Hubei Urban Construction Vocational and Technological College ę¹–åŒ—åŸŽåø‚å»ŗč®¾čŒäøšęŠ€ęœÆå­¦é™¢'),
(39463, 'https://ror.org/05bkwxs60', 'en', 1, 'https://ror.org/05bkwxs60 Colorado Mountain College'),
(39464, 'https://ror.org/05bmj6719', 'en', 1, 'https://ror.org/05bmj6719 ICMA Centre'),
(39465, 'https://ror.org/05bp6y176', 'en', 1, 'https://ror.org/05bp6y176 Bon Secours Hospital Tralee'),
(39466, 'https://ror.org/05bsmsd63', 'en', 1, 'https://ror.org/05bsmsd63 Central Wyoming College'),
(39467, 'https://ror.org/05bvm3t13', 'no_lang_code', 1, 'https://ror.org/05bvm3t13 Marna Motor (Norway)'),
(39468, 'https://ror.org/05bvpc358', 'no_lang_code', 1, 'https://ror.org/05bvpc358 CGS plus (Slovenia)'),
(39469, 'https://ror.org/05bvvtk87', 'en', 1, 'https://ror.org/05bvvtk87 Nehru Gram Bharti University'),
(39470, 'https://ror.org/05bxqp605', 'fr', 1, 'https://ror.org/05bxqp605 RƩseau QuƩbƩcois en Innovation Sociale'),
(39471, 'https://ror.org/05bxvzw76', 'en', 1, 'https://ror.org/05bxvzw76 Association of Organ Procurement Organizations'),
(39472, 'https://ror.org/05by7rp83', 'en', 1, 'https://ror.org/05by7rp83 Helen Newberry Joy Hospital'),
(39473, 'https://ror.org/05bzatp41', 'no_lang_code', 1, 'https://ror.org/05bzatp41 Takashimadaira Chuo General Hospital'),
(39474, 'https://ror.org/05c1jqg32', 'no_lang_code', 1, 'https://ror.org/05c1jqg32 BMS Kuhn Steel (Norway)'),
(39475, 'https://ror.org/05c1z0f40', 'en', 1, 'https://ror.org/05c1z0f40 National Association of Independent Colleges and Universities'),
(39476, 'https://ror.org/05c3cgy93', 'en', 1, 'https://ror.org/05c3cgy93 Krakow Cardiovascular Research Institute'),
(39477, 'https://ror.org/05c5mw559', 'no_lang_code', 1, 'https://ror.org/05c5mw559 Sagaplant (Norway)'),
(39478, 'https://ror.org/05c6gff39', 'no_lang_code', 1, 'https://ror.org/05c6gff39 Seco Warwick (Poland)'),
(39479, 'https://ror.org/05c6jzf22', 'pt', 1, 'https://ror.org/05c6jzf22 Faculdades Integradas de SĆ£o Paulo'),
(39480, 'https://ror.org/05c6qc887', 'no_lang_code', 1, 'https://ror.org/05c6qc887 Gyrofly (Brazil)'),
(39481, 'https://ror.org/05c82kn73', 'en', 1, 'https://ror.org/05c82kn73 Queensway-Carleton Hospital'),
(39482, 'https://ror.org/05ca6eb43', 'en', 1, 'https://ror.org/05ca6eb43 Xuzhou No.1 People''s Hospital'),
(39483, 'https://ror.org/05cc9pg46', 'no_lang_code', 1, 'https://ror.org/05cc9pg46 Orthogenics (Norway)'),
(39484, 'https://ror.org/05cdcvx65', 'en', 1, 'https://ror.org/05cdcvx65 Metropolitan Hospital College of Nursing'),
(39485, 'https://ror.org/05cec6864', 'sl', 1, 'https://ror.org/05cec6864 Bion, Institute for bioelectromagnetics InŔtitut Bion'),
(39486, 'https://ror.org/05cjvqb89', 'no_lang_code', 1, 'https://ror.org/05cjvqb89 ƘKOKRIM'),
(39487, 'https://ror.org/05ckkwm59', 'en', 1, 'https://ror.org/05ckkwm59 Kirkwood Hospice'),
(39488, 'https://ror.org/05ckrxx96', 'pt', 1, 'https://ror.org/05ckrxx96 Federacao Brasileira de Associacoes de Bibliotecarios'),
(39489, 'https://ror.org/05cm0ff89', 'la', 1, 'https://ror.org/05cm0ff89 Monumenta Germaniae Historica'),
(39490, 'https://ror.org/05cm4gv85', 'no_lang_code', 1, 'https://ror.org/05cm4gv85 Agios Pavlos General Hospital'),
(39491, 'https://ror.org/05cn1e898', 'no_lang_code', 1, 'https://ror.org/05cn1e898 MiljĆøkom (Norway)'),
(39492, 'https://ror.org/05cnz8f61', 'en', 1, 'https://ror.org/05cnz8f61 Research and Development Centre for Wood-Based Panels'),
(39493, 'https://ror.org/05cqn9380', 'en', 1, 'https://ror.org/05cqn9380 Yangpu Hospital of Tongji University'),
(39494, 'https://ror.org/05cqqj259', 'en', 1, 'https://ror.org/05cqqj259 American Society of Transplantation'),
(39495, 'https://ror.org/05cqs0208', 'no_lang_code', 1, 'https://ror.org/05cqs0208 Elhand Transformatory (Poland)'),
(39496, 'https://ror.org/05cs9ej55', 'no_lang_code', 1, 'https://ror.org/05cs9ej55 Redealumni (Brazil)'),
(39497, 'https://ror.org/05cswb132', 'no_lang_code', 1, 'https://ror.org/05cswb132 Texas Instruments (Norway)'),
(39498, 'https://ror.org/05ctcgz71', 'no_lang_code', 1, 'https://ror.org/05ctcgz71 Beta Telecom (Brazil)'),
(39499, 'https://ror.org/05cwk4h45', 'es', 1, 'https://ror.org/05cwk4h45 Hospital Quirón Torrevieja'),
(39500, 'https://ror.org/05cxk4q81', 'no_lang_code', 1, 'https://ror.org/05cxk4q81 Punan Hospital'),
(39501, 'https://ror.org/05czzgv88', 'en', 1, 'https://ror.org/05czzgv88 Namsos Hospital'),
(39502, 'https://ror.org/05d01fw51', 'no_lang_code', 1, 'https://ror.org/05d01fw51 Fronteer Solutions (Norway)'),
(39503, 'https://ror.org/05d0s2j60', 'en', 1, 'https://ror.org/05d0s2j60 Nazareth Hospital'),
(39504, 'https://ror.org/05d3ht335', 'no_lang_code', 1, 'https://ror.org/05d3ht335 Ultimovacs (Norway)'),
(39505, 'https://ror.org/05d4adb22', 'no_lang_code', 1, 'https://ror.org/05d4adb22 Mustad Autoline (Norway)'),
(39506, 'https://ror.org/05d50hn21', 'en', 1, 'https://ror.org/05d50hn21 St. Johns Hospital'),
(39507, 'https://ror.org/05d5cn472', 'no_lang_code', 1, 'https://ror.org/05d5cn472 Altimmune (United Kingdom)'),
(39508, 'https://ror.org/05d5xcx47', 'no_lang_code', 1, 'https://ror.org/05d5xcx47 Gentian (Norway)'),
(39509, 'https://ror.org/05d6xwf62', 'en', 1, 'https://ror.org/05d6xwf62 Rocky Vista University'),
(39510, 'https://ror.org/05d8s8843', 'no_lang_code', 1, 'https://ror.org/05d8s8843 Bruker (Canada)'),
(39511, 'https://ror.org/05dbrz220', 'no_lang_code', 1, 'https://ror.org/05dbrz220 Reade (Brazil)'),
(39512, 'https://ror.org/05dc99548', 'no_lang_code', 1, 'https://ror.org/05dc99548 Regional Development Agency Mura (Slovenia)'),
(39513, 'https://ror.org/05dcmqv57', 'no', 1, 'https://ror.org/05dcmqv57 InderĆøy Kommune'),
(39514, 'https://ror.org/05de59334', 'en', 1, 'https://ror.org/05de59334 Kristiansand Municipality'),
(39515, 'https://ror.org/05dffn720', 'no_lang_code', 1, 'https://ror.org/05dffn720 Centro de Genomas (Brazil)'),
(39516, 'https://ror.org/05dfvhh79', 'no_lang_code', 1, 'https://ror.org/05dfvhh79 BP (Spain)'),
(39517, 'https://ror.org/05dm9f210', 'no_lang_code', 1, 'https://ror.org/05dm9f210 DMC Equipmentos (Brazil)'),
(39518, 'https://ror.org/05dmdhx59', 'en', 1, 'https://ror.org/05dmdhx59 Institute of Ceramics and Building Materials'),
(39519, 'https://ror.org/05dn2zg08', 'no_lang_code', 1, 'https://ror.org/05dn2zg08 DLG Automation (Brazil)'),
(39520, 'https://ror.org/05dq2qj05', 'no', 1, 'https://ror.org/05dq2qj05 Telemark County Council Telemark Fylkeskommune'),
(39521, 'https://ror.org/05dqc2261', 'no', 1, 'https://ror.org/05dqc2261 Barratt Due'),
(39522, 'https://ror.org/05dqznn49', 'no_lang_code', 1, 'https://ror.org/05dqznn49 Oslotech (Norway)'),
(39523, 'https://ror.org/05drng229', 'no_lang_code', 1, 'https://ror.org/05drng229 Dýnamis Industry e Commerce (Brazil)'),
(39524, 'https://ror.org/05dtq3097', 'no_lang_code', 1, 'https://ror.org/05dtq3097 Senseonics (United States)'),
(39525, 'https://ror.org/05dtsch22', 'no_lang_code', 1, 'https://ror.org/05dtsch22 Ispas (Norway)'),
(39526, 'https://ror.org/05dvp4993', 'no_lang_code', 1, 'https://ror.org/05dvp4993 Ubitech (Greece)'),
(39527, 'https://ror.org/05dvpaj72', 'en', 1, 'https://ror.org/05dvpaj72 The Rogosin Institute'),
(39528, 'https://ror.org/05dzdb443', 'pl', 1, 'https://ror.org/05dzdb443 Zakład Doświadczalny Instytutu Zootechniki'),
(39529, 'https://ror.org/05e19x344', 'no_lang_code', 1, 'https://ror.org/05e19x344 OxyVision (Norway)'),
(39530, 'https://ror.org/05e1zbn94', 'en', 1, 'https://ror.org/05e1zbn94 Qingdao Huanghai University'),
(39531, 'https://ror.org/05e5vvv83', 'no_lang_code', 1, 'https://ror.org/05e5vvv83 Ship Modelling & Simulation Centre'),
(39532, 'https://ror.org/05e64ed12', 'en', 1, 'https://ror.org/05e64ed12 Finance Norway'),
(39533, 'https://ror.org/05e8kwn08', 'no_lang_code', 1, 'https://ror.org/05e8kwn08 A-Lifting (Norway)'),
(39534, 'https://ror.org/05e966z79', 'en', 1, 'https://ror.org/05e966z79 Akron Council of Engineering and Scientific Societies'),
(39535, 'https://ror.org/05ea1cr97', 'en', 1, 'https://ror.org/05ea1cr97 Modern Cancer Hospital Guangzhou'),
(39536, 'https://ror.org/05ea91r51', 'no', 1, 'https://ror.org/05ea91r51 Norsk Gartnerforbund'),
(39537, 'https://ror.org/05eagfs92', 'en', 1, 'https://ror.org/05eagfs92 Slovak Environmental Agency'),
(39538, 'https://ror.org/05ec81r30', 'en', 1, 'https://ror.org/05ec81r30 Napa State Hospital'),
(39539, 'https://ror.org/05ecjem84', 'no_lang_code', 1, 'https://ror.org/05ecjem84 Biblioteksentralen (Norway)'),
(39540, 'https://ror.org/05edp6x37', 'en', 1, 'https://ror.org/05edp6x37 Norwegian National Museum of Justice'),
(39541, 'https://ror.org/05eegng50', 'en', 1, 'https://ror.org/05eegng50 Bangued Christian Hospital'),
(39542, 'https://ror.org/05efb1x79', 'no_lang_code', 1, 'https://ror.org/05efb1x79 Western Metal Materials (China)'),
(39543, 'https://ror.org/05egmt145', 'no_lang_code', 1, 'https://ror.org/05egmt145 Comm Solutions (Brazil)'),
(39544, 'https://ror.org/05ej1z911', 'no_lang_code', 1, 'https://ror.org/05ej1z911 Glamox (Norway)'),
(39545, 'https://ror.org/05ejb6h88', 'en', 1, 'https://ror.org/05ejb6h88 Bundeskanzleramt German Federal Chancellery'),
(39546, 'https://ror.org/05em0xj58', 'no_lang_code', 1, 'https://ror.org/05em0xj58 Apertus (Norway)'),
(39547, 'https://ror.org/05enrfh93', 'en', 1, 'https://ror.org/05enrfh93 Chattahoochee Technical College'),
(39548, 'https://ror.org/05eqwb473', 'no_lang_code', 1, 'https://ror.org/05eqwb473 NorrĆønt (Norway)'),
(39549, 'https://ror.org/05etvgz30', 'no_lang_code', 1, 'https://ror.org/05etvgz30 Galwes (Poland)'),
(39550, 'https://ror.org/05ev6b373', 'no_lang_code', 1, 'https://ror.org/05ev6b373 Acroni (Slovenia)'),
(39551, 'https://ror.org/05evypg37', 'de', 1, 'https://ror.org/05evypg37 Integrierte Forschungs- und Behandlungszentren'),
(39552, 'https://ror.org/05ey71f27', 'en', 1, 'https://ror.org/05ey71f27 George C. Marshall European Center for Security Studies George C. Marshall Europäisches Zentrum für Sicherheitsstudien'),
(39553, 'https://ror.org/05ezx4n91', 'no', 1, 'https://ror.org/05ezx4n91 Rettspolitisk Forening'),
(39554, 'https://ror.org/05f060a20', 'no_lang_code', 1, 'https://ror.org/05f060a20 Keko Equipment (Slovenia)'),
(39555, 'https://ror.org/05f1g5a11', 'en', 1, 'https://ror.org/05f1g5a11 Seven Oaks General Hospital'),
(39556, 'https://ror.org/05f24d398', 'no_lang_code', 1, 'https://ror.org/05f24d398 SF International (Brazil)'),
(39557, 'https://ror.org/05f4xxw74', 'no_lang_code', 1, 'https://ror.org/05f4xxw74 Balton (Poland)'),
(39558, 'https://ror.org/05f655c20', 'no_lang_code', 1, 'https://ror.org/05f655c20 Re-Turn (Norway)'),
(39559, 'https://ror.org/05f6p1h60', 'no_lang_code', 1, 'https://ror.org/05f6p1h60 Illinois Tool Works (Brazil)'),
(39560, 'https://ror.org/05f8we715', 'en', 1, 'https://ror.org/05f8we715 Francke Foundations Franckesche Stiftungen'),
(39561, 'https://ror.org/05fa5qm36', 'no_lang_code', 1, 'https://ror.org/05fa5qm36 HƓpital delek Tibetan Delek Hospital'),
(39562, 'https://ror.org/05fcegz04', 'en', 1, 'https://ror.org/05fcegz04 Association of Vocational Rehabilitation Enterprises'),
(39563, 'https://ror.org/05fdre954', 'no_lang_code', 1, 'https://ror.org/05fdre954 Simitive (United Kingdom)'),
(39564, 'https://ror.org/05fe98h83', 'en', 1, 'https://ror.org/05fe98h83 Jinja Hospital'),
(39565, 'https://ror.org/05ffh3h97', 'en', 1, 'https://ror.org/05ffh3h97 Government ENT Hospital ą°Ŗą±ą°°ą°­ą±ą°¤ą±ą°µ ą°ˆą°Žą°Øą±ą°Ÿą±€ ą°µą±ˆą°¦ą±ą°Æą°¶ą°¾ą°²'),
(39566, 'https://ror.org/05ffk0s37', 'no_lang_code', 1, 'https://ror.org/05ffk0s37 N2 Applied (Norway)'),
(39567, 'https://ror.org/05ffyy494', 'en', 1, 'https://ror.org/05ffyy494 Trojina Institute for Applied Slovene Studies'),
(39568, 'https://ror.org/05fh9da77', 'no_lang_code', 1, 'https://ror.org/05fh9da77 Z Energi (Norway)'),
(39569, 'https://ror.org/05fhsxp84', 'no', 1, 'https://ror.org/05fhsxp84 Evidensia Oslo dyresykehus'),
(39570, 'https://ror.org/05fhv3964', 'fr', 1, 'https://ror.org/05fhv3964 Association Internationale des Ɖtudes QuĆ©bĆ©coises'),
(39571, 'https://ror.org/05fhxyg37', 'no', 1, 'https://ror.org/05fhxyg37 Politiet'),
(39572, 'https://ror.org/05fmss017', 'en', 1, 'https://ror.org/05fmss017 All Saints Hospital'),
(39573, 'https://ror.org/05fn7qf30', 'no_lang_code', 1, 'https://ror.org/05fn7qf30 Nafra Polska (Poland)'),
(39574, 'https://ror.org/05fnafm06', 'no_lang_code', 1, 'https://ror.org/05fnafm06 Cecilia Makiwane Hospital'),
(39575, 'https://ror.org/05fp2e057', 'no_lang_code', 1, 'https://ror.org/05fp2e057 Admincontrol (Norway)'),
(39576, 'https://ror.org/05fq4pb53', 'en', 1, 'https://ror.org/05fq4pb53 Centres for Economic Development, Transport and the Environment Elinkeino-, liikenne- ja ympƤristƶkeskukset NƤrings- Trafik- och Miljƶcentralen'),
(39577, 'https://ror.org/05fs4ar13', 'en', 1, 'https://ror.org/05fs4ar13 Soroti Hospital'),
(39578, 'https://ror.org/05ftebz76', 'no_lang_code', 1, 'https://ror.org/05ftebz76 Masiv Bygg (Norway)'),
(39579, 'https://ror.org/05ftva293', 'no_lang_code', 1, 'https://ror.org/05ftva293 Moelven (Norway)'),
(39580, 'https://ror.org/05fv11t10', 'no_lang_code', 1, 'https://ror.org/05fv11t10 Thorus Scisoft (Brazil)'),
(39581, 'https://ror.org/05fx84t54', 'hu', 1, 'https://ror.org/05fx84t54 Jahn Ferenc DĆ©l-Pesti KórhĆ”z Ć©s RendelőintĆ©zet'),
(39582, 'https://ror.org/05fx9z870', 'no_lang_code', 1, 'https://ror.org/05fx9z870 Emergo (United States)'),
(39583, 'https://ror.org/05fxczt15', 'no_lang_code', 1, 'https://ror.org/05fxczt15 Marriott International (Canada)'),
(39584, 'https://ror.org/05fz42k53', 'no_lang_code', 1, 'https://ror.org/05fz42k53 Simrad (Norway)'),
(39585, 'https://ror.org/05g0fhs68', 'no_lang_code', 1, 'https://ror.org/05g0fhs68 Washington Mills (Norway)'),
(39586, 'https://ror.org/05g27aj31', 'no', 1, 'https://ror.org/05g27aj31 Norges Kystfiskarlag'),
(39587, 'https://ror.org/05g2jnh09', 'en', 1, 'https://ror.org/05g2jnh09 Centre of Excellence for Integrated Approaches in Chemistry and Biology of Proteins'),
(39588, 'https://ror.org/05g2wkx97', 'no_lang_code', 1, 'https://ror.org/05g2wkx97 JG Moriya (Brazil)'),
(39589, 'https://ror.org/05g3zpw59', 'no_lang_code', 1, 'https://ror.org/05g3zpw59 BiotaTools (Norway)'),
(39590, 'https://ror.org/05g65s446', 'pt', 1, 'https://ror.org/05g65s446 Centro de Inovação, Empreendedorismo e Tecnologia'),
(39591, 'https://ror.org/05g99rf11', 'no_lang_code', 1, 'https://ror.org/05g99rf11 Kidopi (Brazil)'),
(39592, 'https://ror.org/05ga7sz51', 'en', 1, 'https://ror.org/05ga7sz51 King''s Inns Ɠstaƭ an Rƭ'),
(39593, 'https://ror.org/05gavvk50', 'no_lang_code', 1, 'https://ror.org/05gavvk50 Tectonor (Norway)'),
(39594, 'https://ror.org/05gawss62', 'no_lang_code', 1, 'https://ror.org/05gawss62 Barco (Norway)'),
(39595, 'https://ror.org/05gbyky62', 'en', 1, 'https://ror.org/05gbyky62 Institute of Radio-Engineering and Electronics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиотехники Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø им. Š’. А. ŠšŠ¾Ń‚ŠµŠ»ŃŒŠ½ŠøŠŗŠ¾Š²Š° Š ŠŠ'),
(39596, 'https://ror.org/05gdb1895', 'no_lang_code', 1, 'https://ror.org/05gdb1895 Elabora Consultoria (Brazil)'),
(39597, 'https://ror.org/05gey1s27', 'no_lang_code', 1, 'https://ror.org/05gey1s27 Thales (Norway)'),
(39598, 'https://ror.org/05gftk240', 'no_lang_code', 1, 'https://ror.org/05gftk240 Murambinda Mission Hospital'),
(39599, 'https://ror.org/05ggnc709', 'no_lang_code', 1, 'https://ror.org/05ggnc709 Inpower (Norway)'),
(39600, 'https://ror.org/05ggz9e14', 'no_lang_code', 1, 'https://ror.org/05ggz9e14 EQE Tecnologia (Brazil)'),
(39601, 'https://ror.org/05ghtc147', 'en', 1, 'https://ror.org/05ghtc147 St. George Hospital'),
(39602, 'https://ror.org/05gjbhz21', 'en', 1, 'https://ror.org/05gjbhz21 Biblioteca del Condado de Hennepin Hennepin County Library'),
(39603, 'https://ror.org/05gjjdy50', 'en', 1, 'https://ror.org/05gjjdy50 Swiss Leading Hospitals'),
(39604, 'https://ror.org/05gkvd676', 'en', 1, 'https://ror.org/05gkvd676 King George Hospital ą°•ą°æą°‚ą°—ą± ą°œą°¾ą°°ą±ą°œą°æ ą°†ą°øą±ą°Ŗą°¤ą±ą°°ą°æ'),
(39605, 'https://ror.org/05gn7qs79', 'no_lang_code', 1, 'https://ror.org/05gn7qs79 Semco Maritime (Norway)'),
(39606, 'https://ror.org/05gvw2741', 'en', 1, 'https://ror.org/05gvw2741 Chongqing Medical and Pharmaceutical College'),
(39607, 'https://ror.org/05gwwmd95', 'no_lang_code', 1, 'https://ror.org/05gwwmd95 Slovenska Industrija Jekla (Slovenia)'),
(39608, 'https://ror.org/05gwzej73', 'no_lang_code', 1, 'https://ror.org/05gwzej73 Trustper (Norway)'),
(39609, 'https://ror.org/05gxyna29', 'en', 1, 'https://ror.org/05gxyna29 Frankfurt School of Finance & Management Hochschule für Bankwirtschaft'),
(39610, 'https://ror.org/05gy3y907', 'no_lang_code', 1, 'https://ror.org/05gy3y907 Abalonyx (Norway)'),
(39611, 'https://ror.org/05gzt5s45', 'no_lang_code', 1, 'https://ror.org/05gzt5s45 Viscenario (Norway)'),
(39612, 'https://ror.org/05h0vyf89', 'sl', 1, 'https://ror.org/05h0vyf89 Grm Novo mesto - Center Biotehnike in Turizma'),
(39613, 'https://ror.org/05h173491', 'no_lang_code', 1, 'https://ror.org/05h173491 Elotec (Norway)'),
(39614, 'https://ror.org/05h3vcy91', 'en', 1, 'https://ror.org/05h3vcy91 Qingdao Institute of Bioenergy and Bioprocess Technology äø­å›½ē§‘å­¦é™¢é’å²›ē”Ÿē‰©čƒ½ęŗäøŽčæ‡ēØ‹ē ”ē©¶ę‰€'),
(39615, 'https://ror.org/05h4txh72', 'no_lang_code', 1, 'https://ror.org/05h4txh72 Hotel Ullensvang (Norway)'),
(39616, 'https://ror.org/05h6hwf91', 'pt', 1, 'https://ror.org/05h6hwf91 Secretaria Municipal do Verde e do Meio Ambiente'),
(39617, 'https://ror.org/05h7a5719', 'no_lang_code', 1, 'https://ror.org/05h7a5719 TeamTec (Norway)'),
(39618, 'https://ror.org/05h7j3j46', 'en', 1, 'https://ror.org/05h7j3j46 Steynsburg Provincial Hospital'),
(39619, 'https://ror.org/05h8wjh50', 'en', 1, 'https://ror.org/05h8wjh50 Fraunhofer Institute for Material and Beam Technology Fraunhofer-Institut für Werkstoff- und Strahltechnik'),
(39620, 'https://ror.org/05hca2307', 'fr', 1, 'https://ror.org/05hca2307 Ɖcole Nationale SupĆ©rieure d’Architecture Paris-Malaquais'),
(39621, 'https://ror.org/05hd3bg98', 'no', 1, 'https://ror.org/05hd3bg98 Science Center of Innlandet Vitensenteret Innlandet'),
(39622, 'https://ror.org/05hewaf81', 'en', 1, 'https://ror.org/05hewaf81 University of Kang Ning 康寧大學'),
(39623, 'https://ror.org/05hg8d082', 'en', 1, 'https://ror.org/05hg8d082 First Hospital of Xi''an'),
(39624, 'https://ror.org/05hj5cr21', 'no_lang_code', 1, 'https://ror.org/05hj5cr21 Panalpina (Norway)'),
(39625, 'https://ror.org/05hj6ps60', 'no', 1, 'https://ror.org/05hj6ps60 Vikna Kommune'),
(39626, 'https://ror.org/05hjjxp72', 'en', 1, 'https://ror.org/05hjjxp72 Asheville–Buncombe Technical Community College'),
(39627, 'https://ror.org/05hk46p43', 'no_lang_code', 1, 'https://ror.org/05hk46p43 DeepOcean (Norway)'),
(39628, 'https://ror.org/05hkbb047', 'no_lang_code', 1, 'https://ror.org/05hkbb047 Inselli Engenharia e CiĆŖncia Aplicada (Brazil)'),
(39629, 'https://ror.org/05hmaqs06', 'en', 1, 'https://ror.org/05hmaqs06 Bapuji Dental College and Hospital ą²¬ą²¾ą²Ŗą³‚ą²œą²æ ದಂತ ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³‡'),
(39630, 'https://ror.org/05hmcwd14', 'no_lang_code', 1, 'https://ror.org/05hmcwd14 Coop Norge (Norway)'),
(39631, 'https://ror.org/05hmx2x96', 'no_lang_code', 1, 'https://ror.org/05hmx2x96 C6 Technologies (Norway)'),
(39632, 'https://ror.org/05hq62676', 'en', 1, 'https://ror.org/05hq62676 Bamberg State Library Staatsbibliothek Bamberg'),
(39633, 'https://ror.org/05hqmfz74', 'no', 1, 'https://ror.org/05hqmfz74 Nes Kommune'),
(39634, 'https://ror.org/05hqztx55', 'no_lang_code', 1, 'https://ror.org/05hqztx55 Aptomar (Norway)'),
(39635, 'https://ror.org/05hrhc122', 'en', 1, 'https://ror.org/05hrhc122 Q.D. Research'),
(39636, 'https://ror.org/05hrhxs64', 'en', 1, 'https://ror.org/05hrhxs64 Amita Health St. Mary''s Hospital'),
(39637, 'https://ror.org/05ht4fz15', 'en', 1, 'https://ror.org/05ht4fz15 Barton Community College'),
(39638, 'https://ror.org/05htdfq36', 'en', 1, 'https://ror.org/05htdfq36 Jefferson Davis Community College'),
(39639, 'https://ror.org/05htgxx31', 'en', 1, 'https://ror.org/05htgxx31 Point Pedro Hospital'),
(39640, 'https://ror.org/05htr1n89', 'pl', 1, 'https://ror.org/05htr1n89 Centrum Słuchu i Mowy'),
(39641, 'https://ror.org/05hyj7861', 'en', 1, 'https://ror.org/05hyj7861 Children''s Hospital of Capital Institute of Pediatrics'),
(39642, 'https://ror.org/05hyzh026', 'no_lang_code', 1, 'https://ror.org/05hyzh026 Memor Software (Norway)'),
(39643, 'https://ror.org/05j3bsc16', 'no_lang_code', 1, 'https://ror.org/05j3bsc16 Cantoni (Poland)'),
(39644, 'https://ror.org/05j4ckm72', 'no_lang_code', 1, 'https://ror.org/05j4ckm72 Genetic Technologies (Australia)'),
(39645, 'https://ror.org/05j6mnq41', 'en', 1, 'https://ror.org/05j6mnq41 Weifang Maternity and Child Care Hospital'),
(39646, 'https://ror.org/05j6q2769', 'no_lang_code', 1, 'https://ror.org/05j6q2769 Petrell (Norway)'),
(39647, 'https://ror.org/05j889016', 'no_lang_code', 1, 'https://ror.org/05j889016 Flow Design Bureau (Norway)'),
(39648, 'https://ror.org/05jd9hn69', 'en', 1, 'https://ror.org/05jd9hn69 Lady Grey Hospital'),
(39649, 'https://ror.org/05jdk6x63', 'en', 1, 'https://ror.org/05jdk6x63 (Ų­Ś©ŁˆŁ…ŲŖ Ł†ŲøŲ§Ł…ŪŒŪ جنرل ہسپتال ( طبی ŲÆŲ§ŁˆŲ§Ś©ŪŲ§Ł† Government Nizamia General Hospital నిజామియా ą°œą°Øą°°ą°²ą± ą°†ą°øą±ą°Ŗą°¤ą±ą°°ą°æ'),
(39650, 'https://ror.org/05jey0e23', 'pt', 1, 'https://ror.org/05jey0e23 Fundação Padre Albino'),
(39651, 'https://ror.org/05jfg8552', 'en', 1, 'https://ror.org/05jfg8552 Columbia Bible College'),
(39652, 'https://ror.org/05jg53152', 'it', 1, 'https://ror.org/05jg53152 Ospedale Versilia'),
(39653, 'https://ror.org/05jh60332', 'en', 1, 'https://ror.org/05jh60332 Cathcart Provincial Hospital'),
(39654, 'https://ror.org/05jhctt84', 'en', 1, 'https://ror.org/05jhctt84 Malaysia Theological Seminary'),
(39655, 'https://ror.org/05jjqbw81', 'en', 1, 'https://ror.org/05jjqbw81 Lillebaelt Academy University of Applied Sciences'),
(39656, 'https://ror.org/05jk1ds24', 'no_lang_code', 1, 'https://ror.org/05jk1ds24 Finamac (Brazil)'),
(39657, 'https://ror.org/05jrtrp47', 'en', 1, 'https://ror.org/05jrtrp47 Maple Grove Hospital'),
(39658, 'https://ror.org/05jxvg504', 'tr', 1, 'https://ror.org/05jxvg504 İstanbul Kanuni Sultan Süleyman Eğitim ve Araştırma Hastanesi');
INSERT INTO `rors` VALUES
(39659, 'https://ror.org/05jyyjd35', 'no_lang_code', 1, 'https://ror.org/05jyyjd35 Correias Elo (Brazil)'),
(39660, 'https://ror.org/05k0x2w50', 'en', 1, 'https://ror.org/05k0x2w50 Lipetsk State Pedagogical University'),
(39661, 'https://ror.org/05k2k4e76', 'no_lang_code', 1, 'https://ror.org/05k2k4e76 Alpineon (Slovenia)'),
(39662, 'https://ror.org/05k2whz35', 'en', 1, 'https://ror.org/05k2whz35 Inspectorate of the Republic of Slovenia for the Environment and Spatial Planning'),
(39663, 'https://ror.org/05k4hm954', 'no_lang_code', 1, 'https://ror.org/05k4hm954 Alstom (Poland)'),
(39664, 'https://ror.org/05k51jh55', 'no_lang_code', 1, 'https://ror.org/05k51jh55 Rosomak (Poland)'),
(39665, 'https://ror.org/05k5dwn49', 'en', 1, 'https://ror.org/05k5dwn49 Second Affiliated Hospital of Luohe Medical College'),
(39666, 'https://ror.org/05k5sr007', 'no_lang_code', 1, 'https://ror.org/05k5sr007 Redpill Linpro (Norway)'),
(39667, 'https://ror.org/05k5t2r42', 'de', 1, 'https://ror.org/05k5t2r42 Katholisches Klinikum Bochum'),
(39668, 'https://ror.org/05k705z76', 'fr', 1, 'https://ror.org/05k705z76 Institut de Recherche sur les Lois Fondamentales de l''Univers'),
(39669, 'https://ror.org/05k7dys50', 'no_lang_code', 1, 'https://ror.org/05k7dys50 Oyatel (Norway)'),
(39670, 'https://ror.org/05k8zya46', 'no', 1, 'https://ror.org/05k8zya46 Norges Fiskarlag'),
(39671, 'https://ror.org/05ka2ew29', 'no', 1, 'https://ror.org/05ka2ew29 Helse MĆøre og Romsdal HF'),
(39672, 'https://ror.org/05kbjcm35', 'no_lang_code', 1, 'https://ror.org/05kbjcm35 FCA (Poland)'),
(39673, 'https://ror.org/05kbnvp43', 'no_lang_code', 1, 'https://ror.org/05kbnvp43 Varier (Norway)'),
(39674, 'https://ror.org/05kbqck04', 'pt', 1, 'https://ror.org/05kbqck04 Associação Aeroespacial Brasileira'),
(39675, 'https://ror.org/05kbqy564', 'no_lang_code', 1, 'https://ror.org/05kbqy564 Ooyo Seibutsu (Japan)'),
(39676, 'https://ror.org/05kcrhm92', 'no_lang_code', 1, 'https://ror.org/05kcrhm92 Climate Risk Analysis (Germany)'),
(39677, 'https://ror.org/05kd02296', 'no_lang_code', 1, 'https://ror.org/05kd02296 DigiDoc Technologies (Norway)'),
(39678, 'https://ror.org/05kds6518', 'en', 1, 'https://ror.org/05kds6518 Indwe Hospital'),
(39679, 'https://ror.org/05kdxv376', 'no_lang_code', 1, 'https://ror.org/05kdxv376 Nordic Seal (Norway)'),
(39680, 'https://ror.org/05kff3e67', 'pl', 1, 'https://ror.org/05kff3e67 Central Mine Rescue Station Centralna Stacja Ratownictwa Górniczego'),
(39681, 'https://ror.org/05kmd3412', 'no_lang_code', 1, 'https://ror.org/05kmd3412 ERICo (Slovenia)'),
(39682, 'https://ror.org/05kprpt37', 'no_lang_code', 1, 'https://ror.org/05kprpt37 Pelagic Power (Norway)'),
(39683, 'https://ror.org/05kqg2j33', 'fr', 1, 'https://ror.org/05kqg2j33 CollĆØge Montmorency'),
(39684, 'https://ror.org/05kqjh845', 'en', 1, 'https://ror.org/05kqjh845 Smt. Kashibai Navale Medical College and General hospital'),
(39685, 'https://ror.org/05kr66310', 'no_lang_code', 1, 'https://ror.org/05kr66310 ArcusGruppen (Norway)'),
(39686, 'https://ror.org/05ksgvc87', 'no_lang_code', 1, 'https://ror.org/05ksgvc87 Reichhold (Norway)'),
(39687, 'https://ror.org/05ktm1f40', 'en', 1, 'https://ror.org/05ktm1f40 Shalem College'),
(39688, 'https://ror.org/05kv62m20', 'no_lang_code', 1, 'https://ror.org/05kv62m20 Memscap (Norway)'),
(39689, 'https://ror.org/05kwk4552', 'en', 1, 'https://ror.org/05kwk4552 American School of Classical Studies at Athens Αμερικανική Σχολή ĪšĪ»Ī±ĻƒĪ¹ĪŗĻŽĪ½ Ī£Ļ€ĪæĻ…Ī“ĻŽĪ½ ĻƒĻ„Ī·Ī½ Αθήνα'),
(39690, 'https://ror.org/05kwrc623', 'no_lang_code', 1, 'https://ror.org/05kwrc623 CBPak (Brazil)'),
(39691, 'https://ror.org/05kwv6m71', 'no_lang_code', 1, 'https://ror.org/05kwv6m71 Macgregor Pusnes (Norway)'),
(39692, 'https://ror.org/05kx58550', 'en', 1, 'https://ror.org/05kx58550 College of Islamic and Arabic Studies ŁƒŁ„ŁŠŲ© الدراسات Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ŁˆŲ§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(39693, 'https://ror.org/05kxjz795', 'no_lang_code', 1, 'https://ror.org/05kxjz795 H. J. Kyvik (Norway)'),
(39694, 'https://ror.org/05m1b0q08', 'no_lang_code', 1, 'https://ror.org/05m1b0q08 Sistemska Tehnika (Slovenia)'),
(39695, 'https://ror.org/05m1rmx38', 'no_lang_code', 1, 'https://ror.org/05m1rmx38 Terra Azul - Tecnologia de PolĆ­meros Naturais (Brazil)'),
(39696, 'https://ror.org/05m5pvn27', 'en', 1, 'https://ror.org/05m5pvn27 Mthatha General Hospital'),
(39697, 'https://ror.org/05m6a9a03', 'en', 1, 'https://ror.org/05m6a9a03 The Outer Banks Hospital'),
(39698, 'https://ror.org/05m9np560', 'en', 1, 'https://ror.org/05m9np560 Al Yarmouk University College ŁƒŁ„ŁŠŲ© Ų§Ł„ŁŠŲ±Ł…ŁˆŁƒ الجامعة'),
(39699, 'https://ror.org/05ma9je87', 'no_lang_code', 1, 'https://ror.org/05ma9je87 Jaeder (Norway)'),
(39700, 'https://ror.org/05mbvyj38', 'no_lang_code', 1, 'https://ror.org/05mbvyj38 Media Lunde Tollefsen (Norway)'),
(39701, 'https://ror.org/05mcw8n93', 'en', 1, 'https://ror.org/05mcw8n93 Hedmark County Council'),
(39702, 'https://ror.org/05mfqj750', 'no_lang_code', 1, 'https://ror.org/05mfqj750 Weifang Chinese Medicine Hospital'),
(39703, 'https://ror.org/05mfr7w08', 'en', 1, 'https://ror.org/05mfr7w08 Third People''s Hospital of Hefei'),
(39704, 'https://ror.org/05mg1ma72', 'en', 1, 'https://ror.org/05mg1ma72 Seafield Hospital'),
(39705, 'https://ror.org/05mgsm482', 'en', 1, 'https://ror.org/05mgsm482 Howard County General Hospital'),
(39706, 'https://ror.org/05mkdrw83', 'no_lang_code', 1, 'https://ror.org/05mkdrw83 Flyever (Brazil)'),
(39707, 'https://ror.org/05mkwhv74', 'en', 1, 'https://ror.org/05mkwhv74 CollĆØge militaire royal de Saint-Jean Royal Military College Saint-Jean'),
(39708, 'https://ror.org/05mn5p987', 'no_lang_code', 1, 'https://ror.org/05mn5p987 Em.tronic Elektromehanski Sistemi (Slovenia)'),
(39709, 'https://ror.org/05mncca07', 'en', 1, 'https://ror.org/05mncca07 City and Islington College'),
(39710, 'https://ror.org/05mpa6118', 'en', 1, 'https://ror.org/05mpa6118 Mannar Hospital'),
(39711, 'https://ror.org/05mpkhc90', 'de', 1, 'https://ror.org/05mpkhc90 LVR-Industriemuseum'),
(39712, 'https://ror.org/05ms76x97', 'en', 1, 'https://ror.org/05ms76x97 Brazilian Society of Protozoology Sociedade Brasileira de Protozoologia'),
(39713, 'https://ror.org/05mvkx311', 'no_lang_code', 1, 'https://ror.org/05mvkx311 Cortical Dynamics (Australia)'),
(39714, 'https://ror.org/05mw8qs29', 'no_lang_code', 1, 'https://ror.org/05mw8qs29 Hedmark IKT (Norway)'),
(39715, 'https://ror.org/05mwhq004', 'es', 1, 'https://ror.org/05mwhq004 Hospital de JesĆŗs Nazareno'),
(39716, 'https://ror.org/05mwx1x85', 'no_lang_code', 1, 'https://ror.org/05mwx1x85 PXO (Norway)'),
(39717, 'https://ror.org/05mxqzt83', 'no_lang_code', 1, 'https://ror.org/05mxqzt83 Acoustics (Norway)'),
(39718, 'https://ror.org/05myyzn85', 'en', 1, 'https://ror.org/05myyzn85 Shanghai First Maternity and Infant Hospital'),
(39719, 'https://ror.org/05n0dev02', 'en', 1, 'https://ror.org/05n0dev02 Mbale Hospital'),
(39720, 'https://ror.org/05n0n3328', 'no_lang_code', 1, 'https://ror.org/05n0n3328 Orbisat (Brazil)'),
(39721, 'https://ror.org/05n2jy464', 'en', 1, 'https://ror.org/05n2jy464 Surgimed Hospital Ų³Ų±Ų¬ŪŒŁ…ŪŒŚˆ ہسپتال Ł„Ų§ŪŁˆŲ±'),
(39722, 'https://ror.org/05n3y0v15', 'no_lang_code', 1, 'https://ror.org/05n3y0v15 Inter Metal (Poland)'),
(39723, 'https://ror.org/05n3z7m75', 'no_lang_code', 1, 'https://ror.org/05n3z7m75 Radwag Balances and Scales (Poland)'),
(39724, 'https://ror.org/05n4pcy10', 'pl', 1, 'https://ror.org/05n4pcy10 Polskie Stowarzyszenie Korozyjne'),
(39725, 'https://ror.org/05n6cs483', 'no_lang_code', 1, 'https://ror.org/05n6cs483 XCOR Aerospace (United States)'),
(39726, 'https://ror.org/05n714746', 'en', 1, 'https://ror.org/05n714746 Burgersdorp Provincial Hospital'),
(39727, 'https://ror.org/05n877995', 'no_lang_code', 1, 'https://ror.org/05n877995 Proceda (Norway)'),
(39728, 'https://ror.org/05n878z30', 'no_lang_code', 1, 'https://ror.org/05n878z30 DFG Consulting (Slovenia)'),
(39729, 'https://ror.org/05n8hjk08', 'no_lang_code', 1, 'https://ror.org/05n8hjk08 FriskgƄrden (Norway)'),
(39730, 'https://ror.org/05n9fqb27', 'en', 1, 'https://ror.org/05n9fqb27 Community College of Denver'),
(39731, 'https://ror.org/05nac3h44', 'pl', 1, 'https://ror.org/05nac3h44 Centrum Badań i Dozoru Górnictwa Podziemnego'),
(39732, 'https://ror.org/05ndg7m38', 'no_lang_code', 1, 'https://ror.org/05ndg7m38 Piacentini (Brazil)'),
(39733, 'https://ror.org/05ndmfc04', 'en', 1, 'https://ror.org/05ndmfc04 Surrey Memorial Hospital'),
(39734, 'https://ror.org/05ne0nx52', 'en', 1, 'https://ror.org/05ne0nx52 Feather River Hospital'),
(39735, 'https://ror.org/05ne28y03', 'no_lang_code', 1, 'https://ror.org/05ne28y03 Polon (Poland)'),
(39736, 'https://ror.org/05newpx76', 'en', 1, 'https://ror.org/05newpx76 Wagga Wagga Base Hospital'),
(39737, 'https://ror.org/05nezzp08', 'pl', 1, 'https://ror.org/05nezzp08 Polskie Forum Osób Niepełnosprawnych'),
(39738, 'https://ror.org/05ng62226', 'no_lang_code', 1, 'https://ror.org/05ng62226 Kitemill (Norway)'),
(39739, 'https://ror.org/05njqnk64', 'no', 1, 'https://ror.org/05njqnk64 ForbrukerrƄdet'),
(39740, 'https://ror.org/05nkrhe64', 'no_lang_code', 1, 'https://ror.org/05nkrhe64 Targovax (Norway)'),
(39741, 'https://ror.org/05nn38891', 'en', 1, 'https://ror.org/05nn38891 Prussian Palaces and Gardens Foundation Berlin Brandenburg Stiftung Preußische Schlösser und Gärten Berlin-Brandenburg'),
(39742, 'https://ror.org/05nrp6689', 'pt', 1, 'https://ror.org/05nrp6689 Secretaria de Desenvolvimento EconƓmico e Turƭstico'),
(39743, 'https://ror.org/05nvjkk97', 'no_lang_code', 1, 'https://ror.org/05nvjkk97 Aquastructures (Norway)'),
(39744, 'https://ror.org/05nwjp114', 'en', 1, 'https://ror.org/05nwjp114 Office of Polar Programs'),
(39745, 'https://ror.org/05p0byv33', 'no_lang_code', 1, 'https://ror.org/05p0byv33 Sonowand (Norway)'),
(39746, 'https://ror.org/05p0hpp38', 'en', 1, 'https://ror.org/05p0hpp38 Society for Arts and Technology SociƩtƩ des Arts Technologiques'),
(39747, 'https://ror.org/05p1qcv65', 'no_lang_code', 1, 'https://ror.org/05p1qcv65 Ervik & SƦvik (Norway)'),
(39748, 'https://ror.org/05p3gy533', 'no_lang_code', 1, 'https://ror.org/05p3gy533 Chem4u (Brazil)'),
(39749, 'https://ror.org/05p4cdm91', 'no_lang_code', 1, 'https://ror.org/05p4cdm91 Banadir Hospital'),
(39750, 'https://ror.org/05p50vw42', 'no_lang_code', 1, 'https://ror.org/05p50vw42 Viva Biotech (China)'),
(39751, 'https://ror.org/05p9n5k62', 'en', 1, 'https://ror.org/05p9n5k62 Adaptive Sports Northwest'),
(39752, 'https://ror.org/05pb5hm55', 'en', 1, 'https://ror.org/05pb5hm55 Wuxi People''s Hospital'),
(39753, 'https://ror.org/05pbhjp46', 'no_lang_code', 1, 'https://ror.org/05pbhjp46 Alere (Norway)'),
(39754, 'https://ror.org/05pc4mf95', 'en', 1, 'https://ror.org/05pc4mf95 Kuala Lumpur Metropolitan University College'),
(39755, 'https://ror.org/05pcgcp62', 'pt', 1, 'https://ror.org/05pcgcp62 Associação de Pais e Amigos dos Excepcionais de São Paulo'),
(39756, 'https://ror.org/05pd21s36', 'no_lang_code', 1, 'https://ror.org/05pd21s36 Somoso General Hospital'),
(39757, 'https://ror.org/05pd2z238', 'en', 1, 'https://ror.org/05pd2z238 Jaffna Teaching Hospital ą¶ŗą·ą¶“ą¶±ą¶ŗ ą·ą·’ą¶šą·Šą·‚ą¶« ą¶»ą·ą·„ą¶½'),
(39758, 'https://ror.org/05pgvrp60', 'no_lang_code', 1, 'https://ror.org/05pgvrp60 Hrafn (Norway)'),
(39759, 'https://ror.org/05phqqn85', 'no_lang_code', 1, 'https://ror.org/05phqqn85 Oncolytics Biotech (Canada)'),
(39760, 'https://ror.org/05pjatf35', 'no_lang_code', 1, 'https://ror.org/05pjatf35 Rauma Group (Norway)'),
(39761, 'https://ror.org/05pnhe163', 'no_lang_code', 1, 'https://ror.org/05pnhe163 Biocontrol (Brazil)'),
(39762, 'https://ror.org/05pnk8r52', 'no_lang_code', 1, 'https://ror.org/05pnk8r52 Lushang (China)'),
(39763, 'https://ror.org/05ppea990', 'no_lang_code', 1, 'https://ror.org/05ppea990 DSPGeo (Brazil)'),
(39764, 'https://ror.org/05ppk5d39', 'no_lang_code', 1, 'https://ror.org/05ppk5d39 Gisplan (Brazil)'),
(39765, 'https://ror.org/05pq15235', 'no_lang_code', 1, 'https://ror.org/05pq15235 HS News Systems (Norway)'),
(39766, 'https://ror.org/05prt4y28', 'no_lang_code', 1, 'https://ror.org/05prt4y28 Genetic Analysis (Norway)'),
(39767, 'https://ror.org/05ptzph62', 'en', 1, 'https://ror.org/05ptzph62 International University College of Turin'),
(39768, 'https://ror.org/05pw47n55', 'en', 1, 'https://ror.org/05pw47n55 Vernon Jubilee Hospital'),
(39769, 'https://ror.org/05pwyzq32', 'en', 1, 'https://ror.org/05pwyzq32 Samaritan Pacific Communities Hospital'),
(39770, 'https://ror.org/05px4ev98', 'en', 1, 'https://ror.org/05px4ev98 Cottage Grove Community Medical Center'),
(39771, 'https://ror.org/05pyye095', 'en', 1, 'https://ror.org/05pyye095 HƓpital gƩnƩral de kinshasa Kinshasa General Hospital'),
(39772, 'https://ror.org/05pz81c75', 'no', 1, 'https://ror.org/05pz81c75 Hospital IT'),
(39773, 'https://ror.org/05q054h21', 'no_lang_code', 1, 'https://ror.org/05q054h21 Syngenta (China)'),
(39774, 'https://ror.org/05q388t62', 'no_lang_code', 1, 'https://ror.org/05q388t62 Duverden (Norway)'),
(39775, 'https://ror.org/05q5jv102', 'no_lang_code', 1, 'https://ror.org/05q5jv102 Tecnocard (Brazil)'),
(39776, 'https://ror.org/05q6w4p96', 'pt', 1, 'https://ror.org/05q6w4p96 Associação Sul-Americana de Automação'),
(39777, 'https://ror.org/05q72ar94', 'no_lang_code', 1, 'https://ror.org/05q72ar94 Mwa Automação (Brazil)'),
(39778, 'https://ror.org/05q7rp785', 'en', 1, 'https://ror.org/05q7rp785 Hobart Private Hospital'),
(39779, 'https://ror.org/05q84jy08', 'no_lang_code', 1, 'https://ror.org/05q84jy08 IKT-Norge (Norway)'),
(39780, 'https://ror.org/05q9vv606', 'no_lang_code', 1, 'https://ror.org/05q9vv606 Tech Chrom (Brazil)'),
(39781, 'https://ror.org/05qf9ct67', 'no', 1, 'https://ror.org/05qf9ct67 VƄgan kommune'),
(39782, 'https://ror.org/05qfcgb18', 'no', 1, 'https://ror.org/05qfcgb18 VardĆø kommune'),
(39783, 'https://ror.org/05qgg4j70', 'no_lang_code', 1, 'https://ror.org/05qgg4j70 Polmlek (Poland)'),
(39784, 'https://ror.org/05qhetb06', 'en', 1, 'https://ror.org/05qhetb06 Atascadero State Hospital'),
(39785, 'https://ror.org/05qkeds59', 'en', 1, 'https://ror.org/05qkeds59 Milford Hospital'),
(39786, 'https://ror.org/05qmjha96', 'fi', 1, 'https://ror.org/05qmjha96 Hengitysliitto'),
(39787, 'https://ror.org/05qn8wt84', 'en', 1, 'https://ror.org/05qn8wt84 PyhƤjƤrvi Institute'),
(39788, 'https://ror.org/05qp58s25', 'en', 1, 'https://ror.org/05qp58s25 Association of Christian Schools, Colleges and Universities'),
(39789, 'https://ror.org/05qrcqk02', 'no_lang_code', 1, 'https://ror.org/05qrcqk02 Protector (Norway)'),
(39790, 'https://ror.org/05qs3gc73', 'no_lang_code', 1, 'https://ror.org/05qs3gc73 Fram Flora (Norway)'),
(39791, 'https://ror.org/05qsbt763', 'no_lang_code', 1, 'https://ror.org/05qsbt763 Iskratel (Slovenia)'),
(39792, 'https://ror.org/05qtgz885', 'no_lang_code', 1, 'https://ror.org/05qtgz885 Norskog Consulting (Norway)'),
(39793, 'https://ror.org/05qy3yc66', 'no_lang_code', 1, 'https://ror.org/05qy3yc66 Beijing Wantai Biological Pharmacy (China)'),
(39794, 'https://ror.org/05qztqs34', 'pl', 1, 'https://ror.org/05qztqs34 Instytut Przemysłu Skórzanego'),
(39795, 'https://ror.org/05r1rzk07', 'no_lang_code', 1, 'https://ror.org/05r1rzk07 Norsk Wax (Norway)'),
(39796, 'https://ror.org/05r1ynr77', 'en', 1, 'https://ror.org/05r1ynr77 Asociación de Universidades Jesuitas Association des universités et facultés jésuites Association of Jesuit Colleges and Universities'),
(39797, 'https://ror.org/05r24hk86', 'pt', 1, 'https://ror.org/05r24hk86 Sociedade Brasileira de Psicologia Hospitalar (Brazil)'),
(39798, 'https://ror.org/05r2sx051', 'en', 1, 'https://ror.org/05r2sx051 Kingsbridge Private Hospital Sligo'),
(39799, 'https://ror.org/05r3pfn29', 'en', 1, 'https://ror.org/05r3pfn29 Morton Plant North Bay Hospital'),
(39800, 'https://ror.org/05r45gk31', 'no', 1, 'https://ror.org/05r45gk31 Nome Kommune'),
(39801, 'https://ror.org/05r5vfp03', 'en', 1, 'https://ror.org/05r5vfp03 Civil Service Hospital'),
(39802, 'https://ror.org/05r7dwa03', 'en', 1, 'https://ror.org/05r7dwa03 Lanier Technical College'),
(39803, 'https://ror.org/05r7nbf33', 'en', 1, 'https://ror.org/05r7nbf33 Skyline University College'),
(39804, 'https://ror.org/05r8bzv42', 'en', 1, 'https://ror.org/05r8bzv42 Christian Service University College'),
(39805, 'https://ror.org/05r9em747', 'no_lang_code', 1, 'https://ror.org/05r9em747 Adespec (Brazil)'),
(39806, 'https://ror.org/05razqx97', 'pl', 1, 'https://ror.org/05razqx97 Zakład Doskonalenia Zawodowego w Krakowie'),
(39807, 'https://ror.org/05rbhea42', 'no_lang_code', 1, 'https://ror.org/05rbhea42 Centre for Advanced Study'),
(39808, 'https://ror.org/05rcdf096', 'no_lang_code', 1, 'https://ror.org/05rcdf096 Andre Abrasive Articles (Poland)'),
(39809, 'https://ror.org/05rdrh795', 'no_lang_code', 1, 'https://ror.org/05rdrh795 CBS InŔtitut (Slovenia)'),
(39810, 'https://ror.org/05rdy5005', 'en', 1, 'https://ror.org/05rdy5005 Institute of Systematics and Evolution of Animals Instytut Systematyki i Ewolucji Zwierząt PAN'),
(39811, 'https://ror.org/05rfkzk21', 'pt', 1, 'https://ror.org/05rfkzk21 ColƩgio Brasileiro de CirurgiƵes'),
(39812, 'https://ror.org/05rgpb984', 'no_lang_code', 1, 'https://ror.org/05rgpb984 Information and Mathematical Science and Bioinformatics (Japan)'),
(39813, 'https://ror.org/05rjfvd69', 'no_lang_code', 1, 'https://ror.org/05rjfvd69 Umlamli Hospital'),
(39814, 'https://ror.org/05rkb4k51', 'no_lang_code', 1, 'https://ror.org/05rkb4k51 Molde Kunnskapspark (Norway)'),
(39815, 'https://ror.org/05rm0bg60', 'no_lang_code', 1, 'https://ror.org/05rm0bg60 Thelma Biotel (Norway)'),
(39816, 'https://ror.org/05rmqc942', 'no_lang_code', 1, 'https://ror.org/05rmqc942 Ipsos (Brazil)'),
(39817, 'https://ror.org/05rmtav82', 'no_lang_code', 1, 'https://ror.org/05rmtav82 Silicon Labs (Norway)'),
(39818, 'https://ror.org/05rpeka60', 'no_lang_code', 1, 'https://ror.org/05rpeka60 NorLense (Norway)'),
(39819, 'https://ror.org/05rs9jm31', 'en', 1, 'https://ror.org/05rs9jm31 Associação Brasileira de Filosofia e História da Biologia Brazilian Association of Philosophy and History of Biology'),
(39820, 'https://ror.org/05rxd1q58', 'fr', 1, 'https://ror.org/05rxd1q58 CƩgep de l''Outaouais'),
(39821, 'https://ror.org/05rzahq86', 'no_lang_code', 1, 'https://ror.org/05rzahq86 WindSim (Norway)'),
(39822, 'https://ror.org/05rzcwg85', 'en', 1, 'https://ror.org/05rzcwg85 Peking University Sixth Hospital'),
(39823, 'https://ror.org/05s030550', 'no_lang_code', 1, 'https://ror.org/05s030550 Ablynx (Belgium)'),
(39824, 'https://ror.org/05s3m5a67', 'no_lang_code', 1, 'https://ror.org/05s3m5a67 Max Manus (Norway)'),
(39825, 'https://ror.org/05s3rgw55', 'en', 1, 'https://ror.org/05s3rgw55 Military Institute of Armament Technology'),
(39826, 'https://ror.org/05s429h13', 'no_lang_code', 1, 'https://ror.org/05s429h13 Corticalis (Norway)'),
(39827, 'https://ror.org/05s6ykc72', 'en', 1, 'https://ror.org/05s6ykc72 Nkqubela Chest Hospital'),
(39828, 'https://ror.org/05s76vp15', 'en', 1, 'https://ror.org/05s76vp15 Garden City University College'),
(39829, 'https://ror.org/05s8x0p02', 'no_lang_code', 1, 'https://ror.org/05s8x0p02 Iskra Pio (Slovenia)'),
(39830, 'https://ror.org/05sa5v987', 'no', 1, 'https://ror.org/05sa5v987 Lenvik kommune'),
(39831, 'https://ror.org/05sbaym77', 'no_lang_code', 1, 'https://ror.org/05sbaym77 Boa Offshore (Norway)'),
(39832, 'https://ror.org/05scp2b29', 'no_lang_code', 1, 'https://ror.org/05scp2b29 Ziva (United States)'),
(39833, 'https://ror.org/05scy2r52', 'no_lang_code', 1, 'https://ror.org/05scy2r52 SHS Engenharia SustentƔvel'),
(39834, 'https://ror.org/05sdds724', 'no_lang_code', 1, 'https://ror.org/05sdds724 Hafenstrom (Norway)'),
(39835, 'https://ror.org/05sdxzt97', 'no_lang_code', 1, 'https://ror.org/05sdxzt97 Robotics Inventions (Poland)'),
(39836, 'https://ror.org/05se4r489', 'no_lang_code', 1, 'https://ror.org/05se4r489 Transdata (Brazil)'),
(39837, 'https://ror.org/05ses6v92', 'en', 1, 'https://ror.org/05ses6v92 First People''s Hospital of Jingzhou'),
(39838, 'https://ror.org/05sf2j279', 'no_lang_code', 1, 'https://ror.org/05sf2j279 Proteimax (Brazil)'),
(39839, 'https://ror.org/05sgk7672', 'en', 1, 'https://ror.org/05sgk7672 Prirodoslovni muzej Slovenije Slovenian Museum of Natural History'),
(39840, 'https://ror.org/05sjm5616', 'no_lang_code', 1, 'https://ror.org/05sjm5616 Dnapta Biotecnologia (Brazil)'),
(39841, 'https://ror.org/05sjrmw93', 'no_lang_code', 1, 'https://ror.org/05sjrmw93 Kebony (Norway)'),
(39842, 'https://ror.org/05sk1gv89', 'no_lang_code', 1, 'https://ror.org/05sk1gv89 Trimo (Slovenia)'),
(39843, 'https://ror.org/05sm49m59', 'no_lang_code', 1, 'https://ror.org/05sm49m59 AgroNova (Norway)'),
(39844, 'https://ror.org/05sp73k66', 'no_lang_code', 1, 'https://ror.org/05sp73k66 Geno (Norway)'),
(39845, 'https://ror.org/05sqrfr79', 'en', 1, 'https://ror.org/05sqrfr79 Central Institute for Art History Zentralinstitut für Kunstgeschichte'),
(39846, 'https://ror.org/05sqvht74', 'en', 1, 'https://ror.org/05sqvht74 Midlothian Community Hospital'),
(39847, 'https://ror.org/05sryxz27', 'no', 1, 'https://ror.org/05sryxz27 Norsk Forening for Bildebehandling og MĆønstergjenkjenning'),
(39848, 'https://ror.org/05ssg5j36', 'de', 1, 'https://ror.org/05ssg5j36 Albertus-Magnus-Institut'),
(39849, 'https://ror.org/05sv58043', 'en', 1, 'https://ror.org/05sv58043 University College Absalon'),
(39850, 'https://ror.org/05svjc560', 'en', 1, 'https://ror.org/05svjc560 Data Link Institute of Business and Technology'),
(39851, 'https://ror.org/05sxctv21', 'no_lang_code', 1, 'https://ror.org/05sxctv21 Mills (Norway)'),
(39852, 'https://ror.org/05sy23e62', 'en', 1, 'https://ror.org/05sy23e62 Columbia Gorge Community College'),
(39853, 'https://ror.org/05t1nkw30', 'no_lang_code', 1, 'https://ror.org/05t1nkw30 Xiamen Tobacco Industry (China)'),
(39854, 'https://ror.org/05t534806', 'en', 1, 'https://ror.org/05t534806 Dr. Jose N. Rodriguez Memorial Hospital'),
(39855, 'https://ror.org/05t55rs39', 'no_lang_code', 1, 'https://ror.org/05t55rs39 Piscada (Norway)'),
(39856, 'https://ror.org/05t55vt39', 'no_lang_code', 1, 'https://ror.org/05t55vt39 Sarsia (Norway)'),
(39857, 'https://ror.org/05t5dnk19', 'no', 1, 'https://ror.org/05t5dnk19 Forskerfabrikken'),
(39858, 'https://ror.org/05t6h5824', 'hu', 1, 'https://ror.org/05t6h5824 Szent Imre Egyetemi OktatókórhÔz'),
(39859, 'https://ror.org/05t76y454', 'no', 1, 'https://ror.org/05t76y454 Statped'),
(39860, 'https://ror.org/05t8h2f11', 'no_lang_code', 1, 'https://ror.org/05t8h2f11 ZONA Technology (United States)'),
(39861, 'https://ror.org/05t8tj069', 'en', 1, 'https://ror.org/05t8tj069 Glen O''Dee Hospital'),
(39862, 'https://ror.org/05t9fq164', 'en', 1, 'https://ror.org/05t9fq164 Calvert Memorial Hospital'),
(39863, 'https://ror.org/05tacv029', 'no_lang_code', 1, 'https://ror.org/05tacv029 BerGenBio (Norway)'),
(39864, 'https://ror.org/05tbw7g42', 'no_lang_code', 1, 'https://ror.org/05tbw7g42 Karde (Norway)'),
(39865, 'https://ror.org/05te2ab69', 'en', 1, 'https://ror.org/05te2ab69 Citizens Network Watchdog'),
(39866, 'https://ror.org/05tfq8535', 'en', 1, 'https://ror.org/05tfq8535 Phoenix College'),
(39867, 'https://ror.org/05tg3h152', 'no_lang_code', 1, 'https://ror.org/05tg3h152 Research Management Systems (United States)'),
(39868, 'https://ror.org/05tg8p317', 'en', 1, 'https://ror.org/05tg8p317 Rockyview General Hospital'),
(39869, 'https://ror.org/05tgt0w11', 'no_lang_code', 1, 'https://ror.org/05tgt0w11 Cova (Norway)'),
(39870, 'https://ror.org/05tj2eg80', 'no_lang_code', 1, 'https://ror.org/05tj2eg80 GCI Science & Technology (China)'),
(39871, 'https://ror.org/05tk8yc63', 'no_lang_code', 1, 'https://ror.org/05tk8yc63 Geodados (Brazil)'),
(39872, 'https://ror.org/05tn97j65', 'en', 1, 'https://ror.org/05tn97j65 Folsom Lake College'),
(39873, 'https://ror.org/05tn9zh92', 'en', 1, 'https://ror.org/05tn9zh92 Gavilan College'),
(39874, 'https://ror.org/05tnf6s41', 'no_lang_code', 1, 'https://ror.org/05tnf6s41 Wave Propulsion (Norway)'),
(39875, 'https://ror.org/05tq83t16', 'no_lang_code', 1, 'https://ror.org/05tq83t16 Ziebel (Norway)'),
(39876, 'https://ror.org/05tqjf426', 'en', 1, 'https://ror.org/05tqjf426 Inspiria Science Center'),
(39877, 'https://ror.org/05trysh47', 'no_lang_code', 1, 'https://ror.org/05trysh47 Cerpus (Norway)'),
(39878, 'https://ror.org/05tv5ra11', 'en', 1, 'https://ror.org/05tv5ra11 Sixth Affiliated Hospital of Kunming Medical University'),
(39879, 'https://ror.org/05tvfb833', 'en', 1, 'https://ror.org/05tvfb833 Institut für Luft- und Kältetechnik Institute of Air Handling and Refrigeration'),
(39880, 'https://ror.org/05ty6nt57', 'en', 1, 'https://ror.org/05ty6nt57 Jaypee Hospital'),
(39881, 'https://ror.org/05tyger85', 'en', 1, 'https://ror.org/05tyger85 Instituto de Estudos do ComƩrcio e NegociaƧƵes Internacionais lnstitute for lnternational Trade Negotiations'),
(39882, 'https://ror.org/05v00rs76', 'en', 1, 'https://ror.org/05v00rs76 Flagler Hospital'),
(39883, 'https://ror.org/05v1bgc28', 'no_lang_code', 1, 'https://ror.org/05v1bgc28 Treindustrien (Norway)'),
(39884, 'https://ror.org/05v34hx56', 'no_lang_code', 1, 'https://ror.org/05v34hx56 Nano Carbon (Poland)'),
(39885, 'https://ror.org/05v373q59', 'no_lang_code', 1, 'https://ror.org/05v373q59 Emisoft (Norway)'),
(39886, 'https://ror.org/05v3yw889', 'no_lang_code', 1, 'https://ror.org/05v3yw889 Omega (Slovenia)'),
(39887, 'https://ror.org/05v744n89', 'en', 1, 'https://ror.org/05v744n89 Grande Ronde Hospital'),
(39888, 'https://ror.org/05v8cdx93', 'no_lang_code', 1, 'https://ror.org/05v8cdx93 Sencel Bioinformatics (Norway)'),
(39889, 'https://ror.org/05vapw332', 'en', 1, 'https://ror.org/05vapw332 University clinical center of Republika Srpska'),
(39890, 'https://ror.org/05vb46y86', 'no_lang_code', 1, 'https://ror.org/05vb46y86 MemfoACT (Norway)'),
(39891, 'https://ror.org/05vbhz423', 'no_lang_code', 1, 'https://ror.org/05vbhz423 Mectro (Norway)'),
(39892, 'https://ror.org/05vc01a67', 'en', 1, 'https://ror.org/05vc01a67 Daejeon Oriental Hospital'),
(39893, 'https://ror.org/05vcxb550', 'en', 1, 'https://ror.org/05vcxb550 Affiliated Hospital of Shandong Academy of Medical Sciences'),
(39894, 'https://ror.org/05vcxrs03', 'pt', 1, 'https://ror.org/05vcxrs03 Sociedade Brasileira de MicroeletrƓnica'),
(39895, 'https://ror.org/05ve4qs86', 'no_lang_code', 1, 'https://ror.org/05ve4qs86 Olav Thon (Norway)'),
(39896, 'https://ror.org/05veaq644', 'no', 1, 'https://ror.org/05veaq644 Ƙvre Eiker Kommune'),
(39897, 'https://ror.org/05ver4491', 'en', 1, 'https://ror.org/05ver4491 European Centre for Minority Issues Europäisches Zentrum für Minderheitenfragen'),
(39898, 'https://ror.org/05vg3sa15', 'no_lang_code', 1, 'https://ror.org/05vg3sa15 Calysta (Norway)'),
(39899, 'https://ror.org/05vgg2c14', 'en', 1, 'https://ror.org/05vgg2c14 West Middlesex University Hospital'),
(39900, 'https://ror.org/05vheqh10', 'no_lang_code', 1, 'https://ror.org/05vheqh10 Genomic (Brazil)'),
(39901, 'https://ror.org/05vhxx644', 'no_lang_code', 1, 'https://ror.org/05vhxx644 Athens Euroclinic'),
(39902, 'https://ror.org/05vj1ve49', 'no_lang_code', 1, 'https://ror.org/05vj1ve49 Luxtec (Brazil)'),
(39903, 'https://ror.org/05vjm3y03', 'en', 1, 'https://ror.org/05vjm3y03 Joshi Hospital ą¤œą„‹ą¤¶ą„€ ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(39904, 'https://ror.org/05vn58r96', 'en', 1, 'https://ror.org/05vn58r96 San Antonio Regional Hospital'),
(39905, 'https://ror.org/05vpztv21', 'no_lang_code', 1, 'https://ror.org/05vpztv21 Plantech (Brazil)'),
(39906, 'https://ror.org/05vsjw141', 'en', 1, 'https://ror.org/05vsjw141 International Hospital Kampala'),
(39907, 'https://ror.org/05vsk3m88', 'en', 1, 'https://ror.org/05vsk3m88 Kilinochchi General Hospital'),
(39908, 'https://ror.org/05vtg7207', 'no_lang_code', 1, 'https://ror.org/05vtg7207 Geomatics (Norway)'),
(39909, 'https://ror.org/05vwgdc91', 'no_lang_code', 1, 'https://ror.org/05vwgdc91 B2 (Slovenia)'),
(39910, 'https://ror.org/05vwwq909', 'no_lang_code', 1, 'https://ror.org/05vwwq909 UniSoma (Brazil)'),
(39911, 'https://ror.org/05vxqd987', 'no_lang_code', 1, 'https://ror.org/05vxqd987 Aquadyne (Norway)'),
(39912, 'https://ror.org/05vyesa56', 'no_lang_code', 1, 'https://ror.org/05vyesa56 Kongsberg Automotive (Norway)'),
(39913, 'https://ror.org/05w02xt27', 'no_lang_code', 1, 'https://ror.org/05w02xt27 Hypet Data (Norway)'),
(39914, 'https://ror.org/05w0gx844', 'de', 1, 'https://ror.org/05w0gx844 Kinderklinik Regensburg'),
(39915, 'https://ror.org/05w1kd396', 'no_lang_code', 1, 'https://ror.org/05w1kd396 Portahead (Norway)'),
(39916, 'https://ror.org/05w1vwd46', 'no_lang_code', 1, 'https://ror.org/05w1vwd46 WarpIV Technologies (United States)'),
(39917, 'https://ror.org/05w1xct55', 'no_lang_code', 1, 'https://ror.org/05w1xct55 Lilly (China)'),
(39918, 'https://ror.org/05w2qpw18', 'no_lang_code', 1, 'https://ror.org/05w2qpw18 GridBridge (United States)'),
(39919, 'https://ror.org/05w4sv861', 'en', 1, 'https://ror.org/05w4sv861 Jamestown Hospital'),
(39920, 'https://ror.org/05w77r929', 'en', 1, 'https://ror.org/05w77r929 Blaenavon Hospital'),
(39921, 'https://ror.org/05w7k9134', 'en', 1, 'https://ror.org/05w7k9134 Ajman Specialty General Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¹Ł…ŁˆŁ…ŪŒ تخصصی عجمان'),
(39922, 'https://ror.org/05w7tpg32', 'en', 1, 'https://ror.org/05w7tpg32 Castle Peak Hospital 青山醫院'),
(39923, 'https://ror.org/05w9mt194', 'en', 1, 'https://ror.org/05w9mt194 Department for Employment and Learning'),
(39924, 'https://ror.org/05wasnw28', 'en', 1, 'https://ror.org/05wasnw28 Meliksah University'),
(39925, 'https://ror.org/05watjs66', 'en', 1, 'https://ror.org/05watjs66 Dr D Y Patil Dental College & Hospital'),
(39926, 'https://ror.org/05wb29v16', 'en', 1, 'https://ror.org/05wb29v16 Kitojo Hospital'),
(39927, 'https://ror.org/05wbvqf90', 'no_lang_code', 1, 'https://ror.org/05wbvqf90 OWC Power (Norway)'),
(39928, 'https://ror.org/05wd9fr72', 'no_lang_code', 1, 'https://ror.org/05wd9fr72 Dalvic (Brazil)'),
(39929, 'https://ror.org/05wdyx442', 'no_lang_code', 1, 'https://ror.org/05wdyx442 TransFrigor do Brasil (Brazil)'),
(39930, 'https://ror.org/05wer6w03', 'en', 1, 'https://ror.org/05wer6w03 Sunrise Hospital & Medical Center'),
(39931, 'https://ror.org/05wfz2361', 'en', 1, 'https://ror.org/05wfz2361 Kang-Ning Junior College of Medical Care and Management'),
(39932, 'https://ror.org/05wgaw739', 'no_lang_code', 1, 'https://ror.org/05wgaw739 Ralston & Bau (Norway)'),
(39933, 'https://ror.org/05wgkzg12', 'en', 1, 'https://ror.org/05wgkzg12 Division of Behavioral and Cognitive Sciences'),
(39934, 'https://ror.org/05wgrpp48', 'no_lang_code', 1, 'https://ror.org/05wgrpp48 Infor (Norway)'),
(39935, 'https://ror.org/05wh5fw51', 'no_lang_code', 1, 'https://ror.org/05wh5fw51 Mitsui Chemicals (Japan) äø‰äŗ•åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(39936, 'https://ror.org/05whhvm83', 'en', 1, 'https://ror.org/05whhvm83 International Consortium on Geo-disaster Reduction'),
(39937, 'https://ror.org/05whram96', 'no_lang_code', 1, 'https://ror.org/05whram96 Svetovalna in Razvojna Dejavnost (Slovenia)'),
(39938, 'https://ror.org/05wk1t126', 'en', 1, 'https://ror.org/05wk1t126 Oslo Port Authority'),
(39939, 'https://ror.org/05wk2qf13', 'en', 1, 'https://ror.org/05wk2qf13 Institute of Metal Constructions'),
(39940, 'https://ror.org/05wkdrh69', 'no_lang_code', 1, 'https://ror.org/05wkdrh69 Top in Life Biotecnologia & GenƩtica Animal (Brazil)'),
(39941, 'https://ror.org/05wm9y343', 'en', 1, 'https://ror.org/05wm9y343 Islamic University College'),
(39942, 'https://ror.org/05wnbm742', 'no_lang_code', 1, 'https://ror.org/05wnbm742 Hallingplast (Norway)'),
(39943, 'https://ror.org/05wnsp028', 'en', 1, 'https://ror.org/05wnsp028 Fort Beaufort Hospital'),
(39944, 'https://ror.org/05wp4z583', 'no_lang_code', 1, 'https://ror.org/05wp4z583 New Amsterdam Public Hospital'),
(39945, 'https://ror.org/05wqffg52', 'no_lang_code', 1, 'https://ror.org/05wqffg52 Gintel (Norway)'),
(39946, 'https://ror.org/05wqyfz02', 'en', 1, 'https://ror.org/05wqyfz02 Marina Del Rey Hospital'),
(39947, 'https://ror.org/05wrwe084', 'no_lang_code', 1, 'https://ror.org/05wrwe084 Nortura (Norway)'),
(39948, 'https://ror.org/05wweqh04', 'en', 1, 'https://ror.org/05wweqh04 Emirates College for Advanced Education'),
(39949, 'https://ror.org/05wx3dm75', 'de', 1, 'https://ror.org/05wx3dm75 Krankenhaus Kƶln-Holweide'),
(39950, 'https://ror.org/05x1p4174', 'no_lang_code', 1, 'https://ror.org/05x1p4174 Expertise Engenharia (Brazil)'),
(39951, 'https://ror.org/05x32yq84', 'no_lang_code', 1, 'https://ror.org/05x32yq84 Svorka (Norway)'),
(39952, 'https://ror.org/05x3kq496', 'no_lang_code', 1, 'https://ror.org/05x3kq496 ArcticZymes (Norway)'),
(39953, 'https://ror.org/05x3pnd66', 'en', 1, 'https://ror.org/05x3pnd66 City College Brighton & Hove, City College Brighton and Hove'),
(39954, 'https://ror.org/05x596b40', 'en', 1, 'https://ror.org/05x596b40 Norfolk General Hospital'),
(39955, 'https://ror.org/05x6w0w63', 'no_lang_code', 1, 'https://ror.org/05x6w0w63 PetroMarker (Norway)'),
(39956, 'https://ror.org/05x75gh12', 'en', 1, 'https://ror.org/05x75gh12 Deutsches Literaturarchiv German Literature Archive'),
(39957, 'https://ror.org/05xamdp54', 'fr', 1, 'https://ror.org/05xamdp54 Le Fresnoy - Studio National des Arts Contemporains'),
(39958, 'https://ror.org/05xc75s20', 'no', 1, 'https://ror.org/05xc75s20 RegionrƄdet i Nord-Gudbrandsdal'),
(39959, 'https://ror.org/05xceke97', 'en', 1, 'https://ror.org/05xceke97 Second People’s Hospital of Yibin'),
(39960, 'https://ror.org/05xdv6s36', 'en', 1, 'https://ror.org/05xdv6s36 Association internationale de science politique International Political Science Association'),
(39961, 'https://ror.org/05xe0se54', 'no_lang_code', 1, 'https://ror.org/05xe0se54 Furukawa Electric (Japan) å¤ę²³é›»ę°—å·„ę„­'),
(39962, 'https://ror.org/05xe6ep17', 'no_lang_code', 1, 'https://ror.org/05xe6ep17 Satguru Partap Singh Hospital'),
(39963, 'https://ror.org/05xe9nd50', 'no_lang_code', 1, 'https://ror.org/05xe9nd50 Scantrol (Norway)'),
(39964, 'https://ror.org/05xeqkp81', 'no_lang_code', 1, 'https://ror.org/05xeqkp81 Tecnima (Brazil)'),
(39965, 'https://ror.org/05xfapj25', 'no_lang_code', 1, 'https://ror.org/05xfapj25 Mjanyana Hospital'),
(39966, 'https://ror.org/05xfhsc76', 'no', 1, 'https://ror.org/05xfhsc76 Halden Kommune'),
(39967, 'https://ror.org/05xh9zn04', 'no_lang_code', 1, 'https://ror.org/05xh9zn04 Mullaitivu Hospital'),
(39968, 'https://ror.org/05xjkag81', 'en', 1, 'https://ror.org/05xjkag81 Cyprus College'),
(39969, 'https://ror.org/05xn6e267', 'en', 1, 'https://ror.org/05xn6e267 Norwegian Corporate Governance Board'),
(39970, 'https://ror.org/05xng5k36', 'en', 1, 'https://ror.org/05xng5k36 Collège héritage Heritage College'),
(39971, 'https://ror.org/05xnphh52', 'no_lang_code', 1, 'https://ror.org/05xnphh52 PV Prest VƔcuo (Brazil)'),
(39972, 'https://ror.org/05xrz9x70', 'no_lang_code', 1, 'https://ror.org/05xrz9x70 Ryfylke (Norway)'),
(39973, 'https://ror.org/05xvhkb42', 'no_lang_code', 1, 'https://ror.org/05xvhkb42 TracID (Norway)'),
(39974, 'https://ror.org/05xwpxc69', 'en', 1, 'https://ror.org/05xwpxc69 Jerusalem University College'),
(39975, 'https://ror.org/05xxpnn88', 'en', 1, 'https://ror.org/05xxpnn88 College of Biblical Studies'),
(39976, 'https://ror.org/05xyfkx86', 'no', 1, 'https://ror.org/05xyfkx86 Norsk Sau og Geit'),
(39977, 'https://ror.org/05xyfmz81', 'en', 1, 'https://ror.org/05xyfmz81 Total Rehab'),
(39978, 'https://ror.org/05y17bn08', 'en', 1, 'https://ror.org/05y17bn08 Grey Provincial Hospital'),
(39979, 'https://ror.org/05y3c0716', 'en', 1, 'https://ror.org/05y3c0716 Harrogate and District NHS Foundation Trust'),
(39980, 'https://ror.org/05y4f4n31', 'en', 1, 'https://ror.org/05y4f4n31 Wisconsin Association of Independent Colleges and Universities'),
(39981, 'https://ror.org/05y7a3192', 'en', 1, 'https://ror.org/05y7a3192 Kirkland and District Hospital'),
(39982, 'https://ror.org/05y867510', 'pt', 1, 'https://ror.org/05y867510 Associação Nacional de História'),
(39983, 'https://ror.org/05y89d612', 'no_lang_code', 1, 'https://ror.org/05y89d612 Logtrac (Brazil)'),
(39984, 'https://ror.org/05ya1hz84', 'no', 1, 'https://ror.org/05ya1hz84 Norsk Hestesenter Stiftelse'),
(39985, 'https://ror.org/05yabwx33', 'de', 1, 'https://ror.org/05yabwx33 Kantonsspital Frauenfeld'),
(39986, 'https://ror.org/05yaghb42', 'no_lang_code', 1, 'https://ror.org/05yaghb42 Dolphin Interconnect Solutions (Norway)'),
(39987, 'https://ror.org/05yawxj29', 'no_lang_code', 1, 'https://ror.org/05yawxj29 Single-Phase Power (Norway)'),
(39988, 'https://ror.org/05yaygt56', 'no_lang_code', 1, 'https://ror.org/05yaygt56 Spermatech (Norway)'),
(39989, 'https://ror.org/05ycfv646', 'no_lang_code', 1, 'https://ror.org/05ycfv646 Multiconsult (Norway)'),
(39990, 'https://ror.org/05ydkmr70', 'en', 1, 'https://ror.org/05ydkmr70 Patna Medical College and Hospital पटना ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(39991, 'https://ror.org/05yfnn994', 'no_lang_code', 1, 'https://ror.org/05yfnn994 Allinea Software (United Kingdom)'),
(39992, 'https://ror.org/05yg3bs96', 'pt', 1, 'https://ror.org/05yg3bs96 Secretaria da Casa Civil'),
(39993, 'https://ror.org/05yg59x49', 'no_lang_code', 1, 'https://ror.org/05yg59x49 Thrace Polybulk (Norway)'),
(39994, 'https://ror.org/05ygpsf69', 'no_lang_code', 1, 'https://ror.org/05ygpsf69 Silcare (Poland)'),
(39995, 'https://ror.org/05yhvta08', 'es', 1, 'https://ror.org/05yhvta08 Hospital Tobar GarcĆ­a'),
(39996, 'https://ror.org/05yjs1q31', 'no_lang_code', 1, 'https://ror.org/05yjs1q31 Gaidaros Forlag (Norway)'),
(39997, 'https://ror.org/05ykbvr48', 'en', 1, 'https://ror.org/05ykbvr48 Humboldt District Hospital'),
(39998, 'https://ror.org/05ym51d14', 'no_lang_code', 1, 'https://ror.org/05ym51d14 Selaz (Brazil)'),
(39999, 'https://ror.org/05ynfxz71', 'no_lang_code', 1, 'https://ror.org/05ynfxz71 Nanophoton (Brazil)'),
(40000, 'https://ror.org/05yptg266', 'en', 1, 'https://ror.org/05yptg266 Asnuntuck Community College'),
(40001, 'https://ror.org/0001h5y29', 'en', 1, 'https://ror.org/0001h5y29 Beulah Heights University'),
(40002, 'https://ror.org/0001ke483', 'en', 1, 'https://ror.org/0001ke483 St George''s Hospital'),
(40003, 'https://ror.org/000367g23', 'it', 1, 'https://ror.org/000367g23 Accademia di Belle Arti di Carrara'),
(40004, 'https://ror.org/00042h977', 'en', 1, 'https://ror.org/00042h977 Napa Valley College'),
(40005, 'https://ror.org/0004nq427', 'en', 1, 'https://ror.org/0004nq427 Data Security Council of India'),
(40006, 'https://ror.org/0006f9a08', 'en', 1, 'https://ror.org/0006f9a08 Centre for Science, Development and Media Studies'),
(40007, 'https://ror.org/0007gah74', 'en', 1, 'https://ror.org/0007gah74 Drew Associates'),
(40008, 'https://ror.org/0009ha653', 'en', 1, 'https://ror.org/0009ha653 Alliance for Clinical Trials in Oncology'),
(40009, 'https://ror.org/000bbgp24', 'en', 1, 'https://ror.org/000bbgp24 Centre for Transportation Engineering and Planning'),
(40010, 'https://ror.org/000bjk220', 'en', 1, 'https://ror.org/000bjk220 Państwowa Medyczna Wyższa Szkoła Zawodowa Public Higher Medical Professional School in Opole'),
(40011, 'https://ror.org/000cnwx98', 'en', 1, 'https://ror.org/000cnwx98 Norco College'),
(40012, 'https://ror.org/000cvk368', 'en', 1, 'https://ror.org/000cvk368 Ohio Valley Medical Center'),
(40013, 'https://ror.org/000dp5151', 'no_lang_code', 1, 'https://ror.org/000dp5151 Anecova (Switzerland)'),
(40014, 'https://ror.org/000feez16', 'en', 1, 'https://ror.org/000feez16 Social Policy Evaluation and Research Unit'),
(40015, 'https://ror.org/000fpja48', 'en', 1, 'https://ror.org/000fpja48 Pedagocial University Tyrol pƤdagogische hochschule tirol'),
(40016, 'https://ror.org/000gkvw58', 'en', 1, 'https://ror.org/000gkvw58 Steinbach Bible College'),
(40017, 'https://ror.org/000gm1k91', 'no_lang_code', 1, 'https://ror.org/000gm1k91 John Wiley & Sons (Germany)'),
(40018, 'https://ror.org/000hkd473', 'en', 1, 'https://ror.org/000hkd473 Dystrophie musculaire Canada Muscular Dystrophy Canada'),
(40019, 'https://ror.org/000ht5b74', 'fr', 1, 'https://ror.org/000ht5b74 Fondation du Roi Abdul-Aziz Al Saoud'),
(40020, 'https://ror.org/000jbwm32', 'no_lang_code', 1, 'https://ror.org/000jbwm32 National Sanatorium Ooshima Seishōen å›½ē«‹ē™‚é¤Šę‰€å¤§å³¶é’ę¾åœ’'),
(40021, 'https://ror.org/000rbze86', 'en', 1, 'https://ror.org/000rbze86 Asia Pacific Institute of Management'),
(40022, 'https://ror.org/000s5ez74', 'en', 1, 'https://ror.org/000s5ez74 All Russian Scientific Research Institute of Aviation Materials Все России Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных материалов'),
(40023, 'https://ror.org/000s6jb73', 'no_lang_code', 1, 'https://ror.org/000s6jb73 PNC Financial Services (United States)'),
(40024, 'https://ror.org/000t17x96', 'en', 1, 'https://ror.org/000t17x96 National Institute of Plant Health Management ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤Øą¤øą„ā€ą¤Ŗą¤¤ą¤æ ą¤øą„ā€ą¤µą¤¾ą¤øą„ā€ą¤„ą„ā€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø'),
(40025, 'https://ror.org/000wamw23', 'no_lang_code', 1, 'https://ror.org/000wamw23 CohBar (United States)'),
(40026, 'https://ror.org/000xh7t03', 'no_lang_code', 1, 'https://ror.org/000xh7t03 Lesieur Cristal'),
(40027, 'https://ror.org/000yekt70', 'lv', 1, 'https://ror.org/000yekt70 Malnavas koledža'),
(40028, 'https://ror.org/000z2fe63', 'en', 1, 'https://ror.org/000z2fe63 Grace Mission University'),
(40029, 'https://ror.org/001154j50', 'en', 1, 'https://ror.org/001154j50 Państwowa Wyższa Szkoła Zawodowa im. prof. Stanisława Tarnowskiego w Tarnobrzegu State Higher Vocational School Memorial of Prof. Stanislaw Tarnowski in Tarnobrzeg'),
(40030, 'https://ror.org/00120ce61', 'en', 1, 'https://ror.org/00120ce61 Society for Participatory Research in Asia'),
(40031, 'https://ror.org/0012bxd45', 'it', 1, 'https://ror.org/0012bxd45 Conservatorio Giuseppe Nicolini'),
(40032, 'https://ror.org/0012pft53', 'en', 1, 'https://ror.org/0012pft53 FacultƩ de droit thomas jefferson Thomas Jefferson School of Law'),
(40033, 'https://ror.org/0013shd50', 'no_lang_code', 1, 'https://ror.org/0013shd50 Novartis (Germany)'),
(40034, 'https://ror.org/0017kmw32', 'no_lang_code', 1, 'https://ror.org/0017kmw32 Centrais ElƩtricas Brasileiras S.A. Eletrobras (Brazil)'),
(40035, 'https://ror.org/00182ep39', 'no_lang_code', 1, 'https://ror.org/00182ep39 Advanced Photon Sciences (United States)'),
(40036, 'https://ror.org/001c3w852', 'en', 1, 'https://ror.org/001c3w852 Instituto Nacional de Ciência e Tecnologia de Toxicologia AquÔtica National Institute of Aquatic Toxicology'),
(40037, 'https://ror.org/001cf8537', 'en', 1, 'https://ror.org/001cf8537 Baltimore County Public Schools'),
(40038, 'https://ror.org/001d3rx39', 'no_lang_code', 1, 'https://ror.org/001d3rx39 Milliman (United States)'),
(40039, 'https://ror.org/001edfm43', 'no_lang_code', 1, 'https://ror.org/001edfm43 Theravectys (France)'),
(40040, 'https://ror.org/001gb1j79', 'en', 1, 'https://ror.org/001gb1j79 American Baptist College'),
(40041, 'https://ror.org/001hjc616', 'en', 1, 'https://ror.org/001hjc616 Venerable English College'),
(40042, 'https://ror.org/001r3g324', 'pt', 1, 'https://ror.org/001r3g324 Fundação Ariel Glaser Contra o SIDA PediÔtrico'),
(40043, 'https://ror.org/001sfpp23', 'en', 1, 'https://ror.org/001sfpp23 Relay Graduate School of Education'),
(40044, 'https://ror.org/001snd369', 'no_lang_code', 1, 'https://ror.org/001snd369 Rosa (United States)'),
(40045, 'https://ror.org/001t6pv65', 'en', 1, 'https://ror.org/001t6pv65 Grand Lodge of Western Australia'),
(40046, 'https://ror.org/001tdwk28', 'en', 1, 'https://ror.org/001tdwk28 Gansu Academy of Agricultural Sciences å†œäøšē§‘å­¦ē”˜č‚ƒēœē§‘å­¦é™¢'),
(40047, 'https://ror.org/001yxxw51', 'en', 1, 'https://ror.org/001yxxw51 M.A.G. Osmani Medical College, Sylhet, Sylhet MAG Osmani Medical College ą¦ą¦®.ą¦.জি. ওসমানী মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(40048, 'https://ror.org/0022sh211', 'it', 1, 'https://ror.org/0022sh211 Conservatorio di Musica Giovambattista Pergolesi'),
(40049, 'https://ror.org/0023cym93', 'en', 1, 'https://ror.org/0023cym93 Stefansson Arctic Institute Stofnun VilhjƔlms StefƔnssonar'),
(40050, 'https://ror.org/0026drc14', 'en', 1, 'https://ror.org/0026drc14 Mendocino College'),
(40051, 'https://ror.org/0026pwq79', 'fr', 1, 'https://ror.org/0026pwq79 Observatoire National des Droits de l''Enfant'),
(40052, 'https://ror.org/0027wxf59', 'en', 1, 'https://ror.org/0027wxf59 Albert Ellis Institute'),
(40053, 'https://ror.org/002827k23', 'en', 1, 'https://ror.org/002827k23 Frankfurt Zoological Society Zoologische Gesellschaft Frankfurt'),
(40054, 'https://ror.org/00289h314', 'en', 1, 'https://ror.org/00289h314 American Egg Board'),
(40055, 'https://ror.org/0028fee73', 'en', 1, 'https://ror.org/0028fee73 Butler County Community College'),
(40056, 'https://ror.org/002a3ss66', 'pt', 1, 'https://ror.org/002a3ss66 Centro de Tecnologias EstratƩgicas do Nordeste'),
(40057, 'https://ror.org/002an7w33', 'en', 1, 'https://ror.org/002an7w33 European Union of Medical Specialists Union EuropƩenne des MƩdecins SpƩcialistes'),
(40058, 'https://ror.org/002anhf82', 'en', 1, 'https://ror.org/002anhf82 Observatoire du Sahara et du Sahel Sahara and Sahel Observatory'),
(40059, 'https://ror.org/002b21721', 'pl', 1, 'https://ror.org/002b21721 Państwowa Wyższa Szkoła Zawodowa w Ciechanowie'),
(40060, 'https://ror.org/002c9wz60', 'en', 1, 'https://ror.org/002c9wz60 Centre for Ageing Research and Development in Ireland'),
(40061, 'https://ror.org/002e14v94', 'en', 1, 'https://ror.org/002e14v94 Union Theological College'),
(40062, 'https://ror.org/002e3sm06', 'en', 1, 'https://ror.org/002e3sm06 Academic Degrees & Graduate Education å­¦ä½äøŽē ”ē©¶ē”Ÿę•™č‚²ę‚åæ—ē¤¾'),
(40063, 'https://ror.org/002em1b68', 'no_lang_code', 1, 'https://ror.org/002em1b68 Casappa (Italy)'),
(40064, 'https://ror.org/002ew9g26', 'en', 1, 'https://ror.org/002ew9g26 Leonard Wood Institute'),
(40065, 'https://ror.org/002kf8b88', 'en', 1, 'https://ror.org/002kf8b88 Paul D. Camp Community College'),
(40066, 'https://ror.org/002kje223', 'no_lang_code', 1, 'https://ror.org/002kje223 iThemba Laboratory'),
(40067, 'https://ror.org/002m0wj49', 'en', 1, 'https://ror.org/002m0wj49 Spartan College of Aeronautics and Technology'),
(40068, 'https://ror.org/002qv2715', 'en', 1, 'https://ror.org/002qv2715 Statens jordbruksverk Swedish Board of Agriculture'),
(40069, 'https://ror.org/002qvaf96', 'no_lang_code', 1, 'https://ror.org/002qvaf96 Gliacure (United States)'),
(40070, 'https://ror.org/002rcdx19', 'en', 1, 'https://ror.org/002rcdx19 Institute and Faculty of Actuaries'),
(40071, 'https://ror.org/002tzev63', 'en', 1, 'https://ror.org/002tzev63 IMDEA Energy Institute Instituto IMDEA EnergĆ­a'),
(40072, 'https://ror.org/002vdk888', 'it', 1, 'https://ror.org/002vdk888 Conservatorio di Musica Agostino Steffani'),
(40073, 'https://ror.org/002wdx176', 'en', 1, 'https://ror.org/002wdx176 Practical Action'),
(40074, 'https://ror.org/002y2c982', 'en', 1, 'https://ror.org/002y2c982 Centre d’Excellence de l’Ontario en SantĆ© Mentale des Enfants et des Adolescents Ontario Centre of Excellence for Child and Youth Mental Health'),
(40075, 'https://ror.org/003093432', 'en', 1, 'https://ror.org/003093432 International Centre for Reproductive Health'),
(40076, 'https://ror.org/0030qkm60', 'en', 1, 'https://ror.org/0030qkm60 National Academy of Sciences ėŒ€ķ•œėÆ¼źµ­ķ•™ģˆ ģ›'),
(40077, 'https://ror.org/0030s7a45', 'no_lang_code', 1, 'https://ror.org/0030s7a45 Grape King (Taiwan) č‘”č„ēŽ‹ē”ŸęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(40078, 'https://ror.org/0033hxy10', 'no_lang_code', 1, 'https://ror.org/0033hxy10 Vaisala (United States)'),
(40079, 'https://ror.org/00343m182', 'no_lang_code', 1, 'https://ror.org/00343m182 Subway (United States)'),
(40080, 'https://ror.org/00347qn56', 'no_lang_code', 1, 'https://ror.org/00347qn56 Geoterra Image (South Africa)'),
(40081, 'https://ror.org/0035bbx08', 'en', 1, 'https://ror.org/0035bbx08 Wharton County Junior College'),
(40082, 'https://ror.org/003709a13', 'en', 1, 'https://ror.org/003709a13 National Research Centre for Grapes ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ-ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤…ą¤‚ą¤—ą„‚ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(40083, 'https://ror.org/00382bg18', 'en', 1, 'https://ror.org/00382bg18 College of Applied Psychology VysokÔ Ŕkola aplikované psychologie'),
(40084, 'https://ror.org/00387ef87', 'no_lang_code', 1, 'https://ror.org/00387ef87 Motley Fool (United States)'),
(40085, 'https://ror.org/0039tsz33', 'en', 1, 'https://ror.org/0039tsz33 Indian Institute of Management Kashipur ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤¾ą¤¶ą„€ą¤Ŗą„ą¤°'),
(40086, 'https://ror.org/003ad2905', 'no_lang_code', 1, 'https://ror.org/003ad2905 Farm Africa Kenya'),
(40087, 'https://ror.org/003chwa70', 'en', 1, 'https://ror.org/003chwa70 South and City College Birmingham'),
(40088, 'https://ror.org/003cma469', 'sv', 1, 'https://ror.org/003cma469 Landstinget Sƶrmland, Sƶdermanlands lƤns landsting'),
(40089, 'https://ror.org/003cmjc53', 'en', 1, 'https://ror.org/003cmjc53 Nipawin Bible College'),
(40090, 'https://ror.org/003cq3m13', 'pt', 1, 'https://ror.org/003cq3m13 Empresa de Pesquisa AgropecuƔria do Rio Grande do Norte'),
(40091, 'https://ror.org/003k8c950', 'en', 1, 'https://ror.org/003k8c950 Norges Vitenskapsakademi for Polarforskning Norwegian Scientific Academy for Polar Research'),
(40092, 'https://ror.org/003p9wg45', 'en', 1, 'https://ror.org/003p9wg45 Henry Smith Charity'),
(40093, 'https://ror.org/003rgm223', 'no_lang_code', 1, 'https://ror.org/003rgm223 AB Science (France)'),
(40094, 'https://ror.org/003s3dn82', 'en', 1, 'https://ror.org/003s3dn82 Shenkar College of Engineering and Design שנקר - הנדהה, עיצוב ×•××ž× ×•×Ŗ'),
(40095, 'https://ror.org/003sd7q02', 'en', 1, 'https://ror.org/003sd7q02 Tianjin Natural History Museum å¤©ę“„č‡Ŗē„¶åšē‰©é¦†å§‹å»ŗäŗŽ'),
(40096, 'https://ror.org/003ssft94', 'no_lang_code', 1, 'https://ror.org/003ssft94 Seascape Learning (India)'),
(40097, 'https://ror.org/003tb8s84', 'en', 1, 'https://ror.org/003tb8s84 Global ICT Standardization Forum for India'),
(40098, 'https://ror.org/003te8934', 'no_lang_code', 1, 'https://ror.org/003te8934 Umvoto Africa'),
(40099, 'https://ror.org/003vffc21', 'en', 1, 'https://ror.org/003vffc21 Arts Council of Wales Cyngor Celfyddydau Cymru'),
(40100, 'https://ror.org/003wb2x77', 'en', 1, 'https://ror.org/003wb2x77 Northeast Lakeview College');
INSERT INTO `rors` VALUES
(40101, 'https://ror.org/003xt6d81', 'de', 1, 'https://ror.org/003xt6d81 Fachhochschule für Verwaltung und Dienstleistung'),
(40102, 'https://ror.org/0040bha74', 'en', 1, 'https://ror.org/0040bha74 Milltown Institute of Theology and Philosophy'),
(40103, 'https://ror.org/0040q3862', 'en', 1, 'https://ror.org/0040q3862 Atlanta’s John Marshall Law School'),
(40104, 'https://ror.org/00420et70', 'en', 1, 'https://ror.org/00420et70 Department for Child Protection and Family Support'),
(40105, 'https://ror.org/004481c75', 'pl', 1, 'https://ror.org/004481c75 Academy of Hotel Management and Catering Industry Wyższa Szkoła Hotelarstwa i Gastronomii'),
(40106, 'https://ror.org/004565978', 'en', 1, 'https://ror.org/004565978 European Society for Sexual Medicine'),
(40107, 'https://ror.org/0045vmg65', 'no_lang_code', 1, 'https://ror.org/0045vmg65 Seiwa Gakuen College č–å’Œå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(40108, 'https://ror.org/00471x271', 'fr', 1, 'https://ror.org/00471x271 Haut-Commissariat aux Eaux et Forêts et à la Lutte Contre la Désertification'),
(40109, 'https://ror.org/004914a33', 'en', 1, 'https://ror.org/004914a33 Federal Scientific Center for Animal Husbandry named after Academician L.K. Ernst Всероссийский ŠŠ˜Š˜ животновоГства имени Š›. К. Эрнста'),
(40110, 'https://ror.org/004a7w818', 'en', 1, 'https://ror.org/004a7w818 M. Tuttle & Associates'),
(40111, 'https://ror.org/004adc024', 'en', 1, 'https://ror.org/004adc024 National Medical Stores'),
(40112, 'https://ror.org/004axh929', 'en', 1, 'https://ror.org/004axh929 RMIT Vietnam ĐẔi hį»c RMIT Việt Nam'),
(40113, 'https://ror.org/004dzkd51', 'en', 1, 'https://ror.org/004dzkd51 Frumkin Institute of Physical Chemistry and Electrochemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической химии Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŠø им. А. Š. Š¤Ń€ŃƒŠ¼ŠŗŠøŠ½Š° Российской акаГемии наук'),
(40114, 'https://ror.org/004fb1r50', 'en', 1, 'https://ror.org/004fb1r50 Indonesian Coral Reef Foundation Yayasan Terumbu Karang Indonesia'),
(40115, 'https://ror.org/004fbmp75', 'no_lang_code', 1, 'https://ror.org/004fbmp75 Benbria (Canada)'),
(40116, 'https://ror.org/004fggg55', 'en', 1, 'https://ror.org/004fggg55 Ministry of Agriculture, Animal Industry and Fisheries'),
(40117, 'https://ror.org/004g7jm05', 'en', 1, 'https://ror.org/004g7jm05 Statistics Korea 통계청'),
(40118, 'https://ror.org/004gnah66', 'en', 1, 'https://ror.org/004gnah66 Vilniaus Kolegija Vilnius University of Applied Sciences'),
(40119, 'https://ror.org/004jn1895', 'en', 1, 'https://ror.org/004jn1895 Buckminster Fuller Institute'),
(40120, 'https://ror.org/004kqsv83', 'en', 1, 'https://ror.org/004kqsv83 Government of Sikkim'),
(40121, 'https://ror.org/004kvr873', 'en', 1, 'https://ror.org/004kvr873 Emerson School District'),
(40122, 'https://ror.org/004ms0k06', 'en', 1, 'https://ror.org/004ms0k06 Northern Oklahoma College'),
(40123, 'https://ror.org/004nr3476', 'no_lang_code', 1, 'https://ror.org/004nr3476 Amdocs (United States)'),
(40124, 'https://ror.org/004pw1z78', 'en', 1, 'https://ror.org/004pw1z78 Africa Society for Blood Transfusion'),
(40125, 'https://ror.org/004sqv102', 'en', 1, 'https://ror.org/004sqv102 Bromley College of Further and Higher Education'),
(40126, 'https://ror.org/004vbe783', 'no_lang_code', 1, 'https://ror.org/004vbe783 Satellite Applications Catapult (United Kingdom)'),
(40127, 'https://ror.org/004wta052', 'en', 1, 'https://ror.org/004wta052 British Council Egypt'),
(40128, 'https://ror.org/004xgw192', 'en', 1, 'https://ror.org/004xgw192 Air Navigation and Weather Services'),
(40129, 'https://ror.org/004y0w704', 'no_lang_code', 1, 'https://ror.org/004y0w704 AgriSense (United Kingdom)'),
(40130, 'https://ror.org/0051tvf03', 'no_lang_code', 1, 'https://ror.org/0051tvf03 Nagra (France)'),
(40131, 'https://ror.org/00520ey40', 'en', 1, 'https://ror.org/00520ey40 Institute of Numerical Mathematics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ математики Российской акаГемии наук'),
(40132, 'https://ror.org/0052nmr57', 'en', 1, 'https://ror.org/0052nmr57 National Research Centre on Yak'),
(40133, 'https://ror.org/0053vns10', 'en', 1, 'https://ror.org/0053vns10 An Comhairle Oidhreachta Heritage Council'),
(40134, 'https://ror.org/0055szp73', 'fr', 1, 'https://ror.org/0055szp73 Centre d''Etude Regional pour l''Amelioration de l''Adaptation a la Secheresse'),
(40135, 'https://ror.org/0056df569', 'pt', 1, 'https://ror.org/0056df569 Faculdade SĆ£o Lucas'),
(40136, 'https://ror.org/005cx3d93', 'pt', 1, 'https://ror.org/005cx3d93 Fundação João Pinheiro, João Pinheiro Foundation'),
(40137, 'https://ror.org/005dydw47', 'no_lang_code', 1, 'https://ror.org/005dydw47 West Bengal Green Energy Development Corporation (India)'),
(40138, 'https://ror.org/005epk420', 'en', 1, 'https://ror.org/005epk420 National Space Research and Development Agency'),
(40139, 'https://ror.org/005gbx671', 'en', 1, 'https://ror.org/005gbx671 Institute of Philosophy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ философии'),
(40140, 'https://ror.org/005hdaw07', 'en', 1, 'https://ror.org/005hdaw07 Trinity Lutheran College'),
(40141, 'https://ror.org/005he3989', 'en', 1, 'https://ror.org/005he3989 Trinity School for Ministry'),
(40142, 'https://ror.org/005j5qx09', 'no_lang_code', 1, 'https://ror.org/005j5qx09 FKUZ Stavropol Rospotrebnadzor Anti Institute Š¤ŠšŠ£Š— Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ ŠæŃ€Š¾Ń‚ŠøŠ²Š¾Ń‡ŃƒŠ¼Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ РоспотребнаГзора'),
(40143, 'https://ror.org/005majy75', 'en', 1, 'https://ror.org/005majy75 Yuba College'),
(40144, 'https://ror.org/005qgvp74', 'no_lang_code', 1, 'https://ror.org/005qgvp74 Alere (United Kingdom)'),
(40145, 'https://ror.org/005s20452', 'en', 1, 'https://ror.org/005s20452 Paichai Chinese Primary School'),
(40146, 'https://ror.org/005tx0y19', 'en', 1, 'https://ror.org/005tx0y19 Research Institute of Industrial Science and Technology'),
(40147, 'https://ror.org/005v57z85', 'en', 1, 'https://ror.org/005v57z85 IC Design Education Center ė°˜ė„ģ²“ģ„¤ź³„ źµģœ”ģ„¼ķ„°'),
(40148, 'https://ror.org/005vq2n07', 'en', 1, 'https://ror.org/005vq2n07 Shyam Shah Medical College'),
(40149, 'https://ror.org/005wq4805', 'en', 1, 'https://ror.org/005wq4805 Fobang Foundation'),
(40150, 'https://ror.org/005y87145', 'no_lang_code', 1, 'https://ror.org/005y87145 Vargƶn Alloys (Sweden)'),
(40151, 'https://ror.org/005yz5976', 'en', 1, 'https://ror.org/005yz5976 Merced College'),
(40152, 'https://ror.org/00600nd69', 'en', 1, 'https://ror.org/00600nd69 Regional Medical Research Centre'),
(40153, 'https://ror.org/006023154', 'no_lang_code', 1, 'https://ror.org/006023154 Safeco Insurance'),
(40154, 'https://ror.org/00606js28', 'no_lang_code', 1, 'https://ror.org/00606js28 Vocapia Research (France)'),
(40155, 'https://ror.org/0060a9610', 'en', 1, 'https://ror.org/0060a9610 Canadian Nuclear Safety Commission Commission Canadienne de SƻretƩ NuclƩaire'),
(40156, 'https://ror.org/00615jn62', 'no_lang_code', 1, 'https://ror.org/00615jn62 Walgreens (United States)'),
(40157, 'https://ror.org/0062gvn89', 'en', 1, 'https://ror.org/0062gvn89 Angliss International Hotel School'),
(40158, 'https://ror.org/0064w0326', 'en', 1, 'https://ror.org/0064w0326 TCI College of Technology'),
(40159, 'https://ror.org/0065zqt33', 'en', 1, 'https://ror.org/0065zqt33 National Cancer Center'),
(40160, 'https://ror.org/0066jc902', 'en', 1, 'https://ror.org/0066jc902 Soil Conservation and Watershed Management Research Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ حفاظت Ų®Ų§Ś© و آبخیزداری'),
(40161, 'https://ror.org/00686bx53', 'en', 1, 'https://ror.org/00686bx53 PEN American Center'),
(40162, 'https://ror.org/0068yvd12', 'en', 1, 'https://ror.org/0068yvd12 Center for Global Development'),
(40163, 'https://ror.org/0069hee22', 'en', 1, 'https://ror.org/0069hee22 Kuyper College'),
(40164, 'https://ror.org/006btmz82', 'en', 1, 'https://ror.org/006btmz82 Institute of Systematics and Ecology of Animals Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систематики Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø животных Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(40165, 'https://ror.org/006bwjz47', 'no_lang_code', 1, 'https://ror.org/006bwjz47 490 BioTech (United States)'),
(40166, 'https://ror.org/006byrq44', 'en', 1, 'https://ror.org/006byrq44 Far Eastern Scientific Centre of Physiology and Pathology of Respiration Russian Academy of Medical Sciences Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр физиологии Šø патологии Š“Ń‹Ń…Š°Š½ŠøŃ'),
(40167, 'https://ror.org/006cgkx15', 'en', 1, 'https://ror.org/006cgkx15 Chinese Academy of Governance å›½å®¶č”Œę”æå­¦é™¢'),
(40168, 'https://ror.org/006cprg57', 'en', 1, 'https://ror.org/006cprg57 Central Board of Irrgation and Power'),
(40169, 'https://ror.org/006ewqz20', 'no_lang_code', 1, 'https://ror.org/006ewqz20 PNO Consultants (Italy)'),
(40170, 'https://ror.org/006ffhv52', 'en', 1, 'https://ror.org/006ffhv52 International School of Trieste Scuola Internazionale di Trieste'),
(40171, 'https://ror.org/006g9a667', 'en', 1, 'https://ror.org/006g9a667 Center for Circumpolar Studies'),
(40172, 'https://ror.org/006hdqg38', 'en', 1, 'https://ror.org/006hdqg38 Shanti Business School'),
(40173, 'https://ror.org/006hpkx89', 'en', 1, 'https://ror.org/006hpkx89 Daymar College'),
(40174, 'https://ror.org/006j5kw87', 'en', 1, 'https://ror.org/006j5kw87 York County Community College'),
(40175, 'https://ror.org/006jnja70', 'en', 1, 'https://ror.org/006jnja70 Utah College of Applied Technology'),
(40176, 'https://ror.org/006k05x61', 'pt', 1, 'https://ror.org/006k05x61 Complexo Hospitalar UniversitƔrio Professor Edgard Santos'),
(40177, 'https://ror.org/006k1pa70', 'en', 1, 'https://ror.org/006k1pa70 Cambridge School'),
(40178, 'https://ror.org/006kn4722', 'no_lang_code', 1, 'https://ror.org/006kn4722 Abilian (France)'),
(40179, 'https://ror.org/006nxzf98', 'no_lang_code', 1, 'https://ror.org/006nxzf98 Ashland (United States)'),
(40180, 'https://ror.org/006p1zj23', 'no_lang_code', 1, 'https://ror.org/006p1zj23 Turner Broadcasting System (United States)'),
(40181, 'https://ror.org/006p7vb38', 'no_lang_code', 1, 'https://ror.org/006p7vb38 Armstrong World Industries (United States)'),
(40182, 'https://ror.org/006ptez88', 'en', 1, 'https://ror.org/006ptez88 Northwest–Shoals Community College'),
(40183, 'https://ror.org/006qkqr45', 'en', 1, 'https://ror.org/006qkqr45 Institute for Coastal Marine Environment Istituto per l''Ambiente Marino Costiero'),
(40184, 'https://ror.org/006rqpt26', 'en', 1, 'https://ror.org/006rqpt26 West and Central African Research and Education Network'),
(40185, 'https://ror.org/006tvg625', 'en', 1, 'https://ror.org/006tvg625 Bank of America'),
(40186, 'https://ror.org/006twj174', 'no_lang_code', 1, 'https://ror.org/006twj174 Berthold (Australia)'),
(40187, 'https://ror.org/006w4kh46', 'en', 1, 'https://ror.org/006w4kh46 North Central Texas College'),
(40188, 'https://ror.org/006xbp572', 'en', 1, 'https://ror.org/006xbp572 College of Law Juridiskā koledža'),
(40189, 'https://ror.org/006zwes74', 'no_lang_code', 1, 'https://ror.org/006zwes74 Dryas Arqueologia (Portugal)'),
(40190, 'https://ror.org/00701pv42', 'fr', 1, 'https://ror.org/00701pv42 Wesford'),
(40191, 'https://ror.org/0070wyz29', 'es', 1, 'https://ror.org/0070wyz29 SecretarĆ­a de Salud de Jalisco'),
(40192, 'https://ror.org/00720xw25', 'pt', 1, 'https://ror.org/00720xw25 Faculdade Redentor'),
(40193, 'https://ror.org/0075b7k59', 'no_lang_code', 1, 'https://ror.org/0075b7k59 Mitsubishi Electric (France)'),
(40194, 'https://ror.org/0077b7806', 'en', 1, 'https://ror.org/0077b7806 Ministry of National Education and Scientific Research'),
(40195, 'https://ror.org/00786fr54', 'en', 1, 'https://ror.org/00786fr54 Indian Register of Shipping'),
(40196, 'https://ror.org/007bss615', 'en', 1, 'https://ror.org/007bss615 Holland Chemistry'),
(40197, 'https://ror.org/007bxt841', 'no_lang_code', 1, 'https://ror.org/007bxt841 Bais HaMedrash and Mesivta of Baltimore'),
(40198, 'https://ror.org/007by2j19', 'no_lang_code', 1, 'https://ror.org/007by2j19 Histogenics (United States)'),
(40199, 'https://ror.org/007cpvh39', 'fr', 1, 'https://ror.org/007cpvh39 Haute Ɖcole en Hainaut'),
(40200, 'https://ror.org/007ebp326', 'no_lang_code', 1, 'https://ror.org/007ebp326 Krasnoyarsk Scientific Center ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(40201, 'https://ror.org/007ew5756', 'en', 1, 'https://ror.org/007ew5756 Irish Baptist College'),
(40202, 'https://ror.org/007gfpa47', 'pt', 1, 'https://ror.org/007gfpa47 Caixa Cultural'),
(40203, 'https://ror.org/007ggdv19', 'en', 1, 'https://ror.org/007ggdv19 Tanzania Industrial Research and Development Organization'),
(40204, 'https://ror.org/007hhp583', 'it', 1, 'https://ror.org/007hhp583 Conservatorio di Musica Arrigo Boito'),
(40205, 'https://ror.org/007je0v50', 'en', 1, 'https://ror.org/007je0v50 Colorado School of Traditional Chinese Medicine'),
(40206, 'https://ror.org/007mjr682', 'en', 1, 'https://ror.org/007mjr682 Fiber Optics Research Center ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр волоконной оптики Российской акаГемии наук'),
(40207, 'https://ror.org/007mwgz28', 'en', 1, 'https://ror.org/007mwgz28 National Telecommunication Regulatory Authority'),
(40208, 'https://ror.org/007phjt92', 'en', 1, 'https://ror.org/007phjt92 Deutsche Keramische Gesellschaft German Ceramic Society'),
(40209, 'https://ror.org/007qc6d13', 'en', 1, 'https://ror.org/007qc6d13 International Baptist College and Seminary'),
(40210, 'https://ror.org/007xnkn32', 'eu', 1, 'https://ror.org/007xnkn32 Osasun Ikaskuntza Fundazioa'),
(40211, 'https://ror.org/007ydnn26', 'no_lang_code', 1, 'https://ror.org/007ydnn26 R-Cost (France)'),
(40212, 'https://ror.org/007ym4t24', 'no_lang_code', 1, 'https://ror.org/007ym4t24 Tefal (France)'),
(40213, 'https://ror.org/007zpd132', 'en', 1, 'https://ror.org/007zpd132 Islamic Azad University of Hamedan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد همدان'),
(40214, 'https://ror.org/0080yzn09', 'en', 1, 'https://ror.org/0080yzn09 Institute of Technical Chemistry'),
(40215, 'https://ror.org/00811aj93', 'en', 1, 'https://ror.org/00811aj93 International Humanitarian University ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½Š¾Š³Š¾ Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ'),
(40216, 'https://ror.org/0082jv665', 'en', 1, 'https://ror.org/0082jv665 Healthy Waterways'),
(40217, 'https://ror.org/0084ktm65', 'en', 1, 'https://ror.org/0084ktm65 Fort Scott Community College'),
(40218, 'https://ror.org/00863rv26', 'no_lang_code', 1, 'https://ror.org/00863rv26 Mattel (United States)'),
(40219, 'https://ror.org/0087m7494', 'es', 1, 'https://ror.org/0087m7494 Instituto Tecnológico de CuliacÔn'),
(40220, 'https://ror.org/0087qvf80', 'pt', 1, 'https://ror.org/0087qvf80 Instituto TƩcnico Artƭstico e Profissional de Coimbra'),
(40221, 'https://ror.org/0087v5134', 'en', 1, 'https://ror.org/0087v5134 National Centre for Groundwater Research and Training'),
(40222, 'https://ror.org/0088h4061', 'en', 1, 'https://ror.org/0088h4061 Dr. D. Y. Patil Medical College, Hospital and Research Centre'),
(40223, 'https://ror.org/0088q3d19', 'en', 1, 'https://ror.org/0088q3d19 Shaanxi Provincial Meteorological Bureau é™•č„æēœę°”č±”å±€'),
(40224, 'https://ror.org/0088v6m32', 'fr', 1, 'https://ror.org/0088v6m32 Banque de France'),
(40225, 'https://ror.org/0089aaq22', 'en', 1, 'https://ror.org/0089aaq22 College of Communications and Management in Poznan Wyższa Szkoła Komunikacji i Zarządzania w Poznaniu'),
(40226, 'https://ror.org/008cjy335', 'en', 1, 'https://ror.org/008cjy335 Scientific Research Institute of Experimental and Clinical Medicine Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠžŠ• Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠžŠ• Š‘Š®Š”Š–Š•Š¢ŠŠžŠ• ŠŠŠ£Š§ŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š­ŠšŠ”ŠŸŠ•Š Š˜ŠœŠ•ŠŠ¢ŠŠ›Š¬ŠŠžŠ™ И ŠšŠ›Š˜ŠŠ˜Š§Š•Š”ŠšŠžŠ™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ«'),
(40227, 'https://ror.org/008d8ke16', 'en', 1, 'https://ror.org/008d8ke16 Office of the Attorney General'),
(40228, 'https://ror.org/008dyv188', 'no_lang_code', 1, 'https://ror.org/008dyv188 EMS (Canada)'),
(40229, 'https://ror.org/008e3px62', 'en', 1, 'https://ror.org/008e3px62 Cloud County Community College'),
(40230, 'https://ror.org/008evvy56', 'en', 1, 'https://ror.org/008evvy56 Paris Junior College'),
(40231, 'https://ror.org/008f09676', 'en', 1, 'https://ror.org/008f09676 Thomas More College of Liberal Arts'),
(40232, 'https://ror.org/008js8n22', 'en', 1, 'https://ror.org/008js8n22 National Organization of Peer Educators'),
(40233, 'https://ror.org/008mypn13', 'fr', 1, 'https://ror.org/008mypn13 Direction de l’EpidĆ©miologie et de Lutte contre les Maladies'),
(40234, 'https://ror.org/008s6wa39', 'en', 1, 'https://ror.org/008s6wa39 Neosho County Community College'),
(40235, 'https://ror.org/008seds41', 'en', 1, 'https://ror.org/008seds41 Centre for the Study of Developing Societies'),
(40236, 'https://ror.org/008sszm38', 'en', 1, 'https://ror.org/008sszm38 M S Swaminathan Research Foundation'),
(40237, 'https://ror.org/008t9m017', 'en', 1, 'https://ror.org/008t9m017 Wallace Community College'),
(40238, 'https://ror.org/008yyr230', 'de', 1, 'https://ror.org/008yyr230 Till-Eulenspiegel-Museum Schƶppenstedt'),
(40239, 'https://ror.org/008zh9d08', 'en', 1, 'https://ror.org/008zh9d08 Maria College'),
(40240, 'https://ror.org/008zm7t63', 'en', 1, 'https://ror.org/008zm7t63 National Bureau of Statistics of China äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶ē»Ÿč®”å±€'),
(40241, 'https://ror.org/008zzz711', 'en', 1, 'https://ror.org/008zzz711 Somalia Water and Land Information'),
(40242, 'https://ror.org/00902tq54', 'no_lang_code', 1, 'https://ror.org/00902tq54 Stanvac Superon Group (India)'),
(40243, 'https://ror.org/0091z1a80', 'no_lang_code', 1, 'https://ror.org/0091z1a80 Porto Editora (Portugal)'),
(40244, 'https://ror.org/00926c151', 'pl', 1, 'https://ror.org/00926c151 Śląska Wyższa Szkoła Informatyczno-Medyczna'),
(40245, 'https://ror.org/00941sb79', 'en', 1, 'https://ror.org/00941sb79 Directorate-General for Neighbourhood and Enlargement Negotiations EuropƤische Nachbarschaftspolitik und Erweiterungsverhandlungen Politique europƩenne de voisinage et nƩgociations d''Ʃlargissement'),
(40246, 'https://ror.org/00946w275', 'pt', 1, 'https://ror.org/00946w275 Instituto Nacional de Estudos e Pesquisa'),
(40247, 'https://ror.org/0094z6w96', 'no_lang_code', 1, 'https://ror.org/0094z6w96 MTG Research (United Kingdom)'),
(40248, 'https://ror.org/0096pt020', 'it', 1, 'https://ror.org/0096pt020 Conservatorio Statale di Musica Gioachino Rossini'),
(40249, 'https://ror.org/00996c044', 'en', 1, 'https://ror.org/00996c044 Catholic University of Applied Social Sciences Katholische Hochschule für Sozialwesen Berlin'),
(40250, 'https://ror.org/0099s0h07', 'pt', 1, 'https://ror.org/0099s0h07 Instituto de Tecnologia de Alimentos'),
(40251, 'https://ror.org/0099xbw16', 'en', 1, 'https://ror.org/0099xbw16 Tobacco Research Institute é™¢ēƒŸč‰ē ”ē©¶ę‰€'),
(40252, 'https://ror.org/009asrq67', 'fr', 1, 'https://ror.org/009asrq67 Centre de Calcul El-Khawarizmi'),
(40253, 'https://ror.org/009ayk582', 'en', 1, 'https://ror.org/009ayk582 ICLEI - Local Governments for Sustainability Africa'),
(40254, 'https://ror.org/009cywx30', 'no_lang_code', 1, 'https://ror.org/009cywx30 VectraWave (France)'),
(40255, 'https://ror.org/009epmp89', 'en', 1, 'https://ror.org/009epmp89 College of Occupational Safety and Health Visoka Ŕkola za sigurnost'),
(40256, 'https://ror.org/009hwr222', 'no_lang_code', 1, 'https://ror.org/009hwr222 Pelum Association'),
(40257, 'https://ror.org/009p87514', 'en', 1, 'https://ror.org/009p87514 Mid-Atlantic Christian University'),
(40258, 'https://ror.org/009qtkb56', 'en', 1, 'https://ror.org/009qtkb56 Research Institute of Obstetrics and Gynecology named after D.O. Ott ŠŠ˜Š˜ Š°ŠŗŃƒŃˆŠµŃ€ŃŃ‚Š²Š° Šø гинекологии имени Š”. Šž. ŠžŃ‚Ń‚Š°'),
(40259, 'https://ror.org/009syd513', 'en', 1, 'https://ror.org/009syd513 Phillips Theological Seminary'),
(40260, 'https://ror.org/009t8dp88', 'no_lang_code', 1, 'https://ror.org/009t8dp88 Bluestar Silicones (France)'),
(40261, 'https://ror.org/009vsv572', 'no_lang_code', 1, 'https://ror.org/009vsv572 Kingston Technology (United States)'),
(40262, 'https://ror.org/009w3qm52', 'en', 1, 'https://ror.org/009w3qm52 Bishop Burton College'),
(40263, 'https://ror.org/009wrgz05', 'en', 1, 'https://ror.org/009wrgz05 Lighthouse Trust'),
(40264, 'https://ror.org/009xxkc85', 'en', 1, 'https://ror.org/009xxkc85 Carrington College'),
(40265, 'https://ror.org/009yat059', 'no_lang_code', 1, 'https://ror.org/009yat059 WADI Group (Egypt)'),
(40266, 'https://ror.org/00a0cz818', 'en', 1, 'https://ror.org/00a0cz818 Irish Institute of Clinical Neuroscience'),
(40267, 'https://ror.org/00a0y1f58', 'en', 1, 'https://ror.org/00a0y1f58 Hazelden Betty Ford Graduate School of Addiction Studies'),
(40268, 'https://ror.org/00a264q56', 'en', 1, 'https://ror.org/00a264q56 Academy for Jewish Religion California'),
(40269, 'https://ror.org/00a3cy009', 'en', 1, 'https://ror.org/00a3cy009 Phi Beta Kappa Society'),
(40270, 'https://ror.org/00a736592', 'en', 1, 'https://ror.org/00a736592 Design School Kolding Designskolen Kolding'),
(40271, 'https://ror.org/00a78zp32', 'en', 1, 'https://ror.org/00a78zp32 Irish American Cultural Institute'),
(40272, 'https://ror.org/00a7fhh63', 'no_lang_code', 1, 'https://ror.org/00a7fhh63 Zlatarna Celje (Slovenia)'),
(40273, 'https://ror.org/00a9jcw35', 'en', 1, 'https://ror.org/00a9jcw35 East Avenue Medical Center'),
(40274, 'https://ror.org/00aa5f051', 'no_lang_code', 1, 'https://ror.org/00aa5f051 Unum Group (United States)'),
(40275, 'https://ror.org/00aac9t94', 'fr', 1, 'https://ror.org/00aac9t94 Special Military School of Saint-Cyr Ɖcole SpĆ©ciale Militaire de Saint-Cyr'),
(40276, 'https://ror.org/00aak0969', 'en', 1, 'https://ror.org/00aak0969 Pennsylvania Office of Attorney General'),
(40277, 'https://ror.org/00ab9fg88', 'en', 1, 'https://ror.org/00ab9fg88 Russian Cancer Research Center NN Blokhin Российский онкологический Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр им. Š. Š. Блохина'),
(40278, 'https://ror.org/00acd3d73', 'tr', 1, 'https://ror.org/00acd3d73 Konya Numune Hastanesi'),
(40279, 'https://ror.org/00af1mn38', 'no_lang_code', 1, 'https://ror.org/00af1mn38 ERA Arqueologia'),
(40280, 'https://ror.org/00ag9jk61', 'no_lang_code', 1, 'https://ror.org/00ag9jk61 Cabot (United States)'),
(40281, 'https://ror.org/00agvd592', 'en', 1, 'https://ror.org/00agvd592 Salem Community College'),
(40282, 'https://ror.org/00ahnj653', 'no_lang_code', 1, 'https://ror.org/00ahnj653 Hindustan Aeronautics Limited (India) ą¤¹ą¤æą¤‚ą¤¦ą„ą¤øą„ą¤¤ą¤¾ą¤Ø ą¤ą¤°ą„‹ą¤Øą„‰ą¤Ÿą¤æą¤•ą„ą¤ø ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(40283, 'https://ror.org/00ajckn66', 'en', 1, 'https://ror.org/00ajckn66 European Central Bank EuropƤischen Zentralbank'),
(40284, 'https://ror.org/00ajg8t71', 'en', 1, 'https://ror.org/00ajg8t71 Korean Educational Development Institute ķ•œźµ­źµģœ”ź°œė°œģ›'),
(40285, 'https://ror.org/00amea583', 'en', 1, 'https://ror.org/00amea583 Alexander College'),
(40286, 'https://ror.org/00amzdz67', 'no_lang_code', 1, 'https://ror.org/00amzdz67 ASSAB Pacific (Singapore)'),
(40287, 'https://ror.org/00anh1e03', 'en', 1, 'https://ror.org/00anh1e03 Ethiopian Development Research Institute'),
(40288, 'https://ror.org/00apb0c64', 'en', 1, 'https://ror.org/00apb0c64 All-Russian Research Institute Fisheries and Oceanography ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° России Šø океанографии'),
(40289, 'https://ror.org/00ar3n458', 'en', 1, 'https://ror.org/00ar3n458 College of Dental Surgeons of Hong Kong'),
(40290, 'https://ror.org/00attk912', 'no_lang_code', 1, 'https://ror.org/00attk912 Physiogenex (France)'),
(40291, 'https://ror.org/00atw9e51', 'no_lang_code', 1, 'https://ror.org/00atw9e51 WaterNet Trust'),
(40292, 'https://ror.org/00avcrs60', 'es', 1, 'https://ror.org/00avcrs60 Revista Conamed'),
(40293, 'https://ror.org/00avq9860', 'en', 1, 'https://ror.org/00avq9860 Korea Rural Economic Institute ķ•œźµ­ ė†ģ“Œ 경제 연구원'),
(40294, 'https://ror.org/00awpt414', 'en', 1, 'https://ror.org/00awpt414 Mitchell Community College'),
(40295, 'https://ror.org/00axrng91', 'en', 1, 'https://ror.org/00axrng91 Shetland Islands Council'),
(40296, 'https://ror.org/00b2pbe02', 'en', 1, 'https://ror.org/00b2pbe02 Florida Keys Community College'),
(40297, 'https://ror.org/00b3tsf98', 'en', 1, 'https://ror.org/00b3tsf98 Minisiteri y''Uburezi Ministry of Education MinistĆØre de l''Ɖducation'),
(40298, 'https://ror.org/00b6wzg36', 'en', 1, 'https://ror.org/00b6wzg36 Acupuncture & Integrative Medicine College'),
(40299, 'https://ror.org/00b986q94', 'no_lang_code', 1, 'https://ror.org/00b986q94 Optigo Networks (Canada)'),
(40300, 'https://ror.org/00b9z5510', 'en', 1, 'https://ror.org/00b9z5510 Old Salem Museums and Gardens'),
(40301, 'https://ror.org/00babnh83', 'en', 1, 'https://ror.org/00babnh83 Nature Conservation Research Centre'),
(40302, 'https://ror.org/00basdj35', 'no_lang_code', 1, 'https://ror.org/00basdj35 Lexmark (United States)'),
(40303, 'https://ror.org/00bav2821', 'en', 1, 'https://ror.org/00bav2821 University Ecclesiastical Academy of Thessaloniki Ī‘Ī½ĻŽĻ„Ī±Ļ„Ī· Ī•ĪŗĪŗĪ»Ī·ĻƒĪ¹Ī±ĻƒĻ„Ī¹ĪŗĪ® ΑκαΓημία Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(40304, 'https://ror.org/00bbdtr88', 'en', 1, 'https://ror.org/00bbdtr88 Texas Workforce Commission'),
(40305, 'https://ror.org/00bbewq28', 'en', 1, 'https://ror.org/00bbewq28 Department of Economic and Community Development'),
(40306, 'https://ror.org/00bbt0744', 'en', 1, 'https://ror.org/00bbt0744 Polar Geophysical Institute ŠŸŠ¾Š»ŃŃ€Š½Ń‹Š¹ геофизический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(40307, 'https://ror.org/00bcgjj54', 'en', 1, 'https://ror.org/00bcgjj54 The Culinary Institute of America'),
(40308, 'https://ror.org/00bf78a39', 'en', 1, 'https://ror.org/00bf78a39 Bancroft School of Massage Therapy'),
(40309, 'https://ror.org/00bgbmf24', 'en', 1, 'https://ror.org/00bgbmf24 Birthingway College of Midwifery'),
(40310, 'https://ror.org/00bgchx11', 'en', 1, 'https://ror.org/00bgchx11 Blue Cross Blue Shield of Massachusetts'),
(40311, 'https://ror.org/00bhv3b03', 'en', 1, 'https://ror.org/00bhv3b03 Institute of Circulatory and Respiratory Health'),
(40312, 'https://ror.org/00bj1nn86', 'en', 1, 'https://ror.org/00bj1nn86 National Science Digital Library'),
(40313, 'https://ror.org/00bp00b85', 'es', 1, 'https://ror.org/00bp00b85 Instituto GeogrƔfico Nacional'),
(40314, 'https://ror.org/00bpw1b12', 'fr', 1, 'https://ror.org/00bpw1b12 Ɖcole des Avocats Nord-Ouest'),
(40315, 'https://ror.org/00br84389', 'en', 1, 'https://ror.org/00br84389 Salter School'),
(40316, 'https://ror.org/00brgvc50', 'en', 1, 'https://ror.org/00brgvc50 Standing Rock Indian Reservation'),
(40317, 'https://ror.org/00bv1cj87', 'en', 1, 'https://ror.org/00bv1cj87 Indian Council of Philosophical Research'),
(40318, 'https://ror.org/00bvaaw52', 'no_lang_code', 1, 'https://ror.org/00bvaaw52 Infusion (South Africa)'),
(40319, 'https://ror.org/00bvew379', 'pt', 1, 'https://ror.org/00bvew379 Faculdade de Administração Ciências Educação e Letras'),
(40320, 'https://ror.org/00bvt4k03', 'no_lang_code', 1, 'https://ror.org/00bvt4k03 Niramaya Hospital'),
(40321, 'https://ror.org/00bwfrq04', 'no_lang_code', 1, 'https://ror.org/00bwfrq04 Chengdu Institute of Information Technology (China) äø­ē§‘é™¢ęˆéƒ½äæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(40322, 'https://ror.org/00byjv668', 'fr', 1, 'https://ror.org/00byjv668 Centre Technique des Industries Agroalimentaires'),
(40323, 'https://ror.org/00c0gj024', 'no_lang_code', 1, 'https://ror.org/00c0gj024 Research Square (United States)'),
(40324, 'https://ror.org/00c1pz865', 'en', 1, 'https://ror.org/00c1pz865 International Academy of Design & Technology'),
(40325, 'https://ror.org/00c27rz48', 'en', 1, 'https://ror.org/00c27rz48 London School of Commerce'),
(40326, 'https://ror.org/00c3bg218', 'en', 1, 'https://ror.org/00c3bg218 China Europe International Business School 中欧国际巄商学院'),
(40327, 'https://ror.org/00c3ktd57', 'fr', 1, 'https://ror.org/00c3ktd57 Laboratoire de PhysioMƩdecine MolƩculaire'),
(40328, 'https://ror.org/00c4ccg58', 'fr', 1, 'https://ror.org/00c4ccg58 Institut Polytechnique Rural de Formation et de Recherche AppliquƩe'),
(40329, 'https://ror.org/00c62es15', 'fr', 1, 'https://ror.org/00c62es15 Ɖcole SupĆ©rieure d''Arts & MĆ©dias de Caen/Cherbourg'),
(40330, 'https://ror.org/00c6xwj41', 'en', 1, 'https://ror.org/00c6xwj41 Institute of Chemistry and Chemical Technology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Šø химической технологии'),
(40331, 'https://ror.org/00c70d758', 'en', 1, 'https://ror.org/00c70d758 Instituto Nacional de CiĆŖncia e Tecnologia para Engenharia de Software National Institute of Science and Technology for Software Engineering'),
(40332, 'https://ror.org/00c9gth79', 'en', 1, 'https://ror.org/00c9gth79 Astronomisches Observatorium Triest Observatoire astronomique de trieste Osservatorio Astronomico di Trieste Trieste Astronomical Observatory'),
(40333, 'https://ror.org/00caave48', 'en', 1, 'https://ror.org/00caave48 National Intelligence Service ėŒ€ķ•œėÆ¼źµ­źµ­ź°€ģ •ė³“ģ›'),
(40334, 'https://ror.org/00cdwva22', 'en', 1, 'https://ror.org/00cdwva22 All Nations University'),
(40335, 'https://ror.org/00cemh325', 'en', 1, 'https://ror.org/00cemh325 Sanford Consortium for Regenerative Medicine'),
(40336, 'https://ror.org/00cfqsr23', 'en', 1, 'https://ror.org/00cfqsr23 Karnataka Fisheries Development Corporation'),
(40337, 'https://ror.org/00cgdyn62', 'pt', 1, 'https://ror.org/00cgdyn62 Ministério da Administração Interna'),
(40338, 'https://ror.org/00ck0vh11', 'en', 1, 'https://ror.org/00ck0vh11 College of Westchester'),
(40339, 'https://ror.org/00cmb1w67', 'no_lang_code', 1, 'https://ror.org/00cmb1w67 Rodin Therapeutics (United States)'),
(40340, 'https://ror.org/00cmss526', 'no_lang_code', 1, 'https://ror.org/00cmss526 Gmarketing (Pakistan)'),
(40341, 'https://ror.org/00cn65j92', 'no_lang_code', 1, 'https://ror.org/00cn65j92 Bomarts Farms (Ghana)'),
(40342, 'https://ror.org/00cpstt72', 'en', 1, 'https://ror.org/00cpstt72 Kanyakumari Government Medical College ą®•ą®©ąÆą®©ą®æą®Æą®¾ą®•ąÆą®®ą®°ą®æ ą®…ą®°ą®šąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(40343, 'https://ror.org/00cq3cz72', 'en', 1, 'https://ror.org/00cq3cz72 National Research Centre on Plant Biotechnology ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ पादप ą¤œą„ˆą¤µą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ā€ą¤¦ą„ą¤°'),
(40344, 'https://ror.org/00cty0112', 'no_lang_code', 1, 'https://ror.org/00cty0112 Takasago (Japan) é«˜ē ‚é¦™ę–™å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(40345, 'https://ror.org/00cv86729', 'en', 1, 'https://ror.org/00cv86729 Council on Competitive Government'),
(40346, 'https://ror.org/00cwdhv97', 'no_lang_code', 1, 'https://ror.org/00cwdhv97 China North Industries Group Corporation (China) äø­å›½åŒ—ę–¹å·„äøšå…¬åø'),
(40347, 'https://ror.org/00cwxbd63', 'en', 1, 'https://ror.org/00cwxbd63 Arizona School of Acupuncture and Oriental Medicine'),
(40348, 'https://ror.org/00cxqcr87', 'en', 1, 'https://ror.org/00cxqcr87 Christian Heritage College'),
(40349, 'https://ror.org/00cy2ef80', 'pt', 1, 'https://ror.org/00cy2ef80 Centro UniversitƔrio Metodista IPA'),
(40350, 'https://ror.org/00cztqj29', 'en', 1, 'https://ror.org/00cztqj29 ACS Medical College and Hospital'),
(40351, 'https://ror.org/00d1x1168', 'en', 1, 'https://ror.org/00d1x1168 Eurasia Foundation'),
(40352, 'https://ror.org/00d4h7g98', 'en', 1, 'https://ror.org/00d4h7g98 Research Institute for Astronomy and Astrophysics of Maragh'),
(40353, 'https://ror.org/00d4qwn05', 'no_lang_code', 1, 'https://ror.org/00d4qwn05 Meridian (Russia) ŠœŠµŃ€ŠøŠ“ŠøŠ°Š½'),
(40354, 'https://ror.org/00d4y9q10', 'no_lang_code', 1, 'https://ror.org/00d4y9q10 MAKGABANENG'),
(40355, 'https://ror.org/00d7a9n23', 'es', 1, 'https://ror.org/00d7a9n23 Consejo Superior Universitario Centroamericano'),
(40356, 'https://ror.org/00d7hze96', 'en', 1, 'https://ror.org/00d7hze96 ComitƩ international olympique International Olympic Committee'),
(40357, 'https://ror.org/00d7zep18', 'en', 1, 'https://ror.org/00d7zep18 Southern African NGO Network'),
(40358, 'https://ror.org/00da5h096', 'sl', 1, 'https://ror.org/00da5h096 Å olski Center Å kofja Loka'),
(40359, 'https://ror.org/00daqep21', 'pt', 1, 'https://ror.org/00daqep21 Sporting Clube Vasco da Gama'),
(40360, 'https://ror.org/00davj510', 'en', 1, 'https://ror.org/00davj510 Canadian Council of Professional Engineers IngƩnieurs Canada'),
(40361, 'https://ror.org/00ddr8x91', 'en', 1, 'https://ror.org/00ddr8x91 Fund for Armenian Relief'),
(40362, 'https://ror.org/00ddw9x26', 'fr', 1, 'https://ror.org/00ddw9x26 Direction GƩnƩrale de la MƩtƩorologie'),
(40363, 'https://ror.org/00derzd22', 'en', 1, 'https://ror.org/00derzd22 Instituto Nacional de CiĆŖncia e Tecnologia FotĆ“nica para ComunicaƧƵes Ɠpticas National Institute of Photonic Science and Technology for Optical Communication'),
(40364, 'https://ror.org/00dfjma76', 'en', 1, 'https://ror.org/00dfjma76 American Council on Germany'),
(40365, 'https://ror.org/00dfkrb12', 'en', 1, 'https://ror.org/00dfkrb12 Rio Grande Bible Institute'),
(40366, 'https://ror.org/00dhvr506', 'no_lang_code', 1, 'https://ror.org/00dhvr506 Novartis (India)'),
(40367, 'https://ror.org/00djdkd68', 'en', 1, 'https://ror.org/00djdkd68 Daejeon Theological University'),
(40368, 'https://ror.org/00dnfj623', 'en', 1, 'https://ror.org/00dnfj623 Hanns Eisler College or Academy of Music Hochschule für Musik Hanns Eisler'),
(40369, 'https://ror.org/00dqega85', 'en', 1, 'https://ror.org/00dqega85 Istituto di Fisica Applicata Nello Carrara Nello Carrara Institute of Applied Physics'),
(40370, 'https://ror.org/00dqs1064', 'fr', 1, 'https://ror.org/00dqs1064 Centre Marocain de Production Propre'),
(40371, 'https://ror.org/00drbxw02', 'fr', 1, 'https://ror.org/00drbxw02 PƓle SupƩrieur d''Enseignement Artistique of Paris Boulogne-Billancourt'),
(40372, 'https://ror.org/00drp2z27', 'en', 1, 'https://ror.org/00drp2z27 LighterLife'),
(40373, 'https://ror.org/00drv3378', 'en', 1, 'https://ror.org/00drv3378 Bį»™ GiĆ”o DỄc vĆ  ĐƠo tįŗ”o Ministry of Education and Training'),
(40374, 'https://ror.org/00dse3307', 'en', 1, 'https://ror.org/00dse3307 Tunisia Polytechnic School Ɖcole Polytechnique de Tunisie المدرسة Ų§Ł„ŲŖŁˆŁ†Ų³ŁŠŲ© Ł„Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖā€Ž'),
(40375, 'https://ror.org/00dt8xx11', 'en', 1, 'https://ror.org/00dt8xx11 International Center for Journalists'),
(40376, 'https://ror.org/00dv5qk90', 'en', 1, 'https://ror.org/00dv5qk90 Morristown High School'),
(40377, 'https://ror.org/00dwde739', 'no_lang_code', 1, 'https://ror.org/00dwde739 OREGA Biotech (France)'),
(40378, 'https://ror.org/00dyead60', 'en', 1, 'https://ror.org/00dyead60 Centre de Recherche et des Technologies de l''Energie Research and Technology Center of Energy'),
(40379, 'https://ror.org/00dzptj80', 'en', 1, 'https://ror.org/00dzptj80 Yokohama Soei University ęØŖęµœå‰µč‹±ēŸ­ęœŸå¤§å­¦'),
(40380, 'https://ror.org/00e0kg276', 'en', 1, 'https://ror.org/00e0kg276 Sentara College of Health Sciences'),
(40381, 'https://ror.org/00e0p8s95', 'en', 1, 'https://ror.org/00e0p8s95 Charlotte School of Law'),
(40382, 'https://ror.org/00e0ttj68', 'en', 1, 'https://ror.org/00e0ttj68 Bundesministerium für wirtschaftliche Zusammenarbeit und Entwicklung Federal Ministry of Economic Cooperation and Development'),
(40383, 'https://ror.org/00e261632', 'en', 1, 'https://ror.org/00e261632 Gujarat Institute of Development Research'),
(40384, 'https://ror.org/00e2fqy76', 'no_lang_code', 1, 'https://ror.org/00e2fqy76 BMW of North America (United States)'),
(40385, 'https://ror.org/00e3ms285', 'en', 1, 'https://ror.org/00e3ms285 Paterson Public Schools'),
(40386, 'https://ror.org/00e43q278', 'no_lang_code', 1, 'https://ror.org/00e43q278 Just Ecology (United Kingdom)'),
(40387, 'https://ror.org/00e477a69', 'en', 1, 'https://ror.org/00e477a69 Hsin Sheng College of Medical Care and Management ę–°ē”Ÿé†«č­·ē®”ē†å°ˆē§‘å­øę ”'),
(40388, 'https://ror.org/00e736r60', 'en', 1, 'https://ror.org/00e736r60 Hope Worldwide'),
(40389, 'https://ror.org/00e9s5n07', 'no_lang_code', 1, 'https://ror.org/00e9s5n07 Starmet Corporation (United States)'),
(40390, 'https://ror.org/00ea8xx02', 'en', 1, 'https://ror.org/00ea8xx02 Merritt College'),
(40391, 'https://ror.org/00ec74h89', 'en', 1, 'https://ror.org/00ec74h89 Mater Dei High School'),
(40392, 'https://ror.org/00ed0hz84', 'en', 1, 'https://ror.org/00ed0hz84 Henan Institute of Education ę²³å—ę•™č‚²å­¦é™¢'),
(40393, 'https://ror.org/00ed6fq07', 'en', 1, 'https://ror.org/00ed6fq07 AIDS Foundation of South Africa'),
(40394, 'https://ror.org/00ed89w50', 'en', 1, 'https://ror.org/00ed89w50 Hanyoung Theological University ķ•œģ˜ģ‹ ķ•™ėŒ€ķ•™źµ'),
(40395, 'https://ror.org/00edfym28', 'no_lang_code', 1, 'https://ror.org/00edfym28 Bharat Electronics (India) भारत ą¤‡ą¤²ą„‡ą¤•ą„ą¤Ÿą„ą¤°ą„‰ą¤Øą¤æą¤• ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(40396, 'https://ror.org/00ef10m46', 'en', 1, 'https://ror.org/00ef10m46 Lincoln University - California'),
(40397, 'https://ror.org/00ek1m439', 'en', 1, 'https://ror.org/00ek1m439 Utah College of Dental Hygiene'),
(40398, 'https://ror.org/00ekjkp43', 'en', 1, 'https://ror.org/00ekjkp43 Santa Ana College'),
(40399, 'https://ror.org/00emv3338', 'de', 1, 'https://ror.org/00emv3338 Archiv der Hansestadt Wismar'),
(40400, 'https://ror.org/00en31398', 'pt', 1, 'https://ror.org/00en31398 Centro Cultural Vila Flor'),
(40401, 'https://ror.org/00enahz60', 'no_lang_code', 1, 'https://ror.org/00enahz60 Bharat Forge (India)'),
(40402, 'https://ror.org/00endrs84', 'pt', 1, 'https://ror.org/00endrs84 Externato da Luz'),
(40403, 'https://ror.org/00eqbn006', 'no_lang_code', 1, 'https://ror.org/00eqbn006 GVK (India)'),
(40404, 'https://ror.org/00ermve21', 'en', 1, 'https://ror.org/00ermve21 Conservatorio Antonio Vivaldi Conservatorio Di Musica A. Vivaldi'),
(40405, 'https://ror.org/00erx8914', 'en', 1, 'https://ror.org/00erx8914 All-Russian Scientific Research Institute of Fundamental and Applied Parasitology of Animals and Plants named after K.I. Skryabin Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ Šø приклаГной паразитологии животных Šø растений имени К. И. Š”ŠŗŃ€ŃŠ±ŠøŠ½Š°'),
(40406, 'https://ror.org/00et21g06', 'en', 1, 'https://ror.org/00et21g06 All-Russian Research Institute of Agricultural Biotechnology Russian Academy of Agricultural Sciences Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ биотехнологии [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(40407, 'https://ror.org/00evpm282', 'en', 1, 'https://ror.org/00evpm282 Workplace Health, Safety and Compensation Commission'),
(40408, 'https://ror.org/00ew5at92', 'en', 1, 'https://ror.org/00ew5at92 Department of the Premier and Cabinet'),
(40409, 'https://ror.org/00ewbej21', 'en', 1, 'https://ror.org/00ewbej21 Gorbatov''s All-Russian Meat Research Institute Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŃŃŠ½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø им. Š’.М. Горбатова'),
(40410, 'https://ror.org/00ewfne71', 'en', 1, 'https://ror.org/00ewfne71 Metropolitan University Univerzitet Metropolitan'),
(40411, 'https://ror.org/00exehz38', 'no_lang_code', 1, 'https://ror.org/00exehz38 Handok (South Korea) ķ•œė…'),
(40412, 'https://ror.org/00exxep57', 'no_lang_code', 1, 'https://ror.org/00exxep57 Claritas Genomics (United States)'),
(40413, 'https://ror.org/00ezwn594', 'en', 1, 'https://ror.org/00ezwn594 Ministry of Natural Resources and Tourism Wizara ya Maliasili na Utalii'),
(40414, 'https://ror.org/00f21s284', 'en', 1, 'https://ror.org/00f21s284 Office of the Chief Scientist ×œ×©×›×Ŗ המדען הראשי'),
(40415, 'https://ror.org/00f4mz521', 'en', 1, 'https://ror.org/00f4mz521 Institute of Strength Physics and Materials Science Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики прочности Šø Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Š”Šž Š ŠŠ'),
(40416, 'https://ror.org/00f5afq73', 'en', 1, 'https://ror.org/00f5afq73 Rogue Community College'),
(40417, 'https://ror.org/00f975e16', 'no_lang_code', 1, 'https://ror.org/00f975e16 Genesys (United States)'),
(40418, 'https://ror.org/00f9c7v42', 'de', 1, 'https://ror.org/00f9c7v42 Staatsgalerie Stuttgart'),
(40419, 'https://ror.org/00fa3cy95', 'en', 1, 'https://ror.org/00fa3cy95 Kenya AIDS NGOs Consortium'),
(40420, 'https://ror.org/00fa9v295', 'en', 1, 'https://ror.org/00fa9v295 Medway School of Pharmacy'),
(40421, 'https://ror.org/00fd94531', 'no_lang_code', 1, 'https://ror.org/00fd94531 OsseoMatrix (France)'),
(40422, 'https://ror.org/00fdhj025', 'en', 1, 'https://ror.org/00fdhj025 Bangladesh Air Force Shaheen College ą¦¬ą¦æą¦ą¦ą¦« শাহীন ą¦•ą¦²ą§‡ą¦œ ঢাকা'),
(40423, 'https://ror.org/00fdnsr88', 'en', 1, 'https://ror.org/00fdnsr88 Strayer University'),
(40424, 'https://ror.org/00fdv2038', 'en', 1, 'https://ror.org/00fdv2038 Pennsylvania Housing Finance Agency'),
(40425, 'https://ror.org/00fe7gj91', 'no_lang_code', 1, 'https://ror.org/00fe7gj91 Excellerate (Australia)'),
(40426, 'https://ror.org/00fgkb535', 'en', 1, 'https://ror.org/00fgkb535 Charleston School of Law'),
(40427, 'https://ror.org/00fhbr831', 'en', 1, 'https://ror.org/00fhbr831 Triangle'),
(40428, 'https://ror.org/00fhten74', 'en', 1, 'https://ror.org/00fhten74 Pukhov Institute for Modelling in Energy Engineering Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š¼Š¾Š“ŠµŠ»ŃŽŠ²Š°Š½Š½Ń в енергетиці ім. Š“.Š„. ŠŸŃƒŃ…Š¾Š²Š° Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š¼Š¾Š“ŠµŠ»ŠøŃ€Š¾Š²Š°Š½ŠøŃ в ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠµ им. Š“.Š•. ŠŸŃƒŃ…Š¾Š²Š°'),
(40429, 'https://ror.org/00fj6he94', 'en', 1, 'https://ror.org/00fj6he94 Alberta Bible College'),
(40430, 'https://ror.org/00fnqey70', 'de', 1, 'https://ror.org/00fnqey70 Stadtmuseum Penzberg'),
(40431, 'https://ror.org/00fszdj92', 'en', 1, 'https://ror.org/00fszdj92 Organization for Women in Science for the Developing World'),
(40432, 'https://ror.org/00fvdng26', 'no_lang_code', 1, 'https://ror.org/00fvdng26 Vedanta Resources (India)'),
(40433, 'https://ror.org/00fvxtb73', 'en', 1, 'https://ror.org/00fvxtb73 Abbaye de mount angel Mount Angel Abbey'),
(40434, 'https://ror.org/00fw4m615', 'no_lang_code', 1, 'https://ror.org/00fw4m615 Cablevision (United States)'),
(40435, 'https://ror.org/00fwg7016', 'pl', 1, 'https://ror.org/00fwg7016 Gdansk Management College Wyższa Szkoła Zarządzania w Gdańsku'),
(40436, 'https://ror.org/00fy7kr67', 'en', 1, 'https://ror.org/00fy7kr67 Institut für Integrative und Experimentelle Genomik Institute for Integrative and Experimental Genomics'),
(40437, 'https://ror.org/00fyzzw59', 'en', 1, 'https://ror.org/00fyzzw59 Ministry of Agriculture'),
(40438, 'https://ror.org/00fzs3g26', 'no_lang_code', 1, 'https://ror.org/00fzs3g26 China Tobacco Guangxi Industrial (China) å¹æč„æäø­ēƒŸå·„äøšęœ‰é™č“£ä»»å…¬åø'),
(40439, 'https://ror.org/00g07sz63', 'de', 1, 'https://ror.org/00g07sz63 SRH Hochschule Heidelberg'),
(40440, 'https://ror.org/00g11es29', 'en', 1, 'https://ror.org/00g11es29 SMK University of Applied Social Sciences Socialiniu mokslu kolegija'),
(40441, 'https://ror.org/00g1a3p24', 'en', 1, 'https://ror.org/00g1a3p24 Saudi Commission for Health Specialties Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© للتخصصات Ų§Ł„ŲµŲ­ŁŠŲ©'),
(40442, 'https://ror.org/00g218c19', 'fr', 1, 'https://ror.org/00g218c19 Institut National de la Recherche Agronomique d''AlgƩrie'),
(40443, 'https://ror.org/00g4bcb66', 'en', 1, 'https://ror.org/00g4bcb66 Kazan Scientific Center Казанский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š ŠŠ'),
(40444, 'https://ror.org/00g5dc702', 'no_lang_code', 1, 'https://ror.org/00g5dc702 OncoMed (United States)'),
(40445, 'https://ror.org/00ga0xw04', 'en', 1, 'https://ror.org/00ga0xw04 Research and Studies Telecommunications Centre'),
(40446, 'https://ror.org/00gbrgx34', 'en', 1, 'https://ror.org/00gbrgx34 National Institute of Construction Management and Research'),
(40447, 'https://ror.org/00gck2e56', 'pt', 1, 'https://ror.org/00gck2e56 Faculdade de Desenvolvimento do Rio Grande do Sul'),
(40448, 'https://ror.org/00gfqem49', 'no_lang_code', 1, 'https://ror.org/00gfqem49 Kusamotu & Kusamotu'),
(40449, 'https://ror.org/00ggjh491', 'en', 1, 'https://ror.org/00ggjh491 National Youth Policy Institute ķ•œźµ­ģ²­ģ†Œė…„ģ •ģ±…ģ—°źµ¬ģ›'),
(40450, 'https://ror.org/00gkkv889', 'en', 1, 'https://ror.org/00gkkv889 Development Research Center of the State Council å›½åŠ”é™¢å‘å±•ē ”ē©¶äø­åæƒ'),
(40451, 'https://ror.org/00gkm5b90', 'en', 1, 'https://ror.org/00gkm5b90 University College of Tourism and Ecology Wyższa Szkoła Turystyki i Ekologii w Suchej Beskidzkiej'),
(40452, 'https://ror.org/00gm3kb02', 'en', 1, 'https://ror.org/00gm3kb02 North Georgia Technical College'),
(40453, 'https://ror.org/00gn1hm60', 'pl', 1, 'https://ror.org/00gn1hm60 GnieÅŗnieńska Szkoła Wyższa Milenium'),
(40454, 'https://ror.org/00gn6h668', 'en', 1, 'https://ror.org/00gn6h668 Rajarajeswari Medical College and Hospital'),
(40455, 'https://ror.org/00gpmge60', 'en', 1, 'https://ror.org/00gpmge60 Cowley Community College'),
(40456, 'https://ror.org/00gprdj76', 'en', 1, 'https://ror.org/00gprdj76 Latin American Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Латинской Америки'),
(40457, 'https://ror.org/00gqx0331', 'en', 1, 'https://ror.org/00gqx0331 Research Complex at Harwell'),
(40458, 'https://ror.org/00gream49', 'no_lang_code', 1, 'https://ror.org/00gream49 DHL (United States)'),
(40459, 'https://ror.org/00grm6006', 'en', 1, 'https://ror.org/00grm6006 Uganda Blood Transfusion Service'),
(40460, 'https://ror.org/00gs3en43', 'en', 1, 'https://ror.org/00gs3en43 Carolina Christian College'),
(40461, 'https://ror.org/00gs59456', 'no_lang_code', 1, 'https://ror.org/00gs59456 CorticoMetrics (United States)'),
(40462, 'https://ror.org/00gvr0r24', 'no_lang_code', 1, 'https://ror.org/00gvr0r24 Audionamix (France)'),
(40463, 'https://ror.org/00gw7hd69', 'fr', 1, 'https://ror.org/00gw7hd69 Observatoire National sur les Effets du RƩchauffement Climatique'),
(40464, 'https://ror.org/00gwhv923', 'no_lang_code', 1, 'https://ror.org/00gwhv923 Hasbro (United States)'),
(40465, 'https://ror.org/00gy7qs50', 'en', 1, 'https://ror.org/00gy7qs50 Southport College'),
(40466, 'https://ror.org/00gyf5557', 'en', 1, 'https://ror.org/00gyf5557 Swiss School of Archaeology in Greece Ελβετική Αρχαιολογική Σχολή ĻƒĻ„Ī·Ī½ ΕλλάΓα'),
(40467, 'https://ror.org/00gyygy85', 'en', 1, 'https://ror.org/00gyygy85 JRE Group of Institutions'),
(40468, 'https://ror.org/00h0gj516', 'en', 1, 'https://ror.org/00h0gj516 Agri Biotech Foundation'),
(40469, 'https://ror.org/00h1xaa75', 'no_lang_code', 1, 'https://ror.org/00h1xaa75 AstraZeneca (South Korea) ķ•œźµ­ģ•„ģŠ¤ķŠøė¼ģ œė„¤ģ¹“'),
(40470, 'https://ror.org/00h2bx184', 'en', 1, 'https://ror.org/00h2bx184 Forsvarsakademiet Royal Danish Defence College'),
(40471, 'https://ror.org/00h3byr70', 'en', 1, 'https://ror.org/00h3byr70 New Jersey Department of Labor and Workforce Development'),
(40472, 'https://ror.org/00h3xj803', 'no_lang_code', 1, 'https://ror.org/00h3xj803 Coal India (India) ą¤•ą„‹ą¤² इंऔिया ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(40473, 'https://ror.org/00h6vxx49', 'en', 1, 'https://ror.org/00h6vxx49 U.S. Green Building Council'),
(40474, 'https://ror.org/00h90tg62', 'en', 1, 'https://ror.org/00h90tg62 City College'),
(40475, 'https://ror.org/00h9jch39', 'en', 1, 'https://ror.org/00h9jch39 Carey Baptist College'),
(40476, 'https://ror.org/00h9jx107', 'en', 1, 'https://ror.org/00h9jx107 Institute of Applied Mathematics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной математики Š”Š’Šž Š ŠŠ'),
(40477, 'https://ror.org/00hagsh42', 'en', 1, 'https://ror.org/00hagsh42 Wuhan City Chinese Medicine Hospital ę­¦ę±‰åø‚äø­å›½äø­åŒ»åŒ»é™¢'),
(40478, 'https://ror.org/00hbzbs53', 'no_lang_code', 1, 'https://ror.org/00hbzbs53 MTS Systems (United States)'),
(40479, 'https://ror.org/00hc57b89', 'en', 1, 'https://ror.org/00hc57b89 Solid Wood Innovation'),
(40480, 'https://ror.org/00hcabt14', 'no_lang_code', 1, 'https://ror.org/00hcabt14 Light for Life Technologies (France)'),
(40481, 'https://ror.org/00hcr7c15', 'en', 1, 'https://ror.org/00hcr7c15 Conseil ouest et centre africain pour la recherche et le dƩveloppement agricoles West and Central African Council for Agricultural Research and Development'),
(40482, 'https://ror.org/00hd92c69', 'en', 1, 'https://ror.org/00hd92c69 Central Institute of Plastics Engineering and Technology'),
(40483, 'https://ror.org/00hf72d13', 'en', 1, 'https://ror.org/00hf72d13 Boonton Public Schools'),
(40484, 'https://ror.org/00hfszj21', 'en', 1, 'https://ror.org/00hfszj21 Institute of Catalysis and Petrochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ катализа Šø нефтехимии'),
(40485, 'https://ror.org/00hgavv49', 'en', 1, 'https://ror.org/00hgavv49 Wallace Community College Selma'),
(40486, 'https://ror.org/00hgmwb30', 'en', 1, 'https://ror.org/00hgmwb30 Institute of Macromolecular Compounds Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Ń‹Ń… соеГинений Российской акаГемии наук'),
(40487, 'https://ror.org/00hh4c656', 'en', 1, 'https://ror.org/00hh4c656 Southwest Mississippi Community College'),
(40488, 'https://ror.org/00hm0mb83', 'en', 1, 'https://ror.org/00hm0mb83 Bramson ORT College'),
(40489, 'https://ror.org/00hmhc458', 'en', 1, 'https://ror.org/00hmhc458 Montcalm Community College'),
(40490, 'https://ror.org/00hpff311', 'en', 1, 'https://ror.org/00hpff311 Council of Yukon First Nations'),
(40491, 'https://ror.org/00hqa1k37', 'en', 1, 'https://ror.org/00hqa1k37 California Christian College'),
(40492, 'https://ror.org/00hqbvm92', 'en', 1, 'https://ror.org/00hqbvm92 Oxford Dental College and Hospital'),
(40493, 'https://ror.org/00hrx1t96', 'fr', 1, 'https://ror.org/00hrx1t96 SociĆ©tĆ© Nationale d’Études du DĆ©troit de Gibraltar');
INSERT INTO `rors` VALUES
(40494, 'https://ror.org/00hvga705', 'en', 1, 'https://ror.org/00hvga705 Baki Ali Neft Məktəbi Baku Higher Oil School'),
(40495, 'https://ror.org/00hx1yw75', 'en', 1, 'https://ror.org/00hx1yw75 Government of Uttar Pradesh ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ सरकार'),
(40496, 'https://ror.org/00hxcg109', 'en', 1, 'https://ror.org/00hxcg109 Association for Strengthening Agricultural Research in Eastern and Central Africa'),
(40497, 'https://ror.org/00hyqw430', 'en', 1, 'https://ror.org/00hyqw430 Centre pour la santƩ des Inuits et les Changements Environnementaux Nasivvik Centre for Inuit Health and Changing Environments'),
(40498, 'https://ror.org/00j0xx731', 'no_lang_code', 1, 'https://ror.org/00j0xx731 Centre d''Higiene Mental Les Corts (Spain)'),
(40499, 'https://ror.org/00j1q0b46', 'en', 1, 'https://ror.org/00j1q0b46 Council of Higher Education Yükseköğretim Kurulu'),
(40500, 'https://ror.org/00j4sax34', 'en', 1, 'https://ror.org/00j4sax34 Newcastle-under-Lyme College'),
(40501, 'https://ror.org/00j73mn11', 'fr', 1, 'https://ror.org/00j73mn11 Ministry of Public Health and Hygiene Ministère de la Santé et de l''Hygiène Publique'),
(40502, 'https://ror.org/00j9xkc07', 'en', 1, 'https://ror.org/00j9xkc07 European University of Applied Sciences EuropƤische Fachhochschule Rhein/Erft'),
(40503, 'https://ror.org/00jatyx22', 'en', 1, 'https://ror.org/00jatyx22 International Management Institute'),
(40504, 'https://ror.org/00jaxam28', 'en', 1, 'https://ror.org/00jaxam28 Guangzhou Marine Geological Survey å¹æå·žęµ·ę“‹åœ°č“Øč°ƒęŸ„å±€'),
(40505, 'https://ror.org/00jbwpt44', 'en', 1, 'https://ror.org/00jbwpt44 Hochschule für Medien, Kommunikation und Wirtschaft University of Applied Sciences for Media Communication and Business'),
(40506, 'https://ror.org/00jce1v14', 'en', 1, 'https://ror.org/00jce1v14 College of the Siskiyous'),
(40507, 'https://ror.org/00jdhb158', 'cs', 1, 'https://ror.org/00jdhb158 Film Academy of Miroslav OndÅ™Ć­Äek, FilmovĆ” Akademie Miroslava OndÅ™Ć­Äka v PĆ­sku'),
(40508, 'https://ror.org/00je00x55', 'en', 1, 'https://ror.org/00je00x55 Institute of Mongolian Buddhist and Tibetan Studies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š½Š³Š¾Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ, буГГологии Šø тибетологии Š”Šž Š ŠŠ'),
(40509, 'https://ror.org/00jhy6397', 'en', 1, 'https://ror.org/00jhy6397 Empire College'),
(40510, 'https://ror.org/00jm2j742', 'en', 1, 'https://ror.org/00jm2j742 International Society for Gastrointestinal Hereditary Tumours'),
(40511, 'https://ror.org/00jsbh426', 'en', 1, 'https://ror.org/00jsbh426 South Eastern Railway'),
(40512, 'https://ror.org/00jvbme10', 'de', 1, 'https://ror.org/00jvbme10 Fachhochschule für Finanzen Brandenburg'),
(40513, 'https://ror.org/00jvrbg23', 'en', 1, 'https://ror.org/00jvrbg23 Children''s AIDS Fund Uganda'),
(40514, 'https://ror.org/00jw3g525', 'en', 1, 'https://ror.org/00jw3g525 Munich Business School'),
(40515, 'https://ror.org/00jzq7445', 'en', 1, 'https://ror.org/00jzq7445 Ministry of Finance and Development Planning'),
(40516, 'https://ror.org/00k255b93', 'no_lang_code', 1, 'https://ror.org/00k255b93 Golder Associates (South Africa)'),
(40517, 'https://ror.org/00k4x4z35', 'en', 1, 'https://ror.org/00k4x4z35 State Justice Institute'),
(40518, 'https://ror.org/00k51n564', 'en', 1, 'https://ror.org/00k51n564 Emmanuel Hospital Association'),
(40519, 'https://ror.org/00k53p435', 'en', 1, 'https://ror.org/00k53p435 Agencia de Desarrollo Económico de La Rioja Economic Development Agency for La Rioja'),
(40520, 'https://ror.org/00k66f384', 'no_lang_code', 1, 'https://ror.org/00k66f384 Nickerson Ltd'),
(40521, 'https://ror.org/00k672v31', 'no_lang_code', 1, 'https://ror.org/00k672v31 DuPont (Brazil)'),
(40522, 'https://ror.org/00k6vc568', 'en', 1, 'https://ror.org/00k6vc568 Dodowa Health Research Centre'),
(40523, 'https://ror.org/00k8b3640', 'no_lang_code', 1, 'https://ror.org/00k8b3640 AnyGenes (France)'),
(40524, 'https://ror.org/00k98ea94', 'no_lang_code', 1, 'https://ror.org/00k98ea94 Hokuriku Electric Power Company (Japan) åŒ—é™øé›»åŠ›'),
(40525, 'https://ror.org/00kb9vf38', 'en', 1, 'https://ror.org/00kb9vf38 Australasian College for Emergency Medicine'),
(40526, 'https://ror.org/00ket8v10', 'en', 1, 'https://ror.org/00ket8v10 Gokula Krishna College of Pharmacy'),
(40527, 'https://ror.org/00kj48v07', 'no_lang_code', 1, 'https://ror.org/00kj48v07 Foxnum Technology (Taiwan)'),
(40528, 'https://ror.org/00km4z122', 'en', 1, 'https://ror.org/00km4z122 Royal Commission for Jubail and Yanbu Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ł„Ł„Ų¬ŲØŁŠŁ„ ŁˆŁŠŁ†ŲØŲ¹'),
(40529, 'https://ror.org/00kn94t37', 'en', 1, 'https://ror.org/00kn94t37 Rubber Board'),
(40530, 'https://ror.org/00kp7ts52', 'en', 1, 'https://ror.org/00kp7ts52 China Accounting Standards Committee ä¼šč®”å‡†åˆ™å§”å‘˜ä¼š'),
(40531, 'https://ror.org/00ksgqc53', 'en', 1, 'https://ror.org/00ksgqc53 Partners for Health and Development in Africa'),
(40532, 'https://ror.org/00ktzqz45', 'en', 1, 'https://ror.org/00ktzqz45 Georgia Department of Transportation'),
(40533, 'https://ror.org/00kw0f604', 'en', 1, 'https://ror.org/00kw0f604 New Jersey Economic Development Authority'),
(40534, 'https://ror.org/00kyqct09', 'en', 1, 'https://ror.org/00kyqct09 Schuler Scholar Program'),
(40535, 'https://ror.org/00kz8zc32', 'no_lang_code', 1, 'https://ror.org/00kz8zc32 Philanjalo'),
(40536, 'https://ror.org/00m02ap37', 'en', 1, 'https://ror.org/00m02ap37 CT Group Of Institutions'),
(40537, 'https://ror.org/00m2z1b30', 'en', 1, 'https://ror.org/00m2z1b30 University College of Bahrain ŁƒŁ„ŁŠŲ© Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(40538, 'https://ror.org/00m41wh60', 'en', 1, 'https://ror.org/00m41wh60 Hennepin Technical College'),
(40539, 'https://ror.org/00m92qj63', 'no_lang_code', 1, 'https://ror.org/00m92qj63 Sharp Edge Labs (United States)'),
(40540, 'https://ror.org/00m94dk17', 'en', 1, 'https://ror.org/00m94dk17 Podhalańska Państwowa Wyższa Szkoła Zawodowa w Nowym Targu Podhale State Higher Vocational School in Nowy Targ'),
(40541, 'https://ror.org/00m9b5484', 'en', 1, 'https://ror.org/00m9b5484 Mountain Lakes High School'),
(40542, 'https://ror.org/00m9mc973', 'en', 1, 'https://ror.org/00m9mc973 European Association of Urology'),
(40543, 'https://ror.org/00maat333', 'fr', 1, 'https://ror.org/00maat333 Palais de la Decouverte'),
(40544, 'https://ror.org/00maf9573', 'en', 1, 'https://ror.org/00maf9573 Government of Karnataka ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²øą²°ą³ą²•ą²¾ą²°'),
(40545, 'https://ror.org/00mbwxd54', 'en', 1, 'https://ror.org/00mbwxd54 Italian Institute of Culture'),
(40546, 'https://ror.org/00mc4x834', 'no_lang_code', 1, 'https://ror.org/00mc4x834 Ahold Delhaize (United States)'),
(40547, 'https://ror.org/00mc9zb90', 'en', 1, 'https://ror.org/00mc9zb90 Citrus Research Institute äø­å›½å†œäøšē§‘å­¦é™¢ęŸ‘ę””ē ”ē©¶ę‰€'),
(40548, 'https://ror.org/00mej7b74', 'en', 1, 'https://ror.org/00mej7b74 Arizona Summit Law School'),
(40549, 'https://ror.org/00mm8q321', 'en', 1, 'https://ror.org/00mm8q321 American Military University'),
(40550, 'https://ror.org/00mpmjk72', 'en', 1, 'https://ror.org/00mpmjk72 Peddie School'),
(40551, 'https://ror.org/00mt8kb26', 'en', 1, 'https://ror.org/00mt8kb26 National Agency for Administrative City Construction ķ–‰ģ •ģ¤‘ģ‹¬ė³µķ•©ė„ģ‹œź±“ģ„¤ģ²­'),
(40552, 'https://ror.org/00mvdkr07', 'en', 1, 'https://ror.org/00mvdkr07 Yeshivat Mikdash Melech'),
(40553, 'https://ror.org/00mvrmk84', 'en', 1, 'https://ror.org/00mvrmk84 Providence Christian College'),
(40554, 'https://ror.org/00mwrav07', 'en', 1, 'https://ror.org/00mwrav07 Central Pollution Control Board'),
(40555, 'https://ror.org/00my0bv27', 'en', 1, 'https://ror.org/00my0bv27 Baltic Psychology and Management University College Baltijas PsiholoÄ£ijas un Menedžmenta Augstskola Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń ŠŸŃŠøŃ…Š¾Š»Š¾Š³ŠøŃ Šø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента'),
(40556, 'https://ror.org/00mzyf059', 'en', 1, 'https://ror.org/00mzyf059 Institute of Bast Fiber Crops äø­å›½å†œäøšē§‘å­¦é™¢éŗ»ē±»ē ”ē©¶ę‰€'),
(40557, 'https://ror.org/00n0e2d34', 'en', 1, 'https://ror.org/00n0e2d34 Ministry of Advanced Education'),
(40558, 'https://ror.org/00n178f58', 'en', 1, 'https://ror.org/00n178f58 South Plains College'),
(40559, 'https://ror.org/00n27t175', 'en', 1, 'https://ror.org/00n27t175 Seattle Institute of Oriental Medicine'),
(40560, 'https://ror.org/00n3vh666', 'en', 1, 'https://ror.org/00n3vh666 Deen Dayal Upadhyay Hospital'),
(40561, 'https://ror.org/00n4c8134', 'en', 1, 'https://ror.org/00n4c8134 Lisbon School of Design'),
(40562, 'https://ror.org/00n5fv691', 'pl', 1, 'https://ror.org/00n5fv691 Państwowa Wyższa Szkoła Zawodowa w Sulechowie'),
(40563, 'https://ror.org/00n8bqs64', 'en', 1, 'https://ror.org/00n8bqs64 Institute of Informatics Problems Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½Ń„Š¾Ń€Š¼Š°Ń‚ŠøŠŗŠ° Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŠµ'),
(40564, 'https://ror.org/00n900q40', 'en', 1, 'https://ror.org/00n900q40 Bradford School - Pittsburgh'),
(40565, 'https://ror.org/00nanf268', 'no_lang_code', 1, 'https://ror.org/00nanf268 Natural Remedies (India)'),
(40566, 'https://ror.org/00nas8g50', 'de', 1, 'https://ror.org/00nas8g50 Fonds Gesundes Ɩsterreich'),
(40567, 'https://ror.org/00nezvm77', 'en', 1, 'https://ror.org/00nezvm77 Voluntary Health Association Of India'),
(40568, 'https://ror.org/00nj2y010', 'en', 1, 'https://ror.org/00nj2y010 African Safari Club Of Florida'),
(40569, 'https://ror.org/00nkq8a05', 'en', 1, 'https://ror.org/00nkq8a05 Fondazione Luigi Einaudi Luigi Einaudi Foundation'),
(40570, 'https://ror.org/00nqqde20', 'en', 1, 'https://ror.org/00nqqde20 Development Aid from People to People'),
(40571, 'https://ror.org/00ntq6s45', 'no_lang_code', 1, 'https://ror.org/00ntq6s45 Shell (India)'),
(40572, 'https://ror.org/00nxrj229', 'en', 1, 'https://ror.org/00nxrj229 Mokpo National Tuberculosis Hospital źµ­ė¦½ėŖ©ķ¬ė³‘ģ›'),
(40573, 'https://ror.org/00p0g8998', 'en', 1, 'https://ror.org/00p0g8998 Agence pour la sƩcuritƩ de la Navigation AƩrienne en Afrique et Ơ Madagascar Agency for Aerial Navigation Safety in Africa and Madagascar'),
(40574, 'https://ror.org/00p14sn40', 'en', 1, 'https://ror.org/00p14sn40 New Jersey Department of Community Affairs'),
(40575, 'https://ror.org/00p536462', 'en', 1, 'https://ror.org/00p536462 Re Action'),
(40576, 'https://ror.org/00p5mne09', 'en', 1, 'https://ror.org/00p5mne09 Institute of Seismological Research'),
(40577, 'https://ror.org/00p5psh68', 'pt', 1, 'https://ror.org/00p5psh68 Ministério da Saúde e da Segurança Social'),
(40578, 'https://ror.org/00p9p2506', 'en', 1, 'https://ror.org/00p9p2506 Ministerstvo dopravy České republiky Ministry of Transport'),
(40579, 'https://ror.org/00p9yb286', 'en', 1, 'https://ror.org/00p9yb286 Moroccan National Railways Office Office National des Chemins de Fer du Maroc'),
(40580, 'https://ror.org/00pbsg918', 'en', 1, 'https://ror.org/00pbsg918 Organization for Social Services for AIDS'),
(40581, 'https://ror.org/00pbyj886', 'en', 1, 'https://ror.org/00pbyj886 Bath College'),
(40582, 'https://ror.org/00pctvz49', 'en', 1, 'https://ror.org/00pctvz49 Miller College'),
(40583, 'https://ror.org/00phthq42', 'en', 1, 'https://ror.org/00phthq42 Agência Nacional do Petróleo, GÔs Natural e Biocombustíveis National Agency of Petroleum, Natural Gas and Biofuels'),
(40584, 'https://ror.org/00pnt8b91', 'en', 1, 'https://ror.org/00pnt8b91 Seoul Institute'),
(40585, 'https://ror.org/00pnyyg32', 'en', 1, 'https://ror.org/00pnyyg32 Design Institute of San Diego'),
(40586, 'https://ror.org/00ppjep56', 'en', 1, 'https://ror.org/00ppjep56 Cancer Association of South Africa'),
(40587, 'https://ror.org/00ppxc472', 'no_lang_code', 1, 'https://ror.org/00ppxc472 ArcelorMittal (Poland)'),
(40588, 'https://ror.org/00pqt1c92', 'no_lang_code', 1, 'https://ror.org/00pqt1c92 Synergy Microwave (United States)'),
(40589, 'https://ror.org/00ps5mk11', 'pt', 1, 'https://ror.org/00ps5mk11 Instituto Nacional de Ciência e Tecnologia de Adaptações da Biota AquÔtica da AmazÓnia'),
(40590, 'https://ror.org/00pv14226', 'no_lang_code', 1, 'https://ror.org/00pv14226 Acxiom (United States)'),
(40591, 'https://ror.org/00pvcan36', 'en', 1, 'https://ror.org/00pvcan36 Arkansas Baptist College'),
(40592, 'https://ror.org/00pwe8n55', 'en', 1, 'https://ror.org/00pwe8n55 Moscow School of Social and Economic Sciences ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š²Ń‹ŃŃˆŠ°Ń школа ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŃ… наук'),
(40593, 'https://ror.org/00pxa0p67', 'no_lang_code', 1, 'https://ror.org/00pxa0p67 Slack Incorporated (United States)'),
(40594, 'https://ror.org/00pz3sx52', 'en', 1, 'https://ror.org/00pz3sx52 Egypt Exploration Society'),
(40595, 'https://ror.org/00pz6eg79', 'en', 1, 'https://ror.org/00pz6eg79 Ontario Stroke Network'),
(40596, 'https://ror.org/00pz6g905', 'en', 1, 'https://ror.org/00pz6g905 Association des Ɖtudes canadiennes aux Ɖtats-Unis Association for Canadian Studies in the United States'),
(40597, 'https://ror.org/00pzdbj03', 'no_lang_code', 1, 'https://ror.org/00pzdbj03 Haption (France)'),
(40598, 'https://ror.org/00pzjnx43', 'id', 1, 'https://ror.org/00pzjnx43 STIKes Prima Nusantara'),
(40599, 'https://ror.org/00q24dt49', 'en', 1, 'https://ror.org/00q24dt49 Global College'),
(40600, 'https://ror.org/00q2kx914', 'en', 1, 'https://ror.org/00q2kx914 Fisheries Society of the British Isles'),
(40601, 'https://ror.org/00q5qvn72', 'en', 1, 'https://ror.org/00q5qvn72 Betanien University College'),
(40602, 'https://ror.org/00q5x1a77', 'en', 1, 'https://ror.org/00q5x1a77 Messenger College'),
(40603, 'https://ror.org/00q62zf58', 'en', 1, 'https://ror.org/00q62zf58 Agricultural Information Institute äø­å›½å†œäøšē§‘å­¦é™¢å†œäøšäæ”ęÆē ”ē©¶ę‰€'),
(40604, 'https://ror.org/00qabtj63', 'en', 1, 'https://ror.org/00qabtj63 Akcent International House Prague JazykovÔ Ŕkola AKCENT IH Prague'),
(40605, 'https://ror.org/00qbqm161', 'en', 1, 'https://ror.org/00qbqm161 International Business College - Fort Wayne'),
(40606, 'https://ror.org/00qbzpp62', 'en', 1, 'https://ror.org/00qbzpp62 Center for Massive Data Algorithmics'),
(40607, 'https://ror.org/00qc32430', 'en', 1, 'https://ror.org/00qc32430 Christie''s Education'),
(40608, 'https://ror.org/00qcy3519', 'en', 1, 'https://ror.org/00qcy3519 International Partnership for Human Development'),
(40609, 'https://ror.org/00qd3m987', 'no_lang_code', 1, 'https://ror.org/00qd3m987 Premiere'),
(40610, 'https://ror.org/00qeyvx79', 'en', 1, 'https://ror.org/00qeyvx79 Sino-Swedish Centre for Tree-Ring Research'),
(40611, 'https://ror.org/00qf0n903', 'en', 1, 'https://ror.org/00qf0n903 Clinton College'),
(40612, 'https://ror.org/00qghhw55', 'en', 1, 'https://ror.org/00qghhw55 Private University of Environmental Sciences in Radom Prywatna Wyższa Szkoła Ochrony Środowiska w Radomiu'),
(40613, 'https://ror.org/00qgtny50', 'en', 1, 'https://ror.org/00qgtny50 Institute of Solid State Physics and Semiconductors Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ фізікі цвёрГага цела і ŠæŠ°ŃžŠæŃ€Š°Š²Š°Š“Š½Ń–ŠŗŠ¾Ńž'),
(40614, 'https://ror.org/00qgwdb66', 'en', 1, 'https://ror.org/00qgwdb66 Ministry of Agriculture, Food Security and Cooperatives, Ministry of Agriculture, Food and Cooperatives Wizara ya Kilimo, Chakula na Ushirika'),
(40615, 'https://ror.org/00qkjnr71', 'en', 1, 'https://ror.org/00qkjnr71 Yeshiva of Greater Washington'),
(40616, 'https://ror.org/00qmsd316', 'pt', 1, 'https://ror.org/00qmsd316 Faculdades Milton Campos'),
(40617, 'https://ror.org/00qn2rd91', 'en', 1, 'https://ror.org/00qn2rd91 Institut National des Sciences AppliquƩes et de Technologie National Institute of Applied Science and Technology'),
(40618, 'https://ror.org/00qnd3z77', 'en', 1, 'https://ror.org/00qnd3z77 National American University'),
(40619, 'https://ror.org/00qp50z66', 'en', 1, 'https://ror.org/00qp50z66 Hiwassee College'),
(40620, 'https://ror.org/00qrrpx34', 'en', 1, 'https://ror.org/00qrrpx34 State Administration of Press, Publication, Radio, Film and Television 国家广播电影电视总局'),
(40621, 'https://ror.org/00qrts576', 'en', 1, 'https://ror.org/00qrts576 Kara Counselling and Training Trust'),
(40622, 'https://ror.org/00qt5he59', 'no_lang_code', 1, 'https://ror.org/00qt5he59 Oligovax (France)'),
(40623, 'https://ror.org/00qxm3x60', 'no_lang_code', 1, 'https://ror.org/00qxm3x60 Biological E (India)'),
(40624, 'https://ror.org/00qz2zp29', 'pl', 1, 'https://ror.org/00qz2zp29 Wyższa Szkoła Planowania Strategicznego'),
(40625, 'https://ror.org/00qzhtm25', 'en', 1, 'https://ror.org/00qzhtm25 Fairy Lake Botanical Garden ä»™ę¹–ę¤ē‰©å›­'),
(40626, 'https://ror.org/00r1gaq76', 'it', 1, 'https://ror.org/00r1gaq76 Conservatorio Torrefranca Vibo Valentia'),
(40627, 'https://ror.org/00r1qza69', 'en', 1, 'https://ror.org/00r1qza69 Reedley College'),
(40628, 'https://ror.org/00r22sc21', 'en', 1, 'https://ror.org/00r22sc21 Vastu Shilpa Foundation'),
(40629, 'https://ror.org/00r3dxy86', 'en', 1, 'https://ror.org/00r3dxy86 Busan Institute of Science and Technology ė¶€ģ‚°ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(40630, 'https://ror.org/00r3ztb37', 'en', 1, 'https://ror.org/00r3ztb37 Drzavni zavod za zastitu prirode State Institute for Nature Protection'),
(40631, 'https://ror.org/00r5r6807', 'en', 1, 'https://ror.org/00r5r6807 China Automotive Technology and Research Center äø­å›Æę±½č½¦ęŠ€ęœÆē”ē©¶äø­åæƒ'),
(40632, 'https://ror.org/00r614q54', 'en', 1, 'https://ror.org/00r614q54 Youngnam Theological University and Seminary ģ˜ė‚Øģ‹ ķ•™ėŒ€ķ•™źµ'),
(40633, 'https://ror.org/00r6rm584', 'en', 1, 'https://ror.org/00r6rm584 Institut Tunisien de la CompetitivitƩ et des Etudes Quantitatives Tunisian Institute of Competitiveness and Quantitative Studies'),
(40634, 'https://ror.org/00r6ym970', 'en', 1, 'https://ror.org/00r6ym970 Latvia Business College Latvijas Biznesa Koledža'),
(40635, 'https://ror.org/00r7arj43', 'en', 1, 'https://ror.org/00r7arj43 Central Bank of Uzbekistan O''zbekiston Respublikasi Markaziy banki ŠŽŠ·Š±ŠµŠŗŠøŃŃ‚Š¾Š½ Республикаси ŠœŠ°Ń€ŠŗŠ°Š·ŠøŠ¹ Банки'),
(40636, 'https://ror.org/00r8emz85', 'it', 1, 'https://ror.org/00r8emz85 Conservatorio di Musica Carlo Gesualdo da Venosa Potenza'),
(40637, 'https://ror.org/00r96e843', 'en', 1, 'https://ror.org/00r96e843 Government of Kerala ą“•ąµ‡ą“°ą“³ ą“øąµ¼ą“•ąµą“•ą“¾ąµ¼'),
(40638, 'https://ror.org/00ra6qr58', 'en', 1, 'https://ror.org/00ra6qr58 Greenland Government'),
(40639, 'https://ror.org/00ra7nj09', 'en', 1, 'https://ror.org/00ra7nj09 Minnesota Department of Commerce'),
(40640, 'https://ror.org/00ra8jw08', 'no_lang_code', 1, 'https://ror.org/00ra8jw08 Porsolt (France)'),
(40641, 'https://ror.org/00rb16m44', 'en', 1, 'https://ror.org/00rb16m44 Emberi ErőforrĆ”sok MinisztĆ©rium Ministry of Human Capacities'),
(40642, 'https://ror.org/00rfy7667', 'en', 1, 'https://ror.org/00rfy7667 Accademia di Belle Arti di Brera Brera Academy'),
(40643, 'https://ror.org/00rj4dg52', 'en', 1, 'https://ror.org/00rj4dg52 Cambridge–MIT Institute'),
(40644, 'https://ror.org/00rmfhk22', 'en', 1, 'https://ror.org/00rmfhk22 Cuiavian University Kujawska Szkoła Wyższa we Włocławku'),
(40645, 'https://ror.org/00rnmt205', 'fr', 1, 'https://ror.org/00rnmt205 Institut National de la Recherche Agronomique du Niger'),
(40646, 'https://ror.org/00rpc7w94', 'en', 1, 'https://ror.org/00rpc7w94 National Institute of Technical Teachers Training and Research'),
(40647, 'https://ror.org/00rq8ty33', 'en', 1, 'https://ror.org/00rq8ty33 National Research Centre for Banana'),
(40648, 'https://ror.org/00rqyj043', 'no_lang_code', 1, 'https://ror.org/00rqyj043 AquAgri Processing Private Limited (India)'),
(40649, 'https://ror.org/00rr9fv20', 'no_lang_code', 1, 'https://ror.org/00rr9fv20 Vulcan (United States)'),
(40650, 'https://ror.org/00rs33k88', 'en', 1, 'https://ror.org/00rs33k88 Eastern Deanery AIDS Relief Program'),
(40651, 'https://ror.org/00rvy3n84', 'en', 1, 'https://ror.org/00rvy3n84 Iolanthe Midwifery Trust'),
(40652, 'https://ror.org/00rw4xa44', 'no_lang_code', 1, 'https://ror.org/00rw4xa44 Kemetco Research (Canada)'),
(40653, 'https://ror.org/00rw7g836', 'no_lang_code', 1, 'https://ror.org/00rw7g836 Suez (Australia)'),
(40654, 'https://ror.org/00rwrmx36', 'en', 1, 'https://ror.org/00rwrmx36 Ethiopian Medical Association'),
(40655, 'https://ror.org/00rx3ej27', 'en', 1, 'https://ror.org/00rx3ej27 Robert Kennedy College'),
(40656, 'https://ror.org/00rxf7n07', 'en', 1, 'https://ror.org/00rxf7n07 Korea Agency for Infrastructure Technology Advancement'),
(40657, 'https://ror.org/00rztgq82', 'no_lang_code', 1, 'https://ror.org/00rztgq82 Tampieri Financial Group (Italy)'),
(40658, 'https://ror.org/00s13q694', 'fr', 1, 'https://ror.org/00s13q694 Ɖcole SupĆ©rieure d''IngĆ©nieurs des Travaux de la Construction de Metz'),
(40659, 'https://ror.org/00s1xev78', 'en', 1, 'https://ror.org/00s1xev78 Biblioteca Nacional de Colombia National Library of Colombia'),
(40660, 'https://ror.org/00s1ymf55', 'no_lang_code', 1, 'https://ror.org/00s1ymf55 ACRI-EC (Morocco)'),
(40661, 'https://ror.org/00s2dxs29', 'en', 1, 'https://ror.org/00s2dxs29 East China Mineral Exploration & Development Bureau ę±Ÿč‹ēœęœ‰č‰²é‡‘å±žåŽäøœåœ°č“Øå‹˜ęŸ„å±€'),
(40662, 'https://ror.org/00s5ghb26', 'en', 1, 'https://ror.org/00s5ghb26 Municipality of Tai''an 泰安'),
(40663, 'https://ror.org/00s653717', 'en', 1, 'https://ror.org/00s653717 WorldWide Information Services'),
(40664, 'https://ror.org/00s6kha82', 'en', 1, 'https://ror.org/00s6kha82 Seoul Women''s College of Nursing'),
(40665, 'https://ror.org/00s7bz409', 'no_lang_code', 1, 'https://ror.org/00s7bz409 Oerlikon (Switzerland)'),
(40666, 'https://ror.org/00s8v8467', 'en', 1, 'https://ror.org/00s8v8467 Arizona Department of Economic Security'),
(40667, 'https://ror.org/00s8w7498', 'en', 1, 'https://ror.org/00s8w7498 Aryavarta Space Organization'),
(40668, 'https://ror.org/00sb8wv57', 'en', 1, 'https://ror.org/00sb8wv57 Kenya Institute for Public Policy Research and Analysis'),
(40669, 'https://ror.org/00sd8zf10', 'en', 1, 'https://ror.org/00sd8zf10 University of Cape Town Fund'),
(40670, 'https://ror.org/00sf50t55', 'en', 1, 'https://ror.org/00sf50t55 Kenya National Blood Transfusion Services'),
(40671, 'https://ror.org/00sfwx025', 'en', 1, 'https://ror.org/00sfwx025 Ashkelon Academic College המכללה ×”××§×“×ž×™×Ŗ אשקלון'),
(40672, 'https://ror.org/00sgtz890', 'no_lang_code', 1, 'https://ror.org/00sgtz890 Malladi Drugs and Pharmaceuticals Limited (India)'),
(40673, 'https://ror.org/00shj8q14', 'en', 1, 'https://ror.org/00shj8q14 European College of Business and Management'),
(40674, 'https://ror.org/00skrfj45', 'en', 1, 'https://ror.org/00skrfj45 China Youth Development Foundation äø­å›½é’å°‘å¹“å‘å±•åŸŗé‡‘ä¼š'),
(40675, 'https://ror.org/00snyqa86', 'pt', 1, 'https://ror.org/00snyqa86 TeledifusĆ£o de Macau 澳廣視'),
(40676, 'https://ror.org/00sqv6z18', 'en', 1, 'https://ror.org/00sqv6z18 Virginia College'),
(40677, 'https://ror.org/00sr42d65', 'no_lang_code', 1, 'https://ror.org/00sr42d65 Conseillers en gestion et informatique Consultant To Government and Industry (United Kingdom)'),
(40678, 'https://ror.org/00srhem84', 'en', 1, 'https://ror.org/00srhem84 Hugh Wooding Law School'),
(40679, 'https://ror.org/00ss2rp50', 'fr', 1, 'https://ror.org/00ss2rp50 Direction de la MƩtƩorologie Nationale du Niger'),
(40680, 'https://ror.org/00ssjpk84', 'no_lang_code', 1, 'https://ror.org/00ssjpk84 L&S Consulting (South Africa)'),
(40681, 'https://ror.org/00stpsa05', 'en', 1, 'https://ror.org/00stpsa05 Wisconsin School of Professional Psychology'),
(40682, 'https://ror.org/00svp7168', 'no_lang_code', 1, 'https://ror.org/00svp7168 Capital One (United States)'),
(40683, 'https://ror.org/00sw9kj55', 'en', 1, 'https://ror.org/00sw9kj55 Paier College of Art Inc'),
(40684, 'https://ror.org/00sxn7a20', 'en', 1, 'https://ror.org/00sxn7a20 Korea Human Resource Development Institute for Health and Welfare'),
(40685, 'https://ror.org/00t1pfq43', 'no_lang_code', 1, 'https://ror.org/00t1pfq43 Shanghai CASB Biotechnology (China) äøŠęµ·äø­ē§‘ä¼ä½°č±Ŗē”Ÿē‰©å·„ēØ‹ęœ‰é™å…¬åø'),
(40686, 'https://ror.org/00t1yh273', 'en', 1, 'https://ror.org/00t1yh273 Jiangsu Provincial Meteorological Bureau ę±Ÿč‹ēœę°”č±”å°'),
(40687, 'https://ror.org/00t2kp174', 'en', 1, 'https://ror.org/00t2kp174 HSBC'),
(40688, 'https://ror.org/00t2tkn41', 'no_lang_code', 1, 'https://ror.org/00t2tkn41 Cyber-Dynamics (United States)'),
(40689, 'https://ror.org/00t5pe133', 'en', 1, 'https://ror.org/00t5pe133 National Environment Management Council'),
(40690, 'https://ror.org/00t625d81', 'no_lang_code', 1, 'https://ror.org/00t625d81 John Deere (United States)'),
(40691, 'https://ror.org/00t6bvs64', 'en', 1, 'https://ror.org/00t6bvs64 National Heritage Council'),
(40692, 'https://ror.org/00t7t9a43', 'en', 1, 'https://ror.org/00t7t9a43 Institute for Design Problems in Microelectronics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃ в Š¼ŠøŠŗŃ€Š¾ŃŠ»ŠµŠŗŃ‚ронике'),
(40693, 'https://ror.org/00t93jm73', 'nl', 1, 'https://ror.org/00t93jm73 Lentis'),
(40694, 'https://ror.org/00tc79f78', 'en', 1, 'https://ror.org/00tc79f78 Platt College Aurora'),
(40695, 'https://ror.org/00tf2g326', 'en', 1, 'https://ror.org/00tf2g326 Bolton Sixth Form College'),
(40696, 'https://ror.org/00tf9x563', 'en', 1, 'https://ror.org/00tf9x563 Arts²'),
(40697, 'https://ror.org/00tgr2h49', 'en', 1, 'https://ror.org/00tgr2h49 Computer Equipment and Technologies'),
(40698, 'https://ror.org/00tm7y673', 'en', 1, 'https://ror.org/00tm7y673 Methodist Church in Zimbabwe'),
(40699, 'https://ror.org/00tnby758', 'lt', 1, 'https://ror.org/00tnby758 V. A. Graičiūno AukŔtoji Vadybos Mokykla'),
(40700, 'https://ror.org/00tnh9n90', 'no_lang_code', 1, 'https://ror.org/00tnh9n90 Emami (India)'),
(40701, 'https://ror.org/00tnkbn59', 'en', 1, 'https://ror.org/00tnkbn59 Institute of Archaeology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ археологии Российской акаГемии наук'),
(40702, 'https://ror.org/00tnmk453', 'no_lang_code', 1, 'https://ror.org/00tnmk453 NTPC Consultancy (India)'),
(40703, 'https://ror.org/00tp13k20', 'en', 1, 'https://ror.org/00tp13k20 Political Development Forum'),
(40704, 'https://ror.org/00tqb5b32', 'en', 1, 'https://ror.org/00tqb5b32 Grace School of Theology'),
(40705, 'https://ror.org/00tqkxb21', 'en', 1, 'https://ror.org/00tqkxb21 Forest Research Institute वन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(40706, 'https://ror.org/00tr1bg48', 'en', 1, 'https://ror.org/00tr1bg48 College of Business and Technology'),
(40707, 'https://ror.org/00ts6eq50', 'en', 1, 'https://ror.org/00ts6eq50 Duval County Public Schools'),
(40708, 'https://ror.org/00twbjb24', 'en', 1, 'https://ror.org/00twbjb24 Sowela Technical Community College'),
(40709, 'https://ror.org/00txhpa83', 'en', 1, 'https://ror.org/00txhpa83 RFH - University of Applied Sciences Cologne Rheinische Fachhochschule Kƶln'),
(40710, 'https://ror.org/00txjny54', 'en', 1, 'https://ror.org/00txjny54 Cree Board of Health and Social Services of James Bay'),
(40711, 'https://ror.org/00tyghb97', 'no_lang_code', 1, 'https://ror.org/00tyghb97 RefleXion Medical (United States)'),
(40712, 'https://ror.org/00v0vvh64', 'nl', 1, 'https://ror.org/00v0vvh64 Tactus Verslavingszorg'),
(40713, 'https://ror.org/00v3tjq70', 'en', 1, 'https://ror.org/00v3tjq70 Dairy Management'),
(40714, 'https://ror.org/00v43qg93', 'en', 1, 'https://ror.org/00v43qg93 San Diego Christian College'),
(40715, 'https://ror.org/00v75kn09', 'no_lang_code', 1, 'https://ror.org/00v75kn09 TogaLabs (South Africa)'),
(40716, 'https://ror.org/00v9zm431', 'es', 1, 'https://ror.org/00v9zm431 Hospital Vicente Corral Moscoso'),
(40717, 'https://ror.org/00vc8ca13', 'en', 1, 'https://ror.org/00vc8ca13 Tabor College'),
(40718, 'https://ror.org/00vcgxy32', 'pt', 1, 'https://ror.org/00vcgxy32 Faculdade Ruy Barbosa'),
(40719, 'https://ror.org/00vcnds94', 'de', 1, 'https://ror.org/00vcnds94 Philosophisch-Theologische Hochschule Benediktbeuern'),
(40720, 'https://ror.org/00vcvxb53', 'en', 1, 'https://ror.org/00vcvxb53 Centre for Health Solutions'),
(40721, 'https://ror.org/00vd2h880', 'en', 1, 'https://ror.org/00vd2h880 Catholic University of Applied Sciences Freiburg Katholische Hochschule Freiburg'),
(40722, 'https://ror.org/00ve6e186', 'en', 1, 'https://ror.org/00ve6e186 Australian Bureau of Statistics'),
(40723, 'https://ror.org/00verxq29', 'en', 1, 'https://ror.org/00verxq29 A.E. Favorsky Irkutsk Institute of Chemistry Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии им. А.Š•.Фаворского Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(40724, 'https://ror.org/00vf1vw09', 'es', 1, 'https://ror.org/00vf1vw09 Universidad de La Salle BajĆ­o'),
(40725, 'https://ror.org/00vgtfh11', 'en', 1, 'https://ror.org/00vgtfh11 National Human Rights Commission of Korea źµ­ź°€ģøź¶Œģœ„ģ›ķšŒ'),
(40726, 'https://ror.org/00vh6ck95', 'en', 1, 'https://ror.org/00vh6ck95 J F Ingram State Technical College'),
(40727, 'https://ror.org/00vhg8h29', 'en', 1, 'https://ror.org/00vhg8h29 Korea Health Personnel Licensing Examination Institute ķ•œźµ­ė³“ź±“ģ˜ė£Œģøźµ­ź°€ģ‹œķ—˜ģ›'),
(40728, 'https://ror.org/00vhmxj78', 'en', 1, 'https://ror.org/00vhmxj78 Trocaire College'),
(40729, 'https://ror.org/00vhvv548', 'no_lang_code', 1, 'https://ror.org/00vhvv548 Andersen (United States)'),
(40730, 'https://ror.org/00vj60w13', 'no_lang_code', 1, 'https://ror.org/00vj60w13 Piramal (India)'),
(40731, 'https://ror.org/00vk6ps98', 'en', 1, 'https://ror.org/00vk6ps98 Theatre College Luben Groys Театрален колеж Š›ŃŽŠ±ŠµŠ½ Гройс'),
(40732, 'https://ror.org/00vkbtf98', 'de', 1, 'https://ror.org/00vkbtf98 Wilhelm Büchner Hochschule'),
(40733, 'https://ror.org/00vkpzj58', 'en', 1, 'https://ror.org/00vkpzj58 Malabar Medical College Hospital and Research Centre ą“®ą“²ą“¬ą“¾ąµ¼ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‡ą“¾ą“³ą“œąµ'),
(40734, 'https://ror.org/00vkyb445', 'en', 1, 'https://ror.org/00vkyb445 Texas Board of Nursing'),
(40735, 'https://ror.org/00vn6kg36', 'en', 1, 'https://ror.org/00vn6kg36 Becker College'),
(40736, 'https://ror.org/00vnat122', 'en', 1, 'https://ror.org/00vnat122 China Graduate School of Theology äø­åœ‹ē„žå­øē ”ē©¶é™¢'),
(40737, 'https://ror.org/00vtmxd94', 'en', 1, 'https://ror.org/00vtmxd94 Terna Dental College and Hospital'),
(40738, 'https://ror.org/00vtr6j87', 'en', 1, 'https://ror.org/00vtr6j87 Myotubular Trust'),
(40739, 'https://ror.org/00vvdxm97', 'no_lang_code', 1, 'https://ror.org/00vvdxm97 Grupo João Ferreira dos Santos (Mozambique)'),
(40740, 'https://ror.org/00vvhe852', 'en', 1, 'https://ror.org/00vvhe852 California College San Diego'),
(40741, 'https://ror.org/00vwzpd62', 'no_lang_code', 1, 'https://ror.org/00vwzpd62 American Journal Experts (United States)'),
(40742, 'https://ror.org/00vxar649', 'it', 1, 'https://ror.org/00vxar649 Accademia di Belle Arti di Macerata'),
(40743, 'https://ror.org/00vxdmt81', 'en', 1, 'https://ror.org/00vxdmt81 Christian Council of Tanzania'),
(40744, 'https://ror.org/00vyqsz57', 'no_lang_code', 1, 'https://ror.org/00vyqsz57 Shanghai Genon Biological Products (China) äøŠęµ·č½¬åŸŗå› ē ”ē©¶äø­åæƒ'),
(40745, 'https://ror.org/00vzha967', 'en', 1, 'https://ror.org/00vzha967 Henderson Community College'),
(40746, 'https://ror.org/00w07t135', 'en', 1, 'https://ror.org/00w07t135 Friends of the Earth-Ghana'),
(40747, 'https://ror.org/00w0qep84', 'en', 1, 'https://ror.org/00w0qep84 Institute of Intelligent Machines äø­å›½ē§‘å­¦é™¢åˆč‚„ę™ŗčƒ½ęœŗę¢°ē ”ē©¶ę‰€'),
(40748, 'https://ror.org/00w1nhp77', 'en', 1, 'https://ror.org/00w1nhp77 Union of Arab Chemists Ų„ŲŖŲ­Ų§ŲÆ Ų§Ł„ŁƒŁŠŁ…ŁŠŲ§Ų¦ŁŠŁŠŁ† العرب'),
(40749, 'https://ror.org/00w4m9556', 'en', 1, 'https://ror.org/00w4m9556 Human Resources Professionals Association'),
(40750, 'https://ror.org/00w6thw04', 'en', 1, 'https://ror.org/00w6thw04 Ministry of Environment and Natural Resources & Regional Development Authorities'),
(40751, 'https://ror.org/00w793a39', 'en', 1, 'https://ror.org/00w793a39 Livestock Improvement Corporation'),
(40752, 'https://ror.org/00w7d0n34', 'no_lang_code', 1, 'https://ror.org/00w7d0n34 WITF (United States)'),
(40753, 'https://ror.org/00w7etd19', 'en', 1, 'https://ror.org/00w7etd19 Independent Dance'),
(40754, 'https://ror.org/00wa9t836', 'en', 1, 'https://ror.org/00wa9t836 Chief Minister Treasury and Economic Development Directorate'),
(40755, 'https://ror.org/00wb8n271', 'en', 1, 'https://ror.org/00wb8n271 Private PƤdagogische Hochschule der Diƶzese Linz Private University College of Education of the Diocese of Linz'),
(40756, 'https://ror.org/00wcxq223', 'en', 1, 'https://ror.org/00wcxq223 Rajamangala University of Technology Krungthep'),
(40757, 'https://ror.org/00wdghj92', 'en', 1, 'https://ror.org/00wdghj92 North Shore Community College'),
(40758, 'https://ror.org/00we1pa83', 'pt', 1, 'https://ror.org/00we1pa83 Inov Inesc Inovação, Instituto de Novas Tecnologias'),
(40759, 'https://ror.org/00wf4k745', 'en', 1, 'https://ror.org/00wf4k745 Alytaus Kolegija Alytus College'),
(40760, 'https://ror.org/00wfve797', 'en', 1, 'https://ror.org/00wfve797 Institute of Sociology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ социологии Š ŠŠ'),
(40761, 'https://ror.org/00wg8t158', 'no_lang_code', 1, 'https://ror.org/00wg8t158 Sugal Group (Portugal)'),
(40762, 'https://ror.org/00wh1y768', 'en', 1, 'https://ror.org/00wh1y768 Department of Education Tasmania'),
(40763, 'https://ror.org/00wj0ge55', 'en', 1, 'https://ror.org/00wj0ge55 New Jersey Council on Developmental Disabilities'),
(40764, 'https://ror.org/00wm8m174', 'no_lang_code', 1, 'https://ror.org/00wm8m174 Synthomer (United Kingdom)'),
(40765, 'https://ror.org/00wp2bj27', 'en', 1, 'https://ror.org/00wp2bj27 Institute of Chemistry, Far Eastern Branch of the Russian Academy of Sciences'),
(40766, 'https://ror.org/00wqess70', 'en', 1, 'https://ror.org/00wqess70 St. Vincent de Paul Regional Seminary'),
(40767, 'https://ror.org/00wqj7c25', 'no_lang_code', 1, 'https://ror.org/00wqj7c25 Tupperware Brands (United States)'),
(40768, 'https://ror.org/00wrbf093', 'en', 1, 'https://ror.org/00wrbf093 OPEC Fund for International Development'),
(40769, 'https://ror.org/00wrwqa33', 'en', 1, 'https://ror.org/00wrwqa33 Indian Institute of Oilseeds Research ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ - ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ तिलहन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(40770, 'https://ror.org/00wrxrh45', 'fr', 1, 'https://ror.org/00wrxrh45 Institut RƩgional d''Administration de Metz'),
(40771, 'https://ror.org/00ws8h732', 'no_lang_code', 1, 'https://ror.org/00ws8h732 Tyson Foods (United States)'),
(40772, 'https://ror.org/00ws9ra62', 'no_lang_code', 1, 'https://ror.org/00ws9ra62 Netris Pharma (France)'),
(40773, 'https://ror.org/00wsjjq14', 'en', 1, 'https://ror.org/00wsjjq14 Providence Newberg Medical Center'),
(40774, 'https://ror.org/00wsrxw08', 'en', 1, 'https://ror.org/00wsrxw08 Rwanda Meteorological Service'),
(40775, 'https://ror.org/00wzvx415', 'en', 1, 'https://ror.org/00wzvx415 National Council for Cement and Building Materials'),
(40776, 'https://ror.org/00x0rjj17', 'en', 1, 'https://ror.org/00x0rjj17 Montana Space Grant Consortium'),
(40777, 'https://ror.org/00x0vxx91', 'en', 1, 'https://ror.org/00x0vxx91 Institute of Physics and Technology Физико-технологического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š°'),
(40778, 'https://ror.org/00x4w7v32', 'en', 1, 'https://ror.org/00x4w7v32 Netwas Uganda'),
(40779, 'https://ror.org/00x5wty96', 'en', 1, 'https://ror.org/00x5wty96 Redcar & Cleveland College'),
(40780, 'https://ror.org/00x6h5n95', 'en', 1, 'https://ror.org/00x6h5n95 Dryad Digital Repository'),
(40781, 'https://ror.org/00x6zfm71', 'en', 1, 'https://ror.org/00x6zfm71 Florida Gateway College'),
(40782, 'https://ror.org/00x7b5g69', 'no_lang_code', 1, 'https://ror.org/00x7b5g69 Moog (United States)'),
(40783, 'https://ror.org/00x8xyn30', 'no_lang_code', 1, 'https://ror.org/00x8xyn30 Lanco Solar (India)'),
(40784, 'https://ror.org/00x90x382', 'en', 1, 'https://ror.org/00x90x382 Euro-India Research Centre'),
(40785, 'https://ror.org/00x9zs206', 'en', 1, 'https://ror.org/00x9zs206 Velammal Medical College Hospital and Research Institute'),
(40786, 'https://ror.org/00xas1432', 'en', 1, 'https://ror.org/00xas1432 Mildmay Uganda'),
(40787, 'https://ror.org/00xdt7j93', 'en', 1, 'https://ror.org/00xdt7j93 United Nations Children''s Fund Zambia'),
(40788, 'https://ror.org/00xh26g31', 'fr', 1, 'https://ror.org/00xh26g31 Office National d''ƩlectricitƩ, Office National de l''Electricite et de l''Eau Potable'),
(40789, 'https://ror.org/00xn8e010', 'es', 1, 'https://ror.org/00xn8e010 Asociación para la Conservación de la Cuenca Amazónica'),
(40790, 'https://ror.org/00xp6a578', 'en', 1, 'https://ror.org/00xp6a578 Northeastern Junior College'),
(40791, 'https://ror.org/00xphjb32', 'en', 1, 'https://ror.org/00xphjb32 Queen’s Nursing Institute Scotland'),
(40792, 'https://ror.org/00xv87230', 'en', 1, 'https://ror.org/00xv87230 Church of South India Hospital'),
(40793, 'https://ror.org/00xwm9r16', 'en', 1, 'https://ror.org/00xwm9r16 Network for Water and Sanitation International'),
(40794, 'https://ror.org/00xwxpw14', 'no_lang_code', 1, 'https://ror.org/00xwxpw14 FRAUDetect (United States)'),
(40795, 'https://ror.org/00xx4s907', 'en', 1, 'https://ror.org/00xx4s907 Sarum College'),
(40796, 'https://ror.org/00xz0ff56', 'en', 1, 'https://ror.org/00xz0ff56 Institute of Agricultural Economics and Development äø­å›½å†œäøšē§‘å­¦é™¢å†œäøšē»ęµŽäøŽå‘å±•ē ”ē©¶ę‰€'),
(40797, 'https://ror.org/00y0jw647', 'pt', 1, 'https://ror.org/00y0jw647 Hospital da Senhora da Oliveira Guimarães'),
(40798, 'https://ror.org/00y0xzp63', 'en', 1, 'https://ror.org/00y0xzp63 Lassen Community College'),
(40799, 'https://ror.org/00y19mj60', 'en', 1, 'https://ror.org/00y19mj60 Department of Environment and Conservation'),
(40800, 'https://ror.org/00y1dzm96', 'en', 1, 'https://ror.org/00y1dzm96 Institute of Petroleum Geology and Geophysics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефтегазовой геологии Šø геофизики имени А. А. Š¢Ń€Š¾Ń„ŠøŠ¼ŃƒŠŗŠ° Š”Šž Š ŠŠ'),
(40801, 'https://ror.org/00y2ynd26', 'en', 1, 'https://ror.org/00y2ynd26 Saskatchewan Arts Board'),
(40802, 'https://ror.org/00y3pb435', 'en', 1, 'https://ror.org/00y3pb435 Provo College'),
(40803, 'https://ror.org/00y3r0391', 'fr', 1, 'https://ror.org/00y3r0391 La Cambre'),
(40804, 'https://ror.org/00y5kz467', 'en', 1, 'https://ror.org/00y5kz467 Frontier Lifeline Hospital'),
(40805, 'https://ror.org/00y61sp67', 'no_lang_code', 1, 'https://ror.org/00y61sp67 JSW Group (India)'),
(40806, 'https://ror.org/00y7x8f51', 'no_lang_code', 1, 'https://ror.org/00y7x8f51 Vodafone (Portugal)'),
(40807, 'https://ror.org/00y8tpp02', 'fr', 1, 'https://ror.org/00y8tpp02 Laboratoire National de SantƩ Publique du Congo'),
(40808, 'https://ror.org/00y9yvc25', 'en', 1, 'https://ror.org/00y9yvc25 Action Duchenne'),
(40809, 'https://ror.org/00ya5c561', 'de', 1, 'https://ror.org/00ya5c561 Bundesinstitut für Sportwissenschaft'),
(40810, 'https://ror.org/00yb6qh25', 'en', 1, 'https://ror.org/00yb6qh25 Beit Trust'),
(40811, 'https://ror.org/00ybkrr33', 'en', 1, 'https://ror.org/00ybkrr33 Ripon College Cuddesdon'),
(40812, 'https://ror.org/00ycj0006', 'en', 1, 'https://ror.org/00ycj0006 Institute of Economic Growth'),
(40813, 'https://ror.org/00ycyk215', 'no_lang_code', 1, 'https://ror.org/00ycyk215 Chemtrix (Netherlands)'),
(40814, 'https://ror.org/00ydy7x73', 'en', 1, 'https://ror.org/00ydy7x73 University of the Southwest'),
(40815, 'https://ror.org/00yew9b22', 'en', 1, 'https://ror.org/00yew9b22 Fondo Internazionale per lo Sviluppo Agricolo Fonds International de DƩveloppement Agricole International Fund for Agricultural Development'),
(40816, 'https://ror.org/00ygy3d85', 'it', 1, 'https://ror.org/00ygy3d85 Institute for Applied Mathematics Mauro Picone Istituto per le Applicazioni del Calcolo Mauro Picone'),
(40817, 'https://ror.org/00yh09097', 'en', 1, 'https://ror.org/00yh09097 Del Valle Independent School District'),
(40818, 'https://ror.org/00yjjd343', 'en', 1, 'https://ror.org/00yjjd343 Uummannaq Polar Institute'),
(40819, 'https://ror.org/00ym2nt63', 'it', 1, 'https://ror.org/00ym2nt63 Conservatorio di Musica G.F. Ghedini'),
(40820, 'https://ror.org/00ymj2634', 'en', 1, 'https://ror.org/00ymj2634 United Services Automobile Association'),
(40821, 'https://ror.org/00ymrc254', 'en', 1, 'https://ror.org/00ymrc254 Curtis Institute of Music'),
(40822, 'https://ror.org/00yn60108', 'en', 1, 'https://ror.org/00yn60108 Australian Mathematical Sciences Institute'),
(40823, 'https://ror.org/00yqvs913', 'en', 1, 'https://ror.org/00yqvs913 Scripture Union'),
(40824, 'https://ror.org/00yrwkd81', 'fr', 1, 'https://ror.org/00yrwkd81 Ministère de la Santé'),
(40825, 'https://ror.org/00ys2za03', 'en', 1, 'https://ror.org/00ys2za03 Montana Department of Transportation'),
(40826, 'https://ror.org/00yte8n94', 'en', 1, 'https://ror.org/00yte8n94 Church Divinity School of the Pacific'),
(40827, 'https://ror.org/00yv7s489', 'en', 1, 'https://ror.org/00yv7s489 Ministry of Health and Sanitation'),
(40828, 'https://ror.org/00yw25n09', 'en', 1, 'https://ror.org/00yw25n09 Shanghai Veterinary Research Institute äø­å›½å†œäøšē§‘å­¦é™¢äøŠęµ·å…½åŒ»ē ”ē©¶ę‰€'),
(40829, 'https://ror.org/00yw34h52', 'fr', 1, 'https://ror.org/00yw34h52 Institut SupĆ©rieur d''Ɖlectronique de Paris'),
(40830, 'https://ror.org/00z0g8n94', 'en', 1, 'https://ror.org/00z0g8n94 Kalmyk Institute for Humanities Research ŠšŠ°Š»Š¼Ń‹Ń†ŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… исслеГований'),
(40831, 'https://ror.org/00z0n4g71', 'en', 1, 'https://ror.org/00z0n4g71 PLA Electronic Engineering Institute 中国人民解放军电子巄程学院'),
(40832, 'https://ror.org/00z2dj373', 'en', 1, 'https://ror.org/00z2dj373 A Night For Sight'),
(40833, 'https://ror.org/00z3ptn78', 'en', 1, 'https://ror.org/00z3ptn78 Micro Insurance Academy'),
(40834, 'https://ror.org/00z6sta78', 'en', 1, 'https://ror.org/00z6sta78 Citrus Growers Association'),
(40835, 'https://ror.org/00z79gn62', 'en', 1, 'https://ror.org/00z79gn62 WaterAid'),
(40836, 'https://ror.org/00zagyr65', 'en', 1, 'https://ror.org/00zagyr65 Forestry Research Institute of Nigeria'),
(40837, 'https://ror.org/00zbhen47', 'de', 1, 'https://ror.org/00zbhen47 Berlin-Weissensee Art Academy Kunsthochschule Berlin-Weißensee'),
(40838, 'https://ror.org/00zbk1w77', 'no_lang_code', 1, 'https://ror.org/00zbk1w77 Hess (United States)'),
(40839, 'https://ror.org/00zbydh86', 'en', 1, 'https://ror.org/00zbydh86 Truett-McConnell College'),
(40840, 'https://ror.org/00zfh7f80', 'en', 1, 'https://ror.org/00zfh7f80 Korea Disabled People s Development Institute ķ•œźµ­ģž„ģ• ģøź°œė°œģ›'),
(40841, 'https://ror.org/00zh1bv32', 'en', 1, 'https://ror.org/00zh1bv32 DuBois Business College'),
(40842, 'https://ror.org/00zhf6p05', 'en', 1, 'https://ror.org/00zhf6p05 Reid State Technical College'),
(40843, 'https://ror.org/00zhwjs36', 'en', 1, 'https://ror.org/00zhwjs36 Center for Advancing Innovation'),
(40844, 'https://ror.org/00zjgt856', 'en', 1, 'https://ror.org/00zjgt856 Guangxi Zhuang Autonomous Region Museum å¹æč„æå£®ę—č‡Ŗę²»åŒŗč‡Ŗē„¶åšē‰©é¦†'),
(40845, 'https://ror.org/00zkesn06', 'en', 1, 'https://ror.org/00zkesn06 Connecticut Department of Agriculture'),
(40846, 'https://ror.org/00zkm9w64', 'no_lang_code', 1, 'https://ror.org/00zkm9w64 Emcure Pharmaceuticals (India)'),
(40847, 'https://ror.org/00zmy1708', 'en', 1, 'https://ror.org/00zmy1708 Maryhill School of Theology'),
(40848, 'https://ror.org/00znwdt50', 'en', 1, 'https://ror.org/00znwdt50 Newfoundland and Labrador Arts Council'),
(40849, 'https://ror.org/00zpk0t94', 'no_lang_code', 1, 'https://ror.org/00zpk0t94 Arctic Portal'),
(40850, 'https://ror.org/00ztehj94', 'en', 1, 'https://ror.org/00ztehj94 Swami Ramanand Teerth Rural Medical College'),
(40851, 'https://ror.org/00zv0wd17', 'en', 1, 'https://ror.org/00zv0wd17 Center for Information Technology Research in the Interest of Society'),
(40852, 'https://ror.org/0100cvt49', 'en', 1, 'https://ror.org/0100cvt49 Centre national du cuir et de la chaussure National Center for Leather and Shoes Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„Ų¬Ł„ŁˆŲÆ ŁˆŲ§Ł„Ų£Ų­Ų°ŁŠŲ©'),
(40853, 'https://ror.org/0101we292', 'en', 1, 'https://ror.org/0101we292 National Centre of Excellence in Analytical Chemistry'),
(40854, 'https://ror.org/01029e417', 'en', 1, 'https://ror.org/01029e417 Carver Bible College'),
(40855, 'https://ror.org/01047m564', 'en', 1, 'https://ror.org/01047m564 Flower Valley Conservation Trust'),
(40856, 'https://ror.org/01048jt31', 'en', 1, 'https://ror.org/01048jt31 Seacoast Career Schools'),
(40857, 'https://ror.org/0104aqe39', 'en', 1, 'https://ror.org/0104aqe39 Longy School of Music of Bard College'),
(40858, 'https://ror.org/01064v583', 'en', 1, 'https://ror.org/01064v583 Gemological Institute of America'),
(40859, 'https://ror.org/0107rkg57', 'nl', 1, 'https://ror.org/0107rkg57 GGZ Drenthe'),
(40860, 'https://ror.org/010dgs567', 'no_lang_code', 1, 'https://ror.org/010dgs567 Deurali Janta Pharmaceuticals (Nepal)'),
(40861, 'https://ror.org/010dgsx92', 'en', 1, 'https://ror.org/010dgsx92 Pulaski Technical College'),
(40862, 'https://ror.org/010dzxm21', 'en', 1, 'https://ror.org/010dzxm21 Barton Peveril College'),
(40863, 'https://ror.org/010e8pt90', 'no_lang_code', 1, 'https://ror.org/010e8pt90 Abu Dhabi National Oil (United Arab Emirates) ؓركة ŲØŲŖŲ±ŁˆŁ„ أبوظبي Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(40864, 'https://ror.org/010h4ee55', 'en', 1, 'https://ror.org/010h4ee55 Institute for Urban and Environmental Studies äø­å›½ē¤¾ä¼šē§‘å­¦é™¢åŸŽåø‚å‘å±•äøŽēŽÆå¢ƒē ”ē©¶ę‰€'),
(40865, 'https://ror.org/010hxhm64', 'en', 1, 'https://ror.org/010hxhm64 Town Planning and Valuation Department'),
(40866, 'https://ror.org/010jszw77', 'en', 1, 'https://ror.org/010jszw77 Delaware Space Grant Consortium'),
(40867, 'https://ror.org/010paq956', 'en', 1, 'https://ror.org/010paq956 Yunnan Animal Science and Veterinary Institute äŗ‘å—ēœē•œē‰§å…½åŒ»ē§‘å­¦é™¢'),
(40868, 'https://ror.org/010w5pd13', 'en', 1, 'https://ror.org/010w5pd13 Kalahari Conservation Society'),
(40869, 'https://ror.org/010x33r48', 'en', 1, 'https://ror.org/010x33r48 London Postgraduate Medical and Dental Education'),
(40870, 'https://ror.org/0111cp837', 'en', 1, 'https://ror.org/0111cp837 Instytut Badań Systemowych Systems Research Institute'),
(40871, 'https://ror.org/01126vz29', 'en', 1, 'https://ror.org/01126vz29 Headley Trust'),
(40872, 'https://ror.org/0113pfa64', 'en', 1, 'https://ror.org/0113pfa64 Ministry of Government Legislation ė²•ģ œģ²˜'),
(40873, 'https://ror.org/0113xme87', 'en', 1, 'https://ror.org/0113xme87 Korea Energy Economics Institute ģ—ė„ˆģ§€ź²½ģ œģ—°źµ¬ģ›'),
(40874, 'https://ror.org/0116zdb24', 'no_lang_code', 1, 'https://ror.org/0116zdb24 State Street (United States)'),
(40875, 'https://ror.org/01184z192', 'en', 1, 'https://ror.org/01184z192 University of Dental Medicine at Mandalay'),
(40876, 'https://ror.org/0118vk431', 'no_lang_code', 1, 'https://ror.org/0118vk431 DYNAMICS Scientific and Production Center (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный центр Динамика'),
(40877, 'https://ror.org/011aefy29', 'en', 1, 'https://ror.org/011aefy29 College of Nursing in Celje Visoka zdravstvena Ŕola v Celju'),
(40878, 'https://ror.org/011bhgb43', 'en', 1, 'https://ror.org/011bhgb43 Pacifica Graduate Institute'),
(40879, 'https://ror.org/011bq0640', 'en', 1, 'https://ror.org/011bq0640 Ecole SupƩrieure des Industries Alimentaires de Tunis Higher Institute of Food Industries of Tunis'),
(40880, 'https://ror.org/011fyh806', 'en', 1, 'https://ror.org/011fyh806 Raipur Municipal Corporation ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤° नगर निगम'),
(40881, 'https://ror.org/011gedn87', 'en', 1, 'https://ror.org/011gedn87 Sussex Downs College'),
(40882, 'https://ror.org/011k8d702', 'no_lang_code', 1, 'https://ror.org/011k8d702 Mount Sylvia Diatomite (Australia)'),
(40883, 'https://ror.org/011mmzv10', 'en', 1, 'https://ror.org/011mmzv10 Odessa College'),
(40884, 'https://ror.org/011na1r14', 'en', 1, 'https://ror.org/011na1r14 New England School of Photography'),
(40885, 'https://ror.org/011nbgj79', 'en', 1, 'https://ror.org/011nbgj79 Institute of Coal of the Siberian Branch of the RAS Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠ³Š»Ń Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(40886, 'https://ror.org/011npsm46', 'en', 1, 'https://ror.org/011npsm46 National Institute of Pharmaceutical Education and Research'),
(40887, 'https://ror.org/011rbjx16', 'en', 1, 'https://ror.org/011rbjx16 New Jersey Department of Children and Families'),
(40888, 'https://ror.org/011rcn817', 'en', 1, 'https://ror.org/011rcn817 Massasoit Community College'),
(40889, 'https://ror.org/011sf9664', 'de', 1, 'https://ror.org/011sf9664 Museum am Schƶlerberg'),
(40890, 'https://ror.org/011shyd31', 'en', 1, 'https://ror.org/011shyd31 St. Helena Hospital Foundation'),
(40891, 'https://ror.org/011srkg41', 'en', 1, 'https://ror.org/011srkg41 National Institute Of Technology, Ishikawa College ēŸ³å·å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(40892, 'https://ror.org/011v81t74', 'en', 1, 'https://ror.org/011v81t74 Shenzhen Academy of Inspection and Quarantine ę·±åœ³åø‚ę£€éŖŒę£€ē–«ē§‘å­¦ē ”ē©¶é™¢'),
(40893, 'https://ror.org/011vtgm04', 'en', 1, 'https://ror.org/011vtgm04 Missouri State University–West Plains'),
(40894, 'https://ror.org/011vyws32', 'no_lang_code', 1, 'https://ror.org/011vyws32 Delta Information Systems (United States)'),
(40895, 'https://ror.org/011w0zz81', 'en', 1, 'https://ror.org/011w0zz81 African Technology Policy Studies Network'),
(40896, 'https://ror.org/011xh8y77', 'en', 1, 'https://ror.org/011xh8y77 Government Vellore Medical College'),
(40897, 'https://ror.org/011ze6662', 'en', 1, 'https://ror.org/011ze6662 Harry J. Lloyd Charitable Trust'),
(40898, 'https://ror.org/0120w5678', 'en', 1, 'https://ror.org/0120w5678 European Observatory on Health Systems and Policies'),
(40899, 'https://ror.org/0121en785', 'pt', 1, 'https://ror.org/0121en785 Prefeitura do MunicĆ­pio de SĆ£o Paulo'),
(40900, 'https://ror.org/0121whw78', 'en', 1, 'https://ror.org/0121whw78 Sergeev Institute of Environmental Geoscience Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŠµŠ¾ŃŠŗŠ¾Š»Š¾Š³ŠøŠø им.Š•.М.Дергеева Российской акаГемии наук');
INSERT INTO `rors` VALUES
(40901, 'https://ror.org/0122jkj38', 'no_lang_code', 1, 'https://ror.org/0122jkj38 Radiall (France)'),
(40902, 'https://ror.org/0123m2387', 'en', 1, 'https://ror.org/0123m2387 Institute and Academy of Multimedia InŔtitut in Akademija za Multimedije'),
(40903, 'https://ror.org/01251sa74', 'en', 1, 'https://ror.org/01251sa74 Ministry for Foreign Affairs Utrikesdepartementet'),
(40904, 'https://ror.org/01262d760', 'en', 1, 'https://ror.org/01262d760 CNI College'),
(40905, 'https://ror.org/0128xcr10', 'en', 1, 'https://ror.org/0128xcr10 Clear Passage Physical Therapy'),
(40906, 'https://ror.org/0129nkm21', 'en', 1, 'https://ror.org/0129nkm21 Big Sandy Community and Technical College'),
(40907, 'https://ror.org/012a18r91', 'en', 1, 'https://ror.org/012a18r91 Sukachev Institute of Forest Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° леса им. Š’. Š. Š”ŃƒŠŗŠ°Ń‡ŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(40908, 'https://ror.org/012c35a11', 'en', 1, 'https://ror.org/012c35a11 Missouri Department of Transportation'),
(40909, 'https://ror.org/012ds9j70', 'no_lang_code', 1, 'https://ror.org/012ds9j70 ZMQ Software Systems (India)'),
(40910, 'https://ror.org/012dywt31', 'en', 1, 'https://ror.org/012dywt31 Defence Laboratory Jodhpur ą¤°ą¤•ą„ą¤·ą¤¾ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾ ą¤œą„‹ą¤§ą¤Ŗą„ą¤°'),
(40911, 'https://ror.org/012fga139', 'en', 1, 'https://ror.org/012fga139 O''More College of Design'),
(40912, 'https://ror.org/012hetj48', 'no_lang_code', 1, 'https://ror.org/012hetj48 Forum For Social Studies'),
(40913, 'https://ror.org/012jge305', 'en', 1, 'https://ror.org/012jge305 Sotheby''s Institute of Art'),
(40914, 'https://ror.org/012rn8104', 'no_lang_code', 1, 'https://ror.org/012rn8104 Tidewater (United States)'),
(40915, 'https://ror.org/012rwzc24', 'no_lang_code', 1, 'https://ror.org/012rwzc24 Shanghai Biomodel Organism äøŠęµ·å—ę–¹ęØ”å¼ē”Ÿē‰©ē§‘ęŠ€å‘å±•ęœ‰é™å…¬åø'),
(40916, 'https://ror.org/012s3vx96', 'en', 1, 'https://ror.org/012s3vx96 Saamelaisalueen Koulutuskeskus SƔmi Education Institute'),
(40917, 'https://ror.org/012sa7x09', 'en', 1, 'https://ror.org/012sa7x09 Eastfield College'),
(40918, 'https://ror.org/012wk3x67', 'en', 1, 'https://ror.org/012wk3x67 Metro Transit'),
(40919, 'https://ror.org/012wxwj57', 'es', 1, 'https://ror.org/012wxwj57 Universidad del Papaloapan'),
(40920, 'https://ror.org/012xmyh22', 'no_lang_code', 1, 'https://ror.org/012xmyh22 31 Degrees (France)'),
(40921, 'https://ror.org/012xv3367', 'en', 1, 'https://ror.org/012xv3367 Scientific Committee on Antarctic Research'),
(40922, 'https://ror.org/0131gn249', 'en', 1, 'https://ror.org/0131gn249 Chosun University Hospital'),
(40923, 'https://ror.org/0132gqh60', 'en', 1, 'https://ror.org/0132gqh60 Southwestern Baptist Theological Seminary'),
(40924, 'https://ror.org/01337pb37', 'en', 1, 'https://ror.org/01337pb37 Military Technical College'),
(40925, 'https://ror.org/0136vj189', 'no_lang_code', 1, 'https://ror.org/0136vj189 Power Grid Corporation (India)'),
(40926, 'https://ror.org/0137p4457', 'en', 1, 'https://ror.org/0137p4457 Nashotah House Theological Seminary'),
(40927, 'https://ror.org/0137z5x77', 'no_lang_code', 1, 'https://ror.org/0137z5x77 Broadcom (Canada)'),
(40928, 'https://ror.org/0139q7h64', 'no_lang_code', 1, 'https://ror.org/0139q7h64 W.W Grainger (United States)'),
(40929, 'https://ror.org/013am1j13', 'en', 1, 'https://ror.org/013am1j13 Rocky Mountain College of Art and Design'),
(40930, 'https://ror.org/013b2jw60', 'en', 1, 'https://ror.org/013b2jw60 Georgia Space Grant Consortium'),
(40931, 'https://ror.org/013c7pz75', 'no_lang_code', 1, 'https://ror.org/013c7pz75 Givaudan (France)'),
(40932, 'https://ror.org/013cxrg50', 'en', 1, 'https://ror.org/013cxrg50 Larnaca College'),
(40933, 'https://ror.org/013f0nb72', 'en', 1, 'https://ror.org/013f0nb72 Compton Community College District'),
(40934, 'https://ror.org/013gvmj95', 'no_lang_code', 1, 'https://ror.org/013gvmj95 Hallmark Cards (United States)'),
(40935, 'https://ror.org/013hg1t45', 'en', 1, 'https://ror.org/013hg1t45 Government of Tamil Nadu ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®…ą®°ą®šąÆ'),
(40936, 'https://ror.org/013hjj010', 'en', 1, 'https://ror.org/013hjj010 Phillips Community College of the University of Arkansas'),
(40937, 'https://ror.org/013jp2d40', 'en', 1, 'https://ror.org/013jp2d40 British School at Athens Βρετανική Σχολή Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(40938, 'https://ror.org/013k56n15', 'no_lang_code', 1, 'https://ror.org/013k56n15 Australian Wool Innovation (Australia)'),
(40939, 'https://ror.org/013kb0k13', 'en', 1, 'https://ror.org/013kb0k13 China Waterborne Transport Research Institute äŗ¤é€ščæč¾“éƒØę°“čæē§‘å­¦ē ”ē©¶ę‰€'),
(40940, 'https://ror.org/013pjny96', 'en', 1, 'https://ror.org/013pjny96 Council for British Research in the Levant'),
(40941, 'https://ror.org/013qy4n59', 'en', 1, 'https://ror.org/013qy4n59 Central Institute of Post-Harvest Engineering and Technology'),
(40942, 'https://ror.org/013r05090', 'en', 1, 'https://ror.org/013r05090 Riverside College'),
(40943, 'https://ror.org/013rsnt52', 'en', 1, 'https://ror.org/013rsnt52 Hazard Community and Technical College'),
(40944, 'https://ror.org/013s2jj70', 'no_lang_code', 1, 'https://ror.org/013s2jj70 Hill Holliday (United States)'),
(40945, 'https://ror.org/013s90815', 'en', 1, 'https://ror.org/013s90815 Lanzhou Institute of Husbandry and Pharmaceutical Sciences äø­å›½å†œäøšē§‘å­¦é™¢å…°å·žē•œē‰§äøŽå…½čÆē ”ē©¶ę‰€'),
(40946, 'https://ror.org/013spkf41', 'en', 1, 'https://ror.org/013spkf41 Instituto da Defesa Nacional National Defense Institute'),
(40947, 'https://ror.org/013t96v18', 'en', 1, 'https://ror.org/013t96v18 Biotechnology Research Center'),
(40948, 'https://ror.org/013w40a11', 'no_lang_code', 1, 'https://ror.org/013w40a11 eNeura (United States)'),
(40949, 'https://ror.org/013wq3j16', 'no_lang_code', 1, 'https://ror.org/013wq3j16 Shohoku College ę¹˜åŒ—ēŸ­ęœŸå¤§å­¦'),
(40950, 'https://ror.org/013z3yn41', 'en', 1, 'https://ror.org/013z3yn41 Adana Bilim ve Teknloji Üniversitesi Adana Science and Technology University'),
(40951, 'https://ror.org/0141xw169', 'en', 1, 'https://ror.org/0141xw169 Institute for Space Astrophysics and Planetology Istituto Di Astrofisica E Planetologia Spaziali'),
(40952, 'https://ror.org/01422c992', 'en', 1, 'https://ror.org/01422c992 Minnesota State College-Southeast Technical'),
(40953, 'https://ror.org/014303d61', 'en', 1, 'https://ror.org/014303d61 Ohio Department of Transportation'),
(40954, 'https://ror.org/014319z45', 'en', 1, 'https://ror.org/014319z45 Cardinal Tien College of Healthcare and Management č€•čŽ˜å„åŗ·ē®”ē†å°ˆē§‘å­øę ”'),
(40955, 'https://ror.org/01434tj03', 'fr', 1, 'https://ror.org/01434tj03 Office National pour l''Environnement'),
(40956, 'https://ror.org/0144edt49', 'en', 1, 'https://ror.org/0144edt49 Muskegon Community College'),
(40957, 'https://ror.org/0145r0q31', 'fr', 1, 'https://ror.org/0145r0q31 Agence de Protection et d''AmƩnagement du Littoral'),
(40958, 'https://ror.org/0149a7069', 'en', 1, 'https://ror.org/0149a7069 Advanced Foods and Materials Network'),
(40959, 'https://ror.org/0149fbq67', 'it', 1, 'https://ror.org/0149fbq67 Conservatorio Statale di Musica A. Buzzolla'),
(40960, 'https://ror.org/014bdwq31', 'en', 1, 'https://ror.org/014bdwq31 DKTE Society''s Textile and Engineering Institute'),
(40961, 'https://ror.org/014ctt859', 'en', 1, 'https://ror.org/014ctt859 Birla Institute of Technology and Science - Hyderabad Campus'),
(40962, 'https://ror.org/014dwa961', 'en', 1, 'https://ror.org/014dwa961 South Florida Bible College & Theological Seminary'),
(40963, 'https://ror.org/014ezhs73', 'no_lang_code', 1, 'https://ror.org/014ezhs73 Pacific Shipyards (United States)'),
(40964, 'https://ror.org/014fm3f82', 'en', 1, 'https://ror.org/014fm3f82 Kanawha County Schools'),
(40965, 'https://ror.org/014hmqv77', 'en', 1, 'https://ror.org/014hmqv77 Dudley Group NHS Foundation Trust'),
(40966, 'https://ror.org/014jj9v53', 'en', 1, 'https://ror.org/014jj9v53 Society for Nutrition Education and Health Action'),
(40967, 'https://ror.org/014m1ef46', 'no_lang_code', 1, 'https://ror.org/014m1ef46 Mitsubishi Corporation (Japan) äø‰č±å•†äŗ‹ę Ŗå¼ä¼šē¤¾'),
(40968, 'https://ror.org/014matr28', 'en', 1, 'https://ror.org/014matr28 United States Golf Association'),
(40969, 'https://ror.org/014mx8j54', 'no_lang_code', 1, 'https://ror.org/014mx8j54 Devon Energy (United States)'),
(40970, 'https://ror.org/014n3ck53', 'en', 1, 'https://ror.org/014n3ck53 Hudson Institute'),
(40971, 'https://ror.org/014p3qz82', 'en', 1, 'https://ror.org/014p3qz82 Ministry of Public Administration ą¦œą¦Øą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦øą¦Ø ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(40972, 'https://ror.org/014pn8930', 'en', 1, 'https://ror.org/014pn8930 National Blood Transfusion Service'),
(40973, 'https://ror.org/014tm6y52', 'en', 1, 'https://ror.org/014tm6y52 Osaka Jonan Womens Junior College å¤§é˜ŖåŸŽå—å„³å­ēŸ­ęœŸå¤§å­¦'),
(40974, 'https://ror.org/014ty7t94', 'en', 1, 'https://ror.org/014ty7t94 African Forum for Agricultural Advisory Services'),
(40975, 'https://ror.org/014vbqy29', 'en', 1, 'https://ror.org/014vbqy29 American Theatre Wing'),
(40976, 'https://ror.org/014vrtf08', 'en', 1, 'https://ror.org/014vrtf08 Wade College'),
(40977, 'https://ror.org/014vxaz07', 'en', 1, 'https://ror.org/014vxaz07 Nazarene Theological College'),
(40978, 'https://ror.org/014w0p014', 'en', 1, 'https://ror.org/014w0p014 Hong Kong College of Technology é¦™ęøÆå°ˆę„­é€²äæ®å­øę ”'),
(40979, 'https://ror.org/014wxtx83', 'en', 1, 'https://ror.org/014wxtx83 Sightsavers'),
(40980, 'https://ror.org/014y40p65', 'no_lang_code', 1, 'https://ror.org/014y40p65 H.B. Fuller (United States)'),
(40981, 'https://ror.org/014zhhr61', 'en', 1, 'https://ror.org/014zhhr61 Belarusian Medical Academy of Post-Graduate Education Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š¼ŠµŠ“Ń‹Ń†Ń‹Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń ŠæŠ°ŃŠ»ŃŠ“Ń‹ŠæŠ»Š¾Š¼Š½Š°Š¹ Š°Š“ŃƒŠŗŠ°Ń†Ń‹Ń–'),
(40982, 'https://ror.org/015455k47', 'en', 1, 'https://ror.org/015455k47 KƵrgem Usuteaduslik Seminar Tartu Theological Seminary'),
(40983, 'https://ror.org/0155ftp45', 'en', 1, 'https://ror.org/0155ftp45 Mid Michigan Autism Association'),
(40984, 'https://ror.org/0156dtt23', 'en', 1, 'https://ror.org/0156dtt23 Arts Council of Northern Ireland'),
(40985, 'https://ror.org/0157ysg68', 'no_lang_code', 1, 'https://ror.org/0157ysg68 ETC East Africa (Kenya)'),
(40986, 'https://ror.org/0158z1f36', 'en', 1, 'https://ror.org/0158z1f36 Pierce College'),
(40987, 'https://ror.org/015a98c38', 'de', 1, 'https://ror.org/015a98c38 Accadis Hochschule Bad Homburg'),
(40988, 'https://ror.org/015b60b88', 'en', 1, 'https://ror.org/015b60b88 Porterville College'),
(40989, 'https://ror.org/015ddf565', 'en', 1, 'https://ror.org/015ddf565 Michigan Department of Military and Veterans Affairs'),
(40990, 'https://ror.org/015dfn538', 'en', 1, 'https://ror.org/015dfn538 Turkish Armed Forces Türk Silahlı Kuvvetleri'),
(40991, 'https://ror.org/015dhe595', 'en', 1, 'https://ror.org/015dhe595 Modibbo Adama University of Technology'),
(40992, 'https://ror.org/015j7c446', 'en', 1, 'https://ror.org/015j7c446 Islamic Azad University of Najafabad دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł†Ų¬Łā€ŒŲ¢ŲØŲ§ŲÆ'),
(40993, 'https://ror.org/015jrdc82', 'en', 1, 'https://ror.org/015jrdc82 Consorci Sanitari del Maresme Maresme Health Consortium'),
(40994, 'https://ror.org/015pmkr43', 'fr', 1, 'https://ror.org/015pmkr43 Haute Ɖcole PĆ©dagogique BEJUNE'),
(40995, 'https://ror.org/015qf5s17', 'en', 1, 'https://ror.org/015qf5s17 Radom College Radomska Szkoła Wyższa'),
(40996, 'https://ror.org/015s51n07', 'en', 1, 'https://ror.org/015s51n07 International Advanced Research Centre for Powder Metallurgy and New Materials'),
(40997, 'https://ror.org/015sfke75', 'no_lang_code', 1, 'https://ror.org/015sfke75 Vivus (United States)'),
(40998, 'https://ror.org/015tw5088', 'en', 1, 'https://ror.org/015tw5088 Regents Theological College'),
(40999, 'https://ror.org/015v04m58', 'en', 1, 'https://ror.org/015v04m58 ICFAI Business School'),
(41000, 'https://ror.org/015vgt264', 'en', 1, 'https://ror.org/015vgt264 Institute of Chemistry of High-Purity Substances them. G.G.Devyatyh Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии высокочистых веществ им'),
(41001, 'https://ror.org/015w62071', 'no_lang_code', 1, 'https://ror.org/015w62071 Iran Khodro (Iran) Ų§ŪŒŲ±Ų§Ł† Ų®ŁˆŲÆŲ±Łˆā€Žā€Ž'),
(41002, 'https://ror.org/015z60w50', 'en', 1, 'https://ror.org/015z60w50 Center for Advanced Legal Studies'),
(41003, 'https://ror.org/015zbz228', 'en', 1, 'https://ror.org/015zbz228 Space Research Institute Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(41004, 'https://ror.org/01606az08', 'en', 1, 'https://ror.org/01606az08 Education Labour Relations Council'),
(41005, 'https://ror.org/0160f3285', 'en', 1, 'https://ror.org/0160f3285 Council of Independent Colleges'),
(41006, 'https://ror.org/0162ehq15', 'en', 1, 'https://ror.org/0162ehq15 Texas Juvenile Justice Department'),
(41007, 'https://ror.org/0163kd003', 'en', 1, 'https://ror.org/0163kd003 Pastwowa Wysza Szkoa Zawodowa im. Witelona w Legnicy Witelon State University of Applied Sciences in Legnica'),
(41008, 'https://ror.org/0163r0829', 'en', 1, 'https://ror.org/0163r0829 Polytechnic Marko Marulic VeleučiliÅ”te "Marko Marulić"'),
(41009, 'https://ror.org/0167m9538', 'en', 1, 'https://ror.org/0167m9538 African Training and Research Centre in Administration for Development Centre Africain de Formation et de Recherche Administratives pour le DƩveloppement'),
(41010, 'https://ror.org/0167nty12', 'fr', 1, 'https://ror.org/0167nty12 Ɖcole des Avocats du Grand Ouest'),
(41011, 'https://ror.org/0167r2g29', 'de', 1, 'https://ror.org/0167r2g29 Merz Akademie'),
(41012, 'https://ror.org/016936j45', 'en', 1, 'https://ror.org/016936j45 Association of State Road Transport Undertakings'),
(41013, 'https://ror.org/0169ypx19', 'en', 1, 'https://ror.org/0169ypx19 South Dakota Space Grant Consortium'),
(41014, 'https://ror.org/016a6js89', 'en', 1, 'https://ror.org/016a6js89 Richmont Graduate University'),
(41015, 'https://ror.org/016aq6r42', 'en', 1, 'https://ror.org/016aq6r42 Mahindra United World College India'),
(41016, 'https://ror.org/016b0by26', 'en', 1, 'https://ror.org/016b0by26 Monroe County Community College'),
(41017, 'https://ror.org/016bssv73', 'en', 1, 'https://ror.org/016bssv73 Southern African Clothing & Textile Workers’ Union'),
(41018, 'https://ror.org/016d6bq56', 'en', 1, 'https://ror.org/016d6bq56 Aeronautical Development Agency'),
(41019, 'https://ror.org/016gc3g35', 'en', 1, 'https://ror.org/016gc3g35 San Francisco Conservatory of Music'),
(41020, 'https://ror.org/016j33873', 'no_lang_code', 1, 'https://ror.org/016j33873 Crocus Technology (France)'),
(41021, 'https://ror.org/016j6dw22', 'en', 1, 'https://ror.org/016j6dw22 Burlington College'),
(41022, 'https://ror.org/016kfbw71', 'en', 1, 'https://ror.org/016kfbw71 MEF International School'),
(41023, 'https://ror.org/016nn4m97', 'en', 1, 'https://ror.org/016nn4m97 National Root Crops Research Institute'),
(41024, 'https://ror.org/016q7rz35', 'en', 1, 'https://ror.org/016q7rz35 Notre Dame High School'),
(41025, 'https://ror.org/016rj7614', 'no_lang_code', 1, 'https://ror.org/016rj7614 Coffey International (Australia)'),
(41026, 'https://ror.org/016tawm39', 'en', 1, 'https://ror.org/016tawm39 Bangalore Baptist Hospital'),
(41027, 'https://ror.org/016vvkz13', 'en', 1, 'https://ror.org/016vvkz13 European Patent Organisation'),
(41028, 'https://ror.org/016x6xx47', 'en', 1, 'https://ror.org/016x6xx47 Baptist Theological College of Southern Africa'),
(41029, 'https://ror.org/016zjn618', 'en', 1, 'https://ror.org/016zjn618 Institute of Metal Superplasticity Problems Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем сверхпластичности металлов Š ŠŠ'),
(41030, 'https://ror.org/016zq4f37', 'en', 1, 'https://ror.org/016zq4f37 Hochschule für Gestaltung Schwäbisch Gmünd University of Design Schwäbisch Gmünd'),
(41031, 'https://ror.org/0170vdc43', 'en', 1, 'https://ror.org/0170vdc43 Forum for Ethics Review Committees in India'),
(41032, 'https://ror.org/0172s2g64', 'fr', 1, 'https://ror.org/0172s2g64 Institut de Recherche sur le Maghreb Contemporain'),
(41033, 'https://ror.org/0174nh398', 'en', 1, 'https://ror.org/0174nh398 Levine Cancer Institute'),
(41034, 'https://ror.org/0174qhh23', 'no_lang_code', 1, 'https://ror.org/0174qhh23 BoostHeat (France)'),
(41035, 'https://ror.org/0174y3381', 'en', 1, 'https://ror.org/0174y3381 Medical Laboratory Science Council of Nigeria'),
(41036, 'https://ror.org/017bbc354', 'de', 1, 'https://ror.org/017bbc354 Turkish-German University Türk-Alman Üniversitesi Türkisch-Deutsche Universität'),
(41037, 'https://ror.org/017c99632', 'en', 1, 'https://ror.org/017c99632 D.I. Mendeleyev All-Russian Institute for Metrology Š’ŠŠ˜Š˜ метрологии им. Š”.И.МенГелеева, ломоносовское отГеление'),
(41038, 'https://ror.org/017cc7f02', 'en', 1, 'https://ror.org/017cc7f02 Achieving Health Nigeria Initiative'),
(41039, 'https://ror.org/017dfq504', 'en', 1, 'https://ror.org/017dfq504 Creative New Zealand'),
(41040, 'https://ror.org/017e2a614', 'en', 1, 'https://ror.org/017e2a614 College of Management ā€œEdukacjaā€ Wyższa Szkoła Zarządzania "Edukacja"'),
(41041, 'https://ror.org/017eb5121', 'no_lang_code', 1, 'https://ror.org/017eb5121 Honeywell (India)'),
(41042, 'https://ror.org/017f8n968', 'no_lang_code', 1, 'https://ror.org/017f8n968 Gencia (United States)'),
(41043, 'https://ror.org/017fwsj06', 'no_lang_code', 1, 'https://ror.org/017fwsj06 Fujifilm (United States)'),
(41044, 'https://ror.org/017gxrm85', 'en', 1, 'https://ror.org/017gxrm85 Incheon St. Mary''s Hospital'),
(41045, 'https://ror.org/017kqpz20', 'en', 1, 'https://ror.org/017kqpz20 Northern (Arctic) Federal University Деверный (Арктический) Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. Š’. Ломоносова'),
(41046, 'https://ror.org/017kta585', 'no_lang_code', 1, 'https://ror.org/017kta585 Adivit (Spain)'),
(41047, 'https://ror.org/017mjs592', 'en', 1, 'https://ror.org/017mjs592 Illinois Space Grant Consortium'),
(41048, 'https://ror.org/017q93w69', 'no_lang_code', 1, 'https://ror.org/017q93w69 Ricoh (United States)'),
(41049, 'https://ror.org/017qk3p19', 'en', 1, 'https://ror.org/017qk3p19 Redcliffe College'),
(41050, 'https://ror.org/017xz5989', 'en', 1, 'https://ror.org/017xz5989 Chinese National Human Genome Center at Shanghai å›½å®¶äŗŗē±»åŸŗå› ē»„å—ę–¹ē ”ē©¶äø­åæƒ'),
(41051, 'https://ror.org/017ycwt89', 'en', 1, 'https://ror.org/017ycwt89 KMCT Group of Educational Institutions'),
(41052, 'https://ror.org/017zhda45', 'en', 1, 'https://ror.org/017zhda45 Queensland Centre for Mental Health Research'),
(41053, 'https://ror.org/0181xpd52', 'en', 1, 'https://ror.org/0181xpd52 International Graduate School of English źµ­ģ œģ˜ģ–“ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(41054, 'https://ror.org/0182rkr07', 'en', 1, 'https://ror.org/0182rkr07 Edison Community College'),
(41055, 'https://ror.org/01831n272', 'en', 1, 'https://ror.org/01831n272 Institute of Experimental Mineralogy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ минералогии'),
(41056, 'https://ror.org/01851c371', 'no_lang_code', 1, 'https://ror.org/01851c371 Itron (United States)'),
(41057, 'https://ror.org/018546558', 'en', 1, 'https://ror.org/018546558 Yamano College of Aesthetics å±±é‡Žē¾Žå®¹čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(41058, 'https://ror.org/01855q607', 'en', 1, 'https://ror.org/01855q607 Ministry of Education and Vocation Training, Ministry of Education and Vocational Training Wizara ya Elimu na Mafunzo ya Ufundi'),
(41059, 'https://ror.org/018596x49', 'en', 1, 'https://ror.org/018596x49 Fortis Healthcare'),
(41060, 'https://ror.org/0185z7g17', 'no_lang_code', 1, 'https://ror.org/0185z7g17 Vifor Pharma (Switzerland)'),
(41061, 'https://ror.org/0186jds22', 'en', 1, 'https://ror.org/0186jds22 Indian Jute Industries Research Association'),
(41062, 'https://ror.org/0186tjy74', 'en', 1, 'https://ror.org/0186tjy74 Muscatine Community College'),
(41063, 'https://ror.org/0186tvr04', 'en', 1, 'https://ror.org/0186tvr04 Circle in the Square Theatre School'),
(41064, 'https://ror.org/0186w6z26', 'en', 1, 'https://ror.org/0186w6z26 Xinjiang Institute of Materia Medica ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗčÆē‰©ē ”ē©¶ę‰€'),
(41065, 'https://ror.org/018788w33', 'no_lang_code', 1, 'https://ror.org/018788w33 Astellas Pharma (United Kingdom)'),
(41066, 'https://ror.org/0188hng36', 'en', 1, 'https://ror.org/0188hng36 Mehrangarh Museum Trust'),
(41067, 'https://ror.org/018afr131', 'en', 1, 'https://ror.org/018afr131 Knipovich Polar Research Institute of Marine Fisheries and Oceanography ŠšŠ½ŠøŠæŠ¾Š²ŠøŃ‡ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠ¾Š»ŃŃ€Š½Ń‹Ń… исслеГований морского рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø океанографии'),
(41068, 'https://ror.org/018axtd57', 'no_lang_code', 1, 'https://ror.org/018axtd57 Array BioPharma (United States)'),
(41069, 'https://ror.org/018bksf75', 'en', 1, 'https://ror.org/018bksf75 Shawnee Mission Medical Center'),
(41070, 'https://ror.org/018ct7v08', 'en', 1, 'https://ror.org/018ct7v08 Department of Education'),
(41071, 'https://ror.org/018ewp664', 'no_lang_code', 1, 'https://ror.org/018ewp664 Grow More Seeds and Chemicals (Uganda)'),
(41072, 'https://ror.org/018g0vw88', 'en', 1, 'https://ror.org/018g0vw88 Accademia nazionale di danza National Academy of Dance'),
(41073, 'https://ror.org/018h60391', 'en', 1, 'https://ror.org/018h60391 Institut suisse de mƩdecine Ʃquine Swiss Institute of Equine Medicine'),
(41074, 'https://ror.org/018hr1j41', 'en', 1, 'https://ror.org/018hr1j41 Ghana AIDS Commission'),
(41075, 'https://ror.org/018hvk597', 'en', 1, 'https://ror.org/018hvk597 Mt. San Jacinto College'),
(41076, 'https://ror.org/018jcmk18', 'it', 1, 'https://ror.org/018jcmk18 Accademia di Belle Arti di Urbino'),
(41077, 'https://ror.org/018kq8f36', 'no_lang_code', 1, 'https://ror.org/018kq8f36 Borsa Istanbul (Turkey)'),
(41078, 'https://ror.org/018m84039', 'no_lang_code', 1, 'https://ror.org/018m84039 Tata Teleservices (India)'),
(41079, 'https://ror.org/018m8fh96', 'no_lang_code', 1, 'https://ror.org/018m8fh96 Britest (United Kingdom)'),
(41080, 'https://ror.org/018mbvt80', 'en', 1, 'https://ror.org/018mbvt80 German open Business School Hochschule für Wirtschaft und Verwaltung'),
(41081, 'https://ror.org/018mjrf43', 'en', 1, 'https://ror.org/018mjrf43 Open Rights Group'),
(41082, 'https://ror.org/018nbcn37', 'en', 1, 'https://ror.org/018nbcn37 Rhode Island Sea Grant'),
(41083, 'https://ror.org/018nw3344', 'no_lang_code', 1, 'https://ror.org/018nw3344 AstraZeneca (Australia)'),
(41084, 'https://ror.org/018qsef31', 'en', 1, 'https://ror.org/018qsef31 Northern Gulf Institute'),
(41085, 'https://ror.org/018rk1f74', 'en', 1, 'https://ror.org/018rk1f74 Eastern and Southern Africa small scale Farmers’ Forum'),
(41086, 'https://ror.org/018rz4f73', 'en', 1, 'https://ror.org/018rz4f73 Cheetah Conservation Fund'),
(41087, 'https://ror.org/018t8yw14', 'nl', 1, 'https://ror.org/018t8yw14 Hotelschool Den Haag, Hotelschool The Hague'),
(41088, 'https://ror.org/018xbyb32', 'en', 1, 'https://ror.org/018xbyb32 College of Tourism'),
(41089, 'https://ror.org/018xpp991', 'en', 1, 'https://ror.org/018xpp991 Northeast Alabama Community College'),
(41090, 'https://ror.org/018y7q663', 'en', 1, 'https://ror.org/018y7q663 Pure Earth'),
(41091, 'https://ror.org/018yj7q57', 'en', 1, 'https://ror.org/018yj7q57 International Collective in Support of Fishworkers'),
(41092, 'https://ror.org/018zase94', 'en', 1, 'https://ror.org/018zase94 All India Institute of Physical Medicine and Rehabilitation'),
(41093, 'https://ror.org/018zcf966', 'en', 1, 'https://ror.org/018zcf966 New York State Governor''s Traffic Safety Committee'),
(41094, 'https://ror.org/01924nm42', 'en', 1, 'https://ror.org/01924nm42 Fifth Tianjin Central Hospital å¤©ę“„åø‚ē¬¬äŗ”äø­åæƒåŒ»é™¢'),
(41095, 'https://ror.org/0192y2p73', 'en', 1, 'https://ror.org/0192y2p73 New Jersey Department of Law and Public Safety'),
(41096, 'https://ror.org/019374v57', 'fr', 1, 'https://ror.org/019374v57 SantƩ Espoir Vie CƓte d''Ivoire'),
(41097, 'https://ror.org/0195rjn62', 'en', 1, 'https://ror.org/0195rjn62 Lambeth College'),
(41098, 'https://ror.org/01961aj60', 'en', 1, 'https://ror.org/01961aj60 Stella Mann College of Performing Arts'),
(41099, 'https://ror.org/0196eae03', 'en', 1, 'https://ror.org/0196eae03 American Academy of Nursing'),
(41100, 'https://ror.org/0198sv425', 'en', 1, 'https://ror.org/0198sv425 National Institute of Open Schooling ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æą„€ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(41101, 'https://ror.org/019cns802', 'en', 1, 'https://ror.org/019cns802 Jeju International University'),
(41102, 'https://ror.org/019grq336', 'en', 1, 'https://ror.org/019grq336 Mecklenburg County Government'),
(41103, 'https://ror.org/019j3tz70', 'en', 1, 'https://ror.org/019j3tz70 Institute of Geophysics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геофизики'),
(41104, 'https://ror.org/019n4sb32', 'en', 1, 'https://ror.org/019n4sb32 Connors State College'),
(41105, 'https://ror.org/019qf8a90', 'no_lang_code', 1, 'https://ror.org/019qf8a90 Deseret Laboratories (United States)'),
(41106, 'https://ror.org/019t2rq07', 'en', 1, 'https://ror.org/019t2rq07 University of Northwestern'),
(41107, 'https://ror.org/019tc7185', 'no_lang_code', 1, 'https://ror.org/019tc7185 Faculty of 1000 (United Kingdom)'),
(41108, 'https://ror.org/019vcrv78', 'en', 1, 'https://ror.org/019vcrv78 Maryland Historical Trust'),
(41109, 'https://ror.org/019w40127', 'no_lang_code', 1, 'https://ror.org/019w40127 Barnes & Noble (United States)'),
(41110, 'https://ror.org/019w4be96', 'hr', 1, 'https://ror.org/019w4be96 Police Academy Policijska akademija'),
(41111, 'https://ror.org/019x00e11', 'en', 1, 'https://ror.org/019x00e11 Emmanuel Bible College'),
(41112, 'https://ror.org/019y81x83', 'pl', 1, 'https://ror.org/019y81x83 Szczecińska Szkoła Wyższa Collegium Balticum'),
(41113, 'https://ror.org/019yfxm71', 'it', 1, 'https://ror.org/019yfxm71 Conservatorio di Musica Nino Rota'),
(41114, 'https://ror.org/01a27na53', 'ro', 1, 'https://ror.org/01a27na53 Universitatea Alma Mater Sibiu'),
(41115, 'https://ror.org/01a304769', 'en', 1, 'https://ror.org/01a304769 Kenya Institute Of Organic Farming'),
(41116, 'https://ror.org/01a9g8z61', 'en', 1, 'https://ror.org/01a9g8z61 Palo Verde College'),
(41117, 'https://ror.org/01aae0427', 'no_lang_code', 1, 'https://ror.org/01aae0427 Sanmar Group (India)'),
(41118, 'https://ror.org/01abckz52', 'en', 1, 'https://ror.org/01abckz52 AdventHealth for Children'),
(41119, 'https://ror.org/01abhta88', 'de', 1, 'https://ror.org/01abhta88 Aus- und Weiterbildungseinrichtung für Klinische Verhaltenstherapie'),
(41120, 'https://ror.org/01abrxp85', 'en', 1, 'https://ror.org/01abrxp85 Islamic Azad University Semnan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سمنان'),
(41121, 'https://ror.org/01ad74h27', 'en', 1, 'https://ror.org/01ad74h27 Tillamook Bay Community College'),
(41122, 'https://ror.org/01ah4r412', 'en', 1, 'https://ror.org/01ah4r412 Mary Baker Eddy Library'),
(41123, 'https://ror.org/01ahk4t18', 'en', 1, 'https://ror.org/01ahk4t18 Montessori Institute of Milwaukee'),
(41124, 'https://ror.org/01ahkhm49', 'en', 1, 'https://ror.org/01ahkhm49 ALD Connect'),
(41125, 'https://ror.org/01ahwzz27', 'en', 1, 'https://ror.org/01ahwzz27 Saint Louis County Department of Health'),
(41126, 'https://ror.org/01ahys275', 'en', 1, 'https://ror.org/01ahys275 Parker Hughes Cancer Center'),
(41127, 'https://ror.org/01ajp8153', 'no_lang_code', 1, 'https://ror.org/01ajp8153 Genmab (Netherlands)'),
(41128, 'https://ror.org/01ap78q14', 'pt', 1, 'https://ror.org/01ap78q14 Citeforma'),
(41129, 'https://ror.org/01aqjb686', 'no_lang_code', 1, 'https://ror.org/01aqjb686 Svenska Cellulosa (Sweden)'),
(41130, 'https://ror.org/01arkg777', 'en', 1, 'https://ror.org/01arkg777 Midland College'),
(41131, 'https://ror.org/01asgtt85', 'en', 1, 'https://ror.org/01asgtt85 Malankara Orthodox Syrian Church Medical College Hospital'),
(41132, 'https://ror.org/01atycn06', 'no_lang_code', 1, 'https://ror.org/01atycn06 Infonet College'),
(41133, 'https://ror.org/01atz5j40', 'en', 1, 'https://ror.org/01atz5j40 Australian College of Theology'),
(41134, 'https://ror.org/01avf0w32', 'en', 1, 'https://ror.org/01avf0w32 Lenoir Community College'),
(41135, 'https://ror.org/01avfbv46', 'no_lang_code', 1, 'https://ror.org/01avfbv46 Giredmet (Russia) Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ реГких Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(41136, 'https://ror.org/01awqyw81', 'en', 1, 'https://ror.org/01awqyw81 St. Cloud Technical and Community College'),
(41137, 'https://ror.org/01axjm922', 'no_lang_code', 1, 'https://ror.org/01axjm922 Fresenius Kabi (India)'),
(41138, 'https://ror.org/01axtzy32', 'en', 1, 'https://ror.org/01axtzy32 Saint John Vianney College Seminary'),
(41139, 'https://ror.org/01ay87255', 'fr', 1, 'https://ror.org/01ay87255 Centre de DƩveloppement des Technologies AvancƩes'),
(41140, 'https://ror.org/01aywcp58', 'en', 1, 'https://ror.org/01aywcp58 Southern Maine Community College'),
(41141, 'https://ror.org/01azc2m81', 'en', 1, 'https://ror.org/01azc2m81 Sub-Regional Fisheries Commission'),
(41142, 'https://ror.org/01azfny69', 'en', 1, 'https://ror.org/01azfny69 IHub'),
(41143, 'https://ror.org/01azrym08', 'en', 1, 'https://ror.org/01azrym08 M.N. Mikheev Institute of Metal Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики металлов имени М.Š. ŠœŠøŃ…ŠµŠµŠ²Š° Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(41144, 'https://ror.org/01b03vk69', 'no_lang_code', 1, 'https://ror.org/01b03vk69 Alfact Innovation (France)'),
(41145, 'https://ror.org/01b047235', 'en', 1, 'https://ror.org/01b047235 Arkansas Economic Development Commission'),
(41146, 'https://ror.org/01b0j0m34', 'en', 1, 'https://ror.org/01b0j0m34 Southern States University'),
(41147, 'https://ror.org/01b1e4b88', 'no_lang_code', 1, 'https://ror.org/01b1e4b88 Mars (France)'),
(41148, 'https://ror.org/01b25wz12', 'en', 1, 'https://ror.org/01b25wz12 Southeastern University'),
(41149, 'https://ror.org/01b2av652', 'en', 1, 'https://ror.org/01b2av652 Institute of Scientific and Technical Information of China äø­å›½ē§‘å­¦ęŠ€ęœÆäæ”ęÆē ”ē©¶ę‰€'),
(41150, 'https://ror.org/01b2bzj52', 'no_lang_code', 1, 'https://ror.org/01b2bzj52 Kellogg''s (United States)'),
(41151, 'https://ror.org/01b346b72', 'en', 1, 'https://ror.org/01b346b72 Wonju Severance Christian Hospital ģ—°ģ„øėŒ€ķ•™źµ ģ›ģ£¼ģ„øėøŒėž€ģŠ¤źø°ė…ė³‘ģ›'),
(41152, 'https://ror.org/01b3qhp76', 'en', 1, 'https://ror.org/01b3qhp76 Research Institute of Fundamental and Clinical Immunology ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ Šø клинической иммунологии'),
(41153, 'https://ror.org/01b5c2h26', 'en', 1, 'https://ror.org/01b5c2h26 Heart Kids'),
(41154, 'https://ror.org/01b5j0073', 'en', 1, 'https://ror.org/01b5j0073 Families USA'),
(41155, 'https://ror.org/01b891j88', 'en', 1, 'https://ror.org/01b891j88 Government of Haryana'),
(41156, 'https://ror.org/01b8mj511', 'fr', 1, 'https://ror.org/01b8mj511 Laboratoire Interdisciplinaire pour la Sociologie Economique'),
(41157, 'https://ror.org/01bahfb02', 'en', 1, 'https://ror.org/01bahfb02 Enterprise Community Partners'),
(41158, 'https://ror.org/01bcwyc86', 'en', 1, 'https://ror.org/01bcwyc86 Southern Maine Health Care'),
(41159, 'https://ror.org/01bd1sf38', 'en', 1, 'https://ror.org/01bd1sf38 SRM Dental College'),
(41160, 'https://ror.org/01bf51295', 'en', 1, 'https://ror.org/01bf51295 Martin College'),
(41161, 'https://ror.org/01bfgxb60', 'en', 1, 'https://ror.org/01bfgxb60 St Johns River State College'),
(41162, 'https://ror.org/01bhk7372', 'en', 1, 'https://ror.org/01bhk7372 Dallas VA Research Corporation'),
(41163, 'https://ror.org/01bhp1y81', 'en', 1, 'https://ror.org/01bhp1y81 Hebei Chemical and Pharmaceutical College ę²³åŒ—åŒ–å·„åŒ»čÆčŒäøšęŠ€ęœÆå­¦é™¢ 地址'),
(41164, 'https://ror.org/01bkbkc06', 'en', 1, 'https://ror.org/01bkbkc06 Hickey College'),
(41165, 'https://ror.org/01bkg3b56', 'no_lang_code', 1, 'https://ror.org/01bkg3b56 Gene Bridges (Germany)'),
(41166, 'https://ror.org/01bktqd02', 'en', 1, 'https://ror.org/01bktqd02 John A Gupton College'),
(41167, 'https://ror.org/01bnv2160', 'no_lang_code', 1, 'https://ror.org/01bnv2160 Deltamune (South Africa)'),
(41168, 'https://ror.org/01bp1fj20', 'en', 1, 'https://ror.org/01bp1fj20 Wilbur and Hilda Glenn Family Foundation'),
(41169, 'https://ror.org/01bvm0h13', 'fr', 1, 'https://ror.org/01bvm0h13 Haute Ɖcole PĆ©dagogique du Canton de Vaud'),
(41170, 'https://ror.org/01bvxnj28', 'en', 1, 'https://ror.org/01bvxnj28 Państwowa Wyższa Szkoła Zawodowa im. Stanisława Pigonia w Krośnie State Higher Vocational School in Krosno'),
(41171, 'https://ror.org/01bx57d48', 'en', 1, 'https://ror.org/01bx57d48 Higher Institute for Artistic Industries Faenza Istituto Superiore per le Industrie Artistiche'),
(41172, 'https://ror.org/01bzmq497', 'en', 1, 'https://ror.org/01bzmq497 Royal College of Obstetricians and Gynaecologists'),
(41173, 'https://ror.org/01bzv1j63', 'en', 1, 'https://ror.org/01bzv1j63 Chamber of Commerce and Industry of Tunis Chambre de Commerce et d''Industrie de Tunis'),
(41174, 'https://ror.org/01c02p071', 'en', 1, 'https://ror.org/01c02p071 AACC International'),
(41175, 'https://ror.org/01c33mn06', 'en', 1, 'https://ror.org/01c33mn06 Institute of the North'),
(41176, 'https://ror.org/01c3h5z21', 'fr', 1, 'https://ror.org/01c3h5z21 Institut National de Recherche ForestiĆØre'),
(41177, 'https://ror.org/01c4qa656', 'en', 1, 'https://ror.org/01c4qa656 Bydgoska Szkoła Wyższa University of Bydgoszcz'),
(41178, 'https://ror.org/01c4srk95', 'no_lang_code', 1, 'https://ror.org/01c4srk95 Tirunelveli Medical College ą®¤ą®æą®°ąÆą®ØąÆ†ą®²ąÆą®µąÆ‡ą®²ą®æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(41179, 'https://ror.org/01c508b36', 'fr', 1, 'https://ror.org/01c508b36 Institut RƩgional d''Administration de Lyon'),
(41180, 'https://ror.org/01c5dd102', 'no_lang_code', 1, 'https://ror.org/01c5dd102 Mahindra and Mahindra Limited (India)'),
(41181, 'https://ror.org/01c61x273', 'no_lang_code', 1, 'https://ror.org/01c61x273 Folha (Brazil)'),
(41182, 'https://ror.org/01c8gte40', 'en', 1, 'https://ror.org/01c8gte40 Appropriate Rural Technology Institute'),
(41183, 'https://ror.org/01c9ma830', 'en', 1, 'https://ror.org/01c9ma830 LƤƤne-Viru College LƤƤne-Viru RakenduskƵrgkool'),
(41184, 'https://ror.org/01c9nq002', 'en', 1, 'https://ror.org/01c9nq002 Missouri College'),
(41185, 'https://ror.org/01camwr54', 'en', 1, 'https://ror.org/01camwr54 Tropical Pesticides Research Institute'),
(41186, 'https://ror.org/01cb0p019', 'en', 1, 'https://ror.org/01cb0p019 Higher Institute for Artistic Industries Firenze Istituto Superiore per le Industrie Artistiche'),
(41187, 'https://ror.org/01cb10c90', 'en', 1, 'https://ror.org/01cb10c90 Cheung Kong Graduate School of Business é•æę±Ÿå•†å­¦é™¢'),
(41188, 'https://ror.org/01cbeee29', 'es', 1, 'https://ror.org/01cbeee29 Universidad Católica Cecilio Acosta'),
(41189, 'https://ror.org/01ccb9w37', 'en', 1, 'https://ror.org/01ccb9w37 St. Petersburg Institute for Informatics and Automation Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информатики Šø автоматизации'),
(41190, 'https://ror.org/01cch8797', 'no_lang_code', 1, 'https://ror.org/01cch8797 Mobica (Egypt)'),
(41191, 'https://ror.org/01ccv1722', 'en', 1, 'https://ror.org/01ccv1722 Society of Teachers of Family Medicine'),
(41192, 'https://ror.org/01cd26272', 'no_lang_code', 1, 'https://ror.org/01cd26272 MultiMedia InnoVations (South Africa)'),
(41193, 'https://ror.org/01cey1344', 'en', 1, 'https://ror.org/01cey1344 Foundation for Research in Health Systems'),
(41194, 'https://ror.org/01cf8hm38', 'en', 1, 'https://ror.org/01cf8hm38 Anoka Technical College'),
(41195, 'https://ror.org/01cf8y887', 'it', 1, 'https://ror.org/01cf8y887 Accademia di Belle Arti di Venezia'),
(41196, 'https://ror.org/01cjdbz30', 'es', 1, 'https://ror.org/01cjdbz30 Davara & Davara Asesores JurĆ­dicos'),
(41197, 'https://ror.org/01ckass20', 'en', 1, 'https://ror.org/01ckass20 Military Manpower Administration 병묓청'),
(41198, 'https://ror.org/01cmzh619', 'en', 1, 'https://ror.org/01cmzh619 Mental Health Australia'),
(41199, 'https://ror.org/01cnenr61', 'fi', 1, 'https://ror.org/01cnenr61 EtelƤ-Pohjanmaan Sairaanhoitopiiri'),
(41200, 'https://ror.org/01cphbs04', 'en', 1, 'https://ror.org/01cphbs04 Velammal Educational Trust'),
(41201, 'https://ror.org/01crghz68', 'en', 1, 'https://ror.org/01crghz68 Foundation for Research in Community Health'),
(41202, 'https://ror.org/01crwqf21', 'en', 1, 'https://ror.org/01crwqf21 Southeast Arkansas College'),
(41203, 'https://ror.org/01cryga93', 'no_lang_code', 1, 'https://ror.org/01cryga93 Sami Labs (India)'),
(41204, 'https://ror.org/01crz4r71', 'fr', 1, 'https://ror.org/01crz4r71 Ɖcole SupĆ©rieure d''Art des PyrĆ©nĆ©es'),
(41205, 'https://ror.org/01cy4tw26', 'en', 1, 'https://ror.org/01cy4tw26 South Orange County Community College District'),
(41206, 'https://ror.org/01cyqzg93', 'en', 1, 'https://ror.org/01cyqzg93 Southern West Virginia Community and Technical College'),
(41207, 'https://ror.org/01d0few86', 'en', 1, 'https://ror.org/01d0few86 Ghana Education Service'),
(41208, 'https://ror.org/01d0r2q86', 'en', 1, 'https://ror.org/01d0r2q86 Centre for Internet and Society'),
(41209, 'https://ror.org/01d181m24', 'en', 1, 'https://ror.org/01d181m24 Shasta College'),
(41210, 'https://ror.org/01d22jf15', 'en', 1, 'https://ror.org/01d22jf15 Ellsworth Community College'),
(41211, 'https://ror.org/01d22yy79', 'fr', 1, 'https://ror.org/01d22yy79 Centre d’Expertise National en Stimulation Cognitive'),
(41212, 'https://ror.org/01d47cz35', 'en', 1, 'https://ror.org/01d47cz35 Research Design And Standards Organization ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤…ą¤­ą¤æą¤•ą¤²ą„ą¤Ŗ ą¤ą¤µą¤‚ मानक संगठन'),
(41213, 'https://ror.org/01d4n6n22', 'de', 1, 'https://ror.org/01d4n6n22 Hochschule für Kunsttherapie Nürtingen'),
(41214, 'https://ror.org/01d6n7b64', 'hi', 1, 'https://ror.org/01d6n7b64 Vidya Prathishthan'),
(41215, 'https://ror.org/01deqjx32', 'en', 1, 'https://ror.org/01deqjx32 Entrust'),
(41216, 'https://ror.org/01dg8c226', 'en', 1, 'https://ror.org/01dg8c226 North Shropshire College'),
(41217, 'https://ror.org/01dhcr905', 'no_lang_code', 1, 'https://ror.org/01dhcr905 Nationwide Mutual Insurance Company (United States)'),
(41218, 'https://ror.org/01dhkk736', 'en', 1, 'https://ror.org/01dhkk736 Ogden–Weber Applied Technology College'),
(41219, 'https://ror.org/01dj44198', 'en', 1, 'https://ror.org/01dj44198 Western Texas College'),
(41220, 'https://ror.org/01dmk9z19', 'no_lang_code', 1, 'https://ror.org/01dmk9z19 HollyFrontier (United States)'),
(41221, 'https://ror.org/01dmnvb64', 'es', 1, 'https://ror.org/01dmnvb64 Fundación Hospital Manacor'),
(41222, 'https://ror.org/01dnjhj88', 'en', 1, 'https://ror.org/01dnjhj88 Nakuru County Council'),
(41223, 'https://ror.org/01dqnej95', 'en', 1, 'https://ror.org/01dqnej95 China Land Surveying and Planning Institute äø­å›½åœŸåœ°å‹˜ęµ‹č§„åˆ’é™¢'),
(41224, 'https://ror.org/01drfa298', 'en', 1, 'https://ror.org/01drfa298 Emmaus Bible College'),
(41225, 'https://ror.org/01ds31v72', 'en', 1, 'https://ror.org/01ds31v72 V.S. Sobolev Institute of Geology and Mineralogy Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø минералогии им. Š’.Š”.Доболева Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук (Š˜Š“Šœ Š”Šž Š ŠŠ)'),
(41226, 'https://ror.org/01dtghp88', 'en', 1, 'https://ror.org/01dtghp88 Australian American Fulbright Commission'),
(41227, 'https://ror.org/01dyrk434', 'pt', 1, 'https://ror.org/01dyrk434 Centro de Excelência em BioinformÔtica'),
(41228, 'https://ror.org/01dywy767', 'pt', 1, 'https://ror.org/01dywy767 Instituto de Ensinos Superiores da AmazƓnia'),
(41229, 'https://ror.org/01dz5cg19', 'fr', 1, 'https://ror.org/01dz5cg19 Laboratoire de Virologie MolƩculaire et Structurale'),
(41230, 'https://ror.org/01dzc7q23', 'en', 1, 'https://ror.org/01dzc7q23 Somerset Community College'),
(41231, 'https://ror.org/01e01nd60', 'en', 1, 'https://ror.org/01e01nd60 National Academy of Social Insurance'),
(41232, 'https://ror.org/01e0fj447', 'en', 1, 'https://ror.org/01e0fj447 Assumption College San Lorenzo'),
(41233, 'https://ror.org/01e2m0794', 'en', 1, 'https://ror.org/01e2m0794 China Earthquake Disaster Prevention Centre äø­å›½åœ°éœ‡ē¾å®³é˜²å¾”äø­åæƒ'),
(41234, 'https://ror.org/01e2z0p13', 'cs', 1, 'https://ror.org/01e2z0p13 VysokĆ” Å kola SociĆ”lně SprĆ”vnĆ­'),
(41235, 'https://ror.org/01e3p0233', 'no_lang_code', 1, 'https://ror.org/01e3p0233 Vesuvius (France)'),
(41236, 'https://ror.org/01e46k667', 'no_lang_code', 1, 'https://ror.org/01e46k667 Red Stack Tech (Poland)'),
(41237, 'https://ror.org/01e4tdn74', 'en', 1, 'https://ror.org/01e4tdn74 Ministry of Agriculture Livestock and Fisheries'),
(41238, 'https://ror.org/01e5ad164', 'no_lang_code', 1, 'https://ror.org/01e5ad164 DualAlign (United States)'),
(41239, 'https://ror.org/01e75de70', 'en', 1, 'https://ror.org/01e75de70 Raffles College of Design and Commerce'),
(41240, 'https://ror.org/01e8jps31', 'no_lang_code', 1, 'https://ror.org/01e8jps31 Israel Ports Development and Assets (Israel)'),
(41241, 'https://ror.org/01e99ef13', 'no_lang_code', 1, 'https://ror.org/01e99ef13 Gansu Meteorological Bureau ē”˜č‚ƒēœę°”č±”å±€'),
(41242, 'https://ror.org/01ea1bc11', 'en', 1, 'https://ror.org/01ea1bc11 Society for Research and Initiatives for Sustainable Technologies and Institutions'),
(41243, 'https://ror.org/01eac6f58', 'no_lang_code', 1, 'https://ror.org/01eac6f58 WD-40 (United States)'),
(41244, 'https://ror.org/01eajxh73', 'en', 1, 'https://ror.org/01eajxh73 Hochschule für Agrar- und Umweltpädagogik University College for Agrarian and Environmental Pedagogy'),
(41245, 'https://ror.org/01ecv1b71', 'en', 1, 'https://ror.org/01ecv1b71 African Conservation Tillage Network'),
(41246, 'https://ror.org/01edctc55', 'no_lang_code', 1, 'https://ror.org/01edctc55 ATLAB Pharma (France)'),
(41247, 'https://ror.org/01egp1063', 'es', 1, 'https://ror.org/01egp1063 Ministerio de Producción, Ciencia y Tecnología'),
(41248, 'https://ror.org/01ehgvm85', 'en', 1, 'https://ror.org/01ehgvm85 ECAM School of Engineering'),
(41249, 'https://ror.org/01ej3e061', 'de', 1, 'https://ror.org/01ej3e061 Philosophisch-Theologische Hochschule SVD St. Augustin'),
(41250, 'https://ror.org/01ep2z456', 'es', 1, 'https://ror.org/01ep2z456 Ayuntamiento De Tomelloso'),
(41251, 'https://ror.org/01eqzn264', 'pt', 1, 'https://ror.org/01eqzn264 Faculdade da Serra GaĆŗcha'),
(41252, 'https://ror.org/01es48562', 'en', 1, 'https://ror.org/01es48562 Gerald R. Ford Presidential Library and Museum'),
(41253, 'https://ror.org/01esc8r67', 'en', 1, 'https://ror.org/01esc8r67 Hellenic Military Academy Στρατιωτική Σχολή ΕυελπίΓων'),
(41254, 'https://ror.org/01etzjr60', 'it', 1, 'https://ror.org/01etzjr60 Conservatorio di Musica Luigi Canepa'),
(41255, 'https://ror.org/01ew07e68', 'en', 1, 'https://ror.org/01ew07e68 National Sanitation Utility Office National de l''Assainissement'),
(41256, 'https://ror.org/01ew11x49', 'no_lang_code', 1, 'https://ror.org/01ew11x49 Panacea Biotec (India)'),
(41257, 'https://ror.org/01ewgyc27', 'en', 1, 'https://ror.org/01ewgyc27 Academy of Cosmetics and Health Care in Warsaw Wyższa Szkoła Zawodowa Kosmetyki'),
(41258, 'https://ror.org/01exgks31', 'en', 1, 'https://ror.org/01exgks31 Nigerian Institute for Oceanography and Marine Research'),
(41259, 'https://ror.org/01eyhzm47', 'de', 1, 'https://ror.org/01eyhzm47 Fachhochschule für Verwaltung des Saarlandes'),
(41260, 'https://ror.org/01eyskv76', 'no_lang_code', 1, 'https://ror.org/01eyskv76 Quantum Genomics (France)'),
(41261, 'https://ror.org/01f02ww36', 'en', 1, 'https://ror.org/01f02ww36 All-Russian Research Institute of Agricultural Microbiology'),
(41262, 'https://ror.org/01f2hnj65', 'es', 1, 'https://ror.org/01f2hnj65 Instituto Nacional de Cooperación Educativa Socialista'),
(41263, 'https://ror.org/01f42aa94', 'en', 1, 'https://ror.org/01f42aa94 Koran Women''s Junior College é¦™č˜­å„³å­ēŸ­ęœŸå¤§å­¦'),
(41264, 'https://ror.org/01f5b8367', 'de', 1, 'https://ror.org/01f5b8367 Fachhochschule des Mittelstands'),
(41265, 'https://ror.org/01f6q3121', 'en', 1, 'https://ror.org/01f6q3121 Hyundai Hope On Wheels'),
(41266, 'https://ror.org/01f8mva30', 'en', 1, 'https://ror.org/01f8mva30 Panchajanya Vidya Peetha Welfare Trust'),
(41267, 'https://ror.org/01f93vk95', 'no_lang_code', 1, 'https://ror.org/01f93vk95 Graham Holdings (United States)'),
(41268, 'https://ror.org/01f96et60', 'no_lang_code', 1, 'https://ror.org/01f96et60 MedinCell (France)'),
(41269, 'https://ror.org/01fazs130', 'en', 1, 'https://ror.org/01fazs130 Millar College of the Bible'),
(41270, 'https://ror.org/01fbwnx94', 'en', 1, 'https://ror.org/01fbwnx94 Minnesota West Community & Technical College'),
(41271, 'https://ror.org/01fcdd135', 'en', 1, 'https://ror.org/01fcdd135 Chicago Community Trust'),
(41272, 'https://ror.org/01fe6wg83', 'en', 1, 'https://ror.org/01fe6wg83 All Russian Research Institute of Geology and Mineral Resources of the World Ocean Š’ŠŠ˜Š˜ŠžŠŗŠµŠ°Š½Š³ŠµŠ¾Š»Š¾Š³ŠøŃ'),
(41273, 'https://ror.org/01ffjs081', 'fr', 1, 'https://ror.org/01ffjs081 Ecologie & Evolution'),
(41274, 'https://ror.org/01fk7em68', 'en', 1, 'https://ror.org/01fk7em68 Bais Medrash Toras Chesed'),
(41275, 'https://ror.org/01frp7483', 'no_lang_code', 1, 'https://ror.org/01frp7483 Weifang University ę½åŠå­¦é™¢'),
(41276, 'https://ror.org/01frq5x38', 'en', 1, 'https://ror.org/01frq5x38 Department of Education Cagayan de Oro'),
(41277, 'https://ror.org/01frwjw20', 'en', 1, 'https://ror.org/01frwjw20 Chreso Ministries'),
(41278, 'https://ror.org/01fryje29', 'en', 1, 'https://ror.org/01fryje29 South College'),
(41279, 'https://ror.org/01fss9e11', 'fr', 1, 'https://ror.org/01fss9e11 Ɖcole SupĆ©rieure d''Art et Design de Saint-Ɖtienne'),
(41280, 'https://ror.org/01fszbh02', 'en', 1, 'https://ror.org/01fszbh02 Academy for Peace and Development Akaademiga Nabadda iyo Horumarka'),
(41281, 'https://ror.org/01ft2as73', 'en', 1, 'https://ror.org/01ft2as73 Eastern Medical College and Hospital ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦Ø মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(41282, 'https://ror.org/01ftvnv05', 'en', 1, 'https://ror.org/01ftvnv05 Royal Brisbane and Women''s Hospital Foundation'),
(41283, 'https://ror.org/01fvgpx90', 'fr', 1, 'https://ror.org/01fvgpx90 Institut FranƧais de Finlande'),
(41284, 'https://ror.org/01fy5k372', 'fr', 1, 'https://ror.org/01fy5k372 Ɖcole Nationale d''IngĆ©nieurs de GabĆØs المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† بقابس'),
(41285, 'https://ror.org/01fz2q334', 'en', 1, 'https://ror.org/01fz2q334 National Insurance Institute of Israel המוהד לביטוח לאומי'),
(41286, 'https://ror.org/01g0pjd14', 'en', 1, 'https://ror.org/01g0pjd14 Royal Air Force College Cranwell'),
(41287, 'https://ror.org/01g1pe685', 'en', 1, 'https://ror.org/01g1pe685 NEOMA Business School Ɖcole supĆ©rieure de commerce de rouen'),
(41288, 'https://ror.org/01g39s097', 'en', 1, 'https://ror.org/01g39s097 River Parishes Community College'),
(41289, 'https://ror.org/01g454487', 'en', 1, 'https://ror.org/01g454487 National Institute of Transport'),
(41290, 'https://ror.org/01g4a4162', 'en', 1, 'https://ror.org/01g4a4162 Newbury College'),
(41291, 'https://ror.org/01g621a78', 'en', 1, 'https://ror.org/01g621a78 Royal National Lifeboat Institution'),
(41292, 'https://ror.org/01g9cpz33', 'en', 1, 'https://ror.org/01g9cpz33 Morthland College'),
(41293, 'https://ror.org/01g9qbv95', 'en', 1, 'https://ror.org/01g9qbv95 Government of Ethiopia'),
(41294, 'https://ror.org/01gbhv690', 'no_lang_code', 1, 'https://ror.org/01gbhv690 Systems, Applications & Products in Data Processing (United States)'),
(41295, 'https://ror.org/01geb0342', 'no_lang_code', 1, 'https://ror.org/01geb0342 Anthem (United States)'),
(41296, 'https://ror.org/01gfs0a38', 'de', 1, 'https://ror.org/01gfs0a38 Akademie für Tiergesundheit'),
(41297, 'https://ror.org/01gh6ja41', 'no_lang_code', 1, 'https://ror.org/01gh6ja41 Alltech (United States)'),
(41298, 'https://ror.org/01gh88804', 'en', 1, 'https://ror.org/01gh88804 High Magnetic Field Laboratory äø­å›½ē§‘å­¦é™¢å¼ŗē£åœŗē§‘å­¦äø­åæƒ'),
(41299, 'https://ror.org/01ghar981', 'en', 1, 'https://ror.org/01ghar981 Koninklijke Hollandsche Maatschappij der Wetenschappen Royal Holland Society of Sciences and Humanities'),
(41300, 'https://ror.org/01gk2wz65', 'en', 1, 'https://ror.org/01gk2wz65 Research Institute of Therapy and Preventive Medicine Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ терапии Šø профилактической меГицины'),
(41301, 'https://ror.org/01gk62939', 'no_lang_code', 1, 'https://ror.org/01gk62939 Endocontrol (France)'),
(41302, 'https://ror.org/01gk6s768', 'no_lang_code', 1, 'https://ror.org/01gk6s768 HHV Solar Technologies (India)'),
(41303, 'https://ror.org/01gm0md04', 'en', 1, 'https://ror.org/01gm0md04 Provadis Hochschule Provadis School of International Management and Technology'),
(41304, 'https://ror.org/01gnagj68', 'en', 1, 'https://ror.org/01gnagj68 Shanghai Innovative Research Center of Traditional Chinese Medicine äøŠęµ·äø­čÆåˆ›ę–°ē ”ē©¶äø­åæƒ'),
(41305, 'https://ror.org/01gr09x64', 'no_lang_code', 1, 'https://ror.org/01gr09x64 Orica (Australia)'),
(41306, 'https://ror.org/01gtbbz35', 'no_lang_code', 1, 'https://ror.org/01gtbbz35 OTR3 (France)'),
(41307, 'https://ror.org/01gtdbh44', 'en', 1, 'https://ror.org/01gtdbh44 Cuyamaca College'),
(41308, 'https://ror.org/01gwn6z70', 'en', 1, 'https://ror.org/01gwn6z70 College of San Mateo'),
(41309, 'https://ror.org/01gxb6382', 'no_lang_code', 1, 'https://ror.org/01gxb6382 Swisse (Australia)'),
(41310, 'https://ror.org/01gyh5y52', 'no_lang_code', 1, 'https://ror.org/01gyh5y52 Argos Cement (Colombia) Cementos Argos'),
(41311, 'https://ror.org/01gymhc20', 'no_lang_code', 1, 'https://ror.org/01gymhc20 Benteler (Germany)');
INSERT INTO `rors` VALUES
(41312, 'https://ror.org/01h0gdq60', 'it', 1, 'https://ror.org/01h0gdq60 Conservatorio di Musica G. Martucci'),
(41313, 'https://ror.org/01h10d932', 'en', 1, 'https://ror.org/01h10d932 Union Catholic Regional High School'),
(41314, 'https://ror.org/01h153k55', 'pt', 1, 'https://ror.org/01h153k55 Faculdades Integradas de Cacoal'),
(41315, 'https://ror.org/01h30nm18', 'no_lang_code', 1, 'https://ror.org/01h30nm18 JCPenney (United States)'),
(41316, 'https://ror.org/01h4f0m46', 'en', 1, 'https://ror.org/01h4f0m46 Central Bank of the Republic of Turkey Türkiye Cumhuriyet Merkez Bankası'),
(41317, 'https://ror.org/01h547a76', 'en', 1, 'https://ror.org/01h547a76 Tianjin Centers for Disease Control and Prevention å¤©ę“„åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(41318, 'https://ror.org/01h5w6873', 'en', 1, 'https://ror.org/01h5w6873 Scandinavian Seminar'),
(41319, 'https://ror.org/01h6epf62', 'no_lang_code', 1, 'https://ror.org/01h6epf62 Taimyr College Таймырский коллеГж'),
(41320, 'https://ror.org/01h6pwy85', 'en', 1, 'https://ror.org/01h6pwy85 Colorado Traumatic Brain Injury Trust Fund'),
(41321, 'https://ror.org/01h7g8502', 'en', 1, 'https://ror.org/01h7g8502 National Institute of Technology, Toba College é³„ē¾½å•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(41322, 'https://ror.org/01h7jse56', 'en', 1, 'https://ror.org/01h7jse56 Banco Central do Brasil Central Bank of Brazil'),
(41323, 'https://ror.org/01h7phh70', 'en', 1, 'https://ror.org/01h7phh70 Fortis Memorial Research Institute'),
(41324, 'https://ror.org/01h7vw195', 'en', 1, 'https://ror.org/01h7vw195 Deutsche Hochschule der Polizei German Police University'),
(41325, 'https://ror.org/01h7y9k21', 'en', 1, 'https://ror.org/01h7y9k21 Nazareth Academy'),
(41326, 'https://ror.org/01h8dx481', 'en', 1, 'https://ror.org/01h8dx481 National Biomedical Research Ethics Council'),
(41327, 'https://ror.org/01hafxd32', 'no_lang_code', 1, 'https://ror.org/01hafxd32 Motorola (United States)'),
(41328, 'https://ror.org/01hbhjt03', 'en', 1, 'https://ror.org/01hbhjt03 North Florida Community College'),
(41329, 'https://ror.org/01hbq4r90', 'fr', 1, 'https://ror.org/01hbq4r90 Ɖcole Nationale SupĆ©rieure d''Architecture de Paris-Belleville'),
(41330, 'https://ror.org/01hednr46', 'no_lang_code', 1, 'https://ror.org/01hednr46 Mechanics Electronics Computer Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒ”ćƒƒć‚Æ'),
(41331, 'https://ror.org/01hefnn22', 'en', 1, 'https://ror.org/01hefnn22 Western Nebraska Community College'),
(41332, 'https://ror.org/01hehsy63', 'en', 1, 'https://ror.org/01hehsy63 Naval War College'),
(41333, 'https://ror.org/01hk19p23', 'no_lang_code', 1, 'https://ror.org/01hk19p23 INHS Asvini'),
(41334, 'https://ror.org/01hkc4630', 'en', 1, 'https://ror.org/01hkc4630 Fachhochschule Erfurt University of Applied Sciences Erfurt'),
(41335, 'https://ror.org/01hpzjf11', 'en', 1, 'https://ror.org/01hpzjf11 Centre Royal de TƩlƩdƩtection Spatiale Royal Centre for Remote Sensing'),
(41336, 'https://ror.org/01hr7tp17', 'fr', 1, 'https://ror.org/01hr7tp17 Institut SupƩrieur de Musique et de PƩdagogie'),
(41337, 'https://ror.org/01hr83286', 'en', 1, 'https://ror.org/01hr83286 African Center for Economic Transformation'),
(41338, 'https://ror.org/01hssw521', 'en', 1, 'https://ror.org/01hssw521 International Islamic College Ų§Ł„ŁƒŁ„ŁŠŲ© Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(41339, 'https://ror.org/01htb3a72', 'en', 1, 'https://ror.org/01htb3a72 Global Healthy Living Foundation'),
(41340, 'https://ror.org/01hv65386', 'en', 1, 'https://ror.org/01hv65386 Southern African Aids Trust'),
(41341, 'https://ror.org/01hvyf776', 'en', 1, 'https://ror.org/01hvyf776 New York City Economic Development Corporation'),
(41342, 'https://ror.org/01hw0hc30', 'en', 1, 'https://ror.org/01hw0hc30 Third Sector New England'),
(41343, 'https://ror.org/01hw7wf62', 'en', 1, 'https://ror.org/01hw7wf62 Ministry of Education وزارت Ų¢Ł…ŁˆŲ²Ų“ و پرورؓ Ų§ŪŒŲ±Ų§Ł†ā€Žā€Ž'),
(41344, 'https://ror.org/01hygy214', 'en', 1, 'https://ror.org/01hygy214 Ministry of National Development Nemzeti FejlesztƩsi MinisztƩrium'),
(41345, 'https://ror.org/01hzrxx48', 'en', 1, 'https://ror.org/01hzrxx48 Wor-Wic Community College, Wor–Wic Community College'),
(41346, 'https://ror.org/01j1caa04', 'en', 1, 'https://ror.org/01j1caa04 Henley College'),
(41347, 'https://ror.org/01j1n1798', 'en', 1, 'https://ror.org/01j1n1798 London School of Business and Management'),
(41348, 'https://ror.org/01j1yd225', 'en', 1, 'https://ror.org/01j1yd225 North West Boroughs Healthcare NHS Foundation Trust'),
(41349, 'https://ror.org/01j1yrs64', 'en', 1, 'https://ror.org/01j1yrs64 Gwich''in Council International'),
(41350, 'https://ror.org/01j3hs414', 'fr', 1, 'https://ror.org/01j3hs414 Union Coopération Forestière Française'),
(41351, 'https://ror.org/01j59hh13', 'no_lang_code', 1, 'https://ror.org/01j59hh13 Banco de Cabo Verde Bank of Cape Verde'),
(41352, 'https://ror.org/01j5adv11', 'en', 1, 'https://ror.org/01j5adv11 Authorised Association Consortium'),
(41353, 'https://ror.org/01j5kpq29', 'en', 1, 'https://ror.org/01j5kpq29 Florida Sea Grant'),
(41354, 'https://ror.org/01j60q321', 'en', 1, 'https://ror.org/01j60q321 Denver Botanic Gardens'),
(41355, 'https://ror.org/01j8znm98', 'en', 1, 'https://ror.org/01j8znm98 Arizona Christian University'),
(41356, 'https://ror.org/01j933b41', 'en', 1, 'https://ror.org/01j933b41 Wichita Area Technical College'),
(41357, 'https://ror.org/01j9c2p04', 'en', 1, 'https://ror.org/01j9c2p04 Research Institute of Emergency Care ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ скорой помощи им. Š.Š’. Дклифосовского'),
(41358, 'https://ror.org/01j9jcf33', 'en', 1, 'https://ror.org/01j9jcf33 Guangzhou Panyu Polytechnic å¹æå·žē•Ŗē¦ŗčŒäøšęŠ€ęœÆå­¦é™¢'),
(41359, 'https://ror.org/01jaqtk55', 'en', 1, 'https://ror.org/01jaqtk55 Louisville Institute'),
(41360, 'https://ror.org/01jbc0c43', 'en', 1, 'https://ror.org/01jbc0c43 Shenzhen Center for Disease Control and Prevention ę·±åœ³åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(41361, 'https://ror.org/01jbcx787', 'en', 1, 'https://ror.org/01jbcx787 Vijaya Medical and Educational Trust'),
(41362, 'https://ror.org/01jc8rs51', 'en', 1, 'https://ror.org/01jc8rs51 IGlobal University'),
(41363, 'https://ror.org/01jd81545', 'en', 1, 'https://ror.org/01jd81545 AAIR Charity'),
(41364, 'https://ror.org/01jdjet24', 'no_lang_code', 1, 'https://ror.org/01jdjet24 Pharmaleads (France)'),
(41365, 'https://ror.org/01jdv2a57', 'no_lang_code', 1, 'https://ror.org/01jdv2a57 Agilent Technologies (India)'),
(41366, 'https://ror.org/01jf9dm55', 'en', 1, 'https://ror.org/01jf9dm55 African Union Interafrican Bureau for Animal Resources'),
(41367, 'https://ror.org/01jh5hv18', 'en', 1, 'https://ror.org/01jh5hv18 Saint Charles Borromeo Seminary'),
(41368, 'https://ror.org/01jh9zw60', 'en', 1, 'https://ror.org/01jh9zw60 New York State Office of Temporary and Disability Assistance'),
(41369, 'https://ror.org/01jhjbg73', 'en', 1, 'https://ror.org/01jhjbg73 Nova Scotia Department of Health and Wellness'),
(41370, 'https://ror.org/01jj16t33', 'en', 1, 'https://ror.org/01jj16t33 Santosh University'),
(41371, 'https://ror.org/01jnt0x10', 'fr', 1, 'https://ror.org/01jnt0x10 Office RƩgional de Mise en Valeur Agricole de Ouarzazate'),
(41372, 'https://ror.org/01jpzd518', 'en', 1, 'https://ror.org/01jpzd518 National Center for High-Performance Computing åœ‹å®¶é«˜é€Ÿē¶²č·Æčˆ‡čØˆē®—äø­åæƒ'),
(41373, 'https://ror.org/01jq1mc68', 'hr', 1, 'https://ror.org/01jq1mc68 Fakultet za menadžment Herceg Novi'),
(41374, 'https://ror.org/01jwm2188', 'en', 1, 'https://ror.org/01jwm2188 FH Gesundheitsberufe OƖ University of Applied Sciences the health professions Upper Austria'),
(41375, 'https://ror.org/01jwndr62', 'fr', 1, 'https://ror.org/01jwndr62 National Society for Electricity and Gas SociĆØtĆ© Nationale de l''ElectricitĆ© et du Gaz Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„ŁƒŁ‡Ų±ŲØŲ§Ų” ŁˆŲ§Ł„ŲŗŲ§Ų² أو Ų³ŁˆŁ†Ł„ŲŗŲ§Ų²'),
(41376, 'https://ror.org/01jwsqs03', 'en', 1, 'https://ror.org/01jwsqs03 Jilin Meteorological Bureau å‰ęž—ēœę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(41377, 'https://ror.org/01jzst437', 'en', 1, 'https://ror.org/01jzst437 Jiangsu Vocational College of Medicine ę±Ÿč‹åŒ»čÆčŒäøšå­¦é™¢'),
(41378, 'https://ror.org/01k0y5630', 'fr', 1, 'https://ror.org/01k0y5630 Académie Royale des Beaux-Arts de Liège'),
(41379, 'https://ror.org/01k1bte55', 'fr', 1, 'https://ror.org/01k1bte55 Centre de Recherche sur l''Information Scientifique et Technique'),
(41380, 'https://ror.org/01k3cb610', 'en', 1, 'https://ror.org/01k3cb610 The American College'),
(41381, 'https://ror.org/01k4abj61', 'en', 1, 'https://ror.org/01k4abj61 China Tourism Academy 中国旅游研究院'),
(41382, 'https://ror.org/01k5x5w08', 'en', 1, 'https://ror.org/01k5x5w08 VƵru County Vocational Training Centre VƵrumaa Kutsehariduskeskus'),
(41383, 'https://ror.org/01k6gm036', 'hr', 1, 'https://ror.org/01k6gm036 Baltazar ZapreÅ”ić University of Applied Sciences'),
(41384, 'https://ror.org/01k6xby62', 'de', 1, 'https://ror.org/01k6xby62 SRH Hochschule für Logistik und Wirtschaft'),
(41385, 'https://ror.org/01k7shx94', 'en', 1, 'https://ror.org/01k7shx94 Andrew College'),
(41386, 'https://ror.org/01k8ec266', 'en', 1, 'https://ror.org/01k8ec266 Ufa Institute of Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Уфимский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Российской акаГемии наук'),
(41387, 'https://ror.org/01kaw2b03', 'en', 1, 'https://ror.org/01kaw2b03 Australian Defence College'),
(41388, 'https://ror.org/01kc9gs57', 'en', 1, 'https://ror.org/01kc9gs57 Northampton College'),
(41389, 'https://ror.org/01kdhhd16', 'en', 1, 'https://ror.org/01kdhhd16 Brussels Management School'),
(41390, 'https://ror.org/01kdzkq48', 'no_lang_code', 1, 'https://ror.org/01kdzkq48 Helsinn (Switzerland)'),
(41391, 'https://ror.org/01khc4e56', 'en', 1, 'https://ror.org/01khc4e56 Yunnan Provincial Hospital of Traditional Chinese Medicine äŗ‘å—ēœäø­åŒ»åŒ»é™¢'),
(41392, 'https://ror.org/01khd9w51', 'en', 1, 'https://ror.org/01khd9w51 Felton Institute'),
(41393, 'https://ror.org/01khwek78', 'en', 1, 'https://ror.org/01khwek78 University of Houston - Victoria'),
(41394, 'https://ror.org/01kjdwm51', 'en', 1, 'https://ror.org/01kjdwm51 Department of the Prime Minister and Cabinet'),
(41395, 'https://ror.org/01kjvw753', 'en', 1, 'https://ror.org/01kjvw753 Biotechnical Educational Centre Ljubljana'),
(41396, 'https://ror.org/01km55q65', 'en', 1, 'https://ror.org/01km55q65 Państwowa Wyższa Szkoła Zawodowa w Elblągu State University of Applied Sciences in Elbląg'),
(41397, 'https://ror.org/01kn5gg54', 'en', 1, 'https://ror.org/01kn5gg54 Shandong Province Meteorological Bureau å±±äøœēœę°”č±”å±€ ꉀ꜉'),
(41398, 'https://ror.org/01knpsp07', 'en', 1, 'https://ror.org/01knpsp07 Michigan Community Service Commission'),
(41399, 'https://ror.org/01kpf2x84', 'en', 1, 'https://ror.org/01kpf2x84 Chartered Institute of Management Accountants'),
(41400, 'https://ror.org/01kqyam71', 'en', 1, 'https://ror.org/01kqyam71 San Diego Miramar College'),
(41401, 'https://ror.org/01kr64963', 'no_lang_code', 1, 'https://ror.org/01kr64963 Xura (United States)'),
(41402, 'https://ror.org/01ktrdf59', 'it', 1, 'https://ror.org/01ktrdf59 Conservatorio di Musica Cesare Pollini'),
(41403, 'https://ror.org/01ktxpf34', 'pt', 1, 'https://ror.org/01ktxpf34 ColƩgio Pedro II'),
(41404, 'https://ror.org/01kwczx50', 'en', 1, 'https://ror.org/01kwczx50 Skadden Arps Slate Meagher & Flom, Skadden, Arps, Slate, Meagher & Flom Skadden, arps, slate, meagher & flom'),
(41405, 'https://ror.org/01kxhfp75', 'en', 1, 'https://ror.org/01kxhfp75 National Museum of American History'),
(41406, 'https://ror.org/01kywjn02', 'en', 1, 'https://ror.org/01kywjn02 Consumer Goods Council of South Africa'),
(41407, 'https://ror.org/01kzgc408', 'fr', 1, 'https://ror.org/01kzgc408 Wilp Wilxo’oskwhl Nisga’a Institute'),
(41408, 'https://ror.org/01m2yw646', 'en', 1, 'https://ror.org/01m2yw646 Horticultural Research Institute'),
(41409, 'https://ror.org/01m7pan94', 'en', 1, 'https://ror.org/01m7pan94 Guru Gobind Singh Medical College and Hospital'),
(41410, 'https://ror.org/01m909h91', 'en', 1, 'https://ror.org/01m909h91 Bureau of International Cooperation 国际合作局'),
(41411, 'https://ror.org/01mat8t76', 'en', 1, 'https://ror.org/01mat8t76 Tainan Theological College and Seminary å°å—ē„žå­øé™¢'),
(41412, 'https://ror.org/01mbbxx50', 'en', 1, 'https://ror.org/01mbbxx50 China Electronic Information Industry Development äø­å›½ē”µå­äæ”ęÆäŗ§äøšå‘å±•ē ”ē©¶é™¢'),
(41413, 'https://ror.org/01mbzp479', 'en', 1, 'https://ror.org/01mbzp479 Korea Institute for Curriculum and Evaluation 교윔 과정 ė° ķ‰ź°€ė„¼ģœ„ķ•œ ķ•œźµ­ ģ—°źµ¬ģ†Œ'),
(41414, 'https://ror.org/01mdqc612', 'en', 1, 'https://ror.org/01mdqc612 Institute of Sugar Beet äø­å›½å†œäøšē§‘å­¦é™¢ē”œčœē ”ē©¶ę‰€'),
(41415, 'https://ror.org/01mf4te84', 'en', 1, 'https://ror.org/01mf4te84 Abbey Awards'),
(41416, 'https://ror.org/01mmzry04', 'en', 1, 'https://ror.org/01mmzry04 Vinson & Elkins'),
(41417, 'https://ror.org/01mpgt112', 'cs', 1, 'https://ror.org/01mpgt112 VysokĆ” Å kola RealitnĆ­ Institut Franka Dysona'),
(41418, 'https://ror.org/01mtwad75', 'en', 1, 'https://ror.org/01mtwad75 Washington County Community College'),
(41419, 'https://ror.org/01mv04x52', 'en', 1, 'https://ror.org/01mv04x52 British College of Osteopathic Medicine'),
(41420, 'https://ror.org/01mw24p94', 'en', 1, 'https://ror.org/01mw24p94 Technological Educational Institute of Central Macedonia ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ®Ļ‚ ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(41421, 'https://ror.org/01mww5314', 'en', 1, 'https://ror.org/01mww5314 Health Volunteers Overseas'),
(41422, 'https://ror.org/01mx9t266', 'en', 1, 'https://ror.org/01mx9t266 Indian Institute of Plantation Management'),
(41423, 'https://ror.org/01myxx963', 'en', 1, 'https://ror.org/01myxx963 Sacramento City College'),
(41424, 'https://ror.org/01n09qc98', 'en', 1, 'https://ror.org/01n09qc98 Fukui National College of Technology ē¦äŗ•å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(41425, 'https://ror.org/01n0q6e38', 'en', 1, 'https://ror.org/01n0q6e38 Gause Institute of New Antibiotics Russian Academy of Medical Sciences ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠøŠ·Ń‹ŃŠŗŠ°Š½ŠøŃŽ новых антибиотиков им. Š“. Ф. Š“Š°ŃƒŠ·Šµ'),
(41426, 'https://ror.org/01n1cbn15', 'en', 1, 'https://ror.org/01n1cbn15 Institute of Porous Flow and Fluid Mechanics ęø—ęµęµä½“åŠ›å­¦ē ”ē©¶ę‰€'),
(41427, 'https://ror.org/01n2qjm43', 'en', 1, 'https://ror.org/01n2qjm43 Children’s Charities Foundation'),
(41428, 'https://ror.org/01n3nvq33', 'en', 1, 'https://ror.org/01n3nvq33 Ipek University'),
(41429, 'https://ror.org/01n3xha27', 'en', 1, 'https://ror.org/01n3xha27 American Institute of Pakistan Studies'),
(41430, 'https://ror.org/01n51v443', 'en', 1, 'https://ror.org/01n51v443 University of North Texas at Dallas'),
(41431, 'https://ror.org/01n5qfh17', 'en', 1, 'https://ror.org/01n5qfh17 Centre for Biomedical Engineering and Physics'),
(41432, 'https://ror.org/01n7wr636', 'en', 1, 'https://ror.org/01n7wr636 Southwestern Adventist University UniversitƩ adventiste du sud-ouest'),
(41433, 'https://ror.org/01n80c364', 'en', 1, 'https://ror.org/01n80c364 Sopocka Szkoła Wyższa Sopot University of Applied Science'),
(41434, 'https://ror.org/01nacjv05', 'en', 1, 'https://ror.org/01nacjv05 Louisiana Public Health Institute'),
(41435, 'https://ror.org/01ncqna34', 'en', 1, 'https://ror.org/01ncqna34 Southern California Clinical and Translational Science Institute'),
(41436, 'https://ror.org/01ncz4303', 'no_lang_code', 1, 'https://ror.org/01ncz4303 Sinosteel (China) äø­å›½äø­é’¢é›†å›¢å…¬åø'),
(41437, 'https://ror.org/01nfhtc03', 'en', 1, 'https://ror.org/01nfhtc03 Lowitja Institute'),
(41438, 'https://ror.org/01ngb3r97', 'en', 1, 'https://ror.org/01ngb3r97 Ningbo Academy of Agricultural Sciences å®ę³¢åø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(41439, 'https://ror.org/01ngwgb14', 'no_lang_code', 1, 'https://ror.org/01ngwgb14 AspenTech (United States)'),
(41440, 'https://ror.org/01nh53a98', 'en', 1, 'https://ror.org/01nh53a98 Moore College of Art and Design'),
(41441, 'https://ror.org/01nhftj29', 'en', 1, 'https://ror.org/01nhftj29 Ministry of Natural Resources and Environmental Protection of the Komi Republic ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ ŠŸŃ€ŠøŃ€Š¾Š“Š½Ń‹Ń… Š ŠµŃŃƒŃ€ŃŠ¾Š² И ŠžŃ…Ń€Š°Š½Ń‹ ŠžŠŗŃ€ŃƒŠ¶Š°ŃŽŃ‰ŠµŠ¹ ДреГы Республики Коми'),
(41442, 'https://ror.org/01nj0wq75', 'en', 1, 'https://ror.org/01nj0wq75 Shanghai Academy of Quality Management äøŠęµ·č“Øé‡ē®”ē†ē§‘å­¦ē ”ē©¶é™¢äŗŽ'),
(41443, 'https://ror.org/01nk7a404', 'en', 1, 'https://ror.org/01nk7a404 Naryan-Mar Social and Humanitarian College ŠŠ°Ń€ŃŒŃŠ½-ŠœŠ°Ń€ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ коллеГж имени И.П. Š’Ń‹ŃƒŃ‡ŠµŠ¹ŃŠŗŠ¾Š³Š¾'),
(41444, 'https://ror.org/01nkrwq24', 'en', 1, 'https://ror.org/01nkrwq24 Astronomical Society of Australia'),
(41445, 'https://ror.org/01nks1c62', 'no_lang_code', 1, 'https://ror.org/01nks1c62 Nissan (Japan) ę—„ē”£č‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(41446, 'https://ror.org/01nm14c30', 'en', 1, 'https://ror.org/01nm14c30 Northwest Arkansas Community College'),
(41447, 'https://ror.org/01nmpe263', 'en', 1, 'https://ror.org/01nmpe263 Institute of Spectroscopy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ спектроскопии Российской акаГемии наук'),
(41448, 'https://ror.org/01nna8315', 'en', 1, 'https://ror.org/01nna8315 Community College of Vermont'),
(41449, 'https://ror.org/01nrzdp21', 'en', 1, 'https://ror.org/01nrzdp21 Institute of Agricultural Resources and Regional Planning äø­å›½å†œäøšē§‘å­¦é™¢å†œäøščµ„ęŗäøŽå†œäøšåŒŗåˆ’ē ”ē©¶ę‰€'),
(41450, 'https://ror.org/01nssdz50', 'en', 1, 'https://ror.org/01nssdz50 Government Medical College'),
(41451, 'https://ror.org/01nsvzv47', 'en', 1, 'https://ror.org/01nsvzv47 Lamar State College–Port Arthur'),
(41452, 'https://ror.org/01nsw9720', 'en', 1, 'https://ror.org/01nsw9720 Won Institute of Graduate Studies'),
(41453, 'https://ror.org/01nvzzy80', 'no_lang_code', 1, 'https://ror.org/01nvzzy80 China Energy Engineering Corporation (China) äø­å›½čƒ½ęŗå»ŗč®¾č‚”ä»½ęœ‰é™å…¬åø'),
(41454, 'https://ror.org/01nw25822', 'en', 1, 'https://ror.org/01nw25822 National Institute of Technology, Toyota College å›½ē«‹č±Šē”°å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(41455, 'https://ror.org/01nw8b729', 'en', 1, 'https://ror.org/01nw8b729 Virginia Commission for the Arts'),
(41456, 'https://ror.org/01nxdaw82', 'en', 1, 'https://ror.org/01nxdaw82 KES College Κολλέγιο ĪšĪ•Ī£'),
(41457, 'https://ror.org/01nxpwc48', 'en', 1, 'https://ror.org/01nxpwc48 American College of Neuropsychopharmacology'),
(41458, 'https://ror.org/01nxyxz54', 'en', 1, 'https://ror.org/01nxyxz54 Mahatma Gandhi Mission Institute of Health Sciences'),
(41459, 'https://ror.org/01ny6q882', 'en', 1, 'https://ror.org/01ny6q882 National Academy of Agricultural Sciences'),
(41460, 'https://ror.org/01nzfne16', 'en', 1, 'https://ror.org/01nzfne16 Northern Teacher Education Program'),
(41461, 'https://ror.org/01nzgtr23', 'en', 1, 'https://ror.org/01nzgtr23 Grossmont College'),
(41462, 'https://ror.org/01nzz9r98', 'en', 1, 'https://ror.org/01nzz9r98 Victor Valley College'),
(41463, 'https://ror.org/01p1h2017', 'no_lang_code', 1, 'https://ror.org/01p1h2017 Abhikram (India)'),
(41464, 'https://ror.org/01p1xdv40', 'es', 1, 'https://ror.org/01p1xdv40 Instituto Andaluz del Patrimonio Histórico'),
(41465, 'https://ror.org/01p4zf543', 'fr', 1, 'https://ror.org/01p4zf543 Agence du Bassin Hydraulique de Sebou'),
(41466, 'https://ror.org/01p6qdx15', 'en', 1, 'https://ror.org/01p6qdx15 Beijing Solar Energy Research Institute åŒ—äŗ¬åø‚å¤Ŗé˜³čƒ½ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(41467, 'https://ror.org/01p777k66', 'en', 1, 'https://ror.org/01p777k66 FOD Buitenlandse Zaken, Buitenlandse Handel en Ontwikkelingssamenwerking FPS Foreign Affairs, Foreign Trade and Development Cooperation FƖD AuswƤrtige Angelegenheiten, Außenhandel und Entwicklungszusammenarbeit SPF Affaires Ć©trangĆØres, Commerce extĆ©rieur et CoopĆ©ration au DĆ©veloppement'),
(41468, 'https://ror.org/01p78w079', 'en', 1, 'https://ror.org/01p78w079 Chosun University Dental Hospital'),
(41469, 'https://ror.org/01p7e9s80', 'it', 1, 'https://ror.org/01p7e9s80 Conservatorio Statale di Musica Domenico Cimarosa di Avellino'),
(41470, 'https://ror.org/01p99tm60', 'no_lang_code', 1, 'https://ror.org/01p99tm60 Sekem'),
(41471, 'https://ror.org/01p9aw348', 'no_lang_code', 1, 'https://ror.org/01p9aw348 Suven Life Sciences (India)'),
(41472, 'https://ror.org/01pc4rp54', 'en', 1, 'https://ror.org/01pc4rp54 Art Institute of Houston'),
(41473, 'https://ror.org/01pcs0h38', 'fr', 1, 'https://ror.org/01pcs0h38 Ɖcole Nationale des Greffes'),
(41474, 'https://ror.org/01pe8g251', 'en', 1, 'https://ror.org/01pe8g251 North Bennet Street School'),
(41475, 'https://ror.org/01pf6nd13', 'no_lang_code', 1, 'https://ror.org/01pf6nd13 TD Bank'),
(41476, 'https://ror.org/01pfpr664', 'en', 1, 'https://ror.org/01pfpr664 Le Cordon Bleu College of Culinary Arts, The Blue Ribbon'),
(41477, 'https://ror.org/01pg7ze09', 'cs', 1, 'https://ror.org/01pg7ze09 CEVRO Institut, CEVRO Institute'),
(41478, 'https://ror.org/01pkcvt97', 'no_lang_code', 1, 'https://ror.org/01pkcvt97 JetBlue (United States)'),
(41479, 'https://ror.org/01pmm8272', 'en', 1, 'https://ror.org/01pmm8272 PrivatuniversitƤt Schloss Seeburg Seeburg Castle University'),
(41480, 'https://ror.org/01pmnvq60', 'en', 1, 'https://ror.org/01pmnvq60 India HIV/AIDS Alliance'),
(41481, 'https://ror.org/01pnp3p28', 'en', 1, 'https://ror.org/01pnp3p28 College of Coastal Georgia'),
(41482, 'https://ror.org/01ppfgh80', 'en', 1, 'https://ror.org/01ppfgh80 Packaging Technical Centre'),
(41483, 'https://ror.org/01prf6p66', 'no_lang_code', 1, 'https://ror.org/01prf6p66 Zaber Technologies (Canada)'),
(41484, 'https://ror.org/01prjcc04', 'en', 1, 'https://ror.org/01prjcc04 SRH Hochschule Berlin SRH University Berlin'),
(41485, 'https://ror.org/01pv03m42', 'no_lang_code', 1, 'https://ror.org/01pv03m42 Strand Life Sciences (India)'),
(41486, 'https://ror.org/01pwpsm46', 'en', 1, 'https://ror.org/01pwpsm46 China Academy of Safety Sciences and Technology äø­å›½å®‰å…Øē”Ÿäŗ§ē§‘å­¦ē ”ē©¶é™¢'),
(41487, 'https://ror.org/01pxzvy69', 'en', 1, 'https://ror.org/01pxzvy69 Orangeburg–Calhoun Technical College'),
(41488, 'https://ror.org/01pysaw17', 'it', 1, 'https://ror.org/01pysaw17 Conservatorio di Musica "Luca Marenzio"'),
(41489, 'https://ror.org/01q07sy43', 'fr', 1, 'https://ror.org/01q07sy43 Ministre de la SantƩ'),
(41490, 'https://ror.org/01q1kj855', 'en', 1, 'https://ror.org/01q1kj855 Animal Health Training and Consultancy Service'),
(41491, 'https://ror.org/01q29tm52', 'en', 1, 'https://ror.org/01q29tm52 Smart Water Fund'),
(41492, 'https://ror.org/01q2x5x62', 'en', 1, 'https://ror.org/01q2x5x62 Indian Institute of Social Welfare and Business Management ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦øą§‹ą¦¶ą§ą¦Æą¦¾ą¦² ওয়েলফেয়ার ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ'),
(41493, 'https://ror.org/01qas6g18', 'en', 1, 'https://ror.org/01qas6g18 Sƶdra Ƅlvsborg Hospital Sƶdra Ƅlvsborgs Sjukhus'),
(41494, 'https://ror.org/01qcg0c38', 'pt', 1, 'https://ror.org/01qcg0c38 Escola Superior de Ciências da Santa Casa de Misericórdia de Vitória'),
(41495, 'https://ror.org/01qfgm256', 'en', 1, 'https://ror.org/01qfgm256 V.E. Lashkaryov Institute of Semiconductor Physics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізики напівпровіГників ім. Š’.Š„. Š›Š°ŃˆŠŗŠ°Ń€ŃŒŠ¾Š²'),
(41496, 'https://ror.org/01qg9m571', 'pt', 1, 'https://ror.org/01qg9m571 Jornal de NotĆ­cias'),
(41497, 'https://ror.org/01qgfpv05', 'en', 1, 'https://ror.org/01qgfpv05 Pennsylvania Highlands Community College'),
(41498, 'https://ror.org/01qhsr268', 'fr', 1, 'https://ror.org/01qhsr268 Institut des Arts de Diffusion'),
(41499, 'https://ror.org/01qhvn038', 'en', 1, 'https://ror.org/01qhvn038 Petplan Charitable Trust'),
(41500, 'https://ror.org/01qjbb734', 'en', 1, 'https://ror.org/01qjbb734 Hochschule der SƤchsischen Polizei Saxon Police Force'),
(41501, 'https://ror.org/01qqm4q52', 'en', 1, 'https://ror.org/01qqm4q52 CaƱada College'),
(41502, 'https://ror.org/01qv7e222', 'en', 1, 'https://ror.org/01qv7e222 Pontifical Athenaeum Regina Apostolorum Pontificio Ateneo Regina Apostolorum'),
(41503, 'https://ror.org/01qw1bz85', 'en', 1, 'https://ror.org/01qw1bz85 Humphreys College'),
(41504, 'https://ror.org/01qw4gv04', 'en', 1, 'https://ror.org/01qw4gv04 Sri Lanka Law College'),
(41505, 'https://ror.org/01qzva589', 'no_lang_code', 1, 'https://ror.org/01qzva589 Monsanto (India)'),
(41506, 'https://ror.org/01r134p51', 'en', 1, 'https://ror.org/01r134p51 Urban Unit'),
(41507, 'https://ror.org/01r17ea31', 'pt', 1, 'https://ror.org/01r17ea31 Grupo Ibmec Educacional'),
(41508, 'https://ror.org/01r3pfw81', 'en', 1, 'https://ror.org/01r3pfw81 Institute of Animal Sciences'),
(41509, 'https://ror.org/01r45ka37', 'en', 1, 'https://ror.org/01r45ka37 Nanjing Library å—äŗ¬å›¾ä¹¦é¦†'),
(41510, 'https://ror.org/01r7sqp31', 'en', 1, 'https://ror.org/01r7sqp31 Melbourne Water'),
(41511, 'https://ror.org/01r9gn109', 'en', 1, 'https://ror.org/01r9gn109 Surry Community College'),
(41512, 'https://ror.org/01r9n3w70', 'en', 1, 'https://ror.org/01r9n3w70 Connecticut Department of Transportation'),
(41513, 'https://ror.org/01raxej33', 'en', 1, 'https://ror.org/01raxej33 Jiangsu Provincial Party School ę±Ÿč‹ēœč”Œę”æå­¦é™¢'),
(41514, 'https://ror.org/01rdbtj19', 'en', 1, 'https://ror.org/01rdbtj19 Australian Rotary Health'),
(41515, 'https://ror.org/01rfg1r50', 'en', 1, 'https://ror.org/01rfg1r50 Department of Higher Education'),
(41516, 'https://ror.org/01rg6da32', 'en', 1, 'https://ror.org/01rg6da32 Bureau of Agriculture of Guangzhou Municipality å¹æå·žåø‚å†œäøšå±€'),
(41517, 'https://ror.org/01rhp6n73', 'en', 1, 'https://ror.org/01rhp6n73 Erhvervsakademi SjƦlland Zealand Institute of Business and Technology'),
(41518, 'https://ror.org/01rjfjt94', 'en', 1, 'https://ror.org/01rjfjt94 South University'),
(41519, 'https://ror.org/01rjsge60', 'no_lang_code', 1, 'https://ror.org/01rjsge60 Office Depot (United States)'),
(41520, 'https://ror.org/01rk7mv85', 'no_lang_code', 1, 'https://ror.org/01rk7mv85 Siemens (Hungary)'),
(41521, 'https://ror.org/01rkgg256', 'en', 1, 'https://ror.org/01rkgg256 Korea Customs Service ꓀세청'),
(41522, 'https://ror.org/01rkw8w63', 'no_lang_code', 1, 'https://ror.org/01rkw8w63 Actia Group (France)'),
(41523, 'https://ror.org/01rmmj052', 'en', 1, 'https://ror.org/01rmmj052 Centre of Ticks and Tick-borne diseases'),
(41524, 'https://ror.org/01rn72k05', 'en', 1, 'https://ror.org/01rn72k05 G.A. Razuvaev Institute of Organometallic Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металлоорганической химии имени Š“. А. Разуваева'),
(41525, 'https://ror.org/01s15bz77', 'en', 1, 'https://ror.org/01s15bz77 All-Russian Scientific Research and Technological Institute of Poultry Russian Academy of Agricultural Sciences Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ птицевоГства Российской акаГемии ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Ń… наук'),
(41526, 'https://ror.org/01s1s3g75', 'en', 1, 'https://ror.org/01s1s3g75 Hebei Meteorological Bureau ę²³åŒ—ēœę°”č±”å±€'),
(41527, 'https://ror.org/01s26xz84', 'en', 1, 'https://ror.org/01s26xz84 Mesabi Range College'),
(41528, 'https://ror.org/01s3vfp47', 'en', 1, 'https://ror.org/01s3vfp47 Atlanta Technical College'),
(41529, 'https://ror.org/01s4arm57', 'pt', 1, 'https://ror.org/01s4arm57 Faculdade GuairacĆ” GuaĆ­racĆ” Faculty'),
(41530, 'https://ror.org/01s9gyx13', 'en', 1, 'https://ror.org/01s9gyx13 Anti Corruption and Civil Rights Commission źµ­ėÆ¼ź¶Œģµģœ„ģ›ķšŒ'),
(41531, 'https://ror.org/01scq3556', 'en', 1, 'https://ror.org/01scq3556 Denmark Technical College'),
(41532, 'https://ror.org/01senny43', 'pt', 1, 'https://ror.org/01senny43 Instituto de Pesquisas EnergƩticas e Nucleares Nuclear Energy Research Institute'),
(41533, 'https://ror.org/01sfnbz84', 'en', 1, 'https://ror.org/01sfnbz84 VisionTree'),
(41534, 'https://ror.org/01sharn77', 'en', 1, 'https://ror.org/01sharn77 Office of Multidisciplinary Activities'),
(41535, 'https://ror.org/01shp5e75', 'en', 1, 'https://ror.org/01shp5e75 Black River Technical College'),
(41536, 'https://ror.org/01ska0903', 'en', 1, 'https://ror.org/01ska0903 Institute of the Human Brain Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мозга человека Š ŠŠ'),
(41537, 'https://ror.org/01skwee93', 'no_lang_code', 1, 'https://ror.org/01skwee93 AgeneBio (United States)'),
(41538, 'https://ror.org/01smvzn14', 'en', 1, 'https://ror.org/01smvzn14 Winter Cereal Trust'),
(41539, 'https://ror.org/01sn2ky05', 'no_lang_code', 1, 'https://ror.org/01sn2ky05 Genes''ink (France)'),
(41540, 'https://ror.org/01sn6ez28', 'en', 1, 'https://ror.org/01sn6ez28 Manpower Development Corporation'),
(41541, 'https://ror.org/01spfrk28', 'en', 1, 'https://ror.org/01spfrk28 Columbia College Hollywood'),
(41542, 'https://ror.org/01spg6m39', 'en', 1, 'https://ror.org/01spg6m39 East Asia School of Theology äøœäŗžē„žå­¦é™¢'),
(41543, 'https://ror.org/01srjfc50', 'de', 1, 'https://ror.org/01srjfc50 Landesarchiv'),
(41544, 'https://ror.org/01ss10648', 'en', 1, 'https://ror.org/01ss10648 Northern University of Malaysia Universiti Utara Malaysia é¦¬ä¾†č„æäŗžåŒ—ę–¹å¤§å­ø'),
(41545, 'https://ror.org/01st86b26', 'no_lang_code', 1, 'https://ror.org/01st86b26 Energy Services in Sahelian Environment (Senegal) Service de l''Ʃnergie en milieu sahƩlien'),
(41546, 'https://ror.org/01stcbz02', 'en', 1, 'https://ror.org/01stcbz02 Los Angeles Mission College'),
(41547, 'https://ror.org/01svh8112', 'pl', 1, 'https://ror.org/01svh8112 Wyższa Szkoła Bezpieczeństwa i Securities Services w Warszawie'),
(41548, 'https://ror.org/01svz3w83', 'en', 1, 'https://ror.org/01svz3w83 United States Indonesia Society'),
(41549, 'https://ror.org/01swa5m73', 'en', 1, 'https://ror.org/01swa5m73 Royal College of Midwives'),
(41550, 'https://ror.org/01swt4h11', 'en', 1, 'https://ror.org/01swt4h11 Supreme Court of Korea ėŒ€ķ•œėÆ¼źµ­ ėŒ€ė²•ģ›'),
(41551, 'https://ror.org/01sx88q57', 'en', 1, 'https://ror.org/01sx88q57 RenewableUK'),
(41552, 'https://ror.org/01sygwk11', 'en', 1, 'https://ror.org/01sygwk11 Tennessee College of Applied Technology - Shelbyville'),
(41553, 'https://ror.org/01t067805', 'en', 1, 'https://ror.org/01t067805 Central Soil and Materials Research Station'),
(41554, 'https://ror.org/01t0hvx23', 'en', 1, 'https://ror.org/01t0hvx23 Stanly Community College'),
(41555, 'https://ror.org/01t2fht66', 'en', 1, 'https://ror.org/01t2fht66 Institute of Economic System and Management å›½å®¶å‘å±•å’Œę”¹é©å§”å‘˜ä¼šē»ęµŽä½“åˆ¶äøŽē®”ē†ē ”ē©¶ę‰€'),
(41556, 'https://ror.org/01t3f4t10', 'en', 1, 'https://ror.org/01t3f4t10 ActionAid'),
(41557, 'https://ror.org/01t3g9a95', 'en', 1, 'https://ror.org/01t3g9a95 Community College of Beaver County'),
(41558, 'https://ror.org/01t51rc23', 'en', 1, 'https://ror.org/01t51rc23 Volunteer State Community College'),
(41559, 'https://ror.org/01t56m506', 'no_lang_code', 1, 'https://ror.org/01t56m506 Caisse nationale suisse d''assurance en cas d''accidents Istituto nazionale svizzero di assicurazione contro gli infortuni Schweizerische Unfallversicherungsanstalt Suva'),
(41560, 'https://ror.org/01t5p5h79', 'no_lang_code', 1, 'https://ror.org/01t5p5h79 Cedar Fair (United States)'),
(41561, 'https://ror.org/01t8drk63', 'en', 1, 'https://ror.org/01t8drk63 Land Transport Authority Penguasa Pengangkutan Darat ą®Øą®æą®²ą®ŖąÆ ą®ŖąÆ‹ą®•ąÆą®•ąÆą®µą®°ą®¤ąÆą®¤ąÆ ą®µą®¾ą®°ą®æą®Æą®®ąÆ é™†č·Æäŗ¤é€šē®”ē†å±€'),
(41562, 'https://ror.org/01t8gb397', 'en', 1, 'https://ror.org/01t8gb397 Scientific Centre for Aerospace Research of the Earth ŠŠŠ£Š§ŠŠ«Š™ Š¦Š•ŠŠ¢Š  ŠŠ­Š ŠžŠšŠžŠ”ŠœŠ˜Š§Š•Š”ŠšŠ˜Š„ Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠŠ˜Š™ Š—Š•ŠœŠ›Š˜ Š˜Š-ТА Š“Š•ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š„ ŠŠŠ£Šš ŠŠŠ Š£ŠšŠ ŠŠ˜ŠŠ«, ГУ'),
(41563, 'https://ror.org/01t8tyk97', 'sv', 1, 'https://ror.org/01t8tyk97 TransportForsK'),
(41564, 'https://ror.org/01t9czq80', 'en', 1, 'https://ror.org/01t9czq80 International University of Rabat UniversitƩ Internationale de Rabat'),
(41565, 'https://ror.org/01tanx198', 'fr', 1, 'https://ror.org/01tanx198 Centre Africain de Recherches sur Bananiers et Plantains, Centre RƩgional de Recherches sur Bananiers et Plantains'),
(41566, 'https://ror.org/01tb4bh27', 'en', 1, 'https://ror.org/01tb4bh27 National Fisheries Research and Development Institute'),
(41567, 'https://ror.org/01tdr6x55', 'en', 1, 'https://ror.org/01tdr6x55 Kenyan Medical Women''s Association'),
(41568, 'https://ror.org/01tefzr55', 'en', 1, 'https://ror.org/01tefzr55 Great Bay Stewards'),
(41569, 'https://ror.org/01teyc394', 'en', 1, 'https://ror.org/01teyc394 Health Insurance Review and Assessment Service 걓강 ė³“ķ—˜ 심사 ķ‰ź°€ģ›'),
(41570, 'https://ror.org/01tg7a346', 'en', 1, 'https://ror.org/01tg7a346 SA Health'),
(41571, 'https://ror.org/01th09c42', 'no_lang_code', 1, 'https://ror.org/01th09c42 Suncon Engineers (India)'),
(41572, 'https://ror.org/01tq31x15', 'en', 1, 'https://ror.org/01tq31x15 Państwowa Wyższa Szkoła Zawodowa im. rotmistrza Witolda Pileckiego w Oświęcimiu State School of Higher Education in Oświęcim'),
(41573, 'https://ror.org/01tqmg467', 'en', 1, 'https://ror.org/01tqmg467 Ministry of Health and Social Services'),
(41574, 'https://ror.org/01tqmsq19', 'en', 1, 'https://ror.org/01tqmsq19 Academia Tehnică Militară Military Technical Academy'),
(41575, 'https://ror.org/01trzhx11', 'en', 1, 'https://ror.org/01trzhx11 Antelope Valley College'),
(41576, 'https://ror.org/01tvfmc06', 'no_lang_code', 1, 'https://ror.org/01tvfmc06 Glasbau Hahn (Germany)'),
(41577, 'https://ror.org/01tw2tw87', 'no_lang_code', 1, 'https://ror.org/01tw2tw87 Gentronix (United Kingdom)'),
(41578, 'https://ror.org/01twn9665', 'en', 1, 'https://ror.org/01twn9665 Department of Social Sciences'),
(41579, 'https://ror.org/01tx99335', 'en', 1, 'https://ror.org/01tx99335 Maysville Community and Technical College'),
(41580, 'https://ror.org/01tzw5x87', 'fr', 1, 'https://ror.org/01tzw5x87 RĆ©seau des Plateformess d’ONG d’Afrique de l’Ouest et du Centre'),
(41581, 'https://ror.org/01v3sxv43', 'en', 1, 'https://ror.org/01v3sxv43 North Lake College'),
(41582, 'https://ror.org/01v41bc35', 'en', 1, 'https://ror.org/01v41bc35 Oregon College of Art and Craft'),
(41583, 'https://ror.org/01v4kb744', 'no_lang_code', 1, 'https://ror.org/01v4kb744 Larsen & Toubro (India)'),
(41584, 'https://ror.org/01v58ha34', 'pt', 1, 'https://ror.org/01v58ha34 Agrupamento de Escolas Nuno Ɓlvares'),
(41585, 'https://ror.org/01v59d868', 'sl', 1, 'https://ror.org/01v59d868 Å olski Center Å entjur'),
(41586, 'https://ror.org/01v5nrd60', 'en', 1, 'https://ror.org/01v5nrd60 Center for Health Design'),
(41587, 'https://ror.org/01v5wyw51', 'en', 1, 'https://ror.org/01v5wyw51 Minnesota Housing Finance Agency'),
(41588, 'https://ror.org/01v7j8968', 'de', 1, 'https://ror.org/01v7j8968 Hochschule für den öffentlichen Dienst in Bayern'),
(41589, 'https://ror.org/01v7v5m29', 'en', 1, 'https://ror.org/01v7v5m29 Uttarakhand Jal Sansthan'),
(41590, 'https://ror.org/01v7zwf98', 'en', 1, 'https://ror.org/01v7zwf98 National Tainan Institute of Nursing åœ‹ē«‹č‡ŗå—č­·ē†å°ˆē§‘å­øę ”'),
(41591, 'https://ror.org/01v8nfs80', 'en', 1, 'https://ror.org/01v8nfs80 Warsaw Academy of Computer Science, Management and Administration Wyższa Szkoła Informatyki, Zarządzania i Administracji'),
(41592, 'https://ror.org/01vcn5r95', 'en', 1, 'https://ror.org/01vcn5r95 National Postgraduate Medical College of Nigeria'),
(41593, 'https://ror.org/01vctnd13', 'nl', 1, 'https://ror.org/01vctnd13 Vereniging Achmea'),
(41594, 'https://ror.org/01vd19x80', 'no_lang_code', 1, 'https://ror.org/01vd19x80 Arthrex (United States)'),
(41595, 'https://ror.org/01vdc4k69', 'no_lang_code', 1, 'https://ror.org/01vdc4k69 Cyprotex (United States)'),
(41596, 'https://ror.org/01vdt8f48', 'en', 1, 'https://ror.org/01vdt8f48 MRC Mitochondrial Biology Unit'),
(41597, 'https://ror.org/01vfwah22', 'en', 1, 'https://ror.org/01vfwah22 Pacific Dental College and Hospital'),
(41598, 'https://ror.org/01vga2998', 'en', 1, 'https://ror.org/01vga2998 Agincourt Health and Socio-Demographic Surveillance System'),
(41599, 'https://ror.org/01vgq3930', 'en', 1, 'https://ror.org/01vgq3930 Tanzania Red Cross Society'),
(41600, 'https://ror.org/01vja6y50', 'en', 1, 'https://ror.org/01vja6y50 South Mountain Community College'),
(41601, 'https://ror.org/01vn5yf24', 'en', 1, 'https://ror.org/01vn5yf24 Solano Community College'),
(41602, 'https://ror.org/01vpg0r82', 'en', 1, 'https://ror.org/01vpg0r82 Uintah Basin Applied Technology College'),
(41603, 'https://ror.org/01vq5dj09', 'en', 1, 'https://ror.org/01vq5dj09 Shrewsbury College'),
(41604, 'https://ror.org/01vrhpc86', 'en', 1, 'https://ror.org/01vrhpc86 Ethiopian Society of Obstetricians and Gynecologists'),
(41605, 'https://ror.org/01vvpqc21', 'no_lang_code', 1, 'https://ror.org/01vvpqc21 Panos Institute Southern Africa'),
(41606, 'https://ror.org/01w09y597', 'en', 1, 'https://ror.org/01w09y597 Mannheim University of Music and Performing Arts Staatliche Hochschule für Musik und Darstellende Kunst Mannheim'),
(41607, 'https://ror.org/01w336058', 'en', 1, 'https://ror.org/01w336058 Royal Norwegian Embassy in London'),
(41608, 'https://ror.org/01w44h058', 'en', 1, 'https://ror.org/01w44h058 Tartu Academy of Theology Tartu Teoloogia Akadeemia'),
(41609, 'https://ror.org/01w4c3c70', 'no_lang_code', 1, 'https://ror.org/01w4c3c70 WAM Technology (South Africa)'),
(41610, 'https://ror.org/01w4tn863', 'en', 1, 'https://ror.org/01w4tn863 Polytechnic Lavoslav Ružička Vukovar VeleučiliŔte Lavoslav Ružička u Vukovaru'),
(41611, 'https://ror.org/01w6rxw55', 'en', 1, 'https://ror.org/01w6rxw55 Atomic Minerals Directorate for Exploration and Research ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤–ą¤Øą¤æą¤œ ą¤…ą¤Øą„ą¤µą„‡ą¤·ą¤£ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(41612, 'https://ror.org/01w84qj32', 'en', 1, 'https://ror.org/01w84qj32 V.A. Negovsky Scientific Research Institute of General Reanimatology ŠŠ˜Š˜ общей реаниматологии Š ŠŠœŠ'),
(41613, 'https://ror.org/01w8np338', 'no_lang_code', 1, 'https://ror.org/01w8np338 Munin Corporation (United States)'),
(41614, 'https://ror.org/01w9gvv59', 'en', 1, 'https://ror.org/01w9gvv59 Pueblo Community College'),
(41615, 'https://ror.org/01wc8dm69', 'en', 1, 'https://ror.org/01wc8dm69 Central Clinical Hospital and Polyclinic Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° c поликлиникой Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Гелами ŠŸŃ€ŠµŠ·ŠøŠ“ента Российской ФеГерации'),
(41616, 'https://ror.org/01wcw8667', 'pl', 1, 'https://ror.org/01wcw8667 Wyższa Szkoła Przedsiębiorczości i Marketingu w Chrzanowie'),
(41617, 'https://ror.org/01wd8z492', 'fr', 1, 'https://ror.org/01wd8z492 Conseil FranƧais de l''Ɖnergie'),
(41618, 'https://ror.org/01we8bn75', 'en', 1, 'https://ror.org/01we8bn75 PFH Private University of Applied Sciences Private Hochschule Gƶttingen'),
(41619, 'https://ror.org/01wff4j64', 'no_lang_code', 1, 'https://ror.org/01wff4j64 Macy''s (United States)'),
(41620, 'https://ror.org/01whksa54', 'en', 1, 'https://ror.org/01whksa54 Institute of Astronomy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ астрономии Š ŠŠ'),
(41621, 'https://ror.org/01wk35t67', 'fr', 1, 'https://ror.org/01wk35t67 Groupe Sociétés, Religions, Laïcités'),
(41622, 'https://ror.org/01wk6zs95', 'en', 1, 'https://ror.org/01wk6zs95 Aiken Technical College'),
(41623, 'https://ror.org/01wk9js81', 'en', 1, 'https://ror.org/01wk9js81 Ministry of Environment Science Technology and Innovation'),
(41624, 'https://ror.org/01wm6bg59', 'en', 1, 'https://ror.org/01wm6bg59 West Shore Community College'),
(41625, 'https://ror.org/01wm9rt41', 'en', 1, 'https://ror.org/01wm9rt41 Rowan-Cabarrus Community College, Rowan–Cabarrus Community College'),
(41626, 'https://ror.org/01wmq0x68', 'en', 1, 'https://ror.org/01wmq0x68 Beykoz Lojistik Meslek Yüksekokulu Beykoz Vocational School of Logistics'),
(41627, 'https://ror.org/01wp3d509', 'en', 1, 'https://ror.org/01wp3d509 Academy of State Administration of Grain å›½å®¶ē²®é£Ÿå±€ē§‘å­¦ē ”ē©¶é™¢'),
(41628, 'https://ror.org/01wvxvm13', 'en', 1, 'https://ror.org/01wvxvm13 University of Iowa Foundation'),
(41629, 'https://ror.org/01ww2bg72', 'en', 1, 'https://ror.org/01ww2bg72 Oil and Gas Research Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем нефти Šø газа Российской акаГемии наук'),
(41630, 'https://ror.org/01wx0d888', 'de', 1, 'https://ror.org/01wx0d888 Fachhochschule für Management & Kommunikation'),
(41631, 'https://ror.org/01wz97s39', 'en', 1, 'https://ror.org/01wz97s39 Senckenberg Forschungsinstitut und Naturmuseum Frankfurt/M Senckenberg Research Institute and Natural History Museum Frankfurt/M'),
(41632, 'https://ror.org/01wzc4m50', 'no_lang_code', 1, 'https://ror.org/01wzc4m50 Aurobindo Pharma (India)'),
(41633, 'https://ror.org/01x1jeh78', 'en', 1, 'https://ror.org/01x1jeh78 International School of Law and Business Tarptautinė teisės ir verslo aukÅ”toji mokykla'),
(41634, 'https://ror.org/01x1nsf94', 'no_lang_code', 1, 'https://ror.org/01x1nsf94 Smartesting (France)'),
(41635, 'https://ror.org/01x1wr265', 'no_lang_code', 1, 'https://ror.org/01x1wr265 Tata Technologies (India)'),
(41636, 'https://ror.org/01x3kkr08', 'no_lang_code', 1, 'https://ror.org/01x3kkr08 JPMorgan Chase & Co (United States)'),
(41637, 'https://ror.org/01x51st25', 'no_lang_code', 1, 'https://ror.org/01x51st25 Cognizant (India)'),
(41638, 'https://ror.org/01x735t80', 'no_lang_code', 1, 'https://ror.org/01x735t80 CoreQuest (Switzerland)'),
(41639, 'https://ror.org/01x7r2e09', 'en', 1, 'https://ror.org/01x7r2e09 Central Ground Water Board'),
(41640, 'https://ror.org/01x7teq58', 'en', 1, 'https://ror.org/01x7teq58 City Vision University'),
(41641, 'https://ror.org/01xaxtt28', 'en', 1, 'https://ror.org/01xaxtt28 Varna University of Management'),
(41642, 'https://ror.org/01xc6az48', 'en', 1, 'https://ror.org/01xc6az48 Fondazione Internazionale Balzan International Balzan Prize Foundation'),
(41643, 'https://ror.org/01xcsye48', 'en', 1, 'https://ror.org/01xcsye48 Kings Health Partners'),
(41644, 'https://ror.org/01xddfn70', 'en', 1, 'https://ror.org/01xddfn70 Fairview School District'),
(41645, 'https://ror.org/01xe6j451', 'no_lang_code', 1, 'https://ror.org/01xe6j451 Bupa'),
(41646, 'https://ror.org/01xes5j22', 'en', 1, 'https://ror.org/01xes5j22 Panos Eastern Africa'),
(41647, 'https://ror.org/01xf7jb19', 'en', 1, 'https://ror.org/01xf7jb19 Zanjan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی زنجان'),
(41648, 'https://ror.org/01xk4y863', 'it', 1, 'https://ror.org/01xk4y863 Accademia di Belle Arti di Napoli Naples Academy of Fine Arts'),
(41649, 'https://ror.org/01xmrwb67', 'en', 1, 'https://ror.org/01xmrwb67 Lagos State Polytechnic'),
(41650, 'https://ror.org/01xq37c18', 'en', 1, 'https://ror.org/01xq37c18 V.I.Shumakov Federal Research Center of Transplantology and Artificial Organs Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр трансплантологии Šø ŠøŃŠŗŃƒŃŃŃ‚Š²ŠµŠ½Š½Ń‹Ń… органов имени акаГемика Š’.И. Шумакова'),
(41651, 'https://ror.org/01xqt1a75', 'en', 1, 'https://ror.org/01xqt1a75 CIAM Public Health Research and Development Centre'),
(41652, 'https://ror.org/01xsmwp79', 'no_lang_code', 1, 'https://ror.org/01xsmwp79 Springer Nature (United States)'),
(41653, 'https://ror.org/01xtfrw48', 'it', 1, 'https://ror.org/01xtfrw48 Conservatorio di Musica Umberto Giordano'),
(41654, 'https://ror.org/01xwqek41', 'en', 1, 'https://ror.org/01xwqek41 Australian Federal Police'),
(41655, 'https://ror.org/01xww0f05', 'no_lang_code', 1, 'https://ror.org/01xww0f05 Base4 Innovation (United Kingdom)'),
(41656, 'https://ror.org/01xx2ne27', 'en', 1, 'https://ror.org/01xx2ne27 Department of Virology'),
(41657, 'https://ror.org/01xyb1v19', 'en', 1, 'https://ror.org/01xyb1v19 Civil Aviation Flight University of China äø­å›½ę°‘ē”ØčˆŖē©ŗé£žč”Œå­¦é™¢'),
(41658, 'https://ror.org/01xyx5098', 'en', 1, 'https://ror.org/01xyx5098 Defense Information Systems Agency'),
(41659, 'https://ror.org/01y010s06', 'en', 1, 'https://ror.org/01y010s06 Tanzania Traditional Energy Development and Environment Organisation'),
(41660, 'https://ror.org/01y0eyq70', 'en', 1, 'https://ror.org/01y0eyq70 International Society for the Study of the Lumbar Spine'),
(41661, 'https://ror.org/01y0jpb32', 'en', 1, 'https://ror.org/01y0jpb32 Tallinn Health Care College Tallinna Tervishoiu Korgkool'),
(41662, 'https://ror.org/01y2r8f15', 'en', 1, 'https://ror.org/01y2r8f15 United States Institute for Theatre Technology'),
(41663, 'https://ror.org/01y414495', 'en', 1, 'https://ror.org/01y414495 Paris School of Business'),
(41664, 'https://ror.org/01y5kcv82', 'en', 1, 'https://ror.org/01y5kcv82 BridgeValley Community and Technical College'),
(41665, 'https://ror.org/01yf3qn42', 'no_lang_code', 1, 'https://ror.org/01yf3qn42 Air Quality Consultants (United Kingdom)'),
(41666, 'https://ror.org/01ygh0g51', 'en', 1, 'https://ror.org/01ygh0g51 Welding Research Council'),
(41667, 'https://ror.org/01ygw1452', 'en', 1, 'https://ror.org/01ygw1452 Institute of Ecological Problems of the North Š£Ń€Šž Š ŠŠ. Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… проблем Девера Š£Ń€Šž Š ŠŠ в соответствии с приказом Š¤ŠŠŠž'),
(41668, 'https://ror.org/01yh59845', 'en', 1, 'https://ror.org/01yh59845 Montana Bible College'),
(41669, 'https://ror.org/01ym21515', 'en', 1, 'https://ror.org/01ym21515 Darton State College'),
(41670, 'https://ror.org/01ym43775', 'it', 1, 'https://ror.org/01ym43775 Academy of Fine Arts of Florence Accademia di Belle Arti di Firenze'),
(41671, 'https://ror.org/01ymr0y61', 'en', 1, 'https://ror.org/01ymr0y61 National Archives of Australia'),
(41672, 'https://ror.org/01yms7j39', 'en', 1, 'https://ror.org/01yms7j39 Academy of Business and Health Sciences in Lodz Wyższa Szkoła Biznesu i Nauk o Zdrowiu'),
(41673, 'https://ror.org/01yp7wa04', 'no_lang_code', 1, 'https://ror.org/01yp7wa04 NovaLead Pharma (India)'),
(41674, 'https://ror.org/01yqkbc31', 'en', 1, 'https://ror.org/01yqkbc31 Chetham''s School of Music'),
(41675, 'https://ror.org/01ysc1e93', 'en', 1, 'https://ror.org/01ysc1e93 Lower Columbia College'),
(41676, 'https://ror.org/01ysrdj89', 'no_lang_code', 1, 'https://ror.org/01ysrdj89 Medlog Systems (United States)'),
(41677, 'https://ror.org/01yvchj11', 'en', 1, 'https://ror.org/01yvchj11 Horizon University'),
(41678, 'https://ror.org/01yy74248', 'en', 1, 'https://ror.org/01yy74248 Institute of Applied Technology åŗ”ē”ØęŠ€ęœÆē ”ē©¶ę‰€'),
(41679, 'https://ror.org/01yykzy84', 'no_lang_code', 1, 'https://ror.org/01yykzy84 Mahle (Portugal)'),
(41680, 'https://ror.org/01yz56j89', 'en', 1, 'https://ror.org/01yz56j89 National Training Service Servicio Nacional de Aprendizaje'),
(41681, 'https://ror.org/01z1qnm06', 'en', 1, 'https://ror.org/01z1qnm06 Institute for Advanced Study in the Humanities Essen Kulturwissenschaftliches Institut Essen'),
(41682, 'https://ror.org/01z1rpp33', 'en', 1, 'https://ror.org/01z1rpp33 SKANS School of Accountancy'),
(41683, 'https://ror.org/01z22gc86', 'en', 1, 'https://ror.org/01z22gc86 Chinese Academy of Cultural Heritage äø­å›½ę–‡åŒ–é—äŗ§ē ”ē©¶é™¢'),
(41684, 'https://ror.org/01z3b4937', 'fr', 1, 'https://ror.org/01z3b4937 Ɖcole Nationale ForestiĆØre d''IngĆ©nieurs'),
(41685, 'https://ror.org/01z4e0695', 'en', 1, 'https://ror.org/01z4e0695 Winston Churchill Memorial Trust'),
(41686, 'https://ror.org/01z4nez64', 'en', 1, 'https://ror.org/01z4nez64 Academy of Broadcasting Science 国家广播电影电视总局广播科学研究院'),
(41687, 'https://ror.org/01z4x3k54', 'en', 1, 'https://ror.org/01z4x3k54 Association for Stimulating Know How'),
(41688, 'https://ror.org/01z524369', 'en', 1, 'https://ror.org/01z524369 Jamestown Business College'),
(41689, 'https://ror.org/01z61p797', 'en', 1, 'https://ror.org/01z61p797 Big Bend Community College'),
(41690, 'https://ror.org/01z686714', 'en', 1, 'https://ror.org/01z686714 Institute of Computational Mathematics and Mathematical Geophysics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ математики Šø математической геофизики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(41691, 'https://ror.org/01z6kem44', 'no_lang_code', 1, 'https://ror.org/01z6kem44 Hiep Phuoc Power (Vietnam)'),
(41692, 'https://ror.org/01zavdj36', 'en', 1, 'https://ror.org/01zavdj36 Ministry of Health and Social Affairs Socialdepartementet'),
(41693, 'https://ror.org/01zavqc64', 'en', 1, 'https://ror.org/01zavqc64 Institute of Petroleum Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Єимии ŠŠµŃ„ти До Š ŠŠ'),
(41694, 'https://ror.org/01zb1m871', 'en', 1, 'https://ror.org/01zb1m871 Conservatoire Royal de LiĆØge Koninklijk Conservatorium Luik Royal Conservatory of LiĆØge'),
(41695, 'https://ror.org/01zb3pc28', 'en', 1, 'https://ror.org/01zb3pc28 North Kent College'),
(41696, 'https://ror.org/01zbxna89', 'en', 1, 'https://ror.org/01zbxna89 Overseas Koreans Foundation'),
(41697, 'https://ror.org/01zc1f144', 'es', 1, 'https://ror.org/01zc1f144 Hospital Universitario Araba'),
(41698, 'https://ror.org/01zg1t177', 'en', 1, 'https://ror.org/01zg1t177 Catholic Development Office'),
(41699, 'https://ror.org/01zg9j813', 'no_lang_code', 1, 'https://ror.org/01zg9j813 Thieme Medical Publishers (Germany)'),
(41700, 'https://ror.org/01zh8gn91', 'no_lang_code', 1, 'https://ror.org/01zh8gn91 Companhia EnergƩtica de Pernambuco'),
(41701, 'https://ror.org/01zk54j03', 'en', 1, 'https://ror.org/01zk54j03 Evelyn Hone College'),
(41702, 'https://ror.org/01zkyh967', 'fr', 1, 'https://ror.org/01zkyh967 Commune de Bobo-Dioulasso'),
(41703, 'https://ror.org/01zmrev66', 'en', 1, 'https://ror.org/01zmrev66 Mississippi Delta Community College'),
(41704, 'https://ror.org/01zp8e713', 'en', 1, 'https://ror.org/01zp8e713 The Arab Institute of Navigation');
INSERT INTO `rors` VALUES
(41705, 'https://ror.org/01zpqad83', 'en', 1, 'https://ror.org/01zpqad83 West Virginia Space Grant Consortium'),
(41706, 'https://ror.org/01zqd7t66', 'en', 1, 'https://ror.org/01zqd7t66 Instituto Nacional de Meteorologia de MoƧambique Mozambique National Institute of Meteorology'),
(41707, 'https://ror.org/01zqv1s26', 'en', 1, 'https://ror.org/01zqv1s26 Faculty of Public Health'),
(41708, 'https://ror.org/01zr65j15', 'pt', 1, 'https://ror.org/01zr65j15 Instituto Nacional de CiĆŖncia e Tecnologia de CiĆŖncia Animal'),
(41709, 'https://ror.org/01zrkhb76', 'no_lang_code', 1, 'https://ror.org/01zrkhb76 Stanley Black & Decker (United States)'),
(41710, 'https://ror.org/01zvh5583', 'en', 1, 'https://ror.org/01zvh5583 Research for Equity And Community Health Trust'),
(41711, 'https://ror.org/01zx97922', 'en', 1, 'https://ror.org/01zx97922 Fraunhofer Institute of Optronics, System Technologies and Image Exploitation Fraunhofer-Institut für Optronik, Systemtechnik und Bildauswertung'),
(41712, 'https://ror.org/01zys7518', 'en', 1, 'https://ror.org/01zys7518 Victoria College'),
(41713, 'https://ror.org/01zyzqr72', 'en', 1, 'https://ror.org/01zyzqr72 Malawi Blood Transfusion Service'),
(41714, 'https://ror.org/01zzpyg63', 'en', 1, 'https://ror.org/01zzpyg63 Moreno Valley College'),
(41715, 'https://ror.org/01zzyg547', 'en', 1, 'https://ror.org/01zzyg547 Highlands and Islands Enterprise'),
(41716, 'https://ror.org/0200zrw72', 'fr', 1, 'https://ror.org/0200zrw72 AcadƩmie Royale des Beaux-Arts Koninklijke Academie voor Schone Kunsten van Brussel'),
(41717, 'https://ror.org/02029yx61', 'no_lang_code', 1, 'https://ror.org/02029yx61 Ecolab (United States)'),
(41718, 'https://ror.org/020314m54', 'no_lang_code', 1, 'https://ror.org/020314m54 Effigis (Canada)'),
(41719, 'https://ror.org/0203q4h88', 'en', 1, 'https://ror.org/0203q4h88 Georgia Christian University'),
(41720, 'https://ror.org/0203yhg37', 'en', 1, 'https://ror.org/0203yhg37 Birla Institute of Scientific Research'),
(41721, 'https://ror.org/0207az548', 'no_lang_code', 1, 'https://ror.org/0207az548 Agtes (Poland)'),
(41722, 'https://ror.org/0207c0t18', 'en', 1, 'https://ror.org/0207c0t18 Admas University'),
(41723, 'https://ror.org/0207g4422', 'en', 1, 'https://ror.org/0207g4422 RCVS Knowledge'),
(41724, 'https://ror.org/0207hvp23', 'en', 1, 'https://ror.org/0207hvp23 Tunxis Community College'),
(41725, 'https://ror.org/0207t6t84', 'en', 1, 'https://ror.org/0207t6t84 Christian Health Association of Kenya'),
(41726, 'https://ror.org/0208sdr22', 'pt', 1, 'https://ror.org/0208sdr22 Administração Regional de Saúde de Lisboa e Vale do Tejo'),
(41727, 'https://ror.org/0209zky62', 'no_lang_code', 1, 'https://ror.org/0209zky62 Evolva (India)'),
(41728, 'https://ror.org/020az2v11', 'no_lang_code', 1, 'https://ror.org/020az2v11 North South Consultants Exchange (Egypt)'),
(41729, 'https://ror.org/020gja105', 'no_lang_code', 1, 'https://ror.org/020gja105 ERAS Labo (France)'),
(41730, 'https://ror.org/020h4j786', 'en', 1, 'https://ror.org/020h4j786 Kobe Women''s Junior College ē„žęˆøå„³å­ēŸ­ęœŸå¤§å­¦'),
(41731, 'https://ror.org/020hkyk57', 'en', 1, 'https://ror.org/020hkyk57 Vilniaus technologijų ir dizaino kolegija Vilnius College of Technologies and Design'),
(41732, 'https://ror.org/020kb9915', 'en', 1, 'https://ror.org/020kb9915 Southern Regional Technical College'),
(41733, 'https://ror.org/020kg3x12', 'no_lang_code', 1, 'https://ror.org/020kg3x12 Ernst & Young (United Kingdom)'),
(41734, 'https://ror.org/020psrf40', 'fr', 1, 'https://ror.org/020psrf40 Laboratoire National d''Appui au DƩveloppement Agricole'),
(41735, 'https://ror.org/020qt9g11', 'en', 1, 'https://ror.org/020qt9g11 United Nations Human Settlements Programme'),
(41736, 'https://ror.org/020s1wt84', 'en', 1, 'https://ror.org/020s1wt84 Conservatorio Di Musica di Vicenza Conservatory of Vicenza'),
(41737, 'https://ror.org/020sjp894', 'en', 1, 'https://ror.org/020sjp894 Chemistry and Chemical Engineering Research Center of Iran'),
(41738, 'https://ror.org/020t7f007', 'en', 1, 'https://ror.org/020t7f007 Rabbinical College of America'),
(41739, 'https://ror.org/020v07z27', 'en', 1, 'https://ror.org/020v07z27 Direction Générale-Affaires économiques et financières Directorate-General for Economic and Financial Affairs General Direktion-Wirtschaft und Finanzen'),
(41740, 'https://ror.org/020vd6n84', 'en', 1, 'https://ror.org/020vd6n84 National Institute of Technology Meghalaya ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą„‡ą¤˜ą¤¾ą¤²ą¤Æ'),
(41741, 'https://ror.org/020vej288', 'en', 1, 'https://ror.org/020vej288 Agence Nationale de la Promotion de la Recherche Scientifique National Agency for Promotion of Research and Innovation Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł†Ł‡ŁˆŲ¶ بالبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(41742, 'https://ror.org/020vyj412', 'en', 1, 'https://ror.org/020vyj412 Cairo Institute for Human Rights Studies'),
(41743, 'https://ror.org/020wajj63', 'en', 1, 'https://ror.org/020wajj63 Karen Hospital'),
(41744, 'https://ror.org/020x0wx65', 'no_lang_code', 1, 'https://ror.org/020x0wx65 Caesars Entertainment (United States)'),
(41745, 'https://ror.org/020xgge28', 'en', 1, 'https://ror.org/020xgge28 Oklahoma Space Grant Consortium'),
(41746, 'https://ror.org/020z8zc95', 'en', 1, 'https://ror.org/020z8zc95 American Institute for Economic Research'),
(41747, 'https://ror.org/0215jzs21', 'en', 1, 'https://ror.org/0215jzs21 Arkansas State University Mountain Home'),
(41748, 'https://ror.org/0218eta95', 'en', 1, 'https://ror.org/0218eta95 Department of Physiological Sciences'),
(41749, 'https://ror.org/0219f5c57', 'en', 1, 'https://ror.org/0219f5c57 Christian Health Association of Nigeria'),
(41750, 'https://ror.org/0219t5m94', 'en', 1, 'https://ror.org/0219t5m94 Vilniaus Verslo Kolegija Vilnius Business College'),
(41751, 'https://ror.org/0219v4961', 'no_lang_code', 1, 'https://ror.org/0219v4961 SGC Pharma (United States)'),
(41752, 'https://ror.org/021bpcw57', 'en', 1, 'https://ror.org/021bpcw57 Tea Research Foundation of Central Africa'),
(41753, 'https://ror.org/021dwa633', 'en', 1, 'https://ror.org/021dwa633 Elizabethtown Community and Technical College'),
(41754, 'https://ror.org/021eek248', 'en', 1, 'https://ror.org/021eek248 Department of Global Issues and International Relations'),
(41755, 'https://ror.org/021f23q27', 'en', 1, 'https://ror.org/021f23q27 Freedom House'),
(41756, 'https://ror.org/021f61w41', 'en', 1, 'https://ror.org/021f61w41 Lübeck Academy of Music Musikhochschule Lübeck'),
(41757, 'https://ror.org/021g6e774', 'no_lang_code', 1, 'https://ror.org/021g6e774 Caplin Point Laboratories (India)'),
(41758, 'https://ror.org/021gr0q06', 'no_lang_code', 1, 'https://ror.org/021gr0q06 Bremerhaven Economic Development (Germany) Bremerhavener Gesellschaft für Investitionsförderung und Stadtentwicklung mbH'),
(41759, 'https://ror.org/021j14906', 'en', 1, 'https://ror.org/021j14906 National Pension Service źµ­ėÆ¼ģ—°źøˆź³µė‹Ø'),
(41760, 'https://ror.org/021j5fe33', 'iu', 1, 'https://ror.org/021j5fe33 Nunavut Sivuniksavut'),
(41761, 'https://ror.org/021kdsb71', 'fr', 1, 'https://ror.org/021kdsb71 Ɖcole Nationale SupĆ©rieure d''Architecture de Saint-Ɖtienne'),
(41762, 'https://ror.org/021kjh741', 'en', 1, 'https://ror.org/021kjh741 Institute of Biochemistry and Physiology of Plants and Microorganisms Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø физиологии растений Šø микроорганизмов Российской акаГемии наук'),
(41763, 'https://ror.org/021kzta69', 'en', 1, 'https://ror.org/021kzta69 National Centre for Medium Range Weather Forecasting ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ मधयम अवधि ą¤®ą„Œą¤øą¤® ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤Øą„ą¤®ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦'),
(41764, 'https://ror.org/021ng2673', 'en', 1, 'https://ror.org/021ng2673 Institut Panos Afrique de l''Ouest Panos Institute West Africa'),
(41765, 'https://ror.org/021pyej66', 'en', 1, 'https://ror.org/021pyej66 Gandhi Medical College & Hospital గాంధీ ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(41766, 'https://ror.org/021q58r72', 'no_lang_code', 1, 'https://ror.org/021q58r72 Kiadis Pharma (Netherlands)'),
(41767, 'https://ror.org/021r2cx19', 'fr', 1, 'https://ror.org/021r2cx19 Ɖcole SupĆ©rieure des Professions ImmobiliĆØres'),
(41768, 'https://ror.org/021twv479', 'en', 1, 'https://ror.org/021twv479 National Defence Academy ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤•ą¤¾ą¤¦ą¤®ą„€'),
(41769, 'https://ror.org/021vcge65', 'en', 1, 'https://ror.org/021vcge65 State Corporation Commission'),
(41770, 'https://ror.org/021w6yj26', 'en', 1, 'https://ror.org/021w6yj26 Western Integrated Pest Management Center'),
(41771, 'https://ror.org/021wtx428', 'de', 1, 'https://ror.org/021wtx428 Staats- und Stadtbibliothek Augsburg'),
(41772, 'https://ror.org/021y4b202', 'pt', 1, 'https://ror.org/021y4b202 Fundação de Apoio à Pesquisa do Estado da Paraíba'),
(41773, 'https://ror.org/0221k0h06', 'en', 1, 'https://ror.org/0221k0h06 European School of Molecular Medicine'),
(41774, 'https://ror.org/0225cwm17', 'en', 1, 'https://ror.org/0225cwm17 Pennsylvania Space Grant Consortium'),
(41775, 'https://ror.org/0226dpj06', 'en', 1, 'https://ror.org/0226dpj06 Association of Chartered Certified Accountants'),
(41776, 'https://ror.org/022af9r61', 'no_lang_code', 1, 'https://ror.org/022af9r61 Alternative Energy Systems (Tunisia)'),
(41777, 'https://ror.org/022armd05', 'en', 1, 'https://ror.org/022armd05 Madagascar Biodiversity Partnership'),
(41778, 'https://ror.org/022d5rd48', 'en', 1, 'https://ror.org/022d5rd48 Shanghai Library äøŠęµ·åœ–ę›øé¤Ø'),
(41779, 'https://ror.org/022d6m891', 'en', 1, 'https://ror.org/022d6m891 Central Scientific Research Institute of Traumatology and Orthopedics Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Травматологии Šø ŠžŃ€Ń‚Š¾ŠæŠµŠ“ŠøŠø имени Š.Š. ŠŸŃ€ŠøŠ¾Ń€Š¾Š²Š°'),
(41780, 'https://ror.org/022d8t961', 'no_lang_code', 1, 'https://ror.org/022d8t961 MASA Group (France)'),
(41781, 'https://ror.org/022f44628', 'en', 1, 'https://ror.org/022f44628 King''s College - North Carolina'),
(41782, 'https://ror.org/022gkxm60', 'en', 1, 'https://ror.org/022gkxm60 Collegium Varsoviense'),
(41783, 'https://ror.org/022gwv794', 'en', 1, 'https://ror.org/022gwv794 Ministry of Lands and Rural Resettlement'),
(41784, 'https://ror.org/022jstb93', 'en', 1, 'https://ror.org/022jstb93 Design and Art Direction'),
(41785, 'https://ror.org/022kpdg23', 'no_lang_code', 1, 'https://ror.org/022kpdg23 Groupe Up (France)'),
(41786, 'https://ror.org/022tm9w06', 'no_lang_code', 1, 'https://ror.org/022tm9w06 Companhia de Eletricidade do Estado da Bahia (Brazil)'),
(41787, 'https://ror.org/022txr781', 'fr', 1, 'https://ror.org/022txr781 Laboratoire de Physique Corpusculaire de Caen'),
(41788, 'https://ror.org/022wwx668', 'en', 1, 'https://ror.org/022wwx668 Morristown Beard School, Morristown-Beard School'),
(41789, 'https://ror.org/022z3g211', 'en', 1, 'https://ror.org/022z3g211 Guangxi Zhuang Autonomous Region Health and Family Planning å¹æč„æå£®ę—č‡Ŗę²»åŒŗå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(41790, 'https://ror.org/02320dz84', 'en', 1, 'https://ror.org/02320dz84 Paul & Daisy Soros Fellowships for New Americans'),
(41791, 'https://ror.org/0232jr667', 'en', 1, 'https://ror.org/0232jr667 Practical Action'),
(41792, 'https://ror.org/0232n8553', 'en', 1, 'https://ror.org/0232n8553 American College of Traditional Chinese Medicine'),
(41793, 'https://ror.org/0232pe591', 'en', 1, 'https://ror.org/0232pe591 Association of Corporate Treasurers'),
(41794, 'https://ror.org/02339nw55', 'en', 1, 'https://ror.org/02339nw55 Academy of Sciences Malaysia Akademi Sains Malaysia'),
(41795, 'https://ror.org/0233m9s16', 'en', 1, 'https://ror.org/0233m9s16 Moscow Regional Scientific Research Clinical Institute. MF Vladimirsky'),
(41796, 'https://ror.org/02353ej91', 'en', 1, 'https://ror.org/02353ej91 LVCT Health'),
(41797, 'https://ror.org/023943s16', 'en', 1, 'https://ror.org/023943s16 American Partnership for Eosinophilic Disorders'),
(41798, 'https://ror.org/023abch36', 'en', 1, 'https://ror.org/023abch36 Center for National Health Development in Ethiopia'),
(41799, 'https://ror.org/023fvqr32', 'en', 1, 'https://ror.org/023fvqr32 Immanuel Lutheran College'),
(41800, 'https://ror.org/023ha6621', 'no_lang_code', 1, 'https://ror.org/023ha6621 Unilever (India)'),
(41801, 'https://ror.org/023j5sb16', 'en', 1, 'https://ror.org/023j5sb16 International Institute for Strategic Studies'),
(41802, 'https://ror.org/023knef74', 'en', 1, 'https://ror.org/023knef74 Skagit Valley College'),
(41803, 'https://ror.org/023kybh62', 'en', 1, 'https://ror.org/023kybh62 Polytechnic University of Puerto Rico Miami'),
(41804, 'https://ror.org/023nwkm08', 'en', 1, 'https://ror.org/023nwkm08 International Association for the Study of Lung Cancer'),
(41805, 'https://ror.org/023r5tg35', 'en', 1, 'https://ror.org/023r5tg35 Federal Scientific Center of the East Asia Terrestrial Biodiversity FEB RAS Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Биолого-почвенный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(41806, 'https://ror.org/023rvkh50', 'fr', 1, 'https://ror.org/023rvkh50 Institut Africain de Gestion Urbaine'),
(41807, 'https://ror.org/023sjj642', 'pt', 1, 'https://ror.org/023sjj642 Municipal de Ɠbidos'),
(41808, 'https://ror.org/023th6c34', 'no_lang_code', 1, 'https://ror.org/023th6c34 Hovione (Portugal)'),
(41809, 'https://ror.org/023v1tr45', 'en', 1, 'https://ror.org/023v1tr45 Hangzhou Academy of Agricultural Sciences ę­å·žåø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(41810, 'https://ror.org/023wx7g30', 'en', 1, 'https://ror.org/023wx7g30 Association for Intelligent Transport Systems'),
(41811, 'https://ror.org/023xwyz30', 'no_lang_code', 1, 'https://ror.org/023xwyz30 Land Use Consultants (United Kingdom)'),
(41812, 'https://ror.org/023y3qd10', 'en', 1, 'https://ror.org/023y3qd10 Ministry of Livestock, Fisheries and Animal Industries MinistĆØre de l''Elevage, des PĆŖches et des Industries Animales'),
(41813, 'https://ror.org/023zxqh11', 'en', 1, 'https://ror.org/023zxqh11 National Office for Technology Acquisition and Promotion'),
(41814, 'https://ror.org/023zynq23', 'en', 1, 'https://ror.org/023zynq23 Chinese Academy of Civil Aviation Science and Technology äø­å›½ę°‘čˆŖē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(41815, 'https://ror.org/02412rh32', 'sl', 1, 'https://ror.org/02412rh32 ViŔja Strokovna Šola za Gostinstvo in Turizem Maribor'),
(41816, 'https://ror.org/0243g5v54', 'no_lang_code', 1, 'https://ror.org/0243g5v54 Zoomlion Domestic Services (Ghana)'),
(41817, 'https://ror.org/0243j3z07', 'de', 1, 'https://ror.org/0243j3z07 European Fernhochschule Hamburg EuropƤische Fernhochschule Hamburg'),
(41818, 'https://ror.org/0246qj146', 'pt', 1, 'https://ror.org/0246qj146 Centro Hospitalar do TĆ¢mega e Sousa'),
(41819, 'https://ror.org/0247acz73', 'en', 1, 'https://ror.org/0247acz73 Cavendish University Zambia'),
(41820, 'https://ror.org/0249bce70', 'en', 1, 'https://ror.org/0249bce70 Gulf Coast State College'),
(41821, 'https://ror.org/024b4v884', 'pt', 1, 'https://ror.org/024b4v884 Faculdades Integradas AparĆ­cio Carvalho'),
(41822, 'https://ror.org/024d3p373', 'en', 1, 'https://ror.org/024d3p373 Tibet Academy of Agricultural and Animal Husbandry Sciences č„æč—å†œē‰§ē§‘å­¦é™¢'),
(41823, 'https://ror.org/024eb0f34', 'hu', 1, 'https://ror.org/024eb0f34 BM Központi KórhÔz'),
(41824, 'https://ror.org/024eshr84', 'en', 1, 'https://ror.org/024eshr84 Coffeyville Community College'),
(41825, 'https://ror.org/024g9p727', 'no_lang_code', 1, 'https://ror.org/024g9p727 For farmers (United Kingdom)'),
(41826, 'https://ror.org/024gf7f83', 'en', 1, 'https://ror.org/024gf7f83 Međimursko VeleučiliÅ”te u Čakovcu Polytechnic of Međimurje in Čakovec'),
(41827, 'https://ror.org/024h4jv51', 'en', 1, 'https://ror.org/024h4jv51 Central Sheep and Wool Research Institute ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤­ą„‡ą¤”ą¤¼ और ऊन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(41828, 'https://ror.org/024j3hn90', 'de', 1, 'https://ror.org/024j3hn90 UniversitƤtsklinikum Knappschaftskrankenhaus Bochum'),
(41829, 'https://ror.org/024k73h76', 'en', 1, 'https://ror.org/024k73h76 Yamal Multidisciplinary College ŠÆŠœŠŠ›Š¬Š”ŠšŠ˜Š™ ŠœŠŠžŠ“ŠžŠŸŠ ŠžŠ¤Š˜Š›Š¬ŠŠ«Š™ ŠšŠžŠ›Š›Š•Š”Š–'),
(41830, 'https://ror.org/024qkwh22', 'en', 1, 'https://ror.org/024qkwh22 Shangrao Normal University äøŠé„¶åøˆčŒƒå­¦é™¢'),
(41831, 'https://ror.org/024wmk172', 'no_lang_code', 1, 'https://ror.org/024wmk172 VirtualDive (France)'),
(41832, 'https://ror.org/024wrmf62', 'en', 1, 'https://ror.org/024wrmf62 Duchenne Research Fund'),
(41833, 'https://ror.org/024wrq886', 'en', 1, 'https://ror.org/024wrq886 Helpmann Academy'),
(41834, 'https://ror.org/024zavn56', 'en', 1, 'https://ror.org/024zavn56 Graduate Women International'),
(41835, 'https://ror.org/024zd0r19', 'en', 1, 'https://ror.org/024zd0r19 Miami Ad School'),
(41836, 'https://ror.org/0250say61', 'en', 1, 'https://ror.org/0250say61 Taiwan Food and Drug Administration'),
(41837, 'https://ror.org/0252d3t81', 'en', 1, 'https://ror.org/0252d3t81 Family Aids Caring Trust'),
(41838, 'https://ror.org/0253rdk33', 'no_lang_code', 1, 'https://ror.org/0253rdk33 SNPedia'),
(41839, 'https://ror.org/02540ds77', 'en', 1, 'https://ror.org/02540ds77 Ministry of Education and Youth Policy of the Republic of Komi ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Республики Коми'),
(41840, 'https://ror.org/025410268', 'en', 1, 'https://ror.org/025410268 Institute for Educational Development and Training Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø ŠæŠ¾Š²Ń‹ŃˆŠµŠ½ŠøŃ квалификации'),
(41841, 'https://ror.org/02544k771', 'en', 1, 'https://ror.org/02544k771 Kasisi Agricultural Training Centre'),
(41842, 'https://ror.org/0255w3r50', 'no_lang_code', 1, 'https://ror.org/0255w3r50 Amway (United States)'),
(41843, 'https://ror.org/02588qx62', 'pl', 1, 'https://ror.org/02588qx62 Wyższa Szkoła Biznesu w Gorzowie Wielkopolskim'),
(41844, 'https://ror.org/025byta18', 'en', 1, 'https://ror.org/025byta18 Tanzania Natural Resource Forum'),
(41845, 'https://ror.org/025caaq56', 'en', 1, 'https://ror.org/025caaq56 Walters State Community College'),
(41846, 'https://ror.org/025csd220', 'en', 1, 'https://ror.org/025csd220 Odense Kommune Odense Municipality'),
(41847, 'https://ror.org/025dabr11', 'en', 1, 'https://ror.org/025dabr11 Division of Institution and Award Support'),
(41848, 'https://ror.org/025etn077', 'en', 1, 'https://ror.org/025etn077 Network of AIDS Researchers of Eastern and Southern Africa'),
(41849, 'https://ror.org/025fpk195', 'en', 1, 'https://ror.org/025fpk195 Cameroon Baptist Convention Health Services'),
(41850, 'https://ror.org/025fq9n57', 'en', 1, 'https://ror.org/025fq9n57 Energy Services Regulatory Authority Entidade Reguladora dos ServiƧos EnergƩticos'),
(41851, 'https://ror.org/025jwmc29', 'en', 1, 'https://ror.org/025jwmc29 India International Centre'),
(41852, 'https://ror.org/025kf5q07', 'en', 1, 'https://ror.org/025kf5q07 United World College of South East Asia ę±å—äŗžčÆåˆäø–ē•Œę›øé™¢'),
(41853, 'https://ror.org/025kpm509', 'de', 1, 'https://ror.org/025kpm509 Museum Foundation Lüneburg Museumsstiftung Lüneburg'),
(41854, 'https://ror.org/025pp6560', 'no_lang_code', 1, 'https://ror.org/025pp6560 WestRock (United States)'),
(41855, 'https://ror.org/025rbpt60', 'no_lang_code', 1, 'https://ror.org/025rbpt60 Eurofilet (Morocco)'),
(41856, 'https://ror.org/025syxp62', 'en', 1, 'https://ror.org/025syxp62 Geographic Institute Agustƭn Codazzi Instituto GeogrƔfico Agustƭn Codazzi'),
(41857, 'https://ror.org/025t37b39', 'no_lang_code', 1, 'https://ror.org/025t37b39 B & B'),
(41858, 'https://ror.org/025wyv967', 'en', 1, 'https://ror.org/025wyv967 Center of Arab Woman for Training and Research'),
(41859, 'https://ror.org/025xwwx95', 'no_lang_code', 1, 'https://ror.org/025xwwx95 International Consultants (Egypt)'),
(41860, 'https://ror.org/025ye0d12', 'en', 1, 'https://ror.org/025ye0d12 Karkonoska Państwowa Szkoła Wyższa Karkonosze College in Jelenia Góra'),
(41861, 'https://ror.org/0261qw820', 'en', 1, 'https://ror.org/0261qw820 Institute of Steppe Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ степи Š£Ń€Šž Š ŠŠ'),
(41862, 'https://ror.org/0263c5456', 'no_lang_code', 1, 'https://ror.org/0263c5456 Saniku Gakuin College 三育学院大学'),
(41863, 'https://ror.org/0265jtk41', 'en', 1, 'https://ror.org/0265jtk41 China Academy of Urban Planning and Design äø­å›½åŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(41864, 'https://ror.org/0265k0q35', 'en', 1, 'https://ror.org/0265k0q35 Islamic Azad University Boroujerd Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد بروجرد'),
(41865, 'https://ror.org/0265znh70', 'no_lang_code', 1, 'https://ror.org/0265znh70 Mecpro Heavy Engineering (India)'),
(41866, 'https://ror.org/026695c98', 'en', 1, 'https://ror.org/026695c98 Project Directorate on Foot and Mouth Disease'),
(41867, 'https://ror.org/0266a1t84', 'en', 1, 'https://ror.org/0266a1t84 Udmurt Institute of History, Language and Literature Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории, ŃŠ·Ń‹ŠŗŠ° Šø Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ Š£Ń€Šž Š ŠŠ'),
(41868, 'https://ror.org/026c02f25', 'en', 1, 'https://ror.org/026c02f25 Kazan E. K. Zavoisky Physical-Technical Institute Казанский физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š•. К. Завойского Š ŠŠ'),
(41869, 'https://ror.org/026c3xn33', 'en', 1, 'https://ror.org/026c3xn33 Hochschule der Wirtschaft für Management University of Applied Management Studies'),
(41870, 'https://ror.org/026c6z776', 'no_lang_code', 1, 'https://ror.org/026c6z776 Chronos (France)'),
(41871, 'https://ror.org/026c92t86', 'en', 1, 'https://ror.org/026c92t86 Subbaiah Medical College'),
(41872, 'https://ror.org/026d1sx92', 'en', 1, 'https://ror.org/026d1sx92 Salim Ali Center for Ornithology and Natural History'),
(41873, 'https://ror.org/026drga03', 'en', 1, 'https://ror.org/026drga03 China National Environmental Monitoring Center äø­å›½ēŽÆå¢ƒē›‘ęµ‹ę€»ē«™'),
(41874, 'https://ror.org/026emmr85', 'en', 1, 'https://ror.org/026emmr85 Ministry of Children, Community and Social Services MinistĆØre des Services Sociaux et Communautaires'),
(41875, 'https://ror.org/026g3rz20', 'pt', 1, 'https://ror.org/026g3rz20 Instituto Nacional de CiĆŖncia e Tecnologia em Toxinas'),
(41876, 'https://ror.org/026h9k063', 'en', 1, 'https://ror.org/026h9k063 Central Water and Power Research Station'),
(41877, 'https://ror.org/026h9r553', 'no_lang_code', 1, 'https://ror.org/026h9r553 Hunan Haili Chemical Industry (China) ę¹–å—åŒ–å·„ē ”ē©¶é™¢'),
(41878, 'https://ror.org/026hvzx79', 'it', 1, 'https://ror.org/026hvzx79 Conservatorio di Musica ''Francesco Venezze'' di Rovigo'),
(41879, 'https://ror.org/026j5b854', 'en', 1, 'https://ror.org/026j5b854 Central Institute of Agricultural Engineering ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(41880, 'https://ror.org/026kenw55', 'de', 1, 'https://ror.org/026kenw55 SRH Hochschule für Gesundheit Gera'),
(41881, 'https://ror.org/026ktg130', 'en', 1, 'https://ror.org/026ktg130 Hainan Provincial Academy of Agricultural Sciences ęµ·å—ēœå†œäøšē§‘å­¦é™¢'),
(41882, 'https://ror.org/026mf8794', 'en', 1, 'https://ror.org/026mf8794 Sterling High School'),
(41883, 'https://ror.org/026n0rw09', 'pt', 1, 'https://ror.org/026n0rw09 Instituto Nacional de CiĆŖncia e Tecnologia de Obesidade e Diabetes'),
(41884, 'https://ror.org/026rh8977', 'en', 1, 'https://ror.org/026rh8977 Direction Générale Fiscalité et union douanière Directorate-General for Taxation and Customs Union Generaldirektion Steuern und Zollunion'),
(41885, 'https://ror.org/026s2hr03', 'en', 1, 'https://ror.org/026s2hr03 Pioneer Pacific College'),
(41886, 'https://ror.org/026w1rh64', 'en', 1, 'https://ror.org/026w1rh64 Protecting Families against HIV AIDS'),
(41887, 'https://ror.org/026xy6j55', 'en', 1, 'https://ror.org/026xy6j55 Faith Evangelical College & Seminary'),
(41888, 'https://ror.org/026xz9f02', 'en', 1, 'https://ror.org/026xz9f02 Bronx High School of Science'),
(41889, 'https://ror.org/026z8zb87', 'en', 1, 'https://ror.org/026z8zb87 Nambucca Shire Council'),
(41890, 'https://ror.org/02726j593', 'en', 1, 'https://ror.org/02726j593 Melentiev Energy Systems Institute ŠœŠµŠ»ŠµŠ½Ń‚ŃŒŠµŠ² Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систем ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠø'),
(41891, 'https://ror.org/02743t710', 'de', 1, 'https://ror.org/02743t710 Norddeutsche Hochschule für Rechtspflege'),
(41892, 'https://ror.org/0274zdr66', 'fr', 1, 'https://ror.org/0274zdr66 Laboratoire Jean-Alexandre DieudonnƩ'),
(41893, 'https://ror.org/02760dr55', 'no_lang_code', 1, 'https://ror.org/02760dr55 Economics for the Environment Consultancy (United Kingdom)'),
(41894, 'https://ror.org/0278s3c19', 'en', 1, 'https://ror.org/0278s3c19 Lone Star College–Tomball'),
(41895, 'https://ror.org/027b9hx20', 'en', 1, 'https://ror.org/027b9hx20 St. Thomas Aquinas College'),
(41896, 'https://ror.org/027c96635', 'en', 1, 'https://ror.org/027c96635 GƁLDU Resource Centre for the Rights of Indigenous Peoples GƔldu-et Kompetansesenter for Urfolks Rettigheter'),
(41897, 'https://ror.org/027dan833', 'fr', 1, 'https://ror.org/027dan833 Ɖcole Biblique et ArchĆ©ologique FranƧaise de JĆ©rusalem'),
(41898, 'https://ror.org/027h2h886', 'en', 1, 'https://ror.org/027h2h886 Regional Secretariat for the Sea, Science and Technology SecretÔrio Regional do Mar, Ciência e Tecnologia'),
(41899, 'https://ror.org/027jqwm11', 'fr', 1, 'https://ror.org/027jqwm11 Haute Ɖcole Francisco Ferrer'),
(41900, 'https://ror.org/027jws131', 'fr', 1, 'https://ror.org/027jws131 Institut Polytechnique Saint-Louis'),
(41901, 'https://ror.org/027k9sa32', 'en', 1, 'https://ror.org/027k9sa32 National Institute of Food and Drug Safety Evaluation'),
(41902, 'https://ror.org/027m3jw27', 'no_lang_code', 1, 'https://ror.org/027m3jw27 Embraco (Brazil)'),
(41903, 'https://ror.org/027n02r78', 'en', 1, 'https://ror.org/027n02r78 Scientific Center of Family Health Problems and Human Reproduction'),
(41904, 'https://ror.org/027n34442', 'en', 1, 'https://ror.org/027n34442 African Institute of Biomedical Science and Technology'),
(41905, 'https://ror.org/027qksd74', 'no_lang_code', 1, 'https://ror.org/027qksd74 Pinsent Masons (United Kingdom)'),
(41906, 'https://ror.org/027s8b340', 'no_lang_code', 1, 'https://ror.org/027s8b340 Henan Communication Science and Technology Research Institute (China) ę²³å—ēœäŗ¤é€šē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(41907, 'https://ror.org/027sf5r98', 'en', 1, 'https://ror.org/027sf5r98 Peerless Hospital & B.K.Roy Research Centre'),
(41908, 'https://ror.org/027sz0n32', 'en', 1, 'https://ror.org/027sz0n32 Congressional Hispanic Caucus Institute'),
(41909, 'https://ror.org/027w2gw37', 'no_lang_code', 1, 'https://ror.org/027w2gw37 Astonfield (India)'),
(41910, 'https://ror.org/027wk9464', 'en', 1, 'https://ror.org/027wk9464 Little Priest Tribal College'),
(41911, 'https://ror.org/027xqjj19', 'en', 1, 'https://ror.org/027xqjj19 Confederated Tribes of Siletz Indians'),
(41912, 'https://ror.org/027z3vs57', 'en', 1, 'https://ror.org/027z3vs57 Kenya Sea Turtle Conservation Committee'),
(41913, 'https://ror.org/02825cc16', 'en', 1, 'https://ror.org/02825cc16 Wood TobƩ-Coburn School'),
(41914, 'https://ror.org/0282ezj14', 'it', 1, 'https://ror.org/0282ezj14 Accademia di Belle Arti di Reggio Calabria'),
(41915, 'https://ror.org/02832sw36', 'en', 1, 'https://ror.org/02832sw36 Staatliche Hochschule für Musik Trossingen Trossingen University of Music'),
(41916, 'https://ror.org/028394g81', 'no_lang_code', 1, 'https://ror.org/028394g81 Hyundai Motors (United States)'),
(41917, 'https://ror.org/0286btk29', 'en', 1, 'https://ror.org/0286btk29 Architectural Institute in Prague'),
(41918, 'https://ror.org/0286fq017', 'it', 1, 'https://ror.org/0286fq017 Conservatorio di Musica San Pietro a Majella'),
(41919, 'https://ror.org/028a8bc58', 'en', 1, 'https://ror.org/028a8bc58 Institute of Russian Literature Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŃƒŃŃŠŗŠ¾Š¹ Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹'),
(41920, 'https://ror.org/028b5s745', 'en', 1, 'https://ror.org/028b5s745 Tri-State Bible College'),
(41921, 'https://ror.org/028jh0y34', 'no_lang_code', 1, 'https://ror.org/028jh0y34 Zimbabwe AIDS Network'),
(41922, 'https://ror.org/028kzf059', 'no_lang_code', 1, 'https://ror.org/028kzf059 Huntsman (France)'),
(41923, 'https://ror.org/028mn7f31', 'en', 1, 'https://ror.org/028mn7f31 NYC Media'),
(41924, 'https://ror.org/028nyzb21', 'en', 1, 'https://ror.org/028nyzb21 Los Angeles Harbor College'),
(41925, 'https://ror.org/028prp877', 'en', 1, 'https://ror.org/028prp877 Tanzania National Parks'),
(41926, 'https://ror.org/028q7hc55', 'no_lang_code', 1, 'https://ror.org/028q7hc55 Limagrain (France)'),
(41927, 'https://ror.org/028r3ke74', 'en', 1, 'https://ror.org/028r3ke74 Santa Barbara Business College'),
(41928, 'https://ror.org/028rd3808', 'fr', 1, 'https://ror.org/028rd3808 Haute Ɖcole GalilĆ©e'),
(41929, 'https://ror.org/028thwc63', 'en', 1, 'https://ror.org/028thwc63 Polytechnic University of Puerto Rico Orlando'),
(41930, 'https://ror.org/028w99c90', 'no_lang_code', 1, 'https://ror.org/028w99c90 China United Network Communications Group (China) äø­å›½č”åˆē½‘ē»œé€šäæ”é›†å›¢ęœ‰é™å…¬åø'),
(41931, 'https://ror.org/028x2z366', 'no_lang_code', 1, 'https://ror.org/028x2z366 Ion Exchange (India)'),
(41932, 'https://ror.org/028xr5559', 'en', 1, 'https://ror.org/028xr5559 Makivik Corporation Makivvik Kuapuriisat SociƩtƩ Makivik'),
(41933, 'https://ror.org/028yp0d20', 'en', 1, 'https://ror.org/028yp0d20 Cracow School of Health Promotion Krakowska Wyższa Szkoła Promocji Zdrowia'),
(41934, 'https://ror.org/028zdff86', 'en', 1, 'https://ror.org/028zdff86 Ministry of Education, Science, Technology and Sports'),
(41935, 'https://ror.org/02914ef02', 'en', 1, 'https://ror.org/02914ef02 International Centre for Education in Islamic Finance'),
(41936, 'https://ror.org/02945ys85', 'en', 1, 'https://ror.org/02945ys85 Karachi School for Business and Leadership'),
(41937, 'https://ror.org/02967z527', 'de', 1, 'https://ror.org/02967z527 Kunsthistorisches Institut in Florenz'),
(41938, 'https://ror.org/0296fd765', 'en', 1, 'https://ror.org/0296fd765 Renton Technical College'),
(41939, 'https://ror.org/0297egf66', 'en', 1, 'https://ror.org/0297egf66 Lone Star College–North Harris'),
(41940, 'https://ror.org/0297tch52', 'fr', 1, 'https://ror.org/0297tch52 Fondation Hardt'),
(41941, 'https://ror.org/029b48872', 'no_lang_code', 1, 'https://ror.org/029b48872 Asur Plant Breeding (France)'),
(41942, 'https://ror.org/029bjdf19', 'en', 1, 'https://ror.org/029bjdf19 Institute of Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики им. Š›. Š’. ŠšŠøŃ€ŠµŠ½ŃŠŗŠ¾Š³Š¾'),
(41943, 'https://ror.org/029bmv142', 'en', 1, 'https://ror.org/029bmv142 Boston Children''s at Waltham'),
(41944, 'https://ror.org/029cn2a76', 'nl', 1, 'https://ror.org/029cn2a76 GGZ Rivierduinen'),
(41945, 'https://ror.org/029eeye73', 'no_lang_code', 1, 'https://ror.org/029eeye73 Talbot & Talbot (South Africa)'),
(41946, 'https://ror.org/029fxjk95', 'en', 1, 'https://ror.org/029fxjk95 Institute of History, Archaeology and Ethnography of the Peoples of Far-East ВлаГивостоке Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° истории, археологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø нароГов Š”Š°Š»ŃŒŠ½ŠµŠ³Š¾ Востока'),
(41947, 'https://ror.org/029ghce65', 'en', 1, 'https://ror.org/029ghce65 Union Christian College'),
(41948, 'https://ror.org/029j8j127', 'en', 1, 'https://ror.org/029j8j127 China National Commission for Disaster Reduction å›½å®¶å‡ē¾å§”å‘˜ä¼šåŠžå…¬å®¤ ęŠ€ęœÆę”ÆęŒ'),
(41949, 'https://ror.org/029jmvc96', 'en', 1, 'https://ror.org/029jmvc96 IDA Ireland'),
(41950, 'https://ror.org/029k7k053', 'en', 1, 'https://ror.org/029k7k053 Research Institute of Medical Genetics of Russian Academy of Medical Sciences ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинской генетики'),
(41951, 'https://ror.org/029m2pd08', 'en', 1, 'https://ror.org/029m2pd08 Noorul Islam College of Dental Science'),
(41952, 'https://ror.org/029mfc453', 'pl', 1, 'https://ror.org/029mfc453 Państwowa Wyższa Szkoła Zawodowa w Nysie University of Applied Sciences in Nysas'),
(41953, 'https://ror.org/029pw4y06', 'pt', 1, 'https://ror.org/029pw4y06 Instituto Superior de Teologia Aplicada'),
(41954, 'https://ror.org/029q6vx61', 'it', 1, 'https://ror.org/029q6vx61 Accademia di Belle Arti di Sassari'),
(41955, 'https://ror.org/029qq7963', 'no_lang_code', 1, 'https://ror.org/029qq7963 Novabase (Portugal)'),
(41956, 'https://ror.org/029r33q13', 'de', 1, 'https://ror.org/029r33q13 Hochschule für Musik Saar'),
(41957, 'https://ror.org/029rysr23', 'en', 1, 'https://ror.org/029rysr23 New Hampshire State Council on the Arts'),
(41958, 'https://ror.org/029rzwj76', 'fr', 1, 'https://ror.org/029rzwj76 Ɖcole de Biologie Industrielle'),
(41959, 'https://ror.org/029sxjy20', 'no_lang_code', 1, 'https://ror.org/029sxjy20 Ferrotec (United States)'),
(41960, 'https://ror.org/029td0g71', 'en', 1, 'https://ror.org/029td0g71 Bugok National Hospital 국립부곔병원'),
(41961, 'https://ror.org/029tggs59', 'en', 1, 'https://ror.org/029tggs59 South African Business Coalition'),
(41962, 'https://ror.org/029trsn45', 'no_lang_code', 1, 'https://ror.org/029trsn45 TOKU-E (United States)'),
(41963, 'https://ror.org/029tz6g71', 'en', 1, 'https://ror.org/029tz6g71 India Foundation for the Arts'),
(41964, 'https://ror.org/029vq7v31', 'fr', 1, 'https://ror.org/029vq7v31 Société de Développement des Forêts'),
(41965, 'https://ror.org/029x1vn55', 'en', 1, 'https://ror.org/029x1vn55 CU Shah Medical College and Hospital'),
(41966, 'https://ror.org/029z3g861', 'no_lang_code', 1, 'https://ror.org/029z3g861 Epic Systems (United States)'),
(41967, 'https://ror.org/02a1nbm25', 'en', 1, 'https://ror.org/02a1nbm25 New York School of Interior Design'),
(41968, 'https://ror.org/02a3j1p21', 'en', 1, 'https://ror.org/02a3j1p21 Fisher College'),
(41969, 'https://ror.org/02a4rdf09', 'de', 1, 'https://ror.org/02a4rdf09 Fondation Bodmer Fondation Martin Bodmer'),
(41970, 'https://ror.org/02a503x19', 'en', 1, 'https://ror.org/02a503x19 Fox College'),
(41971, 'https://ror.org/02a5hqa58', 'en', 1, 'https://ror.org/02a5hqa58 Institute for African Studies науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Африки Российской акаГемии наук'),
(41972, 'https://ror.org/02a5sx544', 'en', 1, 'https://ror.org/02a5sx544 College of Physical Education and Sport Palestra VysokÔ Ŕkola telesné výchovy a sportu Palestra'),
(41973, 'https://ror.org/02a7xs776', 'no_lang_code', 1, 'https://ror.org/02a7xs776 Jyotirmay Eye Clinic'),
(41974, 'https://ror.org/02a8wk986', 'en', 1, 'https://ror.org/02a8wk986 AKAD University'),
(41975, 'https://ror.org/02aa1n426', 'fr', 1, 'https://ror.org/02aa1n426 Centre pour l’Environnement et le DĆ©veloppement'),
(41976, 'https://ror.org/02aafyx20', 'en', 1, 'https://ror.org/02aafyx20 Furness College'),
(41977, 'https://ror.org/02ac3as27', 'no_lang_code', 1, 'https://ror.org/02ac3as27 JK Agri Genetics (India)'),
(41978, 'https://ror.org/02ach0e13', 'en', 1, 'https://ror.org/02ach0e13 Jan Grodek State Vocational Academy in Sanok Państwowa Wyższa Szkoła Zawodowa im. Jana Grodka w Sanoku'),
(41979, 'https://ror.org/02ae4g054', 'en', 1, 'https://ror.org/02ae4g054 Division of Historical and Philological Sciences'),
(41980, 'https://ror.org/02ag9qs60', 'es', 1, 'https://ror.org/02ag9qs60 MPS EspaƱa'),
(41981, 'https://ror.org/02agyqq59', 'en', 1, 'https://ror.org/02agyqq59 Department of Communities, Culture and Heritage'),
(41982, 'https://ror.org/02ah1da87', 'en', 1, 'https://ror.org/02ah1da87 Office of Management'),
(41983, 'https://ror.org/02ahpq120', 'en', 1, 'https://ror.org/02ahpq120 El Centro College'),
(41984, 'https://ror.org/02ahzca76', 'fr', 1, 'https://ror.org/02ahzca76 Laboratoire d''IngƩnierie Circulation Transports'),
(41985, 'https://ror.org/02akg1305', 'en', 1, 'https://ror.org/02akg1305 Asian Institute of Public Health'),
(41986, 'https://ror.org/02akkm420', 'en', 1, 'https://ror.org/02akkm420 Institute of Automation and Control Processes Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø процессов ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(41987, 'https://ror.org/02anh8x74', 'en', 1, 'https://ror.org/02anh8x74 M S Ramaiah University of Applied Sciences'),
(41988, 'https://ror.org/02apff255', 'en', 1, 'https://ror.org/02apff255 Institute of Finance and Trade Economics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢č“¢ę”æäøŽč“øę˜“ē»ęµŽē ”ē©¶ę‰€'),
(41989, 'https://ror.org/02apntt89', 'en', 1, 'https://ror.org/02apntt89 Nigerian Geological Survey Agency'),
(41990, 'https://ror.org/02aqppr80', 'en', 1, 'https://ror.org/02aqppr80 Boston Area Research Initiative'),
(41991, 'https://ror.org/02arrmv90', 'en', 1, 'https://ror.org/02arrmv90 Islamic Azad University of Ayatollah Amoli دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ آیت الله Ų¢Ł…Ł„ŪŒ'),
(41992, 'https://ror.org/02arv0f08', 'en', 1, 'https://ror.org/02arv0f08 Technological Educational Institute of the Ionian Islands Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī±'),
(41993, 'https://ror.org/02arzh683', 'en', 1, 'https://ror.org/02arzh683 Aidjan-Lagos Corridor Organization Organisation du Corridor Abidjan-Lagos'),
(41994, 'https://ror.org/02ase7r14', 'en', 1, 'https://ror.org/02ase7r14 St Anthonys Senior Secondary School'),
(41995, 'https://ror.org/02asra118', 'en', 1, 'https://ror.org/02asra118 Desmond Tutu HIV Foundation'),
(41996, 'https://ror.org/02at7zv53', 'en', 1, 'https://ror.org/02at7zv53 Fraunhofer Institute for Process Engineering and Packaging Fraunhofer-Institut für Verfahrenstechnik und Verpackung IVV'),
(41997, 'https://ror.org/02av6ek82', 'en', 1, 'https://ror.org/02av6ek82 American Academy in Berlin'),
(41998, 'https://ror.org/02avcvc17', 'en', 1, 'https://ror.org/02avcvc17 National Trust for Nature Conservation ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æ ą¤Ŗą„ą¤°ą¤•ą„ƒą¤¤ą¤æ ą¤øą¤‚ą¤°ą¤•ą„ą¤·ą¤£ ą¤•ą„‹ą¤·'),
(41999, 'https://ror.org/02avh2k34', 'en', 1, 'https://ror.org/02avh2k34 Sri Balaji Vidyapeeth University'),
(42000, 'https://ror.org/02awrhk36', 'en', 1, 'https://ror.org/02awrhk36 Northern National College Деверный ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ коллеГж'),
(42001, 'https://ror.org/02ay8t571', 'en', 1, 'https://ror.org/02ay8t571 Shriram Institute for Industrial Research'),
(42002, 'https://ror.org/02b3gqy34', 'no_lang_code', 1, 'https://ror.org/02b3gqy34 Craft Engineering Associates (United States)'),
(42003, 'https://ror.org/02b61re56', 'hr', 1, 'https://ror.org/02b61re56 VeleučiliÅ”te "Nikola Tesla" u Gospiću'),
(42004, 'https://ror.org/02b90d314', 'en', 1, 'https://ror.org/02b90d314 Malawi Government'),
(42005, 'https://ror.org/02baj1350', 'en', 1, 'https://ror.org/02baj1350 Chinese Academy for Environmental Planning äø­å›½ēŽÆå¢ƒäæęŠ¤éƒØēŽÆå¢ƒč§„åˆ’é™¢'),
(42006, 'https://ror.org/02bakwe76', 'en', 1, 'https://ror.org/02bakwe76 Research Center for Rural Economy å†œäøšéƒØå†œę‘ē»ęµŽē ”ē©¶äø­åæƒ'),
(42007, 'https://ror.org/02bb8n686', 'en', 1, 'https://ror.org/02bb8n686 Guiyang College of Traditional Chinese Medicine č“µé˜³äø­åŒ»å­¦é™¢'),
(42008, 'https://ror.org/02bbqcn27', 'en', 1, 'https://ror.org/02bbqcn27 King''s College School'),
(42009, 'https://ror.org/02bc50c05', 'en', 1, 'https://ror.org/02bc50c05 Peter the Great''s Museum of Anthropology and Ethnography ŠŸŠµŃ‚Ń€Š° Великого Музей антропологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø'),
(42010, 'https://ror.org/02bdat184', 'en', 1, 'https://ror.org/02bdat184 Metropolitan Community College - Kansas City'),
(42011, 'https://ror.org/02bdw9258', 'no_lang_code', 1, 'https://ror.org/02bdw9258 Assore (South Africa)'),
(42012, 'https://ror.org/02bf3a828', 'fr', 1, 'https://ror.org/02bf3a828 HÓpital Cardiologique du Haut-Lévêque'),
(42013, 'https://ror.org/02bfkc760', 'en', 1, 'https://ror.org/02bfkc760 Sichuan Academy of Forestry å››å·ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(42014, 'https://ror.org/02bjnsn63', 'en', 1, 'https://ror.org/02bjnsn63 Beijing Research Institute of Mechanical and Electrical Technology åŒ—äŗ¬ęœŗē”µē ”ē©¶ę‰€'),
(42015, 'https://ror.org/02bjqnd50', 'en', 1, 'https://ror.org/02bjqnd50 Pro Health International'),
(42016, 'https://ror.org/02bjw4523', 'en', 1, 'https://ror.org/02bjw4523 Chartered Institute of Linguists'),
(42017, 'https://ror.org/02bmrs815', 'en', 1, 'https://ror.org/02bmrs815 South Seattle College'),
(42018, 'https://ror.org/02bqmev78', 'en', 1, 'https://ror.org/02bqmev78 Kenya AIDS Vaccine Initiative'),
(42019, 'https://ror.org/02bqwx915', 'en', 1, 'https://ror.org/02bqwx915 Jubilee Mission Medical College and Research Institute'),
(42020, 'https://ror.org/02br4sp34', 'en', 1, 'https://ror.org/02br4sp34 Saskatchewan Flax Development Commission'),
(42021, 'https://ror.org/02bremz31', 'no_lang_code', 1, 'https://ror.org/02bremz31 Alembic Pharmaceuticals (India)'),
(42022, 'https://ror.org/02bvtqs16', 'en', 1, 'https://ror.org/02bvtqs16 Songhai Health Trust'),
(42023, 'https://ror.org/02bw2pq83', 'en', 1, 'https://ror.org/02bw2pq83 Russian National Public Library for Science and Technology Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŃƒŠ±Š»ŠøŃ‡Š½Š°Ń Š½Š°ŃƒŃ‡Š½Š¾-Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń библиотека'),
(42024, 'https://ror.org/02bwvpt98', 'no_lang_code', 1, 'https://ror.org/02bwvpt98 Hyosung Corporation (South Korea) ķšØģ„±'),
(42025, 'https://ror.org/02bx25k35', 'es', 1, 'https://ror.org/02bx25k35 Hospital Militar Central'),
(42026, 'https://ror.org/02bxn5a88', 'it', 1, 'https://ror.org/02bxn5a88 Conservatorio di Musica FA Bonporti Trento'),
(42027, 'https://ror.org/02bzmps39', 'en', 1, 'https://ror.org/02bzmps39 Egyptian Center for Public Opinion Research Baseera'),
(42028, 'https://ror.org/02c191v59', 'en', 1, 'https://ror.org/02c191v59 Orpheus Institute Orpheus Instituut'),
(42029, 'https://ror.org/02c1vmy63', 'en', 1, 'https://ror.org/02c1vmy63 Pennsylvania Department of Community and Economic Development'),
(42030, 'https://ror.org/02c38jz43', 'en', 1, 'https://ror.org/02c38jz43 Relaxnews'),
(42031, 'https://ror.org/02c3q7w36', 'en', 1, 'https://ror.org/02c3q7w36 Environmental Law Research Institute'),
(42032, 'https://ror.org/02c5acs33', 'no_lang_code', 1, 'https://ror.org/02c5acs33 Sutol (Portugal)'),
(42033, 'https://ror.org/02c6nb222', 'en', 1, 'https://ror.org/02c6nb222 Vermilion Community College'),
(42034, 'https://ror.org/02c8msm58', 'en', 1, 'https://ror.org/02c8msm58 Kaitohutohu Kaupapa Rawa New Zealand Treasury, Treasury'),
(42035, 'https://ror.org/02cb4m248', 'en', 1, 'https://ror.org/02cb4m248 Coastal Carolina Community College'),
(42036, 'https://ror.org/02ccnn750', 'en', 1, 'https://ror.org/02ccnn750 United Way'),
(42037, 'https://ror.org/02cd1dc23', 'en', 1, 'https://ror.org/02cd1dc23 Rheinisches Institut für Umweltforschung Rhenish Institute for Environmental Research'),
(42038, 'https://ror.org/02cf97417', 'en', 1, 'https://ror.org/02cf97417 Heteroelements and Coordination Chemistry Lab Laboratoire HƩtƩroƩlƩments et Coordination'),
(42039, 'https://ror.org/02cg6jf50', 'en', 1, 'https://ror.org/02cg6jf50 Lubavitch Educational Center'),
(42040, 'https://ror.org/02cge6w61', 'en', 1, 'https://ror.org/02cge6w61 Central Siberian Botanical Garden Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ сибирский ботанический саГ'),
(42041, 'https://ror.org/02ch3jz57', 'en', 1, 'https://ror.org/02ch3jz57 Memphis Theological Seminary'),
(42042, 'https://ror.org/02chwk660', 'en', 1, 'https://ror.org/02chwk660 Clay Mathematics Institute'),
(42043, 'https://ror.org/02ckm0r33', 'pt', 1, 'https://ror.org/02ckm0r33 Governo do Distrito Federal'),
(42044, 'https://ror.org/02cm5rz95', 'no_lang_code', 1, 'https://ror.org/02cm5rz95 Koch Agronomic Services (United States)'),
(42045, 'https://ror.org/02cnc0j97', 'en', 1, 'https://ror.org/02cnc0j97 Shadan Hospital and Institute of Medical Sciences'),
(42046, 'https://ror.org/02cpn5v29', 'no_lang_code', 1, 'https://ror.org/02cpn5v29 Bausch Health (Ireland)'),
(42047, 'https://ror.org/02cqthz49', 'no_lang_code', 1, 'https://ror.org/02cqthz49 Blueprint Genetics (Finland)'),
(42048, 'https://ror.org/02crnef85', 'en', 1, 'https://ror.org/02crnef85 IIHMR University'),
(42049, 'https://ror.org/02ct1m089', 'en', 1, 'https://ror.org/02ct1m089 Kazan State Medical Academy'),
(42050, 'https://ror.org/02ctkg564', 'en', 1, 'https://ror.org/02ctkg564 Nebraska Christian College'),
(42051, 'https://ror.org/02cwzn382', 'no_lang_code', 1, 'https://ror.org/02cwzn382 Senko Medical Instrument Manufacturing (Japan)'),
(42052, 'https://ror.org/02cx93t24', 'en', 1, 'https://ror.org/02cx93t24 Leicester College'),
(42053, 'https://ror.org/02czsq936', 'en', 1, 'https://ror.org/02czsq936 British Institute for the Study of Iraq'),
(42054, 'https://ror.org/02czw2y48', 'en', 1, 'https://ror.org/02czw2y48 Egyptian Center for Public Policy Studies'),
(42055, 'https://ror.org/02d1vh520', 'en', 1, 'https://ror.org/02d1vh520 Government College of Science'),
(42056, 'https://ror.org/02d290x88', 'de', 1, 'https://ror.org/02d290x88 PƤdagogische Hochschule Burgenland University of Education in Burgenland'),
(42057, 'https://ror.org/02d2b9s76', 'en', 1, 'https://ror.org/02d2b9s76 Holy Spirit High School'),
(42058, 'https://ror.org/02d7xrh88', 'pt', 1, 'https://ror.org/02d7xrh88 Secretaria da Educação do Estado da Bahia'),
(42059, 'https://ror.org/02d898a89', 'fr', 1, 'https://ror.org/02d898a89 Biostatistique et Processus Spatiaux'),
(42060, 'https://ror.org/02d89at43', 'en', 1, 'https://ror.org/02d89at43 Hochschule der Bundesagentur für Arbeit University of Applied Labour Studies of the Federal Employment Agency'),
(42061, 'https://ror.org/02d918b78', 'en', 1, 'https://ror.org/02d918b78 Shanghai Botanical Garden äøŠęµ·ę¤ē‰©å›­'),
(42062, 'https://ror.org/02d9wx511', 'en', 1, 'https://ror.org/02d9wx511 Observatório Político Political Observatory'),
(42063, 'https://ror.org/02db8ta43', 'no_lang_code', 1, 'https://ror.org/02db8ta43 Nobex Technology (Nigeria)'),
(42064, 'https://ror.org/02dd2e850', 'en', 1, 'https://ror.org/02dd2e850 School Centre Nova Gorica Å olski center Nova Gorica'),
(42065, 'https://ror.org/02dd61a62', 'en', 1, 'https://ror.org/02dd61a62 An Chomhairle EalaĆ­on Arts Council'),
(42066, 'https://ror.org/02de22795', 'en', 1, 'https://ror.org/02de22795 Florida College of Integrative Medicine'),
(42067, 'https://ror.org/02dhdwm14', 'en', 1, 'https://ror.org/02dhdwm14 Global Innovation and Technology Alliance'),
(42068, 'https://ror.org/02dja5009', 'en', 1, 'https://ror.org/02dja5009 Bradford School - Columbus'),
(42069, 'https://ror.org/02dnes125', 'de', 1, 'https://ror.org/02dnes125 Knappschaftskrankenhaus Recklinghausen'),
(42070, 'https://ror.org/02dpn9096', 'no_lang_code', 1, 'https://ror.org/02dpn9096 Ghana-India Kofi Annan Centre of Excellence in ICT'),
(42071, 'https://ror.org/02dprkj51', 'nl', 1, 'https://ror.org/02dprkj51 Bruxelles Environnemont Leefmilieu Brussel'),
(42072, 'https://ror.org/02dq20r43', 'en', 1, 'https://ror.org/02dq20r43 Dragon Rises College of Oriental Medicine'),
(42073, 'https://ror.org/02dqcqh19', 'en', 1, 'https://ror.org/02dqcqh19 Kamineni Institute of Dental Sciences'),
(42074, 'https://ror.org/02ds88v51', 'en', 1, 'https://ror.org/02ds88v51 Camera dei Deputati Chamber of Deputies'),
(42075, 'https://ror.org/02dsehb09', 'en', 1, 'https://ror.org/02dsehb09 Center for Solar Energy Research and Studies Ł…Ų±ŁƒŲ² بحوث ودراسات الطاقة Ų§Ł„Ų“Ł…Ų³ŁŠŲ©'),
(42076, 'https://ror.org/02dwq5n29', 'en', 1, 'https://ror.org/02dwq5n29 Alliance College of Australia'),
(42077, 'https://ror.org/02dyq9q38', 'no_lang_code', 1, 'https://ror.org/02dyq9q38 TERI'),
(42078, 'https://ror.org/02dywf273', 'en', 1, 'https://ror.org/02dywf273 Ohio Department of Education'),
(42079, 'https://ror.org/02e1eph40', 'en', 1, 'https://ror.org/02e1eph40 Institute of World History Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ всеобщей истории'),
(42080, 'https://ror.org/02e22ra24', 'en', 1, 'https://ror.org/02e22ra24 Ashoka Trust for Research in Ecology and the Environment'),
(42081, 'https://ror.org/02e2pmn45', 'en', 1, 'https://ror.org/02e2pmn45 Institute of Slavic Studies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»Š°Š²ŃŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(42082, 'https://ror.org/02e38dy05', 'en', 1, 'https://ror.org/02e38dy05 Comissão Interministerial para os Recursos do Mar Interministerial Commission for Sea Resources'),
(42083, 'https://ror.org/02e3cth88', 'no_lang_code', 1, 'https://ror.org/02e3cth88 Zyvex (United States)'),
(42084, 'https://ror.org/02e3vax31', 'en', 1, 'https://ror.org/02e3vax31 Sydney Missionary and Bible College'),
(42085, 'https://ror.org/02e5dc168', 'en', 1, 'https://ror.org/02e5dc168 Center for Global Health'),
(42086, 'https://ror.org/02e5n0e79', 'de', 1, 'https://ror.org/02e5n0e79 AMD Academy of Fashion and Design Akademie Mode & Design'),
(42087, 'https://ror.org/02e6pdw39', 'en', 1, 'https://ror.org/02e6pdw39 Southern California Seminary'),
(42088, 'https://ror.org/02e6y4370', 'en', 1, 'https://ror.org/02e6y4370 William Booth College'),
(42089, 'https://ror.org/02e71t779', 'no_lang_code', 1, 'https://ror.org/02e71t779 Osaka Chiyoda Junior College å¤§é˜Ŗåƒä»£ē”°ēŸ­ęœŸå¤§å­¦'),
(42090, 'https://ror.org/02e7x8p39', 'en', 1, 'https://ror.org/02e7x8p39 The Asiatic Society of Mumbai'),
(42091, 'https://ror.org/02e957z30', 'en', 1, 'https://ror.org/02e957z30 Ministry of Agriculture and Land Reclamation وزارة الزراعة ŁˆŲ§Ų³ŲŖŲµŁ„Ų§Ų­ Ų§Ł„Ų£Ų±Ų§Ų¶ŁŠ Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(42092, 'https://ror.org/02e9x4k55', 'en', 1, 'https://ror.org/02e9x4k55 Christian Social Services Commission'),
(42093, 'https://ror.org/02ec5p106', 'en', 1, 'https://ror.org/02ec5p106 AIDS Information Centre'),
(42094, 'https://ror.org/02eeq5d55', 'no_lang_code', 1, 'https://ror.org/02eeq5d55 ESiOR Oy (Finland)'),
(42095, 'https://ror.org/02egfyg20', 'en', 1, 'https://ror.org/02egfyg20 China Center of Advanced Science and Technology äø­å›½é«˜ē­‰ē§‘å­¦ęŠ€ęœÆäø­åæƒ'),
(42096, 'https://ror.org/02ehp0f77', 'en', 1, 'https://ror.org/02ehp0f77 UmeƄ Plant Science Centre'),
(42097, 'https://ror.org/02ekmsz98', 'en', 1, 'https://ror.org/02ekmsz98 Golden Valley Agricultural Research Trust');
INSERT INTO `rors` VALUES
(42098, 'https://ror.org/02em10776', 'en', 1, 'https://ror.org/02em10776 Gdansk School of Higher Education Gdańska Szkoła Wyższa'),
(42099, 'https://ror.org/02eneb966', 'en', 1, 'https://ror.org/02eneb966 World Mission University'),
(42100, 'https://ror.org/02es31f96', 'en', 1, 'https://ror.org/02es31f96 Tamil Nadu State AIDS Control Society'),
(42101, 'https://ror.org/02etj2579', 'en', 1, 'https://ror.org/02etj2579 Savannah Law School'),
(42102, 'https://ror.org/02evbg326', 'en', 1, 'https://ror.org/02evbg326 Royal College of Pathologists of Australasia'),
(42103, 'https://ror.org/02evmt624', 'en', 1, 'https://ror.org/02evmt624 Guntur Medical College'),
(42104, 'https://ror.org/02ewpfp83', 'no_lang_code', 1, 'https://ror.org/02ewpfp83 Medicure (Canada)'),
(42105, 'https://ror.org/02exn6h14', 'it', 1, 'https://ror.org/02exn6h14 Conservatorio di Musica Licinio Refice'),
(42106, 'https://ror.org/02ez1f997', 'en', 1, 'https://ror.org/02ez1f997 Sparks'),
(42107, 'https://ror.org/02f5g3528', 'en', 1, 'https://ror.org/02f5g3528 Infectious Diseases Research Collaboration'),
(42108, 'https://ror.org/02f5k2623', 'en', 1, 'https://ror.org/02f5k2623 Southeastern Baptist College'),
(42109, 'https://ror.org/02f62sy66', 'en', 1, 'https://ror.org/02f62sy66 Bio-oriented Technology Research Advancement Institution ē”Ÿē‰©ē³»ē‰¹å®šē”£ę„­ęŠ€č”“ē ”ē©¶ę”Æę“ć‚»ćƒ³ć‚æ'),
(42110, 'https://ror.org/02f72qf66', 'es', 1, 'https://ror.org/02f72qf66 Universidad Tecnológica del Sur de Sonora'),
(42111, 'https://ror.org/02f7s4h98', 'en', 1, 'https://ror.org/02f7s4h98 Pushpagiri Medical College'),
(42112, 'https://ror.org/02fa3j397', 'es', 1, 'https://ror.org/02fa3j397 Confederación Estatal de Personas Sordas'),
(42113, 'https://ror.org/02fa80e12', 'en', 1, 'https://ror.org/02fa80e12 Eastwick College and the HoHoKus Schools'),
(42114, 'https://ror.org/02fcamb19', 'en', 1, 'https://ror.org/02fcamb19 National Research Centre on Seed Spices'),
(42115, 'https://ror.org/02fd5ff90', 'en', 1, 'https://ror.org/02fd5ff90 Specs Howard School of Media Arts'),
(42116, 'https://ror.org/02fdv8735', 'en', 1, 'https://ror.org/02fdv8735 Lagrange Laboratory'),
(42117, 'https://ror.org/02ffbv447', 'en', 1, 'https://ror.org/02ffbv447 Crowleys Ridge College'),
(42118, 'https://ror.org/02ffdpz25', 'en', 1, 'https://ror.org/02ffdpz25 Health Education North West'),
(42119, 'https://ror.org/02ffkja82', 'no_lang_code', 1, 'https://ror.org/02ffkja82 Hewlett-Packard (India)'),
(42120, 'https://ror.org/02ffzw118', 'en', 1, 'https://ror.org/02ffzw118 Columbia College - California'),
(42121, 'https://ror.org/02fg4tx92', 'no_lang_code', 1, 'https://ror.org/02fg4tx92 Cleanergy (Sweden)'),
(42122, 'https://ror.org/02fjxcw19', 'en', 1, 'https://ror.org/02fjxcw19 New South Wales Institute of Psychiatry'),
(42123, 'https://ror.org/02fm1e093', 'no_lang_code', 1, 'https://ror.org/02fm1e093 Sanru'),
(42124, 'https://ror.org/02fn8ac40', 'en', 1, 'https://ror.org/02fn8ac40 Ministry of Economy ×ž×©×Ø×“ הכלכלה'),
(42125, 'https://ror.org/02fnn6t22', 'it', 1, 'https://ror.org/02fnn6t22 Conservatorio di Musica "G.B. Martini"'),
(42126, 'https://ror.org/02fnpjd08', 'en', 1, 'https://ror.org/02fnpjd08 Institute of Vegetables and Flowers äø­å›½å†œäøšē§‘å­¦é™¢č”¬čœčŠ±å‰ē ”ē©¶ę‰€'),
(42127, 'https://ror.org/02fq16441', 'no_lang_code', 1, 'https://ror.org/02fq16441 Kalyani Group (India)'),
(42128, 'https://ror.org/02fr0s482', 'no_lang_code', 1, 'https://ror.org/02fr0s482 Wenzhou Municipal Sci-Tech Bureau ęø©å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(42129, 'https://ror.org/02fs6pb13', 'en', 1, 'https://ror.org/02fs6pb13 South Piedmont Community College'),
(42130, 'https://ror.org/02fsfnf94', 'en', 1, 'https://ror.org/02fsfnf94 Institute of Molecular and Cell Biology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ Šø клеточной биологии'),
(42131, 'https://ror.org/02fsnvs68', 'no_lang_code', 1, 'https://ror.org/02fsnvs68 Portuguese Air Transportations (Portugal) Transportes AƩreos Portugueses'),
(42132, 'https://ror.org/02fv0rq89', 'no_lang_code', 1, 'https://ror.org/02fv0rq89 Computational Diagnostics (United States)'),
(42133, 'https://ror.org/02fv6wk06', 'en', 1, 'https://ror.org/02fv6wk06 Tunisian Union of Agriculture and Fisheries Union Tunisienne de l''Agriculture et de la PĆŖche'),
(42134, 'https://ror.org/02fwden70', 'en', 1, 'https://ror.org/02fwden70 Astronomical Observatory of Capodimonte Osservatorio Astronomico di Capodimonte'),
(42135, 'https://ror.org/02fxe3b78', 'en', 1, 'https://ror.org/02fxe3b78 Sri Manakula Vinayagar Educational Trust'),
(42136, 'https://ror.org/02fypjr73', 'en', 1, 'https://ror.org/02fypjr73 St. Bernard’s School of Theology and Ministry'),
(42137, 'https://ror.org/02fyqee34', 'en', 1, 'https://ror.org/02fyqee34 Dormitory Authority of the State of New York'),
(42138, 'https://ror.org/02fzvr850', 'en', 1, 'https://ror.org/02fzvr850 French School at Athens Ɖcole franƧaise d’AthĆØnes Γαλλική Σχολή Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(42139, 'https://ror.org/02fzwdc59', 'en', 1, 'https://ror.org/02fzwdc59 Yonsei University Dental Hospital'),
(42140, 'https://ror.org/02fzzay98', 'en', 1, 'https://ror.org/02fzzay98 Xinjiang Entry-Exit Inspection and Quarantine Bureau ę–°ē–†å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€ę£€éŖŒę£€ē–«ęŠ€ęœÆäø­åæƒ'),
(42141, 'https://ror.org/02g11qe83', 'de', 1, 'https://ror.org/02g11qe83 Fachhochschule für Rechtspflege Nordrhein Westfalen'),
(42142, 'https://ror.org/02g43d244', 'en', 1, 'https://ror.org/02g43d244 International Crops Research Institute for the Semi-Arid Tropics'),
(42143, 'https://ror.org/02g4n1614', 'no_lang_code', 1, 'https://ror.org/02g4n1614 Qatar Petroleum (Qatar) Ų¹Ł…Ł„ŁŠŲ§ŲŖ قطر Ł„Ł„ŲØŲŖŲ±ŁˆŁ„'),
(42144, 'https://ror.org/02g553740', 'en', 1, 'https://ror.org/02g553740 Beal College'),
(42145, 'https://ror.org/02g5xq267', 'en', 1, 'https://ror.org/02g5xq267 Saskatchewan Ministry of Agriculture'),
(42146, 'https://ror.org/02g7a7139', 'en', 1, 'https://ror.org/02g7a7139 Critical Art and Media Practice'),
(42147, 'https://ror.org/02g9hzn44', 'en', 1, 'https://ror.org/02g9hzn44 National Institute of Science and Mathematics Technology'),
(42148, 'https://ror.org/02g9vj608', 'en', 1, 'https://ror.org/02g9vj608 University and College Union'),
(42149, 'https://ror.org/02ga7kh69', 'no_lang_code', 1, 'https://ror.org/02ga7kh69 Freddie Mac (United States)'),
(42150, 'https://ror.org/02gbq8p27', 'en', 1, 'https://ror.org/02gbq8p27 University College of Estate Management'),
(42151, 'https://ror.org/02gc32c47', 'en', 1, 'https://ror.org/02gc32c47 New College Lanarkshire'),
(42152, 'https://ror.org/02gcnpr25', 'en', 1, 'https://ror.org/02gcnpr25 Trinity College London'),
(42153, 'https://ror.org/02gdmq314', 'en', 1, 'https://ror.org/02gdmq314 Ridley College'),
(42154, 'https://ror.org/02gdp5e27', 'en', 1, 'https://ror.org/02gdp5e27 Joseph Rowntree Charitable Trust'),
(42155, 'https://ror.org/02ge9fk48', 'es', 1, 'https://ror.org/02ge9fk48 Secretaría de Ciencia Tecnología e Innovación'),
(42156, 'https://ror.org/02getqa45', 'no_lang_code', 1, 'https://ror.org/02getqa45 Avesthagen (India)'),
(42157, 'https://ror.org/02gf2m037', 'it', 1, 'https://ror.org/02gf2m037 Istituto Svizzero di Roma'),
(42158, 'https://ror.org/02gfwng46', 'no_lang_code', 1, 'https://ror.org/02gfwng46 Whirlpool (United States)'),
(42159, 'https://ror.org/02ggka625', 'en', 1, 'https://ror.org/02ggka625 Basel Convention Co-Ordinating Centre'),
(42160, 'https://ror.org/02ggy9z10', 'en', 1, 'https://ror.org/02ggy9z10 Higher Institute for Artistic Industries Urbino Istituto Superiore per le Industrie Artistiche'),
(42161, 'https://ror.org/02gkfsf47', 'en', 1, 'https://ror.org/02gkfsf47 LUCA School of Arts'),
(42162, 'https://ror.org/02gn4kd94', 'en', 1, 'https://ror.org/02gn4kd94 National Institute of Technology, Numazu College ę²¼ę“„é«˜å°‚'),
(42163, 'https://ror.org/02gnt4v62', 'en', 1, 'https://ror.org/02gnt4v62 Indian Institute of Ecology and Environment'),
(42164, 'https://ror.org/02gp6p739', 'no_lang_code', 1, 'https://ror.org/02gp6p739 Mali-Folkecenter'),
(42165, 'https://ror.org/02gqw3a90', 'en', 1, 'https://ror.org/02gqw3a90 Austrian Archeological Institute Ɩsterreichisches ArchƤologisches Institut'),
(42166, 'https://ror.org/02grghs20', 'en', 1, 'https://ror.org/02grghs20 Yeshiva and Kollel Be''er Yitzchok of Elizabeth'),
(42167, 'https://ror.org/02gvasz77', 'en', 1, 'https://ror.org/02gvasz77 South Georgia Technical College'),
(42168, 'https://ror.org/02gxkme34', 'en', 1, 'https://ror.org/02gxkme34 University of Arkansas Community College at Morrilton'),
(42169, 'https://ror.org/02gyqgr85', 'no_lang_code', 1, 'https://ror.org/02gyqgr85 NanoFlex Power (United States)'),
(42170, 'https://ror.org/02gzrnr79', 'en', 1, 'https://ror.org/02gzrnr79 Rabbi Jacob Joseph School'),
(42171, 'https://ror.org/02gzvm828', 'en', 1, 'https://ror.org/02gzvm828 National Earthquake Response Support Service äø­å›½åœ°éœ‡åŗ”ę€„ęœę•‘äø­åæƒ'),
(42172, 'https://ror.org/02h2say50', 'en', 1, 'https://ror.org/02h2say50 Virginia BioTechnology Research Park'),
(42173, 'https://ror.org/02h3vgm10', 'en', 1, 'https://ror.org/02h3vgm10 Zemaitija College Žemaitijos Kolegija'),
(42174, 'https://ror.org/02h44gz71', 'en', 1, 'https://ror.org/02h44gz71 Mysore Resettlement and Development Agency'),
(42175, 'https://ror.org/02h5zfy21', 'en', 1, 'https://ror.org/02h5zfy21 Accident Compensation Corporation Te Kaporeihana Āwhina Hunga Whara'),
(42176, 'https://ror.org/02h6mhy16', 'en', 1, 'https://ror.org/02h6mhy16 Oak Hills Christian College'),
(42177, 'https://ror.org/02h6w3w70', 'no_lang_code', 1, 'https://ror.org/02h6w3w70 Malabar Cancer Centre'),
(42178, 'https://ror.org/02h77vn79', 'ro', 1, 'https://ror.org/02h77vn79 Ministerul Muncii, Familiei, Protecţiei Sociale şi Persoanelor Vârstnice'),
(42179, 'https://ror.org/02h7w3c75', 'en', 1, 'https://ror.org/02h7w3c75 Tanzania Forestry Research Institute'),
(42180, 'https://ror.org/02h8dsx08', 'en', 1, 'https://ror.org/02h8dsx08 Dmitry Rogachev National Research Center of Pediatric Hematology, Oncology and Immunology Š”Š•Š¢Š”ŠšŠžŠ™ Š“Š•ŠœŠŠ¢ŠžŠ›ŠžŠ“Š˜Š˜, ŠžŠŠšŠžŠ›ŠžŠ“Š˜Š˜ И Š˜ŠœŠœŠ£ŠŠžŠ›ŠžŠ“Š˜Š˜ им. Š”Š¼ŠøŃ‚Ń€ŠøŃ Рогачева'),
(42181, 'https://ror.org/02h8pgc47', 'no_lang_code', 1, 'https://ror.org/02h8pgc47 Narayana Nethralaya'),
(42182, 'https://ror.org/02h8s2s90', 'en', 1, 'https://ror.org/02h8s2s90 United States Election Assistance Commission'),
(42183, 'https://ror.org/02hbw4f89', 'no_lang_code', 1, 'https://ror.org/02hbw4f89 Lantheus Medical Imaging (United States)'),
(42184, 'https://ror.org/02hc4dw24', 'en', 1, 'https://ror.org/02hc4dw24 Montgomery High School'),
(42185, 'https://ror.org/02hce4k71', 'fr', 1, 'https://ror.org/02hce4k71 Ɖcole Nationale SupĆ©rieure d''Art et de Design de Nancy'),
(42186, 'https://ror.org/02hd4h748', 'en', 1, 'https://ror.org/02hd4h748 Phyto consulting'),
(42187, 'https://ror.org/02hdve317', 'en', 1, 'https://ror.org/02hdve317 Academy of Fine Arts Karlsruhe Staatliche Akademie der Bildenden Künste Karlsruhe'),
(42188, 'https://ror.org/02hfjdw52', 'fr', 1, 'https://ror.org/02hfjdw52 MinistĆØre de Environnement et de l''Assainissement du Mali'),
(42189, 'https://ror.org/02hger267', 'en', 1, 'https://ror.org/02hger267 Great Britain China Centre'),
(42190, 'https://ror.org/02hnxxp83', 'en', 1, 'https://ror.org/02hnxxp83 American University of the Caribbean School of Medicine'),
(42191, 'https://ror.org/02hp9qz46', 'no_lang_code', 1, 'https://ror.org/02hp9qz46 Erytech Pharma (France)'),
(42192, 'https://ror.org/02hx58q14', 'no_lang_code', 1, 'https://ror.org/02hx58q14 Alabama Power (United States)'),
(42193, 'https://ror.org/02hxmqn30', 'en', 1, 'https://ror.org/02hxmqn30 Civil Service College'),
(42194, 'https://ror.org/02hy76n39', 'en', 1, 'https://ror.org/02hy76n39 Vilniaus Kooperacijos Kolegija Vilnius Cooperative College'),
(42195, 'https://ror.org/02j1fb913', 'es', 1, 'https://ror.org/02j1fb913 Secretaría de Investigación, Innovación y Educación Superior'),
(42196, 'https://ror.org/02j37bn23', 'en', 1, 'https://ror.org/02j37bn23 Beatson Cancer Charity'),
(42197, 'https://ror.org/02j530k95', 'fr', 1, 'https://ror.org/02j530k95 Ɖcole SupĆ©rieure de Chimie Organique et MinĆ©rale'),
(42198, 'https://ror.org/02j693n47', 'en', 1, 'https://ror.org/02j693n47 Chinese Academy of Surveying and Mapping äø­å›½ęµ‹ē»˜ē§‘å­¦ē ”ē©¶é™¢'),
(42199, 'https://ror.org/02j8mex09', 'en', 1, 'https://ror.org/02j8mex09 Wilson Community College'),
(42200, 'https://ror.org/02j8pmw82', 'en', 1, 'https://ror.org/02j8pmw82 Indian Institute of Management Indore ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‡ą¤‚ą¤¦ą„Œą¤°'),
(42201, 'https://ror.org/02j95s845', 'en', 1, 'https://ror.org/02j95s845 International Association for Great Lakes Research'),
(42202, 'https://ror.org/02j983531', 'no_lang_code', 1, 'https://ror.org/02j983531 Scientific Center of RAS in Chernogolovka Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук в Черноголовке'),
(42203, 'https://ror.org/02jbzdv43', 'pt', 1, 'https://ror.org/02jbzdv43 Fundo para a Protecção dos Animais Selvagens'),
(42204, 'https://ror.org/02jd4k732', 'en', 1, 'https://ror.org/02jd4k732 National Office of Hydrocarbons and Mines Office National des Hydrocarbures et des Mines'),
(42205, 'https://ror.org/02jexx044', 'de', 1, 'https://ror.org/02jexx044 Senatsverwaltung für Bildung, Jugend und Wissenschaft'),
(42206, 'https://ror.org/02jf25180', 'en', 1, 'https://ror.org/02jf25180 Warwickshire College'),
(42207, 'https://ror.org/02jf7e446', 'en', 1, 'https://ror.org/02jf7e446 Gannan Normal University čµ£å—åøˆēÆ„å­¦é™¢'),
(42208, 'https://ror.org/02jfv6690', 'en', 1, 'https://ror.org/02jfv6690 Tennessee Wildlife Resources Agency'),
(42209, 'https://ror.org/02jfyz617', 'en', 1, 'https://ror.org/02jfyz617 Union Presbyterian Seminary'),
(42210, 'https://ror.org/02jhhh683', 'en', 1, 'https://ror.org/02jhhh683 Shanghai Science and Technology Museum äøŠęµ·ē§‘ęŠ€é¦†'),
(42211, 'https://ror.org/02jj4k517', 'en', 1, 'https://ror.org/02jj4k517 Physico-Technical Institute Физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской АкаГемии наук'),
(42212, 'https://ror.org/02jk0vd24', 'it', 1, 'https://ror.org/02jk0vd24 Conservatorio di Musica Giuseppe Verdi'),
(42213, 'https://ror.org/02jnewa08', 'en', 1, 'https://ror.org/02jnewa08 American Institute of Ultrasound in Medicine'),
(42214, 'https://ror.org/02jp3w516', 'en', 1, 'https://ror.org/02jp3w516 Department of Agriculture, Land Reform and Rural Development'),
(42215, 'https://ror.org/02jr12631', 'sl', 1, 'https://ror.org/02jr12631 Å olski Center Velenje'),
(42216, 'https://ror.org/02jract75', 'en', 1, 'https://ror.org/02jract75 Institute on Laser and Information Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем лазерных Šø информационных технологий'),
(42217, 'https://ror.org/02jv94566', 'no_lang_code', 1, 'https://ror.org/02jv94566 Canon (United States)'),
(42218, 'https://ror.org/02jxpdd90', 'en', 1, 'https://ror.org/02jxpdd90 Life Science Zurich'),
(42219, 'https://ror.org/02jz4rx70', 'en', 1, 'https://ror.org/02jz4rx70 Aarupadai Veedu Medical College & Hospital'),
(42220, 'https://ror.org/02k139m61', 'fr', 1, 'https://ror.org/02k139m61 Institut RƩgional d''Administration de Bastia'),
(42221, 'https://ror.org/02k2r5455', 'en', 1, 'https://ror.org/02k2r5455 Maryland Space Grant Consortium'),
(42222, 'https://ror.org/02k6n4s14', 'fr', 1, 'https://ror.org/02k6n4s14 Ɖcole Centrale d''Ɖlectronique'),
(42223, 'https://ror.org/02k7e9603', 'fr', 1, 'https://ror.org/02k7e9603 Haute Ɖcole Libre de Bruxelles Ilya Prigogine'),
(42224, 'https://ror.org/02k7q2e66', 'pl', 1, 'https://ror.org/02k7q2e66 Uczelnia Zawodowa Zagłębia Miedziowego w Lubinie'),
(42225, 'https://ror.org/02k7ygp86', 'fr', 1, 'https://ror.org/02k7ygp86 AcadƩmie des Beaux-Arts de Tournai'),
(42226, 'https://ror.org/02k8h2m07', 'en', 1, 'https://ror.org/02k8h2m07 Williamson College'),
(42227, 'https://ror.org/02kbrsj34', 'no_lang_code', 1, 'https://ror.org/02kbrsj34 Companhia EnergƩtica de Minas Gerais (Brazil)'),
(42228, 'https://ror.org/02kbwgp44', 'fr', 1, 'https://ror.org/02kbwgp44 Ɖcole SupĆ©rieure d''Art et de Design d''OrlĆ©ans'),
(42229, 'https://ror.org/02kbxde97', 'en', 1, 'https://ror.org/02kbxde97 Uganda Wildlife Authority'),
(42230, 'https://ror.org/02kc2j595', 'en', 1, 'https://ror.org/02kc2j595 Copiah-Lincoln Community College'),
(42231, 'https://ror.org/02kd2sw87', 'en', 1, 'https://ror.org/02kd2sw87 Safe Kids Worldwide'),
(42232, 'https://ror.org/02kgft750', 'fr', 1, 'https://ror.org/02kgft750 Ɖcole Nationale SupĆ©rieure d''Art'),
(42233, 'https://ror.org/02kjxc710', 'en', 1, 'https://ror.org/02kjxc710 Aventis School of Management'),
(42234, 'https://ror.org/02kkj1692', 'en', 1, 'https://ror.org/02kkj1692 World Medicine Institute'),
(42235, 'https://ror.org/02kmd4c68', 'no_lang_code', 1, 'https://ror.org/02kmd4c68 Calyx (India)'),
(42236, 'https://ror.org/02knnfm74', 'en', 1, 'https://ror.org/02knnfm74 Board of Intermediate Education Karachi'),
(42237, 'https://ror.org/02kr3gj55', 'en', 1, 'https://ror.org/02kr3gj55 Mid Cheshire Hospitals NHS Foundation Trust'),
(42238, 'https://ror.org/02kraxp86', 'de', 1, 'https://ror.org/02kraxp86 SRH Hochschule der Populären Künste'),
(42239, 'https://ror.org/02kreny85', 'en', 1, 'https://ror.org/02kreny85 Delaware Division of the Arts'),
(42240, 'https://ror.org/02kt2ac46', 'en', 1, 'https://ror.org/02kt2ac46 Ubuntu Education Fund'),
(42241, 'https://ror.org/02kw9m715', 'pl', 1, 'https://ror.org/02kw9m715 Dolnośląska Wyższa Szkoła Przedsiębiorczości i Techniki w Polkowicach'),
(42242, 'https://ror.org/02kxkqy32', 'en', 1, 'https://ror.org/02kxkqy32 Hawaii Community College'),
(42243, 'https://ror.org/02ky6c719', 'no_lang_code', 1, 'https://ror.org/02ky6c719 Johnson Controls (United States)'),
(42244, 'https://ror.org/02kz5f065', 'en', 1, 'https://ror.org/02kz5f065 Medicine Hat College'),
(42245, 'https://ror.org/02m0pjb51', 'en', 1, 'https://ror.org/02m0pjb51 Wesley Biblical Seminary'),
(42246, 'https://ror.org/02m5dy175', 'en', 1, 'https://ror.org/02m5dy175 Georgia Tech Lorraine'),
(42247, 'https://ror.org/02m8kpq64', 'en', 1, 'https://ror.org/02m8kpq64 Child In Need Institute'),
(42248, 'https://ror.org/02mabj369', 'en', 1, 'https://ror.org/02mabj369 Nurses'' Training College, Ho'),
(42249, 'https://ror.org/02mdak015', 'no_lang_code', 1, 'https://ror.org/02mdak015 Hilleman Laboratories (India)'),
(42250, 'https://ror.org/02mf6dg38', 'en', 1, 'https://ror.org/02mf6dg38 Action Cancer'),
(42251, 'https://ror.org/02mfknm62', 'en', 1, 'https://ror.org/02mfknm62 Hypertension Trust'),
(42252, 'https://ror.org/02mfyea49', 'en', 1, 'https://ror.org/02mfyea49 Radom Academy of Economics Wyższa Szkoła Handlowa w Radomiu'),
(42253, 'https://ror.org/02mh1yk91', 'en', 1, 'https://ror.org/02mh1yk91 Dr. A. Ramachandran''s Diabetes Hospitals'),
(42254, 'https://ror.org/02mht3s70', 'en', 1, 'https://ror.org/02mht3s70 City of Westminster College'),
(42255, 'https://ror.org/02mj1af40', 'en', 1, 'https://ror.org/02mj1af40 Children & Youth Science Center of CAST äø­å›½ē§‘åé’å°‘å¹“ē§‘ęŠ€äø­åæƒ'),
(42256, 'https://ror.org/02mkq9q94', 'en', 1, 'https://ror.org/02mkq9q94 Institute of Sociology äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ē¤¾ä¼šå­¦ē ”ē©¶ę‰€'),
(42257, 'https://ror.org/02mr7vz40', 'en', 1, 'https://ror.org/02mr7vz40 Northwestern Oklahoma State University'),
(42258, 'https://ror.org/02ms60710', 'en', 1, 'https://ror.org/02ms60710 Fukuyama City University ē¦å±±åø‚ē«‹å¤§å­¦'),
(42259, 'https://ror.org/02mt4s337', 'en', 1, 'https://ror.org/02mt4s337 Bank of China äø­å›½é“¶č”Œč‚”ä»½ęœ‰é™å…¬åø'),
(42260, 'https://ror.org/02mv4ab52', 'en', 1, 'https://ror.org/02mv4ab52 inVentiv Health Clinical'),
(42261, 'https://ror.org/02mvc1a11', 'en', 1, 'https://ror.org/02mvc1a11 TCA College'),
(42262, 'https://ror.org/02mwyc682', 'en', 1, 'https://ror.org/02mwyc682 Korea Labor Institute ķ•œźµ­ė…øė™ģ—°źµ¬ģ›'),
(42263, 'https://ror.org/02mxq6q49', 'en', 1, 'https://ror.org/02mxq6q49 Guangdong Laboratory Animals Monitoring Institute å¹æäøœēœå®žéŖŒåŠØē‰©ē›‘ęµ‹ę‰€'),
(42264, 'https://ror.org/02n352k96', 'en', 1, 'https://ror.org/02n352k96 Regional Universities Forum for Capacity Building in Agriculture'),
(42265, 'https://ror.org/02n3ttt92', 'en', 1, 'https://ror.org/02n3ttt92 ALS Society of Canada'),
(42266, 'https://ror.org/02n5zea08', 'en', 1, 'https://ror.org/02n5zea08 Friends for Global Health Initiative Nigeria'),
(42267, 'https://ror.org/02n64v793', 'fr', 1, 'https://ror.org/02n64v793 Infor Jeunes Bruxelles'),
(42268, 'https://ror.org/02n67pd69', 'de', 1, 'https://ror.org/02n67pd69 Fƶrdergemeinschaft Kinderkrebs-Zentrum Hamburg'),
(42269, 'https://ror.org/02n7mrn32', 'no_lang_code', 1, 'https://ror.org/02n7mrn32 Chubu Electric Power (Japan) äø­éƒØé›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(42270, 'https://ror.org/02n937p61', 'en', 1, 'https://ror.org/02n937p61 Central Economics and Mathematics Institute Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-математический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(42271, 'https://ror.org/02n9a7a30', 'fr', 1, 'https://ror.org/02n9a7a30 Agence Nationale de l''Aviation Civile'),
(42272, 'https://ror.org/02n9jjp67', 'en', 1, 'https://ror.org/02n9jjp67 Groden Network'),
(42273, 'https://ror.org/02n9yc996', 'en', 1, 'https://ror.org/02n9yc996 Det kongelige Utenriksdepartement Ministry of Foreign Affairs'),
(42274, 'https://ror.org/02na6tz09', 'pt', 1, 'https://ror.org/02na6tz09 Universidade Estadual do Piau'),
(42275, 'https://ror.org/02nabw167', 'en', 1, 'https://ror.org/02nabw167 State Hospital'),
(42276, 'https://ror.org/02nbb5780', 'no_lang_code', 1, 'https://ror.org/02nbb5780 HCL Technologies (India)'),
(42277, 'https://ror.org/02nbfcv58', 'en', 1, 'https://ror.org/02nbfcv58 China Nuclear Energy Association ę øå·„äøščˆŖęµ‹é„ę„Ÿäø­åæƒ'),
(42278, 'https://ror.org/02nbqkk54', 'en', 1, 'https://ror.org/02nbqkk54 Western Wyoming Community College'),
(42279, 'https://ror.org/02nc61e46', 'en', 1, 'https://ror.org/02nc61e46 Community Research and Development Information Service Forschungs- und Entwicklungsinformationsdienst der Gemeinschaft Service communautaire d''information sur la recherche et le dĆ©veloppement Servizio Comunitario di Informazione in materia di Ricerca e Sviluppo Wspólnotowy Serwis Informacyjny Badań i Rozwoju'),
(42280, 'https://ror.org/02nc8vp15', 'es', 1, 'https://ror.org/02nc8vp15 Departamento Nacional de Planeación'),
(42281, 'https://ror.org/02ncvqp37', 'en', 1, 'https://ror.org/02ncvqp37 Center for Theoretical Problems of Physicochemical Pharmacology Центр теоретических проблем физико-химической фармакологии Š ŠŠ'),
(42282, 'https://ror.org/02nd9e057', 'en', 1, 'https://ror.org/02nd9e057 Ross University School of Medicine'),
(42283, 'https://ror.org/02nf1ky18', 'en', 1, 'https://ror.org/02nf1ky18 Institute of Quantitative and Technical Economics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ę•°é‡ē»ęµŽäøŽęŠ€ęœÆē»ęµŽē ”ē©¶ę‰€'),
(42284, 'https://ror.org/02nfbzg04', 'en', 1, 'https://ror.org/02nfbzg04 Department of Local Government and Communities'),
(42285, 'https://ror.org/02nfh7608', 'fr', 1, 'https://ror.org/02nfh7608 Bayerisch-Franzƶsische Hochschulzentrum Centre de CoopƩration Universitaire Franco-Bavarois'),
(42286, 'https://ror.org/02nfy5246', 'en', 1, 'https://ror.org/02nfy5246 Ministry of Science and Technology Thailand ąøąø£ąø°ąø—ąø£ąø§ąø‡ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œą¹ąø„ąø°ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµ'),
(42287, 'https://ror.org/02ngzgx62', 'en', 1, 'https://ror.org/02ngzgx62 BibliothĆØque du Parlement Library of Parliament'),
(42288, 'https://ror.org/02nk74404', 'en', 1, 'https://ror.org/02nk74404 Ministry of Employment and Labor ź³ ģš©ė…øė™ė¶€'),
(42289, 'https://ror.org/02nm6nb22', 'en', 1, 'https://ror.org/02nm6nb22 Sullivan College of Technology and Design'),
(42290, 'https://ror.org/02nmyab03', 'en', 1, 'https://ror.org/02nmyab03 Nyanza Reproductive Health Society'),
(42291, 'https://ror.org/02npjmq89', 'pt', 1, 'https://ror.org/02npjmq89 Fundação de Estudo e Pesquisa em Medicina VeterinÔria e Zootecnia'),
(42292, 'https://ror.org/02ntrvb55', 'es', 1, 'https://ror.org/02ntrvb55 Instituto Católico Chileno de Migración'),
(42293, 'https://ror.org/02nxvmx58', 'en', 1, 'https://ror.org/02nxvmx58 Accrington and Rossendale College'),
(42294, 'https://ror.org/02nys7898', 'en', 1, 'https://ror.org/02nys7898 Western Cape Department of Health'),
(42295, 'https://ror.org/02p2cvb06', 'en', 1, 'https://ror.org/02p2cvb06 Taft College'),
(42296, 'https://ror.org/02p3rg563', 'en', 1, 'https://ror.org/02p3rg563 Shandong Academy of Social Sciences å±±äøœē¤¾ä¼šē§‘å­¦é™¢'),
(42297, 'https://ror.org/02p58en94', 'en', 1, 'https://ror.org/02p58en94 The Restaurant School at Walnut Hill College'),
(42298, 'https://ror.org/02p6c5g88', 'en', 1, 'https://ror.org/02p6c5g88 Federal Ministry of Science & Technology'),
(42299, 'https://ror.org/02p79p790', 'en', 1, 'https://ror.org/02p79p790 Technological Institute of the Philippines'),
(42300, 'https://ror.org/02p7rqa77', 'fr', 1, 'https://ror.org/02p7rqa77 Centre Technique de l''Agro-Alimentaire'),
(42301, 'https://ror.org/02p837k95', 'no_lang_code', 1, 'https://ror.org/02p837k95 Ebro Foods (Canada)'),
(42302, 'https://ror.org/02p87ey03', 'no_lang_code', 1, 'https://ror.org/02p87ey03 Tech Mahindra (India)'),
(42303, 'https://ror.org/02pap8190', 'no_lang_code', 1, 'https://ror.org/02pap8190 Biognos (Sweden)'),
(42304, 'https://ror.org/02pcng468', 'en', 1, 'https://ror.org/02pcng468 Tanzania Public health Association'),
(42305, 'https://ror.org/02pfhbd70', 'en', 1, 'https://ror.org/02pfhbd70 Bundesministerium für Landesverteidigung und Sport Ministry of National Defence and Sport'),
(42306, 'https://ror.org/02phrtc32', 'no_lang_code', 1, 'https://ror.org/02phrtc32 SGS (Portugal) Sociedade Geral de SuperintendĆŖncia'),
(42307, 'https://ror.org/02pnpa204', 'it', 1, 'https://ror.org/02pnpa204 Istituzione Bologna Musei'),
(42308, 'https://ror.org/02pnvb171', 'en', 1, 'https://ror.org/02pnvb171 National Bureau of Agriculturally Important Microorganisms ą¤•ą„ƒą¤·ą¤æ ą¤•ą„‡ ą¤²ą¤æą¤ ą¤®ą¤¹ą¤¤ą„ą¤µą¤Ŗą„‚ą¤°ą„ą¤£ ą¤øą„‚ą¤•ą„ą¤·ą„ą¤®ą¤œą„€ą¤µą„‹ą¤‚ ą¤•ą„‡ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤¬ą„ą¤Æą„‚ą¤°ą„‹'),
(42309, 'https://ror.org/02ppykv54', 'no_lang_code', 1, 'https://ror.org/02ppykv54 Ipca Laboratories (India)'),
(42310, 'https://ror.org/02psef266', 'en', 1, 'https://ror.org/02psef266 Friends for an Earlier Breast Cancer Test'),
(42311, 'https://ror.org/02ptdck34', 'en', 1, 'https://ror.org/02ptdck34 Australian Housing and Urban Research Institute'),
(42312, 'https://ror.org/02pv2je48', 'en', 1, 'https://ror.org/02pv2je48 Queen of the Valley Medical Center'),
(42313, 'https://ror.org/02pvvfc75', 'en', 1, 'https://ror.org/02pvvfc75 Vaatsalya Healthcare'),
(42314, 'https://ror.org/02pz3nt69', 'en', 1, 'https://ror.org/02pz3nt69 Truman Bodden Law School'),
(42315, 'https://ror.org/02q017026', 'en', 1, 'https://ror.org/02q017026 Asian Center for Theological Studies and Mission ģ•„ģ„øģ•„ģ—°ķ•©ģ‹ ķ•™ėŒ€ķ•™źµ'),
(42316, 'https://ror.org/02q0t9634', 'hi', 1, 'https://ror.org/02q0t9634 Chhattisgarh Kamdhenu Vishwavidyalaya, ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼ ą¤•ą¤¾ą¤®ą¤§ą„‡ą¤Øą„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(42317, 'https://ror.org/02q312y93', 'no_lang_code', 1, 'https://ror.org/02q312y93 Inova Design Solutions (United Kingdom)'),
(42318, 'https://ror.org/02q4r4y12', 'en', 1, 'https://ror.org/02q4r4y12 Government Medical College Thoothukudi ą®¤ąÆ‚ą®¤ąÆą®¤ąÆą®•ąÆą®•ąÆą®Ÿą®æ ą®…ą®°ą®šąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(42319, 'https://ror.org/02q5yp463', 'en', 1, 'https://ror.org/02q5yp463 KVG Medical College & Hospital'),
(42320, 'https://ror.org/02q7fkp22', 'en', 1, 'https://ror.org/02q7fkp22 Cameroon Academy of Sciences'),
(42321, 'https://ror.org/02q931085', 'no_lang_code', 1, 'https://ror.org/02q931085 AMPAC Fine Chemicals (United States)'),
(42322, 'https://ror.org/02qb40709', 'no_lang_code', 1, 'https://ror.org/02qb40709 Medical Insurance Group Australia'),
(42323, 'https://ror.org/02qbcmz19', 'en', 1, 'https://ror.org/02qbcmz19 Fachhochschule für öffentliche Verwaltung Nordrhein-Westfalen University of Applied Sciences for Public Administration and Management'),
(42324, 'https://ror.org/02qj9w984', 'no_lang_code', 1, 'https://ror.org/02qj9w984 Getra (Italy)'),
(42325, 'https://ror.org/02qjrvm45', 'fr', 1, 'https://ror.org/02qjrvm45 Centre de Recherche sur l''Environnement Alpin'),
(42326, 'https://ror.org/02qn0hf26', 'en', 1, 'https://ror.org/02qn0hf26 University of Agricultural Sciences, Dharwad'),
(42327, 'https://ror.org/02qpqb855', 'en', 1, 'https://ror.org/02qpqb855 Institute of History Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории Š”Šž Š ŠŠ'),
(42328, 'https://ror.org/02qqa1p29', 'en', 1, 'https://ror.org/02qqa1p29 Emmanuel College - Georgia'),
(42329, 'https://ror.org/02qqx5a95', 'en', 1, 'https://ror.org/02qqx5a95 Russian Scientific Center of Radiology and Surgical Technologies Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр раГиологии Šø Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŃ… технологий'),
(42330, 'https://ror.org/02qrj0f68', 'no_lang_code', 1, 'https://ror.org/02qrj0f68 Jaypee Group (India)'),
(42331, 'https://ror.org/02qrt6d45', 'fr', 1, 'https://ror.org/02qrt6d45 Institut PrĆ©paratoire aux Ɖtudes d''IngĆ©nieurs de Monastir'),
(42332, 'https://ror.org/02qrynm70', 'en', 1, 'https://ror.org/02qrynm70 Research Manitoba'),
(42333, 'https://ror.org/02qs1a797', 'en', 1, 'https://ror.org/02qs1a797 Centro Nacional de Investigaciones Cardiovasculares Carlos III Spanish National Centre for Cardiovascular Research'),
(42334, 'https://ror.org/02qsf1r97', 'en', 1, 'https://ror.org/02qsf1r97 Academy of Science of South Africa'),
(42335, 'https://ror.org/02qvpgb95', 'tr', 1, 'https://ror.org/02qvpgb95 Denizli Special Provincial Administration Denizli Yatırım İzleme ve Koordinasyon Başkanlığı'),
(42336, 'https://ror.org/02qx7s056', 'en', 1, 'https://ror.org/02qx7s056 Marymount California University, Marymount College, Palos Verdes'),
(42337, 'https://ror.org/02qxe8g21', 'en', 1, 'https://ror.org/02qxe8g21 Vanguard College'),
(42338, 'https://ror.org/02qypfy05', 'no_lang_code', 1, 'https://ror.org/02qypfy05 Smiths Power (United States)'),
(42339, 'https://ror.org/02qz16y57', 'en', 1, 'https://ror.org/02qz16y57 Korea Transport Institute ķ•œźµ­ 교통 연구원'),
(42340, 'https://ror.org/02qz3vf90', 'en', 1, 'https://ror.org/02qz3vf90 Davidson County Community College'),
(42341, 'https://ror.org/02r0rw765', 'en', 1, 'https://ror.org/02r0rw765 Sault College'),
(42342, 'https://ror.org/02r140y61', 'pt', 1, 'https://ror.org/02r140y61 Instituição Toledo de Ensino'),
(42343, 'https://ror.org/02r1j5t41', 'no_lang_code', 1, 'https://ror.org/02r1j5t41 ZOSP RP Wytwórnia Umundurowania Strażackiego (Poland)'),
(42344, 'https://ror.org/02r2mca20', 'no_lang_code', 1, 'https://ror.org/02r2mca20 Zabaykalsky National Park Š—Š°Š±Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк'),
(42345, 'https://ror.org/02r321f54', 'en', 1, 'https://ror.org/02r321f54 Lamar Community College'),
(42346, 'https://ror.org/02r4ram30', 'en', 1, 'https://ror.org/02r4ram30 Institute of Economics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Š£Ń€Šž Š ŠŠ'),
(42347, 'https://ror.org/02r724415', 'de', 1, 'https://ror.org/02r724415 Evangelische Hochschule Dresden'),
(42348, 'https://ror.org/02ra35s50', 'no_lang_code', 1, 'https://ror.org/02ra35s50 Georgia Power (United States)'),
(42349, 'https://ror.org/02re25503', 'en', 1, 'https://ror.org/02re25503 Westerdals Oslo School of Arts, Communication and Technology'),
(42350, 'https://ror.org/02re32a17', 'en', 1, 'https://ror.org/02re32a17 Hochschule Mainz University of Applied Sciences Mainz'),
(42351, 'https://ror.org/02rejsj11', 'pt', 1, 'https://ror.org/02rejsj11 Conservatório de Música de Coimbra'),
(42352, 'https://ror.org/02rey2c02', 'en', 1, 'https://ror.org/02rey2c02 Sterling College - Kansas'),
(42353, 'https://ror.org/02rfxzc53', 'en', 1, 'https://ror.org/02rfxzc53 Louisville Presbyterian Theological Seminary'),
(42354, 'https://ror.org/02rktmz08', 'en', 1, 'https://ror.org/02rktmz08 State Preservation Board'),
(42355, 'https://ror.org/02rppq041', 'de', 1, 'https://ror.org/02rppq041 Krankenhaus Nordwest'),
(42356, 'https://ror.org/02rpqwp12', 'pt', 1, 'https://ror.org/02rpqwp12 Instituto Vita'),
(42357, 'https://ror.org/02rpz4k59', 'no_lang_code', 1, 'https://ror.org/02rpz4k59 Swets & Zeitlinger Swets (Netherlands)'),
(42358, 'https://ror.org/02rqftv84', 'en', 1, 'https://ror.org/02rqftv84 Organisation for the Prohibition of Chemical Weapons Organización para la Prohibición de Armas Químicas'),
(42359, 'https://ror.org/02rrsh045', 'en', 1, 'https://ror.org/02rrsh045 Aichi Konan College ę„›ēŸ„ę±Ÿå—ēŸ­ęœŸå¤§å­¦'),
(42360, 'https://ror.org/02rs18x11', 'en', 1, 'https://ror.org/02rs18x11 Conseil pour le dĆ©veloppement de la recherche en sciences sociales en Afrique Conselho para o Desenvolvimento da Pesquisa em CiĆŖncias Sociais em Ɓfrica Council for the Development of Social Science Research in Africa مجلس ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų„Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© في Ų£ŁŲ±ŁŠŁ‚ŁŠ'),
(42361, 'https://ror.org/02rv28335', 'en', 1, 'https://ror.org/02rv28335 Ukrainian Military Medical Academy Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾-меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(42362, 'https://ror.org/02rvd6d64', 'en', 1, 'https://ror.org/02rvd6d64 Psychological Institute of the Russian Academy of Education'),
(42363, 'https://ror.org/02rw00q54', 'en', 1, 'https://ror.org/02rw00q54 Tanzania Commission for AIDS'),
(42364, 'https://ror.org/02rwycx38', 'en', 1, 'https://ror.org/02rwycx38 San Raffaele University of Rome UniversitĆ  telematica San Raffaele'),
(42365, 'https://ror.org/02rx19412', 'en', 1, 'https://ror.org/02rx19412 National Academy of Agricultural Research Management'),
(42366, 'https://ror.org/02rzek752', 'pt', 1, 'https://ror.org/02rzek752 Centro de Desenvolvimento SustentƔvel para as Zonas Costeiras'),
(42367, 'https://ror.org/02s28hw54', 'en', 1, 'https://ror.org/02s28hw54 Emily Griffith Technical College'),
(42368, 'https://ror.org/02s2t6509', 'en', 1, 'https://ror.org/02s2t6509 MacPhail Center for Music'),
(42369, 'https://ror.org/02s4jq766', 'en', 1, 'https://ror.org/02s4jq766 Youth for Christ South Africa'),
(42370, 'https://ror.org/02s6ww326', 'en', 1, 'https://ror.org/02s6ww326 Institute of Oriental Manuscripts Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ восточных Ń€ŃƒŠŗŠ¾ŠæŠøŃŠµŠ¹ Российской акаГемии наук'),
(42371, 'https://ror.org/02s7a2f24', 'en', 1, 'https://ror.org/02s7a2f24 Ali Yavar Jung National Institute for the Hearing Handicapped'),
(42372, 'https://ror.org/02s995827', 'no_lang_code', 1, 'https://ror.org/02s995827 Allergan (Germany)'),
(42373, 'https://ror.org/02s9tm513', 'no_lang_code', 1, 'https://ror.org/02s9tm513 Indian Oil Corporation (India)'),
(42374, 'https://ror.org/02sbchm13', 'no_lang_code', 1, 'https://ror.org/02sbchm13 Asceneuron (Switzerland)'),
(42375, 'https://ror.org/02sbnnp08', 'en', 1, 'https://ror.org/02sbnnp08 Alanya Hamdullah Emin Pasa University Alanya Hamdullah Emin Paşa Üniversitesi'),
(42376, 'https://ror.org/02schg286', 'es', 1, 'https://ror.org/02schg286 Dirección de Investigación y Desarrollo'),
(42377, 'https://ror.org/02se5n791', 'en', 1, 'https://ror.org/02se5n791 Entrepreneurship Development Institute of India'),
(42378, 'https://ror.org/02seyh617', 'no_lang_code', 1, 'https://ror.org/02seyh617 AriadNEXT (France)'),
(42379, 'https://ror.org/02sf8e546', 'en', 1, 'https://ror.org/02sf8e546 Patrick Henry Community College'),
(42380, 'https://ror.org/02sj9qn07', 'en', 1, 'https://ror.org/02sj9qn07 Flint Hills Technical College'),
(42381, 'https://ror.org/02skzpy58', 'en', 1, 'https://ror.org/02skzpy58 Centre for Environmental Management and Participatory Development'),
(42382, 'https://ror.org/02sn4rb40', 'no_lang_code', 1, 'https://ror.org/02sn4rb40 Peregrine Power (United States)'),
(42383, 'https://ror.org/02sqcy831', 'en', 1, 'https://ror.org/02sqcy831 Global Cardiovascular Innovation Center'),
(42384, 'https://ror.org/02sqt9870', 'en', 1, 'https://ror.org/02sqt9870 University of Louisiana System'),
(42385, 'https://ror.org/02srjxm46', 'en', 1, 'https://ror.org/02srjxm46 Brazosport College'),
(42386, 'https://ror.org/02ss0kx69', 'en', 1, 'https://ror.org/02ss0kx69 Kyung Hee University Dental Hospital ź²½ķ¬ėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(42387, 'https://ror.org/02sstxn62', 'en', 1, 'https://ror.org/02sstxn62 European Bank for Reconstruction and Development'),
(42388, 'https://ror.org/02sv2ex42', 'en', 1, 'https://ror.org/02sv2ex42 KLE Society Hospital'),
(42389, 'https://ror.org/02svk5a52', 'en', 1, 'https://ror.org/02svk5a52 Państwowa Wyższa Szkoła Zawodowa w Skierniewicach State Higher Vocational School in Skierniewice'),
(42390, 'https://ror.org/02svqj611', 'en', 1, 'https://ror.org/02svqj611 London School of Business and Finance'),
(42391, 'https://ror.org/02svt2f64', 'no_lang_code', 1, 'https://ror.org/02svt2f64 Maharashtra Hybrid Seeds (India)'),
(42392, 'https://ror.org/02swjdp46', 'en', 1, 'https://ror.org/02swjdp46 Children’s Discovery Institute'),
(42393, 'https://ror.org/02sx0vk32', 'en', 1, 'https://ror.org/02sx0vk32 Department of Education and Training'),
(42394, 'https://ror.org/02sx1y706', 'no_lang_code', 1, 'https://ror.org/02sx1y706 Sears Holdings (United States)'),
(42395, 'https://ror.org/02sx3vp22', 'en', 1, 'https://ror.org/02sx3vp22 North Central Missouri College'),
(42396, 'https://ror.org/02sx6dd34', 'en', 1, 'https://ror.org/02sx6dd34 Health Care Foundation'),
(42397, 'https://ror.org/02sxcbg21', 'en', 1, 'https://ror.org/02sxcbg21 Indian Navy ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Øą„Œą¤øą„‡ą¤Øą¤¾'),
(42398, 'https://ror.org/02sz0wz08', 'en', 1, 'https://ror.org/02sz0wz08 Health Systems Trust'),
(42399, 'https://ror.org/02sz4p320', 'en', 1, 'https://ror.org/02sz4p320 Institute of World Politics'),
(42400, 'https://ror.org/02t1a0v32', 'no_lang_code', 1, 'https://ror.org/02t1a0v32 BMC Software (United States)'),
(42401, 'https://ror.org/02t1dzr71', 'en', 1, 'https://ror.org/02t1dzr71 China Machine Press äø­å›½ęœŗę¢°å·„äøšå‡ŗē‰ˆē¤¾'),
(42402, 'https://ror.org/02t2raw56', 'en', 1, 'https://ror.org/02t2raw56 National Assembly Library ėŒ€ķ•œėÆ¼źµ­ źµ­ķšŒė„ģ„œź“€'),
(42403, 'https://ror.org/02t3dz930', 'en', 1, 'https://ror.org/02t3dz930 European External Action Service Europese Dienst voor extern optreden EuropƤischer AuswƤrtiger Dienst Service europĆ©en pour l’action extĆ©rieure'),
(42404, 'https://ror.org/02t3sye10', 'en', 1, 'https://ror.org/02t3sye10 Excellence & Friends Management Care Centre'),
(42405, 'https://ror.org/02t4zgr18', 'fr', 1, 'https://ror.org/02t4zgr18 Institut National de Nutrition et de Technologie Alimentaire'),
(42406, 'https://ror.org/02t573g91', 'en', 1, 'https://ror.org/02t573g91 China Executive Leadership Academy Pudong äø­å›½ęµ¦äøœå¹²éƒØå­¦é™¢'),
(42407, 'https://ror.org/02t5chg71', 'en', 1, 'https://ror.org/02t5chg71 Alberta Foundation for the Arts'),
(42408, 'https://ror.org/02t5vjx28', 'en', 1, 'https://ror.org/02t5vjx28 Central Mindanao Colleges'),
(42409, 'https://ror.org/02t64n115', 'en', 1, 'https://ror.org/02t64n115 Polarforskningssekretariatet Swedish Polar Research Secretariat'),
(42410, 'https://ror.org/02t6f2351', 'pt', 1, 'https://ror.org/02t6f2351 Instituto Federal de Educação, Ciência e Tecnologia de Mato Grosso'),
(42411, 'https://ror.org/02t9ezy32', 'en', 1, 'https://ror.org/02t9ezy32 Bracknell and Wokingham College'),
(42412, 'https://ror.org/02tbw3b35', 'en', 1, 'https://ror.org/02tbw3b35 Islamic Azad University of Shahrekord دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓهرکرد'),
(42413, 'https://ror.org/02tc88d30', 'no_lang_code', 1, 'https://ror.org/02tc88d30 InfoBeyond Technology (United States)'),
(42414, 'https://ror.org/02tcs8g80', 'no_lang_code', 1, 'https://ror.org/02tcs8g80 Laboratório Edol (Portugal)'),
(42415, 'https://ror.org/02tdb1n52', 'en', 1, 'https://ror.org/02tdb1n52 Bellingen Shire Council'),
(42416, 'https://ror.org/02tdd1e40', 'en', 1, 'https://ror.org/02tdd1e40 Saint Luke''s College of Health Sciences'),
(42417, 'https://ror.org/02tec3785', 'en', 1, 'https://ror.org/02tec3785 Ulsan College ģšøģ‚°ź³¼ķ•™ėŒ€ķ•™źµ'),
(42418, 'https://ror.org/02thwp314', 'no_lang_code', 1, 'https://ror.org/02thwp314 Helixor Heilmittel (Germany)'),
(42419, 'https://ror.org/02tjbfx21', 'en', 1, 'https://ror.org/02tjbfx21 Kasturba Hospital'),
(42420, 'https://ror.org/02tjcpt69', 'en', 1, 'https://ror.org/02tjcpt69 University of Agricultural Sciences Raichur ą²•ą³ƒą²·ą²æ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ą²°ą²¾ą²Æą²šą³‚ą²°ą³'),
(42421, 'https://ror.org/02tn5xc56', 'en', 1, 'https://ror.org/02tn5xc56 Colgate Rochester Crozer Divinity School'),
(42422, 'https://ror.org/02tq21k19', 'pt', 1, 'https://ror.org/02tq21k19 For Mar Centro de Formação Profissional das Pescas e do Mar'),
(42423, 'https://ror.org/02tr1pz26', 'en', 1, 'https://ror.org/02tr1pz26 Alberta College Alberta Koledža'),
(42424, 'https://ror.org/02trn6p95', 'es', 1, 'https://ror.org/02trn6p95 Comisión Sectorial de Investigación Científica'),
(42425, 'https://ror.org/02tsh5b53', 'en', 1, 'https://ror.org/02tsh5b53 Majlis Kebudayaan Kebangsaan Singapura National Arts Council å›½å®¶č‰ŗęœÆē†äŗ‹ä¼š'),
(42426, 'https://ror.org/02ttd0n41', 'en', 1, 'https://ror.org/02ttd0n41 Wellington City Council'),
(42427, 'https://ror.org/02tvx6482', 'en', 1, 'https://ror.org/02tvx6482 Key Laboratory of Chemistry for Natural Products of Guizhou Province and Chinese Academy of Sciences č“µå·žēœäø­å›½ē§‘å­¦é™¢å¤©ē„¶äŗ§ē‰©åŒ–å­¦é‡ē‚¹å®žéŖŒå®¤'),
(42428, 'https://ror.org/02txa2075', 'en', 1, 'https://ror.org/02txa2075 Vision West Nottinghamshire College'),
(42429, 'https://ror.org/02txwfx92', 'it', 1, 'https://ror.org/02txwfx92 Giuseppe Salvatore Vaiana Osservatorio Astronomico di Palermo'),
(42430, 'https://ror.org/02ty6ja84', 'en', 1, 'https://ror.org/02ty6ja84 Texas Department of Family and Protective Services'),
(42431, 'https://ror.org/02tzvz077', 'pt', 1, 'https://ror.org/02tzvz077 Teatro Nacional São João'),
(42432, 'https://ror.org/02v0ayw84', 'sv', 1, 'https://ror.org/02v0ayw84 KungƤlvs Sjukhus'),
(42433, 'https://ror.org/02v2jz242', 'no_lang_code', 1, 'https://ror.org/02v2jz242 Ssemwanga (Uganda)'),
(42434, 'https://ror.org/02v616z87', 'no_lang_code', 1, 'https://ror.org/02v616z87 BNP Paribas (France)'),
(42435, 'https://ror.org/02v65ck63', 'en', 1, 'https://ror.org/02v65ck63 Maple Springs Baptist Bible College and Seminary'),
(42436, 'https://ror.org/02v8a2f42', 'en', 1, 'https://ror.org/02v8a2f42 Automotive Research Association of India'),
(42437, 'https://ror.org/02v8s3859', 'en', 1, 'https://ror.org/02v8s3859 Azad University in Oxford'),
(42438, 'https://ror.org/02vb0gn74', 'fr', 1, 'https://ror.org/02vb0gn74 TL & AssociƩs'),
(42439, 'https://ror.org/02vc1v137', 'en', 1, 'https://ror.org/02vc1v137 Indian Spinal Injuries Centre'),
(42440, 'https://ror.org/02vcjcj30', 'de', 1, 'https://ror.org/02vcjcj30 Ministerium für Wissenschaft, Forschung und Kultur'),
(42441, 'https://ror.org/02vfz9j23', 'en', 1, 'https://ror.org/02vfz9j23 Forsvarets HĆøgskoler Norwegian Defence University College'),
(42442, 'https://ror.org/02vj63597', 'en', 1, 'https://ror.org/02vj63597 Nicolet Area Technical College'),
(42443, 'https://ror.org/02vksp793', 'es', 1, 'https://ror.org/02vksp793 Instituto de Investigaciones en Fruticultura Tropical'),
(42444, 'https://ror.org/02vmd6f14', 'en', 1, 'https://ror.org/02vmd6f14 Saint John''s School'),
(42445, 'https://ror.org/02vnvpc56', 'en', 1, 'https://ror.org/02vnvpc56 Jan Amos Komeński State School of Higher Vocational Education Państwowa Wyższa Szkoła Zawodowa im. Jana Amosa Komeńskiego w Lesznie'),
(42446, 'https://ror.org/02vp8jr44', 'es', 1, 'https://ror.org/02vp8jr44 Ministerio de Ciencia y TecnologĆ­a'),
(42447, 'https://ror.org/02vt55417', 'en', 1, 'https://ror.org/02vt55417 Blessing-Rieman College of Nursing'),
(42448, 'https://ror.org/02vtmt724', 'en', 1, 'https://ror.org/02vtmt724 Institute of Synthetic Polymeric Materials Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ синтетических полимерных материалов им.Š.Š”.Ениколопова Российской акаГемии наук'),
(42449, 'https://ror.org/02vv5t298', 'no_lang_code', 1, 'https://ror.org/02vv5t298 Newcrest Mining (Australia)'),
(42450, 'https://ror.org/02vvfyx50', 'en', 1, 'https://ror.org/02vvfyx50 Rich Mountain Community College'),
(42451, 'https://ror.org/02vw5s254', 'en', 1, 'https://ror.org/02vw5s254 Ministry of Unification ķ†µģ¼ė¶€'),
(42452, 'https://ror.org/02vxhys40', 'en', 1, 'https://ror.org/02vxhys40 Africa Groundwater Network'),
(42453, 'https://ror.org/02vz1de40', 'no_lang_code', 1, 'https://ror.org/02vz1de40 Canegrowers (Australia)'),
(42454, 'https://ror.org/02w20cr42', 'en', 1, 'https://ror.org/02w20cr42 Nebraska Space Grant Consortium'),
(42455, 'https://ror.org/02w2mvp24', 'en', 1, 'https://ror.org/02w2mvp24 Białystok Institute of Cosmetology and Healthcare Wyższa Szkoła Kosmetologii i Ochrony Zdrowia w Białymstoku'),
(42456, 'https://ror.org/02w6yjb02', 'no_lang_code', 1, 'https://ror.org/02w6yjb02 Advanced Fiber Technologies (United States)'),
(42457, 'https://ror.org/02w7f3w92', 'no_lang_code', 1, 'https://ror.org/02w7f3w92 Microsoft Research (India)'),
(42458, 'https://ror.org/02w9pf714', 'en', 1, 'https://ror.org/02w9pf714 Saint Vincent Seminary'),
(42459, 'https://ror.org/02wawqt17', 'no_lang_code', 1, 'https://ror.org/02wawqt17 Scope e-Knowledge Center (India)'),
(42460, 'https://ror.org/02wb4dv66', 'en', 1, 'https://ror.org/02wb4dv66 Ohio Arts Council'),
(42461, 'https://ror.org/02wben378', 'no_lang_code', 1, 'https://ror.org/02wben378 Imtek (Russia) Š˜Š¼Ń‚ŠµŠŗ'),
(42462, 'https://ror.org/02wbgn345', 'en', 1, 'https://ror.org/02wbgn345 Newman Theological College'),
(42463, 'https://ror.org/02wbs0d88', 'en', 1, 'https://ror.org/02wbs0d88 Texas Water Development Board'),
(42464, 'https://ror.org/02wcz1374', 'en', 1, 'https://ror.org/02wcz1374 Arthritis Australia'),
(42465, 'https://ror.org/02wg74v35', 'en', 1, 'https://ror.org/02wg74v35 Korea District Heating Corporation'),
(42466, 'https://ror.org/02wjedj15', 'en', 1, 'https://ror.org/02wjedj15 Kerala School of Mathematics'),
(42467, 'https://ror.org/02wk65538', 'en', 1, 'https://ror.org/02wk65538 Delaware College of Art and Design'),
(42468, 'https://ror.org/02wmtxq23', 'en', 1, 'https://ror.org/02wmtxq23 Central Institute for Research on Buffaloes'),
(42469, 'https://ror.org/02wn2b621', 'en', 1, 'https://ror.org/02wn2b621 College of the Resurrection'),
(42470, 'https://ror.org/02wq22q69', 'en', 1, 'https://ror.org/02wq22q69 Nehru Trust'),
(42471, 'https://ror.org/02wrr2w36', 'en', 1, 'https://ror.org/02wrr2w36 Ministry of Community Development, Mother and Child Health'),
(42472, 'https://ror.org/02wstxe29', 'en', 1, 'https://ror.org/02wstxe29 Chinese Academy of Personnel Science 中国人事科学研究院'),
(42473, 'https://ror.org/02wtdws21', 'en', 1, 'https://ror.org/02wtdws21 Kagawa Junior College é¦™å·ēŸ­ęœŸå¤§å­¦'),
(42474, 'https://ror.org/02wtecw28', 'de', 1, 'https://ror.org/02wtecw28 Sparkassen-Finanzgruppe'),
(42475, 'https://ror.org/02wvb2a30', 'en', 1, 'https://ror.org/02wvb2a30 Nordland Research Institute Nordlandsforskning'),
(42476, 'https://ror.org/02wvzb321', 'en', 1, 'https://ror.org/02wvzb321 Action for Agricultural Renewal in Maharashtra'),
(42477, 'https://ror.org/02wyv8x71', 'en', 1, 'https://ror.org/02wyv8x71 San Francisco Theological Seminary'),
(42478, 'https://ror.org/02wzg6d13', 'en', 1, 'https://ror.org/02wzg6d13 Geological Survey of Japan åœ°č³ŖčŖæęŸ»ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(42479, 'https://ror.org/02wzm7472', 'no_lang_code', 1, 'https://ror.org/02wzm7472 APEX Technologies (France)'),
(42480, 'https://ror.org/02x0mcx56', 'pt', 1, 'https://ror.org/02x0mcx56 Prefeitura Municipal do Natal'),
(42481, 'https://ror.org/02x1t0474', 'en', 1, 'https://ror.org/02x1t0474 Seth Research Foundation'),
(42482, 'https://ror.org/02x26d386', 'no_lang_code', 1, 'https://ror.org/02x26d386 Flora Pyramids Paper Mills'),
(42483, 'https://ror.org/02x2gpf88', 'en', 1, 'https://ror.org/02x2gpf88 University of Northwestern Ohio'),
(42484, 'https://ror.org/02x2rzn44', 'en', 1, 'https://ror.org/02x2rzn44 Playford Trust'),
(42485, 'https://ror.org/02x351n42', 'en', 1, 'https://ror.org/02x351n42 Advanced Materials and Processes Research Institute ą¤Ŗą„ą¤°ą¤—ą¤¤ ą¤Ŗą¤¦ą¤¾ą¤°ą„ą¤„ तऄा ą¤Ŗą„ą¤°ą¤•ą„ą¤°ą¤® ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(42486, 'https://ror.org/02x3mf211', 'en', 1, 'https://ror.org/02x3mf211 Institute of Computational Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… технологий Š”Šž Š ŠŠ'),
(42487, 'https://ror.org/02x50w080', 'no_lang_code', 1, 'https://ror.org/02x50w080 Interacoustics (Denmark)'),
(42488, 'https://ror.org/02x5pe091', 'no_lang_code', 1, 'https://ror.org/02x5pe091 SCG Chemicals (Thailand)'),
(42489, 'https://ror.org/02x5rws94', 'en', 1, 'https://ror.org/02x5rws94 Southern African Research and Innovation Management Association'),
(42490, 'https://ror.org/02x6jsy35', 'en', 1, 'https://ror.org/02x6jsy35 Instituto Nacional de GenƩtica MƩdica Populacional National Institute on Population Medical Genetics'),
(42491, 'https://ror.org/02x9c2945', 'no_lang_code', 1, 'https://ror.org/02x9c2945 Alliance One Tobacco (Malawi)'),
(42492, 'https://ror.org/02x9fc857', 'en', 1, 'https://ror.org/02x9fc857 G Š‘ŠµŠ»ŃŠŗŠ¾Š² Тихоокеанский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биоорганической химии Pacific Institute of Bioorganic Chemistry. GB Elyakova Far Eastern Branch of the Russian Academy of Sciences'),
(42493, 'https://ror.org/02xbxcz59', 'en', 1, 'https://ror.org/02xbxcz59 New Hampshire Institute of Art'),
(42494, 'https://ror.org/02xcgb468', 'en', 1, 'https://ror.org/02xcgb468 R.O.C Military Academy äø­čÆę°‘åœ‹é™øč»č»å®˜å­øę ”'),
(42495, 'https://ror.org/02xfgyt86', 'no_lang_code', 1, 'https://ror.org/02xfgyt86 SinoGenoMax (China) åŒ—äŗ¬čÆŗčµ›åŸŗå› ē»„ē ”ē©¶äø­åæƒęœ‰é™å…¬åø');
INSERT INTO `rors` VALUES
(42496, 'https://ror.org/02xh2ys40', 'en', 1, 'https://ror.org/02xh2ys40 National Research Centre on Camel ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤‰ą¤·ą„ą¤Ÿą„ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(42497, 'https://ror.org/02xhv2402', 'en', 1, 'https://ror.org/02xhv2402 Trinity Bible College'),
(42498, 'https://ror.org/02xj62754', 'en', 1, 'https://ror.org/02xj62754 Seoul School of Integrated Sciences and Technologies ģ„œģšøź³¼ķ•™ģ¢…ķ•©ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(42499, 'https://ror.org/02xkgba40', 'en', 1, 'https://ror.org/02xkgba40 Theodore Roosevelt High School'),
(42500, 'https://ror.org/02xm1rf97', 'en', 1, 'https://ror.org/02xm1rf97 National Climate Change Adaptation Research Facility'),
(42501, 'https://ror.org/02xm2e940', 'pl', 1, 'https://ror.org/02xm2e940 Collegium Mazovia Innowacyjna Szkoła Wyższa'),
(42502, 'https://ror.org/02xmv6y90', 'no_lang_code', 1, 'https://ror.org/02xmv6y90 Genetech (Sri Lanka)'),
(42503, 'https://ror.org/02xq6cs86', 'no_lang_code', 1, 'https://ror.org/02xq6cs86 Naskeo Environnement (France)'),
(42504, 'https://ror.org/02xq98350', 'en', 1, 'https://ror.org/02xq98350 Coffee Research Institute'),
(42505, 'https://ror.org/02xqs5h32', 'no_lang_code', 1, 'https://ror.org/02xqs5h32 Antrix Corporation (India)'),
(42506, 'https://ror.org/02xv1yp72', 'en', 1, 'https://ror.org/02xv1yp72 All-Russian Scientific Research Institute of Radiology and AgroEcology All-Ń€ŃƒŃŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиологии Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(42507, 'https://ror.org/02xwsbr93', 'en', 1, 'https://ror.org/02xwsbr93 Weatherford College'),
(42508, 'https://ror.org/02y5xdy12', 'en', 1, 'https://ror.org/02y5xdy12 Graduate School for the Creation of New Photonics Industries å…‰ē”£ę„­å‰µęˆå¤§å­¦é™¢å¤§å­¦'),
(42509, 'https://ror.org/02y7dq096', 'no_lang_code', 1, 'https://ror.org/02y7dq096 Mclean Media (United States)'),
(42510, 'https://ror.org/02y85x967', 'no_lang_code', 1, 'https://ror.org/02y85x967 Otter Tail Corporation (United States)'),
(42511, 'https://ror.org/02yd5qy74', 'no_lang_code', 1, 'https://ror.org/02yd5qy74 Encapson (Netherlands)'),
(42512, 'https://ror.org/02yd7p033', 'fr', 1, 'https://ror.org/02yd7p033 Institut Togolais de Recherche Agronomique'),
(42513, 'https://ror.org/02yec8h85', 'en', 1, 'https://ror.org/02yec8h85 Urban College of Boston'),
(42514, 'https://ror.org/02yf3ey12', 'en', 1, 'https://ror.org/02yf3ey12 Department of Culture and the Arts'),
(42515, 'https://ror.org/02ygqdd77', 'en', 1, 'https://ror.org/02ygqdd77 Centre for Forest Ecology and Productivity Центр по проблемам ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø ŠæŃ€Š¾Š“ŃƒŠŗŃ‚ŠøŠ²Š½Š¾ŃŃ‚Šø лесов Š ŠŠ'),
(42516, 'https://ror.org/02yj8av48', 'en', 1, 'https://ror.org/02yj8av48 National Dairy Development Board'),
(42517, 'https://ror.org/02yjx5e75', 'en', 1, 'https://ror.org/02yjx5e75 Beijing Xuanwu Traditional Chinese Medicine Hospital åŒ—äŗ¬åø‚å®£ę­¦äø­åŒ»åŒ»é™¢'),
(42518, 'https://ror.org/02yk6f609', 'pt', 1, 'https://ror.org/02yk6f609 Secretaria de Estado da Ciência, Tecnologia e Inovação'),
(42519, 'https://ror.org/02ypmq936', 'en', 1, 'https://ror.org/02ypmq936 Caritas Nigeria'),
(42520, 'https://ror.org/02ypzv613', 'en', 1, 'https://ror.org/02ypzv613 Military Geographical Institute Vojnogeografski institut'),
(42521, 'https://ror.org/02yqzaa38', 'fr', 1, 'https://ror.org/02yqzaa38 Haute Ɖcole des Arts du Rhin'),
(42522, 'https://ror.org/02yrcbg49', 'en', 1, 'https://ror.org/02yrcbg49 Government College for Women Anantnag ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ کالج Ų®ŁˆŲ§ŲŖŪŒŁ† اننت ناگ'),
(42523, 'https://ror.org/02yt5we53', 'no_lang_code', 1, 'https://ror.org/02yt5we53 Human Factors International (India)'),
(42524, 'https://ror.org/02ywnmf80', 'en', 1, 'https://ror.org/02ywnmf80 French Institute for Research in Africa'),
(42525, 'https://ror.org/02ywp9g98', 'fr', 1, 'https://ror.org/02ywp9g98 Commissariat GƩnƩral Ơ l''Investissement'),
(42526, 'https://ror.org/02yxawe84', 'en', 1, 'https://ror.org/02yxawe84 Integrated Community Based Initiatives'),
(42527, 'https://ror.org/02z1v3h34', 'en', 1, 'https://ror.org/02z1v3h34 Pawel Wlodkowic University College in Płock Szkola Wyzsza im. Pawla Wlodkowica w Plocku'),
(42528, 'https://ror.org/02z1x9d19', 'no_lang_code', 1, 'https://ror.org/02z1x9d19 Celfinet (Portugal)'),
(42529, 'https://ror.org/02z2wec49', 'pt', 1, 'https://ror.org/02z2wec49 Instituto Nacional de Ciência e Tecnologia em EletrÓnica Orgânica'),
(42530, 'https://ror.org/02z493v75', 'en', 1, 'https://ror.org/02z493v75 Owensboro Community and Technical College'),
(42531, 'https://ror.org/02z4faz68', 'no_lang_code', 1, 'https://ror.org/02z4faz68 Eisai (South Korea) ķ•œźµ­ģ—ģžģ“'),
(42532, 'https://ror.org/02z64ft38', 'no_lang_code', 1, 'https://ror.org/02z64ft38 Behavior Imaging Solutions (United States)'),
(42533, 'https://ror.org/02z8rt196', 'en', 1, 'https://ror.org/02z8rt196 National Center for Technology Management'),
(42534, 'https://ror.org/02zcvj403', 'it', 1, 'https://ror.org/02zcvj403 Conservatorio di Musica Girolamo Frescobaldi'),
(42535, 'https://ror.org/02zdrev82', 'pt', 1, 'https://ror.org/02zdrev82 Instituto Nacional de CiĆŖncia e Tecnologia de Processos Redox em Biomedicina'),
(42536, 'https://ror.org/02ze2t980', 'en', 1, 'https://ror.org/02ze2t980 Russian Association of Indigenous Peoples of the North ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ коренных, малочисленных нароГов Девера, Дибири Šø Š”Š°Š»ŃŒŠ½ŠµŠ³Š¾ Востока Российской ФеГерации'),
(42537, 'https://ror.org/02zfe4c02', 'en', 1, 'https://ror.org/02zfe4c02 Dundee and Angus College'),
(42538, 'https://ror.org/02zj71846', 'en', 1, 'https://ror.org/02zj71846 Holy Cross University'),
(42539, 'https://ror.org/02zjd4750', 'en', 1, 'https://ror.org/02zjd4750 Zimbabwe National Water Authority'),
(42540, 'https://ror.org/02zjtq409', 'en', 1, 'https://ror.org/02zjtq409 Russian Railways Российские железные Гороги'),
(42541, 'https://ror.org/02zjyrw66', 'en', 1, 'https://ror.org/02zjyrw66 Niskamoon Corporation'),
(42542, 'https://ror.org/02zkr7r20', 'it', 1, 'https://ror.org/02zkr7r20 Conservatorio di Musica Luigi Cherubini'),
(42543, 'https://ror.org/02zm5j810', 'en', 1, 'https://ror.org/02zm5j810 National Institute of Science, Technology and Development Studies ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø, ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ और विकास ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(42544, 'https://ror.org/02zmh8h66', 'es', 1, 'https://ror.org/02zmh8h66 Instituto Tecnológico de León'),
(42545, 'https://ror.org/02zndy744', 'en', 1, 'https://ror.org/02zndy744 Ohio Business College'),
(42546, 'https://ror.org/02zp2tc18', 'en', 1, 'https://ror.org/02zp2tc18 Institute of Solution Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии растворов им. Š“.А. ŠšŃ€ŠµŃŃ‚Š¾Š²Š° Российской акаГемии наук'),
(42547, 'https://ror.org/02zpajz15', 'en', 1, 'https://ror.org/02zpajz15 Bates Technical College'),
(42548, 'https://ror.org/02zwsc421', 'fr', 1, 'https://ror.org/02zwsc421 Ɖcole SupĆ©rieure des Arts Saint-Luc de LiĆØge'),
(42549, 'https://ror.org/02zxpkz02', 'sl', 1, 'https://ror.org/02zxpkz02 School Centre Celje, Å olski center Celje'),
(42550, 'https://ror.org/02zy6dj62', 'no_lang_code', 1, 'https://ror.org/02zy6dj62 Njala University'),
(42551, 'https://ror.org/02zzkft25', 'no_lang_code', 1, 'https://ror.org/02zzkft25 Shigakukan University 志學館大学'),
(42552, 'https://ror.org/02zztqs66', 'en', 1, 'https://ror.org/02zztqs66 305 Hospital of People Liberation Army 中国人民解放军第三0äŗ”åŒ»é™¢'),
(42553, 'https://ror.org/02zzvms95', 'en', 1, 'https://ror.org/02zzvms95 Northern Lakes College'),
(42554, 'https://ror.org/0300bh485', 'en', 1, 'https://ror.org/0300bh485 Clarence Valley Council'),
(42555, 'https://ror.org/03024dz78', 'en', 1, 'https://ror.org/03024dz78 Vermont Space Grant Consortium'),
(42556, 'https://ror.org/0302gfc36', 'en', 1, 'https://ror.org/0302gfc36 Southern Crescent Technical College'),
(42557, 'https://ror.org/03038ad20', 'en', 1, 'https://ror.org/03038ad20 South Texas College'),
(42558, 'https://ror.org/0303pm905', 'en', 1, 'https://ror.org/0303pm905 Santa Clara County Library District'),
(42559, 'https://ror.org/0305bn856', 'en', 1, 'https://ror.org/0305bn856 Changjiang Water Resources Commission é•æę±Ÿę°“åˆ©å§”å‘˜ä¼šę°“ę–‡å±€'),
(42560, 'https://ror.org/0305m4448', 'en', 1, 'https://ror.org/0305m4448 Diamond and Precious Metal Geology Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии алмаза Šø благороГных металлов Š”Šž Š ŠŠ'),
(42561, 'https://ror.org/0306bn619', 'en', 1, 'https://ror.org/0306bn619 South Downs College'),
(42562, 'https://ror.org/0306dg290', 'en', 1, 'https://ror.org/0306dg290 Nash Community College'),
(42563, 'https://ror.org/03080tp23', 'fr', 1, 'https://ror.org/03080tp23 Direction de la MƩtƩorologie Nationale'),
(42564, 'https://ror.org/0308cf074', 'no_lang_code', 1, 'https://ror.org/0308cf074 Cosmos Limited'),
(42565, 'https://ror.org/030ag6b74', 'en', 1, 'https://ror.org/030ag6b74 Meenakshi Medical College Hospital and Research Institute'),
(42566, 'https://ror.org/030bm8r25', 'pl', 1, 'https://ror.org/030bm8r25 Uczelnia Jańskiego w Łomży'),
(42567, 'https://ror.org/030bz9353', 'sl', 1, 'https://ror.org/030bz9353 Å olski Center Postojna'),
(42568, 'https://ror.org/030dhdf69', 'en', 1, 'https://ror.org/030dhdf69 Biotechnologie Institut Thurgau Biotechnology Institute Thurgau'),
(42569, 'https://ror.org/030dn1w49', 'en', 1, 'https://ror.org/030dn1w49 Hartlepool College of Further Education'),
(42570, 'https://ror.org/030hk6x09', 'en', 1, 'https://ror.org/030hk6x09 Institute of Cosmophysical Research and Radio Wave Propagation Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космофизических исслеГований Šø Ń€Š°ŃŠæŃ€Š¾ŃŃ‚Ń€Š°Š½ŠµŠ½ŠøŃ раГиоволн'),
(42571, 'https://ror.org/030jm0n16', 'fr', 1, 'https://ror.org/030jm0n16'),
(42572, 'https://ror.org/030ks9p42', 'en', 1, 'https://ror.org/030ks9p42 National Directorate of Geology'),
(42573, 'https://ror.org/030me6k41', 'es', 1, 'https://ror.org/030me6k41 Instituto Universitario General GutiƩrrez Mellado'),
(42574, 'https://ror.org/030ms0x66', 'es', 1, 'https://ror.org/030ms0x66 Hospital Universitario Dr JosƩ Eleuterio Gonzalez'),
(42575, 'https://ror.org/030n1xr75', 'pt', 1, 'https://ror.org/030n1xr75 Escola BƔsica Integrada da Horta'),
(42576, 'https://ror.org/030pa4076', 'en', 1, 'https://ror.org/030pa4076 Summit Pacific College'),
(42577, 'https://ror.org/030r69d22', 'no_lang_code', 1, 'https://ror.org/030r69d22 Duke Energy (United States)'),
(42578, 'https://ror.org/030rrcn92', 'no_lang_code', 1, 'https://ror.org/030rrcn92 TCG Lifesciences (India)'),
(42579, 'https://ror.org/030sdwr92', 'en', 1, 'https://ror.org/030sdwr92 Hochschule für Gestaltung Offenbach University of Art and Design Offenbach'),
(42580, 'https://ror.org/030y35h40', 'en', 1, 'https://ror.org/030y35h40 Bowel and Cancer Research'),
(42581, 'https://ror.org/030za3c40', 'fr', 1, 'https://ror.org/030za3c40 Laboratoire des SystĆØmes Perceptifs'),
(42582, 'https://ror.org/0310kd428', 'en', 1, 'https://ror.org/0310kd428 Pakistan Army پاک ŁŁˆŲ¬ā€Ž'),
(42583, 'https://ror.org/0311qq620', 'pt', 1, 'https://ror.org/0311qq620 Santa Casa da Misericórdia de Almeirim'),
(42584, 'https://ror.org/0311w8j32', 'en', 1, 'https://ror.org/0311w8j32 Guangxi Academy of Fishery Sciences 广脿氓产科学研究院'),
(42585, 'https://ror.org/0312t3r96', 'en', 1, 'https://ror.org/0312t3r96 Newbold College of Higher Education'),
(42586, 'https://ror.org/0312xab44', 'es', 1, 'https://ror.org/0312xab44 Servicio Canario de la Salud'),
(42587, 'https://ror.org/03134gf68', 'en', 1, 'https://ror.org/03134gf68 Image Processing Systems Institute ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систем обработки изображений'),
(42588, 'https://ror.org/0314ecq26', 'es', 1, 'https://ror.org/0314ecq26 Centro Nacional de Investigación y Desarrollo Tecnológico'),
(42589, 'https://ror.org/031603425', 'no_lang_code', 1, 'https://ror.org/031603425 Home Depot (United States)'),
(42590, 'https://ror.org/03163vt79', 'en', 1, 'https://ror.org/03163vt79 Moultrie Technical College'),
(42591, 'https://ror.org/03192vt15', 'en', 1, 'https://ror.org/03192vt15 Ataxia UK'),
(42592, 'https://ror.org/031a9h652', 'en', 1, 'https://ror.org/031a9h652 Kementerian Kebudayaan, Masyarakat dan Belia Ministry of Culture, Community and Youth ą®•ą®²ą®¾ą®šą®¾ą®°, ą®šą®®ąÆ‚ą®•, ą®‡ą®³ąÆˆą®Æą®°ąÆą®¤ąÆą®±ąÆˆ ą®…ą®®ąÆˆą®šąÆą®šąÆ ę–‡åŒ–ć€ē¤¾åŒŗåŠé’å¹“éƒØ'),
(42593, 'https://ror.org/031awfc58', 'en', 1, 'https://ror.org/031awfc58 Lake Victoria Fisheries Organization'),
(42594, 'https://ror.org/031cmny56', 'en', 1, 'https://ror.org/031cmny56 Ethiopian Agricultural Transformation Agency'),
(42595, 'https://ror.org/031dhd775', 'en', 1, 'https://ror.org/031dhd775 Utica School of Commerce'),
(42596, 'https://ror.org/031ew8w25', 'en', 1, 'https://ror.org/031ew8w25 Milwaukee Institute of Art & Design'),
(42597, 'https://ror.org/031gd3q51', 'it', 1, 'https://ror.org/031gd3q51 Conservatorio di Musica Giacomo Puccini'),
(42598, 'https://ror.org/031jzbb03', 'en', 1, 'https://ror.org/031jzbb03 Chinese People''s Armed Police Force Engineering University äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜Ÿå·„ēØ‹å¤§å­¦'),
(42599, 'https://ror.org/031m3kw45', 'en', 1, 'https://ror.org/031m3kw45 Alexander Graham Bell Association for the Deaf and Hard of Hearing'),
(42600, 'https://ror.org/031rnv444', 'no_lang_code', 1, 'https://ror.org/031rnv444 Goldman Sachs (United States)'),
(42601, 'https://ror.org/031ve8169', 'fr', 1, 'https://ror.org/031ve8169 Ɖcole de Formation Professionnelle des Barreaux de la Cour d''Appel de Paris'),
(42602, 'https://ror.org/031vfy029', 'fr', 1, 'https://ror.org/031vfy029 Centre de la MƩditerranƩe Moderne et Contemporaine'),
(42603, 'https://ror.org/031xz8a15', 'en', 1, 'https://ror.org/031xz8a15 West New York School District'),
(42604, 'https://ror.org/031ypdv26', 'en', 1, 'https://ror.org/031ypdv26 Intercollegiate Studies Institute'),
(42605, 'https://ror.org/031ypg304', 'en', 1, 'https://ror.org/031ypg304 International Space University'),
(42606, 'https://ror.org/0323nsw79', 'en', 1, 'https://ror.org/0323nsw79 Citizens for Justice'),
(42607, 'https://ror.org/03264me25', 'pt', 1, 'https://ror.org/03264me25 Associação de Municípios do Vale do Sousa'),
(42608, 'https://ror.org/0326gsy75', 'en', 1, 'https://ror.org/0326gsy75 County Administrative Board LƤnsstyrelsen Ɩstergƶtland'),
(42609, 'https://ror.org/0328b5c57', 'fr', 1, 'https://ror.org/0328b5c57 Laboratoire d''Ɖtudes et de Recherche sur les Dynamiques Sociales et le DĆ©veloppement Local'),
(42610, 'https://ror.org/0328trt29', 'pt', 1, 'https://ror.org/0328trt29 Faculdade SumarƩ'),
(42611, 'https://ror.org/032bw1116', 'en', 1, 'https://ror.org/032bw1116 Hunan Women''S University ę¹–å—å„³å­å­¦é™¢'),
(42612, 'https://ror.org/032c96a22', 'en', 1, 'https://ror.org/032c96a22 Turk Silahli Kuvvetlerini Guclendirme Vakfi Turkish Armed Forces Foundation'),
(42613, 'https://ror.org/032e4ps38', 'en', 1, 'https://ror.org/032e4ps38 Kathmandu College of Management'),
(42614, 'https://ror.org/032gm3e90', 'en', 1, 'https://ror.org/032gm3e90 Michigan State Housing Development Authority'),
(42615, 'https://ror.org/032j6ge54', 'en', 1, 'https://ror.org/032j6ge54 Recycled Materials Resource Center'),
(42616, 'https://ror.org/032k9nq85', 'no_lang_code', 1, 'https://ror.org/032k9nq85 Magbro Healthcare (India)'),
(42617, 'https://ror.org/032sa1p36', 'pt', 1, 'https://ror.org/032sa1p36 Serviço Social da Indústria de Santa Catarina'),
(42618, 'https://ror.org/032sm9x52', 'no_lang_code', 1, 'https://ror.org/032sm9x52 Osta Bio Technologies (Canada)'),
(42619, 'https://ror.org/032tek884', 'en', 1, 'https://ror.org/032tek884 Medical Letter'),
(42620, 'https://ror.org/032xgdx47', 'en', 1, 'https://ror.org/032xgdx47 Citigroup'),
(42621, 'https://ror.org/0331rkj73', 'en', 1, 'https://ror.org/0331rkj73 Republic of Korea Army ėŒ€ķ•œėÆ¼źµ­ 윔군'),
(42622, 'https://ror.org/0333mmt30', 'en', 1, 'https://ror.org/0333mmt30 Energy, Environment and Development Network for Africa'),
(42623, 'https://ror.org/0335kqk33', 'en', 1, 'https://ror.org/0335kqk33 Research Institute of Highway äŗ¤é€ščæč¾“éƒØå…¬č·Æē§‘å­¦ē ”ē©¶é™¢'),
(42624, 'https://ror.org/0335qtz31', 'en', 1, 'https://ror.org/0335qtz31 Instituto de Estudios Superiores de Tamaulipas Tamaulipas Institute of Higher Education'),
(42625, 'https://ror.org/0338hg181', 'pt', 1, 'https://ror.org/0338hg181 Confraria de Santa Luzia'),
(42626, 'https://ror.org/033a3s432', 'en', 1, 'https://ror.org/033a3s432 University of Occupational Safety Management in Katowice'),
(42627, 'https://ror.org/033becj92', 'en', 1, 'https://ror.org/033becj92 National Operating Committee on Standards for Athletic Equipment'),
(42628, 'https://ror.org/033c4qc49', 'en', 1, 'https://ror.org/033c4qc49 Niuvanniemi Hospital Nuvanniemen Sairala'),
(42629, 'https://ror.org/033ca2d23', 'en', 1, 'https://ror.org/033ca2d23 Institute of World Economics and Politics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢äø–ē•Œē»ęµŽäøŽę”æę²»ē ”ē©¶ę‰€'),
(42630, 'https://ror.org/033cbzv42', 'en', 1, 'https://ror.org/033cbzv42 Institute of Plasma Physics 中国科学院等离子体物理研究所'),
(42631, 'https://ror.org/033d2fn04', 'en', 1, 'https://ror.org/033d2fn04 Korean Society of Speech Sciences'),
(42632, 'https://ror.org/033d3q980', 'fr', 1, 'https://ror.org/033d3q980 Eurostat, Eurostat – Statistiques europĆ©ennes Statistische Amt der EuropƤischen Union'),
(42633, 'https://ror.org/033d6zz21', 'en', 1, 'https://ror.org/033d6zz21 McCormick Theological Seminary'),
(42634, 'https://ror.org/033e57h61', 'en', 1, 'https://ror.org/033e57h61 Manhattan School of Music'),
(42635, 'https://ror.org/033hftr56', 'pl', 1, 'https://ror.org/033hftr56 Wyższa Szkoła Zdrowia Urody i Edukacji'),
(42636, 'https://ror.org/033jaw121', 'en', 1, 'https://ror.org/033jaw121 College of Intensive Care Medicine'),
(42637, 'https://ror.org/033jd5r25', 'de', 1, 'https://ror.org/033jd5r25 Technische Hochschule Georg Agricola'),
(42638, 'https://ror.org/033n2z030', 'it', 1, 'https://ror.org/033n2z030 Conservatorio di Musica Niccolò Paganini'),
(42639, 'https://ror.org/033nebn40', 'en', 1, 'https://ror.org/033nebn40 Lenape Regional High School District'),
(42640, 'https://ror.org/033r52n02', 'en', 1, 'https://ror.org/033r52n02 Pennsylvania Sea Grant'),
(42641, 'https://ror.org/033sn5p83', 'en', 1, 'https://ror.org/033sn5p83 Gates Cambridge Trust'),
(42642, 'https://ror.org/033sxkx41', 'en', 1, 'https://ror.org/033sxkx41 Office of the Civil Service Commission ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø„ąø“ąø°ąøąø£ąø£ąø”ąøąø²ąø£ąø‚ą¹‰ąø²ąø£ąø²ąøŠąøąø²ąø£ąøžąø„ą¹€ąø£ąø·ąø­ąø™'),
(42643, 'https://ror.org/033wswd35', 'en', 1, 'https://ror.org/033wswd35 Conservatoire royal de Bruxelles Royal Conservatory of Brussels'),
(42644, 'https://ror.org/033zy4a51', 'en', 1, 'https://ror.org/033zy4a51 Center for Enabling New Technologies Through Catalysis'),
(42645, 'https://ror.org/0340xvs51', 'en', 1, 'https://ror.org/0340xvs51 China National Administration of Coal Geology'),
(42646, 'https://ror.org/0341wf912', 'en', 1, 'https://ror.org/0341wf912 Safari Club International'),
(42647, 'https://ror.org/0343ncx27', 'en', 1, 'https://ror.org/0343ncx27 Scottish School of Christian Mission'),
(42648, 'https://ror.org/0344x6030', 'en', 1, 'https://ror.org/0344x6030 Institute of Experimental Medicine Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины'),
(42649, 'https://ror.org/03455j977', 'en', 1, 'https://ror.org/03455j977 Fraser Institute'),
(42650, 'https://ror.org/0347pb070', 'ro', 1, 'https://ror.org/0347pb070 Camera de Comerț Industrie și Agricultură Timișoara'),
(42651, 'https://ror.org/0348r9089', 'no_lang_code', 1, 'https://ror.org/0348r9089 Beginning (Bangladesh)'),
(42652, 'https://ror.org/034bqzm84', 'no_lang_code', 1, 'https://ror.org/034bqzm84 Adecco (Switzerland)'),
(42653, 'https://ror.org/034e1cb35', 'en', 1, 'https://ror.org/034e1cb35 Information-Technology Promotion Agency ē‹¬ē«‹č”Œę”æę³•äŗŗęƒ…å ±å‡¦ē†ęŽØé€²ę©Ÿę§‹'),
(42654, 'https://ror.org/034e5n787', 'no_lang_code', 1, 'https://ror.org/034e5n787 Volkswagen Group (United States)'),
(42655, 'https://ror.org/034fab991', 'en', 1, 'https://ror.org/034fab991 Eastern West Virginia Community and Technical College'),
(42656, 'https://ror.org/034ffw198', 'no_lang_code', 1, 'https://ror.org/034ffw198 Rayat Shikshan Sanstha'),
(42657, 'https://ror.org/034kb7s93', 'no_lang_code', 1, 'https://ror.org/034kb7s93 Tasly Holding Group (China)'),
(42658, 'https://ror.org/034n3k032', 'no_lang_code', 1, 'https://ror.org/034n3k032 Pikitup'),
(42659, 'https://ror.org/034n9j029', 'en', 1, 'https://ror.org/034n9j029 National Blood Service Zimbabwe'),
(42660, 'https://ror.org/034pbde03', 'en', 1, 'https://ror.org/034pbde03 Maharaja Engineering College'),
(42661, 'https://ror.org/034qvhk73', 'en', 1, 'https://ror.org/034qvhk73 Social Integration State Agency Sociālās Integrācijas Valsts Aģentūrā'),
(42662, 'https://ror.org/034rwyq63', 'en', 1, 'https://ror.org/034rwyq63 GSL Medical College & General Hospital'),
(42663, 'https://ror.org/034sd6c34', 'en', 1, 'https://ror.org/034sd6c34 Development Aid from People to People in Zambia'),
(42664, 'https://ror.org/034vwwk41', 'fr', 1, 'https://ror.org/034vwwk41 Goma Volcanological Observatory Observatoire Volcanologique de Goma'),
(42665, 'https://ror.org/034xvnf25', 'en', 1, 'https://ror.org/034xvnf25 Eisenhower Fellowships'),
(42666, 'https://ror.org/034y4c446', 'no_lang_code', 1, 'https://ror.org/034y4c446 Epistar (Taiwan)'),
(42667, 'https://ror.org/034yr0a74', 'no_lang_code', 1, 'https://ror.org/034yr0a74 Royal Caribbean Cruises (United States)'),
(42668, 'https://ror.org/03508em42', 'no_lang_code', 1, 'https://ror.org/03508em42 Graftys (France)'),
(42669, 'https://ror.org/0351a1c74', 'pt', 1, 'https://ror.org/0351a1c74 Faculdade Novos Horizontes'),
(42670, 'https://ror.org/0352adn16', 'en', 1, 'https://ror.org/0352adn16 American College of Dubai'),
(42671, 'https://ror.org/0352dma55', 'en', 1, 'https://ror.org/0352dma55 West Kentucky Community and Technical College'),
(42672, 'https://ror.org/03538jp08', 'no_lang_code', 1, 'https://ror.org/03538jp08 AbbVie (Germany)'),
(42673, 'https://ror.org/0354a0368', 'en', 1, 'https://ror.org/0354a0368 Sahelian Solutions Foundation'),
(42674, 'https://ror.org/0354r6c10', 'en', 1, 'https://ror.org/0354r6c10 Oil Crops Research Institute äø­å›½å†œäøšē§‘å­¦é™¢ę²¹ę–™ä½œē‰©ē ”ē©¶ę‰€'),
(42675, 'https://ror.org/0354taf69', 'en', 1, 'https://ror.org/0354taf69 West African College of Physicians'),
(42676, 'https://ror.org/03561p598', 'en', 1, 'https://ror.org/03561p598 Institute of Bio-Resources and Sustainable Development'),
(42677, 'https://ror.org/035ccrh61', 'en', 1, 'https://ror.org/035ccrh61 Midwestern Baptist Theological Seminary'),
(42678, 'https://ror.org/035ckv436', 'hr', 1, 'https://ror.org/035ckv436 Fakultet za Mediteranske Poslovne Studije'),
(42679, 'https://ror.org/035dn9148', 'en', 1, 'https://ror.org/035dn9148 Baltic Methodist Theological Seminary'),
(42680, 'https://ror.org/035dqf024', 'en', 1, 'https://ror.org/035dqf024 Agence Nationale pour la MaƮtrise de l''Energie National Agency for Energy Management'),
(42681, 'https://ror.org/035dsh769', 'en', 1, 'https://ror.org/035dsh769 Government of Gujarat'),
(42682, 'https://ror.org/035e9j894', 'en', 1, 'https://ror.org/035e9j894 Teaching Learning & Research Initiative'),
(42683, 'https://ror.org/035fpgr29', 'en', 1, 'https://ror.org/035fpgr29 Mission College'),
(42684, 'https://ror.org/035fw1666', 'en', 1, 'https://ror.org/035fw1666 Good Shepherd College'),
(42685, 'https://ror.org/035ghve61', 'hr', 1, 'https://ror.org/035ghve61 VeleučiliŔte Velika Gorica'),
(42686, 'https://ror.org/035h1xx45', 'en', 1, 'https://ror.org/035h1xx45 Yeshiva Ohr Elchonon Chabad West Coast Talmudical Seminary'),
(42687, 'https://ror.org/035jc1316', 'de', 1, 'https://ror.org/035jc1316 Hessische Hochschule für Finanzen und Rechtspflege'),
(42688, 'https://ror.org/035khbv71', 'en', 1, 'https://ror.org/035khbv71 Houston Graduate School of Theology'),
(42689, 'https://ror.org/035rr9c26', 'en', 1, 'https://ror.org/035rr9c26 Institute of Developmental Physiology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ возрастной физиологии'),
(42690, 'https://ror.org/035sbxw24', 'no_lang_code', 1, 'https://ror.org/035sbxw24 21st Century Technologies (United States)'),
(42691, 'https://ror.org/035xrsk97', 'fr', 1, 'https://ror.org/035xrsk97 Institut RĆ©gional d’Administration de Lille'),
(42692, 'https://ror.org/035y1ap70', 'en', 1, 'https://ror.org/035y1ap70 Institute of Biology of Karelian Research Centre Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии ŠšŠ°Ń€ŠŠ¦ Š ŠŠ'),
(42693, 'https://ror.org/035y1v638', 'en', 1, 'https://ror.org/035y1v638 Baobab Health Trust'),
(42694, 'https://ror.org/035zbbv42', 'en', 1, 'https://ror.org/035zbbv42 First Affiliated Hospital of Henan University of Science and Technology'),
(42695, 'https://ror.org/0360y2h46', 'no_lang_code', 1, 'https://ror.org/0360y2h46 Illovo Sugar (South Africa)'),
(42696, 'https://ror.org/03629ds51', 'no_lang_code', 1, 'https://ror.org/03629ds51 Springer Publishing Company (United States)'),
(42697, 'https://ror.org/0362ttz08', 'en', 1, 'https://ror.org/0362ttz08 Center for Economic Research and Graduate Education – Economics Institute'),
(42698, 'https://ror.org/0362x2g28', 'en', 1, 'https://ror.org/0362x2g28 Forestry Research Institute of Karelian Research Centre Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ леса ŠšŠ°Ń€ŠŠ¦'),
(42699, 'https://ror.org/03660jk02', 'en', 1, 'https://ror.org/03660jk02 The Master''s Seminary'),
(42700, 'https://ror.org/0366v8040', 'en', 1, 'https://ror.org/0366v8040 Central Soil Salinity Research Institute'),
(42701, 'https://ror.org/03672y868', 'en', 1, 'https://ror.org/03672y868 Ministry for Foreign Affairs of Iceland UtanrƭkisrƔưuneytiư'),
(42702, 'https://ror.org/0367m1n91', 'de', 1, 'https://ror.org/0367m1n91 Hochschule Weserbergland'),
(42703, 'https://ror.org/0367pw924', 'en', 1, 'https://ror.org/0367pw924 Lincoln College'),
(42704, 'https://ror.org/036b4vb45', 'en', 1, 'https://ror.org/036b4vb45 Hong Kong Academy of Medicine'),
(42705, 'https://ror.org/036bh3761', 'no_lang_code', 1, 'https://ror.org/036bh3761 Sonae (Portugal)'),
(42706, 'https://ror.org/036czv220', 'no_lang_code', 1, 'https://ror.org/036czv220 Microchem (South Africa)'),
(42707, 'https://ror.org/036ddx961', 'no_lang_code', 1, 'https://ror.org/036ddx961 ELITech Group (France)'),
(42708, 'https://ror.org/036dqy506', 'no_lang_code', 1, 'https://ror.org/036dqy506 NuVasive (United States)'),
(42709, 'https://ror.org/036e9v691', 'en', 1, 'https://ror.org/036e9v691 National Institution for Transforming India Aayog ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ भारत ą¤Ŗą¤°ą¤æą¤µą¤°ą„ą¤¤ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(42710, 'https://ror.org/036f7qt17', 'de', 1, 'https://ror.org/036f7qt17 Fliedner Fachhochschule Düsseldorf University of Applied Sciences Fliedner Fachhochschule'),
(42711, 'https://ror.org/036g8gs02', 'en', 1, 'https://ror.org/036g8gs02 Pearl River Hydraulic Research Institute ē ę±Ÿę°“åˆ©å§”å‘˜ä¼šē ę±Ÿę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(42712, 'https://ror.org/036jj0x14', 'en', 1, 'https://ror.org/036jj0x14 Apiculture Science Institute of Jinlin province å‰ęž—ēœå…»čœ‚ē§‘å­¦ē ”ē©¶ę‰€'),
(42713, 'https://ror.org/036kj7q93', 'it', 1, 'https://ror.org/036kj7q93 Fondazione Lanza'),
(42714, 'https://ror.org/036m22d48', 'en', 1, 'https://ror.org/036m22d48 Shandong Marine Resource and Environment Research Institute å±±äøœēœęµ·ę“‹čµ„ęŗäøŽēŽÆå¢ƒē ”ē©¶é™¢'),
(42715, 'https://ror.org/036nj8c41', 'en', 1, 'https://ror.org/036nj8c41 Healthcare in Sweden'),
(42716, 'https://ror.org/036s7bw54', 'no_lang_code', 1, 'https://ror.org/036s7bw54 Cognizant (United States)'),
(42717, 'https://ror.org/036vyg793', 'en', 1, 'https://ror.org/036vyg793 Korea Creative Content Agency'),
(42718, 'https://ror.org/036y2y849', 'en', 1, 'https://ror.org/036y2y849 DellArte International School of Physical Theatre'),
(42719, 'https://ror.org/036zvka13', 'en', 1, 'https://ror.org/036zvka13 Riga Technical College Rigas Tehniska Koledza'),
(42720, 'https://ror.org/0370acc92', 'en', 1, 'https://ror.org/0370acc92 Fidmag Germanes HospitalĆ ries Fidmag Hermanas Hospitalarias Fidmag Sisters Hospitallers'),
(42721, 'https://ror.org/0370tyv92', 'no_lang_code', 1, 'https://ror.org/0370tyv92 Hardik Fintrade (India)'),
(42722, 'https://ror.org/0371xpz28', 'en', 1, 'https://ror.org/0371xpz28 Trinity Theological College'),
(42723, 'https://ror.org/03728bb41', 'en', 1, 'https://ror.org/03728bb41 Direction GĆ©nĆ©rale de l’interprĆ©tation Directorate-General for Interpretation Generaldirektion Dolmetschen'),
(42724, 'https://ror.org/0373m1z21', 'no_lang_code', 1, 'https://ror.org/0373m1z21 IIDC (India)'),
(42725, 'https://ror.org/0374drm04', 'it', 1, 'https://ror.org/0374drm04 Accademia di Belle Arti dell''Aquila'),
(42726, 'https://ror.org/0374spr83', 'en', 1, 'https://ror.org/0374spr83 Unit for Research and Development of Information Products'),
(42727, 'https://ror.org/03777v328', 'en', 1, 'https://ror.org/03777v328 African Center of Meteorological Application for Development'),
(42728, 'https://ror.org/0377f1g25', 'es', 1, 'https://ror.org/0377f1g25 Instituto Tecnológico de Tepic'),
(42729, 'https://ror.org/0379sy433', 'en', 1, 'https://ror.org/0379sy433 Energy Research Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований Российской акаГемии наук'),
(42730, 'https://ror.org/037fek297', 'en', 1, 'https://ror.org/037fek297 Illinois Department of Children and Family Services'),
(42731, 'https://ror.org/037gnvs23', 'en', 1, 'https://ror.org/037gnvs23 English Speaking Union'),
(42732, 'https://ror.org/037gpje79', 'en', 1, 'https://ror.org/037gpje79 Colleges of Medicine of South Africa'),
(42733, 'https://ror.org/037m1gz55', 'en', 1, 'https://ror.org/037m1gz55 Icelandic International Development Agency Próunarsamvinnustofnun ƍslands'),
(42734, 'https://ror.org/037mk9523', 'fr', 1, 'https://ror.org/037mk9523 Ɖcole SupĆ©rieure d''IngĆ©nieurs des Travaux de la Construction de Cachan'),
(42735, 'https://ror.org/037mwns69', 'en', 1, 'https://ror.org/037mwns69 Centre for Operations Research and Training'),
(42736, 'https://ror.org/037n46f49', 'en', 1, 'https://ror.org/037n46f49 Royal College of Pathologists'),
(42737, 'https://ror.org/037pjhv41', 'en', 1, 'https://ror.org/037pjhv41 Craven College'),
(42738, 'https://ror.org/037qtfe97', 'en', 1, 'https://ror.org/037qtfe97 Department of Arts and Culture'),
(42739, 'https://ror.org/037r2ff59', 'no_lang_code', 1, 'https://ror.org/037r2ff59 Wells Fargo (United States)'),
(42740, 'https://ror.org/037r51j35', 'en', 1, 'https://ror.org/037r51j35 Blue Ridge Community and Technical College'),
(42741, 'https://ror.org/037rveh76', 'en', 1, 'https://ror.org/037rveh76 Bangladesh College of Physicians and Surgeons'),
(42742, 'https://ror.org/037s01565', 'da', 1, 'https://ror.org/037s01565 Scleroseforeningen'),
(42743, 'https://ror.org/037saaz25', 'en', 1, 'https://ror.org/037saaz25 Hibbing Community College'),
(42744, 'https://ror.org/037tapg39', 'en', 1, 'https://ror.org/037tapg39 Kingston College'),
(42745, 'https://ror.org/037tw3m02', 'en', 1, 'https://ror.org/037tw3m02 Montpellier Business School Ɖcole SupĆ©rieure de Commerce de Montpellier'),
(42746, 'https://ror.org/037w3ea30', 'no_lang_code', 1, 'https://ror.org/037w3ea30 WSO2 (Sri Lanka)'),
(42747, 'https://ror.org/037ydwx27', 'en', 1, 'https://ror.org/037ydwx27 Urshan Graduate School of Theology'),
(42748, 'https://ror.org/037yxaz30', 'en', 1, 'https://ror.org/037yxaz30 South Central College'),
(42749, 'https://ror.org/037yznf56', 'en', 1, 'https://ror.org/037yznf56 Kementerian Sumber Asli dan Alam Sekitar Ministry of Natural Resources and Environment'),
(42750, 'https://ror.org/037zdfv74', 'en', 1, 'https://ror.org/037zdfv74 Lyceum College'),
(42751, 'https://ror.org/0380sxs47', 'en', 1, 'https://ror.org/0380sxs47 African Union of Public Transport'),
(42752, 'https://ror.org/038339q73', 'en', 1, 'https://ror.org/038339q73 Krishak Bharati Cooperative'),
(42753, 'https://ror.org/03836vq90', 'en', 1, 'https://ror.org/03836vq90 International Tropical Timber Organization'),
(42754, 'https://ror.org/0384x6e13', 'no_lang_code', 1, 'https://ror.org/0384x6e13 Hetero Drugs (India)'),
(42755, 'https://ror.org/0385qa794', 'en', 1, 'https://ror.org/0385qa794 European Council of International Schools'),
(42756, 'https://ror.org/038716291', 'fr', 1, 'https://ror.org/038716291 Institut d''Urbanisme et d''AmƩnagement RƩgional'),
(42757, 'https://ror.org/0387e6h74', 'no_lang_code', 1, 'https://ror.org/0387e6h74 Return on Intelligence (Latvia)'),
(42758, 'https://ror.org/0387j8q89', 'pt', 1, 'https://ror.org/0387j8q89 Grupo Hospitalar Conceição'),
(42759, 'https://ror.org/038d9tx28', 'no_lang_code', 1, 'https://ror.org/038d9tx28 Nile Valley Engineering (Egypt)'),
(42760, 'https://ror.org/038e03x62', 'en', 1, 'https://ror.org/038e03x62 Supreme Prosecutors Office of the Republic of Korea 검찰청'),
(42761, 'https://ror.org/038e20a83', 'en', 1, 'https://ror.org/038e20a83 Agro-Environmental Protection Institute å†œäøšéƒØēŽÆå¢ƒäæęŠ¤ē§‘ē ”ē›‘ęµ‹ę‰€'),
(42762, 'https://ror.org/038ejm451', 'en', 1, 'https://ror.org/038ejm451 World Federation for Mental Health'),
(42763, 'https://ror.org/038fwdn76', 'en', 1, 'https://ror.org/038fwdn76 Hochschule für Angewandtes Management University of Applied Management'),
(42764, 'https://ror.org/038gsqt29', 'hr', 1, 'https://ror.org/038gsqt29 Visoka Å kola za Informacijske Tehnologije Zagreb'),
(42765, 'https://ror.org/038m0zy23', 'no_lang_code', 1, 'https://ror.org/038m0zy23 Guavus (India)'),
(42766, 'https://ror.org/038nxyh73', 'en', 1, 'https://ror.org/038nxyh73 Great Lakes Institute of Management'),
(42767, 'https://ror.org/038pzr527', 'en', 1, 'https://ror.org/038pzr527 Early Learning Coalition of Miami Dade Monroe'),
(42768, 'https://ror.org/038qjap85', 'en', 1, 'https://ror.org/038qjap85 Gambling Awareness Nova Scotia'),
(42769, 'https://ror.org/038rpb237', 'en', 1, 'https://ror.org/038rpb237 Directorate of Groundnut Research ą¤®ą„‚ą¤ą¤—ą¤«ą¤²ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(42770, 'https://ror.org/038svqn12', 'pl', 1, 'https://ror.org/038svqn12 Wyższa Szkoła Zarządzania i Przedsiębiorczości'),
(42771, 'https://ror.org/038ta1n82', 'en', 1, 'https://ror.org/038ta1n82 South Essex College'),
(42772, 'https://ror.org/038tkyd35', 'sw', 1, 'https://ror.org/038tkyd35 Chama Cha Uzazi na Malezi Bora Tanzania'),
(42773, 'https://ror.org/038vv7y77', 'no_lang_code', 1, 'https://ror.org/038vv7y77 SiaMed’Xpress (France)'),
(42774, 'https://ror.org/038xyrg49', 'no_lang_code', 1, 'https://ror.org/038xyrg49 Africagrowth Institute (South Africa)'),
(42775, 'https://ror.org/038z1c623', 'en', 1, 'https://ror.org/038z1c623 Pikes Peak Community College'),
(42776, 'https://ror.org/039594g80', 'en', 1, 'https://ror.org/039594g80 School of Advanced Study'),
(42777, 'https://ror.org/0395sep02', 'fr', 1, 'https://ror.org/0395sep02 LycƩe Louis-le-Grand'),
(42778, 'https://ror.org/0397v9r66', 'en', 1, 'https://ror.org/0397v9r66 University of Economics and Management VysokÔ Ŕkola ekonomie a managementu'),
(42779, 'https://ror.org/039828v86', 'en', 1, 'https://ror.org/039828v86 Guizhou Academy of Environmental Science and Design č“µå·žēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶č®¾č®”é™¢'),
(42780, 'https://ror.org/0398xv274', 'en', 1, 'https://ror.org/0398xv274 Daeshin University ėŒ€ģ‹ ėŒ€ķ•™źµ'),
(42781, 'https://ror.org/039exzx30', 'en', 1, 'https://ror.org/039exzx30 New Mexico Legislature'),
(42782, 'https://ror.org/039h3aa75', 'en', 1, 'https://ror.org/039h3aa75 ASA College'),
(42783, 'https://ror.org/039k65f65', 'en', 1, 'https://ror.org/039k65f65 Korea Legislation Research Institute ķ•œźµ­ė²•ģ œģ—°źµ¬ģ›'),
(42784, 'https://ror.org/039mh4d88', 'en', 1, 'https://ror.org/039mh4d88 Madisonville Community College'),
(42785, 'https://ror.org/039r0r789', 'en', 1, 'https://ror.org/039r0r789 Government Dental College and Hospital'),
(42786, 'https://ror.org/039w3f025', 'no_lang_code', 1, 'https://ror.org/039w3f025 McDermott International (United States)'),
(42787, 'https://ror.org/039wntw43', 'no_lang_code', 1, 'https://ror.org/039wntw43 Remidio Innovative Solutions (India)'),
(42788, 'https://ror.org/039x3s865', 'no_lang_code', 1, 'https://ror.org/039x3s865 B. Braun (United States)'),
(42789, 'https://ror.org/039yyjw43', 'en', 1, 'https://ror.org/039yyjw43 Royal Anthropological Institute'),
(42790, 'https://ror.org/03a0gk952', 'pt', 1, 'https://ror.org/03a0gk952 Escola Superior Aberta do Brasil'),
(42791, 'https://ror.org/03a11m818', 'en', 1, 'https://ror.org/03a11m818 Islamic Azad University Central Tehran Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران Ł…Ų±Ś©Ų²ŪŒ'),
(42792, 'https://ror.org/03a300k41', 'en', 1, 'https://ror.org/03a300k41 Civitan International'),
(42793, 'https://ror.org/03a39dd69', 'en', 1, 'https://ror.org/03a39dd69 De La Salle University – DasmariƱas'),
(42794, 'https://ror.org/03a4nen96', 'no_lang_code', 1, 'https://ror.org/03a4nen96 New York Life Insurance Company (United States)'),
(42795, 'https://ror.org/03a74kx83', 'en', 1, 'https://ror.org/03a74kx83 Research Institute of National Schools of the Republic of Sakha ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… школ Республики Даха'),
(42796, 'https://ror.org/03a7v0208', 'en', 1, 'https://ror.org/03a7v0208 Southern Virginia University'),
(42797, 'https://ror.org/03a942552', 'no_lang_code', 1, 'https://ror.org/03a942552 Adaptix (United Kingdom)'),
(42798, 'https://ror.org/03a9t7g49', 'en', 1, 'https://ror.org/03a9t7g49 Jacksonville College'),
(42799, 'https://ror.org/03abjmr84', 'no_lang_code', 1, 'https://ror.org/03abjmr84 Rashtreeya Sikshana Samithi Trust'),
(42800, 'https://ror.org/03acf4h47', 'en', 1, 'https://ror.org/03acf4h47 Junior League of Des Moines'),
(42801, 'https://ror.org/03ad74s15', 'en', 1, 'https://ror.org/03ad74s15 Institute of Industrial Economics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å·„äøšē»ęµŽē ”ē©¶ę‰€'),
(42802, 'https://ror.org/03ae9x524', 'de', 1, 'https://ror.org/03ae9x524 Naturhistorisches Museum, Staatliches Naturhistorisches Museum'),
(42803, 'https://ror.org/03af0nw04', 'en', 1, 'https://ror.org/03af0nw04 Canadian Mental Health Association'),
(42804, 'https://ror.org/03af2ad05', 'en', 1, 'https://ror.org/03af2ad05 Institute of Mechanics and Engineering Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики Šø Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ ŠšŠ°Š·ŠŠ¦ Š ŠŠ'),
(42805, 'https://ror.org/03af57g89', 'it', 1, 'https://ror.org/03af57g89 Conservatorio di Verona Evaristo Felice Dall Abaco'),
(42806, 'https://ror.org/03af82z38', 'no_lang_code', 1, 'https://ror.org/03af82z38 LFB (France)'),
(42807, 'https://ror.org/03af8h728', 'en', 1, 'https://ror.org/03af8h728 Maharashtra State Board of Technical Education'),
(42808, 'https://ror.org/03afcx965', 'en', 1, 'https://ror.org/03afcx965 bbw Hochschule bbw University of Applied Sciences'),
(42809, 'https://ror.org/03afrdr97', 'en', 1, 'https://ror.org/03afrdr97 Mesalands Community College'),
(42810, 'https://ror.org/03agewr40', 'no_lang_code', 1, 'https://ror.org/03agewr40 Webster Bank (United States)'),
(42811, 'https://ror.org/03aky0p13', 'de', 1, 'https://ror.org/03aky0p13 Media Design University for Design and Computer Science Mediadesign Hochschule für Design und Informatik'),
(42812, 'https://ror.org/03anfvd83', 'en', 1, 'https://ror.org/03anfvd83 Western Theological Seminary'),
(42813, 'https://ror.org/03athrm05', 'en', 1, 'https://ror.org/03athrm05 University of Security and Economics Š’ŠøŃŃˆŠµ Училище по Š”ŠøŠ³ŃƒŃ€Š½Š¾ŃŃ‚ Šø Икономика'),
(42814, 'https://ror.org/03aw4b617', 'en', 1, 'https://ror.org/03aw4b617 Virginia Commission on Youth'),
(42815, 'https://ror.org/03awsbx38', 'en', 1, 'https://ror.org/03awsbx38 Thaddeus Stevens College of Technology'),
(42816, 'https://ror.org/03ax4bc53', 'en', 1, 'https://ror.org/03ax4bc53 Conservatorio di Musica "Lucio Campiani" Music Conservatory of Mantova'),
(42817, 'https://ror.org/03azwf096', 'fr', 1, 'https://ror.org/03azwf096 Ɖcole d''Enseignement SupĆ©rieur d''Art de Bordeaux'),
(42818, 'https://ror.org/03b0h6662', 'no_lang_code', 1, 'https://ror.org/03b0h6662 TAMI Industries (France) Technologie AvancƩe et Membranes Industrielles'),
(42819, 'https://ror.org/03b1zjt31', 'en', 1, 'https://ror.org/03b1zjt31 National Engineering School of Tunis Ɖcole Nationale d''IngĆ©nieurs de Tunis المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† ŲØŲŖŁˆŁ†Ų³'),
(42820, 'https://ror.org/03b325x62', 'en', 1, 'https://ror.org/03b325x62 Pope St. John XXIII National Seminary'),
(42821, 'https://ror.org/03b49d241', 'en', 1, 'https://ror.org/03b49d241 Islamic Azad University Shabestar دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“ŲØŲ³ŲŖŲ± صفحه Ų§ŲµŁ„ŪŒ'),
(42822, 'https://ror.org/03b6pnq25', 'no_lang_code', 1, 'https://ror.org/03b6pnq25 Tata Chemicals (India)'),
(42823, 'https://ror.org/03b7h0n98', 'en', 1, 'https://ror.org/03b7h0n98 Panola College'),
(42824, 'https://ror.org/03ba15j53', 'fr', 1, 'https://ror.org/03ba15j53 Ɖcole de Recherche Graphique'),
(42825, 'https://ror.org/03bavdz78', 'de', 1, 'https://ror.org/03bavdz78 Hochschule für Musik Freiburg'),
(42826, 'https://ror.org/03bbh2s13', 'en', 1, 'https://ror.org/03bbh2s13 Northumberland County Council'),
(42827, 'https://ror.org/03be58a36', 'en', 1, 'https://ror.org/03be58a36 Southern Arkansas University Tech'),
(42828, 'https://ror.org/03bfyaa19', 'no_lang_code', 1, 'https://ror.org/03bfyaa19 Goodyear (United States)'),
(42829, 'https://ror.org/03bgts378', 'en', 1, 'https://ror.org/03bgts378 Board of Audit and Inspection 감사원'),
(42830, 'https://ror.org/03bhckb42', 'no_lang_code', 1, 'https://ror.org/03bhckb42 Primity Bio (United States)'),
(42831, 'https://ror.org/03bhwa869', 'en', 1, 'https://ror.org/03bhwa869 Freehold Regional High School District'),
(42832, 'https://ror.org/03bjaz271', 'en', 1, 'https://ror.org/03bjaz271 International Polar Foundation'),
(42833, 'https://ror.org/03bjn0010', 'en', 1, 'https://ror.org/03bjn0010 National Research Council'),
(42834, 'https://ror.org/03bkgak51', 'en', 1, 'https://ror.org/03bkgak51 Christ the King Sixth Form College'),
(42835, 'https://ror.org/03bmbn692', 'en', 1, 'https://ror.org/03bmbn692 Allentown High School'),
(42836, 'https://ror.org/03bnxc149', 'en', 1, 'https://ror.org/03bnxc149 Five Towns College'),
(42837, 'https://ror.org/03bq96v15', 'no_lang_code', 1, 'https://ror.org/03bq96v15 Sphaera Pharma (India)'),
(42838, 'https://ror.org/03bqbw279', 'en', 1, 'https://ror.org/03bqbw279 Lexington Theological Seminary'),
(42839, 'https://ror.org/03bqw6m62', 'en', 1, 'https://ror.org/03bqw6m62 National Theatre D. Maria II Teatro Nacional D. Maria II'),
(42840, 'https://ror.org/03brhac83', 'fr', 1, 'https://ror.org/03brhac83 Fondation Internet Nouvelle GƩnƩration'),
(42841, 'https://ror.org/03bs3bh63', 'no_lang_code', 1, 'https://ror.org/03bs3bh63 Actualis (France)'),
(42842, 'https://ror.org/03bt9y476', 'en', 1, 'https://ror.org/03bt9y476 South African Democratic Teachers Union'),
(42843, 'https://ror.org/03bthq143', 'en', 1, 'https://ror.org/03bthq143 Fachhochschule Westküste West Coast University of Applied Sciences'),
(42844, 'https://ror.org/03bx9gv58', 'no_lang_code', 1, 'https://ror.org/03bx9gv58 BA SystĆØmes (France)'),
(42845, 'https://ror.org/03bxybp61', 'en', 1, 'https://ror.org/03bxybp61 Competence Centre for Materials Science and Technology'),
(42846, 'https://ror.org/03bybmz71', 'en', 1, 'https://ror.org/03bybmz71 AIB College of Business'),
(42847, 'https://ror.org/03bytya42', 'en', 1, 'https://ror.org/03bytya42 Pasukan Polis Singapura Singapore Police Force ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®•ą®¾ą®µą®²ąÆ துறை ę–°åŠ å”č­¦åÆŸéƒØé˜Ÿ'),
(42848, 'https://ror.org/03bzbv419', 'en', 1, 'https://ror.org/03bzbv419 Anhui Institute of Optics and Fine Mechanics äø­å›½ē§‘å­¦é™¢å®‰å¾½å…‰å­¦ē²¾åÆ†ęœŗę¢°ē ”ē©¶ę‰€'),
(42849, 'https://ror.org/03c0kv729', 'nl', 1, 'https://ror.org/03c0kv729 GGZ Friesland'),
(42850, 'https://ror.org/03c174j31', 'en', 1, 'https://ror.org/03c174j31 Michigan School of Professional Psychology'),
(42851, 'https://ror.org/03c2stx68', 'en', 1, 'https://ror.org/03c2stx68 American Career College'),
(42852, 'https://ror.org/03c3ct763', 'pt', 1, 'https://ror.org/03c3ct763 Faculdades Integradas de Taquara'),
(42853, 'https://ror.org/03c6tcr26', 'no_lang_code', 1, 'https://ror.org/03c6tcr26 Graphtech (Tunisia)'),
(42854, 'https://ror.org/03c89jq84', 'en', 1, 'https://ror.org/03c89jq84 African Network Information Center'),
(42855, 'https://ror.org/03c94bc04', 'en', 1, 'https://ror.org/03c94bc04 Bakulev Scientific Center for Cardiovascular Surgery Russian Academy of Medical Sciences ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр серГечно-ŃŠ¾ŃŃƒŠ“ŠøŃŃ‚Š¾Š¹ Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø им. А.Š. Š‘Š°ŠŗŃƒŠ»ŠµŠ²Š°'),
(42856, 'https://ror.org/03c94t831', 'en', 1, 'https://ror.org/03c94t831 Zhejiang Meteorological Bureau ęµ™ę±Ÿēœę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(42857, 'https://ror.org/03c9c1383', 'en', 1, 'https://ror.org/03c9c1383 Montserrat College of Art'),
(42858, 'https://ror.org/03ca35056', 'en', 1, 'https://ror.org/03ca35056 Atlantic Philanthropies'),
(42859, 'https://ror.org/03cbgzw80', 'en', 1, 'https://ror.org/03cbgzw80 Central Institute for Cotton Research'),
(42860, 'https://ror.org/03cbzve16', 'en', 1, 'https://ror.org/03cbzve16 An Roinn Oideachais agus Scileanna Department of Education and Skills'),
(42861, 'https://ror.org/03ccevd14', 'en', 1, 'https://ror.org/03ccevd14 New York College of Traditional Chinese Medicine'),
(42862, 'https://ror.org/03cen2c33', 'pt', 1, 'https://ror.org/03cen2c33 Fundação de Amparo à Pesquisa do Espírito Santo'),
(42863, 'https://ror.org/03cg6qr34', 'en', 1, 'https://ror.org/03cg6qr34 Florida Department of Military Affairs'),
(42864, 'https://ror.org/03cg9wt32', 'en', 1, 'https://ror.org/03cg9wt32 China Research Institute for Science Popularization 中国科普研究所'),
(42865, 'https://ror.org/03cjaa329', 'en', 1, 'https://ror.org/03cjaa329 Migraine Trust'),
(42866, 'https://ror.org/03cjdzf13', 'en', 1, 'https://ror.org/03cjdzf13 Casa College'),
(42867, 'https://ror.org/03ck0h361', 'en', 1, 'https://ror.org/03ck0h361 Ministry of Education and Science ŌæÖ€Õ©ÕøÖ‚Õ©ÕµÕ”Õ¶ և Õ£Õ«ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ Õ¶Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(42868, 'https://ror.org/03cm6ap49', 'no_lang_code', 1, 'https://ror.org/03cm6ap49 Endo (Ireland)'),
(42869, 'https://ror.org/03cmq3458', 'de', 1, 'https://ror.org/03cmq3458 PƤdagogische Hochschule Viktor Frankl Hochschule, University College of Teacher Education Carinthia'),
(42870, 'https://ror.org/03cp14g09', 'no_lang_code', 1, 'https://ror.org/03cp14g09 QuikTrip (United States)'),
(42871, 'https://ror.org/03cps2823', 'pl', 1, 'https://ror.org/03cps2823 Wielkopolska Wyższa Szkoła Społeczno-Ekonomiczna'),
(42872, 'https://ror.org/03cqmba17', 'pt', 1, 'https://ror.org/03cqmba17 Instituto Nacional de CiĆŖncia e Tecnologia de NeurociĆŖncia Translacional'),
(42873, 'https://ror.org/03cqnhx95', 'en', 1, 'https://ror.org/03cqnhx95 St. John''s College of Nursing'),
(42874, 'https://ror.org/03cqs4n40', 'en', 1, 'https://ror.org/03cqs4n40 Organisation mondiale du commerce Organización Mundial del Comercio Organizzazione mondiale del commercio Welthandelsorganisation World Trade Organization'),
(42875, 'https://ror.org/03ctxn313', 'en', 1, 'https://ror.org/03ctxn313 Federal HIV/AIDS Prevention and Control Office'),
(42876, 'https://ror.org/03cv3dj55', 'en', 1, 'https://ror.org/03cv3dj55 Williams Baptist College'),
(42877, 'https://ror.org/03cv6f983', 'en', 1, 'https://ror.org/03cv6f983 Texas A&M University School of Law'),
(42878, 'https://ror.org/03cy6xx05', 'en', 1, 'https://ror.org/03cy6xx05 Cancer League of Colorado'),
(42879, 'https://ror.org/03czns913', 'fr', 1, 'https://ror.org/03czns913 Laboratoire d''Optique AppliquƩe'),
(42880, 'https://ror.org/03d0ft388', 'de', 1, 'https://ror.org/03d0ft388 Bank für Tirol und Vorarlberg'),
(42881, 'https://ror.org/03d2te836', 'en', 1, 'https://ror.org/03d2te836 Texas Education Agency'),
(42882, 'https://ror.org/03d2tka35', 'no_lang_code', 1, 'https://ror.org/03d2tka35 TransUnion (United States)'),
(42883, 'https://ror.org/03d4eey82', 'en', 1, 'https://ror.org/03d4eey82 South Louisiana Community College'),
(42884, 'https://ror.org/03d61qr92', 'en', 1, 'https://ror.org/03d61qr92 South Arkansas Community College'),
(42885, 'https://ror.org/03d8erd68', 'en', 1, 'https://ror.org/03d8erd68 South Tyneside College'),
(42886, 'https://ror.org/03d8jhc95', 'no_lang_code', 1, 'https://ror.org/03d8jhc95 Steelcase (United States)'),
(42887, 'https://ror.org/03dafc138', 'no_lang_code', 1, 'https://ror.org/03dafc138 Defense Systems (United States)'),
(42888, 'https://ror.org/03db92766', 'en', 1, 'https://ror.org/03db92766 Centre for Development of Telematics ą¤Ÿą„‡ą¤²ą„€ą¤®ą„ˆą¤Ÿą¤æą¤•ą„ą¤ø विकास ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(42889, 'https://ror.org/03dgc0w76', 'en', 1, 'https://ror.org/03dgc0w76 Network for Preventive Environmental Management'),
(42890, 'https://ror.org/03djfm287', 'en', 1, 'https://ror.org/03djfm287 British Universities North America Club'),
(42891, 'https://ror.org/03dmtvy82', 'en', 1, 'https://ror.org/03dmtvy82 Department of Commerce'),
(42892, 'https://ror.org/03dp8ay82', 'no_lang_code', 1, 'https://ror.org/03dp8ay82 Chitungwiza Municipality'),
(42893, 'https://ror.org/03dpkyr84', 'no_lang_code', 1, 'https://ror.org/03dpkyr84 Silicon Chemical (United States)'),
(42894, 'https://ror.org/03dsk4d59', 'no_lang_code', 1, 'https://ror.org/03dsk4d59 Springer Nature (United Kingdom)'),
(42895, 'https://ror.org/03dv5mp96', 'en', 1, 'https://ror.org/03dv5mp96 Virginia Department of Social Services'),
(42896, 'https://ror.org/03dw6jp83', 'en', 1, 'https://ror.org/03dw6jp83 San Pedro College'),
(42897, 'https://ror.org/03dy5jr56', 'en', 1, 'https://ror.org/03dy5jr56 Grāmatvedības un finanŔu koledža Riga College of Accounting and Finance'),
(42898, 'https://ror.org/03dyet424', 'no_lang_code', 1, 'https://ror.org/03dyet424 Tata Elxsi (India)');
INSERT INTO `rors` VALUES
(42899, 'https://ror.org/03e1rva04', 'en', 1, 'https://ror.org/03e1rva04 Texas Groundwater Protection Committee'),
(42900, 'https://ror.org/03e29r284', 'en', 1, 'https://ror.org/03e29r284 National Taipei University åœ‹ē«‹č‡ŗåŒ—å¤§å­ø'),
(42901, 'https://ror.org/03e6g8q57', 'en', 1, 'https://ror.org/03e6g8q57 Masan National Tuberculosis Hospital'),
(42902, 'https://ror.org/03e8e5846', 'en', 1, 'https://ror.org/03e8e5846 Rio Salado College'),
(42903, 'https://ror.org/03e9akr35', 'en', 1, 'https://ror.org/03e9akr35 College for Management in Tourism and Informatics in Virovitica Visoka Ŕkola za menadžment u turizmu i informatici'),
(42904, 'https://ror.org/03e9cyb52', 'en', 1, 'https://ror.org/03e9cyb52 Central Laboratory For Agricultural Expert Systems'),
(42905, 'https://ror.org/03eabnp32', 'en', 1, 'https://ror.org/03eabnp32 Carl Albert State College'),
(42906, 'https://ror.org/03ebs8975', 'en', 1, 'https://ror.org/03ebs8975 Department of State Growth'),
(42907, 'https://ror.org/03ect3280', 'en', 1, 'https://ror.org/03ect3280 Gansu Desert Control Research Institute ē”˜č‚ƒēœę²»ę²™ē ”ē©¶ę‰€'),
(42908, 'https://ror.org/03ed9w591', 'en', 1, 'https://ror.org/03ed9w591 Technological Educational Institute of Central Greece Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Στερεάς ΕλλάΓας'),
(42909, 'https://ror.org/03eeyzx69', 'en', 1, 'https://ror.org/03eeyzx69 Ministy of Fisheries and Marine Resources'),
(42910, 'https://ror.org/03efa8j75', 'en', 1, 'https://ror.org/03efa8j75 IMS Unison University'),
(42911, 'https://ror.org/03eh3c696', 'en', 1, 'https://ror.org/03eh3c696 Civil Aviation Management Institute of China äø­å›½ę°‘čˆŖē®”ē†å¹²éƒØå­¦é™¢'),
(42912, 'https://ror.org/03ehswj04', 'en', 1, 'https://ror.org/03ehswj04 Barstow Community College'),
(42913, 'https://ror.org/03ekjqb98', 'it', 1, 'https://ror.org/03ekjqb98 Accademia di Belle Arti di Frosinone'),
(42914, 'https://ror.org/03em6r869', 'en', 1, 'https://ror.org/03em6r869 Armed Forces Medical College ą¦œą§ą¦žą¦¾ą¦Øą¦‡ ą¦¶ą¦•ą§ą¦¤ą¦æ,সেবাই ą¦§ą¦°ą§ą¦®'),
(42915, 'https://ror.org/03emcx872', 'no_lang_code', 1, 'https://ror.org/03emcx872 PaxiTech (France)'),
(42916, 'https://ror.org/03en4zh39', 'it', 1, 'https://ror.org/03en4zh39 Academy of Fine Arts of Palermo Accademia di Belle Arti di Palermo'),
(42917, 'https://ror.org/03enm7r21', 'no_lang_code', 1, 'https://ror.org/03enm7r21 Pakistan Telecommunication Company (Pakistan) پی ٹی سی Ų§ŪŒŁ„'),
(42918, 'https://ror.org/03enn8902', 'en', 1, 'https://ror.org/03enn8902 Northeast Mississippi Community College'),
(42919, 'https://ror.org/03epp6210', 'en', 1, 'https://ror.org/03epp6210 Chongqing Institute of Geology and Mineral Resources é‡åŗ†åœ°č“ØēŸæäŗ§ē ”ē©¶é™¢'),
(42920, 'https://ror.org/03eqw9e29', 'en', 1, 'https://ror.org/03eqw9e29 Teachers Insurance and Annuity Association of America'),
(42921, 'https://ror.org/03eqwj662', 'en', 1, 'https://ror.org/03eqwj662 Leibniz Fachhochschule Leibniz University of Applied Sciences'),
(42922, 'https://ror.org/03er61e50', 'fr', 1, 'https://ror.org/03er61e50 Clinique Pasteur Pasteur Clinic'),
(42923, 'https://ror.org/03er7bd95', 'en', 1, 'https://ror.org/03er7bd95 Taylor College and Seminary'),
(42924, 'https://ror.org/03eraeg88', 'no_lang_code', 1, 'https://ror.org/03eraeg88 Medtronic (France)'),
(42925, 'https://ror.org/03etbcx90', 'en', 1, 'https://ror.org/03etbcx90 Pasco–Hernando State College'),
(42926, 'https://ror.org/03etbp963', 'fr', 1, 'https://ror.org/03etbp963 Vizion’R'),
(42927, 'https://ror.org/03ew7wh25', 'en', 1, 'https://ror.org/03ew7wh25 Seevic College'),
(42928, 'https://ror.org/03ex1m609', 'no_lang_code', 1, 'https://ror.org/03ex1m609 Satimo (France) SociĆ©tĆ© d’Applications Technologiques de l’Imagerie Micro-Onde'),
(42929, 'https://ror.org/03ezdk227', 'en', 1, 'https://ror.org/03ezdk227 Epic Bible College'),
(42930, 'https://ror.org/03f34pe19', 'no_lang_code', 1, 'https://ror.org/03f34pe19 Starbucks (United States)'),
(42931, 'https://ror.org/03f3kev64', 'en', 1, 'https://ror.org/03f3kev64 Centre for Interdisciplinary Research in Music Media and Technology'),
(42932, 'https://ror.org/03f3r3r28', 'en', 1, 'https://ror.org/03f3r3r28 Mid Michigan Community College'),
(42933, 'https://ror.org/03f5nqa05', 'no_lang_code', 1, 'https://ror.org/03f5nqa05 Aboca (Italy)'),
(42934, 'https://ror.org/03f5ppt85', 'en', 1, 'https://ror.org/03f5ppt85 Pacific Institute of Geography, Far Eastern Branch of the Russian Academy of Sciences Тихоокеанский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географи'),
(42935, 'https://ror.org/03f614z16', 'en', 1, 'https://ror.org/03f614z16 Humsafar Trust'),
(42936, 'https://ror.org/03f6f0r93', 'no_lang_code', 1, 'https://ror.org/03f6f0r93 Guardian Life Insurance Company of America (United States)'),
(42937, 'https://ror.org/03f6y0160', 'en', 1, 'https://ror.org/03f6y0160 Ministry of Energy, Mines, Water and Environment MinistĆØre de l''Energie, des Mines, de l''Eau et de l''Environnement'),
(42938, 'https://ror.org/03f856541', 'es', 1, 'https://ror.org/03f856541 Ministerio de Educación Pública'),
(42939, 'https://ror.org/03f8nwf60', 'no_lang_code', 1, 'https://ror.org/03f8nwf60 Solar23 Tunisie (Tunisia)'),
(42940, 'https://ror.org/03fbewc07', 'pt', 1, 'https://ror.org/03fbewc07 Conservatório de Música do Porto'),
(42941, 'https://ror.org/03fbg1b47', 'fr', 1, 'https://ror.org/03fbg1b47 Institut SupƩrieur de Gestion et de Planification'),
(42942, 'https://ror.org/03fcyyh75', 'en', 1, 'https://ror.org/03fcyyh75 Eastern Arizona College'),
(42943, 'https://ror.org/03fd87035', 'fr', 1, 'https://ror.org/03fd87035 Laboratoire MotricitĆ© Humaine Ɖducation Sport SantĆ©'),
(42944, 'https://ror.org/03fdtyj95', 'no_lang_code', 1, 'https://ror.org/03fdtyj95 Electra- Empresa de Electricidade e Ɓgua (Cape Verde)'),
(42945, 'https://ror.org/03fe85378', 'en', 1, 'https://ror.org/03fe85378 Cincinnati College of Mortuary Science'),
(42946, 'https://ror.org/03fe8wt32', 'fr', 1, 'https://ror.org/03fe8wt32 Association Mitsinjo'),
(42947, 'https://ror.org/03fh39287', 'fr', 1, 'https://ror.org/03fh39287 Agence Nationale de l''Aviation Civile du SƩnƩgal, Agence Nationale de l''Aviation Civile et de la MƩtƩorologie'),
(42948, 'https://ror.org/03fkcxa91', 'en', 1, 'https://ror.org/03fkcxa91 Environmental Protection Agency MiljĆøstyrelsen'),
(42949, 'https://ror.org/03fm9h746', 'en', 1, 'https://ror.org/03fm9h746 Acsenda School of Management'),
(42950, 'https://ror.org/03fntkd46', 'en', 1, 'https://ror.org/03fntkd46 Commission du Bassin du Lac Tchad Lake Chad Basin Commission'),
(42951, 'https://ror.org/03fpzah45', 'en', 1, 'https://ror.org/03fpzah45 College of Southern Nevada'),
(42952, 'https://ror.org/03fq8ts34', 'en', 1, 'https://ror.org/03fq8ts34 Countryside and Community Research Institute'),
(42953, 'https://ror.org/03fqqej38', 'en', 1, 'https://ror.org/03fqqej38 Johns Hopkins Children''s Center'),
(42954, 'https://ror.org/03fs51t18', 'en', 1, 'https://ror.org/03fs51t18 Wayne Community College'),
(42955, 'https://ror.org/03fs66f88', 'no_lang_code', 1, 'https://ror.org/03fs66f88 Pitney Bowes (United States)'),
(42956, 'https://ror.org/03fs7vk32', 'no_lang_code', 1, 'https://ror.org/03fs7vk32 American International Group (United States)'),
(42957, 'https://ror.org/03ftcjb67', 'en', 1, 'https://ror.org/03ftcjb67 Muséum d''Histoire Naturelle de Genève Natural History Museum of Geneva'),
(42958, 'https://ror.org/03fthvs97', 'pt', 1, 'https://ror.org/03fthvs97 Faculdade de Itaituba'),
(42959, 'https://ror.org/03fyw2k76', 'en', 1, 'https://ror.org/03fyw2k76 Blood Transfusion Service of Namibia'),
(42960, 'https://ror.org/03fzdmt35', 'en', 1, 'https://ror.org/03fzdmt35 East European State Higher School in Przemyśl Państwowa Wyższa Szkoła Wschodnioeuropejska w Przemyślu'),
(42961, 'https://ror.org/03g38sn14', 'fr', 1, 'https://ror.org/03g38sn14 Laboratory Colloïdes et Matériaux Divisés'),
(42962, 'https://ror.org/03g5f5777', 'en', 1, 'https://ror.org/03g5f5777 Maine Medical Center'),
(42963, 'https://ror.org/03g9c1e75', 'no_lang_code', 1, 'https://ror.org/03g9c1e75 Delta Air Lines (United States)'),
(42964, 'https://ror.org/03g9mpe61', 'en', 1, 'https://ror.org/03g9mpe61 Upper Valley Educators Institute'),
(42965, 'https://ror.org/03ga33f34', 'en', 1, 'https://ror.org/03ga33f34 Department of Arts and Museums'),
(42966, 'https://ror.org/03gbfvb23', 'en', 1, 'https://ror.org/03gbfvb23 Central Ohio Technical College'),
(42967, 'https://ror.org/03gc7jk79', 'en', 1, 'https://ror.org/03gc7jk79 Cisco College'),
(42968, 'https://ror.org/03gjr0792', 'en', 1, 'https://ror.org/03gjr0792 Central Building Research Institute'),
(42969, 'https://ror.org/03gjxrs28', 'en', 1, 'https://ror.org/03gjxrs28 National Art Gallery of Namibia'),
(42970, 'https://ror.org/03gn3dp35', 'no_lang_code', 1, 'https://ror.org/03gn3dp35 Adamore (Nigeria)'),
(42971, 'https://ror.org/03grdwb80', 'no_lang_code', 1, 'https://ror.org/03grdwb80 Sanofi (South Korea) 사노피-ģ•„ė²¤ķ‹°ģŠ¤ 코리아'),
(42972, 'https://ror.org/03grty434', 'en', 1, 'https://ror.org/03grty434 Jembi Health Systems'),
(42973, 'https://ror.org/03gvptg28', 'en', 1, 'https://ror.org/03gvptg28 Ludwig Cancer Research'),
(42974, 'https://ror.org/03gwh5v62', 'fr', 1, 'https://ror.org/03gwh5v62 Iskane IngƩnierie'),
(42975, 'https://ror.org/03gxxv409', 'en', 1, 'https://ror.org/03gxxv409 Rama Dental College Hospital & Research Centre'),
(42976, 'https://ror.org/03h37fs39', 'en', 1, 'https://ror.org/03h37fs39 Daegu Future College å¤§é‚±ęœŖä¾†å¤§å­ø ėŒ€źµ¬ėÆøėž˜ėŒ€ķ•™'),
(42977, 'https://ror.org/03h3f5845', 'en', 1, 'https://ror.org/03h3f5845 Murmansk Academy of Economics and Management ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(42978, 'https://ror.org/03h8x3k49', 'en', 1, 'https://ror.org/03h8x3k49 Kamiesberg Local Municipality'),
(42979, 'https://ror.org/03ha3x766', 'no_lang_code', 1, 'https://ror.org/03ha3x766 Beijing Planetarium åŒ—äŗ¬å¤©ę–‡é¦†/åŒ—äŗ¬å¤©ę–‡é¤Ø'),
(42980, 'https://ror.org/03hagz796', 'no_lang_code', 1, 'https://ror.org/03hagz796 Pantarhei Bioscience (Netherlands)'),
(42981, 'https://ror.org/03hasam33', 'en', 1, 'https://ror.org/03hasam33 Wolford College'),
(42982, 'https://ror.org/03hayrn10', 'en', 1, 'https://ror.org/03hayrn10 Sorbian Institute Sorbisches Institut'),
(42983, 'https://ror.org/03hbjhd85', 'en', 1, 'https://ror.org/03hbjhd85 National Registration, Passport and Citizenship Department'),
(42984, 'https://ror.org/03hc6ex92', 'es', 1, 'https://ror.org/03hc6ex92 Secretaría de Innovación, Ciencia y Educación Superior'),
(42985, 'https://ror.org/03hdcb713', 'no_lang_code', 1, 'https://ror.org/03hdcb713 MicroMass Communications (United States)'),
(42986, 'https://ror.org/03hegxg89', 'en', 1, 'https://ror.org/03hegxg89 Southwest Wisconsin Technical College'),
(42987, 'https://ror.org/03hg8g849', 'en', 1, 'https://ror.org/03hg8g849 Timiryazev Institute of Plant Physiology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии растений К.А. Š¢ŠøŠ¼ŠøŃ€ŃŠ·ŠµŠ²Š°'),
(42988, 'https://ror.org/03hmgxr98', 'en', 1, 'https://ror.org/03hmgxr98 Lietuvos aukstoji jureivystes mokykla Lithuanian Maritime Academy'),
(42989, 'https://ror.org/03hr48p12', 'en', 1, 'https://ror.org/03hr48p12 Tohono O''odham Community College'),
(42990, 'https://ror.org/03ht0cf17', 'en', 1, 'https://ror.org/03ht0cf17 Sher-e-Bangla Agricultural University শেরে বাংলা ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(42991, 'https://ror.org/03hz79v84', 'en', 1, 'https://ror.org/03hz79v84 Fair Haven Community Health Center'),
(42992, 'https://ror.org/03j09xa79', 'es', 1, 'https://ror.org/03j09xa79 Genetaq'),
(42993, 'https://ror.org/03j113172', 'en', 1, 'https://ror.org/03j113172 Biogas Institute of Ministry of Agriculture å†œäøšéƒØę²¼ę°”ē§‘å­¦ē ”ē©¶ę‰€'),
(42994, 'https://ror.org/03j2cpb79', 'en', 1, 'https://ror.org/03j2cpb79 Farmland Irrigation Research Institute äø­å›½å†œäøšē§‘å­¦é™¢å†œē”°ēŒęŗ‰ē ”ē©¶ę‰€'),
(42995, 'https://ror.org/03j397k95', 'en', 1, 'https://ror.org/03j397k95 South African Holocaust and Genocide Foundation'),
(42996, 'https://ror.org/03j4bgx95', 'fr', 1, 'https://ror.org/03j4bgx95 ECAM Rennes Louis de Broglie'),
(42997, 'https://ror.org/03j70bf39', 'en', 1, 'https://ror.org/03j70bf39 American College of Acupuncture & Oriental Medicine'),
(42998, 'https://ror.org/03j803518', 'en', 1, 'https://ror.org/03j803518 China Institute of Daily Chemical Industry äø­å›½ę—„ē”ØåŒ–å­¦å·„äøšē ”ē©¶é™¢'),
(42999, 'https://ror.org/03j9n1e36', 'en', 1, 'https://ror.org/03j9n1e36 Davis College - Ohio'),
(43000, 'https://ror.org/03j9ysw15', 'en', 1, 'https://ror.org/03j9ysw15 CareWorks'),
(43001, 'https://ror.org/03ja16q10', 'en', 1, 'https://ror.org/03ja16q10 Frank Lloyd Wright School of Architecture'),
(43002, 'https://ror.org/03jab8886', 'en', 1, 'https://ror.org/03jab8886 International School of Management'),
(43003, 'https://ror.org/03jb94x09', 'no_lang_code', 1, 'https://ror.org/03jb94x09 Brochier Technologies (France)'),
(43004, 'https://ror.org/03jbhek14', 'hr', 1, 'https://ror.org/03jbhek14 Tehničko VeleučiliŔte u Zagrebu'),
(43005, 'https://ror.org/03jcbwy51', 'en', 1, 'https://ror.org/03jcbwy51 Oblate School of Theology'),
(43006, 'https://ror.org/03jcx4790', 'en', 1, 'https://ror.org/03jcx4790 College of St. Joseph'),
(43007, 'https://ror.org/03jfd4440', 'en', 1, 'https://ror.org/03jfd4440 Instituto Tecnológico de Mexitali Mexicali Institute of Technology'),
(43008, 'https://ror.org/03jfnxv58', 'en', 1, 'https://ror.org/03jfnxv58 G. S. Rakovski National Defence College Военна Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š“. Š”. Раковски'),
(43009, 'https://ror.org/03jgxzm03', 'en', 1, 'https://ror.org/03jgxzm03 Američka Visoka Skola za Menadžment i Tehnologiju Rochester Institute of Technology Croatia'),
(43010, 'https://ror.org/03jjt5g98', 'en', 1, 'https://ror.org/03jjt5g98 Kolping University of Applied Sciences'),
(43011, 'https://ror.org/03jjxkw75', 'en', 1, 'https://ror.org/03jjxkw75 Rajasthan University of Veterinary and Animal Sciences'),
(43012, 'https://ror.org/03jk3dn88', 'en', 1, 'https://ror.org/03jk3dn88 Egyptian Information Telecommunications Electronics and Software Alliance'),
(43013, 'https://ror.org/03jmc9t23', 'en', 1, 'https://ror.org/03jmc9t23 Research Institute of General Pathology and Pathophysiology, the Russian Academy of Medical Sciences ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей патологии Šø патофизиологии'),
(43014, 'https://ror.org/03jmcpx27', 'en', 1, 'https://ror.org/03jmcpx27 Agriculture Food and Rural Development'),
(43015, 'https://ror.org/03jmw7514', 'en', 1, 'https://ror.org/03jmw7514 Qinghai Meteorological Institute é’ęµ·ēœę°”č±”å±€'),
(43016, 'https://ror.org/03jn6k846', 'en', 1, 'https://ror.org/03jn6k846 Visoka Poslovna Skola Zagreb Zagreb School of Business'),
(43017, 'https://ror.org/03jpef473', 'en', 1, 'https://ror.org/03jpef473 Canton City School District'),
(43018, 'https://ror.org/03jqk9681', 'en', 1, 'https://ror.org/03jqk9681 Spartanburg Community College'),
(43019, 'https://ror.org/03jrs5v66', 'en', 1, 'https://ror.org/03jrs5v66 Institute of Geosphere Dynamics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гинамики геосфер Российской акаГемии наук'),
(43020, 'https://ror.org/03jvv3z84', 'en', 1, 'https://ror.org/03jvv3z84 Bournville College'),
(43021, 'https://ror.org/03jy4yd76', 'en', 1, 'https://ror.org/03jy4yd76 Uganda Carbon Bureau'),
(43022, 'https://ror.org/03jyeqg89', 'en', 1, 'https://ror.org/03jyeqg89 Jewish Child Care Association'),
(43023, 'https://ror.org/03k082032', 'no_lang_code', 1, 'https://ror.org/03k082032 News Corp (United States)'),
(43024, 'https://ror.org/03k2ghn57', 'en', 1, 'https://ror.org/03k2ghn57 Markedsmodningsfonden Market Development Fund'),
(43025, 'https://ror.org/03k31z678', 'en', 1, 'https://ror.org/03k31z678 Institute for Soil, Climate and Water'),
(43026, 'https://ror.org/03k3rfc04', 'en', 1, 'https://ror.org/03k3rfc04 Oxnard College'),
(43027, 'https://ror.org/03k3wrz84', 'pt', 1, 'https://ror.org/03k3wrz84 Ministério do Ensino Superior Ciência e Inovação'),
(43028, 'https://ror.org/03k42gv86', 'en', 1, 'https://ror.org/03k42gv86 Institute of Machines Science Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ имени А. А. Благонравова Š ŠŠ'),
(43029, 'https://ror.org/03k4btr05', 'en', 1, 'https://ror.org/03k4btr05 Center for Support of Indigenous Peoples of the North'),
(43030, 'https://ror.org/03k6e9943', 'no_lang_code', 1, 'https://ror.org/03k6e9943 Reliance (United Kingdom)'),
(43031, 'https://ror.org/03k722897', 'en', 1, 'https://ror.org/03k722897 Institute of Advanced Studies in Education'),
(43032, 'https://ror.org/03k94d886', 'en', 1, 'https://ror.org/03k94d886 Notre Dame Seminary'),
(43033, 'https://ror.org/03k9yfc35', 'en', 1, 'https://ror.org/03k9yfc35 University of Fort Lauderdale'),
(43034, 'https://ror.org/03ka08s53', 'en', 1, 'https://ror.org/03ka08s53 Ministry of Science and Environmental Protection ŠœŠøŠ½ŠøŃŃ‚Š°Ń€ŃŃ‚Š²Š¾ науке Šø Š·Š°ŃˆŃ‚ŠøŃ‚Šµ животне среГине'),
(43035, 'https://ror.org/03kd1v147', 'no_lang_code', 1, 'https://ror.org/03kd1v147 TVS Motor Company (India)'),
(43036, 'https://ror.org/03kfyg105', 'no_lang_code', 1, 'https://ror.org/03kfyg105 Safran (Poland)'),
(43037, 'https://ror.org/03kgddd58', 'en', 1, 'https://ror.org/03kgddd58 MacDowell Colony'),
(43038, 'https://ror.org/03kgyg741', 'no_lang_code', 1, 'https://ror.org/03kgyg741 General Mills (United States)'),
(43039, 'https://ror.org/03khvgd78', 'no_lang_code', 1, 'https://ror.org/03khvgd78 Imedex (United States)'),
(43040, 'https://ror.org/03kk24v11', 'fr', 1, 'https://ror.org/03kk24v11 PhotoTherme, Toutes nos Energies Pour Economiser la Votre'),
(43041, 'https://ror.org/03kmar131', 'fr', 1, 'https://ror.org/03kmar131 Haute Ɖcole de la Province de LiĆØge'),
(43042, 'https://ror.org/03ktyvw44', 'no_lang_code', 1, 'https://ror.org/03ktyvw44 Cadila Healthcare (India)'),
(43043, 'https://ror.org/03kv3z486', 'no_lang_code', 1, 'https://ror.org/03kv3z486 IBM (Portugal)'),
(43044, 'https://ror.org/03kv7mm58', 'en', 1, 'https://ror.org/03kv7mm58 Wartburg Theological Seminary'),
(43045, 'https://ror.org/03ky3pc21', 'no_lang_code', 1, 'https://ror.org/03ky3pc21 Bharat Heavy Electricals (India)'),
(43046, 'https://ror.org/03kyawa63', 'en', 1, 'https://ror.org/03kyawa63 An Roinn Gnóthaí Eachtracha agus TrÔdÔla Department of Foreign Affairs and Trade'),
(43047, 'https://ror.org/03kyen796', 'en', 1, 'https://ror.org/03kyen796 Academia Forțelor Terestre Nicolae Bălcescu Nicolae Bălcescu Land Forces Academy'),
(43048, 'https://ror.org/03kzcrh59', 'en', 1, 'https://ror.org/03kzcrh59 Guangzhou Maritime College å¹æå·žčˆŖęµ·é«˜ē­‰äø“ē§‘å­¦ę ”'),
(43049, 'https://ror.org/03kzgcv48', 'en', 1, 'https://ror.org/03kzgcv48 Freie Theologische Hochschule Gießen Giessen School of Theology'),
(43050, 'https://ror.org/03m1r7z07', 'no_lang_code', 1, 'https://ror.org/03m1r7z07 Asian Civilisations Museum Muzium Tamadun Asia äŗšę“²ę–‡ę˜Žåšē‰©é¦†'),
(43051, 'https://ror.org/03m3r4n45', 'en', 1, 'https://ror.org/03m3r4n45 Shout It Now'),
(43052, 'https://ror.org/03m5ehy13', 'en', 1, 'https://ror.org/03m5ehy13 Ministry of Higher Education and Scientific Research وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(43053, 'https://ror.org/03m6sha91', 'en', 1, 'https://ror.org/03m6sha91 Institut National de la MƩtƩorologie National Institute of Meteorology'),
(43054, 'https://ror.org/03m7k8v87', 'en', 1, 'https://ror.org/03m7k8v87 Tanzania Association of Foresters'),
(43055, 'https://ror.org/03mcw5r69', 'en', 1, 'https://ror.org/03mcw5r69 Southeastern Baptist Theological Seminary'),
(43056, 'https://ror.org/03mcws937', 'en', 1, 'https://ror.org/03mcws937 University of Arkansas Community College at Hope'),
(43057, 'https://ror.org/03mef6610', 'en', 1, 'https://ror.org/03mef6610 South African Weather Service'),
(43058, 'https://ror.org/03mfa1h60', 'no_lang_code', 1, 'https://ror.org/03mfa1h60 Ungweru'),
(43059, 'https://ror.org/03mfv0751', 'en', 1, 'https://ror.org/03mfv0751 Flags of Honour Foundation'),
(43060, 'https://ror.org/03mhba648', 'en', 1, 'https://ror.org/03mhba648 Conseil des arts de l''Ontario Ontario Arts Council'),
(43061, 'https://ror.org/03mj1nk45', 'en', 1, 'https://ror.org/03mj1nk45 National University of Educational Planning and Administration'),
(43062, 'https://ror.org/03mjd0271', 'en', 1, 'https://ror.org/03mjd0271 Construction Research Institute of Malaysia'),
(43063, 'https://ror.org/03mjnxj17', 'no_lang_code', 1, 'https://ror.org/03mjnxj17 LEK Consulting (United States)'),
(43064, 'https://ror.org/03mkee371', 'en', 1, 'https://ror.org/03mkee371 General Organization for Social Insurance المؤسسة العامة Ł„Ł„ŲŖŲ£Ł…ŁŠŁ†Ų§ŲŖ Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(43065, 'https://ror.org/03mm0f366', 'da', 1, 'https://ror.org/03mm0f366 Kriminalforsorgen'),
(43066, 'https://ror.org/03mngpd27', 'no_lang_code', 1, 'https://ror.org/03mngpd27 Health Strat (Kenya)'),
(43067, 'https://ror.org/03mrwhf77', 'en', 1, 'https://ror.org/03mrwhf77 Commonwealth Forestry Association'),
(43068, 'https://ror.org/03msax388', 'en', 1, 'https://ror.org/03msax388 Gauteng Department of Agriculture and Rural Development'),
(43069, 'https://ror.org/03mt6tt39', 'en', 1, 'https://ror.org/03mt6tt39 Asian Institute of Management'),
(43070, 'https://ror.org/03mv3zz84', 'en', 1, 'https://ror.org/03mv3zz84 Brno International Business School'),
(43071, 'https://ror.org/03mv9kp97', 'en', 1, 'https://ror.org/03mv9kp97 AOMA Graduate School of Integrative Medicine'),
(43072, 'https://ror.org/03mw5cy89', 'en', 1, 'https://ror.org/03mw5cy89 Sree Gokulam Medical College and Research Foundation'),
(43073, 'https://ror.org/03mx5e235', 'en', 1, 'https://ror.org/03mx5e235 European Committee for Treatment and Research in Multiple Sclerosis'),
(43074, 'https://ror.org/03mxg5j39', 'en', 1, 'https://ror.org/03mxg5j39 Agricultural Adaptation Council'),
(43075, 'https://ror.org/03myaza48', 'en', 1, 'https://ror.org/03myaza48 Defence Academy of the United Kingdom'),
(43076, 'https://ror.org/03mz4hq51', 'en', 1, 'https://ror.org/03mz4hq51 Naju National Hospital źµ­ė¦½ė‚˜ģ£¼ė³‘ģ›'),
(43077, 'https://ror.org/03n0qtw28', 'cs', 1, 'https://ror.org/03n0qtw28 Westmoravian College Třebƭč, ZĆ”padomoravskĆ” vysokĆ” Å”kola Třebƭč'),
(43078, 'https://ror.org/03n0s6k02', 'it', 1, 'https://ror.org/03n0s6k02 Conservatorio di Musica Lorenzo Perosi'),
(43079, 'https://ror.org/03n10mx16', 'en', 1, 'https://ror.org/03n10mx16 Women''s Research & Education Institute'),
(43080, 'https://ror.org/03n4gks22', 'en', 1, 'https://ror.org/03n4gks22 Abertine Rift Conservation Society'),
(43081, 'https://ror.org/03navfe48', 'no_lang_code', 1, 'https://ror.org/03navfe48 ANADER'),
(43082, 'https://ror.org/03naw9h65', 'en', 1, 'https://ror.org/03naw9h65 Royal Australian and New Zealand College of Obstetricians and Gynaecologists'),
(43083, 'https://ror.org/03nb5d893', 'en', 1, 'https://ror.org/03nb5d893 Academy of Chinese Culture and Health Sciences'),
(43084, 'https://ror.org/03ngerk47', 'en', 1, 'https://ror.org/03ngerk47 Al-Farabi College'),
(43085, 'https://ror.org/03nh6bz87', 'no_lang_code', 1, 'https://ror.org/03nh6bz87 Vacsera (Egypt)'),
(43086, 'https://ror.org/03njb3j41', 'en', 1, 'https://ror.org/03njb3j41 Southwestern College - New Mexico'),
(43087, 'https://ror.org/03njdre41', 'en', 1, 'https://ror.org/03njdre41 Bangladesh Council of Scientific and Industrial Research বাংলাদেশ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦¶ą¦æą¦²ą§ą¦Ŗ গবেষণা পরিষদ'),
(43088, 'https://ror.org/03njnhv57', 'en', 1, 'https://ror.org/03njnhv57 Etobicoke School of the Arts'),
(43089, 'https://ror.org/03njrcx45', 'fr', 1, 'https://ror.org/03njrcx45 Laboratoire de Biologie et Pharmacologie AppliquƩe'),
(43090, 'https://ror.org/03nkkb025', 'en', 1, 'https://ror.org/03nkkb025 Rwanda Agriculture Board'),
(43091, 'https://ror.org/03nm76z82', 'en', 1, 'https://ror.org/03nm76z82 Australian Institute of Policy and Science'),
(43092, 'https://ror.org/03nmnmt74', 'en', 1, 'https://ror.org/03nmnmt74 Midwest College of Oriental Medicine'),
(43093, 'https://ror.org/03nqvpf75', 'fr', 1, 'https://ror.org/03nqvpf75 Laboratoire d''Ɖtude des Microstructures'),
(43094, 'https://ror.org/03nqwhd11', 'no_lang_code', 1, 'https://ror.org/03nqwhd11 Saudi Arabia Basic Industries (Saudi Arabia) Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© للصناعات Ų§Ł„Ų£Ų³Ų§Ų³ŁŠŲ© ، سابك'),
(43095, 'https://ror.org/03nrq6f82', 'en', 1, 'https://ror.org/03nrq6f82 Northpoint Bible College'),
(43096, 'https://ror.org/03nvc8x46', 'no_lang_code', 1, 'https://ror.org/03nvc8x46 Anglo American (South Africa)'),
(43097, 'https://ror.org/03nvkc167', 'en', 1, 'https://ror.org/03nvkc167 Ministry of Foreign Affairs of Denmark Udenrigsministeriet'),
(43098, 'https://ror.org/03nzct076', 'en', 1, 'https://ror.org/03nzct076 Platt College'),
(43099, 'https://ror.org/03nzw8376', 'no_lang_code', 1, 'https://ror.org/03nzw8376 Theranexus (France)'),
(43100, 'https://ror.org/03p371w23', 'fr', 1, 'https://ror.org/03p371w23 Laboratoire de Recherches sur le DƩveloppement de l''Elevage'),
(43101, 'https://ror.org/03p5mga34', 'no_lang_code', 1, 'https://ror.org/03p5mga34 Element Six (Luxembourg)'),
(43102, 'https://ror.org/03p5txy82', 'en', 1, 'https://ror.org/03p5txy82 Celje School of Economics Ekonomska Å ola Celje'),
(43103, 'https://ror.org/03p5wj904', 'en', 1, 'https://ror.org/03p5wj904 Japan Center for Economic Research ę—„ęœ¬ēµŒęøˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(43104, 'https://ror.org/03p6h3k49', 'en', 1, 'https://ror.org/03p6h3k49 Police Academy Polis Akademisi'),
(43105, 'https://ror.org/03p98pb63', 'no_lang_code', 1, 'https://ror.org/03p98pb63 Anthem Biosciences (India)'),
(43106, 'https://ror.org/03p9jms48', 'en', 1, 'https://ror.org/03p9jms48 Beijing Cultural Development Foundation åŒ—äŗ¬ę–‡åŒ–å‘å±•åŸŗé‡‘ä¼š'),
(43107, 'https://ror.org/03p9skh04', 'no_lang_code', 1, 'https://ror.org/03p9skh04 Brother International (United States)'),
(43108, 'https://ror.org/03pbxrn39', 'it', 1, 'https://ror.org/03pbxrn39 Conservatorio di Musica "Giuseppe Verdi"'),
(43109, 'https://ror.org/03pg9x804', 'en', 1, 'https://ror.org/03pg9x804 Texas Commission on the Arts'),
(43110, 'https://ror.org/03pgfye82', 'en', 1, 'https://ror.org/03pgfye82 New England College of Business'),
(43111, 'https://ror.org/03pgxht93', 'en', 1, 'https://ror.org/03pgxht93 Foshan Municipal Government'),
(43112, 'https://ror.org/03ph2cv51', 'en', 1, 'https://ror.org/03ph2cv51 Westminster Kingsway College'),
(43113, 'https://ror.org/03pkfys17', 'en', 1, 'https://ror.org/03pkfys17 Zhejiang Institute of Hydraulics & Estuary ęµ™ę±Ÿēœę°“åˆ©ę²³å£ē ”ē©¶é™¢'),
(43114, 'https://ror.org/03pmbkw20', 'no_lang_code', 1, 'https://ror.org/03pmbkw20 Sophumelela Centre'),
(43115, 'https://ror.org/03ppgma52', 'en', 1, 'https://ror.org/03ppgma52 Project Management Institute'),
(43116, 'https://ror.org/03pq5wv02', 'en', 1, 'https://ror.org/03pq5wv02 Academy of Vocal Arts'),
(43117, 'https://ror.org/03pqf0084', 'en', 1, 'https://ror.org/03pqf0084 Geschichte des Internationalen Hochschulinstituts (IHI) Zittau International University Institute'),
(43118, 'https://ror.org/03pr1st25', 'no_lang_code', 1, 'https://ror.org/03pr1st25 African Explosives (South Africa)'),
(43119, 'https://ror.org/03pr7e672', 'fr', 1, 'https://ror.org/03pr7e672 UniversitƩ des Sciences Juridiques et Politiques de Bamako'),
(43120, 'https://ror.org/03ps79624', 'en', 1, 'https://ror.org/03ps79624 Rainman Landcare Foundation'),
(43121, 'https://ror.org/03pvm4464', 'en', 1, 'https://ror.org/03pvm4464 Wiregrass Georgia Technical College'),
(43122, 'https://ror.org/03pvphy63', 'en', 1, 'https://ror.org/03pvphy63 Byzantine Catholic Seminary of Saints Cyril and Methodius'),
(43123, 'https://ror.org/03pwnpf38', 'it', 1, 'https://ror.org/03pwnpf38 Conservatorio State Di Musica Giuseppe Verdi'),
(43124, 'https://ror.org/03pxsxg30', 'no_lang_code', 1, 'https://ror.org/03pxsxg30 Advanced Acoustic Concepts (United States)'),
(43125, 'https://ror.org/03py54049', 'en', 1, 'https://ror.org/03py54049 Ernst Busch Academy of Dramatic Arts Hochschule für Schauspielkunst Ernst Busch'),
(43126, 'https://ror.org/03pydjx38', 'no_lang_code', 1, 'https://ror.org/03pydjx38 State Nuclear Power Technology Company (China)'),
(43127, 'https://ror.org/03pztks36', 'no_lang_code', 1, 'https://ror.org/03pztks36 Aditya Birla (India)'),
(43128, 'https://ror.org/03q098e53', 'fr', 1, 'https://ror.org/03q098e53 Centre de Recherche en Astronomie Astrophysique et GƩophysique'),
(43129, 'https://ror.org/03q1jsa36', 'en', 1, 'https://ror.org/03q1jsa36 Central Manufacturing Technology Institute'),
(43130, 'https://ror.org/03q22e955', 'en', 1, 'https://ror.org/03q22e955 Xaverian College'),
(43131, 'https://ror.org/03q3jnq04', 'no_lang_code', 1, 'https://ror.org/03q3jnq04 China Nonferrous Metal Mining (China) äø­å›½ęœ‰č‰²ēŸæäøšé›†å›¢ęœ‰é™å…¬åø'),
(43132, 'https://ror.org/03q4sef08', 'no_lang_code', 1, 'https://ror.org/03q4sef08 BASIS International (United States)'),
(43133, 'https://ror.org/03q6w3828', 'no_lang_code', 1, 'https://ror.org/03q6w3828 International Paper (United States)'),
(43134, 'https://ror.org/03q7p3t30', 'fr', 1, 'https://ror.org/03q7p3t30 Laboratoire de Chimie MolƩculaire et Thioorganique'),
(43135, 'https://ror.org/03q82hy28', 'en', 1, 'https://ror.org/03q82hy28 Arab and African Research Center'),
(43136, 'https://ror.org/03q8jhh94', 'en', 1, 'https://ror.org/03q8jhh94 Allen Community College'),
(43137, 'https://ror.org/03q8sfx86', 'en', 1, 'https://ror.org/03q8sfx86 Comilla Medical College ą¦•ą§ą¦®ą¦æą¦²ą§ą¦²ą¦¾ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(43138, 'https://ror.org/03q8zdw85', 'en', 1, 'https://ror.org/03q8zdw85 Accademia Nazionale di Arte Drammatica Silvio DAmico Silvio d''Amico National Academy of Dramatic Arts'),
(43139, 'https://ror.org/03q98b746', 'en', 1, 'https://ror.org/03q98b746 Maroc Numeric Cluster'),
(43140, 'https://ror.org/03q9jd971', 'en', 1, 'https://ror.org/03q9jd971 Vernon College'),
(43141, 'https://ror.org/03qa0dm98', 'en', 1, 'https://ror.org/03qa0dm98 East Central Community College'),
(43142, 'https://ror.org/03qcxsn76', 'en', 1, 'https://ror.org/03qcxsn76 Mental Health Commission'),
(43143, 'https://ror.org/03qesm017', 'en', 1, 'https://ror.org/03qesm017 Southern Health NHS Foundation Trust'),
(43144, 'https://ror.org/03qfn8998', 'no_lang_code', 1, 'https://ror.org/03qfn8998 Depomed (United States)'),
(43145, 'https://ror.org/03qg6cx04', 'en', 1, 'https://ror.org/03qg6cx04 China National Committee for Terms in Sciences and Technologies å…Øå›½ē§‘å­¦ęŠ€ęœÆåčÆå®”å®šå§”å‘˜ä¼š'),
(43146, 'https://ror.org/03qhht705', 'en', 1, 'https://ror.org/03qhht705 National Institute of Technology, Matsue College ę¾ę±Ÿå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(43147, 'https://ror.org/03qp8ma69', 'en', 1, 'https://ror.org/03qp8ma69 Center for Clinical Research Dalarna Centrum fƶr Klinisk Forskning'),
(43148, 'https://ror.org/03qq1s904', 'en', 1, 'https://ror.org/03qq1s904 Executive Office of Housing and Economic Development'),
(43149, 'https://ror.org/03qs9h678', 'en', 1, 'https://ror.org/03qs9h678 Indonesian State College of Accountancy Sekolah Tinggi Akuntansi Negara'),
(43150, 'https://ror.org/03qt57y19', 'no_lang_code', 1, 'https://ror.org/03qt57y19 Perrigo (Ireland)'),
(43151, 'https://ror.org/03qvjfw18', 'en', 1, 'https://ror.org/03qvjfw18 Rio Hondo College'),
(43152, 'https://ror.org/03qvv9093', 'pt', 1, 'https://ror.org/03qvv9093 Colsan - Associação Beneficente de Coleta de Sangue'),
(43153, 'https://ror.org/03qw7bm31', 'en', 1, 'https://ror.org/03qw7bm31 Indian Society of International Law'),
(43154, 'https://ror.org/03qwqnb95', 'no_lang_code', 1, 'https://ror.org/03qwqnb95 Deutsche Bank (Germany)'),
(43155, 'https://ror.org/03qy49k44', 'en', 1, 'https://ror.org/03qy49k44 Agence Nationale des Parcs Nationaux National Agency for National Parks'),
(43156, 'https://ror.org/03r0qcr69', 'no_lang_code', 1, 'https://ror.org/03r0qcr69 Syngaschem (Netherlands)'),
(43157, 'https://ror.org/03r2s9s41', 'en', 1, 'https://ror.org/03r2s9s41 Skyline College'),
(43158, 'https://ror.org/03r3n5r63', 'en', 1, 'https://ror.org/03r3n5r63 Food, Agriculture and Natural Resources Policy Analysis Network'),
(43159, 'https://ror.org/03r5jfv76', 'no_lang_code', 1, 'https://ror.org/03r5jfv76 Amerisure Insurance (United States)'),
(43160, 'https://ror.org/03r6d1b04', 'en', 1, 'https://ror.org/03r6d1b04 National Institute of Public Finance and Policy'),
(43161, 'https://ror.org/03r7eh527', 'fr', 1, 'https://ror.org/03r7eh527 Laboratoire de Photophysique et Photochimie SupramolƩculaires et MacromolƩculaires'),
(43162, 'https://ror.org/03r8r2789', 'no_lang_code', 1, 'https://ror.org/03r8r2789 Sify Technologies (India)'),
(43163, 'https://ror.org/03rafms67', 'en', 1, 'https://ror.org/03rafms67 Plant Gene Expression Center'),
(43164, 'https://ror.org/03rb26y64', 'en', 1, 'https://ror.org/03rb26y64 Collins College'),
(43165, 'https://ror.org/03re0h651', 'no_lang_code', 1, 'https://ror.org/03re0h651 Zaytuna College'),
(43166, 'https://ror.org/03rec7637', 'no_lang_code', 1, 'https://ror.org/03rec7637 Cigna (United States)'),
(43167, 'https://ror.org/03reeve97', 'en', 1, 'https://ror.org/03reeve97 National Quarantine Station'),
(43168, 'https://ror.org/03revcz59', 'en', 1, 'https://ror.org/03revcz59 Water and Power Development Authority واٹر Ų§ŪŒŁ†Śˆ پاور ŚˆŪŒŁˆŁ„Ł¾Ł…Ł†Ł¹ اتھارٹی'),
(43169, 'https://ror.org/03rgtag81', 'no_lang_code', 1, 'https://ror.org/03rgtag81 Dhaka Regency Hotel and Resort (Bangladesh)'),
(43170, 'https://ror.org/03rqcrq04', 'no_lang_code', 1, 'https://ror.org/03rqcrq04 Victoria Seeds (Uganda)'),
(43171, 'https://ror.org/03rt0fp67', 'en', 1, 'https://ror.org/03rt0fp67 WaterAid'),
(43172, 'https://ror.org/03rvrbb45', 'en', 1, 'https://ror.org/03rvrbb45 Higher Ecclesiastical Academy of Athens Ī‘Ī½ĻŽĻ„Ī±Ļ„Ī· Ī•ĪŗĪŗĪ»Ī·ĻƒĪ¹Ī±ĻƒĻ„Ī¹ĪŗĪ® ΑκαΓημία Αθήνας'),
(43173, 'https://ror.org/03rxtcd18', 'no_lang_code', 1, 'https://ror.org/03rxtcd18 Kalgoorlie Consolidated Gold Mines (Australia)'),
(43174, 'https://ror.org/03rzfjh59', 'pt', 1, 'https://ror.org/03rzfjh59 Centro UniversitƔrio Cesmac'),
(43175, 'https://ror.org/03s01ed61', 'no_lang_code', 1, 'https://ror.org/03s01ed61 Yuma Therapeutics (United States)'),
(43176, 'https://ror.org/03s0fv852', 'en', 1, 'https://ror.org/03s0fv852 Einstein Foundation Einstein Stiftung'),
(43177, 'https://ror.org/03s130c71', 'en', 1, 'https://ror.org/03s130c71 State Council Leading Group of Poverty Alleviation and Development å›½åŠ”é™¢ę‰¶č“«äøŽå‘å±•é›†å›¢'),
(43178, 'https://ror.org/03s1kd923', 'en', 1, 'https://ror.org/03s1kd923 Center for Health, Human Rights and Development'),
(43179, 'https://ror.org/03s26zd55', 'en', 1, 'https://ror.org/03s26zd55 Sorokdo National Hospital źµ­ė¦½ģ†Œė”ė„ė³‘ģ›'),
(43180, 'https://ror.org/03s2fjy85', 'en', 1, 'https://ror.org/03s2fjy85 Theological University of Apeldoorn Theologische Universiteit Apeldoorn'),
(43181, 'https://ror.org/03s4x4e93', 'en', 1, 'https://ror.org/03s4x4e93 George Institute for Global Health'),
(43182, 'https://ror.org/03s5w0e14', 'en', 1, 'https://ror.org/03s5w0e14 Indian Institute for Human Settlements'),
(43183, 'https://ror.org/03s7h1x17', 'en', 1, 'https://ror.org/03s7h1x17 Bank of Korea'),
(43184, 'https://ror.org/03sasjr79', 'en', 1, 'https://ror.org/03sasjr79 Yunnan Institute of Parasitic Diseases äŗ‘å—åÆ„ē”Ÿč™«ē—…é˜²ę²»ē½‘'),
(43185, 'https://ror.org/03sfs6n55', 'en', 1, 'https://ror.org/03sfs6n55 Klamath Community College'),
(43186, 'https://ror.org/03sgfhr82', 'es', 1, 'https://ror.org/03sgfhr82 Asociacion Para Evitar la Ceguera en MƩxico Hospital Dr. Luis SƔnchez Bulnes'),
(43187, 'https://ror.org/03sjyr749', 'en', 1, 'https://ror.org/03sjyr749 Mornington Peninsula Shire'),
(43188, 'https://ror.org/03skjap48', 'en', 1, 'https://ror.org/03skjap48 AcadƩmie de droit international de La Haye Hague Academy of International Law'),
(43189, 'https://ror.org/03spd6n49', 'en', 1, 'https://ror.org/03spd6n49 Electricity Generating Authority of Thailand ąøąø²ąø£ą¹„ąøŸąøŸą¹‰ąø²ąøą¹ˆąø²ąø¢ąøœąø„ąø“ąø•ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(43190, 'https://ror.org/03spzdh62', 'no_lang_code', 1, 'https://ror.org/03spzdh62 Computational Sciences (United States)'),
(43191, 'https://ror.org/03srzrr63', 'en', 1, 'https://ror.org/03srzrr63 Pittsburgh Theological Seminary'),
(43192, 'https://ror.org/03ssr6t63', 'no_lang_code', 1, 'https://ror.org/03ssr6t63 Tiandi Science & Technology (China) 中煤科巄集团脿安研究院'),
(43193, 'https://ror.org/03sttqc46', 'en', 1, 'https://ror.org/03sttqc46 Centre Suisse de Recherches Scientifiques en CƓte d''Ivoire Swiss Centre for Scientific Research'),
(43194, 'https://ror.org/03sv4d295', 'en', 1, 'https://ror.org/03sv4d295 Williamson College of the Trades'),
(43195, 'https://ror.org/03sv4ev21', 'en', 1, 'https://ror.org/03sv4ev21 Christian Institute of Health Sciences and Research Hospital'),
(43196, 'https://ror.org/03svd7w08', 'en', 1, 'https://ror.org/03svd7w08 West Midlands Deanery'),
(43197, 'https://ror.org/03sz2k744', 'en', 1, 'https://ror.org/03sz2k744 National Law University, Delhi'),
(43198, 'https://ror.org/03szbab20', 'fr', 1, 'https://ror.org/03szbab20 Institut RƩgional d''Administration'),
(43199, 'https://ror.org/03szme345', 'en', 1, 'https://ror.org/03szme345 Institute of Tectonics and Geophysics named after Y.A. Kosygin Š”Š’Šž Š ŠŠ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Тектоники Šø Геофизики им. Š®.А.ŠšŠ¾ŃŃ‹Š³ŠøŠ½Š°'),
(43200, 'https://ror.org/03t0k7069', 'no_lang_code', 1, 'https://ror.org/03t0k7069 McDonald''s (United States)'),
(43201, 'https://ror.org/03t1tgz69', 'en', 1, 'https://ror.org/03t1tgz69 Academy for Five Element Acupuncture'),
(43202, 'https://ror.org/03t5hbz89', 'en', 1, 'https://ror.org/03t5hbz89 Institute of Organic Chemistry Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органічної хімії'),
(43203, 'https://ror.org/03t730d83', 'en', 1, 'https://ror.org/03t730d83 Yellowstone Christian College'),
(43204, 'https://ror.org/03t7d6q88', 'en', 1, 'https://ror.org/03t7d6q88 Federal University of Applied Administrative Sciences Hochschule des Bundes für ƶffentliche Verwaltung Ɖcole supĆ©rieure fĆ©dĆ©rale d’administration publique'),
(43205, 'https://ror.org/03t89te61', 'no_lang_code', 1, 'https://ror.org/03t89te61 Mubadala (United Arab Emirates)'),
(43206, 'https://ror.org/03t8n7w93', 'no_lang_code', 1, 'https://ror.org/03t8n7w93 Health Advances (United States)'),
(43207, 'https://ror.org/03t9v7a05', 'it', 1, 'https://ror.org/03t9v7a05 Conservatorio di Musica Tito Schipa'),
(43208, 'https://ror.org/03ta21y66', 'en', 1, 'https://ror.org/03ta21y66 Korea Institute for National Unification ķ†µģ¼ģ—°źµ¬ģ›'),
(43209, 'https://ror.org/03ta4hv58', 'en', 1, 'https://ror.org/03ta4hv58 Russian Research Institute for Phytopathology ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фитопатологии России'),
(43210, 'https://ror.org/03tajza86', 'fr', 1, 'https://ror.org/03tajza86 Agence de la BiomƩdecine'),
(43211, 'https://ror.org/03tamv273', 'en', 1, 'https://ror.org/03tamv273 Instituto Tecnológico de Celaya Technological Institute of Celaya'),
(43212, 'https://ror.org/03taxx854', 'en', 1, 'https://ror.org/03taxx854 Northwest Technical College'),
(43213, 'https://ror.org/03tbxt129', 'en', 1, 'https://ror.org/03tbxt129 Guangzhou Institute of Geography å¹æå·žåœ°ē†ē ”ē©¶ę‰€'),
(43214, 'https://ror.org/03tf2hn88', 'no_lang_code', 1, 'https://ror.org/03tf2hn88 Potentia (Namibia)'),
(43215, 'https://ror.org/03tgywz49', 'en', 1, 'https://ror.org/03tgywz49 Korea Institute of Public Finance ķ•œźµ­ģ”°ģ„øģž¬ģ •ģ—°źµ¬ģ›'),
(43216, 'https://ror.org/03thb9733', 'en', 1, 'https://ror.org/03thb9733 Mudra Institute of Communications Ahmedabad'),
(43217, 'https://ror.org/03thf4080', 'en', 1, 'https://ror.org/03thf4080 Ranney School'),
(43218, 'https://ror.org/03thxbc14', 'en', 1, 'https://ror.org/03thxbc14 Western Seminary'),
(43219, 'https://ror.org/03tjm2p32', 'en', 1, 'https://ror.org/03tjm2p32 Chuncheon National Hospital źµ­ė¦½ģ¶˜ģ²œė³‘ģ›'),
(43220, 'https://ror.org/03tkdcg84', 'no_lang_code', 1, 'https://ror.org/03tkdcg84 Magnisense (France)'),
(43221, 'https://ror.org/03tmzec49', 'en', 1, 'https://ror.org/03tmzec49 Korea Research Institute for Vocational Education and Training ķ•œźµ­ģ§ģ—…ėŠ„ė „ź°œė°œģ›'),
(43222, 'https://ror.org/03tpxt335', 'en', 1, 'https://ror.org/03tpxt335 Water Supply and Sanitation Department ą¤Ŗą¤¾ą¤£ą„€ ą¤Ŗą„ą¤°ą¤µą¤ ą¤¾ व ą¤øą„ą¤µą¤šą„ą¤›ą¤¤ą¤¾ विभाग'),
(43223, 'https://ror.org/03tpyg842', 'en', 1, 'https://ror.org/03tpyg842 Michigan Department of Health and Human Services'),
(43224, 'https://ror.org/03tsm8967', 'en', 1, 'https://ror.org/03tsm8967 Arts Midwest'),
(43225, 'https://ror.org/03tt3bb59', 'en', 1, 'https://ror.org/03tt3bb59 British Institute of International and Comparative Law'),
(43226, 'https://ror.org/03tv0yw82', 'no_lang_code', 1, 'https://ror.org/03tv0yw82 Kheth’Impilo'),
(43227, 'https://ror.org/03tv4yh49', 'en', 1, 'https://ror.org/03tv4yh49 Nenets Agro-Economic College'),
(43228, 'https://ror.org/03tx2pf91', 'en', 1, 'https://ror.org/03tx2pf91 Institute of Socio-Economic Development of Territories Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ территорий Российской акаГемии наук'),
(43229, 'https://ror.org/03tydf244', 'pt', 1, 'https://ror.org/03tydf244 Instituto Nacional de Ciência e Tecnologia em Excitotoxicidade e Neuroproteção'),
(43230, 'https://ror.org/03tyfrs48', 'en', 1, 'https://ror.org/03tyfrs48 Saint Paul College'),
(43231, 'https://ror.org/03tyjmh67', 'en', 1, 'https://ror.org/03tyjmh67 Melissa Institute for Violence Prevention and Treatment'),
(43232, 'https://ror.org/03tzsk589', 'en', 1, 'https://ror.org/03tzsk589 British Council For Prevention of Blindness'),
(43233, 'https://ror.org/03v05gb64', 'en', 1, 'https://ror.org/03v05gb64 Centre for the Rehabilitation of the Paralysed'),
(43234, 'https://ror.org/03v16kr17', 'en', 1, 'https://ror.org/03v16kr17 Kentucky Mountain Bible College'),
(43235, 'https://ror.org/03v4jhb18', 'en', 1, 'https://ror.org/03v4jhb18 Cranbrook Academy of Art'),
(43236, 'https://ror.org/03v4rcp75', 'en', 1, 'https://ror.org/03v4rcp75 Area Territoriale di Ricerca del CNR di Bologna Bologna Research Area'),
(43237, 'https://ror.org/03v4wsf43', 'no_lang_code', 1, 'https://ror.org/03v4wsf43 Mecachrome (France)'),
(43238, 'https://ror.org/03v7b8950', 'sl', 1, 'https://ror.org/03v7b8950 Izobraževalni Center Piramida Maribor'),
(43239, 'https://ror.org/03v8gvx29', 'en', 1, 'https://ror.org/03v8gvx29 American College of Psychiatrists'),
(43240, 'https://ror.org/03ve5gp11', 'en', 1, 'https://ror.org/03ve5gp11 International Trauma Anesthesia and Critical Care Society'),
(43241, 'https://ror.org/03ve8wd49', 'en', 1, 'https://ror.org/03ve8wd49 GS1 South Africa'),
(43242, 'https://ror.org/03vemr371', 'en', 1, 'https://ror.org/03vemr371 Modesto Junior College'),
(43243, 'https://ror.org/03vhd2n30', 'en', 1, 'https://ror.org/03vhd2n30 Circumpolar Agricultural Association'),
(43244, 'https://ror.org/03vk3dn23', 'en', 1, 'https://ror.org/03vk3dn23 Global Water Partnership'),
(43245, 'https://ror.org/03vkpnc84', 'en', 1, 'https://ror.org/03vkpnc84 Clarkson College'),
(43246, 'https://ror.org/03vp67w60', 'en', 1, 'https://ror.org/03vp67w60 Max Planck Institute for Social Law and Social Policy Max-Planck-Institut für Sozialrecht und Sozialpolitik'),
(43247, 'https://ror.org/03vpfss84', 'en', 1, 'https://ror.org/03vpfss84 Institute of Musculoskeletal Health and Arthritis'),
(43248, 'https://ror.org/03vqakm84', 'en', 1, 'https://ror.org/03vqakm84 Institute of Mining Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(43249, 'https://ror.org/03vqkag84', 'en', 1, 'https://ror.org/03vqkag84 American College of Education'),
(43250, 'https://ror.org/03vr80018', 'en', 1, 'https://ror.org/03vr80018 Escola de Mar School of Sea'),
(43251, 'https://ror.org/03vsjrm65', 'no_lang_code', 1, 'https://ror.org/03vsjrm65 Economic Expert Group (Russia) Š­ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń ŃŠŗŃŠæŠµŃ€Ń‚Š½Š°Ń Š³Ń€ŃƒŠæŠæŠ°'),
(43252, 'https://ror.org/03vsjrq56', 'no_lang_code', 1, 'https://ror.org/03vsjrq56 Abiant (United States)'),
(43253, 'https://ror.org/03vv7cm03', 'en', 1, 'https://ror.org/03vv7cm03 Institute of Mathematics with Computer Center Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики с Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¼ центром Š£ŠŠ¦ Š ŠŠ'),
(43254, 'https://ror.org/03vwp3588', 'en', 1, 'https://ror.org/03vwp3588 Arkleton Trust'),
(43255, 'https://ror.org/03vz3qc29', 'en', 1, 'https://ror.org/03vz3qc29 Evangelische Hochschule Rheinland-Westfalen-Lippe Protestant University of Applied Sciences Rhineland-Westphalia-Lippe'),
(43256, 'https://ror.org/03w077619', 'en', 1, 'https://ror.org/03w077619 Federal College of Fisheries and Marine Technology'),
(43257, 'https://ror.org/03w27x846', 'en', 1, 'https://ror.org/03w27x846 Sachverständigenrat deutscher Stiftungen für Integration und Migration The Expert Council of German Foundations on Integration and Migration'),
(43258, 'https://ror.org/03w2ae733', 'en', 1, 'https://ror.org/03w2ae733 Armed Forces Academies Preparatory School โรงเรียนเตรียดทหาร'),
(43259, 'https://ror.org/03w2dn060', 'en', 1, 'https://ror.org/03w2dn060 African Institute for Capacity Development'),
(43260, 'https://ror.org/03w4wmy72', 'no_lang_code', 1, 'https://ror.org/03w4wmy72 Genomic Vision (France)'),
(43261, 'https://ror.org/03w5vx872', 'en', 1, 'https://ror.org/03w5vx872 Guangxi Mangrove Research Center å¹æč„æēŗ¢ę ‘ęž—ē ”ē©¶äø­åæƒ'),
(43262, 'https://ror.org/03w6ebm44', 'en', 1, 'https://ror.org/03w6ebm44 South Arts'),
(43263, 'https://ror.org/03w6f4808', 'en', 1, 'https://ror.org/03w6f4808 Technical College of the Lowcountry'),
(43264, 'https://ror.org/03w7tfy68', 'en', 1, 'https://ror.org/03w7tfy68 Reformed Theological College'),
(43265, 'https://ror.org/03waye253', 'de', 1, 'https://ror.org/03waye253 Fachhochschule der Sächsischen Verwaltung Meißen'),
(43266, 'https://ror.org/03wb61205', 'no_lang_code', 1, 'https://ror.org/03wb61205 Sappi (South Africa)'),
(43267, 'https://ror.org/03wd9vk87', 'en', 1, 'https://ror.org/03wd9vk87 Beijing Meteorological Bureau åŒ—äŗ¬åø‚ę°”č±”å±€'),
(43268, 'https://ror.org/03wejsv15', 'en', 1, 'https://ror.org/03wejsv15 Ministry of Defence ą¤°ą¤•ą„ą¤·ą¤¾ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(43269, 'https://ror.org/03wgj1374', 'en', 1, 'https://ror.org/03wgj1374 Legislative Assembly of Saskatchewan'),
(43270, 'https://ror.org/03wgnjj45', 'en', 1, 'https://ror.org/03wgnjj45 Uganda National Meteorological Authority'),
(43271, 'https://ror.org/03whbx426', 'fr', 1, 'https://ror.org/03whbx426 Institut National de SantƩ Publique'),
(43272, 'https://ror.org/03wj7cn78', 'no_lang_code', 1, 'https://ror.org/03wj7cn78 AxisCades (India)'),
(43273, 'https://ror.org/03wjj7779', 'en', 1, 'https://ror.org/03wjj7779 Massachusetts Department of Agricultural Resources'),
(43274, 'https://ror.org/03wkfdc28', 'pt', 1, 'https://ror.org/03wkfdc28 Centro DramĆ”tico de Ɖvora'),
(43275, 'https://ror.org/03wnt7k73', 'no_lang_code', 1, 'https://ror.org/03wnt7k73 Hormel (United States)'),
(43276, 'https://ror.org/03wp7b065', 'en', 1, 'https://ror.org/03wp7b065 Neighborhood Playhouse School of the Theatre'),
(43277, 'https://ror.org/03wrf9427', 'en', 1, 'https://ror.org/03wrf9427 Shenzhen Institute of Information Technology ę·±åœ³äæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(43278, 'https://ror.org/03wy2a142', 'en', 1, 'https://ror.org/03wy2a142 New Jersey Commission on Science, Innovation and Technology'),
(43279, 'https://ror.org/03wyye266', 'en', 1, 'https://ror.org/03wyye266 Townhouse Gallery'),
(43280, 'https://ror.org/03wzvrw53', 'en', 1, 'https://ror.org/03wzvrw53 Feather River College'),
(43281, 'https://ror.org/03x05n260', 'en', 1, 'https://ror.org/03x05n260 South China Institute Of Environmental Sciences ēŽÆå¢ƒäæęŠ¤éƒØåŽå—ēŽÆå¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(43282, 'https://ror.org/03x131c97', 'en', 1, 'https://ror.org/03x131c97 International Institute for Restorative Practices'),
(43283, 'https://ror.org/03x1zq178', 'en', 1, 'https://ror.org/03x1zq178 Biznesa vadības koledža College of Business Administration'),
(43284, 'https://ror.org/03x30pe27', 'fr', 1, 'https://ror.org/03x30pe27 Office National de la MƩtƩorologie'),
(43285, 'https://ror.org/03x467203', 'en', 1, 'https://ror.org/03x467203 Truman Library Institute'),
(43286, 'https://ror.org/03x4sv346', 'en', 1, 'https://ror.org/03x4sv346 Ministarstvo zdravstva Ministry of Health'),
(43287, 'https://ror.org/03x529519', 'en', 1, 'https://ror.org/03x529519 Ministry of Finance č²”å‹™ēœ'),
(43288, 'https://ror.org/03x5adz07', 'en', 1, 'https://ror.org/03x5adz07 UsAgainstAlzheimer'),
(43289, 'https://ror.org/03x6axv89', 'en', 1, 'https://ror.org/03x6axv89 Riverside City College'),
(43290, 'https://ror.org/03x76j861', 'no_lang_code', 1, 'https://ror.org/03x76j861 Dynegy (United States)'),
(43291, 'https://ror.org/03x8h1v05', 'fr', 1, 'https://ror.org/03x8h1v05 Ɖcole SupĆ©rieure du Bois'),
(43292, 'https://ror.org/03x8myy24', 'en', 1, 'https://ror.org/03x8myy24 Centre for Coordination of Agricultural Research and Development for Southern Africa'),
(43293, 'https://ror.org/03xh5a585', 'en', 1, 'https://ror.org/03xh5a585 Ministry of Agriculture'),
(43294, 'https://ror.org/03xj8qc33', 'en', 1, 'https://ror.org/03xj8qc33 Dania Academy of Higher Education'),
(43295, 'https://ror.org/03xja9992', 'en', 1, 'https://ror.org/03xja9992 Hindustan Bible Institute & College'),
(43296, 'https://ror.org/03xmwfe88', 'en', 1, 'https://ror.org/03xmwfe88 National Wool Growers Associations of South Africa'),
(43297, 'https://ror.org/03xn5qt57', 'no_lang_code', 1, 'https://ror.org/03xn5qt57 Landsvirkjun (Iceland)'),
(43298, 'https://ror.org/03xn8gh76', 'no_lang_code', 1, 'https://ror.org/03xn8gh76 Sipra Labs (India)'),
(43299, 'https://ror.org/03xnf5k89', 'en', 1, 'https://ror.org/03xnf5k89 Common Fund for Commodities'),
(43300, 'https://ror.org/03xnmzw54', 'en', 1, 'https://ror.org/03xnmzw54 Kansas Space Grant Consortium');
INSERT INTO `rors` VALUES
(43301, 'https://ror.org/03xr30889', 'en', 1, 'https://ror.org/03xr30889 Tianjin Meteorological Bureau 天擄市气豔局 制作'),
(43302, 'https://ror.org/03xscnc52', 'en', 1, 'https://ror.org/03xscnc52 Saami Council'),
(43303, 'https://ror.org/03xsk8f60', 'en', 1, 'https://ror.org/03xsk8f60 Architectural League of New York'),
(43304, 'https://ror.org/03xws5b35', 'nl', 1, 'https://ror.org/03xws5b35 Marnix Academie'),
(43305, 'https://ror.org/03y02pg02', 'en', 1, 'https://ror.org/03y02pg02 Hochschule für Musik Detmold University of Music Detmold'),
(43306, 'https://ror.org/03y0dv989', 'en', 1, 'https://ror.org/03y0dv989 Qaemshahr Islamic Azad University دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد قائمؓهر'),
(43307, 'https://ror.org/03y13mg86', 'en', 1, 'https://ror.org/03y13mg86 Grayson College'),
(43308, 'https://ror.org/03y14xz82', 'en', 1, 'https://ror.org/03y14xz82 Jewish Board of Family and Children''s Services'),
(43309, 'https://ror.org/03y1x4f32', 'en', 1, 'https://ror.org/03y1x4f32 Music and Arts University of the City of Vienna Musik und Kunst PrivatuniversitƤt der Stadt Wien'),
(43310, 'https://ror.org/03y1z8727', 'no_lang_code', 1, 'https://ror.org/03y1z8727 Remegenix (United States)'),
(43311, 'https://ror.org/03y1zyv86', 'en', 1, 'https://ror.org/03y1zyv86 Oklahoma State University Oklahoma City, Oklahoma State University–Oklahoma City'),
(43312, 'https://ror.org/03y28aj90', 'no_lang_code', 1, 'https://ror.org/03y28aj90 Cummins (United States)'),
(43313, 'https://ror.org/03y33h821', 'en', 1, 'https://ror.org/03y33h821 Jiangsu Institute of Meteorological Sciences ę±Ÿč‹ēœę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(43314, 'https://ror.org/03y350s17', 'no_lang_code', 1, 'https://ror.org/03y350s17 West Bengal Electronics Industry Development Corporation Limited (India) ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦‡ą¦²ą§‡ą¦•ą¦Ÿą§ą¦°ą¦Øą¦æą¦•ą§ą¦ø ą¦¶ą¦æą¦²ą§ą¦Ŗ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ą¦•ą¦°ą§ą¦Ŗą§‹ą¦°ą§‡ą¦¶ą¦Ø ą¦²ą¦æą¦®ą¦æą¦Ÿą§‡ą¦”'),
(43315, 'https://ror.org/03y37ca41', 'fr', 1, 'https://ror.org/03y37ca41 Haute Ɖcole de la Ville de LiĆØge'),
(43316, 'https://ror.org/03y3qvs38', 'en', 1, 'https://ror.org/03y3qvs38 Southwest Acupuncture College - Boulder'),
(43317, 'https://ror.org/03y6ab910', 'en', 1, 'https://ror.org/03y6ab910 Farm Africa Ethiopia'),
(43318, 'https://ror.org/03y6m2j03', 'en', 1, 'https://ror.org/03y6m2j03 China University of Technology äø­åœ‹ē§‘ęŠ€å¤§å­ø'),
(43319, 'https://ror.org/03y95vf10', 'en', 1, 'https://ror.org/03y95vf10 National Library of Russia Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń библиотека'),
(43320, 'https://ror.org/03ya8jr27', 'no_lang_code', 1, 'https://ror.org/03ya8jr27 Health Science Academy (South Africa)'),
(43321, 'https://ror.org/03ybgf406', 'en', 1, 'https://ror.org/03ybgf406 Urumqi General Hospital of PLA å…°å·žå†›åŒŗä¹Œé²ęœØé½ę€»åŒ»é™¢'),
(43322, 'https://ror.org/03ycy6g75', 'en', 1, 'https://ror.org/03ycy6g75 New York Space Grant Consortium'),
(43323, 'https://ror.org/03ye1a762', 'en', 1, 'https://ror.org/03ye1a762 Alliance Nationale Contre le SIDA en Cote d''Ivoire Alliance of Health'),
(43324, 'https://ror.org/03ye76s02', 'en', 1, 'https://ror.org/03ye76s02 Eastern Wyoming College'),
(43325, 'https://ror.org/03yfbaq97', 'no_lang_code', 1, 'https://ror.org/03yfbaq97 Harman (United States)'),
(43326, 'https://ror.org/03yjs4n28', 'en', 1, 'https://ror.org/03yjs4n28 Commonwealth Education Trust'),
(43327, 'https://ror.org/03yk5sc72', 'en', 1, 'https://ror.org/03yk5sc72 Manhattan Area Technical College'),
(43328, 'https://ror.org/03ymf7q07', 'no_lang_code', 1, 'https://ror.org/03ymf7q07 Sun Pharma Advanced Research (India)'),
(43329, 'https://ror.org/03ymmms77', 'en', 1, 'https://ror.org/03ymmms77 Institute of Continuous Media Mechanics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики ŃŠæŠ»Š¾ŃˆŠ½Ń‹Ń… среГ'),
(43330, 'https://ror.org/03yq84q39', 'en', 1, 'https://ror.org/03yq84q39 Centre For Environment Architecture & Human Settlements'),
(43331, 'https://ror.org/03yvf9v84', 'en', 1, 'https://ror.org/03yvf9v84 Father Muller Homoeopathic Medical College'),
(43332, 'https://ror.org/03ywbpv23', 'it', 1, 'https://ror.org/03ywbpv23 Conservatorio di Musica Pierluigi da Palestrina'),
(43333, 'https://ror.org/03ywskk07', 'pt', 1, 'https://ror.org/03ywskk07 Faculdade de Medicina de JundiaĆ­'),
(43334, 'https://ror.org/03yxw1t21', 'en', 1, 'https://ror.org/03yxw1t21 Academy of Fine Arts Nuremberg Akademie der Bildenden Künste Nürnberg'),
(43335, 'https://ror.org/03yz5ry83', 'en', 1, 'https://ror.org/03yz5ry83 Centre for Educational Development in Health Arusha'),
(43336, 'https://ror.org/03z54xm22', 'en', 1, 'https://ror.org/03z54xm22 Near East School of Theology'),
(43337, 'https://ror.org/03z5dpc36', 'en', 1, 'https://ror.org/03z5dpc36 Pennsylvania Department of Military and Veterans Affairs'),
(43338, 'https://ror.org/03z7hft29', 'en', 1, 'https://ror.org/03z7hft29 British Federation of Women Graduates'),
(43339, 'https://ror.org/03z86v888', 'sl', 1, 'https://ror.org/03z86v888 Å olski center Slovenj Gradec'),
(43340, 'https://ror.org/03z90hq89', 'en', 1, 'https://ror.org/03z90hq89 Central Scientific Research Institute of Tuberculosis Russian Academy of Medical Sciences Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»ŠµŠ·Š° Российской акаГемии меГицинских наук'),
(43341, 'https://ror.org/03z9hh605', 'en', 1, 'https://ror.org/03z9hh605 Division of Antarctic Infrastructure and Logistics'),
(43342, 'https://ror.org/03zb1qq41', 'en', 1, 'https://ror.org/03zb1qq41 Guizhou Institute of Plant Protection č“µå·žēœę¤ē‰©äæęŠ¤ē ”ē©¶ę‰€'),
(43343, 'https://ror.org/03zb78h42', 'pt', 1, 'https://ror.org/03zb78h42 Mendelics'),
(43344, 'https://ror.org/03zbza087', 'fr', 1, 'https://ror.org/03zbza087 Association de Recherche de Communication et d’Accompagnement Ć  Domicile de personnes Vivant avec le VIH'),
(43345, 'https://ror.org/03zc86h29', 'en', 1, 'https://ror.org/03zc86h29 Carteret Community College'),
(43346, 'https://ror.org/03ze2zr46', 'no_lang_code', 1, 'https://ror.org/03ze2zr46 AXO Science (France)'),
(43347, 'https://ror.org/03zeyg902', 'en', 1, 'https://ror.org/03zeyg902 Institute of Engineering Science Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(43348, 'https://ror.org/03zfxaj88', 'pl', 1, 'https://ror.org/03zfxaj88 Higher School of Humanities in Leszno Wyższa Szkoła Humanistyczna'),
(43349, 'https://ror.org/03zhqjb33', 'en', 1, 'https://ror.org/03zhqjb33 Ceramic Society of Japan ę—„ęœ¬ć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹å”ä¼š'),
(43350, 'https://ror.org/03zhv0t98', 'no_lang_code', 1, 'https://ror.org/03zhv0t98 WSFS Financial Corporation (United States)'),
(43351, 'https://ror.org/03zjevq63', 'en', 1, 'https://ror.org/03zjevq63 Korea Air Force Academy 공군사꓀학교'),
(43352, 'https://ror.org/03zmqr331', 'no_lang_code', 1, 'https://ror.org/03zmqr331 Bristol-Myers Squibb (India)'),
(43353, 'https://ror.org/03zqvfs52', 'en', 1, 'https://ror.org/03zqvfs52 Israel National Road Safety Authority'),
(43354, 'https://ror.org/03zqzpy75', 'en', 1, 'https://ror.org/03zqzpy75 Texas Council for Developmental Disabilities'),
(43355, 'https://ror.org/03zrrks14', 'no_lang_code', 1, 'https://ror.org/03zrrks14 Metav (Romania)'),
(43356, 'https://ror.org/03zs93v51', 'en', 1, 'https://ror.org/03zs93v51 Ministry of Foreign Affairs Ministério dos Negócios Estrangeiros'),
(43357, 'https://ror.org/03zsz9v82', 'it', 1, 'https://ror.org/03zsz9v82 Accademia di Belle Arti di Foggia'),
(43358, 'https://ror.org/03zt3va85', 'fr', 1, 'https://ror.org/03zt3va85 Institut de PalƩontologie Humaine'),
(43359, 'https://ror.org/03zx8g717', 'no_lang_code', 1, 'https://ror.org/03zx8g717 Techno India Group (India)'),
(43360, 'https://ror.org/03zxry661', 'en', 1, 'https://ror.org/03zxry661 European Investment Bank'),
(43361, 'https://ror.org/0400m9h41', 'en', 1, 'https://ror.org/0400m9h41 Grays Harbor College'),
(43362, 'https://ror.org/0403qeq92', 'en', 1, 'https://ror.org/0403qeq92 Pearl River Community College'),
(43363, 'https://ror.org/04040wx85', 'no_lang_code', 1, 'https://ror.org/04040wx85 Fukushima College ē¦å³¶å­¦é™¢å¤§å­¦'),
(43364, 'https://ror.org/0404w7c41', 'fr', 1, 'https://ror.org/0404w7c41 AFRICSantƩ'),
(43365, 'https://ror.org/04056ja87', 'en', 1, 'https://ror.org/04056ja87 Technological Educational Institute of Thessaly Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ī›Ī¬ĻĪ¹ĻƒĪ±Ļ‚'),
(43366, 'https://ror.org/0406h9r54', 'en', 1, 'https://ror.org/0406h9r54 Korea Green Promotion Agency'),
(43367, 'https://ror.org/040817k51', 'en', 1, 'https://ror.org/040817k51 Centre For Development Alternatives'),
(43368, 'https://ror.org/040aqz944', 'no_lang_code', 1, 'https://ror.org/040aqz944 Cargill (Netherlands)'),
(43369, 'https://ror.org/040cw3796', 'en', 1, 'https://ror.org/040cw3796 British Ornithologists Union'),
(43370, 'https://ror.org/040dgqr26', 'en', 1, 'https://ror.org/040dgqr26 National Institute of Pharmaceutical Education and Research'),
(43371, 'https://ror.org/040dxjz28', 'de', 1, 'https://ror.org/040dxjz28 Fachhochschule für öffentliche Verwaltung, Polizei und Rechtspflege des Landes Mecklenburg-Vorpommern'),
(43372, 'https://ror.org/040er0w10', 'en', 1, 'https://ror.org/040er0w10 All-Russian Scientific Research Institute of Food Biotechnology Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ˜Š©Š•Š’ŠžŠ™ Š‘Š˜ŠžŠ¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š˜'),
(43373, 'https://ror.org/040eytj64', 'en', 1, 'https://ror.org/040eytj64 St.Martha''s College Of Nursing'),
(43374, 'https://ror.org/040f10867', 'en', 1, 'https://ror.org/040f10867 Taiyuan Central Hospital å¤ŖåŽŸåø‚äø­åæƒåŒ»é™¢'),
(43375, 'https://ror.org/040fqas51', 'no_lang_code', 1, 'https://ror.org/040fqas51 Baxalta (United States)'),
(43376, 'https://ror.org/040gs8e06', 'de', 1, 'https://ror.org/040gs8e06 Haute Ɖcole PĆ©dagogique du Valais PƤdagogische Hochschule Wallis'),
(43377, 'https://ror.org/040gxv777', 'en', 1, 'https://ror.org/040gxv777 Delaney AIDS Research Enterprise'),
(43378, 'https://ror.org/040hdjp50', 'en', 1, 'https://ror.org/040hdjp50 United States Army Reserve'),
(43379, 'https://ror.org/040hfpx97', 'en', 1, 'https://ror.org/040hfpx97 CEC ArtsLink'),
(43380, 'https://ror.org/040rcm367', 'no_lang_code', 1, 'https://ror.org/040rcm367 Virtual Materials Group (Canada)'),
(43381, 'https://ror.org/040rd2b57', 'no_lang_code', 1, 'https://ror.org/040rd2b57 MapĆŗa University Suriang MapĆŗa ng Teknolohiya'),
(43382, 'https://ror.org/040s5rx17', 'en', 1, 'https://ror.org/040s5rx17 Texas Department of Aging and Disability Services'),
(43383, 'https://ror.org/040vj3n59', 'en', 1, 'https://ror.org/040vj3n59 Dunwoody College of Technology'),
(43384, 'https://ror.org/040xtna86', 'fr', 1, 'https://ror.org/040xtna86 Ministère de l''Agriculture, du Développement Rural et de la Pêche'),
(43385, 'https://ror.org/040y9br29', 'en', 1, 'https://ror.org/040y9br29 Africa Rice Center'),
(43386, 'https://ror.org/040ybj657', 'en', 1, 'https://ror.org/040ybj657 Banco Central de Venezuela Central Bank of Venezuela'),
(43387, 'https://ror.org/040ykgb05', 'en', 1, 'https://ror.org/040ykgb05 Halifax Community College'),
(43388, 'https://ror.org/040z06056', 'en', 1, 'https://ror.org/040z06056 Manubhai Patel Dental College and Hospital'),
(43389, 'https://ror.org/040zb1w28', 'en', 1, 'https://ror.org/040zb1w28 Eesti Infotehnoloogia Kolledž Estonian Information Technology College'),
(43390, 'https://ror.org/040zy7h93', 'fr', 1, 'https://ror.org/040zy7h93 SociƩtƩ GƩnƩrale des Travaux du Maroc'),
(43391, 'https://ror.org/041169e26', 'en', 1, 'https://ror.org/041169e26 Ministry of Water and Energy'),
(43392, 'https://ror.org/0411p0k29', 'en', 1, 'https://ror.org/0411p0k29 Australian Institute of Physics'),
(43393, 'https://ror.org/04141fq07', 'no_lang_code', 1, 'https://ror.org/04141fq07 Lepra Society'),
(43394, 'https://ror.org/0414wrz80', 'no_lang_code', 1, 'https://ror.org/0414wrz80 United Continental (United States)'),
(43395, 'https://ror.org/0415ygs14', 'en', 1, 'https://ror.org/0415ygs14 National Institute of Technology, Tomakomai College č‹«å°ē‰§å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(43396, 'https://ror.org/041621784', 'en', 1, 'https://ror.org/041621784 Texas College of Traditional Chinese Medicine, Texas Health and Science University'),
(43397, 'https://ror.org/0416smw97', 'en', 1, 'https://ror.org/0416smw97 Ovarian Awareness Walk'),
(43398, 'https://ror.org/0417mky81', 'en', 1, 'https://ror.org/0417mky81 Resource Optimization Initiative'),
(43399, 'https://ror.org/0417r6n29', 'en', 1, 'https://ror.org/0417r6n29 Richland College'),
(43400, 'https://ror.org/041a9yj35', 'fr', 1, 'https://ror.org/041a9yj35 SociƩtƩ de Conseil et de Prospective Scientifique'),
(43401, 'https://ror.org/041dhrh62', 'en', 1, 'https://ror.org/041dhrh62 Ministry of Mines, Industry and Technological Development Ministère des Mines, de l''Industrie et du Développement Technologique'),
(43402, 'https://ror.org/041dvyp82', 'fr', 1, 'https://ror.org/041dvyp82 Institut Technique des Grandes Cultures'),
(43403, 'https://ror.org/041e5xy86', 'no_lang_code', 1, 'https://ror.org/041e5xy86 Chugoku Marine Paints (Japan) äø­å›½å”—ę–™ę Ŗå¼ä¼šē¤¾'),
(43404, 'https://ror.org/041g2nn20', 'en', 1, 'https://ror.org/041g2nn20 Research on Poverty Alleviation'),
(43405, 'https://ror.org/041hbh421', 'en', 1, 'https://ror.org/041hbh421 Community Development Resource Network'),
(43406, 'https://ror.org/041j39g66', 'en', 1, 'https://ror.org/041j39g66 St. Mary’s Hospital'),
(43407, 'https://ror.org/041j7s452', 'en', 1, 'https://ror.org/041j7s452 Thailand National Metal and Materials Technology Center ąøØąø¹ąø™ąø¢ą¹Œą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹‚ąø„ąø«ąø°ą¹ąø„ąø°ąø§ąø±ąøŖąø”ąøøą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(43408, 'https://ror.org/041kv9d24', 'en', 1, 'https://ror.org/041kv9d24 Miles Community College'),
(43409, 'https://ror.org/041m1e551', 'en', 1, 'https://ror.org/041m1e551 Princeton Public Schools'),
(43410, 'https://ror.org/041nsyx41', 'fr', 1, 'https://ror.org/041nsyx41 Coordination Nationale des Organisations Paysannes du Mali'),
(43411, 'https://ror.org/041q18g77', 'en', 1, 'https://ror.org/041q18g77 Office of the Attorney General Virginia'),
(43412, 'https://ror.org/041q21635', 'en', 1, 'https://ror.org/041q21635 Nigerian Institute for Trypanosomiasis Research'),
(43413, 'https://ror.org/041r43076', 'no_lang_code', 1, 'https://ror.org/041r43076 Etablissements Abdelmoula (Tunisia)'),
(43414, 'https://ror.org/041s2dw89', 'pt', 1, 'https://ror.org/041s2dw89 Fundo para o Desenvolvimento Tecnológico das Telecomunicações'),
(43415, 'https://ror.org/041tbvj87', 'en', 1, 'https://ror.org/041tbvj87 Westmoreland County Community College'),
(43416, 'https://ror.org/041vyyf82', 'no_lang_code', 1, 'https://ror.org/041vyyf82 Avaya (United States)'),
(43417, 'https://ror.org/041w2kh96', 'en', 1, 'https://ror.org/041w2kh96 University of Applied Sciences Europe'),
(43418, 'https://ror.org/041ws6x07', 'it', 1, 'https://ror.org/041ws6x07 Istituto di Alta Formazione Musicale Conservatorio "Claudio Monteverdi"'),
(43419, 'https://ror.org/041wtwq79', 'en', 1, 'https://ror.org/041wtwq79 New Jersey Turnpike Authority'),
(43420, 'https://ror.org/041y4nv46', 'en', 1, 'https://ror.org/041y4nv46 Centre for Sexual Health and HIV AIDS Research'),
(43421, 'https://ror.org/041yajy32', 'en', 1, 'https://ror.org/041yajy32 Nansen Environmental Research Centre India'),
(43422, 'https://ror.org/041z20775', 'en', 1, 'https://ror.org/041z20775 Mvumi Hospital'),
(43423, 'https://ror.org/0420s7j63', 'en', 1, 'https://ror.org/0420s7j63 Northwestern Connecticut Community College'),
(43424, 'https://ror.org/042183v27', 'en', 1, 'https://ror.org/042183v27 Nick Kot Charity For TBI'),
(43425, 'https://ror.org/0421aqz02', 'en', 1, 'https://ror.org/0421aqz02 Westminster College - Missouri'),
(43426, 'https://ror.org/0422vxn54', 'en', 1, 'https://ror.org/0422vxn54 Ministry of Irrigation and Water Development'),
(43427, 'https://ror.org/0423rx754', 'no_lang_code', 1, 'https://ror.org/0423rx754 Converse (United States)'),
(43428, 'https://ror.org/042404z19', 'en', 1, 'https://ror.org/042404z19 Coeliac UK'),
(43429, 'https://ror.org/0424a8630', 'en', 1, 'https://ror.org/0424a8630 Beijing Botanical Garden åŒ—äŗ¬ę¤ē‰©å›­'),
(43430, 'https://ror.org/0424j7c73', 'en', 1, 'https://ror.org/0424j7c73 Institute for Scintillation Materials Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ†ŠøŠ½Ń‚ŠøŠ»ŃŃ†Ń–Š¹Š½ŠøŃ… матеріалів'),
(43431, 'https://ror.org/0425rfe30', 'no_lang_code', 1, 'https://ror.org/0425rfe30 Naturamole (France)'),
(43432, 'https://ror.org/042618t81', 'en', 1, 'https://ror.org/042618t81 Medical Advances Without Animals Trust'),
(43433, 'https://ror.org/0427xec12', 'en', 1, 'https://ror.org/0427xec12 Islamic Society of North America'),
(43434, 'https://ror.org/0428azw09', 'en', 1, 'https://ror.org/0428azw09 Talmudic University'),
(43435, 'https://ror.org/0428exr50', 'no_lang_code', 1, 'https://ror.org/0428exr50 Environmental Systems Research Institute (United States)'),
(43436, 'https://ror.org/0428qkc73', 'en', 1, 'https://ror.org/0428qkc73 Saint Vladimir''s Orthodox Theological Seminary SƩminaire saint-vladimir'),
(43437, 'https://ror.org/04298em06', 'en', 1, 'https://ror.org/04298em06 Central Arid Zone Research Institute'),
(43438, 'https://ror.org/042bcp892', 'en', 1, 'https://ror.org/042bcp892 MTI College'),
(43439, 'https://ror.org/042cj6q83', 'no_lang_code', 1, 'https://ror.org/042cj6q83 Nintendo (United States)'),
(43440, 'https://ror.org/042dg8338', 'en', 1, 'https://ror.org/042dg8338 Rudolf Steiner College'),
(43441, 'https://ror.org/042dgb341', 'fr', 1, 'https://ror.org/042dgb341 Institut Superieur Des Sciences De La Population'),
(43442, 'https://ror.org/042dm9855', 'no_lang_code', 1, 'https://ror.org/042dm9855 Aegon (United States)'),
(43443, 'https://ror.org/042e5sj03', 'no_lang_code', 1, 'https://ror.org/042e5sj03 mHealth (Kenya)'),
(43444, 'https://ror.org/042heys49', 'no_lang_code', 1, 'https://ror.org/042heys49 Islamic Azad University Tonekabon'),
(43445, 'https://ror.org/042k2b411', 'en', 1, 'https://ror.org/042k2b411 National Centre for Sustainable Coastal Management'),
(43446, 'https://ror.org/042k6ee15', 'en', 1, 'https://ror.org/042k6ee15 Pakistan Space and Upper Atmosphere Research Commission Ų®Ł„Ų§Ų¦ŪŒ و ŲØŲ§Ł„Ų§Ų¦ŪŒ فضائی ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖŪŒ Ł…Ų£Ł…ŁˆŲ±ŪŒŪ'),
(43447, 'https://ror.org/042k9q065', 'en', 1, 'https://ror.org/042k9q065 European Business School Paris'),
(43448, 'https://ror.org/042n52121', 'en', 1, 'https://ror.org/042n52121 Southern African Development Community'),
(43449, 'https://ror.org/042pnza07', 'no_lang_code', 1, 'https://ror.org/042pnza07 Pfizer (Australia)'),
(43450, 'https://ror.org/042ryz918', 'pt', 1, 'https://ror.org/042ryz918 ColƩgio Teresiano de Braga'),
(43451, 'https://ror.org/042szwr56', 'en', 1, 'https://ror.org/042szwr56 Spinal Research'),
(43452, 'https://ror.org/042vyea63', 'en', 1, 'https://ror.org/042vyea63 Institute of Environmental Studies & Wetland Management'),
(43453, 'https://ror.org/04320xd69', 'en', 1, 'https://ror.org/04320xd69 National Water Research Center'),
(43454, 'https://ror.org/0432tev68', 'en', 1, 'https://ror.org/0432tev68 Davao Medical School Foundation'),
(43455, 'https://ror.org/0433haa75', 'no_lang_code', 1, 'https://ror.org/0433haa75 Hyundai Heavy Industries (South Korea)'),
(43456, 'https://ror.org/0433rbd97', 'en', 1, 'https://ror.org/0433rbd97 Paradise Valley Community College'),
(43457, 'https://ror.org/0433t4193', 'en', 1, 'https://ror.org/0433t4193 Office of the First Minister and deputy First Minister'),
(43458, 'https://ror.org/0433t4a66', 'en', 1, 'https://ror.org/0433t4a66 Netaji Subhas National Institute of Sports'),
(43459, 'https://ror.org/0435dnz03', 'en', 1, 'https://ror.org/0435dnz03 Interdenominational Theological Center'),
(43460, 'https://ror.org/0436b4p03', 'no_lang_code', 1, 'https://ror.org/0436b4p03 Madera BioSciences (United States)'),
(43461, 'https://ror.org/0436hqh35', 'no_lang_code', 1, 'https://ror.org/0436hqh35 MAPNA Group (Iran)'),
(43462, 'https://ror.org/0437gna76', 'en', 1, 'https://ror.org/0437gna76 Concordia College - New York'),
(43463, 'https://ror.org/0437zex07', 'no_lang_code', 1, 'https://ror.org/0437zex07 Macopharma (France)'),
(43464, 'https://ror.org/04397y226', 'en', 1, 'https://ror.org/04397y226 Canterbury Museum'),
(43465, 'https://ror.org/043b7ay30', 'no_lang_code', 1, 'https://ror.org/043b7ay30 Helion (France)'),
(43466, 'https://ror.org/043cxr310', 'no_lang_code', 1, 'https://ror.org/043cxr310 Mastercard (United States)'),
(43467, 'https://ror.org/043dpbz34', 'fr', 1, 'https://ror.org/043dpbz34 Programme National Multisectoriel de Lutte contre le sida'),
(43468, 'https://ror.org/043f79m81', 'no_lang_code', 1, 'https://ror.org/043f79m81 Neovii Biotech (Germany)'),
(43469, 'https://ror.org/043jbda17', 'fr', 1, 'https://ror.org/043jbda17 Groupe de Musique Electroacoustique d''Albi'),
(43470, 'https://ror.org/043jtq828', 'en', 1, 'https://ror.org/043jtq828 Dallas Christian College'),
(43471, 'https://ror.org/043jwkg64', 'fr', 1, 'https://ror.org/043jwkg64 Agence pour le Développement et la Réhabilitation de la Ville de Fès'),
(43472, 'https://ror.org/043kws463', 'no_lang_code', 1, 'https://ror.org/043kws463 Sun Nuclear (United States)'),
(43473, 'https://ror.org/043n0m737', 'en', 1, 'https://ror.org/043n0m737 Virginia Economic Development Partnership'),
(43474, 'https://ror.org/043ncwv78', 'no_lang_code', 1, 'https://ror.org/043ncwv78 IBM (Denmark)'),
(43475, 'https://ror.org/043rj4j47', 'no_lang_code', 1, 'https://ror.org/043rj4j47 Avantha (India)'),
(43476, 'https://ror.org/043sd6y04', 'no_lang_code', 1, 'https://ror.org/043sd6y04 Helios Global (United States)'),
(43477, 'https://ror.org/043v8bs69', 'en', 1, 'https://ror.org/043v8bs69 Urban Management Centre'),
(43478, 'https://ror.org/043w1y866', 'en', 1, 'https://ror.org/043w1y866 National Research Centre on Mithun'),
(43479, 'https://ror.org/043w4dx82', 'fr', 1, 'https://ror.org/043w4dx82 Ɖcole Militaire Interarmes'),
(43480, 'https://ror.org/043xe1r71', 'no_lang_code', 1, 'https://ror.org/043xe1r71 C-M Concrete Products (Australia)'),
(43481, 'https://ror.org/043xy0x82', 'en', 1, 'https://ror.org/043xy0x82 Boston Baptist College'),
(43482, 'https://ror.org/043z25g17', 'en', 1, 'https://ror.org/043z25g17 Louisiana State University of Alexandria UniversitĆ© d''Ɖtat de Louisiane Ć  Alexandria'),
(43483, 'https://ror.org/043zcks33', 'en', 1, 'https://ror.org/043zcks33 International Institute for Sustainable Development'),
(43484, 'https://ror.org/044037f11', 'en', 1, 'https://ror.org/044037f11 Saratov Research Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Даратовский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук'),
(43485, 'https://ror.org/0440rnc27', 'no_lang_code', 1, 'https://ror.org/0440rnc27 Vilmorin & Cie (France)'),
(43486, 'https://ror.org/0440v7339', 'en', 1, 'https://ror.org/0440v7339 Kenya Plant Health Inspectorate Services'),
(43487, 'https://ror.org/044171329', 'en', 1, 'https://ror.org/044171329 Research Institute of Pharmacology and Regenerative Medicine named ED Goldberg ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фармакологии Šø регенеративной меГицины имени Š•.Š”. Š“Š¾Š»ŃŒŠ“Š±ŠµŃ€Š³Š°'),
(43488, 'https://ror.org/0444zqa87', 'en', 1, 'https://ror.org/0444zqa87 Sri Devaraj Urs Academy of Higher Education and Research'),
(43489, 'https://ror.org/0448r9386', 'en', 1, 'https://ror.org/0448r9386 Divine Word College'),
(43490, 'https://ror.org/0449t3a80', 'no_lang_code', 1, 'https://ror.org/0449t3a80 NortonLifeLock (United States)'),
(43491, 'https://ror.org/044a15h91', 'no_lang_code', 1, 'https://ror.org/044a15h91 Knexus Research (United States)'),
(43492, 'https://ror.org/044aa1z42', 'en', 1, 'https://ror.org/044aa1z42 National Agricultural Research Institute'),
(43493, 'https://ror.org/044abmm29', 'en', 1, 'https://ror.org/044abmm29 Hobe Sound Bible College'),
(43494, 'https://ror.org/044cdgz67', 'en', 1, 'https://ror.org/044cdgz67 Delhi Integrated Multi-Modal Transit System'),
(43495, 'https://ror.org/044d6xz07', 'en', 1, 'https://ror.org/044d6xz07 National HIV/AIDS/STI/TB Council'),
(43496, 'https://ror.org/044f89640', 'no_lang_code', 1, 'https://ror.org/044f89640 Agama Energy (South Africa)'),
(43497, 'https://ror.org/044j2cm68', 'en', 1, 'https://ror.org/044j2cm68 South Tyneside and Sunderland NHS Foundation Trust'),
(43498, 'https://ror.org/044j5mm75', 'fr', 1, 'https://ror.org/044j5mm75 Centre d''Etudes et De Recherche en Informatique et Communications'),
(43499, 'https://ror.org/044jr0f96', 'en', 1, 'https://ror.org/044jr0f96 Government of West Bengal ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— সরকার'),
(43500, 'https://ror.org/044kx9w86', 'no_lang_code', 1, 'https://ror.org/044kx9w86 Vision Objects (France)'),
(43501, 'https://ror.org/044pnzs23', 'fr', 1, 'https://ror.org/044pnzs23 Commune de Matam'),
(43502, 'https://ror.org/044rf5p19', 'en', 1, 'https://ror.org/044rf5p19 Academy of Fine Arts Munich Akademie der Bildenden Künste München'),
(43503, 'https://ror.org/044txcp97', 'en', 1, 'https://ror.org/044txcp97 Emperors College'),
(43504, 'https://ror.org/044vgd869', 'en', 1, 'https://ror.org/044vgd869 National Institute of Cardiovascular Diseases'),
(43505, 'https://ror.org/044vzkq25', 'en', 1, 'https://ror.org/044vzkq25 Marion Military Institute'),
(43506, 'https://ror.org/044vzpb64', 'fr', 1, 'https://ror.org/044vzpb64 Institut de Recherche pour le DƩveloppement'),
(43507, 'https://ror.org/044wc7t32', 'en', 1, 'https://ror.org/044wc7t32 Australian College of Rural and Remote Medicine'),
(43508, 'https://ror.org/044weqf48', 'en', 1, 'https://ror.org/044weqf48 Dalubhasaang Miriam Miriam College'),
(43509, 'https://ror.org/044x5g822', 'en', 1, 'https://ror.org/044x5g822 Pennsylvania College of Art and Design'),
(43510, 'https://ror.org/044ysd349', 'en', 1, 'https://ror.org/044ysd349 Hunan Institute of Science and Technology ę¹–å—ē†å·„å­¦é™¢'),
(43511, 'https://ror.org/044zr9v92', 'no_lang_code', 1, 'https://ror.org/044zr9v92 Allegro Ophthalmics (United States)'),
(43512, 'https://ror.org/045155251', 'en', 1, 'https://ror.org/045155251 Morgan Community College'),
(43513, 'https://ror.org/04517nj83', 'en', 1, 'https://ror.org/04517nj83 New York State Council on Graduate Medical Education'),
(43514, 'https://ror.org/0451asy50', 'no_lang_code', 1, 'https://ror.org/0451asy50 L&E Research (United States)'),
(43515, 'https://ror.org/0452sj958', 'ca', 1, 'https://ror.org/0452sj958 Unió Catalana de Centres de Desenvolupament Infantil i Atenció Precoç'),
(43516, 'https://ror.org/04564ag58', 'en', 1, 'https://ror.org/04564ag58 Glen Oaks Community College'),
(43517, 'https://ror.org/0457x4y88', 'en', 1, 'https://ror.org/0457x4y88 St. Catharine College'),
(43518, 'https://ror.org/04580fn28', 'de', 1, 'https://ror.org/04580fn28 Hamburger Fern-Hochschule'),
(43519, 'https://ror.org/04586n774', 'en', 1, 'https://ror.org/04586n774 Kunming Metallurgy College ę˜†ę˜Žå†¶é‡‘é«˜ē­‰äø“ē§‘å­¦ę ”'),
(43520, 'https://ror.org/045975y75', 'it', 1, 'https://ror.org/045975y75 Conservatorio di Musica Francesco Cilea'),
(43521, 'https://ror.org/045by4v54', 'en', 1, 'https://ror.org/045by4v54 Louisiana Sea Grant'),
(43522, 'https://ror.org/045etwd57', 'no_lang_code', 1, 'https://ror.org/045etwd57 Joaquim Peixoto Azevedo and Sons (Portugal)'),
(43523, 'https://ror.org/045fdzr53', 'en', 1, 'https://ror.org/045fdzr53 North Dakota Space Grant Consortium'),
(43524, 'https://ror.org/045g90a87', 'en', 1, 'https://ror.org/045g90a87 China Leather and Footwear Industry Research Institute äø­å›½ēš®é©å’Œåˆ¶éž‹å·„äøšē ”ē©¶é™¢'),
(43525, 'https://ror.org/045gxp391', 'en', 1, 'https://ror.org/045gxp391 Aneurin Bevan University Health Board'),
(43526, 'https://ror.org/045hatt54', 'en', 1, 'https://ror.org/045hatt54 College of Business and Hotel Management VysokÔ Ŕkola obchodní a hotelovÔ'),
(43527, 'https://ror.org/045hvha55', 'no_lang_code', 1, 'https://ror.org/045hvha55 3-Sigma Research (United States)'),
(43528, 'https://ror.org/045jcv930', 'en', 1, 'https://ror.org/045jcv930 Mali Health'),
(43529, 'https://ror.org/045mrnd19', 'en', 1, 'https://ror.org/045mrnd19 Government of Andhra Pradesh'),
(43530, 'https://ror.org/045p8e908', 'no_lang_code', 1, 'https://ror.org/045p8e908 Mochida Pharmaceutical (Japan) ęŒē”°č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(43531, 'https://ror.org/045sc8e83', 'en', 1, 'https://ror.org/045sc8e83 Federal Center Research Fundamentals of Biotechnology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Šµ основы биотехнологии'),
(43532, 'https://ror.org/045sx7862', 'en', 1, 'https://ror.org/045sx7862 Wentworth Military Academy and College'),
(43533, 'https://ror.org/045t45114', 'pl', 1, 'https://ror.org/045t45114 Wyższa Szkoła Zarządzania Środowiskiem w Tucholi'),
(43534, 'https://ror.org/045v66z43', 'en', 1, 'https://ror.org/045v66z43 Institute of Physical Materials Science Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š˜Š—Š˜Š§Š•Š”ŠšŠžŠ“Šž ŠœŠŠ¢Š•Š Š˜ŠŠ›ŠžŠ’Š•Š”Š•ŠŠ˜ŠÆ'),
(43535, 'https://ror.org/045w8cb33', 'pt', 1, 'https://ror.org/045w8cb33 Faculdades Integradas do Vale do IvaĆ­'),
(43536, 'https://ror.org/045w94e48', 'en', 1, 'https://ror.org/045w94e48 Desert Research Foundation of Namibia'),
(43537, 'https://ror.org/045xd0268', 'en', 1, 'https://ror.org/045xd0268 Institute of the Earth’s Crust Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ земной коры Š”Šž Š ŠŠ'),
(43538, 'https://ror.org/045xmas39', 'pt', 1, 'https://ror.org/045xmas39 Fundacao Joaquim Nabuco'),
(43539, 'https://ror.org/045xx6g59', 'no_lang_code', 1, 'https://ror.org/045xx6g59 Time Warner (United States)'),
(43540, 'https://ror.org/045yq1w74', 'en', 1, 'https://ror.org/045yq1w74 Banco do Brasil Bank of Brazil'),
(43541, 'https://ror.org/045zf1n87', 'no_lang_code', 1, 'https://ror.org/045zf1n87 Albany International (United States)'),
(43542, 'https://ror.org/045zgf584', 'en', 1, 'https://ror.org/045zgf584 Oklahoma State University at Tulsa'),
(43543, 'https://ror.org/04608tw18', 'en', 1, 'https://ror.org/04608tw18 Lincoln College of New England'),
(43544, 'https://ror.org/0461tyx67', 'no_lang_code', 1, 'https://ror.org/0461tyx67 Agram (Poland)'),
(43545, 'https://ror.org/04625j688', 'en', 1, 'https://ror.org/04625j688 University of Maine School of Law'),
(43546, 'https://ror.org/0462yrd97', 'en', 1, 'https://ror.org/0462yrd97 Leukemia & Lymphoma Society of Canada'),
(43547, 'https://ror.org/0465ncg47', 'en', 1, 'https://ror.org/0465ncg47 South Country Central School District'),
(43548, 'https://ror.org/0467tbj17', 'en', 1, 'https://ror.org/0467tbj17 Randolph Community College'),
(43549, 'https://ror.org/0468ehz42', 'en', 1, 'https://ror.org/0468ehz42 Austrian Polar Research Institute'),
(43550, 'https://ror.org/0469ct910', 'pt', 1, 'https://ror.org/0469ct910 Prefeitura Municipal de Curitiba'),
(43551, 'https://ror.org/046e8j462', 'en', 1, 'https://ror.org/046e8j462 Christian Health Association of Malawi'),
(43552, 'https://ror.org/046gt4s87', 'en', 1, 'https://ror.org/046gt4s87 Ministry of Infrastructure, Transport and Networks ΄πουργείο Ī„Ļ€ĪæĪ“ĪæĪ¼ĻŽĪ½, ĪœĪµĻ„Ī±Ļ†ĪæĻĻŽĪ½ και Ī”Ī¹ĪŗĻ„ĻĻ‰Ī½'),
(43553, 'https://ror.org/046hkwj59', 'en', 1, 'https://ror.org/046hkwj59 Coastal Bend College'),
(43554, 'https://ror.org/046j50r07', 'en', 1, 'https://ror.org/046j50r07 San Bernardino Community College District'),
(43555, 'https://ror.org/046msd355', 'en', 1, 'https://ror.org/046msd355 Institute of Complex Development of Bowels Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем комплексного Š¾ŃŠ²Š¾ŠµŠ½ŠøŃ неГр Š ŠŠ'),
(43556, 'https://ror.org/046ns5110', 'de', 1, 'https://ror.org/046ns5110 Fachhochschule der Wirtschaft'),
(43557, 'https://ror.org/046pgjy90', 'en', 1, 'https://ror.org/046pgjy90 Prevention Alzheimer International Foundation'),
(43558, 'https://ror.org/046qg1023', 'en', 1, 'https://ror.org/046qg1023 National Parks Board'),
(43559, 'https://ror.org/046qx3a23', 'en', 1, 'https://ror.org/046qx3a23 Beijing Research Institute of Uranium Geology ę øå·„äøšåŒ—äŗ¬åœ°č“Øē ”ē©¶é™¢'),
(43560, 'https://ror.org/046vhnd58', 'en', 1, 'https://ror.org/046vhnd58 Xavier School of Management'),
(43561, 'https://ror.org/046vt0d34', 'en', 1, 'https://ror.org/046vt0d34 Programme for Accessible Health Communication and Education'),
(43562, 'https://ror.org/046y0et18', 'no_lang_code', 1, 'https://ror.org/046y0et18 OnApp (Gibraltar)'),
(43563, 'https://ror.org/046z1kv09', 'en', 1, 'https://ror.org/046z1kv09 Ohio Emergency Management Agency'),
(43564, 'https://ror.org/046zhvz32', 'fr', 1, 'https://ror.org/046zhvz32 Laboratoire de Recherches VƩtƩrinaires et Zootechniques de Farcha'),
(43565, 'https://ror.org/0470p4z29', 'no_lang_code', 1, 'https://ror.org/0470p4z29 T-MARC'),
(43566, 'https://ror.org/0474dbm94', 'en', 1, 'https://ror.org/0474dbm94 British Institute of Persian Studies'),
(43567, 'https://ror.org/04761rz89', 'en', 1, 'https://ror.org/04761rz89 Whatcom Museum'),
(43568, 'https://ror.org/047ax2108', 'en', 1, 'https://ror.org/047ax2108 Federal Research Centre Coal and Coal Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр ŃƒŠ³Š»Ń Šø ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŠø Š”Šž Š ŠŠ'),
(43569, 'https://ror.org/047bx2p96', 'en', 1, 'https://ror.org/047bx2p96 Neath Port Talbot College'),
(43570, 'https://ror.org/047e48t34', 'fr', 1, 'https://ror.org/047e48t34 Ɖcole Nationale d''Administration PĆ©nitentiaire'),
(43571, 'https://ror.org/047ehxy71', 'en', 1, 'https://ror.org/047ehxy71 Office of Policy and Management'),
(43572, 'https://ror.org/047exzk05', 'en', 1, 'https://ror.org/047exzk05 Nuclear Safety Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ безопасности'),
(43573, 'https://ror.org/047f8bv22', 'en', 1, 'https://ror.org/047f8bv22 Institute of Computational Modeling Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š³Š¾ Š¼Š¾Š“ŠµŠ»ŠøŃ€Š¾Š²Š°Š½ŠøŃ Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(43574, 'https://ror.org/047h65335', 'de', 1, 'https://ror.org/047h65335 Deutsche Hochschule für Prävention und Gesundheitsmanagement'),
(43575, 'https://ror.org/047kynf18', 'no_lang_code', 1, 'https://ror.org/047kynf18 Biocon (India)'),
(43576, 'https://ror.org/047m0fb88', 'en', 1, 'https://ror.org/047m0fb88 Mental Health Services Region Hovedstadens psykiatriske hospital'),
(43577, 'https://ror.org/047njqg32', 'en', 1, 'https://ror.org/047njqg32 Edward F. Szczepanik State School of Higher Professional Education in Suwalki Państwowa Wyższa Szkoła Zawodowa im. prof. E. Szczepanika w Suwałkach'),
(43578, 'https://ror.org/047nvfh18', 'no_lang_code', 1, 'https://ror.org/047nvfh18 Global Green Synergy (Malaysia)'),
(43579, 'https://ror.org/047swfp57', 'en', 1, 'https://ror.org/047swfp57 Russian Research Institute of Fruit Crop Breeding Всероссийского Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° селекции плоГовых ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€'),
(43580, 'https://ror.org/047ta5t95', 'en', 1, 'https://ror.org/047ta5t95 Państwowa Wyższa Szkoła Zawodowa w Chełmie State School of Higher Education in Chełm'),
(43581, 'https://ror.org/047ts9g27', 'no_lang_code', 1, 'https://ror.org/047ts9g27 Nanobiotix (France)'),
(43582, 'https://ror.org/047vv7q25', 'fr', 1, 'https://ror.org/047vv7q25 Ɖcole SupĆ©rieure d''Art du Nord-Pas-de-Calais'),
(43583, 'https://ror.org/047wbzv64', 'en', 1, 'https://ror.org/047wbzv64 All Russian Institute for Scientific and Technical Information Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°ŃƒŃ‡Š½Š¾Š¹ Šø технической информации'),
(43584, 'https://ror.org/047y9vj34', 'en', 1, 'https://ror.org/047y9vj34 Gwinnett College'),
(43585, 'https://ror.org/047yavc84', 'en', 1, 'https://ror.org/047yavc84 Commission on Professionals in Science and Technology'),
(43586, 'https://ror.org/047yw9a66', 'no_lang_code', 1, 'https://ror.org/047yw9a66 Kenya Seed Company (Kenya)'),
(43587, 'https://ror.org/04819nb17', 'no_lang_code', 1, 'https://ror.org/04819nb17 Satriwitthaya 2 School โรงเรียนสตรีวณทยา 2 ą¹ƒąø™ąøžąø£ąø°ąø£ąø²ąøŠąø¹ąø›ąø–ąø±ąø”ąø ą¹ŒąøŖąø”ą¹€ąø”ą¹‡ąøˆąøžąø£ąø°ąøØąø£ąøµąø™ąø„ąø£ąø“ąø™ąø—ąø£ąø²ąøšąø£ąø”ąø£ąø²ąøŠąøŠąø™ąø™ąøµ'),
(43588, 'https://ror.org/0481vq919', 'no_lang_code', 1, 'https://ror.org/0481vq919 NicƩphore CitƩ (France)'),
(43589, 'https://ror.org/04827d323', 'no_lang_code', 1, 'https://ror.org/04827d323 Ressources IngƩnierie (Morocco)'),
(43590, 'https://ror.org/048308827', 'no_lang_code', 1, 'https://ror.org/048308827 Egyptian Consulting & Trading Co. Ltd'),
(43591, 'https://ror.org/0484fme70', 'en', 1, 'https://ror.org/0484fme70 Northeastern Technical College'),
(43592, 'https://ror.org/04850rm18', 'en', 1, 'https://ror.org/04850rm18 Baikal Institute of Nature Management ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(43593, 'https://ror.org/0485q2d74', 'en', 1, 'https://ror.org/0485q2d74 National Institute of Technology, Tsuyama College ę“„å±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(43594, 'https://ror.org/04863f219', 'en', 1, 'https://ror.org/04863f219 Council of State Valtioneuvosto statsrƄdet'),
(43595, 'https://ror.org/0487vq079', 'en', 1, 'https://ror.org/0487vq079 College of Slavonski Brod VeleučiliŔte u Slavonskom Brodu'),
(43596, 'https://ror.org/04883df86', 'no_lang_code', 1, 'https://ror.org/04883df86 Global University Systems'),
(43597, 'https://ror.org/0488f2s41', 'en', 1, 'https://ror.org/0488f2s41 Lakes College'),
(43598, 'https://ror.org/0488nbv42', 'no_lang_code', 1, 'https://ror.org/0488nbv42 MTEL-KTEI Teleinfra (India)'),
(43599, 'https://ror.org/048966a50', 'en', 1, 'https://ror.org/048966a50 New York State Developmental Disabilities Planning Council'),
(43600, 'https://ror.org/048amsp50', 'en', 1, 'https://ror.org/048amsp50 Institute for Computer Aided Design Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматизации ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃ Российской акаГемии наук'),
(43601, 'https://ror.org/048fp0x47', 'en', 1, 'https://ror.org/048fp0x47 Yuxi Normal University ēŽ‰ęŗŖåøˆčŒƒå­¦é™¢'),
(43602, 'https://ror.org/048fs3s61', 'pt', 1, 'https://ror.org/048fs3s61 Centro de Medicina de Reabilitacao do Alcoitão'),
(43603, 'https://ror.org/048gre751', 'fr', 1, 'https://ror.org/048gre751 Haute Ɖcole PĆ©dagogique Fribourg'),
(43604, 'https://ror.org/048j1zc07', 'en', 1, 'https://ror.org/048j1zc07 Bexley College'),
(43605, 'https://ror.org/048jw1p35', 'no_lang_code', 1, 'https://ror.org/048jw1p35 Intel (Malaysia)'),
(43606, 'https://ror.org/048m92c51', 'en', 1, 'https://ror.org/048m92c51 Foundation for Advancing Veterans Health Research'),
(43607, 'https://ror.org/048mbp462', 'en', 1, 'https://ror.org/048mbp462 Community of Professional Sociologists Дообщество ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… социологов'),
(43608, 'https://ror.org/048nm8g63', 'en', 1, 'https://ror.org/048nm8g63 Institute of Environment and Sustainable Development in Agriculture å†œäøšēŽÆå¢ƒäøŽåÆęŒē»­å‘å±•ē ”ē©¶ę‰€'),
(43609, 'https://ror.org/048nw8b43', 'en', 1, 'https://ror.org/048nw8b43 Haywood Community College'),
(43610, 'https://ror.org/048s34f25', 'no_lang_code', 1, 'https://ror.org/048s34f25 Umgeni Water Amanzi'),
(43611, 'https://ror.org/048vved44', 'pt', 1, 'https://ror.org/048vved44 Associação Desportiva e Cultural da Escola Preparatória Diogo Cão'),
(43612, 'https://ror.org/048w4ef35', 'en', 1, 'https://ror.org/048w4ef35 South African Institute of Tax Practitioners'),
(43613, 'https://ror.org/048x0xw34', 'en', 1, 'https://ror.org/048x0xw34 Toronto Baptist Seminary and Bible College'),
(43614, 'https://ror.org/0490cs563', 'sv', 1, 'https://ror.org/0490cs563 Samernas Utbildningscentrum SƔmi Educational Centre'),
(43615, 'https://ror.org/0490rfk07', 'en', 1, 'https://ror.org/0490rfk07 Feed Research Institute äø­å›½å†œäøšē§‘å­¦é™¢é„²ę–™ē ”ē©¶ę‰€'),
(43616, 'https://ror.org/0490tje89', 'en', 1, 'https://ror.org/0490tje89 Daugavpils Medical College Daugavpils medicinas koledza'),
(43617, 'https://ror.org/0491qwe57', 'en', 1, 'https://ror.org/0491qwe57 Korea Naval Academy 핓군사꓀학교'),
(43618, 'https://ror.org/04946aj33', 'no_lang_code', 1, 'https://ror.org/04946aj33 De Beers (South Africa)'),
(43619, 'https://ror.org/04951hq16', 'en', 1, 'https://ror.org/04951hq16 An Roinn Fiontar, TrƔdƔla agus Fostaƭochta Department of Enterprise, Trade and Employment'),
(43620, 'https://ror.org/0495w1157', 'en', 1, 'https://ror.org/0495w1157 San Joaquin Delta College'),
(43621, 'https://ror.org/0497mxq65', 'en', 1, 'https://ror.org/0497mxq65 Gian Sagar Dental College and Hospital'),
(43622, 'https://ror.org/0497xq319', 'en', 1, 'https://ror.org/0497xq319 Anna Freud Centre'),
(43623, 'https://ror.org/049aqs582', 'no_lang_code', 1, 'https://ror.org/049aqs582 Valley National Bank (United States)'),
(43624, 'https://ror.org/049dnw004', 'en', 1, 'https://ror.org/049dnw004 Society of Environmental Toxicology and Chemistry'),
(43625, 'https://ror.org/049faq822', 'en', 1, 'https://ror.org/049faq822 Institute of Natural Resources'),
(43626, 'https://ror.org/049h22071', 'en', 1, 'https://ror.org/049h22071 Arte Institute'),
(43627, 'https://ror.org/049h8sz96', 'pl', 1, 'https://ror.org/049h8sz96 Wyższa Szkoła Humanistyczno-Przyrodnicza w Sandomierzu'),
(43628, 'https://ror.org/049kydx29', 'en', 1, 'https://ror.org/049kydx29 Perpetual Succour Hospital'),
(43629, 'https://ror.org/049pzbj60', 'en', 1, 'https://ror.org/049pzbj60 Institute of Mining Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного Гела Š”Šž Š ŠŠ'),
(43630, 'https://ror.org/049ref070', 'en', 1, 'https://ror.org/049ref070 Southeastern Technical College'),
(43631, 'https://ror.org/049s3yd39', 'en', 1, 'https://ror.org/049s3yd39 Native American Bible College'),
(43632, 'https://ror.org/049sgh675', 'pt', 1, 'https://ror.org/049sgh675 Agência Nacional de Energia Elétrica'),
(43633, 'https://ror.org/049wrhp57', 'en', 1, 'https://ror.org/049wrhp57 Phoenix Institute of Herbal Medicine and Acupuncture'),
(43634, 'https://ror.org/049wv9211', 'en', 1, 'https://ror.org/049wv9211 Elizabeth Glaser Pediatric AIDS Foundation'),
(43635, 'https://ror.org/049ygtv97', 'sv', 1, 'https://ror.org/049ygtv97 Landstinget Dalarna'),
(43636, 'https://ror.org/04a1nmz13', 'it', 1, 'https://ror.org/04a1nmz13 Accademia di Belle Arti di Roma'),
(43637, 'https://ror.org/04a2pvv21', 'no_lang_code', 1, 'https://ror.org/04a2pvv21 Strathmore Company (United States)'),
(43638, 'https://ror.org/04a30tf85', 'en', 1, 'https://ror.org/04a30tf85 Beijing Vaccum Electronic Research Institute åŒ—äŗ¬ēœŸē©ŗē”µå­ęŠ€ęœÆē ”ē©¶ę‰€'),
(43639, 'https://ror.org/04a39s417', 'en', 1, 'https://ror.org/04a39s417 Indian Institute of Remote Sensing'),
(43640, 'https://ror.org/04a5x3y83', 'en', 1, 'https://ror.org/04a5x3y83 Caldwell Community College & Technical Institute'),
(43641, 'https://ror.org/04a7dp661', 'no_lang_code', 1, 'https://ror.org/04a7dp661 SertiNK Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ автономное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŃƒŃ‡ŠµŠ±Š½Ń‹Š¹ центр Дварка Šø ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŒ при ŠœŠ“ТУ им. Š.Š­. Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(43642, 'https://ror.org/04aa84x73', 'en', 1, 'https://ror.org/04aa84x73 National Institute of Technology, Hiroshima College åŗƒå³¶å•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(43643, 'https://ror.org/04aa9w798', 'fr', 1, 'https://ror.org/04aa9w798 Consortium pour la recherche Ʃconomique et sociale'),
(43644, 'https://ror.org/04ac17w60', 'en', 1, 'https://ror.org/04ac17w60 Garden City Community College'),
(43645, 'https://ror.org/04ac3f410', 'pl', 1, 'https://ror.org/04ac3f410 Gliwicka Wyższa Szkoła Przedsiębiorczości'),
(43646, 'https://ror.org/04af9zr29', 'en', 1, 'https://ror.org/04af9zr29 Innoviris'),
(43647, 'https://ror.org/04afrdx88', 'en', 1, 'https://ror.org/04afrdx88 Agri-Food and Veterinary Authority of Singapore'),
(43648, 'https://ror.org/04ag58v20', 'en', 1, 'https://ror.org/04ag58v20 Antwerp Maritime Academy Hogere Zeevaartschool Antwerpen'),
(43649, 'https://ror.org/04age2m32', 'pl', 1, 'https://ror.org/04age2m32 Państwowa Wyższa Szkoła Zawodowa w Raciborzu'),
(43650, 'https://ror.org/04ajtb593', 'en', 1, 'https://ror.org/04ajtb593 Indian Air Force ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤¾ą¤Æą„ ą¤øą„‡ą¤Øą¤¾'),
(43651, 'https://ror.org/04ak1vs79', 'fr', 1, 'https://ror.org/04ak1vs79 Ɖcole SupĆ©rieure des IngĆ©nieurs de l''Ɖquipement Rural'),
(43652, 'https://ror.org/04akhbz72', 'en', 1, 'https://ror.org/04akhbz72 Hong Kong Institute of Surveyors é¦™ęøÆęø¬é‡åø«å­øęœƒ'),
(43653, 'https://ror.org/04anve402', 'en', 1, 'https://ror.org/04anve402 World Intellectual Property Organization'),
(43654, 'https://ror.org/04aqw2724', 'en', 1, 'https://ror.org/04aqw2724 African Association of Remote Sensing of the Environment'),
(43655, 'https://ror.org/04as4jd41', 'en', 1, 'https://ror.org/04as4jd41 Prevent Alzheimer’s Disease 2020'),
(43656, 'https://ror.org/04ateak98', 'en', 1, 'https://ror.org/04ateak98 Base Training'),
(43657, 'https://ror.org/04atrwr33', 'en', 1, 'https://ror.org/04atrwr33 Duchy College'),
(43658, 'https://ror.org/04ax2jp69', 'en', 1, 'https://ror.org/04ax2jp69 Geological Museum of China äø­å›½åœ°č“Øåšē‰©é¦†'),
(43659, 'https://ror.org/04ay6mm65', 'en', 1, 'https://ror.org/04ay6mm65 International Centre for Reindeer Husbandry'),
(43660, 'https://ror.org/04ayk8723', 'en', 1, 'https://ror.org/04ayk8723 G.S. Science, Arts And Commerce College'),
(43661, 'https://ror.org/04ayxkk27', 'no_lang_code', 1, 'https://ror.org/04ayxkk27 Blackstar Amplification (United Kingdom)'),
(43662, 'https://ror.org/04aznz088', 'no_lang_code', 1, 'https://ror.org/04aznz088 GroupeOPA (France)'),
(43663, 'https://ror.org/04b0jpj80', 'en', 1, 'https://ror.org/04b0jpj80 Texarkana College'),
(43664, 'https://ror.org/04b0w1821', 'no_lang_code', 1, 'https://ror.org/04b0w1821 Hiwin Technologies (Taiwan)'),
(43665, 'https://ror.org/04b3wz043', 'en', 1, 'https://ror.org/04b3wz043 Ministry of Technology, Innovation & Citizens'' Services'),
(43666, 'https://ror.org/04b4b5885', 'no_lang_code', 1, 'https://ror.org/04b4b5885 Moneague College'),
(43667, 'https://ror.org/04b581c27', 'en', 1, 'https://ror.org/04b581c27 Institute of Applied Astronomy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной астрономии'),
(43668, 'https://ror.org/04b6b6f76', 'en', 1, 'https://ror.org/04b6b6f76 North Central State College'),
(43669, 'https://ror.org/04b6chq95', 'en', 1, 'https://ror.org/04b6chq95 Ministry of Water and Irrigation Wizara ya Maji na Umwagiliaji'),
(43670, 'https://ror.org/04bangx95', 'en', 1, 'https://ror.org/04bangx95 Pennsylvania Department of Conservation and Natural Resources'),
(43671, 'https://ror.org/04bbkwf42', 'en', 1, 'https://ror.org/04bbkwf42 New York State Department of Transportation'),
(43672, 'https://ror.org/04bc8dn02', 'de', 1, 'https://ror.org/04bc8dn02 Christoffel Blinden Mission'),
(43673, 'https://ror.org/04bcrv494', 'en', 1, 'https://ror.org/04bcrv494 National Institute of Solar Energy'),
(43674, 'https://ror.org/04bd4jp27', 'en', 1, 'https://ror.org/04bd4jp27 Redlands Community College'),
(43675, 'https://ror.org/04bdeg508', 'en', 1, 'https://ror.org/04bdeg508 Petroleum Research Newfoundland and Labrador'),
(43676, 'https://ror.org/04bdnn252', 'en', 1, 'https://ror.org/04bdnn252 Sussex County Community College'),
(43677, 'https://ror.org/04beyjz13', 'en', 1, 'https://ror.org/04beyjz13 European Tropical Forest Research Network'),
(43678, 'https://ror.org/04bf6dq94', 'en', 1, 'https://ror.org/04bf6dq94 PƤdagogische Hochschule Thurgau Thurgau University of Teacher Education'),
(43679, 'https://ror.org/04bfba223', 'es', 1, 'https://ror.org/04bfba223 Instituto de Investigaciones ElƩctricas'),
(43680, 'https://ror.org/04bgn1297', 'en', 1, 'https://ror.org/04bgn1297 Higher School of Agribusiness Wyższa Szkoła Agrobiznesu w Łomży Š’Ń‹ŃŃˆŠ°Ń Школа Агробизнеса в Ломже'),
(43681, 'https://ror.org/04bhgg012', 'es', 1, 'https://ror.org/04bhgg012 Universidad PolitƩcnica de Tulancingo'),
(43682, 'https://ror.org/04bjq2e40', 'en', 1, 'https://ror.org/04bjq2e40 College of North West London'),
(43683, 'https://ror.org/04bqa9n74', 'en', 1, 'https://ror.org/04bqa9n74 United States Global Change Research Program'),
(43684, 'https://ror.org/04brn7x66', 'en', 1, 'https://ror.org/04brn7x66 Technological Educational Institute of Epirus Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ηπείρου'),
(43685, 'https://ror.org/04brx9y30', 'en', 1, 'https://ror.org/04brx9y30 Beijing Water Science and Technology Institute åŒ—äŗ¬åø‚ę°“ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(43686, 'https://ror.org/04bwc3e35', 'en', 1, 'https://ror.org/04bwc3e35 Centre for the Study of Adolescence'),
(43687, 'https://ror.org/04bx29k51', 'en', 1, 'https://ror.org/04bx29k51 Northern Essex Community College'),
(43688, 'https://ror.org/04bxq2s19', 'no_lang_code', 1, 'https://ror.org/04bxq2s19 Evalueserve (India)'),
(43689, 'https://ror.org/04bz8f123', 'en', 1, 'https://ror.org/04bz8f123 Chhattisgarh Council of Science and Technology ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ परिषद'),
(43690, 'https://ror.org/04bzq6109', 'en', 1, 'https://ror.org/04bzq6109 Central Tobacco Research Institute'),
(43691, 'https://ror.org/04c0a2034', 'en', 1, 'https://ror.org/04c0a2034 Institute of Special Animal and Plant Sciences äø­å›½å†œäøšē§‘å­¦é™¢ē‰¹äŗ§ē ”ē©¶ę‰€'),
(43692, 'https://ror.org/04c2h1p08', 'no_lang_code', 1, 'https://ror.org/04c2h1p08 State Farm (United States)'),
(43693, 'https://ror.org/04c3ymz82', 'pt', 1, 'https://ror.org/04c3ymz82 Faculdade de Tecnologia e CiĆŖncias'),
(43694, 'https://ror.org/04c49cg83', 'en', 1, 'https://ror.org/04c49cg83 Clarendon College'),
(43695, 'https://ror.org/04c4jf131', 'en', 1, 'https://ror.org/04c4jf131 Government of Uganda'),
(43696, 'https://ror.org/04c581336', 'en', 1, 'https://ror.org/04c581336 Kenrick–Glennon Seminary'),
(43697, 'https://ror.org/04c7vyz18', 'en', 1, 'https://ror.org/04c7vyz18 Breakthrough Institute');
INSERT INTO `rors` VALUES
(43698, 'https://ror.org/04c99m021', 'no_lang_code', 1, 'https://ror.org/04c99m021 International Drilling Services (Tunisia)'),
(43699, 'https://ror.org/04ca1xj65', 'en', 1, 'https://ror.org/04ca1xj65 United Theological Seminary'),
(43700, 'https://ror.org/04caq8026', 'en', 1, 'https://ror.org/04caq8026 Qinghai Meteorological Bureau é’ęµ·ēœę°”č±”å±€'),
(43701, 'https://ror.org/04cas5j33', 'en', 1, 'https://ror.org/04cas5j33 Grace Bible College'),
(43702, 'https://ror.org/04ccjrt09', 'no_lang_code', 1, 'https://ror.org/04ccjrt09 AECpolymers (France)'),
(43703, 'https://ror.org/04cdzwd37', 'en', 1, 'https://ror.org/04cdzwd37 Merchant Marine Academy ΑκαΓημίες Ī•Ī¼Ļ€ĪæĻĪ¹ĪŗĪæĻ ĪĪ±Ļ…Ļ„Ī¹ĪŗĪæĻ'),
(43704, 'https://ror.org/04ce52x58', 'it', 1, 'https://ror.org/04ce52x58 Conservatorio di Musica Antonio Scontrino Trapani'),
(43705, 'https://ror.org/04ce87537', 'en', 1, 'https://ror.org/04ce87537 Sherwood Forest Hospitals NHS Foundation Trust'),
(43706, 'https://ror.org/04cg1fd02', 'en', 1, 'https://ror.org/04cg1fd02 Wilkes Community College'),
(43707, 'https://ror.org/04ch3k260', 'fr', 1, 'https://ror.org/04ch3k260 Ɖcole SupĆ©rieure d''Art et de Design de Reims'),
(43708, 'https://ror.org/04cmdwv88', 'no_lang_code', 1, 'https://ror.org/04cmdwv88 Close Concerns (United States)'),
(43709, 'https://ror.org/04cpebv17', 'no_lang_code', 1, 'https://ror.org/04cpebv17 Northernchem (Canada)'),
(43710, 'https://ror.org/04cpx2569', 'no_lang_code', 1, 'https://ror.org/04cpx2569 Samsung (India)'),
(43711, 'https://ror.org/04cqp5h60', 'en', 1, 'https://ror.org/04cqp5h60 The Independent Games Developers Association'),
(43712, 'https://ror.org/04cvyy414', 'en', 1, 'https://ror.org/04cvyy414 Connecticut Department of Labor'),
(43713, 'https://ror.org/04cy3kb56', 'en', 1, 'https://ror.org/04cy3kb56 Indian National Trust for Art and Cultural Heritage'),
(43714, 'https://ror.org/04czq2g39', 'en', 1, 'https://ror.org/04czq2g39 Uganda National Association Of the Deaf'),
(43715, 'https://ror.org/04czy3x31', 'en', 1, 'https://ror.org/04czy3x31 Heritage Bible College'),
(43716, 'https://ror.org/04d1ryd22', 'fr', 1, 'https://ror.org/04d1ryd22 Ɖcole des Avocats RhĆ“ne-Alpes'),
(43717, 'https://ror.org/04d357y30', 'pt', 1, 'https://ror.org/04d357y30 Instituto Nacional de Ciência e Tecnologia para o Controle das Intoxicações por Plantas'),
(43718, 'https://ror.org/04d3cfv77', 'en', 1, 'https://ror.org/04d3cfv77 Writers Project of Ghana'),
(43719, 'https://ror.org/04d3d5q14', 'en', 1, 'https://ror.org/04d3d5q14 Inspiration Innovation Synergy University'),
(43720, 'https://ror.org/04d5f4w73', 'en', 1, 'https://ror.org/04d5f4w73 Stockholm Health Care Services Stockholms lƤns sjukvƄrdsomrƄde'),
(43721, 'https://ror.org/04d5ffq02', 'en', 1, 'https://ror.org/04d5ffq02 Pingry School'),
(43722, 'https://ror.org/04d5j6d22', 'en', 1, 'https://ror.org/04d5j6d22 Moberly Area Community College'),
(43723, 'https://ror.org/04d68zn48', 'de', 1, 'https://ror.org/04d68zn48 Landesschulrat für Tirol'),
(43724, 'https://ror.org/04d81ed36', 'en', 1, 'https://ror.org/04d81ed36 Technology Information, Forecasting and Assessment Council ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą„‚ą¤šą¤Øą¤¾, ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤Øą„ą¤®ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤®ą„‚ą¤²ą„ą¤Æą¤¾ą¤‚ą¤•ą¤Ø परिषद'),
(43725, 'https://ror.org/04d8byx33', 'en', 1, 'https://ror.org/04d8byx33 Georgia Highlands College'),
(43726, 'https://ror.org/04d94aw40', 'en', 1, 'https://ror.org/04d94aw40 Ministry of Lands, Housing & Urban Development'),
(43727, 'https://ror.org/04d9y9m22', 'en', 1, 'https://ror.org/04d9y9m22 National Institute of Technology, Miyakonojo College éƒ½åŸŽå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(43728, 'https://ror.org/04da1m383', 'en', 1, 'https://ror.org/04da1m383 University of Garden City'),
(43729, 'https://ror.org/04db3be62', 'fr', 1, 'https://ror.org/04db3be62 Laboratoire de Chimie Organique'),
(43730, 'https://ror.org/04dd9ss52', 'no_lang_code', 1, 'https://ror.org/04dd9ss52 General Electric (India)'),
(43731, 'https://ror.org/04de57j78', 'no_lang_code', 1, 'https://ror.org/04de57j78 Apex Innovations (United States)'),
(43732, 'https://ror.org/04ded8w14', 'en', 1, 'https://ror.org/04ded8w14 Virginia Information Technologies Agency'),
(43733, 'https://ror.org/04dfrdm61', 'en', 1, 'https://ror.org/04dfrdm61 Unitelma Sapienza University UniversitĆ  telematica UNITELMA Sapienza'),
(43734, 'https://ror.org/04dg1kd85', 'en', 1, 'https://ror.org/04dg1kd85 Department of Research and Specialist Services'),
(43735, 'https://ror.org/04dh0w640', 'en', 1, 'https://ror.org/04dh0w640 Institute of Population and Public Health'),
(43736, 'https://ror.org/04dh1cz78', 'en', 1, 'https://ror.org/04dh1cz78 Pasold Research Fund'),
(43737, 'https://ror.org/04dh20q25', 'pt', 1, 'https://ror.org/04dh20q25 Escola Profissional Profitecla'),
(43738, 'https://ror.org/04dkqr510', 'no_lang_code', 1, 'https://ror.org/04dkqr510 Assystem (Morocco)'),
(43739, 'https://ror.org/04dpna982', 'en', 1, 'https://ror.org/04dpna982 Korea Fair Trade Commission ź³µģ •ź±°ėž˜ģœ„ģ›ķšŒ'),
(43740, 'https://ror.org/04dpszf19', 'en', 1, 'https://ror.org/04dpszf19 Pennsylvania Department Of State'),
(43741, 'https://ror.org/04dpx8b39', 'no_lang_code', 1, 'https://ror.org/04dpx8b39 Shanghai Supercomputer Center (China) äøŠęµ·č¶…ēŗ§č®”ē®—äø­åæƒ'),
(43742, 'https://ror.org/04dvezj25', 'en', 1, 'https://ror.org/04dvezj25 Frederick S. Pardee RAND Graduate School'),
(43743, 'https://ror.org/04dvrba58', 'en', 1, 'https://ror.org/04dvrba58 Anchorage'),
(43744, 'https://ror.org/04dw3t358', 'en', 1, 'https://ror.org/04dw3t358 Zhengzhou Fruit Research Institute äø­å›½å†œäøšē§‘å­¦é™¢éƒ‘å·žęžœę ‘ē ”ē©¶ę‰€'),
(43745, 'https://ror.org/04dw8vw47', 'fr', 1, 'https://ror.org/04dw8vw47 Ɖcole Nationale SupĆ©rieure d''Architecture de Clermont-Ferrand'),
(43746, 'https://ror.org/04dxtny83', 'no_lang_code', 1, 'https://ror.org/04dxtny83 Section27'),
(43747, 'https://ror.org/04dy4th59', 'en', 1, 'https://ror.org/04dy4th59 Bon Secours Memorial College of Nursing'),
(43748, 'https://ror.org/04dyam975', 'it', 1, 'https://ror.org/04dyam975 Sistema Bibliotecario di Udine e dell''Hinterland Udinese'),
(43749, 'https://ror.org/04dzf3m45', 'en', 1, 'https://ror.org/04dzf3m45 Desert Research Center'),
(43750, 'https://ror.org/04e02dg93', 'en', 1, 'https://ror.org/04e02dg93 Concordia College Alabama'),
(43751, 'https://ror.org/04e09qg36', 'en', 1, 'https://ror.org/04e09qg36 Institute of Ecology and Genetics of Microorganisms'),
(43752, 'https://ror.org/04e1s8k93', 'no_lang_code', 1, 'https://ror.org/04e1s8k93 Allium & Brassica Centre (United Kingdom)'),
(43753, 'https://ror.org/04e2v9172', 'no_lang_code', 1, 'https://ror.org/04e2v9172 Vectec Solutions (United States)'),
(43754, 'https://ror.org/04e3vbx44', 'fr', 1, 'https://ror.org/04e3vbx44 MinistĆØre de la Culture'),
(43755, 'https://ror.org/04e3z5r84', 'en', 1, 'https://ror.org/04e3z5r84 Islamic Development Bank Ų§Ł„ŲØŁ†Łƒ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ Ł„Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(43756, 'https://ror.org/04e433w04', 'no_lang_code', 1, 'https://ror.org/04e433w04 Cornerstone Specialty Wood Products (United States)'),
(43757, 'https://ror.org/04e57v876', 'en', 1, 'https://ror.org/04e57v876 Career Institute Of Medical & Dental Sciences and Hospital'),
(43758, 'https://ror.org/04e5d6174', 'en', 1, 'https://ror.org/04e5d6174 Indian Army ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤„ą¤²ą¤øą„‡ą¤Øą¤¾'),
(43759, 'https://ror.org/04e72vw61', 'en', 1, 'https://ror.org/04e72vw61 Debre Berhan University'),
(43760, 'https://ror.org/04eak0r73', 'en', 1, 'https://ror.org/04eak0r73 Child Health Research Foundation'),
(43761, 'https://ror.org/04eb14s37', 'en', 1, 'https://ror.org/04eb14s37 Institute of Molecular Medicine'),
(43762, 'https://ror.org/04edktq70', 'en', 1, 'https://ror.org/04edktq70 Royal British Legion'),
(43763, 'https://ror.org/04eehbt36', 'en', 1, 'https://ror.org/04eehbt36 Nevada Space Grant Consortium'),
(43764, 'https://ror.org/04ef8pm25', 'en', 1, 'https://ror.org/04ef8pm25 Archive of the Russian Academy of Sciences Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ филиал Архива Š ŠŠ'),
(43765, 'https://ror.org/04ef94584', 'fr', 1, 'https://ror.org/04ef94584 Institut Libre d''Education Physique SupƩrieur'),
(43766, 'https://ror.org/04efjkk54', 'no_lang_code', 1, 'https://ror.org/04efjkk54 KMG Ultra Pure Chemicals (France)'),
(43767, 'https://ror.org/04eghjs57', 'fr', 1, 'https://ror.org/04eghjs57 Ɖcole Nationale SupĆ©rieure d''Architecture de Bretagne'),
(43768, 'https://ror.org/04ejbez48', 'en', 1, 'https://ror.org/04ejbez48 Jēkabpils Agrobiznesa Koledža ​​​Jekabpils Agrobusiness College'),
(43769, 'https://ror.org/04ekv3k57', 'en', 1, 'https://ror.org/04ekv3k57 Development Bank of Saxony SƤchsische Aufbaubank'),
(43770, 'https://ror.org/04ep6k202', 'en', 1, 'https://ror.org/04ep6k202 Trinity Medical Center'),
(43771, 'https://ror.org/04eqe6790', 'no_lang_code', 1, 'https://ror.org/04eqe6790 Danish Hydraulic Institute (India)'),
(43772, 'https://ror.org/04eqxyk73', 'en', 1, 'https://ror.org/04eqxyk73 Institute of Volcanology and Seismology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вулканологии Šø сейсмологии'),
(43773, 'https://ror.org/04er5hw95', 'it', 1, 'https://ror.org/04er5hw95 Conservatorio di Musica Egidio R. Duni'),
(43774, 'https://ror.org/04esabr24', 'en', 1, 'https://ror.org/04esabr24 Institute of Nephro Urology'),
(43775, 'https://ror.org/04etgav66', 'no_lang_code', 1, 'https://ror.org/04etgav66 Colgate-Palmolive (Switzerland)'),
(43776, 'https://ror.org/04etqyp34', 'cy', 1, 'https://ror.org/04etqyp34 Remedi'),
(43777, 'https://ror.org/04etshx64', 'en', 1, 'https://ror.org/04etshx64 United States Capitol Historical Society'),
(43778, 'https://ror.org/04evh7y43', 'en', 1, 'https://ror.org/04evh7y43 Division of Acquisition and Cooperative Support'),
(43779, 'https://ror.org/04ewbdy08', 'en', 1, 'https://ror.org/04ewbdy08 University of Agribusiness and Rural Development'),
(43780, 'https://ror.org/04ewkgj12', 'fr', 1, 'https://ror.org/04ewkgj12 Fondation Le Corbusier'),
(43781, 'https://ror.org/04excha61', 'no_lang_code', 1, 'https://ror.org/04excha61 Paion (United Kingdom)'),
(43782, 'https://ror.org/04eyn1y36', 'de', 1, 'https://ror.org/04eyn1y36 Kantonsspital Baselland Standort Bruderholz'),
(43783, 'https://ror.org/04f00y561', 'en', 1, 'https://ror.org/04f00y561 Seton Hall Preparatory School'),
(43784, 'https://ror.org/04f0j5918', 'en', 1, 'https://ror.org/04f0j5918 Baptist Theological Academy'),
(43785, 'https://ror.org/04f1ha654', 'no_lang_code', 1, 'https://ror.org/04f1ha654 M S Jacovides (Greece)'),
(43786, 'https://ror.org/04f2n1245', 'no_lang_code', 1, 'https://ror.org/04f2n1245 Intel (India)'),
(43787, 'https://ror.org/04f3rva03', 'en', 1, 'https://ror.org/04f3rva03 MICAIA Foundation'),
(43788, 'https://ror.org/04f3vpm64', 'en', 1, 'https://ror.org/04f3vpm64 Institute of Anthropology and Ethnography Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠžŃ€Š“ена Š”Ń€ŃƒŠ¶Š±Ń‹ нароГов Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ‚Š½Š¾Š»Š¾Š³ŠøŠø Šø антропологии им. Š.Š. ŠœŠøŠŗŠ»ŃƒŃ…Š¾-ŠœŠ°ŠŗŠ»Š°Ń Российской акаГемии наук'),
(43789, 'https://ror.org/04f5fw921', 'en', 1, 'https://ror.org/04f5fw921 Sojagnon Association'),
(43790, 'https://ror.org/04f6gef75', 'en', 1, 'https://ror.org/04f6gef75 Government Medical College and Hospital'),
(43791, 'https://ror.org/04faa0n67', 'en', 1, 'https://ror.org/04faa0n67 Institute of Economics and Industrial Engineering Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø организации ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š³Š¾ произвоГства Š”Šž Š ŠŠ'),
(43792, 'https://ror.org/04fat9m09', 'fr', 1, 'https://ror.org/04fat9m09 Centre de Recherche & DĆ©veloppement de l''ƉlectricitĆ© et du Gaz'),
(43793, 'https://ror.org/04fbzd287', 'en', 1, 'https://ror.org/04fbzd287 Banc d''Arguin National Park Parc National du Banc d''Arguin'),
(43794, 'https://ror.org/04fdat027', 'en', 1, 'https://ror.org/04fdat027 IU International University of Applied Sciences IU Internationale Hochschule'),
(43795, 'https://ror.org/04fdz6f52', 'en', 1, 'https://ror.org/04fdz6f52 Crossroads Bible College'),
(43796, 'https://ror.org/04ffdar46', 'en', 1, 'https://ror.org/04ffdar46 Ministry of Health and Social Welfare'),
(43797, 'https://ror.org/04ffrf281', 'no_lang_code', 1, 'https://ror.org/04ffrf281 Deutsche Telekom (South Africa)'),
(43798, 'https://ror.org/04ffw0491', 'en', 1, 'https://ror.org/04ffw0491 Artevelde University College Ghent'),
(43799, 'https://ror.org/04ffyk186', 'en', 1, 'https://ror.org/04ffyk186 Veld Products Research & Development'),
(43800, 'https://ror.org/04fg7fb49', 'en', 1, 'https://ror.org/04fg7fb49 Institute of Cell Biology'),
(43801, 'https://ror.org/04fg92n70', 'no_lang_code', 1, 'https://ror.org/04fg92n70 Arion (France)'),
(43802, 'https://ror.org/04fh8an03', 'en', 1, 'https://ror.org/04fh8an03 Mountain View College'),
(43803, 'https://ror.org/04fhp7r51', 'en', 1, 'https://ror.org/04fhp7r51 Davao del Norte State College'),
(43804, 'https://ror.org/04fqqys39', 'en', 1, 'https://ror.org/04fqqys39 Computational Intelligence and Information Systems Lab'),
(43805, 'https://ror.org/04fr7ha98', 'no_lang_code', 1, 'https://ror.org/04fr7ha98 Pearl Seeds (Uganda)'),
(43806, 'https://ror.org/04fsb1973', 'en', 1, 'https://ror.org/04fsb1973 Texas College'),
(43807, 'https://ror.org/04fszdm13', 'en', 1, 'https://ror.org/04fszdm13 Art Academy of Cincinnati'),
(43808, 'https://ror.org/04fxab197', 'en', 1, 'https://ror.org/04fxab197 Natural Science and Technical Academy Isny Naturwissenschaftlich-Technische Akademie Isny'),
(43809, 'https://ror.org/04fydbf11', 'en', 1, 'https://ror.org/04fydbf11 Instituto Superior de Gestão BancÔria Portuguese School of Bank Management'),
(43810, 'https://ror.org/04g2mk116', 'no_lang_code', 1, 'https://ror.org/04g2mk116 Hemarina (France)'),
(43811, 'https://ror.org/04g3mbv81', 'en', 1, 'https://ror.org/04g3mbv81 European Graduate School'),
(43812, 'https://ror.org/04g3ykc66', 'en', 1, 'https://ror.org/04g3ykc66 Maine Sea Grant'),
(43813, 'https://ror.org/04g4hjw43', 'en', 1, 'https://ror.org/04g4hjw43 A.V. Dumansky Institute of Colloid and Water Chemistry Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ колоїГної хімії та хімії воГи ім. А.Š’. Š”ŃƒŠ¼Š°Š½ŃŃŒŠŗŠ¾Š³Š¾'),
(43814, 'https://ror.org/04g4v2334', 'no_lang_code', 1, 'https://ror.org/04g4v2334 Sakhr Software (Egypt)'),
(43815, 'https://ror.org/04g96bg87', 'en', 1, 'https://ror.org/04g96bg87 TALLINNA ƄRIPANGA AS Tallinn Business Bank'),
(43816, 'https://ror.org/04gap2p44', 'en', 1, 'https://ror.org/04gap2p44 Society of Exploration Geophysicists'),
(43817, 'https://ror.org/04gd58c86', 'en', 1, 'https://ror.org/04gd58c86 IBA Erhvervsakademi International Business Academy'),
(43818, 'https://ror.org/04gdyqq92', 'en', 1, 'https://ror.org/04gdyqq92 Charlotte Christian College and Theological Seminary'),
(43819, 'https://ror.org/04gecbm52', 'no_lang_code', 1, 'https://ror.org/04gecbm52 Lam Research (United States)'),
(43820, 'https://ror.org/04gevk212', 'no_lang_code', 1, 'https://ror.org/04gevk212 Asian Paints (India)'),
(43821, 'https://ror.org/04gh7n706', 'no_lang_code', 1, 'https://ror.org/04gh7n706 HEB Grocery Company (United States)'),
(43822, 'https://ror.org/04gj4ky87', 'en', 1, 'https://ror.org/04gj4ky87 China Population and Development Research Center äø­å›½äŗŗå£äøŽå‘å±•ē ”ē©¶äø­åæƒ'),
(43823, 'https://ror.org/04gjmb875', 'en', 1, 'https://ror.org/04gjmb875 Guang’anmen Hospital äø­å›½äø­åŒ»ē§‘å­¦é™¢å¹æå®‰é—ØåŒ»é™¢'),
(43824, 'https://ror.org/04gm0xc34', 'en', 1, 'https://ror.org/04gm0xc34 Group For Research and Technology Exchanges Groupe de Recherches et d''Echanges Technologiques'),
(43825, 'https://ror.org/04gm25w26', 'en', 1, 'https://ror.org/04gm25w26 United Way for Southeastern Michigan'),
(43826, 'https://ror.org/04gm2r032', 'fr', 1, 'https://ror.org/04gm2r032 Agence de Bassin Hydrographique Constantinois-Seybousse-Mellegue'),
(43827, 'https://ror.org/04gpxrn68', 'no_lang_code', 1, 'https://ror.org/04gpxrn68 China Academy Of Machinery Science & Technology (China) ęœŗę¢°ē§‘å­¦äøŽęŠ€ęœÆē ”ē©¶é™¢äø­å›½'),
(43828, 'https://ror.org/04gqe5s96', 'en', 1, 'https://ror.org/04gqe5s96 Chichester College'),
(43829, 'https://ror.org/04gqrt415', 'en', 1, 'https://ror.org/04gqrt415 Ambulance Service of New South Wales'),
(43830, 'https://ror.org/04grzdh47', 'en', 1, 'https://ror.org/04grzdh47 Guangdong University of Finance å¹æäøœé‡‘čžå­¦é™¢'),
(43831, 'https://ror.org/04gs7j941', 'en', 1, 'https://ror.org/04gs7j941 Morling College'),
(43832, 'https://ror.org/04gx27k56', 'en', 1, 'https://ror.org/04gx27k56 Iowa Western Community College'),
(43833, 'https://ror.org/04gx7mb59', 'tr', 1, 'https://ror.org/04gx7mb59 Selçuk Üniversitesi Tıp Fakültesi Hastanesi'),
(43834, 'https://ror.org/04h0czz41', 'no_lang_code', 1, 'https://ror.org/04h0czz41 Eesti Energia (Estonia)'),
(43835, 'https://ror.org/04h21q173', 'en', 1, 'https://ror.org/04h21q173 Ministarstvo kulture Ministry of Culture of the Republic of Croatia'),
(43836, 'https://ror.org/04h36ea57', 'en', 1, 'https://ror.org/04h36ea57 Alexander Technological Educational Institute of Thessaloniki ΑλεξάνΓρειο Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(43837, 'https://ror.org/04h3gcf69', 'es', 1, 'https://ror.org/04h3gcf69 Instituto Nacional de Investigaciones Agricolas'),
(43838, 'https://ror.org/04h4g6162', 'en', 1, 'https://ror.org/04h4g6162 Pt. Jawahar Lal Nehru Memorial Medical College'),
(43839, 'https://ror.org/04h5ys198', 'no_lang_code', 1, 'https://ror.org/04h5ys198 Cniitmash (Russia) Ń†Š½ŠøŠøŃ‚Š¼Š°Ńˆ'),
(43840, 'https://ror.org/04h8m0888', 'en', 1, 'https://ror.org/04h8m0888 Direction GƩnƩrale Commerce Directorate-General for Trade Generaldirektion Handel'),
(43841, 'https://ror.org/04hbd7s79', 'en', 1, 'https://ror.org/04hbd7s79 Africa Harvest Biotech Foundation International'),
(43842, 'https://ror.org/04hdgmg32', 'en', 1, 'https://ror.org/04hdgmg32 BibliothĆØque nationale d''inde National Library of India ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æą¤ƒ ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą¤¾ą¤²ą¤Æą¤ƒ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą¤¾ą¤²ą¤Æ ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦—ą§ą¦°ą¦Øą§ą¦„ą¦¾ą¦—ą¦¾ą¦° ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆ‡ą®šą®æą®Æ ą®ØąÆ‚ą®²ą®•ą®®ąÆ భారత ą°œą°¾ą°¤ą±€ą°Æ ą°—ą±ą°°ą°‚ą°„ą°¾ą°²ą°Æą°‚ ą“­ą“¾ą“°ą“¤ąµ€ą“Æ ą“¦ąµ‡ą“¶ąµ€ą“Æ ą“—ąµą“°ą“Øąµą“„ą“¶ą“¾ą“²'),
(43843, 'https://ror.org/04he9zv34', 'no_lang_code', 1, 'https://ror.org/04he9zv34 Phoenix Medical Systems (India)'),
(43844, 'https://ror.org/04hef0n19', 'en', 1, 'https://ror.org/04hef0n19 Brihanmumbai Municipal Corporation ą¤¬ą„ƒą¤¹ą¤Øą„ą¤®ą„ą¤‚ą¤¬ą¤ˆ महानगरपालिका'),
(43845, 'https://ror.org/04hes6w33', 'en', 1, 'https://ror.org/04hes6w33 Nama Khoi Local Municipality'),
(43846, 'https://ror.org/04hf31n78', 'en', 1, 'https://ror.org/04hf31n78 National Drought Management Authority'),
(43847, 'https://ror.org/04hmgwg30', 'no_lang_code', 1, 'https://ror.org/04hmgwg30 Karolinska Institutet Innovations (Sweden)'),
(43848, 'https://ror.org/04hpd0e20', 'en', 1, 'https://ror.org/04hpd0e20 Institute of Magnetism'),
(43849, 'https://ror.org/04hpwpk22', 'en', 1, 'https://ror.org/04hpwpk22 Albany Technical College'),
(43850, 'https://ror.org/04hqtzh27', 'en', 1, 'https://ror.org/04hqtzh27 Indian Institute Of Bio social Research And Development'),
(43851, 'https://ror.org/04hr2ce79', 'no_lang_code', 1, 'https://ror.org/04hr2ce79 Low & Bonar (Netherlands)'),
(43852, 'https://ror.org/04hrmb987', 'en', 1, 'https://ror.org/04hrmb987 Confederation of Indian Industry ą¤•ą„‰ą¤Øą„ą¤«ą„‡ą¤”ą¤°ą„‡ą¤¶ą¤Ø ऑफ इंऔियन ą¤‡ą¤‚ą¤”ą¤øą„ą¤Ÿą„ą¤°ą„€'),
(43853, 'https://ror.org/04hs3y322', 'en', 1, 'https://ror.org/04hs3y322 Eagle Gate College'),
(43854, 'https://ror.org/04ht9zz88', 'en', 1, 'https://ror.org/04ht9zz88 Lone Star College Kingwood, Lone Star College–Kingwood'),
(43855, 'https://ror.org/04hv4eh07', 'en', 1, 'https://ror.org/04hv4eh07 Royal Society for the Prevention of Cruelty to Animals'),
(43856, 'https://ror.org/04hvenk37', 'en', 1, 'https://ror.org/04hvenk37 Family Guidance Association of Ethiopia'),
(43857, 'https://ror.org/04hwmbc03', 'sv', 1, 'https://ror.org/04hwmbc03 VƤxjƶ Kommun VƤxjƶ Municipality'),
(43858, 'https://ror.org/04j06r887', 'en', 1, 'https://ror.org/04j06r887 Garrett College'),
(43859, 'https://ror.org/04j0w0694', 'en', 1, 'https://ror.org/04j0w0694 Atlantic International University'),
(43860, 'https://ror.org/04j1sr579', 'de', 1, 'https://ror.org/04j1sr579 Hochschule für Gesundheit & Sport, Technik & Kunst'),
(43861, 'https://ror.org/04j3eks61', 'en', 1, 'https://ror.org/04j3eks61 Institute of Solid State Physics 固体物理研究所'),
(43862, 'https://ror.org/04j3mbq57', 'no_lang_code', 1, 'https://ror.org/04j3mbq57 A-Team (United States)'),
(43863, 'https://ror.org/04j68nv27', 'en', 1, 'https://ror.org/04j68nv27 Millennia Atlantic University'),
(43864, 'https://ror.org/04j6cfb03', 'no_lang_code', 1, 'https://ror.org/04j6cfb03 Reliance Industries (India)'),
(43865, 'https://ror.org/04jaeeg73', 'en', 1, 'https://ror.org/04jaeeg73 Wyoming Space Grant Consortium'),
(43866, 'https://ror.org/04jc0pe38', 'no_lang_code', 1, 'https://ror.org/04jc0pe38 RenewSys (India)'),
(43867, 'https://ror.org/04jdsqj08', 'pl', 1, 'https://ror.org/04jdsqj08 Wyższa Szkoła Pedagogiki i Administracji im. Mieszka I w Poznaniu'),
(43868, 'https://ror.org/04je48v27', 'pt', 1, 'https://ror.org/04je48v27 Instituto Federal do Rio Grande do Norte'),
(43869, 'https://ror.org/04jfg7g12', 'en', 1, 'https://ror.org/04jfg7g12 Shanghai Institute of Disaster Prevention and Relief äøŠęµ·é˜²ē¾ę•‘ē¾ē ”ē©¶ę‰€'),
(43870, 'https://ror.org/04jfz0g97', 'zh', 1, 'https://ror.org/04jfz0g97 Tung Wah College, ę±čÆå­øé™¢'),
(43871, 'https://ror.org/04jgb8w65', 'en', 1, 'https://ror.org/04jgb8w65 Sino-Japan Friendship Center for Environmental Protection äø­ę—„å‹å„½ēŽÆå¢ƒäæęŠ¤äø­åæƒ'),
(43872, 'https://ror.org/04jhyte11', 'no_lang_code', 1, 'https://ror.org/04jhyte11 Edwards Lifesciences (United States)'),
(43873, 'https://ror.org/04jjns303', 'en', 1, 'https://ror.org/04jjns303 Institute of Applied Mechanics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной механики'),
(43874, 'https://ror.org/04jqr6p02', 'en', 1, 'https://ror.org/04jqr6p02 Forestry Commission'),
(43875, 'https://ror.org/04jrbrj58', 'en', 1, 'https://ror.org/04jrbrj58 Rhode Island Space Grant Consortium'),
(43876, 'https://ror.org/04jtk0f19', 'es', 1, 'https://ror.org/04jtk0f19 Instituto Superior de Estudios Psicológicos'),
(43877, 'https://ror.org/04jzegn30', 'en', 1, 'https://ror.org/04jzegn30 Centre for Policy Research'),
(43878, 'https://ror.org/04jzz0b06', 'en', 1, 'https://ror.org/04jzz0b06 National Research Centre on Equines'),
(43879, 'https://ror.org/04k0x3905', 'en', 1, 'https://ror.org/04k0x3905 American Academy of Fixed Prosthodontics'),
(43880, 'https://ror.org/04k1m2t10', 'en', 1, 'https://ror.org/04k1m2t10 Jiangsu Police Officer College ę±Ÿč‹č­¦å®˜å­¦é™¢'),
(43881, 'https://ror.org/04k4dpz50', 'en', 1, 'https://ror.org/04k4dpz50 Accelerated Cure Project for Multiple Sclerosis'),
(43882, 'https://ror.org/04k5pfq21', 'no_lang_code', 1, 'https://ror.org/04k5pfq21 Video Discovery (United States)'),
(43883, 'https://ror.org/04k66wn67', 'en', 1, 'https://ror.org/04k66wn67 Leo Baeck College'),
(43884, 'https://ror.org/04k6mn280', 'en', 1, 'https://ror.org/04k6mn280 Society for Endocrinology'),
(43885, 'https://ror.org/04k70g465', 'it', 1, 'https://ror.org/04k70g465 Conservatorio di Musica Benedetto Marcello di Venezia'),
(43886, 'https://ror.org/04kadgz77', 'fr', 1, 'https://ror.org/04kadgz77 Surface du Verre et Interfaces'),
(43887, 'https://ror.org/04kaykv54', 'en', 1, 'https://ror.org/04kaykv54 Central Board of Secondary Education'),
(43888, 'https://ror.org/04kcf7d03', 'no_lang_code', 1, 'https://ror.org/04kcf7d03 SENSEYE LIMITED'),
(43889, 'https://ror.org/04kh65m59', 'en', 1, 'https://ror.org/04kh65m59 Moscow Institute of Energy and Energy Saving'),
(43890, 'https://ror.org/04kh7mx79', 'en', 1, 'https://ror.org/04kh7mx79 Polytecnic in Požega VeleučiliŔte u Požegi'),
(43891, 'https://ror.org/04kh9f807', 'en', 1, 'https://ror.org/04kh9f807 Institute of Precambrian Geology and Geochronology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø геохронологии Š“Š¾ŠŗŠµŠ¼Š±Ń€ŠøŃ'),
(43892, 'https://ror.org/04kjbga23', 'en', 1, 'https://ror.org/04kjbga23 Chinese Students and Scholars Association of Ireland ēˆ±å°”å…°äø­å›½å­¦ē”Ÿå­¦č€…č”åˆč°Šä¼š'),
(43893, 'https://ror.org/04kk1a460', 'es', 1, 'https://ror.org/04kk1a460 Fundación Pablo García'),
(43894, 'https://ror.org/04kknj623', 'en', 1, 'https://ror.org/04kknj623 EMF Biological Research Trust'),
(43895, 'https://ror.org/04kn1c182', 'no_lang_code', 1, 'https://ror.org/04kn1c182 Serampore College ą¦¶ą§ą¦°ą§€ą¦°ą¦¾ą¦®ą¦Ŗą§ą¦° ą¦•ą¦²ą§‡ą¦œ'),
(43896, 'https://ror.org/04kne2879', 'de', 1, 'https://ror.org/04kne2879 Kirchliche PƤdagogische Hochschule Edith Stein'),
(43897, 'https://ror.org/04kpqhb39', 'ms', 1, 'https://ror.org/04kpqhb39 Jabatan Perkhidmatan Awam Malaysia Public Service Department'),
(43898, 'https://ror.org/04kq05542', 'no_lang_code', 1, 'https://ror.org/04kq05542 Veolia (India)'),
(43899, 'https://ror.org/04kq49p26', 'fr', 1, 'https://ror.org/04kq49p26 Centre des Techniques et MatƩriaux de Construction'),
(43900, 'https://ror.org/04ktct527', 'en', 1, 'https://ror.org/04ktct527 Cure Childhood Cancer Association'),
(43901, 'https://ror.org/04kthgc59', 'en', 1, 'https://ror.org/04kthgc59 Criminological Research Institute of Lower Saxony Kriminologisches Forschungsinstitut Niedersachsen'),
(43902, 'https://ror.org/04kxhvh23', 'en', 1, 'https://ror.org/04kxhvh23 Oconee Fall Line Technical College'),
(43903, 'https://ror.org/04ky50w21', 'no_lang_code', 1, 'https://ror.org/04ky50w21 Murugappa (India)'),
(43904, 'https://ror.org/04kzzpx53', 'fr', 1, 'https://ror.org/04kzzpx53 Puce Muse / Espace Musical'),
(43905, 'https://ror.org/04m2f2s83', 'en', 1, 'https://ror.org/04m2f2s83 Office of the Attorney General'),
(43906, 'https://ror.org/04m34bn97', 'es', 1, 'https://ror.org/04m34bn97 Universidad Politecnica del Estado de Morelos'),
(43907, 'https://ror.org/04m4a9x26', 'en', 1, 'https://ror.org/04m4a9x26 Direction Générale Affaires maritimes et pêche Directorate-General for Maritime Affairs and Fisheries Generaldirektion Maritime Angelegenheiten und Fischerei'),
(43908, 'https://ror.org/04m4shs41', 'de', 1, 'https://ror.org/04m4shs41 Dekra Hochschule für Medien'),
(43909, 'https://ror.org/04m514a38', 'en', 1, 'https://ror.org/04m514a38 Clarity Centre for Sensor Web Technologies'),
(43910, 'https://ror.org/04m57qg37', 'en', 1, 'https://ror.org/04m57qg37 Manitoba Labour and Immigration'),
(43911, 'https://ror.org/04m63t111', 'en', 1, 'https://ror.org/04m63t111 Tennessee College of Applied Technology'),
(43912, 'https://ror.org/04m6e6f10', 'en', 1, 'https://ror.org/04m6e6f10 Ministry of Agriculture and Fisheries MinistĆØre de l''Agriculture et de la PĆŖche Maritime'),
(43913, 'https://ror.org/04m6m8q83', 'fr', 1, 'https://ror.org/04m6m8q83 Vétérinaires Sans Frontières Suisse'),
(43914, 'https://ror.org/04m7jhx64', 'fr', 1, 'https://ror.org/04m7jhx64 ConfƩdƩration GƩnƩrale des Entreprises du Maroc'),
(43915, 'https://ror.org/04magp836', 'pt', 1, 'https://ror.org/04magp836 Centro Terra Viva'),
(43916, 'https://ror.org/04mekkx88', 'no_lang_code', 1, 'https://ror.org/04mekkx88 Spirit AeroSystems (United States)'),
(43917, 'https://ror.org/04mg21y19', 'en', 1, 'https://ror.org/04mg21y19 Tyler Junior College'),
(43918, 'https://ror.org/04mgkhj33', 'pt', 1, 'https://ror.org/04mgkhj33 Instituto Alergoimuno de Americana'),
(43919, 'https://ror.org/04mhkhc08', 'en', 1, 'https://ror.org/04mhkhc08 Solve ME/CFS Initiative'),
(43920, 'https://ror.org/04mnf7j68', 'en', 1, 'https://ror.org/04mnf7j68 Dongnam Health University ę±å—äæå„å¤§å­ø ė™ė‚Øė³“ź±“ėŒ€ķ•™'),
(43921, 'https://ror.org/04mq24005', 'en', 1, 'https://ror.org/04mq24005 Public Procurement Service 씰달청'),
(43922, 'https://ror.org/04mqwrw94', 'en', 1, 'https://ror.org/04mqwrw94 New England Bible College'),
(43923, 'https://ror.org/04mraae85', 'no_lang_code', 1, 'https://ror.org/04mraae85 SOS Sahel Ethiopia'),
(43924, 'https://ror.org/04mrtf838', 'pl', 1, 'https://ror.org/04mrtf838 Staropolska Szkoła Wyższa w Kielcach'),
(43925, 'https://ror.org/04mvanw22', 'en', 1, 'https://ror.org/04mvanw22 Fachhochschule Polizei Sachsen-Anhalt University of Applied Police Sciences Saxony Anhalt'),
(43926, 'https://ror.org/04mw0df78', 'en', 1, 'https://ror.org/04mw0df78 North Carolina Community College System'),
(43927, 'https://ror.org/04mw3jj73', 'fr', 1, 'https://ror.org/04mw3jj73 Fondation Sciences et Technologies pour l''AƩronautique et l''Espace'),
(43928, 'https://ror.org/04mwj6r38', 'en', 1, 'https://ror.org/04mwj6r38 Community Media Trust'),
(43929, 'https://ror.org/04mwvcn50', 'en', 1, 'https://ror.org/04mwvcn50 Islamic Azad University, Yazd دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ یزد'),
(43930, 'https://ror.org/04mxf4066', 'en', 1, 'https://ror.org/04mxf4066 Gwinnett Technical College'),
(43931, 'https://ror.org/04mze8a19', 'en', 1, 'https://ror.org/04mze8a19 Gian Sagar Medical College and Hospital'),
(43932, 'https://ror.org/04n0f2b96', 'no_lang_code', 1, 'https://ror.org/04n0f2b96 China South Industries Group (China) äø­å›½å…µå™Øå·„äøšē¬¬äŗ”ä¹ē ”ē©¶ę‰€'),
(43933, 'https://ror.org/04n0t4871', 'en', 1, 'https://ror.org/04n0t4871 LDS Business College'),
(43934, 'https://ror.org/04n28sf88', 'en', 1, 'https://ror.org/04n28sf88 Icelandic Tourism Research Centre Rannsóknamiðstöð FerðamÔla'),
(43935, 'https://ror.org/04n2vg926', 'en', 1, 'https://ror.org/04n2vg926 Yamal Polar Agro-Economic College Ямальский ŠæŠ¾Š»ŃŃ€Š½Ń‹Š¹ Š°Š³Ń€Š¾ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ Ń‚ŠµŃ…Š½ŠøŠŗŃƒŠ¼'),
(43936, 'https://ror.org/04n30gn53', 'pt', 1, 'https://ror.org/04n30gn53 Associação Empresarial de Paços de Ferreira'),
(43937, 'https://ror.org/04n3mvx98', 'no_lang_code', 1, 'https://ror.org/04n3mvx98 Elder Pharmaceuticals (India)'),
(43938, 'https://ror.org/04n4r7e14', 'pt', 1, 'https://ror.org/04n4r7e14 Fundação Centro de Hematologia e Hemoterapia de Minas Gerais'),
(43939, 'https://ror.org/04n5aqd27', 'en', 1, 'https://ror.org/04n5aqd27 Union College - Kentucky'),
(43940, 'https://ror.org/04n6a5g54', 'en', 1, 'https://ror.org/04n6a5g54 South Coast College'),
(43941, 'https://ror.org/04n835f38', 'en', 1, 'https://ror.org/04n835f38 Graduate School USA'),
(43942, 'https://ror.org/04n9x2190', 'fr', 1, 'https://ror.org/04n9x2190 ComitƩ National de TƩlƩdƩtection et d''Information GƩographique'),
(43943, 'https://ror.org/04na2p952', 'en', 1, 'https://ror.org/04na2p952 Ministry of Information, Communications and Technology'),
(43944, 'https://ror.org/04nahdt84', 'en', 1, 'https://ror.org/04nahdt84 SVS Medical College'),
(43945, 'https://ror.org/04nap1310', 'en', 1, 'https://ror.org/04nap1310 American College of Financial Services'),
(43946, 'https://ror.org/04nbnrt83', 'no_lang_code', 1, 'https://ror.org/04nbnrt83 New Balance (United States)'),
(43947, 'https://ror.org/04ndr7251', 'en', 1, 'https://ror.org/04ndr7251 Shandong Provincial Water Resources Research Institute å±±äøœēœę°“ē§‘é™¢'),
(43948, 'https://ror.org/04netx779', 'en', 1, 'https://ror.org/04netx779 Children''s Cancer Therapy Development Institute'),
(43949, 'https://ror.org/04nje3391', 'en', 1, 'https://ror.org/04nje3391 Goodenough College'),
(43950, 'https://ror.org/04nr63k14', 'en', 1, 'https://ror.org/04nr63k14 Pennsylvania Higher Education Assistance Agency'),
(43951, 'https://ror.org/04nv2wh79', 'en', 1, 'https://ror.org/04nv2wh79 Novant Health'),
(43952, 'https://ror.org/04nv8he75', 'en', 1, 'https://ror.org/04nv8he75 Arkansas Arts Council'),
(43953, 'https://ror.org/04nvfwd22', 'en', 1, 'https://ror.org/04nvfwd22 LIM College'),
(43954, 'https://ror.org/04nvtmr42', 'no_lang_code', 1, 'https://ror.org/04nvtmr42 Interface (United States)'),
(43955, 'https://ror.org/04nwg1t42', 'fr', 1, 'https://ror.org/04nwg1t42 Ɖcole SpĆ©ciale des Travaux Publics'),
(43956, 'https://ror.org/04p0q7p15', 'no_lang_code', 1, 'https://ror.org/04p0q7p15 SurveyMonkey (United States)'),
(43957, 'https://ror.org/04p175r34', 'it', 1, 'https://ror.org/04p175r34 Conservatorio statale di Musica Alfredo Casella'),
(43958, 'https://ror.org/04p181a07', 'en', 1, 'https://ror.org/04p181a07 BeskƦftigelsesministeriet Danish Ministry of Employment'),
(43959, 'https://ror.org/04p18ec14', 'en', 1, 'https://ror.org/04p18ec14 Vinayaka Missions Medical College and Hospitals'),
(43960, 'https://ror.org/04p2bt406', 'no_lang_code', 1, 'https://ror.org/04p2bt406 Maharaja Chhatrasal Bundelkhand University महाराजा ą¤›ą¤¤ą„ą¤°ą¤øą¤¾ą¤² ą¤¬ą„ą¤‚ą¤¦ą„‡ą¤²ą¤–ą¤‚ą¤” ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(43961, 'https://ror.org/04p2zt755', 'en', 1, 'https://ror.org/04p2zt755 South African National Energy Development Institute'),
(43962, 'https://ror.org/04p3h2z50', 'no_lang_code', 1, 'https://ror.org/04p3h2z50 Bank of New York Mellon'),
(43963, 'https://ror.org/04p3nq874', 'no_lang_code', 1, 'https://ror.org/04p3nq874 Sunoco (United States)'),
(43964, 'https://ror.org/04p3pp808', 'en', 1, 'https://ror.org/04p3pp808 ICFAI Foundation for Higher Education'),
(43965, 'https://ror.org/04p3y0q03', 'en', 1, 'https://ror.org/04p3y0q03 Bank of England'),
(43966, 'https://ror.org/04p549618', 'en', 1, 'https://ror.org/04p549618 University of South Carolina Union'),
(43967, 'https://ror.org/04p5ezw03', 'en', 1, 'https://ror.org/04p5ezw03 Cox College'),
(43968, 'https://ror.org/04p63s850', 'en', 1, 'https://ror.org/04p63s850 Minnesota Department of Transportation'),
(43969, 'https://ror.org/04p6zf087', 'no_lang_code', 1, 'https://ror.org/04p6zf087 Mekhanobr Appliances (Russia) ŠœŠµŃ…Š°Š½Š¾Š±Ń€-техника'),
(43970, 'https://ror.org/04p93kz40', 'en', 1, 'https://ror.org/04p93kz40 G Pulla Reddy Dental College & Hospital'),
(43971, 'https://ror.org/04p9b6182', 'en', 1, 'https://ror.org/04p9b6182 National Institute of Pharmaceutical Education and Research ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°ą§€ą¦Æą¦¼ ą¦­ą§‡ą¦·ą¦œą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¶ą¦æą¦•ą§ą¦·ą¦¾ আৰু গৱেষণা ą¦Ŗą§ą§°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø, ą¦—ą§ą§±ą¦¾ą¦¹ą¦¾ą¦Ÿą§€'),
(43972, 'https://ror.org/04p9htb70', 'en', 1, 'https://ror.org/04p9htb70 Seychelles Fishing Authority'),
(43973, 'https://ror.org/04pdjh730', 'no_lang_code', 1, 'https://ror.org/04pdjh730 MSA Gallet (France)'),
(43974, 'https://ror.org/04pf8en64', 'en', 1, 'https://ror.org/04pf8en64 Rosedale Bible College'),
(43975, 'https://ror.org/04pgv9784', 'en', 1, 'https://ror.org/04pgv9784 Energy Biosciences Institute'),
(43976, 'https://ror.org/04phxq043', 'en', 1, 'https://ror.org/04phxq043 California Miramar University'),
(43977, 'https://ror.org/04pjj9g71', 'en', 1, 'https://ror.org/04pjj9g71 Warsaw Management University Wyższa Szkoła Menedżerska'),
(43978, 'https://ror.org/04pjzhr83', 'en', 1, 'https://ror.org/04pjzhr83 Wenatchee Valley College'),
(43979, 'https://ror.org/04pks1p32', 'fr', 1, 'https://ror.org/04pks1p32 Centre National de Recherches Prehistoriques, Anthropologiques et Historiques'),
(43980, 'https://ror.org/04pnpc024', 'pt', 1, 'https://ror.org/04pnpc024 Governo do Estado do Rio de Janeiro'),
(43981, 'https://ror.org/04pqf8583', 'es', 1, 'https://ror.org/04pqf8583 Institut Pere Mata'),
(43982, 'https://ror.org/04pqs5t46', 'en', 1, 'https://ror.org/04pqs5t46 Beacon College'),
(43983, 'https://ror.org/04pqz1f73', 'sv', 1, 'https://ror.org/04pqz1f73 Lasarettet i Ystad'),
(43984, 'https://ror.org/04ps7x844', 'no_lang_code', 1, 'https://ror.org/04ps7x844 FedEx (United States)'),
(43985, 'https://ror.org/04pv4k943', 'en', 1, 'https://ror.org/04pv4k943 Hydrometeorological Research Centre of Russian Federation Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ГиГрометеорологический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Российской ФеГерации'),
(43986, 'https://ror.org/04px8zq55', 'no_lang_code', 1, 'https://ror.org/04px8zq55 Egyptian Solar Research Center'),
(43987, 'https://ror.org/04pxbhh58', 'pt', 1, 'https://ror.org/04pxbhh58 República de Moçambique'),
(43988, 'https://ror.org/04py24056', 'en', 1, 'https://ror.org/04py24056 Bavarian State Painting Collections Bayerische StaatsgemƤldesammlungen'),
(43989, 'https://ror.org/04q01pf08', 'en', 1, 'https://ror.org/04q01pf08 Federation Wallonia-Brussels, French Community of Belgium FƩdƩration Wallonie-Bruxelles'),
(43990, 'https://ror.org/04q0d9a06', 'no_lang_code', 1, 'https://ror.org/04q0d9a06 Avisonic (Taiwan)'),
(43991, 'https://ror.org/04q2mdb48', 'sl', 1, 'https://ror.org/04q2mdb48 Ekonomska Å ola Murska Sobota'),
(43992, 'https://ror.org/04q32pk93', 'en', 1, 'https://ror.org/04q32pk93 Jawaharlal Nehru Medical College Hospital'),
(43993, 'https://ror.org/04q7j9m29', 'en', 1, 'https://ror.org/04q7j9m29 Arkansas Agricultural Experiment Station'),
(43994, 'https://ror.org/04q89zk14', 'en', 1, 'https://ror.org/04q89zk14 Swindon College'),
(43995, 'https://ror.org/04q9me654', 'no_lang_code', 1, 'https://ror.org/04q9me654 Fleury S.A. (Brazil)'),
(43996, 'https://ror.org/04qd7ym22', 'en', 1, 'https://ror.org/04qd7ym22 HOPE Cape Town Trust'),
(43997, 'https://ror.org/04qdwr166', 'en', 1, 'https://ror.org/04qdwr166 Texas Medical Board'),
(43998, 'https://ror.org/04qf03327', 'en', 1, 'https://ror.org/04qf03327 Republic Polytechnic å…±å’Œē†å·„å­øé™¢'),
(43999, 'https://ror.org/04qf4wy02', 'no_lang_code', 1, 'https://ror.org/04qf4wy02 Omnitek Engineering (United States)'),
(44000, 'https://ror.org/04qk6hk13', 'en', 1, 'https://ror.org/04qk6hk13 North Warwickshire and Hinckley College'),
(44001, 'https://ror.org/04qmzfs71', 'no_lang_code', 1, 'https://ror.org/04qmzfs71 PRASAC PÓle Régional de Recherche Appliquée au Développement des Systèmes Agricoles d''Afrique Centrale'),
(44002, 'https://ror.org/04qpqg969', 'pt', 1, 'https://ror.org/04qpqg969 Direcção Geral de Ensino Superior Ciencia'),
(44003, 'https://ror.org/04qqd9793', 'en', 1, 'https://ror.org/04qqd9793 Chinese Academy of Science and Technology for Development äø­å›½ē§‘å­¦ęŠ€ęœÆäæƒčæ›å‘å±•'),
(44004, 'https://ror.org/04qs0rx25', 'en', 1, 'https://ror.org/04qs0rx25 Wallace State Community College'),
(44005, 'https://ror.org/04qv8j179', 'en', 1, 'https://ror.org/04qv8j179 Government of Equatorial Guinea'),
(44006, 'https://ror.org/04qvn8b67', 'en', 1, 'https://ror.org/04qvn8b67 Association of British Paediatric Nurses'),
(44007, 'https://ror.org/04qw2cf87', 'no_lang_code', 1, 'https://ror.org/04qw2cf87 WESTERVELD CONSERVATION TRUST'),
(44008, 'https://ror.org/04qwsbk34', 'en', 1, 'https://ror.org/04qwsbk34 Medical Access Uganda'),
(44009, 'https://ror.org/04qxsp544', 'no_lang_code', 1, 'https://ror.org/04qxsp544 Newman''s Own (United States)'),
(44010, 'https://ror.org/04r030w90', 'en', 1, 'https://ror.org/04r030w90 Yeshiva of Nitra Rabbinical College'),
(44011, 'https://ror.org/04r0j3d36', 'en', 1, 'https://ror.org/04r0j3d36 Państwowa Wyższa Szkoła Zawodowa w Koninie State University of Applied Sciences in Konin'),
(44012, 'https://ror.org/04r4z2512', 'en', 1, 'https://ror.org/04r4z2512 Northwest Iowa Community College'),
(44013, 'https://ror.org/04r8ftk86', 'no_lang_code', 1, 'https://ror.org/04r8ftk86 ICICI Lombard (India)'),
(44014, 'https://ror.org/04r9pgh69', 'en', 1, 'https://ror.org/04r9pgh69 Private College of Economic Studies Znojmo SoukromĆ” VysokĆ” Skola EkonomickĆ” Znojmo'),
(44015, 'https://ror.org/04rawk951', 'en', 1, 'https://ror.org/04rawk951 Chumakov Institute of Poliomyelitis and Viral Encephalitides Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ полиомиелита Šø Š²ŠøŃ€ŃƒŃŠ½Ń‹Ń… ŃŠ½Ń†ŠµŃ„Š°Š»ŠøŃ‚Š¾Š²'),
(44016, 'https://ror.org/04rb38388', 'en', 1, 'https://ror.org/04rb38388 Institute of Metallurgy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Š£Ń€Šž Š ŠŠ'),
(44017, 'https://ror.org/04rbbpv92', 'no_lang_code', 1, 'https://ror.org/04rbbpv92 J-Power (Japan) é›»ęŗé–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(44018, 'https://ror.org/04rc6g352', 'en', 1, 'https://ror.org/04rc6g352 Granger Foundation'),
(44019, 'https://ror.org/04rew5e44', 'en', 1, 'https://ror.org/04rew5e44 AutoritƩ du Lac Tanganyika Lake Tanganyika Authority'),
(44020, 'https://ror.org/04rewz209', 'no_lang_code', 1, 'https://ror.org/04rewz209 Research Center for Surface and Vacuum (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр по ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃŽ свойств поверхности Šø вакуума'),
(44021, 'https://ror.org/04rhvbz32', 'en', 1, 'https://ror.org/04rhvbz32 California Community Colleges System'),
(44022, 'https://ror.org/04rkf8c04', 'en', 1, 'https://ror.org/04rkf8c04 San Joaquin Valley College'),
(44023, 'https://ror.org/04rkgm763', 'it', 1, 'https://ror.org/04rkgm763 Conservatorio di Musica Ottorino Respighi'),
(44024, 'https://ror.org/04rnenb96', 'en', 1, 'https://ror.org/04rnenb96 Australian War Memorial'),
(44025, 'https://ror.org/04rp2t677', 'en', 1, 'https://ror.org/04rp2t677 African Palliative Care Association'),
(44026, 'https://ror.org/04rqr4m92', 'it', 1, 'https://ror.org/04rqr4m92 Academy of Fine Arts of Bologna Accademia di Belle Arti di Bologna'),
(44027, 'https://ror.org/04rqxx434', 'fr', 1, 'https://ror.org/04rqxx434 Agence Nationale pour la Promotion et la Rationalisation de l''Utilisation de l''Energie'),
(44028, 'https://ror.org/04rt7n757', 'en', 1, 'https://ror.org/04rt7n757 C. U. Shah University'),
(44029, 'https://ror.org/04rtx9382', 'en', 1, 'https://ror.org/04rtx9382 World Health Organization Regional Office for Africa'),
(44030, 'https://ror.org/04rvw0k47', 'en', 1, 'https://ror.org/04rvw0k47 University of Shizuoka é™å²”ēœŒē«‹å¤§å­¦'),
(44031, 'https://ror.org/04rw0w260', 'fr', 1, 'https://ror.org/04rw0w260 Ɖcole EuropĆ©enne SupĆ©rieure d''Art de Bretagne'),
(44032, 'https://ror.org/04rxdpa15', 'no_lang_code', 1, 'https://ror.org/04rxdpa15 Sprint (United States)'),
(44033, 'https://ror.org/04rxyz404', 'en', 1, 'https://ror.org/04rxyz404 St. John''s Seminary'),
(44034, 'https://ror.org/04ry1rt27', 'fr', 1, 'https://ror.org/04ry1rt27 Conseil RĆ©gional d''Ǝle-de-France'),
(44035, 'https://ror.org/04ry60e05', 'en', 1, 'https://ror.org/04ry60e05 Institute of Forensic Science åøę³•éƒØåøę³•é‰“å®šē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(44036, 'https://ror.org/04s3dsz85', 'en', 1, 'https://ror.org/04s3dsz85 Office of Diversity and Inclusion'),
(44037, 'https://ror.org/04s4kqd92', 'no_lang_code', 1, 'https://ror.org/04s4kqd92 Dabur Research Foundation (India)'),
(44038, 'https://ror.org/04s4rcv05', 'en', 1, 'https://ror.org/04s4rcv05 Hipolit Cegielski State University of Applied Sciences in Gniezno Państwowa Wyższa Szkoła Zawodowa im. Hipolita Cegielskiego w GnieÅŗnie'),
(44039, 'https://ror.org/04s51wj45', 'fr', 1, 'https://ror.org/04s51wj45 MinistĆØre de l’Industrie, du Commerce, de l’Investissement et de l’Economie NumĆ©rique'),
(44040, 'https://ror.org/04s5ed403', 'en', 1, 'https://ror.org/04s5ed403 Randolph Township Schools'),
(44041, 'https://ror.org/04s8aes72', 'fr', 1, 'https://ror.org/04s8aes72 Chambre de Commerce et d''Industrie du Centre'),
(44042, 'https://ror.org/04s8jbf64', 'en', 1, 'https://ror.org/04s8jbf64 Centre for Development Economics'),
(44043, 'https://ror.org/04s9fyw02', 'en', 1, 'https://ror.org/04s9fyw02 National Institute Of Veterinary Epidemiology And Disease Informatics'),
(44044, 'https://ror.org/04sbk5k46', 'en', 1, 'https://ror.org/04sbk5k46 North China Research Institute of Electro-optics åŽåŒ—å…‰ē”µęŠ€ęœÆē ”ē©¶ę‰€'),
(44045, 'https://ror.org/04scnfc98', 'en', 1, 'https://ror.org/04scnfc98 Republican Scientific and Practical Center of Neurology and Neurosurgery Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр неврологии Šø Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŠ°Š½ŃŠŗŃ– навукова-практычны Ń†ŃŠ½Ń‚Ń€ Š½ŠµŃžŃ€Š°Š»Š¾Š³Ń–Ń– і Š½ŠµŠ¹Ń€Š°Ń…Ń–Ń€ŃƒŃ€Š³Ń–Ń–'),
(44046, 'https://ror.org/04sd34v05', 'en', 1, 'https://ror.org/04sd34v05 Centre for World Solidarity'),
(44047, 'https://ror.org/04sdh5f05', 'en', 1, 'https://ror.org/04sdh5f05 Vance-Granville Community College'),
(44048, 'https://ror.org/04sdw4j56', 'en', 1, 'https://ror.org/04sdw4j56 Development Centre of the Tensift Region'),
(44049, 'https://ror.org/04se07z51', 'no_lang_code', 1, 'https://ror.org/04se07z51 Misc (Egypt)'),
(44050, 'https://ror.org/04sg05j02', 'no_lang_code', 1, 'https://ror.org/04sg05j02 Tarix Orphan (United States)'),
(44051, 'https://ror.org/04sgttv52', 'pt', 1, 'https://ror.org/04sgttv52 Centro Hospitalar Cova da Beira, Hospital Center of Cova da Beira'),
(44052, 'https://ror.org/04shpes69', 'no_lang_code', 1, 'https://ror.org/04shpes69 Span Diagnostics (India)'),
(44053, 'https://ror.org/04sj6d461', 'en', 1, 'https://ror.org/04sj6d461 Chatfield College'),
(44054, 'https://ror.org/04sjht826', 'en', 1, 'https://ror.org/04sjht826 Minnesota State Arts Board'),
(44055, 'https://ror.org/04sn8qj61', 'en', 1, 'https://ror.org/04sn8qj61 International School of Management'),
(44056, 'https://ror.org/04spf1k23', 'en', 1, 'https://ror.org/04spf1k23 Massachusetts Department of Environmental Protection'),
(44057, 'https://ror.org/04spzbf72', 'en', 1, 'https://ror.org/04spzbf72 Office of Public Health Genomics'),
(44058, 'https://ror.org/04stt5k13', 'en', 1, 'https://ror.org/04stt5k13 Prairie Improvement Network'),
(44059, 'https://ror.org/04sv11p30', 'fr', 1, 'https://ror.org/04sv11p30 Haute Ɖcole de la Province de Namur'),
(44060, 'https://ror.org/04sxex454', 'pt', 1, 'https://ror.org/04sxex454 Faculdade Meridional'),
(44061, 'https://ror.org/04sxgk411', 'fr', 1, 'https://ror.org/04sxgk411 Ministry of Sports, Youth, Popular Education and Community Life MinistĆØre de la Ville, de la Jeunesse et des Sports'),
(44062, 'https://ror.org/04sxpzn67', 'en', 1, 'https://ror.org/04sxpzn67 Society For Development Alternatives'),
(44063, 'https://ror.org/04t0epe82', 'no_lang_code', 1, 'https://ror.org/04t0epe82 3DT Holdings (United States)'),
(44064, 'https://ror.org/04t17dk82', 'pt', 1, 'https://ror.org/04t17dk82 União Dinâmica de Faculdades Cataratas'),
(44065, 'https://ror.org/04t1qep04', 'en', 1, 'https://ror.org/04t1qep04 San Bernardino Valley College'),
(44066, 'https://ror.org/04t25zj93', 'en', 1, 'https://ror.org/04t25zj93 God''s Bible School and College'),
(44067, 'https://ror.org/04t39kh72', 'fr', 1, 'https://ror.org/04t39kh72 MinistĆØre de l’Environnement et du DĆ©veloppement Durable'),
(44068, 'https://ror.org/04t4ty441', 'en', 1, 'https://ror.org/04t4ty441 Southeast Kentucky Community and Technical College'),
(44069, 'https://ror.org/04t59qd02', 'no_lang_code', 1, 'https://ror.org/04t59qd02 China Power Engineering Consulting Group (China)'),
(44070, 'https://ror.org/04t5yz624', 'en', 1, 'https://ror.org/04t5yz624 Defense Information School'),
(44071, 'https://ror.org/04tb1ww30', 'en', 1, 'https://ror.org/04tb1ww30 Adler Graduate School'),
(44072, 'https://ror.org/04td2q443', 'en', 1, 'https://ror.org/04td2q443 Texas Animal Health Commission'),
(44073, 'https://ror.org/04tdh7519', 'en', 1, 'https://ror.org/04tdh7519 Jiangxi Province Forestry Survey Planning Institute å›½å®¶ęž—äøšå±€č°ƒęŸ„č§„åˆ’č®¾č®”é™¢'),
(44074, 'https://ror.org/04th3yy26', 'pt', 1, 'https://ror.org/04th3yy26 Secretaria de Estado de Ciência Tecnologia e Inovação'),
(44075, 'https://ror.org/04tnw9626', 'en', 1, 'https://ror.org/04tnw9626 Queensland Academy of Sport'),
(44076, 'https://ror.org/04tr4sk76', 'de', 1, 'https://ror.org/04tr4sk76 Fachhochschule für Finanzen Nordrhein Westfalen'),
(44077, 'https://ror.org/04trbax61', 'no_lang_code', 1, 'https://ror.org/04trbax61 Roxel (France)'),
(44078, 'https://ror.org/04tvwvh44', 'fr', 1, 'https://ror.org/04tvwvh44 Association Marocaine Pour la Recherche DƩveloppement'),
(44079, 'https://ror.org/04twsya26', 'en', 1, 'https://ror.org/04twsya26 B. V. Patel Pharmaceutical Education and Research Development Centre'),
(44080, 'https://ror.org/04ty11y53', 'no_lang_code', 1, 'https://ror.org/04ty11y53 Kirloskar Group (India)'),
(44081, 'https://ror.org/04v0zrf25', 'en', 1, 'https://ror.org/04v0zrf25 New York College of Health Professions'),
(44082, 'https://ror.org/04v1jm771', 'en', 1, 'https://ror.org/04v1jm771 State Oil and Gas Board of Alabama'),
(44083, 'https://ror.org/04v2xzv40', 'en', 1, 'https://ror.org/04v2xzv40 Building Research Association of New Zealand'),
(44084, 'https://ror.org/04v31xa23', 'en', 1, 'https://ror.org/04v31xa23 Institute of Economics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ē»ęµŽē ”ē©¶ę‰€'),
(44085, 'https://ror.org/04v4h5886', 'en', 1, 'https://ror.org/04v4h5886 New Orleans Baptist Theological Seminary'),
(44086, 'https://ror.org/04v70b898', 'no_lang_code', 1, 'https://ror.org/04v70b898 Nano Energy (South Africa)'),
(44087, 'https://ror.org/04v719r80', 'en', 1, 'https://ror.org/04v719r80 National Board of Examinations ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą¤°ą„€ą¤•ą„ą¤·ą¤¾ ą¤¬ą„‹ą¤°ą„ą¤”'),
(44088, 'https://ror.org/04v748538', 'no_lang_code', 1, 'https://ror.org/04v748538 Abbott (Japan) ć‚¢ćƒœćƒƒćƒˆ'),
(44089, 'https://ror.org/04v8c9r98', 'no_lang_code', 1, 'https://ror.org/04v8c9r98 Fidelity Investments (United States)'),
(44090, 'https://ror.org/04vatt549', 'fr', 1, 'https://ror.org/04vatt549 Agence Nationale pour la Promotion des Petites et Moyennes Entreprises'),
(44091, 'https://ror.org/04vctsm14', 'en', 1, 'https://ror.org/04vctsm14 Department of Social Services'),
(44092, 'https://ror.org/04vd30725', 'en', 1, 'https://ror.org/04vd30725 Europejska Uczelnia Społeczno-Techniczna w Radomiu Radom Academy of Social and Technical Sciences'),
(44093, 'https://ror.org/04vdmc602', 'no_lang_code', 1, 'https://ror.org/04vdmc602 Honda (United States)'),
(44094, 'https://ror.org/04vghy880', 'en', 1, 'https://ror.org/04vghy880 Port of Melbourne Corporation'),
(44095, 'https://ror.org/04vgqtr26', 'en', 1, 'https://ror.org/04vgqtr26 Tri-State College of Acupuncture'),
(44096, 'https://ror.org/04vhk3x11', 'en', 1, 'https://ror.org/04vhk3x11 Information and Communication Technology Authority'),
(44097, 'https://ror.org/04vkgh027', 'en', 1, 'https://ror.org/04vkgh027 Berk Trade and Business School'),
(44098, 'https://ror.org/04vmpjr08', 'en', 1, 'https://ror.org/04vmpjr08 Institute of Grassland Research č‰åŽŸē ”ē©¶ę‰€'),
(44099, 'https://ror.org/04vmsnf37', 'no_lang_code', 1, 'https://ror.org/04vmsnf37 Assurant (United States)');
INSERT INTO `rors` VALUES
(44100, 'https://ror.org/04vpt1784', 'en', 1, 'https://ror.org/04vpt1784 Sha''arei Mishpat College ×ž×›×œ×œ×Ŗ שערי משפט'),
(44101, 'https://ror.org/04vpx0k46', 'fr', 1, 'https://ror.org/04vpx0k46 Anvredet'),
(44102, 'https://ror.org/04vpza371', 'en', 1, 'https://ror.org/04vpza371 Cooperative Office for Voluntary Organizations'),
(44103, 'https://ror.org/04vqdec11', 'no_lang_code', 1, 'https://ror.org/04vqdec11 Southwest Airlines (United States)'),
(44104, 'https://ror.org/04vtbxw76', 'en', 1, 'https://ror.org/04vtbxw76 Guangdong Academy of Forestry å¹æäøœēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(44105, 'https://ror.org/04vtvrr13', 'nl', 1, 'https://ror.org/04vtvrr13 Codarts Rotterdam'),
(44106, 'https://ror.org/04vtz2g46', 'en', 1, 'https://ror.org/04vtz2g46 Korea Institute for International Economic Policy ėŒ€ģ™øź²½ģ œģ •ģ±…ģ—°źµ¬ģ›'),
(44107, 'https://ror.org/04vv1c071', 'en', 1, 'https://ror.org/04vv1c071 Silsbee Independent School District'),
(44108, 'https://ror.org/04vw0kz07', 'en', 1, 'https://ror.org/04vw0kz07 Division of Human Resource Management'),
(44109, 'https://ror.org/04vwfqp33', 'no_lang_code', 1, 'https://ror.org/04vwfqp33 Sanwa Hydrotech (Japan) äø‰å’Œćƒć‚¤ćƒ‰ćƒ­ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(44110, 'https://ror.org/04vwgk321', 'en', 1, 'https://ror.org/04vwgk321 Art Institute of Atlanta'),
(44111, 'https://ror.org/04vxpm374', 'no_lang_code', 1, 'https://ror.org/04vxpm374 Aegon (Netherlands)'),
(44112, 'https://ror.org/04w0qkc46', 'en', 1, 'https://ror.org/04w0qkc46 Labette Community College'),
(44113, 'https://ror.org/04w0r6004', 'it', 1, 'https://ror.org/04w0r6004 Fondazione Antonio Ratti'),
(44114, 'https://ror.org/04w1wsw24', 'en', 1, 'https://ror.org/04w1wsw24 Geophysical Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Геофизический центр Российской акаГемии наук'),
(44115, 'https://ror.org/04w23p232', 'de', 1, 'https://ror.org/04w23p232 Evangelische Hochschule Darmstadt'),
(44116, 'https://ror.org/04w2e0b44', 'en', 1, 'https://ror.org/04w2e0b44 Department of Agriculture & Co-operation'),
(44117, 'https://ror.org/04w49ae90', 'de', 1, 'https://ror.org/04w49ae90 EBC Hochschule'),
(44118, 'https://ror.org/04w49dw51', 'en', 1, 'https://ror.org/04w49dw51 Pacific Institute for the Mathematical Sciences'),
(44119, 'https://ror.org/04w4h5c56', 'en', 1, 'https://ror.org/04w4h5c56 Rabbinical College Ohr Yisroel'),
(44120, 'https://ror.org/04w8xa018', 'no_lang_code', 1, 'https://ror.org/04w8xa018 Cadence Design Systems (United States)'),
(44121, 'https://ror.org/04w93kd83', 'en', 1, 'https://ror.org/04w93kd83 Institute for the Psychological Sciences'),
(44122, 'https://ror.org/04w9gdv63', 'en', 1, 'https://ror.org/04w9gdv63 Parliament of Australia'),
(44123, 'https://ror.org/04wa2dm78', 'en', 1, 'https://ror.org/04wa2dm78 Virginia Baptist College'),
(44124, 'https://ror.org/04wacmk20', 'no_lang_code', 1, 'https://ror.org/04wacmk20 Kuwait Petroleum Corporation (Kuwait) Ł…Ų¤Ų³Ų³Ų© Ų§Ł„ŲØŲŖŲ±ŁˆŁ„ Ų§Ł„ŁƒŁˆŁŠŲŖŁŠŲ©ā€Ž'),
(44125, 'https://ror.org/04wccky94', 'en', 1, 'https://ror.org/04wccky94 Climate Change, Agriculture and Food Security'),
(44126, 'https://ror.org/04wdr7416', 'no_lang_code', 1, 'https://ror.org/04wdr7416 Lupin Pharmaceuticals (India)'),
(44127, 'https://ror.org/04wdzm653', 'en', 1, 'https://ror.org/04wdzm653 World Forestry Center'),
(44128, 'https://ror.org/04were380', 'en', 1, 'https://ror.org/04were380 ESIC Hospital'),
(44129, 'https://ror.org/04wfc2h84', 'pt', 1, 'https://ror.org/04wfc2h84 Escola SecundÔria Quinta do Marquês'),
(44130, 'https://ror.org/04wh0kc34', 'en', 1, 'https://ror.org/04wh0kc34 Northeast Texas Community College'),
(44131, 'https://ror.org/04whcrx81', 'no_lang_code', 1, 'https://ror.org/04whcrx81 Linguagen (United States)'),
(44132, 'https://ror.org/04wnmck86', 'sl', 1, 'https://ror.org/04wnmck86 Šolski Center za PoŔto, Ekonomijo in Telekomunikacije'),
(44133, 'https://ror.org/04wpk4a30', 'en', 1, 'https://ror.org/04wpk4a30 Atlantic Institute of Oriental Medicine'),
(44134, 'https://ror.org/04wrg1d30', 'en', 1, 'https://ror.org/04wrg1d30 Max Planck Research Unit for Enzymology of Protein Folding Max-Planck-Forschungsstelle für Enzymologie der Proteinfaltung'),
(44135, 'https://ror.org/04wsxm558', 'pt', 1, 'https://ror.org/04wsxm558 Faculdade CƔsper Lƭbero'),
(44136, 'https://ror.org/04wtd6086', 'en', 1, 'https://ror.org/04wtd6086 Development Bank of Southern Africa'),
(44137, 'https://ror.org/04wteqw51', 'en', 1, 'https://ror.org/04wteqw51 Institute for System Dynamics and Control Theory Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гинамики систем Šø теории ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ имени Š’.М. ŠœŠ°Ń‚Ń€Š¾ŃŠ¾Š²Š°'),
(44138, 'https://ror.org/04wthrp69', 'en', 1, 'https://ror.org/04wthrp69 Państwowa Wyższa Szkoła Zawodowa w Głogowie State Higher Vocational School in Głogów'),
(44139, 'https://ror.org/04wtra345', 'en', 1, 'https://ror.org/04wtra345 Rural Development Institute äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å†œę‘å‘å±•ē ”ē©¶ę‰€'),
(44140, 'https://ror.org/04wvs0518', 'en', 1, 'https://ror.org/04wvs0518 Porticus'),
(44141, 'https://ror.org/04wx2hz08', 'en', 1, 'https://ror.org/04wx2hz08 India China Economic and Cultural Council'),
(44142, 'https://ror.org/04wz0k923', 'en', 1, 'https://ror.org/04wz0k923 Trinity Theological College äø‰äø€ē„žå­¦é™¢'),
(44143, 'https://ror.org/04wz1mc47', 'en', 1, 'https://ror.org/04wz1mc47 Calliope Film Resources'),
(44144, 'https://ror.org/04x22kg34', 'en', 1, 'https://ror.org/04x22kg34 Delbarton School'),
(44145, 'https://ror.org/04x2e7745', 'en', 1, 'https://ror.org/04x2e7745 AlloSource'),
(44146, 'https://ror.org/04x3tm905', 'en', 1, 'https://ror.org/04x3tm905 Institute of Chartered Accountants of India'),
(44147, 'https://ror.org/04x450n10', 'en', 1, 'https://ror.org/04x450n10 Northwest Mississippi Community College'),
(44148, 'https://ror.org/04x4haa49', 'en', 1, 'https://ror.org/04x4haa49 Chesapeake Bay Program'),
(44149, 'https://ror.org/04x4qbn15', 'no_lang_code', 1, 'https://ror.org/04x4qbn15 NEEL trimarans (France)'),
(44150, 'https://ror.org/04x7sgz22', 'en', 1, 'https://ror.org/04x7sgz22 Mining Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного'),
(44151, 'https://ror.org/04x9k0k55', 'en', 1, 'https://ror.org/04x9k0k55 Aquinas College - Tennessee'),
(44152, 'https://ror.org/04xa4q582', 'en', 1, 'https://ror.org/04xa4q582 Shanghai Academy of Social Sciences äøŠęµ·ē¤¾ä¼šē§‘å­¦é™¢'),
(44153, 'https://ror.org/04xadt873', 'pt', 1, 'https://ror.org/04xadt873 Associação Cultural de Arte e Comunicação Oficinas do Convento'),
(44154, 'https://ror.org/04xc6a353', 'en', 1, 'https://ror.org/04xc6a353 Regional Alliance for Sustainable Development'),
(44155, 'https://ror.org/04xcr6k92', 'no_lang_code', 1, 'https://ror.org/04xcr6k92 Accenture (Spain)'),
(44156, 'https://ror.org/04xghb049', 'fr', 1, 'https://ror.org/04xghb049 Institut Mauritanien de Recherches Océanographiques et des Pêches'),
(44157, 'https://ror.org/04xnqnd94', 'en', 1, 'https://ror.org/04xnqnd94 Institute for Humanities Research and Indigenous Studies of the North Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… исслеГований Šø коренных нароГов Девера'),
(44158, 'https://ror.org/04xprjz26', 'no_lang_code', 1, 'https://ror.org/04xprjz26 Geometric (India)'),
(44159, 'https://ror.org/04xrsnf23', 'en', 1, 'https://ror.org/04xrsnf23 Bolton College'),
(44160, 'https://ror.org/04xs1rp67', 'en', 1, 'https://ror.org/04xs1rp67 Institute of Wood Science and Technology'),
(44161, 'https://ror.org/04xsfz394', 'en', 1, 'https://ror.org/04xsfz394 National Institute for Scientific and Industrial Research'),
(44162, 'https://ror.org/04xwqjy30', 'no_lang_code', 1, 'https://ror.org/04xwqjy30 Ameren (United States)'),
(44163, 'https://ror.org/04xx6j115', 'fr', 1, 'https://ror.org/04xx6j115 Union Economique et MonƩtaire Ouest Africaine'),
(44164, 'https://ror.org/04xxdsr80', 'en', 1, 'https://ror.org/04xxdsr80 IT for Change'),
(44165, 'https://ror.org/04xxj4388', 'en', 1, 'https://ror.org/04xxj4388 Seattle School of Theology and Psychology'),
(44166, 'https://ror.org/04xxqgb42', 'no_lang_code', 1, 'https://ror.org/04xxqgb42 Leco Corporation (United States)'),
(44167, 'https://ror.org/04y0xnw59', 'fr', 1, 'https://ror.org/04y0xnw59 Enda Sahel et Afrique de l’Ouest'),
(44168, 'https://ror.org/04y4dkp70', 'en', 1, 'https://ror.org/04y4dkp70 PSG Institute of Advanced Studies'),
(44169, 'https://ror.org/04y4hcz67', 'en', 1, 'https://ror.org/04y4hcz67 Państwowa Wyższa Szkoła Zawodowa im. Szymona Szymonowica w Zamościu State Higher School of Vocational Education in Zamość'),
(44170, 'https://ror.org/04y50an90', 'en', 1, 'https://ror.org/04y50an90 Karlovac University of Applied Sciences VeleučiliŔte u Karlovcu'),
(44171, 'https://ror.org/04y5qg507', 'no_lang_code', 1, 'https://ror.org/04y5qg507 ITPEnergised Group (India)'),
(44172, 'https://ror.org/04y63ab76', 'en', 1, 'https://ror.org/04y63ab76 Catching the Dream'),
(44173, 'https://ror.org/04y65f081', 'en', 1, 'https://ror.org/04y65f081 Ohio Space Grant Consortium'),
(44174, 'https://ror.org/04y726b94', 'en', 1, 'https://ror.org/04y726b94 National Museum of the Finnish SƔmi'),
(44175, 'https://ror.org/04y75dx46', 'en', 1, 'https://ror.org/04y75dx46 Institute of Medical Sciences'),
(44176, 'https://ror.org/04y7b4z29', 'en', 1, 'https://ror.org/04y7b4z29 Coordinating Office for Control of Trypanosomiasis in Uganda'),
(44177, 'https://ror.org/04y8p8435', 'no_lang_code', 1, 'https://ror.org/04y8p8435 Kronotex (Germany)'),
(44178, 'https://ror.org/04ya3kq71', 'en', 1, 'https://ror.org/04ya3kq71 Polar Environment, Safety and Health Section'),
(44179, 'https://ror.org/04yaxh485', 'en', 1, 'https://ror.org/04yaxh485 Raffles Institution'),
(44180, 'https://ror.org/04yddv436', 'it', 1, 'https://ror.org/04yddv436 Conservatorio Statale di Musica Jacopo Tomadini Udine'),
(44181, 'https://ror.org/04yhxmc54', 'en', 1, 'https://ror.org/04yhxmc54 Southern Union State Community College'),
(44182, 'https://ror.org/04yjjyw09', 'fr', 1, 'https://ror.org/04yjjyw09 Institut pour Un Developpement Durable'),
(44183, 'https://ror.org/04ymsr904', 'en', 1, 'https://ror.org/04ymsr904 Carclew Youth Arts'),
(44184, 'https://ror.org/04yn1kj34', 'no_lang_code', 1, 'https://ror.org/04yn1kj34 Diafir (France)'),
(44185, 'https://ror.org/04ynw2g14', 'en', 1, 'https://ror.org/04ynw2g14 Information Technology Institute'),
(44186, 'https://ror.org/04yt1rh21', 'en', 1, 'https://ror.org/04yt1rh21 Lifespan'),
(44187, 'https://ror.org/04yt9wc05', 'no_lang_code', 1, 'https://ror.org/04yt9wc05 China Construction Eighth Engineering Division (China)'),
(44188, 'https://ror.org/04yts9m86', 'es', 1, 'https://ror.org/04yts9m86 Universidad Dr. JosƩ Gregorio HernƔndez'),
(44189, 'https://ror.org/04ywhbc61', 'en', 1, 'https://ror.org/04ywhbc61 Australian e-Health Research Centre'),
(44190, 'https://ror.org/04ywz9252', 'en', 1, 'https://ror.org/04ywz9252 Islamic Azad University Kerman دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کرمان'),
(44191, 'https://ror.org/04yx5fa32', 'no_lang_code', 1, 'https://ror.org/04yx5fa32 Nutricia Research (Netherlands)'),
(44192, 'https://ror.org/04yxemm04', 'en', 1, 'https://ror.org/04yxemm04 e-Waste Association of South Africa'),
(44193, 'https://ror.org/04yyexg79', 'en', 1, 'https://ror.org/04yyexg79 Southcentral Kentucky Community and Technical College'),
(44194, 'https://ror.org/04yyprp21', 'en', 1, 'https://ror.org/04yyprp21 Nashua Community College'),
(44195, 'https://ror.org/04yz1w831', 'en', 1, 'https://ror.org/04yz1w831 Partnership for Healthcare Improvement'),
(44196, 'https://ror.org/04z03cz64', 'de', 1, 'https://ror.org/04z03cz64 Hochschule der Bildenden Künste Saar'),
(44197, 'https://ror.org/04z1g6718', 'en', 1, 'https://ror.org/04z1g6718 Brookhaven College'),
(44198, 'https://ror.org/04z3sd442', 'en', 1, 'https://ror.org/04z3sd442 Centre for Schistosomiasis & Parasitology'),
(44199, 'https://ror.org/04z4fen17', 'en', 1, 'https://ror.org/04z4fen17 GƩnƩtique Humaine des Maladies Infectieuses Human Genetic of Infectious Diseases'),
(44200, 'https://ror.org/04z58j690', 'en', 1, 'https://ror.org/04z58j690 Polytechnic Pula'),
(44201, 'https://ror.org/04z65vq06', 'en', 1, 'https://ror.org/04z65vq06 Fine Arts Work Center'),
(44202, 'https://ror.org/04z8mkz77', 'en', 1, 'https://ror.org/04z8mkz77 Research Institute of Physiology and Fundamental Medicine of the Siberian Branch of the Russian Academy of Medical Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии Šø Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины»'),
(44203, 'https://ror.org/04z91h293', 'pt', 1, 'https://ror.org/04z91h293 Instituto Nacional de Desenvolvimento das Pescas'),
(44204, 'https://ror.org/04z9fas77', 'en', 1, 'https://ror.org/04z9fas77 Skolkovo Moscow School of Management ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń школа ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Дколково'),
(44205, 'https://ror.org/04z9hqv51', 'no_lang_code', 1, 'https://ror.org/04z9hqv51 Nidan'),
(44206, 'https://ror.org/04zb8fk81', 'en', 1, 'https://ror.org/04zb8fk81 Maastricht School of Management'),
(44207, 'https://ror.org/04ze84192', 'en', 1, 'https://ror.org/04ze84192 Australian College of Physical Education'),
(44208, 'https://ror.org/04zh58f23', 'no_lang_code', 1, 'https://ror.org/04zh58f23 Compagnie Africaine des Peintures'),
(44209, 'https://ror.org/04zh6ks36', 'no_lang_code', 1, 'https://ror.org/04zh6ks36 Leroux & Lotz Technologies (France)'),
(44210, 'https://ror.org/04zk59080', 'sv', 1, 'https://ror.org/04zk59080 Greta och Johan Kocks stiftelser'),
(44211, 'https://ror.org/04zk97n46', 'en', 1, 'https://ror.org/04zk97n46 New College Durham'),
(44212, 'https://ror.org/04zkbxs23', 'en', 1, 'https://ror.org/04zkbxs23 Royal College of Emergency Medicine'),
(44213, 'https://ror.org/04zkp0k73', 'en', 1, 'https://ror.org/04zkp0k73 State Police College Valsts Policijas Koledza'),
(44214, 'https://ror.org/04zmybf18', 'en', 1, 'https://ror.org/04zmybf18 Korea Institute of Nuclear Safety ķ•œźµ­ģ›ģžė „ģ•ˆģ „źø°ģˆ ģ›'),
(44215, 'https://ror.org/04zpt4h82', 'no_lang_code', 1, 'https://ror.org/04zpt4h82 IBM (Egypt)'),
(44216, 'https://ror.org/04zs2z136', 'it', 1, 'https://ror.org/04zs2z136 Collegio Ghislieri'),
(44217, 'https://ror.org/04zt8qr11', 'en', 1, 'https://ror.org/04zt8qr11 Addis Ababa City Administration Health Bureau'),
(44218, 'https://ror.org/04zxzn882', 'fr', 1, 'https://ror.org/04zxzn882 Bureau National d''Ɖtudes Techniques et de DĆ©veloppement'),
(44219, 'https://ror.org/04zyfmb02', 'en', 1, 'https://ror.org/04zyfmb02 Government of Khyber Pakhtunkhwa Ų­Ś©ŁˆŁ…ŲŖŁ Ų®ŪŒŲØŲ±Ł¾Ų®ŲŖŁˆŁ†Ų®ŁˆŲ§ دخیبر Ł¾ŚšŲŖŁˆā€ŒŁ†Ų®ŁˆŲ§Ų­Ś©ŁˆŁ…ŲŖ'),
(44220, 'https://ror.org/04zyg9w69', 'no_lang_code', 1, 'https://ror.org/04zyg9w69 Sonic Emotion (France)'),
(44221, 'https://ror.org/04zzmzt85', 'en', 1, 'https://ror.org/04zzmzt85 Temple University Ambler'),
(44222, 'https://ror.org/050133s12', 'en', 1, 'https://ror.org/050133s12 Schott Foundation for Public Education'),
(44223, 'https://ror.org/050384c29', 'en', 1, 'https://ror.org/050384c29 Kyungwoon University ź²½ģš“ėŒ€ķ•™źµ'),
(44224, 'https://ror.org/0504hx432', 'en', 1, 'https://ror.org/0504hx432 Egyptian Museum'),
(44225, 'https://ror.org/0504sy495', 'no_lang_code', 1, 'https://ror.org/0504sy495 Arthrex (Germany)'),
(44226, 'https://ror.org/0505yy418', 'en', 1, 'https://ror.org/0505yy418 Lakeridge Health'),
(44227, 'https://ror.org/0506h7130', 'en', 1, 'https://ror.org/0506h7130 Aaron Copland Fund for Music'),
(44228, 'https://ror.org/0506q7a98', 'en', 1, 'https://ror.org/0506q7a98 Yellow River Institute of Hydraulic Research 黄河氓文氓资源科学研究院'),
(44229, 'https://ror.org/05076r819', 'no_lang_code', 1, 'https://ror.org/05076r819 Biospyder (United States)'),
(44230, 'https://ror.org/0508qa918', 'no_lang_code', 1, 'https://ror.org/0508qa918 Syngenta (Zimbabwe)'),
(44231, 'https://ror.org/050a3p398', 'en', 1, 'https://ror.org/050a3p398 Asian American Journalists Association'),
(44232, 'https://ror.org/050af1664', 'en', 1, 'https://ror.org/050af1664 Bossier Parish Community College'),
(44233, 'https://ror.org/050awh611', 'no_lang_code', 1, 'https://ror.org/050awh611 Montupet (France)'),
(44234, 'https://ror.org/050dfh454', 'no_lang_code', 1, 'https://ror.org/050dfh454 Ashok Leyland (India)'),
(44235, 'https://ror.org/050ggte33', 'en', 1, 'https://ror.org/050ggte33 Stockholm School of Economics in Russia Š”Ń‚Š¾ŠŗŠ³Š¾Š»ŃŒŠ¼ŃŠŗŠ°Ń школа ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø в России'),
(44236, 'https://ror.org/050khj261', 'en', 1, 'https://ror.org/050khj261 Marijampole College Marijampoles Kolejia'),
(44237, 'https://ror.org/050khzd41', 'en', 1, 'https://ror.org/050khzd41 Peirce College'),
(44238, 'https://ror.org/050m92g92', 'en', 1, 'https://ror.org/050m92g92 Government Mohan Kumaramangalam Medical College'),
(44239, 'https://ror.org/050mv4p70', 'no_lang_code', 1, 'https://ror.org/050mv4p70 Yamaha (United States)'),
(44240, 'https://ror.org/050nwww65', 'en', 1, 'https://ror.org/050nwww65 Botswana Accountancy College'),
(44241, 'https://ror.org/050p5ky47', 'en', 1, 'https://ror.org/050p5ky47 CollegeAmerica'),
(44242, 'https://ror.org/050q0kv47', 'es', 1, 'https://ror.org/050q0kv47 Centro de Investigación Biomédica en Red de Epidemiología y Salud Pública'),
(44243, 'https://ror.org/050q16438', 'en', 1, 'https://ror.org/050q16438 Department of Sport and Recreation'),
(44244, 'https://ror.org/050r8mq79', 'en', 1, 'https://ror.org/050r8mq79 Thrombosis Research Institute'),
(44245, 'https://ror.org/050vepj62', 'en', 1, 'https://ror.org/050vepj62 Arctic College of the Peoples of the North ŠŠ ŠšŠ¢Š˜Š§Š•Š”ŠšŠ˜Š™ ŠšŠžŠ›Š›Š•Š”Š– ŠŠŠ ŠžŠ”ŠžŠ’ ДЕВЕРА'),
(44246, 'https://ror.org/050we9f15', 'en', 1, 'https://ror.org/050we9f15 South Carolina Space Grant Consortium'),
(44247, 'https://ror.org/050zhbw42', 'en', 1, 'https://ror.org/050zhbw42 American Institute of Bangladesh Studies'),
(44248, 'https://ror.org/0511bn634', 'no_lang_code', 1, 'https://ror.org/0511bn634 Chiesi (Italy)'),
(44249, 'https://ror.org/0511q3e85', 'en', 1, 'https://ror.org/0511q3e85 Gateway Community College'),
(44250, 'https://ror.org/051475v86', 'en', 1, 'https://ror.org/051475v86 Indian National Science Academy'),
(44251, 'https://ror.org/0516wpz95', 'en', 1, 'https://ror.org/0516wpz95 Tianjin Academy of Agricultural Sciences å¤©ę“„åø‚å†œäøšē§‘å­¦é™¢ęˆē«‹äŗŽ'),
(44252, 'https://ror.org/051cmzf26', 'en', 1, 'https://ror.org/051cmzf26 Roxbury Community College'),
(44253, 'https://ror.org/051e52h07', 'fr', 1, 'https://ror.org/051e52h07 Haute Ɖcole de Namur-LiĆØge-Luxembourg'),
(44254, 'https://ror.org/051eg6511', 'no_lang_code', 1, 'https://ror.org/051eg6511 Energy International (United States)'),
(44255, 'https://ror.org/051ev5v05', 'en', 1, 'https://ror.org/051ev5v05 American Institute of Certified Public Accountants'),
(44256, 'https://ror.org/051eyp684', 'en', 1, 'https://ror.org/051eyp684 Institute for the International Education of Students'),
(44257, 'https://ror.org/051f11n17', 'en', 1, 'https://ror.org/051f11n17 Institute of Molecular Biology and Biophysics ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ биологии Šø биофизики'),
(44258, 'https://ror.org/051fr2332', 'en', 1, 'https://ror.org/051fr2332 Institute of Structural Macrokinetics and Materials Science Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€Š½Š¾Š¹ макрокинетики Šø проблем Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(44259, 'https://ror.org/051gp9n72', 'en', 1, 'https://ror.org/051gp9n72 Santiago Canyon College'),
(44260, 'https://ror.org/051j50p12', 'en', 1, 'https://ror.org/051j50p12 The King''s College'),
(44261, 'https://ror.org/051jjt714', 'en', 1, 'https://ror.org/051jjt714 Institute of Electrophysics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŠŗŠø'),
(44262, 'https://ror.org/051ka9v26', 'no_lang_code', 1, 'https://ror.org/051ka9v26 Hybu Cig Cymru (United Kingdom)'),
(44263, 'https://ror.org/051ksdh55', 'en', 1, 'https://ror.org/051ksdh55 Kentucky Space Grant Consortium'),
(44264, 'https://ror.org/051kxxw69', 'en', 1, 'https://ror.org/051kxxw69 Pensacola State College'),
(44265, 'https://ror.org/051p3cy55', 'en', 1, 'https://ror.org/051p3cy55 Hebei Academy of Agriculture and Forestry Sciences ę²³åŒ—ēœå†œęž—ē§‘å­¦é™¢é—ä¼ ē”Ÿē†ē ”ē©¶ę‰€'),
(44266, 'https://ror.org/051qah137', 'no_lang_code', 1, 'https://ror.org/051qah137 VSL Korea (South Korea)'),
(44267, 'https://ror.org/051qrf195', 'en', 1, 'https://ror.org/051qrf195 Davis Applied Technology College'),
(44268, 'https://ror.org/051qxpt90', 'en', 1, 'https://ror.org/051qxpt90 School Center Novo mesto Å olski center Novo mesto'),
(44269, 'https://ror.org/051rc7j94', 'de', 1, 'https://ror.org/051rc7j94 Diploma Hochschule Diploma University'),
(44270, 'https://ror.org/051rq2a77', 'en', 1, 'https://ror.org/051rq2a77 Oxford Graduate School'),
(44271, 'https://ror.org/051sg1a03', 'no_lang_code', 1, 'https://ror.org/051sg1a03 AOL (United States)'),
(44272, 'https://ror.org/051sxdw86', 'en', 1, 'https://ror.org/051sxdw86 Royal Drawing School'),
(44273, 'https://ror.org/051vmc086', 'fr', 1, 'https://ror.org/051vmc086 Agro PME Fondation'),
(44274, 'https://ror.org/051zva233', 'en', 1, 'https://ror.org/051zva233 National Library Board ą®¤ąÆ‡ą®šą®æą®Æ நூலக ą®µą®¾ą®°ą®æą®Æą®®ąÆ 国家图书馆箔理局'),
(44275, 'https://ror.org/052073c89', 'pt', 1, 'https://ror.org/052073c89 Prefeitura Municipal de Vitória'),
(44276, 'https://ror.org/0521x3786', 'no_lang_code', 1, 'https://ror.org/0521x3786 Pathway Genomics (United States)'),
(44277, 'https://ror.org/0522bga53', 'it', 1, 'https://ror.org/0522bga53 Academy of Music Vincenzo Bellini Conservatorio Vincenzo Bellini, Conservatorio di Musica Vincenzo Bellini di Palermo'),
(44278, 'https://ror.org/0522dg826', 'en', 1, 'https://ror.org/0522dg826 Shanxi University of Traditional Chinese Medicine å±±č„æäø­åŒ»å­¦é™¢'),
(44279, 'https://ror.org/0523x4410', 'en', 1, 'https://ror.org/0523x4410 Jilin Academy of Traditional Chinese Medicine å‰ęž—ēœäø­åŒ»čÆē§‘å­¦é™¢'),
(44280, 'https://ror.org/05253sv14', 'no_lang_code', 1, 'https://ror.org/05253sv14 Enreco 2000 (Spain)'),
(44281, 'https://ror.org/05256fm24', 'en', 1, 'https://ror.org/05256fm24 Ministry of Health and Family Welfare ą¦øą§ą¦¬ą¦¾ą¦øą§ą¦„ą§ą¦Æ ও পরিবার ą¦•ą¦²ą§ą¦Æą¦¾ą¦£ ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(44282, 'https://ror.org/0525aen51', 'en', 1, 'https://ror.org/0525aen51 National Park College'),
(44283, 'https://ror.org/052a86v37', 'no_lang_code', 1, 'https://ror.org/052a86v37 Baikowski (France)'),
(44284, 'https://ror.org/052afrt88', 'en', 1, 'https://ror.org/052afrt88 Central Plantation Crops Research Institute'),
(44285, 'https://ror.org/052bjm215', 'en', 1, 'https://ror.org/052bjm215 MNR Medical College and Hospital'),
(44286, 'https://ror.org/052cqax41', 'en', 1, 'https://ror.org/052cqax41 Chinese Society of Theoretical and Applied Mechanics äø­å›½åŠ›å­¦å­¦ä¼š'),
(44287, 'https://ror.org/052f72b28', 'en', 1, 'https://ror.org/052f72b28 Vilniaus Dizaino Kolegija Vilnius College of Design'),
(44288, 'https://ror.org/052jm1735', 'en', 1, 'https://ror.org/052jm1735 MOH Holdings'),
(44289, 'https://ror.org/052rpb648', 'en', 1, 'https://ror.org/052rpb648 Resurrection University'),
(44290, 'https://ror.org/052x1x555', 'fr', 1, 'https://ror.org/052x1x555 Haute Ɖcole Libre Mosane'),
(44291, 'https://ror.org/052yxa807', 'en', 1, 'https://ror.org/052yxa807 Brotherhood of St Laurence'),
(44292, 'https://ror.org/052zj9g72', 'en', 1, 'https://ror.org/052zj9g72 Williston State College'),
(44293, 'https://ror.org/0530gbs37', 'de', 1, 'https://ror.org/0530gbs37 IB Hochschule'),
(44294, 'https://ror.org/0530xcn78', 'en', 1, 'https://ror.org/0530xcn78 Apex School of Theology'),
(44295, 'https://ror.org/0535kjm37', 'en', 1, 'https://ror.org/0535kjm37 Canadian Institute of Mining, Metallurgy and Petroleum Institut Canadien des Mines, de la MƩtallurgie et du PƩtrole'),
(44296, 'https://ror.org/05362bq16', 'en', 1, 'https://ror.org/05362bq16 Royal College of Anaesthetists'),
(44297, 'https://ror.org/0536hv290', 'en', 1, 'https://ror.org/0536hv290 Elizabeth Glaser Pediatric AIDS Foundation'),
(44298, 'https://ror.org/0536m9756', 'en', 1, 'https://ror.org/0536m9756 Northwest Institute of Literary Arts'),
(44299, 'https://ror.org/0536t7y80', 'en', 1, 'https://ror.org/0536t7y80 North Khorasan University of Medical Sciences'),
(44300, 'https://ror.org/0536wq444', 'en', 1, 'https://ror.org/0536wq444 Family of Faith College'),
(44301, 'https://ror.org/0536y0s22', 'en', 1, 'https://ror.org/0536y0s22 Daniels Fund'),
(44302, 'https://ror.org/0539hqx70', 'en', 1, 'https://ror.org/0539hqx70 Millennium Challenge Corporation'),
(44303, 'https://ror.org/053bwq229', 'en', 1, 'https://ror.org/053bwq229 Centrum fƶr Idrottsforskning Swedish Research Council for Sport Science'),
(44304, 'https://ror.org/053c08c15', 'en', 1, 'https://ror.org/053c08c15 Bicton College'),
(44305, 'https://ror.org/053cexp66', 'en', 1, 'https://ror.org/053cexp66 China Information Technology Security Evaluation Center äø­å›½äæ”ęÆå®‰å…Øęµ‹čÆ„äø­åæƒ'),
(44306, 'https://ror.org/053e12g40', 'en', 1, 'https://ror.org/053e12g40 Centre for Science and Environment'),
(44307, 'https://ror.org/053e6gh17', 'en', 1, 'https://ror.org/053e6gh17 Royal College of Radiologists'),
(44308, 'https://ror.org/053efsj20', 'en', 1, 'https://ror.org/053efsj20 Instituto Nacional de Ciência e Tecnologia de FÔrmacos e Medicamentos National Institute of Science and Technology of Drugs and Medicines'),
(44309, 'https://ror.org/053evkn98', 'no_lang_code', 1, 'https://ror.org/053evkn98 Abbott (South Korea)'),
(44310, 'https://ror.org/053gd2580', 'en', 1, 'https://ror.org/053gd2580 Botswana-Baylor Children''s Clinical Center of Excellence'),
(44311, 'https://ror.org/053hkpw83', 'en', 1, 'https://ror.org/053hkpw83 Children''s Trust'),
(44312, 'https://ror.org/053jnhe44', 'no_lang_code', 1, 'https://ror.org/053jnhe44 Mitsubishi Electric (United States)'),
(44313, 'https://ror.org/053mnhb64', 'en', 1, 'https://ror.org/053mnhb64 University of Finance, Business and Entrepreneurship Š’ŠøŃŃˆŠµ ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ по застраховане Šø финанси'),
(44314, 'https://ror.org/053n55597', 'cs', 1, 'https://ror.org/053n55597 Evropský Polytechnický Institut, Evropský polytechnický institut'),
(44315, 'https://ror.org/053nrfb18', 'en', 1, 'https://ror.org/053nrfb18 Southern Scientific Center Южный Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(44316, 'https://ror.org/053qdb191', 'fr', 1, 'https://ror.org/053qdb191 Laboratoire des Systèmes Macromoléculaires et Signalisation'),
(44317, 'https://ror.org/053qgh778', 'en', 1, 'https://ror.org/053qgh778 Aid to Development of Traditional Medicine Aide au DƩveloppement de la MƩdecine Traditionnelle'),
(44318, 'https://ror.org/053s4kp50', 'en', 1, 'https://ror.org/053s4kp50 Islamic Azad University Saveh دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų³Ų§ŁˆŁ‡'),
(44319, 'https://ror.org/053s50k72', 'en', 1, 'https://ror.org/053s50k72 Mid-America Baptist Theological Seminary'),
(44320, 'https://ror.org/053sycd29', 'en', 1, 'https://ror.org/053sycd29 Technological Institute for Superhard and Novel Carbon Materials Технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сверхтверГых Šø новых ŃƒŠ³Š»ŠµŃ€Š¾Š“Š½Ń‹Ń… материалов'),
(44321, 'https://ror.org/053wngn77', 'sl', 1, 'https://ror.org/053wngn77 TehniŔki Solski Center Maribor'),
(44322, 'https://ror.org/053y1tm43', 'en', 1, 'https://ror.org/053y1tm43 Mateur Higher School of Agriculture'),
(44323, 'https://ror.org/053y21r38', 'no_lang_code', 1, 'https://ror.org/053y21r38 RSA Cosmos (France)'),
(44324, 'https://ror.org/053ya0s96', 'pl', 1, 'https://ror.org/053ya0s96 Państwowa Wyższa Szkoła Zawodowa we Włocławku'),
(44325, 'https://ror.org/053yb3j55', 'en', 1, 'https://ror.org/053yb3j55 CollĆØge loyaliste Loyalist College'),
(44326, 'https://ror.org/053ykx779', 'en', 1, 'https://ror.org/053ykx779 Ministry of Health'),
(44327, 'https://ror.org/05407ka75', 'en', 1, 'https://ror.org/05407ka75 Catholic Biblical Association'),
(44328, 'https://ror.org/0542f9556', 'en', 1, 'https://ror.org/0542f9556 International Academy of Design & Technology'),
(44329, 'https://ror.org/0543wbp89', 'en', 1, 'https://ror.org/0543wbp89 Maryland State Arts Council'),
(44330, 'https://ror.org/05450rm96', 'en', 1, 'https://ror.org/05450rm96 Kaunas University of Applied Engineering Sciences Kauno technikos kolegijos'),
(44331, 'https://ror.org/0546v0856', 'cs', 1, 'https://ror.org/0546v0856 Karel Englis College, VysokÔ Ŕkola Karla EngliŔe'),
(44332, 'https://ror.org/0549pzy23', 'en', 1, 'https://ror.org/0549pzy23 National Veterinary Institute'),
(44333, 'https://ror.org/054b9rx02', 'no_lang_code', 1, 'https://ror.org/054b9rx02 Biospace Lab (France)'),
(44334, 'https://ror.org/054bxds61', 'en', 1, 'https://ror.org/054bxds61 Agência Nacional de Águas National Water Agency'),
(44335, 'https://ror.org/054cccb97', 'en', 1, 'https://ror.org/054cccb97 Grounded Media'),
(44336, 'https://ror.org/054ebrh70', 'en', 1, 'https://ror.org/054ebrh70 Danube Private University'),
(44337, 'https://ror.org/054n9rz51', 'en', 1, 'https://ror.org/054n9rz51 South Dakota Board of Regents'),
(44338, 'https://ror.org/054p3p004', 'en', 1, 'https://ror.org/054p3p004 Academy of Medical Royal Colleges'),
(44339, 'https://ror.org/054xffa50', 'en', 1, 'https://ror.org/054xffa50 Institute of Geology of Ore Deposits Petrography Mineralogy and Geochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Ń€ŃƒŠ“Š½Ń‹Ń… месторожГений петрографии минералогии Šø геохимии Российской акаГемии наук'),
(44340, 'https://ror.org/054xfjj29', 'en', 1, 'https://ror.org/054xfjj29 CRC for Rail Innovation'),
(44341, 'https://ror.org/054y8ka78', 'en', 1, 'https://ror.org/054y8ka78 European Polytechnical University Š•Š²Ń€Š¾ŠæŠµŠ¹ŃŠŗŠøŃ политехнически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(44342, 'https://ror.org/054ywmw83', 'en', 1, 'https://ror.org/054ywmw83 Higher Vocational College for Hospitality and Tourism Bled ViŔja Strokovna Šola za Gostinstvo in Turizem Bled'),
(44343, 'https://ror.org/054z67s11', 'en', 1, 'https://ror.org/054z67s11 Institute of Technology of Cambodia'),
(44344, 'https://ror.org/054zftm42', 'en', 1, 'https://ror.org/054zftm42 Shaheed Rajaei Cardiovascular Medical and Research Center'),
(44345, 'https://ror.org/054ztz556', 'en', 1, 'https://ror.org/054ztz556 New York Chiropractic College'),
(44346, 'https://ror.org/054zw2979', 'en', 1, 'https://ror.org/054zw2979 Arizona Space Grant Consortium'),
(44347, 'https://ror.org/054zz9x25', 'en', 1, 'https://ror.org/054zz9x25 Scientific Council for Government Policy Wetenschappelijke Raad voor het Regeringsbeleid'),
(44348, 'https://ror.org/0551rpg58', 'en', 1, 'https://ror.org/0551rpg58 Kementerian Ehwal Dalam Negeri Ministry of Home Affairs ą®‰ą®³ąÆą®¤ąÆą®±ąÆˆ ą®…ą®®ąÆˆą®šąÆą®šąÆ å†…ę”æéƒØ'),
(44349, 'https://ror.org/05532cf37', 'en', 1, 'https://ror.org/05532cf37 National Smallholder Farmers Association of Malawi'),
(44350, 'https://ror.org/05550md95', 'en', 1, 'https://ror.org/05550md95 Sudan Meteorological Authority'),
(44351, 'https://ror.org/0555c8894', 'en', 1, 'https://ror.org/0555c8894 Rocky Mountain College'),
(44352, 'https://ror.org/055699s02', 'en', 1, 'https://ror.org/055699s02 Market Matters'),
(44353, 'https://ror.org/055afmj54', 'en', 1, 'https://ror.org/055afmj54 Trinidad State Junior College'),
(44354, 'https://ror.org/055afwm56', 'no_lang_code', 1, 'https://ror.org/055afwm56 Genelux (United States)'),
(44355, 'https://ror.org/055camg08', 'en', 1, 'https://ror.org/055camg08 Scintillon Institute'),
(44356, 'https://ror.org/055csed06', 'en', 1, 'https://ror.org/055csed06 Mental Health Research Center of Russian Academy of Medical Sciences ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр ŠŸŃŠøŃ…ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š—Š“Š¾Ń€Š¾Š²ŃŒŃ Š ŠŠœŠ'),
(44357, 'https://ror.org/055dvgm08', 'en', 1, 'https://ror.org/055dvgm08 Business Academy Aarhus'),
(44358, 'https://ror.org/055e3p039', 'en', 1, 'https://ror.org/055e3p039 North Iowa Area Community College'),
(44359, 'https://ror.org/055fe2s59', 'en', 1, 'https://ror.org/055fe2s59 Institute of High Current Electronics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠøŠ»ŃŒŠ½Š¾Ń‚Š¾Ń‡Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(44360, 'https://ror.org/055fmxa32', 'en', 1, 'https://ror.org/055fmxa32 Dongnam Institute of Radiological & Medical Sciences'),
(44361, 'https://ror.org/055j5q029', 'en', 1, 'https://ror.org/055j5q029 Midwives College of Utah'),
(44362, 'https://ror.org/055mc4536', 'en', 1, 'https://ror.org/055mc4536 Malopolska Higher Vocational School of J. Dietl in Kraków Małopolska Wyższa Szkoła im. Józefa Dietla'),
(44363, 'https://ror.org/055r0va70', 'en', 1, 'https://ror.org/055r0va70 International Center for Biosaline Agriculture'),
(44364, 'https://ror.org/055s1wn27', 'de', 1, 'https://ror.org/055s1wn27 Hochschule für Polizei Baden-Württemberg'),
(44365, 'https://ror.org/055t3yk56', 'en', 1, 'https://ror.org/055t3yk56 ACT Department of Treasury'),
(44366, 'https://ror.org/055wa9133', 'no_lang_code', 1, 'https://ror.org/055wa9133 Innate Pharma (France)'),
(44367, 'https://ror.org/055x00f07', 'en', 1, 'https://ror.org/055x00f07 ICARE Institute of Medical Sciences and Research & Dr. Bidhan Chandra Roy Hospital'),
(44368, 'https://ror.org/055x7ey06', 'en', 1, 'https://ror.org/055x7ey06 Wabash Valley College'),
(44369, 'https://ror.org/0560e8961', 'en', 1, 'https://ror.org/0560e8961 Hamburg School of Business Administration'),
(44370, 'https://ror.org/0561npm29', 'en', 1, 'https://ror.org/0561npm29 Indian Institute of Pulses Research ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ दलहन ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(44371, 'https://ror.org/0562x8a64', 'no_lang_code', 1, 'https://ror.org/0562x8a64 Daewoo Shipbuilding and Marine Engineering (South Korea) ėŒ€ģš°ģ”°ģ„ ķ•“ģ–‘'),
(44372, 'https://ror.org/056456402', 'no_lang_code', 1, 'https://ror.org/056456402 Kenes Group (Switzerland)'),
(44373, 'https://ror.org/05649x844', 'lt', 1, 'https://ror.org/05649x844 Kauno MiŔku ir Aplinkos Inžinerijos Kolegija'),
(44374, 'https://ror.org/0567eg765', 'en', 1, 'https://ror.org/0567eg765 Fulbright New Zealand'),
(44375, 'https://ror.org/0569v7v35', 'en', 1, 'https://ror.org/0569v7v35 Action for ME'),
(44376, 'https://ror.org/056ahff07', 'no_lang_code', 1, 'https://ror.org/056ahff07 CRSTRA Centre de Recherche Scientifique et Technique sur les RƩgions Arides'),
(44377, 'https://ror.org/056an8658', 'en', 1, 'https://ror.org/056an8658 Institute of Clinical and Experimental Lymphology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ клинической Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ лимфологии'),
(44378, 'https://ror.org/056ant482', 'en', 1, 'https://ror.org/056ant482 State Council of Science and Technology for Sikkim'),
(44379, 'https://ror.org/056b4pm25', 'fr', 1, 'https://ror.org/056b4pm25 HƓpital Pasteur'),
(44380, 'https://ror.org/056c0n883', 'en', 1, 'https://ror.org/056c0n883 Uttarakhand State Council for Science and Technology'),
(44381, 'https://ror.org/056c6e777', 'es', 1, 'https://ror.org/056c6e777 Secretaría de Educación Superior, Ciencia, Tecnología e Innovación'),
(44382, 'https://ror.org/056d4e670', 'en', 1, 'https://ror.org/056d4e670 Ghana Center for Democratic Development'),
(44383, 'https://ror.org/056e86068', 'en', 1, 'https://ror.org/056e86068 Ministry of Food and Agriculture'),
(44384, 'https://ror.org/056fctw89', 'no_lang_code', 1, 'https://ror.org/056fctw89 Nexter (France)'),
(44385, 'https://ror.org/056fndr85', 'no_lang_code', 1, 'https://ror.org/056fndr85 Holtzbrinck Publishing Group (United States)'),
(44386, 'https://ror.org/056frtj18', 'en', 1, 'https://ror.org/056frtj18 China Atomic Energy Authority å›½å®¶åŽŸå­čƒ½ęœŗęž„'),
(44387, 'https://ror.org/056j68a95', 'en', 1, 'https://ror.org/056j68a95 Consumers Union'),
(44388, 'https://ror.org/056js0g95', 'en', 1, 'https://ror.org/056js0g95 Jilin Weather Modification Office å‰ęž—ēœäŗŗå·„å½±å“å¤©ę°”åŠžå…¬å®¤'),
(44389, 'https://ror.org/056mqdw19', 'no_lang_code', 1, 'https://ror.org/056mqdw19 ProtNeteomix (France)'),
(44390, 'https://ror.org/056r9ej12', 'en', 1, 'https://ror.org/056r9ej12 Ministry of Economic Development and Technology'),
(44391, 'https://ror.org/056v09p63', 'en', 1, 'https://ror.org/056v09p63 Surgical Society of Zambia'),
(44392, 'https://ror.org/056w1kd89', 'en', 1, 'https://ror.org/056w1kd89 Tea Research Institute äø­å›½å†œäøšē§‘å­¦é™¢čŒ¶å¶ē ”ē©¶ę‰€'),
(44393, 'https://ror.org/056y2wm23', 'en', 1, 'https://ror.org/056y2wm23 Ministry of Water and Environment'),
(44394, 'https://ror.org/056y4tg97', 'en', 1, 'https://ror.org/056y4tg97 Water Resources Commission of Ghana'),
(44395, 'https://ror.org/056yn4g37', 'en', 1, 'https://ror.org/056yn4g37 Ranger College'),
(44396, 'https://ror.org/056yt6m90', 'no_lang_code', 1, 'https://ror.org/056yt6m90 iRhythm (United States)'),
(44397, 'https://ror.org/0570hy479', 'en', 1, 'https://ror.org/0570hy479 Shanxi Academy of Agricultural Sciences å±±č„æēœå†œäøšē§‘å­¦é™¢ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(44398, 'https://ror.org/0571cj070', 'en', 1, 'https://ror.org/0571cj070 Fresh Science'),
(44399, 'https://ror.org/0572yc306', 'de', 1, 'https://ror.org/0572yc306 SRH Hochschule für Wirtschaft und Medien Calw'),
(44400, 'https://ror.org/05739xz97', 'en', 1, 'https://ror.org/05739xz97 Korea Information Society Development Institute 정볓통신정책연구원'),
(44401, 'https://ror.org/0576c1v48', 'en', 1, 'https://ror.org/0576c1v48 People''s Liberation Army 411 Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬å››äø€äø€åŒ»é™¢'),
(44402, 'https://ror.org/0578r5v59', 'fr', 1, 'https://ror.org/0578r5v59 Institut National SupƩrieur des Arts du Spectacle et des Techniques de Diffusion'),
(44403, 'https://ror.org/0579b5p03', 'en', 1, 'https://ror.org/0579b5p03 Communities for a Better Environment'),
(44404, 'https://ror.org/057ckzt47', 'en', 1, 'https://ror.org/057ckzt47 Shaanxi Provincial People''s Hospital é™•č„æēœäŗŗę°‘åŒ»é™¢'),
(44405, 'https://ror.org/057ec1n13', 'pt', 1, 'https://ror.org/057ec1n13 Radio MoƧambique'),
(44406, 'https://ror.org/057fg2a35', 'en', 1, 'https://ror.org/057fg2a35 Saint Vincent Health System'),
(44407, 'https://ror.org/057g0br29', 'en', 1, 'https://ror.org/057g0br29 Brazilian Institute of Environment and Renewable Natural Resources Instituto Brasileiro do Meio Ambiente e dos Recursos Naturais RenovƔveis'),
(44408, 'https://ror.org/057gftg63', 'en', 1, 'https://ror.org/057gftg63 Government Medical College'),
(44409, 'https://ror.org/057k85v44', 'en', 1, 'https://ror.org/057k85v44 Swiss Hotel Management School'),
(44410, 'https://ror.org/057wr4y62', 'en', 1, 'https://ror.org/057wr4y62 National Aerospace Laboratories ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æą¤µą„ˆą¤®ą¤¾ą¤Øą¤æą¤•ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾(NAL) ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤ą¤Æą¤°ą„‹ą¤øą„ą¤Ŗą„‡ą¤ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾ ą²Øą³ą²Æą²¾ą²·ą²Øą²²ą³ ą²ą²°ą³‹ą²øą³ą²Ŗą³‡ą²øą³ ą²²ą³ą²Æą²¾ą²¬ą³‹ą²°ą³‡ą²Ÿą²°ą²æ ą“Øą“¾ą“·ą“£ąµ½ ą“ą“±ąµ‹ą“øąµą“Ŗąµ‡ą“øąµ ą“²ą“¾ą“¬ą“±ą“Ÿąµą“Ÿą“±ąµ€ą“øąµ'),
(44411, 'https://ror.org/057xgt263', 'pt', 1, 'https://ror.org/057xgt263 Fundação de Tecnologia do Estado do Acre'),
(44412, 'https://ror.org/057ykey20', 'en', 1, 'https://ror.org/057ykey20 Government of Maharashtra ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°.भारत'),
(44413, 'https://ror.org/057z2zh71', 'en', 1, 'https://ror.org/057z2zh71 Ex''pression College for Digital Arts'),
(44414, 'https://ror.org/0580grj78', 'en', 1, 'https://ror.org/0580grj78 Institute of Advanced Studies in Administration Instituto de Estudios Superiores de Administración'),
(44415, 'https://ror.org/05813wx75', 'en', 1, 'https://ror.org/05813wx75 Institute for Research on Combustion Istituto di Ricerche sulla Combustione'),
(44416, 'https://ror.org/0582p5b89', 'en', 1, 'https://ror.org/0582p5b89 Academy of Tourism and Hotel Management in Gdansk Wyższa Szkoła Turystyki i Hotelarstwa w Gdańsku'),
(44417, 'https://ror.org/05834nb68', 'en', 1, 'https://ror.org/05834nb68 University of Security in Poznań Wyższa Szkoła Bezpieczeństwa w Poznaniu'),
(44418, 'https://ror.org/0583vk835', 'en', 1, 'https://ror.org/0583vk835 East Arkansas Community College'),
(44419, 'https://ror.org/058465397', 'en', 1, 'https://ror.org/058465397 North Carolina Space Grant Consortium'),
(44420, 'https://ror.org/0584ana26', 'en', 1, 'https://ror.org/0584ana26 Summit Public Schools'),
(44421, 'https://ror.org/0588z1342', 'no_lang_code', 1, 'https://ror.org/0588z1342 Thermax (India)'),
(44422, 'https://ror.org/058ab6j52', 'en', 1, 'https://ror.org/058ab6j52 Bemis Center for Contemporary Arts'),
(44423, 'https://ror.org/058ay4m70', 'en', 1, 'https://ror.org/058ay4m70 CRC Health Group'),
(44424, 'https://ror.org/058cd5p17', 'en', 1, 'https://ror.org/058cd5p17 Network of Networks of HIV Positives'),
(44425, 'https://ror.org/058er5w71', 'en', 1, 'https://ror.org/058er5w71 Spurgeons College'),
(44426, 'https://ror.org/058eyqd35', 'fr', 1, 'https://ror.org/058eyqd35 Ɖcole SupĆ©rieure Angevine d''Informatique et de Productique'),
(44427, 'https://ror.org/058fj5k57', 'en', 1, 'https://ror.org/058fj5k57 European Parliament Europees Parlement EuropƤisches Parlament Parlement EuropƩen'),
(44428, 'https://ror.org/058g3x876', 'no_lang_code', 1, 'https://ror.org/058g3x876 Grace Bio-Labs (United States)'),
(44429, 'https://ror.org/058jtxa41', 'en', 1, 'https://ror.org/058jtxa41 Craven Community College'),
(44430, 'https://ror.org/058k9k832', 'en', 1, 'https://ror.org/058k9k832 European University Evropski Univerzitet'),
(44431, 'https://ror.org/058mfk884', 'de', 1, 'https://ror.org/058mfk884 Museumsdorf Cloppenburg, Museumsdorf Cloppenburg – NiedersƤchsisches Freilichtmuseum'),
(44432, 'https://ror.org/058npc379', 'en', 1, 'https://ror.org/058npc379 Institution of Electronics and Telecommunication Engineers'),
(44433, 'https://ror.org/058psnj96', 'en', 1, 'https://ror.org/058psnj96 Japanese Red Cross Hokkaido College of Nursing ę—„ęœ¬čµ¤åå­—åŒ—ęµ·é“ēœ‹č­·å¤§å­¦'),
(44434, 'https://ror.org/058pt1w78', 'en', 1, 'https://ror.org/058pt1w78 Siddhartha Medical College'),
(44435, 'https://ror.org/058tmpm50', 'fr', 1, 'https://ror.org/058tmpm50 Groupe de Recherche et d’Action sur le Foncier'),
(44436, 'https://ror.org/058vg7409', 'en', 1, 'https://ror.org/058vg7409 Christian Missionary Fellowship International'),
(44437, 'https://ror.org/058vwqx43', 'en', 1, 'https://ror.org/058vwqx43 Institute for Doctoral Studies in the Visual Arts'),
(44438, 'https://ror.org/058x5eq06', 'en', 1, 'https://ror.org/058x5eq06 Beijing Haidian Hospital åŒ—äŗ¬åø‚ęµ·ę·€åŒ»é™¢'),
(44439, 'https://ror.org/058z3vf87', 'fr', 1, 'https://ror.org/058z3vf87 Gulliver'),
(44440, 'https://ror.org/0590dv991', 'en', 1, 'https://ror.org/0590dv991 Agricultural Research Corporation Ł‡ŁŠŲ¦Ų© Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(44441, 'https://ror.org/0590p8j42', 'en', 1, 'https://ror.org/0590p8j42 West Cheshire College'),
(44442, 'https://ror.org/0590ypp09', 'en', 1, 'https://ror.org/0590ypp09 Shanghai Estuarine & Coastal Science Research Center äøŠęµ·ę²³å£ęµ·å²øē§‘å­¦ē ”ē©¶äø­åæƒ'),
(44443, 'https://ror.org/0593f2f80', 'no_lang_code', 1, 'https://ror.org/0593f2f80 Byblos Group (France)'),
(44444, 'https://ror.org/059538728', 'pt', 1, 'https://ror.org/059538728 Centro de Ensino Superior de Juiz de Fora'),
(44445, 'https://ror.org/05961na22', 'en', 1, 'https://ror.org/05961na22 Marine Hydrophysical Institute ŠœŠ¾Ń€ŃŠŗŠ¾Š¹ ГиГрофизический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(44446, 'https://ror.org/05973tj24', 'cs', 1, 'https://ror.org/05973tj24 VysokƔ Skola AplikovanƩho PrƔva'),
(44447, 'https://ror.org/059b1px42', 'no_lang_code', 1, 'https://ror.org/059b1px42 Freelancer (Portugal)'),
(44448, 'https://ror.org/059dmrc35', 'en', 1, 'https://ror.org/059dmrc35 Institute of Agrarian Problems Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрных проблем'),
(44449, 'https://ror.org/059dt4t68', 'no_lang_code', 1, 'https://ror.org/059dt4t68 HistoGenetics (United States)'),
(44450, 'https://ror.org/059esw871', 'en', 1, 'https://ror.org/059esw871 Augusta Technical College'),
(44451, 'https://ror.org/059gb4y29', 'it', 1, 'https://ror.org/059gb4y29 Conservatorio di Musica N. Piccinni Conservatory of Bari'),
(44452, 'https://ror.org/059hj0296', 'it', 1, 'https://ror.org/059hj0296 Conservatorio Statale di Musica Nicola Sala - Benevento'),
(44453, 'https://ror.org/059hjkt43', 'hr', 1, 'https://ror.org/059hjkt43 Faculty for Business Management Fakultet za Poslovni Menadžment u Baru'),
(44454, 'https://ror.org/059hsy938', 'no_lang_code', 1, 'https://ror.org/059hsy938 China Minmetals (China) é•æę²™ēŸæå†¶ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(44455, 'https://ror.org/059nf5421', 'en', 1, 'https://ror.org/059nf5421 China National Research Institute of Food and Fermentation äø­å›½é£Ÿå“å‘é…µå·„äøšē ”ē©¶é™¢'),
(44456, 'https://ror.org/059qtxz36', 'en', 1, 'https://ror.org/059qtxz36 Dr. B.L. Kapur Memorial Hospital'),
(44457, 'https://ror.org/059qxwv46', 'en', 1, 'https://ror.org/059qxwv46 Kranj School Centre Å olski center Kranj'),
(44458, 'https://ror.org/059qzzv16', 'en', 1, 'https://ror.org/059qzzv16 Fujian Institute of Oceanography ē¦å»ŗęµ·ę“‹ē ”ē©¶ę‰€'),
(44459, 'https://ror.org/059sbje92', 'en', 1, 'https://ror.org/059sbje92 Ayush & Health Sciences University Chhattisgarh पं. ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤‰ą¤Ŗą¤¾ą¤§ą„ą¤Æą¤¾ą¤Æ ą¤øą„ą¤®ą„ƒą¤¤ą¤æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤†ą¤Æą„ą¤· ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą„'),
(44460, 'https://ror.org/059tqvg48', 'en', 1, 'https://ror.org/059tqvg48 Department of Chemistry and Material Sciences'),
(44461, 'https://ror.org/059tvcg64', 'no_lang_code', 1, 'https://ror.org/059tvcg64 Adobe Systems (United States)'),
(44462, 'https://ror.org/05a0bkt47', 'en', 1, 'https://ror.org/05a0bkt47 Amref Health Africa'),
(44463, 'https://ror.org/05a1xb650', 'en', 1, 'https://ror.org/05a1xb650 Seema Dental College and Hospital'),
(44464, 'https://ror.org/05a3mms16', 'en', 1, 'https://ror.org/05a3mms16 Academia Naţională de Educaţie Fizică şi Sport Bucureşti National Academy of Physical Education and Sport'),
(44465, 'https://ror.org/05a4fj080', 'en', 1, 'https://ror.org/05a4fj080 Rockingham Community College'),
(44466, 'https://ror.org/05a781r26', 'no_lang_code', 1, 'https://ror.org/05a781r26 Statisticon (Sweden)'),
(44467, 'https://ror.org/05a84rn81', 'en', 1, 'https://ror.org/05a84rn81 Long Island League to Abolish Cancer'),
(44468, 'https://ror.org/05a8hvs03', 'it', 1, 'https://ror.org/05a8hvs03 Istituto Ricerche Solari Locarno'),
(44469, 'https://ror.org/05a8r2n20', 'en', 1, 'https://ror.org/05a8r2n20 Sidley Austin'),
(44470, 'https://ror.org/05a99n355', 'no_lang_code', 1, 'https://ror.org/05a99n355 Vale (Brazil)'),
(44471, 'https://ror.org/05ab3fa41', 'en', 1, 'https://ror.org/05ab3fa41 New College'),
(44472, 'https://ror.org/05abrn361', 'fr', 1, 'https://ror.org/05abrn361 Centre Suisse de Cartographie de la Faune'),
(44473, 'https://ror.org/05ae2ng62', 'en', 1, 'https://ror.org/05ae2ng62 Wisconsin Space Grant Consortium'),
(44474, 'https://ror.org/05aemnj50', 'ro', 1, 'https://ror.org/05aemnj50 Universitatea Avram Iancu'),
(44475, 'https://ror.org/05anb3b46', 'no_lang_code', 1, 'https://ror.org/05anb3b46 3D Bioprinting Solutions (Russia) 3Š” Биопринтинг Š”Š¾Š»ŃŽŃˆŠµŠ½Ń'),
(44476, 'https://ror.org/05arhrm06', 'en', 1, 'https://ror.org/05arhrm06 Shura Council'),
(44477, 'https://ror.org/05awrb105', 'no_lang_code', 1, 'https://ror.org/05awrb105 Discovery Communications (United States)'),
(44478, 'https://ror.org/05awvfd69', 'en', 1, 'https://ror.org/05awvfd69 Kumi District Local Government'),
(44479, 'https://ror.org/05awzqc14', 'en', 1, 'https://ror.org/05awzqc14 Africa 2000 Network'),
(44480, 'https://ror.org/05axake65', 'en', 1, 'https://ror.org/05axake65 International Yacht Restoration School'),
(44481, 'https://ror.org/05b11sy48', 'en', 1, 'https://ror.org/05b11sy48 Antonelli College'),
(44482, 'https://ror.org/05b210c34', 'en', 1, 'https://ror.org/05b210c34 City of Cape Town IsiXeko SaseKapa Stad Kaapstad'),
(44483, 'https://ror.org/05b233w53', 'en', 1, 'https://ror.org/05b233w53 Association of California Community College Administrators'),
(44484, 'https://ror.org/05b2mj890', 'en', 1, 'https://ror.org/05b2mj890 Scott Community College'),
(44485, 'https://ror.org/05b4bk905', 'pt', 1, 'https://ror.org/05b4bk905 Governo do Estado de Mato Grosso'),
(44486, 'https://ror.org/05b5ahr77', 'en', 1, 'https://ror.org/05b5ahr77 Pine Technical and Community College'),
(44487, 'https://ror.org/05b6ef038', 'en', 1, 'https://ror.org/05b6ef038 American Academy of Psychiatry and the Law'),
(44488, 'https://ror.org/05b6yak03', 'en', 1, 'https://ror.org/05b6yak03 Community Arts Network'),
(44489, 'https://ror.org/05b74sw86', 'en', 1, 'https://ror.org/05b74sw86 Research Center of Neurology ŠŠ°ŃƒŃ‡Š½Š¾Š³Š¾ центра неврологии'),
(44490, 'https://ror.org/05b7jac82', 'en', 1, 'https://ror.org/05b7jac82 Hussian College'),
(44491, 'https://ror.org/05b7xvc63', 'en', 1, 'https://ror.org/05b7xvc63 Hochschule für Musik Nürnberg Nuremberg University of Music'),
(44492, 'https://ror.org/05b9pe067', 'en', 1, 'https://ror.org/05b9pe067 Malayan Colleges Laguna'),
(44493, 'https://ror.org/05baev169', 'en', 1, 'https://ror.org/05baev169 United States Commission of Fine Arts'),
(44494, 'https://ror.org/05baq4a16', 'no_lang_code', 1, 'https://ror.org/05baq4a16 Yong-in Songdam College ģš©ģøģ†”ė‹“ėŒ€ķ•™źµ'),
(44495, 'https://ror.org/05bb03e97', 'en', 1, 'https://ror.org/05bb03e97 Bodoland University बऔ''ą¤²ą„‡ą¤£ą„ą¤” ą¤¬ą„ą¤¹ą„ą¤®ą¤«ą¤°ą¤¾ą¤Æą¤øą¤¾ą¤²ą¤æ'),
(44496, 'https://ror.org/05bcewb51', 'en', 1, 'https://ror.org/05bcewb51 Instituto Millenium Millennium Institute'),
(44497, 'https://ror.org/05bdeef79', 'en', 1, 'https://ror.org/05bdeef79 Oil and Gas Center å›½åœŸčµ„ęŗéƒØę²¹ę°”čµ„ęŗęˆ˜ē•„ē ”ē©¶äø­åæƒ'),
(44498, 'https://ror.org/05bkrjx06', 'en', 1, 'https://ror.org/05bkrjx06 Institute of Hydroecology ę°“åˆ©éƒØäø­å›½ē§‘å­¦é™¢ę°“å·„ēØ‹ē”Ÿę€ē ”ē©¶ę‰€'),
(44499, 'https://ror.org/05bpnjz66', 'en', 1, 'https://ror.org/05bpnjz66 Institute of Pharmacology Russian Academy of Medical Sciences ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фармакологии имени Š’.Š’.Š—Š°ŠŗŃƒŃŠ¾Š²Š°Ā» ... Российской акаГемии');
INSERT INTO `rors` VALUES
(44500, 'https://ror.org/05bqzy933', 'en', 1, 'https://ror.org/05bqzy933 Sunderland College'),
(44501, 'https://ror.org/05bt9es09', 'no_lang_code', 1, 'https://ror.org/05bt9es09 Nipson Technology (France)'),
(44502, 'https://ror.org/05btn9560', 'en', 1, 'https://ror.org/05btn9560 Korean Intellectual Property Office ėŒ€ķ•œėÆ¼źµ­ ķŠ¹ķ—ˆģ²­'),
(44503, 'https://ror.org/05bxm0g51', 'fr', 1, 'https://ror.org/05bxm0g51 Centre Marocain des Techniques du Cuir'),
(44504, 'https://ror.org/05bxwd659', 'en', 1, 'https://ror.org/05bxwd659 Rome International School'),
(44505, 'https://ror.org/05bz49965', 'no_lang_code', 1, 'https://ror.org/05bz49965 Angelini Pharma (Italy)'),
(44506, 'https://ror.org/05c0t9w87', 'en', 1, 'https://ror.org/05c0t9w87 Vermont College of Fine Arts'),
(44507, 'https://ror.org/05c1b0415', 'en', 1, 'https://ror.org/05c1b0415 Sioux Falls Seminary'),
(44508, 'https://ror.org/05c2gdy67', 'en', 1, 'https://ror.org/05c2gdy67 Reformed Episcopal Seminary'),
(44509, 'https://ror.org/05c2t0m16', 'pt', 1, 'https://ror.org/05c2t0m16 Fundação de Apoio à Pesquisa do Rio Grande do Norte'),
(44510, 'https://ror.org/05c3bnw72', 'en', 1, 'https://ror.org/05c3bnw72 V.V. Dokuchaev Soil Science Institute'),
(44511, 'https://ror.org/05c3kvr55', 'en', 1, 'https://ror.org/05c3kvr55 Bangladesh Centre for Advanced Studies'),
(44512, 'https://ror.org/05c48af58', 'sw', 1, 'https://ror.org/05c48af58 Twaweza'),
(44513, 'https://ror.org/05c4jxb21', 'en', 1, 'https://ror.org/05c4jxb21 Workers Compensation Board of British Columbia'),
(44514, 'https://ror.org/05c686207', 'en', 1, 'https://ror.org/05c686207 Daoist Traditions College of Chinese Medical Arts'),
(44515, 'https://ror.org/05c8bms59', 'en', 1, 'https://ror.org/05c8bms59 Kenya Psychiatry Association​'),
(44516, 'https://ror.org/05c8v5d10', 'en', 1, 'https://ror.org/05c8v5d10 Pennsylvania Department of Labor and Industry'),
(44517, 'https://ror.org/05ccyns11', 'en', 1, 'https://ror.org/05ccyns11 Apollo Hospitals'),
(44518, 'https://ror.org/05cemnq96', 'en', 1, 'https://ror.org/05cemnq96 Society of Gastroenterology Nurses and Associates'),
(44519, 'https://ror.org/05cfwmz90', 'no_lang_code', 1, 'https://ror.org/05cfwmz90 REACH ETHIOPIA'),
(44520, 'https://ror.org/05cmcts66', 'no_lang_code', 1, 'https://ror.org/05cmcts66 Grameenphone (Bangladesh) ą¦—ą§ą¦°ą¦¾ą¦®ą§€ą¦£ą¦«ą§‹ą¦Ø'),
(44521, 'https://ror.org/05cnkke79', 'en', 1, 'https://ror.org/05cnkke79 National Vulvodynia Association'),
(44522, 'https://ror.org/05cnwh310', 'no_lang_code', 1, 'https://ror.org/05cnwh310 Surys (France)'),
(44523, 'https://ror.org/05crd4c40', 'en', 1, 'https://ror.org/05crd4c40 International Life Sciences Institute India'),
(44524, 'https://ror.org/05cstvk27', 'en', 1, 'https://ror.org/05cstvk27 Management Development Institute'),
(44525, 'https://ror.org/05ct5rw58', 'en', 1, 'https://ror.org/05ct5rw58 Saint-Petersburg Institute of History Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории'),
(44526, 'https://ror.org/05ctqth87', 'no_lang_code', 1, 'https://ror.org/05ctqth87 Usha Martin (India)'),
(44527, 'https://ror.org/05cvbj479', 'en', 1, 'https://ror.org/05cvbj479 Guangzhou HKUST Fok Ying Tung Research Institute éœč‹±äøœē ”ē©¶é™¢'),
(44528, 'https://ror.org/05cxb7m31', 'en', 1, 'https://ror.org/05cxb7m31 Heartland Baptist Bible College'),
(44529, 'https://ror.org/05cy65c44', 'en', 1, 'https://ror.org/05cy65c44 Concern for Development Initiatives in Africa'),
(44530, 'https://ror.org/05cy9p581', 'en', 1, 'https://ror.org/05cy9p581 Estrella Mountain Community College'),
(44531, 'https://ror.org/05cz6d336', 'no_lang_code', 1, 'https://ror.org/05cz6d336 Otemae College å¤§ę‰‹å‰ēŸ­ęœŸå¤§å­¦'),
(44532, 'https://ror.org/05d6z1532', 'de', 1, 'https://ror.org/05d6z1532 Hochschule für Finanzen Rheinland Pfalz'),
(44533, 'https://ror.org/05d89hd10', 'en', 1, 'https://ror.org/05d89hd10 Jesuit Madurai Province'),
(44534, 'https://ror.org/05d97wj93', 'en', 1, 'https://ror.org/05d97wj93 West Suffolk College'),
(44535, 'https://ror.org/05db06c70', 'en', 1, 'https://ror.org/05db06c70 Kenya Coastal Development Project'),
(44536, 'https://ror.org/05db4h730', 'en', 1, 'https://ror.org/05db4h730 Bryan College of Health Sciences'),
(44537, 'https://ror.org/05dbsyw70', 'es', 1, 'https://ror.org/05dbsyw70 Ministerio de Ciencia, TecnologĆ­a y Telecomunicaciones'),
(44538, 'https://ror.org/05dbw7b97', 'en', 1, 'https://ror.org/05dbw7b97 CVJM-Hochschule International YMCA University of Applied Sciences'),
(44539, 'https://ror.org/05dc3mt95', 'en', 1, 'https://ror.org/05dc3mt95 Asian Energy Institute'),
(44540, 'https://ror.org/05dcrp459', 'en', 1, 'https://ror.org/05dcrp459 Rainbow Children''s Hospital'),
(44541, 'https://ror.org/05dd0pt55', 'no_lang_code', 1, 'https://ror.org/05dd0pt55 Oracle (India)'),
(44542, 'https://ror.org/05dd3bg73', 'no_lang_code', 1, 'https://ror.org/05dd3bg73 Structural Timber Innovation Company (New Zealand)'),
(44543, 'https://ror.org/05dhgjm21', 'en', 1, 'https://ror.org/05dhgjm21 Institut Marocain des Relations Internationales MOROCCAN INSTITUTE OF INTERNATIONAL RELATIONS'),
(44544, 'https://ror.org/05dm44j82', 'no_lang_code', 1, 'https://ror.org/05dm44j82 Gramercy Research Group (United States)'),
(44545, 'https://ror.org/05dnc4543', 'en', 1, 'https://ror.org/05dnc4543 Organisation Pour la Mise en Valeur du Fleuve SƩnƩgal Senegal River Basin Development Authority'),
(44546, 'https://ror.org/05dngsw26', 'fr', 1, 'https://ror.org/05dngsw26 MinistĆØre de l''Ɖquipement'),
(44547, 'https://ror.org/05dry3213', 'en', 1, 'https://ror.org/05dry3213 Pidstryhach Institute for Applied Problems of Mechanics and Mathematics ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГних проблем механіки і математики ім. ŠÆ. Š”. ŠŸŃ–Š“ŃŃ‚Ń€ŠøŠ³Š°Ń‡Š°'),
(44548, 'https://ror.org/05dt7z971', 'en', 1, 'https://ror.org/05dt7z971 Changsha Medical University é•æę²™åŒ»å­¦é™¢'),
(44549, 'https://ror.org/05dw0xd38', 'no_lang_code', 1, 'https://ror.org/05dw0xd38 Huvepharma (Bulgaria)'),
(44550, 'https://ror.org/05dwsnj39', 'en', 1, 'https://ror.org/05dwsnj39 ING Direct'),
(44551, 'https://ror.org/05dx8t190', 'en', 1, 'https://ror.org/05dx8t190 International Association for the Study of Pain'),
(44552, 'https://ror.org/05dyx6314', 'en', 1, 'https://ror.org/05dyx6314 National Center for Research on Earthquake Engineering åœ‹å®¶åœ°éœ‡å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(44553, 'https://ror.org/05e0nrg39', 'no_lang_code', 1, 'https://ror.org/05e0nrg39 Africare'),
(44554, 'https://ror.org/05e0vkr08', 'en', 1, 'https://ror.org/05e0vkr08 Bibliothèque Nationale de Luxembourg Bibliothèque nationale de Luxembourg Lëtzebuerger Nationalbibliothéik National Library of Luxembourg'),
(44555, 'https://ror.org/05e1bqk54', 'en', 1, 'https://ror.org/05e1bqk54 Boise Bible College'),
(44556, 'https://ror.org/05e2y6e35', 'en', 1, 'https://ror.org/05e2y6e35 Social Development and Improvement Agency'),
(44557, 'https://ror.org/05e3g0s87', 'de', 1, 'https://ror.org/05e3g0s87 Bibliotheca Augustiniana'),
(44558, 'https://ror.org/05e7sd388', 'en', 1, 'https://ror.org/05e7sd388 Central Institute of Brackishwater Aquaculture'),
(44559, 'https://ror.org/05e8kce13', 'en', 1, 'https://ror.org/05e8kce13 Presbyterian Theological College'),
(44560, 'https://ror.org/05e9s0v14', 'no_lang_code', 1, 'https://ror.org/05e9s0v14 Tata Power Solar (India)'),
(44561, 'https://ror.org/05ea3hs66', 'en', 1, 'https://ror.org/05ea3hs66 National Research Institute for Veterinary Virology and Microbiology of Russia Всероссийский ŠŠ˜Š˜ ветеринарной Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(44562, 'https://ror.org/05ecysg06', 'en', 1, 'https://ror.org/05ecysg06 Regional Commissioners Office'),
(44563, 'https://ror.org/05edrtk54', 'hi', 1, 'https://ror.org/05edrtk54 Kadi Sarva Vishwavidyalaya'),
(44564, 'https://ror.org/05ee4t010', 'en', 1, 'https://ror.org/05ee4t010 National AIDS Council'),
(44565, 'https://ror.org/05efhq671', 'es', 1, 'https://ror.org/05efhq671 Centro de AnÔlisis y Difusión de la Economía Paraguya'),
(44566, 'https://ror.org/05egk1864', 'en', 1, 'https://ror.org/05egk1864 North Central Michigan College'),
(44567, 'https://ror.org/05egkbh47', 'en', 1, 'https://ror.org/05egkbh47 National Anti-Vivisection Society'),
(44568, 'https://ror.org/05ek3nq77', 'no_lang_code', 1, 'https://ror.org/05ek3nq77 Ghelfi Ondulati (Italy)'),
(44569, 'https://ror.org/05eqkxh55', 'en', 1, 'https://ror.org/05eqkxh55 New River Community College'),
(44570, 'https://ror.org/05err5w18', 'en', 1, 'https://ror.org/05err5w18 Manatū Mō Te Taiao Ministry for the Environment'),
(44571, 'https://ror.org/05et1sq07', 'en', 1, 'https://ror.org/05et1sq07 Medical Research Council of Zimbabwe'),
(44572, 'https://ror.org/05etkex69', 'en', 1, 'https://ror.org/05etkex69 Department of Genomes & Genetics'),
(44573, 'https://ror.org/05evqj924', 'en', 1, 'https://ror.org/05evqj924 SPIE Europe'),
(44574, 'https://ror.org/05ewcwb21', 'en', 1, 'https://ror.org/05ewcwb21 Pharmaceutical and Medical Device Regulatory Science Society of Japan åŒ»č–¬å“åŒ»ē™‚ę©Ÿå™Øćƒ¬ć‚®ćƒ„ćƒ©ćƒˆćƒŖćƒ¼ć‚µć‚¤ć‚Øćƒ³ć‚¹č²”å›£'),
(44575, 'https://ror.org/05exk7n54', 'en', 1, 'https://ror.org/05exk7n54 Arusha City Council'),
(44576, 'https://ror.org/05eybs418', 'en', 1, 'https://ror.org/05eybs418 Anoka-Ramsey Community College'),
(44577, 'https://ror.org/05eyxqf74', 'de', 1, 'https://ror.org/05eyxqf74 Fachhochschule für Wirtschaft und Technik, Private Hochschule für Wirtschaft und Technik'),
(44578, 'https://ror.org/05ez1q344', 'fr', 1, 'https://ror.org/05ez1q344 Ɖcole SupĆ©rieure des Arts de l''Image Le 75'),
(44579, 'https://ror.org/05ez4ar64', 'en', 1, 'https://ror.org/05ez4ar64 Artemis Hospitals'),
(44580, 'https://ror.org/05ezcey15', 'no_lang_code', 1, 'https://ror.org/05ezcey15 Toa Pharmaceutical (Japan)'),
(44581, 'https://ror.org/05ezpsg97', 'en', 1, 'https://ror.org/05ezpsg97 Ozark Christian College'),
(44582, 'https://ror.org/05f0php28', 'en', 1, 'https://ror.org/05f0php28 Sichuan Academy of Agricultural Sciences å››å·ēœå†œäøšē§‘å­¦é™¢ä½œē‰©ē ”ē©¶ę‰€'),
(44583, 'https://ror.org/05f11bs74', 'en', 1, 'https://ror.org/05f11bs74 National Computer Board'),
(44584, 'https://ror.org/05f3gj938', 'en', 1, 'https://ror.org/05f3gj938 BTK - Hochschule für Kunst & Design BTK University of Arts & Design'),
(44585, 'https://ror.org/05f5rab97', 'en', 1, 'https://ror.org/05f5rab97 Ear Science Institute Australia'),
(44586, 'https://ror.org/05f5ttq44', 'no_lang_code', 1, 'https://ror.org/05f5ttq44 Mauna Kea Technologies (France)'),
(44587, 'https://ror.org/05f6c0c45', 'en', 1, 'https://ror.org/05f6c0c45 Helse Nord RHF Northern Norway Regional Health Authority'),
(44588, 'https://ror.org/05f7skt07', 'en', 1, 'https://ror.org/05f7skt07 Sri Guru Harkrishan Sahib Charitable Eye Hospital Trust'),
(44589, 'https://ror.org/05f9b5v38', 'en', 1, 'https://ror.org/05f9b5v38 Grand Egyptian Museum'),
(44590, 'https://ror.org/05f9h4q47', 'no_lang_code', 1, 'https://ror.org/05f9h4q47 Exactech (France)'),
(44591, 'https://ror.org/05fbb1126', 'pt', 1, 'https://ror.org/05fbb1126 Instituto Nacional de Ciência e Tecnologia de Doenças Tropicais'),
(44592, 'https://ror.org/05fd6p289', 'en', 1, 'https://ror.org/05fd6p289 Australian Communications Consumer Action Network'),
(44593, 'https://ror.org/05ff6z697', 'en', 1, 'https://ror.org/05ff6z697 Major League Baseball'),
(44594, 'https://ror.org/05ffhwq07', 'en', 1, 'https://ror.org/05ffhwq07 California Space Grant Consortium'),
(44595, 'https://ror.org/05fj0ng27', 'fr', 1, 'https://ror.org/05fj0ng27 Ɖcole Pratique des Hautes Ɖtudes Commerciales'),
(44596, 'https://ror.org/05fmdkk55', 'en', 1, 'https://ror.org/05fmdkk55 Memphis College of Art'),
(44597, 'https://ror.org/05fmgwf75', 'no_lang_code', 1, 'https://ror.org/05fmgwf75 Associated British Ports (United Kingdom)'),
(44598, 'https://ror.org/05fp0vp37', 'it', 1, 'https://ror.org/05fp0vp37 Accademia di Belle Arti di Lecce'),
(44599, 'https://ror.org/05fqva713', 'en', 1, 'https://ror.org/05fqva713 South African National Blood Service'),
(44600, 'https://ror.org/05ft5aq05', 'en', 1, 'https://ror.org/05ft5aq05 JTC Corporation č£•å»Šé›†å›¢'),
(44601, 'https://ror.org/05fwp8t64', 'de', 1, 'https://ror.org/05fwp8t64 Hochschule der Deutschen Bundesbank'),
(44602, 'https://ror.org/05fx0av92', 'en', 1, 'https://ror.org/05fx0av92 Centre technique du textile Textile Technical Center'),
(44603, 'https://ror.org/05fx6hz85', 'pt', 1, 'https://ror.org/05fx6hz85 Sport Lisboa e Benfica'),
(44604, 'https://ror.org/05fy6my48', 'no_lang_code', 1, 'https://ror.org/05fy6my48 Prudential Financial (United States)'),
(44605, 'https://ror.org/05fy98n62', 'en', 1, 'https://ror.org/05fy98n62 Columbia College'),
(44606, 'https://ror.org/05g59tn70', 'tr', 1, 'https://ror.org/05g59tn70 İzmir Kavram Meslek Yüksek Okulu'),
(44607, 'https://ror.org/05g5fwv52', 'en', 1, 'https://ror.org/05g5fwv52 North Carolina Exploring Cultural Heritage Online'),
(44608, 'https://ror.org/05g5nrw43', 'no_lang_code', 1, 'https://ror.org/05g5nrw43 General Motors (India)'),
(44609, 'https://ror.org/05g617r34', 'en', 1, 'https://ror.org/05g617r34 New Hope Christian College'),
(44610, 'https://ror.org/05g795n60', 'en', 1, 'https://ror.org/05g795n60 Justice Development and Peace Caritas'),
(44611, 'https://ror.org/05g7f8997', 'en', 1, 'https://ror.org/05g7f8997 Talmudical Seminary Oholei Torah'),
(44612, 'https://ror.org/05g89q777', 'no_lang_code', 1, 'https://ror.org/05g89q777 Vatterott College'),
(44613, 'https://ror.org/05g9jck81', 'no_lang_code', 1, 'https://ror.org/05g9jck81 MediaTek (Taiwan) čÆē™¼ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(44614, 'https://ror.org/05g9jvj02', 'en', 1, 'https://ror.org/05g9jvj02 Kosair Charities'),
(44615, 'https://ror.org/05gap9e81', 'fr', 1, 'https://ror.org/05gap9e81 MinistĆØre de l’Enseignement SupĆ©rieur et de la Recherche Scientifique'),
(44616, 'https://ror.org/05gb9fv74', 'en', 1, 'https://ror.org/05gb9fv74 Southwest Acupuncture College - Santa Fe'),
(44617, 'https://ror.org/05gd3g169', 'it', 1, 'https://ror.org/05gd3g169 Conservatorio di Musica Stanislao Giacomantonio'),
(44618, 'https://ror.org/05ghbet76', 'en', 1, 'https://ror.org/05ghbet76 Associated Board of the Royal Schools of Music'),
(44619, 'https://ror.org/05ghhx264', 'en', 1, 'https://ror.org/05ghhx264 PƤdagogische Hochschule Zug University of Teacher Education Zug'),
(44620, 'https://ror.org/05gj5ka88', 'en', 1, 'https://ror.org/05gj5ka88 National Diet Library å›½ē«‹å›½ä¼šå›³ę›øé¤Ø'),
(44621, 'https://ror.org/05gja2q95', 'en', 1, 'https://ror.org/05gja2q95 Phoenix Seminary'),
(44622, 'https://ror.org/05gjrwv72', 'en', 1, 'https://ror.org/05gjrwv72 Government of Nepal ą¤Øą„‡ą¤Ŗą¤¾ą¤² सरकार'),
(44623, 'https://ror.org/05gjxaj47', 'pl', 1, 'https://ror.org/05gjxaj47 Wyższa Szkoła Nauk Społecznych z Siedzibą w Lublinie'),
(44624, 'https://ror.org/05gkhkw84', 'pt', 1, 'https://ror.org/05gkhkw84 Centro de Formação Profissional para a Indústria Cerâmica'),
(44625, 'https://ror.org/05gm3yv92', 'en', 1, 'https://ror.org/05gm3yv92 North Eastern Indira Gandhi Regional Institute of Health and Medical Sciences'),
(44626, 'https://ror.org/05gmmwe91', 'no_lang_code', 1, 'https://ror.org/05gmmwe91 Britannia University'),
(44627, 'https://ror.org/05gmsjx02', 'en', 1, 'https://ror.org/05gmsjx02 Shorter College'),
(44628, 'https://ror.org/05gmwtd57', 'en', 1, 'https://ror.org/05gmwtd57 Institute of History and Archaeology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории Šø археологии Š£Ń€Šž Š ŠŠ'),
(44629, 'https://ror.org/05gn8bd38', 'en', 1, 'https://ror.org/05gn8bd38 Yukon Agricultural Association'),
(44630, 'https://ror.org/05gsxwg61', 'es', 1, 'https://ror.org/05gsxwg61 Oficina Regional de Coordinación de Salud Mental'),
(44631, 'https://ror.org/05gvg0p95', 'en', 1, 'https://ror.org/05gvg0p95 Centre for Water Resources Development and Management'),
(44632, 'https://ror.org/05gvkv284', 'fr', 1, 'https://ror.org/05gvkv284 Institut de Recherche Agronomique de GuinƩe'),
(44633, 'https://ror.org/05gvzz769', 'en', 1, 'https://ror.org/05gvzz769 UPASI Tea Research Foundation'),
(44634, 'https://ror.org/05gwc3q21', 'es', 1, 'https://ror.org/05gwc3q21 Instituto Tecnologico de Veracruz'),
(44635, 'https://ror.org/05gy3fg68', 'en', 1, 'https://ror.org/05gy3fg68 SƩminaire thƩologique de westminster Westminster Theological Seminary'),
(44636, 'https://ror.org/05h4fcj88', 'no_lang_code', 1, 'https://ror.org/05h4fcj88 Mercers’ Company (United Kingdom)'),
(44637, 'https://ror.org/05h4smh31', 'en', 1, 'https://ror.org/05h4smh31 Summit Christian College'),
(44638, 'https://ror.org/05h7nhz20', 'en', 1, 'https://ror.org/05h7nhz20 Dong Thap University'),
(44639, 'https://ror.org/05h8na936', 'en', 1, 'https://ror.org/05h8na936 New York State Council on the Arts'),
(44640, 'https://ror.org/05h8yxf34', 'en', 1, 'https://ror.org/05h8yxf34 Hartford Food System'),
(44641, 'https://ror.org/05hen7093', 'no_lang_code', 1, 'https://ror.org/05hen7093 Sonatrach (Algeria) المؤسسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„ŲŖŁ†Ł‚ŁŠŲØ, صناعة, نقل, ŲŖŲ­ŁˆŁŠŁ„ و ŲŖŲ³ŁˆŁŠŁ‚ Ų§Ł„Ł…Ų­Ų±ŁˆŁ‚Ų§ŲŖ'),
(44642, 'https://ror.org/05hez5t42', 'en', 1, 'https://ror.org/05hez5t42 Süleyman Şah University Süleyman Şah Üniversitesi'),
(44643, 'https://ror.org/05hfa9864', 'it', 1, 'https://ror.org/05hfa9864 Conservatorio Guido Cantelli di Novara'),
(44644, 'https://ror.org/05hgtp764', 'en', 1, 'https://ror.org/05hgtp764 University of Agriculture'),
(44645, 'https://ror.org/05hhm9a98', 'en', 1, 'https://ror.org/05hhm9a98 Savannah River Operations Office'),
(44646, 'https://ror.org/05hk82j82', 'en', 1, 'https://ror.org/05hk82j82 Anchor Center for Blind Children'),
(44647, 'https://ror.org/05hn31665', 'en', 1, 'https://ror.org/05hn31665 Young Harris College'),
(44648, 'https://ror.org/05hp8wn67', 'en', 1, 'https://ror.org/05hp8wn67 Department of Internal Affairs Te Tari Taiwhenua'),
(44649, 'https://ror.org/05hsv7e61', 'en', 1, 'https://ror.org/05hsv7e61 Office of Economic Impact and Diversity'),
(44650, 'https://ror.org/05hvcqy45', 'pt', 1, 'https://ror.org/05hvcqy45 Instituto AgronƓmico do ParanƔ'),
(44651, 'https://ror.org/05hwvzg47', 'en', 1, 'https://ror.org/05hwvzg47 Federal Reserve Bank of New York'),
(44652, 'https://ror.org/05hwzrf74', 'en', 1, 'https://ror.org/05hwzrf74 Chuncheon Sacred Heart Hospital'),
(44653, 'https://ror.org/05hxfvg04', 'en', 1, 'https://ror.org/05hxfvg04 Liaoning Ocean and Fisheries Research Institute č¾½å®ēœęµ·ę“‹ę°“äŗ§ē§‘å­¦ē ”ē©¶é™¢'),
(44654, 'https://ror.org/05hxqvt36', 'en', 1, 'https://ror.org/05hxqvt36 Institut de Medicina Predictiva i Personalitzada del Cancer Institute of Predictive and Personalized Medicine of Cancer'),
(44655, 'https://ror.org/05hxrpj87', 'en', 1, 'https://ror.org/05hxrpj87 China Electronics Standardization Institute äø­å›½ē”µå­ęŠ€ęœÆę ‡å‡†åŒ–ē ”ē©¶é™¢'),
(44656, 'https://ror.org/05hza8t97', 'en', 1, 'https://ror.org/05hza8t97 Instituto Nacional de Gestão de Calamidades National Disasters Management Institute'),
(44657, 'https://ror.org/05j03hp45', 'en', 1, 'https://ror.org/05j03hp45 Panevėžys College'),
(44658, 'https://ror.org/05j137f13', 'en', 1, 'https://ror.org/05j137f13 Act Health'),
(44659, 'https://ror.org/05j1pnm38', 'en', 1, 'https://ror.org/05j1pnm38 Dunhuang Research Academy ę•¦ē…Œē ”ē©¶é™¢'),
(44660, 'https://ror.org/05j2c6r36', 'en', 1, 'https://ror.org/05j2c6r36 Virginia Theological Seminary'),
(44661, 'https://ror.org/05j2t3d29', 'en', 1, 'https://ror.org/05j2t3d29 Ministry for Foreign Affairs, Education and Culture'),
(44662, 'https://ror.org/05j4m3n18', 'no_lang_code', 1, 'https://ror.org/05j4m3n18 Immediate Post Concussion Assessment and Cognitive Testing (United States)'),
(44663, 'https://ror.org/05j6xkp39', 'en', 1, 'https://ror.org/05j6xkp39 Perinatal HIV Research Unit'),
(44664, 'https://ror.org/05j78sg27', 'en', 1, 'https://ror.org/05j78sg27 National Primary Health Care Development Agency'),
(44665, 'https://ror.org/05j873a45', 'en', 1, 'https://ror.org/05j873a45 Indian Institute of Soil Science ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ-ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤®ą„ƒą¤¦ą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(44666, 'https://ror.org/05jc16005', 'no_lang_code', 1, 'https://ror.org/05jc16005 Atys Medical (France)'),
(44667, 'https://ror.org/05jc4yc89', 'en', 1, 'https://ror.org/05jc4yc89 China Meat Research Centre äø­å›½č‚‰ē±»é£Ÿå“ē ”ē©¶äø­åæƒ'),
(44668, 'https://ror.org/05jdfze05', 'en', 1, 'https://ror.org/05jdfze05 Indian Institute of Soil and Water Conservation'),
(44669, 'https://ror.org/05jdvx041', 'en', 1, 'https://ror.org/05jdvx041 New Zealand Council for Educational Research'),
(44670, 'https://ror.org/05je3gn27', 'pt', 1, 'https://ror.org/05je3gn27 Centro UniversitƔrio do Rio Grande do Norte'),
(44671, 'https://ror.org/05je8kx69', 'en', 1, 'https://ror.org/05je8kx69 St Patrick''s College'),
(44672, 'https://ror.org/05jext738', 'en', 1, 'https://ror.org/05jext738 Driestar Christian University'),
(44673, 'https://ror.org/05jh6j253', 'en', 1, 'https://ror.org/05jh6j253 Resource Conflict Institute'),
(44674, 'https://ror.org/05jh79p16', 'no_lang_code', 1, 'https://ror.org/05jh79p16 American Airlines (United States)'),
(44675, 'https://ror.org/05jhdev04', 'en', 1, 'https://ror.org/05jhdev04 Office of the Registrar General & Census Commissioner'),
(44676, 'https://ror.org/05jhyr833', 'en', 1, 'https://ror.org/05jhyr833 Boston Graduate School of Psychoanalysis'),
(44677, 'https://ror.org/05jjx9m04', 'es', 1, 'https://ror.org/05jjx9m04 Fundación Ciencias de la Documentación'),
(44678, 'https://ror.org/05jn2xb28', 'en', 1, 'https://ror.org/05jn2xb28 Kidney Health New Zealand'),
(44679, 'https://ror.org/05jn4y223', 'en', 1, 'https://ror.org/05jn4y223 NewSchool of Architecture and Design'),
(44680, 'https://ror.org/05jnbme07', 'en', 1, 'https://ror.org/05jnbme07 Birla Institute of Technology and Science, Pilani - Dubai Campus बिरला ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤Ŗą¤æą¤²ą¤¾ą¤Øą„€-ą¤¦ą„ą¤¬ą¤ˆ ą¤•ą„ˆą¤‚ą¤Ŗą¤ø'),
(44681, 'https://ror.org/05jnejj89', 'pt', 1, 'https://ror.org/05jnejj89 Faculdades EST'),
(44682, 'https://ror.org/05jqx2y43', 'fr', 1, 'https://ror.org/05jqx2y43 Observatoire Satellital des ForĆŖts d’Afrique Centrale'),
(44683, 'https://ror.org/05jr3qk95', 'en', 1, 'https://ror.org/05jr3qk95 Mid Atlantic Arts Foundation'),
(44684, 'https://ror.org/05jwrfc26', 'en', 1, 'https://ror.org/05jwrfc26 Rajasthan Dental College and Hospital'),
(44685, 'https://ror.org/05jwx8118', 'en', 1, 'https://ror.org/05jwx8118 Tennessee College of Applied Technology - Pulaski'),
(44686, 'https://ror.org/05jyjaa40', 'no_lang_code', 1, 'https://ror.org/05jyjaa40 Keolis (France)'),
(44687, 'https://ror.org/05jysw312', 'en', 1, 'https://ror.org/05jysw312 Hamilton Technical College'),
(44688, 'https://ror.org/05k0kb696', 'en', 1, 'https://ror.org/05k0kb696 Institute of Management Technology'),
(44689, 'https://ror.org/05k5nmp03', 'pt', 1, 'https://ror.org/05k5nmp03 Prefeitura Municipal de Belo Horizonte'),
(44690, 'https://ror.org/05k6xb467', 'en', 1, 'https://ror.org/05k6xb467 Visible Music College'),
(44691, 'https://ror.org/05k70qf45', 'en', 1, 'https://ror.org/05k70qf45 Lake Champlain Sea Grant'),
(44692, 'https://ror.org/05k7s2p27', 'no_lang_code', 1, 'https://ror.org/05k7s2p27 Nonin Medical (United States)'),
(44693, 'https://ror.org/05k8mpr32', 'no_lang_code', 1, 'https://ror.org/05k8mpr32 Smart Separations (United Kingdom)'),
(44694, 'https://ror.org/05k9pq902', 'en', 1, 'https://ror.org/05k9pq902 Southern African Catholic Bishops Conference'),
(44695, 'https://ror.org/05k9vmz93', 'de', 1, 'https://ror.org/05k9vmz93 Hochschule für Telekommunikation Leipzig'),
(44696, 'https://ror.org/05ka3vy68', 'en', 1, 'https://ror.org/05ka3vy68 Roberto-Venn School of Luthiery'),
(44697, 'https://ror.org/05kb3r694', 'en', 1, 'https://ror.org/05kb3r694 Stanmore College'),
(44698, 'https://ror.org/05kbrcy03', 'en', 1, 'https://ror.org/05kbrcy03 Episcopal Divinity School'),
(44699, 'https://ror.org/05kc32532', 'en', 1, 'https://ror.org/05kc32532 Saint Joseph Seminary College'),
(44700, 'https://ror.org/05kcf4918', 'en', 1, 'https://ror.org/05kcf4918 Myerscough College'),
(44701, 'https://ror.org/05kd26g25', 'en', 1, 'https://ror.org/05kd26g25 Prairie Bible Institute'),
(44702, 'https://ror.org/05kdesr16', 'no_lang_code', 1, 'https://ror.org/05kdesr16 Convergys (United States)'),
(44703, 'https://ror.org/05kdkdw55', 'en', 1, 'https://ror.org/05kdkdw55 Melbourne School of Theology'),
(44704, 'https://ror.org/05kf6ye97', 'en', 1, 'https://ror.org/05kf6ye97 Korea Research Institute for Human Settlements 국토 연구원'),
(44705, 'https://ror.org/05kf9jb93', 'fr', 1, 'https://ror.org/05kf9jb93 Institut de Recherche Pour le DƩveloppement'),
(44706, 'https://ror.org/05kfmjk33', 'en', 1, 'https://ror.org/05kfmjk33 Jiangxi Academy of Environmental Sciences ę±Ÿč„æēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶é™¢'),
(44707, 'https://ror.org/05kgq6h80', 'no_lang_code', 1, 'https://ror.org/05kgq6h80 NBCUniversal (United States)'),
(44708, 'https://ror.org/05khqm878', 'en', 1, 'https://ror.org/05khqm878 Institute of Quality Standards and Testing Technology for Agro Products äø­å›½å†œē§‘é™¢ē§‘å­¦é™¢å†œē§‘é™¢č“Øé‡ę ‡å‡†äøŽę£€ęµ‹ęŠ€ęœÆē ”ē©¶ę‰€'),
(44709, 'https://ror.org/05kkmzc89', 'en', 1, 'https://ror.org/05kkmzc89 Nassau County Department of Social Services'),
(44710, 'https://ror.org/05kknxr83', 'en', 1, 'https://ror.org/05kknxr83 Department of Energy, Engineering, Mechanics and Control Processes Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… проблем химической физики'),
(44711, 'https://ror.org/05kks9g21', 'hi', 1, 'https://ror.org/05kks9g21 Shramik Bharti'),
(44712, 'https://ror.org/05km8ys10', 'en', 1, 'https://ror.org/05km8ys10 Islamic Azad University of Urmia دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(44713, 'https://ror.org/05kp9g017', 'en', 1, 'https://ror.org/05kp9g017 Państwowa Wyższa Szkoła Zawodowa im. Stanisława Staszica w Pile Stanisław Staszic University of Applied Sciences in Piła'),
(44714, 'https://ror.org/05kqgwz20', 'fr', 1, 'https://ror.org/05kqgwz20 Ɖcole des Officiers de la Gendarmerie Nationale'),
(44715, 'https://ror.org/05krxyw16', 'en', 1, 'https://ror.org/05krxyw16 Guangdong Police College å¹æäøœč­¦å®˜å­¦é™¢'),
(44716, 'https://ror.org/05kvjc571', 'en', 1, 'https://ror.org/05kvjc571 Institute of Psychology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологии'),
(44717, 'https://ror.org/05kwakw98', 'en', 1, 'https://ror.org/05kwakw98 Rainy River Community College'),
(44718, 'https://ror.org/05kxbax75', 'en', 1, 'https://ror.org/05kxbax75 Danish Ministry of Health Sundheds- og Ɔldreministeriet'),
(44719, 'https://ror.org/05m0qr140', 'en', 1, 'https://ror.org/05m0qr140 Ghana Meteorological Agency'),
(44720, 'https://ror.org/05m1pqv80', 'en', 1, 'https://ror.org/05m1pqv80 Hochschule für Musik Würzburg University of Music Würzburg'),
(44721, 'https://ror.org/05m3tag45', 'en', 1, 'https://ror.org/05m3tag45 Institute of Archaeology and Ethnography Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° археологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø Š”Šž Š ŠŠ'),
(44722, 'https://ror.org/05m42bs81', 'en', 1, 'https://ror.org/05m42bs81 Northeast State Community College'),
(44723, 'https://ror.org/05m4ewg24', 'en', 1, 'https://ror.org/05m4ewg24 Association of African Universities'),
(44724, 'https://ror.org/05m4h2z49', 'en', 1, 'https://ror.org/05m4h2z49 Columbus Technical College'),
(44725, 'https://ror.org/05m856m15', 'no_lang_code', 1, 'https://ror.org/05m856m15 AlcmƩon (France)'),
(44726, 'https://ror.org/05m906m06', 'fr', 1, 'https://ror.org/05m906m06 RƩgie Autonome Multi Services D''Agadir'),
(44727, 'https://ror.org/05m9m3d82', 'en', 1, 'https://ror.org/05m9m3d82 Shenyang The Fourth Hospital of People ę²ˆé˜³åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(44728, 'https://ror.org/05ma8ss29', 'en', 1, 'https://ror.org/05ma8ss29 Ministry of Sea Inland Waters and Fisheries MinistƩrio do Mar, Ɓguas Interiores e Pescas'),
(44729, 'https://ror.org/05mbtn536', 'no_lang_code', 1, 'https://ror.org/05mbtn536 Newsweek (United States)'),
(44730, 'https://ror.org/05meah667', 'no_lang_code', 1, 'https://ror.org/05meah667 British Biocell International (United Kingdom)'),
(44731, 'https://ror.org/05mf79c96', 'en', 1, 'https://ror.org/05mf79c96 UPMC Center for High Value Health Care'),
(44732, 'https://ror.org/05mg7fy05', 'en', 1, 'https://ror.org/05mg7fy05 Coastal Pines Technical College'),
(44733, 'https://ror.org/05mhhk279', 'en', 1, 'https://ror.org/05mhhk279 Information and Library Network'),
(44734, 'https://ror.org/05mk08g75', 'en', 1, 'https://ror.org/05mk08g75 Sir John Deane''s College'),
(44735, 'https://ror.org/05mkyac79', 'no_lang_code', 1, 'https://ror.org/05mkyac79 Target (United States)'),
(44736, 'https://ror.org/05mm5nv75', 'en', 1, 'https://ror.org/05mm5nv75 Ozarka College'),
(44737, 'https://ror.org/05mq34b10', 'en', 1, 'https://ror.org/05mq34b10 Bank of Mauritius'),
(44738, 'https://ror.org/05mqjj634', 'no_lang_code', 1, 'https://ror.org/05mqjj634 Aesculap (United States)'),
(44739, 'https://ror.org/05msvfx67', 'en', 1, 'https://ror.org/05msvfx67 Gedik University Gedik Üniversitesi'),
(44740, 'https://ror.org/05msvkx71', 'fr', 1, 'https://ror.org/05msvkx71 Ministère de la Santé Publique'),
(44741, 'https://ror.org/05mtgrz63', 'en', 1, 'https://ror.org/05mtgrz63 Takestan Islamic Azad University'),
(44742, 'https://ror.org/05mv80p58', 'fr', 1, 'https://ror.org/05mv80p58 Institut Textile et Chimique'),
(44743, 'https://ror.org/05mv9af24', 'no_lang_code', 1, 'https://ror.org/05mv9af24 M&T Bank (United States)'),
(44744, 'https://ror.org/05mwe6667', 'en', 1, 'https://ror.org/05mwe6667 Minnesota Office of Higher Education'),
(44745, 'https://ror.org/05mx0wr29', 'en', 1, 'https://ror.org/05mx0wr29 Zhejiang University of Science and Technology ęµ™ę±Ÿē§‘ęŠ€å­¦é™¢'),
(44746, 'https://ror.org/05mxmg050', 'pt', 1, 'https://ror.org/05mxmg050 ColƩgio Sinodal'),
(44747, 'https://ror.org/05mxsz225', 'no_lang_code', 1, 'https://ror.org/05mxsz225 Mahindra Group (India)'),
(44748, 'https://ror.org/05mzfgt17', 'en', 1, 'https://ror.org/05mzfgt17 Institute of Advanced Study in Science and Technology'),
(44749, 'https://ror.org/05mztcw68', 'no_lang_code', 1, 'https://ror.org/05mztcw68 Clyde Bergemann Power Group'),
(44750, 'https://ror.org/05n06xd29', 'no_lang_code', 1, 'https://ror.org/05n06xd29 Groupe ArtƩmis (France)'),
(44751, 'https://ror.org/05n3fvh77', 'en', 1, 'https://ror.org/05n3fvh77 Nature Kenya The East Africa Natural History Society'),
(44752, 'https://ror.org/05n5mpz07', 'pt', 1, 'https://ror.org/05n5mpz07 Ordem dos MƩdicos'),
(44753, 'https://ror.org/05n68xc32', 'en', 1, 'https://ror.org/05n68xc32 NorQuest College'),
(44754, 'https://ror.org/05n72ks39', 'en', 1, 'https://ror.org/05n72ks39 Institute of Urban Designers – India'),
(44755, 'https://ror.org/05n7sxn21', 'en', 1, 'https://ror.org/05n7sxn21 Central Statistical Office'),
(44756, 'https://ror.org/05n9pp477', 'en', 1, 'https://ror.org/05n9pp477 Texas State Affordable Housing Corporation'),
(44757, 'https://ror.org/05nap1d83', 'en', 1, 'https://ror.org/05nap1d83 Territory and Municipal Services'),
(44758, 'https://ror.org/05nb24p55', 'no_lang_code', 1, 'https://ror.org/05nb24p55 LF Driscoll'),
(44759, 'https://ror.org/05nb4x016', 'en', 1, 'https://ror.org/05nb4x016 Institute of Linguistic Studies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лингвистических исслеГований'),
(44760, 'https://ror.org/05nc0nk71', 'en', 1, 'https://ror.org/05nc0nk71 Cooperative Institute for Climate and Satellites'),
(44761, 'https://ror.org/05nct1z71', 'en', 1, 'https://ror.org/05nct1z71 Institute of Nutrition, Metabolism and Diabetes'),
(44762, 'https://ror.org/05nd97262', 'en', 1, 'https://ror.org/05nd97262 Mercer County Community College'),
(44763, 'https://ror.org/05nf32076', 'en', 1, 'https://ror.org/05nf32076 McLennan Community College'),
(44764, 'https://ror.org/05nfte436', 'no_lang_code', 1, 'https://ror.org/05nfte436 Bermuda College'),
(44765, 'https://ror.org/05nfx1325', 'en', 1, 'https://ror.org/05nfx1325 University of the Philippines Cebu'),
(44766, 'https://ror.org/05nhx9b20', 'en', 1, 'https://ror.org/05nhx9b20 China Social Welfare Foundation äø­å›½ē¤¾ä¼šē¦åˆ©åŸŗé‡‘ä¼š'),
(44767, 'https://ror.org/05njab859', 'en', 1, 'https://ror.org/05njab859 Mineral Area College'),
(44768, 'https://ror.org/05njgh475', 'no_lang_code', 1, 'https://ror.org/05njgh475 Genomic Health (United States)'),
(44769, 'https://ror.org/05nkvn594', 'en', 1, 'https://ror.org/05nkvn594 American Academy of Acupuncture and Oriental Medicine'),
(44770, 'https://ror.org/05nmyph15', 'en', 1, 'https://ror.org/05nmyph15 Culham Centre for Fusion Energy'),
(44771, 'https://ror.org/05npcpv02', 'en', 1, 'https://ror.org/05npcpv02 School of Advertising Art'),
(44772, 'https://ror.org/05nqdns93', 'en', 1, 'https://ror.org/05nqdns93 Pacific States University'),
(44773, 'https://ror.org/05nr28g03', 'en', 1, 'https://ror.org/05nr28g03 Assiniboine Community College'),
(44774, 'https://ror.org/05nrjb178', 'nl', 1, 'https://ror.org/05nrjb178 Katholieke Pabo Zwolle University of Professional Teacher Education PABO Zwolle'),
(44775, 'https://ror.org/05nsgrk27', 'en', 1, 'https://ror.org/05nsgrk27 Sahel Eco'),
(44776, 'https://ror.org/05nsvn336', 'fr', 1, 'https://ror.org/05nsvn336 ArchĆ©ologie et Philologie d’Orient et d’Occident'),
(44777, 'https://ror.org/05nw06c68', 'en', 1, 'https://ror.org/05nw06c68 Snead State Community College'),
(44778, 'https://ror.org/05nyhnc56', 'pt', 1, 'https://ror.org/05nyhnc56 Secretaria de Desenvolvimento EconÓmico Ciência Tecnologia e Ensino Superior'),
(44779, 'https://ror.org/05p432337', 'no_lang_code', 1, 'https://ror.org/05p432337 WaterAid'),
(44780, 'https://ror.org/05p4pn188', 'no_lang_code', 1, 'https://ror.org/05p4pn188 Mead Johnson (United States)'),
(44781, 'https://ror.org/05p6hp428', 'en', 1, 'https://ror.org/05p6hp428 Arab Board Of Health Specializations المجلس Ų§Ł„Ų¹Ų±ŲØŁŠ للاختصاصات Ų§Ł„ŲµŲ­ŁŠŲ©'),
(44782, 'https://ror.org/05p7erx10', 'no_lang_code', 1, 'https://ror.org/05p7erx10 QoS Design (France)'),
(44783, 'https://ror.org/05pae1j85', 'no_lang_code', 1, 'https://ror.org/05pae1j85 AES (Brazil)'),
(44784, 'https://ror.org/05pbb8y14', 'en', 1, 'https://ror.org/05pbb8y14 Olympic College'),
(44785, 'https://ror.org/05pbm6778', 'en', 1, 'https://ror.org/05pbm6778 All-Russian Scientific Research Institute of Records Management and Archival Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“Š¾ŠŗŃƒŠ¼ŠµŠ½Ń‚Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Šø архивного Гела'),
(44786, 'https://ror.org/05pc4m625', 'en', 1, 'https://ror.org/05pc4m625 Martin Luther College'),
(44787, 'https://ror.org/05pc7fv53', 'en', 1, 'https://ror.org/05pc7fv53 National Research Institute of Public Health named after N.A. Semashko ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общественного Š·Š“Š¾Ń€Š¾Š²ŃŒŃ имени Š.А. Демашко'),
(44788, 'https://ror.org/05pd10v94', 'de', 1, 'https://ror.org/05pd10v94 Sigmund Freud Institut Sigmund Freud Institute'),
(44789, 'https://ror.org/05pd35d11', 'en', 1, 'https://ror.org/05pd35d11 African Comprehensive HIV/AIDS Partnerships'),
(44790, 'https://ror.org/05pgn2b73', 'no_lang_code', 1, 'https://ror.org/05pgn2b73 Merck (India)'),
(44791, 'https://ror.org/05phbf047', 'no_lang_code', 1, 'https://ror.org/05phbf047 Micro Focus (United States)'),
(44792, 'https://ror.org/05phe2d91', 'en', 1, 'https://ror.org/05phe2d91 Xavier School'),
(44793, 'https://ror.org/05pjrxm83', 'en', 1, 'https://ror.org/05pjrxm83 Association of Support in the Development of Activities of Population'),
(44794, 'https://ror.org/05pkrbq13', 'no_lang_code', 1, 'https://ror.org/05pkrbq13 Maison Arabe de Software et de Hardware (Tunisia)'),
(44795, 'https://ror.org/05pkv9t98', 'en', 1, 'https://ror.org/05pkv9t98 Central Research Institute of Structural Materials Prometey Š“ŠŠ¦ Š¤Š“Š£ŠŸ Ā«Š¦ŠŠ˜Š˜ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ†ŠøŠ¾Š½Š½Ń‹Ń… материалов Ā«ŠŸŃ€Š¾Š¼ŠµŃ‚ŠµŠ¹Ā»'),
(44796, 'https://ror.org/05pmc2b98', 'pt', 1, 'https://ror.org/05pmc2b98 Companhia Energética de São Paulo'),
(44797, 'https://ror.org/05pp7qy10', 'en', 1, 'https://ror.org/05pp7qy10 Institute of Hydrocarbon Processing Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем переработки ŃƒŠ³Š»ŠµŠ²Š¾Š“Š¾Ń€Š¾Š“Š¾Š²'),
(44798, 'https://ror.org/05prqcv46', 'en', 1, 'https://ror.org/05prqcv46 Korean Women''s Development Institute ķ•œźµ­ģ—¬ģ„±ģ •ģ±…ģ—°źµ¬ģ›'),
(44799, 'https://ror.org/05prw4m25', 'no_lang_code', 1, 'https://ror.org/05prw4m25 Chengdu Tool Research Institute (China) ęˆéƒ½å·„å…·ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(44800, 'https://ror.org/05pv25483', 'no_lang_code', 1, 'https://ror.org/05pv25483 Sunrise Communications AG (Switzerland)'),
(44801, 'https://ror.org/05pysk134', 'en', 1, 'https://ror.org/05pysk134 Health Action by People'),
(44802, 'https://ror.org/05q1hvw61', 'pt', 1, 'https://ror.org/05q1hvw61 Clƭnica Sagrada EsperanƧa'),
(44803, 'https://ror.org/05q25dx05', 'en', 1, 'https://ror.org/05q25dx05 Kementerian Tenaga, Teknologi Hijau dan Air Ministry of Energy Green Technology and Water'),
(44804, 'https://ror.org/05q2pee13', 'de', 1, 'https://ror.org/05q2pee13 Hochschule für Ɩffentliche Verwaltung Bremen'),
(44805, 'https://ror.org/05q4ybv44', 'en', 1, 'https://ror.org/05q4ybv44 International and European Law School'),
(44806, 'https://ror.org/05q77p435', 'en', 1, 'https://ror.org/05q77p435 Austin Graduate School of Theology'),
(44807, 'https://ror.org/05q89dp90', 'en', 1, 'https://ror.org/05q89dp90 Pharmacy and Poisons Board'),
(44808, 'https://ror.org/05qc7pm63', 'no_lang_code', 1, 'https://ror.org/05qc7pm63 Hannover Re (Germany) Hannover Rück'),
(44809, 'https://ror.org/05qej3r07', 'en', 1, 'https://ror.org/05qej3r07 British Columbia Arts Council'),
(44810, 'https://ror.org/05qej6276', 'en', 1, 'https://ror.org/05qej6276 Hellenic Police Academy Ī‘ĻƒĻ„Ļ…Ī½ĪæĪ¼Ī¹ĪŗĪ® ΑκαΓημία'),
(44811, 'https://ror.org/05qendg40', 'en', 1, 'https://ror.org/05qendg40 Queensland Theological College'),
(44812, 'https://ror.org/05qfxcq37', 'en', 1, 'https://ror.org/05qfxcq37 Hope Worldwide Kenya'),
(44813, 'https://ror.org/05qh2mm74', 'en', 1, 'https://ror.org/05qh2mm74 Land Consolidation and Rehabilitation Center äø­å›½å›½åœŸę•“ę²»ē½‘'),
(44814, 'https://ror.org/05qkx4t42', 'en', 1, 'https://ror.org/05qkx4t42 Zhejiang Academy of Forestry ęµ™ę±Ÿēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(44815, 'https://ror.org/05qrzv962', 'en', 1, 'https://ror.org/05qrzv962 Overseas Press Club of America'),
(44816, 'https://ror.org/05qs80z63', 'en', 1, 'https://ror.org/05qs80z63 Institute of Finance and Banking äø­å›½ē¤¾ä¼šē§‘å­¦é™¢é‡‘čžē ”ē©¶ę‰€'),
(44817, 'https://ror.org/05qvbeb50', 'en', 1, 'https://ror.org/05qvbeb50 National Association of Social Workers'),
(44818, 'https://ror.org/05qx9ce83', 'fr', 1, 'https://ror.org/05qx9ce83 Observatoire National de la Jeunesse'),
(44819, 'https://ror.org/05r1p5z75', 'en', 1, 'https://ror.org/05r1p5z75 KVG Dental College & Hospital'),
(44820, 'https://ror.org/05r27jw59', 'en', 1, 'https://ror.org/05r27jw59 Warren County Community College'),
(44821, 'https://ror.org/05r2f2383', 'no_lang_code', 1, 'https://ror.org/05r2f2383 Magellium (France)'),
(44822, 'https://ror.org/05r81c657', 'en', 1, 'https://ror.org/05r81c657 Yeshiva Toras Chaim Talmudic Seminary'),
(44823, 'https://ror.org/05r8zkn09', 'it', 1, 'https://ror.org/05r8zkn09 Dipartimento dell Educazione della Cultura e dello Sport'),
(44824, 'https://ror.org/05r9gnf88', 'en', 1, 'https://ror.org/05r9gnf88 Department of Education Pagadian'),
(44825, 'https://ror.org/05raay295', 'en', 1, 'https://ror.org/05raay295 Agfa HealthCare'),
(44826, 'https://ror.org/05rb06393', 'no_lang_code', 1, 'https://ror.org/05rb06393 Volkswagen Group (India)'),
(44827, 'https://ror.org/05rcqjk71', 'no_lang_code', 1, 'https://ror.org/05rcqjk71 Consolidated Contractors Company (Greece) ؓركة Ų§ŲŖŲ­Ų§ŲÆ Ų§Ł„Ł…Ł‚Ų§ŁˆŁ„ŁŠŁ†'),
(44828, 'https://ror.org/05rdptj07', 'en', 1, 'https://ror.org/05rdptj07 Josephine De Karman Fellowship Trust'),
(44829, 'https://ror.org/05re2x545', 'en', 1, 'https://ror.org/05re2x545 Burg Giebichenstein Kunsthochschule Halle Burg Giebichenstein University of Art and Design Halle'),
(44830, 'https://ror.org/05remtc15', 'en', 1, 'https://ror.org/05remtc15 Georgia Piedmont Technical College'),
(44831, 'https://ror.org/05rgfz198', 'en', 1, 'https://ror.org/05rgfz198 United Nations Economic Commission for Africa'),
(44832, 'https://ror.org/05rmmzm29', 'en', 1, 'https://ror.org/05rmmzm29 Marion Technical College'),
(44833, 'https://ror.org/05rmt1x67', 'en', 1, 'https://ror.org/05rmt1x67 National Agricultural Research Organisation'),
(44834, 'https://ror.org/05rnev335', 'en', 1, 'https://ror.org/05rnev335 Pennsylvania Department of Aging'),
(44835, 'https://ror.org/05rnhb415', 'no_lang_code', 1, 'https://ror.org/05rnhb415 ISS International (South Africa)'),
(44836, 'https://ror.org/05rnj0j91', 'en', 1, 'https://ror.org/05rnj0j91 Kungliga Fysiografiska SƤllskapet i Lund Royal Physiographic Society of Lund'),
(44837, 'https://ror.org/05rpf2x18', 'en', 1, 'https://ror.org/05rpf2x18 Yunnan Academy of Forestry äŗ‘å—ēœęž—äøšē§‘å­¦é™¢'),
(44838, 'https://ror.org/05rs18f71', 'no_lang_code', 1, 'https://ror.org/05rs18f71 Toagosei (Japan) ę±äŗžåˆęˆę Ŗå¼ä¼šē¤¾'),
(44839, 'https://ror.org/05rvkm618', 'en', 1, 'https://ror.org/05rvkm618 Massachusetts School of Law'),
(44840, 'https://ror.org/05s142056', 'es', 1, 'https://ror.org/05s142056 Instituto Tecnológico de Toluca'),
(44841, 'https://ror.org/05s1apj20', 'no_lang_code', 1, 'https://ror.org/05s1apj20 Bharat Petroleum (India)'),
(44842, 'https://ror.org/05s1k4z57', 'en', 1, 'https://ror.org/05s1k4z57 South Georgia State College'),
(44843, 'https://ror.org/05s2efz59', 'en', 1, 'https://ror.org/05s2efz59 Northlands College'),
(44844, 'https://ror.org/05s2h4a13', 'no_lang_code', 1, 'https://ror.org/05s2h4a13 Imagine Optic (France)'),
(44845, 'https://ror.org/05s2p6w24', 'pt', 1, 'https://ror.org/05s2p6w24 Museu Nacional de Arte Contemporânea do Chiado'),
(44846, 'https://ror.org/05s5km770', 'en', 1, 'https://ror.org/05s5km770 Churches Health Assoication Of Zambia'),
(44847, 'https://ror.org/05s61gx60', 'en', 1, 'https://ror.org/05s61gx60 Photochemistry Center Центр фотохимии'),
(44848, 'https://ror.org/05s6rc685', 'en', 1, 'https://ror.org/05s6rc685 Korea Institute of Public Administration ķ•œźµ­ķ–‰ģ •ģ—°źµ¬ģ›'),
(44849, 'https://ror.org/05s86pb97', 'en', 1, 'https://ror.org/05s86pb97 Royal College of Ophthalmologists'),
(44850, 'https://ror.org/05s96xm34', 'en', 1, 'https://ror.org/05s96xm34 Council on Foreign Relations'),
(44851, 'https://ror.org/05saacc29', 'en', 1, 'https://ror.org/05saacc29 T A Pai Management Institute'),
(44852, 'https://ror.org/05sagy566', 'no_lang_code', 1, 'https://ror.org/05sagy566 AudioGaming (France)'),
(44853, 'https://ror.org/05sar2b82', 'no_lang_code', 1, 'https://ror.org/05sar2b82 Research Research (South Africa)'),
(44854, 'https://ror.org/05sbeh252', 'en', 1, 'https://ror.org/05sbeh252 Columbia College of Nursing'),
(44855, 'https://ror.org/05sbpak56', 'en', 1, 'https://ror.org/05sbpak56 Geophysical Survey Š“ŠµŠ¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń служба Российской АкаГемии ŠŠ°ŃƒŠŗ'),
(44856, 'https://ror.org/05schts45', 'en', 1, 'https://ror.org/05schts45 Heart Failure Society of America'),
(44857, 'https://ror.org/05sdk4y29', 'fr', 1, 'https://ror.org/05sdk4y29 Progamme National Contre le Tuberculose'),
(44858, 'https://ror.org/05sfbd077', 'en', 1, 'https://ror.org/05sfbd077 Industrial Credit and Investment Corporation of India'),
(44859, 'https://ror.org/05sfx8f21', 'en', 1, 'https://ror.org/05sfx8f21 Georgia Northwestern Technical College'),
(44860, 'https://ror.org/05sgnj165', 'en', 1, 'https://ror.org/05sgnj165 Palo Alto College'),
(44861, 'https://ror.org/05skhck39', 'en', 1, 'https://ror.org/05skhck39 HealthForceOntario'),
(44862, 'https://ror.org/05sqdn872', 'en', 1, 'https://ror.org/05sqdn872 Strode College'),
(44863, 'https://ror.org/05ssfag15', 'en', 1, 'https://ror.org/05ssfag15 Federal Research Centre of Nutrition and Biotechnology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠøŃ‚Š°Š½ŠøŃ'),
(44864, 'https://ror.org/05ssnx856', 'pt', 1, 'https://ror.org/05ssnx856 Fundação Técnico Educacional Souza Marques'),
(44865, 'https://ror.org/05sstfv48', 'en', 1, 'https://ror.org/05sstfv48 Institute of Apiculture Research äø­å›½å†œäøšē§‘å­¦é™¢čœœčœ‚ē ”ē©¶ę‰€'),
(44866, 'https://ror.org/05sw1c749', 'no_lang_code', 1, 'https://ror.org/05sw1c749 Labthermics Technologies (United States)'),
(44867, 'https://ror.org/05sw24q25', 'no_lang_code', 1, 'https://ror.org/05sw24q25 Technoscene (South Africa)'),
(44868, 'https://ror.org/05sxd9d78', 'it', 1, 'https://ror.org/05sxd9d78 Conservatorio di Musica di Perugia'),
(44869, 'https://ror.org/05sxgbh67', 'no_lang_code', 1, 'https://ror.org/05sxgbh67 Jubilant Life Sciences (India)'),
(44870, 'https://ror.org/05sxqt066', 'en', 1, 'https://ror.org/05sxqt066 McNeil Center for Early American Studies'),
(44871, 'https://ror.org/05sy8b013', 'en', 1, 'https://ror.org/05sy8b013 United World College of the Adriatic'),
(44872, 'https://ror.org/05syv4032', 'no_lang_code', 1, 'https://ror.org/05syv4032 Whirlpool (India)'),
(44873, 'https://ror.org/05t0zwy08', 'en', 1, 'https://ror.org/05t0zwy08 Polytechnic School of Algiers المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© المتعددة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖ بالجزائر'),
(44874, 'https://ror.org/05t167j53', 'en', 1, 'https://ror.org/05t167j53 Państwowa Wyższa Szkoła Zawodowa w Koszalinie State Higher Vocational School in Koszalin'),
(44875, 'https://ror.org/05t259f86', 'en', 1, 'https://ror.org/05t259f86 Bundesamt für Bevölkerungsschutz und Katastrophenhilfe Federal Office of Civil protection and Disaster Assistance'),
(44876, 'https://ror.org/05t365n53', 'en', 1, 'https://ror.org/05t365n53 American River College'),
(44877, 'https://ror.org/05t4q5a05', 'en', 1, 'https://ror.org/05t4q5a05 McNally Smith College of Music'),
(44878, 'https://ror.org/05t4way13', 'en', 1, 'https://ror.org/05t4way13 Beijing Machine Tool Research Institute åŒ—äŗ¬ęœŗåŗŠē ”ē©¶ę‰€'),
(44879, 'https://ror.org/05t5rc419', 'en', 1, 'https://ror.org/05t5rc419 Research Institute of Complex Problems of Cardiovascular Disease Russian Academy of Medical Sciences'),
(44880, 'https://ror.org/05t6em937', 'en', 1, 'https://ror.org/05t6em937 Three Rivers College'),
(44881, 'https://ror.org/05t7drw06', 'no_lang_code', 1, 'https://ror.org/05t7drw06 MNM Consulting (France)'),
(44882, 'https://ror.org/05t8ffp36', 'es', 1, 'https://ror.org/05t8ffp36 Real Academia EspaƱola Royal Spanish Academy'),
(44883, 'https://ror.org/05t99sp05', 'en', 1, 'https://ror.org/05t99sp05 California Coast University'),
(44884, 'https://ror.org/05ta7wm04', 'en', 1, 'https://ror.org/05ta7wm04 South Florida State College'),
(44885, 'https://ror.org/05tbdf588', 'en', 1, 'https://ror.org/05tbdf588 Association Africa AgroEXport'),
(44886, 'https://ror.org/05tbkpd69', 'en', 1, 'https://ror.org/05tbkpd69 All India Management Association'),
(44887, 'https://ror.org/05tc6tx51', 'en', 1, 'https://ror.org/05tc6tx51 Kagoshima Prefectural College é¹æå…å³¶ēœŒē«‹ēŸ­ęœŸå¤§å­¦'),
(44888, 'https://ror.org/05tdek150', 'en', 1, 'https://ror.org/05tdek150 Instituto Tecnológico de Tuxtla Gutiérrez Tuxtla Gutierrez Institute of Technology'),
(44889, 'https://ror.org/05tdz0n30', 'en', 1, 'https://ror.org/05tdz0n30 China Institute of Geological Environmental Monitoring äø­å›½åœ°č“ØēŽÆå¢ƒē›‘ęµ‹é™¢'),
(44890, 'https://ror.org/05tesye40', 'no_lang_code', 1, 'https://ror.org/05tesye40 EcoMetrix Africa'),
(44891, 'https://ror.org/05tev5412', 'en', 1, 'https://ror.org/05tev5412 Higher and Technical Education Department'),
(44892, 'https://ror.org/05tg57g61', 'en', 1, 'https://ror.org/05tg57g61 Azrieli College of Engineering Jerusalem ×¢×–×Ø×™××œ×™-המכללה להנדהה ×™×Ø×•×©×œ×™×'),
(44893, 'https://ror.org/05thvt304', 'en', 1, 'https://ror.org/05thvt304 Van Alen Institute'),
(44894, 'https://ror.org/05tkawa34', 'no_lang_code', 1, 'https://ror.org/05tkawa34 Mimar Engineering Consultancy (Egypt)'),
(44895, 'https://ror.org/05tkfe889', 'no_lang_code', 1, 'https://ror.org/05tkfe889 Evenflo (United States)'),
(44896, 'https://ror.org/05tkyr506', 'no_lang_code', 1, 'https://ror.org/05tkyr506 Active Ethernet Passive Optical Networks Over Ī» MultipleXing (Canada)'),
(44897, 'https://ror.org/05tm3gs98', 'en', 1, 'https://ror.org/05tm3gs98 Agence de Promotion de l’Industrie et de l''Innovation Agency for the Promotion of Industry and Innovation ŁˆŁƒŲ§Ł„Ų© Ų§Ł„Ł†Ł‡ŁˆŲ¶ بالصناعة و Ų§Ł„ŲŖŲ¬ŲÆŁŠŲÆ'),
(44898, 'https://ror.org/05tm9j755', 'no_lang_code', 1, 'https://ror.org/05tm9j755 Mitsui & Co (Japan) 三井物産'),
(44899, 'https://ror.org/05tn39y33', 'de', 1, 'https://ror.org/05tn39y33 Akademie der Polizei Hamburg'),
(44900, 'https://ror.org/05tn82m22', 'en', 1, 'https://ror.org/05tn82m22 Community Care College'),
(44901, 'https://ror.org/05tnja216', 'en', 1, 'https://ror.org/05tnja216 University College of Osteopathy'),
(44902, 'https://ror.org/05tpt3034', 'en', 1, 'https://ror.org/05tpt3034 Stapledon Memorial Trust'),
(44903, 'https://ror.org/05tpxpz56', 'en', 1, 'https://ror.org/05tpxpz56 Institute of Mineralogy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ минералогии'),
(44904, 'https://ror.org/05ts6js78', 'no_lang_code', 1, 'https://ror.org/05ts6js78 Baker Hughes (United States)'),
(44905, 'https://ror.org/05tv9ra42', 'no_lang_code', 1, 'https://ror.org/05tv9ra42 Sekab (Sweden) Svensk Etanolkemi'),
(44906, 'https://ror.org/05twc1c66', 'en', 1, 'https://ror.org/05twc1c66 Cold Climate Housing Research Center'),
(44907, 'https://ror.org/05ty2n298', 'en', 1, 'https://ror.org/05ty2n298 Guizhou Academy of Sciences č“µå·žē§‘å­¦é™¢'),
(44908, 'https://ror.org/05tysfd19', 'en', 1, 'https://ror.org/05tysfd19 African Minerals and Geosciences Centre'),
(44909, 'https://ror.org/05tzkx710', 'no_lang_code', 1, 'https://ror.org/05tzkx710 Mir Technology Holdings (Turkey)'),
(44910, 'https://ror.org/05tzn2b35', 'en', 1, 'https://ror.org/05tzn2b35 Headwaters Health Care Centre'),
(44911, 'https://ror.org/05v091r53', 'no_lang_code', 1, 'https://ror.org/05v091r53 Climeon (Sweden)');
INSERT INTO `rors` VALUES
(44912, 'https://ror.org/05v13xr40', 'en', 1, 'https://ror.org/05v13xr40 State Duma Š“Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Гу́ма'),
(44913, 'https://ror.org/05v2jd533', 'en', 1, 'https://ror.org/05v2jd533 Tidepool'),
(44914, 'https://ror.org/05v3pgb06', 'no_lang_code', 1, 'https://ror.org/05v3pgb06 WR Nyabeze & Associates (South Africa)'),
(44915, 'https://ror.org/05v556078', 'en', 1, 'https://ror.org/05v556078 Southside Virginia Community College'),
(44916, 'https://ror.org/05v5ag345', 'de', 1, 'https://ror.org/05v5ag345 Krebsliga Beider Basel'),
(44917, 'https://ror.org/05v5xnv04', 'en', 1, 'https://ror.org/05v5xnv04 Tung Fang Design Institute ę±ę–¹čØ­čØˆå­øé™¢'),
(44918, 'https://ror.org/05v5ypf73', 'no_lang_code', 1, 'https://ror.org/05v5ypf73 Cerberus Capital Management (United States)'),
(44919, 'https://ror.org/05v69pw95', 'en', 1, 'https://ror.org/05v69pw95 Bexley Hall'),
(44920, 'https://ror.org/05v9c7616', 'en', 1, 'https://ror.org/05v9c7616 Pitt Community College'),
(44921, 'https://ror.org/05v9kmg29', 'en', 1, 'https://ror.org/05v9kmg29 Environmental Alert'),
(44922, 'https://ror.org/05vb1qq28', 'en', 1, 'https://ror.org/05vb1qq28 Shiloh University'),
(44923, 'https://ror.org/05vch7162', 'en', 1, 'https://ror.org/05vch7162 South African San Institute'),
(44924, 'https://ror.org/05vg58c56', 'de', 1, 'https://ror.org/05vg58c56 PƤdagogische Hochschule Niederƶsterreich'),
(44925, 'https://ror.org/05vhwn119', 'en', 1, 'https://ror.org/05vhwn119 Ethiopian Economic Association'),
(44926, 'https://ror.org/05vjege66', 'en', 1, 'https://ror.org/05vjege66 DeVry College'),
(44927, 'https://ror.org/05vjz1d16', 'en', 1, 'https://ror.org/05vjz1d16 Heartland Center for Occupational Safety and Health'),
(44928, 'https://ror.org/05vkc3y92', 'no_lang_code', 1, 'https://ror.org/05vkc3y92 Omnia (South Africa)'),
(44929, 'https://ror.org/05vm7ws26', 'en', 1, 'https://ror.org/05vm7ws26 National Bureau of Soil Survey and Land Use Planning ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą„ƒą¤¦ą¤¾ ą¤øą¤°ą„ą¤µą„‡ą¤•ą„ą¤·ą¤£ ą¤ą¤µą¤‚ ą¤­ą„‚ą¤®ą¤æ ą¤‰ą¤Ŗą¤Æą„‹ą¤— ą¤Øą¤æą¤Æą„‹ą¤œą¤Ø ą¤¬ą„ā€ą¤Æą„‚ą¤°ą„‹'),
(44930, 'https://ror.org/05vpj2s72', 'es', 1, 'https://ror.org/05vpj2s72 Instituto Tecnologico de Orizaba'),
(44931, 'https://ror.org/05vrdx898', 'en', 1, 'https://ror.org/05vrdx898 Southwestern Institute of Physics ę øå·„äøšč„æå—ē‰©ē†ē ”ē©¶é™¢'),
(44932, 'https://ror.org/05vs4r368', 'pt', 1, 'https://ror.org/05vs4r368 Instituto Cuiabano de Educação'),
(44933, 'https://ror.org/05vzn8153', 'en', 1, 'https://ror.org/05vzn8153 Department of Correctional Services Suid-Afrikaanse Departement van Korrektiewe Dienste'),
(44934, 'https://ror.org/05w034p46', 'no_lang_code', 1, 'https://ror.org/05w034p46 FLAME TAO Knoware (India)'),
(44935, 'https://ror.org/05w1crz90', 'en', 1, 'https://ror.org/05w1crz90 Arkansas Autism Resource & Outreach Center'),
(44936, 'https://ror.org/05w1m1q56', 'en', 1, 'https://ror.org/05w1m1q56 Ministry of Education, Science and Technology Development Center ę•™č‚²éƒØē§‘ęŠ€å‘å±•äø­åæƒ'),
(44937, 'https://ror.org/05w3mye26', 'en', 1, 'https://ror.org/05w3mye26 Geological Survey of Alabama'),
(44938, 'https://ror.org/05w3wzj77', 'fr', 1, 'https://ror.org/05w3wzj77 Agence de l''eau Adour-Garonne'),
(44939, 'https://ror.org/05w47ap08', 'en', 1, 'https://ror.org/05w47ap08 Jawaharlal Nehru Tropical Botanic Garden and Research Institute'),
(44940, 'https://ror.org/05w4b5488', 'no_lang_code', 1, 'https://ror.org/05w4b5488 CellGenix (Germany)'),
(44941, 'https://ror.org/05w57eq63', 'pl', 1, 'https://ror.org/05w57eq63 Kaszubsko-Pomorska Szkoła Wyższa'),
(44942, 'https://ror.org/05w5n1x92', 'en', 1, 'https://ror.org/05w5n1x92 Organisation Ouest Africaine de la SantƩ West African Health Organisation'),
(44943, 'https://ror.org/05w6t8s34', 'no_lang_code', 1, 'https://ror.org/05w6t8s34 NIIT (India)'),
(44944, 'https://ror.org/05w90jm68', 'en', 1, 'https://ror.org/05w90jm68 Korea Society'),
(44945, 'https://ror.org/05w9pqd22', 'en', 1, 'https://ror.org/05w9pqd22 Yeshiva Derech Chaim'),
(44946, 'https://ror.org/05wa1wa97', 'en', 1, 'https://ror.org/05wa1wa97 Uganda Episcopal Conference'),
(44947, 'https://ror.org/05wc4jq58', 'en', 1, 'https://ror.org/05wc4jq58 Ecclesia College'),
(44948, 'https://ror.org/05wdecy17', 'en', 1, 'https://ror.org/05wdecy17 Institute of Infection and Immunity'),
(44949, 'https://ror.org/05wf9ss90', 'en', 1, 'https://ror.org/05wf9ss90 Virginia Highlands Community College'),
(44950, 'https://ror.org/05wfehw39', 'it', 1, 'https://ror.org/05wfehw39 Accademia Nazionale dei Lincei'),
(44951, 'https://ror.org/05wfg5466', 'no_lang_code', 1, 'https://ror.org/05wfg5466 Environement Quality International (Egypt)'),
(44952, 'https://ror.org/05wg4vp92', 'en', 1, 'https://ror.org/05wg4vp92 Ternopil Institute for Social and Information Technologies'),
(44953, 'https://ror.org/05wk0jx96', 'no_lang_code', 1, 'https://ror.org/05wk0jx96 Amdocs (France)'),
(44954, 'https://ror.org/05wn69s11', 'en', 1, 'https://ror.org/05wn69s11 Northwestern Polytechnic University'),
(44955, 'https://ror.org/05wnef833', 'en', 1, 'https://ror.org/05wnef833 Saxon State Ministry for Science and the Arts Sächsisches Staatsministerium für Wissenschaft und Kunst'),
(44956, 'https://ror.org/05wtp9w08', 'en', 1, 'https://ror.org/05wtp9w08 Department of Agricultural Sciences'),
(44957, 'https://ror.org/05wy2at76', 'no_lang_code', 1, 'https://ror.org/05wy2at76 Engineers India (India) ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą„ą¤ø इंऔिया ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(44958, 'https://ror.org/05x05k755', 'en', 1, 'https://ror.org/05x05k755 Laguna College of Art and Design'),
(44959, 'https://ror.org/05x0jxp48', 'fr', 1, 'https://ror.org/05x0jxp48 MinistĆØre de l’Éducation Nationale et de l''Enseignement Technique'),
(44960, 'https://ror.org/05x346678', 'fr', 1, 'https://ror.org/05x346678 Ɖcole SupĆ©rieure d''Art et de Design Tours-Angers-Le Mans'),
(44961, 'https://ror.org/05x57gp50', 'en', 1, 'https://ror.org/05x57gp50 Korean National Police Agency 경찰청'),
(44962, 'https://ror.org/05x8s5x77', 'en', 1, 'https://ror.org/05x8s5x77 Shamnur Shivashankarappa Institute of Medical Sciences & Research Centre ಶಾಮನೂರು ą²¶ą²æą²µą²¶ą²‚ą²•ą²°ą²Ŗą³ą²Ŗ ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ಸಂಶೋದನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(44963, 'https://ror.org/05xavft74', 'en', 1, 'https://ror.org/05xavft74 Ministry of Health and the Fight against AIDS Ministère de la Santé et de la Lutte contre le sida'),
(44964, 'https://ror.org/05xcjmm14', 'fr', 1, 'https://ror.org/05xcjmm14 Bibliothèque et Archives nationales du Québec National Library and Archives of Québec'),
(44965, 'https://ror.org/05xfrjs60', 'no_lang_code', 1, 'https://ror.org/05xfrjs60 Helsinn Therapeutics (United States)'),
(44966, 'https://ror.org/05xgaq910', 'en', 1, 'https://ror.org/05xgaq910 Nanjing Institute of Agricultural Mechanization å†œäøšéƒØå—äŗ¬å†œäøšęœŗę¢°åŒ–ē ”ē©¶ę‰€'),
(44967, 'https://ror.org/05xgx1b08', 'en', 1, 'https://ror.org/05xgx1b08 Riga Building College Rīgas Celtniecības koledža'),
(44968, 'https://ror.org/05xhe5a74', 'en', 1, 'https://ror.org/05xhe5a74 Tertiary Education Commission'),
(44969, 'https://ror.org/05xjztb11', 'en', 1, 'https://ror.org/05xjztb11 Pennsylvania Public Utility Commission'),
(44970, 'https://ror.org/05xntm622', 'no_lang_code', 1, 'https://ror.org/05xntm622 Exeger Sweden (Sweden)'),
(44971, 'https://ror.org/05xp7y466', 'no_lang_code', 1, 'https://ror.org/05xp7y466 Eni (Kazakhstan)'),
(44972, 'https://ror.org/05xphj289', 'en', 1, 'https://ror.org/05xphj289 Pontifical John Paul II Institute for Studies on Marriage and Family'),
(44973, 'https://ror.org/05xr5sw33', 'en', 1, 'https://ror.org/05xr5sw33 Virginia Tech Services'),
(44974, 'https://ror.org/05xsgtz43', 'en', 1, 'https://ror.org/05xsgtz43 Atomic Energy Regulatory Board'),
(44975, 'https://ror.org/05xtce923', 'en', 1, 'https://ror.org/05xtce923 School of Administration in Bielsko-Biala Wyższa Szkoła Administracji w Bielsku-Białej'),
(44976, 'https://ror.org/05xth1n37', 'no_lang_code', 1, 'https://ror.org/05xth1n37 Natco Pharma (India)'),
(44977, 'https://ror.org/05xtmhv34', 'en', 1, 'https://ror.org/05xtmhv34 National School of Leadership'),
(44978, 'https://ror.org/05xw3yj26', 'en', 1, 'https://ror.org/05xw3yj26 Institute of Physiologically Active Compounds Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологически активных веществ'),
(44979, 'https://ror.org/05xwhfa95', 'en', 1, 'https://ror.org/05xwhfa95 Guyana School of Agriculture'),
(44980, 'https://ror.org/05xxn0r26', 'en', 1, 'https://ror.org/05xxn0r26 Americans for Medical Progress'),
(44981, 'https://ror.org/05xxykr42', 'pl', 1, 'https://ror.org/05xxykr42 Toruńska Wyższa Szkoła Przedsiębiorczości'),
(44982, 'https://ror.org/05y0c7g28', 'en', 1, 'https://ror.org/05y0c7g28 Reserve Bank of New Zealand'),
(44983, 'https://ror.org/05y2q9q81', 'en', 1, 'https://ror.org/05y2q9q81 Namibia Institute of Pathology'),
(44984, 'https://ror.org/05y5g2a51', 'en', 1, 'https://ror.org/05y5g2a51 Northern Lithuania College Šiaurės Lietuvos kolegija'),
(44985, 'https://ror.org/05y6zxn94', 'en', 1, 'https://ror.org/05y6zxn94 New Mexico Junior College'),
(44986, 'https://ror.org/05y723906', 'en', 1, 'https://ror.org/05y723906 Food, Agriculture and Natural Resources Policy Analysis Network'),
(44987, 'https://ror.org/05y92qc28', 'en', 1, 'https://ror.org/05y92qc28 Sandhills Community College'),
(44988, 'https://ror.org/05y9xcd05', 'en', 1, 'https://ror.org/05y9xcd05 Australian Water Recycling Centre of Excellence'),
(44989, 'https://ror.org/05ya3va27', 'no_lang_code', 1, 'https://ror.org/05ya3va27 Sarost (Tunisia)'),
(44990, 'https://ror.org/05yamzm60', 'en', 1, 'https://ror.org/05yamzm60 Lietuvos Verslo Kolegija Lithuania Business University of Applied Science'),
(44991, 'https://ror.org/05yc7zr31', 'en', 1, 'https://ror.org/05yc7zr31 Cossatot Community College'),
(44992, 'https://ror.org/05ycd7562', 'en', 1, 'https://ror.org/05ycd7562 Nanjing Institute of Environmental Sciences ēŽÆå¢ƒäæęŠ¤éƒØå—äŗ¬ēŽÆå¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(44993, 'https://ror.org/05yd80n95', 'en', 1, 'https://ror.org/05yd80n95 Congressional Hunger Center'),
(44994, 'https://ror.org/05yg67b36', 'en', 1, 'https://ror.org/05yg67b36 Dr Maliso Mphele Hospital'),
(44995, 'https://ror.org/05ygsee60', 'en', 1, 'https://ror.org/05ygsee60 Yunnan Institute of Endemic Diseases Control and Prevention äŗ‘å—ēœåœ°ę–¹ē—…é˜²ę²»ē½‘'),
(44996, 'https://ror.org/05yj5ep86', 'en', 1, 'https://ror.org/05yj5ep86 Christliche UniversitƤt Partium Partium Christian University Partiumi KeresztĆ©ny Egyetem Universitatea Creștină Partium'),
(44997, 'https://ror.org/05yjrbd39', 'no_lang_code', 1, 'https://ror.org/05yjrbd39 Sinequa (France)'),
(44998, 'https://ror.org/05yk11s87', 'no_lang_code', 1, 'https://ror.org/05yk11s87 United Space Alliance (USA)'),
(44999, 'https://ror.org/05ymegm05', 'en', 1, 'https://ror.org/05ymegm05 BAIF Development Research Foundation'),
(45000, 'https://ror.org/05ynf4333', 'fr', 1, 'https://ror.org/05ynf4333 INSEAD, Institut EuropƩen d''Administration des Affaires'),
(45001, 'https://ror.org/0000h6r91', 'no_lang_code', 1, 'https://ror.org/0000h6r91 Naval Group (Ireland)'),
(45002, 'https://ror.org/0000yrh61', 'en', 1, 'https://ror.org/0000yrh61 Hospital of Hebei Province ę²³åŒ—ēœäø­åŒ»é™¢'),
(45003, 'https://ror.org/000146m32', 'no_lang_code', 1, 'https://ror.org/000146m32 CoMentis (United States)'),
(45004, 'https://ror.org/0005ck383', 'en', 1, 'https://ror.org/0005ck383 Kanagawa Prefectural Police Department ē„žå„ˆå·ēœŒč­¦åÆŸęœ¬éƒØ'),
(45005, 'https://ror.org/0005eqq91', 'en', 1, 'https://ror.org/0005eqq91 Colombo North Teaching Hospital'),
(45006, 'https://ror.org/0006j5k73', 'en', 1, 'https://ror.org/0006j5k73 Nagano Prefectural Ueda Senior High School é•·é‡ŽēœŒäøŠē”°é«˜ē­‰å­¦ę ”'),
(45007, 'https://ror.org/0006kcg24', 'en', 1, 'https://ror.org/0006kcg24 Osaka Municipal Miyakojima Technical High School å¤§é˜Ŗåø‚ē«‹éƒ½å³¶å·„ę„­é«˜ē­‰å­¦ę ”'),
(45008, 'https://ror.org/0007sdx38', 'no_lang_code', 1, 'https://ror.org/0007sdx38 BMG (Japan) ę Ŗå¼ä¼šē¤¾ćƒ“ćƒ¼ć‚Øćƒ ć‚øćƒ¼'),
(45009, 'https://ror.org/000963779', 'no_lang_code', 1, 'https://ror.org/000963779 Universal Products (United States)'),
(45010, 'https://ror.org/000ajpb39', 'en', 1, 'https://ror.org/000ajpb39 Gere Foundation'),
(45011, 'https://ror.org/000cytz87', 'no_lang_code', 1, 'https://ror.org/000cytz87 Weatherford (Switzerland)'),
(45012, 'https://ror.org/000gjv789', 'no_lang_code', 1, 'https://ror.org/000gjv789 Dawn Research (United States)'),
(45013, 'https://ror.org/000hzcm20', 'en', 1, 'https://ror.org/000hzcm20 Web Science Trust'),
(45014, 'https://ror.org/000j1d533', 'fr', 1, 'https://ror.org/000j1d533 UniversitƩ Amadou HampatƩ Ba'),
(45015, 'https://ror.org/000jzpp78', 'en', 1, 'https://ror.org/000jzpp78 International University in Germany'),
(45016, 'https://ror.org/000n78v25', 'no_lang_code', 1, 'https://ror.org/000n78v25 KindHeart (United States)'),
(45017, 'https://ror.org/000nfen14', 'en', 1, 'https://ror.org/000nfen14 Shizuoka Prefectural Numazu Technical High School é™å²”ēœŒē«‹ę²¼ę“„å·„ę„­é«˜ē­‰å­¦ę ”'),
(45018, 'https://ror.org/000p2wp51', 'en', 1, 'https://ror.org/000p2wp51 Lambeth Palace Library'),
(45019, 'https://ror.org/000va8z45', 'no_lang_code', 1, 'https://ror.org/000va8z45 Dornier (United States)'),
(45020, 'https://ror.org/000wtey38', 'en', 1, 'https://ror.org/000wtey38 Africa Harvest Biotech Foundation International'),
(45021, 'https://ror.org/000y15785', 'en', 1, 'https://ror.org/000y15785 Australian Society For Fish Biology'),
(45022, 'https://ror.org/000ycsz94', 'no_lang_code', 1, 'https://ror.org/000ycsz94 Isuzu Motors (Japan) ć„ć™ć‚žč‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(45023, 'https://ror.org/0010e1p75', 'en', 1, 'https://ror.org/0010e1p75 Chiba Prefectural Institute of Public Health åƒč‘‰ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(45024, 'https://ror.org/00114hq16', 'pt', 1, 'https://ror.org/00114hq16 Centro Nacional de Monitoramento e Alertas de Desastres Naturais'),
(45025, 'https://ror.org/00145nn26', 'en', 1, 'https://ror.org/00145nn26 Agency for Cultural Affairs ę–‡åŒ–åŗ'),
(45026, 'https://ror.org/00147ek89', 'en', 1, 'https://ror.org/00147ek89 Australian Orthopaedic Association'),
(45027, 'https://ror.org/00148fb49', 'no_lang_code', 1, 'https://ror.org/00148fb49 Merck (United Kingdom)'),
(45028, 'https://ror.org/0017b9g92', 'en', 1, 'https://ror.org/0017b9g92 International Society for Developmental Origins of Health and Disease'),
(45029, 'https://ror.org/0018f1k63', 'no_lang_code', 1, 'https://ror.org/0018f1k63 Texas High Energy Materials (United States)'),
(45030, 'https://ror.org/001a5a111', 'no_lang_code', 1, 'https://ror.org/001a5a111 Symbio FCell (France)'),
(45031, 'https://ror.org/001aem118', 'en', 1, 'https://ror.org/001aem118 Executive Office of Education'),
(45032, 'https://ror.org/001brd097', 'en', 1, 'https://ror.org/001brd097 American School of Kuwait'),
(45033, 'https://ror.org/001d8ym38', 'en', 1, 'https://ror.org/001d8ym38 Jon Peddie Research'),
(45034, 'https://ror.org/001dmcq07', 'no_lang_code', 1, 'https://ror.org/001dmcq07 Achelios Therapeutics (United States)'),
(45035, 'https://ror.org/001dnh404', 'en', 1, 'https://ror.org/001dnh404 College for All Texans Foundation'),
(45036, 'https://ror.org/001ee4r52', 'en', 1, 'https://ror.org/001ee4r52 Center for Studies on Sustainable Luxury Centro de Estudios para el Lujo Sustentable'),
(45037, 'https://ror.org/001g9ww12', 'no_lang_code', 1, 'https://ror.org/001g9ww12 NIIGrafit ŠŠ˜Š˜Š³Ń€Š°Ń„ŠøŃ‚'),
(45038, 'https://ror.org/001hpw566', 'pt', 1, 'https://ror.org/001hpw566 Sociedade Brasileira de Ortopedia e Traumatologia'),
(45039, 'https://ror.org/001hybq57', 'no_lang_code', 1, 'https://ror.org/001hybq57 Atlas Scientific (United States)'),
(45040, 'https://ror.org/001jk8698', 'en', 1, 'https://ror.org/001jk8698 Stofnun Árna Magnússonar í íslenskum fræðum Árni Magnússon Institute for Icelandic Studies'),
(45041, 'https://ror.org/001k0sf19', 'en', 1, 'https://ror.org/001k0sf19 Delta Greely School District'),
(45042, 'https://ror.org/001ke5c68', 'en', 1, 'https://ror.org/001ke5c68 Department of Agriculture'),
(45043, 'https://ror.org/001m9wh67', 'no_lang_code', 1, 'https://ror.org/001m9wh67 Taiyo Yuden (Japan) å¤Ŗé™½čŖ˜é›»ę Ŗå¼ä¼šē¤¾'),
(45044, 'https://ror.org/001mbm465', 'no_lang_code', 1, 'https://ror.org/001mbm465 MicroDysis (United States)'),
(45045, 'https://ror.org/001mpte05', 'en', 1, 'https://ror.org/001mpte05 Hiroshima Prefectural Police 広島県警察'),
(45046, 'https://ror.org/001mzze07', 'id', 1, 'https://ror.org/001mzze07 Universitas Tabanan'),
(45047, 'https://ror.org/001p7q739', 'no_lang_code', 1, 'https://ror.org/001p7q739 Apoplogic Pharmaceuticals (United States)'),
(45048, 'https://ror.org/001pe6j19', 'es', 1, 'https://ror.org/001pe6j19 Ministerio de GanaderĆ­a Agricultura y Pesca'),
(45049, 'https://ror.org/001pthy87', 'es', 1, 'https://ror.org/001pthy87 Universidad Privada del Estado de Morelos'),
(45050, 'https://ror.org/001qk2b56', 'en', 1, 'https://ror.org/001qk2b56 Healthy Families of Clallam County'),
(45051, 'https://ror.org/001t6ze16', 'en', 1, 'https://ror.org/001t6ze16 Bickley Day Hospital'),
(45052, 'https://ror.org/001vbm067', 'no_lang_code', 1, 'https://ror.org/001vbm067 Empire Technical Development (United States)'),
(45053, 'https://ror.org/001z5b761', 'en', 1, 'https://ror.org/001z5b761 Pitt County Development Commission'),
(45054, 'https://ror.org/0020pt210', 'en', 1, 'https://ror.org/0020pt210 Noma Institute Of Educational Reserch é‡Žé–“ę•™č‚²ē ”ē©¶ę‰€'),
(45055, 'https://ror.org/002783g69', 'no_lang_code', 1, 'https://ror.org/002783g69 Cim Systems (United States)'),
(45056, 'https://ror.org/002784y28', 'no_lang_code', 1, 'https://ror.org/002784y28 Mantra Energy Alternatives (Canada)'),
(45057, 'https://ror.org/0028edj28', 'en', 1, 'https://ror.org/0028edj28 Japan University of Health Sciences ę—„ęœ¬äæå„åŒ»ē™‚å¤§å­¦'),
(45058, 'https://ror.org/0029h8b97', 'en', 1, 'https://ror.org/0029h8b97 Kansai Women''s College é–¢č„æå„³å­ēŸ­ęœŸå¤§å­¦'),
(45059, 'https://ror.org/002bhvh12', 'en', 1, 'https://ror.org/002bhvh12 Yokohama College of Art and Design ęØŖęµœē¾Žč”“ēŸ­ęœŸå¤§å­¦'),
(45060, 'https://ror.org/002d67284', 'id', 1, 'https://ror.org/002d67284 Universitas Sutomo'),
(45061, 'https://ror.org/002degh13', 'en', 1, 'https://ror.org/002degh13 Fatih University Medical Faculty Hospital Fatih Üniversitesi Tıp Fakültesi Hastanesi'),
(45062, 'https://ror.org/002dnnm39', 'no_lang_code', 1, 'https://ror.org/002dnnm39 Siemens (Brazil)'),
(45063, 'https://ror.org/002dzyh86', 'en', 1, 'https://ror.org/002dzyh86 Marine Bio-Technologies Center of Innovation'),
(45064, 'https://ror.org/002f4wy65', 'en', 1, 'https://ror.org/002f4wy65 Advocado Press'),
(45065, 'https://ror.org/002hfez23', 'en', 1, 'https://ror.org/002hfez23 Huzhou Vocational and Technical College'),
(45066, 'https://ror.org/002k06d85', 'en', 1, 'https://ror.org/002k06d85 National Institute of Technology, Tokyo College å›½ē«‹ę±äŗ¬å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(45067, 'https://ror.org/002mban83', 'no_lang_code', 1, 'https://ror.org/002mban83 Sensient Technologies (Germany)'),
(45068, 'https://ror.org/002mja273', 'en', 1, 'https://ror.org/002mja273 University of Jazeera'),
(45069, 'https://ror.org/002nr2s48', 'no_lang_code', 1, 'https://ror.org/002nr2s48 Agile EndoSurgery (United States)'),
(45070, 'https://ror.org/002nwxy91', 'no_lang_code', 1, 'https://ror.org/002nwxy91 Solmax (Canada)'),
(45071, 'https://ror.org/002qh8m50', 'no_lang_code', 1, 'https://ror.org/002qh8m50 Trelleborg (Germany)'),
(45072, 'https://ror.org/002qjv549', 'no_lang_code', 1, 'https://ror.org/002qjv549 Whirlpool (Germany)'),
(45073, 'https://ror.org/002qxpg72', 'no_lang_code', 1, 'https://ror.org/002qxpg72 ON Semiconductor (United Kingdom)'),
(45074, 'https://ror.org/002sk4j30', 'en', 1, 'https://ror.org/002sk4j30 Fort Mac LRA'),
(45075, 'https://ror.org/002vd5g50', 'en', 1, 'https://ror.org/002vd5g50 Research Station of the Russian Academy of Sciences in Bishkek ŠŠ°ŃƒŃ‡Š½Š°Ń ŃŃ‚Š°Š½Ń†ŠøŃ Российской акаГемии наук в Š‘ŠøŃˆŠŗŠµŠŗŠµ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(45076, 'https://ror.org/002vrhd35', 'en', 1, 'https://ror.org/002vrhd35 Nara National Museum å„ˆč‰Æå›½ē«‹åšē‰©é¤Ø'),
(45077, 'https://ror.org/002wxg772', 'no_lang_code', 1, 'https://ror.org/002wxg772 Tsubaki (Germany) ę Ŗå¼ä¼šē¤¾ę¤æęœ¬ćƒć‚Øć‚¤ćƒ³'),
(45078, 'https://ror.org/002y0mb20', 'no_lang_code', 1, 'https://ror.org/002y0mb20 Advanced Research Corporation (United States)'),
(45079, 'https://ror.org/002zd6q52', 'en', 1, 'https://ror.org/002zd6q52 Michigan Institute for Educational Management'),
(45080, 'https://ror.org/0030xrh72', 'no_lang_code', 1, 'https://ror.org/0030xrh72 CryptoExperts (France)'),
(45081, 'https://ror.org/0032h6p54', 'no_lang_code', 1, 'https://ror.org/0032h6p54 Universal Scientific Industrial (China) ēŽÆę—­ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(45082, 'https://ror.org/00335tx14', 'en', 1, 'https://ror.org/00335tx14 North Carolina Soybean Association'),
(45083, 'https://ror.org/0033b1559', 'en', 1, 'https://ror.org/0033b1559 Allegheny County Library Association'),
(45084, 'https://ror.org/0033p4m78', 'no_lang_code', 1, 'https://ror.org/0033p4m78 eIQ Energy (United States)'),
(45085, 'https://ror.org/003470t18', 'no_lang_code', 1, 'https://ror.org/003470t18 Ohmx (United States)'),
(45086, 'https://ror.org/0035wxz79', 'en', 1, 'https://ror.org/0035wxz79 Dambari Wildlife Trust'),
(45087, 'https://ror.org/0036wzx44', 'en', 1, 'https://ror.org/0036wzx44 Junshin Gakuen University ē“”ēœŸå­¦åœ’å¤§å­¦'),
(45088, 'https://ror.org/00386qk52', 'no_lang_code', 1, 'https://ror.org/00386qk52 Sandvik (Austria)'),
(45089, 'https://ror.org/003agka18', 'en', 1, 'https://ror.org/003agka18 Search Institute'),
(45090, 'https://ror.org/003c45k89', 'en', 1, 'https://ror.org/003c45k89 Korea Foundation Of Nuclear Safety ķ•œźµ­ģ›ģžė „ģ•ˆģ „ģž¬ė‹Ø'),
(45091, 'https://ror.org/003cm7v94', 'no_lang_code', 1, 'https://ror.org/003cm7v94 Sensor Creations (United States)'),
(45092, 'https://ror.org/003gxx992', 'en', 1, 'https://ror.org/003gxx992 Sendai Science Museum ä»™å°åø‚ē§‘å­¦é¤Ø'),
(45093, 'https://ror.org/003hspx48', 'en', 1, 'https://ror.org/003hspx48 Aichi Prefectural Nisshin West High School ę„›ēŸ„ēœŒē«‹ę—„é€²č„æé«˜ē­‰å­¦ę ”'),
(45094, 'https://ror.org/003j6bs77', 'en', 1, 'https://ror.org/003j6bs77 Internationals Network For Public Schools'),
(45095, 'https://ror.org/003js0r95', 'no_lang_code', 1, 'https://ror.org/003js0r95 Monsanto (Brazil)'),
(45096, 'https://ror.org/003kk8e92', 'de', 1, 'https://ror.org/003kk8e92 Deutsches Textilforschungszentrum Nord-West'),
(45097, 'https://ror.org/003kz5h76', 'en', 1, 'https://ror.org/003kz5h76 Association of Management Consulting Firms'),
(45098, 'https://ror.org/003mv3827', 'es', 1, 'https://ror.org/003mv3827 Universidad Obrera de Mexico'),
(45099, 'https://ror.org/003ns4430', 'no_lang_code', 1, 'https://ror.org/003ns4430 Rogers Sciences (United States)'),
(45100, 'https://ror.org/003ns5237', 'no_lang_code', 1, 'https://ror.org/003ns5237 Lear (Germany)'),
(45101, 'https://ror.org/003p2k248', 'no_lang_code', 1, 'https://ror.org/003p2k248 Pirelli (Germany)'),
(45102, 'https://ror.org/003rkqt50', 'en', 1, 'https://ror.org/003rkqt50 Yamagata Prefectural Education Institute å±±å½¢ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(45103, 'https://ror.org/003sgjn18', 'no_lang_code', 1, 'https://ror.org/003sgjn18 Osaka Butsuryo University å¤§é˜Ŗē‰©ē™‚å¤§å­¦'),
(45104, 'https://ror.org/003snev59', 'no_lang_code', 1, 'https://ror.org/003snev59 Volvo (Germany)'),
(45105, 'https://ror.org/003sw4m03', 'en', 1, 'https://ror.org/003sw4m03 Saudi Center for Theoretical Physics'),
(45106, 'https://ror.org/003tmp461', 'en', 1, 'https://ror.org/003tmp461 Schiller International University'),
(45107, 'https://ror.org/003vha698', 'en', 1, 'https://ror.org/003vha698 Japan Spaceguard Association ę—„ęœ¬ć‚¹ćƒšćƒ¼ć‚¹ć‚¬ćƒ¼ćƒ‰å”ä¼š'),
(45108, 'https://ror.org/003x8h913', 'no_lang_code', 1, 'https://ror.org/003x8h913 Eastman Chemical Company (Germany)'),
(45109, 'https://ror.org/003xctm20', 'en', 1, 'https://ror.org/003xctm20 Road Map Project'),
(45110, 'https://ror.org/003xdw211', 'en', 1, 'https://ror.org/003xdw211 National Yang Ming University Hospital å›½ē«‹é˜³ę˜Žå¤§å­¦é™„č®¾åŒ»é™¢'),
(45111, 'https://ror.org/003zfh275', 'pt', 1, 'https://ror.org/003zfh275 Hospital Padre AmƩrico'),
(45112, 'https://ror.org/004046r88', 'en', 1, 'https://ror.org/004046r88 Cw Private Hospital'),
(45113, 'https://ror.org/00425vc91', 'no_lang_code', 1, 'https://ror.org/00425vc91 Rheomics (United States)'),
(45114, 'https://ror.org/0042aq380', 'no_lang_code', 1, 'https://ror.org/0042aq380 Sironix Renewables (United States)'),
(45115, 'https://ror.org/0043qss98', 'en', 1, 'https://ror.org/0043qss98 Federal Employee Education and Assistance Fund'),
(45116, 'https://ror.org/0043z0e71', 'en', 1, 'https://ror.org/0043z0e71 Arkitektur- och designcentrum Swedish Centre for Architecture and Design'),
(45117, 'https://ror.org/0044cjb29', 'no_lang_code', 1, 'https://ror.org/0044cjb29 Clinical Investigation Support (Austria)'),
(45118, 'https://ror.org/0044zd471', 'en', 1, 'https://ror.org/0044zd471 Foundation Osaka City Museum Association å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗåø‚åšē‰©é¤Øå”ä¼š'),
(45119, 'https://ror.org/00459cq42', 'en', 1, 'https://ror.org/00459cq42 Gateway Health Institute'),
(45120, 'https://ror.org/0045ja979', 'en', 1, 'https://ror.org/0045ja979 Chester County Library System'),
(45121, 'https://ror.org/0048he143', 'no_lang_code', 1, 'https://ror.org/0048he143 Ɩssur (Germany)'),
(45122, 'https://ror.org/00497ac31', 'no_lang_code', 1, 'https://ror.org/00497ac31 Umlaut Software (United States)'),
(45123, 'https://ror.org/0049gd358', 'en', 1, 'https://ror.org/0049gd358 University of Science, Art and Technology'),
(45124, 'https://ror.org/004atj446', 'en', 1, 'https://ror.org/004atj446 Library of Michigan Foundation'),
(45125, 'https://ror.org/004b7jc50', 'no_lang_code', 1, 'https://ror.org/004b7jc50 Maxim Integrated (United Kingdom)'),
(45126, 'https://ror.org/004debr48', 'it', 1, 'https://ror.org/004debr48 Ospedale Santa Maria di Loreto Nuovo'),
(45127, 'https://ror.org/004dpkc57', 'es', 1, 'https://ror.org/004dpkc57 Wikimedia Chile'),
(45128, 'https://ror.org/004f1yx35', 'pt', 1, 'https://ror.org/004f1yx35 Empresa de Pesquisa AgropecuÔria e Extensão Rural de Santa Catarina'),
(45129, 'https://ror.org/004fan886', 'es', 1, 'https://ror.org/004fan886 Universidad Autónoma Monterrey'),
(45130, 'https://ror.org/004g74051', 'en', 1, 'https://ror.org/004g74051 Technological University Panglong į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(į€•į€„į€ŗį€œį€Æį€¶)'),
(45131, 'https://ror.org/004g8sj50', 'no_lang_code', 1, 'https://ror.org/004g8sj50 EnergyAustralia (Australia)'),
(45132, 'https://ror.org/004gdd155', 'en', 1, 'https://ror.org/004gdd155 Belize Zoo'),
(45133, 'https://ror.org/004h0ew98', 'en', 1, 'https://ror.org/004h0ew98 LearnLaunch Institute'),
(45134, 'https://ror.org/004hb4039', 'no_lang_code', 1, 'https://ror.org/004hb4039 Danfoss (China)'),
(45135, 'https://ror.org/004j8ab67', 'no_lang_code', 1, 'https://ror.org/004j8ab67 Nitride Crystals (United States)'),
(45136, 'https://ror.org/004jk3542', 'no_lang_code', 1, 'https://ror.org/004jk3542 Renishaw (Ireland)'),
(45137, 'https://ror.org/004m46j22', 'pt', 1, 'https://ror.org/004m46j22 Secretaria de Ciência, Tecnologia e Inovação'),
(45138, 'https://ror.org/004nj3f45', 'en', 1, 'https://ror.org/004nj3f45 Virginia Assistive Technology System'),
(45139, 'https://ror.org/004np3m61', 'en', 1, 'https://ror.org/004np3m61 National Institute of Technology, Ariake College ęœ‰ę˜Žå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(45140, 'https://ror.org/004nttc42', 'en', 1, 'https://ror.org/004nttc42 Fraunhofer Institute for Mechatronic Systems Design Fraunhofer-Institut für Entwurfstechnik Mechatronik'),
(45141, 'https://ror.org/004qxzr21', 'en', 1, 'https://ror.org/004qxzr21 Theodor Fliedner Foundation Theodor Fliedner Stiftung'),
(45142, 'https://ror.org/004tddr41', 'en', 1, 'https://ror.org/004tddr41 Family Online Safety Institute'),
(45143, 'https://ror.org/004vz6g09', 'en', 1, 'https://ror.org/004vz6g09 Lincoln Trail Area Development District'),
(45144, 'https://ror.org/004yf8m37', 'no_lang_code', 1, 'https://ror.org/004yf8m37 Reaction35 (United States)'),
(45145, 'https://ror.org/004ywrc08', 'en', 1, 'https://ror.org/004ywrc08 Kobe City Fire Department ē„žęˆøåø‚ę¶ˆé˜²å±€'),
(45146, 'https://ror.org/00505z102', 'no_lang_code', 1, 'https://ror.org/00505z102 Johnson & Johnson (Switzerland)'),
(45147, 'https://ror.org/005263a87', 'id', 1, 'https://ror.org/005263a87 Wikimedia Indonesia'),
(45148, 'https://ror.org/00541hg31', 'en', 1, 'https://ror.org/00541hg31 San Francisco Fire Department'),
(45149, 'https://ror.org/005535379', 'en', 1, 'https://ror.org/005535379 Blanchette Rockefeller Neurosciences Institute'),
(45150, 'https://ror.org/005891v66', 'en', 1, 'https://ror.org/005891v66 Cardiac Society of Australia and New Zealand'),
(45151, 'https://ror.org/00593cw33', 'no_lang_code', 1, 'https://ror.org/00593cw33 Richtek Technology (Taiwan) ē«‹éŒ”ē§‘ęŠ€'),
(45152, 'https://ror.org/0059k7j85', 'no_lang_code', 1, 'https://ror.org/0059k7j85 Institute For Smart Monitoring (United States)'),
(45153, 'https://ror.org/005a4h693', 'en', 1, 'https://ror.org/005a4h693 Aichi Prefectural Kasugai Higashi High School ę„›ēŸ„ēœŒē«‹ę˜„ę—„äŗ•ę±é«˜ē­‰å­¦ę ”'),
(45154, 'https://ror.org/005b4rt94', 'en', 1, 'https://ror.org/005b4rt94 Jung Tao School of Classical Chinese Medicine'),
(45155, 'https://ror.org/005b7va47', 'no_lang_code', 1, 'https://ror.org/005b7va47 GroundMetrics (United States)'),
(45156, 'https://ror.org/005d42743', 'no_lang_code', 1, 'https://ror.org/005d42743 Illinois Tool Works (Australia)'),
(45157, 'https://ror.org/005et7b18', 'en', 1, 'https://ror.org/005et7b18 Bamenda University of Science and Technology'),
(45158, 'https://ror.org/005fe1k46', 'no_lang_code', 1, 'https://ror.org/005fe1k46 BorgWarner (Brazil)'),
(45159, 'https://ror.org/005hdgp31', 'en', 1, 'https://ror.org/005hdgp31 Basque Center for Materials, Applications and Nanostructures'),
(45160, 'https://ror.org/005j0cx32', 'de', 1, 'https://ror.org/005j0cx32 Augenklinik Heidelberg'),
(45161, 'https://ror.org/005jw9139', 'no_lang_code', 1, 'https://ror.org/005jw9139 Mondelēz International (United States)'),
(45162, 'https://ror.org/005kpb876', 'en', 1, 'https://ror.org/005kpb876 London Cancer'),
(45163, 'https://ror.org/005mjtj84', 'pl', 1, 'https://ror.org/005mjtj84 Niepubliczna Wyższa Szkoła Medyczna'),
(45164, 'https://ror.org/005mn0111', 'no_lang_code', 1, 'https://ror.org/005mn0111 Sciaky (United States)'),
(45165, 'https://ror.org/005pzyb51', 'en', 1, 'https://ror.org/005pzyb51 Research Institute for Innovation and Technology'),
(45166, 'https://ror.org/005qnwq38', 'no_lang_code', 1, 'https://ror.org/005qnwq38 Unilever (Philippines)'),
(45167, 'https://ror.org/005scs312', 'en', 1, 'https://ror.org/005scs312 World Rehabilitation Fund'),
(45168, 'https://ror.org/005swq337', 'no_lang_code', 1, 'https://ror.org/005swq337 Winterthur Gas & Diesel (Switzerland)'),
(45169, 'https://ror.org/005v44f98', 'fr', 1, 'https://ror.org/005v44f98 Centre d''Ɖchographie de la Femme et du Fœtus'),
(45170, 'https://ror.org/005v7em92', 'en', 1, 'https://ror.org/005v7em92 Colorado Department of Higher Education'),
(45171, 'https://ror.org/005w1s219', 'en', 1, 'https://ror.org/005w1s219 ICCO'),
(45172, 'https://ror.org/005xj6w35', 'en', 1, 'https://ror.org/005xj6w35 Shogen Junior College 正眼短期大学'),
(45173, 'https://ror.org/0060eq849', 'en', 1, 'https://ror.org/0060eq849 Freshwater Habitats Trust'),
(45174, 'https://ror.org/0063pqn40', 'en', 1, 'https://ror.org/0063pqn40 Saitama Prefectural Kumagaya Girls High School åŸ¼ēŽ‰ēœŒē«‹ē†Šč°·å„³å­é«˜ē­‰å­¦ę ”'),
(45175, 'https://ror.org/0063wfd54', 'no_lang_code', 1, 'https://ror.org/0063wfd54 First Sensor (Germany)'),
(45176, 'https://ror.org/0063zxz13', 'no_lang_code', 1, 'https://ror.org/0063zxz13 Avid (Israel)'),
(45177, 'https://ror.org/0067q8j88', 'id', 1, 'https://ror.org/0067q8j88 Rumah Sakit Dokter Soetomo'),
(45178, 'https://ror.org/006afd344', 'en', 1, 'https://ror.org/006afd344 Sunnyvale Public Library'),
(45179, 'https://ror.org/006bxqs05', 'en', 1, 'https://ror.org/006bxqs05 Institute of Astrophysics and Space Sciences Instituto de Astrofísica e Ciências do Espaço'),
(45180, 'https://ror.org/006dp6044', 'sv', 1, 'https://ror.org/006dp6044 Svenskt Gastekniskt Center Swedish Gas Technology Centre'),
(45181, 'https://ror.org/006ejbv88', 'en', 1, 'https://ror.org/006ejbv88 Kampala International University'),
(45182, 'https://ror.org/006n22802', 'en', 1, 'https://ror.org/006n22802 International School of Europe'),
(45183, 'https://ror.org/006s9y688', 'no_lang_code', 1, 'https://ror.org/006s9y688 Ingersoll Rand (United States)'),
(45184, 'https://ror.org/006sha924', 'en', 1, 'https://ror.org/006sha924 Institute of Public Enterprise'),
(45185, 'https://ror.org/006smnb28', 'en', 1, 'https://ror.org/006smnb28 Kariya City Board of Education åˆˆč°·åø‚ę•™č‚²å§”å“”ä¼šå§”å“”åē°æ'),
(45186, 'https://ror.org/006t6t254', 'en', 1, 'https://ror.org/006t6t254 Bį»™ ThĆ“ng tin vĆ  Truyền thĆ“ng Ministry of Information and Communications'),
(45187, 'https://ror.org/006vpev48', 'en', 1, 'https://ror.org/006vpev48 Kumamoto Prefectural Minamata Technical High School ē†Šęœ¬ēœŒē«‹ę°“äæ£å·„ę„­é«˜ē­‰å­¦ę ”'),
(45188, 'https://ror.org/006z6tk79', 'en', 1, 'https://ror.org/006z6tk79 Dover Town Library'),
(45189, 'https://ror.org/0070x6033', 'de', 1, 'https://ror.org/0070x6033 Klinik Preetz'),
(45190, 'https://ror.org/0072m3y51', 'no_lang_code', 1, 'https://ror.org/0072m3y51 Oracle (Israel)'),
(45191, 'https://ror.org/0076k6d95', 'no_lang_code', 1, 'https://ror.org/0076k6d95 Assa Abloy (Germany)'),
(45192, 'https://ror.org/0076ska18', 'en', 1, 'https://ror.org/0076ska18 Mountain Home School District'),
(45193, 'https://ror.org/00792x745', 'no_lang_code', 1, 'https://ror.org/00792x745 Amdocs (Germany)'),
(45194, 'https://ror.org/007b1tt61', 'en', 1, 'https://ror.org/007b1tt61 Murmansk Regional Clinical Hospital ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚ŃŒ Š±Š¾Š»ŃŒŠ½ŠøŃ†Šµ P.A.Bayandina'),
(45195, 'https://ror.org/007c37917', 'no_lang_code', 1, 'https://ror.org/007c37917 Moog (Germany)'),
(45196, 'https://ror.org/007d4jn78', 'en', 1, 'https://ror.org/007d4jn78 Institute of Philosophy 哲学研究所'),
(45197, 'https://ror.org/007eeyb09', 'no_lang_code', 1, 'https://ror.org/007eeyb09 MRI Robotics (United States)'),
(45198, 'https://ror.org/007eyd925', 'en', 1, 'https://ror.org/007eyd925 Tianjin University of Sport 天擄体育学院'),
(45199, 'https://ror.org/007h0zf03', 'en', 1, 'https://ror.org/007h0zf03 National Institute for Educational Policy Research 国立教育政策研究所'),
(45200, 'https://ror.org/007hwje16', 'en', 1, 'https://ror.org/007hwje16 Kihara Institute for Biological Research ęØŖęµœåø‚ē«‹å¤§å­¦ęœØåŽŸē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(45201, 'https://ror.org/007j02p07', 'en', 1, 'https://ror.org/007j02p07 Maulana Abul Kalam Azad Institute of Asian Studies মৌলানা আবুল কালাম ą¦†ą¦œą¦¾ą¦¦ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿą§ā€Œ অফ ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦øą§ą¦Ÿą¦¾ą¦”ą¦æą¦œą§ā€Œ'),
(45202, 'https://ror.org/007kevk58', 'en', 1, 'https://ror.org/007kevk58 Westfield Memorial Library'),
(45203, 'https://ror.org/007mfjf50', 'en', 1, 'https://ror.org/007mfjf50 Kyushu National Museum ä¹å·žå›½ē«‹åšē‰©é¤Ø'),
(45204, 'https://ror.org/007nce146', 'no_lang_code', 1, 'https://ror.org/007nce146 Emergent BioSolutions (United Kingdom)'),
(45205, 'https://ror.org/007qdwg58', 'no_lang_code', 1, 'https://ror.org/007qdwg58 GEO-HAZ Consulting (United States)'),
(45206, 'https://ror.org/007qf4q77', 'en', 1, 'https://ror.org/007qf4q77 Lion Foundation for Dental Health ćƒ©ć‚¤ć‚Ŗćƒ³ę­Æē§‘č”›ē”Ÿē ”ē©¶ę‰€'),
(45207, 'https://ror.org/007r1jg09', 'no_lang_code', 1, 'https://ror.org/007r1jg09 InvestorNet-Gate2Growth (Denmark)'),
(45208, 'https://ror.org/007r42p71', 'en', 1, 'https://ror.org/007r42p71 Rabindranath Tagore Medical College'),
(45209, 'https://ror.org/007st8028', 'no_lang_code', 1, 'https://ror.org/007st8028 Visuray (Malta)'),
(45210, 'https://ror.org/007tn2w26', 'no_lang_code', 1, 'https://ror.org/007tn2w26 Mycofarm (Singapore)'),
(45211, 'https://ror.org/007vmg243', 'en', 1, 'https://ror.org/007vmg243 Kyushu Economic Research Center å…¬ē›Šč²”å›£ę³•äŗŗ ä¹å·žēµŒęøˆčŖæęŸ»å”ä¼š'),
(45212, 'https://ror.org/007wpch15', 'en', 1, 'https://ror.org/007wpch15 Institute for Stem Cell Biology and Regenerative Medicine'),
(45213, 'https://ror.org/007xn0x86', 'en', 1, 'https://ror.org/007xn0x86 Yakama Nation Tribal Council'),
(45214, 'https://ror.org/007y22n43', 'de', 1, 'https://ror.org/007y22n43 Gesundheitszentrum Bitterfeld'),
(45215, 'https://ror.org/007ypmw98', 'no_lang_code', 1, 'https://ror.org/007ypmw98 Meloche (Canada)'),
(45216, 'https://ror.org/007zab522', 'en', 1, 'https://ror.org/007zab522 Fukuoka Women''s Junior College ē¦å²”å„³å­ēŸ­ęœŸå¤§å­¦'),
(45217, 'https://ror.org/007zjjv25', 'en', 1, 'https://ror.org/007zjjv25 Monmouth County Library'),
(45218, 'https://ror.org/0080zax93', 'en', 1, 'https://ror.org/0080zax93 Horsham Land Redevelopment Authority'),
(45219, 'https://ror.org/008124755', 'en', 1, 'https://ror.org/008124755 British Toxicology Society'),
(45220, 'https://ror.org/008382c47', 'no_lang_code', 1, 'https://ror.org/008382c47 Sendai City Museum ä»™å°åø‚åšē‰©é¤Ø'),
(45221, 'https://ror.org/008421332', 'en', 1, 'https://ror.org/008421332 NBIA Disorders Association'),
(45222, 'https://ror.org/008437370', 'en', 1, 'https://ror.org/008437370 National Institute of Population and Social Security Research å›½ē«‹ē¤¾ä¼šäæéšœćƒ»äŗŗå£å•é”Œē ”ē©¶ę‰€'),
(45223, 'https://ror.org/008558y11', 'no_lang_code', 1, 'https://ror.org/008558y11 Gemalto (Germany)'),
(45224, 'https://ror.org/0085d1p90', 'no_lang_code', 1, 'https://ror.org/0085d1p90 Atmospheric Plasma Solutions (United States)'),
(45225, 'https://ror.org/0085x3f43', 'en', 1, 'https://ror.org/0085x3f43 Ningbo Dahongying University 宁波大红鹰学院'),
(45226, 'https://ror.org/0087ve919', 'no_lang_code', 1, 'https://ror.org/0087ve919 Solid Material Solutions (United States)'),
(45227, 'https://ror.org/0088z0796', 'en', 1, 'https://ror.org/0088z0796 Museum of Fine Arts, Gifu å²é˜œēœŒē¾Žč”“é¤Ø'),
(45228, 'https://ror.org/0089qm711', 'no_lang_code', 1, 'https://ror.org/0089qm711 OCT Medical Imaging (United States)'),
(45229, 'https://ror.org/008egk659', 'no_lang_code', 1, 'https://ror.org/008egk659 Gnowit (Canada)'),
(45230, 'https://ror.org/008ensz53', 'en', 1, 'https://ror.org/008ensz53 Alliance for Excellent Education'),
(45231, 'https://ror.org/008f7aw41', 'en', 1, 'https://ror.org/008f7aw41 Paleological Association of Japan å…¬ē›Šč²”å›£ę³•äŗŗå¤ä»£å­¦å”ä¼š'),
(45232, 'https://ror.org/008htsm20', 'de', 1, 'https://ror.org/008htsm20 Sana Kliniken Duisburg'),
(45233, 'https://ror.org/008j2vk87', 'no_lang_code', 1, 'https://ror.org/008j2vk87 Johnson & Johnson (Ireland)'),
(45234, 'https://ror.org/008jqbh70', 'en', 1, 'https://ror.org/008jqbh70 Himeji High School å§«č·Æåø‚ē«‹å§«č·Æé«˜ē­‰å­¦ę ”'),
(45235, 'https://ror.org/008krtd86', 'no_lang_code', 1, 'https://ror.org/008krtd86 Thomson Reuters (United Kingdom)'),
(45236, 'https://ror.org/008mems69', 'en', 1, 'https://ror.org/008mems69 National Institute of Technology, Yuge College å¼“å‰Šå•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(45237, 'https://ror.org/008p7xh83', 'en', 1, 'https://ror.org/008p7xh83 Chinese Preventive Medicine Association'),
(45238, 'https://ror.org/008qm0n27', 'en', 1, 'https://ror.org/008qm0n27 National Math and Science Initiative'),
(45239, 'https://ror.org/008rq7v69', 'en', 1, 'https://ror.org/008rq7v69 Miyagi Prefecture Ishinomaki Technical High School å®®åŸŽēœŒēŸ³å·»å·„ę„­é«˜ē­‰å­¦ę ”'),
(45240, 'https://ror.org/008te2062', 'en', 1, 'https://ror.org/008te2062 St Michael’s Hospital'),
(45241, 'https://ror.org/008yrcn60', 'en', 1, 'https://ror.org/008yrcn60 Bertha Voyer Memorial Library'),
(45242, 'https://ror.org/008ze5r69', 'no_lang_code', 1, 'https://ror.org/008ze5r69 Cernostics (United States)'),
(45243, 'https://ror.org/008zgph74', 'en', 1, 'https://ror.org/008zgph74 Bossier Parish School Board'),
(45244, 'https://ror.org/0090z5g12', 'no_lang_code', 1, 'https://ror.org/0090z5g12 Lhoist (Germany)'),
(45245, 'https://ror.org/0092jx746', 'en', 1, 'https://ror.org/0092jx746 Institute for Educational Leadership'),
(45246, 'https://ror.org/0093zaj76', 'pt', 1, 'https://ror.org/0093zaj76 Instituto de Ensino e Pesquisa Santa Casa'),
(45247, 'https://ror.org/0098ak319', 'en', 1, 'https://ror.org/0098ak319 Coconut Research Institute'),
(45248, 'https://ror.org/0098qsx72', 'no_lang_code', 1, 'https://ror.org/0098qsx72 Royal HaskoningDHV (United Kingdom)'),
(45249, 'https://ror.org/009afhj46', 'en', 1, 'https://ror.org/009afhj46 Fucape Business School'),
(45250, 'https://ror.org/009bczc36', 'ca', 1, 'https://ror.org/009bczc36 Societat Catalana d''Oftalmologia'),
(45251, 'https://ror.org/009be3496', 'en', 1, 'https://ror.org/009be3496 Nagasaki Prefectural Shimabara High School é•·å“ŽēœŒē«‹å³¶åŽŸé«˜ē­‰å­¦ę ”'),
(45252, 'https://ror.org/009byq155', 'es', 1, 'https://ror.org/009byq155 Centro de Investigación Biomédica en Red de Salud Mental'),
(45253, 'https://ror.org/009cg4615', 'en', 1, 'https://ror.org/009cg4615 Hyogo Prefectural Police å…µåŗ«ēœŒč­¦åÆŸ'),
(45254, 'https://ror.org/009dch554', 'en', 1, 'https://ror.org/009dch554 Missouri Valley Cancer Consortium'),
(45255, 'https://ror.org/009dxjw45', 'en', 1, 'https://ror.org/009dxjw45 Faurecia (Germany)'),
(45256, 'https://ror.org/009e9eq52', 'en', 1, 'https://ror.org/009e9eq52 Newcastle University Medicine Malaysia'),
(45257, 'https://ror.org/009fme624', 'no_lang_code', 1, 'https://ror.org/009fme624 E-Spectrum Technologies (United States)'),
(45258, 'https://ror.org/009hd2k51', 'en', 1, 'https://ror.org/009hd2k51 Wisconsin Economic Development Corporation'),
(45259, 'https://ror.org/009mmq515', 'en', 1, 'https://ror.org/009mmq515 Australian Diabetes Society'),
(45260, 'https://ror.org/009nhnc47', 'de', 1, 'https://ror.org/009nhnc47 Klinik und Poliklinik für Hals-, Nasen-, Ohrenheilkunde'),
(45261, 'https://ror.org/009qwqe18', 'en', 1, 'https://ror.org/009qwqe18 ACT Foundation'),
(45262, 'https://ror.org/009rysn20', 'en', 1, 'https://ror.org/009rysn20 Gary Public Library'),
(45263, 'https://ror.org/009sp3d14', 'no_lang_code', 1, 'https://ror.org/009sp3d14 Gentherm (United States)'),
(45264, 'https://ror.org/009tscw31', 'en', 1, 'https://ror.org/009tscw31 Institut für Stadt- und Regionalforschung Institute for Urban and Regional Research'),
(45265, 'https://ror.org/009wszx58', 'en', 1, 'https://ror.org/009wszx58 South Carolina Department of Employment and Workforce'),
(45266, 'https://ror.org/009ynjx25', 'pt', 1, 'https://ror.org/009ynjx25 Secretaria de Educação de Pernambuco'),
(45267, 'https://ror.org/009yrnm54', 'no_lang_code', 1, 'https://ror.org/009yrnm54 Trelleborg (United Kingdom)'),
(45268, 'https://ror.org/009z7vc79', 'no_lang_code', 1, 'https://ror.org/009z7vc79 Hyundai Card (South Korea) ķ˜„ėŒ€ģ¹“ė“œ'),
(45269, 'https://ror.org/00a0e8y90', 'no_lang_code', 1, 'https://ror.org/00a0e8y90 Mera Pharmaceuticals (United states)'),
(45270, 'https://ror.org/00a0wcz54', 'en', 1, 'https://ror.org/00a0wcz54 Lancaster Education Foundation'),
(45271, 'https://ror.org/00a0zet70', 'pt', 1, 'https://ror.org/00a0zet70 Prefeitura Municipal de Barra Mansa'),
(45272, 'https://ror.org/00a7kcq71', 'no_lang_code', 1, 'https://ror.org/00a7kcq71 Recif Technologies (France)'),
(45273, 'https://ror.org/00a8m1d79', 'en', 1, 'https://ror.org/00a8m1d79 Long Beach Public Library'),
(45274, 'https://ror.org/00ae67970', 'en', 1, 'https://ror.org/00ae67970 National Environmental Agency įƒ’įƒįƒ įƒ”įƒ›įƒįƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒ”įƒįƒįƒ’įƒ”įƒœįƒ¢įƒ'),
(45275, 'https://ror.org/00aesyf04', 'en', 1, 'https://ror.org/00aesyf04 Glendale Public Library'),
(45276, 'https://ror.org/00ag1vy72', 'no_lang_code', 1, 'https://ror.org/00ag1vy72 Liebherr (Austria)'),
(45277, 'https://ror.org/00agsqd14', 'no_lang_code', 1, 'https://ror.org/00agsqd14 Nanium (Portugal)'),
(45278, 'https://ror.org/00ahm5y33', 'no_lang_code', 1, 'https://ror.org/00ahm5y33 Rostec (Russia) Ростех'),
(45279, 'https://ror.org/00amn8x39', 'en', 1, 'https://ror.org/00amn8x39 Nehru Foundation for Development'),
(45280, 'https://ror.org/00apjgf04', 'en', 1, 'https://ror.org/00apjgf04 Schiller International University'),
(45281, 'https://ror.org/00aptaa75', 'en', 1, 'https://ror.org/00aptaa75 Alliance pour le PrƩvention des maladies Chroniques au Canada Chronic Disease Prevention Alliance of Canada'),
(45282, 'https://ror.org/00aq0ev26', 'en', 1, 'https://ror.org/00aq0ev26 Funders Concerned About AIDS'),
(45283, 'https://ror.org/00aq0fx21', 'es', 1, 'https://ror.org/00aq0fx21 Centro para la Investigación en Sistemas Sostenibles de Producción Agropecuaria'),
(45284, 'https://ror.org/00aqb5q90', 'en', 1, 'https://ror.org/00aqb5q90 Maple Street School'),
(45285, 'https://ror.org/00arw9a52', 'en', 1, 'https://ror.org/00arw9a52 National Research Institute of Fire and Disaster 消防庁 消防大学栔 ę¶ˆé˜²ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(45286, 'https://ror.org/00atp6h41', 'no_lang_code', 1, 'https://ror.org/00atp6h41 Standard Imaging (United States)'),
(45287, 'https://ror.org/00av44s75', 'pt', 1, 'https://ror.org/00av44s75 Hospital do Servidor PĆŗblico Municipal'),
(45288, 'https://ror.org/00av6fw44', 'en', 1, 'https://ror.org/00av6fw44 Shandong Geological Sciences Institute å±±äøœēœåœ°č“Øē§‘å­¦å®žéŖŒē ”ē©¶é™¢'),
(45289, 'https://ror.org/00avape27', 'en', 1, 'https://ror.org/00avape27 Yoshida Biological Laboratry å‰ē”°ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(45290, 'https://ror.org/00avqt683', 'fr', 1, 'https://ror.org/00avqt683 CƩgep de Baie-Comeau'),
(45291, 'https://ror.org/00awfxn33', 'no_lang_code', 1, 'https://ror.org/00awfxn33 FDC Composites (Canada)'),
(45292, 'https://ror.org/00awz3e55', 'no_lang_code', 1, 'https://ror.org/00awz3e55 Flash Bainite (United States)'),
(45293, 'https://ror.org/00ax8r212', 'no_lang_code', 1, 'https://ror.org/00ax8r212 DfR Solutions (United States)'),
(45294, 'https://ror.org/00ay2hv83', 'no_lang_code', 1, 'https://ror.org/00ay2hv83 Safran (Singapore)'),
(45295, 'https://ror.org/00b25cj29', 'pt', 1, 'https://ror.org/00b25cj29 Governo do Estado de Alagoas'),
(45296, 'https://ror.org/00b2e6559', 'en', 1, 'https://ror.org/00b2e6559 National Institute of Technology, Maizuru College čˆžé¶“å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(45297, 'https://ror.org/00b2vwt46', 'en', 1, 'https://ror.org/00b2vwt46 Victorian Multicultural Commission'),
(45298, 'https://ror.org/00b2yyz32', 'pt', 1, 'https://ror.org/00b2yyz32 Associação de Leitura do Brasil'),
(45299, 'https://ror.org/00b43n621', 'no_lang_code', 1, 'https://ror.org/00b43n621 Mitutoyo Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒŸćƒ„ćƒˆćƒØ'),
(45300, 'https://ror.org/00b4fbe80', 'no_lang_code', 1, 'https://ror.org/00b4fbe80 Universal Environmental Technologies (United States)'),
(45301, 'https://ror.org/00b5k3781', 'en', 1, 'https://ror.org/00b5k3781 Southern Africa Association for the Advancement of Science'),
(45302, 'https://ror.org/00b5zg596', 'en', 1, 'https://ror.org/00b5zg596 British Educational Research Association'),
(45303, 'https://ror.org/00b65kj58', 'no_lang_code', 1, 'https://ror.org/00b65kj58 MPDV Mikrolab (Germany)'),
(45304, 'https://ror.org/00b6zxk24', 'en', 1, 'https://ror.org/00b6zxk24 Tweed Shire Council'),
(45305, 'https://ror.org/00b80p354', 'en', 1, 'https://ror.org/00b80p354 Kanagawa Prefectural Kanazawa-Bunko Museum ē„žå„ˆå·ēœŒē«‹é‡‘ę²¢ę–‡åŗ«'),
(45306, 'https://ror.org/00b8kmt09', 'no_lang_code', 1, 'https://ror.org/00b8kmt09 Virtual Power Solutions (Portugal)'),
(45307, 'https://ror.org/00b9m5f16', 'en', 1, 'https://ror.org/00b9m5f16 Gaborone University College Of Law and Professional Studies'),
(45308, 'https://ror.org/00b9ph040', 'no_lang_code', 1, 'https://ror.org/00b9ph040 Hexagon (Israel)'),
(45309, 'https://ror.org/00ba1ja72', 'no_lang_code', 1, 'https://ror.org/00ba1ja72 STMicroelectronics (Netherlands)'),
(45310, 'https://ror.org/00bcfzm29', 'en', 1, 'https://ror.org/00bcfzm29 Lotus Innovative Sciences'),
(45311, 'https://ror.org/00be3zh53', 'en', 1, 'https://ror.org/00be3zh53 Institute of Applied Science and Intelligent Systems Istituto di Scienze Applicate e Sistemi Intelligenti "Eduardo Caianiello"'),
(45312, 'https://ror.org/00bkhev45', 'en', 1, 'https://ror.org/00bkhev45 Saitama Prefectural Omiya Chuo Senior High School åŸ¼ēŽ‰ēœŒē«‹å¤§å®®äø­å¤®é«˜ē­‰å­¦ę ”'),
(45313, 'https://ror.org/00bkzza76', 'en', 1, 'https://ror.org/00bkzza76 Fujiidera Technical High School å¤§é˜Ŗåŗœē«‹č—¤äŗ•åÆŗå·„ē§‘é«˜ē­‰å­¦ę ”'),
(45314, 'https://ror.org/00bm3g510', 'no_lang_code', 1, 'https://ror.org/00bm3g510 Kaneka (United States)'),
(45315, 'https://ror.org/00bn1cs33', 'en', 1, 'https://ror.org/00bn1cs33 Florida Association of District School Superintendents'),
(45316, 'https://ror.org/00bpw5437', 'en', 1, 'https://ror.org/00bpw5437 Arthritis Society'),
(45317, 'https://ror.org/00br1x675', 'en', 1, 'https://ror.org/00br1x675 Gangoji Institute for Research of Cultural Property å…ƒčˆˆåÆŗę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(45318, 'https://ror.org/00bsqmj12', 'en', 1, 'https://ror.org/00bsqmj12 Marshalltown Community College'),
(45319, 'https://ror.org/00bveh077', 'en', 1, 'https://ror.org/00bveh077 Kanagawa Institute of Technology Atsugi Children''s Science Museum åŽšęœØåø‚å­ć©ć‚‚ē§‘å­¦é¤Ø'),
(45320, 'https://ror.org/00bvfhz16', 'en', 1, 'https://ror.org/00bvfhz16 Mie Prefecture Board of Education ę•™č‚²ć®äø‰é‡ēœŒå§”å“”ä¼š'),
(45321, 'https://ror.org/00bx90590', 'no_lang_code', 1, 'https://ror.org/00bx90590 Deutsche Telekom (Austria)'),
(45322, 'https://ror.org/00bxkz165', 'no_lang_code', 1, 'https://ror.org/00bxkz165 Asus (Taiwan) čÆē¢©é›»č…¦č‚”ä»½ęœ‰é™å…¬åø'),
(45323, 'https://ror.org/00bxp1m74', 'pt', 1, 'https://ror.org/00bxp1m74 Associação Brasileira de Engenharia de Produção'),
(45324, 'https://ror.org/00bxxsn28', 'en', 1, 'https://ror.org/00bxxsn28 Oita Prefectural Yufu Support School å¤§åˆ†ēœŒē”±åøƒé™¢ę”Æę“å­¦ę ”'),
(45325, 'https://ror.org/00bygx606', 'en', 1, 'https://ror.org/00bygx606 International Council Of Aids Service Organizations'),
(45326, 'https://ror.org/00bz3eh81', 'no_lang_code', 1, 'https://ror.org/00bz3eh81 Vivienda y Suelo de Euskadi (Spain)');
INSERT INTO `rors` VALUES
(45327, 'https://ror.org/00bz97317', 'no_lang_code', 1, 'https://ror.org/00bz97317 UNIFAVIP'),
(45328, 'https://ror.org/00c0azs61', 'en', 1, 'https://ror.org/00c0azs61 Hiroshima Children''s Museum'),
(45329, 'https://ror.org/00c1jzs80', 'en', 1, 'https://ror.org/00c1jzs80 Environment and Public Health Organisation'),
(45330, 'https://ror.org/00c1z8d24', 'en', 1, 'https://ror.org/00c1z8d24 Mexican American Legal Defense and Educational Fund'),
(45331, 'https://ror.org/00c33pd26', 'en', 1, 'https://ror.org/00c33pd26 Hokkaido Sapporo Kaisei High School åŒ—ęµ·é“ęœ­å¹Œé–‹ęˆé«˜ē­‰å­¦ę ”'),
(45332, 'https://ror.org/00c3hvv49', 'en', 1, 'https://ror.org/00c3hvv49 Matsumoto Junior College ę¾ęœ¬ēŸ­ęœŸå¤§å­¦'),
(45333, 'https://ror.org/00c3ma888', 'pl', 1, 'https://ror.org/00c3ma888 Wikimedia Polska'),
(45334, 'https://ror.org/00c4rw797', 'no_lang_code', 1, 'https://ror.org/00c4rw797 Transtech Innovations (Canada)'),
(45335, 'https://ror.org/00c7qwq82', 'no_lang_code', 1, 'https://ror.org/00c7qwq82 Freudenberg (United States)'),
(45336, 'https://ror.org/00c87zj30', 'no_lang_code', 1, 'https://ror.org/00c87zj30 Industrial Microbes (United States)'),
(45337, 'https://ror.org/00c8rjz37', 'en', 1, 'https://ror.org/00c8rjz37 Mansoura University Hospital'),
(45338, 'https://ror.org/00c93aj32', 'no_lang_code', 1, 'https://ror.org/00c93aj32 DIC (Japan) ćƒ‡ć‚£ćƒ¼ć‚¢ć‚¤ć‚·ćƒ¼'),
(45339, 'https://ror.org/00cc7y784', 'en', 1, 'https://ror.org/00cc7y784 American Urogynecologic Society'),
(45340, 'https://ror.org/00ccnfj96', 'en', 1, 'https://ror.org/00ccnfj96 Regional Information Center for Science and Technology مرکز منطقه ای اطلاع Ų±Ų³Ų§Ł†ŪŒ Ų¹Ł„ŁˆŁ… و ŁŁ†Ų§ŁˆŲ±ŪŒ'),
(45341, 'https://ror.org/00cdhs571', 'no_lang_code', 1, 'https://ror.org/00cdhs571 Amdocs (Israel)'),
(45342, 'https://ror.org/00cdwab02', 'en', 1, 'https://ror.org/00cdwab02 Children’s Literature Association'),
(45343, 'https://ror.org/00cedkn40', 'no_lang_code', 1, 'https://ror.org/00cedkn40 Robert Bosch (China)'),
(45344, 'https://ror.org/00cg4a205', 'no_lang_code', 1, 'https://ror.org/00cg4a205 Stryker (Ireland)'),
(45345, 'https://ror.org/00cgnt765', 'en', 1, 'https://ror.org/00cgnt765 Deutsche Stiftung Weltbevoelkerung German Foundation for World Population'),
(45346, 'https://ror.org/00ch15449', 'no_lang_code', 1, 'https://ror.org/00ch15449 Somfy (Germany)'),
(45347, 'https://ror.org/00chnh519', 'en', 1, 'https://ror.org/00chnh519 Hokkaido Sapporo Kiyota High School åŒ—ęµ·é“ęœ­å¹Œęø…ē”°é«˜ē­‰å­¦ę ”'),
(45348, 'https://ror.org/00ckqw993', 'en', 1, 'https://ror.org/00ckqw993 Shiga Bunkyo Junior College ę»‹č³€ę–‡ę•™ēŸ­ęœŸå¤§å­¦'),
(45349, 'https://ror.org/00cnk1752', 'no_lang_code', 1, 'https://ror.org/00cnk1752 W. L. Gore & Associates (Japan)'),
(45350, 'https://ror.org/00cp8ee37', 'pt', 1, 'https://ror.org/00cp8ee37 Prefeitura Municipal de Alto Alegre'),
(45351, 'https://ror.org/00cpm5y73', 'no_lang_code', 1, 'https://ror.org/00cpm5y73 Serres Sagami (Canada)'),
(45352, 'https://ror.org/00cq0fp06', 'en', 1, 'https://ror.org/00cq0fp06 Institute of Physiology and Basic Medicine Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š°Ń Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾ физиологии Šø Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины'),
(45353, 'https://ror.org/00cq3qn16', 'en', 1, 'https://ror.org/00cq3qn16 Beijing Institute of Geology for Mineral Resources åŒ—äŗ¬ēŸæäŗ§åœ°č“Øē ”ē©¶é™¢ äŗ¬I'),
(45354, 'https://ror.org/00cqcft87', 'en', 1, 'https://ror.org/00cqcft87 Koganei Daiichi Elementary School å°é‡‘äŗ•åø‚ē«‹å°é‡‘äŗ•ē¬¬äø€å°å­¦ę ”'),
(45355, 'https://ror.org/00cqrch10', 'en', 1, 'https://ror.org/00cqrch10 Center For Children With Special Needs'),
(45356, 'https://ror.org/00ctv5m58', 'en', 1, 'https://ror.org/00ctv5m58 John N. Gardner Institute for Excellence in Undergraduate Education'),
(45357, 'https://ror.org/00cwr8424', 'no_lang_code', 1, 'https://ror.org/00cwr8424 Gad Consulting Services (United States)'),
(45358, 'https://ror.org/00cyam193', 'en', 1, 'https://ror.org/00cyam193 National Institute of Animal Sciences Viện Chăn NuĆ“i'),
(45359, 'https://ror.org/00cz1kp86', 'en', 1, 'https://ror.org/00cz1kp86 Vishwamitra Research Institute'),
(45360, 'https://ror.org/00d0v0049', 'en', 1, 'https://ror.org/00d0v0049 Max Planck Innovation'),
(45361, 'https://ror.org/00d4czm47', 'en', 1, 'https://ror.org/00d4czm47 Gold Coast City Council'),
(45362, 'https://ror.org/00d4far13', 'en', 1, 'https://ror.org/00d4far13 Colorado Education Initiative'),
(45363, 'https://ror.org/00d68k463', 'en', 1, 'https://ror.org/00d68k463 Toyama Prefectural Institute for Pharmaceutical Research åÆŒå±±ēœŒč–¬äŗ‹ē·åˆē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(45364, 'https://ror.org/00d8hgw93', 'en', 1, 'https://ror.org/00d8hgw93 Global Environmental Outreach Centre'),
(45365, 'https://ror.org/00d958b97', 'en', 1, 'https://ror.org/00d958b97 Sarvodaya Fertility & IVF Centre'),
(45366, 'https://ror.org/00d9m6s48', 'en', 1, 'https://ror.org/00d9m6s48 Guangdong Provincial Occupational Disease Prevention Hospital å¹æäøœēœčŒäøšē—…é˜²ę²»é™¢'),
(45367, 'https://ror.org/00db1z327', 'no_lang_code', 1, 'https://ror.org/00db1z327 SixOne Solutions (United States)'),
(45368, 'https://ror.org/00ddyzb69', 'en', 1, 'https://ror.org/00ddyzb69 Biodiversity Research Institute'),
(45369, 'https://ror.org/00deghz86', 'en', 1, 'https://ror.org/00deghz86 Zhejiang Financial College ęµ™ę±Ÿé‡‘čžčŒäøšå­¦é™¢'),
(45370, 'https://ror.org/00df6sb82', 'no_lang_code', 1, 'https://ror.org/00df6sb82 Catalan Government Railways Ferrocarrils de la Generalitat de Catalunya (Spain)'),
(45371, 'https://ror.org/00dhbnv07', 'en', 1, 'https://ror.org/00dhbnv07 Moscow Center For Continuous Mathematical Education Московский центр непрерывного математического Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(45372, 'https://ror.org/00djzv109', 'en', 1, 'https://ror.org/00djzv109 Komaki Technical High School ę„›ēŸ„ēœŒē«‹å°ē‰§å·„ę„­é«˜ē­‰å­¦ę ”'),
(45373, 'https://ror.org/00dmed338', 'no_lang_code', 1, 'https://ror.org/00dmed338 Netzsch (Germany)'),
(45374, 'https://ror.org/00dsd1564', 'no_lang_code', 1, 'https://ror.org/00dsd1564 Creo Medical (United Kingdom)'),
(45375, 'https://ror.org/00dsdst25', 'no_lang_code', 1, 'https://ror.org/00dsdst25 John Deere (New Zealand)'),
(45376, 'https://ror.org/00dsga669', 'en', 1, 'https://ror.org/00dsga669 Education Service Center Region 13'),
(45377, 'https://ror.org/00dv34a34', 'en', 1, 'https://ror.org/00dv34a34 National Centre for Genetic Resources and Biotechnology'),
(45378, 'https://ror.org/00dwzq257', 'en', 1, 'https://ror.org/00dwzq257 Japanese Center for International Studies in Ecology å›½éš›ē”Ÿę…‹å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(45379, 'https://ror.org/00dzkv815', 'no_lang_code', 1, 'https://ror.org/00dzkv815 Ericsson LG (South Korea)'),
(45380, 'https://ror.org/00e1g8a02', 'no_lang_code', 1, 'https://ror.org/00e1g8a02 Teledyne e2v (United Kingdom)'),
(45381, 'https://ror.org/00e58e871', 'no_lang_code', 1, 'https://ror.org/00e58e871 Zhejiang Zanyu Technology (China) ęµ™ę±Ÿčµžå®‡ē§‘ęŠ€'),
(45382, 'https://ror.org/00e6q5h84', 'en', 1, 'https://ror.org/00e6q5h84 Central Coast Orthopedic Medical Group'),
(45383, 'https://ror.org/00e8fa768', 'en', 1, 'https://ror.org/00e8fa768 Montgomery County Office of the County Executive'),
(45384, 'https://ror.org/00e8jms23', 'en', 1, 'https://ror.org/00e8jms23 Hubei Academy of Forestry ę¹–åŒ—ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(45385, 'https://ror.org/00eaebe27', 'en', 1, 'https://ror.org/00eaebe27 Islamic Azad University Medical Branch of Tehran دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد پزؓکی تهران'),
(45386, 'https://ror.org/00edpzw35', 'fr', 1, 'https://ror.org/00edpzw35 Centre Hospitalo-Universitaire Dr Benbadis Constantine'),
(45387, 'https://ror.org/00ejh1102', 'en', 1, 'https://ror.org/00ejh1102 Islamic Azad University, Boukan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲØŁˆŚ©Ų§Ł†'),
(45388, 'https://ror.org/00em2wb15', 'en', 1, 'https://ror.org/00em2wb15 Palm Beach County Library System'),
(45389, 'https://ror.org/00enjfk59', 'en', 1, 'https://ror.org/00enjfk59 Oita Prefectural College of Arts and Culture å¤§åˆ†ēœŒē«‹čŠøč”“ę–‡åŒ–ēŸ­ęœŸå¤§å­¦'),
(45390, 'https://ror.org/00ep5zh10', 'en', 1, 'https://ror.org/00ep5zh10 Edisto Island Historic Preservation Society'),
(45391, 'https://ror.org/00eqgtd35', 'no_lang_code', 1, 'https://ror.org/00eqgtd35 Paion (Germany)'),
(45392, 'https://ror.org/00eqr6v35', 'en', 1, 'https://ror.org/00eqr6v35 Katori City Higashiodo Elementary School é¦™å–åø‚ē«‹ę±å¤§ęˆøå°å­¦ę ”'),
(45393, 'https://ror.org/00esacy80', 'no_lang_code', 1, 'https://ror.org/00esacy80 TDK (United Kingdom)'),
(45394, 'https://ror.org/00ew91p29', 'en', 1, 'https://ror.org/00ew91p29 Deutsche Gesellschaft für Chirurgie German Society of Surgery'),
(45395, 'https://ror.org/00eykd632', 'en', 1, 'https://ror.org/00eykd632 International University of Fundamental Studies ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠžŠ±ŃƒŃ‡ŠµŠ½ŠøŃ'),
(45396, 'https://ror.org/00eykv937', 'no_lang_code', 1, 'https://ror.org/00eykv937 CertiRx (United States)'),
(45397, 'https://ror.org/00eys7z46', 'no_lang_code', 1, 'https://ror.org/00eys7z46 Renesas Electronics (United Kingdom) ćƒ«ćƒć‚µć‚¹ ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(45398, 'https://ror.org/00f31yh98', 'en', 1, 'https://ror.org/00f31yh98 Gifu Prefectural Research Institute for Fisheries and Aquatic Environments å²é˜œēœŒę°“ē”£ē ”ē©¶ę‰€'),
(45399, 'https://ror.org/00f3a6g74', 'en', 1, 'https://ror.org/00f3a6g74 Vocational School YIC Rehabilitation College'),
(45400, 'https://ror.org/00f4t6397', 'en', 1, 'https://ror.org/00f4t6397 Pain and Headache Center'),
(45401, 'https://ror.org/00f6d9d53', 'en', 1, 'https://ror.org/00f6d9d53 House of Representatives Tweede Kamer der Staten-Generaal'),
(45402, 'https://ror.org/00f6qhc93', 'en', 1, 'https://ror.org/00f6qhc93 Universal Technical Institute Dallas-Fort Worth'),
(45403, 'https://ror.org/00f7vya03', 'no_lang_code', 1, 'https://ror.org/00f7vya03 Thales (Australia)'),
(45404, 'https://ror.org/00f96dc95', 'en', 1, 'https://ror.org/00f96dc95 Kamehameha Schools'),
(45405, 'https://ror.org/00fbm6g50', 'en', 1, 'https://ror.org/00fbm6g50 Central America Health Sciences University'),
(45406, 'https://ror.org/00ff97g12', 'no_lang_code', 1, 'https://ror.org/00ff97g12 Guangxi Institute of Botany äø­ē§‘é™¢å¹æč„æę¤ē‰©ē ”ē©¶ę‰€'),
(45407, 'https://ror.org/00ffmas49', 'no_lang_code', 1, 'https://ror.org/00ffmas49 CorPower Ocean (Sweden)'),
(45408, 'https://ror.org/00fgym023', 'en', 1, 'https://ror.org/00fgym023 Hamamatsu City High School ęµœę¾åø‚é«˜ē­‰å­¦ę ”'),
(45409, 'https://ror.org/00fjn4j64', 'no_lang_code', 1, 'https://ror.org/00fjn4j64 LightComp (Czechia)'),
(45410, 'https://ror.org/00fmck729', 'no_lang_code', 1, 'https://ror.org/00fmck729 Bharat Forge (Germany)'),
(45411, 'https://ror.org/00fp8n517', 'en', 1, 'https://ror.org/00fp8n517 Nepal Development Research Institute ą¤Øą„‡ą¤Ŗą¤¾ą¤² विकास ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(45412, 'https://ror.org/00fp9k450', 'en', 1, 'https://ror.org/00fp9k450 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(45413, 'https://ror.org/00fqwsq79', 'no_lang_code', 1, 'https://ror.org/00fqwsq79 Spectra Science (United States)'),
(45414, 'https://ror.org/00fss9n81', 'en', 1, 'https://ror.org/00fss9n81 Niigata Prefectural Education Center ę–°ę½ŸēœŒē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(45415, 'https://ror.org/00ft7bw25', 'no_lang_code', 1, 'https://ror.org/00ft7bw25 STMicroelectronics (India)'),
(45416, 'https://ror.org/00ftn9c34', 'en', 1, 'https://ror.org/00ftn9c34 Toyama Prefectural Toyama Minami High School åÆŒå±±ēœŒē«‹åÆŒå±±å—é«˜ē­‰å­¦ę ”'),
(45417, 'https://ror.org/00fwkdt40', 'no_lang_code', 1, 'https://ror.org/00fwkdt40 Specific Technologies (United States)'),
(45418, 'https://ror.org/00fymn751', 'no_lang_code', 1, 'https://ror.org/00fymn751 General Electric (Israel)'),
(45419, 'https://ror.org/00g4f6p58', 'en', 1, 'https://ror.org/00g4f6p58 Artemis One Health Research Foundation'),
(45420, 'https://ror.org/00g6dr962', 'lt', 1, 'https://ror.org/00g6dr962 Klaipėdos Verslo AukÅ”toji Mokykla'),
(45421, 'https://ror.org/00g702m33', 'no_lang_code', 1, 'https://ror.org/00g702m33 Stihl (Germany)'),
(45422, 'https://ror.org/00g8rjs80', 'no_lang_code', 1, 'https://ror.org/00g8rjs80 Immune Biosolutions (Canada)'),
(45423, 'https://ror.org/00g9ma558', 'no_lang_code', 1, 'https://ror.org/00g9ma558 Microsemi (Israel)'),
(45424, 'https://ror.org/00gcbxk06', 'en', 1, 'https://ror.org/00gcbxk06 All-Russian Electrotechnical Institute named after V.I.Lenin Всероссийский ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.И. Ленина'),
(45425, 'https://ror.org/00ge9bp23', 'en', 1, 'https://ror.org/00ge9bp23 Tokyo Metropolitan Agriculture and Forestry Research Center ę±äŗ¬éƒ½č¾²ęž—ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(45426, 'https://ror.org/00geks132', 'no_lang_code', 1, 'https://ror.org/00geks132 Motosu Shoyo High School å²é˜œēœŒē«‹ęœ¬å·£ę¾é™½é«˜ē­‰å­¦ę ”'),
(45427, 'https://ror.org/00ges3302', 'en', 1, 'https://ror.org/00ges3302 Western Reserve Hospital'),
(45428, 'https://ror.org/00gf6rd21', 'no_lang_code', 1, 'https://ror.org/00gf6rd21 Ormazabal (Germany)'),
(45429, 'https://ror.org/00ggr8w08', 'fr', 1, 'https://ror.org/00ggr8w08 Institut de Technologie Alimentaire'),
(45430, 'https://ror.org/00gh9ef15', 'en', 1, 'https://ror.org/00gh9ef15 Japan Association for International Chemical Information åŒ–å­¦ęƒ…å ±å”ä¼š'),
(45431, 'https://ror.org/00ghqbv36', 'no_lang_code', 1, 'https://ror.org/00ghqbv36 Vivreon Biosciences (United States)'),
(45432, 'https://ror.org/00gj51q98', 'de', 1, 'https://ror.org/00gj51q98 Frankfurter Institut für Nachhaltige Entwicklung'),
(45433, 'https://ror.org/00gj8pr18', 'de', 1, 'https://ror.org/00gj8pr18 StƤdtisches Klinikum Dessau'),
(45434, 'https://ror.org/00gk1rp50', 'en', 1, 'https://ror.org/00gk1rp50 Aoyama Gakuin Senior High School é’å±±å­¦é™¢äø­ē­‰éƒØćƒ»é«˜ē­‰éƒØ'),
(45435, 'https://ror.org/00gk9by75', 'no_lang_code', 1, 'https://ror.org/00gk9by75 Ishikawa Prefectural Takamatsu Hospital ēŸ³å·ēœŒē«‹é«˜ę¾ē—…é™¢'),
(45436, 'https://ror.org/00gkmm041', 'pt', 1, 'https://ror.org/00gkmm041 Instituto de Biologia Molecular do ParanĆ”'),
(45437, 'https://ror.org/00gm0dm67', 'en', 1, 'https://ror.org/00gm0dm67 Matsura Historical Museum ę¾ęµ¦å²ę–™åšē‰©é¤Ø'),
(45438, 'https://ror.org/00gm6mv51', 'en', 1, 'https://ror.org/00gm6mv51 Sleep Research Society'),
(45439, 'https://ror.org/00gmn3n47', 'pt', 1, 'https://ror.org/00gmn3n47 Prefeitura Municipal de IgarapƩ'),
(45440, 'https://ror.org/00gnxy932', 'en', 1, 'https://ror.org/00gnxy932 Tohoku Bunkyo University ę±åŒ—ę–‡ę•™å¤§å­¦'),
(45441, 'https://ror.org/00gnyh466', 'en', 1, 'https://ror.org/00gnyh466 Medical Library Association'),
(45442, 'https://ror.org/00gp9bw49', 'fr', 1, 'https://ror.org/00gp9bw49 Vaincre la Mucoviscidose'),
(45443, 'https://ror.org/00gr1ep19', 'no_lang_code', 1, 'https://ror.org/00gr1ep19 Gnosys Systems (United States)'),
(45444, 'https://ror.org/00gttkw41', 'no_lang_code', 1, 'https://ror.org/00gttkw41 Thermo Fisher Scientific (Canada)'),
(45445, 'https://ror.org/00gve2f24', 'no_lang_code', 1, 'https://ror.org/00gve2f24 Great Lakes Sound and Vibration (United States)'),
(45446, 'https://ror.org/00gw6fh23', 'de', 1, 'https://ror.org/00gw6fh23 Klinikum Hanau'),
(45447, 'https://ror.org/00gym2132', 'no_lang_code', 1, 'https://ror.org/00gym2132 Mellanox Technologies (Israel) מלאנוקה ×˜×›× ×•×œ×•×’×™×•×Ŗ בע"מ'),
(45448, 'https://ror.org/00gyqd239', 'en', 1, 'https://ror.org/00gyqd239 Copperas Cove Independent School District'),
(45449, 'https://ror.org/00h0my365', 'en', 1, 'https://ror.org/00h0my365 Fraunhofer Chile Research Foundation'),
(45450, 'https://ror.org/00h0qgf14', 'en', 1, 'https://ror.org/00h0qgf14 Yamamoto Hospital å±±ęœ¬ē—…é™¢'),
(45451, 'https://ror.org/00h32kx47', 'en', 1, 'https://ror.org/00h32kx47 Institute of Town Planners India'),
(45452, 'https://ror.org/00h3t4h60', 'en', 1, 'https://ror.org/00h3t4h60 Ministerstvo zahraničnĆ­ch věcĆ­ ČeskĆ© republiky Ministry of Foreign Affairs'),
(45453, 'https://ror.org/00h446q73', 'no_lang_code', 1, 'https://ror.org/00h446q73 Hewlett-Packard (Australia)'),
(45454, 'https://ror.org/00h4cmb88', 'en', 1, 'https://ror.org/00h4cmb88 New Covenant International'),
(45455, 'https://ror.org/00h590f14', 'no_lang_code', 1, 'https://ror.org/00h590f14 NutriAg (Canada)'),
(45456, 'https://ror.org/00h69cf80', 'en', 1, 'https://ror.org/00h69cf80 Hyogo Institute for Traumatic Stress'),
(45457, 'https://ror.org/00h6s5242', 'no_lang_code', 1, 'https://ror.org/00h6s5242 Ineos (Switzerland)'),
(45458, 'https://ror.org/00h7ny872', 'en', 1, 'https://ror.org/00h7ny872 Rushford Public Library'),
(45459, 'https://ror.org/00h8b7583', 'en', 1, 'https://ror.org/00h8b7583 National Tsunami Warning Center'),
(45460, 'https://ror.org/00h90tt32', 'en', 1, 'https://ror.org/00h90tt32 Institut za mjeriteljstvo Bosne i Hercegovine Institute of Metrology of Bosnia and Herzegovina Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¼ŠµŃ‚Ń€Š¾Š»Š¾Š³ŠøŃ˜Ńƒ Босне Šø Єерцеговине'),
(45461, 'https://ror.org/00hcj0e04', 'no_lang_code', 1, 'https://ror.org/00hcj0e04 Johnson Controls (Switzerland)'),
(45462, 'https://ror.org/00hd52462', 'no_lang_code', 1, 'https://ror.org/00hd52462 Toshiba (Austria)'),
(45463, 'https://ror.org/00hezhh51', 'pt', 1, 'https://ror.org/00hezhh51 Fundacao Padre Leonel Franca'),
(45464, 'https://ror.org/00hf3db96', 'no_lang_code', 1, 'https://ror.org/00hf3db96 Aerospace Testing Alliance (United States)'),
(45465, 'https://ror.org/00hfbr881', 'no_lang_code', 1, 'https://ror.org/00hfbr881 Wildlife Computers (United States)'),
(45466, 'https://ror.org/00hfr5j60', 'en', 1, 'https://ror.org/00hfr5j60 Homarus'),
(45467, 'https://ror.org/00hg48986', 'en', 1, 'https://ror.org/00hg48986 Ibaraki Prefectural Mitsukaido First High School čŒØåŸŽēœŒē«‹å¤Ŗē”°ē¬¬äŗŒé«˜ē­‰å­¦ę ”'),
(45468, 'https://ror.org/00hg4dc82', 'no_lang_code', 1, 'https://ror.org/00hg4dc82 Emissol (United States)'),
(45469, 'https://ror.org/00hgd2m44', 'en', 1, 'https://ror.org/00hgd2m44 Chiba Prefectural Police åƒč‘‰ēœŒč­¦åÆŸ'),
(45470, 'https://ror.org/00hh8pd76', 'no_lang_code', 1, 'https://ror.org/00hh8pd76 Avaya (United Kingdom)'),
(45471, 'https://ror.org/00hht4y98', 'en', 1, 'https://ror.org/00hht4y98 Koyo Schools 向陽学園'),
(45472, 'https://ror.org/00hjm9t74', 'no_lang_code', 1, 'https://ror.org/00hjm9t74 Marvell (Bermuda)'),
(45473, 'https://ror.org/00hmj8r26', 'no_lang_code', 1, 'https://ror.org/00hmj8r26 Hamilton Utilities Corporation'),
(45474, 'https://ror.org/00hmyb194', 'no_lang_code', 1, 'https://ror.org/00hmyb194 Accenture (Ireland)'),
(45475, 'https://ror.org/00hn0nx84', 'en', 1, 'https://ror.org/00hn0nx84 Mie Prefectural Kobe High School äø‰é‡ēœŒē«‹ē„žęˆøé«˜ę ”'),
(45476, 'https://ror.org/00hpp0v51', 'no_lang_code', 1, 'https://ror.org/00hpp0v51 Vibra Finish (Canada)'),
(45477, 'https://ror.org/00hrhm488', 'en', 1, 'https://ror.org/00hrhm488 Practical Robotics Institute Austria'),
(45478, 'https://ror.org/00hrjdb92', 'en', 1, 'https://ror.org/00hrjdb92 Farallon Institute'),
(45479, 'https://ror.org/00hw70n10', 'en', 1, 'https://ror.org/00hw70n10 Korea International Trade Association ķ•œźµ­ė¬“ģ—­ķ˜‘ķšŒ'),
(45480, 'https://ror.org/00hxspe04', 'ca', 1, 'https://ror.org/00hxspe04 ClĆ­nica Girona'),
(45481, 'https://ror.org/00hz0qn68', 'no_lang_code', 1, 'https://ror.org/00hz0qn68 IsoTherapeutics Group (United States)'),
(45482, 'https://ror.org/00j04c011', 'nl', 1, 'https://ror.org/00j04c011 Aidsfonds'),
(45483, 'https://ror.org/00j09dc39', 'en', 1, 'https://ror.org/00j09dc39 Okinawa Prefectural Koroku High School ę²–ēø„ēœŒē«‹å°ē¦„é«˜ē­‰å­¦ę ”'),
(45484, 'https://ror.org/00j1faf79', 'es', 1, 'https://ror.org/00j1faf79 Universidad Cristiana de las Asambleas de Dios'),
(45485, 'https://ror.org/00j460570', 'no_lang_code', 1, 'https://ror.org/00j460570 Digimarc (United States)'),
(45486, 'https://ror.org/00j4x4e07', 'no_lang_code', 1, 'https://ror.org/00j4x4e07 Niigata Chuoh Junior College ę–°ę½Ÿäø­å¤®ēŸ­ęœŸå¤§å­¦'),
(45487, 'https://ror.org/00j5mnh72', 'en', 1, 'https://ror.org/00j5mnh72 Aichi Prefectural Toyohashi School for the Deaf ę„›ēŸ„ēœŒē«‹č±Šę©‹č¾å­¦ę ”'),
(45488, 'https://ror.org/00j8b8469', 'no_lang_code', 1, 'https://ror.org/00j8b8469 Spectrum Brands (United Kingdom)'),
(45489, 'https://ror.org/00j8cdz25', 'no_lang_code', 1, 'https://ror.org/00j8cdz25 Illinois Tool Works (Germany)'),
(45490, 'https://ror.org/00j9tzw69', 'cy', 1, 'https://ror.org/00j9tzw69 Large Vale Hospital Ysbyty Ystrad Fawr'),
(45491, 'https://ror.org/00j9w3k35', 'en', 1, 'https://ror.org/00j9w3k35 Cultural Relics Institute Hebei Province ę²³åŒ—ēœę–‡ē‰©ē ”ē©¶ę‰€'),
(45492, 'https://ror.org/00jb92367', 'no_lang_code', 1, 'https://ror.org/00jb92367 Foxconn (China) é“»ęµ·ē§‘ęŠ€é›†åœ˜'),
(45493, 'https://ror.org/00jcwff27', 'en', 1, 'https://ror.org/00jcwff27 Society for Experimental Biology'),
(45494, 'https://ror.org/00jd8yr11', 'no_lang_code', 1, 'https://ror.org/00jd8yr11 Pitney Bowes (United Kingdom)'),
(45495, 'https://ror.org/00je63m83', 'en', 1, 'https://ror.org/00je63m83 Regional Hospital of Scranton'),
(45496, 'https://ror.org/00jfs8131', 'no_lang_code', 1, 'https://ror.org/00jfs8131 Reliance Industries (United States)'),
(45497, 'https://ror.org/00jh11v62', 'en', 1, 'https://ror.org/00jh11v62 Okazaki Higashi High School ę„›ēŸ„ēœŒē«‹å²”å“Žę±é«˜ē­‰å­¦ę ”'),
(45498, 'https://ror.org/00jjgc591', 'no_lang_code', 1, 'https://ror.org/00jjgc591 Fujitsu Ten (Japan) åÆŒå£«é€šćƒ†ćƒ³ę Ŗå¼ä¼šē¤¾'),
(45499, 'https://ror.org/00jjq6q61', 'en', 1, 'https://ror.org/00jjq6q61 Rockefeller University Hospital'),
(45500, 'https://ror.org/00jkg1x62', 'en', 1, 'https://ror.org/00jkg1x62 Wakayama Prefecture Wakayama School for the Blind å’Œę­Œå±±ēœŒē«‹å’Œę­Œå±±ē›²å­¦ę ”'),
(45501, 'https://ror.org/00jkmqv24', 'en', 1, 'https://ror.org/00jkmqv24 Nagano Prefectural Board of Education é•·é‡ŽēœŒę•™č‚²å§”å“”ä¼š'),
(45502, 'https://ror.org/00jmjse55', 'en', 1, 'https://ror.org/00jmjse55 Black Alliance for Educational Options'),
(45503, 'https://ror.org/00jqtf796', 'en', 1, 'https://ror.org/00jqtf796 IEEE France section'),
(45504, 'https://ror.org/00jr1sd21', 'en', 1, 'https://ror.org/00jr1sd21 African Field Epidemiology Network'),
(45505, 'https://ror.org/00jrevc54', 'no_lang_code', 1, 'https://ror.org/00jrevc54 Dover (United Kingdom)'),
(45506, 'https://ror.org/00jtd6242', 'pt', 1, 'https://ror.org/00jtd6242 Empresa Mato-grossense de Pesquisa, Assistência e Extensão Rural'),
(45507, 'https://ror.org/00jvf9d33', 'en', 1, 'https://ror.org/00jvf9d33 Okinawa Red Cross Hospital ę²–ēø„čµ¤åå­—ē—…é™¢'),
(45508, 'https://ror.org/00jvm9038', 'en', 1, 'https://ror.org/00jvm9038 Tricoci University of Beauty Culture'),
(45509, 'https://ror.org/00jws7929', 'en', 1, 'https://ror.org/00jws7929 Department for Exiting the European Union'),
(45510, 'https://ror.org/00jyykt64', 'en', 1, 'https://ror.org/00jyykt64 Water Supply and Sanitation Technology Platform'),
(45511, 'https://ror.org/00jz33f47', 'no_lang_code', 1, 'https://ror.org/00jz33f47 Mimetas (Netherlands)'),
(45512, 'https://ror.org/00k01hv15', 'de', 1, 'https://ror.org/00k01hv15 Regionalverbund kirchlicher KrankenhƤuser'),
(45513, 'https://ror.org/00k02x334', 'en', 1, 'https://ror.org/00k02x334 Osaka Prefectural Agricultural High School å¤§é˜Ŗåŗœē«‹č¾²čŠøé«˜ē­‰å­¦ę ”'),
(45514, 'https://ror.org/00k427y50', 'en', 1, 'https://ror.org/00k427y50 Osaka Municipal College of Design å¤§é˜Ŗåø‚ē«‹ćƒ‡ć‚¶ć‚¤ćƒ³ę•™č‚²ē ”ē©¶ę‰€'),
(45515, 'https://ror.org/00k4nrj32', 'en', 1, 'https://ror.org/00k4nrj32 Essex County Hospital'),
(45516, 'https://ror.org/00k6bry75', 'es', 1, 'https://ror.org/00k6bry75 Instituto Tecnológico de Hermosillo'),
(45517, 'https://ror.org/00k6jf574', 'en', 1, 'https://ror.org/00k6jf574 Johar Health Maintenance Organization'),
(45518, 'https://ror.org/00k6n7177', 'en', 1, 'https://ror.org/00k6n7177 National Archives of Japan ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹å…¬ę–‡ę›øé¤Ø'),
(45519, 'https://ror.org/00k900h94', 'en', 1, 'https://ror.org/00k900h94 Queen Jadwiga Foundation'),
(45520, 'https://ror.org/00k9rsb32', 'en', 1, 'https://ror.org/00k9rsb32 Imakane Board of Education ä»Šé‡‘ē”ŗę•™č‚²å§”å“”ä¼š'),
(45521, 'https://ror.org/00kakgh93', 'en', 1, 'https://ror.org/00kakgh93 Institute of Microbiology and Biotechnology Institutul de Microbiologie si Biotehnologie'),
(45522, 'https://ror.org/00kbped59', 'es', 1, 'https://ror.org/00kbped59 Asociación Española para el Estudio del Hígado'),
(45523, 'https://ror.org/00kbwx014', 'en', 1, 'https://ror.org/00kbwx014 Blended Solutions'),
(45524, 'https://ror.org/00kddkz24', 'en', 1, 'https://ror.org/00kddkz24 Japan Place Name Research Center ę—„ęœ¬åœ°åē ”ē©¶ę‰€'),
(45525, 'https://ror.org/00kdez258', 'no_lang_code', 1, 'https://ror.org/00kdez258 Maxwell Technologies (United States)'),
(45526, 'https://ror.org/00ke0d331', 'en', 1, 'https://ror.org/00ke0d331 Marie Curie Palliative Care Institute Liverpool'),
(45527, 'https://ror.org/00ker7c87', 'no_lang_code', 1, 'https://ror.org/00ker7c87 TDK (Japan) TDKę Ŗå¼ä¼šē¤¾'),
(45528, 'https://ror.org/00kf09769', 'en', 1, 'https://ror.org/00kf09769 African Ministers'' Council on Water'),
(45529, 'https://ror.org/00kgqwj69', 'en', 1, 'https://ror.org/00kgqwj69 American University of Integrative Sciences'),
(45530, 'https://ror.org/00kh5vs10', 'en', 1, 'https://ror.org/00kh5vs10 Mie Prefectural School for the Blind äø‰é‡ēœŒē«‹ē›²å­¦ę ”'),
(45531, 'https://ror.org/00kheej15', 'no_lang_code', 1, 'https://ror.org/00kheej15 Tektronix (Switzerland)'),
(45532, 'https://ror.org/00kp77011', 'en', 1, 'https://ror.org/00kp77011 Desmond Tutu Peace Foundation'),
(45533, 'https://ror.org/00kqvg908', 'en', 1, 'https://ror.org/00kqvg908 Rowan Works Economic Development'),
(45534, 'https://ror.org/00ktxha38', 'en', 1, 'https://ror.org/00ktxha38 Anjo Chubu Elementary School å®‰åŸŽåø‚ē«‹å®‰åŸŽäø­éƒØå°å­¦ę ”'),
(45535, 'https://ror.org/00kv7my10', 'no_lang_code', 1, 'https://ror.org/00kv7my10 Smallmatek (Portugal)'),
(45536, 'https://ror.org/00kvz1558', 'no_lang_code', 1, 'https://ror.org/00kvz1558 Microchip Technology (United States)'),
(45537, 'https://ror.org/00m0wef21', 'en', 1, 'https://ror.org/00m0wef21 Woodlawn School'),
(45538, 'https://ror.org/00m1bnc32', 'en', 1, 'https://ror.org/00m1bnc32 Council for Christian Colleges and Universities'),
(45539, 'https://ror.org/00m5fcs37', 'en', 1, 'https://ror.org/00m5fcs37 Humane Slaughter Association'),
(45540, 'https://ror.org/00ma0s885', 'no_lang_code', 1, 'https://ror.org/00ma0s885 Teledyne Technologies (Australia)'),
(45541, 'https://ror.org/00mbfhq81', 'en', 1, 'https://ror.org/00mbfhq81 Newcastle University Singapore'),
(45542, 'https://ror.org/00mc41d88', 'en', 1, 'https://ror.org/00mc41d88 Shoreline Public Schools'),
(45543, 'https://ror.org/00mce9b34', 'en', 1, 'https://ror.org/00mce9b34 National Hospital Organization Kyushu Cancer Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ä¹å·žćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(45544, 'https://ror.org/00mcmme34', 'de', 1, 'https://ror.org/00mcmme34 Wirtschaftspsychologische Gesellschaft'),
(45545, 'https://ror.org/00medbt67', 'no_lang_code', 1, 'https://ror.org/00medbt67 Cloud Pharmaceuticals (United States)'),
(45546, 'https://ror.org/00mhg9s35', 'no_lang_code', 1, 'https://ror.org/00mhg9s35 Mitsubishi Gas Chemical (Japan) äø‰č±ć‚¬ć‚¹åŒ–å­¦'),
(45547, 'https://ror.org/00mhktq57', 'no_lang_code', 1, 'https://ror.org/00mhktq57 Lenovo (Singapore)'),
(45548, 'https://ror.org/00mj88198', 'en', 1, 'https://ror.org/00mj88198 Institute of Natural Resources, Ecology and Cryology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ прироГных Ń€ŠµŃŃƒŃ€ŃŠ¾Š², ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø криологии Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(45549, 'https://ror.org/00mke2t69', 'no_lang_code', 1, 'https://ror.org/00mke2t69 Zimmer Biomet (United Kingdom)'),
(45550, 'https://ror.org/00mmzyj40', 'en', 1, 'https://ror.org/00mmzyj40 National Institution For Youth Education å›½ē«‹é’å°‘å¹“ę•™č‚²ęŒÆčˆˆę©Ÿę§‹'),
(45551, 'https://ror.org/00mre2126', 'en', 1, 'https://ror.org/00mre2126 Toho University Ohashi Medical Center ę±é‚¦å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼å¤§ę©‹ē—…é™¢'),
(45552, 'https://ror.org/00ms9d710', 'no_lang_code', 1, 'https://ror.org/00ms9d710 Soliton Ocean Services (United States)'),
(45553, 'https://ror.org/00msak069', 'en', 1, 'https://ror.org/00msak069 Access to Medicine Index'),
(45554, 'https://ror.org/00mv8h305', 'en', 1, 'https://ror.org/00mv8h305 Christian Doppler Forschungsgesellschaft Christian Doppler Research Association'),
(45555, 'https://ror.org/00mvbdj52', 'no_lang_code', 1, 'https://ror.org/00mvbdj52 Universal Entertainment (Japan) ćƒ¦ćƒ‹ćƒćƒ¼ć‚µćƒ«ć‚Øćƒ³ć‚æćƒ¼ćƒ†ć‚¤ćƒ³ćƒ”ćƒ³ćƒˆ'),
(45556, 'https://ror.org/00mvrwh98', 'no_lang_code', 1, 'https://ror.org/00mvrwh98 Universal Engraving (United States)'),
(45557, 'https://ror.org/00mwp7g70', 'no_lang_code', 1, 'https://ror.org/00mwp7g70 Soft99 (Japan) ć‚½ćƒ•ćƒˆ99ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(45558, 'https://ror.org/00n0yrk65', 'no_lang_code', 1, 'https://ror.org/00n0yrk65 WHYY (United States)'),
(45559, 'https://ror.org/00n1w2a60', 'no_lang_code', 1, 'https://ror.org/00n1w2a60 Novocor Medical Systems (United States)'),
(45560, 'https://ror.org/00n3fv874', 'no_lang_code', 1, 'https://ror.org/00n3fv874 Unilever (United States)'),
(45561, 'https://ror.org/00n55wf36', 'en', 1, 'https://ror.org/00n55wf36 University of Iranians دانؓگاه Ų¬Ų§Ł…Ų¹ ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ Ų§ŪŒŲ±Ų§Ł†ŪŒŲ§Ł†'),
(45562, 'https://ror.org/00n7t8t84', 'en', 1, 'https://ror.org/00n7t8t84 Orio Aishin Junior College ęŠ˜å°¾ę„›ēœŸēŸ­ęœŸå¤§å­¦'),
(45563, 'https://ror.org/00n80r273', 'en', 1, 'https://ror.org/00n80r273 Congressional Black Caucus Foundation'),
(45564, 'https://ror.org/00nafdb41', 'no_lang_code', 1, 'https://ror.org/00nafdb41 Callaway Golf (United States)'),
(45565, 'https://ror.org/00nc8dt74', 'no_lang_code', 1, 'https://ror.org/00nc8dt74 ElringKlinger (Germany)'),
(45566, 'https://ror.org/00nekn329', 'en', 1, 'https://ror.org/00nekn329 Higher Institute of Advanced Studies'),
(45567, 'https://ror.org/00nfn7821', 'en', 1, 'https://ror.org/00nfn7821 Botho University'),
(45568, 'https://ror.org/00nfw5c37', 'it', 1, 'https://ror.org/00nfw5c37 Istituto Ramazzini'),
(45569, 'https://ror.org/00nj92d70', 'en', 1, 'https://ror.org/00nj92d70 Aaron Marcus and Associates'),
(45570, 'https://ror.org/00nk4ab75', 'no_lang_code', 1, 'https://ror.org/00nk4ab75 Mfantsiman Girls Secondary School'),
(45571, 'https://ror.org/00nm1ws09', 'de', 1, 'https://ror.org/00nm1ws09 Institut für Nachhaltiges Management'),
(45572, 'https://ror.org/00nnq2331', 'en', 1, 'https://ror.org/00nnq2331 Ministry of Agriculture and Natural Resource'),
(45573, 'https://ror.org/00nxtmb68', 'de', 1, 'https://ror.org/00nxtmb68 Universalmuseum Joanneum'),
(45574, 'https://ror.org/00nyy7p10', 'en', 1, 'https://ror.org/00nyy7p10 Deepam Educational Society for Health'),
(45575, 'https://ror.org/00nz8kv36', 'en', 1, 'https://ror.org/00nz8kv36 Black Archives of Mid-America'),
(45576, 'https://ror.org/00p1mfz27', 'no_lang_code', 1, 'https://ror.org/00p1mfz27 AV&R (Canada)'),
(45577, 'https://ror.org/00p3e1n56', 'no_lang_code', 1, 'https://ror.org/00p3e1n56 Tenneco (Belgium)'),
(45578, 'https://ror.org/00p3nks92', 'en', 1, 'https://ror.org/00p3nks92 American Indian Institute'),
(45579, 'https://ror.org/00p8r6x45', 'en', 1, 'https://ror.org/00p8r6x45 Centre for Arctic Gas Hydrate, Environment and Climate Senter for arktisk gasshydrat, miljĆø og klima'),
(45580, 'https://ror.org/00p8ta394', 'en', 1, 'https://ror.org/00p8ta394 International AIDS Society'),
(45581, 'https://ror.org/00p954r86', 'en', 1, 'https://ror.org/00p954r86 Universite Laique Adventiste de Kigali University of Lay Adventists of Kigali'),
(45582, 'https://ror.org/00p9kb710', 'no_lang_code', 1, 'https://ror.org/00p9kb710 Thorlabs (Germany)'),
(45583, 'https://ror.org/00pbd7j83', 'en', 1, 'https://ror.org/00pbd7j83 Osaka Museum of Natural History å¤§é˜Ŗåø‚ē«‹č‡Ŗē„¶å²åšē‰©é¤Ø'),
(45584, 'https://ror.org/00pccrq10', 'no_lang_code', 1, 'https://ror.org/00pccrq10 Marbes Consulting'),
(45585, 'https://ror.org/00pgdk225', 'de', 1, 'https://ror.org/00pgdk225 Deutsche PalliativStiftung'),
(45586, 'https://ror.org/00phmvd84', 'en', 1, 'https://ror.org/00phmvd84 Matsuyama Gakuen Matsuyama welfare College ę¾å±±å­¦åœ’ę¾å±±ē¦ē„‰å°‚é–€å­¦ę ”'),
(45587, 'https://ror.org/00pj60478', 'en', 1, 'https://ror.org/00pj60478 Duraspace'),
(45588, 'https://ror.org/00pj6vp51', 'en', 1, 'https://ror.org/00pj6vp51 Australian Society for Biochemistry and Molecular Biology'),
(45589, 'https://ror.org/00pjmpv91', 'es', 1, 'https://ror.org/00pjmpv91 Pro Cosara'),
(45590, 'https://ror.org/00pjwdc92', 'en', 1, 'https://ror.org/00pjwdc92 National Institute of Technology, Ube College å®‡éƒØå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(45591, 'https://ror.org/00pn5a327', 'no_lang_code', 1, 'https://ror.org/00pn5a327 Rambus (United States)'),
(45592, 'https://ror.org/00pn5nj90', 'en', 1, 'https://ror.org/00pn5nj90 Ventura College'),
(45593, 'https://ror.org/00pnxra12', 'en', 1, 'https://ror.org/00pnxra12 Parents’ Action for Children'),
(45594, 'https://ror.org/00prymb05', 'pt', 1, 'https://ror.org/00prymb05 Centrus Diagnósticos por Imagem'),
(45595, 'https://ror.org/00pscny09', 'no_lang_code', 1, 'https://ror.org/00pscny09 Nintendo (Japan) ä»»å¤©å ‚ę Ŗå¼ä¼šē¤¾'),
(45596, 'https://ror.org/00pvmsx89', 'no_lang_code', 1, 'https://ror.org/00pvmsx89 Intrinsik (Canada)'),
(45597, 'https://ror.org/00pvn1h36', 'no_lang_code', 1, 'https://ror.org/00pvn1h36 Eli Lilly (Ireland)'),
(45598, 'https://ror.org/00pyv1r78', 'en', 1, 'https://ror.org/00pyv1r78 Institute of Disaster Prevention é˜²ē¾ē§‘ęŠ€å­¦é™¢'),
(45599, 'https://ror.org/00pzmcd49', 'en', 1, 'https://ror.org/00pzmcd49 Missouri Assistive Technology'),
(45600, 'https://ror.org/00q06r288', 'no_lang_code', 1, 'https://ror.org/00q06r288 Privacy Analytics (Canada)'),
(45601, 'https://ror.org/00q0v3357', 'en', 1, 'https://ror.org/00q0v3357 Quzhou College of Technology'),
(45602, 'https://ror.org/00q15w993', 'en', 1, 'https://ror.org/00q15w993 Bircham International University'),
(45603, 'https://ror.org/00q6pdr71', 'no_lang_code', 1, 'https://ror.org/00q6pdr71 Fukuoka Art Museum ē¦å²”åø‚ē¾Žč”“é¤Ø'),
(45604, 'https://ror.org/00qa0qd14', 'no_lang_code', 1, 'https://ror.org/00qa0qd14 Advanced Radiation Therapy (United States)'),
(45605, 'https://ror.org/00qabvy28', 'no_lang_code', 1, 'https://ror.org/00qabvy28 Visteon (United States)'),
(45606, 'https://ror.org/00qehty47', 'no_lang_code', 1, 'https://ror.org/00qehty47 Prime Solutions Group (United States)'),
(45607, 'https://ror.org/00qfejz91', 'no_lang_code', 1, 'https://ror.org/00qfejz91 3D Biomatrix (United States)'),
(45608, 'https://ror.org/00qm7ky44', 'no_lang_code', 1, 'https://ror.org/00qm7ky44 Global Power Technologies Group (United States)'),
(45609, 'https://ror.org/00qnxgg65', 'no_lang_code', 1, 'https://ror.org/00qnxgg65 Fukuyama City Zoo ē¦å±±åø‚ē«‹å‹•ē‰©åœ’'),
(45610, 'https://ror.org/00qpbjw91', 'no_lang_code', 1, 'https://ror.org/00qpbjw91 Fujikura (United States)'),
(45611, 'https://ror.org/00qpgkq73', 'no_lang_code', 1, 'https://ror.org/00qpgkq73 Everist Health (United States)'),
(45612, 'https://ror.org/00qrfm413', 'en', 1, 'https://ror.org/00qrfm413 Institute for Expressive Analysis'),
(45613, 'https://ror.org/00qtbt108', 'no_lang_code', 1, 'https://ror.org/00qtbt108 Stanley Black & Decker (Switzerland)'),
(45614, 'https://ror.org/00qtt4469', 'en', 1, 'https://ror.org/00qtt4469 Fukushima Prefectural Board of Education ē¦å³¶ēœŒę•™č‚²å§”å“”ä¼šć®ćƒ›ćƒ¼'),
(45615, 'https://ror.org/00qtxwz11', 'en', 1, 'https://ror.org/00qtxwz11 Aichi Prefectural Police ę„›ēŸ„ēœŒč­¦åÆŸ'),
(45616, 'https://ror.org/00qvkvn65', 'en', 1, 'https://ror.org/00qvkvn65 Wikimedia Philippines'),
(45617, 'https://ror.org/00qwbag55', 'en', 1, 'https://ror.org/00qwbag55 Gwinnett County Public Library'),
(45618, 'https://ror.org/00qxrgg46', 'no_lang_code', 1, 'https://ror.org/00qxrgg46 Deutsche Telekom (United Kingdom)'),
(45619, 'https://ror.org/00qyaft09', 'en', 1, 'https://ror.org/00qyaft09 Healthcare Infection Society'),
(45620, 'https://ror.org/00r17pp94', 'en', 1, 'https://ror.org/00r17pp94 Physiology Educational Research Consortium'),
(45621, 'https://ror.org/00r1d6p76', 'no_lang_code', 1, 'https://ror.org/00r1d6p76 Physcient (United States)'),
(45622, 'https://ror.org/00r1wdc11', 'en', 1, 'https://ror.org/00r1wdc11 Fraunhofer Institute for Experimental Software Engineering Fraunhofer-Institut für Experimentelles Software Engineering'),
(45623, 'https://ror.org/00r4cx198', 'en', 1, 'https://ror.org/00r4cx198 National Center for Public Policy and Higher Education'),
(45624, 'https://ror.org/00r4ss513', 'en', 1, 'https://ror.org/00r4ss513 NCEast Alliance'),
(45625, 'https://ror.org/00r6j0178', 'no_lang_code', 1, 'https://ror.org/00r6j0178 SilaGene (United States)'),
(45626, 'https://ror.org/00r6wds48', 'en', 1, 'https://ror.org/00r6wds48 Nagasaki Museum of History and Culture é•·å“Žę­“å²ę–‡åŒ–åšē‰©é¤Ø'),
(45627, 'https://ror.org/00r76tg20', 'no_lang_code', 1, 'https://ror.org/00r76tg20 Osaka Christian College å¤§é˜Ŗć‚­ćƒŖć‚¹ćƒˆę•™ēŸ­ęœŸå¤§å­¦'),
(45628, 'https://ror.org/00r8m9k11', 'no_lang_code', 1, 'https://ror.org/00r8m9k11 Avnet (United States)'),
(45629, 'https://ror.org/00r97xx27', 'en', 1, 'https://ror.org/00r97xx27 Seattle Colleges'),
(45630, 'https://ror.org/00rar1v21', 'en', 1, 'https://ror.org/00rar1v21 Midcoast Regional Redevelopment Authority'),
(45631, 'https://ror.org/00reyx053', 'no_lang_code', 1, 'https://ror.org/00reyx053 Smith & Nephew (United States)'),
(45632, 'https://ror.org/00rjqd126', 'en', 1, 'https://ror.org/00rjqd126 Mie Prefectural Education Center äø‰é‡ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(45633, 'https://ror.org/00rkxnb56', 'en', 1, 'https://ror.org/00rkxnb56 Building Engineering and Science Talent'),
(45634, 'https://ror.org/00rm4jt38', 'no_lang_code', 1, 'https://ror.org/00rm4jt38 Clinacuity (United States)'),
(45635, 'https://ror.org/00rm8v059', 'en', 1, 'https://ror.org/00rm8v059 Society for Technical Communication'),
(45636, 'https://ror.org/00rmkq989', 'en', 1, 'https://ror.org/00rmkq989 American School for the Deaf'),
(45637, 'https://ror.org/00rnnfh78', 'en', 1, 'https://ror.org/00rnnfh78 Ocean Exploration Trust'),
(45638, 'https://ror.org/00rracm70', 'no_lang_code', 1, 'https://ror.org/00rracm70 BioKier (United States)'),
(45639, 'https://ror.org/00rs5qv51', 'en', 1, 'https://ror.org/00rs5qv51 Institut de Recherche des Nations Unies pour le DƩveloppement Social United Nations Research Institute for Social Development'),
(45640, 'https://ror.org/00rvgp591', 'no_lang_code', 1, 'https://ror.org/00rvgp591 Open Text (United Kingdom)'),
(45641, 'https://ror.org/00rvyvv90', 'en', 1, 'https://ror.org/00rvyvv90 Zhejiang Party School ęµ™ę±Ÿēœå§”å…šę ”'),
(45642, 'https://ror.org/00rwqqw10', 'en', 1, 'https://ror.org/00rwqqw10 Leping Social Entrepreneur Foundation åŒ—äŗ¬ä¹å¹³å…¬ē›ŠåŸŗé‡‘ä¼š'),
(45643, 'https://ror.org/00rxj0v78', 'en', 1, 'https://ror.org/00rxj0v78 Institute of Brain and Blood Vessels å…¬ē›Šč²”å›£ę³•äŗŗ 脳蔀箔研究所'),
(45644, 'https://ror.org/00ryrev47', 'en', 1, 'https://ror.org/00ryrev47 Advanced Science, Technology & Management Research Institute of Kyoto äŗ¬éƒ½é«˜åŗ¦ęŠ€č”“ē ”ē©¶ę‰€'),
(45645, 'https://ror.org/00rys1n84', 'en', 1, 'https://ror.org/00rys1n84 Lemon Grove School District'),
(45646, 'https://ror.org/00rz19f75', 'en', 1, 'https://ror.org/00rz19f75 Sakura no Seibo Junior College ę”œć®č–ęÆēŸ­ęœŸå¤§å­¦'),
(45647, 'https://ror.org/00rzpns50', 'no_lang_code', 1, 'https://ror.org/00rzpns50 Hyundai Steel (South Korea) ķ˜„ėŒ€ģ œģ² '),
(45648, 'https://ror.org/00rzr9371', 'es', 1, 'https://ror.org/00rzr9371 Asociación Universitaria Iberoamericana de Postgrado'),
(45649, 'https://ror.org/00s18qt97', 'en', 1, 'https://ror.org/00s18qt97 Killeen Independent School District'),
(45650, 'https://ror.org/00s2n7q75', 'en', 1, 'https://ror.org/00s2n7q75 Office de l''elevage et des pâturages Office of Livestock and Pasture'),
(45651, 'https://ror.org/00s301684', 'en', 1, 'https://ror.org/00s301684 Nakakyusyu Junior College äø­ä¹å·žēŸ­ęœŸå¤§å­¦'),
(45652, 'https://ror.org/00s34pf12', 'en', 1, 'https://ror.org/00s34pf12 Okinawa Prefecture Ohira Special School School ę²–ēø„ēœŒē«‹å¤§å¹³ē‰¹åˆ„ę”Æę“å­¦ę ”'),
(45653, 'https://ror.org/00s4ph488', 'no_lang_code', 1, 'https://ror.org/00s4ph488 Integrated Sensors (United States)'),
(45654, 'https://ror.org/00s5yp124', 'en', 1, 'https://ror.org/00s5yp124 Fraunhofer Institute for Integrated Circuits IIS, Division Engineering of Adaptive Systems EAS Fraunhofer-Institut für Integrierte Schaltungen IIS, Institutsteil Entwicklung Adaptiver Systeme EAS'),
(45655, 'https://ror.org/00s72ct24', 'en', 1, 'https://ror.org/00s72ct24 Ichikawa Junior and Senior High School åø‚å·äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(45656, 'https://ror.org/00s9pac36', 'en', 1, 'https://ror.org/00s9pac36 May Institute'),
(45657, 'https://ror.org/00saqbg14', 'de', 1, 'https://ror.org/00saqbg14 Kunstmuseum Basel'),
(45658, 'https://ror.org/00saznr62', 'en', 1, 'https://ror.org/00saznr62 Kumamoto Prefectural Museum of Art ē†Šęœ¬ēœŒē«‹ē¾Žč”“é¤Ø'),
(45659, 'https://ror.org/00sb1nr29', 'en', 1, 'https://ror.org/00sb1nr29 Islamic Azad University North Tehran Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ, واحد تهران Ų“Ł…Ų§Ł„ā€Žā€Ž'),
(45660, 'https://ror.org/00sbe8213', 'en', 1, 'https://ror.org/00sbe8213 National Hospital Organization Hokkaido Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē—…é™¢ę©Ÿę§‹ åŒ—ęµ·é“åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(45661, 'https://ror.org/00sc3fz23', 'en', 1, 'https://ror.org/00sc3fz23 Tokushima Prefectural General Education Center å¾³å³¶ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(45662, 'https://ror.org/00se3rd97', 'en', 1, 'https://ror.org/00se3rd97 Yingkou Institute of Technology č„å£ē†å·„å­¦é™¢'),
(45663, 'https://ror.org/00sja8c39', 'no_lang_code', 1, 'https://ror.org/00sja8c39 Apeak (United States)'),
(45664, 'https://ror.org/00sjbw709', 'no_lang_code', 1, 'https://ror.org/00sjbw709 CNH Industrial (Germany)'),
(45665, 'https://ror.org/00sqyzq66', 'no_lang_code', 1, 'https://ror.org/00sqyzq66 NĒRx BioSciences (United States)'),
(45666, 'https://ror.org/00srr1743', 'sv', 1, 'https://ror.org/00srr1743 Stiftelsen Bergteknisk Forskning'),
(45667, 'https://ror.org/00srtbf93', 'en', 1, 'https://ror.org/00srtbf93 Kurume University Medical Center ä¹…ē•™ē±³å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(45668, 'https://ror.org/00srxhm83', 'no_lang_code', 1, 'https://ror.org/00srxhm83 Zodiac Aerospace (United Kingdom)'),
(45669, 'https://ror.org/00ss2b006', 'no_lang_code', 1, 'https://ror.org/00ss2b006 ClariTrac (United States)'),
(45670, 'https://ror.org/00ssg0g07', 'en', 1, 'https://ror.org/00ssg0g07 Kawagoe Technical High School åŸ¼ēŽ‰ēœŒē«‹å·č¶Šå·„ę„­é«˜ē­‰å­¦ę ”'),
(45671, 'https://ror.org/00ssh1q19', 'no_lang_code', 1, 'https://ror.org/00ssh1q19 Reden (Netherlands)'),
(45672, 'https://ror.org/00st9jg49', 'en', 1, 'https://ror.org/00st9jg49 Cross Plains Public Library'),
(45673, 'https://ror.org/00swrq011', 'pt', 1, 'https://ror.org/00swrq011 Instituto de Pesquisas Ecológicas'),
(45674, 'https://ror.org/00sywr539', 'en', 1, 'https://ror.org/00sywr539 Okinawa Prefectural Yaeyama Hospital ę²–ēø„ēœŒē«‹å…«é‡å±±ē—…é™¢'),
(45675, 'https://ror.org/00syxh370', 'en', 1, 'https://ror.org/00syxh370 American Welding Society'),
(45676, 'https://ror.org/00szjvn19', 'en', 1, 'https://ror.org/00szjvn19 Poultry Research Institute äø­å›½å†œäøšē§‘å­¦é™¢å®¶ē¦½ē ”ē©¶ę‰€'),
(45677, 'https://ror.org/00t01zk24', 'en', 1, 'https://ror.org/00t01zk24 Meiwa High School ę„›ēŸ„ēœŒē«‹ę˜Žå’Œé«˜ē­‰å­¦ę ”'),
(45678, 'https://ror.org/00t04tg27', 'en', 1, 'https://ror.org/00t04tg27 Executive Development Institute'),
(45679, 'https://ror.org/00t4jm248', 'hi', 1, 'https://ror.org/00t4jm248 Bharatiya Vidya Bhavan'),
(45680, 'https://ror.org/00t4wwd52', 'en', 1, 'https://ror.org/00t4wwd52 NorthEast Washington Educational Service District'),
(45681, 'https://ror.org/00t6rqp97', 'en', 1, 'https://ror.org/00t6rqp97 Wildlife Conservation Society Democratic Republic of the Congo'),
(45682, 'https://ror.org/00t6xza10', 'en', 1, 'https://ror.org/00t6xza10 Archiv Federal Svizzer Archives FƩdƩrales Suisses Archivio Federale Svizzero Schweizerischen Bundesarchiv Swiss Federal Archives'),
(45683, 'https://ror.org/00t7s3z39', 'en', 1, 'https://ror.org/00t7s3z39 Chea Sim University of Kamchaymear'),
(45684, 'https://ror.org/00ta0g865', 'en', 1, 'https://ror.org/00ta0g865 Institute for Development and Research in Banking Technology'),
(45685, 'https://ror.org/00ta62x83', 'no_lang_code', 1, 'https://ror.org/00ta62x83 Japan Aviation Electronics Industry (Taiwan)'),
(45686, 'https://ror.org/00tbf0607', 'en', 1, 'https://ror.org/00tbf0607 Lions Clubs International'),
(45687, 'https://ror.org/00tee0349', 'no_lang_code', 1, 'https://ror.org/00tee0349 Kodak (Japan)'),
(45688, 'https://ror.org/00teeat87', 'pt', 1, 'https://ror.org/00teeat87 Hospital de Magalhães Lemos'),
(45689, 'https://ror.org/00tg8vj44', 'en', 1, 'https://ror.org/00tg8vj44 KnowledgeWorks'),
(45690, 'https://ror.org/00th7y414', 'en', 1, 'https://ror.org/00th7y414 Tokushima Prefectural Museum å¾³å³¶ēœŒē«‹åšē‰©é¤Ø'),
(45691, 'https://ror.org/00thhss72', 'en', 1, 'https://ror.org/00thhss72 Botanic Gardens and Parks Authority'),
(45692, 'https://ror.org/00tmt0k30', 'en', 1, 'https://ror.org/00tmt0k30 West Virginia Northern Community College'),
(45693, 'https://ror.org/00tnfjj44', 'pt', 1, 'https://ror.org/00tnfjj44 Universidade Politecnica'),
(45694, 'https://ror.org/00tqkj625', 'en', 1, 'https://ror.org/00tqkj625 Miyagi Prefecture Shibata Agriculture and Forestry High School å®®åŸŽēœŒęŸ“ē”°č¾²ęž—é«˜ē­‰å­¦ę ”'),
(45695, 'https://ror.org/00tqpxw66', 'en', 1, 'https://ror.org/00tqpxw66 Bon Secours DePaul Medical Center'),
(45696, 'https://ror.org/00tsc8d72', 'en', 1, 'https://ror.org/00tsc8d72 Akita Nutrition Junior College ē§‹ē”°ę „é¤ŠēŸ­ęœŸå¤§å­¦'),
(45697, 'https://ror.org/00ttq5z33', 'en', 1, 'https://ror.org/00ttq5z33 Toyama Industrial Technology Center åÆŒå±±ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(45698, 'https://ror.org/00v2ys705', 'en', 1, 'https://ror.org/00v2ys705 Hyogo Prefectural Institute of Technology å…µåŗ«ēœŒē«‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(45699, 'https://ror.org/00v53am25', 'en', 1, 'https://ror.org/00v53am25 Tokyo Metropolitan Bunkyo High School ę±äŗ¬éƒ½ē«‹ę–‡äŗ¬é«˜ē­‰å­¦ę ”'),
(45700, 'https://ror.org/00v57z525', 'en', 1, 'https://ror.org/00v57z525 Bangladesh Livestock Research Institute'),
(45701, 'https://ror.org/00v6yka12', 'en', 1, 'https://ror.org/00v6yka12 Admiral Theatre'),
(45702, 'https://ror.org/00v71jq68', 'en', 1, 'https://ror.org/00v71jq68 Centre for Innovation in Regulatory Science'),
(45703, 'https://ror.org/00va3ak07', 'en', 1, 'https://ror.org/00va3ak07 HealthRock'),
(45704, 'https://ror.org/00vbd4626', 'en', 1, 'https://ror.org/00vbd4626 Health Systems Global'),
(45705, 'https://ror.org/00vdgr656', 'no_lang_code', 1, 'https://ror.org/00vdgr656 QRxPharma (Australia)'),
(45706, 'https://ror.org/00vdy5891', 'no_lang_code', 1, 'https://ror.org/00vdy5891 Meritor (Brazil)'),
(45707, 'https://ror.org/00vexz648', 'no_lang_code', 1, 'https://ror.org/00vexz648 Mahindra Forgings (Germany)'),
(45708, 'https://ror.org/00vfjs247', 'es', 1, 'https://ror.org/00vfjs247 Universidad Nueva San Salvador'),
(45709, 'https://ror.org/00vfz8743', 'no_lang_code', 1, 'https://ror.org/00vfz8743 Honeywell (Germany)'),
(45710, 'https://ror.org/00vg5ax74', 'no_lang_code', 1, 'https://ror.org/00vg5ax74 TECE (Germany)'),
(45711, 'https://ror.org/00vgcn396', 'no_lang_code', 1, 'https://ror.org/00vgcn396 Quorn (United Kingdom)'),
(45712, 'https://ror.org/00vgf5h37', 'en', 1, 'https://ror.org/00vgf5h37 Miwa Internal Medicine Clinic ćæć‚å†…ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(45713, 'https://ror.org/00vja3713', 'fr', 1, 'https://ror.org/00vja3713 Lebanese-French University of Technology and Applied Sciences UniversitĆ© de Technologie et de Sciences AppliquĆ©es Libano-FranƧaise Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„ŁŲ±Ł†Ų³ŁŠŲ©'),
(45714, 'https://ror.org/00vjp0q55', 'no_lang_code', 1, 'https://ror.org/00vjp0q55 OptiFuel Technology (United States)'),
(45715, 'https://ror.org/00vjsmz50', 'en', 1, 'https://ror.org/00vjsmz50 Smith Family'),
(45716, 'https://ror.org/00vjxjf30', 'en', 1, 'https://ror.org/00vjxjf30 Kurume University Hospital 久留米大学病院'),
(45717, 'https://ror.org/00vkafj46', 'no_lang_code', 1, 'https://ror.org/00vkafj46 Dŵr Cymru Welsh Water (United Kingdom)'),
(45718, 'https://ror.org/00vn8ss79', 'no_lang_code', 1, 'https://ror.org/00vn8ss79 Universal Photonics (United States)'),
(45719, 'https://ror.org/00vpqt786', 'no_lang_code', 1, 'https://ror.org/00vpqt786 Dyverga Energy (Canada)'),
(45720, 'https://ror.org/00vs9ma76', 'no_lang_code', 1, 'https://ror.org/00vs9ma76 Raven Telemetry (Canada)'),
(45721, 'https://ror.org/00vse3055', 'no_lang_code', 1, 'https://ror.org/00vse3055 NHK Spring (Japan) ę—„ęœ¬ē™ŗę”ę Ŗå¼ä¼šē¤¾'),
(45722, 'https://ror.org/00vxbe865', 'en', 1, 'https://ror.org/00vxbe865 Northern Maine Community College'),
(45723, 'https://ror.org/00vy7ed73', 'en', 1, 'https://ror.org/00vy7ed73 Turku Centre for Computer Science Turun tietotekniikan tutkimus- ja koulutuskeskus ƅbo datatekniska forsknings- och utbildningscentrum'),
(45724, 'https://ror.org/00w0c8s08', 'en', 1, 'https://ror.org/00w0c8s08 National Library of Namibia'),
(45725, 'https://ror.org/00w2erz81', 'en', 1, 'https://ror.org/00w2erz81 Kyoto Architecture University äŗ¬éƒ½å»ŗēÆ‰å¤§å­¦ę ”'),
(45726, 'https://ror.org/00w2tje25', 'en', 1, 'https://ror.org/00w2tje25 Mission Australia'),
(45727, 'https://ror.org/00w32k615', 'no_lang_code', 1, 'https://ror.org/00w32k615 SunEdison (United States)'),
(45728, 'https://ror.org/00w3p6078', 'no_lang_code', 1, 'https://ror.org/00w3p6078 BlueGreen Geophysics (United States)'),
(45729, 'https://ror.org/00w56r274', 'en', 1, 'https://ror.org/00w56r274 IPAG Business School Institut de PrƩparation Ơ l''Administration et Ơ la Gestion'),
(45730, 'https://ror.org/00w5rdf18', 'en', 1, 'https://ror.org/00w5rdf18 Society for the Promotion of Roman Studies');
INSERT INTO `rors` VALUES
(45731, 'https://ror.org/00w7z4k38', 'no_lang_code', 1, 'https://ror.org/00w7z4k38 Vivonoetics (United States)'),
(45732, 'https://ror.org/00w83n434', 'en', 1, 'https://ror.org/00w83n434 Kanagawa Prefectural Odawara Johoku Technical High School ē„žå„ˆå·ēœŒē«‹å°ē”°åŽŸåŸŽåŒ—å·„ę„­é«˜ē­‰å­¦ę ”'),
(45733, 'https://ror.org/00w8byr45', 'no_lang_code', 1, 'https://ror.org/00w8byr45 Integrated Oncology (United States)'),
(45734, 'https://ror.org/00w8f3q52', 'no_lang_code', 1, 'https://ror.org/00w8f3q52 Vitec (Germany)'),
(45735, 'https://ror.org/00w91z143', 'no_lang_code', 1, 'https://ror.org/00w91z143 JTEKT (Japan) ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ†ć‚Æćƒˆ'),
(45736, 'https://ror.org/00wawdr98', 'en', 1, 'https://ror.org/00wawdr98 Kenya Agricultural and Livestock Research Organization'),
(45737, 'https://ror.org/00wdfeq42', 'en', 1, 'https://ror.org/00wdfeq42 National Engineering Research Center for Compounding and Modification of Polymer Materials å›½å®¶å¤åˆę”¹ę€§čšåˆē‰©ęę–™å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(45738, 'https://ror.org/00wef3c21', 'en', 1, 'https://ror.org/00wef3c21 Fort Monroe Authority'),
(45739, 'https://ror.org/00wf3sn74', 'en', 1, 'https://ror.org/00wf3sn74 Bundesamt für Verbraucherschutz und Lebensmittelsicherheit Federal Office of Consumer Protection and Food Safety'),
(45740, 'https://ror.org/00wgk5w17', 'en', 1, 'https://ror.org/00wgk5w17 Changzhou Science and Technology Bureau åøøå·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(45741, 'https://ror.org/00wgz8973', 'en', 1, 'https://ror.org/00wgz8973 Asahikawa, Hokkaido Nishi High School åŒ—ęµ·é“ę—­å·č„æé«˜ē­‰å­¦ę ”'),
(45742, 'https://ror.org/00wj3fx08', 'en', 1, 'https://ror.org/00wj3fx08 Disability Rights New Jersey'),
(45743, 'https://ror.org/00wj49d82', 'en', 1, 'https://ror.org/00wj49d82 Centre for Remote Sensing and Geographic Information Services'),
(45744, 'https://ror.org/00wj54d12', 'en', 1, 'https://ror.org/00wj54d12 Funabashi Keimei High School åƒč‘‰ēœŒē«‹čˆ¹ę©‹å•“ę˜Žé«˜ē­‰å­¦ę ”'),
(45745, 'https://ror.org/00wjam130', 'no_lang_code', 1, 'https://ror.org/00wjam130 Sequans Communications (United Kingdom)'),
(45746, 'https://ror.org/00wmxv853', 'no_lang_code', 1, 'https://ror.org/00wmxv853 Hokuriku Gakuin University åŒ—é™øå­¦é™¢å¤§å­¦'),
(45747, 'https://ror.org/00wnbwz45', 'no_lang_code', 1, 'https://ror.org/00wnbwz45 Fukushima Technology Centre (Japan) ē¦å³¶ēœŒćƒć‚¤ćƒ†ć‚Æćƒ—ćƒ©ć‚¶'),
(45748, 'https://ror.org/00wpxjs04', 'en', 1, 'https://ror.org/00wpxjs04 Santa Clara City Library'),
(45749, 'https://ror.org/00wqcf653', 'en', 1, 'https://ror.org/00wqcf653 Kurashiki Archaeological Museum'),
(45750, 'https://ror.org/00wvqmj08', 'no_lang_code', 1, 'https://ror.org/00wvqmj08 QT Ultrasound (United States)'),
(45751, 'https://ror.org/00ww6xe24', 'no_lang_code', 1, 'https://ror.org/00ww6xe24 Mersen (United States)'),
(45752, 'https://ror.org/00wwj8r66', 'en', 1, 'https://ror.org/00wwj8r66 Yamato University 大和大学'),
(45753, 'https://ror.org/00wws3648', 'en', 1, 'https://ror.org/00wws3648 International Culture University'),
(45754, 'https://ror.org/00wxsmn74', 'en', 1, 'https://ror.org/00wxsmn74 Canadian Library Association'),
(45755, 'https://ror.org/00wy6bt78', 'en', 1, 'https://ror.org/00wy6bt78 LETO Maternity Hospital ΛΗΤΩ ĪœĪ±Ī¹ĪµĻ…Ļ„Ī¹ĪŗĻŒ, Ī“Ļ…Ī½Ī±Ī¹ĪŗĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ & Ī§ĪµĪ¹ĻĪæĻ…ĻĪ³Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ'),
(45756, 'https://ror.org/00wyj1j88', 'en', 1, 'https://ror.org/00wyj1j88 Poornaprajna Institute of Scientific Research'),
(45757, 'https://ror.org/00x19rt58', 'en', 1, 'https://ror.org/00x19rt58 Jiyu Gakuen Girls School č‡Ŗē”±å­¦åœ’ę˜Žę—„é¤Ø'),
(45758, 'https://ror.org/00x1fdr51', 'no_lang_code', 1, 'https://ror.org/00x1fdr51 Rafik Hariri University Ł…Ų¤Ų³Ų³Ų© Ų±ŁŁŠŁ‚ Ų§Ł„Ų­Ų±ŁŠŲ±ŁŠ'),
(45759, 'https://ror.org/00x2kxt49', 'en', 1, 'https://ror.org/00x2kxt49 Institute for Futures Studies Institutet fƶr Framtidsstudier'),
(45760, 'https://ror.org/00x2mvg12', 'no_lang_code', 1, 'https://ror.org/00x2mvg12 Ozymes (Canada)'),
(45761, 'https://ror.org/00x39dd97', 'no_lang_code', 1, 'https://ror.org/00x39dd97 Schneider Electric (United States)'),
(45762, 'https://ror.org/00x3xqj53', 'en', 1, 'https://ror.org/00x3xqj53 Canadian University Music Society SociƩtƩ de musique des universitƩs canadiennes'),
(45763, 'https://ror.org/00x49t688', 'en', 1, 'https://ror.org/00x49t688 Fukui Prefectural Maruoka High School ē¦äŗ•ēœŒē«‹äøøå²”é«˜ē­‰å­¦ę ”'),
(45764, 'https://ror.org/00x7ptd63', 'no_lang_code', 1, 'https://ror.org/00x7ptd63 Bio-Rad (Israel)'),
(45765, 'https://ror.org/00x8gws85', 'no_lang_code', 1, 'https://ror.org/00x8gws85 BioTelemetry (United States)'),
(45766, 'https://ror.org/00x8v4m40', 'en', 1, 'https://ror.org/00x8v4m40 Waukegan Public Library'),
(45767, 'https://ror.org/00x8yzg78', 'en', 1, 'https://ror.org/00x8yzg78 Nara Prefectural Takada Senior High School å„ˆč‰ÆēœŒē«‹é«˜ē”°é«˜ē­‰å­¦ę ”'),
(45768, 'https://ror.org/00x9ph686', 'en', 1, 'https://ror.org/00x9ph686 Jawaharlal Nehru Cancer Hospital and Research Centre'),
(45769, 'https://ror.org/00xagtd33', 'en', 1, 'https://ror.org/00xagtd33 Kawasaki Univ Yato Elementary School å·å“Žåø‚ē«‹å¤§č°·ęˆøå°å­¦ę ”'),
(45770, 'https://ror.org/00xb58j90', 'en', 1, 'https://ror.org/00xb58j90 Bundesverband der Deutschen Industrie Federation of German Industries'),
(45771, 'https://ror.org/00xefvv79', 'en', 1, 'https://ror.org/00xefvv79 National Institute of Technology, Kurume College ä¹…ē•™ē±³å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(45772, 'https://ror.org/00xes3s90', 'no_lang_code', 1, 'https://ror.org/00xes3s90 Cempra Pharmaceuticals (United States)'),
(45773, 'https://ror.org/00xf3s895', 'no_lang_code', 1, 'https://ror.org/00xf3s895 Vadient Optics (United States)'),
(45774, 'https://ror.org/00xfdbb04', 'no_lang_code', 1, 'https://ror.org/00xfdbb04 Telefonica (Germany)'),
(45775, 'https://ror.org/00xj0z482', 'no_lang_code', 1, 'https://ror.org/00xj0z482 Munro & Associates (United States)'),
(45776, 'https://ror.org/00xk5y986', 'en', 1, 'https://ror.org/00xk5y986 Development Initiatives'),
(45777, 'https://ror.org/00xk9wg94', 'no_lang_code', 1, 'https://ror.org/00xk9wg94 Himax (Taiwan) 儇景光電'),
(45778, 'https://ror.org/00xkz3n79', 'no_lang_code', 1, 'https://ror.org/00xkz3n79 Trapeze (United States)'),
(45779, 'https://ror.org/00xmngc47', 'no_lang_code', 1, 'https://ror.org/00xmngc47 Dow Chemical (South Korea)'),
(45780, 'https://ror.org/00xnetf72', 'fr', 1, 'https://ror.org/00xnetf72 Brest''aim'),
(45781, 'https://ror.org/00xphjh14', 'en', 1, 'https://ror.org/00xphjh14 Fujian Research Institute of Light Industry ē¦å»ŗēœč½»å·„äøšē ”ē©¶ę‰€'),
(45782, 'https://ror.org/00xpxz171', 'no_lang_code', 1, 'https://ror.org/00xpxz171 Scientific Games (United Kingdom)'),
(45783, 'https://ror.org/00xqcgm91', 'en', 1, 'https://ror.org/00xqcgm91 Travis Unified School District'),
(45784, 'https://ror.org/00xqj7528', 'en', 1, 'https://ror.org/00xqj7528 British Nuclear Medicine Society'),
(45785, 'https://ror.org/00xqjsc25', 'no_lang_code', 1, 'https://ror.org/00xqjsc25 Arkema (Germany)'),
(45786, 'https://ror.org/00xsh4698', 'no_lang_code', 1, 'https://ror.org/00xsh4698 Assa Abloy (Australia)'),
(45787, 'https://ror.org/00xttnp21', 'no_lang_code', 1, 'https://ror.org/00xttnp21 Flex (Mauritius)'),
(45788, 'https://ror.org/00xvbmj91', 'no_lang_code', 1, 'https://ror.org/00xvbmj91 Fluidigm (Canada)'),
(45789, 'https://ror.org/00xvrse39', 'en', 1, 'https://ror.org/00xvrse39 Association of Governing Boards of Universities and Colleges'),
(45790, 'https://ror.org/00xx28w63', 'en', 1, 'https://ror.org/00xx28w63 Akita Prefectural Education Center ē§‹ē”°ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(45791, 'https://ror.org/00xx5qr89', 'en', 1, 'https://ror.org/00xx5qr89 Central State Medical Academy Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(45792, 'https://ror.org/00xxnb467', 'en', 1, 'https://ror.org/00xxnb467 Hamilton County Department of Education'),
(45793, 'https://ror.org/00xy95422', 'de', 1, 'https://ror.org/00xy95422 Archiv der Jugendkulturen'),
(45794, 'https://ror.org/00xzhyb45', 'en', 1, 'https://ror.org/00xzhyb45 Wikimedia Australia'),
(45795, 'https://ror.org/00y024m51', 'en', 1, 'https://ror.org/00y024m51 First Flight Venture Center'),
(45796, 'https://ror.org/00y09zk14', 'no_lang_code', 1, 'https://ror.org/00y09zk14 Motorola (South Korea)'),
(45797, 'https://ror.org/00y1a8425', 'en', 1, 'https://ror.org/00y1a8425 Zhukovsky Air Force Engineering Academy Военно-Š²Š¾Š·Š“ŃƒŃˆŠ½Š°Ń ŠøŠ½Š¶ŠµŠ½ŠµŃ€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени профессора Š. Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾'),
(45798, 'https://ror.org/00y1n0k33', 'no_lang_code', 1, 'https://ror.org/00y1n0k33 Stanley Black & Decker (United Kingdom)'),
(45799, 'https://ror.org/00y2td026', 'en', 1, 'https://ror.org/00y2td026 Winston-Salem Chamber of Commerce'),
(45800, 'https://ror.org/00y3fw422', 'en', 1, 'https://ror.org/00y3fw422 Boston Society of Architects'),
(45801, 'https://ror.org/00y3z1g83', 'no_lang_code', 1, 'https://ror.org/00y3z1g83 Sangath'),
(45802, 'https://ror.org/00y4qff92', 'en', 1, 'https://ror.org/00y4qff92 Kyoto College of Medical Science äŗ¬éƒ½åŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(45803, 'https://ror.org/00y550t07', 'en', 1, 'https://ror.org/00y550t07 Kofi Annan Foundation'),
(45804, 'https://ror.org/00y5p9m93', 'en', 1, 'https://ror.org/00y5p9m93 Ministry of the Interior and Administrative Reconstruction ΄πουργείο Ī•ĻƒĻ‰Ļ„ĪµĻĪ¹ĪŗĻŽĪ½ και Διοικητικής Ī‘Ī½Ī±ĻƒĻ…Ī³ĪŗĻĻŒĻ„Ī·ĻƒĪ·Ļ‚'),
(45805, 'https://ror.org/00y6gpw41', 'en', 1, 'https://ror.org/00y6gpw41 Association for Library and Information Science Education'),
(45806, 'https://ror.org/00y6k5y17', 'no_lang_code', 1, 'https://ror.org/00y6k5y17 Gweru Polytechnic Institute'),
(45807, 'https://ror.org/00y728105', 'en', 1, 'https://ror.org/00y728105 Israel Brain Technologies'),
(45808, 'https://ror.org/00y761129', 'no_lang_code', 1, 'https://ror.org/00y761129 Fincons Group (Italy)'),
(45809, 'https://ror.org/00y852y62', 'en', 1, 'https://ror.org/00y852y62 Educational Service District 113'),
(45810, 'https://ror.org/00ya1es69', 'no_lang_code', 1, 'https://ror.org/00ya1es69 MicroBio Engineering (United States)'),
(45811, 'https://ror.org/00yck8s68', 'no_lang_code', 1, 'https://ror.org/00yck8s68 Mitsubishi Corporation (Germany)'),
(45812, 'https://ror.org/00yckme16', 'en', 1, 'https://ror.org/00yckme16 Universal College of Healing Arts'),
(45813, 'https://ror.org/00yewjk07', 'no_lang_code', 1, 'https://ror.org/00yewjk07 BAE Systems (Sweden)'),
(45814, 'https://ror.org/00yfw2296', 'it', 1, 'https://ror.org/00yfw2296 Istituto Officina dei Materiali'),
(45815, 'https://ror.org/00yg19172', 'en', 1, 'https://ror.org/00yg19172 Kitakyushu City Foundation For Promoting Arts And Culture å…¬ē›Šč²”å›£ę³•äŗŗ åŒ—ä¹å·žåø‚čŠøč”“ę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(45816, 'https://ror.org/00yj1g869', 'no_lang_code', 1, 'https://ror.org/00yj1g869 Subsurface Insights (United States)'),
(45817, 'https://ror.org/00ym78a64', 'en', 1, 'https://ror.org/00ym78a64 EducationSuperHighway'),
(45818, 'https://ror.org/00ymz7s10', 'no_lang_code', 1, 'https://ror.org/00ymz7s10 3v Geomatics (Canada)'),
(45819, 'https://ror.org/00ynxc274', 'no_lang_code', 1, 'https://ror.org/00ynxc274 Kao Corporation (Germany)'),
(45820, 'https://ror.org/00ynznf11', 'no_lang_code', 1, 'https://ror.org/00ynznf11 Knite (United States)'),
(45821, 'https://ror.org/00yp0d371', 'en', 1, 'https://ror.org/00yp0d371 New Hampshire Department of Resources and Economic Development'),
(45822, 'https://ror.org/00yp48s31', 'no_lang_code', 1, 'https://ror.org/00yp48s31 ReacTech (United States)'),
(45823, 'https://ror.org/00ypw9w15', 'en', 1, 'https://ror.org/00ypw9w15 European Foundation Centre'),
(45824, 'https://ror.org/00ypwtb83', 'no_lang_code', 1, 'https://ror.org/00ypwtb83 Svenska Cellulosa (United Kingdom) Svenska Cellulosa Aktiebolaget'),
(45825, 'https://ror.org/00yq70636', 'no_lang_code', 1, 'https://ror.org/00yq70636 BioZyme (United States)'),
(45826, 'https://ror.org/00yqk5t74', 'no_lang_code', 1, 'https://ror.org/00yqk5t74 Lonza (Germany)'),
(45827, 'https://ror.org/00yt07t18', 'en', 1, 'https://ror.org/00yt07t18 Chapel Hill Breast Cancer Foundation'),
(45828, 'https://ror.org/00ytjke60', 'en', 1, 'https://ror.org/00ytjke60 Nature Conservation Foundation'),
(45829, 'https://ror.org/00ytwt138', 'en', 1, 'https://ror.org/00ytwt138 Public Law Library of King County'),
(45830, 'https://ror.org/00ytxqz74', 'en', 1, 'https://ror.org/00ytxqz74 Addiction Switzerland Sucht Schweiz'),
(45831, 'https://ror.org/00yv9a247', 'en', 1, 'https://ror.org/00yv9a247 Imperial Household Agency 宮内庁'),
(45832, 'https://ror.org/00yxgk394', 'es', 1, 'https://ror.org/00yxgk394 ecOceƔnica'),
(45833, 'https://ror.org/00yxnm167', 'en', 1, 'https://ror.org/00yxnm167 Eastern North American Region International Biometric Society'),
(45834, 'https://ror.org/00yydfg09', 'id', 1, 'https://ror.org/00yydfg09 Universitas Pekalongan'),
(45835, 'https://ror.org/00yzwhc72', 'no_lang_code', 1, 'https://ror.org/00yzwhc72 TEAC (Japan) ćƒ†ć‚£ć‚¢ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(45836, 'https://ror.org/00z0c0y28', 'en', 1, 'https://ror.org/00z0c0y28 Islamic Azad University Mehriz دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ł‡Ų±ŪŒŲ²'),
(45837, 'https://ror.org/00z0j0d77', 'en', 1, 'https://ror.org/00z0j0d77 First Affiliated Hospital of Guangzhou Medical University å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(45838, 'https://ror.org/00z1bwj17', 'no_lang_code', 1, 'https://ror.org/00z1bwj17 Street Contxt (Canada)'),
(45839, 'https://ror.org/00z290809', 'no_lang_code', 1, 'https://ror.org/00z290809 Sandvik (Switzerland)'),
(45840, 'https://ror.org/00z2xnx25', 'en', 1, 'https://ror.org/00z2xnx25 Niimi College ę–°č¦‹å…¬ē«‹ēŸ­ęœŸå¤§å­¦'),
(45841, 'https://ror.org/00z471n15', 'no_lang_code', 1, 'https://ror.org/00z471n15 Smarter Alloys (Canada)'),
(45842, 'https://ror.org/00z4gpq27', 'en', 1, 'https://ror.org/00z4gpq27 Association Canadienne de Chirurgie Thoracique, Canadian Association of Thoracic Surgeons'),
(45843, 'https://ror.org/00z4w4f29', 'en', 1, 'https://ror.org/00z4w4f29 Oxford Research Group'),
(45844, 'https://ror.org/00z50t224', 'en', 1, 'https://ror.org/00z50t224 Trinity School of Medicine'),
(45845, 'https://ror.org/00z6n3z58', 'en', 1, 'https://ror.org/00z6n3z58 Maricopa Community Colleges - Glendale Community College'),
(45846, 'https://ror.org/00z6t7t43', 'en', 1, 'https://ror.org/00z6t7t43 Harford County Government'),
(45847, 'https://ror.org/00z7gjv76', 'en', 1, 'https://ror.org/00z7gjv76 Toyota Transportation Research Institute å…¬ē›Šč²”å›£ę³•äŗŗč±Šē”°éƒ½åø‚äŗ¤é€šē ”ē©¶ę‰€'),
(45848, 'https://ror.org/00z7vk025', 'no_lang_code', 1, 'https://ror.org/00z7vk025 Electronic Sensor Technology (United States)'),
(45849, 'https://ror.org/00z8pd398', 'en', 1, 'https://ror.org/00z8pd398 Hamamatsu University Hospital ęµœę¾å¤§å­¦ 病院'),
(45850, 'https://ror.org/00z8ws214', 'en', 1, 'https://ror.org/00z8ws214 Institute of Materials for Electronics and Magnetism'),
(45851, 'https://ror.org/00z90jg93', 'no_lang_code', 1, 'https://ror.org/00z90jg93 PlanEnergi (Denmark)'),
(45852, 'https://ror.org/00z9jj523', 'en', 1, 'https://ror.org/00z9jj523 Neyagawa City Board of Education åÆå±‹å·åø‚ę•™č‚²å§”å“”ä¼š'),
(45853, 'https://ror.org/00zbfm731', 'en', 1, 'https://ror.org/00zbfm731 Tokyo College of Transport Studies ę±äŗ¬äŗ¤é€šēŸ­ęœŸå¤§å­¦'),
(45854, 'https://ror.org/00zda5q13', 'no_lang_code', 1, 'https://ror.org/00zda5q13 Misato Junshin General Hospital äø‰éƒ·äø­å¤®ē·åˆē—…é™¢'),
(45855, 'https://ror.org/00zdzyj46', 'no_lang_code', 1, 'https://ror.org/00zdzyj46 Citizen (Japan) ć‚·ćƒć‚ŗćƒ³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(45856, 'https://ror.org/00zevg885', 'en', 1, 'https://ror.org/00zevg885 International Bone Research Association'),
(45857, 'https://ror.org/00zfe1b87', 'de', 1, 'https://ror.org/00zfe1b87 Zentralklinik Bad Berka'),
(45858, 'https://ror.org/00zhmx351', 'en', 1, 'https://ror.org/00zhmx351 Brain Injury Association of New York State'),
(45859, 'https://ror.org/00zj9hj84', 'no_lang_code', 1, 'https://ror.org/00zj9hj84 Minerva Light lab (Japan) ćƒŸćƒćƒ«ćƒćƒ©ć‚¤ćƒˆćƒ©ćƒœ'),
(45860, 'https://ror.org/00zkszf91', 'pt', 1, 'https://ror.org/00zkszf91 Associação Brasileira de PlanetÔrios'),
(45861, 'https://ror.org/00zm1cx92', 'en', 1, 'https://ror.org/00zm1cx92 Jamestowne Society'),
(45862, 'https://ror.org/00zm4vy06', 'no_lang_code', 1, 'https://ror.org/00zm4vy06 Bellwether Education Partners (United States)'),
(45863, 'https://ror.org/00znqyv98', 'it', 1, 'https://ror.org/00znqyv98 Museo Cantonale di Storia Naturale di Lugano'),
(45864, 'https://ror.org/00znts755', 'no_lang_code', 1, 'https://ror.org/00znts755 Sonata (United States)'),
(45865, 'https://ror.org/00zqddg96', 'no_lang_code', 1, 'https://ror.org/00zqddg96 Sanden (Japan) ć‚µćƒ³ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(45866, 'https://ror.org/00zrjgm10', 'en', 1, 'https://ror.org/00zrjgm10 State Intellectual Property Office äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶ēŸ„čÆ†äŗ§ęƒå±€'),
(45867, 'https://ror.org/00zrr9158', 'no_lang_code', 1, 'https://ror.org/00zrr9158 Tokyo Ohka Kogyo (Japan) ę±äŗ¬åæœåŒ–å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(45868, 'https://ror.org/00zs5ew10', 'no_lang_code', 1, 'https://ror.org/00zs5ew10 NGK Spark Plug (Japan) ę—„ęœ¬ē‰¹ę®Šé™¶ę„­ę Ŗå¼ä¼šē¤¾'),
(45869, 'https://ror.org/00zs99993', 'no_lang_code', 1, 'https://ror.org/00zs99993 Intelligent Software Solutions (United States)'),
(45870, 'https://ror.org/00zst6w92', 'en', 1, 'https://ror.org/00zst6w92 Swedish Movement Disorder Society'),
(45871, 'https://ror.org/00zt1nh73', 'no_lang_code', 1, 'https://ror.org/00zt1nh73 ProKyma Technologies (United Kingdom)'),
(45872, 'https://ror.org/00ztcbk21', 'it', 1, 'https://ror.org/00ztcbk21 Ospedale S. Matteo degli Infermi, Ospedale di Spoleto'),
(45873, 'https://ror.org/00zw8r556', 'no_lang_code', 1, 'https://ror.org/00zw8r556 Olympus (Germany)'),
(45874, 'https://ror.org/00zxymv65', 'en', 1, 'https://ror.org/00zxymv65 National Institute of Integrative Medicine'),
(45875, 'https://ror.org/00zy64e53', 'no_lang_code', 1, 'https://ror.org/00zy64e53 Radiation Detection Technologies (United States)'),
(45876, 'https://ror.org/00zyc7969', 'en', 1, 'https://ror.org/00zyc7969 United States Coast Guard'),
(45877, 'https://ror.org/01004y747', 'no_lang_code', 1, 'https://ror.org/01004y747 Arris (United Kingdom)'),
(45878, 'https://ror.org/0100sjs71', 'en', 1, 'https://ror.org/0100sjs71 Nagaoka Institute of Design 長岔造形大学'),
(45879, 'https://ror.org/0102ss455', 'no_lang_code', 1, 'https://ror.org/0102ss455 Round Rock Research (United States)'),
(45880, 'https://ror.org/010356m81', 'en', 1, 'https://ror.org/010356m81 Miyagi Prefecture Natori High School å®®åŸŽēœŒåå–é«˜ē­‰å­¦ę ”'),
(45881, 'https://ror.org/0103wwz30', 'en', 1, 'https://ror.org/0103wwz30 Minami Kyushu Junior College å—ä¹å·žēŸ­ęœŸå¤§å­¦'),
(45882, 'https://ror.org/010594c48', 'no_lang_code', 1, 'https://ror.org/010594c48 Aquaneers (United States)'),
(45883, 'https://ror.org/0105jwh54', 'no_lang_code', 1, 'https://ror.org/0105jwh54 Legrand (United Kingdom)'),
(45884, 'https://ror.org/01067b760', 'en', 1, 'https://ror.org/01067b760 Tokyo Management College ę±äŗ¬ēµŒå–¶ēŸ­ęœŸå¤§å­¦'),
(45885, 'https://ror.org/0107xy373', 'no_lang_code', 1, 'https://ror.org/0107xy373 Muzzy Lane Software (United States)'),
(45886, 'https://ror.org/0109vaz13', 'en', 1, 'https://ror.org/0109vaz13 Afrivac'),
(45887, 'https://ror.org/0109zs540', 'en', 1, 'https://ror.org/0109zs540 The Institute of Energy Economics, Japan ć‚Øćƒćƒ«ć‚®ćƒ¼ēµŒęøˆē ”ē©¶ę‰€'),
(45888, 'https://ror.org/010b6ag76', 'en', 1, 'https://ror.org/010b6ag76 ARL – Academy for Territorial Development in the Leibniz Association ARL – Akademie für Raumentwicklung in der Leibniz-Gemeinschaft'),
(45889, 'https://ror.org/010brrt54', 'no_lang_code', 1, 'https://ror.org/010brrt54 Faurecia (United States)'),
(45890, 'https://ror.org/010fp8b41', 'no_lang_code', 1, 'https://ror.org/010fp8b41 Siliconware Precision Industries (Taiwan) ę­”čæŽä¾†åˆ°ēŸ½å“'),
(45891, 'https://ror.org/010ftx126', 'en', 1, 'https://ror.org/010ftx126 Institute of Thermal Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплофизики Š£Ń€Šž Š ŠŠ'),
(45892, 'https://ror.org/010fzp376', 'no_lang_code', 1, 'https://ror.org/010fzp376 Nanion (Germany)'),
(45893, 'https://ror.org/010gkrj91', 'en', 1, 'https://ror.org/010gkrj91 Yamanashi Prefectural Fisheries Technology Center ę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(45894, 'https://ror.org/010gr2865', 'en', 1, 'https://ror.org/010gr2865 Wikimedia New York City'),
(45895, 'https://ror.org/010j46531', 'en', 1, 'https://ror.org/010j46531 African Health Economics and Policy Association'),
(45896, 'https://ror.org/010j4q354', 'no_lang_code', 1, 'https://ror.org/010j4q354 EXUS (United Kingdom)'),
(45897, 'https://ror.org/010jmsy02', 'no_lang_code', 1, 'https://ror.org/010jmsy02 Kyoto Computer Gakuin äŗ¬éƒ½ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æå­¦é™¢'),
(45898, 'https://ror.org/010k7sz25', 'de', 1, 'https://ror.org/010k7sz25 Arbeitsgemeinschaft Dermatologische Forschung'),
(45899, 'https://ror.org/010k8n340', 'no_lang_code', 1, 'https://ror.org/010k8n340 RCA (United States)'),
(45900, 'https://ror.org/010m5yq44', 'no_lang_code', 1, 'https://ror.org/010m5yq44 Planwel'),
(45901, 'https://ror.org/010nq4b05', 'en', 1, 'https://ror.org/010nq4b05 Illinois School Psychologists Association'),
(45902, 'https://ror.org/010p06p68', 'pt', 1, 'https://ror.org/010p06p68 Associação Nacional de Política e Administração da Educação'),
(45903, 'https://ror.org/010pns631', 'en', 1, 'https://ror.org/010pns631 Consortium for School Networking'),
(45904, 'https://ror.org/010q5z761', 'en', 1, 'https://ror.org/010q5z761 Ishikawa Prefectural Museum of Art ēŸ³å·ēœŒē«‹ē¾Žč”“é¤Ø'),
(45905, 'https://ror.org/010s5m858', 'no_lang_code', 1, 'https://ror.org/010s5m858 Olympus (United Kingdom)'),
(45906, 'https://ror.org/010vp6v57', 'en', 1, 'https://ror.org/010vp6v57 Iwate Prefectural Shizukuishi High School å²©ę‰‹ēœŒē«‹é›«ēŸ³é«˜ē­‰å­¦ę ”'),
(45907, 'https://ror.org/010vv9h56', 'en', 1, 'https://ror.org/010vv9h56 London Studio Centre'),
(45908, 'https://ror.org/010xx8472', 'no_lang_code', 1, 'https://ror.org/010xx8472 Scuba Probe Technologies (United states)'),
(45909, 'https://ror.org/010y4ef75', 'en', 1, 'https://ror.org/010y4ef75 Kitakyushu Yahata Special Needs Schools åŒ—ä¹å·žåø‚ē«‹å…«å¹”ē‰¹åˆ„ę”Æę“å­¦ę ”'),
(45910, 'https://ror.org/010z8j306', 'en', 1, 'https://ror.org/010z8j306 Daqing City People''s Hospital'),
(45911, 'https://ror.org/0110jzw27', 'en', 1, 'https://ror.org/0110jzw27 Osaka Municipal Toyosaki Junior High School å¤§é˜Ŗåø‚ē«‹č±Šå“Žäø­å­¦ę ”'),
(45912, 'https://ror.org/0111gv970', 'no_lang_code', 1, 'https://ror.org/0111gv970 Phusis Therapeutics (United States)'),
(45913, 'https://ror.org/0113nqq98', 'en', 1, 'https://ror.org/0113nqq98 Sapporo Science Center ęœ­å¹Œåø‚é’å°‘å¹“ē§‘å­¦é¤Ø'),
(45914, 'https://ror.org/0113qg321', 'no_lang_code', 1, 'https://ror.org/0113qg321 Solar Ship (Canada)'),
(45915, 'https://ror.org/01149dp52', 'no_lang_code', 1, 'https://ror.org/01149dp52 eBay (South Korea)'),
(45916, 'https://ror.org/0114ckv42', 'no_lang_code', 1, 'https://ror.org/0114ckv42 Hyōgo Prefectural Museum of Art å…µåŗ«ēœŒē«‹ē¾Žč”“é¤Ø'),
(45917, 'https://ror.org/01155gk87', 'no_lang_code', 1, 'https://ror.org/01155gk87 Keysight Technologies (Singapore)'),
(45918, 'https://ror.org/01157qb85', 'fr', 1, 'https://ror.org/01157qb85 Groupe AFI'),
(45919, 'https://ror.org/0117r4k15', 'en', 1, 'https://ror.org/0117r4k15 Okinawa Prefectural Board of Education ę²–ēø„ēœŒę•™č‚²å§”å“”ä¼š'),
(45920, 'https://ror.org/0117wrn60', 'no_lang_code', 1, 'https://ror.org/0117wrn60 Flag Therapeutics (United States)'),
(45921, 'https://ror.org/01195rc41', 'en', 1, 'https://ror.org/01195rc41 Tokyo Metropolitan Nerima High School ę±äŗ¬éƒ½ē«‹ē·“é¦¬é«˜ē­‰å­¦ę ”'),
(45922, 'https://ror.org/01197h425', 'en', 1, 'https://ror.org/01197h425 Police and Crime Commissioner for West Yorkshire'),
(45923, 'https://ror.org/011bkgz47', 'pt', 1, 'https://ror.org/011bkgz47 Brazilian Institute of Technology for Leather, Footwear and Artifacts, Instituto Brasileiro de Tecnologia do Couro, CalƧado e Artefatos'),
(45924, 'https://ror.org/011cn9r82', 'en', 1, 'https://ror.org/011cn9r82 Institute for Community Leadership'),
(45925, 'https://ror.org/011cyyg27', 'no_lang_code', 1, 'https://ror.org/011cyyg27 i2C Solutions (United States)'),
(45926, 'https://ror.org/011ec6h17', 'en', 1, 'https://ror.org/011ec6h17 Hiroshima City Museum of Contemporary Art'),
(45927, 'https://ror.org/011g79698', 'no_lang_code', 1, 'https://ror.org/011g79698 Imense (United Kingdom)'),
(45928, 'https://ror.org/011gpzb03', 'en', 1, 'https://ror.org/011gpzb03 Institute of National Economy'),
(45929, 'https://ror.org/011jv2x91', 'en', 1, 'https://ror.org/011jv2x91 Espam Formation University'),
(45930, 'https://ror.org/011k1tq34', 'en', 1, 'https://ror.org/011k1tq34 Bucks County Free Library'),
(45931, 'https://ror.org/011nyg256', 'no_lang_code', 1, 'https://ror.org/011nyg256 Eaton (Austria)'),
(45932, 'https://ror.org/011qgx996', 'no_lang_code', 1, 'https://ror.org/011qgx996 Mitsubishi Chemical Group Science and Technology Research Center (Japan) ę Ŗå¼ä¼šē¤¾äø‰č±åŒ–å­¦ē§‘å­¦ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(45933, 'https://ror.org/011sq9629', 'pt', 1, 'https://ror.org/011sq9629 Sociedade Brasileira de BiofĆ­sica'),
(45934, 'https://ror.org/011ts7939', 'de', 1, 'https://ror.org/011ts7939 Berufsgenossenschaft Rohstoffe und chemische Industrie'),
(45935, 'https://ror.org/011wm9695', 'en', 1, 'https://ror.org/011wm9695 Tottori Prefectural Museum é³„å–ēœŒē«‹åšē‰©é¤Ø'),
(45936, 'https://ror.org/0120b7z43', 'no_lang_code', 1, 'https://ror.org/0120b7z43 Kokugakuin Junior College åœ‹å­øé™¢å¤§å­øåŒ—ęµ·é“ēŸ­ęœŸå¤§å­¦éƒØ'),
(45937, 'https://ror.org/0120w9t22', 'no_lang_code', 1, 'https://ror.org/0120w9t22 NanoSynTex (United States)'),
(45938, 'https://ror.org/012151k32', 'en', 1, 'https://ror.org/012151k32 Indian River Central School District'),
(45939, 'https://ror.org/012245h64', 'en', 1, 'https://ror.org/012245h64 Municipality of MedellĆ­n Municipio de MedellĆ­n'),
(45940, 'https://ror.org/0123ma395', 'no_lang_code', 1, 'https://ror.org/0123ma395 Fujikura (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚øć‚Æćƒ©'),
(45941, 'https://ror.org/01243c877', 'en', 1, 'https://ror.org/01243c877 Fraunhofer Institute for Microelectronic Circuits and Systems Fraunhofer-Institut für Mikroelektronische Schaltungen und Systeme'),
(45942, 'https://ror.org/0124nkn39', 'en', 1, 'https://ror.org/0124nkn39 Uwajima Fisheries High school ę„›åŖ›ēœŒē«‹å®‡å’Œå³¶ę°“ē”£é«˜ē­‰å­¦ę ”'),
(45943, 'https://ror.org/0126q1y69', 'no_lang_code', 1, 'https://ror.org/0126q1y69 Plasan (Israel) פלהן'),
(45944, 'https://ror.org/0127fwn18', 'en', 1, 'https://ror.org/0127fwn18 Institut für Bioinformatik und Systembiologie Institute of Bioinformatics and Systems Biology'),
(45945, 'https://ror.org/0128ps453', 'en', 1, 'https://ror.org/0128ps453 Egyptian German Society of Zoology'),
(45946, 'https://ror.org/012ghgg86', 'no_lang_code', 1, 'https://ror.org/012ghgg86 Matsui Universal Joint Corporation (Japan) ę Ŗå¼ä¼šē¤¾ę¾äŗ•č£½ä½œę‰€'),
(45947, 'https://ror.org/012gxwa15', 'no_lang_code', 1, 'https://ror.org/012gxwa15 Tokai Rika (Japan) ę±ęµ·ē†åŒ–'),
(45948, 'https://ror.org/012jgbk51', 'en', 1, 'https://ror.org/012jgbk51 Oriental University Восточный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(45949, 'https://ror.org/012jxwf11', 'en', 1, 'https://ror.org/012jxwf11 Alberta Library'),
(45950, 'https://ror.org/012ky5f74', 'no_lang_code', 1, 'https://ror.org/012ky5f74 EG Gilero (United States)'),
(45951, 'https://ror.org/012msr517', 'en', 1, 'https://ror.org/012msr517 Hattori Botanical Laboratory ęœéƒØę¤ē‰©ē ”ē©¶ę‰€'),
(45952, 'https://ror.org/012mvxw17', 'no_lang_code', 1, 'https://ror.org/012mvxw17 Sendai City Tomizawa Site Museum åœ°åŗ•ć®ę£®ćƒŸćƒ„ćƒ¼ć‚øć‚¢ćƒ '),
(45953, 'https://ror.org/012nfzy71', 'es', 1, 'https://ror.org/012nfzy71 Universidad Panamericana de El Salvador'),
(45954, 'https://ror.org/012q68n89', 'en', 1, 'https://ror.org/012q68n89 National Centre for Compositional Characterisation of Materials'),
(45955, 'https://ror.org/012set728', 'en', 1, 'https://ror.org/012set728 Kandilli Observatory and Earthquake Research Institute Kandilli Rasathanesi ve Deprem Araştırma Enstitüsü'),
(45956, 'https://ror.org/012spbn33', 'en', 1, 'https://ror.org/012spbn33 National Museum of Western Art å›½ē«‹č„æę“‹ē¾Žč”“é¤Ø'),
(45957, 'https://ror.org/012wc2h72', 'en', 1, 'https://ror.org/012wc2h72 American Psychosomatic Society'),
(45958, 'https://ror.org/012yjj245', 'no_lang_code', 1, 'https://ror.org/012yjj245 CritiTech (United States)'),
(45959, 'https://ror.org/012zhga41', 'en', 1, 'https://ror.org/012zhga41 Shine'),
(45960, 'https://ror.org/0131dra29', 'en', 1, 'https://ror.org/0131dra29 Fraunhofer Institute for Interfacial Engineering and Biotechnology Fraunhofer-Institut für Grenzflächen- und Bioverfahrenstechnik'),
(45961, 'https://ror.org/0131hr478', 'no_lang_code', 1, 'https://ror.org/0131hr478 Johnson Matthey (Germany)'),
(45962, 'https://ror.org/0133kas76', 'en', 1, 'https://ror.org/0133kas76 Haines Borough Public Library'),
(45963, 'https://ror.org/0134cjh35', 'no_lang_code', 1, 'https://ror.org/0134cjh35 Gemalto (Israel)'),
(45964, 'https://ror.org/01351nn19', 'en', 1, 'https://ror.org/01351nn19 Hunan Sports Bureau ę¹–å—ēœä½“č‚²å±€'),
(45965, 'https://ror.org/0135jsc12', 'no_lang_code', 1, 'https://ror.org/0135jsc12 Actinobac Biomed (United States)'),
(45966, 'https://ror.org/0136hcg09', 'en', 1, 'https://ror.org/0136hcg09 Immunotherapy Centre for Prevention of Repeated Miscarriages'),
(45967, 'https://ror.org/0136tgd19', 'en', 1, 'https://ror.org/0136tgd19 Tokyo College of Welfare ę±äŗ¬ē¦ē„‰å°‚é–€å­¦ę ”'),
(45968, 'https://ror.org/013947m29', 'en', 1, 'https://ror.org/013947m29 Nagasaki Prefectural Education Center é•·å“ŽēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(45969, 'https://ror.org/013ch2r08', 'en', 1, 'https://ror.org/013ch2r08 Fukushima Prefectural Asaka High School ē¦å³¶ēœŒē«‹å®‰ē©é«˜ē­‰å­¦ę ”'),
(45970, 'https://ror.org/013dk1391', 'no_lang_code', 1, 'https://ror.org/013dk1391 Wikimedia District of Columbia'),
(45971, 'https://ror.org/013egyr15', 'pt', 1, 'https://ror.org/013egyr15 Associação Nacional de Biossegurança'),
(45972, 'https://ror.org/013gvjj93', 'no_lang_code', 1, 'https://ror.org/013gvjj93 Nufarm (Australia)'),
(45973, 'https://ror.org/013kgb629', 'en', 1, 'https://ror.org/013kgb629 Machine Intelligence Research Labs'),
(45974, 'https://ror.org/013m7z415', 'en', 1, 'https://ror.org/013m7z415 Digital Empowerment Foundation'),
(45975, 'https://ror.org/013nc1m54', 'en', 1, 'https://ror.org/013nc1m54 Fort Bend County Libraries'),
(45976, 'https://ror.org/013p9v583', 'no_lang_code', 1, 'https://ror.org/013p9v583 Daikin (Japan) ćƒ€ć‚¤ć‚­ćƒ³å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(45977, 'https://ror.org/013pzg015', 'fr', 1, 'https://ror.org/013pzg015 Association pour le DƩveloppement et l''Innovation en Chimie au QuƩbec'),
(45978, 'https://ror.org/013s0qy72', 'en', 1, 'https://ror.org/013s0qy72 FrameWorks Institute'),
(45979, 'https://ror.org/013shsh75', 'en', 1, 'https://ror.org/013shsh75 Center for National University Finance and Management å›½ē«‹å¤§å­¦č²”å‹™ćƒ»ēµŒå–¶ć‚»ćƒ³ć‚æćƒ¼'),
(45980, 'https://ror.org/0140bnh63', 'no_lang_code', 1, 'https://ror.org/0140bnh63 Ineos (Germany)'),
(45981, 'https://ror.org/0140zan98', 'en', 1, 'https://ror.org/0140zan98 Gunma Prefectural Museum of History'),
(45982, 'https://ror.org/01457ne20', 'en', 1, 'https://ror.org/01457ne20 Ministry of Agriculture Mechanisation and Irrigation Development'),
(45983, 'https://ror.org/01459d894', 'en', 1, 'https://ror.org/01459d894 Virginia Intermont College'),
(45984, 'https://ror.org/0147hmw17', 'en', 1, 'https://ror.org/0147hmw17 Yarmouk Private University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŲ±Ł…ŁˆŁƒ الخاصة'),
(45985, 'https://ror.org/0148s8205', 'no_lang_code', 1, 'https://ror.org/0148s8205 Locus Pharmacy (United States)'),
(45986, 'https://ror.org/014c6rd81', 'en', 1, 'https://ror.org/014c6rd81 Japanese Society of Nephrology äø€čˆ¬ē¤¾å›£ę³•äŗŗ ę—„ęœ¬č…Žč‡“å­¦ä¼š'),
(45987, 'https://ror.org/014crx992', 'en', 1, 'https://ror.org/014crx992 Kentucky Chamber of Commerce'),
(45988, 'https://ror.org/014dtj905', 'es', 1, 'https://ror.org/014dtj905 Universidad Pedagógica de El Salvador'),
(45989, 'https://ror.org/014f9c269', 'no_lang_code', 1, 'https://ror.org/014f9c269 Google (Switzerland)'),
(45990, 'https://ror.org/014hy9c40', 'en', 1, 'https://ror.org/014hy9c40 Firoozgar General Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¢Ł…ŁˆŲ²Ų“ŪŒ و ŲÆŲ±Ł…Ų§Ł†ŪŒ فیروزگر'),
(45991, 'https://ror.org/014jsry89', 'no_lang_code', 1, 'https://ror.org/014jsry89 Modine (South Korea)'),
(45992, 'https://ror.org/014kzp326', 'no_lang_code', 1, 'https://ror.org/014kzp326 Pioneer (Japan) ćƒ‘ć‚¤ć‚Ŗćƒ‹ć‚¢ę Ŗå¼ä¼šē¤¾'),
(45993, 'https://ror.org/014mdja61', 'en', 1, 'https://ror.org/014mdja61 Lilac Services for the Blind'),
(45994, 'https://ror.org/014mq3e63', 'es', 1, 'https://ror.org/014mq3e63 Wikimedia MƩxico'),
(45995, 'https://ror.org/014n3px33', 'en', 1, 'https://ror.org/014n3px33 South African Association of Women Graduates'),
(45996, 'https://ror.org/014ngqg04', 'es', 1, 'https://ror.org/014ngqg04 Instituto Trabajo y Familia'),
(45997, 'https://ror.org/014nsap67', 'en', 1, 'https://ror.org/014nsap67 People''s Liberation Army No. 150 Hospital'),
(45998, 'https://ror.org/014p1by09', 'en', 1, 'https://ror.org/014p1by09 National Foundation for Australian Women'),
(45999, 'https://ror.org/014pv7733', 'no_lang_code', 1, 'https://ror.org/014pv7733 BioNano Genomics (United States)'),
(46000, 'https://ror.org/014rvs568', 'es', 1, 'https://ror.org/014rvs568 Ministerio de Desarrollo Agropecuario'),
(46001, 'https://ror.org/014vqnj59', 'de', 1, 'https://ror.org/014vqnj59 Krankenhaus der Augustinerinnen'),
(46002, 'https://ror.org/014wr0t03', 'en', 1, 'https://ror.org/014wr0t03 Friends of the Global Fight'),
(46003, 'https://ror.org/014xpbn19', 'fr', 1, 'https://ror.org/014xpbn19 Entretiens de RƩƩducation et RƩadaptation Fonctionnelles'),
(46004, 'https://ror.org/014xsev03', 'en', 1, 'https://ror.org/014xsev03 Agro Business Park'),
(46005, 'https://ror.org/014yket62', 'no_lang_code', 1, 'https://ror.org/014yket62 Opera Software (Ireland)'),
(46006, 'https://ror.org/0150aaa23', 'no_lang_code', 1, 'https://ror.org/0150aaa23 Excelitas Technologies (Singapore)'),
(46007, 'https://ror.org/0152hnc69', 'en', 1, 'https://ror.org/0152hnc69 Engineers Without Borders Canada Ingénieurs sans Frontières Canada'),
(46008, 'https://ror.org/0154rgv60', 'no_lang_code', 1, 'https://ror.org/0154rgv60 Prima Alloy Steel Universal (Indonesia)'),
(46009, 'https://ror.org/01561s686', 'en', 1, 'https://ror.org/01561s686 Creative Research'),
(46010, 'https://ror.org/015b17453', 'en', 1, 'https://ror.org/015b17453 Kagoshima Prefectural Institute For Education Research é¹æå…å³¶ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46011, 'https://ror.org/015bg7p91', 'en', 1, 'https://ror.org/015bg7p91 International Pacific University Women''s College ē’°å¤Ŗå¹³ę“‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(46012, 'https://ror.org/015c8af10', 'no_lang_code', 1, 'https://ror.org/015c8af10 Mitsubishi Chemical (Germany)'),
(46013, 'https://ror.org/015cafh73', 'no_lang_code', 1, 'https://ror.org/015cafh73 Taisei (Japan) å¤§ęˆå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(46014, 'https://ror.org/015chfs79', 'no_lang_code', 1, 'https://ror.org/015chfs79 ION Engineering (United States)'),
(46015, 'https://ror.org/015eg4898', 'en', 1, 'https://ror.org/015eg4898 Moreland City Council'),
(46016, 'https://ror.org/015gd1034', 'no_lang_code', 1, 'https://ror.org/015gd1034 Applied Research in Acoustics (United States)'),
(46017, 'https://ror.org/015hjhv86', 'no_lang_code', 1, 'https://ror.org/015hjhv86 Tungsten Heavy Powder & Parts (United States)'),
(46018, 'https://ror.org/015hz7767', 'en', 1, 'https://ror.org/015hz7767 Fraunhofer Italia Research'),
(46019, 'https://ror.org/015j6pf88', 'en', 1, 'https://ror.org/015j6pf88 India Heritage Research Foundation'),
(46020, 'https://ror.org/015kqsb22', 'en', 1, 'https://ror.org/015kqsb22 Fukuoka College of Agriculture ē¦å²”ēœŒč¾²ę„­å¤§å­¦ę ”'),
(46021, 'https://ror.org/015ktc526', 'de', 1, 'https://ror.org/015ktc526 Forschungsgemeinschaft Werkzeuge und Werkstoffe'),
(46022, 'https://ror.org/015kxhg94', 'en', 1, 'https://ror.org/015kxhg94 Niijima Gakuen Junior College ę–°å³¶å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(46023, 'https://ror.org/015p0jm93', 'no_lang_code', 1, 'https://ror.org/015p0jm93 Aoyama Gakuin Kindergarten é’å±±å­¦é™¢å¹¼ēØšåœ’'),
(46024, 'https://ror.org/015q1p728', 'pt', 1, 'https://ror.org/015q1p728 Fundação Museu do Homem Americano'),
(46025, 'https://ror.org/015sncd69', 'en', 1, 'https://ror.org/015sncd69 Islamic Azad University of Mahabad دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد مهاباد'),
(46026, 'https://ror.org/015wmee04', 'en', 1, 'https://ror.org/015wmee04 Hollywood Graduate School Of Beauty Business ē¾Žå®¹äŗ‹ę„­ć®ćƒćƒŖć‚¦ćƒƒćƒ‰å¤§å­¦é™¢'),
(46027, 'https://ror.org/015y2tg27', 'en', 1, 'https://ror.org/015y2tg27 Directed Energy Professional Society'),
(46028, 'https://ror.org/015yc3t03', 'no_lang_code', 1, 'https://ror.org/015yc3t03 SITAEL (Italy)'),
(46029, 'https://ror.org/0162qed39', 'no_lang_code', 1, 'https://ror.org/0162qed39 Toyo Tire and Rubber (Japan) ę±ę“‹ć‚“ćƒ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(46030, 'https://ror.org/0165gz615', 'en', 1, 'https://ror.org/0165gz615 Leibniz Institute for Psychology Leibniz-Institut für Psychologie'),
(46031, 'https://ror.org/0166b9n36', 'id', 1, 'https://ror.org/0166b9n36 Universitas Amir Hamzah'),
(46032, 'https://ror.org/016731f38', 'no_lang_code', 1, 'https://ror.org/016731f38 Zimmer Biomet (Germany)'),
(46033, 'https://ror.org/0168qf015', 'en', 1, 'https://ror.org/0168qf015 Center for a New American Security'),
(46034, 'https://ror.org/0168t8783', 'en', 1, 'https://ror.org/0168t8783 Bent Creek Institute'),
(46035, 'https://ror.org/016cvn656', 'en', 1, 'https://ror.org/016cvn656 MassDevelopment'),
(46036, 'https://ror.org/016cxyb17', 'en', 1, 'https://ror.org/016cxyb17 Education Resource Strategies'),
(46037, 'https://ror.org/016e8pb27', 'no_lang_code', 1, 'https://ror.org/016e8pb27 CisThera (United States)'),
(46038, 'https://ror.org/016ebj734', 'en', 1, 'https://ror.org/016ebj734 Tsuchiura City Museum åœŸęµ¦åø‚ē«‹åšē‰©é¤Ø'),
(46039, 'https://ror.org/016gd3115', 'en', 1, 'https://ror.org/016gd3115 Metro South Health'),
(46040, 'https://ror.org/016j41127', 'en', 1, 'https://ror.org/016j41127 Changji University ę˜Œå‰å­¦é™¢'),
(46041, 'https://ror.org/016kvft77', 'no_lang_code', 1, 'https://ror.org/016kvft77 Hyundai Motors (South Korea) ķ˜„ėŒ€ģžė™ģ°Ø'),
(46042, 'https://ror.org/016mey390', 'no_lang_code', 1, 'https://ror.org/016mey390 Rafael Advanced Defense Systems (Israel) רפאל - ×ž×¢×Ø×›×•×Ŗ לחימה ×ž×Ŗ×§×“×ž×•×Ŗ בע"מ'),
(46043, 'https://ror.org/016mfhr46', 'en', 1, 'https://ror.org/016mfhr46 Kobe Rokko Island High School ē„žęˆøåø‚ē«‹å…­ē”²ć‚¢ć‚¤ćƒ©ćƒ³ćƒ‰é«˜ē­‰å­¦ę ”'),
(46044, 'https://ror.org/016myq798', 'en', 1, 'https://ror.org/016myq798 American Committee for the Weizmann Institute of Science'),
(46045, 'https://ror.org/016nx0z25', 'en', 1, 'https://ror.org/016nx0z25 Government Chemist Laboratory Agency'),
(46046, 'https://ror.org/016pv1z16', 'en', 1, 'https://ror.org/016pv1z16 Video Pool Media Arts Centre'),
(46047, 'https://ror.org/016qc0h19', 'en', 1, 'https://ror.org/016qc0h19 Shinshu Honan Junior College äæ”å·žč±Šå—ēŸ­ęœŸå¤§å­¦'),
(46048, 'https://ror.org/016qrrn27', 'en', 1, 'https://ror.org/016qrrn27 Shizuoka Prefectural Science and Technology High School é™å²”ēœŒē«‹ē§‘å­¦ęŠ€č”“é«˜ē­‰å­¦ę ”'),
(46049, 'https://ror.org/016r17v86', 'en', 1, 'https://ror.org/016r17v86 Future Library'),
(46050, 'https://ror.org/016rz1a24', 'no_lang_code', 1, 'https://ror.org/016rz1a24 Lockheed Martin (Australia)'),
(46051, 'https://ror.org/016sgt720', 'no_lang_code', 1, 'https://ror.org/016sgt720 Morgan Advanced Materials (Germany)'),
(46052, 'https://ror.org/016t76z82', 'no_lang_code', 1, 'https://ror.org/016t76z82 Mitsubishi Motors (Japan) äø‰č±č‡Ŗå‹•č»Šå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(46053, 'https://ror.org/016yfhd37', 'en', 1, 'https://ror.org/016yfhd37 Kawaguchi Junior College å·å£ēŸ­ęœŸå¤§å­¦'),
(46054, 'https://ror.org/016zkbb25', 'en', 1, 'https://ror.org/016zkbb25 Royal Association for Deaf people'),
(46055, 'https://ror.org/0171gx961', 'en', 1, 'https://ror.org/0171gx961 Chiba Museum of Science and Industry åƒč‘‰ēœŒē«‹ē¾ä»£ē”£ę„­ē§‘å­¦é¤Ø'),
(46056, 'https://ror.org/0172eea33', 'it', 1, 'https://ror.org/0172eea33 Studio Associato Gaia'),
(46057, 'https://ror.org/0172njy07', 'en', 1, 'https://ror.org/0172njy07 Research Institute for Electromagnetic Materials é›»ē£ęę–™ē ”ē©¶ę‰€'),
(46058, 'https://ror.org/01742jq13', 'en', 1, 'https://ror.org/01742jq13 Mount Sinai Beth Israel'),
(46059, 'https://ror.org/01761e930', 'en', 1, 'https://ror.org/01761e930 Turku PET Centre'),
(46060, 'https://ror.org/0176acm89', 'en', 1, 'https://ror.org/0176acm89 Cancer Research for the Ozarks'),
(46061, 'https://ror.org/01784jw84', 'no_lang_code', 1, 'https://ror.org/01784jw84 AT&T (United Kingdom)'),
(46062, 'https://ror.org/017a3va29', 'de', 1, 'https://ror.org/017a3va29 Elternverein für Leukämie- und Krebskranke Kinder Gießen'),
(46063, 'https://ror.org/017bgge88', 'no_lang_code', 1, 'https://ror.org/017bgge88 Medosome Biotec (United States)'),
(46064, 'https://ror.org/017bwjv47', 'es', 1, 'https://ror.org/017bwjv47 Instituto Boliviano de Ciencia y TecnologĆ­a Nuclear'),
(46065, 'https://ror.org/017d0p023', 'en', 1, 'https://ror.org/017d0p023 Hiroshima Prefectural Museum of History åŗƒå³¶ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(46066, 'https://ror.org/017jh6627', 'en', 1, 'https://ror.org/017jh6627 Center for the Advancement of Natural Discoveries using Light Emission'),
(46067, 'https://ror.org/017qkhg51', 'no_lang_code', 1, 'https://ror.org/017qkhg51 AES (United Kingdom)'),
(46068, 'https://ror.org/017yqqp60', 'en', 1, 'https://ror.org/017yqqp60 Intersect'),
(46069, 'https://ror.org/017z4ep79', 'no_lang_code', 1, 'https://ror.org/017z4ep79 Maxim Integrated (Germany)'),
(46070, 'https://ror.org/017zkwz61', 'en', 1, 'https://ror.org/017zkwz61 University Centre Saint-Ignatius Antwerp'),
(46071, 'https://ror.org/017zzp047', 'no_lang_code', 1, 'https://ror.org/017zzp047 Nordson (United Kingdom)'),
(46072, 'https://ror.org/0183mt691', 'en', 1, 'https://ror.org/0183mt691 Hajera Taju University College'),
(46073, 'https://ror.org/0186a0992', 'en', 1, 'https://ror.org/0186a0992 Kanazawa Municipal Kenrokuen Elementary School é‡‘ę²¢åø‚ē«‹å…¼å…­å°å­¦ę ”'),
(46074, 'https://ror.org/0187t3494', 'en', 1, 'https://ror.org/0187t3494 Landesmuseum Swiss National Museum'),
(46075, 'https://ror.org/01891yy30', 'no_lang_code', 1, 'https://ror.org/01891yy30 Arbressence (Canada)'),
(46076, 'https://ror.org/018apx651', 'en', 1, 'https://ror.org/018apx651 North Central Catchment Management Authority'),
(46077, 'https://ror.org/018bhgj90', 'no_lang_code', 1, 'https://ror.org/018bhgj90 Ichinomiya City Museum äø€å®®åø‚åšē‰©é¤Ø'),
(46078, 'https://ror.org/018eag955', 'en', 1, 'https://ror.org/018eag955 American Society of Tropical Medicine and Hygiene'),
(46079, 'https://ror.org/018ef1r58', 'en', 1, 'https://ror.org/018ef1r58 Economic Development Agency of the Principality of Asturias Instituto de Desarrollo Económico del Principado de Asturias'),
(46080, 'https://ror.org/018f17m70', 'no_lang_code', 1, 'https://ror.org/018f17m70 SveučiliŔte Vitez Univerzitet Vitez'),
(46081, 'https://ror.org/018fcax10', 'en', 1, 'https://ror.org/018fcax10 Kenya National Library Service'),
(46082, 'https://ror.org/018ggen26', 'en', 1, 'https://ror.org/018ggen26 China Agricultural Museum'),
(46083, 'https://ror.org/018ha0a04', 'en', 1, 'https://ror.org/018ha0a04 Tianjin Research Institute of Water Transport Engineering å¤©ē§‘é™¢å®˜ę–¹ē½‘ē«™'),
(46084, 'https://ror.org/018m4ac75', 'en', 1, 'https://ror.org/018m4ac75 Technology Partnership of Nagoya University'),
(46085, 'https://ror.org/018mj7168', 'no_lang_code', 1, 'https://ror.org/018mj7168 Furukawa Electric (Germany)'),
(46086, 'https://ror.org/018pwv131', 'no_lang_code', 1, 'https://ror.org/018pwv131 Zumtobel Group (Austria)'),
(46087, 'https://ror.org/018qh7880', 'no_lang_code', 1, 'https://ror.org/018qh7880 Introspective Systems (United States)'),
(46088, 'https://ror.org/018qpjf36', 'pt', 1, 'https://ror.org/018qpjf36 Minas Jr'),
(46089, 'https://ror.org/018tpb721', 'en', 1, 'https://ror.org/018tpb721 Chesapeake Public Schools'),
(46090, 'https://ror.org/018wrwp68', 'en', 1, 'https://ror.org/018wrwp68 Date City Institute of Funnkawann Culture'),
(46091, 'https://ror.org/018ycpa16', 'en', 1, 'https://ror.org/018ycpa16 Ancient Orient Museum å¤ä»£ć‚ŖćƒŖć‚Øćƒ³ćƒˆåšē‰©é¤Ø'),
(46092, 'https://ror.org/018yv5e79', 'en', 1, 'https://ror.org/018yv5e79 Kochi Gakuen College é«˜ēŸ„å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(46093, 'https://ror.org/018z3cr21', 'no_lang_code', 1, 'https://ror.org/018z3cr21 Dongbu HiTek (South Korea) ė™ė¶€ ķ•˜ģ“ķ…'),
(46094, 'https://ror.org/018z5vy82', 'no_lang_code', 1, 'https://ror.org/018z5vy82 Sage Science (United States)'),
(46095, 'https://ror.org/018zgk904', 'no_lang_code', 1, 'https://ror.org/018zgk904 Ontario Drive & Gear (Canada)'),
(46096, 'https://ror.org/018zm7341', 'en', 1, 'https://ror.org/018zm7341 Department of Environment and Natural Resources'),
(46097, 'https://ror.org/0192j7z55', 'en', 1, 'https://ror.org/0192j7z55 Zhejiang Industry Polytechnic College ęµ™ę±Ÿå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(46098, 'https://ror.org/0192k3w92', 'es', 1, 'https://ror.org/0192k3w92 Centro Universitario Ciudad Vieja'),
(46099, 'https://ror.org/0193wvd18', 'en', 1, 'https://ror.org/0193wvd18 Ilkley Coronation Hospital'),
(46100, 'https://ror.org/019662654', 'en', 1, 'https://ror.org/019662654 Chinese Materials Research Society äø­å›½ęę–™ē ”ē©¶å­¦ä¼š'),
(46101, 'https://ror.org/0196q0t51', 'no_lang_code', 1, 'https://ror.org/0196q0t51 Esri (Canada)'),
(46102, 'https://ror.org/0197y4k63', 'no_lang_code', 1, 'https://ror.org/0197y4k63 MinebeaMitsumi (Germany)'),
(46103, 'https://ror.org/019dkz313', 'en', 1, 'https://ror.org/019dkz313 Ningxia Academy of Agriculture and Forestry Sciences å†œęž—ē§‘å­¦é™¢å®å¤ē§‘å­¦é™¢'),
(46104, 'https://ror.org/019e98t43', 'no_lang_code', 1, 'https://ror.org/019e98t43 Brother Industries (Japan) ćƒ–ćƒ©ć‚¶ćƒ¼å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(46105, 'https://ror.org/019nchk62', 'no_lang_code', 1, 'https://ror.org/019nchk62 Inversa Systems (Canada)'),
(46106, 'https://ror.org/019njds38', 'en', 1, 'https://ror.org/019njds38 Universal Technical Institute'),
(46107, 'https://ror.org/019pmpn80', 'no_lang_code', 1, 'https://ror.org/019pmpn80 Stryker (United Kingdom)'),
(46108, 'https://ror.org/019pzpd68', 'no_lang_code', 1, 'https://ror.org/019pzpd68 Kodak (Israel)'),
(46109, 'https://ror.org/019tpnt53', 'en', 1, 'https://ror.org/019tpnt53 National Museum of Art Osaka å›½ē«‹å›½éš›ē¾Žč”“é¤Ø'),
(46110, 'https://ror.org/019xk7v05', 'es', 1, 'https://ror.org/019xk7v05 Fundación para la Educación y el Desarrollo Social'),
(46111, 'https://ror.org/019xzz882', 'no_lang_code', 1, 'https://ror.org/019xzz882 Deutsche Telekom (Singapore)'),
(46112, 'https://ror.org/019znhj20', 'no_lang_code', 1, 'https://ror.org/019znhj20 Schneider Electric (Australia)'),
(46113, 'https://ror.org/019zpgk48', 'en', 1, 'https://ror.org/019zpgk48 Medical Lake School District'),
(46114, 'https://ror.org/01a00et54', 'en', 1, 'https://ror.org/01a00et54 Harry S Truman Coordinating Council'),
(46115, 'https://ror.org/01a0fby34', 'en', 1, 'https://ror.org/01a0fby34 Advanced Machining Technology and Development Association å…ˆē«ÆåŠ å·„ę©Ÿę¢°ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(46116, 'https://ror.org/01a2z2x66', 'en', 1, 'https://ror.org/01a2z2x66 Cologne Institute for Economic Research Institut der deutschen Wirtschaft Kƶln'),
(46117, 'https://ror.org/01a3xr262', 'en', 1, 'https://ror.org/01a3xr262 Islamic Azad University Mobarakeh دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد مبارکه'),
(46118, 'https://ror.org/01a58zy03', 'de', 1, 'https://ror.org/01a58zy03 Blanke Meier Evers RechtsanwƤlte in Partnerschaft'),
(46119, 'https://ror.org/01ab8hq43', 'en', 1, 'https://ror.org/01ab8hq43 Open Evidence'),
(46120, 'https://ror.org/01ab9mk90', 'en', 1, 'https://ror.org/01ab9mk90 Ritsumeikan Junior and Senior High School ē«‹å‘½é¤Øäø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(46121, 'https://ror.org/01abqd782', 'no_lang_code', 1, 'https://ror.org/01abqd782 Echostar (Ukraine)'),
(46122, 'https://ror.org/01ae4qf10', 'en', 1, 'https://ror.org/01ae4qf10 CPC Heilongjiang Provincial Committee Party School äø­å…±é»‘é¾™ę±Ÿēœå§”å…šę ”'),
(46123, 'https://ror.org/01af58f81', 'no_lang_code', 1, 'https://ror.org/01af58f81 Stanley Electric (Japan) ć‚¹ć‚æćƒ³ćƒ¬ćƒ¼é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(46124, 'https://ror.org/01afrat76', 'en', 1, 'https://ror.org/01afrat76 Oita Prefectural Hiji support school å¤§åˆ†ēœŒē«‹ę—„å‡ŗę”Æę“å­¦ę ”'),
(46125, 'https://ror.org/01aj50m26', 'en', 1, 'https://ror.org/01aj50m26 Copper Development Association'),
(46126, 'https://ror.org/01ajbb580', 'en', 1, 'https://ror.org/01ajbb580 Watertown City School District'),
(46127, 'https://ror.org/01ak24c12', 'en', 1, 'https://ror.org/01ak24c12 Fraunhofer Institute for Applied Information Technology Fraunhofer-Institut für Angewandte Informationstechnik'),
(46128, 'https://ror.org/01an04p26', 'no_lang_code', 1, 'https://ror.org/01an04p26 Stryker (Israel)'),
(46129, 'https://ror.org/01ank1e73', 'de', 1, 'https://ror.org/01ank1e73 Deutsches Kupferinstitut Berufsverband'),
(46130, 'https://ror.org/01ar5kd02', 'en', 1, 'https://ror.org/01ar5kd02 Tochigi Prefectural Museum of Fine Arts ę ƒęœØēœŒē«‹ē¾Žč”“é¤Ø'),
(46131, 'https://ror.org/01aspja26', 'en', 1, 'https://ror.org/01aspja26 University of the West Indies'),
(46132, 'https://ror.org/01atcss13', 'en', 1, 'https://ror.org/01atcss13 American Association of Neurological Surgeons'),
(46133, 'https://ror.org/01atqs537', 'no_lang_code', 1, 'https://ror.org/01atqs537 Wikimedia Ukraine ВікімеГіа Україна'),
(46134, 'https://ror.org/01azggh38', 'no_lang_code', 1, 'https://ror.org/01azggh38 Sumitomo Riko (Japan) ä½å‹ē†å·„ę Ŗå¼ä¼šē¤¾'),
(46135, 'https://ror.org/01b021x78', 'en', 1, 'https://ror.org/01b021x78 Baltimore County Public Library'),
(46136, 'https://ror.org/01b123706', 'en', 1, 'https://ror.org/01b123706 Miyagi Prefectural Ishinomaki Support School å®®åŸŽēœŒē«‹ēŸ³å·»ę”Æę“å­¦ę ”'),
(46137, 'https://ror.org/01b2hfd49', 'no_lang_code', 1, 'https://ror.org/01b2hfd49 Energy Sense Finance (United States)');
INSERT INTO `rors` VALUES
(46138, 'https://ror.org/01b55ta41', 'pt', 1, 'https://ror.org/01b55ta41 Conselho Nacional de Pesquisa e Pós-graduação em Direito'),
(46139, 'https://ror.org/01b606g91', 'no_lang_code', 1, 'https://ror.org/01b606g91 Miba (Austria)'),
(46140, 'https://ror.org/01b6ear34', 'no_lang_code', 1, 'https://ror.org/01b6ear34 Sulzer (United Kingdom)'),
(46141, 'https://ror.org/01b719a04', 'en', 1, 'https://ror.org/01b719a04 International Society for Vaccines'),
(46142, 'https://ror.org/01b73x603', 'en', 1, 'https://ror.org/01b73x603 Institute of Ethnology and Folklore Studies with Ethnographic Museum Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ за ŠµŃ‚Š½Š¾Š»Š¾Š³ŠøŃ Šø фолклористика с Етнографски музей при Š‘ŠŠ'),
(46143, 'https://ror.org/01b7car24', 'en', 1, 'https://ror.org/01b7car24 Pakistan Nuclear Regulatory Authority پاکستان Ł†ŁŠŲ¤ŁƒŁ„Ų± Ų±ŁŠŚÆŁŠŁ„Ų±Ł¹ŁˆŁ‰ اثھارٹى'),
(46144, 'https://ror.org/01b7dk816', 'no_lang_code', 1, 'https://ror.org/01b7dk816 Wikimedia Serbia Š’ŠøŠŗŠøŠ¼ŠµŠ“ŠøŃ˜Š° Š”Ń€Š±ŠøŃ˜Šµ'),
(46145, 'https://ror.org/01b7ggh82', 'en', 1, 'https://ror.org/01b7ggh82 Kolej Universiti Islam Melaka University College of Islam Melaka'),
(46146, 'https://ror.org/01b7rff52', 'en', 1, 'https://ror.org/01b7rff52 Yamaguchi Prefectural Shimonoseki Industrial School å±±å£ēœŒē«‹äø‹é–¢å·„ę„­é«˜ē­‰å­¦ę ”'),
(46147, 'https://ror.org/01b98w967', 'en', 1, 'https://ror.org/01b98w967 Main Roads Western Australia'),
(46148, 'https://ror.org/01baw3d45', 'no_lang_code', 1, 'https://ror.org/01baw3d45 Shukutoku Junior College ę·‘å¾³ēŸ­ęœŸå¤§å­¦'),
(46149, 'https://ror.org/01bb7mj11', 'de', 1, 'https://ror.org/01bb7mj11 Ostalb-Klinikum Aalen'),
(46150, 'https://ror.org/01bcadh60', 'no_lang_code', 1, 'https://ror.org/01bcadh60 Manroland (Germany)'),
(46151, 'https://ror.org/01bdarh28', 'no_lang_code', 1, 'https://ror.org/01bdarh28 International Baby Food Action Network'),
(46152, 'https://ror.org/01be2k939', 'no_lang_code', 1, 'https://ror.org/01be2k939 Dai Nippon Printing (Japan) å¤§ę—„ęœ¬å°åˆ·'),
(46153, 'https://ror.org/01bggjn73', 'no_lang_code', 1, 'https://ror.org/01bggjn73 Macronix International (Taiwan)'),
(46154, 'https://ror.org/01bgmsb44', 'en', 1, 'https://ror.org/01bgmsb44 Department for International Trade'),
(46155, 'https://ror.org/01bjtb363', 'no_lang_code', 1, 'https://ror.org/01bjtb363 ProAmpac (United States)'),
(46156, 'https://ror.org/01bnqfz49', 'en', 1, 'https://ror.org/01bnqfz49 Dawliffe Hall Education Foundation'),
(46157, 'https://ror.org/01brtaa74', 'en', 1, 'https://ror.org/01brtaa74 Kani City Sunan Junior High School č˜‡å—äø­å­¦ę ”'),
(46158, 'https://ror.org/01btqj997', 'de', 1, 'https://ror.org/01btqj997 Salomon Ludwig Steinheim-Institut'),
(46159, 'https://ror.org/01bvpmp82', 'no_lang_code', 1, 'https://ror.org/01bvpmp82 Advantest (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒćƒ³ćƒ†ć‚¹ćƒˆ'),
(46160, 'https://ror.org/01bvqg661', 'no_lang_code', 1, 'https://ror.org/01bvqg661 Nikon (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ć‚³ćƒ³'),
(46161, 'https://ror.org/01byxk048', 'en', 1, 'https://ror.org/01byxk048 National Hospital Organization Iobyoin å›½ē«‹ē—…é™¢ę©Ÿę§‹åŒ»ēŽ‹ē—…é™¢'),
(46162, 'https://ror.org/01bzz5b22', 'en', 1, 'https://ror.org/01bzz5b22 Islamic Azad University Dehaghan دانؓگاه Ų¢Ų²Ų§ŲÆ دهاقان Ų§Ų³Ł„Ų§Ł…ŪŒ'),
(46163, 'https://ror.org/01c00xz18', 'no_lang_code', 1, 'https://ror.org/01c00xz18 Visiscience (United States)'),
(46164, 'https://ror.org/01c3b5v35', 'en', 1, 'https://ror.org/01c3b5v35 International Institute of Advanced Islamic Studies'),
(46165, 'https://ror.org/01c3enh80', 'en', 1, 'https://ror.org/01c3enh80 Northwest African American Museum'),
(46166, 'https://ror.org/01c442234', 'it', 1, 'https://ror.org/01c442234 Istituzione delle Biblioteche di Roma'),
(46167, 'https://ror.org/01c4r0z03', 'no_lang_code', 1, 'https://ror.org/01c4r0z03 Applied Materials (Singapore)'),
(46168, 'https://ror.org/01c5khf59', 'en', 1, 'https://ror.org/01c5khf59 Tourism College of Zhejiang ęµ™ę±Ÿę—…ęøøčŒäøšå­¦é™¢'),
(46169, 'https://ror.org/01c5ysq07', 'en', 1, 'https://ror.org/01c5ysq07 Forest Industry Research Institute Viện NghiĆŖn cứu CĆ“ng nghiệp rừng'),
(46170, 'https://ror.org/01c697313', 'en', 1, 'https://ror.org/01c697313 National Institute of Technology, Kumamoto College ē†Šęœ¬é«˜ē­‰å°‚é–€å­¦ę ”'),
(46171, 'https://ror.org/01c78gc17', 'no_lang_code', 1, 'https://ror.org/01c78gc17 Immunomic Therapeutics (United States)'),
(46172, 'https://ror.org/01c7g8398', 'fi', 1, 'https://ror.org/01c7g8398 Wikimedia Suomi'),
(46173, 'https://ror.org/01c7wjq44', 'en', 1, 'https://ror.org/01c7wjq44 Contra Costa County Library'),
(46174, 'https://ror.org/01c9fx689', 'no_lang_code', 1, 'https://ror.org/01c9fx689 Tsutsujigaoka Elementary School åå¼µåø‚ć¤ć¤ć˜ćŒćŠć‹å°å­¦ę ”'),
(46175, 'https://ror.org/01cc1db63', 'no_lang_code', 1, 'https://ror.org/01cc1db63 Carl Zeiss (Australia)'),
(46176, 'https://ror.org/01chd1z63', 'no_lang_code', 1, 'https://ror.org/01chd1z63 Joyson Safety Systems (Germany)'),
(46177, 'https://ror.org/01chj3z31', 'en', 1, 'https://ror.org/01chj3z31 Associação Médica Brasileira Brazilian Medical Association'),
(46178, 'https://ror.org/01chnvp81', 'no_lang_code', 1, 'https://ror.org/01chnvp81 Flow International Corporation (Germany)'),
(46179, 'https://ror.org/01chtz990', 'en', 1, 'https://ror.org/01chtz990 Foundation for Louisiana'),
(46180, 'https://ror.org/01cjj0660', 'en', 1, 'https://ror.org/01cjj0660 Institute of Environment and Resource System ē’°å¢ƒč³‡ęŗć‚·ć‚¹ćƒ†ćƒ ē·åˆē ”ē©¶ę‰€'),
(46181, 'https://ror.org/01ckbhd80', 'en', 1, 'https://ror.org/01ckbhd80 National Australia Bank'),
(46182, 'https://ror.org/01cm06k44', 'en', 1, 'https://ror.org/01cm06k44 American University in London'),
(46183, 'https://ror.org/01cm93p29', 'en', 1, 'https://ror.org/01cm93p29 Fukui Prefectural Dinosaur Museum ē¦äŗ•ēœŒē«‹ęē«œåšē‰©é¤Ø'),
(46184, 'https://ror.org/01cnyad13', 'en', 1, 'https://ror.org/01cnyad13 People''s Liberation Army 401 Hospital 中国人民解放军第401医院'),
(46185, 'https://ror.org/01cnzjq23', 'en', 1, 'https://ror.org/01cnzjq23 Fujimoto Dental and Oral Surgery Clinic č—¤ęœ¬ę­Æē§‘å£č…”å¤–ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(46186, 'https://ror.org/01crbhp32', 'fi', 1, 'https://ror.org/01crbhp32 Lounais-Suomen SyƶpƤyhdistys'),
(46187, 'https://ror.org/01crf4k59', 'en', 1, 'https://ror.org/01crf4k59 University of Modern Sciences Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(46188, 'https://ror.org/01crm2177', 'en', 1, 'https://ror.org/01crm2177 Koshien Junior College ē”²å­åœ’ēŸ­ęœŸå¤§å­¦'),
(46189, 'https://ror.org/01ctx9289', 'pt', 1, 'https://ror.org/01ctx9289 Fundação Jorge Duprat Figueiredo de Segurança e Medicina do Trabalho'),
(46190, 'https://ror.org/01cwwvj38', 'no_lang_code', 1, 'https://ror.org/01cwwvj38 BOE Technology Group (China)'),
(46191, 'https://ror.org/01cxpkg92', 'no_lang_code', 1, 'https://ror.org/01cxpkg92 Percuros (Netherlands)'),
(46192, 'https://ror.org/01cywgd53', 'en', 1, 'https://ror.org/01cywgd53 American College of Radiology Imaging Network'),
(46193, 'https://ror.org/01cyx8116', 'en', 1, 'https://ror.org/01cyx8116 West Georgia Technical College'),
(46194, 'https://ror.org/01cyxvw51', 'en', 1, 'https://ror.org/01cyxvw51 Nuclear Institute for Agriculture and Biology'),
(46195, 'https://ror.org/01cz0ts58', 'no_lang_code', 1, 'https://ror.org/01cz0ts58 Lucent Optics (United States)'),
(46196, 'https://ror.org/01d08jk87', 'en', 1, 'https://ror.org/01d08jk87 BARKA Foundation'),
(46197, 'https://ror.org/01d0tvs72', 'en', 1, 'https://ror.org/01d0tvs72 Mesothelioma Applied Research Foundation'),
(46198, 'https://ror.org/01d186671', 'no_lang_code', 1, 'https://ror.org/01d186671 Tecnic (Italy)'),
(46199, 'https://ror.org/01d36yb27', 'no_lang_code', 1, 'https://ror.org/01d36yb27 Kobe Steel (Japan) ę Ŗå¼ä¼šē¤¾ē„žęˆøč£½é‹¼ę‰€'),
(46200, 'https://ror.org/01d582b74', 'en', 1, 'https://ror.org/01d582b74 National Transportation Safety Board'),
(46201, 'https://ror.org/01d6dvg07', 'en', 1, 'https://ror.org/01d6dvg07 North Dakota Protection and Advocacy Project'),
(46202, 'https://ror.org/01d6jx411', 'en', 1, 'https://ror.org/01d6jx411 Children’s AIDS Fund International'),
(46203, 'https://ror.org/01d71b291', 'no_lang_code', 1, 'https://ror.org/01d71b291 British American Tobacco (Canada)'),
(46204, 'https://ror.org/01d809t39', 'es', 1, 'https://ror.org/01d809t39 Universidad de Sonsonate'),
(46205, 'https://ror.org/01d9rtb50', 'en', 1, 'https://ror.org/01d9rtb50 Kumamoto Prefectural Board of Education ē†Šęœ¬ēœŒę•™č‚²å§”å“”ä¼š'),
(46206, 'https://ror.org/01dan7p53', 'en', 1, 'https://ror.org/01dan7p53 Guangzhou Vocational College of Science and Technology å¹æå·žē§‘ęŠ€čŒäøšęŠ€ęœÆå­¦é™¢'),
(46207, 'https://ror.org/01dbckq22', 'en', 1, 'https://ror.org/01dbckq22 KrajskƔ HygienickƔ Stanice MoravskoslezskƩho Kraje Regional Public Health Authority of Moravian - Silesian Region'),
(46208, 'https://ror.org/01dcaj468', 'no_lang_code', 1, 'https://ror.org/01dcaj468 Nokia (Ireland)'),
(46209, 'https://ror.org/01dez6v88', 'en', 1, 'https://ror.org/01dez6v88 International Planned Parenthood Federation'),
(46210, 'https://ror.org/01dfm1a30', 'en', 1, 'https://ror.org/01dfm1a30 National Institute of Education Sciences 中国教育科学研究院'),
(46211, 'https://ror.org/01dfmhm16', 'en', 1, 'https://ror.org/01dfmhm16 British Blood Transfusion Society'),
(46212, 'https://ror.org/01dgjdp93', 'en', 1, 'https://ror.org/01dgjdp93 Hanseatic Institute of Technology'),
(46213, 'https://ror.org/01dmzah58', 'en', 1, 'https://ror.org/01dmzah58 Foundation for Environment Climate and Technology'),
(46214, 'https://ror.org/01drtms03', 'pt', 1, 'https://ror.org/01drtms03 Instituto Federal de Educação, Ciência e Tecnologia do Sul de Minas, Instituto Federal do Sul de Minas'),
(46215, 'https://ror.org/01dw3yn87', 'no_lang_code', 1, 'https://ror.org/01dw3yn87 IHS Markit (Australia)'),
(46216, 'https://ror.org/01dwc1797', 'en', 1, 'https://ror.org/01dwc1797 Northern Ireland Hospice'),
(46217, 'https://ror.org/01dwwtp07', 'en', 1, 'https://ror.org/01dwwtp07 Tokyo Metropolitan East High School ę±äŗ¬éƒ½ē«‹ę±é«˜ē­‰å­¦ę ”'),
(46218, 'https://ror.org/01dx0e286', 'en', 1, 'https://ror.org/01dx0e286 Osaka Prefectural Horticulture High School å¤§é˜Ŗåŗœē«‹åœ’čŠøé«˜ē­‰å­¦ę ”'),
(46219, 'https://ror.org/01dxqnh08', 'en', 1, 'https://ror.org/01dxqnh08 Mie Prefecture TatsuTsu Commercial High School äø‰é‡ēœŒē«‹ę“„å•†ę„­é«˜ē­‰å­¦ę ”'),
(46220, 'https://ror.org/01dyx2092', 'no_lang_code', 1, 'https://ror.org/01dyx2092 Advanced Electrophoresis Solutions (Canada)'),
(46221, 'https://ror.org/01e4dyg78', 'no_lang_code', 1, 'https://ror.org/01e4dyg78 Honeywell (Australia)'),
(46222, 'https://ror.org/01e55bn36', 'no_lang_code', 1, 'https://ror.org/01e55bn36 Lutron Electronics (United States)'),
(46223, 'https://ror.org/01e5f0y27', 'no_lang_code', 1, 'https://ror.org/01e5f0y27 Evernia (Czechia)'),
(46224, 'https://ror.org/01e6m8g97', 'en', 1, 'https://ror.org/01e6m8g97 Fukui City Museum of Natural History'),
(46225, 'https://ror.org/01e6tbq77', 'pt', 1, 'https://ror.org/01e6tbq77 Sociedade Latino Americana de Biomateriais e ƓrgĆ£os Artificiais'),
(46226, 'https://ror.org/01eagw932', 'tr', 1, 'https://ror.org/01eagw932 Ƈamlıca Erdem Hastahanesi'),
(46227, 'https://ror.org/01ee8e975', 'no_lang_code', 1, 'https://ror.org/01ee8e975 Showagakuin Junior College ę˜­å’Œå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(46228, 'https://ror.org/01efw7g62', 'en', 1, 'https://ror.org/01efw7g62 North Carolina Association for Biomedical Research'),
(46229, 'https://ror.org/01efzmh71', 'en', 1, 'https://ror.org/01efzmh71 Manhattan Institute for Policy Research'),
(46230, 'https://ror.org/01emdt307', 'fr', 1, 'https://ror.org/01emdt307 UniversitƩ de Fianarantsoa'),
(46231, 'https://ror.org/01en4s460', 'en', 1, 'https://ror.org/01en4s460 Twin Cities Orthopedics'),
(46232, 'https://ror.org/01erb2j90', 'en', 1, 'https://ror.org/01erb2j90 Baku Business University Bakı Biznes Universiteti Бакинский Университет Бизнеса'),
(46233, 'https://ror.org/01etfxm56', 'en', 1, 'https://ror.org/01etfxm56 China National Bamboo Research Center å›½å®¶ęž—äøšå±€ē«¹å­ē ”ē©¶å¼€å‘äø­åæƒ'),
(46234, 'https://ror.org/01etv2861', 'no_lang_code', 1, 'https://ror.org/01etv2861 Tokyo Metropolitan Musashigaoka High School ę±äŗ¬éƒ½ē«‹ę­¦č”µäø˜é«˜ē­‰å­¦ę ”'),
(46235, 'https://ror.org/01ew37b76', 'en', 1, 'https://ror.org/01ew37b76 Collaboration for Australian Weather and Climate Research'),
(46236, 'https://ror.org/01exnz278', 'no_lang_code', 1, 'https://ror.org/01exnz278 GEM Tox Consultants & Labs (United States)'),
(46237, 'https://ror.org/01eyenr26', 'no_lang_code', 1, 'https://ror.org/01eyenr26 Dolby (United States)'),
(46238, 'https://ror.org/01ezmdv61', 'no_lang_code', 1, 'https://ror.org/01ezmdv61 BitCan (Canada)'),
(46239, 'https://ror.org/01ezqah87', 'en', 1, 'https://ror.org/01ezqah87 Kitakyushu National College of Technology åŒ—ä¹å·žå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(46240, 'https://ror.org/01ezy0w74', 'no_lang_code', 1, 'https://ror.org/01ezy0w74 Bayer (New Zealand)'),
(46241, 'https://ror.org/01f01fm15', 'fr', 1, 'https://ror.org/01f01fm15 NephroCare Tassin-Charcot'),
(46242, 'https://ror.org/01f0mje62', 'en', 1, 'https://ror.org/01f0mje62 American Medical Women''s Association'),
(46243, 'https://ror.org/01f0q1x96', 'no_lang_code', 1, 'https://ror.org/01f0q1x96 EVRAZ (Canada)'),
(46244, 'https://ror.org/01f10xn48', 'no_lang_code', 1, 'https://ror.org/01f10xn48 NTN (Japan) NTNę Ŗå¼ä¼šē¤¾'),
(46245, 'https://ror.org/01f18s848', 'no_lang_code', 1, 'https://ror.org/01f18s848 Mission Bio (United States)'),
(46246, 'https://ror.org/01f3a0g74', 'en', 1, 'https://ror.org/01f3a0g74 Dayton Clinical Oncology Program'),
(46247, 'https://ror.org/01f753h33', 'no_lang_code', 1, 'https://ror.org/01f753h33 Accucaps (Canada)'),
(46248, 'https://ror.org/01f7hds15', 'en', 1, 'https://ror.org/01f7hds15 Kobe City Museum ē„žęˆøåø‚ē«‹åšē‰©é¤Ø'),
(46249, 'https://ror.org/01f8c3y78', 'no_lang_code', 1, 'https://ror.org/01f8c3y78 STMicroelectronics (United States)'),
(46250, 'https://ror.org/01f8j5z75', 'no_lang_code', 1, 'https://ror.org/01f8j5z75 Maidana Research (United States)'),
(46251, 'https://ror.org/01f9db456', 'en', 1, 'https://ror.org/01f9db456 Nitobe Bunka College ę–°ęø”ęˆøę–‡åŒ–ēŸ­ęœŸå¤§å­¦'),
(46252, 'https://ror.org/01fbc7819', 'fr', 1, 'https://ror.org/01fbc7819 Centre Hospitalier de Lens'),
(46253, 'https://ror.org/01fdhar48', 'en', 1, 'https://ror.org/01fdhar48 Ibaraki Nature Museum čŒØåŸŽēœŒč‡Ŗē„¶åšē‰©é¤Ø'),
(46254, 'https://ror.org/01fejj311', 'en', 1, 'https://ror.org/01fejj311 International Planned Parenthood Federation'),
(46255, 'https://ror.org/01ffhf815', 'no_lang_code', 1, 'https://ror.org/01ffhf815 Flex (Germany)'),
(46256, 'https://ror.org/01ffrrm18', 'en', 1, 'https://ror.org/01ffrrm18 Tokushima Prefectural Police 徳島県警察本部'),
(46257, 'https://ror.org/01fhp6n41', 'de', 1, 'https://ror.org/01fhp6n41 Forschungsinstitut für Logistik'),
(46258, 'https://ror.org/01fht1s55', 'en', 1, 'https://ror.org/01fht1s55 Kyoto Prefectural Nishimaizuru High School äŗ¬éƒ½åŗœē«‹č„æčˆžé¶“é«˜ē­‰å­¦ę ”'),
(46259, 'https://ror.org/01fjm5093', 'no_lang_code', 1, 'https://ror.org/01fjm5093 CM Technologies (United States)'),
(46260, 'https://ror.org/01fjnma13', 'no_lang_code', 1, 'https://ror.org/01fjnma13 Advanced Materials Corporation (United States)'),
(46261, 'https://ror.org/01fmd5559', 'en', 1, 'https://ror.org/01fmd5559 British Deer Society'),
(46262, 'https://ror.org/01fp49n29', 'en', 1, 'https://ror.org/01fp49n29 Gakushuin Primary School å­¦ēæ’é™¢åˆē­‰ē§‘'),
(46263, 'https://ror.org/01fp77380', 'no_lang_code', 1, 'https://ror.org/01fp77380 Nichia Corporation (Japan) ę—„äŗœåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(46264, 'https://ror.org/01fq4h057', 'no_lang_code', 1, 'https://ror.org/01fq4h057 NuVue Therapeutics (United States)'),
(46265, 'https://ror.org/01fqm7b41', 'no_lang_code', 1, 'https://ror.org/01fqm7b41 SYNERGX Technologies (Canada)'),
(46266, 'https://ror.org/01ftbyb35', 'no_lang_code', 1, 'https://ror.org/01ftbyb35 Johnson Controls (United Kingdom)'),
(46267, 'https://ror.org/01ftq2j79', 'en', 1, 'https://ror.org/01ftq2j79 Liaoning Provincial Food and Drug Administration č¾½å®ēœé£Ÿå“čÆå“ē›‘ē£ē®”ē†å±€'),
(46268, 'https://ror.org/01fwca479', 'en', 1, 'https://ror.org/01fwca479 Consortium of European Research Libraries'),
(46269, 'https://ror.org/01fy36683', 'no', 1, 'https://ror.org/01fy36683 Revmatismesykehuset'),
(46270, 'https://ror.org/01fykd523', 'en', 1, 'https://ror.org/01fykd523 Queensland Rail'),
(46271, 'https://ror.org/01fykt827', 'no_lang_code', 1, 'https://ror.org/01fykt827 Curtiss-Wright (United Kingdom)'),
(46272, 'https://ror.org/01g2vd413', 'no_lang_code', 1, 'https://ror.org/01g2vd413 Hunan Mawangdui Hospital'),
(46273, 'https://ror.org/01g3dya06', 'en', 1, 'https://ror.org/01g3dya06 Lancaster University Ghana'),
(46274, 'https://ror.org/01g3szs55', 'no_lang_code', 1, 'https://ror.org/01g3szs55 Osaka Prefectural Shiroyama High School å¤§é˜Ŗåŗœē«‹åŸŽå±±é«˜ē­‰å­¦ę ”'),
(46275, 'https://ror.org/01g46vk97', 'en', 1, 'https://ror.org/01g46vk97 Hokkaido Kitami Hokuto High School åŒ—ęµ·é“åŒ—č¦‹åŒ—ę–—é«˜ē­‰å­¦ę ”'),
(46276, 'https://ror.org/01g4z8x72', 'en', 1, 'https://ror.org/01g4z8x72 Gunma Industrial Technology Center ē¾¤é¦¬ēœŒē«‹ē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(46277, 'https://ror.org/01g4ze844', 'no_lang_code', 1, 'https://ror.org/01g4ze844 TechnipFMC (Italy)'),
(46278, 'https://ror.org/01g571893', 'no_lang_code', 1, 'https://ror.org/01g571893 LuK Lamellen und Kupplungsbau (Germany)'),
(46279, 'https://ror.org/01g6f0r63', 'en', 1, 'https://ror.org/01g6f0r63 Nonproliferation Policy Education Center'),
(46280, 'https://ror.org/01g6rdp79', 'en', 1, 'https://ror.org/01g6rdp79 Gunma Nikken Polytechnic College 群馬旄建巄科専門学栔'),
(46281, 'https://ror.org/01g8cdp94', 'en', 1, 'https://ror.org/01g8cdp94 Ningxia Hui Autonomous Region Peoples Hospital å®å¤å›žę—č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(46282, 'https://ror.org/01g8tqt55', 'es', 1, 'https://ror.org/01g8tqt55 Universidad del Sol'),
(46283, 'https://ror.org/01ga17f59', 'no_lang_code', 1, 'https://ror.org/01ga17f59 Prime Behavior Testing Laboratories (United States)'),
(46284, 'https://ror.org/01gb59s19', 'no_lang_code', 1, 'https://ror.org/01gb59s19 SGS (China)'),
(46285, 'https://ror.org/01gdpc846', 'es', 1, 'https://ror.org/01gdpc846 Instituto Tecnológico de Apizaco'),
(46286, 'https://ror.org/01ge2tp14', 'en', 1, 'https://ror.org/01ge2tp14 Fukui Prefecture Special Education Center ē¦äŗ•ēœŒē‰¹åˆ„ę”Æę“ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46287, 'https://ror.org/01ge62k30', 'en', 1, 'https://ror.org/01ge62k30 Ivory Coast Medical Relief Team'),
(46288, 'https://ror.org/01gfjdb18', 'no_lang_code', 1, 'https://ror.org/01gfjdb18 Lenovo (Japan)'),
(46289, 'https://ror.org/01gfr8917', 'no_lang_code', 1, 'https://ror.org/01gfr8917 Mahle (United Kingdom)'),
(46290, 'https://ror.org/01ghaq010', 'en', 1, 'https://ror.org/01ghaq010 Funders Network on Population, Reproductive Health and Rights'),
(46291, 'https://ror.org/01gjjxa05', 'no_lang_code', 1, 'https://ror.org/01gjjxa05 International Game Technology (Germany)'),
(46292, 'https://ror.org/01gjxh181', 'en', 1, 'https://ror.org/01gjxh181 Tsu City College äø‰é‡ēŸ­ęœŸå¤§å­¦'),
(46293, 'https://ror.org/01gk2j051', 'no_lang_code', 1, 'https://ror.org/01gk2j051 Magna International (Germany)'),
(46294, 'https://ror.org/01gq10q51', 'de', 1, 'https://ror.org/01gq10q51 Akademie für Technikfolgenabschätzung'),
(46295, 'https://ror.org/01gqnz112', 'en', 1, 'https://ror.org/01gqnz112 Vinogradov Institute of Geochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геохимии им. А.П. ВинограГова Š”Šž Š ŠŠ'),
(46296, 'https://ror.org/01gr8nm68', 'no_lang_code', 1, 'https://ror.org/01gr8nm68 Rockwell Automation (Germany)'),
(46297, 'https://ror.org/01grmf894', 'en', 1, 'https://ror.org/01grmf894 Smith Institute'),
(46298, 'https://ror.org/01grxsm65', 'no_lang_code', 1, 'https://ror.org/01grxsm65 ExxonMobil (Norway)'),
(46299, 'https://ror.org/01gtsa866', 'en', 1, 'https://ror.org/01gtsa866 Institute of Biosciences and Bioresources Istituto di Bioscienze e Biorisorse'),
(46300, 'https://ror.org/01gtsvp41', 'en', 1, 'https://ror.org/01gtsvp41 Medical Corporation River Mizuma hospital ćƒŸć‚ŗćƒžē—…é™¢'),
(46301, 'https://ror.org/01gw9ve49', 'no_lang_code', 1, 'https://ror.org/01gw9ve49 EagleBurgmann (Japan)'),
(46302, 'https://ror.org/01gwe8p69', 'no_lang_code', 1, 'https://ror.org/01gwe8p69 T2 Systems (Canada)'),
(46303, 'https://ror.org/01gyg7015', 'no_lang_code', 1, 'https://ror.org/01gyg7015 Mallinckrodt (Japan)'),
(46304, 'https://ror.org/01gzye136', 'en', 1, 'https://ror.org/01gzye136 European Centre for Theoretical Studies in Nuclear Physics and Related Areas'),
(46305, 'https://ror.org/01gzzmb44', 'no_lang_code', 1, 'https://ror.org/01gzzmb44 AMF Bakery Systems (United States)'),
(46306, 'https://ror.org/01h0eq657', 'no_lang_code', 1, 'https://ror.org/01h0eq657 Henkel (United States)'),
(46307, 'https://ror.org/01h18yg90', 'en', 1, 'https://ror.org/01h18yg90 Oita Prefectural Board of Education å¤§åˆ†ēœŒę•™č‚²å§”å“”ä¼š'),
(46308, 'https://ror.org/01h1v4623', 'en', 1, 'https://ror.org/01h1v4623 Association for the Severely Handicapped'),
(46309, 'https://ror.org/01h3yks88', 'en', 1, 'https://ror.org/01h3yks88 New York Institute of Technology'),
(46310, 'https://ror.org/01h43q230', 'es', 1, 'https://ror.org/01h43q230 Universidad Modular Abierta'),
(46311, 'https://ror.org/01h4kpz66', 'en', 1, 'https://ror.org/01h4kpz66 Feza Gürsey Enstitüsü Feza Gürsey Institute'),
(46312, 'https://ror.org/01h8yh819', 'pt', 1, 'https://ror.org/01h8yh819 Associação Brasileira de Relações Internacionais'),
(46313, 'https://ror.org/01h9gbf83', 'en', 1, 'https://ror.org/01h9gbf83 Fukushima Prefectural Museum of Art ē¦å³¶ēœŒē«‹ē¾Žč”“é¤Ø'),
(46314, 'https://ror.org/01hadm580', 'no_lang_code', 1, 'https://ror.org/01hadm580 Caterpillar (United Kingdom)'),
(46315, 'https://ror.org/01hbm5940', 'en', 1, 'https://ror.org/01hbm5940 Jiangxi Maternal and Child Health Hospital ę±Ÿč„æēœå¦‡å¹¼äæå„é™¢'),
(46316, 'https://ror.org/01hbz8t53', 'no_lang_code', 1, 'https://ror.org/01hbz8t53 Wipro (Singapore)'),
(46317, 'https://ror.org/01hcbtz52', 'no_lang_code', 1, 'https://ror.org/01hcbtz52 Dexin (Uruguay)'),
(46318, 'https://ror.org/01hdj9e73', 'no_lang_code', 1, 'https://ror.org/01hdj9e73 Universal Filters (United States)'),
(46319, 'https://ror.org/01hdqf863', 'no_lang_code', 1, 'https://ror.org/01hdqf863 ProTechSure Scientific (United States)'),
(46320, 'https://ror.org/01hdz2136', 'en', 1, 'https://ror.org/01hdz2136 Okayama Prefectural Tsuyama High School å²”å±±ēœŒē«‹ę“„å±±äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(46321, 'https://ror.org/01hdzgr78', 'en', 1, 'https://ror.org/01hdzgr78 Education Pioneers'),
(46322, 'https://ror.org/01he2y745', 'no_lang_code', 1, 'https://ror.org/01he2y745 Suzuki (Japan) ć‚¹ć‚ŗć‚­ę Ŗå¼ä¼šē¤¾'),
(46323, 'https://ror.org/01hesjx24', 'en', 1, 'https://ror.org/01hesjx24 Osaka City Museum of Fine Arts å¤§é˜Ŗåø‚ē«‹ē¾Žč”“é¤Ø'),
(46324, 'https://ror.org/01hf47s86', 'no_lang_code', 1, 'https://ror.org/01hf47s86 Turbo Power Systems (United Kingdom)'),
(46325, 'https://ror.org/01hf9n917', 'no_lang_code', 1, 'https://ror.org/01hf9n917 International Game Technology (United States)'),
(46326, 'https://ror.org/01hfc4a93', 'en', 1, 'https://ror.org/01hfc4a93 European Network for Smoking and Tobacco Prevention'),
(46327, 'https://ror.org/01hght844', 'no_lang_code', 1, 'https://ror.org/01hght844 Lattice Semiconductor (United States)'),
(46328, 'https://ror.org/01hjd1605', 'pt', 1, 'https://ror.org/01hjd1605 Escola TƩcnica de eletrƓnic'),
(46329, 'https://ror.org/01hk6w656', 'en', 1, 'https://ror.org/01hk6w656 Vietnam Academy of Social Sciences Viện HĆ n lĆ¢m Khoa hį»c xĆ£ hį»™i Việt Nam'),
(46330, 'https://ror.org/01hm2rz97', 'no_lang_code', 1, 'https://ror.org/01hm2rz97 Cool Energy (United States)'),
(46331, 'https://ror.org/01hmams76', 'de', 1, 'https://ror.org/01hmams76 Klinik Friedenweiler'),
(46332, 'https://ror.org/01hn5j140', 'no_lang_code', 1, 'https://ror.org/01hn5j140 Atlas Copco (Austria)'),
(46333, 'https://ror.org/01hsywd60', 'en', 1, 'https://ror.org/01hsywd60 Poquoson City Public Schools'),
(46334, 'https://ror.org/01htmkd76', 'pt', 1, 'https://ror.org/01htmkd76 Célia Helena Centro de Artes e Educação'),
(46335, 'https://ror.org/01htp6d30', 'no_lang_code', 1, 'https://ror.org/01htp6d30 Saint-Gobain (United Kingdom)'),
(46336, 'https://ror.org/01hvjym56', 'en', 1, 'https://ror.org/01hvjym56 Shaoxing City Women and Children Hospital ē»å…“åø‚å¦‡å¹¼äæå„é™¢'),
(46337, 'https://ror.org/01hwrdv70', 'no_lang_code', 1, 'https://ror.org/01hwrdv70 Silence Therapeutics (Germany)'),
(46338, 'https://ror.org/01hx09q43', 'en', 1, 'https://ror.org/01hx09q43 Alberta Medical Association'),
(46339, 'https://ror.org/01j01kg74', 'no_lang_code', 1, 'https://ror.org/01j01kg74 Akita Innovation (United States)'),
(46340, 'https://ror.org/01j2e9t73', 'en', 1, 'https://ror.org/01j2e9t73 People’s Hospital of Linqing äø“ęø…åø‚äŗŗę°‘åŒ»é™¢'),
(46341, 'https://ror.org/01j495q26', 'en', 1, 'https://ror.org/01j495q26 Central Institute for Research on Cattle'),
(46342, 'https://ror.org/01j4vgr28', 'no_lang_code', 1, 'https://ror.org/01j4vgr28 Essilor (Germany)'),
(46343, 'https://ror.org/01j5h7116', 'no_lang_code', 1, 'https://ror.org/01j5h7116 Bluewater Power Distribution (Canada)'),
(46344, 'https://ror.org/01j6zr344', 'en', 1, 'https://ror.org/01j6zr344 Ministry of Environment'),
(46345, 'https://ror.org/01j88m682', 'no_lang_code', 1, 'https://ror.org/01j88m682 Nifco (Japan) ćƒ‹ćƒ•ć‚³'),
(46346, 'https://ror.org/01j8dxy82', 'en', 1, 'https://ror.org/01j8dxy82 Global Science and Technology Forum'),
(46347, 'https://ror.org/01jatd098', 'fr', 1, 'https://ror.org/01jatd098 SociƩtƩ FranƧaise de MƩdecine Vasculaire'),
(46348, 'https://ror.org/01jb93665', 'en', 1, 'https://ror.org/01jb93665 Business-Higher Education Forum'),
(46349, 'https://ror.org/01jcyrc18', 'en', 1, 'https://ror.org/01jcyrc18 Fukushima Prefectural Education Center ē¦å³¶ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46350, 'https://ror.org/01jdqqg29', 'en', 1, 'https://ror.org/01jdqqg29 Indian Council for Research on International Economic Relations'),
(46351, 'https://ror.org/01jfy6x14', 'no_lang_code', 1, 'https://ror.org/01jfy6x14 Canon Anelva (Japan) ć‚­ćƒ¤ćƒŽćƒ³ć‚¢ćƒćƒ«ćƒ'),
(46352, 'https://ror.org/01jmr1174', 'es', 1, 'https://ror.org/01jmr1174 Universidad Tecnológica de El Salvador'),
(46353, 'https://ror.org/01jn7ba52', 'no_lang_code', 1, 'https://ror.org/01jn7ba52 Halliburton (United Kingdom)'),
(46354, 'https://ror.org/01jqh6j63', 'no_lang_code', 1, 'https://ror.org/01jqh6j63 Finisar (United States)'),
(46355, 'https://ror.org/01jse7033', 'en', 1, 'https://ror.org/01jse7033 Asbestos Diseases Research Institute'),
(46356, 'https://ror.org/01jsrac29', 'no_lang_code', 1, 'https://ror.org/01jsrac29 Broadcom (Israel)'),
(46357, 'https://ror.org/01jtx4m19', 'en', 1, 'https://ror.org/01jtx4m19 Central Society for Clinical and Translational Research'),
(46358, 'https://ror.org/01jtz8t69', 'en', 1, 'https://ror.org/01jtz8t69 Gemsville Technical University'),
(46359, 'https://ror.org/01jz2q474', 'no_lang_code', 1, 'https://ror.org/01jz2q474 bioMASON (United States)'),
(46360, 'https://ror.org/01jzaah84', 'no_lang_code', 1, 'https://ror.org/01jzaah84 Asahide Gakuen ę—­å‡ŗå­¦åœ’'),
(46361, 'https://ror.org/01k2et926', 'no_lang_code', 1, 'https://ror.org/01k2et926 Chemring Countermeasures (United Kingdom)'),
(46362, 'https://ror.org/01k2z4866', 'no_lang_code', 1, 'https://ror.org/01k2z4866 Harman (China)'),
(46363, 'https://ror.org/01k4g2w20', 'en', 1, 'https://ror.org/01k4g2w20 Japan Association for Development of Community Medicine å…¬ē›Šē¤¾å›£ę³•äŗŗ åœ°åŸŸåŒ»ē™‚ęŒÆčˆˆå”ä¼š'),
(46364, 'https://ror.org/01k56kn83', 'en', 1, 'https://ror.org/01k56kn83 Guangxi Subtropical Crops Research Institute å¹æč„æäŗšēƒ­åø¦ä½œē‰©ē ”ē©¶ę‰€'),
(46365, 'https://ror.org/01k789405', 'en', 1, 'https://ror.org/01k789405 Schweizerische Herzstiftung Swiss Heart Foundation'),
(46366, 'https://ror.org/01k7bd990', 'en', 1, 'https://ror.org/01k7bd990 Nishigaoka Elementary School ę“„åø‚ē«‹č„æćŒäø˜å°å­¦ę ”'),
(46367, 'https://ror.org/01k8jf979', 'no_lang_code', 1, 'https://ror.org/01k8jf979 Protec-Style (Canada)'),
(46368, 'https://ror.org/01k8z5j70', 'es', 1, 'https://ror.org/01k8z5j70 Universidad Don Bosco'),
(46369, 'https://ror.org/01kd5wn07', 'no_lang_code', 1, 'https://ror.org/01kd5wn07 Xperi (Ireland)'),
(46370, 'https://ror.org/01kg4f866', 'no_lang_code', 1, 'https://ror.org/01kg4f866 EchoStar (United Kingdom)'),
(46371, 'https://ror.org/01kgebd76', 'en', 1, 'https://ror.org/01kgebd76 Iwate Museum of Art å²©ę‰‹ēœŒē«‹ē¾Žč”“é¤Ø'),
(46372, 'https://ror.org/01kgg9w93', 'en', 1, 'https://ror.org/01kgg9w93 Ibaraki Prefectural Ota second high school čŒØåŸŽēœŒē«‹å¤Ŗē”°ē¬¬äŗŒé«˜ē­‰å­¦ę ”'),
(46373, 'https://ror.org/01kkgy069', 'de', 1, 'https://ror.org/01kkgy069 Klinikum Itzehoe'),
(46374, 'https://ror.org/01km14z09', 'en', 1, 'https://ror.org/01km14z09 Institute of Applied Physics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГної фізики ŠŠŠ України'),
(46375, 'https://ror.org/01kmf8n06', 'no_lang_code', 1, 'https://ror.org/01kmf8n06 Conversant (Canada)'),
(46376, 'https://ror.org/01kp4cp54', 'en', 1, 'https://ror.org/01kp4cp54 All Russia Research Institute of Automatics ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики та енергетики'),
(46377, 'https://ror.org/01kp51d05', 'en', 1, 'https://ror.org/01kp51d05 Osaka Municipal Ikuno Technical High School å¤§é˜Ŗåø‚ē«‹ē”Ÿé‡Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(46378, 'https://ror.org/01kq4az79', 'no_lang_code', 1, 'https://ror.org/01kq4az79 Nitto (Japan) ę—„ę±é›»å·„ę Ŗå¼ä¼šē¤¾'),
(46379, 'https://ror.org/01kqfrx63', 'en', 1, 'https://ror.org/01kqfrx63 Miyagi Prefecture Furukawa dawn High School å®®åŸŽēœŒå¤å·é»Žę˜Žäø­å­¦ę ”'),
(46380, 'https://ror.org/01kr38871', 'en', 1, 'https://ror.org/01kr38871 Niigata Prefectural Board of Education'),
(46381, 'https://ror.org/01kr9ze74', 'en', 1, 'https://ror.org/01kr9ze74 The Third People''s Hospital of Dalian City å¤§čæžåø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(46382, 'https://ror.org/01ktf2g48', 'no_lang_code', 1, 'https://ror.org/01ktf2g48 BorƩa (Sweden)'),
(46383, 'https://ror.org/01ktvbq32', 'en', 1, 'https://ror.org/01ktvbq32 Cook Children''s Health Care System'),
(46384, 'https://ror.org/01kv0ya56', 'es', 1, 'https://ror.org/01kv0ya56 Instituto Tecnológico de Chetumal'),
(46385, 'https://ror.org/01kwwh635', 'es', 1, 'https://ror.org/01kwwh635 Instituto de Desarrollo Tecnológico para la Industria Química'),
(46386, 'https://ror.org/01kys2h96', 'no_lang_code', 1, 'https://ror.org/01kys2h96 Quantum Technology Sciences (United States)'),
(46387, 'https://ror.org/01m06ya33', 'en', 1, 'https://ror.org/01m06ya33 Shanxi Province Hospital of Traditional Chinese Medicine'),
(46388, 'https://ror.org/01m2xfd77', 'en', 1, 'https://ror.org/01m2xfd77 Akita Research Institute for Food and Brewing ē§‹ē”°ēœŒē·åˆé£Ÿå“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(46389, 'https://ror.org/01m41n304', 'en', 1, 'https://ror.org/01m41n304 Kanagawa Prefectural Atsugi Kiyoshiminami High School ē„žå„ˆå·ēœŒē«‹åŽšęœØęø…å—é«˜ę ”'),
(46390, 'https://ror.org/01m4mdb95', 'en', 1, 'https://ror.org/01m4mdb95 Uzima University College'),
(46391, 'https://ror.org/01m4zvx19', 'en', 1, 'https://ror.org/01m4zvx19 Gapminder Foundation Stiftelsen Gapminder'),
(46392, 'https://ror.org/01m520d39', 'en', 1, 'https://ror.org/01m520d39 Shimane Museum of Ancient Izumo å³¶ę ¹ēœŒē«‹å¤ä»£å‡ŗé›²ę­“å²åšē‰©é¤Ø'),
(46393, 'https://ror.org/01m5tj961', 'en', 1, 'https://ror.org/01m5tj961 Villa Maria College'),
(46394, 'https://ror.org/01m6k8878', 'en', 1, 'https://ror.org/01m6k8878 Queen Elizabeth Hospital King''s Lynn NHS Foundation Trust'),
(46395, 'https://ror.org/01mbtgx32', 'en', 1, 'https://ror.org/01mbtgx32 International Financial Cryptography Association'),
(46396, 'https://ror.org/01mcc7007', 'no_lang_code', 1, 'https://ror.org/01mcc7007 Schlumberger (Ireland)'),
(46397, 'https://ror.org/01mcq6w80', 'en', 1, 'https://ror.org/01mcq6w80 Society for Marine Mammalogy'),
(46398, 'https://ror.org/01md05p94', 'en', 1, 'https://ror.org/01md05p94 National Heavy Snow Youth Exchange House å›½ē«‹å¤§é›Ŗé’å°‘å¹“äŗ¤ęµć®å®¶'),
(46399, 'https://ror.org/01md3zk31', 'en', 1, 'https://ror.org/01md3zk31 National Academy of Sciences of the Republic of Kyrgyzstan АкаГемии наук ŠšŃ‹Ń€Š³Ń‹Š·ŃŃ‚ана'),
(46400, 'https://ror.org/01mdbny50', 'en', 1, 'https://ror.org/01mdbny50 Access to Nutrition Foundation'),
(46401, 'https://ror.org/01me2d674', 'en', 1, 'https://ror.org/01me2d674 Shenzhen Maternity and Child Healthcare Hospital ę·±åœ³åø‚å¦‡å¹¼äæå„é™¢'),
(46402, 'https://ror.org/01me5n293', 'en', 1, 'https://ror.org/01me5n293 BTI Biotechnology Institute'),
(46403, 'https://ror.org/01mfgkr43', 'no_lang_code', 1, 'https://ror.org/01mfgkr43 Amdocs (United Kingdom)'),
(46404, 'https://ror.org/01mfqa039', 'es', 1, 'https://ror.org/01mfqa039 Fundación Pro Salud y Medio Ambiente'),
(46405, 'https://ror.org/01mgfe132', 'no_lang_code', 1, 'https://ror.org/01mgfe132 H3D (United States)'),
(46406, 'https://ror.org/01mjdf856', 'no_lang_code', 1, 'https://ror.org/01mjdf856 EarthTech International (United States)'),
(46407, 'https://ror.org/01mre3x46', 'en', 1, 'https://ror.org/01mre3x46 Kanetsu Hospital é–¢č¶Šē—…é™¢'),
(46408, 'https://ror.org/01mx6gt82', 'no_lang_code', 1, 'https://ror.org/01mx6gt82 Knorr-Bremse (United States)'),
(46409, 'https://ror.org/01mycfe72', 'no_lang_code', 1, 'https://ror.org/01mycfe72 AT&T (Israel)'),
(46410, 'https://ror.org/01mzyze39', 'en', 1, 'https://ror.org/01mzyze39 British HIV Association'),
(46411, 'https://ror.org/01n0ntp67', 'en', 1, 'https://ror.org/01n0ntp67 Toyo College of Food Technology ę±ę“‹é£Ÿå“å·„ę„­ēŸ­ęœŸå¤§å­¦'),
(46412, 'https://ror.org/01n0t0752', 'no_lang_code', 1, 'https://ror.org/01n0t0752 Future Cities Catapult (United Kingdom)'),
(46413, 'https://ror.org/01n1nc173', 'en', 1, 'https://ror.org/01n1nc173 California State Library'),
(46414, 'https://ror.org/01n2j8127', 'en', 1, 'https://ror.org/01n2j8127 United Nations Institute for Training and Research'),
(46415, 'https://ror.org/01n58gy81', 'en', 1, 'https://ror.org/01n58gy81 Benevolent Society'),
(46416, 'https://ror.org/01nakaj54', 'en', 1, 'https://ror.org/01nakaj54 Florida Association of School Administrators'),
(46417, 'https://ror.org/01nbpkh22', 'en', 1, 'https://ror.org/01nbpkh22 Guildford Hospital'),
(46418, 'https://ror.org/01nbps758', 'en', 1, 'https://ror.org/01nbps758 International University of Cooperative Education Internationale Berufsakademie'),
(46419, 'https://ror.org/01nbzrx85', 'en', 1, 'https://ror.org/01nbzrx85 Korea Nano Technology Research Society ė‚˜ė…øźø°ģˆ ģ—°źµ¬ķ˜‘ģ˜ķšŒ'),
(46420, 'https://ror.org/01nnwyz44', 'en', 1, 'https://ror.org/01nnwyz44 Shanghai Public Health Clinical Center å…¬å…±å«ē”Ÿäø“åŗŠäø­åæƒ'),
(46421, 'https://ror.org/01nqmht92', 'en', 1, 'https://ror.org/01nqmht92 Fraunhofer Institute for Transportation and Infrastructure Systems Fraunhofer-Institut für Verkehrs- und Infrastruktursysteme'),
(46422, 'https://ror.org/01nqzp818', 'no_lang_code', 1, 'https://ror.org/01nqzp818 Global Health Strategies (United States)'),
(46423, 'https://ror.org/01nrq5w30', 'en', 1, 'https://ror.org/01nrq5w30 Saudi Heart Association'),
(46424, 'https://ror.org/01nvq0b44', 'no_lang_code', 1, 'https://ror.org/01nvq0b44 Cemex (Switzerland)'),
(46425, 'https://ror.org/01nwqqg09', 'en', 1, 'https://ror.org/01nwqqg09 Egyptian Society of Chest Diseases and Tuberculosis'),
(46426, 'https://ror.org/01nwsar36', 'en', 1, 'https://ror.org/01nwsar36 Dongguk University Ilsan Hospital'),
(46427, 'https://ror.org/01p1sp487', 'en', 1, 'https://ror.org/01p1sp487 Department of Ocean Development'),
(46428, 'https://ror.org/01p37tq51', 'no_lang_code', 1, 'https://ror.org/01p37tq51 Analytical Instrument Systems (United States)'),
(46429, 'https://ror.org/01p3pd878', 'en', 1, 'https://ror.org/01p3pd878 Okazaki Womens University 岔哎儳子大学'),
(46430, 'https://ror.org/01p7ybj33', 'no_lang_code', 1, 'https://ror.org/01p7ybj33 Xelera Research (United States)'),
(46431, 'https://ror.org/01p82h318', 'en', 1, 'https://ror.org/01p82h318 Fund for Educational Excellence'),
(46432, 'https://ror.org/01p8wcy85', 'en', 1, 'https://ror.org/01p8wcy85 Institute of Economic Forecasting Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°Ń€Š¾Š“Š½Š¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Š½ŠøŃ Российской АкаГемии ŠŠ°ŃƒŠŗ'),
(46433, 'https://ror.org/01pbhqq24', 'no_lang_code', 1, 'https://ror.org/01pbhqq24 Kokusai Gakuin Saitama Junior College å›½éš›å­¦é™¢åŸ¼ēŽ‰ēŸ­ęœŸå¤§å­¦'),
(46434, 'https://ror.org/01pfz6k04', 'en', 1, 'https://ror.org/01pfz6k04 Royal Institute of Navigation'),
(46435, 'https://ror.org/01ph4v684', 'en', 1, 'https://ror.org/01ph4v684 Institut d''Arquitectura AvanƧada de Catalunya Institute for Advanced Architecture of Catalonia'),
(46436, 'https://ror.org/01pm5dp22', 'en', 1, 'https://ror.org/01pm5dp22 Ishikawa Prefectural Technical High School ēŸ³å·ēœŒē«‹å·„ę„­é«˜ē­‰å­¦ę ”'),
(46437, 'https://ror.org/01pmhfw02', 'en', 1, 'https://ror.org/01pmhfw02 Asahi City Board of Education ę—­åø‚ę•™č‚²å§”å“”ä¼š'),
(46438, 'https://ror.org/01pn0w676', 'en', 1, 'https://ror.org/01pn0w676 Clover Park School District'),
(46439, 'https://ror.org/01pq7ec85', 'en', 1, 'https://ror.org/01pq7ec85 Association for the Advancement of Educational Research'),
(46440, 'https://ror.org/01pq8wx80', 'en', 1, 'https://ror.org/01pq8wx80 Research and Production Complex Technological Centre Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный комплекс «Технологический центр'),
(46441, 'https://ror.org/01pqwjq49', 'id', 1, 'https://ror.org/01pqwjq49 Universitas Merdeka Surabaya'),
(46442, 'https://ror.org/01pr11k10', 'en', 1, 'https://ror.org/01pr11k10 Central Savannah River Area Regional Educational Service Agency'),
(46443, 'https://ror.org/01prd6q96', 'en', 1, 'https://ror.org/01prd6q96 Kyoto City Zoo äŗ¬éƒ½åø‚å‹•ē‰©åœ’'),
(46444, 'https://ror.org/01psdst63', 'en', 1, 'https://ror.org/01psdst63 Xinjiang Academy of Agricultural and Reclamation Science ę–°ē–†å†œåž¦ē§‘å­¦é™¢'),
(46445, 'https://ror.org/01ptjzx80', 'en', 1, 'https://ror.org/01ptjzx80 Birmingham Research Park'),
(46446, 'https://ror.org/01pw09h14', 'en', 1, 'https://ror.org/01pw09h14 Mie Prefectural Yokkaichi Nishi High School äø‰é‡ēœŒē«‹å››ę—„åø‚č„æé«˜ē­‰å­¦ę ”'),
(46447, 'https://ror.org/01px8ca57', 'en', 1, 'https://ror.org/01px8ca57 Islamic Azad University of Varamin دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŁˆŲ±Ų§Ł…ŪŒŁ†'),
(46448, 'https://ror.org/01pycny91', 'de', 1, 'https://ror.org/01pycny91 StaatsunabhƤngige Theologische Hochschule Basel'),
(46449, 'https://ror.org/01pyfb655', 'en', 1, 'https://ror.org/01pyfb655 Kochi Prefectural Education Center é«˜ēŸ„ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46450, 'https://ror.org/01q1dy966', 'no_lang_code', 1, 'https://ror.org/01q1dy966 HeidelbergCement (Germany)'),
(46451, 'https://ror.org/01q34dp24', 'en', 1, 'https://ror.org/01q34dp24 Povolzhsky Research Institute of Production and Processing of Meat and Dairy Products Поволжский ŠŠ˜Š˜ произвоГства Šø переработки Š¼ŃŃŠ¾Š¼Š¾Š»Š¾Ń‡Š½Š¾Š¹ ŠæŃ€Š¾Š“ŃƒŠŗŃ†ŠøŠø'),
(46452, 'https://ror.org/01q5b3b88', 'no_lang_code', 1, 'https://ror.org/01q5b3b88 Shimano (Singapore)'),
(46453, 'https://ror.org/01q62y884', 'en', 1, 'https://ror.org/01q62y884 Aomori Chuo Junior College é’ę£®äø­å¤®ēŸ­ęœŸå¤§å­¦'),
(46454, 'https://ror.org/01q7qty61', 'en', 1, 'https://ror.org/01q7qty61 Islamic Azad University Bandar Abbas ساختمان ادارى دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ بندرعباس'),
(46455, 'https://ror.org/01q7tkf98', 'no_lang_code', 1, 'https://ror.org/01q7tkf98 KME (United States)'),
(46456, 'https://ror.org/01q888968', 'en', 1, 'https://ror.org/01q888968 Takamatsu High School é¦™å·ēœŒē«‹é«˜ę¾é«˜ē­‰å­¦ę ”'),
(46457, 'https://ror.org/01qb47q59', 'en', 1, 'https://ror.org/01qb47q59 Saitama Prefectural Kodama High School åŸ¼ēŽ‰ēœŒå…ēŽ‰é«˜ę ”'),
(46458, 'https://ror.org/01qb4qf02', 'en', 1, 'https://ror.org/01qb4qf02 Australian Centre for the Moving Image'),
(46459, 'https://ror.org/01qc2w333', 'no_lang_code', 1, 'https://ror.org/01qc2w333 Matsudo Museum ę¾ęˆøåø‚ē«‹åšē‰©é¤Ø'),
(46460, 'https://ror.org/01qcwgw02', 'en', 1, 'https://ror.org/01qcwgw02 David H. Murdock Research Institute'),
(46461, 'https://ror.org/01qecd649', 'en', 1, 'https://ror.org/01qecd649 Max Planck Unit for Structural Molecular Biology Max-Planck-Arbeitsgruppen für Strukturelle Molekularbiologie'),
(46462, 'https://ror.org/01qfa5t68', 'no_lang_code', 1, 'https://ror.org/01qfa5t68 Hitachi Maxell (Japan) ę—„ē«‹ćƒžć‚Æć‚»ćƒ«ę Ŗå¼ä¼šē¤¾'),
(46463, 'https://ror.org/01qfhxr31', 'en', 1, 'https://ror.org/01qfhxr31 University of Kivu UniversitƩ du Kivu'),
(46464, 'https://ror.org/01qgd7x17', 'de', 1, 'https://ror.org/01qgd7x17 Deutsche Schmerzgesellschaft'),
(46465, 'https://ror.org/01qgvp179', 'en', 1, 'https://ror.org/01qgvp179 Ezequiel Dias Foundation Fundação Ezequiel Dias'),
(46466, 'https://ror.org/01qk1b565', 'no_lang_code', 1, 'https://ror.org/01qk1b565 Pure Protein (United States)'),
(46467, 'https://ror.org/01qkmhj58', 'no_lang_code', 1, 'https://ror.org/01qkmhj58 Kao Corporation (United States)'),
(46468, 'https://ror.org/01qksk953', 'no_lang_code', 1, 'https://ror.org/01qksk953 Paisano Labs (United States)'),
(46469, 'https://ror.org/01qp6yw46', 'en', 1, 'https://ror.org/01qp6yw46 Mercury Optoelectronics Research Institute å¢Øå…‹ē‘žå…‰ē”µå­ē ”ē©¶é™¢'),
(46470, 'https://ror.org/01qpg5w50', 'en', 1, 'https://ror.org/01qpg5w50 Tabaran Institute of Higher Education Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ تابران'),
(46471, 'https://ror.org/01qqkqg60', 'en', 1, 'https://ror.org/01qqkqg60 Foundation Financial Officers Group'),
(46472, 'https://ror.org/01qqwja70', 'en', 1, 'https://ror.org/01qqwja70 Netherlands Maritime Technology'),
(46473, 'https://ror.org/01qskrs45', 'en', 1, 'https://ror.org/01qskrs45 Islamic Azad University of Khomeynishahr دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų®Ł…ŪŒŁ†ŪŒ ؓهر'),
(46474, 'https://ror.org/01qt3dj82', 'en', 1, 'https://ror.org/01qt3dj82 Institute of Immunology and Physiology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иммунологии Šø физиологии Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(46475, 'https://ror.org/01qwv9523', 'en', 1, 'https://ror.org/01qwv9523 Kanagawa Prefectural Museum of Natural History ē„žå„ˆå·ēœŒē«‹ē”Ÿå‘½ć®ę˜Ÿ'),
(46476, 'https://ror.org/01qx14d89', 'en', 1, 'https://ror.org/01qx14d89 Komatsu College å°ę¾ēŸ­ęœŸå¤§å­¦'),
(46477, 'https://ror.org/01qx5df26', 'no_lang_code', 1, 'https://ror.org/01qx5df26 Disco (japan) ę Ŗå¼ä¼šē¤¾ćƒ‡ć‚£ć‚¹ć‚³'),
(46478, 'https://ror.org/01qxfbw14', 'en', 1, 'https://ror.org/01qxfbw14 Aichi Prefectural Okazaki School for the Deaf ę„›ēŸ„ēœŒē«‹å²”å“Žč¾å­¦ę ”'),
(46479, 'https://ror.org/01qysf282', 'no_lang_code', 1, 'https://ror.org/01qysf282 Ingredion (United Kingdom)'),
(46480, 'https://ror.org/01qzftd85', 'en', 1, 'https://ror.org/01qzftd85 Silsoe Spray Application Unit'),
(46481, 'https://ror.org/01qzrvf77', 'en', 1, 'https://ror.org/01qzrvf77 Fukuoka Prefectural Museum of Art ē¦å²”ēœŒē«‹ē¾Žč”“é¤Ø'),
(46482, 'https://ror.org/01r0qpc06', 'en', 1, 'https://ror.org/01r0qpc06 Okayama Prefectural Okayama Technical High School å²”å±±ēœŒē«‹å²”å±±å·„ę„­é«˜ē­‰å­¦ę ”'),
(46483, 'https://ror.org/01r10sk82', 'en', 1, 'https://ror.org/01r10sk82 China Academy of Printing Technology äø­å›½å°åˆ·ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(46484, 'https://ror.org/01r1v8s38', 'no_lang_code', 1, 'https://ror.org/01r1v8s38 Knorr-Bremse (Austria)'),
(46485, 'https://ror.org/01r21e311', 'en', 1, 'https://ror.org/01r21e311 University of Cagayan Valley'),
(46486, 'https://ror.org/01r3n4v41', 'en', 1, 'https://ror.org/01r3n4v41 Douglas Public Library'),
(46487, 'https://ror.org/01r3q4477', 'en', 1, 'https://ror.org/01r3q4477 Society of American Gastrointestinal and Endoscopic Surgeons'),
(46488, 'https://ror.org/01r43ed56', 'en', 1, 'https://ror.org/01r43ed56 Canadian Urological Association'),
(46489, 'https://ror.org/01r4sa504', 'en', 1, 'https://ror.org/01r4sa504 Institut für Lebensmittel- und Umweltforschung Institute for Food and Environmental Research'),
(46490, 'https://ror.org/01r4svf88', 'en', 1, 'https://ror.org/01r4svf88 Sadra Institute Of Higher Education دانؓگاه ŲµŲÆŲ±Ų§'),
(46491, 'https://ror.org/01r4xes76', 'en', 1, 'https://ror.org/01r4xes76 Museum of Modern Art ē¾¤é¦¬ēœŒē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(46492, 'https://ror.org/01r5php15', 'en', 1, 'https://ror.org/01r5php15 The Institute of Buraku Problem éƒØč½å•é”Œē ”ē©¶ę‰€'),
(46493, 'https://ror.org/01r5syv12', 'no_lang_code', 1, 'https://ror.org/01r5syv12 Columbus McKinnon (United States)'),
(46494, 'https://ror.org/01rab9670', 'no_lang_code', 1, 'https://ror.org/01rab9670 Bruker (Israel)'),
(46495, 'https://ror.org/01raw4b12', 'en', 1, 'https://ror.org/01raw4b12 Hirosaki Central Hospital å¼˜å‰äø­å¤®ē—…é™¢'),
(46496, 'https://ror.org/01rd01t06', 'en', 1, 'https://ror.org/01rd01t06 Academy of Sciences and Humanities in Hamburg Akademie der Wissenschaften in Hamburg'),
(46497, 'https://ror.org/01rfee362', 'no_lang_code', 1, 'https://ror.org/01rfee362 k-Space Associates (United States)'),
(46498, 'https://ror.org/01rfr0p20', 'en', 1, 'https://ror.org/01rfr0p20 RKDF University'),
(46499, 'https://ror.org/01rgzab50', 'no_lang_code', 1, 'https://ror.org/01rgzab50 Eaton (United Kingdom)'),
(46500, 'https://ror.org/01rh00978', 'en', 1, 'https://ror.org/01rh00978 A. Alfred Taubman Health Care Center'),
(46501, 'https://ror.org/01rhkah90', 'en', 1, 'https://ror.org/01rhkah90 Nagano City Museum é•·é‡Žåø‚ē«‹åšē‰©é¤Ø'),
(46502, 'https://ror.org/01rjrd067', 'en', 1, 'https://ror.org/01rjrd067 Yamaguchi Prefectural Museum å±±å£ēœŒē«‹å±±å£åšē‰©é¤Ø'),
(46503, 'https://ror.org/01rkxw296', 'en', 1, 'https://ror.org/01rkxw296 Aid for Aids'),
(46504, 'https://ror.org/01rm2f249', 'en', 1, 'https://ror.org/01rm2f249 Junshin Junior College ē“”ēœŸēŸ­ęœŸå¤§å­¦'),
(46505, 'https://ror.org/01rn1eg28', 'no_lang_code', 1, 'https://ror.org/01rn1eg28 Bankura University বাঁকুঔ়া ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(46506, 'https://ror.org/01rn9qa20', 'no_lang_code', 1, 'https://ror.org/01rn9qa20 AutoNetworks Technologies (Japan) ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ćƒˆćƒćƒƒćƒˆćƒÆćƒ¼ć‚ÆęŠ€č”“ē ”ē©¶ę‰€'),
(46507, 'https://ror.org/01rqxmc80', 'en', 1, 'https://ror.org/01rqxmc80 Aichi Medical College for Physical and Occupational Therapy ę„›ēŸ„åŒ»ē™‚å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(46508, 'https://ror.org/01rrjpm51', 'en', 1, 'https://ror.org/01rrjpm51 Miyazaki Prefecture Takanabe Agricultural High School å®®å“ŽēœŒē«‹é«˜é‹č¾²ę„­é«˜ē­‰å­¦ę ”'),
(46509, 'https://ror.org/01rsb5a88', 'en', 1, 'https://ror.org/01rsb5a88 Hiroshima Prefectural Archives åŗƒå³¶ēœŒåŗēœŒē«‹ę–‡ę›øé¤Ø'),
(46510, 'https://ror.org/01rtne307', 'en', 1, 'https://ror.org/01rtne307 Japan Monkey Centre ę—„ęœ¬ćƒ¢ćƒ³ć‚­ćƒ¼ćƒ‘ćƒ¼ć‚Æ'),
(46511, 'https://ror.org/01rtzrs77', 'en', 1, 'https://ror.org/01rtzrs77 Saitama Prefectural Industrial Technology Center åŸ¼ēŽ‰ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(46512, 'https://ror.org/01rvqha10', 'en', 1, 'https://ror.org/01rvqha10 Fraunhofer Institute for Manufacturing Engineering and Automation Fraunhofer-Institut für Produktionstechnik und Automatisierung'),
(46513, 'https://ror.org/01rvqzw67', 'en', 1, 'https://ror.org/01rvqzw67 University of International Business Єалықаралық бизнес ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(46514, 'https://ror.org/01rvx9t49', 'en', 1, 'https://ror.org/01rvx9t49 Kanagawa Prefecture Policy Bureau ē„žå„ˆå·ēœŒę”æē­–å±€'),
(46515, 'https://ror.org/01rw27z95', 'no_lang_code', 1, 'https://ror.org/01rw27z95 Microsoft (United Kingdom)'),
(46516, 'https://ror.org/01rx4ed80', 'en', 1, 'https://ror.org/01rx4ed80 IEEE OES Japan Chapter'),
(46517, 'https://ror.org/01s0p2f24', 'en', 1, 'https://ror.org/01s0p2f24 Michalski Huettermann and Partner Michalski Hüttermann & Partner Patentanwälte'),
(46518, 'https://ror.org/01s3ybj54', 'en', 1, 'https://ror.org/01s3ybj54 Chess Mates Foundation'),
(46519, 'https://ror.org/01s4t1s46', 'en', 1, 'https://ror.org/01s4t1s46 Carthage Central School District'),
(46520, 'https://ror.org/01s8p3t36', 'no_lang_code', 1, 'https://ror.org/01s8p3t36 Trilogis (Italy)'),
(46521, 'https://ror.org/01s8tz949', 'no_lang_code', 1, 'https://ror.org/01s8tz949 Japan Broadcasting Corporation (Japan) ę—„ęœ¬ę”¾é€å”ä¼š'),
(46522, 'https://ror.org/01sb82c82', 'en', 1, 'https://ror.org/01sb82c82 American Rhododendron Society'),
(46523, 'https://ror.org/01scjps49', 'en', 1, 'https://ror.org/01scjps49 Arthroscopy Association of North America'),
(46524, 'https://ror.org/01sd6hz84', 'en', 1, 'https://ror.org/01sd6hz84 Yelm Community Schools'),
(46525, 'https://ror.org/01sengv47', 'en', 1, 'https://ror.org/01sengv47 Institute of Ethnology and Anthropology äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ę°‘ę—å­¦äøŽäŗŗē±»å­¦ē ”ē©¶ę‰€'),
(46526, 'https://ror.org/01sggg367', 'no_lang_code', 1, 'https://ror.org/01sggg367 Kawasaki Heavy Industries (Japan) å·å“Žé‡å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(46527, 'https://ror.org/01sgjy251', 'en', 1, 'https://ror.org/01sgjy251 Wakayama City Culture and Sports Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗ å’Œę­Œå±±åø‚ę–‡åŒ–ć‚¹ćƒćƒ¼ćƒ„ęŒÆčˆˆč²”å›£'),
(46528, 'https://ror.org/01sh98j38', 'en', 1, 'https://ror.org/01sh98j38 Mill Valley Public Library'),
(46529, 'https://ror.org/01shbzz86', 'no_lang_code', 1, 'https://ror.org/01shbzz86 Wikimedia RU ВикимеГиа РУ'),
(46530, 'https://ror.org/01skh6n03', 'en', 1, 'https://ror.org/01skh6n03 Sveriges TandlƤkarfƶrbund Swedish Dental Association'),
(46531, 'https://ror.org/01sp6nj31', 'en', 1, 'https://ror.org/01sp6nj31 Chiba prefectural Matsudo international high school ę¾ęˆøå›½éš›é«˜ē­‰å­¦ę ”'),
(46532, 'https://ror.org/01sqn6v38', 'en', 1, 'https://ror.org/01sqn6v38 Sault Area Hospital'),
(46533, 'https://ror.org/01svrpv75', 'no_lang_code', 1, 'https://ror.org/01svrpv75 TE Connectivity (Denmark)'),
(46534, 'https://ror.org/01sx4nq39', 'en', 1, 'https://ror.org/01sx4nq39 American Epilepsy Society'),
(46535, 'https://ror.org/01sy8w588', 'en', 1, 'https://ror.org/01sy8w588 Shimane Prefectural Daito High School å³¶ę ¹ēœŒē«‹å¤§ę±é«˜ē­‰å­¦ę ”'),
(46536, 'https://ror.org/01szshg60', 'en', 1, 'https://ror.org/01szshg60 Proactive Molecular Research');
INSERT INTO `rors` VALUES
(46537, 'https://ror.org/01t11z141', 'no_lang_code', 1, 'https://ror.org/01t11z141 Quigley and Watts (New Zealand)'),
(46538, 'https://ror.org/01t12bz60', 'en', 1, 'https://ror.org/01t12bz60 Development Research and Projects Centre'),
(46539, 'https://ror.org/01t36fb69', 'en', 1, 'https://ror.org/01t36fb69 Kobe Municipal Nishiwaki Elementary School'),
(46540, 'https://ror.org/01t69t080', 'en', 1, 'https://ror.org/01t69t080 Instituto Oncologico Nacional National Oncologic Institute'),
(46541, 'https://ror.org/01t6wa381', 'en', 1, 'https://ror.org/01t6wa381 State Research Institute of Organic Chemistry and Technology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Ā«Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органической химии Šø технологии»'),
(46542, 'https://ror.org/01t703b81', 'en', 1, 'https://ror.org/01t703b81 Mathematical Assist Design Laboratory ę Ŗå¼ä¼šē¤¾ę•°ē†čØ­čØˆē ”ē©¶ę‰€'),
(46543, 'https://ror.org/01t763t34', 'no_lang_code', 1, 'https://ror.org/01t763t34 Brainlike (United States)'),
(46544, 'https://ror.org/01t782854', 'no_lang_code', 1, 'https://ror.org/01t782854 Nippon Paint (Japan) ę—„ęœ¬ćƒšć‚¤ćƒ³ćƒˆćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(46545, 'https://ror.org/01t887w53', 'en', 1, 'https://ror.org/01t887w53 Morioka First High School å²©ę‰‹ēœŒē«‹ē››å²”ē¬¬äø€é«˜ē­‰å­¦ę ”'),
(46546, 'https://ror.org/01t8f4d28', 'en', 1, 'https://ror.org/01t8f4d28 South African Heart Association'),
(46547, 'https://ror.org/01tadt133', 'es', 1, 'https://ror.org/01tadt133 Fundación para el Desarrollo de la Ecología'),
(46548, 'https://ror.org/01tck1990', 'en', 1, 'https://ror.org/01tck1990 Daejeon St. Mary''s Hospital ėŒ€ģ „ģ„±ėŖØė³‘ģ›'),
(46549, 'https://ror.org/01thczn33', 'en', 1, 'https://ror.org/01thczn33 Australian Society for Microbiology'),
(46550, 'https://ror.org/01tk5k162', 'no_lang_code', 1, 'https://ror.org/01tk5k162 Trimble (Germany)'),
(46551, 'https://ror.org/01tk70e68', 'en', 1, 'https://ror.org/01tk70e68 Kyoto Kacho University äŗ¬éƒ½čÆé ‚å¤§å­¦'),
(46552, 'https://ror.org/01tkb3y54', 'en', 1, 'https://ror.org/01tkb3y54 GISMA Business School'),
(46553, 'https://ror.org/01tp7kw13', 'no_lang_code', 1, 'https://ror.org/01tp7kw13 Advanced Animal Diagnostics (United States)'),
(46554, 'https://ror.org/01tpxh023', 'no_lang_code', 1, 'https://ror.org/01tpxh023 Introhive (Canada)'),
(46555, 'https://ror.org/01trdns33', 'de', 1, 'https://ror.org/01trdns33 Klinikum Magdeburg'),
(46556, 'https://ror.org/01ttfq573', 'en', 1, 'https://ror.org/01ttfq573 Future Forum'),
(46557, 'https://ror.org/01twdqv51', 'en', 1, 'https://ror.org/01twdqv51 Cumberland County Public Library and Information Center'),
(46558, 'https://ror.org/01twzvd91', 'no_lang_code', 1, 'https://ror.org/01twzvd91 NasunokeHara Animal Clinic é‚£é ˆé‡Žćƒ¶åŽŸć‚¢ćƒ‹ćƒžćƒ«ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(46559, 'https://ror.org/01txvbn74', 'en', 1, 'https://ror.org/01txvbn74 European Crowdfunding Network'),
(46560, 'https://ror.org/01tyesb47', 'no_lang_code', 1, 'https://ror.org/01tyesb47 Fukuoka Jo Gakuin Nursing University ē¦å²”å„³å­¦é™¢ēœ‹č­·å¤§å­¦'),
(46561, 'https://ror.org/01v0w5h80', 'no_lang_code', 1, 'https://ror.org/01v0w5h80 Prescient Weather (United states)'),
(46562, 'https://ror.org/01v23xq73', 'no_lang_code', 1, 'https://ror.org/01v23xq73 Eaton (Taiwan)'),
(46563, 'https://ror.org/01v3aym70', 'no_lang_code', 1, 'https://ror.org/01v3aym70 Foxconn (Taiwan) é“»ęµ·ē§‘ęŠ€é›†åœ˜'),
(46564, 'https://ror.org/01v3xbm77', 'en', 1, 'https://ror.org/01v3xbm77 Museum of Kyoto'),
(46565, 'https://ror.org/01v4fge94', 'no_lang_code', 1, 'https://ror.org/01v4fge94 Yamagata Prefectural Yonezawa Kojokan High School å±±å½¢ēœŒē«‹ē±³ę²¢čˆˆč­²é¤Øé«˜ē­‰å­¦ę ”'),
(46566, 'https://ror.org/01v5yyw18', 'en', 1, 'https://ror.org/01v5yyw18 Baker County Library District'),
(46567, 'https://ror.org/01v7eqs04', 'en', 1, 'https://ror.org/01v7eqs04 Kyoto Prefecture Archaeological Research Center äŗ¬éƒ½åŗœåŸ‹č”µę–‡åŒ–č²”čŖæęŸ»ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(46568, 'https://ror.org/01vaekj86', 'no_lang_code', 1, 'https://ror.org/01vaekj86 Agfa-Gevaert (Germany)'),
(46569, 'https://ror.org/01vagq208', 'no_lang_code', 1, 'https://ror.org/01vagq208 Nagashima Hospital åŒ»ē™‚ę³•äŗŗé•·å…‰ä¼š 長島病院'),
(46570, 'https://ror.org/01ve76a89', 'en', 1, 'https://ror.org/01ve76a89 Middlemore Clinical Trials'),
(46571, 'https://ror.org/01vek0a79', 'it', 1, 'https://ror.org/01vek0a79 Associazione Cristina Bassi Onlus'),
(46572, 'https://ror.org/01vekj030', 'en', 1, 'https://ror.org/01vekj030 North Carolina Nursery and Landscape Association'),
(46573, 'https://ror.org/01vex9c14', 'en', 1, 'https://ror.org/01vex9c14 Tobu College of Medical Technology ę±ę­¦åŒ»å­¦ęŠ€č”“å°‚é–€å­¦ę ”'),
(46574, 'https://ror.org/01vf40t90', 'en', 1, 'https://ror.org/01vf40t90 San Francisco University High School'),
(46575, 'https://ror.org/01vfj8s64', 'de', 1, 'https://ror.org/01vfj8s64 Arge Ɩkologie'),
(46576, 'https://ror.org/01vfjxd24', 'no_lang_code', 1, 'https://ror.org/01vfjxd24 Ennetix (United States)'),
(46577, 'https://ror.org/01vfzqe43', 'en', 1, 'https://ror.org/01vfzqe43 Korean Society of Neurogastroenterology and Motility ėŒ€ķ•œģ†Œķ™”źø°źø°ėŠ„ģ„±ģ§ˆķ™˜Ā·ģš“ė™ķ•™ķšŒ'),
(46578, 'https://ror.org/01vgda714', 'no_lang_code', 1, 'https://ror.org/01vgda714 Dorodnitsyn Computing Centre Š’Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ центр им. А. А. ДороГницына Š ŠŠ'),
(46579, 'https://ror.org/01vj25w90', 'en', 1, 'https://ror.org/01vj25w90 Indian Institute of Metals'),
(46580, 'https://ror.org/01vpcr438', 'en', 1, 'https://ror.org/01vpcr438 Chordoma Foundation'),
(46581, 'https://ror.org/01vq6b190', 'en', 1, 'https://ror.org/01vq6b190 Professional Examination Service'),
(46582, 'https://ror.org/01vq7jx45', 'en', 1, 'https://ror.org/01vq7jx45 Innovation and Economic Development Trois RiviĆØres'),
(46583, 'https://ror.org/01vqdnj79', 'en', 1, 'https://ror.org/01vqdnj79 National Institute of Special Education ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē‰¹åˆ„ę”Æę“ę•™č‚²ē·åˆē ”ē©¶ę‰€'),
(46584, 'https://ror.org/01vrr3d94', 'no_lang_code', 1, 'https://ror.org/01vrr3d94 Osaka Science Museum å¤§é˜Ŗåø‚ē«‹ē§‘å­¦é¤Ø'),
(46585, 'https://ror.org/01vry7t57', 'no_lang_code', 1, 'https://ror.org/01vry7t57 Pacific Microchip (United States)'),
(46586, 'https://ror.org/01vs14k74', 'no_lang_code', 1, 'https://ror.org/01vs14k74 Banner Life Sciences (United States)'),
(46587, 'https://ror.org/01vs7pm87', 'no_lang_code', 1, 'https://ror.org/01vs7pm87 Teleflex (United States)'),
(46588, 'https://ror.org/01vtgjs22', 'en', 1, 'https://ror.org/01vtgjs22 Chicago Public Library Foundation'),
(46589, 'https://ror.org/01vtpxj52', 'de', 1, 'https://ror.org/01vtpxj52 Institut für Stadtforschung und Strukturpolitik'),
(46590, 'https://ror.org/01vvcdt37', 'en', 1, 'https://ror.org/01vvcdt37 Colorado Library Consortium'),
(46591, 'https://ror.org/01vvkvt81', 'no_lang_code', 1, 'https://ror.org/01vvkvt81 Sulzer (Germany)'),
(46592, 'https://ror.org/01vvmvv13', 'en', 1, 'https://ror.org/01vvmvv13 Canadian Sport Centre Pacific'),
(46593, 'https://ror.org/01vwnst03', 'en', 1, 'https://ror.org/01vwnst03 Toyama Prefectural Education Center åÆŒå±±ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46594, 'https://ror.org/01vwvvq12', 'en', 1, 'https://ror.org/01vwvvq12 Zhejiang International Studies University ęµ™ę±Ÿå¤–å›½čÆ­å­¦é™¢'),
(46595, 'https://ror.org/01vxwy461', 'pt', 1, 'https://ror.org/01vxwy461 Universidade Estadual do Rio Grande do Sul'),
(46596, 'https://ror.org/01vz3ga16', 'en', 1, 'https://ror.org/01vz3ga16 Seqwater'),
(46597, 'https://ror.org/01vzn3w40', 'no_lang_code', 1, 'https://ror.org/01vzn3w40 H2Flow Equipment (Canada)'),
(46598, 'https://ror.org/01w0j5472', 'en', 1, 'https://ror.org/01w0j5472 Schweizerische Gesellschaft für Radiologie Swiss Society of Radiology'),
(46599, 'https://ror.org/01w4t8268', 'en', 1, 'https://ror.org/01w4t8268 Big Rapids Community Library'),
(46600, 'https://ror.org/01w51pg70', 'no_lang_code', 1, 'https://ror.org/01w51pg70 Greenhouse Gas Industries (United States)'),
(46601, 'https://ror.org/01w6k3w63', 'no_lang_code', 1, 'https://ror.org/01w6k3w63 Toyama College 富山短期大学'),
(46602, 'https://ror.org/01w7zp119', 'en', 1, 'https://ror.org/01w7zp119 New York State Psychological Association'),
(46603, 'https://ror.org/01w8svt05', 'en', 1, 'https://ror.org/01w8svt05 Tohoku History Museum ę±åŒ—ę­“å²åšē‰©é¤Ø'),
(46604, 'https://ror.org/01w9bsn12', 'no_lang_code', 1, 'https://ror.org/01w9bsn12 Instream Energy Systems (Canada)'),
(46605, 'https://ror.org/01w9zcy30', 'no_lang_code', 1, 'https://ror.org/01w9zcy30 Canada Bread (Canada)'),
(46606, 'https://ror.org/01wbz2121', 'no_lang_code', 1, 'https://ror.org/01wbz2121 Rieter (Germany)'),
(46607, 'https://ror.org/01wcyhn95', 'en', 1, 'https://ror.org/01wcyhn95 NRAD Medical Associates'),
(46608, 'https://ror.org/01wdqpj36', 'en', 1, 'https://ror.org/01wdqpj36 Drylands Research'),
(46609, 'https://ror.org/01wegjf65', 'en', 1, 'https://ror.org/01wegjf65 Ogori City Board of Education å°éƒ”åø‚ ę•™č‚²å§”å“”ä¼š'),
(46610, 'https://ror.org/01wf5jq34', 'en', 1, 'https://ror.org/01wf5jq34 Australian Institute of Business'),
(46611, 'https://ror.org/01wpvrw40', 'no_lang_code', 1, 'https://ror.org/01wpvrw40 Boschman Technologies (Netherlands)'),
(46612, 'https://ror.org/01wqc8n07', 'en', 1, 'https://ror.org/01wqc8n07 British Orthopaedic Association'),
(46613, 'https://ror.org/01wqjvw03', 'en', 1, 'https://ror.org/01wqjvw03 Aomori Prefectural Police é’ę£®ēœŒč­¦åÆŸ'),
(46614, 'https://ror.org/01wqp7c62', 'no_lang_code', 1, 'https://ror.org/01wqp7c62 Hexagon (Switzerland)'),
(46615, 'https://ror.org/01wrt1c44', 'en', 1, 'https://ror.org/01wrt1c44 National Democratic Institute'),
(46616, 'https://ror.org/01wt6rn90', 'no_lang_code', 1, 'https://ror.org/01wt6rn90 Hewlett-Packard (Austria)'),
(46617, 'https://ror.org/01wvk2989', 'de', 1, 'https://ror.org/01wvk2989 REFA Bundesverband, Reichsausschuß für Arbeitszeitermittlung'),
(46618, 'https://ror.org/01wvy7k28', 'en', 1, 'https://ror.org/01wvy7k28 Nara Medical University Hospital å„ˆč‰ÆēœŒē«‹åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(46619, 'https://ror.org/01wwqrh75', 'en', 1, 'https://ror.org/01wwqrh75 Arizona State Library, Archives and Public Records'),
(46620, 'https://ror.org/01wzq5z79', 'en', 1, 'https://ror.org/01wzq5z79 Nigeria Agricultural Quarantine Service'),
(46621, 'https://ror.org/01wzyqj69', 'no_lang_code', 1, 'https://ror.org/01wzyqj69 Kerkhoff Consulting (Germany)'),
(46622, 'https://ror.org/01x1jk522', 'no_lang_code', 1, 'https://ror.org/01x1jk522 Tata Technologies (Singapore)'),
(46623, 'https://ror.org/01x2j0a42', 'en', 1, 'https://ror.org/01x2j0a42 Huaihua Radio and Television University ę€€åŒ–å¹æę’­ē”µč§†å¤§å­¦'),
(46624, 'https://ror.org/01x3vfv57', 'en', 1, 'https://ror.org/01x3vfv57 Zhejiang Changzheng Vocational and Technical College ęµ™ę±Ÿé•æå¾čŒäøšęŠ€ęœÆå­¦é™¢'),
(46625, 'https://ror.org/01x4fgp34', 'no_lang_code', 1, 'https://ror.org/01x4fgp34 Enviro Neptune (Canada)'),
(46626, 'https://ror.org/01x6c3x12', 'en', 1, 'https://ror.org/01x6c3x12 Universal Therapeutic Massage Institute'),
(46627, 'https://ror.org/01x6e4x77', 'en', 1, 'https://ror.org/01x6e4x77 American Orthopsychiatric Association'),
(46628, 'https://ror.org/01xfcjr43', 'en', 1, 'https://ror.org/01xfcjr43 Sanyo-Onoda City University å±±å£ę±äŗ¬ē†ē§‘å¤§å­¦'),
(46629, 'https://ror.org/01xgsgn35', 'en', 1, 'https://ror.org/01xgsgn35 Luzerne County Libraries'),
(46630, 'https://ror.org/01xjvwt10', 'no_lang_code', 1, 'https://ror.org/01xjvwt10 Electrolux (United Kingdom)'),
(46631, 'https://ror.org/01xjydw85', 'en', 1, 'https://ror.org/01xjydw85 International HIV/AIDS Alliance'),
(46632, 'https://ror.org/01xmeqq94', 'no_lang_code', 1, 'https://ror.org/01xmeqq94 Kowsar Hospital کوثر ؓیراز'),
(46633, 'https://ror.org/01xnbtm64', 'en', 1, 'https://ror.org/01xnbtm64 State Research Institute for Chemistry and Technology of Organoelement Compounds Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Šø технологии ŃŠ»ŠµŠ¼ŠµŠ½Ń‚Š¾Š¾Ń€Š³Š°Š½ŠøŃ‡ŠµŃŠŗŠøŃ… соеГинений'),
(46634, 'https://ror.org/01xpja968', 'en', 1, 'https://ror.org/01xpja968 Oita Prefectural Nascent Support School å¤§åˆ†ēœŒē‰¹åˆ„ę”Æę“å­¦ę ”'),
(46635, 'https://ror.org/01xq72953', 'en', 1, 'https://ror.org/01xq72953 Doshisha International Junior and Senior High School'),
(46636, 'https://ror.org/01xqtc407', 'no_lang_code', 1, 'https://ror.org/01xqtc407 Nanocomp Technologies (United States)'),
(46637, 'https://ror.org/01xs70477', 'no_lang_code', 1, 'https://ror.org/01xs70477 Corning (Israel)'),
(46638, 'https://ror.org/01xx0px16', 'en', 1, 'https://ror.org/01xx0px16 ASEAN Foundation'),
(46639, 'https://ror.org/01xyr7619', 'en', 1, 'https://ror.org/01xyr7619 National Society of Black Engineers'),
(46640, 'https://ror.org/01xzb5e19', 'no_lang_code', 1, 'https://ror.org/01xzb5e19 Ultra Electronics 3 Phoenix (United States)'),
(46641, 'https://ror.org/01xzqee24', 'en', 1, 'https://ror.org/01xzqee24 Aichi Prefectural Chiryu East Koto School ę„›ēŸ„ēœŒē«‹ēŸ„ē«‹ę±é«˜ē­‰å­¦ę ”'),
(46642, 'https://ror.org/01y01n005', 'en', 1, 'https://ror.org/01y01n005 Maricopa County Library District'),
(46643, 'https://ror.org/01y16qn61', 'en', 1, 'https://ror.org/01y16qn61 Research Institute for Environmental Sciences and Public Health of Iwate Prefecture å²©ę‰‹ēœŒē’°å¢ƒäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(46644, 'https://ror.org/01y1mwf47', 'no_lang_code', 1, 'https://ror.org/01y1mwf47 Liquifer Systems Group (Austria)'),
(46645, 'https://ror.org/01y2p0182', 'en', 1, 'https://ror.org/01y2p0182 Gay City Health Project'),
(46646, 'https://ror.org/01y65bn93', 'no_lang_code', 1, 'https://ror.org/01y65bn93 Vital Access (United States)'),
(46647, 'https://ror.org/01y6s7h62', 'no_lang_code', 1, 'https://ror.org/01y6s7h62 Mƶlnlycke Health Care (United Kingdom)'),
(46648, 'https://ror.org/01y72yy43', 'no_lang_code', 1, 'https://ror.org/01y72yy43 MomsRising'),
(46649, 'https://ror.org/01ye08k77', 'en', 1, 'https://ror.org/01ye08k77 The 180th Hospital of PLA 中国人民解放军第180医院'),
(46650, 'https://ror.org/01ye7b264', 'no_lang_code', 1, 'https://ror.org/01ye7b264 Avaya (Bermuda)'),
(46651, 'https://ror.org/01ye9d912', 'en', 1, 'https://ror.org/01ye9d912 Asian Growth Research Institute å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚øć‚¢ęˆé•·ē ”ē©¶ę‰€'),
(46652, 'https://ror.org/01yh1st73', 'no_lang_code', 1, 'https://ror.org/01yh1st73 Unparallel Innovation (Portugal)'),
(46653, 'https://ror.org/01yhwa418', 'en', 1, 'https://ror.org/01yhwa418 Institute of Micro and Nanotechnology Instituto de Micro y NanotecnologĆ­a'),
(46654, 'https://ror.org/01yj78e47', 'en', 1, 'https://ror.org/01yj78e47 Southeast Asia University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø­ą¹€ąøŠąøµąø¢ąø•ąø°ąø§ąø±ąø™ąø­ąø­ąøą¹€ąø‰ąøµąø¢ąø‡ą¹ƒąø•ą¹‰'),
(46655, 'https://ror.org/01yjxek63', 'no_lang_code', 1, 'https://ror.org/01yjxek63 Robert Bosch (Brazil)'),
(46656, 'https://ror.org/01yk36x23', 'no_lang_code', 1, 'https://ror.org/01yk36x23 Nippon Soken (Japan) ę—„ęœ¬ē·ē ”'),
(46657, 'https://ror.org/01ykg8t62', 'en', 1, 'https://ror.org/01ykg8t62 Kagoshima Prefectural Museum é¹æå…å³¶ēœŒē«‹åšē‰©é¤Ø'),
(46658, 'https://ror.org/01ykj2t23', 'en', 1, 'https://ror.org/01ykj2t23 Fuzzy Systems Institute ćƒ•ć‚”ć‚øć‚£ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę‰€'),
(46659, 'https://ror.org/01ym1qc81', 'de', 1, 'https://ror.org/01ym1qc81 Anton Proksch Institut'),
(46660, 'https://ror.org/01yn5ft19', 'no_lang_code', 1, 'https://ror.org/01yn5ft19 SeQureNet (France)'),
(46661, 'https://ror.org/01yp72g57', 'no_lang_code', 1, 'https://ror.org/01yp72g57 Sumco Corporation (Japan) ę Ŗå¼ä¼šē¤¾SUMCO'),
(46662, 'https://ror.org/01ypty838', 'no_lang_code', 1, 'https://ror.org/01ypty838 Megara Resins (Greece)'),
(46663, 'https://ror.org/01yrp7892', 'en', 1, 'https://ror.org/01yrp7892 Fraunhofer Information Center for Planning and Building Fraunhofer-Informationszentrum Raum und Bau'),
(46664, 'https://ror.org/01yv6h358', 'pt', 1, 'https://ror.org/01yv6h358 Instituto de Tecnologia do ParanĆ”'),
(46665, 'https://ror.org/01yvg9s13', 'no_lang_code', 1, 'https://ror.org/01yvg9s13 DuPont (China)'),
(46666, 'https://ror.org/01yyvd121', 'en', 1, 'https://ror.org/01yyvd121 Carnegie Foundation for the Advancement of Teaching'),
(46667, 'https://ror.org/01z2g2m11', 'en', 1, 'https://ror.org/01z2g2m11 Miyazaki Gakuen Junior College å®®å“Žå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(46668, 'https://ror.org/01z2vqa26', 'en', 1, 'https://ror.org/01z2vqa26 Centre for Systems Philosophy'),
(46669, 'https://ror.org/01z36py26', 'en', 1, 'https://ror.org/01z36py26 Associação Nacional dos Centros de Pós-Graduação em Economia Brazilian Association of Graduate Programs in Economic'),
(46670, 'https://ror.org/01z3sws73', 'no_lang_code', 1, 'https://ror.org/01z3sws73 Shinjuku Yamabuki High School ę±äŗ¬éƒ½ē«‹ę–°å®æå±±å¹é«˜ē­‰å­¦ę ”'),
(46671, 'https://ror.org/01z639x82', 'en', 1, 'https://ror.org/01z639x82 Yanagawa Rehabilitation Hospital ęŸ³å·ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(46672, 'https://ror.org/01z7a2p83', 'no_lang_code', 1, 'https://ror.org/01z7a2p83 Accium Biosciences (United States)'),
(46673, 'https://ror.org/01z7m4762', 'en', 1, 'https://ror.org/01z7m4762 VicRoads'),
(46674, 'https://ror.org/01zarsr31', 'no_lang_code', 1, 'https://ror.org/01zarsr31 Temple Group (United Kingdom)'),
(46675, 'https://ror.org/01zavst24', 'en', 1, 'https://ror.org/01zavst24 Inspired Practices in Early Education'),
(46676, 'https://ror.org/01zbr4w52', 'no_lang_code', 1, 'https://ror.org/01zbr4w52 S2e Technologies (Canada)'),
(46677, 'https://ror.org/01zbsrk34', 'es', 1, 'https://ror.org/01zbsrk34 Hospital General de Tomelloso'),
(46678, 'https://ror.org/01zccfn45', 'en', 1, 'https://ror.org/01zccfn45 Yamaguchi Prefectural Asa High School å±±å£ēœŒē«‹åŽšē‹­é«˜ē­‰å­¦ę ”'),
(46679, 'https://ror.org/01zcxfd31', 'no_lang_code', 1, 'https://ror.org/01zcxfd31 Eden Park Illumination (United States)'),
(46680, 'https://ror.org/01ze6tn69', 'no_lang_code', 1, 'https://ror.org/01ze6tn69 Maharaj Nakorn Chiang Mai Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø£ąø²ąøŠąø™ąø„ąø£ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(46681, 'https://ror.org/01zfcnf37', 'no_lang_code', 1, 'https://ror.org/01zfcnf37 N.Bazigos (Greece)'),
(46682, 'https://ror.org/01zfjxj34', 'es', 1, 'https://ror.org/01zfjxj34 Ministerio de Agricultura y GanaderĆ­a de Costa Rica'),
(46683, 'https://ror.org/01zhpc307', 'no_lang_code', 1, 'https://ror.org/01zhpc307 Prodrive Technologies (Netherlands)'),
(46684, 'https://ror.org/01zjf2224', 'en', 1, 'https://ror.org/01zjf2224 African Leaders Malaria Alliance'),
(46685, 'https://ror.org/01zkeq752', 'no_lang_code', 1, 'https://ror.org/01zkeq752 Valeo (Germany)'),
(46686, 'https://ror.org/01zmqmr49', 'no_lang_code', 1, 'https://ror.org/01zmqmr49 Integrated Dynamic Electron Solutions (United States)'),
(46687, 'https://ror.org/01zp49f50', 'en', 1, 'https://ror.org/01zp49f50 Government Sadiq College Women University ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ ŲµŲ§ŲÆŁ‚ کالج ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŪŲ§ŁˆŁ„Ł¾ŁˆŲ±'),
(46688, 'https://ror.org/01zppzz18', 'en', 1, 'https://ror.org/01zppzz18 Centre for Theoretical Physics and Astrophysics Центр теоретической физики Šø астрофизики'),
(46689, 'https://ror.org/01zqqhe44', 'en', 1, 'https://ror.org/01zqqhe44 Indian Institute of Business Management Patna'),
(46690, 'https://ror.org/01zsbv887', 'no_lang_code', 1, 'https://ror.org/01zsbv887 Optosignal (United Kingdom)'),
(46691, 'https://ror.org/01zswhd24', 'no_lang_code', 1, 'https://ror.org/01zswhd24 Husqvarna (United Kingdom)'),
(46692, 'https://ror.org/01zv3yh12', 'no_lang_code', 1, 'https://ror.org/01zv3yh12 Hachinohe Gakuin Junior College å…«ęˆøå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(46693, 'https://ror.org/01zv98a09', 'en', 1, 'https://ror.org/01zv98a09 Aga Khan University Nairobi'),
(46694, 'https://ror.org/01zwme063', 'en', 1, 'https://ror.org/01zwme063 Central Laboratory of the National Veterinary Sanitation Улсын Мал Š­Š¼Š½ŃŠ»ŃŠ³ ŠŃ€ŠøŃƒŠ½ Š¦ŃŠ²Ń€ŠøŠ¹Š½ Төв Лаборатори.'),
(46695, 'https://ror.org/01zxwpb57', 'en', 1, 'https://ror.org/01zxwpb57 Victoria International University'),
(46696, 'https://ror.org/01zz9wh30', 'en', 1, 'https://ror.org/01zz9wh30 Institute of Structure of Matter Istituto di Struttura della Materia'),
(46697, 'https://ror.org/0200tp285', 'en', 1, 'https://ror.org/0200tp285 Development Authority of the North Country'),
(46698, 'https://ror.org/020209y40', 'no_lang_code', 1, 'https://ror.org/020209y40 Donawa Lifescience Consulting (Italy)'),
(46699, 'https://ror.org/02031rv53', 'en', 1, 'https://ror.org/02031rv53 National Institute of Technology, Yonago College å›½ē«‹ē±³å­å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(46700, 'https://ror.org/0205x2f04', 'de', 1, 'https://ror.org/0205x2f04 Allgemeines Krankenhaus Celle'),
(46701, 'https://ror.org/020e8vq13', 'en', 1, 'https://ror.org/020e8vq13 V.V. Vinogradov Russian Language Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŃƒŃŃŠŗŠ¾Š³Š¾ ŃŠ·Ń‹ŠŗŠ° имени Š’. Š’. ВинограГова Š ŠŠ'),
(46702, 'https://ror.org/020eyah39', 'no_lang_code', 1, 'https://ror.org/020eyah39 Przedsiębiorstwo Robót Elewacyjnych (Poland)'),
(46703, 'https://ror.org/020h5rq76', 'no_lang_code', 1, 'https://ror.org/020h5rq76 Weatherford (United Kingdom)'),
(46704, 'https://ror.org/020p6tc25', 'no_lang_code', 1, 'https://ror.org/020p6tc25 Karl Storz (Switzerland)'),
(46705, 'https://ror.org/020r1b091', 'en', 1, 'https://ror.org/020r1b091 Hellenic Cardiological Society Ελληνική ΚαρΓιολογική Εταιρεία'),
(46706, 'https://ror.org/020rf1w57', 'no_lang_code', 1, 'https://ror.org/020rf1w57 CNH Industrial (Austria)'),
(46707, 'https://ror.org/020tbzb21', 'en', 1, 'https://ror.org/020tbzb21 Egyptian College of Critical Care Physicians'),
(46708, 'https://ror.org/020ttfd91', 'en', 1, 'https://ror.org/020ttfd91 Malaysian Cocoa Board'),
(46709, 'https://ror.org/020x0c621', 'no_lang_code', 1, 'https://ror.org/020x0c621 Hewlett Packard Enterprise (United States)'),
(46710, 'https://ror.org/020y0w788', 'en', 1, 'https://ror.org/020y0w788 Massachusetts Board of Library Commissioners'),
(46711, 'https://ror.org/0210xhm07', 'en', 1, 'https://ror.org/0210xhm07 Izumi Junior College å’Œę³‰ēŸ­ęœŸå¤§å­¦'),
(46712, 'https://ror.org/0210ykj47', 'no_lang_code', 1, 'https://ror.org/0210ykj47 Contego Medical (United States)'),
(46713, 'https://ror.org/0212pzf17', 'no_lang_code', 1, 'https://ror.org/0212pzf17 Ventix (Canada)'),
(46714, 'https://ror.org/021367g17', 'cs', 1, 'https://ror.org/021367g17 Wikimedia Czech Republic'),
(46715, 'https://ror.org/0214y7014', 'no_lang_code', 1, 'https://ror.org/0214y7014 Sony (Taiwan)'),
(46716, 'https://ror.org/02168cw18', 'en', 1, 'https://ror.org/02168cw18 Institute of Industrial Ecology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š¹ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Š£Ń€Šž Š ŠŠ'),
(46717, 'https://ror.org/02168y314', 'no_lang_code', 1, 'https://ror.org/02168y314 Rail Vision (United Kingdom)'),
(46718, 'https://ror.org/0216x8g43', 'no_lang_code', 1, 'https://ror.org/0216x8g43 TeraSys Technologies (United States)'),
(46719, 'https://ror.org/021817660', 'en', 1, 'https://ror.org/021817660 Iraq University College دانؓگاه کالج Ų¹Ų±Ų§Ł‚'),
(46720, 'https://ror.org/021924r89', 'de', 1, 'https://ror.org/021924r89 Kinderkrebs-Zentrum Hamburg Research Institute Children’s Cancer Center'),
(46721, 'https://ror.org/021appb64', 'en', 1, 'https://ror.org/021appb64 King County Library System'),
(46722, 'https://ror.org/021gp0c72', 'no_lang_code', 1, 'https://ror.org/021gp0c72 Dirac Solutions (United States)'),
(46723, 'https://ror.org/021gppz37', 'en', 1, 'https://ror.org/021gppz37 Kawasaki Municipal Science Museum å·å“Žåø‚é’å°‘å¹“ē§‘å­¦é¤Ø'),
(46724, 'https://ror.org/021jj0v07', 'pl', 1, 'https://ror.org/021jj0v07 The School of Higher Education in Humanities of the Association for Adult Education Wyższa Szkoła Humanistyczna Towarzystwa Wiedzy Powszechnej'),
(46725, 'https://ror.org/021mrbf63', 'id', 1, 'https://ror.org/021mrbf63 Pusat Penelitian dan Pengembangan Peternakan'),
(46726, 'https://ror.org/021pdqz74', 'fr', 1, 'https://ror.org/021pdqz74 WikimƩdia France'),
(46727, 'https://ror.org/021r8rp50', 'en', 1, 'https://ror.org/021r8rp50 St. Margaret''s Junior College ē«‹ę•™å„³å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(46728, 'https://ror.org/021skqj79', 'no_lang_code', 1, 'https://ror.org/021skqj79 EpiCypher (United States)'),
(46729, 'https://ror.org/021swj028', 'no_lang_code', 1, 'https://ror.org/021swj028 Atlas Elektronik (United Kingdom)'),
(46730, 'https://ror.org/021tjzv82', 'en', 1, 'https://ror.org/021tjzv82 Christian Connections for International Health'),
(46731, 'https://ror.org/021tpet02', 'en', 1, 'https://ror.org/021tpet02 Association for Unmanned Vehicle Systems International'),
(46732, 'https://ror.org/021zy7t36', 'en', 1, 'https://ror.org/021zy7t36 State Special Communications Service of Ukraine Державна служба ŃŠæŠµŃ†Ń–Š°Š»ŃŒŠ½Š¾Š³Š¾ зв''ŃŠ·ŠŗŃƒ та Š·Š°Ń…ŠøŃŃ‚Ńƒ інформації України'),
(46733, 'https://ror.org/02229kd62', 'no_lang_code', 1, 'https://ror.org/02229kd62 Staples (Canada)'),
(46734, 'https://ror.org/0222gjv49', 'en', 1, 'https://ror.org/0222gjv49 Kumamoto Prefectural Arao High School ē†Šęœ¬ēœŒē«‹č’å°¾é«˜ē­‰å­¦ę ”'),
(46735, 'https://ror.org/022598c22', 'en', 1, 'https://ror.org/022598c22 University of Maryland University College Europe'),
(46736, 'https://ror.org/0225zey96', 'en', 1, 'https://ror.org/0225zey96 Obihiro Otani Junior College 帯広大谷短期大学'),
(46737, 'https://ror.org/0226q0843', 'no_lang_code', 1, 'https://ror.org/0226q0843 Horyuji Kokusai High School å„ˆč‰ÆēœŒē«‹ę³•éš†åÆŗå›½éš›é«˜ē­‰å­¦ę ”'),
(46738, 'https://ror.org/022733842', 'es', 1, 'https://ror.org/022733842 Biblioteca del Congreso de la Nación'),
(46739, 'https://ror.org/0227dek49', 'en', 1, 'https://ror.org/0227dek49 Zhejiang Provincial Environmental Protection Scientific Research Institute ęµ™ę±ŸēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦č®¾č®”ē ”ē©¶é™¢'),
(46740, 'https://ror.org/0228dbh09', 'en', 1, 'https://ror.org/0228dbh09 Observer Research Foundation'),
(46741, 'https://ror.org/0228gqj17', 'no_lang_code', 1, 'https://ror.org/0228gqj17 Pitney Bowes (Germany)'),
(46742, 'https://ror.org/0229a6d71', 'en', 1, 'https://ror.org/0229a6d71 Institut za javne financije Institute of Public Finance'),
(46743, 'https://ror.org/022b5tw91', 'en', 1, 'https://ror.org/022b5tw91 Hans Bƶckler Foundation Hans-Bƶckler-Stiftung'),
(46744, 'https://ror.org/022c5tm72', 'en', 1, 'https://ror.org/022c5tm72 American Association of Directors of Psychiatric Residency Training'),
(46745, 'https://ror.org/022dg8423', 'no_lang_code', 1, 'https://ror.org/022dg8423 Danone (Morocco)'),
(46746, 'https://ror.org/022ep0273', 'en', 1, 'https://ror.org/022ep0273 Herrick District Library'),
(46747, 'https://ror.org/022gbr829', 'no_lang_code', 1, 'https://ror.org/022gbr829 Aerial BioPharma'),
(46748, 'https://ror.org/022h9xz52', 'no_lang_code', 1, 'https://ror.org/022h9xz52 Fon (United Kingdom)'),
(46749, 'https://ror.org/022hg5v70', 'en', 1, 'https://ror.org/022hg5v70 Chicago Neuropsychology Group'),
(46750, 'https://ror.org/022kamm22', 'en', 1, 'https://ror.org/022kamm22 Al Mamon University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ł…Ų£Ł…ŁˆŁ† الجامعة'),
(46751, 'https://ror.org/022nyzy72', 'en', 1, 'https://ror.org/022nyzy72 Qinghai Institute for Endemic Diease Prevention and Control'),
(46752, 'https://ror.org/022pvfm44', 'en', 1, 'https://ror.org/022pvfm44 Lawton Public Schools'),
(46753, 'https://ror.org/022qq1986', 'en', 1, 'https://ror.org/022qq1986 Action on Smoking and Health'),
(46754, 'https://ror.org/022rxf761', 'da', 1, 'https://ror.org/022rxf761 Parkinsonforeningen'),
(46755, 'https://ror.org/022tpcx70', 'no_lang_code', 1, 'https://ror.org/022tpcx70 JVC Kenwood (Japan) ę Ŗå¼ä¼šē¤¾ JVCć‚±ćƒ³ć‚¦ćƒƒćƒ‰'),
(46756, 'https://ror.org/022tqjv17', 'en', 1, 'https://ror.org/022tqjv17 University of Yamanashi Hospital å±±ę¢Øå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(46757, 'https://ror.org/022wcve15', 'no_lang_code', 1, 'https://ror.org/022wcve15 De Beers (United Kingdom)'),
(46758, 'https://ror.org/02306qr05', 'en', 1, 'https://ror.org/02306qr05 St. Mary''s College åå¤å±‹ęŸ³åŸŽēŸ­ęœŸå¤§å­¦'),
(46759, 'https://ror.org/0230wyg61', 'en', 1, 'https://ror.org/0230wyg61 Cardiovascular Innovation Institute'),
(46760, 'https://ror.org/0231jxj79', 'en', 1, 'https://ror.org/0231jxj79 Associated Press'),
(46761, 'https://ror.org/0232zwb84', 'fr', 1, 'https://ror.org/0232zwb84 CIRP, College International pour la Recherche en Productique'),
(46762, 'https://ror.org/0233t5667', 'no_lang_code', 1, 'https://ror.org/0233t5667 Solution Spray Technologies (United states)'),
(46763, 'https://ror.org/02357hp16', 'en', 1, 'https://ror.org/02357hp16 Gunma Museum of Natural History ē¾¤é¦¬ēœŒē«‹č‡Ŗē„¶å²åšē‰©é¤Ø'),
(46764, 'https://ror.org/0237ckc25', 'no_lang_code', 1, 'https://ror.org/0237ckc25 Kuehne + Nagel (Greece)'),
(46765, 'https://ror.org/0237h9n51', 'en', 1, 'https://ror.org/0237h9n51 Kagawa Prefectural School for the Blind é¦™å·ēœŒē«‹ē›²å­¦ę ”'),
(46766, 'https://ror.org/0238v4968', 'no_lang_code', 1, 'https://ror.org/0238v4968 NanoMedica (United States)'),
(46767, 'https://ror.org/023af1t29', 'en', 1, 'https://ror.org/023af1t29 Gyeonggi College of Science and Technology ź²½źø°ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(46768, 'https://ror.org/023bk1n32', 'no_lang_code', 1, 'https://ror.org/023bk1n32 Research Triangle Environmental Health Collaborative (United States)'),
(46769, 'https://ror.org/023dp4p42', 'en', 1, 'https://ror.org/023dp4p42 Mesa Public Library'),
(46770, 'https://ror.org/023e72x78', 'no_lang_code', 1, 'https://ror.org/023e72x78 Lishui Central Hospital äø½ę°“åø‚äø­åæƒåŒ»é™¢'),
(46771, 'https://ror.org/023fas823', 'no_lang_code', 1, 'https://ror.org/023fas823 Motor Coach Industries (United States)'),
(46772, 'https://ror.org/023gjks82', 'en', 1, 'https://ror.org/023gjks82 Aichi Arts Center ę„›ēŸ„čŠøč”“ę–‡åŒ–ć‚»ćƒ³ć‚æ'),
(46773, 'https://ror.org/023jcww95', 'es', 1, 'https://ror.org/023jcww95 Centro de Excelencia en Procesos y Productos de Córdoba'),
(46774, 'https://ror.org/023kbw492', 'en', 1, 'https://ror.org/023kbw492 Pittsburgh Psychoanalytic Center'),
(46775, 'https://ror.org/023m9rp24', 'de', 1, 'https://ror.org/023m9rp24 Hautklinik Heidelberg'),
(46776, 'https://ror.org/023n1np13', 'en', 1, 'https://ror.org/023n1np13 Arannayk Foundation'),
(46777, 'https://ror.org/023nefd62', 'en', 1, 'https://ror.org/023nefd62 Museum of Modern Art čŒØåŸŽēœŒčæ‘ä»£ē¾Žč”“é¤Ø'),
(46778, 'https://ror.org/023pvcn20', 'no_lang_code', 1, 'https://ror.org/023pvcn20 Cadence Design Systems (United Kingdom)'),
(46779, 'https://ror.org/023q20n38', 'en', 1, 'https://ror.org/023q20n38 Chinese Pharmaceutical Association äø­å›½čÆå­¦ä¼š'),
(46780, 'https://ror.org/023q39239', 'no_lang_code', 1, 'https://ror.org/023q39239 Eijkelkamp SonicSampDrill (Netherlands)'),
(46781, 'https://ror.org/023qkzz98', 'no_lang_code', 1, 'https://ror.org/023qkzz98 Gemalto (United Kingdom)'),
(46782, 'https://ror.org/023qwjb45', 'no_lang_code', 1, 'https://ror.org/023qwjb45 Allergan (India)'),
(46783, 'https://ror.org/023sa9n23', 'en', 1, 'https://ror.org/023sa9n23 Australian Society for Medical Research'),
(46784, 'https://ror.org/023t7pn91', 'en', 1, 'https://ror.org/023t7pn91 Grantmakers for Education'),
(46785, 'https://ror.org/023vnxa51', 'en', 1, 'https://ror.org/023vnxa51 National Consumer Affairs Center of Japan å›½ę°‘ē”Ÿę“»ć‚»ćƒ³ć‚æćƒ¼'),
(46786, 'https://ror.org/023x6j183', 'no_lang_code', 1, 'https://ror.org/023x6j183 Guardian Industries (United States)'),
(46787, 'https://ror.org/023yn4412', 'en', 1, 'https://ror.org/023yn4412 Hekinan Technical High School ę„›ēŸ„ēœŒē«‹ē¢§å—å·„ę„­é«˜ē­‰å­¦ę ”'),
(46788, 'https://ror.org/023zkew37', 'es', 1, 'https://ror.org/023zkew37 Universidad EspaƱol'),
(46789, 'https://ror.org/02401yq31', 'no_lang_code', 1, 'https://ror.org/02401yq31 Tartis (United States)'),
(46790, 'https://ror.org/024285019', 'en', 1, 'https://ror.org/024285019 Shizuoka Prefecture Agricultural and Forestry Research Institute é™å²”ēœŒ/č¾²ęž—ęŠ€č”“ē ”ē©¶ę‰€'),
(46791, 'https://ror.org/024596r45', 'en', 1, 'https://ror.org/024596r45 Euclid University'),
(46792, 'https://ror.org/0246zee65', 'de', 1, 'https://ror.org/0246zee65 Hals- Nasen- und Ohrenklinik Gießen'),
(46793, 'https://ror.org/0247c3d85', 'no_lang_code', 1, 'https://ror.org/0247c3d85 Siemens (Israel)'),
(46794, 'https://ror.org/0248jkv14', 'en', 1, 'https://ror.org/0248jkv14 British Psychological Society'),
(46795, 'https://ror.org/024972556', 'en', 1, 'https://ror.org/024972556 Hakodate City Museum åø‚ē«‹å‡½é¤Øåšē‰©é¤Ø'),
(46796, 'https://ror.org/024acas24', 'en', 1, 'https://ror.org/024acas24 Research in Advanced Medical Informatics and Telematics'),
(46797, 'https://ror.org/024ape423', 'en', 1, 'https://ror.org/024ape423 Fraunhofer Institute for Integrated Circuits Fraunhofer-Institut für Integrierte Schaltungen'),
(46798, 'https://ror.org/024cb5849', 'de', 1, 'https://ror.org/024cb5849 Schweizerisches Idiotikon Swiss idioticon'),
(46799, 'https://ror.org/024cft222', 'no_lang_code', 1, 'https://ror.org/024cft222 Wellington UniVentures (New Zealand)'),
(46800, 'https://ror.org/024dzge57', 'no_lang_code', 1, 'https://ror.org/024dzge57 Sunstar (Germany)'),
(46801, 'https://ror.org/024e28c54', 'no_lang_code', 1, 'https://ror.org/024e28c54 AbbVie (Bahamas)'),
(46802, 'https://ror.org/024emee48', 'es', 1, 'https://ror.org/024emee48 Corporación Autónoma Regional de Los Valles del Sinu y del San Jorge'),
(46803, 'https://ror.org/024j7f958', 'en', 1, 'https://ror.org/024j7f958 Southeast Clinical Oncology Research Consortium'),
(46804, 'https://ror.org/024jp7r97', 'pt', 1, 'https://ror.org/024jp7r97 Associação Brasileira de Metalurgia, Materiais e Mineração'),
(46805, 'https://ror.org/024nfx323', 'no_lang_code', 1, 'https://ror.org/024nfx323 Quzhou University č”¢å·žå­¦é™¢'),
(46806, 'https://ror.org/024ntr864', 'fr', 1, 'https://ror.org/024ntr864 UniversitƩ Euro-Afrique'),
(46807, 'https://ror.org/024p6aq98', 'en', 1, 'https://ror.org/024p6aq98 Fraunhofer Institute for Silicon Technology Fraunhofer-Institut für Siliziumtechnologie'),
(46808, 'https://ror.org/024r2p353', 'en', 1, 'https://ror.org/024r2p353 National Guard Youth Foundation'),
(46809, 'https://ror.org/024rpvq56', 'en', 1, 'https://ror.org/024rpvq56 Foundation Nerve Institute å…¬ē›Šč²”å›£ę³•äŗŗē„žēµŒē ”ē©¶ę‰€'),
(46810, 'https://ror.org/024wr7x07', 'es', 1, 'https://ror.org/024wr7x07 Universidad Los Leones'),
(46811, 'https://ror.org/02503sm81', 'no_lang_code', 1, 'https://ror.org/02503sm81 Cooke Aquaculture (Canada)'),
(46812, 'https://ror.org/0250cw529', 'no_lang_code', 1, 'https://ror.org/0250cw529 Clearside Biomedical (United States)'),
(46813, 'https://ror.org/0252kcx79', 'en', 1, 'https://ror.org/0252kcx79 Japan Color Research Institute ę—„ęœ¬č‰²å½©ē ”ē©¶ę‰€'),
(46814, 'https://ror.org/02552gk22', 'en', 1, 'https://ror.org/02552gk22 Islamic University of Rotterdam Islamitische Universiteit Rotterdam'),
(46815, 'https://ror.org/0255r2t12', 'no_lang_code', 1, 'https://ror.org/0255r2t12 Tronox (Australia)'),
(46816, 'https://ror.org/02576fj66', 'en', 1, 'https://ror.org/02576fj66 Hokkaidō Museum of Literature'),
(46817, 'https://ror.org/025a27r74', 'en', 1, 'https://ror.org/025a27r74 Hue University of Agriculture and Forestry TrĘ°į»ng ĐẔi hį»c NĆ“ng LĆ¢m – ĐẔi hį»c Huįŗæ'),
(46818, 'https://ror.org/025b2hx26', 'en', 1, 'https://ror.org/025b2hx26 National Institute of Technology, Gifu College å²é˜œå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(46819, 'https://ror.org/025ctym15', 'pt', 1, 'https://ror.org/025ctym15 Fundação Meridional de Apoio à Pesquisa AgropecuÔria'),
(46820, 'https://ror.org/025eaap70', 'en', 1, 'https://ror.org/025eaap70 Hokkaido Science Education Center åŒ—ęµ·é“ē«‹ē†ē§‘ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46821, 'https://ror.org/025ejqq45', 'en', 1, 'https://ror.org/025ejqq45 BirdLife International'),
(46822, 'https://ror.org/025eq1v74', 'id', 1, 'https://ror.org/025eq1v74 Universitas Gajah Putih'),
(46823, 'https://ror.org/025eq4061', 'no_lang_code', 1, 'https://ror.org/025eq4061 GSMA (United States)'),
(46824, 'https://ror.org/025esa616', 'en', 1, 'https://ror.org/025esa616 Parks Victoria'),
(46825, 'https://ror.org/025gshh98', 'en', 1, 'https://ror.org/025gshh98 NTI University'),
(46826, 'https://ror.org/025h8ph98', 'en', 1, 'https://ror.org/025h8ph98 Fort Monmouth Economic Revitalization Authority'),
(46827, 'https://ror.org/025hrq177', 'en', 1, 'https://ror.org/025hrq177 Zeta Phi Beta Sorority'),
(46828, 'https://ror.org/025k5zj19', 'en', 1, 'https://ror.org/025k5zj19 Kumamoto Educational Center ē†Šęœ¬åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46829, 'https://ror.org/025kk0m42', 'en', 1, 'https://ror.org/025kk0m42 Dustin Michael Sekula Memorial Library'),
(46830, 'https://ror.org/025pkgg38', 'en', 1, 'https://ror.org/025pkgg38 Fukui Prefectural Fujishima High School ē¦äŗ•ēœŒē«‹č—¤å³¶é«˜ē­‰å­¦ę ”'),
(46831, 'https://ror.org/025q49t60', 'pt', 1, 'https://ror.org/025q49t60 Prefeitura Municipal de Esteio'),
(46832, 'https://ror.org/025qxh655', 'en', 1, 'https://ror.org/025qxh655 International Alliance for Biological Standardization'),
(46833, 'https://ror.org/025v7m073', 'en', 1, 'https://ror.org/025v7m073 Hokkaido Ainu Culture Research Center åŒ—ęµ·é“åŗåŒ—ęµ·é“ē«‹ć‚¢ć‚¤ćƒŒę°‘ę—ę–‡åŒ–ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(46834, 'https://ror.org/025wz5n41', 'en', 1, 'https://ror.org/025wz5n41 Osaka Prefectural Kitano High School å¤§é˜Ŗåŗœē«‹åŒ—é‡Žé«˜ē­‰å­¦ę ”'),
(46835, 'https://ror.org/025x0cj89', 'no_lang_code', 1, 'https://ror.org/025x0cj89 Kodak (Canada)'),
(46836, 'https://ror.org/025xz1z61', 'en', 1, 'https://ror.org/025xz1z61 National Agricultural Research Institute'),
(46837, 'https://ror.org/025y1g718', 'no_lang_code', 1, 'https://ror.org/025y1g718 Kyocera (Japan) äŗ¬ć‚»ćƒ©ę Ŗå¼ä¼šē¤¾'),
(46838, 'https://ror.org/0262wpz62', 'no_lang_code', 1, 'https://ror.org/0262wpz62 Education software (Japan) ę•™č‚²ć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢'),
(46839, 'https://ror.org/0263gzc89', 'en', 1, 'https://ror.org/0263gzc89 Hara Eye Hospital åŽŸēœ¼ē§‘ē—…é™¢'),
(46840, 'https://ror.org/0264dxb48', 'en', 1, 'https://ror.org/0264dxb48 Wellcome/MRC Institute of Metabolic Science'),
(46841, 'https://ror.org/02652az59', 'en', 1, 'https://ror.org/02652az59 Control Union Academy'),
(46842, 'https://ror.org/0266fhg96', 'no_lang_code', 1, 'https://ror.org/0266fhg96 iNano Medical (Canada)'),
(46843, 'https://ror.org/026743317', 'en', 1, 'https://ror.org/026743317 Water and Land Resource Centre'),
(46844, 'https://ror.org/0269xbr94', 'en', 1, 'https://ror.org/0269xbr94 Californians Dedicated to Education Foundation'),
(46845, 'https://ror.org/026a4qe69', 'en', 1, 'https://ror.org/026a4qe69 Ichinomiya Municipal City Hospital 一宮市立市民病院'),
(46846, 'https://ror.org/026bbbm26', 'en', 1, 'https://ror.org/026bbbm26 Museum of African American History'),
(46847, 'https://ror.org/026csr892', 'en', 1, 'https://ror.org/026csr892 Indiana Office of Defense Development'),
(46848, 'https://ror.org/026ghdj11', 'en', 1, 'https://ror.org/026ghdj11 Wikimedia Belgium WikimƩdia Belgique'),
(46849, 'https://ror.org/026k6bc31', 'en', 1, 'https://ror.org/026k6bc31 Mount Prospect Public Library'),
(46850, 'https://ror.org/026kmj910', 'no_lang_code', 1, 'https://ror.org/026kmj910 ThyssenKrupp (Liechtenstein)'),
(46851, 'https://ror.org/026m6ke87', 'en', 1, 'https://ror.org/026m6ke87 Brainerd Public Library'),
(46852, 'https://ror.org/026mhhz95', 'no_lang_code', 1, 'https://ror.org/026mhhz95 Benchmark Education (United States)'),
(46853, 'https://ror.org/026p0h140', 'en', 1, 'https://ror.org/026p0h140 Australian Society of Orthodontists'),
(46854, 'https://ror.org/026pdc066', 'no_lang_code', 1, 'https://ror.org/026pdc066 Caterpillar (Germany)'),
(46855, 'https://ror.org/026s3qz20', 'en', 1, 'https://ror.org/026s3qz20 Slovak Innovation and Energy Agency SlovenskĆ” inovačnĆ” a energetickĆ” agentĆŗra'),
(46856, 'https://ror.org/026s4j722', 'en', 1, 'https://ror.org/026s4j722 Russian Academy of Education России Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(46857, 'https://ror.org/026sfkz12', 'no_lang_code', 1, 'https://ror.org/026sfkz12 Mondelēz International (Singapore)'),
(46858, 'https://ror.org/026t6sy78', 'no_lang_code', 1, 'https://ror.org/026t6sy78 GlaxoSmithKline (Croatia)'),
(46859, 'https://ror.org/026tyse21', 'en', 1, 'https://ror.org/026tyse21 Anaheim Public Library'),
(46860, 'https://ror.org/026vq2355', 'en', 1, 'https://ror.org/026vq2355 Niigata Prefectural Niigata Minami High School ę–°ę½ŸēœŒē«‹ę–°ę½Ÿå—é«˜ē­‰å­¦ę ”'),
(46861, 'https://ror.org/026wdw115', 'no_lang_code', 1, 'https://ror.org/026wdw115 Spero Energy (United States)'),
(46862, 'https://ror.org/026x09x35', 'no_lang_code', 1, 'https://ror.org/026x09x35 Deutsches Patent- und Markenamt German Patent and Trade Mark Office (Germany)'),
(46863, 'https://ror.org/026yc8074', 'en', 1, 'https://ror.org/026yc8074 Hot Springs Research Institute of Kanagawa Prefecture ē„žå„ˆå·ēœŒęø©ę³‰åœ°å­¦ē ”ē©¶ę‰€'),
(46864, 'https://ror.org/02704zf98', 'de', 1, 'https://ror.org/02704zf98 Analytische Laboratorium, Analytisches Laboratorium'),
(46865, 'https://ror.org/02710jx66', 'no_lang_code', 1, 'https://ror.org/02710jx66 Izu Nirayama Onsen Hospital ä¼Šč±†éŸ®å±±ęø©ę³‰ē—…é™¢'),
(46866, 'https://ror.org/0271q3486', 'en', 1, 'https://ror.org/0271q3486 Foundation Diamond Aging Society Research Foundation ćƒ€ć‚¤ćƒ¤é«˜é½¢ē¤¾ä¼šē ”ē©¶č²”å›£'),
(46867, 'https://ror.org/0272aey45', 'no_lang_code', 1, 'https://ror.org/0272aey45 Glen Dimplex (Germany)'),
(46868, 'https://ror.org/0272gsy54', 'no_lang_code', 1, 'https://ror.org/0272gsy54 BMT Group (United States)'),
(46869, 'https://ror.org/0272m3153', 'no_lang_code', 1, 'https://ror.org/0272m3153 WestRock (Germany)'),
(46870, 'https://ror.org/0273ga571', 'fr', 1, 'https://ror.org/0273ga571 DƩveloppement Economique Longueuil'),
(46871, 'https://ror.org/0274wgp76', 'no_lang_code', 1, 'https://ror.org/0274wgp76 Gold Peak Industries (United Kingdom)'),
(46872, 'https://ror.org/0275ehw53', 'en', 1, 'https://ror.org/0275ehw53 Bremen Overseas Research & Development Association'),
(46873, 'https://ror.org/0276n9116', 'en', 1, 'https://ror.org/0276n9116 Yakub Kolas Central Scientific Library'),
(46874, 'https://ror.org/027906p22', 'en', 1, 'https://ror.org/027906p22 Toyama Prefectural Namerikawa High School åÆŒå±±ēœŒē«‹ę»‘å·é«˜ē­‰å­¦ę ”'),
(46875, 'https://ror.org/0279ghc90', 'en', 1, 'https://ror.org/0279ghc90 Pohang SeMyeong Christianity Hospital'),
(46876, 'https://ror.org/0279hpp97', 'no_lang_code', 1, 'https://ror.org/0279hpp97 Oakwood Laboratories (United States)'),
(46877, 'https://ror.org/027acbb13', 'en', 1, 'https://ror.org/027acbb13 Government of the Czech Republic VlÔda České republiky'),
(46878, 'https://ror.org/027bhx472', 'no_lang_code', 1, 'https://ror.org/027bhx472 Univar (United States)'),
(46879, 'https://ror.org/027e1a103', 'no_lang_code', 1, 'https://ror.org/027e1a103 Qisda (China)'),
(46880, 'https://ror.org/027g0hb56', 'no_lang_code', 1, 'https://ror.org/027g0hb56 Hitachi (Germany)'),
(46881, 'https://ror.org/027gdgv35', 'en', 1, 'https://ror.org/027gdgv35 Pike Place Market Foundation'),
(46882, 'https://ror.org/027ge9s66', 'no_lang_code', 1, 'https://ror.org/027ge9s66 Shure Foods (United States)'),
(46883, 'https://ror.org/027jcax02', 'no_lang_code', 1, 'https://ror.org/027jcax02 Ixion (Spain)'),
(46884, 'https://ror.org/027k8ke79', 'en', 1, 'https://ror.org/027k8ke79 Show-Me Institute'),
(46885, 'https://ror.org/027kpf759', 'no_lang_code', 1, 'https://ror.org/027kpf759 Mitsui Mining & Smelting (Japan) äø‰äŗ•é‡‘å±žé‰±ę„­ę Ŗå¼ä¼šē¤¾'),
(46886, 'https://ror.org/027n11q15', 'en', 1, 'https://ror.org/027n11q15 Lee County Library System'),
(46887, 'https://ror.org/027pe7w88', 'no_lang_code', 1, 'https://ror.org/027pe7w88 MunEDA (Germany)'),
(46888, 'https://ror.org/027q26r60', 'en', 1, 'https://ror.org/027q26r60 Kyoto Municipal Uzumasa Elementary School äŗ¬éƒ½åø‚ē«‹å¤Ŗē§¦å°å­¦ę ”'),
(46889, 'https://ror.org/027q4m113', 'en', 1, 'https://ror.org/027q4m113 National Association for Armenian Studies and Research'),
(46890, 'https://ror.org/027qdw603', 'no_lang_code', 1, 'https://ror.org/027qdw603 Cadence Design Systems (India)'),
(46891, 'https://ror.org/027qqvd10', 'no_lang_code', 1, 'https://ror.org/027qqvd10 Obayashi (Japan) ę Ŗå¼ä¼šē¤¾å¤§ęž—ēµ„'),
(46892, 'https://ror.org/027rx9762', 'en', 1, 'https://ror.org/027rx9762 United States Naval Sea Cadet Corps'),
(46893, 'https://ror.org/027sr5070', 'no_lang_code', 1, 'https://ror.org/027sr5070 Hubbell (United States)'),
(46894, 'https://ror.org/027t2s119', 'no_lang_code', 1, 'https://ror.org/027t2s119 Intel (Israel)'),
(46895, 'https://ror.org/027tb8875', 'en', 1, 'https://ror.org/027tb8875 Marine Mammals of Maine'),
(46896, 'https://ror.org/027tjrp79', 'en', 1, 'https://ror.org/027tjrp79 Africa Progress Panel'),
(46897, 'https://ror.org/027w9yg20', 'en', 1, 'https://ror.org/027w9yg20 Society for Human Resource Management'),
(46898, 'https://ror.org/027wewa02', 'en', 1, 'https://ror.org/027wewa02 Manufacturing Institute'),
(46899, 'https://ror.org/027x43420', 'en', 1, 'https://ror.org/027x43420 Nihon Institute of Medical Science ę—„ęœ¬åŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(46900, 'https://ror.org/027y4yw29', 'no_lang_code', 1, 'https://ror.org/027y4yw29 Abiomed (Germany)'),
(46901, 'https://ror.org/027y5ew45', 'en', 1, 'https://ror.org/027y5ew45 Research Institute of Environment, Agriculture and Fisheries, Osaka Prefecture å¤§é˜Ŗåŗœē«‹ē’°å¢ƒč¾²ęž—ę°“ē”£ē·åˆē ”ē©¶ę‰€'),
(46902, 'https://ror.org/027ynca27', 'no_lang_code', 1, 'https://ror.org/027ynca27 Formosa Plastics (Taiwan) å°ē£å”‘č† å…¬åø'),
(46903, 'https://ror.org/027zhhk28', 'en', 1, 'https://ror.org/027zhhk28 Meiwa Gakuen Junior College ę˜Žå’Œå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(46904, 'https://ror.org/0282kvf82', 'en', 1, 'https://ror.org/0282kvf82 FƩdƩration Internationale Pharmaceutique International Pharmaceutical Federation'),
(46905, 'https://ror.org/0282p8n44', 'en', 1, 'https://ror.org/0282p8n44 Osaka Prefectural Education Center å¤§é˜Ŗåŗœę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(46906, 'https://ror.org/0282pkr46', 'en', 1, 'https://ror.org/0282pkr46 Fukuoka Junior College for Kindergarten Teachers ē¦å²”ć“ć©ć‚‚ēŸ­ęœŸå¤§å­¦'),
(46907, 'https://ror.org/0282x2n68', 'no_lang_code', 1, 'https://ror.org/0282x2n68 Nidek (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ‡ćƒƒć‚Æ'),
(46908, 'https://ror.org/02846qn43', 'en', 1, 'https://ror.org/02846qn43 Japanese La Salle Academy ćƒ©ćƒ»ć‚µćƒ¼ćƒ«äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(46909, 'https://ror.org/0284mr070', 'no_lang_code', 1, 'https://ror.org/0284mr070 Hiroshima Cosmopolitan University åŗƒå³¶éƒ½åø‚å­¦åœ’å¤§å­¦'),
(46910, 'https://ror.org/0285rch92', 'en', 1, 'https://ror.org/0285rch92 National Zoonoses and Food Hygiene Research Centre'),
(46911, 'https://ror.org/0287ba124', 'ms', 1, 'https://ror.org/0287ba124 INFOFISH'),
(46912, 'https://ror.org/0288c6p43', 'no_lang_code', 1, 'https://ror.org/0288c6p43 Dana (United States)'),
(46913, 'https://ror.org/0289e7422', 'no_lang_code', 1, 'https://ror.org/0289e7422 JFE Holdings (Japan) ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(46914, 'https://ror.org/028a41k93', 'en', 1, 'https://ror.org/028a41k93 Global Health Corps'),
(46915, 'https://ror.org/028b28438', 'es', 1, 'https://ror.org/028b28438 Fundacion Biodiversa Colombia'),
(46916, 'https://ror.org/028bkpm63', 'no_lang_code', 1, 'https://ror.org/028bkpm63 Medella Health (Canada)'),
(46917, 'https://ror.org/028ds0f65', 'en', 1, 'https://ror.org/028ds0f65 American Society of Heating, Refrigerating, and Air-Conditioning Engineers'),
(46918, 'https://ror.org/028ewej26', 'en', 1, 'https://ror.org/028ewej26 Whiteville City Schools'),
(46919, 'https://ror.org/028hbmh41', 'en', 1, 'https://ror.org/028hbmh41 Nashua Public Library'),
(46920, 'https://ror.org/028kj2697', 'no_lang_code', 1, 'https://ror.org/028kj2697 ITT (Germany)'),
(46921, 'https://ror.org/028m66c44', 'en', 1, 'https://ror.org/028m66c44 Donetsk Institute for Physics and Engineering named after O.O. Galkin Донецкий физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. А.А.Галкина'),
(46922, 'https://ror.org/028m7n806', 'en', 1, 'https://ror.org/028m7n806 Aichi Prefectural Mitsu High School ę„›ēŸ„ēœŒē«‹å¾”ę“„é«˜ē­‰å­¦ę ”'),
(46923, 'https://ror.org/028m8dj97', 'no_lang_code', 1, 'https://ror.org/028m8dj97 Kentucky imaging Technologies (United States)'),
(46924, 'https://ror.org/028mbk641', 'no_lang_code', 1, 'https://ror.org/028mbk641 Transcend Engineering (United States)'),
(46925, 'https://ror.org/028n6av57', 'no_lang_code', 1, 'https://ror.org/028n6av57 Dynacast (Canada)'),
(46926, 'https://ror.org/028pp3w31', 'no_lang_code', 1, 'https://ror.org/028pp3w31 Foxlink (Taiwan) ę­£å““ē²¾åÆ†å·„äøš'),
(46927, 'https://ror.org/028s4s402', 'en', 1, 'https://ror.org/028s4s402 Sri Aurobindo Institute of Technology'),
(46928, 'https://ror.org/028t9cg70', 'en', 1, 'https://ror.org/028t9cg70 Baylor Institute for Rehabilitation'),
(46929, 'https://ror.org/028tq4e31', 'en', 1, 'https://ror.org/028tq4e31 Newport Chemical Depot'),
(46930, 'https://ror.org/028ttt579', 'de', 1, 'https://ror.org/028ttt579 Thüringer Landesanstalt für Landwirtschaft'),
(46931, 'https://ror.org/028vbck82', 'en', 1, 'https://ror.org/028vbck82 Kanagawa Odawara Nursing School ē„žå„ˆå·ēœŒē«‹å°ē”°åŽŸé¤Šč­·å­¦ę ”'),
(46932, 'https://ror.org/028wmn587', 'en', 1, 'https://ror.org/028wmn587 Central Kentucky Educational Cooperative'),
(46933, 'https://ror.org/028x0tg55', 'no_lang_code', 1, 'https://ror.org/028x0tg55 TE Connectivity (Austria)'),
(46934, 'https://ror.org/028x16v34', 'no_lang_code', 1, 'https://ror.org/028x16v34 Biominas (Brazil)'),
(46935, 'https://ror.org/028xn8h27', 'pt', 1, 'https://ror.org/028xn8h27 Associação Brasileira de Engenharia Agrícola'),
(46936, 'https://ror.org/028zxrr95', 'en', 1, 'https://ror.org/028zxrr95 Thai Nguyen University of Agriculture and Forestry TrĘ°į»ng ĐẔi hį»c NĆ“ng lĆ¢m, ĐẔi hį»c ThĆ”i NguyĆŖn'),
(46937, 'https://ror.org/029043079', 'en', 1, 'https://ror.org/029043079 Edogawa Girls'' Junior & Senior High School ę±Ÿęˆøå·å„³å­äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(46938, 'https://ror.org/029051y19', 'en', 1, 'https://ror.org/029051y19 Jiangsu Provincial Seismological Bureau ę±Ÿč‹ēœåœ°éœ‡å±€'),
(46939, 'https://ror.org/029210p22', 'en', 1, 'https://ror.org/029210p22 Kanagawa Prefectural Youth Center ē„žå„ˆå·ēœŒē«‹é’å°‘å¹“ć‚»ćƒ³ć‚æćƒ¼'),
(46940, 'https://ror.org/0292ff745', 'en', 1, 'https://ror.org/0292ff745 Council on Foundations');
INSERT INTO `rors` VALUES
(46941, 'https://ror.org/0296rp189', 'no_lang_code', 1, 'https://ror.org/0296rp189 Genocea (United States)'),
(46942, 'https://ror.org/0297wgk17', 'en', 1, 'https://ror.org/0297wgk17 Lifebox'),
(46943, 'https://ror.org/029bg2w02', 'de', 1, 'https://ror.org/029bg2w02 Institut für Salutogenese'),
(46944, 'https://ror.org/029bs9b57', 'pt', 1, 'https://ror.org/029bs9b57 Fundação Cearense de Meteorologia e Recursos Hídricos'),
(46945, 'https://ror.org/029cnn998', 'en', 1, 'https://ror.org/029cnn998 Delaware Division of Libraries'),
(46946, 'https://ror.org/029evds51', 'no_lang_code', 1, 'https://ror.org/029evds51 Infineum (United Kingdom)'),
(46947, 'https://ror.org/029ha5706', 'no_lang_code', 1, 'https://ror.org/029ha5706 Gravity Bio (United States)'),
(46948, 'https://ror.org/029m89a02', 'en', 1, 'https://ror.org/029m89a02 Saga Prefectural Imari Agriculture and Forestry High School ä½č³€ēœŒē«‹ä¼Šäø‡é‡Œč¾²ęž—é«˜ē­‰å­¦ę ”'),
(46949, 'https://ror.org/029q31q54', 'en', 1, 'https://ror.org/029q31q54 Canadian Friends Of Tel-Aviv University'),
(46950, 'https://ror.org/029qnmr64', 'en', 1, 'https://ror.org/029qnmr64 Kern County Library'),
(46951, 'https://ror.org/029rcz204', 'no_lang_code', 1, 'https://ror.org/029rcz204 Nanya Technology (Taiwan) å—äŗžē§‘ęŠ€'),
(46952, 'https://ror.org/029sfp345', 'en', 1, 'https://ror.org/029sfp345 North Carolina Biosciences Organization'),
(46953, 'https://ror.org/029ve2p44', 'no_lang_code', 1, 'https://ror.org/029ve2p44 Johnson Matthey (France)'),
(46954, 'https://ror.org/029vpma63', 'en', 1, 'https://ror.org/029vpma63 Bronllys Hospital'),
(46955, 'https://ror.org/029wtm372', 'en', 1, 'https://ror.org/029wtm372 Stimson Center'),
(46956, 'https://ror.org/029z3va66', 'en', 1, 'https://ror.org/029z3va66 Iowa Oncology Research Association'),
(46957, 'https://ror.org/02a1tyz74', 'en', 1, 'https://ror.org/02a1tyz74 National Engineering Research Center for Wheat å›½å®¶å°éŗ¦å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(46958, 'https://ror.org/02a3d3802', 'no_lang_code', 1, 'https://ror.org/02a3d3802 Netsil (United States)'),
(46959, 'https://ror.org/02a5z7132', 'en', 1, 'https://ror.org/02a5z7132 Research Institute for Policies on Pension and Aging å¹“é‡‘ćØé«˜é½¢åŒ–ć«é–¢ć™ć‚‹ę”æē­–ē ”ē©¶ę‰€'),
(46960, 'https://ror.org/02a7zgk95', 'en', 1, 'https://ror.org/02a7zgk95 Sapporo Medical University Hospital ęœ­å¹ŒåŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(46961, 'https://ror.org/02a8cr479', 'pt', 1, 'https://ror.org/02a8cr479 Sociedade de Anestesiologia do Rio Grande do Sul'),
(46962, 'https://ror.org/02a8nk956', 'en', 1, 'https://ror.org/02a8nk956 Medical Teams International'),
(46963, 'https://ror.org/02a8zpt37', 'no_lang_code', 1, 'https://ror.org/02a8zpt37 Essilor (France)'),
(46964, 'https://ror.org/02abk3844', 'en', 1, 'https://ror.org/02abk3844 Ueda Womens Junior College äøŠē”°å„³å­ēŸ­ęœŸå¤§å­¦'),
(46965, 'https://ror.org/02aexpx94', 'no_lang_code', 1, 'https://ror.org/02aexpx94 Alchemy (Canada)'),
(46966, 'https://ror.org/02af7na82', 'no_lang_code', 1, 'https://ror.org/02af7na82 Durango Multimedia (United States)'),
(46967, 'https://ror.org/02afhmq71', 'no_lang_code', 1, 'https://ror.org/02afhmq71 Nova Measuring Instruments (Israel)'),
(46968, 'https://ror.org/02ag25v06', 'en', 1, 'https://ror.org/02ag25v06 Chinese Academy of Agricultural Engineering äø­å›½å†œäøšē§‘å­¦é™¢å†œäøšå·„ēØ‹'),
(46969, 'https://ror.org/02age0r06', 'no_lang_code', 1, 'https://ror.org/02age0r06 Sheeta (United states)'),
(46970, 'https://ror.org/02akbc835', 'en', 1, 'https://ror.org/02akbc835 Chiba Prefectural Sawara High School åƒč‘‰ēœŒē«‹ä½åŽŸé«˜ē­‰å­¦ę ”'),
(46971, 'https://ror.org/02aneag19', 'no_lang_code', 1, 'https://ror.org/02aneag19 Alu Group (Spain)'),
(46972, 'https://ror.org/02anmpm17', 'no_lang_code', 1, 'https://ror.org/02anmpm17 Varian Medical Systems (Germany)'),
(46973, 'https://ror.org/02ar00159', 'no_lang_code', 1, 'https://ror.org/02ar00159 Myocardial Solutions (United States)'),
(46974, 'https://ror.org/02asepr29', 'en', 1, 'https://ror.org/02asepr29 Priory Hospital Chelmsford'),
(46975, 'https://ror.org/02av1as94', 'no_lang_code', 1, 'https://ror.org/02av1as94 Phoenix Contact (United States)'),
(46976, 'https://ror.org/02avm0p22', 'en', 1, 'https://ror.org/02avm0p22 Aichi Prefectural Narumi High School ę„›ēŸ„ēœŒē«‹é³“ęµ·é«˜ē­‰å­¦ę ”'),
(46977, 'https://ror.org/02avpen06', 'de', 1, 'https://ror.org/02avpen06 Deutsche AIDS-Stiftung'),
(46978, 'https://ror.org/02ax1e863', 'no_lang_code', 1, 'https://ror.org/02ax1e863 525 Solutions (United States)'),
(46979, 'https://ror.org/02axkyn34', 'no_lang_code', 1, 'https://ror.org/02axkyn34 SK Group (Japan)'),
(46980, 'https://ror.org/02ay7p923', 'en', 1, 'https://ror.org/02ay7p923 Kyoto Municipal Fushimi Technical High School äŗ¬éƒ½åø‚ē«‹ä¼č¦‹å·„ę„­é«˜ē­‰å­¦ę ”'),
(46981, 'https://ror.org/02aybg366', 'en', 1, 'https://ror.org/02aybg366 Qingdao Institute of Marine Geology äø­å›½åœ°č“Øč°ƒęŸ„å±€ é’å²›ęµ·ę“‹åœ°č“Øē ”ē©¶ę‰€'),
(46982, 'https://ror.org/02aywzc16', 'en', 1, 'https://ror.org/02aywzc16 State Treasurer of South Carolina'),
(46983, 'https://ror.org/02azaez02', 'en', 1, 'https://ror.org/02azaez02 American Society for Surgery of the Hand'),
(46984, 'https://ror.org/02b005b78', 'en', 1, 'https://ror.org/02b005b78 Niigata Prefectural Kamo Agriculture and Forestry High School ę–°ę½ŸēœŒē«‹åŠ čŒ‚č¾²ęž—é«˜ē­‰å­¦ę ”'),
(46985, 'https://ror.org/02b00s810', 'no_lang_code', 1, 'https://ror.org/02b00s810 eBay (Ireland)'),
(46986, 'https://ror.org/02b0cb113', 'no_lang_code', 1, 'https://ror.org/02b0cb113 Johnson Controls (Australia)'),
(46987, 'https://ror.org/02b1n2z62', 'en', 1, 'https://ror.org/02b1n2z62 Australia Zoo'),
(46988, 'https://ror.org/02b2fc027', 'en', 1, 'https://ror.org/02b2fc027 World Veterinary Poultry Association'),
(46989, 'https://ror.org/02b40ew58', 'en', 1, 'https://ror.org/02b40ew58 League of United Latin American Citizens'),
(46990, 'https://ror.org/02b5r6277', 'no_lang_code', 1, 'https://ror.org/02b5r6277 Manta Biofuel (United States)'),
(46991, 'https://ror.org/02b8xb410', 'en', 1, 'https://ror.org/02b8xb410 National Food Technology Research Centre'),
(46992, 'https://ror.org/02b9zqw68', 'en', 1, 'https://ror.org/02b9zqw68 BƬnh Dʰʔng University ĐẔi hį»c BƬnh Dʰʔng'),
(46993, 'https://ror.org/02bcmhv69', 'no_lang_code', 1, 'https://ror.org/02bcmhv69 Electrovaya (Germany)'),
(46994, 'https://ror.org/02bcp9s34', 'no_lang_code', 1, 'https://ror.org/02bcp9s34 Unilever (Germany)'),
(46995, 'https://ror.org/02bcq9e02', 'en', 1, 'https://ror.org/02bcq9e02 Ehime Prefectural Matsuyama Technical High School ę„›åŖ›ēœŒē«‹ę¾å±±å·„ę„­é«˜ē­‰å­¦ę ”'),
(46996, 'https://ror.org/02bdqac63', 'no_lang_code', 1, 'https://ror.org/02bdqac63 Princeton Power Systems (United states)'),
(46997, 'https://ror.org/02bdqpa81', 'en', 1, 'https://ror.org/02bdqpa81 Hokkaido Orthopedic Surgery Memorial Hospital'),
(46998, 'https://ror.org/02bep9h69', 'en', 1, 'https://ror.org/02bep9h69 eHealth Africa'),
(46999, 'https://ror.org/02bf51786', 'no_lang_code', 1, 'https://ror.org/02bf51786 OncoTab (United States)'),
(47000, 'https://ror.org/02bf6bf07', 'en', 1, 'https://ror.org/02bf6bf07 Nippon Dental University Hospital ę—„ęœ¬ę­Æē§‘å¤§å­¦é™„å±žē—…é™¢'),
(47001, 'https://ror.org/02bgfav21', 'de', 1, 'https://ror.org/02bgfav21 Institut für angewandte Arbeitswissenschaft'),
(47002, 'https://ror.org/02bgk4s52', 'en', 1, 'https://ror.org/02bgk4s52 Flower And Green Bank čŠ±ćØē·‘ć®éŠ€č”Œ'),
(47003, 'https://ror.org/02bh88b91', 'en', 1, 'https://ror.org/02bh88b91 Concept Foundation'),
(47004, 'https://ror.org/02bhxay29', 'no_lang_code', 1, 'https://ror.org/02bhxay29 Opti O2 (United States)'),
(47005, 'https://ror.org/02bj0an55', 'en', 1, 'https://ror.org/02bj0an55 Fairbanks North Star Borough School District'),
(47006, 'https://ror.org/02bjgf441', 'no_lang_code', 1, 'https://ror.org/02bjgf441 Aratana Therapeutics (United States)'),
(47007, 'https://ror.org/02bknwg38', 'en', 1, 'https://ror.org/02bknwg38 Nagano Prefecture Forestry Research Center é•·é‡ŽēœŒęž—ę„­ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(47008, 'https://ror.org/02bm6mv56', 'no_lang_code', 1, 'https://ror.org/02bm6mv56 Woodruff Scientific (United States)'),
(47009, 'https://ror.org/02bn2qg18', 'sv', 1, 'https://ror.org/02bn2qg18 Svensk Fƶrening fƶr Sƶmnforskning och Sƶmnmedicin'),
(47010, 'https://ror.org/02brczk14', 'en', 1, 'https://ror.org/02brczk14 Orkhon University'),
(47011, 'https://ror.org/02brzrx03', 'en', 1, 'https://ror.org/02brzrx03 Nagano Technical High School é•·é‡Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(47012, 'https://ror.org/02bt6bb31', 'en', 1, 'https://ror.org/02bt6bb31 Zhejiang Institute of Metrology č®”é‡ęµ™ę±Ÿē†å·„å¤§å­¦'),
(47013, 'https://ror.org/02bwhc913', 'no_lang_code', 1, 'https://ror.org/02bwhc913 Carl Zeiss (Israel)'),
(47014, 'https://ror.org/02bwx5h75', 'no_lang_code', 1, 'https://ror.org/02bwx5h75 Tau Science (United States)'),
(47015, 'https://ror.org/02bz9f046', 'en', 1, 'https://ror.org/02bz9f046 Zaman University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ įž įŸ’įžŸįž¶įž˜įŸ‰įž¶įž“įŸ‹'),
(47016, 'https://ror.org/02bzdv186', 'en', 1, 'https://ror.org/02bzdv186 Children''s Trust Foundation'),
(47017, 'https://ror.org/02c13hn95', 'no_lang_code', 1, 'https://ror.org/02c13hn95 Quanterix (United States)'),
(47018, 'https://ror.org/02c13m258', 'en', 1, 'https://ror.org/02c13m258 Institute of Animal Science and Pastures Instituto de Zootecnia'),
(47019, 'https://ror.org/02c176857', 'en', 1, 'https://ror.org/02c176857 North Carolina Association of Community College Trustees'),
(47020, 'https://ror.org/02c37sg63', 'no_lang_code', 1, 'https://ror.org/02c37sg63 Flexsurface (United States)'),
(47021, 'https://ror.org/02c3f7x68', 'no_lang_code', 1, 'https://ror.org/02c3f7x68 Hoerbiger (Germany)'),
(47022, 'https://ror.org/02c3wh872', 'en', 1, 'https://ror.org/02c3wh872 Ōita Prefectural Museum of History å¤§åˆ†ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(47023, 'https://ror.org/02c6c1603', 'no_lang_code', 1, 'https://ror.org/02c6c1603 Intellectual Ventures (Singapore)'),
(47024, 'https://ror.org/02c6kb837', 'no_lang_code', 1, 'https://ror.org/02c6kb837 BorgWarner (United States)'),
(47025, 'https://ror.org/02c7s7e67', 'en', 1, 'https://ror.org/02c7s7e67 Science Teachers Association of Nigeria'),
(47026, 'https://ror.org/02c7s8b77', 'en', 1, 'https://ror.org/02c7s8b77 National Archives and Library of Ethiopia'),
(47027, 'https://ror.org/02ca33r73', 'en', 1, 'https://ror.org/02ca33r73 International Institute for Advanced Studies é«˜ē­‰ē ”ē©¶č²”å›£ć®å›½éš›ē ”ē©¶ę‰€'),
(47028, 'https://ror.org/02cac9f06', 'en', 1, 'https://ror.org/02cac9f06 Tokyo Metropolitan Musashi High School ę±äŗ¬éƒ½ē«‹ę­¦č”µé«˜ē­‰å­¦ę ”'),
(47029, 'https://ror.org/02cavkh05', 'en', 1, 'https://ror.org/02cavkh05 Live & Learn Environmental Education'),
(47030, 'https://ror.org/02cbhvc53', 'no_lang_code', 1, 'https://ror.org/02cbhvc53 China National Chemical Corporation (China) äø­å›½åŒ–å·„é›†å›¢å…¬åø'),
(47031, 'https://ror.org/02cbrh206', 'en', 1, 'https://ror.org/02cbrh206 American Pharmacists Association'),
(47032, 'https://ror.org/02cc83x35', 'en', 1, 'https://ror.org/02cc83x35 Nimbkar Agricultural Research Institute'),
(47033, 'https://ror.org/02cd6ga95', 'en', 1, 'https://ror.org/02cd6ga95 Nagano Prefecture Inariyama Nursing School ēØ²č·å±±é¤Šč­·å­¦ę ”'),
(47034, 'https://ror.org/02cfy3z22', 'de', 1, 'https://ror.org/02cfy3z22 Open Knowledge Foundation Deutschland'),
(47035, 'https://ror.org/02chfyt80', 'en', 1, 'https://ror.org/02chfyt80 Canadian Society for Vascular Surgery'),
(47036, 'https://ror.org/02ckq3786', 'en', 1, 'https://ror.org/02ckq3786 New York Child Learning Institute'),
(47037, 'https://ror.org/02cm5rg43', 'no_lang_code', 1, 'https://ror.org/02cm5rg43 Wikimedia Armenia ÕŽÕ«Ö„Õ«Õ“Õ„Õ¤Õ«Õ” Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶'),
(47038, 'https://ror.org/02cn5m820', 'en', 1, 'https://ror.org/02cn5m820 Madison City Schools'),
(47039, 'https://ror.org/02cq3zx12', 'en', 1, 'https://ror.org/02cq3zx12 ViŔja prometna Ŕola Maribor Vocational College of Traffic and Transport'),
(47040, 'https://ror.org/02csfbx96', 'en', 1, 'https://ror.org/02csfbx96 Richland School District Two'),
(47041, 'https://ror.org/02ctpf853', 'en', 1, 'https://ror.org/02ctpf853 Children''s Hospital of Oklahoma'),
(47042, 'https://ror.org/02cwjwn07', 'no_lang_code', 1, 'https://ror.org/02cwjwn07 Emerson (China)'),
(47043, 'https://ror.org/02cydx698', 'en', 1, 'https://ror.org/02cydx698 Jiaxing Vocational Technical College å˜‰å…“čŒäøšęŠ€ęœÆå­¦é™¢'),
(47044, 'https://ror.org/02czd3h93', 'en', 1, 'https://ror.org/02czd3h93 The Jikei University Hospital ę±äŗ¬ę…ˆęµä¼šåŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(47045, 'https://ror.org/02d0esb25', 'no_lang_code', 1, 'https://ror.org/02d0esb25 Volvo (Canada)'),
(47046, 'https://ror.org/02d2pe314', 'en', 1, 'https://ror.org/02d2pe314 Carolus Magnus University'),
(47047, 'https://ror.org/02d3zqf38', 'en', 1, 'https://ror.org/02d3zqf38 Montana Cancer Consortium'),
(47048, 'https://ror.org/02d6mdg29', 'en', 1, 'https://ror.org/02d6mdg29 Environment and Population Research Centre'),
(47049, 'https://ror.org/02d868s45', 'en', 1, 'https://ror.org/02d868s45 Discovery Behavioral Healthcare'),
(47050, 'https://ror.org/02d8geg10', 'no_lang_code', 1, 'https://ror.org/02d8geg10 Power Info (United States)'),
(47051, 'https://ror.org/02d90d472', 'en', 1, 'https://ror.org/02d90d472 Osaka Municipal Nishi High School å¤§é˜Ŗåø‚ē«‹č„æé«˜ē­‰å­¦ę ”'),
(47052, 'https://ror.org/02d93xc63', 'en', 1, 'https://ror.org/02d93xc63 Keio Shiki Senior High School ę…¶ę‡‰ē¾©å”¾åæ—ęœØé«˜ē­‰å­¦ę ”'),
(47053, 'https://ror.org/02d9c9c40', 'es', 1, 'https://ror.org/02d9c9c40 Instituto Universitario BIOS'),
(47054, 'https://ror.org/02db4dt48', 'en', 1, 'https://ror.org/02db4dt48 Yuki Animal Hospital'),
(47055, 'https://ror.org/02dc9q641', 'en', 1, 'https://ror.org/02dc9q641 DMC University Laboratories'),
(47056, 'https://ror.org/02ddxrd36', 'no_lang_code', 1, 'https://ror.org/02ddxrd36 e-Therapeutics (United Kingdom)'),
(47057, 'https://ror.org/02dezs485', 'en', 1, 'https://ror.org/02dezs485 TrĘ°į»ng ĐẔi hį»c Hįŗ£i Dʰʔng University of Hai Duong'),
(47058, 'https://ror.org/02dfg5n73', 'en', 1, 'https://ror.org/02dfg5n73 Fraunhofer UK Research'),
(47059, 'https://ror.org/02dhrxt58', 'no_lang_code', 1, 'https://ror.org/02dhrxt58 Teccampos (Brazil)'),
(47060, 'https://ror.org/02djjwk37', 'en', 1, 'https://ror.org/02djjwk37 Inagakuen Public High School åŸ¼ēŽ‰ēœŒä¼Šå„ˆå­¦åœ’ē·åˆé«˜ę ”'),
(47061, 'https://ror.org/02djvk664', 'en', 1, 'https://ror.org/02djvk664 Shaoxing No.6 People''s Hospital ē»å…“åø‚ē«‹åŒ»é™¢'),
(47062, 'https://ror.org/02dkdym27', 'en', 1, 'https://ror.org/02dkdym27 Kagoshima University Hospital 鹿児島大学病院'),
(47063, 'https://ror.org/02dm76w35', 'en', 1, 'https://ror.org/02dm76w35 Minnesota Institute of Public Health'),
(47064, 'https://ror.org/02dmkmd90', 'no_lang_code', 1, 'https://ror.org/02dmkmd90 LuK (United Kingdom)'),
(47065, 'https://ror.org/02dmnrr28', 'en', 1, 'https://ror.org/02dmnrr28 Fachgruppe für Untertagbau Swiss Tunnelling Society'),
(47066, 'https://ror.org/02dn7km29', 'no_lang_code', 1, 'https://ror.org/02dn7km29 Kashihara Insectarium ę©æåŽŸåø‚ę˜†č™«é¤Ø'),
(47067, 'https://ror.org/02dnedb80', 'en', 1, 'https://ror.org/02dnedb80 Kansai High School é–¢č„æé«˜ē­‰å­¦ę ”'),
(47068, 'https://ror.org/02dnvjf04', 'en', 1, 'https://ror.org/02dnvjf04 Netherlands Defence Academy'),
(47069, 'https://ror.org/02dprvv32', 'en', 1, 'https://ror.org/02dprvv32 Association for Canadian Studies in Australia and New Zealand'),
(47070, 'https://ror.org/02drbqt14', 'no_lang_code', 1, 'https://ror.org/02drbqt14 TE Connectivity (China)'),
(47071, 'https://ror.org/02drfng73', 'en', 1, 'https://ror.org/02drfng73 Middle Tennessee Research Institute'),
(47072, 'https://ror.org/02dry1b63', 'no_lang_code', 1, 'https://ror.org/02dry1b63 Trimeric (United States)'),
(47073, 'https://ror.org/02dshg816', 'en', 1, 'https://ror.org/02dshg816 Nature Foundation SA'),
(47074, 'https://ror.org/02dsnxe42', 'en', 1, 'https://ror.org/02dsnxe42 Farm Foundation'),
(47075, 'https://ror.org/02dsr2x66', 'pt', 1, 'https://ror.org/02dsr2x66 Fundação Liberato'),
(47076, 'https://ror.org/02dy2h219', 'en', 1, 'https://ror.org/02dy2h219 State Office for Nuclear Safety StĆ”tnĆ­ Uřad pro Jadernou Bezpečnost'),
(47077, 'https://ror.org/02dyqfb80', 'no_lang_code', 1, 'https://ror.org/02dyqfb80 Silicon Labs (United States)'),
(47078, 'https://ror.org/02dzrb971', 'no_lang_code', 1, 'https://ror.org/02dzrb971 MSP Analytics (United States)'),
(47079, 'https://ror.org/02e1g6m79', 'id', 1, 'https://ror.org/02e1g6m79 Universitas Panca Marga'),
(47080, 'https://ror.org/02e2tgs60', 'en', 1, 'https://ror.org/02e2tgs60 Lamont-Doherty Earth Observatory'),
(47081, 'https://ror.org/02e4cg183', 'en', 1, 'https://ror.org/02e4cg183 Chest Heart and Stroke Scotland'),
(47082, 'https://ror.org/02e918x06', 'no_lang_code', 1, 'https://ror.org/02e918x06 Energy Driven Technologies (United States)'),
(47083, 'https://ror.org/02ea4kj06', 'en', 1, 'https://ror.org/02ea4kj06 De Borda Institute'),
(47084, 'https://ror.org/02ean8c72', 'it', 1, 'https://ror.org/02ean8c72 Associazione Italiana Di Oncologia Medica'),
(47085, 'https://ror.org/02ec9na09', 'en', 1, 'https://ror.org/02ec9na09 Guang Fu Hospital ęµ™ę±Ÿé‡‘åŽå¹æē¦åŒ»é™¢'),
(47086, 'https://ror.org/02edrwa65', 'en', 1, 'https://ror.org/02edrwa65 Shuko Junior College äæ®ē“…ēŸ­ęœŸå¤§å­¦'),
(47087, 'https://ror.org/02egn3136', 'en', 1, 'https://ror.org/02egn3136 NARI Group (China) å—äŗ¬č‡ŖåŠØåŒ–ē ”ē©¶ę‰€'),
(47088, 'https://ror.org/02ejcvx87', 'en', 1, 'https://ror.org/02ejcvx87 Ipswich City Council'),
(47089, 'https://ror.org/02ejpdc56', 'en', 1, 'https://ror.org/02ejpdc56 Agri-Futures Nova Scotia Association'),
(47090, 'https://ror.org/02em2aa12', 'no_lang_code', 1, 'https://ror.org/02em2aa12 Frontier Agriculture (United Kingdom)'),
(47091, 'https://ror.org/02emtct55', 'en', 1, 'https://ror.org/02emtct55 Takaishi High School å¤§é˜Ŗåŗœē«‹é«˜ēŸ³é«˜ē­‰å­¦ę ”'),
(47092, 'https://ror.org/02eps3588', 'no_lang_code', 1, 'https://ror.org/02eps3588 Precision for Medicine (United States)'),
(47093, 'https://ror.org/02eq7mb50', 'en', 1, 'https://ror.org/02eq7mb50 Sakai Women''s Junior College 堺儳子短期大学'),
(47094, 'https://ror.org/02eqd9a40', 'no_lang_code', 1, 'https://ror.org/02eqd9a40 Lite-On Technology Corporation (Taiwan) å»ŗå…“ē§‘ęŠ€å…¬åø'),
(47095, 'https://ror.org/02errs104', 'en', 1, 'https://ror.org/02errs104 Kyoto Municipal Junior College of Nursing äŗ¬éƒ½åø‚ē«‹ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(47096, 'https://ror.org/02et0jb83', 'en', 1, 'https://ror.org/02et0jb83 Yamanashi Prefectural Museum å±±ę¢ØēœŒē«‹åšē‰©é¤Ø'),
(47097, 'https://ror.org/02et85x78', 'sr', 1, 'https://ror.org/02et85x78 Sportska Akademija Beograd'),
(47098, 'https://ror.org/02evdsh57', 'en', 1, 'https://ror.org/02evdsh57 Flint Hills Regional Council'),
(47099, 'https://ror.org/02evj4e11', 'en', 1, 'https://ror.org/02evj4e11 Universal Technical Institute of Illinois'),
(47100, 'https://ror.org/02evvbm94', 'en', 1, 'https://ror.org/02evvbm94 Emerge'),
(47101, 'https://ror.org/02ew7cc18', 'en', 1, 'https://ror.org/02ew7cc18 Miyakoda Elementary School éƒ½ē”°å°å­¦ę ”'),
(47102, 'https://ror.org/02exbb429', 'en', 1, 'https://ror.org/02exbb429 Ministry of Agro Industry and Food Security'),
(47103, 'https://ror.org/02exzyx31', 'en', 1, 'https://ror.org/02exzyx31 International Union of Immunological Societies'),
(47104, 'https://ror.org/02ez6m968', 'es', 1, 'https://ror.org/02ez6m968 Instituto Nacional de Ciencias AgrĆ­colas'),
(47105, 'https://ror.org/02f053x13', 'en', 1, 'https://ror.org/02f053x13 Kagawa Prefectural Board of Education é¦™å·ēœŒę•™č‚²å§”å“”ä¼š'),
(47106, 'https://ror.org/02f0r3n63', 'de', 1, 'https://ror.org/02f0r3n63 BUND Naturschutz'),
(47107, 'https://ror.org/02f3pgg92', 'no_lang_code', 1, 'https://ror.org/02f3pgg92 Brooks Automation (Germany)'),
(47108, 'https://ror.org/02f4p4v04', 'no_lang_code', 1, 'https://ror.org/02f4p4v04 Convergent Science (United States)'),
(47109, 'https://ror.org/02f6v4t81', 'en', 1, 'https://ror.org/02f6v4t81 Xinjiang Institute of Water Resources and Hydropower Research ę–°ē–†ę°“åˆ©ę°“ē”µē§‘å­¦ē ”ē©¶é™¢'),
(47110, 'https://ror.org/02f7yzh91', 'no_lang_code', 1, 'https://ror.org/02f7yzh91 GlobalFoundries (Cayman Islands)'),
(47111, 'https://ror.org/02f8xge10', 'en', 1, 'https://ror.org/02f8xge10 Global Alliance for Livestock Veterinary Medicines'),
(47112, 'https://ror.org/02faq1w63', 'en', 1, 'https://ror.org/02faq1w63 Tokyo Metropolitan Nogyo High School'),
(47113, 'https://ror.org/02fe5bq19', 'en', 1, 'https://ror.org/02fe5bq19 Japan Private School Education Research Institute ę—„ęœ¬ē§å­¦ę•™č‚²ē ”ē©¶ę‰€'),
(47114, 'https://ror.org/02ffb7k79', 'no_lang_code', 1, 'https://ror.org/02ffb7k79 Imabari Meitoku Junior College ä»Šę²»ę˜Žå¾³ēŸ­ęœŸå¤§å­¦'),
(47115, 'https://ror.org/02fkr9p25', 'no_lang_code', 1, 'https://ror.org/02fkr9p25 WFS Technologies (United Kingdom)'),
(47116, 'https://ror.org/02fkw1114', 'en', 1, 'https://ror.org/02fkw1114 Consiglio Nazionale delle Ricerche - Istituto di Chimica dei Composti OrganoMetallici Institute for the Chemistry of OrganoMetallic Compounds'),
(47117, 'https://ror.org/02fn9c498', 'de', 1, 'https://ror.org/02fn9c498 Deutsches Beratungszentrum für Hygiene'),
(47118, 'https://ror.org/02fnvw217', 'en', 1, 'https://ror.org/02fnvw217 Kyoto Prefectural Sagano High School åµÆå³Øé‡Žé«˜ē­‰å­¦ę ”'),
(47119, 'https://ror.org/02fqdw168', 'en', 1, 'https://ror.org/02fqdw168 WaterNSW'),
(47120, 'https://ror.org/02frad208', 'en', 1, 'https://ror.org/02frad208 International Initiative for Impact Evaluation'),
(47121, 'https://ror.org/02frcze54', 'no_lang_code', 1, 'https://ror.org/02frcze54 Software Research Associates (Japan) ćˆć™ć‚ćƒ¼ć‚‹ćˆćƒ¼'),
(47122, 'https://ror.org/02fs1zk32', 'no_lang_code', 1, 'https://ror.org/02fs1zk32 Farus (United States)'),
(47123, 'https://ror.org/02ft82f02', 'tr', 1, 'https://ror.org/02ft82f02 Korgan Devlet Hastanesi'),
(47124, 'https://ror.org/02fwcwt37', 'no_lang_code', 1, 'https://ror.org/02fwcwt37 Ametek (Germany)'),
(47125, 'https://ror.org/02fxdpa68', 'no_lang_code', 1, 'https://ror.org/02fxdpa68 Afingen (United States)'),
(47126, 'https://ror.org/02g1g7v23', 'no_lang_code', 1, 'https://ror.org/02g1g7v23 IDEX Corporation (Germany)'),
(47127, 'https://ror.org/02g4qga81', 'en', 1, 'https://ror.org/02g4qga81 Western History Association'),
(47128, 'https://ror.org/02g6as782', 'en', 1, 'https://ror.org/02g6as782 National Museum of Modern Art Tokyo ę±äŗ¬å›½ē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(47129, 'https://ror.org/02g79nm61', 'no_lang_code', 1, 'https://ror.org/02g79nm61 Akonia Holographics (United States)'),
(47130, 'https://ror.org/02g7va395', 'en', 1, 'https://ror.org/02g7va395 European Space Policy Institute Europäisches Institut für Weltraumpolitik'),
(47131, 'https://ror.org/02gb9y346', 'fr', 1, 'https://ror.org/02gb9y346 Ɖcole Nationale SupĆ©rieure d''Agriculture'),
(47132, 'https://ror.org/02gbdr274', 'en', 1, 'https://ror.org/02gbdr274 Tateyama Elementary School ē«‹å±±å°å­¦ę ”'),
(47133, 'https://ror.org/02gcdp811', 'pt', 1, 'https://ror.org/02gcdp811 Instituto de Pesca'),
(47134, 'https://ror.org/02gcjrk43', 'en', 1, 'https://ror.org/02gcjrk43 Institute of Clinical Research'),
(47135, 'https://ror.org/02gdcn153', 'en', 1, 'https://ror.org/02gdcn153 Institute of Informatics and Telematics Istituto di Informatica e Telematica'),
(47136, 'https://ror.org/02gfzp482', 'en', 1, 'https://ror.org/02gfzp482 Federal Institute for Education Development Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ автономное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(47137, 'https://ror.org/02gjwq161', 'no_lang_code', 1, 'https://ror.org/02gjwq161 Answare (Spain)'),
(47138, 'https://ror.org/02gk9bd41', 'en', 1, 'https://ror.org/02gk9bd41 Nueta Hidatsa Sahnish College'),
(47139, 'https://ror.org/02gn7j616', 'en', 1, 'https://ror.org/02gn7j616 African Virtual University'),
(47140, 'https://ror.org/02gp35626', 'no_lang_code', 1, 'https://ror.org/02gp35626 Doka-Gene (Russia)'),
(47141, 'https://ror.org/02gsh9561', 'es', 1, 'https://ror.org/02gsh9561 Universidad Metropolitana de Honduras'),
(47142, 'https://ror.org/02gtar309', 'en', 1, 'https://ror.org/02gtar309 Association for the Advancement of Baltic Studies'),
(47143, 'https://ror.org/02gvfm422', 'no_lang_code', 1, 'https://ror.org/02gvfm422 Ubiwhere (Portugal)'),
(47144, 'https://ror.org/02gyh4f05', 'no_lang_code', 1, 'https://ror.org/02gyh4f05 FTL Labs (United States)'),
(47145, 'https://ror.org/02gzgaq09', 'no_lang_code', 1, 'https://ror.org/02gzgaq09 Extend Biosciences (United States)'),
(47146, 'https://ror.org/02gzmhs41', 'en', 1, 'https://ror.org/02gzmhs41 Russian Scientific Research Institute Microbe'),
(47147, 'https://ror.org/02h2pj634', 'no_lang_code', 1, 'https://ror.org/02h2pj634 Seascape Consultants (United Kingdom)'),
(47148, 'https://ror.org/02h376w15', 'no_lang_code', 1, 'https://ror.org/02h376w15 Lite-On Technology Corporation (China) å»ŗå…“ē§‘ęŠ€å…¬åø'),
(47149, 'https://ror.org/02h443151', 'en', 1, 'https://ror.org/02h443151 National Akagi of Youth Exchange House å›½ē«‹čµ¤åŸŽé’å°‘å¹“äŗ¤ęµć®å®¶'),
(47150, 'https://ror.org/02h4myp42', 'no_lang_code', 1, 'https://ror.org/02h4myp42 Ricoh (Japan) ę Ŗå¼ä¼šē¤¾ćƒŖć‚³ćƒ¼'),
(47151, 'https://ror.org/02h5eqb27', 'no_lang_code', 1, 'https://ror.org/02h5eqb27 Exciton Technologies (Canada)'),
(47152, 'https://ror.org/02h5vx773', 'en', 1, 'https://ror.org/02h5vx773 Marine Advanced Technology Education'),
(47153, 'https://ror.org/02h5yd368', 'en', 1, 'https://ror.org/02h5yd368 Sexual Medicine Society of North America'),
(47154, 'https://ror.org/02h62y319', 'no_lang_code', 1, 'https://ror.org/02h62y319 Icy Waters (Canada)'),
(47155, 'https://ror.org/02h6wcs88', 'en', 1, 'https://ror.org/02h6wcs88 Nara Prefectural Board of Education å„ˆč‰ÆēœŒę•™č‚²å§”å“”ä¼š'),
(47156, 'https://ror.org/02h7nc187', 'en', 1, 'https://ror.org/02h7nc187 Aichi Prefectural Tsurugi hill high school ę„›ēŸ„ēœŒē«‹é¶“åŸŽäø˜é«˜ē­‰å­¦ę ”'),
(47157, 'https://ror.org/02hcnd264', 'no_lang_code', 1, 'https://ror.org/02hcnd264 Irida Labs (Greece)'),
(47158, 'https://ror.org/02hdqvp39', 'en', 1, 'https://ror.org/02hdqvp39 Institute for Systems and Technologies of Information, Control and Communication'),
(47159, 'https://ror.org/02hdsjf18', 'en', 1, 'https://ror.org/02hdsjf18 Iwakuni Junior College å²©å›½ēŸ­ęœŸå¤§å­¦'),
(47160, 'https://ror.org/02hdxnq28', 'de', 1, 'https://ror.org/02hdxnq28 Deutsches Schiffahrtsmuseum German Maritime Museum'),
(47161, 'https://ror.org/02he16z20', 'no_lang_code', 1, 'https://ror.org/02he16z20 NGK Insulators (Japan) ę—„ęœ¬ē¢å­ę Ŗå¼ä¼šē¤¾'),
(47162, 'https://ror.org/02hf7bd34', 'en', 1, 'https://ror.org/02hf7bd34 American Evaluation Association'),
(47163, 'https://ror.org/02hfh3870', 'en', 1, 'https://ror.org/02hfh3870 Farm Journal Foundation'),
(47164, 'https://ror.org/02hgkrr64', 'en', 1, 'https://ror.org/02hgkrr64 Japan Patent Office 特許庁'),
(47165, 'https://ror.org/02hjcc687', 'no_lang_code', 1, 'https://ror.org/02hjcc687 Intelligent Fusion Technology (United States)'),
(47166, 'https://ror.org/02hjgfh88', 'en', 1, 'https://ror.org/02hjgfh88 Niigata Prefectural Kashiwazaki Technical High School ę–°ę½ŸēœŒē«‹ęŸå“Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(47167, 'https://ror.org/02hm5m482', 'en', 1, 'https://ror.org/02hm5m482 Fraunhofer Research Institution for Microsystems and Solid State Technologies Fraunhofer-Einrichtung für Mikrosysteme und Festkörper-Technologien'),
(47168, 'https://ror.org/02hp8vh60', 'en', 1, 'https://ror.org/02hp8vh60 Institute of Applied Physiology & Medicine'),
(47169, 'https://ror.org/02hpe9z95', 'de', 1, 'https://ror.org/02hpe9z95 M.A.S - Alzheimerhilfe - Demenzservicestelle Bad Ischl, MAS Alzheimerhilfe'),
(47170, 'https://ror.org/02hsmgc28', 'pt', 1, 'https://ror.org/02hsmgc28 Agende Guarulhos'),
(47171, 'https://ror.org/02hsnr298', 'no_lang_code', 1, 'https://ror.org/02hsnr298 Feiro Marine Life Center'),
(47172, 'https://ror.org/02ht8gz29', 'en', 1, 'https://ror.org/02ht8gz29 American College of Veterinary Internal Medicine'),
(47173, 'https://ror.org/02hwbev49', 'en', 1, 'https://ror.org/02hwbev49 Erich Schmid Institut für Materialwissenschaft Erich Schmid Institute of Materials Science'),
(47174, 'https://ror.org/02hwyte29', 'no_lang_code', 1, 'https://ror.org/02hwyte29 Albemarle (United States)'),
(47175, 'https://ror.org/02hz8mm45', 'fr', 1, 'https://ror.org/02hz8mm45 Institut de Recherches Géologiques et Minières Institute of Geological and Mining Research'),
(47176, 'https://ror.org/02hzfe323', 'no_lang_code', 1, 'https://ror.org/02hzfe323 Skyworks Solutions (Japan)'),
(47177, 'https://ror.org/02hzmab58', 'en', 1, 'https://ror.org/02hzmab58 St. Mary''s University į‰…į‹µįˆµį‰µ įˆ›įˆ­į‹«įˆ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(47178, 'https://ror.org/02j18km55', 'en', 1, 'https://ror.org/02j18km55 Independent Administrative Institution National Research Institute for Cultural Properties ę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(47179, 'https://ror.org/02j1xaz06', 'en', 1, 'https://ror.org/02j1xaz06 Hospital Agioi Anargyroi'),
(47180, 'https://ror.org/02j2fpc69', 'en', 1, 'https://ror.org/02j2fpc69 Yamanashi Prefectural School for the Visually Impaired å±±ę¢ØēœŒē«‹ē›²å­¦ę ”'),
(47181, 'https://ror.org/02j2kkr61', 'en', 1, 'https://ror.org/02j2kkr61 Fukushima Prefectural Culture Center ē¦å³¶ēœŒę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(47182, 'https://ror.org/02j2s7216', 'en', 1, 'https://ror.org/02j2s7216 American Association for Geriatric Psychiatry'),
(47183, 'https://ror.org/02j4ss342', 'pt', 1, 'https://ror.org/02j4ss342 Secretaria de Estado de Educação do Distrito Federal'),
(47184, 'https://ror.org/02j701e26', 'no_lang_code', 1, 'https://ror.org/02j701e26 RPX (United States)'),
(47185, 'https://ror.org/02jcrd051', 'en', 1, 'https://ror.org/02jcrd051 Blue Cross Blue Shield Association'),
(47186, 'https://ror.org/02jdjf497', 'en', 1, 'https://ror.org/02jdjf497 European Association of Environmental and Resource Economists'),
(47187, 'https://ror.org/02jeqzx58', 'en', 1, 'https://ror.org/02jeqzx58 District of Columbia Public Education Fund'),
(47188, 'https://ror.org/02jf0r135', 'en', 1, 'https://ror.org/02jf0r135 Miyazaki Prefectural Wood Utilization Research Center å®®å“ŽēœŒęœØęåˆ©ē”ØęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(47189, 'https://ror.org/02jg1ky29', 'no_lang_code', 1, 'https://ror.org/02jg1ky29 NanoXplore (Canada)'),
(47190, 'https://ror.org/02jht7h37', 'no_lang_code', 1, 'https://ror.org/02jht7h37 Kohler (New Zealand)'),
(47191, 'https://ror.org/02jhvve98', 'en', 1, 'https://ror.org/02jhvve98 Toorak College'),
(47192, 'https://ror.org/02jj1fb93', 'en', 1, 'https://ror.org/02jj1fb93 Berlin Graduate School for Transnational Studies'),
(47193, 'https://ror.org/02jkw2g13', 'en', 1, 'https://ror.org/02jkw2g13 Yamashina Institute for Ornithology å±±éšŽé³„é”žē ”ē©¶ę‰€'),
(47194, 'https://ror.org/02jqsa674', 'no_lang_code', 1, 'https://ror.org/02jqsa674 Eni (United Kingdom)'),
(47195, 'https://ror.org/02jr6ev43', 'en', 1, 'https://ror.org/02jr6ev43 PowerMyLearning'),
(47196, 'https://ror.org/02js38076', 'de', 1, 'https://ror.org/02js38076 Frauenklinik Heidelberg'),
(47197, 'https://ror.org/02jsn4551', 'en', 1, 'https://ror.org/02jsn4551 Foundation Learning Software Information Research Center å…¬ē›Šč²”å›£ę³•äŗŗ å­¦ēæ’ć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢ęƒ…å ±ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(47198, 'https://ror.org/02jsvfh24', 'en', 1, 'https://ror.org/02jsvfh24 Federal University Otuoke'),
(47199, 'https://ror.org/02jszzb89', 'no_lang_code', 1, 'https://ror.org/02jszzb89 TDK (China) TDKę Ŗå¼ä¼šē¤¾'),
(47200, 'https://ror.org/02jwcy839', 'no_lang_code', 1, 'https://ror.org/02jwcy839 Yazaki (United Kingdom)'),
(47201, 'https://ror.org/02jymes45', 'no_lang_code', 1, 'https://ror.org/02jymes45 Skyworks Solutions (United States)'),
(47202, 'https://ror.org/02k2mqt73', 'en', 1, 'https://ror.org/02k2mqt73 Family Court of Australia'),
(47203, 'https://ror.org/02k37gc37', 'en', 1, 'https://ror.org/02k37gc37 Gunma Archaeological Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ē¾¤é¦¬ēœŒåŸ‹č”µę–‡åŒ–č²”čŖæęŸ»äŗ‹ę„­å›£'),
(47204, 'https://ror.org/02k3f4s48', 'en', 1, 'https://ror.org/02k3f4s48 Georgia Chamber of Commerce'),
(47205, 'https://ror.org/02k3rdd90', 'no_lang_code', 1, 'https://ror.org/02k3rdd90 Osaka Minami Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹å¤§é˜Ŗå—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(47206, 'https://ror.org/02k46hk39', 'en', 1, 'https://ror.org/02k46hk39 Association of Clinical Research Professionals'),
(47207, 'https://ror.org/02k55c210', 'en', 1, 'https://ror.org/02k55c210 Gifu Prefectural Board of Education å²é˜œēœŒę•™č‚²å§”å“”ä¼š'),
(47208, 'https://ror.org/02k5q6a71', 'es', 1, 'https://ror.org/02k5q6a71 Academia PolitƩcnica AeronƔutica'),
(47209, 'https://ror.org/02k5ra816', 'en', 1, 'https://ror.org/02k5ra816 Kyoto Prefectural Rakuhoku High School äŗ¬éƒ½åŗœē«‹ę“›åŒ—é«˜ē­‰å­¦ę ”'),
(47210, 'https://ror.org/02k6gb421', 'en', 1, 'https://ror.org/02k6gb421 National Trauma Institute'),
(47211, 'https://ror.org/02k6ncv16', 'no_lang_code', 1, 'https://ror.org/02k6ncv16 Optina Diagnostics (Canada)'),
(47212, 'https://ror.org/02k8pys83', 'de', 1, 'https://ror.org/02k8pys83 Christophorus Kliniken'),
(47213, 'https://ror.org/02k91w896', 'en', 1, 'https://ror.org/02k91w896 Kentucky Commission on Military Affairs'),
(47214, 'https://ror.org/02kb97560', 'en', 1, 'https://ror.org/02kb97560 University Hospitals Seidman Cancer Center'),
(47215, 'https://ror.org/02kdt8437', 'no_lang_code', 1, 'https://ror.org/02kdt8437 Catalina Scientific (United States)'),
(47216, 'https://ror.org/02ke6ab14', 'en', 1, 'https://ror.org/02ke6ab14 Koninklijke Nederlandse Voetbalbond Royal Dutch Football Association'),
(47217, 'https://ror.org/02kedpm29', 'en', 1, 'https://ror.org/02kedpm29 Kyushu Otani Junior College ä¹å·žå¤§č°·ēŸ­ęœŸå¤§å­¦'),
(47218, 'https://ror.org/02kf1yd19', 'no_lang_code', 1, 'https://ror.org/02kf1yd19 Citrix (Switzerland)'),
(47219, 'https://ror.org/02kk7cr85', 'en', 1, 'https://ror.org/02kk7cr85 Kawasaki City College of Nursing å·å“Žåø‚ē«‹ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(47220, 'https://ror.org/02km5ae06', 'en', 1, 'https://ror.org/02km5ae06 Fort Vancouver Regional Library District'),
(47221, 'https://ror.org/02km5mw71', 'pt', 1, 'https://ror.org/02km5mw71 Associação Brasileira de Química'),
(47222, 'https://ror.org/02kmet255', 'en', 1, 'https://ror.org/02kmet255 Institute for Systems Analysis Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ФГУ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ системного анализа Š ŠŠ'),
(47223, 'https://ror.org/02knfsk89', 'no_lang_code', 1, 'https://ror.org/02knfsk89 Wistron (Taiwan) ē·Æå‰µč³‡é€šč‚”ä»½ęœ‰é™å…¬åø'),
(47224, 'https://ror.org/02kr42612', 'no_lang_code', 1, 'https://ror.org/02kr42612 Nvidia (United Kingdom)'),
(47225, 'https://ror.org/02kt78v62', 'en', 1, 'https://ror.org/02kt78v62 Yamanashi Prefectural Board of Education å±±ę¢ØēœŒę•™č‚²å§”å“”ä¼š'),
(47226, 'https://ror.org/02ktf7592', 'en', 1, 'https://ror.org/02ktf7592 City University College of Science and Technology'),
(47227, 'https://ror.org/02kv9s375', 'no_lang_code', 1, 'https://ror.org/02kv9s375 KUKA (United States)'),
(47228, 'https://ror.org/02kwn0g61', 'en', 1, 'https://ror.org/02kwn0g61 Zhoushan Institute of Calibration for Quality and Technology Supervision'),
(47229, 'https://ror.org/02kx13m48', 'en', 1, 'https://ror.org/02kx13m48 Catholic Bishops Conference of India'),
(47230, 'https://ror.org/02kx36h27', 'no_lang_code', 1, 'https://ror.org/02kx36h27 NovaRx (United States)'),
(47231, 'https://ror.org/02kzqwr97', 'no_lang_code', 1, 'https://ror.org/02kzqwr97 Becton Dickinson (Germany)'),
(47232, 'https://ror.org/02m3x8945', 'no_lang_code', 1, 'https://ror.org/02m3x8945 GlaxoSmithKline (Ireland)'),
(47233, 'https://ror.org/02m5srn05', 'en', 1, 'https://ror.org/02m5srn05 Japan Research Institute ę—„ęœ¬ē·ē ”'),
(47234, 'https://ror.org/02m5vr132', 'en', 1, 'https://ror.org/02m5vr132 Philips College'),
(47235, 'https://ror.org/02m6x3q63', 'no_lang_code', 1, 'https://ror.org/02m6x3q63 ARC Resources (Canada)'),
(47236, 'https://ror.org/02m9k9y84', 'en', 1, 'https://ror.org/02m9k9y84 TexAmericas Center'),
(47237, 'https://ror.org/02m9vgw62', 'en', 1, 'https://ror.org/02m9vgw62 National Museum of Emerging Science and Innovation ę—„ęœ¬ē§‘å­¦ęœŖę„é¤Ø'),
(47238, 'https://ror.org/02maem855', 'en', 1, 'https://ror.org/02maem855 Ocean Lakes High School'),
(47239, 'https://ror.org/02masw633', 'no_lang_code', 1, 'https://ror.org/02masw633 Hartley McMaster (United Kingdom)'),
(47240, 'https://ror.org/02mavrn48', 'no_lang_code', 1, 'https://ror.org/02mavrn48 Toshiba (South Korea) ę Ŗå¼ä¼šē¤¾ę±čŠ'),
(47241, 'https://ror.org/02maxav80', 'en', 1, 'https://ror.org/02maxav80 Open University of China 国家开放大学'),
(47242, 'https://ror.org/02mcad149', 'en', 1, 'https://ror.org/02mcad149 Florida Craniofacial Institute'),
(47243, 'https://ror.org/02mda8974', 'en', 1, 'https://ror.org/02mda8974 Kyoto Prefectural Education Center äŗ¬éƒ½åŗœē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(47244, 'https://ror.org/02mdwjj51', 'no_lang_code', 1, 'https://ror.org/02mdwjj51 Redlen Technologies (Canada)'),
(47245, 'https://ror.org/02mejn521', 'en', 1, 'https://ror.org/02mejn521 Taft University System'),
(47246, 'https://ror.org/02mfchx98', 'en', 1, 'https://ror.org/02mfchx98 Shiga Prefectural Education Center ę»‹č³€ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(47247, 'https://ror.org/02mktny84', 'en', 1, 'https://ror.org/02mktny84 Bayburt Devlet Hastanesi Bayburt State Hospital'),
(47248, 'https://ror.org/02mmcvz81', 'en', 1, 'https://ror.org/02mmcvz81 Gƶteborg Medical Society Gƶteborgs LƤkaresƤllskap'),
(47249, 'https://ror.org/02mn1ft77', 'no_lang_code', 1, 'https://ror.org/02mn1ft77 Partow Technologies (United States)'),
(47250, 'https://ror.org/02mn80m13', 'no_lang_code', 1, 'https://ror.org/02mn80m13 Universal Master Products (United Kingdom)'),
(47251, 'https://ror.org/02mqxmc61', 'en', 1, 'https://ror.org/02mqxmc61 Kyoto City Youth Science Center äŗ¬éƒ½åø‚é’å°‘å¹“ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(47252, 'https://ror.org/02mrea437', 'en', 1, 'https://ror.org/02mrea437 Institute of Linguistics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢čÆ­čØ€ē ”ē©¶ę‰€'),
(47253, 'https://ror.org/02ms1t188', 'en', 1, 'https://ror.org/02ms1t188 Hokkaido Education Research Institute åŒ—ęµ·é“ē«‹ę•™č‚²ē ”ē©¶ę‰€'),
(47254, 'https://ror.org/02mvc4m81', 'en', 1, 'https://ror.org/02mvc4m81 Aichi Prefectural Ichinomiya Nishi High School ę„›ēŸ„ēœŒē«‹äø€å®®č„æé«˜ē­‰å­¦ę ”'),
(47255, 'https://ror.org/02mx1ea71', 'en', 1, 'https://ror.org/02mx1ea71 Institute of Socio-Political Research Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-политических исслеГований'),
(47256, 'https://ror.org/02n1mtw77', 'no_lang_code', 1, 'https://ror.org/02n1mtw77 Murata Machinery (Japan) ę‘ē”°ę©Ÿę¢°ę Ŗå¼ä¼šē¤¾'),
(47257, 'https://ror.org/02n1tdp80', 'pt', 1, 'https://ror.org/02n1tdp80 Associação Brasileira do Alumínio Brazilian Aluminum Association'),
(47258, 'https://ror.org/02n219t94', 'en', 1, 'https://ror.org/02n219t94 Association for Geographic Information'),
(47259, 'https://ror.org/02n2ntt72', 'en', 1, 'https://ror.org/02n2ntt72 Zhejiang Environmental Monitoring Center ęµ™ę±ŸēœēŽÆå¢ƒē›‘ęµ‹äø­åæƒ'),
(47260, 'https://ror.org/02n2pxk31', 'no_lang_code', 1, 'https://ror.org/02n2pxk31 Aspire Solutions (United States)'),
(47261, 'https://ror.org/02n3qcb27', 'es', 1, 'https://ror.org/02n3qcb27 Instituto de CibernƩtica MatemƔtica y Fƭsica'),
(47262, 'https://ror.org/02n4n5m80', 'en', 1, 'https://ror.org/02n4n5m80 Oceanwide Science Institute'),
(47263, 'https://ror.org/02n64c681', 'pt', 1, 'https://ror.org/02n64c681 Fundação de Ciência e Tecnologia'),
(47264, 'https://ror.org/02n72nx11', 'no_lang_code', 1, 'https://ror.org/02n72nx11 Danaher (China)'),
(47265, 'https://ror.org/02nd88213', 'en', 1, 'https://ror.org/02nd88213 Raffles University Iskandar'),
(47266, 'https://ror.org/02necds34', 'no_lang_code', 1, 'https://ror.org/02necds34 Huntsworth Health (United States)'),
(47267, 'https://ror.org/02neh0644', 'en', 1, 'https://ror.org/02neh0644 Union School of Theology'),
(47268, 'https://ror.org/02nfvrd33', 'no_lang_code', 1, 'https://ror.org/02nfvrd33 HTC (Taiwan) å®é”åœ‹éš›é›»å­č‚”ä»½ęœ‰é™å…¬åø'),
(47269, 'https://ror.org/02nfvtw87', 'es', 1, 'https://ror.org/02nfvtw87 Instituto de Ecologia y SistemƔtica'),
(47270, 'https://ror.org/02njhsx22', 'no_lang_code', 1, 'https://ror.org/02njhsx22 Alps Electric (Japan) ć‚¢ćƒ«ćƒ—ć‚¹é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(47271, 'https://ror.org/02njsf937', 'en', 1, 'https://ror.org/02njsf937 New Zealand Plant Protection Society'),
(47272, 'https://ror.org/02nka6g66', 'en', 1, 'https://ror.org/02nka6g66 Stone Soup Productions'),
(47273, 'https://ror.org/02nkn4852', 'en', 1, 'https://ror.org/02nkn4852 Asossa University አሶሳ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(47274, 'https://ror.org/02nkqdh98', 'en', 1, 'https://ror.org/02nkqdh98 RP Fighting Blindness'),
(47275, 'https://ror.org/02nma1c30', 'no_lang_code', 1, 'https://ror.org/02nma1c30 International Flavors & Fragrances (United States)'),
(47276, 'https://ror.org/02nn9qb77', 'no_lang_code', 1, 'https://ror.org/02nn9qb77 Oberon (Netherlands)'),
(47277, 'https://ror.org/02np7dp24', 'fr', 1, 'https://ror.org/02np7dp24 Institute Malgache De Recherches AppliquƩes'),
(47278, 'https://ror.org/02npz4170', 'no_lang_code', 1, 'https://ror.org/02npz4170 Nikita Botanical Gardens ŠŠøŠŗŠøŃ‚ŃŠŗŠøŠ¹ ботанический саГ'),
(47279, 'https://ror.org/02nq6sy34', 'de', 1, 'https://ror.org/02nq6sy34 Akademie für Gesundheitsberufe'),
(47280, 'https://ror.org/02nqcmv36', 'no_lang_code', 1, 'https://ror.org/02nqcmv36 DuPont (Finland)'),
(47281, 'https://ror.org/02nrkxp47', 'en', 1, 'https://ror.org/02nrkxp47 Acapulco Institute of Technology Instituto Tecnológico de Acapulco'),
(47282, 'https://ror.org/02ns3pe91', 'en', 1, 'https://ror.org/02ns3pe91 Engineering Advancement Association of Japan čˆ¬č²”å›£ę³•äŗŗć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°å”ä¼š'),
(47283, 'https://ror.org/02nv4he32', 'en', 1, 'https://ror.org/02nv4he32 NIHR Academy'),
(47284, 'https://ror.org/02nx94911', 'en', 1, 'https://ror.org/02nx94911 Southwest Educational Development Center'),
(47285, 'https://ror.org/02nzhnj74', 'no_lang_code', 1, 'https://ror.org/02nzhnj74 Soleno (Canada)'),
(47286, 'https://ror.org/02p3be630', 'en', 1, 'https://ror.org/02p3be630 ACCESS Health International'),
(47287, 'https://ror.org/02p3csg43', 'it', 1, 'https://ror.org/02p3csg43 I.T.I. Lattanzio, Istituto di Istruzione Superiore I.T.C. Di Vittorio'),
(47288, 'https://ror.org/02p49vj94', 'no_lang_code', 1, 'https://ror.org/02p49vj94 Primax Electronics (Taiwan)'),
(47289, 'https://ror.org/02p4cdb03', 'no_lang_code', 1, 'https://ror.org/02p4cdb03 Arotech (Israel)'),
(47290, 'https://ror.org/02p7qqb42', 'no_lang_code', 1, 'https://ror.org/02p7qqb42 Keystone Tower Systems (United States)'),
(47291, 'https://ror.org/02p9evb60', 'en', 1, 'https://ror.org/02p9evb60 Clinical Solutions'),
(47292, 'https://ror.org/02pap1668', 'no_lang_code', 1, 'https://ror.org/02pap1668 ZymoChem (United States)'),
(47293, 'https://ror.org/02pbc3p47', 'en', 1, 'https://ror.org/02pbc3p47 Saitama Prefectural Tokorozawa Nishi High School åŸ¼ēŽ‰ēœŒē«‹ę‰€ę²¢č„æé«˜ē­‰å­¦ę ”'),
(47294, 'https://ror.org/02pbw9e07', 'no_lang_code', 1, 'https://ror.org/02pbw9e07 Nomad Bioscience (Germany)'),
(47295, 'https://ror.org/02pdacs91', 'no_lang_code', 1, 'https://ror.org/02pdacs91 Becton Dickinson (Ireland)'),
(47296, 'https://ror.org/02pehm937', 'en', 1, 'https://ror.org/02pehm937 Australian Physiotherapy Association'),
(47297, 'https://ror.org/02pf53x18', 'en', 1, 'https://ror.org/02pf53x18 Association for Academic Surgery'),
(47298, 'https://ror.org/02pfdh860', 'en', 1, 'https://ror.org/02pfdh860 Japan Small Animal Medical Center ę—„ęœ¬å°å‹•ē‰©ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(47299, 'https://ror.org/02phsd572', 'no_lang_code', 1, 'https://ror.org/02phsd572 Covance (Germany)'),
(47300, 'https://ror.org/02pj4bp80', 'en', 1, 'https://ror.org/02pj4bp80 Faringdon Day Hospital'),
(47301, 'https://ror.org/02pkcj269', 'no_lang_code', 1, 'https://ror.org/02pkcj269 Bailey Tool & Manufacturing (United States)'),
(47302, 'https://ror.org/02ppzn363', 'no_lang_code', 1, 'https://ror.org/02ppzn363 Yamagata Prefectural Police 山形県警察'),
(47303, 'https://ror.org/02prd1m09', 'no_lang_code', 1, 'https://ror.org/02prd1m09 Mi Corporation (United States)'),
(47304, 'https://ror.org/02prq1a68', 'en', 1, 'https://ror.org/02prq1a68 Forschungsvereinigung Verbrennungskraftmaschinen Research Association for Combustion Engines'),
(47305, 'https://ror.org/02prt3487', 'en', 1, 'https://ror.org/02prt3487 Congressional Coalition on Adoption Institute'),
(47306, 'https://ror.org/02prth598', 'no_lang_code', 1, 'https://ror.org/02prth598 Nidec (Germany)'),
(47307, 'https://ror.org/02psd9228', 'en', 1, 'https://ror.org/02psd9228 Addis Ababa Science and Technology University į‹ØįŠ į‹²įˆµ įŠ į‰ į‰£ įˆ³į‹­įŠ•įˆµįŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(47308, 'https://ror.org/02psd9a04', 'no_lang_code', 1, 'https://ror.org/02psd9a04 Advocates for Human Potential (United States)'),
(47309, 'https://ror.org/02ptdjf52', 'en', 1, 'https://ror.org/02ptdjf52 Ministry OF City Planning and Water Supply ą®Øą®•ą®°ą®®ąÆ ą®¤ą®æą®ŸąÆą®Ÿą®®ą®æą®Ÿą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®ØąÆ€ą®°ąÆ ą®µą®“ą®™ąÆą®•ą®²ąÆ ą®…ą®®ąÆˆą®šąÆą®šąÆ නගරය ą·ƒą·ą¶½ą·ƒą·”ą¶øą·Š ą·„ą· ජල ą·ƒą¶øą·Šą¶“ą·ą¶Æą¶± ą¶…ą¶øą·ą¶­ą·Šą¶ŗą·ą¶‚ą·ą¶ŗ'),
(47310, 'https://ror.org/02pthyn77', 'en', 1, 'https://ror.org/02pthyn77 New York University Florence'),
(47311, 'https://ror.org/02pvszw76', 'no_lang_code', 1, 'https://ror.org/02pvszw76 Semikron (Germany)'),
(47312, 'https://ror.org/02pwct569', 'no_lang_code', 1, 'https://ror.org/02pwct569 Juniper Networks (United States)'),
(47313, 'https://ror.org/02pwxft54', 'en', 1, 'https://ror.org/02pwxft54 Mobile Infirmary'),
(47314, 'https://ror.org/02py1vz39', 'en', 1, 'https://ror.org/02py1vz39 Okayama Prefectural Okayama Asahi High School å²”å±±ēœŒē«‹å²”å±±ęœę—„é«˜ē­‰å­¦ę ”'),
(47315, 'https://ror.org/02pyz9n41', 'no_lang_code', 1, 'https://ror.org/02pyz9n41 AcuityBio (United States)'),
(47316, 'https://ror.org/02pz14q94', 'no_lang_code', 1, 'https://ror.org/02pz14q94 Shinko Electric Industries (Japan) 新光電気巄愭'),
(47317, 'https://ror.org/02pzhxb85', 'en', 1, 'https://ror.org/02pzhxb85 Vitamin D Society'),
(47318, 'https://ror.org/02pzr0022', 'en', 1, 'https://ror.org/02pzr0022 National Center for Science and Technology Evaluation å›½å®¶äø­åæƒēš„ē§‘å­¦ęŠ€ęœÆčÆ„ä»·'),
(47319, 'https://ror.org/02q11zr32', 'no_lang_code', 1, 'https://ror.org/02q11zr32 DMG Mori (Germany)'),
(47320, 'https://ror.org/02q248z41', 'no_lang_code', 1, 'https://ror.org/02q248z41 Advisory Board Company (United States)'),
(47321, 'https://ror.org/02q2axs78', 'en', 1, 'https://ror.org/02q2axs78 Kyoto Seizan College 京都脿山短期大学'),
(47322, 'https://ror.org/02q486a47', 'en', 1, 'https://ror.org/02q486a47 Japanese Association of University Women ćƒ‘ćƒˆćƒŖć‚·ć‚¢äæ”ęæƒē”ŗćƒ†ćƒ©ć‚¹'),
(47323, 'https://ror.org/02q5b9n70', 'no_lang_code', 1, 'https://ror.org/02q5b9n70 Transient Plasma Systems (United States)'),
(47324, 'https://ror.org/02q83n633', 'no_lang_code', 1, 'https://ror.org/02q83n633 Vossloh (Germany)'),
(47325, 'https://ror.org/02q8j7k72', 'en', 1, 'https://ror.org/02q8j7k72 Metropolitan Library System'),
(47326, 'https://ror.org/02q911y28', 'no_lang_code', 1, 'https://ror.org/02q911y28 Lalema (Canada)'),
(47327, 'https://ror.org/02q9dpj81', 'en', 1, 'https://ror.org/02q9dpj81 National Institute of Technology Okinawa College ę²–ēø„å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(47328, 'https://ror.org/02qcpws31', 'en', 1, 'https://ror.org/02qcpws31 Ghana Wildlife Society'),
(47329, 'https://ror.org/02qd2bv04', 'no_lang_code', 1, 'https://ror.org/02qd2bv04 Sony (China) 瓢尼'),
(47330, 'https://ror.org/02qd46241', 'en', 1, 'https://ror.org/02qd46241 Institute for International Policy Studies č²”å›£äø–ē•Œå¹³å’Œē ”ē©¶ę‰€'),
(47331, 'https://ror.org/02qd93495', 'no_lang_code', 1, 'https://ror.org/02qd93495 MacGregor (Germany)'),
(47332, 'https://ror.org/02qf65t43', 'en', 1, 'https://ror.org/02qf65t43 Food and Agricultural Research and Extension Institute'),
(47333, 'https://ror.org/02qh3e530', 'en', 1, 'https://ror.org/02qh3e530 Hokkaido Pharmaceutical University åŒ—ęµ·é“č–¬ē§‘å¤§å­¦'),
(47334, 'https://ror.org/02qhp8q93', 'tr', 1, 'https://ror.org/02qhp8q93 Gazi Hastanesi'),
(47335, 'https://ror.org/02qhvwc15', 'en', 1, 'https://ror.org/02qhvwc15 Boulder Institute of Microfinance'),
(47336, 'https://ror.org/02qqwxa87', 'en', 1, 'https://ror.org/02qqwxa87 Church World Service'),
(47337, 'https://ror.org/02qr6qm80', 'en', 1, 'https://ror.org/02qr6qm80 North Carolina Center of Innovation Network'),
(47338, 'https://ror.org/02qraea35', 'en', 1, 'https://ror.org/02qraea35 Ishikawa Prefectural Police ēŸ³å·ēœŒč­¦åÆŸęœ¬éƒØ'),
(47339, 'https://ror.org/02qwkrw10', 'en', 1, 'https://ror.org/02qwkrw10 National Institute of Health ՀՀ Ō±Õ† Ō±Õ¼ÕøÕ²Õ»Õ”ÕŗÕ”Õ°ÕøÖ‚Õ©ÕµÕ”Õ¶ Ō±Õ¦Õ£Õ”ÕµÕ«Õ¶ Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(47340, 'https://ror.org/02qwxva96', 'en', 1, 'https://ror.org/02qwxva96 Colorado Northwestern Community College'),
(47341, 'https://ror.org/02qy0m851', 'en', 1, 'https://ror.org/02qy0m851 Aomori Prefectural Local Museum é’ę£®ēœŒē«‹éƒ·åœŸé¤Ø'),
(47342, 'https://ror.org/02r00ef35', 'en', 1, 'https://ror.org/02r00ef35 Jewish University in Moscow Š’Ń‹ŃŃˆŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń школа имени Š”. Š”ŃƒŠ±Š½Š¾Š²Š°'),
(47343, 'https://ror.org/02r033j14', 'en', 1, 'https://ror.org/02r033j14 National College of Technology, Wakayama College å’Œę­Œå±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(47344, 'https://ror.org/02r1xnr27', 'en', 1, 'https://ror.org/02r1xnr27 Hillsborough Education Foundation'),
(47345, 'https://ror.org/02r3gag23', 'en', 1, 'https://ror.org/02r3gag23 Japan Kinoko Research Center Foundation ę—„ęœ¬ćć®ć“ć‚»ćƒ³ć‚æ'),
(47346, 'https://ror.org/02r4fh585', 'en', 1, 'https://ror.org/02r4fh585 Oita Prefectural School for the Blind å¤§åˆ†ēœŒē«‹ē›²å­¦ę ”'),
(47347, 'https://ror.org/02r5rm445', 'en', 1, 'https://ror.org/02r5rm445 Benesse Educational Research and Development Institute ćƒ™ćƒćƒƒć‚»ę•™č‚²ē·åˆē ”ē©¶ę‰€'),
(47348, 'https://ror.org/02r6wnk86', 'en', 1, 'https://ror.org/02r6wnk86 Okinawa Prefectural Education Center ę²–ēø„ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(47349, 'https://ror.org/02r728f83', 'no_lang_code', 1, 'https://ror.org/02r728f83 ASV (United States)');
INSERT INTO `rors` VALUES
(47350, 'https://ror.org/02r7rkw80', 'no_lang_code', 1, 'https://ror.org/02r7rkw80 Southall Environmental Associates (United States)'),
(47351, 'https://ror.org/02r9ctp23', 'fr', 1, 'https://ror.org/02r9ctp23 SociĆ©tĆ© FranƧaise d''Exportation des Ressources Ɖducatives'),
(47352, 'https://ror.org/02r9ych18', 'pt', 1, 'https://ror.org/02r9ych18 Espregueira Mendes Clinic'),
(47353, 'https://ror.org/02raw4k91', 'no_lang_code', 1, 'https://ror.org/02raw4k91 Coloplast (Germany)'),
(47354, 'https://ror.org/02rbpte87', 'en', 1, 'https://ror.org/02rbpte87 African Women Education and Development Forum'),
(47355, 'https://ror.org/02rcm3a66', 'en', 1, 'https://ror.org/02rcm3a66 National Aquatic Resources Research and Development Agency'),
(47356, 'https://ror.org/02rcxmd71', 'en', 1, 'https://ror.org/02rcxmd71 Yukon Health and Social Services'),
(47357, 'https://ror.org/02reep516', 'en', 1, 'https://ror.org/02reep516 Association of Military Surgeons of the United States'),
(47358, 'https://ror.org/02rfh6m08', 'en', 1, 'https://ror.org/02rfh6m08 Fukushima Prefectural Police ē¦å³¶ēœŒč­¦åÆŸęœ¬éƒØ'),
(47359, 'https://ror.org/02rggjh51', 'en', 1, 'https://ror.org/02rggjh51 Gov2u'),
(47360, 'https://ror.org/02rgkd872', 'en', 1, 'https://ror.org/02rgkd872 Guangzhou Municipal Engineering Design and Research Institute å¹æå·žåø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(47361, 'https://ror.org/02rh64q44', 'en', 1, 'https://ror.org/02rh64q44 Massachusetts Business Alliance for Education'),
(47362, 'https://ror.org/02rhb5h29', 'no_lang_code', 1, 'https://ror.org/02rhb5h29 Tokyo Metropolitan Archives ę±äŗ¬éƒ½å…¬ę–‡ę›øé¤Ø'),
(47363, 'https://ror.org/02rhs4t61', 'no_lang_code', 1, 'https://ror.org/02rhs4t61 Doug Bragg Enterprises (Canada)'),
(47364, 'https://ror.org/02rhzx356', 'en', 1, 'https://ror.org/02rhzx356 Australasian Sleep Association'),
(47365, 'https://ror.org/02rj7et34', 'en', 1, 'https://ror.org/02rj7et34 Educational Service District 123'),
(47366, 'https://ror.org/02rqdr293', 'en', 1, 'https://ror.org/02rqdr293 Building Research Institute ē­‘ę³¢ē ”ē©¶å­¦åœ’éƒ½åø‚äŗ¤ęµå”č­°ä¼š'),
(47367, 'https://ror.org/02rqp9j27', 'no_lang_code', 1, 'https://ror.org/02rqp9j27 Batavia Biosciences (Netherlands)'),
(47368, 'https://ror.org/02rsbbb97', 'en', 1, 'https://ror.org/02rsbbb97 Al-Nasser University Ų¬Ų§Ł…Ų¹Ų© الناصر'),
(47369, 'https://ror.org/02rtq1r98', 'en', 1, 'https://ror.org/02rtq1r98 Kunstmuseum Bern Museum of Fine Arts Bern'),
(47370, 'https://ror.org/02rvaak51', 'pt', 1, 'https://ror.org/02rvaak51 Instituto By Brasil'),
(47371, 'https://ror.org/02rzd6x38', 'en', 1, 'https://ror.org/02rzd6x38 National College'),
(47372, 'https://ror.org/02rzte064', 'en', 1, 'https://ror.org/02rzte064 Zhejiang Science and Technology Information Institute ęµ™ę±Ÿēœē§‘ęŠ€äæ”ęÆē ”ē©¶é™¢'),
(47373, 'https://ror.org/02rzzjk74', 'fr', 1, 'https://ror.org/02rzzjk74 Ɖcole Nationale SupĆ©rieure des Mines de Nancy'),
(47374, 'https://ror.org/02s0wcj29', 'no_lang_code', 1, 'https://ror.org/02s0wcj29 Taiwan Semiconductor Manufacturing Company (China) å°ē£ē©é«”é›»č·Æč£½é€ å…¬åø'),
(47375, 'https://ror.org/02s39fg77', 'no_lang_code', 1, 'https://ror.org/02s39fg77 Autoliv (Japan)'),
(47376, 'https://ror.org/02s3q5660', 'en', 1, 'https://ror.org/02s3q5660 Concordia Hospital'),
(47377, 'https://ror.org/02s50ft61', 'no_lang_code', 1, 'https://ror.org/02s50ft61 Yeda Research and Development (Israel) ידע חברה ×œ×ž×—×§×Ø ופתוח'),
(47378, 'https://ror.org/02s52y897', 'de', 1, 'https://ror.org/02s52y897 Institut für Kulturforschung Graubünden'),
(47379, 'https://ror.org/02s5hdd60', 'en', 1, 'https://ror.org/02s5hdd60 Cache Public Schools'),
(47380, 'https://ror.org/02s6pzw53', 'no_lang_code', 1, 'https://ror.org/02s6pzw53 Cubidor (Switzerland)'),
(47381, 'https://ror.org/02s6qa536', 'no_lang_code', 1, 'https://ror.org/02s6qa536 Onconome (United States)'),
(47382, 'https://ror.org/02s6rdg38', 'no_lang_code', 1, 'https://ror.org/02s6rdg38 Novatek Microelectronics (Taiwan) čÆč© ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(47383, 'https://ror.org/02s7dzt19', 'en', 1, 'https://ror.org/02s7dzt19 Salford City Council'),
(47384, 'https://ror.org/02s8x1148', 'en', 1, 'https://ror.org/02s8x1148 First Hospital of Shijiazhuang ēŸ³å®¶åŗ„åø‚ē¬¬äø€åŒ»é™¢'),
(47385, 'https://ror.org/02s95xt63', 'no_lang_code', 1, 'https://ror.org/02s95xt63 Canon (United Kingdom)'),
(47386, 'https://ror.org/02sfkc120', 'en', 1, 'https://ror.org/02sfkc120 Emory Rehabilitation Hospital'),
(47387, 'https://ror.org/02sjef319', 'en', 1, 'https://ror.org/02sjef319 Washington State University Tri-Cities'),
(47388, 'https://ror.org/02sm4kj57', 'en', 1, 'https://ror.org/02sm4kj57 Fraunhofer Institute for Technological Trend Analysis Fraunhofer-Institut für Naturwissenschaftlich-Technische Trendanalysen'),
(47389, 'https://ror.org/02smvmz76', 'en', 1, 'https://ror.org/02smvmz76 Research Institute for System Studies Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ системных исслеГований Российской акаГемии наук'),
(47390, 'https://ror.org/02sqxcg48', 'en', 1, 'https://ror.org/02sqxcg48 Second People’s Hospital of Huai’an ę·®å®‰åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(47391, 'https://ror.org/02srvrw14', 'no_lang_code', 1, 'https://ror.org/02srvrw14 Galapagos (Croatia)'),
(47392, 'https://ror.org/02st2pm23', 'it', 1, 'https://ror.org/02st2pm23 Associazione Italiana Contro le Leucemie Linfomi e Mieloma'),
(47393, 'https://ror.org/02st7b426', 'en', 1, 'https://ror.org/02st7b426 Dr Youth Clinic 박사 ģ²­ģ†Œė…„ 큓리닉'),
(47394, 'https://ror.org/02stn1573', 'no_lang_code', 1, 'https://ror.org/02stn1573 IHI Corporation (Germany)'),
(47395, 'https://ror.org/02svp4q11', 'en', 1, 'https://ror.org/02svp4q11 Dementia UK'),
(47396, 'https://ror.org/02sw73p72', 'en', 1, 'https://ror.org/02sw73p72 Technological University Mawlamyaing į€”į€Šį€ŗį€øį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ (į€™į€±į€¬į€ŗį€œį€™į€¼į€­į€Æį€„į€ŗ)'),
(47397, 'https://ror.org/02sx09p05', 'en', 1, 'https://ror.org/02sx09p05 Hegang People''s Hospital é¹¤å²—åø‚äŗŗę°‘åŒ»é™¢'),
(47398, 'https://ror.org/02t2b1f58', 'no_lang_code', 1, 'https://ror.org/02t2b1f58 Wikimedia Israel ויקימדיה ×™×©×Ø××œ'),
(47399, 'https://ror.org/02t2pyr24', 'no_lang_code', 1, 'https://ror.org/02t2pyr24 Procter & Gamble (Germany)'),
(47400, 'https://ror.org/02t5fze90', 'en', 1, 'https://ror.org/02t5fze90 Japan Institute of Lifelong Learning čˆ¬č²”å›£ę³•äŗŗ ę—„ęœ¬ē”Ÿę¶Æå­¦ēæ’ē·åˆē ”ē©¶ę‰€'),
(47401, 'https://ror.org/02t6k0v08', 'en', 1, 'https://ror.org/02t6k0v08 Katanga Methodist University UniversitƩ MƩthodiste au Katanga'),
(47402, 'https://ror.org/02t7xfd51', 'pt', 1, 'https://ror.org/02t7xfd51 Centro de Estudos e Sistemas AvanƧados do Recife'),
(47403, 'https://ror.org/02t86cp18', 'es', 1, 'https://ror.org/02t86cp18 Universidad Bancaria de MƩxico'),
(47404, 'https://ror.org/02tbkt967', 'en', 1, 'https://ror.org/02tbkt967 National Hospital Organization Takasaki Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹é«˜å“Žē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(47405, 'https://ror.org/02tcsd812', 'no_lang_code', 1, 'https://ror.org/02tcsd812 Faradion (United Kingdom)'),
(47406, 'https://ror.org/02te08018', 'no_lang_code', 1, 'https://ror.org/02te08018 Wikimedia India'),
(47407, 'https://ror.org/02tefzr61', 'en', 1, 'https://ror.org/02tefzr61 University of Tokyo Health Sciences ę±äŗ¬åŒ»ē™‚å­¦é™¢å¤§å­¦'),
(47408, 'https://ror.org/02tg35219', 'no_lang_code', 1, 'https://ror.org/02tg35219 Ceres Nanosciences'),
(47409, 'https://ror.org/02tg5n396', 'no_lang_code', 1, 'https://ror.org/02tg5n396 Emerson (Germany)'),
(47410, 'https://ror.org/02tggea32', 'es', 1, 'https://ror.org/02tggea32 Universidad IndĆ­gena Boliviana Aymara Tupak Katari'),
(47411, 'https://ror.org/02thzwy35', 'en', 1, 'https://ror.org/02thzwy35 Okayama Psychiatric Medical Center å²”å±±ēœŒē²¾ē„žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(47412, 'https://ror.org/02tj98425', 'de', 1, 'https://ror.org/02tj98425 Aachener Institut für Bauschadensforschung und Angewandte Bauphysik'),
(47413, 'https://ror.org/02tjrsf04', 'no_lang_code', 1, 'https://ror.org/02tjrsf04 Mikasa City Museum äø‰ē¬ åø‚ē«‹åšē‰©é¤Ø'),
(47414, 'https://ror.org/02tntw181', 'no_lang_code', 1, 'https://ror.org/02tntw181 Broala (United States)'),
(47415, 'https://ror.org/02tqh0t89', 'en', 1, 'https://ror.org/02tqh0t89 International Institute of Rural Reconstruction'),
(47416, 'https://ror.org/02tr89m76', 'en', 1, 'https://ror.org/02tr89m76 Flowminder Foundation Stiftelsen Flowminder'),
(47417, 'https://ror.org/02tsn5q48', 'en', 1, 'https://ror.org/02tsn5q48 LEV Foundation'),
(47418, 'https://ror.org/02tzqkh80', 'en', 1, 'https://ror.org/02tzqkh80 International University of Grand Bassam'),
(47419, 'https://ror.org/02tztn617', 'no_lang_code', 1, 'https://ror.org/02tztn617 Wilex (Germany)'),
(47420, 'https://ror.org/02v01cg08', 'es', 1, 'https://ror.org/02v01cg08 Unidad de Cirugía Artroscópica'),
(47421, 'https://ror.org/02v2hb481', 'en', 1, 'https://ror.org/02v2hb481 Fukuoka Prefectural Board of Education ę•™č‚²ć®ē¦å²”ēœŒäŗ‹å‹™ę‰€'),
(47422, 'https://ror.org/02v3fc375', 'no_lang_code', 1, 'https://ror.org/02v3fc375 Auckland UniServices (New Zealand)'),
(47423, 'https://ror.org/02v3q4f93', 'en', 1, 'https://ror.org/02v3q4f93 Center for Environmental and Geographic Information Services'),
(47424, 'https://ror.org/02v4v1j69', 'en', 1, 'https://ror.org/02v4v1j69 Gastro Obeso Center'),
(47425, 'https://ror.org/02v5bg165', 'en', 1, 'https://ror.org/02v5bg165 Lumina Foundation'),
(47426, 'https://ror.org/02v5zjv47', 'sv', 1, 'https://ror.org/02v5zjv47 Wikimedia Sverige'),
(47427, 'https://ror.org/02v62c509', 'en', 1, 'https://ror.org/02v62c509 Jacksonville Public Education Fund'),
(47428, 'https://ror.org/02v953j25', 'en', 1, 'https://ror.org/02v953j25 National Muroto Youth Outdoor Learning Center å›½ē«‹å®¤ęˆøé’å°‘å¹“č‡Ŗē„¶ć®å®¶'),
(47429, 'https://ror.org/02vd4tk35', 'no_lang_code', 1, 'https://ror.org/02vd4tk35 Mann+Hummel (United States)'),
(47430, 'https://ror.org/02vdxz509', 'en', 1, 'https://ror.org/02vdxz509 Fukushima Iwaki Agricultural High School ē¦å³¶ēœŒē«‹ē£åŸŽč¾²ę„­é«˜ē­‰å­¦ę ”'),
(47431, 'https://ror.org/02vft6f63', 'en', 1, 'https://ror.org/02vft6f63 Tokyo Metropolitan Hiroo High School ę±äŗ¬éƒ½ē«‹åŗƒå°¾é«˜ē­‰å­¦ę ”'),
(47432, 'https://ror.org/02vfzhm25', 'de', 1, 'https://ror.org/02vfzhm25 Barmherzige Schwestern vom heiligen Kreuz'),
(47433, 'https://ror.org/02vg5vv12', 'en', 1, 'https://ror.org/02vg5vv12 Noguchi Institute č²”å›£ę³•äŗŗé‡Žå£ē ”ē©¶ę‰€'),
(47434, 'https://ror.org/02vh58j74', 'en', 1, 'https://ror.org/02vh58j74 Krajowe Centrum Informatyki Kwantowej w Gdańsku National Quantum Information Centre in Gdansk'),
(47435, 'https://ror.org/02vj2d285', 'en', 1, 'https://ror.org/02vj2d285 Minatogawa College ę¹Šå·ēŸ­ęœŸå¤§å­¦'),
(47436, 'https://ror.org/02vjb7q13', 'en', 1, 'https://ror.org/02vjb7q13 Kyoto Prefectural Suzaku High School äŗ¬éƒ½åŗœē«‹ęœ±é›€é«˜ē­‰å­¦ę ”'),
(47437, 'https://ror.org/02vjq2k16', 'en', 1, 'https://ror.org/02vjq2k16 BIO Ventures for Global Health'),
(47438, 'https://ror.org/02vjw6237', 'en', 1, 'https://ror.org/02vjw6237 China Foundation'),
(47439, 'https://ror.org/02vkk3485', 'no_lang_code', 1, 'https://ror.org/02vkk3485 Dover (Germany)'),
(47440, 'https://ror.org/02vnf7178', 'en', 1, 'https://ror.org/02vnf7178 International Society for Equity in Health'),
(47441, 'https://ror.org/02vnhrp96', 'en', 1, 'https://ror.org/02vnhrp96 IGAD Sheikh Technical Veterinary School and Reference Centre'),
(47442, 'https://ror.org/02vq92e47', 'no_lang_code', 1, 'https://ror.org/02vq92e47 Nordson (United States)'),
(47443, 'https://ror.org/02vr4se61', 'en', 1, 'https://ror.org/02vr4se61 Brownsville Public Library'),
(47444, 'https://ror.org/02vrrwa37', 'en', 1, 'https://ror.org/02vrrwa37 Middle Eastern Culture Center in Japan ę—„ęœ¬ć§ćÆäø­čæ‘ę±ę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(47445, 'https://ror.org/02vszc135', 'no_lang_code', 1, 'https://ror.org/02vszc135 Semiconductor Energy Laboratory (Japan) ę Ŗå¼ä¼šē¤¾åŠå°Žä½“ć‚Øćƒćƒ«ć‚®ćƒ¼ē ”ē©¶ę‰€'),
(47446, 'https://ror.org/02vtn5444', 'en', 1, 'https://ror.org/02vtn5444 Saitama Junshin Junior College åŸ¼ēŽ‰ē“”ēœŸēŸ­ęœŸå¤§å­¦'),
(47447, 'https://ror.org/02vva9s75', 'no_lang_code', 1, 'https://ror.org/02vva9s75 EFD Induction (Germany)'),
(47448, 'https://ror.org/02vvp2k82', 'en', 1, 'https://ror.org/02vvp2k82 National Institute of Technology, Sasebo College ęŠ€č”“ē·åˆē ”ē©¶ę‰€ć€ä½äø–äæć‚«ćƒ¬ćƒƒć‚ø'),
(47449, 'https://ror.org/02vvp3528', 'es', 1, 'https://ror.org/02vvp3528 Universidad de Matamoros'),
(47450, 'https://ror.org/02vw0qn29', 'en', 1, 'https://ror.org/02vw0qn29 American Association of School Administrators'),
(47451, 'https://ror.org/02vw9t771', 'en', 1, 'https://ror.org/02vw9t771 Akita Prefectural Akita High School ē§‹ē”°ēœŒē«‹ē§‹ē”°é«˜ē­‰å­¦ę ”'),
(47452, 'https://ror.org/02vx2hk50', 'en', 1, 'https://ror.org/02vx2hk50 Center for Integrated Smart Sensors'),
(47453, 'https://ror.org/02vx5xr46', 'en', 1, 'https://ror.org/02vx5xr46 Osaka Prefectural Police Department 大阪府警察'),
(47454, 'https://ror.org/02vxh1k29', 'no_lang_code', 1, 'https://ror.org/02vxh1k29 Aurobindo Pharma (United States)'),
(47455, 'https://ror.org/02w0rjw17', 'es', 1, 'https://ror.org/02w0rjw17 Planta Piloto de Procesos Industriales Microbiológicos'),
(47456, 'https://ror.org/02w528w58', 'no_lang_code', 1, 'https://ror.org/02w528w58 Fuji Xerox (Japan) åÆŒå£«ć‚¼ćƒ­ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(47457, 'https://ror.org/02w6dpq08', 'en', 1, 'https://ror.org/02w6dpq08 Victorian Curriculum and Assessment Authority'),
(47458, 'https://ror.org/02w72df16', 'de', 1, 'https://ror.org/02w72df16 Institut für Handelsforschung'),
(47459, 'https://ror.org/02wb6zh81', 'no_lang_code', 1, 'https://ror.org/02wb6zh81 Graphic Packaging (United States)'),
(47460, 'https://ror.org/02wbb9367', 'en', 1, 'https://ror.org/02wbb9367 European Regions Research and Innovation Network'),
(47461, 'https://ror.org/02wec8948', 'no_lang_code', 1, 'https://ror.org/02wec8948 Medical Device Innovations (United Kingdom)'),
(47462, 'https://ror.org/02wenm763', 'en', 1, 'https://ror.org/02wenm763 Islamic Azad University Shirvan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“ŪŒŲ±ŁˆŲ§Ł†'),
(47463, 'https://ror.org/02wg0x984', 'no_lang_code', 1, 'https://ror.org/02wg0x984 M-Changa'),
(47464, 'https://ror.org/02wh2qn63', 'en', 1, 'https://ror.org/02wh2qn63 Association of Clinical Pathologists'),
(47465, 'https://ror.org/02wjty955', 'en', 1, 'https://ror.org/02wjty955 Hokkaido Sapporo Shinkawa High School åŒ—ęµ·é“ęœ­å¹Œę–°å·é«˜ē­‰å­¦ę ”'),
(47466, 'https://ror.org/02wmqzm35', 'en', 1, 'https://ror.org/02wmqzm35 Hiroshima Minami High School åŗƒå³¶ēœŒē«‹åŗƒå³¶ēš†å®Ÿé«˜ē­‰å­¦ę ”'),
(47467, 'https://ror.org/02wn17b67', 'no_lang_code', 1, 'https://ror.org/02wn17b67 Arkray (Japan) ć‚¢ćƒ¼ć‚Æćƒ¬ć‚¤ę Ŗå¼ä¼šē¤¾'),
(47468, 'https://ror.org/02wn33c27', 'pt', 1, 'https://ror.org/02wn33c27 Fundação de Apoio à Universidade de São Paulo'),
(47469, 'https://ror.org/02wp0mx48', 'en', 1, 'https://ror.org/02wp0mx48 Gifu Prefectural Gifu Technical High School å²é˜œēœŒē«‹å²é˜œå·„ę„­é«˜ē­‰å­¦ę ”'),
(47470, 'https://ror.org/02wp70a18', 'no_lang_code', 1, 'https://ror.org/02wp70a18 Firebird Biomolecular Sciences (United States)'),
(47471, 'https://ror.org/02wpc5d77', 'no_lang_code', 1, 'https://ror.org/02wpc5d77 Cypress Semiconductor Corporation (United States)'),
(47472, 'https://ror.org/02wqahk61', 'no_lang_code', 1, 'https://ror.org/02wqahk61 CivaTech Oncology (United States)'),
(47473, 'https://ror.org/02wqfz680', 'nl', 1, 'https://ror.org/02wqfz680 Maatschappij tot Redding van Drenkelingen'),
(47474, 'https://ror.org/02wrg9q93', 'en', 1, 'https://ror.org/02wrg9q93 Zhejiang Museum of Natural History ęµ™ę±Ÿč‡Ŗē„¶åšē‰©é¦†'),
(47475, 'https://ror.org/02ws3jn37', 'en', 1, 'https://ror.org/02ws3jn37 National Lymphedema Network'),
(47476, 'https://ror.org/02wt4jg41', 'en', 1, 'https://ror.org/02wt4jg41 Microbiology Institute of Shaanxi é™•č„æēœå¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(47477, 'https://ror.org/02wt5t905', 'en', 1, 'https://ror.org/02wt5t905 Zhejiang Marine Fisheries Research Institute ęµ™ę±Ÿēœęµ·ę“‹ę°“äŗ§ē ”ē©¶ę‰€'),
(47478, 'https://ror.org/02wt6gj97', 'en', 1, 'https://ror.org/02wt6gj97 Dollezhal Research and Development Institute of Power Engineering ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³Š¾Ń‚ŠµŃ…Š½ŠøŠŗŠø имени Š. А. Š”Š¾Š»Š»ŠµŠ¶Š°Š»Ń'),
(47479, 'https://ror.org/02wwbem66', 'en', 1, 'https://ror.org/02wwbem66 Aarhus Kommune Aarhus Municipality'),
(47480, 'https://ror.org/02wwrgv75', 'no_lang_code', 1, 'https://ror.org/02wwrgv75 Pfeiffer Vacuum (Germany)'),
(47481, 'https://ror.org/02wwz7n17', 'en', 1, 'https://ror.org/02wwz7n17 Georgia Public Library Service'),
(47482, 'https://ror.org/02wxcdf69', 'en', 1, 'https://ror.org/02wxcdf69 National Maritime Research Institute ęµ·äøŠęŠ€č”“å®‰å…Øē ”ē©¶ę‰€ćÆ'),
(47483, 'https://ror.org/02wxw4x45', 'it', 1, 'https://ror.org/02wxw4x45 Institute for Electromagnetic Sensing of the Environment Istituto per il Rilevamento Elettromagnetico dell''Ambiente'),
(47484, 'https://ror.org/02x2gk324', 'no_lang_code', 1, 'https://ror.org/02x2gk324 Abbott (Germany) Abbott Deutschland'),
(47485, 'https://ror.org/02x2x2y51', 'no_lang_code', 1, 'https://ror.org/02x2x2y51 Smolny University Š”Š¼Š¾Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(47486, 'https://ror.org/02x41bc05', 'no_lang_code', 1, 'https://ror.org/02x41bc05 C4 Imaging (United States)'),
(47487, 'https://ror.org/02x44xg10', 'no_lang_code', 1, 'https://ror.org/02x44xg10 Ragheb Esfahani Institute Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų±Ų§ŲŗŲØ Ų§ŲµŁŁ‡Ų§Ł†ŪŒ'),
(47488, 'https://ror.org/02x4grb16', 'no_lang_code', 1, 'https://ror.org/02x4grb16 Sartorius (United States)'),
(47489, 'https://ror.org/02x7eef92', 'en', 1, 'https://ror.org/02x7eef92 Okayama Prefectural Museum å²”å±±ēœŒē«‹åšē‰©é¤Ø'),
(47490, 'https://ror.org/02x7x4c86', 'no_lang_code', 1, 'https://ror.org/02x7x4c86 DNA Medicine Institute (United States)'),
(47491, 'https://ror.org/02x93ka62', 'en', 1, 'https://ror.org/02x93ka62 Trilogi University Universitas Trilogi'),
(47492, 'https://ror.org/02x9b2s62', 'no_lang_code', 1, 'https://ror.org/02x9b2s62 Musashigaoka College ę­¦č”µäø˜ēŸ­ęœŸå¤§å­¦'),
(47493, 'https://ror.org/02xata679', 'pt', 1, 'https://ror.org/02xata679 Sociedade Brasileira de Economia Administração e Sociologia Rural'),
(47494, 'https://ror.org/02xc21a77', 'en', 1, 'https://ror.org/02xc21a77 Islamic Azad University South Tehran Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران Ų“Ł…Ų§Ł„'),
(47495, 'https://ror.org/02xcsx289', 'en', 1, 'https://ror.org/02xcsx289 Chief Officers of State Library Agencies'),
(47496, 'https://ror.org/02xdeet92', 'no_lang_code', 1, 'https://ror.org/02xdeet92 Handix Scientific (United States)'),
(47497, 'https://ror.org/02xgrds91', 'de', 1, 'https://ror.org/02xgrds91 Amedes MVZ Hamburg'),
(47498, 'https://ror.org/02xh6me94', 'no_lang_code', 1, 'https://ror.org/02xh6me94 Henriksson Salix (Sweden)'),
(47499, 'https://ror.org/02xkqh785', 'en', 1, 'https://ror.org/02xkqh785 Nagoya Industrial Science Research Institute åå¤å±‹ē”£ę„­ē§‘å­¦ē ”ē©¶ę‰€'),
(47500, 'https://ror.org/02xm6sp43', 'en', 1, 'https://ror.org/02xm6sp43 National Institute of Technology, Kagoshima College é¹æå…å³¶å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(47501, 'https://ror.org/02xnck737', 'en', 1, 'https://ror.org/02xnck737 Ashurst Hospital'),
(47502, 'https://ror.org/02xqwa087', 'en', 1, 'https://ror.org/02xqwa087 Institute of Applied Geophysics of the Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ УчрежГение ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной геофизики АкаГемии наук'),
(47503, 'https://ror.org/02xr9bp50', 'en', 1, 'https://ror.org/02xr9bp50 Lushan Botanical Garden ę±Ÿč„æēœäø­å›½ē§‘å­¦é™¢åŗå±±ę¤ē‰©å›­'),
(47504, 'https://ror.org/02xrm8w90', 'en', 1, 'https://ror.org/02xrm8w90 Toho University Medical Center Sakura Hospital ę±é‚¦å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ä½å€‰ē—…é™¢'),
(47505, 'https://ror.org/02xs4zz34', 'en', 1, 'https://ror.org/02xs4zz34 Nature Uganda'),
(47506, 'https://ror.org/02xwb7a71', 'en', 1, 'https://ror.org/02xwb7a71 Kanagawa Prefectural Miura Seaside High School ē„žå„ˆå·ēœŒē«‹äø‰ęµ¦č‡Øęµ·é«˜ē­‰å­¦ę ”'),
(47507, 'https://ror.org/02xwjjw58', 'de', 1, 'https://ror.org/02xwjjw58 Agaplesion Bethesda Krankenhaus'),
(47508, 'https://ror.org/02xxmjs88', 'en', 1, 'https://ror.org/02xxmjs88 British Association for Slavonic and East European Studies'),
(47509, 'https://ror.org/02xy0vm11', 'en', 1, 'https://ror.org/02xy0vm11 Arkansas State Library'),
(47510, 'https://ror.org/02xymhw35', 'en', 1, 'https://ror.org/02xymhw35 Pikes Peak Area Council of Governments'),
(47511, 'https://ror.org/02y05bg81', 'en', 1, 'https://ror.org/02y05bg81 Nigerian Institute For Oil Palm Reasearch'),
(47512, 'https://ror.org/02y1ra305', 'en', 1, 'https://ror.org/02y1ra305 Association for Progressive Communications'),
(47513, 'https://ror.org/02y286910', 'en', 1, 'https://ror.org/02y286910 Magic Johnson Foundation'),
(47514, 'https://ror.org/02y2rfe31', 'no_lang_code', 1, 'https://ror.org/02y2rfe31 TGS (United Kingdom)'),
(47515, 'https://ror.org/02y4x8722', 'no_lang_code', 1, 'https://ror.org/02y4x8722 Chrono Therapeutics (United States)'),
(47516, 'https://ror.org/02y5ftz59', 'en', 1, 'https://ror.org/02y5ftz59 St. Cecilia Women''s Junior College č–ć‚»ć‚·ćƒŖć‚¢ēŸ­ęœŸå¤§å­¦'),
(47517, 'https://ror.org/02y5x0w05', 'no_lang_code', 1, 'https://ror.org/02y5x0w05 Kansai Paint (Japan) é–¢č„æćƒšć‚¤ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(47518, 'https://ror.org/02y7h5c73', 'en', 1, 'https://ror.org/02y7h5c73 Centre National d''Applications des Recherches Pharmaceutiques National Application Center for Pharmaceutical Research'),
(47519, 'https://ror.org/02y8hn179', 'de', 1, 'https://ror.org/02y8hn179 Klinikum St. Georg'),
(47520, 'https://ror.org/02y8yb391', 'en', 1, 'https://ror.org/02y8yb391 New Paradigm for Education'),
(47521, 'https://ror.org/02y910088', 'no_lang_code', 1, 'https://ror.org/02y910088 Medizinisches Laserzentrum Lübeck (Germany)'),
(47522, 'https://ror.org/02y931541', 'en', 1, 'https://ror.org/02y931541 Semmelweis Museum Semmelweis Orvostörténeti Múzeum'),
(47523, 'https://ror.org/02ybv1z63', 'no_lang_code', 1, 'https://ror.org/02ybv1z63 Pleiades Robotics (Canada)'),
(47524, 'https://ror.org/02ybwq307', 'en', 1, 'https://ror.org/02ybwq307 British Association for Japanese Studies'),
(47525, 'https://ror.org/02yd61q08', 'en', 1, 'https://ror.org/02yd61q08 Western New York Independent Living'),
(47526, 'https://ror.org/02ye03m75', 'en', 1, 'https://ror.org/02ye03m75 Women Of Color Salon'),
(47527, 'https://ror.org/02ye0v256', 'en', 1, 'https://ror.org/02ye0v256 Council of Michigan Foundations'),
(47528, 'https://ror.org/02yh0k313', 'no_lang_code', 1, 'https://ror.org/02yh0k313 Advanced Micro Devices (Canada)'),
(47529, 'https://ror.org/02yp1e416', 'es', 1, 'https://ror.org/02yp1e416 Hospital General Universitari de Castelló'),
(47530, 'https://ror.org/02ypkn805', 'en', 1, 'https://ror.org/02ypkn805 Kanagawa Prefecture Natural Environment Conservation Center ē„žå„ˆå·ēœŒč‡Ŗē„¶ē’°å¢ƒäæå…Øć‚»ćƒ³ć‚æćƒ¼'),
(47531, 'https://ror.org/02ypyf569', 'en', 1, 'https://ror.org/02ypyf569 Osaka Yukioka Medical University å¤§é˜Ŗč”Œå²”åŒ»ē™‚å¤§å­¦'),
(47532, 'https://ror.org/02yq51g52', 'no_lang_code', 1, 'https://ror.org/02yq51g52 Ottobock (United States)'),
(47533, 'https://ror.org/02yr31a60', 'fr', 1, 'https://ror.org/02yr31a60 Association Belge Contre les Maladies Neuro-Musculaires'),
(47534, 'https://ror.org/02yrvm198', 'pt', 1, 'https://ror.org/02yrvm198 Sociedade Brasileira de Anestesiologia'),
(47535, 'https://ror.org/02ys6e350', 'no_lang_code', 1, 'https://ror.org/02ys6e350 Advanced Immune Therapeutics (United States)'),
(47536, 'https://ror.org/02yt3kq50', 'en', 1, 'https://ror.org/02yt3kq50 Jobs Australia'),
(47537, 'https://ror.org/02ythmp17', 'en', 1, 'https://ror.org/02ythmp17 Tampa–Hillsborough County Public Library System'),
(47538, 'https://ror.org/02ytn4d59', 'en', 1, 'https://ror.org/02ytn4d59 Islamic Azad University Kazeron دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŲŒ Ś©Ų§Ų²Ų±ŁˆŁ†'),
(47539, 'https://ror.org/02ytpcd02', 'en', 1, 'https://ror.org/02ytpcd02 Great Plains Industrial Park'),
(47540, 'https://ror.org/02ywr7111', 'pt', 1, 'https://ror.org/02ywr7111 Prefeitura Municipal de Campos dos Goytacazes'),
(47541, 'https://ror.org/02z0zbb37', 'en', 1, 'https://ror.org/02z0zbb37 Australian Rheumatology Association'),
(47542, 'https://ror.org/02z1v6961', 'it', 1, 'https://ror.org/02z1v6961 Consorzio per il Centro Interuniversitario di Biologia Marina ed Ecologia Applicata G. Bacci'),
(47543, 'https://ror.org/02z2rxb36', 'no_lang_code', 1, 'https://ror.org/02z2rxb36 Mold Dynamics (United States)'),
(47544, 'https://ror.org/02z4s0665', 'pt', 1, 'https://ror.org/02z4s0665 Instituto de Controle do EspaƧo AƩreo'),
(47545, 'https://ror.org/02z4s0f38', 'en', 1, 'https://ror.org/02z4s0f38 Otaru City General Museum å°ęØ½åø‚ē·åˆåšē‰©é¤Ø'),
(47546, 'https://ror.org/02z5rpx40', 'pt', 1, 'https://ror.org/02z5rpx40 Sociedade Brasileira de GeofĆ­sica'),
(47547, 'https://ror.org/02z82e935', 'no_lang_code', 1, 'https://ror.org/02z82e935 Media Deals (France)'),
(47548, 'https://ror.org/02zbepj77', 'es', 1, 'https://ror.org/02zbepj77 Universidad TƩcnica Federico Santa Marƭa'),
(47549, 'https://ror.org/02zbycv67', 'no_lang_code', 1, 'https://ror.org/02zbycv67 Osaka Ibaraki High School å¤§é˜Ŗåŗœē«‹čŒØęœØé«˜ē­‰å­¦ę ”'),
(47550, 'https://ror.org/02zd56905', 'no_lang_code', 1, 'https://ror.org/02zd56905 Tenneco (Germany)'),
(47551, 'https://ror.org/02zd68c30', 'en', 1, 'https://ror.org/02zd68c30 East Lake Foundation'),
(47552, 'https://ror.org/02zdjth29', 'fr', 1, 'https://ror.org/02zdjth29 African University of Technology and Management UniversitƩ Africaine de Technologie et de Management'),
(47553, 'https://ror.org/02zee8r13', 'no_lang_code', 1, 'https://ror.org/02zee8r13 E3Tec (United States)'),
(47554, 'https://ror.org/02zfkey21', 'en', 1, 'https://ror.org/02zfkey21 Educational Policy Improvement Center'),
(47555, 'https://ror.org/02zj9bw60', 'no_lang_code', 1, 'https://ror.org/02zj9bw60 Insplorion (Sweden)'),
(47556, 'https://ror.org/02zjw6262', 'en', 1, 'https://ror.org/02zjw6262 International Development Law Organization'),
(47557, 'https://ror.org/02zkwry50', 'no_lang_code', 1, 'https://ror.org/02zkwry50 Tektronix (Germany)'),
(47558, 'https://ror.org/02zmaz789', 'es', 1, 'https://ror.org/02zmaz789 Universidad Particular de Iquitos'),
(47559, 'https://ror.org/02zn32y15', 'it', 1, 'https://ror.org/02zn32y15 Associazione Italiana Lotta al Neuroblastoma'),
(47560, 'https://ror.org/02zpzpz12', 'en', 1, 'https://ror.org/02zpzpz12 Access to Seeds Index'),
(47561, 'https://ror.org/02zq3rg90', 'en', 1, 'https://ror.org/02zq3rg90 Saitama Prefectural Miyashiro High School åŸ¼ēŽ‰ēœŒå®®ä»£é«˜ē­‰å­¦ę ”'),
(47562, 'https://ror.org/02zq8hg49', 'en', 1, 'https://ror.org/02zq8hg49 Busan Women''s College ė¶€ģ‚°ģ—¬ģžėŒ€ķ•™źµ'),
(47563, 'https://ror.org/02zrb2v54', 'en', 1, 'https://ror.org/02zrb2v54 University Medical Center New Orleans'),
(47564, 'https://ror.org/02zs45744', 'no_lang_code', 1, 'https://ror.org/02zs45744 Takenaka (Japan) ę Ŗå¼ä¼šē¤¾ē«¹äø­å·„å‹™åŗ—'),
(47565, 'https://ror.org/02zsmpq40', 'en', 1, 'https://ror.org/02zsmpq40 Kyoto Prefectural Police 京都府警察'),
(47566, 'https://ror.org/02zsz8156', 'en', 1, 'https://ror.org/02zsz8156 British Fashion Council'),
(47567, 'https://ror.org/02ztkac83', 'no_lang_code', 1, 'https://ror.org/02ztkac83 Robert Bosch (Japan) ćƒœćƒƒć‚·ćƒ„ļ¼ˆę Ŗļ¼‰'),
(47568, 'https://ror.org/02zvazz07', 'no_lang_code', 1, 'https://ror.org/02zvazz07 Scio Diamond Technology Corporation (United States)'),
(47569, 'https://ror.org/02zvhxb95', 'en', 1, 'https://ror.org/02zvhxb95 Puer University 普擱学院'),
(47570, 'https://ror.org/02zw4ef94', 'en', 1, 'https://ror.org/02zw4ef94 Sam Moyo African Institute for Agrarian Studies'),
(47571, 'https://ror.org/02zwd6322', 'en', 1, 'https://ror.org/02zwd6322 Australian Acoustical Society'),
(47572, 'https://ror.org/02zwv8f48', 'no_lang_code', 1, 'https://ror.org/02zwv8f48 SPX Corporation (United States)'),
(47573, 'https://ror.org/02zy6fj64', 'en', 1, 'https://ror.org/02zy6fj64 Peac Institute of Multiscale Sciences é”¶å³°å¤šå°ŗåŗ¦ē§‘å­¦ē ”ē©¶ę‰€'),
(47574, 'https://ror.org/02zy9xx44', 'no_lang_code', 1, 'https://ror.org/02zy9xx44 Rieter (Switzerland)'),
(47575, 'https://ror.org/0304d2a41', 'en', 1, 'https://ror.org/0304d2a41 Exponent Philanthropy'),
(47576, 'https://ror.org/0306fdh09', 'en', 1, 'https://ror.org/0306fdh09 Tuberous Sclerosis Association'),
(47577, 'https://ror.org/0306thw41', 'lt', 1, 'https://ror.org/0306thw41 Lietuvos nacionalinė Martyno Mažvydo biblioteka, Martynas Mažvydas National Library'),
(47578, 'https://ror.org/0307qjf39', 'en', 1, 'https://ror.org/0307qjf39 Egyptian Society of Radiology and Nuclear Medicine'),
(47579, 'https://ror.org/030bjny53', 'en', 1, 'https://ror.org/030bjny53 Arlington Public Library'),
(47580, 'https://ror.org/030c4gr60', 'no_lang_code', 1, 'https://ror.org/030c4gr60 STMicroelectronics (Singapore)'),
(47581, 'https://ror.org/030cpmq61', 'en', 1, 'https://ror.org/030cpmq61 Society for Surgery of the Alimentary Tract'),
(47582, 'https://ror.org/030cs0206', 'no_lang_code', 1, 'https://ror.org/030cs0206 Asus (China) čÆē¢©é›»č…¦č‚”ä»½ęœ‰é™å…¬åø'),
(47583, 'https://ror.org/030d7rf51', 'en', 1, 'https://ror.org/030d7rf51 National Specialized Hospital for Active Treatment of Hematologic Diseases ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° специализирана болница за активно лечение на хематологични Š·Š°Š±Š¾Š»ŃŠ²Š°Š½ŠøŃ'),
(47584, 'https://ror.org/030dc5p74', 'en', 1, 'https://ror.org/030dc5p74 Odawara Women''s Junior College å°ē”°åŽŸå„³å­ēŸ­ęœŸå¤§å­¦'),
(47585, 'https://ror.org/030de3d66', 'en', 1, 'https://ror.org/030de3d66 Merrell University of Beauty Arts and Science'),
(47586, 'https://ror.org/030dxd692', 'en', 1, 'https://ror.org/030dxd692 Kumamoto Prefectural Matsubase High School ē†Šęœ¬ēœŒē«‹ę¾ę©‹é«˜ē­‰å­¦ę ”'),
(47587, 'https://ror.org/030ewbq61', 'en', 1, 'https://ror.org/030ewbq61 Prehistoric Society'),
(47588, 'https://ror.org/030f6nw85', 'en', 1, 'https://ror.org/030f6nw85 Education Leaders of Color'),
(47589, 'https://ror.org/030g4zt91', 'en', 1, 'https://ror.org/030g4zt91 Waikato-Tainui College for Research and Development'),
(47590, 'https://ror.org/030h9s280', 'en', 1, 'https://ror.org/030h9s280 St. Petersburg Department of Steklov Institute of Mathematics Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Šµ отГеление ŠœŠ°Ń‚ематического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° им. Š’. А. Дтеклова Š ŠŠ, abbreviated ŠŸŠžŠœŠ˜'),
(47591, 'https://ror.org/030j5vf66', 'en', 1, 'https://ror.org/030j5vf66 Statistics Austria Statistik Austria'),
(47592, 'https://ror.org/030q2z289', 'en', 1, 'https://ror.org/030q2z289 GBCHealth'),
(47593, 'https://ror.org/030r45j36', 'en', 1, 'https://ror.org/030r45j36 Neyagaya School for Special Needs Education å¤§é˜Ŗåŗœē«‹åÆå±‹å·ę”Æę“å­¦ę ”'),
(47594, 'https://ror.org/030r87x36', 'en', 1, 'https://ror.org/030r87x36 New York State Council of School Superintendents'),
(47595, 'https://ror.org/030rn8443', 'en', 1, 'https://ror.org/030rn8443 Alberta Conservation Association'),
(47596, 'https://ror.org/030v79255', 'pt', 1, 'https://ror.org/030v79255 Secretaria de Estado de Segurança Pública'),
(47597, 'https://ror.org/030v8r787', 'no_lang_code', 1, 'https://ror.org/030v8r787 Tecan (United States)'),
(47598, 'https://ror.org/030xn5j74', 'en', 1, 'https://ror.org/030xn5j74 TCM-Intigrated Cancer Center of Southern Medical University å—ę–¹åŒ»ē§‘å¤§å­¦äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(47599, 'https://ror.org/030xy3q54', 'no_lang_code', 1, 'https://ror.org/030xy3q54 Foxconn (United Kingdom)'),
(47600, 'https://ror.org/0310dsa24', 'en', 1, 'https://ror.org/0310dsa24 Hangzhou Seventh Peoples Hospital ę­å·žåø‚ē¬¬äøƒäŗŗę°‘åŒ»é™¢'),
(47601, 'https://ror.org/03110kp08', 'no_lang_code', 1, 'https://ror.org/03110kp08 Universal Fibers (United States)'),
(47602, 'https://ror.org/03111mv26', 'en', 1, 'https://ror.org/03111mv26 Yamanashi Prefecture Forestry and Forest Products Research Institute å±±ę¢ØēœŒę£®ęž—ē·åˆē ”ē©¶ę‰€ ę£®ęž—äæč­·ē§‘'),
(47603, 'https://ror.org/03120tz42', 'en', 1, 'https://ror.org/03120tz42 Menasseh Ben Israel Institute'),
(47604, 'https://ror.org/0313mbq66', 'de', 1, 'https://ror.org/0313mbq66 Sukkulenten-Sammlung Zürich'),
(47605, 'https://ror.org/0313pb684', 'en', 1, 'https://ror.org/0313pb684 Institute of Scientific and Technical Research for Defense Instituto de Investigaciones Cientƭficas y TƩcnicas para la Defensa'),
(47606, 'https://ror.org/0317cq689', 'en', 1, 'https://ror.org/0317cq689 Doctors of the World'),
(47607, 'https://ror.org/03187yj51', 'en', 1, 'https://ror.org/03187yj51 Islamic Azad University, Science and Research Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų¹Ł„ŁˆŁ… و ŲŖŲ­Ł‚ŁŠŁ‚Ų§ŲŖā€Žā€Ž'),
(47608, 'https://ror.org/0318awh51', 'en', 1, 'https://ror.org/0318awh51 Ethiopian Environment Protection Authority'),
(47609, 'https://ror.org/0318teb82', 'no_lang_code', 1, 'https://ror.org/0318teb82 Kimberly-Clark (Canada)'),
(47610, 'https://ror.org/031aqk326', 'en', 1, 'https://ror.org/031aqk326 Fraunhofer Institute for Reliability and Microintegration Fraunhofer-Institut für Zuverlässigkeit und Mikrointegration'),
(47611, 'https://ror.org/031b16827', 'no_lang_code', 1, 'https://ror.org/031b16827 ProjectEconomics (United states)'),
(47612, 'https://ror.org/031b6ch69', 'no_lang_code', 1, 'https://ror.org/031b6ch69 Legrand (Germany)'),
(47613, 'https://ror.org/031da7s82', 'en', 1, 'https://ror.org/031da7s82 Marquette Regional History Center'),
(47614, 'https://ror.org/031fvch84', 'no_lang_code', 1, 'https://ror.org/031fvch84 Kirchhoff (Germany)'),
(47615, 'https://ror.org/031gy6182', 'en', 1, 'https://ror.org/031gy6182 Office of Technology Transfer'),
(47616, 'https://ror.org/031hb1d69', 'no_lang_code', 1, 'https://ror.org/031hb1d69 YKK (United Kingdom)'),
(47617, 'https://ror.org/031jpet61', 'no_lang_code', 1, 'https://ror.org/031jpet61 Osaka Aoyama University å¤§é˜Ŗé’å±±å¤§å­¦'),
(47618, 'https://ror.org/031jw0220', 'no_lang_code', 1, 'https://ror.org/031jw0220 Uji Hospital 宇治病院'),
(47619, 'https://ror.org/031kj1n86', 'en', 1, 'https://ror.org/031kj1n86 National Association of the Deaf'),
(47620, 'https://ror.org/031krgy72', 'en', 1, 'https://ror.org/031krgy72 Center for Advancing Health'),
(47621, 'https://ror.org/031kyph18', 'de', 1, 'https://ror.org/031kyph18 Gottfried-Wilhelm-Leibniz-Gesellschaft'),
(47622, 'https://ror.org/031negs69', 'no_lang_code', 1, 'https://ror.org/031negs69 CJ CGV (South Korea) ģ”Øģ œģ“ ģ”Øģ§€ėøŒģ“'),
(47623, 'https://ror.org/031pw2y57', 'en', 1, 'https://ror.org/031pw2y57 Osaka Prefectural Hirakata High School å¤§é˜Ŗåŗœē«‹ęžšę–¹é«˜ē­‰å­¦ę ”'),
(47624, 'https://ror.org/031q06g37', 'en', 1, 'https://ror.org/031q06g37 Himeji University 姫路大学'),
(47625, 'https://ror.org/031sgpn76', 'no_lang_code', 1, 'https://ror.org/031sgpn76 Valeo (Ireland)'),
(47626, 'https://ror.org/031v2vc59', 'en', 1, 'https://ror.org/031v2vc59 American Association of Colleges of Pharmacy'),
(47627, 'https://ror.org/031vs9z41', 'en', 1, 'https://ror.org/031vs9z41 Workforce Solutions Northeast Texas'),
(47628, 'https://ror.org/031vt8c32', 'no_lang_code', 1, 'https://ror.org/031vt8c32 Ethos (United Kingdom)'),
(47629, 'https://ror.org/031y5ny63', 'fr', 1, 'https://ror.org/031y5ny63 Laboratoire de Recherche et d’Analyses MĆ©dicales de la Fraternelle de la Gendarmerie Royale'),
(47630, 'https://ror.org/031yk8297', 'es', 1, 'https://ror.org/031yk8297 Universidad MonseƱor Oscar Arnulfo Romero'),
(47631, 'https://ror.org/031zzq071', 'no_lang_code', 1, 'https://ror.org/031zzq071 Robert Bosch (United Kingdom)'),
(47632, 'https://ror.org/0320ccm28', 'en', 1, 'https://ror.org/0320ccm28 National Council on Rehabilitation Education'),
(47633, 'https://ror.org/0321nq926', 'en', 1, 'https://ror.org/0321nq926 Association of University Centers on Disabilities'),
(47634, 'https://ror.org/0321v8618', 'en', 1, 'https://ror.org/0321v8618 Western Australia Police'),
(47635, 'https://ror.org/03220m208', 'en', 1, 'https://ror.org/03220m208 German Informatics Society Gesellschaft für Informatik'),
(47636, 'https://ror.org/0322q1246', 'en', 1, 'https://ror.org/0322q1246 Kyushu Historical Museum ä¹å·žę­“å²č³‡ę–™é¤Ø'),
(47637, 'https://ror.org/03245q673', 'no_lang_code', 1, 'https://ror.org/03245q673 Universal Biosensors (Australia)'),
(47638, 'https://ror.org/03256ej17', 'no_lang_code', 1, 'https://ror.org/03256ej17 Energizer (United States)'),
(47639, 'https://ror.org/0328rvw59', 'no_lang_code', 1, 'https://ror.org/0328rvw59 Cryptomathic (United Kingdom)'),
(47640, 'https://ror.org/03296kr26', 'en', 1, 'https://ror.org/03296kr26 Nagasaki Women''s Junior College é•·å“Žå„³å­ēŸ­ęœŸå¤§å­¦'),
(47641, 'https://ror.org/032b04x09', 'en', 1, 'https://ror.org/032b04x09 Chalkboard Project'),
(47642, 'https://ror.org/032dbm087', 'en', 1, 'https://ror.org/032dbm087 Clinical Oncological Society of Australia'),
(47643, 'https://ror.org/032eg6t15', 'is', 1, 'https://ror.org/032eg6t15 BarnaspĆ­tali'),
(47644, 'https://ror.org/032eh0k62', 'en', 1, 'https://ror.org/032eh0k62 International Society for Influenza and other Respiratory Virus Diseases'),
(47645, 'https://ror.org/032hv5121', 'en', 1, 'https://ror.org/032hv5121 Association for the Study of Animal Behaviour'),
(47646, 'https://ror.org/032hv6w38', 'en', 1, 'https://ror.org/032hv6w38 Agricultural Research & Education Organization'),
(47647, 'https://ror.org/032jhh740', 'en', 1, 'https://ror.org/032jhh740 New Jersey Principals and Supervisors Association'),
(47648, 'https://ror.org/032khhz22', 'no_lang_code', 1, 'https://ror.org/032khhz22 Exascale (United Kingdom)'),
(47649, 'https://ror.org/032mkt145', 'en', 1, 'https://ror.org/032mkt145 Japan Securities Research Institute å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ęœ¬čØ¼åˆøēµŒęøˆē ”ē©¶ę‰€'),
(47650, 'https://ror.org/032mwpc05', 'no_lang_code', 1, 'https://ror.org/032mwpc05 Halogenated Solvents Industry Alliance (United States)'),
(47651, 'https://ror.org/032qr1v70', 'en', 1, 'https://ror.org/032qr1v70 Daejeon Institute of Science and Technology 기술 ėŒ€ģ „ ėŒ€ķ•™źµ'),
(47652, 'https://ror.org/032sjsv10', 'no_lang_code', 1, 'https://ror.org/032sjsv10 Alphacore (United States)'),
(47653, 'https://ror.org/032tjpd06', 'en', 1, 'https://ror.org/032tjpd06 Whale Center of New England'),
(47654, 'https://ror.org/032trmw54', 'en', 1, 'https://ror.org/032trmw54 Saitama Prefectural Urawa first Girls'' High School åŸ¼ēŽ‰ēœŒē«‹ęµ¦å’Œē¬¬äø€å„³å­é«˜ē­‰å­¦ę ”'),
(47655, 'https://ror.org/032wr9623', 'no_lang_code', 1, 'https://ror.org/032wr9623 Jain Irrigation Systems (Israel)'),
(47656, 'https://ror.org/032z6n124', 'en', 1, 'https://ror.org/032z6n124 Coronado Unified School District'),
(47657, 'https://ror.org/03305dv57', 'no_lang_code', 1, 'https://ror.org/03305dv57 Metrarc (United Kingdom)'),
(47658, 'https://ror.org/033069651', 'en', 1, 'https://ror.org/033069651 Economic Opportunity Institute'),
(47659, 'https://ror.org/033198s46', 'en', 1, 'https://ror.org/033198s46 Max Planck Institut für Innovation und Wettbewerb Max Planck Institute for Innovation and Competition'),
(47660, 'https://ror.org/0332cpc55', 'en', 1, 'https://ror.org/0332cpc55 Yonezawa Technical High School ē±³ę²¢å·„ę„­é«˜ē­‰å­¦ę ”'),
(47661, 'https://ror.org/0334rzs32', 'no_lang_code', 1, 'https://ror.org/0334rzs32 Eaton (Switzerland)'),
(47662, 'https://ror.org/0337vmn97', 'en', 1, 'https://ror.org/0337vmn97 Education Trust'),
(47663, 'https://ror.org/0338wbp74', 'en', 1, 'https://ror.org/0338wbp74 Small Industries Development Organisation'),
(47664, 'https://ror.org/033efjf10', 'no_lang_code', 1, 'https://ror.org/033efjf10 Stine Seed (United States)'),
(47665, 'https://ror.org/033has646', 'pt', 1, 'https://ror.org/033has646 Instituto MarƩs'),
(47666, 'https://ror.org/033hv9q38', 'en', 1, 'https://ror.org/033hv9q38 Australian Marine Sciences Association'),
(47667, 'https://ror.org/033kk6r78', 'pt', 1, 'https://ror.org/033kk6r78 Instituto Rio Grandense do Arroz'),
(47668, 'https://ror.org/033ncz059', 'en', 1, 'https://ror.org/033ncz059 Nara City Board of Education å„ˆč‰Æåø‚ę•™č‚²å§”å“”ä¼š'),
(47669, 'https://ror.org/033prtz11', 'en', 1, 'https://ror.org/033prtz11 Architectural Institute of Japan ę—„ęœ¬å»ŗēÆ‰å­¦ä¼š'),
(47670, 'https://ror.org/033qfx261', 'en', 1, 'https://ror.org/033qfx261 EADA Business School Escuela de Alta Dirección y Administración'),
(47671, 'https://ror.org/033qmpy33', 'pt', 1, 'https://ror.org/033qmpy33 Instituto Federal do PiauĆ­'),
(47672, 'https://ror.org/033s2jy46', 'no_lang_code', 1, 'https://ror.org/033s2jy46 South East Water (Australia)'),
(47673, 'https://ror.org/033sspj46', 'en', 1, 'https://ror.org/033sspj46 Kagawa University Hospital é¦™å·å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(47674, 'https://ror.org/033tqss18', 'en', 1, 'https://ror.org/033tqss18 Philatelic Museum åˆ‡ę‰‹ć®åšē‰©é¤Ø'),
(47675, 'https://ror.org/033twts82', 'en', 1, 'https://ror.org/033twts82 Otaki Castle Museum'),
(47676, 'https://ror.org/033wpmv83', 'en', 1, 'https://ror.org/033wpmv83 Water Security Agency'),
(47677, 'https://ror.org/033xpbd73', 'no_lang_code', 1, 'https://ror.org/033xpbd73 IVDiagnostics (United States)'),
(47678, 'https://ror.org/033y0yj09', 'no_lang_code', 1, 'https://ror.org/033y0yj09 Vivid Economics (United Kingdom)'),
(47679, 'https://ror.org/033y39138', 'pt', 1, 'https://ror.org/033y39138 Fundação Estadual de Pesquisa AgropecuÔria'),
(47680, 'https://ror.org/033zgjc96', 'no_lang_code', 1, 'https://ror.org/033zgjc96 Herman Miller (United Kingdom)'),
(47681, 'https://ror.org/03425vk88', 'en', 1, 'https://ror.org/03425vk88 Salesian Polytechnic ć‚µćƒ¬ć‚øć‚Ŗé«˜å°‚ 惛'),
(47682, 'https://ror.org/0342jc255', 'en', 1, 'https://ror.org/0342jc255 Volgograd Institute of Business ВолгограГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(47683, 'https://ror.org/0343mwx11', 'en', 1, 'https://ror.org/0343mwx11 Mexico International University'),
(47684, 'https://ror.org/0344ry767', 'en', 1, 'https://ror.org/0344ry767 Chelsea District Library'),
(47685, 'https://ror.org/0345bxe71', 'en', 1, 'https://ror.org/0345bxe71 Society of Critical Care Medicine'),
(47686, 'https://ror.org/0346q5236', 'fr', 1, 'https://ror.org/0346q5236 UniversitƩ Shalom de Bunia'),
(47687, 'https://ror.org/0347g4065', 'en', 1, 'https://ror.org/0347g4065 Jinhua Municipal Science and Technology Bureau é‡‘åŽåø‚ē§‘ęŠ€å±€'),
(47688, 'https://ror.org/0347t4482', 'en', 1, 'https://ror.org/0347t4482 Avery County Schools'),
(47689, 'https://ror.org/0347zf750', 'no_lang_code', 1, 'https://ror.org/0347zf750 Tamashima Hospital å…¬ē›Šč²”å›£ę³•äŗŗ 弘仁会 ēŽ‰å³¶ē—…é™¢'),
(47690, 'https://ror.org/0348bpw87', 'no_lang_code', 1, 'https://ror.org/0348bpw87 STMicroelectronics (China)'),
(47691, 'https://ror.org/0348j9j37', 'en', 1, 'https://ror.org/0348j9j37 Association for Research on Nonprofit Organizations and Voluntary Action'),
(47692, 'https://ror.org/0349bdx32', 'pt', 1, 'https://ror.org/0349bdx32 Fundação Instituto de Pesca do Estado do Rio de Janeiro'),
(47693, 'https://ror.org/034afnt37', 'en', 1, 'https://ror.org/034afnt37 OspidƩal Mhuire Our Lady''s Hospital'),
(47694, 'https://ror.org/034batm51', 'en', 1, 'https://ror.org/034batm51 Nevus Outreach'),
(47695, 'https://ror.org/034ca4k86', 'no_lang_code', 1, 'https://ror.org/034ca4k86 Johnson & Johnson (Australia)'),
(47696, 'https://ror.org/034d9x869', 'en', 1, 'https://ror.org/034d9x869 Jintan People''s Hospital é‡‘å›åø‚äŗŗę°‘åŒ»é™¢'),
(47697, 'https://ror.org/034ee3t09', 'en', 1, 'https://ror.org/034ee3t09 Synergy University Dubai Ų¬Ų§Ł…Ų¹Ų© التآزر'),
(47698, 'https://ror.org/034epx078', 'no_lang_code', 1, 'https://ror.org/034epx078 Abengoa Bioenergy (United States)'),
(47699, 'https://ror.org/034f1bj67', 'en', 1, 'https://ror.org/034f1bj67 Shizuoka Prefectural Kakegawanishi High School é™å²”ēœŒē«‹ęŽ›å·č„æé«˜ē­‰å­¦ę ”'),
(47700, 'https://ror.org/034gcct62', 'no_lang_code', 1, 'https://ror.org/034gcct62 E-Motors Consulting (United States)'),
(47701, 'https://ror.org/034gz9s88', 'no_lang_code', 1, 'https://ror.org/034gz9s88 J&J Solutions (United States)'),
(47702, 'https://ror.org/034k5be35', 'en', 1, 'https://ror.org/034k5be35 Provata Health'),
(47703, 'https://ror.org/034k6e791', 'ja', 1, 'https://ror.org/034k6e791 Hakodate Shirayuri Gakuen, å‡½é¤Øē™½ē™¾åˆå­¦åœ’äø­å­¦é«˜ē­‰å­¦ę ”'),
(47704, 'https://ror.org/034r3x204', 'en', 1, 'https://ror.org/034r3x204 Pearl Science Laboratory ēœŸē ē§‘å­¦ē ”ē©¶ę‰€'),
(47705, 'https://ror.org/034rmsp96', 'no_lang_code', 1, 'https://ror.org/034rmsp96 High Precision Devices (United States)'),
(47706, 'https://ror.org/034s8ev31', 'es', 1, 'https://ror.org/034s8ev31 Instituto de Investigaciones en Ciencia y TecnologĆ­a de Materiales'),
(47707, 'https://ror.org/034vkhg42', 'no_lang_code', 1, 'https://ror.org/034vkhg42 Nonagen Bioscience (United States)'),
(47708, 'https://ror.org/034x19584', 'en', 1, 'https://ror.org/034x19584 Tokyo Metropolitan School Personnel in Service Training Center ę±äŗ¬éƒ½ę•™č·å“”ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(47709, 'https://ror.org/034x48g49', 'no_lang_code', 1, 'https://ror.org/034x48g49 Perrigo (Israel)'),
(47710, 'https://ror.org/034xz1x91', 'en', 1, 'https://ror.org/034xz1x91 Okayama Prefectural Mizushima Technical High School å²”å±±ēœŒē«‹ę°“å³¶å·„ę„­é«˜ē­‰å­¦ę ”'),
(47711, 'https://ror.org/034ywkx67', 'en', 1, 'https://ror.org/034ywkx67 DigiLearn Digital Learning Institute'),
(47712, 'https://ror.org/034zsq795', 'no_lang_code', 1, 'https://ror.org/034zsq795 Magna International (United States)'),
(47713, 'https://ror.org/0351nrb64', 'en', 1, 'https://ror.org/0351nrb64 Grameen Foundation'),
(47714, 'https://ror.org/0351th250', 'en', 1, 'https://ror.org/0351th250 Danish Lung Association Lungeforening'),
(47715, 'https://ror.org/0351wfv37', 'en', 1, 'https://ror.org/0351wfv37 Association of Charitable Foundations'),
(47716, 'https://ror.org/0353y3c48', 'en', 1, 'https://ror.org/0353y3c48 Kyoto Institute of Culture and Language äŗ¬éƒ½ę–‡åŒ–ę—„ęœ¬čŖžå­¦ę ”'),
(47717, 'https://ror.org/0354d3c43', 'no_lang_code', 1, 'https://ror.org/0354d3c43 Medomics (United States)'),
(47718, 'https://ror.org/0354gw976', 'en', 1, 'https://ror.org/0354gw976 Osaka Prefecture Hannan Visual Support School å¤§é˜Ŗåŗœē«‹å¤§é˜Ŗå—č¦–č¦šę”Æę“å­¦ę ”'),
(47719, 'https://ror.org/0354jg349', 'en', 1, 'https://ror.org/0354jg349 Collective Leadership Institute'),
(47720, 'https://ror.org/0355p2e87', 'no_lang_code', 1, 'https://ror.org/0355p2e87 Agilent Technologies (Germany)'),
(47721, 'https://ror.org/035739v40', 'no_lang_code', 1, 'https://ror.org/035739v40 Chiba Keiai Junior College åƒč‘‰ę•¬ę„›ēŸ­ęœŸå¤§å­¦'),
(47722, 'https://ror.org/0358jb366', 'en', 1, 'https://ror.org/0358jb366 Nara Saho College å„ˆč‰Æä½äæēŸ­ęœŸå¤§å­¦'),
(47723, 'https://ror.org/0359zqq03', 'en', 1, 'https://ror.org/0359zqq03 Osaka Prefectural Toyonaka Support School å¤§é˜Ŗåŗœē«‹č±Šäø­ę”Æę“å­¦ę ”'),
(47724, 'https://ror.org/035b4az83', 'no_lang_code', 1, 'https://ror.org/035b4az83 Imagineering (Japan) ć‚¤ćƒžć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(47725, 'https://ror.org/035ect513', 'en', 1, 'https://ror.org/035ect513 Miami Heart Research Institute'),
(47726, 'https://ror.org/035fxx726', 'no_lang_code', 1, 'https://ror.org/035fxx726 Nidec (United Kingdom)'),
(47727, 'https://ror.org/035m9ft70', 'en', 1, 'https://ror.org/035m9ft70 Heart Rhythm Society'),
(47728, 'https://ror.org/035mcxx74', 'en', 1, 'https://ror.org/035mcxx74 Kungl. Vetenskaps- och Vitterhets-samhƤllet i Gƶteborg Royal Society of Sciences and Letters in Gothenburg'),
(47729, 'https://ror.org/035t0dt07', 'no_lang_code', 1, 'https://ror.org/035t0dt07 TDK (Singapore)'),
(47730, 'https://ror.org/035v0k921', 'en', 1, 'https://ror.org/035v0k921 Hemalata Hospitals and Research Centre'),
(47731, 'https://ror.org/035va9t86', 'no_lang_code', 1, 'https://ror.org/035va9t86 Epiphany Biosciences (United States)'),
(47732, 'https://ror.org/035vbre72', 'no_lang_code', 1, 'https://ror.org/035vbre72 Western Digital (China)'),
(47733, 'https://ror.org/035vnjr65', 'no_lang_code', 1, 'https://ror.org/035vnjr65 Toshiba (Germany)'),
(47734, 'https://ror.org/035xg4847', 'no_lang_code', 1, 'https://ror.org/035xg4847 Centrum Průmyslového Výzkumu Techlab (Czechia)'),
(47735, 'https://ror.org/035xgy388', 'no_lang_code', 1, 'https://ror.org/035xgy388 dPoint Technologies (Canada)'),
(47736, 'https://ror.org/0362f6990', 'en', 1, 'https://ror.org/0362f6990 Gifu International Academy of Horticulture å²é˜œēœŒē«‹å›½éš›åœ’čŠøć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(47737, 'https://ror.org/03646q924', 'en', 1, 'https://ror.org/03646q924 The Ohio State University at Marion'),
(47738, 'https://ror.org/0364wpq06', 'en', 1, 'https://ror.org/0364wpq06 Gordon College'),
(47739, 'https://ror.org/0364yac91', 'no_lang_code', 1, 'https://ror.org/0364yac91 Tagworks Pharmaceuticals (Netherlands)'),
(47740, 'https://ror.org/03656je58', 'en', 1, 'https://ror.org/03656je58 St. Augustine International University'),
(47741, 'https://ror.org/0366k5v88', 'pt', 1, 'https://ror.org/0366k5v88 Instituto de Tecnologia de Pernambuco'),
(47742, 'https://ror.org/0366tzh77', 'no_lang_code', 1, 'https://ror.org/0366tzh77 Biolitec (Malaysia)'),
(47743, 'https://ror.org/0369xz580', 'no_lang_code', 1, 'https://ror.org/0369xz580 Amfissa General Hospital Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ''Ī‘Ī¼Ļ†Ī¹ĻƒĻƒĪ±Ļ‚'),
(47744, 'https://ror.org/036b9em68', 'no_lang_code', 1, 'https://ror.org/036b9em68 Sonitu Pharmaceuticals (United States)'),
(47745, 'https://ror.org/036bgh355', 'en', 1, 'https://ror.org/036bgh355 Yuma Elementary School District'),
(47746, 'https://ror.org/036dq0x98', 'no_lang_code', 1, 'https://ror.org/036dq0x98 Perkinelmer (Singapore)'),
(47747, 'https://ror.org/036eyqz05', 'en', 1, 'https://ror.org/036eyqz05 Islamic Hospital المستؓفى Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(47748, 'https://ror.org/036fkkq18', 'en', 1, 'https://ror.org/036fkkq18 Fortune Institute of Technology å’Œę˜„ęŠ€č”“å­øé™¢'),
(47749, 'https://ror.org/036j6hv41', 'en', 1, 'https://ror.org/036j6hv41 Mexican Geological Survey Servicio Geológico Mexicano'),
(47750, 'https://ror.org/036jhjy94', 'en', 1, 'https://ror.org/036jhjy94 Australasian Speech Science and Technology Association'),
(47751, 'https://ror.org/036k4ae63', 'en', 1, 'https://ror.org/036k4ae63 Joan Ganz Cooney Center');
INSERT INTO `rors` VALUES
(47752, 'https://ror.org/036kf9x78', 'no_lang_code', 1, 'https://ror.org/036kf9x78 Yazaki (Australia)'),
(47753, 'https://ror.org/036krca38', 'no_lang_code', 1, 'https://ror.org/036krca38 Kubota (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æćƒœć‚æ'),
(47754, 'https://ror.org/036metx20', 'en', 1, 'https://ror.org/036metx20 Chinese People''s Armed Police General Hospital ę­¦č­¦ę€»åŒ»é™¢'),
(47755, 'https://ror.org/036n40n43', 'en', 1, 'https://ror.org/036n40n43 American Society of Naval Engineers'),
(47756, 'https://ror.org/036rr6h87', 'en', 1, 'https://ror.org/036rr6h87 Saudi Chemical Society Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„ŁƒŁŠŁ…ŁŠŲ§Ų¦ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ©'),
(47757, 'https://ror.org/036tb1y26', 'no_lang_code', 1, 'https://ror.org/036tb1y26 NanoAl (United States)'),
(47758, 'https://ror.org/036vbw294', 'no_lang_code', 1, 'https://ror.org/036vbw294 CarbonCure Technologies (Canada)'),
(47759, 'https://ror.org/036vg8r71', 'en', 1, 'https://ror.org/036vg8r71 Colorado Cancer Research Program'),
(47760, 'https://ror.org/036vt3264', 'en', 1, 'https://ror.org/036vt3264 Railway Technical Research Institute é‰„é“ē·åˆęŠ€č”“ē ”ē©¶ę‰€'),
(47761, 'https://ror.org/036z8q506', 'pt', 1, 'https://ror.org/036z8q506 Sociedade Brasileira de Ensino de Biologia'),
(47762, 'https://ror.org/037024349', 'en', 1, 'https://ror.org/037024349 Stand for Children'),
(47763, 'https://ror.org/0370d1z23', 'no_lang_code', 1, 'https://ror.org/0370d1z23 Toyoda Gosei (Japan) č±Šē”°åˆęˆ'),
(47764, 'https://ror.org/0371bqv47', 'en', 1, 'https://ror.org/0371bqv47 Institute of Glass Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стекла'),
(47765, 'https://ror.org/0371nm930', 'no_lang_code', 1, 'https://ror.org/0371nm930 Muse Research and Development (United States)'),
(47766, 'https://ror.org/0375k5p31', 'en', 1, 'https://ror.org/0375k5p31 Mizunami Fossil Museum ē‘žęµŖåø‚åŒ–ēŸ³åšē‰©é¤Ø'),
(47767, 'https://ror.org/03779e961', 'no_lang_code', 1, 'https://ror.org/03779e961 Promethean Particles (United Kingdom)'),
(47768, 'https://ror.org/0377f6951', 'en', 1, 'https://ror.org/0377f6951 Foundation Center'),
(47769, 'https://ror.org/0379ygx07', 'no_lang_code', 1, 'https://ror.org/0379ygx07 Bio-Rad (Canada)'),
(47770, 'https://ror.org/037ar5g91', 'en', 1, 'https://ror.org/037ar5g91 American Cleft Palate-Craniofacial Association'),
(47771, 'https://ror.org/037bvk594', 'en', 1, 'https://ror.org/037bvk594 Yonezawa Women''s Junior College å±±å½¢ēœŒē«‹ē±³ę²¢å„³å­ēŸ­ęœŸå¤§å­¦'),
(47772, 'https://ror.org/037bvs115', 'no_lang_code', 1, 'https://ror.org/037bvs115 Celula (United States)'),
(47773, 'https://ror.org/037d89s09', 'no_lang_code', 1, 'https://ror.org/037d89s09 Precision Nanosystems (Canada)'),
(47774, 'https://ror.org/037ddaj94', 'no_lang_code', 1, 'https://ror.org/037ddaj94 Los Alamos National Security (United States)'),
(47775, 'https://ror.org/037dejx04', 'no_lang_code', 1, 'https://ror.org/037dejx04 Chiesi (United States)'),
(47776, 'https://ror.org/037dn9q43', 'de', 1, 'https://ror.org/037dn9q43 Deutsche Gesellschaft für Urologie'),
(47777, 'https://ror.org/037fqd482', 'no_lang_code', 1, 'https://ror.org/037fqd482 Danaher (Australia)'),
(47778, 'https://ror.org/037hta489', 'en', 1, 'https://ror.org/037hta489 Deutsche Bank'),
(47779, 'https://ror.org/037kbz526', 'en', 1, 'https://ror.org/037kbz526 National Institute of Technology, Oshima College å¤§å³¶å•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(47780, 'https://ror.org/037kffm93', 'no_lang_code', 1, 'https://ror.org/037kffm93 IDP IngenierĆ­a y Arquitectura Iberia (Spain)'),
(47781, 'https://ror.org/037mzh527', 'no_lang_code', 1, 'https://ror.org/037mzh527 Coloplast (United States)'),
(47782, 'https://ror.org/037nf4x66', 'en', 1, 'https://ror.org/037nf4x66 Tokushima College of Technology 徳島巄愭短期大学'),
(47783, 'https://ror.org/037ngs497', 'no_lang_code', 1, 'https://ror.org/037ngs497 Schauenburg (Germany)'),
(47784, 'https://ror.org/037pq2a43', 'de', 1, 'https://ror.org/037pq2a43 Klinikum Dortmund'),
(47785, 'https://ror.org/037q1ds38', 'en', 1, 'https://ror.org/037q1ds38 Fukushima Prefecture History Museum ē¦å³¶ēœŒę­“å²č³‡ę–™é¤ØćÆ'),
(47786, 'https://ror.org/037qwc103', 'no_lang_code', 1, 'https://ror.org/037qwc103 Yaskawa Electric (Japan) å®‰å·é›»ę©Ÿ'),
(47787, 'https://ror.org/037rrfx42', 'en', 1, 'https://ror.org/037rrfx42 Osaka Prefectural Board of Education å¤§é˜Ŗåŗœę•™č‚²å§”å“”ä¼š'),
(47788, 'https://ror.org/037tkh273', 'de', 1, 'https://ror.org/037tkh273 Universitätsklinik für Hals-, Nasen- und Ohrenheilkunde'),
(47789, 'https://ror.org/037v0vj63', 'no_lang_code', 1, 'https://ror.org/037v0vj63 Coulometrics (United States)'),
(47790, 'https://ror.org/037w0z757', 'es', 1, 'https://ror.org/037w0z757 Empresa Municipal de la Vivienda y Suelo de Madrid'),
(47791, 'https://ror.org/037y5er63', 'no_lang_code', 1, 'https://ror.org/037y5er63 Ashima (Taiwan)'),
(47792, 'https://ror.org/03819cc96', 'no_lang_code', 1, 'https://ror.org/03819cc96 Microsoft (Israel)'),
(47793, 'https://ror.org/038231w93', 'en', 1, 'https://ror.org/038231w93 Stanground Academy'),
(47794, 'https://ror.org/0382x3a11', 'no_lang_code', 1, 'https://ror.org/0382x3a11 Shiretoko Museum ę–œé‡Œē”ŗē«‹ēŸ„åŗŠåšē‰©é¤Ø'),
(47795, 'https://ror.org/03880e418', 'no_lang_code', 1, 'https://ror.org/03880e418 Aadi (United States)'),
(47796, 'https://ror.org/03888v687', 'pt', 1, 'https://ror.org/03888v687 Governo do ParĆ”'),
(47797, 'https://ror.org/038a0a037', 'en', 1, 'https://ror.org/038a0a037 Comprehensive Oncological Center – Veliko Turnovo Комплексен онкологичен Ń†ŠµŠ½Ń‚ŃŠŃ€ – Велико Š¢ŃŠŃ€Š½Š¾Š²Š¾'),
(47798, 'https://ror.org/038ajj330', 'no_lang_code', 1, 'https://ror.org/038ajj330 TechnipFMC (United Kingdom)'),
(47799, 'https://ror.org/038b1qn73', 'no_lang_code', 1, 'https://ror.org/038b1qn73 Hyundai Mobis (South Korea) ķ˜„ėŒ€ėŖØė¹„ģŠ¤ ģ£¼ģ‹ķšŒģ‚¬'),
(47800, 'https://ror.org/038b5pt88', 'pt', 1, 'https://ror.org/038b5pt88 Instituto Superior PolitƩcnico Metropolitano de Angola'),
(47801, 'https://ror.org/038bzrc91', 'en', 1, 'https://ror.org/038bzrc91 Fraunhofer Austria'),
(47802, 'https://ror.org/038dfxb83', 'en', 1, 'https://ror.org/038dfxb83 Traditional Chinese Medicine Hospital of Kunshan'),
(47803, 'https://ror.org/038dg9e86', 'en', 1, 'https://ror.org/038dg9e86 Hiroshima University Hospital åŗƒå³¶å¤§å­¦ē—…é™¢'),
(47804, 'https://ror.org/038ey9s70', 'no_lang_code', 1, 'https://ror.org/038ey9s70 Imam Reza Hospital'),
(47805, 'https://ror.org/038fg0e88', 'es', 1, 'https://ror.org/038fg0e88 Centro Universitario Didaskalos'),
(47806, 'https://ror.org/038gjp852', 'no_lang_code', 1, 'https://ror.org/038gjp852 Univera (United States)'),
(47807, 'https://ror.org/038h4pp04', 'no_lang_code', 1, 'https://ror.org/038h4pp04 Thermal Gradient (United States)'),
(47808, 'https://ror.org/038hdcm94', 'en', 1, 'https://ror.org/038hdcm94 Australian Dental Association'),
(47809, 'https://ror.org/038htga59', 'en', 1, 'https://ror.org/038htga59 Australian Psychological Society'),
(47810, 'https://ror.org/038jhf436', 'no_lang_code', 1, 'https://ror.org/038jhf436 Rivis (United States)'),
(47811, 'https://ror.org/038km2573', 'no_lang_code', 1, 'https://ror.org/038km2573 Nokia (United States)'),
(47812, 'https://ror.org/038n8fg68', 'en', 1, 'https://ror.org/038n8fg68 Bule Hora University'),
(47813, 'https://ror.org/038p3gq39', 'no_lang_code', 1, 'https://ror.org/038p3gq39 Yahoo (United Kingdom)'),
(47814, 'https://ror.org/038q1v497', 'en', 1, 'https://ror.org/038q1v497 Management Education & Research Consortium'),
(47815, 'https://ror.org/038rjke75', 'no_lang_code', 1, 'https://ror.org/038rjke75 Athletigen (Canada)'),
(47816, 'https://ror.org/038scr081', 'no_lang_code', 1, 'https://ror.org/038scr081 Nifco (China)'),
(47817, 'https://ror.org/038t6jw47', 'en', 1, 'https://ror.org/038t6jw47 Association Canadienne des Ɖtudes Asiatiques Canadian Asian Studies Association'),
(47818, 'https://ror.org/038vb6915', 'en', 1, 'https://ror.org/038vb6915 Kyoto National Museum äŗ¬éƒ½å›½ē«‹åšē‰©é¤Ø'),
(47819, 'https://ror.org/03941w909', 'de', 1, 'https://ror.org/03941w909 Zentrum für Kinderheilkunde'),
(47820, 'https://ror.org/0394aqe83', 'en', 1, 'https://ror.org/0394aqe83 KES International'),
(47821, 'https://ror.org/0394z0v14', 'en', 1, 'https://ror.org/0394z0v14 Harborview Injury Prevention and Research Center'),
(47822, 'https://ror.org/039573m03', 'sv', 1, 'https://ror.org/039573m03 ParkinsonFƶrbundet'),
(47823, 'https://ror.org/0395cmt65', 'en', 1, 'https://ror.org/0395cmt65 Library System of Lancaster County'),
(47824, 'https://ror.org/03967py46', 'no_lang_code', 1, 'https://ror.org/03967py46 Prysmian Group (Germany)'),
(47825, 'https://ror.org/0398s5e82', 'no_lang_code', 1, 'https://ror.org/0398s5e82 Skeleton Technologies (Estonia)'),
(47826, 'https://ror.org/039c24767', 'en', 1, 'https://ror.org/039c24767 International Confederation of Midwives'),
(47827, 'https://ror.org/039chvj52', 'no_lang_code', 1, 'https://ror.org/039chvj52 Ardent Sound (United States)'),
(47828, 'https://ror.org/039f8sh24', 'en', 1, 'https://ror.org/039f8sh24 Central Office of Measures Główny Urząd Miar'),
(47829, 'https://ror.org/039hky346', 'en', 1, 'https://ror.org/039hky346 Asian University for Women Support Foundation'),
(47830, 'https://ror.org/039hpv827', 'en', 1, 'https://ror.org/039hpv827 Institute of Forest Science Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š»ŠµŃŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(47831, 'https://ror.org/039jbwk85', 'en', 1, 'https://ror.org/039jbwk85 Ibaraki Prefecture Education Training Center čŒØåŸŽēœŒę•™č‚²ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(47832, 'https://ror.org/039qfhr69', 'no_lang_code', 1, 'https://ror.org/039qfhr69 Polaroid (United States)'),
(47833, 'https://ror.org/039rxdt76', 'en', 1, 'https://ror.org/039rxdt76 Institut de Recherche sur l''Asie du Sud-Est Contemporaine Research Institute on Contemporary Southeast Asia'),
(47834, 'https://ror.org/039snsq89', 'no_lang_code', 1, 'https://ror.org/039snsq89 Chi Mei Communication Systems (Taiwan) å„‡ē¾Žé€ščØŠ'),
(47835, 'https://ror.org/039sp3459', 'en', 1, 'https://ror.org/039sp3459 Yamaguchi Junior College å±±å£ēŸ­ęœŸå¤§å­¦'),
(47836, 'https://ror.org/039t7ab07', 'no_lang_code', 1, 'https://ror.org/039t7ab07 Frequentis (Germany)'),
(47837, 'https://ror.org/039t7kh95', 'id', 1, 'https://ror.org/039t7kh95 Universitas Victory Sorong'),
(47838, 'https://ror.org/039tmw183', 'en', 1, 'https://ror.org/039tmw183 State Library of Kansas'),
(47839, 'https://ror.org/039tpj237', 'en', 1, 'https://ror.org/039tpj237 ACT Herpetological Association'),
(47840, 'https://ror.org/039twjn75', 'no_lang_code', 1, 'https://ror.org/039twjn75 WaterNet Trust'),
(47841, 'https://ror.org/039v0g264', 'de', 1, 'https://ror.org/039v0g264 Zentrum für Psychotherapie Wiesbaden'),
(47842, 'https://ror.org/039wcgm60', 'pt', 1, 'https://ror.org/039wcgm60 Prefeitura Municipal de Anapolis'),
(47843, 'https://ror.org/03a08y513', 'no_lang_code', 1, 'https://ror.org/03a08y513 Fio Corporation (Canada)'),
(47844, 'https://ror.org/03a10hv23', 'no_lang_code', 1, 'https://ror.org/03a10hv23 Nvigen (United States)'),
(47845, 'https://ror.org/03a3w5708', 'no_lang_code', 1, 'https://ror.org/03a3w5708 Freestone Environmental Services (United States)'),
(47846, 'https://ror.org/03a4te222', 'en', 1, 'https://ror.org/03a4te222 British Society for Middle Eastern Studies'),
(47847, 'https://ror.org/03a5vm896', 'en', 1, 'https://ror.org/03a5vm896 All-Russia Thermal Engineering Institute Всероссийский Теплотехнический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(47848, 'https://ror.org/03a6v9745', 'en', 1, 'https://ror.org/03a6v9745 Ichikawa City Rehabilitation Hospital åø‚å·åø‚ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(47849, 'https://ror.org/03a6vay74', 'en', 1, 'https://ror.org/03a6vay74 Japan Graduate School of Education University ę—„ęœ¬ę•™č‚²å¤§å­¦é™¢å¤§å­¦'),
(47850, 'https://ror.org/03a8g0p38', 'en', 1, 'https://ror.org/03a8g0p38 Hangzhou Hospital of Traditional Chinese Medicine'),
(47851, 'https://ror.org/03abgds10', 'en', 1, 'https://ror.org/03abgds10 Administrative Sciences Association of Canada, Association des sciences administratives du Canada'),
(47852, 'https://ror.org/03acb7p04', 'no_lang_code', 1, 'https://ror.org/03acb7p04 Delta Electronics (Taiwan) 达电子'),
(47853, 'https://ror.org/03ae5ty12', 'en', 1, 'https://ror.org/03ae5ty12 Inner Mongolia Institute of Hydraulic Research å†…č’™å¤č‡Ŗę²»åŒŗę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(47854, 'https://ror.org/03aefdx31', 'en', 1, 'https://ror.org/03aefdx31 Beijing Institute of Education åŒ—äŗ¬ę•™č‚²å­¦é™¢'),
(47855, 'https://ror.org/03aervg81', 'de', 1, 'https://ror.org/03aervg81 Klinik für Psychosomatik'),
(47856, 'https://ror.org/03aewyp97', 'en', 1, 'https://ror.org/03aewyp97 Association of Danish Physiotherapists Danske Fysioterapeuter'),
(47857, 'https://ror.org/03afety63', 'no_lang_code', 1, 'https://ror.org/03afety63 Neurio Technology (Canada)'),
(47858, 'https://ror.org/03afg5j45', 'no_lang_code', 1, 'https://ror.org/03afg5j45 Kalinga University'),
(47859, 'https://ror.org/03ag1d748', 'en', 1, 'https://ror.org/03ag1d748 FƩdƩration Internationale de GynƩcologie et d''ObstƩtrique International Federation of Gynaecology and Obstetrics'),
(47860, 'https://ror.org/03ag30k63', 'en', 1, 'https://ror.org/03ag30k63 Fukuoka City Archaeological Center ē¦å²”åø‚åŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(47861, 'https://ror.org/03agmyp46', 'pt', 1, 'https://ror.org/03agmyp46 Instituto Federal de Educação, Ciência e Tecnologia do AmapÔ, Instituto Federal do AmapÔ'),
(47862, 'https://ror.org/03ajfdb10', 'no_lang_code', 1, 'https://ror.org/03ajfdb10 Meyer Burger Technology (Germany)'),
(47863, 'https://ror.org/03ajjdx52', 'no_lang_code', 1, 'https://ror.org/03ajjdx52 ASM International (Belgium)'),
(47864, 'https://ror.org/03akq4247', 'no_lang_code', 1, 'https://ror.org/03akq4247 Dassault SystĆØmes (United Kingdom)'),
(47865, 'https://ror.org/03am9qa36', 'no_lang_code', 1, 'https://ror.org/03am9qa36 American Ecotech (United States)'),
(47866, 'https://ror.org/03amcs261', 'no_lang_code', 1, 'https://ror.org/03amcs261 Qorvo (United States)'),
(47867, 'https://ror.org/03amme506', 'no_lang_code', 1, 'https://ror.org/03amme506 Kohler (China) ē§‘å‹’'),
(47868, 'https://ror.org/03aq6c412', 'en', 1, 'https://ror.org/03aq6c412 Australian Association for Academic Primary Care'),
(47869, 'https://ror.org/03argrj65', 'en', 1, 'https://ror.org/03argrj65 Royal Dublin Society'),
(47870, 'https://ror.org/03as2w117', 'en', 1, 'https://ror.org/03as2w117 Columbia St. Mary''s Hospital'),
(47871, 'https://ror.org/03asafg21', 'en', 1, 'https://ror.org/03asafg21 Summer Advantage USA'),
(47872, 'https://ror.org/03asas176', 'es', 1, 'https://ror.org/03asas176 Universidad Regional Miguel Hidalgo'),
(47873, 'https://ror.org/03asesc74', 'en', 1, 'https://ror.org/03asesc74 International Association of Engineers'),
(47874, 'https://ror.org/03atav620', 'en', 1, 'https://ror.org/03atav620 Canadian Association of University Teachers'),
(47875, 'https://ror.org/03av5bg62', 'en', 1, 'https://ror.org/03av5bg62 Sunrise University'),
(47876, 'https://ror.org/03awvgn34', 'en', 1, 'https://ror.org/03awvgn34 Society for Endocrinology, Metabolism and Diabetes of South Africa'),
(47877, 'https://ror.org/03axjke18', 'en', 1, 'https://ror.org/03axjke18 Fondazione per la ricerca e la cura dei linfomi Foundation for the Research and Cure of Lymphoma in Ticino'),
(47878, 'https://ror.org/03ayjfd71', 'en', 1, 'https://ror.org/03ayjfd71 Marie Curie Hospice'),
(47879, 'https://ror.org/03azq1a86', 'en', 1, 'https://ror.org/03azq1a86 Mie prefectural Matsusaka Technical High School äø‰é‡ēœŒē«‹ę¾é˜Ŗå·„ę„­é«˜ē­‰å­¦ę ”'),
(47880, 'https://ror.org/03azxbd85', 'en', 1, 'https://ror.org/03azxbd85 Kyushu Ryukoku Junior College ä¹å·žé¾č°·ēŸ­ęœŸå¤§å­¦'),
(47881, 'https://ror.org/03b00jm70', 'en', 1, 'https://ror.org/03b00jm70 Fukuoka Prefectural Kokura High School ē¦å²”ēœŒē«‹å°å€‰é«˜ē­‰å­¦ę ”'),
(47882, 'https://ror.org/03b14n703', 'en', 1, 'https://ror.org/03b14n703 Cascade Mental Healthcare'),
(47883, 'https://ror.org/03b1cg663', 'en', 1, 'https://ror.org/03b1cg663 National Mapping and Resource Information Authority Pambansang Pangasiwaan sa Pagmamapa at Impormasyon sa Yaman'),
(47884, 'https://ror.org/03b1v3160', 'en', 1, 'https://ror.org/03b1v3160 Zavaritsky Institute of Geology and Geochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° геологии Šø геохимии им. акаГемика А.Š. Заварицкого'),
(47885, 'https://ror.org/03b209z39', 'pt', 1, 'https://ror.org/03b209z39 Instituto Brasileiro de Museus'),
(47886, 'https://ror.org/03b242h08', 'en', 1, 'https://ror.org/03b242h08 Library Foundation of Los Angeles'),
(47887, 'https://ror.org/03b2q2q16', 'en', 1, 'https://ror.org/03b2q2q16 Memorial ŠžŠ±Ń‰ŠµŃŃ‚Š²Š¾ ŠœŠµŠ¼Š¾Ń€ŠøŠ°Š»'),
(47888, 'https://ror.org/03b44vb62', 'en', 1, 'https://ror.org/03b44vb62 Regional Studies Association'),
(47889, 'https://ror.org/03b6kz105', 'en', 1, 'https://ror.org/03b6kz105 Integrative Medicine Institute'),
(47890, 'https://ror.org/03b9b5x92', 'en', 1, 'https://ror.org/03b9b5x92 Foundation Wakasa Wan Energy Research Center å…¬ē›Šč²”å›£ę³•äŗŗ č‹„ē‹­ę¹¾ć‚Øćƒćƒ«ć‚®ćƒ¼ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(47891, 'https://ror.org/03bexps94', 'es', 1, 'https://ror.org/03bexps94 Universidad Pedagógica de Durango'),
(47892, 'https://ror.org/03bf0mp03', 'en', 1, 'https://ror.org/03bf0mp03 Kitakyushu Museum of Natural History and Human History åŒ—ä¹å·žåø‚ē«‹ć„ć®ć”ć®ćŸć³åšē‰©é¤Ø[č‡Ŗē„¶å²ćƒ»ę­“å²åšē‰©é¤Ø'),
(47893, 'https://ror.org/03bfapt22', 'no_lang_code', 1, 'https://ror.org/03bfapt22 International Game Technology (United Kingdom)'),
(47894, 'https://ror.org/03bfwzz10', 'no_lang_code', 1, 'https://ror.org/03bfwzz10 Gavin and Doherty Geosolutions (Ireland)'),
(47895, 'https://ror.org/03bks0n32', 'en', 1, 'https://ror.org/03bks0n32 Greater Austin Hispanic Chamber of Commerce'),
(47896, 'https://ror.org/03bm3h723', 'no_lang_code', 1, 'https://ror.org/03bm3h723 Bristol Laboratories (United Kingdom)'),
(47897, 'https://ror.org/03bm7y961', 'en', 1, 'https://ror.org/03bm7y961 Association of Medical Research Charities'),
(47898, 'https://ror.org/03bm9hd03', 'en', 1, 'https://ror.org/03bm9hd03 Global Burn Care and Reconstructive Institute'),
(47899, 'https://ror.org/03bmyaj71', 'en', 1, 'https://ror.org/03bmyaj71 Japan Transport Research Institute äø€čˆ¬č²”å›£ę³•äŗŗ é‹č¼øē·åˆē ”ē©¶ę‰€'),
(47900, 'https://ror.org/03bpsvx03', 'en', 1, 'https://ror.org/03bpsvx03 Institute of Forest Genetics and Tree Breeding'),
(47901, 'https://ror.org/03bpwzr21', 'no_lang_code', 1, 'https://ror.org/03bpwzr21 Valley Partnership (United States)'),
(47902, 'https://ror.org/03bq9hz14', 'no_lang_code', 1, 'https://ror.org/03bq9hz14 Federal Mogul (Germany)'),
(47903, 'https://ror.org/03brafa64', 'no_lang_code', 1, 'https://ror.org/03brafa64 Solid (South Korea) ģ£¼ģ‹ķšŒģ‚¬ ģ ė¦¬ķ…Œķ¬ 설립'),
(47904, 'https://ror.org/03btcby75', 'en', 1, 'https://ror.org/03btcby75 Hokkaido Board of Education åŒ—ęµ·é“ę•™č‚²å§”å“”ä¼š'),
(47905, 'https://ror.org/03bvw9k90', 'no_lang_code', 1, 'https://ror.org/03bvw9k90 Autoliv (Germany)'),
(47906, 'https://ror.org/03bvwa633', 'en', 1, 'https://ror.org/03bvwa633 Ibaraki National College of Technology čŒØåŸŽå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(47907, 'https://ror.org/03bwmrt76', 'no_lang_code', 1, 'https://ror.org/03bwmrt76 Nemaska Lithium (Canada)'),
(47908, 'https://ror.org/03bxq3a59', 'no_lang_code', 1, 'https://ror.org/03bxq3a59 Semiconductor Manufacturing International (Italy)'),
(47909, 'https://ror.org/03c39qe40', 'en', 1, 'https://ror.org/03c39qe40 Canadian Astronomical Society SociĆ©tĆ© Canadienne d’Astronomie'),
(47910, 'https://ror.org/03c50g186', 'en', 1, 'https://ror.org/03c50g186 Linyi City Chinese Medicine Hospital'),
(47911, 'https://ror.org/03c8pv287', 'es', 1, 'https://ror.org/03c8pv287 Centro Cultural Universitario de Ciudad Juarez'),
(47912, 'https://ror.org/03cb8f280', 'no_lang_code', 1, 'https://ror.org/03cb8f280 Philips (Israel)'),
(47913, 'https://ror.org/03cbf2j49', 'no_lang_code', 1, 'https://ror.org/03cbf2j49 Danfoss (Germany)'),
(47914, 'https://ror.org/03cbkmv71', 'no_lang_code', 1, 'https://ror.org/03cbkmv71 TDK-EPC (Germany)'),
(47915, 'https://ror.org/03ceqgg02', 'no_lang_code', 1, 'https://ror.org/03ceqgg02 Agfa-Gevaert (United States)'),
(47916, 'https://ror.org/03cg5ap92', 'en', 1, 'https://ror.org/03cg5ap92 Luoyang Central Hospital Affiliated to Zhengzhou University'),
(47917, 'https://ror.org/03ck0bq92', 'en', 1, 'https://ror.org/03ck0bq92 AIDS Vaccine Advocacy Coalition'),
(47918, 'https://ror.org/03ckxvj81', 'no_lang_code', 1, 'https://ror.org/03ckxvj81 MACOM (United Kingdom)'),
(47919, 'https://ror.org/03cm5j964', 'en', 1, 'https://ror.org/03cm5j964 Cambridge in America'),
(47920, 'https://ror.org/03cq0qg50', 'en', 1, 'https://ror.org/03cq0qg50 Zhejiang Ocean Development Institute ęµ™ę±Ÿēœęµ·ę“‹å¼€å‘ē ”ē©¶é™¢'),
(47921, 'https://ror.org/03cxbpn31', 'no_lang_code', 1, 'https://ror.org/03cxbpn31 Lumisyn (United States)'),
(47922, 'https://ror.org/03cxf6q40', 'no_lang_code', 1, 'https://ror.org/03cxf6q40 Jain PharmaBiotech (Switzerland)'),
(47923, 'https://ror.org/03cxjvr57', 'en', 1, 'https://ror.org/03cxjvr57 ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬ŲØŁŠŁ„ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© ​​Jubail University College'),
(47924, 'https://ror.org/03cxpxg17', 'en', 1, 'https://ror.org/03cxpxg17 Fundação CERTI Reference Center Foundation for Innovative Technologies'),
(47925, 'https://ror.org/03cxxc369', 'en', 1, 'https://ror.org/03cxxc369 Torino e-district'),
(47926, 'https://ror.org/03d0cjn27', 'no_lang_code', 1, 'https://ror.org/03d0cjn27 Alectos (Canada)'),
(47927, 'https://ror.org/03d1vm044', 'no_lang_code', 1, 'https://ror.org/03d1vm044 TE Connectivity (Brazil)'),
(47928, 'https://ror.org/03d5a9t15', 'en', 1, 'https://ror.org/03d5a9t15 Department of Medical Sciences ąøąø£ąø”ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąøąø²ąø£ą¹ąøžąø—ąø¢ą¹Œ'),
(47929, 'https://ror.org/03d6stm02', 'en', 1, 'https://ror.org/03d6stm02 National Hospital Organization Hanamaki Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹čŠ±å·»ē—…é™¢'),
(47930, 'https://ror.org/03d6z8b09', 'no_lang_code', 1, 'https://ror.org/03d6z8b09 Diageo (United Kingdom)'),
(47931, 'https://ror.org/03d7d0579', 'en', 1, 'https://ror.org/03d7d0579 NIHR Evaluation Trials and Studies Coordinating Centre'),
(47932, 'https://ror.org/03d8jqg89', 'en', 1, 'https://ror.org/03d8jqg89 United Nations University Institute for Water, Environment, and Health'),
(47933, 'https://ror.org/03dcjsm04', 'en', 1, 'https://ror.org/03dcjsm04 Jaamacada Soomaaliya University of Somalia Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲµŁˆŁ…Ų§Ł„ā€Žā€Ž'),
(47934, 'https://ror.org/03de5n431', 'no_lang_code', 1, 'https://ror.org/03de5n431 Scientific Games (United States)'),
(47935, 'https://ror.org/03dhqyc75', 'en', 1, 'https://ror.org/03dhqyc75 Islamic Azad University, Lahijan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد Ł„Ų§Ł‡ŁŠŲ¬Ų§Ł†'),
(47936, 'https://ror.org/03dm2vs08', 'en', 1, 'https://ror.org/03dm2vs08 Kacho College čÆé ‚ēŸ­ęœŸå¤§å­¦'),
(47937, 'https://ror.org/03dn3wf28', 'en', 1, 'https://ror.org/03dn3wf28 Coimbatore Medical College and Hospital'),
(47938, 'https://ror.org/03dnd4369', 'pt', 1, 'https://ror.org/03dnd4369 Fundação de Economia e Estatística Siegfried Emanuel Heuser'),
(47939, 'https://ror.org/03dr35a85', 'pt', 1, 'https://ror.org/03dr35a85 Fundação ApolÓnio Salles de Desenvolvimento Educacional'),
(47940, 'https://ror.org/03dxy2v98', 'en', 1, 'https://ror.org/03dxy2v98 Jamaica Library Service'),
(47941, 'https://ror.org/03dywws23', 'en', 1, 'https://ror.org/03dywws23 Wakayama Prefectural Tanabe High School å’Œę­Œå±±ēœŒē«‹ ē”°č¾ŗé«˜ē­‰å­¦ę ”'),
(47942, 'https://ror.org/03e0eqg93', 'en', 1, 'https://ror.org/03e0eqg93 Austin Public Library'),
(47943, 'https://ror.org/03e0ttw56', 'en', 1, 'https://ror.org/03e0ttw56 Aomori Prefectural Industrial Technology Center é’ę£®ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(47944, 'https://ror.org/03e0zx788', 'en', 1, 'https://ror.org/03e0zx788 Fukuoka Institute of Technology Junior College ē¦å²”å·„ę„­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(47945, 'https://ror.org/03e1t0653', 'no_lang_code', 1, 'https://ror.org/03e1t0653 Sendai Seiyo Gakuin College ä»™å°é’č‘‰å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(47946, 'https://ror.org/03e27sm64', 'en', 1, 'https://ror.org/03e27sm64 Tokyo Metropolitan Kuramae Technical High School ę±äŗ¬éƒ½ē«‹č”µå‰å·„ę„­é«˜ē­‰å­¦ę ”'),
(47947, 'https://ror.org/03e5aw094', 'en', 1, 'https://ror.org/03e5aw094 Association for the Study of Higher Education'),
(47948, 'https://ror.org/03e7zen21', 'no_lang_code', 1, 'https://ror.org/03e7zen21 Volvo (United States)'),
(47949, 'https://ror.org/03e84bp78', 'en', 1, 'https://ror.org/03e84bp78 China Chamber of Commerce for Import and Export of Medicines and Health Products äø­å›½åŒ»čÆäæå„å“čæ›å‡ŗå£å•†ä¼š'),
(47950, 'https://ror.org/03e8zd719', 'en', 1, 'https://ror.org/03e8zd719 Sh''or Yoshuv Institute'),
(47951, 'https://ror.org/03e9gte70', 'de', 1, 'https://ror.org/03e9gte70 Wikimedia Deutschland'),
(47952, 'https://ror.org/03ea8hp29', 'fr', 1, 'https://ror.org/03ea8hp29 UniversitƩ d''Agriculture de KƩtou'),
(47953, 'https://ror.org/03edh2b12', 'en', 1, 'https://ror.org/03edh2b12 Matsudo City Board of Education ę¾ęˆøåø‚ę•™č‚²å§”å“”ä¼š'),
(47954, 'https://ror.org/03efa9j76', 'en', 1, 'https://ror.org/03efa9j76 Solid State Physics Laboratory ą¤ ą„‹ą¤øą¤¾ą¤µą¤øą„ą¤„ą¤¾ ą¤­ą„Œą¤¤ą¤æą¤•ą„€ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(47955, 'https://ror.org/03egady98', 'no_lang_code', 1, 'https://ror.org/03egady98 eSenso (Canada)'),
(47956, 'https://ror.org/03egh3k54', 'en', 1, 'https://ror.org/03egh3k54 Miyagi Prefectural Fisheries High School å®®åŸŽēœŒę°“ē”£é«˜ē­‰å­¦ę ”'),
(47957, 'https://ror.org/03egy0233', 'en', 1, 'https://ror.org/03egy0233 Institut za DruŔtvena Istraživanja SveučiliŔta u Zagrebu Institute for Social Research'),
(47958, 'https://ror.org/03ejhx730', 'pt', 1, 'https://ror.org/03ejhx730 Sociedade Brasileira de Recursos GenƩticos'),
(47959, 'https://ror.org/03ek4e159', 'no_lang_code', 1, 'https://ror.org/03ek4e159 Assa Abloy (New Zealand)'),
(47960, 'https://ror.org/03eq6a532', 'en', 1, 'https://ror.org/03eq6a532 Turkish Society of Nephrology Türk Nefroloji Derneği'),
(47961, 'https://ror.org/03erscp63', 'no_lang_code', 1, 'https://ror.org/03erscp63 Heidelberg Printing Machines AG Heidelberger Druckmaschinen (Germany)'),
(47962, 'https://ror.org/03et3bc78', 'en', 1, 'https://ror.org/03et3bc78 Hachinohe Technical High School é’ę£®ēœŒē«‹å…«ęˆøå·„ę„­é«˜ē­‰å­¦ę ”'),
(47963, 'https://ror.org/03ete9c40', 'no_lang_code', 1, 'https://ror.org/03ete9c40 EchoStar (India)'),
(47964, 'https://ror.org/03ev7vc82', 'en', 1, 'https://ror.org/03ev7vc82 Glide Foundation'),
(47965, 'https://ror.org/03evg0379', 'en', 1, 'https://ror.org/03evg0379 Higher Institute of Technologies and Applied Sciences Instituto Superior de TecnologĆ­as y Ciencias Aplicadas'),
(47966, 'https://ror.org/03ewmqz06', 'no_lang_code', 1, 'https://ror.org/03ewmqz06 Ekodenge (Turkey)'),
(47967, 'https://ror.org/03ext6r62', 'en', 1, 'https://ror.org/03ext6r62 All-Russian Research Institute for Oil Refining Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по переработке нефти'),
(47968, 'https://ror.org/03ey3qt70', 'no_lang_code', 1, 'https://ror.org/03ey3qt70 Corcept Therapeutics (United States)'),
(47969, 'https://ror.org/03ez0jn38', 'en', 1, 'https://ror.org/03ez0jn38 National Museum of Modern Art Kyoto äŗ¬éƒ½å›½ē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(47970, 'https://ror.org/03ezg7602', 'en', 1, 'https://ror.org/03ezg7602 Association for Women Geoscientists'),
(47971, 'https://ror.org/03f0m8k49', 'en', 1, 'https://ror.org/03f0m8k49 British Association for Cancer Research'),
(47972, 'https://ror.org/03f1f6f50', 'no_lang_code', 1, 'https://ror.org/03f1f6f50 Makita Corporation (Japan) ę Ŗå¼ä¼šē¤¾ćƒžć‚­ć‚æ'),
(47973, 'https://ror.org/03f1m2f12', 'no_lang_code', 1, 'https://ror.org/03f1m2f12 DrƤger (United Kingdom)'),
(47974, 'https://ror.org/03f1myq16', 'en', 1, 'https://ror.org/03f1myq16 Gulf Regional Planning Commission'),
(47975, 'https://ror.org/03f1pm042', 'en', 1, 'https://ror.org/03f1pm042 Ragnar Sƶderberg Foundation'),
(47976, 'https://ror.org/03f5vkk69', 'no_lang_code', 1, 'https://ror.org/03f5vkk69 Scientific Games (Australia)'),
(47977, 'https://ror.org/03f915n15', 'fr', 1, 'https://ror.org/03f915n15 Institut National Polytechnique FƩlix Houphouƫt-Boigny'),
(47978, 'https://ror.org/03fa8j757', 'en', 1, 'https://ror.org/03fa8j757 Parks and Recreation Foundation čˆ¬č²”å›£ę³•äŗŗ å…¬åœ’č²”å›£'),
(47979, 'https://ror.org/03fd82c91', 'no_lang_code', 1, 'https://ror.org/03fd82c91 Rohm (Germany)'),
(47980, 'https://ror.org/03fevzd03', 'no_lang_code', 1, 'https://ror.org/03fevzd03 Topcon (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆćƒ—ć‚³ćƒ³'),
(47981, 'https://ror.org/03feyjt47', 'en', 1, 'https://ror.org/03feyjt47 Saudi Ophthalmological Society Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© لطب Ų§Ł„Ų¹ŁŠŁˆŁ†'),
(47982, 'https://ror.org/03fj5w909', 'en', 1, 'https://ror.org/03fj5w909 International Laboratory of High Magnetic Fields and Low Temperatures Międzynarodowego Laboratorium Silnych Pól Magnetycznych i Niskich Temperatur'),
(47983, 'https://ror.org/03fjbw519', 'no_lang_code', 1, 'https://ror.org/03fjbw519 Apple (Germany)'),
(47984, 'https://ror.org/03fjgt095', 'en', 1, 'https://ror.org/03fjgt095 Goulburn Broken Catchment Management Authority'),
(47985, 'https://ror.org/03fjjmv72', 'en', 1, 'https://ror.org/03fjjmv72 Association for Surgical Education'),
(47986, 'https://ror.org/03fjn6n75', 'en', 1, 'https://ror.org/03fjn6n75 Australian Publishers Association'),
(47987, 'https://ror.org/03fkb6t85', 'en', 1, 'https://ror.org/03fkb6t85 GrAT - Center for Appropriate Technology Gruppe zur Fƶrderung der Angepasste Technologie'),
(47988, 'https://ror.org/03fkqty89', 'en', 1, 'https://ror.org/03fkqty89 Japanese Society of Clinical Neuropsychopharmacology ę—„ęœ¬č‡ØåŗŠē²¾ē„žē„žēµŒč–¬ē†å­¦ä¼š'),
(47989, 'https://ror.org/03fm7wh60', 'en', 1, 'https://ror.org/03fm7wh60 Durham Technical Community College'),
(47990, 'https://ror.org/03fpgta87', 'en', 1, 'https://ror.org/03fpgta87 Service Science Society of Taiwan å°ē£ęœå‹™ē§‘å­øå­øęœƒ'),
(47991, 'https://ror.org/03ftb9350', 'en', 1, 'https://ror.org/03ftb9350 Government of Japan'),
(47992, 'https://ror.org/03ftwc024', 'en', 1, 'https://ror.org/03ftwc024 Marienhospital Arnsberg'),
(47993, 'https://ror.org/03fy1q357', 'en', 1, 'https://ror.org/03fy1q357 Center for European Policy Analysis'),
(47994, 'https://ror.org/03fyf9c76', 'no_lang_code', 1, 'https://ror.org/03fyf9c76 McKinsey & Company (Germany)'),
(47995, 'https://ror.org/03fz8dh89', 'en', 1, 'https://ror.org/03fz8dh89 Japanese Society of Medical Oncology č…«ē˜å†…ē§‘å­¦ä¼š'),
(47996, 'https://ror.org/03g38jf25', 'en', 1, 'https://ror.org/03g38jf25 All-Russian Research Institute for Optical and Physical Measurements Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптико-физических измерений'),
(47997, 'https://ror.org/03g57y740', 'en', 1, 'https://ror.org/03g57y740 Kochi Rehabilitation Institute é«˜ēŸ„ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å­¦é™¢'),
(47998, 'https://ror.org/03g58rv06', 'en', 1, 'https://ror.org/03g58rv06 Donald Beasley Institute'),
(47999, 'https://ror.org/03g5wg622', 'no_lang_code', 1, 'https://ror.org/03g5wg622 YIT (Germany)'),
(48000, 'https://ror.org/03g6saz93', 'en', 1, 'https://ror.org/03g6saz93 Nara Prefectural Nara High School å„ˆč‰ÆēœŒē«‹å„ˆč‰ÆåŒ—é«˜ē­‰å­¦ę ”'),
(48001, 'https://ror.org/03g7x9g28', 'no_lang_code', 1, 'https://ror.org/03g7x9g28 Signosis (United States)'),
(48002, 'https://ror.org/03g9yn034', 'en', 1, 'https://ror.org/03g9yn034 York County School Division'),
(48003, 'https://ror.org/03ga2w460', 'en', 1, 'https://ror.org/03ga2w460 Cancer Care Nova Scotia'),
(48004, 'https://ror.org/03gbnem78', 'en', 1, 'https://ror.org/03gbnem78 Shimane Prefectural Matsue Technical High School å³¶ę ¹ēœŒē«‹ę¾ę±Ÿå·„ę„­é«˜ē­‰å­¦ę ”'),
(48005, 'https://ror.org/03gbx5482', 'en', 1, 'https://ror.org/03gbx5482 Ministry of Urban Development,Housing and Construction'),
(48006, 'https://ror.org/03gbxs308', 'no_lang_code', 1, 'https://ror.org/03gbxs308 Funai Electric (Japan) čˆ¹äŗ•é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(48007, 'https://ror.org/03gck1m55', 'fr', 1, 'https://ror.org/03gck1m55 SociƩtƩ FranƧaise de Dermatologie et de Pathologie Sexuellement Transmissible'),
(48008, 'https://ror.org/03gd0xf29', 'en', 1, 'https://ror.org/03gd0xf29 Gifu Prefectural Yaotsu High School å²é˜œēœŒē«‹å…«ē™¾ę“„é«˜ē­‰å­¦ę ”'),
(48009, 'https://ror.org/03gf10a58', 'no_lang_code', 1, 'https://ror.org/03gf10a58 Applied Physical Sciences (United States)'),
(48010, 'https://ror.org/03gf7q691', 'pt', 1, 'https://ror.org/03gf7q691 Faculdade Única'),
(48011, 'https://ror.org/03gfc4s78', 'no_lang_code', 1, 'https://ror.org/03gfc4s78 SMC Corporation (Japan) SMC ę Ŗå¼ä¼šē¤¾'),
(48012, 'https://ror.org/03gffcv79', 'en', 1, 'https://ror.org/03gffcv79 Society of Hong Kong Scholars'),
(48013, 'https://ror.org/03gjpvv92', 'en', 1, 'https://ror.org/03gjpvv92 Halle Institute for Economic Research Leibniz-Institut für Wirtschaftsforschung Halle'),
(48014, 'https://ror.org/03gmm4776', 'no_lang_code', 1, 'https://ror.org/03gmm4776 Semi Conductor Devices (Israel)'),
(48015, 'https://ror.org/03gpasn37', 'en', 1, 'https://ror.org/03gpasn37 Walkergate Park Hospital'),
(48016, 'https://ror.org/03gqy2z96', 'no_lang_code', 1, 'https://ror.org/03gqy2z96 National Oilwell Varco (United Kingdom)'),
(48017, 'https://ror.org/03grvh841', 'no_lang_code', 1, 'https://ror.org/03grvh841 Intermolecular (United States)'),
(48018, 'https://ror.org/03gsjv132', 'no_lang_code', 1, 'https://ror.org/03gsjv132 Sandvik (Germany)'),
(48019, 'https://ror.org/03gtr6m06', 'en', 1, 'https://ror.org/03gtr6m06 University of Telecommunications and Post Š’ŠøŃŃˆŠµ ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ по Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠø Šø пощи'),
(48020, 'https://ror.org/03gwmtg18', 'no_lang_code', 1, 'https://ror.org/03gwmtg18 Gleason (Germany)'),
(48021, 'https://ror.org/03gx8w417', 'no_lang_code', 1, 'https://ror.org/03gx8w417 Bridgepoint (United States)'),
(48022, 'https://ror.org/03gxw2643', 'en', 1, 'https://ror.org/03gxw2643 Niigata Prefectural Niigata High School ę–°ę½ŸēœŒē«‹ę–°ę½Ÿé«˜ē­‰å­¦ę ”'),
(48023, 'https://ror.org/03gz1ev12', 'en', 1, 'https://ror.org/03gz1ev12 Worldwatch Institute'),
(48024, 'https://ror.org/03gzy4429', 'en', 1, 'https://ror.org/03gzy4429 British Society of Periodontology'),
(48025, 'https://ror.org/03h2dv749', 'en', 1, 'https://ror.org/03h2dv749 Hokkaido Museum of Northern Peoples åŒ—ęµ·é“ē«‹åŒ—ę–¹ę°‘ę—åšē‰©é¤Ø'),
(48026, 'https://ror.org/03hacry86', 'en', 1, 'https://ror.org/03hacry86 Tokyo Metropolitan Saginomiya High School ę±äŗ¬éƒ½ē«‹é·ŗå®®é«˜ē­‰å­¦ę ”'),
(48027, 'https://ror.org/03hc02072', 'no_lang_code', 1, 'https://ror.org/03hc02072 QuantuMDx (United Kingdom)'),
(48028, 'https://ror.org/03hdkcc29', 'en', 1, 'https://ror.org/03hdkcc29 Kameda College of Health Sciences äŗ€ē”°åŒ»ē™‚å¤§å­¦'),
(48029, 'https://ror.org/03hf07k85', 'en', 1, 'https://ror.org/03hf07k85 Low Income Housing Institute'),
(48030, 'https://ror.org/03hgh1k95', 'fr', 1, 'https://ror.org/03hgh1k95 CollĆØge de Physique et de Philosophie'),
(48031, 'https://ror.org/03hm0sm79', 'en', 1, 'https://ror.org/03hm0sm79 National Council of Applied Economic Research'),
(48032, 'https://ror.org/03hm7k454', 'en', 1, 'https://ror.org/03hm7k454 Twelfth Guangzhou City People''s Hospital å¹æå·žåø‚ē¬¬åäŗŒäŗŗę°‘åŒ»é™¢'),
(48033, 'https://ror.org/03hpv0z23', 'en', 1, 'https://ror.org/03hpv0z23 Institute for Research and Reform in Education'),
(48034, 'https://ror.org/03hq2ba30', 'en', 1, 'https://ror.org/03hq2ba30 Kyoto Bunkyo Junior College äŗ¬éƒ½ę–‡ę•™ēŸ­ęœŸå¤§å­¦'),
(48035, 'https://ror.org/03hsaqw61', 'en', 1, 'https://ror.org/03hsaqw61 Wellspring University'),
(48036, 'https://ror.org/03hsqcd26', 'no_lang_code', 1, 'https://ror.org/03hsqcd26 Ab LƄsfabriken-Lukkotehdas Oy Abloy (Finland)'),
(48037, 'https://ror.org/03hv95d67', 'es', 1, 'https://ror.org/03hv95d67 Chilean Nuclear Energy Commission Comisión Chilena de Energía Nuclear'),
(48038, 'https://ror.org/03hw0dp08', 'en', 1, 'https://ror.org/03hw0dp08 Internacionalni univerzitet Travnik International University of Travnik'),
(48039, 'https://ror.org/03hy1zg87', 'no_lang_code', 1, 'https://ror.org/03hy1zg87 Western Digital (Israel)'),
(48040, 'https://ror.org/03hy63170', 'en', 1, 'https://ror.org/03hy63170 Kappa Kappa Gamma'),
(48041, 'https://ror.org/03j0njm34', 'no_lang_code', 1, 'https://ror.org/03j0njm34 British American Tobacco (Japan) ćƒ–ćƒŖćƒ†ć‚£ćƒƒć‚·ćƒ„ćƒ»ć‚¢ćƒ”ćƒŖć‚«ćƒ³ćƒ»ć‚æćƒć‚³'),
(48042, 'https://ror.org/03j2b0f13', 'no_lang_code', 1, 'https://ror.org/03j2b0f13 SphingoGene (United States)'),
(48043, 'https://ror.org/03j5mnr69', 'en', 1, 'https://ror.org/03j5mnr69 Niigata City Kohshi Secondary School ę–°ę½Ÿåø‚ē«‹é«˜åæ—äø­ē­‰ę•™č‚²å­¦ę ”'),
(48044, 'https://ror.org/03j79f182', 'no_lang_code', 1, 'https://ror.org/03j79f182 Balfour Beatty (Germany)'),
(48045, 'https://ror.org/03j8e1479', 'en', 1, 'https://ror.org/03j8e1479 Gansu Provincial Hospital of TCM ē”˜č‚ƒēœäø­åŒ»é™¢'),
(48046, 'https://ror.org/03jewb194', 'fr', 1, 'https://ror.org/03jewb194 UniversitƩ Kofi Annan de GuinƩe'),
(48047, 'https://ror.org/03jgdxs56', 'en', 1, 'https://ror.org/03jgdxs56 Hokkaido Dental Technical College åŒ—ęµ·é“ę­Æē§‘ęŠ€č”“å°‚é–€å­¦ę ”'),
(48048, 'https://ror.org/03jgff472', 'en', 1, 'https://ror.org/03jgff472 Takayama College of Car Technology é«˜å±±č‡Ŗå‹•č»ŠēŸ­ęœŸå¤§å­¦'),
(48049, 'https://ror.org/03jj2t466', 'en', 1, 'https://ror.org/03jj2t466 Ancient Egypt Research Associates'),
(48050, 'https://ror.org/03jjkbg74', 'en', 1, 'https://ror.org/03jjkbg74 American Society for Public Administration'),
(48051, 'https://ror.org/03jjm4b17', 'en', 1, 'https://ror.org/03jjm4b17 Hangzhou Vocational and Technical College ę­å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(48052, 'https://ror.org/03jjvt296', 'en', 1, 'https://ror.org/03jjvt296 Wakayama Prefectural Board of Education å’Œę­Œå±±ēœŒę•™č‚²å§”å“”ä¼š'),
(48053, 'https://ror.org/03jp6rr57', 'en', 1, 'https://ror.org/03jp6rr57 LaConner Regional Library'),
(48054, 'https://ror.org/03jqm3125', 'no_lang_code', 1, 'https://ror.org/03jqm3125 Quaternion Aerospace (Canada)'),
(48055, 'https://ror.org/03jr65e79', 'en', 1, 'https://ror.org/03jr65e79 African Capacity Building Foundation'),
(48056, 'https://ror.org/03jrxdc53', 'en', 1, 'https://ror.org/03jrxdc53 Japanese Urological Association ę—„ęœ¬ę³Œå°æå™Øē§‘å­¦ä¼š'),
(48057, 'https://ror.org/03jtajd40', 'fr', 1, 'https://ror.org/03jtajd40 Programme PAC-CI'),
(48058, 'https://ror.org/03jty5027', 'no_lang_code', 1, 'https://ror.org/03jty5027 Brocade (United States)'),
(48059, 'https://ror.org/03jyqk712', 'no_lang_code', 1, 'https://ror.org/03jyqk712 Huawei Technologies (United States)'),
(48060, 'https://ror.org/03jzay846', 'no_lang_code', 1, 'https://ror.org/03jzay846 Honda (Japan) ęœ¬ē”°ęŠ€ē ”å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(48061, 'https://ror.org/03jzc4108', 'no_lang_code', 1, 'https://ror.org/03jzc4108 PLUX - Wireless Biosignals (Portugal)'),
(48062, 'https://ror.org/03jzczt57', 'en', 1, 'https://ror.org/03jzczt57 International Institute for Strategic Studies'),
(48063, 'https://ror.org/03jzx6k15', 'tr', 1, 'https://ror.org/03jzx6k15 Manisa Celal Bayar Üniversitesi Hafsa Sultan Hastanesi'),
(48064, 'https://ror.org/03k08vb24', 'en', 1, 'https://ror.org/03k08vb24 Breast Cancer Over Time'),
(48065, 'https://ror.org/03k1ymh78', 'no_lang_code', 1, 'https://ror.org/03k1ymh78 Samsung (Israel)'),
(48066, 'https://ror.org/03k4vk194', 'no_lang_code', 1, 'https://ror.org/03k4vk194 Grace (United States)'),
(48067, 'https://ror.org/03k6h6357', 'en', 1, 'https://ror.org/03k6h6357 Museum of Malawi'),
(48068, 'https://ror.org/03k7fv950', 'en', 1, 'https://ror.org/03k7fv950 Yawata Medical Center åŠ č³€å…«å¹”ęø©ę³‰ē—…é™¢'),
(48069, 'https://ror.org/03kbkcf70', 'en', 1, 'https://ror.org/03kbkcf70 Episcopal School of Dallas'),
(48070, 'https://ror.org/03ke6ew70', 'en', 1, 'https://ror.org/03ke6ew70 Department of Fisheries'),
(48071, 'https://ror.org/03kgj1y58', 'no_lang_code', 1, 'https://ror.org/03kgj1y58 Takada Junior College é«˜ē”°ēŸ­ęœŸå¤§å­¦'),
(48072, 'https://ror.org/03kjve460', 'en', 1, 'https://ror.org/03kjve460 Nagasaki Prefectural Tsushima Museum of History and Folklore é•·å“ŽēœŒē«‹åÆ¾é¦¬ę­“å²ę°‘äæ—å²ę–™é¤Ø'),
(48073, 'https://ror.org/03kky3p48', 'en', 1, 'https://ror.org/03kky3p48 Wikimedia Argentina'),
(48074, 'https://ror.org/03kmyta64', 'en', 1, 'https://ror.org/03kmyta64 Naha City Hospital 那覇市立病院'),
(48075, 'https://ror.org/03kp88547', 'pt', 1, 'https://ror.org/03kp88547 Associação Nacional de Entidades Promotoras de Empreendimentos de Tecnologias Avançadas Brazilian Association of Science Parks and Business Incubators'),
(48076, 'https://ror.org/03kryfe63', 'en', 1, 'https://ror.org/03kryfe63 Suzuka City Library éˆ“é¹æåø‚ē«‹å›³ę›øé¤Ø'),
(48077, 'https://ror.org/03ksx7604', 'en', 1, 'https://ror.org/03ksx7604 Association of Academic Physiatrists'),
(48078, 'https://ror.org/03kt5ya77', 'en', 1, 'https://ror.org/03kt5ya77 Wakayama Prefectural Museum of Natural History å’Œę­Œå±±ēœŒē«‹č‡Ŗē„¶åšē‰©é¤Ø'),
(48079, 'https://ror.org/03kx92c42', 'en', 1, 'https://ror.org/03kx92c42 Industrial Technology Center of SAGA ä½č³€ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(48080, 'https://ror.org/03kx9nw13', 'no_lang_code', 1, 'https://ror.org/03kx9nw13 Valeo (Brazil)'),
(48081, 'https://ror.org/03m02qa07', 'en', 1, 'https://ror.org/03m02qa07 Aoyama Gakuin Women''s Junior College é’å±±å­¦é™¢å„³å­ēŸ­ęœŸå¤§å­¦'),
(48082, 'https://ror.org/03m13r221', 'en', 1, 'https://ror.org/03m13r221 Port of Morrow'),
(48083, 'https://ror.org/03m1q4162', 'no_lang_code', 1, 'https://ror.org/03m1q4162 Nordson (Germany)'),
(48084, 'https://ror.org/03m2n7z62', 'en', 1, 'https://ror.org/03m2n7z62 Shoei Junior College é Œę „ēŸ­ęœŸå¤§å­¦'),
(48085, 'https://ror.org/03m4ve365', 'pt', 1, 'https://ror.org/03m4ve365 Instituto Florestal'),
(48086, 'https://ror.org/03m4xpg98', 'en', 1, 'https://ror.org/03m4xpg98 Hellenic Society for the Study of Bone Metabolism Ελληνική Εταιρεία ĪœĪµĪ»Ī­Ļ„Ī·Ļ‚ ĪœĪµĻ„Ī±Ī²ĪæĪ»Ī¹ĻƒĪ¼ĪæĻ των ĪŸĻƒĻ„ĻŽĪ½'),
(48087, 'https://ror.org/03m71gb52', 'en', 1, 'https://ror.org/03m71gb52 Bangladesh Sericulture Research and Training Institute'),
(48088, 'https://ror.org/03m80tg69', 'en', 1, 'https://ror.org/03m80tg69 International Parkinson and Movement Disorder Society'),
(48089, 'https://ror.org/03m823837', 'no_lang_code', 1, 'https://ror.org/03m823837 Magnezit (Russia) ŠœŠ°Š³Š½ŠµŠ·ŠøŃ‚Š°'),
(48090, 'https://ror.org/03m8km719', 'en', 1, 'https://ror.org/03m8km719 Environmental Protection Agency'),
(48091, 'https://ror.org/03m8w6896', 'en', 1, 'https://ror.org/03m8w6896 Quantum Chemistry Research Institute ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗ é‡å­åŒ–å­¦ē ”ē©¶å”ä¼šē ”ē©¶ę‰€'),
(48092, 'https://ror.org/03mazta23', 'en', 1, 'https://ror.org/03mazta23 Ministry of Culture of the Republic of Latvia'),
(48093, 'https://ror.org/03mc1nw82', 'no_lang_code', 1, 'https://ror.org/03mc1nw82 Aristocrat (Australia)'),
(48094, 'https://ror.org/03mdyrb51', 'no_lang_code', 1, 'https://ror.org/03mdyrb51 Hillrom (Singapore)'),
(48095, 'https://ror.org/03mf7fw42', 'en', 1, 'https://ror.org/03mf7fw42 Tiffin University Prague'),
(48096, 'https://ror.org/03mfwnv44', 'no_lang_code', 1, 'https://ror.org/03mfwnv44 Yamamura Gakuen College å±±ę‘å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(48097, 'https://ror.org/03mj2g711', 'en', 1, 'https://ror.org/03mj2g711 Chiba City Museum of Art åƒč‘‰åø‚ē¾Žč”“é¤Ø'),
(48098, 'https://ror.org/03mkjvs49', 'en', 1, 'https://ror.org/03mkjvs49 Jesuit Service Cambodia'),
(48099, 'https://ror.org/03mmka096', 'en', 1, 'https://ror.org/03mmka096 Qinghai Tibetan Hospital é’ęµ·ēœč—åŒ»é™¢'),
(48100, 'https://ror.org/03mmx9g76', 'pt', 1, 'https://ror.org/03mmx9g76 Sociedade Brasileira de História da MatemÔtica'),
(48101, 'https://ror.org/03mp9xr25', 'no_lang_code', 1, 'https://ror.org/03mp9xr25 SmartSkim (United States)'),
(48102, 'https://ror.org/03mqek204', 'en', 1, 'https://ror.org/03mqek204 European Parliamentary Forum on Population & Development'),
(48103, 'https://ror.org/03mrh9y60', 'en', 1, 'https://ror.org/03mrh9y60 Japan Snake Institute ę—„ęœ¬ć‚¹ćƒćƒ¼ć‚Æē ”ē©¶ę‰€'),
(48104, 'https://ror.org/03ms3yr93', 'en', 1, 'https://ror.org/03ms3yr93 Institute for Altitude Medicine'),
(48105, 'https://ror.org/03mvhz334', 'no_lang_code', 1, 'https://ror.org/03mvhz334 SolMateS (Netherlands)'),
(48106, 'https://ror.org/03mxb1d84', 'en', 1, 'https://ror.org/03mxb1d84 Ogaki Women''s College å¤§åž£å„³å­ēŸ­ęœŸå¤§å­¦'),
(48107, 'https://ror.org/03mxqcg82', 'en', 1, 'https://ror.org/03mxqcg82 Flughafen Leipzig/Halle Leipzig/Halle Airport'),
(48108, 'https://ror.org/03mxwtc74', 'en', 1, 'https://ror.org/03mxwtc74 Hosen College of Childhood Education ć“ć©ć‚‚ę•™č‚²å®ä»™å¤§å­¦'),
(48109, 'https://ror.org/03mxz9a62', 'en', 1, 'https://ror.org/03mxz9a62 Akita Museum of Art ē§‹ē”°ēœŒē«‹ē¾Žč”“é¤Ø'),
(48110, 'https://ror.org/03myafa32', 'en', 1, 'https://ror.org/03myafa32 Oxford Centre for Diabetes, Endocrinology and Metabolism'),
(48111, 'https://ror.org/03mza7j54', 'no_lang_code', 1, 'https://ror.org/03mza7j54 Cascade Thermal Solutions (United States)'),
(48112, 'https://ror.org/03n1gcz29', 'no_lang_code', 1, 'https://ror.org/03n1gcz29 Chiba Prefectural Sekiyado-jo Museum'),
(48113, 'https://ror.org/03n2emr48', 'no_lang_code', 1, 'https://ror.org/03n2emr48 Kohler (United States)'),
(48114, 'https://ror.org/03n4s8g35', 'en', 1, 'https://ror.org/03n4s8g35 Hokkaido Sapporo Kita High School åŒ—ęµ·é“ęœ­å¹ŒåŒ—é«˜ē­‰å­¦ę ”'),
(48115, 'https://ror.org/03n4y8m86', 'no_lang_code', 1, 'https://ror.org/03n4y8m86 Lite-On Technology Corporation (Singapore)'),
(48116, 'https://ror.org/03n7n4r41', 'en', 1, 'https://ror.org/03n7n4r41 Kanto Junior College é–¢ę±ēŸ­ęœŸå¤§å­¦'),
(48117, 'https://ror.org/03n7xzj51', 'en', 1, 'https://ror.org/03n7xzj51 Shridhar University'),
(48118, 'https://ror.org/03n8fxy07', 'no_lang_code', 1, 'https://ror.org/03n8fxy07 Engie (United States)'),
(48119, 'https://ror.org/03n8qgc13', 'hu', 1, 'https://ror.org/03n8qgc13 Bajai Obszervatórium, BÔcs-Kiskun Megyei CsillagvizsgÔló Intézet'),
(48120, 'https://ror.org/03n8qhg02', 'no_lang_code', 1, 'https://ror.org/03n8qhg02 Fontis (Czechia)'),
(48121, 'https://ror.org/03n9dk271', 'en', 1, 'https://ror.org/03n9dk271 Glen Carbon Centennial Library'),
(48122, 'https://ror.org/03natzt93', 'no_lang_code', 1, 'https://ror.org/03natzt93 Apex Tool Group (Taiwan)'),
(48123, 'https://ror.org/03nbg4460', 'en', 1, 'https://ror.org/03nbg4460 Center for Environmental Science in Saitama åŸ¼ēŽ‰ēœŒē’°å¢ƒē§‘å­¦å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(48124, 'https://ror.org/03nbky582', 'en', 1, 'https://ror.org/03nbky582 University-National Oceanographic Laboratory System'),
(48125, 'https://ror.org/03ncs3316', 'no_lang_code', 1, 'https://ror.org/03ncs3316 Red Hat (United States)'),
(48126, 'https://ror.org/03nd8bd86', 'es', 1, 'https://ror.org/03nd8bd86 Conferencia Episcopal Boliviana'),
(48127, 'https://ror.org/03nf8te12', 'en', 1, 'https://ror.org/03nf8te12 Reading Public Library'),
(48128, 'https://ror.org/03nkrqs25', 'no_lang_code', 1, 'https://ror.org/03nkrqs25 OSI Systems (Germany)'),
(48129, 'https://ror.org/03npsbw04', 'en', 1, 'https://ror.org/03npsbw04 Zhejiang Entry-Exit Inspection and Quarantine Bureau ę­å·žå‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(48130, 'https://ror.org/03nsa4h03', 'en', 1, 'https://ror.org/03nsa4h03 Sakai City Education Center å ŗåø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(48131, 'https://ror.org/03nsmq393', 'no_lang_code', 1, 'https://ror.org/03nsmq393 Seco Warwick (United States)'),
(48132, 'https://ror.org/03nss1434', 'en', 1, 'https://ror.org/03nss1434 Live Oak Public Libraries'),
(48133, 'https://ror.org/03ntfkn26', 'en', 1, 'https://ror.org/03ntfkn26 Ames Free Library'),
(48134, 'https://ror.org/03nw6pt28', 'no_lang_code', 1, 'https://ror.org/03nw6pt28 ON Semiconductor (United States)'),
(48135, 'https://ror.org/03nwf3f39', 'en', 1, 'https://ror.org/03nwf3f39 Highland Community College - Kansas'),
(48136, 'https://ror.org/03nwpr620', 'no_lang_code', 1, 'https://ror.org/03nwpr620 Brunswick (United States)'),
(48137, 'https://ror.org/03nxnp058', 'pt', 1, 'https://ror.org/03nxnp058 Museu da Amazonia'),
(48138, 'https://ror.org/03p186h82', 'en', 1, 'https://ror.org/03p186h82 Delaware County Libraries'),
(48139, 'https://ror.org/03p1xd909', 'no_lang_code', 1, 'https://ror.org/03p1xd909 ATG Europe (Netherlands)'),
(48140, 'https://ror.org/03p26k524', 'en', 1, 'https://ror.org/03p26k524 Animals and Society Institute'),
(48141, 'https://ror.org/03p5evc41', 'no_lang_code', 1, 'https://ror.org/03p5evc41 Mitsubishi Materials (Japan) äø‰č±ćƒžćƒ†ćƒŖć‚¢ćƒ«ę Ŗå¼ä¼šē¤¾'),
(48142, 'https://ror.org/03p5hcj07', 'pt', 1, 'https://ror.org/03p5hcj07 Instituto Federal de Educação, Ciência e Tecnologia do Tocantins, Instituto Federal do Tocantins'),
(48143, 'https://ror.org/03p5s8507', 'en', 1, 'https://ror.org/03p5s8507 Niihama City Sumino Elementary School ę–°å±…ęµœåø‚ē«‹č§’é‡Žå°å­¦ę ”'),
(48144, 'https://ror.org/03p5v7r13', 'no_lang_code', 1, 'https://ror.org/03p5v7r13 Newron Pharmaceuticals (United States)'),
(48145, 'https://ror.org/03p706b71', 'es', 1, 'https://ror.org/03p706b71 Universidad Mesoamericana Oaxaca'),
(48146, 'https://ror.org/03paakw30', 'en', 1, 'https://ror.org/03paakw30 Jiseikai Welfare Kyusyu Hospital ē¦ē„‰ 九州 病院'),
(48147, 'https://ror.org/03pdvnb13', 'en', 1, 'https://ror.org/03pdvnb13 Okayama Prefectural Katsumata High School å²”å±±ēœŒē«‹å‹é–“ē”°é«˜ē­‰å­¦ę ”'),
(48148, 'https://ror.org/03pjj5012', 'en', 1, 'https://ror.org/03pjj5012 National Association of Broadcasters'),
(48149, 'https://ror.org/03pjs1y45', 'en', 1, 'https://ror.org/03pjs1y45 ForskningsrƄdet fƶr Miljƶ, Areella NƤringar och SamhƤllsbyggande Swedish Research Council for Environment Agricultural Sciences and Spatial Planning'),
(48150, 'https://ror.org/03pjzs448', 'no_lang_code', 1, 'https://ror.org/03pjzs448 Luxmux Technology (Canada)'),
(48151, 'https://ror.org/03pmbr594', 'no_lang_code', 1, 'https://ror.org/03pmbr594 Mitsuwadai General Hospital ćæć¤ć‚å°ē·åˆē—…é™¢'),
(48152, 'https://ror.org/03pmzch07', 'en', 1, 'https://ror.org/03pmzch07 National Institute for Public Policy'),
(48153, 'https://ror.org/03pngf508', 'en', 1, 'https://ror.org/03pngf508 National Institute of Technology, Suzuka College éˆ“é¹æå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”');
INSERT INTO `rors` VALUES
(48154, 'https://ror.org/03pp1bs03', 'en', 1, 'https://ror.org/03pp1bs03 Saga Prefectural Regional Industry Support Center å…¬ē›Šč²”å›£ę³•äŗŗ ä½č³€ēœŒåœ°åŸŸē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(48155, 'https://ror.org/03ppgxn28', 'en', 1, 'https://ror.org/03ppgxn28 Aichi Prefectural Jishukan Senior High School ę„›ēŸ„ēœŒē«‹ę™‚ēæ’é¤Øé«˜ē­‰å­¦ę ”'),
(48156, 'https://ror.org/03pqjm879', 'no_lang_code', 1, 'https://ror.org/03pqjm879 Alcoa (Australia)'),
(48157, 'https://ror.org/03pr7r585', 'en', 1, 'https://ror.org/03pr7r585 Disaster Reduction and Human Renovation Institution é˜Ŗē„žćƒ»ę·”č·Æå¤§éœ‡ē½čØ˜åæµ äŗŗćØé˜²ē½ęœŖę„ć‚»ćƒ³ć‚æćƒ¼'),
(48158, 'https://ror.org/03ptyn747', 'en', 1, 'https://ror.org/03ptyn747 Alabama Department of Commerce'),
(48159, 'https://ror.org/03pwtnm85', 'en', 1, 'https://ror.org/03pwtnm85 Mie Prefectural Police äø‰é‡ēœŒč­¦åÆŸ'),
(48160, 'https://ror.org/03pwzr890', 'no_lang_code', 1, 'https://ror.org/03pwzr890 Westinghouse Electric (Germany)'),
(48161, 'https://ror.org/03px70152', 'en', 1, 'https://ror.org/03px70152 Government of Prince Edward Island'),
(48162, 'https://ror.org/03q0a5512', 'en', 1, 'https://ror.org/03q0a5512 Association du Barreau Canadien Canadian Bar Association'),
(48163, 'https://ror.org/03q170s02', 'it', 1, 'https://ror.org/03q170s02 Associazione Malattie Autoimmuni Mario Rossi'),
(48164, 'https://ror.org/03q1pf281', 'no_lang_code', 1, 'https://ror.org/03q1pf281 Central Glass (Japan) ć‚»ćƒ³ćƒˆćƒ©ćƒ«ē”å­ę Ŗå¼ä¼šē¤¾'),
(48165, 'https://ror.org/03q2wez45', 'fr', 1, 'https://ror.org/03q2wez45 Instituts FranƧais de Recherche Ơ L''Ɖtranger'),
(48166, 'https://ror.org/03q6yg517', 'en', 1, 'https://ror.org/03q6yg517 Ibaraki Prefectural Mito First High School čŒØåŸŽēœŒē«‹ę°“ęˆøē¬¬äø€é«˜ē­‰å­¦ę ”'),
(48167, 'https://ror.org/03q8m4c63', 'en', 1, 'https://ror.org/03q8m4c63 Hiroshima Prefectural Education Center åŗƒå³¶ēœŒē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(48168, 'https://ror.org/03q8prw02', 'no_lang_code', 1, 'https://ror.org/03q8prw02 Mitsui Bunko å…¬ē›Šč²”å›£ę³•äŗŗ 三井文庫'),
(48169, 'https://ror.org/03q8xbd64', 'no_lang_code', 1, 'https://ror.org/03q8xbd64 EntoGenetics (United States)'),
(48170, 'https://ror.org/03qe98b42', 'en', 1, 'https://ror.org/03qe98b42 Victorian Institute of Teaching'),
(48171, 'https://ror.org/03qfcr435', 'en', 1, 'https://ror.org/03qfcr435 Education Writers Association'),
(48172, 'https://ror.org/03qjf8t17', 'en', 1, 'https://ror.org/03qjf8t17 Calvert Foundation'),
(48173, 'https://ror.org/03qks6h28', 'en', 1, 'https://ror.org/03qks6h28 Syusaku Endo Literature Museum é č—¤å‘Øä½œę–‡å­¦é¤Ø'),
(48174, 'https://ror.org/03qmn8977', 'en', 1, 'https://ror.org/03qmn8977 Operation Wallacea Trust'),
(48175, 'https://ror.org/03qnbmn78', 'es', 1, 'https://ror.org/03qnbmn78 Centro Universitario de Educación Física'),
(48176, 'https://ror.org/03qnn2831', 'no_lang_code', 1, 'https://ror.org/03qnn2831 APS Technology (United States)'),
(48177, 'https://ror.org/03qqt7x47', 'en', 1, 'https://ror.org/03qqt7x47 Art Gallery of New South Wales'),
(48178, 'https://ror.org/03qx6b307', 'en', 1, 'https://ror.org/03qx6b307 Maputo Central Hospital'),
(48179, 'https://ror.org/03qxptw71', 'en', 1, 'https://ror.org/03qxptw71 Cancer Research UK Clinical Trials Unit'),
(48180, 'https://ror.org/03qyehc05', 'en', 1, 'https://ror.org/03qyehc05 Ikenobo Junior College ę± åŠēŸ­ęœŸå¤§å­¦'),
(48181, 'https://ror.org/03r0qzh12', 'fr', 1, 'https://ror.org/03r0qzh12 UniversitƩ Jean Price Mars'),
(48182, 'https://ror.org/03r33km95', 'no_lang_code', 1, 'https://ror.org/03r33km95 Eaton (Germany)'),
(48183, 'https://ror.org/03r35e117', 'no_lang_code', 1, 'https://ror.org/03r35e117 Chiba Hospital'),
(48184, 'https://ror.org/03r46a684', 'no_lang_code', 1, 'https://ror.org/03r46a684 Inventec (Taiwan) č‹±ę„­é”å…¬åø'),
(48185, 'https://ror.org/03r5mvm76', 'en', 1, 'https://ror.org/03r5mvm76 Iwate Prefectural Morioka Agricultural High School å²©ę‰‹ēœŒē«‹ē››å²”č¾²ę„­é«˜ē­‰å­¦ę ”'),
(48186, 'https://ror.org/03r5svt24', 'en', 1, 'https://ror.org/03r5svt24 Ethel L. Whipple Memorial Library'),
(48187, 'https://ror.org/03r6s6r63', 'en', 1, 'https://ror.org/03r6s6r63 Nagaoka Municipal Science Museum'),
(48188, 'https://ror.org/03r6vc108', 'en', 1, 'https://ror.org/03r6vc108 National Maritime Foundation'),
(48189, 'https://ror.org/03r8vy816', 'en', 1, 'https://ror.org/03r8vy816 Austin Voices for Education and Youth'),
(48190, 'https://ror.org/03raj9g82', 'en', 1, 'https://ror.org/03raj9g82 Asahikawa Museum of Sculpture äø­åŽŸę‚ŒäŗŒéƒŽčØ˜åæµę—­å·åø‚å½«åˆ»ē¾Žč”“é¤Ø'),
(48191, 'https://ror.org/03rb4a416', 'en', 1, 'https://ror.org/03rb4a416 George W. Bush Presidential Center'),
(48192, 'https://ror.org/03rgkeg55', 'no_lang_code', 1, 'https://ror.org/03rgkeg55 Ayar Labs (United States)'),
(48193, 'https://ror.org/03rh4dk07', 'en', 1, 'https://ror.org/03rh4dk07 Lifelong AIDS Alliance'),
(48194, 'https://ror.org/03rjhat65', 'en', 1, 'https://ror.org/03rjhat65 Consortium of Florida Education Foundations'),
(48195, 'https://ror.org/03rn1m191', 'en', 1, 'https://ror.org/03rn1m191 Mid-Continent University'),
(48196, 'https://ror.org/03rnthv34', 'en', 1, 'https://ror.org/03rnthv34 Japan Underwater Robot Network ę—„ęœ¬ę°“äø­ćƒ­ćƒœćƒćƒƒćƒˆ'),
(48197, 'https://ror.org/03rqtbt42', 'en', 1, 'https://ror.org/03rqtbt42 Sule Lamido University'),
(48198, 'https://ror.org/03rrpvb29', 'en', 1, 'https://ror.org/03rrpvb29 Digital Public Library of America'),
(48199, 'https://ror.org/03rx9np38', 'no_lang_code', 1, 'https://ror.org/03rx9np38 BlackBerry (United Kingdom)'),
(48200, 'https://ror.org/03rxmnz72', 'no_lang_code', 1, 'https://ror.org/03rxmnz72 PrimeNano (united States)'),
(48201, 'https://ror.org/03ryarw12', 'en', 1, 'https://ror.org/03ryarw12 American India Foundation'),
(48202, 'https://ror.org/03rzr6095', 'no_lang_code', 1, 'https://ror.org/03rzr6095 Oxonica (United States)'),
(48203, 'https://ror.org/03s28ec08', 'en', 1, 'https://ror.org/03s28ec08 Institute of Precision Mechanics and Control Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем точной механики Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(48204, 'https://ror.org/03s603381', 'en', 1, 'https://ror.org/03s603381 Pennyrile Area Development District'),
(48205, 'https://ror.org/03sct1f35', 'no_lang_code', 1, 'https://ror.org/03sct1f35 Aluminum Corporation of China (China) äø­å›½é“äøšå…¬åø'),
(48206, 'https://ror.org/03sear378', 'fr', 1, 'https://ror.org/03sear378 Fondation Travail-UniversitƩ'),
(48207, 'https://ror.org/03sgtgn54', 'no_lang_code', 1, 'https://ror.org/03sgtgn54 KanEnergi (Sweden)'),
(48208, 'https://ror.org/03shw7f84', 'en', 1, 'https://ror.org/03shw7f84 Aicihi Prefectural Kariya High School ę„›ēŸ„ēœŒē«‹åˆˆč°·é«˜ē­‰å­¦ę ”'),
(48209, 'https://ror.org/03sk50y83', 'no_lang_code', 1, 'https://ror.org/03sk50y83 Dart NeuroScience (United States)'),
(48210, 'https://ror.org/03skd0235', 'en', 1, 'https://ror.org/03skd0235 Charities Aid Foundation'),
(48211, 'https://ror.org/03smpvb86', 'en', 1, 'https://ror.org/03smpvb86 Yamaguchi Education Support Center ć‚„ć¾ćć”ē·åˆę•™č‚²ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(48212, 'https://ror.org/03sn26h43', 'en', 1, 'https://ror.org/03sn26h43 Institute of Population and Labor Economics äø­å›½ē¤¾ä¼šē§‘å­¦é™¢äŗŗå£äøŽåŠ³åŠØē»ęµŽē ”ē©¶ę‰€'),
(48213, 'https://ror.org/03snppx81', 'en', 1, 'https://ror.org/03snppx81 California Women Lawyers'),
(48214, 'https://ror.org/03sqx5r23', 'en', 1, 'https://ror.org/03sqx5r23 Nishi-Nippon Junior College č„æę—„ęœ¬ēŸ­ęœŸå¤§å­¦'),
(48215, 'https://ror.org/03ssr0e93', 'en', 1, 'https://ror.org/03ssr0e93 Kyoto Prefectural Tanabe High School äŗ¬éƒ½åŗœē«‹ē”°č¾ŗé«˜ē­‰å­¦ę ”'),
(48216, 'https://ror.org/03sv0ep05', 'en', 1, 'https://ror.org/03sv0ep05 Heilongjiang Academy of Land Reclamation Sciences é»‘é¾™ę±Ÿå†œęž—ē§‘ęŠ€å¤§å­¦'),
(48217, 'https://ror.org/03syafb36', 'no_lang_code', 1, 'https://ror.org/03syafb36 Kaio Therapy (United States)'),
(48218, 'https://ror.org/03sygh166', 'en', 1, 'https://ror.org/03sygh166 Trust Management Institut'),
(48219, 'https://ror.org/03t1q5m92', 'no_lang_code', 1, 'https://ror.org/03t1q5m92 PixArt (Taiwan) åŽŸē›øęˆåƒå…¬åø'),
(48220, 'https://ror.org/03t25y916', 'en', 1, 'https://ror.org/03t25y916 Open International University for Alternative Medicines'),
(48221, 'https://ror.org/03t2d8h32', 'en', 1, 'https://ror.org/03t2d8h32 Tokyo Metropolitan Shakujii High School ę±äŗ¬éƒ½ē«‹ēŸ³ē„žäŗ•é«˜ē­‰å­¦ę ”'),
(48222, 'https://ror.org/03t47sr41', 'en', 1, 'https://ror.org/03t47sr41 Xinjiang Uygur Autonomous Region Uygur Medicine Hospital ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē»“å¾å°”åŒ»åŒ»é™¢'),
(48223, 'https://ror.org/03t4z6b53', 'en', 1, 'https://ror.org/03t4z6b53 Oita Prefectural Oita Technical High School å¤§åˆ†ēœŒē«‹å¤§åˆ†å·„ę„­é«˜ē­‰å­¦ę ”'),
(48224, 'https://ror.org/03t5zv452', 'no_lang_code', 1, 'https://ror.org/03t5zv452 Presage Biosciences (United States)'),
(48225, 'https://ror.org/03t627237', 'no_lang_code', 1, 'https://ror.org/03t627237 TerraVerdae BioWorks (Canada)'),
(48226, 'https://ror.org/03t67hw32', 'no_lang_code', 1, 'https://ror.org/03t67hw32 American Superconductor (Austria)'),
(48227, 'https://ror.org/03t94kt09', 'no_lang_code', 1, 'https://ror.org/03t94kt09 Diebold Nixdorf (United States)'),
(48228, 'https://ror.org/03t9ags07', 'en', 1, 'https://ror.org/03t9ags07 Central Savannah River Area Regional Commission'),
(48229, 'https://ror.org/03ta8v762', 'en', 1, 'https://ror.org/03ta8v762 Saitama Prefectural Omiya High School åŸ¼ēŽ‰ēœŒē«‹å¤§å®®é«˜ē­‰å­¦ę ”'),
(48230, 'https://ror.org/03tam1j96', 'no_lang_code', 1, 'https://ror.org/03tam1j96 Adidas (United States)'),
(48231, 'https://ror.org/03tasb223', 'no_lang_code', 1, 'https://ror.org/03tasb223 Collingwood Environmental Planning (United Kingdom)'),
(48232, 'https://ror.org/03tavcq25', 'no_lang_code', 1, 'https://ror.org/03tavcq25 Eboo Pharmaceuticals (United States)'),
(48233, 'https://ror.org/03tb2xj87', 'no_lang_code', 1, 'https://ror.org/03tb2xj87 Mantex (Sweden)'),
(48234, 'https://ror.org/03tb78t08', 'en', 1, 'https://ror.org/03tb78t08 Nara Prefectural Institute for Educational Research å„ˆč‰ÆēœŒē«‹ę•™č‚²ē ”ē©¶ę‰€'),
(48235, 'https://ror.org/03tebsy12', 'en', 1, 'https://ror.org/03tebsy12 Zhejiang Academy of Medical Sciences ęµ™ę±ŸēœåŒ»å­¦ē§‘å­¦é™¢'),
(48236, 'https://ror.org/03tf9y485', 'no_lang_code', 1, 'https://ror.org/03tf9y485 Semiconductor Manufacturing International (China) äø­čŠÆå›½é™…é›†ęˆē”µč·Æåˆ¶é€ ęœ‰é™å…¬åø'),
(48237, 'https://ror.org/03thg1m49', 'no_lang_code', 1, 'https://ror.org/03thg1m49 Electrolux (Germany)'),
(48238, 'https://ror.org/03tk15k72', 'en', 1, 'https://ror.org/03tk15k72 Ministry of Natural Resources'),
(48239, 'https://ror.org/03tkypj50', 'en', 1, 'https://ror.org/03tkypj50 Gyeongsan Science High School 경산과학고등학교'),
(48240, 'https://ror.org/03tmsgc53', 'en', 1, 'https://ror.org/03tmsgc53 Amarillo Area Foundation'),
(48241, 'https://ror.org/03tre1g84', 'en', 1, 'https://ror.org/03tre1g84 Arbeitsgruppe Friedensforschung und EuropƤische Sicherheitspolitik Peace Research and European Security Studies'),
(48242, 'https://ror.org/03tv2a598', 'en', 1, 'https://ror.org/03tv2a598 Green Infrastructure Center'),
(48243, 'https://ror.org/03tvrj437', 'no_lang_code', 1, 'https://ror.org/03tvrj437 Amresco (United States)'),
(48244, 'https://ror.org/03tw6b878', 'no_lang_code', 1, 'https://ror.org/03tw6b878 D-Tech (United States)'),
(48245, 'https://ror.org/03twzfb97', 'en', 1, 'https://ror.org/03twzfb97 National Institute of Technology, Kushiro College é‡§č·Æå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(48246, 'https://ror.org/03tx9ed22', 'en', 1, 'https://ror.org/03tx9ed22 Institute of Pomology ęžœę ‘ē ”ē©¶ę‰€'),
(48247, 'https://ror.org/03tx9vd35', 'no_lang_code', 1, 'https://ror.org/03tx9vd35 EntryPoint (United States)'),
(48248, 'https://ror.org/03tz3ps07', 'en', 1, 'https://ror.org/03tz3ps07 Japan Economic Research Institute'),
(48249, 'https://ror.org/03v1bhv69', 'no_lang_code', 1, 'https://ror.org/03v1bhv69 LSIS (South Korea) ģ‚°ģ „'),
(48250, 'https://ror.org/03v1z6488', 'en', 1, 'https://ror.org/03v1z6488 Inter Tribal Council of Arizona'),
(48251, 'https://ror.org/03v2aht94', 'de', 1, 'https://ror.org/03v2aht94 Franziskushospital Aachen'),
(48252, 'https://ror.org/03v48ps49', 'en', 1, 'https://ror.org/03v48ps49 O.Ya. Usikov Institute for Radiophysics and Electronics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГіофізики та електроніки ім. Šž. ŠÆ Усикова ŠŠŠ України'),
(48253, 'https://ror.org/03v7d3233', 'de', 1, 'https://ror.org/03v7d3233 Tumor- und Brustzentrum ZeTuP Silberturm'),
(48254, 'https://ror.org/03v9g5m88', 'en', 1, 'https://ror.org/03v9g5m88 Seibi High School å¤§é˜Ŗåŗœē«‹ęˆē¾Žé«˜ē­‰å­¦ę ”'),
(48255, 'https://ror.org/03vb8st39', 'en', 1, 'https://ror.org/03vb8st39 Australian Human Rights Commission'),
(48256, 'https://ror.org/03vbj6030', 'no_lang_code', 1, 'https://ror.org/03vbj6030 Whitaker House'),
(48257, 'https://ror.org/03vc23h03', 'no_lang_code', 1, 'https://ror.org/03vc23h03 Wireilla Scientific Publications (Australia)'),
(48258, 'https://ror.org/03vezy923', 'en', 1, 'https://ror.org/03vezy923 American Society for Theatre Research'),
(48259, 'https://ror.org/03vg6va04', 'en', 1, 'https://ror.org/03vg6va04 Health Strategy and Delivery Foundation'),
(48260, 'https://ror.org/03vg8tm37', 'en', 1, 'https://ror.org/03vg8tm37 Akita Industrial Technology Center ē§‹ē”°ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(48261, 'https://ror.org/03vj25186', 'no_lang_code', 1, 'https://ror.org/03vj25186 Sumitomo Precision Products (Canada) ä½å‹ē²¾åÆ†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(48262, 'https://ror.org/03vj6qh87', 'en', 1, 'https://ror.org/03vj6qh87 Carbondale Public Library'),
(48263, 'https://ror.org/03vjb5959', 'no_lang_code', 1, 'https://ror.org/03vjb5959 Cypress Semiconductor Corporation (Israel)'),
(48264, 'https://ror.org/03vkb9g96', 'en', 1, 'https://ror.org/03vkb9g96 Farm Africa'),
(48265, 'https://ror.org/03vn74a89', 'en', 1, 'https://ror.org/03vn74a89 Takarazuka University of Medical and Health Care å®å”šåŒ»ē™‚å¤§å­¦'),
(48266, 'https://ror.org/03vp7ry06', 'es', 1, 'https://ror.org/03vp7ry06 Instituto de Neurociencia BiomƩdica'),
(48267, 'https://ror.org/03vqp1c86', 'fr', 1, 'https://ror.org/03vqp1c86 SociƩtƩ FranƧaise de Cardiologie'),
(48268, 'https://ror.org/03vr02c19', 'en', 1, 'https://ror.org/03vr02c19 Kanagawa Prefecture Education Center ē„žå„ˆå·ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(48269, 'https://ror.org/03vrane61', 'no_lang_code', 1, 'https://ror.org/03vrane61 Museum of Modern Art Kamakura and Hayama ē„žå„ˆå·ēœŒē«‹čæ‘ä»£ē¾Žč”“é¤Øč‘‰å±±'),
(48270, 'https://ror.org/03vs1ak92', 'en', 1, 'https://ror.org/03vs1ak92 ABM University College'),
(48271, 'https://ror.org/03vvewn46', 'en', 1, 'https://ror.org/03vvewn46 Fraunhofer Institute for Organic Electronics, Electron Beam and Plasma Technology Fraunhofer-Institut für Organische Elektronik, Elektronenstrahl- und Plasmatechnik'),
(48272, 'https://ror.org/03vyd8n59', 'en', 1, 'https://ror.org/03vyd8n59 Pontifical Academy of Sciences Pontificia Academia Scientiarum Pontificia accademia delle scienze'),
(48273, 'https://ror.org/03vzakk34', 'no_lang_code', 1, 'https://ror.org/03vzakk34 TE Connectivity (South Korea)'),
(48274, 'https://ror.org/03w09vt43', 'en', 1, 'https://ror.org/03w09vt43 Minabe Senior High School å’Œę­Œå±±ēœŒē«‹å—éƒØé«˜ē­‰å­¦ę ”'),
(48275, 'https://ror.org/03w0bbr97', 'en', 1, 'https://ror.org/03w0bbr97 Fraunhofer Institute for Applied and Integrated Security Fraunhofer-Institut für Angewandte und Integrierte Sicherheit'),
(48276, 'https://ror.org/03w3b4f85', 'no_lang_code', 1, 'https://ror.org/03w3b4f85 ThyssenKrupp (United Kingdom)'),
(48277, 'https://ror.org/03w3k6x10', 'de', 1, 'https://ror.org/03w3k6x10 Ɩsterreichische Gesellschaft für HƤmatologie & Medizinische Onkologie'),
(48278, 'https://ror.org/03w8f2q69', 'no_lang_code', 1, 'https://ror.org/03w8f2q69 Danone (United Kingdom)'),
(48279, 'https://ror.org/03w9z9x42', 'en', 1, 'https://ror.org/03w9z9x42 Ashland Community and Technical College'),
(48280, 'https://ror.org/03wa5t726', 'en', 1, 'https://ror.org/03wa5t726 Kansas Grain Sorghum Commission and Producers Association'),
(48281, 'https://ror.org/03whnfd14', 'no_lang_code', 1, 'https://ror.org/03whnfd14 GlobalFoundries (Singapore)'),
(48282, 'https://ror.org/03wjq7x76', 'de', 1, 'https://ror.org/03wjq7x76 Deutsche Ophthalmologische Gesellschaft'),
(48283, 'https://ror.org/03wkb8h74', 'es', 1, 'https://ror.org/03wkb8h74 Universidad Albert Einstein'),
(48284, 'https://ror.org/03wkeky45', 'en', 1, 'https://ror.org/03wkeky45 Australian Society of Anaesthetists'),
(48285, 'https://ror.org/03wkqfb95', 'no_lang_code', 1, 'https://ror.org/03wkqfb95 Shimano (Japan) ę Ŗå¼ä¼šē¤¾ć‚·ćƒžćƒŽ'),
(48286, 'https://ror.org/03wm7z656', 'en', 1, 'https://ror.org/03wm7z656 Commission gƩologique du Canada Geological Survey of Canada'),
(48287, 'https://ror.org/03wnay029', 'no_lang_code', 1, 'https://ror.org/03wnay029 Abbott (United Kingdom)'),
(48288, 'https://ror.org/03wny3351', 'no_lang_code', 1, 'https://ror.org/03wny3351 Bluegrass Advanced Materials (United States)'),
(48289, 'https://ror.org/03wq67h32', 'en', 1, 'https://ror.org/03wq67h32 Fraunhofer Institute for Nondestructive Testing Fraunhofer-Institut für Zerstörungsfreie Prüfverfahren'),
(48290, 'https://ror.org/03wqdw813', 'no_lang_code', 1, 'https://ror.org/03wqdw813 Mind Matters Research (United States)'),
(48291, 'https://ror.org/03wsdn138', 'no_lang_code', 1, 'https://ror.org/03wsdn138 OmniVision Technologies (China)'),
(48292, 'https://ror.org/03wsgwc11', 'en', 1, 'https://ror.org/03wsgwc11 Scleroderma and Raynaud''s UK'),
(48293, 'https://ror.org/03wtdg769', 'en', 1, 'https://ror.org/03wtdg769 Liaoning Jianzhu Vocational University č¾½å®äæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(48294, 'https://ror.org/03wvnx995', 'no_lang_code', 1, 'https://ror.org/03wvnx995 Broadcom (Spain)'),
(48295, 'https://ror.org/03wyfav89', 'no_lang_code', 1, 'https://ror.org/03wyfav89 Datapixel (Spain)'),
(48296, 'https://ror.org/03wz9xk91', 'en', 1, 'https://ror.org/03wz9xk91 Leibniz-Centre General Linguistics Leibniz-Zentrum Allgemeine Sprachwissenschaft'),
(48297, 'https://ror.org/03wzg8933', 'en', 1, 'https://ror.org/03wzg8933 GAIA Vaccine Foundation'),
(48298, 'https://ror.org/03x159f63', 'en', 1, 'https://ror.org/03x159f63 Ehime Prefectural Education Center ę„›åŖ›ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(48299, 'https://ror.org/03x212m64', 'no_lang_code', 1, 'https://ror.org/03x212m64 Eles (Slovenia)'),
(48300, 'https://ror.org/03x43h020', 'en', 1, 'https://ror.org/03x43h020 Changchun Children''s Hospital é•æę˜„åø‚å„æē«„åŒ»é™¢'),
(48301, 'https://ror.org/03x705365', 'no_lang_code', 1, 'https://ror.org/03x705365 Cook Medical (United States)'),
(48302, 'https://ror.org/03x7xkr71', 'en', 1, 'https://ror.org/03x7xkr71 Institute of Sciences of Food Production Istituto di Scienze delle Produzioni Alimentari'),
(48303, 'https://ror.org/03xajsx66', 'no_lang_code', 1, 'https://ror.org/03xajsx66 Acer (Taiwan) å®ē¢'),
(48304, 'https://ror.org/03xbe8838', 'en', 1, 'https://ror.org/03xbe8838 Tianjin Fourth Hospital å¤©ę“„åø‚ē¬¬å››åŒ»é™¢'),
(48305, 'https://ror.org/03xbgnq70', 'en', 1, 'https://ror.org/03xbgnq70 Bethany University'),
(48306, 'https://ror.org/03xee0x32', 'en', 1, 'https://ror.org/03xee0x32 Nagoya Management Junior College åå¤å±‹ēµŒå–¶ēŸ­ęœŸå¤§å­¦'),
(48307, 'https://ror.org/03xg0ta66', 'en', 1, 'https://ror.org/03xg0ta66 Wikimedia UK'),
(48308, 'https://ror.org/03xg8x064', 'no_lang_code', 1, 'https://ror.org/03xg8x064 3D Systems (Israel)'),
(48309, 'https://ror.org/03xhjng91', 'no_lang_code', 1, 'https://ror.org/03xhjng91 Tomakomai Art Museum č‹«å°ē‰§åø‚ē¾Žč”“åšē‰©é¤Ø'),
(48310, 'https://ror.org/03xj60w92', 'en', 1, 'https://ror.org/03xj60w92 St Michael’s Hospital'),
(48311, 'https://ror.org/03xkdb465', 'es', 1, 'https://ror.org/03xkdb465 Consejo Estatal Del Azucar'),
(48312, 'https://ror.org/03xm57x75', 'pt', 1, 'https://ror.org/03xm57x75 Instituto de SaĆŗde'),
(48313, 'https://ror.org/03xn6hx74', 'en', 1, 'https://ror.org/03xn6hx74 Institute for Resource Analysis and Policy'),
(48314, 'https://ror.org/03xp8p672', 'no_lang_code', 1, 'https://ror.org/03xp8p672 Jahrom University دانؓگاه جهرم'),
(48315, 'https://ror.org/03xqv3p85', 'no_lang_code', 1, 'https://ror.org/03xqv3p85 Takeda (Germany)'),
(48316, 'https://ror.org/03xr77151', 'en', 1, 'https://ror.org/03xr77151 Myanmar Timber Enterprise'),
(48317, 'https://ror.org/03xrabt76', 'en', 1, 'https://ror.org/03xrabt76 Emirates Diplomatic Academy'),
(48318, 'https://ror.org/03xtkzq16', 'no_lang_code', 1, 'https://ror.org/03xtkzq16 Beppu Mizobe Gakuen College åˆ„åŗœęŗéƒØå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(48319, 'https://ror.org/03xvcy884', 'pt', 1, 'https://ror.org/03xvcy884 Sociedade Portuguesa de Nefrologia'),
(48320, 'https://ror.org/03xxbcc33', 'en', 1, 'https://ror.org/03xxbcc33 Essex Disabled People''s Association'),
(48321, 'https://ror.org/03y00r958', 'en', 1, 'https://ror.org/03y00r958 Arab Foundations Forum ملتقى المؤسسات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© الداعمة'),
(48322, 'https://ror.org/03y07wm59', 'pt', 1, 'https://ror.org/03y07wm59 Associação Nacional de Pesquisadores e Professores de História das Américas'),
(48323, 'https://ror.org/03y203366', 'no_lang_code', 1, 'https://ror.org/03y203366 Engineering Mechanics Corporation of Columbus (United States)'),
(48324, 'https://ror.org/03ybwam46', 'no_lang_code', 1, 'https://ror.org/03ybwam46 Integra LifeSciences (Ireland)'),
(48325, 'https://ror.org/03yca1933', 'no_lang_code', 1, 'https://ror.org/03yca1933 Fairchild Semiconductor (United States)'),
(48326, 'https://ror.org/03yg7hz06', 'en', 1, 'https://ror.org/03yg7hz06 Centre for Cancer Biology'),
(48327, 'https://ror.org/03ygwqt20', 'en', 1, 'https://ror.org/03ygwqt20 Toita Women''s College ęˆøęæå„³å­ēŸ­ęœŸå¤§å­¦'),
(48328, 'https://ror.org/03yh3e798', 'en', 1, 'https://ror.org/03yh3e798 Zhejiang Business Technology Institute ęµ™ę±Ÿå·„å•†čŒäøšęŠ€ęœÆå­¦é™¢'),
(48329, 'https://ror.org/03ym6nw09', 'en', 1, 'https://ror.org/03ym6nw09 Tsuruoka Technical High School å±±å½¢ēœŒē«‹é¶“å²”å·„ę„­é«˜ē­‰å­¦ę ”'),
(48330, 'https://ror.org/03yq5aa85', 'no_lang_code', 1, 'https://ror.org/03yq5aa85 Medtronic (Italy)'),
(48331, 'https://ror.org/03yqqb498', 'no_lang_code', 1, 'https://ror.org/03yqqb498 Attodyne (Canada)'),
(48332, 'https://ror.org/03yrr7p29', 'en', 1, 'https://ror.org/03yrr7p29 Aichi Prefectural Education Center ę„›ēŸ„ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(48333, 'https://ror.org/03ys00e11', 'en', 1, 'https://ror.org/03ys00e11 Tokyo High School ę±äŗ¬é«˜ē­‰å­¦ę ”'),
(48334, 'https://ror.org/03yskk486', 'no_lang_code', 1, 'https://ror.org/03yskk486 Sumitomo Heavy Industries (Japan) ä½å‹é‡ę©Ÿę¢°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(48335, 'https://ror.org/03yvav120', 'no_lang_code', 1, 'https://ror.org/03yvav120 Nikki-Universal (Japan) ę—„ę®ćƒ¦ćƒ‹ćƒćƒ¼ć‚µćƒ«ę Ŗå¼ä¼šē¤¾ćÆ'),
(48336, 'https://ror.org/03yw95n57', 'no_lang_code', 1, 'https://ror.org/03yw95n57 Amdocs (Philippines)'),
(48337, 'https://ror.org/03yzv2h28', 'en', 1, 'https://ror.org/03yzv2h28 Fresno County Office of Education'),
(48338, 'https://ror.org/03z19e593', 'no_lang_code', 1, 'https://ror.org/03z19e593 Schenck Process (Germany)'),
(48339, 'https://ror.org/03z1phr67', 'en', 1, 'https://ror.org/03z1phr67 Charisma University'),
(48340, 'https://ror.org/03z3d5x54', 'no_lang_code', 1, 'https://ror.org/03z3d5x54 Valeo (Japan)'),
(48341, 'https://ror.org/03z4zm883', 'en', 1, 'https://ror.org/03z4zm883 Speech Pathology Australia'),
(48342, 'https://ror.org/03z5xry11', 'no_lang_code', 1, 'https://ror.org/03z5xry11 HannStar Display (Taiwan) ē€šå®‡å½©ę™¶č‚”ä»½ęœ‰é™å…¬åø'),
(48343, 'https://ror.org/03z6tkz58', 'no_lang_code', 1, 'https://ror.org/03z6tkz58 Element Six (United States)'),
(48344, 'https://ror.org/03z8jm198', 'en', 1, 'https://ror.org/03z8jm198 Herzberg Institute of Astrophysics'),
(48345, 'https://ror.org/03zan4871', 'en', 1, 'https://ror.org/03zan4871 Collaborative Centre for Applied Nanotechnology'),
(48346, 'https://ror.org/03zet0z83', 'en', 1, 'https://ror.org/03zet0z83 Norin High School å±±ę¢ØēœŒē«‹č¾²ęž—é«˜ē­‰å­¦ę ”'),
(48347, 'https://ror.org/03zfg1z12', 'no_lang_code', 1, 'https://ror.org/03zfg1z12 Airex Industries (Canada)'),
(48348, 'https://ror.org/03zhmtk18', 'no_lang_code', 1, 'https://ror.org/03zhmtk18 Material Change (United KIngdom)'),
(48349, 'https://ror.org/03zhn2w96', 'no_lang_code', 1, 'https://ror.org/03zhn2w96 MAAX Bath (Canada)'),
(48350, 'https://ror.org/03zkbs573', 'en', 1, 'https://ror.org/03zkbs573 Seismological Society of America'),
(48351, 'https://ror.org/03zkxdc34', 'en', 1, 'https://ror.org/03zkxdc34 Shizuoka Prefectural Central Library é™å²”ēœŒē«‹äø­å¤®å›³ę›øé¤Ø'),
(48352, 'https://ror.org/03zm7w502', 'no_lang_code', 1, 'https://ror.org/03zm7w502 Concept Life Sciences (United Kingdom)'),
(48353, 'https://ror.org/03zm9c356', 'no_lang_code', 1, 'https://ror.org/03zm9c356 VesmĆ­r (Czechia)'),
(48354, 'https://ror.org/03zn1fw73', 'en', 1, 'https://ror.org/03zn1fw73 Tokyo Institute for Municipal Research åø‚å–¶ē ”ē©¶ę±äŗ¬å·„ę„­å¤§å­¦'),
(48355, 'https://ror.org/03zn2pc63', 'en', 1, 'https://ror.org/03zn2pc63 Yamanashi Prefectural Museum of Archaeology å±±ę¢ØēœŒē«‹č€ƒå¤åšē‰©é¤Ø'),
(48356, 'https://ror.org/03zn93s35', 'en', 1, 'https://ror.org/03zn93s35 Swiss Museum of Transport Verkehrshaus der Schweiz'),
(48357, 'https://ror.org/03zn9xn73', 'en', 1, 'https://ror.org/03zn9xn73 Society of Actuaries'),
(48358, 'https://ror.org/03zna3e03', 'no_lang_code', 1, 'https://ror.org/03zna3e03 Oerlikon (Germany)'),
(48359, 'https://ror.org/03znyqq54', 'en', 1, 'https://ror.org/03znyqq54 Ichinohe High School å²©ę‰‹ēœŒē«‹äø€ęˆøé«˜ē­‰å­¦ę ”'),
(48360, 'https://ror.org/03zqxr976', 'en', 1, 'https://ror.org/03zqxr976 Jiangsu Provincial Institute of Geological Survey ę±Ÿč‹ēœåœ°č“Øč°ƒęŸ„ē ”ē©¶é™¢'),
(48361, 'https://ror.org/03zr6cm28', 'no_lang_code', 1, 'https://ror.org/03zr6cm28 Shizuoka Prefectural Gotemba Minami High School é™å²”ēœŒē«‹å¾”ę®æå “å—é«˜ē­‰å­¦ę ”'),
(48362, 'https://ror.org/03zrj3m15', 'en', 1, 'https://ror.org/03zrj3m15 Riverside Hospital of Guangxi Zhuang Autonomous Region å¹æč„æå£®ę—č‡Ŗę²»åŒŗę±Ÿę»ØåŒ»é™¢'),
(48363, 'https://ror.org/03zta3k64', 'da', 1, 'https://ror.org/03zta3k64 Nyreforeningen'),
(48364, 'https://ror.org/03zta4r50', 'en', 1, 'https://ror.org/03zta4r50 Bangladesh University বাংলাদেশ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(48365, 'https://ror.org/03zvyfv67', 'no_lang_code', 1, 'https://ror.org/03zvyfv67 Broadcom (Singapore)'),
(48366, 'https://ror.org/03zwb3g19', 'en', 1, 'https://ror.org/03zwb3g19 East Central Wisconsin Regional Planning Commission'),
(48367, 'https://ror.org/03zxkth58', 'en', 1, 'https://ror.org/03zxkth58 Montgomery County Memorial Library System'),
(48368, 'https://ror.org/03zxsvn45', 'no_lang_code', 1, 'https://ror.org/03zxsvn45 Dover (Canada)'),
(48369, 'https://ror.org/03zy2nt21', 'en', 1, 'https://ror.org/03zy2nt21 National Institute of Urban Affairs'),
(48370, 'https://ror.org/03zyyep49', 'en', 1, 'https://ror.org/03zyyep49 Kanagawa Prefectural Zushi High School ē„žå„ˆå·ēœŒē«‹é€—å­é«˜ē­‰å­¦ę ”'),
(48371, 'https://ror.org/0400cp237', 'en', 1, 'https://ror.org/0400cp237 Saga Prefectural Education Center ä½č³€ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(48372, 'https://ror.org/0400j8512', 'en', 1, 'https://ror.org/0400j8512 Eye Bank Association of America'),
(48373, 'https://ror.org/0400tr590', 'no_lang_code', 1, 'https://ror.org/0400tr590 BioAxis DNA Research Centre (India)'),
(48374, 'https://ror.org/0402q0384', 'no_lang_code', 1, 'https://ror.org/0402q0384 Osaka Shin-ai College å¤§é˜Ŗäæ”ę„›å„³å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(48375, 'https://ror.org/0403wct47', 'en', 1, 'https://ror.org/0403wct47 AllAfrica Foundation'),
(48376, 'https://ror.org/040aqvh16', 'en', 1, 'https://ror.org/040aqvh16 United Nations University UniversitƤt der Vereinten Nationen'),
(48377, 'https://ror.org/040b3ts84', 'de', 1, 'https://ror.org/040b3ts84 Institut für Medien- und Kommunikationspolitik'),
(48378, 'https://ror.org/040c53642', 'en', 1, 'https://ror.org/040c53642 Guizhou Provincial Meteorological Bureau č“µå·žę°”č±”åœØēŗæ'),
(48379, 'https://ror.org/040cv5a57', 'no_lang_code', 1, 'https://ror.org/040cv5a57 Imbio (United States)'),
(48380, 'https://ror.org/040dkzz12', 'no_lang_code', 1, 'https://ror.org/040dkzz12 Yahoo (United States)'),
(48381, 'https://ror.org/040ejvh72', 'en', 1, 'https://ror.org/040ejvh72 General Organization For Teaching Hospitals and Institutes Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„Ł…Ų³ŲŖŲ“ŁŁŠŲ§ŲŖ ŁˆŲ§Ł„Ł…Ų¹Ų§Ł‡ŲÆ Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ…ŁŠŲ©'),
(48382, 'https://ror.org/040g6sv55', 'en', 1, 'https://ror.org/040g6sv55 Fukushima Prefectural Aizu Technical High School ē¦å³¶ēœŒē«‹ä¼šę“„å·„ę„­é«˜ē­‰å­¦ę ”'),
(48383, 'https://ror.org/040gj5g64', 'es', 1, 'https://ror.org/040gj5g64 Universidad PolitƩcnica de El Salvador'),
(48384, 'https://ror.org/040gyce73', 'en', 1, 'https://ror.org/040gyce73 Aman Foundation'),
(48385, 'https://ror.org/040hkct30', 'no_lang_code', 1, 'https://ror.org/040hkct30 Applied Academics (United States)'),
(48386, 'https://ror.org/040k8g838', 'en', 1, 'https://ror.org/040k8g838 Institute for Advanced Journalism Studies'),
(48387, 'https://ror.org/040kgfc87', 'no_lang_code', 1, 'https://ror.org/040kgfc87 Lightwave Photonics (United States)'),
(48388, 'https://ror.org/040mta007', 'en', 1, 'https://ror.org/040mta007 National Institute of Technology, Oyama College å°å±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(48389, 'https://ror.org/040nt5929', 'en', 1, 'https://ror.org/040nt5929 Abramson Center for Jewish Life'),
(48390, 'https://ror.org/040ps8760', 'en', 1, 'https://ror.org/040ps8760 Insurance Claims Auditing and Professional Services'),
(48391, 'https://ror.org/040rkxg67', 'en', 1, 'https://ror.org/040rkxg67 Kanagawa prefectural Kanagawa Technical High School ē„žå„ˆå·ēœŒē«‹ē„žå„ˆå·å·„ę„­é«˜ē­‰å­¦ę ”'),
(48392, 'https://ror.org/040vema78', 'en', 1, 'https://ror.org/040vema78 Japan Society of Chemotherapy åŒ–å­¦ē™‚ę³•å­¦ä¼š'),
(48393, 'https://ror.org/040vg0k95', 'no_lang_code', 1, 'https://ror.org/040vg0k95 CNH Industrial (United States)'),
(48394, 'https://ror.org/040wknf84', 'en', 1, 'https://ror.org/040wknf84 Technological University Kyaing Tong į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(ကျိုင်းတုံ)'),
(48395, 'https://ror.org/040wmvn07', 'no_lang_code', 1, 'https://ror.org/040wmvn07 Ping (United States)'),
(48396, 'https://ror.org/040wrjh41', 'en', 1, 'https://ror.org/040wrjh41 Al-Buraimi University College ŁƒŁ„ŁŠŲ© Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ±ŁŠŁ…ŁŠ'),
(48397, 'https://ror.org/040y3df60', 'no_lang_code', 1, 'https://ror.org/040y3df60 Ipsen (Ireland)'),
(48398, 'https://ror.org/040y74d88', 'pt', 1, 'https://ror.org/040y74d88 Associação Fundo de Incentivo à Pesquisa'),
(48399, 'https://ror.org/040yw9w41', 'mg', 1, 'https://ror.org/040yw9w41 Madagasikara Voakajy'),
(48400, 'https://ror.org/040yzn427', 'no_lang_code', 1, 'https://ror.org/040yzn427 Wang NMR (United States)'),
(48401, 'https://ror.org/040zdhw11', 'en', 1, 'https://ror.org/040zdhw11 Global Business School Network'),
(48402, 'https://ror.org/041021r97', 'en', 1, 'https://ror.org/041021r97 Rotary Club of Emerald City'),
(48403, 'https://ror.org/0412jyn76', 'no_lang_code', 1, 'https://ror.org/0412jyn76 Prodevelop (Spain)'),
(48404, 'https://ror.org/04134ed78', 'en', 1, 'https://ror.org/04134ed78 Okayama Prefectural Police 岔山県警察'),
(48405, 'https://ror.org/0413wb785', 'fr', 1, 'https://ror.org/0413wb785 RƩseau MARP'),
(48406, 'https://ror.org/0414hra82', 'no_lang_code', 1, 'https://ror.org/0414hra82 Capcom (Japan) ę Ŗå¼ä¼šē¤¾ć‚«ćƒ—ć‚³ćƒ³'),
(48407, 'https://ror.org/041728v85', 'no_lang_code', 1, 'https://ror.org/041728v85 SiILion (United states)'),
(48408, 'https://ror.org/041746v50', 'en', 1, 'https://ror.org/041746v50 Catholic Health Association of India'),
(48409, 'https://ror.org/04185av43', 'no_lang_code', 1, 'https://ror.org/04185av43 IHI Corporation (United States)'),
(48410, 'https://ror.org/04199wj76', 'en', 1, 'https://ror.org/04199wj76 Entry Exit Inspection and Quarantine Bureau å¹æäøœå‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(48411, 'https://ror.org/041bad643', 'en', 1, 'https://ror.org/041bad643 Gunma Prefectural Board of Education ē¾¤é¦¬ēœŒę•™č‚²å§”å“”ä¼šćƒ›'),
(48412, 'https://ror.org/041bes686', 'en', 1, 'https://ror.org/041bes686 The Kagawa Museum é¦™å·ēœŒē«‹ćƒŸćƒ„ćƒ¼ć‚øć‚¢ćƒ '),
(48413, 'https://ror.org/041f2j414', 'no_lang_code', 1, 'https://ror.org/041f2j414 InnoCit (United States)'),
(48414, 'https://ror.org/041f67531', 'en', 1, 'https://ror.org/041f67531 American Psychoanalytic Association'),
(48415, 'https://ror.org/041h6pr97', 'no_lang_code', 1, 'https://ror.org/041h6pr97 Voith (Germany)'),
(48416, 'https://ror.org/041jbqr21', 'no_lang_code', 1, 'https://ror.org/041jbqr21 Stillwater (Canada)'),
(48417, 'https://ror.org/041jyes35', 'en', 1, 'https://ror.org/041jyes35 Obstetric Anaesthetists'' Association'),
(48418, 'https://ror.org/041q3q398', 'en', 1, 'https://ror.org/041q3q398 Nnamdi Azikiwe University Teaching Hospital'),
(48419, 'https://ror.org/041s2fp12', 'no_lang_code', 1, 'https://ror.org/041s2fp12 Inventec (China) 英ꄭ達'),
(48420, 'https://ror.org/041s9g982', 'en', 1, 'https://ror.org/041s9g982 Inland Northwest Community Foundation'),
(48421, 'https://ror.org/041t5sq72', 'no_lang_code', 1, 'https://ror.org/041t5sq72 JTEKT (United States)'),
(48422, 'https://ror.org/041w1ke73', 'en', 1, 'https://ror.org/041w1ke73 Centre Interdisciplinaire de DƩveloppement en Cartographie des OcƩans The Interdisciplinary Centre for the Development of Ocean Mapping'),
(48423, 'https://ror.org/041wrj753', 'no_lang_code', 1, 'https://ror.org/041wrj753 Aero Corporation (United States)'),
(48424, 'https://ror.org/041yd4786', 'en', 1, 'https://ror.org/041yd4786 Great Lakes Aquarium'),
(48425, 'https://ror.org/041zaaf26', 'es', 1, 'https://ror.org/041zaaf26 Universidad Braulio Carrillo'),
(48426, 'https://ror.org/041zrej81', 'no_lang_code', 1, 'https://ror.org/041zrej81 AccessTR'),
(48427, 'https://ror.org/042302r81', 'no_lang_code', 1, 'https://ror.org/042302r81 Anzai (Japan) ę Ŗå¼ä¼šē¤¾å®‰č„æč£½ä½œę‰€'),
(48428, 'https://ror.org/0424hh766', 'pt', 1, 'https://ror.org/0424hh766 Fundação de Estudos e Pesquisas AquÔticas'),
(48429, 'https://ror.org/0425vqx89', 'en', 1, 'https://ror.org/0425vqx89 Cumann LĆŗthchleas Gael Gaelic Athletic Association'),
(48430, 'https://ror.org/042662w35', 'es', 1, 'https://ror.org/042662w35 Instituto Nicaragüense de Estudios Territoriales'),
(48431, 'https://ror.org/0427k1a73', 'no_lang_code', 1, 'https://ror.org/0427k1a73 Bose (United States)'),
(48432, 'https://ror.org/0427t6n75', 'en', 1, 'https://ror.org/0427t6n75 Ittihad Private University Ų¬Ų§Ł…Ų¹Ų© الاتحاد الخاصة'),
(48433, 'https://ror.org/0428qxx32', 'no_lang_code', 1, 'https://ror.org/0428qxx32 Akikusa Gakuen Junior College ē§‹č‰å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(48434, 'https://ror.org/042arhp84', 'en', 1, 'https://ror.org/042arhp84 Hartford Public Library'),
(48435, 'https://ror.org/042b06z11', 'no_lang_code', 1, 'https://ror.org/042b06z11 Veolia (Australia)'),
(48436, 'https://ror.org/042ep7486', 'es', 1, 'https://ror.org/042ep7486 Universidad MotolinĆ­a del Pedregal'),
(48437, 'https://ror.org/042g4wn73', 'no_lang_code', 1, 'https://ror.org/042g4wn73 CIVIDEC Instrumentation (Austria)'),
(48438, 'https://ror.org/042gfy005', 'en', 1, 'https://ror.org/042gfy005 Geospatial Information Authority of Japan å›½åœŸåœ°ē†é™¢'),
(48439, 'https://ror.org/042hp4645', 'no_lang_code', 1, 'https://ror.org/042hp4645 Stratasys (Israel)'),
(48440, 'https://ror.org/042jb2v70', 'de', 1, 'https://ror.org/042jb2v70 IOT Labs'),
(48441, 'https://ror.org/042jprk80', 'no_lang_code', 1, 'https://ror.org/042jprk80 Chelyabinskiy Gosudarstvennyy Institut Lazernoy Khirurgii Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лазерной Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(48442, 'https://ror.org/042k4ts27', 'no_lang_code', 1, 'https://ror.org/042k4ts27 Matamec Explorations (Canada)'),
(48443, 'https://ror.org/042mxcp03', 'no_lang_code', 1, 'https://ror.org/042mxcp03 Quadriga Biosciences (United States)'),
(48444, 'https://ror.org/042n1zz26', 'no_lang_code', 1, 'https://ror.org/042n1zz26 Seiko Holdings (Japan) ć‚»ć‚¤ć‚³ćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(48445, 'https://ror.org/042newy54', 'en', 1, 'https://ror.org/042newy54 Kokusai Junior College å›½éš›ēŸ­ęœŸå¤§å­¦'),
(48446, 'https://ror.org/042nxhq59', 'no_lang_code', 1, 'https://ror.org/042nxhq59 Alpha and Omega Semiconductor (Bermuda)'),
(48447, 'https://ror.org/042p4aa24', 'en', 1, 'https://ror.org/042p4aa24 Chartered Institute of Library and Information Professionals'),
(48448, 'https://ror.org/042q91e23', 'no_lang_code', 1, 'https://ror.org/042q91e23 Kaiam Corporation (United Kingdom)'),
(48449, 'https://ror.org/042qa5g53', 'en', 1, 'https://ror.org/042qa5g53 Health and Global Policy Institute'),
(48450, 'https://ror.org/042qt7z37', 'en', 1, 'https://ror.org/042qt7z37 Chiyoda-ku Board of Education'),
(48451, 'https://ror.org/042rb3y95', 'no_lang_code', 1, 'https://ror.org/042rb3y95 B.A.T Cigarettenfabriken British American Tobacco (Germany)'),
(48452, 'https://ror.org/042syqv10', 'en', 1, 'https://ror.org/042syqv10 Dryden Road Clinic'),
(48453, 'https://ror.org/042tf0p61', 'no_lang_code', 1, 'https://ror.org/042tf0p61 Sosei Group (Japan)'),
(48454, 'https://ror.org/042v20e14', 'en', 1, 'https://ror.org/042v20e14 Gifu Prefectural Research Institute for Forests å²é˜œēœŒę£®ęž—ē ”ē©¶ę‰€'),
(48455, 'https://ror.org/042v7vy56', 'en', 1, 'https://ror.org/042v7vy56 Shanghai Institute of Landscape Gardening äøŠęµ·åø‚å›­ęž—ē§‘å­¦č§„åˆ’ē ”ē©¶é™¢'),
(48456, 'https://ror.org/042ww8n14', 'en', 1, 'https://ror.org/042ww8n14 Center for Speech Pathology and Neurorehabilitation Центр паталогии речи Šø нейрореабилитации. Разработка сайта'),
(48457, 'https://ror.org/042xrxv40', 'en', 1, 'https://ror.org/042xrxv40 Turin Polytechnic University Š¢ŃƒŃ€ŠøŠ½ŃŠŗŠøŠ¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(48458, 'https://ror.org/04310tc15', 'fr', 1, 'https://ror.org/04310tc15 Laboratoire de Cristallographie et Sciences des MatƩriaux'),
(48459, 'https://ror.org/0432ndm25', 'no_lang_code', 1, 'https://ror.org/0432ndm25 Porto Digital (Brazil)'),
(48460, 'https://ror.org/04343ty25', 'no_lang_code', 1, 'https://ror.org/04343ty25 Ibiden (Japan) ć‚¤ćƒ“ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(48461, 'https://ror.org/0436bye53', 'no_lang_code', 1, 'https://ror.org/0436bye53 MineSense Technologies (Canada)'),
(48462, 'https://ror.org/0438tby89', 'pt', 1, 'https://ror.org/0438tby89 Sociedade Brasileira de Cardiologia'),
(48463, 'https://ror.org/043bqfp86', 'de', 1, 'https://ror.org/043bqfp86 Centre Marc Bloch'),
(48464, 'https://ror.org/043cb6104', 'en', 1, 'https://ror.org/043cb6104 Oklahoma Biological Survey'),
(48465, 'https://ror.org/043epsf53', 'no_lang_code', 1, 'https://ror.org/043epsf53 Arris (United States)'),
(48466, 'https://ror.org/043frz513', 'no_lang_code', 1, 'https://ror.org/043frz513 Nexans (United Kingdom)'),
(48467, 'https://ror.org/043hk8147', 'en', 1, 'https://ror.org/043hk8147 Tokyo Metropolitan Police Department 警視庁'),
(48468, 'https://ror.org/043k84p27', 'en', 1, 'https://ror.org/043k84p27 Queensland Department of Education'),
(48469, 'https://ror.org/043m3hn34', 'no_lang_code', 1, 'https://ror.org/043m3hn34 Vivekananda Parvatiya Krishi Anusandhan Sansthan'),
(48470, 'https://ror.org/043nq9007', 'pt', 1, 'https://ror.org/043nq9007 Instituto Federal de Educação, Ciência e Tecnologia do Acre, Instituto Federal do Acre'),
(48471, 'https://ror.org/043nr7w50', 'en', 1, 'https://ror.org/043nr7w50 Saitama Board of Education åŸ¼ēŽ‰ēœŒę•™č‚²å§”å“”ä¼š'),
(48472, 'https://ror.org/043nrmc14', 'en', 1, 'https://ror.org/043nrmc14 Oral Facial Surgery Institution'),
(48473, 'https://ror.org/043r5t677', 'en', 1, 'https://ror.org/043r5t677 Institute for Sustainable Development'),
(48474, 'https://ror.org/043td6439', 'en', 1, 'https://ror.org/043td6439 American Association of University Professors'),
(48475, 'https://ror.org/043tqah33', 'no_lang_code', 1, 'https://ror.org/043tqah33 Mitsubishi Heavy Industries (Germany)'),
(48476, 'https://ror.org/043vzcd66', 'en', 1, 'https://ror.org/043vzcd66 Miyagi Advanced Dental Hygienist College å®®åŸŽé«˜ē­‰ę­Æē§‘č”›ē”Ÿå£«å­¦é™¢'),
(48477, 'https://ror.org/043wc6127', 'no_lang_code', 1, 'https://ror.org/043wc6127 Northrop Grumman (Germany)'),
(48478, 'https://ror.org/043xksz40', 'en', 1, 'https://ror.org/043xksz40 International Christian University Universidad Cristiana Internacional'),
(48479, 'https://ror.org/04409v947', 'no_lang_code', 1, 'https://ror.org/04409v947 RG Biopharma (United States)'),
(48480, 'https://ror.org/0440sme52', 'en', 1, 'https://ror.org/0440sme52 GlobalGiving'),
(48481, 'https://ror.org/0441wpd13', 'en', 1, 'https://ror.org/0441wpd13 Tokushima Municipal High School å¾³å³¶åø‚ē«‹é«˜ē­‰å­¦ę ”'),
(48482, 'https://ror.org/0442gxc81', 'en', 1, 'https://ror.org/0442gxc81 Fukuoka Prefecture Education Center ē¦å²”ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(48483, 'https://ror.org/0442ypy80', 'no_lang_code', 1, 'https://ror.org/0442ypy80 Zodiac Aerospace (Germany)'),
(48484, 'https://ror.org/0446n1b44', 'de', 1, 'https://ror.org/0446n1b44 Schwarzwald-Baar Klinikum'),
(48485, 'https://ror.org/0446skw42', 'en', 1, 'https://ror.org/0446skw42 Miyagi Prefecture Furukawa Technical High School å®®åŸŽēœŒå¤å·å·„ę„­é«˜ē­‰å­¦ę ”'),
(48486, 'https://ror.org/044ahzg50', 'no_lang_code', 1, 'https://ror.org/044ahzg50 Gazprom (Germany)'),
(48487, 'https://ror.org/044b8e138', 'en', 1, 'https://ror.org/044b8e138 Davenport Public Library'),
(48488, 'https://ror.org/044bxz342', 'en', 1, 'https://ror.org/044bxz342 National Institute for Land and Infrastructure Management å›½åœŸäŗ¤é€šēœå›½åœŸęŠ€č”“ę”æē­–ē·åˆē ”ē©¶ę‰€'),
(48489, 'https://ror.org/044gxyt48', 'en', 1, 'https://ror.org/044gxyt48 InterAmerican Heart Foundation'),
(48490, 'https://ror.org/044jx8018', 'en', 1, 'https://ror.org/044jx8018 Islamic Azad University of Malard دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد ملارد'),
(48491, 'https://ror.org/044r0st32', 'no_lang_code', 1, 'https://ror.org/044r0st32 EchoStar (United States)'),
(48492, 'https://ror.org/044rmp068', 'en', 1, 'https://ror.org/044rmp068 Choju Medical Institute é•·åÆæåŒ»å­¦ē ”ē©¶ę‰€'),
(48493, 'https://ror.org/044xq3s49', 'pt', 1, 'https://ror.org/044xq3s49 Instituto Nacional de Investigação Pesqueira'),
(48494, 'https://ror.org/044ytah36', 'en', 1, 'https://ror.org/044ytah36 Waterloo Institute for Disaster Management'),
(48495, 'https://ror.org/045100v05', 'no_lang_code', 1, 'https://ror.org/045100v05 Winbond (Taiwan) čÆé‚¦é›»å­å…¬åø'),
(48496, 'https://ror.org/0451fwt31', 'en', 1, 'https://ror.org/0451fwt31 Doshisha Kaori Junior and Senior High School'),
(48497, 'https://ror.org/0451xrg20', 'en', 1, 'https://ror.org/0451xrg20 Research, Design and Technology Institute Cable Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ Šø технологический ŠŗŠ°Š±ŠµŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(48498, 'https://ror.org/0452qzk74', 'no_lang_code', 1, 'https://ror.org/0452qzk74 Desma (Germany)'),
(48499, 'https://ror.org/0452rtt80', 'fr', 1, 'https://ror.org/0452rtt80 Laboratoire de Neurobiologie Cellulaire et MolƩculaire'),
(48500, 'https://ror.org/0453fgm48', 'no_lang_code', 1, 'https://ror.org/0453fgm48 Kensei Hospital å„ē”Ÿē—…é™¢'),
(48501, 'https://ror.org/0454arg59', 'en', 1, 'https://ror.org/0454arg59 International Institute for Digital Humanities äø€čˆ¬č²”å›£ę³•äŗŗ äŗŗę–‡ęƒ…å ±å­¦ē ”ē©¶ę‰€'),
(48502, 'https://ror.org/04574vv96', 'en', 1, 'https://ror.org/04574vv96 Gifu City Museum of History å²é˜œåø‚ę­“å²åšē‰©é¤Ø'),
(48503, 'https://ror.org/0458ehh05', 'no_lang_code', 1, 'https://ror.org/0458ehh05 Free Form Fibers (United States)'),
(48504, 'https://ror.org/045ay0h26', 'no_lang_code', 1, 'https://ror.org/045ay0h26 LumaMed (United States)'),
(48505, 'https://ror.org/045bds194', 'no_lang_code', 1, 'https://ror.org/045bds194 KRA (United States)'),
(48506, 'https://ror.org/045bzwt16', 'en', 1, 'https://ror.org/045bzwt16 University School of Milwaukee'),
(48507, 'https://ror.org/045c2a851', 'en', 1, 'https://ror.org/045c2a851 ZheJiang Institute For Food and Drug Control ęµ™ę±Ÿēœé£Ÿå“čÆå“ę£€éŖŒę‰€'),
(48508, 'https://ror.org/045cwwz56', 'no_lang_code', 1, 'https://ror.org/045cwwz56 Giatec Scientific (Canada)'),
(48509, 'https://ror.org/045d0h266', 'no_lang_code', 1, 'https://ror.org/045d0h266 OSRAM (United States)'),
(48510, 'https://ror.org/045eg9c12', 'en', 1, 'https://ror.org/045eg9c12 Fraunhofer Institute for Production Systems and Design Technology Fraunhofer-Institut für Produktionsanlagen und Konstruktionstechnik'),
(48511, 'https://ror.org/045hp3b72', 'en', 1, 'https://ror.org/045hp3b72 Research Institute for Bioscience and Biotechnology'),
(48512, 'https://ror.org/045k6ff56', 'en', 1, 'https://ror.org/045k6ff56 Ikuei Junior College č‚²č‹±ēŸ­ęœŸå¤§å­¦'),
(48513, 'https://ror.org/045kkxp77', 'no_lang_code', 1, 'https://ror.org/045kkxp77 Inland Technologies (Canada)'),
(48514, 'https://ror.org/045mf8339', 'en', 1, 'https://ror.org/045mf8339 Southwestern Christian College'),
(48515, 'https://ror.org/045mrxn03', 'en', 1, 'https://ror.org/045mrxn03 Wakayama Shin-Ai Women''s Junior College å’Œę­Œå±±äæ”ę„›å„³å­ēŸ­ęœŸå¤§å­¦'),
(48516, 'https://ror.org/045nchz19', 'en', 1, 'https://ror.org/045nchz19 Asia Center for Air Pollution Research ć‚¢ć‚øć‚¢å¤§ę°—ę±šęŸ“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(48517, 'https://ror.org/045nr1z96', 'en', 1, 'https://ror.org/045nr1z96 Fukui Prefectural Museum of Cultural History ē¦äŗ•ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(48518, 'https://ror.org/045ns6h78', 'no_lang_code', 1, 'https://ror.org/045ns6h78 Woodward (Germany)'),
(48519, 'https://ror.org/045nsn047', 'pt', 1, 'https://ror.org/045nsn047 Instituto Federal de Educação, Ciência e Tecnologia do Amazonas, Instituto Federal do Amazonas'),
(48520, 'https://ror.org/045pkp007', 'en', 1, 'https://ror.org/045pkp007 United States Chamber of Commerce'),
(48521, 'https://ror.org/045rgx026', 'no_lang_code', 1, 'https://ror.org/045rgx026 Saab (Switzerland)'),
(48522, 'https://ror.org/045rh7r61', 'fr', 1, 'https://ror.org/045rh7r61 Centre d''Ɖtude et de Recherche de Djibouti'),
(48523, 'https://ror.org/045s0p143', 'no_lang_code', 1, 'https://ror.org/045s0p143 Salgomed (United States)'),
(48524, 'https://ror.org/045skzd42', 'en', 1, 'https://ror.org/045skzd42 Fujian Provincial Administration of Press, Publication, Radio, Film and Television ē¦å»ŗēœę–°é—»å‡ŗē‰ˆå¹æē”µ'),
(48525, 'https://ror.org/045smbc57', 'en', 1, 'https://ror.org/045smbc57 Ministerstvo pro místní rozvoj České republiky Ministry of Regional Development'),
(48526, 'https://ror.org/045sskv83', 'en', 1, 'https://ror.org/045sskv83 Nagasaki Junior College é•·å“ŽēŸ­ęœŸå¤§å­¦'),
(48527, 'https://ror.org/046228582', 'en', 1, 'https://ror.org/046228582 Innovative Medicines for Tuberculosis Foundation'),
(48528, 'https://ror.org/0463sg992', 'en', 1, 'https://ror.org/0463sg992 Wichita Falls Independent School District'),
(48529, 'https://ror.org/0465gqs65', 'no_lang_code', 1, 'https://ror.org/0465gqs65 Legrand (Australia)'),
(48530, 'https://ror.org/0465np396', 'en', 1, 'https://ror.org/0465np396 Fukuoka Technical High School ē¦å²”ēœŒē«‹ē¦å²”å·„ę„­é«˜ē­‰å­¦ę ”'),
(48531, 'https://ror.org/046601y55', 'pt', 1, 'https://ror.org/046601y55 Centro Internacional de Semiótica e Comunicação'),
(48532, 'https://ror.org/0466m2m47', 'no_lang_code', 1, 'https://ror.org/0466m2m47 MetaOptima Technology (Canada)'),
(48533, 'https://ror.org/0467sym95', 'en', 1, 'https://ror.org/0467sym95 Thanlyin Technological University į€”į€Šį€ŗį€øį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ (į€žį€”į€ŗį€œį€»į€„į€ŗ)'),
(48534, 'https://ror.org/0468j5v73', 'en', 1, 'https://ror.org/0468j5v73 Shinjuku Ward Shinjuku Historical Museum ę–°å®æę­“å²åšē‰©é¤Ø'),
(48535, 'https://ror.org/046a7j408', 'en', 1, 'https://ror.org/046a7j408 Osaka College of Social Health and Welfare å¤§é˜Ŗå„åŗ·ē¦ē„‰ēŸ­ęœŸå¤§å­¦'),
(48536, 'https://ror.org/046as2g47', 'no_lang_code', 1, 'https://ror.org/046as2g47 Robert Bosch (Taiwan)'),
(48537, 'https://ror.org/046crbt05', 'nl', 1, 'https://ror.org/046crbt05 Wikimedia Nederland'),
(48538, 'https://ror.org/046ct7v62', 'no_lang_code', 1, 'https://ror.org/046ct7v62 STATS ChipPAC (Singapore)'),
(48539, 'https://ror.org/046dqma84', 'en', 1, 'https://ror.org/046dqma84 King County Library System Foundation'),
(48540, 'https://ror.org/046esz437', 'no_lang_code', 1, 'https://ror.org/046esz437 Colt International (United States)'),
(48541, 'https://ror.org/046fb4113', 'en', 1, 'https://ror.org/046fb4113 ZheJiang Economic and Trade Polytechnic ęµ™ę±Ÿē»č“øčŒäøšęŠ€ęœÆå­¦é™¢'),
(48542, 'https://ror.org/046jx2h22', 'en', 1, 'https://ror.org/046jx2h22 National Institute of Technology, Tokuyama College å¾³å±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(48543, 'https://ror.org/046ka3r30', 'es', 1, 'https://ror.org/046ka3r30 Instituto Mexicano de TecnologĆ­a del Agua'),
(48544, 'https://ror.org/046m94028', 'it', 1, 'https://ror.org/046m94028 Associazione Italiana Arbitri'),
(48545, 'https://ror.org/046qf2m29', 'no_lang_code', 1, 'https://ror.org/046qf2m29 RadiaSoft (United States)'),
(48546, 'https://ror.org/046ra6g36', 'en', 1, 'https://ror.org/046ra6g36 Japan Automobile Research Institute ę—„ęœ¬č‡Ŗå‹•č»Šē ”ē©¶ę‰€'),
(48547, 'https://ror.org/046ry7m83', 'no_lang_code', 1, 'https://ror.org/046ry7m83 Alere (Germany)'),
(48548, 'https://ror.org/046s04e65', 'en', 1, 'https://ror.org/046s04e65 National University الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(48549, 'https://ror.org/046sp4t54', 'en', 1, 'https://ror.org/046sp4t54 Institute for Community Inclusion'),
(48550, 'https://ror.org/046vxey93', 'no_lang_code', 1, 'https://ror.org/046vxey93 AmyCard (Russia)'),
(48551, 'https://ror.org/046xcaf86', 'no_lang_code', 1, 'https://ror.org/046xcaf86 FIH Mobile (China)'),
(48552, 'https://ror.org/046ybeq88', 'no_lang_code', 1, 'https://ror.org/046ybeq88 Proprs (United Kingdom)'),
(48553, 'https://ror.org/046zfzv81', 'en', 1, 'https://ror.org/046zfzv81 Museum of Modern Art ę»‹č³€ēœŒē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(48554, 'https://ror.org/0470vq398', 'no_lang_code', 1, 'https://ror.org/0470vq398 Saratoga Energy Research Partners (United States)'),
(48555, 'https://ror.org/0471j8634', 'en', 1, 'https://ror.org/0471j8634 Almishkat Centre for Research Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ų“ŁƒŲ§Ų© للبحث');
INSERT INTO `rors` VALUES
(48556, 'https://ror.org/047226562', 'no_lang_code', 1, 'https://ror.org/047226562 TechnoRem (Canada)'),
(48557, 'https://ror.org/0472ajt73', 'en', 1, 'https://ror.org/0472ajt73 Warnborough College'),
(48558, 'https://ror.org/0472sp635', 'en', 1, 'https://ror.org/0472sp635 Ballsbridge University'),
(48559, 'https://ror.org/047456960', 'en', 1, 'https://ror.org/047456960 Broome County Health Department'),
(48560, 'https://ror.org/0474tc765', 'en', 1, 'https://ror.org/0474tc765 International Prague University'),
(48561, 'https://ror.org/0475amg73', 'en', 1, 'https://ror.org/0475amg73 Ventura County Transportation Commission'),
(48562, 'https://ror.org/0477qq163', 'en', 1, 'https://ror.org/0477qq163 Civil Engineering Research Institute for Cold Region åÆ’åœ°åœŸęœØē ”ē©¶ę‰€'),
(48563, 'https://ror.org/04785as38', 'en', 1, 'https://ror.org/04785as38 Christian County Public Schools'),
(48564, 'https://ror.org/047dpbp86', 'no_lang_code', 1, 'https://ror.org/047dpbp86 Umano Medical (Canada)'),
(48565, 'https://ror.org/047f7tv05', 'en', 1, 'https://ror.org/047f7tv05 Wildlife Conservation Society Laos'),
(48566, 'https://ror.org/047fe4v13', 'en', 1, 'https://ror.org/047fe4v13 Board of Education Mino Education Office'),
(48567, 'https://ror.org/047gams58', 'no_lang_code', 1, 'https://ror.org/047gams58 CNH Industrial (Italy)'),
(48568, 'https://ror.org/047gkb024', 'en', 1, 'https://ror.org/047gkb024 Okinaka Memorial Adult Disease Research Institute å†²äø­čØ˜åæµęˆäŗŗē—…ē ”ē©¶ę‰€'),
(48569, 'https://ror.org/047hbb113', 'en', 1, 'https://ror.org/047hbb113 Jinhua Polytechnic é‡‘åŽčŒäøšęŠ€ęœÆå­¦é™¢'),
(48570, 'https://ror.org/047hjdt67', 'en', 1, 'https://ror.org/047hjdt67 Michigan Virtual University'),
(48571, 'https://ror.org/047mk7b09', 'no_lang_code', 1, 'https://ror.org/047mk7b09 Sensient Technologies (United States)'),
(48572, 'https://ror.org/047mpyh13', 'no_lang_code', 1, 'https://ror.org/047mpyh13 ChemCentre'),
(48573, 'https://ror.org/047q85d05', 'no_lang_code', 1, 'https://ror.org/047q85d05 First Data (United States)'),
(48574, 'https://ror.org/047qhbs69', 'no_lang_code', 1, 'https://ror.org/047qhbs69 Rockwell Automation (Singapore)'),
(48575, 'https://ror.org/047thv031', 'fr', 1, 'https://ror.org/047thv031 UniversitĆ© Ɖpiscopale d''Haiti'),
(48576, 'https://ror.org/047vw5609', 'en', 1, 'https://ror.org/047vw5609 National Assembly of Zambia'),
(48577, 'https://ror.org/047wdpf58', 'no_lang_code', 1, 'https://ror.org/047wdpf58 Solid Power (United States)'),
(48578, 'https://ror.org/047ywjc69', 'es', 1, 'https://ror.org/047ywjc69 Centro Cooperativista Uruguayo'),
(48579, 'https://ror.org/04800nb63', 'es', 1, 'https://ror.org/04800nb63 Universidad del PacĆ­fico de Chiapas'),
(48580, 'https://ror.org/0480zh114', 'en', 1, 'https://ror.org/0480zh114 Japan External Trade Organization ę—„ęœ¬č²æę˜“ęŒÆčˆˆę©Ÿę§‹'),
(48581, 'https://ror.org/0481b2b62', 'no_lang_code', 1, 'https://ror.org/0481b2b62 Brainport (Netherlands)'),
(48582, 'https://ror.org/048301432', 'en', 1, 'https://ror.org/048301432 Sendai Municipal Sendai Commercial High School ä»™å°å•†ę„­é«˜ē­‰å­¦ę ”'),
(48583, 'https://ror.org/0483xzg81', 'no_lang_code', 1, 'https://ror.org/0483xzg81 Paion (United States)'),
(48584, 'https://ror.org/0486ne794', 'en', 1, 'https://ror.org/0486ne794 Cambodia Development Resource Institute'),
(48585, 'https://ror.org/0486xr381', 'en', 1, 'https://ror.org/0486xr381 Filson Historical Society'),
(48586, 'https://ror.org/04871sq53', 'en', 1, 'https://ror.org/04871sq53 Takayanagi Dental Clinic é«˜ęŸ³ę­Æē§‘ē—…é™¢'),
(48587, 'https://ror.org/0487bnx60', 'no_lang_code', 1, 'https://ror.org/0487bnx60 Doosan Machine Tools (United States)'),
(48588, 'https://ror.org/0487grk59', 'no_lang_code', 1, 'https://ror.org/0487grk59 Salzgitter Group (Singapore)'),
(48589, 'https://ror.org/048a7w867', 'en', 1, 'https://ror.org/048a7w867 Tokyo Metropolitan Komaba High School ę±äŗ¬éƒ½ē«‹é§’å “é«˜ē­‰å­¦ę ”'),
(48590, 'https://ror.org/048b7d518', 'en', 1, 'https://ror.org/048b7d518 Academy of Sciences and Arts of Bosnia and Herzegovina Akademija nauka i umjetnosti Bosne i Hercegovine АкаГемија наука Šø ŃƒŠ¼Ń˜ŠµŃ‚Š½Š¾ŃŃ‚Šø Босне Šø Єерцеговине'),
(48591, 'https://ror.org/048bwmz37', 'no_lang_code', 1, 'https://ror.org/048bwmz37 Fortive (United States)'),
(48592, 'https://ror.org/048f8az88', 'en', 1, 'https://ror.org/048f8az88 American Association for Thoracic Surgery'),
(48593, 'https://ror.org/048fx3n07', 'en', 1, 'https://ror.org/048fx3n07 Fukushima Medical University Hospital ē¦å³¶ēœŒē«‹åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(48594, 'https://ror.org/048gksa87', 'no_lang_code', 1, 'https://ror.org/048gksa87 Kajima Corporation (Japan) é¹æå³¶å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(48595, 'https://ror.org/048hq4x94', 'no_lang_code', 1, 'https://ror.org/048hq4x94 Forge Nano (United States)'),
(48596, 'https://ror.org/048k12m08', 'en', 1, 'https://ror.org/048k12m08 Spinal Cord Injury Association'),
(48597, 'https://ror.org/048mspf89', 'no_lang_code', 1, 'https://ror.org/048mspf89 Utsunomiya Museum of Art'),
(48598, 'https://ror.org/048n7pq28', 'no_lang_code', 1, 'https://ror.org/048n7pq28 Oji Holdings (Japan) ēŽ‹å­ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(48599, 'https://ror.org/048n8ck62', 'en', 1, 'https://ror.org/048n8ck62 Plateau Medical Center'),
(48600, 'https://ror.org/048ndxt24', 'no_lang_code', 1, 'https://ror.org/048ndxt24 Himeji Hinomoto College å§«č·Æę—„ćƒŽęœ¬ēŸ­ęœŸå¤§å­¦'),
(48601, 'https://ror.org/048nk6m17', 'en', 1, 'https://ror.org/048nk6m17 Sydney Olympic Park Authority'),
(48602, 'https://ror.org/048psdj82', 'en', 1, 'https://ror.org/048psdj82 Accounting and Finance Association of Australia and New Zealand'),
(48603, 'https://ror.org/048saf111', 'en', 1, 'https://ror.org/048saf111 California Library Association'),
(48604, 'https://ror.org/048seqj96', 'en', 1, 'https://ror.org/048seqj96 Zhejiang Provincial Health Information Center ęµ™ę±Ÿēœå«ē”Ÿäæ”ęÆäø­åæƒ'),
(48605, 'https://ror.org/048ss3773', 'no_lang_code', 1, 'https://ror.org/048ss3773 Krüger (Germany)'),
(48606, 'https://ror.org/048t6pr69', 'en', 1, 'https://ror.org/048t6pr69 Patuxent Partnership'),
(48607, 'https://ror.org/048tnm037', 'en', 1, 'https://ror.org/048tnm037 Institute of Biochemical Physics NM Emanuel Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимической физики Š ŠŠ'),
(48608, 'https://ror.org/048vnmk34', 'no_lang_code', 1, 'https://ror.org/048vnmk34 Ceracomp (South Korea)'),
(48609, 'https://ror.org/048y1qb68', 'en', 1, 'https://ror.org/048y1qb68 Independence Public Library'),
(48610, 'https://ror.org/048z4gn84', 'en', 1, 'https://ror.org/048z4gn84 Idaho Business for Education'),
(48611, 'https://ror.org/0490fjq98', 'sv', 1, 'https://ror.org/0490fjq98 Svenska JƤgarefƶrbundet'),
(48612, 'https://ror.org/04912ew08', 'en', 1, 'https://ror.org/04912ew08 Iwate Agricultural Junior College å²©ę‰‹ēœŒē«‹č¾²ę„­å¤§å­¦ę ”'),
(48613, 'https://ror.org/04916g222', 'en', 1, 'https://ror.org/04916g222 Lackland Independent School District'),
(48614, 'https://ror.org/0492b0q60', 'en', 1, 'https://ror.org/0492b0q60 HJF Medical Research International'),
(48615, 'https://ror.org/0492k9x16', 'en', 1, 'https://ror.org/0492k9x16 Centre for Social Sciences TÔrsadalomtudomÔnyi Kutatóközpont'),
(48616, 'https://ror.org/0492z4191', 'en', 1, 'https://ror.org/0492z4191 Saitama Prefectural Museum of Natural History č‡Ŗē„¶å²ć®åŸ¼ēŽ‰ēœŒē«‹ē¾Žč”“é¤Ø'),
(48617, 'https://ror.org/0495n4t52', 'en', 1, 'https://ror.org/0495n4t52 Hakuho Women''s College ē™½é³³å„³å­ēŸ­ęœŸå¤§å­¦'),
(48618, 'https://ror.org/0496gtv62', 'no_lang_code', 1, 'https://ror.org/0496gtv62 TetraVue (United States)'),
(48619, 'https://ror.org/049ae8f38', 'en', 1, 'https://ror.org/049ae8f38 Hearing, Speech & Deaf Center'),
(48620, 'https://ror.org/049e4we54', 'en', 1, 'https://ror.org/049e4we54 Acoustical Society of America'),
(48621, 'https://ror.org/049ebw417', 'it', 1, 'https://ror.org/049ebw417 Istituto di Fotonica e Nanotecnologie'),
(48622, 'https://ror.org/049en1e86', 'en', 1, 'https://ror.org/049en1e86 Fujian Institute of Subtropical Botany ē¦å»ŗēœäŗšēƒ­åø¦ę¤ē‰©ē ”ē©¶ę‰€'),
(48623, 'https://ror.org/049evaf90', 'en', 1, 'https://ror.org/049evaf90 Access Computer College'),
(48624, 'https://ror.org/049exe397', 'no_lang_code', 1, 'https://ror.org/049exe397 Distributed Infinity (United States)'),
(48625, 'https://ror.org/049g0jw79', 'no_lang_code', 1, 'https://ror.org/049g0jw79 Agile RF (United States)'),
(48626, 'https://ror.org/049hp7d95', 'no_lang_code', 1, 'https://ror.org/049hp7d95 Durham Foods (United Kingdom)'),
(48627, 'https://ror.org/049jgef55', 'no_lang_code', 1, 'https://ror.org/049jgef55 Danfoss (United States)'),
(48628, 'https://ror.org/049mrbr98', 'no_lang_code', 1, 'https://ror.org/049mrbr98 Intuit (United States)'),
(48629, 'https://ror.org/049ncrn81', 'no_lang_code', 1, 'https://ror.org/049ncrn81 Bausch Health (Germany)'),
(48630, 'https://ror.org/049nhvm53', 'no_lang_code', 1, 'https://ror.org/049nhvm53 ImmunoChemistry Technologies (United States)'),
(48631, 'https://ror.org/049pb5632', 'no_lang_code', 1, 'https://ror.org/049pb5632 AbbVie (Bermuda)'),
(48632, 'https://ror.org/049ps3c72', 'es', 1, 'https://ror.org/049ps3c72 Instituto Tecnológico de Cerro Azul'),
(48633, 'https://ror.org/049pz8m51', 'en', 1, 'https://ror.org/049pz8m51 Chongqing Academy of Chinese Materia Medica é‡åŗ†åø‚äø­čÆē ”ē©¶é™¢'),
(48634, 'https://ror.org/049rjvf68', 'en', 1, 'https://ror.org/049rjvf68 Nakanihon Automotive College äø­ę—„ęœ¬č‡Ŗå‹•č»ŠēŸ­ęœŸå¤§å­¦'),
(48635, 'https://ror.org/049s4f968', 'en', 1, 'https://ror.org/049s4f968 Baltic Development Forum'),
(48636, 'https://ror.org/049sr1d03', 'en', 1, 'https://ror.org/049sr1d03 Velindre Cancer Centre'),
(48637, 'https://ror.org/049vpfq31', 'no_lang_code', 1, 'https://ror.org/049vpfq31 Hoya (Japan) Hoyaę Ŗå¼ä¼šē¤¾'),
(48638, 'https://ror.org/049x12g57', 'no_lang_code', 1, 'https://ror.org/049x12g57 American BioOptics (United States)'),
(48639, 'https://ror.org/049y0k629', 'en', 1, 'https://ror.org/049y0k629 Miyagi Seishin Junior College å®®åŸŽčŖ ēœŸēŸ­ęœŸå¤§å­¦'),
(48640, 'https://ror.org/049zex268', 'en', 1, 'https://ror.org/049zex268 Ministry of Culture, ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на ŠŗŃƒŠ»Ń‚ŃƒŃ€Š°Ń‚Š°'),
(48641, 'https://ror.org/04a0gnr15', 'no_lang_code', 1, 'https://ror.org/04a0gnr15 Alacris (Germany)'),
(48642, 'https://ror.org/04a0vqv69', 'no_lang_code', 1, 'https://ror.org/04a0vqv69 Dow Chemical (Brasil)'),
(48643, 'https://ror.org/04a20na41', 'fr', 1, 'https://ror.org/04a20na41 Centre de GƩomatique du QuƩbec'),
(48644, 'https://ror.org/04a2v9v66', 'en', 1, 'https://ror.org/04a2v9v66 Osaka Municipal Museum of Oriental Ceramics'),
(48645, 'https://ror.org/04a3psa27', 'en', 1, 'https://ror.org/04a3psa27 Saudi Society of Dermatology and Dermatologic Surgery Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© لأمراض وجراحة الجلد'),
(48646, 'https://ror.org/04a3v4a69', 'no_lang_code', 1, 'https://ror.org/04a3v4a69 Multivariate Software (United States)'),
(48647, 'https://ror.org/04a467s88', 'en', 1, 'https://ror.org/04a467s88 Ibaraki Prefectural Museum of History ćƒŠćƒćƒ„ćƒ©ćƒ«čŒØåŸŽēœŒē«‹ę­“å²é¤Ø'),
(48648, 'https://ror.org/04a496k07', 'en', 1, 'https://ror.org/04a496k07 GIG Cymru National Health Service Wales'),
(48649, 'https://ror.org/04a58ge54', 'no_lang_code', 1, 'https://ror.org/04a58ge54 Yokosuka City Museum ęØŖé ˆč³€åø‚č‡Ŗē„¶ćƒ»äŗŗę–‡åšē‰©é¤Ø'),
(48650, 'https://ror.org/04a5h3b47', 'en', 1, 'https://ror.org/04a5h3b47 Eastern Gateway Community College'),
(48651, 'https://ror.org/04a6tk632', 'en', 1, 'https://ror.org/04a6tk632 Memphis Library Foundation'),
(48652, 'https://ror.org/04a7gbp98', 'en', 1, 'https://ror.org/04a7gbp98 British Geological Survey'),
(48653, 'https://ror.org/04abdh096', 'en', 1, 'https://ror.org/04abdh096 Research Institutue of Evolutionary Biology é€²åŒ–ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(48654, 'https://ror.org/04achrx04', 'no_lang_code', 1, 'https://ror.org/04achrx04 AkzoNobel (Germany)'),
(48655, 'https://ror.org/04ad7pn51', 'en', 1, 'https://ror.org/04ad7pn51 Pancreatic Cancer UK'),
(48656, 'https://ror.org/04aenjr55', 'en', 1, 'https://ror.org/04aenjr55 DAV University'),
(48657, 'https://ror.org/04aetd961', 'en', 1, 'https://ror.org/04aetd961 Development Bank of Japan ę—„ęœ¬ę”æē­–ęŠ•č³‡éŠ€č”Œ'),
(48658, 'https://ror.org/04aj97045', 'en', 1, 'https://ror.org/04aj97045 Watauga County Office of Economic Development'),
(48659, 'https://ror.org/04am9s171', 'no_lang_code', 1, 'https://ror.org/04am9s171 Cimetrix Solutions (Canada)'),
(48660, 'https://ror.org/04an3vm72', 'en', 1, 'https://ror.org/04an3vm72 Sparta Area School District'),
(48661, 'https://ror.org/04apy5543', 'no_lang_code', 1, 'https://ror.org/04apy5543 Luye Pharma (China) ē»æå¶åˆ¶čÆ'),
(48662, 'https://ror.org/04aq7nt90', 'en', 1, 'https://ror.org/04aq7nt90 North Central Educational Service District'),
(48663, 'https://ror.org/04aqqcm29', 'en', 1, 'https://ror.org/04aqqcm29 Miyagi Prefectural visual support school å®®åŸŽēœŒē«‹č¦–č¦šę”Æę“å­¦ę ”'),
(48664, 'https://ror.org/04ar6mt14', 'en', 1, 'https://ror.org/04ar6mt14 Saitama Cultural Deposits Research Corporation å…¬ē›Šč²”å›£ę³•äŗŗ åŸ¼ēŽ‰ēœŒåŸ‹č”µę–‡åŒ–č²”čŖæęŸ»äŗ‹ę„­å›£'),
(48665, 'https://ror.org/04ars9107', 'en', 1, 'https://ror.org/04ars9107 Gunma Prefectural Fisheries Experimental Station 群馬県 - 氓産試験堓'),
(48666, 'https://ror.org/04asmh688', 'no_lang_code', 1, 'https://ror.org/04asmh688 Corning (South Korea)'),
(48667, 'https://ror.org/04avd7t96', 'no_lang_code', 1, 'https://ror.org/04avd7t96 Medgene Labs (United States)'),
(48668, 'https://ror.org/04azs9g49', 'en', 1, 'https://ror.org/04azs9g49 Loyola Medicine'),
(48669, 'https://ror.org/04b0q3m21', 'no_lang_code', 1, 'https://ror.org/04b0q3m21 Victor (Japan) ę—„ęœ¬ćƒ“ć‚Æć‚æćƒ¼ę Ŗå¼ä¼šē¤¾'),
(48670, 'https://ror.org/04b268v54', 'en', 1, 'https://ror.org/04b268v54 SUPERA Park of Innovation and Technology of Ribeirão Preto Supera Parque de Inovação e Tecnologia de Ribeirão Preto'),
(48671, 'https://ror.org/04b30m009', 'no_lang_code', 1, 'https://ror.org/04b30m009 Integrated Nonclinical Development Solutions (United States)'),
(48672, 'https://ror.org/04b33sw26', 'no_lang_code', 1, 'https://ror.org/04b33sw26 Northern Powergrid (United Kingdom)'),
(48673, 'https://ror.org/04b3f3k27', 'en', 1, 'https://ror.org/04b3f3k27 Global Viral'),
(48674, 'https://ror.org/04b47hp24', 'no_lang_code', 1, 'https://ror.org/04b47hp24 Temper (United States)'),
(48675, 'https://ror.org/04b5t6e20', 'en', 1, 'https://ror.org/04b5t6e20 Niigata Prefectural Niigata MidoriKo High School ę–°ę½ŸēœŒē«‹ę–°ę½Ÿēæ ę±Ÿé«˜ē­‰å­¦ę ”'),
(48676, 'https://ror.org/04bam1s60', 'en', 1, 'https://ror.org/04bam1s60 Illinois Ornithological Society'),
(48677, 'https://ror.org/04bb3h146', 'en', 1, 'https://ror.org/04bb3h146 Changchun 208 Hospital å‰ęž—é•æę˜„208医院'),
(48678, 'https://ror.org/04bcz8b84', 'en', 1, 'https://ror.org/04bcz8b84 Osaka City Cultural Properties Association å¤§é˜Ŗę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(48679, 'https://ror.org/04bda4853', 'en', 1, 'https://ror.org/04bda4853 Wildlife Preservation Society of Australia'),
(48680, 'https://ror.org/04bdqfw32', 'no_lang_code', 1, 'https://ror.org/04bdqfw32 ZincNyx Energy Solutions (Canada)'),
(48681, 'https://ror.org/04bdy7914', 'no_lang_code', 1, 'https://ror.org/04bdy7914 Yokogawa Electric (Japan) ęØŖę²³é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(48682, 'https://ror.org/04bg5zd67', 'no_lang_code', 1, 'https://ror.org/04bg5zd67 Sandvik (South Africa)'),
(48683, 'https://ror.org/04bh4bw24', 'es', 1, 'https://ror.org/04bh4bw24 Wikimedia Uruguay'),
(48684, 'https://ror.org/04bkq2x49', 'no_lang_code', 1, 'https://ror.org/04bkq2x49 Clinical Sensors (United States)'),
(48685, 'https://ror.org/04bq84m08', 'en', 1, 'https://ror.org/04bq84m08 Foundation Wakayama Prefecture Cultural Property Center å…¬ē›Šč²”å›£ę³•äŗŗå’Œę­Œå±±ēœŒę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(48686, 'https://ror.org/04brc3a25', 'id', 1, 'https://ror.org/04brc3a25 Universitas Indonesia Timur'),
(48687, 'https://ror.org/04brn2y58', 'en', 1, 'https://ror.org/04brn2y58 World Water and Climate Foundation'),
(48688, 'https://ror.org/04bstw291', 'en', 1, 'https://ror.org/04bstw291 Austrian Society of Dermatology and Venereology Ɩsterreichischen Gesellschaft für Dermatologie und Venerologie'),
(48689, 'https://ror.org/04btxqd09', 'en', 1, 'https://ror.org/04btxqd09 Institute for the Advanced Study of Black Family Life and Culture'),
(48690, 'https://ror.org/04bvdz568', 'en', 1, 'https://ror.org/04bvdz568 Union der deutschen Akademien der Wissenschaften Union of the German Academies of Sciences and Humanities'),
(48691, 'https://ror.org/04bwh4h90', 'fr', 1, 'https://ror.org/04bwh4h90 Bretagne DƩveloppement Innovation'),
(48692, 'https://ror.org/04bx2zy40', 'no_lang_code', 1, 'https://ror.org/04bx2zy40 Otsuka (United Kingdom)'),
(48693, 'https://ror.org/04c14yn55', 'en', 1, 'https://ror.org/04c14yn55 Chuxiong Normal University ę„šé›„åøˆčŒƒå­¦é™¢'),
(48694, 'https://ror.org/04c154n61', 'en', 1, 'https://ror.org/04c154n61 Ningbo Polytechnic å®ę³¢čŒäøšęŠ€ęœÆå­¦é™¢'),
(48695, 'https://ror.org/04c2j1p40', 'en', 1, 'https://ror.org/04c2j1p40 Dabney S Lancaster Community College'),
(48696, 'https://ror.org/04c2m5174', 'no_lang_code', 1, 'https://ror.org/04c2m5174 Systems, Applications & Products in Data Processing (Australia)'),
(48697, 'https://ror.org/04c466w42', 'en', 1, 'https://ror.org/04c466w42 Mpala Research Center and Wildlife Foundation'),
(48698, 'https://ror.org/04c4nem69', 'no_lang_code', 1, 'https://ror.org/04c4nem69 QuantumWise (Denmark)'),
(48699, 'https://ror.org/04c5amq59', 'en', 1, 'https://ror.org/04c5amq59 Association of Surgeons of Great Britain and Ireland'),
(48700, 'https://ror.org/04c6jsb22', 'no_lang_code', 1, 'https://ror.org/04c6jsb22 Leo Pharma (Ireland)'),
(48701, 'https://ror.org/04c772e80', 'en', 1, 'https://ror.org/04c772e80 Soil Association'),
(48702, 'https://ror.org/04c97mw67', 'en', 1, 'https://ror.org/04c97mw67 Modus Health'),
(48703, 'https://ror.org/04c9j2485', 'en', 1, 'https://ror.org/04c9j2485 Iida City Museum of Art é£Æē”°åø‚ē¾Žč”“åšē‰©é¤Ø'),
(48704, 'https://ror.org/04cadt597', 'en', 1, 'https://ror.org/04cadt597 Heisei College of Health Sciences å¹³ęˆåŒ»ē™‚ēŸ­ęœŸå¤§å­¦'),
(48705, 'https://ror.org/04cafpa45', 'en', 1, 'https://ror.org/04cafpa45 Okinawa Womens Junior College ę²–ēø„å„³å­ēŸ­ęœŸå¤§å­¦'),
(48706, 'https://ror.org/04ccqwj03', 'no_lang_code', 1, 'https://ror.org/04ccqwj03 Mitsubishi Electric (Germany)'),
(48707, 'https://ror.org/04cdebn34', 'no_lang_code', 1, 'https://ror.org/04cdebn34 ProCure (United States)'),
(48708, 'https://ror.org/04cdm5380', 'de', 1, 'https://ror.org/04cdm5380 Mediacult'),
(48709, 'https://ror.org/04cf91p66', 'en', 1, 'https://ror.org/04cf91p66 Our Lady Academy of Sakura ē§ē«‹ę”œć®č–ęÆå­¦é™¢é«˜ę ”'),
(48710, 'https://ror.org/04cfzks03', 'pt', 1, 'https://ror.org/04cfzks03 Escola de Comando e Estado-Maior do ExƩrcito'),
(48711, 'https://ror.org/04ch3q361', 'en', 1, 'https://ror.org/04ch3q361 Centre for Economic and Social Studies'),
(48712, 'https://ror.org/04cnffe38', 'en', 1, 'https://ror.org/04cnffe38 Pioneer International University'),
(48713, 'https://ror.org/04cnkg888', 'en', 1, 'https://ror.org/04cnkg888 Museum of Japanese Art Yamato Bunkakan å¤§å’Œę–‡čÆé¤Ø'),
(48714, 'https://ror.org/04cp1fw87', 'en', 1, 'https://ror.org/04cp1fw87 Consortium for Educational Change'),
(48715, 'https://ror.org/04cqva373', 'en', 1, 'https://ror.org/04cqva373 Yamagata Prefectural Sagae High School å±±å½¢ēœŒē«‹åÆ’ę²³ę±Ÿé«˜ē­‰å­¦ę ”'),
(48716, 'https://ror.org/04cqvnd54', 'no_lang_code', 1, 'https://ror.org/04cqvnd54 Wikimedia Taiwan äø­čÆę°‘åœ‹ē¶­åŸŗåŖ’é«”å”ęœƒ'),
(48717, 'https://ror.org/04cr8d113', 'no_lang_code', 1, 'https://ror.org/04cr8d113 Lawrenceville Plasma Physics (United States)'),
(48718, 'https://ror.org/04csbgr97', 'en', 1, 'https://ror.org/04csbgr97 Musashi Junior and Senior High School ę­¦č”µé«˜ē­‰å­¦ę ” 中学栔'),
(48719, 'https://ror.org/04csh5447', 'en', 1, 'https://ror.org/04csh5447 Mass Insight Education'),
(48720, 'https://ror.org/04cx2cg45', 'no_lang_code', 1, 'https://ror.org/04cx2cg45 Neoanalysis (Greece) ĪĪ•ĪŸĪ‘ĪĪ‘Ī›Ī„Ī£Ī™Ī£'),
(48721, 'https://ror.org/04cx9ny42', 'en', 1, 'https://ror.org/04cx9ny42 Ehime Prefectural College of Agriculture ę„›åŖ›ēœŒē«‹č¾²ę„­å¤§å­¦ę ”'),
(48722, 'https://ror.org/04cxnv425', 'it', 1, 'https://ror.org/04cxnv425 Pro Grigioni Italiano'),
(48723, 'https://ror.org/04cycke44', 'en', 1, 'https://ror.org/04cycke44 Center on Budget and Policy Priorities'),
(48724, 'https://ror.org/04d32wy52', 'en', 1, 'https://ror.org/04d32wy52 Hokkaido Musashi Women''s Junior College åŒ—ęµ·é“ę­¦č”µå„³å­ēŸ­ęœŸå¤§å­¦'),
(48725, 'https://ror.org/04d38yh91', 'en', 1, 'https://ror.org/04d38yh91 Tokyo School for the Deaf'),
(48726, 'https://ror.org/04d3djg48', 'no_lang_code', 1, 'https://ror.org/04d3djg48 Qualcomm (United Kingdom)'),
(48727, 'https://ror.org/04d3s7k24', 'en', 1, 'https://ror.org/04d3s7k24 Association of African Business Schools'),
(48728, 'https://ror.org/04d5b0c86', 'no_lang_code', 1, 'https://ror.org/04d5b0c86 Nommon Solutions and Technologies (Spain)'),
(48729, 'https://ror.org/04d83ph96', 'en', 1, 'https://ror.org/04d83ph96 City Clinical Hospital No 31 Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 31 (Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³)'),
(48730, 'https://ror.org/04d951341', 'en', 1, 'https://ror.org/04d951341 International Cosmetology College Starptautiskā Kosmetoloģijas koledža'),
(48731, 'https://ror.org/04d9trb33', 'es', 1, 'https://ror.org/04d9trb33 Corporación para el Desarrollo Sostenible del UrabÔ'),
(48732, 'https://ror.org/04dd9eh65', 'no_lang_code', 1, 'https://ror.org/04dd9eh65 Solvay (China)'),
(48733, 'https://ror.org/04dercs88', 'pt', 1, 'https://ror.org/04dercs88 Instituto Nacional do SemiƔrido'),
(48734, 'https://ror.org/04dfxm579', 'id', 1, 'https://ror.org/04dfxm579 Universitas Nahdlatul Wathan Mataram'),
(48735, 'https://ror.org/04dgpsg75', 'no_lang_code', 1, 'https://ror.org/04dgpsg75 Yazaki (Japan) ēŸ¢å“Žē·ę„­ę Ŗå¼ä¼šē¤¾'),
(48736, 'https://ror.org/04dk3f152', 'fr', 1, 'https://ror.org/04dk3f152 Fondation pour la SantƩ Reproductrice et l''Education Familiale'),
(48737, 'https://ror.org/04dmzp333', 'en', 1, 'https://ror.org/04dmzp333 The Duchy Hospital'),
(48738, 'https://ror.org/04dn01t72', 'en', 1, 'https://ror.org/04dn01t72 Field Crops Research Institute'),
(48739, 'https://ror.org/04dpcyn69', 'en', 1, 'https://ror.org/04dpcyn69 Kanagawa Prefectural Museum of Cultural History ē„žå„ˆå·ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(48740, 'https://ror.org/04dqhen73', 'en', 1, 'https://ror.org/04dqhen73 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(48741, 'https://ror.org/04dvebt78', 'no_lang_code', 1, 'https://ror.org/04dvebt78 ResMed (Australia)'),
(48742, 'https://ror.org/04dxh1n93', 'no_lang_code', 1, 'https://ror.org/04dxh1n93 Arup Group (Canada)'),
(48743, 'https://ror.org/04dyk5z88', 'no_lang_code', 1, 'https://ror.org/04dyk5z88 Advantest (Singapore)'),
(48744, 'https://ror.org/04dynqd30', 'en', 1, 'https://ror.org/04dynqd30 Alhamd Islamic University'),
(48745, 'https://ror.org/04dz7pm02', 'sv', 1, 'https://ror.org/04dz7pm02 Djurkliniken Roslagstull'),
(48746, 'https://ror.org/04dzjva98', 'no_lang_code', 1, 'https://ror.org/04dzjva98 TCL (China) TCLē§‘ęŠ€é›†å›¢'),
(48747, 'https://ror.org/04e080j72', 'pt', 1, 'https://ror.org/04e080j72 Fundação Hemopa'),
(48748, 'https://ror.org/04e08ga15', 'en', 1, 'https://ror.org/04e08ga15 Fontes Foundation'),
(48749, 'https://ror.org/04e0thc04', 'no_lang_code', 1, 'https://ror.org/04e0thc04 BioTheryX (United States)'),
(48750, 'https://ror.org/04e1eb965', 'en', 1, 'https://ror.org/04e1eb965 Fiorello H. LaGuardia Foundation'),
(48751, 'https://ror.org/04e2byh18', 'no_lang_code', 1, 'https://ror.org/04e2byh18 Them (United States)'),
(48752, 'https://ror.org/04e3bjn48', 'no_lang_code', 1, 'https://ror.org/04e3bjn48 Magneto-Inertial Fusion Technologies (United States)'),
(48753, 'https://ror.org/04e4g6t41', 'no_lang_code', 1, 'https://ror.org/04e4g6t41 Cook Medical (Ireland)'),
(48754, 'https://ror.org/04e4q3922', 'en', 1, 'https://ror.org/04e4q3922 Hyogo Prefectural Hyogo Agricultural University å…µåŗ«ēœŒē«‹č¾²ę„­å¤§å­¦'),
(48755, 'https://ror.org/04e5cyn06', 'en', 1, 'https://ror.org/04e5cyn06 Agricultural & Applied Economics Association'),
(48756, 'https://ror.org/04e5hj993', 'no_lang_code', 1, 'https://ror.org/04e5hj993 Packet Digital (United States)'),
(48757, 'https://ror.org/04e5zt867', 'no_lang_code', 1, 'https://ror.org/04e5zt867 Amer Sports (France)'),
(48758, 'https://ror.org/04e67g822', 'en', 1, 'https://ror.org/04e67g822 Uttar Pradesh Council of sugarcane research'),
(48759, 'https://ror.org/04e6gmj90', 'en', 1, 'https://ror.org/04e6gmj90 British Thoracic Society'),
(48760, 'https://ror.org/04e9gsd78', 'no_lang_code', 1, 'https://ror.org/04e9gsd78 United Shield (United Kingdom)'),
(48761, 'https://ror.org/04eaf5c83', 'no_lang_code', 1, 'https://ror.org/04eaf5c83 Katan Kitchens (Canada)'),
(48762, 'https://ror.org/04eca0d23', 'en', 1, 'https://ror.org/04eca0d23 Academic Swiss Caucasus Net'),
(48763, 'https://ror.org/04ecrg623', 'no_lang_code', 1, 'https://ror.org/04ecrg623 Nippon Sheet Glass (Japan) ę—„ęœ¬ęæē”å­ę Ŗå¼ä¼šē¤¾'),
(48764, 'https://ror.org/04ecxrz19', 'en', 1, 'https://ror.org/04ecxrz19 Japan Chemical Analysis Center ę—„ęœ¬åˆ†ęžć‚»ćƒ³ć‚æćƒ¼'),
(48765, 'https://ror.org/04ed8jn07', 'en', 1, 'https://ror.org/04ed8jn07 Zhenjiang City Fourth People''s Hospital é•‡ę±Ÿåø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(48766, 'https://ror.org/04efpm434', 'en', 1, 'https://ror.org/04efpm434 Research Institute for Peace and Security äø€čˆ¬č²”å›£ę³•äŗŗå¹³å’Œćƒ»å®‰å…Øäæéšœē ”ē©¶ę‰€'),
(48767, 'https://ror.org/04egre837', 'no_lang_code', 1, 'https://ror.org/04egre837 AlphaSIP (Spain)'),
(48768, 'https://ror.org/04eh5he50', 'en', 1, 'https://ror.org/04eh5he50 Banque Nationale du Canada National Bank of Canada'),
(48769, 'https://ror.org/04ehjr030', 'no_lang_code', 1, 'https://ror.org/04ehjr030 Apple (Israel)'),
(48770, 'https://ror.org/04ekfdy38', 'en', 1, 'https://ror.org/04ekfdy38 Galveston Island Research Community Research Advisory Committee'),
(48771, 'https://ror.org/04ekh4959', 'no_lang_code', 1, 'https://ror.org/04ekh4959 Xergy (United States)'),
(48772, 'https://ror.org/04em0br16', 'en', 1, 'https://ror.org/04em0br16 Department of Agricultural Research & Technical Services'),
(48773, 'https://ror.org/04em49j63', 'en', 1, 'https://ror.org/04em49j63 Kyoto Human Rights Research Institute å…¬ē›Šč²”å›£ę³•äŗŗ äø–ē•ŒäŗŗęØ©å•é”Œē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(48774, 'https://ror.org/04emkcs40', 'en', 1, 'https://ror.org/04emkcs40 Radford University College'),
(48775, 'https://ror.org/04emz6k48', 'en', 1, 'https://ror.org/04emz6k48 Chicago International Charter School'),
(48776, 'https://ror.org/04epxrt89', 'en', 1, 'https://ror.org/04epxrt89 Japanese Physical Therapy Association ę—„ęœ¬ē†å­¦ē™‚ę³•å£«å”ä¼š'),
(48777, 'https://ror.org/04etfv811', 'en', 1, 'https://ror.org/04etfv811 Indian Institute of Management Shillong ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, शिलांग'),
(48778, 'https://ror.org/04etxjg38', 'en', 1, 'https://ror.org/04etxjg38 Kanagawa Prefectural Ayase High School ē„žå„ˆå·ēœŒē«‹ē¶¾ē€¬é«˜ē­‰å­¦ę ”'),
(48779, 'https://ror.org/04ev1v417', 'en', 1, 'https://ror.org/04ev1v417 Seirei Women''s Junior College č–éœŠå„³å­ēŸ­ęœŸå¤§å­¦'),
(48780, 'https://ror.org/04ewj8026', 'en', 1, 'https://ror.org/04ewj8026 Advanced Center for Orthopedics'),
(48781, 'https://ror.org/04ewyef80', 'no_lang_code', 1, 'https://ror.org/04ewyef80 Saint-Gobain (Canada)'),
(48782, 'https://ror.org/04ewyy141', 'no_lang_code', 1, 'https://ror.org/04ewyy141 Teldio (Canada)'),
(48783, 'https://ror.org/04ex78q47', 'en', 1, 'https://ror.org/04ex78q47 Harney Education Service District'),
(48784, 'https://ror.org/04exf1753', 'no_lang_code', 1, 'https://ror.org/04exf1753 ASM Terni (Italy)'),
(48785, 'https://ror.org/04exgek62', 'en', 1, 'https://ror.org/04exgek62 International Training Centre of the ILO'),
(48786, 'https://ror.org/04ey06332', 'en', 1, 'https://ror.org/04ey06332 Research Institute of Animal Husbandry'),
(48787, 'https://ror.org/04eynnv65', 'en', 1, 'https://ror.org/04eynnv65 Tochigi Prefectural Utsunomiya Commercial and Business High School ę ƒęœØēœŒē«‹å®‡éƒ½å®®å•†ę„­é«˜ē­‰å­¦ę ”'),
(48788, 'https://ror.org/04eytv118', 'en', 1, 'https://ror.org/04eytv118 Shenandoah Astronomical Society'),
(48789, 'https://ror.org/04ez8hs93', 'en', 1, 'https://ror.org/04ez8hs93 Qingdao Municipal Center for Disease Control and Prevention é’å²›åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(48790, 'https://ror.org/04f1r9295', 'no_lang_code', 1, 'https://ror.org/04f1r9295 Dow Chemical (China)'),
(48791, 'https://ror.org/04f2nz275', 'en', 1, 'https://ror.org/04f2nz275 Eurovacc Foundation'),
(48792, 'https://ror.org/04f4hdq71', 'en', 1, 'https://ror.org/04f4hdq71 Pan African Christian University College'),
(48793, 'https://ror.org/04f4ybw82', 'en', 1, 'https://ror.org/04f4ybw82 Schlow Centre Region Library'),
(48794, 'https://ror.org/04f71fj29', 'no_lang_code', 1, 'https://ror.org/04f71fj29 Nirvana Sciences (United States)'),
(48795, 'https://ror.org/04f89zf73', 'no_lang_code', 1, 'https://ror.org/04f89zf73 Johnson & Johnson (Brazil)'),
(48796, 'https://ror.org/04fc53j27', 'no_lang_code', 1, 'https://ror.org/04fc53j27 Nippon Koei (Japan) ę—„ęœ¬å·„å–¶'),
(48797, 'https://ror.org/04fcd0528', 'no_lang_code', 1, 'https://ror.org/04fcd0528 Geotechnical Consulting Group (United Kingdom)'),
(48798, 'https://ror.org/04fctr677', 'en', 1, 'https://ror.org/04fctr677 Phillips University'),
(48799, 'https://ror.org/04fdy3s84', 'en', 1, 'https://ror.org/04fdy3s84 Nishinomiya Municipal Takagi Elementary School č„æå®®åø‚ē«‹é«˜ęœØå°å­¦ę ”'),
(48800, 'https://ror.org/04fh21g11', 'fr', 1, 'https://ror.org/04fh21g11 Association FranƧaise pour l''Etude du Foie'),
(48801, 'https://ror.org/04fhkjd96', 'no_lang_code', 1, 'https://ror.org/04fhkjd96 Arizona Cancer Therapeutics (United States)'),
(48802, 'https://ror.org/04fjdwh53', 'de', 1, 'https://ror.org/04fjdwh53 Institut für Krankenhaushygiene & Infektionsprävention'),
(48803, 'https://ror.org/04fjvna30', 'en', 1, 'https://ror.org/04fjvna30 Association of Fundraising Professionals Advancement Northwest'),
(48804, 'https://ror.org/04fkrbf60', 'en', 1, 'https://ror.org/04fkrbf60 Dutch University Institute for Art History Istituto Universitario Olandese di Storia dell’Arte'),
(48805, 'https://ror.org/04fm2yw69', 'no_lang_code', 1, 'https://ror.org/04fm2yw69 GKN (United States)'),
(48806, 'https://ror.org/04fnymv42', 'en', 1, 'https://ror.org/04fnymv42 Catalysis Foundation for Health'),
(48807, 'https://ror.org/04fqe7r22', 'en', 1, 'https://ror.org/04fqe7r22 CHIME Institute'),
(48808, 'https://ror.org/04fqtzv33', 'en', 1, 'https://ror.org/04fqtzv33 American Association of Law Libraries'),
(48809, 'https://ror.org/04fr3ga66', 'en', 1, 'https://ror.org/04fr3ga66 Japanese Red Cross Hiroshima College of Nursing ę—„ęœ¬čµ¤åå­—åŗƒå³¶ēœ‹č­·å¤§å­¦'),
(48810, 'https://ror.org/04frnf283', 'en', 1, 'https://ror.org/04frnf283 Sanyo Women''s College å±±é™½å„³å­ēŸ­ęœŸå¤§å­¦'),
(48811, 'https://ror.org/04fs6r254', 'en', 1, 'https://ror.org/04fs6r254 Montana State Library'),
(48812, 'https://ror.org/04fs8gp50', 'en', 1, 'https://ror.org/04fs8gp50 Mitsubishi Economic Research Institute äø‰č±ēµŒęøˆē ”ē©¶ę‰€'),
(48813, 'https://ror.org/04ft0an39', 'no_lang_code', 1, 'https://ror.org/04ft0an39 Ergon Energy (Australia)'),
(48814, 'https://ror.org/04ftb9f20', 'no_lang_code', 1, 'https://ror.org/04ftb9f20 YKK (Japan) å‰ē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(48815, 'https://ror.org/04ftr6m30', 'en', 1, 'https://ror.org/04ftr6m30 Center for Independent Living'),
(48816, 'https://ror.org/04fwdjg04', 'es', 1, 'https://ror.org/04fwdjg04 Instituto Tecnológico de Matamoros'),
(48817, 'https://ror.org/04fwk7718', 'en', 1, 'https://ror.org/04fwk7718 Association of Community College Trustees'),
(48818, 'https://ror.org/04fx38p98', 'en', 1, 'https://ror.org/04fx38p98 Max Planck Research Unit for Neurogenetics Max-Planck-Forschungsstelle für Neurogenetik'),
(48819, 'https://ror.org/04fzah020', 'no_lang_code', 1, 'https://ror.org/04fzah020 Steris (United Kingdom)'),
(48820, 'https://ror.org/04fzpsa91', 'en', 1, 'https://ror.org/04fzpsa91 Ventura County Library'),
(48821, 'https://ror.org/04g2bja88', 'no_lang_code', 1, 'https://ror.org/04g2bja88 DirecTV (United States)'),
(48822, 'https://ror.org/04g3bhm14', 'no_lang_code', 1, 'https://ror.org/04g3bhm14 Russell Biotech (United States)'),
(48823, 'https://ror.org/04g3vmk47', 'en', 1, 'https://ror.org/04g3vmk47 Kaysinger Basin Regional Planning Commission'),
(48824, 'https://ror.org/04g3x6p88', 'en', 1, 'https://ror.org/04g3x6p88 Ibaraki Prefectural Police čŒØåŸŽēœŒč­¦åÆŸęœ¬éƒØ'),
(48825, 'https://ror.org/04g4dtf59', 'no_lang_code', 1, 'https://ror.org/04g4dtf59 Panduit (United States)'),
(48826, 'https://ror.org/04g918p03', 'no_lang_code', 1, 'https://ror.org/04g918p03 Oerlikon (United States)'),
(48827, 'https://ror.org/04g9b5w11', 'en', 1, 'https://ror.org/04g9b5w11 Seismological Bureau of Shanghai äøŠęµ·åø‚åœ°éœ‡å±€'),
(48828, 'https://ror.org/04gacp295', 'en', 1, 'https://ror.org/04gacp295 Municipality of Anchorage'),
(48829, 'https://ror.org/04gazgk64', 'en', 1, 'https://ror.org/04gazgk64 Foundations for Farming'),
(48830, 'https://ror.org/04gc7ef93', 'no_lang_code', 1, 'https://ror.org/04gc7ef93 Novateur Research Solutions (United States)'),
(48831, 'https://ror.org/04ggfw624', 'en', 1, 'https://ror.org/04ggfw624 Institute of Chemistry, Komi Science Center Коми Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š£Ń€Šž Š ŠŠ'),
(48832, 'https://ror.org/04ggpbw68', 'no_lang_code', 1, 'https://ror.org/04ggpbw68 Nuance Communications (Austria)'),
(48833, 'https://ror.org/04ghh8334', 'en', 1, 'https://ror.org/04ghh8334 Central Sericultural Research and Training Institute ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤°ą„‡ą¤¶ą¤® ą¤‰ą¤¤ą„ā€ą¤Ŗą¤¾ą¤¦ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¶ą¤æą¤•ą„ą¤·ą¤£ ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø'),
(48834, 'https://ror.org/04ghyw285', 'no_lang_code', 1, 'https://ror.org/04ghyw285 Marel (United Kingdom)'),
(48835, 'https://ror.org/04gkxrj12', 'no_lang_code', 1, 'https://ror.org/04gkxrj12 MinebeaMitsumi (Japan) ćƒŸćƒćƒ™ć‚¢ćƒŸćƒ„ćƒŸę Ŗå¼ä¼šē¤¾'),
(48836, 'https://ror.org/04gm8dp50', 'no_lang_code', 1, 'https://ror.org/04gm8dp50 MoJo Labs (United States)'),
(48837, 'https://ror.org/04gmcat66', 'no_lang_code', 1, 'https://ror.org/04gmcat66 BioTez (Germany)'),
(48838, 'https://ror.org/04gmk9p10', 'en', 1, 'https://ror.org/04gmk9p10 Ibaraki Prefecture Joso City Sugawara Elementary School åøøē·åø‚ē«‹č…åŽŸå°å­¦ę ”'),
(48839, 'https://ror.org/04gp0yb49', 'en', 1, 'https://ror.org/04gp0yb49 Fraunhofer Institute for Digital Media Technology Fraunhofer-Institut für Digitale Medientechnologie'),
(48840, 'https://ror.org/04gp75d48', 'en', 1, 'https://ror.org/04gp75d48 Nawroz University Ų¬Ų§Ł…Ų¹Ų© Ł†ŁˆŲ±ŁˆŲ² Ų²Ų§Ł†Ś©Ū†ŪŒ Ł†Ū•ŁˆŲ±Ū†Ų²'),
(48841, 'https://ror.org/04gpgk389', 'fr', 1, 'https://ror.org/04gpgk389 Centre Jacques Berque pour le DƩveloppement des Sciences Humaines et Sociales'),
(48842, 'https://ror.org/04gqc0005', 'en', 1, 'https://ror.org/04gqc0005 Universal Barber College'),
(48843, 'https://ror.org/04gs2jh51', 'no_lang_code', 1, 'https://ror.org/04gs2jh51 Mavi Innovations (Canada)'),
(48844, 'https://ror.org/04gv4zs18', 'en', 1, 'https://ror.org/04gv4zs18 Anglo-Israel Association'),
(48845, 'https://ror.org/04gz66q85', 'en', 1, 'https://ror.org/04gz66q85 Benton Foundation'),
(48846, 'https://ror.org/04h081c37', 'en', 1, 'https://ror.org/04h081c37 Okayama Prefectural Kurashiki Technical High School å²”å±±ēœŒē«‹å€‰ę•·å·„ę„­é«˜ē­‰å­¦ę ”'),
(48847, 'https://ror.org/04h0h7852', 'en', 1, 'https://ror.org/04h0h7852 Aquila Theatre'),
(48848, 'https://ror.org/04h7bb169', 'en', 1, 'https://ror.org/04h7bb169 Hong Kong Health Care Association'),
(48849, 'https://ror.org/04h7w4h73', 'en', 1, 'https://ror.org/04h7w4h73 Pskov State University'),
(48850, 'https://ror.org/04h9tqm30', 'en', 1, 'https://ror.org/04h9tqm30 Center for Education Reform'),
(48851, 'https://ror.org/04hb57v11', 'en', 1, 'https://ror.org/04hb57v11 Iowa City Public Library'),
(48852, 'https://ror.org/04hbev594', 'no_lang_code', 1, 'https://ror.org/04hbev594 Infineon Technologies (Canada)'),
(48853, 'https://ror.org/04hbnm423', 'en', 1, 'https://ror.org/04hbnm423 MUFG Union Bank'),
(48854, 'https://ror.org/04hcr0j14', 'en', 1, 'https://ror.org/04hcr0j14 Nebraska Bankers Association'),
(48855, 'https://ror.org/04hd8bd67', 'no_lang_code', 1, 'https://ror.org/04hd8bd67 Murata (Japan) ę Ŗå¼ä¼šē¤¾ę‘ē”°č£½ä½œę‰€'),
(48856, 'https://ror.org/04hdh0n29', 'en', 1, 'https://ror.org/04hdh0n29 Sveriges LƤkarfƶrbund Swedish Medical Association'),
(48857, 'https://ror.org/04hezxr66', 'en', 1, 'https://ror.org/04hezxr66 IFMR Finance Foundation'),
(48858, 'https://ror.org/04hg19818', 'en', 1, 'https://ror.org/04hg19818 Shimane Institute for Industrial Technology å³¶ę ¹ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(48859, 'https://ror.org/04hjyd403', 'en', 1, 'https://ror.org/04hjyd403 Prince George''s County Memorial Library System'),
(48860, 'https://ror.org/04hm9pd03', 'en', 1, 'https://ror.org/04hm9pd03 Association of Anaesthetists of Great Britain and Ireland'),
(48861, 'https://ror.org/04hnkx132', 'en', 1, 'https://ror.org/04hnkx132 Innovation Plasturgie Composites PƓle EuropƩen de Plasturgie'),
(48862, 'https://ror.org/04hnxg730', 'en', 1, 'https://ror.org/04hnxg730 Chiba Prefectural Education Center åƒč‘‰ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(48863, 'https://ror.org/04hpj9w50', 'no_lang_code', 1, 'https://ror.org/04hpj9w50 Palette (Canada)'),
(48864, 'https://ror.org/04hpp8k10', 'no_lang_code', 1, 'https://ror.org/04hpp8k10 Dana (United Kingdom)'),
(48865, 'https://ror.org/04hqsgm68', 'en', 1, 'https://ror.org/04hqsgm68 China Banking Regulatory Commission äø­å›½é“¶č”Œäøšē›‘ē£ē®”ē†å§”å‘˜ä¼š'),
(48866, 'https://ror.org/04hqvm002', 'no_lang_code', 1, 'https://ror.org/04hqvm002 ZF Friedrichshafen (Japan)'),
(48867, 'https://ror.org/04hr38d13', 'en', 1, 'https://ror.org/04hr38d13 Toyama Prefectural Sakurai High School åÆŒå±±ēœŒē«‹ę”œäŗ•é«˜ē­‰å­¦ę ”'),
(48868, 'https://ror.org/04hrrvw77', 'en', 1, 'https://ror.org/04hrrvw77 American Society of Maxillofacial Surgeons'),
(48869, 'https://ror.org/04hs3m603', 'en', 1, 'https://ror.org/04hs3m603 Isogo Technical High School ē„žå„ˆå·ēœŒē«‹ē£Æå­å·„ę„­é«˜ē­‰å­¦ę ”'),
(48870, 'https://ror.org/04hsa3c95', 'en', 1, 'https://ror.org/04hsa3c95 Bureau of Hydrology Tibet č„æč—č‡Ŗę²»åŒŗę°“ę–‡ę°“čµ„ęŗå‹˜ęµ‹å±€'),
(48871, 'https://ror.org/04htqgq60', 'no_lang_code', 1, 'https://ror.org/04htqgq60 Heidenhain (Germany)'),
(48872, 'https://ror.org/04hv0jm68', 'no_lang_code', 1, 'https://ror.org/04hv0jm68 OLEDWorks (United States)'),
(48873, 'https://ror.org/04hw1e986', 'no_lang_code', 1, 'https://ror.org/04hw1e986 BaseTrace (United States)'),
(48874, 'https://ror.org/04hyg4h58', 'no_lang_code', 1, 'https://ror.org/04hyg4h58 Qiagen (United Kingdom)'),
(48875, 'https://ror.org/04hyzjc82', 'en', 1, 'https://ror.org/04hyzjc82 Miyagi Prefectural General Education Center å®®åŸŽēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(48876, 'https://ror.org/04j0ryd72', 'es', 1, 'https://ror.org/04j0ryd72 Universidad Franciscana de MƩxico'),
(48877, 'https://ror.org/04j0s0m53', 'en', 1, 'https://ror.org/04j0s0m53 American Society of Primatologists'),
(48878, 'https://ror.org/04j4pme17', 'en', 1, 'https://ror.org/04j4pme17 Institute of Systems, Information Technologies and Nanotechnologies ä¹å·žå…ˆē«Æē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(48879, 'https://ror.org/04j55bg94', 'de', 1, 'https://ror.org/04j55bg94 Bibliothek des Wissenschaftsparks Albert Einstein'),
(48880, 'https://ror.org/04j5m9426', 'no_lang_code', 1, 'https://ror.org/04j5m9426 Tokyo Seiei College ę±äŗ¬č–ę „å¤§å­¦'),
(48881, 'https://ror.org/04j6f8w41', 'en', 1, 'https://ror.org/04j6f8w41 Kanagawa Prefectural Kanagawa Comprehensive Industry High School ē„žå„ˆå·ēœŒē«‹ē„žå„ˆå·ē·åˆē”£ę„­é«˜ē­‰å­¦ę ”'),
(48882, 'https://ror.org/04j7hdv70', 'en', 1, 'https://ror.org/04j7hdv70 Society for the Advancement of Scandinavian Study'),
(48883, 'https://ror.org/04j7qp352', 'es', 1, 'https://ror.org/04j7qp352 Foundation for Integral Development Pacific Fundación para el Desarrollo Integral del Pacífico'),
(48884, 'https://ror.org/04j80nh06', 'no_lang_code', 1, 'https://ror.org/04j80nh06 RUAG (Germany)'),
(48885, 'https://ror.org/04j820197', 'pt', 1, 'https://ror.org/04j820197 Fundação de Amparo à Pesquisa e Extensão UniversitÔria'),
(48886, 'https://ror.org/04jc92q85', 'en', 1, 'https://ror.org/04jc92q85 Academy of Marketing Science'),
(48887, 'https://ror.org/04jehxx70', 'en', 1, 'https://ror.org/04jehxx70 Yokohama City Furusato History Foundation ęØŖęµœåø‚ćµć‚‹ć•ćØę­“å²č²”å›£'),
(48888, 'https://ror.org/04jf29r27', 'en', 1, 'https://ror.org/04jf29r27 Iwate Prefectural Mizusawa Agricultural High School'),
(48889, 'https://ror.org/04jfns044', 'en', 1, 'https://ror.org/04jfns044 Vietnam Atomic Energy Instiute Viện Năng lượng nguyĆŖn tį»­ Việt Nam'),
(48890, 'https://ror.org/04jfp7737', 'no_lang_code', 1, 'https://ror.org/04jfp7737 Ringful Health (United States)'),
(48891, 'https://ror.org/04jg63q12', 'en', 1, 'https://ror.org/04jg63q12 Northwest Vista College'),
(48892, 'https://ror.org/04jjswc10', 'es', 1, 'https://ror.org/04jjswc10 Universidad Yachay Tech, Universidad de Investigación de Tecnología Experimental YACHAY'),
(48893, 'https://ror.org/04jm5sq24', 'en', 1, 'https://ror.org/04jm5sq24 Cambridge Memorial Hospital'),
(48894, 'https://ror.org/04jm9wm67', 'en', 1, 'https://ror.org/04jm9wm67 MBN Research Center'),
(48895, 'https://ror.org/04jmk7329', 'no_lang_code', 1, 'https://ror.org/04jmk7329 Covaris (United States)'),
(48896, 'https://ror.org/04jmyrr44', 'no_lang_code', 1, 'https://ror.org/04jmyrr44 Acceleware (Canada)'),
(48897, 'https://ror.org/04jmysw33', 'en', 1, 'https://ror.org/04jmysw33 Wenzhou City People''s Hospital ęø©å·žåø‚äŗŗę°‘åŒ»é™¢'),
(48898, 'https://ror.org/04jr71r83', 'en', 1, 'https://ror.org/04jr71r83 Institute of Mathematics Viện ToĆ”n hį»c'),
(48899, 'https://ror.org/04jrd4q87', 'no_lang_code', 1, 'https://ror.org/04jrd4q87 Expro (United States)'),
(48900, 'https://ror.org/04jry6p54', 'pt', 1, 'https://ror.org/04jry6p54 Prefeitura Municipal de Rio das Ostras'),
(48901, 'https://ror.org/04js6xx21', 'en', 1, 'https://ror.org/04js6xx21 McGowan Institute for Regenerative Medicine'),
(48902, 'https://ror.org/04jtwax81', 'no_lang_code', 1, 'https://ror.org/04jtwax81 Liquidia Technologies (United States)'),
(48903, 'https://ror.org/04jy08y75', 'no_lang_code', 1, 'https://ror.org/04jy08y75 Qisda (Taiwan) ä½³äø–č¾¾å…¬åø'),
(48904, 'https://ror.org/04jyt7608', 'en', 1, 'https://ror.org/04jyt7608 Taizhou First People''s Hospital å°å·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(48905, 'https://ror.org/04jzeda60', 'en', 1, 'https://ror.org/04jzeda60 Wakayama Prefectural Educational Center å’Œę­Œå±±ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼å­¦ć³ć®äø˜'),
(48906, 'https://ror.org/04k296d46', 'en', 1, 'https://ror.org/04k296d46 Vancouver Native Health Society'),
(48907, 'https://ror.org/04k2gzh89', 'en', 1, 'https://ror.org/04k2gzh89 Australia and New Zealand School of Government'),
(48908, 'https://ror.org/04k456e23', 'no_lang_code', 1, 'https://ror.org/04k456e23 Anne Arundel Economic Development (United States)'),
(48909, 'https://ror.org/04k59vn11', 'no_lang_code', 1, 'https://ror.org/04k59vn11 Sasol (Germany)'),
(48910, 'https://ror.org/04k5dj193', 'en', 1, 'https://ror.org/04k5dj193 Russian State Geological Prospecting University Российский Š³Š¾ŃŃƒŠ“арственный геологоразвеГочный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(48911, 'https://ror.org/04k620071', 'en', 1, 'https://ror.org/04k620071 American Society for Quality'),
(48912, 'https://ror.org/04k7d8776', 'en', 1, 'https://ror.org/04k7d8776 Tsukuba Municipal Azuma Elementary School ć¤ćć°åø‚ē«‹å¾å¦»å°å­¦ę ”'),
(48913, 'https://ror.org/04k7gbj45', 'en', 1, 'https://ror.org/04k7gbj45 Center for Career and Community Research'),
(48914, 'https://ror.org/04k7ny084', 'no_lang_code', 1, 'https://ror.org/04k7ny084 New Technology (Israel)'),
(48915, 'https://ror.org/04kd9rb82', 'en', 1, 'https://ror.org/04kd9rb82 European Conference for AeroSpace Sciences'),
(48916, 'https://ror.org/04kfb1d31', 'es', 1, 'https://ror.org/04kfb1d31 Universidad Angelópolis'),
(48917, 'https://ror.org/04kfhcd40', 'no_lang_code', 1, 'https://ror.org/04kfhcd40 Aspen Professional Services (United States)'),
(48918, 'https://ror.org/04kgngk14', 'en', 1, 'https://ror.org/04kgngk14 State Mining Administration Český bÔňský ĆŗÅ™ad'),
(48919, 'https://ror.org/04khqse59', 'en', 1, 'https://ror.org/04khqse59 Pediatric Oncology Group'),
(48920, 'https://ror.org/04kp61y04', 'en', 1, 'https://ror.org/04kp61y04 Association for Tertiary Education Management'),
(48921, 'https://ror.org/04kq9kz72', 'no_lang_code', 1, 'https://ror.org/04kq9kz72 Cellectar Biosciences (United States)'),
(48922, 'https://ror.org/04kre2459', 'en', 1, 'https://ror.org/04kre2459 Lee Countys Department of Public Safety'),
(48923, 'https://ror.org/04krkan79', 'es', 1, 'https://ror.org/04krkan79 Fundación Miguel Lillo'),
(48924, 'https://ror.org/04kvhgz56', 'no_lang_code', 1, 'https://ror.org/04kvhgz56 Future Access (Canada)'),
(48925, 'https://ror.org/04kw5s604', 'no_lang_code', 1, 'https://ror.org/04kw5s604 Tektronix (United States)'),
(48926, 'https://ror.org/04kw81y04', 'no_lang_code', 1, 'https://ror.org/04kw81y04 Sandia Research (United States)'),
(48927, 'https://ror.org/04kwz3444', 'no_lang_code', 1, 'https://ror.org/04kwz3444 Schindler (Switzerland)'),
(48928, 'https://ror.org/04kx60c47', 'en', 1, 'https://ror.org/04kx60c47 Hawaii State Public Library System'),
(48929, 'https://ror.org/04kz0fx24', 'no_lang_code', 1, 'https://ror.org/04kz0fx24 Innospec (United States)'),
(48930, 'https://ror.org/04kz8hh27', 'no_lang_code', 1, 'https://ror.org/04kz8hh27 Albemarle (Germany)'),
(48931, 'https://ror.org/04kze4f18', 'en', 1, 'https://ror.org/04kze4f18 Miyagi Prefectural Police Forensic Science Laboratory å®®åŸŽēœŒč­¦åÆŸ ē§‘å­¦ęœęŸ»ē ”ē©¶ę‰€'),
(48932, 'https://ror.org/04kzeme37', 'en', 1, 'https://ror.org/04kzeme37 Hartebeesthoek Radio Astronomy Observatory'),
(48933, 'https://ror.org/04kzfg204', 'en', 1, 'https://ror.org/04kzfg204 Apollon Hochschule der Gesundheitswirtschaft University of Applied Sciences Appollon'),
(48934, 'https://ror.org/04kznw408', 'pt', 1, 'https://ror.org/04kznw408 Associação Brasileira de Rorschach e Métodos Projetivos'),
(48935, 'https://ror.org/04m0nsn08', 'en', 1, 'https://ror.org/04m0nsn08 Indiana Commission for Higher Education'),
(48936, 'https://ror.org/04m0rsq98', 'no_lang_code', 1, 'https://ror.org/04m0rsq98 Lexitek (United States)'),
(48937, 'https://ror.org/04m2v6546', 'no_lang_code', 1, 'https://ror.org/04m2v6546 Extensible Energy (United States)'),
(48938, 'https://ror.org/04m2xd811', 'en', 1, 'https://ror.org/04m2xd811 Bryn Mawr Skin & Cancer Institute'),
(48939, 'https://ror.org/04m2ybb32', 'en', 1, 'https://ror.org/04m2ybb32 Nagoya City Science Museum åå¤å±‹åø‚ē§‘å­¦é¤Ø'),
(48940, 'https://ror.org/04m3hsp39', 'en', 1, 'https://ror.org/04m3hsp39 Institute for Competitive Recruiting'),
(48941, 'https://ror.org/04m3kny75', 'no_lang_code', 1, 'https://ror.org/04m3kny75 GRi Simulations (Canada)'),
(48942, 'https://ror.org/04m5wpy84', 'no_lang_code', 1, 'https://ror.org/04m5wpy84 Maxar Technologies (United States)'),
(48943, 'https://ror.org/04m7w1g19', 'en', 1, 'https://ror.org/04m7w1g19 Ehime Prefecture Iyo Agricultural High School ę„›åŖ›ēœŒē«‹ä¼Šäŗˆč¾²ę„­é«˜ē­‰å­¦ę ”'),
(48944, 'https://ror.org/04m877p68', 'en', 1, 'https://ror.org/04m877p68 Cherie Blair Foundation for Women'),
(48945, 'https://ror.org/04m8v6x07', 'no_lang_code', 1, 'https://ror.org/04m8v6x07 Nojiri Naumanni Museum'),
(48946, 'https://ror.org/04mag9a17', 'no_lang_code', 1, 'https://ror.org/04mag9a17 SafeRay Spine (United States)'),
(48947, 'https://ror.org/04max0939', 'no_lang_code', 1, 'https://ror.org/04max0939 Fujitsu (Germany) åÆŒå£«é€šę Ŗå¼ä¼šē¤¾'),
(48948, 'https://ror.org/04mc0ma12', 'no_lang_code', 1, 'https://ror.org/04mc0ma12 Almen Laboratories (United States)'),
(48949, 'https://ror.org/04mcker87', 'en', 1, 'https://ror.org/04mcker87 Global Alliance for Improved Nutrition'),
(48950, 'https://ror.org/04mdy6t91', 'no_lang_code', 1, 'https://ror.org/04mdy6t91 OAO VNIPIneft (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠµŃ„Ń‚ŠµŠæŠµŃ€ŠµŃ€Š°Š±Š°Ń‚Ń‹Š²Š°ŃŽŃ‰ŠµŠ¹ Šø нефтехимической ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø ŠžŠŠž "Š’ŠŠ˜ŠŸŠ˜Š½ŠµŃ„Ń‚ŃŒ"'),
(48951, 'https://ror.org/04mf33p23', 'no_lang_code', 1, 'https://ror.org/04mf33p23 Tucker Innovations (United States)'),
(48952, 'https://ror.org/04mfben02', 'no_lang_code', 1, 'https://ror.org/04mfben02 Eomap (Germany)'),
(48953, 'https://ror.org/04mfd9b91', 'id', 1, 'https://ror.org/04mfd9b91 Universitas Teknologi Nusantara'),
(48954, 'https://ror.org/04mgmjj66', 'en', 1, 'https://ror.org/04mgmjj66 Centre for Advocacy and Research'),
(48955, 'https://ror.org/04mhtp952', 'en', 1, 'https://ror.org/04mhtp952 Japanese Red Cross Akita College of Nursing ę—„ęœ¬čµ¤åå­—ē§‹ē”°ēœ‹č­·å¤§å­¦'),
(48956, 'https://ror.org/04mjv5x61', 'de', 1, 'https://ror.org/04mjv5x61 Oberlandesgericht Stuttgart'),
(48957, 'https://ror.org/04mnaqe33', 'no_lang_code', 1, 'https://ror.org/04mnaqe33 Arquimea (Spain)'),
(48958, 'https://ror.org/04mrer463', 'en', 1, 'https://ror.org/04mrer463 Aomori High School é’ę£®ēœŒē«‹é’ę£®é«˜ē­‰å­¦ę ”'),
(48959, 'https://ror.org/04msp8175', 'no_lang_code', 1, 'https://ror.org/04msp8175 Mission Management Information Systems (Canada)'),
(48960, 'https://ror.org/04mtyr016', 'en', 1, 'https://ror.org/04mtyr016 Schiller International University'),
(48961, 'https://ror.org/04mv68k05', 'en', 1, 'https://ror.org/04mv68k05 Karelian State Pedagogical Academy ŠšŠ°Ń€ŠµŠ»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(48962, 'https://ror.org/04mvq4v36', 'en', 1, 'https://ror.org/04mvq4v36 Malaria No More'),
(48963, 'https://ror.org/04mwphf10', 'en', 1, 'https://ror.org/04mwphf10 Australian Water Quality Centre'),
(48964, 'https://ror.org/04my8ty22', 'no_lang_code', 1, 'https://ror.org/04my8ty22 Robert Bosch (India)'),
(48965, 'https://ror.org/04myfn622', 'no_lang_code', 1, 'https://ror.org/04myfn622 Rubicon Labs (United States)'),
(48966, 'https://ror.org/04n36vx38', 'no_lang_code', 1, 'https://ror.org/04n36vx38 Visteon (Japan)');
INSERT INTO `rors` VALUES
(48967, 'https://ror.org/04n6ytd45', 'en', 1, 'https://ror.org/04n6ytd45 Pharmatech (United States)'),
(48968, 'https://ror.org/04n820n80', 'en', 1, 'https://ror.org/04n820n80 Niigata Medical Technology Specialist School ę–°ę½ŸåŒ»ē™‚ęŠ€č”“å°‚é–€å­¦ę ”'),
(48969, 'https://ror.org/04n8wkx34', 'en', 1, 'https://ror.org/04n8wkx34 Miyagi Prefectural Hearing Support School å®®åŸŽēœŒē«‹č“č¦šę”Æę“å­¦ę ”'),
(48970, 'https://ror.org/04n9gs185', 'en', 1, 'https://ror.org/04n9gs185 Royal Australian Chemical Institute'),
(48971, 'https://ror.org/04ndp2k28', 'en', 1, 'https://ror.org/04ndp2k28 Alaka`ina Foundation'),
(48972, 'https://ror.org/04ngq3k29', 'en', 1, 'https://ror.org/04ngq3k29 Escambia County School District'),
(48973, 'https://ror.org/04ngqe873', 'en', 1, 'https://ror.org/04ngqe873 Center for Effective Philanthropy'),
(48974, 'https://ror.org/04ngzd740', 'en', 1, 'https://ror.org/04ngzd740 Australian Association of Gerontology'),
(48975, 'https://ror.org/04nhss420', 'en', 1, 'https://ror.org/04nhss420 Dr. H. Bliss Murphy Cancer Centre'),
(48976, 'https://ror.org/04nmxj606', 'en', 1, 'https://ror.org/04nmxj606 Niigata Agricultural Research Institute ę–°ę½ŸēœŒåœ’čŠøē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(48977, 'https://ror.org/04np5cf89', 'en', 1, 'https://ror.org/04np5cf89 Tompkins County Public Library'),
(48978, 'https://ror.org/04nrgxn63', 'en', 1, 'https://ror.org/04nrgxn63 Round Rock Public Library'),
(48979, 'https://ror.org/04nvdwx07', 'no_lang_code', 1, 'https://ror.org/04nvdwx07 Galaxy Diagnostics (United States)'),
(48980, 'https://ror.org/04nvyq536', 'en', 1, 'https://ror.org/04nvyq536 California State Library Foundation'),
(48981, 'https://ror.org/04nw8d167', 'en', 1, 'https://ror.org/04nw8d167 KIPP Foundation'),
(48982, 'https://ror.org/04ny33f60', 'en', 1, 'https://ror.org/04ny33f60 Shiga Junior College ę»‹č³€ēŸ­ęœŸå¤§å­¦'),
(48983, 'https://ror.org/04ny3af67', 'en', 1, 'https://ror.org/04ny3af67 Central Manchester Clinical Commissioning Group'),
(48984, 'https://ror.org/04nz98c29', 'fr', 1, 'https://ror.org/04nz98c29 UniversitƩ d''Oran 2'),
(48985, 'https://ror.org/04nz9a261', 'en', 1, 'https://ror.org/04nz9a261 Mushroom Council'),
(48986, 'https://ror.org/04nzat794', 'no_lang_code', 1, 'https://ror.org/04nzat794 Arizona Optical Systems (United States)'),
(48987, 'https://ror.org/04p0kmp94', 'no_lang_code', 1, 'https://ror.org/04p0kmp94 Diagnologix (United States)'),
(48988, 'https://ror.org/04p102g25', 'en', 1, 'https://ror.org/04p102g25 Mental Health Foundation'),
(48989, 'https://ror.org/04p1gbs34', 'no_lang_code', 1, 'https://ror.org/04p1gbs34 Sydor Technologies (United States)'),
(48990, 'https://ror.org/04p1vet95', 'en', 1, 'https://ror.org/04p1vet95 Institute for Future Engineering ęœŖę„å·„å­¦ē ”ē©¶ę‰€'),
(48991, 'https://ror.org/04p280284', 'pt', 1, 'https://ror.org/04p280284 Departamento de CiĆŖncia e Tecnologia'),
(48992, 'https://ror.org/04p43ja26', 'no_lang_code', 1, 'https://ror.org/04p43ja26 ResMed (Germany)'),
(48993, 'https://ror.org/04p4abm19', 'en', 1, 'https://ror.org/04p4abm19 National Cereals Research Institute'),
(48994, 'https://ror.org/04p4ra235', 'en', 1, 'https://ror.org/04p4ra235 Zhejiang Tongji Vocational College of Science and Technology ē§‘ęŠ€ēš„åŒęµŽå¤§å­¦ęµ™ę±ŸčŒäøšęŠ€ęœÆå­¦é™¢'),
(48995, 'https://ror.org/04p4ws960', 'en', 1, 'https://ror.org/04p4ws960 Asian Development Bank Institute ć‚¢ć‚øć‚¢é–‹ē™ŗéŠ€č”Œē ”ē©¶ę‰€'),
(48996, 'https://ror.org/04p57n726', 'en', 1, 'https://ror.org/04p57n726 Research Institute of Ceramics ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠšŠ•Š ŠŠœŠ˜ŠšŠ˜'),
(48997, 'https://ror.org/04p5eag18', 'no_lang_code', 1, 'https://ror.org/04p5eag18 Brembo (Italy)'),
(48998, 'https://ror.org/04p62ev47', 'no_lang_code', 1, 'https://ror.org/04p62ev47 Eppin Pharma (United States)'),
(48999, 'https://ror.org/04p74nw72', 'en', 1, 'https://ror.org/04p74nw72 Queensland Police Service'),
(49000, 'https://ror.org/04pb25098', 'en', 1, 'https://ror.org/04pb25098 Progressive Osseous Heteroplasia Association'),
(49001, 'https://ror.org/04pe8fr02', 'no_lang_code', 1, 'https://ror.org/04pe8fr02 Leviton (United States)'),
(49002, 'https://ror.org/04pg77a15', 'no_lang_code', 1, 'https://ror.org/04pg77a15 Boise Cascade (Canada)'),
(49003, 'https://ror.org/04pk2pv78', 'en', 1, 'https://ror.org/04pk2pv78 Educational Service District 105'),
(49004, 'https://ror.org/04pk33v91', 'en', 1, 'https://ror.org/04pk33v91 Brazilian Computer Society Sociedade Brasileira de Computação'),
(49005, 'https://ror.org/04pnp9s43', 'no_lang_code', 1, 'https://ror.org/04pnp9s43 Hikone Central Hospital 彦根中央病院'),
(49006, 'https://ror.org/04pnyb473', 'en', 1, 'https://ror.org/04pnyb473 Uganda National Health Research Organisation'),
(49007, 'https://ror.org/04pp5k026', 'en', 1, 'https://ror.org/04pp5k026 Mie Prefectural Yokkaichi Technical High School äø‰é‡ēœŒē«‹å››ę—„åø‚å·„ę„­é«˜ē­‰å­¦ę ”'),
(49008, 'https://ror.org/04ppv2c95', 'en', 1, 'https://ror.org/04ppv2c95 Shenzhen Pingle Orthopedic Hospital ę·±åœ³å¹³ä¹éŖØä¼¤ē§‘åŒ»é™¢'),
(49009, 'https://ror.org/04pr1tr38', 'en', 1, 'https://ror.org/04pr1tr38 International Food Protection Training Institute'),
(49010, 'https://ror.org/04prhfn63', 'no_lang_code', 1, 'https://ror.org/04prhfn63 Samsung (Switzerland)'),
(49011, 'https://ror.org/04psa8d07', 'en', 1, 'https://ror.org/04psa8d07 Geary County Schools USD 475'),
(49012, 'https://ror.org/04ptztc75', 'en', 1, 'https://ror.org/04ptztc75 Opinion Leader Research'),
(49013, 'https://ror.org/04pv7qx83', 'en', 1, 'https://ror.org/04pv7qx83 Battle Creek Public Schools'),
(49014, 'https://ror.org/04q23dw35', 'en', 1, 'https://ror.org/04q23dw35 Arkansas Department of Higher Education'),
(49015, 'https://ror.org/04q26a018', 'en', 1, 'https://ror.org/04q26a018 Common Heritage Foundation'),
(49016, 'https://ror.org/04q2tvr21', 'no_lang_code', 1, 'https://ror.org/04q2tvr21 Seastar Chemicals (Canada)'),
(49017, 'https://ror.org/04q4ktw86', 'no_lang_code', 1, 'https://ror.org/04q4ktw86 Faurecia (Canada)'),
(49018, 'https://ror.org/04q5ghr47', 'no_lang_code', 1, 'https://ror.org/04q5ghr47 Osaka Yuhigaoka Gakuen Junior College å¤§é˜Ŗå¤•é™½äø˜å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(49019, 'https://ror.org/04q5rka56', 'en', 1, 'https://ror.org/04q5rka56 Fraunhofer Institute for Integrated Systems and Device Technology Fraunhofer-Institut für Integrierte Systeme und Bauelementetechnologie'),
(49020, 'https://ror.org/04q7e9e16', 'en', 1, 'https://ror.org/04q7e9e16 Islamic Azad University Maybod دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…ŪŒŲØŲÆ یزد'),
(49021, 'https://ror.org/04q7kwp74', 'en', 1, 'https://ror.org/04q7kwp74 College Success Foundation'),
(49022, 'https://ror.org/04q90d498', 'en', 1, 'https://ror.org/04q90d498 Augusta-Richmond County Public Library System'),
(49023, 'https://ror.org/04qa3rn14', 'no_lang_code', 1, 'https://ror.org/04qa3rn14 Wakayama City Museum å’Œę­Œå±±åø‚ē«‹åšē‰©é¤Ø'),
(49024, 'https://ror.org/04qbzaj86', 'en', 1, 'https://ror.org/04qbzaj86 Hakodate Junior College å‡½é¤ØēŸ­ęœŸå¤§å­¦'),
(49025, 'https://ror.org/04qca6973', 'no_lang_code', 1, 'https://ror.org/04qca6973 Chemical Semantics (United States)'),
(49026, 'https://ror.org/04qchsx62', 'de', 1, 'https://ror.org/04qchsx62 IGES Institut, Institut für Gesundheits- und Sozialforschung'),
(49027, 'https://ror.org/04qfaak15', 'en', 1, 'https://ror.org/04qfaak15 Fraunhofer Institute for Factory Operation and Automation Fraunhofer-Institut für Fabrikbetrieb und -automatisierung'),
(49028, 'https://ror.org/04qfsp079', 'en', 1, 'https://ror.org/04qfsp079 Universal Management Services'),
(49029, 'https://ror.org/04qg98577', 'no_lang_code', 1, 'https://ror.org/04qg98577 Federal Mogul (United Kingdom)'),
(49030, 'https://ror.org/04qg9ew14', 'no_lang_code', 1, 'https://ror.org/04qg9ew14 Produce Investments (United Kingdom)'),
(49031, 'https://ror.org/04qj89w85', 'en', 1, 'https://ror.org/04qj89w85 Danish Agency for Culture and Palaces'),
(49032, 'https://ror.org/04qnjas92', 'en', 1, 'https://ror.org/04qnjas92 Ministry of Agriculture and Forestry and Food'),
(49033, 'https://ror.org/04qnjqh32', 'en', 1, 'https://ror.org/04qnjqh32 Idaho Association of School Administrators'),
(49034, 'https://ror.org/04qrdn471', 'no_lang_code', 1, 'https://ror.org/04qrdn471 Lintec Corporation (Japan) ćƒŖćƒ³ćƒ†ćƒƒć‚Æ'),
(49035, 'https://ror.org/04qsp9f77', 'en', 1, 'https://ror.org/04qsp9f77 Catholic University Institute of Buea'),
(49036, 'https://ror.org/04qtyk830', 'no_lang_code', 1, 'https://ror.org/04qtyk830 Sendai Tateyama Tanaka School ä»™å°åø‚ē«‹å±±ē”°äø­å­¦ę ”'),
(49037, 'https://ror.org/04qva2v49', 'de', 1, 'https://ror.org/04qva2v49 LVR-Klinik für Orthopädie Viersen'),
(49038, 'https://ror.org/04qvxeh20', 'no_lang_code', 1, 'https://ror.org/04qvxeh20 Air Squared (United States)'),
(49039, 'https://ror.org/04qw2v147', 'en', 1, 'https://ror.org/04qw2v147 Spokane Falls Community College'),
(49040, 'https://ror.org/04qxh5x87', 'no_lang_code', 1, 'https://ror.org/04qxh5x87 Unicharm (Japan) ćƒ¦ćƒ‹Ā·ćƒćƒ£ćƒ¼ćƒ ę Ŗå¼ä¼šē¤¾'),
(49041, 'https://ror.org/04qy22d94', 'no_lang_code', 1, 'https://ror.org/04qy22d94 Trimble (United States)'),
(49042, 'https://ror.org/04qy3pa58', 'en', 1, 'https://ror.org/04qy3pa58 Florida College System'),
(49043, 'https://ror.org/04qz58m35', 'en', 1, 'https://ror.org/04qz58m35 Riverbank Local Redevelopment Authority'),
(49044, 'https://ror.org/04qzk5f10', 'en', 1, 'https://ror.org/04qzk5f10 Osaka Prefectural Makino high school å¤§é˜Ŗåŗœē«‹ē‰§é‡Žé«˜ē­‰å­¦ę ”'),
(49045, 'https://ror.org/04qzp1e08', 'en', 1, 'https://ror.org/04qzp1e08 Miyagi Prefecture Sendai Higashi High School å®®åŸŽēœŒä»™å°ę±é«˜ē­‰å­¦ę ”'),
(49046, 'https://ror.org/04r0px617', 'no_lang_code', 1, 'https://ror.org/04r0px617 Central City Brewers and Distillers (Canada)'),
(49047, 'https://ror.org/04r13k538', 'en', 1, 'https://ror.org/04r13k538 Most Sacred Heart of Jesus Cardiology and Valvular Institute'),
(49048, 'https://ror.org/04r1zyg39', 'en', 1, 'https://ror.org/04r1zyg39 Denenchofu Lutheran Kindergarten'),
(49049, 'https://ror.org/04r3js259', 'en', 1, 'https://ror.org/04r3js259 Asian Transportation Research Society'),
(49050, 'https://ror.org/04r56x957', 'en', 1, 'https://ror.org/04r56x957 Freedom Writers Foundation'),
(49051, 'https://ror.org/04r5br045', 'no_lang_code', 1, 'https://ror.org/04r5br045 Imation (United States)'),
(49052, 'https://ror.org/04r6h9t04', 'no_lang_code', 1, 'https://ror.org/04r6h9t04 TE Connectivity (Germany)'),
(49053, 'https://ror.org/04r92nh16', 'en', 1, 'https://ror.org/04r92nh16 International Community Health Services'),
(49054, 'https://ror.org/04ra3cs69', 'no_lang_code', 1, 'https://ror.org/04ra3cs69 Saudi Arabia Basic Industries (Netherlands)'),
(49055, 'https://ror.org/04raysj94', 'en', 1, 'https://ror.org/04raysj94 Kagoshima Women''s Junior College é¹æå…å³¶å„³å­ēŸ­ęœŸå¤§å­¦'),
(49056, 'https://ror.org/04rb4b520', 'no_lang_code', 1, 'https://ror.org/04rb4b520 Tetra Laval (Switzerland)'),
(49057, 'https://ror.org/04rbcv404', 'en', 1, 'https://ror.org/04rbcv404 Supply Chain Competence Center (Germany)'),
(49058, 'https://ror.org/04rcfgv74', 'en', 1, 'https://ror.org/04rcfgv74 Ministry of Agriculture Forestry and Fisheries įž€įŸ’įžšįžŸįž½įž„įž€įžŸįž·įž€įž˜įŸ’įž˜ įžšįž»įž€įŸ’įžįž¶įž”įŸ’įžšįž˜įž¶įž‰įŸ‹ įž“įž·įž„įž“įŸįžŸįž¶įž‘'),
(49059, 'https://ror.org/04rdyj788', 'en', 1, 'https://ror.org/04rdyj788 Sakai Technology High School å¤§é˜Ŗåŗœē«‹å ŗå·„ē§‘é«˜ē­‰å­¦ę ”'),
(49060, 'https://ror.org/04rfpd926', 'no_lang_code', 1, 'https://ror.org/04rfpd926 Aichi Gakusen College ę„›ēŸ„å­¦ę³‰ēŸ­ęœŸå¤§å­¦'),
(49061, 'https://ror.org/04rfpye28', 'no_lang_code', 1, 'https://ror.org/04rfpye28 Applied Sciences Laboratory (United States)'),
(49062, 'https://ror.org/04rgfzt17', 'no_lang_code', 1, 'https://ror.org/04rgfzt17 Advanced Semiconductor Engineering (Taiwan) ę—„ęœˆå…‰é›†å›¢'),
(49063, 'https://ror.org/04rgq7p67', 'no_lang_code', 1, 'https://ror.org/04rgq7p67 Foremost (Canada)'),
(49064, 'https://ror.org/04rn6qc33', 'en', 1, 'https://ror.org/04rn6qc33 Okinawa Prefectural Museum ę²–ēø„ēœŒē«‹åšē‰©é¤Øćƒ»ē¾Žč”“é¤Ø'),
(49065, 'https://ror.org/04rqf3930', 'en', 1, 'https://ror.org/04rqf3930 Yamanashi Prefectural Education Center å±±ę¢ØēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(49066, 'https://ror.org/04rszyv41', 'en', 1, 'https://ror.org/04rszyv41 Australian Library and Information Association'),
(49067, 'https://ror.org/04rtn5y32', 'en', 1, 'https://ror.org/04rtn5y32 Forschungsinstitut für Kraftfahrwesen und Fahrzeugmotoren Stuttgart Research Institute of Automotive Engineering and Vehicle Engines Stuttgart'),
(49068, 'https://ror.org/04rvh3240', 'en', 1, 'https://ror.org/04rvh3240 Al-Mustafa Open University Ų§Ł„Ł…ŲµŲ·ŁŪŒ دانؓگاه Ų¢Ų²Ų§ŲÆ'),
(49069, 'https://ror.org/04rwyne07', 'en', 1, 'https://ror.org/04rwyne07 Saving Tiny Hearts Society'),
(49070, 'https://ror.org/04rzhfa50', 'no_lang_code', 1, 'https://ror.org/04rzhfa50 Fresenius Kabi (United States)'),
(49071, 'https://ror.org/04s0zae50', 'en', 1, 'https://ror.org/04s0zae50 American Association of Critical-Care Nurses'),
(49072, 'https://ror.org/04s147q83', 'en', 1, 'https://ror.org/04s147q83 Dawkins Dermatology'),
(49073, 'https://ror.org/04s1pd637', 'no_lang_code', 1, 'https://ror.org/04s1pd637 Element Six (South Africa)'),
(49074, 'https://ror.org/04s3xvj56', 'no_lang_code', 1, 'https://ror.org/04s3xvj56 Petroleum Geo-Services (United Kingdom)'),
(49075, 'https://ror.org/04s5gc466', 'en', 1, 'https://ror.org/04s5gc466 Mongolian Nature and Environment Consortium'),
(49076, 'https://ror.org/04s5wwh39', 'en', 1, 'https://ror.org/04s5wwh39 Anshan Normal University éžå±±åøˆčŒƒå­¦é™¢'),
(49077, 'https://ror.org/04s6age96', 'en', 1, 'https://ror.org/04s6age96 Aichi Bunkyo Women''s College ę„›ēŸ„ę–‡ę•™å„³å­ēŸ­ęœŸå¤§å­¦'),
(49078, 'https://ror.org/04s6bs470', 'no_lang_code', 1, 'https://ror.org/04s6bs470 Prysmian Group (United States)'),
(49079, 'https://ror.org/04s8pbj86', 'no_lang_code', 1, 'https://ror.org/04s8pbj86 SciKon Innovation (United States)'),
(49080, 'https://ror.org/04s9bdj81', 'en', 1, 'https://ror.org/04s9bdj81 Danish Energy Association Dansk Energi'),
(49081, 'https://ror.org/04s9pf004', 'en', 1, 'https://ror.org/04s9pf004 Zhejiang Pharmaceutical College ęµ™ę±ŸåŒ»čÆé«˜ē­‰äø“ē§‘å­¦ę ”'),
(49082, 'https://ror.org/04saf2403', 'en', 1, 'https://ror.org/04saf2403 Asian Academy of Film and Television'),
(49083, 'https://ror.org/04safzk84', 'no_lang_code', 1, 'https://ror.org/04safzk84 Dynea (Austria)'),
(49084, 'https://ror.org/04sbhjg04', 'no_lang_code', 1, 'https://ror.org/04sbhjg04 Zhejiang Chem-tech Group (China) ęµ™ę±ŸåŒ–å·„ē§‘ęŠ€é›†å›¢ęœ‰é™å…¬åøē²¾ē»†åŒ–å·„åŽ‚'),
(49085, 'https://ror.org/04sedwh45', 'en', 1, 'https://ror.org/04sedwh45 American Parkinson Disease Association'),
(49086, 'https://ror.org/04sfv4t11', 'no_lang_code', 1, 'https://ror.org/04sfv4t11 FPoliSolutions (United States)'),
(49087, 'https://ror.org/04sg12k28', 'no_lang_code', 1, 'https://ror.org/04sg12k28 Powerlink Queensland (Australia)'),
(49088, 'https://ror.org/04sg72471', 'en', 1, 'https://ror.org/04sg72471 University of Battambang'),
(49089, 'https://ror.org/04sggj290', 'en', 1, 'https://ror.org/04sggj290 Mental Health Association of Westchester County'),
(49090, 'https://ror.org/04sgkrh50', 'en', 1, 'https://ror.org/04sgkrh50 Shizuoka Prefectural Board of Education é™å²”ēœŒę•™č‚²å§”å“”ä¼š'),
(49091, 'https://ror.org/04sj13f52', 'no_lang_code', 1, 'https://ror.org/04sj13f52 Avery Dennison (United States)'),
(49092, 'https://ror.org/04skm6d44', 'en', 1, 'https://ror.org/04skm6d44 Japan University Accreditation Association å…¬ē›Šč²”å›£ę³•äŗŗ å¤§å­¦åŸŗęŗ–å”ä¼š'),
(49093, 'https://ror.org/04sksc249', 'en', 1, 'https://ror.org/04sksc249 Society of Instrument and Control Engineers čØˆęø¬č‡Ŗå‹•åˆ¶å¾”å­¦ä¼š'),
(49094, 'https://ror.org/04sm16305', 'no_lang_code', 1, 'https://ror.org/04sm16305 Mitsui Engineering and Shipbuilding (Japan) äø‰äŗ•é€ čˆ¹'),
(49095, 'https://ror.org/04sn6y446', 'en', 1, 'https://ror.org/04sn6y446 Udupi Shri Admar Mutt Education Council'),
(49096, 'https://ror.org/04sq30h86', 'en', 1, 'https://ror.org/04sq30h86 Fukuoka College of Health Sciences ē¦å²”åŒ»ē™‚ēŸ­ęœŸå¤§å­¦'),
(49097, 'https://ror.org/04srze519', 'en', 1, 'https://ror.org/04srze519 Mitutoyo Association for Science and Technology å…¬ē›Šč²”å›£ę³•äŗŗ äø‰č±Šē§‘å­¦ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(49098, 'https://ror.org/04sssnv16', 'en', 1, 'https://ror.org/04sssnv16 Islamic Azad University Pharmaceutical Sciences Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų¹Ł„ŁˆŁ… دارویی'),
(49099, 'https://ror.org/04st9j994', 'fr', 1, 'https://ror.org/04st9j994 UniversitƩ de Maradi'),
(49100, 'https://ror.org/04stsnh03', 'no_lang_code', 1, 'https://ror.org/04stsnh03 Photolitec (United States)'),
(49101, 'https://ror.org/04sw4z761', 'en', 1, 'https://ror.org/04sw4z761 Moscow Technological Institute'),
(49102, 'https://ror.org/04syjc425', 'en', 1, 'https://ror.org/04syjc425 Danish Defence Acquisition and Logistics Organization Forsvarets Materiel- og IndkĆøbsstyrelse'),
(49103, 'https://ror.org/04szen554', 'de', 1, 'https://ror.org/04szen554 Marie Meierhofer Institut für das Kind'),
(49104, 'https://ror.org/04t3acx61', 'en', 1, 'https://ror.org/04t3acx61 Kitsap Mental Health Services'),
(49105, 'https://ror.org/04t3phk92', 'no_lang_code', 1, 'https://ror.org/04t3phk92 Agilent Technologies (Australia)'),
(49106, 'https://ror.org/04t53ag79', 'en', 1, 'https://ror.org/04t53ag79 Niigata Prefectural Naoetsu Secondary School ę–°ę½ŸēœŒē«‹ē›“ę±Ÿę“„é«˜ē­‰å­¦ę ”'),
(49107, 'https://ror.org/04t69kx04', 'no_lang_code', 1, 'https://ror.org/04t69kx04 Insero E-Mobility (Denmark)'),
(49108, 'https://ror.org/04t760j73', 'en', 1, 'https://ror.org/04t760j73 Kanazawa Municipal Technical High School é‡‘ę²¢åø‚ē«‹å·„ę„­é«˜ē­‰å­¦ę ”'),
(49109, 'https://ror.org/04t7ypr69', 'no_lang_code', 1, 'https://ror.org/04t7ypr69 Elekta (United Kingdom)'),
(49110, 'https://ror.org/04t8h6g06', 'en', 1, 'https://ror.org/04t8h6g06 Kochi Technical High School é«˜ēŸ„ēœŒē«‹é«˜ēŸ„å·„ę„­é«˜ē­‰å­¦ę ”'),
(49111, 'https://ror.org/04t8w3r40', 'es', 1, 'https://ror.org/04t8w3r40 Servicio Geológico Minero Argentino'),
(49112, 'https://ror.org/04taj5290', 'no_lang_code', 1, 'https://ror.org/04taj5290 Moulton Bulb (United Kingdom)'),
(49113, 'https://ror.org/04tans503', 'en', 1, 'https://ror.org/04tans503 Shenzhen Blood Center ę·±åœ³åø‚č”€ę¶²äø­åæƒ'),
(49114, 'https://ror.org/04tatke33', 'no_lang_code', 1, 'https://ror.org/04tatke33 Spyryx Biosciences (United States)'),
(49115, 'https://ror.org/04tc04306', 'en', 1, 'https://ror.org/04tc04306 Islamic Azad University Quchan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł‚ŁˆŚ†Ų§Ł†'),
(49116, 'https://ror.org/04tdwrj58', 'it', 1, 'https://ror.org/04tdwrj58 Wikimedia Italia'),
(49117, 'https://ror.org/04te90b83', 'en', 1, 'https://ror.org/04te90b83 Cascade Bicycle Club Education Foundation'),
(49118, 'https://ror.org/04tenkb98', 'en', 1, 'https://ror.org/04tenkb98 German Graduate School of Management and Law'),
(49119, 'https://ror.org/04tg4wv11', 'pt', 1, 'https://ror.org/04tg4wv11 Wikimedia Portugal'),
(49120, 'https://ror.org/04tn8zp39', 'en', 1, 'https://ror.org/04tn8zp39 Centre for Remote Health'),
(49121, 'https://ror.org/04tqjn232', 'fr', 1, 'https://ror.org/04tqjn232 Association des MƩdecins VƩtƩrinaires du QuƩbec'),
(49122, 'https://ror.org/04tqxjj42', 'en', 1, 'https://ror.org/04tqxjj42 Tottori Prefectural Yonago High School é³„å–ēœŒē«‹ē±³å­é«˜ē­‰å­¦ę ”'),
(49123, 'https://ror.org/04tr5bk94', 'en', 1, 'https://ror.org/04tr5bk94 Tokyo Metropolitan Tachikawa High School ę±äŗ¬éƒ½ē«‹ē«‹å·é«˜ē­‰å­¦ę ”'),
(49124, 'https://ror.org/04trbvb35', 'no_lang_code', 1, 'https://ror.org/04trbvb35 Bridgestone (Japan) ę Ŗå¼ä¼šē¤¾ćƒ–ćƒŖćƒ‚ć‚¹ćƒˆćƒ³'),
(49125, 'https://ror.org/04tshhm50', 'en', 1, 'https://ror.org/04tshhm50 Shanxi Academy of Medical Sciences åŒ»å­¦ē§‘å­¦ē ”ē©¶é™¢å±±č„æ'),
(49126, 'https://ror.org/04tv07n86', 'en', 1, 'https://ror.org/04tv07n86 Methodology Centre for Environment Assessment'),
(49127, 'https://ror.org/04tv6t942', 'en', 1, 'https://ror.org/04tv6t942 Niswonger Foundation'),
(49128, 'https://ror.org/04tw81938', 'no_lang_code', 1, 'https://ror.org/04tw81938 Transtria (United States)'),
(49129, 'https://ror.org/04v0npt58', 'en', 1, 'https://ror.org/04v0npt58 Toyonaka City Board of Education ę•™č‚²å§”å“”ä¼š č±Šäø­åø‚'),
(49130, 'https://ror.org/04v65wy58', 'en', 1, 'https://ror.org/04v65wy58 Saitama Prefectural Toyooka High School åŸ¼ēŽ‰ēœŒē«‹č±Šå²”é«˜ē­‰å­¦ę ”'),
(49131, 'https://ror.org/04v68r337', 'en', 1, 'https://ror.org/04v68r337 Child Health Foundation'),
(49132, 'https://ror.org/04v71zy84', 'no_lang_code', 1, 'https://ror.org/04v71zy84 Toyoda Gosei (Germany)'),
(49133, 'https://ror.org/04v7gxe28', 'no_lang_code', 1, 'https://ror.org/04v7gxe28 Tektronix (Japan)'),
(49134, 'https://ror.org/04v84qq53', 'tr', 1, 'https://ror.org/04v84qq53 Aydın Adnan Menderes Üniversitesi Uygulama ve Araştırma Hastanesi'),
(49135, 'https://ror.org/04v9jks60', 'en', 1, 'https://ror.org/04v9jks60 Boston Center for Independent Living'),
(49136, 'https://ror.org/04vbmne73', 'en', 1, 'https://ror.org/04vbmne73 Sakura Walnut Kindergarten'),
(49137, 'https://ror.org/04vc08p32', 'en', 1, 'https://ror.org/04vc08p32 National Defence College Kenya'),
(49138, 'https://ror.org/04vdcpp96', 'en', 1, 'https://ror.org/04vdcpp96 Academy of Sciences of the Republic of Bashkortostan ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°ŃƒŠŗ Республики Š‘Š°ŃˆŠŗŠ¾Ń€Ń‚Š¾ŃŃ‚Š°Š½'),
(49139, 'https://ror.org/04vfs5h36', 'en', 1, 'https://ror.org/04vfs5h36 Washington State University Spokane'),
(49140, 'https://ror.org/04vg6xp73', 'en', 1, 'https://ror.org/04vg6xp73 Hiroshima Prefectural Rehabilitation Center åŗƒå³¶ēœŒē«‹éšœå®³č€…ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(49141, 'https://ror.org/04vgjs034', 'en', 1, 'https://ror.org/04vgjs034 London Hydro'),
(49142, 'https://ror.org/04vn6x894', 'en', 1, 'https://ror.org/04vn6x894 International Centre for Sustainable Development of Energy, Water and Environment Systems'),
(49143, 'https://ror.org/04vp8pb02', 'no_lang_code', 1, 'https://ror.org/04vp8pb02 West Pharmaceuticals (Germany)'),
(49144, 'https://ror.org/04vp9r166', 'en', 1, 'https://ror.org/04vp9r166 Excelencia in Education'),
(49145, 'https://ror.org/04vpecq51', 'en', 1, 'https://ror.org/04vpecq51 Bharti Hospital'),
(49146, 'https://ror.org/04vpw9274', 'en', 1, 'https://ror.org/04vpw9274 Bjƶrneborgs universitetscenter Porin yliopistokeskus University Consortium of Pori'),
(49147, 'https://ror.org/04vq3zr60', 'no_lang_code', 1, 'https://ror.org/04vq3zr60 Machfu (United States)'),
(49148, 'https://ror.org/04vqpq732', 'en', 1, 'https://ror.org/04vqpq732 Institute for Research on Household Economics å®¶čØˆēµŒęøˆē ”ē©¶ę‰€'),
(49149, 'https://ror.org/04vqws538', 'no_lang_code', 1, 'https://ror.org/04vqws538 Mirexus (Canada)'),
(49150, 'https://ror.org/04vr3n661', 'en', 1, 'https://ror.org/04vr3n661 Shizuoka Prefectural Police é™å²”ēœŒč­¦åÆŸ'),
(49151, 'https://ror.org/04vs0xj88', 'en', 1, 'https://ror.org/04vs0xj88 International Business College - Indianapolis'),
(49152, 'https://ror.org/04vttb719', 'en', 1, 'https://ror.org/04vttb719 Ministeri y''Ibikorwaremezo Ministry of Infrastructure MinistĆØre des Infrastructures'),
(49153, 'https://ror.org/04vtzbx16', 'en', 1, 'https://ror.org/04vtzbx16 Qinghai Provincial Peoples Hospital é’ęµ·ēœäŗŗę°‘åŒ»é™¢'),
(49154, 'https://ror.org/04vxve916', 'en', 1, 'https://ror.org/04vxve916 British Society for Oral and Dental Research'),
(49155, 'https://ror.org/04vxxnr42', 'no_lang_code', 1, 'https://ror.org/04vxxnr42 General Electric (Argentina)'),
(49156, 'https://ror.org/04vz9vy80', 'no_lang_code', 1, 'https://ror.org/04vz9vy80 Japan Display (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒ£ćƒ‘ćƒ³ćƒ‡ć‚£ć‚¹ćƒ—ćƒ¬ć‚¤'),
(49157, 'https://ror.org/04w3fk764', 'en', 1, 'https://ror.org/04w3fk764 Clayton Christensen Institute'),
(49158, 'https://ror.org/04w491k66', 'en', 1, 'https://ror.org/04w491k66 Desmond and Leah Tutu Legacy Foundation'),
(49159, 'https://ror.org/04w68ym71', 'en', 1, 'https://ror.org/04w68ym71 University Association for Research in Fundamental Psychopathology'),
(49160, 'https://ror.org/04w6n5s59', 'no_lang_code', 1, 'https://ror.org/04w6n5s59 Medtronic (Israel)'),
(49161, 'https://ror.org/04w6x9t25', 'no_lang_code', 1, 'https://ror.org/04w6x9t25 Zumtobel Group (Germany)'),
(49162, 'https://ror.org/04w8dt298', 'en', 1, 'https://ror.org/04w8dt298 Quest International University Perak'),
(49163, 'https://ror.org/04wa64s85', 'no_lang_code', 1, 'https://ror.org/04wa64s85 Nagoya College åå¤å±‹ēŸ­ęœŸå¤§å­¦'),
(49164, 'https://ror.org/04wb86f41', 'en', 1, 'https://ror.org/04wb86f41 Industrial Plankton'),
(49165, 'https://ror.org/04wbz7w60', 'en', 1, 'https://ror.org/04wbz7w60 Institute of History of Material Culture Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»ŃŒŠ½Š¾Š¹ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Š ŠŠ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(49166, 'https://ror.org/04wezhr50', 'en', 1, 'https://ror.org/04wezhr50 International Institute for the Study of Religions å›½éš›å®—ę•™ē ”ē©¶ę‰€č²”å›£'),
(49167, 'https://ror.org/04wfh0972', 'en', 1, 'https://ror.org/04wfh0972 Tokyo Rissho Junior College ę±äŗ¬ē«‹ę­£ēŸ­ęœŸå¤§å­¦'),
(49168, 'https://ror.org/04wghbv83', 'en', 1, 'https://ror.org/04wghbv83 NewTech Network'),
(49169, 'https://ror.org/04wh4y985', 'en', 1, 'https://ror.org/04wh4y985 St Clements University Higher Education School'),
(49170, 'https://ror.org/04whk3274', 'no_lang_code', 1, 'https://ror.org/04whk3274 New Britain Palm Oil (Papua New Guinea)'),
(49171, 'https://ror.org/04wjkw450', 'en', 1, 'https://ror.org/04wjkw450 Institute of Endemic Disease Control in Shandong Province å±±äøœēœåœ°ę–¹ē—…é˜²ę²»ē ”ē©¶ę‰€'),
(49172, 'https://ror.org/04wka5f51', 'no_lang_code', 1, 'https://ror.org/04wka5f51 Citrine Informatics (United States)'),
(49173, 'https://ror.org/04wnc5n11', 'no_lang_code', 1, 'https://ror.org/04wnc5n11 Envergex (United States)'),
(49174, 'https://ror.org/04wsndj47', 'en', 1, 'https://ror.org/04wsndj47 Okayama City Ishii Elementary School å²”å±±åø‚ē«‹ēŸ³äŗ•å°å­¦ę ”'),
(49175, 'https://ror.org/04wts6j28', 'no_lang_code', 1, 'https://ror.org/04wts6j28 Empire Genomics (United States)'),
(49176, 'https://ror.org/04wvr3489', 'en', 1, 'https://ror.org/04wvr3489 Australian Federation of University Women – South Australia'),
(49177, 'https://ror.org/04wxd9348', 'en', 1, 'https://ror.org/04wxd9348 Center for Teaching Quality'),
(49178, 'https://ror.org/04wyk9691', 'en', 1, 'https://ror.org/04wyk9691 Cascades Volcano Observatory'),
(49179, 'https://ror.org/04wyn7z78', 'en', 1, 'https://ror.org/04wyn7z78 Idaho Commission for Libraries'),
(49180, 'https://ror.org/04wyrwx07', 'en', 1, 'https://ror.org/04wyrwx07 Chiba Prefectural Kimitsu Aoba High School åƒč‘‰ēœŒē«‹å›ę“„é’č‘‰é«˜ē­‰å­¦ę ”'),
(49181, 'https://ror.org/04wyxrk96', 'no_lang_code', 1, 'https://ror.org/04wyxrk96 Orica (Singapore)'),
(49182, 'https://ror.org/04x12dp53', 'no_lang_code', 1, 'https://ror.org/04x12dp53 Motility (United States)'),
(49183, 'https://ror.org/04x3svs29', 'en', 1, 'https://ror.org/04x3svs29 Educational Results Partnership'),
(49184, 'https://ror.org/04x5anb81', 'en', 1, 'https://ror.org/04x5anb81 China Academy of Traditional Chinese Medicine Hospital of Ophthalmology äø­å›½äø­åŒ»ē§‘å­¦é™¢ēœ¼ē§‘åŒ»é™¢'),
(49185, 'https://ror.org/04xatxv47', 'en', 1, 'https://ror.org/04xatxv47 Aichi Prefectural Xincheng East High School ę„›ēŸ„ēœŒē«‹ę–°åŸŽę±é«˜ē­‰å­¦ę ”'),
(49186, 'https://ror.org/04xbz3316', 'en', 1, 'https://ror.org/04xbz3316 Miyazaki Prefectural Museum of Nature and History å®®å“ŽēœŒē·åˆåšē‰©é¤Ø'),
(49187, 'https://ror.org/04xcafs23', 'en', 1, 'https://ror.org/04xcafs23 Wichita-Sedgwick County Historical Museum'),
(49188, 'https://ror.org/04xegkb78', 'no_lang_code', 1, 'https://ror.org/04xegkb78 Sphaera Pharma (Singapore)'),
(49189, 'https://ror.org/04xf9hg85', 'no_lang_code', 1, 'https://ror.org/04xf9hg85 Spectral Labs (United States)'),
(49190, 'https://ror.org/04xfwhf17', 'en', 1, 'https://ror.org/04xfwhf17 National Institute of Technology, Kagawa College é¦™å·é«˜ē­‰å°‚é–€å­¦ę ”'),
(49191, 'https://ror.org/04xh6km87', 'en', 1, 'https://ror.org/04xh6km87 Toyoshina High School č±Šē§‘é«˜ē­‰å­¦ę ”'),
(49192, 'https://ror.org/04xjcj004', 'no_lang_code', 1, 'https://ror.org/04xjcj004 Woodmere Nursery (Canada)'),
(49193, 'https://ror.org/04xjxdt77', 'no_lang_code', 1, 'https://ror.org/04xjxdt77 Universal Beauty Products (United States)'),
(49194, 'https://ror.org/04xkkx196', 'en', 1, 'https://ror.org/04xkkx196 Medic One Foundation'),
(49195, 'https://ror.org/04xrvke88', 'no_lang_code', 1, 'https://ror.org/04xrvke88 Optimisa Research (United Kingdom)'),
(49196, 'https://ror.org/04xt43068', 'no_lang_code', 1, 'https://ror.org/04xt43068 Hokkaido Museum åŒ—ęµ·é“åšē‰©é¤Ø'),
(49197, 'https://ror.org/04xvx5n85', 'no_lang_code', 1, 'https://ror.org/04xvx5n85 Samraksh (United States)'),
(49198, 'https://ror.org/04xw60528', 'en', 1, 'https://ror.org/04xw60528 Marine Royale Canadienne Royal Canadian Navy'),
(49199, 'https://ror.org/04xw8f995', 'no_lang_code', 1, 'https://ror.org/04xw8f995 Atlas Copco (United States)'),
(49200, 'https://ror.org/04xwm9403', 'no_lang_code', 1, 'https://ror.org/04xwm9403 VoltServer (United States)'),
(49201, 'https://ror.org/04y1c3h69', 'no_lang_code', 1, 'https://ror.org/04y1c3h69 Sigray (United States)'),
(49202, 'https://ror.org/04y2bnd24', 'no_lang_code', 1, 'https://ror.org/04y2bnd24 Lincoln Electric (United States)'),
(49203, 'https://ror.org/04y2hja28', 'en', 1, 'https://ror.org/04y2hja28 International Center for Not-for-Profit Law'),
(49204, 'https://ror.org/04y2tt160', 'en', 1, 'https://ror.org/04y2tt160 Tri-County Council for Southern Maryland'),
(49205, 'https://ror.org/04y4mb158', 'en', 1, 'https://ror.org/04y4mb158 Tokyo Union Theological Seminary ę±äŗ¬ē„žå­¦å¤§å­¦'),
(49206, 'https://ror.org/04y72kg92', 'no_lang_code', 1, 'https://ror.org/04y72kg92 BioChain Institute (United States)'),
(49207, 'https://ror.org/04y8cm806', 'en', 1, 'https://ror.org/04y8cm806 Japanese Circulation Society ę—„ęœ¬å¾Ŗē’°å™Øå­¦ä¼š'),
(49208, 'https://ror.org/04y8p0f91', 'en', 1, 'https://ror.org/04y8p0f91 Fraunhofer Institute for Building Physics Fraunhofer-Institut für Bauphysik'),
(49209, 'https://ror.org/04y96wg46', 'en', 1, 'https://ror.org/04y96wg46 Imperial College of Toronto'),
(49210, 'https://ror.org/04yaf9a96', 'no_lang_code', 1, 'https://ror.org/04yaf9a96 Accenture (Luxembourg)'),
(49211, 'https://ror.org/04yagfz71', 'en', 1, 'https://ror.org/04yagfz71 Center on Education Policy'),
(49212, 'https://ror.org/04ye8xg90', 'en', 1, 'https://ror.org/04ye8xg90 Central Florida Regional Planning Council'),
(49213, 'https://ror.org/04ymjyh53', 'en', 1, 'https://ror.org/04ymjyh53 Foetal Alcohol Spectrum Disorders Clinic'),
(49214, 'https://ror.org/04yppq721', 'en', 1, 'https://ror.org/04yppq721 Australasian Institute of Mining and Metallurgy'),
(49215, 'https://ror.org/04yrcjm56', 'en', 1, 'https://ror.org/04yrcjm56 Second Affiliated Hospital of Xuzhou Medical College å¾å·žåŒ»å­¦é™¢ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(49216, 'https://ror.org/04ys0ah18', 'en', 1, 'https://ror.org/04ys0ah18 Max Planck Institute Luxemburg for International, European and Regulatory Procedural Law'),
(49217, 'https://ror.org/04yw9eb05', 'en', 1, 'https://ror.org/04yw9eb05 British Society for Antimicrobial Chemotherapy'),
(49218, 'https://ror.org/04z1e3n06', 'en', 1, 'https://ror.org/04z1e3n06 Livestock & Meat Commission'),
(49219, 'https://ror.org/04z1myv13', 'es', 1, 'https://ror.org/04z1myv13 Comfenalco Technological University Foundation Fundación Universitaria Tecnológico Comfenalco Cartagena'),
(49220, 'https://ror.org/04z2tt918', 'en', 1, 'https://ror.org/04z2tt918 Walker County Red Cross Hospital čŽ·å˜‰åŽæēŗ¢åå­—åŒ»é™¢'),
(49221, 'https://ror.org/04z2vav77', 'en', 1, 'https://ror.org/04z2vav77 Jacaranda Health'),
(49222, 'https://ror.org/04z5zh552', 'en', 1, 'https://ror.org/04z5zh552 Foundation For The Carolinas'),
(49223, 'https://ror.org/04z6j1174', 'no_lang_code', 1, 'https://ror.org/04z6j1174 Rambus (United Kingdom)'),
(49224, 'https://ror.org/04z6q9z55', 'fr', 1, 'https://ror.org/04z6q9z55 Sidaction'),
(49225, 'https://ror.org/04z8qf553', 'en', 1, 'https://ror.org/04z8qf553 HPO Research Group'),
(49226, 'https://ror.org/04zddqw39', 'no_lang_code', 1, 'https://ror.org/04zddqw39 TeleConsult Austria (Austria)'),
(49227, 'https://ror.org/04zdhre16', 'no_lang_code', 1, 'https://ror.org/04zdhre16 Alcoa (Germany)'),
(49228, 'https://ror.org/04zh6m791', 'es', 1, 'https://ror.org/04zh6m791 Universidad JosƩ Vasconcelos'),
(49229, 'https://ror.org/04zj17j36', 'en', 1, 'https://ror.org/04zj17j36 British Society for Plant Pathology'),
(49230, 'https://ror.org/04zj2qc05', 'en', 1, 'https://ror.org/04zj2qc05 Asia Network for Sustainable Agriculture and Bioresources'),
(49231, 'https://ror.org/04zp7ch64', 'en', 1, 'https://ror.org/04zp7ch64 Global Child Nutrition Foundation'),
(49232, 'https://ror.org/04zp8dw64', 'no_lang_code', 1, 'https://ror.org/04zp8dw64 Nippon Sheet Glass (United States)'),
(49233, 'https://ror.org/04zpf5j19', 'en', 1, 'https://ror.org/04zpf5j19 Ministry of Agriculture and Livestock'),
(49234, 'https://ror.org/04zq68n70', 'no_lang_code', 1, 'https://ror.org/04zq68n70 EnerSys (Switzerland)'),
(49235, 'https://ror.org/04zq76066', 'en', 1, 'https://ror.org/04zq76066 San Diego Association of Governments'),
(49236, 'https://ror.org/04zrrk968', 'en', 1, 'https://ror.org/04zrrk968 Anhui Provincial Meteorological Bureau å®‰å¾½ēœę°”č±”å±€'),
(49237, 'https://ror.org/04zseas36', 'pt', 1, 'https://ror.org/04zseas36 Associação Brasileira de Terapia Celular'),
(49238, 'https://ror.org/04zt5qa54', 'en', 1, 'https://ror.org/04zt5qa54 Kyoto Prefectural Institute of Public Health and Environment äŗ¬éƒ½åŗœäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(49239, 'https://ror.org/04ztf2c56', 'en', 1, 'https://ror.org/04ztf2c56 Sanjo Municipal Tsukioka Elementary School äø‰ę”åø‚ē«‹ęœˆå²”å°å­¦ę ”'),
(49240, 'https://ror.org/04zv7sm47', 'en', 1, 'https://ror.org/04zv7sm47 Osaka Prefectural Sano Polytechnic High School å¤§é˜Ŗåŗœē«‹ä½é‡Žå·„ē§‘é«˜ē­‰å­¦ę ”'),
(49241, 'https://ror.org/04zws1j77', 'no_lang_code', 1, 'https://ror.org/04zws1j77 Fabmatics (Germany)'),
(49242, 'https://ror.org/0500gae26', 'en', 1, 'https://ror.org/0500gae26 La SociƩtƩ gƩographique royale du Canada Royal Canadian Geographical Society'),
(49243, 'https://ror.org/0500yaj74', 'en', 1, 'https://ror.org/0500yaj74 Victoria Police'),
(49244, 'https://ror.org/05011pz46', 'no_lang_code', 1, 'https://ror.org/05011pz46 Commvault (United States)'),
(49245, 'https://ror.org/050332k40', 'no_lang_code', 1, 'https://ror.org/050332k40 Johnson Controls (Canada)'),
(49246, 'https://ror.org/0503rt987', 'no_lang_code', 1, 'https://ror.org/0503rt987 Oki Electric Industry (Japan) ę²–é›»ę°—å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(49247, 'https://ror.org/0503v4y98', 'no_lang_code', 1, 'https://ror.org/0503v4y98 Toyota Industries (Japan) ę Ŗå¼ä¼šē¤¾č±Šē”°č‡Ŗå‹•ē¹”ę©Ÿ,'),
(49248, 'https://ror.org/0504zvt24', 'en', 1, 'https://ror.org/0504zvt24 American Society of News Editors'),
(49249, 'https://ror.org/05062q345', 'pt', 1, 'https://ror.org/05062q345 Sociedade Brasileira de Educação MatemÔtica'),
(49250, 'https://ror.org/050a0jp38', 'no_lang_code', 1, 'https://ror.org/050a0jp38 Helbio (Greece)'),
(49251, 'https://ror.org/050b8h122', 'en', 1, 'https://ror.org/050b8h122 Parkinson''s Clinic of Eastern Toronto & Movement Disorders Centre'),
(49252, 'https://ror.org/050bkqc56', 'no_lang_code', 1, 'https://ror.org/050bkqc56 Meguro Parasitological Museum ē›®é»’åÆ„ē”Ÿč™«é¤Ø'),
(49253, 'https://ror.org/050btbx23', 'no_lang_code', 1, 'https://ror.org/050btbx23 Hubbell (United Kingdom)'),
(49254, 'https://ror.org/050bz3844', 'en', 1, 'https://ror.org/050bz3844 Archaeological Institute of Kashihara å„ˆč‰ÆēœŒē«‹ę©æåŽŸč€ƒå¤å­¦ē ”ē©¶ę‰€'),
(49255, 'https://ror.org/050d1hk46', 'no_lang_code', 1, 'https://ror.org/050d1hk46 SunEdison (Singapore)'),
(49256, 'https://ror.org/050e1z365', 'no_lang_code', 1, 'https://ror.org/050e1z365 XG Sciences (United States)'),
(49257, 'https://ror.org/050f4mc80', 'en', 1, 'https://ror.org/050f4mc80 Carinthian Economic Promotion Fund KƤrntner Wirtschaftsfƶrderungs Fonds'),
(49258, 'https://ror.org/050f9s475', 'en', 1, 'https://ror.org/050f9s475 NM Sadguru Water and Development Foundation'),
(49259, 'https://ror.org/050hkx325', 'en', 1, 'https://ror.org/050hkx325 Tokyo National Museum ę±äŗ¬å›½ē«‹åšē‰©é¤Ø'),
(49260, 'https://ror.org/050j82f52', 'no_lang_code', 1, 'https://ror.org/050j82f52 TE Connectivity (United Kingdom)'),
(49261, 'https://ror.org/050m4ps22', 'en', 1, 'https://ror.org/050m4ps22 Sri Dharmasthala Manjunatheshwara Educational Society ą²Žą²øą³.ಔಿ.ą²Žą²‚ ą²¶ą³†ą³–ą²•ą³ą²·ą²£ą²æą²• ą²øą²‚ą²øą³ą²„ą³†'),
(49262, 'https://ror.org/050nvag51', 'en', 1, 'https://ror.org/050nvag51 Committee for Economic Development'),
(49263, 'https://ror.org/050pkwa79', 'no_lang_code', 1, 'https://ror.org/050pkwa79 Tobu Ryoiku Center ę±äŗ¬éƒ½ē«‹ę±éƒØē™‚č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(49264, 'https://ror.org/050qk7w58', 'no_lang_code', 1, 'https://ror.org/050qk7w58 Garrett Technologies (United States)'),
(49265, 'https://ror.org/050raka84', 'pt', 1, 'https://ror.org/050raka84 Fundação PlanetÔrio da Cidade do Rio de Janeiro'),
(49266, 'https://ror.org/050tayp70', 'en', 1, 'https://ror.org/050tayp70 Breastopia Namba Hospital'),
(49267, 'https://ror.org/050zd7q22', 'en', 1, 'https://ror.org/050zd7q22 African Comprehensive HIV/AIDS Partnerships'),
(49268, 'https://ror.org/05118ff02', 'en', 1, 'https://ror.org/05118ff02 East Asia Research'),
(49269, 'https://ror.org/0513ngw03', 'en', 1, 'https://ror.org/0513ngw03 Matsumoto Meat Hygienic Inspection Center of Nagano Prefecture é•·é‡ŽēœŒę¾ęœ¬é£Ÿč‚‰č”›ē”Ÿę¤œęŸ»ę‰€'),
(49270, 'https://ror.org/0514gnk26', 'no_lang_code', 1, 'https://ror.org/0514gnk26 Panacea Solution (United States)'),
(49271, 'https://ror.org/0515mqy80', 'no_lang_code', 1, 'https://ror.org/0515mqy80 Nortek (United Kingdom)'),
(49272, 'https://ror.org/051anhc42', 'pl', 1, 'https://ror.org/051anhc42 Samodzielny Publiczny Wojewódzki Szpital Zespolony im. Marii Skłodowskiej – Curie'),
(49273, 'https://ror.org/051bey794', 'en', 1, 'https://ror.org/051bey794 Kanagawa Prefectural Shonan High School ē„žå„ˆå·ēœŒē«‹ę¹˜å—é«˜ē­‰å­¦ę ”'),
(49274, 'https://ror.org/051bxj583', 'en', 1, 'https://ror.org/051bxj583 Constitutional Rights Foundation'),
(49275, 'https://ror.org/051c1fs51', 'es', 1, 'https://ror.org/051c1fs51 Fundación Oikos'),
(49276, 'https://ror.org/051gaae98', 'no_lang_code', 1, 'https://ror.org/051gaae98 Tellabs (Canada)'),
(49277, 'https://ror.org/051gpmw62', 'no_lang_code', 1, 'https://ror.org/051gpmw62 Trading Technologies (United States)'),
(49278, 'https://ror.org/051j85s07', 'en', 1, 'https://ror.org/051j85s07 Climate Foundation'),
(49279, 'https://ror.org/051jdqz70', 'en', 1, 'https://ror.org/051jdqz70 Hakodate National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹å‡½é¤Øē—…é™¢'),
(49280, 'https://ror.org/051jh8373', 'no_lang_code', 1, 'https://ror.org/051jh8373 Piovan (Canada)'),
(49281, 'https://ror.org/051k56n75', 'no_lang_code', 1, 'https://ror.org/051k56n75 CiVentiChem (United States)'),
(49282, 'https://ror.org/051k6dd41', 'no_lang_code', 1, 'https://ror.org/051k6dd41 Shimadzu (United Kingdom)'),
(49283, 'https://ror.org/051mdt953', 'no_lang_code', 1, 'https://ror.org/051mdt953 Montana Emergent Technologies (United States)'),
(49284, 'https://ror.org/051mryw61', 'en', 1, 'https://ror.org/051mryw61 Entomological Society of Canada SociĆ©tĆ© d’Entomologie du Canada'),
(49285, 'https://ror.org/051n1ac86', 'no_lang_code', 1, 'https://ror.org/051n1ac86 BioFortis (United States)'),
(49286, 'https://ror.org/051q2fd34', 'en', 1, 'https://ror.org/051q2fd34 Maisha Meds'),
(49287, 'https://ror.org/051q6p014', 'en', 1, 'https://ror.org/051q6p014 Ishikawa Prefecture Archaeological Center ēŸ³å·ēœŒåŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æ'),
(49288, 'https://ror.org/051rtfe77', 'de', 1, 'https://ror.org/051rtfe77 Schweizer Hochschule für Logopädie Rorschach'),
(49289, 'https://ror.org/051scxa97', 'en', 1, 'https://ror.org/051scxa97 Makino Botanical Garden é«˜ēŸ„ēœŒē«‹ē‰§é‡Žę¤ē‰©åœ’'),
(49290, 'https://ror.org/051t3nd40', 'en', 1, 'https://ror.org/051t3nd40 Islamic Azad University Bostanabad دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŲŒ بستان Ų¢ŲØŲ§ŲÆ'),
(49291, 'https://ror.org/051v3pe92', 'no_lang_code', 1, 'https://ror.org/051v3pe92 Mando Corporation (South Korea) ė§Œė„'),
(49292, 'https://ror.org/051vnys61', 'no_lang_code', 1, 'https://ror.org/051vnys61 Meritor (United Kingdom)'),
(49293, 'https://ror.org/051vpgk97', 'no_lang_code', 1, 'https://ror.org/051vpgk97 Toshiba (United States)'),
(49294, 'https://ror.org/051x4a456', 'en', 1, 'https://ror.org/051x4a456 Institute of Theoretical and Applied Electrodynamics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø приклаГной ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š“ŠøŠ½Š°Š¼ŠøŠŗŠø Š ŠŠ'),
(49295, 'https://ror.org/051xcjm78', 'en', 1, 'https://ror.org/051xcjm78 Pharmacy Guild of Australia'),
(49296, 'https://ror.org/051ywtd91', 'en', 1, 'https://ror.org/051ywtd91 Institute of Applied Energy äø€čˆ¬č²”å›£ę³•äŗŗć‚Øćƒćƒ«ć‚®ćƒ¼ē·åˆå·„å­¦ē ”ē©¶ę‰€'),
(49297, 'https://ror.org/051yxm544', 'no_lang_code', 1, 'https://ror.org/051yxm544 PNO Consultants (Netherlands)'),
(49298, 'https://ror.org/05213zp13', 'en', 1, 'https://ror.org/05213zp13 Indigenous Language Institute'),
(49299, 'https://ror.org/0521h8v35', 'en', 1, 'https://ror.org/0521h8v35 Fort Leavenworth Unified School District 207'),
(49300, 'https://ror.org/05236ad29', 'en', 1, 'https://ror.org/05236ad29 Sagamihara City Museum ē›øęØ”åŽŸåø‚ē«‹åšē‰©é¤Ø'),
(49301, 'https://ror.org/05240d030', 'no_lang_code', 1, 'https://ror.org/05240d030 Mara Renewables (Canada)'),
(49302, 'https://ror.org/0524n4e69', 'en', 1, 'https://ror.org/0524n4e69 Kagawa Buried Cultural Property Center é¦™å·ēœŒåŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(49303, 'https://ror.org/05257ys56', 'en', 1, 'https://ror.org/05257ys56 British Transplantation Society'),
(49304, 'https://ror.org/0525gz420', 'en', 1, 'https://ror.org/0525gz420 Fraunhofer Center for Maritime Logistics and Services Fraunhofer-Center für Maritime Logistik und Dienstleistungen'),
(49305, 'https://ror.org/0525kzq59', 'en', 1, 'https://ror.org/0525kzq59 Kyoto Prefectural Board of Education'),
(49306, 'https://ror.org/0526yv239', 'en', 1, 'https://ror.org/0526yv239 Beeches Hospital'),
(49307, 'https://ror.org/052a20h63', 'no_lang_code', 1, 'https://ror.org/052a20h63 Samsung (Brazil)'),
(49308, 'https://ror.org/052ay7p78', 'en', 1, 'https://ror.org/052ay7p78 Bệnh viện Phổi HĆ Nį»™i Hanoi Lung Hospital'),
(49309, 'https://ror.org/052dn5m53', 'no_lang_code', 1, 'https://ror.org/052dn5m53 ArcticDx (Canada)'),
(49310, 'https://ror.org/052ec8m16', 'no_lang_code', 1, 'https://ror.org/052ec8m16 Charmworks (United States)'),
(49311, 'https://ror.org/052fbwe76', 'en', 1, 'https://ror.org/052fbwe76 Center for Study of Science Technology and Policy'),
(49312, 'https://ror.org/052fvq722', 'en', 1, 'https://ror.org/052fvq722 Kanagawa Industrial Technology Center ē„žå„ˆå·ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(49313, 'https://ror.org/052h22p40', 'en', 1, 'https://ror.org/052h22p40 Singing River Health System'),
(49314, 'https://ror.org/052mh6j19', 'no_lang_code', 1, 'https://ror.org/052mh6j19 DenseLight Semiconductors (Singapore)'),
(49315, 'https://ror.org/052mwhp79', 'en', 1, 'https://ror.org/052mwhp79 Plunkett Foundation'),
(49316, 'https://ror.org/052q3p191', 'en', 1, 'https://ror.org/052q3p191 Shakarim State University Of Semey Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шакарима гороГа Демей'),
(49317, 'https://ror.org/052q58629', 'en', 1, 'https://ror.org/052q58629 Institute for Advanced Energy Technologies Istituto di Tecnologie Avanzate per l''Energia "Nicola Giordano"'),
(49318, 'https://ror.org/052qrf856', 'en', 1, 'https://ror.org/052qrf856 Dr Vijay Kumar Foundation'),
(49319, 'https://ror.org/052qwkx28', 'de', 1, 'https://ror.org/052qwkx28 Institut für Mikroökologie'),
(49320, 'https://ror.org/052sehq92', 'no_lang_code', 1, 'https://ror.org/052sehq92 Teleflex (Germany)'),
(49321, 'https://ror.org/052tbr029', 'en', 1, 'https://ror.org/052tbr029 Institute of Slavic Studies Instytut Slawistyki PAN'),
(49322, 'https://ror.org/052tv0w45', 'en', 1, 'https://ror.org/052tv0w45 Almond Board of California'),
(49323, 'https://ror.org/052wab383', 'no_lang_code', 1, 'https://ror.org/052wab383 Baxter (Switzerland)'),
(49324, 'https://ror.org/052zcxp76', 'en', 1, 'https://ror.org/052zcxp76 Seika Women''s Junior College ē²¾čÆå„³å­ēŸ­ęœŸå¤§å­¦'),
(49325, 'https://ror.org/05309p384', 'en', 1, 'https://ror.org/05309p384 Montgomery Museum & Lewis Miller Regional Art Center'),
(49326, 'https://ror.org/0531qh590', 'en', 1, 'https://ror.org/0531qh590 Ministerstvo spravedlnosti České republiky Ministry of Justice'),
(49327, 'https://ror.org/0532w7m55', 'es', 1, 'https://ror.org/0532w7m55 Universidad TƩcnica Latinoamericana'),
(49328, 'https://ror.org/05333yg23', 'no_lang_code', 1, 'https://ror.org/05333yg23 Hitachi Engineering (Japan) ę Ŗå¼ä¼šē¤¾ ę—„ē«‹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(49329, 'https://ror.org/05338hh70', 'no_lang_code', 1, 'https://ror.org/05338hh70 Prozomix (United Kingdom)'),
(49330, 'https://ror.org/0534wbh79', 'no_lang_code', 1, 'https://ror.org/0534wbh79 Geomechanica (Canada)'),
(49331, 'https://ror.org/0535mbq53', 'no_lang_code', 1, 'https://ror.org/0535mbq53 Wikimedia Bangladesh উইকিমিঔিয়া বাংলাদেশ'),
(49332, 'https://ror.org/0536ew874', 'no_lang_code', 1, 'https://ror.org/0536ew874 3M (Israel)'),
(49333, 'https://ror.org/053ae3r23', 'en', 1, 'https://ror.org/053ae3r23 Schweizerischer Versicherungsverband Swiss Insurance Association'),
(49334, 'https://ror.org/053bn9w04', 'no_lang_code', 1, 'https://ror.org/053bn9w04 PROTO Manufacturing (Canada)'),
(49335, 'https://ror.org/053cetp63', 'no_lang_code', 1, 'https://ror.org/053cetp63 Autoliv (United Kingdom)'),
(49336, 'https://ror.org/053cvy840', 'no_lang_code', 1, 'https://ror.org/053cvy840 SimPlan (Germany)'),
(49337, 'https://ror.org/053gd5s23', 'en', 1, 'https://ror.org/053gd5s23 Willow Breast and Hereditary Cancer Support'),
(49338, 'https://ror.org/053hax662', 'en', 1, 'https://ror.org/053hax662 Padres Contra El CƔncer'),
(49339, 'https://ror.org/053pkd137', 'pt', 1, 'https://ror.org/053pkd137 Instituto Kairós'),
(49340, 'https://ror.org/053qvcb25', 'no_lang_code', 1, 'https://ror.org/053qvcb25 Helios-NRG (United States)'),
(49341, 'https://ror.org/053rqrs18', 'en', 1, 'https://ror.org/053rqrs18 Narashino Municipal Narashino High School ēæ’åæ—é‡Žåø‚ē«‹ēæ’åæ—é‡Žé«˜ē­‰å­¦ę ”'),
(49342, 'https://ror.org/053sbg434', 'en', 1, 'https://ror.org/053sbg434 Aomori Prefectural Mito High School é’ę£®ēœŒē«‹äø‰ęˆøé«˜ē­‰å­¦ę ”'),
(49343, 'https://ror.org/053se7r61', 'en', 1, 'https://ror.org/053se7r61 Natural History Museum and Institute åƒč‘‰ēœŒē«‹äø­å¤®åšē‰©é¤Ø'),
(49344, 'https://ror.org/053t12b24', 'no_lang_code', 1, 'https://ror.org/053t12b24 STMicroelectronics (Malta)'),
(49345, 'https://ror.org/053t9n332', 'no_lang_code', 1, 'https://ror.org/053t9n332 Xfibra (United States)'),
(49346, 'https://ror.org/053ttas14', 'en', 1, 'https://ror.org/053ttas14 HealthforAnimals'),
(49347, 'https://ror.org/053y02f02', 'no_lang_code', 1, 'https://ror.org/053y02f02 ITT (United Kingdom)'),
(49348, 'https://ror.org/053y5dz28', 'no_lang_code', 1, 'https://ror.org/053y5dz28 GD Goenka University'),
(49349, 'https://ror.org/053y7p194', 'en', 1, 'https://ror.org/053y7p194 Health & Development International'),
(49350, 'https://ror.org/054021a91', 'pt', 1, 'https://ror.org/054021a91 Associação Brasileira de Recursos Hídricos'),
(49351, 'https://ror.org/0540dg488', 'en', 1, 'https://ror.org/0540dg488 Aichi Prefectural Higashiura High School ę„›ēŸ„ēœŒē«‹ę±ęµ¦é«˜ē­‰å­¦ę ”'),
(49352, 'https://ror.org/0542g3d58', 'en', 1, 'https://ror.org/0542g3d58 Royal Historical Society'),
(49353, 'https://ror.org/0543g9v76', 'en', 1, 'https://ror.org/0543g9v76 Centre for Regional and International STI Studies and Support'),
(49354, 'https://ror.org/0543j1d77', 'en', 1, 'https://ror.org/0543j1d77 Fujita Animal Hospital 藤田動物病院'),
(49355, 'https://ror.org/0546xmt86', 'en', 1, 'https://ror.org/0546xmt86 Edo Tokyo Museum ę±Ÿęˆøę±äŗ¬åšē‰©é¤Ø'),
(49356, 'https://ror.org/054aj1x19', 'no_lang_code', 1, 'https://ror.org/054aj1x19 Nihon Dempa Kogyo (Japan) ę—„ęœ¬é›»ę³¢å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(49357, 'https://ror.org/054awkm93', 'en', 1, 'https://ror.org/054awkm93 Achievement Rewards for College Scientists Foundation'),
(49358, 'https://ror.org/054bpg497', 'no_lang_code', 1, 'https://ror.org/054bpg497 GlobalFoundries (United Kingdom)'),
(49359, 'https://ror.org/054fc6480', 'no_lang_code', 1, 'https://ror.org/054fc6480 NXP (United States)'),
(49360, 'https://ror.org/054fysp39', 'en', 1, 'https://ror.org/054fysp39 Guangdong Open University å¹æäøœå¼€ę”¾å¤§å­¦'),
(49361, 'https://ror.org/054h1gp83', 'fr', 1, 'https://ror.org/054h1gp83 Institut Suisse de SpƩlƩologie et de Karstologie'),
(49362, 'https://ror.org/054h41036', 'en', 1, 'https://ror.org/054h41036 Santa Rosa Memorial Hospital'),
(49363, 'https://ror.org/054jsj779', 'en', 1, 'https://ror.org/054jsj779 East Bay Educational Collaborative'),
(49364, 'https://ror.org/054maaz15', 'no_lang_code', 1, 'https://ror.org/054maaz15 Jozjan university دانؓگاه Ų¬ŁˆŲ²Ų¬Ų§Ł†ā€Žā€Ž'),
(49365, 'https://ror.org/054mxgp74', 'fr', 1, 'https://ror.org/054mxgp74 Association pour la recherche sur la SclƩrose LatƩrale Amyotrophique'),
(49366, 'https://ror.org/054n9aa03', 'en', 1, 'https://ror.org/054n9aa03 Arab League Educational, Cultural and Scientific Organization المنظمة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ…'),
(49367, 'https://ror.org/054qw7j13', 'en', 1, 'https://ror.org/054qw7j13 Wildlife Conservation Society India'),
(49368, 'https://ror.org/054r35483', 'en', 1, 'https://ror.org/054r35483 Institute of Law 中国法学网'),
(49369, 'https://ror.org/054rm1829', 'en', 1, 'https://ror.org/054rm1829 Albert Wisner Public Library'),
(49370, 'https://ror.org/054wjrx44', 'en', 1, 'https://ror.org/054wjrx44 Edvance Foundation'),
(49371, 'https://ror.org/054yya609', 'en', 1, 'https://ror.org/054yya609 Okazaki Senior High School ę„›ēŸ„ēœŒē«‹å²”å“Žé«˜ē­‰å­¦ę ”'),
(49372, 'https://ror.org/054z92k23', 'en', 1, 'https://ror.org/054z92k23 Suzuka Junior College 鈓鹿短期大学');
INSERT INTO `rors` VALUES
(49373, 'https://ror.org/05515rj28', 'en', 1, 'https://ror.org/05515rj28 C.Yu.Yunusov Nomidagi O’simlik Moddalari Kimyosi Instituti Yunusov Institute of the Chemistry of Plant Substances Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Ń€Š°ŃŃ‚ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… веществ им. акаГ. Š”.Š®. Юнусова АкаГемии ŠŠ°ŃƒŠŗ Республики Узбекистан'),
(49374, 'https://ror.org/055277280', 'en', 1, 'https://ror.org/055277280 Kumamoto Industrial Research Institute ē†Šęœ¬ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(49375, 'https://ror.org/0553df340', 'no_lang_code', 1, 'https://ror.org/0553df340 S. P. Korolev Rocket and Space Corporation Energia (Russia) Ракетно-ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŗŠ¾Ń€ŠæŠ¾Ń€Š°Ń†ŠøŃ Ā«Š­Š½ŠµŃ€Š³ŠøŃĀ» им. Š”. П. ŠšŠ¾Ń€Š¾Š»Ń‘Š²Š°'),
(49376, 'https://ror.org/0554hqk85', 'no_lang_code', 1, 'https://ror.org/0554hqk85 Singulus (Germany)'),
(49377, 'https://ror.org/055b7qp37', 'en', 1, 'https://ror.org/055b7qp37 Lowy Institute for International Policy'),
(49378, 'https://ror.org/055c4qx71', 'no_lang_code', 1, 'https://ror.org/055c4qx71 Bühler (United Kingdom)'),
(49379, 'https://ror.org/055gyn525', 'en', 1, 'https://ror.org/055gyn525 Zhejiang Institute of Mechanical and Electrical Engineering ęµ™ę±Ÿęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(49380, 'https://ror.org/055j23398', 'en', 1, 'https://ror.org/055j23398 Gersevanov Research Institute of Bases and Underground Structures ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠøŠ·Ń‹ŃŠŗŠ°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оснований Šø поГземных ŃŠ¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠ¹'),
(49381, 'https://ror.org/055knhp38', 'no_lang_code', 1, 'https://ror.org/055knhp38 Bionix Development (United States)'),
(49382, 'https://ror.org/055mvz558', 'no_lang_code', 1, 'https://ror.org/055mvz558 Sumitomo Precision Products (Japan) ä½å‹ē²¾åÆ†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(49383, 'https://ror.org/055s23s22', 'no_lang_code', 1, 'https://ror.org/055s23s22 Electrolux (Australia)'),
(49384, 'https://ror.org/055s4d850', 'no_lang_code', 1, 'https://ror.org/055s4d850 Eureka Lighting (Canada)'),
(49385, 'https://ror.org/055sxys40', 'no_lang_code', 1, 'https://ror.org/055sxys40 General Engineering and Research (United States)'),
(49386, 'https://ror.org/055t9t204', 'et', 1, 'https://ror.org/055t9t204 Informaatika ja Arvutustehnika Instituut Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информатики Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники'),
(49387, 'https://ror.org/055v9fh02', 'pt', 1, 'https://ror.org/055v9fh02 Laboratório Nacional de Astrofísica National Astrophysics Laboratory'),
(49388, 'https://ror.org/055wab717', 'en', 1, 'https://ror.org/055wab717 Hunt Institute'),
(49389, 'https://ror.org/055xjpt87', 'no_lang_code', 1, 'https://ror.org/055xjpt87 Universal Trim Supply (Taiwan)'),
(49390, 'https://ror.org/055z45c63', 'de', 1, 'https://ror.org/055z45c63 Immanuel Krankenhaus'),
(49391, 'https://ror.org/055z8n243', 'no_lang_code', 1, 'https://ror.org/055z8n243 Marinvent (Canada)'),
(49392, 'https://ror.org/0561ky130', 'no_lang_code', 1, 'https://ror.org/0561ky130 Cypress Semiconductor Corporation (Japan)'),
(49393, 'https://ror.org/0561tpp86', 'en', 1, 'https://ror.org/0561tpp86 Alzheimer''s Association of Israel'),
(49394, 'https://ror.org/05629zc23', 'no_lang_code', 1, 'https://ror.org/05629zc23 Xdot Engineering and Analysis (United States)'),
(49395, 'https://ror.org/0562m6y05', 'en', 1, 'https://ror.org/0562m6y05 Esperanza International'),
(49396, 'https://ror.org/0563dqj82', 'no_lang_code', 1, 'https://ror.org/0563dqj82 Landesgewerbeanstalt Bayern (Germany)'),
(49397, 'https://ror.org/0564jxa35', 'no_lang_code', 1, 'https://ror.org/0564jxa35 Ottobock (Austria)'),
(49398, 'https://ror.org/0564zte48', 'no_lang_code', 1, 'https://ror.org/0564zte48 Science City York (United Kingdom)'),
(49399, 'https://ror.org/0565tgh20', 'en', 1, 'https://ror.org/0565tgh20 Ministry of Agriculture and Forests'),
(49400, 'https://ror.org/0566s9y93', 'no_lang_code', 1, 'https://ror.org/0566s9y93 Voith (United States)'),
(49401, 'https://ror.org/056701b75', 'no_lang_code', 1, 'https://ror.org/056701b75 Fuji Electric (Japan) åÆŒå£«é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(49402, 'https://ror.org/0567nxn66', 'no_lang_code', 1, 'https://ror.org/0567nxn66 Toyama Prefectural Takaoka High School åÆŒå±±ēœŒē«‹é«˜å²”é«˜ē­‰å­¦ę ”'),
(49403, 'https://ror.org/056b3q733', 'no_lang_code', 1, 'https://ror.org/056b3q733 Wikimedia ZA'),
(49404, 'https://ror.org/056c72797', 'en', 1, 'https://ror.org/056c72797 Air Force Institute of Aviation Medicine Affiliated Hospital čˆŖē©ŗåŒ»å­¦ē ”ē©¶ę‰€é™„å±žåŒ»é™¢'),
(49405, 'https://ror.org/056c8b450', 'no_lang_code', 1, 'https://ror.org/056c8b450 Maxim Integrated (United States)'),
(49406, 'https://ror.org/056dke471', 'en', 1, 'https://ror.org/056dke471 Tokyo Metropolitan Fuchu High School ę±äŗ¬éƒ½ē«‹åŗœäø­é«˜ē­‰å­¦ę ”'),
(49407, 'https://ror.org/056dwm086', 'no_lang_code', 1, 'https://ror.org/056dwm086 Universal Biologics (United States)'),
(49408, 'https://ror.org/056fzpe56', 'no_lang_code', 1, 'https://ror.org/056fzpe56 Dymenso (United States)'),
(49409, 'https://ror.org/056j33p55', 'en', 1, 'https://ror.org/056j33p55 Forestry Tasmania'),
(49410, 'https://ror.org/056jghs88', 'en', 1, 'https://ror.org/056jghs88 Cyprus Pedagogical Institute Ī Ī‘Ī™Ī”Ī‘Ī“Ī©Ī“Ī™ĪšĪŸ Ī™ĪĪ£Ī¤Ī™Ī¤ĪŸĪ„Ī¤ĪŸ Κ΄ΠΔΟ΄'),
(49411, 'https://ror.org/056kzfb80', 'en', 1, 'https://ror.org/056kzfb80 Guangdong Provincial Family Planning Hospital å¹æäøœēœč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(49412, 'https://ror.org/056mctw68', 'fr', 1, 'https://ror.org/056mctw68 UniversitƩ Constantine 2'),
(49413, 'https://ror.org/056mhwf75', 'no_lang_code', 1, 'https://ror.org/056mhwf75 Genus Oncology (United States)'),
(49414, 'https://ror.org/056qtgk16', 'no_lang_code', 1, 'https://ror.org/056qtgk16 PureTech (United States)'),
(49415, 'https://ror.org/056xbkp48', 'no_lang_code', 1, 'https://ror.org/056xbkp48 Assa Abloy (United Kingdom)'),
(49416, 'https://ror.org/056ypt721', 'en', 1, 'https://ror.org/056ypt721 Nagano Prefecural Nagano Senior High School é•·é‡ŽēœŒé•·é‡Žé«˜ē­‰å­¦ę ”'),
(49417, 'https://ror.org/0570s7p64', 'sv', 1, 'https://ror.org/0570s7p64 Gƶteborgs TandlƤkare SƤllskap'),
(49418, 'https://ror.org/0572qa274', 'no_lang_code', 1, 'https://ror.org/0572qa274 Ecolab (Germany)'),
(49419, 'https://ror.org/0573nm953', 'en', 1, 'https://ror.org/0573nm953 Ukrainian Research Institute of Refractories named after A.S. Berezhnoy Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вогнетривів'),
(49420, 'https://ror.org/0574he388', 'en', 1, 'https://ror.org/0574he388 Jumeira University Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł…ŁŠŲ±Ų§'),
(49421, 'https://ror.org/05758j740', 'no_lang_code', 1, 'https://ror.org/05758j740 Stihl (Japan) ć‚¹ćƒćƒ¼ćƒ«'),
(49422, 'https://ror.org/0576n6b98', 'en', 1, 'https://ror.org/0576n6b98 Niigata Prefectural Niigata Central High School ę–°ę½ŸēœŒē«‹ę–°ę½Ÿäø­å¤®é«˜ē­‰å­¦ę ”'),
(49423, 'https://ror.org/0579a8137', 'en', 1, 'https://ror.org/0579a8137 National Institute for the Psychotherapies'),
(49424, 'https://ror.org/057as5086', 'en', 1, 'https://ror.org/057as5086 Institute of Marine Geology and Geophysics Viện Địa chįŗ„t vĆ  Địa vįŗ­t lý biển'),
(49425, 'https://ror.org/057b93w27', 'no_lang_code', 1, 'https://ror.org/057b93w27 Scientific Games (Austria)'),
(49426, 'https://ror.org/057cchs06', 'en', 1, 'https://ror.org/057cchs06 Isles International University Isles Ollscoil IdirnÔisiúnta'),
(49427, 'https://ror.org/057cmsp85', 'no_lang_code', 1, 'https://ror.org/057cmsp85 Dana (Canada)'),
(49428, 'https://ror.org/057devs37', 'no_lang_code', 1, 'https://ror.org/057devs37 Gentherm (Germany)'),
(49429, 'https://ror.org/057f4mk30', 'en', 1, 'https://ror.org/057f4mk30 Islamic Azad University Janah Ų§Ų³Ł„Ų§Ł…ŪŒ ŪŒŲ§Ł†Ų§ دانؓگاه Ų¢Ų²Ų§ŲÆ'),
(49430, 'https://ror.org/057gq2q80', 'en', 1, 'https://ror.org/057gq2q80 Mississippi Youth Wheelchair League'),
(49431, 'https://ror.org/057gzv333', 'en', 1, 'https://ror.org/057gzv333 Sophia School of Social Welfare ē¤¾ä¼šē¦ē„‰ć®ć‚½ćƒ•ć‚£ć‚¢ćƒ»ć‚¹ć‚Æćƒ¼ćƒ«'),
(49432, 'https://ror.org/057kfzw97', 'no_lang_code', 1, 'https://ror.org/057kfzw97 Tottori College é³„å–ēŸ­ęœŸå¤§å­¦'),
(49433, 'https://ror.org/057m2mx12', 'no_lang_code', 1, 'https://ror.org/057m2mx12 Protec Laboratories (United States)'),
(49434, 'https://ror.org/057mcc411', 'no_lang_code', 1, 'https://ror.org/057mcc411 Universal Alloy (United States)'),
(49435, 'https://ror.org/057nzpd74', 'no_lang_code', 1, 'https://ror.org/057nzpd74 Imerys (Austria)'),
(49436, 'https://ror.org/057p9rb14', 'no_lang_code', 1, 'https://ror.org/057p9rb14 Solid Cell (United States)'),
(49437, 'https://ror.org/057q9nn35', 'en', 1, 'https://ror.org/057q9nn35 Alpha Omega Alpha Medical Honor Society'),
(49438, 'https://ror.org/057tp6a49', 'pt', 1, 'https://ror.org/057tp6a49 Fundação Estadual de Proteção Ambiental Henrique Luiz Roessler'),
(49439, 'https://ror.org/057vt6455', 'no_lang_code', 1, 'https://ror.org/057vt6455 Ball (United Kingdom)'),
(49440, 'https://ror.org/057w2sx61', 'en', 1, 'https://ror.org/057w2sx61 Geological Society of London'),
(49441, 'https://ror.org/057zb9291', 'no_lang_code', 1, 'https://ror.org/057zb9291 ViVitro Labs (Canada)'),
(49442, 'https://ror.org/05807ba92', 'en', 1, 'https://ror.org/05807ba92 National Institutes for Cultural Heritage ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ę–‡åŒ–č²”'),
(49443, 'https://ror.org/0580qje17', 'no_lang_code', 1, 'https://ror.org/0580qje17 United Microelectronics (Taiwan) čÆčÆé›»å­'),
(49444, 'https://ror.org/0582szf05', 'en', 1, 'https://ror.org/0582szf05 International Institute for Child Rights and Development'),
(49445, 'https://ror.org/0584q3n03', 'en', 1, 'https://ror.org/0584q3n03 Nagasaki Prefectural Nagasaki Technical High School é•·å“ŽēœŒē«‹é•·å“Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(49446, 'https://ror.org/058720m75', 'no_lang_code', 1, 'https://ror.org/058720m75 Agri-Neo (Canada)'),
(49447, 'https://ror.org/05879ed43', 'no_lang_code', 1, 'https://ror.org/05879ed43 Fastman (United States)'),
(49448, 'https://ror.org/058a1xy10', 'da', 1, 'https://ror.org/058a1xy10 Wikimedia Danmark'),
(49449, 'https://ror.org/058b8r373', 'pt', 1, 'https://ror.org/058b8r373 Prefeitura Municipal de Sapiranga'),
(49450, 'https://ror.org/058bdpk86', 'en', 1, 'https://ror.org/058bdpk86 Breastscreen Victoria'),
(49451, 'https://ror.org/058d8a952', 'no_lang_code', 1, 'https://ror.org/058d8a952 Power Integrations (United States)'),
(49452, 'https://ror.org/058dmkn21', 'en', 1, 'https://ror.org/058dmkn21 Chinese Academy of International Trade and Economic Cooperation å•†åŠ”éƒØå›½é™…č“øę˜“ē»ęµŽåˆä½œē ”ē©¶é™¢'),
(49453, 'https://ror.org/058kjq542', 'en', 1, 'https://ror.org/058kjq542 Fraunhofer Institute for Software and Systems Engineering Fraunhofer-Institut für Software- und Systemtechnik'),
(49454, 'https://ror.org/058np3c43', 'en', 1, 'https://ror.org/058np3c43 Islamic Azad University Ardabil دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ų±ŲÆŲØŪŒŁ„'),
(49455, 'https://ror.org/058pb5559', 'en', 1, 'https://ror.org/058pb5559 Association for Public Policy Analysis and Management'),
(49456, 'https://ror.org/058ryjm64', 'no_lang_code', 1, 'https://ror.org/058ryjm64 Hoerbiger (Austria)'),
(49457, 'https://ror.org/058sh5428', 'en', 1, 'https://ror.org/058sh5428 BCS — The Chartered Institute for IT'),
(49458, 'https://ror.org/058t5en44', 'en', 1, 'https://ror.org/058t5en44 American Society For Nanomedicine'),
(49459, 'https://ror.org/058w9hg07', 'no_lang_code', 1, 'https://ror.org/058w9hg07 Andritz (Germany)'),
(49460, 'https://ror.org/058whx905', 'en', 1, 'https://ror.org/058whx905 Global Libraries - Bulgaria Foundation'),
(49461, 'https://ror.org/058xxya53', 'no_lang_code', 1, 'https://ror.org/058xxya53 NanoCytomics (United States)'),
(49462, 'https://ror.org/058yzcs11', 'en', 1, 'https://ror.org/058yzcs11 Tamil Nadu Forest Plantation (India)'),
(49463, 'https://ror.org/0592g7p42', 'en', 1, 'https://ror.org/0592g7p42 Academy of Osseointegration'),
(49464, 'https://ror.org/0594b3f07', 'no_lang_code', 1, 'https://ror.org/0594b3f07 Promoscience (Italy)'),
(49465, 'https://ror.org/0596amb15', 'en', 1, 'https://ror.org/0596amb15 Fort Worth Library'),
(49466, 'https://ror.org/059771278', 'en', 1, 'https://ror.org/059771278 Provision Healthcare'),
(49467, 'https://ror.org/0597htz45', 'no_lang_code', 1, 'https://ror.org/0597htz45 Tateyama Caldera Sabo Museum ē«‹å±±ć‚«ćƒ«ćƒ‡ćƒ©ē ‚é˜²åšē‰©é¤Ø'),
(49468, 'https://ror.org/059a51570', 'en', 1, 'https://ror.org/059a51570 U.S. Global Leadership Coalition'),
(49469, 'https://ror.org/059c7sp21', 'en', 1, 'https://ror.org/059c7sp21 Brazilian College of Animal Reproduction Colégio Brasileiro de Reprodução Animal'),
(49470, 'https://ror.org/059dvm679', 'en', 1, 'https://ror.org/059dvm679 East, Central and Southern Africa Health Community'),
(49471, 'https://ror.org/059g2r627', 'no_lang_code', 1, 'https://ror.org/059g2r627 Mars Space (United Kingdom)'),
(49472, 'https://ror.org/059gejz39', 'no_lang_code', 1, 'https://ror.org/059gejz39 CellMosaic (United States)'),
(49473, 'https://ror.org/059jkdx17', 'nl', 1, 'https://ror.org/059jkdx17 Helen Dowling Instituut'),
(49474, 'https://ror.org/059kt3178', 'en', 1, 'https://ror.org/059kt3178 Rubber Research Institute of Sri Lanka'),
(49475, 'https://ror.org/059ne1773', 'no_lang_code', 1, 'https://ror.org/059ne1773 Hyperv Technologies (United States)'),
(49476, 'https://ror.org/059q0y753', 'no_lang_code', 1, 'https://ror.org/059q0y753 Beijing Seismological Bureau åŒ—äŗ¬åø‚åœ°éœ‡å±€'),
(49477, 'https://ror.org/059rfxn59', 'no_lang_code', 1, 'https://ror.org/059rfxn59 Colby Pharmaceutical (United States)'),
(49478, 'https://ror.org/059tqws22', 'no_lang_code', 1, 'https://ror.org/059tqws22 Cypress Semiconductor Corporation (Belgium)'),
(49479, 'https://ror.org/059yvz347', 'en', 1, 'https://ror.org/059yvz347 Drammen Hospital Drammen Sykehus'),
(49480, 'https://ror.org/059zcg682', 'no_lang_code', 1, 'https://ror.org/059zcg682 BASF (United Kingdom)'),
(49481, 'https://ror.org/05a0cfq84', 'no_lang_code', 1, 'https://ror.org/05a0cfq84 Monodraught (United Kingdom)'),
(49482, 'https://ror.org/05a33r812', 'en', 1, 'https://ror.org/05a33r812 Market Economy Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒĢŃ‚ пробле́м ры́нка Российской АкаГемии наук'),
(49483, 'https://ror.org/05a5w4v67', 'no_lang_code', 1, 'https://ror.org/05a5w4v67 Foton Motors (China) åŒ—ę±½ē¦ē”°'),
(49484, 'https://ror.org/05a68bd15', 'en', 1, 'https://ror.org/05a68bd15 National Hospital Organization Takamatsu Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹é«˜ę¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(49485, 'https://ror.org/05a8c4g41', 'en', 1, 'https://ror.org/05a8c4g41 American Nephrology Nurses Association'),
(49486, 'https://ror.org/05ab85w40', 'es', 1, 'https://ror.org/05ab85w40 Instituto de Investigaciones AvĆ­colas'),
(49487, 'https://ror.org/05acd7q77', 'no_lang_code', 1, 'https://ror.org/05acd7q77 Attollo Engineering (United States)'),
(49488, 'https://ror.org/05ad3wk38', 'en', 1, 'https://ror.org/05ad3wk38 State Research Institute for Restoration Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ реставрации'),
(49489, 'https://ror.org/05adg0580', 'en', 1, 'https://ror.org/05adg0580 Saitama Prefectural Urawa High School åŸ¼ēŽ‰ēœŒē«‹ęµ¦å’Œé«˜ę ”'),
(49490, 'https://ror.org/05agrj919', 'en', 1, 'https://ror.org/05agrj919 Nara National Research Institute for Cultural Properties å„ˆč‰Æę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(49491, 'https://ror.org/05akw7810', 'es', 1, 'https://ror.org/05akw7810 Universidad de Lambayeque'),
(49492, 'https://ror.org/05ancaf73', 'en', 1, 'https://ror.org/05ancaf73 American Association of Family and Consumer Sciences'),
(49493, 'https://ror.org/05at4m627', 'en', 1, 'https://ror.org/05at4m627 Craven County Schools'),
(49494, 'https://ror.org/05avt0b71', 'en', 1, 'https://ror.org/05avt0b71 Sanya City Women and Children Hospital'),
(49495, 'https://ror.org/05awdmd14', 'no_lang_code', 1, 'https://ror.org/05awdmd14 Engenuics (Canada)'),
(49496, 'https://ror.org/05ax69r91', 'en', 1, 'https://ror.org/05ax69r91 Okayama Prefecture Education Center å²”å±±ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(49497, 'https://ror.org/05axsx403', 'en', 1, 'https://ror.org/05axsx403 Institute of Water and Sanitation Development'),
(49498, 'https://ror.org/05az4xw46', 'en', 1, 'https://ror.org/05az4xw46 Bibliographical Society'),
(49499, 'https://ror.org/05b4rrz69', 'en', 1, 'https://ror.org/05b4rrz69 Niigata Prefectural Ojiya Nishi High School ę–°ę½ŸēœŒē«‹å°åƒč°·č„æé«˜ē­‰å­¦ę ”'),
(49500, 'https://ror.org/05b8n5j15', 'en', 1, 'https://ror.org/05b8n5j15 Nordic Centre for Welfare and Social Issues Nordic Centre for Welfare ja sosiaaliset kysymykset'),
(49501, 'https://ror.org/05b9xma73', 'de', 1, 'https://ror.org/05b9xma73 Bergmann und Partner RechtsanwƤlte'),
(49502, 'https://ror.org/05ba5xv93', 'no_lang_code', 1, 'https://ror.org/05ba5xv93 Karachaevo-Cherkessk State University ŠšŠ°Ń€Š°Ń‡Š°ŠµŠ²Š¾-Черкесский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(49503, 'https://ror.org/05bc06n36', 'en', 1, 'https://ror.org/05bc06n36 North Orange County Community College District'),
(49504, 'https://ror.org/05bc46c94', 'en', 1, 'https://ror.org/05bc46c94 New Zealand Educational Administration and Leadership Society'),
(49505, 'https://ror.org/05be7rs83', 'en', 1, 'https://ror.org/05be7rs83 California County Superintendents Educational Services Association'),
(49506, 'https://ror.org/05bendy20', 'en', 1, 'https://ror.org/05bendy20 Wikimedia Ɩsterreich'),
(49507, 'https://ror.org/05bg37315', 'en', 1, 'https://ror.org/05bg37315 Yamaguchi Prefecture Archives å±±å£ēœŒę–‡ę›øé¤Ø'),
(49508, 'https://ror.org/05bgj7h65', 'en', 1, 'https://ror.org/05bgj7h65 Center for Business Studies'),
(49509, 'https://ror.org/05bh8tx73', 'es', 1, 'https://ror.org/05bh8tx73 Universidad Tecnológica de Nezahualcóyotl'),
(49510, 'https://ror.org/05bj5cn41', 'en', 1, 'https://ror.org/05bj5cn41 Belgrade Community Library'),
(49511, 'https://ror.org/05bpym449', 'no_lang_code', 1, 'https://ror.org/05bpym449 Medical Cyberworlds (United States)'),
(49512, 'https://ror.org/05bqd9t64', 'no_lang_code', 1, 'https://ror.org/05bqd9t64 Microchip Technology (Germany)'),
(49513, 'https://ror.org/05br7cm44', 'en', 1, 'https://ror.org/05br7cm44 Luoyang Orthopedic-Traumatological Hospital of Henan Province ę²³å—ēœę“›é˜³ę­£éŖØåŒ»é™¢'),
(49514, 'https://ror.org/05bs9ys68', 'no_lang_code', 1, 'https://ror.org/05bs9ys68 SimulTel (United States)'),
(49515, 'https://ror.org/05bt5dg04', 'en', 1, 'https://ror.org/05bt5dg04 Institute for Family Development'),
(49516, 'https://ror.org/05btymt05', 'no_lang_code', 1, 'https://ror.org/05btymt05 TravelAI (United Kingdom)'),
(49517, 'https://ror.org/05bw3yd74', 'en', 1, 'https://ror.org/05bw3yd74 Canadian Urology Research Consortium'),
(49518, 'https://ror.org/05bw7y144', 'no_lang_code', 1, 'https://ror.org/05bw7y144 Whakauae Research (New Zealand)'),
(49519, 'https://ror.org/05bxvt155', 'no_lang_code', 1, 'https://ror.org/05bxvt155 Perma Works (United States)'),
(49520, 'https://ror.org/05byphg89', 'no_lang_code', 1, 'https://ror.org/05byphg89 Michelin (Switzerland)'),
(49521, 'https://ror.org/05c1vn851', 'en', 1, 'https://ror.org/05c1vn851 Rhode Island Commerce Corporation'),
(49522, 'https://ror.org/05c21mq03', 'en', 1, 'https://ror.org/05c21mq03 Kurashiki City College å€‰ę•·åø‚ē«‹ēŸ­ęœŸå¤§å­¦'),
(49523, 'https://ror.org/05c5a2504', 'no_lang_code', 1, 'https://ror.org/05c5a2504 Radar (United States)'),
(49524, 'https://ror.org/05c5cxq41', 'no_lang_code', 1, 'https://ror.org/05c5cxq41 Husky Injection Molding Systems (Canada)'),
(49525, 'https://ror.org/05c9p5b07', 'no_lang_code', 1, 'https://ror.org/05c9p5b07 East Institute Refractories (Russia) Восточный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Š³Š½ŠµŃƒŠæŠ¾Ń€Š¾Š²'),
(49526, 'https://ror.org/05caes925', 'no_lang_code', 1, 'https://ror.org/05caes925 Kitamurayama Hospital åŒ—ę‘å±±å…¬ē«‹ē—…é™¢'),
(49527, 'https://ror.org/05car4c24', 'no_lang_code', 1, 'https://ror.org/05car4c24 Terramera (Canada)'),
(49528, 'https://ror.org/05cb0k428', 'en', 1, 'https://ror.org/05cb0k428 Institut de recherches de l''industrie sucriĆØre de Maurice Mauritius Sugarcane Industry Research Institute'),
(49529, 'https://ror.org/05cbzw944', 'en', 1, 'https://ror.org/05cbzw944 Tokyo Metropolitan Aoyama High School ę±äŗ¬éƒ½ē«‹é’å±±é«˜ē­‰å­¦ę ”'),
(49530, 'https://ror.org/05ccsp315', 'en', 1, 'https://ror.org/05ccsp315 Nagano Prefectural Agricultural University č¾²ę„­å¤§å­¦ć«é•·é‡ŽēœŒ'),
(49531, 'https://ror.org/05cd0vn93', 'en', 1, 'https://ror.org/05cd0vn93 Dairy Farming Promotion Organization'),
(49532, 'https://ror.org/05cew4a83', 'en', 1, 'https://ror.org/05cew4a83 Chicago Zoological Society'),
(49533, 'https://ror.org/05cfz8m13', 'en', 1, 'https://ror.org/05cfz8m13 L.V. Pisarzhevskii Institute of Physical Chemistry Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š†Š—Š˜Š§ŠŠžŠ‡ Š„Š†ŠœŠ†Š‡ Š†ŠœŠ•ŠŠ† Š›. Š’. ŠŸŠ˜Š”ŠŠ Š–Š•Š’Š”Š¬ŠšŠžŠ“Šž ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠžŠ‡ ŠŠšŠŠ”Š•ŠœŠ†Š‡ ŠŠŠ£Šš Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(49534, 'https://ror.org/05chjmv84', 'en', 1, 'https://ror.org/05chjmv84 Nigerian Stored Products Research Institute'),
(49535, 'https://ror.org/05ckpfd66', 'no_lang_code', 1, 'https://ror.org/05ckpfd66 Hewlett-Packard (Israel)'),
(49536, 'https://ror.org/05cnabr44', 'no_lang_code', 1, 'https://ror.org/05cnabr44 eBay (United States)'),
(49537, 'https://ror.org/05cpzfy77', 'en', 1, 'https://ror.org/05cpzfy77 Ishikawa Prefectural Nursing School ēŸ³å·ēœŒē«‹ē·åˆēœ‹č­·å°‚é–€å­¦ę ”'),
(49538, 'https://ror.org/05cttts62', 'no_lang_code', 1, 'https://ror.org/05cttts62 Tokugawa Reimeikai Foundation å¾³å·é»Žę˜Žä¼š'),
(49539, 'https://ror.org/05cxtem33', 'es', 1, 'https://ror.org/05cxtem33 Wikimedia Venezuela'),
(49540, 'https://ror.org/05d088255', 'en', 1, 'https://ror.org/05d088255 Fundacion Instituto de Investigacion Innaxis Innaxis Foundation & Research Institute'),
(49541, 'https://ror.org/05d2rrs40', 'no_lang_code', 1, 'https://ror.org/05d2rrs40 Lam Research (Austria)'),
(49542, 'https://ror.org/05d3x0w27', 'no_lang_code', 1, 'https://ror.org/05d3x0w27 Brunswick International Freight Terminal (United Kingdom)'),
(49543, 'https://ror.org/05d5nhn14', 'en', 1, 'https://ror.org/05d5nhn14 Shaanxi Institute of Zoology é™•č„æēœåŠØē‰©ē ”ē©¶ę‰€'),
(49544, 'https://ror.org/05d6n5j65', 'no_lang_code', 1, 'https://ror.org/05d6n5j65 Parker Hannifin (Germany)'),
(49545, 'https://ror.org/05d78p162', 'en', 1, 'https://ror.org/05d78p162 Foundation of Global Life Learning Center äø€čˆ¬č²”å›£ę³•äŗŗ ē”Ÿę¶Æå­¦ēæ’é–‹ē™ŗč²”å›£ 事務局'),
(49546, 'https://ror.org/05daj2k82', 'no_lang_code', 1, 'https://ror.org/05daj2k82 Mann+Hummel (Germany)'),
(49547, 'https://ror.org/05db98w21', 'en', 1, 'https://ror.org/05db98w21 World Association of Zoos and Aquariums'),
(49548, 'https://ror.org/05dbe0v79', 'pt', 1, 'https://ror.org/05dbe0v79 Comissão Executiva do Plano da Lavoura Cacaueira'),
(49549, 'https://ror.org/05dbjwr50', 'no_lang_code', 1, 'https://ror.org/05dbjwr50 VLNComm (United States)'),
(49550, 'https://ror.org/05dbk3t51', 'en', 1, 'https://ror.org/05dbk3t51 Center for Law and Social Policy'),
(49551, 'https://ror.org/05dd1f546', 'en', 1, 'https://ror.org/05dd1f546 Daqing Normal University å¤§åŗ†åøˆčŒƒå­¦é™¢'),
(49552, 'https://ror.org/05debqe13', 'en', 1, 'https://ror.org/05debqe13 Kumamoto Prefectural Police ē†Šęœ¬ēœŒč­¦åÆŸ'),
(49553, 'https://ror.org/05df6vn84', 'no_lang_code', 1, 'https://ror.org/05df6vn84 Atkins (United States)'),
(49554, 'https://ror.org/05dhb9591', 'no_lang_code', 1, 'https://ror.org/05dhb9591 Saurer (Germany)'),
(49555, 'https://ror.org/05dhf4z39', 'pt', 1, 'https://ror.org/05dhf4z39 Associação Brasileira de Literatura Comparada'),
(49556, 'https://ror.org/05dj5ck11', 'en', 1, 'https://ror.org/05dj5ck11 Niigata College of Technology ę–°ę½Ÿå·„ę„­ēŸ­ęœŸå¤§å­¦'),
(49557, 'https://ror.org/05dmz1027', 'en', 1, 'https://ror.org/05dmz1027 Institute of Politics and Economy å…¬ē›Šč²”å›£ę³•äŗŗ ę”æę²»ēµŒęøˆē ”ē©¶ę‰€'),
(49558, 'https://ror.org/05dsfsy10', 'en', 1, 'https://ror.org/05dsfsy10 DSST Public Schools'),
(49559, 'https://ror.org/05dvgp237', 'no_lang_code', 1, 'https://ror.org/05dvgp237 Siemens (Australia)'),
(49560, 'https://ror.org/05dw9gn95', 'en', 1, 'https://ror.org/05dw9gn95 Friends of the Seattle Public Library'),
(49561, 'https://ror.org/05dwa3c44', 'no_lang_code', 1, 'https://ror.org/05dwa3c44 Becton Dickinson (United Kingdom)'),
(49562, 'https://ror.org/05dwcwc36', 'no_lang_code', 1, 'https://ror.org/05dwcwc36 Toshiba Machine (Japan) ę±čŠę©Ÿę¢°'),
(49563, 'https://ror.org/05dx4dz53', 'en', 1, 'https://ror.org/05dx4dz53 Foundation for Healthy Generations'),
(49564, 'https://ror.org/05dxj6c66', 'no_lang_code', 1, 'https://ror.org/05dxj6c66 Toho Gakuen'),
(49565, 'https://ror.org/05dz1qg23', 'de', 1, 'https://ror.org/05dz1qg23 Internationales Institut für Wald und Holz'),
(49566, 'https://ror.org/05dzk6h94', 'en', 1, 'https://ror.org/05dzk6h94 Maritsa Vegetable Crops Research Institute'),
(49567, 'https://ror.org/05e0get33', 'en', 1, 'https://ror.org/05e0get33 Alameda County Library'),
(49568, 'https://ror.org/05e2svc96', 'en', 1, 'https://ror.org/05e2svc96 Connecticut Department of Rehabilitation Services'),
(49569, 'https://ror.org/05e3dgn19', 'no_lang_code', 1, 'https://ror.org/05e3dgn19 Confluence Life Sciences (United States)'),
(49570, 'https://ror.org/05e48yb54', 'en', 1, 'https://ror.org/05e48yb54 Alliance for Education'),
(49571, 'https://ror.org/05e521308', 'en', 1, 'https://ror.org/05e521308 Central United States Earthquake Consortium'),
(49572, 'https://ror.org/05e58gr55', 'en', 1, 'https://ror.org/05e58gr55 Osaka Center For Cultural Heritage å¤§é˜Ŗåŗœę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(49573, 'https://ror.org/05e5cnc30', 'pt', 1, 'https://ror.org/05e5cnc30 Prefeitura Municipal de TauĆ”'),
(49574, 'https://ror.org/05e5m0q38', 'es', 1, 'https://ror.org/05e5m0q38 Instituto de GeofĆ­sica y AstronomĆ­a'),
(49575, 'https://ror.org/05e6atz65', 'no_lang_code', 1, 'https://ror.org/05e6atz65 TRUMPF (Austria)'),
(49576, 'https://ror.org/05e7jqk20', 'en', 1, 'https://ror.org/05e7jqk20 Institute of Materials, Minerals and Mining'),
(49577, 'https://ror.org/05e7vgz71', 'no_lang_code', 1, 'https://ror.org/05e7vgz71 Integrated Technologies & Services International (United States)'),
(49578, 'https://ror.org/05e84tj20', 'en', 1, 'https://ror.org/05e84tj20 International Biodeterioration Biodegradation Society'),
(49579, 'https://ror.org/05eb16411', 'en', 1, 'https://ror.org/05eb16411 Friends of the New York State Library'),
(49580, 'https://ror.org/05ebwnx39', 'no_lang_code', 1, 'https://ror.org/05ebwnx39 Ceragon (Israel)'),
(49581, 'https://ror.org/05ec38531', 'no_lang_code', 1, 'https://ror.org/05ec38531 Element Six (Germany)'),
(49582, 'https://ror.org/05ed6fr34', 'en', 1, 'https://ror.org/05ed6fr34 Peter White Public Library'),
(49583, 'https://ror.org/05een9q80', 'en', 1, 'https://ror.org/05een9q80 National Livestock Breeding Center ē‹¬ē«‹č”Œę”æę³•äŗŗ å®¶ē•œę”¹č‰Æć‚»ćƒ³ć‚æćƒ¼'),
(49584, 'https://ror.org/05ehpsf23', 'no_lang_code', 1, 'https://ror.org/05ehpsf23 Universal Woods (United States)'),
(49585, 'https://ror.org/05ejn6a41', 'en', 1, 'https://ror.org/05ejn6a41 Center for Collaborative Education'),
(49586, 'https://ror.org/05embt267', 'no_lang_code', 1, 'https://ror.org/05embt267 Archarithms (United States)'),
(49587, 'https://ror.org/05enr0y39', 'en', 1, 'https://ror.org/05enr0y39 Asian Counseling and Referral Service'),
(49588, 'https://ror.org/05ensw577', 'no_lang_code', 1, 'https://ror.org/05ensw577 Polymer Source (Canada)'),
(49589, 'https://ror.org/05eq10h32', 'en', 1, 'https://ror.org/05eq10h32 Zhejiang Mariculture Research Institute ęµ™ę±Ÿēœęµ·ę“‹ę°“äŗ§å…»ę®–ē ”ē©¶ę‰€'),
(49590, 'https://ror.org/05evsnd79', 'no_lang_code', 1, 'https://ror.org/05evsnd79 Intellectual Ventures (United States)'),
(49591, 'https://ror.org/05ewch819', 'no_lang_code', 1, 'https://ror.org/05ewch819 XLV Diagnostics (Canada)'),
(49592, 'https://ror.org/05ex0md65', 'en', 1, 'https://ror.org/05ex0md65 Sweet Potato Research Institute'),
(49593, 'https://ror.org/05exqw945', 'en', 1, 'https://ror.org/05exqw945 Fukuoka City Hospital ē¦å²”åø‚ę°‘ē—…é™¢'),
(49594, 'https://ror.org/05ezak240', 'en', 1, 'https://ror.org/05ezak240 Society for Theatre Research'),
(49595, 'https://ror.org/05f12dd47', 'no_lang_code', 1, 'https://ror.org/05f12dd47 Protemics (Germany)'),
(49596, 'https://ror.org/05f2ewd15', 'no_lang_code', 1, 'https://ror.org/05f2ewd15 Nokia (Australia)'),
(49597, 'https://ror.org/05f4fbs05', 'no_lang_code', 1, 'https://ror.org/05f4fbs05 Western Digital (Netherlands)'),
(49598, 'https://ror.org/05f56wm94', 'pt', 1, 'https://ror.org/05f56wm94 Fundação Parque Tecnológico da Paraíba'),
(49599, 'https://ror.org/05f5r6b93', 'no_lang_code', 1, 'https://ror.org/05f5r6b93 Covestro (Japan)'),
(49600, 'https://ror.org/05f5ss468', 'no_lang_code', 1, 'https://ror.org/05f5ss468 Excelitas Technologies (Germany)'),
(49601, 'https://ror.org/05f6fhp31', 'no_lang_code', 1, 'https://ror.org/05f6fhp31 Micron (Singapore)'),
(49602, 'https://ror.org/05f6tgb27', 'en', 1, 'https://ror.org/05f6tgb27 Nagano City Board of Education é•·é‡Žåø‚ę•™č‚²å§”å“”ä¼š'),
(49603, 'https://ror.org/05f6vr294', 'no_lang_code', 1, 'https://ror.org/05f6vr294 Seoyon E-Hwa (South Korea)'),
(49604, 'https://ror.org/05f73a827', 'en', 1, 'https://ror.org/05f73a827 Canadian Pain Society'),
(49605, 'https://ror.org/05f7jtw75', 'en', 1, 'https://ror.org/05f7jtw75 Eisenhower Foundation'),
(49606, 'https://ror.org/05fbj2448', 'en', 1, 'https://ror.org/05fbj2448 Florida Chamber of Commerce'),
(49607, 'https://ror.org/05fcp6f07', 'en', 1, 'https://ror.org/05fcp6f07 Impact India'),
(49608, 'https://ror.org/05fdzaf62', 'en', 1, 'https://ror.org/05fdzaf62 Statistical Information Institute for Consulting Analysis ēµ±čØˆęƒ…å ±ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(49609, 'https://ror.org/05fe3fx56', 'de', 1, 'https://ror.org/05fe3fx56 Chirurgische UniversitƤtsklinik Heidelberg'),
(49610, 'https://ror.org/05femq986', 'no_lang_code', 1, 'https://ror.org/05femq986 Laserax (Canada)'),
(49611, 'https://ror.org/05fesrm20', 'no_lang_code', 1, 'https://ror.org/05fesrm20 Heraeus (United States)'),
(49612, 'https://ror.org/05fg21x21', 'en', 1, 'https://ror.org/05fg21x21 Karma Healthcare'),
(49613, 'https://ror.org/05fgx1m39', 'no_lang_code', 1, 'https://ror.org/05fgx1m39 Orient Capital (China)'),
(49614, 'https://ror.org/05fh5ny91', 'no_lang_code', 1, 'https://ror.org/05fh5ny91 Comar (United States)'),
(49615, 'https://ror.org/05fj7ar22', 'en', 1, 'https://ror.org/05fj7ar22 NIHR Clinical Research Network'),
(49616, 'https://ror.org/05fkrca82', 'en', 1, 'https://ror.org/05fkrca82 Gifu Prefectural Toki Commercial High School å²é˜œēœŒē«‹åœŸå²å•†ę„­é«˜ē­‰å­¦ę ”'),
(49617, 'https://ror.org/05fktbs03', 'en', 1, 'https://ror.org/05fktbs03 Jin-ai Women''s College ä»ę„›å„³å­ēŸ­ęœŸå¤§å­¦'),
(49618, 'https://ror.org/05fky2779', 'en', 1, 'https://ror.org/05fky2779 Dream Builders Foundation'),
(49619, 'https://ror.org/05fm1bt30', 'en', 1, 'https://ror.org/05fm1bt30 S.P. Timoshenko Institute of Mechanics'),
(49620, 'https://ror.org/05fner397', 'no_lang_code', 1, 'https://ror.org/05fner397 Broadcom (United Kingdom)'),
(49621, 'https://ror.org/05fp1z527', 'en', 1, 'https://ror.org/05fp1z527 Association of Zoo Veterinary Technicians'),
(49622, 'https://ror.org/05fqfbj82', 'no_lang_code', 1, 'https://ror.org/05fqfbj82 Tōyō Bunko ę±ę“‹ę–‡åŗ«'),
(49623, 'https://ror.org/05fsqxg82', 'no_lang_code', 1, 'https://ror.org/05fsqxg82 Exide Technologies (Germany)'),
(49624, 'https://ror.org/05fss0456', 'no_lang_code', 1, 'https://ror.org/05fss0456 National Security Technologies (United States)'),
(49625, 'https://ror.org/05fvmm618', 'en', 1, 'https://ror.org/05fvmm618 Queensland Curriculum and Assessment Authority'),
(49626, 'https://ror.org/05fw3y914', 'en', 1, 'https://ror.org/05fw3y914 Global Institute for Quality Education'),
(49627, 'https://ror.org/05fzcfb55', 'no_lang_code', 1, 'https://ror.org/05fzcfb55 Harman (United Kingdom)'),
(49628, 'https://ror.org/05fzz0q30', 'no_lang_code', 1, 'https://ror.org/05fzz0q30 Komet Group (Germany)'),
(49629, 'https://ror.org/05g27td62', 'no_lang_code', 1, 'https://ror.org/05g27td62 Ecovia Renewables (United States)'),
(49630, 'https://ror.org/05g2nyp02', 'no_lang_code', 1, 'https://ror.org/05g2nyp02 Sony (Spain)'),
(49631, 'https://ror.org/05g6qd913', 'no_lang_code', 1, 'https://ror.org/05g6qd913 Knorr-Bremse (United Kingdom)'),
(49632, 'https://ror.org/05g7tqd64', 'no_lang_code', 1, 'https://ror.org/05g7tqd64 Wikimedia Hungary Wikimédia MagyarorszÔg Egyesület'),
(49633, 'https://ror.org/05g95ne77', 'no_lang_code', 1, 'https://ror.org/05g95ne77 Kestrel Technology (United States)'),
(49634, 'https://ror.org/05gabw081', 'de', 1, 'https://ror.org/05gabw081 Immunologie-Zentrum Zürich'),
(49635, 'https://ror.org/05gaya574', 'en', 1, 'https://ror.org/05gaya574 Okazaki Womens Junior College å²”å“Žå„³å­ēŸ­ęœŸå¤§å­¦'),
(49636, 'https://ror.org/05gd1j786', 'en', 1, 'https://ror.org/05gd1j786 Prince George County Public Schools'),
(49637, 'https://ror.org/05ge30g62', 'en', 1, 'https://ror.org/05ge30g62 International Institute for Childrens Literature Osaka å¤§é˜Ŗåŗœē«‹å›½éš›å…ē«„ę–‡å­¦é¤Ø'),
(49638, 'https://ror.org/05ge5q197', 'en', 1, 'https://ror.org/05ge5q197 International East-European University ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Восточно-Европейский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(49639, 'https://ror.org/05gg0gh87', 'no_lang_code', 1, 'https://ror.org/05gg0gh87 Canon (Japan) ć‚­ćƒ¤ćƒŽćƒ³ę Ŗå¼ä¼šē¤¾'),
(49640, 'https://ror.org/05gk8hj18', 'no_lang_code', 1, 'https://ror.org/05gk8hj18 Genetec (Canada)'),
(49641, 'https://ror.org/05gmez332', 'en', 1, 'https://ror.org/05gmez332 Human Rights Campaign'),
(49642, 'https://ror.org/05gq4r458', 'en', 1, 'https://ror.org/05gq4r458 Ibaraki Prefectural Board of Education čŒØåŸŽēœŒę•™č‚²å§”å“”ä¼š'),
(49643, 'https://ror.org/05gqx9q10', 'no_lang_code', 1, 'https://ror.org/05gqx9q10 Award Rubber & Plastic Industries (Canada)'),
(49644, 'https://ror.org/05gqyvx42', 'en', 1, 'https://ror.org/05gqyvx42 Tokyo Metropolitan Koishikawa Secondary Education School ę±äŗ¬éƒ½ē«‹å°ēŸ³å·äø­ē­‰ę•™č‚²å­¦ę ”'),
(49645, 'https://ror.org/05gv30q64', 'pt', 1, 'https://ror.org/05gv30q64 Instituto Geológico'),
(49646, 'https://ror.org/05gvz8164', 'en', 1, 'https://ror.org/05gvz8164 Chiba Prefectural Museum of Art'),
(49647, 'https://ror.org/05gx9az59', 'no_lang_code', 1, 'https://ror.org/05gx9az59 Gumma Paz College ē¾¤é¦¬ćƒ‘ćƒ¼ć‚¹å¤§å­¦'),
(49648, 'https://ror.org/05gxhfq53', 'de', 1, 'https://ror.org/05gxhfq53 Hochschule der Polizei Rheinland Pfalz'),
(49649, 'https://ror.org/05gxk4854', 'no_lang_code', 1, 'https://ror.org/05gxk4854 nanoPrecision Products (United States)'),
(49650, 'https://ror.org/05gy4kr80', 'en', 1, 'https://ror.org/05gy4kr80 V. G. Khlopin Radium Institute РаГиевый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š’. Š“. Єлопина'),
(49651, 'https://ror.org/05gzqyx59', 'en', 1, 'https://ror.org/05gzqyx59 Harbor Branch Oceanographic Institute'),
(49652, 'https://ror.org/05h0qwt23', 'en', 1, 'https://ror.org/05h0qwt23 Art Libraries Society'),
(49653, 'https://ror.org/05h0yhm60', 'en', 1, 'https://ror.org/05h0yhm60 China Friendship Foundation for Peace and Development'),
(49654, 'https://ror.org/05h3txc33', 'es', 1, 'https://ror.org/05h3txc33 Universidad La Concordia'),
(49655, 'https://ror.org/05h3y9565', 'es', 1, 'https://ror.org/05h3y9565 Instituto Colombiano Agropecuario'),
(49656, 'https://ror.org/05h40ds73', 'no_lang_code', 1, 'https://ror.org/05h40ds73 Westinghouse Electric (Japan)'),
(49657, 'https://ror.org/05h5q2539', 'en', 1, 'https://ror.org/05h5q2539 British Grassland Society'),
(49658, 'https://ror.org/05h5w5t42', 'en', 1, 'https://ror.org/05h5w5t42 Kawasaki Municipal Kawasaki Science High School å·å“Žåø‚ē«‹å·å“Žē·åˆē§‘å­¦é«˜ē­‰å­¦ę ”'),
(49659, 'https://ror.org/05h6j7923', 'en', 1, 'https://ror.org/05h6j7923 Society for Mental Health Research'),
(49660, 'https://ror.org/05h8amp43', 'en', 1, 'https://ror.org/05h8amp43 Japan China Medical Association ę—„ęœ¬äø­å›½åŒ»å­¦å”ä¼š'),
(49661, 'https://ror.org/05hawnt37', 'no_lang_code', 1, 'https://ror.org/05hawnt37 Universal Instruments (United States)'),
(49662, 'https://ror.org/05hb6w248', 'en', 1, 'https://ror.org/05hb6w248 Foreign Service Institute'),
(49663, 'https://ror.org/05hcvd668', 'en', 1, 'https://ror.org/05hcvd668 Randolph Field Independent School District'),
(49664, 'https://ror.org/05hdv6b03', 'no_lang_code', 1, 'https://ror.org/05hdv6b03 Forge Life Science (United States)'),
(49665, 'https://ror.org/05he96s21', 'de', 1, 'https://ror.org/05he96s21 Malteser Zentrale'),
(49666, 'https://ror.org/05hfhh611', 'en', 1, 'https://ror.org/05hfhh611 Kalamazoo Public Library'),
(49667, 'https://ror.org/05hfnvf25', 'en', 1, 'https://ror.org/05hfnvf25 High Institute For Computers and Management Information Systems'),
(49668, 'https://ror.org/05hh7s019', 'no_lang_code', 1, 'https://ror.org/05hh7s019 STMicroelectronics (Germany)'),
(49669, 'https://ror.org/05hhgm593', 'no_lang_code', 1, 'https://ror.org/05hhgm593 Sigma Energy Storage (Canada)'),
(49670, 'https://ror.org/05hhwah43', 'no_lang_code', 1, 'https://ror.org/05hhwah43 CytImmune (United States)'),
(49671, 'https://ror.org/05hjgch06', 'no_lang_code', 1, 'https://ror.org/05hjgch06 Synthomics (United States)'),
(49672, 'https://ror.org/05hjnjp60', 'en', 1, 'https://ror.org/05hjnjp60 Ashikaga Junior College 足利短期大学'),
(49673, 'https://ror.org/05hk0hn26', 'en', 1, 'https://ror.org/05hk0hn26 European Hematology Association'),
(49674, 'https://ror.org/05hk1wv51', 'no_lang_code', 1, 'https://ror.org/05hk1wv51 Mazda Motor Corporation (Japan) ćƒžćƒ„ćƒ€ę Ŗå¼ä¼šē¤¾'),
(49675, 'https://ror.org/05hk7qq56', 'en', 1, 'https://ror.org/05hk7qq56 Tibetan Traditional Medical College č„æč—ä¼ ē»ŸåŒ»å­¦é™¢'),
(49676, 'https://ror.org/05hm2f981', 'no_lang_code', 1, 'https://ror.org/05hm2f981 EcoSynthetix (United States)'),
(49677, 'https://ror.org/05hpj2e91', 'no_lang_code', 1, 'https://ror.org/05hpj2e91 Moai Technologies (United States)'),
(49678, 'https://ror.org/05hs77045', 'pt', 1, 'https://ror.org/05hs77045 Instituto Capixaba de Pesquisa, Assistência Técnica e Extensão Rural'),
(49679, 'https://ror.org/05hsdzk10', 'en', 1, 'https://ror.org/05hsdzk10 AIDS Society of India'),
(49680, 'https://ror.org/05hx26488', 'pt', 1, 'https://ror.org/05hx26488 Universidade LusĆ­ada de Angola'),
(49681, 'https://ror.org/05hxss661', 'no_lang_code', 1, 'https://ror.org/05hxss661 NEC (Germany) ę—„ęœ¬é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(49682, 'https://ror.org/05j02vt11', 'en', 1, 'https://ror.org/05j02vt11 Yamagata Prefectural Mamurogawa High School å±±å½¢ēœŒē«‹ę–°åŗ„ē„žå®¤ē”£ę„­é«˜ē­‰å­¦ę ”ēœŸå®¤å·ę ”'),
(49683, 'https://ror.org/05j1xsk75', 'no_lang_code', 1, 'https://ror.org/05j1xsk75 SC Johnson (United States)'),
(49684, 'https://ror.org/05j4xxv23', 'no_lang_code', 1, 'https://ror.org/05j4xxv23 KRONOS (Germany)'),
(49685, 'https://ror.org/05j53fm28', 'en', 1, 'https://ror.org/05j53fm28 Tokyo Sport Benefits Corporation å…¬ē›Šč²”å›£ę³•äŗŗ ę±äŗ¬éƒ½ć‚¹ćƒćƒ¼ćƒ„ę–‡åŒ–äŗ‹ę„­å›£'),
(49686, 'https://ror.org/05j8wgh30', 'en', 1, 'https://ror.org/05j8wgh30 Wenzhou Institute of Industrial Science ęø©å·žåø‚å·„äøšē§‘å­¦ē ”ē©¶é™¢'),
(49687, 'https://ror.org/05ja7s884', 'no_lang_code', 1, 'https://ror.org/05ja7s884 Lucerno Dynamics (United States)'),
(49688, 'https://ror.org/05jahqa08', 'en', 1, 'https://ror.org/05jahqa08 Global Virus Network'),
(49689, 'https://ror.org/05jamyt63', 'en', 1, 'https://ror.org/05jamyt63 Institute for Women''s Policy Research'),
(49690, 'https://ror.org/05jd9bf81', 'en', 1, 'https://ror.org/05jd9bf81 Canadian Association of Radiation Oncology'),
(49691, 'https://ror.org/05jfw1444', 'en', 1, 'https://ror.org/05jfw1444 Jilin Provincial Academy of Forestry Science å‰ęž—ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(49692, 'https://ror.org/05jgtkc28', 'no_lang_code', 1, 'https://ror.org/05jgtkc28 Baxter (Germany)'),
(49693, 'https://ror.org/05jja7t55', 'en', 1, 'https://ror.org/05jja7t55 Iwate Prefectural Taneichi High School å²©ę‰‹ēœŒē«‹ēØ®åø‚é«˜ē­‰å­¦ę ”'),
(49694, 'https://ror.org/05jjd1m66', 'no_lang_code', 1, 'https://ror.org/05jjd1m66 Benson Hill Biosystems (United States)'),
(49695, 'https://ror.org/05jna2v15', 'en', 1, 'https://ror.org/05jna2v15 Yabe Junior High School 矢部中学栔'),
(49696, 'https://ror.org/05jqkvb96', 'no_lang_code', 1, 'https://ror.org/05jqkvb96 Vuronyx Technologies (United States)'),
(49697, 'https://ror.org/05jreb977', 'en', 1, 'https://ror.org/05jreb977 Shikoku Medical Center for Children and Adults å››å›½ć“ć©ć‚‚ćØćŠćØćŖć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(49698, 'https://ror.org/05jrmm111', 'no_lang_code', 1, 'https://ror.org/05jrmm111 Hexagon (Germany)'),
(49699, 'https://ror.org/05jrxre70', 'no_lang_code', 1, 'https://ror.org/05jrxre70 Wikov (United Kingdom)'),
(49700, 'https://ror.org/05k27r045', 'no_lang_code', 1, 'https://ror.org/05k27r045 Wikimedia Hong Kong é¦™ęøÆē¶­åŸŗåŖ’é«”å”ęœƒ'),
(49701, 'https://ror.org/05k3mgz26', 'en', 1, 'https://ror.org/05k3mgz26 All-Russian Research Institute of Genetics and Farm Animal Breeding Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетики Šø Ń€Š°Š·Š²ŠµŠ“ŠµŠ½ŠøŃ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Ń… животных'),
(49702, 'https://ror.org/05k53z571', 'en', 1, 'https://ror.org/05k53z571 Knox County Public Library'),
(49703, 'https://ror.org/05k6zrs81', 'no_lang_code', 1, 'https://ror.org/05k6zrs81 Metallurgical Corporation of China (China) äø­å›½å†¶é‡‘ē§‘å·„č‚”ä»½ęœ‰é™å…¬åø'),
(49704, 'https://ror.org/05k833b90', 'en', 1, 'https://ror.org/05k833b90 Avenir Health'),
(49705, 'https://ror.org/05ka6xc26', 'en', 1, 'https://ror.org/05ka6xc26 Government of the District of Columbia'),
(49706, 'https://ror.org/05kc3f351', 'en', 1, 'https://ror.org/05kc3f351 INCLEN Trust International'),
(49707, 'https://ror.org/05kdv3094', 'en', 1, 'https://ror.org/05kdv3094 British Royal University الجامعة Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ©'),
(49708, 'https://ror.org/05ke4zy29', 'es', 1, 'https://ror.org/05ke4zy29 Universidad Dr. AndrƩs Bello'),
(49709, 'https://ror.org/05ke8x342', 'it', 1, 'https://ror.org/05ke8x342 Institut international pour l''unification du droit privƩ UNIDROIT'),
(49710, 'https://ror.org/05kefp559', 'en', 1, 'https://ror.org/05kefp559 Niagara Health System'),
(49711, 'https://ror.org/05kgcmp18', 'en', 1, 'https://ror.org/05kgcmp18 Gunma Chuo Hospital 群馬中央病院'),
(49712, 'https://ror.org/05kgg0s20', 'en', 1, 'https://ror.org/05kgg0s20 Cancer Research UK Oxford Centre'),
(49713, 'https://ror.org/05khe3282', 'en', 1, 'https://ror.org/05khe3282 Chongqing Dazu District People''s Hospital å¤§č¶³åŒŗäŗŗę°‘åŒ»é™¢'),
(49714, 'https://ror.org/05khvz726', 'no_lang_code', 1, 'https://ror.org/05khvz726 EirGrid (Ireland)'),
(49715, 'https://ror.org/05kjrhq19', 'no_lang_code', 1, 'https://ror.org/05kjrhq19 BAH Enterprises (Canada)'),
(49716, 'https://ror.org/05kjy5h23', 'no_lang_code', 1, 'https://ror.org/05kjy5h23 Neyagawa High School å¤§é˜Ŗåŗœē«‹åÆå±‹å·é«˜ē­‰å­¦ę ”'),
(49717, 'https://ror.org/05km15e85', 'et', 1, 'https://ror.org/05km15e85 Wikimedia Eesti'),
(49718, 'https://ror.org/05km1vk92', 'no_lang_code', 1, 'https://ror.org/05km1vk92 Kuraray (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æćƒ©ćƒ¬'),
(49719, 'https://ror.org/05kmekg24', 'en', 1, 'https://ror.org/05kmekg24 Urumqi Vocational University'),
(49720, 'https://ror.org/05kmqsg27', 'en', 1, 'https://ror.org/05kmqsg27 Edward Charles Foundation'),
(49721, 'https://ror.org/05kncqf21', 'no_lang_code', 1, 'https://ror.org/05kncqf21 Adheren (United States)'),
(49722, 'https://ror.org/05knq2v25', 'no_lang_code', 1, 'https://ror.org/05knq2v25 Francotyp Postalia (Germany)'),
(49723, 'https://ror.org/05knyt645', 'en', 1, 'https://ror.org/05knyt645 China Federation of Supply and Marketing Cooperatives äø­åŽå…Øå›½ä¾›é”€åˆä½œę€»ē¤¾'),
(49724, 'https://ror.org/05kpyvj64', 'no_lang_code', 1, 'https://ror.org/05kpyvj64 Stanley Black & Decker (Taiwan)'),
(49725, 'https://ror.org/05kqvrr98', 'en', 1, 'https://ror.org/05kqvrr98 Central Geological Survey, MOEA ē¶“ęæŸéƒØäø­å¤®åœ°č³ŖčŖæęŸ„ę‰€'),
(49726, 'https://ror.org/05kr4wg26', 'de', 1, 'https://ror.org/05kr4wg26 Wikimedia CH'),
(49727, 'https://ror.org/05ksc2940', 'en', 1, 'https://ror.org/05ksc2940 Mayor''s Office for Policing and Crime'),
(49728, 'https://ror.org/05ksj8h20', 'no_lang_code', 1, 'https://ror.org/05ksj8h20 Infraestruturas de Portugal (Portugal)'),
(49729, 'https://ror.org/05kt82m30', 'no_lang_code', 1, 'https://ror.org/05kt82m30 Isra Vision (Germany)'),
(49730, 'https://ror.org/05kv9m582', 'no_lang_code', 1, 'https://ror.org/05kv9m582 Exmoor Plastics (United Kingdom)'),
(49731, 'https://ror.org/05kvypp26', 'de', 1, 'https://ror.org/05kvypp26 Medias Klinikum'),
(49732, 'https://ror.org/05kyej320', 'en', 1, 'https://ror.org/05kyej320 Hokkaido Archaeological Center åŒ—ęµ·é“åŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(49733, 'https://ror.org/05kykca56', 'en', 1, 'https://ror.org/05kykca56 Ohtsuki City College 大月短期大学'),
(49734, 'https://ror.org/05kz93b69', 'no_lang_code', 1, 'https://ror.org/05kz93b69 Boulder Environmental Sciences and Technology (United States)'),
(49735, 'https://ror.org/05kznsx33', 'no_lang_code', 1, 'https://ror.org/05kznsx33 Antibiotic (Bulgaria)'),
(49736, 'https://ror.org/05m0wv206', 'en', 1, 'https://ror.org/05m0wv206 Zhejiang Taizhou Hospital ęµ™ę±Ÿēœå°å·žåŒ»é™¢'),
(49737, 'https://ror.org/05m5wey82', 'en', 1, 'https://ror.org/05m5wey82 Islamic Azad University Dental Branch of Tehran دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲÆŁ†ŲÆŲ§Ł†Ł¾Ų²Ų“Ś©ŪŒ تهران'),
(49738, 'https://ror.org/05m762g98', 'en', 1, 'https://ror.org/05m762g98 Lishui Academy of Forestry äø½ę°“åø‚ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(49739, 'https://ror.org/05m794j93', 'en', 1, 'https://ror.org/05m794j93 Fujisawa Institute of Technology High School ē„žå„ˆå·ēœŒē«‹č—¤ę²¢å·„ē§‘é«˜ē­‰å­¦ę ”'),
(49740, 'https://ror.org/05makdb23', 'en', 1, 'https://ror.org/05makdb23 Gifu Prefecture General Education Center å²é˜œēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(49741, 'https://ror.org/05man5y22', 'no_lang_code', 1, 'https://ror.org/05man5y22 Nhu Energy (United States)'),
(49742, 'https://ror.org/05mdg9603', 'en', 1, 'https://ror.org/05mdg9603 Confederation of Oregon School Administrators'),
(49743, 'https://ror.org/05mh3sg80', 'no_lang_code', 1, 'https://ror.org/05mh3sg80 Leuco (United States)'),
(49744, 'https://ror.org/05mhg5n73', 'en', 1, 'https://ror.org/05mhg5n73 AlzeCure Foundation'),
(49745, 'https://ror.org/05mj57325', 'en', 1, 'https://ror.org/05mj57325 Nara Prefectural Unebi Senior High School å„ˆč‰ÆēœŒē«‹ē•å‚é«˜ē­‰å­¦ę ”'),
(49746, 'https://ror.org/05mmjqp23', 'en', 1, 'https://ror.org/05mmjqp23 Shandong Academy of Chinese Medicine å±±äøœēœäø­åŒ»čÆē ”ē©¶é™¢'),
(49747, 'https://ror.org/05mmkpa90', 'en', 1, 'https://ror.org/05mmkpa90 Schiller International University'),
(49748, 'https://ror.org/05mmp2p33', 'no_lang_code', 1, 'https://ror.org/05mmp2p33 Stryker (Germany)'),
(49749, 'https://ror.org/05mmvmh32', 'no_lang_code', 1, 'https://ror.org/05mmvmh32 Thermo Fisher Scientific (Israel)'),
(49750, 'https://ror.org/05mpm3k87', 'en', 1, 'https://ror.org/05mpm3k87 Ontario Forest Research Institute'),
(49751, 'https://ror.org/05mrd3w41', 'en', 1, 'https://ror.org/05mrd3w41 Central Kitsap School District'),
(49752, 'https://ror.org/05ms7st28', 'en', 1, 'https://ror.org/05ms7st28 Ministerio de Cultura Ministry of Culture'),
(49753, 'https://ror.org/05mvc7n02', 'en', 1, 'https://ror.org/05mvc7n02 Gunma Prefectural Isesaki Koyokotogakko ē¾¤é¦¬ēœŒē«‹ä¼Šå‹¢å“Žčˆˆé™½é«˜ē­‰å­¦ę ”'),
(49754, 'https://ror.org/05n2mzp75', 'en', 1, 'https://ror.org/05n2mzp75 Keystone Foundation'),
(49755, 'https://ror.org/05n3bsa65', 'en', 1, 'https://ror.org/05n3bsa65 Tokyo Metropolitan Koganei Industrial High School ę±äŗ¬éƒ½ē«‹å°é‡‘äŗ•å·„ę„­é«˜ē­‰å­¦ę ”'),
(49756, 'https://ror.org/05n3ezj46', 'en', 1, 'https://ror.org/05n3ezj46 Annapurna Neurological Institute and Allied Sciences ą¤…ą¤Øą„ą¤Øą¤Ŗą„‚ą¤°ą„ą¤£ ą¤Øą„ą¤Æą„‚ą¤°ą„‹ą¤²ą„‹ą¤œą¤æą¤•ą¤² ą¤ˆą¤Øą„ą¤øą„ą¤Ÿą„€ą¤šą„ą¤Æą„ą¤Ÿ ą¤ą¤£ą„ą¤” ą¤ą¤²ą¤¾ą¤ˆą¤” ą¤øą¤¾ą¤ˆą¤Øą„ą¤øą„‡ą¤ø'),
(49757, 'https://ror.org/05n4fyj34', 'en', 1, 'https://ror.org/05n4fyj34 Pi Gamma Mu'),
(49758, 'https://ror.org/05n4r9n98', 'en', 1, 'https://ror.org/05n4r9n98 St. Louis American Parkinson Disease Association'),
(49759, 'https://ror.org/05n6b2q68', 'no_lang_code', 1, 'https://ror.org/05n6b2q68 Postnova Analytics (Germany)'),
(49760, 'https://ror.org/05n7s3931', 'en', 1, 'https://ror.org/05n7s3931 Institute for Research and Innovation in Irrigated Agriculture'),
(49761, 'https://ror.org/05n8e2826', 'en', 1, 'https://ror.org/05n8e2826 National Power Training Institute ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤§ą„ą¤¤ ą¤Ŗą„ą¤°ą¤¶ą¤æą¤•ą„ą¤·ą¤£ ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(49762, 'https://ror.org/05nabdh22', 'no_lang_code', 1, 'https://ror.org/05nabdh22 Mastercard (United Kingdom)'),
(49763, 'https://ror.org/05naf8y09', 'fr', 1, 'https://ror.org/05naf8y09 UniversitƩ Libre du Congo'),
(49764, 'https://ror.org/05ncabx60', 'no_lang_code', 1, 'https://ror.org/05ncabx60 Adroit Materials (United States)'),
(49765, 'https://ror.org/05nccdy26', 'en', 1, 'https://ror.org/05nccdy26 Kanagawa prefectural Atsugi high school ē„žå„ˆå·ēœŒē«‹åŽšęœØé«˜ē­‰å­¦ę ”'),
(49766, 'https://ror.org/05nf0wq34', 'en', 1, 'https://ror.org/05nf0wq34 Saitama Prefectural Education Center åŸ¼ēŽ‰ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(49767, 'https://ror.org/05nf5cj96', 'no_lang_code', 1, 'https://ror.org/05nf5cj96 Xcision Medical Systems (United States)'),
(49768, 'https://ror.org/05ngke848', 'en', 1, 'https://ror.org/05ngke848 Assumption Parish Public Library'),
(49769, 'https://ror.org/05nkabx50', 'no_lang_code', 1, 'https://ror.org/05nkabx50 Advanced Composite Products (United States)'),
(49770, 'https://ror.org/05nm21507', 'en', 1, 'https://ror.org/05nm21507 Ohda High School å³¶ę ¹ēœŒē«‹å¤§ē”°é«˜ē­‰å­¦ę ”'),
(49771, 'https://ror.org/05nm3qe34', 'no_lang_code', 1, 'https://ror.org/05nm3qe34 NSK (Japan) ę—„ęœ¬ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(49772, 'https://ror.org/05nm40v04', 'en', 1, 'https://ror.org/05nm40v04 Academy of Military Transportation å†›äŗ‹äŗ¤é€šå­¦é™¢');
INSERT INTO `rors` VALUES
(49773, 'https://ror.org/05nn0gw40', 'en', 1, 'https://ror.org/05nn0gw40 Fraunhofer Institute for Communication, Information Processing and Ergonomics Fraunhofer-Institut für Kommunikation, Informationsverarbeitung und Ergonomie'),
(49774, 'https://ror.org/05nnsck87', 'en', 1, 'https://ror.org/05nnsck87 Mie Prefectural Hisai High School äø‰é‡ēœŒē«‹ä¹…å±…é«˜ē­‰å­¦ę ”'),
(49775, 'https://ror.org/05nptd037', 'en', 1, 'https://ror.org/05nptd037 Meirin College ę˜Žå€«ēŸ­ęœŸå¤§å­¦'),
(49776, 'https://ror.org/05nq3xc14', 'en', 1, 'https://ror.org/05nq3xc14 Fraunhofer USA Center for Manufacturing Innovation'),
(49777, 'https://ror.org/05nqd9f14', 'no_lang_code', 1, 'https://ror.org/05nqd9f14 Valeo (South Korea)'),
(49778, 'https://ror.org/05ns6w738', 'en', 1, 'https://ror.org/05ns6w738 Hakodate Otani College å‡½é¤Øå¤§č°·ēŸ­ęœŸå¤§å­¦'),
(49779, 'https://ror.org/05nsenn51', 'en', 1, 'https://ror.org/05nsenn51 National Traffic Safety and Environment Laboratory äŗ¤é€šå®‰å…Øē’°å¢ƒē ”ē©¶ę‰€'),
(49780, 'https://ror.org/05nsw7t82', 'en', 1, 'https://ror.org/05nsw7t82 Colorado River Indian Tribes Library'),
(49781, 'https://ror.org/05nt41p53', 'no_lang_code', 1, 'https://ror.org/05nt41p53 Akita Prefectural Museum ē§‹ē”°ēœŒē«‹åšē‰©é¤Ø'),
(49782, 'https://ror.org/05ntkws66', 'en', 1, 'https://ror.org/05ntkws66 Bahamas Marine Mammal Research Organisation'),
(49783, 'https://ror.org/05nts6117', 'en', 1, 'https://ror.org/05nts6117 Saitama Women''s Junior College åŸ¼ēŽ‰å„³å­ēŸ­ęœŸå¤§å­¦'),
(49784, 'https://ror.org/05nvxe113', 'no_lang_code', 1, 'https://ror.org/05nvxe113 Mondelēz International (Canada)'),
(49785, 'https://ror.org/05nw0ka87', 'en', 1, 'https://ror.org/05nw0ka87 Vienna Centre for Societal Security Wiener Zentrum für sozialwissenschaftliche Sicherheitsforschung'),
(49786, 'https://ror.org/05nwzgq67', 'en', 1, 'https://ror.org/05nwzgq67 Nagano Prefectural Comprehensive Education Center é•·é‡ŽēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(49787, 'https://ror.org/05nxk4667', 'no_lang_code', 1, 'https://ror.org/05nxk4667 Medicure (United States)'),
(49788, 'https://ror.org/05nyr7981', 'en', 1, 'https://ror.org/05nyr7981 Institute of General and Experimental Biology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ биологии Š”Šž Š ŠŠ'),
(49789, 'https://ror.org/05nz1qp55', 'en', 1, 'https://ror.org/05nz1qp55 Aomori Akenohoshi Junior College é’ę£®ę˜Žć®ę˜ŸēŸ­ęœŸå¤§å­¦'),
(49790, 'https://ror.org/05nz79105', 'no_lang_code', 1, 'https://ror.org/05nz79105 MBDA (Germany)'),
(49791, 'https://ror.org/05p1cse56', 'en', 1, 'https://ror.org/05p1cse56 Kanagawa Prefectural Yokohama Hiranuma High School ē„žå„ˆå·ēœŒē«‹ęØŖęµœå¹³ę²¼é«˜ē­‰å­¦ę ”'),
(49792, 'https://ror.org/05p2fn050', 'no_lang_code', 1, 'https://ror.org/05p2fn050 Bishop Water Technologies (Canada)'),
(49793, 'https://ror.org/05p2fxt77', 'en', 1, 'https://ror.org/05p2fxt77 Lishui Vocational and Technical College äø½ę°“čŒäøšęŠ€ęœÆå­¦é™¢'),
(49794, 'https://ror.org/05p4w7d36', 'en', 1, 'https://ror.org/05p4w7d36 Meridian Institute'),
(49795, 'https://ror.org/05pawpb90', 'no_lang_code', 1, 'https://ror.org/05pawpb90 Light Prescriptions Innovators (United States)'),
(49796, 'https://ror.org/05pecte80', 'en', 1, 'https://ror.org/05pecte80 Jersey Shore University Medical Center'),
(49797, 'https://ror.org/05pggr453', 'no_lang_code', 1, 'https://ror.org/05pggr453 DCS Computing (Austria)'),
(49798, 'https://ror.org/05pjhbt17', 'en', 1, 'https://ror.org/05pjhbt17 Montana Department of Environmental Quality'),
(49799, 'https://ror.org/05pnsh228', 'en', 1, 'https://ror.org/05pnsh228 Russian Scientific Center of Surgery Российский ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр Š„ŠøŃ€ŃƒŃ€Š³ŠøŠø им. акаГ. Š‘.Š’. ŠŸŠµŃ‚Ń€Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(49800, 'https://ror.org/05ppep808', 'en', 1, 'https://ror.org/05ppep808 Avenue Day Hospital'),
(49801, 'https://ror.org/05pps5s98', 'en', 1, 'https://ror.org/05pps5s98 Saudi Pharmaceutical Society'),
(49802, 'https://ror.org/05pqwek81', 'no_lang_code', 1, 'https://ror.org/05pqwek81 Alliance Protein Laboratories (United States)'),
(49803, 'https://ror.org/05prsqx18', 'no_lang_code', 1, 'https://ror.org/05prsqx18 Bohn Stafleu van Loghum (Netherlands)'),
(49804, 'https://ror.org/05pt0p091', 'en', 1, 'https://ror.org/05pt0p091 Taizhou Vocational and Technical College å°å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(49805, 'https://ror.org/05ptgb204', 'en', 1, 'https://ror.org/05ptgb204 Mining Institute of the Ural Branch of the Russian Academy of Sciences Горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(49806, 'https://ror.org/05q3m8e94', 'no_lang_code', 1, 'https://ror.org/05q3m8e94 Fuchu Hospital åŗœäø­ē—…é™¢'),
(49807, 'https://ror.org/05q4caq61', 'en', 1, 'https://ror.org/05q4caq61 General Education Center of Iwate å²©ę‰‹ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(49808, 'https://ror.org/05q609a17', 'no_lang_code', 1, 'https://ror.org/05q609a17 Texas Instruments (Ireland)'),
(49809, 'https://ror.org/05q90cj61', 'en', 1, 'https://ror.org/05q90cj61 Health PEI'),
(49810, 'https://ror.org/05q9b8948', 'en', 1, 'https://ror.org/05q9b8948 Ishikawa Prefectural Institute for Educational Research and In-Service Training ēŸ³å·ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(49811, 'https://ror.org/05q9cvq57', 'en', 1, 'https://ror.org/05q9cvq57 Ichinoseki Daiichi Senior High School å²©ę‰‹ēœŒē«‹äø€é–¢ē¬¬äø€é«˜ē­‰å­¦ę ”ćƒ»é™„å±žäø­å­¦ę ”'),
(49812, 'https://ror.org/05qcw4d59', 'no_lang_code', 1, 'https://ror.org/05qcw4d59 Ƅlvdalens FastbrƤnsleteknik Aktiebolag (Sweden)'),
(49813, 'https://ror.org/05qer3y84', 'en', 1, 'https://ror.org/05qer3y84 Research Institute in Oncology and Hematology'),
(49814, 'https://ror.org/05qessq62', 'en', 1, 'https://ror.org/05qessq62 Kyoto Municipal Saikyokotogakko-Junior High School'),
(49815, 'https://ror.org/05qfkt964', 'de', 1, 'https://ror.org/05qfkt964 Fƶrdergemeinschaft Deutsche Kinderherzzentren'),
(49816, 'https://ror.org/05qgdbc96', 'en', 1, 'https://ror.org/05qgdbc96 Education Cities'),
(49817, 'https://ror.org/05qgm9a33', 'en', 1, 'https://ror.org/05qgm9a33 New World University'),
(49818, 'https://ror.org/05qgvn881', 'fr', 1, 'https://ror.org/05qgvn881 Institut Bouisson Bertrand'),
(49819, 'https://ror.org/05qh0gq94', 'en', 1, 'https://ror.org/05qh0gq94 Windsor University School of Medicine'),
(49820, 'https://ror.org/05qhw9x92', 'en', 1, 'https://ror.org/05qhw9x92 Biblioteca Centrală Universitară Central University Library'),
(49821, 'https://ror.org/05qjhbz81', 'en', 1, 'https://ror.org/05qjhbz81 Sugayadai Elementary School č…č°·å°å°å­¦ę ”'),
(49822, 'https://ror.org/05qjkt447', 'en', 1, 'https://ror.org/05qjkt447 Economic History Society'),
(49823, 'https://ror.org/05qpyc807', 'no_lang_code', 1, 'https://ror.org/05qpyc807 ZF Screens (Netherlands)'),
(49824, 'https://ror.org/05qqbm455', 'pt', 1, 'https://ror.org/05qqbm455 Associação Brasileira de Ensaios não Destrutivos e Inspeção'),
(49825, 'https://ror.org/05qr8a694', 'en', 1, 'https://ror.org/05qr8a694 Grameen Research'),
(49826, 'https://ror.org/05qraqp26', 'en', 1, 'https://ror.org/05qraqp26 Lietuvos Respublikos kultūros ministerija Ministry of Culture'),
(49827, 'https://ror.org/05qszhe91', 'en', 1, 'https://ror.org/05qszhe91 Museum of Nature and Human Activities Hyogo č‡Ŗē„¶ć®åšē‰©é¤ØćØäŗŗé–“ę“»å‹•å…µåŗ«'),
(49828, 'https://ror.org/05qv2mm32', 'en', 1, 'https://ror.org/05qv2mm32 Wikimedia Macedonia Š’ŠøŠŗŠøŠ¼ŠµŠ“ŠøŃ˜Š° МакеГонија'),
(49829, 'https://ror.org/05qwc0640', 'en', 1, 'https://ror.org/05qwc0640 Lowcountry Council of Governments'),
(49830, 'https://ror.org/05qxfse94', 'en', 1, 'https://ror.org/05qxfse94 Ibaraki Womens Junior College čŒØåŸŽå„³å­ēŸ­ęœŸå¤§å­¦'),
(49831, 'https://ror.org/05qxm2f34', 'en', 1, 'https://ror.org/05qxm2f34 Foundation for Excellence in Education'),
(49832, 'https://ror.org/05qzegn43', 'no_lang_code', 1, 'https://ror.org/05qzegn43 Wellspring Biosciences (United States)'),
(49833, 'https://ror.org/05qzw2346', 'fr', 1, 'https://ror.org/05qzw2346 Wikimedia Canada'),
(49834, 'https://ror.org/05r261n31', 'pt', 1, 'https://ror.org/05r261n31 Centro de Direito Internacional'),
(49835, 'https://ror.org/05r26zf79', 'en', 1, 'https://ror.org/05r26zf79 Port and Airport Research Institute ęøÆę¹¾ē©ŗęøÆęŠ€č”“ē ”ē©¶ę‰€'),
(49836, 'https://ror.org/05r2e5c27', 'pt', 1, 'https://ror.org/05r2e5c27 Sociedade Brasileira de Pesquisa Operacional'),
(49837, 'https://ror.org/05r7r4y77', 'en', 1, 'https://ror.org/05r7r4y77 Gateway to College National Network'),
(49838, 'https://ror.org/05rcgef49', 'en', 1, 'https://ror.org/05rcgef49 Institute for Complex Systems Istituto dei Sistemi Complessi'),
(49839, 'https://ror.org/05rdf3493', 'es', 1, 'https://ror.org/05rdf3493 Universidad Abierta y a Distancia'),
(49840, 'https://ror.org/05rdhpk34', 'en', 1, 'https://ror.org/05rdhpk34 Tokyo Hygiene Gakuen College ę±äŗ¬č”›ē”Ÿå­¦åœ’å°‚é–€å­¦ę ”'),
(49841, 'https://ror.org/05rm1p636', 'pt', 1, 'https://ror.org/05rm1p636 Instituto Federal de Educação, Ciência e Tecnologia do Maranhão, Instituto Federal do Maranhão'),
(49842, 'https://ror.org/05rnyty77', 'en', 1, 'https://ror.org/05rnyty77 Institute of Archaeology äø­å›½ē¤¾ä¼šē§‘å­¦é™¢č€ƒå¤ē ”ē©¶ę‰€ę˜Æ'),
(49843, 'https://ror.org/05rp1xt91', 'en', 1, 'https://ror.org/05rp1xt91 League For Innovation in the Community College'),
(49844, 'https://ror.org/05rv8ev82', 'no_lang_code', 1, 'https://ror.org/05rv8ev82 Kia Motors (South Korea) źø°ģ•„ģžė™ģ°Ø'),
(49845, 'https://ror.org/05rvq9153', 'no_lang_code', 1, 'https://ror.org/05rvq9153 EYDAP (Greece) Εταιρεία ĪŽĪ“ĻĪµĻ…ĻƒĪ·Ļ‚ και Ī‘Ļ€ĪæĻ‡Ī­Ļ„ĪµĻ…ĻƒĪ·Ļ‚ Ī ĻĻ‰Ļ„ĪµĻĪæĻ…ĻƒĪ±Ļ‚'),
(49846, 'https://ror.org/05rwf2d02', 'en', 1, 'https://ror.org/05rwf2d02 Ryogoku High School ę±äŗ¬éƒ½ē«‹äø”å›½é«˜ē­‰å­¦ę ”ćƒ»é™„å±žäø­å­¦ę ”'),
(49847, 'https://ror.org/05rxz3g75', 'en', 1, 'https://ror.org/05rxz3g75 Harris County Public Library'),
(49848, 'https://ror.org/05ryaaw10', 'en', 1, 'https://ror.org/05ryaaw10 College of Healthcare Management äæå„åŒ»ē™‚ēµŒå–¶å¤§å­¦'),
(49849, 'https://ror.org/05ryccv79', 'pt', 1, 'https://ror.org/05ryccv79 Escola Superior Dom Helder CĆ¢mara'),
(49850, 'https://ror.org/05s0mht63', 'en', 1, 'https://ror.org/05s0mht63 Tokyo Metropolitan Board of Education ę±äŗ¬éƒ½ę•™č‚²äŗ‹å‹™ę‰€'),
(49851, 'https://ror.org/05s18kz11', 'de', 1, 'https://ror.org/05s18kz11 Fachklinik Hornheide'),
(49852, 'https://ror.org/05s252336', 'no_lang_code', 1, 'https://ror.org/05s252336 Carbon Engineering (Canada)'),
(49853, 'https://ror.org/05s2dce75', 'no_lang_code', 1, 'https://ror.org/05s2dce75 Center for Information and Numerical Data Analysis and Synthesis (United States)'),
(49854, 'https://ror.org/05s3b4196', 'en', 1, 'https://ror.org/05s3b4196 Hirosaki University Hospital å¼˜å‰å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(49855, 'https://ror.org/05s3gkw93', 'en', 1, 'https://ror.org/05s3gkw93 International University for Graduate Studies'),
(49856, 'https://ror.org/05s3r6j75', 'en', 1, 'https://ror.org/05s3r6j75 Southwestern Community College - Iowa'),
(49857, 'https://ror.org/05s44bn67', 'en', 1, 'https://ror.org/05s44bn67 Cook County Sheriff''s Office'),
(49858, 'https://ror.org/05s4ea934', 'en', 1, 'https://ror.org/05s4ea934 Central Visayan Institute Foundation'),
(49859, 'https://ror.org/05s5g6369', 'no_lang_code', 1, 'https://ror.org/05s5g6369 Tokushima Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹å¾³å³¶ē—…é™¢'),
(49860, 'https://ror.org/05s5rh151', 'it', 1, 'https://ror.org/05s5rh151 Agenzia Regionale per la Tecnologia e l''Innovazione'),
(49861, 'https://ror.org/05s7fvh27', 'no_lang_code', 1, 'https://ror.org/05s7fvh27 Yamaha (Japan) ćƒ¤ćƒžćƒę Ŗå¼ä¼šē¤¾'),
(49862, 'https://ror.org/05s8mns17', 'en', 1, 'https://ror.org/05s8mns17 Association for Clinical Biochemistry and Laboratory Medicine'),
(49863, 'https://ror.org/05s9h0j72', 'en', 1, 'https://ror.org/05s9h0j72 Kungliga Gustav Adolfs Akademien Royal Gustavus Adolphus Academy'),
(49864, 'https://ror.org/05sa4da38', 'en', 1, 'https://ror.org/05sa4da38 Tokyo Metropolitan Industrial Technology Research Institute ę±äŗ¬éƒ½ē«‹ē”£ę„­ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(49865, 'https://ror.org/05saknr96', 'en', 1, 'https://ror.org/05saknr96 Takezono Higashi Elementary School ć¤ćć°åø‚ē«‹ē«¹åœ’ę±å°å­¦ę ”'),
(49866, 'https://ror.org/05sam1g35', 'no_lang_code', 1, 'https://ror.org/05sam1g35 Hovione (China)'),
(49867, 'https://ror.org/05sb2p455', 'en', 1, 'https://ror.org/05sb2p455 Tottori Prefectural Chizu Agriculture and Forestry High School é³„å–ēœŒē«‹ę™ŗé ­č¾²ęž—é«˜ē­‰å­¦ę ”'),
(49868, 'https://ror.org/05scqcm44', 'no_lang_code', 1, 'https://ror.org/05scqcm44 Solers (United States)'),
(49869, 'https://ror.org/05se67h97', 'en', 1, 'https://ror.org/05se67h97 North Central Texas Council of Governments'),
(49870, 'https://ror.org/05sehyt57', 'en', 1, 'https://ror.org/05sehyt57 Islamic Azad University of Kermanshah دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کرمانؓاه'),
(49871, 'https://ror.org/05sfq4m04', 'no_lang_code', 1, 'https://ror.org/05sfq4m04 Draxis Environmental Technologies (Greece) Ī”Ī”Ī‘ĪžĪ™Ī£ Ī¤Ī•Ī§ĪĪŸĪ›ĪŸĪ“Ī™Ī•Ī£ Ī Ī•Ī”Ī™Ī’Ī‘Ī›Ī›ĪŸĪĪ¤ĪŸĪ£'),
(49872, 'https://ror.org/05sgy1v64', 'en', 1, 'https://ror.org/05sgy1v64 Brussels Office of Helmholtz Association'),
(49873, 'https://ror.org/05sgyt558', 'en', 1, 'https://ror.org/05sgyt558 Gunma Prefectural Institute of Agriculture and Forestry ē¾¤é¦¬ēœŒē«‹č¾²ęž—å¤§å­¦ę ”'),
(49874, 'https://ror.org/05skcvs70', 'no_lang_code', 1, 'https://ror.org/05skcvs70 Recyc PHP (Canada)'),
(49875, 'https://ror.org/05skghf24', 'en', 1, 'https://ror.org/05skghf24 Institute of Geology Ufa Scientific Center Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Уфимского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Š ŠŠ'),
(49876, 'https://ror.org/05sm0qs27', 'en', 1, 'https://ror.org/05sm0qs27 Saitama Prefectural Museum of History and Folklore åŸ¼ēŽ‰ēœŒē«‹ę­“å²ćØę°‘äæ—ć®åšē‰©é¤Ø'),
(49877, 'https://ror.org/05sm4gx39', 'no_lang_code', 1, 'https://ror.org/05sm4gx39 Red Hat (United Kingdom)'),
(49878, 'https://ror.org/05sm9st23', 'en', 1, 'https://ror.org/05sm9st23 Chartered Accountants Australia and New Zealand'),
(49879, 'https://ror.org/05sqx9s36', 'no_lang_code', 1, 'https://ror.org/05sqx9s36 Acushnet (United States)'),
(49880, 'https://ror.org/05stxd180', 'en', 1, 'https://ror.org/05stxd180 Atlanta Research and Education Foundation'),
(49881, 'https://ror.org/05svcq088', 'en', 1, 'https://ror.org/05svcq088 Engineering and Science University Magnet School'),
(49882, 'https://ror.org/05sve0f84', 'en', 1, 'https://ror.org/05sve0f84 Fundacion Hondureña de Investigación Agricola Honduras Foundation for Agricultural Research'),
(49883, 'https://ror.org/05sw6n724', 'no_lang_code', 1, 'https://ror.org/05sw6n724 Right Way (Germany)'),
(49884, 'https://ror.org/05swp8738', 'en', 1, 'https://ror.org/05swp8738 Sakai City Board of Education ę•™č‚²å§”å“”ä¼š - å ŗåø‚'),
(49885, 'https://ror.org/05sy11p04', 'no_lang_code', 1, 'https://ror.org/05sy11p04 Roche (Israel) רוש ×™×©×Ø××œ'),
(49886, 'https://ror.org/05syhdw25', 'no_lang_code', 1, 'https://ror.org/05syhdw25 Visa (United Kingdom)'),
(49887, 'https://ror.org/05syq9r31', 'de', 1, 'https://ror.org/05syq9r31 Forschungsvereinigung für Luft- und Trocknungstechnik'),
(49888, 'https://ror.org/05sz2wg38', 'no_lang_code', 1, 'https://ror.org/05sz2wg38 Technical Solutions (United States)'),
(49889, 'https://ror.org/05szks045', 'en', 1, 'https://ror.org/05szks045 Norfolk Public Schools'),
(49890, 'https://ror.org/05t0zzz08', 'no_lang_code', 1, 'https://ror.org/05t0zzz08 Stryker (Canada)'),
(49891, 'https://ror.org/05t5znx80', 'no_lang_code', 1, 'https://ror.org/05t5znx80 Biosettia (United States)'),
(49892, 'https://ror.org/05t77d857', 'en', 1, 'https://ror.org/05t77d857 Institute of Biomedical Science'),
(49893, 'https://ror.org/05t96az61', 'no_lang_code', 1, 'https://ror.org/05t96az61 Cirrus Logic (United States)'),
(49894, 'https://ror.org/05t9zpz97', 'no_lang_code', 1, 'https://ror.org/05t9zpz97 Cook Medical (Australia)'),
(49895, 'https://ror.org/05tawrz57', 'no_lang_code', 1, 'https://ror.org/05tawrz57 Megger (Germany)'),
(49896, 'https://ror.org/05tc61k56', 'en', 1, 'https://ror.org/05tc61k56 Pushchino State Institute of Natural Sciences ŠŸŃƒŃ‰ŠøŠ½ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(49897, 'https://ror.org/05tcdh256', 'en', 1, 'https://ror.org/05tcdh256 Division of Parasitic Diseases and Malaria'),
(49898, 'https://ror.org/05tcf2c75', 'en', 1, 'https://ror.org/05tcf2c75 International Peace Institute'),
(49899, 'https://ror.org/05td6db49', 'no_lang_code', 1, 'https://ror.org/05td6db49 Smart Component Technologies (United Kingdom)'),
(49900, 'https://ror.org/05td9wm36', 'en', 1, 'https://ror.org/05td9wm36 Royal United Services Institute'),
(49901, 'https://ror.org/05tdqzj08', 'no_lang_code', 1, 'https://ror.org/05tdqzj08 New Horizons Diagnostics (United States)'),
(49902, 'https://ror.org/05tdzsq49', 'no_lang_code', 1, 'https://ror.org/05tdzsq49 Nortek (United States)'),
(49903, 'https://ror.org/05tee1f44', 'en', 1, 'https://ror.org/05tee1f44 Shizuoka Prefectural Education Center é™å²”ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(49904, 'https://ror.org/05tew7y65', 'en', 1, 'https://ror.org/05tew7y65 Center for Research on Political Economy'),
(49905, 'https://ror.org/05tgc6914', 'en', 1, 'https://ror.org/05tgc6914 Kawasaki College of Allied Health Professions å·å“ŽåŒ»ē™‚ēŸ­ęœŸå¤§å­¦'),
(49906, 'https://ror.org/05tgg8n11', 'no_lang_code', 1, 'https://ror.org/05tgg8n11 NovaTech (United States)'),
(49907, 'https://ror.org/05tgpyh43', 'en', 1, 'https://ror.org/05tgpyh43 Oita Industrial Research Institute å¤§åˆ†ēœŒē”£ę„­ē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(49908, 'https://ror.org/05tj5za17', 'no_lang_code', 1, 'https://ror.org/05tj5za17 General Electric (Switzerland)'),
(49909, 'https://ror.org/05tjmvm75', 'no_lang_code', 1, 'https://ror.org/05tjmvm75 InnoSepra (United States)'),
(49910, 'https://ror.org/05tk7d923', 'en', 1, 'https://ror.org/05tk7d923 Sumter County Planning Department'),
(49911, 'https://ror.org/05tkntq54', 'en', 1, 'https://ror.org/05tkntq54 Colorado Springs School District 11'),
(49912, 'https://ror.org/05tmzdb63', 'no_lang_code', 1, 'https://ror.org/05tmzdb63 T3D Therapeutics (United States)'),
(49913, 'https://ror.org/05tp4xj78', 'en', 1, 'https://ror.org/05tp4xj78 State Optical Institute named after SI Vavilov Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ оптический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”.И. Вавилова'),
(49914, 'https://ror.org/05tq4a167', 'no_lang_code', 1, 'https://ror.org/05tq4a167 ShinEtsu Chemical (Japan) äæ”č¶ŠåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(49915, 'https://ror.org/05trpty44', 'fr', 1, 'https://ror.org/05trpty44 Clinique Saint Jean Languedoc'),
(49916, 'https://ror.org/05tsb3a74', 'en', 1, 'https://ror.org/05tsb3a74 Ministry of Urban Development ą¤øą¤¹ą¤°ą„€ विकास ą¤®ą¤Øą„ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ | ą¤Øą¤æą¤œą¤¾ą¤®ą¤¤ą„€ ą¤øą„‡ą¤µą¤¾ą¤•ą„‹ सपना'),
(49917, 'https://ror.org/05tt0as29', 'en', 1, 'https://ror.org/05tt0as29 Tohto College of Health Sciences ę±éƒ½åŒ»ē™‚å¤§å­¦'),
(49918, 'https://ror.org/05ttfy022', 'no_lang_code', 1, 'https://ror.org/05ttfy022 Tsubakimoto Chain (Japan) ę Ŗå¼ä¼šē¤¾ę¤æęœ¬ćƒć‚Øć‚¤ćƒ³'),
(49919, 'https://ror.org/05ttsqg93', 'no_lang_code', 1, 'https://ror.org/05ttsqg93 Medtronic (Germany)'),
(49920, 'https://ror.org/05ttt5a28', 'no_lang_code', 1, 'https://ror.org/05ttt5a28 Intersil (United States)'),
(49921, 'https://ror.org/05tw0wf88', 'no_lang_code', 1, 'https://ror.org/05tw0wf88 Airbus (India)'),
(49922, 'https://ror.org/05tx5hy52', 'no_lang_code', 1, 'https://ror.org/05tx5hy52 Tech4Imaging (United States)'),
(49923, 'https://ror.org/05txbz736', 'no_lang_code', 1, 'https://ror.org/05txbz736 Saint-Gobain (Germany)'),
(49924, 'https://ror.org/05tycwb10', 'en', 1, 'https://ror.org/05tycwb10 Niigata Prefectural Nagaoka High School ę–°ę½ŸēœŒē«‹é•·å²”é«˜ē­‰å­¦ę ”'),
(49925, 'https://ror.org/05tyzry72', 'de', 1, 'https://ror.org/05tyzry72 Werner-Wicker-Klinik'),
(49926, 'https://ror.org/05tzak412', 'en', 1, 'https://ror.org/05tzak412 Life Sciences Discovery Fund'),
(49927, 'https://ror.org/05tztfw60', 'en', 1, 'https://ror.org/05tztfw60 Hydro Tasmania'),
(49928, 'https://ror.org/05v1ag808', 'no_lang_code', 1, 'https://ror.org/05v1ag808 Altranex (Canada)'),
(49929, 'https://ror.org/05v258z19', 'en', 1, 'https://ror.org/05v258z19 Office of the South Australian Chief Entrepreneur'),
(49930, 'https://ror.org/05v3gb133', 'no_lang_code', 1, 'https://ror.org/05v3gb133 Stanley Black & Decker (Israel)'),
(49931, 'https://ror.org/05v40eh15', 'no_lang_code', 1, 'https://ror.org/05v40eh15 Spinologics (Canada)'),
(49932, 'https://ror.org/05v424314', 'no_lang_code', 1, 'https://ror.org/05v424314 Oregon Physics (United States)'),
(49933, 'https://ror.org/05v508890', 'en', 1, 'https://ror.org/05v508890 McCallum Theatre'),
(49934, 'https://ror.org/05v74eq93', 'en', 1, 'https://ror.org/05v74eq93 Gaston Day School'),
(49935, 'https://ror.org/05v7khz67', 'en', 1, 'https://ror.org/05v7khz67 Bakhtar University Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲØŲ§Ų®ŲŖŲ±'),
(49936, 'https://ror.org/05v965x44', 'no_lang_code', 1, 'https://ror.org/05v965x44 C4i (Canada)'),
(49937, 'https://ror.org/05vhh0619', 'en', 1, 'https://ror.org/05vhh0619 Trinity Valley Community College'),
(49938, 'https://ror.org/05vjf0e82', 'en', 1, 'https://ror.org/05vjf0e82 Georgia Tech Tools for Life'),
(49939, 'https://ror.org/05vp7sn46', 'en', 1, 'https://ror.org/05vp7sn46 Shiminkatsudou Information Center'),
(49940, 'https://ror.org/05vppxx21', 'en', 1, 'https://ror.org/05vppxx21 African Agricultural Technology Foundation'),
(49941, 'https://ror.org/05vqnxk73', 'de', 1, 'https://ror.org/05vqnxk73 Battelle'),
(49942, 'https://ror.org/05vtekv74', 'en', 1, 'https://ror.org/05vtekv74 Montgomery City County Public Library'),
(49943, 'https://ror.org/05vtsp510', 'en', 1, 'https://ror.org/05vtsp510 Australian Respiratory and Sleep Medicine Institute'),
(49944, 'https://ror.org/05vvdqy91', 'pt', 1, 'https://ror.org/05vvdqy91 Associação Brasileira de Águas Subterrâneas'),
(49945, 'https://ror.org/05w1vm756', 'en', 1, 'https://ror.org/05w1vm756 Yonezawa Chuo Senior High School ē±³ę²¢äø­å¤®é«˜ē­‰å­¦ę ”'),
(49946, 'https://ror.org/05w1x0w37', 'en', 1, 'https://ror.org/05w1x0w37 Polar Scientific'),
(49947, 'https://ror.org/05w2g7m94', 'no_lang_code', 1, 'https://ror.org/05w2g7m94 Coare Biotechnology (United States)'),
(49948, 'https://ror.org/05w362f32', 'no_lang_code', 1, 'https://ror.org/05w362f32 BorgWarner (Germany)'),
(49949, 'https://ror.org/05w3e2p73', 'en', 1, 'https://ror.org/05w3e2p73 Manuscript Society'),
(49950, 'https://ror.org/05w5shm69', 'no_lang_code', 1, 'https://ror.org/05w5shm69 Chevron Phillips Chemical (United States)'),
(49951, 'https://ror.org/05w6rx357', 'en', 1, 'https://ror.org/05w6rx357 Council for Aid to Education'),
(49952, 'https://ror.org/05w7zhb08', 'en', 1, 'https://ror.org/05w7zhb08 County of Los Angeles Public Library'),
(49953, 'https://ror.org/05wba8r86', 'en', 1, 'https://ror.org/05wba8r86 Institute of Crystallography Istituto di Cristallografia'),
(49954, 'https://ror.org/05wbh2085', 'en', 1, 'https://ror.org/05wbh2085 Department of Food Technology and Quality Control'),
(49955, 'https://ror.org/05wcj6f33', 'en', 1, 'https://ror.org/05wcj6f33 Denise Louie Education Center'),
(49956, 'https://ror.org/05wcr1b38', 'en', 1, 'https://ror.org/05wcr1b38 Centre for Inflammation Research'),
(49957, 'https://ror.org/05wcy9v93', 'en', 1, 'https://ror.org/05wcy9v93 Japan Society for Occupational Health ę—„ęœ¬ē”£ę„­č”›ē”Ÿå­¦ä¼š'),
(49958, 'https://ror.org/05wdedb75', 'no_lang_code', 1, 'https://ror.org/05wdedb75 Aisin (United States) ć‚¢ć‚¤ć‚·ćƒ³ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(49959, 'https://ror.org/05we5kc38', 'da', 1, 'https://ror.org/05we5kc38 TandlƦgeforeningen'),
(49960, 'https://ror.org/05wfxya04', 'no_lang_code', 1, 'https://ror.org/05wfxya04 Invivo Sciences (United States)'),
(49961, 'https://ror.org/05wn4sm75', 'en', 1, 'https://ror.org/05wn4sm75 Leadership Florida'),
(49962, 'https://ror.org/05wn9p486', 'en', 1, 'https://ror.org/05wn9p486 Rayat Institute of Engineering & Information Technology रयात ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(49963, 'https://ror.org/05wq09n36', 'en', 1, 'https://ror.org/05wq09n36 Okayama Prefectural Kurashiki Chuo High School å²”å±±ēœŒē«‹å€‰ę•·äø­å¤®é«˜ē­‰å­¦ę ”'),
(49964, 'https://ror.org/05wqk8p58', 'no_lang_code', 1, 'https://ror.org/05wqk8p58 MACOM (Japan)'),
(49965, 'https://ror.org/05wstjm18', 'es', 1, 'https://ror.org/05wstjm18 Academia Nacional de Ciencias de Bolivia'),
(49966, 'https://ror.org/05wstmm20', 'no_lang_code', 1, 'https://ror.org/05wstmm20 Horiba (Germany)'),
(49967, 'https://ror.org/05wt8ay40', 'en', 1, 'https://ror.org/05wt8ay40 Canadian Society of Petroleum Geologists'),
(49968, 'https://ror.org/05wvdt748', 'en', 1, 'https://ror.org/05wvdt748 Association of universities in the Netherlands Vereniging van Samenwerkende Nederlandse Universiteiten'),
(49969, 'https://ror.org/05wybg642', 'no_lang_code', 1, 'https://ror.org/05wybg642 Eyeball (Canada)'),
(49970, 'https://ror.org/05x01yd17', 'en', 1, 'https://ror.org/05x01yd17 Ability Development Training Center čƒ½åŠ›é–‹ē™ŗē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(49971, 'https://ror.org/05x0zqa09', 'en', 1, 'https://ror.org/05x0zqa09 Northeast Community College'),
(49972, 'https://ror.org/05x1ffr83', 'no_lang_code', 1, 'https://ror.org/05x1ffr83 Realtek (Taiwan) ē‘žę˜±åŠå°Žé«”č‚”ä»½ęœ‰é™å…¬åø'),
(49973, 'https://ror.org/05x3qxg97', 'en', 1, 'https://ror.org/05x3qxg97 Chinese Society for Tropical Crops äø­å›½ēƒ­åø¦ä½œē‰©å­¦ä¼š'),
(49974, 'https://ror.org/05x7wqc91', 'no_lang_code', 1, 'https://ror.org/05x7wqc91 Valeo (United States)'),
(49975, 'https://ror.org/05x7wz523', 'en', 1, 'https://ror.org/05x7wz523 Statistics Sweden Statistiska CentralbyrƄn'),
(49976, 'https://ror.org/05xck0p20', 'no_lang_code', 1, 'https://ror.org/05xck0p20 Jordan Valley Semiconductors (Israel)'),
(49977, 'https://ror.org/05xdpay59', 'en', 1, 'https://ror.org/05xdpay59 Climate Resilience Infrastructure Development Facility'),
(49978, 'https://ror.org/05xfayp21', 'en', 1, 'https://ror.org/05xfayp21 Higashi Chikushi Junior College ę±ē­‘ē“«ēŸ­ęœŸå¤§å­¦'),
(49979, 'https://ror.org/05xke1111', 'en', 1, 'https://ror.org/05xke1111 Foundation for the Mid South'),
(49980, 'https://ror.org/05xkpwf58', 'en', 1, 'https://ror.org/05xkpwf58 Sierra Leone Agricultural Research Institute'),
(49981, 'https://ror.org/05xmzbk80', 'no_lang_code', 1, 'https://ror.org/05xmzbk80 Nidec (Japan) ę—„ęœ¬é›»ē”£ę Ŗå¼ä¼šē¤¾'),
(49982, 'https://ror.org/05xqh8n76', 'no_lang_code', 1, 'https://ror.org/05xqh8n76 UFI Filters (Italy)'),
(49983, 'https://ror.org/05xr89294', 'en', 1, 'https://ror.org/05xr89294 American Physician Scientists Association'),
(49984, 'https://ror.org/05xwnaa24', 'en', 1, 'https://ror.org/05xwnaa24 Ohara Memorial Institute for Science of Labour å¤§åŽŸčØ˜åæµåŠ“åƒē§‘å­¦ē ”ē©¶ę‰€'),
(49985, 'https://ror.org/05xx3wf87', 'en', 1, 'https://ror.org/05xx3wf87 Institute of Mathematics and Mathematical Modeling'),
(49986, 'https://ror.org/05y09nm31', 'no_lang_code', 1, 'https://ror.org/05y09nm31 Engineered Coatings (United States)'),
(49987, 'https://ror.org/05y6mfn19', 'en', 1, 'https://ror.org/05y6mfn19 Envision Education'),
(49988, 'https://ror.org/05y846g09', 'en', 1, 'https://ror.org/05y846g09 Chiba Prefectural Government åƒå¶åŽæę”æåŗœ'),
(49989, 'https://ror.org/05y88cx07', 'en', 1, 'https://ror.org/05y88cx07 Sydney Orthopaedic Research Institute'),
(49990, 'https://ror.org/05y8c9413', 'no_lang_code', 1, 'https://ror.org/05y8c9413 SK Communications (South Korea) ģ—ģŠ¤ģ¼€ģ“ģ»¤ė®¤ė‹ˆģ¼€ģ“ģ…˜ģ¦ˆ'),
(49991, 'https://ror.org/05ybwtt56', 'en', 1, 'https://ror.org/05ybwtt56 Hinton Area Foundation'),
(49992, 'https://ror.org/05yca4657', 'en', 1, 'https://ror.org/05yca4657 Tokyo Metropolitan Art Museum ę±äŗ¬éƒ½ē¾Žč”“é¤Ø'),
(49993, 'https://ror.org/05yd3zv45', 'en', 1, 'https://ror.org/05yd3zv45 Clock View Hospital'),
(49994, 'https://ror.org/05ye2w436', 'en', 1, 'https://ror.org/05ye2w436 Oita Junior College å¤§åˆ†ēŸ­ęœŸå¤§å­¦'),
(49995, 'https://ror.org/05ygj1d20', 'no_lang_code', 1, 'https://ror.org/05ygj1d20 Gaertner (United States)'),
(49996, 'https://ror.org/05yhf9c86', 'no_lang_code', 1, 'https://ror.org/05yhf9c86 Gabriel Entertainment (United States)'),
(49997, 'https://ror.org/05yk66715', 'en', 1, 'https://ror.org/05yk66715 World Phenomenology Institute'),
(49998, 'https://ror.org/05ym5q463', 'en', 1, 'https://ror.org/05ym5q463 Industrial Research Institute of Shizuoka Prefecture é™å²”ēœŒå·„ę„­ęŠ€č”“ē ”ē©¶ę‰€'),
(49999, 'https://ror.org/05yp26r95', 'no_lang_code', 1, 'https://ror.org/05yp26r95 Kerecis (Iceland)'),
(50000, 'https://ror.org/05yps4z32', 'pt', 1, 'https://ror.org/05yps4z32 Inesc P&D Brasil'),
(50001, 'https://ror.org/0000v4966', 'en', 1, 'https://ror.org/0000v4966 Innovation Center Denmark'),
(50002, 'https://ror.org/00015af83', 'no_lang_code', 1, 'https://ror.org/00015af83 Mediolanum Farmaceutici (Italy)'),
(50003, 'https://ror.org/0001sz110', 'en', 1, 'https://ror.org/0001sz110 National Writing Project'),
(50004, 'https://ror.org/0005s7205', 'no_lang_code', 1, 'https://ror.org/0005s7205 Team Production (Denmark)'),
(50005, 'https://ror.org/0008sqa62', 'en', 1, 'https://ror.org/0008sqa62 Virginia Beach Public Library'),
(50006, 'https://ror.org/00093wj72', 'en', 1, 'https://ror.org/00093wj72 Dean Witter Foundation'),
(50007, 'https://ror.org/00099v123', 'no_lang_code', 1, 'https://ror.org/00099v123 CCL Industries (United States)'),
(50008, 'https://ror.org/0009v8r26', 'no_lang_code', 1, 'https://ror.org/0009v8r26 Inflamax Research (Canada)'),
(50009, 'https://ror.org/000d7gn07', 'en', 1, 'https://ror.org/000d7gn07 United Way of Spokane County'),
(50010, 'https://ror.org/000dkwx88', 'en', 1, 'https://ror.org/000dkwx88 British Society of Gerontology'),
(50011, 'https://ror.org/000fzkp10', 'no_lang_code', 1, 'https://ror.org/000fzkp10 Leavitt Partners (United States)'),
(50012, 'https://ror.org/000gayj94', 'en', 1, 'https://ror.org/000gayj94 Alaska Conservation Foundation'),
(50013, 'https://ror.org/000kq2q47', 'en', 1, 'https://ror.org/000kq2q47 John Tracy Clinic'),
(50014, 'https://ror.org/000m3hy37', 'no_lang_code', 1, 'https://ror.org/000m3hy37 Dr. August Wolff (Germany)'),
(50015, 'https://ror.org/000nb0t51', 'no_lang_code', 1, 'https://ror.org/000nb0t51 VaxTrac'),
(50016, 'https://ror.org/000nk9m43', 'no_lang_code', 1, 'https://ror.org/000nk9m43 Montavit (Austria)'),
(50017, 'https://ror.org/000qf7469', 'en', 1, 'https://ror.org/000qf7469 American Hungarian Foundation'),
(50018, 'https://ror.org/000qx0g86', 'en', 1, 'https://ror.org/000qx0g86 Psychiatric Medicine Associates'),
(50019, 'https://ror.org/000qysg46', 'en', 1, 'https://ror.org/000qysg46 Yinchuan First People''s Hospital é“¶å·ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(50020, 'https://ror.org/000r83295', 'en', 1, 'https://ror.org/000r83295 Family Allergy and Asthma Research Institute'),
(50021, 'https://ror.org/000sx5h02', 'en', 1, 'https://ror.org/000sx5h02 YES Prep Public Schools'),
(50022, 'https://ror.org/000tce348', 'en', 1, 'https://ror.org/000tce348 National Critical Care and Trauma Response Centre'),
(50023, 'https://ror.org/000tfh447', 'en', 1, 'https://ror.org/000tfh447 Dali Traditional Chinese Medicine Hospital å¤§ē†ē™½ę—č‡Ŗę²»å·žäø­åŒ»åŒ»é™¢'),
(50024, 'https://ror.org/000wnz761', 'en', 1, 'https://ror.org/000wnz761 Moscow Clinical Scientific Center Москва Центра клинических исслеГований'),
(50025, 'https://ror.org/000x1tr98', 'en', 1, 'https://ror.org/000x1tr98 Orlando Clinical Research Center'),
(50026, 'https://ror.org/000y6m766', 'en', 1, 'https://ror.org/000y6m766 European Society for Paediatric Endocrinology'),
(50027, 'https://ror.org/000ydq217', 'no_lang_code', 1, 'https://ror.org/000ydq217 Vectura (United Kingdom)'),
(50028, 'https://ror.org/00146wx41', 'no_lang_code', 1, 'https://ror.org/00146wx41 Japan Steel Works (Japan) ę Ŗå¼ä¼šē¤¾ę—„ęœ¬č£½é‹¼ę‰€'),
(50029, 'https://ror.org/0014n6t23', 'fr', 1, 'https://ror.org/0014n6t23 Centre Hospitalier de Roubaix, Hospital Center De Roubaix'),
(50030, 'https://ror.org/0017mh436', 'en', 1, 'https://ror.org/0017mh436 Pain Relief Foundation'),
(50031, 'https://ror.org/0018m2960', 'pt', 1, 'https://ror.org/0018m2960 Alergo Dermatologia Integrada'),
(50032, 'https://ror.org/0018xw886', 'it', 1, 'https://ror.org/0018xw886 Azienda Unita'' Sanitaria Locale Di Modena'),
(50033, 'https://ror.org/001crv456', 'nl', 1, 'https://ror.org/001crv456 Werkgroep Immunotherapie Nederland voor Oncologie'),
(50034, 'https://ror.org/001fpn257', 'en', 1, 'https://ror.org/001fpn257 Nineveh Charitable Trust'),
(50035, 'https://ror.org/001g1zs59', 'en', 1, 'https://ror.org/001g1zs59 Wuhan Dongxihu District People Hospital äøœč„æę¹–åŒŗäŗŗę°‘åŒ»é™¢'),
(50036, 'https://ror.org/001m1z350', 'en', 1, 'https://ror.org/001m1z350 Community Foundation of South Puget Sound'),
(50037, 'https://ror.org/001pmf274', 'no_lang_code', 1, 'https://ror.org/001pmf274 Sentinext Therapeutics (Malaysia)'),
(50038, 'https://ror.org/001q2kp78', 'en', 1, 'https://ror.org/001q2kp78 Orange Coast Memorial Medical Center'),
(50039, 'https://ror.org/001rkmw77', 'en', 1, 'https://ror.org/001rkmw77 Morgan Family Foundation'),
(50040, 'https://ror.org/001shd435', 'en', 1, 'https://ror.org/001shd435 Shuozhou Central Hospital ęœ”å·žäø­åæƒåŒ»é™¢'),
(50041, 'https://ror.org/001tx6p24', 'no_lang_code', 1, 'https://ror.org/001tx6p24 Wacom (Japan) ę Ŗå¼ä¼šē¤¾ćƒÆć‚³ćƒ '),
(50042, 'https://ror.org/001x5ea44', 'no_lang_code', 1, 'https://ror.org/001x5ea44 Halozyme Therapeutics (United States)'),
(50043, 'https://ror.org/001z8d956', 'en', 1, 'https://ror.org/001z8d956 Rocky Mountain PBS'),
(50044, 'https://ror.org/0020ts240', 'en', 1, 'https://ror.org/0020ts240 Coastal Carolina Research Center'),
(50045, 'https://ror.org/0021t7t04', 'en', 1, 'https://ror.org/0021t7t04 SeaView Research'),
(50046, 'https://ror.org/00222m642', 'no_lang_code', 1, 'https://ror.org/00222m642 Profile Pharma (United Kingdom)'),
(50047, 'https://ror.org/0023ccp69', 'no_lang_code', 1, 'https://ror.org/0023ccp69 Sintetica (Switzerland)'),
(50048, 'https://ror.org/002861396', 'en', 1, 'https://ror.org/002861396 Australian Prime Ministers Centre'),
(50049, 'https://ror.org/0029x1m59', 'no_lang_code', 1, 'https://ror.org/0029x1m59 Jegs (United States)'),
(50050, 'https://ror.org/002beej94', 'en', 1, 'https://ror.org/002beej94 Washington Health Foundation'),
(50051, 'https://ror.org/002chp112', 'de', 1, 'https://ror.org/002chp112 Stiftung Endoprothetik'),
(50052, 'https://ror.org/002h1n354', 'en', 1, 'https://ror.org/002h1n354 Partners HealthCare Connected Health'),
(50053, 'https://ror.org/002h3mc90', 'no_lang_code', 1, 'https://ror.org/002h3mc90 Ingredion (United States)'),
(50054, 'https://ror.org/002jn2544', 'en', 1, 'https://ror.org/002jn2544 Meadowlark Hills'),
(50055, 'https://ror.org/002kv3e70', 'en', 1, 'https://ror.org/002kv3e70 Douglas B. Marshall Jr. Family Foundation'),
(50056, 'https://ror.org/002m9xv20', 'en', 1, 'https://ror.org/002m9xv20 Educurious'),
(50057, 'https://ror.org/002nx7j40', 'en', 1, 'https://ror.org/002nx7j40 Lea''s Foundation for Leukemia Research'),
(50058, 'https://ror.org/002petj21', 'en', 1, 'https://ror.org/002petj21 Dan Jansen Foundation'),
(50059, 'https://ror.org/002qb7v30', 'en', 1, 'https://ror.org/002qb7v30 Citizen Schools'),
(50060, 'https://ror.org/002s05q87', 'en', 1, 'https://ror.org/002s05q87 Grekin Skin Institute'),
(50061, 'https://ror.org/002sqnt54', 'en', 1, 'https://ror.org/002sqnt54 Saint Joseph Medical Center Joliet'),
(50062, 'https://ror.org/002tmnt12', 'no_lang_code', 1, 'https://ror.org/002tmnt12 Thinkcerca.com (United States)'),
(50063, 'https://ror.org/002tpp543', 'en', 1, 'https://ror.org/002tpp543 Center for Clinical and Cosmetic Research'),
(50064, 'https://ror.org/002vm7324', 'no_lang_code', 1, 'https://ror.org/002vm7324 Cupron (United States)'),
(50065, 'https://ror.org/002yb3q28', 'da', 1, 'https://ror.org/002yb3q28 Moesgaard Museum'),
(50066, 'https://ror.org/00323r369', 'en', 1, 'https://ror.org/00323r369 Myocarditis Foundation'),
(50067, 'https://ror.org/0033hgk30', 'no_lang_code', 1, 'https://ror.org/0033hgk30 Oasmia Pharmaceutical (Sweden)'),
(50068, 'https://ror.org/0034wvw32', 'en', 1, 'https://ror.org/0034wvw32 Chesapeake Research Group'),
(50069, 'https://ror.org/0036cks17', 'no_lang_code', 1, 'https://ror.org/0036cks17 Kathrein (Germany)'),
(50070, 'https://ror.org/0036dh995', 'en', 1, 'https://ror.org/0036dh995 Brentwood Hospital'),
(50071, 'https://ror.org/003ajzy34', 'no_lang_code', 1, 'https://ror.org/003ajzy34 ERG Holding Company (United States)'),
(50072, 'https://ror.org/003atmt97', 'en', 1, 'https://ror.org/003atmt97 Marbrook Foundation'),
(50073, 'https://ror.org/003d0m863', 'no_lang_code', 1, 'https://ror.org/003d0m863 Stabilus (Germany)'),
(50074, 'https://ror.org/003dkgb76', 'en', 1, 'https://ror.org/003dkgb76 Kresge Eye Institute'),
(50075, 'https://ror.org/003dm8f88', 'no_lang_code', 1, 'https://ror.org/003dm8f88 Sensor Development Corporation (United States)'),
(50076, 'https://ror.org/003f4j224', 'en', 1, 'https://ror.org/003f4j224 Henderson Behavioral Health'),
(50077, 'https://ror.org/003fgkq55', 'en', 1, 'https://ror.org/003fgkq55 Quest Research Institute'),
(50078, 'https://ror.org/003g5qe79', 'no_lang_code', 1, 'https://ror.org/003g5qe79 Circassia Pharmaceuticals (United Kingdom)'),
(50079, 'https://ror.org/003h57f17', 'sv', 1, 'https://ror.org/003h57f17 Diabetesfonden'),
(50080, 'https://ror.org/003h6ex14', 'en', 1, 'https://ror.org/003h6ex14 Barra Foundation'),
(50081, 'https://ror.org/003jx1781', 'en', 1, 'https://ror.org/003jx1781 Oklahoma State University Medical Center'),
(50082, 'https://ror.org/003n19b22', 'en', 1, 'https://ror.org/003n19b22 International Society for Science and Religion'),
(50083, 'https://ror.org/003np7j89', 'en', 1, 'https://ror.org/003np7j89 American Medical Research'),
(50084, 'https://ror.org/003sq5971', 'en', 1, 'https://ror.org/003sq5971 Tacoma Housing Authority'),
(50085, 'https://ror.org/003thv661', 'en', 1, 'https://ror.org/003thv661 Jack Kent Cooke Foundation'),
(50086, 'https://ror.org/003za3q32', 'en', 1, 'https://ror.org/003za3q32 Vatican Observatory Foundation'),
(50087, 'https://ror.org/0040jv435', 'en', 1, 'https://ror.org/0040jv435 George A. and Eliza Gardner Howard Foundation'),
(50088, 'https://ror.org/0042h7v22', 'en', 1, 'https://ror.org/0042h7v22 California State Beekeepers Association'),
(50089, 'https://ror.org/0044d9958', 'no_lang_code', 1, 'https://ror.org/0044d9958 Tècniques de Gestió de la Informació'),
(50090, 'https://ror.org/004514720', 'en', 1, 'https://ror.org/004514720 World University Service of Canada'),
(50091, 'https://ror.org/0047hnk39', 'en', 1, 'https://ror.org/0047hnk39 Alfred Friendly Press Partners'),
(50092, 'https://ror.org/00496yk95', 'en', 1, 'https://ror.org/00496yk95 Atlanta Public Schools'),
(50093, 'https://ror.org/0049td969', 'en', 1, 'https://ror.org/0049td969 National Association for the Advancement of Colored People'),
(50094, 'https://ror.org/004ahbh03', 'en', 1, 'https://ror.org/004ahbh03 National Library of South Africa'),
(50095, 'https://ror.org/004aq9x60', 'no_lang_code', 1, 'https://ror.org/004aq9x60 Glycotope (Germany)'),
(50096, 'https://ror.org/004b7qy98', 'en', 1, 'https://ror.org/004b7qy98 Friends of the National Library of Medicine'),
(50097, 'https://ror.org/004ca1d83', 'en', 1, 'https://ror.org/004ca1d83 Access Behavioral Health'),
(50098, 'https://ror.org/004cdc714', 'en', 1, 'https://ror.org/004cdc714 Xian Central Hospital č„æå®‰åø‚äø­åæƒåŒ»é™¢'),
(50099, 'https://ror.org/004f2pf04', 'en', 1, 'https://ror.org/004f2pf04 California Retina Consultants'),
(50100, 'https://ror.org/004f9my84', 'en', 1, 'https://ror.org/004f9my84 European Peacebuilding Liaison Office'),
(50101, 'https://ror.org/004jq0d46', 'no', 1, 'https://ror.org/004jq0d46 Norsk Gastrointestinal Cancer Gruppe'),
(50102, 'https://ror.org/004n4vj97', 'en', 1, 'https://ror.org/004n4vj97 Northwest Medical Rehabilitation'),
(50103, 'https://ror.org/004nf4f47', 'en', 1, 'https://ror.org/004nf4f47 Georgia Budget & Policy Institute'),
(50104, 'https://ror.org/004p2dk70', 'es', 1, 'https://ror.org/004p2dk70 Instituto Tecnológico PET'),
(50105, 'https://ror.org/004p54v36', 'en', 1, 'https://ror.org/004p54v36 Jinzhou Central Hospital'),
(50106, 'https://ror.org/004p5vv59', 'en', 1, 'https://ror.org/004p5vv59 American Academy for Jewish Research'),
(50107, 'https://ror.org/004qa4525', 'en', 1, 'https://ror.org/004qa4525 Endocrinology Northwest'),
(50108, 'https://ror.org/004qka625', 'en', 1, 'https://ror.org/004qka625 Society for Research on Educational Effectiveness'),
(50109, 'https://ror.org/004rtk039', 'en', 1, 'https://ror.org/004rtk039 Japan Agency for Medical Research and Development ę—„ęœ¬åŒ»ē™‚ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(50110, 'https://ror.org/004sqrr27', 'en', 1, 'https://ror.org/004sqrr27 National Newspaper Publishers Association'),
(50111, 'https://ror.org/004v35q61', 'en', 1, 'https://ror.org/004v35q61 Nordic Society of Gynecologic Oncology'),
(50112, 'https://ror.org/004vnpm81', 'sv', 1, 'https://ror.org/004vnpm81 HƤssleholms Sjukhus'),
(50113, 'https://ror.org/004xcq641', 'en', 1, 'https://ror.org/004xcq641 Personal Enhancement Center'),
(50114, 'https://ror.org/004z1yb80', 'en', 1, 'https://ror.org/004z1yb80 Dishler Laser Institute'),
(50115, 'https://ror.org/0050qc271', 'no_lang_code', 1, 'https://ror.org/0050qc271 IAC Group (United States)'),
(50116, 'https://ror.org/0053w7h52', 'en', 1, 'https://ror.org/0053w7h52 Society of Gynaecology and Obstetrics of Nigeria'),
(50117, 'https://ror.org/0055m7z56', 'en', 1, 'https://ror.org/0055m7z56 Institute for Environmental Solutions Institūts Vides risinājumu'),
(50118, 'https://ror.org/0055r4662', 'en', 1, 'https://ror.org/0055r4662 Houston Foot and Ankle Care'),
(50119, 'https://ror.org/00575xh39', 'en', 1, 'https://ror.org/00575xh39 Charles and Lynn Schusterman Family Foundation'),
(50120, 'https://ror.org/0058p8h34', 'no_lang_code', 1, 'https://ror.org/0058p8h34 Korea Gas Corporation (South Korea)'),
(50121, 'https://ror.org/0058tc217', 'en', 1, 'https://ror.org/0058tc217 Eye Institute of West Florida'),
(50122, 'https://ror.org/005aqed95', 'en', 1, 'https://ror.org/005aqed95 DKT International'),
(50123, 'https://ror.org/005bs1v61', 'en', 1, 'https://ror.org/005bs1v61 Yukon Department of Education'),
(50124, 'https://ror.org/005cnxk39', 'no_lang_code', 1, 'https://ror.org/005cnxk39 AGA (Sweden)'),
(50125, 'https://ror.org/005cqv449', 'it', 1, 'https://ror.org/005cqv449 Associazione Bianca Garavaglia Onlus'),
(50126, 'https://ror.org/005f7f960', 'en', 1, 'https://ror.org/005f7f960 Chest Wall and Spine Deformity Research Foundation'),
(50127, 'https://ror.org/005fa0265', 'en', 1, 'https://ror.org/005fa0265 James Jones Literary Society'),
(50128, 'https://ror.org/005gf6j43', 'en', 1, 'https://ror.org/005gf6j43 Tanta University Hospital'),
(50129, 'https://ror.org/005hary16', 'en', 1, 'https://ror.org/005hary16 New India Foundation'),
(50130, 'https://ror.org/005js1714', 'en', 1, 'https://ror.org/005js1714 Archival Education and Research Institute'),
(50131, 'https://ror.org/005mj6e76', 'no_lang_code', 1, 'https://ror.org/005mj6e76 Autifony Therapeutics (United Kingdom)'),
(50132, 'https://ror.org/005nnp672', 'no_lang_code', 1, 'https://ror.org/005nnp672 Smith & Nephew (Germany)'),
(50133, 'https://ror.org/005p42z69', 'en', 1, 'https://ror.org/005p42z69 Panyu Hospital of Chinese Medicine ē•Ŗē¦ŗäø­åŒ»é™¢'),
(50134, 'https://ror.org/005pe6g50', 'en', 1, 'https://ror.org/005pe6g50 Phoenix Public Library'),
(50135, 'https://ror.org/005s1m246', 'en', 1, 'https://ror.org/005s1m246 Alfred Benzon Foundation'),
(50136, 'https://ror.org/005sbaa41', 'no_lang_code', 1, 'https://ror.org/005sbaa41 Align Technology (United States)'),
(50137, 'https://ror.org/005t7ny15', 'en', 1, 'https://ror.org/005t7ny15 Kiwanis Club of Rockford'),
(50138, 'https://ror.org/005vegy94', 'en', 1, 'https://ror.org/005vegy94 International Essential Tremor Foundation'),
(50139, 'https://ror.org/005vs4q67', 'en', 1, 'https://ror.org/005vs4q67 International Telecommunication Union Union Internationale des TƩlƩcommunications'),
(50140, 'https://ror.org/005xmvj53', 'en', 1, 'https://ror.org/005xmvj53 Rapid Medical Research'),
(50141, 'https://ror.org/005z6d626', 'en', 1, 'https://ror.org/005z6d626 Catalyst for Payment Reform'),
(50142, 'https://ror.org/00602dv83', 'en', 1, 'https://ror.org/00602dv83 AuDA Foundation'),
(50143, 'https://ror.org/0063dbm34', 'en', 1, 'https://ror.org/0063dbm34 Sheffield Children''s University'),
(50144, 'https://ror.org/00647p549', 'no_lang_code', 1, 'https://ror.org/00647p549 Reckitt Benckiser (Netherlands)'),
(50145, 'https://ror.org/0064m4q05', 'en', 1, 'https://ror.org/0064m4q05 Huntington''s Disease Society of America'),
(50146, 'https://ror.org/0065dxb90', 'en', 1, 'https://ror.org/0065dxb90 Fairfield Behavioral Health Services'),
(50147, 'https://ror.org/0065eer68', 'en', 1, 'https://ror.org/0065eer68 Municipal League Foundatio'),
(50148, 'https://ror.org/00662td74', 'no_lang_code', 1, 'https://ror.org/00662td74 Bruno Farmaceutici (Italy)'),
(50149, 'https://ror.org/0066y7e75', 'en', 1, 'https://ror.org/0066y7e75 Bay and Paul Foundations'),
(50150, 'https://ror.org/0066zj839', 'en', 1, 'https://ror.org/0066zj839 Tidewater Kidney Specialists'),
(50151, 'https://ror.org/00686cm81', 'no_lang_code', 1, 'https://ror.org/00686cm81 Eagle Industry (Japan) ć‚¤ćƒ¼ć‚°ćƒ«å·„ę„­'),
(50152, 'https://ror.org/0068vc522', 'en', 1, 'https://ror.org/0068vc522 Televisa Foundation'),
(50153, 'https://ror.org/00699y503', 'no_lang_code', 1, 'https://ror.org/00699y503 Infirst Healthcare (United Kingdom)'),
(50154, 'https://ror.org/006be7t88', 'pl', 1, 'https://ror.org/006be7t88 Centrum Kopernika Badań Interdyscyplinarnych'),
(50155, 'https://ror.org/006cf4249', 'no_lang_code', 1, 'https://ror.org/006cf4249 Grieshaber (Germany)'),
(50156, 'https://ror.org/006drmf77', 'en', 1, 'https://ror.org/006drmf77 Great Schools Partnership'),
(50157, 'https://ror.org/006enzj37', 'en', 1, 'https://ror.org/006enzj37 Finnish Diabetes Association Suomen Diabetesliitto'),
(50158, 'https://ror.org/006evjj22', 'en', 1, 'https://ror.org/006evjj22 Indian Rheumatology Association'),
(50159, 'https://ror.org/006fbpy17', 'no_lang_code', 1, 'https://ror.org/006fbpy17 Nexus (Italy)'),
(50160, 'https://ror.org/006fcvv63', 'en', 1, 'https://ror.org/006fcvv63 Montreal Economic Institute'),
(50161, 'https://ror.org/006fqar19', 'en', 1, 'https://ror.org/006fqar19 BrightSpark Foundation'),
(50162, 'https://ror.org/006hwbx79', 'no_lang_code', 1, 'https://ror.org/006hwbx79 Clariant (United Kingdom)'),
(50163, 'https://ror.org/006kypj04', 'en', 1, 'https://ror.org/006kypj04 Funeral Service Foundation'),
(50164, 'https://ror.org/006nbgx47', 'es', 1, 'https://ror.org/006nbgx47 Grup d''Investigació i Divulgació Oncológica'),
(50165, 'https://ror.org/006psag97', 'no_lang_code', 1, 'https://ror.org/006psag97 Onxeo (Denmark)'),
(50166, 'https://ror.org/006recc61', 'en', 1, 'https://ror.org/006recc61 British Herpetological Society'),
(50167, 'https://ror.org/006rga838', 'nl', 1, 'https://ror.org/006rga838 Koninklijke Nederlandse Maatschappij voor Diergeneeskunde'),
(50168, 'https://ror.org/006rnrs64', 'en', 1, 'https://ror.org/006rnrs64 Community Foundation of Northern Illinois'),
(50169, 'https://ror.org/006xpqa22', 'no_lang_code', 1, 'https://ror.org/006xpqa22 Noorik Biopharmaceuticals (Switzerland)'),
(50170, 'https://ror.org/006ymvg95', 'no_lang_code', 1, 'https://ror.org/006ymvg95 Wenzhou Hospital of Traditional Chinese Medicine ęø©å·žåø‚äø­åŒ»é™¢'),
(50171, 'https://ror.org/0072czt29', 'en', 1, 'https://ror.org/0072czt29 International Association for K-12 Online Learning'),
(50172, 'https://ror.org/0073n0s52', 'fr', 1, 'https://ror.org/0073n0s52 Amis de l''Institut Bordet'),
(50173, 'https://ror.org/00746dd63', 'en', 1, 'https://ror.org/00746dd63 North American Membrane Society'),
(50174, 'https://ror.org/007476v46', 'en', 1, 'https://ror.org/007476v46 Qualis Health'),
(50175, 'https://ror.org/0074nwx25', 'en', 1, 'https://ror.org/0074nwx25 Gruppo Oncologico dell''Italia Meridionale Oncology Group of Southern Italy'),
(50176, 'https://ror.org/0074y3h33', 'no_lang_code', 1, 'https://ror.org/0074y3h33 MetrioPharm (Germany)'),
(50177, 'https://ror.org/0075xfx31', 'en', 1, 'https://ror.org/0075xfx31 State Library of Iowa'),
(50178, 'https://ror.org/007bwhe79', 'en', 1, 'https://ror.org/007bwhe79 Institut für Kunst- und Musikhistorische Forschungen Institute of History of Art and Musicology'),
(50179, 'https://ror.org/007dajt61', 'en', 1, 'https://ror.org/007dajt61 Louis-Jeantet Foundation'),
(50180, 'https://ror.org/007e7q878', 'en', 1, 'https://ror.org/007e7q878 RK Evaluation and Strategies'),
(50181, 'https://ror.org/007k75451', 'no_lang_code', 1, 'https://ror.org/007k75451 Clinuvel Pharmaceuticals (Switzerland)'),
(50182, 'https://ror.org/007kc7128', 'en', 1, 'https://ror.org/007kc7128 Auction of Washington Wines'),
(50183, 'https://ror.org/007m1j423', 'en', 1, 'https://ror.org/007m1j423 Money, Crime, and Health Policy Initiative'),
(50184, 'https://ror.org/007mxym10', 'en', 1, 'https://ror.org/007mxym10 National Association of State Budget Officers'),
(50185, 'https://ror.org/007nj9n76', 'en', 1, 'https://ror.org/007nj9n76 BRAC USA'),
(50186, 'https://ror.org/007p8sj29', 'no_lang_code', 1, 'https://ror.org/007p8sj29 Mayoly Spindler (France)'),
(50187, 'https://ror.org/007pp1604', 'en', 1, 'https://ror.org/007pp1604 Harbin Clinic'),
(50188, 'https://ror.org/007q7fd56', 'en', 1, 'https://ror.org/007q7fd56 AADC Research Trust'),
(50189, 'https://ror.org/007qm1691', 'no_lang_code', 1, 'https://ror.org/007qm1691 Boston Scientific (Barbados)'),
(50190, 'https://ror.org/007r33g58', 'en', 1, 'https://ror.org/007r33g58 American Association of Zoo Veterinarians'),
(50191, 'https://ror.org/007r3zy44', 'nl', 1, 'https://ror.org/007r3zy44 Pancreatitis Werkgroep Nederland'),
(50192, 'https://ror.org/007vd5q36', 'no_lang_code', 1, 'https://ror.org/007vd5q36 TETEC Tissue Engineering Technologies (Germany)'),
(50193, 'https://ror.org/007vhjq80', 'en', 1, 'https://ror.org/007vhjq80 Maternal and Child Health Hospital of Xinjiang Uygur Autonomous Region ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗå¦‡å¹¼äæå„é™¢'),
(50194, 'https://ror.org/007vmjm88', 'no_lang_code', 1, 'https://ror.org/007vmjm88 Seoul Semiconductor (South Korea)');
INSERT INTO `rors` VALUES
(50195, 'https://ror.org/007w9h140', 'en', 1, 'https://ror.org/007w9h140 People ''s Liberation Army 451 Hospital 解放军451医院'),
(50196, 'https://ror.org/007y18z84', 'no_lang_code', 1, 'https://ror.org/007y18z84 BioMarin (Netherlands)'),
(50197, 'https://ror.org/007yvyg13', 'en', 1, 'https://ror.org/007yvyg13 Reproductive Science Center'),
(50198, 'https://ror.org/007ztdc30', 'de', 1, 'https://ror.org/007ztdc30 Schƶn Klinik Roseneck'),
(50199, 'https://ror.org/0082xft54', 'en', 1, 'https://ror.org/0082xft54 PDK International'),
(50200, 'https://ror.org/0083mb767', 'no_lang_code', 1, 'https://ror.org/0083mb767 Delenex (Switzerland)'),
(50201, 'https://ror.org/0084hyx75', 'en', 1, 'https://ror.org/0084hyx75 North Valley Eye Medical Group'),
(50202, 'https://ror.org/00865qa43', 'en', 1, 'https://ror.org/00865qa43 Jewish Healthcare Foundation'),
(50203, 'https://ror.org/00888a070', 'en', 1, 'https://ror.org/00888a070 Carolina Neurosurgery and Spine Associates'),
(50204, 'https://ror.org/0089j2p79', 'en', 1, 'https://ror.org/0089j2p79 Vance Thompson Vision'),
(50205, 'https://ror.org/008bb6z37', 'en', 1, 'https://ror.org/008bb6z37 Nizhny Novgorod Regional Clinical Oncology Center ŠŠøŠ¶Š½ŠøŠ¹ ŠŠ¾Š²Š³Š¾Ń€Š¾Š“ областной онкологический Гиспансер'),
(50206, 'https://ror.org/008bt9x41', 'no_lang_code', 1, 'https://ror.org/008bt9x41 Regenex Pharmaceuticals (China) å¹æå·žęœ—åœ£čÆäøšęœ‰é™å…¬åø ē‰ˆęƒę‰€ęœ‰'),
(50207, 'https://ror.org/008cjv429', 'en', 1, 'https://ror.org/008cjv429 Squaxin Island Tribe Museum Library and Research Center'),
(50208, 'https://ror.org/008e34j77', 'no_lang_code', 1, 'https://ror.org/008e34j77 NetHope'),
(50209, 'https://ror.org/008ebwt42', 'en', 1, 'https://ror.org/008ebwt42 American Vineyard Foundation'),
(50210, 'https://ror.org/008h32s22', 'en', 1, 'https://ror.org/008h32s22 Cosmopolitan International'),
(50211, 'https://ror.org/008hj7c61', 'no_lang_code', 1, 'https://ror.org/008hj7c61 Kayaba Industry (Japan) ć‚«ćƒ¤ćƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(50212, 'https://ror.org/008hvd197', 'da', 1, 'https://ror.org/008hvd197 Aage V. Jensens Fonde'),
(50213, 'https://ror.org/008qxfr30', 'no_lang_code', 1, 'https://ror.org/008qxfr30 Chervon (Hongkong)'),
(50214, 'https://ror.org/008rsmw46', 'en', 1, 'https://ror.org/008rsmw46 Lawson Foundation'),
(50215, 'https://ror.org/008s3gd19', 'en', 1, 'https://ror.org/008s3gd19 Childrens Liver Disease Foundation'),
(50216, 'https://ror.org/008t3fy21', 'en', 1, 'https://ror.org/008t3fy21 Fibrolamellar Cancer Foundation'),
(50217, 'https://ror.org/008vra347', 'de', 1, 'https://ror.org/008vra347 DIAKO'),
(50218, 'https://ror.org/008wd8726', 'en', 1, 'https://ror.org/008wd8726 Endowment for Health'),
(50219, 'https://ror.org/008wwms76', 'en', 1, 'https://ror.org/008wwms76 Friends United'),
(50220, 'https://ror.org/008x3rf43', 'en', 1, 'https://ror.org/008x3rf43 Raleigh Neurology Associates'),
(50221, 'https://ror.org/008xb1b94', 'de', 1, 'https://ror.org/008xb1b94 Elisabeth-Krankenhaus Essen'),
(50222, 'https://ror.org/008y09k71', 'en', 1, 'https://ror.org/008y09k71 Massachusetts Senior Care Foundation'),
(50223, 'https://ror.org/008y0j428', 'en', 1, 'https://ror.org/008y0j428 Three Bird Swan Consulting Group'),
(50224, 'https://ror.org/008yah456', 'no_lang_code', 1, 'https://ror.org/008yah456 TARH (Portugal) Terra, Ambiente e Recursos HĆ­dricos foi constituĆ­da'),
(50225, 'https://ror.org/0090hd978', 'en', 1, 'https://ror.org/0090hd978 American Academy of Sleep Medicine'),
(50226, 'https://ror.org/00910ay07', 'en', 1, 'https://ror.org/00910ay07 International Union of Biochemistry and Molecular Biology'),
(50227, 'https://ror.org/0091d4119', 'no_lang_code', 1, 'https://ror.org/0091d4119 Chemotecnica (Argentina)'),
(50228, 'https://ror.org/00939wg75', 'en', 1, 'https://ror.org/00939wg75 LIMR Chemical Genomics Center'),
(50229, 'https://ror.org/00982nx75', 'no_lang_code', 1, 'https://ror.org/00982nx75 Romark (United States)'),
(50230, 'https://ror.org/0098ca762', 'en', 1, 'https://ror.org/0098ca762 Bolyai Foundation'),
(50231, 'https://ror.org/009cpej84', 'en', 1, 'https://ror.org/009cpej84 Dallas Surgical Group'),
(50232, 'https://ror.org/009heah97', 'en', 1, 'https://ror.org/009heah97 Defense Human Resources Activity'),
(50233, 'https://ror.org/009j61e89', 'en', 1, 'https://ror.org/009j61e89 Foundation for Women’s Wellness'),
(50234, 'https://ror.org/009jvch84', 'en', 1, 'https://ror.org/009jvch84 Woburn & North Andover Pediatric Associates'),
(50235, 'https://ror.org/009nzt148', 'en', 1, 'https://ror.org/009nzt148 Marion Community Foundation'),
(50236, 'https://ror.org/009p3gr97', 'fr', 1, 'https://ror.org/009p3gr97 Clinique Paro Excellence'),
(50237, 'https://ror.org/009p94737', 'en', 1, 'https://ror.org/009p94737 Frank Hadley Ginn and Cornelia Root Ginn Charitable Trust'),
(50238, 'https://ror.org/009prea33', 'en', 1, 'https://ror.org/009prea33 Sterling Research Group'),
(50239, 'https://ror.org/009qarj13', 'en', 1, 'https://ror.org/009qarj13 Day1'),
(50240, 'https://ror.org/009rtx153', 'en', 1, 'https://ror.org/009rtx153 Danish Centre for Marine Research'),
(50241, 'https://ror.org/009svts64', 'en', 1, 'https://ror.org/009svts64 Azrieli Foundation'),
(50242, 'https://ror.org/009syct46', 'en', 1, 'https://ror.org/009syct46 Institut für Interdisziplinäre Gebirgsforschung Institute for Interdisciplinary Mountain Research'),
(50243, 'https://ror.org/009vxf979', 'en', 1, 'https://ror.org/009vxf979 China Foundation for Poverty Alleviation äø­å›½ę‰¶č“«åŸŗé‡‘ä¼š'),
(50244, 'https://ror.org/009w2dq98', 'en', 1, 'https://ror.org/009w2dq98 Urology of Virginia'),
(50245, 'https://ror.org/009w8mm15', 'fr', 1, 'https://ror.org/009w8mm15 Clinique Saint Pierre'),
(50246, 'https://ror.org/009ywjj88', 'en', 1, 'https://ror.org/009ywjj88 Clinical Research Institute'),
(50247, 'https://ror.org/009yyqs39', 'en', 1, 'https://ror.org/009yyqs39 Virginia Oncology Associates'),
(50248, 'https://ror.org/009za8t17', 'no_lang_code', 1, 'https://ror.org/009za8t17 Delta Faucet (United States)'),
(50249, 'https://ror.org/00a181f87', 'no_lang_code', 1, 'https://ror.org/00a181f87 Bluebird Bio (France)'),
(50250, 'https://ror.org/00a1cc659', 'de', 1, 'https://ror.org/00a1cc659 Asklepios Fachklinikum Brandenburg'),
(50251, 'https://ror.org/00a4k5f23', 'no_lang_code', 1, 'https://ror.org/00a4k5f23 hVIVO (United Kingdom)'),
(50252, 'https://ror.org/00a4nkb16', 'en', 1, 'https://ror.org/00a4nkb16 Kindred Hospital Rancho'),
(50253, 'https://ror.org/00a59ax11', 'da', 1, 'https://ror.org/00a59ax11 Arvid Nilssons Fond'),
(50254, 'https://ror.org/00a8d7d55', 'no_lang_code', 1, 'https://ror.org/00a8d7d55 Shield Therapeutics (Switzerland)'),
(50255, 'https://ror.org/00a933p49', 'en', 1, 'https://ror.org/00a933p49 Noyce Foundation'),
(50256, 'https://ror.org/00acq4045', 'no_lang_code', 1, 'https://ror.org/00acq4045 Norgine (Germany)'),
(50257, 'https://ror.org/00ae36v16', 'no_lang_code', 1, 'https://ror.org/00ae36v16 Genticel (France)'),
(50258, 'https://ror.org/00aestp76', 'en', 1, 'https://ror.org/00aestp76 Compass Research'),
(50259, 'https://ror.org/00ajqtx13', 'en', 1, 'https://ror.org/00ajqtx13 Margaret A. Cargill Philanthropies'),
(50260, 'https://ror.org/00amxre65', 'en', 1, 'https://ror.org/00amxre65 Edward E. Ford Foundation'),
(50261, 'https://ror.org/00apva622', 'no_lang_code', 1, 'https://ror.org/00apva622 Arno Therapeutics (United States)'),
(50262, 'https://ror.org/00aq1tf09', 'en', 1, 'https://ror.org/00aq1tf09 Albert G. and Olive H. Schlink Foundation'),
(50263, 'https://ror.org/00arbsy46', 'no_lang_code', 1, 'https://ror.org/00arbsy46 Reckitt Benckiser (Germany)'),
(50264, 'https://ror.org/00argmn34', 'en', 1, 'https://ror.org/00argmn34 California Education Partners'),
(50265, 'https://ror.org/00at2pp81', 'no_lang_code', 1, 'https://ror.org/00at2pp81 Gender Studies'),
(50266, 'https://ror.org/00atbfb07', 'en', 1, 'https://ror.org/00atbfb07 Perio Health Professionals'),
(50267, 'https://ror.org/00atq5220', 'no_lang_code', 1, 'https://ror.org/00atq5220 American Axle & Manufacturing (United States)'),
(50268, 'https://ror.org/00avbpp35', 'en', 1, 'https://ror.org/00avbpp35 San Fernando Valley Urological Associates'),
(50269, 'https://ror.org/00axr9h76', 'en', 1, 'https://ror.org/00axr9h76 Center for Public Justice'),
(50270, 'https://ror.org/00ay00v02', 'sv', 1, 'https://ror.org/00ay00v02 Petrus och Augusta Hedlunds Stiftelse'),
(50271, 'https://ror.org/00b2bst16', 'no_lang_code', 1, 'https://ror.org/00b2bst16 Adocia (France)'),
(50272, 'https://ror.org/00b2ft029', 'no_lang_code', 1, 'https://ror.org/00b2ft029 Rommelag (Switzerland)'),
(50273, 'https://ror.org/00b325j77', 'en', 1, 'https://ror.org/00b325j77 Character Counts Mid Shore'),
(50274, 'https://ror.org/00b46ya17', 'en', 1, 'https://ror.org/00b46ya17 Suncoast Clinical Research'),
(50275, 'https://ror.org/00b4wbs75', 'no_lang_code', 1, 'https://ror.org/00b4wbs75 Maruho (United Kingdom)'),
(50276, 'https://ror.org/00b66ah84', 'fr', 1, 'https://ror.org/00b66ah84 Centre Hospitalier de Redon'),
(50277, 'https://ror.org/00b75tt95', 'no_lang_code', 1, 'https://ror.org/00b75tt95 Roper Technologies (United States)'),
(50278, 'https://ror.org/00b9tqm17', 'en', 1, 'https://ror.org/00b9tqm17 Bryan Area Foundation'),
(50279, 'https://ror.org/00bam3792', 'en', 1, 'https://ror.org/00bam3792 Community-Minded Enterprises'),
(50280, 'https://ror.org/00baqjm67', 'en', 1, 'https://ror.org/00baqjm67 Foundation for End of Life Care'),
(50281, 'https://ror.org/00bb3dz25', 'en', 1, 'https://ror.org/00bb3dz25 Beveridge Family Foundation'),
(50282, 'https://ror.org/00bbk4z43', 'en', 1, 'https://ror.org/00bbk4z43 Second People ''s Hospital of Jinzhong ę™‹äø­åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(50283, 'https://ror.org/00bbs5d96', 'en', 1, 'https://ror.org/00bbs5d96 SightLife'),
(50284, 'https://ror.org/00bbs6n73', 'en', 1, 'https://ror.org/00bbs6n73 World Trade Club'),
(50285, 'https://ror.org/00bbwap73', 'en', 1, 'https://ror.org/00bbwap73 Smallholders Foundation'),
(50286, 'https://ror.org/00bf4k663', 'en', 1, 'https://ror.org/00bf4k663 World Cocoa Foundation'),
(50287, 'https://ror.org/00bgmja34', 'en', 1, 'https://ror.org/00bgmja34 Burke Pharmaceutical Research'),
(50288, 'https://ror.org/00bhn1w49', 'en', 1, 'https://ror.org/00bhn1w49 Institute for Humane Studies'),
(50289, 'https://ror.org/00bkazd74', 'en', 1, 'https://ror.org/00bkazd74 Michigan Center for Skin Care Research'),
(50290, 'https://ror.org/00bm25r07', 'en', 1, 'https://ror.org/00bm25r07 Clinical Physiology Associates'),
(50291, 'https://ror.org/00bqgv517', 'no_lang_code', 1, 'https://ror.org/00bqgv517 PregLem (Switzerland)'),
(50292, 'https://ror.org/00bs1j039', 'en', 1, 'https://ror.org/00bs1j039 Captain Planet Foundation'),
(50293, 'https://ror.org/00bsjtn43', 'en', 1, 'https://ror.org/00bsjtn43 Bioscience Research'),
(50294, 'https://ror.org/00bsqq263', 'no_lang_code', 1, 'https://ror.org/00bsqq263 AgBiome (United States)'),
(50295, 'https://ror.org/00bss3g65', 'no_lang_code', 1, 'https://ror.org/00bss3g65 Diurnal (United Kingdom)'),
(50296, 'https://ror.org/00btvqy64', 'no_lang_code', 1, 'https://ror.org/00btvqy64 Pohang Iron and Steel (South Korea) ķ¬ķ•­ģ¢…ķ•©ģ œģ²  ģ£¼ģ‹ķšŒģ‚¬'),
(50297, 'https://ror.org/00btywz65', 'no_lang_code', 1, 'https://ror.org/00btywz65 Kolon Industries (South Korea)'),
(50298, 'https://ror.org/00bvby867', 'en', 1, 'https://ror.org/00bvby867 East Valley Hematology & Oncology'),
(50299, 'https://ror.org/00bz0ap63', 'en', 1, 'https://ror.org/00bz0ap63 Kurosawa Hospital 黒澤病院'),
(50300, 'https://ror.org/00bzkg452', 'no_lang_code', 1, 'https://ror.org/00bzkg452 Savara (Denmark)'),
(50301, 'https://ror.org/00c1f7q63', 'en', 1, 'https://ror.org/00c1f7q63 Field Neurosciences Institute'),
(50302, 'https://ror.org/00c2b9157', 'en', 1, 'https://ror.org/00c2b9157 Otho S. A. Sprague Memorial Institute'),
(50303, 'https://ror.org/00c2wmm70', 'en', 1, 'https://ror.org/00c2wmm70 South Africa Development Fund'),
(50304, 'https://ror.org/00c3eq612', 'en', 1, 'https://ror.org/00c3eq612 Maryland Brain, Spine + Pain'),
(50305, 'https://ror.org/00c3pmw05', 'en', 1, 'https://ror.org/00c3pmw05 Advanced Pharma'),
(50306, 'https://ror.org/00c3qdc78', 'en', 1, 'https://ror.org/00c3qdc78 Marietta Community Foundation'),
(50307, 'https://ror.org/00c409n44', 'en', 1, 'https://ror.org/00c409n44 Community and Parents for Public Schools'),
(50308, 'https://ror.org/00c4hg173', 'en', 1, 'https://ror.org/00c4hg173 Business Roundtable'),
(50309, 'https://ror.org/00c4nt602', 'en', 1, 'https://ror.org/00c4nt602 Orthopedic Center'),
(50310, 'https://ror.org/00c4ykh56', 'fr', 1, 'https://ror.org/00c4ykh56 Fondation Denis Guichard'),
(50311, 'https://ror.org/00c4zcv51', 'no_lang_code', 1, 'https://ror.org/00c4zcv51 WiLAN (United States)'),
(50312, 'https://ror.org/00c9bhj04', 'en', 1, 'https://ror.org/00c9bhj04 Alborada Trust'),
(50313, 'https://ror.org/00ca6qk95', 'en', 1, 'https://ror.org/00ca6qk95 American Public Power Association'),
(50314, 'https://ror.org/00cfk7y53', 'it', 1, 'https://ror.org/00cfk7y53 Fondazione Cassa Di Risparmio Di Cento'),
(50315, 'https://ror.org/00cj4by30', 'en', 1, 'https://ror.org/00cj4by30 CIRI Foundation'),
(50316, 'https://ror.org/00cjay913', 'en', 1, 'https://ror.org/00cjay913 Dirk Nowitzki Foundation'),
(50317, 'https://ror.org/00ck87g56', 'en', 1, 'https://ror.org/00ck87g56 Norcliffe Foundation'),
(50318, 'https://ror.org/00ckatm30', 'en', 1, 'https://ror.org/00ckatm30 Black Sea Energy Cluster Š§Š•Š ŠŠžŠœŠžŠ Š”ŠšŠ˜ Š•ŠŠ•Š Š“Š˜Š•Š ŠšŠ›ŠŖŠ”Š¢Š•Š '),
(50319, 'https://ror.org/00cmdkk79', 'en', 1, 'https://ror.org/00cmdkk79 Private Sector Health Alliance of Nigeria'),
(50320, 'https://ror.org/00cn8g609', 'en', 1, 'https://ror.org/00cn8g609 Dedalus Foundation'),
(50321, 'https://ror.org/00cq73k33', 'en', 1, 'https://ror.org/00cq73k33 Buzau County Museum Muzeul Județean Buzău'),
(50322, 'https://ror.org/00cv4ff80', 'en', 1, 'https://ror.org/00cv4ff80 Mama Mare Breast Cancer Foundation'),
(50323, 'https://ror.org/00cwgs379', 'en', 1, 'https://ror.org/00cwgs379 United Way of the Columbia-Willamette'),
(50324, 'https://ror.org/00cy4ga64', 'en', 1, 'https://ror.org/00cy4ga64 Calvert K Collins Family Foundation'),
(50325, 'https://ror.org/00czwhy51', 'no_lang_code', 1, 'https://ror.org/00czwhy51 Immunocore (United States)'),
(50326, 'https://ror.org/00d07mn45', 'en', 1, 'https://ror.org/00d07mn45 National Alopecia Areata Foundation'),
(50327, 'https://ror.org/00d0kf681', 'en', 1, 'https://ror.org/00d0kf681 Serfenta Association'),
(50328, 'https://ror.org/00d2v8j14', 'ro', 1, 'https://ror.org/00d2v8j14 Spitalului Clinic de Urgență pentru Copii Maria Sklodowska Curie'),
(50329, 'https://ror.org/00d3w5v70', 'en', 1, 'https://ror.org/00d3w5v70 Prairie Education and Research Cooperative'),
(50330, 'https://ror.org/00d43qx15', 'en', 1, 'https://ror.org/00d43qx15 Roztoczański Park Narodowy Roztocze National Park'),
(50331, 'https://ror.org/00d4d4985', 'en', 1, 'https://ror.org/00d4d4985 Charles Edison Fund'),
(50332, 'https://ror.org/00d8znk88', 'no_lang_code', 1, 'https://ror.org/00d8znk88 Sun Chemical (United States)'),
(50333, 'https://ror.org/00dadc735', 'en', 1, 'https://ror.org/00dadc735 Clinical Research Consulting'),
(50334, 'https://ror.org/00daeq584', 'no_lang_code', 1, 'https://ror.org/00daeq584 Vifor Pharma (Germany)'),
(50335, 'https://ror.org/00daeq875', 'no_lang_code', 1, 'https://ror.org/00daeq875 LTS Lohmann Therapie-Systeme (Germany)'),
(50336, 'https://ror.org/00dbv2839', 'en', 1, 'https://ror.org/00dbv2839 Ophthalmology Consultants'),
(50337, 'https://ror.org/00dcbjx19', 'en', 1, 'https://ror.org/00dcbjx19 Mortimer Surgery'),
(50338, 'https://ror.org/00dd2yg30', 'en', 1, 'https://ror.org/00dd2yg30 Tower Urology Medical Group'),
(50339, 'https://ror.org/00ddfwx17', 'no_lang_code', 1, 'https://ror.org/00ddfwx17 BioVirtus (Poland)'),
(50340, 'https://ror.org/00ddrmz97', 'en', 1, 'https://ror.org/00ddrmz97 Olympic Educational Service District'),
(50341, 'https://ror.org/00deg7n09', 'fr', 1, 'https://ror.org/00deg7n09 Centre de RadiothƩrapie Bayard'),
(50342, 'https://ror.org/00dfm5737', 'en', 1, 'https://ror.org/00dfm5737 Apraxia KIDS'),
(50343, 'https://ror.org/00dfmn753', 'de', 1, 'https://ror.org/00dfmn753 Internationale Bodensee-Hochschule'),
(50344, 'https://ror.org/00dg01x60', 'en', 1, 'https://ror.org/00dg01x60 Junior Achievement of Delaware'),
(50345, 'https://ror.org/00dk21g34', 'en', 1, 'https://ror.org/00dk21g34 Media Trust'),
(50346, 'https://ror.org/00dm6q577', 'en', 1, 'https://ror.org/00dm6q577 Water & Sanitation for the Urban Poor'),
(50347, 'https://ror.org/00drb8647', 'en', 1, 'https://ror.org/00drb8647 Patel Hospital'),
(50348, 'https://ror.org/00drv2g38', 'no_lang_code', 1, 'https://ror.org/00drv2g38 Better People (United States)'),
(50349, 'https://ror.org/00dtg9r68', 'en', 1, 'https://ror.org/00dtg9r68 Financial Services Authority'),
(50350, 'https://ror.org/00dv4bv22', 'no_lang_code', 1, 'https://ror.org/00dv4bv22 Presurgy (Spain)'),
(50351, 'https://ror.org/00dw5zk55', 'en', 1, 'https://ror.org/00dw5zk55 Institut für Technikfolgen-Abschätzung Institute of Technology Assessment'),
(50352, 'https://ror.org/00dzzp321', 'it', 1, 'https://ror.org/00dzzp321 Gruppo Italiano di Oncologia Geriatrica'),
(50353, 'https://ror.org/00e03sj10', 'de', 1, 'https://ror.org/00e03sj10 Rheumazentrum Ruhrgebiet'),
(50354, 'https://ror.org/00e0qzz35', 'en', 1, 'https://ror.org/00e0qzz35 Dean Health Plan'),
(50355, 'https://ror.org/00e58tv26', 'no_lang_code', 1, 'https://ror.org/00e58tv26 Janicki Bioenergy (United States)'),
(50356, 'https://ror.org/00e65d634', 'no_lang_code', 1, 'https://ror.org/00e65d634 Roche (Belgium)'),
(50357, 'https://ror.org/00e6hp348', 'en', 1, 'https://ror.org/00e6hp348 Bailey Family Foundation'),
(50358, 'https://ror.org/00e82pm13', 'en', 1, 'https://ror.org/00e82pm13 Foundation for Angelman Syndrome Therapeutics'),
(50359, 'https://ror.org/00e8cky09', 'no_lang_code', 1, 'https://ror.org/00e8cky09 AC Immune (Switzerland)'),
(50360, 'https://ror.org/00e99dd12', 'en', 1, 'https://ror.org/00e99dd12 University Physicians Group'),
(50361, 'https://ror.org/00eah7161', 'en', 1, 'https://ror.org/00eah7161 Central Coast Nephrology'),
(50362, 'https://ror.org/00ecgnd18', 'en', 1, 'https://ror.org/00ecgnd18 Greater Kansas City Community Foundation'),
(50363, 'https://ror.org/00eeg9444', 'en', 1, 'https://ror.org/00eeg9444 Kenya Muslim Youth Alliance'),
(50364, 'https://ror.org/00eftnw67', 'no_lang_code', 1, 'https://ror.org/00eftnw67 Timex (United States)'),
(50365, 'https://ror.org/00eh6xk55', 'de', 1, 'https://ror.org/00eh6xk55 Klinikum Altenburger Land'),
(50366, 'https://ror.org/00ej3ta37', 'en', 1, 'https://ror.org/00ej3ta37 Columbia Orthopaedic Group'),
(50367, 'https://ror.org/00en8sz04', 'no_lang_code', 1, 'https://ror.org/00en8sz04 Vectura (Germany)'),
(50368, 'https://ror.org/00er4d216', 'en', 1, 'https://ror.org/00er4d216 Liuzhou General Hospital ęŸ³å·žåø‚äŗŗę°‘åŒ»é™¢'),
(50369, 'https://ror.org/00esqty25', 'en', 1, 'https://ror.org/00esqty25 Borean Innovation'),
(50370, 'https://ror.org/00et47318', 'en', 1, 'https://ror.org/00et47318 Clinical Research of South Florida'),
(50371, 'https://ror.org/00ev3n257', 'en', 1, 'https://ror.org/00ev3n257 Ohio Academy of Family Physicians'),
(50372, 'https://ror.org/00ey8bm24', 'en', 1, 'https://ror.org/00ey8bm24 Al-Saeed Foundation for Science and Culture Ł…Ų¤Ų³Ų³Ų© Ų§Ł„Ų³Ų¹ŁŠŲÆ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ©'),
(50373, 'https://ror.org/00ez4mt38', 'en', 1, 'https://ror.org/00ez4mt38 Central Ohio Radiation Oncology'),
(50374, 'https://ror.org/00f202q63', 'en', 1, 'https://ror.org/00f202q63 Philadelphia Foundation'),
(50375, 'https://ror.org/00f48mn63', 'en', 1, 'https://ror.org/00f48mn63 Heritage Fund'),
(50376, 'https://ror.org/00f5kpb16', 'no_lang_code', 1, 'https://ror.org/00f5kpb16 Oostrotex (Belgium)'),
(50377, 'https://ror.org/00f7cza09', 'en', 1, 'https://ror.org/00f7cza09 Clinical Investigation Specialists'),
(50378, 'https://ror.org/00f7nwk73', 'en', 1, 'https://ror.org/00f7nwk73 Hermansky Pudlak Syndrome Network'),
(50379, 'https://ror.org/00f9hhp33', 'en', 1, 'https://ror.org/00f9hhp33 Postsecondary National Policy Institute'),
(50380, 'https://ror.org/00fayv870', 'en', 1, 'https://ror.org/00fayv870 Carolina Women''s Research and Wellness Center'),
(50381, 'https://ror.org/00fbwv278', 'en', 1, 'https://ror.org/00fbwv278 Liuzhou Maternal and Child Health Hospital ęŸ³å·žåø‚å¦‡å¹¼äæå„é™¢'),
(50382, 'https://ror.org/00fff9d21', 'en', 1, 'https://ror.org/00fff9d21 Urology San Antonio'),
(50383, 'https://ror.org/00fg07796', 'en', 1, 'https://ror.org/00fg07796 Behavioral Medical Research'),
(50384, 'https://ror.org/00fhnng33', 'en', 1, 'https://ror.org/00fhnng33 Medical Society of the State of New York'),
(50385, 'https://ror.org/00fk7s812', 'en', 1, 'https://ror.org/00fk7s812 Wilton Park'),
(50386, 'https://ror.org/00fkys966', 'en', 1, 'https://ror.org/00fkys966 World Neighbors'),
(50387, 'https://ror.org/00fnw5m57', 'en', 1, 'https://ror.org/00fnw5m57 Anaheim Clinical Trials'),
(50388, 'https://ror.org/00fpb6b80', 'no_lang_code', 1, 'https://ror.org/00fpb6b80 Maple Syrup Urine Disease Family Support Group'),
(50389, 'https://ror.org/00fpmwa05', 'no_lang_code', 1, 'https://ror.org/00fpmwa05 VaxTrials (Panama)'),
(50390, 'https://ror.org/00ftqkj90', 'no_lang_code', 1, 'https://ror.org/00ftqkj90 COFRA (Switzerland)'),
(50391, 'https://ror.org/00fymps95', 'en', 1, 'https://ror.org/00fymps95 Saint Francis Hospital'),
(50392, 'https://ror.org/00fz5gq57', 'en', 1, 'https://ror.org/00fz5gq57 Georgia Clinical Research'),
(50393, 'https://ror.org/00fz6qg20', 'no_lang_code', 1, 'https://ror.org/00fz6qg20 HLL Lifecare (India)'),
(50394, 'https://ror.org/00g01fs73', 'de', 1, 'https://ror.org/00g01fs73 Ebnet Stiftung'),
(50395, 'https://ror.org/00g07kf08', 'en', 1, 'https://ror.org/00g07kf08 Seattle Education Access'),
(50396, 'https://ror.org/00g0x9d29', 'it', 1, 'https://ror.org/00g0x9d29 Ospedali Riuniti di Foggia'),
(50397, 'https://ror.org/00g156b94', 'en', 1, 'https://ror.org/00g156b94 Center for Theology and the Natural Sciences'),
(50398, 'https://ror.org/00g200v31', 'en', 1, 'https://ror.org/00g200v31 Brentwood Foundation'),
(50399, 'https://ror.org/00g2cf802', 'no_lang_code', 1, 'https://ror.org/00g2cf802 Melaka Manipal Medical College'),
(50400, 'https://ror.org/00g427679', 'en', 1, 'https://ror.org/00g427679 Richmond Vascular Center'),
(50401, 'https://ror.org/00g42k788', 'en', 1, 'https://ror.org/00g42k788 Blumenthal Foundation'),
(50402, 'https://ror.org/00g51ew42', 'no_lang_code', 1, 'https://ror.org/00g51ew42 Sanofi (Spain)'),
(50403, 'https://ror.org/00g5kqg81', 'en', 1, 'https://ror.org/00g5kqg81 Sickle Cell Cure Foundation'),
(50404, 'https://ror.org/00g652k45', 'en', 1, 'https://ror.org/00g652k45 Orthopaedic Associates of Michigan'),
(50405, 'https://ror.org/00g6mre77', 'en', 1, 'https://ror.org/00g6mre77 American Astronautical Society'),
(50406, 'https://ror.org/00g845z88', 'en', 1, 'https://ror.org/00g845z88 Parent Trust for Washington Children'),
(50407, 'https://ror.org/00g8q6r39', 'en', 1, 'https://ror.org/00g8q6r39 Herb Society of America'),
(50408, 'https://ror.org/00g9je304', 'no_lang_code', 1, 'https://ror.org/00g9je304 Apogenix (Germany)'),
(50409, 'https://ror.org/00gb2qm43', 'en', 1, 'https://ror.org/00gb2qm43 Andover Eye Associates'),
(50410, 'https://ror.org/00gdp2d15', 'no_lang_code', 1, 'https://ror.org/00gdp2d15 Eram Scientific Solutions (India)'),
(50411, 'https://ror.org/00geaen61', 'no_lang_code', 1, 'https://ror.org/00geaen61 Global Strategy Group'),
(50412, 'https://ror.org/00gf51y12', 'en', 1, 'https://ror.org/00gf51y12 Institut für Kulturgeschichte der Antike Institute for the Study of Ancient Culture'),
(50413, 'https://ror.org/00gknkr97', 'en', 1, 'https://ror.org/00gknkr97 Cullen Foundation'),
(50414, 'https://ror.org/00gpt9p27', 'en', 1, 'https://ror.org/00gpt9p27 Korea Institute of Sport Science ķ•œźµ­ģŠ¤ķ¬ģø ź°œė°œģ›'),
(50415, 'https://ror.org/00gqhzy82', 'en', 1, 'https://ror.org/00gqhzy82 Alphawood Foundation'),
(50416, 'https://ror.org/00gt7fk38', 'no_lang_code', 1, 'https://ror.org/00gt7fk38 Hunter Douglas (United States)'),
(50417, 'https://ror.org/00gxry525', 'en', 1, 'https://ror.org/00gxry525 Bolder Giving'),
(50418, 'https://ror.org/00gytj534', 'en', 1, 'https://ror.org/00gytj534 Arkansas Cardiology'),
(50419, 'https://ror.org/00gz3wv72', 'en', 1, 'https://ror.org/00gz3wv72 Eden Hall Foundation'),
(50420, 'https://ror.org/00h4cdy24', 'en', 1, 'https://ror.org/00h4cdy24 Heart Foundation'),
(50421, 'https://ror.org/00h4xd076', 'en', 1, 'https://ror.org/00h4xd076 Bogliasco Foundation'),
(50422, 'https://ror.org/00h4y2a67', 'en', 1, 'https://ror.org/00h4y2a67 White Ribbon Alliance'),
(50423, 'https://ror.org/00h5rtk23', 'en', 1, 'https://ror.org/00h5rtk23 Retina Associates of Kentucky'),
(50424, 'https://ror.org/00h656961', 'en', 1, 'https://ror.org/00h656961 Lyme Disease Association'),
(50425, 'https://ror.org/00h7ccj27', 'en', 1, 'https://ror.org/00h7ccj27 Agora Foundation'),
(50426, 'https://ror.org/00hgjqa61', 'en', 1, 'https://ror.org/00hgjqa61 Australian Orchid Foundation'),
(50427, 'https://ror.org/00hj21c17', 'en', 1, 'https://ror.org/00hj21c17 Pediatric Brain Tumor Consortium'),
(50428, 'https://ror.org/00hj7mt57', 'en', 1, 'https://ror.org/00hj7mt57 Migration Policy Institute'),
(50429, 'https://ror.org/00hm6j694', 'en', 1, 'https://ror.org/00hm6j694 Nova Scotia Research and Innovation Trust'),
(50430, 'https://ror.org/00hq18w20', 'en', 1, 'https://ror.org/00hq18w20 Coeur d Alene Arthritis Clinic'),
(50431, 'https://ror.org/00hrner53', 'fr', 1, 'https://ror.org/00hrner53 Le Petit Monde'),
(50432, 'https://ror.org/00hsyyp29', 'en', 1, 'https://ror.org/00hsyyp29 Battle Creek Community Foundation'),
(50433, 'https://ror.org/00ht04y43', 'no_lang_code', 1, 'https://ror.org/00ht04y43 Lanxess (United States)'),
(50434, 'https://ror.org/00hw04726', 'no_lang_code', 1, 'https://ror.org/00hw04726 International Council of Ophthalmology'),
(50435, 'https://ror.org/00hzbxp35', 'da', 1, 'https://ror.org/00hzbxp35 Marselisborgcentret'),
(50436, 'https://ror.org/00j0wh784', 'no_lang_code', 1, 'https://ror.org/00j0wh784 IPPMed (Germany) Institut für Pharmakologie und Präventive Medizin'),
(50437, 'https://ror.org/00j3qdn40', 'no_lang_code', 1, 'https://ror.org/00j3qdn40 SeqOmics Biotechnology (Hungary)'),
(50438, 'https://ror.org/00j68ke40', 'no_lang_code', 1, 'https://ror.org/00j68ke40 Kamenori Foundation ć‹ć‚ć®ć‚Šč²”å›£'),
(50439, 'https://ror.org/00j7nqv87', 'en', 1, 'https://ror.org/00j7nqv87 Parkinson Research Foundation'),
(50440, 'https://ror.org/00j82ct10', 'en', 1, 'https://ror.org/00j82ct10 Perspectives Charter School'),
(50441, 'https://ror.org/00jb20j87', 'en', 1, 'https://ror.org/00jb20j87 Impact Fund'),
(50442, 'https://ror.org/00jbrtf50', 'no_lang_code', 1, 'https://ror.org/00jbrtf50 Premise Data (United States)'),
(50443, 'https://ror.org/00jc5v027', 'en', 1, 'https://ror.org/00jc5v027 Research for Action'),
(50444, 'https://ror.org/00jfvgs31', 'en', 1, 'https://ror.org/00jfvgs31 Medical Center Ophthalmology Associates'),
(50445, 'https://ror.org/00jgjtc40', 'en', 1, 'https://ror.org/00jgjtc40 Capita Foundation'),
(50446, 'https://ror.org/00jhzb822', 'no_lang_code', 1, 'https://ror.org/00jhzb822 Acuitus (United States)'),
(50447, 'https://ror.org/00jjd3f53', 'no_lang_code', 1, 'https://ror.org/00jjd3f53 Comtech Telecommunications (United States)'),
(50448, 'https://ror.org/00jk42n91', 'en', 1, 'https://ror.org/00jk42n91 Kaibara Morikazu Medical Science Promotion Foundation ęµ·åŽŸē››å’ŒåŒ»å­¦ęŒÆčˆˆč²”å›£'),
(50449, 'https://ror.org/00jkq3860', 'en', 1, 'https://ror.org/00jkq3860 Jackson Foundation'),
(50450, 'https://ror.org/00jkvq232', 'en', 1, 'https://ror.org/00jkvq232 Jon Bon Jovi Soul Foundation'),
(50451, 'https://ror.org/00jkvrs61', 'en', 1, 'https://ror.org/00jkvrs61 American Orthopaedic Foot and Ankle Society'),
(50452, 'https://ror.org/00jnyfv56', 'en', 1, 'https://ror.org/00jnyfv56 American Association of Avian Pathologists'),
(50453, 'https://ror.org/00jprdp28', 'no_lang_code', 1, 'https://ror.org/00jprdp28 GfK (United States)'),
(50454, 'https://ror.org/00jq6bk95', 'en', 1, 'https://ror.org/00jq6bk95 Free To Breathe'),
(50455, 'https://ror.org/00jrs9d94', 'no_lang_code', 1, 'https://ror.org/00jrs9d94 Selskabet til Forskning i ArbejderbevƦgelsens Historie Sfah (Denmark)'),
(50456, 'https://ror.org/00jtd2k84', 'en', 1, 'https://ror.org/00jtd2k84 Central Texas Neurology Consultants'),
(50457, 'https://ror.org/00jtq6z81', 'fr', 1, 'https://ror.org/00jtq6z81 Hopitaux Civils de Colmar'),
(50458, 'https://ror.org/00jw0jd04', 'en', 1, 'https://ror.org/00jw0jd04 California Cancer Associates for Research and Excellence'),
(50459, 'https://ror.org/00jw6m528', 'en', 1, 'https://ror.org/00jw6m528 NALEO Educational Fund'),
(50460, 'https://ror.org/00jxjg186', 'ro', 1, 'https://ror.org/00jxjg186 Spitalul Clinic C.F. Iasi'),
(50461, 'https://ror.org/00jy1b467', 'en', 1, 'https://ror.org/00jy1b467 Busara Center for Behavioral Economics'),
(50462, 'https://ror.org/00jz5wn21', 'no_lang_code', 1, 'https://ror.org/00jz5wn21 Harras Pharma (Germany)'),
(50463, 'https://ror.org/00k39ax32', 'no_lang_code', 1, 'https://ror.org/00k39ax32 Ziopharm Oncology (United States)'),
(50464, 'https://ror.org/00k4jsr16', 'en', 1, 'https://ror.org/00k4jsr16 Australian Liver Foundation'),
(50465, 'https://ror.org/00k5pj069', 'es', 1, 'https://ror.org/00k5pj069 Hospital General Nuestra SeƱora del Prado'),
(50466, 'https://ror.org/00k81wv70', 'en', 1, 'https://ror.org/00k81wv70 International Society for Peritoneal Dialysis'),
(50467, 'https://ror.org/00k85q565', 'en', 1, 'https://ror.org/00k85q565 Mitte Foundation'),
(50468, 'https://ror.org/00k85zk31', 'en', 1, 'https://ror.org/00k85zk31 Clark and Watson Family Dental Practice'),
(50469, 'https://ror.org/00k9xmb90', 'no_lang_code', 1, 'https://ror.org/00k9xmb90 LearnZillion (United States)'),
(50470, 'https://ror.org/00ka90s24', 'en', 1, 'https://ror.org/00ka90s24 Death Valley Natural History Association'),
(50471, 'https://ror.org/00kan3777', 'en', 1, 'https://ror.org/00kan3777 Dutch Blood Transfusion Society Nederlandse Vereniging voor Bloedtransfusie'),
(50472, 'https://ror.org/00kaqnj29', 'da', 1, 'https://ror.org/00kaqnj29 Karen Elise Jensens Fond'),
(50473, 'https://ror.org/00kmgnh57', 'en', 1, 'https://ror.org/00kmgnh57 Australian Flora Foundation'),
(50474, 'https://ror.org/00kncat42', 'en', 1, 'https://ror.org/00kncat42 Grazute Regional Park'),
(50475, 'https://ror.org/00kpb0908', 'en', 1, 'https://ror.org/00kpb0908 Global Down Syndrome Foundation'),
(50476, 'https://ror.org/00ksjkj95', 'en', 1, 'https://ror.org/00ksjkj95 Osteosynthesis and Trauma Care Foundation'),
(50477, 'https://ror.org/00kt5rm23', 'no_lang_code', 1, 'https://ror.org/00kt5rm23 TC Biopharm (United Kingdom)'),
(50478, 'https://ror.org/00kty7w06', 'en', 1, 'https://ror.org/00kty7w06 National Housing Endowment'),
(50479, 'https://ror.org/00kvc5j94', 'en', 1, 'https://ror.org/00kvc5j94 Gulfcoast Clinical Research Center'),
(50480, 'https://ror.org/00kz26j88', 'de', 1, 'https://ror.org/00kz26j88 Praxiszentrum OrthopƤdie Unfallchirurgie Nordrhein'),
(50481, 'https://ror.org/00m06j627', 'en', 1, 'https://ror.org/00m06j627 Inlaks Shivdasani Foundation'),
(50482, 'https://ror.org/00m0ms985', 'en', 1, 'https://ror.org/00m0ms985 Rainier Clinical Research Center'),
(50483, 'https://ror.org/00m2e6n43', 'en', 1, 'https://ror.org/00m2e6n43 National Retail Federation'),
(50484, 'https://ror.org/00m3bfx83', 'hu', 1, 'https://ror.org/00m3bfx83 Pozitron-Diagnosztika Kft'),
(50485, 'https://ror.org/00m3qn560', 'en', 1, 'https://ror.org/00m3qn560 Harold Mitchell Foundation'),
(50486, 'https://ror.org/00m42nc03', 'no_lang_code', 1, 'https://ror.org/00m42nc03 Zelmic (Sweden)'),
(50487, 'https://ror.org/00m4t9795', 'en', 1, 'https://ror.org/00m4t9795 Hunter''s Hope Foundation'),
(50488, 'https://ror.org/00m61y124', 'en', 1, 'https://ror.org/00m61y124 International Waldenstrom''s Macroglobulinemia Foundation'),
(50489, 'https://ror.org/00m63h757', 'en', 1, 'https://ror.org/00m63h757 Parkinson''s Australia'),
(50490, 'https://ror.org/00m8atr56', 'en', 1, 'https://ror.org/00m8atr56 Canandaigua VA Medical Center'),
(50491, 'https://ror.org/00m8w3m39', 'no_lang_code', 1, 'https://ror.org/00m8w3m39 Pfizer (Germany)'),
(50492, 'https://ror.org/00maafh77', 'en', 1, 'https://ror.org/00maafh77 Texas Tribune'),
(50493, 'https://ror.org/00mb5nt47', 'en', 1, 'https://ror.org/00mb5nt47 Darrell Gwynn Foundation'),
(50494, 'https://ror.org/00mfkwp51', 'en', 1, 'https://ror.org/00mfkwp51 Manitoba Medical Service Foundation'),
(50495, 'https://ror.org/00mgk5c15', 'en', 1, 'https://ror.org/00mgk5c15 VentureWell'),
(50496, 'https://ror.org/00mjcdm77', 'en', 1, 'https://ror.org/00mjcdm77 Past Global Changes'),
(50497, 'https://ror.org/00mjj2d85', 'no_lang_code', 1, 'https://ror.org/00mjj2d85 Coherus BioSciences (United States)'),
(50498, 'https://ror.org/00mjpb940', 'en', 1, 'https://ror.org/00mjpb940 Lown Cardiovascular Group'),
(50499, 'https://ror.org/00mjrb616', 'no_lang_code', 1, 'https://ror.org/00mjrb616 Kostal (Germany)'),
(50500, 'https://ror.org/00mmhc695', 'en', 1, 'https://ror.org/00mmhc695 Leopold Schepp Foundation'),
(50501, 'https://ror.org/00mms0j12', 'en', 1, 'https://ror.org/00mms0j12 Alliance for Cancer Gene Therapy'),
(50502, 'https://ror.org/00mnrxf72', 'no_lang_code', 1, 'https://ror.org/00mnrxf72 Alibaba Group (Cayman Islands)'),
(50503, 'https://ror.org/00mpw9279', 'en', 1, 'https://ror.org/00mpw9279 Anxiety and Depression Association of America'),
(50504, 'https://ror.org/00mqhay86', 'en', 1, 'https://ror.org/00mqhay86 Yakima Valley Community Foundation'),
(50505, 'https://ror.org/00mr0nz89', 'en', 1, 'https://ror.org/00mr0nz89 North Valley Community Foundation'),
(50506, 'https://ror.org/00mra6j45', 'en', 1, 'https://ror.org/00mra6j45 MedaPhase'),
(50507, 'https://ror.org/00mrtvk90', 'en', 1, 'https://ror.org/00mrtvk90 John Merck Fund'),
(50508, 'https://ror.org/00msnjb96', 'no_lang_code', 1, 'https://ror.org/00msnjb96 Essa Pharma (United States)'),
(50509, 'https://ror.org/00mt5kz64', 'en', 1, 'https://ror.org/00mt5kz64 Accumed Research Associates'),
(50510, 'https://ror.org/00mxhk994', 'en', 1, 'https://ror.org/00mxhk994 Institute of the Republic of Slovenia for Nature Conservation Zavod republike Slovenije za varstvo narave'),
(50511, 'https://ror.org/00my48t58', 'fr', 1, 'https://ror.org/00my48t58 Fondation Marie et Alain Philippson'),
(50512, 'https://ror.org/00my66392', 'en', 1, 'https://ror.org/00my66392 Brookdale Foundation Group'),
(50513, 'https://ror.org/00mzdyq43', 'en', 1, 'https://ror.org/00mzdyq43 Zhejiang Provincial Hospital of TCM ęµ™ę±Ÿēœäø­åŒ»é™¢'),
(50514, 'https://ror.org/00mzhs720', 'en', 1, 'https://ror.org/00mzhs720 Big Picture Learning'),
(50515, 'https://ror.org/00mzpva76', 'no_lang_code', 1, 'https://ror.org/00mzpva76 PrEP Biopharm (United Kingdom)'),
(50516, 'https://ror.org/00n0zsa28', 'en', 1, 'https://ror.org/00n0zsa28 Institut für Europäisches Schadenersatzrecht Institute for European Tort Law'),
(50517, 'https://ror.org/00n1s5967', 'en', 1, 'https://ror.org/00n1s5967 Philadelphia Institute of Dermatology'),
(50518, 'https://ror.org/00n22rm50', 'no_lang_code', 1, 'https://ror.org/00n22rm50 United States Gypsum (United States)'),
(50519, 'https://ror.org/00n2q2t03', 'en', 1, 'https://ror.org/00n2q2t03 Jewish Women''s Foundation of New York'),
(50520, 'https://ror.org/00n478750', 'en', 1, 'https://ror.org/00n478750 New Hope Clinical Research'),
(50521, 'https://ror.org/00n562475', 'en', 1, 'https://ror.org/00n562475 Romanian Intelligence Service Serviciul RomĆ¢n de Informații'),
(50522, 'https://ror.org/00n5w1596', 'en', 1, 'https://ror.org/00n5w1596 People ''s Hospital of Jilin Province å‰ęž—ēœäŗŗę°‘åŒ»é™¢'),
(50523, 'https://ror.org/00n60x364', 'en', 1, 'https://ror.org/00n60x364 King Faisal Foundation'),
(50524, 'https://ror.org/00n6phm26', 'no_lang_code', 1, 'https://ror.org/00n6phm26 J C Bamford Excavators (United Kingdom)'),
(50525, 'https://ror.org/00n789a42', 'en', 1, 'https://ror.org/00n789a42 International Association for the Evaluation of Educational Achievement'),
(50526, 'https://ror.org/00n7ybs24', 'no_lang_code', 1, 'https://ror.org/00n7ybs24 LVMH (France)'),
(50527, 'https://ror.org/00n7z7b94', 'no_lang_code', 1, 'https://ror.org/00n7z7b94 KNG Health Consulting (United States)'),
(50528, 'https://ror.org/00n8szr38', 'en', 1, 'https://ror.org/00n8szr38 Mott Childrens Health Center'),
(50529, 'https://ror.org/00n9n8692', 'en', 1, 'https://ror.org/00n9n8692 Washington Global Health Alliance'),
(50530, 'https://ror.org/00n9y1b67', 'no_lang_code', 1, 'https://ror.org/00n9y1b67 Revalesio (United states)'),
(50531, 'https://ror.org/00nds2e18', 'en', 1, 'https://ror.org/00nds2e18 Indiana State University Foundation'),
(50532, 'https://ror.org/00ndtrg66', 'en', 1, 'https://ror.org/00ndtrg66 Chicago Society for Coatings Technology'),
(50533, 'https://ror.org/00ne52m93', 'en', 1, 'https://ror.org/00ne52m93 Bhare Foundation'),
(50534, 'https://ror.org/00nhrdk04', 'en', 1, 'https://ror.org/00nhrdk04 Lucas Research'),
(50535, 'https://ror.org/00nhwe772', 'en', 1, 'https://ror.org/00nhwe772 American Thyroid Association'),
(50536, 'https://ror.org/00nkfq279', 'en', 1, 'https://ror.org/00nkfq279 Greenwall Foundation'),
(50537, 'https://ror.org/00nm3xj95', 'en', 1, 'https://ror.org/00nm3xj95 Junior Achievement'),
(50538, 'https://ror.org/00np3zt84', 'en', 1, 'https://ror.org/00np3zt84 Tulalip Foundation'),
(50539, 'https://ror.org/00npama54', 'en', 1, 'https://ror.org/00npama54 Rabbit Free Australia'),
(50540, 'https://ror.org/00npcd820', 'en', 1, 'https://ror.org/00npcd820 Cosmos Club Foundation'),
(50541, 'https://ror.org/00nqjkj48', 'no_lang_code', 1, 'https://ror.org/00nqjkj48 NCR (United States)'),
(50542, 'https://ror.org/00nt3sg33', 'en', 1, 'https://ror.org/00nt3sg33 International Extranodal Lymphoma Study Group'),
(50543, 'https://ror.org/00nx3fr64', 'en', 1, 'https://ror.org/00nx3fr64 New Schools for New Orleans'),
(50544, 'https://ror.org/00nx5ke65', 'en', 1, 'https://ror.org/00nx5ke65 Edward Lowe Foundation'),
(50545, 'https://ror.org/00nx60023', 'en', 1, 'https://ror.org/00nx60023 Brooke Charter Schools'),
(50546, 'https://ror.org/00nx74059', 'en', 1, 'https://ror.org/00nx74059 Schools, Health & Libraries Broadband'),
(50547, 'https://ror.org/00nxf7t46', 'no_lang_code', 1, 'https://ror.org/00nxf7t46 Pulmagen Therapeutics (United Kingdom)'),
(50548, 'https://ror.org/00nxzrk14', 'no_lang_code', 1, 'https://ror.org/00nxzrk14 Debiopharm (Switzerland)'),
(50549, 'https://ror.org/00p37gt26', 'en', 1, 'https://ror.org/00p37gt26 China International Center for Economic and Technical Exchanges äø­å›½å›½é™…ē»ęµŽęŠ€ęœÆäŗ¤ęµäø­åæƒ'),
(50550, 'https://ror.org/00p3g3670', 'no_lang_code', 1, 'https://ror.org/00p3g3670 OSE Immunotherapeutics (France)'),
(50551, 'https://ror.org/00p52as68', 'en', 1, 'https://ror.org/00p52as68 Leapfrog Group'),
(50552, 'https://ror.org/00p52yk09', 'en', 1, 'https://ror.org/00p52yk09 Breast Cancer and Womens Health Institute'),
(50553, 'https://ror.org/00p8vgm81', 'es', 1, 'https://ror.org/00p8vgm81 Hospital Quirónsalud Sagrado Corazón'),
(50554, 'https://ror.org/00pdgpe23', 'en', 1, 'https://ror.org/00pdgpe23 Match Education'),
(50555, 'https://ror.org/00pdsc246', 'en', 1, 'https://ror.org/00pdsc246 Center for Autisme'),
(50556, 'https://ror.org/00pex3x41', 'no_lang_code', 1, 'https://ror.org/00pex3x41 Celanese (United States)'),
(50557, 'https://ror.org/00pgqb537', 'no_lang_code', 1, 'https://ror.org/00pgqb537 Sanofi (Netherlands)'),
(50558, 'https://ror.org/00pgxjc21', 'no_lang_code', 1, 'https://ror.org/00pgxjc21 Adenovir Pharma (Sweden)'),
(50559, 'https://ror.org/00phamx97', 'no_lang_code', 1, 'https://ror.org/00phamx97 Haber Dermatology and Cosmetic Surgery (United States)'),
(50560, 'https://ror.org/00pjapa16', 'en', 1, 'https://ror.org/00pjapa16 Greater Milwaukee Foundation'),
(50561, 'https://ror.org/00pjede26', 'de', 1, 'https://ror.org/00pjede26 Friede Springer Stiftung'),
(50562, 'https://ror.org/00pk4q491', 'en', 1, 'https://ror.org/00pk4q491 Prism Eye Institute'),
(50563, 'https://ror.org/00pkb6h65', 'en', 1, 'https://ror.org/00pkb6h65 Bath and North East Somerset Clinical Commissioning Group'),
(50564, 'https://ror.org/00pmgar68', 'en', 1, 'https://ror.org/00pmgar68 Sacco Eye Group'),
(50565, 'https://ror.org/00pn3e170', 'no_lang_code', 1, 'https://ror.org/00pn3e170 Galmed Pharmaceuticals (Israel)'),
(50566, 'https://ror.org/00pnhex46', 'en', 1, 'https://ror.org/00pnhex46 General Directorate for Environmental Protection Generalny Dyrektor Ochrony Środowiska'),
(50567, 'https://ror.org/00ps0j197', 'en', 1, 'https://ror.org/00ps0j197 Osteopathic Heritage Foundation'),
(50568, 'https://ror.org/00ptcn250', 'no_lang_code', 1, 'https://ror.org/00ptcn250 STV Production (Denmark)'),
(50569, 'https://ror.org/00ptj8t60', 'en', 1, 'https://ror.org/00ptj8t60 Provision Center for Proton Therapy'),
(50570, 'https://ror.org/00pw4ps28', 'en', 1, 'https://ror.org/00pw4ps28 Korea Foundation for International Healthcare'),
(50571, 'https://ror.org/00px51556', 'en', 1, 'https://ror.org/00px51556 Center for Aesthetic Dermatology & Laser Surgery'),
(50572, 'https://ror.org/00py0b751', 'en', 1, 'https://ror.org/00py0b751 Retina Specialists'),
(50573, 'https://ror.org/00pyc4352', 'it', 1, 'https://ror.org/00pyc4352 Associazione Nazionale Medici Cardiologi Ospedalieri'),
(50574, 'https://ror.org/00pzxxx15', 'en', 1, 'https://ror.org/00pzxxx15 India Diabetes Research Foundation'),
(50575, 'https://ror.org/00q0pf015', 'de', 1, 'https://ror.org/00q0pf015 Krankenhaus vom Roten Kreuz Red Cross Hospital'),
(50576, 'https://ror.org/00q2zja93', 'en', 1, 'https://ror.org/00q2zja93 United Heart and Vascular Clinic'),
(50577, 'https://ror.org/00q3tc787', 'en', 1, 'https://ror.org/00q3tc787 Sustainability Institute'),
(50578, 'https://ror.org/00q5r1k84', 'en', 1, 'https://ror.org/00q5r1k84 Learning Games Network'),
(50579, 'https://ror.org/00q5sq874', 'fr', 1, 'https://ror.org/00q5sq874 Centre de RƩadaptation Cardiaque Les Grands PrƩs'),
(50580, 'https://ror.org/00q8djh14', 'en', 1, 'https://ror.org/00q8djh14 Jewell Plastic Surgery Center'),
(50581, 'https://ror.org/00q8tg479', 'en', 1, 'https://ror.org/00q8tg479 Brainclinics'),
(50582, 'https://ror.org/00q9sa398', 'es', 1, 'https://ror.org/00q9sa398 Instituto Argentino de Diagnóstico y Tratamiento'),
(50583, 'https://ror.org/00qa1af27', 'en', 1, 'https://ror.org/00qa1af27 St. Bernard Parish School District'),
(50584, 'https://ror.org/00qb7b998', 'en', 1, 'https://ror.org/00qb7b998 Aesthetic Surgery Education and Research Foundation'),
(50585, 'https://ror.org/00qcb6787', 'en', 1, 'https://ror.org/00qcb6787 Cerebral Palsy Foundation'),
(50586, 'https://ror.org/00qcdw388', 'en', 1, 'https://ror.org/00qcdw388 International Foundation for Research in Experimental Economics'),
(50587, 'https://ror.org/00qcpjx94', 'no_lang_code', 1, 'https://ror.org/00qcpjx94 Green Cross (United States)'),
(50588, 'https://ror.org/00qd7n243', 'en', 1, 'https://ror.org/00qd7n243 Owensboro Dermatology Associates'),
(50589, 'https://ror.org/00qe9vp10', 'en', 1, 'https://ror.org/00qe9vp10 National Association of Television Program Executives Educational Foundation'),
(50590, 'https://ror.org/00qee0597', 'no_lang_code', 1, 'https://ror.org/00qee0597 Invacare (United States)'),
(50591, 'https://ror.org/00qep8v04', 'en', 1, 'https://ror.org/00qep8v04 Tavis Smiley Foundation'),
(50592, 'https://ror.org/00qesdp23', 'en', 1, 'https://ror.org/00qesdp23 Future Foundation'),
(50593, 'https://ror.org/00qfp3s59', 'no_lang_code', 1, 'https://ror.org/00qfp3s59 Happich (Germany)'),
(50594, 'https://ror.org/00qfsn733', 'en', 1, 'https://ror.org/00qfsn733 CurePSP'),
(50595, 'https://ror.org/00qftst12', 'en', 1, 'https://ror.org/00qftst12 Shenzhen Sixth People''s Hospital ę·±åœ³åø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(50596, 'https://ror.org/00qhfds50', 'no_lang_code', 1, 'https://ror.org/00qhfds50 SanPaTong Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąø±ąø™ąø›ą¹ˆąø²ąø•ąø­ąø‡'),
(50597, 'https://ror.org/00qhvya11', 'en', 1, 'https://ror.org/00qhvya11 Massage Therapy Foundation'),
(50598, 'https://ror.org/00qjn5x82', 'en', 1, 'https://ror.org/00qjn5x82 Institute for Excellence and Ethics'),
(50599, 'https://ror.org/00qjysb56', 'en', 1, 'https://ror.org/00qjysb56 RE Today Services'),
(50600, 'https://ror.org/00qk41v79', 'en', 1, 'https://ror.org/00qk41v79 Petroleum Conservation Research Association'),
(50601, 'https://ror.org/00qm2x081', 'en', 1, 'https://ror.org/00qm2x081 Preston Healthcare Consulting'),
(50602, 'https://ror.org/00qmxzb41', 'no_lang_code', 1, 'https://ror.org/00qmxzb41 Rehau (Germany)'),
(50603, 'https://ror.org/00qnrkz57', 'en', 1, 'https://ror.org/00qnrkz57 Alpine Clinical Research Center'),
(50604, 'https://ror.org/00qs4g887', 'en', 1, 'https://ror.org/00qs4g887 Library Network'),
(50605, 'https://ror.org/00qs7xz30', 'en', 1, 'https://ror.org/00qs7xz30 IGO Medical Group'),
(50606, 'https://ror.org/00qsa8295', 'en', 1, 'https://ror.org/00qsa8295 Truman Center for National Policy'),
(50607, 'https://ror.org/00qverm02', 'no_lang_code', 1, 'https://ror.org/00qverm02 Orphazyme (Denmark)'),
(50608, 'https://ror.org/00qyppx03', 'en', 1, 'https://ror.org/00qyppx03 World Affairs Council'),
(50609, 'https://ror.org/00qyrn735', 'en', 1, 'https://ror.org/00qyrn735 Diabetes Care and Research Foundation'),
(50610, 'https://ror.org/00r0rhj09', 'en', 1, 'https://ror.org/00r0rhj09 Southern Sports Leagues'),
(50611, 'https://ror.org/00r1ta077', 'en', 1, 'https://ror.org/00r1ta077 Housing Development Consortium'),
(50612, 'https://ror.org/00r34jt90', 'en', 1, 'https://ror.org/00r34jt90 Adam Taliaferro Foundation'),
(50613, 'https://ror.org/00r5xfb70', 'en', 1, 'https://ror.org/00r5xfb70 Appalachian Stewardship Foundation'),
(50614, 'https://ror.org/00r68rb43', 'no_lang_code', 1, 'https://ror.org/00r68rb43 ebm-papst'),
(50615, 'https://ror.org/00r91xh65', 'en', 1, 'https://ror.org/00r91xh65 Information and Communication Technology Agency'),
(50616, 'https://ror.org/00rcvgx40', 'en', 1, 'https://ror.org/00rcvgx40 Rutgers Sexual and Reproductive Health and Rights'),
(50617, 'https://ror.org/00rd36p16', 'no_lang_code', 1, 'https://ror.org/00rd36p16 Biogen (United Kingdom)'),
(50618, 'https://ror.org/00rdsnk65', 'en', 1, 'https://ror.org/00rdsnk65 Argosy Foundation'),
(50619, 'https://ror.org/00rgs1167', 'en', 1, 'https://ror.org/00rgs1167 Benjamin Franklin Tercentenary'),
(50620, 'https://ror.org/00rmtxk95', 'en', 1, 'https://ror.org/00rmtxk95 National Partnership for Women & Families'),
(50621, 'https://ror.org/00rncr141', 'en', 1, 'https://ror.org/00rncr141 Opportunity Institute'),
(50622, 'https://ror.org/00rp38085', 'no_lang_code', 1, 'https://ror.org/00rp38085 Continental Emitec (Germany)'),
(50623, 'https://ror.org/00rp4mp63', 'en', 1, 'https://ror.org/00rp4mp63 Chonburi Cancer Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąøŠąø„ąøšąøøąø£ąøµ'),
(50624, 'https://ror.org/00rs28409', 'en', 1, 'https://ror.org/00rs28409 Duke Endowment'),
(50625, 'https://ror.org/00rsvkm93', 'en', 1, 'https://ror.org/00rsvkm93 Dr. Scholl Foundation'),
(50626, 'https://ror.org/00rsvp932', 'en', 1, 'https://ror.org/00rsvp932 Health Tech Strategies'),
(50627, 'https://ror.org/00rye6n28', 'en', 1, 'https://ror.org/00rye6n28 ASIS Foundation'),
(50628, 'https://ror.org/00rz24q78', 'en', 1, 'https://ror.org/00rz24q78 British Mycological Society'),
(50629, 'https://ror.org/00s163867', 'en', 1, 'https://ror.org/00s163867 British Society for the Philosophy of Science'),
(50630, 'https://ror.org/00s1p1c80', 'no_lang_code', 1, 'https://ror.org/00s1p1c80 Verisfield (Greece)'),
(50631, 'https://ror.org/00s20y756', 'en', 1, 'https://ror.org/00s20y756 Jewish Family Service of Seattle'),
(50632, 'https://ror.org/00s22ed86', 'en', 1, 'https://ror.org/00s22ed86 American Society of Interior Designers Foundation'),
(50633, 'https://ror.org/00s28hv45', 'no_lang_code', 1, 'https://ror.org/00s28hv45 Acerde (France)'),
(50634, 'https://ror.org/00s2bzt61', 'en', 1, 'https://ror.org/00s2bzt61 Alpha Omega Foundation'),
(50635, 'https://ror.org/00s2t1783', 'en', 1, 'https://ror.org/00s2t1783 American Islamic Congress'),
(50636, 'https://ror.org/00s2xkh70', 'en', 1, 'https://ror.org/00s2xkh70 Peking University Stomatological Hospital'),
(50637, 'https://ror.org/00s37na25', 'it', 1, 'https://ror.org/00s37na25 Fondazione Carical - Cassa di Risparmio di Calabria e di Lucania'),
(50638, 'https://ror.org/00s3cdx23', 'en', 1, 'https://ror.org/00s3cdx23 James Pantyfedwen Foundation'),
(50639, 'https://ror.org/00s4b3898', 'no_lang_code', 1, 'https://ror.org/00s4b3898 TetraGenetics (United States)'),
(50640, 'https://ror.org/00s5mwe59', 'no_lang_code', 1, 'https://ror.org/00s5mwe59 Smetumet'),
(50641, 'https://ror.org/00s61s029', 'en', 1, 'https://ror.org/00s61s029 VA New England Healthcare System'),
(50642, 'https://ror.org/00s6tyh07', 'it', 1, 'https://ror.org/00s6tyh07 Fondazione Neureca Onlus'),
(50643, 'https://ror.org/00s784a62', 'no_lang_code', 1, 'https://ror.org/00s784a62 Acino International (Germany)'),
(50644, 'https://ror.org/00s7mhw17', 'pt', 1, 'https://ror.org/00s7mhw17 Hospital Leforte'),
(50645, 'https://ror.org/00s8fj384', 'en', 1, 'https://ror.org/00s8fj384 Life Quality Resources'),
(50646, 'https://ror.org/00s8ypq23', 'en', 1, 'https://ror.org/00s8ypq23 Nicholas and Elizabeth Slezak Super Center'),
(50647, 'https://ror.org/00s9d5e28', 'en', 1, 'https://ror.org/00s9d5e28 Global Alliance for Rabies Control'),
(50648, 'https://ror.org/00s9kz870', 'no_lang_code', 1, 'https://ror.org/00s9kz870 Versartis (United States)'),
(50649, 'https://ror.org/00sax7541', 'en', 1, 'https://ror.org/00sax7541 AO North America'),
(50650, 'https://ror.org/00sb42p15', 'en', 1, 'https://ror.org/00sb42p15 Western Health and Social Care Trust'),
(50651, 'https://ror.org/00sbgwz10', 'de', 1, 'https://ror.org/00sbgwz10 OPO-Stiftung'),
(50652, 'https://ror.org/00sby6b11', 'no_lang_code', 1, 'https://ror.org/00sby6b11 Oncocare (Switzerland)'),
(50653, 'https://ror.org/00scfzf83', 'es', 1, 'https://ror.org/00scfzf83 Hospital Universitario Dexeus'),
(50654, 'https://ror.org/00scrzf80', 'no_lang_code', 1, 'https://ror.org/00scrzf80 Kamada (Israel)'),
(50655, 'https://ror.org/00shmqe23', 'en', 1, 'https://ror.org/00shmqe23 Restless Development'),
(50656, 'https://ror.org/00sj6r545', 'en', 1, 'https://ror.org/00sj6r545 Health Services Research Association of Australia & New Zealand');
INSERT INTO `rors` VALUES
(50657, 'https://ror.org/00sjwg368', 'en', 1, 'https://ror.org/00sjwg368 PICO National Network'),
(50658, 'https://ror.org/00spg6x06', 'en', 1, 'https://ror.org/00spg6x06 Bharti Foundation'),
(50659, 'https://ror.org/00sq30w29', 'en', 1, 'https://ror.org/00sq30w29 Autism & Developmental Medicine Institute'),
(50660, 'https://ror.org/00ssgfx80', 'en', 1, 'https://ror.org/00ssgfx80 Autism Research Foundation'),
(50661, 'https://ror.org/00sv7ks13', 'no_lang_code', 1, 'https://ror.org/00sv7ks13 Unilabs (Norway)'),
(50662, 'https://ror.org/00swcah48', 'en', 1, 'https://ror.org/00swcah48 Gift of Hope Organ and Tissue Donor Network'),
(50663, 'https://ror.org/00swxwg31', 'es', 1, 'https://ror.org/00swxwg31 Hospital Laboral Solimat'),
(50664, 'https://ror.org/00sxgd769', 'en', 1, 'https://ror.org/00sxgd769 Hear and Say'),
(50665, 'https://ror.org/00sxheh72', 'it', 1, 'https://ror.org/00sxheh72 Consorzio Oncotech'),
(50666, 'https://ror.org/00t0abb25', 'en', 1, 'https://ror.org/00t0abb25 Orthopaedic Center of Vero Beach'),
(50667, 'https://ror.org/00t19cz85', 'no_lang_code', 1, 'https://ror.org/00t19cz85 NATSO'),
(50668, 'https://ror.org/00t1wrw35', 'no_lang_code', 1, 'https://ror.org/00t1wrw35 Danaher (Germany)'),
(50669, 'https://ror.org/00t2pza55', 'en', 1, 'https://ror.org/00t2pza55 Stuart C Dodd Institute for Social Innovation'),
(50670, 'https://ror.org/00t2vyc14', 'it', 1, 'https://ror.org/00t2vyc14 UniversitĆ  a Vicenza'),
(50671, 'https://ror.org/00t2yvm83', 'en', 1, 'https://ror.org/00t2yvm83 Hope Research Institute'),
(50672, 'https://ror.org/00t60x856', 'en', 1, 'https://ror.org/00t60x856 Minnesota Orthopedic Sports Medicine Institute'),
(50673, 'https://ror.org/00t6sz979', 'no_lang_code', 1, 'https://ror.org/00t6sz979 MedSIR (Spain)'),
(50674, 'https://ror.org/00tb8hf64', 'en', 1, 'https://ror.org/00tb8hf64 National Court Reporters Association'),
(50675, 'https://ror.org/00tbnyh02', 'en', 1, 'https://ror.org/00tbnyh02 Hermitage Medicentres'),
(50676, 'https://ror.org/00tbqb195', 'en', 1, 'https://ror.org/00tbqb195 Florida Immigrant Coalition'),
(50677, 'https://ror.org/00tc0tf65', 'en', 1, 'https://ror.org/00tc0tf65 Batten Disease Family Association'),
(50678, 'https://ror.org/00td0dz58', 'en', 1, 'https://ror.org/00td0dz58 Linnean Society of London'),
(50679, 'https://ror.org/00tdt9a76', 'no_lang_code', 1, 'https://ror.org/00tdt9a76 Vivus Heart Hospital'),
(50680, 'https://ror.org/00tf7ep30', 'en', 1, 'https://ror.org/00tf7ep30 March of Dimes Canada'),
(50681, 'https://ror.org/00thwk687', 'en', 1, 'https://ror.org/00thwk687 Western Research Institute'),
(50682, 'https://ror.org/00tjx8277', 'es', 1, 'https://ror.org/00tjx8277 Instituto de Investigaciones del SueƱo'),
(50683, 'https://ror.org/00tka3t28', 'no_lang_code', 1, 'https://ror.org/00tka3t28 ProDSP Technologies (Hungary)'),
(50684, 'https://ror.org/00tmwkm13', 'en', 1, 'https://ror.org/00tmwkm13 American Fibromyalgia Syndrome Association'),
(50685, 'https://ror.org/00tq5he37', 'en', 1, 'https://ror.org/00tq5he37 Building and Social Housing Foundation'),
(50686, 'https://ror.org/00tsrhc80', 'en', 1, 'https://ror.org/00tsrhc80 Belgian Society of Medical Oncology'),
(50687, 'https://ror.org/00ttbk338', 'en', 1, 'https://ror.org/00ttbk338 Brinson Foundation'),
(50688, 'https://ror.org/00tvbb869', 'en', 1, 'https://ror.org/00tvbb869 Episcopal Church Foundation'),
(50689, 'https://ror.org/00tw68s06', 'en', 1, 'https://ror.org/00tw68s06 Riverside County Office of Education'),
(50690, 'https://ror.org/00tx8br33', 'no_lang_code', 1, 'https://ror.org/00tx8br33 Sanofi (Finland)'),
(50691, 'https://ror.org/00txma197', 'no_lang_code', 1, 'https://ror.org/00txma197 Themis Bioscience (Austria)'),
(50692, 'https://ror.org/00txq6g47', 'en', 1, 'https://ror.org/00txq6g47 State Innovation Exchange'),
(50693, 'https://ror.org/00tz3zt92', 'en', 1, 'https://ror.org/00tz3zt92 Jiren Charity Foundation'),
(50694, 'https://ror.org/00tzd7r06', 'en', 1, 'https://ror.org/00tzd7r06 Lighthouse Guild'),
(50695, 'https://ror.org/00v0mde29', 'en', 1, 'https://ror.org/00v0mde29 British Microcirculation Society'),
(50696, 'https://ror.org/00v119x08', 'no_lang_code', 1, 'https://ror.org/00v119x08 StelaGenomics (United States)'),
(50697, 'https://ror.org/00v1e3m57', 'no_lang_code', 1, 'https://ror.org/00v1e3m57 Futaba clinic åŒč‘‰ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(50698, 'https://ror.org/00v3epe08', 'en', 1, 'https://ror.org/00v3epe08 Arizona Cotton Research and Protection Council'),
(50699, 'https://ror.org/00v5bx942', 'en', 1, 'https://ror.org/00v5bx942 Nahda College ŁƒŁ„ŁŠŲ© النهضة'),
(50700, 'https://ror.org/00v70n302', 'no_lang_code', 1, 'https://ror.org/00v70n302 Isofol (Sweden)'),
(50701, 'https://ror.org/00vba1e97', 'en', 1, 'https://ror.org/00vba1e97 Barker Welfare Foundation'),
(50702, 'https://ror.org/00vbtek25', 'no_lang_code', 1, 'https://ror.org/00vbtek25 scPharmaceuticals (United States)'),
(50703, 'https://ror.org/00veetk09', 'no_lang_code', 1, 'https://ror.org/00veetk09 R-Pharm (Russia)'),
(50704, 'https://ror.org/00vhctc31', 'fr', 1, 'https://ror.org/00vhctc31 Centre Hospitalier de VitrƩ'),
(50705, 'https://ror.org/00vj5dr06', 'en', 1, 'https://ror.org/00vj5dr06 Illinois Childrens Healthcare Foundation'),
(50706, 'https://ror.org/00vjrcd64', 'en', 1, 'https://ror.org/00vjrcd64 Public Utilities Office'),
(50707, 'https://ror.org/00vn5mx63', 'en', 1, 'https://ror.org/00vn5mx63 Parenting Matters Foundation'),
(50708, 'https://ror.org/00vne6e91', 'no_lang_code', 1, 'https://ror.org/00vne6e91 NuStats (United States)'),
(50709, 'https://ror.org/00vp43e16', 'en', 1, 'https://ror.org/00vp43e16 Therapeutics Clinical Research'),
(50710, 'https://ror.org/00vp48839', 'en', 1, 'https://ror.org/00vp48839 Harriet H. Samuelsson Foundation'),
(50711, 'https://ror.org/00vp6sp78', 'en', 1, 'https://ror.org/00vp6sp78 Anthony Rothe Memorial Trust'),
(50712, 'https://ror.org/00vr1yg49', 'en', 1, 'https://ror.org/00vr1yg49 Christian Family Service Centre'),
(50713, 'https://ror.org/00vsf1v04', 'en', 1, 'https://ror.org/00vsf1v04 McKnight Brain Research Foundation'),
(50714, 'https://ror.org/00vsgwy54', 'en', 1, 'https://ror.org/00vsgwy54 Delta Electronics Foundation'),
(50715, 'https://ror.org/00vt3q262', 'en', 1, 'https://ror.org/00vt3q262 Union Carnegie Library'),
(50716, 'https://ror.org/00vtz6t93', 'no_lang_code', 1, 'https://ror.org/00vtz6t93 Enviroinvest Environmental and Biotechnological Corp'),
(50717, 'https://ror.org/00vvx9s89', 'no_lang_code', 1, 'https://ror.org/00vvx9s89 Liminal BioSciences (United Kingdom)'),
(50718, 'https://ror.org/00vw9nm15', 'en', 1, 'https://ror.org/00vw9nm15 Koch Foundation'),
(50719, 'https://ror.org/00vx8b766', 'en', 1, 'https://ror.org/00vx8b766 Queens Medical Associates'),
(50720, 'https://ror.org/00vxeha61', 'en', 1, 'https://ror.org/00vxeha61 Harry Frank Guggenheim Foundation'),
(50721, 'https://ror.org/00vxrsr56', 'no_lang_code', 1, 'https://ror.org/00vxrsr56 Clinvest (United States)'),
(50722, 'https://ror.org/00vxscp81', 'de', 1, 'https://ror.org/00vxscp81 HOPE-Kapstadt-Stiftung'),
(50723, 'https://ror.org/00vzdn947', 'en', 1, 'https://ror.org/00vzdn947 Civic Builders'),
(50724, 'https://ror.org/00vzkm750', 'en', 1, 'https://ror.org/00vzkm750 Oregon Weight Loss Surgery'),
(50725, 'https://ror.org/00w035z87', 'en', 1, 'https://ror.org/00w035z87 Oregon State Library'),
(50726, 'https://ror.org/00w0xq836', 'en', 1, 'https://ror.org/00w0xq836 Bernard Osher Foundation'),
(50727, 'https://ror.org/00w17sc55', 'no_lang_code', 1, 'https://ror.org/00w17sc55 SOM Biotech (Spain)'),
(50728, 'https://ror.org/00w1gss13', 'no_lang_code', 1, 'https://ror.org/00w1gss13 Haier (United States)'),
(50729, 'https://ror.org/00w1mdq38', 'no_lang_code', 1, 'https://ror.org/00w1mdq38 VL-Medi Oy (Finland)'),
(50730, 'https://ror.org/00w1tz996', 'no_lang_code', 1, 'https://ror.org/00w1tz996 Apprise Bio (United States)'),
(50731, 'https://ror.org/00w3qd893', 'en', 1, 'https://ror.org/00w3qd893 Jessie Ball duPont Fund'),
(50732, 'https://ror.org/00w4ej470', 'en', 1, 'https://ror.org/00w4ej470 Japan Foundation Sydney'),
(50733, 'https://ror.org/00w4ztw65', 'en', 1, 'https://ror.org/00w4ztw65 New Haven Public Schools'),
(50734, 'https://ror.org/00w69q520', 'no_lang_code', 1, 'https://ror.org/00w69q520 KaVo Dental (Germany)'),
(50735, 'https://ror.org/00w6s5b11', 'de', 1, 'https://ror.org/00w6s5b11 Karl und Veronica Carstens-Stiftung'),
(50736, 'https://ror.org/00w877a33', 'en', 1, 'https://ror.org/00w877a33 Little Company of Mary Hospital'),
(50737, 'https://ror.org/00w9t4e98', 'no_lang_code', 1, 'https://ror.org/00w9t4e98 Elpen Pharmaceutical (Greece)'),
(50738, 'https://ror.org/00wc5ck66', 'en', 1, 'https://ror.org/00wc5ck66 Australian Society of Plant Scientists'),
(50739, 'https://ror.org/00wch0204', 'en', 1, 'https://ror.org/00wch0204 The Char and Chuck Fowler Family Foundation'),
(50740, 'https://ror.org/00wcrma30', 'en', 1, 'https://ror.org/00wcrma30 Capalaba Medical Centre'),
(50741, 'https://ror.org/00wct8y22', 'en', 1, 'https://ror.org/00wct8y22 Frank H and Eva B Buck Foundation'),
(50742, 'https://ror.org/00wdmd464', 'en', 1, 'https://ror.org/00wdmd464 Southwest Georgia Regional Educational Service Agency'),
(50743, 'https://ror.org/00weey343', 'sv', 1, 'https://ror.org/00weey343 Arvid Carlsson Fonden'),
(50744, 'https://ror.org/00wfjvd95', 'no_lang_code', 1, 'https://ror.org/00wfjvd95 Preh (Germany)'),
(50745, 'https://ror.org/00whc6223', 'en', 1, 'https://ror.org/00whc6223 Team Pennsylvania Foundation'),
(50746, 'https://ror.org/00wjmg834', 'no_lang_code', 1, 'https://ror.org/00wjmg834 Octapharma (United Kingdom)'),
(50747, 'https://ror.org/00wjx1428', 'no_lang_code', 1, 'https://ror.org/00wjx1428 Ambulance Care (Sweden) AmbulanssjukvƄrden i Storstockholm'),
(50748, 'https://ror.org/00wk91c97', 'en', 1, 'https://ror.org/00wk91c97 Cranberry Institute'),
(50749, 'https://ror.org/00wkx1h43', 'no_lang_code', 1, 'https://ror.org/00wkx1h43 Croma Pharma (Austria)'),
(50750, 'https://ror.org/00wkx7s25', 'it', 1, 'https://ror.org/00wkx7s25 Fondazione Ricerca Traslazionale'),
(50751, 'https://ror.org/00wpy1p28', 'es', 1, 'https://ror.org/00wpy1p28 Grupo Español de Investigación en Neurooncología'),
(50752, 'https://ror.org/00wq4bj48', 'en', 1, 'https://ror.org/00wq4bj48 successful practices network'),
(50753, 'https://ror.org/00wqe7q58', 'en', 1, 'https://ror.org/00wqe7q58 Palmetto Clinical Trial Services'),
(50754, 'https://ror.org/00wry3a77', 'en', 1, 'https://ror.org/00wry3a77 Physiotherapy New Zealand'),
(50755, 'https://ror.org/00wt4b458', 'en', 1, 'https://ror.org/00wt4b458 ImagineNations'),
(50756, 'https://ror.org/00wth1s13', 'no_lang_code', 1, 'https://ror.org/00wth1s13 Arcady Group (United States)'),
(50757, 'https://ror.org/00x01fm48', 'es', 1, 'https://ror.org/00x01fm48 Instituto de Radiomedicina'),
(50758, 'https://ror.org/00x2gme77', 'en', 1, 'https://ror.org/00x2gme77 1199SEIU Funds'),
(50759, 'https://ror.org/00x3xjq33', 'en', 1, 'https://ror.org/00x3xjq33 Mesa Fire and Medical Department'),
(50760, 'https://ror.org/00x62g077', 'en', 1, 'https://ror.org/00x62g077 Rodel Foundation of Delaware'),
(50761, 'https://ror.org/00x72gm71', 'fr', 1, 'https://ror.org/00x72gm71 MaternitƩ Port Royal'),
(50762, 'https://ror.org/00x8qhz86', 'en', 1, 'https://ror.org/00x8qhz86 Corina Higginson Trust'),
(50763, 'https://ror.org/00xabh388', 'en', 1, 'https://ror.org/00xabh388 Hubei Provincial Hospital of Traditional Chinese Medicine ę¹–åŒ—ēœäø­é†«é™¢'),
(50764, 'https://ror.org/00xax6856', 'en', 1, 'https://ror.org/00xax6856 Shanghai Changning Maternity and Infant Health Hospital äøŠęµ·é•æå®åŒŗå¦‡å¹¼äæå„é™¢'),
(50765, 'https://ror.org/00xbpvv44', 'es', 1, 'https://ror.org/00xbpvv44 Asociación para el Progreso de la Mujer en el Mundo Rural'),
(50766, 'https://ror.org/00xdn6374', 'en', 1, 'https://ror.org/00xdn6374 Arthur Vining Davis Foundations'),
(50767, 'https://ror.org/00xe15p12', 'en', 1, 'https://ror.org/00xe15p12 Emerald Cities Collaborative'),
(50768, 'https://ror.org/00xege567', 'en', 1, 'https://ror.org/00xege567 Amon G. Carter Foundation'),
(50769, 'https://ror.org/00xewv188', 'de', 1, 'https://ror.org/00xewv188 Dialysezentrum Potsdam'),
(50770, 'https://ror.org/00xfkcx46', 'no_lang_code', 1, 'https://ror.org/00xfkcx46 Ability Pharmaceuticals (Spain)'),
(50771, 'https://ror.org/00xgry947', 'no_lang_code', 1, 'https://ror.org/00xgry947 FinMark Trust'),
(50772, 'https://ror.org/00xn3j339', 'no_lang_code', 1, 'https://ror.org/00xn3j339 Masco (United States)'),
(50773, 'https://ror.org/00xnr4415', 'en', 1, 'https://ror.org/00xnr4415 British Society for Eighteenth-Century Studies'),
(50774, 'https://ror.org/00xny7d86', 'en', 1, 'https://ror.org/00xny7d86 Australian National Kennel Council'),
(50775, 'https://ror.org/00xp3qv26', 'en', 1, 'https://ror.org/00xp3qv26 Jordan Valley Dermatology'),
(50776, 'https://ror.org/00xpfw690', 'en', 1, 'https://ror.org/00xpfw690 Huaian First People’s Hospital ę·®å®‰åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(50777, 'https://ror.org/00xqbkk65', 'no_lang_code', 1, 'https://ror.org/00xqbkk65 AMT (United States)'),
(50778, 'https://ror.org/00xsach43', 'en', 1, 'https://ror.org/00xsach43 Samaritan Healthcare'),
(50779, 'https://ror.org/00xvwyc81', 'nl', 1, 'https://ror.org/00xvwyc81 Oranje Fonds'),
(50780, 'https://ror.org/00xxqd436', 'en', 1, 'https://ror.org/00xxqd436 Midwest Fertility Specialists'),
(50781, 'https://ror.org/00xysp757', 'no_lang_code', 1, 'https://ror.org/00xysp757 Yanmar (Japan) ćƒ¤ćƒ³ćƒžćƒ¼ę Ŗå¼ä¼šē¤¾'),
(50782, 'https://ror.org/00y105102', 'en', 1, 'https://ror.org/00y105102 John P. Murphy Foundation'),
(50783, 'https://ror.org/00y21a678', 'en', 1, 'https://ror.org/00y21a678 Metroplex Clinical Research Center'),
(50784, 'https://ror.org/00y30az25', 'en', 1, 'https://ror.org/00y30az25 Sparrow Health System'),
(50785, 'https://ror.org/00y6n9757', 'en', 1, 'https://ror.org/00y6n9757 Hematology Oncology Associates of Central New York'),
(50786, 'https://ror.org/00y7rmj88', 'en', 1, 'https://ror.org/00y7rmj88 Policy Cures'),
(50787, 'https://ror.org/00y7zxb51', 'en', 1, 'https://ror.org/00y7zxb51 Manna Research'),
(50788, 'https://ror.org/00ybf1536', 'en', 1, 'https://ror.org/00ybf1536 Camp Fire Inland Northwest'),
(50789, 'https://ror.org/00ycncb81', 'no_lang_code', 1, 'https://ror.org/00ycncb81 Takeda (Netherlands)'),
(50790, 'https://ror.org/00yd0be35', 'no_lang_code', 1, 'https://ror.org/00yd0be35 Frauenshuh Cancer Center'),
(50791, 'https://ror.org/00yfa2884', 'en', 1, 'https://ror.org/00yfa2884 Christopher D. Smithers Foundation'),
(50792, 'https://ror.org/00yfsan48', 'en', 1, 'https://ror.org/00yfsan48 Institute for Literature Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ за Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Š°'),
(50793, 'https://ror.org/00yfxzd27', 'en', 1, 'https://ror.org/00yfxzd27 Houston Area Urban League'),
(50794, 'https://ror.org/00yh95e48', 'no_lang_code', 1, 'https://ror.org/00yh95e48 Jefferson Education Accelerator (United States)'),
(50795, 'https://ror.org/00yjmmj69', 'en', 1, 'https://ror.org/00yjmmj69 Milbank Foundation'),
(50796, 'https://ror.org/00ykac431', 'en', 1, 'https://ror.org/00ykac431 Institute of Chemical Technology'),
(50797, 'https://ror.org/00ymd9k36', 'en', 1, 'https://ror.org/00ymd9k36 Third Affiliated Hospital of Inner Mongolia Medical College'),
(50798, 'https://ror.org/00yp23m74', 'en', 1, 'https://ror.org/00yp23m74 Centre for Budget and Governance Accountability'),
(50799, 'https://ror.org/00yqy0q42', 'en', 1, 'https://ror.org/00yqy0q42 Diagnostic Services Manitoba'),
(50800, 'https://ror.org/00yredq82', 'no_lang_code', 1, 'https://ror.org/00yredq82 AntibioTx (Denmark)'),
(50801, 'https://ror.org/00z165e40', 'no_lang_code', 1, 'https://ror.org/00z165e40 Alma Sana'),
(50802, 'https://ror.org/00z1emh11', 'en', 1, 'https://ror.org/00z1emh11 Suburban Psychiatric Associates'),
(50803, 'https://ror.org/00z1h3j87', 'no_lang_code', 1, 'https://ror.org/00z1h3j87 GlaxoSmithKline (France)'),
(50804, 'https://ror.org/00z2kr668', 'en', 1, 'https://ror.org/00z2kr668 British Association for Irish Studies'),
(50805, 'https://ror.org/00z517q71', 'en', 1, 'https://ror.org/00z517q71 Seattle Central College Foundation'),
(50806, 'https://ror.org/00z7r8y22', 'en', 1, 'https://ror.org/00z7r8y22 Ambulance Victoria'),
(50807, 'https://ror.org/00z8zhe66', 'en', 1, 'https://ror.org/00z8zhe66 Clinical Research Center for Hair and Skin Science'),
(50808, 'https://ror.org/00z9bse70', 'en', 1, 'https://ror.org/00z9bse70 Deaconess Clinic'),
(50809, 'https://ror.org/00zbvt830', 'no_lang_code', 1, 'https://ror.org/00zbvt830 FightSMA'),
(50810, 'https://ror.org/00ze01782', 'en', 1, 'https://ror.org/00ze01782 Denver Public Health'),
(50811, 'https://ror.org/00zh4qk67', 'es', 1, 'https://ror.org/00zh4qk67 Hospital Universitario de Santander'),
(50812, 'https://ror.org/00zhbtn94', 'en', 1, 'https://ror.org/00zhbtn94 Seton Education Partners'),
(50813, 'https://ror.org/00zj09521', 'en', 1, 'https://ror.org/00zj09521 E. Matilda Ziegler Foundation for the Blind'),
(50814, 'https://ror.org/00zkk0e65', 'en', 1, 'https://ror.org/00zkk0e65 Cushman Foundation for Foraminiferal Research'),
(50815, 'https://ror.org/00zn1ak77', 'ro', 1, 'https://ror.org/00zn1ak77 Spitalul Clinic CF Cluj-Napoca'),
(50816, 'https://ror.org/00zn76q59', 'en', 1, 'https://ror.org/00zn76q59 The Philanthropic Initiative'),
(50817, 'https://ror.org/00zpmdm60', 'en', 1, 'https://ror.org/00zpmdm60 American Otological Society'),
(50818, 'https://ror.org/00zq17y52', 'es', 1, 'https://ror.org/00zq17y52 Hospital Universitario del Tajo, Hospital del Tajo'),
(50819, 'https://ror.org/00zs5nz08', 'no_lang_code', 1, 'https://ror.org/00zs5nz08 Oras (Germany)'),
(50820, 'https://ror.org/00zv7v764', 'en', 1, 'https://ror.org/00zv7v764 Northern California Research'),
(50821, 'https://ror.org/00zxygw58', 'en', 1, 'https://ror.org/00zxygw58 National Foundation for Fertility Research'),
(50822, 'https://ror.org/00zz3cs83', 'no_lang_code', 1, 'https://ror.org/00zz3cs83 Momentive (United States)'),
(50823, 'https://ror.org/00zzrkp92', 'en', 1, 'https://ror.org/00zzrkp92 Central People''s Hospital of Zhanjiang ę¹›ę±Ÿäø­åæƒäŗŗę°‘åŒ»é™¢'),
(50824, 'https://ror.org/010201t38', 'en', 1, 'https://ror.org/010201t38 Harry W. Bass, Jr. Foundation'),
(50825, 'https://ror.org/0103q2z38', 'no_lang_code', 1, 'https://ror.org/0103q2z38 BioMarin (United Kingdom)'),
(50826, 'https://ror.org/0103zr797', 'en', 1, 'https://ror.org/0103zr797 Center for Educational Leadership and Technology'),
(50827, 'https://ror.org/0105knf85', 'en', 1, 'https://ror.org/0105knf85 Dart Foundation'),
(50828, 'https://ror.org/0106bmv40', 'no_lang_code', 1, 'https://ror.org/0106bmv40 Empros Pharma (Sweden)'),
(50829, 'https://ror.org/0106er609', 'en', 1, 'https://ror.org/0106er609 Brady Education Foundation'),
(50830, 'https://ror.org/0106twe82', 'en', 1, 'https://ror.org/0106twe82 Korean Society of Echocardiography ķ•œźµ­ģ‹¬ģ“ˆģŒķŒŒķ•™ķšŒ'),
(50831, 'https://ror.org/0106w8k14', 'en', 1, 'https://ror.org/0106w8k14 Amelia Peabody Charitable Fund'),
(50832, 'https://ror.org/0108v8438', 'no_lang_code', 1, 'https://ror.org/0108v8438 Santen (United States)'),
(50833, 'https://ror.org/0109e8m16', 'en', 1, 'https://ror.org/0109e8m16 Rainforest Alliance'),
(50834, 'https://ror.org/010a50125', 'en', 1, 'https://ror.org/010a50125 American Research Institute for Policy Development'),
(50835, 'https://ror.org/010ar1g07', 'en', 1, 'https://ror.org/010ar1g07 Museum of History Iskra Š˜ŃŃ‚Š¾Ń€ŠøŃ‡ŠµŃŠŗŠø музей Š˜ŃŠŗŃ€Š°'),
(50836, 'https://ror.org/010brsj79', 'en', 1, 'https://ror.org/010brsj79 Quantitative BioSciences'),
(50837, 'https://ror.org/010ern194', 'en', 1, 'https://ror.org/010ern194 Beijing Geriatric Hospital åŒ—äŗ¬č€å¹“åŒ»é™¢'),
(50838, 'https://ror.org/010fjvp93', 'no_lang_code', 1, 'https://ror.org/010fjvp93 Tenneco (United States)'),
(50839, 'https://ror.org/010g5w962', 'no_lang_code', 1, 'https://ror.org/010g5w962 Mitsubishi Paper Mills (Japan) äø‰č±č£½ē“™ę Ŗå¼ä¼šē¤¾'),
(50840, 'https://ror.org/010htkn64', 'en', 1, 'https://ror.org/010htkn64 Dermatology Institute of Victoria'),
(50841, 'https://ror.org/010k3rm26', 'en', 1, 'https://ror.org/010k3rm26 Global Social Observatory'),
(50842, 'https://ror.org/010kzff55', 'en', 1, 'https://ror.org/010kzff55 Edward F. Albee Foundation'),
(50843, 'https://ror.org/010m3p429', 'en', 1, 'https://ror.org/010m3p429 Colorado Health Foundation'),
(50844, 'https://ror.org/010rhqv43', 'en', 1, 'https://ror.org/010rhqv43 Albany House Medical Centre'),
(50845, 'https://ror.org/010t6g940', 'no_lang_code', 1, 'https://ror.org/010t6g940 Rosenberger (Germany)'),
(50846, 'https://ror.org/010taq202', 'en', 1, 'https://ror.org/010taq202 Cellmark Forensic Services'),
(50847, 'https://ror.org/010tbvz48', 'en', 1, 'https://ror.org/010tbvz48 Anandamahidol foundation'),
(50848, 'https://ror.org/010thjh79', 'no_lang_code', 1, 'https://ror.org/010thjh79 Bone Therapeutics'),
(50849, 'https://ror.org/010vz1m70', 'en', 1, 'https://ror.org/010vz1m70 Jiangning District of Nanjing Chinese Medicine Hospital ę±Ÿå®åŒŗäø­åŒ»é™¢'),
(50850, 'https://ror.org/010w8tb22', 'en', 1, 'https://ror.org/010w8tb22 Aims2Cure'),
(50851, 'https://ror.org/010xk1v64', 'de', 1, 'https://ror.org/010xk1v64 Klinik Schongau'),
(50852, 'https://ror.org/010yke988', 'en', 1, 'https://ror.org/010yke988 Parent Project Onlus'),
(50853, 'https://ror.org/010z5cj53', 'en', 1, 'https://ror.org/010z5cj53 ASHP Research and Education Foundation'),
(50854, 'https://ror.org/010z5qj64', 'en', 1, 'https://ror.org/010z5qj64 Virginia Spine Research Institute'),
(50855, 'https://ror.org/010zvgy46', 'en', 1, 'https://ror.org/010zvgy46 Encore'),
(50856, 'https://ror.org/011155x24', 'en', 1, 'https://ror.org/011155x24 Community Foundation of Greater Memphis'),
(50857, 'https://ror.org/0111f4y49', 'it', 1, 'https://ror.org/0111f4y49 Fondazione Pierfranco e Luisa Mariani'),
(50858, 'https://ror.org/0113y3s69', 'en', 1, 'https://ror.org/0113y3s69 Kitty M. Perkins Foundation'),
(50859, 'https://ror.org/0114d3n76', 'no_lang_code', 1, 'https://ror.org/0114d3n76 ImunomedicA (Czechia)'),
(50860, 'https://ror.org/0115kmj57', 'en', 1, 'https://ror.org/0115kmj57 Corrective Eye Center'),
(50861, 'https://ror.org/0116d7s79', 'no_lang_code', 1, 'https://ror.org/0116d7s79 Cyclacel Pharmaceuticals (United States)'),
(50862, 'https://ror.org/0116j4g69', 'da', 1, 'https://ror.org/0116j4g69 Det GrĆønlandske Selskab'),
(50863, 'https://ror.org/0117m7141', 'fr', 1, 'https://ror.org/0117m7141 Association France Ekbom'),
(50864, 'https://ror.org/011bbtj34', 'en', 1, 'https://ror.org/011bbtj34 Emergency University'),
(50865, 'https://ror.org/011bmks03', 'en', 1, 'https://ror.org/011bmks03 Community for Youth'),
(50866, 'https://ror.org/011bmz187', 'en', 1, 'https://ror.org/011bmz187 Prism Clinical Research'),
(50867, 'https://ror.org/011e1t803', 'en', 1, 'https://ror.org/011e1t803 Hartley Film Foundation'),
(50868, 'https://ror.org/011erhx85', 'en', 1, 'https://ror.org/011erhx85 Glaucoma Associates of New York'),
(50869, 'https://ror.org/011fhys37', 'no_lang_code', 1, 'https://ror.org/011fhys37 Claas (Germany)'),
(50870, 'https://ror.org/011ftwx20', 'en', 1, 'https://ror.org/011ftwx20 Adessium Foundation'),
(50871, 'https://ror.org/011gmw939', 'no_lang_code', 1, 'https://ror.org/011gmw939 Pharma Patent (Hungary)'),
(50872, 'https://ror.org/011gwd889', 'en', 1, 'https://ror.org/011gwd889 Tennessee Orthopaedic Alliance'),
(50873, 'https://ror.org/011jgpb07', 'fr', 1, 'https://ror.org/011jgpb07 Centre Hospitalier de Bretagne Sud'),
(50874, 'https://ror.org/011kr2t58', 'en', 1, 'https://ror.org/011kr2t58 Department of Housing and Community Development'),
(50875, 'https://ror.org/011nx7d79', 'en', 1, 'https://ror.org/011nx7d79 Ruth M. Rothstein CORE Center'),
(50876, 'https://ror.org/011nxrw51', 'no_lang_code', 1, 'https://ror.org/011nxrw51 Marquardt (Germany)'),
(50877, 'https://ror.org/011pcrd91', 'no_lang_code', 1, 'https://ror.org/011pcrd91 PARI (Germany)'),
(50878, 'https://ror.org/011pq1q02', 'no_lang_code', 1, 'https://ror.org/011pq1q02 Greenwald & Associates (United States)'),
(50879, 'https://ror.org/011ptxp32', 'en', 1, 'https://ror.org/011ptxp32 Donald W. Reynolds Foundation'),
(50880, 'https://ror.org/011r26y04', 'en', 1, 'https://ror.org/011r26y04 Polish Dance Theatre Polski Teatr Tańca'),
(50881, 'https://ror.org/011s5bv71', 'en', 1, 'https://ror.org/011s5bv71 Aerosan'),
(50882, 'https://ror.org/011t5nk62', 'en', 1, 'https://ror.org/011t5nk62 American Pharmacists Association Foundation'),
(50883, 'https://ror.org/011v1tv66', 'no_lang_code', 1, 'https://ror.org/011v1tv66 Serumwerk Bernburg (Germany)'),
(50884, 'https://ror.org/011w2bv40', 'en', 1, 'https://ror.org/011w2bv40 Museum of Flight'),
(50885, 'https://ror.org/011w7ja64', 'en', 1, 'https://ror.org/011w7ja64 Piedmont Cancer Institute'),
(50886, 'https://ror.org/011xj1a65', 'en', 1, 'https://ror.org/011xj1a65 Achelis and Bodman Foundation'),
(50887, 'https://ror.org/011z3ff80', 'en', 1, 'https://ror.org/011z3ff80 Ministero dello Sviluppo Economico Ministry of Economic Development'),
(50888, 'https://ror.org/01239b432', 'es', 1, 'https://ror.org/01239b432 Consorci Sanitari de Terrassa'),
(50889, 'https://ror.org/01243va86', 'en', 1, 'https://ror.org/01243va86 Moritani Scholarship Foundation čˆ¬č²”å›£ę³•äŗŗ å®ˆč°·č‚²č‹±ä¼š'),
(50890, 'https://ror.org/0124s1j61', 'de', 1, 'https://ror.org/0124s1j61 Evangelisches Krankenhaus Kalk'),
(50891, 'https://ror.org/0125syc65', 'en', 1, 'https://ror.org/0125syc65 International Union of Basic and Clinical Pharmacology'),
(50892, 'https://ror.org/0126fd303', 'en', 1, 'https://ror.org/0126fd303 Midwest Therapeutic Endoscopy'),
(50893, 'https://ror.org/0129d8h54', 'en', 1, 'https://ror.org/0129d8h54 Ear Consultants of Georgia'),
(50894, 'https://ror.org/012a8y118', 'no_lang_code', 1, 'https://ror.org/012a8y118 Cloud Tiger Media (United States)'),
(50895, 'https://ror.org/012cc0c94', 'no_lang_code', 1, 'https://ror.org/012cc0c94 Core Competence'),
(50896, 'https://ror.org/012cyrk91', 'en', 1, 'https://ror.org/012cyrk91 Michigan CardioVascular Institute'),
(50897, 'https://ror.org/012ddpd05', 'no_lang_code', 1, 'https://ror.org/012ddpd05 Givaudan (Switzerland)'),
(50898, 'https://ror.org/012ebbs45', 'en', 1, 'https://ror.org/012ebbs45 Marion E. Kenworthy-Sarah H. Swift Foundation'),
(50899, 'https://ror.org/012fxzb58', 'en', 1, 'https://ror.org/012fxzb58 Regional History Museum Gabrovo Регионален исторически музей, Габрово'),
(50900, 'https://ror.org/012h3vy49', 'no_lang_code', 1, 'https://ror.org/012h3vy49 Viking Therapeutics (United States)'),
(50901, 'https://ror.org/012jedj89', 'no_lang_code', 1, 'https://ror.org/012jedj89 African Water Association'),
(50902, 'https://ror.org/012jvtn24', 'no_lang_code', 1, 'https://ror.org/012jvtn24 E Ink (United States)'),
(50903, 'https://ror.org/012jwf593', 'en', 1, 'https://ror.org/012jwf593 Catalyst Foundation'),
(50904, 'https://ror.org/012kq8z96', 'en', 1, 'https://ror.org/012kq8z96 Windsor Clinical Research'),
(50905, 'https://ror.org/012nyn049', 'en', 1, 'https://ror.org/012nyn049 Duluth Superior Area Community Foundation'),
(50906, 'https://ror.org/012rw7q64', 'no_lang_code', 1, 'https://ror.org/012rw7q64 Bioinova (Czechia)'),
(50907, 'https://ror.org/012sh1702', 'en', 1, 'https://ror.org/012sh1702 Danish Ministry of Climate, Energy and Utilities Energi-, Forsynings- og Klimaministeriet'),
(50908, 'https://ror.org/012v13k49', 'en', 1, 'https://ror.org/012v13k49 International Cancer Imaging Society'),
(50909, 'https://ror.org/012y0vf21', 'en', 1, 'https://ror.org/012y0vf21 Fidelity Foundation'),
(50910, 'https://ror.org/012z5s763', 'ca', 1, 'https://ror.org/012z5s763 Pius Hospital de Valls'),
(50911, 'https://ror.org/0130ebz28', 'no_lang_code', 1, 'https://ror.org/0130ebz28 Repha (Germany)'),
(50912, 'https://ror.org/0130y5530', 'en', 1, 'https://ror.org/0130y5530 Nonprofit Quarterly'),
(50913, 'https://ror.org/01320a653', 'en', 1, 'https://ror.org/01320a653 Lucy Daniels Foundation'),
(50914, 'https://ror.org/0134cxd58', 'no_lang_code', 1, 'https://ror.org/0134cxd58 Temptime (United States)'),
(50915, 'https://ror.org/013ambk20', 'no_lang_code', 1, 'https://ror.org/013ambk20 Apogepha Arzneimittel (Germany)'),
(50916, 'https://ror.org/013b0rk29', 'no_lang_code', 1, 'https://ror.org/013b0rk29 American Standard (United States)'),
(50917, 'https://ror.org/013bnca37', 'da', 1, 'https://ror.org/013bnca37 Kirsten og Freddy Johansens Fond'),
(50918, 'https://ror.org/013d6jy96', 'en', 1, 'https://ror.org/013d6jy96 Buhl Foundation'),
(50919, 'https://ror.org/013dfdf36', 'de', 1, 'https://ror.org/013dfdf36 Carl Friedrich von Siemens Stiftung'),
(50920, 'https://ror.org/013eqx116', 'en', 1, 'https://ror.org/013eqx116 School for Ethical Education'),
(50921, 'https://ror.org/013h8cr97', 'en', 1, 'https://ror.org/013h8cr97 Haemophilia Foundation Australia'),
(50922, 'https://ror.org/013k6aa84', 'en', 1, 'https://ror.org/013k6aa84 Innovative Research of West Florida'),
(50923, 'https://ror.org/013nhfk37', 'en', 1, 'https://ror.org/013nhfk37 Measured Progress'),
(50924, 'https://ror.org/013p55530', 'en', 1, 'https://ror.org/013p55530 J. F Maddox Foundation'),
(50925, 'https://ror.org/013rqb250', 'en', 1, 'https://ror.org/013rqb250 St. David’s HealthCare'),
(50926, 'https://ror.org/013sb0f58', 'en', 1, 'https://ror.org/013sb0f58 Claghorn Lesem Research Clinic'),
(50927, 'https://ror.org/013t78522', 'en', 1, 'https://ror.org/013t78522 Memory Enhancement Center of America'),
(50928, 'https://ror.org/013v7fk41', 'en', 1, 'https://ror.org/013v7fk41 University Hospital and Clinics'),
(50929, 'https://ror.org/013wcmm63', 'en', 1, 'https://ror.org/013wcmm63 Zygon Center for Religion and Science'),
(50930, 'https://ror.org/013x77c65', 'no_lang_code', 1, 'https://ror.org/013x77c65 Txcell (France)'),
(50931, 'https://ror.org/013y0vx58', 'no_lang_code', 1, 'https://ror.org/013y0vx58 Widex (Denmark)'),
(50932, 'https://ror.org/013yrxa12', 'no_lang_code', 1, 'https://ror.org/013yrxa12 Arsenal Medical (United States)'),
(50933, 'https://ror.org/013z34d39', 'en', 1, 'https://ror.org/013z34d39 Employment Development Department'),
(50934, 'https://ror.org/013zhzc32', 'no_lang_code', 1, 'https://ror.org/013zhzc32 Northwestern Mutual Life Insurance (United States)'),
(50935, 'https://ror.org/0140zhz75', 'en', 1, 'https://ror.org/0140zhz75 Durrie Vision'),
(50936, 'https://ror.org/01424zf60', 'en', 1, 'https://ror.org/01424zf60 Hope Through Healing Hands'),
(50937, 'https://ror.org/01427p774', 'en', 1, 'https://ror.org/01427p774 Plan International'),
(50938, 'https://ror.org/0142j8045', 'en', 1, 'https://ror.org/0142j8045 National Association of Community Health Centers'),
(50939, 'https://ror.org/01431mg04', 'en', 1, 'https://ror.org/01431mg04 Act One'),
(50940, 'https://ror.org/014335v20', 'en', 1, 'https://ror.org/014335v20 174th hospital of the People''s Liberation Army 解放军第174医院'),
(50941, 'https://ror.org/014353m06', 'no_lang_code', 1, 'https://ror.org/014353m06 Idee e Prodotti (Italy)'),
(50942, 'https://ror.org/01485c733', 'en', 1, 'https://ror.org/01485c733 AchieveMpls'),
(50943, 'https://ror.org/014903n70', 'no_lang_code', 1, 'https://ror.org/014903n70 Getinge (Germany)'),
(50944, 'https://ror.org/0149k7n03', 'en', 1, 'https://ror.org/0149k7n03 Abell-Hanger Foundation'),
(50945, 'https://ror.org/0149pmh27', 'en', 1, 'https://ror.org/0149pmh27 Yue Bei People''s Hospital ē²¤åŒ—äŗŗę°‘åŒ»é™¢'),
(50946, 'https://ror.org/0149t5h43', 'es', 1, 'https://ror.org/0149t5h43 Hospital General Dr Aurelio Valdivieso'),
(50947, 'https://ror.org/0149ywf06', 'no_lang_code', 1, 'https://ror.org/0149ywf06 Citospin (Spain)'),
(50948, 'https://ror.org/014bxpd82', 'en', 1, 'https://ror.org/014bxpd82 Jal Seva Charitable Foundation'),
(50949, 'https://ror.org/014dvgf17', 'en', 1, 'https://ror.org/014dvgf17 BASilar artery International Cooperation Study'),
(50950, 'https://ror.org/014efpg78', 'en', 1, 'https://ror.org/014efpg78 Christopher Columbus Fellowship Foundation'),
(50951, 'https://ror.org/014hdch66', 'no_lang_code', 1, 'https://ror.org/014hdch66 Dextech Medical (Sweden)'),
(50952, 'https://ror.org/014jxbx13', 'es', 1, 'https://ror.org/014jxbx13 Probigua'),
(50953, 'https://ror.org/014kn1567', 'en', 1, 'https://ror.org/014kn1567 Cameron Brooks Foundation'),
(50954, 'https://ror.org/014kvbx03', 'en', 1, 'https://ror.org/014kvbx03 Allegheny Intermediate Unit'),
(50955, 'https://ror.org/014kx9f10', 'en', 1, 'https://ror.org/014kx9f10 Plexus Institute'),
(50956, 'https://ror.org/014m8ss57', 'no_lang_code', 1, 'https://ror.org/014m8ss57 Skis Rossignol (France)'),
(50957, 'https://ror.org/014rfma52', 'no_lang_code', 1, 'https://ror.org/014rfma52 Biogen (Germany)'),
(50958, 'https://ror.org/014s07b95', 'no_lang_code', 1, 'https://ror.org/014s07b95 Shenyang Anorectal Hospital ę²‰é˜³č‚›é—ØåŒ»é™¢'),
(50959, 'https://ror.org/014ssmn05', 'en', 1, 'https://ror.org/014ssmn05 California Dairy Research Foundation'),
(50960, 'https://ror.org/014tc2d37', 'no_lang_code', 1, 'https://ror.org/014tc2d37 Erydel (Italy)'),
(50961, 'https://ror.org/014twjs44', 'en', 1, 'https://ror.org/014twjs44 Foundation for Community Association Research'),
(50962, 'https://ror.org/014vaxq24', 'it', 1, 'https://ror.org/014vaxq24 Fondazione Michelangelo'),
(50963, 'https://ror.org/014vy5515', 'en', 1, 'https://ror.org/014vy5515 Treehouse'),
(50964, 'https://ror.org/014wq8057', 'en', 1, 'https://ror.org/014wq8057 European Society for Blood and Marrow Transplantation'),
(50965, 'https://ror.org/014xkfq18', 'en', 1, 'https://ror.org/014xkfq18 Collaborative Spine Research Foundation'),
(50966, 'https://ror.org/014y8kr12', 'en', 1, 'https://ror.org/014y8kr12 Massachusetts Institute for a New Commonwealth'),
(50967, 'https://ror.org/0150nnh74', 'en', 1, 'https://ror.org/0150nnh74 Great Valley Center'),
(50968, 'https://ror.org/01523aj77', 'no_lang_code', 1, 'https://ror.org/01523aj77 Sig Holding (Switzerland) Societa Industriale Svizzera SociƩtƩ Industrielle Suisse'),
(50969, 'https://ror.org/01527h266', 'en', 1, 'https://ror.org/01527h266 Enhancing Financial Innovation & Access'),
(50970, 'https://ror.org/0152qkr29', 'en', 1, 'https://ror.org/0152qkr29 Arkansas State University System'),
(50971, 'https://ror.org/01545ep47', 'no_lang_code', 1, 'https://ror.org/01545ep47 Covestro (United States)'),
(50972, 'https://ror.org/0155cq303', 'en', 1, 'https://ror.org/0155cq303 West Virginia Library Commission'),
(50973, 'https://ror.org/0155jx986', 'en', 1, 'https://ror.org/0155jx986 Connect Denmark'),
(50974, 'https://ror.org/0155km815', 'en', 1, 'https://ror.org/0155km815 South Florida Medical Research'),
(50975, 'https://ror.org/0156j5s68', 'en', 1, 'https://ror.org/0156j5s68 Cancer Hospital Lopburi ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąø„ąøžąøšąøøąø£ąøµ'),
(50976, 'https://ror.org/015b5md70', 'no_lang_code', 1, 'https://ror.org/015b5md70 Therabel (Belgium)'),
(50977, 'https://ror.org/015bgb355', 'no_lang_code', 1, 'https://ror.org/015bgb355 Lynn Chase Designs (United States)'),
(50978, 'https://ror.org/015brpm77', 'en', 1, 'https://ror.org/015brpm77 MNJ Institute Of Oncology and Regional Cancer Centre'),
(50979, 'https://ror.org/015gtxf45', 'no_lang_code', 1, 'https://ror.org/015gtxf45 Leifheit (Germany)'),
(50980, 'https://ror.org/015hpqr35', 'en', 1, 'https://ror.org/015hpqr35 Gabrail Cancer Center'),
(50981, 'https://ror.org/015m9wz56', 'en', 1, 'https://ror.org/015m9wz56 Youth Today'),
(50982, 'https://ror.org/015np5014', 'en', 1, 'https://ror.org/015np5014 College Spark Washington'),
(50983, 'https://ror.org/015q7hw55', 'en', 1, 'https://ror.org/015q7hw55 Saint-Petersburg Medico-Social Institute Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ МеГико'),
(50984, 'https://ror.org/015vfna03', 'no_lang_code', 1, 'https://ror.org/015vfna03 Achillion Pharmaceuticals (United States)'),
(50985, 'https://ror.org/015vn2982', 'en', 1, 'https://ror.org/015vn2982 Infectious Disease Consultants'),
(50986, 'https://ror.org/015w09177', 'en', 1, 'https://ror.org/015w09177 National Coalition for Cancer Survivorship'),
(50987, 'https://ror.org/015x46y72', 'no_lang_code', 1, 'https://ror.org/015x46y72 CMC Contrast (Sweden)'),
(50988, 'https://ror.org/015xc6321', 'es', 1, 'https://ror.org/015xc6321 Grupo EspaƱol de Trasplante HematopoyƩtico y Terapia Celular'),
(50989, 'https://ror.org/015ygpt53', 'en', 1, 'https://ror.org/015ygpt53 H.W. Durham Foundation'),
(50990, 'https://ror.org/015z1nq23', 'en', 1, 'https://ror.org/015z1nq23 Elisabeth Severance Prentiss Foundation'),
(50991, 'https://ror.org/0161df093', 'en', 1, 'https://ror.org/0161df093 PharmaTrain Federation'),
(50992, 'https://ror.org/0161x1106', 'en', 1, 'https://ror.org/0161x1106 National Sculpture Society'),
(50993, 'https://ror.org/0162q7t90', 'no_lang_code', 1, 'https://ror.org/0162q7t90 Gliknik (United States)'),
(50994, 'https://ror.org/0163v7e17', 'en', 1, 'https://ror.org/0163v7e17 Max Bell Foundation'),
(50995, 'https://ror.org/0164x1171', 'en', 1, 'https://ror.org/0164x1171 Living Stones Foundation Charitable Trust'),
(50996, 'https://ror.org/0165xkg98', 'en', 1, 'https://ror.org/0165xkg98 Lynde Centre for Dermatology'),
(50997, 'https://ror.org/0166ek496', 'en', 1, 'https://ror.org/0166ek496 American Head & Neck Society'),
(50998, 'https://ror.org/0166vvj90', 'en', 1, 'https://ror.org/0166vvj90 El Paso Community Foundation'),
(50999, 'https://ror.org/0168sna55', 'en', 1, 'https://ror.org/0168sna55 Clinical Insights'),
(51000, 'https://ror.org/016babj91', 'en', 1, 'https://ror.org/016babj91 Blakemore Foundation'),
(51001, 'https://ror.org/016d0n234', 'en', 1, 'https://ror.org/016d0n234 Institut für Sozialanthropologie Institute for Social Anthropology'),
(51002, 'https://ror.org/016dcgm68', 'en', 1, 'https://ror.org/016dcgm68 Foundation and Footings Society'),
(51003, 'https://ror.org/016jadm77', 'no_lang_code', 1, 'https://ror.org/016jadm77 PayPal (United States)'),
(51004, 'https://ror.org/016jygy11', 'en', 1, 'https://ror.org/016jygy11 Ningbo Municipal Education Bureau 宁波市教育局'),
(51005, 'https://ror.org/016mvkv35', 'no_lang_code', 1, 'https://ror.org/016mvkv35 Kiekert (Germany)'),
(51006, 'https://ror.org/016n28m75', 'pl', 1, 'https://ror.org/016n28m75 NZOZ Dom Sue Ryder'),
(51007, 'https://ror.org/016p98704', 'no_lang_code', 1, 'https://ror.org/016p98704 Seventh Sense Biosystems (United States)'),
(51008, 'https://ror.org/016pabg12', 'en', 1, 'https://ror.org/016pabg12 Council of Accountable Physician Practices'),
(51009, 'https://ror.org/016pjbx35', 'en', 1, 'https://ror.org/016pjbx35 Asian Association for Dynamic Osteosynthesis'),
(51010, 'https://ror.org/016t73h24', 'en', 1, 'https://ror.org/016t73h24 Equipment Leasing & Finance Foundation'),
(51011, 'https://ror.org/016vanb16', 'en', 1, 'https://ror.org/016vanb16 Suburban Research Associates'),
(51012, 'https://ror.org/016vmf460', 'en', 1, 'https://ror.org/016vmf460 AXIS Clinical Trials'),
(51013, 'https://ror.org/016vrvb82', 'no_lang_code', 1, 'https://ror.org/016vrvb82 Zagaya'),
(51014, 'https://ror.org/016wktf60', 'en', 1, 'https://ror.org/016wktf60 Community Foundation of Greater New Britain'),
(51015, 'https://ror.org/016zb6379', 'en', 1, 'https://ror.org/016zb6379 ReadWorks'),
(51016, 'https://ror.org/0171xqb77', 'en', 1, 'https://ror.org/0171xqb77 Mercy Hospital'),
(51017, 'https://ror.org/01748j177', 'en', 1, 'https://ror.org/01748j177 Collaborative Africa Budget Reform Initiative'),
(51018, 'https://ror.org/01757ay04', 'en', 1, 'https://ror.org/01757ay04 Community Foundation for Greater Atlanta'),
(51019, 'https://ror.org/017704360', 'en', 1, 'https://ror.org/017704360 Ridgeview Medical Center'),
(51020, 'https://ror.org/017778n40', 'en', 1, 'https://ror.org/017778n40 Herbert W. Hoover Foundation'),
(51021, 'https://ror.org/0179s0197', 'en', 1, 'https://ror.org/0179s0197 Cancer Center of Kansas'),
(51022, 'https://ror.org/017ax4r20', 'no_lang_code', 1, 'https://ror.org/017ax4r20 Nabriva Therapeutics (Austria)'),
(51023, 'https://ror.org/017e31734', 'en', 1, 'https://ror.org/017e31734 Horizon Blue Cross Blue Shield of New Jersey'),
(51024, 'https://ror.org/017f12b13', 'no_lang_code', 1, 'https://ror.org/017f12b13 Otsuka (France)'),
(51025, 'https://ror.org/017fd6822', 'en', 1, 'https://ror.org/017fd6822 Gastroenterology Associates Of Western Michigan'),
(51026, 'https://ror.org/017fwpp88', 'en', 1, 'https://ror.org/017fwpp88 Ecclesfield GP'),
(51027, 'https://ror.org/017hh7b56', 'no_lang_code', 1, 'https://ror.org/017hh7b56 Kyowa Kirin International (United Kingdom)'),
(51028, 'https://ror.org/017j43x24', 'no_lang_code', 1, 'https://ror.org/017j43x24 Anges MG (United Kingdom)'),
(51029, 'https://ror.org/017n0wf28', 'no_lang_code', 1, 'https://ror.org/017n0wf28 Triumph Learning (United States)'),
(51030, 'https://ror.org/017n5p421', 'en', 1, 'https://ror.org/017n5p421 Myotonic Dystrophy Foundation'),
(51031, 'https://ror.org/017qdky13', 'en', 1, 'https://ror.org/017qdky13 Cynthia and George Mitchell Foundation'),
(51032, 'https://ror.org/017qqw141', 'no_lang_code', 1, 'https://ror.org/017qqw141 Singer (United States)'),
(51033, 'https://ror.org/017r9vm74', 'no_lang_code', 1, 'https://ror.org/017r9vm74 Masco (Germany)'),
(51034, 'https://ror.org/017rhck27', 'en', 1, 'https://ror.org/017rhck27 Physicians for Human Rights'),
(51035, 'https://ror.org/017rmsx09', 'it', 1, 'https://ror.org/017rmsx09 Fondazione Sandro Pitigliani'),
(51036, 'https://ror.org/017s69y81', 'no_lang_code', 1, 'https://ror.org/017s69y81 Fermentia (Hungary)'),
(51037, 'https://ror.org/017trqn73', 'en', 1, 'https://ror.org/017trqn73 AAA Foundation for Traffic Safety'),
(51038, 'https://ror.org/017vhek94', 'de', 1, 'https://ror.org/017vhek94 Gebauer Stiftung'),
(51039, 'https://ror.org/017vjfp21', 'en', 1, 'https://ror.org/017vjfp21 Clinical Trials of Texas'),
(51040, 'https://ror.org/017wcz935', 'en', 1, 'https://ror.org/017wcz935 Elizabeth Taylor AIDS Foundation'),
(51041, 'https://ror.org/017xs2h64', 'en', 1, 'https://ror.org/017xs2h64 John T. Reid Charitable Trusts'),
(51042, 'https://ror.org/0180raj05', 'no_lang_code', 1, 'https://ror.org/0180raj05 Scandinavian Sarcoma Group (Sweden)'),
(51043, 'https://ror.org/0181ptd26', 'en', 1, 'https://ror.org/0181ptd26 National Headache Foundation'),
(51044, 'https://ror.org/0181qem25', 'en', 1, 'https://ror.org/0181qem25 Capital Nephrology Associates'),
(51045, 'https://ror.org/018225234', 'en', 1, 'https://ror.org/018225234 Edna McConnell Clark Foundation'),
(51046, 'https://ror.org/0183pqm13', 'en', 1, 'https://ror.org/0183pqm13 Orthopaedic Research Society'),
(51047, 'https://ror.org/0184nmh41', 'en', 1, 'https://ror.org/0184nmh41 International Health Economics Association'),
(51048, 'https://ror.org/0185yec04', 'no_lang_code', 1, 'https://ror.org/0185yec04 Benchmark Research (United States)'),
(51049, 'https://ror.org/018611e81', 'en', 1, 'https://ror.org/018611e81 Kansas Masonic Foundation'),
(51050, 'https://ror.org/0186zbx36', 'en', 1, 'https://ror.org/0186zbx36 Innovating Worthy Projects Foundation'),
(51051, 'https://ror.org/01878vm76', 'en', 1, 'https://ror.org/01878vm76 GreatNonprofits'),
(51052, 'https://ror.org/0187qyr62', 'en', 1, 'https://ror.org/0187qyr62 Michelson Prize and Grants'),
(51053, 'https://ror.org/0188nfw25', 'en', 1, 'https://ror.org/0188nfw25 Friends of Children of Walla Walla'),
(51054, 'https://ror.org/01899q369', 'no_lang_code', 1, 'https://ror.org/01899q369 Kinik (Taiwan)'),
(51055, 'https://ror.org/018atqy04', 'cs', 1, 'https://ror.org/018atqy04 ObčanskĆ© sdruženĆ­ Ametyst'),
(51056, 'https://ror.org/018fqb741', 'no_lang_code', 1, 'https://ror.org/018fqb741 Mundipharma (Sweden)'),
(51057, 'https://ror.org/018g1zw27', 'sv', 1, 'https://ror.org/018g1zw27 Marie-Claire Cronstedts Stiftelse'),
(51058, 'https://ror.org/018mdm506', 'no_lang_code', 1, 'https://ror.org/018mdm506 Ford Motor Company (France)'),
(51059, 'https://ror.org/018pfae44', 'no_lang_code', 1, 'https://ror.org/018pfae44 Axcelis Technologies (United States)'),
(51060, 'https://ror.org/018r79a04', 'en', 1, 'https://ror.org/018r79a04 Burke Foundation'),
(51061, 'https://ror.org/018sdr586', 'en', 1, 'https://ror.org/018sdr586 Kalam Research and Media'),
(51062, 'https://ror.org/018tky159', 'no_lang_code', 1, 'https://ror.org/018tky159 Green Beat (Austria) Green Beat - Institut für Nährstoff-Forschung und Sporternährung'),
(51063, 'https://ror.org/018ze1919', 'it', 1, 'https://ror.org/018ze1919 Associazione Sammarinese per la Lotta contro le Leucemie e Emopatie Maligne'),
(51064, 'https://ror.org/018znve60', 'en', 1, 'https://ror.org/018znve60 Central New York Community Foundation'),
(51065, 'https://ror.org/0192aem33', 'da', 1, 'https://ror.org/0192aem33 Dansk Historisk FƦllesforening'),
(51066, 'https://ror.org/01930sy39', 'en', 1, 'https://ror.org/01930sy39 J. Marion Sims Foundation'),
(51067, 'https://ror.org/0193yj888', 'en', 1, 'https://ror.org/0193yj888 Timberland Regional Library'),
(51068, 'https://ror.org/01954vf31', 'en', 1, 'https://ror.org/01954vf31 Wake Research'),
(51069, 'https://ror.org/0197yr043', 'en', 1, 'https://ror.org/0197yr043 Netherland-America Foundation'),
(51070, 'https://ror.org/01981pe95', 'en', 1, 'https://ror.org/01981pe95 International Rescue Committee'),
(51071, 'https://ror.org/019950a73', 'en', 1, 'https://ror.org/019950a73 Copenhagen Zoo KĆøbenhavn Zoo'),
(51072, 'https://ror.org/0199q6v22', 'en', 1, 'https://ror.org/0199q6v22 Barry Community Foundation'),
(51073, 'https://ror.org/019a8hm16', 'de', 1, 'https://ror.org/019a8hm16 Hanns R. Neumann Stiftung'),
(51074, 'https://ror.org/019bgst25', 'en', 1, 'https://ror.org/019bgst25 Columbus Foundation'),
(51075, 'https://ror.org/019cqhg34', 'en', 1, 'https://ror.org/019cqhg34 Palmetto Hematology Oncology'),
(51076, 'https://ror.org/019fz9b71', 'no_lang_code', 1, 'https://ror.org/019fz9b71 Neurophyxia (Netherlands)'),
(51077, 'https://ror.org/019g16n05', 'no_lang_code', 1, 'https://ror.org/019g16n05 PsiOxus Therapeutics (United Kingdom)'),
(51078, 'https://ror.org/019hjez96', 'es', 1, 'https://ror.org/019hjez96 Fundación Reina Isabel'),
(51079, 'https://ror.org/019kycv16', 'en', 1, 'https://ror.org/019kycv16 Foundation for Teaching Economics'),
(51080, 'https://ror.org/019m52y27', 'en', 1, 'https://ror.org/019m52y27 SĆ£o Camilo Hospital'),
(51081, 'https://ror.org/019mbhm70', 'en', 1, 'https://ror.org/019mbhm70 Miyakawa Memorial Research Foundation å®®å·åŗšå­čØ˜åæµē ”ē©¶č²”å›£'),
(51082, 'https://ror.org/019qdfq91', 'no_lang_code', 1, 'https://ror.org/019qdfq91 Borealis (Finland)'),
(51083, 'https://ror.org/019qn3016', 'en', 1, 'https://ror.org/019qn3016 Carolina Eyecare Physicians'),
(51084, 'https://ror.org/019qtj676', 'en', 1, 'https://ror.org/019qtj676 Cardiac And Vascular Research Center Of Northern Michigan'),
(51085, 'https://ror.org/019s3m535', 'no_lang_code', 1, 'https://ror.org/019s3m535 EagleDream Health'),
(51086, 'https://ror.org/019se1k35', 'en', 1, 'https://ror.org/019se1k35 Iowa Orthopaedic Center'),
(51087, 'https://ror.org/019w9ty29', 'en', 1, 'https://ror.org/019w9ty29 American Association of Endocrine Surgeons'),
(51088, 'https://ror.org/019zp9n35', 'no_lang_code', 1, 'https://ror.org/019zp9n35 Polaris Group (United States)'),
(51089, 'https://ror.org/01a0byg64', 'en', 1, 'https://ror.org/01a0byg64 Obici Healthcare Foundation'),
(51090, 'https://ror.org/01a100t94', 'en', 1, 'https://ror.org/01a100t94 Mike Utley Foundation'),
(51091, 'https://ror.org/01a2yyy59', 'en', 1, 'https://ror.org/01a2yyy59 North Central Cancer Treatment Group'),
(51092, 'https://ror.org/01a84bt29', 'en', 1, 'https://ror.org/01a84bt29 Centre International De Reference Chantal Biya'),
(51093, 'https://ror.org/01a904q54', 'no_lang_code', 1, 'https://ror.org/01a904q54 United Therapeutics (United Kingdom)'),
(51094, 'https://ror.org/01a91k946', 'nl', 1, 'https://ror.org/01a91k946 St.Jans Gasthuis Weert'),
(51095, 'https://ror.org/01aaa2z14', 'en', 1, 'https://ror.org/01aaa2z14 Neuroscience Nursing Foundation'),
(51096, 'https://ror.org/01aagdf71', 'en', 1, 'https://ror.org/01aagdf71 GI Care for Kids'),
(51097, 'https://ror.org/01aazm409', 'en', 1, 'https://ror.org/01aazm409 NCMIC Foundation'),
(51098, 'https://ror.org/01ab2jm55', 'en', 1, 'https://ror.org/01ab2jm55 East-West Management Institute'),
(51099, 'https://ror.org/01abmka80', 'en', 1, 'https://ror.org/01abmka80 Zhongshan City Second People''s Hospital äø­å±±åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(51100, 'https://ror.org/01abnzn91', 'en', 1, 'https://ror.org/01abnzn91 Association of Educational Publishers'),
(51101, 'https://ror.org/01abr9t53', 'en', 1, 'https://ror.org/01abr9t53 New Mexico Business Roundtable'),
(51102, 'https://ror.org/01acje871', 'en', 1, 'https://ror.org/01acje871 Cooper Foundation'),
(51103, 'https://ror.org/01adg4754', 'no_lang_code', 1, 'https://ror.org/01adg4754 ConvergeOne (United States)'),
(51104, 'https://ror.org/01ah9ym33', 'de', 1, 'https://ror.org/01ah9ym33 Krankenhaus St. Elisabeth und St. Barbara'),
(51105, 'https://ror.org/01ahesd15', 'en', 1, 'https://ror.org/01ahesd15 Center for Prevention and Treatment of Infections'),
(51106, 'https://ror.org/01ajd9545', 'en', 1, 'https://ror.org/01ajd9545 Common Ground Research Networks'),
(51107, 'https://ror.org/01ajpw658', 'en', 1, 'https://ror.org/01ajpw658 Mucolipidosis IV Foundation'),
(51108, 'https://ror.org/01ajr8702', 'no_lang_code', 1, 'https://ror.org/01ajr8702 Total (United States)'),
(51109, 'https://ror.org/01am05n73', 'en', 1, 'https://ror.org/01am05n73 Associated Oregon Loggers'),
(51110, 'https://ror.org/01ar3e651', 'en', 1, 'https://ror.org/01ar3e651 Reproductive & Genetic Hospital CITIC-Xiangya äø­äæ”ę¹˜é›…ē”Ÿę®–äøŽé—ä¼ äø“ē§‘åŒ»é™¢ęœ‰é™å…¬åø'),
(51111, 'https://ror.org/01arayx28', 'de', 1, 'https://ror.org/01arayx28 Alzheimer Forschung Initiative'),
(51112, 'https://ror.org/01at8r832', 'en', 1, 'https://ror.org/01at8r832 Whitsett Vision Group'),
(51113, 'https://ror.org/01avc0g69', 'en', 1, 'https://ror.org/01avc0g69 Association for the Study of Medical Education'),
(51114, 'https://ror.org/01aw01n16', 'en', 1, 'https://ror.org/01aw01n16 Association for Regional Development and Mental Health'),
(51115, 'https://ror.org/01axv9229', 'no_lang_code', 1, 'https://ror.org/01axv9229 ImmunoCellular Therapeutics (United States)'),
(51116, 'https://ror.org/01aye5y64', 'en', 1, 'https://ror.org/01aye5y64 Gateshead Health NHS Foundation Trust'),
(51117, 'https://ror.org/01azwtt17', 'no_lang_code', 1, 'https://ror.org/01azwtt17 Revant (Netherlands)'),
(51118, 'https://ror.org/01b242q75', 'en', 1, 'https://ror.org/01b242q75 Jacob and Valeria Langeloth Foundation');
INSERT INTO `rors` VALUES
(51119, 'https://ror.org/01b2pxy75', 'de', 1, 'https://ror.org/01b2pxy75 Institut für Psychogerontologie'),
(51120, 'https://ror.org/01b51qe92', 'no_lang_code', 1, 'https://ror.org/01b51qe92 Trevi Therapeutics (United States)'),
(51121, 'https://ror.org/01b5j6r07', 'en', 1, 'https://ror.org/01b5j6r07 Nash County Health Department'),
(51122, 'https://ror.org/01b658f62', 'en', 1, 'https://ror.org/01b658f62 ENT and Allergy'),
(51123, 'https://ror.org/01b7m6y64', 'en', 1, 'https://ror.org/01b7m6y64 Citizens Budget Commission'),
(51124, 'https://ror.org/01bb2y691', 'nl', 1, 'https://ror.org/01bb2y691 Dutch Network for Cardiovascular Research Werkgroep Cardiologische centra Nederland'),
(51125, 'https://ror.org/01bby7n46', 'en', 1, 'https://ror.org/01bby7n46 I. A. O''Shaughnessy Foundation'),
(51126, 'https://ror.org/01bc16f62', 'en', 1, 'https://ror.org/01bc16f62 Mebane Charitable Foundation'),
(51127, 'https://ror.org/01bcmwk98', 'en', 1, 'https://ror.org/01bcmwk98 Brain Canada Foundation'),
(51128, 'https://ror.org/01bd1z477', 'en', 1, 'https://ror.org/01bd1z477 Leeds, Grenville & Lanark District Health Unit'),
(51129, 'https://ror.org/01bdnnp71', 'fr', 1, 'https://ror.org/01bdnnp71 Groupe d''Ɖtude ThĆ©rapeutique des Affections Inflammatoires du Tube Digestif'),
(51130, 'https://ror.org/01bhf4h93', 'no_lang_code', 1, 'https://ror.org/01bhf4h93 EdSurge (United States)'),
(51131, 'https://ror.org/01bky8445', 'en', 1, 'https://ror.org/01bky8445 Community Foundation of Snohomish County'),
(51132, 'https://ror.org/01bpe5t14', 'en', 1, 'https://ror.org/01bpe5t14 iMentor'),
(51133, 'https://ror.org/01bq78n56', 'en', 1, 'https://ror.org/01bq78n56 Horsley Medical Practice'),
(51134, 'https://ror.org/01bsbwm24', 'en', 1, 'https://ror.org/01bsbwm24 Palmetto Retina Center'),
(51135, 'https://ror.org/01bwxpz44', 'no_lang_code', 1, 'https://ror.org/01bwxpz44 Milacron (Canada)'),
(51136, 'https://ror.org/01bxyrf83', 'en', 1, 'https://ror.org/01bxyrf83 Highlander Institute'),
(51137, 'https://ror.org/01bygr704', 'no_lang_code', 1, 'https://ror.org/01bygr704 Grunberger Diabetes Institute'),
(51138, 'https://ror.org/01bzak852', 'en', 1, 'https://ror.org/01bzak852 UnityPoint Health Meriter'),
(51139, 'https://ror.org/01c15bz20', 'en', 1, 'https://ror.org/01c15bz20 Cancer Care Northwest'),
(51140, 'https://ror.org/01c25r859', 'no_lang_code', 1, 'https://ror.org/01c25r859 Allergan (United Kingdom)'),
(51141, 'https://ror.org/01c2mxq14', 'en', 1, 'https://ror.org/01c2mxq14 Estonian Union for Child Welfare'),
(51142, 'https://ror.org/01c35h421', 'en', 1, 'https://ror.org/01c35h421 Hellenic Oceanographers Association Ī£ĻĪ»Ī»ĪæĪ³ĪæĻ‚ Ελλήνων Ωκεανογράφων'),
(51143, 'https://ror.org/01c5c8162', 'en', 1, 'https://ror.org/01c5c8162 Institute for the Study of Knowledge Management in Education'),
(51144, 'https://ror.org/01c5nz376', 'en', 1, 'https://ror.org/01c5nz376 Association Canadienne de la Maladie Coeliaque Canadian Celiac Association'),
(51145, 'https://ror.org/01c5q0c82', 'en', 1, 'https://ror.org/01c5q0c82 Yunnan Maternal and Child Health äŗ‘å—ēœå¦‡å¹¼äæå„é™¢'),
(51146, 'https://ror.org/01c6n0g60', 'no_lang_code', 1, 'https://ror.org/01c6n0g60 Bionomics (Australia)'),
(51147, 'https://ror.org/01c95r073', 'en', 1, 'https://ror.org/01c95r073 Pennsylvania Health Law Project'),
(51148, 'https://ror.org/01cajaf96', 'da', 1, 'https://ror.org/01cajaf96 Dansk SprognƦvn'),
(51149, 'https://ror.org/01cb82b28', 'en', 1, 'https://ror.org/01cb82b28 Lungs for Life'),
(51150, 'https://ror.org/01cd7k542', 'no_lang_code', 1, 'https://ror.org/01cd7k542 CureTech (Israel)'),
(51151, 'https://ror.org/01cgf9k20', 'en', 1, 'https://ror.org/01cgf9k20 New Schools for Chicago'),
(51152, 'https://ror.org/01chgch18', 'en', 1, 'https://ror.org/01chgch18 Community Clinical Research'),
(51153, 'https://ror.org/01ckvny60', 'en', 1, 'https://ror.org/01ckvny60 Rivkin Center for Ovarian Cancer'),
(51154, 'https://ror.org/01cq1x027', 'hu', 1, 'https://ror.org/01cq1x027 Borsod-Abaúj-Zemplén Megyei KórhÔz és Egyetemi Oktató KórhÔz'),
(51155, 'https://ror.org/01cqrth30', 'fr', 1, 'https://ror.org/01cqrth30 Fondation Arthritis'),
(51156, 'https://ror.org/01cr00p51', 'it', 1, 'https://ror.org/01cr00p51 Fondazione di Piacenza e Vigevano'),
(51157, 'https://ror.org/01crnny41', 'no_lang_code', 1, 'https://ror.org/01crnny41 Smart Sparrow (United States)'),
(51158, 'https://ror.org/01cttmp41', 'en', 1, 'https://ror.org/01cttmp41 Coastal Community Foundation'),
(51159, 'https://ror.org/01cwc3t60', 'no_lang_code', 1, 'https://ror.org/01cwc3t60 CenturyLink (United States)'),
(51160, 'https://ror.org/01cxrg686', 'en', 1, 'https://ror.org/01cxrg686 National Medical Fellowships'),
(51161, 'https://ror.org/01cz1wg22', 'no_lang_code', 1, 'https://ror.org/01cz1wg22 AFT Pharmaceuticals (New Zealand)'),
(51162, 'https://ror.org/01d0re264', 'en', 1, 'https://ror.org/01d0re264 Fund for Public Schools'),
(51163, 'https://ror.org/01d16dr57', 'de', 1, 'https://ror.org/01d16dr57 PHV Dialysezentrum, Patienten-Heimversorgung'),
(51164, 'https://ror.org/01d1x1659', 'en', 1, 'https://ror.org/01d1x1659 Joan Rothenberg Family Foundation'),
(51165, 'https://ror.org/01d3smq07', 'no_lang_code', 1, 'https://ror.org/01d3smq07 Aflac (United States)'),
(51166, 'https://ror.org/01d4h2244', 'en', 1, 'https://ror.org/01d4h2244 Patient Priority Clinical Sites'),
(51167, 'https://ror.org/01d4wwv56', 'fr', 1, 'https://ror.org/01d4wwv56 Fondation Roger de Spoelberch'),
(51168, 'https://ror.org/01d8jjd81', 'no_lang_code', 1, 'https://ror.org/01d8jjd81 Nautilus (United States)'),
(51169, 'https://ror.org/01da6p430', 'no_lang_code', 1, 'https://ror.org/01da6p430 Ewopharma (Slovakia)'),
(51170, 'https://ror.org/01dax5b49', 'en', 1, 'https://ror.org/01dax5b49 Narodowy Instytut Dziedzictwa National Heritage Board of Poland'),
(51171, 'https://ror.org/01dbfn577', 'en', 1, 'https://ror.org/01dbfn577 Feeding America'),
(51172, 'https://ror.org/01de6ns85', 'no_lang_code', 1, 'https://ror.org/01de6ns85 Neelan Tiruchelvam Trust'),
(51173, 'https://ror.org/01dgc6x67', 'en', 1, 'https://ror.org/01dgc6x67 Philippine American Educational Foundation'),
(51174, 'https://ror.org/01dj1q121', 'en', 1, 'https://ror.org/01dj1q121 Solar Electric Light Fund'),
(51175, 'https://ror.org/01dm0yq38', 'no_lang_code', 1, 'https://ror.org/01dm0yq38 Benesse Holdings (Japan) ę Ŗå¼ä¼šē¤¾ćƒ™ćƒćƒƒć‚»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(51176, 'https://ror.org/01dmefb22', 'no_lang_code', 1, 'https://ror.org/01dmefb22 Chromasens (Germany)'),
(51177, 'https://ror.org/01dn4wg45', 'no_lang_code', 1, 'https://ror.org/01dn4wg45 Dr. Reddy''s Laboratories (Netherlands)'),
(51178, 'https://ror.org/01dnhtm59', 'en', 1, 'https://ror.org/01dnhtm59 Rare Genomics Institute'),
(51179, 'https://ror.org/01dnrcm75', 'en', 1, 'https://ror.org/01dnrcm75 Gladys Krieble Delmas Foundation'),
(51180, 'https://ror.org/01dpkyq75', 'en', 1, 'https://ror.org/01dpkyq75 Cancer Trials Ireland'),
(51181, 'https://ror.org/01dvc8750', 'en', 1, 'https://ror.org/01dvc8750 Foundation for Agronomic Research'),
(51182, 'https://ror.org/01e00z659', 'no_lang_code', 1, 'https://ror.org/01e00z659 Joyson Safety Systems (United States)'),
(51183, 'https://ror.org/01e0gx490', 'no', 1, 'https://ror.org/01e0gx490 Aust-Agder Utviklings- og Kompetansefond'),
(51184, 'https://ror.org/01e2spe61', 'no_lang_code', 1, 'https://ror.org/01e2spe61 Inmunotek (Spain)'),
(51185, 'https://ror.org/01e310919', 'en', 1, 'https://ror.org/01e310919 Monash Alfred Psychiatry Research centre'),
(51186, 'https://ror.org/01e3cnp62', 'en', 1, 'https://ror.org/01e3cnp62 A.P. Giannini Foundation'),
(51187, 'https://ror.org/01e3h1850', 'no_lang_code', 1, 'https://ror.org/01e3h1850 Campagnolo (Italy)'),
(51188, 'https://ror.org/01e3kxx79', 'en', 1, 'https://ror.org/01e3kxx79 Brain Foundation'),
(51189, 'https://ror.org/01e8zab89', 'en', 1, 'https://ror.org/01e8zab89 National Association of College and University Business Officers'),
(51190, 'https://ror.org/01eagnx62', 'no_lang_code', 1, 'https://ror.org/01eagnx62 Zebra Media (Denmark)'),
(51191, 'https://ror.org/01efj0y81', 'en', 1, 'https://ror.org/01efj0y81 Intensive Care Foundation'),
(51192, 'https://ror.org/01egnsq83', 'fr', 1, 'https://ror.org/01egnsq83 Centre Hospitalier de Saint-Brieuc'),
(51193, 'https://ror.org/01ehdwj93', 'en', 1, 'https://ror.org/01ehdwj93 United Nations Capital Development Fund'),
(51194, 'https://ror.org/01ekr8r30', 'en', 1, 'https://ror.org/01ekr8r30 American Association of Teachers of Korean'),
(51195, 'https://ror.org/01embmm80', 'no_lang_code', 1, 'https://ror.org/01embmm80 Tikomed (Sweden)'),
(51196, 'https://ror.org/01enbtr31', 'en', 1, 'https://ror.org/01enbtr31 Okawa Foundation for Information and Telecommunications å…¬ē›Šč²”å›£ę³•äŗŗ å¤§å·ęƒ…å ±é€šäæ”åŸŗé‡‘'),
(51197, 'https://ror.org/01eqh1e45', 'en', 1, 'https://ror.org/01eqh1e45 Swedish CLL group'),
(51198, 'https://ror.org/01eqy8607', 'no_lang_code', 1, 'https://ror.org/01eqy8607 Genkyotex (France)'),
(51199, 'https://ror.org/01era2c76', 'en', 1, 'https://ror.org/01era2c76 P.E.F. Israel Endowment Funds'),
(51200, 'https://ror.org/01erkrz38', 'en', 1, 'https://ror.org/01erkrz38 Yenişehir Hospital Ɩzel Yenişehir Hastanesi'),
(51201, 'https://ror.org/01estnb82', 'no_lang_code', 1, 'https://ror.org/01estnb82 Nippon Soda (Japan) ę—„ęœ¬ę›¹é”ę Ŗå¼ä¼šē¤¾'),
(51202, 'https://ror.org/01etk5d84', 'en', 1, 'https://ror.org/01etk5d84 America Abroad Media'),
(51203, 'https://ror.org/01exnk557', 'no_lang_code', 1, 'https://ror.org/01exnk557 Cosmo Pharmaceuticals (Ireland)'),
(51204, 'https://ror.org/01exwxt34', 'no_lang_code', 1, 'https://ror.org/01exwxt34 Guaranteach (United States)'),
(51205, 'https://ror.org/01f08b586', 'no_lang_code', 1, 'https://ror.org/01f08b586 Oxalosis and Hyperoxaluria Foundation'),
(51206, 'https://ror.org/01f0hzg70', 'en', 1, 'https://ror.org/01f0hzg70 Glaser Progress Foundation'),
(51207, 'https://ror.org/01f1gbh69', 'en', 1, 'https://ror.org/01f1gbh69 Graham Foundation'),
(51208, 'https://ror.org/01f2as093', 'en', 1, 'https://ror.org/01f2as093 Pioneer Library System'),
(51209, 'https://ror.org/01f2n9041', 'en', 1, 'https://ror.org/01f2n9041 Crohn''s and Colitis Canada'),
(51210, 'https://ror.org/01f5hts17', 'en', 1, 'https://ror.org/01f5hts17 Atlanta Women’s Foundation'),
(51211, 'https://ror.org/01f7bfe52', 'en', 1, 'https://ror.org/01f7bfe52 American Association of Bovine Practitioners'),
(51212, 'https://ror.org/01f8b5v57', 'en', 1, 'https://ror.org/01f8b5v57 National Foundation for Ectodermal Dysplasias'),
(51213, 'https://ror.org/01f9py957', 'en', 1, 'https://ror.org/01f9py957 Illustrative Mathematics'),
(51214, 'https://ror.org/01fadbq53', 'en', 1, 'https://ror.org/01fadbq53 Northwest Minnesota Foundation'),
(51215, 'https://ror.org/01fb0df08', 'en', 1, 'https://ror.org/01fb0df08 Marine Corps Warfighting Laboratory'),
(51216, 'https://ror.org/01fc2rf40', 'no_lang_code', 1, 'https://ror.org/01fc2rf40 Dorma (Germany)'),
(51217, 'https://ror.org/01fd98w69', 'en', 1, 'https://ror.org/01fd98w69 Perinatal Associates of New Mexico'),
(51218, 'https://ror.org/01fec5y16', 'no_lang_code', 1, 'https://ror.org/01fec5y16 Aesculapius Farmaceutici (Italy)'),
(51219, 'https://ror.org/01fesvd20', 'nl', 1, 'https://ror.org/01fesvd20 Nederlandse Vereniging voor Trombose en Hemostase'),
(51220, 'https://ror.org/01ff05746', 'es', 1, 'https://ror.org/01ff05746 Hospital Doctor JosƩ Molina Orosa'),
(51221, 'https://ror.org/01ffek432', 'en', 1, 'https://ror.org/01ffek432 First Affiliated Hospital of Hunan University of Traditional Chinese Medicine ę¹–å—äø­åŒ»čÆå¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(51222, 'https://ror.org/01fgdhp95', 'en', 1, 'https://ror.org/01fgdhp95 Community Foundation for Greater Buffalo'),
(51223, 'https://ror.org/01fhbm930', 'en', 1, 'https://ror.org/01fhbm930 Flinders Medical Centre Foundation'),
(51224, 'https://ror.org/01fhkcd72', 'no_lang_code', 1, 'https://ror.org/01fhkcd72 Ustar Biotechnologies (China)'),
(51225, 'https://ror.org/01fhn3166', 'no_lang_code', 1, 'https://ror.org/01fhn3166 Vsolvit (United States)'),
(51226, 'https://ror.org/01fjgwc49', 'en', 1, 'https://ror.org/01fjgwc49 Kitsap Community Foundation'),
(51227, 'https://ror.org/01fjz5q85', 'en', 1, 'https://ror.org/01fjz5q85 Washington State Department of Early Learning'),
(51228, 'https://ror.org/01fkfc673', 'en', 1, 'https://ror.org/01fkfc673 Daughters of Charity Foundation of Saint Louis'),
(51229, 'https://ror.org/01fn9d687', 'en', 1, 'https://ror.org/01fn9d687 American Society of Genealogists'),
(51230, 'https://ror.org/01fpzaj30', 'en', 1, 'https://ror.org/01fpzaj30 Colorado Retina Center'),
(51231, 'https://ror.org/01frfsg35', 'en', 1, 'https://ror.org/01frfsg35 Gruppo Oncologico Italiano di Ricerca Clinica Italian Oncology Group of Clinical Research'),
(51232, 'https://ror.org/01frg4p28', 'en', 1, 'https://ror.org/01frg4p28 Environmental Research and Education Foundation'),
(51233, 'https://ror.org/01ft76595', 'en', 1, 'https://ror.org/01ft76595 Hejian People''s Hospital ę²³é—“åø‚äŗŗę°‘åŒ»é™¢'),
(51234, 'https://ror.org/01ft7jz29', 'no_lang_code', 1, 'https://ror.org/01ft7jz29 OptiNose (United States)'),
(51235, 'https://ror.org/01fv33324', 'en', 1, 'https://ror.org/01fv33324 International Longevity Centre'),
(51236, 'https://ror.org/01fvs9743', 'no_lang_code', 1, 'https://ror.org/01fvs9743 Extreme Networks (United States)'),
(51237, 'https://ror.org/01g2p9a25', 'no_lang_code', 1, 'https://ror.org/01g2p9a25 Rhize'),
(51238, 'https://ror.org/01g35pk06', 'no_lang_code', 1, 'https://ror.org/01g35pk06 Monday Media (Denmark)'),
(51239, 'https://ror.org/01g67g962', 'de', 1, 'https://ror.org/01g67g962 Dr. med. Arthur und Estella Hirzel-Callegari Stiftung'),
(51240, 'https://ror.org/01gc9jt13', 'no_lang_code', 1, 'https://ror.org/01gc9jt13 Sanochemia Pharmazeutika (Austria)'),
(51241, 'https://ror.org/01gcg9888', 'no_lang_code', 1, 'https://ror.org/01gcg9888 Roche (Netherlands)'),
(51242, 'https://ror.org/01gfcex64', 'es', 1, 'https://ror.org/01gfcex64 Instituto de Ciencia y Medicina Genómica'),
(51243, 'https://ror.org/01ggj0577', 'en', 1, 'https://ror.org/01ggj0577 Braitmayer Foundation'),
(51244, 'https://ror.org/01gkfdp08', 'vi', 1, 'https://ror.org/01gkfdp08 Văn phòng ban chỉ đẔo 33'),
(51245, 'https://ror.org/01gnpsq58', 'en', 1, 'https://ror.org/01gnpsq58 Canadian Society of Pharmacology and Therapeutics'),
(51246, 'https://ror.org/01gp9ja19', 'en', 1, 'https://ror.org/01gp9ja19 Emory Johns Creek Hospital'),
(51247, 'https://ror.org/01gpk9263', 'en', 1, 'https://ror.org/01gpk9263 New England Foundation for the Arts'),
(51248, 'https://ror.org/01gptg397', 'en', 1, 'https://ror.org/01gptg397 Robert Cizik Eye Clinic'),
(51249, 'https://ror.org/01grxkt41', 'en', 1, 'https://ror.org/01grxkt41 American Society of Plant Taxonomists'),
(51250, 'https://ror.org/01gtvsc36', 'no_lang_code', 1, 'https://ror.org/01gtvsc36 Celerion (United States)'),
(51251, 'https://ror.org/01gxb7577', 'en', 1, 'https://ror.org/01gxb7577 Glówny Urzad Geodezji i Kartografii Head Office of Geodesy and Cartography'),
(51252, 'https://ror.org/01gxbnj52', 'en', 1, 'https://ror.org/01gxbnj52 Internews'),
(51253, 'https://ror.org/01gydgw38', 'en', 1, 'https://ror.org/01gydgw38 Trust for Vaccines & Immunization'),
(51254, 'https://ror.org/01gyggx34', 'no_lang_code', 1, 'https://ror.org/01gyggx34 Fukuoka Kinen Hospital ē¦å²”čØ˜åæµē—…é™¢'),
(51255, 'https://ror.org/01gz25n41', 'en', 1, 'https://ror.org/01gz25n41 Conservation, Food and Health Foundation'),
(51256, 'https://ror.org/01h1rba19', 'en', 1, 'https://ror.org/01h1rba19 Science Friday Initiative'),
(51257, 'https://ror.org/01h2nq698', 'no_lang_code', 1, 'https://ror.org/01h2nq698 Clementia Pharmaceuticals (France)'),
(51258, 'https://ror.org/01h43vb07', 'en', 1, 'https://ror.org/01h43vb07 North American Strawberry Growers Association'),
(51259, 'https://ror.org/01h44fm97', 'en', 1, 'https://ror.org/01h44fm97 Jewish United Fund of Metropolitan Chicago'),
(51260, 'https://ror.org/01h44t071', 'de', 1, 'https://ror.org/01h44t071 Therapeutische Drug Monitoring Kinder-und Jugendpsychiatrie'),
(51261, 'https://ror.org/01h5bb625', 'en', 1, 'https://ror.org/01h5bb625 Doctors @ Carindale Mall'),
(51262, 'https://ror.org/01h5ykb44', 'nl', 1, 'https://ror.org/01h5ykb44 AZ Sint-Lucas'),
(51263, 'https://ror.org/01h84at96', 'no_lang_code', 1, 'https://ror.org/01h84at96 Perstorp (Sweden)'),
(51264, 'https://ror.org/01h8fgw60', 'en', 1, 'https://ror.org/01h8fgw60 Tianjin Infectious Diseases Hospital å¤©ę“„åø‚ä¼ ęŸ“ē—…åŒ»é™¢'),
(51265, 'https://ror.org/01h98yw98', 'no_lang_code', 1, 'https://ror.org/01h98yw98 Serviceplan (Germany) Serviceplan Gruppe für innovative Kommunikation GmbH & Co. KG'),
(51266, 'https://ror.org/01h9c4672', 'en', 1, 'https://ror.org/01h9c4672 American Society for Gastrointestinal Endoscopy'),
(51267, 'https://ror.org/01h9fv209', 'en', 1, 'https://ror.org/01h9fv209 Greater Cincinnati Foundation'),
(51268, 'https://ror.org/01h9x6t73', 'no_lang_code', 1, 'https://ror.org/01h9x6t73 ROSA'),
(51269, 'https://ror.org/01haca926', 'en', 1, 'https://ror.org/01haca926 California Psychological Association'),
(51270, 'https://ror.org/01hbg9816', 'en', 1, 'https://ror.org/01hbg9816 YouthBuild'),
(51271, 'https://ror.org/01hbyc103', 'en', 1, 'https://ror.org/01hbyc103 Institut für Mittelalterforschung Institute for Medieval Research'),
(51272, 'https://ror.org/01hbz7518', 'no_lang_code', 1, 'https://ror.org/01hbz7518 Alexion Pharmaceuticals (France)'),
(51273, 'https://ror.org/01hd54v98', 'en', 1, 'https://ror.org/01hd54v98 Sleep Management Institute'),
(51274, 'https://ror.org/01hd95j60', 'en', 1, 'https://ror.org/01hd95j60 Bohemian Foundation'),
(51275, 'https://ror.org/01heq7e91', 'en', 1, 'https://ror.org/01heq7e91 Rotary Club of Seattle'),
(51276, 'https://ror.org/01hfdsp13', 'no_lang_code', 1, 'https://ror.org/01hfdsp13 Vifor Pharma (United Kingdom)'),
(51277, 'https://ror.org/01hfykw48', 'no_lang_code', 1, 'https://ror.org/01hfykw48 Acucela (United States)'),
(51278, 'https://ror.org/01hg94g33', 'en', 1, 'https://ror.org/01hg94g33 George and Mary Josephine Hamman Foundation'),
(51279, 'https://ror.org/01hgje476', 'en', 1, 'https://ror.org/01hgje476 Children Youth and Family Collaborative'),
(51280, 'https://ror.org/01hhamj32', 'en', 1, 'https://ror.org/01hhamj32 Wildlife Society Alauda'),
(51281, 'https://ror.org/01hhs1p93', 'fr', 1, 'https://ror.org/01hhs1p93 Saint Laurent Polyclinique'),
(51282, 'https://ror.org/01hjfcg50', 'en', 1, 'https://ror.org/01hjfcg50 Ondo State Primary Health Care Development Board'),
(51283, 'https://ror.org/01hp17k95', 'no_lang_code', 1, 'https://ror.org/01hp17k95 BioKinetic Europe (United Kingdom)'),
(51284, 'https://ror.org/01hp3n521', 'en', 1, 'https://ror.org/01hp3n521 Passport Health'),
(51285, 'https://ror.org/01hppyk14', 'en', 1, 'https://ror.org/01hppyk14 New Philanthropy Capital'),
(51286, 'https://ror.org/01hshyz77', 'en', 1, 'https://ror.org/01hshyz77 Campbell Institute'),
(51287, 'https://ror.org/01ht0p351', 'en', 1, 'https://ror.org/01ht0p351 Agricultural Technology Adoption Initiative'),
(51288, 'https://ror.org/01htgmk28', 'en', 1, 'https://ror.org/01htgmk28 NeuroDevelopment Center'),
(51289, 'https://ror.org/01htyqs73', 'en', 1, 'https://ror.org/01htyqs73 Institute for Research on Unlimited Love'),
(51290, 'https://ror.org/01hvxhn04', 'en', 1, 'https://ror.org/01hvxhn04 American Society of Naturalist'),
(51291, 'https://ror.org/01hzj3v30', 'no_lang_code', 1, 'https://ror.org/01hzj3v30 NeuroDerm (Israel)'),
(51292, 'https://ror.org/01j1w4v71', 'it', 1, 'https://ror.org/01j1w4v71 Azienda UnitĆ  Sanitaria Locale Piacenza'),
(51293, 'https://ror.org/01j36ak87', 'en', 1, 'https://ror.org/01j36ak87 Mansfield Orthopaedics'),
(51294, 'https://ror.org/01j4pjp70', 'en', 1, 'https://ror.org/01j4pjp70 Ophthalmic Consultants of Long Island'),
(51295, 'https://ror.org/01j5mtg86', 'en', 1, 'https://ror.org/01j5mtg86 Coleman Associates'),
(51296, 'https://ror.org/01j5zmq23', 'en', 1, 'https://ror.org/01j5zmq23 Initial Teaching Alphabet Foundation'),
(51297, 'https://ror.org/01j7m8515', 'no_lang_code', 1, 'https://ror.org/01j7m8515 Spragens and Associates (United States)'),
(51298, 'https://ror.org/01j7rg942', 'en', 1, 'https://ror.org/01j7rg942 Urology Associates of North Texas'),
(51299, 'https://ror.org/01j7stt33', 'it', 1, 'https://ror.org/01j7stt33 Network Italiano Per la Bioterapia Dei Tumori'),
(51300, 'https://ror.org/01j8qgg43', 'de', 1, 'https://ror.org/01j8qgg43 Joachim Herz Stiftung'),
(51301, 'https://ror.org/01jaz1w65', 'no_lang_code', 1, 'https://ror.org/01jaz1w65 Fabio Perini (Italy)'),
(51302, 'https://ror.org/01jcaat98', 'no_lang_code', 1, 'https://ror.org/01jcaat98 Crown Holdings (United States)'),
(51303, 'https://ror.org/01jce8981', 'no_lang_code', 1, 'https://ror.org/01jce8981 Mitsubishi Corporation (United States)'),
(51304, 'https://ror.org/01jdhsq12', 'de', 1, 'https://ror.org/01jdhsq12 AGO Research GmbH'),
(51305, 'https://ror.org/01jetvm74', 'no_lang_code', 1, 'https://ror.org/01jetvm74 Windmill Health Technologies (India)'),
(51306, 'https://ror.org/01jfwp053', 'no_lang_code', 1, 'https://ror.org/01jfwp053 Aviragen Therapeutics (Australia)'),
(51307, 'https://ror.org/01jk08v54', 'no_lang_code', 1, 'https://ror.org/01jk08v54 Grohe (Germany)'),
(51308, 'https://ror.org/01jmrmv15', 'no_lang_code', 1, 'https://ror.org/01jmrmv15 Swiss Cardio Technologies (Switzerland)'),
(51309, 'https://ror.org/01jmtnr89', 'en', 1, 'https://ror.org/01jmtnr89 Passano Foundation'),
(51310, 'https://ror.org/01jr5xr29', 'en', 1, 'https://ror.org/01jr5xr29 Preeclampsia Foundation'),
(51311, 'https://ror.org/01jrkry66', 'no_lang_code', 1, 'https://ror.org/01jrkry66 OpenText (Luxembourg)'),
(51312, 'https://ror.org/01jrqwn31', 'no_lang_code', 1, 'https://ror.org/01jrqwn31 GC Corporation (Japan)'),
(51313, 'https://ror.org/01jxvhp27', 'no_lang_code', 1, 'https://ror.org/01jxvhp27 Hisamitsu Pharmaceutical (Japan) ä¹…å…‰č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(51314, 'https://ror.org/01jya0847', 'no_lang_code', 1, 'https://ror.org/01jya0847 Vtesse (United States)'),
(51315, 'https://ror.org/01jz68c66', 'en', 1, 'https://ror.org/01jz68c66 Joe Andruzzi Foundation'),
(51316, 'https://ror.org/01k02wt67', 'en', 1, 'https://ror.org/01k02wt67 Society of Health and Physical Educators'),
(51317, 'https://ror.org/01k15w004', 'en', 1, 'https://ror.org/01k15w004 Sarcoma Oncology Center'),
(51318, 'https://ror.org/01k931w67', 'en', 1, 'https://ror.org/01k931w67 Goldsmith Family Foundation'),
(51319, 'https://ror.org/01karna91', 'en', 1, 'https://ror.org/01karna91 Health Research Foundation'),
(51320, 'https://ror.org/01kc20959', 'en', 1, 'https://ror.org/01kc20959 Urological Society of Australia and New Zealand'),
(51321, 'https://ror.org/01ke5wn61', 'en', 1, 'https://ror.org/01ke5wn61 PodřipskĆ” Hospital and Polyclinic'),
(51322, 'https://ror.org/01kenqt68', 'no_lang_code', 1, 'https://ror.org/01kenqt68 Kyorin Holdings (Japan)'),
(51323, 'https://ror.org/01kfs3w30', 'en', 1, 'https://ror.org/01kfs3w30 RESULTS and RESULTS Educational Fund'),
(51324, 'https://ror.org/01kg37d11', 'no_lang_code', 1, 'https://ror.org/01kg37d11 Deutz (Germany)'),
(51325, 'https://ror.org/01kgb3c72', 'en', 1, 'https://ror.org/01kgb3c72 Kennedys Disease Association'),
(51326, 'https://ror.org/01kk6dc84', 'en', 1, 'https://ror.org/01kk6dc84 Zemaitija National Park Žemaitijos Nacionalinio Parko'),
(51327, 'https://ror.org/01kk89q14', 'en', 1, 'https://ror.org/01kk89q14 Fund For New Jersey'),
(51328, 'https://ror.org/01kkt1z73', 'en', 1, 'https://ror.org/01kkt1z73 Windrider Institute'),
(51329, 'https://ror.org/01km88n73', 'tr', 1, 'https://ror.org/01km88n73 Marmara Üniversitesi Eğitim ve Araştırma Hastanesi'),
(51330, 'https://ror.org/01kntxs33', 'no_lang_code', 1, 'https://ror.org/01kntxs33 Enviu (Netherlands)'),
(51331, 'https://ror.org/01kqg4m05', 'en', 1, 'https://ror.org/01kqg4m05 American International Health Alliance'),
(51332, 'https://ror.org/01ksb8987', 'en', 1, 'https://ror.org/01ksb8987 LibForAll Foundation'),
(51333, 'https://ror.org/01ksbcg70', 'no_lang_code', 1, 'https://ror.org/01ksbcg70 Endress Hauser Messtechnik (Germany)'),
(51334, 'https://ror.org/01kv2k333', 'en', 1, 'https://ror.org/01kv2k333 Harvard-Yenching Institute'),
(51335, 'https://ror.org/01kvepn75', 'es', 1, 'https://ror.org/01kvepn75 Instituto Palacios'),
(51336, 'https://ror.org/01kvftm17', 'en', 1, 'https://ror.org/01kvftm17 Aga Khan Foundation'),
(51337, 'https://ror.org/01kvsqe61', 'no_lang_code', 1, 'https://ror.org/01kvsqe61 CarboTech (Germany)'),
(51338, 'https://ror.org/01kxr3c26', 'en', 1, 'https://ror.org/01kxr3c26 Parkinson''s NSW'),
(51339, 'https://ror.org/01ky9zs74', 'en', 1, 'https://ror.org/01ky9zs74 Pritzker Traubert Family Foundation'),
(51340, 'https://ror.org/01kypm263', 'en', 1, 'https://ror.org/01kypm263 Kyungpook National University Medical Center'),
(51341, 'https://ror.org/01kzmqh11', 'en', 1, 'https://ror.org/01kzmqh11 Proteus Digital Health'),
(51342, 'https://ror.org/01m08pe77', 'en', 1, 'https://ror.org/01m08pe77 Central Kentucky Research Associates'),
(51343, 'https://ror.org/01m1n7283', 'en', 1, 'https://ror.org/01m1n7283 Jim Joseph Foundation'),
(51344, 'https://ror.org/01m1p2k59', 'no_lang_code', 1, 'https://ror.org/01m1p2k59 MetaMetrics (United States)'),
(51345, 'https://ror.org/01m1se903', 'en', 1, 'https://ror.org/01m1se903 Abney Foundation'),
(51346, 'https://ror.org/01m2t4z13', 'en', 1, 'https://ror.org/01m2t4z13 Clinical Research Solutions'),
(51347, 'https://ror.org/01m3ea752', 'no_lang_code', 1, 'https://ror.org/01m3ea752 Boehringer Ingelheim (Latvia)'),
(51348, 'https://ror.org/01m3zmc09', 'en', 1, 'https://ror.org/01m3zmc09 What Kids Can Do'),
(51349, 'https://ror.org/01m423d85', 'no_lang_code', 1, 'https://ror.org/01m423d85 Buddhachinaraj Hospital'),
(51350, 'https://ror.org/01m665265', 'en', 1, 'https://ror.org/01m665265 Mindwires Consulting'),
(51351, 'https://ror.org/01m74as88', 'en', 1, 'https://ror.org/01m74as88 Third People ''s Hospital of Liaoyang'),
(51352, 'https://ror.org/01m9bsg74', 'en', 1, 'https://ror.org/01m9bsg74 Four Seasons'),
(51353, 'https://ror.org/01m9jhr72', 'en', 1, 'https://ror.org/01m9jhr72 Finnish Lung Health Association'),
(51354, 'https://ror.org/01mahh263', 'en', 1, 'https://ror.org/01mahh263 Huntington Society of Canada'),
(51355, 'https://ror.org/01md9rj25', 'en', 1, 'https://ror.org/01md9rj25 Cave Research Foundation'),
(51356, 'https://ror.org/01me3x819', 'en', 1, 'https://ror.org/01me3x819 Everychild Foundation'),
(51357, 'https://ror.org/01mejbd78', 'en', 1, 'https://ror.org/01mejbd78 Venice Family Clinic'),
(51358, 'https://ror.org/01mf0t386', 'no_lang_code', 1, 'https://ror.org/01mf0t386 Upsher-Smith Laboratories (United Kingdom)'),
(51359, 'https://ror.org/01mfcg760', 'no_lang_code', 1, 'https://ror.org/01mfcg760 Quantum Experimental (Spain)'),
(51360, 'https://ror.org/01mfkhd73', 'en', 1, 'https://ror.org/01mfkhd73 Japan ICU Foundation'),
(51361, 'https://ror.org/01mhzrb93', 'it', 1, 'https://ror.org/01mhzrb93 Fondazione Ricerca Molinette'),
(51362, 'https://ror.org/01mj4k378', 'en', 1, 'https://ror.org/01mj4k378 Medicort Sports & Orthopedic Care'),
(51363, 'https://ror.org/01mk7gk80', 'en', 1, 'https://ror.org/01mk7gk80 International Justice Mission'),
(51364, 'https://ror.org/01mmm4p44', 'en', 1, 'https://ror.org/01mmm4p44 Hospital 463 People''s Liberation Army č§£ę”¾å†›å››å…­äø‰åŒ»é™¢'),
(51365, 'https://ror.org/01mmnen89', 'en', 1, 'https://ror.org/01mmnen89 Charles and Mildred Schnurmacher Foundation'),
(51366, 'https://ror.org/01mmsh574', 'en', 1, 'https://ror.org/01mmsh574 Moody Foundation'),
(51367, 'https://ror.org/01mprm944', 'en', 1, 'https://ror.org/01mprm944 Foundation for Global Scholars'),
(51368, 'https://ror.org/01mrh1227', 'no_lang_code', 1, 'https://ror.org/01mrh1227 Koenig & Bauer (Germany)'),
(51369, 'https://ror.org/01mrvqn21', 'en', 1, 'https://ror.org/01mrvqn21 EuroQol Research Foundation'),
(51370, 'https://ror.org/01msnnq69', 'no_lang_code', 1, 'https://ror.org/01msnnq69 Novartis (Sweden)'),
(51371, 'https://ror.org/01mvx0t15', 'en', 1, 'https://ror.org/01mvx0t15 Lake OB/GYN Associates of Mid-Florida'),
(51372, 'https://ror.org/01mx76n22', 'en', 1, 'https://ror.org/01mx76n22 Department of Trade, Industry and Competition'),
(51373, 'https://ror.org/01myvh111', 'en', 1, 'https://ror.org/01myvh111 Lambda Therapeutic Research'),
(51374, 'https://ror.org/01mzeb713', 'en', 1, 'https://ror.org/01mzeb713 Cosmetic Laser Dermatology'),
(51375, 'https://ror.org/01mzxrp73', 'en', 1, 'https://ror.org/01mzxrp73 Cancer and Polio Research Fund'),
(51376, 'https://ror.org/01n03de84', 'en', 1, 'https://ror.org/01n03de84 Jack Miller Center'),
(51377, 'https://ror.org/01n0cq521', 'en', 1, 'https://ror.org/01n0cq521 Pasteur Foundation'),
(51378, 'https://ror.org/01n4dr964', 'en', 1, 'https://ror.org/01n4dr964 Latino/a Educational Achievement Project'),
(51379, 'https://ror.org/01n6xvd93', 'en', 1, 'https://ror.org/01n6xvd93 Rheumatology Theraputics Medical Center'),
(51380, 'https://ror.org/01na6q190', 'no_lang_code', 1, 'https://ror.org/01na6q190 Wavin (Netherlands)'),
(51381, 'https://ror.org/01naky322', 'no_lang_code', 1, 'https://ror.org/01naky322 Pinnacle Trials (United States)'),
(51382, 'https://ror.org/01nbe0380', 'en', 1, 'https://ror.org/01nbe0380 National Public Education Support Fund'),
(51383, 'https://ror.org/01nc0cp29', 'no_lang_code', 1, 'https://ror.org/01nc0cp29 United Parcel Service (United States)'),
(51384, 'https://ror.org/01nd4v777', 'en', 1, 'https://ror.org/01nd4v777 Children Now'),
(51385, 'https://ror.org/01ne4aa08', 'en', 1, 'https://ror.org/01ne4aa08 British Occupational Health Research Foundation'),
(51386, 'https://ror.org/01nehjf29', 'no_lang_code', 1, 'https://ror.org/01nehjf29 Microsoft (Finland)'),
(51387, 'https://ror.org/01nfaax03', 'en', 1, 'https://ror.org/01nfaax03 Fryderyk Chopin Institute Narodowy Instytut Fryderyka Chopina'),
(51388, 'https://ror.org/01nhcgj20', 'it', 1, 'https://ror.org/01nhcgj20 Ospedali Riuniti Marche Nord'),
(51389, 'https://ror.org/01nhct278', 'en', 1, 'https://ror.org/01nhct278 International Transplant Nurses Society'),
(51390, 'https://ror.org/01nj1bs84', 'no_lang_code', 1, 'https://ror.org/01nj1bs84 AdminiTrust'),
(51391, 'https://ror.org/01nm8ww36', 'en', 1, 'https://ror.org/01nm8ww36 South Dakota Department Of Education'),
(51392, 'https://ror.org/01nmscb33', 'en', 1, 'https://ror.org/01nmscb33 American Society of Pediatric Otolaryngology'),
(51393, 'https://ror.org/01nn90r09', 'en', 1, 'https://ror.org/01nn90r09 British Association for American Studies'),
(51394, 'https://ror.org/01nnbvh24', 'en', 1, 'https://ror.org/01nnbvh24 Potlatch Fund'),
(51395, 'https://ror.org/01nndby33', 'no_lang_code', 1, 'https://ror.org/01nndby33 Rittal (Germany)'),
(51396, 'https://ror.org/01npzgy86', 'en', 1, 'https://ror.org/01npzgy86 Lutheran Medical Group'),
(51397, 'https://ror.org/01ntjaz71', 'en', 1, 'https://ror.org/01ntjaz71 Blanche Davis Moore Foundation'),
(51398, 'https://ror.org/01nxwmg26', 'en', 1, 'https://ror.org/01nxwmg26 Georgia Urology'),
(51399, 'https://ror.org/01ny43313', 'no_lang_code', 1, 'https://ror.org/01ny43313 Orion Corporation (United Kingdom)'),
(51400, 'https://ror.org/01ny4we05', 'en', 1, 'https://ror.org/01ny4we05 Generation Foundation'),
(51401, 'https://ror.org/01nygqt57', 'en', 1, 'https://ror.org/01nygqt57 Wegene Ethiopian Foundation'),
(51402, 'https://ror.org/01p0fnz19', 'en', 1, 'https://ror.org/01p0fnz19 Fletcher Jones Foundation'),
(51403, 'https://ror.org/01p0hfz77', 'en', 1, 'https://ror.org/01p0hfz77 ACVO Vision for Animals Foundation'),
(51404, 'https://ror.org/01p0nd878', 'no_lang_code', 1, 'https://ror.org/01p0nd878 Biogen (Netherlands)'),
(51405, 'https://ror.org/01p0x0j97', 'en', 1, 'https://ror.org/01p0x0j97 United Way of King County'),
(51406, 'https://ror.org/01p21bq81', 'no_lang_code', 1, 'https://ror.org/01p21bq81 Shima Seiki (Japan) å³¶ē²¾ę©Ÿč£½ä½œę‰€'),
(51407, 'https://ror.org/01p231980', 'en', 1, 'https://ror.org/01p231980 Mike O''Callaghan Federal Medical Center'),
(51408, 'https://ror.org/01p35qm90', 'de', 1, 'https://ror.org/01p35qm90 HNO-Praxis'),
(51409, 'https://ror.org/01p3zwg66', 'no_lang_code', 1, 'https://ror.org/01p3zwg66 Richard Wolf (Germany)'),
(51410, 'https://ror.org/01p4rdh72', 'no_lang_code', 1, 'https://ror.org/01p4rdh72 Forum 50%'),
(51411, 'https://ror.org/01p7bsb42', 'en', 1, 'https://ror.org/01p7bsb42 St. Vladimir Children''s Moscow Clinical Hospital Š”Š²ŃŃ‚Š¾-ВлаГимирский Š”ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° Москва'),
(51412, 'https://ror.org/01p7hf548', 'en', 1, 'https://ror.org/01p7hf548 Kato Foundation for Promotion of Science å…¬ē›Šč²”å›£ę³•äŗŗ åŠ č—¤ē§‘å­¦ęŒÆčˆˆä¼š'),
(51413, 'https://ror.org/01p87k189', 'en', 1, 'https://ror.org/01p87k189 American Heart Institute'),
(51414, 'https://ror.org/01pb0m710', 'el', 1, 'https://ror.org/01pb0m710 SciFY'),
(51415, 'https://ror.org/01pdc9z31', 'en', 1, 'https://ror.org/01pdc9z31 InterAction'),
(51416, 'https://ror.org/01pfv2y33', 'en', 1, 'https://ror.org/01pfv2y33 Amyloidosis Foundation'),
(51417, 'https://ror.org/01pg9bv14', 'pt', 1, 'https://ror.org/01pg9bv14 Hospital Haroldo JuaƧaba'),
(51418, 'https://ror.org/01pgbc160', 'en', 1, 'https://ror.org/01pgbc160 Japan Foundation Manila'),
(51419, 'https://ror.org/01pgead21', 'no_lang_code', 1, 'https://ror.org/01pgead21 Apotex (Canada)'),
(51420, 'https://ror.org/01pgn1y88', 'en', 1, 'https://ror.org/01pgn1y88 ActionAid'),
(51421, 'https://ror.org/01pgw9p53', 'en', 1, 'https://ror.org/01pgw9p53 Grantsmanship Center'),
(51422, 'https://ror.org/01ph20k51', 'no_lang_code', 1, 'https://ror.org/01ph20k51 Visterra (United States)'),
(51423, 'https://ror.org/01phxzc94', 'en', 1, 'https://ror.org/01phxzc94 Grantmakers Concerned with Immigrants and Refugees'),
(51424, 'https://ror.org/01pjqkg29', 'en', 1, 'https://ror.org/01pjqkg29 Fats and Proteins Research Foundation'),
(51425, 'https://ror.org/01pmtzj45', 'en', 1, 'https://ror.org/01pmtzj45 Ellipsis'),
(51426, 'https://ror.org/01pp7xa52', 'en', 1, 'https://ror.org/01pp7xa52 Crohn''s & Colitis Australia'),
(51427, 'https://ror.org/01ppj1b82', 'en', 1, 'https://ror.org/01ppj1b82 Rippel Foundation'),
(51428, 'https://ror.org/01ppn7a90', 'no_lang_code', 1, 'https://ror.org/01ppn7a90 Nisshinbo Holdings (Japan) ę—„ęø…ē“”ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(51429, 'https://ror.org/01prhq989', 'en', 1, 'https://ror.org/01prhq989 Corporation for Public Broadcasting'),
(51430, 'https://ror.org/01ps1fe93', 'en', 1, 'https://ror.org/01ps1fe93 Dr V Seshiah Diabetes Research Institute'),
(51431, 'https://ror.org/01psax922', 'en', 1, 'https://ror.org/01psax922 Association of American Railroads'),
(51432, 'https://ror.org/01psm3828', 'no_lang_code', 1, 'https://ror.org/01psm3828 Novartis (Israel)'),
(51433, 'https://ror.org/01pvzsz53', 'no_lang_code', 1, 'https://ror.org/01pvzsz53 Mƶlnlycke Health Care (Sweden)'),
(51434, 'https://ror.org/01pw21703', 'en', 1, 'https://ror.org/01pw21703 Danish Cattle Research Centre Danmarks KvƦgforskningscenter'),
(51435, 'https://ror.org/01pxgad11', 'en', 1, 'https://ror.org/01pxgad11 Advanced Dermatology & Cosmetic Surgery'),
(51436, 'https://ror.org/01pxm4a45', 'en', 1, 'https://ror.org/01pxm4a45 Kozlovsky Delay & Winter Eye Consultants'),
(51437, 'https://ror.org/01pxwcd09', 'en', 1, 'https://ror.org/01pxwcd09 Ralph C. Wilson, Jr. Foundation'),
(51438, 'https://ror.org/01pys9003', 'pl', 1, 'https://ror.org/01pys9003 Hospicjum im. Ks. Eugeniusza Dutkiewicza SAC'),
(51439, 'https://ror.org/01q2gd226', 'no_lang_code', 1, 'https://ror.org/01q2gd226 Nordmark (Germany)'),
(51440, 'https://ror.org/01q3qfk61', 'en', 1, 'https://ror.org/01q3qfk61 Southbay Pharma Research'),
(51441, 'https://ror.org/01q8dxj28', 'en', 1, 'https://ror.org/01q8dxj28 American Fidelity Foundation'),
(51442, 'https://ror.org/01q9r6465', 'en', 1, 'https://ror.org/01q9r6465 Geraldine R. Dodge Foundation'),
(51443, 'https://ror.org/01qa22e60', 'en', 1, 'https://ror.org/01qa22e60 Marguerite Casey Foundation'),
(51444, 'https://ror.org/01qa8mn55', 'en', 1, 'https://ror.org/01qa8mn55 Taiyuan Maternity and Child Care Hospital å¤ŖåŽŸåø‚å¦‡å¹¼äæå„é™¢'),
(51445, 'https://ror.org/01qb3tn52', 'en', 1, 'https://ror.org/01qb3tn52 Surge Institute'),
(51446, 'https://ror.org/01qbvd385', 'en', 1, 'https://ror.org/01qbvd385 Cervical Spine Research Society'),
(51447, 'https://ror.org/01qcg7857', 'en', 1, 'https://ror.org/01qcg7857 New Teacher Center'),
(51448, 'https://ror.org/01qeds693', 'en', 1, 'https://ror.org/01qeds693 Columbia Foundation'),
(51449, 'https://ror.org/01qfen484', 'en', 1, 'https://ror.org/01qfen484 Association of Management Development Institutions in South Asia'),
(51450, 'https://ror.org/01qfkht77', 'en', 1, 'https://ror.org/01qfkht77 Independent Social Research Foundation'),
(51451, 'https://ror.org/01qgvfw88', 'en', 1, 'https://ror.org/01qgvfw88 Kettering Family Foundation'),
(51452, 'https://ror.org/01qgzjd70', 'en', 1, 'https://ror.org/01qgzjd70 Indonesia Toray Science Foundation'),
(51453, 'https://ror.org/01qh4s373', 'en', 1, 'https://ror.org/01qh4s373 South Carolina Oncology Associates'),
(51454, 'https://ror.org/01qk32r63', 'en', 1, 'https://ror.org/01qk32r63 National Aids Control Council'),
(51455, 'https://ror.org/01qk6rn93', 'en', 1, 'https://ror.org/01qk6rn93 Center for Digestive and Liver Diseases'),
(51456, 'https://ror.org/01qnb0r37', 'en', 1, 'https://ror.org/01qnb0r37 Greater Tacoma Community Foundation'),
(51457, 'https://ror.org/01qq0qd43', 'en', 1, 'https://ror.org/01qq0qd43 Shunyi Hospital of Beijing Traditional Chinese Medicine Hospital åŒ—äŗ¬äø­åŒ»åŒ»é™¢é”ŗä¹‰åŒ»é™¢'),
(51458, 'https://ror.org/01qwj0517', 'no_lang_code', 1, 'https://ror.org/01qwj0517 Chaparral Energy (United States)'),
(51459, 'https://ror.org/01qzsn924', 'no_lang_code', 1, 'https://ror.org/01qzsn924 İlkogen (Turkey)'),
(51460, 'https://ror.org/01r2r9d33', 'en', 1, 'https://ror.org/01r2r9d33 AMCR Institute'),
(51461, 'https://ror.org/01r2x3m69', 'no_lang_code', 1, 'https://ror.org/01r2x3m69 Paul Wurth (Luxembourg)'),
(51462, 'https://ror.org/01r4jg965', 'en', 1, 'https://ror.org/01r4jg965 Virginia Clinical Research'),
(51463, 'https://ror.org/01r55tz35', 'en', 1, 'https://ror.org/01r55tz35 TrustAfrica'),
(51464, 'https://ror.org/01r89aa81', 'no_lang_code', 1, 'https://ror.org/01r89aa81 CME Group (United States)'),
(51465, 'https://ror.org/01r9fcy75', 'en', 1, 'https://ror.org/01r9fcy75 Alpha Omicron Pi Foundation'),
(51466, 'https://ror.org/01rc1wg41', 'en', 1, 'https://ror.org/01rc1wg41 National Council on Teacher Quality'),
(51467, 'https://ror.org/01rdg4502', 'en', 1, 'https://ror.org/01rdg4502 Museum of Vertebrate Zoology'),
(51468, 'https://ror.org/01rh2et08', 'en', 1, 'https://ror.org/01rh2et08 Dermatology, Laser & Vein Specialists of the Carolinas'),
(51469, 'https://ror.org/01rhff309', 'en', 1, 'https://ror.org/01rhff309 British Antarctic Survey'),
(51470, 'https://ror.org/01rk2ws36', 'no_lang_code', 1, 'https://ror.org/01rk2ws36 Maschinenfabrik Reinhausen (Germany)'),
(51471, 'https://ror.org/01rkhv978', 'en', 1, 'https://ror.org/01rkhv978 Development Fund Utviklingsfondet'),
(51472, 'https://ror.org/01rkjnh80', 'en', 1, 'https://ror.org/01rkjnh80 Samatvam Endocrinology Diabetes Centre'),
(51473, 'https://ror.org/01rpp5211', 'en', 1, 'https://ror.org/01rpp5211 New York Community Trust'),
(51474, 'https://ror.org/01rq5xv52', 'no_lang_code', 1, 'https://ror.org/01rq5xv52 Avery Design Systems (United States)'),
(51475, 'https://ror.org/01rqq3d62', 'it', 1, 'https://ror.org/01rqq3d62 Azienda UnitĆ  Sanitaria Locale Della Romagna'),
(51476, 'https://ror.org/01rra6s55', 'en', 1, 'https://ror.org/01rra6s55 Opportunity International'),
(51477, 'https://ror.org/01rt6cd77', 'en', 1, 'https://ror.org/01rt6cd77 Keiki O Ka ā€˜ Āina Family Learning Centers'),
(51478, 'https://ror.org/01rv0fx88', 'en', 1, 'https://ror.org/01rv0fx88 Chief Inspectorate of Environmental Protection'),
(51479, 'https://ror.org/01rxe9p77', 'en', 1, 'https://ror.org/01rxe9p77 Child Neurology Foundation'),
(51480, 'https://ror.org/01s09ha26', 'en', 1, 'https://ror.org/01s09ha26 Synergy Research Centers'),
(51481, 'https://ror.org/01s0z9h22', 'en', 1, 'https://ror.org/01s0z9h22 British Society for Cell Biology'),
(51482, 'https://ror.org/01s1pcz40', 'en', 1, 'https://ror.org/01s1pcz40 Pittsburgh Promise Foundation'),
(51483, 'https://ror.org/01s24yr42', 'en', 1, 'https://ror.org/01s24yr42 Korean Society of Critical Care Medicine ėŒ€ķ•œģ¤‘ķ™˜ģžģ˜ķ•™ķšŒ'),
(51484, 'https://ror.org/01s33dn56', 'no_lang_code', 1, 'https://ror.org/01s33dn56 Oncotherapeutics (United States)'),
(51485, 'https://ror.org/01s33rn67', 'no_lang_code', 1, 'https://ror.org/01s33rn67 Next Dimension Technologies (United States)'),
(51486, 'https://ror.org/01s3w8y48', 'de', 1, 'https://ror.org/01s3w8y48 StƤdtisches Klinikum Solingen'),
(51487, 'https://ror.org/01s45wz62', 'en', 1, 'https://ror.org/01s45wz62 Lucas Foundation'),
(51488, 'https://ror.org/01s49js04', 'no_lang_code', 1, 'https://ror.org/01s49js04 Kraft Heinz (United States)'),
(51489, 'https://ror.org/01s4ady16', 'no_lang_code', 1, 'https://ror.org/01s4ady16 Arafarma Group (Spain)'),
(51490, 'https://ror.org/01s5m6w98', 'no_lang_code', 1, 'https://ror.org/01s5m6w98 DyStar (Germany)'),
(51491, 'https://ror.org/01s649n52', 'en', 1, 'https://ror.org/01s649n52 Nautilus Ventures'),
(51492, 'https://ror.org/01s722583', 'en', 1, 'https://ror.org/01s722583 Clinical Study Center of Asheville'),
(51493, 'https://ror.org/01s73wp90', 'no_lang_code', 1, 'https://ror.org/01s73wp90 Scheck & Siress (United States)'),
(51494, 'https://ror.org/01s7ds279', 'no_lang_code', 1, 'https://ror.org/01s7ds279 Ishida Seisakusho (Japan) ēŸ³ē”°č£½ä½œę‰€'),
(51495, 'https://ror.org/01s7t9a67', 'en', 1, 'https://ror.org/01s7t9a67 CINTAS Foundation'),
(51496, 'https://ror.org/01sa13326', 'en', 1, 'https://ror.org/01sa13326 Specialized Dentistry of New York'),
(51497, 'https://ror.org/01satjx84', 'en', 1, 'https://ror.org/01satjx84 Vital Pakistan Trust'),
(51498, 'https://ror.org/01sbybp86', 'no_lang_code', 1, 'https://ror.org/01sbybp86 Wilson Therapeutics (United States)'),
(51499, 'https://ror.org/01scs7915', 'en', 1, 'https://ror.org/01scs7915 South Texas Accelerated Research Therapeutics'),
(51500, 'https://ror.org/01sdha619', 'no_lang_code', 1, 'https://ror.org/01sdha619 Ono Pharmaceutical (United Kingdom)'),
(51501, 'https://ror.org/01sdk1n29', 'en', 1, 'https://ror.org/01sdk1n29 Fuji Foundation for Protein Research ćƒ•ć‚”ć‚¦ć‚øćƒ¼ć‚æćƒ³ćƒ‘ć‚Æč³Ŗē ”ē©¶č²”å›£'),
(51502, 'https://ror.org/01se4qt95', 'no_lang_code', 1, 'https://ror.org/01se4qt95 Amada (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒžćƒ€'),
(51503, 'https://ror.org/01seepq35', 'en', 1, 'https://ror.org/01seepq35 American Research Center in Sofia Foundation'),
(51504, 'https://ror.org/01smjaq87', 'no_lang_code', 1, 'https://ror.org/01smjaq87 Pierre Fabre (United Kingdom)'),
(51505, 'https://ror.org/01smtb607', 'es', 1, 'https://ror.org/01smtb607 Hospital ClĆ­nica Benidorm'),
(51506, 'https://ror.org/01spdgx23', 'en', 1, 'https://ror.org/01spdgx23 Retina Associates of Western New York'),
(51507, 'https://ror.org/01spess76', 'no_lang_code', 1, 'https://ror.org/01spess76 Neoleukin Therapeutics (United Kingdom)'),
(51508, 'https://ror.org/01spkt797', 'de', 1, 'https://ror.org/01spkt797 Ihre-Radiologen'),
(51509, 'https://ror.org/01spqna17', 'en', 1, 'https://ror.org/01spqna17 Multicultural Center Prague MultikulturnĆ­ centrum Praha'),
(51510, 'https://ror.org/01sr0yp41', 'en', 1, 'https://ror.org/01sr0yp41 New York Oncology Hematology'),
(51511, 'https://ror.org/01srvtz98', 'en', 1, 'https://ror.org/01srvtz98 Donor Network West'),
(51512, 'https://ror.org/01ss9zs84', 'no_lang_code', 1, 'https://ror.org/01ss9zs84 Acuity Brands (United states)'),
(51513, 'https://ror.org/01stze803', 'da', 1, 'https://ror.org/01stze803 Familien Hede Nielsens Fond'),
(51514, 'https://ror.org/01swtxv06', 'en', 1, 'https://ror.org/01swtxv06 Jerusalem Fund'),
(51515, 'https://ror.org/01swy6e53', 'en', 1, 'https://ror.org/01swy6e53 AIMS Education Foundation'),
(51516, 'https://ror.org/01sxaaw11', 'en', 1, 'https://ror.org/01sxaaw11 Florida Center for Gastroenterology'),
(51517, 'https://ror.org/01t1aqm70', 'no_lang_code', 1, 'https://ror.org/01t1aqm70 Spectrum Brands (United States)'),
(51518, 'https://ror.org/01t2k3r89', 'no_lang_code', 1, 'https://ror.org/01t2k3r89 Aptevo Therapeutics (United Kingdom)'),
(51519, 'https://ror.org/01t418a56', 'pt', 1, 'https://ror.org/01t418a56 Fundação de Apoio ao Desenvolvimento da Computação Científica'),
(51520, 'https://ror.org/01t5r7875', 'en', 1, 'https://ror.org/01t5r7875 McCarthy Family Foundation'),
(51521, 'https://ror.org/01t731k54', 'en', 1, 'https://ror.org/01t731k54 Gamma Mu Foundation'),
(51522, 'https://ror.org/01t7m8f35', 'en', 1, 'https://ror.org/01t7m8f35 Heed Ophthalmic Foundation'),
(51523, 'https://ror.org/01t7x8s02', 'en', 1, 'https://ror.org/01t7x8s02 Boston Educational Development Foundation'),
(51524, 'https://ror.org/01t8ny673', 'no_lang_code', 1, 'https://ror.org/01t8ny673 Rehrig Pacific (United States)'),
(51525, 'https://ror.org/01t8wyd82', 'no_lang_code', 1, 'https://ror.org/01t8wyd82 SciencePharma (Poland)'),
(51526, 'https://ror.org/01tb3cd08', 'en', 1, 'https://ror.org/01tb3cd08 Pahara Institute'),
(51527, 'https://ror.org/01tbzkx87', 'en', 1, 'https://ror.org/01tbzkx87 Crime Prevention Center'),
(51528, 'https://ror.org/01tcwz823', 'en', 1, 'https://ror.org/01tcwz823 Oklahoma Department of Libraries'),
(51529, 'https://ror.org/01tf2gj84', 'en', 1, 'https://ror.org/01tf2gj84 Communities Foundation of Texas'),
(51530, 'https://ror.org/01tf5aq62', 'en', 1, 'https://ror.org/01tf5aq62 Ludwig Boltzmann Institute for COPD And Respiratory Epidemiology'),
(51531, 'https://ror.org/01tg0gj74', 'en', 1, 'https://ror.org/01tg0gj74 Justice in Aging'),
(51532, 'https://ror.org/01th7t610', 'en', 1, 'https://ror.org/01th7t610 Mental Health Research UK'),
(51533, 'https://ror.org/01tpcjr87', 'en', 1, 'https://ror.org/01tpcjr87 Innovative Clinical Research'),
(51534, 'https://ror.org/01tqjep44', 'no_lang_code', 1, 'https://ror.org/01tqjep44 Novasep (Germany)'),
(51535, 'https://ror.org/01tqqpv03', 'es', 1, 'https://ror.org/01tqqpv03 Sociedad EspaƱola de Farmacologƭa Clƭnica'),
(51536, 'https://ror.org/01trfwv98', 'en', 1, 'https://ror.org/01trfwv98 Boys and Girls Clubs'),
(51537, 'https://ror.org/01tshah34', 'no_lang_code', 1, 'https://ror.org/01tshah34 Roehm (Germany)'),
(51538, 'https://ror.org/01ttrzd54', 'en', 1, 'https://ror.org/01ttrzd54 Association for Historical Dialogue and Research'),
(51539, 'https://ror.org/01ttwsg70', 'de', 1, 'https://ror.org/01ttwsg70 Union postale universelle, Universal Postal Union'),
(51540, 'https://ror.org/01tvtt303', 'no_lang_code', 1, 'https://ror.org/01tvtt303 Addmedica (France)'),
(51541, 'https://ror.org/01twdvx49', 'da', 1, 'https://ror.org/01twdvx49 Danmarks Radio'),
(51542, 'https://ror.org/01tyb6p93', 'no_lang_code', 1, 'https://ror.org/01tyb6p93 Laboratorio De Aplicaciones Farmacodinamicas (Spain)'),
(51543, 'https://ror.org/01tzg3s04', 'no_lang_code', 1, 'https://ror.org/01tzg3s04 Celyad (Belgium)'),
(51544, 'https://ror.org/01v1fj170', 'en', 1, 'https://ror.org/01v1fj170 Infusion Associates'),
(51545, 'https://ror.org/01v1rey73', 'no_lang_code', 1, 'https://ror.org/01v1rey73 Pierian Biosciences (United States)'),
(51546, 'https://ror.org/01v2r3788', 'en', 1, 'https://ror.org/01v2r3788 National Institute of Public Cooperation and Child Development'),
(51547, 'https://ror.org/01v37t224', 'no_lang_code', 1, 'https://ror.org/01v37t224 Sherwin Williams (United States)'),
(51548, 'https://ror.org/01v3wjv31', 'en', 1, 'https://ror.org/01v3wjv31 Literacy Design Collaborative'),
(51549, 'https://ror.org/01v7k9n65', 'no_lang_code', 1, 'https://ror.org/01v7k9n65 Eli Lilly (Switzerland)'),
(51550, 'https://ror.org/01va8tm89', 'en', 1, 'https://ror.org/01va8tm89 Consortium for DEWATS Dissemination Society'),
(51551, 'https://ror.org/01vb1qg25', 'en', 1, 'https://ror.org/01vb1qg25 Center For Balanced Living'),
(51552, 'https://ror.org/01vc16c74', 'en', 1, 'https://ror.org/01vc16c74 Physiology Society of Southern Africa'),
(51553, 'https://ror.org/01vdmgn40', 'en', 1, 'https://ror.org/01vdmgn40 National Foundation for India'),
(51554, 'https://ror.org/01ve6sd67', 'en', 1, 'https://ror.org/01ve6sd67 Vital Voices'),
(51555, 'https://ror.org/01vec3g34', 'en', 1, 'https://ror.org/01vec3g34 Nashville Medical Research Institute'),
(51556, 'https://ror.org/01vf6nv75', 'en', 1, 'https://ror.org/01vf6nv75 Professional Assistance for Development Action'),
(51557, 'https://ror.org/01vkhxt72', 'en', 1, 'https://ror.org/01vkhxt72 Cummings Foundation'),
(51558, 'https://ror.org/01vnr7x82', 'de', 1, 'https://ror.org/01vnr7x82 Diabetes-Zentrum Quakenbrück'),
(51559, 'https://ror.org/01vpnjr66', 'en', 1, 'https://ror.org/01vpnjr66 Swiss Philanthropy Foundation'),
(51560, 'https://ror.org/01vpve811', 'en', 1, 'https://ror.org/01vpve811 District of Columbia College Access Program'),
(51561, 'https://ror.org/01vqcjq29', 'no_lang_code', 1, 'https://ror.org/01vqcjq29 Evestra (Germany)'),
(51562, 'https://ror.org/01vsrwr43', 'en', 1, 'https://ror.org/01vsrwr43 Drum Foundation'),
(51563, 'https://ror.org/01vst1n89', 'no_lang_code', 1, 'https://ror.org/01vst1n89 Diacon Hospital'),
(51564, 'https://ror.org/01vvfz714', 'en', 1, 'https://ror.org/01vvfz714 McLaren Northern Michigan'),
(51565, 'https://ror.org/01vvgpy65', 'en', 1, 'https://ror.org/01vvgpy65 Maryland Dermatology Laser Skin and Vein Institute'),
(51566, 'https://ror.org/01vwgk497', 'en', 1, 'https://ror.org/01vwgk497 CityBridge Education'),
(51567, 'https://ror.org/01vwv8r87', 'en', 1, 'https://ror.org/01vwv8r87 Joshua Frase Foundation'),
(51568, 'https://ror.org/01vwxyv67', 'en', 1, 'https://ror.org/01vwxyv67 Lynn Sage Cancer Research Foundation'),
(51569, 'https://ror.org/01w1k0456', 'no_lang_code', 1, 'https://ror.org/01w1k0456 Combat Medical (Spain)'),
(51570, 'https://ror.org/01w2zpd04', 'no_lang_code', 1, 'https://ror.org/01w2zpd04 T-Mobile (United States)'),
(51571, 'https://ror.org/01w3gev13', 'en', 1, 'https://ror.org/01w3gev13 American Public Human Services Association'),
(51572, 'https://ror.org/01w45kn29', 'no_lang_code', 1, 'https://ror.org/01w45kn29 Piramal (Germany)'),
(51573, 'https://ror.org/01w5nhx84', 'en', 1, 'https://ror.org/01w5nhx84 IVI Valencia Clinic'),
(51574, 'https://ror.org/01w63rj87', 'en', 1, 'https://ror.org/01w63rj87 Institute for Health Policy Solutions');
INSERT INTO `rors` VALUES
(51575, 'https://ror.org/01w6chh80', 'no_lang_code', 1, 'https://ror.org/01w6chh80 Kreussler (Germany)'),
(51576, 'https://ror.org/01w6hrf59', 'pt', 1, 'https://ror.org/01w6hrf59 Hospital Regional de São José Dr. Homero de Miranda Gomes'),
(51577, 'https://ror.org/01w78qg15', 'no_lang_code', 1, 'https://ror.org/01w78qg15 Daicel (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ć‚»ćƒ«'),
(51578, 'https://ror.org/01w7qtj07', 'en', 1, 'https://ror.org/01w7qtj07 Center for Strengthening the Teaching Profession'),
(51579, 'https://ror.org/01w7vwe52', 'en', 1, 'https://ror.org/01w7vwe52 Australasian Blistering Diseases Foundation'),
(51580, 'https://ror.org/01w8m1867', 'no_lang_code', 1, 'https://ror.org/01w8m1867 Novartis (Australia)'),
(51581, 'https://ror.org/01wa16j27', 'en', 1, 'https://ror.org/01wa16j27 Italian Sarcoma Group'),
(51582, 'https://ror.org/01wayad04', 'en', 1, 'https://ror.org/01wayad04 Centennial Medical Group'),
(51583, 'https://ror.org/01wb8d948', 'sv', 1, 'https://ror.org/01wb8d948 Hans Bang Stiftelsen'),
(51584, 'https://ror.org/01wew9097', 'en', 1, 'https://ror.org/01wew9097 Crown Property Bureau'),
(51585, 'https://ror.org/01wh3fp78', 'no_lang_code', 1, 'https://ror.org/01wh3fp78 Initiatives (Denmark)'),
(51586, 'https://ror.org/01wkath48', 'en', 1, 'https://ror.org/01wkath48 Fourth Hospital of Changsha é•æę²™åø‚ē¬¬å››åŒ»é™¢'),
(51587, 'https://ror.org/01wknzm08', 'en', 1, 'https://ror.org/01wknzm08 National Community Pharmacists Association'),
(51588, 'https://ror.org/01wkpqc56', 'en', 1, 'https://ror.org/01wkpqc56 Northwest Clinical Trials'),
(51589, 'https://ror.org/01wm6dg61', 'no_lang_code', 1, 'https://ror.org/01wm6dg61 Pivot Bio (United States)'),
(51590, 'https://ror.org/01wm82e23', 'en', 1, 'https://ror.org/01wm82e23 Medical Advanced Pain Specialists'),
(51591, 'https://ror.org/01wp6nz35', 'en', 1, 'https://ror.org/01wp6nz35 Kurt Gƶdel Society Kurt-Gƶdel-Gesellschaft'),
(51592, 'https://ror.org/01wpwah91', 'en', 1, 'https://ror.org/01wpwah91 FSG'),
(51593, 'https://ror.org/01wpwpn91', 'en', 1, 'https://ror.org/01wpwpn91 Therapeutic Health Services'),
(51594, 'https://ror.org/01wq69e31', 'pl', 1, 'https://ror.org/01wq69e31 Kostrzyca Forest Gene Bank'),
(51595, 'https://ror.org/01wsqv937', 'it', 1, 'https://ror.org/01wsqv937 Azienda Sanitaria Locale Viterbo'),
(51596, 'https://ror.org/01wsvqq22', 'en', 1, 'https://ror.org/01wsvqq22 Memorial Hermann The Woodlands Hospital'),
(51597, 'https://ror.org/01wwv4x50', 'en', 1, 'https://ror.org/01wwv4x50 Mount Vernon Cancer Centre'),
(51598, 'https://ror.org/01wx4a722', 'en', 1, 'https://ror.org/01wx4a722 WaterAid America'),
(51599, 'https://ror.org/01wx55d31', 'en', 1, 'https://ror.org/01wx55d31 Pulmonary and Allergy Associates'),
(51600, 'https://ror.org/01wyyby64', 'no_lang_code', 1, 'https://ror.org/01wyyby64 Oxurion (Ireland)'),
(51601, 'https://ror.org/01x5csq95', 'en', 1, 'https://ror.org/01x5csq95 Coalition to Transform Advanced Care'),
(51602, 'https://ror.org/01x5dfh38', 'en', 1, 'https://ror.org/01x5dfh38 Zhongshan People''s Hospital äø­å±±åø‚äŗŗę°‘åŒ»é™¢'),
(51603, 'https://ror.org/01x5ppp27', 'en', 1, 'https://ror.org/01x5ppp27 Partnership for Drug-Free Kids'),
(51604, 'https://ror.org/01x65sg43', 'en', 1, 'https://ror.org/01x65sg43 Muttart Foundation'),
(51605, 'https://ror.org/01x6s1m65', 'no_lang_code', 1, 'https://ror.org/01x6s1m65 Accord (United Kingdom)'),
(51606, 'https://ror.org/01x8qsj42', 'en', 1, 'https://ror.org/01x8qsj42 Chapman Foundations'),
(51607, 'https://ror.org/01xbg8m54', 'en', 1, 'https://ror.org/01xbg8m54 Youth Development Labs'),
(51608, 'https://ror.org/01xcva522', 'en', 1, 'https://ror.org/01xcva522 Petco Foundation'),
(51609, 'https://ror.org/01xd82d18', 'en', 1, 'https://ror.org/01xd82d18 PAST Foundation'),
(51610, 'https://ror.org/01xe96535', 'no_lang_code', 1, 'https://ror.org/01xe96535 Wonderland Nurserygoods (Taiwan)'),
(51611, 'https://ror.org/01xgsxb78', 'no_lang_code', 1, 'https://ror.org/01xgsxb78 Dushtha Shasthya Kendra'),
(51612, 'https://ror.org/01xh0ac86', 'en', 1, 'https://ror.org/01xh0ac86 San Diego County Library'),
(51613, 'https://ror.org/01xpmpn11', 'en', 1, 'https://ror.org/01xpmpn11 Atlantic Street Center'),
(51614, 'https://ror.org/01xrqp957', 'en', 1, 'https://ror.org/01xrqp957 Georgia Health Foundation'),
(51615, 'https://ror.org/01xvnnv03', 'en', 1, 'https://ror.org/01xvnnv03 Omni Eye Services'),
(51616, 'https://ror.org/01xxn5f34', 'en', 1, 'https://ror.org/01xxn5f34 Angelman Syndrome Foundation'),
(51617, 'https://ror.org/01xyac661', 'en', 1, 'https://ror.org/01xyac661 Colorado Joint Replacement'),
(51618, 'https://ror.org/01y2xw046', 'en', 1, 'https://ror.org/01y2xw046 Central Indiana Gastroenterology Group'),
(51619, 'https://ror.org/01y3pph13', 'fr', 1, 'https://ror.org/01y3pph13 Fondation Motrice'),
(51620, 'https://ror.org/01y4ngt02', 'en', 1, 'https://ror.org/01y4ngt02 Dimbleby Cancer Care'),
(51621, 'https://ror.org/01y63b286', 'en', 1, 'https://ror.org/01y63b286 National Centre for Advanced Studies in Humanities and Social Sciences'),
(51622, 'https://ror.org/01y6fbx98', 'no_lang_code', 1, 'https://ror.org/01y6fbx98 Apeel Sciences (United States)'),
(51623, 'https://ror.org/01y6tr744', 'en', 1, 'https://ror.org/01y6tr744 New Mexico State Library'),
(51624, 'https://ror.org/01y7b2q33', 'no_lang_code', 1, 'https://ror.org/01y7b2q33 Aava Medical Centre'),
(51625, 'https://ror.org/01y7ny159', 'no_lang_code', 1, 'https://ror.org/01y7ny159 Mitel (Canada)'),
(51626, 'https://ror.org/01y7px869', 'no_lang_code', 1, 'https://ror.org/01y7px869 Med Center'),
(51627, 'https://ror.org/01y8cpr39', 'en', 1, 'https://ror.org/01y8cpr39 Binzhou People''s Hospital ę»Øå·žäŗŗę°‘åŒ»é™¢'),
(51628, 'https://ror.org/01y8eh752', 'no_lang_code', 1, 'https://ror.org/01y8eh752 Strathmann (Germany)'),
(51629, 'https://ror.org/01y8wa902', 'en', 1, 'https://ror.org/01y8wa902 Panzi Foundation'),
(51630, 'https://ror.org/01y94yj57', 'no_lang_code', 1, 'https://ror.org/01y94yj57 Can-Fite BioPharma (Israel)'),
(51631, 'https://ror.org/01ya52t91', 'en', 1, 'https://ror.org/01ya52t91 National Center on Addiction and Substance Abuse at Columbia University'),
(51632, 'https://ror.org/01yb0qj30', 'en', 1, 'https://ror.org/01yb0qj30 National Endowment for Financial Education'),
(51633, 'https://ror.org/01ydxj048', 'en', 1, 'https://ror.org/01ydxj048 Rice Institute'),
(51634, 'https://ror.org/01yfxhp89', 'en', 1, 'https://ror.org/01yfxhp89 Ogród Zoologiczny we Wrocławiu Wrocław Zoo'),
(51635, 'https://ror.org/01yhac426', 'no_lang_code', 1, 'https://ror.org/01yhac426 Memjet (Ireland)'),
(51636, 'https://ror.org/01yjpd768', 'en', 1, 'https://ror.org/01yjpd768 International Order of Alhambra'),
(51637, 'https://ror.org/01yp0ar11', 'en', 1, 'https://ror.org/01yp0ar11 Biologos Foundation'),
(51638, 'https://ror.org/01ypd6q38', 'en', 1, 'https://ror.org/01ypd6q38 North American Menopause Society'),
(51639, 'https://ror.org/01ypfvm35', 'nl', 1, 'https://ror.org/01ypfvm35 Dr Kolbach Kliniek'),
(51640, 'https://ror.org/01ypy9x82', 'en', 1, 'https://ror.org/01ypy9x82 Georgia Center for Women'),
(51641, 'https://ror.org/01yqat764', 'no_lang_code', 1, 'https://ror.org/01yqat764 CommScope (United States)'),
(51642, 'https://ror.org/01yqkfx81', 'en', 1, 'https://ror.org/01yqkfx81 Translational Research in Oncology'),
(51643, 'https://ror.org/01yr4dd89', 'da', 1, 'https://ror.org/01yr4dd89 Hesteafgiftsfondens'),
(51644, 'https://ror.org/01yr7qe95', 'en', 1, 'https://ror.org/01yr7qe95 Empire Eye Physicians'),
(51645, 'https://ror.org/01yra0v32', 'sv', 1, 'https://ror.org/01yra0v32 Njurfonden'),
(51646, 'https://ror.org/01yrkpa05', 'no_lang_code', 1, 'https://ror.org/01yrkpa05 Geze (Germany)'),
(51647, 'https://ror.org/01yrv0w88', 'no_lang_code', 1, 'https://ror.org/01yrv0w88 Mineralbrunnen Überkingen Teinach Beteiligungs'),
(51648, 'https://ror.org/01yvdtg58', 'en', 1, 'https://ror.org/01yvdtg58 Simha Foundation'),
(51649, 'https://ror.org/01ywtay82', 'en', 1, 'https://ror.org/01ywtay82 Education & Research Foundation'),
(51650, 'https://ror.org/01yx62742', 'fr', 1, 'https://ror.org/01yx62742 Adolphe Merkle Institute'),
(51651, 'https://ror.org/01yyz9v67', 'en', 1, 'https://ror.org/01yyz9v67 Care-for-Rare Foundation Care-for-Rare-Stiftung'),
(51652, 'https://ror.org/01z0axe47', 'en', 1, 'https://ror.org/01z0axe47 Slocum Center for Orthopedics and Sports Medicine'),
(51653, 'https://ror.org/01z0efz13', 'en', 1, 'https://ror.org/01z0efz13 Aichi Science & Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗē§‘å­¦ęŠ€č”“äŗ¤ęµč²”å›£'),
(51654, 'https://ror.org/01z1y5p14', 'en', 1, 'https://ror.org/01z1y5p14 Action in the Community Environment'),
(51655, 'https://ror.org/01z28x230', 'en', 1, 'https://ror.org/01z28x230 Medicare Rights Center'),
(51656, 'https://ror.org/01z2dd859', 'en', 1, 'https://ror.org/01z2dd859 National Hispanic Medical Association'),
(51657, 'https://ror.org/01z37rs75', 'en', 1, 'https://ror.org/01z37rs75 Centers for Behavioral Health'),
(51658, 'https://ror.org/01z40a451', 'no_lang_code', 1, 'https://ror.org/01z40a451 Synexus (Germany)'),
(51659, 'https://ror.org/01z4kwe65', 'ca', 1, 'https://ror.org/01z4kwe65 Associació per la Recerca Oncològica'),
(51660, 'https://ror.org/01z531p41', 'en', 1, 'https://ror.org/01z531p41 Ogawa Science and Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗ å°å·ē§‘å­¦ęŠ€č”“č²”å›£'),
(51661, 'https://ror.org/01z6cw088', 'en', 1, 'https://ror.org/01z6cw088 Chinese Academy of Medical Sciences Dermatology Hospital'),
(51662, 'https://ror.org/01z6wpz16', 'no_lang_code', 1, 'https://ror.org/01z6wpz16 Merck Serono (Italy)'),
(51663, 'https://ror.org/01z7cky43', 'en', 1, 'https://ror.org/01z7cky43 Cancer Research Wales'),
(51664, 'https://ror.org/01za0ff56', 'no_lang_code', 1, 'https://ror.org/01za0ff56 CellAct Pharma (Germany)'),
(51665, 'https://ror.org/01zas4j60', 'en', 1, 'https://ror.org/01zas4j60 MTV Staying Alive'),
(51666, 'https://ror.org/01zccn017', 'en', 1, 'https://ror.org/01zccn017 GameDesk'),
(51667, 'https://ror.org/01zk1vt68', 'no_lang_code', 1, 'https://ror.org/01zk1vt68 Pfizer (Belgium)'),
(51668, 'https://ror.org/01zkd3118', 'en', 1, 'https://ror.org/01zkd3118 Nomis Foundation'),
(51669, 'https://ror.org/01zkyek34', 'no_lang_code', 1, 'https://ror.org/01zkyek34 Probelte Pharma (Spain)'),
(51670, 'https://ror.org/01zm5rz38', 'en', 1, 'https://ror.org/01zm5rz38 National Council for Tertiary Education'),
(51671, 'https://ror.org/01zm9va38', 'en', 1, 'https://ror.org/01zm9va38 Greater Kanawha Valley Foundation'),
(51672, 'https://ror.org/01znfak46', 'en', 1, 'https://ror.org/01znfak46 Cumberland Medical Center'),
(51673, 'https://ror.org/01znn6097', 'en', 1, 'https://ror.org/01znn6097 San Juan Oncology Associates'),
(51674, 'https://ror.org/01zqyhk59', 'en', 1, 'https://ror.org/01zqyhk59 Defense Technical Information Center'),
(51675, 'https://ror.org/01zr3vr20', 'en', 1, 'https://ror.org/01zr3vr20 Association of Washington School Principals'),
(51676, 'https://ror.org/01zrgk985', 'en', 1, 'https://ror.org/01zrgk985 ChiangRai Prachanukroh Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ ą¹€ąøŠąøµąø¢ąø‡ąø£ąø²ąø¢ąø›ąø£ąø°ąøŠąø²ąø™ąøøą¹€ąø„ąø£ąø²ąø°ąø«ą¹Œ'),
(51677, 'https://ror.org/01zs69903', 'no_lang_code', 1, 'https://ror.org/01zs69903 Brembo (United Kingdom)'),
(51678, 'https://ror.org/01zs6bp63', 'nl', 1, 'https://ror.org/01zs6bp63 Stichting Kinderoncologie Nederland'),
(51679, 'https://ror.org/01zsmba62', 'en', 1, 'https://ror.org/01zsmba62 Harvey L. Neiman Health Policy Institute'),
(51680, 'https://ror.org/01zwas239', 'en', 1, 'https://ror.org/01zwas239 Springfield Neurology Clinical Trials'),
(51681, 'https://ror.org/01zx7tr29', 'en', 1, 'https://ror.org/01zx7tr29 Barlow Medical Centre'),
(51682, 'https://ror.org/01zxxbs36', 'no_lang_code', 1, 'https://ror.org/01zxxbs36 Manatt, Phelps & Phillips (United States)'),
(51683, 'https://ror.org/01zyn4z03', 'en', 1, 'https://ror.org/01zyn4z03 Beijing Luhe Hospital Affiliated to Capital Medical University é¦–éƒ½åŒ»ē§‘å¤§å­¦é™„å±žåŒ—äŗ¬ę½žę²³åŒ»é™¢'),
(51684, 'https://ror.org/0200vq221', 'no_lang_code', 1, 'https://ror.org/0200vq221 Bamrasnaradura Infectious Diseases Institute'),
(51685, 'https://ror.org/0200x2j16', 'sv', 1, 'https://ror.org/0200x2j16 PraktikertjƤnst'),
(51686, 'https://ror.org/0202k4b21', 'no_lang_code', 1, 'https://ror.org/0202k4b21 TiGenix (Spain)'),
(51687, 'https://ror.org/0202qvf63', 'no_lang_code', 1, 'https://ror.org/0202qvf63 Kunstgreb (Denmark)'),
(51688, 'https://ror.org/02043dc11', 'en', 1, 'https://ror.org/02043dc11 Segal Institute for Clinical Research'),
(51689, 'https://ror.org/0204daw86', 'en', 1, 'https://ror.org/0204daw86 National Office for Sanitation of Senegal'),
(51690, 'https://ror.org/0204m7391', 'en', 1, 'https://ror.org/0204m7391 Drs. Quinn, Foster & Associates'),
(51691, 'https://ror.org/0205d0r45', 'en', 1, 'https://ror.org/0205d0r45 Avera Heart Hospital'),
(51692, 'https://ror.org/0205s4214', 'en', 1, 'https://ror.org/0205s4214 Minnesota Ovarian Cancer Alliance'),
(51693, 'https://ror.org/0206abf41', 'en', 1, 'https://ror.org/0206abf41 Learning Forward'),
(51694, 'https://ror.org/0207wsg03', 'en', 1, 'https://ror.org/0207wsg03 LankellyChase Foundation'),
(51695, 'https://ror.org/020ba9354', 'en', 1, 'https://ror.org/020ba9354 Alpha Phi Foundation'),
(51696, 'https://ror.org/020dbrn58', 'no_lang_code', 1, 'https://ror.org/020dbrn58 Lundbeck (Spain)'),
(51697, 'https://ror.org/020ea8709', 'no_lang_code', 1, 'https://ror.org/020ea8709 Premier Clinical Research (United States)'),
(51698, 'https://ror.org/020fcst87', 'no_lang_code', 1, 'https://ror.org/020fcst87 Hewlett-Packard (Netherlands)'),
(51699, 'https://ror.org/020fqx327', 'en', 1, 'https://ror.org/020fqx327 Achievement School District'),
(51700, 'https://ror.org/020ggem82', 'en', 1, 'https://ror.org/020ggem82 Ball Brothers Foundation'),
(51701, 'https://ror.org/020gqp277', 'en', 1, 'https://ror.org/020gqp277 British Columbia Environmental and Occupational Health Research Network'),
(51702, 'https://ror.org/020jwmq86', 'no_lang_code', 1, 'https://ror.org/020jwmq86 Johnson & Johnson (Sweden)'),
(51703, 'https://ror.org/020k2cq76', 'en', 1, 'https://ror.org/020k2cq76 Barakat Trust'),
(51704, 'https://ror.org/020mag653', 'en', 1, 'https://ror.org/020mag653 Latvian Centre for Contemporary Art'),
(51705, 'https://ror.org/020mmns30', 'en', 1, 'https://ror.org/020mmns30 Chi Omega Foundation'),
(51706, 'https://ror.org/020my6q50', 'no_lang_code', 1, 'https://ror.org/020my6q50 Dr. Kade Pharmazeutische Fabrik (Germany)'),
(51707, 'https://ror.org/020pyx735', 'no_lang_code', 1, 'https://ror.org/020pyx735 Danieli (Italy)'),
(51708, 'https://ror.org/020qgqz48', 'no_lang_code', 1, 'https://ror.org/020qgqz48 Berry (India)'),
(51709, 'https://ror.org/020r55g68', 'da', 1, 'https://ror.org/020r55g68 Regionshospitalet Silkeborg'),
(51710, 'https://ror.org/020sa1y42', 'no_lang_code', 1, 'https://ror.org/020sa1y42 Sager Pharma (Hungary)'),
(51711, 'https://ror.org/020vyhe78', 'en', 1, 'https://ror.org/020vyhe78 Ohnishi Neurological Center å¤§č„æč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(51712, 'https://ror.org/020x80477', 'no_lang_code', 1, 'https://ror.org/020x80477 Jianan Mental Hospital'),
(51713, 'https://ror.org/020xw1f06', 'en', 1, 'https://ror.org/020xw1f06 Italian Scientists and Scholars in North America Foundation'),
(51714, 'https://ror.org/020y1sx51', 'en', 1, 'https://ror.org/020y1sx51 Vellore Christian Medical College Foundation'),
(51715, 'https://ror.org/020yp9q46', 'no_lang_code', 1, 'https://ror.org/020yp9q46 Bionorica (Germany)'),
(51716, 'https://ror.org/0213kt015', 'en', 1, 'https://ror.org/0213kt015 Faith in Public Life'),
(51717, 'https://ror.org/0215cks11', 'en', 1, 'https://ror.org/0215cks11 Cooper Trewin Memorial SUDC Research Fund'),
(51718, 'https://ror.org/0216n6706', 'en', 1, 'https://ror.org/0216n6706 Women Moving Millions'),
(51719, 'https://ror.org/0216taa64', 'en', 1, 'https://ror.org/0216taa64 Mcnulty Foundation'),
(51720, 'https://ror.org/0217khz32', 'en', 1, 'https://ror.org/0217khz32 Binational Industrial Research and Development Foundation'),
(51721, 'https://ror.org/021820f58', 'no_lang_code', 1, 'https://ror.org/021820f58 Xenikos (Netherlands)'),
(51722, 'https://ror.org/0219f2672', 'no_lang_code', 1, 'https://ror.org/0219f2672 Abbott (Netherlands)'),
(51723, 'https://ror.org/0219m0g06', 'no_lang_code', 1, 'https://ror.org/0219m0g06 EberspƤcher (Germany)'),
(51724, 'https://ror.org/021bdxd25', 'no_lang_code', 1, 'https://ror.org/021bdxd25 Clinical Inquest Center (United States)'),
(51725, 'https://ror.org/021e5n641', 'en', 1, 'https://ror.org/021e5n641 Creative Capital Foundation'),
(51726, 'https://ror.org/021ejmk29', 'en', 1, 'https://ror.org/021ejmk29 Compliant Clinical Research'),
(51727, 'https://ror.org/021et8d97', 'en', 1, 'https://ror.org/021et8d97 World Health Partners'),
(51728, 'https://ror.org/021h1av98', 'en', 1, 'https://ror.org/021h1av98 Heart Hospital Baylor Plano'),
(51729, 'https://ror.org/021hndv62', 'en', 1, 'https://ror.org/021hndv62 JGW Patterson Foundation'),
(51730, 'https://ror.org/021jz4j66', 'no_lang_code', 1, 'https://ror.org/021jz4j66 Ipsen (Spain)'),
(51731, 'https://ror.org/021kyjw72', 'en', 1, 'https://ror.org/021kyjw72 Ann Arbor Area Community Foundation'),
(51732, 'https://ror.org/021mpp443', 'en', 1, 'https://ror.org/021mpp443 Qihe People''s Hospital é½ę²³äŗŗę°‘åŒ»é™¢'),
(51733, 'https://ror.org/021n09h20', 'en', 1, 'https://ror.org/021n09h20 Guthy-Jackson Charitable Foundation'),
(51734, 'https://ror.org/021pcgg80', 'en', 1, 'https://ror.org/021pcgg80 Temple Lung Center'),
(51735, 'https://ror.org/021pjrd95', 'no_lang_code', 1, 'https://ror.org/021pjrd95 AMEN'),
(51736, 'https://ror.org/021qqv739', 'en', 1, 'https://ror.org/021qqv739 Beacon Center of Tennessee'),
(51737, 'https://ror.org/021rkpk21', 'en', 1, 'https://ror.org/021rkpk21 Australian Geographic Society'),
(51738, 'https://ror.org/021s9ae49', 'en', 1, 'https://ror.org/021s9ae49 Worldwide Documentaries'),
(51739, 'https://ror.org/021tea790', 'no_lang_code', 1, 'https://ror.org/021tea790 TÜV SÜD (Singapore)'),
(51740, 'https://ror.org/021tmn508', 'no_lang_code', 1, 'https://ror.org/021tmn508 AstraZeneca (Netherlands)'),
(51741, 'https://ror.org/021wdzv30', 'en', 1, 'https://ror.org/021wdzv30 ARCH Development Corporation'),
(51742, 'https://ror.org/021wm2t34', 'en', 1, 'https://ror.org/021wm2t34 Seattle Parks Foundation'),
(51743, 'https://ror.org/021yan307', 'en', 1, 'https://ror.org/021yan307 Market Matters'),
(51744, 'https://ror.org/021yx2896', 'en', 1, 'https://ror.org/021yx2896 Retina Institute of Hawaii'),
(51745, 'https://ror.org/02229an29', 'en', 1, 'https://ror.org/02229an29 Con Alma Health Foundation'),
(51746, 'https://ror.org/0222bz953', 'en', 1, 'https://ror.org/0222bz953 Cannon Foundation'),
(51747, 'https://ror.org/0224dwf10', 'no_lang_code', 1, 'https://ror.org/0224dwf10 Osmotica Pharmaceutical (United States)'),
(51748, 'https://ror.org/0224wbx43', 'da', 1, 'https://ror.org/0224wbx43 Kongeriget Danmarks Hesteforsikring'),
(51749, 'https://ror.org/02250w954', 'en', 1, 'https://ror.org/02250w954 Philanthropy Ohio'),
(51750, 'https://ror.org/0226kx453', 'en', 1, 'https://ror.org/0226kx453 Riverside County Library System'),
(51751, 'https://ror.org/02282f973', 'no_lang_code', 1, 'https://ror.org/02282f973 Spot On Sciences (United States)'),
(51752, 'https://ror.org/022ag4q91', 'it', 1, 'https://ror.org/022ag4q91 Fondazioni Casali'),
(51753, 'https://ror.org/022bzg803', 'en', 1, 'https://ror.org/022bzg803 Landbruks- og matdepartementet Ministry of Agriculture and Food'),
(51754, 'https://ror.org/022h0yw65', 'en', 1, 'https://ror.org/022h0yw65 Korle Bu Neuroscience Foundation'),
(51755, 'https://ror.org/022k50n33', 'no_lang_code', 1, 'https://ror.org/022k50n33 Octapharma (Austria)'),
(51756, 'https://ror.org/022m5tt98', 'no_lang_code', 1, 'https://ror.org/022m5tt98 Kudelski (Switzerland)'),
(51757, 'https://ror.org/022nvf535', 'en', 1, 'https://ror.org/022nvf535 People''s Hospital of Kaizhou District é‡åŗ†å¼€åŽæäŗŗę°‘åŒ»é™¢'),
(51758, 'https://ror.org/022nw7x84', 'en', 1, 'https://ror.org/022nw7x84 Ambrose Monell Foundation'),
(51759, 'https://ror.org/022p4vd20', 'en', 1, 'https://ror.org/022p4vd20 Orange County Community Foundation'),
(51760, 'https://ror.org/022pen470', 'en', 1, 'https://ror.org/022pen470 New York City Police Foundation'),
(51761, 'https://ror.org/022pga911', 'it', 1, 'https://ror.org/022pga911 Fondazione Monte dei Paschi di Siena'),
(51762, 'https://ror.org/022phs473', 'en', 1, 'https://ror.org/022phs473 Vienna Institute for Research in Ocular Surgery'),
(51763, 'https://ror.org/022q8ez38', 'en', 1, 'https://ror.org/022q8ez38 Altoona Center for Clinical Research'),
(51764, 'https://ror.org/022qrkq94', 'en', 1, 'https://ror.org/022qrkq94 Colcom Foundation'),
(51765, 'https://ror.org/022rqag31', 'en', 1, 'https://ror.org/022rqag31 Albuquerque Public Schools'),
(51766, 'https://ror.org/022sa6t23', 'en', 1, 'https://ror.org/022sa6t23 Family Care International'),
(51767, 'https://ror.org/022w6gv64', 'en', 1, 'https://ror.org/022w6gv64 Topolovgrad Municipality ŠžŠ±Ń‰ŠøŠ½Š° ТополовграГ'),
(51768, 'https://ror.org/022wqqm54', 'en', 1, 'https://ror.org/022wqqm54 AlphaNet'),
(51769, 'https://ror.org/022ww2d20', 'en', 1, 'https://ror.org/022ww2d20 Charles D. Jacobus Family Foundation'),
(51770, 'https://ror.org/022xccz03', 'en', 1, 'https://ror.org/022xccz03 Foundation for Arable Research'),
(51771, 'https://ror.org/0231rt128', 'no_lang_code', 1, 'https://ror.org/0231rt128 GS Yuasa (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ć‚Øć‚¹ćƒ»ćƒ¦ć‚¢ć‚µ ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(51772, 'https://ror.org/0233s3730', 'no_lang_code', 1, 'https://ror.org/0233s3730 Pharming Group (Netherlands)'),
(51773, 'https://ror.org/02349x007', 'en', 1, 'https://ror.org/02349x007 IDEA Public Schools'),
(51774, 'https://ror.org/0234w4k48', 'en', 1, 'https://ror.org/0234w4k48 Forsyth County Schools'),
(51775, 'https://ror.org/0235ad950', 'en', 1, 'https://ror.org/0235ad950 Innovations for Poverty Action'),
(51776, 'https://ror.org/0236xjz69', 'en', 1, 'https://ror.org/0236xjz69 Physician Care Clinical Research'),
(51777, 'https://ror.org/02383bz17', 'no_lang_code', 1, 'https://ror.org/02383bz17 Micron Biomedical (United States)'),
(51778, 'https://ror.org/02384d823', 'no_lang_code', 1, 'https://ror.org/02384d823 Metalsa (Germany)'),
(51779, 'https://ror.org/0238xm951', 'en', 1, 'https://ror.org/0238xm951 Mind Science Foundation'),
(51780, 'https://ror.org/023907v80', 'en', 1, 'https://ror.org/023907v80 Gill Bergska Foundation'),
(51781, 'https://ror.org/023j15x08', 'en', 1, 'https://ror.org/023j15x08 Eastern Association for the Surgery of Trauma'),
(51782, 'https://ror.org/023jg3g40', 'en', 1, 'https://ror.org/023jg3g40 Jewett Orthopaedic Clinic'),
(51783, 'https://ror.org/023m03q03', 'en', 1, 'https://ror.org/023m03q03 American Floral Endowment'),
(51784, 'https://ror.org/023pmtm07', 'en', 1, 'https://ror.org/023pmtm07 Healthcentric Advisors'),
(51785, 'https://ror.org/023qwbz75', 'en', 1, 'https://ror.org/023qwbz75 Advanced Neurology Specialists'),
(51786, 'https://ror.org/023r70v40', 'fr', 1, 'https://ror.org/023r70v40 Clinique Charcot'),
(51787, 'https://ror.org/023ryx304', 'en', 1, 'https://ror.org/023ryx304 Byblos Bank'),
(51788, 'https://ror.org/023ssda55', 'en', 1, 'https://ror.org/023ssda55 Fukuda Foundation for Medical Technology č²”å›£ę³•äŗŗē¦ē”°čØ˜åæµåŒ»ē™‚ęŠ€č”“ęŒÆčˆˆč²”å›£ćÆ'),
(51789, 'https://ror.org/023t48c08', 'en', 1, 'https://ror.org/023t48c08 American Wildlife Conservation Foundation'),
(51790, 'https://ror.org/023t5f665', 'en', 1, 'https://ror.org/023t5f665 Humana Foundation'),
(51791, 'https://ror.org/023thvq22', 'en', 1, 'https://ror.org/023thvq22 United Federation of Teachers'),
(51792, 'https://ror.org/023w2cy02', 'no_lang_code', 1, 'https://ror.org/023w2cy02 Delcath Systems (United States)'),
(51793, 'https://ror.org/023zt9146', 'en', 1, 'https://ror.org/023zt9146 British Dietetic Association'),
(51794, 'https://ror.org/0240vc720', 'nl', 1, 'https://ror.org/0240vc720 Havenziekenhuis Rotterdam'),
(51795, 'https://ror.org/0241y7z93', 'en', 1, 'https://ror.org/0241y7z93 Surveying and Mapping Authority of the Republic of Slovenia'),
(51796, 'https://ror.org/0243wgp76', 'en', 1, 'https://ror.org/0243wgp76 Foundation for Health in Aging'),
(51797, 'https://ror.org/024465936', 'en', 1, 'https://ror.org/024465936 Diabetes Zentrum Mergentheim German Diabetes Center Mergentheim'),
(51798, 'https://ror.org/02448mh91', 'en', 1, 'https://ror.org/02448mh91 Help For Children'),
(51799, 'https://ror.org/02455y304', 'en', 1, 'https://ror.org/02455y304 Institute for Global Engagement'),
(51800, 'https://ror.org/0246qdk84', 'en', 1, 'https://ror.org/0246qdk84 Innovation Center Denmark'),
(51801, 'https://ror.org/0246w5s24', 'no_lang_code', 1, 'https://ror.org/0246w5s24 Skin Specialty Dermatology (United States)'),
(51802, 'https://ror.org/02473g334', 'no_lang_code', 1, 'https://ror.org/02473g334 Bulgarian Ports Infrastructure (Bulgaria) Š”ŠŖŠ Š–ŠŠ’ŠŠž ŠŸŠ Š•Š”ŠŸŠ Š˜ŠÆŠ¢Š˜Š• ŠŸŠ Š˜Š”Š¢ŠŠŠ˜Š©ŠŠ Š˜ŠŠ¤Š ŠŠ”Š¢Š Š£ŠšŠ¢Š£Š Š'),
(51803, 'https://ror.org/0247aft91', 'en', 1, 'https://ror.org/0247aft91 The Herbert H. and Grace A. Dow Foundation'),
(51804, 'https://ror.org/0247xav12', 'en', 1, 'https://ror.org/0247xav12 TEDA International Cardiovascular Hospital ę³°č¾¾å›½é™…åæƒč”€ē®”ē—…åŒ»é™¢'),
(51805, 'https://ror.org/02495av31', 'da', 1, 'https://ror.org/02495av31 Selskabet for Skole- og Uddannelseshistorie'),
(51806, 'https://ror.org/024a5cr96', 'en', 1, 'https://ror.org/024a5cr96 Education and Research Foundation for Nuclear Medicine and Molecular Imaging'),
(51807, 'https://ror.org/024eg5z54', 'no_lang_code', 1, 'https://ror.org/024eg5z54 Asacpharma (Spain)'),
(51808, 'https://ror.org/024f0th47', 'no_lang_code', 1, 'https://ror.org/024f0th47 Regenmedtx (United States)'),
(51809, 'https://ror.org/024f1d020', 'en', 1, 'https://ror.org/024f1d020 Consultants in Neurology'),
(51810, 'https://ror.org/024g0n729', 'ms', 1, 'https://ror.org/024g0n729 Hospital Pulau Pinang'),
(51811, 'https://ror.org/024hrna66', 'en', 1, 'https://ror.org/024hrna66 As You Sow'),
(51812, 'https://ror.org/024jbvq59', 'en', 1, 'https://ror.org/024jbvq59 Japan Foundation London'),
(51813, 'https://ror.org/024mpmb63', 'no_lang_code', 1, 'https://ror.org/024mpmb63 Joled (Japan)'),
(51814, 'https://ror.org/024njzv49', 'no_lang_code', 1, 'https://ror.org/024njzv49 Chiesi (France)'),
(51815, 'https://ror.org/024rmzz69', 'no_lang_code', 1, 'https://ror.org/024rmzz69 NestlƩ (Sweden)'),
(51816, 'https://ror.org/024s32d89', 'no_lang_code', 1, 'https://ror.org/024s32d89 Glenmark Pharmaceuticals (Switzerland)'),
(51817, 'https://ror.org/024vd1y77', 'en', 1, 'https://ror.org/024vd1y77 Heartland Research Associates'),
(51818, 'https://ror.org/024w2fr05', 'pt', 1, 'https://ror.org/024w2fr05 Grupo Santa Casa de Belo Horizonte'),
(51819, 'https://ror.org/024w8hz81', 'en', 1, 'https://ror.org/024w8hz81 Cornea Associates of Texas'),
(51820, 'https://ror.org/024wgaf87', 'en', 1, 'https://ror.org/024wgaf87 Mood Disorders Association of British Columbia'),
(51821, 'https://ror.org/024zaz802', 'pl', 1, 'https://ror.org/024zaz802 Podlaska Regionalna Organizacja Turystyczna'),
(51822, 'https://ror.org/024zgsn52', 'en', 1, 'https://ror.org/024zgsn52 Essex Cardiothoracic Centre'),
(51823, 'https://ror.org/025260c90', 'en', 1, 'https://ror.org/025260c90 Innovation Center Denmark'),
(51824, 'https://ror.org/0252chk84', 'en', 1, 'https://ror.org/0252chk84 Thomas B. Fordham Institute'),
(51825, 'https://ror.org/0254sjn21', 'en', 1, 'https://ror.org/0254sjn21 National Hispanic Health Foundation'),
(51826, 'https://ror.org/025883808', 'it', 1, 'https://ror.org/025883808 Gruppo Italiano per lo Studio dei Carcinomi dell’Apparato Digerente'),
(51827, 'https://ror.org/0258v0346', 'en', 1, 'https://ror.org/0258v0346 Matthew Larson Foundation'),
(51828, 'https://ror.org/0259b0q13', 'no_lang_code', 1, 'https://ror.org/0259b0q13 Gene PreDiT (Portugal)'),
(51829, 'https://ror.org/025cyvq34', 'no_lang_code', 1, 'https://ror.org/025cyvq34 Athena Infonomics (India)'),
(51830, 'https://ror.org/025dm5t28', 'en', 1, 'https://ror.org/025dm5t28 Donnell-Kay Foundation'),
(51831, 'https://ror.org/025dpe082', 'en', 1, 'https://ror.org/025dpe082 Foundation for Health Leadership & Innovation'),
(51832, 'https://ror.org/025fgft18', 'en', 1, 'https://ror.org/025fgft18 Morris Stulsaft Foundation'),
(51833, 'https://ror.org/025frct77', 'en', 1, 'https://ror.org/025frct77 Jewish Community Foundation of Greater Kansas City'),
(51834, 'https://ror.org/025ghhr15', 'no_lang_code', 1, 'https://ror.org/025ghhr15 NeuroVive Pharmaceutical (Sweden)'),
(51835, 'https://ror.org/025jctj87', 'no_lang_code', 1, 'https://ror.org/025jctj87 Celimmune (United States)'),
(51836, 'https://ror.org/025jyy333', 'en', 1, 'https://ror.org/025jyy333 National Center for Higher Education Management Systems'),
(51837, 'https://ror.org/025kcyv21', 'no_lang_code', 1, 'https://ror.org/025kcyv21 Cummins Allison (United States)'),
(51838, 'https://ror.org/025mwe555', 'en', 1, 'https://ror.org/025mwe555 Culinary Trust'),
(51839, 'https://ror.org/025q5k762', 'no_lang_code', 1, 'https://ror.org/025q5k762 DonorsTrust'),
(51840, 'https://ror.org/025s5m774', 'en', 1, 'https://ror.org/025s5m774 Cristo Rey Network'),
(51841, 'https://ror.org/025sg0039', 'en', 1, 'https://ror.org/025sg0039 Regional Center for Prevention and Control of AIDS and Infectious Diseases ŠžŠ±Š»Š°ŃŃ‚Š½Š¾Š¹ меГицинский центр по Š±Š¾Ń€ŃŒŠ±Šµ с инфекционными Š·Š°Š±Š¾Š»ŠµŠ²Š°Š½ŠøŃŠ¼Šø'),
(51842, 'https://ror.org/025srm412', 'en', 1, 'https://ror.org/025srm412 Sutter Roseville Medical Center'),
(51843, 'https://ror.org/025xp7q94', 'en', 1, 'https://ror.org/025xp7q94 Pinnacle Orthopedics'),
(51844, 'https://ror.org/025zfqq91', 'no_lang_code', 1, 'https://ror.org/025zfqq91 Baader Food Processing Machinery (Germany)'),
(51845, 'https://ror.org/025zwvh44', 'no_lang_code', 1, 'https://ror.org/025zwvh44 AbCellera (Canada)'),
(51846, 'https://ror.org/02624hr86', 'en', 1, 'https://ror.org/02624hr86 Center for Land Use Interpretation'),
(51847, 'https://ror.org/0262v8w25', 'en', 1, 'https://ror.org/0262v8w25 Global Risk Institute in Financial Services'),
(51848, 'https://ror.org/0263g5487', 'da', 1, 'https://ror.org/0263g5487 Frimodt-Heineke Fonden'),
(51849, 'https://ror.org/02653sm42', 'en', 1, 'https://ror.org/02653sm42 Upper Grand Family Health Team'),
(51850, 'https://ror.org/0269fty31', 'en', 1, 'https://ror.org/0269fty31 Shaoxing Second Hospital ē»å…“åø‚ē¬¬äŗŒåŒ»é™¢'),
(51851, 'https://ror.org/026cvv862', 'lv', 1, 'https://ror.org/026cvv862 Balteneko'),
(51852, 'https://ror.org/026d1tb50', 'no_lang_code', 1, 'https://ror.org/026d1tb50 Inno-Water (Hungary)'),
(51853, 'https://ror.org/026h3kw78', 'en', 1, 'https://ror.org/026h3kw78 Australian Dental Industry Association'),
(51854, 'https://ror.org/026jg0516', 'no_lang_code', 1, 'https://ror.org/026jg0516 Johnson Controls (Japan)'),
(51855, 'https://ror.org/026jmga48', 'no_lang_code', 1, 'https://ror.org/026jmga48 Ipsen (Netherlands)'),
(51856, 'https://ror.org/026m9rg85', 'en', 1, 'https://ror.org/026m9rg85 Brazilian Society of Tropical Medicine Sociedade Brasileira de Medicina Tropical'),
(51857, 'https://ror.org/026qe1m81', 'fr', 1, 'https://ror.org/026qe1m81 HƓpital de Morges'),
(51858, 'https://ror.org/026s76z34', 'no_lang_code', 1, 'https://ror.org/026s76z34 Consumer Product Testing Company (United States)'),
(51859, 'https://ror.org/026ssdh77', 'en', 1, 'https://ror.org/026ssdh77 Canadian Allergy, Asthma and Immunology Foundation Fondation Canadienne d''Allergie, d''Asthme et d''Immunologie'),
(51860, 'https://ror.org/026t0qb38', 'en', 1, 'https://ror.org/026t0qb38 Clinical Research Associates of Tidewater'),
(51861, 'https://ror.org/026t1zr39', 'en', 1, 'https://ror.org/026t1zr39 Neuroendocrine Tumor Research Foundation'),
(51862, 'https://ror.org/026tcwf27', 'en', 1, 'https://ror.org/026tcwf27 National Consumer Voice for Quality Long-Term Care'),
(51863, 'https://ror.org/026w1gw23', 'no_lang_code', 1, 'https://ror.org/026w1gw23 Biotest (Austria)'),
(51864, 'https://ror.org/026wbfy45', 'en', 1, 'https://ror.org/026wbfy45 Bush Foundation'),
(51865, 'https://ror.org/026wnn461', 'en', 1, 'https://ror.org/026wnn461 Mediroyal Prevenciós Központ Mediroyal Prevention Center'),
(51866, 'https://ror.org/026xkpb31', 'es', 1, 'https://ror.org/026xkpb31 Sociedad Andaluza de Trasplantes de Ɠrganos y Tejidos'),
(51867, 'https://ror.org/0270h7d11', 'en', 1, 'https://ror.org/0270h7d11 All Hands Raised'),
(51868, 'https://ror.org/027184q35', 'no_lang_code', 1, 'https://ror.org/027184q35 Sotio (Czechia)'),
(51869, 'https://ror.org/0271ynv65', 'en', 1, 'https://ror.org/0271ynv65 Buffalo Bills Foundation'),
(51870, 'https://ror.org/02752ac98', 'no_lang_code', 1, 'https://ror.org/02752ac98 Topivert (United Kingdom)'),
(51871, 'https://ror.org/02765fh44', 'no_lang_code', 1, 'https://ror.org/02765fh44 Uponor (Sweden)'),
(51872, 'https://ror.org/0277dxs53', 'no_lang_code', 1, 'https://ror.org/0277dxs53 Clinipace (Italy)'),
(51873, 'https://ror.org/0277pn602', 'en', 1, 'https://ror.org/0277pn602 Boettcher Foundation'),
(51874, 'https://ror.org/027ahsj69', 'en', 1, 'https://ror.org/027ahsj69 Alzheimer''s Australia Dementia Research Foundation'),
(51875, 'https://ror.org/027by3f41', 'en', 1, 'https://ror.org/027by3f41 Landesa Rural Development Institute'),
(51876, 'https://ror.org/027e6vw02', 'en', 1, 'https://ror.org/027e6vw02 African Evaluation Association'),
(51877, 'https://ror.org/027ey5735', 'sv', 1, 'https://ror.org/027ey5735 Alzheimerfonden'),
(51878, 'https://ror.org/027f4r073', 'no_lang_code', 1, 'https://ror.org/027f4r073 Novartis (Denmark)'),
(51879, 'https://ror.org/027f56t09', 'en', 1, 'https://ror.org/027f56t09 Jining Traditional Chinese Medicine Hospital ęµŽå®åø‚äø­åŒ»é™¢'),
(51880, 'https://ror.org/027frsq63', 'en', 1, 'https://ror.org/027frsq63 American Tinnitus Association'),
(51881, 'https://ror.org/027gpeb78', 'en', 1, 'https://ror.org/027gpeb78 Dr. Josef Steiner Cancer Foundation'),
(51882, 'https://ror.org/027gy9h20', 'no_lang_code', 1, 'https://ror.org/027gy9h20 Seahorse Scientific Services (United Kingdom)'),
(51883, 'https://ror.org/027hqk105', 'en', 1, 'https://ror.org/027hqk105 People''s Hospital of Cangzhou ę²§å·žäŗŗę°‘åŒ»é™¢'),
(51884, 'https://ror.org/027hs4a27', 'en', 1, 'https://ror.org/027hs4a27 Heartland Clinical Research'),
(51885, 'https://ror.org/027hx7576', 'en', 1, 'https://ror.org/027hx7576 HHV-6 Foundation'),
(51886, 'https://ror.org/027j3y306', 'en', 1, 'https://ror.org/027j3y306 James H. Hall Eye Center'),
(51887, 'https://ror.org/027jx1333', 'no_lang_code', 1, 'https://ror.org/027jx1333 Gerolsteiner Brunnen (Germany)'),
(51888, 'https://ror.org/027kczr92', 'no_lang_code', 1, 'https://ror.org/027kczr92 Asahi Glass (Belgium)'),
(51889, 'https://ror.org/027n0md32', 'no_lang_code', 1, 'https://ror.org/027n0md32 Faure Equipements (France)'),
(51890, 'https://ror.org/027q1fw25', 'no_lang_code', 1, 'https://ror.org/027q1fw25 Herantis Pharma (Finland)'),
(51891, 'https://ror.org/027sxqf09', 'fr', 1, 'https://ror.org/027sxqf09 Clinique Saint-Joseph'),
(51892, 'https://ror.org/027vfdt14', 'en', 1, 'https://ror.org/027vfdt14 Arizona Community Foundation'),
(51893, 'https://ror.org/027xxcs87', 'en', 1, 'https://ror.org/027xxcs87 Nordic Lymphoma Group'),
(51894, 'https://ror.org/027yebm63', 'no_lang_code', 1, 'https://ror.org/027yebm63 Chilton Medical Center'),
(51895, 'https://ror.org/0280mwm89', 'en', 1, 'https://ror.org/0280mwm89 Molokai Community Health Center'),
(51896, 'https://ror.org/0280q1024', 'en', 1, 'https://ror.org/0280q1024 Kaiser Permanente Roseville Medical Center'),
(51897, 'https://ror.org/0281fad83', 'en', 1, 'https://ror.org/0281fad83 Parenteral Drug Association'),
(51898, 'https://ror.org/0283crx61', 'no_lang_code', 1, 'https://ror.org/0283crx61 Zytoprotec (Austria)'),
(51899, 'https://ror.org/0284jzx23', 'en', 1, 'https://ror.org/0284jzx23 Xingtai People''s Hospital é‚¢å°åø‚äŗŗę°‘åŒ»é™¢'),
(51900, 'https://ror.org/0285bze92', 'en', 1, 'https://ror.org/0285bze92 ME Association'),
(51901, 'https://ror.org/02864sx65', 'no_lang_code', 1, 'https://ror.org/02864sx65 Wanzl (Germany)'),
(51902, 'https://ror.org/0286bey81', 'en', 1, 'https://ror.org/0286bey81 Bently Foundation'),
(51903, 'https://ror.org/0288f6787', 'no_lang_code', 1, 'https://ror.org/0288f6787 Toda Kogyo (Japan) ęˆøē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(51904, 'https://ror.org/0288he568', 'en', 1, 'https://ror.org/0288he568 South Shore Eye Care'),
(51905, 'https://ror.org/028a0c712', 'no_lang_code', 1, 'https://ror.org/028a0c712 Blue Planet Innovation (Denmark)'),
(51906, 'https://ror.org/028a34j67', 'en', 1, 'https://ror.org/028a34j67 Calvary Health Care Bethlehem'),
(51907, 'https://ror.org/028bsh698', 'en', 1, 'https://ror.org/028bsh698 Austrian Centre for Digital Humanities and Cultural Heritage'),
(51908, 'https://ror.org/028e15a50', 'es', 1, 'https://ror.org/028e15a50 ClĆ­nica Subiza'),
(51909, 'https://ror.org/028ev0325', 'it', 1, 'https://ror.org/028ev0325 Allegria'),
(51910, 'https://ror.org/028ew8k17', 'en', 1, 'https://ror.org/028ew8k17 Mukoviszidose - Bundesverband Cystische Fibrose The Cystic Fibrosis Institute'),
(51911, 'https://ror.org/028fg3r55', 'en', 1, 'https://ror.org/028fg3r55 Rowden Medical Partnership'),
(51912, 'https://ror.org/028fqdc34', 'no_lang_code', 1, 'https://ror.org/028fqdc34 Roxall (Germany)'),
(51913, 'https://ror.org/028h3z429', 'en', 1, 'https://ror.org/028h3z429 Seattle International Foundation'),
(51914, 'https://ror.org/028ka4p86', 'en', 1, 'https://ror.org/028ka4p86 International Association of Fire Fighters Charitable Foundation'),
(51915, 'https://ror.org/028kbne62', 'en', 1, 'https://ror.org/028kbne62 Alberta Emerald Foundation'),
(51916, 'https://ror.org/028myba47', 'en', 1, 'https://ror.org/028myba47 Mensa Education and Research Foundation'),
(51917, 'https://ror.org/028r46717', 'en', 1, 'https://ror.org/028r46717 Ferree Foundation'),
(51918, 'https://ror.org/028r7gw60', 'en', 1, 'https://ror.org/028r7gw60 Bobath memorial hospital ė³“ė°”ģŠ¤źø°ė…ė³‘ģ›'),
(51919, 'https://ror.org/028tezs28', 'en', 1, 'https://ror.org/028tezs28 Henry Ford Allegiance Health'),
(51920, 'https://ror.org/028w1rx89', 'it', 1, 'https://ror.org/028w1rx89 Associazione Angela Serra per la Ricerca sul Cancro'),
(51921, 'https://ror.org/02900by63', 'en', 1, 'https://ror.org/02900by63 Japanese Society of Clinical Pharmacology and Therapeutics'),
(51922, 'https://ror.org/02904nv16', 'en', 1, 'https://ror.org/02904nv16 Maas Clinic'),
(51923, 'https://ror.org/0290pyd61', 'en', 1, 'https://ror.org/0290pyd61 Oregon Dermatology & Research Center'),
(51924, 'https://ror.org/029235h09', 'en', 1, 'https://ror.org/029235h09 Prevent Child Abuse America'),
(51925, 'https://ror.org/0292f6736', 'en', 1, 'https://ror.org/0292f6736 Community Initiatives'),
(51926, 'https://ror.org/0293d8d10', 'en', 1, 'https://ror.org/0293d8d10 Japan Foundation for Applied Enzymology å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ęœ¬åæœē”Øé…µē“ å”ä¼š'),
(51927, 'https://ror.org/0293tde40', 'en', 1, 'https://ror.org/0293tde40 Heckscher Foundation for Children'),
(51928, 'https://ror.org/0296xkk95', 'no_lang_code', 1, 'https://ror.org/0296xkk95 Edumetrics (United States)'),
(51929, 'https://ror.org/0298vzs36', 'en', 1, 'https://ror.org/0298vzs36 Medical Park Gaziantep Hospital'),
(51930, 'https://ror.org/0299hbx29', 'en', 1, 'https://ror.org/0299hbx29 Francis Family Foundation'),
(51931, 'https://ror.org/029a46s62', 'no_lang_code', 1, 'https://ror.org/029a46s62 Chaipattana Foundation ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ąøŠąø±ąø¢ąøžąø±ąø’ąø™ąø²'),
(51932, 'https://ror.org/029aqdy80', 'en', 1, 'https://ror.org/029aqdy80 Foundation for Promotion of Cancer Research ćŒć‚“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(51933, 'https://ror.org/029b1vn53', 'no_lang_code', 1, 'https://ror.org/029b1vn53 Aspirus'),
(51934, 'https://ror.org/029bhft53', 'no_lang_code', 1, 'https://ror.org/029bhft53 Kitov Pharmaceuticals (Israel)'),
(51935, 'https://ror.org/029c2eq23', 'en', 1, 'https://ror.org/029c2eq23 Syracuse Orthopedic Specialists'),
(51936, 'https://ror.org/029c9pv49', 'no_lang_code', 1, 'https://ror.org/029c9pv49 Mitsubishi Pencil (Japan) äø‰č±é‰›ē­†ę Ŗå¼ä¼šē¤¾'),
(51937, 'https://ror.org/029f7bn57', 'no_lang_code', 1, 'https://ror.org/029f7bn57 Xiaomi (China)'),
(51938, 'https://ror.org/029fwbw29', 'en', 1, 'https://ror.org/029fwbw29 Sofia Municipality Дтолична община'),
(51939, 'https://ror.org/029gjrw67', 'no_lang_code', 1, 'https://ror.org/029gjrw67 Robugen (Germany)'),
(51940, 'https://ror.org/029qr2j63', 'en', 1, 'https://ror.org/029qr2j63 Ardmore Foundation'),
(51941, 'https://ror.org/029tvtf63', 'no_lang_code', 1, 'https://ror.org/029tvtf63 Nuvo Pharmaceuticals (Germany)'),
(51942, 'https://ror.org/029v6mm06', 'en', 1, 'https://ror.org/029v6mm06 Chongqing Three Gorges Central Hospital äø‰å³”äø­åæƒåŒ»é™¢'),
(51943, 'https://ror.org/029x73965', 'fr', 1, 'https://ror.org/029x73965 Fondation Acteria'),
(51944, 'https://ror.org/029y72c12', 'en', 1, 'https://ror.org/029y72c12 Juvenile Bipolar Research Foundation'),
(51945, 'https://ror.org/029yrp127', 'da', 1, 'https://ror.org/029yrp127 Hudklinikken'),
(51946, 'https://ror.org/029z6rp26', 'en', 1, 'https://ror.org/029z6rp26 DermDox Dermatology Centers'),
(51947, 'https://ror.org/029z9sm32', 'en', 1, 'https://ror.org/029z9sm32 Municipality of Kardzhali ŠžŠ±Ń‰ŠøŠ½Š° ŠšŃŠŃ€Š“Š¶Š°Š»Šø'),
(51948, 'https://ror.org/02a1g6f69', 'no_lang_code', 1, 'https://ror.org/02a1g6f69 Khondrion (Netherlands)'),
(51949, 'https://ror.org/02a207p76', 'en', 1, 'https://ror.org/02a207p76 American Concrete Institute'),
(51950, 'https://ror.org/02a723v03', 'en', 1, 'https://ror.org/02a723v03 Cogito Foundation'),
(51951, 'https://ror.org/02a8gj019', 'no_lang_code', 1, 'https://ror.org/02a8gj019 KƤrcher (Germany)'),
(51952, 'https://ror.org/02ad3sg26', 'en', 1, 'https://ror.org/02ad3sg26 Population Matters'),
(51953, 'https://ror.org/02ah6fj31', 'en', 1, 'https://ror.org/02ah6fj31 Burrell Behavioral Health'),
(51954, 'https://ror.org/02ajkzj32', 'no_lang_code', 1, 'https://ror.org/02ajkzj32 Social Science Research Solutions (United States)'),
(51955, 'https://ror.org/02akdz045', 'en', 1, 'https://ror.org/02akdz045 Maryland Ornithological Society'),
(51956, 'https://ror.org/02akzdv37', 'en', 1, 'https://ror.org/02akzdv37 Mech-Sense'),
(51957, 'https://ror.org/02an18w50', 'hu', 1, 'https://ror.org/02an18w50 Affektív Pszichológia Tanszék'),
(51958, 'https://ror.org/02apk8p19', 'en', 1, 'https://ror.org/02apk8p19 Sundance Institute'),
(51959, 'https://ror.org/02aqe0j14', 'en', 1, 'https://ror.org/02aqe0j14 Childhood Brain Tumor Foundation'),
(51960, 'https://ror.org/02awk5v34', 'en', 1, 'https://ror.org/02awk5v34 Synergos Institute'),
(51961, 'https://ror.org/02ay1ht66', 'en', 1, 'https://ror.org/02ay1ht66 Biophics'),
(51962, 'https://ror.org/02b00gr50', 'no_lang_code', 1, 'https://ror.org/02b00gr50 Teradyne (United States)'),
(51963, 'https://ror.org/02b082r98', 'no_lang_code', 1, 'https://ror.org/02b082r98 DS Biopharma (Ireland)'),
(51964, 'https://ror.org/02b1krb80', 'en', 1, 'https://ror.org/02b1krb80 North Carolina Pork Council'),
(51965, 'https://ror.org/02b4by704', 'no_lang_code', 1, 'https://ror.org/02b4by704 Electrolux (United States)'),
(51966, 'https://ror.org/02b6r2g85', 'en', 1, 'https://ror.org/02b6r2g85 Winston Churchill Foundation'),
(51967, 'https://ror.org/02b773808', 'en', 1, 'https://ror.org/02b773808 James H. Cummings Foundation'),
(51968, 'https://ror.org/02bayf457', 'en', 1, 'https://ror.org/02bayf457 Antara Foundation'),
(51969, 'https://ror.org/02bb4dw78', 'no_lang_code', 1, 'https://ror.org/02bb4dw78 CJ CheilJedang (South Korea) ģ”Øģ œģ“ģ œģ¼ģ œė‹¹ ģ£¼ģ‹ķšŒģ‚¬'),
(51970, 'https://ror.org/02bgv4w08', 'no_lang_code', 1, 'https://ror.org/02bgv4w08 Iscar (Israel)'),
(51971, 'https://ror.org/02bjdhn90', 'it', 1, 'https://ror.org/02bjdhn90 Azienda Unita'' Sanitaria Locale di Parma'),
(51972, 'https://ror.org/02bkyhj18', 'en', 1, 'https://ror.org/02bkyhj18 Danish Myeloma Study Group'),
(51973, 'https://ror.org/02bmq1p14', 'no_lang_code', 1, 'https://ror.org/02bmq1p14 Weleda (Germany)'),
(51974, 'https://ror.org/02bn96467', 'da', 1, 'https://ror.org/02bn96467 Naturvidenskabernes Hus'),
(51975, 'https://ror.org/02bns0488', 'en', 1, 'https://ror.org/02bns0488 Child Health and Development Institute'),
(51976, 'https://ror.org/02bsg4a02', 'en', 1, 'https://ror.org/02bsg4a02 Alternatives Research & Development Foundation'),
(51977, 'https://ror.org/02bsxzz91', 'no_lang_code', 1, 'https://ror.org/02bsxzz91 Sozopol Municipality ŠžŠ±Ń‰ŠøŠ½Š° Дозопол'),
(51978, 'https://ror.org/02bxsvn11', 'no_lang_code', 1, 'https://ror.org/02bxsvn11 Hellenic Cooperative Oncology Group'),
(51979, 'https://ror.org/02by3t490', 'en', 1, 'https://ror.org/02by3t490 International Foundation for Ethical Research'),
(51980, 'https://ror.org/02byms354', 'fr', 1, 'https://ror.org/02byms354 Centre Hospitalier privƩ Saint GrƩgoire'),
(51981, 'https://ror.org/02c00bp33', 'no_lang_code', 1, 'https://ror.org/02c00bp33 Ernst & Young (United States)'),
(51982, 'https://ror.org/02c01q628', 'no_lang_code', 1, 'https://ror.org/02c01q628 Teva Pharmaceuticals (France)'),
(51983, 'https://ror.org/02c0nbh41', 'en', 1, 'https://ror.org/02c0nbh41 Grace J. Fippinger Foundation'),
(51984, 'https://ror.org/02c54xs52', 'en', 1, 'https://ror.org/02c54xs52 FreedomWorks'),
(51985, 'https://ror.org/02c6wz078', 'en', 1, 'https://ror.org/02c6wz078 University of Zimbabwe-University of California San Francisco'),
(51986, 'https://ror.org/02c8ysx60', 'en', 1, 'https://ror.org/02c8ysx60 Centre County Community Foundation'),
(51987, 'https://ror.org/02c9yny10', 'no_lang_code', 1, 'https://ror.org/02c9yny10 Pfizer (France)'),
(51988, 'https://ror.org/02caz1263', 'en', 1, 'https://ror.org/02caz1263 Third People ''s Hospital of Chongqing é‡åŗ†åø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(51989, 'https://ror.org/02ch6a529', 'en', 1, 'https://ror.org/02ch6a529 American Autoimmune Related Diseases Association'),
(51990, 'https://ror.org/02cj88v79', 'en', 1, 'https://ror.org/02cj88v79 Orlando Immunology Center'),
(51991, 'https://ror.org/02ck8g804', 'en', 1, 'https://ror.org/02ck8g804 Fremont Bank'),
(51992, 'https://ror.org/02cksrc59', 'en', 1, 'https://ror.org/02cksrc59 International Interfaith Peace Corps'),
(51993, 'https://ror.org/02cmdcv60', 'en', 1, 'https://ror.org/02cmdcv60 Bamberg County Hospital'),
(51994, 'https://ror.org/02csg2e67', 'en', 1, 'https://ror.org/02csg2e67 Aurora Periodontics and Implant Dentistry'),
(51995, 'https://ror.org/02cthxa95', 'no_lang_code', 1, 'https://ror.org/02cthxa95 Pliva (Croatia)'),
(51996, 'https://ror.org/02cwd3273', 'en', 1, 'https://ror.org/02cwd3273 Rocketship Education'),
(51997, 'https://ror.org/02cwjh447', 'en', 1, 'https://ror.org/02cwjh447 Juravinski Cancer Centre'),
(51998, 'https://ror.org/02cx07c73', 'no_lang_code', 1, 'https://ror.org/02cx07c73 Cerenis Therapeutics (France)'),
(51999, 'https://ror.org/02cx4j151', 'en', 1, 'https://ror.org/02cx4j151 Marin Community Foundation'),
(52000, 'https://ror.org/02cx5b758', 'en', 1, 'https://ror.org/02cx5b758 Laura Moore Cunningham Foundation'),
(52001, 'https://ror.org/02d0gmv36', 'no_lang_code', 1, 'https://ror.org/02d0gmv36 Kingmed Diagnostics'),
(52002, 'https://ror.org/02d1ek591', 'en', 1, 'https://ror.org/02d1ek591 Phil Hardin Foundation'),
(52003, 'https://ror.org/02d3g7b39', 'no_lang_code', 1, 'https://ror.org/02d3g7b39 CytoTools (Germany)'),
(52004, 'https://ror.org/02d5day94', 'en', 1, 'https://ror.org/02d5day94 IPEC-Americas'),
(52005, 'https://ror.org/02d5jz365', 'no_lang_code', 1, 'https://ror.org/02d5jz365 Open Invention Network (United States)'),
(52006, 'https://ror.org/02d814r78', 'no_lang_code', 1, 'https://ror.org/02d814r78 Huntsman (United States)'),
(52007, 'https://ror.org/02d8jq034', 'en', 1, 'https://ror.org/02d8jq034 ALS Hope Foundation'),
(52008, 'https://ror.org/02d8ytq61', 'en', 1, 'https://ror.org/02d8ytq61 Dew Foundation'),
(52009, 'https://ror.org/02dahen38', 'no_lang_code', 1, 'https://ror.org/02dahen38 Aso Group (Japan)'),
(52010, 'https://ror.org/02db9yt31', 'en', 1, 'https://ror.org/02db9yt31 Cure Brain Cancer Foundation'),
(52011, 'https://ror.org/02dc2hx33', 'no_lang_code', 1, 'https://ror.org/02dc2hx33 Pre-Seed Innovation (Denmark)'),
(52012, 'https://ror.org/02ddg5t47', 'en', 1, 'https://ror.org/02ddg5t47 Koby Mandell Foundation'),
(52013, 'https://ror.org/02decpv84', 'no_lang_code', 1, 'https://ror.org/02decpv84 Crown Holdings (United Kingdom)'),
(52014, 'https://ror.org/02dezpk37', 'en', 1, 'https://ror.org/02dezpk37 Patricia Cronin Foundation'),
(52015, 'https://ror.org/02dh6fs53', 'en', 1, 'https://ror.org/02dh6fs53 Andrea Mennen Family Foundation'),
(52016, 'https://ror.org/02dm9bj37', 'en', 1, 'https://ror.org/02dm9bj37 Blaustein Philanthropic Group'),
(52017, 'https://ror.org/02dpn8j41', 'en', 1, 'https://ror.org/02dpn8j41 St. Luke''s Hospital'),
(52018, 'https://ror.org/02dq5ds52', 'en', 1, 'https://ror.org/02dq5ds52 Los Angeles Rubber Group'),
(52019, 'https://ror.org/02dqxsj77', 'en', 1, 'https://ror.org/02dqxsj77 Health Protection and Research Organisation'),
(52020, 'https://ror.org/02dte5569', 'no_lang_code', 1, 'https://ror.org/02dte5569 LyondellBasell (Italy)'),
(52021, 'https://ror.org/02dvdxr58', 'no_lang_code', 1, 'https://ror.org/02dvdxr58 Mithra Pharmaceuticals (Belgium)'),
(52022, 'https://ror.org/02dvymp17', 'en', 1, 'https://ror.org/02dvymp17 Bonutti Clinic'),
(52023, 'https://ror.org/02dvzgw27', 'en', 1, 'https://ror.org/02dvzgw27 VillageReach'),
(52024, 'https://ror.org/02dw1n083', 'en', 1, 'https://ror.org/02dw1n083 Bangladesh Fisheries Research Institute বাংলাদেশ ą¦®ą§Žą¦øą§ą¦Æ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(52025, 'https://ror.org/02dwv3218', 'no_lang_code', 1, 'https://ror.org/02dwv3218 Danaher (Singapore)'),
(52026, 'https://ror.org/02dxby369', 'no_lang_code', 1, 'https://ror.org/02dxby369 JUKIę Ŗå¼ä¼šē¤¾ Juki (Japan)'),
(52027, 'https://ror.org/02dxhv267', 'no_lang_code', 1, 'https://ror.org/02dxhv267 Humanitarian OpenStreetMap Team'),
(52028, 'https://ror.org/02dynm054', 'en', 1, 'https://ror.org/02dynm054 Carolina Ear, Nose and Throat Clinic'),
(52029, 'https://ror.org/02e0wrh48', 'no_lang_code', 1, 'https://ror.org/02e0wrh48 Universal Electronics (United States)'),
(52030, 'https://ror.org/02e1ztj03', 'en', 1, 'https://ror.org/02e1ztj03 Greater Boston Council on Alcoholism'),
(52031, 'https://ror.org/02e385c51', 'no_lang_code', 1, 'https://ror.org/02e385c51 Amec Foster Wheeler (United States)');
INSERT INTO `rors` VALUES
(52032, 'https://ror.org/02e3qt588', 'en', 1, 'https://ror.org/02e3qt588 Roosevelt Hospital'),
(52033, 'https://ror.org/02e518y78', 'en', 1, 'https://ror.org/02e518y78 New York Laser and Skin Care'),
(52034, 'https://ror.org/02e60zs41', 'no_lang_code', 1, 'https://ror.org/02e60zs41 Ipsen (Germany)'),
(52035, 'https://ror.org/02e97hq31', 'de', 1, 'https://ror.org/02e97hq31 Krankenhaus Meran'),
(52036, 'https://ror.org/02eatcc42', 'no_lang_code', 1, 'https://ror.org/02eatcc42 AGCO (United States)'),
(52037, 'https://ror.org/02ebbk435', 'it', 1, 'https://ror.org/02ebbk435 SocietĆ  Italiana di Cardiologia Interventistica, SocietĆ  Italiana di Cardiologia Invasiva'),
(52038, 'https://ror.org/02ebbs344', 'en', 1, 'https://ror.org/02ebbs344 Dermatology Surgery & Laser Center'),
(52039, 'https://ror.org/02ebjnx89', 'en', 1, 'https://ror.org/02ebjnx89 Diabetes & Endocrine Associates'),
(52040, 'https://ror.org/02edgqh74', 'en', 1, 'https://ror.org/02edgqh74 Community Foundation for Muskegon County'),
(52041, 'https://ror.org/02edrgs08', 'en', 1, 'https://ror.org/02edrgs08 Lester Fund'),
(52042, 'https://ror.org/02eed7j13', 'no_lang_code', 1, 'https://ror.org/02eed7j13 Vasopharm (Germany)'),
(52043, 'https://ror.org/02efnsc68', 'en', 1, 'https://ror.org/02efnsc68 Koret Foundation'),
(52044, 'https://ror.org/02egwd952', 'en', 1, 'https://ror.org/02egwd952 Natural Resource Governance Institute'),
(52045, 'https://ror.org/02ehvej48', 'no_lang_code', 1, 'https://ror.org/02ehvej48 Rational (Germany)'),
(52046, 'https://ror.org/02ej1by07', 'en', 1, 'https://ror.org/02ej1by07 Intermedia Arts'),
(52047, 'https://ror.org/02ejxt329', 'en', 1, 'https://ror.org/02ejxt329 College Summit'),
(52048, 'https://ror.org/02ek94012', 'en', 1, 'https://ror.org/02ek94012 Institute for Advanced Medical Research'),
(52049, 'https://ror.org/02ekmp576', 'en', 1, 'https://ror.org/02ekmp576 Rebound Orthopedics and Neurosurgery'),
(52050, 'https://ror.org/02enpyw90', 'en', 1, 'https://ror.org/02enpyw90 Century Health'),
(52051, 'https://ror.org/02epenp91', 'en', 1, 'https://ror.org/02epenp91 Cricket Island Foundation'),
(52052, 'https://ror.org/02eq6ye19', 'de', 1, 'https://ror.org/02eq6ye19 B. Braun Stiftung'),
(52053, 'https://ror.org/02eqphf30', 'en', 1, 'https://ror.org/02eqphf30 St. Mary Medical Center'),
(52054, 'https://ror.org/02evptr34', 'no_lang_code', 1, 'https://ror.org/02evptr34 Blue Earth Diagnostics (United Kingdom)'),
(52055, 'https://ror.org/02ex0xe53', 'no_lang_code', 1, 'https://ror.org/02ex0xe53 THK (Japan) ćƒ†ć‚£ć‚Øćƒć‚±ćƒ¼'),
(52056, 'https://ror.org/02eya7c23', 'da', 1, 'https://ror.org/02eya7c23 Ny Carlsberg Glyptotek'),
(52057, 'https://ror.org/02eyhcx07', 'en', 1, 'https://ror.org/02eyhcx07 Otto Bremer Trust'),
(52058, 'https://ror.org/02ezpab79', 'en', 1, 'https://ror.org/02ezpab79 Fund for Transforming Education in Kentucky'),
(52059, 'https://ror.org/02f086s27', 'es', 1, 'https://ror.org/02f086s27 Instituto Bernabeu'),
(52060, 'https://ror.org/02f1cca66', 'en', 1, 'https://ror.org/02f1cca66 Center for Reform of School Systems'),
(52061, 'https://ror.org/02f2t0y11', 'en', 1, 'https://ror.org/02f2t0y11 Shanghai Institutes for International Studies äøŠęµ·å›½é™…é—®é¢˜ē ”ē©¶é™¢'),
(52062, 'https://ror.org/02f6zxv37', 'no_lang_code', 1, 'https://ror.org/02f6zxv37 EMS (Switzerland)'),
(52063, 'https://ror.org/02f83ba58', 'no_lang_code', 1, 'https://ror.org/02f83ba58 JazzDanmark (Denmark)'),
(52064, 'https://ror.org/02f9cz450', 'en', 1, 'https://ror.org/02f9cz450 Brian Mercer Charitable Trust'),
(52065, 'https://ror.org/02fbng346', 'en', 1, 'https://ror.org/02fbng346 Foundation for Personality and Social Psychology'),
(52066, 'https://ror.org/02fbwdh31', 'no_lang_code', 1, 'https://ror.org/02fbwdh31 Servier (United Kingdom)'),
(52067, 'https://ror.org/02fceca45', 'en', 1, 'https://ror.org/02fceca45 Macular Disease Foundation Australia'),
(52068, 'https://ror.org/02fcj1h44', 'no_lang_code', 1, 'https://ror.org/02fcj1h44 Logistimo (India)'),
(52069, 'https://ror.org/02fdpqp39', 'en', 1, 'https://ror.org/02fdpqp39 Belgian Brain Tumor Support'),
(52070, 'https://ror.org/02fe4a734', 'en', 1, 'https://ror.org/02fe4a734 Troy Gastroenterology'),
(52071, 'https://ror.org/02fg6xr77', 'en', 1, 'https://ror.org/02fg6xr77 Cedar Tree Foundation'),
(52072, 'https://ror.org/02fh40r38', 'en', 1, 'https://ror.org/02fh40r38 Peripheral Vascular Associates'),
(52073, 'https://ror.org/02fhy7n13', 'en', 1, 'https://ror.org/02fhy7n13 Alliance for Health Reform'),
(52074, 'https://ror.org/02fhzax24', 'no_lang_code', 1, 'https://ror.org/02fhzax24 Advanced Biological Laboratories (Luxembourg)'),
(52075, 'https://ror.org/02fk8h266', 'en', 1, 'https://ror.org/02fk8h266 Youth Venture'),
(52076, 'https://ror.org/02fkyk293', 'en', 1, 'https://ror.org/02fkyk293 The Century Foundation'),
(52077, 'https://ror.org/02fnpq925', 'en', 1, 'https://ror.org/02fnpq925 National Summer Learning Association'),
(52078, 'https://ror.org/02fnsp050', 'en', 1, 'https://ror.org/02fnsp050 National Cancer Coalition'),
(52079, 'https://ror.org/02fpqgd92', 'no_lang_code', 1, 'https://ror.org/02fpqgd92 Conair (United States)'),
(52080, 'https://ror.org/02fpvdy69', 'en', 1, 'https://ror.org/02fpvdy69 SKS Foundation'),
(52081, 'https://ror.org/02fpvzy87', 'no_lang_code', 1, 'https://ror.org/02fpvzy87 UAVision (Portugal)'),
(52082, 'https://ror.org/02fsqn104', 'no_lang_code', 1, 'https://ror.org/02fsqn104 Wieden+Kennedy (United States)'),
(52083, 'https://ror.org/02fstqr33', 'en', 1, 'https://ror.org/02fstqr33 Ankang City Central Hospital å®‰åŗ·åø‚äø­åæƒåŒ»é™¢'),
(52084, 'https://ror.org/02fvevm64', 'en', 1, 'https://ror.org/02fvevm64 Taizhou People''s Hospital'),
(52085, 'https://ror.org/02fvjnz56', 'en', 1, 'https://ror.org/02fvjnz56 Japan United States Friendship Commission'),
(52086, 'https://ror.org/02fwc3866', 'en', 1, 'https://ror.org/02fwc3866 Gwinnett Dermatology'),
(52087, 'https://ror.org/02fyrxr51', 'nl', 1, 'https://ror.org/02fyrxr51 Streeklab Haarlem'),
(52088, 'https://ror.org/02fz2j917', 'en', 1, 'https://ror.org/02fz2j917 YWCA USA'),
(52089, 'https://ror.org/02g0ran52', 'en', 1, 'https://ror.org/02g0ran52 Hille Foundation'),
(52090, 'https://ror.org/02g1cct97', 'no_lang_code', 1, 'https://ror.org/02g1cct97 Sunonwealth Electric Machine Industry (Taiwan)'),
(52091, 'https://ror.org/02g21hc40', 'no_lang_code', 1, 'https://ror.org/02g21hc40 Art Innovation (Netherlands)'),
(52092, 'https://ror.org/02g3w4r36', 'en', 1, 'https://ror.org/02g3w4r36 Actuarial Foundation'),
(52093, 'https://ror.org/02g8xhs57', 'en', 1, 'https://ror.org/02g8xhs57 Getty Foundation'),
(52094, 'https://ror.org/02gae5p70', 'en', 1, 'https://ror.org/02gae5p70 International Association of Hydrological Sciences'),
(52095, 'https://ror.org/02gbgwz87', 'en', 1, 'https://ror.org/02gbgwz87 Allan Wilson Centre'),
(52096, 'https://ror.org/02gcdg805', 'en', 1, 'https://ror.org/02gcdg805 Fashion Group International'),
(52097, 'https://ror.org/02gcfcp23', 'en', 1, 'https://ror.org/02gcfcp23 Irish Youth Justice Service'),
(52098, 'https://ror.org/02gdc0c96', 'no_lang_code', 1, 'https://ror.org/02gdc0c96 OmniVision Technologies (Germany)'),
(52099, 'https://ror.org/02ge5fs96', 'en', 1, 'https://ror.org/02ge5fs96 American Youth Policy Forum'),
(52100, 'https://ror.org/02getev82', 'en', 1, 'https://ror.org/02getev82 El Camino Urology Medical Group'),
(52101, 'https://ror.org/02gfq0f62', 'da', 1, 'https://ror.org/02gfq0f62 Axel Muusfeldts Fond'),
(52102, 'https://ror.org/02ggyp989', 'en', 1, 'https://ror.org/02ggyp989 Central Policy Unit 中央政策組'),
(52103, 'https://ror.org/02gh3wa58', 'no_lang_code', 1, 'https://ror.org/02gh3wa58 Auris Medical (United States)'),
(52104, 'https://ror.org/02gpmmz25', 'es', 1, 'https://ror.org/02gpmmz25 Navarra de Infraestructuras Locales'),
(52105, 'https://ror.org/02gr42472', 'en', 1, 'https://ror.org/02gr42472 First Affiliated Hospital of Guangdong Pharmaceutical University å¹æäøœčÆå­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(52106, 'https://ror.org/02grbwy50', 'en', 1, 'https://ror.org/02grbwy50 Dynamed Clinical Research'),
(52107, 'https://ror.org/02gvvc992', 'no_lang_code', 1, 'https://ror.org/02gvvc992 Amgen (United Kingdom)'),
(52108, 'https://ror.org/02gwwga82', 'no_lang_code', 1, 'https://ror.org/02gwwga82 Sennheiser (Germany)'),
(52109, 'https://ror.org/02gx57r28', 'en', 1, 'https://ror.org/02gx57r28 Atlanta Center for Medical Research'),
(52110, 'https://ror.org/02gxz9934', 'en', 1, 'https://ror.org/02gxz9934 McPherson County Community Foundation'),
(52111, 'https://ror.org/02gye8637', 'no_lang_code', 1, 'https://ror.org/02gye8637 ProSocial (United States)'),
(52112, 'https://ror.org/02h04v153', 'no_lang_code', 1, 'https://ror.org/02h04v153 VKR Holding (Denmark)'),
(52113, 'https://ror.org/02h0asf07', 'en', 1, 'https://ror.org/02h0asf07 Solano County Library'),
(52114, 'https://ror.org/02h144281', 'en', 1, 'https://ror.org/02h144281 Charles Lee Powell Foundation'),
(52115, 'https://ror.org/02h39wj34', 'no_lang_code', 1, 'https://ror.org/02h39wj34 Showa Corporation ę Ŗå¼ä¼šē¤¾ć‚·ćƒ§ćƒ¼ćƒÆ'),
(52116, 'https://ror.org/02h5xm343', 'en', 1, 'https://ror.org/02h5xm343 King County Department of Community and Human Services'),
(52117, 'https://ror.org/02h67zw08', 'en', 1, 'https://ror.org/02h67zw08 Breast Center'),
(52118, 'https://ror.org/02h6aq665', 'en', 1, 'https://ror.org/02h6aq665 El Centro de la Raza'),
(52119, 'https://ror.org/02h7t2a16', 'en', 1, 'https://ror.org/02h7t2a16 Irene W. and C.B. Pennington Foundation'),
(52120, 'https://ror.org/02h8mhp51', 'en', 1, 'https://ror.org/02h8mhp51 Pittsburgh Ear Associates'),
(52121, 'https://ror.org/02h8p6f28', 'en', 1, 'https://ror.org/02h8p6f28 Courage360'),
(52122, 'https://ror.org/02ha36g10', 'en', 1, 'https://ror.org/02ha36g10 Environmental Protection Administration č”Œę”æé™¢ē’°å¢ƒäæč­·ē½²'),
(52123, 'https://ror.org/02hce7r59', 'en', 1, 'https://ror.org/02hce7r59 8020 Promotion Foundation 8020ęŽØé€²č²”å›£'),
(52124, 'https://ror.org/02hdbjg52', 'en', 1, 'https://ror.org/02hdbjg52 Network for Excellence in Health Innovation'),
(52125, 'https://ror.org/02he67h29', 'en', 1, 'https://ror.org/02he67h29 Australian Centre for HIV and Hepatitis Virology Research'),
(52126, 'https://ror.org/02hef5r03', 'no_lang_code', 1, 'https://ror.org/02hef5r03 Osaka Nishi Clinic å¤§é˜Ŗč„æć‚ÆćƒŖćƒ‹ćƒƒ'),
(52127, 'https://ror.org/02hejje45', 'en', 1, 'https://ror.org/02hejje45 Oxford Optronix'),
(52128, 'https://ror.org/02heszr58', 'en', 1, 'https://ror.org/02heszr58 Rockefeller Archive Center'),
(52129, 'https://ror.org/02hfdv863', 'en', 1, 'https://ror.org/02hfdv863 National Academy Foundation'),
(52130, 'https://ror.org/02hg8mx81', 'en', 1, 'https://ror.org/02hg8mx81 Centro Comunitario Juan Diego'),
(52131, 'https://ror.org/02hhch541', 'no_lang_code', 1, 'https://ror.org/02hhch541 TrĆØves (France)'),
(52132, 'https://ror.org/02hk69q89', 'en', 1, 'https://ror.org/02hk69q89 Gerald R. Ford Presidential Foundation'),
(52133, 'https://ror.org/02hkdst29', 'en', 1, 'https://ror.org/02hkdst29 Arlington Dermatology'),
(52134, 'https://ror.org/02hppaj03', 'en', 1, 'https://ror.org/02hppaj03 Three Rivers Community Foundation'),
(52135, 'https://ror.org/02ht7jy02', 'en', 1, 'https://ror.org/02ht7jy02 State Protected Areas Service Valstybine Saugomu Teritoriju Tarnyba'),
(52136, 'https://ror.org/02hv1r057', 'en', 1, 'https://ror.org/02hv1r057 Blue Mountain Community Foundation'),
(52137, 'https://ror.org/02hxjys58', 'no_lang_code', 1, 'https://ror.org/02hxjys58 Novelion (United Kingdom)'),
(52138, 'https://ror.org/02hy2v836', 'no_lang_code', 1, 'https://ror.org/02hy2v836 Amphenol (United States)'),
(52139, 'https://ror.org/02hze6e47', 'no_lang_code', 1, 'https://ror.org/02hze6e47 Laitram (United States)'),
(52140, 'https://ror.org/02j479041', 'en', 1, 'https://ror.org/02j479041 Oklahoma Heart Hospital'),
(52141, 'https://ror.org/02j553a92', 'fr', 1, 'https://ror.org/02j553a92 Fondation Nanosciences'),
(52142, 'https://ror.org/02j6fbg68', 'en', 1, 'https://ror.org/02j6fbg68 Juvenile Diabetes Research Foundation'),
(52143, 'https://ror.org/02j73r478', 'no_lang_code', 1, 'https://ror.org/02j73r478 Roto Frank (Germany)'),
(52144, 'https://ror.org/02j9g7j58', 'en', 1, 'https://ror.org/02j9g7j58 G. Unger Vetlesen Foundation'),
(52145, 'https://ror.org/02jacnm89', 'no_lang_code', 1, 'https://ror.org/02jacnm89 Mundipharma (Netherlands)'),
(52146, 'https://ror.org/02jcef994', 'en', 1, 'https://ror.org/02jcef994 South African Tuberculosis Vaccine Initiative'),
(52147, 'https://ror.org/02jep5960', 'no_lang_code', 1, 'https://ror.org/02jep5960 CanSino (China)'),
(52148, 'https://ror.org/02jf3v234', 'no_lang_code', 1, 'https://ror.org/02jf3v234 Protalix BioTherapeutics (Israel)'),
(52149, 'https://ror.org/02jg1vm67', 'en', 1, 'https://ror.org/02jg1vm67 Diabetes Care & Hormone Clinic'),
(52150, 'https://ror.org/02jht8768', 'en', 1, 'https://ror.org/02jht8768 Hyams Foundation'),
(52151, 'https://ror.org/02jkvf915', 'en', 1, 'https://ror.org/02jkvf915 Academic and Community Cancer Research United'),
(52152, 'https://ror.org/02jn85w30', 'en', 1, 'https://ror.org/02jn85w30 British Association for Chinese Studies'),
(52153, 'https://ror.org/02jp56b40', 'en', 1, 'https://ror.org/02jp56b40 PRN of Kansas'),
(52154, 'https://ror.org/02jpw5905', 'en', 1, 'https://ror.org/02jpw5905 Covenant Foundation'),
(52155, 'https://ror.org/02jqk1764', 'en', 1, 'https://ror.org/02jqk1764 Desert Regional Medical Center'),
(52156, 'https://ror.org/02jrfr034', 'en', 1, 'https://ror.org/02jrfr034 Northwest Eye Surgeons'),
(52157, 'https://ror.org/02js8j925', 'en', 1, 'https://ror.org/02js8j925 Cade Museum'),
(52158, 'https://ror.org/02jsxnc12', 'de', 1, 'https://ror.org/02jsxnc12 Klinikum Arnsberg'),
(52159, 'https://ror.org/02jv4t428', 'en', 1, 'https://ror.org/02jv4t428 Paul & Carol David Foundation'),
(52160, 'https://ror.org/02jx0eg57', 'en', 1, 'https://ror.org/02jx0eg57 South Texas Blood and Tissue Center'),
(52161, 'https://ror.org/02jxgq335', 'en', 1, 'https://ror.org/02jxgq335 New Horizons Foundation'),
(52162, 'https://ror.org/02jyvnx70', 'no_lang_code', 1, 'https://ror.org/02jyvnx70 UniQure (Netherlands)'),
(52163, 'https://ror.org/02k13dd86', 'en', 1, 'https://ror.org/02k13dd86 Landscape Architecture Foundation'),
(52164, 'https://ror.org/02k57sp27', 'no_lang_code', 1, 'https://ror.org/02k57sp27 Sirenas (United States)'),
(52165, 'https://ror.org/02k5aap11', 'en', 1, 'https://ror.org/02k5aap11 Centre for Prevention and Control of AIDS and Infectious Diseases Центр по профилактике Šø Š±Š¾Ń€ŃŒŠ±Šµ со Š”ŠŸŠ˜Š”Š¾Š¼ Šø инфекционными Š·Š°Š±Š¾Š»ŠµŠ²Š°Š½ŠøŃŠ¼Šø,'),
(52166, 'https://ror.org/02k5eqb88', 'no_lang_code', 1, 'https://ror.org/02k5eqb88 Vyne Therapeutics (United States)'),
(52167, 'https://ror.org/02k8cz130', 'no_lang_code', 1, 'https://ror.org/02k8cz130 Umande Trust'),
(52168, 'https://ror.org/02kahb572', 'en', 1, 'https://ror.org/02kahb572 Texan Eye'),
(52169, 'https://ror.org/02kb3q578', 'no_lang_code', 1, 'https://ror.org/02kb3q578 Dolby (Netherlands)'),
(52170, 'https://ror.org/02kd7tq69', 'en', 1, 'https://ror.org/02kd7tq69 Harbage Consulting'),
(52171, 'https://ror.org/02kd8pg21', 'en', 1, 'https://ror.org/02kd8pg21 Claneil Foundation'),
(52172, 'https://ror.org/02kddrj80', 'en', 1, 'https://ror.org/02kddrj80 Lowe Syndrome Association'),
(52173, 'https://ror.org/02keq9g57', 'en', 1, 'https://ror.org/02keq9g57 Armstrong McDonald Foundation'),
(52174, 'https://ror.org/02kerk826', 'en', 1, 'https://ror.org/02kerk826 FINRA Investor Education Foundation'),
(52175, 'https://ror.org/02ketev28', 'en', 1, 'https://ror.org/02ketev28 Texas Oncology'),
(52176, 'https://ror.org/02kgj4n82', 'en', 1, 'https://ror.org/02kgj4n82 Foundation for Child Development'),
(52177, 'https://ror.org/02kh04593', 'de', 1, 'https://ror.org/02kh04593 Arbeitsgemeinschaft medikamentƶse Tumortherapie'),
(52178, 'https://ror.org/02khx6d29', 'en', 1, 'https://ror.org/02khx6d29 Battelle For Kids'),
(52179, 'https://ror.org/02kj8k530', 'en', 1, 'https://ror.org/02kj8k530 North Dakota Community Foundation'),
(52180, 'https://ror.org/02kjpfv20', 'en', 1, 'https://ror.org/02kjpfv20 Peninsula Research'),
(52181, 'https://ror.org/02kmr3f22', 'en', 1, 'https://ror.org/02kmr3f22 Science Theatre Videnskabsteatret'),
(52182, 'https://ror.org/02kmtme09', 'en', 1, 'https://ror.org/02kmtme09 Diabetes & Endocrinology Specialists'),
(52183, 'https://ror.org/02kpyrm37', 'no_lang_code', 1, 'https://ror.org/02kpyrm37 Ippokrateio General Hospital of Thessaloniki Ī™Ī Ī ĪŸĪšĪ”Ī‘Ī¤Ī•Ī™ĪŸ Ī Ī•Ī”Ī™Ī¦Ī•Ī”Ī•Ī™Ī‘ĪšĪŸ Ī“Ī•ĪĪ™ĪšĪŸ ĪĪŸĪ£ĪŸĪšĪŸĪœĪ•Ī™ĪŸ Ī˜Ī•Ī£Ī£Ī‘Ī›ĪŸĪĪ™ĪšĪ—Ī£'),
(52184, 'https://ror.org/02kqrq831', 'en', 1, 'https://ror.org/02kqrq831 Comprehensive Urology'),
(52185, 'https://ror.org/02kqzrt08', 'nl', 1, 'https://ror.org/02kqzrt08 Tandartspraktijk Bocht Oosterdiep'),
(52186, 'https://ror.org/02kra6808', 'en', 1, 'https://ror.org/02kra6808 Jiangmen Wuyi Traditional Chinese Medicine Hospital äŗ”é‚‘äø­åŒ»é™¢'),
(52187, 'https://ror.org/02krh4254', 'en', 1, 'https://ror.org/02krh4254 Sadick Dermatology'),
(52188, 'https://ror.org/02kv8z446', 'en', 1, 'https://ror.org/02kv8z446 Berth of Kantzows Stiftelse Berth von Kantzows Foundation'),
(52189, 'https://ror.org/02kvdh980', 'no_lang_code', 1, 'https://ror.org/02kvdh980 Faron Pharmaceutical (Finland)'),
(52190, 'https://ror.org/02kvr5932', 'en', 1, 'https://ror.org/02kvr5932 Masonic Foundation of Utah'),
(52191, 'https://ror.org/02kwy3g61', 'no_lang_code', 1, 'https://ror.org/02kwy3g61 Cutest Systems (United Kingdom)'),
(52192, 'https://ror.org/02kx9dq14', 'en', 1, 'https://ror.org/02kx9dq14 Asia New Zealand Foundation'),
(52193, 'https://ror.org/02kz19x38', 'no_lang_code', 1, 'https://ror.org/02kz19x38 Archigen Biotech (United Kingdom)'),
(52194, 'https://ror.org/02m0a5h24', 'en', 1, 'https://ror.org/02m0a5h24 LuMind Research Down Syndrome Foundation'),
(52195, 'https://ror.org/02m0qsq54', 'it', 1, 'https://ror.org/02m0qsq54 Fondazione Europea Ricerca Biomedica'),
(52196, 'https://ror.org/02m34vd28', 'en', 1, 'https://ror.org/02m34vd28 American Veterinary Medical Foundation'),
(52197, 'https://ror.org/02m3rg114', 'en', 1, 'https://ror.org/02m3rg114 Brooks Rehabilitation Clinical Research Center'),
(52198, 'https://ror.org/02m5ztg20', 'en', 1, 'https://ror.org/02m5ztg20 Communities in School'),
(52199, 'https://ror.org/02m8dvs65', 'en', 1, 'https://ror.org/02m8dvs65 Dorothea Haus Ross Foundation'),
(52200, 'https://ror.org/02m9pjv04', 'en', 1, 'https://ror.org/02m9pjv04 National Speech and Debate Association'),
(52201, 'https://ror.org/02mabf754', 'no_lang_code', 1, 'https://ror.org/02mabf754 Bissell (United States)'),
(52202, 'https://ror.org/02mfxyv79', 'en', 1, 'https://ror.org/02mfxyv79 Michigan Cancer Research Consortium'),
(52203, 'https://ror.org/02mg13n04', 'en', 1, 'https://ror.org/02mg13n04 Memphis Urban League'),
(52204, 'https://ror.org/02mgz7255', 'en', 1, 'https://ror.org/02mgz7255 Pacific Clinical Research'),
(52205, 'https://ror.org/02mkdtg06', 'en', 1, 'https://ror.org/02mkdtg06 Davis Foundations'),
(52206, 'https://ror.org/02mmxnk73', 'en', 1, 'https://ror.org/02mmxnk73 Coleman Foundation'),
(52207, 'https://ror.org/02mnmm768', 'no_lang_code', 1, 'https://ror.org/02mnmm768 Sanofi (Italy)'),
(52208, 'https://ror.org/02mpf8x78', 'no_lang_code', 1, 'https://ror.org/02mpf8x78 Tideline (United States)'),
(52209, 'https://ror.org/02mphet60', 'en', 1, 'https://ror.org/02mphet60 North East Ambulance Service NHS Foundation Trust'),
(52210, 'https://ror.org/02mzaks39', 'en', 1, 'https://ror.org/02mzaks39 Clallam County YMCA'),
(52211, 'https://ror.org/02mzdpf71', 'en', 1, 'https://ror.org/02mzdpf71 Garden Club of Honolulu'),
(52212, 'https://ror.org/02mzerg05', 'no_lang_code', 1, 'https://ror.org/02mzerg05 Ribbon Communications (United States)'),
(52213, 'https://ror.org/02n130h25', 'en', 1, 'https://ror.org/02n130h25 Nitsch Foundation'),
(52214, 'https://ror.org/02n1k3w22', 'en', 1, 'https://ror.org/02n1k3w22 Digital Learning Department'),
(52215, 'https://ror.org/02n211843', 'no_lang_code', 1, 'https://ror.org/02n211843 Owens Corning (United States)'),
(52216, 'https://ror.org/02n478665', 'en', 1, 'https://ror.org/02n478665 Frontiers Foundation'),
(52217, 'https://ror.org/02n4r0h83', 'no_lang_code', 1, 'https://ror.org/02n4r0h83 CoLucid Pharmaceuticals (United States)'),
(52218, 'https://ror.org/02n4r4429', 'en', 1, 'https://ror.org/02n4r4429 Minnesota Gastroenterology'),
(52219, 'https://ror.org/02n7fx037', 'en', 1, 'https://ror.org/02n7fx037 National Foundation for Infectious Diseases'),
(52220, 'https://ror.org/02n9j0y25', 'en', 1, 'https://ror.org/02n9j0y25 Meghan Rose Bradley Foundation'),
(52221, 'https://ror.org/02nc8ke31', 'no_lang_code', 1, 'https://ror.org/02nc8ke31 GlaxoSmithKline (Poland)'),
(52222, 'https://ror.org/02ncjrc71', 'no_lang_code', 1, 'https://ror.org/02ncjrc71 LukƔcs Ʃs TƔrsa (Hungary)'),
(52223, 'https://ror.org/02nd1ya78', 'no_lang_code', 1, 'https://ror.org/02nd1ya78 Wetlands Work (Cambodia)'),
(52224, 'https://ror.org/02ndgm578', 'en', 1, 'https://ror.org/02ndgm578 Noah Worcester Dermatological Society'),
(52225, 'https://ror.org/02neda623', 'en', 1, 'https://ror.org/02neda623 Asan Institute for Policy Studies 아산정책연구원'),
(52226, 'https://ror.org/02nfebn65', 'en', 1, 'https://ror.org/02nfebn65 Jawaharlal Nehru Memorial Fund'),
(52227, 'https://ror.org/02nfn6153', 'en', 1, 'https://ror.org/02nfn6153 Maine Research Associates'),
(52228, 'https://ror.org/02nfsws34', 'no_lang_code', 1, 'https://ror.org/02nfsws34 Innolytics (United States)'),
(52229, 'https://ror.org/02ng6yf94', 'en', 1, 'https://ror.org/02ng6yf94 Allard Foundation'),
(52230, 'https://ror.org/02nhthp75', 'it', 1, 'https://ror.org/02nhthp75 Gruppo Oncologico del Nord Ovest'),
(52231, 'https://ror.org/02nkqtg17', 'en', 1, 'https://ror.org/02nkqtg17 Coborn Cancer Center'),
(52232, 'https://ror.org/02nptez24', 'en', 1, 'https://ror.org/02nptez24 Pudong Medical Center äøŠęµ·åø‚ęµ¦äøœåŒ»é™¢'),
(52233, 'https://ror.org/02nsw7d06', 'en', 1, 'https://ror.org/02nsw7d06 IVI Murcia Clinic'),
(52234, 'https://ror.org/02nwxch96', 'en', 1, 'https://ror.org/02nwxch96 Asheville Cardiology Associates'),
(52235, 'https://ror.org/02nxm3e56', 'no_lang_code', 1, 'https://ror.org/02nxm3e56 Electrolux (Belgium)'),
(52236, 'https://ror.org/02nykv047', 'en', 1, 'https://ror.org/02nykv047 Margaret S. Mahler Child Development Foundation'),
(52237, 'https://ror.org/02p19t276', 'en', 1, 'https://ror.org/02p19t276 Institute for American Values'),
(52238, 'https://ror.org/02p1ne648', 'en', 1, 'https://ror.org/02p1ne648 Hillcrest Clinical Research'),
(52239, 'https://ror.org/02p1wqy15', 'de', 1, 'https://ror.org/02p1wqy15 Nephrologisches Zentrum Goettingen'),
(52240, 'https://ror.org/02p2egt14', 'en', 1, 'https://ror.org/02p2egt14 McCord Hospital'),
(52241, 'https://ror.org/02p32hv70', 'en', 1, 'https://ror.org/02p32hv70 Gallipoli Medical Research Foundation'),
(52242, 'https://ror.org/02p3abx23', 'fr', 1, 'https://ror.org/02p3abx23 Fondation Bettencourt Schueller'),
(52243, 'https://ror.org/02p5kxa09', 'no_lang_code', 1, 'https://ror.org/02p5kxa09 Tomy (Japan) ę Ŗå¼ä¼šē¤¾ć‚æć‚«ćƒ©ćƒˆćƒŸćƒ¼'),
(52244, 'https://ror.org/02p5tsd26', 'en', 1, 'https://ror.org/02p5tsd26 Honjo International Scholarship Foundation'),
(52245, 'https://ror.org/02p6vdy49', 'en', 1, 'https://ror.org/02p6vdy49 Buffalo Spine Surgery'),
(52246, 'https://ror.org/02p8p2r04', 'en', 1, 'https://ror.org/02p8p2r04 Dimmer Family Foundation'),
(52247, 'https://ror.org/02p92eb51', 'en', 1, 'https://ror.org/02p92eb51 Benign Essential Blepharospasm Research Foundation'),
(52248, 'https://ror.org/02p9ey581', 'it', 1, 'https://ror.org/02p9ey581 Azienda Ospedaliera Universitaria UniversitĆ  degli Studi della Campania Luigi Vanvitelli'),
(52249, 'https://ror.org/02paapn48', 'no_lang_code', 1, 'https://ror.org/02paapn48 Air Liquide (United Kingdom)'),
(52250, 'https://ror.org/02pbe9j32', 'en', 1, 'https://ror.org/02pbe9j32 Japan Society of Ultrasonics in Medicine å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č¶…éŸ³ę³¢åŒ»å­¦ä¼š'),
(52251, 'https://ror.org/02pcrrj33', 'en', 1, 'https://ror.org/02pcrrj33 Peters Medical Research'),
(52252, 'https://ror.org/02pcvrc50', 'fr', 1, 'https://ror.org/02pcvrc50 Centre Hospitalier de Cornouaille'),
(52253, 'https://ror.org/02pdqrx22', 'en', 1, 'https://ror.org/02pdqrx22 Center for Assessment'),
(52254, 'https://ror.org/02pevq096', 'en', 1, 'https://ror.org/02pevq096 Multiple Sclerosis Center Of Northeastern New York'),
(52255, 'https://ror.org/02pfe8s32', 'en', 1, 'https://ror.org/02pfe8s32 Council for Economic Education'),
(52256, 'https://ror.org/02pfr9428', 'nl', 1, 'https://ror.org/02pfr9428 Waterlandziekenhuis'),
(52257, 'https://ror.org/02pg6kr38', 'en', 1, 'https://ror.org/02pg6kr38 George Gund Foundation'),
(52258, 'https://ror.org/02pgmm462', 'en', 1, 'https://ror.org/02pgmm462 Tianjin Tanggu Women and Child Health å”˜ę²½åŒŗå¦‡å¹¼äæå„é™¢'),
(52259, 'https://ror.org/02ph01924', 'no_lang_code', 1, 'https://ror.org/02ph01924 Lampang Hospital'),
(52260, 'https://ror.org/02pj41y46', 'en', 1, 'https://ror.org/02pj41y46 Character'),
(52261, 'https://ror.org/02pje8j21', 'en', 1, 'https://ror.org/02pje8j21 Tanzania Women Research Foundation'),
(52262, 'https://ror.org/02pjmtb58', 'en', 1, 'https://ror.org/02pjmtb58 Ute Mountain Ute Tribe''s Environmental Programs Department'),
(52263, 'https://ror.org/02pkecv52', 'en', 1, 'https://ror.org/02pkecv52 Comprehensive Eye Care'),
(52264, 'https://ror.org/02pp6z931', 'en', 1, 'https://ror.org/02pp6z931 Bailit Health'),
(52265, 'https://ror.org/02pvtxb60', 'en', 1, 'https://ror.org/02pvtxb60 ASTRA National Museum Complex Complexul Naţional Muzeal "ASTRA"'),
(52266, 'https://ror.org/02pxbb382', 'no_lang_code', 1, 'https://ror.org/02pxbb382 Free to Choose Network (United States)'),
(52267, 'https://ror.org/02pxgg741', 'en', 1, 'https://ror.org/02pxgg741 Bradshaw Knight Foundation'),
(52268, 'https://ror.org/02q2xaq91', 'en', 1, 'https://ror.org/02q2xaq91 Christopher Reynolds Foundation'),
(52269, 'https://ror.org/02q3n2241', 'no_lang_code', 1, 'https://ror.org/02q3n2241 CureVac (Germany)'),
(52270, 'https://ror.org/02q44wp02', 'en', 1, 'https://ror.org/02q44wp02 Highmark Blue Cross Blue Shield'),
(52271, 'https://ror.org/02q4zyb28', 'de', 1, 'https://ror.org/02q4zyb28 Stadtkrankenhaus Schwabach'),
(52272, 'https://ror.org/02q7qcb13', 'fr', 1, 'https://ror.org/02q7qcb13 FƩdƩration Francophone de CancƩrologie Digestive'),
(52273, 'https://ror.org/02q8b8t22', 'en', 1, 'https://ror.org/02q8b8t22 Battery Park'),
(52274, 'https://ror.org/02q8k0k97', 'fr', 1, 'https://ror.org/02q8k0k97 Fondation Centaure'),
(52275, 'https://ror.org/02qae1c67', 'it', 1, 'https://ror.org/02qae1c67 SocietĆ  Italiana di Nefrologia'),
(52276, 'https://ror.org/02qar5136', 'en', 1, 'https://ror.org/02qar5136 Respiratory Clinical Trials'),
(52277, 'https://ror.org/02qbt0637', 'en', 1, 'https://ror.org/02qbt0637 Oxford Policy Management'),
(52278, 'https://ror.org/02qc1es24', 'fr', 1, 'https://ror.org/02qc1es24 Association du Syndrome de Lowe'),
(52279, 'https://ror.org/02qd0cv38', 'en', 1, 'https://ror.org/02qd0cv38 Danish Institute for Human Rights Institut for Menneskerettigheder'),
(52280, 'https://ror.org/02qfkky73', 'en', 1, 'https://ror.org/02qfkky73 COPD Foundation'),
(52281, 'https://ror.org/02qjq5342', 'en', 1, 'https://ror.org/02qjq5342 Kobayashi Foundation for Cancer Research å°ęž—ćŒć‚“ē ”ē©¶č²”å›£'),
(52282, 'https://ror.org/02qjsrb04', 'en', 1, 'https://ror.org/02qjsrb04 Progressive Policy Institute'),
(52283, 'https://ror.org/02qk1yb72', 'en', 1, 'https://ror.org/02qk1yb72 Health Intervention and Technology Assessment Program ą¹‚ąø„ąø£ąø‡ąøąø²ąø£ąø›ąø£ąø°ą¹€ąø”ąø“ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹ąø„ąø°ąø™ą¹‚ąø¢ąøšąø²ąø¢ąø”ą¹‰ąø²ąø™ąøŖąøøąø‚ąø ąø²ąøž'),
(52284, 'https://ror.org/02qkdss21', 'en', 1, 'https://ror.org/02qkdss21 Cardiovascular Institute of Philadelphia'),
(52285, 'https://ror.org/02qkndm86', 'no_lang_code', 1, 'https://ror.org/02qkndm86 AcelRx Pharmaceuticals (United States)'),
(52286, 'https://ror.org/02qm2nb52', 'en', 1, 'https://ror.org/02qm2nb52 Arktisk Institut Danish Arctic Institute'),
(52287, 'https://ror.org/02qtztk24', 'en', 1, 'https://ror.org/02qtztk24 Abnoba (Germany)'),
(52288, 'https://ror.org/02qvmv657', 'en', 1, 'https://ror.org/02qvmv657 University Child Development School'),
(52289, 'https://ror.org/02qw2fp57', 'en', 1, 'https://ror.org/02qw2fp57 MedVadis Research'),
(52290, 'https://ror.org/02qxa1v47', 'fr', 1, 'https://ror.org/02qxa1v47 Centre Hospitalier Esquirol de Limoges'),
(52291, 'https://ror.org/02qyc0r76', 'en', 1, 'https://ror.org/02qyc0r76 American Pain Foundation'),
(52292, 'https://ror.org/02qyk0j27', 'en', 1, 'https://ror.org/02qyk0j27 Xintai People''s Hospital ę–°ę³°åø‚äŗŗę°‘åŒ»é™¢'),
(52293, 'https://ror.org/02qzgf733', 'en', 1, 'https://ror.org/02qzgf733 PAHO Foundation'),
(52294, 'https://ror.org/02qzvv903', 'en', 1, 'https://ror.org/02qzvv903 Nashville Public Education Foundation'),
(52295, 'https://ror.org/02r06e757', 'en', 1, 'https://ror.org/02r06e757 Women''s Prison Association'),
(52296, 'https://ror.org/02r0vmn14', 'no_lang_code', 1, 'https://ror.org/02r0vmn14 Kamineni Hospitals'),
(52297, 'https://ror.org/02r3fkw61', 'no_lang_code', 1, 'https://ror.org/02r3fkw61 Tesaro (United States)'),
(52298, 'https://ror.org/02r3ht216', 'no_lang_code', 1, 'https://ror.org/02r3ht216 Quadient (France)'),
(52299, 'https://ror.org/02r408872', 'en', 1, 'https://ror.org/02r408872 Middle Country Endocrinology'),
(52300, 'https://ror.org/02r41bx44', 'en', 1, 'https://ror.org/02r41bx44 Character Scotland'),
(52301, 'https://ror.org/02r5ax782', 'en', 1, 'https://ror.org/02r5ax782 Connecticut Community Foundation'),
(52302, 'https://ror.org/02r990937', 'no_lang_code', 1, 'https://ror.org/02r990937 PannonPharma (Hungary)'),
(52303, 'https://ror.org/02raaag15', 'no_lang_code', 1, 'https://ror.org/02raaag15 Apodemus (Sweden)'),
(52304, 'https://ror.org/02rb2sh19', 'en', 1, 'https://ror.org/02rb2sh19 Chemotherapy Foundation'),
(52305, 'https://ror.org/02rc7rz93', 'no_lang_code', 1, 'https://ror.org/02rc7rz93 Autoliv (United States)'),
(52306, 'https://ror.org/02rcj7e91', 'en', 1, 'https://ror.org/02rcj7e91 Worcester Public Schools'),
(52307, 'https://ror.org/02rd6g006', 'en', 1, 'https://ror.org/02rd6g006 Federation of Infectious Diseases Societies of Southern Africa'),
(52308, 'https://ror.org/02rdgsh90', 'en', 1, 'https://ror.org/02rdgsh90 Lincoln County Health Department'),
(52309, 'https://ror.org/02rfhxh40', 'en', 1, 'https://ror.org/02rfhxh40 Westbourne Centre'),
(52310, 'https://ror.org/02rgsra75', 'en', 1, 'https://ror.org/02rgsra75 Associated Eyecare'),
(52311, 'https://ror.org/02rhsjm93', 'en', 1, 'https://ror.org/02rhsjm93 South African Institute for Distance Education'),
(52312, 'https://ror.org/02rhv6v27', 'no_lang_code', 1, 'https://ror.org/02rhv6v27 Strathspey Crown (United States)'),
(52313, 'https://ror.org/02rn5zx43', 'de', 1, 'https://ror.org/02rn5zx43 Berufsverband Niedergelassener GynƤkologischer Onkologen'),
(52314, 'https://ror.org/02rqv6723', 'en', 1, 'https://ror.org/02rqv6723 Circulation Foundation'),
(52315, 'https://ror.org/02rsqhk75', 'en', 1, 'https://ror.org/02rsqhk75 Glens Falls Foundation'),
(52316, 'https://ror.org/02rt6g223', 'it', 1, 'https://ror.org/02rt6g223 Fondazione per la Ricerca sulla Fibrosi Cistica'),
(52317, 'https://ror.org/02rvfjx92', 'no_lang_code', 1, 'https://ror.org/02rvfjx92 Taiwan Semiconductor Manufacturing Company (United States)'),
(52318, 'https://ror.org/02rw3e427', 'en', 1, 'https://ror.org/02rw3e427 Nebraska Press Association'),
(52319, 'https://ror.org/02rw47d25', 'no_lang_code', 1, 'https://ror.org/02rw47d25 Galena Biopharma (United States)'),
(52320, 'https://ror.org/02rzhqp10', 'no_lang_code', 1, 'https://ror.org/02rzhqp10 ReadCoor (United States)'),
(52321, 'https://ror.org/02s1afg98', 'en', 1, 'https://ror.org/02s1afg98 Chromosome 18 Registry & Research Society'),
(52322, 'https://ror.org/02s1hnn22', 'en', 1, 'https://ror.org/02s1hnn22 Mellam Family Foundation'),
(52323, 'https://ror.org/02s2qzh96', 'fr', 1, 'https://ror.org/02s2qzh96 Centre Jean Bernard'),
(52324, 'https://ror.org/02s2v2m89', 'no_lang_code', 1, 'https://ror.org/02s2v2m89 Mucos Pharma (Germany)'),
(52325, 'https://ror.org/02s4dmy28', 'en', 1, 'https://ror.org/02s4dmy28 Landscape Alberta Nursery Trades Association'),
(52326, 'https://ror.org/02s4p5q31', 'en', 1, 'https://ror.org/02s4p5q31 Hesperian Health Guides'),
(52327, 'https://ror.org/02s59jv58', 'en', 1, 'https://ror.org/02s59jv58 Arizona Cotton Growers Association'),
(52328, 'https://ror.org/02s62y466', 'en', 1, 'https://ror.org/02s62y466 American Academy of Otolaryngic Allergy'),
(52329, 'https://ror.org/02s67hm68', 'de', 1, 'https://ror.org/02s67hm68 Hamburgische Wissenschaftliche Stiftung'),
(52330, 'https://ror.org/02s7h4e59', 'no_lang_code', 1, 'https://ror.org/02s7h4e59 Bonus'),
(52331, 'https://ror.org/02sg1hf43', 'en', 1, 'https://ror.org/02sg1hf43 Victoria Park'),
(52332, 'https://ror.org/02shz5w36', 'no_lang_code', 1, 'https://ror.org/02shz5w36 Julius Blum (Austria)'),
(52333, 'https://ror.org/02smbds60', 'en', 1, 'https://ror.org/02smbds60 Texas Association of Community Colleges'),
(52334, 'https://ror.org/02smc8550', 'en', 1, 'https://ror.org/02smc8550 Pacific Coast Imaging'),
(52335, 'https://ror.org/02sp9pn28', 'en', 1, 'https://ror.org/02sp9pn28 Washington Area Women’s Foundation'),
(52336, 'https://ror.org/02sq1ad32', 'no_lang_code', 1, 'https://ror.org/02sq1ad32 Unitika (Japan) ćƒ¦ćƒ‹ćƒć‚«ę Ŗå¼ä¼šē¤¾'),
(52337, 'https://ror.org/02sq6xd17', 'no_lang_code', 1, 'https://ror.org/02sq6xd17 GenSight Biologics (France)'),
(52338, 'https://ror.org/02sqp6x70', 'no_lang_code', 1, 'https://ror.org/02sqp6x70 Hisamitsu Pharmaceutical (United States)'),
(52339, 'https://ror.org/02ssxad66', 'en', 1, 'https://ror.org/02ssxad66 Canadian Anesthesia Research Foundation'),
(52340, 'https://ror.org/02stt7r85', 'no_lang_code', 1, 'https://ror.org/02stt7r85 Weidmüller (Germany)'),
(52341, 'https://ror.org/02swf6979', 'de', 1, 'https://ror.org/02swf6979 Solothurner SpitƤler'),
(52342, 'https://ror.org/02sxt3315', 'no_lang_code', 1, 'https://ror.org/02sxt3315 Peptcell (United Kingdom)'),
(52343, 'https://ror.org/02syszr02', 'en', 1, 'https://ror.org/02syszr02 Drug Trials America'),
(52344, 'https://ror.org/02t00tj02', 'en', 1, 'https://ror.org/02t00tj02 California Cherry Board'),
(52345, 'https://ror.org/02t2ah669', 'de', 1, 'https://ror.org/02t2ah669 Dietmar Hopp Stiftung'),
(52346, 'https://ror.org/02t2fta32', 'en', 1, 'https://ror.org/02t2fta32 Cancer Foundation of India'),
(52347, 'https://ror.org/02t449189', 'en', 1, 'https://ror.org/02t449189 Summit Institute'),
(52348, 'https://ror.org/02t57sv80', 'no_lang_code', 1, 'https://ror.org/02t57sv80 Atomo Diagnostics'),
(52349, 'https://ror.org/02t5f1s27', 'no_lang_code', 1, 'https://ror.org/02t5f1s27 TiVo (United States)'),
(52350, 'https://ror.org/02t5mzr26', 'en', 1, 'https://ror.org/02t5mzr26 AIM at Melanoma Foundation'),
(52351, 'https://ror.org/02t8gzn69', 'en', 1, 'https://ror.org/02t8gzn69 DMA Health Strategies'),
(52352, 'https://ror.org/02t9aa070', 'en', 1, 'https://ror.org/02t9aa070 Excel Diagnostics Imaging'),
(52353, 'https://ror.org/02t9yy051', 'en', 1, 'https://ror.org/02t9yy051 Future Search Trials'),
(52354, 'https://ror.org/02taaxx56', 'en', 1, 'https://ror.org/02taaxx56 Maternal and Child Health Hospital of Sichuan Province å››å·ēœå¦‡å¹¼äæå„é™¢'),
(52355, 'https://ror.org/02tagtf93', 'no_lang_code', 1, 'https://ror.org/02tagtf93 Plastipak Holdings (United States)'),
(52356, 'https://ror.org/02tbbcr43', 'no_lang_code', 1, 'https://ror.org/02tbbcr43 PellePharm (United States)'),
(52357, 'https://ror.org/02tbtsz30', 'no_lang_code', 1, 'https://ror.org/02tbtsz30 Synexus (United States)'),
(52358, 'https://ror.org/02tczp334', 'en', 1, 'https://ror.org/02tczp334 National College Access Network'),
(52359, 'https://ror.org/02td35639', 'en', 1, 'https://ror.org/02td35639 Foundation for Advancement in Cancer Therapy'),
(52360, 'https://ror.org/02tfves91', 'en', 1, 'https://ror.org/02tfves91 ITP Foundation'),
(52361, 'https://ror.org/02tjbt313', 'en', 1, 'https://ror.org/02tjbt313 American Psychiatric Association Publishing'),
(52362, 'https://ror.org/02tjrkg92', 'en', 1, 'https://ror.org/02tjrkg92 Dr. Robert C. and Veronica Atkins Foundation'),
(52363, 'https://ror.org/02tjy3316', 'en', 1, 'https://ror.org/02tjy3316 Rivergate Dermatology Clinical Research Center'),
(52364, 'https://ror.org/02tm1f187', 'en', 1, 'https://ror.org/02tm1f187 Downtown Women''s Health Care'),
(52365, 'https://ror.org/02tmbkx36', 'en', 1, 'https://ror.org/02tmbkx36 Pro Carpathia'),
(52366, 'https://ror.org/02tmyej90', 'no_lang_code', 1, 'https://ror.org/02tmyej90 NLT Technologies (Japan)'),
(52367, 'https://ror.org/02tsmws33', 'en', 1, 'https://ror.org/02tsmws33 Editorial Projects in Education'),
(52368, 'https://ror.org/02tstf772', 'it', 1, 'https://ror.org/02tstf772 Fondazione Alazio'),
(52369, 'https://ror.org/02tx5s423', 'en', 1, 'https://ror.org/02tx5s423 Manhattan Medical Research'),
(52370, 'https://ror.org/02ty1mz57', 'no_lang_code', 1, 'https://ror.org/02ty1mz57 Nippon Electric Glass (Japan) ę—„ęœ¬é›»ę°—ē”å­ę Ŗå¼ä¼šē¤¾'),
(52371, 'https://ror.org/02v0n2r32', 'en', 1, 'https://ror.org/02v0n2r32 Central Florida Eye Institute'),
(52372, 'https://ror.org/02v1bmg02', 'en', 1, 'https://ror.org/02v1bmg02 Harrison County Community Foundation'),
(52373, 'https://ror.org/02v1ywf39', 'no_lang_code', 1, 'https://ror.org/02v1ywf39 MIB (Germany)'),
(52374, 'https://ror.org/02v3jvj44', 'en', 1, 'https://ror.org/02v3jvj44 Parish Dermatology'),
(52375, 'https://ror.org/02v4fpg03', 'de', 1, 'https://ror.org/02v4fpg03 Asklepios Fachkliniken München-Gauting'),
(52376, 'https://ror.org/02v54dp66', 'en', 1, 'https://ror.org/02v54dp66 Valdosta Psychiatric Associates'),
(52377, 'https://ror.org/02v71kg05', 'en', 1, 'https://ror.org/02v71kg05 Princeton Survey Research Associates International'),
(52378, 'https://ror.org/02va37h22', 'no_lang_code', 1, 'https://ror.org/02va37h22 Chugoku Electric Power (Japan) äø­å›½é›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(52379, 'https://ror.org/02vawgn43', 'en', 1, 'https://ror.org/02vawgn43 Dr. John T. Macdonald Foundation'),
(52380, 'https://ror.org/02vbakk15', 'en', 1, 'https://ror.org/02vbakk15 Public Agenda'),
(52381, 'https://ror.org/02vbg8350', 'no_lang_code', 1, 'https://ror.org/02vbg8350 Primetals Technologies (Austria)'),
(52382, 'https://ror.org/02vdgjm20', 'en', 1, 'https://ror.org/02vdgjm20 Emily Davie and Joseph S. Kornfeld Foundation'),
(52383, 'https://ror.org/02ve0bg52', 'no_lang_code', 1, 'https://ror.org/02ve0bg52 Eli Lilly (Netherlands)'),
(52384, 'https://ror.org/02veq9058', 'en', 1, 'https://ror.org/02veq9058 Beaver Medical Group'),
(52385, 'https://ror.org/02vfcrx76', 'en', 1, 'https://ror.org/02vfcrx76 American Association of Nurse Assessment Coordination'),
(52386, 'https://ror.org/02vg0t417', 'it', 1, 'https://ror.org/02vg0t417 Associazione Italiana per lo Studio del Fegato'),
(52387, 'https://ror.org/02vhx9606', 'en', 1, 'https://ror.org/02vhx9606 Metro-Minnesota Community Oncology Research Consortium'),
(52388, 'https://ror.org/02vjc4d72', 'en', 1, 'https://ror.org/02vjc4d72 Women’s Health Care'),
(52389, 'https://ror.org/02vjgtj13', 'en', 1, 'https://ror.org/02vjgtj13 American Society of Composers, Authors and Publishers'),
(52390, 'https://ror.org/02vjn2106', 'en', 1, 'https://ror.org/02vjn2106 Sioux Falls VA Health Care System'),
(52391, 'https://ror.org/02vjwa047', 'en', 1, 'https://ror.org/02vjwa047 Adhesive and Sealant Council'),
(52392, 'https://ror.org/02vr5rk77', 'en', 1, 'https://ror.org/02vr5rk77 Southern California Desert Retina Consultants'),
(52393, 'https://ror.org/02vrfjw73', 'no_lang_code', 1, 'https://ror.org/02vrfjw73 Flamel (Ireland)'),
(52394, 'https://ror.org/02vtxt818', 'no_lang_code', 1, 'https://ror.org/02vtxt818 Bucher Emhart Glass (United States)'),
(52395, 'https://ror.org/02vwk0k38', 'no_lang_code', 1, 'https://ror.org/02vwk0k38 Molins (United Kingdom)'),
(52396, 'https://ror.org/02vyhmv78', 'en', 1, 'https://ror.org/02vyhmv78 Council of the Great City Schools'),
(52397, 'https://ror.org/02vypmx38', 'da', 1, 'https://ror.org/02vypmx38 Psykiatrien i Region Syddanmark'),
(52398, 'https://ror.org/02w3k0k28', 'no_lang_code', 1, 'https://ror.org/02w3k0k28 Sopharma (Bulgaria)'),
(52399, 'https://ror.org/02w3v2343', 'pt', 1, 'https://ror.org/02w3v2343 Santa Casa de Votuporanga'),
(52400, 'https://ror.org/02w4nb893', 'no_lang_code', 1, 'https://ror.org/02w4nb893 Mortensen Film (Denmark)'),
(52401, 'https://ror.org/02w58t546', 'en', 1, 'https://ror.org/02w58t546 Albani Fonden Albani Foundation'),
(52402, 'https://ror.org/02w5edg95', 'en', 1, 'https://ror.org/02w5edg95 Community Foundation of Will County'),
(52403, 'https://ror.org/02w70xk53', 'en', 1, 'https://ror.org/02w70xk53 Fred L Emerson Foundation'),
(52404, 'https://ror.org/02w915f84', 'no_lang_code', 1, 'https://ror.org/02w915f84 King-Maceyko Dermatology Associates'),
(52405, 'https://ror.org/02wad9j32', 'en', 1, 'https://ror.org/02wad9j32 National Center on Time & Learning'),
(52406, 'https://ror.org/02wat9q45', 'sv', 1, 'https://ror.org/02wat9q45 Norrbacka Eugeniastiftelsen'),
(52407, 'https://ror.org/02wcsvn48', 'en', 1, 'https://ror.org/02wcsvn48 Charter School Growth Fund'),
(52408, 'https://ror.org/02wctfj77', 'en', 1, 'https://ror.org/02wctfj77 Danny Fund'),
(52409, 'https://ror.org/02wgt4y52', 'en', 1, 'https://ror.org/02wgt4y52 New England Organ Bank'),
(52410, 'https://ror.org/02wgzvx44', 'en', 1, 'https://ror.org/02wgzvx44 National Press Foundation'),
(52411, 'https://ror.org/02whcyg17', 'en', 1, 'https://ror.org/02whcyg17 Orthopaedic Innovation Centre'),
(52412, 'https://ror.org/02wkb0b78', 'en', 1, 'https://ror.org/02wkb0b78 Compton Foundation'),
(52413, 'https://ror.org/02wm1tc29', 'en', 1, 'https://ror.org/02wm1tc29 Massachusetts Health Data Consortium'),
(52414, 'https://ror.org/02wm6n026', 'en', 1, 'https://ror.org/02wm6n026 Uganda Chartered Health Net'),
(52415, 'https://ror.org/02wmkbh90', 'no_lang_code', 1, 'https://ror.org/02wmkbh90 Rütgers (Germany)'),
(52416, 'https://ror.org/02wnfx958', 'en', 1, 'https://ror.org/02wnfx958 Child Cancer Foundation'),
(52417, 'https://ror.org/02wnz8673', 'no_lang_code', 1, 'https://ror.org/02wnz8673 Sanofi (Belgium)'),
(52418, 'https://ror.org/02wp64j63', 'en', 1, 'https://ror.org/02wp64j63 University of Iowa Health Alliance'),
(52419, 'https://ror.org/02wpw4f97', 'en', 1, 'https://ror.org/02wpw4f97 Schoolzilla'),
(52420, 'https://ror.org/02wqsek53', 'en', 1, 'https://ror.org/02wqsek53 Achieving the Dream'),
(52421, 'https://ror.org/02wvbzy96', 'en', 1, 'https://ror.org/02wvbzy96 GSA Research'),
(52422, 'https://ror.org/02wvemr05', 'no_lang_code', 1, 'https://ror.org/02wvemr05 Leo Pharma (France)'),
(52423, 'https://ror.org/02wxwcd04', 'en', 1, 'https://ror.org/02wxwcd04 Charlottesville Medical Research'),
(52424, 'https://ror.org/02wy7f107', 'en', 1, 'https://ror.org/02wy7f107 East Wellington Family Health Team'),
(52425, 'https://ror.org/02wzwfh06', 'en', 1, 'https://ror.org/02wzwfh06 Oregon Center for Clinical Investigation'),
(52426, 'https://ror.org/02x1h6095', 'en', 1, 'https://ror.org/02x1h6095 Kinetic Foundation'),
(52427, 'https://ror.org/02x25m361', 'en', 1, 'https://ror.org/02x25m361 Academic Dermatology Associates'),
(52428, 'https://ror.org/02x2h0d07', 'no_lang_code', 1, 'https://ror.org/02x2h0d07 Assa Abloy (Sweden)'),
(52429, 'https://ror.org/02x2v5f35', 'en', 1, 'https://ror.org/02x2v5f35 Institut für die Erforschung der Habsburgermonarchie und des Balkanraumes Institute for Habsburg and Balkan Studies'),
(52430, 'https://ror.org/02x3ev322', 'no_lang_code', 1, 'https://ror.org/02x3ev322 MUC Research (Germany)'),
(52431, 'https://ror.org/02x94ka94', 'fr', 1, 'https://ror.org/02x94ka94 Intergroupe Francophone du MyƩlome'),
(52432, 'https://ror.org/02x9c0555', 'en', 1, 'https://ror.org/02x9c0555 Child Development Associate'),
(52433, 'https://ror.org/02xa0er70', 'no_lang_code', 1, 'https://ror.org/02xa0er70 21st Century Oncology (United States)'),
(52434, 'https://ror.org/02xbjar17', 'es', 1, 'https://ror.org/02xbjar17 Centro Oftalmológico Moreiras'),
(52435, 'https://ror.org/02xbx2821', 'no_lang_code', 1, 'https://ror.org/02xbx2821 Pascoe (Germany)'),
(52436, 'https://ror.org/02xc9kn92', 'no_lang_code', 1, 'https://ror.org/02xc9kn92 Novadip (Belgium)'),
(52437, 'https://ror.org/02xcf7b11', 'en', 1, 'https://ror.org/02xcf7b11 Neami National'),
(52438, 'https://ror.org/02xdmdz74', 'en', 1, 'https://ror.org/02xdmdz74 Shasta County Office of Education'),
(52439, 'https://ror.org/02xe1qe66', 'no_lang_code', 1, 'https://ror.org/02xe1qe66 Usui (Japan)'),
(52440, 'https://ror.org/02xe8f033', 'no_lang_code', 1, 'https://ror.org/02xe8f033 ApniCure (United States)'),
(52441, 'https://ror.org/02xeb0g66', 'en', 1, 'https://ror.org/02xeb0g66 Abell Foundation'),
(52442, 'https://ror.org/02xes6w96', 'pt', 1, 'https://ror.org/02xes6w96 Instituo CUF Porto'),
(52443, 'https://ror.org/02xfyax20', 'en', 1, 'https://ror.org/02xfyax20 Tokeidai Memorial Hospital'),
(52444, 'https://ror.org/02xgxxy58', 'en', 1, 'https://ror.org/02xgxxy58 Community Foundation of Jackson Hole'),
(52445, 'https://ror.org/02xhgjz70', 'en', 1, 'https://ror.org/02xhgjz70 Hubei Zhongshan Hospital ę¹–åŒ—ēœäø­å±±åŒ»é™¢'),
(52446, 'https://ror.org/02xna2753', 'no_lang_code', 1, 'https://ror.org/02xna2753 Extendicare (Canada)'),
(52447, 'https://ror.org/02xq7zd76', 'de', 1, 'https://ror.org/02xq7zd76 Heidehof Stiftung, Stiftung für Bildung und Behindertenförderung'),
(52448, 'https://ror.org/02xw5vd84', 'en', 1, 'https://ror.org/02xw5vd84 Keep A Breast Foundation'),
(52449, 'https://ror.org/02xwnsz55', 'en', 1, 'https://ror.org/02xwnsz55 National Indian Education Association'),
(52450, 'https://ror.org/02xyyna25', 'en', 1, 'https://ror.org/02xyyna25 International Society for Quality in Health Care'),
(52451, 'https://ror.org/02y06nn11', 'en', 1, 'https://ror.org/02y06nn11 Legler Benbough Foundation'),
(52452, 'https://ror.org/02y2gbd65', 'en', 1, 'https://ror.org/02y2gbd65 Red Hook Public Library'),
(52453, 'https://ror.org/02y2mwn89', 'en', 1, 'https://ror.org/02y2mwn89 British Association of Endocrine and Thyroid Surgeons'),
(52454, 'https://ror.org/02y3vvj84', 'ro', 1, 'https://ror.org/02y3vvj84 Spitalul Clinic Judetean de Urgenta Târgu Mureş'),
(52455, 'https://ror.org/02y447m55', 'no_lang_code', 1, 'https://ror.org/02y447m55 Sirtex (Germany)'),
(52456, 'https://ror.org/02y5beg61', 'fr', 1, 'https://ror.org/02y5beg61 Institut Louis Bachelier'),
(52457, 'https://ror.org/02y6vkj44', 'no_lang_code', 1, 'https://ror.org/02y6vkj44 Chicago Cornea Consultants (United States)'),
(52458, 'https://ror.org/02y70wg25', 'en', 1, 'https://ror.org/02y70wg25 Colorado Children''s Campaign'),
(52459, 'https://ror.org/02y92d036', 'fr', 1, 'https://ror.org/02y92d036 Centre Hospitalier du Rouvray'),
(52460, 'https://ror.org/02y95ae87', 'en', 1, 'https://ror.org/02y95ae87 John Wayne Cancer Foundation'),
(52461, 'https://ror.org/02y9z4d43', 'en', 1, 'https://ror.org/02y9z4d43 Alliance for Aging Research'),
(52462, 'https://ror.org/02yb4t415', 'no_lang_code', 1, 'https://ror.org/02yb4t415 Sidel (France)'),
(52463, 'https://ror.org/02ycbp592', 'pt', 1, 'https://ror.org/02ycbp592 Hospital Central da PolĆ­cia Militar'),
(52464, 'https://ror.org/02ycc8g77', 'en', 1, 'https://ror.org/02ycc8g77 Hyogo Prefecture Health Foundation å…¬ē›Šč²”å›£ę³•äŗŗ å…µåŗ«ēœŒå„åŗ·č²”å›£'),
(52465, 'https://ror.org/02ye6d240', 'en', 1, 'https://ror.org/02ye6d240 Agriculture, Forestry and Fisheries Research Council č¾²ęž—ę°“ē”£ęŠ€č”“ä¼šč­°'),
(52466, 'https://ror.org/02yf6ha74', 'en', 1, 'https://ror.org/02yf6ha74 Institut für Vergleichende Medien und Kommunikationsforschung Institute for Comparative Media and Communication Studies'),
(52467, 'https://ror.org/02yfxbq86', 'en', 1, 'https://ror.org/02yfxbq86 Chiesi Foundation'),
(52468, 'https://ror.org/02yhzgr66', 'no_lang_code', 1, 'https://ror.org/02yhzgr66 Starkey Hearing Technologies (United States)'),
(52469, 'https://ror.org/02yjqcm66', 'en', 1, 'https://ror.org/02yjqcm66 Forest Research Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за гората'),
(52470, 'https://ror.org/02ykjqt50', 'no_lang_code', 1, 'https://ror.org/02ykjqt50 Philips (Sweden)'),
(52471, 'https://ror.org/02yknqp61', 'en', 1, 'https://ror.org/02yknqp61 British Small Animal Veterinary Association'),
(52472, 'https://ror.org/02ykq8x89', 'en', 1, 'https://ror.org/02ykq8x89 Small Business Majority'),
(52473, 'https://ror.org/02ym95m10', 'no_lang_code', 1, 'https://ror.org/02ym95m10 Hospital e Maternidade Celso Pierro'),
(52474, 'https://ror.org/02ymhq538', 'nl', 1, 'https://ror.org/02ymhq538 Instituut Verbeeten'),
(52475, 'https://ror.org/02yn0z735', 'en', 1, 'https://ror.org/02yn0z735 Association for Iron & Steel Technology'),
(52476, 'https://ror.org/02ypwf602', 'no_lang_code', 1, 'https://ror.org/02ypwf602 Sierra BioMedical (United States)'),
(52477, 'https://ror.org/02ys95c13', 'en', 1, 'https://ror.org/02ys95c13 Fons Vitae'),
(52478, 'https://ror.org/02yt6gx28', 'en', 1, 'https://ror.org/02yt6gx28 Pasadena Child Health Foundation'),
(52479, 'https://ror.org/02ytjmy25', 'en', 1, 'https://ror.org/02ytjmy25 Asian Americans Advancing Justice'),
(52480, 'https://ror.org/02yxc8q04', 'en', 1, 'https://ror.org/02yxc8q04 New York Foundation'),
(52481, 'https://ror.org/02yxsn987', 'no_lang_code', 1, 'https://ror.org/02yxsn987 ALK-Abelló (Germany)'),
(52482, 'https://ror.org/02yyt7186', 'no_lang_code', 1, 'https://ror.org/02yyt7186 Burton D. Morgan Foundation'),
(52483, 'https://ror.org/02z02qt46', 'da', 1, 'https://ror.org/02z02qt46 Gangstedfonden'),
(52484, 'https://ror.org/02z1p6e80', 'en', 1, 'https://ror.org/02z1p6e80 Denver Public Schools'),
(52485, 'https://ror.org/02z24na70', 'fr', 1, 'https://ror.org/02z24na70 Fondation Medic'),
(52486, 'https://ror.org/02z2a8376', 'en', 1, 'https://ror.org/02z2a8376 Washington State Grange'),
(52487, 'https://ror.org/02z2bdj68', 'es', 1, 'https://ror.org/02z2bdj68 Fundació ACE'),
(52488, 'https://ror.org/02z2kxd64', 'en', 1, 'https://ror.org/02z2kxd64 Premiere Research Institute'),
(52489, 'https://ror.org/02z2z4m14', 'no_lang_code', 1, 'https://ror.org/02z2z4m14 Access Energy (United Kingdom)'),
(52490, 'https://ror.org/02z3hd077', 'en', 1, 'https://ror.org/02z3hd077 Leo S. Guthman Fund'),
(52491, 'https://ror.org/02z43nn16', 'no_lang_code', 1, 'https://ror.org/02z43nn16 Taiho Oncology (United States)');
INSERT INTO `rors` VALUES
(52492, 'https://ror.org/02z4gce56', 'en', 1, 'https://ror.org/02z4gce56 Riverhills Healthcare'),
(52493, 'https://ror.org/02z5k8341', 'en', 1, 'https://ror.org/02z5k8341 Anna Needs Neuroblastoma Answers'),
(52494, 'https://ror.org/02z602v88', 'no_lang_code', 1, 'https://ror.org/02z602v88 Daewoo Electronics (South Korea)'),
(52495, 'https://ror.org/02z9ybv55', 'pt', 1, 'https://ror.org/02z9ybv55 Instituto de Cardiologia de Santa Catarina'),
(52496, 'https://ror.org/02za90e47', 'no_lang_code', 1, 'https://ror.org/02za90e47 Strekin (Switzerland)'),
(52497, 'https://ror.org/02zaaft58', 'en', 1, 'https://ror.org/02zaaft58 Nordic Culture Fund'),
(52498, 'https://ror.org/02zb85s41', 'en', 1, 'https://ror.org/02zb85s41 Southern Area Library'),
(52499, 'https://ror.org/02zbdpx12', 'en', 1, 'https://ror.org/02zbdpx12 Electri International'),
(52500, 'https://ror.org/02zdf9k07', 'en', 1, 'https://ror.org/02zdf9k07 Price Vision Group'),
(52501, 'https://ror.org/02zgxrw23', 'en', 1, 'https://ror.org/02zgxrw23 Pine River Public Library District'),
(52502, 'https://ror.org/02zhsgx35', 'no_lang_code', 1, 'https://ror.org/02zhsgx35 Sonoco (United States)'),
(52503, 'https://ror.org/02zm2n135', 'en', 1, 'https://ror.org/02zm2n135 Association of Clinicians for the Underserved'),
(52504, 'https://ror.org/02znpxw74', 'en', 1, 'https://ror.org/02znpxw74 Oklahoma Health Care Authority'),
(52505, 'https://ror.org/02zqt3j23', 'en', 1, 'https://ror.org/02zqt3j23 Cradle of Liberty Council Boy Scouts of America'),
(52506, 'https://ror.org/02zqy5k53', 'en', 1, 'https://ror.org/02zqy5k53 Common Sense Media'),
(52507, 'https://ror.org/02ztnzj53', 'en', 1, 'https://ror.org/02ztnzj53 Beacon Clinical Research'),
(52508, 'https://ror.org/02zttjj06', 'no_lang_code', 1, 'https://ror.org/02zttjj06 Capnova (Denmark)'),
(52509, 'https://ror.org/02zvde082', 'en', 1, 'https://ror.org/02zvde082 Buena Vista Eye Care'),
(52510, 'https://ror.org/02zxf2242', 'no_lang_code', 1, 'https://ror.org/02zxf2242 Allergan (Finland)'),
(52511, 'https://ror.org/02zyvys51', 'en', 1, 'https://ror.org/02zyvys51 City Clinical Hospital Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 57'),
(52512, 'https://ror.org/02zzsnz14', 'en', 1, 'https://ror.org/02zzsnz14 Kellner Family Foundation'),
(52513, 'https://ror.org/0300wre24', 'en', 1, 'https://ror.org/0300wre24 Swedish Parkinson’s Disease Association'),
(52514, 'https://ror.org/03037e419', 'en', 1, 'https://ror.org/03037e419 Ninth Hospital of Nanchang å—ę˜Œåø‚ē¬¬ä¹åŒ»é™¢å®˜ę–¹ē½‘ē«™'),
(52515, 'https://ror.org/03037gf85', 'no_lang_code', 1, 'https://ror.org/03037gf85 Licentia IT (Germany)'),
(52516, 'https://ror.org/0305r3866', 'en', 1, 'https://ror.org/0305r3866 CSY China-International Hepatitis Research Foundation'),
(52517, 'https://ror.org/0306e5z24', 'en', 1, 'https://ror.org/0306e5z24 Multiple Sclerosis Center of Atlanta'),
(52518, 'https://ror.org/030893n97', 'no_lang_code', 1, 'https://ror.org/030893n97 Reckitt Benckiser (United States)'),
(52519, 'https://ror.org/0309ddb28', 'en', 1, 'https://ror.org/0309ddb28 See Forever Foundation'),
(52520, 'https://ror.org/030ajjm26', 'no_lang_code', 1, 'https://ror.org/030ajjm26 Absa Bank (South Africa)'),
(52521, 'https://ror.org/030cbnq98', 'en', 1, 'https://ror.org/030cbnq98 Beneficial Bank'),
(52522, 'https://ror.org/030d18955', 'no_lang_code', 1, 'https://ror.org/030d18955 SmartPractice (United States)'),
(52523, 'https://ror.org/030d3xr95', 'de', 1, 'https://ror.org/030d3xr95 Deutsche Dystonie Gesellschaft'),
(52524, 'https://ror.org/030e7hb13', 'en', 1, 'https://ror.org/030e7hb13 Kindering'),
(52525, 'https://ror.org/030fcrp07', 'es', 1, 'https://ror.org/030fcrp07 Clinica Chicamocha'),
(52526, 'https://ror.org/030hgrs40', 'en', 1, 'https://ror.org/030hgrs40 Skin Surgery Medical Group'),
(52527, 'https://ror.org/030hv2833', 'no_lang_code', 1, 'https://ror.org/030hv2833 Laguna Pharmaceuticals (United States)'),
(52528, 'https://ror.org/030m3jr74', 'en', 1, 'https://ror.org/030m3jr74 Center for Children & Youth Justice'),
(52529, 'https://ror.org/030ph1y13', 'no_lang_code', 1, 'https://ror.org/030ph1y13 Synexus (United Kingdom)'),
(52530, 'https://ror.org/030q46522', 'en', 1, 'https://ror.org/030q46522 Lanzhou Science and Technology Bureau å…°å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(52531, 'https://ror.org/030q7x253', 'en', 1, 'https://ror.org/030q7x253 Acorn'),
(52532, 'https://ror.org/030qmj755', 'no_lang_code', 1, 'https://ror.org/030qmj755 Higashi Takarazuka Satoh Hospital'),
(52533, 'https://ror.org/030qsdn71', 'no_lang_code', 1, 'https://ror.org/030qsdn71 Federal Mogul (United States)'),
(52534, 'https://ror.org/030r2wp80', 'en', 1, 'https://ror.org/030r2wp80 Nature Healing Nature'),
(52535, 'https://ror.org/030s71c06', 'en', 1, 'https://ror.org/030s71c06 C. Louis Meyer Family Foundation'),
(52536, 'https://ror.org/030sgj832', 'no_lang_code', 1, 'https://ror.org/030sgj832 GlaxoSmithKline (Sri Lanka)'),
(52537, 'https://ror.org/030t8f239', 'no_lang_code', 1, 'https://ror.org/030t8f239 Ran Naor Institute'),
(52538, 'https://ror.org/030tsts40', 'en', 1, 'https://ror.org/030tsts40 Jewish community Brno'),
(52539, 'https://ror.org/030vz3726', 'no_lang_code', 1, 'https://ror.org/030vz3726 LFB (United States)'),
(52540, 'https://ror.org/030xn9908', 'en', 1, 'https://ror.org/030xn9908 Tyton Partners'),
(52541, 'https://ror.org/030y53541', 'en', 1, 'https://ror.org/030y53541 Augustinus Fonden Augustinus Foundation'),
(52542, 'https://ror.org/030z2cx33', 'no_lang_code', 1, 'https://ror.org/030z2cx33 Cera Engineering (France)'),
(52543, 'https://ror.org/0312ka630', 'en', 1, 'https://ror.org/0312ka630 Clinical Trials New Zealand'),
(52544, 'https://ror.org/031337c36', 'en', 1, 'https://ror.org/031337c36 MetroPlus Health Plan'),
(52545, 'https://ror.org/0313yw666', 'no_lang_code', 1, 'https://ror.org/0313yw666 Liya Kebede Foundation'),
(52546, 'https://ror.org/0314qvz14', 'en', 1, 'https://ror.org/0314qvz14 Foellinger Foundation'),
(52547, 'https://ror.org/03174hp70', 'en', 1, 'https://ror.org/03174hp70 Jerome Foundation'),
(52548, 'https://ror.org/0319b3z70', 'no_lang_code', 1, 'https://ror.org/0319b3z70 Mensia (France)'),
(52549, 'https://ror.org/031a73r17', 'nl', 1, 'https://ror.org/031a73r17 Tolbrug Specialistische Revalidatie'),
(52550, 'https://ror.org/031czmc73', 'en', 1, 'https://ror.org/031czmc73 Asian American Federation'),
(52551, 'https://ror.org/031d0t341', 'fr', 1, 'https://ror.org/031d0t341 Interaction UniversitĆ© Ɖconomie'),
(52552, 'https://ror.org/031fh2e54', 'en', 1, 'https://ror.org/031fh2e54 Fulbright Canada'),
(52553, 'https://ror.org/031fyj528', 'no_lang_code', 1, 'https://ror.org/031fyj528 Insmed (United Kingdom)'),
(52554, 'https://ror.org/031kkyn50', 'no_lang_code', 1, 'https://ror.org/031kkyn50 Solenne (Netherlands)'),
(52555, 'https://ror.org/031kwjn35', 'en', 1, 'https://ror.org/031kwjn35 Bozeman Urgent Care Center'),
(52556, 'https://ror.org/031pc9z34', 'en', 1, 'https://ror.org/031pc9z34 Koch Cultural Trust'),
(52557, 'https://ror.org/031rs9d30', 'en', 1, 'https://ror.org/031rs9d30 Asia Pacific Foundation of Canada'),
(52558, 'https://ror.org/031rwv086', 'en', 1, 'https://ror.org/031rwv086 Diagnostics Research Group'),
(52559, 'https://ror.org/031t42b47', 'no_lang_code', 1, 'https://ror.org/031t42b47 URSAPHARM (Germany)'),
(52560, 'https://ror.org/031tdwf58', 'en', 1, 'https://ror.org/031tdwf58 Texas Diabetes Institute'),
(52561, 'https://ror.org/031tkkf47', 'en', 1, 'https://ror.org/031tkkf47 Adam Smith Institute'),
(52562, 'https://ror.org/031tq8403', 'no_lang_code', 1, 'https://ror.org/031tq8403 Synaptics (United States)'),
(52563, 'https://ror.org/031tw3m13', 'en', 1, 'https://ror.org/031tw3m13 Global Development Analytics'),
(52564, 'https://ror.org/031y85330', 'no_lang_code', 1, 'https://ror.org/031y85330 MediaTek (Singapore)'),
(52565, 'https://ror.org/031z7rc44', 'en', 1, 'https://ror.org/031z7rc44 John F. Kennedy Presidential Library and Museum'),
(52566, 'https://ror.org/0321tae61', 'fr', 1, 'https://ror.org/0321tae61 Fondation Ernst et Lucie Schmidheiny'),
(52567, 'https://ror.org/03245e858', 'no_lang_code', 1, 'https://ror.org/03245e858 Gebro Pharma (Austria)'),
(52568, 'https://ror.org/0324an637', 'en', 1, 'https://ror.org/0324an637 St. Gregory the Theologian Charity Foundation Š‘Š»Š°Š³Š¾Ń‚Š²Š¾Ń€ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ фонГ имени ŃŠ²ŃŃ‚ŠøŃ‚ŠµŠ»Ń Š“Ń€ŠøŠ³Š¾Ń€ŠøŃ Богослова'),
(52569, 'https://ror.org/0324red69', 'no_lang_code', 1, 'https://ror.org/0324red69 Boehringer Ingelheim (Belgium)'),
(52570, 'https://ror.org/0324x0m97', 'en', 1, 'https://ror.org/0324x0m97 World Council of Credit Unions'),
(52571, 'https://ror.org/0328e2d50', 'no_lang_code', 1, 'https://ror.org/0328e2d50 Bruschettini (Italy)'),
(52572, 'https://ror.org/032a2g603', 'no_lang_code', 1, 'https://ror.org/032a2g603 Menicon (Japan)'),
(52573, 'https://ror.org/032a9fh96', 'de', 1, 'https://ror.org/032a9fh96 Friedrich Baur Stiftung'),
(52574, 'https://ror.org/032apyw09', 'en', 1, 'https://ror.org/032apyw09 Asthma and Respiratory Foundation New Zealand'),
(52575, 'https://ror.org/032bmj362', 'en', 1, 'https://ror.org/032bmj362 Demos'),
(52576, 'https://ror.org/032cjpr90', 'en', 1, 'https://ror.org/032cjpr90 Naples Anesthesia & Physician Associates'),
(52577, 'https://ror.org/032e62r85', 'en', 1, 'https://ror.org/032e62r85 Hamzavi Dermatology'),
(52578, 'https://ror.org/032hncp64', 'no_lang_code', 1, 'https://ror.org/032hncp64 Plasser and Theurer (Austria)'),
(52579, 'https://ror.org/032m10r53', 'fr', 1, 'https://ror.org/032m10r53 Centre Hospitalier Lannion Trestel'),
(52580, 'https://ror.org/032n1sw23', 'en', 1, 'https://ror.org/032n1sw23 Anne and Harry Zarrow Foundation'),
(52581, 'https://ror.org/032pnr897', 'en', 1, 'https://ror.org/032pnr897 Cardiology Associates of Savannah'),
(52582, 'https://ror.org/032qryz87', 'no_lang_code', 1, 'https://ror.org/032qryz87 Anritsu (Japan) ć‚¢ćƒ³ćƒŖćƒ„ę Ŗå¼ä¼šē¤¾'),
(52583, 'https://ror.org/032s01b40', 'en', 1, 'https://ror.org/032s01b40 Czech Christian Academy ČeskĆ” KřesÅ„anskĆ” Akademie'),
(52584, 'https://ror.org/032s45981', 'en', 1, 'https://ror.org/032s45981 Health Care Foundation of Greater Kansas City'),
(52585, 'https://ror.org/032s9p188', 'en', 1, 'https://ror.org/032s9p188 Anesthesia Patient Safety Foundation'),
(52586, 'https://ror.org/032wd7d36', 'en', 1, 'https://ror.org/032wd7d36 Det Obelske Familiefond Obel Family Foundation'),
(52587, 'https://ror.org/032wt0096', 'en', 1, 'https://ror.org/032wt0096 Alport Syndrome Foundation'),
(52588, 'https://ror.org/032x2te45', 'en', 1, 'https://ror.org/032x2te45 Parkes Foundation'),
(52589, 'https://ror.org/032xegc37', 'en', 1, 'https://ror.org/032xegc37 Colorado Parks and Wildlife'),
(52590, 'https://ror.org/032z1nw74', 'no_lang_code', 1, 'https://ror.org/032z1nw74 Hosiden (Japan) ćƒ›ć‚·ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(52591, 'https://ror.org/032zwwa29', 'en', 1, 'https://ror.org/032zwwa29 Austin Community Foundation'),
(52592, 'https://ror.org/0332rf080', 'no_lang_code', 1, 'https://ror.org/0332rf080 FF Pharma (Netherlands)'),
(52593, 'https://ror.org/0332rjs08', 'en', 1, 'https://ror.org/0332rjs08 Brewster Place'),
(52594, 'https://ror.org/0333r3995', 'en', 1, 'https://ror.org/0333r3995 Technet Foundation'),
(52595, 'https://ror.org/03362cn11', 'en', 1, 'https://ror.org/03362cn11 Doctors Community Hospital'),
(52596, 'https://ror.org/0339ge880', 'tr', 1, 'https://ror.org/0339ge880 Gƶzde Hastanesi Malatya'),
(52597, 'https://ror.org/033bgzt54', 'en', 1, 'https://ror.org/033bgzt54 Neurology Associates'),
(52598, 'https://ror.org/033c8zt46', 'no_lang_code', 1, 'https://ror.org/033c8zt46 Pharmanest (Sweden)'),
(52599, 'https://ror.org/033esc660', 'en', 1, 'https://ror.org/033esc660 International Foundation for Electoral Systems'),
(52600, 'https://ror.org/033fkmm82', 'pl', 1, 'https://ror.org/033fkmm82 Warsztat Innowacji Społecznych Workshop for Social Innovation'),
(52601, 'https://ror.org/033gqt621', 'en', 1, 'https://ror.org/033gqt621 Innovation Center Denmark'),
(52602, 'https://ror.org/033ha7p77', 'en', 1, 'https://ror.org/033ha7p77 Buoniconti Fund'),
(52603, 'https://ror.org/033hnyq61', 'en', 1, 'https://ror.org/033hnyq61 Leon Levy Foundation'),
(52604, 'https://ror.org/033hx2k10', 'en', 1, 'https://ror.org/033hx2k10 Women''s World Banking'),
(52605, 'https://ror.org/033m0d088', 'no_lang_code', 1, 'https://ror.org/033m0d088 Mesa Biotech (United States)'),
(52606, 'https://ror.org/033mx0906', 'en', 1, 'https://ror.org/033mx0906 St Andrew’s Hospital'),
(52607, 'https://ror.org/033myqh37', 'en', 1, 'https://ror.org/033myqh37 Forbes Funds'),
(52608, 'https://ror.org/033ngjs02', 'de', 1, 'https://ror.org/033ngjs02 MigrƤne Klinik Kƶnigstein'),
(52609, 'https://ror.org/033q3j448', 'no_lang_code', 1, 'https://ror.org/033q3j448 Targovax (Finland)'),
(52610, 'https://ror.org/033q83c72', 'en', 1, 'https://ror.org/033q83c72 Bangalore Diabetes Centre'),
(52611, 'https://ror.org/033t60e64', 'en', 1, 'https://ror.org/033t60e64 Val Verde County Library'),
(52612, 'https://ror.org/033vxj623', 'en', 1, 'https://ror.org/033vxj623 New York Lawyers for the Public Interest'),
(52613, 'https://ror.org/033wsx172', 'no_lang_code', 1, 'https://ror.org/033wsx172 Siesta Group (Austria)'),
(52614, 'https://ror.org/033x8r647', 'en', 1, 'https://ror.org/033x8r647 Utah Department of Heritage and Arts'),
(52615, 'https://ror.org/033z8qs97', 'no_lang_code', 1, 'https://ror.org/033z8qs97 Hunter Douglas (Netherlands)'),
(52616, 'https://ror.org/033zztb05', 'en', 1, 'https://ror.org/033zztb05 Southeastern Fertility Center'),
(52617, 'https://ror.org/034118041', 'en', 1, 'https://ror.org/034118041 Grantmakers In Aging'),
(52618, 'https://ror.org/0341xp563', 'en', 1, 'https://ror.org/0341xp563 Global Scientific Innovations'),
(52619, 'https://ror.org/03430ny40', 'no_lang_code', 1, 'https://ror.org/03430ny40 Perpetual (Australia)'),
(52620, 'https://ror.org/0343e3s97', 'no_lang_code', 1, 'https://ror.org/0343e3s97 Epic Imaging (United States)'),
(52621, 'https://ror.org/0344snf66', 'en', 1, 'https://ror.org/0344snf66 Harold Whitworth Pierce Charitable Trust'),
(52622, 'https://ror.org/0347nf139', 'en', 1, 'https://ror.org/0347nf139 Patron Saints Foundation'),
(52623, 'https://ror.org/0348n4f40', 'en', 1, 'https://ror.org/0348n4f40 INMED Partnerships for Children'),
(52624, 'https://ror.org/0349geh35', 'en', 1, 'https://ror.org/0349geh35 University Bank'),
(52625, 'https://ror.org/034a8v770', 'en', 1, 'https://ror.org/034a8v770 Collaborative Neuroscience Network'),
(52626, 'https://ror.org/034bxq716', 'en', 1, 'https://ror.org/034bxq716 Emergency Nurses Association'),
(52627, 'https://ror.org/034cagk98', 'en', 1, 'https://ror.org/034cagk98 Copenhagen Institute for Futures Studies Instituttet for Fremtidsforskning'),
(52628, 'https://ror.org/034cs5236', 'no_lang_code', 1, 'https://ror.org/034cs5236 Only For Children Pharmaceuticals (France)'),
(52629, 'https://ror.org/034cxfp17', 'en', 1, 'https://ror.org/034cxfp17 Texas Diabetes & Endocrinology'),
(52630, 'https://ror.org/034eeph55', 'no_lang_code', 1, 'https://ror.org/034eeph55 Just Biotherapeutics (United States)'),
(52631, 'https://ror.org/034f25535', 'en', 1, 'https://ror.org/034f25535 Ashoka'),
(52632, 'https://ror.org/034f3ys32', 'en', 1, 'https://ror.org/034f3ys32 New Mexico Hospital Association'),
(52633, 'https://ror.org/034g3td21', 'en', 1, 'https://ror.org/034g3td21 Cure HHT'),
(52634, 'https://ror.org/034j0b057', 'en', 1, 'https://ror.org/034j0b057 Childrens Cardiomyopathy Foundation'),
(52635, 'https://ror.org/034mtjq62', 'en', 1, 'https://ror.org/034mtjq62 Nova Scotia Cancer Centre'),
(52636, 'https://ror.org/034rzmm61', 'en', 1, 'https://ror.org/034rzmm61 Youth Service America'),
(52637, 'https://ror.org/034skjj26', 'en', 1, 'https://ror.org/034skjj26 National Council on Interpreting in Health Care'),
(52638, 'https://ror.org/034srtc18', 'en', 1, 'https://ror.org/034srtc18 Johnson Center for Child Health and Development'),
(52639, 'https://ror.org/034xn0k91', 'fr', 1, 'https://ror.org/034xn0k91 Fondation Hans Wilsdorf'),
(52640, 'https://ror.org/034yqx295', 'en', 1, 'https://ror.org/034yqx295 Hellenic Oncology Research Group'),
(52641, 'https://ror.org/034ze3r60', 'en', 1, 'https://ror.org/034ze3r60 West Florida Public Libraries'),
(52642, 'https://ror.org/035017f20', 'no_lang_code', 1, 'https://ror.org/035017f20 Omya (Switzerland)'),
(52643, 'https://ror.org/0351vqb61', 'en', 1, 'https://ror.org/0351vqb61 Inoue Foundation for Science äŗ•äøŠē§‘å­¦ęŒÆčˆˆč²”å›£'),
(52644, 'https://ror.org/03526b919', 'en', 1, 'https://ror.org/03526b919 Boston Children''s Health Physicians'),
(52645, 'https://ror.org/0355jzb94', 'en', 1, 'https://ror.org/0355jzb94 Cohoes Savings Foundation'),
(52646, 'https://ror.org/0356gcm38', 'de', 1, 'https://ror.org/0356gcm38 Krankenhaus Brixen'),
(52647, 'https://ror.org/0359v5r48', 'no_lang_code', 1, 'https://ror.org/0359v5r48 Nini Hospital'),
(52648, 'https://ror.org/035ab9z58', 'en', 1, 'https://ror.org/035ab9z58 New Classrooms Innovation Partners'),
(52649, 'https://ror.org/035b1yw16', 'en', 1, 'https://ror.org/035b1yw16 Critical Review Foundation'),
(52650, 'https://ror.org/035d9vx83', 'no_lang_code', 1, 'https://ror.org/035d9vx83 MagnaChip (South Korea)'),
(52651, 'https://ror.org/035dcj063', 'en', 1, 'https://ror.org/035dcj063 East Morgan County Hospital'),
(52652, 'https://ror.org/035e8e276', 'no_lang_code', 1, 'https://ror.org/035e8e276 Thriasio General Hospital of Elefsina Θριάσιο ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(52653, 'https://ror.org/035gh0k19', 'en', 1, 'https://ror.org/035gh0k19 Molly Towell Perinatal Research Foundation'),
(52654, 'https://ror.org/035gpdd16', 'en', 1, 'https://ror.org/035gpdd16 Palouse Discovery Science Center'),
(52655, 'https://ror.org/035gx5q08', 'en', 1, 'https://ror.org/035gx5q08 Institut für Orientalische und Europäische Archäologie Institute for Oriental and European Archaeology'),
(52656, 'https://ror.org/035jrer59', 'it', 1, 'https://ror.org/035jrer59 Humanitas Gavazzeni'),
(52657, 'https://ror.org/035k1cb93', 'en', 1, 'https://ror.org/035k1cb93 Children''s Neuroblastoma Cancer Foundation'),
(52658, 'https://ror.org/035k7dd86', 'en', 1, 'https://ror.org/035k7dd86 New Mexico State University Grants'),
(52659, 'https://ror.org/035m97n77', 'no_lang_code', 1, 'https://ror.org/035m97n77 Crolll (Germany)'),
(52660, 'https://ror.org/035pepv51', 'no_lang_code', 1, 'https://ror.org/035pepv51 Ophthotech (United States)'),
(52661, 'https://ror.org/035scsv55', 'no_lang_code', 1, 'https://ror.org/035scsv55 Sandberg Development (Sweden)'),
(52662, 'https://ror.org/035svq226', 'no_lang_code', 1, 'https://ror.org/035svq226 CogBooks (United Kingdom)'),
(52663, 'https://ror.org/035vrvw61', 'no_lang_code', 1, 'https://ror.org/035vrvw61 Prysmian Group (Netherlands)'),
(52664, 'https://ror.org/035w8ak98', 'en', 1, 'https://ror.org/035w8ak98 Global Network of People Living with HIV/AIDS'),
(52665, 'https://ror.org/035yn3c54', 'en', 1, 'https://ror.org/035yn3c54 Northeast Medical Research Associates'),
(52666, 'https://ror.org/0360x1161', 'no_lang_code', 1, 'https://ror.org/0360x1161 BRCR Global (United States)'),
(52667, 'https://ror.org/0363m9h89', 'no_lang_code', 1, 'https://ror.org/0363m9h89 Rheacell (Germany)'),
(52668, 'https://ror.org/0363rx482', 'en', 1, 'https://ror.org/0363rx482 Parkinson''s Association of Ireland'),
(52669, 'https://ror.org/0363ync48', 'en', 1, 'https://ror.org/0363ync48 Deer Lodge Centre'),
(52670, 'https://ror.org/0368cn166', 'en', 1, 'https://ror.org/0368cn166 Southwest Seattle Youth & Family Services'),
(52671, 'https://ror.org/0369ff310', 'en', 1, 'https://ror.org/0369ff310 Dominic Barker Trust'),
(52672, 'https://ror.org/036ezxy46', 'no_lang_code', 1, 'https://ror.org/036ezxy46 Dr. Franz Kƶhler Chemie (Germany)'),
(52673, 'https://ror.org/036fajn26', 'en', 1, 'https://ror.org/036fajn26 Czech Society for Butterfly and Moth Conservation'),
(52674, 'https://ror.org/036g5z675', 'it', 1, 'https://ror.org/036g5z675 Azienda Sanitaria Locale CN2'),
(52675, 'https://ror.org/036hktk48', 'no_lang_code', 1, 'https://ror.org/036hktk48 Babes in Arms (Canada)'),
(52676, 'https://ror.org/036hs6h32', 'en', 1, 'https://ror.org/036hs6h32 Coffs Harbour City Council'),
(52677, 'https://ror.org/036jkzq95', 'en', 1, 'https://ror.org/036jkzq95 European Society of Cataract and Refractive Surgeons'),
(52678, 'https://ror.org/036jq7b41', 'en', 1, 'https://ror.org/036jq7b41 Allen Foundation'),
(52679, 'https://ror.org/036jr6x18', 'en', 1, 'https://ror.org/036jr6x18 Save the Children'),
(52680, 'https://ror.org/036jvr704', 'en', 1, 'https://ror.org/036jvr704 Kappa Alpha Theta Foundation'),
(52681, 'https://ror.org/036nywx06', 'en', 1, 'https://ror.org/036nywx06 Dr. Herbert & Nicole Wertheim Family Foundation'),
(52682, 'https://ror.org/036qaf130', 'en', 1, 'https://ror.org/036qaf130 Karen Brown Scleroderma Foundation'),
(52683, 'https://ror.org/036qeyz83', 'en', 1, 'https://ror.org/036qeyz83 Stuart Oncology Associates'),
(52684, 'https://ror.org/036rgb954', 'de', 1, 'https://ror.org/036rgb954 RoMed Kliniken'),
(52685, 'https://ror.org/036v92s32', 'en', 1, 'https://ror.org/036v92s32 Aurora Medical Center'),
(52686, 'https://ror.org/036xjse96', 'en', 1, 'https://ror.org/036xjse96 E. Rhodes and Leona B. Carpenter Foundation'),
(52687, 'https://ror.org/0372e3p95', 'no_lang_code', 1, 'https://ror.org/0372e3p95 Tanita (Japan) ę Ŗå¼ä¼šē¤¾ć‚æćƒ‹ć‚æ'),
(52688, 'https://ror.org/0372zyg05', 'no_lang_code', 1, 'https://ror.org/0372zyg05 Huisman (Netherlands)'),
(52689, 'https://ror.org/0376x2274', 'en', 1, 'https://ror.org/0376x2274 European Society of Endocrinology'),
(52690, 'https://ror.org/0377kgt41', 'en', 1, 'https://ror.org/0377kgt41 Communities United'),
(52691, 'https://ror.org/0379rbe49', 'en', 1, 'https://ror.org/0379rbe49 Eye Surgeons of Indiana'),
(52692, 'https://ror.org/037b6bp42', 'es', 1, 'https://ror.org/037b6bp42 Alianza EspaƱola de Familias de Von Hippel Lindau'),
(52693, 'https://ror.org/037bjx704', 'en', 1, 'https://ror.org/037bjx704 Cancer Care South East'),
(52694, 'https://ror.org/037bmav86', 'no_lang_code', 1, 'https://ror.org/037bmav86 Haberdashers (United Kingdom)'),
(52695, 'https://ror.org/037bzzg07', 'en', 1, 'https://ror.org/037bzzg07 Sasaki Associates'),
(52696, 'https://ror.org/037d2wg57', 'en', 1, 'https://ror.org/037d2wg57 Johnson Foundation'),
(52697, 'https://ror.org/037ds2k79', 'en', 1, 'https://ror.org/037ds2k79 Virginia Research Institute'),
(52698, 'https://ror.org/037g47a86', 'no_lang_code', 1, 'https://ror.org/037g47a86 Arthur Asirvatham Hospital'),
(52699, 'https://ror.org/037gt0k77', 'no_lang_code', 1, 'https://ror.org/037gt0k77 Univar (United Kingdom)'),
(52700, 'https://ror.org/037jcf003', 'en', 1, 'https://ror.org/037jcf003 Horowitz Foundation for Social Policy'),
(52701, 'https://ror.org/037my6387', 'en', 1, 'https://ror.org/037my6387 Sleep Therapy and Research Center'),
(52702, 'https://ror.org/037ny3p81', 'en', 1, 'https://ror.org/037ny3p81 Frances P. Bunnelle Foundation'),
(52703, 'https://ror.org/037pyxf85', 'en', 1, 'https://ror.org/037pyxf85 H. L. Snyder Medical Foundation'),
(52704, 'https://ror.org/037rewq44', 'en', 1, 'https://ror.org/037rewq44 CNS Healthcare'),
(52705, 'https://ror.org/037svw098', 'en', 1, 'https://ror.org/037svw098 Krembil Foundation'),
(52706, 'https://ror.org/037sy5j20', 'en', 1, 'https://ror.org/037sy5j20 KNI Southwest Michigan Imaging Center'),
(52707, 'https://ror.org/037wy0p68', 'en', 1, 'https://ror.org/037wy0p68 Children''s Oncology Group'),
(52708, 'https://ror.org/037yq7995', 'en', 1, 'https://ror.org/037yq7995 Hunting Retriever Club'),
(52709, 'https://ror.org/038160315', 'en', 1, 'https://ror.org/038160315 Orthopaedic Institute of Henderson'),
(52710, 'https://ror.org/0381dt953', 'en', 1, 'https://ror.org/0381dt953 CMH Lahore Medical College and Institute of Dentistry'),
(52711, 'https://ror.org/0382cxx18', 'en', 1, 'https://ror.org/0382cxx18 Section of Transfusion Medicine Capital Region Blood Bank & Department of Clinical Immunology'),
(52712, 'https://ror.org/0382s8112', 'en', 1, 'https://ror.org/0382s8112 Carrick Institute'),
(52713, 'https://ror.org/038372j15', 'en', 1, 'https://ror.org/038372j15 Cadillac Area Community Foundation'),
(52714, 'https://ror.org/0384v4x96', 'en', 1, 'https://ror.org/0384v4x96 Shearwater Health'),
(52715, 'https://ror.org/0385nz751', 'en', 1, 'https://ror.org/0385nz751 Uongozi Institute'),
(52716, 'https://ror.org/038628g29', 'en', 1, 'https://ror.org/038628g29 American Academy of Periodontology Foundation'),
(52717, 'https://ror.org/0386zd719', 'no_lang_code', 1, 'https://ror.org/0386zd719 Bionor (Denmark)'),
(52718, 'https://ror.org/038854471', 'en', 1, 'https://ror.org/038854471 Dupar Foundation'),
(52719, 'https://ror.org/0388avt91', 'en', 1, 'https://ror.org/0388avt91 Allergy Associates of the Palm Beaches'),
(52720, 'https://ror.org/0388s3j86', 'en', 1, 'https://ror.org/0388s3j86 FISA Foundation'),
(52721, 'https://ror.org/038b3qv22', 'en', 1, 'https://ror.org/038b3qv22 Middle Georgia Regional Library'),
(52722, 'https://ror.org/038ez8t98', 'en', 1, 'https://ror.org/038ez8t98 Buckeye Career Center Foundation'),
(52723, 'https://ror.org/038gm9q58', 'en', 1, 'https://ror.org/038gm9q58 Hamdard National Foundation'),
(52724, 'https://ror.org/038gt6e80', 'en', 1, 'https://ror.org/038gt6e80 OASIS Clinic'),
(52725, 'https://ror.org/038gt8318', 'no_lang_code', 1, 'https://ror.org/038gt8318 KiloCoach (Austria)'),
(52726, 'https://ror.org/038h40c12', 'en', 1, 'https://ror.org/038h40c12 Veritas Forum'),
(52727, 'https://ror.org/038kcjb09', 'no_lang_code', 1, 'https://ror.org/038kcjb09 Santen (United Kingdom) å‚å¤©č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(52728, 'https://ror.org/038mpcy29', 'en', 1, 'https://ror.org/038mpcy29 Science Museerne Science Museums'),
(52729, 'https://ror.org/038rdj441', 'ro', 1, 'https://ror.org/038rdj441 Tehimpuls'),
(52730, 'https://ror.org/038rnrm61', 'en', 1, 'https://ror.org/038rnrm61 Witter Bynner Foundation for Poetry'),
(52731, 'https://ror.org/038shek77', 'en', 1, 'https://ror.org/038shek77 ASPEA - Portuguese Association for Environmental Education'),
(52732, 'https://ror.org/038v5jv72', 'de', 1, 'https://ror.org/038v5jv72 Asklepios Klinik Sankt Augustin'),
(52733, 'https://ror.org/038xm7148', 'no_lang_code', 1, 'https://ror.org/038xm7148 Microsemi (Canada)'),
(52734, 'https://ror.org/038y3ce09', 'en', 1, 'https://ror.org/038y3ce09 Urology Bay of Plenty'),
(52735, 'https://ror.org/039293a32', 'en', 1, 'https://ror.org/039293a32 Florida Fertility Institute'),
(52736, 'https://ror.org/0392c7938', 'no_lang_code', 1, 'https://ror.org/0392c7938 Roche (Greece)'),
(52737, 'https://ror.org/0393e5v03', 'en', 1, 'https://ror.org/0393e5v03 Fonds Sluyterman van Loo Sluyterman van Loo Foundation'),
(52738, 'https://ror.org/03945ew66', 'en', 1, 'https://ror.org/03945ew66 PA Research Foundation'),
(52739, 'https://ror.org/0396rhp27', 'no_lang_code', 1, 'https://ror.org/0396rhp27 Danaher (Canada)'),
(52740, 'https://ror.org/0397kcw92', 'en', 1, 'https://ror.org/0397kcw92 Design without Borders'),
(52741, 'https://ror.org/0398jdj48', 'no_lang_code', 1, 'https://ror.org/0398jdj48 Develco Pharma (Switzerland)'),
(52742, 'https://ror.org/0398nv697', 'no_lang_code', 1, 'https://ror.org/0398nv697 Coxswain Social Investment Plus (Tunisia)'),
(52743, 'https://ror.org/039945b55', 'no_lang_code', 1, 'https://ror.org/039945b55 Eiger Biopharmaceuticals (United States)'),
(52744, 'https://ror.org/0399w1j22', 'en', 1, 'https://ror.org/0399w1j22 Direction GƩnƩrale SantƩ et sƩcuritƩ alimentaire Directorate-General for Health and Food Safety Generaldirektion der Gesundheit und Lebensmittelsicherheit'),
(52745, 'https://ror.org/0399x8k58', 'en', 1, 'https://ror.org/0399x8k58 Advanced Dialysis Center'),
(52746, 'https://ror.org/039b19p38', 'en', 1, 'https://ror.org/039b19p38 International Franchise Association'),
(52747, 'https://ror.org/039baqv34', 'no_lang_code', 1, 'https://ror.org/039baqv34 Valneva (United States)'),
(52748, 'https://ror.org/039d85044', 'no_lang_code', 1, 'https://ror.org/039d85044 IDEO (United States)'),
(52749, 'https://ror.org/039frc380', 'no_lang_code', 1, 'https://ror.org/039frc380 Well Pharma Medical Research (United States)'),
(52750, 'https://ror.org/039j5gk75', 'pt', 1, 'https://ror.org/039j5gk75 Instituto de Medicina AvanƧada'),
(52751, 'https://ror.org/039jj6r78', 'en', 1, 'https://ror.org/039jj6r78 Nuhr Medical Center'),
(52752, 'https://ror.org/039jsjq26', 'no_lang_code', 1, 'https://ror.org/039jsjq26 Metabolistics (Canada)'),
(52753, 'https://ror.org/039k05z19', 'en', 1, 'https://ror.org/039k05z19 Jovid Foundation'),
(52754, 'https://ror.org/039md3f50', 'en', 1, 'https://ror.org/039md3f50 Cianna Medical'),
(52755, 'https://ror.org/039r7y922', 'en', 1, 'https://ror.org/039r7y922 International Dragonfly Fund'),
(52756, 'https://ror.org/039sz0x75', 'en', 1, 'https://ror.org/039sz0x75 Change the Equation'),
(52757, 'https://ror.org/039w99793', 'en', 1, 'https://ror.org/039w99793 Alberta Science and Technology Leadership Foundation'),
(52758, 'https://ror.org/03a01dc42', 'no_lang_code', 1, 'https://ror.org/03a01dc42 E.O. Wilson Biodiversity Foundation'),
(52759, 'https://ror.org/03a0cx640', 'en', 1, 'https://ror.org/03a0cx640 Epidermolysis Bullosa Medical Research Foundation'),
(52760, 'https://ror.org/03a1cp978', 'en', 1, 'https://ror.org/03a1cp978 Henry P Kendall Foundation'),
(52761, 'https://ror.org/03a20x849', 'no_lang_code', 1, 'https://ror.org/03a20x849 Medice (Germany)'),
(52762, 'https://ror.org/03a2cf734', 'en', 1, 'https://ror.org/03a2cf734 Bridgespan Group'),
(52763, 'https://ror.org/03a2jdp82', 'en', 1, 'https://ror.org/03a2jdp82 Relief International'),
(52764, 'https://ror.org/03a2xf890', 'en', 1, 'https://ror.org/03a2xf890 Radiology Associates of Albuquerque'),
(52765, 'https://ror.org/03a3aw155', 'en', 1, 'https://ror.org/03a3aw155 Boomer Esiason Foundation'),
(52766, 'https://ror.org/03a3n5193', 'nl', 1, 'https://ror.org/03a3n5193 Nederlandse Vereniging van Artsen voor Longziekten en Tuberculose'),
(52767, 'https://ror.org/03a8x4b06', 'en', 1, 'https://ror.org/03a8x4b06 Eppley Foundation for Research'),
(52768, 'https://ror.org/03a9cwm95', 'en', 1, 'https://ror.org/03a9cwm95 Innovative Structural Materials Association'),
(52769, 'https://ror.org/03a9s6161', 'en', 1, 'https://ror.org/03a9s6161 Bernard van Leer Foundation'),
(52770, 'https://ror.org/03acj9296', 'en', 1, 'https://ror.org/03acj9296 Berkshire Taconic Community Foundation'),
(52771, 'https://ror.org/03adra252', 'en', 1, 'https://ror.org/03adra252 Indiana Clinical Trials Center'),
(52772, 'https://ror.org/03aene214', 'en', 1, 'https://ror.org/03aene214 California Medical Clinic for Headache'),
(52773, 'https://ror.org/03aewna27', 'no_lang_code', 1, 'https://ror.org/03aewna27 Tanaka Holdings (Japan) ē”°äø­č²“é‡‘å±žć‚°ćƒ«ćƒ¼ćƒ—'),
(52774, 'https://ror.org/03af7p216', 'no_lang_code', 1, 'https://ror.org/03af7p216 Cosmo Oil (Japan) ć‚³ć‚¹ćƒ¢ēŸ³ę²¹ę Ŗå¼ä¼šē¤¾'),
(52775, 'https://ror.org/03afa2q29', 'en', 1, 'https://ror.org/03afa2q29 ASAE Foundation'),
(52776, 'https://ror.org/03afz7q27', 'en', 1, 'https://ror.org/03afz7q27 RML Specialty Hospital'),
(52777, 'https://ror.org/03aj3re16', 'no_lang_code', 1, 'https://ror.org/03aj3re16 Resverlogix (Canada)'),
(52778, 'https://ror.org/03ak14x38', 'en', 1, 'https://ror.org/03ak14x38 International Association for Counterterrorism and Security Professionals'),
(52779, 'https://ror.org/03ak9g490', 'en', 1, 'https://ror.org/03ak9g490 Association of Migraine Disorders'),
(52780, 'https://ror.org/03am9bm91', 'en', 1, 'https://ror.org/03am9bm91 Bateman Horne Center'),
(52781, 'https://ror.org/03aqkyr95', 'en', 1, 'https://ror.org/03aqkyr95 Kidneeds'),
(52782, 'https://ror.org/03aqtjw04', 'en', 1, 'https://ror.org/03aqtjw04 Dalian Maternal and Child Health Hospital å¤§čæžåø‚å¦‡äŗ§åŒ»é™¢'),
(52783, 'https://ror.org/03armk630', 'en', 1, 'https://ror.org/03armk630 United Way of Benton and Franklin Counties'),
(52784, 'https://ror.org/03asba969', 'en', 1, 'https://ror.org/03asba969 Hairy Cell Leukemia Foundation'),
(52785, 'https://ror.org/03ashfw15', 'en', 1, 'https://ror.org/03ashfw15 Communities in Schools of Renton'),
(52786, 'https://ror.org/03at4pf87', 'no_lang_code', 1, 'https://ror.org/03at4pf87 Sivantos (Singapore)'),
(52787, 'https://ror.org/03at8gw73', 'en', 1, 'https://ror.org/03at8gw73 Gift of the Givers Foundation'),
(52788, 'https://ror.org/03av58010', 'en', 1, 'https://ror.org/03av58010 Joint Center for Political and Economic Studies'),
(52789, 'https://ror.org/03avbdx23', 'en', 1, 'https://ror.org/03avbdx23 Pius Hospital Oldenburg'),
(52790, 'https://ror.org/03aw15z34', 'no_lang_code', 1, 'https://ror.org/03aw15z34 AlterG (United States)'),
(52791, 'https://ror.org/03aw9bj44', 'en', 1, 'https://ror.org/03aw9bj44 Fistula Foundation'),
(52792, 'https://ror.org/03awnwb78', 'en', 1, 'https://ror.org/03awnwb78 Nurture Foundation for Reproductive Research'),
(52793, 'https://ror.org/03axz0166', 'en', 1, 'https://ror.org/03axz0166 Healthcare Foundation of New Jersey'),
(52794, 'https://ror.org/03axzfm24', 'en', 1, 'https://ror.org/03axzfm24 Community Foundation of Monroe County'),
(52795, 'https://ror.org/03ay0gt39', 'no_lang_code', 1, 'https://ror.org/03ay0gt39 ALK-Abelló (Spain)'),
(52796, 'https://ror.org/03ay6m507', 'en', 1, 'https://ror.org/03ay6m507 Meadows Foundation'),
(52797, 'https://ror.org/03ayy2w09', 'en', 1, 'https://ror.org/03ayy2w09 Hirshberg Foundation for Pancreatic Cancer Research'),
(52798, 'https://ror.org/03b0a6729', 'sl', 1, 'https://ror.org/03b0a6729 DruŔtvo Ključ'),
(52799, 'https://ror.org/03b0x6m16', 'no_lang_code', 1, 'https://ror.org/03b0x6m16 Gretsch-Unitas (France)'),
(52800, 'https://ror.org/03b6j7b16', 'en', 1, 'https://ror.org/03b6j7b16 Palm Beach Research Center'),
(52801, 'https://ror.org/03b6zzt23', 'no_lang_code', 1, 'https://ror.org/03b6zzt23 Futaba (Japan) åŒč‘‰é›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(52802, 'https://ror.org/03b7ffd73', 'en', 1, 'https://ror.org/03b7ffd73 Ministry of Environmental Protection and Regional Development'),
(52803, 'https://ror.org/03b855a97', 'no_lang_code', 1, 'https://ror.org/03b855a97 Sorbisense (Denmark)'),
(52804, 'https://ror.org/03b8ttp75', 'en', 1, 'https://ror.org/03b8ttp75 Assisi Foundation of Memphis'),
(52805, 'https://ror.org/03ba3bk23', 'en', 1, 'https://ror.org/03ba3bk23 Fondation des Fondateurs Foundation of the Founders'),
(52806, 'https://ror.org/03ba3e568', 'en', 1, 'https://ror.org/03ba3e568 Psych Recovery'),
(52807, 'https://ror.org/03bbe8e53', 'nl', 1, 'https://ror.org/03bbe8e53 Kempenhaeghe'),
(52808, 'https://ror.org/03bbek688', 'en', 1, 'https://ror.org/03bbek688 Blue Ridge Physical Therapy'),
(52809, 'https://ror.org/03bdhq605', 'en', 1, 'https://ror.org/03bdhq605 National Academy of Engineering'),
(52810, 'https://ror.org/03bea3609', 'en', 1, 'https://ror.org/03bea3609 International Urogynecological Association'),
(52811, 'https://ror.org/03befa582', 'fr', 1, 'https://ror.org/03befa582 Centre Hospitalier Gabriel-Martin'),
(52812, 'https://ror.org/03beyfa67', 'no_lang_code', 1, 'https://ror.org/03beyfa67 Labster (Denmark)'),
(52813, 'https://ror.org/03bfa4276', 'en', 1, 'https://ror.org/03bfa4276 Funders Together to End Homelessness'),
(52814, 'https://ror.org/03bh5kx55', 'no_lang_code', 1, 'https://ror.org/03bh5kx55 Camber Collective (United States)'),
(52815, 'https://ror.org/03bhb2h72', 'no_lang_code', 1, 'https://ror.org/03bhb2h72 Maruho (United States)'),
(52816, 'https://ror.org/03bjgk257', 'no_lang_code', 1, 'https://ror.org/03bjgk257 OncoGenex Pharmaceuticals (United States)'),
(52817, 'https://ror.org/03bkemf09', 'en', 1, 'https://ror.org/03bkemf09 Armed Forces Communications and Electronics Association'),
(52818, 'https://ror.org/03bknpx96', 'no_lang_code', 1, 'https://ror.org/03bknpx96 Epsilon Therapeutics (United States)'),
(52819, 'https://ror.org/03bmavr12', 'no_lang_code', 1, 'https://ror.org/03bmavr12 Stiebel Eltron (Germany)'),
(52820, 'https://ror.org/03bp35d04', 'en', 1, 'https://ror.org/03bp35d04 Santa Ana Public Library'),
(52821, 'https://ror.org/03bpjrg09', 'en', 1, 'https://ror.org/03bpjrg09 CUTS International'),
(52822, 'https://ror.org/03bqns596', 'en', 1, 'https://ror.org/03bqns596 Osceola Regional Medical Center'),
(52823, 'https://ror.org/03br5r234', 'es', 1, 'https://ror.org/03br5r234 Mexfam'),
(52824, 'https://ror.org/03bsswy66', 'no_lang_code', 1, 'https://ror.org/03bsswy66 Takeda (Denmark)'),
(52825, 'https://ror.org/03btm4d84', 'en', 1, 'https://ror.org/03btm4d84 Elias Foundation'),
(52826, 'https://ror.org/03bvrvh83', 'en', 1, 'https://ror.org/03bvrvh83 Association of Theological Schools'),
(52827, 'https://ror.org/03bw33m14', 'en', 1, 'https://ror.org/03bw33m14 Hunter''s Dream for a Cure'),
(52828, 'https://ror.org/03bwyr571', 'en', 1, 'https://ror.org/03bwyr571 Mental Illness Fellowship'),
(52829, 'https://ror.org/03bxbhm47', 'no_lang_code', 1, 'https://ror.org/03bxbhm47 Videnskab (Denmark)'),
(52830, 'https://ror.org/03c09ma81', 'no_lang_code', 1, 'https://ror.org/03c09ma81 Bristol-Myers Squibb (Belgium)'),
(52831, 'https://ror.org/03c174c49', 'en', 1, 'https://ror.org/03c174c49 Validia Kuntoutus Validia Rehabilitation'),
(52832, 'https://ror.org/03c34x898', 'en', 1, 'https://ror.org/03c34x898 Colon and Rectal Surgery Associates'),
(52833, 'https://ror.org/03c467w37', 'en', 1, 'https://ror.org/03c467w37 Pinellas Public Library Cooperative'),
(52834, 'https://ror.org/03c5mbz49', 'en', 1, 'https://ror.org/03c5mbz49 Pinyon Foundation'),
(52835, 'https://ror.org/03c79xe68', 'it', 1, 'https://ror.org/03c79xe68 Fondazione Cassa di Risparmio di Genova e Imperia'),
(52836, 'https://ror.org/03c9x5k98', 'en', 1, 'https://ror.org/03c9x5k98 Tulsa Public Schools'),
(52837, 'https://ror.org/03ca9sh23', 'no_lang_code', 1, 'https://ror.org/03ca9sh23 Windmoeller & Hoelscher (Germany)'),
(52838, 'https://ror.org/03cac6636', 'no_lang_code', 1, 'https://ror.org/03cac6636 Research Corporation Technologies (United States)'),
(52839, 'https://ror.org/03cc5yw72', 'no_lang_code', 1, 'https://ror.org/03cc5yw72 Health Awareness (United States)'),
(52840, 'https://ror.org/03ccwth61', 'es', 1, 'https://ror.org/03ccwth61 Sociedad Espaola de retina y Vtreo'),
(52841, 'https://ror.org/03cd01b85', 'no_lang_code', 1, 'https://ror.org/03cd01b85 Navistar International (United States)'),
(52842, 'https://ror.org/03cd21s10', 'en', 1, 'https://ror.org/03cd21s10 Horn of Africa Services'),
(52843, 'https://ror.org/03cdy5015', 'en', 1, 'https://ror.org/03cdy5015 Carolina Retina Center'),
(52844, 'https://ror.org/03ceh9q73', 'en', 1, 'https://ror.org/03ceh9q73 N.N. Alexandrov National Cancer Centre'),
(52845, 'https://ror.org/03cezf402', 'en', 1, 'https://ror.org/03cezf402 First Candle'),
(52846, 'https://ror.org/03cfq1g41', 'en', 1, 'https://ror.org/03cfq1g41 Cheyenne Regional Medical Center'),
(52847, 'https://ror.org/03ckgn780', 'sv', 1, 'https://ror.org/03ckgn780 Svettmottagningen'),
(52848, 'https://ror.org/03cmxf662', 'no_lang_code', 1, 'https://ror.org/03cmxf662 Solina Group (Nigeria)'),
(52849, 'https://ror.org/03cp7he26', 'en', 1, 'https://ror.org/03cp7he26 World Savings and Retail Banking Institute'),
(52850, 'https://ror.org/03cpd9n92', 'en', 1, 'https://ror.org/03cpd9n92 California Wellness Foundation'),
(52851, 'https://ror.org/03cpssz74', 'en', 1, 'https://ror.org/03cpssz74 Macula Vision Research Foundation'),
(52852, 'https://ror.org/03cq1m515', 'en', 1, 'https://ror.org/03cq1m515 Bulgarian Society for the Protection of Birds'),
(52853, 'https://ror.org/03cq51m79', 'en', 1, 'https://ror.org/03cq51m79 Live Love and Laugh Foundation'),
(52854, 'https://ror.org/03cqs6978', 'no_lang_code', 1, 'https://ror.org/03cqs6978 Clinlogix (Germany)'),
(52855, 'https://ror.org/03crx5092', 'no_lang_code', 1, 'https://ror.org/03crx5092 Nexus Clinical Research (Canada)'),
(52856, 'https://ror.org/03csf6r15', 'en', 1, 'https://ror.org/03csf6r15 California Urological Association'),
(52857, 'https://ror.org/03cvgyy64', 'en', 1, 'https://ror.org/03cvgyy64 Center for Excellence in Eye Care'),
(52858, 'https://ror.org/03cvjvq49', 'no_lang_code', 1, 'https://ror.org/03cvjvq49 Texas Instruments (Germany)'),
(52859, 'https://ror.org/03cwbzb16', 'no_lang_code', 1, 'https://ror.org/03cwbzb16 Roche (Austria)'),
(52860, 'https://ror.org/03cy8qt72', 'en', 1, 'https://ror.org/03cy8qt72 Heze Municipal Hospital'),
(52861, 'https://ror.org/03czrhg80', 'en', 1, 'https://ror.org/03czrhg80 Community Foundation of Central Wisconsin'),
(52862, 'https://ror.org/03d1hk111', 'en', 1, 'https://ror.org/03d1hk111 Marubun Research Promotion Foundation äø€čˆ¬č²”å›£ę³•äŗŗ 丸文貔団'),
(52863, 'https://ror.org/03d4kwm92', 'en', 1, 'https://ror.org/03d4kwm92 Charles Pankow Foundation'),
(52864, 'https://ror.org/03d4rbm41', 'en', 1, 'https://ror.org/03d4rbm41 National Liberty Museum'),
(52865, 'https://ror.org/03d4wwv68', 'en', 1, 'https://ror.org/03d4wwv68 Kobayashi International Scholarship Foundation å°ęž—å›½éš›å„Øå­¦č²”å›£'),
(52866, 'https://ror.org/03d8m2k26', 'no_lang_code', 1, 'https://ror.org/03d8m2k26 SymbioPharm (Germany)'),
(52867, 'https://ror.org/03d9hbe08', 'en', 1, 'https://ror.org/03d9hbe08 Harvard Eye Associates'),
(52868, 'https://ror.org/03d9qgb20', 'no_lang_code', 1, 'https://ror.org/03d9qgb20 Plazmaferezis'),
(52869, 'https://ror.org/03da78945', 'en', 1, 'https://ror.org/03da78945 Pat Graney'),
(52870, 'https://ror.org/03dbk9e81', 'en', 1, 'https://ror.org/03dbk9e81 Maria Eleonora Hospital'),
(52871, 'https://ror.org/03dc3t652', 'en', 1, 'https://ror.org/03dc3t652 Community Foundation of Greater Des Moine'),
(52872, 'https://ror.org/03dc9sa37', 'no_lang_code', 1, 'https://ror.org/03dc9sa37 Hospitals Contribution Fund (Australia)'),
(52873, 'https://ror.org/03dcb4x23', 'no_lang_code', 1, 'https://ror.org/03dcb4x23 Modus Therapeutics (Sweden)'),
(52874, 'https://ror.org/03ddkvp86', 'en', 1, 'https://ror.org/03ddkvp86 National Clinical Research'),
(52875, 'https://ror.org/03deam493', 'fr', 1, 'https://ror.org/03deam493 Centre Hospitalier Annecy Genevois'),
(52876, 'https://ror.org/03df8yt27', 'en', 1, 'https://ror.org/03df8yt27 Dorothy Russell Havemeyer Foundation'),
(52877, 'https://ror.org/03dfszw81', 'en', 1, 'https://ror.org/03dfszw81 Tennessee College Access and Success Network'),
(52878, 'https://ror.org/03dg7tc87', 'en', 1, 'https://ror.org/03dg7tc87 International Foundation for Functional Gastrointestinal Disorders'),
(52879, 'https://ror.org/03dhc8a95', 'en', 1, 'https://ror.org/03dhc8a95 Lothian Sexual Health'),
(52880, 'https://ror.org/03djjj187', 'en', 1, 'https://ror.org/03djjj187 Villa Pineta Hospital'),
(52881, 'https://ror.org/03dkej307', 'no_lang_code', 1, 'https://ror.org/03dkej307 Xellia (Croatia)'),
(52882, 'https://ror.org/03dm2p854', 'en', 1, 'https://ror.org/03dm2p854 Apex Medical Technologies (United States)'),
(52883, 'https://ror.org/03dma0w34', 'no_lang_code', 1, 'https://ror.org/03dma0w34 Stem Cell Technology (Taiwan)'),
(52884, 'https://ror.org/03dmmqc37', 'en', 1, 'https://ror.org/03dmmqc37 Moundview Memorial Hospital and Clinics'),
(52885, 'https://ror.org/03dndb570', 'en', 1, 'https://ror.org/03dndb570 Carl M. Freeman Foundation'),
(52886, 'https://ror.org/03dnfcb20', 'en', 1, 'https://ror.org/03dnfcb20 Center for Community Change'),
(52887, 'https://ror.org/03dqxnz40', 'es', 1, 'https://ror.org/03dqxnz40 Asociación Galega de Investigación na Enfermidade Inflamatoria Intestinal'),
(52888, 'https://ror.org/03dr9am58', 'no_lang_code', 1, 'https://ror.org/03dr9am58 Eduserv'),
(52889, 'https://ror.org/03dre3v93', 'en', 1, 'https://ror.org/03dre3v93 Institute of Leadership & Institutional Development'),
(52890, 'https://ror.org/03dryc986', 'en', 1, 'https://ror.org/03dryc986 California Consumer Protection Foundation'),
(52891, 'https://ror.org/03ds72003', 'en', 1, 'https://ror.org/03ds72003 Mitchell Institute'),
(52892, 'https://ror.org/03dt97p60', 'en', 1, 'https://ror.org/03dt97p60 United Way of Central Washington'),
(52893, 'https://ror.org/03dtz2q77', 'en', 1, 'https://ror.org/03dtz2q77 Osburn Public Library'),
(52894, 'https://ror.org/03dvqmv75', 'en', 1, 'https://ror.org/03dvqmv75 Pact'),
(52895, 'https://ror.org/03dykc861', 'it', 1, 'https://ror.org/03dykc861 Fondazione Istituto G. Giglio di Cefalù'),
(52896, 'https://ror.org/03dzmr959', 'en', 1, 'https://ror.org/03dzmr959 Stedman Clinical Trials'),
(52897, 'https://ror.org/03e1yhr47', 'en', 1, 'https://ror.org/03e1yhr47 Advanced Research Institute'),
(52898, 'https://ror.org/03e2b2m72', 'en', 1, 'https://ror.org/03e2b2m72 CardioVasculƤres Centrum Frankfurt Cardiovascular Center Frankfurt'),
(52899, 'https://ror.org/03e2dbn45', 'en', 1, 'https://ror.org/03e2dbn45 Childrens Heart Foundation'),
(52900, 'https://ror.org/03e3sv174', 'en', 1, 'https://ror.org/03e3sv174 Bull City Learning'),
(52901, 'https://ror.org/03e3wrh22', 'no_lang_code', 1, 'https://ror.org/03e3wrh22 Intermed Pharmaceutical Laboratories (Greece)'),
(52902, 'https://ror.org/03e4f7x92', 'no_lang_code', 1, 'https://ror.org/03e4f7x92 Groz Beckert (Germany)'),
(52903, 'https://ror.org/03e6y4k28', 'no_lang_code', 1, 'https://ror.org/03e6y4k28 Meditop (Hungary)'),
(52904, 'https://ror.org/03e7jm741', 'no_lang_code', 1, 'https://ror.org/03e7jm741 Valmet Automotive (Finland)'),
(52905, 'https://ror.org/03e9cqh27', 'en', 1, 'https://ror.org/03e9cqh27 Young Invincibles'),
(52906, 'https://ror.org/03e9etc12', 'en', 1, 'https://ror.org/03e9etc12 Arab American Pharmacist Association'),
(52907, 'https://ror.org/03eagt651', 'no_lang_code', 1, 'https://ror.org/03eagt651 Coastal Connecticut Research (United States)'),
(52908, 'https://ror.org/03ebabq41', 'no_lang_code', 1, 'https://ror.org/03ebabq41 Clinilabs (United States)'),
(52909, 'https://ror.org/03ebpm503', 'no_lang_code', 1, 'https://ror.org/03ebpm503 ACCO Brands (United States)'),
(52910, 'https://ror.org/03edm8e08', 'fr', 1, 'https://ror.org/03edm8e08 Centre AzurƩen de CancƩrologie'),
(52911, 'https://ror.org/03eeky579', 'en', 1, 'https://ror.org/03eeky579 Horizons Clinical Research Center'),
(52912, 'https://ror.org/03efvsk51', 'no_lang_code', 1, 'https://ror.org/03efvsk51 Zemun Hospital'),
(52913, 'https://ror.org/03egjxh21', 'en', 1, 'https://ror.org/03egjxh21 FXM Research'),
(52914, 'https://ror.org/03egnwz74', 'de', 1, 'https://ror.org/03egnwz74 Krankenhaus Reinbek - Startseite'),
(52915, 'https://ror.org/03ejprz16', 'no_lang_code', 1, 'https://ror.org/03ejprz16 Sherwood Services (United States)'),
(52916, 'https://ror.org/03ekprg18', 'no_lang_code', 1, 'https://ror.org/03ekprg18 Recordati (Italy)'),
(52917, 'https://ror.org/03emy9w83', 'en', 1, 'https://ror.org/03emy9w83 Clinical Research Center of Nevada'),
(52918, 'https://ror.org/03epmm839', 'no_lang_code', 1, 'https://ror.org/03epmm839 Tachi S (Japan)'),
(52919, 'https://ror.org/03eqf0810', 'en', 1, 'https://ror.org/03eqf0810 Educational Foundation of America'),
(52920, 'https://ror.org/03exer738', 'en', 1, 'https://ror.org/03exer738 Children’s Foundation'),
(52921, 'https://ror.org/03eys0150', 'en', 1, 'https://ror.org/03eys0150 Center for Curriculum Redesign'),
(52922, 'https://ror.org/03f1zxe06', 'en', 1, 'https://ror.org/03f1zxe06 KidsOhio'),
(52923, 'https://ror.org/03f2dkv17', 'en', 1, 'https://ror.org/03f2dkv17 Profil Institute for Clinical Research'),
(52924, 'https://ror.org/03f4jx570', 'no_lang_code', 1, 'https://ror.org/03f4jx570 Immungenetics (Germany)'),
(52925, 'https://ror.org/03f4kqa81', 'en', 1, 'https://ror.org/03f4kqa81 State Higher Education Executive Officers'),
(52926, 'https://ror.org/03farsx25', 'en', 1, 'https://ror.org/03farsx25 Indian Academy of Neurosciences'),
(52927, 'https://ror.org/03fcec566', 'en', 1, 'https://ror.org/03fcec566 Sylvana Research'),
(52928, 'https://ror.org/03fcfn607', 'de', 1, 'https://ror.org/03fcfn607 Leibniz Publik'),
(52929, 'https://ror.org/03ffpww43', 'no_lang_code', 1, 'https://ror.org/03ffpww43 Danone (Canada)'),
(52930, 'https://ror.org/03fhcmz08', 'no_lang_code', 1, 'https://ror.org/03fhcmz08 Dr Ritsert Pharma (Germany)'),
(52931, 'https://ror.org/03fhpab87', 'en', 1, 'https://ror.org/03fhpab87 BirdLife Australia'),
(52932, 'https://ror.org/03fjqhb83', 'en', 1, 'https://ror.org/03fjqhb83 Boston Center for Memory'),
(52933, 'https://ror.org/03fjrbp76', 'no_lang_code', 1, 'https://ror.org/03fjrbp76 Loowatt (United Kingdom)'),
(52934, 'https://ror.org/03fk4sm92', 'en', 1, 'https://ror.org/03fk4sm92 Southeastern Council of Foundations'),
(52935, 'https://ror.org/03fnbmw07', 'nl', 1, 'https://ror.org/03fnbmw07 AZ Turnhout'),
(52936, 'https://ror.org/03fnkr060', 'no_lang_code', 1, 'https://ror.org/03fnkr060 Endocrine Research Solutions (United States)'),
(52937, 'https://ror.org/03fpx5n61', 'en', 1, 'https://ror.org/03fpx5n61 Defense Equal Opportunity Management Institute'),
(52938, 'https://ror.org/03fqnpd94', 'en', 1, 'https://ror.org/03fqnpd94 Chicago Council on Global Affairs'),
(52939, 'https://ror.org/03fqsyt94', 'es', 1, 'https://ror.org/03fqsyt94 Hospital la Serena'),
(52940, 'https://ror.org/03frk0780', 'no_lang_code', 1, 'https://ror.org/03frk0780 Recordati (France)'),
(52941, 'https://ror.org/03fs5jd74', 'no_lang_code', 1, 'https://ror.org/03fs5jd74 Vertex Pharmaceuticals (United Kingdom)'),
(52942, 'https://ror.org/03ftrgs19', 'en', 1, 'https://ror.org/03ftrgs19 Oklahoma Otolaryngology Associates'),
(52943, 'https://ror.org/03fzdex20', 'en', 1, 'https://ror.org/03fzdex20 Netherlands Leprosy Relief'),
(52944, 'https://ror.org/03g3g6c84', 'en', 1, 'https://ror.org/03g3g6c84 Foundation for National Parks and Wildlife'),
(52945, 'https://ror.org/03g3tcm95', 'it', 1, 'https://ror.org/03g3tcm95 Policlinico Abano Terme'),
(52946, 'https://ror.org/03g3xrr94', 'no_lang_code', 1, 'https://ror.org/03g3xrr94 SEW Eurodrive (Germany)'),
(52947, 'https://ror.org/03g5saw48', 'en', 1, 'https://ror.org/03g5saw48 100 Black Men of America'),
(52948, 'https://ror.org/03g7xph38', 'en', 1, 'https://ror.org/03g7xph38 Park Nicollet Foundation'),
(52949, 'https://ror.org/03g850905', 'en', 1, 'https://ror.org/03g850905 Carl Gellert and Celia Berta Gellert Foundation'),
(52950, 'https://ror.org/03gd0yp09', 'en', 1, 'https://ror.org/03gd0yp09 Catapult Design'),
(52951, 'https://ror.org/03gdsp770', 'en', 1, 'https://ror.org/03gdsp770 American Institute of Research'),
(52952, 'https://ror.org/03gf3fw83', 'no_lang_code', 1, 'https://ror.org/03gf3fw83 Sure Chill (United Kingdom)'),
(52953, 'https://ror.org/03gg5y009', 'en', 1, 'https://ror.org/03gg5y009 Clinical Research of West Florida'),
(52954, 'https://ror.org/03gjwrd32', 'en', 1, 'https://ror.org/03gjwrd32 Peter Michael Foundation');
INSERT INTO `rors` VALUES
(52955, 'https://ror.org/03gjxr006', 'en', 1, 'https://ror.org/03gjxr006 Northwest Behavioral Medicine'),
(52956, 'https://ror.org/03gn06b62', 'en', 1, 'https://ror.org/03gn06b62 Nonprofit Assistance Center'),
(52957, 'https://ror.org/03gn6hs29', 'da', 1, 'https://ror.org/03gn6hs29 Ringsted Sygehus'),
(52958, 'https://ror.org/03gnb8h10', 'no_lang_code', 1, 'https://ror.org/03gnb8h10 Mabion (Poland)'),
(52959, 'https://ror.org/03gnqg065', 'en', 1, 'https://ror.org/03gnqg065 BioFuelNet Canada'),
(52960, 'https://ror.org/03gpgkw08', 'en', 1, 'https://ror.org/03gpgkw08 Policy Exchange'),
(52961, 'https://ror.org/03gr42p24', 'en', 1, 'https://ror.org/03gr42p24 Vittorio Tison Association'),
(52962, 'https://ror.org/03gr95p90', 'no_lang_code', 1, 'https://ror.org/03gr95p90 Solvay (Austria)'),
(52963, 'https://ror.org/03gsdfk97', 'en', 1, 'https://ror.org/03gsdfk97 Eastside Comprehensive Medical Center'),
(52964, 'https://ror.org/03gstka59', 'en', 1, 'https://ror.org/03gstka59 Center for Orthopaedics'),
(52965, 'https://ror.org/03gsy3007', 'no_lang_code', 1, 'https://ror.org/03gsy3007 PledPharma (Sweden)'),
(52966, 'https://ror.org/03gx95q66', 'en', 1, 'https://ror.org/03gx95q66 Persephone Productions'),
(52967, 'https://ror.org/03gyv3q15', 'en', 1, 'https://ror.org/03gyv3q15 Park Avenue Dermatology'),
(52968, 'https://ror.org/03h07zp96', 'de', 1, 'https://ror.org/03h07zp96 Evangelisches Krankenhaus Alsterdorf'),
(52969, 'https://ror.org/03h143w08', 'pl', 1, 'https://ror.org/03h143w08 NZOZ Centrum Alergologii'),
(52970, 'https://ror.org/03h18h913', 'en', 1, 'https://ror.org/03h18h913 North Jersey Endocrine Consultants'),
(52971, 'https://ror.org/03h1vde20', 'en', 1, 'https://ror.org/03h1vde20 Cosmedica'),
(52972, 'https://ror.org/03h22gm35', 'en', 1, 'https://ror.org/03h22gm35 Edward P. Evans Foundation'),
(52973, 'https://ror.org/03h2cp518', 'en', 1, 'https://ror.org/03h2cp518 Tinker Air Force Base'),
(52974, 'https://ror.org/03h2qaw95', 'ro', 1, 'https://ror.org/03h2qaw95 Spitalul Universitar de Urgenţă Militar Central Dr. Carol Davila'),
(52975, 'https://ror.org/03h32st80', 'en', 1, 'https://ror.org/03h32st80 Good Samaritan Foundation'),
(52976, 'https://ror.org/03h3wjd71', 'no_lang_code', 1, 'https://ror.org/03h3wjd71 Pharmathen (Greece)'),
(52977, 'https://ror.org/03h68p024', 'en', 1, 'https://ror.org/03h68p024 Dorothy Rider Pool Health Care Trust'),
(52978, 'https://ror.org/03h7v3958', 'en', 1, 'https://ror.org/03h7v3958 Model Clinical Research'),
(52979, 'https://ror.org/03h7zc707', 'no_lang_code', 1, 'https://ror.org/03h7zc707 National Oilwell Varco (United States)'),
(52980, 'https://ror.org/03h9hv091', 'en', 1, 'https://ror.org/03h9hv091 Central Dermatology'),
(52981, 'https://ror.org/03hbkyh21', 'en', 1, 'https://ror.org/03hbkyh21 St. Louis Medical Clinic'),
(52982, 'https://ror.org/03hgnab62', 'en', 1, 'https://ror.org/03hgnab62 Meridian Clinical Research'),
(52983, 'https://ror.org/03hh2p523', 'en', 1, 'https://ror.org/03hh2p523 New Zealand Breast Cancer Foundation'),
(52984, 'https://ror.org/03hjbw580', 'en', 1, 'https://ror.org/03hjbw580 KIPP Chicago Schools'),
(52985, 'https://ror.org/03hjfdx24', 'no_lang_code', 1, 'https://ror.org/03hjfdx24 Quotient Clinical (United Kingdom)'),
(52986, 'https://ror.org/03hjzks69', 'en', 1, 'https://ror.org/03hjzks69 New Schools Venture Fund'),
(52987, 'https://ror.org/03hnyzp26', 'no_lang_code', 1, 'https://ror.org/03hnyzp26 Fortune Brands Home and Security (United States)'),
(52988, 'https://ror.org/03hr73p06', 'en', 1, 'https://ror.org/03hr73p06 Lymphoma Foundation'),
(52989, 'https://ror.org/03hrrt833', 'en', 1, 'https://ror.org/03hrrt833 Parkland Center For Clinical Innovation'),
(52990, 'https://ror.org/03hsngx15', 'es', 1, 'https://ror.org/03hsngx15 Oxfam Intermón'),
(52991, 'https://ror.org/03hta7474', 'no_lang_code', 1, 'https://ror.org/03hta7474 Tracto-Technik (Germany)'),
(52992, 'https://ror.org/03htwyn40', 'en', 1, 'https://ror.org/03htwyn40 Meath Foundation'),
(52993, 'https://ror.org/03hv05g61', 'no_lang_code', 1, 'https://ror.org/03hv05g61 Cooley’s Anemia Foundation'),
(52994, 'https://ror.org/03hva1f89', 'en', 1, 'https://ror.org/03hva1f89 Odense Bys Museer Odense City Museums'),
(52995, 'https://ror.org/03hwa6484', 'en', 1, 'https://ror.org/03hwa6484 Second Peoples Hospital of Shaanxi Province é™•č„æēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(52996, 'https://ror.org/03hxb5v03', 'en', 1, 'https://ror.org/03hxb5v03 Georgia Institute for Plastic Surgery'),
(52997, 'https://ror.org/03hxzb342', 'en', 1, 'https://ror.org/03hxzb342 Awesome Foundation'),
(52998, 'https://ror.org/03hy9zy10', 'en', 1, 'https://ror.org/03hy9zy10 Suzhou Traditional Chinese Medicine Hospital č‹å·žäø­åŒ»åŒ»é™¢'),
(52999, 'https://ror.org/03j077d81', 'en', 1, 'https://ror.org/03j077d81 Meyer Foundation'),
(53000, 'https://ror.org/03j0xs842', 'no_lang_code', 1, 'https://ror.org/03j0xs842 Dialog Semiconductor (Germany)'),
(53001, 'https://ror.org/03j249425', 'en', 1, 'https://ror.org/03j249425 Mount Medical Centre'),
(53002, 'https://ror.org/03j2e8162', 'ro', 1, 'https://ror.org/03j2e8162 Spitalul Clinic de Urgență pentru Copii Cluj-Napoca'),
(53003, 'https://ror.org/03j44yq97', 'en', 1, 'https://ror.org/03j44yq97 Community Youth Services'),
(53004, 'https://ror.org/03j4bwb64', 'en', 1, 'https://ror.org/03j4bwb64 Hendricks County Community Foundation'),
(53005, 'https://ror.org/03j4y6x14', 'en', 1, 'https://ror.org/03j4y6x14 Diablo Clinical Research'),
(53006, 'https://ror.org/03j57tp52', 'en', 1, 'https://ror.org/03j57tp52 Loyola Foundation'),
(53007, 'https://ror.org/03j5af397', 'no_lang_code', 1, 'https://ror.org/03j5af397 Iomedico (Germany)'),
(53008, 'https://ror.org/03j6gjn98', 'no_lang_code', 1, 'https://ror.org/03j6gjn98 Daiichi Kogyo Seiyaku (Japan) ē¬¬äø€å·„ę„­č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(53009, 'https://ror.org/03j8jd231', 'en', 1, 'https://ror.org/03j8jd231 Japan Cassis Association ę—„ęœ¬ć‚«ć‚·ć‚¹å”ä¼š'),
(53010, 'https://ror.org/03j9fjx10', 'no_lang_code', 1, 'https://ror.org/03j9fjx10 Peptonic Medical (Sweden)'),
(53011, 'https://ror.org/03j9nh870', 'en', 1, 'https://ror.org/03j9nh870 Pikes Peak Library District'),
(53012, 'https://ror.org/03ja4pz98', 'en', 1, 'https://ror.org/03ja4pz98 Chrest Foundation'),
(53013, 'https://ror.org/03jaff633', 'no_lang_code', 1, 'https://ror.org/03jaff633 Denka (Japan) é›»ę°—åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(53014, 'https://ror.org/03jat0y07', 'no_lang_code', 1, 'https://ror.org/03jat0y07 Promethera Biosciences (Belgium)'),
(53015, 'https://ror.org/03jb89v85', 'no_lang_code', 1, 'https://ror.org/03jb89v85 W. L. Gore & Associates (Germany)'),
(53016, 'https://ror.org/03jbf2g44', 'no_lang_code', 1, 'https://ror.org/03jbf2g44 SMB (Belgium)'),
(53017, 'https://ror.org/03jbz0t39', 'fr', 1, 'https://ror.org/03jbz0t39 Groupe SEB'),
(53018, 'https://ror.org/03jbzvm84', 'en', 1, 'https://ror.org/03jbzvm84 Progressive Clinical Research'),
(53019, 'https://ror.org/03je57g85', 'en', 1, 'https://ror.org/03je57g85 Desmoid Tumor Research Foundation'),
(53020, 'https://ror.org/03jf78g10', 'fr', 1, 'https://ror.org/03jf78g10 Fondation Thierry Latran'),
(53021, 'https://ror.org/03jh7ct92', 'en', 1, 'https://ror.org/03jh7ct92 Center for Cancers and Blood Disorders'),
(53022, 'https://ror.org/03jjxq260', 'en', 1, 'https://ror.org/03jjxq260 Baltimore Community Foundation'),
(53023, 'https://ror.org/03jma7k75', 'en', 1, 'https://ror.org/03jma7k75 Aristocrat Plastic Surgery & MedAesthetics'),
(53024, 'https://ror.org/03jmq3a29', 'no_lang_code', 1, 'https://ror.org/03jmq3a29 Excell Research (United States)'),
(53025, 'https://ror.org/03jngpv21', 'no_lang_code', 1, 'https://ror.org/03jngpv21 Theracos (United States)'),
(53026, 'https://ror.org/03jsy7y79', 'en', 1, 'https://ror.org/03jsy7y79 Ministry of Women and Child Development'),
(53027, 'https://ror.org/03jvfq589', 'de', 1, 'https://ror.org/03jvfq589 Deutsche Bundesbank German Federal Bank'),
(53028, 'https://ror.org/03jvjps27', 'no_lang_code', 1, 'https://ror.org/03jvjps27 Keihin (Japan) ę Ŗå¼ä¼šē¤¾ć‚±ćƒ¼ćƒ’ćƒ³'),
(53029, 'https://ror.org/03jvmdp91', 'en', 1, 'https://ror.org/03jvmdp91 America''s Promise Alliance'),
(53030, 'https://ror.org/03jwxc595', 'en', 1, 'https://ror.org/03jwxc595 Second Affiliated Hospital of Hunan University of Traditional Chinese Medicine'),
(53031, 'https://ror.org/03jwxk796', 'no_lang_code', 1, 'https://ror.org/03jwxk796 Clinvet'),
(53032, 'https://ror.org/03jy7fq30', 'en', 1, 'https://ror.org/03jy7fq30 Association of Perioperative Registered Nurses'),
(53033, 'https://ror.org/03k3h8z07', 'en', 1, 'https://ror.org/03k3h8z07 Oromiyaa Regional Health Bureau'),
(53034, 'https://ror.org/03k3w8z68', 'no_lang_code', 1, 'https://ror.org/03k3w8z68 Sumitomo Osaka Cement (Japan) ä½å‹å¤§é˜Ŗć‚»ćƒ”ćƒ³ćƒˆ'),
(53035, 'https://ror.org/03k6w4998', 'no_lang_code', 1, 'https://ror.org/03k6w4998 Vanak Eye Center'),
(53036, 'https://ror.org/03k747n30', 'en', 1, 'https://ror.org/03k747n30 Page Public Library'),
(53037, 'https://ror.org/03k77k104', 'en', 1, 'https://ror.org/03k77k104 Houston Endowment'),
(53038, 'https://ror.org/03k879d12', 'no_lang_code', 1, 'https://ror.org/03k879d12 Seqirus (United States)'),
(53039, 'https://ror.org/03kb0fc56', 'no_lang_code', 1, 'https://ror.org/03kb0fc56 Transport Corporation of India (India)'),
(53040, 'https://ror.org/03kecdv70', 'en', 1, 'https://ror.org/03kecdv70 International Clinical Research Institute'),
(53041, 'https://ror.org/03ketea85', 'en', 1, 'https://ror.org/03ketea85 New England Biolabs Foundation'),
(53042, 'https://ror.org/03kgyz465', 'de', 1, 'https://ror.org/03kgyz465 Diabetes-Akademie'),
(53043, 'https://ror.org/03khjkh72', 'no_lang_code', 1, 'https://ror.org/03khjkh72 Wolverine Worldwide (United States)'),
(53044, 'https://ror.org/03kkp9n92', 'no_lang_code', 1, 'https://ror.org/03kkp9n92 BYD (China) ęÆ”äŗščæŖč‚”ä»½ęœ‰é™å…¬åø'),
(53045, 'https://ror.org/03kmp0p37', 'en', 1, 'https://ror.org/03kmp0p37 MedSol Clinical Research Center'),
(53046, 'https://ror.org/03kpaty54', 'it', 1, 'https://ror.org/03kpaty54 Agenzia Regionale Parchi'),
(53047, 'https://ror.org/03kr69786', 'no_lang_code', 1, 'https://ror.org/03kr69786 Asklepion Pharmaceuticals (United States)'),
(53048, 'https://ror.org/03krr1869', 'it', 1, 'https://ror.org/03krr1869 Fondazione Cassa di Risparmio di Foligno'),
(53049, 'https://ror.org/03ks7ew17', 'en', 1, 'https://ror.org/03ks7ew17 OrthoMaryland'),
(53050, 'https://ror.org/03ksg3960', 'en', 1, 'https://ror.org/03ksg3960 The Affiliated Hospital to Changchun University of Chinese Medicine é•æę˜„äø­åŒ»čÆå¤§å­¦é™„å±žåŒ»é™¢'),
(53051, 'https://ror.org/03ktkqh12', 'en', 1, 'https://ror.org/03ktkqh12 Barcelona IVI Clinic Clinica IVI Barcelona'),
(53052, 'https://ror.org/03kxek255', 'en', 1, 'https://ror.org/03kxek255 Metcalf Foundation'),
(53053, 'https://ror.org/03kz2rg33', 'en', 1, 'https://ror.org/03kz2rg33 F. M. Kirby Foundation'),
(53054, 'https://ror.org/03kzc9a65', 'en', 1, 'https://ror.org/03kzc9a65 Lotus Clinical Research'),
(53055, 'https://ror.org/03m027021', 'en', 1, 'https://ror.org/03m027021 Oregon Medical Research Center'),
(53056, 'https://ror.org/03m0mkk67', 'no_lang_code', 1, 'https://ror.org/03m0mkk67 Gates (United States)'),
(53057, 'https://ror.org/03m1g2s55', 'en', 1, 'https://ror.org/03m1g2s55 Sanford Burnham Prebys Medical Discovery Institute'),
(53058, 'https://ror.org/03m2d4v09', 'en', 1, 'https://ror.org/03m2d4v09 Hudson Dermatology'),
(53059, 'https://ror.org/03m2gb193', 'en', 1, 'https://ror.org/03m2gb193 Food Allergy Research and Education'),
(53060, 'https://ror.org/03m52qe71', 'no_lang_code', 1, 'https://ror.org/03m52qe71 Truetzschler (Germany) Trützschler'),
(53061, 'https://ror.org/03m58p983', 'en', 1, 'https://ror.org/03m58p983 Community Foundation of the Ozarks'),
(53062, 'https://ror.org/03m5z5h02', 'en', 1, 'https://ror.org/03m5z5h02 Windsor Dermatology'),
(53063, 'https://ror.org/03m6mkf15', 'fr', 1, 'https://ror.org/03m6mkf15 Centre de Haute Energie'),
(53064, 'https://ror.org/03m6vhh37', 'no_lang_code', 1, 'https://ror.org/03m6vhh37 EurActiv (Belgium)'),
(53065, 'https://ror.org/03mbtad86', 'en', 1, 'https://ror.org/03mbtad86 National Organization for Hearing Research Foundation'),
(53066, 'https://ror.org/03mekzy91', 'en', 1, 'https://ror.org/03mekzy91 Contraception Research and Development'),
(53067, 'https://ror.org/03mgygf96', 'it', 1, 'https://ror.org/03mgygf96 ASST Melegnano e della Martesana'),
(53068, 'https://ror.org/03mh6bp35', 'en', 1, 'https://ror.org/03mh6bp35 Dr. Kovil''s Diabetes Care Centre'),
(53069, 'https://ror.org/03mm8gj84', 'en', 1, 'https://ror.org/03mm8gj84 Svensk Onkologisk Fƶrening Swedish Society of Oncology'),
(53070, 'https://ror.org/03mmkx794', 'en', 1, 'https://ror.org/03mmkx794 Judith Rothschild Foundation'),
(53071, 'https://ror.org/03mn32794', 'en', 1, 'https://ror.org/03mn32794 Skin Wellness Center'),
(53072, 'https://ror.org/03mn44j95', 'en', 1, 'https://ror.org/03mn44j95 Diamond Blackfan Anemia Foundation'),
(53073, 'https://ror.org/03mn6vd03', 'en', 1, 'https://ror.org/03mn6vd03 Vicente Ferrer Foundation'),
(53074, 'https://ror.org/03mr1bw41', 'en', 1, 'https://ror.org/03mr1bw41 Peninsula Orthopedic Associates'),
(53075, 'https://ror.org/03msk5846', 'en', 1, 'https://ror.org/03msk5846 Museum of the American Revolution'),
(53076, 'https://ror.org/03mspgn17', 'no_lang_code', 1, 'https://ror.org/03mspgn17 Klosterfrau Healthcare Group (Germany)'),
(53077, 'https://ror.org/03mvv8049', 'en', 1, 'https://ror.org/03mvv8049 Karl Bremer Hospital'),
(53078, 'https://ror.org/03mwbkd48', 'en', 1, 'https://ror.org/03mwbkd48 Promundo'),
(53079, 'https://ror.org/03my72535', 'no_lang_code', 1, 'https://ror.org/03my72535 Merck (Spain)'),
(53080, 'https://ror.org/03myc4w31', 'en', 1, 'https://ror.org/03myc4w31 American Rhinologic Society'),
(53081, 'https://ror.org/03mymmj42', 'en', 1, 'https://ror.org/03mymmj42 Collins Foundation'),
(53082, 'https://ror.org/03myshd20', 'en', 1, 'https://ror.org/03myshd20 Margaret Clark Morgan Foundation'),
(53083, 'https://ror.org/03mz4b890', 'en', 1, 'https://ror.org/03mz4b890 Hillsborough County Public Schools'),
(53084, 'https://ror.org/03mzxvt76', 'fr', 1, 'https://ror.org/03mzxvt76 Arcagy Gineco'),
(53085, 'https://ror.org/03n07ce29', 'en', 1, 'https://ror.org/03n07ce29 Pacific Heart Institute'),
(53086, 'https://ror.org/03n09s827', 'en', 1, 'https://ror.org/03n09s827 Planned Parenthood'),
(53087, 'https://ror.org/03n0et212', 'en', 1, 'https://ror.org/03n0et212 Bonfils-Stanton Foundation'),
(53088, 'https://ror.org/03n0q0765', 'de', 1, 'https://ror.org/03n0q0765 Landesklinikum Korneuburg'),
(53089, 'https://ror.org/03n0sad24', 'en', 1, 'https://ror.org/03n0sad24 Vera Institute of Justice'),
(53090, 'https://ror.org/03n2fp057', 'no_lang_code', 1, 'https://ror.org/03n2fp057 Jacobs Douwe Egberts (Netherlands)'),
(53091, 'https://ror.org/03n3c3r21', 'no_lang_code', 1, 'https://ror.org/03n3c3r21 Fiat Chrysler Automobiles (Germany)'),
(53092, 'https://ror.org/03n3dtw64', 'en', 1, 'https://ror.org/03n3dtw64 Neighborcare Health'),
(53093, 'https://ror.org/03n3k9q60', 'en', 1, 'https://ror.org/03n3k9q60 Statistical Assessment Service'),
(53094, 'https://ror.org/03n4yr938', 'no_lang_code', 1, 'https://ror.org/03n4yr938 FormFactor (United States)'),
(53095, 'https://ror.org/03n6hmg93', 'en', 1, 'https://ror.org/03n6hmg93 Ovarian Cancer Research Foundation'),
(53096, 'https://ror.org/03n9e5p29', 'no_lang_code', 1, 'https://ror.org/03n9e5p29 Epi-Q (United States)'),
(53097, 'https://ror.org/03n9mb487', 'no_lang_code', 1, 'https://ror.org/03n9mb487 Bempu'),
(53098, 'https://ror.org/03nbkg471', 'en', 1, 'https://ror.org/03nbkg471 Danish Head and Neck Cancer Group'),
(53099, 'https://ror.org/03neavy72', 'no_lang_code', 1, 'https://ror.org/03neavy72 Phi Gamma Delta'),
(53100, 'https://ror.org/03nf7rc81', 'no_lang_code', 1, 'https://ror.org/03nf7rc81 Canbex Therapeutics (United Kingdom)'),
(53101, 'https://ror.org/03nfnpg30', 'en', 1, 'https://ror.org/03nfnpg30 North Central Organized Regionally For Total Health'),
(53102, 'https://ror.org/03ng4kg22', 'en', 1, 'https://ror.org/03ng4kg22 Carl Zeiss Foundation Carl-Zeiss-Stiftung'),
(53103, 'https://ror.org/03nj49q02', 'no_lang_code', 1, 'https://ror.org/03nj49q02 Techtronic Industries (United States)'),
(53104, 'https://ror.org/03nk3j490', 'pt', 1, 'https://ror.org/03nk3j490 Hospital Vila Franca de Xira'),
(53105, 'https://ror.org/03nkwrm72', 'fr', 1, 'https://ror.org/03nkwrm72 Centre Hospitalier de FougĆØres'),
(53106, 'https://ror.org/03nmfve22', 'en', 1, 'https://ror.org/03nmfve22 Caribou Digital'),
(53107, 'https://ror.org/03nmw6653', 'en', 1, 'https://ror.org/03nmw6653 European Neuroendocrine Association'),
(53108, 'https://ror.org/03np5z244', 'no_lang_code', 1, 'https://ror.org/03np5z244 DermResearch (United States)'),
(53109, 'https://ror.org/03nrsfd64', 'en', 1, 'https://ror.org/03nrsfd64 BrickStreet Foundation'),
(53110, 'https://ror.org/03ns7pw86', 'en', 1, 'https://ror.org/03ns7pw86 Dermatrials Research'),
(53111, 'https://ror.org/03nvr8032', 'no_lang_code', 1, 'https://ror.org/03nvr8032 Tokai Pharmaceuticals (United States)'),
(53112, 'https://ror.org/03p0xnn24', 'en', 1, 'https://ror.org/03p0xnn24 Mind Australia'),
(53113, 'https://ror.org/03p1cbx82', 'no_lang_code', 1, 'https://ror.org/03p1cbx82 Nektar Therapeutics (United States)'),
(53114, 'https://ror.org/03p3t4h85', 'no_lang_code', 1, 'https://ror.org/03p3t4h85 Zymenex (Denmark)'),
(53115, 'https://ror.org/03p5g0c78', 'en', 1, 'https://ror.org/03p5g0c78 Peace Stone Foundation'),
(53116, 'https://ror.org/03p5taw69', 'en', 1, 'https://ror.org/03p5taw69 Foundation for Middle East Peace'),
(53117, 'https://ror.org/03p5vh095', 'en', 1, 'https://ror.org/03p5vh095 Complete College America'),
(53118, 'https://ror.org/03p8km392', 'en', 1, 'https://ror.org/03p8km392 Canadian Bee Research Fund'),
(53119, 'https://ror.org/03p9f9307', 'en', 1, 'https://ror.org/03p9f9307 Graphic Arts Education and Research Foundation'),
(53120, 'https://ror.org/03paq3x39', 'no_lang_code', 1, 'https://ror.org/03paq3x39 Celerion (United Kingdom)'),
(53121, 'https://ror.org/03pfkgd48', 'no_lang_code', 1, 'https://ror.org/03pfkgd48 Toyo Seikan (Japan) ę±ę“‹č£½ē½ć‚°ćƒ«ćƒ¼ćƒ—ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(53122, 'https://ror.org/03phzkx10', 'en', 1, 'https://ror.org/03phzkx10 Institut für Kulturwissenschaften und Theatergeschichte Institute of Culture Studies and Theatre History'),
(53123, 'https://ror.org/03pjeq484', 'en', 1, 'https://ror.org/03pjeq484 St. Helena Public Library'),
(53124, 'https://ror.org/03pkewe16', 'en', 1, 'https://ror.org/03pkewe16 Manpei Suzuki Diabetes Foundation'),
(53125, 'https://ror.org/03pnd3r37', 'en', 1, 'https://ror.org/03pnd3r37 Andy Warhol Foundation for the Visual Arts'),
(53126, 'https://ror.org/03pp6kd13', 'en', 1, 'https://ror.org/03pp6kd13 American Hand Therapy Foundation'),
(53127, 'https://ror.org/03pptej51', 'it', 1, 'https://ror.org/03pptej51 Fondazione Guido Berlucchi'),
(53128, 'https://ror.org/03pr9qp97', 'en', 1, 'https://ror.org/03pr9qp97 Stanislaus County Library'),
(53129, 'https://ror.org/03ps62e58', 'en', 1, 'https://ror.org/03ps62e58 Grantmakers In Health'),
(53130, 'https://ror.org/03pvvgr46', 'en', 1, 'https://ror.org/03pvvgr46 Seattle Academy of Arts and Sciences'),
(53131, 'https://ror.org/03pwpr214', 'no_lang_code', 1, 'https://ror.org/03pwpr214 Hitachi (United States)'),
(53132, 'https://ror.org/03pxm0s08', 'en', 1, 'https://ror.org/03pxm0s08 Centennial Heart Cardiovascular Consultants'),
(53133, 'https://ror.org/03pxvf904', 'it', 1, 'https://ror.org/03pxvf904 Clinica Mediterranea'),
(53134, 'https://ror.org/03pyjhg42', 'no_lang_code', 1, 'https://ror.org/03pyjhg42 Syddansk Innovation (Denmark)'),
(53135, 'https://ror.org/03pzdmy91', 'de', 1, 'https://ror.org/03pzdmy91 Konrad Adenauer Foundation Konrad-Adenauer-Stiftung'),
(53136, 'https://ror.org/03q02hd35', 'en', 1, 'https://ror.org/03q02hd35 Fighting Infectious Diseases in Emerging Countries'),
(53137, 'https://ror.org/03q2pyf14', 'de', 1, 'https://ror.org/03q2pyf14 Herzstiftung Olten'),
(53138, 'https://ror.org/03q37xb84', 'en', 1, 'https://ror.org/03q37xb84 Wenatchee Valley Hospital & Clinics'),
(53139, 'https://ror.org/03q4j4z17', 'no_lang_code', 1, 'https://ror.org/03q4j4z17 Damvad (Denmark)'),
(53140, 'https://ror.org/03q6gdh15', 'no_lang_code', 1, 'https://ror.org/03q6gdh15 ImmuPharma (France)'),
(53141, 'https://ror.org/03q7jt003', 'no_lang_code', 1, 'https://ror.org/03q7jt003 Flex (United States)'),
(53142, 'https://ror.org/03qcf9t82', 'no_lang_code', 1, 'https://ror.org/03qcf9t82 Dicerna Pharmaceuticals (United States)'),
(53143, 'https://ror.org/03qezq212', 'da', 1, 'https://ror.org/03qezq212 Kai Lange og Gunhild Kai Langes Fond'),
(53144, 'https://ror.org/03qj95z98', 'en', 1, 'https://ror.org/03qj95z98 Tony Blair Africa Governance Initiative'),
(53145, 'https://ror.org/03qjaaq62', 'en', 1, 'https://ror.org/03qjaaq62 Institute Of Perinatology Obstetrics And Gynaecology ՀՀ Ō±Õ† ÕŗÕ„Ö€Õ«Õ¶Õ”ÕæÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ«, Õ“Õ”Õ¶ÕÆÕ”Õ¢Õ”Ö€Õ±ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ„Ö‚ Õ£Õ«Õ¶Õ„ÕÆÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ«'),
(53146, 'https://ror.org/03qjmyd44', 'en', 1, 'https://ror.org/03qjmyd44 Jean Brown Research'),
(53147, 'https://ror.org/03qngpc73', 'no_lang_code', 1, 'https://ror.org/03qngpc73 Mitsuba (Japan) ę Ŗå¼ä¼šē¤¾ćƒŸćƒ„ćƒ'),
(53148, 'https://ror.org/03qpq8w95', 'en', 1, 'https://ror.org/03qpq8w95 Family Beginnings'),
(53149, 'https://ror.org/03qq7fj62', 'en', 1, 'https://ror.org/03qq7fj62 Maple Leaf Medical Clinic'),
(53150, 'https://ror.org/03qqxfy51', 'en', 1, 'https://ror.org/03qqxfy51 Crawford Heritage Community Foundation'),
(53151, 'https://ror.org/03qvxfj12', 'en', 1, 'https://ror.org/03qvxfj12 Morton Cure Paralysis Fund'),
(53152, 'https://ror.org/03qyben73', 'en', 1, 'https://ror.org/03qyben73 MetroWest Health Foundation'),
(53153, 'https://ror.org/03qzp5f03', 'en', 1, 'https://ror.org/03qzp5f03 Lawrence Foundation'),
(53154, 'https://ror.org/03r0s9m45', 'en', 1, 'https://ror.org/03r0s9m45 Population Action International'),
(53155, 'https://ror.org/03r1cgk81', 'no_lang_code', 1, 'https://ror.org/03r1cgk81 Webasto (Germany)'),
(53156, 'https://ror.org/03r24gp64', 'de', 1, 'https://ror.org/03r24gp64 Sterreichisches Akromegalie Register'),
(53157, 'https://ror.org/03r3bgz24', 'en', 1, 'https://ror.org/03r3bgz24 Children''s Advocacy Center'),
(53158, 'https://ror.org/03r6kns77', 'fr', 1, 'https://ror.org/03r6kns77 Centre Hospitalier de Rochefort, Rochefort General Hospital'),
(53159, 'https://ror.org/03r72d818', 'no_lang_code', 1, 'https://ror.org/03r72d818 Hokuto (Japan) ćƒ›ć‚Æćƒˆę Ŗå¼ä¼šē¤¾'),
(53160, 'https://ror.org/03r7rdz71', 'en', 1, 'https://ror.org/03r7rdz71 European Thoracic Oncology Platform'),
(53161, 'https://ror.org/03rb22t72', 'en', 1, 'https://ror.org/03rb22t72 Bidwell Memorial Presbyterian Church'),
(53162, 'https://ror.org/03rbf8960', 'no_lang_code', 1, 'https://ror.org/03rbf8960 LyondellBasell (United States)'),
(53163, 'https://ror.org/03rhhf773', 'en', 1, 'https://ror.org/03rhhf773 International Planned Parenthood Federation'),
(53164, 'https://ror.org/03rhyyh86', 'no_lang_code', 1, 'https://ror.org/03rhyyh86 Diagram (Netherlands)'),
(53165, 'https://ror.org/03rkybp63', 'no_lang_code', 1, 'https://ror.org/03rkybp63 Heel (Germany)'),
(53166, 'https://ror.org/03rkzne32', 'it', 1, 'https://ror.org/03rkzne32 Abiogen Pharma (Italy)'),
(53167, 'https://ror.org/03rmfck35', 'no_lang_code', 1, 'https://ror.org/03rmfck35 Itad (United Kingdom)'),
(53168, 'https://ror.org/03rr5wf56', 'no_lang_code', 1, 'https://ror.org/03rr5wf56 Sophiris (United States)'),
(53169, 'https://ror.org/03rrqwf50', 'no_lang_code', 1, 'https://ror.org/03rrqwf50 PAREXEL International (United Kingdom)'),
(53170, 'https://ror.org/03rx2ty86', 'en', 1, 'https://ror.org/03rx2ty86 Ministerie van Buitenlandse Zaken Ministry of Foreign Affairs'),
(53171, 'https://ror.org/03rxcr397', 'no_lang_code', 1, 'https://ror.org/03rxcr397 O&O Alpan (United States)'),
(53172, 'https://ror.org/03rybz620', 'en', 1, 'https://ror.org/03rybz620 Health Center'),
(53173, 'https://ror.org/03s0ywz76', 'en', 1, 'https://ror.org/03s0ywz76 California Dental Association Foundation'),
(53174, 'https://ror.org/03s182269', 'no_lang_code', 1, 'https://ror.org/03s182269 Valspar (United States)'),
(53175, 'https://ror.org/03s235554', 'en', 1, 'https://ror.org/03s235554 Atlanta Gastroenterology Associates'),
(53176, 'https://ror.org/03s2yrh28', 'en', 1, 'https://ror.org/03s2yrh28 Little Rock Family Practice Clinic'),
(53177, 'https://ror.org/03s3fx919', 'en', 1, 'https://ror.org/03s3fx919 Carl Marshall and Mildred Almen Reeves Foundation'),
(53178, 'https://ror.org/03s3qsz11', 'en', 1, 'https://ror.org/03s3qsz11 EduInnovation'),
(53179, 'https://ror.org/03s410108', 'en', 1, 'https://ror.org/03s410108 OrthoVirginia'),
(53180, 'https://ror.org/03s4rnj35', 'it', 1, 'https://ror.org/03s4rnj35 Fondazione Audiologica Varese'),
(53181, 'https://ror.org/03s68nt92', 'no_lang_code', 1, 'https://ror.org/03s68nt92 Somfy (France)'),
(53182, 'https://ror.org/03s6cj295', 'no_lang_code', 1, 'https://ror.org/03s6cj295 Osaka Gas (Japan) å¤§é˜Ŗē“¦ę–Æę Ŗå¼ä¼šē¤¾'),
(53183, 'https://ror.org/03s9tpa06', 'en', 1, 'https://ror.org/03s9tpa06 Chain of Love Foundation'),
(53184, 'https://ror.org/03samhn24', 'no_lang_code', 1, 'https://ror.org/03samhn24 Gamida Cell (Israel)'),
(53185, 'https://ror.org/03sbjcp06', 'no_lang_code', 1, 'https://ror.org/03sbjcp06 Bobst (Switzerland)'),
(53186, 'https://ror.org/03sf3vq45', 'en', 1, 'https://ror.org/03sf3vq45 NDSU Research Foundation'),
(53187, 'https://ror.org/03sf80053', 'it', 1, 'https://ror.org/03sf80053 Pavia nel Cuore'),
(53188, 'https://ror.org/03sh4z743', 'no_lang_code', 1, 'https://ror.org/03sh4z743 Sunovion (United Kingdom)'),
(53189, 'https://ror.org/03sj0r759', 'no_lang_code', 1, 'https://ror.org/03sj0r759 Pratham'),
(53190, 'https://ror.org/03sje1a87', 'en', 1, 'https://ror.org/03sje1a87 Lindsay Unified School District'),
(53191, 'https://ror.org/03snkjj14', 'en', 1, 'https://ror.org/03snkjj14 Don Monti Memorial Research Foundation'),
(53192, 'https://ror.org/03sqkgx87', 'en', 1, 'https://ror.org/03sqkgx87 Mali Health'),
(53193, 'https://ror.org/03srt3k91', 'en', 1, 'https://ror.org/03srt3k91 Regional Urology'),
(53194, 'https://ror.org/03ss9xg24', 'en', 1, 'https://ror.org/03ss9xg24 Coalition for Pulmonary Fibrosis'),
(53195, 'https://ror.org/03svt6w35', 'en', 1, 'https://ror.org/03svt6w35 Prince Edward Island Library Service'),
(53196, 'https://ror.org/03svtz920', 'no_lang_code', 1, 'https://ror.org/03svtz920 Tekwani Vision Center'),
(53197, 'https://ror.org/03swh5660', 'no_lang_code', 1, 'https://ror.org/03swh5660 Perrigo (Sweden)'),
(53198, 'https://ror.org/03swpf442', 'en', 1, 'https://ror.org/03swpf442 Health Foundation of South Florida'),
(53199, 'https://ror.org/03sxyq954', 'en', 1, 'https://ror.org/03sxyq954 CapitalCare Foundation'),
(53200, 'https://ror.org/03symcd56', 'en', 1, 'https://ror.org/03symcd56 Bay State Clinical Trials'),
(53201, 'https://ror.org/03sys9n92', 'en', 1, 'https://ror.org/03sys9n92 Virginia Eye Consultants'),
(53202, 'https://ror.org/03sz0jr25', 'en', 1, 'https://ror.org/03sz0jr25 Why Foundation'),
(53203, 'https://ror.org/03szkq031', 'en', 1, 'https://ror.org/03szkq031 Environment and Health Fund ×”×§×Ø×Ÿ ×œ×‘×Ø×™××•×Ŗ ההביבה'),
(53204, 'https://ror.org/03t174c88', 'en', 1, 'https://ror.org/03t174c88 Boston Foundation'),
(53205, 'https://ror.org/03t18wf38', 'en', 1, 'https://ror.org/03t18wf38 Illinois Department of Healthcare and Family Services'),
(53206, 'https://ror.org/03t1kp138', 'en', 1, 'https://ror.org/03t1kp138 Impact on Education'),
(53207, 'https://ror.org/03t39g890', 'en', 1, 'https://ror.org/03t39g890 National Council for the Social Studies'),
(53208, 'https://ror.org/03t66w580', 'no_lang_code', 1, 'https://ror.org/03t66w580 VFO (United States)'),
(53209, 'https://ror.org/03t78j106', 'en', 1, 'https://ror.org/03t78j106 Sister Cities International'),
(53210, 'https://ror.org/03t7vt528', 'no_lang_code', 1, 'https://ror.org/03t7vt528 Navitas Life Sciences (Germany)'),
(53211, 'https://ror.org/03t8z4688', 'no_lang_code', 1, 'https://ror.org/03t8z4688 HCM Strategists (United States)'),
(53212, 'https://ror.org/03tah6c23', 'no_lang_code', 1, 'https://ror.org/03tah6c23 Ferro (United States)'),
(53213, 'https://ror.org/03tb7cf45', 'en', 1, 'https://ror.org/03tb7cf45 Firstline Schools'),
(53214, 'https://ror.org/03tbpfn25', 'en', 1, 'https://ror.org/03tbpfn25 Global Call to Action Against Poverty'),
(53215, 'https://ror.org/03tcxr084', 'en', 1, 'https://ror.org/03tcxr084 Student Achievement Partners'),
(53216, 'https://ror.org/03td08d28', 'no_lang_code', 1, 'https://ror.org/03td08d28 TechnipFMC (United States)'),
(53217, 'https://ror.org/03td98h13', 'en', 1, 'https://ror.org/03td98h13 Long Term Care Community Coalition'),
(53218, 'https://ror.org/03tfkdy19', 'en', 1, 'https://ror.org/03tfkdy19 Greater New Orleans Foundation'),
(53219, 'https://ror.org/03th0y014', 'en', 1, 'https://ror.org/03th0y014 Nordic Myeloma Study Group'),
(53220, 'https://ror.org/03tjh0z04', 'en', 1, 'https://ror.org/03tjh0z04 Northwest Association For Biomedical Research'),
(53221, 'https://ror.org/03tk1ps71', 'en', 1, 'https://ror.org/03tk1ps71 McGraw Foundation'),
(53222, 'https://ror.org/03tkh8741', 'en', 1, 'https://ror.org/03tkh8741 Alzheimer''s Foundation of America'),
(53223, 'https://ror.org/03tknt305', 'en', 1, 'https://ror.org/03tknt305 Explorers Club'),
(53224, 'https://ror.org/03tkv5n25', 'en', 1, 'https://ror.org/03tkv5n25 Państwowe Muzeum Archeologiczne State Archaeological Museum'),
(53225, 'https://ror.org/03tm7cr19', 'en', 1, 'https://ror.org/03tm7cr19 Phoenix Medical Research'),
(53226, 'https://ror.org/03tp9c748', 'no_lang_code', 1, 'https://ror.org/03tp9c748 Belden (United States)'),
(53227, 'https://ror.org/03tpee522', 'en', 1, 'https://ror.org/03tpee522 Every Mother Counts'),
(53228, 'https://ror.org/03tq2kc64', 'en', 1, 'https://ror.org/03tq2kc64 Shanxi Dayi Hospital å±±č„æå¤§åŒ»é™¢'),
(53229, 'https://ror.org/03tqbe189', 'en', 1, 'https://ror.org/03tqbe189 State Educational Technology Directors Association'),
(53230, 'https://ror.org/03tqsvs90', 'en', 1, 'https://ror.org/03tqsvs90 FSH Society'),
(53231, 'https://ror.org/03ts5k304', 'no_lang_code', 1, 'https://ror.org/03ts5k304 Focke & Co (Germany)'),
(53232, 'https://ror.org/03tsamb44', 'en', 1, 'https://ror.org/03tsamb44 New River Valley Research Institute'),
(53233, 'https://ror.org/03tst3378', 'en', 1, 'https://ror.org/03tst3378 Eye Care Associates'),
(53234, 'https://ror.org/03tv67y51', 'en', 1, 'https://ror.org/03tv67y51 Illinois Critical Access Hospital Network'),
(53235, 'https://ror.org/03tvt3c62', 'no_lang_code', 1, 'https://ror.org/03tvt3c62 Goodyear (United Kingdom)'),
(53236, 'https://ror.org/03tx8dq56', 'en', 1, 'https://ror.org/03tx8dq56 Boehringer Ingelheim Foundation Boehringer Ingelheim Stiftung'),
(53237, 'https://ror.org/03tzcqp14', 'no_lang_code', 1, 'https://ror.org/03tzcqp14 Reos Production (Romania)'),
(53238, 'https://ror.org/03tzsnk49', 'en', 1, 'https://ror.org/03tzsnk49 Pacific Pioneer Fund'),
(53239, 'https://ror.org/03v0txq34', 'no_lang_code', 1, 'https://ror.org/03v0txq34 Aeterna Zentaris (Germany)'),
(53240, 'https://ror.org/03v0zfc19', 'en', 1, 'https://ror.org/03v0zfc19 Quality Research'),
(53241, 'https://ror.org/03v1s7b70', 'no_lang_code', 1, 'https://ror.org/03v1s7b70 Pfizer (South Korea)'),
(53242, 'https://ror.org/03v3gdy33', 'en', 1, 'https://ror.org/03v3gdy33 Clinical Investigations of Texas'),
(53243, 'https://ror.org/03v4mhk58', 'en', 1, 'https://ror.org/03v4mhk58 World Health Organization - Nigeria'),
(53244, 'https://ror.org/03v4wzh43', 'en', 1, 'https://ror.org/03v4wzh43 Viva Hispanic Foundation NW'),
(53245, 'https://ror.org/03v7w7232', 'en', 1, 'https://ror.org/03v7w7232 Manitoba Beekeepers'' Association'),
(53246, 'https://ror.org/03v9c4d77', 'no_lang_code', 1, 'https://ror.org/03v9c4d77 MTN (Uganda)'),
(53247, 'https://ror.org/03vag5z12', 'en', 1, 'https://ror.org/03vag5z12 Mustard Seed Foundation'),
(53248, 'https://ror.org/03vjk0w59', 'en', 1, 'https://ror.org/03vjk0w59 Hemophilia Association of New York'),
(53249, 'https://ror.org/03vma5j11', 'en', 1, 'https://ror.org/03vma5j11 Staploe Medical Centre'),
(53250, 'https://ror.org/03vmxwa84', 'en', 1, 'https://ror.org/03vmxwa84 Arai Science and Technology Promotion Foundation ę–°äŗ•ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(53251, 'https://ror.org/03vpa9q11', 'en', 1, 'https://ror.org/03vpa9q11 Weihai Municipal Hospital åØęµ·åø‚ē«‹åŒ»é™¢'),
(53252, 'https://ror.org/03vqj9f54', 'en', 1, 'https://ror.org/03vqj9f54 Interleukin Foundation'),
(53253, 'https://ror.org/03vt3fq09', 'en', 1, 'https://ror.org/03vt3fq09 Affiliated Hospital of Liaoning University of Traditional Chinese Medicine č¾½å®ēœäø­åŒ»é™¢'),
(53254, 'https://ror.org/03vtebn72', 'no_lang_code', 1, 'https://ror.org/03vtebn72 Biofrontera (Germany)'),
(53255, 'https://ror.org/03vxt1186', 'en', 1, 'https://ror.org/03vxt1186 Water Services Trust Fund'),
(53256, 'https://ror.org/03vy22q83', 'no_lang_code', 1, 'https://ror.org/03vy22q83 Accord Healthcare (Poland)'),
(53257, 'https://ror.org/03vy5fy74', 'no_lang_code', 1, 'https://ror.org/03vy5fy74 Emotional Brain (Netherlands)'),
(53258, 'https://ror.org/03vyp3w30', 'en', 1, 'https://ror.org/03vyp3w30 Canadian Thoracic Society'),
(53259, 'https://ror.org/03vyqpz72', 'no_lang_code', 1, 'https://ror.org/03vyqpz72 Solvotrin Innovations (Ireland)'),
(53260, 'https://ror.org/03w0y1q19', 'no_lang_code', 1, 'https://ror.org/03w0y1q19 Haruv Institute מכון חרוב'),
(53261, 'https://ror.org/03w27w166', 'en', 1, 'https://ror.org/03w27w166 Akron Community Foundation'),
(53262, 'https://ror.org/03w32n732', 'en', 1, 'https://ror.org/03w32n732 American Brain Tumor Association'),
(53263, 'https://ror.org/03w4sj937', 'en', 1, 'https://ror.org/03w4sj937 Treatment Action Group'),
(53264, 'https://ror.org/03w5sqz30', 'en', 1, 'https://ror.org/03w5sqz30 Davidson County Health Department'),
(53265, 'https://ror.org/03w6ejj57', 'no_lang_code', 1, 'https://ror.org/03w6ejj57 Azellon (United Kingdom)'),
(53266, 'https://ror.org/03w76df53', 'de', 1, 'https://ror.org/03w76df53 Ernst-Abbe-Stiftung'),
(53267, 'https://ror.org/03w77n817', 'no_lang_code', 1, 'https://ror.org/03w77n817 Turnitin (United States)'),
(53268, 'https://ror.org/03w7jg970', 'no_lang_code', 1, 'https://ror.org/03w7jg970 Allergan (France)'),
(53269, 'https://ror.org/03wbpnx68', 'en', 1, 'https://ror.org/03wbpnx68 Nargis Dutt Memorial Cancer Hospital'),
(53270, 'https://ror.org/03wcc3744', 'en', 1, 'https://ror.org/03wcc3744 Forest Research'),
(53271, 'https://ror.org/03wcw7y06', 'en', 1, 'https://ror.org/03wcw7y06 Arkansas Research Alliance'),
(53272, 'https://ror.org/03we40d69', 'en', 1, 'https://ror.org/03we40d69 Dermatology Treatment & Research Center'),
(53273, 'https://ror.org/03wewq802', 'tr', 1, 'https://ror.org/03wewq802 Arnavutkƶy Devlet Hastanesi'),
(53274, 'https://ror.org/03wgdcb95', 'en', 1, 'https://ror.org/03wgdcb95 Atkinson Foundation'),
(53275, 'https://ror.org/03wgek846', 'de', 1, 'https://ror.org/03wgek846 Praxis für Hämatologie und Onkologie'),
(53276, 'https://ror.org/03wj3v998', 'no_lang_code', 1, 'https://ror.org/03wj3v998 Fluidda (Belgium)'),
(53277, 'https://ror.org/03wjwyj98', 'no_lang_code', 1, 'https://ror.org/03wjwyj98 Eppendorf (Germany)'),
(53278, 'https://ror.org/03wkr6054', 'en', 1, 'https://ror.org/03wkr6054 DSF Charitable Foundation'),
(53279, 'https://ror.org/03wm27n21', 'no_lang_code', 1, 'https://ror.org/03wm27n21 Shenyang 242 Hospital ę²ˆé˜³äŗŒå››äŗŒåŒ»é™¢'),
(53280, 'https://ror.org/03wmnrc91', 'no_lang_code', 1, 'https://ror.org/03wmnrc91 Yakult Honsha (Japan) ćƒ¤ć‚Æćƒ«ćƒˆ'),
(53281, 'https://ror.org/03wnrr374', 'en', 1, 'https://ror.org/03wnrr374 New Life International'),
(53282, 'https://ror.org/03wtqwa04', 'en', 1, 'https://ror.org/03wtqwa04 Westmead Institute'),
(53283, 'https://ror.org/03wxagd20', 'en', 1, 'https://ror.org/03wxagd20 McGill-Toolen Catholic High School'),
(53284, 'https://ror.org/03wxy1684', 'en', 1, 'https://ror.org/03wxy1684 Australian Society of Periodontology'),
(53285, 'https://ror.org/03wy7t706', 'en', 1, 'https://ror.org/03wy7t706 KLS Foundation'),
(53286, 'https://ror.org/03wztvy18', 'en', 1, 'https://ror.org/03wztvy18 Paul Hamlyn Foundation'),
(53287, 'https://ror.org/03x06d381', 'no_lang_code', 1, 'https://ror.org/03x06d381 Precise Consult International (Ethiopia)'),
(53288, 'https://ror.org/03x0a1z16', 'no_lang_code', 1, 'https://ror.org/03x0a1z16 Asia Vital Components (Taiwan) äŗšę“²ē”Ÿå‘½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(53289, 'https://ror.org/03x1gs961', 'en', 1, 'https://ror.org/03x1gs961 Jessamine County Schools'),
(53290, 'https://ror.org/03x1kdq06', 'no_lang_code', 1, 'https://ror.org/03x1kdq06 Acacia Pharma (United Kingdom)'),
(53291, 'https://ror.org/03x3bwz43', 'en', 1, 'https://ror.org/03x3bwz43 Ohio News Media Association'),
(53292, 'https://ror.org/03x49ea82', 'no_lang_code', 1, 'https://ror.org/03x49ea82 Renapharma (Sweden)'),
(53293, 'https://ror.org/03x4mf659', 'en', 1, 'https://ror.org/03x4mf659 Lietuvos laisvosios rinkos institutas Lithuanian Free Market Institute'),
(53294, 'https://ror.org/03x6bc282', 'en', 1, 'https://ror.org/03x6bc282 American Medical Student Association'),
(53295, 'https://ror.org/03xa4xh46', 'no_lang_code', 1, 'https://ror.org/03xa4xh46 Teva Pharmaceuticals (Germany)'),
(53296, 'https://ror.org/03xerja39', 'no_lang_code', 1, 'https://ror.org/03xerja39 Great Lakes Research Group (United States)'),
(53297, 'https://ror.org/03xgnmf38', 'en', 1, 'https://ror.org/03xgnmf38 Gallmann Memorial Foundation'),
(53298, 'https://ror.org/03xjd7698', 'no', 1, 'https://ror.org/03xjd7698 Aleris Rosenborgklinikken'),
(53299, 'https://ror.org/03xjfns22', 'no_lang_code', 1, 'https://ror.org/03xjfns22 Teva Pharmaceuticals (Hungary)'),
(53300, 'https://ror.org/03xm1q050', 'en', 1, 'https://ror.org/03xm1q050 Global Development Incubator'),
(53301, 'https://ror.org/03xpmjk25', 'en', 1, 'https://ror.org/03xpmjk25 Ittleson Foundation'),
(53302, 'https://ror.org/03xt5tw33', 'en', 1, 'https://ror.org/03xt5tw33 Wyoming State Library'),
(53303, 'https://ror.org/03xvgfq55', 'en', 1, 'https://ror.org/03xvgfq55 de Beaumont Foundation'),
(53304, 'https://ror.org/03xxf5287', 'en', 1, 'https://ror.org/03xxf5287 Actors Fund of America'),
(53305, 'https://ror.org/03xxrrp43', 'en', 1, 'https://ror.org/03xxrrp43 Nexleaf Analytics'),
(53306, 'https://ror.org/03xzdzp97', 'en', 1, 'https://ror.org/03xzdzp97 Corneal Consultants of Colorado'),
(53307, 'https://ror.org/03xzjcd71', 'en', 1, 'https://ror.org/03xzjcd71 Intellectual Virtues Academy'),
(53308, 'https://ror.org/03y0paf51', 'en', 1, 'https://ror.org/03y0paf51 Spaulding Hospital'),
(53309, 'https://ror.org/03y0tb128', 'it', 1, 'https://ror.org/03y0tb128 Azienda USL della Valle d’Aosta'),
(53310, 'https://ror.org/03y18ef49', 'no_lang_code', 1, 'https://ror.org/03y18ef49 Intec Pharma (Israel)'),
(53311, 'https://ror.org/03y18zz18', 'en', 1, 'https://ror.org/03y18zz18 Revenue Watch Institute'),
(53312, 'https://ror.org/03y50tm06', 'en', 1, 'https://ror.org/03y50tm06 Korean Dermatological Association ėŒ€ķ•œķ”¼ė¶€ź³¼ķ•™ķšŒ'),
(53313, 'https://ror.org/03y6jbv18', 'no_lang_code', 1, 'https://ror.org/03y6jbv18 AUS (United States)'),
(53314, 'https://ror.org/03y7nkj09', 'no_lang_code', 1, 'https://ror.org/03y7nkj09 Matrizyme (Canada)'),
(53315, 'https://ror.org/03y82c084', 'no_lang_code', 1, 'https://ror.org/03y82c084 Immodulon Therapeutics (United Kingdom)'),
(53316, 'https://ror.org/03y8emt10', 'en', 1, 'https://ror.org/03y8emt10 Lyndhurst Gynecologic Associates'),
(53317, 'https://ror.org/03y8pzx74', 'en', 1, 'https://ror.org/03y8pzx74 Washington Center for Weight Management and Research'),
(53318, 'https://ror.org/03y932z67', 'en', 1, 'https://ror.org/03y932z67 Foothill Family Clinic'),
(53319, 'https://ror.org/03y9haj77', 'en', 1, 'https://ror.org/03y9haj77 Colorado Trust'),
(53320, 'https://ror.org/03yanpe89', 'en', 1, 'https://ror.org/03yanpe89 A. E. Finley Foundation'),
(53321, 'https://ror.org/03ybnsp25', 'no_lang_code', 1, 'https://ror.org/03ybnsp25 Valhi (United States)'),
(53322, 'https://ror.org/03yd12021', 'en', 1, 'https://ror.org/03yd12021 Yueyang Hospital äøŠęµ·äø­åŒ»čÆå¤§å­¦é™„å±žå²³é˜³äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(53323, 'https://ror.org/03yd2ta47', 'en', 1, 'https://ror.org/03yd2ta47 Private Hospital & Heart Center Varde'),
(53324, 'https://ror.org/03ye15z82', 'nl', 1, 'https://ror.org/03ye15z82 ODAS Stichting'),
(53325, 'https://ror.org/03ye20z12', 'no_lang_code', 1, 'https://ror.org/03ye20z12 HolsboerMaschmeyer NeuroChemie (Germany)'),
(53326, 'https://ror.org/03yg75p21', 'no_lang_code', 1, 'https://ror.org/03yg75p21 Lely (Netherlands)'),
(53327, 'https://ror.org/03yjg7e55', 'en', 1, 'https://ror.org/03yjg7e55 King County Sexual Assault Resource Center'),
(53328, 'https://ror.org/03yjna842', 'no_lang_code', 1, 'https://ror.org/03yjna842 Tecumseh Products (United States)'),
(53329, 'https://ror.org/03ynhs115', 'en', 1, 'https://ror.org/03ynhs115 Rocky Mountain Cancer Centers'),
(53330, 'https://ror.org/03yqk8w89', 'en', 1, 'https://ror.org/03yqk8w89 Houston Eye Associates'),
(53331, 'https://ror.org/03yrpzn89', 'no_lang_code', 1, 'https://ror.org/03yrpzn89 Q2 (United States)'),
(53332, 'https://ror.org/03ys3np07', 'en', 1, 'https://ror.org/03ys3np07 California Teachers Association'),
(53333, 'https://ror.org/03ytpa045', 'fr', 1, 'https://ror.org/03ytpa045 Centre Hospitalier Henri Laborit'),
(53334, 'https://ror.org/03ytq5m12', 'en', 1, 'https://ror.org/03ytq5m12 Microfinance Information Exchange'),
(53335, 'https://ror.org/03yxqvr87', 'it', 1, 'https://ror.org/03yxqvr87 Villa Melitta'),
(53336, 'https://ror.org/03z0fs548', 'en', 1, 'https://ror.org/03z0fs548 Regional Clinical Research'),
(53337, 'https://ror.org/03z222993', 'en', 1, 'https://ror.org/03z222993 Clinic of Hope Clinique de l''EspƩrance'),
(53338, 'https://ror.org/03z28c516', 'no_lang_code', 1, 'https://ror.org/03z28c516 Rio Tinto (Australia)'),
(53339, 'https://ror.org/03z3ntn64', 'en', 1, 'https://ror.org/03z3ntn64 Ohio Association of Community Colleges'),
(53340, 'https://ror.org/03z462w78', 'no_lang_code', 1, 'https://ror.org/03z462w78 Heckler and Koch (Germany)'),
(53341, 'https://ror.org/03z6emt78', 'no_lang_code', 1, 'https://ror.org/03z6emt78 NanoBio (United States)'),
(53342, 'https://ror.org/03z7ba880', 'da', 1, 'https://ror.org/03z7ba880 Universitets-JubilƦets Danske Samfund'),
(53343, 'https://ror.org/03z8jr008', 'en', 1, 'https://ror.org/03z8jr008 Myelin Project'),
(53344, 'https://ror.org/03z8wtt58', 'en', 1, 'https://ror.org/03z8wtt58 Women''s Policy'),
(53345, 'https://ror.org/03z9zz970', 'no_lang_code', 1, 'https://ror.org/03z9zz970 Philip Morris International (Switzerland)'),
(53346, 'https://ror.org/03zawah80', 'en', 1, 'https://ror.org/03zawah80 Maloney Vision Institute'),
(53347, 'https://ror.org/03zb78d54', 'no_lang_code', 1, 'https://ror.org/03zb78d54 Johnson & Johnson (Italy)'),
(53348, 'https://ror.org/03zbdkx15', 'en', 1, 'https://ror.org/03zbdkx15 Achievement First'),
(53349, 'https://ror.org/03ze5hn40', 'de', 1, 'https://ror.org/03ze5hn40 Bernische Krebsliga'),
(53350, 'https://ror.org/03zh2yp19', 'no_lang_code', 1, 'https://ror.org/03zh2yp19 Dexcel Pharma (United Kingdom)'),
(53351, 'https://ror.org/03zmx7q49', 'en', 1, 'https://ror.org/03zmx7q49 Dingo Discovery and Research Centre'),
(53352, 'https://ror.org/03zmzx398', 'en', 1, 'https://ror.org/03zmzx398 Community Foundation of Elmira Corning and the Finger Lakes'),
(53353, 'https://ror.org/03znz6n75', 'no_lang_code', 1, 'https://ror.org/03znz6n75 Jungheinrich (Germany)'),
(53354, 'https://ror.org/03zp31h16', 'en', 1, 'https://ror.org/03zp31h16 Acton Institute'),
(53355, 'https://ror.org/03zp5py62', 'no_lang_code', 1, 'https://ror.org/03zp5py62 Kion Group (Germany)'),
(53356, 'https://ror.org/03zsnc040', 'en', 1, 'https://ror.org/03zsnc040 Khan Academy'),
(53357, 'https://ror.org/03ztade89', 'no_lang_code', 1, 'https://ror.org/03ztade89 Patara Pharma (United States)'),
(53358, 'https://ror.org/03ztjdh45', 'en', 1, 'https://ror.org/03ztjdh45 Technology Access Foundation'),
(53359, 'https://ror.org/03ztzyx54', 'no_lang_code', 1, 'https://ror.org/03ztzyx54 Chiari & Syringomyelia Foundation'),
(53360, 'https://ror.org/03zxtf807', 'en', 1, 'https://ror.org/03zxtf807 Andrea and Charles Bronfman Philanthropies'),
(53361, 'https://ror.org/03zye6r08', 'no_lang_code', 1, 'https://ror.org/03zye6r08 ORASIS Pharmaceuticals (Israel)'),
(53362, 'https://ror.org/03zzhz546', 'en', 1, 'https://ror.org/03zzhz546 Eye Centers Of Florida'),
(53363, 'https://ror.org/0400j3f74', 'no_lang_code', 1, 'https://ror.org/0400j3f74 GTx (United States)'),
(53364, 'https://ror.org/0401nzk46', 'en', 1, 'https://ror.org/0401nzk46 Nokia Foundation'),
(53365, 'https://ror.org/04026h439', 'no_lang_code', 1, 'https://ror.org/04026h439 FluoroPharma Medical (United States)'),
(53366, 'https://ror.org/04041s104', 'de', 1, 'https://ror.org/04041s104 Katholisches Klinikum Ruhrgebiet Nord GmbH'),
(53367, 'https://ror.org/04058yw12', 'en', 1, 'https://ror.org/04058yw12 Advanced Sleep Medicine Services'),
(53368, 'https://ror.org/0405b3553', 'nl', 1, 'https://ror.org/0405b3553 Westfriesgasthuis'),
(53369, 'https://ror.org/0405pme07', 'no_lang_code', 1, 'https://ror.org/0405pme07 Quackenworth (United States)'),
(53370, 'https://ror.org/04061j496', 'no_lang_code', 1, 'https://ror.org/04061j496 CTS Forex (Canada)'),
(53371, 'https://ror.org/04066xx95', 'no_lang_code', 1, 'https://ror.org/04066xx95 ORYX (Germany)'),
(53372, 'https://ror.org/040aeyr98', 'no_lang_code', 1, 'https://ror.org/040aeyr98 Dance Biopharm (United States)'),
(53373, 'https://ror.org/040apef74', 'no_lang_code', 1, 'https://ror.org/040apef74 Mundipharma (Germany)'),
(53374, 'https://ror.org/040at4140', 'en', 1, 'https://ror.org/040at4140 International Federation of Red Cross and Red Crescent Societies'),
(53375, 'https://ror.org/040ekv640', 'en', 1, 'https://ror.org/040ekv640 Partnership for Child Health'),
(53376, 'https://ror.org/040eybd64', 'en', 1, 'https://ror.org/040eybd64 Movember Foundation'),
(53377, 'https://ror.org/040f4cr30', 'de', 1, 'https://ror.org/040f4cr30 Asklepios Klinik Weißenfels'),
(53378, 'https://ror.org/040g11437', 'en', 1, 'https://ror.org/040g11437 McGregor Foundation'),
(53379, 'https://ror.org/040g15c17', 'pl', 1, 'https://ror.org/040g15c17 Szpital Kliniczny Dzieciątka Jezus'),
(53380, 'https://ror.org/040gykh71', 'es', 1, 'https://ror.org/040gykh71 Universidad de IngenierĆ­a y TecnologĆ­a University of Engineering & Technology'),
(53381, 'https://ror.org/040h02z76', 'no_lang_code', 1, 'https://ror.org/040h02z76 Sanofi (Japan) ć‚µćƒŽćƒ•ć‚£'),
(53382, 'https://ror.org/040hddc75', 'en', 1, 'https://ror.org/040hddc75 American Orchid Society'),
(53383, 'https://ror.org/040hkyv45', 'no_lang_code', 1, 'https://ror.org/040hkyv45 Hannover Clinical Trial Center (Germany)'),
(53384, 'https://ror.org/040j6t342', 'en', 1, 'https://ror.org/040j6t342 Southern Africa Trust'),
(53385, 'https://ror.org/040pjdm93', 'no_lang_code', 1, 'https://ror.org/040pjdm93 Creative Technology (Singapore)'),
(53386, 'https://ror.org/040q4s353', 'en', 1, 'https://ror.org/040q4s353 Share Our Strength'),
(53387, 'https://ror.org/040qqw382', 'en', 1, 'https://ror.org/040qqw382 John Rex Endowment'),
(53388, 'https://ror.org/040rmmq69', 'en', 1, 'https://ror.org/040rmmq69 Beyond Batten Disease Foundation'),
(53389, 'https://ror.org/040rp5672', 'en', 1, 'https://ror.org/040rp5672 York County Libraries'),
(53390, 'https://ror.org/040tqga17', 'no_lang_code', 1, 'https://ror.org/040tqga17 GOAL'),
(53391, 'https://ror.org/040w48218', 'en', 1, 'https://ror.org/040w48218 Prichard Committee for Academic Excellence'),
(53392, 'https://ror.org/040x3fx63', 'en', 1, 'https://ror.org/040x3fx63 Emergency Medicine Foundation'),
(53393, 'https://ror.org/040xe3q33', 'en', 1, 'https://ror.org/040xe3q33 Melville Charitable Trust'),
(53394, 'https://ror.org/040xqfw27', 'en', 1, 'https://ror.org/040xqfw27 Community Foundation of Middlesex County'),
(53395, 'https://ror.org/040ya8k73', 'sv', 1, 'https://ror.org/040ya8k73 Magnus Bergvalls Stiftelse'),
(53396, 'https://ror.org/040ypnf94', 'en', 1, 'https://ror.org/040ypnf94 Westdeutsche Studiengruppe Womenā€˜s Healthcare Group'),
(53397, 'https://ror.org/040ysda03', 'en', 1, 'https://ror.org/040ysda03 British Scoliosis Research Foundation'),
(53398, 'https://ror.org/040z8fc91', 'en', 1, 'https://ror.org/040z8fc91 Consortium of Christian Relief and Development Associations'),
(53399, 'https://ror.org/040zwh478', 'en', 1, 'https://ror.org/040zwh478 European Brain and Behaviour Society'),
(53400, 'https://ror.org/04120ay35', 'no_lang_code', 1, 'https://ror.org/04120ay35 eSpark Learning (United States)'),
(53401, 'https://ror.org/04121g745', 'en', 1, 'https://ror.org/04121g745 FACE Foundation'),
(53402, 'https://ror.org/04134r903', 'en', 1, 'https://ror.org/04134r903 Connected Nation'),
(53403, 'https://ror.org/041475e22', 'en', 1, 'https://ror.org/041475e22 Mclean Foundation'),
(53404, 'https://ror.org/041567670', 'en', 1, 'https://ror.org/041567670 TRIA Orthopaedic Center'),
(53405, 'https://ror.org/0415kd025', 'en', 1, 'https://ror.org/0415kd025 ZanaAfrica Group'),
(53406, 'https://ror.org/0415kjx40', 'en', 1, 'https://ror.org/0415kjx40 Fund for the Environment & Urban Life'),
(53407, 'https://ror.org/041710805', 'no_lang_code', 1, 'https://ror.org/041710805 Pierre Fabre (Germany)'),
(53408, 'https://ror.org/0417n8r23', 'en', 1, 'https://ror.org/0417n8r23 Casio Science Promotion Foundation ć‚«ć‚·ć‚Ŗē§‘å­¦ęŒÆčˆˆč²”å›£'),
(53409, 'https://ror.org/0418ezk85', 'no_lang_code', 1, 'https://ror.org/0418ezk85 Cardiorentis (Switzerland)'),
(53410, 'https://ror.org/04198sg47', 'en', 1, 'https://ror.org/04198sg47 Akiyama Life Science Foundation ē§‹å±±čØ˜åæµē”Ÿå‘½ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(53411, 'https://ror.org/0419jw418', 'en', 1, 'https://ror.org/0419jw418 Greater Pittsburgh Orthopaedic Associates'),
(53412, 'https://ror.org/041an6061', 'pl', 1, 'https://ror.org/041an6061 Uroczysko'),
(53413, 'https://ror.org/041bkd737', 'en', 1, 'https://ror.org/041bkd737 Huai''an City Fourth People''s Hospital ę·®å®‰åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(53414, 'https://ror.org/041dwme31', 'no_lang_code', 1, 'https://ror.org/041dwme31 Shop Vac (United States)'),
(53415, 'https://ror.org/041fvw351', 'en', 1, 'https://ror.org/041fvw351 John Randolph Foundation'),
(53416, 'https://ror.org/041g1ry61', 'eu', 1, 'https://ror.org/041g1ry61 Onkologikoa'),
(53417, 'https://ror.org/041g7jm83', 'it', 1, 'https://ror.org/041g7jm83 Fondazione Umberto Veronesi');
INSERT INTO `rors` VALUES
(53418, 'https://ror.org/041g86f21', 'en', 1, 'https://ror.org/041g86f21 Ziauddin Hospital'),
(53419, 'https://ror.org/041ktbj76', 'en', 1, 'https://ror.org/041ktbj76 Ural Institute of Cardiology Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карГиологии'),
(53420, 'https://ror.org/041pqtq45', 'no_lang_code', 1, 'https://ror.org/041pqtq45 E.G.O (Germany)'),
(53421, 'https://ror.org/041ps8g15', 'en', 1, 'https://ror.org/041ps8g15 Doug Flutie. Jr Foundation for Autism'),
(53422, 'https://ror.org/041qfnf56', 'en', 1, 'https://ror.org/041qfnf56 Jacob Randall Foundation for Morquio'),
(53423, 'https://ror.org/041r3e346', 'no_lang_code', 1, 'https://ror.org/041r3e346 Accenture (Switzerland)'),
(53424, 'https://ror.org/041rv6v55', 'no_lang_code', 1, 'https://ror.org/041rv6v55 Shanghai Chengtou (China)'),
(53425, 'https://ror.org/041xgzk22', 'no_lang_code', 1, 'https://ror.org/041xgzk22 DK4'),
(53426, 'https://ror.org/041zy7b93', 'en', 1, 'https://ror.org/041zy7b93 American College of Healthcare'),
(53427, 'https://ror.org/0421v9x53', 'en', 1, 'https://ror.org/0421v9x53 Median Research Centre'),
(53428, 'https://ror.org/04221f920', 'en', 1, 'https://ror.org/04221f920 Gateway for Cancer Research'),
(53429, 'https://ror.org/0426jn037', 'en', 1, 'https://ror.org/0426jn037 Education Reform Now'),
(53430, 'https://ror.org/04279xj48', 'no_lang_code', 1, 'https://ror.org/04279xj48 Forward Pharma (Germany)'),
(53431, 'https://ror.org/0427p8e67', 'en', 1, 'https://ror.org/0427p8e67 Green Lane Research and Educational Fund'),
(53432, 'https://ror.org/0427w5y14', 'no_lang_code', 1, 'https://ror.org/0427w5y14 Weber and Weber (Germany)'),
(53433, 'https://ror.org/0428xa486', 'en', 1, 'https://ror.org/0428xa486 Tennessee Business Roundtable'),
(53434, 'https://ror.org/0428xen39', 'no_lang_code', 1, 'https://ror.org/0428xen39 Astute Medical (United States)'),
(53435, 'https://ror.org/042bavh06', 'en', 1, 'https://ror.org/042bavh06 Meridien Research'),
(53436, 'https://ror.org/042d2nx10', 'en', 1, 'https://ror.org/042d2nx10 John Cain Foundation'),
(53437, 'https://ror.org/042fam363', 'en', 1, 'https://ror.org/042fam363 Innovations for Poverty Action'),
(53438, 'https://ror.org/042fgte34', 'en', 1, 'https://ror.org/042fgte34 Arkansas Community Foundation'),
(53439, 'https://ror.org/042h3mz57', 'en', 1, 'https://ror.org/042h3mz57 Danish Youth Association of Science Ungdommens Naturvidenskabelige Forening'),
(53440, 'https://ror.org/042hsjs98', 'en', 1, 'https://ror.org/042hsjs98 Buffalo Psychiatric Center'),
(53441, 'https://ror.org/042p27957', 'en', 1, 'https://ror.org/042p27957 Korean American Scholarship Foundation'),
(53442, 'https://ror.org/042p3e123', 'en', 1, 'https://ror.org/042p3e123 Society for International Development'),
(53443, 'https://ror.org/042p8f284', 'en', 1, 'https://ror.org/042p8f284 Volusia County Public Library'),
(53444, 'https://ror.org/042q4th73', 'en', 1, 'https://ror.org/042q4th73 Safe Crossings Foundation'),
(53445, 'https://ror.org/042qmp147', 'fr', 1, 'https://ror.org/042qmp147 Agir Pour les Maladies Chroniques'),
(53446, 'https://ror.org/042tmw509', 'no_lang_code', 1, 'https://ror.org/042tmw509 NRR Hospital'),
(53447, 'https://ror.org/042x0hf72', 'en', 1, 'https://ror.org/042x0hf72 Arkansas State Highway and Transportation Department'),
(53448, 'https://ror.org/042xj9h52', 'no_lang_code', 1, 'https://ror.org/042xj9h52 AB2 Bio (Switzerland)'),
(53449, 'https://ror.org/042y59x42', 'en', 1, 'https://ror.org/042y59x42 Fertility Care Multan'),
(53450, 'https://ror.org/042ywnb68', 'en', 1, 'https://ror.org/042ywnb68 Penda Health'),
(53451, 'https://ror.org/0431ax083', 'it', 1, 'https://ror.org/0431ax083 Associazione Italiana Ematologia Oncologia Pediatrica'),
(53452, 'https://ror.org/0433rew55', 'de', 1, 'https://ror.org/0433rew55 Doctors at the Skin and Laser Centre Haut- und Lasercentrum Potsdam'),
(53453, 'https://ror.org/0435am872', 'en', 1, 'https://ror.org/0435am872 St. Monica Catholic School'),
(53454, 'https://ror.org/0435hmt48', 'en', 1, 'https://ror.org/0435hmt48 Hope Happens for Neurological Disorders'),
(53455, 'https://ror.org/0436njg64', 'no_lang_code', 1, 'https://ror.org/0436njg64 Politico (United States)'),
(53456, 'https://ror.org/043a43z64', 'en', 1, 'https://ror.org/043a43z64 Liuyang City Maternal and Child Health Hospital ęµé˜³åø‚å¦‡å¹¼äæå„é™¢'),
(53457, 'https://ror.org/043a53k35', 'no_lang_code', 1, 'https://ror.org/043a53k35 Trend Micro (Japan) ćƒˆćƒ¬ćƒ³ćƒ‰ćƒžć‚¤ć‚Æćƒ­ę Ŗå¼ä¼šē¤¾'),
(53458, 'https://ror.org/043ae3f44', 'en', 1, 'https://ror.org/043ae3f44 Hospital Research Foundation'),
(53459, 'https://ror.org/043bb8m89', 'en', 1, 'https://ror.org/043bb8m89 Nephcure Foundation'),
(53460, 'https://ror.org/043c07w57', 'en', 1, 'https://ror.org/043c07w57 Kidney Foundation of Central Pennsylvania'),
(53461, 'https://ror.org/043d34r22', 'en', 1, 'https://ror.org/043d34r22 Fleming Island Center For Clinical Research'),
(53462, 'https://ror.org/043dcpa79', 'en', 1, 'https://ror.org/043dcpa79 Mary E Bivins Foundation'),
(53463, 'https://ror.org/043ewr774', 'en', 1, 'https://ror.org/043ewr774 National Eczema Association'),
(53464, 'https://ror.org/043kam464', 'no_lang_code', 1, 'https://ror.org/043kam464 Servier (Spain)'),
(53465, 'https://ror.org/043rrkc78', 'no_lang_code', 1, 'https://ror.org/043rrkc78 Dr Willmar Schwabe (Germany)'),
(53466, 'https://ror.org/043s56e87', 'en', 1, 'https://ror.org/043s56e87 North Carolina Community Foundation'),
(53467, 'https://ror.org/043sz6670', 'en', 1, 'https://ror.org/043sz6670 Sinclair Dermatology'),
(53468, 'https://ror.org/043t12z55', 'en', 1, 'https://ror.org/043t12z55 National Tay-Sachs and Allied Diseases Association'),
(53469, 'https://ror.org/043tgy268', 'en', 1, 'https://ror.org/043tgy268 Campbell Foundation'),
(53470, 'https://ror.org/043ttpn32', 'en', 1, 'https://ror.org/043ttpn32 Kresge Foundation'),
(53471, 'https://ror.org/043xrn095', 'en', 1, 'https://ror.org/043xrn095 National Equity Project'),
(53472, 'https://ror.org/043zrma75', 'en', 1, 'https://ror.org/043zrma75 Richard H. Weisler M.D P.A. and Associates'),
(53473, 'https://ror.org/04407hd58', 'no_lang_code', 1, 'https://ror.org/04407hd58 Wabco (Germany)'),
(53474, 'https://ror.org/04416zz40', 'en', 1, 'https://ror.org/04416zz40 Scalabrini International Migration Network'),
(53475, 'https://ror.org/0442t6705', 'fr', 1, 'https://ror.org/0442t6705 Centre IntƩgrƩ de SantƩ et de Services Sociaux des Laurentides'),
(53476, 'https://ror.org/0444hc919', 'en', 1, 'https://ror.org/0444hc919 Let it Ripple'),
(53477, 'https://ror.org/0446mfw72', 'fr', 1, 'https://ror.org/0446mfw72 Centre Hospitalier de La Rochelle'),
(53478, 'https://ror.org/0446qd735', 'en', 1, 'https://ror.org/0446qd735 Jothydev''s Diabetes and Research Center'),
(53479, 'https://ror.org/0446qvp04', 'en', 1, 'https://ror.org/0446qvp04 St. Joseph''s Care Group'),
(53480, 'https://ror.org/0446x4v61', 'no_lang_code', 1, 'https://ror.org/0446x4v61 Farmalder (Spain)'),
(53481, 'https://ror.org/0447s2m06', 'no_lang_code', 1, 'https://ror.org/0447s2m06 Hartmann Group (Germany)'),
(53482, 'https://ror.org/0448rch47', 'en', 1, 'https://ror.org/0448rch47 Human Network International'),
(53483, 'https://ror.org/044bng944', 'en', 1, 'https://ror.org/044bng944 Nevada Department of Wildlife'),
(53484, 'https://ror.org/044dy9v88', 'en', 1, 'https://ror.org/044dy9v88 National Center on Education and the Economy'),
(53485, 'https://ror.org/044eeh010', 'no_lang_code', 1, 'https://ror.org/044eeh010 BSH Home Appliances (United States)'),
(53486, 'https://ror.org/044fagb96', 'en', 1, 'https://ror.org/044fagb96 Dental Foundation of Oregon'),
(53487, 'https://ror.org/044g62j84', 'en', 1, 'https://ror.org/044g62j84 Westover Heights Clinic'),
(53488, 'https://ror.org/044j14864', 'en', 1, 'https://ror.org/044j14864 St. Johns Center for Clinical Research'),
(53489, 'https://ror.org/044ja2q14', 'en', 1, 'https://ror.org/044ja2q14 Northwest Osteopathic Medical Foundation'),
(53490, 'https://ror.org/044k3m707', 'en', 1, 'https://ror.org/044k3m707 Riksfƶrbundet fƶr sexuell upplysning Swedish Association for Sexuality Education'),
(53491, 'https://ror.org/044nb3d45', 'en', 1, 'https://ror.org/044nb3d45 National Genealogical Society'),
(53492, 'https://ror.org/044pnsw08', 'no_lang_code', 1, 'https://ror.org/044pnsw08 Cidara Therapeutics (United States)'),
(53493, 'https://ror.org/044pwvv43', 'en', 1, 'https://ror.org/044pwvv43 American Society of Pediatric Nephrology'),
(53494, 'https://ror.org/044qh7c61', 'en', 1, 'https://ror.org/044qh7c61 Good Samaritan Regional Medical Center'),
(53495, 'https://ror.org/044qnzq83', 'en', 1, 'https://ror.org/044qnzq83 Czech Womens Lobby ČeskÔ ženskÔ lobby'),
(53496, 'https://ror.org/044r8mj16', 'en', 1, 'https://ror.org/044r8mj16 Myer Foundation'),
(53497, 'https://ror.org/044v7sq39', 'en', 1, 'https://ror.org/044v7sq39 NEA Foundation'),
(53498, 'https://ror.org/044xgn791', 'en', 1, 'https://ror.org/044xgn791 Lupina Foundation'),
(53499, 'https://ror.org/044ynya14', 'en', 1, 'https://ror.org/044ynya14 Grant Healthcare Foundation'),
(53500, 'https://ror.org/04517sd05', 'es', 1, 'https://ror.org/04517sd05 Hospital General Universitario Los Arcos del Mar Menor'),
(53501, 'https://ror.org/0451cv982', 'en', 1, 'https://ror.org/0451cv982 Delta Dental Plans Association'),
(53502, 'https://ror.org/0451ek747', 'de', 1, 'https://ror.org/0451ek747 Deutsche Homƶopathie-Union'),
(53503, 'https://ror.org/04541bn34', 'en', 1, 'https://ror.org/04541bn34 Nova Scotia Provincial Library'),
(53504, 'https://ror.org/0454qd124', 'no_lang_code', 1, 'https://ror.org/0454qd124 Kanzaki (Japan)'),
(53505, 'https://ror.org/0456zgq34', 'en', 1, 'https://ror.org/0456zgq34 Reprogenetics'),
(53506, 'https://ror.org/0457mvc71', 'en', 1, 'https://ror.org/0457mvc71 Children''s Hospital of Illinois'),
(53507, 'https://ror.org/045952971', 'en', 1, 'https://ror.org/045952971 Rajiv Gandhi Charitable Trust'),
(53508, 'https://ror.org/045bk1a41', 'fr', 1, 'https://ror.org/045bk1a41 Fondation du CHUM'),
(53509, 'https://ror.org/045czd036', 'en', 1, 'https://ror.org/045czd036 Horizon Foundation'),
(53510, 'https://ror.org/045d26a95', 'no_lang_code', 1, 'https://ror.org/045d26a95 Candofilm (Denmark)'),
(53511, 'https://ror.org/045e0dn59', 'en', 1, 'https://ror.org/045e0dn59 Migraine Research Foundation'),
(53512, 'https://ror.org/045ekgn88', 'en', 1, 'https://ror.org/045ekgn88 Retina Health Center'),
(53513, 'https://ror.org/045frfm13', 'no_lang_code', 1, 'https://ror.org/045frfm13 Stealth BioTherapeutics (United States)'),
(53514, 'https://ror.org/045ggm846', 'en', 1, 'https://ror.org/045ggm846 Cystinosis Research Foundation'),
(53515, 'https://ror.org/045gvx431', 'en', 1, 'https://ror.org/045gvx431 Huisking Foundation'),
(53516, 'https://ror.org/045hr9t97', 'en', 1, 'https://ror.org/045hr9t97 American Occupational Therapy Foundation'),
(53517, 'https://ror.org/045jy5f81', 'no_lang_code', 1, 'https://ror.org/045jy5f81 Littelfuse (United States)'),
(53518, 'https://ror.org/045kh6832', 'no_lang_code', 1, 'https://ror.org/045kh6832 Ogeda (Belgium)'),
(53519, 'https://ror.org/045ns1x37', 'en', 1, 'https://ror.org/045ns1x37 Cancer Treatment Centers of America'),
(53520, 'https://ror.org/045rc6f24', 'it', 1, 'https://ror.org/045rc6f24 Fondazione Antonio Carlo Monzino'),
(53521, 'https://ror.org/045rsk983', 'no_lang_code', 1, 'https://ror.org/045rsk983 Karl Mayer (Germany)'),
(53522, 'https://ror.org/045wjte67', 'no_lang_code', 1, 'https://ror.org/045wjte67 Amgen (Switzerland)'),
(53523, 'https://ror.org/045x9vk13', 'no_lang_code', 1, 'https://ror.org/045x9vk13 Anergis (Switzerland)'),
(53524, 'https://ror.org/045xnj057', 'no_lang_code', 1, 'https://ror.org/045xnj057 J&S Studies'),
(53525, 'https://ror.org/045zhv531', 'en', 1, 'https://ror.org/045zhv531 Summit Research Network'),
(53526, 'https://ror.org/04606tc02', 'en', 1, 'https://ror.org/04606tc02 IVI Madrid Clinic'),
(53527, 'https://ror.org/0460qsp30', 'fr', 1, 'https://ror.org/0460qsp30 Fondation Max van Berchem'),
(53528, 'https://ror.org/046185q66', 'en', 1, 'https://ror.org/046185q66 Center for the Study of Technology and Society'),
(53529, 'https://ror.org/04631ba92', 'en', 1, 'https://ror.org/04631ba92 Garrett B Smith Foundation'),
(53530, 'https://ror.org/0463yr287', 'en', 1, 'https://ror.org/0463yr287 Annie E. Casey Foundation'),
(53531, 'https://ror.org/04663jx74', 'en', 1, 'https://ror.org/04663jx74 College Station Medical Center'),
(53532, 'https://ror.org/0466fze31', 'en', 1, 'https://ror.org/0466fze31 Real Impact Analytics'),
(53533, 'https://ror.org/0466zjn24', 'en', 1, 'https://ror.org/0466zjn24 Lawrence T. & Janet T. Dee Foundation'),
(53534, 'https://ror.org/04676kj64', 'no_lang_code', 1, 'https://ror.org/04676kj64 Providence Service Corporation (United States)'),
(53535, 'https://ror.org/0468zt688', 'es', 1, 'https://ror.org/0468zt688 Unidad de CirugĆ­a Cardiovascular de Guatemala'),
(53536, 'https://ror.org/046a53p69', 'en', 1, 'https://ror.org/046a53p69 Alexia Foundation'),
(53537, 'https://ror.org/046aqw930', 'en', 1, 'https://ror.org/046aqw930 Pakistan Institute of Learning and Living'),
(53538, 'https://ror.org/046d56591', 'en', 1, 'https://ror.org/046d56591 Carolina Clinical Research Services'),
(53539, 'https://ror.org/046epvs68', 'en', 1, 'https://ror.org/046epvs68 Direction GƩnƩrale Justice et Consommateurs Directorate-General for Justice and Consumers Generaldirektion Justiz und Verbraucher'),
(53540, 'https://ror.org/046f99n88', 'es', 1, 'https://ror.org/046f99n88 Fundación Kovacs'),
(53541, 'https://ror.org/046jw6530', 'en', 1, 'https://ror.org/046jw6530 Green Dot Public Schools'),
(53542, 'https://ror.org/046keqp87', 'en', 1, 'https://ror.org/046keqp87 Jacques and Gloria Gossweiler Foundation Jacques und Gloria Gossweiler - Stiftung'),
(53543, 'https://ror.org/046mfxt70', 'en', 1, 'https://ror.org/046mfxt70 Global Foundation for Peroxisomal Disorders'),
(53544, 'https://ror.org/046pxzs49', 'en', 1, 'https://ror.org/046pxzs49 Outward Bound'),
(53545, 'https://ror.org/046syc687', 'en', 1, 'https://ror.org/046syc687 Rockwood Clinic'),
(53546, 'https://ror.org/046vm5p14', 'en', 1, 'https://ror.org/046vm5p14 Oncology Specialists'),
(53547, 'https://ror.org/046vzvy73', 'it', 1, 'https://ror.org/046vzvy73 Trials Italiani in Oncologia Medica'),
(53548, 'https://ror.org/046wx6811', 'en', 1, 'https://ror.org/046wx6811 International Education Research Foundation'),
(53549, 'https://ror.org/046xmah45', 'no_lang_code', 1, 'https://ror.org/046xmah45 Plastic Omnium (Belgium)'),
(53550, 'https://ror.org/046xvb515', 'pl', 1, 'https://ror.org/046xvb515 Białowieski Park Narodowy, Białowieża National Park'),
(53551, 'https://ror.org/046xy0k58', 'en', 1, 'https://ror.org/046xy0k58 NIHR Wellcome Trust Southampton Clinical Research Facility'),
(53552, 'https://ror.org/046ybfk04', 'en', 1, 'https://ror.org/046ybfk04 Pennsylvania Partnerships for Children'),
(53553, 'https://ror.org/046z18h28', 'en', 1, 'https://ror.org/046z18h28 Mount Carmel East'),
(53554, 'https://ror.org/046zf8j85', 'en', 1, 'https://ror.org/046zf8j85 Skin Care and Laser Physicians of Beverly Hills'),
(53555, 'https://ror.org/046zgtw08', 'no_lang_code', 1, 'https://ror.org/046zgtw08 Norgine (United Kingdom)'),
(53556, 'https://ror.org/0470nty22', 'en', 1, 'https://ror.org/0470nty22 Albert and Margaret Alkek Foundation'),
(53557, 'https://ror.org/04724jg08', 'no_lang_code', 1, 'https://ror.org/04724jg08 Leggett and Platt (United States)'),
(53558, 'https://ror.org/0472fnh69', 'sv', 1, 'https://ror.org/0472fnh69 Mora lasarett'),
(53559, 'https://ror.org/0472hmc50', 'en', 1, 'https://ror.org/0472hmc50 CLL Global Research Foundation'),
(53560, 'https://ror.org/0473gwd77', 'no_lang_code', 1, 'https://ror.org/0473gwd77 Ensinger Mineral-Heilquellen (Germany)'),
(53561, 'https://ror.org/0473srk52', 'no_lang_code', 1, 'https://ror.org/0473srk52 Ifm electronic (Germany)'),
(53562, 'https://ror.org/0476a5k06', 'en', 1, 'https://ror.org/0476a5k06 CliniRx Tangent Research'),
(53563, 'https://ror.org/04777gb96', 'no_lang_code', 1, 'https://ror.org/04777gb96 Avraham Pharmaceuticals (Israel)'),
(53564, 'https://ror.org/0479btw97', 'no_lang_code', 1, 'https://ror.org/0479btw97 Zambon (Spain)'),
(53565, 'https://ror.org/0479hmr04', 'en', 1, 'https://ror.org/0479hmr04 Pennsylvania Chamber of Business and Industry'),
(53566, 'https://ror.org/047a10n20', 'en', 1, 'https://ror.org/047a10n20 Muskingum County Community Foundation'),
(53567, 'https://ror.org/047bhz389', 'no_lang_code', 1, 'https://ror.org/047bhz389 MDS Associates (United States)'),
(53568, 'https://ror.org/047bn1w15', 'en', 1, 'https://ror.org/047bn1w15 World Health Organization - Pakistan'),
(53569, 'https://ror.org/047c69t88', 'en', 1, 'https://ror.org/047c69t88 Texas ENT and Allergy'),
(53570, 'https://ror.org/047drby29', 'no_lang_code', 1, 'https://ror.org/047drby29 AfricaBio'),
(53571, 'https://ror.org/047dt4g31', 'no_lang_code', 1, 'https://ror.org/047dt4g31 Meidensha (Japan) ę˜Žé›»čˆŽę Ŗå¼ä¼šē¤¾'),
(53572, 'https://ror.org/047dw3k85', 'en', 1, 'https://ror.org/047dw3k85 Dermatology Associates of Seattle'),
(53573, 'https://ror.org/047h3xn06', 'no_lang_code', 1, 'https://ror.org/047h3xn06 Datastat'),
(53574, 'https://ror.org/047kfm164', 'no_lang_code', 1, 'https://ror.org/047kfm164 DrƤxlmaier (Germany)'),
(53575, 'https://ror.org/047masv79', 'en', 1, 'https://ror.org/047masv79 Georgia Forestry Association'),
(53576, 'https://ror.org/047n17w18', 'nl', 1, 'https://ror.org/047n17w18 Vredeseilanden'),
(53577, 'https://ror.org/047qggy27', 'no_lang_code', 1, 'https://ror.org/047qggy27 Sacmi (Italy)'),
(53578, 'https://ror.org/047sc8865', 'en', 1, 'https://ror.org/047sc8865 Memorial Foundation for Jewish Culture'),
(53579, 'https://ror.org/047svmk39', 'no_lang_code', 1, 'https://ror.org/047svmk39 Trio Medicines (United Kingdom)'),
(53580, 'https://ror.org/047tmvg79', 'en', 1, 'https://ror.org/047tmvg79 American Association of Equine Practitioners'),
(53581, 'https://ror.org/047v0da79', 'en', 1, 'https://ror.org/047v0da79 Denver Arthritis Clinic'),
(53582, 'https://ror.org/047vk1j69', 'en', 1, 'https://ror.org/047vk1j69 Microfinance Opportunities'),
(53583, 'https://ror.org/047vwpj87', 'en', 1, 'https://ror.org/047vwpj87 Third Way'),
(53584, 'https://ror.org/047wq3n50', 'fr', 1, 'https://ror.org/047wq3n50 Clinique Ambroise ParƩ'),
(53585, 'https://ror.org/047y7vc85', 'fr', 1, 'https://ror.org/047y7vc85 Centre de Recherche Dermatologique du QuƩbec MƩtropolitain'),
(53586, 'https://ror.org/047y84421', 'en', 1, 'https://ror.org/047y84421 Medex Healthcare Research'),
(53587, 'https://ror.org/047yek725', 'en', 1, 'https://ror.org/047yek725 Dermatology Specialists'),
(53588, 'https://ror.org/047z1nr02', 'no_lang_code', 1, 'https://ror.org/047z1nr02 Mesoestetic Pharma (Spain)'),
(53589, 'https://ror.org/047z1sn15', 'en', 1, 'https://ror.org/047z1sn15 National Association of Charter School Authorizers'),
(53590, 'https://ror.org/0480rd080', 'it', 1, 'https://ror.org/0480rd080 Azienda UnitĆ  Sanitaria Locale Rimini'),
(53591, 'https://ror.org/04815fk53', 'no_lang_code', 1, 'https://ror.org/04815fk53 Motif BioSciences (United States)'),
(53592, 'https://ror.org/04824wb15', 'en', 1, 'https://ror.org/04824wb15 Picker Institute Europe'),
(53593, 'https://ror.org/0482m7054', 'en', 1, 'https://ror.org/0482m7054 Esther B. Kahn Charitable Foundation'),
(53594, 'https://ror.org/0483shy91', 'en', 1, 'https://ror.org/0483shy91 Bruner Foundation'),
(53595, 'https://ror.org/0486db050', 'no_lang_code', 1, 'https://ror.org/0486db050 Innovaderm (Canada)'),
(53596, 'https://ror.org/04873vb58', 'en', 1, 'https://ror.org/04873vb58 Lynch Foundation'),
(53597, 'https://ror.org/0487pzw37', 'en', 1, 'https://ror.org/0487pzw37 Butz Foundation'),
(53598, 'https://ror.org/048830f73', 'no_lang_code', 1, 'https://ror.org/048830f73 Tetraphase Pharmaceuticals (United States)'),
(53599, 'https://ror.org/048as6j09', 'en', 1, 'https://ror.org/048as6j09 Urology Team'),
(53600, 'https://ror.org/048b5rj23', 'en', 1, 'https://ror.org/048b5rj23 Sacramento Public Library'),
(53601, 'https://ror.org/048g79687', 'en', 1, 'https://ror.org/048g79687 Wild Sheep Foundation'),
(53602, 'https://ror.org/048gafz17', 'en', 1, 'https://ror.org/048gafz17 Ear Medical Group'),
(53603, 'https://ror.org/048gjaw83', 'no_lang_code', 1, 'https://ror.org/048gjaw83 Craft Technologies (United States)'),
(53604, 'https://ror.org/048h18548', 'en', 1, 'https://ror.org/048h18548 Gheens Foundation'),
(53605, 'https://ror.org/048htbx03', 'no_lang_code', 1, 'https://ror.org/048htbx03 Sandvik (Finland)'),
(53606, 'https://ror.org/048jha534', 'en', 1, 'https://ror.org/048jha534 Hillcrest Family Practice'),
(53607, 'https://ror.org/048ndg477', 'no_lang_code', 1, 'https://ror.org/048ndg477 Khanyisa Projects'),
(53608, 'https://ror.org/048qnxy85', 'en', 1, 'https://ror.org/048qnxy85 Pulmonary Associates'),
(53609, 'https://ror.org/048ty4d76', 'en', 1, 'https://ror.org/048ty4d76 Christie''s Place'),
(53610, 'https://ror.org/048vh5r70', 'en', 1, 'https://ror.org/048vh5r70 Civil Society Legislative Advocacy Centre'),
(53611, 'https://ror.org/048w9nb20', 'en', 1, 'https://ror.org/048w9nb20 BlueCross BlueShield of South Carolina Foundation'),
(53612, 'https://ror.org/048yb3886', 'en', 1, 'https://ror.org/048yb3886 Iris & B. Gerald Cantor Foundation'),
(53613, 'https://ror.org/0491edy94', 'no_lang_code', 1, 'https://ror.org/0491edy94 Asarina Pharma (Sweden)'),
(53614, 'https://ror.org/04929g954', 'en', 1, 'https://ror.org/04929g954 Minnesota Colon and Rectal Foundation'),
(53615, 'https://ror.org/0495w3f17', 'en', 1, 'https://ror.org/0495w3f17 Dabas aizsardzības pārvalde Nature Conservation Agency'),
(53616, 'https://ror.org/0496g2a89', 'en', 1, 'https://ror.org/0496g2a89 America’s Job Center of California'),
(53617, 'https://ror.org/0497n8p79', 'en', 1, 'https://ror.org/0497n8p79 Acrobatiq'),
(53618, 'https://ror.org/0498rx510', 'fr', 1, 'https://ror.org/0498rx510 Clinique Les Fontaines'),
(53619, 'https://ror.org/0499qpt59', 'en', 1, 'https://ror.org/0499qpt59 Joyce Foundation'),
(53620, 'https://ror.org/049a8xm46', 'no_lang_code', 1, 'https://ror.org/049a8xm46 Takeda (Belgium)'),
(53621, 'https://ror.org/049ag6g97', 'no_lang_code', 1, 'https://ror.org/049ag6g97 GWT-TUD (Germany)'),
(53622, 'https://ror.org/049c2z606', 'en', 1, 'https://ror.org/049c2z606 National Center for State Courts'),
(53623, 'https://ror.org/049d1sc04', 'en', 1, 'https://ror.org/049d1sc04 Express TV Production'),
(53624, 'https://ror.org/049f4wb20', 'no_lang_code', 1, 'https://ror.org/049f4wb20 Boiron (France)'),
(53625, 'https://ror.org/049fdpz48', 'no_lang_code', 1, 'https://ror.org/049fdpz48 Betagenon (Sweden)'),
(53626, 'https://ror.org/049fh2r80', 'en', 1, 'https://ror.org/049fh2r80 Multiple Sclerosis Foundation'),
(53627, 'https://ror.org/049fn9384', 'en', 1, 'https://ror.org/049fn9384 Brad Kamisky Foundation'),
(53628, 'https://ror.org/049h4jd15', 'no_lang_code', 1, 'https://ror.org/049h4jd15 Biocon (Switzerland)'),
(53629, 'https://ror.org/049kdc638', 'no_lang_code', 1, 'https://ror.org/049kdc638 MaxLinear (United States)'),
(53630, 'https://ror.org/049nmq981', 'no_lang_code', 1, 'https://ror.org/049nmq981 Ziarco (United Kingdom)'),
(53631, 'https://ror.org/049pr8275', 'no_lang_code', 1, 'https://ror.org/049pr8275 AZAD Pharma (Switzerland)'),
(53632, 'https://ror.org/049q63233', 'en', 1, 'https://ror.org/049q63233 Goldman Philanthropic Partnerships'),
(53633, 'https://ror.org/049q7ka57', 'en', 1, 'https://ror.org/049q7ka57 Institute for College Access and Success'),
(53634, 'https://ror.org/049r37a68', 'en', 1, 'https://ror.org/049r37a68 Center for Financial Services Innovation'),
(53635, 'https://ror.org/049rcsq44', 'no_lang_code', 1, 'https://ror.org/049rcsq44 JNC (Japan)'),
(53636, 'https://ror.org/049seyn76', 'en', 1, 'https://ror.org/049seyn76 Pan-Mass Challenge'),
(53637, 'https://ror.org/049tdwn96', 'en', 1, 'https://ror.org/049tdwn96 Beijing NGO Association for International Exchanges åŒ—äŗ¬åø‚ę°‘é—“ē»„ē»‡å›½é™…äŗ¤ęµåä¼š'),
(53638, 'https://ror.org/049zk2110', 'es', 1, 'https://ror.org/049zk2110 Centro de Retina Médica y Quirúrgica'),
(53639, 'https://ror.org/049zxm836', 'sv', 1, 'https://ror.org/049zxm836 IngaBritt och Arne Lundbergs Forskningsstiftelse'),
(53640, 'https://ror.org/04a1a4n63', 'en', 1, 'https://ror.org/04a1a4n63 Alfried Krupp Hospital Alfried Krupp Krankenhaus'),
(53641, 'https://ror.org/04a2ksf56', 'en', 1, 'https://ror.org/04a2ksf56 New England Institute for Neurology and Headache'),
(53642, 'https://ror.org/04a2qqf85', 'no_lang_code', 1, 'https://ror.org/04a2qqf85 Bird Technologies (United States)'),
(53643, 'https://ror.org/04a307s36', 'no_lang_code', 1, 'https://ror.org/04a307s36 Kobelco Construction Machinery (Japan)'),
(53644, 'https://ror.org/04a6f9g28', 'en', 1, 'https://ror.org/04a6f9g28 Comanis Foundation'),
(53645, 'https://ror.org/04a8xgx67', 'en', 1, 'https://ror.org/04a8xgx67 Mercy Corps'),
(53646, 'https://ror.org/04ad3ke38', 'de', 1, 'https://ror.org/04ad3ke38 Fazit-Stiftung'),
(53647, 'https://ror.org/04ad8nm85', 'en', 1, 'https://ror.org/04ad8nm85 Davis Phinney Foundation'),
(53648, 'https://ror.org/04af3ta68', 'en', 1, 'https://ror.org/04af3ta68 Executive Environment Agency'),
(53649, 'https://ror.org/04agh5288', 'de', 1, 'https://ror.org/04agh5288 Unfallkrankenhaus Salzburg'),
(53650, 'https://ror.org/04agzm654', 'en', 1, 'https://ror.org/04agzm654 Oyster Point Family Health Center'),
(53651, 'https://ror.org/04ak1xq87', 'en', 1, 'https://ror.org/04ak1xq87 Kent Richard Hofmann Foundation'),
(53652, 'https://ror.org/04ak25x77', 'en', 1, 'https://ror.org/04ak25x77 ChadTough Foundation'),
(53653, 'https://ror.org/04amy1e98', 'en', 1, 'https://ror.org/04amy1e98 Northwest Territories Public Library Services'),
(53654, 'https://ror.org/04aphzs78', 'en', 1, 'https://ror.org/04aphzs78 Fellowship Fund Inc'),
(53655, 'https://ror.org/04ax0gn06', 'no_lang_code', 1, 'https://ror.org/04ax0gn06 ARaymond (France)'),
(53656, 'https://ror.org/04ay6am55', 'en', 1, 'https://ror.org/04ay6am55 Human Rights Foundation'),
(53657, 'https://ror.org/04aydb922', 'en', 1, 'https://ror.org/04aydb922 Oikos – Cooperation and Development Oikos – Cooperação e Desenvolvimento'),
(53658, 'https://ror.org/04ayhcb48', 'en', 1, 'https://ror.org/04ayhcb48 World Federation of Public Health Associations'),
(53659, 'https://ror.org/04aztm043', 'en', 1, 'https://ror.org/04aztm043 Wyndhurst Counseling Center'),
(53660, 'https://ror.org/04b0her22', 'nl', 1, 'https://ror.org/04b0her22 AZ Delta'),
(53661, 'https://ror.org/04b3sca92', 'en', 1, 'https://ror.org/04b3sca92 American Society of Health Economists'),
(53662, 'https://ror.org/04b3xdy64', 'en', 1, 'https://ror.org/04b3xdy64 Redwood Family Dermatology'),
(53663, 'https://ror.org/04b5h9x78', 'no_lang_code', 1, 'https://ror.org/04b5h9x78 AMO Pharma (United Kingdom)'),
(53664, 'https://ror.org/04b6a1666', 'en', 1, 'https://ror.org/04b6a1666 Fionia Fond'),
(53665, 'https://ror.org/04b6ed127', 'en', 1, 'https://ror.org/04b6ed127 National Association for the Education of Young Children'),
(53666, 'https://ror.org/04b8vmp10', 'en', 1, 'https://ror.org/04b8vmp10 JƦren District Psychiatric Centre JƦren distriktspsykiatriske senter'),
(53667, 'https://ror.org/04b8zcj45', 'no_lang_code', 1, 'https://ror.org/04b8zcj45 Roche (Spain)'),
(53668, 'https://ror.org/04ba8k254', 'no_lang_code', 1, 'https://ror.org/04ba8k254 Viessmann (Germany)'),
(53669, 'https://ror.org/04bbmzr50', 'en', 1, 'https://ror.org/04bbmzr50 International Development Enterprises'),
(53670, 'https://ror.org/04bc0kj52', 'en', 1, 'https://ror.org/04bc0kj52 Fujiwara Natural History Foundation č—¤åŽŸč‡Ŗē„¶ę­“å²č²”å›£'),
(53671, 'https://ror.org/04bda0170', 'en', 1, 'https://ror.org/04bda0170 Chinese People ''s Liberation Army No. 85 Hospital 第85医院'),
(53672, 'https://ror.org/04bdk6464', 'no_lang_code', 1, 'https://ror.org/04bdk6464 Astellas Pharma (Germany)'),
(53673, 'https://ror.org/04befzh73', 'no_lang_code', 1, 'https://ror.org/04befzh73 African Fertilizer and Agribusiness Partnership'),
(53674, 'https://ror.org/04bekvf09', 'en', 1, 'https://ror.org/04bekvf09 Community Research Initiative'),
(53675, 'https://ror.org/04bfv0919', 'en', 1, 'https://ror.org/04bfv0919 Tower Cancer Research Foundation'),
(53676, 'https://ror.org/04bjtaq20', 'en', 1, 'https://ror.org/04bjtaq20 British Society For Parasitology'),
(53677, 'https://ror.org/04bkwvr55', 'en', 1, 'https://ror.org/04bkwvr55 National Foundation for the Deaf'),
(53678, 'https://ror.org/04bkyn088', 'en', 1, 'https://ror.org/04bkyn088 Imaging the World'),
(53679, 'https://ror.org/04bn2q369', 'no_lang_code', 1, 'https://ror.org/04bn2q369 Smiths Group (United States)'),
(53680, 'https://ror.org/04bp98c14', 'no_lang_code', 1, 'https://ror.org/04bp98c14 Oncopeptides (Sweden)'),
(53681, 'https://ror.org/04bpt8p43', 'en', 1, 'https://ror.org/04bpt8p43 Shenzhen Luohu People''s Hospital ę·±åœ³ē½—ę¹–åŒŗäŗŗę°‘åŒ»é™¢'),
(53682, 'https://ror.org/04bpvbv63', 'en', 1, 'https://ror.org/04bpvbv63 First Fruit'),
(53683, 'https://ror.org/04br7va83', 'en', 1, 'https://ror.org/04br7va83 KIPP LA Schools'),
(53684, 'https://ror.org/04bre5f76', 'en', 1, 'https://ror.org/04bre5f76 Invergowrie Foundation'),
(53685, 'https://ror.org/04btcdy83', 'en', 1, 'https://ror.org/04btcdy83 American Association of Plastic Surgeons'),
(53686, 'https://ror.org/04btebx51', 'pl', 1, 'https://ror.org/04btebx51 Centrum Aktywności Społecznej Pryzmat'),
(53687, 'https://ror.org/04bv91s44', 'no_lang_code', 1, 'https://ror.org/04bv91s44 Alfa Wassermann (Poland)'),
(53688, 'https://ror.org/04bvnf226', 'pl', 1, 'https://ror.org/04bvnf226 Samodzielny Publiczny Zakład Opieki Zdrowotnej w Lubartowie'),
(53689, 'https://ror.org/04bx5yd89', 'en', 1, 'https://ror.org/04bx5yd89 Water Sanitation and Hygiene Institute'),
(53690, 'https://ror.org/04bxj6908', 'no_lang_code', 1, 'https://ror.org/04bxj6908 SleepMed'),
(53691, 'https://ror.org/04bxnbd97', 'en', 1, 'https://ror.org/04bxnbd97 IVI Sevilla Clinic'),
(53692, 'https://ror.org/04byqhw79', 'no_lang_code', 1, 'https://ror.org/04byqhw79 Kuros Biosciences (Switzerland)'),
(53693, 'https://ror.org/04c3fxx05', 'en', 1, 'https://ror.org/04c3fxx05 Christopher Ricardo Cystic Fibrosis Foundation'),
(53694, 'https://ror.org/04c3ke011', 'en', 1, 'https://ror.org/04c3ke011 Youth Leadership Institute'),
(53695, 'https://ror.org/04c4s9b25', 'en', 1, 'https://ror.org/04c4s9b25 Seattle Center Foundation'),
(53696, 'https://ror.org/04c5m1z45', 'no_lang_code', 1, 'https://ror.org/04c5m1z45 Diomed (United Kingdom)'),
(53697, 'https://ror.org/04c8t3f61', 'en', 1, 'https://ror.org/04c8t3f61 Foundation Milena Carvajal - Pro-Kartagener'),
(53698, 'https://ror.org/04c9vvv38', 'en', 1, 'https://ror.org/04c9vvv38 Collins Medical Trust'),
(53699, 'https://ror.org/04caf4057', 'no_lang_code', 1, 'https://ror.org/04caf4057 Frontier Environmental Technology (United States)'),
(53700, 'https://ror.org/04cb0cm64', 'pl', 1, 'https://ror.org/04cb0cm64 Wojewódzki Szpital Obserwacyjno-Zakaźny im. Tadeusza Browicza w Bydgoszczy'),
(53701, 'https://ror.org/04cc1bd73', 'en', 1, 'https://ror.org/04cc1bd73 Jeffrey Modell Foundation'),
(53702, 'https://ror.org/04ccc4h18', 'en', 1, 'https://ror.org/04ccc4h18 Wajir County Government'),
(53703, 'https://ror.org/04cext840', 'en', 1, 'https://ror.org/04cext840 Arizona Heart Hospital'),
(53704, 'https://ror.org/04cf6r544', 'en', 1, 'https://ror.org/04cf6r544 Mayday Fund'),
(53705, 'https://ror.org/04cg7vv67', 'en', 1, 'https://ror.org/04cg7vv67 Innovation Center Denmark'),
(53706, 'https://ror.org/04cjdmd14', 'de', 1, 'https://ror.org/04cjdmd14 Grachtenhaus-Apotheke'),
(53707, 'https://ror.org/04ck29617', 'no_lang_code', 1, 'https://ror.org/04ck29617 GN Store Nord (Denmark)'),
(53708, 'https://ror.org/04cne0906', 'en', 1, 'https://ror.org/04cne0906 Sacramento County Office of Education'),
(53709, 'https://ror.org/04cnxht64', 'en', 1, 'https://ror.org/04cnxht64 Grass Foundation'),
(53710, 'https://ror.org/04cnyg561', 'en', 1, 'https://ror.org/04cnyg561 Adult Anxiety Clinic of Temple'),
(53711, 'https://ror.org/04cpe0x97', 'en', 1, 'https://ror.org/04cpe0x97 BMI Foundation'),
(53712, 'https://ror.org/04cqcf577', 'en', 1, 'https://ror.org/04cqcf577 Small Enterprise Education and Promotion Network'),
(53713, 'https://ror.org/04cr37s66', 'nl', 1, 'https://ror.org/04cr37s66 Borstkanker Onderzoek Groep'),
(53714, 'https://ror.org/04ct6nr93', 'en', 1, 'https://ror.org/04ct6nr93 Innovations for Poverty Action'),
(53715, 'https://ror.org/04cv1dy58', 'no_lang_code', 1, 'https://ror.org/04cv1dy58 Maire Tecnimont (Netherlands)'),
(53716, 'https://ror.org/04cy3qv12', 'en', 1, 'https://ror.org/04cy3qv12 Connecticut Health Foundation'),
(53717, 'https://ror.org/04cypcj54', 'en', 1, 'https://ror.org/04cypcj54 Red Cross Society of China äø­å›½ēŗ¢åå­—ä¼š'),
(53718, 'https://ror.org/04d00t593', 'en', 1, 'https://ror.org/04d00t593 Irish Hospice Foundation'),
(53719, 'https://ror.org/04d1vhw60', 'en', 1, 'https://ror.org/04d1vhw60 Rongcheng City People''s Hospital č£ęˆäŗŗę°‘åŒ»é™¢'),
(53720, 'https://ror.org/04d29kk52', 'en', 1, 'https://ror.org/04d29kk52 Academy of Architecture for Health Foundation'),
(53721, 'https://ror.org/04d4fer41', 'en', 1, 'https://ror.org/04d4fer41 Parkinson''s Queensland'),
(53722, 'https://ror.org/04d8ddk13', 'no_lang_code', 1, 'https://ror.org/04d8ddk13 ProMOS Technologies (Taiwan)'),
(53723, 'https://ror.org/04d9k7p50', 'en', 1, 'https://ror.org/04d9k7p50 Genesis HealthCare'),
(53724, 'https://ror.org/04dagjw98', 'en', 1, 'https://ror.org/04dagjw98 Felix Scholarship'),
(53725, 'https://ror.org/04db0ec72', 'fr', 1, 'https://ror.org/04db0ec72 Groupe Francophone des MyƩlodysplasies'),
(53726, 'https://ror.org/04dbf1y97', 'en', 1, 'https://ror.org/04dbf1y97 Bratya Daskalovi Municipality ŠžŠ±Ń‰ŠøŠ½Š° Š‘Ń€Š°Ń‚Ń Даскалови'),
(53727, 'https://ror.org/04dbfz605', 'en', 1, 'https://ror.org/04dbfz605 Educational Foundation for Women in Accounting'),
(53728, 'https://ror.org/04dchsd96', 'en', 1, 'https://ror.org/04dchsd96 Institutul RomĆ¢n de Ştiinţă şi Tehnologie Romanian Institute of Science and Technology'),
(53729, 'https://ror.org/04ddjg212', 'en', 1, 'https://ror.org/04ddjg212 Jewish Child & Family Services'),
(53730, 'https://ror.org/04dm2wt12', 'en', 1, 'https://ror.org/04dm2wt12 Northwest Parkinson’s Foundation'),
(53731, 'https://ror.org/04dneqm75', 'de', 1, 'https://ror.org/04dneqm75 Augenklinik UniversitƤtsallee'),
(53732, 'https://ror.org/04dqbhd05', 'en', 1, 'https://ror.org/04dqbhd05 Oprah''s Angel Network'),
(53733, 'https://ror.org/04dr1y470', 'no_lang_code', 1, 'https://ror.org/04dr1y470 Welch Allyn (United States)'),
(53734, 'https://ror.org/04dyest60', 'no_lang_code', 1, 'https://ror.org/04dyest60 Moulinex (France)'),
(53735, 'https://ror.org/04dywym46', 'es', 1, 'https://ror.org/04dywym46 Fundación Hospital Provincial de Castellón'),
(53736, 'https://ror.org/04dzaw261', 'pt', 1, 'https://ror.org/04dzaw261 Hospital do Coração'),
(53737, 'https://ror.org/04dzfqx38', 'en', 1, 'https://ror.org/04dzfqx38 Internet Society'),
(53738, 'https://ror.org/04dzm3847', 'nl', 1, 'https://ror.org/04dzm3847 Stichting Kind en Groei'),
(53739, 'https://ror.org/04e29rd57', 'no_lang_code', 1, 'https://ror.org/04e29rd57 Exalenz Bioscience (Israel)'),
(53740, 'https://ror.org/04e2pep48', 'en', 1, 'https://ror.org/04e2pep48 Henry County Community Foundation'),
(53741, 'https://ror.org/04e4db319', 'no_lang_code', 1, 'https://ror.org/04e4db319 Infineon Technologies (United States)'),
(53742, 'https://ror.org/04e4r2k23', 'en', 1, 'https://ror.org/04e4r2k23 Professional Educator Standards Board'),
(53743, 'https://ror.org/04e5eq320', 'en', 1, 'https://ror.org/04e5eq320 Professional Education and Research Institute'),
(53744, 'https://ror.org/04e61md13', 'no_lang_code', 1, 'https://ror.org/04e61md13 Tokuda Hospital ТокуГа Болница Š”Š¾Ń„ŠøŃ'),
(53745, 'https://ror.org/04e6qgn10', 'no_lang_code', 1, 'https://ror.org/04e6qgn10 AstraZeneca (Italy)'),
(53746, 'https://ror.org/04e7afm38', 'en', 1, 'https://ror.org/04e7afm38 Gainesville Obstetrics & Gynecology'),
(53747, 'https://ror.org/04e8gf053', 'no_lang_code', 1, 'https://ror.org/04e8gf053 Amphenol (Germany)'),
(53748, 'https://ror.org/04e8m0166', 'pt', 1, 'https://ror.org/04e8m0166 Sport Club Corinthians Paulista'),
(53749, 'https://ror.org/04e9jh270', 'no_lang_code', 1, 'https://ror.org/04e9jh270 Sanol (Germany)'),
(53750, 'https://ror.org/04eb71689', 'no_lang_code', 1, 'https://ror.org/04eb71689 PathAI (United States)'),
(53751, 'https://ror.org/04eba0590', 'en', 1, 'https://ror.org/04eba0590 Veracity Clinical Research'),
(53752, 'https://ror.org/04edq9h05', 'en', 1, 'https://ror.org/04edq9h05 Cure Starts Now Foundation'),
(53753, 'https://ror.org/04edz9p52', 'no_lang_code', 1, 'https://ror.org/04edz9p52 Thea (France)'),
(53754, 'https://ror.org/04efaep75', 'en', 1, 'https://ror.org/04efaep75 Bergen Research Foundation Bergens Forskningsstiftelse'),
(53755, 'https://ror.org/04eh49149', 'en', 1, 'https://ror.org/04eh49149 Optimed Eye and Laser Clinic'),
(53756, 'https://ror.org/04eh92011', 'en', 1, 'https://ror.org/04eh92011 IMB Bank'),
(53757, 'https://ror.org/04emgh024', 'en', 1, 'https://ror.org/04emgh024 Seattle Indian Health Board'),
(53758, 'https://ror.org/04en42k10', 'en', 1, 'https://ror.org/04en42k10 Somdet Chaopraya Institute of Psychiatry ąøŖąø”ą¹€ąø”ą¹‡ąøˆąøŖąø–ąø²ąøšąø±ąø™ąøˆąø“ąø•ą¹€ąø§ąøŠąøØąø²ąøŖąø•ąø£ą¹Œ'),
(53759, 'https://ror.org/04es60x64', 'en', 1, 'https://ror.org/04es60x64 Cure Kids'),
(53760, 'https://ror.org/04ewjy824', 'en', 1, 'https://ror.org/04ewjy824 Biomass Controls'),
(53761, 'https://ror.org/04exar519', 'en', 1, 'https://ror.org/04exar519 Moss Memorial Health Clinic'),
(53762, 'https://ror.org/04eyqwn57', 'no_lang_code', 1, 'https://ror.org/04eyqwn57 Ethypharm (France)'),
(53763, 'https://ror.org/04f09q842', 'en', 1, 'https://ror.org/04f09q842 Norske Kvinners Sanitetsforening Norwegian Womens Public Health Association'),
(53764, 'https://ror.org/04f10rk67', 'en', 1, 'https://ror.org/04f10rk67 Virology Education'),
(53765, 'https://ror.org/04f13zs55', 'en', 1, 'https://ror.org/04f13zs55 National Association of Medicaid Directors'),
(53766, 'https://ror.org/04f142133', 'en', 1, 'https://ror.org/04f142133 North Shore Diabetes and Endocrine Associates'),
(53767, 'https://ror.org/04f195d63', 'de', 1, 'https://ror.org/04f195d63 Fritz Bender Stiftung'),
(53768, 'https://ror.org/04f45q833', 'en', 1, 'https://ror.org/04f45q833 American Society of Consultant Pharmacists'),
(53769, 'https://ror.org/04f4qr343', 'en', 1, 'https://ror.org/04f4qr343 Cleft Palate Foundation'),
(53770, 'https://ror.org/04f5h5n26', 'en', 1, 'https://ror.org/04f5h5n26 Universal Health Care Action Network'),
(53771, 'https://ror.org/04f62cx68', 'en', 1, 'https://ror.org/04f62cx68 Carmel Mountain Vision Care'),
(53772, 'https://ror.org/04f8tsk17', 'en', 1, 'https://ror.org/04f8tsk17 Canavan Research Foundation'),
(53773, 'https://ror.org/04fafj987', 'en', 1, 'https://ror.org/04fafj987 Adenoid Cystic Carcinoma Research Foundation'),
(53774, 'https://ror.org/04fbzr589', 'no_lang_code', 1, 'https://ror.org/04fbzr589 Canon (Germany)'),
(53775, 'https://ror.org/04fdcba46', 'en', 1, 'https://ror.org/04fdcba46 National Institute for Staff and Organizational Development'),
(53776, 'https://ror.org/04febt404', 'en', 1, 'https://ror.org/04febt404 Fahs-Beck Fund for Research and Experimentation'),
(53777, 'https://ror.org/04ffexa42', 'en', 1, 'https://ror.org/04ffexa42 Family Care Foundation'),
(53778, 'https://ror.org/04fgnxn93', 'no_lang_code', 1, 'https://ror.org/04fgnxn93 Innothera (France)'),
(53779, 'https://ror.org/04fh73803', 'no_lang_code', 1, 'https://ror.org/04fh73803 Alio Medica (Poland)'),
(53780, 'https://ror.org/04fhq1b19', 'en', 1, 'https://ror.org/04fhq1b19 St. Cloud Orthopedic Associates'),
(53781, 'https://ror.org/04fhtk651', 'no_lang_code', 1, 'https://ror.org/04fhtk651 Hettich (Germany)'),
(53782, 'https://ror.org/04fjdpx11', 'en', 1, 'https://ror.org/04fjdpx11 Mahila Abhivruddhi Society, Andhra Pradesh'),
(53783, 'https://ror.org/04fjhg511', 'en', 1, 'https://ror.org/04fjhg511 Goizueta Foundation'),
(53784, 'https://ror.org/04fkd7w53', 'it', 1, 'https://ror.org/04fkd7w53 Fondazione Cariparma'),
(53785, 'https://ror.org/04fkf6297', 'en', 1, 'https://ror.org/04fkf6297 Autism CRC'),
(53786, 'https://ror.org/04fqvjv52', 'no_lang_code', 1, 'https://ror.org/04fqvjv52 Roivant Sciences (United States)'),
(53787, 'https://ror.org/04fr3hk40', 'no_lang_code', 1, 'https://ror.org/04fr3hk40 KGK Synergize (Canada)'),
(53788, 'https://ror.org/04frvr969', 'en', 1, 'https://ror.org/04frvr969 Colossian Forum'),
(53789, 'https://ror.org/04fvvze29', 'no_lang_code', 1, 'https://ror.org/04fvvze29 Besins Healthcare (Belgium)'),
(53790, 'https://ror.org/04fvydq80', 'no_lang_code', 1, 'https://ror.org/04fvydq80 RadioMedic (Czechia)'),
(53791, 'https://ror.org/04fwr3777', 'en', 1, 'https://ror.org/04fwr3777 International Dermatology Research'),
(53792, 'https://ror.org/04fy00g66', 'en', 1, 'https://ror.org/04fy00g66 Dawes Fretzin Clinical Research Group'),
(53793, 'https://ror.org/04fzmt155', 'no_lang_code', 1, 'https://ror.org/04fzmt155 Renovo (United Kingdom)'),
(53794, 'https://ror.org/04fzt5y42', 'en', 1, 'https://ror.org/04fzt5y42 Crystal Clinic Orthopedic Center'),
(53795, 'https://ror.org/04g0t7770', 'no_lang_code', 1, 'https://ror.org/04g0t7770 InfectoPharm (Germany)'),
(53796, 'https://ror.org/04g18y077', 'no_lang_code', 1, 'https://ror.org/04g18y077 Inwatech (Hungary) Inwatech KƶrnyezetvƩdelmi Kft'),
(53797, 'https://ror.org/04g219d41', 'en', 1, 'https://ror.org/04g219d41 Advanced Neurosciences Institute'),
(53798, 'https://ror.org/04g2fst78', 'pl', 1, 'https://ror.org/04g2fst78 InterLab Poznan'),
(53799, 'https://ror.org/04g2zk759', 'no_lang_code', 1, 'https://ror.org/04g2zk759 Pharmalink (Sweden)'),
(53800, 'https://ror.org/04g380834', 'sv', 1, 'https://ror.org/04g380834 Beroendecentrum Stockholm'),
(53801, 'https://ror.org/04g3rsw26', 'no_lang_code', 1, 'https://ror.org/04g3rsw26 Getrag (Germany)'),
(53802, 'https://ror.org/04g43tp09', 'no_lang_code', 1, 'https://ror.org/04g43tp09 Well Told Story (Kenya)'),
(53803, 'https://ror.org/04g59q124', 'en', 1, 'https://ror.org/04g59q124 Skillpoint Alliance'),
(53804, 'https://ror.org/04g5yrp52', 'en', 1, 'https://ror.org/04g5yrp52 A-T Children''s Project'),
(53805, 'https://ror.org/04g7j1r38', 'en', 1, 'https://ror.org/04g7j1r38 Medical Research Associates'),
(53806, 'https://ror.org/04gec5v25', 'it', 1, 'https://ror.org/04gec5v25 Associazione Italiana Rett'),
(53807, 'https://ror.org/04gfxtm83', 'en', 1, 'https://ror.org/04gfxtm83 Mount Zion Health Fund'),
(53808, 'https://ror.org/04gfzba65', 'en', 1, 'https://ror.org/04gfzba65 British Society for the History of Science'),
(53809, 'https://ror.org/04gg2hw16', 'en', 1, 'https://ror.org/04gg2hw16 International Game Developers Association Foundation'),
(53810, 'https://ror.org/04gh6x779', 'de', 1, 'https://ror.org/04gh6x779 Caritas-Krankenhaus Bad Mergentheim'),
(53811, 'https://ror.org/04gka5c82', 'pt', 1, 'https://ror.org/04gka5c82 Hospital Fernandes TƔvora'),
(53812, 'https://ror.org/04gp21q48', 'en', 1, 'https://ror.org/04gp21q48 Slovinski National Park Słowiński Park Narodowy'),
(53813, 'https://ror.org/04gpj0s68', 'no_lang_code', 1, 'https://ror.org/04gpj0s68 Dimension Therapeutics (United States)'),
(53814, 'https://ror.org/04grfq760', 'en', 1, 'https://ror.org/04grfq760 TDX Construction'),
(53815, 'https://ror.org/04gte0y44', 'no_lang_code', 1, 'https://ror.org/04gte0y44 Ahlstrom-Munksjƶ (Finland)'),
(53816, 'https://ror.org/04gvvdd93', 'no_lang_code', 1, 'https://ror.org/04gvvdd93 Advicenne Pharma (France)'),
(53817, 'https://ror.org/04gw71m56', 'en', 1, 'https://ror.org/04gw71m56 Law Foundation of Nova Scotia'),
(53818, 'https://ror.org/04gx6f055', 'en', 1, 'https://ror.org/04gx6f055 Good Samaritan Society'),
(53819, 'https://ror.org/04gxyj147', 'en', 1, 'https://ror.org/04gxyj147 M S Ramaiah Memorial Hospital ą²°ą²¾ą²®ą²Æą³ą²Æ ą²øą³ą²®ą²¾ą²°ą²• ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(53820, 'https://ror.org/04h0zjx60', 'en', 1, 'https://ror.org/04h0zjx60 George Institute for Global Health'),
(53821, 'https://ror.org/04h1j6452', 'no_lang_code', 1, 'https://ror.org/04h1j6452 Keilir Academy'),
(53822, 'https://ror.org/04h288p25', 'en', 1, 'https://ror.org/04h288p25 Poynter Institute for Media Studies'),
(53823, 'https://ror.org/04h2hh388', 'no_lang_code', 1, 'https://ror.org/04h2hh388 Rockwool (Denmark)'),
(53824, 'https://ror.org/04h7fev25', 'fr', 1, 'https://ror.org/04h7fev25 Fondation Bertarelli'),
(53825, 'https://ror.org/04h7h2h10', 'no_lang_code', 1, 'https://ror.org/04h7h2h10 Conatus Pharmaceuticals (United States)'),
(53826, 'https://ror.org/04h7jac65', 'en', 1, 'https://ror.org/04h7jac65 ScienceSites'),
(53827, 'https://ror.org/04h97jj05', 'en', 1, 'https://ror.org/04h97jj05 Blue Shield of California Foundation'),
(53828, 'https://ror.org/04h9m9r06', 'no_lang_code', 1, 'https://ror.org/04h9m9r06 Ergomed Clinical Research (United Kingdom)'),
(53829, 'https://ror.org/04habne08', 'no_lang_code', 1, 'https://ror.org/04habne08 Applied Medical Resources (United States)'),
(53830, 'https://ror.org/04hb59q25', 'en', 1, 'https://ror.org/04hb59q25 Cancer Aid and Research Fund'),
(53831, 'https://ror.org/04hb8c581', 'no_lang_code', 1, 'https://ror.org/04hb8c581 CTI BioPharma (Italy)'),
(53832, 'https://ror.org/04hbteb59', 'en', 1, 'https://ror.org/04hbteb59 Camargo Foundation'),
(53833, 'https://ror.org/04hfyyk07', 'en', 1, 'https://ror.org/04hfyyk07 Canadian Foundation for AIDS Research Fondation Canadienne de Recherche sur le Sida'),
(53834, 'https://ror.org/04hg0hr43', 'en', 1, 'https://ror.org/04hg0hr43 Danish Breast Cancer Cooperative Group'),
(53835, 'https://ror.org/04hh34543', 'no_lang_code', 1, 'https://ror.org/04hh34543 Doosan (United States)'),
(53836, 'https://ror.org/04hm6wz53', 'en', 1, 'https://ror.org/04hm6wz53 San Diego Cardiac Center'),
(53837, 'https://ror.org/04hmpdq89', 'en', 1, 'https://ror.org/04hmpdq89 Eye Disease Foundation Fondation des maladies de l''oeil'),
(53838, 'https://ror.org/04hnnkw05', 'en', 1, 'https://ror.org/04hnnkw05 Interstitial Cystitis Association'),
(53839, 'https://ror.org/04hrzse50', 'en', 1, 'https://ror.org/04hrzse50 Myers Street Family Medical Practice'),
(53840, 'https://ror.org/04hsgm631', 'en', 1, 'https://ror.org/04hsgm631 Beaver County Foundation'),
(53841, 'https://ror.org/04hw5vb27', 'en', 1, 'https://ror.org/04hw5vb27 Omega Medical Research'),
(53842, 'https://ror.org/04hzpm856', 'en', 1, 'https://ror.org/04hzpm856 Community Foundation of North Central Washington'),
(53843, 'https://ror.org/04j0gge90', 'no_lang_code', 1, 'https://ror.org/04j0gge90 Walmart (United States)'),
(53844, 'https://ror.org/04j0zpz40', 'en', 1, 'https://ror.org/04j0zpz40 Dalberg Global Development Advisors'),
(53845, 'https://ror.org/04j18qv50', 'en', 1, 'https://ror.org/04j18qv50 Association for Academic Surgery Foundation'),
(53846, 'https://ror.org/04j24r737', 'no_lang_code', 1, 'https://ror.org/04j24r737 Huf Hülsbeck & Fürst (Germany)'),
(53847, 'https://ror.org/04j2fjp47', 'no_lang_code', 1, 'https://ror.org/04j2fjp47 Clovis Oncology (United Kingdom)'),
(53848, 'https://ror.org/04j2hyd53', 'en', 1, 'https://ror.org/04j2hyd53 eHealth Initiative'),
(53849, 'https://ror.org/04j485w94', 'en', 1, 'https://ror.org/04j485w94 Allergy Associates Research Center'),
(53850, 'https://ror.org/04j4csk75', 'en', 1, 'https://ror.org/04j4csk75 Canadian Nurses Foundation La Fondation des InfirmiĆØres et Infirmiers du Canada'),
(53851, 'https://ror.org/04j8wah18', 'fr', 1, 'https://ror.org/04j8wah18 Fondation Charcot'),
(53852, 'https://ror.org/04j9je195', 'en', 1, 'https://ror.org/04j9je195 Berks County Community Foundation'),
(53853, 'https://ror.org/04j9kx436', 'en', 1, 'https://ror.org/04j9kx436 Chrysalis'),
(53854, 'https://ror.org/04ja5n810', 'en', 1, 'https://ror.org/04ja5n810 Global Association of Risk Professionals'),
(53855, 'https://ror.org/04jaxp997', 'en', 1, 'https://ror.org/04jaxp997 Austrian Economics Center'),
(53856, 'https://ror.org/04jcfjz75', 'en', 1, 'https://ror.org/04jcfjz75 Epilepsy Foundation'),
(53857, 'https://ror.org/04jck5r17', 'en', 1, 'https://ror.org/04jck5r17 Elsass Fonden Elsass Foundation'),
(53858, 'https://ror.org/04jd9ff79', 'en', 1, 'https://ror.org/04jd9ff79 Acoustics Research Institute Institut für Schallforschung'),
(53859, 'https://ror.org/04jftwm50', 'en', 1, 'https://ror.org/04jftwm50 Free the Slaves'),
(53860, 'https://ror.org/04jg41g64', 'fr', 1, 'https://ror.org/04jg41g64 Clinique ClƩmentville'),
(53861, 'https://ror.org/04jh85880', 'en', 1, 'https://ror.org/04jh85880 National League for Nursing'),
(53862, 'https://ror.org/04jjbpq08', 'en', 1, 'https://ror.org/04jjbpq08 Cares Foundation'),
(53863, 'https://ror.org/04jjqdb31', 'en', 1, 'https://ror.org/04jjqdb31 Durfee Foundation'),
(53864, 'https://ror.org/04jnrz567', 'no_lang_code', 1, 'https://ror.org/04jnrz567 Siegenia (Germany)'),
(53865, 'https://ror.org/04jpbn971', 'no_lang_code', 1, 'https://ror.org/04jpbn971 Strix (Isle of Man)'),
(53866, 'https://ror.org/04jpe7h32', 'en', 1, 'https://ror.org/04jpe7h32 National Endowment for Democracy'),
(53867, 'https://ror.org/04jpf9990', 'en', 1, 'https://ror.org/04jpf9990 Kowa Life Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗ čˆˆå’Œē”Ÿå‘½ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(53868, 'https://ror.org/04jq8gw64', 'en', 1, 'https://ror.org/04jq8gw64 Beckman Coulter Foundation'),
(53869, 'https://ror.org/04jrb3091', 'en', 1, 'https://ror.org/04jrb3091 Institute for Aegean Prehistory'),
(53870, 'https://ror.org/04jv11d86', 'en', 1, 'https://ror.org/04jv11d86 Australasian Centre for Italian Studies'),
(53871, 'https://ror.org/04jvsvx56', 'en', 1, 'https://ror.org/04jvsvx56 St. Francis Community Hospital'),
(53872, 'https://ror.org/04jw6ed22', 'en', 1, 'https://ror.org/04jw6ed22 S.L. Raheja Hospital'),
(53873, 'https://ror.org/04jwn5v63', 'en', 1, 'https://ror.org/04jwn5v63 Clinical Research Associates'),
(53874, 'https://ror.org/04jz7er86', 'en', 1, 'https://ror.org/04jz7er86 Greater Greenbrier Valley Community Foundation'),
(53875, 'https://ror.org/04jzqkn30', 'en', 1, 'https://ror.org/04jzqkn30 Ursuline Academy of Dallas'),
(53876, 'https://ror.org/04k1aq759', 'no_lang_code', 1, 'https://ror.org/04k1aq759 Univercells (Belgium)'),
(53877, 'https://ror.org/04k1gqg30', 'en', 1, 'https://ror.org/04k1gqg30 Shalby Hospitals'),
(53878, 'https://ror.org/04k2v7662', 'no_lang_code', 1, 'https://ror.org/04k2v7662 Acorda Therapeutics (Switzerland)');
INSERT INTO `rors` VALUES
(53879, 'https://ror.org/04k3g6751', 'en', 1, 'https://ror.org/04k3g6751 Northeastern Eye Institute'),
(53880, 'https://ror.org/04k3g6v88', 'en', 1, 'https://ror.org/04k3g6v88 Ear Institute of Chicago'),
(53881, 'https://ror.org/04k3tc204', 'en', 1, 'https://ror.org/04k3tc204 European Uro Oncology Group'),
(53882, 'https://ror.org/04k47ec04', 'en', 1, 'https://ror.org/04k47ec04 Yantai Laiyang Central Hospital ēƒŸå°čŽ±é˜³äø­åæƒåŒ»é™¢'),
(53883, 'https://ror.org/04k4knw56', 'en', 1, 'https://ror.org/04k4knw56 LifeWorks Northwest'),
(53884, 'https://ror.org/04k8pqm06', 'no_lang_code', 1, 'https://ror.org/04k8pqm06 Lycera (United States)'),
(53885, 'https://ror.org/04k8z2c06', 'en', 1, 'https://ror.org/04k8z2c06 Daviess County Public Schools'),
(53886, 'https://ror.org/04kanse05', 'en', 1, 'https://ror.org/04kanse05 Clinical Trial Network'),
(53887, 'https://ror.org/04kd6fb74', 'no_lang_code', 1, 'https://ror.org/04kd6fb74 TrichoCare (United Kingdom)'),
(53888, 'https://ror.org/04kdz8318', 'no_lang_code', 1, 'https://ror.org/04kdz8318 Koncentra (Sweden)'),
(53889, 'https://ror.org/04ke50w30', 'no_lang_code', 1, 'https://ror.org/04ke50w30 ViiV Healthcare (Spain)'),
(53890, 'https://ror.org/04kf79x57', 'en', 1, 'https://ror.org/04kf79x57 John E. Fogarty Foundation'),
(53891, 'https://ror.org/04kfydn45', 'en', 1, 'https://ror.org/04kfydn45 Cato Institute'),
(53892, 'https://ror.org/04kgp1379', 'it', 1, 'https://ror.org/04kgp1379 Azienda-Unita'' Sanitaria Locale Di Cesena'),
(53893, 'https://ror.org/04kmayk86', 'no_lang_code', 1, 'https://ror.org/04kmayk86 Von Ardenne (Germany)'),
(53894, 'https://ror.org/04knmzc94', 'no_lang_code', 1, 'https://ror.org/04knmzc94 Faro Technologies (United States)'),
(53895, 'https://ror.org/04kp8j175', 'en', 1, 'https://ror.org/04kp8j175 Washington News Council'),
(53896, 'https://ror.org/04kq54507', 'no_lang_code', 1, 'https://ror.org/04kq54507 Fujikin (Japan)'),
(53897, 'https://ror.org/04kqbrq68', 'no_lang_code', 1, 'https://ror.org/04kqbrq68 Novartis (Hungary)'),
(53898, 'https://ror.org/04krn2974', 'en', 1, 'https://ror.org/04krn2974 American Hellenic Educational Progressive Association'),
(53899, 'https://ror.org/04kywek22', 'en', 1, 'https://ror.org/04kywek22 Grays Harbor Community Foundation'),
(53900, 'https://ror.org/04kyz2p97', 'no_lang_code', 1, 'https://ror.org/04kyz2p97 NeRRe Therapeutics (United Kingdom)'),
(53901, 'https://ror.org/04kzqr274', 'en', 1, 'https://ror.org/04kzqr274 Ulyanovsk Regional Oncology Center Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ клинический онкологический Гиспансер'),
(53902, 'https://ror.org/04m136694', 'en', 1, 'https://ror.org/04m136694 PUC Schools'),
(53903, 'https://ror.org/04m1bn674', 'fr', 1, 'https://ror.org/04m1bn674 Association pour la Recherche de ThƩrapeutiques Innovantes en CancƩrologie'),
(53904, 'https://ror.org/04m1pcy54', 'en', 1, 'https://ror.org/04m1pcy54 Carl Wilson Foundation'),
(53905, 'https://ror.org/04m1zdk85', 'en', 1, 'https://ror.org/04m1zdk85 Greater Houston Community Foundation'),
(53906, 'https://ror.org/04m20gp14', 'no_lang_code', 1, 'https://ror.org/04m20gp14 Walter Reist Holding (Switzerland)'),
(53907, 'https://ror.org/04m25zw74', 'no_lang_code', 1, 'https://ror.org/04m25zw74 Kalliopeia Foundation'),
(53908, 'https://ror.org/04m3t9183', 'en', 1, 'https://ror.org/04m3t9183 Hasler Foundation Hasler Stiftung'),
(53909, 'https://ror.org/04m492h23', 'no_lang_code', 1, 'https://ror.org/04m492h23 BOS (Germany)'),
(53910, 'https://ror.org/04m4mvs85', 'en', 1, 'https://ror.org/04m4mvs85 Southern Eye Associates'),
(53911, 'https://ror.org/04m4td435', 'en', 1, 'https://ror.org/04m4td435 Christie''s'),
(53912, 'https://ror.org/04m6sw526', 'en', 1, 'https://ror.org/04m6sw526 Australian Society of Exploration Geophysicists'),
(53913, 'https://ror.org/04m8gzf13', 'en', 1, 'https://ror.org/04m8gzf13 Berks County Public Libraries'),
(53914, 'https://ror.org/04m8me169', 'en', 1, 'https://ror.org/04m8me169 ARISE The Scoliosis Research Trust'),
(53915, 'https://ror.org/04m8yw794', 'en', 1, 'https://ror.org/04m8yw794 DaVita Clinical Research (United States)'),
(53916, 'https://ror.org/04m9zwa74', 'de', 1, 'https://ror.org/04m9zwa74 Claussen Simon Stiftung'),
(53917, 'https://ror.org/04ma89d43', 'no_lang_code', 1, 'https://ror.org/04ma89d43 Socionext (Japan) ę Ŗå¼ä¼šē¤¾ć‚½ć‚·ć‚Ŗćƒć‚Æć‚¹ćƒˆ'),
(53918, 'https://ror.org/04mc1sw92', 'en', 1, 'https://ror.org/04mc1sw92 Summit Health Institute for Research and Education'),
(53919, 'https://ror.org/04mchsp40', 'en', 1, 'https://ror.org/04mchsp40 Ralph M. Parsons Foundation'),
(53920, 'https://ror.org/04mcweq87', 'no_lang_code', 1, 'https://ror.org/04mcweq87 Nasdaq (United States)'),
(53921, 'https://ror.org/04md70c70', 'en', 1, 'https://ror.org/04md70c70 Field Foundation'),
(53922, 'https://ror.org/04mem9m40', 'en', 1, 'https://ror.org/04mem9m40 Diabetes Technology Society'),
(53923, 'https://ror.org/04mg0we30', 'no_lang_code', 1, 'https://ror.org/04mg0we30 Inmunal (Spain)'),
(53924, 'https://ror.org/04mjn9f12', 'en', 1, 'https://ror.org/04mjn9f12 Japan North America Medical Exchange Foundation å›½éš›äŗ¤ęµåŸŗé‡‘ ę—„ē±³ć‚»ćƒ³ć‚æćƒ¼'),
(53925, 'https://ror.org/04mjnb932', 'it', 1, 'https://ror.org/04mjnb932 Fondazione Cassa di Risparmio Civitavecchia'),
(53926, 'https://ror.org/04mkp1z42', 'en', 1, 'https://ror.org/04mkp1z42 Netcare Unitas Hospital'),
(53927, 'https://ror.org/04mm7fj57', 'no_lang_code', 1, 'https://ror.org/04mm7fj57 Szuro Trade (Hungary)'),
(53928, 'https://ror.org/04mm94t86', 'no_lang_code', 1, 'https://ror.org/04mm94t86 Isomark (United States)'),
(53929, 'https://ror.org/04mmzs792', 'no_lang_code', 1, 'https://ror.org/04mmzs792 Oncolab (Romania)'),
(53930, 'https://ror.org/04mnke839', 'en', 1, 'https://ror.org/04mnke839 Ministerial Standing Committee on Scientific and Technological Cooperation of the Organization of Islamic Cooperation'),
(53931, 'https://ror.org/04mp5ms85', 'en', 1, 'https://ror.org/04mp5ms85 Saskatchewan Library Association'),
(53932, 'https://ror.org/04mq3gn83', 'en', 1, 'https://ror.org/04mq3gn83 Midwest Institute for Clinical Research'),
(53933, 'https://ror.org/04mqtjh57', 'no_lang_code', 1, 'https://ror.org/04mqtjh57 Biogen (Italy)'),
(53934, 'https://ror.org/04mrbz859', 'no_lang_code', 1, 'https://ror.org/04mrbz859 Walker Digital (United States)'),
(53935, 'https://ror.org/04mtb9h21', 'en', 1, 'https://ror.org/04mtb9h21 Finca International'),
(53936, 'https://ror.org/04mxckc46', 'en', 1, 'https://ror.org/04mxckc46 National Women''s Law Center'),
(53937, 'https://ror.org/04mxvyg40', 'en', 1, 'https://ror.org/04mxvyg40 Melbourne Clinic'),
(53938, 'https://ror.org/04mxyy281', 'en', 1, 'https://ror.org/04mxyy281 Center for Pastor Theologians'),
(53939, 'https://ror.org/04n0rkn80', 'en', 1, 'https://ror.org/04n0rkn80 Parent Institute for Quality Education'),
(53940, 'https://ror.org/04n10rx26', 'en', 1, 'https://ror.org/04n10rx26 United Way of Snohomish County'),
(53941, 'https://ror.org/04n11b617', 'en', 1, 'https://ror.org/04n11b617 Izumi Foundation'),
(53942, 'https://ror.org/04n2kg767', 'en', 1, 'https://ror.org/04n2kg767 Healthy Minds Canada'),
(53943, 'https://ror.org/04n3h0p93', 'en', 1, 'https://ror.org/04n3h0p93 Central Hospital of Zibo ę·„åšåø‚äø­åæƒåŒ»é™¢'),
(53944, 'https://ror.org/04n7nyv64', 'en', 1, 'https://ror.org/04n7nyv64 Australian Institute of Family Studies'),
(53945, 'https://ror.org/04n7vez34', 'no_lang_code', 1, 'https://ror.org/04n7vez34 AgroFresh (United States)'),
(53946, 'https://ror.org/04n89je52', 'en', 1, 'https://ror.org/04n89je52 NASSCOM Foundation'),
(53947, 'https://ror.org/04n8zn025', 'en', 1, 'https://ror.org/04n8zn025 Liberty Laser Eye Center'),
(53948, 'https://ror.org/04nae0247', 'nl', 1, 'https://ror.org/04nae0247 Libra Revalidatie & Audiologie'),
(53949, 'https://ror.org/04ncnj403', 'de', 1, 'https://ror.org/04ncnj403 HELIOS Albert-Schweitzer-Klinik Northeim'),
(53950, 'https://ror.org/04nf3ck23', 'en', 1, 'https://ror.org/04nf3ck23 New Visions for Public Schools'),
(53951, 'https://ror.org/04nfmyz64', 'en', 1, 'https://ror.org/04nfmyz64 Parker Foundation'),
(53952, 'https://ror.org/04nfzd686', 'no_lang_code', 1, 'https://ror.org/04nfzd686 Lumen Learning (United States)'),
(53953, 'https://ror.org/04nkk7415', 'en', 1, 'https://ror.org/04nkk7415 Southeastern Retina Associates'),
(53954, 'https://ror.org/04nm4bw06', 'no_lang_code', 1, 'https://ror.org/04nm4bw06 Lumentum (United States)'),
(53955, 'https://ror.org/04nnjw512', 'no_lang_code', 1, 'https://ror.org/04nnjw512 Apeptico (Austria)'),
(53956, 'https://ror.org/04nqdt167', 'en', 1, 'https://ror.org/04nqdt167 NATA Research and Education Foundation'),
(53957, 'https://ror.org/04nqwsb31', 'en', 1, 'https://ror.org/04nqwsb31 Dysautonomia Foundation'),
(53958, 'https://ror.org/04nvswg42', 'en', 1, 'https://ror.org/04nvswg42 Eau Claire Community Foundation'),
(53959, 'https://ror.org/04nwcm011', 'no_lang_code', 1, 'https://ror.org/04nwcm011 NVision Eye Centers (United States)'),
(53960, 'https://ror.org/04nwd2p56', 'en', 1, 'https://ror.org/04nwd2p56 Central Hospital of Putuo District ę™®é™€åŒŗäø­åæƒåŒ»é™¢'),
(53961, 'https://ror.org/04p16dr10', 'en', 1, 'https://ror.org/04p16dr10 Diabetes Thyroid Hormone Research Institute'),
(53962, 'https://ror.org/04p1m3617', 'en', 1, 'https://ror.org/04p1m3617 Neurospine Institute Medical Group'),
(53963, 'https://ror.org/04p1z3290', 'en', 1, 'https://ror.org/04p1z3290 Rigpe Dorje Foundation'),
(53964, 'https://ror.org/04p2v2s43', 'en', 1, 'https://ror.org/04p2v2s43 XPRIZE Foundation'),
(53965, 'https://ror.org/04p365m25', 'no_lang_code', 1, 'https://ror.org/04p365m25 Thrombotargets (Spain)'),
(53966, 'https://ror.org/04p54bb05', 'no_lang_code', 1, 'https://ror.org/04p54bb05 Zambart'),
(53967, 'https://ror.org/04p59xr47', 'en', 1, 'https://ror.org/04p59xr47 Compal Electronics (Taiwan) ä»å®ē”µč„‘å·„äøšč‚”ä»½ęœ‰é™å…¬åø'),
(53968, 'https://ror.org/04p6dqe59', 'no_lang_code', 1, 'https://ror.org/04p6dqe59 AbbVie (Spain)'),
(53969, 'https://ror.org/04p6n2e03', 'en', 1, 'https://ror.org/04p6n2e03 Premier Research Group'),
(53970, 'https://ror.org/04p6z8d41', 'no_lang_code', 1, 'https://ror.org/04p6z8d41 Victaulic (United States)'),
(53971, 'https://ror.org/04p70wa05', 'en', 1, 'https://ror.org/04p70wa05 St Stephen’s AIDS Trust'),
(53972, 'https://ror.org/04p7c7m47', 'en', 1, 'https://ror.org/04p7c7m47 Cades Schutte'),
(53973, 'https://ror.org/04p7ema57', 'en', 1, 'https://ror.org/04p7ema57 National Infrastructure for Microbiological Resources å›½å®¶å¾®ē”Ÿē‰©čµ„ęŗåŸŗē”€č®¾ę–½'),
(53974, 'https://ror.org/04p9zhq85', 'en', 1, 'https://ror.org/04p9zhq85 The New Teacher Project'),
(53975, 'https://ror.org/04pa38t98', 'no_lang_code', 1, 'https://ror.org/04pa38t98 Anthera Pharmaceuticals (United States)'),
(53976, 'https://ror.org/04pbh9679', 'en', 1, 'https://ror.org/04pbh9679 Hohhot First Hospital å‘¼å’Œęµ©ē‰¹ē¬¬äø€åŒ»é™¢'),
(53977, 'https://ror.org/04pc51341', 'en', 1, 'https://ror.org/04pc51341 International Furnishings and Design Association'),
(53978, 'https://ror.org/04pc85e11', 'no_lang_code', 1, 'https://ror.org/04pc85e11 Dynavax Technologies (Germany)'),
(53979, 'https://ror.org/04pcdsm76', 'en', 1, 'https://ror.org/04pcdsm76 Interdisciplinary University of Paris UniversitƩ interdisciplinaire de Paris'),
(53980, 'https://ror.org/04pd4jr17', 'en', 1, 'https://ror.org/04pd4jr17 Barbara Bush Children’s Hospital'),
(53981, 'https://ror.org/04pejqy21', 'en', 1, 'https://ror.org/04pejqy21 National Research and Development Institute on Occupational Safety'),
(53982, 'https://ror.org/04pfhbg73', 'en', 1, 'https://ror.org/04pfhbg73 Oregon Department of Education'),
(53983, 'https://ror.org/04pfs0x85', 'en', 1, 'https://ror.org/04pfs0x85 Krzysztof Kluk Museum of Agriculture Muzeum Rolnictwa im. ks. Krzysztofa Kluka'),
(53984, 'https://ror.org/04ph8tc17', 'no_lang_code', 1, 'https://ror.org/04ph8tc17 Finnair (Finland)'),
(53985, 'https://ror.org/04phvdn03', 'en', 1, 'https://ror.org/04phvdn03 Network For Teaching Entrepreneurship'),
(53986, 'https://ror.org/04pm22969', 'en', 1, 'https://ror.org/04pm22969 Organic Farming Research Foundation'),
(53987, 'https://ror.org/04ps05k54', 'en', 1, 'https://ror.org/04ps05k54 American Association of Clinical Endocrinologists'),
(53988, 'https://ror.org/04ps1h446', 'no_lang_code', 1, 'https://ror.org/04ps1h446 Vital Therapies (United States)'),
(53989, 'https://ror.org/04pvmvv24', 'en', 1, 'https://ror.org/04pvmvv24 Barrett Bateman Foundation'),
(53990, 'https://ror.org/04pyp4405', 'en', 1, 'https://ror.org/04pyp4405 Kortney Rose Foundation'),
(53991, 'https://ror.org/04pza9565', 'en', 1, 'https://ror.org/04pza9565 Albert J. Ryan Foundation'),
(53992, 'https://ror.org/04pzgj087', 'en', 1, 'https://ror.org/04pzgj087 Dystrophic Epidermolysis Bullosa Research Association of America'),
(53993, 'https://ror.org/04q1vk257', 'en', 1, 'https://ror.org/04q1vk257 DuPage Mental Health Services'),
(53994, 'https://ror.org/04q3cbc35', 'en', 1, 'https://ror.org/04q3cbc35 Midwestern Higher Education Compact'),
(53995, 'https://ror.org/04q421571', 'no_lang_code', 1, 'https://ror.org/04q421571 PT Bio Farma (Indonesia)'),
(53996, 'https://ror.org/04q5vxz02', 'no_lang_code', 1, 'https://ror.org/04q5vxz02 RSPR Pharma (Sweden)'),
(53997, 'https://ror.org/04q6mrp48', 'es', 1, 'https://ror.org/04q6mrp48 Ocumed Clinica Oftalmologica'),
(53998, 'https://ror.org/04q84b570', 'en', 1, 'https://ror.org/04q84b570 World Health Organization - Lyon Office'),
(53999, 'https://ror.org/04qajcj06', 'en', 1, 'https://ror.org/04qajcj06 Bodossaki Foundation ĪŠĪ“ĻĻ…Ī¼Ī± ĪœĻ€ĪæĪ“ĪæĻƒĪ¬ĪŗĪ·'),
(54000, 'https://ror.org/04qbxyj42', 'pt', 1, 'https://ror.org/04qbxyj42 Hospital de Base'),
(54001, 'https://ror.org/04qdq0b46', 'en', 1, 'https://ror.org/04qdq0b46 Danish Dairy Research Foundation'),
(54002, 'https://ror.org/04qh5fy32', 'no_lang_code', 1, 'https://ror.org/04qh5fy32 Abbott (Sweden)'),
(54003, 'https://ror.org/04qhpra63', 'no_lang_code', 1, 'https://ror.org/04qhpra63 Novartis (Norway)'),
(54004, 'https://ror.org/04qm2hz97', 'no_lang_code', 1, 'https://ror.org/04qm2hz97 Accelovance (United States)'),
(54005, 'https://ror.org/04qn6k859', 'en', 1, 'https://ror.org/04qn6k859 CJ Foundation for SIDS'),
(54006, 'https://ror.org/04qq88e08', 'en', 1, 'https://ror.org/04qq88e08 International Headache Society'),
(54007, 'https://ror.org/04qsqk067', 'en', 1, 'https://ror.org/04qsqk067 Kinsman Foundation'),
(54008, 'https://ror.org/04qtw4d33', 'en', 1, 'https://ror.org/04qtw4d33 Canadian Foundation for Dietetic Research Fondation Canadienne de la Recherche en DiƩtƩtique'),
(54009, 'https://ror.org/04qv76523', 'en', 1, 'https://ror.org/04qv76523 United Way of Southern Cameron County'),
(54010, 'https://ror.org/04qyzam39', 'fr', 1, 'https://ror.org/04qyzam39 HƓpital PrivƩ Jacques Cartier'),
(54011, 'https://ror.org/04r000b45', 'no_lang_code', 1, 'https://ror.org/04r000b45 Zambon (Belgium)'),
(54012, 'https://ror.org/04r0bh641', 'no_lang_code', 1, 'https://ror.org/04r0bh641 Neoleukin Therapeutics (United States)'),
(54013, 'https://ror.org/04r0gp612', 'en', 1, 'https://ror.org/04r0gp612 Neurological Surgery'),
(54014, 'https://ror.org/04r1bef65', 'en', 1, 'https://ror.org/04r1bef65 State Collaborative on Reforming Education'),
(54015, 'https://ror.org/04r1rka16', 'en', 1, 'https://ror.org/04r1rka16 Metro Urology'),
(54016, 'https://ror.org/04r1y3g77', 'en', 1, 'https://ror.org/04r1y3g77 Lice Solutions Resource Network'),
(54017, 'https://ror.org/04r25nk19', 'de', 1, 'https://ror.org/04r25nk19 Gottfried und Julia Bangerter-Rhyner-Stiftung'),
(54018, 'https://ror.org/04r4d0m68', 'no_lang_code', 1, 'https://ror.org/04r4d0m68 MAX Automation (Germany)'),
(54019, 'https://ror.org/04r5g1376', 'en', 1, 'https://ror.org/04r5g1376 Local Initiatives Support Corporation'),
(54020, 'https://ror.org/04r67yj20', 'en', 1, 'https://ror.org/04r67yj20 WellSpan York Hospital'),
(54021, 'https://ror.org/04r6zpr83', 'no_lang_code', 1, 'https://ror.org/04r6zpr83 Amarantus Bioscience (United States)'),
(54022, 'https://ror.org/04r7ys083', 'en', 1, 'https://ror.org/04r7ys083 Washington Women''s Foundation'),
(54023, 'https://ror.org/04ra2hd78', 'en', 1, 'https://ror.org/04ra2hd78 American Music Therapy Association'),
(54024, 'https://ror.org/04rbew275', 'no_lang_code', 1, 'https://ror.org/04rbew275 Zipline International (United States)'),
(54025, 'https://ror.org/04rbxbn93', 'no_lang_code', 1, 'https://ror.org/04rbxbn93 PIQUR Therapeutics (Switzerland)'),
(54026, 'https://ror.org/04rdnb978', 'de', 1, 'https://ror.org/04rdnb978 Deutsche Kinderkrebsstiftung'),
(54027, 'https://ror.org/04rfs1719', 'de', 1, 'https://ror.org/04rfs1719 Spital Uster'),
(54028, 'https://ror.org/04rgsag55', 'en', 1, 'https://ror.org/04rgsag55 Main Line Health'),
(54029, 'https://ror.org/04rgxfp73', 'no_lang_code', 1, 'https://ror.org/04rgxfp73 Pharma Stulln (Germany)'),
(54030, 'https://ror.org/04rk31t56', 'en', 1, 'https://ror.org/04rk31t56 Community Foundation of Northeast Alabama'),
(54031, 'https://ror.org/04rn24t38', 'en', 1, 'https://ror.org/04rn24t38 Martin Diagnostic Clinic'),
(54032, 'https://ror.org/04rn5ad82', 'en', 1, 'https://ror.org/04rn5ad82 Axiom Clinical Research of Florida'),
(54033, 'https://ror.org/04rn6m357', 'de', 1, 'https://ror.org/04rn6m357 Maria Hilf Krankenhaus'),
(54034, 'https://ror.org/04rpnrw35', 'en', 1, 'https://ror.org/04rpnrw35 Cambridge Muslim College'),
(54035, 'https://ror.org/04rqj7157', 'en', 1, 'https://ror.org/04rqj7157 Global Communities'),
(54036, 'https://ror.org/04rr9rb04', 'en', 1, 'https://ror.org/04rr9rb04 Atherton Family Foundation'),
(54037, 'https://ror.org/04rreza77', 'no_lang_code', 1, 'https://ror.org/04rreza77 Bombastus-Werke (Germany)'),
(54038, 'https://ror.org/04rrtdm25', 'en', 1, 'https://ror.org/04rrtdm25 Lynne Cohen Foundation'),
(54039, 'https://ror.org/04rtaxr13', 'en', 1, 'https://ror.org/04rtaxr13 Center for Rheumatology'),
(54040, 'https://ror.org/04rxwqr66', 'en', 1, 'https://ror.org/04rxwqr66 OneBlood'),
(54041, 'https://ror.org/04rznx125', 'en', 1, 'https://ror.org/04rznx125 Johnson Group Consulting'),
(54042, 'https://ror.org/04s361q55', 'no_lang_code', 1, 'https://ror.org/04s361q55 Cognitive Research (United States)'),
(54043, 'https://ror.org/04s3cew51', 'en', 1, 'https://ror.org/04s3cew51 Milbank Memorial Fund'),
(54044, 'https://ror.org/04s47k519', 'no_lang_code', 1, 'https://ror.org/04s47k519 SIT Pharmaceutical (Italy)'),
(54045, 'https://ror.org/04s4qhr84', 'de', 1, 'https://ror.org/04s4qhr84 Dr. Walter und Luise Freundlich Stiftung'),
(54046, 'https://ror.org/04s8ek474', 'en', 1, 'https://ror.org/04s8ek474 Workforce Snohomish'),
(54047, 'https://ror.org/04sab3g34', 'no_lang_code', 1, 'https://ror.org/04sab3g34 Bucher Industries (France)'),
(54048, 'https://ror.org/04sc4fe33', 'en', 1, 'https://ror.org/04sc4fe33 Avail Clinical Research'),
(54049, 'https://ror.org/04sc6v830', 'no_lang_code', 1, 'https://ror.org/04sc6v830 Seagull BioSolutions (India)'),
(54050, 'https://ror.org/04scvbh77', 'no_lang_code', 1, 'https://ror.org/04scvbh77 AZTherapies (United States)'),
(54051, 'https://ror.org/04sdnbk30', 'en', 1, 'https://ror.org/04sdnbk30 Universal Biopharma Research Institute'),
(54052, 'https://ror.org/04se5nn61', 'en', 1, 'https://ror.org/04se5nn61 Canadian Physiotherapy Association'),
(54053, 'https://ror.org/04seaqh41', 'no_lang_code', 1, 'https://ror.org/04seaqh41 Roche (Denmark)'),
(54054, 'https://ror.org/04sg26g73', 'en', 1, 'https://ror.org/04sg26g73 National Philanthropic Trust'),
(54055, 'https://ror.org/04sjpwm55', 'en', 1, 'https://ror.org/04sjpwm55 Columbia Legal Services'),
(54056, 'https://ror.org/04sjz5865', 'en', 1, 'https://ror.org/04sjz5865 North Carolina Clinical Research'),
(54057, 'https://ror.org/04sk5kz08', 'en', 1, 'https://ror.org/04sk5kz08 University Diabetes and Endocrine Consultants'),
(54058, 'https://ror.org/04sky4s35', 'en', 1, 'https://ror.org/04sky4s35 Institut Penyelidikan dan Kemajuan Pertanian Malaysia Malaysian Agricultural Research and Development Institute'),
(54059, 'https://ror.org/04smbh054', 'en', 1, 'https://ror.org/04smbh054 New England Center for Clinical Research'),
(54060, 'https://ror.org/04smkn993', 'en', 1, 'https://ror.org/04smkn993 Sundance Clinical Research'),
(54061, 'https://ror.org/04spfxf63', 'no_lang_code', 1, 'https://ror.org/04spfxf63 Argenx (Belgium)'),
(54062, 'https://ror.org/04sq2be74', 'en', 1, 'https://ror.org/04sq2be74 Westside Center for Clinical Research'),
(54063, 'https://ror.org/04sr97002', 'en', 1, 'https://ror.org/04sr97002 Indian Land Tenure Foundation'),
(54064, 'https://ror.org/04srvjp38', 'en', 1, 'https://ror.org/04srvjp38 Institute for National Strategic Studies'),
(54065, 'https://ror.org/04ssk5v02', 'en', 1, 'https://ror.org/04ssk5v02 OrthoGeorgia'),
(54066, 'https://ror.org/04sza0p48', 'en', 1, 'https://ror.org/04sza0p48 Garfield Foundation'),
(54067, 'https://ror.org/04t180b28', 'en', 1, 'https://ror.org/04t180b28 Indiana Spine Group'),
(54068, 'https://ror.org/04t1dgs65', 'en', 1, 'https://ror.org/04t1dgs65 Shepherds Care Foundation'),
(54069, 'https://ror.org/04t1pp919', 'da', 1, 'https://ror.org/04t1pp919 Lida og Oskar Nielsens Fond'),
(54070, 'https://ror.org/04t4b2612', 'en', 1, 'https://ror.org/04t4b2612 Puget Sound Educational Service District'),
(54071, 'https://ror.org/04t534v40', 'no_lang_code', 1, 'https://ror.org/04t534v40 Cyathus Exquirere (Austria)'),
(54072, 'https://ror.org/04t947081', 'en', 1, 'https://ror.org/04t947081 Financial Sector Deepening Trust'),
(54073, 'https://ror.org/04t98p806', 'it', 1, 'https://ror.org/04t98p806 Associazione Italiana Pneumologi Ospedalieri'),
(54074, 'https://ror.org/04tbrah05', 'en', 1, 'https://ror.org/04tbrah05 Broad Center'),
(54075, 'https://ror.org/04tcsrf14', 'de', 1, 'https://ror.org/04tcsrf14 Schmerzklinik Kiel'),
(54076, 'https://ror.org/04td3h857', 'en', 1, 'https://ror.org/04td3h857 Institute on Religion and Public Life'),
(54077, 'https://ror.org/04tnbfn25', 'no_lang_code', 1, 'https://ror.org/04tnbfn25 AbbVie (United Kingdom)'),
(54078, 'https://ror.org/04tnf8c76', 'en', 1, 'https://ror.org/04tnf8c76 ISEF Foundation'),
(54079, 'https://ror.org/04tpen147', 'en', 1, 'https://ror.org/04tpen147 Pflugerville Independent School District'),
(54080, 'https://ror.org/04tprf655', 'en', 1, 'https://ror.org/04tprf655 Conversation Africa'),
(54081, 'https://ror.org/04tqd7s80', 'no_lang_code', 1, 'https://ror.org/04tqd7s80 Otsuka Pharmaceutical (Spain)'),
(54082, 'https://ror.org/04tr0pv18', 'no', 1, 'https://ror.org/04tr0pv18 CIVITA'),
(54083, 'https://ror.org/04trz4q34', 'no_lang_code', 1, 'https://ror.org/04trz4q34 Synthetic Biologics (United States)'),
(54084, 'https://ror.org/04ts2vz32', 'en', 1, 'https://ror.org/04ts2vz32 JM Foundation'),
(54085, 'https://ror.org/04ts8g112', 'no_lang_code', 1, 'https://ror.org/04ts8g112 MediWound (Germany)'),
(54086, 'https://ror.org/04tsv5127', 'de', 1, 'https://ror.org/04tsv5127 DIAKO'),
(54087, 'https://ror.org/04ttatz50', 'en', 1, 'https://ror.org/04ttatz50 Mount Farm Surgery'),
(54088, 'https://ror.org/04ttgxj90', 'en', 1, 'https://ror.org/04ttgxj90 Esping Family Foundation'),
(54089, 'https://ror.org/04tv4vz10', 'en', 1, 'https://ror.org/04tv4vz10 Pacific Vision Foundation'),
(54090, 'https://ror.org/04txr4v68', 'en', 1, 'https://ror.org/04txr4v68 North American Spine Society'),
(54091, 'https://ror.org/04tzcp182', 'en', 1, 'https://ror.org/04tzcp182 Child Health Foundation'),
(54092, 'https://ror.org/04tzr7454', 'de', 1, 'https://ror.org/04tzr7454 Therapiezentrum Burgau'),
(54093, 'https://ror.org/04v0nw239', 'en', 1, 'https://ror.org/04v0nw239 Hellenic Society of Medical Education Ī•Ī›Ī›Ī—ĪĪ™ĪšĪ— ΕΤΑΙΔΕΙΑ Ī™Ī‘Ī¤Ī”Ī™ĪšĪ—Ī£ Ī•ĪšĪ Ī‘Ī™Ī”Ī•Ī„Ī£Ī—Ī£'),
(54094, 'https://ror.org/04v26et66', 'en', 1, 'https://ror.org/04v26et66 Trust for Advancement of Agricultural Sciences'),
(54095, 'https://ror.org/04v3pva14', 'no_lang_code', 1, 'https://ror.org/04v3pva14 Almirall (Germany)'),
(54096, 'https://ror.org/04v43ea29', 'fr', 1, 'https://ror.org/04v43ea29 Institut Hospitalier Franco Britannique'),
(54097, 'https://ror.org/04v5wp242', 'en', 1, 'https://ror.org/04v5wp242 New West Sports Medicine and Orthopedic Surgery'),
(54098, 'https://ror.org/04v7rn512', 'en', 1, 'https://ror.org/04v7rn512 Sleep Center of Greater Pittsburgh'),
(54099, 'https://ror.org/04vb0yp97', 'no_lang_code', 1, 'https://ror.org/04vb0yp97 Mitsui Chemicals (Germany)'),
(54100, 'https://ror.org/04vbp2w76', 'en', 1, 'https://ror.org/04vbp2w76 Mobilize'),
(54101, 'https://ror.org/04vdd6t03', 'en', 1, 'https://ror.org/04vdd6t03 Honorable Tina Brozman Foundation'),
(54102, 'https://ror.org/04vdxde73', 'no_lang_code', 1, 'https://ror.org/04vdxde73 National Grid (United States)'),
(54103, 'https://ror.org/04vepqv68', 'no_lang_code', 1, 'https://ror.org/04vepqv68 DAV (France)'),
(54104, 'https://ror.org/04vfkg585', 'en', 1, 'https://ror.org/04vfkg585 Tech Foundation'),
(54105, 'https://ror.org/04vh36p08', 'da', 1, 'https://ror.org/04vh36p08 AIDS Fondet'),
(54106, 'https://ror.org/04vjpxa50', 'en', 1, 'https://ror.org/04vjpxa50 Sprim Advanced Life Sciences'),
(54107, 'https://ror.org/04vkepj11', 'pl', 1, 'https://ror.org/04vkepj11 NZOZ Medi-Spatz'),
(54108, 'https://ror.org/04vkkat38', 'no_lang_code', 1, 'https://ror.org/04vkkat38 Teradata (United States)'),
(54109, 'https://ror.org/04vn4r534', 'en', 1, 'https://ror.org/04vn4r534 Little Giraffe Foundation'),
(54110, 'https://ror.org/04vq36g59', 'no_lang_code', 1, 'https://ror.org/04vq36g59 Apocare Pharma (Germany)'),
(54111, 'https://ror.org/04vs74923', 'en', 1, 'https://ror.org/04vs74923 Gratiot County Community Foundation'),
(54112, 'https://ror.org/04vsvp708', 'no_lang_code', 1, 'https://ror.org/04vsvp708 ObsEva (Switzerland)'),
(54113, 'https://ror.org/04vwh8s73', 'en', 1, 'https://ror.org/04vwh8s73 National Student Clearinghouse'),
(54114, 'https://ror.org/04vwp4t32', 'hu', 1, 'https://ror.org/04vwp4t32 Fourmed Kft GyógyhÔz'),
(54115, 'https://ror.org/04vz87118', 'en', 1, 'https://ror.org/04vz87118 Gift of Life Michigan'),
(54116, 'https://ror.org/04w0jj406', 'no_lang_code', 1, 'https://ror.org/04w0jj406 Hevert Arzneimittel (Germany)'),
(54117, 'https://ror.org/04w1pz213', 'en', 1, 'https://ror.org/04w1pz213 Japan Dental Association ę—„ęœ¬ę­Æē§‘åŒ»åø«ä¼š'),
(54118, 'https://ror.org/04w23ys68', 'en', 1, 'https://ror.org/04w23ys68 Brain Tumour Foundation of Canada'),
(54119, 'https://ror.org/04w2t4465', 'en', 1, 'https://ror.org/04w2t4465 American Healthcare Professionals and Friends for Medicine in Israel'),
(54120, 'https://ror.org/04w315h57', 'en', 1, 'https://ror.org/04w315h57 British Biophysical Society'),
(54121, 'https://ror.org/04w3qme09', 'en', 1, 'https://ror.org/04w3qme09 Third Hospital of Changsha'),
(54122, 'https://ror.org/04wdp9936', 'no_lang_code', 1, 'https://ror.org/04wdp9936 Kura Oncology (United States)'),
(54123, 'https://ror.org/04wgq9742', 'en', 1, 'https://ror.org/04wgq9742 Oakland Public Education Fund'),
(54124, 'https://ror.org/04wk9pg33', 'en', 1, 'https://ror.org/04wk9pg33 Points of Light'),
(54125, 'https://ror.org/04wkyys07', 'it', 1, 'https://ror.org/04wkyys07 Fondazione Cariverona'),
(54126, 'https://ror.org/04wn5rx73', 'en', 1, 'https://ror.org/04wn5rx73 Getwell Hospital and Research Institute'),
(54127, 'https://ror.org/04wnzzd87', 'es', 1, 'https://ror.org/04wnzzd87 ClĆ­nica Foscal, Foscal Hospital'),
(54128, 'https://ror.org/04wp26z07', 'en', 1, 'https://ror.org/04wp26z07 Fred J Brotherton Charitable Foundation'),
(54129, 'https://ror.org/04wpxrf64', 'en', 1, 'https://ror.org/04wpxrf64 Blazeman Foundation for ALS'),
(54130, 'https://ror.org/04wq6zc77', 'en', 1, 'https://ror.org/04wq6zc77 American Health Network'),
(54131, 'https://ror.org/04wqw2206', 'en', 1, 'https://ror.org/04wqw2206 Digital Promise'),
(54132, 'https://ror.org/04wr5bw31', 'en', 1, 'https://ror.org/04wr5bw31 Colorado Orthopedic Consultants'),
(54133, 'https://ror.org/04wxajv83', 'en', 1, 'https://ror.org/04wxajv83 South Carolina State Library'),
(54134, 'https://ror.org/04wxywd96', 'no_lang_code', 1, 'https://ror.org/04wxywd96 Praekelt Foundation'),
(54135, 'https://ror.org/04wyb0a08', 'en', 1, 'https://ror.org/04wyb0a08 AdventHealth Daytona Beach'),
(54136, 'https://ror.org/04x0f8p22', 'no_lang_code', 1, 'https://ror.org/04x0f8p22 Immunomedics (Germany)'),
(54137, 'https://ror.org/04x1eer44', 'en', 1, 'https://ror.org/04x1eer44 Strive Preparatory Schools'),
(54138, 'https://ror.org/04x21zc26', 'en', 1, 'https://ror.org/04x21zc26 Kelley Foundation'),
(54139, 'https://ror.org/04x2wfk77', 'en', 1, 'https://ror.org/04x2wfk77 Downie Harper and Shanks Dental Practice'),
(54140, 'https://ror.org/04x3eb318', 'no_lang_code', 1, 'https://ror.org/04x3eb318 Brandtone (Ireland)'),
(54141, 'https://ror.org/04xayvx70', 'en', 1, 'https://ror.org/04xayvx70 Down Syndrome Research Foundation'),
(54142, 'https://ror.org/04xehp049', 'en', 1, 'https://ror.org/04xehp049 Rocky Mountain Orthopedics'),
(54143, 'https://ror.org/04xep6d57', 'no_lang_code', 1, 'https://ror.org/04xep6d57 Jazz Pharmaceuticals (France)'),
(54144, 'https://ror.org/04xfjgw45', 'no_lang_code', 1, 'https://ror.org/04xfjgw45 Shanxi Fenyang Hospital å±±č„æēœę±¾é˜³åŒ»é™¢'),
(54145, 'https://ror.org/04xk91k82', 'en', 1, 'https://ror.org/04xk91k82 Pepose Vision Institute'),
(54146, 'https://ror.org/04xn42d49', 'en', 1, 'https://ror.org/04xn42d49 Mt. Pleasant Area Commuity Foundation'),
(54147, 'https://ror.org/04xpcky34', 'no_lang_code', 1, 'https://ror.org/04xpcky34 Fischer (Germany)'),
(54148, 'https://ror.org/04xpyh310', 'en', 1, 'https://ror.org/04xpyh310 Social Venture Partners'),
(54149, 'https://ror.org/04xqqa618', 'en', 1, 'https://ror.org/04xqqa618 AMC Neurology Group Clinical Research Center'),
(54150, 'https://ror.org/04xxdqj96', 'no_lang_code', 1, 'https://ror.org/04xxdqj96 Koch Industries (Switzerland)'),
(54151, 'https://ror.org/04xxv0d51', 'en', 1, 'https://ror.org/04xxv0d51 Advanced Breast Care'),
(54152, 'https://ror.org/04xz21s03', 'no_lang_code', 1, 'https://ror.org/04xz21s03 Futura Medical (United Kingdom)'),
(54153, 'https://ror.org/04xzqfk28', 'it', 1, 'https://ror.org/04xzqfk28 Fondazione Internazionale Menarini'),
(54154, 'https://ror.org/04y3sb167', 'no_lang_code', 1, 'https://ror.org/04y3sb167 Clarus Therapeutics (United States)'),
(54155, 'https://ror.org/04y3z0p88', 'en', 1, 'https://ror.org/04y3z0p88 New Hampshire Bar Foundation'),
(54156, 'https://ror.org/04y4x5p83', 'no_lang_code', 1, 'https://ror.org/04y4x5p83 Kymab (United Kingdom)'),
(54157, 'https://ror.org/04y55ke86', 'en', 1, 'https://ror.org/04y55ke86 Falck Foundation'),
(54158, 'https://ror.org/04y672n69', 'en', 1, 'https://ror.org/04y672n69 Lymphoma Study Association'),
(54159, 'https://ror.org/04y6gmk90', 'no_lang_code', 1, 'https://ror.org/04y6gmk90 Iltoo Pharma (France)'),
(54160, 'https://ror.org/04y6vvb85', 'en', 1, 'https://ror.org/04y6vvb85 Australian Women and Children''s Research Foundation'),
(54161, 'https://ror.org/04y7r1x60', 'en', 1, 'https://ror.org/04y7r1x60 GreatSchools'),
(54162, 'https://ror.org/04y8mfg39', 'no_lang_code', 1, 'https://ror.org/04y8mfg39 Indukern (Spain)'),
(54163, 'https://ror.org/04ya12x69', 'en', 1, 'https://ror.org/04ya12x69 North Carolina GlaxoSmithKline Foundation'),
(54164, 'https://ror.org/04yc0k443', 'en', 1, 'https://ror.org/04yc0k443 Japan Foundation for Aging and Health é«˜é½¢åŒ–ćØå„åŗ·ć®ćŸć‚ć®å›½éš›äŗ¤ęµåŸŗé‡‘'),
(54165, 'https://ror.org/04ycden15', 'en', 1, 'https://ror.org/04ycden15 Institut für Demographie Vienna Institute of Demography'),
(54166, 'https://ror.org/04yf1p931', 'en', 1, 'https://ror.org/04yf1p931 Elmina B. Sewall Foundation'),
(54167, 'https://ror.org/04ygvt366', 'en', 1, 'https://ror.org/04ygvt366 Fleishhacker Foundation'),
(54168, 'https://ror.org/04ymgh706', 'en', 1, 'https://ror.org/04ymgh706 Parkinson''s Association'),
(54169, 'https://ror.org/04yq9bg08', 'no_lang_code', 1, 'https://ror.org/04yq9bg08 Muller Martini (Switzerland)'),
(54170, 'https://ror.org/04yqmzq68', 'en', 1, 'https://ror.org/04yqmzq68 Memphis Health Center'),
(54171, 'https://ror.org/04ysex633', 'en', 1, 'https://ror.org/04ysex633 S3 Clinical Research Centers'),
(54172, 'https://ror.org/04ysnaw75', 'no_lang_code', 1, 'https://ror.org/04ysnaw75 C4Pain (Denmark)'),
(54173, 'https://ror.org/04ytwdt71', 'no_lang_code', 1, 'https://ror.org/04ytwdt71 Afa Jcdecaux (Denmark)'),
(54174, 'https://ror.org/04ywsnb39', 'en', 1, 'https://ror.org/04ywsnb39 Alexander Foundation for Orthodontic Research and Education'),
(54175, 'https://ror.org/04yxm6j91', 'en', 1, 'https://ror.org/04yxm6j91 Population Foundation of India'),
(54176, 'https://ror.org/04yzcyv37', 'en', 1, 'https://ror.org/04yzcyv37 Howard Gilman Foundation'),
(54177, 'https://ror.org/04z0j1529', 'en', 1, 'https://ror.org/04z0j1529 Pact Atlanta'),
(54178, 'https://ror.org/04z1kv059', 'no_lang_code', 1, 'https://ror.org/04z1kv059 Paradis (Denmark)'),
(54179, 'https://ror.org/04z209n06', 'no_lang_code', 1, 'https://ror.org/04z209n06 Body Surface Translations (United States)'),
(54180, 'https://ror.org/04z2f8y70', 'en', 1, 'https://ror.org/04z2f8y70 Cataract and Refractive Institute of Florida'),
(54181, 'https://ror.org/04z32jy09', 'en', 1, 'https://ror.org/04z32jy09 European Network on Debt and Development'),
(54182, 'https://ror.org/04z3s3f96', 'en', 1, 'https://ror.org/04z3s3f96 Thomson Foundation'),
(54183, 'https://ror.org/04z5kb841', 'en', 1, 'https://ror.org/04z5kb841 Right Question Institute'),
(54184, 'https://ror.org/04z7s6c33', 'en', 1, 'https://ror.org/04z7s6c33 Iowa Policy Project'),
(54185, 'https://ror.org/04zamhr10', 'no_lang_code', 1, 'https://ror.org/04zamhr10 Actinium Pharmaceuticals (United States)'),
(54186, 'https://ror.org/04zde3c02', 'no_lang_code', 1, 'https://ror.org/04zde3c02 Enclude (United States)'),
(54187, 'https://ror.org/04zf2bt80', 'de', 1, 'https://ror.org/04zf2bt80 Diakonie-Klinikum Stuttgart'),
(54188, 'https://ror.org/04zj4k586', 'no_lang_code', 1, 'https://ror.org/04zj4k586 Tokuyama (Japan) ę Ŗå¼ä¼šē¤¾ćƒˆć‚Æćƒ¤ćƒž'),
(54189, 'https://ror.org/04zkdev66', 'no_lang_code', 1, 'https://ror.org/04zkdev66 TS Tech (Japan)'),
(54190, 'https://ror.org/04zmnq951', 'no_lang_code', 1, 'https://ror.org/04zmnq951 Immutep (Germany)'),
(54191, 'https://ror.org/04zq6dz45', 'en', 1, 'https://ror.org/04zq6dz45 National Association of Chain Drug Stores'),
(54192, 'https://ror.org/04zqh4p27', 'en', 1, 'https://ror.org/04zqh4p27 Canary Foundation'),
(54193, 'https://ror.org/04zt79h83', 'no_lang_code', 1, 'https://ror.org/04zt79h83 Roche (Portugal)'),
(54194, 'https://ror.org/04zvyjw73', 'no_lang_code', 1, 'https://ror.org/04zvyjw73 Apceth Biopharma (Germany)'),
(54195, 'https://ror.org/04zw0mb93', 'en', 1, 'https://ror.org/04zw0mb93 American Dental Hygienists'' Association'),
(54196, 'https://ror.org/04zwbbf36', 'en', 1, 'https://ror.org/04zwbbf36 Hamilton Dermatology'),
(54197, 'https://ror.org/04zypt071', 'en', 1, 'https://ror.org/04zypt071 Rocky Mountain Diabetes and Osteoporosis Center'),
(54198, 'https://ror.org/04zyw0g92', 'en', 1, 'https://ror.org/04zyw0g92 Therafirst Medical Center'),
(54199, 'https://ror.org/04zz2b246', 'it', 1, 'https://ror.org/04zz2b246 Fondazione ART per la Ricerca sui Trapianti'),
(54200, 'https://ror.org/04zzq8d03', 'no_lang_code', 1, 'https://ror.org/04zzq8d03 Zambon (Italy)'),
(54201, 'https://ror.org/0502q3c66', 'en', 1, 'https://ror.org/0502q3c66 Hindustan Latex Family Planning Promotion Trust'),
(54202, 'https://ror.org/0504sxa76', 'no_lang_code', 1, 'https://ror.org/0504sxa76 Guerbet (France)'),
(54203, 'https://ror.org/0506ech85', 'en', 1, 'https://ror.org/0506ech85 Longview Foundation'),
(54204, 'https://ror.org/0509rvg03', 'en', 1, 'https://ror.org/0509rvg03 American College of Veterinary Surgeons'),
(54205, 'https://ror.org/050apvm78', 'en', 1, 'https://ror.org/050apvm78 Fraxa Research Foundation'),
(54206, 'https://ror.org/050bms902', 'en', 1, 'https://ror.org/050bms902 United Nations Department of Economic and Social Affairs'),
(54207, 'https://ror.org/050cw6514', 'en', 1, 'https://ror.org/050cw6514 National Alliance to End Homelessness'),
(54208, 'https://ror.org/050d0fq97', 'en', 1, 'https://ror.org/050d0fq97 Affiliated Hospital of Jiangxi University of Traditional Chinese Medicine ę±Ÿč„æēœäø­åŒ»é™¢'),
(54209, 'https://ror.org/050e5fp23', 'en', 1, 'https://ror.org/050e5fp23 Salt Lake County Library Services'),
(54210, 'https://ror.org/050g0hk79', 'en', 1, 'https://ror.org/050g0hk79 Volgograd Regional Clinical Oncology Center ВолгограГский областной клинический онкологический Гиспансер ā„– 1'),
(54211, 'https://ror.org/050gw5147', 'en', 1, 'https://ror.org/050gw5147 Kobe College Corporation and Japan Education Exchange'),
(54212, 'https://ror.org/050gzab21', 'en', 1, 'https://ror.org/050gzab21 Inner Mongolia Maternal and Child Health å†…č’™å¤å¦‡å¹¼äæå„'),
(54213, 'https://ror.org/050k26q88', 'no_lang_code', 1, 'https://ror.org/050k26q88 Deutsche Post (Germany)'),
(54214, 'https://ror.org/050n29947', 'en', 1, 'https://ror.org/050n29947 Ecological Foundation Green Action Fundacja Ekologiczna "Zielona Akcja"'),
(54215, 'https://ror.org/050nbnj29', 'en', 1, 'https://ror.org/050nbnj29 New Leaders'),
(54216, 'https://ror.org/050nv5191', 'en', 1, 'https://ror.org/050nv5191 Rajiv Gandhi Foundation'),
(54217, 'https://ror.org/050qgwx77', 'en', 1, 'https://ror.org/050qgwx77 Telethon Foundation'),
(54218, 'https://ror.org/050r4h987', 'en', 1, 'https://ror.org/050r4h987 Blue Cross and Blue Shield of Florida Foundation'),
(54219, 'https://ror.org/050r7j211', 'en', 1, 'https://ror.org/050r7j211 National Pork Producers Council'),
(54220, 'https://ror.org/050txbd07', 'no_lang_code', 1, 'https://ror.org/050txbd07 Rite-Hite (United States)'),
(54221, 'https://ror.org/050xscb48', 'en', 1, 'https://ror.org/050xscb48 TropIQ Health Sciences'),
(54222, 'https://ror.org/050y98g56', 'en', 1, 'https://ror.org/050y98g56 Alcorso Foundation'),
(54223, 'https://ror.org/050zqsm78', 'en', 1, 'https://ror.org/050zqsm78 Direction GƩnƩrale CoopƩration internationale et dƩveloppement Directorate-General for International Cooperation and Development Generaldirektion Internationale Zusammenarbeit und Entwicklung'),
(54224, 'https://ror.org/0510bgz94', 'no_lang_code', 1, 'https://ror.org/0510bgz94 Mitsubishi Plastics (Japan) äø‰č±ęØ¹č„‚ę Ŗå¼ä¼šē¤¾'),
(54225, 'https://ror.org/0511edk83', 'en', 1, 'https://ror.org/0511edk83 Foundation for the Advancement in Research in Medicine'),
(54226, 'https://ror.org/0513bka31', 'en', 1, 'https://ror.org/0513bka31 Fertility Center of San Antonio'),
(54227, 'https://ror.org/05144hn20', 'no_lang_code', 1, 'https://ror.org/05144hn20 ASIT Biotech (Belgium)'),
(54228, 'https://ror.org/0514ew608', 'no_lang_code', 1, 'https://ror.org/0514ew608 Publicis Groupe (United States)'),
(54229, 'https://ror.org/0516vxk09', 'en', 1, 'https://ror.org/0516vxk09 Jilin Maternity and Child Health Care Hospital å‰ęž—åø‚å¦‡å¹¼äæå„é™¢'),
(54230, 'https://ror.org/0517a1s55', 'en', 1, 'https://ror.org/0517a1s55 Associates in Neurology'),
(54231, 'https://ror.org/0518f9g13', 'pl', 1, 'https://ror.org/0518f9g13 Wojewódzki Inspektorat Ochrony Środowiska w Warszawie'),
(54232, 'https://ror.org/0518jvn15', 'no_lang_code', 1, 'https://ror.org/0518jvn15 Genera (Croatia)'),
(54233, 'https://ror.org/051bbf974', 'en', 1, 'https://ror.org/051bbf974 Drug Studies America'),
(54234, 'https://ror.org/051bx8r16', 'en', 1, 'https://ror.org/051bx8r16 National Research Development Corporation'),
(54235, 'https://ror.org/051f3s362', 'it', 1, 'https://ror.org/051f3s362 Fondazione Pezcoller'),
(54236, 'https://ror.org/051gnwf77', 'en', 1, 'https://ror.org/051gnwf77 Retina Specialists of Michigan'),
(54237, 'https://ror.org/051h7x990', 'de', 1, 'https://ror.org/051h7x990 Reha Rheinfelden'),
(54238, 'https://ror.org/051jd1s66', 'en', 1, 'https://ror.org/051jd1s66 Washington State Institute for Public Policy'),
(54239, 'https://ror.org/051k8ns77', 'en', 1, 'https://ror.org/051k8ns77 Center for Energy Workforce Development'),
(54240, 'https://ror.org/051mdb162', 'en', 1, 'https://ror.org/051mdb162 Heartbeat Trust'),
(54241, 'https://ror.org/051mth390', 'no_lang_code', 1, 'https://ror.org/051mth390 BIC (France)'),
(54242, 'https://ror.org/051nc1562', 'en', 1, 'https://ror.org/051nc1562 Orthopedic One'),
(54243, 'https://ror.org/051nxta34', 'de', 1, 'https://ror.org/051nxta34 Landesfachhochschule für Gesundheitsberufe Claudiana'),
(54244, 'https://ror.org/051pbge72', 'no_lang_code', 1, 'https://ror.org/051pbge72 WiLAN (Canada)'),
(54245, 'https://ror.org/051s40g85', 'en', 1, 'https://ror.org/051s40g85 Farm Concern International'),
(54246, 'https://ror.org/051s9pp55', 'no_lang_code', 1, 'https://ror.org/051s9pp55 Hirose Electric (Japan) ćƒ’ćƒ­ć‚»é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(54247, 'https://ror.org/051sqq958', 'en', 1, 'https://ror.org/051sqq958 Vermont State House'),
(54248, 'https://ror.org/051ss5t53', 'en', 1, 'https://ror.org/051ss5t53 Cardiac Study Center'),
(54249, 'https://ror.org/051t33546', 'en', 1, 'https://ror.org/051t33546 Asian Disaster Preparedness Center'),
(54250, 'https://ror.org/051tj3a26', 'no_lang_code', 1, 'https://ror.org/051tj3a26 IBSA Institut Biochimique (Switzerland)'),
(54251, 'https://ror.org/051tmqm80', 'en', 1, 'https://ror.org/051tmqm80 JEHT Foundation'),
(54252, 'https://ror.org/051vpna32', 'no_lang_code', 1, 'https://ror.org/051vpna32 Siemens (Singapore)'),
(54253, 'https://ror.org/051vsps84', 'en', 1, 'https://ror.org/051vsps84 Retina Partners'),
(54254, 'https://ror.org/051w9x193', 'en', 1, 'https://ror.org/051w9x193 Phipps Houses'),
(54255, 'https://ror.org/051xfzj96', 'en', 1, 'https://ror.org/051xfzj96 Cleveland Eye Clinic'),
(54256, 'https://ror.org/051xm8t15', 'en', 1, 'https://ror.org/051xm8t15 Riverside Clinical Research'),
(54257, 'https://ror.org/051yr1559', 'en', 1, 'https://ror.org/051yr1559 DeGregorio Family Foundation'),
(54258, 'https://ror.org/0520qph23', 'en', 1, 'https://ror.org/0520qph23 Muzeum Narodowe w Gdańsku National Museum in Gdansk'),
(54259, 'https://ror.org/0521k5n17', 'no_lang_code', 1, 'https://ror.org/0521k5n17 Western Digital (Japan)'),
(54260, 'https://ror.org/05225cn18', 'no_lang_code', 1, 'https://ror.org/05225cn18 InDex Pharmaceuticals (Sweden)'),
(54261, 'https://ror.org/0523s0t06', 'no_lang_code', 1, 'https://ror.org/0523s0t06 Gerot Lannach (Austria)'),
(54262, 'https://ror.org/052595073', 'de', 1, 'https://ror.org/052595073 Erich Und Gertrud Roggenbuck Stiftung'),
(54263, 'https://ror.org/0527hjt81', 'en', 1, 'https://ror.org/0527hjt81 Clinical Science Institute'),
(54264, 'https://ror.org/0527w1g58', 'sv', 1, 'https://ror.org/0527w1g58'),
(54265, 'https://ror.org/052a0g260', 'en', 1, 'https://ror.org/052a0g260 Arab British Chamber of Commerce غرفة التجارة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ©'),
(54266, 'https://ror.org/052bk9j85', 'no_lang_code', 1, 'https://ror.org/052bk9j85 PHARM (Italy)'),
(54267, 'https://ror.org/052c7a780', 'en', 1, 'https://ror.org/052c7a780 Australia Bioinformatics Resource'),
(54268, 'https://ror.org/052cecc97', 'en', 1, 'https://ror.org/052cecc97 London Clinic'),
(54269, 'https://ror.org/052ckfz09', 'en', 1, 'https://ror.org/052ckfz09 Pediatric Brain Tumor Foundation'),
(54270, 'https://ror.org/052d5f872', 'no_lang_code', 1, 'https://ror.org/052d5f872 Indena (Italy)'),
(54271, 'https://ror.org/052dytr59', 'pt', 1, 'https://ror.org/052dytr59 Centro de Pesquisas Oncológicas'),
(54272, 'https://ror.org/052fbzq52', 'en', 1, 'https://ror.org/052fbzq52 DAISY Foundation'),
(54273, 'https://ror.org/052gr6m21', 'no_lang_code', 1, 'https://ror.org/052gr6m21 Konami (Japan) ć‚³ćƒŠćƒŸćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(54274, 'https://ror.org/052jep661', 'en', 1, 'https://ror.org/052jep661 Klaus Tschira Foundation'),
(54275, 'https://ror.org/052krvf25', 'de', 1, 'https://ror.org/052krvf25 Winghofer Medicum'),
(54276, 'https://ror.org/052nngb38', 'en', 1, 'https://ror.org/052nngb38 Cancer Research Foundation'),
(54277, 'https://ror.org/052pyty42', 'en', 1, 'https://ror.org/052pyty42 Donner Canadian Foundation Fondation canadienne Donner'),
(54278, 'https://ror.org/052q26725', 'en', 1, 'https://ror.org/052q26725 Affiliated Hospital of Shandong University of Traditional Chinese Medicine å±±äøœäø­åŒ»čÆå¤§å­¦é™„å±žåŒ»é™¢'),
(54279, 'https://ror.org/052qtc529', 'en', 1, 'https://ror.org/052qtc529 Bernice E Holland Foundation'),
(54280, 'https://ror.org/052rprq10', 'en', 1, 'https://ror.org/052rprq10 Childrens Brittle Bone Foundation'),
(54281, 'https://ror.org/052s8wv93', 'en', 1, 'https://ror.org/052s8wv93 An Roinn LeanaĆ­ agus GnóthaĆ­ Ɠige Department of Children and Youth Affairs'),
(54282, 'https://ror.org/052t3p256', 'fr', 1, 'https://ror.org/052t3p256 HƓpital Joseph-Ducuing'),
(54283, 'https://ror.org/052v10q58', 'no_lang_code', 1, 'https://ror.org/052v10q58 VDO (Germany)'),
(54284, 'https://ror.org/052xee859', 'en', 1, 'https://ror.org/052xee859 Clayton Eye Center'),
(54285, 'https://ror.org/052z64z26', 'en', 1, 'https://ror.org/052z64z26 Danish Chiropractors’ Association Dansk Kiropraktor Forening'),
(54286, 'https://ror.org/052zm4082', 'en', 1, 'https://ror.org/052zm4082 Discover Vision Centers'),
(54287, 'https://ror.org/0530jqt13', 'en', 1, 'https://ror.org/0530jqt13 John Thomas Schroeder Foundation'),
(54288, 'https://ror.org/0530vbv92', 'fr', 1, 'https://ror.org/0530vbv92 Oxfam SolidaritƩ'),
(54289, 'https://ror.org/0530w9m46', 'no_lang_code', 1, 'https://ror.org/0530w9m46 Oculis (Iceland)'),
(54290, 'https://ror.org/0530z0775', 'en', 1, 'https://ror.org/0530z0775 Meadows Dental Clinic'),
(54291, 'https://ror.org/0531chw57', 'en', 1, 'https://ror.org/0531chw57 Center For Medicare Advocacy'),
(54292, 'https://ror.org/05323zs40', 'en', 1, 'https://ror.org/05323zs40 Foundation for Economic Education'),
(54293, 'https://ror.org/0536g5z46', 'en', 1, 'https://ror.org/0536g5z46 International Network of Health Promoting Hospitals & Health Services'),
(54294, 'https://ror.org/0539m8k84', 'fr', 1, 'https://ror.org/0539m8k84 Fondation Tuck'),
(54295, 'https://ror.org/0539z1e56', 'no_lang_code', 1, 'https://ror.org/0539z1e56 Neoperl (Germany)'),
(54296, 'https://ror.org/053aytr73', 'en', 1, 'https://ror.org/053aytr73 Accion International'),
(54297, 'https://ror.org/053bhq168', 'en', 1, 'https://ror.org/053bhq168 Community Foundation Grand Forks East Grand Forks and Region'),
(54298, 'https://ror.org/053dw0508', 'en', 1, 'https://ror.org/053dw0508 Columbus Eye Surgery Center'),
(54299, 'https://ror.org/053fdhz60', 'en', 1, 'https://ror.org/053fdhz60 San Diego Fertility Center'),
(54300, 'https://ror.org/053g1y030', 'en', 1, 'https://ror.org/053g1y030 Foundation for Vaccine Research'),
(54301, 'https://ror.org/053gvz184', 'en', 1, 'https://ror.org/053gvz184 Barr Foundation'),
(54302, 'https://ror.org/053jgsp62', 'en', 1, 'https://ror.org/053jgsp62 Institut für Iranistik Institute of Iranian Studies'),
(54303, 'https://ror.org/053khm112', 'en', 1, 'https://ror.org/053khm112 Frankel Family Foundation'),
(54304, 'https://ror.org/053kmxx33', 'en', 1, 'https://ror.org/053kmxx33 Casa Latina'),
(54305, 'https://ror.org/053kxry22', 'no_lang_code', 1, 'https://ror.org/053kxry22 Sahyadri Hospital'),
(54306, 'https://ror.org/053mjqy14', 'no_lang_code', 1, 'https://ror.org/053mjqy14 Natural Synergies (United Kingdom)'),
(54307, 'https://ror.org/053nqm606', 'en', 1, 'https://ror.org/053nqm606 Fiatal KĆ©pzőművĆ©szek StĆŗdiója Studio of Young Artists Association'),
(54308, 'https://ror.org/053ppg430', 'en', 1, 'https://ror.org/053ppg430 First Tee of Greater Seattle'),
(54309, 'https://ror.org/053qbaa96', 'en', 1, 'https://ror.org/053qbaa96 Park Foundation'),
(54310, 'https://ror.org/053qr8q83', 'en', 1, 'https://ror.org/053qr8q83 Jonathan Powell Hope Foundation'),
(54311, 'https://ror.org/053s4c885', 'en', 1, 'https://ror.org/053s4c885 New Brunswick Public Library Service'),
(54312, 'https://ror.org/053sgn987', 'en', 1, 'https://ror.org/053sgn987 TOTALL Diabetes Hormone Institute'),
(54313, 'https://ror.org/053w93n68', 'en', 1, 'https://ror.org/053w93n68 FSHD Global Research Foundation'),
(54314, 'https://ror.org/053wha491', 'en', 1, 'https://ror.org/053wha491 Bon Secours Mary Immaculate Hospital'),
(54315, 'https://ror.org/053xq8k96', 'no_lang_code', 1, 'https://ror.org/053xq8k96 Actelion (Netherlands)'),
(54316, 'https://ror.org/053xt2a19', 'en', 1, 'https://ror.org/053xt2a19 London International Development Centre'),
(54317, 'https://ror.org/053ynnf14', 'en', 1, 'https://ror.org/053ynnf14 Native American Youth and Family Center'),
(54318, 'https://ror.org/053yw1360', 'en', 1, 'https://ror.org/053yw1360 Nanxi Mountain Hospital å¹æč„æēŗ³č„æå±±åŒ»é™¢'),
(54319, 'https://ror.org/053yw9t96', 'en', 1, 'https://ror.org/053yw9t96 Canadian Intensive Care Foundation'),
(54320, 'https://ror.org/053z5p960', 'no_lang_code', 1, 'https://ror.org/053z5p960 Mobile Assay (United States)'),
(54321, 'https://ror.org/053zny898', 'de', 1, 'https://ror.org/053zny898 SAPHIR Radiochirurgie'),
(54322, 'https://ror.org/054162a80', 'no_lang_code', 1, 'https://ror.org/054162a80 Universal Court Reporting (United States)'),
(54323, 'https://ror.org/05420w677', 'no_lang_code', 1, 'https://ror.org/05420w677 Light Sciences Oncology (United States)'),
(54324, 'https://ror.org/0543wxy83', 'en', 1, 'https://ror.org/0543wxy83 Dermatology Research Center'),
(54325, 'https://ror.org/0549zep27', 'en', 1, 'https://ror.org/0549zep27 Association for Glycogen Storage Disease'),
(54326, 'https://ror.org/054ak8145', 'en', 1, 'https://ror.org/054ak8145 European Scientific Working group on Influenza'),
(54327, 'https://ror.org/054bqdz45', 'en', 1, 'https://ror.org/054bqdz45 Leukaemia and Blood Cancer New Zealand'),
(54328, 'https://ror.org/054d9v685', 'en', 1, 'https://ror.org/054d9v685 National Foundation for Medical Research and Innovation'),
(54329, 'https://ror.org/054e5vv45', 'en', 1, 'https://ror.org/054e5vv45 Girard Foundation'),
(54330, 'https://ror.org/054jwp491', 'en', 1, 'https://ror.org/054jwp491 Arkay Foundation'),
(54331, 'https://ror.org/054k1z757', 'no_lang_code', 1, 'https://ror.org/054k1z757 GALENpharma (Germany)'),
(54332, 'https://ror.org/054kfq324', 'en', 1, 'https://ror.org/054kfq324 American Society for Radiation Oncology'),
(54333, 'https://ror.org/054nv4a88', 'en', 1, 'https://ror.org/054nv4a88 Ford Family Foundation'),
(54334, 'https://ror.org/054qagt04', 'no_lang_code', 1, 'https://ror.org/054qagt04 Assembly Biosciences (United States)'),
(54335, 'https://ror.org/054qhne75', 'en', 1, 'https://ror.org/054qhne75 Edcamp Foundation');
INSERT INTO `rors` VALUES
(54336, 'https://ror.org/054r1pe06', 'en', 1, 'https://ror.org/054r1pe06 New York City Charter School Center'),
(54337, 'https://ror.org/054r3wx31', 'no_lang_code', 1, 'https://ror.org/054r3wx31 Hill Top Research (United States)'),
(54338, 'https://ror.org/054r7w343', 'en', 1, 'https://ror.org/054r7w343 John-Kenyon'),
(54339, 'https://ror.org/054rttv92', 'en', 1, 'https://ror.org/054rttv92 Gesellschaft für Pädiatrische Onkologie und Hämatologie Society of Paediatric Oncology and Haematology'),
(54340, 'https://ror.org/054t0kh70', 'no_lang_code', 1, 'https://ror.org/054t0kh70 Yueqing People''s Hospital ä¹ęø…äŗŗę°‘åŒ»é™¢'),
(54341, 'https://ror.org/054xkse79', 'en', 1, 'https://ror.org/054xkse79 American Academy of Implant Dentistry'),
(54342, 'https://ror.org/054ztez58', 'en', 1, 'https://ror.org/054ztez58 Institute for Female Pelvic Medicine and Reconstructive Surgery'),
(54343, 'https://ror.org/05501m963', 'en', 1, 'https://ror.org/05501m963 Obayashi Foundation å¤§ęž—č²”å›£'),
(54344, 'https://ror.org/0551a9d91', 'en', 1, 'https://ror.org/0551a9d91 Insight Therapeutics'),
(54345, 'https://ror.org/05525qx48', 'en', 1, 'https://ror.org/05525qx48 Tauber Eye Center'),
(54346, 'https://ror.org/0552rpn97', 'en', 1, 'https://ror.org/0552rpn97 Midwest Eye Center'),
(54347, 'https://ror.org/05539he75', 'no_lang_code', 1, 'https://ror.org/05539he75 Brose Fahrzeugteile (Germany)'),
(54348, 'https://ror.org/0553bq478', 'no_lang_code', 1, 'https://ror.org/0553bq478 Axcella Health (United States)'),
(54349, 'https://ror.org/0554nwf36', 'en', 1, 'https://ror.org/0554nwf36 Arab Federation for Libraries & Information ال؄تحاد Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ł„Ł…ŁƒŲŖŲØŲ§ŲŖ ŁˆŲ§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ - اعلم'),
(54350, 'https://ror.org/05551pd32', 'da', 1, 'https://ror.org/05551pd32 Albertslund Kommune'),
(54351, 'https://ror.org/05556yk85', 'en', 1, 'https://ror.org/05556yk85 Colorado Kidney Care'),
(54352, 'https://ror.org/0555br587', 'en', 1, 'https://ror.org/0555br587 Employee Assistance Research Foundation'),
(54353, 'https://ror.org/0556dev32', 'en', 1, 'https://ror.org/0556dev32 Korea Foundation for Advanced Studies'),
(54354, 'https://ror.org/0556xc623', 'en', 1, 'https://ror.org/0556xc623 Children''s Home Society of Washington'),
(54355, 'https://ror.org/05574b264', 'en', 1, 'https://ror.org/05574b264 Washington State Budget and Policy Center'),
(54356, 'https://ror.org/0559b0w16', 'en', 1, 'https://ror.org/0559b0w16 Hydrogen Education Foundation'),
(54357, 'https://ror.org/055b77k30', 'no_lang_code', 1, 'https://ror.org/055b77k30 Wabtec (United States)'),
(54358, 'https://ror.org/055bddn28', 'en', 1, 'https://ror.org/055bddn28 Lake County Schools'),
(54359, 'https://ror.org/055cmzr24', 'en', 1, 'https://ror.org/055cmzr24 MaxCure Hospitals'),
(54360, 'https://ror.org/055dxk232', 'en', 1, 'https://ror.org/055dxk232 Western Maryland Health System'),
(54361, 'https://ror.org/055e82g34', 'en', 1, 'https://ror.org/055e82g34 Foundation for Iranian Studies'),
(54362, 'https://ror.org/055fn0a35', 'de', 1, 'https://ror.org/055fn0a35 Spital Zollikerberg'),
(54363, 'https://ror.org/055jart15', 'en', 1, 'https://ror.org/055jart15 PolicyLink'),
(54364, 'https://ror.org/055pzrx21', 'en', 1, 'https://ror.org/055pzrx21 O. J. Noer Research Foundation'),
(54365, 'https://ror.org/055vygt66', 'en', 1, 'https://ror.org/055vygt66 Engineering Information Foundation'),
(54366, 'https://ror.org/055wmq758', 'no_lang_code', 1, 'https://ror.org/055wmq758 Auris Medical (Switzerland)'),
(54367, 'https://ror.org/055xdas15', 'no_lang_code', 1, 'https://ror.org/055xdas15 AIM Group (Tanzania)'),
(54368, 'https://ror.org/055xh0h60', 'no_lang_code', 1, 'https://ror.org/055xh0h60 Nordic Pharma (Czechia)'),
(54369, 'https://ror.org/055y3af70', 'en', 1, 'https://ror.org/055y3af70 Daniel Heumann Fund for Spinal Cord Research'),
(54370, 'https://ror.org/055ybk671', 'en', 1, 'https://ror.org/055ybk671 Japan Breast Cancer Research Group ę—„ęœ¬ä¹³ē™Œē ”ē©¶ć‚°ćƒ«ćƒ¼ćƒ—'),
(54371, 'https://ror.org/0560cwj87', 'en', 1, 'https://ror.org/0560cwj87 Musella Foundation For Brain Tumor Research and Information'),
(54372, 'https://ror.org/0560gb543', 'no_lang_code', 1, 'https://ror.org/0560gb543 Bausch Health (United Kingdom)'),
(54373, 'https://ror.org/0563hxx86', 'en', 1, 'https://ror.org/0563hxx86 National Kidney Foundation of South Africa'),
(54374, 'https://ror.org/0563mqb36', 'no_lang_code', 1, 'https://ror.org/0563mqb36 Photonamic (Germany)'),
(54375, 'https://ror.org/0564n1z40', 'en', 1, 'https://ror.org/0564n1z40 Asthma Foundation of Tasmania'),
(54376, 'https://ror.org/0564r0810', 'no_lang_code', 1, 'https://ror.org/0564r0810 AU Optronics (Taiwan)'),
(54377, 'https://ror.org/0567cdq47', 'en', 1, 'https://ror.org/0567cdq47 Project Everyone'),
(54378, 'https://ror.org/056a5c150', 'en', 1, 'https://ror.org/056a5c150 Hampton Roads Community Foundation'),
(54379, 'https://ror.org/056b3tw70', 'en', 1, 'https://ror.org/056b3tw70 Center Orthopedic & Neurosurgical Care & Research'),
(54380, 'https://ror.org/056brkm80', 'en', 1, 'https://ror.org/056brkm80 Hospitalsenhed Midt Regional Hospital Central Jutland'),
(54381, 'https://ror.org/056egm241', 'no_lang_code', 1, 'https://ror.org/056egm241 Siemens (Switzerland)'),
(54382, 'https://ror.org/056ezdx45', 'en', 1, 'https://ror.org/056ezdx45 Surin Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąøøąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(54383, 'https://ror.org/056f6wa50', 'sv', 1, 'https://ror.org/056f6wa50 Barndiabetesfondens'),
(54384, 'https://ror.org/056gcnh74', 'en', 1, 'https://ror.org/056gcnh74 Nancy Owens Memorial Foundation'),
(54385, 'https://ror.org/056hgyx35', 'en', 1, 'https://ror.org/056hgyx35 University Prep'),
(54386, 'https://ror.org/056kpdx27', 'nl', 1, 'https://ror.org/056kpdx27 HOVON – the Haemato Oncology Foundation for Adults in the Netherlands Hemato-Oncologie voor Volwassenen Nederland, Hovon'),
(54387, 'https://ror.org/056q5pg38', 'en', 1, 'https://ror.org/056q5pg38 National Association of Student Financial Aid Administrators'),
(54388, 'https://ror.org/056q6cq39', 'en', 1, 'https://ror.org/056q6cq39 Developing Countries Vaccine Manufactures Network'),
(54389, 'https://ror.org/056rb6h71', 'en', 1, 'https://ror.org/056rb6h71 Draper Richards Kaplan Foundation'),
(54390, 'https://ror.org/056sccp51', 'en', 1, 'https://ror.org/056sccp51 Ministry of Labour, Family, Social Affairs and Equal Opportunities'),
(54391, 'https://ror.org/056serj42', 'ms', 1, 'https://ror.org/056serj42 KPJ Ampang Puteri Specialist Hospital'),
(54392, 'https://ror.org/056t5vv75', 'en', 1, 'https://ror.org/056t5vv75 King Mongkut Memorial Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ąøˆąø±ąø‡ąø«ąø§ąø±ąø”ą¹€ąøžąøŠąø£ąøšąøøąø£ąøµ'),
(54393, 'https://ror.org/056t7dy19', 'en', 1, 'https://ror.org/056t7dy19 National Health Law Program'),
(54394, 'https://ror.org/056tjaa40', 'en', 1, 'https://ror.org/056tjaa40 Foundation for Psychocultural Research'),
(54395, 'https://ror.org/056tx3q55', 'en', 1, 'https://ror.org/056tx3q55 Kraff Eye Institute'),
(54396, 'https://ror.org/056v5p787', 'fr', 1, 'https://ror.org/056v5p787 Centre Hospitalier Saint-Nazaire'),
(54397, 'https://ror.org/056wwjf73', 'en', 1, 'https://ror.org/056wwjf73 Baltic Studies Centre'),
(54398, 'https://ror.org/056zfc440', 'no_lang_code', 1, 'https://ror.org/056zfc440 Visteon (South Korea)'),
(54399, 'https://ror.org/056zmsz35', 'en', 1, 'https://ror.org/056zmsz35 Northeast Baptist Hospital'),
(54400, 'https://ror.org/0570b1p95', 'en', 1, 'https://ror.org/0570b1p95 Christianity Today'),
(54401, 'https://ror.org/0572j1008', 'en', 1, 'https://ror.org/0572j1008 Missouri Heart Center'),
(54402, 'https://ror.org/05735qy63', 'no_lang_code', 1, 'https://ror.org/05735qy63 Polichem (Switzerland)'),
(54403, 'https://ror.org/0574d2g06', 'no_lang_code', 1, 'https://ror.org/0574d2g06 LETI Pharma (Germany)'),
(54404, 'https://ror.org/0574ytm77', 'en', 1, 'https://ror.org/0574ytm77 Atsumi International Scholarship Foundation ęø„ē¾Žå›½éš›äŗ¤ęµč²”å›£'),
(54405, 'https://ror.org/057766n30', 'no_lang_code', 1, 'https://ror.org/057766n30 Evoqua Water Technologies (United States)'),
(54406, 'https://ror.org/0577zeb92', 'no_lang_code', 1, 'https://ror.org/0577zeb92 Cytovac (Denmark)'),
(54407, 'https://ror.org/0578kzx16', 'en', 1, 'https://ror.org/0578kzx16 Complete Eye Care of Medina'),
(54408, 'https://ror.org/05797ak83', 'no_lang_code', 1, 'https://ror.org/05797ak83 Regulon (Greece)'),
(54409, 'https://ror.org/057a67e20', 'en', 1, 'https://ror.org/057a67e20 Setshaba Research Centre'),
(54410, 'https://ror.org/057b7mv80', 'en', 1, 'https://ror.org/057b7mv80 Los Alamitos Medical Center'),
(54411, 'https://ror.org/057bn5g61', 'sv', 1, 'https://ror.org/057bn5g61 Lindesbergs lasarett'),
(54412, 'https://ror.org/057c61d28', 'en', 1, 'https://ror.org/057c61d28 Georgia Cancer Specialists'),
(54413, 'https://ror.org/057dcw631', 'en', 1, 'https://ror.org/057dcw631 Innovation Center for U.S. Dairy'),
(54414, 'https://ror.org/057k33642', 'en', 1, 'https://ror.org/057k33642 New York eHealth Collaborative'),
(54415, 'https://ror.org/057p4eb38', 'no_lang_code', 1, 'https://ror.org/057p4eb38 BioibƩrica (Spain)'),
(54416, 'https://ror.org/057pe1087', 'no_lang_code', 1, 'https://ror.org/057pe1087 Genmab (Denmark)'),
(54417, 'https://ror.org/057q2wg27', 'no_lang_code', 1, 'https://ror.org/057q2wg27 Chilbal Film (Denmark)'),
(54418, 'https://ror.org/057r3sk04', 'no_lang_code', 1, 'https://ror.org/057r3sk04 Bioven (United Kingdom)'),
(54419, 'https://ror.org/057rcgy56', 'en', 1, 'https://ror.org/057rcgy56 Bharti Centre for Communication'),
(54420, 'https://ror.org/057skcn66', 'en', 1, 'https://ror.org/057skcn66 Chongqing Jiulongpo People''s Hospital'),
(54421, 'https://ror.org/057tdah35', 'es', 1, 'https://ror.org/057tdah35 Grupo EspaƱol Multidisciplinar de Melanoma'),
(54422, 'https://ror.org/057tjtc32', 'en', 1, 'https://ror.org/057tjtc32 Geological Society of Australia'),
(54423, 'https://ror.org/057vhsp23', 'no_lang_code', 1, 'https://ror.org/057vhsp23 Nuctech (China) 威视肔份'),
(54424, 'https://ror.org/057xq2p09', 'en', 1, 'https://ror.org/057xq2p09 Frey Foundation'),
(54425, 'https://ror.org/057yjva61', 'en', 1, 'https://ror.org/057yjva61 Triad Clinical Trials'),
(54426, 'https://ror.org/0584p3034', 'no_lang_code', 1, 'https://ror.org/0584p3034 Sealed Air (United States)'),
(54427, 'https://ror.org/0584zca10', 'no_lang_code', 1, 'https://ror.org/0584zca10 Oquirr Marketing Institute (United States)'),
(54428, 'https://ror.org/0585zpm44', 'en', 1, 'https://ror.org/0585zpm44 West Coast Retina'),
(54429, 'https://ror.org/0586ax657', 'en', 1, 'https://ror.org/0586ax657 Dermatology Associates of Tallahassee'),
(54430, 'https://ror.org/0587cd856', 'en', 1, 'https://ror.org/0587cd856 Grigg Lewis Foundation'),
(54431, 'https://ror.org/0587jcv93', 'en', 1, 'https://ror.org/0587jcv93 Foundation To Eradicate Duchenne'),
(54432, 'https://ror.org/0587zpn52', 'en', 1, 'https://ror.org/0587zpn52 Grieg Foundation'),
(54433, 'https://ror.org/058djb788', 'en', 1, 'https://ror.org/058djb788 Cairo University hospitals Ł…Ų³ŲŖŲ“ŁŁŠŲ§ŲŖ Ų¬Ų§Ł…Ų¹Ų© القاهرة'),
(54434, 'https://ror.org/058dp8a10', 'en', 1, 'https://ror.org/058dp8a10 Karl Kirchgessner Foundation'),
(54435, 'https://ror.org/058f84k27', 'it', 1, 'https://ror.org/058f84k27 Fondazione Italiana di Ricerca per la Sclerosi Laterale Amiotrofica Italian research Foundation for ALS'),
(54436, 'https://ror.org/058fjhm66', 'de', 1, 'https://ror.org/058fjhm66 Baugarten Zürich Stiftung'),
(54437, 'https://ror.org/058h4cw85', 'en', 1, 'https://ror.org/058h4cw85 The Spine & Nerve Centers of the Virginias'),
(54438, 'https://ror.org/058j98r16', 'de', 1, 'https://ror.org/058j98r16 Berthold Leibinger Stiftung'),
(54439, 'https://ror.org/058ns4d40', 'en', 1, 'https://ror.org/058ns4d40 Hoglund Foundation'),
(54440, 'https://ror.org/058p87465', 'en', 1, 'https://ror.org/058p87465 Rhode Island Blood Center'),
(54441, 'https://ror.org/058pt1z69', 'no_lang_code', 1, 'https://ror.org/058pt1z69 Luzitin (Portugal)'),
(54442, 'https://ror.org/058qcpv96', 'no_lang_code', 1, 'https://ror.org/058qcpv96 Electrolux (Sweden)'),
(54443, 'https://ror.org/058rchw45', 'en', 1, 'https://ror.org/058rchw45 American Society of Mammalogists'),
(54444, 'https://ror.org/058rdjg17', 'no_lang_code', 1, 'https://ror.org/058rdjg17 DEKA (United States)'),
(54445, 'https://ror.org/058rrg706', 'no_lang_code', 1, 'https://ror.org/058rrg706 Carroll & Meynell Transformers (United Kingdom)'),
(54446, 'https://ror.org/058st1g82', 'no_lang_code', 1, 'https://ror.org/058st1g82 DeLaval (Sweden)'),
(54447, 'https://ror.org/058xgwf08', 'en', 1, 'https://ror.org/058xgwf08 Carcinoid Cancer Foundation'),
(54448, 'https://ror.org/058y7jv19', 'en', 1, 'https://ror.org/058y7jv19 German Marshall Fund of the United States'),
(54449, 'https://ror.org/059030y69', 'no_lang_code', 1, 'https://ror.org/059030y69 Codon (Germany)'),
(54450, 'https://ror.org/05938c493', 'pl', 1, 'https://ror.org/05938c493 Specjalistyczny Szpital im.E.Szczeklika w Tarnowie'),
(54451, 'https://ror.org/0594ske86', 'en', 1, 'https://ror.org/0594ske86 VA Nebraska Western Iowa Health Care System'),
(54452, 'https://ror.org/0597jrb38', 'en', 1, 'https://ror.org/0597jrb38 Grable Foundation'),
(54453, 'https://ror.org/0597vc250', 'en', 1, 'https://ror.org/0597vc250 British Society of Audiology'),
(54454, 'https://ror.org/0597vhv77', 'no_lang_code', 1, 'https://ror.org/0597vhv77 Noritsu (Japan) ćƒŽćƒ¼ćƒŖćƒ„é‹¼ę©Ÿę Ŗå¼ä¼šē¤¾'),
(54455, 'https://ror.org/05980d896', 'en', 1, 'https://ror.org/05980d896 Angioma Alliance'),
(54456, 'https://ror.org/05983pc92', 'en', 1, 'https://ror.org/05983pc92 Malaysia Toray Science Foundation'),
(54457, 'https://ror.org/059a53184', 'no_lang_code', 1, 'https://ror.org/059a53184 TauRx (United Kingdom)'),
(54458, 'https://ror.org/059b87n81', 'fr', 1, 'https://ror.org/059b87n81 Infirmerie Protestante'),
(54459, 'https://ror.org/059c9vn90', 'en', 1, 'https://ror.org/059c9vn90 First Affiliated Hospital of Henan University of Traditional Chinese Medicine ę²³å—äø­åŒ»å­¦é™¢ē¬¬äø€åŒ»é™¢'),
(54460, 'https://ror.org/059fmxd48', 'fr', 1, 'https://ror.org/059fmxd48 Clinique Mutualiste Chirurgicale'),
(54461, 'https://ror.org/059gb3r46', 'en', 1, 'https://ror.org/059gb3r46 TKL Research'),
(54462, 'https://ror.org/059hdm253', 'da', 1, 'https://ror.org/059hdm253 Harboefonden'),
(54463, 'https://ror.org/059j2zt82', 'en', 1, 'https://ror.org/059j2zt82 Mobility Outreach International'),
(54464, 'https://ror.org/059ja6e58', 'en', 1, 'https://ror.org/059ja6e58 Defense Technology Security Administration'),
(54465, 'https://ror.org/059mdcg68', 'no_lang_code', 1, 'https://ror.org/059mdcg68 Bavarian Nordic (United States)'),
(54466, 'https://ror.org/059mm1v54', 'no_lang_code', 1, 'https://ror.org/059mm1v54 Wirtgen (Germany)'),
(54467, 'https://ror.org/059nnvm90', 'en', 1, 'https://ror.org/059nnvm90 Connecticut Office of the Governor'),
(54468, 'https://ror.org/059psfa96', 'en', 1, 'https://ror.org/059psfa96 Ben and Maytee Fisch Foundation'),
(54469, 'https://ror.org/059q6am89', 'en', 1, 'https://ror.org/059q6am89 EB House Austria'),
(54470, 'https://ror.org/059rngg59', 'en', 1, 'https://ror.org/059rngg59 American Friends of Laniado Hospital'),
(54471, 'https://ror.org/059s09c28', 'no_lang_code', 1, 'https://ror.org/059s09c28 Cook Medical (Denmark)'),
(54472, 'https://ror.org/059sg9z95', 'no_lang_code', 1, 'https://ror.org/059sg9z95 Kaytee Avian Foundation'),
(54473, 'https://ror.org/059sh8413', 'en', 1, 'https://ror.org/059sh8413 Office of the State Inspector General'),
(54474, 'https://ror.org/059w6nf94', 'en', 1, 'https://ror.org/059w6nf94 International Centre for Art and New Technologies MezinĆ”rodnĆ­ Centrum Pro UměnĆ­ a NovĆ© Technologie'),
(54475, 'https://ror.org/059wqqf58', 'en', 1, 'https://ror.org/059wqqf58 Wuzhou Red Cross Hospital ę¢§å·žåø‚ēŗ¢åå­—ä¼šåŒ»é™¢'),
(54476, 'https://ror.org/059xg9f68', 'en', 1, 'https://ror.org/059xg9f68 Alliance for Epilepsy Research'),
(54477, 'https://ror.org/05a0f0y47', 'en', 1, 'https://ror.org/05a0f0y47 Irvine Health Foundation'),
(54478, 'https://ror.org/05a10ec77', 'no_lang_code', 1, 'https://ror.org/05a10ec77 Newmont Mining (United States)'),
(54479, 'https://ror.org/05a1nps39', 'no_lang_code', 1, 'https://ror.org/05a1nps39 New Life Scientific (United States)'),
(54480, 'https://ror.org/05a1nta88', 'no_lang_code', 1, 'https://ror.org/05a1nta88 Rosetta Stone (United States)'),
(54481, 'https://ror.org/05a2x2n50', 'en', 1, 'https://ror.org/05a2x2n50 Administrația Națională Apele RomĆ¢ne Romanian Waters National Administration'),
(54482, 'https://ror.org/05a48y547', 'en', 1, 'https://ror.org/05a48y547 Nordic MDS Group'),
(54483, 'https://ror.org/05a4wc005', 'en', 1, 'https://ror.org/05a4wc005 Nargis Dutt Memorial Foundation'),
(54484, 'https://ror.org/05a5zgn96', 'en', 1, 'https://ror.org/05a5zgn96 Bader Philanthropies'),
(54485, 'https://ror.org/05a6zqv42', 'en', 1, 'https://ror.org/05a6zqv42 United Nations Association of the United States of America'),
(54486, 'https://ror.org/05a94k872', 'en', 1, 'https://ror.org/05a94k872 Johann Radon Institut für Angewandte Mathematik Johann Radon Institute for Computational and Applied Mathematics'),
(54487, 'https://ror.org/05a9nb826', 'no_lang_code', 1, 'https://ror.org/05a9nb826 CNS Research (United States)'),
(54488, 'https://ror.org/05aar4096', 'de', 1, 'https://ror.org/05aar4096 Krankenhaus Porz am Rhein'),
(54489, 'https://ror.org/05aawzp88', 'en', 1, 'https://ror.org/05aawzp88 Great Minds'),
(54490, 'https://ror.org/05ab5m237', 'no_lang_code', 1, 'https://ror.org/05ab5m237 Mannesmann (Germany)'),
(54491, 'https://ror.org/05ac1r749', 'en', 1, 'https://ror.org/05ac1r749 Kilo Diabetes and Vascular Research Foundation'),
(54492, 'https://ror.org/05af1hn65', 'en', 1, 'https://ror.org/05af1hn65 British Thyroid Foundation'),
(54493, 'https://ror.org/05afz7j54', 'en', 1, 'https://ror.org/05afz7j54 University Foot & Ankle Institute'),
(54494, 'https://ror.org/05ahejj17', 'it', 1, 'https://ror.org/05ahejj17 Fondazione Cassa di Risparmio di Pistoia e Pescia'),
(54495, 'https://ror.org/05ahn7y97', 'no_lang_code', 1, 'https://ror.org/05ahn7y97 Rexgenero (United Kingdom)'),
(54496, 'https://ror.org/05akbpx97', 'en', 1, 'https://ror.org/05akbpx97 RTOG Foundation'),
(54497, 'https://ror.org/05ansvf21', 'no_lang_code', 1, 'https://ror.org/05ansvf21 Rohto Pharmaceutical (United Kingdom)'),
(54498, 'https://ror.org/05as9mv70', 'en', 1, 'https://ror.org/05as9mv70 National Laboratory for Education Transformation'),
(54499, 'https://ror.org/05avn2m80', 'no_lang_code', 1, 'https://ror.org/05avn2m80 Edwards (United Kingdom)'),
(54500, 'https://ror.org/05aw6p704', 'en', 1, 'https://ror.org/05aw6p704 West German Heart and Vascular Center Essen Westdeutsche Herz- und Gefäßzentrum Essen'),
(54501, 'https://ror.org/05ay13t70', 'fr', 1, 'https://ror.org/05ay13t70 Terre des Hommes'),
(54502, 'https://ror.org/05azmnk92', 'en', 1, 'https://ror.org/05azmnk92 Noble Network of Charter Schools'),
(54503, 'https://ror.org/05b05qq44', 'en', 1, 'https://ror.org/05b05qq44 Eye Center of Southern Connecticut'),
(54504, 'https://ror.org/05b32w766', 'en', 1, 'https://ror.org/05b32w766 Institute for Jewish Spirituality'),
(54505, 'https://ror.org/05b6k3g41', 'no_lang_code', 1, 'https://ror.org/05b6k3g41 Evgen Pharma (United Kingdom)'),
(54506, 'https://ror.org/05b820q66', 'en', 1, 'https://ror.org/05b820q66 Sky Ridge Medical Center'),
(54507, 'https://ror.org/05b9vxh94', 'es', 1, 'https://ror.org/05b9vxh94 Hospital Universitari de Vic'),
(54508, 'https://ror.org/05ba0x014', 'en', 1, 'https://ror.org/05ba0x014 Seattle Housing Authority'),
(54509, 'https://ror.org/05ba87b21', 'en', 1, 'https://ror.org/05ba87b21 Jewish Association Serving the Aging'),
(54510, 'https://ror.org/05bby3d90', 'en', 1, 'https://ror.org/05bby3d90 Glaucoma Associates of Texas'),
(54511, 'https://ror.org/05bc1rm89', 'en', 1, 'https://ror.org/05bc1rm89 Wellesley Centers for Women'),
(54512, 'https://ror.org/05bdc8539', 'en', 1, 'https://ror.org/05bdc8539 Clayton Sleep Institute'),
(54513, 'https://ror.org/05bevn213', 'en', 1, 'https://ror.org/05bevn213 East Bay Community Foundation'),
(54514, 'https://ror.org/05bf2vj98', 'no_lang_code', 1, 'https://ror.org/05bf2vj98 Sanofi (United Kingdom)'),
(54515, 'https://ror.org/05bhnz872', 'no_lang_code', 1, 'https://ror.org/05bhnz872 Sanofi (Hungary)'),
(54516, 'https://ror.org/05bhs6b69', 'en', 1, 'https://ror.org/05bhs6b69 Tampa Bay Medical Research'),
(54517, 'https://ror.org/05bntm267', 'no_lang_code', 1, 'https://ror.org/05bntm267 Lear (United States)'),
(54518, 'https://ror.org/05bnw2b86', 'en', 1, 'https://ror.org/05bnw2b86 Hand Foundation'),
(54519, 'https://ror.org/05bpx8696', 'en', 1, 'https://ror.org/05bpx8696 Monterey Institute for Technology and Education'),
(54520, 'https://ror.org/05bqezz06', 'en', 1, 'https://ror.org/05bqezz06 Norwich University Applied Research Institute'),
(54521, 'https://ror.org/05bqz6909', 'en', 1, 'https://ror.org/05bqz6909 Hazel K. Goddess Fund for Stroke Research in Women'),
(54522, 'https://ror.org/05bv6q633', 'en', 1, 'https://ror.org/05bv6q633 Katzen Eye Care & Laser Center'),
(54523, 'https://ror.org/05bxbrn63', 'en', 1, 'https://ror.org/05bxbrn63 Inner Mongolia Autonomous Region Hospital of Traditional Chinese Medicine å†…č’™å¤č‡Ŗę²»åŒŗäø­åŒ»åŒ»é™¢'),
(54524, 'https://ror.org/05bywz149', 'en', 1, 'https://ror.org/05bywz149 Center for Dermatology, Cosmetic & Laser Surgery'),
(54525, 'https://ror.org/05bzd1d42', 'en', 1, 'https://ror.org/05bzd1d42 Executive Forests Agency'),
(54526, 'https://ror.org/05c1g2f47', 'no_lang_code', 1, 'https://ror.org/05c1g2f47 Xcovery (United States)'),
(54527, 'https://ror.org/05c3vdm18', 'no_lang_code', 1, 'https://ror.org/05c3vdm18 Bucher Emhart Glass (Switzerland)'),
(54528, 'https://ror.org/05c5ac029', 'en', 1, 'https://ror.org/05c5ac029 New South Wales Nurses and Midwives Association'),
(54529, 'https://ror.org/05c5x8342', 'en', 1, 'https://ror.org/05c5x8342 Kwanjeong Educational Foundation'),
(54530, 'https://ror.org/05c7rv794', 'en', 1, 'https://ror.org/05c7rv794 Futaba Electronics Memorial Foundation å…¬ē›Šč²”å›£ę³•äŗŗ åŒč‘‰é›»å­čØ˜åæµč²”å›£'),
(54531, 'https://ror.org/05c96b989', 'en', 1, 'https://ror.org/05c96b989 Balboa Nephrology Medical Group'),
(54532, 'https://ror.org/05cb8xv31', 'en', 1, 'https://ror.org/05cb8xv31 United General Hospital'),
(54533, 'https://ror.org/05cbsfm97', 'no_lang_code', 1, 'https://ror.org/05cbsfm97 Inventprise (United States)'),
(54534, 'https://ror.org/05cejc480', 'en', 1, 'https://ror.org/05cejc480 American Italian Cancer Foundation'),
(54535, 'https://ror.org/05cfb4981', 'no_lang_code', 1, 'https://ror.org/05cfb4981 Winkhaus (Germany)'),
(54536, 'https://ror.org/05cfkkr16', 'no_lang_code', 1, 'https://ror.org/05cfkkr16 Institut für Biomedizinische Analytik und NMR Imaging (Germany)'),
(54537, 'https://ror.org/05ch0a064', 'en', 1, 'https://ror.org/05ch0a064 Doctors Cancer Foundation'),
(54538, 'https://ror.org/05cm6kv55', 'no_lang_code', 1, 'https://ror.org/05cm6kv55 Cipla (Belgium)'),
(54539, 'https://ror.org/05crdkd52', 'en', 1, 'https://ror.org/05crdkd52 Sheepcot Medical Centre'),
(54540, 'https://ror.org/05csfs312', 'ca', 1, 'https://ror.org/05csfs312 Hospital Sant Jaume de Calella'),
(54541, 'https://ror.org/05csn7t20', 'en', 1, 'https://ror.org/05csn7t20 Fairfield Hospital'),
(54542, 'https://ror.org/05cszw148', 'en', 1, 'https://ror.org/05cszw148 Kempe Foundation Kempestiftelserna'),
(54543, 'https://ror.org/05cw31648', 'de', 1, 'https://ror.org/05cw31648 Heimer Stiftung'),
(54544, 'https://ror.org/05cwwq597', 'no_lang_code', 1, 'https://ror.org/05cwwq597 Johnson Electric (Switzerland)'),
(54545, 'https://ror.org/05cy1th84', 'no_lang_code', 1, 'https://ror.org/05cy1th84 Amazonen-Werke (Germany)'),
(54546, 'https://ror.org/05cyn4y81', 'no_lang_code', 1, 'https://ror.org/05cyn4y81 Medical Developments (United Kingdom)'),
(54547, 'https://ror.org/05czgp859', 'en', 1, 'https://ror.org/05czgp859 Myasthenia Gravis Foundation of America'),
(54548, 'https://ror.org/05d088546', 'no_lang_code', 1, 'https://ror.org/05d088546 Baxter (Netherlands)'),
(54549, 'https://ror.org/05d14hv12', 'en', 1, 'https://ror.org/05d14hv12 Beez Foundation'),
(54550, 'https://ror.org/05d46q131', 'en', 1, 'https://ror.org/05d46q131 Australian College of Critical Care Nurses'),
(54551, 'https://ror.org/05d53xd56', 'en', 1, 'https://ror.org/05d53xd56 Rata Foundation'),
(54552, 'https://ror.org/05d56bw89', 'en', 1, 'https://ror.org/05d56bw89 Ian''s Friends Foundation'),
(54553, 'https://ror.org/05d89kr76', 'de', 1, 'https://ror.org/05d89kr76 Johannes Wesling Klinikum Minden'),
(54554, 'https://ror.org/05d9syz50', 'no_lang_code', 1, 'https://ror.org/05d9syz50 Unitus Labs'),
(54555, 'https://ror.org/05dank931', 'no_lang_code', 1, 'https://ror.org/05dank931 Mauna Kea Technologies (United States)'),
(54556, 'https://ror.org/05dayh150', 'en', 1, 'https://ror.org/05dayh150 Baumann Cosmetic Dermatology'),
(54557, 'https://ror.org/05db0d889', 'en', 1, 'https://ror.org/05db0d889 Fondazione Grigioni per il Morbo di Parkinson Grigioni Foundation for Parkinson''s disease'),
(54558, 'https://ror.org/05dbdfg95', 'en', 1, 'https://ror.org/05dbdfg95 International Transactional Analysis Association'),
(54559, 'https://ror.org/05dbj3194', 'en', 1, 'https://ror.org/05dbj3194 St. Bernards Clopton Clinic'),
(54560, 'https://ror.org/05dcttj85', 'en', 1, 'https://ror.org/05dcttj85 Center for Evaluation Innovation'),
(54561, 'https://ror.org/05dehe044', 'en', 1, 'https://ror.org/05dehe044 Guenther Dermatology Research Centre'),
(54562, 'https://ror.org/05dezr114', 'en', 1, 'https://ror.org/05dezr114 Institute of Mental Hygiene'),
(54563, 'https://ror.org/05dhebt29', 'en', 1, 'https://ror.org/05dhebt29 Gabba Dermatology'),
(54564, 'https://ror.org/05dj4bc96', 'en', 1, 'https://ror.org/05dj4bc96 Sall Research Medical Center'),
(54565, 'https://ror.org/05dmnc009', 'no_lang_code', 1, 'https://ror.org/05dmnc009 Ab Analitica (Italy)'),
(54566, 'https://ror.org/05dq3dn18', 'no_lang_code', 1, 'https://ror.org/05dq3dn18 Hori Sciences and Arts Foundation å €ē§‘å­¦čŠøč”“ęŒÆčˆˆč²”å›£'),
(54567, 'https://ror.org/05dq78k50', 'no_lang_code', 1, 'https://ror.org/05dq78k50 BrainScope (United States)'),
(54568, 'https://ror.org/05dqak117', 'en', 1, 'https://ror.org/05dqak117 Santa Cruz County Office of Education'),
(54569, 'https://ror.org/05ds19c85', 'en', 1, 'https://ror.org/05ds19c85 Hayao Nakayama Foundation for Science & Technology and Culture å…¬ē›Šč²”å›£ę³•äŗŗäø­å±±éš¼é›„ē§‘å­¦ęŠ€č”“ę–‡åŒ–č²”å›£'),
(54570, 'https://ror.org/05ds5y270', 'en', 1, 'https://ror.org/05ds5y270 IDinsight'),
(54571, 'https://ror.org/05dvmag14', 'no_lang_code', 1, 'https://ror.org/05dvmag14 JST Mfg(Japan)'),
(54572, 'https://ror.org/05dzdeq86', 'es', 1, 'https://ror.org/05dzdeq86 Centro MƩdico Recoletas Paracelso'),
(54573, 'https://ror.org/05dzndt41', 'en', 1, 'https://ror.org/05dzndt41 Metropolitan Asian Family Services'),
(54574, 'https://ror.org/05e12c976', 'en', 1, 'https://ror.org/05e12c976 School for Ethics and Global Leadership'),
(54575, 'https://ror.org/05e497m36', 'en', 1, 'https://ror.org/05e497m36 Medicines Evaluation Unit'),
(54576, 'https://ror.org/05e536w67', 'en', 1, 'https://ror.org/05e536w67 Institute of Molecular Medicine and Biomedical Research Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪœĪæĻĪ¹Ī±ĪŗĪ®Ļ‚ Ιατρικής και Ī’Ī¹ĪæĻŠĪ±Ļ„ĻĪ¹ĪŗĪ®Ļ‚ ĪˆĻĪµĻ…Ī½Ī±Ļ‚'),
(54577, 'https://ror.org/05e56c835', 'en', 1, 'https://ror.org/05e56c835 Medical Research Network'),
(54578, 'https://ror.org/05e7wc386', 'no_lang_code', 1, 'https://ror.org/05e7wc386 Livvon (United States)'),
(54579, 'https://ror.org/05eaa2738', 'en', 1, 'https://ror.org/05eaa2738 Community Foundation of Louisville'),
(54580, 'https://ror.org/05eat3g39', 'no_lang_code', 1, 'https://ror.org/05eat3g39 Borealis (Austria)'),
(54581, 'https://ror.org/05eb21k90', 'en', 1, 'https://ror.org/05eb21k90 Clinical Research Consortium'),
(54582, 'https://ror.org/05ebvq193', 'no_lang_code', 1, 'https://ror.org/05ebvq193 AXON Neuroscience (Slovakia)'),
(54583, 'https://ror.org/05ef6s903', 'en', 1, 'https://ror.org/05ef6s903 Alzheimer Society of Manitoba'),
(54584, 'https://ror.org/05egn8t81', 'fr', 1, 'https://ror.org/05egn8t81 Cliniques du Sud Luxembourg'),
(54585, 'https://ror.org/05ehe8t08', 'en', 1, 'https://ror.org/05ehe8t08 UC Davis Children''s Hospital'),
(54586, 'https://ror.org/05ej58m83', 'en', 1, 'https://ror.org/05ej58m83 Dougherty Foundation'),
(54587, 'https://ror.org/05ek20966', 'en', 1, 'https://ror.org/05ek20966 National Peace Corps Association'),
(54588, 'https://ror.org/05emg8z25', 'en', 1, 'https://ror.org/05emg8z25 Landsteiner Foundation for Blood Transfusion Research Landsteiner Stichting voor Bloedtransfusieresearch'),
(54589, 'https://ror.org/05end5z77', 'en', 1, 'https://ror.org/05end5z77 Memorial Orthopaedic Surgical Group'),
(54590, 'https://ror.org/05ep59t88', 'no_lang_code', 1, 'https://ror.org/05ep59t88 Radio One (United States)'),
(54591, 'https://ror.org/05epqd940', 'fr', 1, 'https://ror.org/05epqd940 Centre Hospitalier DƩpartemental VendƩe'),
(54592, 'https://ror.org/05er00a75', 'no_lang_code', 1, 'https://ror.org/05er00a75 Linde (United States)'),
(54593, 'https://ror.org/05erkbf97', 'en', 1, 'https://ror.org/05erkbf97 Lietuvos ornitologų draugija Lithuanian Ornithological Society'),
(54594, 'https://ror.org/05esvmf28', 'en', 1, 'https://ror.org/05esvmf28 Providence Clinical Research'),
(54595, 'https://ror.org/05esvpz79', 'en', 1, 'https://ror.org/05esvpz79 Celma Mastry Ovarian Cancer Foundation'),
(54596, 'https://ror.org/05exe6d14', 'nl', 1, 'https://ror.org/05exe6d14 Franciscus Vlietland'),
(54597, 'https://ror.org/05eysk957', 'en', 1, 'https://ror.org/05eysk957 Knox County Schools'),
(54598, 'https://ror.org/05ezdye14', 'en', 1, 'https://ror.org/05ezdye14 CHOC Foundation'),
(54599, 'https://ror.org/05ezss241', 'en', 1, 'https://ror.org/05ezss241 Gift of Life Foundation'),
(54600, 'https://ror.org/05f0w5759', 'en', 1, 'https://ror.org/05f0w5759 Norman Regional Health System'),
(54601, 'https://ror.org/05f157f34', 'no_lang_code', 1, 'https://ror.org/05f157f34 Chemo (France)'),
(54602, 'https://ror.org/05f1j8s33', 'en', 1, 'https://ror.org/05f1j8s33 American Academy of Audiology'),
(54603, 'https://ror.org/05f2dw604', 'en', 1, 'https://ror.org/05f2dw604 Somerset Skin Centre'),
(54604, 'https://ror.org/05f676n58', 'en', 1, 'https://ror.org/05f676n58 Goldhirsh Foundation'),
(54605, 'https://ror.org/05f6qyf30', 'en', 1, 'https://ror.org/05f6qyf30 Spanish Oncology Genitourinary Group'),
(54606, 'https://ror.org/05f6w6d75', 'en', 1, 'https://ror.org/05f6w6d75 American Asthma Foundation'),
(54607, 'https://ror.org/05f7htr55', 'nl', 1, 'https://ror.org/05f7htr55 Radiotherapeutisch Instituut Friesland'),
(54608, 'https://ror.org/05f8ejd38', 'de', 1, 'https://ror.org/05f8ejd38 Asklepios Kliniken Hamburg'),
(54609, 'https://ror.org/05fa63r36', 'no_lang_code', 1, 'https://ror.org/05fa63r36 Daido Steel (Japan) å¤§åŒē‰¹ę®Šé‹¼'),
(54610, 'https://ror.org/05fbx4s48', 'de', 1, 'https://ror.org/05fbx4s48 Allergiezentrum Wien West'),
(54611, 'https://ror.org/05fcw6535', 'en', 1, 'https://ror.org/05fcw6535 Lasker Foundation'),
(54612, 'https://ror.org/05fddma93', 'en', 1, 'https://ror.org/05fddma93 Partnership for Public Service'),
(54613, 'https://ror.org/05fexbp32', 'en', 1, 'https://ror.org/05fexbp32 Milken Family Foundation'),
(54614, 'https://ror.org/05fg52t30', 'en', 1, 'https://ror.org/05fg52t30 Bullitt Foundation'),
(54615, 'https://ror.org/05fgbny35', 'en', 1, 'https://ror.org/05fgbny35 Matthew''s Friends'),
(54616, 'https://ror.org/05fgpk863', 'no_lang_code', 1, 'https://ror.org/05fgpk863 Atlantic Clinical Research Collaborative (United States)'),
(54617, 'https://ror.org/05fhw8710', 'en', 1, 'https://ror.org/05fhw8710 Durbar Mahila Samanwaya Committee ą¦¦ą§ą¦°ą§ą¦¬ą¦¾ą¦° মহিলা ą¦øą¦®ą¦Øą§ą¦¬ą¦Æą¦¼ সমিতি'),
(54618, 'https://ror.org/05fktwr23', 'en', 1, 'https://ror.org/05fktwr23 Gardiner Foundation'),
(54619, 'https://ror.org/05fnzzk18', 'no_lang_code', 1, 'https://ror.org/05fnzzk18 Center for Clinical Research (United States)'),
(54620, 'https://ror.org/05fp2yk16', 'en', 1, 'https://ror.org/05fp2yk16 Liquid Interactive'),
(54621, 'https://ror.org/05frb5d17', 'en', 1, 'https://ror.org/05frb5d17 Ethnic Arts Council of Los Angeles'),
(54622, 'https://ror.org/05fssfa53', 'en', 1, 'https://ror.org/05fssfa53 Warren County Public Schools'),
(54623, 'https://ror.org/05ftdq537', 'en', 1, 'https://ror.org/05ftdq537 Northwest Resource Associates'),
(54624, 'https://ror.org/05ftn7r26', 'no_lang_code', 1, 'https://ror.org/05ftn7r26 Avillion (United Kingdom)'),
(54625, 'https://ror.org/05fvbww60', 'no_lang_code', 1, 'https://ror.org/05fvbww60 Grifols (United States)'),
(54626, 'https://ror.org/05fw76c12', 'no_lang_code', 1, 'https://ror.org/05fw76c12 Principia Biopharma (United States)'),
(54627, 'https://ror.org/05fy0j332', 'en', 1, 'https://ror.org/05fy0j332 Japan Ecology Foundation čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒč²”å›£'),
(54628, 'https://ror.org/05fz6ex02', 'no_lang_code', 1, 'https://ror.org/05fz6ex02 Alphafilm and Kommunikation (Denmark)'),
(54629, 'https://ror.org/05g0ds378', 'no_lang_code', 1, 'https://ror.org/05g0ds378 Dainichiseika (Japan) å¤§ę—„ē²¾åŒ–å·„'),
(54630, 'https://ror.org/05g1jvk52', 'en', 1, 'https://ror.org/05g1jvk52 Irish Heart Foundation'),
(54631, 'https://ror.org/05g427r55', 'en', 1, 'https://ror.org/05g427r55 Deupree Family Foundation'),
(54632, 'https://ror.org/05g452t43', 'et', 1, 'https://ror.org/05g452t43 Association of Estonian Open Youth Centres, Eesti Avatud Noortekeskuste Ühendus'),
(54633, 'https://ror.org/05g4hh326', 'en', 1, 'https://ror.org/05g4hh326 Baylor Scott & White All Saints Medical Center'),
(54634, 'https://ror.org/05g6yjw88', 'en', 1, 'https://ror.org/05g6yjw88 King Center Charter School'),
(54635, 'https://ror.org/05g777x71', 'no_lang_code', 1, 'https://ror.org/05g777x71 Synthon (Czechia)'),
(54636, 'https://ror.org/05g96wy68', 'en', 1, 'https://ror.org/05g96wy68 Parents United for Responsible Education'),
(54637, 'https://ror.org/05gcc9f60', 'no_lang_code', 1, 'https://ror.org/05gcc9f60 Endress+Hauser (Switzerland)'),
(54638, 'https://ror.org/05gdcn753', 'en', 1, 'https://ror.org/05gdcn753 Or Yarok Association אור ירוק'),
(54639, 'https://ror.org/05gg6a906', 'no_lang_code', 1, 'https://ror.org/05gg6a906 advanceCOR (Germany)'),
(54640, 'https://ror.org/05ggszr08', 'en', 1, 'https://ror.org/05ggszr08 Emily Dorfman Foundation for Children'),
(54641, 'https://ror.org/05gh2jr89', 'no_lang_code', 1, 'https://ror.org/05gh2jr89 NewEnergy'),
(54642, 'https://ror.org/05gh45115', 'no_lang_code', 1, 'https://ror.org/05gh45115 Rhythm (United states)'),
(54643, 'https://ror.org/05gj3bd07', 'en', 1, 'https://ror.org/05gj3bd07 Sevenzo'),
(54644, 'https://ror.org/05gj4md48', 'en', 1, 'https://ror.org/05gj4md48 Euvaldo Lodi Institute Instituto Euvaldo Lodi'),
(54645, 'https://ror.org/05gm4wq37', 'en', 1, 'https://ror.org/05gm4wq37 American Respiratory Care Foundation'),
(54646, 'https://ror.org/05gmffx67', 'no_lang_code', 1, 'https://ror.org/05gmffx67 Sucampo (Switzerland)'),
(54647, 'https://ror.org/05gn4rx69', 'no_lang_code', 1, 'https://ror.org/05gn4rx69 Dado Medical'),
(54648, 'https://ror.org/05gnax159', 'en', 1, 'https://ror.org/05gnax159 Childrens Leukemia Foundation of Michigan'),
(54649, 'https://ror.org/05gp08a36', 'en', 1, 'https://ror.org/05gp08a36 Acumen'),
(54650, 'https://ror.org/05gpmjj80', 'no_lang_code', 1, 'https://ror.org/05gpmjj80 Stelic (Japan)'),
(54651, 'https://ror.org/05gqz0k77', 'en', 1, 'https://ror.org/05gqz0k77 African Development Bank Group'),
(54652, 'https://ror.org/05grp4x11', 'no_lang_code', 1, 'https://ror.org/05grp4x11 Grunenthal (Spain)'),
(54653, 'https://ror.org/05gtwra97', 'de', 1, 'https://ror.org/05gtwra97 UniversitƤts HNO Klinik Mannheim'),
(54654, 'https://ror.org/05gtx2j83', 'no_lang_code', 1, 'https://ror.org/05gtx2j83 Fives (France)'),
(54655, 'https://ror.org/05gv5sv44', 'en', 1, 'https://ror.org/05gv5sv44 International Association of Sedimentologists'),
(54656, 'https://ror.org/05gyvs118', 'no_lang_code', 1, 'https://ror.org/05gyvs118 Newell Brands (United States)'),
(54657, 'https://ror.org/05h10sf50', 'en', 1, 'https://ror.org/05h10sf50 Brain Resource Center'),
(54658, 'https://ror.org/05h13e956', 'no_lang_code', 1, 'https://ror.org/05h13e956 Enceladus Pharmaceuticals (Netherlands)'),
(54659, 'https://ror.org/05h1fqv07', 'en', 1, 'https://ror.org/05h1fqv07 Aicardi Syndrome Foundation'),
(54660, 'https://ror.org/05h202h75', 'no_lang_code', 1, 'https://ror.org/05h202h75 Accenture (United Kingdom)'),
(54661, 'https://ror.org/05h2pj652', 'no_lang_code', 1, 'https://ror.org/05h2pj652 Myelo Therapeutics (Germany)'),
(54662, 'https://ror.org/05h3vs194', 'en', 1, 'https://ror.org/05h3vs194 National Jewish Center for Learning and Leadership'),
(54663, 'https://ror.org/05h4evm65', 'no_lang_code', 1, 'https://ror.org/05h4evm65 TerraFrame (United States)'),
(54664, 'https://ror.org/05h4g6p05', 'en', 1, 'https://ror.org/05h4g6p05 World Affairs Council of Northern California'),
(54665, 'https://ror.org/05h4kax84', 'es', 1, 'https://ror.org/05h4kax84 Grupo de Tratamiento de los Tumores Digestivos'),
(54666, 'https://ror.org/05h4v5m71', 'en', 1, 'https://ror.org/05h4v5m71 Smith Clinic'),
(54667, 'https://ror.org/05h6f8c16', 'en', 1, 'https://ror.org/05h6f8c16 National Paideia Center'),
(54668, 'https://ror.org/05h8tj134', 'en', 1, 'https://ror.org/05h8tj134 Blanca Paloma Hospital'),
(54669, 'https://ror.org/05ha8e826', 'no_lang_code', 1, 'https://ror.org/05ha8e826 Technicolor (United States)'),
(54670, 'https://ror.org/05habh343', 'es', 1, 'https://ror.org/05habh343 Hospital de Palamós'),
(54671, 'https://ror.org/05haf2k11', 'en', 1, 'https://ror.org/05haf2k11 Veterans of Foreign Wars'),
(54672, 'https://ror.org/05hb97k72', 'en', 1, 'https://ror.org/05hb97k72 Statistics Estonia Statistikaamet'),
(54673, 'https://ror.org/05hdea206', 'en', 1, 'https://ror.org/05hdea206 United Indians of All Tribes'),
(54674, 'https://ror.org/05he4e720', 'no_lang_code', 1, 'https://ror.org/05he4e720 Novartis (Belgium)'),
(54675, 'https://ror.org/05hevnw21', 'en', 1, 'https://ror.org/05hevnw21 MARS Memory-Health Network'),
(54676, 'https://ror.org/05hfds782', 'no_lang_code', 1, 'https://ror.org/05hfds782 Nacey Maggioncalda Foundation'),
(54677, 'https://ror.org/05hgrv414', 'en', 1, 'https://ror.org/05hgrv414 Kampala Capital City Authority'),
(54678, 'https://ror.org/05hmy6316', 'en', 1, 'https://ror.org/05hmy6316 Bastian Voice Institute'),
(54679, 'https://ror.org/05hpdph39', 'en', 1, 'https://ror.org/05hpdph39 Pacific Business Group on Health'),
(54680, 'https://ror.org/05hq42c91', 'en', 1, 'https://ror.org/05hq42c91 Mennonite Economic Development Associates'),
(54681, 'https://ror.org/05hqtjm11', 'no_lang_code', 1, 'https://ror.org/05hqtjm11 Amgen (Netherlands)'),
(54682, 'https://ror.org/05hrjak95', 'en', 1, 'https://ror.org/05hrjak95 City West Water'),
(54683, 'https://ror.org/05htb0v42', 'en', 1, 'https://ror.org/05htb0v42 Nuffield Trust'),
(54684, 'https://ror.org/05htz0h33', 'en', 1, 'https://ror.org/05htz0h33 Tanzania Social Action Fund'),
(54685, 'https://ror.org/05hvrsg85', 'en', 1, 'https://ror.org/05hvrsg85 Food and Drug Administration'),
(54686, 'https://ror.org/05hw2m351', 'no_lang_code', 1, 'https://ror.org/05hw2m351 Shield Therapeutics (United Kingdom)'),
(54687, 'https://ror.org/05hwr2c31', 'en', 1, 'https://ror.org/05hwr2c31 Arlington Center for Dermatology'),
(54688, 'https://ror.org/05hy0av13', 'no_lang_code', 1, 'https://ror.org/05hy0av13 Otsuka (Germany)'),
(54689, 'https://ror.org/05j02j274', 'no_lang_code', 1, 'https://ror.org/05j02j274 Homviora (Germany)'),
(54690, 'https://ror.org/05j2yt510', 'en', 1, 'https://ror.org/05j2yt510 Fourth People''s Hospital of Taiyuan å¤ŖåŽŸåø‚ē¬¬å››äŗŗę°‘åŒ»é™¢_百度百科'),
(54691, 'https://ror.org/05j492n53', 'en', 1, 'https://ror.org/05j492n53 Daiichi Sankyo Foundation of Life Science'),
(54692, 'https://ror.org/05j70af50', 'no_lang_code', 1, 'https://ror.org/05j70af50 Toro (United States)'),
(54693, 'https://ror.org/05j79r106', 'no_lang_code', 1, 'https://ror.org/05j79r106 SociƩtƩ Nationale des TƩlƩcommunications du Senegal Sonatel (Senegal)'),
(54694, 'https://ror.org/05j7q4z53', 'en', 1, 'https://ror.org/05j7q4z53 Dearborn Orthopedics and Sports Medicine'),
(54695, 'https://ror.org/05j9tdb35', 'no_lang_code', 1, 'https://ror.org/05j9tdb35 Clarke (United States)'),
(54696, 'https://ror.org/05jawdm29', 'en', 1, 'https://ror.org/05jawdm29 Foundation for a Healthy Kentucky'),
(54697, 'https://ror.org/05jb62w23', 'en', 1, 'https://ror.org/05jb62w23 Houston Perinatal Associates'),
(54698, 'https://ror.org/05jbdx649', 'en', 1, 'https://ror.org/05jbdx649 Cerego'),
(54699, 'https://ror.org/05jbhfv03', 'en', 1, 'https://ror.org/05jbhfv03 Ophthalmology Associates (United States)'),
(54700, 'https://ror.org/05je2ma32', 'en', 1, 'https://ror.org/05je2ma32 Minnesota Lions Eye Bank'),
(54701, 'https://ror.org/05jff7p65', 'no_lang_code', 1, 'https://ror.org/05jff7p65 Imerys (United Kingdom)'),
(54702, 'https://ror.org/05jh56b79', 'pt', 1, 'https://ror.org/05jh56b79 Coris Medicina AvanƧada'),
(54703, 'https://ror.org/05jh9p159', 'en', 1, 'https://ror.org/05jh9p159 Ubonratchathani Cancer Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(54704, 'https://ror.org/05jhnab13', 'it', 1, 'https://ror.org/05jhnab13 Fondazione Pisa'),
(54705, 'https://ror.org/05jhy3d94', 'en', 1, 'https://ror.org/05jhy3d94 Lotex Foundation Lotex Stiftung'),
(54706, 'https://ror.org/05jj8cx84', 'en', 1, 'https://ror.org/05jj8cx84 John R. Oishei Foundation'),
(54707, 'https://ror.org/05jjnzh70', 'en', 1, 'https://ror.org/05jjnzh70 Children''s Defense Fund'),
(54708, 'https://ror.org/05jjs9s55', 'no_lang_code', 1, 'https://ror.org/05jjs9s55 Chiesi (United Kingdom)'),
(54709, 'https://ror.org/05jjyhn41', 'no_lang_code', 1, 'https://ror.org/05jjyhn41 Sicpa (Switzerland)'),
(54710, 'https://ror.org/05jke7315', 'no_lang_code', 1, 'https://ror.org/05jke7315 Pioneer (United States)'),
(54711, 'https://ror.org/05jndc687', 'en', 1, 'https://ror.org/05jndc687 Attention Deficit Disorder Treatment Center'),
(54712, 'https://ror.org/05jpj2w31', 'en', 1, 'https://ror.org/05jpj2w31 Udon Thani Hospital'),
(54713, 'https://ror.org/05jr8e497', 'en', 1, 'https://ror.org/05jr8e497 Willamette Valley Cancer Institute and Research Center'),
(54714, 'https://ror.org/05jsaxg97', 'en', 1, 'https://ror.org/05jsaxg97 Tennessee Clinical Research Center'),
(54715, 'https://ror.org/05jv9e497', 'en', 1, 'https://ror.org/05jv9e497 Johnson Family Foundation'),
(54716, 'https://ror.org/05jvxpr06', 'no_lang_code', 1, 'https://ror.org/05jvxpr06 Adienne (Switzerland)'),
(54717, 'https://ror.org/05jwkar19', 'en', 1, 'https://ror.org/05jwkar19 Nakornping Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø™ąø„ąø£ąøžąø“ąø‡ąø„ą¹Œ ąøˆąø±ąø‡ąø«ąø§ąø±ąø”ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(54718, 'https://ror.org/05jwmx239', 'no_lang_code', 1, 'https://ror.org/05jwmx239 Vista Therapeutics (United States)'),
(54719, 'https://ror.org/05jwr0z51', 'no_lang_code', 1, 'https://ror.org/05jwr0z51 Consort Medical (United Kingdom)'),
(54720, 'https://ror.org/05jxf9x26', 'no_lang_code', 1, 'https://ror.org/05jxf9x26 Vedantra Pharmaceuticals (United States)'),
(54721, 'https://ror.org/05jyk8r28', 'en', 1, 'https://ror.org/05jyk8r28 Japan Securities Scholarship Foundation ę—„ęœ¬čØ¼åˆøå„Øå­¦č²”å›£'),
(54722, 'https://ror.org/05jzx9n24', 'no_lang_code', 1, 'https://ror.org/05jzx9n24 Georg Fischer (Switzerland)'),
(54723, 'https://ror.org/05k1t9f54', 'no_lang_code', 1, 'https://ror.org/05k1t9f54 Avizorex Pharma (Spain)'),
(54724, 'https://ror.org/05k22fj16', 'en', 1, 'https://ror.org/05k22fj16 Hammoud Hospital University Medical Center مستؓفى Ų­Ł…ŁˆŲÆ'),
(54725, 'https://ror.org/05k3n9k87', 'no', 1, 'https://ror.org/05k3n9k87 Smerteklinikken'),
(54726, 'https://ror.org/05k4g0902', 'de', 1, 'https://ror.org/05k4g0902 Gerhard C. Starck Stiftung'),
(54727, 'https://ror.org/05k7n6k09', 'no_lang_code', 1, 'https://ror.org/05k7n6k09 Vaxon Biotech (France)'),
(54728, 'https://ror.org/05k7zsn51', 'en', 1, 'https://ror.org/05k7zsn51 MPN Research Foundation'),
(54729, 'https://ror.org/05k812a28', 'en', 1, 'https://ror.org/05k812a28 Hebei Science and Technology Department'),
(54730, 'https://ror.org/05k8zfb28', 'no_lang_code', 1, 'https://ror.org/05k8zfb28 Kurita Water Industries (Japan) ę —ē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(54731, 'https://ror.org/05k9hyx80', 'en', 1, 'https://ror.org/05k9hyx80 NOK Foundation'),
(54732, 'https://ror.org/05kd6q218', 'en', 1, 'https://ror.org/05kd6q218 Colorado Medical Research Center'),
(54733, 'https://ror.org/05kd99h55', 'no_lang_code', 1, 'https://ror.org/05kd99h55 Mologen (Germany)'),
(54734, 'https://ror.org/05kdjqf72', 'en', 1, 'https://ror.org/05kdjqf72 Stefan Meyer Institute for Subatomic Physics Stefan-Meyer-Institut'),
(54735, 'https://ror.org/05ke3c359', 'en', 1, 'https://ror.org/05ke3c359 SEED Foundation'),
(54736, 'https://ror.org/05kgjg660', 'en', 1, 'https://ror.org/05kgjg660 Navajo Nation Library'),
(54737, 'https://ror.org/05kjf3v93', 'en', 1, 'https://ror.org/05kjf3v93 Research Institute of Dallas'),
(54738, 'https://ror.org/05kqvjw80', 'en', 1, 'https://ror.org/05kqvjw80 Campaign for College Opportunity'),
(54739, 'https://ror.org/05kqxme91', 'en', 1, 'https://ror.org/05kqxme91 Michael Reese Health Trust'),
(54740, 'https://ror.org/05krhrc62', 'en', 1, 'https://ror.org/05krhrc62 Nathans Battle Foundation'),
(54741, 'https://ror.org/05kw0cb16', 'en', 1, 'https://ror.org/05kw0cb16 Sadick Research Group'),
(54742, 'https://ror.org/05kw4cv96', 'no_lang_code', 1, 'https://ror.org/05kw4cv96 Buckman Laboratories (United States)'),
(54743, 'https://ror.org/05kx6e976', 'en', 1, 'https://ror.org/05kx6e976 Efficacy Institute'),
(54744, 'https://ror.org/05ky92r72', 'en', 1, 'https://ror.org/05ky92r72 Dannon Institute'),
(54745, 'https://ror.org/05kyj3g94', 'en', 1, 'https://ror.org/05kyj3g94 Oral and Maxillofacial Surgery Foundation'),
(54746, 'https://ror.org/05kymnn64', 'no_lang_code', 1, 'https://ror.org/05kymnn64 Swedish Orphan Biovitrum (Switzerland)'),
(54747, 'https://ror.org/05kythm61', 'en', 1, 'https://ror.org/05kythm61 Appraisers Research Foundation'),
(54748, 'https://ror.org/05m0yja37', 'no_lang_code', 1, 'https://ror.org/05m0yja37 OxThera (Sweden)'),
(54749, 'https://ror.org/05m1qxf57', 'no_lang_code', 1, 'https://ror.org/05m1qxf57 NestlƩ (France)'),
(54750, 'https://ror.org/05m4bht81', 'en', 1, 'https://ror.org/05m4bht81 Childrens Fund for Glycogen Storage Disease Research'),
(54751, 'https://ror.org/05mazqk05', 'en', 1, 'https://ror.org/05mazqk05 Partnership for Learning'),
(54752, 'https://ror.org/05mbknd79', 'no_lang_code', 1, 'https://ror.org/05mbknd79 Synphora (Sweden)'),
(54753, 'https://ror.org/05mcj1v39', 'en', 1, 'https://ror.org/05mcj1v39 Alka Wildlife'),
(54754, 'https://ror.org/05md3zv31', 'en', 1, 'https://ror.org/05md3zv31 Korean Academy of Medical Sciences'),
(54755, 'https://ror.org/05me5c114', 'no_lang_code', 1, 'https://ror.org/05me5c114 Promore Pharma (Sweden)'),
(54756, 'https://ror.org/05mezvj34', 'en', 1, 'https://ror.org/05mezvj34 Comprehensive Clinical Research'),
(54757, 'https://ror.org/05mhdah91', 'en', 1, 'https://ror.org/05mhdah91 Washington Association of School Administrators'),
(54758, 'https://ror.org/05mj8hk83', 'fr', 1, 'https://ror.org/05mj8hk83 Agence de dƩveloppement de l''Oriental, Agence de l''Oriental'),
(54759, 'https://ror.org/05mjtfk75', 'no_lang_code', 1, 'https://ror.org/05mjtfk75 Echo Pharmaceuticals (Netherlands)'),
(54760, 'https://ror.org/05mkxvs25', 'no_lang_code', 1, 'https://ror.org/05mkxvs25 Vector Oncology (United States)'),
(54761, 'https://ror.org/05mkyt616', 'en', 1, 'https://ror.org/05mkyt616 Tiger Woods Foundation'),
(54762, 'https://ror.org/05mmamd82', 'en', 1, 'https://ror.org/05mmamd82 Malone Family Foundation'),
(54763, 'https://ror.org/05mnth393', 'en', 1, 'https://ror.org/05mnth393 Laidlaw Foundation'),
(54764, 'https://ror.org/05mny8609', 'it', 1, 'https://ror.org/05mny8609 Gruppo Italiano per il Trapianto di Midollo Osseo'),
(54765, 'https://ror.org/05mnyyy56', 'en', 1, 'https://ror.org/05mnyyy56 Marie Stopes International'),
(54766, 'https://ror.org/05mq03431', 'en', 1, 'https://ror.org/05mq03431 New York University Paris'),
(54767, 'https://ror.org/05mrvzj62', 'no_lang_code', 1, 'https://ror.org/05mrvzj62 Hennig Arzneimittel (Germany)'),
(54768, 'https://ror.org/05mrw0a87', 'no_lang_code', 1, 'https://ror.org/05mrw0a87 Whirlpool (Brazil)'),
(54769, 'https://ror.org/05mtmsa61', 'en', 1, 'https://ror.org/05mtmsa61 Diane and Bruce Halle Foundation'),
(54770, 'https://ror.org/05mwhee50', 'no_lang_code', 1, 'https://ror.org/05mwhee50 Bradenton Neurology'),
(54771, 'https://ror.org/05mxy6748', 'en', 1, 'https://ror.org/05mxy6748 J. E. and L. E. Mabee Foundation'),
(54772, 'https://ror.org/05n0m2q32', 'sv', 1, 'https://ror.org/05n0m2q32 O. E. och Edla Johanssons Vetenskapliga Stiftelse'),
(54773, 'https://ror.org/05n2x7017', 'en', 1, 'https://ror.org/05n2x7017 Oxford Fertility'),
(54774, 'https://ror.org/05n3kty68', 'no_lang_code', 1, 'https://ror.org/05n3kty68 Aflofarm (Poland)'),
(54775, 'https://ror.org/05n451y37', 'no_lang_code', 1, 'https://ror.org/05n451y37 Amicus Therapeutics (United Kingdom)'),
(54776, 'https://ror.org/05n4eqf04', 'en', 1, 'https://ror.org/05n4eqf04 Cystinosis Foundation'),
(54777, 'https://ror.org/05ncfp318', 'en', 1, 'https://ror.org/05ncfp318 Brain Tumor Funders Collaborative'),
(54778, 'https://ror.org/05nd26619', 'en', 1, 'https://ror.org/05nd26619 Emirates Foundation'),
(54779, 'https://ror.org/05nds5y03', 'no_lang_code', 1, 'https://ror.org/05nds5y03 Johnson County Clin-Trials (United States)'),
(54780, 'https://ror.org/05ne0gd95', 'en', 1, 'https://ror.org/05ne0gd95 Neurology, Inc'),
(54781, 'https://ror.org/05nepfp92', 'no_lang_code', 1, 'https://ror.org/05nepfp92 Wintek (Taiwan)'),
(54782, 'https://ror.org/05nfdhr48', 'en', 1, 'https://ror.org/05nfdhr48 Maternal and Child Health Hospital of Xuzhou å¾å·žåø‚å¦‡å¹¼äæå„é™¢'),
(54783, 'https://ror.org/05nn94a79', 'en', 1, 'https://ror.org/05nn94a79 Uplift Education'),
(54784, 'https://ror.org/05nnhd665', 'en', 1, 'https://ror.org/05nnhd665 CH Foundation'),
(54785, 'https://ror.org/05ntnbc55', 'en', 1, 'https://ror.org/05ntnbc55 Association Horizons'),
(54786, 'https://ror.org/05nx1dj46', 'en', 1, 'https://ror.org/05nx1dj46 Media Impact Funders');
INSERT INTO `rors` VALUES
(54787, 'https://ror.org/05nx4j589', 'no_lang_code', 1, 'https://ror.org/05nx4j589 Sterna Biologicals (Germany)'),
(54788, 'https://ror.org/05nxn2s72', 'it', 1, 'https://ror.org/05nxn2s72 Fondazione Melanoma Onlus'),
(54789, 'https://ror.org/05nxvxm15', 'en', 1, 'https://ror.org/05nxvxm15 Fourth Hospital of Inner Mongolia å†…č’™å¤ē¬¬å››åŒ»é™¢'),
(54790, 'https://ror.org/05nyeaz86', 'en', 1, 'https://ror.org/05nyeaz86 American Society of Pharmacognosy'),
(54791, 'https://ror.org/05nyyav28', 'en', 1, 'https://ror.org/05nyyav28 BirdLife Cyprus Ī Ļ„Ī·Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒĻ‚ Ī£ĻĪ½Ī“ĪµĻƒĪ¼ĪæĻ‚'),
(54792, 'https://ror.org/05nz14y12', 'da', 1, 'https://ror.org/05nz14y12 Aarhus Stadsarkiv'),
(54793, 'https://ror.org/05nzc3h14', 'en', 1, 'https://ror.org/05nzc3h14 Always Dream Foundation'),
(54794, 'https://ror.org/05nzh9f89', 'de', 1, 'https://ror.org/05nzh9f89 Evonik Stiftung'),
(54795, 'https://ror.org/05p07c550', 'en', 1, 'https://ror.org/05p07c550 Brewers Association of Australia and New Zealand'),
(54796, 'https://ror.org/05p1sde72', 'en', 1, 'https://ror.org/05p1sde72 St. Bonifatius Hospital'),
(54797, 'https://ror.org/05p2mb588', 'nl', 1, 'https://ror.org/05p2mb588 GGZ Oost Brabant'),
(54798, 'https://ror.org/05p2qs698', 'en', 1, 'https://ror.org/05p2qs698 KickStart International'),
(54799, 'https://ror.org/05p2st278', 'en', 1, 'https://ror.org/05p2st278 Davidorf Eye Group'),
(54800, 'https://ror.org/05p3n0372', 'en', 1, 'https://ror.org/05p3n0372 Signature Healthcare Brockton Hospital'),
(54801, 'https://ror.org/05p51cz50', 'en', 1, 'https://ror.org/05p51cz50 Asthma Australia'),
(54802, 'https://ror.org/05p5gkr73', 'en', 1, 'https://ror.org/05p5gkr73 Texas Public Policy Foundation'),
(54803, 'https://ror.org/05p6aq981', 'no_lang_code', 1, 'https://ror.org/05p6aq981 Dermapharm (Germany)'),
(54804, 'https://ror.org/05pe87g24', 'en', 1, 'https://ror.org/05pe87g24 Concern Worldwide US'),
(54805, 'https://ror.org/05pefgb78', 'en', 1, 'https://ror.org/05pefgb78 Carl & Emily Fuchs Foundation'),
(54806, 'https://ror.org/05phbdr70', 'en', 1, 'https://ror.org/05phbdr70 Weippe Public Library'),
(54807, 'https://ror.org/05pjfxx59', 'en', 1, 'https://ror.org/05pjfxx59 Illinois Bone and Joint Institute'),
(54808, 'https://ror.org/05pjyf321', 'en', 1, 'https://ror.org/05pjyf321 EMDR Research Foundation'),
(54809, 'https://ror.org/05pkpss54', 'no_lang_code', 1, 'https://ror.org/05pkpss54 Logitech (Switzerland)'),
(54810, 'https://ror.org/05ppfa149', 'en', 1, 'https://ror.org/05ppfa149 National Student Clearinghouse Research Center'),
(54811, 'https://ror.org/05pqpm243', 'en', 1, 'https://ror.org/05pqpm243 Junior Achievement'),
(54812, 'https://ror.org/05prtzk88', 'no_lang_code', 1, 'https://ror.org/05prtzk88 Bouty (Italy)'),
(54813, 'https://ror.org/05psy1s28', 'en', 1, 'https://ror.org/05psy1s28 Remington-Davis Clinical Research'),
(54814, 'https://ror.org/05ptrtc51', 'en', 1, 'https://ror.org/05ptrtc51 Gaozhou People''s Hospital é«˜å·žäŗŗę°‘åŒ»é™¢'),
(54815, 'https://ror.org/05pv1tb51', 'en', 1, 'https://ror.org/05pv1tb51 Taustine Eye Center'),
(54816, 'https://ror.org/05pvg9741', 'no_lang_code', 1, 'https://ror.org/05pvg9741 ImCyse (Belgium)'),
(54817, 'https://ror.org/05pvwrn10', 'no_lang_code', 1, 'https://ror.org/05pvwrn10 Xenetic Biosciences (United States)'),
(54818, 'https://ror.org/05pwxq352', 'no_lang_code', 1, 'https://ror.org/05pwxq352 Newron Pharmaceuticals (Italy)'),
(54819, 'https://ror.org/05pz1ah39', 'en', 1, 'https://ror.org/05pz1ah39 Aspire Public Schools'),
(54820, 'https://ror.org/05pzjj739', 'no_lang_code', 1, 'https://ror.org/05pzjj739 Hervana (Israel)'),
(54821, 'https://ror.org/05pzjjy67', 'en', 1, 'https://ror.org/05pzjjy67 Arab Science and Technology Foundation المؤسسة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(54822, 'https://ror.org/05q058270', 'en', 1, 'https://ror.org/05q058270 American Osteopathic Foundation'),
(54823, 'https://ror.org/05q0c4c66', 'sv', 1, 'https://ror.org/05q0c4c66 Akademikliniken'),
(54824, 'https://ror.org/05q0mws16', 'en', 1, 'https://ror.org/05q0mws16 Community Foundation of Broward'),
(54825, 'https://ror.org/05q12yf11', 'no_lang_code', 1, 'https://ror.org/05q12yf11 Klabzuba (United States)'),
(54826, 'https://ror.org/05q2bhv13', 'en', 1, 'https://ror.org/05q2bhv13 Association for Prevention Teaching and Research'),
(54827, 'https://ror.org/05q31e892', 'es', 1, 'https://ror.org/05q31e892 Fundación In Terris'),
(54828, 'https://ror.org/05q623n42', 'en', 1, 'https://ror.org/05q623n42 American Association for the Surgery of Trauma'),
(54829, 'https://ror.org/05q633c04', 'en', 1, 'https://ror.org/05q633c04 Danish Movement Disorder Society Dansk Selskab For BevƦgeforstyrrelser'),
(54830, 'https://ror.org/05q8csa40', 'fr', 1, 'https://ror.org/05q8csa40 Fondation Rose et Jean Hoguet'),
(54831, 'https://ror.org/05qe9cy98', 'en', 1, 'https://ror.org/05qe9cy98 Wolstan & Goldberg Eye Associates'),
(54832, 'https://ror.org/05qg1kx57', 'en', 1, 'https://ror.org/05qg1kx57 Hellenic Cardiovascular Research Society'),
(54833, 'https://ror.org/05qgf0573', 'no_lang_code', 1, 'https://ror.org/05qgf0573 Neovacs (France)'),
(54834, 'https://ror.org/05qjv1f51', 'no_lang_code', 1, 'https://ror.org/05qjv1f51 Erbe Elektromedizin (Germany)'),
(54835, 'https://ror.org/05qm7bg11', 'en', 1, 'https://ror.org/05qm7bg11 Apple University Consortium'),
(54836, 'https://ror.org/05qpsmp07', 'en', 1, 'https://ror.org/05qpsmp07 Center for Anxiety and Depression'),
(54837, 'https://ror.org/05qqrnb63', 'no_lang_code', 1, 'https://ror.org/05qqrnb63 AstraZeneca (Spain)'),
(54838, 'https://ror.org/05qwgjd68', 'en', 1, 'https://ror.org/05qwgjd68 Hefei First People''s Hospital åˆč‚„ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(54839, 'https://ror.org/05qwxaq58', 'en', 1, 'https://ror.org/05qwxaq58 Lampang Cancer Hospital'),
(54840, 'https://ror.org/05qy4jt44', 'en', 1, 'https://ror.org/05qy4jt44 Moscow City Oncology Hospital ā„–62'),
(54841, 'https://ror.org/05qyyb850', 'id', 1, 'https://ror.org/05qyyb850 Rumah Sakit Jantung Binawaluya'),
(54842, 'https://ror.org/05r023w67', 'en', 1, 'https://ror.org/05r023w67 Nancy Lurie Marks Family Foundation'),
(54843, 'https://ror.org/05r04rp73', 'en', 1, 'https://ror.org/05r04rp73 Comprehensive Clinical Trials'),
(54844, 'https://ror.org/05r0csf60', 'no_lang_code', 1, 'https://ror.org/05r0csf60 HRA Pharma (United Kingdom)'),
(54845, 'https://ror.org/05r0sm904', 'en', 1, 'https://ror.org/05r0sm904 Nightingale Hospital'),
(54846, 'https://ror.org/05r5a0r20', 'es', 1, 'https://ror.org/05r5a0r20 ClĆ­nica CES'),
(54847, 'https://ror.org/05r5sgs28', 'en', 1, 'https://ror.org/05r5sgs28 Washington Student Achievement Council'),
(54848, 'https://ror.org/05r5v7643', 'en', 1, 'https://ror.org/05r5v7643 CURE Childhood Cancer'),
(54849, 'https://ror.org/05r7xc820', 'no_lang_code', 1, 'https://ror.org/05r7xc820 Owens-Illinois (United States)'),
(54850, 'https://ror.org/05r8wy666', 'no_lang_code', 1, 'https://ror.org/05r8wy666 Actuant (United States)'),
(54851, 'https://ror.org/05r91hj80', 'en', 1, 'https://ror.org/05r91hj80 EyeSight Foundation of Alabama'),
(54852, 'https://ror.org/05r9h2p80', 'en', 1, 'https://ror.org/05r9h2p80 Community Broadcasting Foundation'),
(54853, 'https://ror.org/05r9qv072', 'en', 1, 'https://ror.org/05r9qv072 Lake Research Partners'),
(54854, 'https://ror.org/05r9zr616', 'en', 1, 'https://ror.org/05r9zr616 Way Back Inn'),
(54855, 'https://ror.org/05rbt5y67', 'it', 1, 'https://ror.org/05rbt5y67 Fondazione CON IL SUD'),
(54856, 'https://ror.org/05rcqmt52', 'en', 1, 'https://ror.org/05rcqmt52 Injury Care Medical Center'),
(54857, 'https://ror.org/05rdne793', 'no_lang_code', 1, 'https://ror.org/05rdne793 Lipotek (Australia)'),
(54858, 'https://ror.org/05reaew23', 'no_lang_code', 1, 'https://ror.org/05reaew23 RDD Pharma (Israel)'),
(54859, 'https://ror.org/05rfjs622', 'no_lang_code', 1, 'https://ror.org/05rfjs622 Briggs & Stratton (United States)'),
(54860, 'https://ror.org/05rka3d36', 'no_lang_code', 1, 'https://ror.org/05rka3d36 BioMarin (Ireland)'),
(54861, 'https://ror.org/05rkr5a10', 'en', 1, 'https://ror.org/05rkr5a10 M.V. Hospital for Diabetes and Diabetes Research Centre'),
(54862, 'https://ror.org/05rpr2102', 'en', 1, 'https://ror.org/05rpr2102 Jehangir Clinical development Centre'),
(54863, 'https://ror.org/05rr9na10', 'en', 1, 'https://ror.org/05rr9na10 Rwanda Zambia HIV Research Group'),
(54864, 'https://ror.org/05rtjs149', 'no_lang_code', 1, 'https://ror.org/05rtjs149 Goss (United States)'),
(54865, 'https://ror.org/05rtqvx30', 'en', 1, 'https://ror.org/05rtqvx30 American Public Media'),
(54866, 'https://ror.org/05rv54a27', 'en', 1, 'https://ror.org/05rv54a27 Massachusetts Health Quality Partners'),
(54867, 'https://ror.org/05rvwze02', 'en', 1, 'https://ror.org/05rvwze02 Jewish Women’s Foundation of Metropolitan Detroit'),
(54868, 'https://ror.org/05rx0pb87', 'en', 1, 'https://ror.org/05rx0pb87 Young Women''s Leadership Network'),
(54869, 'https://ror.org/05rzyfd75', 'no_lang_code', 1, 'https://ror.org/05rzyfd75 ProNAi Therapeutics (United States)'),
(54870, 'https://ror.org/05s2r4461', 'en', 1, 'https://ror.org/05s2r4461 Federalist Society'),
(54871, 'https://ror.org/05s3njy52', 'fr', 1, 'https://ror.org/05s3njy52 Agence de l''Eau Seine Normandie'),
(54872, 'https://ror.org/05s4sa025', 'no_lang_code', 1, 'https://ror.org/05s4sa025 Antisense Therapeutics (Australia)'),
(54873, 'https://ror.org/05s8da439', 'en', 1, 'https://ror.org/05s8da439 NAMM Foundation'),
(54874, 'https://ror.org/05s8w9t64', 'en', 1, 'https://ror.org/05s8w9t64 Warren County Health Department'),
(54875, 'https://ror.org/05s9v7453', 'en', 1, 'https://ror.org/05s9v7453 Henry Ford Learning Institute'),
(54876, 'https://ror.org/05sb4hv45', 'en', 1, 'https://ror.org/05sb4hv45 Lawrence General Hospital'),
(54877, 'https://ror.org/05sbk8w28', 'fr', 1, 'https://ror.org/05sbk8w28 Clinique Jules Verne'),
(54878, 'https://ror.org/05sgg2765', 'en', 1, 'https://ror.org/05sgg2765 Australian Spinal Research Foundation'),
(54879, 'https://ror.org/05sj5yq92', 'en', 1, 'https://ror.org/05sj5yq92 Ideas42'),
(54880, 'https://ror.org/05sjnvv07', 'en', 1, 'https://ror.org/05sjnvv07 Elsa U. Pardee Foundation'),
(54881, 'https://ror.org/05skbsx24', 'no_lang_code', 1, 'https://ror.org/05skbsx24 OneAmerica'),
(54882, 'https://ror.org/05sqjfk96', 'en', 1, 'https://ror.org/05sqjfk96 Northern California DX Foundation'),
(54883, 'https://ror.org/05ss6ff26', 'en', 1, 'https://ror.org/05ss6ff26 State Budget Institution of Health St. Petersburg Clinical Research Center Specialized Types of Medical Care Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ «Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ клинический Š½Š°ŃƒŃ‡Š½Š¾-практический центр специализированных виГов меГицинской помощи (онкологический)Ā»'),
(54884, 'https://ror.org/05ssfqx86', 'en', 1, 'https://ror.org/05ssfqx86 Adult and Pediatric Dermatology'),
(54885, 'https://ror.org/05svfda47', 'en', 1, 'https://ror.org/05svfda47 Community Foundation of Greene County'),
(54886, 'https://ror.org/05svfe466', 'en', 1, 'https://ror.org/05svfe466 Mount Vernon Clinical Research'),
(54887, 'https://ror.org/05sw5bk43', 'en', 1, 'https://ror.org/05sw5bk43 Austrian Breast & Colorectal Cancer Study Group'),
(54888, 'https://ror.org/05sw8nz16', 'en', 1, 'https://ror.org/05sw8nz16 Sanford Heart Hospital'),
(54889, 'https://ror.org/05syrg433', 'en', 1, 'https://ror.org/05syrg433 Nashville Oncology Associates'),
(54890, 'https://ror.org/05t1hxr21', 'en', 1, 'https://ror.org/05t1hxr21 George Alexander Foundation'),
(54891, 'https://ror.org/05t1jkc79', 'no_lang_code', 1, 'https://ror.org/05t1jkc79 Adyton (Czechia)'),
(54892, 'https://ror.org/05t2zwp43', 'no_lang_code', 1, 'https://ror.org/05t2zwp43 Evolva (Switzerland)'),
(54893, 'https://ror.org/05t3ctn72', 'de', 1, 'https://ror.org/05t3ctn72 Hans Eggenberger Stiftung'),
(54894, 'https://ror.org/05t5jk040', 'en', 1, 'https://ror.org/05t5jk040 PIE Network'),
(54895, 'https://ror.org/05t727p43', 'no_lang_code', 1, 'https://ror.org/05t727p43 Allergan (Belgium)'),
(54896, 'https://ror.org/05t92nq65', 'en', 1, 'https://ror.org/05t92nq65 Hannah''s Heroes Foundation'),
(54897, 'https://ror.org/05t93wr04', 'en', 1, 'https://ror.org/05t93wr04 Liz Claiborne and Art Ortenberg Foundation'),
(54898, 'https://ror.org/05taycr33', 'en', 1, 'https://ror.org/05taycr33 Long Island Skin Cancer and Dermatologic Surgery'),
(54899, 'https://ror.org/05tbc3h08', 'de', 1, 'https://ror.org/05tbc3h08 Homann-Stiftung'),
(54900, 'https://ror.org/05tdr7z74', 'en', 1, 'https://ror.org/05tdr7z74 Innovation Center Denmark'),
(54901, 'https://ror.org/05tewmz75', 'en', 1, 'https://ror.org/05tewmz75 Pride Foundation'),
(54902, 'https://ror.org/05thfh396', 'en', 1, 'https://ror.org/05thfh396 Seventh People''s Hospital of Dalian å¤§čæžåø‚ē¬¬äøƒäŗŗę°‘åŒ»é™¢'),
(54903, 'https://ror.org/05thwst63', 'en', 1, 'https://ror.org/05thwst63 United States Student Association'),
(54904, 'https://ror.org/05tm31061', 'en', 1, 'https://ror.org/05tm31061 Australian Football League'),
(54905, 'https://ror.org/05tp8q545', 'en', 1, 'https://ror.org/05tp8q545 Environment and Conservation Fund ē’°å¢ƒåŠč‡Ŗē„¶äæč‚²åŸŗé‡‘'),
(54906, 'https://ror.org/05tq1bh21', 'no_lang_code', 1, 'https://ror.org/05tq1bh21 Hospital Bandeirantes'),
(54907, 'https://ror.org/05tr58t76', 'no_lang_code', 1, 'https://ror.org/05tr58t76 Cogentix Medical (United States)'),
(54908, 'https://ror.org/05tta9x45', 'no_lang_code', 1, 'https://ror.org/05tta9x45 MicroSave'),
(54909, 'https://ror.org/05twfsj71', 'en', 1, 'https://ror.org/05twfsj71 Orenburg Regional Clinical Hospital ā„–2'),
(54910, 'https://ror.org/05twvb204', 'en', 1, 'https://ror.org/05twvb204 Advanced Dermatology'),
(54911, 'https://ror.org/05tya7346', 'en', 1, 'https://ror.org/05tya7346 Joshua Tree National Park Association'),
(54912, 'https://ror.org/05tzxyk04', 'en', 1, 'https://ror.org/05tzxyk04 National Agency for the Control of AIDS'),
(54913, 'https://ror.org/05v16nd64', 'it', 1, 'https://ror.org/05v16nd64 Agenzia Sanitaria Regionale Abruzzo'),
(54914, 'https://ror.org/05v2cwf20', 'en', 1, 'https://ror.org/05v2cwf20 Childrens Cancer Foundation'),
(54915, 'https://ror.org/05v2tzz35', 'en', 1, 'https://ror.org/05v2tzz35 Training Programs in Epidemiology and Public Health Interventions Network'),
(54916, 'https://ror.org/05v5yjs39', 'en', 1, 'https://ror.org/05v5yjs39 Palaeontological Association'),
(54917, 'https://ror.org/05v86fk30', 'no_lang_code', 1, 'https://ror.org/05v86fk30 Ironwood Pharmaceuticals (United States)'),
(54918, 'https://ror.org/05v88aw62', 'no_lang_code', 1, 'https://ror.org/05v88aw62 TE Connectivity (Belgium)'),
(54919, 'https://ror.org/05vdj2825', 'no_lang_code', 1, 'https://ror.org/05vdj2825 Nihon Kohden (Japan) ę—„ęœ¬å…‰é›»å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(54920, 'https://ror.org/05vdpyw24', 'no_lang_code', 1, 'https://ror.org/05vdpyw24 Auxilium Engineering Services (United Kingdom)'),
(54921, 'https://ror.org/05ve11g92', 'en', 1, 'https://ror.org/05ve11g92 Whatcom Community Foundation'),
(54922, 'https://ror.org/05vet6f27', 'en', 1, 'https://ror.org/05vet6f27 Pacific Charter School Development'),
(54923, 'https://ror.org/05vhwqa91', 'en', 1, 'https://ror.org/05vhwqa91 Independent Sector'),
(54924, 'https://ror.org/05vk29a32', 'en', 1, 'https://ror.org/05vk29a32 Sambodhi Research and Communications'),
(54925, 'https://ror.org/05vk9vy20', 'en', 1, 'https://ror.org/05vk9vy20 Carolina Urologic Research Center'),
(54926, 'https://ror.org/05vnb7y75', 'en', 1, 'https://ror.org/05vnb7y75 New Mexico Cancer Care Alliance'),
(54927, 'https://ror.org/05vpv9927', 'en', 1, 'https://ror.org/05vpv9927 Boston Schools Fund'),
(54928, 'https://ror.org/05vsxz108', 'en', 1, 'https://ror.org/05vsxz108 National Association of Secondary School Principals'),
(54929, 'https://ror.org/05vtsq996', 'en', 1, 'https://ror.org/05vtsq996 KIPP Bay Area Schools'),
(54930, 'https://ror.org/05vvw9r90', 'en', 1, 'https://ror.org/05vvw9r90 Office of Adolescent Health'),
(54931, 'https://ror.org/05vwr6z89', 'en', 1, 'https://ror.org/05vwr6z89 Mercy Angiography Unit'),
(54932, 'https://ror.org/05vwvtg56', 'no_lang_code', 1, 'https://ror.org/05vwvtg56 Context Network (United States)'),
(54933, 'https://ror.org/05vz9rv92', 'en', 1, 'https://ror.org/05vz9rv92 Campus Compact'),
(54934, 'https://ror.org/05w2bg876', 'en', 1, 'https://ror.org/05w2bg876 South Eastern Health and Social Care Trust'),
(54935, 'https://ror.org/05w425588', 'no_lang_code', 1, 'https://ror.org/05w425588 Ciena (United States)'),
(54936, 'https://ror.org/05w6jca21', 'en', 1, 'https://ror.org/05w6jca21 HealthCare Chaplaincy Network'),
(54937, 'https://ror.org/05w7s8q62', 'en', 1, 'https://ror.org/05w7s8q62 British International Studies Association'),
(54938, 'https://ror.org/05w8taj68', 'en', 1, 'https://ror.org/05w8taj68 Dyslexia Foundation'),
(54939, 'https://ror.org/05w8zmy08', 'no_lang_code', 1, 'https://ror.org/05w8zmy08 Abivax (France)'),
(54940, 'https://ror.org/05wcj0w85', 'en', 1, 'https://ror.org/05wcj0w85 Richland Library'),
(54941, 'https://ror.org/05wcp5302', 'en', 1, 'https://ror.org/05wcp5302 Anna-Monika-Foundation'),
(54942, 'https://ror.org/05wdyxj97', 'no_lang_code', 1, 'https://ror.org/05wdyxj97 Kyocera (United States)'),
(54943, 'https://ror.org/05wf9r455', 'no_lang_code', 1, 'https://ror.org/05wf9r455 Clinipace (United Kingdom)'),
(54944, 'https://ror.org/05wg45912', 'no_lang_code', 1, 'https://ror.org/05wg45912 Meritor (France)'),
(54945, 'https://ror.org/05wjbkr22', 'en', 1, 'https://ror.org/05wjbkr22 Blowitz-Ridgeway Foundation'),
(54946, 'https://ror.org/05wm3vw64', 'en', 1, 'https://ror.org/05wm3vw64 World Economic Forum'),
(54947, 'https://ror.org/05wng8211', 'en', 1, 'https://ror.org/05wng8211 Becket Fund for Religious Liberty'),
(54948, 'https://ror.org/05wq5t373', 'en', 1, 'https://ror.org/05wq5t373 Australian Association of Social Workers'),
(54949, 'https://ror.org/05wqa9613', 'en', 1, 'https://ror.org/05wqa9613 Ang Mo Kio Thye Hua Kwan Hospital'),
(54950, 'https://ror.org/05wqwpj81', 'en', 1, 'https://ror.org/05wqwpj81 University Cancer and Blood Center'),
(54951, 'https://ror.org/05ws0rr53', 'en', 1, 'https://ror.org/05ws0rr53 Hoopes Vision'),
(54952, 'https://ror.org/05wv0yn79', 'en', 1, 'https://ror.org/05wv0yn79 Overseas Press Club Foundation'),
(54953, 'https://ror.org/05wx81c53', 'en', 1, 'https://ror.org/05wx81c53 Clarence E. Heller Charitable Foundation'),
(54954, 'https://ror.org/05x1ct167', 'en', 1, 'https://ror.org/05x1ct167 Valley Retina Institute'),
(54955, 'https://ror.org/05x1syy12', 'en', 1, 'https://ror.org/05x1syy12 Hope Foundation for Research on Ageing'),
(54956, 'https://ror.org/05x1xqk69', 'en', 1, 'https://ror.org/05x1xqk69 Center for Inspired Teaching'),
(54957, 'https://ror.org/05x23jh68', 'en', 1, 'https://ror.org/05x23jh68 Volunteer Research Group and New Orleans Center for Clinical Research'),
(54958, 'https://ror.org/05x26aj56', 'en', 1, 'https://ror.org/05x26aj56 Carol M. Baldwin Breast Cancer Research Fund'),
(54959, 'https://ror.org/05x3hz149', 'en', 1, 'https://ror.org/05x3hz149 Financial Markets Foundation for Children'),
(54960, 'https://ror.org/05x3ned27', 'en', 1, 'https://ror.org/05x3ned27 Mid Illinois Hematology and Oncology Associates'),
(54961, 'https://ror.org/05x3zk779', 'no_lang_code', 1, 'https://ror.org/05x3zk779 Vaxxas (Australia)'),
(54962, 'https://ror.org/05x4pgd18', 'en', 1, 'https://ror.org/05x4pgd18 Alaska Heart and Vascular Institute'),
(54963, 'https://ror.org/05x8ty706', 'en', 1, 'https://ror.org/05x8ty706 Columbia Global Center'),
(54964, 'https://ror.org/05x8wa071', 'en', 1, 'https://ror.org/05x8wa071 Office of Superintendent of Public Instruction'),
(54965, 'https://ror.org/05x9xcd23', 'en', 1, 'https://ror.org/05x9xcd23 Midwest Business Group on Health'),
(54966, 'https://ror.org/05xbyr893', 'no_lang_code', 1, 'https://ror.org/05xbyr893 Southco (United States)'),
(54967, 'https://ror.org/05xcjrc42', 'en', 1, 'https://ror.org/05xcjrc42 Association for the Study of the Middle East and Africa'),
(54968, 'https://ror.org/05xckek43', 'en', 1, 'https://ror.org/05xckek43 Boston IVF'),
(54969, 'https://ror.org/05xe9t676', 'en', 1, 'https://ror.org/05xe9t676 Banting Research Foundation'),
(54970, 'https://ror.org/05xf13p94', 'no_lang_code', 1, 'https://ror.org/05xf13p94 InnoLux (Taiwan) ē¾¤å‰µå…‰é›»č‚”ä»½ęœ‰é™å…¬åø'),
(54971, 'https://ror.org/05xhay874', 'en', 1, 'https://ror.org/05xhay874 Santa Rosa County Library System'),
(54972, 'https://ror.org/05xm6n608', 'en', 1, 'https://ror.org/05xm6n608 Dermatology Clinical Research Center of San Antonio'),
(54973, 'https://ror.org/05xp52m23', 'no_lang_code', 1, 'https://ror.org/05xp52m23 Intelligent Decision Systems (Spain)'),
(54974, 'https://ror.org/05xph5761', 'en', 1, 'https://ror.org/05xph5761 Harvard Travellers Club'),
(54975, 'https://ror.org/05xprgr51', 'no_lang_code', 1, 'https://ror.org/05xprgr51 Veritas (United States)'),
(54976, 'https://ror.org/05xq0hs14', 'en', 1, 'https://ror.org/05xq0hs14 World Health Partners'),
(54977, 'https://ror.org/05xrwhp03', 'no_lang_code', 1, 'https://ror.org/05xrwhp03 Eisai (Italy)'),
(54978, 'https://ror.org/05xs24h03', 'en', 1, 'https://ror.org/05xs24h03 Joseph P. Kennedy Jr. Foundation'),
(54979, 'https://ror.org/05xtwn084', 'da', 1, 'https://ror.org/05xtwn084 Knud og Dagny Gad Andresens Fond'),
(54980, 'https://ror.org/05xwakr27', 'no_lang_code', 1, 'https://ror.org/05xwakr27 Cellex Cell Professionals (Germany)'),
(54981, 'https://ror.org/05xyjr468', 'de', 1, 'https://ror.org/05xyjr468 Klinikum Wilhelmshaven'),
(54982, 'https://ror.org/05y09kt11', 'en', 1, 'https://ror.org/05y09kt11 Altoona Arthritis and Osteoporosis Center'),
(54983, 'https://ror.org/05y0mgv66', 'en', 1, 'https://ror.org/05y0mgv66 PMG Research'),
(54984, 'https://ror.org/05y345c41', 'es', 1, 'https://ror.org/05y345c41 Hospital Jerez Puerta del Sur'),
(54985, 'https://ror.org/05y3s9y81', 'en', 1, 'https://ror.org/05y3s9y81 Hyde Family Foundations'),
(54986, 'https://ror.org/05y4zkz43', 'de', 1, 'https://ror.org/05y4zkz43 Freiwilligen Akademischen Gesellschaft'),
(54987, 'https://ror.org/05y55b611', 'no_lang_code', 1, 'https://ror.org/05y55b611 CSL (Russia)'),
(54988, 'https://ror.org/05y73pq15', 'no_lang_code', 1, 'https://ror.org/05y73pq15 Laves-Arzneimittel (Germany)'),
(54989, 'https://ror.org/05ya80s18', 'en', 1, 'https://ror.org/05ya80s18 Fred and Mary Koch Foundation'),
(54990, 'https://ror.org/05yay9903', 'en', 1, 'https://ror.org/05yay9903 American Dysautonomia Institute'),
(54991, 'https://ror.org/05ybghm69', 'en', 1, 'https://ror.org/05ybghm69 Canadian Association for Health Services and Policy Research, l''Association canadienne pur la recherche sur les services et les politiques de la santƩ'),
(54992, 'https://ror.org/05ycax488', 'en', 1, 'https://ror.org/05ycax488 Bradley Foundation'),
(54993, 'https://ror.org/05ydgps70', 'en', 1, 'https://ror.org/05ydgps70 North Toronto Eye Care'),
(54994, 'https://ror.org/05ydk8712', 'en', 1, 'https://ror.org/05ydk8712 Scottish National Blood Transfusion Service'),
(54995, 'https://ror.org/05yezgz95', 'no_lang_code', 1, 'https://ror.org/05yezgz95 Dolorgiet (Germany)'),
(54996, 'https://ror.org/05yh0gb04', 'no_lang_code', 1, 'https://ror.org/05yh0gb04 Advenio TecnoSys (India)'),
(54997, 'https://ror.org/05yjdg022', 'no_lang_code', 1, 'https://ror.org/05yjdg022 BBB Therapeutics (Netherlands)'),
(54998, 'https://ror.org/05ykzvv97', 'da', 1, 'https://ror.org/05ykzvv97 Jascha Fonden'),
(54999, 'https://ror.org/05ympyt63', 'en', 1, 'https://ror.org/05ympyt63 E3 Alliance'),
(55000, 'https://ror.org/05ymxrx78', 'en', 1, 'https://ror.org/05ymxrx78 NYSUT Education and Learning Trust'),
(55001, 'https://ror.org/00002d369', 'no_lang_code', 1, 'https://ror.org/00002d369 Azacycles (Czechia)'),
(55002, 'https://ror.org/00029be75', 'en', 1, 'https://ror.org/00029be75 Institute of Biology of Komi Scientific Centre Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° биологии Коми ŠŠ¦ Š£Ń€Šž Š ŠŠ'),
(55003, 'https://ror.org/0002exf56', 'nl', 1, 'https://ror.org/0002exf56 Wetenschappelijk Onderzoek- en Documentatiecentrum'),
(55004, 'https://ror.org/0003kpv33', 'en', 1, 'https://ror.org/0003kpv33 Biobanking and BioMolecular resources Research Infrastructure The Netherlands'),
(55005, 'https://ror.org/0003yay73', 'no_lang_code', 1, 'https://ror.org/0003yay73 SEE Laborde JP (France)'),
(55006, 'https://ror.org/00048gf56', 'no_lang_code', 1, 'https://ror.org/00048gf56 Metron (Switzerland)'),
(55007, 'https://ror.org/0004a4056', 'en', 1, 'https://ror.org/0004a4056 Alabama Department of Senior Services'),
(55008, 'https://ror.org/0007v1468', 'no_lang_code', 1, 'https://ror.org/0007v1468 Amtek (Czechia)'),
(55009, 'https://ror.org/0008w9y84', 'no_lang_code', 1, 'https://ror.org/0008w9y84 Jinpo Plus (Czechia)'),
(55010, 'https://ror.org/0009bne42', 'en', 1, 'https://ror.org/0009bne42 Immigration and Ethnic History Society'),
(55011, 'https://ror.org/0009jge67', 'en', 1, 'https://ror.org/0009jge67 Thoracic Surgery Foundation'),
(55012, 'https://ror.org/000bcd992', 'it', 1, 'https://ror.org/000bcd992 Pontificio Istituto di Archeologia Cristiana'),
(55013, 'https://ror.org/000bmd472', 'no_lang_code', 1, 'https://ror.org/000bmd472 Kuraray (United States)'),
(55014, 'https://ror.org/000dk5152', 'en', 1, 'https://ror.org/000dk5152 New Hampshire State Office of the Governor'),
(55015, 'https://ror.org/000ew5688', 'en', 1, 'https://ror.org/000ew5688 Swiss Conference of Cantonal Ministers of Education'),
(55016, 'https://ror.org/000gzpv52', 'no_lang_code', 1, 'https://ror.org/000gzpv52 Arcadis (Switzerland)'),
(55017, 'https://ror.org/000jc2g50', 'no_lang_code', 1, 'https://ror.org/000jc2g50 Stratacor (United States)'),
(55018, 'https://ror.org/000kjq947', 'en', 1, 'https://ror.org/000kjq947 Department of Space'),
(55019, 'https://ror.org/000kmds53', 'no_lang_code', 1, 'https://ror.org/000kmds53 Chryso (United States)'),
(55020, 'https://ror.org/000kv2m87', 'no_lang_code', 1, 'https://ror.org/000kv2m87 Ostroj (Czechia)'),
(55021, 'https://ror.org/000nqjq74', 'no_lang_code', 1, 'https://ror.org/000nqjq74 ASM (Japan)'),
(55022, 'https://ror.org/000pgrd37', 'no_lang_code', 1, 'https://ror.org/000pgrd37 Kairosys (United States)'),
(55023, 'https://ror.org/000qcd088', 'no_lang_code', 1, 'https://ror.org/000qcd088 L.E.T. Optomechanika (Czechia)'),
(55024, 'https://ror.org/000r42360', 'no_lang_code', 1, 'https://ror.org/000r42360 M Plus (Czechia)'),
(55025, 'https://ror.org/000s52h07', 'en', 1, 'https://ror.org/000s52h07 Sierra Club'),
(55026, 'https://ror.org/000sg8a95', 'de', 1, 'https://ror.org/000sg8a95 Vereinigung der Walliser Museen'),
(55027, 'https://ror.org/000x0ym82', 'no_lang_code', 1, 'https://ror.org/000x0ym82 LƤnsfƶrsƤkringar (Sweden)'),
(55028, 'https://ror.org/000x56e42', 'de', 1, 'https://ror.org/000x56e42 Kantonsschule Zug'),
(55029, 'https://ror.org/000y6ah26', 'es', 1, 'https://ror.org/000y6ah26 CIUDAD'),
(55030, 'https://ror.org/000yxte11', 'en', 1, 'https://ror.org/000yxte11 Southern Historical Association'),
(55031, 'https://ror.org/000yyt861', 'de', 1, 'https://ror.org/000yyt861 Cardiovascular Medicine at Klinik Im Park HerzgefƤss Medizin Klinik Im Park'),
(55032, 'https://ror.org/000zqbq25', 'no_lang_code', 1, 'https://ror.org/000zqbq25 Ivitas (Czechia)'),
(55033, 'https://ror.org/0010jkx06', 'en', 1, 'https://ror.org/0010jkx06 Indira Gandhi Institute of Technology ą¬‡ą¬Øą­ą¬¦ą¬æą¬°ą¬¾ ą¬—ą¬¾ą¬Øą­ą¬§ą­€ ą¬¬ą­ˆą¬·ą­Ÿą¬æą¬• ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ)'),
(55034, 'https://ror.org/0012b2h06', 'no_lang_code', 1, 'https://ror.org/0012b2h06 ON Semiconductor (Japan)'),
(55035, 'https://ror.org/00138a023', 'no_lang_code', 1, 'https://ror.org/00138a023 E4t Electronics for Transportation (Czechia)'),
(55036, 'https://ror.org/0014agb17', 'no_lang_code', 1, 'https://ror.org/0014agb17 Stago (France)'),
(55037, 'https://ror.org/0014hfa49', 'fr', 1, 'https://ror.org/0014hfa49 Institut Clinident'),
(55038, 'https://ror.org/0015kev18', 'no_lang_code', 1, 'https://ror.org/0015kev18 Juki (United States)'),
(55039, 'https://ror.org/0016gwv87', 'no_lang_code', 1, 'https://ror.org/0016gwv87 PositronLabs (Czechia)'),
(55040, 'https://ror.org/0016qk189', 'en', 1, 'https://ror.org/0016qk189 Gifford Foundation'),
(55041, 'https://ror.org/00187xa56', 'no_lang_code', 1, 'https://ror.org/00187xa56 Crossject (France)'),
(55042, 'https://ror.org/0018kxj28', 'no_lang_code', 1, 'https://ror.org/0018kxj28 Heat Transfer Systems (Czechia)'),
(55043, 'https://ror.org/0018whg19', 'no_lang_code', 1, 'https://ror.org/0018whg19 Texas Instruments (France)'),
(55044, 'https://ror.org/0019h1k84', 'en', 1, 'https://ror.org/0019h1k84 Joint European Torus'),
(55045, 'https://ror.org/001ctpj73', 'en', 1, 'https://ror.org/001ctpj73 Voice Foundation'),
(55046, 'https://ror.org/001dcya02', 'no_lang_code', 1, 'https://ror.org/001dcya02 Hillex (Czechia)'),
(55047, 'https://ror.org/001esq883', 'en', 1, 'https://ror.org/001esq883 Czech Fishing Union Český rybÔřský svaz'),
(55048, 'https://ror.org/001f5k487', 'no_lang_code', 1, 'https://ror.org/001f5k487 Precilens (France)'),
(55049, 'https://ror.org/001fdsm10', 'cs', 1, 'https://ror.org/001fdsm10 VyŔŔí OdbornĆ” Å kola PedagogickĆ” a SociĆ”lnĆ­ StřednĆ­ OdbornĆ” Å kola PedagogickĆ” a GymnĆ”zium Praha 6'),
(55050, 'https://ror.org/001p94d66', 'no_lang_code', 1, 'https://ror.org/001p94d66 Aveflor (Czechia)'),
(55051, 'https://ror.org/001qc6h12', 'no_lang_code', 1, 'https://ror.org/001qc6h12 Precisa Gravimetrics (Switzerland)'),
(55052, 'https://ror.org/001rkbe13', 'en', 1, 'https://ror.org/001rkbe13 National Institute of Biomedical Innovation, Health and Nutrition 国立研究開発法人 åŒ»č–¬åŸŗē›¤ 偄康 ę „é¤Šē ”ē©¶ę‰€'),
(55053, 'https://ror.org/001rxm869', 'en', 1, 'https://ror.org/001rxm869 Rosalinde and Arthur Gilbert Foundation'),
(55054, 'https://ror.org/001s4x714', 'fr', 1, 'https://ror.org/001s4x714 Institut SupƩrieur des MatƩriaux du Mans'),
(55055, 'https://ror.org/001tk4253', 'no_lang_code', 1, 'https://ror.org/001tk4253 Philips (China)'),
(55056, 'https://ror.org/001tn6x38', 'en', 1, 'https://ror.org/001tn6x38 Institut für Kommunikation & Führung Institute for Communication and Leadership'),
(55057, 'https://ror.org/001w3p255', 'de', 1, 'https://ror.org/001w3p255 Pflege-und Adoptivkinder Schweiz'),
(55058, 'https://ror.org/001wmc692', 'fi', 1, 'https://ror.org/001wmc692 Lastentautien TutkimussƤƤtiƶ'),
(55059, 'https://ror.org/001xe7y71', 'en', 1, 'https://ror.org/001xe7y71 Waikato Medical Research Foundation'),
(55060, 'https://ror.org/001ydhs21', 'de', 1, 'https://ror.org/001ydhs21 Amt für Umwelt'),
(55061, 'https://ror.org/001yjew72', 'en', 1, 'https://ror.org/001yjew72 Kumagai Foundation for Science and Technology ē†Šč°·ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(55062, 'https://ror.org/001z7yr93', 'no_lang_code', 1, 'https://ror.org/001z7yr93 Imagination Technologies (United States)'),
(55063, 'https://ror.org/001zd1d95', 'no_lang_code', 1, 'https://ror.org/001zd1d95 Alliance Pharmaceuticals (United Kingdom)'),
(55064, 'https://ror.org/00212dq27', 'no_lang_code', 1, 'https://ror.org/00212dq27 Elekta (Switzerland)'),
(55065, 'https://ror.org/0021qzn44', 'cs', 1, 'https://ror.org/0021qzn44 Ústav Sportovní Medicíny'),
(55066, 'https://ror.org/0021ty105', 'cs', 1, 'https://ror.org/0021ty105 RybÔřstvĆ­ MariĆ”nskĆ© LĆ”zně'),
(55067, 'https://ror.org/00227mf78', 'no_lang_code', 1, 'https://ror.org/00227mf78 AG Medical (France)'),
(55068, 'https://ror.org/00269pf69', 'no_lang_code', 1, 'https://ror.org/00269pf69 Pramacom-Ht (Czechia)'),
(55069, 'https://ror.org/00270m654', 'no_lang_code', 1, 'https://ror.org/00270m654 Wiesner Hager (Czechia)'),
(55070, 'https://ror.org/002750k58', 'fr', 1, 'https://ror.org/002750k58 Fondation Suisse pour les Téléthèses'),
(55071, 'https://ror.org/0027ecy34', 'cs', 1, 'https://ror.org/0027ecy34 Společnost pro Trvale Udržitelný Život'),
(55072, 'https://ror.org/00280kv44', 'no_lang_code', 1, 'https://ror.org/00280kv44 Micromun'),
(55073, 'https://ror.org/0028a6m81', 'no_lang_code', 1, 'https://ror.org/0028a6m81 Koutný (Czechia)'),
(55074, 'https://ror.org/002ah4568', 'no_lang_code', 1, 'https://ror.org/002ah4568 3Dim Laboratory (Czechia)'),
(55075, 'https://ror.org/002dtc250', 'no_lang_code', 1, 'https://ror.org/002dtc250 Syndicom (Switzerland)'),
(55076, 'https://ror.org/002e5rj75', 'en', 1, 'https://ror.org/002e5rj75 International Union of Food Science and Technology'),
(55077, 'https://ror.org/002ek1q97', 'no_lang_code', 1, 'https://ror.org/002ek1q97 Elisa Development (Czechia)'),
(55078, 'https://ror.org/002j9py90', 'no_lang_code', 1, 'https://ror.org/002j9py90 Harry Winston (Switzerland)'),
(55079, 'https://ror.org/002jh6a02', 'no_lang_code', 1, 'https://ror.org/002jh6a02 P and L (Czechia)'),
(55080, 'https://ror.org/002mxea17', 'no_lang_code', 1, 'https://ror.org/002mxea17 Dean Foods (United States)'),
(55081, 'https://ror.org/002ssx495', 'en', 1, 'https://ror.org/002ssx495 Parc National Suisse Parc Naziunal Svizzer Parco Nazionale Svizzero Schweizerischer Nationalpark Swiss National Park'),
(55082, 'https://ror.org/002tnjb86', 'de', 1, 'https://ror.org/002tnjb86 Abteilung Bildungsplanung und Evaluation'),
(55083, 'https://ror.org/0030qrq56', 'no_lang_code', 1, 'https://ror.org/0030qrq56 Anopress IT (Czechia)'),
(55084, 'https://ror.org/003148c04', 'de', 1, 'https://ror.org/003148c04 Textile Research Institute Thuringia-Vogtland Textilforschungsinstitut Thüringen-Vogtland'),
(55085, 'https://ror.org/0032wbe47', 'no_lang_code', 1, 'https://ror.org/0032wbe47 Exosome Diagnostics (United States)'),
(55086, 'https://ror.org/00336ng80', 'de', 1, 'https://ror.org/00336ng80 Museum Appenzell'),
(55087, 'https://ror.org/0037kdt92', 'no_lang_code', 1, 'https://ror.org/0037kdt92 Aptimmune Biologics (United States)'),
(55088, 'https://ror.org/0037rj917', 'en', 1, 'https://ror.org/0037rj917 Institute of Mechanics of Metal-Polymer Systems Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики металлополимерных систем им. Š’.А. Белого'),
(55089, 'https://ror.org/00396dy63', 'no_lang_code', 1, 'https://ror.org/00396dy63 VodnĆ­ Zdroje Ekomonitor (Czechia)'),
(55090, 'https://ror.org/003a1f534', 'no_lang_code', 1, 'https://ror.org/003a1f534 Central European Media Enterprises (Czechia)'),
(55091, 'https://ror.org/003b2vh96', 'no_lang_code', 1, 'https://ror.org/003b2vh96 StavebnĆ­ Geologie - GeoprÅÆzkum ČeskĆ© Budějovice (Czechia)'),
(55092, 'https://ror.org/003bz8x96', 'de', 1, 'https://ror.org/003bz8x96 WiederkƤuerklinik'),
(55093, 'https://ror.org/003c3rv52', 'no_lang_code', 1, 'https://ror.org/003c3rv52 KÅ  Prefa (Czechia)'),
(55094, 'https://ror.org/003dpyf77', 'en', 1, 'https://ror.org/003dpyf77 Swiss Continence Foundation'),
(55095, 'https://ror.org/003dv1r84', 'no_lang_code', 1, 'https://ror.org/003dv1r84 Hostýnské Papírny (Czechia)'),
(55096, 'https://ror.org/003fbkt80', 'en', 1, 'https://ror.org/003fbkt80 Czech Association of Development Agencies ČeskÔ asociace rozvojových agentur'),
(55097, 'https://ror.org/003g8w998', 'de', 1, 'https://ror.org/003g8w998 Amt für Hochbauten'),
(55098, 'https://ror.org/003g9mh98', 'en', 1, 'https://ror.org/003g9mh98 International Center for Agribusiness Research and Education'),
(55099, 'https://ror.org/003garz92', 'no_lang_code', 1, 'https://ror.org/003garz92 Techem (Czechia)'),
(55100, 'https://ror.org/003ghjh61', 'no_lang_code', 1, 'https://ror.org/003ghjh61 Pragoprojekt (Czechia)'),
(55101, 'https://ror.org/003h15w42', 'no_lang_code', 1, 'https://ror.org/003h15w42 Galaxy Advanced Engineering (United States)'),
(55102, 'https://ror.org/003hsj034', 'de', 1, 'https://ror.org/003hsj034 Pro Familia Schweiz'),
(55103, 'https://ror.org/003kp3v47', 'no_lang_code', 1, 'https://ror.org/003kp3v47 DrƤger (Netherlands)'),
(55104, 'https://ror.org/003m2d425', 'no_lang_code', 1, 'https://ror.org/003m2d425 United BioSource Corporation (United Kingdom)'),
(55105, 'https://ror.org/003mh1m57', 'de', 1, 'https://ror.org/003mh1m57 Zürcher RehaZentrum Davos'),
(55106, 'https://ror.org/003n34405', 'no_lang_code', 1, 'https://ror.org/003n34405 Horphag Research (Switzerland)'),
(55107, 'https://ror.org/003nd8341', 'no_lang_code', 1, 'https://ror.org/003nd8341 Medicoat (Switzerland)'),
(55108, 'https://ror.org/003p0bk22', 'no_lang_code', 1, 'https://ror.org/003p0bk22 INFICON (Germany)'),
(55109, 'https://ror.org/003prxb56', 'cs', 1, 'https://ror.org/003prxb56 Muzeum Cheb'),
(55110, 'https://ror.org/003r4c219', 'fr', 1, 'https://ror.org/003r4c219 Service de SantƩ de la Jeunesse'),
(55111, 'https://ror.org/003rrdh33', 'no_lang_code', 1, 'https://ror.org/003rrdh33 Tomst (Czechia)'),
(55112, 'https://ror.org/003vk8x91', 'cs', 1, 'https://ror.org/003vk8x91 Selekta Pacov'),
(55113, 'https://ror.org/003w4a433', 'en', 1, 'https://ror.org/003w4a433 Corpus Vitrearum International Recherche Internationale sur le Vitrail'),
(55114, 'https://ror.org/003z52m74', 'no_lang_code', 1, 'https://ror.org/003z52m74 CCS (Czechia)'),
(55115, 'https://ror.org/003zwxt43', 'no_lang_code', 1, 'https://ror.org/003zwxt43 Total Security Installations (United Kingdom)'),
(55116, 'https://ror.org/00413jh46', 'no_lang_code', 1, 'https://ror.org/00413jh46 Agrio (Czechia)'),
(55117, 'https://ror.org/0042d3p02', 'no_lang_code', 1, 'https://ror.org/0042d3p02 MZ Liberec (Czechia)'),
(55118, 'https://ror.org/00438z572', 'en', 1, 'https://ror.org/00438z572 Schweizerisches Sozialarchiv Swiss Social Archives'),
(55119, 'https://ror.org/0044gqz05', 'no_lang_code', 1, 'https://ror.org/0044gqz05 Perrigo (Czechia)'),
(55120, 'https://ror.org/004542426', 'cs', 1, 'https://ror.org/004542426 Ústav T. G. Masaryka'),
(55121, 'https://ror.org/00467td76', 'no_lang_code', 1, 'https://ror.org/00467td76 Mallinckrodt (Ireland)'),
(55122, 'https://ror.org/00476rc02', 'no_lang_code', 1, 'https://ror.org/00476rc02 Kone (Switzerland)'),
(55123, 'https://ror.org/00479t136', 'en', 1, 'https://ror.org/00479t136 Guangzhou Education Bureau å¹æå·žåø‚ę•™č‚²å±€'),
(55124, 'https://ror.org/0047q0m13', 'no_lang_code', 1, 'https://ror.org/0047q0m13 Ecosens (Switzerland)'),
(55125, 'https://ror.org/0049pvf34', 'no_lang_code', 1, 'https://ror.org/0049pvf34 Strojírny OlŔovec (Czechia)'),
(55126, 'https://ror.org/0049tkm42', 'no_lang_code', 1, 'https://ror.org/0049tkm42 Intemac Solutions (Czechia)'),
(55127, 'https://ror.org/0049whg19', 'en', 1, 'https://ror.org/0049whg19 Rothschild Caesarea Foundation'),
(55128, 'https://ror.org/004cqq657', 'no_lang_code', 1, 'https://ror.org/004cqq657 Bemagro (Czechia)'),
(55129, 'https://ror.org/004ea6c05', 'no_lang_code', 1, 'https://ror.org/004ea6c05 Bioanalytica (Switzerland)'),
(55130, 'https://ror.org/004ef5a73', 'no_lang_code', 1, 'https://ror.org/004ef5a73 AGC Flat Glass Czech (Czechia)'),
(55131, 'https://ror.org/004hdwp61', 'no_lang_code', 1, 'https://ror.org/004hdwp61 Resonance Health (Australia)'),
(55132, 'https://ror.org/004j18068', 'no_lang_code', 1, 'https://ror.org/004j18068 ILC Dover (United States)'),
(55133, 'https://ror.org/004s1x176', 'no_lang_code', 1, 'https://ror.org/004s1x176 JaP Jacina (Czechia)'),
(55134, 'https://ror.org/004sjsc98', 'en', 1, 'https://ror.org/004sjsc98 Students Supporting Brain Tumor Research'),
(55135, 'https://ror.org/004vx2m26', 'en', 1, 'https://ror.org/004vx2m26 Vision of Children Foundation'),
(55136, 'https://ror.org/00518yz61', 'no_lang_code', 1, 'https://ror.org/00518yz61 Straub Medical (Switzerland)'),
(55137, 'https://ror.org/0053tww73', 'no_lang_code', 1, 'https://ror.org/0053tww73 Web Vision Centers (United States)'),
(55138, 'https://ror.org/00555bk04', 'no_lang_code', 1, 'https://ror.org/00555bk04 Cultech (United Kingdom)'),
(55139, 'https://ror.org/00588h422', 'en', 1, 'https://ror.org/00588h422 Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry Ō³Ō±Ō± Õ•Ö€Õ£Õ”Õ¶Õ”ÕÆÕ”Õ¶ և Õ¤Õ„Õ²Õ”Õ£ÕøÖ€Õ®Õ”ÕÆÕ”Õ¶ Ö„Õ«Õ“Õ«Õ”ÕµÕ« Õ£Õ«ÕæÕ”ÕæÕ„Õ­Õ¶ÕøÕ¬ÕøÕ£Õ«Õ”ÕÆÕ”Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(55140, 'https://ror.org/0059c0s27', 'no_lang_code', 1, 'https://ror.org/0059c0s27 Newton Technologies (Czechia)'),
(55141, 'https://ror.org/0059sp540', 'en', 1, 'https://ror.org/0059sp540 Ryan Licht Sang Bipolar Foundation'),
(55142, 'https://ror.org/005a9av86', 'no_lang_code', 1, 'https://ror.org/005a9av86 STS Prachatice (Czechia)'),
(55143, 'https://ror.org/005ag3f48', 'no_lang_code', 1, 'https://ror.org/005ag3f48 Batrec (Switzerland)'),
(55144, 'https://ror.org/005f11v91', 'no_lang_code', 1, 'https://ror.org/005f11v91 EndoSphere (United States)'),
(55145, 'https://ror.org/005ft2876', 'no_lang_code', 1, 'https://ror.org/005ft2876 Ardeapharma (Czechia)'),
(55146, 'https://ror.org/005gp3d85', 'en', 1, 'https://ror.org/005gp3d85 Korea National Park Service'),
(55147, 'https://ror.org/005jnhy27', 'cs', 1, 'https://ror.org/005jnhy27 Svaz Výrobců Cementu'),
(55148, 'https://ror.org/005k2pp84', 'en', 1, 'https://ror.org/005k2pp84 Innovascience Laboratoire Innovascience'),
(55149, 'https://ror.org/005n1mk70', 'no_lang_code', 1, 'https://ror.org/005n1mk70 Cardinal Health (Switzerland)'),
(55150, 'https://ror.org/005q35q21', 'no_lang_code', 1, 'https://ror.org/005q35q21 AMT (Czechia)'),
(55151, 'https://ror.org/005s3t219', 'en', 1, 'https://ror.org/005s3t219 Boys and Girls Clubs of Metro Los Angeles'),
(55152, 'https://ror.org/005t0n560', 'en', 1, 'https://ror.org/005t0n560 Russian Science Support Foundation Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ общественный ФонГ ŃŠ¾Š“ŠµŠ¹ŃŃ‚Š²ŠøŃ отечественной науке'),
(55153, 'https://ror.org/005tenx48', 'no_lang_code', 1, 'https://ror.org/005tenx48 Geodrill (Czechia)'),
(55154, 'https://ror.org/005tr1q75', 'no_lang_code', 1, 'https://ror.org/005tr1q75 Alpiq Generation (Czechia)'),
(55155, 'https://ror.org/005tvtr96', 'en', 1, 'https://ror.org/005tvtr96 Youthprise'),
(55156, 'https://ror.org/005w8dd04', 'en', 1, 'https://ror.org/005w8dd04 IBM Research - Almaden'),
(55157, 'https://ror.org/005wff754', 'no_lang_code', 1, 'https://ror.org/005wff754 Focam (Czechia)'),
(55158, 'https://ror.org/005wspd72', 'no_lang_code', 1, 'https://ror.org/005wspd72 Compumedics (Australia)'),
(55159, 'https://ror.org/005yk2x17', 'no_lang_code', 1, 'https://ror.org/005yk2x17 OneFit Medical (France)'),
(55160, 'https://ror.org/005yrpm30', 'en', 1, 'https://ror.org/005yrpm30 Pediatric Cancer Research Foundation'),
(55161, 'https://ror.org/005yxzz69', 'en', 1, 'https://ror.org/005yxzz69 Society of Canadian Ornithologists SociƩtƩ des Ornithologistes du Canada'),
(55162, 'https://ror.org/005yyvy03', 'no_lang_code', 1, 'https://ror.org/005yyvy03 Lena Chemical (Czechia)'),
(55163, 'https://ror.org/005zs1640', 'cs', 1, 'https://ror.org/005zs1640 Asociace Pro MlĆ”dež Vědu a Techniku'),
(55164, 'https://ror.org/005zvr630', 'de', 1, 'https://ror.org/005zvr630 Forschungsinstitut für Anorganische Werkstoffe -Glas/Keramik'),
(55165, 'https://ror.org/00609hp35', 'no_lang_code', 1, 'https://ror.org/00609hp35 Netcope Technologies (Czechia)'),
(55166, 'https://ror.org/00610tn07', 'no_lang_code', 1, 'https://ror.org/00610tn07 Medicalex (France)'),
(55167, 'https://ror.org/0063kr105', 'cs', 1, 'https://ror.org/0063kr105 DětskĆ© KrizovĆ© Centrum'),
(55168, 'https://ror.org/0064vct34', 'no_lang_code', 1, 'https://ror.org/0064vct34 BrněnskĆ© VodĆ”rny a Kanalizace (Czechia)'),
(55169, 'https://ror.org/0065zvt37', 'en', 1, 'https://ror.org/0065zvt37 Central District Health Department'),
(55170, 'https://ror.org/00662k397', 'en', 1, 'https://ror.org/00662k397 Scientific-Research Institute of Electric Power Transmission ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠžŠ”Š¢ŠžŠÆŠŠŠžŠ“Šž Š¢ŠžŠšŠ'),
(55171, 'https://ror.org/0066s0r72', 'en', 1, 'https://ror.org/0066s0r72 Ulla Tuominen Foundation Ulla Tuomisen SƤƤtiƶ'),
(55172, 'https://ror.org/00671p325', 'en', 1, 'https://ror.org/00671p325 Honey Bee Research Institute and Nature Center'),
(55173, 'https://ror.org/0067hwx77', 'en', 1, 'https://ror.org/0067hwx77 Nanjing Health and Health Commission å—äŗ¬åø‚å«ē”Ÿå±€'),
(55174, 'https://ror.org/0068cft64', 'no_lang_code', 1, 'https://ror.org/0068cft64 Kornet (Czechia)'),
(55175, 'https://ror.org/0068ff141', 'en', 1, 'https://ror.org/0068ff141 MƩditerranƩe Infection Foundation'),
(55176, 'https://ror.org/006ag2j20', 'no_lang_code', 1, 'https://ror.org/006ag2j20 Progres Ekotech (Czechia)'),
(55177, 'https://ror.org/006atkg72', 'no_lang_code', 1, 'https://ror.org/006atkg72 Wolfsberg LeteckƔ TovƔrna (Czechia)'),
(55178, 'https://ror.org/006c4xb83', 'en', 1, 'https://ror.org/006c4xb83 Foundation for Agricultural and Rural Resource Management and Sustainability'),
(55179, 'https://ror.org/006cer819', 'en', 1, 'https://ror.org/006cer819 Developmental Studies Hybridoma Bank'),
(55180, 'https://ror.org/006cjkj15', 'en', 1, 'https://ror.org/006cjkj15 Institute for the Humanities and Information Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø информационных технологий'),
(55181, 'https://ror.org/006fm3q16', 'no_lang_code', 1, 'https://ror.org/006fm3q16 Isomed (France)'),
(55182, 'https://ror.org/006hbj696', 'en', 1, 'https://ror.org/006hbj696 Radium Hemmets Research Funds Radiumhemmets forskningsfonder'),
(55183, 'https://ror.org/006j60y94', 'no_lang_code', 1, 'https://ror.org/006j60y94 GeoControl Systems (United States)'),
(55184, 'https://ror.org/006jv7t09', 'no_lang_code', 1, 'https://ror.org/006jv7t09 TSI System (Czechia)'),
(55185, 'https://ror.org/006kf9d11', 'en', 1, 'https://ror.org/006kf9d11 Kyiv School of Economics ŠšŠøŃ—Š²ŃŃŒŠŗŠ° школа економіки'),
(55186, 'https://ror.org/006knrb30', 'en', 1, 'https://ror.org/006knrb30 International Society for Military Law and the Law of War SociƩtƩ Internationale de Droit Militaire et de Droit de la Guerre'),
(55187, 'https://ror.org/006qdp021', 'no_lang_code', 1, 'https://ror.org/006qdp021 Scot Young Research (United Kingdom)'),
(55188, 'https://ror.org/006rtrx18', 'no_lang_code', 1, 'https://ror.org/006rtrx18 KomerčnĆ­ ŽelezničnĆ­ Výzkum (Czechia)'),
(55189, 'https://ror.org/006sx7h90', 'es', 1, 'https://ror.org/006sx7h90 Fundación Sandra Ibarra de Solidaridad Frente al CÔncer'),
(55190, 'https://ror.org/006t5z227', 'no_lang_code', 1, 'https://ror.org/006t5z227 OP Financial Group (Finland)'),
(55191, 'https://ror.org/006v2ze46', 'no_lang_code', 1, 'https://ror.org/006v2ze46 Prokop (Czechia)'),
(55192, 'https://ror.org/006x9vy35', 'no_lang_code', 1, 'https://ror.org/006x9vy35 Air Jihlava Service (Czechia)'),
(55193, 'https://ror.org/0070hxd21', 'no_lang_code', 1, 'https://ror.org/0070hxd21 Sunhai Bioadhesive Technologies (United States)'),
(55194, 'https://ror.org/00716cx46', 'no_lang_code', 1, 'https://ror.org/00716cx46 VMK (Czechia)'),
(55195, 'https://ror.org/0073d8m13', 'no_lang_code', 1, 'https://ror.org/0073d8m13 Velvana (Czechia)'),
(55196, 'https://ror.org/0074rcv14', 'en', 1, 'https://ror.org/0074rcv14 Institute for Soil Science and Agrochemistry Research Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ņ‘Ń€ŃƒŠ½Ń‚Š¾Š·Š½Š°Š²ŃŃ‚Š²Š° та агрохімії імені Šž.Š. Доколовського'),
(55197, 'https://ror.org/0074vna73', 'en', 1, 'https://ror.org/0074vna73 Ontario Institute for Regenerative Medicine'),
(55198, 'https://ror.org/0078wde10', 'no_lang_code', 1, 'https://ror.org/0078wde10 IKP Consulting Engineers (Czechia)'),
(55199, 'https://ror.org/007cmf111', 'en', 1, 'https://ror.org/007cmf111 Eastern Research Institute of Coal Chemistry Восточный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(55200, 'https://ror.org/007e93p80', 'no_lang_code', 1, 'https://ror.org/007e93p80 Radon vos (Czechia)'),
(55201, 'https://ror.org/007f41232', 'en', 1, 'https://ror.org/007f41232 Scripps Korea Antibody Institute ģŠ¤ķ¬ė¦½ģŠ¤ģ½”ė¦¬ģ•„ķ•­ģ²“ģ—°źµ¬ģ›'),
(55202, 'https://ror.org/007fdqr82', 'no_lang_code', 1, 'https://ror.org/007fdqr82 Kemira (Germany)'),
(55203, 'https://ror.org/007gnnh23', 'no_lang_code', 1, 'https://ror.org/007gnnh23 Welltest (Czechia)'),
(55204, 'https://ror.org/007h7ca29', 'no_lang_code', 1, 'https://ror.org/007h7ca29 KMC Group (Czechia)'),
(55205, 'https://ror.org/007jkh405', 'no_lang_code', 1, 'https://ror.org/007jkh405 Brothier (France)'),
(55206, 'https://ror.org/007kemd69', 'no_lang_code', 1, 'https://ror.org/007kemd69 Debiotech (Switzerland)'),
(55207, 'https://ror.org/007medz62', 'en', 1, 'https://ror.org/007medz62 Shenyang Science and Technology Bureau ę²ˆé˜³åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(55208, 'https://ror.org/007q1v885', 'no_lang_code', 1, 'https://ror.org/007q1v885 Schneider Electric (Denmark)'),
(55209, 'https://ror.org/007t9rq67', 'no_lang_code', 1, 'https://ror.org/007t9rq67 Aqua Procon (Czechia)'),
(55210, 'https://ror.org/007vffa52', 'no_lang_code', 1, 'https://ror.org/007vffa52 Foodlink'),
(55211, 'https://ror.org/007wcet58', 'no_lang_code', 1, 'https://ror.org/007wcet58 GTW Bearings (Czechia)'),
(55212, 'https://ror.org/007x2j456', 'no_lang_code', 1, 'https://ror.org/007x2j456 Batumi Botanical Garden įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒ‘įƒįƒ¢įƒįƒœįƒ˜įƒ™įƒ£įƒ įƒ˜ įƒ‘įƒįƒ¦įƒ˜'),
(55213, 'https://ror.org/007zhvp17', 'no_lang_code', 1, 'https://ror.org/007zhvp17 Williams (United States)'),
(55214, 'https://ror.org/008226x45', 'no_lang_code', 1, 'https://ror.org/008226x45 EM Brno (Czechia)'),
(55215, 'https://ror.org/00826gz80', 'de', 1, 'https://ror.org/00826gz80 Deutsche JosƩ Carreras LeukƤmie-Stiftung'),
(55216, 'https://ror.org/0086yq776', 'no_lang_code', 1, 'https://ror.org/0086yq776 SEEIF Ceramic (Czechia)'),
(55217, 'https://ror.org/008798434', 'en', 1, 'https://ror.org/008798434 West Central Initiative'),
(55218, 'https://ror.org/0089a0566', 'de', 1, 'https://ror.org/0089a0566 Robert Walser-Zentrum'),
(55219, 'https://ror.org/0089bg420', 'en', 1, 'https://ror.org/0089bg420 Daresbury Laboratory'),
(55220, 'https://ror.org/0089p6r11', 'no_lang_code', 1, 'https://ror.org/0089p6r11 Hobl & Pech (Czechia)'),
(55221, 'https://ror.org/0089t7988', 'en', 1, 'https://ror.org/0089t7988 Rosa Luxemburg Foundation Rosa-Luxemburg-Stiftung'),
(55222, 'https://ror.org/008bxhv54', 'en', 1, 'https://ror.org/008bxhv54 Jilin Zixin Pharmaceutical Industrial å‰ęž—ē“«é‘«čÆäøšč‚”ä»½ęœ‰é™å…¬åøå®˜ę–¹ē½‘ē«™'),
(55223, 'https://ror.org/008c6se98', 'en', 1, 'https://ror.org/008c6se98 Unity Through Knowledge Fund'),
(55224, 'https://ror.org/008c8w304', 'no_lang_code', 1, 'https://ror.org/008c8w304 BotaniPharm (United States)');
INSERT INTO `rors` VALUES
(55225, 'https://ror.org/008cftc05', 'en', 1, 'https://ror.org/008cftc05 Regional Center for Poison Control and Prevention'),
(55226, 'https://ror.org/008cqbc52', 'en', 1, 'https://ror.org/008cqbc52 Next Generation Infrastructures Stichting Next Generation Infrastructures'),
(55227, 'https://ror.org/008gfyt86', 'fr', 1, 'https://ror.org/008gfyt86 Groupe ICV, Institut coopƩratif du vin'),
(55228, 'https://ror.org/008h3f304', 'no_lang_code', 1, 'https://ror.org/008h3f304 Portmann Instruments (Switzerland)'),
(55229, 'https://ror.org/008jcqh21', 'no_lang_code', 1, 'https://ror.org/008jcqh21 CS-Beton (Czechia)'),
(55230, 'https://ror.org/008je7023', 'no_lang_code', 1, 'https://ror.org/008je7023 E therm TZ (Czechia)'),
(55231, 'https://ror.org/008jjpw82', 'no_lang_code', 1, 'https://ror.org/008jjpw82 ITA Intertact (Czechia)'),
(55232, 'https://ror.org/008kw6k79', 'no_lang_code', 1, 'https://ror.org/008kw6k79 Ecoprogress (Czechia)'),
(55233, 'https://ror.org/008p7sp64', 'no_lang_code', 1, 'https://ror.org/008p7sp64 Millar (New Zealand)'),
(55234, 'https://ror.org/008r0bg49', 'en', 1, 'https://ror.org/008r0bg49 Footwear & Recreation Technology Research Institute'),
(55235, 'https://ror.org/008rnfn31', 'no_lang_code', 1, 'https://ror.org/008rnfn31 TTS Group (Czechia)'),
(55236, 'https://ror.org/008rrb089', 'en', 1, 'https://ror.org/008rrb089 Vyatka State University of Humanities Š’ŃŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(55237, 'https://ror.org/008rtq165', 'en', 1, 'https://ror.org/008rtq165 Society for the Study of Social Problems'),
(55238, 'https://ror.org/008sh5980', 'no_lang_code', 1, 'https://ror.org/008sh5980 Midas Mediscience (United Kingdom)'),
(55239, 'https://ror.org/008trbj46', 'no_lang_code', 1, 'https://ror.org/008trbj46 Aging Community Coordinated Enterprises and Supportive Services (United States)'),
(55240, 'https://ror.org/008v8ay36', 'en', 1, 'https://ror.org/008v8ay36 Thorsten and Elsa Segerfalk Foundation Torsten och Elsa Segerfalks stiftelse'),
(55241, 'https://ror.org/008yk9930', 'de', 1, 'https://ror.org/008yk9930 Rƶmisches Institut der Gƶrres-Gesellschaft'),
(55242, 'https://ror.org/00902kb83', 'no_lang_code', 1, 'https://ror.org/00902kb83 Kell (Czechia)'),
(55243, 'https://ror.org/0091az632', 'no_lang_code', 1, 'https://ror.org/0091az632 Dynamic Future (Czechia)'),
(55244, 'https://ror.org/0091pmq63', 'en', 1, 'https://ror.org/0091pmq63 DermaCare Neuroscience Institute'),
(55245, 'https://ror.org/00927ty10', 'no_lang_code', 1, 'https://ror.org/00927ty10 Cayman Chemical (United States)'),
(55246, 'https://ror.org/0092af185', 'no_lang_code', 1, 'https://ror.org/0092af185 PNM Resources (United States)'),
(55247, 'https://ror.org/0092jp739', 'en', 1, 'https://ror.org/0092jp739 Thundermist Health Center'),
(55248, 'https://ror.org/0095dm157', 'no_lang_code', 1, 'https://ror.org/0095dm157 Tsumura Research Institute (Japan) ę“„ę‘ē·åˆē ”ē©¶ę‰€'),
(55249, 'https://ror.org/00964b496', 'en', 1, 'https://ror.org/00964b496 Young Men''s Christian Association Of Greater Grand Rapids'),
(55250, 'https://ror.org/009759b62', 'no_lang_code', 1, 'https://ror.org/009759b62 ZetrOZ Systems (United States)'),
(55251, 'https://ror.org/00996ck84', 'no_lang_code', 1, 'https://ror.org/00996ck84 MƩdical Innovation DƩveloppement (France)'),
(55252, 'https://ror.org/0099z8h13', 'en', 1, 'https://ror.org/0099z8h13 Deutsch-Israelische Zusammenarbeit German-Israeli Cooperation'),
(55253, 'https://ror.org/009bet131', 'sv', 1, 'https://ror.org/009bet131 Gƶranssonska Stiftelserna'),
(55254, 'https://ror.org/009d05f16', 'no_lang_code', 1, 'https://ror.org/009d05f16 Top - Modern (Czechia)'),
(55255, 'https://ror.org/009erme80', 'en', 1, 'https://ror.org/009erme80 Tbilisi State Academy of Arts įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒįƒ›įƒ®įƒįƒ¢įƒ•įƒ įƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(55256, 'https://ror.org/009g2k883', 'no_lang_code', 1, 'https://ror.org/009g2k883 Cleantex (Czechia)'),
(55257, 'https://ror.org/009gady73', 'no_lang_code', 1, 'https://ror.org/009gady73 Prokop Rail (Czechia)'),
(55258, 'https://ror.org/009j8n021', 'no_lang_code', 1, 'https://ror.org/009j8n021 Polynomics (Switzerland)'),
(55259, 'https://ror.org/009n12s59', 'en', 1, 'https://ror.org/009n12s59 Institute for Sustainable Communication'),
(55260, 'https://ror.org/009nd6m74', 'de', 1, 'https://ror.org/009nd6m74 Pro Helvetia'),
(55261, 'https://ror.org/009pahg55', 'en', 1, 'https://ror.org/009pahg55 Mahatma Gandhi Institute for Rural Industrialization'),
(55262, 'https://ror.org/009qbz979', 'no_lang_code', 1, 'https://ror.org/009qbz979 Lintech (Czechia)'),
(55263, 'https://ror.org/009qg7s70', 'en', 1, 'https://ror.org/009qg7s70 Parkinson’s Disease Foundation of India'),
(55264, 'https://ror.org/009vp0837', 'fi', 1, 'https://ror.org/009vp0837 Paavo Nurmen SƤƤtiƶ'),
(55265, 'https://ror.org/009vrtv70', 'no_lang_code', 1, 'https://ror.org/009vrtv70 Aptar (Germany)'),
(55266, 'https://ror.org/009xea408', 'no_lang_code', 1, 'https://ror.org/009xea408 Aeronautical and General Instruments'),
(55267, 'https://ror.org/009xyca19', 'no_lang_code', 1, 'https://ror.org/009xyca19 Heltos (Czechia)'),
(55268, 'https://ror.org/00a1fpp20', 'en', 1, 'https://ror.org/00a1fpp20 HSC Health Care System'),
(55269, 'https://ror.org/00a2crp77', 'no_lang_code', 1, 'https://ror.org/00a2crp77 ViDiS (Czechia)'),
(55270, 'https://ror.org/00a7jbz14', 'es', 1, 'https://ror.org/00a7jbz14 Fundación Caja Navarra'),
(55271, 'https://ror.org/00a99dg75', 'de', 1, 'https://ror.org/00a99dg75 Medienboard Berlin-Brandenburg'),
(55272, 'https://ror.org/00a9saw63', 'cs', 1, 'https://ror.org/00a9saw63 ZkuŔebna Kamene a Kameniva'),
(55273, 'https://ror.org/00a9x6k20', 'no_lang_code', 1, 'https://ror.org/00a9x6k20 Exact Control System (Czechia)'),
(55274, 'https://ror.org/00aa64v88', 'fr', 1, 'https://ror.org/00aa64v88 Laboratoire Romand de Dendrochronologie'),
(55275, 'https://ror.org/00aa7ab77', 'en', 1, 'https://ror.org/00aa7ab77 Scientific Research Institute of Organic Intermediates and Dyes Š¤Š“Š£ŠŸ Ā«Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр ā€žŠŠ˜ŠžŠŸŠ˜Ššā€œ'),
(55276, 'https://ror.org/00aamwa29', 'no_lang_code', 1, 'https://ror.org/00aamwa29 Schaeffer (Switzerland)'),
(55277, 'https://ror.org/00adb1q31', 'en', 1, 'https://ror.org/00adb1q31 Pushkin Museum Музей ŠøŠ·Š¾Š±Ń€Š°Š·ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… ŠøŃŠŗŃƒŃŃŃ‚Š² им. А.Š”. Пушкина'),
(55278, 'https://ror.org/00af5ps59', 'no_lang_code', 1, 'https://ror.org/00af5ps59 Züblin (United States)'),
(55279, 'https://ror.org/00ahtnc04', 'no_lang_code', 1, 'https://ror.org/00ahtnc04 Festool (Czechia)'),
(55280, 'https://ror.org/00ajs1721', 'no_lang_code', 1, 'https://ror.org/00ajs1721 Koyo Bearings (Czechia)'),
(55281, 'https://ror.org/00akda788', 'no_lang_code', 1, 'https://ror.org/00akda788 1 - Cube (Czechia)'),
(55282, 'https://ror.org/00akqa526', 'en', 1, 'https://ror.org/00akqa526 Samuel H. Kress Foundation'),
(55283, 'https://ror.org/00am0th03', 'en', 1, 'https://ror.org/00am0th03 Wyncote Foundation'),
(55284, 'https://ror.org/00ammxx28', 'en', 1, 'https://ror.org/00ammxx28 Regional State Archives in Trebon StĆ”tnĆ­ oblastnĆ­ archiv v Třeboni'),
(55285, 'https://ror.org/00ar31v66', 'cs', 1, 'https://ror.org/00ar31v66 MěstskĆ© lesy Hradec KrĆ”lovĆ©'),
(55286, 'https://ror.org/00arm4s37', 'de', 1, 'https://ror.org/00arm4s37 State Archives Basel-Stadt'),
(55287, 'https://ror.org/00aw6xe57', 'en', 1, 'https://ror.org/00aw6xe57 Cave Administration of the Czech Republic SprÔva Jeskyní České Republiky'),
(55288, 'https://ror.org/00awwz417', 'it', 1, 'https://ror.org/00awwz417 Istituto per la Storia del Pensiero Filosofico e Scientifico Moderno'),
(55289, 'https://ror.org/00axz6z61', 'en', 1, 'https://ror.org/00axz6z61 St. Paul’s Foundation'),
(55290, 'https://ror.org/00b0e2156', 'en', 1, 'https://ror.org/00b0e2156 Reflections of Grace Foundation'),
(55291, 'https://ror.org/00b23k705', 'en', 1, 'https://ror.org/00b23k705 Singapore Heart Foundation'),
(55292, 'https://ror.org/00b3qfx47', 'no_lang_code', 1, 'https://ror.org/00b3qfx47 Larad (United States)'),
(55293, 'https://ror.org/00b52f734', 'no_lang_code', 1, 'https://ror.org/00b52f734 Laboratoires Sebbin (France)'),
(55294, 'https://ror.org/00b6h7f51', 'en', 1, 'https://ror.org/00b6h7f51 Economic Development Commission of Floridas Space Coast'),
(55295, 'https://ror.org/00b8nfj92', 'en', 1, 'https://ror.org/00b8nfj92 Jangheung Mushroom Industry Research ģž„ķ„źµ°ė²„ģ„Æģ‚°ģ—…ģ—°źµ¬ģ›'),
(55296, 'https://ror.org/00b8vr735', 'no_lang_code', 1, 'https://ror.org/00b8vr735 Danone (Czechia)'),
(55297, 'https://ror.org/00ba8tz47', 'no_lang_code', 1, 'https://ror.org/00ba8tz47 Würth (Germany)'),
(55298, 'https://ror.org/00baskk38', 'en', 1, 'https://ror.org/00baskk38 Institut für Biomedizinische Technik Institute for Biomedical Engineering'),
(55299, 'https://ror.org/00bat7f70', 'no_lang_code', 1, 'https://ror.org/00bat7f70 Buzuluk (Czechia)'),
(55300, 'https://ror.org/00bc02d26', 'fr', 1, 'https://ror.org/00bc02d26 Cizeta Medicali'),
(55301, 'https://ror.org/00bdtcm28', 'en', 1, 'https://ror.org/00bdtcm28 Institute for State Control of Veterinary Biologicals and Medicines Ústav pro stĆ”tnĆ­ kontrolu veterinĆ”rnĆ­ch biopreparĆ”tÅÆ a lĆ©Äiv'),
(55302, 'https://ror.org/00be7h315', 'no_lang_code', 1, 'https://ror.org/00be7h315 Bayer (Czechia)'),
(55303, 'https://ror.org/00begqh73', 'no_lang_code', 1, 'https://ror.org/00begqh73 General Electric (New Zealand)'),
(55304, 'https://ror.org/00bf8wg73', 'no_lang_code', 1, 'https://ror.org/00bf8wg73 Kovo Novak (Czechia)'),
(55305, 'https://ror.org/00bfx7n30', 'no_lang_code', 1, 'https://ror.org/00bfx7n30 Tamedia (Switzerland)'),
(55306, 'https://ror.org/00bg52247', 'no_lang_code', 1, 'https://ror.org/00bg52247 Furukawa Electric (United States)'),
(55307, 'https://ror.org/00bg9m975', 'en', 1, 'https://ror.org/00bg9m975 Astro Space Center'),
(55308, 'https://ror.org/00bgpxp73', 'no_lang_code', 1, 'https://ror.org/00bgpxp73 Robotik Technology (France)'),
(55309, 'https://ror.org/00bjp5r54', 'no_lang_code', 1, 'https://ror.org/00bjp5r54 Color Spectrum (Czechia)'),
(55310, 'https://ror.org/00bmh2944', 'no_lang_code', 1, 'https://ror.org/00bmh2944 Besins Healthcare (France)'),
(55311, 'https://ror.org/00bmpd145', 'en', 1, 'https://ror.org/00bmpd145 Charles Humbert 8'),
(55312, 'https://ror.org/00bmwn733', 'no_lang_code', 1, 'https://ror.org/00bmwn733 Progeo (Czechia)'),
(55313, 'https://ror.org/00bn3c948', 'no_lang_code', 1, 'https://ror.org/00bn3c948 Czech Space Research Centre (Czechia)'),
(55314, 'https://ror.org/00bp6rb10', 'no_lang_code', 1, 'https://ror.org/00bp6rb10 Quantum (Australia)'),
(55315, 'https://ror.org/00bps5g02', 'no_lang_code', 1, 'https://ror.org/00bps5g02 Husky (Luxembourg)'),
(55316, 'https://ror.org/00bqv9n12', 'no_lang_code', 1, 'https://ror.org/00bqv9n12 Aston Medical (France)'),
(55317, 'https://ror.org/00bs8t174', 'de', 1, 'https://ror.org/00bs8t174 Gesundheitsdienst'),
(55318, 'https://ror.org/00bx5zt27', 'no_lang_code', 1, 'https://ror.org/00bx5zt27 Bazar strojÅÆ (Czechia)'),
(55319, 'https://ror.org/00bzcvv61', 'en', 1, 'https://ror.org/00bzcvv61 Technical and Test Institute for Construction Prague Technický a zkuŔební ústav stavební Praha, s.p.'),
(55320, 'https://ror.org/00c0pch62', 'en', 1, 'https://ror.org/00c0pch62 Sunflower Foundation'),
(55321, 'https://ror.org/00c2hgn02', 'no_lang_code', 1, 'https://ror.org/00c2hgn02 GDK (Czechia)'),
(55322, 'https://ror.org/00c35nc92', 'en', 1, 'https://ror.org/00c35nc92 Cantonal Museum of Fine Arts MusƩe cantonal des beaux-arts'),
(55323, 'https://ror.org/00c4q9a37', 'no_lang_code', 1, 'https://ror.org/00c4q9a37 Materialise (Czechia)'),
(55324, 'https://ror.org/00c51ea71', 'en', 1, 'https://ror.org/00c51ea71 Western Australian Genealogical Society'),
(55325, 'https://ror.org/00c5kj875', 'no_lang_code', 1, 'https://ror.org/00c5kj875 Stratec (Switzerland)'),
(55326, 'https://ror.org/00c5qfd88', 'no_lang_code', 1, 'https://ror.org/00c5qfd88 Ortotika (Czechia)'),
(55327, 'https://ror.org/00c798y78', 'no_lang_code', 1, 'https://ror.org/00c798y78 Laser-Tech (Czechia)'),
(55328, 'https://ror.org/00c7xe135', 'no_lang_code', 1, 'https://ror.org/00c7xe135 Strojmetal Aluminium Forging (Czechia)'),
(55329, 'https://ror.org/00c89j038', 'en', 1, 'https://ror.org/00c89j038 Innovative Research Institute for Cell Therapy'),
(55330, 'https://ror.org/00c8vzn79', 'no_lang_code', 1, 'https://ror.org/00c8vzn79 Fruko Schulz (Czechia)'),
(55331, 'https://ror.org/00ca8m310', 'cs', 1, 'https://ror.org/00ca8m310 Společenstvo KominĆ­kÅÆ ČeskĆ© republiky'),
(55332, 'https://ror.org/00cagd171', 'cs', 1, 'https://ror.org/00cagd171 ZemědělskĆ© Družstvo Maleč'),
(55333, 'https://ror.org/00cbksp73', 'no_lang_code', 1, 'https://ror.org/00cbksp73 Foller (Czechia)'),
(55334, 'https://ror.org/00ccse471', 'en', 1, 'https://ror.org/00ccse471 State Regional Archives Litomerice StĆ”tnĆ­ oblastnĆ­ archiv v LitoměřicĆ­ch'),
(55335, 'https://ror.org/00cezwy16', 'no_lang_code', 1, 'https://ror.org/00cezwy16 Enzo Life Sciences (Switzerland)'),
(55336, 'https://ror.org/00cfkaw62', 'en', 1, 'https://ror.org/00cfkaw62 The European Academy of Gynaecological Surgery'),
(55337, 'https://ror.org/00cgv2351', 'en', 1, 'https://ror.org/00cgv2351 San Francisco General Hospital Foundation'),
(55338, 'https://ror.org/00cjhk544', 'no_lang_code', 1, 'https://ror.org/00cjhk544 EP Energy (Czechia)'),
(55339, 'https://ror.org/00cjvpn28', 'no_lang_code', 1, 'https://ror.org/00cjvpn28 Capital Group (United States)'),
(55340, 'https://ror.org/00ckakm23', 'en', 1, 'https://ror.org/00ckakm23 Sigrid JusƩliuksen sƤƤtiƶ Sigrid JusƩlius Foundation'),
(55341, 'https://ror.org/00cmkfq61', 'no_lang_code', 1, 'https://ror.org/00cmkfq61 Appecastro (Czechia)'),
(55342, 'https://ror.org/00cn0kw78', 'no_lang_code', 1, 'https://ror.org/00cn0kw78 Anhui Conch Design and Research Institute of Building Materials (China)'),
(55343, 'https://ror.org/00cn31g95', 'no_lang_code', 1, 'https://ror.org/00cn31g95 L.A.C. (Switzerland)'),
(55344, 'https://ror.org/00cpjsn56', 'no_lang_code', 1, 'https://ror.org/00cpjsn56 VTL Blansko (Czechia)'),
(55345, 'https://ror.org/00cqgv790', 'no_lang_code', 1, 'https://ror.org/00cqgv790 Kohler (United Kingdom)'),
(55346, 'https://ror.org/00cs24427', 'en', 1, 'https://ror.org/00cs24427 Roddenberry Foundation'),
(55347, 'https://ror.org/00cv3vp39', 'fr', 1, 'https://ror.org/00cv3vp39 Verzone Woods Architectes'),
(55348, 'https://ror.org/00cw6jm89', 'en', 1, 'https://ror.org/00cw6jm89 Schweizerische Radio- und Fernsehgesellschaft Societad Svizra da Radio e Televisiun SocietƠ svizzera di radiotelevisione SociƩtƩ suisse de radiodiffusion et tƩlƩvision Swiss Broadcasting Corporation'),
(55349, 'https://ror.org/00cw9jq79', 'no_lang_code', 1, 'https://ror.org/00cw9jq79 Sicar (Czechia)'),
(55350, 'https://ror.org/00cwx0b58', 'no_lang_code', 1, 'https://ror.org/00cwx0b58 Bohemilk (Czechia)'),
(55351, 'https://ror.org/00cyfpb31', 'no_lang_code', 1, 'https://ror.org/00cyfpb31 StrojĆ­rny a stavby Třinec (Czechia)'),
(55352, 'https://ror.org/00cz2hc49', 'en', 1, 'https://ror.org/00cz2hc49 Maryland State Office Of The Governor'),
(55353, 'https://ror.org/00cztjn15', 'en', 1, 'https://ror.org/00cztjn15 Hinge Health'),
(55354, 'https://ror.org/00d0m6v41', 'en', 1, 'https://ror.org/00d0m6v41 Aid Health and Development Onlus'),
(55355, 'https://ror.org/00d3r7025', 'no_lang_code', 1, 'https://ror.org/00d3r7025 RHI Magnesita (Austria)'),
(55356, 'https://ror.org/00d3z0048', 'en', 1, 'https://ror.org/00d3z0048 Center for Liberal Democratic Studies'),
(55357, 'https://ror.org/00d45ws96', 'no_lang_code', 1, 'https://ror.org/00d45ws96 Asseco (Czechia)'),
(55358, 'https://ror.org/00d57b563', 'en', 1, 'https://ror.org/00d57b563 SIL International'),
(55359, 'https://ror.org/00d670121', 'en', 1, 'https://ror.org/00d670121 St Giles Foundation'),
(55360, 'https://ror.org/00d7dzb74', 'no_lang_code', 1, 'https://ror.org/00d7dzb74 PavEx (Czechia)'),
(55361, 'https://ror.org/00d9n9k04', 'no_lang_code', 1, 'https://ror.org/00d9n9k04 Agriforest (Switzerland)'),
(55362, 'https://ror.org/00d9y8h06', 'ca', 1, 'https://ror.org/00d9y8h06 Servei de Salut de les Illes Balears'),
(55363, 'https://ror.org/00da4yk20', 'en', 1, 'https://ror.org/00da4yk20 Association of Africans Living in Vermont'),
(55364, 'https://ror.org/00dbv2r88', 'no_lang_code', 1, 'https://ror.org/00dbv2r88 Wombat (Czechia)'),
(55365, 'https://ror.org/00dcjap62', 'no_lang_code', 1, 'https://ror.org/00dcjap62 Nitto Chemical Industry (Japan)'),
(55366, 'https://ror.org/00dcm7m32', 'no_lang_code', 1, 'https://ror.org/00dcm7m32 Civitas per Populi'),
(55367, 'https://ror.org/00ddb1628', 'no_lang_code', 1, 'https://ror.org/00ddb1628 Ataco (Czechia)'),
(55368, 'https://ror.org/00ddy0v87', 'it', 1, 'https://ror.org/00ddy0v87 Ufficio di Statistica'),
(55369, 'https://ror.org/00debpx34', 'cs', 1, 'https://ror.org/00debpx34 MÅ  Na Smetance'),
(55370, 'https://ror.org/00dkwfy62', 'cs', 1, 'https://ror.org/00dkwfy62 OkresnĆ­ HospodÔřskĆ” Komora'),
(55371, 'https://ror.org/00dkwrz68', 'en', 1, 'https://ror.org/00dkwrz68 Kenneth Rainin Foundation'),
(55372, 'https://ror.org/00dnz1633', 'no_lang_code', 1, 'https://ror.org/00dnz1633 Seco Group (Czechia)'),
(55373, 'https://ror.org/00dp6v107', 'no_lang_code', 1, 'https://ror.org/00dp6v107 Projekty Vodam (Czechia)'),
(55374, 'https://ror.org/00dqtka84', 'no_lang_code', 1, 'https://ror.org/00dqtka84 FIM Medical (France)'),
(55375, 'https://ror.org/00dqzma51', 'no_lang_code', 1, 'https://ror.org/00dqzma51 VýrobnĆ­ družstvo SlezskĆ” Hořina (Czechia)'),
(55376, 'https://ror.org/00dt0nn62', 'de', 1, 'https://ror.org/00dt0nn62 Pro Vistiliaco'),
(55377, 'https://ror.org/00dtqsj35', 'en', 1, 'https://ror.org/00dtqsj35 Office Of Health Economics'),
(55378, 'https://ror.org/00dtszh11', 'no_lang_code', 1, 'https://ror.org/00dtszh11 S Group Holding (Czechia)'),
(55379, 'https://ror.org/00dzheg11', 'en', 1, 'https://ror.org/00dzheg11 National Family Planning & Reproductive Health Association'),
(55380, 'https://ror.org/00e17ad95', 'en', 1, 'https://ror.org/00e17ad95 Meyerlustenberger Lachenal Attorneys at Law'),
(55381, 'https://ror.org/00e56ek71', 'no_lang_code', 1, 'https://ror.org/00e56ek71 Groupe Winncare (France)'),
(55382, 'https://ror.org/00e7h6j41', 'en', 1, 'https://ror.org/00e7h6j41 Japan Institute of Leather Research ę—„ęœ¬ēš®é©ē ”ē©¶ę‰€'),
(55383, 'https://ror.org/00e8pgs50', 'de', 1, 'https://ror.org/00e8pgs50 Beckmann-Institut für Technologieentwicklung'),
(55384, 'https://ror.org/00e9xte80', 'de', 1, 'https://ror.org/00e9xte80 Pro Pferd'),
(55385, 'https://ror.org/00ecyj017', 'no_lang_code', 1, 'https://ror.org/00ecyj017 TOS Svitavy (Czechia)'),
(55386, 'https://ror.org/00edhwf08', 'no_lang_code', 1, 'https://ror.org/00edhwf08 Oertli Instrumente (Switzerland)'),
(55387, 'https://ror.org/00ef2rd26', 'cs', 1, 'https://ror.org/00ef2rd26 OblastnĆ­ muzeum v LitoměřicĆ­ch'),
(55388, 'https://ror.org/00effcn18', 'no_lang_code', 1, 'https://ror.org/00effcn18 Qualiform (Czechia)'),
(55389, 'https://ror.org/00efyhw94', 'cs', 1, 'https://ror.org/00efyhw94 Editio JanĆ”Äek'),
(55390, 'https://ror.org/00egtf878', 'en', 1, 'https://ror.org/00egtf878 Society for Psychical Research'),
(55391, 'https://ror.org/00ej6x457', 'no_lang_code', 1, 'https://ror.org/00ej6x457 Emerson (Sweden)'),
(55392, 'https://ror.org/00ejn2425', 'en', 1, 'https://ror.org/00ejn2425 Pennington Biomedical Research Foundation'),
(55393, 'https://ror.org/00emm5t38', 'en', 1, 'https://ror.org/00emm5t38 The International Heart Institute of Montana'),
(55394, 'https://ror.org/00en0be76', 'en', 1, 'https://ror.org/00en0be76 Sudbury Foundation'),
(55395, 'https://ror.org/00eqvhf81', 'no_lang_code', 1, 'https://ror.org/00eqvhf81 Urbaplan (Switzerland)'),
(55396, 'https://ror.org/00ex2js61', 'en', 1, 'https://ror.org/00ex2js61 Research Center for Applied Science, Academia Sinica äø­å¤®ē ”ē©¶é™¢ę‡‰ē”Øē§‘å­øē ”ē©¶äø­åæƒ'),
(55397, 'https://ror.org/00exwt685', 'en', 1, 'https://ror.org/00exwt685 Czechoslovak Society for Forensic Genetics ČeskoslovenskĆ© společnosti pro forenznĆ­ genetiku'),
(55398, 'https://ror.org/00ey19s74', 'no_lang_code', 1, 'https://ror.org/00ey19s74 Bilfinger MCE (Czechia)'),
(55399, 'https://ror.org/00eyy9c71', 'en', 1, 'https://ror.org/00eyy9c71 Travis Roy Foundation'),
(55400, 'https://ror.org/00ez64n04', 'no_lang_code', 1, 'https://ror.org/00ez64n04 Ditana (Czechia)'),
(55401, 'https://ror.org/00ez8pa22', 'en', 1, 'https://ror.org/00ez8pa22 Far Eastern State Institute of Arts Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(55402, 'https://ror.org/00ezvft90', 'en', 1, 'https://ror.org/00ezvft90 Laboratory of Excellence GR-Ex'),
(55403, 'https://ror.org/00f2df561', 'no_lang_code', 1, 'https://ror.org/00f2df561 Arming (Czechia)'),
(55404, 'https://ror.org/00f30ft24', 'no_lang_code', 1, 'https://ror.org/00f30ft24 ALS (Czechia)'),
(55405, 'https://ror.org/00f4jy747', 'no_lang_code', 1, 'https://ror.org/00f4jy747 CID International (Czechia)'),
(55406, 'https://ror.org/00f89qm26', 'de', 1, 'https://ror.org/00f89qm26 Landesdenkmalamt Baden Württemberg'),
(55407, 'https://ror.org/00f9cn816', 'no_lang_code', 1, 'https://ror.org/00f9cn816 Lifetech (Czechia)'),
(55408, 'https://ror.org/00fakpg77', 'no_lang_code', 1, 'https://ror.org/00fakpg77 Rent-Pharm (Czechia)'),
(55409, 'https://ror.org/00fanpm32', 'no_lang_code', 1, 'https://ror.org/00fanpm32 Ransom Naturals (United Kingdom)'),
(55410, 'https://ror.org/00fb2p217', 'no_lang_code', 1, 'https://ror.org/00fb2p217 Barco (Czechia)'),
(55411, 'https://ror.org/00fb4ms10', 'en', 1, 'https://ror.org/00fb4ms10 Promobilia Foundation Stiftelsen Promobilia'),
(55412, 'https://ror.org/00fg6ye96', 'cs', 1, 'https://ror.org/00fg6ye96 Svaz PěstitelÅÆ A ZpracovatelÅÆ Olejnin'),
(55413, 'https://ror.org/00fhn5p96', 'no_lang_code', 1, 'https://ror.org/00fhn5p96 Earth Resources Technology (United States)'),
(55414, 'https://ror.org/00fje3r15', 'no_lang_code', 1, 'https://ror.org/00fje3r15 Tethys Instruments (France)'),
(55415, 'https://ror.org/00fjtyx23', 'fr', 1, 'https://ror.org/00fjtyx23 Association Fribourgeoise des Psychologues'),
(55416, 'https://ror.org/00fjx2954', 'no_lang_code', 1, 'https://ror.org/00fjx2954 Frentech Aerospace (Czechia)'),
(55417, 'https://ror.org/00fkcvn38', 'no_lang_code', 1, 'https://ror.org/00fkcvn38 BlatenskĆ” ryba (Czechia)'),
(55418, 'https://ror.org/00fmf4r59', 'sv', 1, 'https://ror.org/00fmf4r59 Kjell och MƤrta Beijers Stiftelse'),
(55419, 'https://ror.org/00fpjma30', 'no_lang_code', 1, 'https://ror.org/00fpjma30 Atelier Fontes (Czechia)'),
(55420, 'https://ror.org/00fq8a754', 'en', 1, 'https://ror.org/00fq8a754 Svenska Akademien Swedish Academy'),
(55421, 'https://ror.org/00fran495', 'en', 1, 'https://ror.org/00fran495 World Farmers'),
(55422, 'https://ror.org/00fx0z455', 'en', 1, 'https://ror.org/00fx0z455 Tennessee Commission on Aging and Disability'),
(55423, 'https://ror.org/00fx55r32', 'no_lang_code', 1, 'https://ror.org/00fx55r32 Hua Yuan Group (China) åŽčæœé›†å›¢'),
(55424, 'https://ror.org/00fxeax19', 'no_lang_code', 1, 'https://ror.org/00fxeax19 AIS (Czechia)'),
(55425, 'https://ror.org/00fyrp007', 'en', 1, 'https://ror.org/00fyrp007 NeuroMab'),
(55426, 'https://ror.org/00fzq0880', 'fr', 1, 'https://ror.org/00fzq0880 Institut National de PrĆ©vention et d’Education pour la SantĆ©'),
(55427, 'https://ror.org/00fzxtk71', 'en', 1, 'https://ror.org/00fzxtk71 Joint Laboratory for Extreme Conditions Matter Properties č„æå—ē§‘ęŠ€å¤§å­¦ęžē«Æę”ä»¶ē‰©č“Øē‰¹ę€§č”åˆå®žéŖŒå®¤'),
(55428, 'https://ror.org/00g0srg04', 'no_lang_code', 1, 'https://ror.org/00g0srg04 3S Sedlak (Czechia)'),
(55429, 'https://ror.org/00g3hdg93', 'en', 1, 'https://ror.org/00g3hdg93 KancelÔř PoslaneckĆ© sněmovny Office of the Chamber of Deputies'),
(55430, 'https://ror.org/00g3rdy81', 'en', 1, 'https://ror.org/00g3rdy81 Swiss Institute for Regenerative Medicine'),
(55431, 'https://ror.org/00g4vzf03', 'de', 1, 'https://ror.org/00g4vzf03 Stadt Zürich Hochbaudepartement'),
(55432, 'https://ror.org/00g6aeb47', 'cs', 1, 'https://ror.org/00g6aeb47 OblastnĆ­ nemocnice Kladno'),
(55433, 'https://ror.org/00g7fhp37', 'no_lang_code', 1, 'https://ror.org/00g7fhp37 AbbVie (Ireland)'),
(55434, 'https://ror.org/00g7hs466', 'en', 1, 'https://ror.org/00g7hs466 Hyaluronan Research Institute ę Ŗå¼ä¼šē¤¾ ćƒ’ć‚¢ćƒ«ćƒ­ćƒ³é…øē ”ē©¶ę‰€'),
(55435, 'https://ror.org/00g92jb54', 'no_lang_code', 1, 'https://ror.org/00g92jb54 ZlĆ­n Precision (Czechia)'),
(55436, 'https://ror.org/00gaz3763', 'en', 1, 'https://ror.org/00gaz3763 Legislative Council of Hong Kong é¦™ęøÆē‰¹åˆ„č”Œę”æå€ē«‹ę³•ęœƒ'),
(55437, 'https://ror.org/00gbp3k84', 'de', 1, 'https://ror.org/00gbp3k84 Klinik Bethesda'),
(55438, 'https://ror.org/00gc20a07', 'en', 1, 'https://ror.org/00gc20a07 Uehara Memorial Foundation äøŠåŽŸčØ˜åæµč²”å›£'),
(55439, 'https://ror.org/00gc5g440', 'en', 1, 'https://ror.org/00gc5g440 Ballenberg Freilichtmuseum der Schweiz Ballenberg Swiss Open-Air Museum'),
(55440, 'https://ror.org/00geaym80', 'no_lang_code', 1, 'https://ror.org/00geaym80 Artificial Sensing Instruments (Switzerland)'),
(55441, 'https://ror.org/00gfjrf11', 'no_lang_code', 1, 'https://ror.org/00gfjrf11 Johnson & Johnson (France)'),
(55442, 'https://ror.org/00gfyj628', 'no_lang_code', 1, 'https://ror.org/00gfyj628 Matex PM (Czechia)'),
(55443, 'https://ror.org/00ggfn496', 'fr', 1, 'https://ror.org/00ggfn496 Association de Recherche en Soins Infirmiers'),
(55444, 'https://ror.org/00ggtj069', 'no_lang_code', 1, 'https://ror.org/00ggtj069 ADW (Czechia)'),
(55445, 'https://ror.org/00ggtz082', 'en', 1, 'https://ror.org/00ggtz082 Val Skinner Foundation'),
(55446, 'https://ror.org/00gjtdf30', 'no_lang_code', 1, 'https://ror.org/00gjtdf30 Oclaro (Japan)'),
(55447, 'https://ror.org/00gkes048', 'no_lang_code', 1, 'https://ror.org/00gkes048 Oncomedics (France)'),
(55448, 'https://ror.org/00gpm0e44', 'no_lang_code', 1, 'https://ror.org/00gpm0e44 NTX Research (France)'),
(55449, 'https://ror.org/00gpmkq36', 'cs', 1, 'https://ror.org/00gpmkq36 Česmad Bohemia'),
(55450, 'https://ror.org/00gqt9c14', 'en', 1, 'https://ror.org/00gqt9c14 Starr Foundation'),
(55451, 'https://ror.org/00gr9gj95', 'no_lang_code', 1, 'https://ror.org/00gr9gj95 jCyte (United States)'),
(55452, 'https://ror.org/00grcq349', 'no_lang_code', 1, 'https://ror.org/00grcq349 Mdoloris Medical Systems (France)'),
(55453, 'https://ror.org/00gsykk45', 'sv', 1, 'https://ror.org/00gsykk45 ƅhlĆ©n-Stiftelsen'),
(55454, 'https://ror.org/00gxcsd97', 'en', 1, 'https://ror.org/00gxcsd97 TLC Foundation'),
(55455, 'https://ror.org/00gyg9a78', 'en', 1, 'https://ror.org/00gyg9a78 Sustainable Aviation Foundation'),
(55456, 'https://ror.org/00gz1s959', 'fr', 1, 'https://ror.org/00gz1s959 Archives d''Ɖtat de GenĆØve'),
(55457, 'https://ror.org/00gze1672', 'no_lang_code', 1, 'https://ror.org/00gze1672 Teradata (United Kingdom)'),
(55458, 'https://ror.org/00h16dr76', 'en', 1, 'https://ror.org/00h16dr76 Center for Social and Economic Research Центр ŃŠ¾Ń†Ń–Š°Š»ŃŒŠ½Š¾-економічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(55459, 'https://ror.org/00h1t5780', 'no_lang_code', 1, 'https://ror.org/00h1t5780 Bmto Group (Czechia)'),
(55460, 'https://ror.org/00h1tez17', 'no_lang_code', 1, 'https://ror.org/00h1tez17 Ekoport'),
(55461, 'https://ror.org/00h4bvr24', 'no_lang_code', 1, 'https://ror.org/00h4bvr24 Vinitex Laboratoriuminrichtingen Vinitex Laboratory Systems (Netherlands)'),
(55462, 'https://ror.org/00h588p66', 'no_lang_code', 1, 'https://ror.org/00h588p66 ADP (Czechia)'),
(55463, 'https://ror.org/00h59gj21', 'no_lang_code', 1, 'https://ror.org/00h59gj21 Faiveley Transport (Czechia)'),
(55464, 'https://ror.org/00h5qcp65', 'fr', 1, 'https://ror.org/00h5qcp65 Touring Club Suisse'),
(55465, 'https://ror.org/00h9czn48', 'no_lang_code', 1, 'https://ror.org/00h9czn48 Mill City Grows (United States)'),
(55466, 'https://ror.org/00hat9k49', 'no_lang_code', 1, 'https://ror.org/00hat9k49 Sladovny Soufflet (Czechia)'),
(55467, 'https://ror.org/00hbgc813', 'no_lang_code', 1, 'https://ror.org/00hbgc813 H1.cz (Czechia)'),
(55468, 'https://ror.org/00hbn9p31', 'no_lang_code', 1, 'https://ror.org/00hbn9p31 MP KrƔsno (Czechia)'),
(55469, 'https://ror.org/00hd4jd19', 'en', 1, 'https://ror.org/00hd4jd19 East University Of Heilongjiang é»‘é¾ę±Ÿę±ę–¹å­øé™¢'),
(55470, 'https://ror.org/00hf8n006', 'no_lang_code', 1, 'https://ror.org/00hf8n006 Mikroklima (Czechia)'),
(55471, 'https://ror.org/00hf9b998', 'no_lang_code', 1, 'https://ror.org/00hf9b998 Micos (Czechia)'),
(55472, 'https://ror.org/00hg0yg56', 'en', 1, 'https://ror.org/00hg0yg56 Gleaners Food Bank of Indiana'),
(55473, 'https://ror.org/00hg21s64', 'no_lang_code', 1, 'https://ror.org/00hg21s64 AgraTek (United States)'),
(55474, 'https://ror.org/00hg23335', 'no_lang_code', 1, 'https://ror.org/00hg23335 Pražské Vodovody a Kanalizace'),
(55475, 'https://ror.org/00hhge266', 'no_lang_code', 1, 'https://ror.org/00hhge266 Agrofert (Czechia)'),
(55476, 'https://ror.org/00hk9tb32', 'no_lang_code', 1, 'https://ror.org/00hk9tb32 CNH Industrial (Switzerland)'),
(55477, 'https://ror.org/00hm3z611', 'no_lang_code', 1, 'https://ror.org/00hm3z611 Keramtech (Czechia)'),
(55478, 'https://ror.org/00hwty226', 'en', 1, 'https://ror.org/00hwty226 Xiamen Institute of Rare-earth Materials äø­å›½ē§‘å­¦é™¢ęµ·č„æē ”ē©¶é™¢åŽ¦é—ØēØ€åœŸęę–™ē ”ē©¶ę‰€'),
(55479, 'https://ror.org/00hx9vt43', 'en', 1, 'https://ror.org/00hx9vt43 Sarkeys Foundation'),
(55480, 'https://ror.org/00hxz0s44', 'no_lang_code', 1, 'https://ror.org/00hxz0s44 Bodycote (Canada)'),
(55481, 'https://ror.org/00hzk1038', 'en', 1, 'https://ror.org/00hzk1038 Driskill Foundation'),
(55482, 'https://ror.org/00j2jd568', 'no_lang_code', 1, 'https://ror.org/00j2jd568 LentiKat''s (Czechia)'),
(55483, 'https://ror.org/00j45v080', 'no_lang_code', 1, 'https://ror.org/00j45v080 MrƔz Agro (Czechia)'),
(55484, 'https://ror.org/00j4rmt21', 'no_lang_code', 1, 'https://ror.org/00j4rmt21 Redam (Czechia)'),
(55485, 'https://ror.org/00j558r43', 'no_lang_code', 1, 'https://ror.org/00j558r43 Kolejconsult & Servis (Czechia)'),
(55486, 'https://ror.org/00j681549', 'no_lang_code', 1, 'https://ror.org/00j681549 Sofradir (France)'),
(55487, 'https://ror.org/00j6f3g48', 'de', 1, 'https://ror.org/00j6f3g48 Schweizerisches Institut für Kinder- und Jugendmedien'),
(55488, 'https://ror.org/00j8xde38', 'no_lang_code', 1, 'https://ror.org/00j8xde38 Eurobio (France)'),
(55489, 'https://ror.org/00jb81722', 'en', 1, 'https://ror.org/00jb81722 National Sustainable Agriculture Coalition'),
(55490, 'https://ror.org/00jcm9s26', 'cs', 1, 'https://ror.org/00jcm9s26 ToulcÅÆv DvÅÆr'),
(55491, 'https://ror.org/00jgvmv83', 'no_lang_code', 1, 'https://ror.org/00jgvmv83 ŽPSV (Czechia)'),
(55492, 'https://ror.org/00jn8v512', 'en', 1, 'https://ror.org/00jn8v512 Khaled bin Sultan Living Oceans Foundation'),
(55493, 'https://ror.org/00jpc6f46', 'no_lang_code', 1, 'https://ror.org/00jpc6f46 Megat (Czechia)'),
(55494, 'https://ror.org/00jqzcd41', 'no_lang_code', 1, 'https://ror.org/00jqzcd41 Benefit CZ (Czechia)'),
(55495, 'https://ror.org/00jr9ks41', 'no_lang_code', 1, 'https://ror.org/00jr9ks41 Techniserv (Czechia)'),
(55496, 'https://ror.org/00jrvek48', 'en', 1, 'https://ror.org/00jrvek48 Oregon Department of Consumer and Business Services'),
(55497, 'https://ror.org/00jw9yq80', 'no_lang_code', 1, 'https://ror.org/00jw9yq80 Dosting (Czechia)'),
(55498, 'https://ror.org/00jwvkg84', 'en', 1, 'https://ror.org/00jwvkg84 Physics and Technology Institute of Metals and Alloys Физико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металлов Šø сплавов'),
(55499, 'https://ror.org/00jyvgk83', 'no_lang_code', 1, 'https://ror.org/00jyvgk83 Autometal (Czechia)'),
(55500, 'https://ror.org/00jz21w71', 'no_lang_code', 1, 'https://ror.org/00jz21w71 Ricardo Prague (Czechia)'),
(55501, 'https://ror.org/00jz7d133', 'en', 1, 'https://ror.org/00jz7d133 Princess Alexandra Eye Pavilion'),
(55502, 'https://ror.org/00jzne873', 'en', 1, 'https://ror.org/00jzne873 Whitley Fund for Nature'),
(55503, 'https://ror.org/00k0bfm63', 'en', 1, 'https://ror.org/00k0bfm63 Russian Academy of Architecture and Construction Sciences Š Š¾ŃŃŠøĢŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµĢŠ¼ŠøŃ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒĢŃ€Ń‹ Šø ŃŃ‚Ń€Š¾ŠøĢŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… нау́к'),
(55504, 'https://ror.org/00k0msf85', 'no_lang_code', 1, 'https://ror.org/00k0msf85 Itopia (Switzerland)'),
(55505, 'https://ror.org/00k0vt064', 'en', 1, 'https://ror.org/00k0vt064 Research and Design Institute of Urea and Organic Synthesis Products ŠžŃ‚ŠŗŃ€Ń‹Ń‚Š¾Šµ Акционирское ŠžŠ±Ń‰ŠµŃŃ‚во. ИсслеГование. И проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мочевины Šø органического синтеза'),
(55506, 'https://ror.org/00k2e8z33', 'no_lang_code', 1, 'https://ror.org/00k2e8z33 Koneko (Czechia)'),
(55507, 'https://ror.org/00k389086', 'no_lang_code', 1, 'https://ror.org/00k389086 Forsthoffer Associates (United States)'),
(55508, 'https://ror.org/00k5q8r19', 'no_lang_code', 1, 'https://ror.org/00k5q8r19 Gaben (Czechia)'),
(55509, 'https://ror.org/00k5y4z24', 'no_lang_code', 1, 'https://ror.org/00k5y4z24 Kitl (Czechia)'),
(55510, 'https://ror.org/00k602276', 'cs', 1, 'https://ror.org/00k602276 Asociace Svazů Chovatelů Koní České Republiky'),
(55511, 'https://ror.org/00k7st669', 'no_lang_code', 1, 'https://ror.org/00k7st669 Czech Aeroholding (Czechia) Český Aeroholding'),
(55512, 'https://ror.org/00k9vtb32', 'en', 1, 'https://ror.org/00k9vtb32 Schweizerische Hochschulkonferen Swiss University Conference'),
(55513, 'https://ror.org/00kaycc68', 'en', 1, 'https://ror.org/00kaycc68 Hefei Cement Research Design Institute åˆč‚„ę°“ę³„ē ”ē©¶č®¾č®”é™¢'),
(55514, 'https://ror.org/00kbr7y65', 'no_lang_code', 1, 'https://ror.org/00kbr7y65 BurgSys (Czechia)'),
(55515, 'https://ror.org/00kcehz97', 'en', 1, 'https://ror.org/00kcehz97 French Corrosion Institute'),
(55516, 'https://ror.org/00kcmem28', 'no_lang_code', 1, 'https://ror.org/00kcmem28 DAP Services (Czechia)'),
(55517, 'https://ror.org/00kdsdv26', 'fr', 1, 'https://ror.org/00kdsdv26 MusĆ©e d’histoire du Valais'),
(55518, 'https://ror.org/00kg1dd44', 'en', 1, 'https://ror.org/00kg1dd44 The American Chestnut Foundation'),
(55519, 'https://ror.org/00kkxjg31', 'no_lang_code', 1, 'https://ror.org/00kkxjg31 GreyCortex (Czechia)'),
(55520, 'https://ror.org/00kny8y22', 'fr', 1, 'https://ror.org/00kny8y22 Laboratoire Excell'),
(55521, 'https://ror.org/00kqjn528', 'en', 1, 'https://ror.org/00kqjn528 Taiwan Textile Research Institute ē“”ē¹”ē”¢ę„­ē¶œåˆē ”ē©¶ę‰€'),
(55522, 'https://ror.org/00kr3hh47', 'de', 1, 'https://ror.org/00kr3hh47 Antikenmuseum Basel und Sammlung Ludwig, Basel Museum of Ancient Art and Ludwig Collection'),
(55523, 'https://ror.org/00kwyj403', 'no_lang_code', 1, 'https://ror.org/00kwyj403 Sklopan Liberec (Czechia)'),
(55524, 'https://ror.org/00kxjhp06', 'no_lang_code', 1, 'https://ror.org/00kxjhp06 Feramat Cybernetics (Czechia)'),
(55525, 'https://ror.org/00m1w1e65', 'no_lang_code', 1, 'https://ror.org/00m1w1e65 Envi-Pur (Czechia)'),
(55526, 'https://ror.org/00m2xfz17', 'no_lang_code', 1, 'https://ror.org/00m2xfz17 Bioengineering (Switzerland)'),
(55527, 'https://ror.org/00m590d63', 'de', 1, 'https://ror.org/00m590d63 Mediplant'),
(55528, 'https://ror.org/00m5hxb63', 'en', 1, 'https://ror.org/00m5hxb63 Parrott Equine Associates'),
(55529, 'https://ror.org/00m5y7t24', 'en', 1, 'https://ror.org/00m5y7t24 BIGCCS'),
(55530, 'https://ror.org/00m7t6760', 'de', 1, 'https://ror.org/00m7t6760 Spital STS'),
(55531, 'https://ror.org/00mcgvm89', 'en', 1, 'https://ror.org/00mcgvm89 Wildlife Conservation Society Argentina'),
(55532, 'https://ror.org/00mdxht46', 'en', 1, 'https://ror.org/00mdxht46 Prison Service of the Czech Republic VězeňskĆ” služba ČeskĆ© republiky'),
(55533, 'https://ror.org/00me50c36', 'en', 1, 'https://ror.org/00me50c36 Avraham Y. Goldratt Institute'),
(55534, 'https://ror.org/00meev387', 'en', 1, 'https://ror.org/00meev387 Sea World'),
(55535, 'https://ror.org/00meg4816', 'no_lang_code', 1, 'https://ror.org/00meg4816 Veolia (Czechia)'),
(55536, 'https://ror.org/00memet03', 'no_lang_code', 1, 'https://ror.org/00memet03 Sunstar (Switzerland)'),
(55537, 'https://ror.org/00meqs091', 'de', 1, 'https://ror.org/00meqs091 Justiz Gemeinde und Kirchendirektion'),
(55538, 'https://ror.org/00mfshe62', 'en', 1, 'https://ror.org/00mfshe62 Wishlist'),
(55539, 'https://ror.org/00mfys757', 'en', 1, 'https://ror.org/00mfys757 World Food Prize Foundation'),
(55540, 'https://ror.org/00mgaf355', 'de', 1, 'https://ror.org/00mgaf355 Kantonsschule Stadelhofen'),
(55541, 'https://ror.org/00mgycb86', 'en', 1, 'https://ror.org/00mgycb86 Forschungskreis der ErnƤhrungsindustrie Research Association of the German Food Industry'),
(55542, 'https://ror.org/00mjd8b34', 'en', 1, 'https://ror.org/00mjd8b34 Ministerstvo financí České republiky Ministry of Finance of the Czech Republic'),
(55543, 'https://ror.org/00mn4nn85', 'da', 1, 'https://ror.org/00mn4nn85 Svineafgiftsfonden'),
(55544, 'https://ror.org/00mntmj21', 'en', 1, 'https://ror.org/00mntmj21 Goyder Institute for Water Research'),
(55545, 'https://ror.org/00mp5e421', 'no_lang_code', 1, 'https://ror.org/00mp5e421 Satra (Czechia)'),
(55546, 'https://ror.org/00mrdq115', 'no_lang_code', 1, 'https://ror.org/00mrdq115 EuroTec JKR (Czechia)'),
(55547, 'https://ror.org/00mt9mq23', 'en', 1, 'https://ror.org/00mt9mq23 Order Sons of Italy in America, Ordine Figli d’Italia in America'),
(55548, 'https://ror.org/00mv65m72', 'no_lang_code', 1, 'https://ror.org/00mv65m72 Mosaic Event Management (United States)'),
(55549, 'https://ror.org/00mwckg53', 'no_lang_code', 1, 'https://ror.org/00mwckg53 Wesco (Japan) ę Ŗå¼ä¼šē¤¾ć‚¦ć‚Øć‚¹ć‚³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(55550, 'https://ror.org/00n16p279', 'no_lang_code', 1, 'https://ror.org/00n16p279 Setaram Instrumentation (France)'),
(55551, 'https://ror.org/00n2epv23', 'no_lang_code', 1, 'https://ror.org/00n2epv23 StÔtní Výzkumný Ústav pro Stavbu Strojů (Czechia)'),
(55552, 'https://ror.org/00n2n5x30', 'no_lang_code', 1, 'https://ror.org/00n2n5x30 Celtrak (Ireland)'),
(55553, 'https://ror.org/00n58s174', 'en', 1, 'https://ror.org/00n58s174 Sveriges ƶgonlƤkarfƶrening Swedish Ophthalmological Society'),
(55554, 'https://ror.org/00n83hf26', 'fr', 1, 'https://ror.org/00n83hf26 Association Savoir Patient'),
(55555, 'https://ror.org/00n8cd549', 'en', 1, 'https://ror.org/00n8cd549 JGC-S Scholarship Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ę®ćƒ»å®Ÿå‰å„Øå­¦ä¼š'),
(55556, 'https://ror.org/00n95xs29', 'de', 1, 'https://ror.org/00n95xs29 Fotostiftung Schweiz'),
(55557, 'https://ror.org/00ncbzn09', 'no_lang_code', 1, 'https://ror.org/00ncbzn09 Phytocos (France)'),
(55558, 'https://ror.org/00nedks60', 'en', 1, 'https://ror.org/00nedks60 Wuxi Municipal Health Bureau ę— é””åø‚å«č®”å§”'),
(55559, 'https://ror.org/00ney4p16', 'no_lang_code', 1, 'https://ror.org/00ney4p16 Techtronic Industries (China)'),
(55560, 'https://ror.org/00nj0fk68', 'no_lang_code', 1, 'https://ror.org/00nj0fk68 Mitsui & Co (Ireland)'),
(55561, 'https://ror.org/00njbc474', 'cs', 1, 'https://ror.org/00njbc474 Odborový Svaz Pracovníků Hornictví, Geologie a Naftového Průmyslu'),
(55562, 'https://ror.org/00njmse54', 'en', 1, 'https://ror.org/00njmse54 St. Petersburg University of the Humanities and Social Sciences Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃ€Š¾Ń„ŃŠ¾ŃŽŠ·Š¾Š² [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(55563, 'https://ror.org/00njy2393', 'fr', 1, 'https://ror.org/00njy2393 Caisse de PrƩvoyance du Personnel de l''Etat de Fribourg'),
(55564, 'https://ror.org/00nmpgc29', 'no_lang_code', 1, 'https://ror.org/00nmpgc29 Supercomputing Systems (Switzerland)'),
(55565, 'https://ror.org/00nngxj80', 'no_lang_code', 1, 'https://ror.org/00nngxj80 Kraft Heinz (United Kingdom)'),
(55566, 'https://ror.org/00nq6zy28', 'no_lang_code', 1, 'https://ror.org/00nq6zy28 Zebr (Czechia)'),
(55567, 'https://ror.org/00nqbw566', 'no_lang_code', 1, 'https://ror.org/00nqbw566 Thames Medical (United Kingdom)'),
(55568, 'https://ror.org/00nqrzf67', 'de', 1, 'https://ror.org/00nqrzf67 Aargauer Kantonsbibliothek'),
(55569, 'https://ror.org/00ns9df65', 'no_lang_code', 1, 'https://ror.org/00ns9df65 Seattle Photonics Associates (United States)'),
(55570, 'https://ror.org/00ntr9f13', 'no_lang_code', 1, 'https://ror.org/00ntr9f13 Pharmerit (Netherlands)'),
(55571, 'https://ror.org/00ntwgk39', 'fr', 1, 'https://ror.org/00ntwgk39 HƓpital Beau-SƩjour'),
(55572, 'https://ror.org/00nxfq722', 'no_lang_code', 1, 'https://ror.org/00nxfq722 VÔpenka VitoŔov (Czechia)'),
(55573, 'https://ror.org/00nxm9m32', 'de', 1, 'https://ror.org/00nxm9m32 Stadtarchiv Bern'),
(55574, 'https://ror.org/00nzvp437', 'en', 1, 'https://ror.org/00nzvp437 Population Association of America'),
(55575, 'https://ror.org/00p03yg71', 'en', 1, 'https://ror.org/00p03yg71 Istituto Superconduttori, Materiali Innovativi e Dispositivi Superconducting and other Innovative Materials and Devices Institute'),
(55576, 'https://ror.org/00p287g25', 'no_lang_code', 1, 'https://ror.org/00p287g25 Nintendo (France)'),
(55577, 'https://ror.org/00p3ce068', 'en', 1, 'https://ror.org/00p3ce068 KIST Europe'),
(55578, 'https://ror.org/00p3nsd37', 'no_lang_code', 1, 'https://ror.org/00p3nsd37 Ulverscroft (United Kingdom)'),
(55579, 'https://ror.org/00p8gje40', 'no_lang_code', 1, 'https://ror.org/00p8gje40 TiĆŗ-Plast (Czechia)'),
(55580, 'https://ror.org/00p9cwr43', 'no_lang_code', 1, 'https://ror.org/00p9cwr43 Barekol (Czechia)'),
(55581, 'https://ror.org/00pc6ac31', 'no_lang_code', 1, 'https://ror.org/00pc6ac31 Analytical Mechanics Associates (United States)'),
(55582, 'https://ror.org/00pd5dx05', 'no_lang_code', 1, 'https://ror.org/00pd5dx05 Y-Parc (Switzerland)'),
(55583, 'https://ror.org/00pe39y85', 'no_lang_code', 1, 'https://ror.org/00pe39y85 Bruker (France)'),
(55584, 'https://ror.org/00pecb659', 'no_lang_code', 1, 'https://ror.org/00pecb659 Labrys'),
(55585, 'https://ror.org/00pehtc22', 'no_lang_code', 1, 'https://ror.org/00pehtc22 Oikoymenh (Czechia)'),
(55586, 'https://ror.org/00pemyx71', 'no_lang_code', 1, 'https://ror.org/00pemyx71 Sanas (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒŠć‚¹'),
(55587, 'https://ror.org/00pfmb678', 'en', 1, 'https://ror.org/00pfmb678 Central Silk Technological Research Institute'),
(55588, 'https://ror.org/00pfxvf64', 'en', 1, 'https://ror.org/00pfxvf64 Aging In New York Fund'),
(55589, 'https://ror.org/00pg1wz48', 'no_lang_code', 1, 'https://ror.org/00pg1wz48 Detas (Czechia)'),
(55590, 'https://ror.org/00pgwrm68', 'no_lang_code', 1, 'https://ror.org/00pgwrm68 Alpha and Omega Semiconductor (United States)'),
(55591, 'https://ror.org/00pkj5048', 'no_lang_code', 1, 'https://ror.org/00pkj5048 Invaz (Czechia)'),
(55592, 'https://ror.org/00pmqdp10', 'no_lang_code', 1, 'https://ror.org/00pmqdp10 Aspide Medical (France)'),
(55593, 'https://ror.org/00pn2q632', 'no_lang_code', 1, 'https://ror.org/00pn2q632 Knitva (Czechia)'),
(55594, 'https://ror.org/00ppegh42', 'en', 1, 'https://ror.org/00ppegh42 Scientific Research Support Fund ŲµŁ†ŲÆŁˆŁ‚ دعم البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(55595, 'https://ror.org/00pq1ak56', 'fr', 1, 'https://ror.org/00pq1ak56 Etablissement Primaire et Secondaire Vevey'),
(55596, 'https://ror.org/00pqvxn28', 'no_lang_code', 1, 'https://ror.org/00pqvxn28 ORB Studio (United States)'),
(55597, 'https://ror.org/00prhpp43', 'en', 1, 'https://ror.org/00prhpp43 Bangladesh Jute Research Institute বাংলাদেশ পাট গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(55598, 'https://ror.org/00ps92954', 'no_lang_code', 1, 'https://ror.org/00ps92954 Nagase (Japan) é•·ē€¬ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(55599, 'https://ror.org/00pt3xy74', 'no_lang_code', 1, 'https://ror.org/00pt3xy74 Effik (France)'),
(55600, 'https://ror.org/00ptgc951', 'no_lang_code', 1, 'https://ror.org/00ptgc951 Zepo Bělohrad (Czechia)'),
(55601, 'https://ror.org/00pw0tx86', 'en', 1, 'https://ror.org/00pw0tx86 Open Source Robotics Foundation'),
(55602, 'https://ror.org/00px2aj27', 'en', 1, 'https://ror.org/00px2aj27 Haute Ɖcole d''ingĆ©nierie et d''architecture de Fribourg School of Engineering and Architecture of Fribourg'),
(55603, 'https://ror.org/00pxr4197', 'no_lang_code', 1, 'https://ror.org/00pxr4197 Security Paper Mill (Czechia)'),
(55604, 'https://ror.org/00q017g63', 'en', 1, 'https://ror.org/00q017g63 Taipei Tzu Chi Hospital å°åŒ—ę…ˆęµŽåŒ»é™¢'),
(55605, 'https://ror.org/00q0ej829', 'no_lang_code', 1, 'https://ror.org/00q0ej829 PPF (Czechia)'),
(55606, 'https://ror.org/00q1rv339', 'en', 1, 'https://ror.org/00q1rv339 CURE International UK'),
(55607, 'https://ror.org/00q2tna33', 'it', 1, 'https://ror.org/00q2tna33 Associazione della Croce Rossa Italiana'),
(55608, 'https://ror.org/00q4d7711', 'fr', 1, 'https://ror.org/00q4d7711 Orthodontie MC20'),
(55609, 'https://ror.org/00q6se919', 'no_lang_code', 1, 'https://ror.org/00q6se919 CL Medical (France)'),
(55610, 'https://ror.org/00q6td368', 'no_lang_code', 1, 'https://ror.org/00q6td368 Wolf and Danniel (Czechia)'),
(55611, 'https://ror.org/00q9d8f64', 'en', 1, 'https://ror.org/00q9d8f64 Joint Graduate School of Energy and Environment ąøšąø±ąø“ąø‘ąø“ąø•ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ą¹ˆąø§ąø”ąø”ą¹‰ąø²ąø™ąøžąø„ąø±ąø‡ąø‡ąø²ąø™ą¹ąø„ąø°ąøŖąø“ą¹ˆąø‡ą¹ąø§ąø”ąø„ą¹‰ąø­ąø”'),
(55612, 'https://ror.org/00qa5z221', 'en', 1, 'https://ror.org/00qa5z221 Hart Community Homes'),
(55613, 'https://ror.org/00qajw440', 'no_lang_code', 1, 'https://ror.org/00qajw440 SK Group (United States)'),
(55614, 'https://ror.org/00qbq1b12', 'no_lang_code', 1, 'https://ror.org/00qbq1b12 ABM Architekti (Czechia)'),
(55615, 'https://ror.org/00qcg1942', 'no_lang_code', 1, 'https://ror.org/00qcg1942 CHemProtect (Czechia)'),
(55616, 'https://ror.org/00qdgd523', 'no_lang_code', 1, 'https://ror.org/00qdgd523 Czech Precision Forge (Czechia)'),
(55617, 'https://ror.org/00qdpx246', 'en', 1, 'https://ror.org/00qdpx246 National Network of Healthy Cities NĆ”rodnĆ­ SĆ­Å„ Zdravých Měst'),
(55618, 'https://ror.org/00qdrdx13', 'no_lang_code', 1, 'https://ror.org/00qdrdx13 Ecosoft (Czechia)'),
(55619, 'https://ror.org/00qgmat53', 'no_lang_code', 1, 'https://ror.org/00qgmat53 Sigma-Tau Pharmaceuticals (United States)'),
(55620, 'https://ror.org/00qjy4068', 'no_lang_code', 1, 'https://ror.org/00qjy4068 RegionƔlnƭ PoradenskƔ Agentura (Czechia)'),
(55621, 'https://ror.org/00qkaw379', 'no_lang_code', 1, 'https://ror.org/00qkaw379 GEOTEST (Switzerland)'),
(55622, 'https://ror.org/00qkj1g75', 'no_lang_code', 1, 'https://ror.org/00qkj1g75 SKK Landschaftsarchitekten (Switzerland)'),
(55623, 'https://ror.org/00qks3d19', 'en', 1, 'https://ror.org/00qks3d19 Kansas Department of Commerce'),
(55624, 'https://ror.org/00qm34c52', 'no_lang_code', 1, 'https://ror.org/00qm34c52 Strasky Husty and Partners (Czechia)'),
(55625, 'https://ror.org/00qma8b89', 'no_lang_code', 1, 'https://ror.org/00qma8b89 OKD (Czechia) Ostravsko-karvinskƩ doly'),
(55626, 'https://ror.org/00qmpe609', 'no_lang_code', 1, 'https://ror.org/00qmpe609 Energocentrum (Czechia)'),
(55627, 'https://ror.org/00qmtfb26', 'en', 1, 'https://ror.org/00qmtfb26 Agricultural And Forestry Machinery Association'),
(55628, 'https://ror.org/00qmvrz07', 'en', 1, 'https://ror.org/00qmvrz07 Vietnam International Education Cooperation Department'),
(55629, 'https://ror.org/00qp6gv29', 'no_lang_code', 1, 'https://ror.org/00qp6gv29 ECO (Czechia)'),
(55630, 'https://ror.org/00qq1x890', 'en', 1, 'https://ror.org/00qq1x890 Wolf Foundation'),
(55631, 'https://ror.org/00qq8bd87', 'en', 1, 'https://ror.org/00qq8bd87 Consortium for the Advanced Simulation of Light Water Reactors'),
(55632, 'https://ror.org/00qrjwk72', 'no_lang_code', 1, 'https://ror.org/00qrjwk72 Sewio Networks (Czechia)'),
(55633, 'https://ror.org/00qrpes71', 'en', 1, 'https://ror.org/00qrpes71 Fishing Partnership Support Services'),
(55634, 'https://ror.org/00qrs4s60', 'no_lang_code', 1, 'https://ror.org/00qrs4s60 Beratungsdienste für Ausbildung und Beruf Aargau (Switzerland)'),
(55635, 'https://ror.org/00qt1ww94', 'no_lang_code', 1, 'https://ror.org/00qt1ww94 Radiometer (Switzerland)'),
(55636, 'https://ror.org/00qw13455', 'no_lang_code', 1, 'https://ror.org/00qw13455 Bednar Fmt (Czechia)'),
(55637, 'https://ror.org/00qw4ms08', 'en', 1, 'https://ror.org/00qw4ms08 Clayton Foundation'),
(55638, 'https://ror.org/00r01p496', 'no_lang_code', 1, 'https://ror.org/00r01p496 Crystalex (Czechia)'),
(55639, 'https://ror.org/00r1n9v29', 'cs', 1, 'https://ror.org/00r1n9v29 SdruženĆ© ambulantnĆ­ zařízenĆ­'),
(55640, 'https://ror.org/00r2wb002', 'en', 1, 'https://ror.org/00r2wb002 Youth Policy Institute'),
(55641, 'https://ror.org/00r36q916', 'no_lang_code', 1, 'https://ror.org/00r36q916 Sonomotion (United States)'),
(55642, 'https://ror.org/00r37e745', 'no_lang_code', 1, 'https://ror.org/00r37e745 Terumo (United States)'),
(55643, 'https://ror.org/00r6p8t42', 'en', 1, 'https://ror.org/00r6p8t42 Jeansson Foundations Jeanssons Stiftelser'),
(55644, 'https://ror.org/00r6pc512', 'en', 1, 'https://ror.org/00r6pc512 Sun Health Foundation'),
(55645, 'https://ror.org/00r7c8242', 'no_lang_code', 1, 'https://ror.org/00r7c8242 Chitina Native Corporation (United States)'),
(55646, 'https://ror.org/00r7jg830', 'no_lang_code', 1, 'https://ror.org/00r7jg830 Laboratoires ABIA (France)'),
(55647, 'https://ror.org/00r8ne687', 'no_lang_code', 1, 'https://ror.org/00r8ne687 Viton (Czechia)'),
(55648, 'https://ror.org/00r9ndf16', 'en', 1, 'https://ror.org/00r9ndf16 Centre for Political Courage'),
(55649, 'https://ror.org/00r9ry950', 'no_lang_code', 1, 'https://ror.org/00r9ry950 K and K Technology (Czechia)'),
(55650, 'https://ror.org/00r9xw041', 'sv', 1, 'https://ror.org/00r9xw041 Stiftelsen Olle Engkvist ByggmƤstare'),
(55651, 'https://ror.org/00rath085', 'de', 1, 'https://ror.org/00rath085 Staatsarchiv Freiburg'),
(55652, 'https://ror.org/00rb4m505', 'en', 1, 'https://ror.org/00rb4m505 The Nurture Nature Center'),
(55653, 'https://ror.org/00rcr5k60', 'no_lang_code', 1, 'https://ror.org/00rcr5k60 UpVision (Czechia)'),
(55654, 'https://ror.org/00rd9tc64', 'fr', 1, 'https://ror.org/00rd9tc64 Laboratoire Dr Renaud'),
(55655, 'https://ror.org/00re71s87', 'en', 1, 'https://ror.org/00re71s87 Advanced Heliophysics'),
(55656, 'https://ror.org/00rh52j13', 'en', 1, 'https://ror.org/00rh52j13 Cwm Taf University Health Board Ymddiriedolaeth GIG Cwm Taf');
INSERT INTO `rors` VALUES
(55657, 'https://ror.org/00rknv324', 'no_lang_code', 1, 'https://ror.org/00rknv324 Agromont Vimperk (Czechia)'),
(55658, 'https://ror.org/00rn0m335', 'no_lang_code', 1, 'https://ror.org/00rn0m335 Alibaba Group (United States)'),
(55659, 'https://ror.org/00rng3h03', 'no_lang_code', 1, 'https://ror.org/00rng3h03 JV Projekt (Czechia)'),
(55660, 'https://ror.org/00rnjkw50', 'en', 1, 'https://ror.org/00rnjkw50 Huerta del Valle'),
(55661, 'https://ror.org/00rnyt040', 'en', 1, 'https://ror.org/00rnyt040 Illinois Office of the Governor'),
(55662, 'https://ror.org/00rp2kf19', 'no_lang_code', 1, 'https://ror.org/00rp2kf19 Willson Band Instruments (Switzerland)'),
(55663, 'https://ror.org/00rq99817', 'no_lang_code', 1, 'https://ror.org/00rq99817 ChipInvest (Czechia)'),
(55664, 'https://ror.org/00rtnjm51', 'no_lang_code', 1, 'https://ror.org/00rtnjm51 Taranis Invest (Czechia)'),
(55665, 'https://ror.org/00rtxv182', 'no_lang_code', 1, 'https://ror.org/00rtxv182 Rentel (Czechia)'),
(55666, 'https://ror.org/00rtz3610', 'en', 1, 'https://ror.org/00rtz3610 Centre for Investment Development and Innovation Centrum investic, rozvoje a inovacĆ­'),
(55667, 'https://ror.org/00rvg5p23', 'en', 1, 'https://ror.org/00rvg5p23 Save Our Seas Foundation'),
(55668, 'https://ror.org/00rvj3h03', 'no_lang_code', 1, 'https://ror.org/00rvj3h03 Vp Agro (Czechia)'),
(55669, 'https://ror.org/00rwprq91', 'no_lang_code', 1, 'https://ror.org/00rwprq91 StemSoft Software (Canada)'),
(55670, 'https://ror.org/00rxf9f27', 'en', 1, 'https://ror.org/00rxf9f27 Columbia Global Centers'),
(55671, 'https://ror.org/00s1r6f43', 'en', 1, 'https://ror.org/00s1r6f43 Fayette County Community Action Agency'),
(55672, 'https://ror.org/00s2ktz06', 'no_lang_code', 1, 'https://ror.org/00s2ktz06 Isolit-Bravo (Czechia)'),
(55673, 'https://ror.org/00s3nyy34', 'no_lang_code', 1, 'https://ror.org/00s3nyy34 Cemvin (Czechia)'),
(55674, 'https://ror.org/00s4b3607', 'no_lang_code', 1, 'https://ror.org/00s4b3607 J M Malone and Son (United States)'),
(55675, 'https://ror.org/00s5m1b41', 'no_lang_code', 1, 'https://ror.org/00s5m1b41 Oregon Tilth'),
(55676, 'https://ror.org/00s66s868', 'no_lang_code', 1, 'https://ror.org/00s66s868 Gemos (Czechia)'),
(55677, 'https://ror.org/00s75ft26', 'no_lang_code', 1, 'https://ror.org/00s75ft26 Ormihl (France)'),
(55678, 'https://ror.org/00s796p60', 'no_lang_code', 1, 'https://ror.org/00s796p60 Agentura Motiv P (Czechia)'),
(55679, 'https://ror.org/00s7ek396', 'pt', 1, 'https://ror.org/00s7ek396 Hospital Estadual MƔrio Covas'),
(55680, 'https://ror.org/00s7jd712', 'no_lang_code', 1, 'https://ror.org/00s7jd712 ABS Jets (Czechia)'),
(55681, 'https://ror.org/00sc3t321', 'en', 1, 'https://ror.org/00sc3t321 Korea Automotive Technology Institute ķ•œźµ­ ģžė™ģ°Ø 기술 연구원'),
(55682, 'https://ror.org/00seh5759', 'no_lang_code', 1, 'https://ror.org/00seh5759 Econcept (Switzerland)'),
(55683, 'https://ror.org/00sq92q44', 'no_lang_code', 1, 'https://ror.org/00sq92q44 Thun 1794 (Czechia)'),
(55684, 'https://ror.org/00srskr42', 'no_lang_code', 1, 'https://ror.org/00srskr42 Rotas StrojĆ­rny (Czechia)'),
(55685, 'https://ror.org/00ss52190', 'no_lang_code', 1, 'https://ror.org/00ss52190 Laboratoire Pino Aliprandini (Switzerland)'),
(55686, 'https://ror.org/00ssvjd95', 'de', 1, 'https://ror.org/00ssvjd95 Schweizerische Koordinationsstelle für Bildungsforschung'),
(55687, 'https://ror.org/00stg1k53', 'en', 1, 'https://ror.org/00stg1k53 Institute of Philosophy MTA BTK Filozófiai Intézet'),
(55688, 'https://ror.org/00svnts80', 'no_lang_code', 1, 'https://ror.org/00svnts80 DTO (Czechia)'),
(55689, 'https://ror.org/00swtqp09', 'en', 1, 'https://ror.org/00swtqp09 Key Laboratory of Guangdong Province å¹æäøœēœé‡ē‚¹å®žéŖŒå®¤'),
(55690, 'https://ror.org/00t1d7x20', 'no_lang_code', 1, 'https://ror.org/00t1d7x20 Clayton Biotechnologies (United States)'),
(55691, 'https://ror.org/00t2x7r19', 'es', 1, 'https://ror.org/00t2x7r19 Centro Mexicano de Innovación en Energía Solar'),
(55692, 'https://ror.org/00t6jgv77', 'en', 1, 'https://ror.org/00t6jgv77 Kazakh Scientific Reseach Institute for Ecology and Climate ŠšŠ¾Š¾Ń€Š“ŠøŠ½Š°Ń†ŠøŠ¾Š½Š½Š¾Š³Š¾ центра по ŠøŠ·Š¼ŠµŠ½ŠµŠ½ŠøŃŽ климата'),
(55693, 'https://ror.org/00t6k4c45', 'cs', 1, 'https://ror.org/00t6k4c45 ZD KrƔsnƔ Hora Nad Vltavou (Czechia)'),
(55694, 'https://ror.org/00t7qf371', 'en', 1, 'https://ror.org/00t7qf371 About Special Kids'),
(55695, 'https://ror.org/00t83rb52', 'no_lang_code', 1, 'https://ror.org/00t83rb52 Ales (Czechia)'),
(55696, 'https://ror.org/00t8egy48', 'no_lang_code', 1, 'https://ror.org/00t8egy48 Thermona (Czechia)'),
(55697, 'https://ror.org/00tbe9875', 'de', 1, 'https://ror.org/00tbe9875 Stiftung Mercator Schweiz'),
(55698, 'https://ror.org/00tbqf005', 'de', 1, 'https://ror.org/00tbqf005 Privatklinik Meiringen'),
(55699, 'https://ror.org/00tcadq57', 'no_lang_code', 1, 'https://ror.org/00tcadq57 PlastovƩ Stavebnƭ (Czechia)'),
(55700, 'https://ror.org/00tcg9r48', 'en', 1, 'https://ror.org/00tcg9r48 Pinnacle Prevention'),
(55701, 'https://ror.org/00tjk7247', 'no_lang_code', 1, 'https://ror.org/00tjk7247 BiopreparƔty (Czechia)'),
(55702, 'https://ror.org/00tjm9378', 'no_lang_code', 1, 'https://ror.org/00tjm9378 Mankind Pharma (India)'),
(55703, 'https://ror.org/00tnk3114', 'en', 1, 'https://ror.org/00tnk3114 Robina Foundation'),
(55704, 'https://ror.org/00tqvk397', 'en', 1, 'https://ror.org/00tqvk397 Czech Association of Fire Officers ČeskĆ” Asociace Hasičských DÅÆstojnĆ­kÅÆ'),
(55705, 'https://ror.org/00tvd2s73', 'no_lang_code', 1, 'https://ror.org/00tvd2s73 AGRO-Partner (Czechia)'),
(55706, 'https://ror.org/00twt5233', 'en', 1, 'https://ror.org/00twt5233 Wyoming Water Development Commission'),
(55707, 'https://ror.org/00tzc0330', 'no_lang_code', 1, 'https://ror.org/00tzc0330 SMTplus (Czechia)'),
(55708, 'https://ror.org/00v019t60', 'en', 1, 'https://ror.org/00v019t60 Korea Institute of Robot and Convergence ķ•œźµ­ė”œė“‡ģœµķ•©ģ—°źµ¬ģ›'),
(55709, 'https://ror.org/00v1gsr34', 'no_lang_code', 1, 'https://ror.org/00v1gsr34 Blata (Czechia)'),
(55710, 'https://ror.org/00v2c3q38', 'no_lang_code', 1, 'https://ror.org/00v2c3q38 Stap (Czechia)'),
(55711, 'https://ror.org/00v43af83', 'no_lang_code', 1, 'https://ror.org/00v43af83 Geovap (Czechia)'),
(55712, 'https://ror.org/00v4fnn72', 'no_lang_code', 1, 'https://ror.org/00v4fnn72 Briklis (Czechia)'),
(55713, 'https://ror.org/00v4k2341', 'no_lang_code', 1, 'https://ror.org/00v4k2341 O.K. Servis Plus (Czechia)'),
(55714, 'https://ror.org/00v5n6851', 'no_lang_code', 1, 'https://ror.org/00v5n6851 Malin Space Science Systems (United States)'),
(55715, 'https://ror.org/00v64cg28', 'en', 1, 'https://ror.org/00v64cg28 Cambridge Innovation Institute'),
(55716, 'https://ror.org/00v6ky380', 'sv', 1, 'https://ror.org/00v6ky380 Stiftelsen fƶr vƄrd- och allergiforskning, VƄrdal Stiftelsen'),
(55717, 'https://ror.org/00v6wgj18', 'no_lang_code', 1, 'https://ror.org/00v6wgj18 BBT-Materials Processing (Czechia)'),
(55718, 'https://ror.org/00v986r94', 'no_lang_code', 1, 'https://ror.org/00v986r94 Grade Medical (Czechia)'),
(55719, 'https://ror.org/00v9m1060', 'no_lang_code', 1, 'https://ror.org/00v9m1060 Robert Bosch (France)'),
(55720, 'https://ror.org/00vbr4z12', 'no_lang_code', 1, 'https://ror.org/00vbr4z12 Paradigm (France)'),
(55721, 'https://ror.org/00vbwpw70', 'de', 1, 'https://ror.org/00vbwpw70 Stadtgalerie Bern'),
(55722, 'https://ror.org/00vcdkt35', 'no_lang_code', 1, 'https://ror.org/00vcdkt35 Elice (France)'),
(55723, 'https://ror.org/00vfhwc85', 'no_lang_code', 1, 'https://ror.org/00vfhwc85 Interlifescience (Switzerland)'),
(55724, 'https://ror.org/00vgm4247', 'en', 1, 'https://ror.org/00vgm4247 Tohoku Agricultural Research Center ę±åŒ—č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(55725, 'https://ror.org/00vgnwa79', 'no_lang_code', 1, 'https://ror.org/00vgnwa79 N&R Engineering Management & Services (United States)'),
(55726, 'https://ror.org/00vh82m49', 'nl', 1, 'https://ror.org/00vh82m49 Stichting Vrienden Beatrix Kinderziekenhuis'),
(55727, 'https://ror.org/00vj8hy88', 'no_lang_code', 1, 'https://ror.org/00vj8hy88 Hendrix Genetics (France)'),
(55728, 'https://ror.org/00vkatb78', 'no_lang_code', 1, 'https://ror.org/00vkatb78 BHP - Hanser und Partner (Switzerland)'),
(55729, 'https://ror.org/00vmgnj07', 'no_lang_code', 1, 'https://ror.org/00vmgnj07 Ereie (France)'),
(55730, 'https://ror.org/00vnjz480', 'de', 1, 'https://ror.org/00vnjz480 Verwaltungsgericht Kantons Aargau'),
(55731, 'https://ror.org/00vnx7m69', 'cs', 1, 'https://ror.org/00vnx7m69 VýzkumnÔ Stanice VinohradnickÔ'),
(55732, 'https://ror.org/00vp7bk08', 'no_lang_code', 1, 'https://ror.org/00vp7bk08 Casale Project (Czechia)'),
(55733, 'https://ror.org/00vppz759', 'en', 1, 'https://ror.org/00vppz759 Westchester Community Foundation'),
(55734, 'https://ror.org/00vqmez57', 'fr', 1, 'https://ror.org/00vqmez57 HƓpital de Cery'),
(55735, 'https://ror.org/00vrhw316', 'no_lang_code', 1, 'https://ror.org/00vrhw316 United Microelectronics (United States)'),
(55736, 'https://ror.org/00vrtwn56', 'en', 1, 'https://ror.org/00vrtwn56 Azerbaijan Scientific-Research & Design-Prospecting Power Engineering Institute Azərbaycan Elmi–Tədqiqat və Layihə Axtarış Energetika İnstitutu'),
(55737, 'https://ror.org/00vsw8h69', 'en', 1, 'https://ror.org/00vsw8h69 MED Institute'),
(55738, 'https://ror.org/00vts9t98', 'de', 1, 'https://ror.org/00vts9t98 VIA AudioVideoFotoKunst'),
(55739, 'https://ror.org/00vvs5b96', 'no_lang_code', 1, 'https://ror.org/00vvs5b96 Leo Pharma (Australia)'),
(55740, 'https://ror.org/00vxg2528', 'en', 1, 'https://ror.org/00vxg2528 Yokohama Foundation for Advancement of Medical Science ęØŖęµœē·åˆåŒ»å­¦ęŒÆčˆˆč²”å›£'),
(55741, 'https://ror.org/00vy0bt98', 'no_lang_code', 1, 'https://ror.org/00vy0bt98 Anita B (Czechia)'),
(55742, 'https://ror.org/00vzfcj75', 'de', 1, 'https://ror.org/00vzfcj75 Gesellschaft für Schweizerische Kunstgeschichte'),
(55743, 'https://ror.org/00w26fm43', 'no_lang_code', 1, 'https://ror.org/00w26fm43 Prothena (Ireland)'),
(55744, 'https://ror.org/00w282m94', 'no_lang_code', 1, 'https://ror.org/00w282m94 APT (Czechia)'),
(55745, 'https://ror.org/00w33ze35', 'en', 1, 'https://ror.org/00w33ze35 Registered Nurses'' Association of Ontario'),
(55746, 'https://ror.org/00w3cd056', 'en', 1, 'https://ror.org/00w3cd056 California Institute of Computer-Assisted Surgery'),
(55747, 'https://ror.org/00w5csc43', 'en', 1, 'https://ror.org/00w5csc43 Chamber and Offices Authorized Persons Engineering ČeskĆ” Komora Autorizovaných InženýrÅÆ a TechnikÅÆ Činných ve Výstavbě'),
(55748, 'https://ror.org/00w5rad21', 'fr', 1, 'https://ror.org/00w5rad21 Institut de Recherche et de Documentation PƩdagogique'),
(55749, 'https://ror.org/00w673w61', 'no_lang_code', 1, 'https://ror.org/00w673w61 MB Pharma (Czechia)'),
(55750, 'https://ror.org/00w6hp096', 'no_lang_code', 1, 'https://ror.org/00w6hp096 Bausch Health (France)'),
(55751, 'https://ror.org/00w8ecv17', 'de', 1, 'https://ror.org/00w8ecv17 Die Schweizer Fachstelle'),
(55752, 'https://ror.org/00w8qrj53', 'no_lang_code', 1, 'https://ror.org/00w8qrj53 Senagro (Czechia)'),
(55753, 'https://ror.org/00wac5p69', 'no_lang_code', 1, 'https://ror.org/00wac5p69 Devimex (Czechia)'),
(55754, 'https://ror.org/00wacrh06', 'no_lang_code', 1, 'https://ror.org/00wacrh06 Solitea (Czechia)'),
(55755, 'https://ror.org/00wb1mn80', 'no_lang_code', 1, 'https://ror.org/00wb1mn80 Bestex (Czechia)'),
(55756, 'https://ror.org/00wbjq302', 'no_lang_code', 1, 'https://ror.org/00wbjq302 IRIS Instruments (France)'),
(55757, 'https://ror.org/00wfp9c14', 'pt', 1, 'https://ror.org/00wfp9c14 Instituto de Pesquisas da Marinha'),
(55758, 'https://ror.org/00whf4s48', 'en', 1, 'https://ror.org/00whf4s48 Finnish Parkinson Foundation Suomen Parkinson-sƤƤtiƶ'),
(55759, 'https://ror.org/00wjmzv89', 'no_lang_code', 1, 'https://ror.org/00wjmzv89 Mepatek (Czechia)'),
(55760, 'https://ror.org/00wjnd087', 'en', 1, 'https://ror.org/00wjnd087 Hari Shankar Singhania Elastomer And Tyre Research Institute'),
(55761, 'https://ror.org/00wmkg231', 'no_lang_code', 1, 'https://ror.org/00wmkg231 FMP Lignum (Czechia)'),
(55762, 'https://ror.org/00wnsmv12', 'cs', 1, 'https://ror.org/00wnsmv12 ZdravotnickĆ” ZĆ”chrannĆ” Služba JihočeskĆ©ho Kraje'),
(55763, 'https://ror.org/00wp3ct36', 'en', 1, 'https://ror.org/00wp3ct36 Euro Balkan University Универзитет Евро-Балкан'),
(55764, 'https://ror.org/00wphza66', 'no_lang_code', 1, 'https://ror.org/00wphza66 Argus Geo SystƩm (Czechia)'),
(55765, 'https://ror.org/00wqy9447', 'no_lang_code', 1, 'https://ror.org/00wqy9447 Algon (Czechia)'),
(55766, 'https://ror.org/00wszf981', 'no_lang_code', 1, 'https://ror.org/00wszf981 Combilift (Ireland)'),
(55767, 'https://ror.org/00wt28973', 'de', 1, 'https://ror.org/00wt28973 Kantonsbibliothek von Appenzell Ausserrhoden'),
(55768, 'https://ror.org/00wvdj807', 'no_lang_code', 1, 'https://ror.org/00wvdj807 XtendWave (United States)'),
(55769, 'https://ror.org/00wvhys96', 'no_lang_code', 1, 'https://ror.org/00wvhys96 Puig (France)'),
(55770, 'https://ror.org/00wxgkf94', 'no_lang_code', 1, 'https://ror.org/00wxgkf94 LAC (Czechia)'),
(55771, 'https://ror.org/00wznfw28', 'no_lang_code', 1, 'https://ror.org/00wznfw28 Planar (Switzerland)'),
(55772, 'https://ror.org/00x0dmc73', 'no_lang_code', 1, 'https://ror.org/00x0dmc73 InfoScience (Czechia)'),
(55773, 'https://ror.org/00x0wct18', 'en', 1, 'https://ror.org/00x0wct18 Roshan Cultural Heritage Institute'),
(55774, 'https://ror.org/00x1qgr19', 'en', 1, 'https://ror.org/00x1qgr19 Robert R. McCormick Foundation'),
(55775, 'https://ror.org/00x1wf347', 'no_lang_code', 1, 'https://ror.org/00x1wf347 Ekoles Projekt (Czechia)'),
(55776, 'https://ror.org/00x26bk24', 'en', 1, 'https://ror.org/00x26bk24 Federal Criminal Court Tribunal penal federal Tribunal pƩnal fƩdƩral Tribunale penale federale'),
(55777, 'https://ror.org/00x8z6715', 'en', 1, 'https://ror.org/00x8z6715 Nevsky Institute of Language and Culture ŠŠµŠ²ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ·Ń‹ŠŗŠ° Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(55778, 'https://ror.org/00x9jsn18', 'en', 1, 'https://ror.org/00x9jsn18 EdVenture'),
(55779, 'https://ror.org/00xb8n835', 'no_lang_code', 1, 'https://ror.org/00xb8n835 CS-Project (Czechia)'),
(55780, 'https://ror.org/00xckqv95', 'en', 1, 'https://ror.org/00xckqv95 B.Well Swiss'),
(55781, 'https://ror.org/00xfww534', 'en', 1, 'https://ror.org/00xfww534 Energy Pipelines CRC'),
(55782, 'https://ror.org/00xhvk795', 'en', 1, 'https://ror.org/00xhvk795 Institute for Literary Studies Magyar TudomÔnyos Akadémia BölcsészettudomÔnyi Kutatóközpont IrodalomtudomÔnyi Intézet'),
(55783, 'https://ror.org/00xj6v282', 'no_lang_code', 1, 'https://ror.org/00xj6v282 Rabbit ChotýŔany (Czechia)'),
(55784, 'https://ror.org/00xk4q268', 'no_lang_code', 1, 'https://ror.org/00xk4q268 Å koda JS (Czechia)'),
(55785, 'https://ror.org/00xkrwz44', 'no_lang_code', 1, 'https://ror.org/00xkrwz44 AGRIDEA Agricultural Advisory and Extension Services Entwicklung der Landwirtschaft und des LƤndlichen Raums La Centrale di consulenza agricola'),
(55786, 'https://ror.org/00xr47e92', 'pt', 1, 'https://ror.org/00xr47e92 Instituto Nacional de CiĆŖncias dos Materiais em Nanotecnologia'),
(55787, 'https://ror.org/00xtmkg39', 'no_lang_code', 1, 'https://ror.org/00xtmkg39 Taiwan Power (Taiwan) å°ē£é›»åŠ›å…¬åø'),
(55788, 'https://ror.org/00xv3af28', 'no_lang_code', 1, 'https://ror.org/00xv3af28 Nakladatelstvƭ LidovƩ Noviny (Czechia)'),
(55789, 'https://ror.org/00xvxdy42', 'no_lang_code', 1, 'https://ror.org/00xvxdy42 Acer (United States)'),
(55790, 'https://ror.org/00xx3t779', 'de', 1, 'https://ror.org/00xx3t779 ITW'),
(55791, 'https://ror.org/00xxcdz88', 'no_lang_code', 1, 'https://ror.org/00xxcdz88 Air Technic (Czechia)'),
(55792, 'https://ror.org/00xzncb58', 'en', 1, 'https://ror.org/00xzncb58 Texas Organic Farmers and Gardeners Association'),
(55793, 'https://ror.org/00y221604', 'de', 1, 'https://ror.org/00y221604 Amt für Raumentwicklung'),
(55794, 'https://ror.org/00y2wtn40', 'en', 1, 'https://ror.org/00y2wtn40 Office of Minority Health'),
(55795, 'https://ror.org/00y3jnz30', 'en', 1, 'https://ror.org/00y3jnz30 Huaneng Clean Energy Research Institute ęø…ę“čƒ½ęŗęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(55796, 'https://ror.org/00y3qx097', 'en', 1, 'https://ror.org/00y3qx097 Kennel Club Charitable Trust'),
(55797, 'https://ror.org/00y4c9c34', 'no_lang_code', 1, 'https://ror.org/00y4c9c34 Agro PodlesĆ­ (Czechia)'),
(55798, 'https://ror.org/00y6ymy93', 'no_lang_code', 1, 'https://ror.org/00y6ymy93 Nutreco (Czechia)'),
(55799, 'https://ror.org/00y8acb95', 'fr', 1, 'https://ror.org/00y8acb95 Service de la SantƩ Publique'),
(55800, 'https://ror.org/00y9v7w55', 'no_lang_code', 1, 'https://ror.org/00y9v7w55 Agro (Czechia)'),
(55801, 'https://ror.org/00yd0qf44', 'en', 1, 'https://ror.org/00yd0qf44 Institutul de Cercetari pentru Instrumentatie Analitica Research Institute for Analytical Instrumentation'),
(55802, 'https://ror.org/00ye0ab97', 'no_lang_code', 1, 'https://ror.org/00ye0ab97 GREEN Tox (Switzerland)'),
(55803, 'https://ror.org/00yf3tm42', 'en', 1, 'https://ror.org/00yf3tm42 Center for Drug Evaluation and Research'),
(55804, 'https://ror.org/00yjgag34', 'en', 1, 'https://ror.org/00yjgag34 International Psychoanalytical Association'),
(55805, 'https://ror.org/00yktj852', 'no_lang_code', 1, 'https://ror.org/00yktj852 BOVA Březnice (Czechia)'),
(55806, 'https://ror.org/00ymr0824', 'de', 1, 'https://ror.org/00ymr0824 Kantonsschule Sargans'),
(55807, 'https://ror.org/00yp3hb50', 'fi', 1, 'https://ror.org/00yp3hb50 Tampereen TuberkuloosisƤƤtiƶ'),
(55808, 'https://ror.org/00ypgdj53', 'en', 1, 'https://ror.org/00ypgdj53 Van Wert County Foundation'),
(55809, 'https://ror.org/00yrbts90', 'en', 1, 'https://ror.org/00yrbts90 H&M Foundation'),
(55810, 'https://ror.org/00yswm660', 'en', 1, 'https://ror.org/00yswm660 Japan National Society for the Prevent of Blindness å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ęœ¬å¤±ę˜Žäŗˆé˜²å”ä¼š'),
(55811, 'https://ror.org/00yt9z408', 'no_lang_code', 1, 'https://ror.org/00yt9z408 EyePoint Pharmaceuticals (United Kingdom)'),
(55812, 'https://ror.org/00yxram96', 'no_lang_code', 1, 'https://ror.org/00yxram96 Bracco (Netherlands)'),
(55813, 'https://ror.org/00yy4rd30', 'no_lang_code', 1, 'https://ror.org/00yy4rd30 Descent (Czechia)'),
(55814, 'https://ror.org/00z3pv627', 'no_lang_code', 1, 'https://ror.org/00z3pv627 BioFish (Czechia)'),
(55815, 'https://ror.org/00z4tjm61', 'en', 1, 'https://ror.org/00z4tjm61 Reservoir Engineering Research Institute'),
(55816, 'https://ror.org/00z6b1508', 'en', 1, 'https://ror.org/00z6b1508 National Agricultural Library'),
(55817, 'https://ror.org/00z7y2783', 'no_lang_code', 1, 'https://ror.org/00z7y2783 Nutreov Laboratoires (France)'),
(55818, 'https://ror.org/00z8jse46', 'cs', 1, 'https://ror.org/00z8jse46 Prachatice Museum'),
(55819, 'https://ror.org/00z95qt34', 'no_lang_code', 1, 'https://ror.org/00z95qt34 NAV Flight Services (Czechia)'),
(55820, 'https://ror.org/00z9exx28', 'no_lang_code', 1, 'https://ror.org/00z9exx28 Eteria (Czechia)'),
(55821, 'https://ror.org/00z9nr140', 'cs', 1, 'https://ror.org/00z9nr140 KarlovarskĆ” KrajskĆ” Nemocnice'),
(55822, 'https://ror.org/00zb6nk96', 'fr', 1, 'https://ror.org/00zb6nk96 Labor Spiez Labor Spiez Laboratoire de Spiez, Spiez Laboratory Laboratorio Spiez'),
(55823, 'https://ror.org/00zbgzk38', 'cs', 1, 'https://ror.org/00zbgzk38 Kristina Colloredo-MansfeldovĆ”'),
(55824, 'https://ror.org/00zd9a055', 'de', 1, 'https://ror.org/00zd9a055 Amt für Wald und Naturgefahren'),
(55825, 'https://ror.org/00zez7q62', 'no_lang_code', 1, 'https://ror.org/00zez7q62 Armatury Group (Czechia)'),
(55826, 'https://ror.org/00zfhgg86', 'no_lang_code', 1, 'https://ror.org/00zfhgg86 AeskuLab (Czechia)'),
(55827, 'https://ror.org/00zhfb561', 'no_lang_code', 1, 'https://ror.org/00zhfb561 Cochlear (France)'),
(55828, 'https://ror.org/00zjpfj13', 'no_lang_code', 1, 'https://ror.org/00zjpfj13 HBIS (China) ę²³åŒ—é’¢é“é›†å›¢ęœ‰é™å…¬åø'),
(55829, 'https://ror.org/00zm06h90', 'en', 1, 'https://ror.org/00zm06h90 Genservice'),
(55830, 'https://ror.org/00zm8c694', 'no_lang_code', 1, 'https://ror.org/00zm8c694 IC Infraconsult (Switzerland)'),
(55831, 'https://ror.org/00zps9v98', 'en', 1, 'https://ror.org/00zps9v98 Swedish Rheumatism Association'),
(55832, 'https://ror.org/00zq01589', 'no_lang_code', 1, 'https://ror.org/00zq01589 Cook Medical (India)'),
(55833, 'https://ror.org/00zq45236', 'no_lang_code', 1, 'https://ror.org/00zq45236 SurgiMedia (France)'),
(55834, 'https://ror.org/00zrb8z36', 'en', 1, 'https://ror.org/00zrb8z36 Institute of the Meat and Dairy Industry'),
(55835, 'https://ror.org/00zs45r78', 'no_lang_code', 1, 'https://ror.org/00zs45r78 Circuit Therapeutics (United States)'),
(55836, 'https://ror.org/00zw38x02', 'en', 1, 'https://ror.org/00zw38x02 Research Center of Maternal and Child Health Protection'),
(55837, 'https://ror.org/00zwv5854', 'en', 1, 'https://ror.org/00zwv5854 KAUTE-sƤƤtiƶ Kaute Foundation'),
(55838, 'https://ror.org/00zwvxv21', 'no_lang_code', 1, 'https://ror.org/00zwvxv21 AQ SPOL (Czechia)'),
(55839, 'https://ror.org/00zy1mb15', 'no_lang_code', 1, 'https://ror.org/00zy1mb15 CABI Kenya'),
(55840, 'https://ror.org/00zy1vd16', 'fr', 1, 'https://ror.org/00zy1vd16 Centre National de Recherches sur l''Environnement'),
(55841, 'https://ror.org/00zyea842', 'no_lang_code', 1, 'https://ror.org/00zyea842 CNS (Czechia)'),
(55842, 'https://ror.org/00zyq8158', 'no_lang_code', 1, 'https://ror.org/00zyq8158 Reprogen (Czechia)'),
(55843, 'https://ror.org/00zyvrn45', 'en', 1, 'https://ror.org/00zyvrn45 Scleroderma Research Foundation'),
(55844, 'https://ror.org/01006rc90', 'en', 1, 'https://ror.org/01006rc90 Staatsarchiv des Kantons Bern State Archive of Bern'),
(55845, 'https://ror.org/0100zbm77', 'en', 1, 'https://ror.org/0100zbm77 Federation of European Biochemical Societies'),
(55846, 'https://ror.org/01017e202', 'en', 1, 'https://ror.org/01017e202 Stiftung Bibliothek Werner Oechslin Werner Oechslin Library Foundation'),
(55847, 'https://ror.org/0102bq490', 'no_lang_code', 1, 'https://ror.org/0102bq490 AQD-envitest (Czechia)'),
(55848, 'https://ror.org/0107h6s84', 'en', 1, 'https://ror.org/0107h6s84 Alfred Kordelin Foundation'),
(55849, 'https://ror.org/0108ddn29', 'en', 1, 'https://ror.org/0108ddn29 Pitt Hopkins Research Foundation'),
(55850, 'https://ror.org/010abdn73', 'en', 1, 'https://ror.org/010abdn73 Sand County Foundation'),
(55851, 'https://ror.org/010b9pv54', 'no_lang_code', 1, 'https://ror.org/010b9pv54 LightGate (Czechia)'),
(55852, 'https://ror.org/010bska32', 'no_lang_code', 1, 'https://ror.org/010bska32 Gentop Engineering (Czechia)'),
(55853, 'https://ror.org/010c2f249', 'en', 1, 'https://ror.org/010c2f249 Institute of Electrodynamics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ електроГинаміки ŠŠŠ України'),
(55854, 'https://ror.org/010cn0k09', 'sv', 1, 'https://ror.org/010cn0k09 Victoriastiftelsen'),
(55855, 'https://ror.org/010e8xz82', 'no_lang_code', 1, 'https://ror.org/010e8xz82 Polycom (Czechia)'),
(55856, 'https://ror.org/010g1a428', 'no_lang_code', 1, 'https://ror.org/010g1a428 VHS Brno (Czechia)'),
(55857, 'https://ror.org/010m1h651', 'en', 1, 'https://ror.org/010m1h651 American College of Veterinary Ophthalmologists'),
(55858, 'https://ror.org/010nah411', 'no_lang_code', 1, 'https://ror.org/010nah411 DTZ (Czechia)'),
(55859, 'https://ror.org/010pb5v16', 'no_lang_code', 1, 'https://ror.org/010pb5v16 Rockwool International (Germany)'),
(55860, 'https://ror.org/010q0m202', 'de', 1, 'https://ror.org/010q0m202 BibliothĆØque de la Bourgeoisie de Berne Burgerbibliothek Bern, Burgerbibliothek of Berne'),
(55861, 'https://ror.org/010qg4v35', 'en', 1, 'https://ror.org/010qg4v35 International Organization for Migration MezinƔrodnƭ organizace pro migraci'),
(55862, 'https://ror.org/010rabn19', 'no_lang_code', 1, 'https://ror.org/010rabn19 Electronic Control and Measurement (Czechia)'),
(55863, 'https://ror.org/010rd0v86', 'en', 1, 'https://ror.org/010rd0v86 Michael Foundation Stiftung Michael'),
(55864, 'https://ror.org/010rsfq12', 'de', 1, 'https://ror.org/010rsfq12 Stadtbibliothek Schaffhausen'),
(55865, 'https://ror.org/010s15j79', 'en', 1, 'https://ror.org/010s15j79 Calypso Farm and Ecology Center'),
(55866, 'https://ror.org/010ssmx53', 'en', 1, 'https://ror.org/010ssmx53 Prague Castle SprÔva Pražského Hradu'),
(55867, 'https://ror.org/010tdmk44', 'no_lang_code', 1, 'https://ror.org/010tdmk44 Lec (Czechia)'),
(55868, 'https://ror.org/010vrw806', 'no_lang_code', 1, 'https://ror.org/010vrw806 GMEP Engineers (United States)'),
(55869, 'https://ror.org/010w5rh03', 'no_lang_code', 1, 'https://ror.org/010w5rh03 VodÔrna KÔraný (Czechia)'),
(55870, 'https://ror.org/010wkhc71', 'en', 1, 'https://ror.org/010wkhc71 MEF Associates'),
(55871, 'https://ror.org/010xshk05', 'no_lang_code', 1, 'https://ror.org/010xshk05 PolabskƩ MlƩkƔrny (Czechia)'),
(55872, 'https://ror.org/010y4ct40', 'it', 1, 'https://ror.org/010y4ct40 Istituto di Ortofonologia'),
(55873, 'https://ror.org/010zgd654', 'cs', 1, 'https://ror.org/010zgd654 ČeskĆ” GeografickĆ” Společnost'),
(55874, 'https://ror.org/01100v986', 'en', 1, 'https://ror.org/01100v986 Madison County Urban league'),
(55875, 'https://ror.org/0111g6367', 'no_lang_code', 1, 'https://ror.org/0111g6367 Suez (Czechia)'),
(55876, 'https://ror.org/0112bn567', 'en', 1, 'https://ror.org/0112bn567 Institute of Ecology and Geography Institutul de Ecologie și Geografie'),
(55877, 'https://ror.org/0113xva09', 'en', 1, 'https://ror.org/0113xva09 Federal Agency for Legal Protection of Military Results, Special and Dual Purpose Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ агентство по правовой защите Ń€ŠµŠ·ŃƒŠ»ŃŒŃ‚Š°Ń‚Š¾Š² ŠøŠ½Ń‚ŠµŠ»Š»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Š¾Š¹ Š“ŠµŃŃ‚ŠµŠ»ŃŒŠ½Š¾ŃŃ‚Šø военного'),
(55878, 'https://ror.org/01169zb17', 'no_lang_code', 1, 'https://ror.org/01169zb17 Kennametal (Germany)'),
(55879, 'https://ror.org/0117c5950', 'no_lang_code', 1, 'https://ror.org/0117c5950 Funktion One Research (United Kingdom)'),
(55880, 'https://ror.org/0117j0167', 'no_lang_code', 1, 'https://ror.org/0117j0167 Envigo (United Kingdom)'),
(55881, 'https://ror.org/0118w8d25', 'en', 1, 'https://ror.org/0118w8d25 Wasserman Foundation'),
(55882, 'https://ror.org/011b3r412', 'no_lang_code', 1, 'https://ror.org/011b3r412 Adidas (Netherlands)'),
(55883, 'https://ror.org/011bbc947', 'no_lang_code', 1, 'https://ror.org/011bbc947 DopravnĆ­ Podnik Města ČeskĆ© Budějovice'),
(55884, 'https://ror.org/011cj7r81', 'no_lang_code', 1, 'https://ror.org/011cj7r81 OstravskĆ© MěstskĆ© Lesy a Zeleň (Czechia)'),
(55885, 'https://ror.org/011drtn64', 'no_lang_code', 1, 'https://ror.org/011drtn64 Jet Company (Czechia)'),
(55886, 'https://ror.org/011e5e822', 'no_lang_code', 1, 'https://ror.org/011e5e822 NVH Medicinal (France)'),
(55887, 'https://ror.org/011f1xp18', 'no_lang_code', 1, 'https://ror.org/011f1xp18 Waste Hub (United States)'),
(55888, 'https://ror.org/011fc5j67', 'no_lang_code', 1, 'https://ror.org/011fc5j67 Augur Consulting (Czechia)'),
(55889, 'https://ror.org/011hxwn54', 'en', 1, 'https://ror.org/011hxwn54 Asia Pacific Center for Theoretical Physics'),
(55890, 'https://ror.org/011jwng84', 'en', 1, 'https://ror.org/011jwng84 Kolin Institute of Technology Kolínský Technologický Institut'),
(55891, 'https://ror.org/011jzth85', 'no_lang_code', 1, 'https://ror.org/011jzth85 ZVU KovƔrna (Czechia)'),
(55892, 'https://ror.org/011kmvk73', 'en', 1, 'https://ror.org/011kmvk73 Global Core Research Center for Ships and Offshore Plants ģ„ ė°• ė° ķ•“ģ–‘ ķ”ŒėžœķŠø źø€ė”œė²Œ 핵심 연구 센터'),
(55893, 'https://ror.org/011kvxd26', 'no_lang_code', 1, 'https://ror.org/011kvxd26 Doosan (South Korea) 두산그룹'),
(55894, 'https://ror.org/011m09981', 'no_lang_code', 1, 'https://ror.org/011m09981 Agroel (Czechia)'),
(55895, 'https://ror.org/011mmtr14', 'no_lang_code', 1, 'https://ror.org/011mmtr14 LEA Networks (France)'),
(55896, 'https://ror.org/011np0p15', 'cs', 1, 'https://ror.org/011np0p15 Strojírenský ZkuŔební Ústav'),
(55897, 'https://ror.org/011qyt180', 'en', 1, 'https://ror.org/011qyt180 VA Office of Research and Development'),
(55898, 'https://ror.org/011s5g254', 'no_lang_code', 1, 'https://ror.org/011s5g254 DEL (Czechia)'),
(55899, 'https://ror.org/011srqz97', 'no_lang_code', 1, 'https://ror.org/011srqz97 Waitaki Biosciences (New Zealand)'),
(55900, 'https://ror.org/011w6k548', 'en', 1, 'https://ror.org/011w6k548 New York Times'),
(55901, 'https://ror.org/011x9em51', 'en', 1, 'https://ror.org/011x9em51 Southern Appalachian Highlands Conservancy'),
(55902, 'https://ror.org/0124cbs22', 'no_lang_code', 1, 'https://ror.org/0124cbs22 Woolmark (Australia)'),
(55903, 'https://ror.org/0126c8978', 'no_lang_code', 1, 'https://ror.org/0126c8978 Ecolab Znojmo (Czechia)'),
(55904, 'https://ror.org/012a3nb13', 'no_lang_code', 1, 'https://ror.org/012a3nb13 Aeolis Research (United States)'),
(55905, 'https://ror.org/012a8a777', 'en', 1, 'https://ror.org/012a8a777 Society for the Preservation of American Modernists'),
(55906, 'https://ror.org/012bs5594', 'no_lang_code', 1, 'https://ror.org/012bs5594 Cegedim (France)'),
(55907, 'https://ror.org/012djrr37', 'en', 1, 'https://ror.org/012djrr37 Institut plĆ”novĆ”nĆ­ a rozvoje hlavnĆ­ho města Prahy Prague Institute of Planning and Development'),
(55908, 'https://ror.org/012et2c70', 'no_lang_code', 1, 'https://ror.org/012et2c70 CZ Fruit (Czechia)'),
(55909, 'https://ror.org/012eyjh05', 'no_lang_code', 1, 'https://ror.org/012eyjh05 Nanovia (Czechia)'),
(55910, 'https://ror.org/012fexm34', 'no_lang_code', 1, 'https://ror.org/012fexm34 Edwards Lifesciences (Switzerland)'),
(55911, 'https://ror.org/012h24p18', 'de', 1, 'https://ror.org/012h24p18 Forschungs und Dokumentationsstelle Kind und Umwelt'),
(55912, 'https://ror.org/012hjj416', 'no_lang_code', 1, 'https://ror.org/012hjj416 Farmak (Czechia)'),
(55913, 'https://ror.org/012nfnh03', 'en', 1, 'https://ror.org/012nfnh03 Society for the AnthroĀ­pology of North AmerĀ­ica'),
(55914, 'https://ror.org/012qa0c42', 'no_lang_code', 1, 'https://ror.org/012qa0c42 Betonconsult (Czechia)'),
(55915, 'https://ror.org/012v1rw43', 'no_lang_code', 1, 'https://ror.org/012v1rw43 DodƔvky Automatizace (Czechia)'),
(55916, 'https://ror.org/012y7dr10', 'en', 1, 'https://ror.org/012y7dr10 Biosystems Informatics Institute'),
(55917, 'https://ror.org/012z62f48', 'en', 1, 'https://ror.org/012z62f48 China Academy of Launch Vehicle Technology äø­å›½čæč½½ē«ē®­ęŠ€ęœÆē ”ē©¶é™¢'),
(55918, 'https://ror.org/013177044', 'de', 1, 'https://ror.org/013177044 Dialog N'),
(55919, 'https://ror.org/0132ebm72', 'en', 1, 'https://ror.org/0132ebm72 Institute for Balkan Studies and Centre for Thracology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за балканистика с Ń†ŠµŠ½Ń‚ŃŠŃ€ по Ń‚Ń€Š°ŠŗŠ¾Š»Š¾Š³ŠøŃ'),
(55920, 'https://ror.org/0132ebr60', 'no_lang_code', 1, 'https://ror.org/0132ebr60 Toyota Industries (United States)'),
(55921, 'https://ror.org/01336q621', 'no_lang_code', 1, 'https://ror.org/01336q621 DMS Imaging (France)'),
(55922, 'https://ror.org/0133m4g32', 'no_lang_code', 1, 'https://ror.org/0133m4g32 Nidec (France)'),
(55923, 'https://ror.org/01356gm80', 'cs', 1, 'https://ror.org/01356gm80 ZelinÔřskĆ” unie Čech a Moravy'),
(55924, 'https://ror.org/0135y0c80', 'de', 1, 'https://ror.org/0135y0c80 Mittelschul- und Berufsbildungsamt'),
(55925, 'https://ror.org/0135zve36', 'en', 1, 'https://ror.org/0135zve36 California Native Plant Society'),
(55926, 'https://ror.org/0136wrs55', 'en', 1, 'https://ror.org/0136wrs55 Scientific Research and Design Institute of Technology Equipment Refining and Petrochemical Industries Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠšŠžŠŠ”Š¢Š Š£ŠšŠ¢ŠžŠ Š”ŠšŠž-Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠžŠ‘ŠžŠ Š£Š”ŠžŠ’ŠŠŠ˜ŠÆ ŠŠ•Š¤Š¢Š•ŠŸŠ•Š Š•Š ŠŠ‘ŠŠ¢Š«Š’ŠŠ®Š©Š•Š™ И ŠŠ•Š¤Š¢Š•Š„Š˜ŠœŠ˜Š§Š•Š”ŠšŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(55927, 'https://ror.org/0137xm018', 'no_lang_code', 1, 'https://ror.org/0137xm018 KCI (Ireland)'),
(55928, 'https://ror.org/0139gxv26', 'fr', 1, 'https://ror.org/0139gxv26 Museum of Art and History MusƩe d''Art et d''Histoire'),
(55929, 'https://ror.org/0139mkv47', 'no_lang_code', 1, 'https://ror.org/0139mkv47 Solvay (United Kingdom)'),
(55930, 'https://ror.org/013b57229', 'no_lang_code', 1, 'https://ror.org/013b57229 Bristol-Myers Squibb (France)'),
(55931, 'https://ror.org/013bz8f47', 'no_lang_code', 1, 'https://ror.org/013bz8f47 Enteromed (United Kingdom)'),
(55932, 'https://ror.org/013eh0c53', 'en', 1, 'https://ror.org/013eh0c53 American Institute for Psychoanalysis'),
(55933, 'https://ror.org/013esgc34', 'no_lang_code', 1, 'https://ror.org/013esgc34 Instar ITS (Czechia)'),
(55934, 'https://ror.org/013g68144', 'en', 1, 'https://ror.org/013g68144 GS1 Czech Republic'),
(55935, 'https://ror.org/013gv6q66', 'en', 1, 'https://ror.org/013gv6q66 WHAS Crusade for Children'),
(55936, 'https://ror.org/013j2ff86', 'no_lang_code', 1, 'https://ror.org/013j2ff86 Steris (France)'),
(55937, 'https://ror.org/013j55h69', 'no_lang_code', 1, 'https://ror.org/013j55h69 Rehau (France)'),
(55938, 'https://ror.org/013k74819', 'de', 1, 'https://ror.org/013k74819 KantonsarchƤologie'),
(55939, 'https://ror.org/013kx3552', 'cs', 1, 'https://ror.org/013kx3552 Bohuslav Martinu Foundation, Nadace Bohuslava MartinÅÆ'),
(55940, 'https://ror.org/013nc8024', 'no_lang_code', 1, 'https://ror.org/013nc8024 Angermeier (Czechia)'),
(55941, 'https://ror.org/013qc1j71', 'en', 1, 'https://ror.org/013qc1j71 Paws & Claws Animal Hospital and Holistic Pet Center'),
(55942, 'https://ror.org/013rtsq97', 'en', 1, 'https://ror.org/013rtsq97 Samberg Family Foundation'),
(55943, 'https://ror.org/013t7dx52', 'no_lang_code', 1, 'https://ror.org/013t7dx52 ICT Unie'),
(55944, 'https://ror.org/013vrgb28', 'en', 1, 'https://ror.org/013vrgb28 Czech Radio Český rozhlas'),
(55945, 'https://ror.org/013ww9721', 'en', 1, 'https://ror.org/013ww9721 Fondation Philippe Wiener - Maurice Anspach Wiener - Anspach Foundation'),
(55946, 'https://ror.org/013x7n115', 'no_lang_code', 1, 'https://ror.org/013x7n115 Hologic (United Kingdom)'),
(55947, 'https://ror.org/013xqbx45', 'no_lang_code', 1, 'https://ror.org/013xqbx45 Caerbont Automotive Instruments (United Kingdom)'),
(55948, 'https://ror.org/013zszd91', 'en', 1, 'https://ror.org/013zszd91 Israel Water Authority ×ž×•×¢×¦×Ŗ רשות המים'),
(55949, 'https://ror.org/0140krp16', 'no_lang_code', 1, 'https://ror.org/0140krp16 Mane (India)'),
(55950, 'https://ror.org/0142b0n41', 'no_lang_code', 1, 'https://ror.org/0142b0n41 Berry Servis (Czechia)'),
(55951, 'https://ror.org/0145pgy59', 'en', 1, 'https://ror.org/0145pgy59 Rose Foundation for Communities and the Environment'),
(55952, 'https://ror.org/014775w70', 'no_lang_code', 1, 'https://ror.org/014775w70 Renesas Electronics (United States)'),
(55953, 'https://ror.org/01484hw40', 'no_lang_code', 1, 'https://ror.org/01484hw40 Marvell (Israel)'),
(55954, 'https://ror.org/014becm56', 'no_lang_code', 1, 'https://ror.org/014becm56 Meteolabor (Switzerland)'),
(55955, 'https://ror.org/014bftp96', 'no_lang_code', 1, 'https://ror.org/014bftp96 Dopravnƭ Podnik Měst Liberce a Jablonce nad Nisou (Czechia) Dopravnƭ podnik města Liberce'),
(55956, 'https://ror.org/014bj9h93', 'cs', 1, 'https://ror.org/014bj9h93 ČeskÔ EnergetickÔ Asociace'),
(55957, 'https://ror.org/014dka479', 'no_lang_code', 1, 'https://ror.org/014dka479 Sky Paragliders (Czechia)'),
(55958, 'https://ror.org/014ezhp82', 'no_lang_code', 1, 'https://ror.org/014ezhp82 Laboratory Supplies and Instruments (United Kingdom)'),
(55959, 'https://ror.org/014f0f469', 'en', 1, 'https://ror.org/014f0f469 Working Landscapes'),
(55960, 'https://ror.org/014j4nz90', 'no_lang_code', 1, 'https://ror.org/014j4nz90 Rosomac (Czechia)'),
(55961, 'https://ror.org/014jtt019', 'en', 1, 'https://ror.org/014jtt019 Government of Ireland'),
(55962, 'https://ror.org/014mn3s63', 'en', 1, 'https://ror.org/014mn3s63 United States African Development Foundation'),
(55963, 'https://ror.org/014mtbm52', 'en', 1, 'https://ror.org/014mtbm52 Thommen Medical (Switzerland)'),
(55964, 'https://ror.org/014n5hm22', 'no_lang_code', 1, 'https://ror.org/014n5hm22 Sanofi (Austria)'),
(55965, 'https://ror.org/014pp1s07', 'en', 1, 'https://ror.org/014pp1s07 Port Authority of New York and New Jersey'),
(55966, 'https://ror.org/014r06x83', 'no_lang_code', 1, 'https://ror.org/014r06x83 ZPA Ekoreg (Czechia)'),
(55967, 'https://ror.org/014smg292', 'en', 1, 'https://ror.org/014smg292 RJ McElroy Trust'),
(55968, 'https://ror.org/014t9bz90', 'no_lang_code', 1, 'https://ror.org/014t9bz90 Techtronic Industries (United Kingdom)'),
(55969, 'https://ror.org/014tew554', 'no_lang_code', 1, 'https://ror.org/014tew554 Garmin (United Kingdom)'),
(55970, 'https://ror.org/014tfzt26', 'no_lang_code', 1, 'https://ror.org/014tfzt26 Metabolic Modeling Services (New Zealand)'),
(55971, 'https://ror.org/014tm9824', 'no_lang_code', 1, 'https://ror.org/014tm9824 Czechoslovak Society for Microbiology (Czechia) ČeskoslovenskĆ” společnost mikrobiologickĆ”'),
(55972, 'https://ror.org/014we6j04', 'no_lang_code', 1, 'https://ror.org/014we6j04 Ecofuel Laboratories (Czechia)'),
(55973, 'https://ror.org/014wt7r80', 'en', 1, 'https://ror.org/014wt7r80 IBM Research - India'),
(55974, 'https://ror.org/01510f568', 'no_lang_code', 1, 'https://ror.org/01510f568 Setec (France)'),
(55975, 'https://ror.org/0151hvz61', 'en', 1, 'https://ror.org/0151hvz61 San Diego Center for Spinal Disorders'),
(55976, 'https://ror.org/0153me927', 'fr', 1, 'https://ror.org/0153me927 Fondation MathƩmatiques Jacques Hadamard'),
(55977, 'https://ror.org/01544jt07', 'no_lang_code', 1, 'https://ror.org/01544jt07 Hit Hofman (Czechia)'),
(55978, 'https://ror.org/015cg7d75', 'cs', 1, 'https://ror.org/015cg7d75 SociƔlnƭ Agentura'),
(55979, 'https://ror.org/015cskm63', 'no_lang_code', 1, 'https://ror.org/015cskm63 Sat (Czechia)'),
(55980, 'https://ror.org/015dee208', 'no_lang_code', 1, 'https://ror.org/015dee208 FCC Austria Abfall Service AG'),
(55981, 'https://ror.org/015g04494', 'no_lang_code', 1, 'https://ror.org/015g04494 Projekt HTL (Czechia)'),
(55982, 'https://ror.org/015g21p04', 'en', 1, 'https://ror.org/015g21p04 Marathon Veterinary Hospital'),
(55983, 'https://ror.org/015gb1r92', 'da', 1, 'https://ror.org/015gb1r92 Svend Beck Peter Holm og Vagn Jacobsens Almene Fond'),
(55984, 'https://ror.org/015j7rx80', 'no_lang_code', 1, 'https://ror.org/015j7rx80 Ders (Czechia)'),
(55985, 'https://ror.org/015kngk22', 'sv', 1, 'https://ror.org/015kngk22 Stiftelsen Clas Groschinskys Minnesfond'),
(55986, 'https://ror.org/015pn9s62', 'es', 1, 'https://ror.org/015pn9s62 Instituto Químico Biológico'),
(55987, 'https://ror.org/015r3hp96', 'en', 1, 'https://ror.org/015r3hp96 Grundinformationen über Südbƶhmische Wirtschaftskammer JihočeskĆ” hospodÔřskĆ” komora South Bohemian Chamber of Commerce'),
(55988, 'https://ror.org/015r6qx80', 'no_lang_code', 1, 'https://ror.org/015r6qx80 Laboratoires d''Anjou (France)'),
(55989, 'https://ror.org/015rwy490', 'de', 1, 'https://ror.org/015rwy490 Schweizerischer Juristenverein'),
(55990, 'https://ror.org/015sf2585', 'no_lang_code', 1, 'https://ror.org/015sf2585 Rebnok (India)'),
(55991, 'https://ror.org/015t1sz24', 'en', 1, 'https://ror.org/015t1sz24 College of Information Management Business Administration and Law VysokÔ Ŕkola manažerské informatiky, ekonomiky a prÔva'),
(55992, 'https://ror.org/015vtg089', 'no_lang_code', 1, 'https://ror.org/015vtg089 Biodegradace (Czechia)'),
(55993, 'https://ror.org/015xp8e19', 'de', 1, 'https://ror.org/015xp8e19 Thüringer Ministerium für Bildung, Jugend und Sport'),
(55994, 'https://ror.org/015y4fr56', 'en', 1, 'https://ror.org/015y4fr56 Institute of Paleontology A A Borisyak ŠŸŠ°Š»ŠµŠ¾Š½Ń‚Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени А. А. Š‘Š¾Ń€ŠøŃŃŠŗŠ° Š ŠŠ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(55995, 'https://ror.org/015ye0m82', 'no_lang_code', 1, 'https://ror.org/015ye0m82 Advance Product Services (United Kingdom)'),
(55996, 'https://ror.org/015yfqq31', 'en', 1, 'https://ror.org/015yfqq31 Dominican School of Philosophy and Theology'),
(55997, 'https://ror.org/015zgf178', 'de', 1, 'https://ror.org/015zgf178 Schweizerische Multiple Sklerose Gesellschaft SocietƠ Svizzera Sclerosi Multipla SociƩtƩ Suisse de la SclƩrose en Plaques'),
(55998, 'https://ror.org/015zgrj36', 'de', 1, 'https://ror.org/015zgrj36 Egger Kommunikation'),
(55999, 'https://ror.org/016018d94', 'de', 1, 'https://ror.org/016018d94 Bundesamt für Kultur, Office fédéral de la culture Ufficio federale della cultura Uffizi federal da cultura'),
(56000, 'https://ror.org/01607kg94', 'no_lang_code', 1, 'https://ror.org/01607kg94 Nokia (China)'),
(56001, 'https://ror.org/0160rhq33', 'en', 1, 'https://ror.org/0160rhq33 Dalmia Institute of Scientific & Industrial Research'),
(56002, 'https://ror.org/0161kev09', 'no_lang_code', 1, 'https://ror.org/0161kev09 APPLIC (Czechia)'),
(56003, 'https://ror.org/0161tv133', 'no_lang_code', 1, 'https://ror.org/0161tv133 Memscap (France)'),
(56004, 'https://ror.org/016241e94', 'no_lang_code', 1, 'https://ror.org/016241e94 LibereckƩ KotlƔrny Hƶlter (Czechia)'),
(56005, 'https://ror.org/0163qy924', 'no_lang_code', 1, 'https://ror.org/0163qy924 Newell Brands (Germany)'),
(56006, 'https://ror.org/01647qt90', 'no_lang_code', 1, 'https://ror.org/01647qt90 Genoscience Pharma (France)'),
(56007, 'https://ror.org/0164z4p75', 'no_lang_code', 1, 'https://ror.org/0164z4p75 Glass Service (Czechia)'),
(56008, 'https://ror.org/01654ws56', 'en', 1, 'https://ror.org/01654ws56 Technology Industries of Finland'),
(56009, 'https://ror.org/0165j6v88', 'cs', 1, 'https://ror.org/0165j6v88 Unie Geologických Asociací'),
(56010, 'https://ror.org/0168cex60', 'no_lang_code', 1, 'https://ror.org/0168cex60 Interfluid (Czechia)'),
(56011, 'https://ror.org/016dg3e07', 'no_lang_code', 1, 'https://ror.org/016dg3e07 International Drug Development Institute (Belgium)'),
(56012, 'https://ror.org/016dt2y84', 'de', 1, 'https://ror.org/016dt2y84 Center Pro Natura of Champ-Pittet'),
(56013, 'https://ror.org/016en3a39', 'en', 1, 'https://ror.org/016en3a39 IMI TAMI Institute for Research and Development'),
(56014, 'https://ror.org/016fc4a97', 'en', 1, 'https://ror.org/016fc4a97 University Film and Video Association'),
(56015, 'https://ror.org/016fqsx25', 'en', 1, 'https://ror.org/016fqsx25 Formation Continue UNIL-EPFL'),
(56016, 'https://ror.org/016gtw459', 'no_lang_code', 1, 'https://ror.org/016gtw459 Sitel (Czechia)'),
(56017, 'https://ror.org/016h91621', 'no_lang_code', 1, 'https://ror.org/016h91621 Amest (Czechia)'),
(56018, 'https://ror.org/016jmhr98', 'en', 1, 'https://ror.org/016jmhr98 Amt für Verƶffentlichungen der EuropƤischen Union L''Office des Publications de l’Union EuropĆ©enne Publications Office of the European Union'),
(56019, 'https://ror.org/016kmmx43', 'en', 1, 'https://ror.org/016kmmx43 Savoy Foundation'),
(56020, 'https://ror.org/016kx7a84', 'no_lang_code', 1, 'https://ror.org/016kx7a84 Ballard Power Systems (Germany)'),
(56021, 'https://ror.org/016m85y83', 'de', 1, 'https://ror.org/016m85y83 Fachkommission für Hochspannungsfragen'),
(56022, 'https://ror.org/016nn9d26', 'no_lang_code', 1, 'https://ror.org/016nn9d26 Becton Dickinson (France)'),
(56023, 'https://ror.org/016p3p817', 'en', 1, 'https://ror.org/016p3p817 Stichting Vanderes Vanderes Foundation'),
(56024, 'https://ror.org/016pgbd19', 'no_lang_code', 1, 'https://ror.org/016pgbd19 Ɖditions Gallimard (France)'),
(56025, 'https://ror.org/016ppxm14', 'no_lang_code', 1, 'https://ror.org/016ppxm14 Intermark Medical Innovations (United Kingdom)'),
(56026, 'https://ror.org/016q8y748', 'no_lang_code', 1, 'https://ror.org/016q8y748 Bilcare Research (United States)'),
(56027, 'https://ror.org/016r49y78', 'no_lang_code', 1, 'https://ror.org/016r49y78 IntellMed (Czechia)'),
(56028, 'https://ror.org/016scq007', 'en', 1, 'https://ror.org/016scq007 HavlƭčkÅÆv Brod Hospital Nemocnice HavlƭčkÅÆv Brod'),
(56029, 'https://ror.org/016wa7380', 'no_lang_code', 1, 'https://ror.org/016wa7380 JHV Engineering'),
(56030, 'https://ror.org/016xeth45', 'no_lang_code', 1, 'https://ror.org/016xeth45 Nadop-výroba NÔbytku (Czechia)'),
(56031, 'https://ror.org/016y4db75', 'en', 1, 'https://ror.org/016y4db75 Spital Linth'),
(56032, 'https://ror.org/01702fz61', 'en', 1, 'https://ror.org/01702fz61 Riverbanks Zoo and Garden'),
(56033, 'https://ror.org/01705m837', 'no_lang_code', 1, 'https://ror.org/01705m837 Dako-CZ (Czechia)'),
(56034, 'https://ror.org/0174xkn11', 'en', 1, 'https://ror.org/0174xkn11 William K. Warren Foundation'),
(56035, 'https://ror.org/01764mn96', 'no_lang_code', 1, 'https://ror.org/01764mn96 Gumotex (Czechia)'),
(56036, 'https://ror.org/0176j2f59', 'no_lang_code', 1, 'https://ror.org/0176j2f59 AK Svejkovský, KabelkovÔ, Šlauf (Czechia)'),
(56037, 'https://ror.org/0176jpt46', 'en', 1, 'https://ror.org/0176jpt46 Schenectady Foundation'),
(56038, 'https://ror.org/0177f9748', 'en', 1, 'https://ror.org/0177f9748 Society for Ambulatory Anesthesia'),
(56039, 'https://ror.org/0179vv482', 'en', 1, 'https://ror.org/0179vv482 Office of Postsecondary Education'),
(56040, 'https://ror.org/017afst72', 'no_lang_code', 1, 'https://ror.org/017afst72 Blackberry (United States)'),
(56041, 'https://ror.org/017bbk264', 'en', 1, 'https://ror.org/017bbk264 Ohio Ecological Food and Farm Association'),
(56042, 'https://ror.org/017dxtw95', 'en', 1, 'https://ror.org/017dxtw95 Centre for Research Development and Innovation Centrum pro výzkum, vývoj a inovace'),
(56043, 'https://ror.org/017ep6b53', 'de', 1, 'https://ror.org/017ep6b53 Natur Museum Luzern'),
(56044, 'https://ror.org/017fqk185', 'no_lang_code', 1, 'https://ror.org/017fqk185 Microsoft (Ireland)'),
(56045, 'https://ror.org/017fxz195', 'no_lang_code', 1, 'https://ror.org/017fxz195 Dyntec (Czechia)'),
(56046, 'https://ror.org/017g8xy67', 'no_lang_code', 1, 'https://ror.org/017g8xy67 IDEA StatiCa (Czechia)'),
(56047, 'https://ror.org/017hkkd29', 'en', 1, 'https://ror.org/017hkkd29 Leadership for Urban Renewal Network'),
(56048, 'https://ror.org/017mw4x28', 'en', 1, 'https://ror.org/017mw4x28 Healthcare Technology Innovation Centre'),
(56049, 'https://ror.org/017pyf298', 'cs', 1, 'https://ror.org/017pyf298 Nemocnice Jablonec nad Nisou'),
(56050, 'https://ror.org/017sk3p30', 'no_lang_code', 1, 'https://ror.org/017sk3p30 Geniczech M (Czechia)'),
(56051, 'https://ror.org/017swdq34', 'en', 1, 'https://ror.org/017swdq34 Wuhan Donghu University ę­¦ę±‰äøœę¹–å­¦é™¢'),
(56052, 'https://ror.org/017vj1d34', 'no_lang_code', 1, 'https://ror.org/017vj1d34 Barco (Netherlands)'),
(56053, 'https://ror.org/017w1jt07', 'no_lang_code', 1, 'https://ror.org/017w1jt07 StrojĆ­renskĆ© InovačnĆ­ Centrum (Czechia)'),
(56054, 'https://ror.org/017y22r40', 'en', 1, 'https://ror.org/017y22r40 Fujian Metrology Institute'),
(56055, 'https://ror.org/0181yrz32', 'no_lang_code', 1, 'https://ror.org/0181yrz32 Croda (France)'),
(56056, 'https://ror.org/0183e1x96', 'en', 1, 'https://ror.org/0183e1x96 Minerals Council of Australia'),
(56057, 'https://ror.org/0184jv876', 'no_lang_code', 1, 'https://ror.org/0184jv876 Johnson Controls (Germany)'),
(56058, 'https://ror.org/0187psc61', 'en', 1, 'https://ror.org/0187psc61 Scottish Intercollegiate Guidelines Network'),
(56059, 'https://ror.org/0188dhg98', 'en', 1, 'https://ror.org/0188dhg98 Office of the Comptroller of the Currency'),
(56060, 'https://ror.org/018dfgy98', 'no_lang_code', 1, 'https://ror.org/018dfgy98 Centro de Calculo Igs Software (Czechia)'),
(56061, 'https://ror.org/018fjx211', 'de', 1, 'https://ror.org/018fjx211 Schweizer Zither-Kulturzentrum'),
(56062, 'https://ror.org/018hfge71', 'no_lang_code', 1, 'https://ror.org/018hfge71 Měď Povrly (Czechia)'),
(56063, 'https://ror.org/018p41404', 'en', 1, 'https://ror.org/018p41404 Korean Chemical Society'),
(56064, 'https://ror.org/018pszt58', 'no_lang_code', 1, 'https://ror.org/018pszt58 RekultivačnĆ­ Výstavba Most (Czechia)'),
(56065, 'https://ror.org/018rnp883', 'no_lang_code', 1, 'https://ror.org/018rnp883 AdamovskƩ Strojƭrny (Czechia)'),
(56066, 'https://ror.org/018ryqx18', 'cs', 1, 'https://ror.org/018ryqx18 ZÔkladní Ŕkola Brno'),
(56067, 'https://ror.org/018vhj234', 'no_lang_code', 1, 'https://ror.org/018vhj234 Turnex (Czechia)'),
(56068, 'https://ror.org/018vsyr42', 'no_lang_code', 1, 'https://ror.org/018vsyr42 SG-Geoprojekt (Czechia)'),
(56069, 'https://ror.org/018whpc62', 'no_lang_code', 1, 'https://ror.org/018whpc62 MEP Equine Solutions (United States)'),
(56070, 'https://ror.org/018yv7m63', 'sv', 1, 'https://ror.org/018yv7m63 Svenska Ɩrtmedicinska Institute'),
(56071, 'https://ror.org/018ze1g95', 'no_lang_code', 1, 'https://ror.org/018ze1g95 Good Sailors (Czechia)'),
(56072, 'https://ror.org/01909jb21', 'fr', 1, 'https://ror.org/01909jb21 LycƩe Pierre-de-Fermat'),
(56073, 'https://ror.org/0190gce36', 'en', 1, 'https://ror.org/0190gce36 Concerned Black Men National'),
(56074, 'https://ror.org/0190tnk59', 'no_lang_code', 1, 'https://ror.org/0190tnk59 DopravnĆ­ Podnik Ostrava Transport Company Ostrava (Czechia)'),
(56075, 'https://ror.org/019206e14', 'en', 1, 'https://ror.org/019206e14 Automotive Industry Association Sdružení Automobilového Průmyslu'),
(56076, 'https://ror.org/01920rj20', 'en', 1, 'https://ror.org/01920rj20 Roslin Institute'),
(56077, 'https://ror.org/0192hf124', 'en', 1, 'https://ror.org/0192hf124 Sean Costello Memorial Fund for Bipolar Research'),
(56078, 'https://ror.org/0193emr15', 'en', 1, 'https://ror.org/0193emr15 ASI Consulting Group (United States)'),
(56079, 'https://ror.org/0194wdc61', 'cs', 1, 'https://ror.org/0194wdc61 Profesní Komora SociÔlních Pracovníků'),
(56080, 'https://ror.org/0197zpg25', 'no_lang_code', 1, 'https://ror.org/0197zpg25 SOR Libchavy (Czechia)'),
(56081, 'https://ror.org/0198yrw13', 'no_lang_code', 1, 'https://ror.org/0198yrw13 Boehringer Ingelheim (Mexico)'),
(56082, 'https://ror.org/019bmyc06', 'no_lang_code', 1, 'https://ror.org/019bmyc06 PBS Power Equipment (Czechia)'),
(56083, 'https://ror.org/019d8yq85', 'no_lang_code', 1, 'https://ror.org/019d8yq85 Vyrtych TPI (Czechia)'),
(56084, 'https://ror.org/019dgfy14', 'no_lang_code', 1, 'https://ror.org/019dgfy14 Dystiff (Czechia)'),
(56085, 'https://ror.org/019ex7f36', 'no_lang_code', 1, 'https://ror.org/019ex7f36 Safe Patient Systems (United Kingdom)'),
(56086, 'https://ror.org/019fb4526', 'no_lang_code', 1, 'https://ror.org/019fb4526 BG Sys HT (Czechia)');
INSERT INTO `rors` VALUES
(56087, 'https://ror.org/019fwhw29', 'en', 1, 'https://ror.org/019fwhw29 Muzeul Național al Ţăranului RomĆ¢n Romanian Peasant Museum'),
(56088, 'https://ror.org/019h4w337', 'no_lang_code', 1, 'https://ror.org/019h4w337 VƔlcovna Trub (Czechia)'),
(56089, 'https://ror.org/019hb2q78', 'de', 1, 'https://ror.org/019hb2q78 Staatsarchiv des Kantons Zürich'),
(56090, 'https://ror.org/019jfhj96', 'en', 1, 'https://ror.org/019jfhj96 Webber Family Foundation'),
(56091, 'https://ror.org/019m3rc39', 'no_lang_code', 1, 'https://ror.org/019m3rc39 Asipo (Czechia)'),
(56092, 'https://ror.org/019ngyx76', 'en', 1, 'https://ror.org/019ngyx76 Institute for Environmental Management'),
(56093, 'https://ror.org/019pz8z97', 'en', 1, 'https://ror.org/019pz8z97 Association of Ukrainian Cities ŠŃŠ¾Ń†Ń–Š°Ń†Ń–Ń міст України та громаГ'),
(56094, 'https://ror.org/019qf4t38', 'no_lang_code', 1, 'https://ror.org/019qf4t38 Mobsya'),
(56095, 'https://ror.org/019qmfe51', 'en', 1, 'https://ror.org/019qmfe51 South Central Community Action Programs'),
(56096, 'https://ror.org/019vgq189', 'no_lang_code', 1, 'https://ror.org/019vgq189 Schiller (France)'),
(56097, 'https://ror.org/019vv3z40', 'en', 1, 'https://ror.org/019vv3z40 Pen-Faulkner Foundation'),
(56098, 'https://ror.org/019w0cd69', 'no_lang_code', 1, 'https://ror.org/019w0cd69 Despa ok (Czechia)'),
(56099, 'https://ror.org/019ygn834', 'de', 1, 'https://ror.org/019ygn834 Zentrum für Sprachtherapie'),
(56100, 'https://ror.org/019z0b657', 'no_lang_code', 1, 'https://ror.org/019z0b657 V-Projekt (Czechia)'),
(56101, 'https://ror.org/019zrgy79', 'en', 1, 'https://ror.org/019zrgy79 Albrecht von Haller Foundation Albrecht von Haller-Stiftung'),
(56102, 'https://ror.org/019zz2s13', 'no_lang_code', 1, 'https://ror.org/019zz2s13 RybÔřstvĆ­ NovĆ© Hrady (Czechia)'),
(56103, 'https://ror.org/01a097g74', 'no_lang_code', 1, 'https://ror.org/01a097g74 Sigma-Tau (Switzerland)'),
(56104, 'https://ror.org/01a134x88', 'no_lang_code', 1, 'https://ror.org/01a134x88 GeoTec GS (Czechia)'),
(56105, 'https://ror.org/01a1d1t26', 'no_lang_code', 1, 'https://ror.org/01a1d1t26 Lime Business Consulting (Czechia)'),
(56106, 'https://ror.org/01a1e7r70', 'no_lang_code', 1, 'https://ror.org/01a1e7r70 Dendria (Czechia)'),
(56107, 'https://ror.org/01a1zts48', 'en', 1, 'https://ror.org/01a1zts48 Windham Regional Community Council'),
(56108, 'https://ror.org/01a29cf93', 'de', 1, 'https://ror.org/01a29cf93 Institut für Industrielle Pharmazie'),
(56109, 'https://ror.org/01a56n213', 'no_lang_code', 1, 'https://ror.org/01a56n213 Shangluo University 商擛学院'),
(56110, 'https://ror.org/01a83sr17', 'de', 1, 'https://ror.org/01a83sr17 Kunsthaus Zug'),
(56111, 'https://ror.org/01a8wgs29', 'no_lang_code', 1, 'https://ror.org/01a8wgs29 Straumann (Switzerland)'),
(56112, 'https://ror.org/01a9pzb45', 'en', 1, 'https://ror.org/01a9pzb45 National Association of Community Health Representatives'),
(56113, 'https://ror.org/01aaykq16', 'no_lang_code', 1, 'https://ror.org/01aaykq16 Diram (Czechia)'),
(56114, 'https://ror.org/01acb1828', 'en', 1, 'https://ror.org/01acb1828 Sierra Health Foundation'),
(56115, 'https://ror.org/01aee7q96', 'no_lang_code', 1, 'https://ror.org/01aee7q96 Saint-Gobain (Czechia)'),
(56116, 'https://ror.org/01aej3c59', 'no_lang_code', 1, 'https://ror.org/01aej3c59 Tylex Letovice (Czechia)'),
(56117, 'https://ror.org/01afvgj08', 'en', 1, 'https://ror.org/01afvgj08 Sacramento Food Bank and Family Services'),
(56118, 'https://ror.org/01ahf6552', 'no_lang_code', 1, 'https://ror.org/01ahf6552 Integrated Chinese Medicine (China)'),
(56119, 'https://ror.org/01akd1s31', 'no_lang_code', 1, 'https://ror.org/01akd1s31 SDS Exmost (Czechia)'),
(56120, 'https://ror.org/01ap43e37', 'no_lang_code', 1, 'https://ror.org/01ap43e37 Šimeček (Czechia)'),
(56121, 'https://ror.org/01ar4tp47', 'en', 1, 'https://ror.org/01ar4tp47 Austrian Marshall Plan Foundation Marshallplan JubilƤumsstiftung'),
(56122, 'https://ror.org/01ar7b291', 'en', 1, 'https://ror.org/01ar7b291 Delegation of the European Union to Guinea DĆ©lĆ©gation de l’Union EuropĆ©enne en RĆ©publique de GuinĆ©e'),
(56123, 'https://ror.org/01ars0856', 'en', 1, 'https://ror.org/01ars0856 Atlanta Clinical and Translational Science Institute'),
(56124, 'https://ror.org/01atm1h75', 'no_lang_code', 1, 'https://ror.org/01atm1h75 Laboratoires Prod''Hyg (France)'),
(56125, 'https://ror.org/01avhp493', 'no_lang_code', 1, 'https://ror.org/01avhp493 Institut StrategickƩ Podpory (Czechia)'),
(56126, 'https://ror.org/01avs2k90', 'en', 1, 'https://ror.org/01avs2k90 Ulugh Beg Astronomical Institute'),
(56127, 'https://ror.org/01avy4c79', 'no_lang_code', 1, 'https://ror.org/01avy4c79 Synchro Medical (France)'),
(56128, 'https://ror.org/01awkss54', 'no_lang_code', 1, 'https://ror.org/01awkss54 TE Connectivity (France)'),
(56129, 'https://ror.org/01ax0ps79', 'en', 1, 'https://ror.org/01ax0ps79 Agricultural Technology Research Institute'),
(56130, 'https://ror.org/01azdfc53', 'en', 1, 'https://ror.org/01azdfc53 Psychiatrie Baselland Psychiatry Baselland'),
(56131, 'https://ror.org/01b2bca57', 'de', 1, 'https://ror.org/01b2bca57 ArchƤologische Bodenforschung des Kantons Basel-Stadt'),
(56132, 'https://ror.org/01b2xa564', 'no_lang_code', 1, 'https://ror.org/01b2xa564 Czech Radiocommunications (Czechia) České Radiokomunikace'),
(56133, 'https://ror.org/01b2z3d97', 'cs', 1, 'https://ror.org/01b2z3d97 VlastivědnĆ© Muzeum v Å umperku'),
(56134, 'https://ror.org/01b34qr50', 'no_lang_code', 1, 'https://ror.org/01b34qr50 Slovacke Strojirny (Czechia)'),
(56135, 'https://ror.org/01b3d1c61', 'no_lang_code', 1, 'https://ror.org/01b3d1c61 Energoservis (Czechia)'),
(56136, 'https://ror.org/01b883r40', 'no_lang_code', 1, 'https://ror.org/01b883r40 INTV (Czechia)'),
(56137, 'https://ror.org/01b9jf692', 'no_lang_code', 1, 'https://ror.org/01b9jf692 Vepaspol Olomouc (Czechia)'),
(56138, 'https://ror.org/01bb5z206', 'fr', 1, 'https://ror.org/01bb5z206 Technologie MƩdicale (France)'),
(56139, 'https://ror.org/01bgvrv25', 'no_lang_code', 1, 'https://ror.org/01bgvrv25 Valeo Physical Therapy (United States)'),
(56140, 'https://ror.org/01bgymr29', 'fr', 1, 'https://ror.org/01bgymr29 Fondation Innovations en Infectiologie'),
(56141, 'https://ror.org/01bgzbz31', 'en', 1, 'https://ror.org/01bgzbz31 Schweizerische Gesellschaft für Soziologie Swiss Sociological Association'),
(56142, 'https://ror.org/01bhb9v37', 'no_lang_code', 1, 'https://ror.org/01bhb9v37 Betotech (Czechia)'),
(56143, 'https://ror.org/01bmmtg52', 'cs', 1, 'https://ror.org/01bmmtg52 Asociace Poskytovatelů SociÔlních Služeb České Republiky'),
(56144, 'https://ror.org/01bqscy27', 'fr', 1, 'https://ror.org/01bqscy27 Geneva Ethnography Museum Musée d''Ethnographie de Genève'),
(56145, 'https://ror.org/01brpj081', 'no_lang_code', 1, 'https://ror.org/01brpj081 Recutech (Czechia)'),
(56146, 'https://ror.org/01bv2n867', 'fr', 1, 'https://ror.org/01bv2n867 Institut SupĆ©rieur d’Informatique, de ModĆ©lisation et de leurs Applications'),
(56147, 'https://ror.org/01bxp3g94', 'no_lang_code', 1, 'https://ror.org/01bxp3g94 ON Semiconductor (Taiwan)'),
(56148, 'https://ror.org/01c2pab95', 'no_lang_code', 1, 'https://ror.org/01c2pab95 Vial (Norway)'),
(56149, 'https://ror.org/01c2z9a94', 'en', 1, 'https://ror.org/01c2z9a94 Ohio State Office of the Governor'),
(56150, 'https://ror.org/01c3yj543', 'no_lang_code', 1, 'https://ror.org/01c3yj543 Peter Brett Associates (Czechia)'),
(56151, 'https://ror.org/01c4cwj74', 'en', 1, 'https://ror.org/01c4cwj74 Respiratory Health Association'),
(56152, 'https://ror.org/01c5qhp69', 'no_lang_code', 1, 'https://ror.org/01c5qhp69 SciGlob (United States)'),
(56153, 'https://ror.org/01c75m640', 'en', 1, 'https://ror.org/01c75m640 Office of Minority Health and Health Equity'),
(56154, 'https://ror.org/01c8asw96', 'no_lang_code', 1, 'https://ror.org/01c8asw96 Nodus (Norway)'),
(56155, 'https://ror.org/01c8hzn56', 'en', 1, 'https://ror.org/01c8hzn56 South Asian Health Foundation'),
(56156, 'https://ror.org/01c8rdt53', 'no_lang_code', 1, 'https://ror.org/01c8rdt53 PKS holding (Czechia)'),
(56157, 'https://ror.org/01camvb92', 'en', 1, 'https://ror.org/01camvb92 Fribourg Development Agency Promotion Ʃconomique du canton de Fribourg'),
(56158, 'https://ror.org/01ccqrj78', 'en', 1, 'https://ror.org/01ccqrj78 American Olive Oil Producers Association'),
(56159, 'https://ror.org/01cdf1198', 'it', 1, 'https://ror.org/01cdf1198 Scuola Cantonale di Commercio Bellinzona'),
(56160, 'https://ror.org/01cejnk20', 'en', 1, 'https://ror.org/01cejnk20 International Union of Immunological Societies'),
(56161, 'https://ror.org/01cfx5y86', 'no_lang_code', 1, 'https://ror.org/01cfx5y86 AZ Consult (Czechia)'),
(56162, 'https://ror.org/01ch84g48', 'no_lang_code', 1, 'https://ror.org/01ch84g48 Rex Controls (Czechia)'),
(56163, 'https://ror.org/01cm3mn51', 'no_lang_code', 1, 'https://ror.org/01cm3mn51 Liaison Technologies (United States)'),
(56164, 'https://ror.org/01cmnv018', 'fr', 1, 'https://ror.org/01cmnv018 Institut des Neurosciences Cliniques de Rennes'),
(56165, 'https://ror.org/01cmyeg51', 'no_lang_code', 1, 'https://ror.org/01cmyeg51 ENBRA (Czechia)'),
(56166, 'https://ror.org/01cq1dy18', 'no', 1, 'https://ror.org/01cq1dy18 Regionale forskningsfond Oslofjordfondet'),
(56167, 'https://ror.org/01ct6ew56', 'no_lang_code', 1, 'https://ror.org/01ct6ew56 ZONER software (Czechia)'),
(56168, 'https://ror.org/01ct81870', 'cs', 1, 'https://ror.org/01ct81870 CZ Biom'),
(56169, 'https://ror.org/01ct9s926', 'hu', 1, 'https://ror.org/01ct9s926 Pallas AthƩnƩ Domus Animae AlapƭtvƔny'),
(56170, 'https://ror.org/01ctc2z33', 'en', 1, 'https://ror.org/01ctc2z33 Wipe Out Kids Cancer'),
(56171, 'https://ror.org/01cvk6k60', 'no_lang_code', 1, 'https://ror.org/01cvk6k60 Eyedea Recognition (Czechia)'),
(56172, 'https://ror.org/01d1a4y61', 'no_lang_code', 1, 'https://ror.org/01d1a4y61 Malina Safety (Czechia)'),
(56173, 'https://ror.org/01d2pjm58', 'no_lang_code', 1, 'https://ror.org/01d2pjm58 Universal Production Partners (Czechia)'),
(56174, 'https://ror.org/01d2prf79', 'fr', 1, 'https://ror.org/01d2prf79 Direction GƩnƩrale des Entreprises'),
(56175, 'https://ror.org/01d4cz113', 'no_lang_code', 1, 'https://ror.org/01d4cz113 Ochrana PodzemnĆ­ch Vod (Czechia)'),
(56176, 'https://ror.org/01d5z1p97', 'cs', 1, 'https://ror.org/01d5z1p97 Svaz Vinařů ČeskĆ© Republiky'),
(56177, 'https://ror.org/01d6br473', 'de', 1, 'https://ror.org/01d6br473 Christlicher Friedensdienst'),
(56178, 'https://ror.org/01d6x6740', 'en', 1, 'https://ror.org/01d6x6740 Wyoming Office of the Governor'),
(56179, 'https://ror.org/01d931n02', 'en', 1, 'https://ror.org/01d931n02 Ronald McDonald House Charities of Northeastern Ohio'),
(56180, 'https://ror.org/01dagn361', 'en', 1, 'https://ror.org/01dagn361 TIFR Centre for Interdisciplinary Sciences'),
(56181, 'https://ror.org/01datx010', 'en', 1, 'https://ror.org/01datx010 Designability'),
(56182, 'https://ror.org/01dawqf23', 'no_lang_code', 1, 'https://ror.org/01dawqf23 CSS (Switzerland)'),
(56183, 'https://ror.org/01dbp7q39', 'no_lang_code', 1, 'https://ror.org/01dbp7q39 Mikrotechna Praha (Czechia)'),
(56184, 'https://ror.org/01ddk2e73', 'cs', 1, 'https://ror.org/01ddk2e73 ZemědělskĆ© Družstvo Čechtice'),
(56185, 'https://ror.org/01ddpks56', 'no_lang_code', 1, 'https://ror.org/01ddpks56 Georeal (Czechia)'),
(56186, 'https://ror.org/01deknt13', 'no_lang_code', 1, 'https://ror.org/01deknt13 Motorpal (Czechia)'),
(56187, 'https://ror.org/01dh19j96', 'no_lang_code', 1, 'https://ror.org/01dh19j96 Goss International (France)'),
(56188, 'https://ror.org/01dhtjr14', 'no_lang_code', 1, 'https://ror.org/01dhtjr14 Composite Components (Czechia)'),
(56189, 'https://ror.org/01dk5kp39', 'en', 1, 'https://ror.org/01dk5kp39 Bellikon Rehabilitation Clinic Rehaklinik Bellikon'),
(56190, 'https://ror.org/01dkyny41', 'es', 1, 'https://ror.org/01dkyny41 Universidad UNIACC'),
(56191, 'https://ror.org/01dph1h97', 'en', 1, 'https://ror.org/01dph1h97 Zurich Chamber of Commerce Zürcher Handelskammer'),
(56192, 'https://ror.org/01dr2x580', 'cs', 1, 'https://ror.org/01dr2x580 ZÔkladní Škola Vachkova'),
(56193, 'https://ror.org/01dt2yc71', 'no_lang_code', 1, 'https://ror.org/01dt2yc71 Agro RubĆ­n (Czechia)'),
(56194, 'https://ror.org/01dvqbh84', 'no_lang_code', 1, 'https://ror.org/01dvqbh84 Teva Pharmaceuticals (United Kingdom)'),
(56195, 'https://ror.org/01dx78504', 'no_lang_code', 1, 'https://ror.org/01dx78504 ZEZ Praha (Czechia)'),
(56196, 'https://ror.org/01dxdkd86', 'no_lang_code', 1, 'https://ror.org/01dxdkd86 Sela Light (France)'),
(56197, 'https://ror.org/01dxemz65', 'de', 1, 'https://ror.org/01dxemz65 Kantonsbibliothek Vadiana St.Gallen'),
(56198, 'https://ror.org/01dxwkm60', 'de', 1, 'https://ror.org/01dxwkm60 Ad Baumgartner Sozialforschung'),
(56199, 'https://ror.org/01dxzkc83', 'no_lang_code', 1, 'https://ror.org/01dxzkc83 Gala (Czechia)'),
(56200, 'https://ror.org/01dy84y11', 'no_lang_code', 1, 'https://ror.org/01dy84y11 Atlas Copco (Sweden)'),
(56201, 'https://ror.org/01dyffq73', 'en', 1, 'https://ror.org/01dyffq73 Burzynski Research Institute'),
(56202, 'https://ror.org/01dyja912', 'no_lang_code', 1, 'https://ror.org/01dyja912 Ferarihs'),
(56203, 'https://ror.org/01dykse44', 'no_lang_code', 1, 'https://ror.org/01dykse44 Patriot (Czechia)'),
(56204, 'https://ror.org/01e473h50', 'en', 1, 'https://ror.org/01e473h50 Ludwig Cancer Research'),
(56205, 'https://ror.org/01e6knz33', 'cs', 1, 'https://ror.org/01e6knz33 TechnologickƩ centrum Pƭsek'),
(56206, 'https://ror.org/01e6r0071', 'no_lang_code', 1, 'https://ror.org/01e6r0071 Tubs (United States)'),
(56207, 'https://ror.org/01e89dr28', 'fr', 1, 'https://ror.org/01e89dr28 BFA Laboratoires'),
(56208, 'https://ror.org/01e8d4510', 'it', 1, 'https://ror.org/01e8d4510 SDN Istituto di Ricerca Diagnostica e Nucleare'),
(56209, 'https://ror.org/01eah9363', 'it', 1, 'https://ror.org/01eah9363 Archivio di Stato di Firenze'),
(56210, 'https://ror.org/01eb88c92', 'en', 1, 'https://ror.org/01eb88c92 Animal Health Institute'),
(56211, 'https://ror.org/01edvza61', 'no_lang_code', 1, 'https://ror.org/01edvza61 DopravnĆ­ akademie (Czechia)'),
(56212, 'https://ror.org/01eeqch44', 'es', 1, 'https://ror.org/01eeqch44 Agencia Canaria de Investigación, Innovación y Sociedad de la Información'),
(56213, 'https://ror.org/01ef4as46', 'en', 1, 'https://ror.org/01ef4as46 Direction GƩnƩrale Recherche et innovation Directorate-General for Research and Innovation Generaldirektion Forschung und Innovation'),
(56214, 'https://ror.org/01ef7dt45', 'no_lang_code', 1, 'https://ror.org/01ef7dt45 Centec (Czechia)'),
(56215, 'https://ror.org/01efe3143', 'no_lang_code', 1, 'https://ror.org/01efe3143 DT VýhybkÔrna a Strojírna (Czechia)'),
(56216, 'https://ror.org/01ej37345', 'no_lang_code', 1, 'https://ror.org/01ej37345 Betonika Spol (Czechia)'),
(56217, 'https://ror.org/01ejq3n45', 'cs', 1, 'https://ror.org/01ejq3n45 Children’s Centre Little House Dzieckie Centrum Domeczek DětskĆ© Centrum Domeček, Dětský Domov pro Děti do 3 Let'),
(56218, 'https://ror.org/01emwg098', 'no_lang_code', 1, 'https://ror.org/01emwg098 Kovolis Hedvikov (Czechia)'),
(56219, 'https://ror.org/01emzvp42', 'en', 1, 'https://ror.org/01emzvp42 Parents Let''s Unite for Kids'),
(56220, 'https://ror.org/01enwhw69', 'de', 1, 'https://ror.org/01enwhw69 Sozialamt des Kantons Thurgau'),
(56221, 'https://ror.org/01ep8wa33', 'en', 1, 'https://ror.org/01ep8wa33 European Copper Institute'),
(56222, 'https://ror.org/01eqe2r17', 'en', 1, 'https://ror.org/01eqe2r17 Signe and Ane Gyllenberg Foundation Signe ja Ane Gyllenbergin sƤƤtiƶ'),
(56223, 'https://ror.org/01eqtac57', 'no_lang_code', 1, 'https://ror.org/01eqtac57 Crabtree (United States)'),
(56224, 'https://ror.org/01er6ka68', 'de', 1, 'https://ror.org/01er6ka68 KantonsarchƤologie'),
(56225, 'https://ror.org/01evns552', 'en', 1, 'https://ror.org/01evns552 Louisiana Department of Insurance'),
(56226, 'https://ror.org/01evw4s98', 'no_lang_code', 1, 'https://ror.org/01evw4s98 Pipelife (Czechia)'),
(56227, 'https://ror.org/01ew2yc64', 'fr', 1, 'https://ror.org/01ew2yc64 Conseil Interprofessionnel du Vin de Bordeaux'),
(56228, 'https://ror.org/01ex2ev57', 'no_lang_code', 1, 'https://ror.org/01ex2ev57 SokolovskƩ Strojƭrny (Czechia)'),
(56229, 'https://ror.org/01ex2n145', 'no_lang_code', 1, 'https://ror.org/01ex2n145 Alumistr (Czechia)'),
(56230, 'https://ror.org/01ey4aq86', 'no_lang_code', 1, 'https://ror.org/01ey4aq86 Trs (Czechia)'),
(56231, 'https://ror.org/01f15r266', 'en', 1, 'https://ror.org/01f15r266 Inha University in Tashkent Toshkent Shahridagi Inha Universiteti'),
(56232, 'https://ror.org/01f3d0y31', 'no_lang_code', 1, 'https://ror.org/01f3d0y31 Nuvia (Czechia)'),
(56233, 'https://ror.org/01f4k3b46', 'en', 1, 'https://ror.org/01f4k3b46 China Electronic Product Reliability and Environmental Test Institute å·„äøšå’Œäæ”ęÆåŒ–éƒØē¬¬äŗ”ē”µå­ē ”ē©¶ę‰€'),
(56234, 'https://ror.org/01f67ew21', 'no_lang_code', 1, 'https://ror.org/01f67ew21 Hendrix Genetics (Netherlands)'),
(56235, 'https://ror.org/01f7h5955', 'de', 1, 'https://ror.org/01f7h5955 Allgemeine Berufsschule Zürich'),
(56236, 'https://ror.org/01f827628', 'no_lang_code', 1, 'https://ror.org/01f827628 Mood International (Czechia)'),
(56237, 'https://ror.org/01fawrr58', 'no_lang_code', 1, 'https://ror.org/01fawrr58 Selenium Medical (France)'),
(56238, 'https://ror.org/01fcjp983', 'en', 1, 'https://ror.org/01fcjp983 Environmental Investment Centre Keskkonnainvesteeringute Keskus'),
(56239, 'https://ror.org/01fe75p74', 'en', 1, 'https://ror.org/01fe75p74 Chinese Culinary Institute'),
(56240, 'https://ror.org/01ffpma77', 'en', 1, 'https://ror.org/01ffpma77 Stop! Children''s Cancer of Palm Beach County'),
(56241, 'https://ror.org/01fgq2q09', 'cs', 1, 'https://ror.org/01fgq2q09 MěstskĆ© lesy Doksy'),
(56242, 'https://ror.org/01fgqjd55', 'no_lang_code', 1, 'https://ror.org/01fgqjd55 Masoma (Czechia)'),
(56243, 'https://ror.org/01fgwy751', 'en', 1, 'https://ror.org/01fgwy751 Arbeitsgemeinschaft der Wissenschaftlichen Medizinischen Fachgesellschaften e.V. Association of the Scientific Medical Societies'),
(56244, 'https://ror.org/01fh9nm31', 'en', 1, 'https://ror.org/01fh9nm31 Center for Ecological Noosphere Studies'),
(56245, 'https://ror.org/01fhw0y06', 'no_lang_code', 1, 'https://ror.org/01fhw0y06 Abbott (India)'),
(56246, 'https://ror.org/01fjwg942', 'no_lang_code', 1, 'https://ror.org/01fjwg942 Ponast (Czechia)'),
(56247, 'https://ror.org/01fpb1t36', 'no_lang_code', 1, 'https://ror.org/01fpb1t36 Blue Ray (Czechia)'),
(56248, 'https://ror.org/01ftnmh36', 'no_lang_code', 1, 'https://ror.org/01ftnmh36 Gretsch-Unitas (Germany)'),
(56249, 'https://ror.org/01fve6x10', 'cs', 1, 'https://ror.org/01fve6x10 Centrum PasivnĆ­ho Domu'),
(56250, 'https://ror.org/01fw5px83', 'no_lang_code', 1, 'https://ror.org/01fw5px83 Sklostroj Turnov (Czechia)'),
(56251, 'https://ror.org/01fwgs137', 'en', 1, 'https://ror.org/01fwgs137 Schweizerischer Ingenieur- und Architektenverein Swiss Society of Engineers and Architects'),
(56252, 'https://ror.org/01fxqdx25', 'en', 1, 'https://ror.org/01fxqdx25 IBM Research - Brazil'),
(56253, 'https://ror.org/01fy1r152', 'no_lang_code', 1, 'https://ror.org/01fy1r152 SociĆ©tĆ© d''Ɖtude de l''Environnement (Switzerland)'),
(56254, 'https://ror.org/01g087661', 'no_lang_code', 1, 'https://ror.org/01g087661 AR2i'),
(56255, 'https://ror.org/01g0h4946', 'en', 1, 'https://ror.org/01g0h4946 Society for Renaissance Studies'),
(56256, 'https://ror.org/01g0hty05', 'no_lang_code', 1, 'https://ror.org/01g0hty05 Interface Politikstudien (Switzerland) Interface Politikstudien Forschung Beratung'),
(56257, 'https://ror.org/01g0s0p65', 'no_lang_code', 1, 'https://ror.org/01g0s0p65 Colosseum (Czechia)'),
(56258, 'https://ror.org/01g152h78', 'no_lang_code', 1, 'https://ror.org/01g152h78 TNS Servis (Czechia)'),
(56259, 'https://ror.org/01g1mjb10', 'fr', 1, 'https://ror.org/01g1mjb10 Cabinet Gastroenterology La Source-Beaulieu'),
(56260, 'https://ror.org/01g1xae87', 'no_lang_code', 1, 'https://ror.org/01g1xae87 KBR (United States)'),
(56261, 'https://ror.org/01g3ety71', 'no_lang_code', 1, 'https://ror.org/01g3ety71 SocioFactor (Czechia)'),
(56262, 'https://ror.org/01g77mv66', 'en', 1, 'https://ror.org/01g77mv66 New York/New Jersey VA Health Care Network'),
(56263, 'https://ror.org/01g7nky19', 'no_lang_code', 1, 'https://ror.org/01g7nky19 E Ink (Taiwan)'),
(56264, 'https://ror.org/01g7pk335', 'en', 1, 'https://ror.org/01g7pk335 Martinez VA Medical Center'),
(56265, 'https://ror.org/01g7zqg94', 'cs', 1, 'https://ror.org/01g7zqg94 OleŔnice Dairy'),
(56266, 'https://ror.org/01g84kr32', 'no_lang_code', 1, 'https://ror.org/01g84kr32 Payot (France)'),
(56267, 'https://ror.org/01gdbxe81', 'en', 1, 'https://ror.org/01gdbxe81 Czech Medical Chamber ČeskĆ” lĆ©kařskĆ” komora'),
(56268, 'https://ror.org/01gg29e32', 'no_lang_code', 1, 'https://ror.org/01gg29e32 System Science Applications (United States)'),
(56269, 'https://ror.org/01gh34y65', 'fr', 1, 'https://ror.org/01gh34y65 Institut et MusƩe Voltaire'),
(56270, 'https://ror.org/01ghhpv55', 'no_lang_code', 1, 'https://ror.org/01ghhpv55 Motran Research (Czechia)'),
(56271, 'https://ror.org/01gk88w52', 'en', 1, 'https://ror.org/01gk88w52 Podiatry Foundation of Pittsburgh'),
(56272, 'https://ror.org/01gq9c873', 'no_lang_code', 1, 'https://ror.org/01gq9c873 Medicel (Switzerland)'),
(56273, 'https://ror.org/01grrhm91', 'fr', 1, 'https://ror.org/01grrhm91 Renatech'),
(56274, 'https://ror.org/01gshs668', 'cs', 1, 'https://ror.org/01gshs668 Český Svaz OchrĆ”ncÅÆ Přírody VlaÅ”im'),
(56275, 'https://ror.org/01gswc231', 'no_lang_code', 1, 'https://ror.org/01gswc231 Synthon (Netherlands)'),
(56276, 'https://ror.org/01gv18538', 'en', 1, 'https://ror.org/01gv18538 Institute of Formulation, Analysis and Quality Control Research'),
(56277, 'https://ror.org/01gvgct71', 'no_lang_code', 1, 'https://ror.org/01gvgct71 RSC Spol (Czechia)'),
(56278, 'https://ror.org/01gwjjy86', 'no_lang_code', 1, 'https://ror.org/01gwjjy86 PRO-BIO (Czechia)'),
(56279, 'https://ror.org/01gzrtw66', 'no_lang_code', 1, 'https://ror.org/01gzrtw66 FEV (France)'),
(56280, 'https://ror.org/01h0swx54', 'en', 1, 'https://ror.org/01h0swx54 Municipality De Malargue'),
(56281, 'https://ror.org/01h2p6e89', 'no_lang_code', 1, 'https://ror.org/01h2p6e89 Scriptorium'),
(56282, 'https://ror.org/01h4ywk72', 'en', 1, 'https://ror.org/01h4ywk72 World Health Organization Regional Office for the Eastern Mediterranean'),
(56283, 'https://ror.org/01h50je44', 'en', 1, 'https://ror.org/01h50je44 Promotional Products Education Foundation'),
(56284, 'https://ror.org/01h5sw314', 'fr', 1, 'https://ror.org/01h5sw314 PrƩparation aux Examens PrƩalables'),
(56285, 'https://ror.org/01h6jr916', 'no_lang_code', 1, 'https://ror.org/01h6jr916 Visolis (United States)'),
(56286, 'https://ror.org/01h724050', 'no_lang_code', 1, 'https://ror.org/01h724050 CI2'),
(56287, 'https://ror.org/01hc0cn07', 'en', 1, 'https://ror.org/01hc0cn07 Stiftelsen Sveriges Sjƶmanshus Swedish Mercantile Marine Foundation'),
(56288, 'https://ror.org/01hc8k527', 'no_lang_code', 1, 'https://ror.org/01hc8k527 Yazaki (United States)'),
(56289, 'https://ror.org/01hckwt34', 'en', 1, 'https://ror.org/01hckwt34 St. Joe Community Foundation'),
(56290, 'https://ror.org/01hffx244', 'no_lang_code', 1, 'https://ror.org/01hffx244 Sitra Suomen itsenƤisyyden juhlarahasto'),
(56291, 'https://ror.org/01hfpy566', 'en', 1, 'https://ror.org/01hfpy566 Institute of Astronomy and Astrophysics, Academia Sinica'),
(56292, 'https://ror.org/01hgwbr42', 'sv', 1, 'https://ror.org/01hgwbr42 LinnƩa och Josef Carlssons Stiftelse'),
(56293, 'https://ror.org/01hkkxq34', 'no_lang_code', 1, 'https://ror.org/01hkkxq34 Sindlar (Czechia)'),
(56294, 'https://ror.org/01hnq0310', 'nl', 1, 'https://ror.org/01hnq0310 Promens Care'),
(56295, 'https://ror.org/01hqeag92', 'de', 1, 'https://ror.org/01hqeag92 ArchƤologischer Dienst des Kantons Bern'),
(56296, 'https://ror.org/01hqrb170', 'no_lang_code', 1, 'https://ror.org/01hqrb170 Synlab Czech (Czechia)'),
(56297, 'https://ror.org/01hrdvm22', 'cs', 1, 'https://ror.org/01hrdvm22 LeoÅ” JanĆ”Äek Foundation, Nadace LeoÅ”e JanĆ”Äka'),
(56298, 'https://ror.org/01ht9nq84', 'no_lang_code', 1, 'https://ror.org/01ht9nq84 Dsd - DostƔl (Czechia)'),
(56299, 'https://ror.org/01hzc1x24', 'no_lang_code', 1, 'https://ror.org/01hzc1x24 Huddy Diamonds (Czechia)'),
(56300, 'https://ror.org/01hzsk060', 'no_lang_code', 1, 'https://ror.org/01hzsk060 Gojo (France)'),
(56301, 'https://ror.org/01j01re85', 'no_lang_code', 1, 'https://ror.org/01j01re85 Prince Medical (France)'),
(56302, 'https://ror.org/01j65xt21', 'en', 1, 'https://ror.org/01j65xt21 Rain Forest Research Institute'),
(56303, 'https://ror.org/01j8jme87', 'no_lang_code', 1, 'https://ror.org/01j8jme87 ASPK'),
(56304, 'https://ror.org/01j9kqj67', 'en', 1, 'https://ror.org/01j9kqj67 Conaris'),
(56305, 'https://ror.org/01jak0h04', 'no_lang_code', 1, 'https://ror.org/01jak0h04 Orlik (Czechia)'),
(56306, 'https://ror.org/01jaw9d22', 'no_lang_code', 1, 'https://ror.org/01jaw9d22 Bellus Health (Switzerland)'),
(56307, 'https://ror.org/01jczg854', 'no_lang_code', 1, 'https://ror.org/01jczg854 Skat Consulting (Switzerland)'),
(56308, 'https://ror.org/01jd40n62', 'en', 1, 'https://ror.org/01jd40n62 Centre de ProcrƩation MƩdicalement AssistƩe Centre for Medically Assisted Procreation'),
(56309, 'https://ror.org/01jfc8691', 'en', 1, 'https://ror.org/01jfc8691 The Wild Ramp'),
(56310, 'https://ror.org/01jhs2k85', 'no_lang_code', 1, 'https://ror.org/01jhs2k85 TVD TechnickÔ Výroba (Czechia)'),
(56311, 'https://ror.org/01jjabs38', 'en', 1, 'https://ror.org/01jjabs38 Scurlock Foundation'),
(56312, 'https://ror.org/01jk97k74', 'no_lang_code', 1, 'https://ror.org/01jk97k74 BASF (China)'),
(56313, 'https://ror.org/01jkyjd96', 'en', 1, 'https://ror.org/01jkyjd96 Hebei Provincial Department of Education ę²³åŒ—ēœę•™č‚²åŽ…'),
(56314, 'https://ror.org/01jm2xz84', 'en', 1, 'https://ror.org/01jm2xz84 Richard M. Schulze Family Foundation'),
(56315, 'https://ror.org/01jq52c81', 'no_lang_code', 1, 'https://ror.org/01jq52c81 ECO Environmental Investments (China)'),
(56316, 'https://ror.org/01jr63883', 'de', 1, 'https://ror.org/01jr63883 INURA Zürich Institut'),
(56317, 'https://ror.org/01jvhre18', 'en', 1, 'https://ror.org/01jvhre18 IndraStra Global'),
(56318, 'https://ror.org/01jxgkt53', 'no_lang_code', 1, 'https://ror.org/01jxgkt53 Slavona (Czechia)'),
(56319, 'https://ror.org/01jxxh642', 'en', 1, 'https://ror.org/01jxxh642 William T Morris Foundation'),
(56320, 'https://ror.org/01jzn1575', 'no_lang_code', 1, 'https://ror.org/01jzn1575 Inekon Group (Czechia)'),
(56321, 'https://ror.org/01k07rn44', 'no_lang_code', 1, 'https://ror.org/01k07rn44 Plasmametal (Czechia)'),
(56322, 'https://ror.org/01k2zv986', 'en', 1, 'https://ror.org/01k2zv986 Triangle Community Foundation'),
(56323, 'https://ror.org/01k8j4p29', 'en', 1, 'https://ror.org/01k8j4p29 Ministry of Economy, Development and Tourism ΄πουργείο ĪŸĪ¹ĪŗĪæĪ½ĪæĪ¼ĪÆĪ±Ļ‚, Ανάπτυξης και Ī¤ĪæĻ…ĻĪ¹ĻƒĪ¼ĪæĻ'),
(56324, 'https://ror.org/01k8mq954', 'en', 1, 'https://ror.org/01k8mq954 Universal Health Care Foundation of Connecticut'),
(56325, 'https://ror.org/01ka4j351', 'en', 1, 'https://ror.org/01ka4j351 Northwest Regional Development Agency'),
(56326, 'https://ror.org/01kcjb027', 'no_lang_code', 1, 'https://ror.org/01kcjb027 Avid (United States)'),
(56327, 'https://ror.org/01kd56x58', 'de', 1, 'https://ror.org/01kd56x58 Kantonsarchäologie des Kantons Zürich'),
(56328, 'https://ror.org/01kj93b22', 'no_lang_code', 1, 'https://ror.org/01kj93b22 Jeku (Czechia)'),
(56329, 'https://ror.org/01kk11s67', 'no_lang_code', 1, 'https://ror.org/01kk11s67 Fosun Pharma (China)'),
(56330, 'https://ror.org/01kk1vy78', 'de', 1, 'https://ror.org/01kk1vy78 Arbeitsstelle Schweiz des RISM, RISM Digital Center Bureau suisse du RISM Ufficio svizzero RISM'),
(56331, 'https://ror.org/01km6z968', 'en', 1, 'https://ror.org/01km6z968 Arcadia'),
(56332, 'https://ror.org/01km9ds98', 'no_lang_code', 1, 'https://ror.org/01km9ds98 Codep (Czechia)'),
(56333, 'https://ror.org/01kmxmj87', 'no_lang_code', 1, 'https://ror.org/01kmxmj87 Brantner Walter (Czechia)'),
(56334, 'https://ror.org/01kq7c949', 'no_lang_code', 1, 'https://ror.org/01kq7c949 Wine cellars KutnĆ” Hora (Czechia)'),
(56335, 'https://ror.org/01kqpfp08', 'no_lang_code', 1, 'https://ror.org/01kqpfp08 Biomedica (Czechia)'),
(56336, 'https://ror.org/01krcaf49', 'no_lang_code', 1, 'https://ror.org/01krcaf49 Kerima (Czechia)'),
(56337, 'https://ror.org/01ksntm04', 'no_lang_code', 1, 'https://ror.org/01ksntm04 Oblikue Consulting (Spain)'),
(56338, 'https://ror.org/01kspqs18', 'no_lang_code', 1, 'https://ror.org/01kspqs18 Medicold (France)'),
(56339, 'https://ror.org/01ksw8755', 'en', 1, 'https://ror.org/01ksw8755 Potts Family Foundation'),
(56340, 'https://ror.org/01ktyn983', 'cs', 1, 'https://ror.org/01ktyn983 Muzeum jihovýchodnĆ­ Moravy ve ZlĆ­ně'),
(56341, 'https://ror.org/01kxgx123', 'en', 1, 'https://ror.org/01kxgx123 Walsall Academy'),
(56342, 'https://ror.org/01kyt4w97', 'no_lang_code', 1, 'https://ror.org/01kyt4w97 NBE Therapeutics (Switzerland)'),
(56343, 'https://ror.org/01kz8dk96', 'en', 1, 'https://ror.org/01kz8dk96 Logansport State Hospital'),
(56344, 'https://ror.org/01kzkqx40', 'no_lang_code', 1, 'https://ror.org/01kzkqx40 Agrostis TrƔvnƭky (Czechia)'),
(56345, 'https://ror.org/01m08fh61', 'no_lang_code', 1, 'https://ror.org/01m08fh61 Help Forest (Czechia)'),
(56346, 'https://ror.org/01m294726', 'en', 1, 'https://ror.org/01m294726 World Health Organization - Zimbabwe'),
(56347, 'https://ror.org/01m41wz24', 'en', 1, 'https://ror.org/01m41wz24 Yamaguchi Endocrine Research Foundation'),
(56348, 'https://ror.org/01m4nmn07', 'no_lang_code', 1, 'https://ror.org/01m4nmn07 Emg ZlĆ­n (Czechia)'),
(56349, 'https://ror.org/01m61nc85', 'en', 1, 'https://ror.org/01m61nc85 Exploration Place'),
(56350, 'https://ror.org/01m6j6z72', 'en', 1, 'https://ror.org/01m6j6z72 Russian Humanitarian Foundation Российский Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ ФонГ'),
(56351, 'https://ror.org/01m7dbh13', 'en', 1, 'https://ror.org/01m7dbh13 Coğrafiya İnstitutu Institute of Geography'),
(56352, 'https://ror.org/01m84dy33', 'en', 1, 'https://ror.org/01m84dy33 WonKwang Health Science University'),
(56353, 'https://ror.org/01makav45', 'no_lang_code', 1, 'https://ror.org/01makav45 AutoCont (Czechia)'),
(56354, 'https://ror.org/01mfhw447', 'en', 1, 'https://ror.org/01mfhw447 1Globe Health Institute'),
(56355, 'https://ror.org/01mfjs476', 'da', 1, 'https://ror.org/01mfjs476 Trigon Fonden'),
(56356, 'https://ror.org/01mjy0s49', 'de', 1, 'https://ror.org/01mjy0s49 Friedrich-Wilhelm-Bessel-Institut Forschungsgesellschaft'),
(56357, 'https://ror.org/01mk9jb73', 'fr', 1, 'https://ror.org/01mk9jb73 Hospital Neuchâtel'),
(56358, 'https://ror.org/01mmqh025', 'no_lang_code', 1, 'https://ror.org/01mmqh025 ADR-AC (Switzerland)'),
(56359, 'https://ror.org/01mpb1315', 'no_lang_code', 1, 'https://ror.org/01mpb1315 Artisys (Czechia)'),
(56360, 'https://ror.org/01ms54191', 'en', 1, 'https://ror.org/01ms54191 Schweizerische Akademie der Pharmazeutische Wissenschaften Swiss Academy of Pharmaceutical Sciences'),
(56361, 'https://ror.org/01mtb8v69', 'en', 1, 'https://ror.org/01mtb8v69 Prayers from Maria'),
(56362, 'https://ror.org/01mv6b823', 'no_lang_code', 1, 'https://ror.org/01mv6b823 HolĆ­k International (Czechia)'),
(56363, 'https://ror.org/01mvxm016', 'no_lang_code', 1, 'https://ror.org/01mvxm016 Hottinger Baldwin Messtechnik (Germany)'),
(56364, 'https://ror.org/01mw5kc41', 'no_lang_code', 1, 'https://ror.org/01mw5kc41 Hanka Mochov (Czechia)'),
(56365, 'https://ror.org/01mwf3284', 'no_lang_code', 1, 'https://ror.org/01mwf3284 FaF Top-Color (Czechia)'),
(56366, 'https://ror.org/01my2h087', 'en', 1, 'https://ror.org/01my2h087 Scaife Foundations'),
(56367, 'https://ror.org/01mz2aa07', 'no_lang_code', 1, 'https://ror.org/01mz2aa07 Kabelovna Kabex (Czechia)'),
(56368, 'https://ror.org/01mz6aw81', 'no_lang_code', 1, 'https://ror.org/01mz6aw81 E Ink (South Korea)'),
(56369, 'https://ror.org/01mzdh008', 'no_lang_code', 1, 'https://ror.org/01mzdh008 Equiservices Publishing (United States)'),
(56370, 'https://ror.org/01n0pr454', 'no_lang_code', 1, 'https://ror.org/01n0pr454 Scimetrica (Switzerland)'),
(56371, 'https://ror.org/01n1pt995', 'sv', 1, 'https://ror.org/01n1pt995 Stiftelsen Kronprinsessan Margaretas ArbetsnƤmnd fƶr Synskadade'),
(56372, 'https://ror.org/01n6t9x28', 'no_lang_code', 1, 'https://ror.org/01n6t9x28 UCB Pharma (France)'),
(56373, 'https://ror.org/01n85sk92', 'no_lang_code', 1, 'https://ror.org/01n85sk92 Stavoprojekta (Czechia)'),
(56374, 'https://ror.org/01nbasn20', 'en', 1, 'https://ror.org/01nbasn20 Presbyterian Health Foundation'),
(56375, 'https://ror.org/01nd4pb60', 'en', 1, 'https://ror.org/01nd4pb60 Kanagawa Environmental Research Center ē„žå„ˆå·ēœŒē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(56376, 'https://ror.org/01ndypd13', 'no_lang_code', 1, 'https://ror.org/01ndypd13 NanoTrade (Czechia)'),
(56377, 'https://ror.org/01ne55s87', 'no_lang_code', 1, 'https://ror.org/01ne55s87 SklÔřský Ústav Hradec KrĆ”lovĆ© (Czechia)'),
(56378, 'https://ror.org/01nf9fw76', 'no_lang_code', 1, 'https://ror.org/01nf9fw76 AFRY (Czechia)'),
(56379, 'https://ror.org/01njzmh10', 'no_lang_code', 1, 'https://ror.org/01njzmh10 AG Info (Czechia)'),
(56380, 'https://ror.org/01nk16n48', 'en', 1, 'https://ror.org/01nk16n48 Azm & Saade Association'),
(56381, 'https://ror.org/01nkde212', 'no_lang_code', 1, 'https://ror.org/01nkde212 Pardam (Czechia)'),
(56382, 'https://ror.org/01nmsj266', 'en', 1, 'https://ror.org/01nmsj266 Pacific Alzheimer Research Foundation'),
(56383, 'https://ror.org/01nn1pw54', 'no_lang_code', 1, 'https://ror.org/01nn1pw54 Addgene'),
(56384, 'https://ror.org/01nn8a447', 'en', 1, 'https://ror.org/01nn8a447 New Jersey State Office of the Governor'),
(56385, 'https://ror.org/01nqp5d86', 'no_lang_code', 1, 'https://ror.org/01nqp5d86 RD Rýmařov (Czechia)'),
(56386, 'https://ror.org/01nr0r658', 'de', 1, 'https://ror.org/01nr0r658 Vorarlberg Museum'),
(56387, 'https://ror.org/01ns2nc58', 'no_lang_code', 1, 'https://ror.org/01ns2nc58 BENZ-HMB CZECH (Czechia)'),
(56388, 'https://ror.org/01ntbg722', 'en', 1, 'https://ror.org/01ntbg722 Pittsburgh Child Guidance Foundation'),
(56389, 'https://ror.org/01nw9t679', 'en', 1, 'https://ror.org/01nw9t679 Horn Canna Farm'),
(56390, 'https://ror.org/01nxvt824', 'de', 1, 'https://ror.org/01nxvt824 Museum zu Allerheiligen'),
(56391, 'https://ror.org/01nyg7313', 'en', 1, 'https://ror.org/01nyg7313 Institute of Medicinal Molecular Design åŒ»č–¬åˆ†å­čØ­čØˆē ”ē©¶ę‰€'),
(56392, 'https://ror.org/01nzca339', 'en', 1, 'https://ror.org/01nzca339 Fondation Pierre du Bois Pierre du Bois Foundation'),
(56393, 'https://ror.org/01p1h7798', 'no_lang_code', 1, 'https://ror.org/01p1h7798 Harry Saul Minnow Farm (United States)'),
(56394, 'https://ror.org/01p1t0k52', 'no_lang_code', 1, 'https://ror.org/01p1t0k52 Novo Nordisk (Switzerland)'),
(56395, 'https://ror.org/01p5m7j86', 'no_lang_code', 1, 'https://ror.org/01p5m7j86 Quadient (United Kingdom)'),
(56396, 'https://ror.org/01p67ns08', 'no_lang_code', 1, 'https://ror.org/01p67ns08 Výrobně ObchodnĆ­ Družstvo Zdislavice (Czechia)'),
(56397, 'https://ror.org/01p9w4124', 'no_lang_code', 1, 'https://ror.org/01p9w4124 Milacron (United States)'),
(56398, 'https://ror.org/01pbm8h26', 'no_lang_code', 1, 'https://ror.org/01pbm8h26 ClearSign Combustion (United States)'),
(56399, 'https://ror.org/01pe2nj10', 'no_lang_code', 1, 'https://ror.org/01pe2nj10 Dai-ichi Life Insurance (United States)'),
(56400, 'https://ror.org/01pe6xq34', 'en', 1, 'https://ror.org/01pe6xq34 Joseph Drown Foundation'),
(56401, 'https://ror.org/01pfc0902', 'no_lang_code', 1, 'https://ror.org/01pfc0902 Nyklƭček (Czechia)'),
(56402, 'https://ror.org/01pg81m90', 'en', 1, 'https://ror.org/01pg81m90 Robert and Janice McNair Foundation'),
(56403, 'https://ror.org/01pg8d938', 'no_lang_code', 1, 'https://ror.org/01pg8d938 X Therma'),
(56404, 'https://ror.org/01ph4hz96', 'fr', 1, 'https://ror.org/01ph4hz96 Institut Technique de l''Aviculture'),
(56405, 'https://ror.org/01pjqre40', 'no_lang_code', 1, 'https://ror.org/01pjqre40 Illuminate Group (Australia)'),
(56406, 'https://ror.org/01pm3bs44', 'no_lang_code', 1, 'https://ror.org/01pm3bs44 Mechanical Design (Czechia)'),
(56407, 'https://ror.org/01ppth096', 'en', 1, 'https://ror.org/01ppth096 Opportunity Link'),
(56408, 'https://ror.org/01psvhy06', 'no_lang_code', 1, 'https://ror.org/01psvhy06 AG COM (Czechia)'),
(56409, 'https://ror.org/01pvt8a36', 'en', 1, 'https://ror.org/01pvt8a36 Experimental Station'),
(56410, 'https://ror.org/01pz9tv63', 'en', 1, 'https://ror.org/01pz9tv63 A*STAR Joint Council Office'),
(56411, 'https://ror.org/01q1tcv22', 'en', 1, 'https://ror.org/01q1tcv22 Centre for Higher Education Centrum für Hochschulentwicklung'),
(56412, 'https://ror.org/01q216d88', 'no_lang_code', 1, 'https://ror.org/01q216d88 Phonexia (Czechia)'),
(56413, 'https://ror.org/01q4wy056', 'en', 1, 'https://ror.org/01q4wy056 Sasakawa Memorial Health Foundation ē¬¹å·čØ˜åæµäæå„å”åŠ›č²”å›£'),
(56414, 'https://ror.org/01q61bm94', 'en', 1, 'https://ror.org/01q61bm94 Korea Institute of Maritime and Fisheries Technology'),
(56415, 'https://ror.org/01q9t2q68', 'cs', 1, 'https://ror.org/01q9t2q68 ČeskÔ Unie Sportu'),
(56416, 'https://ror.org/01qa0ew63', 'no_lang_code', 1, 'https://ror.org/01qa0ew63 AbbVie (Netherlands)'),
(56417, 'https://ror.org/01qasqf38', 'no_lang_code', 1, 'https://ror.org/01qasqf38 Nypro (Ireland)'),
(56418, 'https://ror.org/01qdk2c93', 'no_lang_code', 1, 'https://ror.org/01qdk2c93 G Mar Plus (Czechia)'),
(56419, 'https://ror.org/01qe64w73', 'fi', 1, 'https://ror.org/01qe64w73 Finnish Brain Foundation Suomen AivosƤƤtiƶ'),
(56420, 'https://ror.org/01qf8tz10', 'de', 1, 'https://ror.org/01qf8tz10 Kollegium Spiritus Sanctus Brig'),
(56421, 'https://ror.org/01qfgqn02', 'no_lang_code', 1, 'https://ror.org/01qfgqn02 Gascontrol Plast (Czechia)'),
(56422, 'https://ror.org/01qfzbz52', 'en', 1, 'https://ror.org/01qfzbz52 College of the Muscogee Nation'),
(56423, 'https://ror.org/01qh4pm19', 'en', 1, 'https://ror.org/01qh4pm19 Korea Meteorological Institute'),
(56424, 'https://ror.org/01qk03z44', 'no_lang_code', 1, 'https://ror.org/01qk03z44 Lescus Cetkovice (Czechia)'),
(56425, 'https://ror.org/01qp9b498', 'en', 1, 'https://ror.org/01qp9b498 Dominion Astrophysical Observatory'),
(56426, 'https://ror.org/01qr42c13', 'no_lang_code', 1, 'https://ror.org/01qr42c13 CAD Instruments (France)'),
(56427, 'https://ror.org/01qtj8126', 'la', 1, 'https://ror.org/01qtj8126 Foederatio Medicorum Helveticorum'),
(56428, 'https://ror.org/01qv89346', 'cs', 1, 'https://ror.org/01qv89346 SpolečnĆ” Vize'),
(56429, 'https://ror.org/01qwdc951', 'no_lang_code', 1, 'https://ror.org/01qwdc951 Bayer (Switzerland)'),
(56430, 'https://ror.org/01qzj8a75', 'en', 1, 'https://ror.org/01qzj8a75 GlyTech ē³–éŽ–å·„å­¦ē ”ē©¶ę‰€ć«'),
(56431, 'https://ror.org/01r0w2t07', 'de', 1, 'https://ror.org/01r0w2t07 Mandat International'),
(56432, 'https://ror.org/01r2g4c66', 'en', 1, 'https://ror.org/01r2g4c66 Finnish Foundation of Veterinary Research Suomen elƤinlƤƤketieteen sƤƤtiƶ'),
(56433, 'https://ror.org/01r2m8t59', 'en', 1, 'https://ror.org/01r2m8t59 State Veterinary Administration'),
(56434, 'https://ror.org/01r42z565', 'en', 1, 'https://ror.org/01r42z565 Computational Materials Science Initiative'),
(56435, 'https://ror.org/01r4hwz76', 'en', 1, 'https://ror.org/01r4hwz76 Fƶldtani Ʃs GeokƩmiai IntƩzet Institute for Geological and Geochemical Research'),
(56436, 'https://ror.org/01r8xv865', 'sv', 1, 'https://ror.org/01r8xv865 Stiftelsen Professor Lars Erik Gelins Minnesfond'),
(56437, 'https://ror.org/01rdc9p22', 'en', 1, 'https://ror.org/01rdc9p22 Shepherd Foundation'),
(56438, 'https://ror.org/01rejfk89', 'en', 1, 'https://ror.org/01rejfk89 Institute for Biotechnology and Medicine Industry'),
(56439, 'https://ror.org/01reter38', 'no_lang_code', 1, 'https://ror.org/01reter38 VKV Praha (Czechia)'),
(56440, 'https://ror.org/01rgj1337', 'no_lang_code', 1, 'https://ror.org/01rgj1337 BIC (United States)'),
(56441, 'https://ror.org/01rhy1775', 'no_lang_code', 1, 'https://ror.org/01rhy1775 Aveni (France)'),
(56442, 'https://ror.org/01rjj8a34', 'en', 1, 'https://ror.org/01rjj8a34 Bruce W. Carter VA Medical Center'),
(56443, 'https://ror.org/01rjqn722', 'en', 1, 'https://ror.org/01rjqn722 Ivey Foundation'),
(56444, 'https://ror.org/01rjx0g69', 'cs', 1, 'https://ror.org/01rjx0g69 ZemědělskĆ© Družstvo JesenĆ­k'),
(56445, 'https://ror.org/01rkjqk76', 'en', 1, 'https://ror.org/01rkjqk76 Local Food Hub'),
(56446, 'https://ror.org/01rkrma98', 'en', 1, 'https://ror.org/01rkrma98 Virtu Public Affairs'),
(56447, 'https://ror.org/01rmhx355', 'en', 1, 'https://ror.org/01rmhx355 Muscular Dystrophy Ireland'),
(56448, 'https://ror.org/01rmsm893', 'no_lang_code', 1, 'https://ror.org/01rmsm893 MJ Group (India)'),
(56449, 'https://ror.org/01rpma152', 'no_lang_code', 1, 'https://ror.org/01rpma152 Colorlak (Czechia)'),
(56450, 'https://ror.org/01rq3me18', 'no_lang_code', 1, 'https://ror.org/01rq3me18 Polycase (Czechia)'),
(56451, 'https://ror.org/01rqhg698', 'no_lang_code', 1, 'https://ror.org/01rqhg698 Europastry (Spain)'),
(56452, 'https://ror.org/01rrsd035', 'en', 1, 'https://ror.org/01rrsd035 Springboard Foundation'),
(56453, 'https://ror.org/01rrva872', 'en', 1, 'https://ror.org/01rrva872 Central Institute for Supervising and Testing in Agriculture ÚstřednĆ­ kontrolnĆ­ a zkuÅ”ebnĆ­ Ćŗstav zemědělský'),
(56454, 'https://ror.org/01rsgv203', 'en', 1, 'https://ror.org/01rsgv203 Scan Design Foundation'),
(56455, 'https://ror.org/01rvrhf27', 'no_lang_code', 1, 'https://ror.org/01rvrhf27 Photonic Research Systems (United Kingdom)'),
(56456, 'https://ror.org/01rwf0y22', 'no_lang_code', 1, 'https://ror.org/01rwf0y22 Krill (Czechia)'),
(56457, 'https://ror.org/01ry0hm85', 'no_lang_code', 1, 'https://ror.org/01ry0hm85 RealNetworks (United States)'),
(56458, 'https://ror.org/01ry8n211', 'no_lang_code', 1, 'https://ror.org/01ry8n211 CNH Industrial (Czechia)'),
(56459, 'https://ror.org/01rybzk66', 'en', 1, 'https://ror.org/01rybzk66 VA Capitol Health Care Network'),
(56460, 'https://ror.org/01ryjjz47', 'en', 1, 'https://ror.org/01ryjjz47 Siberian Institute of Plant Physiology and Biochemistry Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии Šø биохимии растений Š”Šž Š ŠŠ'),
(56461, 'https://ror.org/01s019j29', 'en', 1, 'https://ror.org/01s019j29 Prime Minister''s Office Finland StatsrƄdets Kansli Valtioneuvoston Kanslia'),
(56462, 'https://ror.org/01s0yrf11', 'en', 1, 'https://ror.org/01s0yrf11 Cheorwon Plasma Research Institute'),
(56463, 'https://ror.org/01s1asf08', 'no_lang_code', 1, 'https://ror.org/01s1asf08 Agrokomplex Ohře (Czechia)'),
(56464, 'https://ror.org/01s1v1s13', 'no_lang_code', 1, 'https://ror.org/01s1v1s13 Kuraray (Germany)'),
(56465, 'https://ror.org/01s307r42', 'no_lang_code', 1, 'https://ror.org/01s307r42 Drolshammer Strategy and Law (Switzerland)'),
(56466, 'https://ror.org/01s4ptg67', 'no_lang_code', 1, 'https://ror.org/01s4ptg67 Clasic (Czechia)'),
(56467, 'https://ror.org/01s5pxv91', 'no_lang_code', 1, 'https://ror.org/01s5pxv91 Ekohydrogeo Žitný (Czechia)'),
(56468, 'https://ror.org/01s776747', 'de', 1, 'https://ror.org/01s776747 KVB Institut für Konstruktion und Verbundbauweisen'),
(56469, 'https://ror.org/01s8mna38', 'de', 1, 'https://ror.org/01s8mna38 Technische Fachschule Bern'),
(56470, 'https://ror.org/01s8sge84', 'no_lang_code', 1, 'https://ror.org/01s8sge84 Institut Esthederm (France)'),
(56471, 'https://ror.org/01sc29z88', 'no_lang_code', 1, 'https://ror.org/01sc29z88 SLB MƩdical (France)'),
(56472, 'https://ror.org/01sct5s94', 'en', 1, 'https://ror.org/01sct5s94 Basel Institute on Governance'),
(56473, 'https://ror.org/01sddvn57', 'no_lang_code', 1, 'https://ror.org/01sddvn57 Elektro-System-Technik (Slovakia)'),
(56474, 'https://ror.org/01sfj0e28', 'en', 1, 'https://ror.org/01sfj0e28 Live Well Colorado'),
(56475, 'https://ror.org/01sh91764', 'en', 1, 'https://ror.org/01sh91764 R Baby Foundation'),
(56476, 'https://ror.org/01sj1p486', 'en', 1, 'https://ror.org/01sj1p486 Kerala Institute for Research, Training and Development Studies of Scheduled Castes and Tribes'),
(56477, 'https://ror.org/01sja4271', 'no_lang_code', 1, 'https://ror.org/01sja4271 Vischer (Switzerland)'),
(56478, 'https://ror.org/01sjfkd19', 'no_lang_code', 1, 'https://ror.org/01sjfkd19 EG Expert (Czechia)'),
(56479, 'https://ror.org/01sjh9112', 'en', 1, 'https://ror.org/01sjh9112 ErdƩszeti TudomƔnyos IntƩzet Forest Research Institute'),
(56480, 'https://ror.org/01sjvcd08', 'sv', 1, 'https://ror.org/01sjvcd08 Stiftelsen Solstickan'),
(56481, 'https://ror.org/01sqj1z22', 'no_lang_code', 1, 'https://ror.org/01sqj1z22 Pi (United Kingdom)'),
(56482, 'https://ror.org/01sqscf14', 'en', 1, 'https://ror.org/01sqscf14 William Caspar Graustein Memorial Fund'),
(56483, 'https://ror.org/01sqsqt89', 'no_lang_code', 1, 'https://ror.org/01sqsqt89 Cottage Systems (United States)'),
(56484, 'https://ror.org/01ss91v48', 'no_lang_code', 1, 'https://ror.org/01ss91v48 Com-Sys Trade (Czechia)'),
(56485, 'https://ror.org/01ssrp339', 'en', 1, 'https://ror.org/01ssrp339 VeDeCoM Institute'),
(56486, 'https://ror.org/01stqh938', 'no_lang_code', 1, 'https://ror.org/01stqh938 Eko-Kom (Czechia)'),
(56487, 'https://ror.org/01sy9dm60', 'no_lang_code', 1, 'https://ror.org/01sy9dm60 Embody (France)'),
(56488, 'https://ror.org/01t0sgr89', 'no_lang_code', 1, 'https://ror.org/01t0sgr89 Chemcosport (Czechia)'),
(56489, 'https://ror.org/01t305n31', 'no_lang_code', 1, 'https://ror.org/01t305n31 Texas Instruments (India)'),
(56490, 'https://ror.org/01t58v577', 'en', 1, 'https://ror.org/01t58v577 Thomas Foundation'),
(56491, 'https://ror.org/01t5xrf37', 'no_lang_code', 1, 'https://ror.org/01t5xrf37 Sapphire Research & Electronics (United Kingdom)'),
(56492, 'https://ror.org/01t6wgp30', 'fr', 1, 'https://ror.org/01t6wgp30 Affidea'),
(56493, 'https://ror.org/01t6xt429', 'no_lang_code', 1, 'https://ror.org/01t6xt429 Porfix (Czechia)'),
(56494, 'https://ror.org/01t7qjd50', 'en', 1, 'https://ror.org/01t7qjd50 L.V. Gromashevsky Institute of Epidemiology and Infectious Diseases of the National Academy of Medical Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ епіГеміології та інфекційних хвороб Š›.Š’. Š“Ń€Š¾Š¼Š°ŃˆŠµŠ²ŃŃŒŠ½Š¾Š³Š¾ŠŠŠœŠ України'),
(56495, 'https://ror.org/01t8cv576', 'no_lang_code', 1, 'https://ror.org/01t8cv576 Dr. Reddy''s Laboratories (Switzerland)'),
(56496, 'https://ror.org/01t9ygb95', 'no_lang_code', 1, 'https://ror.org/01t9ygb95 NMS Market Research (Czechia)'),
(56497, 'https://ror.org/01t9z0h93', 'no_lang_code', 1, 'https://ror.org/01t9z0h93 Geodézie ČS (Czechia)'),
(56498, 'https://ror.org/01tc3c489', 'no_lang_code', 1, 'https://ror.org/01tc3c489 PAC (France)'),
(56499, 'https://ror.org/01tcbbe23', 'no_lang_code', 1, 'https://ror.org/01tcbbe23 Organa (Czechia)'),
(56500, 'https://ror.org/01tccxd76', 'no_lang_code', 1, 'https://ror.org/01tccxd76 AGCO (United Kingdom)'),
(56501, 'https://ror.org/01te5dc44', 'en', 1, 'https://ror.org/01te5dc44 Belgorod State University of Arts and Culture БелгороГский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(56502, 'https://ror.org/01teb0938', 'no_lang_code', 1, 'https://ror.org/01teb0938 Iscare I.V.F KlinickƩ Centrum ISCARE'),
(56503, 'https://ror.org/01tfx4p51', 'en', 1, 'https://ror.org/01tfx4p51 Institute of Surgery named after A. V. Vishnevskogo'),
(56504, 'https://ror.org/01tfxc804', 'no_lang_code', 1, 'https://ror.org/01tfxc804 Thalgo (France)'),
(56505, 'https://ror.org/01tgswh16', 'en', 1, 'https://ror.org/01tgswh16 Poultry CRC'),
(56506, 'https://ror.org/01thz9g52', 'en', 1, 'https://ror.org/01thz9g52 Sosland Foundation'),
(56507, 'https://ror.org/01tk0cw08', 'en', 1, 'https://ror.org/01tk0cw08 Central Research Institute for Jute and Allied Fibres'),
(56508, 'https://ror.org/01tm2qj70', 'en', 1, 'https://ror.org/01tm2qj70 St. Petersburg Institute of Bioregulation and Gerontology ŠšŠ›Š˜ŠŠ˜ŠšŠ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢Š Š‘Š˜ŠžŠ Š•Š“Š£Š›ŠÆŠ¦Š˜Š˜ И Š“Š•Š ŠžŠŠ¢ŠžŠ›ŠžŠ“Š˜Š˜'),
(56509, 'https://ror.org/01tm9ja22', 'sv', 1, 'https://ror.org/01tm9ja22 Neurofƶrbundet'),
(56510, 'https://ror.org/01tmqyy34', 'no_lang_code', 1, 'https://ror.org/01tmqyy34 ZaklƔdƔnƭ Staveb (Czechia)'),
(56511, 'https://ror.org/01tnj0473', 'no_lang_code', 1, 'https://ror.org/01tnj0473 Caterpillar (Switzerland)'),
(56512, 'https://ror.org/01tp4m681', 'no_lang_code', 1, 'https://ror.org/01tp4m681 TÜV Nord (Czechia)'),
(56513, 'https://ror.org/01tphyy47', 'en', 1, 'https://ror.org/01tphyy47 Gagarin Research and Test Cosmonaut Training Center Центр поГготовки космонавтов имени Š®. А. Гагарина'),
(56514, 'https://ror.org/01tpvdq80', 'en', 1, 'https://ror.org/01tpvdq80 Institute of Physics, Academia Sinica 中央研究院物理研究所'),
(56515, 'https://ror.org/01tra1r17', 'no_lang_code', 1, 'https://ror.org/01tra1r17 American Solar (United States)'),
(56516, 'https://ror.org/01ttd1h48', 'no_lang_code', 1, 'https://ror.org/01ttd1h48 LesoŔkolky (Czechia)'),
(56517, 'https://ror.org/01tx9js75', 'en', 1, 'https://ror.org/01tx9js75 Groundwater Center Grundwasser-Zentrum'),
(56518, 'https://ror.org/01txrxw72', 'no_lang_code', 1, 'https://ror.org/01txrxw72 Sanofi (Switzerland)'),
(56519, 'https://ror.org/01tztjf78', 'no_lang_code', 1, 'https://ror.org/01tztjf78 Indet Safety Systems (Czechia)'),
(56520, 'https://ror.org/01v0qv381', 'en', 1, 'https://ror.org/01v0qv381 Southeastern Brain Tumor Foundation'),
(56521, 'https://ror.org/01v0srp85', 'en', 1, 'https://ror.org/01v0srp85 Tropical Forest Research Institute'),
(56522, 'https://ror.org/01v2c2791', 'en', 1, 'https://ror.org/01v2c2791 Singapore Institute of Technology'),
(56523, 'https://ror.org/01v4s0f07', 'en', 1, 'https://ror.org/01v4s0f07 Variable Energy Cyclotron Centre'),
(56524, 'https://ror.org/01v5z9j59', 'en', 1, 'https://ror.org/01v5z9j59 Vascular Birthmarks Foundation'),
(56525, 'https://ror.org/01v6a8g28', 'en', 1, 'https://ror.org/01v6a8g28 Czech Moravian Commodity Exchange Kladno ČeskomoravskÔ komoditní burza Kladno'),
(56526, 'https://ror.org/01v6fb724', 'it', 1, 'https://ror.org/01v6fb724 Repubblica e Cantone Ticino'),
(56527, 'https://ror.org/01v77xw68', 'en', 1, 'https://ror.org/01v77xw68 Virginia-Carolinas Peanut Promotions');
INSERT INTO `rors` VALUES
(56528, 'https://ror.org/01v9ehc48', 'no_lang_code', 1, 'https://ror.org/01v9ehc48 ADA AkustickĆ” Emise (Czechia)'),
(56529, 'https://ror.org/01vacyq18', 'no_lang_code', 1, 'https://ror.org/01vacyq18 PZP Komplet (Czechia)'),
(56530, 'https://ror.org/01vag2q21', 'de', 1, 'https://ror.org/01vag2q21 Forel Klinik'),
(56531, 'https://ror.org/01vaht437', 'en', 1, 'https://ror.org/01vaht437 Korean Society of Radiology'),
(56532, 'https://ror.org/01vap4769', 'no_lang_code', 1, 'https://ror.org/01vap4769 Mintaka Fondation Pour la Recherche Medicale Mintaka Foundation for Medical Research'),
(56533, 'https://ror.org/01vd5v507', 'en', 1, 'https://ror.org/01vd5v507 Rob and Bessie Welder Wildlife Foundation'),
(56534, 'https://ror.org/01vddpb46', 'no_lang_code', 1, 'https://ror.org/01vddpb46 Winetech (South Africa)'),
(56535, 'https://ror.org/01vf7qd54', 'no_lang_code', 1, 'https://ror.org/01vf7qd54 L.K. Engineering (Czechia)'),
(56536, 'https://ror.org/01vf7th45', 'no_lang_code', 1, 'https://ror.org/01vf7th45 Nortech (Czechia)'),
(56537, 'https://ror.org/01vgh8b31', 'en', 1, 'https://ror.org/01vgh8b31 Alpinia Institute'),
(56538, 'https://ror.org/01vgqcc30', 'en', 1, 'https://ror.org/01vgqcc30 Abbey of the Holy Trinity'),
(56539, 'https://ror.org/01vgs6512', 'no_lang_code', 1, 'https://ror.org/01vgs6512 Semo (Czechia)'),
(56540, 'https://ror.org/01vhsvw18', 'no_lang_code', 1, 'https://ror.org/01vhsvw18 Artinel (Czechia)'),
(56541, 'https://ror.org/01vm4bk04', 'no_lang_code', 1, 'https://ror.org/01vm4bk04 SMT (India)'),
(56542, 'https://ror.org/01vmb7766', 'en', 1, 'https://ror.org/01vmb7766 Laboratoire Phytoceutic'),
(56543, 'https://ror.org/01vp4kx90', 'no_lang_code', 1, 'https://ror.org/01vp4kx90 Pitney Bowes (France)'),
(56544, 'https://ror.org/01vqza407', 'no_lang_code', 1, 'https://ror.org/01vqza407 Phoenix Air (Czechia)'),
(56545, 'https://ror.org/01vrx7006', 'no_lang_code', 1, 'https://ror.org/01vrx7006 KlatovskĆ© RybÔřstvĆ­ (Czechia)'),
(56546, 'https://ror.org/01vtfdn94', 'no_lang_code', 1, 'https://ror.org/01vtfdn94 Bentglass (Czechia)'),
(56547, 'https://ror.org/01vv4bg03', 'no_lang_code', 1, 'https://ror.org/01vv4bg03 VodnĆ­ Cesty (Czechia)'),
(56548, 'https://ror.org/01vxsq455', 'no_lang_code', 1, 'https://ror.org/01vxsq455 Quadient (Netherlands)'),
(56549, 'https://ror.org/01w0yqe56', 'en', 1, 'https://ror.org/01w0yqe56 Human Organ Project'),
(56550, 'https://ror.org/01w2f0g43', 'en', 1, 'https://ror.org/01w2f0g43 Sunbeam Foundation'),
(56551, 'https://ror.org/01w2v6t15', 'cs', 1, 'https://ror.org/01w2v6t15 SpektroskopickĆ” Společnost Jana Marka Marci'),
(56552, 'https://ror.org/01w3da479', 'no_lang_code', 1, 'https://ror.org/01w3da479 Asistenčnƭ Centrum (Czechia)'),
(56553, 'https://ror.org/01w3ear51', 'en', 1, 'https://ror.org/01w3ear51 Woods Fund of Chicago'),
(56554, 'https://ror.org/01w3m1m52', 'de', 1, 'https://ror.org/01w3m1m52 Departementssekretariat Schul- und Sportdepartement'),
(56555, 'https://ror.org/01w4ggt72', 'no_lang_code', 1, 'https://ror.org/01w4ggt72 Boskalis (Netherlands) Koninklijke Boskalis Westminster N.V.'),
(56556, 'https://ror.org/01w4jyd92', 'de', 1, 'https://ror.org/01w4jyd92 Hartmann Dreyer'),
(56557, 'https://ror.org/01w4md275', 'en', 1, 'https://ror.org/01w4md275 Asociace hotelů a restaurací České republiky Czech Association of Hotels and Restaurants'),
(56558, 'https://ror.org/01w5cr084', 'no_lang_code', 1, 'https://ror.org/01w5cr084 Inflex (Czechia)'),
(56559, 'https://ror.org/01w5qzb22', 'de', 1, 'https://ror.org/01w5qzb22 NZZ am Sonntag'),
(56560, 'https://ror.org/01w6ccy36', 'no_lang_code', 1, 'https://ror.org/01w6ccy36 AZS 98 (Czechia)'),
(56561, 'https://ror.org/01wa1cb54', 'no_lang_code', 1, 'https://ror.org/01wa1cb54 TESCO SW (Czechia)'),
(56562, 'https://ror.org/01wa9sg17', 'no_lang_code', 1, 'https://ror.org/01wa9sg17 IQLANDIA'),
(56563, 'https://ror.org/01waqh020', 'no_lang_code', 1, 'https://ror.org/01waqh020 Deltamedics (France)'),
(56564, 'https://ror.org/01wc3vt02', 'en', 1, 'https://ror.org/01wc3vt02 Jung Foundation for Science and Research Jung-Stiftung für Wissenschaft und Forschung'),
(56565, 'https://ror.org/01wdvpr49', 'no_lang_code', 1, 'https://ror.org/01wdvpr49 Skoda Machine Tool (Czechia)'),
(56566, 'https://ror.org/01wfvz044', 'en', 1, 'https://ror.org/01wfvz044 Winds of Peace Foundation'),
(56567, 'https://ror.org/01wha1936', 'en', 1, 'https://ror.org/01wha1936 Austen BioInnovation Institute in Akron'),
(56568, 'https://ror.org/01wjt3437', 'no_lang_code', 1, 'https://ror.org/01wjt3437 Federal Mogul (Belgium)'),
(56569, 'https://ror.org/01wkabt06', 'no_lang_code', 1, 'https://ror.org/01wkabt06 Lammb Systems (Czechia)'),
(56570, 'https://ror.org/01wrq2g34', 'no_lang_code', 1, 'https://ror.org/01wrq2g34 DvořÔk (Czechia)'),
(56571, 'https://ror.org/01wx7v544', 'no_lang_code', 1, 'https://ror.org/01wx7v544 Tatsuno Europe (Czechia)'),
(56572, 'https://ror.org/01wyt3891', 'en', 1, 'https://ror.org/01wyt3891 State and Federal Contractors Water Agency'),
(56573, 'https://ror.org/01x0maw51', 'en', 1, 'https://ror.org/01x0maw51 St David''s Medical Foundation'),
(56574, 'https://ror.org/01x0syc85', 'no_lang_code', 1, 'https://ror.org/01x0syc85 Prodeco (Czechia)'),
(56575, 'https://ror.org/01x10fr64', 'en', 1, 'https://ror.org/01x10fr64 Team Sanfilippo Foundation'),
(56576, 'https://ror.org/01x29k385', 'en', 1, 'https://ror.org/01x29k385 Northwell Health Orthopaedic Institute'),
(56577, 'https://ror.org/01x4t9w70', 'no_lang_code', 1, 'https://ror.org/01x4t9w70 Institute Po Zavaryavane (Bulgaria) Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š·Š°Š²Š°Ń€ŃŠ²Š°Š½Šµ'),
(56578, 'https://ror.org/01x63ge73', 'en', 1, 'https://ror.org/01x63ge73 International Union for Pure and Applied Biophysics'),
(56579, 'https://ror.org/01x6zzb23', 'en', 1, 'https://ror.org/01x6zzb23 VA Rocky Mountain Network'),
(56580, 'https://ror.org/01x802g65', 'en', 1, 'https://ror.org/01x802g65 MRC Centre for Regenerative Medicine'),
(56581, 'https://ror.org/01x8yx033', 'no_lang_code', 1, 'https://ror.org/01x8yx033 Regional Museum of K. A. Polanek'),
(56582, 'https://ror.org/01x9abe66', 'cs', 1, 'https://ror.org/01x9abe66 Svaz ChovatelÅÆ OvcĆ­ a Koz'),
(56583, 'https://ror.org/01xa11r83', 'no_lang_code', 1, 'https://ror.org/01xa11r83 Sequenom (United Kingdom)'),
(56584, 'https://ror.org/01xa5j591', 'en', 1, 'https://ror.org/01xa5j591 Sustainable Development Technology Canada Technologies du DƩveloppement Durable du Canada'),
(56585, 'https://ror.org/01xbswg83', 'no_lang_code', 1, 'https://ror.org/01xbswg83 Tea Hawaii (United States)'),
(56586, 'https://ror.org/01xc6q930', 'no_lang_code', 1, 'https://ror.org/01xc6q930 Florida Maxima (United States)'),
(56587, 'https://ror.org/01xfxak12', 'no_lang_code', 1, 'https://ror.org/01xfxak12 Hill Manufacturing (United States)'),
(56588, 'https://ror.org/01xgt0m54', 'de', 1, 'https://ror.org/01xgt0m54 Regionalspital Emmental'),
(56589, 'https://ror.org/01xjdvt46', 'no_lang_code', 1, 'https://ror.org/01xjdvt46 ZVVZ (Czechia)'),
(56590, 'https://ror.org/01xkgje29', 'en', 1, 'https://ror.org/01xkgje29 Helmholtz Moscow Research Institute of Eye Diseases Московский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ глазных болезней им. Š“ŠµŠ»ŃŒŠ¼Š³Š¾Š»ŃŒŃ†Š°'),
(56591, 'https://ror.org/01xkm9f48', 'no_lang_code', 1, 'https://ror.org/01xkm9f48 Retap (Czechia)'),
(56592, 'https://ror.org/01xnshd39', 'en', 1, 'https://ror.org/01xnshd39 Tianjin People''s Government å¤©ę“„åø‚äŗŗę°‘ę”æåŗœ'),
(56593, 'https://ror.org/01xpnt789', 'en', 1, 'https://ror.org/01xpnt789 Czech Society of Biomechanics'),
(56594, 'https://ror.org/01xqxbt36', 'no_lang_code', 1, 'https://ror.org/01xqxbt36 DSM (France)'),
(56595, 'https://ror.org/01xtnj706', 'no_lang_code', 1, 'https://ror.org/01xtnj706 Latitude Engineering (United States)'),
(56596, 'https://ror.org/01xtr4h58', 'no_lang_code', 1, 'https://ror.org/01xtr4h58 MydlÔřka (Czechia)'),
(56597, 'https://ror.org/01xves834', 'no_lang_code', 1, 'https://ror.org/01xves834 IRISNDT (United States)'),
(56598, 'https://ror.org/01xx5km06', 'no_lang_code', 1, 'https://ror.org/01xx5km06 NutriVet (Czechia)'),
(56599, 'https://ror.org/01xxyhd49', 'no_lang_code', 1, 'https://ror.org/01xxyhd49 Hazel Technologies (United States)'),
(56600, 'https://ror.org/01xy5wy39', 'no_lang_code', 1, 'https://ror.org/01xy5wy39 Želivka (Czechia)'),
(56601, 'https://ror.org/01xz6zr49', 'no_lang_code', 1, 'https://ror.org/01xz6zr49 Vamet (Czechia)'),
(56602, 'https://ror.org/01xz9k981', 'en', 1, 'https://ror.org/01xz9k981 National Research Institute of Cultural Heritage źµ­ė¦½ė¬øķ™”ģž¬ģ—°źµ¬ģ†Œ'),
(56603, 'https://ror.org/01xzvwk54', 'es', 1, 'https://ror.org/01xzvwk54 Universidad Latinoamericana'),
(56604, 'https://ror.org/01y0rs066', 'cs', 1, 'https://ror.org/01y0rs066 ZdravotnickÔ ZÔchrannÔ Služba KrÔlovéhradeckého Kraje'),
(56605, 'https://ror.org/01y24f494', 'no_lang_code', 1, 'https://ror.org/01y24f494 Woodward (United States)'),
(56606, 'https://ror.org/01y2cgj18', 'no_lang_code', 1, 'https://ror.org/01y2cgj18 D. Western Therapeutics Institute (Japan)'),
(56607, 'https://ror.org/01y3wh736', 'no_lang_code', 1, 'https://ror.org/01y3wh736 Agenda (Czechia)'),
(56608, 'https://ror.org/01y5dqg31', 'no_lang_code', 1, 'https://ror.org/01y5dqg31 Zeelandia (Czechia)'),
(56609, 'https://ror.org/01y5w6t76', 'en', 1, 'https://ror.org/01y5w6t76 Istituto Trapianti d''Organo e Immunocitologia Organ Transplantation and Immunology Institute'),
(56610, 'https://ror.org/01y7r8c03', 'no_lang_code', 1, 'https://ror.org/01y7r8c03 NaturaServis (Czechia)'),
(56611, 'https://ror.org/01y7tp893', 'no_lang_code', 1, 'https://ror.org/01y7tp893 EGÚ Praha Engineering (Czechia)'),
(56612, 'https://ror.org/01y7wy577', 'no_lang_code', 1, 'https://ror.org/01y7wy577 Rataj (Czechia)'),
(56613, 'https://ror.org/01ya98z16', 'no_lang_code', 1, 'https://ror.org/01ya98z16 ETK KolĆ­n (Czechia)'),
(56614, 'https://ror.org/01yb7w119', 'sv', 1, 'https://ror.org/01yb7w119 Lundbergsstiftelserna'),
(56615, 'https://ror.org/01yd3n286', 'en', 1, 'https://ror.org/01yd3n286 Wildlife Forever'),
(56616, 'https://ror.org/01ydd6106', 'en', 1, 'https://ror.org/01ydd6106 INstrategy'),
(56617, 'https://ror.org/01ydfc370', 'no_lang_code', 1, 'https://ror.org/01ydfc370 Schlumberger (British Virgin Islands)'),
(56618, 'https://ror.org/01yeyd808', 'en', 1, 'https://ror.org/01yeyd808 Life Science Institute'),
(56619, 'https://ror.org/01yg7sq26', 'no_lang_code', 1, 'https://ror.org/01yg7sq26 Koenig & Bauer (Czechia)'),
(56620, 'https://ror.org/01yg8x810', 'no_lang_code', 1, 'https://ror.org/01yg8x810 Holzbecher (Czechia)'),
(56621, 'https://ror.org/01yhceq35', 'no_lang_code', 1, 'https://ror.org/01yhceq35 RybnĆ­kÔřstvĆ­ Pohořelice'),
(56622, 'https://ror.org/01ykng114', 'en', 1, 'https://ror.org/01ykng114 National Science and Technology Medals Foundation'),
(56623, 'https://ror.org/01ymvpb42', 'no_lang_code', 1, 'https://ror.org/01ymvpb42 Honeywell (France)'),
(56624, 'https://ror.org/01yqdmr06', 'no_lang_code', 1, 'https://ror.org/01yqdmr06 Microscan Service (Switzerland)'),
(56625, 'https://ror.org/01yv86q51', 'no_lang_code', 1, 'https://ror.org/01yv86q51 Bio-Rad (France)'),
(56626, 'https://ror.org/01yx6f755', 'cs', 1, 'https://ror.org/01yx6f755 Společnost pro Veřejnou Dopravu'),
(56627, 'https://ror.org/01yxf2e18', 'no_lang_code', 1, 'https://ror.org/01yxf2e18 Honeywell (Netherlands)'),
(56628, 'https://ror.org/01yxxeq63', 'en', 1, 'https://ror.org/01yxxeq63 Centre for Mental Health Care Development Centrum pro rozvoj pĆ©Äe o duÅ”evnĆ­ zdravĆ­'),
(56629, 'https://ror.org/01z2afr14', 'en', 1, 'https://ror.org/01z2afr14 Robert Bowne Foundation'),
(56630, 'https://ror.org/01z38sf41', 'no_lang_code', 1, 'https://ror.org/01z38sf41 AmerisourceBergen (United States)'),
(56631, 'https://ror.org/01z4tdd83', 'no_lang_code', 1, 'https://ror.org/01z4tdd83 Sady (Czechia)'),
(56632, 'https://ror.org/01z5r3y12', 'de', 1, 'https://ror.org/01z5r3y12 Schweizerische Vereinigung für Landesplanung'),
(56633, 'https://ror.org/01z6p8p31', 'en', 1, 'https://ror.org/01z6p8p31 Office of Infectious Diseases'),
(56634, 'https://ror.org/01z72zc80', 'no_lang_code', 1, 'https://ror.org/01z72zc80 Ana Laboratoire'),
(56635, 'https://ror.org/01z78yd74', 'cs', 1, 'https://ror.org/01z78yd74 Medico'),
(56636, 'https://ror.org/01zchyr17', 'no_lang_code', 1, 'https://ror.org/01zchyr17 Chemispol (Czechia)'),
(56637, 'https://ror.org/01zgn9c85', 'no_lang_code', 1, 'https://ror.org/01zgn9c85 Pragis (Czechia)'),
(56638, 'https://ror.org/01zh1d994', 'no_lang_code', 1, 'https://ror.org/01zh1d994 PlzeňskĆ© MěstskĆ© DopravnĆ­ Podniky (Czechia)'),
(56639, 'https://ror.org/01zj3x449', 'no_lang_code', 1, 'https://ror.org/01zj3x449 Chovservis (Czechia)'),
(56640, 'https://ror.org/01zj9vv73', 'no_lang_code', 1, 'https://ror.org/01zj9vv73 Factorio Solutions (Czechia)'),
(56641, 'https://ror.org/01zk2ze43', 'no_lang_code', 1, 'https://ror.org/01zk2ze43 Lukrom (Czechia)'),
(56642, 'https://ror.org/01zk5hm10', 'no_lang_code', 1, 'https://ror.org/01zk5hm10 Siga (Czechia)'),
(56643, 'https://ror.org/01zn7n052', 'cs', 1, 'https://ror.org/01zn7n052 StřednĆ­ PrÅÆmyslovĆ” Å”kola a ObchodnĆ­ Akademie Uherský Brod'),
(56644, 'https://ror.org/01zrfm954', 'en', 1, 'https://ror.org/01zrfm954 Mid Ohio Foodbank'),
(56645, 'https://ror.org/01zrvxg38', 'no_lang_code', 1, 'https://ror.org/01zrvxg38 Hydrostatika (Czechia)'),
(56646, 'https://ror.org/01zsbqm47', 'en', 1, 'https://ror.org/01zsbqm47 Electrotechnical Association of the Czech Republic ČeskomoravskÔ elektrotechnickÔ asociace'),
(56647, 'https://ror.org/01zt9h285', 'en', 1, 'https://ror.org/01zt9h285 Postgraduate Center for Mental Health'),
(56648, 'https://ror.org/01zvbyp59', 'fr', 1, 'https://ror.org/01zvbyp59 Archives Cantonales Vaudoises'),
(56649, 'https://ror.org/01zvtwr46', 'de', 1, 'https://ror.org/01zvtwr46 Medizin Campus Bodensee'),
(56650, 'https://ror.org/01zxt6b74', 'no_lang_code', 1, 'https://ror.org/01zxt6b74 SC & C (Czechia)'),
(56651, 'https://ror.org/01zxw4w85', 'no_lang_code', 1, 'https://ror.org/01zxw4w85 Valmet (Sweden)'),
(56652, 'https://ror.org/01zzv0338', 'en', 1, 'https://ror.org/01zzv0338 Wuxi Municipal Bureau on Science and Technology ę— é””åø‚ē§‘ęŠ€å±€'),
(56653, 'https://ror.org/0202hwy21', 'no_lang_code', 1, 'https://ror.org/0202hwy21 INTOS (Czechia)'),
(56654, 'https://ror.org/0204cak81', 'no_lang_code', 1, 'https://ror.org/0204cak81 Energostav (Czechia)'),
(56655, 'https://ror.org/02058sj25', 'no_lang_code', 1, 'https://ror.org/02058sj25 Brazzale Moravia (Czechia)'),
(56656, 'https://ror.org/0205xz563', 'en', 1, 'https://ror.org/0205xz563 State Key Laboratory of Plant Genomics ę¤ē‰©åŸŗå› ē»„å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(56657, 'https://ror.org/0206pct05', 'no_lang_code', 1, 'https://ror.org/0206pct05 Dopravoprojekt (Czechia)'),
(56658, 'https://ror.org/0206v1232', 'no_lang_code', 1, 'https://ror.org/0206v1232 Penguin Random House (United States)'),
(56659, 'https://ror.org/02083pn15', 'no_lang_code', 1, 'https://ror.org/02083pn15 Northrop Grumman (France)'),
(56660, 'https://ror.org/02085m625', 'en', 1, 'https://ror.org/02085m625 Arplay Medical'),
(56661, 'https://ror.org/0209axq03', 'no_lang_code', 1, 'https://ror.org/0209axq03 OZM Research (Czechia)'),
(56662, 'https://ror.org/020apt798', 'en', 1, 'https://ror.org/020apt798 Finnish Foundation for Cardiovascular Research SydƤntutkimussƤƤtiƶ'),
(56663, 'https://ror.org/020bdm170', 'de', 1, 'https://ror.org/020bdm170 Biologie Labor'),
(56664, 'https://ror.org/020cx6a13', 'en', 1, 'https://ror.org/020cx6a13 Frisbee Foundation'),
(56665, 'https://ror.org/020d0v548', 'no_lang_code', 1, 'https://ror.org/020d0v548 Crea Hydro&Energy (Czechia)'),
(56666, 'https://ror.org/020drq148', 'no_lang_code', 1, 'https://ror.org/020drq148 Vesa Velhartice (Czechia)'),
(56667, 'https://ror.org/020gjh112', 'en', 1, 'https://ror.org/020gjh112 Sino-Danish Centre for Education and Research äø­å›½äø¹éŗ¦ē§‘ē ”ę•™č‚²äø­åæƒ'),
(56668, 'https://ror.org/020hnjs91', 'sv', 1, 'https://ror.org/020hnjs91 Alfred Ɩsterlunds Stiftelse'),
(56669, 'https://ror.org/020jh4z82', 'en', 1, 'https://ror.org/020jh4z82 Research Institute of Synthetic Fiber with the Pilot Plant ŠŠ°ŃƒŃ‡Š½Š¾ - ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ синтетического волокна с ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¼ завоГом'),
(56670, 'https://ror.org/020k5bg95', 'no_lang_code', 1, 'https://ror.org/020k5bg95 Fujirebio (Czechia)'),
(56671, 'https://ror.org/020n1we98', 'en', 1, 'https://ror.org/020n1we98 Rockfall Foundation'),
(56672, 'https://ror.org/020rm3x22', 'en', 1, 'https://ror.org/020rm3x22 Community EnCompass'),
(56673, 'https://ror.org/020tre550', 'en', 1, 'https://ror.org/020tre550 Ettore and Valeria Rossi Foundation Fondazione Ettore e Valeria Rossi'),
(56674, 'https://ror.org/020v2gz03', 'no_lang_code', 1, 'https://ror.org/020v2gz03 Kessl (Czechia)'),
(56675, 'https://ror.org/020vrbx29', 'no_lang_code', 1, 'https://ror.org/020vrbx29 F.P.S. Arco (Czechia)'),
(56676, 'https://ror.org/020zqa202', 'en', 1, 'https://ror.org/020zqa202 International Association for the Study of Dreams'),
(56677, 'https://ror.org/0212my482', 'no_lang_code', 1, 'https://ror.org/0212my482 Metroprojekt Praha (Czechia)'),
(56678, 'https://ror.org/02131zb90', 'en', 1, 'https://ror.org/02131zb90 The Research Institute for Fertilizers and Insectofungicides Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠ“Š¾Š±Ń€ŠµŠ½ŠøŠ¹ Šø ŠøŠ½ŃŠµŠŗŃ‚Š¾Ń„ŃƒŠ½Š³ŠøŃ†ŠøŠ“Š¾Š² имени ŠÆ. Š’. Дамойлова'),
(56679, 'https://ror.org/021819p14', 'no_lang_code', 1, 'https://ror.org/021819p14 Geo Vision (Czechia)'),
(56680, 'https://ror.org/0218gpe46', 'no_lang_code', 1, 'https://ror.org/0218gpe46 Licolor (Czechia)'),
(56681, 'https://ror.org/0218s1743', 'fr', 1, 'https://ror.org/0218s1743 Institut Technique de DƩveloppement des Produits de la Mer'),
(56682, 'https://ror.org/02195qc46', 'en', 1, 'https://ror.org/02195qc46 Bunge & Born Foundation'),
(56683, 'https://ror.org/021a66733', 'en', 1, 'https://ror.org/021a66733 Institute for Rural Engineering č¾²ę‘å·„å­¦ē ”ē©¶éƒØé–€'),
(56684, 'https://ror.org/021h7sd56', 'no_lang_code', 1, 'https://ror.org/021h7sd56 Medical Process (France)'),
(56685, 'https://ror.org/021k07d19', 'en', 1, 'https://ror.org/021k07d19 NestlƩ Foundation'),
(56686, 'https://ror.org/021kzz686', 'no_lang_code', 1, 'https://ror.org/021kzz686 HOBAS (Czechia)'),
(56687, 'https://ror.org/021p56f43', 'en', 1, 'https://ror.org/021p56f43 Laboratory for Social and Neural Systems Research'),
(56688, 'https://ror.org/021r10935', 'en', 1, 'https://ror.org/021r10935 National Disaster Management Research Institute ģ „źµ­ ģž¬ė‚œ ꓀리 ģ—°źµ¬ģ†Œ'),
(56689, 'https://ror.org/021r5zp58', 'de', 1, 'https://ror.org/021r5zp58 Engeriedspital'),
(56690, 'https://ror.org/021sjh871', 'no_lang_code', 1, 'https://ror.org/021sjh871 TriFoil Imaging (United States)'),
(56691, 'https://ror.org/021syp484', 'no_lang_code', 1, 'https://ror.org/021syp484 JabloneckƔ NƔstrojƔrna (Czechia)'),
(56692, 'https://ror.org/021tj4g88', 'en', 1, 'https://ror.org/021tj4g88 SENSHIN Medical Research Foundation ę–°ęƒ…å ±å‡¦ē†ęŒÆčˆˆč²”å›£'),
(56693, 'https://ror.org/021tw0b31', 'fr', 1, 'https://ror.org/021tw0b31 ConfƩrence Intercantonale de l''Instruction Publique de la Suisse Romande et du Tessin'),
(56694, 'https://ror.org/021vvf198', 'no_lang_code', 1, 'https://ror.org/021vvf198 Gabriel Chemie Bohemia (Czechia)'),
(56695, 'https://ror.org/021wep716', 'no_lang_code', 1, 'https://ror.org/021wep716 AGCO (Netherlands)'),
(56696, 'https://ror.org/021z0c614', 'no_lang_code', 1, 'https://ror.org/021z0c614 Cambridge Nutritional Sciences (United Kingdom)'),
(56697, 'https://ror.org/021z27d52', 'no_lang_code', 1, 'https://ror.org/021z27d52 Kaiser (Czechia)'),
(56698, 'https://ror.org/021zj1e70', 'no_lang_code', 1, 'https://ror.org/021zj1e70 Hutní MontÔže (Czechia)'),
(56699, 'https://ror.org/022040e63', 'no_lang_code', 1, 'https://ror.org/022040e63 Murus (Czechia)'),
(56700, 'https://ror.org/0222m3049', 'no_lang_code', 1, 'https://ror.org/0222m3049 RHI Magnesita (Switzerland)'),
(56701, 'https://ror.org/0222yz688', 'cs', 1, 'https://ror.org/0222yz688 Nadace pro rozvoj architektury a stavitelstvĆ­'),
(56702, 'https://ror.org/0223gc275', 'cs', 1, 'https://ror.org/0223gc275 Nemocnice Atlas'),
(56703, 'https://ror.org/022482e21', 'en', 1, 'https://ror.org/022482e21 CRC for Spatial information'),
(56704, 'https://ror.org/022580115', 'no_lang_code', 1, 'https://ror.org/022580115 Dynex (Czechia)'),
(56705, 'https://ror.org/0225cyg31', 'de', 1, 'https://ror.org/0225cyg31 Senatsverwaltung für Wirtschaft, Energie und Betriebe'),
(56706, 'https://ror.org/0225hcv43', 'no_lang_code', 1, 'https://ror.org/0225hcv43 Georadis (Czechia)'),
(56707, 'https://ror.org/0225ptr32', 'en', 1, 'https://ror.org/0225ptr32 Surdna Foundation'),
(56708, 'https://ror.org/02273n860', 'no_lang_code', 1, 'https://ror.org/02273n860 Elvia (Czechia)'),
(56709, 'https://ror.org/022897k65', 'en', 1, 'https://ror.org/022897k65 Vera Bradley Foundation for Breast Cancer'),
(56710, 'https://ror.org/0228pwd35', 'en', 1, 'https://ror.org/0228pwd35 Departament federal da finanzas Dipartimento federale delle finanze DƩpartement fƩdƩral des finances Eidgenƶssisches Finanzdepartement Federal Department of Finance'),
(56711, 'https://ror.org/0229ja564', 'de', 1, 'https://ror.org/0229ja564 Kliniken des Landkreises Lƶrrach'),
(56712, 'https://ror.org/0229km412', 'no_lang_code', 1, 'https://ror.org/0229km412 Photon Energy (Czechia)'),
(56713, 'https://ror.org/0229p0a70', 'it', 1, 'https://ror.org/0229p0a70 Museo Vincenzo Vela'),
(56714, 'https://ror.org/022a5hk55', 'no_lang_code', 1, 'https://ror.org/022a5hk55 Pinkerton (Czechia)'),
(56715, 'https://ror.org/022aa0w74', 'no_lang_code', 1, 'https://ror.org/022aa0w74 Laboratoires M. Richard (France)'),
(56716, 'https://ror.org/022dzrb13', 'no_lang_code', 1, 'https://ror.org/022dzrb13 InnovaSea Systems (United States)'),
(56717, 'https://ror.org/022gdx219', 'no_lang_code', 1, 'https://ror.org/022gdx219 MPower (Czechia)'),
(56718, 'https://ror.org/022hhet17', 'en', 1, 'https://ror.org/022hhet17 Carnegie Endowment for International Peace'),
(56719, 'https://ror.org/022jr5m13', 'nl', 1, 'https://ror.org/022jr5m13 VSBfonds'),
(56720, 'https://ror.org/022k30226', 'en', 1, 'https://ror.org/022k30226 Local Matters'),
(56721, 'https://ror.org/022kqm498', 'en', 1, 'https://ror.org/022kqm498 Wings of Eagles Discovery Center'),
(56722, 'https://ror.org/022mx4d10', 'en', 1, 'https://ror.org/022mx4d10 Korea Photonics Technology Institute'),
(56723, 'https://ror.org/022pcr506', 'no_lang_code', 1, 'https://ror.org/022pcr506 Licon Heat (Czechia)'),
(56724, 'https://ror.org/022psyh04', 'no_lang_code', 1, 'https://ror.org/022psyh04 Polyos (Czechia)'),
(56725, 'https://ror.org/022q21023', 'en', 1, 'https://ror.org/022q21023 Czech Association of Petroleum Industry and Trade ČeskĆ” asociace petrolejÔřskĆ©ho prÅÆmyslu a obchodu'),
(56726, 'https://ror.org/022qvpy75', 'en', 1, 'https://ror.org/022qvpy75 International Geographical Union Union GƩographique Internationale'),
(56727, 'https://ror.org/022sj0h09', 'no_lang_code', 1, 'https://ror.org/022sj0h09 Primis (Czechia)'),
(56728, 'https://ror.org/022tr6d79', 'no_lang_code', 1, 'https://ror.org/022tr6d79 Basys (Germany)'),
(56729, 'https://ror.org/022vfzj49', 'no_lang_code', 1, 'https://ror.org/022vfzj49 mAbDx (United States)'),
(56730, 'https://ror.org/022wvrv65', 'en', 1, 'https://ror.org/022wvrv65 Jalmari and Rauha Ahokas Foundation Jalmari ja Rauha Ahokkaan SƤƤtiƶ'),
(56731, 'https://ror.org/022wy8e87', 'no_lang_code', 1, 'https://ror.org/022wy8e87 Bauer Technics'),
(56732, 'https://ror.org/022xahy44', 'no_lang_code', 1, 'https://ror.org/022xahy44 Furukawa Electric (United Kingdom)'),
(56733, 'https://ror.org/022z4zx74', 'en', 1, 'https://ror.org/022z4zx74 PRO-BIO Association of Organic Farmers'),
(56734, 'https://ror.org/0231gtc30', 'fr', 1, 'https://ror.org/0231gtc30 Fondation de Nant'),
(56735, 'https://ror.org/0232e8038', 'no_lang_code', 1, 'https://ror.org/0232e8038 BioEnviro (Czechia)'),
(56736, 'https://ror.org/0233hap27', 'no_lang_code', 1, 'https://ror.org/0233hap27 Gist (Czechia)'),
(56737, 'https://ror.org/02341a605', 'cs', 1, 'https://ror.org/02341a605 KrajskĆ” nemocnice T. Bati'),
(56738, 'https://ror.org/0234nw002', 'no_lang_code', 1, 'https://ror.org/0234nw002 DSA (Czechia)'),
(56739, 'https://ror.org/0234pyd94', 'en', 1, 'https://ror.org/0234pyd94 UniHealth Foundation'),
(56740, 'https://ror.org/0235qjz17', 'no_lang_code', 1, 'https://ror.org/0235qjz17 Panasonic (Czechia)'),
(56741, 'https://ror.org/02364qy53', 'de', 1, 'https://ror.org/02364qy53 Aron Vajna Historischer Blechblasinstrumentenbau'),
(56742, 'https://ror.org/0236wqc02', 'de', 1, 'https://ror.org/0236wqc02 Sarkoidose Stiftung'),
(56743, 'https://ror.org/02384ye22', 'en', 1, 'https://ror.org/02384ye22 Dangoria Charitable Trust'),
(56744, 'https://ror.org/023b5vx71', 'no_lang_code', 1, 'https://ror.org/023b5vx71 Envipor (Czechia)'),
(56745, 'https://ror.org/023bna168', 'no_lang_code', 1, 'https://ror.org/023bna168 Whirlpool (Netherlands)'),
(56746, 'https://ror.org/023bq4z36', 'no_lang_code', 1, 'https://ror.org/023bq4z36 Blue Industry and Science (France)'),
(56747, 'https://ror.org/023eqmq44', 'de', 1, 'https://ror.org/023eqmq44 Wohnstadt'),
(56748, 'https://ror.org/023g45t05', 'no_lang_code', 1, 'https://ror.org/023g45t05 ExxonMobil (United Kingdom)'),
(56749, 'https://ror.org/023g71078', 'no_lang_code', 1, 'https://ror.org/023g71078 Medignition (Switzerland)'),
(56750, 'https://ror.org/023kcy720', 'de', 1, 'https://ror.org/023kcy720 Reinhold Beitlich Foundation Reinhold Beitlich Stiftung'),
(56751, 'https://ror.org/023kj5402', 'no_lang_code', 1, 'https://ror.org/023kj5402 Craig Technologies (United States)'),
(56752, 'https://ror.org/023pc0v92', 'it', 1, 'https://ror.org/023pc0v92 Ospedale San Paolo'),
(56753, 'https://ror.org/023pwvd91', 'it', 1, 'https://ror.org/023pwvd91 Academy of the bran Accademia della Crusca'),
(56754, 'https://ror.org/023rd7223', 'no_lang_code', 1, 'https://ror.org/023rd7223 Plosab (Czechia)'),
(56755, 'https://ror.org/023sc6050', 'no_lang_code', 1, 'https://ror.org/023sc6050 Roko (Czechia)'),
(56756, 'https://ror.org/023spgs14', 'en', 1, 'https://ror.org/023spgs14 Moscow Regional Research Institute of Obstetrics and Gynecology Московский областной ŠŠ˜Š˜ Š°ŠŗŃƒŃˆŠµŃ€ŃŃ‚Š²Š° Šø гинекологии'),
(56757, 'https://ror.org/023vxr720', 'no_lang_code', 1, 'https://ror.org/023vxr720 TK Consult (Switzerland)'),
(56758, 'https://ror.org/023w52n18', 'no_lang_code', 1, 'https://ror.org/023w52n18 EarthDance'),
(56759, 'https://ror.org/023w6y044', 'en', 1, 'https://ror.org/023w6y044 VA Great Lakes Health Care System'),
(56760, 'https://ror.org/023y6dh84', 'cs', 1, 'https://ror.org/023y6dh84 Akademie Jana Amose KomenskƩho'),
(56761, 'https://ror.org/024009532', 'fr', 1, 'https://ror.org/024009532 HƓpital de Beaumont'),
(56762, 'https://ror.org/0241sqg91', 'no_lang_code', 1, 'https://ror.org/0241sqg91 Stinchcombe Technology (Czechia)'),
(56763, 'https://ror.org/0242ces81', 'en', 1, 'https://ror.org/0242ces81 Power Tool Institute'),
(56764, 'https://ror.org/0242j2724', 'en', 1, 'https://ror.org/0242j2724 Elizabeth Greenshields Foundation'),
(56765, 'https://ror.org/0243gh341', 'en', 1, 'https://ror.org/0243gh341 Springfield Foundation'),
(56766, 'https://ror.org/0243qpk28', 'cs', 1, 'https://ror.org/0243qpk28 SdruženĆ­ Ozdravoven A LĆ©Äeben Okresu Trutnov'),
(56767, 'https://ror.org/02445zq85', 'no_lang_code', 1, 'https://ror.org/02445zq85 Tec 21'),
(56768, 'https://ror.org/0246a9012', 'en', 1, 'https://ror.org/0246a9012 Direction gƩnƩrale Statistique Statistics Belgium'),
(56769, 'https://ror.org/0248vx102', 'de', 1, 'https://ror.org/0248vx102 Schweizerische Gesellschaft für Kardiologie'),
(56770, 'https://ror.org/0249zbx82', 'en', 1, 'https://ror.org/0249zbx82 Institutul de Cercetari Metalurgice Metallurgical Research Institute'),
(56771, 'https://ror.org/024a53a32', 'no_lang_code', 1, 'https://ror.org/024a53a32 Texas Instruments (Switzerland)'),
(56772, 'https://ror.org/024ap5123', 'en', 1, 'https://ror.org/024ap5123 Rome Foundation'),
(56773, 'https://ror.org/024h0z890', 'fr', 1, 'https://ror.org/024h0z890 Institut GƩnƩtique Nantes Atlantique'),
(56774, 'https://ror.org/024h27x67', 'en', 1, 'https://ror.org/024h27x67 Institutul National De Cercetare Dezvoltare Chimico Farmaceutica National Institute For Chemical Pharmaceutical Research and Development'),
(56775, 'https://ror.org/024hftt26', 'no_lang_code', 1, 'https://ror.org/024hftt26 ZemědělskĆ© Družstvo Å itbořice (Czechia)'),
(56776, 'https://ror.org/024mety47', 'no_lang_code', 1, 'https://ror.org/024mety47 Entrust Datacard (United States)'),
(56777, 'https://ror.org/024n1jd19', 'en', 1, 'https://ror.org/024n1jd19 Eastern Mining-and-Metallurgical Research Institute for Nonferrous Metals Восточный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цветных металлов [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(56778, 'https://ror.org/024p2bs62', 'en', 1, 'https://ror.org/024p2bs62 City Schoolyard Garden'),
(56779, 'https://ror.org/024p43m36', 'en', 1, 'https://ror.org/024p43m36 Singapore Millennium Foundation'),
(56780, 'https://ror.org/024pc0058', 'en', 1, 'https://ror.org/024pc0058 Summerlee Foundation'),
(56781, 'https://ror.org/024pgf395', 'en', 1, 'https://ror.org/024pgf395 Civilisations Matter'),
(56782, 'https://ror.org/024qfyn78', 'no_lang_code', 1, 'https://ror.org/024qfyn78 ACL Anodizing (Czechia)'),
(56783, 'https://ror.org/024s9tn87', 'no_lang_code', 1, 'https://ror.org/024s9tn87 Trimill (Czechia)'),
(56784, 'https://ror.org/024t02d47', 'en', 1, 'https://ror.org/024t02d47 Hydrobiological Institute Š„ŠøŠ“Ń€Š¾Š±ŠøŠ¾Š»Š¾ŃˆŠŗŠø Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(56785, 'https://ror.org/024tjte62', 'cs', 1, 'https://ror.org/024tjte62 KrajskĆ” HygienickĆ” Stanice Olomouci'),
(56786, 'https://ror.org/024x5f906', 'no_lang_code', 1, 'https://ror.org/024x5f906 Hexcel (United States)'),
(56787, 'https://ror.org/024xpqd61', 'no_lang_code', 1, 'https://ror.org/024xpqd61 AB Neo (Czechia)'),
(56788, 'https://ror.org/024zd3a64', 'no_lang_code', 1, 'https://ror.org/024zd3a64 Glass Atelier Morava (Czechia)'),
(56789, 'https://ror.org/02505ds21', 'cs', 1, 'https://ror.org/02505ds21 Jednota HudebnĆ­ho Divadla'),
(56790, 'https://ror.org/0251g2d64', 'en', 1, 'https://ror.org/0251g2d64 European Association of Social Psychology'),
(56791, 'https://ror.org/0252ba684', 'no_lang_code', 1, 'https://ror.org/0252ba684 Komfort (Czechia)'),
(56792, 'https://ror.org/0252gcq98', 'no_lang_code', 1, 'https://ror.org/0252gcq98 Consultest (Czechia)'),
(56793, 'https://ror.org/0254rs835', 'de', 1, 'https://ror.org/0254rs835 Gesellschaft für Hochschulforschung'),
(56794, 'https://ror.org/025506c66', 'no_lang_code', 1, 'https://ror.org/025506c66 Smart Vision Works International (United States)'),
(56795, 'https://ror.org/0257x6t90', 'en', 1, 'https://ror.org/0257x6t90 Delta Water Management Research Unit'),
(56796, 'https://ror.org/0258a5n35', 'en', 1, 'https://ror.org/0258a5n35 Institute for Spatial Development Ústav územního rozvoje'),
(56797, 'https://ror.org/025ajkx98', 'no_lang_code', 1, 'https://ror.org/025ajkx98 Teleflex (Australia)'),
(56798, 'https://ror.org/025c9h003', 'en', 1, 'https://ror.org/025c9h003 Michigan Department of Technology, Management & Budget'),
(56799, 'https://ror.org/025db4c72', 'no_lang_code', 1, 'https://ror.org/025db4c72 TLP (Czechia)'),
(56800, 'https://ror.org/025decp49', 'no_lang_code', 1, 'https://ror.org/025decp49 Cech Engineering (Czechia)'),
(56801, 'https://ror.org/025dke180', 'no_lang_code', 1, 'https://ror.org/025dke180 Žatec (Czechia)'),
(56802, 'https://ror.org/025e2dr05', 'es', 1, 'https://ror.org/025e2dr05 Fundación Cerebro y Mente'),
(56803, 'https://ror.org/025eayv75', 'en', 1, 'https://ror.org/025eayv75 Islamic Azad University, Firoozkooh Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد ŁŁŠŲ±ŁˆŲ²ŁƒŁˆŁ‡'),
(56804, 'https://ror.org/025k4tn70', 'no_lang_code', 1, 'https://ror.org/025k4tn70 Novatisk (Czechia)'),
(56805, 'https://ror.org/025mn7712', 'no_lang_code', 1, 'https://ror.org/025mn7712 InFlectis BioScience'),
(56806, 'https://ror.org/025rvh645', 'sv', 1, 'https://ror.org/025rvh645 Stiftelsen Emilie och Rudolf Gesellius fond'),
(56807, 'https://ror.org/025rzbp22', 'no_lang_code', 1, 'https://ror.org/025rzbp22 HydraulickĆ© Stroje A ZařízenĆ­ (Czechia)'),
(56808, 'https://ror.org/025twqg64', 'no_lang_code', 1, 'https://ror.org/025twqg64 EuroMISE (Czechia)'),
(56809, 'https://ror.org/025vct142', 'en', 1, 'https://ror.org/025vct142 Skylark Foundation'),
(56810, 'https://ror.org/025yjfh46', 'en', 1, 'https://ror.org/025yjfh46 VA MidSouth Healthcare Network'),
(56811, 'https://ror.org/02606vr52', 'en', 1, 'https://ror.org/02606vr52 Thomas Wilson Foundation'),
(56812, 'https://ror.org/02613e360', 'en', 1, 'https://ror.org/02613e360 International Center for Astronomical, Medical and Ecological Research'),
(56813, 'https://ror.org/0264aj944', 'no_lang_code', 1, 'https://ror.org/0264aj944 AWIK House Production (Czechia)'),
(56814, 'https://ror.org/0264vnq64', 'it', 1, 'https://ror.org/0264vnq64 Organizzazione Sociopsichiatrica Cantonale'),
(56815, 'https://ror.org/0266x3x06', 'en', 1, 'https://ror.org/0266x3x06 Udall Foundation'),
(56816, 'https://ror.org/0266xtw32', 'cs', 1, 'https://ror.org/0266xtw32 JihočeskĆ© Muzeum v Českých BudějovicĆ­ch'),
(56817, 'https://ror.org/0267ebt82', 'fi', 1, 'https://ror.org/0267ebt82 Tauno Tƶnningin SƤƤtiƶ'),
(56818, 'https://ror.org/02682jj74', 'no_lang_code', 1, 'https://ror.org/02682jj74 Ceraver (France)'),
(56819, 'https://ror.org/0268cyt91', 'no_lang_code', 1, 'https://ror.org/0268cyt91 Medetron (Czechia)'),
(56820, 'https://ror.org/0269hs475', 'fi', 1, 'https://ror.org/0269hs475 Ida Montinin SƤƤtiƶ'),
(56821, 'https://ror.org/0269xd847', 'no_lang_code', 1, 'https://ror.org/0269xd847 Wüest Partner (Switzerland)'),
(56822, 'https://ror.org/026bcj513', 'no_lang_code', 1, 'https://ror.org/026bcj513 MediCom (Czechia)'),
(56823, 'https://ror.org/026bfbm57', 'en', 1, 'https://ror.org/026bfbm57 Nanocem'),
(56824, 'https://ror.org/026dax180', 'en', 1, 'https://ror.org/026dax180 NIMH Repository and Genomics Resource'),
(56825, 'https://ror.org/026frww69', 'en', 1, 'https://ror.org/026frww69 Research Institute of Mine Rescue ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š“ŠžŠ ŠŠžŠ”ŠŸŠŠ”ŠŠ¢Š•Š›Š¬ŠŠžŠ“Šž ДЕЛА'),
(56826, 'https://ror.org/026ftd493', 'pt', 1, 'https://ror.org/026ftd493 Fundação Gorceix'),
(56827, 'https://ror.org/026gpk522', 'no_lang_code', 1, 'https://ror.org/026gpk522 AgroBio Opava (Czechia)'),
(56828, 'https://ror.org/026k95836', 'no_lang_code', 1, 'https://ror.org/026k95836 Geodyn (Czechia)'),
(56829, 'https://ror.org/026mffr50', 'en', 1, 'https://ror.org/026mffr50 Wisconsin Cheese Makers Association'),
(56830, 'https://ror.org/026nvac34', 'no_lang_code', 1, 'https://ror.org/026nvac34 Lingea (Czechia)'),
(56831, 'https://ror.org/026qmmw74', 'cs', 1, 'https://ror.org/026qmmw74 ČeskĆ” Společnost ChemickĆ©ho InženýrstvĆ­'),
(56832, 'https://ror.org/026ryr342', 'en', 1, 'https://ror.org/026ryr342 Shevchenko Foundation'),
(56833, 'https://ror.org/026sz7x33', 'no_lang_code', 1, 'https://ror.org/026sz7x33 Innogy (Czechia)'),
(56834, 'https://ror.org/026xhpy07', 'no_lang_code', 1, 'https://ror.org/026xhpy07 Consulting Company Novasoft (Czechia)'),
(56835, 'https://ror.org/026xyq320', 'no_lang_code', 1, 'https://ror.org/026xyq320 Mikroelektronika (Czechia)'),
(56836, 'https://ror.org/026z1cz75', 'no_lang_code', 1, 'https://ror.org/026z1cz75 PathSensors (United States)'),
(56837, 'https://ror.org/0270n9q14', 'no_lang_code', 1, 'https://ror.org/0270n9q14 Garmin (Switzerland)'),
(56838, 'https://ror.org/02719dy55', 'en', 1, 'https://ror.org/02719dy55 All-Russian Scientific Research Institute of Fats Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ жиров'),
(56839, 'https://ror.org/0271pk470', 'en', 1, 'https://ror.org/0271pk470 Plant and Fungi Biotechnology Laboratory'),
(56840, 'https://ror.org/02737yq40', 'en', 1, 'https://ror.org/02737yq40 Fesenkov Astrophysical Institute Астрофизический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š’. Š“. Фесенкова'),
(56841, 'https://ror.org/02747fj94', 'de', 1, 'https://ror.org/02747fj94 Günter-Köhler-Institut für Fügetechnik und Werkstoffprüfung'),
(56842, 'https://ror.org/0276snn96', 'no_lang_code', 1, 'https://ror.org/0276snn96 Tarpo (Czechia)'),
(56843, 'https://ror.org/027c7k196', 'en', 1, 'https://ror.org/027c7k196 Changchun Institute of Biological Products é•æę˜„ē”Ÿē‰©åˆ¶å“ē ”ē©¶ę‰€ 编辑'),
(56844, 'https://ror.org/027d4fk93', 'en', 1, 'https://ror.org/027d4fk93 Sid W Richardson Foundation'),
(56845, 'https://ror.org/027e2aw51', 'no_lang_code', 1, 'https://ror.org/027e2aw51 HaSaM (Czechia)'),
(56846, 'https://ror.org/027frky36', 'en', 1, 'https://ror.org/027frky36 North-Caucasian Mining and Metallurgical Institute Деверо-Кавказский горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(56847, 'https://ror.org/027jc1q11', 'no_lang_code', 1, 'https://ror.org/027jc1q11 Edwards Lifesciences (United Kingdom)'),
(56848, 'https://ror.org/027jwtt54', 'fi', 1, 'https://ror.org/027jwtt54 Arvo ja Lea Ylppƶ SƤƤtiƶ'),
(56849, 'https://ror.org/027jzhs47', 'no_lang_code', 1, 'https://ror.org/027jzhs47 Lavipharm (France)'),
(56850, 'https://ror.org/027kj2v52', 'en', 1, 'https://ror.org/027kj2v52 American Board of Veterinary Practitioners'),
(56851, 'https://ror.org/027m3cy15', 'de', 1, 'https://ror.org/027m3cy15 Global Risk Forum GRF Davos'),
(56852, 'https://ror.org/027pdc339', 'no_lang_code', 1, 'https://ror.org/027pdc339 NAM System (Czechia)'),
(56853, 'https://ror.org/027q2tw68', 'en', 1, 'https://ror.org/027q2tw68 National Centre for Research Methods'),
(56854, 'https://ror.org/027qba521', 'no_lang_code', 1, 'https://ror.org/027qba521 NSK (United States)'),
(56855, 'https://ror.org/027r3eh78', 'no_lang_code', 1, 'https://ror.org/027r3eh78 Infrastructure Management Consultants (Switzerland)'),
(56856, 'https://ror.org/027r3nx49', 'en', 1, 'https://ror.org/027r3nx49 IBM Research - Australia'),
(56857, 'https://ror.org/027whd792', 'no_lang_code', 1, 'https://ror.org/027whd792 Labomatic Instruments (Switzerland)'),
(56858, 'https://ror.org/027x0q215', 'no_lang_code', 1, 'https://ror.org/027x0q215 Agroeko Žamberk (Czechia)'),
(56859, 'https://ror.org/027z29k25', 'no_lang_code', 1, 'https://ror.org/027z29k25 UPS Technology (Czechia)'),
(56860, 'https://ror.org/02800a946', 'tr', 1, 'https://ror.org/02800a946 Ankara Fıtık Merkezi'),
(56861, 'https://ror.org/0280y9h11', 'no_lang_code', 1, 'https://ror.org/0280y9h11 Nikon (United States)'),
(56862, 'https://ror.org/0280ypy82', 'no_lang_code', 1, 'https://ror.org/0280ypy82 Prvni Brnenska Strojirna (Czechia)'),
(56863, 'https://ror.org/0281ksw84', 'en', 1, 'https://ror.org/0281ksw84 Brno Observatory and Planetarium HvězdĆ”rna a planetĆ”rium Brno'),
(56864, 'https://ror.org/0281q7a54', 'no_lang_code', 1, 'https://ror.org/0281q7a54 Gestamp (Germany)'),
(56865, 'https://ror.org/0281xn193', 'en', 1, 'https://ror.org/0281xn193 Japan Society for Laser Surgery and Medicine ę—„ęœ¬ćƒ¬ćƒ¼ć‚¶ćƒ¼åŒ»å­¦ä¼š'),
(56866, 'https://ror.org/02820xq34', 'no_lang_code', 1, 'https://ror.org/02820xq34 Boskalis (United Kingdom)'),
(56867, 'https://ror.org/028226726', 'en', 1, 'https://ror.org/028226726 Brian Mason Scientific & Technical Trust'),
(56868, 'https://ror.org/0282m9c08', 'no_lang_code', 1, 'https://ror.org/0282m9c08 Kion Group (United States)'),
(56869, 'https://ror.org/0283yyc15', 'no_lang_code', 1, 'https://ror.org/0283yyc15 Erilens (Czechia)'),
(56870, 'https://ror.org/02876kb37', 'no_lang_code', 1, 'https://ror.org/02876kb37 ZP Otice (Czechia)'),
(56871, 'https://ror.org/0287qz723', 'no_lang_code', 1, 'https://ror.org/0287qz723 Thomas Sinclair Laboratories (France)'),
(56872, 'https://ror.org/02890ms09', 'en', 1, 'https://ror.org/02890ms09 Kyushu Okinawa Agricultural Research Center ä¹å·žę²–ēø„č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(56873, 'https://ror.org/02897ye82', 'es', 1, 'https://ror.org/02897ye82 Fundación Alfonso Martín Escudero'),
(56874, 'https://ror.org/028a35p56', 'no_lang_code', 1, 'https://ror.org/028a35p56 Strix (United Kingdom)'),
(56875, 'https://ror.org/028a9tw57', 'no_lang_code', 1, 'https://ror.org/028a9tw57 Fritagro Nížkov (Czechia)'),
(56876, 'https://ror.org/028b18z22', 'en', 1, 'https://ror.org/028b18z22 Carbon Cycle and Ecosystems'),
(56877, 'https://ror.org/028dac806', 'en', 1, 'https://ror.org/028dac806 Arthur Smith Institute for Urology'),
(56878, 'https://ror.org/028e7fy95', 'de', 1, 'https://ror.org/028e7fy95 Büro für Arbeits und Sozialpolitische Studien'),
(56879, 'https://ror.org/028gfev79', 'no_lang_code', 1, 'https://ror.org/028gfev79 Mitas (Czechia)'),
(56880, 'https://ror.org/028gzd671', 'no_lang_code', 1, 'https://ror.org/028gzd671 Trigad (Czechia)'),
(56881, 'https://ror.org/028kw5d11', 'no_lang_code', 1, 'https://ror.org/028kw5d11 New Guinea Binatang Research Center'),
(56882, 'https://ror.org/028m4pg81', 'en', 1, 'https://ror.org/028m4pg81 Kazakh Scientific Research Veterinary Institute'),
(56883, 'https://ror.org/028mhjw69', 'no_lang_code', 1, 'https://ror.org/028mhjw69 Eduard Model Accessories (Czechia)'),
(56884, 'https://ror.org/028mkng75', 'no_lang_code', 1, 'https://ror.org/028mkng75 ATE (Czechia)'),
(56885, 'https://ror.org/028qhp125', 'no_lang_code', 1, 'https://ror.org/028qhp125 Preciosa Beauty (Czechia)'),
(56886, 'https://ror.org/028qtah59', 'no_lang_code', 1, 'https://ror.org/028qtah59 Dodie (France)'),
(56887, 'https://ror.org/028r88847', 'no_lang_code', 1, 'https://ror.org/028r88847 Excalibur Army (Czechia)'),
(56888, 'https://ror.org/028rwje97', 'cs', 1, 'https://ror.org/028rwje97 Ochrana fauny ČR'),
(56889, 'https://ror.org/028s8ff87', 'no_lang_code', 1, 'https://ror.org/028s8ff87 Iconics (Czechia)'),
(56890, 'https://ror.org/028tpvk07', 'no_lang_code', 1, 'https://ror.org/028tpvk07 PSP Pohony (Czechia)'),
(56891, 'https://ror.org/028vpwk62', 'no_lang_code', 1, 'https://ror.org/028vpwk62 Sady KlÔŔterec nad Ohří (Czechia)'),
(56892, 'https://ror.org/028x09v05', 'no_lang_code', 1, 'https://ror.org/028x09v05 Portasol (Ireland)'),
(56893, 'https://ror.org/028xcfg40', 'en', 1, 'https://ror.org/028xcfg40 P.S. Pasternak Research Institute for Mountain Forestry Украинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного лесовоГства'),
(56894, 'https://ror.org/028xfa567', 'en', 1, 'https://ror.org/028xfa567 Arkansas Hunger Relief Alliance'),
(56895, 'https://ror.org/028yn3418', 'en', 1, 'https://ror.org/028yn3418 Institute of Architecture and Urban & Spatial Planning of Serbia Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ńƒ Šø ŃƒŃ€Š±Š°Š½ŠøŠ·Š°Š¼ Š”Ń€Š±ŠøŃ˜Šµ'),
(56896, 'https://ror.org/028yqyj67', 'no_lang_code', 1, 'https://ror.org/028yqyj67 New Gen (Czechia)'),
(56897, 'https://ror.org/028z16q57', 'fr', 1, 'https://ror.org/028z16q57 Institut de Biotechnologies Jacques Boy'),
(56898, 'https://ror.org/029005e08', 'fr', 1, 'https://ror.org/029005e08 DƩpartement de la SantƩ et de l''Action Sociale'),
(56899, 'https://ror.org/029081n45', 'no_lang_code', 1, 'https://ror.org/029081n45 FGR Factory (Czechia)'),
(56900, 'https://ror.org/0292p9y97', 'en', 1, 'https://ror.org/0292p9y97 Pakistan Atomic Energy Commission ادارہ جوہری ŲŖŁˆŲ§Ł†Ų§Ų¦ŪŒ پاکستان'),
(56901, 'https://ror.org/0293b6371', 'no_lang_code', 1, 'https://ror.org/0293b6371 Chirastar KDT (Czechia)'),
(56902, 'https://ror.org/0293bgt12', 'no_lang_code', 1, 'https://ror.org/0293bgt12 Unites Systems (Czechia)'),
(56903, 'https://ror.org/0294hqc16', 'no_lang_code', 1, 'https://ror.org/0294hqc16 LZ Technology (United States)'),
(56904, 'https://ror.org/0298sz047', 'no_lang_code', 1, 'https://ror.org/0298sz047 AMI Communications (Czechia)'),
(56905, 'https://ror.org/029c46924', 'fr', 1, 'https://ror.org/029c46924 Conseil RƩgional de Basse-Normandie'),
(56906, 'https://ror.org/029ca0b10', 'no_lang_code', 1, 'https://ror.org/029ca0b10 Impeto Medical (France)'),
(56907, 'https://ror.org/029d43v21', 'en', 1, 'https://ror.org/029d43v21 Foundation for Research and Socio Ecological Harmony'),
(56908, 'https://ror.org/029ea9548', 'no_lang_code', 1, 'https://ror.org/029ea9548 Laboratoire Sicobel (France)'),
(56909, 'https://ror.org/029gpxj36', 'en', 1, 'https://ror.org/029gpxj36 Texas Parent to Parent'),
(56910, 'https://ror.org/029gyan70', 'no_lang_code', 1, 'https://ror.org/029gyan70 Ziemer Ophthalmic Systems (Switzerland)'),
(56911, 'https://ror.org/029j6tp05', 'no_lang_code', 1, 'https://ror.org/029j6tp05 Zimmer Biomet (France)'),
(56912, 'https://ror.org/029jv7h91', 'no_lang_code', 1, 'https://ror.org/029jv7h91 Huntsman (Germany)'),
(56913, 'https://ror.org/029k6t707', 'en', 1, 'https://ror.org/029k6t707 Institute of Ecosystem Study Istituto per lo Studio degli Ecosistemi'),
(56914, 'https://ror.org/029kacy52', 'no_lang_code', 1, 'https://ror.org/029kacy52 Český MÔk (Czechia)'),
(56915, 'https://ror.org/029kcrm61', 'no_lang_code', 1, 'https://ror.org/029kcrm61 Olma (Czechia)'),
(56916, 'https://ror.org/029mmrr68', 'no_lang_code', 1, 'https://ror.org/029mmrr68 Capricor Therapeutics (United States)'),
(56917, 'https://ror.org/029nby494', 'no_lang_code', 1, 'https://ror.org/029nby494 Epicrop Technologies (United States)'),
(56918, 'https://ror.org/029p38t95', 'no_lang_code', 1, 'https://ror.org/029p38t95 MEZ (Czechia)'),
(56919, 'https://ror.org/029pg7f58', 'no_lang_code', 1, 'https://ror.org/029pg7f58 Oculogica (United States)'),
(56920, 'https://ror.org/029tzwe02', 'en', 1, 'https://ror.org/029tzwe02 Prevent Blindness'),
(56921, 'https://ror.org/029vj4k86', 'fr', 1, 'https://ror.org/029vj4k86 Mutuelle GĆ©nĆ©rale de l''Ɖducation Nationale'),
(56922, 'https://ror.org/029vrd053', 'en', 1, 'https://ror.org/029vrd053 Nepal Centre for Contemporary Research'),
(56923, 'https://ror.org/029xeav48', 'no_lang_code', 1, 'https://ror.org/029xeav48 T-string Pardubice (Czechia)'),
(56924, 'https://ror.org/029y5xd69', 'cs', 1, 'https://ror.org/029y5xd69 Centrum pro Bezpečný StĆ”t'),
(56925, 'https://ror.org/02a03v538', 'en', 1, 'https://ror.org/02a03v538 The Harley School'),
(56926, 'https://ror.org/02a102m23', 'no_lang_code', 1, 'https://ror.org/02a102m23 OptimSys (Czechia)'),
(56927, 'https://ror.org/02a412665', 'no_lang_code', 1, 'https://ror.org/02a412665 Beton TěŔovice (Czechia)'),
(56928, 'https://ror.org/02a6ezh03', 'es', 1, 'https://ror.org/02a6ezh03 Consejería de Educación y Empleo'),
(56929, 'https://ror.org/02aa8pv85', 'no_lang_code', 1, 'https://ror.org/02aa8pv85 Ústav Využití Plynu (Czechia)'),
(56930, 'https://ror.org/02aaqrp97', 'no_lang_code', 1, 'https://ror.org/02aaqrp97 Lovochemie (Czechia)'),
(56931, 'https://ror.org/02aezqa22', 'no_lang_code', 1, 'https://ror.org/02aezqa22 LetiÅ”tě Ostrava Ostrava Airport (Czechia)'),
(56932, 'https://ror.org/02af4h206', 'en', 1, 'https://ror.org/02af4h206 Institute of Archaeology and Ethnography Ō³Ō±Ō± Õ€Õ†Ō±Ō³Ō»ÕÕˆÕ’Ō¹Õ…Ō±Õ† ŌµÕŽ Ō±Ō¶Ō³Ō±Ō³ÕÕˆÕ’Ō¹Õ…Ō±Õ† Ō»Õ†ÕÕŌ»ÕÕˆÕ’Õ'),
(56933, 'https://ror.org/02af9ge32', 'no_lang_code', 1, 'https://ror.org/02af9ge32 CS Plasting (Czechia)'),
(56934, 'https://ror.org/02afgrw28', 'no_lang_code', 1, 'https://ror.org/02afgrw28 BrioBiotech (United States)'),
(56935, 'https://ror.org/02agvwy44', 'no_lang_code', 1, 'https://ror.org/02agvwy44 Von Roll (Switzerland)'),
(56936, 'https://ror.org/02ak6z209', 'no_lang_code', 1, 'https://ror.org/02ak6z209 Mvb Opava (Czechia)'),
(56937, 'https://ror.org/02amm2b67', 'no_lang_code', 1, 'https://ror.org/02amm2b67 Global Algae Innovations (United States)'),
(56938, 'https://ror.org/02aqcpd84', 'no_lang_code', 1, 'https://ror.org/02aqcpd84 A3IP (France)'),
(56939, 'https://ror.org/02aqwrz59', 'no_lang_code', 1, 'https://ror.org/02aqwrz59 R + R Burger Und Partner (Switzerland)'),
(56940, 'https://ror.org/02asahb32', 'de', 1, 'https://ror.org/02asahb32 Institut Mathildenhƶhe Darmstadt'),
(56941, 'https://ror.org/02askmp96', 'no_lang_code', 1, 'https://ror.org/02askmp96 Mycroft Mind (Czechia)'),
(56942, 'https://ror.org/02atyww07', 'no_lang_code', 1, 'https://ror.org/02atyww07 TM Jesenice (Czechia)'),
(56943, 'https://ror.org/02ayg8518', 'no_lang_code', 1, 'https://ror.org/02ayg8518 Radioterapie HoleŔov (Czechia)'),
(56944, 'https://ror.org/02b0bmh39', 'no_lang_code', 1, 'https://ror.org/02b0bmh39 HutnickĆ” zaměstnaneckĆ” pojiŔńovna ČeskĆ” PrÅÆmyslovĆ” ZdravotnĆ­ PojiŔńovna (Czechia)'),
(56945, 'https://ror.org/02b2zxh20', 'no_lang_code', 1, 'https://ror.org/02b2zxh20 Biologicals (Czechia)'),
(56946, 'https://ror.org/02b31q323', 'no_lang_code', 1, 'https://ror.org/02b31q323 Agrospol AgrÔrní Družstvo (Czechia)'),
(56947, 'https://ror.org/02b4eje67', 'no_lang_code', 1, 'https://ror.org/02b4eje67 Illinois Tool Works (United Kingdom)'),
(56948, 'https://ror.org/02b513n57', 'no_lang_code', 1, 'https://ror.org/02b513n57 Severofrukt (Czechia)'),
(56949, 'https://ror.org/02b7e7p97', 'en', 1, 'https://ror.org/02b7e7p97 Institute of Philosophy, Sociology and Law'),
(56950, 'https://ror.org/02b7ead30', 'en', 1, 'https://ror.org/02b7ead30 Bureau fédéral de l''égalité entre femmes et hommes Eidgenössisches Büro für die Gleichstellung von Frau und Mann Federal Office for Gender Equality Ufficio federale per l''uguaglianza fra donna e uomo'),
(56951, 'https://ror.org/02b7zfk76', 'en', 1, 'https://ror.org/02b7zfk76 Qinhuangdao Science and Technology Bureau ē§¦ēš‡å²›åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(56952, 'https://ror.org/02bam3g77', 'cs', 1, 'https://ror.org/02bam3g77 VyŔŔí OdbornĆ” Å kola InformačnĆ­ch Služeb'),
(56953, 'https://ror.org/02basy118', 'en', 1, 'https://ror.org/02basy118 Federation of Swiss Protestant Churches'),
(56954, 'https://ror.org/02bbbxs36', 'no_lang_code', 1, 'https://ror.org/02bbbxs36 Spyron (Czechia)'),
(56955, 'https://ror.org/02bbbyx25', 'en', 1, 'https://ror.org/02bbbyx25 Schweizerisches Gesundheitsobservatorium Swiss Health Observatory'),
(56956, 'https://ror.org/02bcjkv07', 'no_lang_code', 1, 'https://ror.org/02bcjkv07 Rumpold (Czechia)'),
(56957, 'https://ror.org/02bcs6e63', 'no_lang_code', 1, 'https://ror.org/02bcs6e63 Plant Lipids (India)'),
(56958, 'https://ror.org/02bed6993', 'no_lang_code', 1, 'https://ror.org/02bed6993 Axys Varilab (Czechia)');
INSERT INTO `rors` VALUES
(56959, 'https://ror.org/02bf3yr97', 'no_lang_code', 1, 'https://ror.org/02bf3yr97 Euronics Engineering (Czechia)'),
(56960, 'https://ror.org/02bfj0n71', 'no_lang_code', 1, 'https://ror.org/02bfj0n71 Abbott (Ireland)'),
(56961, 'https://ror.org/02bfrst79', 'cs', 1, 'https://ror.org/02bfrst79 Socioklub'),
(56962, 'https://ror.org/02bg32h47', 'no_lang_code', 1, 'https://ror.org/02bg32h47 Natural (Czechia)'),
(56963, 'https://ror.org/02bgabj83', 'en', 1, 'https://ror.org/02bgabj83 Center for Nutrition Policy and Promotion'),
(56964, 'https://ror.org/02bhr4m87', 'en', 1, 'https://ror.org/02bhr4m87 Rodale Institute'),
(56965, 'https://ror.org/02bjeev04', 'en', 1, 'https://ror.org/02bjeev04 Albanian National Training and Technical Assistance Resource Center'),
(56966, 'https://ror.org/02bjrgr44', 'en', 1, 'https://ror.org/02bjrgr44 Scientific Research Institute of the Rubber Industry ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ резиновой ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(56967, 'https://ror.org/02bpbnv34', 'no_lang_code', 1, 'https://ror.org/02bpbnv34 AM–Pharma (Netherlands)'),
(56968, 'https://ror.org/02bq0x116', 'en', 1, 'https://ror.org/02bq0x116 United States Customs and Border Protection'),
(56969, 'https://ror.org/02brgbw95', 'no_lang_code', 1, 'https://ror.org/02brgbw95 Albertina icome Praha (Czechia)'),
(56970, 'https://ror.org/02bskft61', 'no_lang_code', 1, 'https://ror.org/02bskft61 Atotech (United States)'),
(56971, 'https://ror.org/02bspcn72', 'no_lang_code', 1, 'https://ror.org/02bspcn72 Strojírna Novotný (Czechia)'),
(56972, 'https://ror.org/02bsxxg37', 'no_lang_code', 1, 'https://ror.org/02bsxxg37 PAGEPress (Italy)'),
(56973, 'https://ror.org/02bt8gt55', 'fr', 1, 'https://ror.org/02bt8gt55 IMACTIS'),
(56974, 'https://ror.org/02btcwe37', 'no_lang_code', 1, 'https://ror.org/02btcwe37 Vivendi (United States)'),
(56975, 'https://ror.org/02bv9mm66', 'en', 1, 'https://ror.org/02bv9mm66 Eidgenössische Fachkommission für Biologische Sicherheit Swiss Expert Committee for Biosafety'),
(56976, 'https://ror.org/02bvkk348', 'cs', 1, 'https://ror.org/02bvkk348 NƔrodnƭ Akademie RegionƔlnƭho Managementu'),
(56977, 'https://ror.org/02bx6dk74', 'no_lang_code', 1, 'https://ror.org/02bx6dk74 Orbital 2 (Czechia)'),
(56978, 'https://ror.org/02byy6y80', 'en', 1, 'https://ror.org/02byy6y80 Palm Beach Gardens Medical Center'),
(56979, 'https://ror.org/02bz4qp22', 'en', 1, 'https://ror.org/02bz4qp22 Diabetes Research and Wellness Foundation'),
(56980, 'https://ror.org/02bzbbw22', 'no_lang_code', 1, 'https://ror.org/02bzbbw22 LaserTherm (Czechia)'),
(56981, 'https://ror.org/02bzv8r58', 'en', 1, 'https://ror.org/02bzv8r58 American Comparative Literature Association'),
(56982, 'https://ror.org/02c024156', 'no_lang_code', 1, 'https://ror.org/02c024156 Elmet (Czechia)'),
(56983, 'https://ror.org/02c23zs54', 'no_lang_code', 1, 'https://ror.org/02c23zs54 Adidas (Canada)'),
(56984, 'https://ror.org/02c2fwh71', 'en', 1, 'https://ror.org/02c2fwh71 Molecular Medicine Research Institute'),
(56985, 'https://ror.org/02c4b8082', 'no_lang_code', 1, 'https://ror.org/02c4b8082 Velaz (Czechia)'),
(56986, 'https://ror.org/02c51sy34', 'cs', 1, 'https://ror.org/02c51sy34 Ředitelství Silnic a DÔlnic'),
(56987, 'https://ror.org/02c62pw26', 'no_lang_code', 1, 'https://ror.org/02c62pw26 Hosoya Schaefer Architects (Switzerland)'),
(56988, 'https://ror.org/02c7agb90', 'no_lang_code', 1, 'https://ror.org/02c7agb90 Ryor (Czechia)'),
(56989, 'https://ror.org/02c7g6d72', 'en', 1, 'https://ror.org/02c7g6d72 Lauener Foundation for Analytical Philosophy Lauener-Stiftung'),
(56990, 'https://ror.org/02c7hqm03', 'no_lang_code', 1, 'https://ror.org/02c7hqm03 Laboratoires Spiral (France)'),
(56991, 'https://ror.org/02c900574', 'en', 1, 'https://ror.org/02c900574 Powder Metallurgy Institute Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠžŠ ŠžŠØŠšŠžŠ’ŠžŠ™ ŠœŠ•Š¢ŠŠ›Š›Š£Š Š“Š˜Š˜'),
(56992, 'https://ror.org/02c9pqe95', 'en', 1, 'https://ror.org/02c9pqe95 Vidda Foundation'),
(56993, 'https://ror.org/02cbc9x18', 'en', 1, 'https://ror.org/02cbc9x18 Ural Institute of Metals'),
(56994, 'https://ror.org/02cbxva55', 'en', 1, 'https://ror.org/02cbxva55 Wieboldt Foundation'),
(56995, 'https://ror.org/02cdjbt38', 'en', 1, 'https://ror.org/02cdjbt38 S. Mark Taper Foundation'),
(56996, 'https://ror.org/02cf3zf10', 'no_lang_code', 1, 'https://ror.org/02cf3zf10 StrojĆ­rna Tyc (Czechia)'),
(56997, 'https://ror.org/02chg1452', 'no_lang_code', 1, 'https://ror.org/02chg1452 Institut Oenologique de Champagne (France)'),
(56998, 'https://ror.org/02cm3s998', 'de', 1, 'https://ror.org/02cm3s998 Donauspital'),
(56999, 'https://ror.org/02cn3rm21', 'en', 1, 'https://ror.org/02cn3rm21 Ludwig Cancer Research'),
(57000, 'https://ror.org/02crntj88', 'en', 1, 'https://ror.org/02crntj88 Institute of Geology and Nature Management, Far Eastern Branch of the Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ'),
(57001, 'https://ror.org/02csezg26', 'no_lang_code', 1, 'https://ror.org/02csezg26 MND Drilling & Services (Czechia)'),
(57002, 'https://ror.org/02cttc493', 'en', 1, 'https://ror.org/02cttc493 Alliance Forum Foundation'),
(57003, 'https://ror.org/02ctvf237', 'no_lang_code', 1, 'https://ror.org/02ctvf237 SAM Holding (Czechia)'),
(57004, 'https://ror.org/02cv2sp17', 'no_lang_code', 1, 'https://ror.org/02cv2sp17 ASC Instrument (France)'),
(57005, 'https://ror.org/02cvt8e16', 'en', 1, 'https://ror.org/02cvt8e16 Center for Pediatric Endocrinology Zurich Pädiatrisch-Endokrinologisches Zentrum Zürich'),
(57006, 'https://ror.org/02cw1xf64', 'no_lang_code', 1, 'https://ror.org/02cw1xf64 A. KTI (Czechia)'),
(57007, 'https://ror.org/02cxejv02', 'en', 1, 'https://ror.org/02cxejv02 Epilepsy Study Consortium'),
(57008, 'https://ror.org/02cxp1807', 'en', 1, 'https://ror.org/02cxp1807 Denver Zoo'),
(57009, 'https://ror.org/02cxqcz78', 'en', 1, 'https://ror.org/02cxqcz78 Korean Institute of Footwear and Leather Technology ķ•œźµ­ģ‹ ė°œķ”¼ķ˜ģ—°źµ¬ģ›'),
(57010, 'https://ror.org/02cyn6b25', 'cs', 1, 'https://ror.org/02cyn6b25 PelÄĆ”k a Partner Architekti'),
(57011, 'https://ror.org/02cynnb40', 'en', 1, 'https://ror.org/02cynnb40 The American Society of Criminology'),
(57012, 'https://ror.org/02czagv77', 'no_lang_code', 1, 'https://ror.org/02czagv77 SusChem České Technologické Platformy pro Udržitelnou Chemii'),
(57013, 'https://ror.org/02d03yg51', 'no_lang_code', 1, 'https://ror.org/02d03yg51 Poll (Czechia)'),
(57014, 'https://ror.org/02d57p683', 'cs', 1, 'https://ror.org/02d57p683 Administration of the National Park České Švýcarsko'),
(57015, 'https://ror.org/02d5c3630', 'fr', 1, 'https://ror.org/02d5c3630 Institution de Lavigny'),
(57016, 'https://ror.org/02d641m75', 'fr', 1, 'https://ror.org/02d641m75 TƩlƩvie'),
(57017, 'https://ror.org/02d6kc626', 'en', 1, 'https://ror.org/02d6kc626 Olin E. Teague Veterans Medical Center'),
(57018, 'https://ror.org/02d6mgz84', 'en', 1, 'https://ror.org/02d6mgz84 ElƤinlƤƤketieteen Tutkimuksen TukisƤƤtiƶ Finnish Veterinary Foundation'),
(57019, 'https://ror.org/02d7qtk86', 'no_lang_code', 1, 'https://ror.org/02d7qtk86 Parkservis (Czechia)'),
(57020, 'https://ror.org/02d823f39', 'no_lang_code', 1, 'https://ror.org/02d823f39 Trendrail (United KIngdom)'),
(57021, 'https://ror.org/02db0m975', 'en', 1, 'https://ror.org/02db0m975 Sungmo Eye Hospital'),
(57022, 'https://ror.org/02dbdb897', 'no_lang_code', 1, 'https://ror.org/02dbdb897 Ekotechnika (Czechia)'),
(57023, 'https://ror.org/02dc2kg74', 'no_lang_code', 1, 'https://ror.org/02dc2kg74 Aurea Agrosciences (France)'),
(57024, 'https://ror.org/02dddyz58', 'no_lang_code', 1, 'https://ror.org/02dddyz58 Johnson Controls (Czechia)'),
(57025, 'https://ror.org/02ddz0p49', 'no_lang_code', 1, 'https://ror.org/02ddz0p49 Inomech (Czechia)'),
(57026, 'https://ror.org/02dfnfz19', 'en', 1, 'https://ror.org/02dfnfz19 Women''s International League for Peace and Freedom'),
(57027, 'https://ror.org/02dhdj549', 'fr', 1, 'https://ror.org/02dhdj549 Institut et MusƩe des Suisses dans le monde'),
(57028, 'https://ror.org/02dhhnz05', 'no_lang_code', 1, 'https://ror.org/02dhhnz05 Pars Komponenty (Czechia)'),
(57029, 'https://ror.org/02djs4g52', 'no_lang_code', 1, 'https://ror.org/02djs4g52 Moser (Czechia)'),
(57030, 'https://ror.org/02dkk5v76', 'no_lang_code', 1, 'https://ror.org/02dkk5v76 LetiÅ”tě Vodochody (Czechia) Vodochody Airport'),
(57031, 'https://ror.org/02dknz829', 'no_lang_code', 1, 'https://ror.org/02dknz829 Cezea - Å lechtitelskĆ” Stanice (Czechia)'),
(57032, 'https://ror.org/02dkph265', 'en', 1, 'https://ror.org/02dkph265 Russian State Scientific Center for Robotics and Technical Cybernetics Š¦ŠŠ˜Š˜ робототехники Šø технической кибернетики'),
(57033, 'https://ror.org/02dmdfh75', 'no_lang_code', 1, 'https://ror.org/02dmdfh75 2VV (Czechia)'),
(57034, 'https://ror.org/02dmzyv54', 'en', 1, 'https://ror.org/02dmzyv54 Sitka Center for Art and Ecology'),
(57035, 'https://ror.org/02drx6g21', 'en', 1, 'https://ror.org/02drx6g21 The Local Crowd'),
(57036, 'https://ror.org/02dt42634', 'da', 1, 'https://ror.org/02dt42634 Otto MĆønsteds Fond'),
(57037, 'https://ror.org/02dw1m470', 'no_lang_code', 1, 'https://ror.org/02dw1m470 Conteg (Czechia)'),
(57038, 'https://ror.org/02dw90x37', 'de', 1, 'https://ror.org/02dw90x37 Schweizerischer Gewerkschaftsbund Union syndicale suisse Unione sindacale svizzera'),
(57039, 'https://ror.org/02dwsbm05', 'no_lang_code', 1, 'https://ror.org/02dwsbm05 Melet Schloesing Laboratoires (France)'),
(57040, 'https://ror.org/02dzmns02', 'no_lang_code', 1, 'https://ror.org/02dzmns02 Mikrop Čebín (Czechia)'),
(57041, 'https://ror.org/02e18ra65', 'no_lang_code', 1, 'https://ror.org/02e18ra65 Av Engineering (Czechia)'),
(57042, 'https://ror.org/02e281029', 'no_lang_code', 1, 'https://ror.org/02e281029 Institut Ocelových Konstrukcí (Czechia)'),
(57043, 'https://ror.org/02e3p0n79', 'en', 1, 'https://ror.org/02e3p0n79 Washington Square Health Foundation'),
(57044, 'https://ror.org/02e6vz398', 'en', 1, 'https://ror.org/02e6vz398 Agentura regionƔlnƭho rozvoje Regional Development Agency'),
(57045, 'https://ror.org/02e72p904', 'no_lang_code', 1, 'https://ror.org/02e72p904 SGS (Czechia)'),
(57046, 'https://ror.org/02e801388', 'no_lang_code', 1, 'https://ror.org/02e801388 Bio-Competence Centre of Healthy Dairy Products (Estonia) Tervisliku Piima Biotehnoloogiate Arenduskeskus'),
(57047, 'https://ror.org/02e9grz11', 'no_lang_code', 1, 'https://ror.org/02e9grz11 CIMTO (Czechia) Centrum pro informace a mechanické testovÔní obalů'),
(57048, 'https://ror.org/02e9szc72', 'en', 1, 'https://ror.org/02e9szc72 Shahab Danesh University سامانه ها - Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ ؓهاب دانؓ'),
(57049, 'https://ror.org/02eafbm53', 'sv', 1, 'https://ror.org/02eafbm53 Stiftelsen Oscar och Lili Lamms Minne'),
(57050, 'https://ror.org/02ean3b70', 'no_lang_code', 1, 'https://ror.org/02ean3b70 Mvvs (Czechia)'),
(57051, 'https://ror.org/02eas8236', 'no_lang_code', 1, 'https://ror.org/02eas8236 Ernst Leopold (Czechia)'),
(57052, 'https://ror.org/02ebsfr31', 'no_lang_code', 1, 'https://ror.org/02ebsfr31 AGRO StoŔíkovice (Czechia)'),
(57053, 'https://ror.org/02ec6yy56', 'no_lang_code', 1, 'https://ror.org/02ec6yy56 Arkopharma (France)'),
(57054, 'https://ror.org/02ed1t230', 'de', 1, 'https://ror.org/02ed1t230 Sprachatlas der Deutschen Schweiz'),
(57055, 'https://ror.org/02efjfe53', 'cs', 1, 'https://ror.org/02efjfe53 ČeskĆ” KinantropologickĆ” Společnost'),
(57056, 'https://ror.org/02eftzg28', 'no_lang_code', 1, 'https://ror.org/02eftzg28 Sherlog Trace (Czechia)'),
(57057, 'https://ror.org/02efzs521', 'en', 1, 'https://ror.org/02efzs521 United Way of Gratiot & Isabella Counties'),
(57058, 'https://ror.org/02eg7y103', 'fr', 1, 'https://ror.org/02eg7y103 Direction de la SƩcuritƩ et de la Justice'),
(57059, 'https://ror.org/02eh4at60', 'no_lang_code', 1, 'https://ror.org/02eh4at60 VODNI DILA - TBD (Czechia)'),
(57060, 'https://ror.org/02ejgsx19', 'en', 1, 'https://ror.org/02ejgsx19 Ramah Navajo School Board'),
(57061, 'https://ror.org/02en4cz69', 'no_lang_code', 1, 'https://ror.org/02en4cz69 Viapont (Czechia)'),
(57062, 'https://ror.org/02enra703', 'no_lang_code', 1, 'https://ror.org/02enra703 SCL International'),
(57063, 'https://ror.org/02ep9me51', 'en', 1, 'https://ror.org/02ep9me51 Tonbridge School'),
(57064, 'https://ror.org/02ephh346', 'en', 1, 'https://ror.org/02ephh346 Metabrain Research'),
(57065, 'https://ror.org/02eqdmy88', 'en', 1, 'https://ror.org/02eqdmy88 Geological Survey of Kyrgyzstan Š“ŠµŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń служба ŠšŃ‹Ń€Š³Ń‹Š·ŃŃ‚ана'),
(57066, 'https://ror.org/02errzw26', 'en', 1, 'https://ror.org/02errzw26 Cosmetics Europe'),
(57067, 'https://ror.org/02etwv439', 'no_lang_code', 1, 'https://ror.org/02etwv439 Flexisander (Czechia)'),
(57068, 'https://ror.org/02ew8y783', 'no_lang_code', 1, 'https://ror.org/02ew8y783 Magnetic Development (United States)'),
(57069, 'https://ror.org/02ex12682', 'en', 1, 'https://ror.org/02ex12682 Michigan Hand & Wrist'),
(57070, 'https://ror.org/02eyspm09', 'no_lang_code', 1, 'https://ror.org/02eyspm09 Kuiper Medical Instruments (Netherlands) Kuiper Medische Instrumenten'),
(57071, 'https://ror.org/02ez1h514', 'no_lang_code', 1, 'https://ror.org/02ez1h514 Center for Social Research Analitika'),
(57072, 'https://ror.org/02ezey555', 'no_lang_code', 1, 'https://ror.org/02ezey555 Strittmatter Partner (Switzerland)'),
(57073, 'https://ror.org/02f0a4552', 'en', 1, 'https://ror.org/02f0a4552 Czech Scientific Society for Mycology ČeskĆ” VědeckĆ” Společnost Pro Mykologii'),
(57074, 'https://ror.org/02f0cvc21', 'no_lang_code', 1, 'https://ror.org/02f0cvc21 Hestego (Czechia)'),
(57075, 'https://ror.org/02f0n4z35', 'en', 1, 'https://ror.org/02f0n4z35 TechnologickĆ” platforma EnergetickĆ” bezpečnost ČR Technology Platform Energy Security'),
(57076, 'https://ror.org/02f0t3e51', 'en', 1, 'https://ror.org/02f0t3e51 National Center of Space Research and Technology'),
(57077, 'https://ror.org/02f1jpe62', 'en', 1, 'https://ror.org/02f1jpe62 South West Thames Institute for Renal Research'),
(57078, 'https://ror.org/02f1wny42', 'en', 1, 'https://ror.org/02f1wny42 Persian Scholarship Foundation'),
(57079, 'https://ror.org/02f2rgc17', 'en', 1, 'https://ror.org/02f2rgc17 VA Midwest Health Care Network'),
(57080, 'https://ror.org/02f3p0s49', 'de', 1, 'https://ror.org/02f3p0s49 Stockalperstiftung'),
(57081, 'https://ror.org/02f5r3008', 'en', 1, 'https://ror.org/02f5r3008 Stichting Sem Presser Archief'),
(57082, 'https://ror.org/02f66na56', 'no_lang_code', 1, 'https://ror.org/02f66na56 Akzo Nobel (Czechia)'),
(57083, 'https://ror.org/02f6ecw55', 'fr', 1, 'https://ror.org/02f6ecw55 Entreprise de Fournitures et d''Assistance MƩdicale'),
(57084, 'https://ror.org/02faz3r42', 'cs', 1, 'https://ror.org/02faz3r42 VyŔŔí OdbornĆ” Å kola StřednĆ­ PrÅÆmyslovĆ” Å kola'),
(57085, 'https://ror.org/02fcpv249', 'en', 1, 'https://ror.org/02fcpv249 TechnologickÔ Platforma UdržitelnÔ energetika Technology Platform Sustainable Energy for the Czech Republic'),
(57086, 'https://ror.org/02fhcbb53', 'no_lang_code', 1, 'https://ror.org/02fhcbb53 Bio-Rad (United Kingdom)'),
(57087, 'https://ror.org/02fmfgp89', 'no_lang_code', 1, 'https://ror.org/02fmfgp89 Termosondy Kladno (Czechia)'),
(57088, 'https://ror.org/02fmm1979', 'de', 1, 'https://ror.org/02fmm1979 SpitƤler Schaffhausen'),
(57089, 'https://ror.org/02fmtdz23', 'no_lang_code', 1, 'https://ror.org/02fmtdz23 Duckworth & Kent (United Kingdom)'),
(57090, 'https://ror.org/02fmy9v62', 'en', 1, 'https://ror.org/02fmy9v62 Institute of Fruit Tree and Tea Science ęžœęØ¹čŒ¶ę„­ē ”ē©¶éƒØé–€'),
(57091, 'https://ror.org/02fn5yv16', 'no_lang_code', 1, 'https://ror.org/02fn5yv16 KNZ (Czechia)'),
(57092, 'https://ror.org/02fpe5k66', 'en', 1, 'https://ror.org/02fpe5k66 British Institute of Technology and E-commerce'),
(57093, 'https://ror.org/02frayk71', 'no_lang_code', 1, 'https://ror.org/02frayk71 PerkinElmer (Ireland)'),
(57094, 'https://ror.org/02fwjaz02', 'cs', 1, 'https://ror.org/02fwjaz02 Život90'),
(57095, 'https://ror.org/02fwyek38', 'no_lang_code', 1, 'https://ror.org/02fwyek38 Cycleurope (Sweden)'),
(57096, 'https://ror.org/02fx0j357', 'no_lang_code', 1, 'https://ror.org/02fx0j357 Continuous Acquisition and Lifecycle Support (Czechia)'),
(57097, 'https://ror.org/02fy0bw29', 'no_lang_code', 1, 'https://ror.org/02fy0bw29 Remerx (Czechia)'),
(57098, 'https://ror.org/02fyz1125', 'no_lang_code', 1, 'https://ror.org/02fyz1125 AmeriQual Group (United States)'),
(57099, 'https://ror.org/02g2fp141', 'en', 1, 'https://ror.org/02g2fp141 Reinberger Foundation'),
(57100, 'https://ror.org/02g3wex31', 'no_lang_code', 1, 'https://ror.org/02g3wex31 HalĆ­Å™ A DiviÅ” (Czechia)'),
(57101, 'https://ror.org/02g63mv84', 'no_lang_code', 1, 'https://ror.org/02g63mv84 Strabag Rail (Czechia)'),
(57102, 'https://ror.org/02g867t84', 'no_lang_code', 1, 'https://ror.org/02g867t84 Impact Instruments (South Africa)'),
(57103, 'https://ror.org/02g8ke488', 'en', 1, 'https://ror.org/02g8ke488 VA Sunshine Healthcare Network'),
(57104, 'https://ror.org/02g9eyr35', 'de', 1, 'https://ror.org/02g9eyr35 Forum für Zeitfragen'),
(57105, 'https://ror.org/02gb0nx59', 'no_lang_code', 1, 'https://ror.org/02gb0nx59 Centre d''Orthro-Podologie & d''OrthopƩdie Thion Medical (France)'),
(57106, 'https://ror.org/02gb28e58', 'no_lang_code', 1, 'https://ror.org/02gb28e58 HƤssig Sustech (Switzerland)'),
(57107, 'https://ror.org/02gbye032', 'no_lang_code', 1, 'https://ror.org/02gbye032 Medkonsult (Czechia)'),
(57108, 'https://ror.org/02gcrjm32', 'fr', 1, 'https://ror.org/02gcrjm32 MƩthode Jeanne Piaubert institute'),
(57109, 'https://ror.org/02gfxpt49', 'en', 1, 'https://ror.org/02gfxpt49 Seasteading Institute'),
(57110, 'https://ror.org/02ghcyg39', 'en', 1, 'https://ror.org/02ghcyg39 LƤkemedelsakademin Swedish Academy of Pharmaceutical Sciences'),
(57111, 'https://ror.org/02ghv2v70', 'no_lang_code', 1, 'https://ror.org/02ghv2v70 Statek HornĆ­ Dvorce (Czechia)'),
(57112, 'https://ror.org/02gk2rq91', 'fr', 1, 'https://ror.org/02gk2rq91 Ɖcole Secondaire de Nyon Marens'),
(57113, 'https://ror.org/02gkjb077', 'no_lang_code', 1, 'https://ror.org/02gkjb077 EVC Group (Czechia)'),
(57114, 'https://ror.org/02gktfy53', 'no_lang_code', 1, 'https://ror.org/02gktfy53 Tyrolit (Czechia)'),
(57115, 'https://ror.org/02gkttc21', 'no_lang_code', 1, 'https://ror.org/02gkttc21 Atelier T plan (Czechia)'),
(57116, 'https://ror.org/02gkvw867', 'no_lang_code', 1, 'https://ror.org/02gkvw867 Zemcheba (Czechia)'),
(57117, 'https://ror.org/02gkz9k46', 'no_lang_code', 1, 'https://ror.org/02gkz9k46 Kvados (Czechia)'),
(57118, 'https://ror.org/02gmhaq29', 'de', 1, 'https://ror.org/02gmhaq29 Gerichte Zürich'),
(57119, 'https://ror.org/02gn6ta77', 'en', 1, 'https://ror.org/02gn6ta77 Isaac Newton Trust'),
(57120, 'https://ror.org/02gq5b653', 'no_lang_code', 1, 'https://ror.org/02gq5b653 Electro Automation (Ireland)'),
(57121, 'https://ror.org/02gqwrx54', 'no_lang_code', 1, 'https://ror.org/02gqwrx54 Digiteo'),
(57122, 'https://ror.org/02gsfpt44', 'no_lang_code', 1, 'https://ror.org/02gsfpt44 Pragochema (Czechia)'),
(57123, 'https://ror.org/02gvfwj85', 'en', 1, 'https://ror.org/02gvfwj85 Jilin Province Youth Development Foundation å‰ęž—ēœé’å°‘å¹“å‘å±•åŸŗé‡‘ä¼š'),
(57124, 'https://ror.org/02gw7aa83', 'no_lang_code', 1, 'https://ror.org/02gw7aa83 Alimpex Food (Czechia)'),
(57125, 'https://ror.org/02gx1h855', 'no_lang_code', 1, 'https://ror.org/02gx1h855 Mediap (Czechia)'),
(57126, 'https://ror.org/02gx53y06', 'no_lang_code', 1, 'https://ror.org/02gx53y06 Ab Medica (France)'),
(57127, 'https://ror.org/02gyk4017', 'no_lang_code', 1, 'https://ror.org/02gyk4017 Espace Morava (Czechia)'),
(57128, 'https://ror.org/02h3yx664', 'no_lang_code', 1, 'https://ror.org/02h3yx664 Protean (Czechia)'),
(57129, 'https://ror.org/02h4pfs82', 'en', 1, 'https://ror.org/02h4pfs82 Institute of Industrial Engineering'),
(57130, 'https://ror.org/02h5et257', 'no_lang_code', 1, 'https://ror.org/02h5et257 Koma (Czechia)'),
(57131, 'https://ror.org/02h6xem40', 'en', 1, 'https://ror.org/02h6xem40 Czech Society for Nutrition Společnost pro výživu'),
(57132, 'https://ror.org/02h71tm83', 'en', 1, 'https://ror.org/02h71tm83 SME Education Foundation'),
(57133, 'https://ror.org/02hb3dy29', 'cs', 1, 'https://ror.org/02hb3dy29 Asociace Českých a Slovenských Zinkoven'),
(57134, 'https://ror.org/02hbm4s94', 'no_lang_code', 1, 'https://ror.org/02hbm4s94 Dover (France)'),
(57135, 'https://ror.org/02hbskw66', 'en', 1, 'https://ror.org/02hbskw66 Central Institute for Women in Agriculture'),
(57136, 'https://ror.org/02hce2n63', 'it', 1, 'https://ror.org/02hce2n63 Biblioteca Cantonale di Lugano'),
(57137, 'https://ror.org/02hdsgf16', 'no_lang_code', 1, 'https://ror.org/02hdsgf16 Cereon Biotechnology (United States)'),
(57138, 'https://ror.org/02hekez22', 'en', 1, 'https://ror.org/02hekez22 Sport Foundation'),
(57139, 'https://ror.org/02hfcar63', 'en', 1, 'https://ror.org/02hfcar63 Directorate General of Commercial Intelligence and Statistics'),
(57140, 'https://ror.org/02hg9fh47', 'no_lang_code', 1, 'https://ror.org/02hg9fh47 Univerza (Czechia)'),
(57141, 'https://ror.org/02hhv3y44', 'no_lang_code', 1, 'https://ror.org/02hhv3y44 Speltronic (Czechia)'),
(57142, 'https://ror.org/02hmf0879', 'en', 1, 'https://ror.org/02hmf0879 Northern Sydney Local Health District'),
(57143, 'https://ror.org/02hqqcn82', 'en', 1, 'https://ror.org/02hqqcn82 VA Eastern Kansas Health Care System'),
(57144, 'https://ror.org/02hswyz47', 'no_lang_code', 1, 'https://ror.org/02hswyz47 Next Generation Technology (United States)'),
(57145, 'https://ror.org/02hv5e369', 'no_lang_code', 1, 'https://ror.org/02hv5e369 Roche (China)'),
(57146, 'https://ror.org/02hyvpg31', 'no_lang_code', 1, 'https://ror.org/02hyvpg31 Foxconn (Cayman Islands)'),
(57147, 'https://ror.org/02hzadm05', 'cs', 1, 'https://ror.org/02hzadm05 RybÔřstvĆ­ KardaÅ”ova Řečice'),
(57148, 'https://ror.org/02j12yp62', 'no_lang_code', 1, 'https://ror.org/02j12yp62 Elsklo (Czechia)'),
(57149, 'https://ror.org/02j4h8a39', 'pt', 1, 'https://ror.org/02j4h8a39 BoticÔrio Group Foundation, Fundação Grupo BoticÔrio'),
(57150, 'https://ror.org/02j572e46', 'no_lang_code', 1, 'https://ror.org/02j572e46 Danaher (Ireland)'),
(57151, 'https://ror.org/02j5hfj76', 'fr', 1, 'https://ror.org/02j5hfj76 Department of Education, Youth and Culture DƩpartement de la Formation, de la Jeunesse et de la Culture'),
(57152, 'https://ror.org/02j5xfp60', 'no_lang_code', 1, 'https://ror.org/02j5xfp60 AOMB Intellectual Property (Netherlands)'),
(57153, 'https://ror.org/02j6sa144', 'no_lang_code', 1, 'https://ror.org/02j6sa144 Protip Medical (France)'),
(57154, 'https://ror.org/02j716y15', 'de', 1, 'https://ror.org/02j716y15 Kantonsschule Alpenquai Luzern'),
(57155, 'https://ror.org/02j9na081', 'no_lang_code', 1, 'https://ror.org/02j9na081 Vodní zdroje HoleŔov (Czechia)'),
(57156, 'https://ror.org/02ja02d95', 'no_lang_code', 1, 'https://ror.org/02ja02d95 Dr Heinrich JƤckli (Switzerland)'),
(57157, 'https://ror.org/02ja04815', 'no_lang_code', 1, 'https://ror.org/02ja04815 Druchema (Czechia)'),
(57158, 'https://ror.org/02jasgp09', 'en', 1, 'https://ror.org/02jasgp09 Wasie Foundation'),
(57159, 'https://ror.org/02jcwga55', 'es', 1, 'https://ror.org/02jcwga55 Federación Alba Andalucía'),
(57160, 'https://ror.org/02jehgd93', 'en', 1, 'https://ror.org/02jehgd93 Singapore International Foundation Yayasan Antarabangsa Singapura ę–°åŠ å”å›½é™…åŸŗé‡‘ä¼š'),
(57161, 'https://ror.org/02jj87h97', 'no_lang_code', 1, 'https://ror.org/02jj87h97 Elcotherm (Switzerland)'),
(57162, 'https://ror.org/02jkjsy62', 'en', 1, 'https://ror.org/02jkjsy62 S. D. Bechtel, Jr. Foundation'),
(57163, 'https://ror.org/02jkxh593', 'no_lang_code', 1, 'https://ror.org/02jkxh593 Tocoen (Czechia)'),
(57164, 'https://ror.org/02jkzvy92', 'no_lang_code', 1, 'https://ror.org/02jkzvy92 Continental (Canada)'),
(57165, 'https://ror.org/02jmdhd96', 'no_lang_code', 1, 'https://ror.org/02jmdhd96 Unidataz (Czechia)'),
(57166, 'https://ror.org/02jmje486', 'cs', 1, 'https://ror.org/02jmje486 DětskĆ© Centrum Paprsek'),
(57167, 'https://ror.org/02jpkyy67', 'no_lang_code', 1, 'https://ror.org/02jpkyy67 GeodƩzie Topos (Czechia)'),
(57168, 'https://ror.org/02jpm4g18', 'no_lang_code', 1, 'https://ror.org/02jpm4g18 Grant Instruments (United Kingdom)'),
(57169, 'https://ror.org/02jqm1g69', 'no_lang_code', 1, 'https://ror.org/02jqm1g69 Biotronik (Switzerland)'),
(57170, 'https://ror.org/02jrc9g69', 'fr', 1, 'https://ror.org/02jrc9g69 Gouvernement Princier'),
(57171, 'https://ror.org/02jtr7413', 'no_lang_code', 1, 'https://ror.org/02jtr7413 Takasago (United States)'),
(57172, 'https://ror.org/02jv3yx22', 'en', 1, 'https://ror.org/02jv3yx22 G.V. Karpenko Physical-Mechanical Institute Š¤Š†Š—Š˜ŠšŠž-ŠœŠ•Š„ŠŠŠ†Š§ŠŠ˜Š™ Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ Š†Šœ. Š“.Š’. ŠšŠŠ ŠŸŠ•ŠŠšŠ ŠAH Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(57173, 'https://ror.org/02jvzs806', 'en', 1, 'https://ror.org/02jvzs806 East Midlands Academic Health Science Network'),
(57174, 'https://ror.org/02jx9xx30', 'en', 1, 'https://ror.org/02jx9xx30 One in Five Association'),
(57175, 'https://ror.org/02jygx492', 'cs', 1, 'https://ror.org/02jygx492 Museum of Kroměříž'),
(57176, 'https://ror.org/02jz7nx66', 'en', 1, 'https://ror.org/02jz7nx66 Stillbirth Foundation'),
(57177, 'https://ror.org/02jzd3t55', 'no_lang_code', 1, 'https://ror.org/02jzd3t55 KP Projekt (Czechia)'),
(57178, 'https://ror.org/02k0pre66', 'no_lang_code', 1, 'https://ror.org/02k0pre66 StrojĆ­rny Bohdalice (Czechia)'),
(57179, 'https://ror.org/02k13v236', 'no_lang_code', 1, 'https://ror.org/02k13v236 Komutex (Czechia)'),
(57180, 'https://ror.org/02k1h3369', 'fr', 1, 'https://ror.org/02k1h3369 Institut de Recherche Fondamentale en Technologies Solaire'),
(57181, 'https://ror.org/02k45v753', 'no_lang_code', 1, 'https://ror.org/02k45v753 Vossloh (France)'),
(57182, 'https://ror.org/02k4dcs46', 'en', 1, 'https://ror.org/02k4dcs46 National Engineering Research Center of Electromagnetic Radiation Control Materials å›½å®¶ē”µē£č¾å°„ęŽ§åˆ¶ęę–™å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(57183, 'https://ror.org/02k4k2v28', 'fr', 1, 'https://ror.org/02k4k2v28 Office MƩdico PƩdagogique'),
(57184, 'https://ror.org/02k520m42', 'de', 1, 'https://ror.org/02k520m42 Imamed Radiologie Nordwest'),
(57185, 'https://ror.org/02k58vv46', 'en', 1, 'https://ror.org/02k58vv46 Institute for Work Research and Organizational Consultancy'),
(57186, 'https://ror.org/02k7tdq49', 'no_lang_code', 1, 'https://ror.org/02k7tdq49 Pokorný (Czechia)'),
(57187, 'https://ror.org/02k7w8856', 'de', 1, 'https://ror.org/02k7w8856 Keramikinstitut'),
(57188, 'https://ror.org/02k8hq379', 'no_lang_code', 1, 'https://ror.org/02k8hq379 Berman Group (Czechia)'),
(57189, 'https://ror.org/02k944677', 'no_lang_code', 1, 'https://ror.org/02k944677 Mero Čr (Czechia)'),
(57190, 'https://ror.org/02k9nmp07', 'en', 1, 'https://ror.org/02k9nmp07 Radiological Society of Finland Suomen Radiologiyhdistys'),
(57191, 'https://ror.org/02kdrgt12', 'da', 1, 'https://ror.org/02kdrgt12 A.P. MĆøller og Hustru Chastine Mc-Kinney MĆøllers Fond'),
(57192, 'https://ror.org/02keacx90', 'de', 1, 'https://ror.org/02keacx90 Kompetenzzentrum Gesundheit und Alter'),
(57193, 'https://ror.org/02kez5066', 'no_lang_code', 1, 'https://ror.org/02kez5066 Backer Elektro (Czechia)'),
(57194, 'https://ror.org/02kh7ez55', 'no_lang_code', 1, 'https://ror.org/02kh7ez55 Thomson Reuters (Switzerland)'),
(57195, 'https://ror.org/02knn1508', 'en', 1, 'https://ror.org/02knn1508 Research and Technological Institute of Biological Industry Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологической ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(57196, 'https://ror.org/02kpcqm42', 'no_lang_code', 1, 'https://ror.org/02kpcqm42 Tesla (United States)'),
(57197, 'https://ror.org/02kq0w941', 'en', 1, 'https://ror.org/02kq0w941 All-Russian Scientific Research Institute of metallurgical heat Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¹ теплотехники'),
(57198, 'https://ror.org/02kq92y46', 'en', 1, 'https://ror.org/02kq92y46 Shanghai Education Development Foundation äøŠęµ·åø‚ę•™č‚²å‘å±•åŸŗé‡‘ä¼š'),
(57199, 'https://ror.org/02kqef212', 'en', 1, 'https://ror.org/02kqef212 Spark Imagination and Science Center'),
(57200, 'https://ror.org/02kqmq412', 'no_lang_code', 1, 'https://ror.org/02kqmq412 Hitachi (South Korea) ķžˆķƒ€ģ¹˜'),
(57201, 'https://ror.org/02kqtfa81', 'en', 1, 'https://ror.org/02kqtfa81 Medical Solutions'),
(57202, 'https://ror.org/02krcbc65', 'no_lang_code', 1, 'https://ror.org/02krcbc65 ABB (Japan)'),
(57203, 'https://ror.org/02krm5y67', 'no_lang_code', 1, 'https://ror.org/02krm5y67 Prague Casting Services (Czechia)'),
(57204, 'https://ror.org/02krq1637', 'no_lang_code', 1, 'https://ror.org/02krq1637 Parker Hannifin (France)'),
(57205, 'https://ror.org/02ktqga51', 'no_lang_code', 1, 'https://ror.org/02ktqga51 Euroseal (Czechia)'),
(57206, 'https://ror.org/02kv04939', 'en', 1, 'https://ror.org/02kv04939 Zhengzhou City Science and Technology Bureau éƒ‘å·žåø‚ē§‘ęŠ€å±€'),
(57207, 'https://ror.org/02kvhs631', 'en', 1, 'https://ror.org/02kvhs631 Benson-Henry Institute'),
(57208, 'https://ror.org/02kx3za73', 'no_lang_code', 1, 'https://ror.org/02kx3za73 Alfarma (Czechia)'),
(57209, 'https://ror.org/02kx4r613', 'en', 1, 'https://ror.org/02kx4r613 Girvan Institute of Technology'),
(57210, 'https://ror.org/02kxz7t24', 'no_lang_code', 1, 'https://ror.org/02kxz7t24 NWT (Czechia)'),
(57211, 'https://ror.org/02ky4wg41', 'no_lang_code', 1, 'https://ror.org/02ky4wg41 Asekol (Czechia)'),
(57212, 'https://ror.org/02m0v4a06', 'no_lang_code', 1, 'https://ror.org/02m0v4a06 Atos (United States)'),
(57213, 'https://ror.org/02m1c9x13', 'no_lang_code', 1, 'https://ror.org/02m1c9x13 Kellogg’s Research Labs (United States)'),
(57214, 'https://ror.org/02m4t4k66', 'en', 1, 'https://ror.org/02m4t4k66 Asociace Pro Vodu ČR Czech Water Association'),
(57215, 'https://ror.org/02m5hv882', 'no_lang_code', 1, 'https://ror.org/02m5hv882 Saline Water Conversion Corporation'),
(57216, 'https://ror.org/02m6rz291', 'no_lang_code', 1, 'https://ror.org/02m6rz291 CHA Vaccine Institute (South Korea)'),
(57217, 'https://ror.org/02m7dbt89', 'no_lang_code', 1, 'https://ror.org/02m7dbt89 Danaher (Switzerland)'),
(57218, 'https://ror.org/02m7qby09', 'no_lang_code', 1, 'https://ror.org/02m7qby09 Nuxe (France)'),
(57219, 'https://ror.org/02mahq469', 'en', 1, 'https://ror.org/02mahq469 Sri Lanka College of Paediatricians'),
(57220, 'https://ror.org/02mbgxz16', 'en', 1, 'https://ror.org/02mbgxz16 Tommy Fuss Fund'),
(57221, 'https://ror.org/02mchxt20', 'en', 1, 'https://ror.org/02mchxt20 Fondation du Nord en cancƩrologie Northern Cancer Foundation'),
(57222, 'https://ror.org/02md09461', 'en', 1, 'https://ror.org/02md09461 World Bank Group'),
(57223, 'https://ror.org/02md2rw68', 'no_lang_code', 1, 'https://ror.org/02md2rw68 Logis (Czechia)'),
(57224, 'https://ror.org/02mf43q40', 'en', 1, 'https://ror.org/02mf43q40 Community Action of Skagit County'),
(57225, 'https://ror.org/02mfb9z52', 'no_lang_code', 1, 'https://ror.org/02mfb9z52 Geomin (Czechia)'),
(57226, 'https://ror.org/02mfcc374', 'no_lang_code', 1, 'https://ror.org/02mfcc374 Živa (Czechia)'),
(57227, 'https://ror.org/02mgem015', 'no_lang_code', 1, 'https://ror.org/02mgem015 Abegu (Czechia)'),
(57228, 'https://ror.org/02mh2m364', 'no_lang_code', 1, 'https://ror.org/02mh2m364 Vupek - Economy (Czechia)'),
(57229, 'https://ror.org/02mkhqe40', 'de', 1, 'https://ror.org/02mkhqe40 Krisenintervention Schweiz'),
(57230, 'https://ror.org/02mkwcf87', 'id', 1, 'https://ror.org/02mkwcf87 Badan Penelitian dan Pengembangan Kesehatan'),
(57231, 'https://ror.org/02mn08y26', 'en', 1, 'https://ror.org/02mn08y26 Ordnance Engineering College 中国人民解放军军械巄程学院'),
(57232, 'https://ror.org/02mnc6m50', 'cs', 1, 'https://ror.org/02mnc6m50 PolabskƩ Muzeum'),
(57233, 'https://ror.org/02mpqfe95', 'no_lang_code', 1, 'https://ror.org/02mpqfe95 GeoExpert (Switzerland)'),
(57234, 'https://ror.org/02mt5a451', 'no_lang_code', 1, 'https://ror.org/02mt5a451 Ferro OK (Czechia)'),
(57235, 'https://ror.org/02mtcrz14', 'fr', 1, 'https://ror.org/02mtcrz14 Enilia Ensmic'),
(57236, 'https://ror.org/02mtem749', 'no_lang_code', 1, 'https://ror.org/02mtem749 Airfoils (United States)'),
(57237, 'https://ror.org/02mw71d90', 'no_lang_code', 1, 'https://ror.org/02mw71d90 Realistic (Czechia)'),
(57238, 'https://ror.org/02mw9as30', 'de', 1, 'https://ror.org/02mw9as30 Neues Museum Biel'),
(57239, 'https://ror.org/02n1y8269', 'en', 1, 'https://ror.org/02n1y8269 Wales Institute of Cognitive Neuroscience'),
(57240, 'https://ror.org/02n2bgz18', 'en', 1, 'https://ror.org/02n2bgz18 Institute of Plasma Physics Istituto di Fisica del Plasma "Piero Caldirola"'),
(57241, 'https://ror.org/02n35gd31', 'fi', 1, 'https://ror.org/02n35gd31 KH Renlundin sƤƤtiƶ'),
(57242, 'https://ror.org/02n50e113', 'no_lang_code', 1, 'https://ror.org/02n50e113 Atro Rýmařov (Czechia)'),
(57243, 'https://ror.org/02n6s9z93', 'no_lang_code', 1, 'https://ror.org/02n6s9z93 G M Chemie (Czechia)'),
(57244, 'https://ror.org/02n79p323', 'no_lang_code', 1, 'https://ror.org/02n79p323 ib1.cz (Czechia)'),
(57245, 'https://ror.org/02n7vdk57', 'no_lang_code', 1, 'https://ror.org/02n7vdk57 Soundtherm (Switzerland)'),
(57246, 'https://ror.org/02najqa65', 'en', 1, 'https://ror.org/02najqa65 Thrivent Financial'),
(57247, 'https://ror.org/02nbjdt61', 'en', 1, 'https://ror.org/02nbjdt61 Defense Contract Audit Agency'),
(57248, 'https://ror.org/02ncc5r18', 'no_lang_code', 1, 'https://ror.org/02ncc5r18 Mondelēz International (Germany)'),
(57249, 'https://ror.org/02neeny91', 'no_lang_code', 1, 'https://ror.org/02neeny91 AWK (Switzerland)'),
(57250, 'https://ror.org/02nephp76', 'no_lang_code', 1, 'https://ror.org/02nephp76 Gilson (United Kingdom)'),
(57251, 'https://ror.org/02netwe45', 'en', 1, 'https://ror.org/02netwe45 National Institute of Research on Jute and Allied Fibre Technology'),
(57252, 'https://ror.org/02nf56k69', 'cs', 1, 'https://ror.org/02nf56k69 Galerie Klatovy'),
(57253, 'https://ror.org/02nfy1824', 'no_lang_code', 1, 'https://ror.org/02nfy1824 Eurofins (Czechia)'),
(57254, 'https://ror.org/02ngeps21', 'no_lang_code', 1, 'https://ror.org/02ngeps21 Garmin (Czechia)'),
(57255, 'https://ror.org/02nj3nr70', 'en', 1, 'https://ror.org/02nj3nr70 Caucasus Institute for Peace, Democracy and Development'),
(57256, 'https://ror.org/02njr9k66', 'no_lang_code', 1, 'https://ror.org/02njr9k66 FWRadiology'),
(57257, 'https://ror.org/02nmt8y10', 'no_lang_code', 1, 'https://ror.org/02nmt8y10 Hillrom (Australia)'),
(57258, 'https://ror.org/02nn2c651', 'no_lang_code', 1, 'https://ror.org/02nn2c651 Stavos Brno (Czechia)'),
(57259, 'https://ror.org/02nntm845', 'it', 1, 'https://ror.org/02nntm845 Inclusione Andicap Ticino'),
(57260, 'https://ror.org/02nnywp42', 'en', 1, 'https://ror.org/02nnywp42 North Carolina Department of Public Safety'),
(57261, 'https://ror.org/02nq7pz60', 'no_lang_code', 1, 'https://ror.org/02nq7pz60 Hedva (Czechia)'),
(57262, 'https://ror.org/02ns75z54', 'en', 1, 'https://ror.org/02ns75z54 Society for Research into Higher Education'),
(57263, 'https://ror.org/02nta4587', 'it', 1, 'https://ror.org/02nta4587 Museo Civico Villa dei Cedri'),
(57264, 'https://ror.org/02ntvem14', 'en', 1, 'https://ror.org/02ntvem14 Siragusa Family Foundation'),
(57265, 'https://ror.org/02nvfeg84', 'en', 1, 'https://ror.org/02nvfeg84 Marble Arch Medical Centre'),
(57266, 'https://ror.org/02nw2dj06', 'no_lang_code', 1, 'https://ror.org/02nw2dj06 3E Praha Engineering (Czechia)'),
(57267, 'https://ror.org/02nwjr777', 'cs', 1, 'https://ror.org/02nwjr777 Spolek PRO BIO PoradenstvĆ­'),
(57268, 'https://ror.org/02nx6st79', 'no_lang_code', 1, 'https://ror.org/02nx6st79 Eloret (United States)'),
(57269, 'https://ror.org/02ny9ar26', 'no_lang_code', 1, 'https://ror.org/02ny9ar26 Escape Therapeutics (United States)'),
(57270, 'https://ror.org/02p0kfv62', 'no_lang_code', 1, 'https://ror.org/02p0kfv62 Ekozink Praha (Czechia)'),
(57271, 'https://ror.org/02p1epn78', 'no_lang_code', 1, 'https://ror.org/02p1epn78 Soair (United States)'),
(57272, 'https://ror.org/02p1hm914', 'no_lang_code', 1, 'https://ror.org/02p1hm914 AgriKomp Bohemia (Czechia)'),
(57273, 'https://ror.org/02p2rdc82', 'no_lang_code', 1, 'https://ror.org/02p2rdc82 Green Solution (Czechia)'),
(57274, 'https://ror.org/02p2x4d36', 'en', 1, 'https://ror.org/02p2x4d36 SIDS Calgary Society'),
(57275, 'https://ror.org/02p2xd472', 'en', 1, 'https://ror.org/02p2xd472 Stockbridge Munsee Tribal Council'),
(57276, 'https://ror.org/02p481x03', 'de', 1, 'https://ror.org/02p481x03 Institut für Bioanalytik, Umwelt-Toxikologie und Biotechnologie Halle'),
(57277, 'https://ror.org/02p4b8678', 'cs', 1, 'https://ror.org/02p4b8678 Český Svaz Včelařů'),
(57278, 'https://ror.org/02p4zk941', 'cs', 1, 'https://ror.org/02p4zk941 Nemocnice Sokolov'),
(57279, 'https://ror.org/02p85dj71', 'no_lang_code', 1, 'https://ror.org/02p85dj71 Geo7 (Switzerland)'),
(57280, 'https://ror.org/02p8rkx70', 'en', 1, 'https://ror.org/02p8rkx70 Foundation for Orthopaedic Research and Education'),
(57281, 'https://ror.org/02p9aa336', 'fr', 1, 'https://ror.org/02p9aa336 Office de la Culture Section d''archƩologie et PalƩontologie'),
(57282, 'https://ror.org/02pa5jt63', 'no_lang_code', 1, 'https://ror.org/02pa5jt63 Twente Medical Systems International (Netherlands)'),
(57283, 'https://ror.org/02pasr011', 'no_lang_code', 1, 'https://ror.org/02pasr011 Teaz (Czechia)'),
(57284, 'https://ror.org/02pax0k58', 'fr', 1, 'https://ror.org/02pax0k58 Centre InterrƩgional de Perfectionnement'),
(57285, 'https://ror.org/02pb4ss95', 'cs', 1, 'https://ror.org/02pb4ss95 ČeskÔ Hlava'),
(57286, 'https://ror.org/02pb4xx87', 'cs', 1, 'https://ror.org/02pb4xx87 Zdravotní Ústav Se Sídlem v Ústí nad Labem'),
(57287, 'https://ror.org/02pd51s17', 'en', 1, 'https://ror.org/02pd51s17 Perth Childrens Hospital Foundation'),
(57288, 'https://ror.org/02pdcxe11', 'no_lang_code', 1, 'https://ror.org/02pdcxe11 Int''Air Medical (France)'),
(57289, 'https://ror.org/02pe0yp46', 'cs', 1, 'https://ror.org/02pe0yp46 JIC'),
(57290, 'https://ror.org/02pegt135', 'no_lang_code', 1, 'https://ror.org/02pegt135 Helioscreen (France)'),
(57291, 'https://ror.org/02pfqzk70', 'no_lang_code', 1, 'https://ror.org/02pfqzk70 Galatek (Czechia)'),
(57292, 'https://ror.org/02pgy4q18', 'no_lang_code', 1, 'https://ror.org/02pgy4q18 Noza (Czechia)'),
(57293, 'https://ror.org/02phgvp38', 'en', 1, 'https://ror.org/02phgvp38 Dřevařský Ćŗstav Timber Institute'),
(57294, 'https://ror.org/02phptz08', 'no_lang_code', 1, 'https://ror.org/02phptz08 Eutit (Czechia)'),
(57295, 'https://ror.org/02pmyyv54', 'en', 1, 'https://ror.org/02pmyyv54 William G McGowan Charitable Fund'),
(57296, 'https://ror.org/02pp0vd17', 'no_lang_code', 1, 'https://ror.org/02pp0vd17 Toma (Czechia)'),
(57297, 'https://ror.org/02pqxz266', 'en', 1, 'https://ror.org/02pqxz266 STROKE-Riksfƶrbundet Swedish Stroke Association'),
(57298, 'https://ror.org/02prt1r25', 'no_lang_code', 1, 'https://ror.org/02prt1r25 Amdocs (Cyprus)'),
(57299, 'https://ror.org/02ps7ts75', 'no_lang_code', 1, 'https://ror.org/02ps7ts75 MGE Data (Czechia)'),
(57300, 'https://ror.org/02pt0wv95', 'en', 1, 'https://ror.org/02pt0wv95 Centre for Training and Integrated Research In ASAL Development'),
(57301, 'https://ror.org/02pw0we48', 'no_lang_code', 1, 'https://ror.org/02pw0we48 Pure Bohemia (Czechia)'),
(57302, 'https://ror.org/02pw80027', 'cs', 1, 'https://ror.org/02pw80027 Nemocnice VyŔkov'),
(57303, 'https://ror.org/02pycb953', 'no_lang_code', 1, 'https://ror.org/02pycb953 Biophytis (France)'),
(57304, 'https://ror.org/02pyvsr17', 'en', 1, 'https://ror.org/02pyvsr17 Falk Foundation'),
(57305, 'https://ror.org/02q4y5974', 'no_lang_code', 1, 'https://ror.org/02q4y5974 Laboratoire Odost (France)'),
(57306, 'https://ror.org/02q5hpt66', 'en', 1, 'https://ror.org/02q5hpt66 Shazhou Professional Institute Of Technology ę²™ę“²čŒäøšå·„å­¦é™¢'),
(57307, 'https://ror.org/02q600s42', 'no_lang_code', 1, 'https://ror.org/02q600s42 Luciol Instruments (Switzerland)'),
(57308, 'https://ror.org/02q6y5t34', 'cs', 1, 'https://ror.org/02q6y5t34 TýmovÔ iniciativa pro místní udržitelný rozvoj'),
(57309, 'https://ror.org/02q7wh890', 'no_lang_code', 1, 'https://ror.org/02q7wh890 J-VST (Czechia)'),
(57310, 'https://ror.org/02qa5kg76', 'en', 1, 'https://ror.org/02qa5kg76 Australian Regenerative Medicine Institute'),
(57311, 'https://ror.org/02qab6y19', 'en', 1, 'https://ror.org/02qab6y19 China Environmental Protection Foundation'),
(57312, 'https://ror.org/02qcz1b43', 'en', 1, 'https://ror.org/02qcz1b43 Voronezh State Institute of Physical Culture Воронежский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(57313, 'https://ror.org/02qd9nw41', 'no_lang_code', 1, 'https://ror.org/02qd9nw41 Å kola Welding (Czechia)'),
(57314, 'https://ror.org/02qff3310', 'no_lang_code', 1, 'https://ror.org/02qff3310 Cosmalia (France)'),
(57315, 'https://ror.org/02qh8xh72', 'no_lang_code', 1, 'https://ror.org/02qh8xh72 Dow Chemical (India)'),
(57316, 'https://ror.org/02qhkmh27', 'en', 1, 'https://ror.org/02qhkmh27 USDA Rural Development'),
(57317, 'https://ror.org/02qkvsy66', 'en', 1, 'https://ror.org/02qkvsy66 Cityzen Sciences'),
(57318, 'https://ror.org/02qmwr629', 'en', 1, 'https://ror.org/02qmwr629 Wallace Genetic Foundation'),
(57319, 'https://ror.org/02qsttk04', 'no_lang_code', 1, 'https://ror.org/02qsttk04 AQUAdem (Czechia)'),
(57320, 'https://ror.org/02qt0dk86', 'en', 1, 'https://ror.org/02qt0dk86 Horonobe Research Institute for the Subsurface Environment'),
(57321, 'https://ror.org/02qvg6n57', 'no_lang_code', 1, 'https://ror.org/02qvg6n57 PROFiber Networking (Czechia)'),
(57322, 'https://ror.org/02qvj8k32', 'de', 1, 'https://ror.org/02qvj8k32 Schweizerische Bundeskanzlei'),
(57323, 'https://ror.org/02qwqb112', 'en', 1, 'https://ror.org/02qwqb112 Veterinary Diagnostics Institute'),
(57324, 'https://ror.org/02qyrzz82', 'no_lang_code', 1, 'https://ror.org/02qyrzz82 I2L Research (Czechia)'),
(57325, 'https://ror.org/02qz5d088', 'no_lang_code', 1, 'https://ror.org/02qz5d088 Heraeus (Belgium)'),
(57326, 'https://ror.org/02r08m051', 'de', 1, 'https://ror.org/02r08m051 Vereinigung Analytischer Kinder- und Jugendlichen-Psychotherapeuten'),
(57327, 'https://ror.org/02r10ma13', 'no_lang_code', 1, 'https://ror.org/02r10ma13 IHI Corporation (Czechia)'),
(57328, 'https://ror.org/02r3xd587', 'en', 1, 'https://ror.org/02r3xd587 Central Research Institute of Geological Prospecting for Base and Precious Metals'),
(57329, 'https://ror.org/02r3z7548', 'en', 1, 'https://ror.org/02r3z7548 Foundation for People with Rare Diseases Stiftung für Menschen mit seltenen Krankheiten'),
(57330, 'https://ror.org/02r44k041', 'no_lang_code', 1, 'https://ror.org/02r44k041 Svit (Czechia)'),
(57331, 'https://ror.org/02r51sa72', 'no_lang_code', 1, 'https://ror.org/02r51sa72 Charvat AXL (Czechia)'),
(57332, 'https://ror.org/02r6dcw55', 'no_lang_code', 1, 'https://ror.org/02r6dcw55 Verlagsvertretung Susan Filges (Germany)'),
(57333, 'https://ror.org/02r72vt69', 'it', 1, 'https://ror.org/02r72vt69 Liceo Cantonale'),
(57334, 'https://ror.org/02r785h72', 'en', 1, 'https://ror.org/02r785h72 Marine Research Centre'),
(57335, 'https://ror.org/02r88m968', 'en', 1, 'https://ror.org/02r88m968 Tamkin Foundation'),
(57336, 'https://ror.org/02ras5d14', 'no_lang_code', 1, 'https://ror.org/02ras5d14 Amcor (Australia)'),
(57337, 'https://ror.org/02rbzf697', 'no_lang_code', 1, 'https://ror.org/02rbzf697 Huawei Technologies (France)'),
(57338, 'https://ror.org/02rffwf78', 'no_lang_code', 1, 'https://ror.org/02rffwf78 Kapsch (Czechia)'),
(57339, 'https://ror.org/02rfvew21', 'no_lang_code', 1, 'https://ror.org/02rfvew21 Integrated Micro-Electronics (Czechia)'),
(57340, 'https://ror.org/02rkywr68', 'no_lang_code', 1, 'https://ror.org/02rkywr68 Annidis (Canada)'),
(57341, 'https://ror.org/02rkz3z54', 'no_lang_code', 1, 'https://ror.org/02rkz3z54 Phytosynthetix (United States)'),
(57342, 'https://ror.org/02rn5dn49', 'en', 1, 'https://ror.org/02rn5dn49 Xi''an Science Technology Bureau č„æå®‰åø‚ē§‘ęŠ€å±€'),
(57343, 'https://ror.org/02rp0e007', 'no_lang_code', 1, 'https://ror.org/02rp0e007 Air Navigation Services (Czechia) Řízení letového provozu České republiky'),
(57344, 'https://ror.org/02rpxbs81', 'no_lang_code', 1, 'https://ror.org/02rpxbs81 Biotest (United States)'),
(57345, 'https://ror.org/02rs7f491', 'no_lang_code', 1, 'https://ror.org/02rs7f491 Resec (Czechia)'),
(57346, 'https://ror.org/02rw4zb55', 'no_lang_code', 1, 'https://ror.org/02rw4zb55 Puruplast (Czechia)'),
(57347, 'https://ror.org/02rwb5s17', 'no_lang_code', 1, 'https://ror.org/02rwb5s17 Flowmon Networks (Czechia)'),
(57348, 'https://ror.org/02rzjwp47', 'en', 1, 'https://ror.org/02rzjwp47 Science and Technology Center in Ukraine'),
(57349, 'https://ror.org/02s1wmc12', 'no_lang_code', 1, 'https://ror.org/02s1wmc12 Gepro (Czechia)'),
(57350, 'https://ror.org/02s3w5b11', 'en', 1, 'https://ror.org/02s3w5b11 Thermal and Electric Energy Technology Foundation ē†±ćƒ»é›»ę°—ć‚Øćƒćƒ«ć‚®ćƒ¼ęŠ€č”“č²”å›£'),
(57351, 'https://ror.org/02s553c57', 'fr', 1, 'https://ror.org/02s553c57 Institut Protestant de ThƩologie'),
(57352, 'https://ror.org/02s9kjn30', 'en', 1, 'https://ror.org/02s9kjn30 Robert W Deutsch Foundation'),
(57353, 'https://ror.org/02s9m7114', 'no_lang_code', 1, 'https://ror.org/02s9m7114 PBT Rožnov (Czechia)'),
(57354, 'https://ror.org/02sda0197', 'en', 1, 'https://ror.org/02sda0197 Fondation Pierre Elliott Trudeau Pierre Elliott Trudeau Foundation'),
(57355, 'https://ror.org/02sdrd464', 'no_lang_code', 1, 'https://ror.org/02sdrd464 Nidec (United States)'),
(57356, 'https://ror.org/02sdyvc52', 'no_lang_code', 1, 'https://ror.org/02sdyvc52 Laboratoire CCD (France)'),
(57357, 'https://ror.org/02se40x69', 'no_lang_code', 1, 'https://ror.org/02se40x69 Canon (France) ć‚­ćƒ¤ćƒŽćƒ³ę Ŗå¼ä¼šē¤¾'),
(57358, 'https://ror.org/02serab94', 'no_lang_code', 1, 'https://ror.org/02serab94 Sopac Medical (France)'),
(57359, 'https://ror.org/02sevrz47', 'es', 1, 'https://ror.org/02sevrz47 Gobierno de Chile'),
(57360, 'https://ror.org/02shpxe08', 'no_lang_code', 1, 'https://ror.org/02shpxe08 Transcon Electronic Systems (Czechia)'),
(57361, 'https://ror.org/02shrym55', 'no_lang_code', 1, 'https://ror.org/02shrym55 Kotouč Štramberk (Czechia)'),
(57362, 'https://ror.org/02sjh4j59', 'en', 1, 'https://ror.org/02sjh4j59 Vilcek Foundation'),
(57363, 'https://ror.org/02sk8y875', 'no_lang_code', 1, 'https://ror.org/02sk8y875 Genetrac (Czechia)'),
(57364, 'https://ror.org/02skytd81', 'en', 1, 'https://ror.org/02skytd81 IMDEA Nanoscience Instituto IMDEA Nanociencia'),
(57365, 'https://ror.org/02smhb616', 'no_lang_code', 1, 'https://ror.org/02smhb616 Form (Czechia)'),
(57366, 'https://ror.org/02smqg134', 'fr', 1, 'https://ror.org/02smqg134 Institut SupƩrieur de Biotechnologie de Sfax'),
(57367, 'https://ror.org/02smzzj60', 'en', 1, 'https://ror.org/02smzzj60 Institut regionƔlnƭch informacƭ Institute for Regional Information'),
(57368, 'https://ror.org/02sn3n814', 'cs', 1, 'https://ror.org/02sn3n814 LĆ”zně Poděbrady (Czechia)'),
(57369, 'https://ror.org/02sn6x239', 'no_lang_code', 1, 'https://ror.org/02sn6x239 Mat-Tec (Switzerland)'),
(57370, 'https://ror.org/02sp4ja91', 'en', 1, 'https://ror.org/02sp4ja91 Institute of Physics. HI Amirkhanova Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики им. Š„.И. Амирханова'),
(57371, 'https://ror.org/02spbvv79', 'no_lang_code', 1, 'https://ror.org/02spbvv79 Activair (Czechia)'),
(57372, 'https://ror.org/02sqc6c92', 'en', 1, 'https://ror.org/02sqc6c92 Vive Zene Vive Zene Centar za terapiju i rehabilitaciju'),
(57373, 'https://ror.org/02ss2ye92', 'cs', 1, 'https://ror.org/02ss2ye92 Obnovitelných Zdrojů Energie'),
(57374, 'https://ror.org/02ssj8b09', 'en', 1, 'https://ror.org/02ssj8b09 Rett Syndrome Association of Illinois'),
(57375, 'https://ror.org/02stkxd13', 'fr', 1, 'https://ror.org/02stkxd13 MusƩe Cantonal d''ArchƩologie et d''Histoire'),
(57376, 'https://ror.org/02sv6a835', 'no_lang_code', 1, 'https://ror.org/02sv6a835 DKD mƩdical (France)'),
(57377, 'https://ror.org/02swngw30', 'en', 1, 'https://ror.org/02swngw30 Colorado Latino Leadership, Advocacy & Research Organization'),
(57378, 'https://ror.org/02sy3xj90', 'en', 1, 'https://ror.org/02sy3xj90 IFB AdipositasErkrankungen IFB Adiposity Diseases'),
(57379, 'https://ror.org/02syz0429', 'no_lang_code', 1, 'https://ror.org/02syz0429 Eco Building Brno (Czechia)'),
(57380, 'https://ror.org/02sz8cn84', 'fr', 1, 'https://ror.org/02sz8cn84 Institut de Recherche sur la Renaissance l''Age Classique et les LumiĆØres'),
(57381, 'https://ror.org/02szgft37', 'no_lang_code', 1, 'https://ror.org/02szgft37 Empo Praha (Czechia)'),
(57382, 'https://ror.org/02szs1583', 'en', 1, 'https://ror.org/02szs1583 Czech Society for Building Law'),
(57383, 'https://ror.org/02t0dpg32', 'en', 1, 'https://ror.org/02t0dpg32 Caesars Foundation'),
(57384, 'https://ror.org/02t4ead83', 'cs', 1, 'https://ror.org/02t4ead83 Expresnƭ AstronomickƩ Informace'),
(57385, 'https://ror.org/02t7mb865', 'fr', 1, 'https://ror.org/02t7mb865 HƓpital de Saint-Loup'),
(57386, 'https://ror.org/02t7v9117', 'de', 1, 'https://ror.org/02t7v9117 Staatsarchiv Luzern'),
(57387, 'https://ror.org/02t98da76', 'en', 1, 'https://ror.org/02t98da76 Czech Biogas Association ČeskÔ BioplynovÔ Asociace'),
(57388, 'https://ror.org/02t9fdk79', 'no_lang_code', 1, 'https://ror.org/02t9fdk79 MJM Litovel (Czechia)'),
(57389, 'https://ror.org/02tbvs543', 'no_lang_code', 1, 'https://ror.org/02tbvs543 Indigo Information Services (United States)'),
(57390, 'https://ror.org/02te15m84', 'sv', 1, 'https://ror.org/02te15m84 Stiftelsen Tornspiran'),
(57391, 'https://ror.org/02tfw2a59', 'no_lang_code', 1, 'https://ror.org/02tfw2a59 Trevos Kostalov (Czechia)'),
(57392, 'https://ror.org/02tg1a160', 'no_lang_code', 1, 'https://ror.org/02tg1a160 Ness Technologies'),
(57393, 'https://ror.org/02tga0d11', 'no_lang_code', 1, 'https://ror.org/02tga0d11 Saar Gummi (Czechia)'),
(57394, 'https://ror.org/02tj78555', 'no_lang_code', 1, 'https://ror.org/02tj78555 Metra Blansko (Czechia)'),
(57395, 'https://ror.org/02tma6r06', 'no_lang_code', 1, 'https://ror.org/02tma6r06 Gypstrend (Czechia)'),
(57396, 'https://ror.org/02tq1vp04', 'no_lang_code', 1, 'https://ror.org/02tq1vp04 Ventura-Venkov (Czechia)');
INSERT INTO `rors` VALUES
(57397, 'https://ror.org/02tqwr834', 'no_lang_code', 1, 'https://ror.org/02tqwr834 Pegas Gonda (Czechia)'),
(57398, 'https://ror.org/02tr26h84', 'no_lang_code', 1, 'https://ror.org/02tr26h84 Koh-I-Noor (Czechia)'),
(57399, 'https://ror.org/02trxsj91', 'no_lang_code', 1, 'https://ror.org/02trxsj91 Maisey (New Zealand)'),
(57400, 'https://ror.org/02tw69288', 'en', 1, 'https://ror.org/02tw69288 Mohawk Valley Psychiatric Center'),
(57401, 'https://ror.org/02ty8xh41', 'en', 1, 'https://ror.org/02ty8xh41 Himalayan Institute of Yoga Science and Philosophy'),
(57402, 'https://ror.org/02tzeve03', 'en', 1, 'https://ror.org/02tzeve03 International Museum of Horology MusƩe international d''horlogerie'),
(57403, 'https://ror.org/02v1vhf29', 'no_lang_code', 1, 'https://ror.org/02v1vhf29 Presi (France)'),
(57404, 'https://ror.org/02v6ch155', 'en', 1, 'https://ror.org/02v6ch155 Steel Tank Institute'),
(57405, 'https://ror.org/02v6f4y51', 'en', 1, 'https://ror.org/02v6f4y51 National Academy of Sciences India ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤…ą¤•ą¤¾ą¤¦ą¤®ą„€, भारत'),
(57406, 'https://ror.org/02v6tqw40', 'no_lang_code', 1, 'https://ror.org/02v6tqw40 Innovative Research Group (Canada)'),
(57407, 'https://ror.org/02v6y4f91', 'en', 1, 'https://ror.org/02v6y4f91 Wholesome Wave Foundation Charitable Ventures'),
(57408, 'https://ror.org/02v7y7w12', 'de', 1, 'https://ror.org/02v7y7w12 Liechtenstein Institute, Liechtenstein-Institut'),
(57409, 'https://ror.org/02v8n3s74', 'en', 1, 'https://ror.org/02v8n3s74 Institute for Advanced Engineering ź³ źø‰ 공학 ģ—°źµ¬ģ†Œ'),
(57410, 'https://ror.org/02v982853', 'no_lang_code', 1, 'https://ror.org/02v982853 NationalRad (United States)'),
(57411, 'https://ror.org/02v9vwf84', 'no_lang_code', 1, 'https://ror.org/02v9vwf84 ModemTec (Czechia)'),
(57412, 'https://ror.org/02va58e96', 'en', 1, 'https://ror.org/02va58e96 Central Bohemian Research Library StředočeskĆ” vědeckĆ” knihovka v Kladně'),
(57413, 'https://ror.org/02vaxhm79', 'cs', 1, 'https://ror.org/02vaxhm79 Společnost pro Studium Sekt a Nových NĆ”boženských SměrÅÆ'),
(57414, 'https://ror.org/02vff8922', 'no_lang_code', 1, 'https://ror.org/02vff8922 Ahlstrom-Munksjƶ (United States)'),
(57415, 'https://ror.org/02vh2pt65', 'en', 1, 'https://ror.org/02vh2pt65 Ludwig Cancer Research'),
(57416, 'https://ror.org/02vmhk782', 'no_lang_code', 1, 'https://ror.org/02vmhk782 Cecho Bohumil CempĆ­rek (Czechia)'),
(57417, 'https://ror.org/02vmzh064', 'nl', 1, 'https://ror.org/02vmzh064 Revalidatiefonds'),
(57418, 'https://ror.org/02vp0nc21', 'no_lang_code', 1, 'https://ror.org/02vp0nc21 Pivovar KƔcov (Czechia)'),
(57419, 'https://ror.org/02vpeth71', 'en', 1, 'https://ror.org/02vpeth71 Museum of Romani Culture Muzeum romskƩ kultury'),
(57420, 'https://ror.org/02vq4f039', 'no_lang_code', 1, 'https://ror.org/02vq4f039 Mitsubishi Research Institute (Japan) äø‰č±ē·åˆē ”ē©¶ę‰€'),
(57421, 'https://ror.org/02vq7pf97', 'no_lang_code', 1, 'https://ror.org/02vq7pf97 SCIA (Czechia)'),
(57422, 'https://ror.org/02vqa5k67', 'en', 1, 'https://ror.org/02vqa5k67 Iowa Department on Aging'),
(57423, 'https://ror.org/02vtg9w10', 'no_lang_code', 1, 'https://ror.org/02vtg9w10 Plzensky Prazdroj (Czechia)'),
(57424, 'https://ror.org/02vvdqe24', 'no_lang_code', 1, 'https://ror.org/02vvdqe24 OKF (Czechia)'),
(57425, 'https://ror.org/02vw2x065', 'no_lang_code', 1, 'https://ror.org/02vw2x065 Minerva Boskovice (Czechia)'),
(57426, 'https://ror.org/02vznf045', 'no_lang_code', 1, 'https://ror.org/02vznf045 BDO Audit (Czechia)'),
(57427, 'https://ror.org/02vzwtq17', 'en', 1, 'https://ror.org/02vzwtq17 Saint Lukes Foundation'),
(57428, 'https://ror.org/02vzx1287', 'de', 1, 'https://ror.org/02vzx1287 Kantonsschule Schaffhausen'),
(57429, 'https://ror.org/02w29b595', 'no_lang_code', 1, 'https://ror.org/02w29b595 Chmelarstvi Druzstvo Žatec (Czechia)'),
(57430, 'https://ror.org/02w30ae27', 'en', 1, 'https://ror.org/02w30ae27 SYSU-CMU International Joint Research Institute'),
(57431, 'https://ror.org/02w314k38', 'no_lang_code', 1, 'https://ror.org/02w314k38 Denso (United States)'),
(57432, 'https://ror.org/02w3svm50', 'no_lang_code', 1, 'https://ror.org/02w3svm50 Femma (Czechia)'),
(57433, 'https://ror.org/02w58yh14', 'no_lang_code', 1, 'https://ror.org/02w58yh14 Veskom (Czechia)'),
(57434, 'https://ror.org/02w60ja15', 'no_lang_code', 1, 'https://ror.org/02w60ja15 Ball (Sweden)'),
(57435, 'https://ror.org/02w769767', 'en', 1, 'https://ror.org/02w769767 Energy Foundation'),
(57436, 'https://ror.org/02w907m39', 'en', 1, 'https://ror.org/02w907m39 Instrumentarium Science Foundation Instrumentariumin tiedesƤƤtiƶ'),
(57437, 'https://ror.org/02w9wt917', 'no_lang_code', 1, 'https://ror.org/02w9wt917 Space Devices (Czechia)'),
(57438, 'https://ror.org/02waf2h92', 'no_lang_code', 1, 'https://ror.org/02waf2h92 Mobility Carsharing (Switzerland)'),
(57439, 'https://ror.org/02wakr002', 'no_lang_code', 1, 'https://ror.org/02wakr002 Johnson Controls (France)'),
(57440, 'https://ror.org/02wdpar77', 'no_lang_code', 1, 'https://ror.org/02wdpar77 Rockwell Automation (Switzerland)'),
(57441, 'https://ror.org/02wg15j65', 'en', 1, 'https://ror.org/02wg15j65 Institute of Archaeology Magyar TudomƔnyos AkadƩmia RƩgƩszeti IntƩzet'),
(57442, 'https://ror.org/02wg70j58', 'en', 1, 'https://ror.org/02wg70j58 Scientific Research Institute of Goznak ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гознака'),
(57443, 'https://ror.org/02whbzt53', 'no_lang_code', 1, 'https://ror.org/02whbzt53 Planair (Switzerland)'),
(57444, 'https://ror.org/02whm6n40', 'no_lang_code', 1, 'https://ror.org/02whm6n40 Agroprojekt (Czechia)'),
(57445, 'https://ror.org/02wj99m39', 'en', 1, 'https://ror.org/02wj99m39 Charlton Installation Services'),
(57446, 'https://ror.org/02wjzeq60', 'en', 1, 'https://ror.org/02wjzeq60 Statewide Parent Advocacy Network'),
(57447, 'https://ror.org/02wkzst19', 'no_lang_code', 1, 'https://ror.org/02wkzst19 RPIC ViP (Czechia)'),
(57448, 'https://ror.org/02wp0er57', 'en', 1, 'https://ror.org/02wp0er57 Royal Jubilee Maternity Services'),
(57449, 'https://ror.org/02wpjr618', 'en', 1, 'https://ror.org/02wpjr618 Government of Austria Ɩsterreichische Bundesregierung'),
(57450, 'https://ror.org/02wr4pa52', 'en', 1, 'https://ror.org/02wr4pa52 Raymond Educational Foundation'),
(57451, 'https://ror.org/02wtsha51', 'no_lang_code', 1, 'https://ror.org/02wtsha51 Teva Pharmaceuticals (Australia)'),
(57452, 'https://ror.org/02wv42418', 'en', 1, 'https://ror.org/02wv42418 ARGO Foundation ARGO Stiftung'),
(57453, 'https://ror.org/02wykja76', 'no_lang_code', 1, 'https://ror.org/02wykja76 Theranostics (New Zealand)'),
(57454, 'https://ror.org/02wys4090', 'no_lang_code', 1, 'https://ror.org/02wys4090 Natura (Czechia)'),
(57455, 'https://ror.org/02x0e6v58', 'en', 1, 'https://ror.org/02x0e6v58 Kusudohara Memorial Foundation åÆæåŽŸčØ˜åæµč²”å›£'),
(57456, 'https://ror.org/02x228738', 'en', 1, 'https://ror.org/02x228738 Intergovernmental Panel on Climate Change'),
(57457, 'https://ror.org/02x42kc45', 'en', 1, 'https://ror.org/02x42kc45 Sedgwick Museum of Earth Sciences'),
(57458, 'https://ror.org/02x4y2b54', 'cs', 1, 'https://ror.org/02x4y2b54 ČeskĆ© Loděnice'),
(57459, 'https://ror.org/02x909r11', 'no_lang_code', 1, 'https://ror.org/02x909r11 Fonterra (United States)'),
(57460, 'https://ror.org/02xare716', 'en', 1, 'https://ror.org/02xare716 Sisters of Charity Health System'),
(57461, 'https://ror.org/02xc43e34', 'no_lang_code', 1, 'https://ror.org/02xc43e34 John Deere (Germany)'),
(57462, 'https://ror.org/02xem8119', 'no_lang_code', 1, 'https://ror.org/02xem8119 EGE (Czechia)'),
(57463, 'https://ror.org/02xfh0g21', 'fr', 1, 'https://ror.org/02xfh0g21 RƩseau Fribourgeois de SantƩ Mentale'),
(57464, 'https://ror.org/02xjhr934', 'en', 1, 'https://ror.org/02xjhr934 Dr. Lisbeth Hurni Coaching & Consulting Inhaberin Büro für Laufbahnpsychologie'),
(57465, 'https://ror.org/02xtbq882', 'en', 1, 'https://ror.org/02xtbq882 Institute of Theoretical Physics 中国科学院理论物理研究所'),
(57466, 'https://ror.org/02xww4e18', 'en', 1, 'https://ror.org/02xww4e18 Institute for Musicology MTA BölcsészettudomÔnyi Kutatóközpont ZenetudomÔnyi Intézet'),
(57467, 'https://ror.org/02xx53s78', 'no_lang_code', 1, 'https://ror.org/02xx53s78 Membrane Protective Technologies (United States)'),
(57468, 'https://ror.org/02xywr964', 'en', 1, 'https://ror.org/02xywr964 Danube Research Institute Duna-Kutató Intézet'),
(57469, 'https://ror.org/02xzfn017', 'no_lang_code', 1, 'https://ror.org/02xzfn017 Top-Bio (Czechia)'),
(57470, 'https://ror.org/02xzshh88', 'en', 1, 'https://ror.org/02xzshh88 Sterling-Turner Foundation'),
(57471, 'https://ror.org/02y0wsa73', 'no_lang_code', 1, 'https://ror.org/02y0wsa73 Institut pro SociÔlní a Ekonomické Analýzy'),
(57472, 'https://ror.org/02y4q0y44', 'no_lang_code', 1, 'https://ror.org/02y4q0y44 AkzoNobel (France)'),
(57473, 'https://ror.org/02y55wr53', 'en', 1, 'https://ror.org/02y55wr53 Center for Veterinary Medicine'),
(57474, 'https://ror.org/02y9vr459', 'de', 1, 'https://ror.org/02y9vr459 Kantonale Planungsgruppe'),
(57475, 'https://ror.org/02yc7cj12', 'no_lang_code', 1, 'https://ror.org/02yc7cj12 ETD Transformatory (Czechia) Výkonové TransformÔtory'),
(57476, 'https://ror.org/02yh57h22', 'de', 1, 'https://ror.org/02yh57h22 ForschungsstƤtte der Evangelischen Studiengemeinschaft'),
(57477, 'https://ror.org/02yj21v41', 'en', 1, 'https://ror.org/02yj21v41 Stark Community Foundation'),
(57478, 'https://ror.org/02yjb3a91', 'en', 1, 'https://ror.org/02yjb3a91 Deutsche Stiftung für Herzforschung German Heart Research Foundation'),
(57479, 'https://ror.org/02ykqap15', 'no_lang_code', 1, 'https://ror.org/02ykqap15 XploSafe (United States)'),
(57480, 'https://ror.org/02ykrpt47', 'en', 1, 'https://ror.org/02ykrpt47 Scan Foundation'),
(57481, 'https://ror.org/02yn1ge31', 'en', 1, 'https://ror.org/02yn1ge31 Carilion Roanoke Community Hospital'),
(57482, 'https://ror.org/02yn1mx87', 'no_lang_code', 1, 'https://ror.org/02yn1mx87 Prikner - Tepelné zpracovÔní kovů (Czechia)'),
(57483, 'https://ror.org/02yqjk243', 'en', 1, 'https://ror.org/02yqjk243 Hope for Vision'),
(57484, 'https://ror.org/02yrhrz80', 'en', 1, 'https://ror.org/02yrhrz80 Royal Literary Fund'),
(57485, 'https://ror.org/02yrkqr67', 'cs', 1, 'https://ror.org/02yrkqr67 PsychiatrickĆ” Nemocnice Bohnice'),
(57486, 'https://ror.org/02yrzyf97', 'en', 1, 'https://ror.org/02yrzyf97 Office of Research Services'),
(57487, 'https://ror.org/02ysg4b45', 'en', 1, 'https://ror.org/02ysg4b45 Womens Foundation of Minnesota'),
(57488, 'https://ror.org/02ytgbr67', 'no_lang_code', 1, 'https://ror.org/02ytgbr67 Sports Turf Research Institute (United Kingdom)'),
(57489, 'https://ror.org/02yv37y71', 'en', 1, 'https://ror.org/02yv37y71 Dunn''s Fish Farm'),
(57490, 'https://ror.org/02yzb7x61', 'no_lang_code', 1, 'https://ror.org/02yzb7x61 ƅF (Czechia)'),
(57491, 'https://ror.org/02z0tm307', 'no_lang_code', 1, 'https://ror.org/02z0tm307 Vrtný a Geologický Průzkum (Czechia)'),
(57492, 'https://ror.org/02z0z0932', 'no_lang_code', 1, 'https://ror.org/02z0z0932 Sofralab (France)'),
(57493, 'https://ror.org/02z0z7g18', 'en', 1, 'https://ror.org/02z0z7g18 Tracy Jo Wilson Ovarian Cancer Foundation'),
(57494, 'https://ror.org/02z2my330', 'no_lang_code', 1, 'https://ror.org/02z2my330 Anapartners (Czechia)'),
(57495, 'https://ror.org/02z45mp76', 'no_lang_code', 1, 'https://ror.org/02z45mp76 Alere (Australia)'),
(57496, 'https://ror.org/02z4xsh88', 'no_lang_code', 1, 'https://ror.org/02z4xsh88 3G Consulting Engineers (Czechia)'),
(57497, 'https://ror.org/02z5aj645', 'en', 1, 'https://ror.org/02z5aj645 South Central VA Health Care Network'),
(57498, 'https://ror.org/02z5d2h92', 'en', 1, 'https://ror.org/02z5d2h92 VA Healthcare System Serving Ohio, Indiana and Michigan'),
(57499, 'https://ror.org/02z5ef964', 'da', 1, 'https://ror.org/02z5ef964 HĆørslev-Fonden'),
(57500, 'https://ror.org/02z625e97', 'no_lang_code', 1, 'https://ror.org/02z625e97 Herbacos Recordati (Czechia)'),
(57501, 'https://ror.org/02z6q2y39', 'sv', 1, 'https://ror.org/02z6q2y39 Stiftelsen LƤngmanska Kulturfonden'),
(57502, 'https://ror.org/02z71hx86', 'no_lang_code', 1, 'https://ror.org/02z71hx86 Genomac'),
(57503, 'https://ror.org/02z857927', 'en', 1, 'https://ror.org/02z857927 Womens Sports Foundation'),
(57504, 'https://ror.org/02z9x0k36', 'no_lang_code', 1, 'https://ror.org/02z9x0k36 Dosing - Dopravoprojekt Brno Group (Czechia)'),
(57505, 'https://ror.org/02za67k40', 'no_lang_code', 1, 'https://ror.org/02za67k40 InnoLux (China)'),
(57506, 'https://ror.org/02zav4281', 'no_lang_code', 1, 'https://ror.org/02zav4281 V. Kann Rasmussen Foundation'),
(57507, 'https://ror.org/02zc9dy23', 'no_lang_code', 1, 'https://ror.org/02zc9dy23 Kovolit (Czechia)'),
(57508, 'https://ror.org/02zedqe26', 'no_lang_code', 1, 'https://ror.org/02zedqe26 AlgaXperts (United States)'),
(57509, 'https://ror.org/02zfe9916', 'en', 1, 'https://ror.org/02zfe9916 Gujarat Matikam Kalakari & Rural Technology Institute'),
(57510, 'https://ror.org/02zfj1j12', 'en', 1, 'https://ror.org/02zfj1j12 Australian Export Grains Innovation Centre'),
(57511, 'https://ror.org/02zhkt134', 'en', 1, 'https://ror.org/02zhkt134 Krylov State Research Center Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр им.'),
(57512, 'https://ror.org/02zhp7e72', 'en', 1, 'https://ror.org/02zhp7e72 World Federation of Scientists'),
(57513, 'https://ror.org/02zk59x78', 'en', 1, 'https://ror.org/02zk59x78 Central European Advisory Group'),
(57514, 'https://ror.org/02zp2vk95', 'en', 1, 'https://ror.org/02zp2vk95 National Inventors Hall of Fame'),
(57515, 'https://ror.org/02zqwya41', 'en', 1, 'https://ror.org/02zqwya41 Ronald McDonald House of Houston'),
(57516, 'https://ror.org/02zsesr42', 'no_lang_code', 1, 'https://ror.org/02zsesr42 Net-system'),
(57517, 'https://ror.org/02zv3jm94', 'no_lang_code', 1, 'https://ror.org/02zv3jm94 Dentsply Sirona (Switzerland)'),
(57518, 'https://ror.org/02zvqs025', 'no_lang_code', 1, 'https://ror.org/02zvqs025 Shellfish Ireland (Ireland)'),
(57519, 'https://ror.org/02zwjz895', 'cs', 1, 'https://ror.org/02zwjz895 Nemocnice ČeskĆ© Budějovice'),
(57520, 'https://ror.org/02zwqdg19', 'no_lang_code', 1, 'https://ror.org/02zwqdg19 Bohemian Software Consulting (Czechia)'),
(57521, 'https://ror.org/02zwrab63', 'no_lang_code', 1, 'https://ror.org/02zwrab63 ePaint (United States)'),
(57522, 'https://ror.org/02zws9h76', 'no_lang_code', 1, 'https://ror.org/02zws9h76 Biopticka Laborator (Czechia)'),
(57523, 'https://ror.org/02zy2ka61', 'no_lang_code', 1, 'https://ror.org/02zy2ka61 Kodak (Germany)'),
(57524, 'https://ror.org/03006qf92', 'en', 1, 'https://ror.org/03006qf92 Reid Veterinary Hospital'),
(57525, 'https://ror.org/0300sbr79', 'en', 1, 'https://ror.org/0300sbr79 Competition Commission Secretariat Wettbewerbskommission'),
(57526, 'https://ror.org/0302b9e58', 'no_lang_code', 1, 'https://ror.org/0302b9e58 Elzaco (Czechia)'),
(57527, 'https://ror.org/0304fdb16', 'no_lang_code', 1, 'https://ror.org/0304fdb16 Infinite Eversole Specialty Crop Services (United states)'),
(57528, 'https://ror.org/0306jpb35', 'no_lang_code', 1, 'https://ror.org/0306jpb35 AK signal Brno (Czechia)'),
(57529, 'https://ror.org/03088af90', 'no_lang_code', 1, 'https://ror.org/03088af90 D3Soft (Czechia)'),
(57530, 'https://ror.org/0308hqt67', 'no_lang_code', 1, 'https://ror.org/0308hqt67 Compuplast International (Czechia)'),
(57531, 'https://ror.org/030bh9196', 'no_lang_code', 1, 'https://ror.org/030bh9196 X-Fab (Germany)'),
(57532, 'https://ror.org/030c89r84', 'no_lang_code', 1, 'https://ror.org/030c89r84 Thumbay Group (United Arab Emirates)'),
(57533, 'https://ror.org/030ceys03', 'no_lang_code', 1, 'https://ror.org/030ceys03 Vapos (Czechia)'),
(57534, 'https://ror.org/030dfzf23', 'de', 1, 'https://ror.org/030dfzf23 Sozialversicherungsgericht des Kantons Zürich'),
(57535, 'https://ror.org/030ebc654', 'en', 1, 'https://ror.org/030ebc654 Hefei Material Science and Technology Center åˆč‚„ē‰©č“Øē§‘å­¦ęŠ€ęœÆäø­åæƒ'),
(57536, 'https://ror.org/030f1yb82', 'en', 1, 'https://ror.org/030f1yb82 Institut Icare'),
(57537, 'https://ror.org/030j64f75', 'de', 1, 'https://ror.org/030j64f75 Neue Galerie Luzern'),
(57538, 'https://ror.org/030jevs33', 'no_lang_code', 1, 'https://ror.org/030jevs33 TESLA Electrontubes (Czechia)'),
(57539, 'https://ror.org/030jq7570', 'en', 1, 'https://ror.org/030jq7570 Society for Psychotherapy Research'),
(57540, 'https://ror.org/030nks913', 'no_lang_code', 1, 'https://ror.org/030nks913 ZEAS Lysice (Czechia)'),
(57541, 'https://ror.org/030pxca80', 'no_lang_code', 1, 'https://ror.org/030pxca80 Komix (Czechia)'),
(57542, 'https://ror.org/030q3v026', 'no_lang_code', 1, 'https://ror.org/030q3v026 Project Design and Development Agency (Czechia)'),
(57543, 'https://ror.org/030qj9p34', 'no_lang_code', 1, 'https://ror.org/030qj9p34 Čisté Kovy (Czechia)'),
(57544, 'https://ror.org/030t7nd77', 'en', 1, 'https://ror.org/030t7nd77 Beijing Radiation Center åŒ—äŗ¬åø‚č¾å°„äø­åæƒ'),
(57545, 'https://ror.org/030wbs841', 'no_lang_code', 1, 'https://ror.org/030wbs841 Medicodose Systems (France)'),
(57546, 'https://ror.org/030yesb42', 'no_lang_code', 1, 'https://ror.org/030yesb42 Fresenius Kabi (Netherlands)'),
(57547, 'https://ror.org/030zkq869', 'no_lang_code', 1, 'https://ror.org/030zkq869 Wenger Plattner (Switzerland)'),
(57548, 'https://ror.org/030zp3k15', 'no_lang_code', 1, 'https://ror.org/030zp3k15 ZemědělskĆ© Družstvo Vrchovina (Czechia)'),
(57549, 'https://ror.org/03114vz20', 'en', 1, 'https://ror.org/03114vz20 Central New York Research Corporation'),
(57550, 'https://ror.org/031ahp525', 'no_lang_code', 1, 'https://ror.org/031ahp525 Parburch Medical Developments (United Kingdom)'),
(57551, 'https://ror.org/031aht432', 'no_lang_code', 1, 'https://ror.org/031aht432 ExoTerra Resources (United States)'),
(57552, 'https://ror.org/031dfcr56', 'no_lang_code', 1, 'https://ror.org/031dfcr56 Em Test ČR (Czechia)'),
(57553, 'https://ror.org/031eerz69', 'no_lang_code', 1, 'https://ror.org/031eerz69 Medicrea (France)'),
(57554, 'https://ror.org/031ew1v21', 'no_lang_code', 1, 'https://ror.org/031ew1v21 Schaffner (Switzerland)'),
(57555, 'https://ror.org/031f8aj53', 'en', 1, 'https://ror.org/031f8aj53 Missouri Department of Agriculture'),
(57556, 'https://ror.org/031gcry19', 'de', 1, 'https://ror.org/031gcry19 JackstƤdt Stiftung'),
(57557, 'https://ror.org/031h5fa94', 'de', 1, 'https://ror.org/031h5fa94 Baden-Württemberg Stiftung'),
(57558, 'https://ror.org/031mphy63', 'no_lang_code', 1, 'https://ror.org/031mphy63 Comtes DFM (Czechia)'),
(57559, 'https://ror.org/031n13782', 'no_lang_code', 1, 'https://ror.org/031n13782 Vaillant (United States)'),
(57560, 'https://ror.org/031n2qp89', 'de', 1, 'https://ror.org/031n2qp89 Privatbüro Plus'),
(57561, 'https://ror.org/031nm9f90', 'no_lang_code', 1, 'https://ror.org/031nm9f90 Enantis (Czechia)'),
(57562, 'https://ror.org/031ph5b56', 'en', 1, 'https://ror.org/031ph5b56 Forests of the Town of Jirkov Lesy Města Jirkova'),
(57563, 'https://ror.org/031qpfn56', 'en', 1, 'https://ror.org/031qpfn56 VA Desert Pacific Healthcare Network'),
(57564, 'https://ror.org/031rbfd73', 'no_lang_code', 1, 'https://ror.org/031rbfd73 Ball (France)'),
(57565, 'https://ror.org/031s4pb13', 'en', 1, 'https://ror.org/031s4pb13 Office of Special Education and Rehabilitative Services'),
(57566, 'https://ror.org/031shee24', 'no_lang_code', 1, 'https://ror.org/031shee24 Silvi Nova (Czechia)'),
(57567, 'https://ror.org/031w1hc71', 'en', 1, 'https://ror.org/031w1hc71 Threshold Foundation'),
(57568, 'https://ror.org/031ww6378', 'en', 1, 'https://ror.org/031ww6378 Fujichiro Iijima Memorial Food Science Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗ é£Æå³¶č—¤åéƒŽčØ˜åæµé£Ÿå“ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(57569, 'https://ror.org/031xey008', 'no_lang_code', 1, 'https://ror.org/031xey008 Ecowasteenergy (Czechia)'),
(57570, 'https://ror.org/031xm4t96', 'no_lang_code', 1, 'https://ror.org/031xm4t96 BeHo (Czechia)'),
(57571, 'https://ror.org/031ykaj51', 'no_lang_code', 1, 'https://ror.org/031ykaj51 Markent (Czechia)'),
(57572, 'https://ror.org/031yv9651', 'en', 1, 'https://ror.org/031yv9651 Thunder Valley Community Development Corporation'),
(57573, 'https://ror.org/031zhyf70', 'it', 1, 'https://ror.org/031zhyf70 Museo di Valmaggia'),
(57574, 'https://ror.org/031zns335', 'no_lang_code', 1, 'https://ror.org/031zns335 Compas Automatizace (Czechia)'),
(57575, 'https://ror.org/03247gm88', 'no_lang_code', 1, 'https://ror.org/03247gm88 Solidtech Animal Health (United States)'),
(57576, 'https://ror.org/0326ky169', 'de', 1, 'https://ror.org/0326ky169 Theologische Hochschule Chur'),
(57577, 'https://ror.org/0326x9e38', 'no_lang_code', 1, 'https://ror.org/0326x9e38 Fosil Partner (Czechia)'),
(57578, 'https://ror.org/0328zx757', 'no_lang_code', 1, 'https://ror.org/0328zx757 Rolnické Družstvo Bezno (Czechia)'),
(57579, 'https://ror.org/032ap5553', 'no_lang_code', 1, 'https://ror.org/032ap5553 Ecological Consulting (Czechia)'),
(57580, 'https://ror.org/032aq8297', 'fr', 1, 'https://ror.org/032aq8297 Alliance Sud'),
(57581, 'https://ror.org/032b9vb83', 'no_lang_code', 1, 'https://ror.org/032b9vb83 Ish Pumps Olomouc (Czechia)'),
(57582, 'https://ror.org/032baaz38', 'no_lang_code', 1, 'https://ror.org/032baaz38 OrthoD (United Kingdom)'),
(57583, 'https://ror.org/032bsv240', 'de', 1, 'https://ror.org/032bsv240 Independent Commission of Experts Switzerland – Second World War UnabhƤngige Expertenkommission Schweiz'),
(57584, 'https://ror.org/032dtwy97', 'no_lang_code', 1, 'https://ror.org/032dtwy97 Trod Medical (France)'),
(57585, 'https://ror.org/032dyj305', 'en', 1, 'https://ror.org/032dyj305 Basko Healthcare'),
(57586, 'https://ror.org/032hfv632', 'no_lang_code', 1, 'https://ror.org/032hfv632 Bristol-Myers Squibb (Germany)'),
(57587, 'https://ror.org/032j40h62', 'en', 1, 'https://ror.org/032j40h62 Edmond J. Safra Philanthropic Foundation Fondation Philanthropique Edmond J Safra'),
(57588, 'https://ror.org/032j4xk85', 'cs', 1, 'https://ror.org/032j4xk85 Asociace FinancovƔnƭ Infrastruktury Pro Mobilitu'),
(57589, 'https://ror.org/032jwgq52', 'en', 1, 'https://ror.org/032jwgq52 Ausbildungs- und Tagungszentrum Bienenberg Theological Seminary Bienenberg'),
(57590, 'https://ror.org/032nv2431', 'no_lang_code', 1, 'https://ror.org/032nv2431 Intelligence in Medical Technologies (France)'),
(57591, 'https://ror.org/032nv5f98', 'en', 1, 'https://ror.org/032nv5f98 ChildCare Education Institute'),
(57592, 'https://ror.org/032rnvf90', 'no_lang_code', 1, 'https://ror.org/032rnvf90 BBMG (China) åŒ—äŗ¬é‡‘éš…ęŽ§č‚”ęœ‰é™å…¬åø'),
(57593, 'https://ror.org/032sxkb16', 'en', 1, 'https://ror.org/032sxkb16 Central Institute of Temperate Horticulture'),
(57594, 'https://ror.org/032tfbg84', 'no_lang_code', 1, 'https://ror.org/032tfbg84 Danaher (Czechia)'),
(57595, 'https://ror.org/032vp6a84', 'no_lang_code', 1, 'https://ror.org/032vp6a84 Bioderma (France)'),
(57596, 'https://ror.org/032wvex55', 'no_lang_code', 1, 'https://ror.org/032wvex55 Sangreen (Czechia)'),
(57597, 'https://ror.org/03310k523', 'no_lang_code', 1, 'https://ror.org/03310k523 Technofiber (Czechia)'),
(57598, 'https://ror.org/0332e1g86', 'no_lang_code', 1, 'https://ror.org/0332e1g86 ERGOWORK (Czechia)'),
(57599, 'https://ror.org/0333r2w37', 'no_lang_code', 1, 'https://ror.org/0333r2w37 ŽDB DrÔtovna (Czechia)'),
(57600, 'https://ror.org/0335xmv35', 'en', 1, 'https://ror.org/0335xmv35 Weed Science Society of America'),
(57601, 'https://ror.org/033bpfz21', 'no_lang_code', 1, 'https://ror.org/033bpfz21 Deep Space Industries (United States)'),
(57602, 'https://ror.org/033bq7c05', 'no_lang_code', 1, 'https://ror.org/033bq7c05 Bioconsult (Czechia)'),
(57603, 'https://ror.org/033d1rc08', 'no_lang_code', 1, 'https://ror.org/033d1rc08 Cardinal Health (Australia)'),
(57604, 'https://ror.org/033gq4890', 'no_lang_code', 1, 'https://ror.org/033gq4890 Ɩkoplant International (Czechia)'),
(57605, 'https://ror.org/033h71b08', 'cs', 1, 'https://ror.org/033h71b08 ArcheologickƩ Centrum Olomouc'),
(57606, 'https://ror.org/033hwwn95', 'nl', 1, 'https://ror.org/033hwwn95 Stichting Achmea Slachtoffer en Samenleving'),
(57607, 'https://ror.org/033k6xs70', 'en', 1, 'https://ror.org/033k6xs70 Parents'' Place of Maryland'),
(57608, 'https://ror.org/033nhhq39', 'no_lang_code', 1, 'https://ror.org/033nhhq39 Medical Dispensing Systems (Netherlands)'),
(57609, 'https://ror.org/033pgsq69', 'no_lang_code', 1, 'https://ror.org/033pgsq69 Nova Insurance Services (China)'),
(57610, 'https://ror.org/033qwae34', 'cs', 1, 'https://ror.org/033qwae34 LiberƔlnƭ institut'),
(57611, 'https://ror.org/033sc9d20', 'en', 1, 'https://ror.org/033sc9d20 Kumamoto Orthopedic Surgery Hospital'),
(57612, 'https://ror.org/033trmh69', 'en', 1, 'https://ror.org/033trmh69 Bureau of the Fiscal Service'),
(57613, 'https://ror.org/033v4eh59', 'no_lang_code', 1, 'https://ror.org/033v4eh59 Clutex (Czechia)'),
(57614, 'https://ror.org/033wye414', 'de', 1, 'https://ror.org/033wye414 Schweißtechnische Lehr- und Versuchsanstalt'),
(57615, 'https://ror.org/033x3jh42', 'no_lang_code', 1, 'https://ror.org/033x3jh42 Schmizo (Switzerland)'),
(57616, 'https://ror.org/033x7yd97', 'en', 1, 'https://ror.org/033x7yd97 Stimson Miller Foundation'),
(57617, 'https://ror.org/033zy3080', 'no_lang_code', 1, 'https://ror.org/033zy3080 Union Lesnƭ BrƔna (Czechia)'),
(57618, 'https://ror.org/0341e7068', 'en', 1, 'https://ror.org/0341e7068 Fondation pour la mƩdecine de laboratoire Foundation for laboratory medicine'),
(57619, 'https://ror.org/03429t854', 'cs', 1, 'https://ror.org/03429t854 ZemědělskĆ© Družstvo Kojčice'),
(57620, 'https://ror.org/0349gkc55', 'no_lang_code', 1, 'https://ror.org/0349gkc55 Obchodnƭ TiskƔrny Kolƭn'),
(57621, 'https://ror.org/034aqje35', 'en', 1, 'https://ror.org/034aqje35 International Dialogue Centre'),
(57622, 'https://ror.org/034bznj45', 'no_lang_code', 1, 'https://ror.org/034bznj45 Fresenius Kabi (Czechia)'),
(57623, 'https://ror.org/034e48p94', 'de', 1, 'https://ror.org/034e48p94 Kantonsspital Baden'),
(57624, 'https://ror.org/034eg5a26', 'en', 1, 'https://ror.org/034eg5a26 Government of Ghana'),
(57625, 'https://ror.org/034f13e71', 'no_lang_code', 1, 'https://ror.org/034f13e71 ŽSD (Czechia)'),
(57626, 'https://ror.org/034fvq480', 'en', 1, 'https://ror.org/034fvq480 Czech Olympic Committee Český Olympijský Výbor'),
(57627, 'https://ror.org/034js7368', 'pt', 1, 'https://ror.org/034js7368 Sociedade Brasileira de Cirurgia PlƔstica'),
(57628, 'https://ror.org/034nw2x49', 'no_lang_code', 1, 'https://ror.org/034nw2x49 TraceTag (France)'),
(57629, 'https://ror.org/034qg4250', 'no_lang_code', 1, 'https://ror.org/034qg4250 Kavalier (Czechia)'),
(57630, 'https://ror.org/034rw1w19', 'de', 1, 'https://ror.org/034rw1w19 Spital Muri'),
(57631, 'https://ror.org/034sqmv32', 'en', 1, 'https://ror.org/034sqmv32 Agrophysical Research Institute Агрофизический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(57632, 'https://ror.org/034tqkr94', 'no_lang_code', 1, 'https://ror.org/034tqkr94 Bjl Laboratoires (France)'),
(57633, 'https://ror.org/034v70g29', 'no_lang_code', 1, 'https://ror.org/034v70g29 AEV (Czechia)'),
(57634, 'https://ror.org/034w84t89', 'en', 1, 'https://ror.org/034w84t89 Centre International d''Etude du Sport International Centre for Sports Studies'),
(57635, 'https://ror.org/034xn6p88', 'no_lang_code', 1, 'https://ror.org/034xn6p88 ILD (Czechia)'),
(57636, 'https://ror.org/034ywsh12', 'en', 1, 'https://ror.org/034ywsh12 Northeast Climate Science Center'),
(57637, 'https://ror.org/03517qf88', 'no_lang_code', 1, 'https://ror.org/03517qf88 Michelin (United States)'),
(57638, 'https://ror.org/035669d27', 'en', 1, 'https://ror.org/035669d27 Lishman Health Foundation'),
(57639, 'https://ror.org/035881909', 'de', 1, 'https://ror.org/035881909 Lamprecht und Stamm Sozialforschung und Beratung'),
(57640, 'https://ror.org/035a07q19', 'fr', 1, 'https://ror.org/035a07q19 Hirslanden Clinique des Grangettes'),
(57641, 'https://ror.org/035a1qp70', 'en', 1, 'https://ror.org/035a1qp70 Tony Elumelu Foundation'),
(57642, 'https://ror.org/035ded219', 'no_lang_code', 1, 'https://ror.org/035ded219 RhySearch (Switzerland)'),
(57643, 'https://ror.org/035g0d030', 'no_lang_code', 1, 'https://ror.org/035g0d030 Axon Active (Switzerland)'),
(57644, 'https://ror.org/035jj1q51', 'no_lang_code', 1, 'https://ror.org/035jj1q51 Heartland Plant Innovations (United States)'),
(57645, 'https://ror.org/035jk1w68', 'no_lang_code', 1, 'https://ror.org/035jk1w68 IVAR (Czechia)'),
(57646, 'https://ror.org/035k7f515', 'en', 1, 'https://ror.org/035k7f515 Shandong Food Fermentation Industry Research and Design Institute å±±äøœēœé£Ÿå“å‘é…µå·„äøšē ”ē©¶č®¾č®”é™¢'),
(57647, 'https://ror.org/035kbp941', 'no_lang_code', 1, 'https://ror.org/035kbp941 Dendera (Czechia)'),
(57648, 'https://ror.org/035kjdm29', 'en', 1, 'https://ror.org/035kjdm29 Head of Government of the Republic of Tunisia'),
(57649, 'https://ror.org/035n6ph62', 'no_lang_code', 1, 'https://ror.org/035n6ph62 Perrigo (United Kingdom)'),
(57650, 'https://ror.org/035pbyf96', 'en', 1, 'https://ror.org/035pbyf96 International Union of Anthropological and Ethnological Sciences'),
(57651, 'https://ror.org/035pp4s04', 'de', 1, 'https://ror.org/035pp4s04 Institut für Urheber- und Medienrecht'),
(57652, 'https://ror.org/035ppa085', 'no_lang_code', 1, 'https://ror.org/035ppa085 Bentley Czech (Czechia)'),
(57653, 'https://ror.org/035q7re19', 'en', 1, 'https://ror.org/035q7re19 Texas Department of Agriculture'),
(57654, 'https://ror.org/035qjfd74', 'no_lang_code', 1, 'https://ror.org/035qjfd74 Třinecký Inženýring (Czechia)'),
(57655, 'https://ror.org/035qjq024', 'no_lang_code', 1, 'https://ror.org/035qjq024 Niip Gradostroitelstva ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по разработке Š³ŠµŠ½ŠµŃ€Š°Š»ŃŒŠ½Ń‹Ń… планов Šø проектов застройки гороГов'),
(57656, 'https://ror.org/035r6h173', 'no_lang_code', 1, 'https://ror.org/035r6h173 Glasiert (Czechia)'),
(57657, 'https://ror.org/035rg2c54', 'no_lang_code', 1, 'https://ror.org/035rg2c54 ECO Management (Czechia)'),
(57658, 'https://ror.org/035svbv36', 'en', 1, 'https://ror.org/035svbv36 Juntendo University Shizuoka Hospital é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žé™å²”ē—…é™¢'),
(57659, 'https://ror.org/035t0zn40', 'en', 1, 'https://ror.org/035t0zn40 Institute of Agricultural Engineering MezőgazdasĆ”gi GĆ©pesĆ­tĆ©si IntĆ©zet'),
(57660, 'https://ror.org/035tqry63', 'de', 1, 'https://ror.org/035tqry63 AWA-Institut'),
(57661, 'https://ror.org/035zqsp67', 'no_lang_code', 1, 'https://ror.org/035zqsp67 Regent Plus Žlutice (Czechia)'),
(57662, 'https://ror.org/0362bde51', 'en', 1, 'https://ror.org/0362bde51 Water Environment and Reuse Foundation'),
(57663, 'https://ror.org/0363etv78', 'no_lang_code', 1, 'https://ror.org/0363etv78 Edra MƩdical (France)'),
(57664, 'https://ror.org/0366pf663', 'en', 1, 'https://ror.org/0366pf663 Japan Institute of Wastewater Engineering Technology ę—„ęœ¬äø‹ę°“é“ę–°ęŠ€č”“ę©Ÿę§‹'),
(57665, 'https://ror.org/0369h0f23', 'no_lang_code', 1, 'https://ror.org/0369h0f23 RDS-CZ (Czechia)'),
(57666, 'https://ror.org/0369xey85', 'no_lang_code', 1, 'https://ror.org/0369xey85 Agren (United States)'),
(57667, 'https://ror.org/036awb582', 'de', 1, 'https://ror.org/036awb582 Verwaltungsgericht Kantons Zürich'),
(57668, 'https://ror.org/036bs9x63', 'no_lang_code', 1, 'https://ror.org/036bs9x63 Suisag (Switzerland)'),
(57669, 'https://ror.org/036bzjr85', 'cs', 1, 'https://ror.org/036bzjr85 Projekt Odyssea'),
(57670, 'https://ror.org/036cdfc81', 'no_lang_code', 1, 'https://ror.org/036cdfc81 Modřany Power (Czechia)'),
(57671, 'https://ror.org/036dc0221', 'no_lang_code', 1, 'https://ror.org/036dc0221 2EL (Czechia)'),
(57672, 'https://ror.org/036ef8v07', 'no_lang_code', 1, 'https://ror.org/036ef8v07 Cubespace (Czechia)'),
(57673, 'https://ror.org/036gejb44', 'en', 1, 'https://ror.org/036gejb44 Tuba City Regional Health Care'),
(57674, 'https://ror.org/036jhs482', 'es', 1, 'https://ror.org/036jhs482 Fundación Alicia Koplowitz'),
(57675, 'https://ror.org/036m5gb67', 'en', 1, 'https://ror.org/036m5gb67 Ronald McDonald House Charities of Eastern New England'),
(57676, 'https://ror.org/036nj4x83', 'en', 1, 'https://ror.org/036nj4x83 Central Pulp & Paper Research Institute'),
(57677, 'https://ror.org/036p1z483', 'no_lang_code', 1, 'https://ror.org/036p1z483 Enviconsult (Slovakia)'),
(57678, 'https://ror.org/036p2ma86', 'en', 1, 'https://ror.org/036p2ma86 Research Partnership to Secure Energy for America'),
(57679, 'https://ror.org/036qrws31', 'de', 1, 'https://ror.org/036qrws31 Staatsarchiv des Kantons Solothurn'),
(57680, 'https://ror.org/036skbs59', 'cs', 1, 'https://ror.org/036skbs59 ZĆ”kladnĆ­ Å kola a MateřskĆ” Å kola Angel'),
(57681, 'https://ror.org/036vxea50', 'no_lang_code', 1, 'https://ror.org/036vxea50 Walramcom (Czechia)'),
(57682, 'https://ror.org/036x9s723', 'no_lang_code', 1, 'https://ror.org/036x9s723 MTMP (Czechia)'),
(57683, 'https://ror.org/036xxhv13', 'no_lang_code', 1, 'https://ror.org/036xxhv13 Invisio (Germany)'),
(57684, 'https://ror.org/037042411', 'en', 1, 'https://ror.org/037042411 International Fistball Association'),
(57685, 'https://ror.org/0370bpy80', 'sv', 1, 'https://ror.org/0370bpy80 Stiftelsen Tysta Skolan'),
(57686, 'https://ror.org/03722ks09', 'en', 1, 'https://ror.org/03722ks09 Institut pro Udržitelný Rozvoj Sídel Institute for Sustainable Development of Settlements'),
(57687, 'https://ror.org/0373b8g76', 'no_lang_code', 1, 'https://ror.org/0373b8g76 Tagro (Czechia)'),
(57688, 'https://ror.org/037405c78', 'en', 1, 'https://ror.org/037405c78 Cancer Research UK Manchester Institute'),
(57689, 'https://ror.org/0375hkv63', 'no_lang_code', 1, 'https://ror.org/0375hkv63 Geostar (Czechia)'),
(57690, 'https://ror.org/0377qb339', 'no_lang_code', 1, 'https://ror.org/0377qb339 Merkurtoys (Czechia)'),
(57691, 'https://ror.org/0377ycc43', 'no_lang_code', 1, 'https://ror.org/0377ycc43 Sefam (France)'),
(57692, 'https://ror.org/037866t57', 'en', 1, 'https://ror.org/037866t57 Tenovus Scotland'),
(57693, 'https://ror.org/0378cd528', 'en', 1, 'https://ror.org/0378cd528 Institute for Cognitive Science Studies Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… Ų“Ł†Ų§Ų®ŲŖŪŒ'),
(57694, 'https://ror.org/037ax5f60', 'no_lang_code', 1, 'https://ror.org/037ax5f60 Breeding Cooperative Impuls (Czechia) Chovatelské Družstvo Impuls'),
(57695, 'https://ror.org/037b4r736', 'no_lang_code', 1, 'https://ror.org/037b4r736 Rodael (France)'),
(57696, 'https://ror.org/037d48q80', 'en', 1, 'https://ror.org/037d48q80 Czech Society of Experimental Plant Biology ČeskĆ” společnost experimentĆ”lnĆ­ biologie rostlin'),
(57697, 'https://ror.org/037dpnh08', 'no_lang_code', 1, 'https://ror.org/037dpnh08 Lesprojekt Východní Čechy (Czechia)'),
(57698, 'https://ror.org/037e0dj26', 'no_lang_code', 1, 'https://ror.org/037e0dj26 Professional Solutions (United States)'),
(57699, 'https://ror.org/037fjvr70', 'no_lang_code', 1, 'https://ror.org/037fjvr70 CleverMaps (Czechia)'),
(57700, 'https://ror.org/037fsex72', 'cs', 1, 'https://ror.org/037fsex72 Oblastnƭ galerie Vysočiny v Jihlavě, Vysočina Regional Gallery in Jihlava'),
(57701, 'https://ror.org/037g52y53', 'fr', 1, 'https://ror.org/037g52y53 Art and History Museum of Fribourg MusƩe d''Art et d''Histoire de Fribourg'),
(57702, 'https://ror.org/037hw2x70', 'no_lang_code', 1, 'https://ror.org/037hw2x70 Asociace GumƔrenskƩ Technologie Zlƭn (Czechia)'),
(57703, 'https://ror.org/037j2g266', 'no_lang_code', 1, 'https://ror.org/037j2g266 Wockhardt (France)'),
(57704, 'https://ror.org/037jk8996', 'en', 1, 'https://ror.org/037jk8996 Institute of Ecology of Mountain Territories Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø горных территорий Š ŠŠ'),
(57705, 'https://ror.org/037kt1n40', 'cs', 1, 'https://ror.org/037kt1n40 KoordinačnĆ­ Středisko pro ResortnĆ­ ZdravotnickĆ© InformačnĆ­ SystĆ©my'),
(57706, 'https://ror.org/037m48527', 'no_lang_code', 1, 'https://ror.org/037m48527 Native PR (Czechia)'),
(57707, 'https://ror.org/037ne1y28', 'no_lang_code', 1, 'https://ror.org/037ne1y28 HighDim (Switzerland)'),
(57708, 'https://ror.org/037pcte91', 'en', 1, 'https://ror.org/037pcte91 Forest Genetics Council'),
(57709, 'https://ror.org/037tm7f56', 'en', 1, 'https://ror.org/037tm7f56 Courant Institute of Mathematical Sciences'),
(57710, 'https://ror.org/037v4t923', 'en', 1, 'https://ror.org/037v4t923 Family Health Council of Central Pennsylvania'),
(57711, 'https://ror.org/037vd6027', 'en', 1, 'https://ror.org/037vd6027 OneSight'),
(57712, 'https://ror.org/037vq0a20', 'en', 1, 'https://ror.org/037vq0a20 Svaz českých a moravských výrobnĆ­ch družstev Union of Czech Production Co-operatives'),
(57713, 'https://ror.org/037vy2h31', 'en', 1, 'https://ror.org/037vy2h31 Saccomanno Higher Education Foundation'),
(57714, 'https://ror.org/037wrv551', 'en', 1, 'https://ror.org/037wrv551 Kosovar Centre for Security Studies Qendra Kosovare pƫr Studime tƫ Sigurisƫ'),
(57715, 'https://ror.org/037xabw57', 'en', 1, 'https://ror.org/037xabw57 Swiss Integrative Center for Human Health'),
(57716, 'https://ror.org/037xrhm50', 'no_lang_code', 1, 'https://ror.org/037xrhm50 LibereckƩ Strojƭrny (Czechia)'),
(57717, 'https://ror.org/037xwh335', 'no_lang_code', 1, 'https://ror.org/037xwh335 Maspex (Czechia)'),
(57718, 'https://ror.org/0380vn954', 'en', 1, 'https://ror.org/0380vn954 Department of Information Technology, Biotechnology and Science and Technology'),
(57719, 'https://ror.org/0381s2a22', 'no_lang_code', 1, 'https://ror.org/0381s2a22 CE Traffic (Czechia)'),
(57720, 'https://ror.org/03826h192', 'no_lang_code', 1, 'https://ror.org/03826h192 Kao Corporation (Spain)'),
(57721, 'https://ror.org/0382jhd52', 'en', 1, 'https://ror.org/0382jhd52 Iketani Science and Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ę± č°·ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(57722, 'https://ror.org/0382m9t69', 'no_lang_code', 1, 'https://ror.org/0382m9t69 Sidel (Italy)'),
(57723, 'https://ror.org/0382x5c07', 'no_lang_code', 1, 'https://ror.org/0382x5c07 Sebia (France)'),
(57724, 'https://ror.org/0387d5286', 'no_lang_code', 1, 'https://ror.org/0387d5286 Atheris Laboratories (Switzerland)'),
(57725, 'https://ror.org/038923331', 'en', 1, 'https://ror.org/038923331 BFF Bern'),
(57726, 'https://ror.org/038937755', 'en', 1, 'https://ror.org/038937755 Stiftelsen Forska Utan Djurfƶrsƶk Swedish Fund for Research Without Animal Experiments'),
(57727, 'https://ror.org/03895v451', 'no_lang_code', 1, 'https://ror.org/03895v451 Canon (Australia)'),
(57728, 'https://ror.org/038b7ts62', 'no_lang_code', 1, 'https://ror.org/038b7ts62 LSO Medical (France)'),
(57729, 'https://ror.org/038d53f16', 'en', 1, 'https://ror.org/038d53f16 Agricultural Genetic Engineering Research Institute'),
(57730, 'https://ror.org/038d5d459', 'en', 1, 'https://ror.org/038d5d459 Scottish Health Services'),
(57731, 'https://ror.org/038dc1s14', 'no_lang_code', 1, 'https://ror.org/038dc1s14 Crew Services (United States)'),
(57732, 'https://ror.org/038eh4b79', 'en', 1, 'https://ror.org/038eh4b79 Office of Patient Care Services'),
(57733, 'https://ror.org/038evr161', 'no_lang_code', 1, 'https://ror.org/038evr161 Merci (Czechia)'),
(57734, 'https://ror.org/038h7ww88', 'en', 1, 'https://ror.org/038h7ww88 Taiwan Agricultural Chemicals and Toxic Substances Research Institute'),
(57735, 'https://ror.org/038h93e72', 'no_lang_code', 1, 'https://ror.org/038h93e72 Inset (Czechia)'),
(57736, 'https://ror.org/038hy2g58', 'no_lang_code', 1, 'https://ror.org/038hy2g58 Vojenské Lesy a Statky ČR (Czechia)'),
(57737, 'https://ror.org/038k2n210', 'en', 1, 'https://ror.org/038k2n210 Community Health Centers of Benton and Linn Counties'),
(57738, 'https://ror.org/038nh6c68', 'no_lang_code', 1, 'https://ror.org/038nh6c68 Kromilk (Czechia)'),
(57739, 'https://ror.org/038ntmm55', 'no_lang_code', 1, 'https://ror.org/038ntmm55 Nexum Trilog (Czechia)'),
(57740, 'https://ror.org/038q8t720', 'cs', 1, 'https://ror.org/038q8t720 PovodĆ­ Vltavy'),
(57741, 'https://ror.org/038r0kk66', 'no_lang_code', 1, 'https://ror.org/038r0kk66 Kobra Údlice (Czechia)'),
(57742, 'https://ror.org/038sxqg91', 'no_lang_code', 1, 'https://ror.org/038sxqg91 Kelvion (Czechia)'),
(57743, 'https://ror.org/038trbs43', 'cs', 1, 'https://ror.org/038trbs43 BEZK'),
(57744, 'https://ror.org/038v7k315', 'en', 1, 'https://ror.org/038v7k315 Hawthorne Valley Association'),
(57745, 'https://ror.org/038vzy124', 'no_lang_code', 1, 'https://ror.org/038vzy124 Bios Služby VýpočetnĆ­ Techniky (Czechia)'),
(57746, 'https://ror.org/038xj9474', 'en', 1, 'https://ror.org/038xj9474 Okinawa Prefectural Agricultural Research Center ę²–ēø„ēœŒč¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(57747, 'https://ror.org/038ypnm26', 'es', 1, 'https://ror.org/038ypnm26 Ministerio del Poder Popular para la Educación Universitaria, Ciencia y Tecnología'),
(57748, 'https://ror.org/038z7hb11', 'en', 1, 'https://ror.org/038z7hb11 Institute of Laboratory Animal Science'),
(57749, 'https://ror.org/0392hft58', 'en', 1, 'https://ror.org/0392hft58 Nissay Culture Foundation ę—„ęœ¬ē”Ÿå‘½äæé™ŗē›øäŗ’ä¼šē¤¾'),
(57750, 'https://ror.org/0392x6996', 'en', 1, 'https://ror.org/0392x6996 Association Cartographique Internationale International Cartographic Association'),
(57751, 'https://ror.org/039309z32', 'no_lang_code', 1, 'https://ror.org/039309z32 Seva – Flora (Czechia)'),
(57752, 'https://ror.org/03937a641', 'no_lang_code', 1, 'https://ror.org/03937a641 Acteon (United Kingdom)'),
(57753, 'https://ror.org/039395021', 'fr', 1, 'https://ror.org/039395021 Vitrocentre Romont'),
(57754, 'https://ror.org/03952ft31', 'en', 1, 'https://ror.org/03952ft31 Art as Foundation'),
(57755, 'https://ror.org/0395qzd79', 'no_lang_code', 1, 'https://ror.org/0395qzd79 KonekTel (Czechia)'),
(57756, 'https://ror.org/0395s1g07', 'fr', 1, 'https://ror.org/0395s1g07 Clinique de La Source'),
(57757, 'https://ror.org/0396h7r78', 'no_lang_code', 1, 'https://ror.org/0396h7r78 Studi Associati (Switzerland)'),
(57758, 'https://ror.org/0396taz57', 'en', 1, 'https://ror.org/0396taz57 Kyoto Municipal Institute of Industrial Technology and Culture äŗ¬éƒ½åø‚ē«‹čŠøč”“å·„ē§‘å¤§å­¦å·„ę„­ęŠ€č”“ę–‡åŒ–ē ”ē©¶ę‰€'),
(57759, 'https://ror.org/03982hf34', 'en', 1, 'https://ror.org/03982hf34 New Huadu Business School ę–°åŽéƒ½å•†å­¦é™¢'),
(57760, 'https://ror.org/039a0eq51', 'de', 1, 'https://ror.org/039a0eq51 Ostkirchliches Institut Regensburg'),
(57761, 'https://ror.org/039azq733', 'no_lang_code', 1, 'https://ror.org/039azq733 Ekogroup Czech (Czechia)'),
(57762, 'https://ror.org/039dcrv13', 'cs', 1, 'https://ror.org/039dcrv13 Muzeum Karlovy Vary'),
(57763, 'https://ror.org/039e1zg46', 'no_lang_code', 1, 'https://ror.org/039e1zg46 Immobiliser Central Europe (Czechia)'),
(57764, 'https://ror.org/039fsnc94', 'no_lang_code', 1, 'https://ror.org/039fsnc94 Oenobiol (France)'),
(57765, 'https://ror.org/039fymv14', 'no_lang_code', 1, 'https://ror.org/039fymv14 Malik Management (Switzerland)'),
(57766, 'https://ror.org/039najk11', 'es', 1, 'https://ror.org/039najk11 Fundacion Florencio Fiorini'),
(57767, 'https://ror.org/039nme287', 'no_lang_code', 1, 'https://ror.org/039nme287 Woodcomp (Czechia)'),
(57768, 'https://ror.org/039qk4e20', 'no_lang_code', 1, 'https://ror.org/039qk4e20 Isotra (Czechia)'),
(57769, 'https://ror.org/039rjaf45', 'no_lang_code', 1, 'https://ror.org/039rjaf45 Bosch Rexroth (Czechia)'),
(57770, 'https://ror.org/039t6ws48', 'no_lang_code', 1, 'https://ror.org/039t6ws48 Sindat (Czechia)'),
(57771, 'https://ror.org/039vtmd91', 'no_lang_code', 1, 'https://ror.org/039vtmd91 Jazz Pharmaceuticals (Italy)'),
(57772, 'https://ror.org/039vvd931', 'en', 1, 'https://ror.org/039vvd931 Community Action Agency of St. Louis County'),
(57773, 'https://ror.org/039x2ss79', 'no_lang_code', 1, 'https://ror.org/039x2ss79 Irbis (Czechia)'),
(57774, 'https://ror.org/039ztcx57', 'fr', 1, 'https://ror.org/039ztcx57 Institut de Recherche en HƩmatologie et Transplantation'),
(57775, 'https://ror.org/03a05n602', 'no_lang_code', 1, 'https://ror.org/03a05n602 Telkom (South Africa)'),
(57776, 'https://ror.org/03a05sb88', 'fr', 1, 'https://ror.org/03a05sb88 Laboratoires i2m'),
(57777, 'https://ror.org/03a17hk77', 'fr', 1, 'https://ror.org/03a17hk77 Association Suisse pour le Service aux RƩgions et Communes'),
(57778, 'https://ror.org/03a1ck781', 'it', 1, 'https://ror.org/03a1ck781 Academia Engiadina'),
(57779, 'https://ror.org/03a2v5m77', 'no_lang_code', 1, 'https://ror.org/03a2v5m77 Atega (Czechia)'),
(57780, 'https://ror.org/03a2yyf19', 'no_lang_code', 1, 'https://ror.org/03a2yyf19 Prefa Praha (Czechia)'),
(57781, 'https://ror.org/03a4r5t71', 'en', 1, 'https://ror.org/03a4r5t71 Vanguard Healthcare'),
(57782, 'https://ror.org/03a62s155', 'en', 1, 'https://ror.org/03a62s155 Westminster Guarantee Protection Trustees'),
(57783, 'https://ror.org/03a6ejk87', 'no_lang_code', 1, 'https://ror.org/03a6ejk87 CIS Pharma (Switzerland)'),
(57784, 'https://ror.org/03aagvh91', 'no_lang_code', 1, 'https://ror.org/03aagvh91 Prvnƭ regionƔlnƭ rozvojovƔ (Czechia)'),
(57785, 'https://ror.org/03acjy802', 'no_lang_code', 1, 'https://ror.org/03acjy802 Aroma Praha (Czechia)'),
(57786, 'https://ror.org/03adg5y95', 'no_lang_code', 1, 'https://ror.org/03adg5y95 Romill (Czechia)'),
(57787, 'https://ror.org/03ae66d75', 'no_lang_code', 1, 'https://ror.org/03ae66d75 Nuance Communications (United Kingdom)'),
(57788, 'https://ror.org/03afd3583', 'en', 1, 'https://ror.org/03afd3583 Schweizerische Akademie für Entwicklung Swiss Academy for Development'),
(57789, 'https://ror.org/03agt1e39', 'nl', 1, 'https://ror.org/03agt1e39 Stichting Rotterdams Kinderrevalidatie Fonds Adriaanstichting'),
(57790, 'https://ror.org/03ajhc397', 'no_lang_code', 1, 'https://ror.org/03ajhc397 BohuŔovickÔ MlékÔrna (Czechia)'),
(57791, 'https://ror.org/03akpdh76', 'de', 1, 'https://ror.org/03akpdh76 ZNS Hannelore Kohl Stiftung'),
(57792, 'https://ror.org/03amgzq35', 'de', 1, 'https://ror.org/03amgzq35 Stiftung Zürcher Kinder- und Jugendheime'),
(57793, 'https://ror.org/03an0wj74', 'no_lang_code', 1, 'https://ror.org/03an0wj74 BASF (France)'),
(57794, 'https://ror.org/03ans1x38', 'de', 1, 'https://ror.org/03ans1x38 Departement Gesundheit und Soziales'),
(57795, 'https://ror.org/03apaw308', 'de', 1, 'https://ror.org/03apaw308 Stiftung für Forschung in Spätantike und Mittelalter HR. Sennhauser'),
(57796, 'https://ror.org/03apaxe73', 'no_lang_code', 1, 'https://ror.org/03apaxe73 E2A Architects (Switzerland)'),
(57797, 'https://ror.org/03apfzf38', 'no_lang_code', 1, 'https://ror.org/03apfzf38 ChoceňskÔ MlékÔrn (Czechia)'),
(57798, 'https://ror.org/03aps1n19', 'no_lang_code', 1, 'https://ror.org/03aps1n19 Pragolab (Czechia)'),
(57799, 'https://ror.org/03aqj2f62', 'fr', 1, 'https://ror.org/03aqj2f62 Institut des Sciences du VƩgƩtal'),
(57800, 'https://ror.org/03asdhg22', 'no_lang_code', 1, 'https://ror.org/03asdhg22 Myx (Switzerland)'),
(57801, 'https://ror.org/03av2w516', 'en', 1, 'https://ror.org/03av2w516 Technology Academy Finland Tekniikan Akatemia'),
(57802, 'https://ror.org/03av9yr88', 'en', 1, 'https://ror.org/03av9yr88 Whitley Wildlife Conservation Trust'),
(57803, 'https://ror.org/03awcax09', 'no_lang_code', 1, 'https://ror.org/03awcax09 Hutní Projekt Frýdek-Místek (Czechia)'),
(57804, 'https://ror.org/03awvhn35', 'fr', 1, 'https://ror.org/03awvhn35 Centre Alpien de PhytogƩographie'),
(57805, 'https://ror.org/03az84415', 'no_lang_code', 1, 'https://ror.org/03az84415 Intriple (Czechia)'),
(57806, 'https://ror.org/03azdp011', 'no_lang_code', 1, 'https://ror.org/03azdp011 J. Jindra (Czechia)'),
(57807, 'https://ror.org/03b0fve92', 'fr', 1, 'https://ror.org/03b0fve92 Herbarom Laboratoire'),
(57808, 'https://ror.org/03b0wgg06', 'no_lang_code', 1, 'https://ror.org/03b0wgg06 Laboratoires SVR (France)'),
(57809, 'https://ror.org/03b17a012', 'en', 1, 'https://ror.org/03b17a012 Bureau of Economic Analysis'),
(57810, 'https://ror.org/03b1jj954', 'no_lang_code', 1, 'https://ror.org/03b1jj954 PS Profi (Czechia)'),
(57811, 'https://ror.org/03b364z86', 'no_lang_code', 1, 'https://ror.org/03b364z86 Trevos (Czechia)'),
(57812, 'https://ror.org/03b3dd703', 'no_lang_code', 1, 'https://ror.org/03b3dd703 Trios (Czechia)'),
(57813, 'https://ror.org/03b3zsb94', 'no_lang_code', 1, 'https://ror.org/03b3zsb94 Fosfa (Czechia)'),
(57814, 'https://ror.org/03b4j0710', 'no_lang_code', 1, 'https://ror.org/03b4j0710 National Instruments (Ireland)'),
(57815, 'https://ror.org/03b5tag12', 'en', 1, 'https://ror.org/03b5tag12 The Toyota Foundation ćƒˆćƒØć‚æč²”å›£'),
(57816, 'https://ror.org/03b6b6988', 'no_lang_code', 1, 'https://ror.org/03b6b6988 Diamo (Czechia)'),
(57817, 'https://ror.org/03b7qtd49', 'de', 1, 'https://ror.org/03b7qtd49 Büchi Labortechnik'),
(57818, 'https://ror.org/03b8y4g05', 'en', 1, 'https://ror.org/03b8y4g05 North Dakota Office of the Governor'),
(57819, 'https://ror.org/03b9ne411', 'no_lang_code', 1, 'https://ror.org/03b9ne411 VH Pharma (Czechia)'),
(57820, 'https://ror.org/03bb8wr45', 'no_lang_code', 1, 'https://ror.org/03bb8wr45 Natus (New Zealand)'),
(57821, 'https://ror.org/03bbymp68', 'no_lang_code', 1, 'https://ror.org/03bbymp68 Amati-Denak (Czechia)'),
(57822, 'https://ror.org/03bc19b89', 'en', 1, 'https://ror.org/03bc19b89 Korean Endocrine Society ėŒ€ķ•œė‚“ė¶„ė¹„ķ•™ķšŒ'),
(57823, 'https://ror.org/03bc5w075', 'en', 1, 'https://ror.org/03bc5w075 State Committee on Science and Technology'),
(57824, 'https://ror.org/03bce7633', 'no_lang_code', 1, 'https://ror.org/03bce7633 Metso (United States)'),
(57825, 'https://ror.org/03bfvr743', 'no_lang_code', 1, 'https://ror.org/03bfvr743 ATS Telcom Praha (Czechia)'),
(57826, 'https://ror.org/03bj5da63', 'en', 1, 'https://ror.org/03bj5da63 PƤivikki and Sakari Sohlberg Foundation PƤivikki ja Sakari Sohlbergin sƤƤtiƶ'),
(57827, 'https://ror.org/03bmbxh67', 'no_lang_code', 1, 'https://ror.org/03bmbxh67 AteliƩry TapisƩriƭ sro'),
(57828, 'https://ror.org/03bpesm64', 'pt', 1, 'https://ror.org/03bpesm64 Instituto Nacional de CiĆŖncia e Tecnologia em Entomologia Molecular'),
(57829, 'https://ror.org/03bqgx731', 'no_lang_code', 1, 'https://ror.org/03bqgx731 Ingredia (Czechia)'),
(57830, 'https://ror.org/03bqmms96', 'en', 1, 'https://ror.org/03bqmms96 Southern African Institute of Mining and Metallurgy'),
(57831, 'https://ror.org/03brbzh91', 'no_lang_code', 1, 'https://ror.org/03brbzh91 Baroza (Czechia)'),
(57832, 'https://ror.org/03btg9194', 'cs', 1, 'https://ror.org/03btg9194 MezinÔrodní TestovÔní Drůbeže');
INSERT INTO `rors` VALUES
(57833, 'https://ror.org/03bw04561', 'no_lang_code', 1, 'https://ror.org/03bw04561 Gleason (United States)'),
(57834, 'https://ror.org/03bwbnb24', 'en', 1, 'https://ror.org/03bwbnb24 Southwestern Community College - North Carolina'),
(57835, 'https://ror.org/03bwk9n44', 'en', 1, 'https://ror.org/03bwk9n44 Strategic Initiative Materials in Flanders'),
(57836, 'https://ror.org/03bzwhy87', 'cs', 1, 'https://ror.org/03bzwhy87 ZemědělskĆ© Družstvo VlastnĆ­kÅÆ MrĆ”kotĆ­n'),
(57837, 'https://ror.org/03c1wwn39', 'no_lang_code', 1, 'https://ror.org/03c1wwn39 Treeze (Switzerland)'),
(57838, 'https://ror.org/03c39xh37', 'en', 1, 'https://ror.org/03c39xh37 Institute for applied Biology and Landscape Planning nstitut für angewandte Biologie und Landschaftsplanung'),
(57839, 'https://ror.org/03c3qzd14', 'no_lang_code', 1, 'https://ror.org/03c3qzd14 Neurotune (Switzerland)'),
(57840, 'https://ror.org/03c4j0595', 'en', 1, 'https://ror.org/03c4j0595 Court of Arbitration for Sport Tribunal arbitral du sport'),
(57841, 'https://ror.org/03c4z4v61', 'no_lang_code', 1, 'https://ror.org/03c4z4v61 Jean-Marc Blanc Consultant (Switzerland)'),
(57842, 'https://ror.org/03c5aw809', 'no_lang_code', 1, 'https://ror.org/03c5aw809 BENEKOVterm (Czechia)'),
(57843, 'https://ror.org/03c6bbm42', 'no_lang_code', 1, 'https://ror.org/03c6bbm42 Smart Technik (Czechia)'),
(57844, 'https://ror.org/03c7h8w67', 'en', 1, 'https://ror.org/03c7h8w67 Centre for the Study of Democracy and Culture Centrum pro Studium Demokracie a Kultury'),
(57845, 'https://ror.org/03c7ss521', 'no_lang_code', 1, 'https://ror.org/03c7ss521 STMicroelectronics (Czechia)'),
(57846, 'https://ror.org/03c8aye58', 'en', 1, 'https://ror.org/03c8aye58 R. J. Taylor, Jr. Foundation'),
(57847, 'https://ror.org/03c8sng38', 'no_lang_code', 1, 'https://ror.org/03c8sng38 SMP (Czechia)'),
(57848, 'https://ror.org/03cc4wz29', 'de', 1, 'https://ror.org/03cc4wz29 ArchƤologie Baselland'),
(57849, 'https://ror.org/03ccjhx84', 'no_lang_code', 1, 'https://ror.org/03ccjhx84 Medicamat (France)'),
(57850, 'https://ror.org/03cd5c095', 'no_lang_code', 1, 'https://ror.org/03cd5c095 Fiedler Zdeněk (Czechia)'),
(57851, 'https://ror.org/03ce03q08', 'no_lang_code', 1, 'https://ror.org/03ce03q08 Essence Line (Czechia)'),
(57852, 'https://ror.org/03ce77208', 'en', 1, 'https://ror.org/03ce77208 Kyiv Mohyla Business School ŠšŠøŃ”Š²Š¾-ŠœŠ¾Š³ŠøŠ»ŃŠ½ŃŃŒŠŗŠ° Бізнес Школа'),
(57853, 'https://ror.org/03ceayq64', 'no_lang_code', 1, 'https://ror.org/03ceayq64 Rheinmetall (Switzerland)'),
(57854, 'https://ror.org/03cepne78', 'en', 1, 'https://ror.org/03cepne78 Institute of Engineering Thermophysics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технічної теплофізики ŠŠŠ України'),
(57855, 'https://ror.org/03cfd9m08', 'en', 1, 'https://ror.org/03cfd9m08 Combined Ophthalmic Research Rotterdam'),
(57856, 'https://ror.org/03cg1bv47', 'no_lang_code', 1, 'https://ror.org/03cg1bv47 OSI Systems (Australia)'),
(57857, 'https://ror.org/03chnjt72', 'en', 1, 'https://ror.org/03chnjt72 Natural History Museum of Basel Naturhistorisches Museum Basel'),
(57858, 'https://ror.org/03ck95c19', 'en', 1, 'https://ror.org/03ck95c19 Institute for Regional Economics Библиотека Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° проблем Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(57859, 'https://ror.org/03ckjfz66', 'no_lang_code', 1, 'https://ror.org/03ckjfz66 Synerlab (France)'),
(57860, 'https://ror.org/03cnpnn47', 'no_lang_code', 1, 'https://ror.org/03cnpnn47 TT Servis (Czechia)'),
(57861, 'https://ror.org/03cqqyv81', 'en', 1, 'https://ror.org/03cqqyv81 Rollie R. Kelley Family Foundation'),
(57862, 'https://ror.org/03cse4829', 'no_lang_code', 1, 'https://ror.org/03cse4829 Laboratoř Monitoring Praha (Czechia)'),
(57863, 'https://ror.org/03ct46856', 'en', 1, 'https://ror.org/03ct46856 Environment Canterbury'),
(57864, 'https://ror.org/03cw8qd03', 'no_lang_code', 1, 'https://ror.org/03cw8qd03 Zurich Insurance Group (Switzerland) Zürich Versicherungen'),
(57865, 'https://ror.org/03cxpjh03', 'no_lang_code', 1, 'https://ror.org/03cxpjh03 Rumi Scientific (United States)'),
(57866, 'https://ror.org/03cyt4c89', 'fr', 1, 'https://ror.org/03cyt4c89 HƓpital du Jura Bernois'),
(57867, 'https://ror.org/03d013e69', 'no_lang_code', 1, 'https://ror.org/03d013e69 Ipra (Czechia)'),
(57868, 'https://ror.org/03d01nv48', 'no_lang_code', 1, 'https://ror.org/03d01nv48 Therabel (France)'),
(57869, 'https://ror.org/03d5p6p20', 'no_lang_code', 1, 'https://ror.org/03d5p6p20 Qiagen (Australia)'),
(57870, 'https://ror.org/03d795g20', 'no_lang_code', 1, 'https://ror.org/03d795g20 Newton Media (Czechia)'),
(57871, 'https://ror.org/03d8wad17', 'no_lang_code', 1, 'https://ror.org/03d8wad17 Lanex (Czechia)'),
(57872, 'https://ror.org/03d9a6q43', 'no_lang_code', 1, 'https://ror.org/03d9a6q43 Ecolab (United Kingdom)'),
(57873, 'https://ror.org/03d9zp606', 'de', 1, 'https://ror.org/03d9zp606 Schweizerische Gesellschaft für Ländliche Geschichte'),
(57874, 'https://ror.org/03dcnm155', 'no_lang_code', 1, 'https://ror.org/03dcnm155 Bentley Instruments (France)'),
(57875, 'https://ror.org/03dcymj98', 'no_lang_code', 1, 'https://ror.org/03dcymj98 Institut pro testovƔnƭ a certifikaci Institute for Testing and Certification (Czechia)'),
(57876, 'https://ror.org/03ddp7810', 'no_lang_code', 1, 'https://ror.org/03ddp7810 Agrana (Czechia)'),
(57877, 'https://ror.org/03dev3m87', 'en', 1, 'https://ror.org/03dev3m87 Richard K. and Shirley S. Hemingway Foundation'),
(57878, 'https://ror.org/03dfda051', 'en', 1, 'https://ror.org/03dfda051 Robert Toigo Foundation'),
(57879, 'https://ror.org/03dhess34', 'no_lang_code', 1, 'https://ror.org/03dhess34 Laboratoires Gilbert (France)'),
(57880, 'https://ror.org/03dm55k03', 'en', 1, 'https://ror.org/03dm55k03 A Sister''s Hope'),
(57881, 'https://ror.org/03dnx2782', 'en', 1, 'https://ror.org/03dnx2782 Einhorn Family Charitable Trust'),
(57882, 'https://ror.org/03dpmhz82', 'en', 1, 'https://ror.org/03dpmhz82 Ministry of Health of Kyrgyzstan ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾Š¹ Республики'),
(57883, 'https://ror.org/03dryja89', 'no_lang_code', 1, 'https://ror.org/03dryja89 Bioterra (Switzerland)'),
(57884, 'https://ror.org/03dsw3e52', 'no_lang_code', 1, 'https://ror.org/03dsw3e52 Steinhauser (Czechia)'),
(57885, 'https://ror.org/03dt0c328', 'no_lang_code', 1, 'https://ror.org/03dt0c328 Tornos (Switzerland)'),
(57886, 'https://ror.org/03dx2f169', 'de', 1, 'https://ror.org/03dx2f169 Schweizerische Vereinigung Industrie und Landwirtschaft'),
(57887, 'https://ror.org/03dznjk55', 'fr', 1, 'https://ror.org/03dznjk55 Association de Recherche pour la Technologie et les Sciences'),
(57888, 'https://ror.org/03e00a165', 'en', 1, 'https://ror.org/03e00a165 Lasten syƶpƤsƤƤtiƶ VƤre VƤre Foundation for Pediatric Cancer Research'),
(57889, 'https://ror.org/03e04kk51', 'en', 1, 'https://ror.org/03e04kk51 Women and Children’s Health Research Institute'),
(57890, 'https://ror.org/03e1deg09', 'no_lang_code', 1, 'https://ror.org/03e1deg09 Laboratoires Vivacy (France)'),
(57891, 'https://ror.org/03e2hk535', 'no_lang_code', 1, 'https://ror.org/03e2hk535 PerkinElmer (Netherlands)'),
(57892, 'https://ror.org/03eckez71', 'en', 1, 'https://ror.org/03eckez71 Innovative Medical Partners (France)'),
(57893, 'https://ror.org/03ed0c093', 'en', 1, 'https://ror.org/03ed0c093 Cantonal Archives of the Grisons Staatsarchiv Graubünden'),
(57894, 'https://ror.org/03eeyeh88', 'cs', 1, 'https://ror.org/03eeyeh88 TyfloCentrum Brno'),
(57895, 'https://ror.org/03egrq064', 'fr', 1, 'https://ror.org/03egrq064 HƓpital NestlƩ'),
(57896, 'https://ror.org/03eh0pq56', 'no_lang_code', 1, 'https://ror.org/03eh0pq56 Merko'),
(57897, 'https://ror.org/03ek73244', 'en', 1, 'https://ror.org/03ek73244 St Marys Community Foundation'),
(57898, 'https://ror.org/03enna516', 'no_lang_code', 1, 'https://ror.org/03enna516 Z Group Steel Holding (Czechia)'),
(57899, 'https://ror.org/03epajw45', 'no_lang_code', 1, 'https://ror.org/03epajw45 Howden (Czechia)'),
(57900, 'https://ror.org/03er5fw87', 'no_lang_code', 1, 'https://ror.org/03er5fw87 Nakladatelstvƭ TriƔda (Czechia)'),
(57901, 'https://ror.org/03esh6f70', 'no_lang_code', 1, 'https://ror.org/03esh6f70 International Flavors & Fragrances (France)'),
(57902, 'https://ror.org/03et8cz85', 'cs', 1, 'https://ror.org/03et8cz85 Asociace Nemocnic ČR'),
(57903, 'https://ror.org/03ev0vh37', 'no_lang_code', 1, 'https://ror.org/03ev0vh37 P2A Medical (France)'),
(57904, 'https://ror.org/03evznq35', 'no_lang_code', 1, 'https://ror.org/03evznq35 Sewaco (Czechia)'),
(57905, 'https://ror.org/03eydf751', 'no_lang_code', 1, 'https://ror.org/03eydf751 TechnipFMC (Germany)'),
(57906, 'https://ror.org/03f05ts54', 'it', 1, 'https://ror.org/03f05ts54 Fondazione Alpina per le Scienze della Vita'),
(57907, 'https://ror.org/03f196d58', 'no_lang_code', 1, 'https://ror.org/03f196d58 Agrogen (Czechia)'),
(57908, 'https://ror.org/03f1tq367', 'no_lang_code', 1, 'https://ror.org/03f1tq367 M line (Czechia)'),
(57909, 'https://ror.org/03f3ngc78', 'no_lang_code', 1, 'https://ror.org/03f3ngc78 Sigmaplan (Switzerland)'),
(57910, 'https://ror.org/03f420b93', 'fi', 1, 'https://ror.org/03f420b93 Tekniikan EdistƤmissƤƤtiƶ'),
(57911, 'https://ror.org/03f4qgj81', 'en', 1, 'https://ror.org/03f4qgj81 Southern Medical Association'),
(57912, 'https://ror.org/03f57fs86', 'en', 1, 'https://ror.org/03f57fs86 Childrens Hospice International'),
(57913, 'https://ror.org/03f585086', 'no_lang_code', 1, 'https://ror.org/03f585086 Narex Sat (Czechia)'),
(57914, 'https://ror.org/03f6vnx95', 'no_lang_code', 1, 'https://ror.org/03f6vnx95 Comet System (Czechia)'),
(57915, 'https://ror.org/03f889737', 'no_lang_code', 1, 'https://ror.org/03f889737 Milcom Servis (Czechia)'),
(57916, 'https://ror.org/03fcyc593', 'no_lang_code', 1, 'https://ror.org/03fcyc593 Concurrent Solutions (United States)'),
(57917, 'https://ror.org/03ff02h25', 'no_lang_code', 1, 'https://ror.org/03ff02h25 ZemědělskĆ” a ekologickĆ” regionĆ”lnĆ­ agentura (Czechia)'),
(57918, 'https://ror.org/03ff67370', 'no_lang_code', 1, 'https://ror.org/03ff67370 Eurosignal (Czechia)'),
(57919, 'https://ror.org/03ff99w93', 'no_lang_code', 1, 'https://ror.org/03ff99w93 OGResearch (Czechia)'),
(57920, 'https://ror.org/03ffxvj05', 'en', 1, 'https://ror.org/03ffxvj05 Rutlish School'),
(57921, 'https://ror.org/03fkhh366', 'no_lang_code', 1, 'https://ror.org/03fkhh366 Hitachi (Netherlands)'),
(57922, 'https://ror.org/03fp7s507', 'cs', 1, 'https://ror.org/03fp7s507 ArmƔda SpƔsy'),
(57923, 'https://ror.org/03fpt5m65', 'de', 1, 'https://ror.org/03fpt5m65 MVZ Labor Ravensburg'),
(57924, 'https://ror.org/03fqv7d77', 'no_lang_code', 1, 'https://ror.org/03fqv7d77 Dispechem (Czechia)'),
(57925, 'https://ror.org/03fqz3d07', 'no_lang_code', 1, 'https://ror.org/03fqz3d07 Chondrometrics (Germany)'),
(57926, 'https://ror.org/03frwhf70', 'no_lang_code', 1, 'https://ror.org/03frwhf70 AGCO (France)'),
(57927, 'https://ror.org/03frxfd09', 'no_lang_code', 1, 'https://ror.org/03frxfd09 Smart Software (Czechia)'),
(57928, 'https://ror.org/03ft9kk45', 'de', 1, 'https://ror.org/03ft9kk45 Praktischer Umweltschutz'),
(57929, 'https://ror.org/03ftcvv28', 'en', 1, 'https://ror.org/03ftcvv28 Science & Technology Park (Czechia) Vědecko Technologický Park'),
(57930, 'https://ror.org/03fthp652', 'en', 1, 'https://ror.org/03fthp652 Institute Of Pesticides Formulation Technology'),
(57931, 'https://ror.org/03fxrgb29', 'no_lang_code', 1, 'https://ror.org/03fxrgb29 OmniActive Health Technologies (India)'),
(57932, 'https://ror.org/03fyfhn57', 'en', 1, 'https://ror.org/03fyfhn57 Town and Country Veterinary Clinic'),
(57933, 'https://ror.org/03fz9ws15', 'en', 1, 'https://ror.org/03fz9ws15 Institute Of Science De La Vision'),
(57934, 'https://ror.org/03g0bh391', 'no_lang_code', 1, 'https://ror.org/03g0bh391 Disam RT (Czechia)'),
(57935, 'https://ror.org/03g0p4t70', 'en', 1, 'https://ror.org/03g0p4t70 New Zealand wine'),
(57936, 'https://ror.org/03g18fj02', 'en', 1, 'https://ror.org/03g18fj02 T. Boone Pickens Foundation'),
(57937, 'https://ror.org/03g19es12', 'fr', 1, 'https://ror.org/03g19es12 Labex Synorg'),
(57938, 'https://ror.org/03g1x1714', 'no_lang_code', 1, 'https://ror.org/03g1x1714 Materials Design (France)'),
(57939, 'https://ror.org/03g1xh439', 'no_lang_code', 1, 'https://ror.org/03g1xh439 ESL (Czechia)'),
(57940, 'https://ror.org/03g2a6c32', 'no_lang_code', 1, 'https://ror.org/03g2a6c32 General Electric (Japan)'),
(57941, 'https://ror.org/03g2f4v48', 'fr', 1, 'https://ror.org/03g2f4v48 Angers Loire MƩtropole'),
(57942, 'https://ror.org/03g2j2c90', 'en', 1, 'https://ror.org/03g2j2c90 St Andrews Community Hospital'),
(57943, 'https://ror.org/03g34vx58', 'no_lang_code', 1, 'https://ror.org/03g34vx58 ČD Telematika (Czechia)'),
(57944, 'https://ror.org/03g5kfc06', 'no_lang_code', 1, 'https://ror.org/03g5kfc06 MICo (Czechia)'),
(57945, 'https://ror.org/03g6vn746', 'no_lang_code', 1, 'https://ror.org/03g6vn746 Proma Reha (Czechia)'),
(57946, 'https://ror.org/03g9fv045', 'en', 1, 'https://ror.org/03g9fv045 Community Food and Agriculture Coalition'),
(57947, 'https://ror.org/03gbw6p94', 'en', 1, 'https://ror.org/03gbw6p94 University of Technology Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Московской области Технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(57948, 'https://ror.org/03gd5r229', 'no_lang_code', 1, 'https://ror.org/03gd5r229 Grupo Dibaq (Spain)'),
(57949, 'https://ror.org/03geggj88', 'no_lang_code', 1, 'https://ror.org/03geggj88 Perrigo (France)'),
(57950, 'https://ror.org/03ggtzp34', 'en', 1, 'https://ror.org/03ggtzp34 Dr. Reddy''s Foundation'),
(57951, 'https://ror.org/03ghy5256', 'en', 1, 'https://ror.org/03ghy5256 Institute of Health Information and Statistics Ústav zdravotnických informací a statistiky ČR'),
(57952, 'https://ror.org/03gj08226', 'fr', 1, 'https://ror.org/03gj08226 Alimentarium'),
(57953, 'https://ror.org/03gjtay97', 'no_lang_code', 1, 'https://ror.org/03gjtay97 DLF Trifolium Hladké Životice (Czechia)'),
(57954, 'https://ror.org/03gnc6x04', 'en', 1, 'https://ror.org/03gnc6x04 Sociological Initiatives Foundation'),
(57955, 'https://ror.org/03gnxmx77', 'no_lang_code', 1, 'https://ror.org/03gnxmx77 Kemerovo Cardiology Center ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠ¾Š³Š¾ ŠšŠ°Ń€Š“ŠøŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ центра'),
(57956, 'https://ror.org/03gvq6m28', 'no_lang_code', 1, 'https://ror.org/03gvq6m28 Forest - Agro (Czechia)'),
(57957, 'https://ror.org/03gxkq182', 'en', 1, 'https://ror.org/03gxkq182 Juntendo University Urayasu Hospital é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žęµ¦å®‰ē—…é™¢'),
(57958, 'https://ror.org/03gzf6s70', 'no_lang_code', 1, 'https://ror.org/03gzf6s70 Steuler (Germany)'),
(57959, 'https://ror.org/03gzs6562', 'no_lang_code', 1, 'https://ror.org/03gzs6562 Narishige (Japan)'),
(57960, 'https://ror.org/03h13e556', 'no_lang_code', 1, 'https://ror.org/03h13e556 Ecolab (France)'),
(57961, 'https://ror.org/03h3r1n96', 'no_lang_code', 1, 'https://ror.org/03h3r1n96 Qiagen (Switzerland)'),
(57962, 'https://ror.org/03h43ej82', 'no_lang_code', 1, 'https://ror.org/03h43ej82 Comimpex (Czechia)'),
(57963, 'https://ror.org/03h4b0p21', 'no_lang_code', 1, 'https://ror.org/03h4b0p21 Oil India (India)'),
(57964, 'https://ror.org/03h4z1825', 'en', 1, 'https://ror.org/03h4z1825 Racing Victoria'),
(57965, 'https://ror.org/03h6sns07', 'no_lang_code', 1, 'https://ror.org/03h6sns07 Gen Trend (Czechia)'),
(57966, 'https://ror.org/03ha1m790', 'no_lang_code', 1, 'https://ror.org/03ha1m790 Wienerberger (Czechia)'),
(57967, 'https://ror.org/03haqsp75', 'en', 1, 'https://ror.org/03haqsp75 Institute of Atomic and Molecular Sciences, Academia Sinica äø­å¤®ē ”ē©¶é™¢åŽŸå­čˆ‡åˆ†å­ē§‘å­øē ”ē©¶ę‰€'),
(57968, 'https://ror.org/03harpv89', 'no_lang_code', 1, 'https://ror.org/03harpv89 VodnĆ­ Zdroje GLS Praha (Czechia)'),
(57969, 'https://ror.org/03harvh27', 'no_lang_code', 1, 'https://ror.org/03harvh27 Technika Pro MěřenĆ­ a Automatizaci (Czechia)'),
(57970, 'https://ror.org/03hcbtk03', 'en', 1, 'https://ror.org/03hcbtk03 Institut Dr Schrader Creachem'),
(57971, 'https://ror.org/03hccqd50', 'no_lang_code', 1, 'https://ror.org/03hccqd50 Makita (Germany)'),
(57972, 'https://ror.org/03hd5ck45', 'en', 1, 'https://ror.org/03hd5ck45 Rochester Roots'),
(57973, 'https://ror.org/03hdb6676', 'no_lang_code', 1, 'https://ror.org/03hdb6676 Hydrogenics (Canada)'),
(57974, 'https://ror.org/03hdjmh87', 'de', 1, 'https://ror.org/03hdjmh87 Institute Svizzer by products terapeutics Institute suisse des produits thƩrapeutiques Istituto per gli agenti svizzero Terapeutici Swissmedic'),
(57975, 'https://ror.org/03hh11c46', 'no_lang_code', 1, 'https://ror.org/03hh11c46 MSV Metal StudƩnka (Czechia)'),
(57976, 'https://ror.org/03hj0ge77', 'no_lang_code', 1, 'https://ror.org/03hj0ge77 SlƩvƔrna Chomutov (Czechia)'),
(57977, 'https://ror.org/03hj69t32', 'en', 1, 'https://ror.org/03hj69t32 Max Planck Center for Visual Computing and Communication'),
(57978, 'https://ror.org/03hj6c016', 'en', 1, 'https://ror.org/03hj6c016 Berenson Allen Center for Noninvasive Brain Stimulation'),
(57979, 'https://ror.org/03hjy8x14', 'en', 1, 'https://ror.org/03hjy8x14 Sparkplug Foundation'),
(57980, 'https://ror.org/03hkn9159', 'en', 1, 'https://ror.org/03hkn9159 Goulburn Valley Equine Hospital'),
(57981, 'https://ror.org/03hn7q415', 'no_lang_code', 1, 'https://ror.org/03hn7q415 Ecoprotect (Czechia)'),
(57982, 'https://ror.org/03hnn1y72', 'no_lang_code', 1, 'https://ror.org/03hnn1y72 Sanitarium Health and Wellbeing (Australia)'),
(57983, 'https://ror.org/03hph6c57', 'en', 1, 'https://ror.org/03hph6c57 Foundation for Urban and Regional Studies'),
(57984, 'https://ror.org/03hscv116', 'no_lang_code', 1, 'https://ror.org/03hscv116 ENVItech Bohemia (Czechia)'),
(57985, 'https://ror.org/03hsrn882', 'no_lang_code', 1, 'https://ror.org/03hsrn882 ANAKAN (Czechia)'),
(57986, 'https://ror.org/03ht51987', 'en', 1, 'https://ror.org/03ht51987 Norwegian Agriculture Agency'),
(57987, 'https://ror.org/03hvemf42', 'en', 1, 'https://ror.org/03hvemf42 Foundation for Education and European Culture Το ĪŠĪ“ĻĻ…Ī¼Ī± ΠαιΓείας και Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĪæĻ Ī ĪæĪ»Ī¹Ļ„Ī¹ĻƒĪ¼ĪæĻ'),
(57988, 'https://ror.org/03hvkpj98', 'de', 1, 'https://ror.org/03hvkpj98 Klinik Sonnenhof'),
(57989, 'https://ror.org/03hvqcb43', 'en', 1, 'https://ror.org/03hvqcb43 Foulkes Foundation'),
(57990, 'https://ror.org/03hvvks39', 'en', 1, 'https://ror.org/03hvvks39 Institute for Polymer Mechanics'),
(57991, 'https://ror.org/03hw5nc12', 'en', 1, 'https://ror.org/03hw5nc12 Sexually Transmitted Infection Research Foundation'),
(57992, 'https://ror.org/03hwv4250', 'no_lang_code', 1, 'https://ror.org/03hwv4250 LAO - Průmyslové Systémy (Czechia)'),
(57993, 'https://ror.org/03hzthr30', 'es', 1, 'https://ror.org/03hzthr30 Fundación Merck Salud'),
(57994, 'https://ror.org/03j12z232', 'en', 1, 'https://ror.org/03j12z232 Conservatoire et Jardin botaniques de la Ville de GenĆØve Conservatory and Botanical Garden of the City of Geneva'),
(57995, 'https://ror.org/03j353w33', 'no_lang_code', 1, 'https://ror.org/03j353w33 Berry (United States)'),
(57996, 'https://ror.org/03j8n6z33', 'en', 1, 'https://ror.org/03j8n6z33 Reagan-Udall Foundation'),
(57997, 'https://ror.org/03j99w497', 'en', 1, 'https://ror.org/03j99w497 Mercy Research'),
(57998, 'https://ror.org/03jan5912', 'en', 1, 'https://ror.org/03jan5912 Jiangsu Provincial Key Laboratory of Network and Information Security ę±Ÿč‹ēœē½‘ē»œäæ”ęÆå®‰å…Øé‡ē‚¹å®žéŖŒå®¤'),
(57999, 'https://ror.org/03jevp076', 'fr', 1, 'https://ror.org/03jevp076 Service de la recherche Ʃducation'),
(58000, 'https://ror.org/03jjhm649', 'no_lang_code', 1, 'https://ror.org/03jjhm649 Expro (United Kingdom)'),
(58001, 'https://ror.org/03jmp7p62', 'no_lang_code', 1, 'https://ror.org/03jmp7p62 FSC Bezpečnostnƭ Poradenstvƭ (Czechia)'),
(58002, 'https://ror.org/03jnwsv20', 'no_lang_code', 1, 'https://ror.org/03jnwsv20 Československý Lloyd (Czechia)'),
(58003, 'https://ror.org/03jrc7315', 'fr', 1, 'https://ror.org/03jrc7315 Cabinet de Psychiatrie et PsychothƩrapie'),
(58004, 'https://ror.org/03jrwxb40', 'no_lang_code', 1, 'https://ror.org/03jrwxb40 Zwahlen et Mayr (Switzerland)'),
(58005, 'https://ror.org/03jt5gp45', 'en', 1, 'https://ror.org/03jt5gp45 John Cochran VA Medical Center'),
(58006, 'https://ror.org/03jtbaq34', 'no_lang_code', 1, 'https://ror.org/03jtbaq34 F Air (Czechia)'),
(58007, 'https://ror.org/03k2mft71', 'no_lang_code', 1, 'https://ror.org/03k2mft71 Porsenna (Czechia)'),
(58008, 'https://ror.org/03k352971', 'en', 1, 'https://ror.org/03k352971 C.W. Bill Young VA Medical Center'),
(58009, 'https://ror.org/03k699w20', 'de', 1, 'https://ror.org/03k699w20 Berlinische Galerie'),
(58010, 'https://ror.org/03k6yxq48', 'en', 1, 'https://ror.org/03k6yxq48 Oklahoma City VA Health Care System'),
(58011, 'https://ror.org/03k8d9631', 'no_lang_code', 1, 'https://ror.org/03k8d9631 Brazilian Metallurgy and Mining Company Companhia Brasileira de Metalurgia e Mineração (Brazil)'),
(58012, 'https://ror.org/03kc1ze55', 'no_lang_code', 1, 'https://ror.org/03kc1ze55 Beskyd Fryčovice (Czechia)'),
(58013, 'https://ror.org/03kcc6909', 'en', 1, 'https://ror.org/03kcc6909 Experimental Research Institute of Metal-Cutting Machine Tools ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»Š¾Ń€ŠµŠ¶ŃƒŃ‰ŠøŃ… станков'),
(58014, 'https://ror.org/03ke2qx45', 'fr', 1, 'https://ror.org/03ke2qx45 Laboratoires Expanscience'),
(58015, 'https://ror.org/03kezjk28', 'en', 1, 'https://ror.org/03kezjk28 Centre for Management Development'),
(58016, 'https://ror.org/03kf9t316', 'no_lang_code', 1, 'https://ror.org/03kf9t316 Geotechnical Instruments (United Kingdom)'),
(58017, 'https://ror.org/03kpfb968', 'cs', 1, 'https://ror.org/03kpfb968 Centrum LĆ©ÄebnĆ© Rehabilitace Liberec'),
(58018, 'https://ror.org/03kq6fs81', 'no_lang_code', 1, 'https://ror.org/03kq6fs81 Bau-, Verkehrs- und Energiedirektion (Switzerland)'),
(58019, 'https://ror.org/03kr7zn98', 'no_lang_code', 1, 'https://ror.org/03kr7zn98 Systena (Japan)'),
(58020, 'https://ror.org/03kse5219', 'en', 1, 'https://ror.org/03kse5219 Bell Equine Veterinary Clinic'),
(58021, 'https://ror.org/03kwycy34', 'en', 1, 'https://ror.org/03kwycy34 Harris Birthright Research Centre for Fetal Medicine'),
(58022, 'https://ror.org/03kxdn807', 'ms', 1, 'https://ror.org/03kxdn807 Universiti Tenaga Nasional'),
(58023, 'https://ror.org/03ky6bg94', 'en', 1, 'https://ror.org/03ky6bg94 Food Bank of Northeast Georgia'),
(58024, 'https://ror.org/03kyg9945', 'no_lang_code', 1, 'https://ror.org/03kyg9945 Asklepion'),
(58025, 'https://ror.org/03m2daf51', 'de', 1, 'https://ror.org/03m2daf51 Memory-Klinik Entlisberg'),
(58026, 'https://ror.org/03m3t7g30', 'en', 1, 'https://ror.org/03m3t7g30 Jeff Gordon Children''s Foundation'),
(58027, 'https://ror.org/03m41z132', 'no_lang_code', 1, 'https://ror.org/03m41z132 Pohorelec (Czechia)'),
(58028, 'https://ror.org/03m6q2j85', 'en', 1, 'https://ror.org/03m6q2j85 Ho Chunk Community Development Corporation'),
(58029, 'https://ror.org/03m9tq224', 'de', 1, 'https://ror.org/03m9tq224 Abwasserverband Altenrhein'),
(58030, 'https://ror.org/03ma5bv95', 'de', 1, 'https://ror.org/03ma5bv95 Statistische Amt Basel-Stadt'),
(58031, 'https://ror.org/03mb0qq13', 'en', 1, 'https://ror.org/03mb0qq13 National Book Critics Circle'),
(58032, 'https://ror.org/03mbvnm11', 'no_lang_code', 1, 'https://ror.org/03mbvnm11 ALB expert (Czechia)'),
(58033, 'https://ror.org/03md8p445', 'en', 1, 'https://ror.org/03md8p445 The Cancer Institute Hospital ćŒć‚“ē ”ęœ‰ę˜Žē—…é™¢'),
(58034, 'https://ror.org/03mf2sh22', 'en', 1, 'https://ror.org/03mf2sh22 SciFund Challenge'),
(58035, 'https://ror.org/03mhzjs57', 'no_lang_code', 1, 'https://ror.org/03mhzjs57 INTER.MED (France)'),
(58036, 'https://ror.org/03mjxex31', 'no_lang_code', 1, 'https://ror.org/03mjxex31 Kotrbatý (Czechia)'),
(58037, 'https://ror.org/03mq0hx55', 'no_lang_code', 1, 'https://ror.org/03mq0hx55 ALP (France) Articles De Laboratoire De Precision'),
(58038, 'https://ror.org/03ms9ra30', 'no_lang_code', 1, 'https://ror.org/03ms9ra30 Alere (Switzerland)'),
(58039, 'https://ror.org/03msdt869', 'en', 1, 'https://ror.org/03msdt869 Institute of Plant and Animal Ecology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø растений Šø животных Š£Ń€Šž Š ŠŠ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(58040, 'https://ror.org/03mse1e58', 'no_lang_code', 1, 'https://ror.org/03mse1e58 St.Galler Stadtwerke (Switzerland)'),
(58041, 'https://ror.org/03msrn925', 'no_lang_code', 1, 'https://ror.org/03msrn925 Sumitomo Electric Industries (United States)'),
(58042, 'https://ror.org/03mw0t712', 'no_lang_code', 1, 'https://ror.org/03mw0t712 Atos (Czechia)'),
(58043, 'https://ror.org/03mx3cq03', 'no_lang_code', 1, 'https://ror.org/03mx3cq03 Atenisi Institute'),
(58044, 'https://ror.org/03mzbnj03', 'en', 1, 'https://ror.org/03mzbnj03 VA Southeast Network'),
(58045, 'https://ror.org/03n06wy62', 'no_lang_code', 1, 'https://ror.org/03n06wy62 Algae Health (Ireland) Slainte Alga Teoranta'),
(58046, 'https://ror.org/03n0fvd12', 'en', 1, 'https://ror.org/03n0fvd12 Government of Estonia Vabariigi Valitsus'),
(58047, 'https://ror.org/03n0h8b63', 'no_lang_code', 1, 'https://ror.org/03n0h8b63 Applycon (Czechia)'),
(58048, 'https://ror.org/03n1jkx09', 'en', 1, 'https://ror.org/03n1jkx09 Wisconsin Association for Perinatal Care'),
(58049, 'https://ror.org/03n2kr187', 'cs', 1, 'https://ror.org/03n2kr187 MěstskĆ© lesy Chomutov'),
(58050, 'https://ror.org/03n2my419', 'no_lang_code', 1, 'https://ror.org/03n2my419 Platinum Equity (United Kingdom)'),
(58051, 'https://ror.org/03n2rkn85', 'no_lang_code', 1, 'https://ror.org/03n2rkn85 Autel (Czechia)'),
(58052, 'https://ror.org/03n40zw95', 'no_lang_code', 1, 'https://ror.org/03n40zw95 Analytika (Czechia)'),
(58053, 'https://ror.org/03n9g7g16', 'no_lang_code', 1, 'https://ror.org/03n9g7g16 SPX Corporation (United Kingdom)'),
(58054, 'https://ror.org/03nbpmv05', 'en', 1, 'https://ror.org/03nbpmv05 Vitalyst Health Foundation'),
(58055, 'https://ror.org/03nc73a98', 'no_lang_code', 1, 'https://ror.org/03nc73a98 Aura (Czechia)'),
(58056, 'https://ror.org/03nd93634', 'no_lang_code', 1, 'https://ror.org/03nd93634 KSM Castings (Czechia)'),
(58057, 'https://ror.org/03ne0ps53', 'cs', 1, 'https://ror.org/03ne0ps53 Nemocnice u Sv. Jiří'),
(58058, 'https://ror.org/03ne27j26', 'en', 1, 'https://ror.org/03ne27j26 Westfield Foundation'),
(58059, 'https://ror.org/03neag539', 'no_lang_code', 1, 'https://ror.org/03neag539 ProTyS (Czechia)'),
(58060, 'https://ror.org/03nffrn19', 'en', 1, 'https://ror.org/03nffrn19 Niagara County'),
(58061, 'https://ror.org/03nhgnd83', 'no_lang_code', 1, 'https://ror.org/03nhgnd83 BAK Basel Economics (Switzerland)'),
(58062, 'https://ror.org/03nm3et74', 'en', 1, 'https://ror.org/03nm3et74 Whiting Foundation'),
(58063, 'https://ror.org/03nmqee71', 'no_lang_code', 1, 'https://ror.org/03nmqee71 Enzymix (Czechia)'),
(58064, 'https://ror.org/03nnhtv03', 'no_lang_code', 1, 'https://ror.org/03nnhtv03 PRO.MED.CS Praha (Czechia)'),
(58065, 'https://ror.org/03nnkbc97', 'de', 1, 'https://ror.org/03nnkbc97 Institut für Ɩkologisch Systemische Therapie'),
(58066, 'https://ror.org/03npdgz04', 'no_lang_code', 1, 'https://ror.org/03npdgz04 Papouch (Czechia)'),
(58067, 'https://ror.org/03nq3xp69', 'no_lang_code', 1, 'https://ror.org/03nq3xp69 Balak (Czechia)'),
(58068, 'https://ror.org/03nqg9919', 'no_lang_code', 1, 'https://ror.org/03nqg9919 Sweden and Martina (Italy)'),
(58069, 'https://ror.org/03nrthd98', 'no_lang_code', 1, 'https://ror.org/03nrthd98 Avia Propeller (Czechia)'),
(58070, 'https://ror.org/03ntvfv97', 'no_lang_code', 1, 'https://ror.org/03ntvfv97 IVV Engineering (Czechia)'),
(58071, 'https://ror.org/03nwa6q52', 'no_lang_code', 1, 'https://ror.org/03nwa6q52 Med-Consilium (Switzerland)'),
(58072, 'https://ror.org/03nwwb023', 'fr', 1, 'https://ror.org/03nwwb023 Centre Médico Chirurgical de Tronquières'),
(58073, 'https://ror.org/03nxzws18', 'no_lang_code', 1, 'https://ror.org/03nxzws18 Stada Arzneimittel (United Kingdom)'),
(58074, 'https://ror.org/03nzsxf62', 'de', 1, 'https://ror.org/03nzsxf62 Schweizer Presserat'),
(58075, 'https://ror.org/03p05j480', 'no_lang_code', 1, 'https://ror.org/03p05j480 Andritz (United States)'),
(58076, 'https://ror.org/03p0pyx76', 'cs', 1, 'https://ror.org/03p0pyx76 Lesy JƔchymov'),
(58077, 'https://ror.org/03p2b2376', 'en', 1, 'https://ror.org/03p2b2376 Laser Spine Institute'),
(58078, 'https://ror.org/03p343x23', 'no_lang_code', 1, 'https://ror.org/03p343x23 Ramet (Czechia)'),
(58079, 'https://ror.org/03p504z95', 'no_lang_code', 1, 'https://ror.org/03p504z95 Rosogneupor (Russia) Š Š¾ŃŠ¾Š³Š½ŠµŃƒŠæŠ¾Ń€'),
(58080, 'https://ror.org/03p9qk185', 'no_lang_code', 1, 'https://ror.org/03p9qk185 FMP (Czechia)'),
(58081, 'https://ror.org/03pbfnd97', 'en', 1, 'https://ror.org/03pbfnd97 Foundation for Alcohol Research'),
(58082, 'https://ror.org/03pc1y818', 'no_lang_code', 1, 'https://ror.org/03pc1y818 Resta (Czechia)'),
(58083, 'https://ror.org/03pe1pm82', 'no_lang_code', 1, 'https://ror.org/03pe1pm82 Scherrer (Switzerland)'),
(58084, 'https://ror.org/03pext169', 'en', 1, 'https://ror.org/03pext169 National Agriculture in the Classroom'),
(58085, 'https://ror.org/03pfa6e38', 'no_lang_code', 1, 'https://ror.org/03pfa6e38 TGS Nastroje-Stroje-Technologicke Sluzby (Czechia)'),
(58086, 'https://ror.org/03pjfjx36', 'no_lang_code', 1, 'https://ror.org/03pjfjx36 Institute of Bohuslav MartinÅÆ (Czechia)'),
(58087, 'https://ror.org/03pjnvf85', 'en', 1, 'https://ror.org/03pjnvf85 Zürich Zoological Garden Zürich Zoologischer Garten'),
(58088, 'https://ror.org/03pkbp732', 'en', 1, 'https://ror.org/03pkbp732 Brick and Tile Research Institute Institut für Ziegelforschung Essen e. V.'),
(58089, 'https://ror.org/03pmqmn38', 'it', 1, 'https://ror.org/03pmqmn38 Consorzio per la Fisica Trieste'),
(58090, 'https://ror.org/03pmr7d81', 'en', 1, 'https://ror.org/03pmr7d81 National Technology Platform for Road Transport TechnologickĆ” platforma silničnĆ­ doprava'),
(58091, 'https://ror.org/03ppytd12', 'no_lang_code', 1, 'https://ror.org/03ppytd12 PovodĆ­ Labe (Czechia)'),
(58092, 'https://ror.org/03pq14610', 'en', 1, 'https://ror.org/03pq14610 Schizophrenia Research Fund'),
(58093, 'https://ror.org/03ps0vw43', 'en', 1, 'https://ror.org/03ps0vw43 Organization for Refugee and Immigrant Success'),
(58094, 'https://ror.org/03pskz739', 'no_lang_code', 1, 'https://ror.org/03pskz739 Molecular Engines Laboratories (France)'),
(58095, 'https://ror.org/03pt8bk73', 'cs', 1, 'https://ror.org/03pt8bk73 NĆ”rodnĆ­ ReferenčnĆ­ Centrum'),
(58096, 'https://ror.org/03ptky016', 'no_lang_code', 1, 'https://ror.org/03ptky016 Legrand (United States)'),
(58097, 'https://ror.org/03pvhr873', 'no_lang_code', 1, 'https://ror.org/03pvhr873 SNZ Ingenieure und Planer (Switzerland)'),
(58098, 'https://ror.org/03pww3q25', 'no_lang_code', 1, 'https://ror.org/03pww3q25 Atea Praha (Czechia)'),
(58099, 'https://ror.org/03pxb4090', 'no_lang_code', 1, 'https://ror.org/03pxb4090 Betula Pendula (Czechia)'),
(58100, 'https://ror.org/03pxknc36', 'no_lang_code', 1, 'https://ror.org/03pxknc36 Emerson (Czechia)'),
(58101, 'https://ror.org/03py6vn41', 'en', 1, 'https://ror.org/03py6vn41 Wilson Foundation'),
(58102, 'https://ror.org/03pyybh29', 'no_lang_code', 1, 'https://ror.org/03pyybh29 Richcore Lifesciences (India)'),
(58103, 'https://ror.org/03pzk8p04', 'no_lang_code', 1, 'https://ror.org/03pzk8p04 MARAT Engineering (Czechia)'),
(58104, 'https://ror.org/03pzt8k43', 'no_lang_code', 1, 'https://ror.org/03pzt8k43 Ankara (Czechia)'),
(58105, 'https://ror.org/03q2zhz47', 'en', 1, 'https://ror.org/03q2zhz47 Siouxland Community Foundation'),
(58106, 'https://ror.org/03q3ejp70', 'no_lang_code', 1, 'https://ror.org/03q3ejp70 X Com Base (Czechia)'),
(58107, 'https://ror.org/03q51sy36', 'no_lang_code', 1, 'https://ror.org/03q51sy36 ZPA Pecky (Czechia)'),
(58108, 'https://ror.org/03q56pj35', 'da', 1, 'https://ror.org/03q56pj35 BĆørnecancerfonden'),
(58109, 'https://ror.org/03q5d1a68', 'no_lang_code', 1, 'https://ror.org/03q5d1a68 Lets Fly (Czechia)'),
(58110, 'https://ror.org/03q5hdj87', 'de', 1, 'https://ror.org/03q5hdj87 Allgemeine Gewerbeschule Basel'),
(58111, 'https://ror.org/03q6nea03', 'no_lang_code', 1, 'https://ror.org/03q6nea03 Alucast (Czechia)'),
(58112, 'https://ror.org/03q7xbe07', 'en', 1, 'https://ror.org/03q7xbe07 Shanghai Chemical Reagent Research Institute'),
(58113, 'https://ror.org/03q88m992', 'no_lang_code', 1, 'https://ror.org/03q88m992 Keramost (Czechia)'),
(58114, 'https://ror.org/03q8z7066', 'no_lang_code', 1, 'https://ror.org/03q8z7066 DFC Design (Czechia)'),
(58115, 'https://ror.org/03qa42z85', 'it', 1, 'https://ror.org/03qa42z85 Librairie Droz'),
(58116, 'https://ror.org/03qc9s178', 'en', 1, 'https://ror.org/03qc9s178 Minorities in Agriculture, Natural Resources and Related Sciences'),
(58117, 'https://ror.org/03qdj6986', 'no_lang_code', 1, 'https://ror.org/03qdj6986 Becton Dickinson (Netherlands)'),
(58118, 'https://ror.org/03qj53n95', 'en', 1, 'https://ror.org/03qj53n95 Australian Road Research Board'),
(58119, 'https://ror.org/03qj6qh62', 'no_lang_code', 1, 'https://ror.org/03qj6qh62 Lyckeby Amylex (Czechia)'),
(58120, 'https://ror.org/03qk9fj07', 'no_lang_code', 1, 'https://ror.org/03qk9fj07 Agropodnik Kosetice (Czechia)'),
(58121, 'https://ror.org/03qmjt802', 'no_lang_code', 1, 'https://ror.org/03qmjt802 MPD Plus (Czechia)'),
(58122, 'https://ror.org/03qps9x60', 'fr', 1, 'https://ror.org/03qps9x60 Agence des Aires Marines ProtƩgƩes'),
(58123, 'https://ror.org/03qs9kr26', 'no_lang_code', 1, 'https://ror.org/03qs9kr26 Benteler (Czechia)'),
(58124, 'https://ror.org/03qv00g45', 'no_lang_code', 1, 'https://ror.org/03qv00g45 Mavel (Czechia)'),
(58125, 'https://ror.org/03qvjzj64', 'en', 1, 'https://ror.org/03qvjzj64 St. John''s National Academy of Health Sciences'),
(58126, 'https://ror.org/03qvrm396', 'en', 1, 'https://ror.org/03qvrm396 Poverty and Race Research Action Council'),
(58127, 'https://ror.org/03qy0hv94', 'en', 1, 'https://ror.org/03qy0hv94 ITS and S Sdružení pro dopravní telematiku'),
(58128, 'https://ror.org/03r3f8722', 'no_lang_code', 1, 'https://ror.org/03r3f8722 Pragometal (Czechia)'),
(58129, 'https://ror.org/03r493e52', 'en', 1, 'https://ror.org/03r493e52 Institute of Bioorganic Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° биоорганической химии ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(58130, 'https://ror.org/03r54xm51', 'no_lang_code', 1, 'https://ror.org/03r54xm51 Extrudo Bečice (Czechia)'),
(58131, 'https://ror.org/03r6rhw30', 'en', 1, 'https://ror.org/03r6rhw30 Institute of Geological Sciences ŌµÖ€ÕÆÖ€Õ”Õ¢Õ”Õ¶Õ”ÕÆÕ”Õ¶ Õ£Õ«ÕæÕøÖ‚Õ©ÕµÕøÖ‚Õ¶Õ¶Õ„Ö€Õ«'),
(58132, 'https://ror.org/03r8and30', 'de', 1, 'https://ror.org/03r8and30 Club Bel Etage'),
(58133, 'https://ror.org/03r8q5f36', 'en', 1, 'https://ror.org/03r8q5f36 University of Maryland Extension'),
(58134, 'https://ror.org/03r9c3w85', 'de', 1, 'https://ror.org/03r9c3w85 Kantonsschule Freudenberg'),
(58135, 'https://ror.org/03rbc9d50', 'en', 1, 'https://ror.org/03rbc9d50 Beijing Research Institute of Automation for Machinery Industry (China) åŒ—äŗ¬ęœŗę¢°å·„äøšč‡ŖåŠØåŒ–ē ”ē©¶ę‰€č½Æä»¶å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(58136, 'https://ror.org/03rcnp347', 'de', 1, 'https://ror.org/03rcnp347 Kantonsschule Olten'),
(58137, 'https://ror.org/03rdhpn16', 'en', 1, 'https://ror.org/03rdhpn16 Trumbull Neighborhood Partnership'),
(58138, 'https://ror.org/03re7dt17', 'no_lang_code', 1, 'https://ror.org/03re7dt17 Elopak (Switzerland)'),
(58139, 'https://ror.org/03reeyx55', 'en', 1, 'https://ror.org/03reeyx55 Czech Beef Breeders Association Český svaz chovatelů masného skotu'),
(58140, 'https://ror.org/03rez2z80', 'no_lang_code', 1, 'https://ror.org/03rez2z80 Libri Prohibiti'),
(58141, 'https://ror.org/03rkcd137', 'en', 1, 'https://ror.org/03rkcd137 Museum der Kulturen Basel Museum of Cultures'),
(58142, 'https://ror.org/03rkhvv36', 'en', 1, 'https://ror.org/03rkhvv36 Physical and Technical Institute Физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(58143, 'https://ror.org/03rm6vq41', 'no_lang_code', 1, 'https://ror.org/03rm6vq41 Rotana (Czechia)'),
(58144, 'https://ror.org/03rn2e120', 'no_lang_code', 1, 'https://ror.org/03rn2e120 Abbott (Switzerland)'),
(58145, 'https://ror.org/03rr2e670', 'no_lang_code', 1, 'https://ror.org/03rr2e670 STS International'),
(58146, 'https://ror.org/03rrdjf11', 'no_lang_code', 1, 'https://ror.org/03rrdjf11 Vlnovice Å pĆ­s (Czechia)'),
(58147, 'https://ror.org/03rswp691', 'cs', 1, 'https://ror.org/03rswp691 KlasickĆ© a Å”panělskĆ© GymnĆ”zium, Brno-Bystrc'),
(58148, 'https://ror.org/03ryswf50', 'no_lang_code', 1, 'https://ror.org/03ryswf50 Solar Monitor (Czechia)'),
(58149, 'https://ror.org/03rzhkf33', 'en', 1, 'https://ror.org/03rzhkf33 Australian Resources Research Centre'),
(58150, 'https://ror.org/03rzvxq48', 'de', 1, 'https://ror.org/03rzvxq48 Museum Kleines Klingental'),
(58151, 'https://ror.org/03s2vt470', 'en', 1, 'https://ror.org/03s2vt470 BMJ Careers'),
(58152, 'https://ror.org/03s4bg735', 'no_lang_code', 1, 'https://ror.org/03s4bg735 Bio Composants MƩdicaux (France)'),
(58153, 'https://ror.org/03s5bsk62', 'no_lang_code', 1, 'https://ror.org/03s5bsk62 Amberg (Czechia)'),
(58154, 'https://ror.org/03s5ftr79', 'cs', 1, 'https://ror.org/03s5ftr79 ArchitektonickĆ” KancelÔř Burian Křivinka'),
(58155, 'https://ror.org/03s703b14', 'no_lang_code', 1, 'https://ror.org/03s703b14 Polpur (Czechia)'),
(58156, 'https://ror.org/03s8dv541', 'en', 1, 'https://ror.org/03s8dv541 Magnetic Health Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ē£ę°—å„åŗ·ē§‘å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(58157, 'https://ror.org/03s8zxa22', 'no_lang_code', 1, 'https://ror.org/03s8zxa22 Josa (Czechia)'),
(58158, 'https://ror.org/03s9vq845', 'de', 1, 'https://ror.org/03s9vq845 Aebli-NƤf-Stiftung'),
(58159, 'https://ror.org/03sbyrq11', 'en', 1, 'https://ror.org/03sbyrq11 SkogssƤllskapet Swedish Forest Society Foundation'),
(58160, 'https://ror.org/03scrbh72', 'no_lang_code', 1, 'https://ror.org/03scrbh72 Pavus (Czechia)'),
(58161, 'https://ror.org/03sf5ja42', 'en', 1, 'https://ror.org/03sf5ja42 Swiss Stem Cell Foundation'),
(58162, 'https://ror.org/03sgj4t62', 'no_lang_code', 1, 'https://ror.org/03sgj4t62 Evonik (France)'),
(58163, 'https://ror.org/03shzfz43', 'no_lang_code', 1, 'https://ror.org/03shzfz43 IKE (Slovakia)'),
(58164, 'https://ror.org/03sksgt72', 'no_lang_code', 1, 'https://ror.org/03sksgt72 Haal Elektro (Czechia)'),
(58165, 'https://ror.org/03smjaw84', 'no_lang_code', 1, 'https://ror.org/03smjaw84 Lavaris (Czechia)'),
(58166, 'https://ror.org/03snzqt88', 'en', 1, 'https://ror.org/03snzqt88 Fachstelle für Gleichstellung von Frau und Mann Office for the Equality of Men and Women'),
(58167, 'https://ror.org/03spzq317', 'no_lang_code', 1, 'https://ror.org/03spzq317 Ferring Pharmaceuticals (Netherlands)'),
(58168, 'https://ror.org/03sq10a37', 'en', 1, 'https://ror.org/03sq10a37 Conferenza dei Vescovi svizzeri Conférence des évêques suisses Schweizer Bischofskonferenz Swiss Bishops Conference'),
(58169, 'https://ror.org/03sqthx21', 'en', 1, 'https://ror.org/03sqthx21 World-India Diabetes Foundation'),
(58170, 'https://ror.org/03ssw7f31', 'no_lang_code', 1, 'https://ror.org/03ssw7f31 Trewavis Surgical (Australia)'),
(58171, 'https://ror.org/03swaaz57', 'en', 1, 'https://ror.org/03swaaz57 Royal Project Foundation ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ą¹‚ąø„ąø£ąø‡ąøąø²ąø£ąø«ąø„ąø§ąø‡'),
(58172, 'https://ror.org/03swnf798', 'en', 1, 'https://ror.org/03swnf798 Platte Valley Medical Center'),
(58173, 'https://ror.org/03sxe4z39', 'en', 1, 'https://ror.org/03sxe4z39 Institute of Electronic Control Machines'),
(58174, 'https://ror.org/03sxhq344', 'pl', 1, 'https://ror.org/03sxhq344 Instytut Innowacji Przemysłu Mleczarskiego'),
(58175, 'https://ror.org/03sy7mc39', 'no_lang_code', 1, 'https://ror.org/03sy7mc39 Silmos (Czechia)'),
(58176, 'https://ror.org/03szrx391', 'en', 1, 'https://ror.org/03szrx391 Agladze Inorganic Chemistry and Electrochemistry რ.įƒįƒ’įƒšįƒįƒ«įƒ˜įƒ” įƒįƒ įƒįƒįƒ įƒ’įƒįƒœįƒ£įƒšįƒ˜ įƒ„įƒ˜įƒ›įƒ˜įƒ˜įƒ”įƒ'),
(58177, 'https://ror.org/03szsag65', 'de', 1, 'https://ror.org/03szsag65 ƖKK (Switzerland)'),
(58178, 'https://ror.org/03t06c531', 'cs', 1, 'https://ror.org/03t06c531 Geova'),
(58179, 'https://ror.org/03t173c87', 'no_lang_code', 1, 'https://ror.org/03t173c87 Secar Bohemia (Czechia)'),
(58180, 'https://ror.org/03t1z6m58', 'en', 1, 'https://ror.org/03t1z6m58 Central Scientific Research Diesel Institute Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š“ŠøŠ·ŠµŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(58181, 'https://ror.org/03t46vz87', 'en', 1, 'https://ror.org/03t46vz87 Institute of Orthopedic Research and Education'),
(58182, 'https://ror.org/03t5pkx69', 'cs', 1, 'https://ror.org/03t5pkx69 MateřskĆ” Å”kolka SokolovskĆ”'),
(58183, 'https://ror.org/03t71q954', 'no_lang_code', 1, 'https://ror.org/03t71q954 GRYF (Czechia)'),
(58184, 'https://ror.org/03t8yfs10', 'no_lang_code', 1, 'https://ror.org/03t8yfs10 Dermscan Group (France)'),
(58185, 'https://ror.org/03t9wc557', 'no_lang_code', 1, 'https://ror.org/03t9wc557 Medical innovation (France)'),
(58186, 'https://ror.org/03tb0zs04', 'no_lang_code', 1, 'https://ror.org/03tb0zs04 Ekopron Metal (Czechia)'),
(58187, 'https://ror.org/03tbk6q11', 'no_lang_code', 1, 'https://ror.org/03tbk6q11 Terezia (Czechia)'),
(58188, 'https://ror.org/03tdpge58', 'no_lang_code', 1, 'https://ror.org/03tdpge58 Scalzo Automotive Research (Australia)'),
(58189, 'https://ror.org/03teh1j22', 'es', 1, 'https://ror.org/03teh1j22 Fundación Pro CNIC'),
(58190, 'https://ror.org/03tg26f52', 'en', 1, 'https://ror.org/03tg26f52 Bansal Institute Of Research Technology & Science'),
(58191, 'https://ror.org/03tg5rf69', 'no_lang_code', 1, 'https://ror.org/03tg5rf69 Uniplast Pardubice (Czechia)'),
(58192, 'https://ror.org/03tj32a09', 'en', 1, 'https://ror.org/03tj32a09 Jacobs Foundation'),
(58193, 'https://ror.org/03tkf6a63', 'cs', 1, 'https://ror.org/03tkf6a63 Sdružení CEPAC'),
(58194, 'https://ror.org/03tphp044', 'no_lang_code', 1, 'https://ror.org/03tphp044 Silnice Group (Czechia)'),
(58195, 'https://ror.org/03ttbtn09', 'no_lang_code', 1, 'https://ror.org/03ttbtn09 Institute of Musculoskeletal Science & Education (United States)'),
(58196, 'https://ror.org/03tts4y20', 'no_lang_code', 1, 'https://ror.org/03tts4y20 Allowance (Czechia)'),
(58197, 'https://ror.org/03tvfzx75', 'no_lang_code', 1, 'https://ror.org/03tvfzx75 KovofiniÅ” (Czechia)'),
(58198, 'https://ror.org/03tvvt638', 'en', 1, 'https://ror.org/03tvvt638 American Society of Church History'),
(58199, 'https://ror.org/03tw90478', 'nl', 1, 'https://ror.org/03tw90478 Hartcentrum Hasselt'),
(58200, 'https://ror.org/03twrdm38', 'no_lang_code', 1, 'https://ror.org/03twrdm38 Technistone (Czechia)'),
(58201, 'https://ror.org/03txfss92', 'de', 1, 'https://ror.org/03txfss92 Museumsgesellschaft Zürich'),
(58202, 'https://ror.org/03tyavm03', 'no_lang_code', 1, 'https://ror.org/03tyavm03 Envirmine (Czechia)'),
(58203, 'https://ror.org/03tyvpq48', 'en', 1, 'https://ror.org/03tyvpq48 Prague Zoo ZoologickĆ” Zahrada'),
(58204, 'https://ror.org/03tz15v17', 'no_lang_code', 1, 'https://ror.org/03tz15v17 Hochtief (Czechia)'),
(58205, 'https://ror.org/03v08ap24', 'no_lang_code', 1, 'https://ror.org/03v08ap24 HMS-Vilgo (France)'),
(58206, 'https://ror.org/03v0h0x87', 'en', 1, 'https://ror.org/03v0h0x87 Sendzimir Foundation'),
(58207, 'https://ror.org/03v1j6q03', 'no_lang_code', 1, 'https://ror.org/03v1j6q03 BaHa (Czechia)'),
(58208, 'https://ror.org/03v3fza79', 'en', 1, 'https://ror.org/03v3fza79 Japan Radioisotope Association ę—„ęœ¬ć‚¢ć‚¤ć‚½ćƒˆćƒ¼ćƒ—å”ä¼š'),
(58209, 'https://ror.org/03v63hd28', 'no_lang_code', 1, 'https://ror.org/03v63hd28 Urangeologorazvedka УрангеологоразвеГка'),
(58210, 'https://ror.org/03v7tny92', 'en', 1, 'https://ror.org/03v7tny92 Institute of Physics Rosario Instituto de FĆ­sica Rosario'),
(58211, 'https://ror.org/03vayv672', 'en', 1, 'https://ror.org/03vayv672 University of Veterinary Medicine ƁllatorvostudomƔnyi Egyetem'),
(58212, 'https://ror.org/03vb3t637', 'no_lang_code', 1, 'https://ror.org/03vb3t637 Mc Velox (Czechia)'),
(58213, 'https://ror.org/03vccbd52', 'no_lang_code', 1, 'https://ror.org/03vccbd52 AVG Technologies (Czechia)'),
(58214, 'https://ror.org/03vcy9z87', 'no_lang_code', 1, 'https://ror.org/03vcy9z87 KrampeHarex (Czechia)'),
(58215, 'https://ror.org/03vdw8k15', 'no_lang_code', 1, 'https://ror.org/03vdw8k15 ICZ (Czechia)'),
(58216, 'https://ror.org/03vmxkp39', 'en', 1, 'https://ror.org/03vmxkp39 Iran Nanohealth Committee Food and Drug Organization'),
(58217, 'https://ror.org/03vqh1t78', 'en', 1, 'https://ror.org/03vqh1t78 United States Equestrian Federation'),
(58218, 'https://ror.org/03vvxhb60', 'en', 1, 'https://ror.org/03vvxhb60 Tianjin Municipal Research Institute for Family Planning å¤©ę“„åø‚č®”åˆ’ē”Ÿč‚²ē ”ē©¶ę‰€'),
(58219, 'https://ror.org/03vwnv483', 'en', 1, 'https://ror.org/03vwnv483 Family Ties of Nevada'),
(58220, 'https://ror.org/03vy9zw30', 'no_lang_code', 1, 'https://ror.org/03vy9zw30 Kalma (Czechia)'),
(58221, 'https://ror.org/03vyddc91', 'en', 1, 'https://ror.org/03vyddc91 Healthcare Improvement Scotland'),
(58222, 'https://ror.org/03w1ne740', 'en', 1, 'https://ror.org/03w1ne740 Community Alliance with Family Farmers'),
(58223, 'https://ror.org/03w38en78', 'no_lang_code', 1, 'https://ror.org/03w38en78 Classic Oil (Czechia)'),
(58224, 'https://ror.org/03w3bmy56', 'no_lang_code', 1, 'https://ror.org/03w3bmy56 Laboratoires Aditec (France)'),
(58225, 'https://ror.org/03w43f812', 'no_lang_code', 1, 'https://ror.org/03w43f812 Olea Medical (France)'),
(58226, 'https://ror.org/03w4cze07', 'cs', 1, 'https://ror.org/03w4cze07 KrĆ”lovskĆ” kanonie premonstrĆ”tÅÆ na Strahově, Strahov Monastery'),
(58227, 'https://ror.org/03w4fjd93', 'no_lang_code', 1, 'https://ror.org/03w4fjd93 Edscha (Czechia)'),
(58228, 'https://ror.org/03w4xck32', 'cs', 1, 'https://ror.org/03w4xck32 PovodĆ­ Ohře'),
(58229, 'https://ror.org/03w670d24', 'no_lang_code', 1, 'https://ror.org/03w670d24 Agico (Czechia)'),
(58230, 'https://ror.org/03w83pm05', 'en', 1, 'https://ror.org/03w83pm05 United States-Japan Foundation'),
(58231, 'https://ror.org/03w8r3912', 'no_lang_code', 1, 'https://ror.org/03w8r3912 More (Czechia)'),
(58232, 'https://ror.org/03w948j83', 'en', 1, 'https://ror.org/03w948j83 Czech Statistical Office Český statistický ĆŗÅ™ad'),
(58233, 'https://ror.org/03wex2p68', 'no_lang_code', 1, 'https://ror.org/03wex2p68 Plastmetal Engineering (Czechia)'),
(58234, 'https://ror.org/03weyxt18', 'no_lang_code', 1, 'https://ror.org/03weyxt18 Aquamonitoring (Czechia)'),
(58235, 'https://ror.org/03wfmrt38', 'en', 1, 'https://ror.org/03wfmrt38 Habitat International Coalition'),
(58236, 'https://ror.org/03wfqxa90', 'no_lang_code', 1, 'https://ror.org/03wfqxa90 MKS Instruments (Japan)'),
(58237, 'https://ror.org/03wgey566', 'no_lang_code', 1, 'https://ror.org/03wgey566 INT-Informace a Technologie (Czechia)'),
(58238, 'https://ror.org/03wgrw884', 'fr', 1, 'https://ror.org/03wgrw884 Gymnase de La CitƩ Lausanne'),
(58239, 'https://ror.org/03why0p66', 'de', 1, 'https://ror.org/03why0p66 Interbion'),
(58240, 'https://ror.org/03wjq0y66', 'no_lang_code', 1, 'https://ror.org/03wjq0y66 Isotopx (United Kingdom)'),
(58241, 'https://ror.org/03wk3qv94', 'no_lang_code', 1, 'https://ror.org/03wk3qv94 CGI (Czechia)'),
(58242, 'https://ror.org/03wmjwc96', 'en', 1, 'https://ror.org/03wmjwc96 Federal Office of Information Technology Systems and Telecommunication Office fĆ©dĆ©ral de l’informatique et de la tĆ©lĆ©communication Ufficio federale dell’informatica e della telecomunicazione Uffizi federal d’informatica e da telecommunicaziun'),
(58243, 'https://ror.org/03wnpwa90', 'no_lang_code', 1, 'https://ror.org/03wnpwa90 Eurom (Czechia)'),
(58244, 'https://ror.org/03wp1bk10', 'no_lang_code', 1, 'https://ror.org/03wp1bk10 Regutec (Czechia)'),
(58245, 'https://ror.org/03wpt5182', 'en', 1, 'https://ror.org/03wpt5182 All-Russian Scientific Research Institute of Viticulture and Winemaking behalf of JI Potapenko Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ винограГарства Šø Š²ŠøŠ½Š¾Š“ŠµŠ»ŠøŃ имени ŠÆ.И. ŠŸŠ¾Ń‚Š°ŠæŠµŠ½ŠŗŠ¾'),
(58246, 'https://ror.org/03wrvmn80', 'no_lang_code', 1, 'https://ror.org/03wrvmn80 Kodak (France)'),
(58247, 'https://ror.org/03wwpjn37', 'no_lang_code', 1, 'https://ror.org/03wwpjn37 Mirion Technologies (France)'),
(58248, 'https://ror.org/03wxxbs05', 'en', 1, 'https://ror.org/03wxxbs05 MTA BölcsészettudomÔnyi Kutatóközpont Research Centre for the Humanities'),
(58249, 'https://ror.org/03wxxna60', 'en', 1, 'https://ror.org/03wxxna60 Open Society Foundation for South Africa'),
(58250, 'https://ror.org/03x1kny90', 'no_lang_code', 1, 'https://ror.org/03x1kny90 Palivový KombinÔt Ústí (Czechia)'),
(58251, 'https://ror.org/03x3b8v35', 'fr', 1, 'https://ror.org/03x3b8v35 Institut Maupertuis'),
(58252, 'https://ror.org/03x3d2a47', 'no_lang_code', 1, 'https://ror.org/03x3d2a47 All American Pharmaceutical (United States)'),
(58253, 'https://ror.org/03x526f83', 'en', 1, 'https://ror.org/03x526f83 Support Center for Advanced Telecommunications Technology Research Foundation 一貔)ćƒ†ćƒ¬ć‚³ćƒ å…ˆē«ÆęŠ€č”“ē ”ē©¶ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(58254, 'https://ror.org/03x8v6f75', 'no_lang_code', 1, 'https://ror.org/03x8v6f75 ZemědělskĆ” Agentura (Czechia)'),
(58255, 'https://ror.org/03x9c7x93', 'no_lang_code', 1, 'https://ror.org/03x9c7x93 Cryonic Medical (France)'),
(58256, 'https://ror.org/03xb1vx63', 'no_lang_code', 1, 'https://ror.org/03xb1vx63 SBA-Expert (Czechia)'),
(58257, 'https://ror.org/03xcw7h27', 'no_lang_code', 1, 'https://ror.org/03xcw7h27 Malus (Czechia)'),
(58258, 'https://ror.org/03xmk1g71', 'en', 1, 'https://ror.org/03xmk1g71 Wender Weis Foundation for Children'),
(58259, 'https://ror.org/03xpstx66', 'en', 1, 'https://ror.org/03xpstx66 Korea Testing & Research Institute ķ•œźµ­ķ™”ķ•™ģœµķ•©ģ‹œķ—˜ģ—°źµ¬ģ›'),
(58260, 'https://ror.org/03xqzrz13', 'no_lang_code', 1, 'https://ror.org/03xqzrz13 QIP (Czechia)'),
(58261, 'https://ror.org/03xr48a26', 'cs', 1, 'https://ror.org/03xr48a26 Společnost pro Výzkum a VzdělĆ”vĆ”nĆ­'),
(58262, 'https://ror.org/03xrsh834', 'no_lang_code', 1, 'https://ror.org/03xrsh834 Trendex Nova (Czechia)'),
(58263, 'https://ror.org/03xswyc88', 'en', 1, 'https://ror.org/03xswyc88 Reproductive Medicine Associates of New York');
INSERT INTO `rors` VALUES
(58264, 'https://ror.org/03xt1x768', 'en', 1, 'https://ror.org/03xt1x768 State Key Laboratory of Oncogene and Related Genes ē™ŒåŸŗå› åŠē›øå…³åŸŗå› å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(58265, 'https://ror.org/03xt6as58', 'de', 1, 'https://ror.org/03xt6as58 Institut Montana Zugerberg'),
(58266, 'https://ror.org/03xw9zx77', 'en', 1, 'https://ror.org/03xw9zx77 Institute of Technical Education'),
(58267, 'https://ror.org/03y2n5b37', 'es', 1, 'https://ror.org/03y2n5b37 Universidad Católica Lumen Gentium'),
(58268, 'https://ror.org/03y2whj58', 'no_lang_code', 1, 'https://ror.org/03y2whj58 PREdistribuce (Czechia)'),
(58269, 'https://ror.org/03y443x30', 'no_lang_code', 1, 'https://ror.org/03y443x30 AGRO-Merin (Czechia)'),
(58270, 'https://ror.org/03y44ky43', 'en', 1, 'https://ror.org/03y44ky43 Vehicle Games Public Utility Foundation Memorial Foundation å…¬ē›Šč²”å›£ę³•äŗŗ č»Šäø”ē«¶ęŠ€å…¬ē›Šč³‡é‡‘čØ˜åæµč²”å›£'),
(58271, 'https://ror.org/03y740t04', 'en', 1, 'https://ror.org/03y740t04 Hisayama Research Institute For Lifestyle Diseases ćƒ’ć‚µćƒ¤ćƒžćƒ©ć‚¤ćƒ•ć‚¹ć‚æć‚¤ćƒ«ē ”ē©¶ę‰€'),
(58272, 'https://ror.org/03y9bvk93', 'en', 1, 'https://ror.org/03y9bvk93 Bolton NHS Foundation Trust'),
(58273, 'https://ror.org/03yahs006', 'en', 1, 'https://ror.org/03yahs006 MusƩe suisse du jeu Swiss Museum of Games'),
(58274, 'https://ror.org/03ybb7335', 'no_lang_code', 1, 'https://ror.org/03ybb7335 Laboratoires Rivadis (France)'),
(58275, 'https://ror.org/03ycssf34', 'no_lang_code', 1, 'https://ror.org/03ycssf34 ArcelorMittal (United States)'),
(58276, 'https://ror.org/03ydrze65', 'no_lang_code', 1, 'https://ror.org/03ydrze65 Eltek (Czechia)'),
(58277, 'https://ror.org/03yfqhm12', 'en', 1, 'https://ror.org/03yfqhm12 Nagoya Municipal Industrial Research Institute åå¤å±‹åø‚å·„ę„­ē ”ē©¶ę‰€'),
(58278, 'https://ror.org/03yjc5j10', 'no_lang_code', 1, 'https://ror.org/03yjc5j10 CS Soft (Czechia)'),
(58279, 'https://ror.org/03ymdxs56', 'en', 1, 'https://ror.org/03ymdxs56 Biocom'),
(58280, 'https://ror.org/03ymtvg12', 'no_lang_code', 1, 'https://ror.org/03ymtvg12 Garner Industries (United States)'),
(58281, 'https://ror.org/03yn3d916', 'no_lang_code', 1, 'https://ror.org/03yn3d916 Pexidr (Czechia)'),
(58282, 'https://ror.org/03yn44v82', 'fr', 1, 'https://ror.org/03yn44v82 Institut Georges Lopez'),
(58283, 'https://ror.org/03ynzzx94', 'en', 1, 'https://ror.org/03ynzzx94 Indo Korea Science and Technology'),
(58284, 'https://ror.org/03yqdcb49', 'no_lang_code', 1, 'https://ror.org/03yqdcb49 A-Spektrum (Czechia)'),
(58285, 'https://ror.org/03yqdkz93', 'no_lang_code', 1, 'https://ror.org/03yqdkz93 Preditest (Czechia)'),
(58286, 'https://ror.org/03yqdp771', 'en', 1, 'https://ror.org/03yqdp771 Institut für Implantattechnologie und Biomaterialien Institute for ImplantTechnology and Biomaterials'),
(58287, 'https://ror.org/03ytay263', 'en', 1, 'https://ror.org/03ytay263 Donald Woods Foundation'),
(58288, 'https://ror.org/03ytgj055', 'no_lang_code', 1, 'https://ror.org/03ytgj055 Cisco Systems (Norway)'),
(58289, 'https://ror.org/03ytvxz34', 'en', 1, 'https://ror.org/03ytvxz34 Crossroads Community Food Network'),
(58290, 'https://ror.org/03yvmmw58', 'no_lang_code', 1, 'https://ror.org/03yvmmw58 Farma Žiro (Czechia)'),
(58291, 'https://ror.org/03yvtv826', 'en', 1, 'https://ror.org/03yvtv826 United Way of Santa Barbara County'),
(58292, 'https://ror.org/03yy8am44', 'en', 1, 'https://ror.org/03yy8am44 Institute for Applied Science'),
(58293, 'https://ror.org/03yz3w307', 'no_lang_code', 1, 'https://ror.org/03yz3w307 Prediction Sciences (France)'),
(58294, 'https://ror.org/03z08wj79', 'no_lang_code', 1, 'https://ror.org/03z08wj79 Psychometric Research & Development (United Kingdom)'),
(58295, 'https://ror.org/03z152744', 'no_lang_code', 1, 'https://ror.org/03z152744 Sanborn (Czechia)'),
(58296, 'https://ror.org/03z18kf36', 'no_lang_code', 1, 'https://ror.org/03z18kf36 MFB-GeoConsulting (Switzerland)'),
(58297, 'https://ror.org/03z2d7y96', 'en', 1, 'https://ror.org/03z2d7y96 Bureau of Labor Statistics'),
(58298, 'https://ror.org/03z2y7827', 'no_lang_code', 1, 'https://ror.org/03z2y7827 InstaGroup (United Kingdom)'),
(58299, 'https://ror.org/03z32jx06', 'en', 1, 'https://ror.org/03z32jx06 GridPP'),
(58300, 'https://ror.org/03z3t3x80', 'no_lang_code', 1, 'https://ror.org/03z3t3x80 Skd Trade (Czechia)'),
(58301, 'https://ror.org/03z45yy68', 'en', 1, 'https://ror.org/03z45yy68 Cicely Saunders International'),
(58302, 'https://ror.org/03z4thr66', 'no_lang_code', 1, 'https://ror.org/03z4thr66 Barvy a laky Hostivař (Czechia)'),
(58303, 'https://ror.org/03z550b52', 'en', 1, 'https://ror.org/03z550b52 Sustainable Molokai'),
(58304, 'https://ror.org/03z79c042', 'no_lang_code', 1, 'https://ror.org/03z79c042 RybÔřstvĆ­ Třeboň (Czechia)'),
(58305, 'https://ror.org/03zdztk57', 'no_lang_code', 1, 'https://ror.org/03zdztk57 Czech Credit Bureau (Czechia)'),
(58306, 'https://ror.org/03zegg939', 'en', 1, 'https://ror.org/03zegg939 Diocese of Ely'),
(58307, 'https://ror.org/03zf8zy80', 'en', 1, 'https://ror.org/03zf8zy80 Metanexus Institute'),
(58308, 'https://ror.org/03zga9n09', 'no_lang_code', 1, 'https://ror.org/03zga9n09 Gemec Union (Czechia)'),
(58309, 'https://ror.org/03zgyfe94', 'en', 1, 'https://ror.org/03zgyfe94 Mountain Research Initiative'),
(58310, 'https://ror.org/03zh8em07', 'no_lang_code', 1, 'https://ror.org/03zh8em07 Advanced World Transport (Czechia)'),
(58311, 'https://ror.org/03zhx9h04', 'es', 1, 'https://ror.org/03zhx9h04 CaixaBank'),
(58312, 'https://ror.org/03zk5vq23', 'cs', 1, 'https://ror.org/03zk5vq23 Asociace Korozních Inženýrů'),
(58313, 'https://ror.org/03zp7y418', 'en', 1, 'https://ror.org/03zp7y418 McAuliffe-Shepard Discovery Center'),
(58314, 'https://ror.org/03zpshp42', 'en', 1, 'https://ror.org/03zpshp42 Rostov Research Institute of Oncology Ростовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ онкологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(58315, 'https://ror.org/03zszr857', 'no_lang_code', 1, 'https://ror.org/03zszr857 Apex (Czechia)'),
(58316, 'https://ror.org/03ztqsz78', 'cs', 1, 'https://ror.org/03ztqsz78 ČeskomoravskĆ” Společnost ChovatelÅÆ'),
(58317, 'https://ror.org/03zv4kd57', 'no_lang_code', 1, 'https://ror.org/03zv4kd57 Konica Minolta (United States)'),
(58318, 'https://ror.org/03zwkpt70', 'no_lang_code', 1, 'https://ror.org/03zwkpt70 Atlas Copco (Switzerland)'),
(58319, 'https://ror.org/03zxgcy06', 'en', 1, 'https://ror.org/03zxgcy06 Weitz Family Foundation'),
(58320, 'https://ror.org/03zyvg021', 'en', 1, 'https://ror.org/03zyvg021 Horizon Performance'),
(58321, 'https://ror.org/03zzdp409', 'de', 1, 'https://ror.org/03zzdp409 Institut Virion\\Serion'),
(58322, 'https://ror.org/03zzjmx92', 'en', 1, 'https://ror.org/03zzjmx92 Tom Coughlin Jay Fund Foundation'),
(58323, 'https://ror.org/03zzs9b68', 'no_lang_code', 1, 'https://ror.org/03zzs9b68 Nippon Sheet Glass (Italy)'),
(58324, 'https://ror.org/0401v0x80', 'no_lang_code', 1, 'https://ror.org/0401v0x80 DrƤger (United States)'),
(58325, 'https://ror.org/0402k2258', 'no_lang_code', 1, 'https://ror.org/0402k2258 FPOS (Czechia)'),
(58326, 'https://ror.org/0402z8r91', 'no_lang_code', 1, 'https://ror.org/0402z8r91 Dega (Czechia)'),
(58327, 'https://ror.org/0403h5q85', 'no_lang_code', 1, 'https://ror.org/0403h5q85 Indel (Slovakia)'),
(58328, 'https://ror.org/0403nr398', 'en', 1, 'https://ror.org/0403nr398 Presbyterian Healthcare Services'),
(58329, 'https://ror.org/0404zsw10', 'no_lang_code', 1, 'https://ror.org/0404zsw10 ZPV Rožnov (Czechia)'),
(58330, 'https://ror.org/04051ah92', 'cs', 1, 'https://ror.org/04051ah92 ČeskÔ Asociace Pedagogického Výzkumu'),
(58331, 'https://ror.org/0405wn630', 'cs', 1, 'https://ror.org/0405wn630 ČeskĆ” Společnost EntomologickĆ”'),
(58332, 'https://ror.org/04061m789', 'no_lang_code', 1, 'https://ror.org/04061m789 RybÔřstvĆ­ LitomyÅ”l (RybÔřstvĆ­ LitomyÅ”l)'),
(58333, 'https://ror.org/0406evy55', 'no_lang_code', 1, 'https://ror.org/0406evy55 PernĆ­k (Czechia)'),
(58334, 'https://ror.org/04088fk89', 'no_lang_code', 1, 'https://ror.org/04088fk89 Staedtler (Germany)'),
(58335, 'https://ror.org/0409fn624', 'en', 1, 'https://ror.org/0409fn624 Mammendorf Insitute for Physics and Medicine Mammendorfer Institut für Physik und Medizin'),
(58336, 'https://ror.org/040anqg48', 'no_lang_code', 1, 'https://ror.org/040anqg48 Stƶri Mantel (Czechia)'),
(58337, 'https://ror.org/040ch1c18', 'en', 1, 'https://ror.org/040ch1c18 Women''s Right to Education Programme'),
(58338, 'https://ror.org/040d4nb67', 'no_lang_code', 1, 'https://ror.org/040d4nb67 Pharmerit (United States)'),
(58339, 'https://ror.org/040f2sb18', 'en', 1, 'https://ror.org/040f2sb18 Walker Cancer Research Institute'),
(58340, 'https://ror.org/040fx6j66', 'no_lang_code', 1, 'https://ror.org/040fx6j66 EpiPharm (Switzerland)'),
(58341, 'https://ror.org/040g76k92', 'no_lang_code', 1, 'https://ror.org/040g76k92 IQVIA (United Kingdom)'),
(58342, 'https://ror.org/040h0fj31', 'no_lang_code', 1, 'https://ror.org/040h0fj31 AstenJohnson (United States)'),
(58343, 'https://ror.org/040hz3y05', 'no_lang_code', 1, 'https://ror.org/040hz3y05 CNC Technology (Czechia)'),
(58344, 'https://ror.org/040mkwe50', 'de', 1, 'https://ror.org/040mkwe50 Kunsthalle Marcel Duchamp'),
(58345, 'https://ror.org/040n64385', 'no_lang_code', 1, 'https://ror.org/040n64385 AVE (Czechia)'),
(58346, 'https://ror.org/040nrzc79', 'no_lang_code', 1, 'https://ror.org/040nrzc79 R.T. Vanderbilt Holding (United States)'),
(58347, 'https://ror.org/040ppeb55', 'no_lang_code', 1, 'https://ror.org/040ppeb55 Unique Textiles (Czechia)'),
(58348, 'https://ror.org/040rzp686', 'en', 1, 'https://ror.org/040rzp686 Hair Science Institute'),
(58349, 'https://ror.org/040w2dm02', 'en', 1, 'https://ror.org/040w2dm02 Interuniversity Institute for High Energies'),
(58350, 'https://ror.org/040wctg56', 'no_lang_code', 1, 'https://ror.org/040wctg56 Allergan (Switzerland)'),
(58351, 'https://ror.org/040y2n469', 'no_lang_code', 1, 'https://ror.org/040y2n469 Jules Richard Instruments (France)'),
(58352, 'https://ror.org/040z48t11', 'no_lang_code', 1, 'https://ror.org/040z48t11 KMB systems (Czechia)'),
(58353, 'https://ror.org/0411rje29', 'no_lang_code', 1, 'https://ror.org/0411rje29 Laboratory of Glass Properties (Russia)'),
(58354, 'https://ror.org/0414r2h69', 'no_lang_code', 1, 'https://ror.org/0414r2h69 CoorsTek (Japan)'),
(58355, 'https://ror.org/0414wmq03', 'no_lang_code', 1, 'https://ror.org/0414wmq03 Red Hat (Israel)'),
(58356, 'https://ror.org/04158f936', 'no_lang_code', 1, 'https://ror.org/04158f936 Kemwater ProChemie (Czechia)'),
(58357, 'https://ror.org/0417bae26', 'no_lang_code', 1, 'https://ror.org/0417bae26 Merica (Czechia)'),
(58358, 'https://ror.org/0417t4z61', 'en', 1, 'https://ror.org/0417t4z61 Minnesota Partnership for Biotechnology and Medical Genomics'),
(58359, 'https://ror.org/041baww89', 'en', 1, 'https://ror.org/041baww89 Pusan ​​National University Dental Hospital 부산 ėŒ€ķ•™źµ 치과 병원'),
(58360, 'https://ror.org/041c3d085', 'en', 1, 'https://ror.org/041c3d085 JSC Scientific Research Institute of Motor Transport ŠžŠŠž ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾Š³Š¾ транспорта'),
(58361, 'https://ror.org/041d7vh36', 'no_lang_code', 1, 'https://ror.org/041d7vh36 Total (Czechia)'),
(58362, 'https://ror.org/041fb0y12', 'no_lang_code', 1, 'https://ror.org/041fb0y12 Jakape (Czechia)'),
(58363, 'https://ror.org/041hmhr55', 'de', 1, 'https://ror.org/041hmhr55 Denkmalpflege und ArchƤologie'),
(58364, 'https://ror.org/041jh8270', 'en', 1, 'https://ror.org/041jh8270 Archiv für Agrargeschichte Archives of Rural History'),
(58365, 'https://ror.org/041kcnq11', 'no_lang_code', 1, 'https://ror.org/041kcnq11 Ekomor (Czechia)'),
(58366, 'https://ror.org/041przb21', 'de', 1, 'https://ror.org/041przb21 Forum Ost West'),
(58367, 'https://ror.org/041qak036', 'no_lang_code', 1, 'https://ror.org/041qak036 Akanthus (Switzerland)'),
(58368, 'https://ror.org/041qqrw82', 'en', 1, 'https://ror.org/041qqrw82 Singapore Centre for Environmental Life Sciences Engineering'),
(58369, 'https://ror.org/041rkp090', 'en', 1, 'https://ror.org/041rkp090 Oregon Family Support Network'),
(58370, 'https://ror.org/041rqdp46', 'no_lang_code', 1, 'https://ror.org/041rqdp46 MCE Avocats (Switzerland)'),
(58371, 'https://ror.org/041sdt344', 'en', 1, 'https://ror.org/041sdt344 South Dakota Parent Connection'),
(58372, 'https://ror.org/041swdb02', 'no_lang_code', 1, 'https://ror.org/041swdb02 B. Braun (Czechia) B. Braun Avitum'),
(58373, 'https://ror.org/041t78y98', 'en', 1, 'https://ror.org/041t78y98 Atlanta VA Health Care System'),
(58374, 'https://ror.org/041v0z526', 'no_lang_code', 1, 'https://ror.org/041v0z526 Planval (Switzerland)'),
(58375, 'https://ror.org/041wbg141', 'no_lang_code', 1, 'https://ror.org/041wbg141 Ovus (Czechia)'),
(58376, 'https://ror.org/041wkfa75', 'de', 1, 'https://ror.org/041wkfa75 Kantonsschule Baden'),
(58377, 'https://ror.org/041yznd79', 'no_lang_code', 1, 'https://ror.org/041yznd79 Flash Steel Power (Czechia)'),
(58378, 'https://ror.org/041ztcd61', 'en', 1, 'https://ror.org/041ztcd61 Warren Alpert Foundation'),
(58379, 'https://ror.org/0420a9r52', 'no_lang_code', 1, 'https://ror.org/0420a9r52 IMPS (Czechia)'),
(58380, 'https://ror.org/0422kq922', 'no_lang_code', 1, 'https://ror.org/0422kq922 ELEQ (Netherlands)'),
(58381, 'https://ror.org/0422tyr14', 'en', 1, 'https://ror.org/0422tyr14 Federal State Scientific Institution Research Institute of Eye Diseases Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ глазных болезней'),
(58382, 'https://ror.org/0422vfg55', 'cs', 1, 'https://ror.org/0422vfg55 ZemědělskĆ© Družstvo Dolany'),
(58383, 'https://ror.org/04244e638', 'no_lang_code', 1, 'https://ror.org/04244e638 RPS Ostrava (Czechia)'),
(58384, 'https://ror.org/04278cc17', 'en', 1, 'https://ror.org/04278cc17 Simmons Family Foundation'),
(58385, 'https://ror.org/042bpeh86', 'en', 1, 'https://ror.org/042bpeh86 Samis Foundation'),
(58386, 'https://ror.org/042c1f005', 'no_lang_code', 1, 'https://ror.org/042c1f005 Moravian-Silesian Energy Cluster (Czechia)'),
(58387, 'https://ror.org/042edgv29', 'fr', 1, 'https://ror.org/042edgv29 Institut National de Police Scientifique'),
(58388, 'https://ror.org/042f4rs03', 'no_lang_code', 1, 'https://ror.org/042f4rs03 Laurane Medical (France)'),
(58389, 'https://ror.org/042gk2p39', 'no_lang_code', 1, 'https://ror.org/042gk2p39 Herba Naturalle (United Kingdom)'),
(58390, 'https://ror.org/042n4vt36', 'fr', 1, 'https://ror.org/042n4vt36 DƩpartement des Finances et des Relations ExtƩrieures'),
(58391, 'https://ror.org/042nzp779', 'cs', 1, 'https://ror.org/042nzp779 ISES'),
(58392, 'https://ror.org/042q5vh09', 'no_lang_code', 1, 'https://ror.org/042q5vh09 Acrea (Czechia)'),
(58393, 'https://ror.org/042qasc85', 'de', 1, 'https://ror.org/042qasc85 Kantonale Psychiatrische Dienste St Gallen'),
(58394, 'https://ror.org/042rxpd62', 'en', 1, 'https://ror.org/042rxpd62 Institute of Rheological Functions of Food ćƒ¬ć‚Ŗćƒ­ć‚øćƒ¼ę©Ÿčƒ½é£Ÿå“ē ”ē©¶ę‰€'),
(58395, 'https://ror.org/042t14b38', 'no_lang_code', 1, 'https://ror.org/042t14b38 iBioTech (Czechia)'),
(58396, 'https://ror.org/042x2ns13', 'en', 1, 'https://ror.org/042x2ns13 Field and Fork Network'),
(58397, 'https://ror.org/042z3wd02', 'no_lang_code', 1, 'https://ror.org/042z3wd02 Halma (United Kingdom)'),
(58398, 'https://ror.org/042z4g643', 'de', 1, 'https://ror.org/042z4g643 Swisslex'),
(58399, 'https://ror.org/0430gjw29', 'no_lang_code', 1, 'https://ror.org/0430gjw29 Valbek (Czechia)'),
(58400, 'https://ror.org/0430jfd38', 'no_lang_code', 1, 'https://ror.org/0430jfd38 Sanofi (Australia)'),
(58401, 'https://ror.org/0430mjq75', 'de', 1, 'https://ror.org/0430mjq75 Amt für Archäologie'),
(58402, 'https://ror.org/04313jv58', 'no_lang_code', 1, 'https://ror.org/04313jv58 HST TechnoLogic (Czechia)'),
(58403, 'https://ror.org/0431dgb36', 'no_lang_code', 1, 'https://ror.org/0431dgb36 Medicprogress (Czechia)'),
(58404, 'https://ror.org/04320pg53', 'no_lang_code', 1, 'https://ror.org/04320pg53 MEAS Prog (Czechia)'),
(58405, 'https://ror.org/043290w89', 'no_lang_code', 1, 'https://ror.org/043290w89 CVP Galvanika (Czechia)'),
(58406, 'https://ror.org/0432ndn22', 'cs', 1, 'https://ror.org/0432ndn22 JindřichÅÆv Hradec Hospital Nemocnice JindřichÅÆv Hradec'),
(58407, 'https://ror.org/0432s1v23', 'en', 1, 'https://ror.org/0432s1v23 University Vascular Associates'),
(58408, 'https://ror.org/043534r75', 'en', 1, 'https://ror.org/043534r75 Alliance of Community Assistance Ministries'),
(58409, 'https://ror.org/0435cyx83', 'no_lang_code', 1, 'https://ror.org/0435cyx83 R-Princip (Czechia)'),
(58410, 'https://ror.org/0435zxb65', 'no_lang_code', 1, 'https://ror.org/0435zxb65 Kaipan (Czechia)'),
(58411, 'https://ror.org/0437ce844', 'en', 1, 'https://ror.org/0437ce844 Southern Appalachian Botanical Society'),
(58412, 'https://ror.org/0439y7f21', 'de', 1, 'https://ror.org/0439y7f21 Krebsregister Saarland'),
(58413, 'https://ror.org/043agw178', 'no_lang_code', 1, 'https://ror.org/043agw178 TG Drives (Czechia)'),
(58414, 'https://ror.org/043b3da62', 'es', 1, 'https://ror.org/043b3da62 Instituto HologrƔfico Terrasun Terrasun Holographic Institute'),
(58415, 'https://ror.org/043bw8c75', 'no_lang_code', 1, 'https://ror.org/043bw8c75 Eveco (Czechia)'),
(58416, 'https://ror.org/043c78r03', 'en', 1, 'https://ror.org/043c78r03 Rose Community Foundation'),
(58417, 'https://ror.org/043eaeg43', 'no_lang_code', 1, 'https://ror.org/043eaeg43 Laboratoire de Dermo-CosmƩtique Animale (France)'),
(58418, 'https://ror.org/043g4d297', 'en', 1, 'https://ror.org/043g4d297 Shwachman Diamond Syndrome Foundation'),
(58419, 'https://ror.org/043m08574', 'fr', 1, 'https://ror.org/043m08574 Lausanne Natation'),
(58420, 'https://ror.org/043m6pv20', 'en', 1, 'https://ror.org/043m6pv20 DC Central Kitchen'),
(58421, 'https://ror.org/043m7sc03', 'en', 1, 'https://ror.org/043m7sc03 Association of Grass and Legumes Seed Growers SdruženĆ­ pěstitelÅÆ travnĆ­ch a jetelových semen'),
(58422, 'https://ror.org/043mfwz11', 'no_lang_code', 1, 'https://ror.org/043mfwz11 Fruits DƩlice (France)'),
(58423, 'https://ror.org/043mk2594', 'sv', 1, 'https://ror.org/043mk2594 Trygg Hansas Forskningsstiftelse'),
(58424, 'https://ror.org/043mq8146', 'no_lang_code', 1, 'https://ror.org/043mq8146 MediGEN'),
(58425, 'https://ror.org/043rpbd03', 'en', 1, 'https://ror.org/043rpbd03 Ontario Fruit and Vegetable Growers'' Association'),
(58426, 'https://ror.org/043tgen92', 'no_lang_code', 1, 'https://ror.org/043tgen92 Coprosys-LVI (Czechia)'),
(58427, 'https://ror.org/043wdfc35', 'en', 1, 'https://ror.org/043wdfc35 Museum of Yugoslav History Muzej Jugoslavije'),
(58428, 'https://ror.org/043xc2b47', 'no_lang_code', 1, 'https://ror.org/043xc2b47 Foxconn (United States)'),
(58429, 'https://ror.org/043xc7z89', 'no_lang_code', 1, 'https://ror.org/043xc7z89 Molaris (Czechia)'),
(58430, 'https://ror.org/043xdeq55', 'en', 1, 'https://ror.org/043xdeq55 Resthaven Incorporated'),
(58431, 'https://ror.org/043xkan55', 'no_lang_code', 1, 'https://ror.org/043xkan55 San Miguel Produce (United States)'),
(58432, 'https://ror.org/043yba110', 'no_lang_code', 1, 'https://ror.org/043yba110 Laboratoires Genevrier (France)'),
(58433, 'https://ror.org/043yr1e87', 'no_lang_code', 1, 'https://ror.org/043yr1e87 Remedis (Czechia)'),
(58434, 'https://ror.org/0440znq24', 'en', 1, 'https://ror.org/0440znq24 Foundation Blanceflor'),
(58435, 'https://ror.org/0442vtt97', 'en', 1, 'https://ror.org/0442vtt97 National Association of Development Organizations'),
(58436, 'https://ror.org/0444qc238', 'no_lang_code', 1, 'https://ror.org/0444qc238 VodĆ”renskĆ” Společnost Chrudim (Czechia)'),
(58437, 'https://ror.org/0446gjc92', 'en', 1, 'https://ror.org/0446gjc92 Oskar Ɩflund Foundation Oskar Ɩflunds Stiftelse'),
(58438, 'https://ror.org/0447ggh32', 'no_lang_code', 1, 'https://ror.org/0447ggh32 Nethost (Czechia)'),
(58439, 'https://ror.org/044gm0487', 'no_lang_code', 1, 'https://ror.org/044gm0487 China Ocean Shipping (China) äø­å›½čæœę“‹čæč¾“'),
(58440, 'https://ror.org/044jcs946', 'cs', 1, 'https://ror.org/044jcs946 Sdružení Historiků České Republiky'),
(58441, 'https://ror.org/044jgn488', 'no_lang_code', 1, 'https://ror.org/044jgn488 DevCom (Czechia)'),
(58442, 'https://ror.org/044k3hm62', 'cs', 1, 'https://ror.org/044k3hm62 Nemocnice Břeclav'),
(58443, 'https://ror.org/044kfsb93', 'cs', 1, 'https://ror.org/044kfsb93 ZemědělskĆ© ObchodnĆ­ Družstvo KĆ”men'),
(58444, 'https://ror.org/044kgk540', 'en', 1, 'https://ror.org/044kgk540 John L. McClellan Memorial Veterans Hospital'),
(58445, 'https://ror.org/044kkbh92', 'no_lang_code', 1, 'https://ror.org/044kkbh92 BMW Group (Germany)'),
(58446, 'https://ror.org/044ktnx96', 'en', 1, 'https://ror.org/044ktnx96 Bureau of Energy ē¶“ęæŸéƒØčƒ½ęŗå±€'),
(58447, 'https://ror.org/044qz6d20', 'en', 1, 'https://ror.org/044qz6d20 Institute of Geotechnics and Engineering Survey in Construction Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геотехники Šø инженерных изысканий в ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Šµ'),
(58448, 'https://ror.org/044r2ge26', 'en', 1, 'https://ror.org/044r2ge26 Alpine Biology Center Centro Biologia Alpina'),
(58449, 'https://ror.org/044s8gt42', 'fr', 1, 'https://ror.org/044s8gt42 MusƩe cantonal de zoologie de Lausanne'),
(58450, 'https://ror.org/044s9c536', 'en', 1, 'https://ror.org/044s9c536 G. M. Reddy Research Foundation'),
(58451, 'https://ror.org/044xdg011', 'no_lang_code', 1, 'https://ror.org/044xdg011 Toppan (United States)'),
(58452, 'https://ror.org/044xp1b57', 'no_lang_code', 1, 'https://ror.org/044xp1b57 Fortex-AGS (Czechia)'),
(58453, 'https://ror.org/044xt5998', 'no_lang_code', 1, 'https://ror.org/044xt5998 Advanced Medical Institute (Australia)'),
(58454, 'https://ror.org/044zhgv69', 'no_lang_code', 1, 'https://ror.org/044zhgv69 Strainstall (United Kingdom)'),
(58455, 'https://ror.org/0450y4k66', 'cs', 1, 'https://ror.org/0450y4k66 Orlické Muzeum Choceň'),
(58456, 'https://ror.org/0450ydh81', 'no_lang_code', 1, 'https://ror.org/0450ydh81 Vakabrnocz (Czechia)'),
(58457, 'https://ror.org/0451k0g64', 'no_lang_code', 1, 'https://ror.org/0451k0g64 Institute of Applied Biotechnologies (Czechia)'),
(58458, 'https://ror.org/04521r875', 'fr', 1, 'https://ror.org/04521r875 Agence de l''eau RhƓne MƩditerranƩe Corse'),
(58459, 'https://ror.org/0453b8r94', 'cs', 1, 'https://ror.org/0453b8r94 ČeskÔ Krajina'),
(58460, 'https://ror.org/0453rk787', 'fr', 1, 'https://ror.org/0453rk787 Laboratoire de Sciences de la Terre'),
(58461, 'https://ror.org/045518148', 'en', 1, 'https://ror.org/045518148 Centre for Regional Policy Research and Cooperation Studiorum'),
(58462, 'https://ror.org/045661064', 'no_lang_code', 1, 'https://ror.org/045661064 SvÔrovský (Czechia)'),
(58463, 'https://ror.org/045668z75', 'no_lang_code', 1, 'https://ror.org/045668z75 Forsapi (Czechia)'),
(58464, 'https://ror.org/0459rmv61', 'en', 1, 'https://ror.org/0459rmv61 Society for the History of Czechoslovak Jews Společnost pro dějiny židÅÆ v ČeskoslovenskĆ© republice'),
(58465, 'https://ror.org/045b4zv25', 'no_lang_code', 1, 'https://ror.org/045b4zv25 Vega (Czechia)'),
(58466, 'https://ror.org/045bnzp02', 'no_lang_code', 1, 'https://ror.org/045bnzp02 Foresta (Czechia)'),
(58467, 'https://ror.org/045cfxc86', 'no_lang_code', 1, 'https://ror.org/045cfxc86 VodohospodÔřský podnik (Czechia)'),
(58468, 'https://ror.org/045cwqd08', 'no_lang_code', 1, 'https://ror.org/045cwqd08 Albemarle (Netherlands)'),
(58469, 'https://ror.org/045e9yd97', 'no_lang_code', 1, 'https://ror.org/045e9yd97 Aqua-contact (Czechia)'),
(58470, 'https://ror.org/045ejp222', 'en', 1, 'https://ror.org/045ejp222 Shandong Provincial Agriculture Department å±±äøœēœå†œäøšåŽ… ę‰æåŠž'),
(58471, 'https://ror.org/045eygx28', 'en', 1, 'https://ror.org/045eygx28 Wisconsin Veterinary Medical Association'),
(58472, 'https://ror.org/045g2fs27', 'no_lang_code', 1, 'https://ror.org/045g2fs27 Ecotex (Czechia)'),
(58473, 'https://ror.org/045g9rz48', 'no_lang_code', 1, 'https://ror.org/045g9rz48 Applied Coherent Technology (United States)'),
(58474, 'https://ror.org/045gwct77', 'no_lang_code', 1, 'https://ror.org/045gwct77 Lenz & Staehelin (Switzerland)'),
(58475, 'https://ror.org/045htpw71', 'en', 1, 'https://ror.org/045htpw71 Dictionary Society of North America'),
(58476, 'https://ror.org/045jxwb84', 'no_lang_code', 1, 'https://ror.org/045jxwb84 JK envi (Czechia)'),
(58477, 'https://ror.org/045krvc71', 'fr', 1, 'https://ror.org/045krvc71 Labex Action'),
(58478, 'https://ror.org/045mb3x22', 'en', 1, 'https://ror.org/045mb3x22 Woodruff Foundation'),
(58479, 'https://ror.org/045mezg88', 'no_lang_code', 1, 'https://ror.org/045mezg88 Arcdata (Czechia)'),
(58480, 'https://ror.org/045qqby88', 'no_lang_code', 1, 'https://ror.org/045qqby88 ON Semiconductor (South Korea)'),
(58481, 'https://ror.org/045r69s96', 'fi', 1, 'https://ror.org/045r69s96 Satakunnan Korkean Teknologian SƤƤtiƶ'),
(58482, 'https://ror.org/045tder48', 'cs', 1, 'https://ror.org/045tder48 ZemědělskĆ© družstvo LiběŔice'),
(58483, 'https://ror.org/045tr8m18', 'no_lang_code', 1, 'https://ror.org/045tr8m18 Kaspe (Czechia)'),
(58484, 'https://ror.org/045vees34', 'de', 1, 'https://ror.org/045vees34 Gfs-Zürich'),
(58485, 'https://ror.org/045vf4q62', 'no_lang_code', 1, 'https://ror.org/045vf4q62 Apronex (Czechia)'),
(58486, 'https://ror.org/045vn2806', 'en', 1, 'https://ror.org/045vn2806 AIMS@JCU'),
(58487, 'https://ror.org/045x2a702', 'fr', 1, 'https://ror.org/045x2a702 Institut EuropƩen de Gestion'),
(58488, 'https://ror.org/045x5q326', 'en', 1, 'https://ror.org/045x5q326 Sciencenter'),
(58489, 'https://ror.org/045ykqf07', 'no_lang_code', 1, 'https://ror.org/045ykqf07 Triangolo (Czechia)'),
(58490, 'https://ror.org/04605x106', 'no_lang_code', 1, 'https://ror.org/04605x106 Envirmine-Energo (Czechia)'),
(58491, 'https://ror.org/0460p7240', 'en', 1, 'https://ror.org/0460p7240 Species Conservation Foundation Stiftung Artenschutz'),
(58492, 'https://ror.org/04634r813', 'en', 1, 'https://ror.org/04634r813 Southwest Badger Resource Conservation and Development Council'),
(58493, 'https://ror.org/0465j8q23', 'de', 1, 'https://ror.org/0465j8q23 Historischer Verein des Kantons Schwyz'),
(58494, 'https://ror.org/04666hf17', 'no_lang_code', 1, 'https://ror.org/04666hf17 Academia Raetica'),
(58495, 'https://ror.org/046chmz66', 'en', 1, 'https://ror.org/046chmz66 Institute of Social Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… наук'),
(58496, 'https://ror.org/046ckcg70', 'no_lang_code', 1, 'https://ror.org/046ckcg70 Zeal (United Kingdom)'),
(58497, 'https://ror.org/046cz2w20', 'no_lang_code', 1, 'https://ror.org/046cz2w20 Nicolet (Czechia)'),
(58498, 'https://ror.org/046d4aw91', 'en', 1, 'https://ror.org/046d4aw91 Institute of Art History MTA BölcsészettudomÔnyi Kutatóközpont Művészettörténeti Intézet'),
(58499, 'https://ror.org/046dvcc04', 'no_lang_code', 1, 'https://ror.org/046dvcc04 Forensic DNA Service (Czechia) ForenznĆ­ DNA servis'),
(58500, 'https://ror.org/046e4b521', 'fr', 1, 'https://ror.org/046e4b521 Direction GƩnƩrale de l''Enseignement Obligatoire - Enseignement Primaire'),
(58501, 'https://ror.org/046ec5t14', 'en', 1, 'https://ror.org/046ec5t14 Syngenta Foundation for Sustainable Agriculture'),
(58502, 'https://ror.org/046g3bm52', 'no_lang_code', 1, 'https://ror.org/046g3bm52 MEC'),
(58503, 'https://ror.org/046jh9k27', 'en', 1, 'https://ror.org/046jh9k27 San Francisco Foundation'),
(58504, 'https://ror.org/046kv4j11', 'no_lang_code', 1, 'https://ror.org/046kv4j11 Pragoimex (Czechia)'),
(58505, 'https://ror.org/046m71h07', 'en', 1, 'https://ror.org/046m71h07 Ministry of Higher Education and Scientific Research وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(58506, 'https://ror.org/046m7f751', 'en', 1, 'https://ror.org/046m7f751 Senri Life Science Foundation åƒé‡Œćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(58507, 'https://ror.org/046nmb538', 'de', 1, 'https://ror.org/046nmb538 NET Metrix'),
(58508, 'https://ror.org/046nvcx94', 'cs', 1, 'https://ror.org/046nvcx94 ČeskĆ” HutnickĆ” Společnost'),
(58509, 'https://ror.org/046q3c491', 'sv', 1, 'https://ror.org/046q3c491 Direktƶr Albert PƄhlssons Stiftelse fƶr VƤlgƶrenhet'),
(58510, 'https://ror.org/046q3s698', 'de', 1, 'https://ror.org/046q3s698 Schweizer Allianz Gentechfrei'),
(58511, 'https://ror.org/046q5nj25', 'cs', 1, 'https://ror.org/046q5nj25 ČeskĆ” SpeleologickĆ” Společnost'),
(58512, 'https://ror.org/046rffv75', 'en', 1, 'https://ror.org/046rffv75 International Union of Geological Sciences'),
(58513, 'https://ror.org/046s0ap47', 'no_lang_code', 1, 'https://ror.org/046s0ap47 XT Card (Czechia)'),
(58514, 'https://ror.org/046sbgc47', 'cs', 1, 'https://ror.org/046sbgc47 Envirex'),
(58515, 'https://ror.org/046tc9744', 'da', 1, 'https://ror.org/046tc9744 Svend Andersen Fonden'),
(58516, 'https://ror.org/046tk6771', 'en', 1, 'https://ror.org/046tk6771 Posen Foundation קרן פוזן'),
(58517, 'https://ror.org/046vvrs54', 'no_lang_code', 1, 'https://ror.org/046vvrs54 Texas Instruments (Netherlands)'),
(58518, 'https://ror.org/046w6p285', 'en', 1, 'https://ror.org/046w6p285 Swedish Brain Power'),
(58519, 'https://ror.org/046x93w41', 'de', 1, 'https://ror.org/046x93w41 Berner Kantonalbank'),
(58520, 'https://ror.org/046xnnd03', 'no_lang_code', 1, 'https://ror.org/046xnnd03 Benet Gold (Czechia)'),
(58521, 'https://ror.org/046yszb07', 'no_lang_code', 1, 'https://ror.org/046yszb07 Ligranit (Czechia)'),
(58522, 'https://ror.org/04708aj14', 'en', 1, 'https://ror.org/04708aj14 Pediatric Epilepsy Research Foundation'),
(58523, 'https://ror.org/0470csm54', 'no_lang_code', 1, 'https://ror.org/0470csm54 Geocart (Czechia)'),
(58524, 'https://ror.org/047107639', 'no_lang_code', 1, 'https://ror.org/047107639 Cernin (Czechia)'),
(58525, 'https://ror.org/0473pps33', 'en', 1, 'https://ror.org/0473pps33 AMR Centre'),
(58526, 'https://ror.org/04744k068', 'en', 1, 'https://ror.org/04744k068 Ministry of Industries and Innovation'),
(58527, 'https://ror.org/0476y1408', 'no_lang_code', 1, 'https://ror.org/0476y1408 Basaltex (Czechia)'),
(58528, 'https://ror.org/047909p37', 'no_lang_code', 1, 'https://ror.org/047909p37 ČAS Service (Czechia)'),
(58529, 'https://ror.org/047916x45', 'en', 1, 'https://ror.org/047916x45 Rett Syndrome Association of Australia'),
(58530, 'https://ror.org/047939x15', 'en', 1, 'https://ror.org/047939x15 Penn Center for AIDS Research'),
(58531, 'https://ror.org/047a1qt28', 'no_lang_code', 1, 'https://ror.org/047a1qt28 Balakryl (Czechia)'),
(58532, 'https://ror.org/047ajv266', 'no_lang_code', 1, 'https://ror.org/047ajv266 Illinois Tool Works (France)'),
(58533, 'https://ror.org/047asg479', 'en', 1, 'https://ror.org/047asg479 Organic Farm School'),
(58534, 'https://ror.org/047eytq20', 'no_lang_code', 1, 'https://ror.org/047eytq20 Coloplast (United Kingdom)'),
(58535, 'https://ror.org/047fpcv83', 'en', 1, 'https://ror.org/047fpcv83 Saigh Foundation'),
(58536, 'https://ror.org/047kkxp41', 'en', 1, 'https://ror.org/047kkxp41 Institute of Vegetable and Floriculture Science é‡ŽčœčŠ±ćē ”ē©¶éƒØé–€'),
(58537, 'https://ror.org/047kshh42', 'en', 1, 'https://ror.org/047kshh42 East West Medical Research Institute'),
(58538, 'https://ror.org/047m55x87', 'en', 1, 'https://ror.org/047m55x87 RYR 1 Foundation'),
(58539, 'https://ror.org/047mjng73', 'no_lang_code', 1, 'https://ror.org/047mjng73 Delacon Biotechnik (Czechia)'),
(58540, 'https://ror.org/047n5wn91', 'no_lang_code', 1, 'https://ror.org/047n5wn91 Scanco Medical (Switzerland)'),
(58541, 'https://ror.org/047nkw990', 'no_lang_code', 1, 'https://ror.org/047nkw990 Ella BachƩ (France)'),
(58542, 'https://ror.org/047nxq723', 'en', 1, 'https://ror.org/047nxq723 Czech Forum for Development Cooperation České fórum pro rozvojovou spoluprÔci'),
(58543, 'https://ror.org/047qdeh65', 'no_lang_code', 1, 'https://ror.org/047qdeh65 Zetetic Institute'),
(58544, 'https://ror.org/047rda748', 'no_lang_code', 1, 'https://ror.org/047rda748 Radanal (Czechia)'),
(58545, 'https://ror.org/047s4cx41', 'en', 1, 'https://ror.org/047s4cx41 Pilgrim Psychiatric Center'),
(58546, 'https://ror.org/047xr9y18', 'cs', 1, 'https://ror.org/047xr9y18 Znalecký Ústav Bezpečnosti a Ochrany ZdravĆ­'),
(58547, 'https://ror.org/047znkp64', 'no_lang_code', 1, 'https://ror.org/047znkp64 Europanel (Czechia)'),
(58548, 'https://ror.org/048016404', 'da', 1, 'https://ror.org/048016404 Dansk KrƦftforsknings Fond'),
(58549, 'https://ror.org/0481qb682', 'en', 1, 'https://ror.org/0481qb682 Direction gĆ©nĆ©rale de l’éducation, de la jeunesse, du sport et de la culture Directorate-General for Education, Youth, Sport and Culture Generaldirektion Bildung, Jugend, Sport und Kultur'),
(58550, 'https://ror.org/0481z9839', 'no_lang_code', 1, 'https://ror.org/0481z9839 TE Connectivity (Japan)'),
(58551, 'https://ror.org/0482qwy81', 'cs', 1, 'https://ror.org/0482qwy81 SprĆ”va ŽelezničnĆ­ DopravnĆ­ Cesty'),
(58552, 'https://ror.org/0483kh086', 'en', 1, 'https://ror.org/0483kh086 Ukrainian Oil and Gas Institute Ukrainsky neftegazovy institut'),
(58553, 'https://ror.org/0484yn593', 'no_lang_code', 1, 'https://ror.org/0484yn593 KVS Ekodivize (Czechia)'),
(58554, 'https://ror.org/04858sf96', 'no_lang_code', 1, 'https://ror.org/04858sf96 Sido (Czechia)'),
(58555, 'https://ror.org/0486zbr69', 'en', 1, 'https://ror.org/0486zbr69 Saika Technological Institute Foundation äø€čˆ¬č²”å›£ę³•äŗŗ é›‘č³€ęŠ€č”“ē ”ē©¶ę‰€'),
(58556, 'https://ror.org/0489x2521', 'no_lang_code', 1, 'https://ror.org/0489x2521 Vrsanska Uhelna (Czechia)'),
(58557, 'https://ror.org/048a8ap39', 'cs', 1, 'https://ror.org/048a8ap39 Labyrint'),
(58558, 'https://ror.org/048bdzy56', 'en', 1, 'https://ror.org/048bdzy56 St. Jude Medical Foundation'),
(58559, 'https://ror.org/048c6ht78', 'en', 1, 'https://ror.org/048c6ht78 Vietnam Education Foundation'),
(58560, 'https://ror.org/048cvv935', 'en', 1, 'https://ror.org/048cvv935 Rockefeller Brothers Fund'),
(58561, 'https://ror.org/048dgbt58', 'no_lang_code', 1, 'https://ror.org/048dgbt58 Triton Turnov (Czechia)'),
(58562, 'https://ror.org/048e5wt68', 'no_lang_code', 1, 'https://ror.org/048e5wt68 Bonnel Technologie (Czechia)'),
(58563, 'https://ror.org/048f13k87', 'no_lang_code', 1, 'https://ror.org/048f13k87 Inquiry Technologies (United States)'),
(58564, 'https://ror.org/048f4bh03', 'de', 1, 'https://ror.org/048f4bh03 Institut für Automatisierung und Informatik'),
(58565, 'https://ror.org/048fh6562', 'en', 1, 'https://ror.org/048fh6562 Czech Society for Histo and Cytochemistry ČeskĆ” společnost histo-a cytochemickĆ”'),
(58566, 'https://ror.org/048frez22', 'no_lang_code', 1, 'https://ror.org/048frez22 Amarin (United Kingdom)'),
(58567, 'https://ror.org/048g28j84', 'en', 1, 'https://ror.org/048g28j84 Industrial Technology Center of Okayama Prefecture å²”å±±ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(58568, 'https://ror.org/048h6zc16', 'en', 1, 'https://ror.org/048h6zc16 Research Institute of Chemicals for Polymeric Materials'),
(58569, 'https://ror.org/048mh8s80', 'no_lang_code', 1, 'https://ror.org/048mh8s80 Calimmune (United States)'),
(58570, 'https://ror.org/048nacf41', 'en', 1, 'https://ror.org/048nacf41 Federal Government of Germany'),
(58571, 'https://ror.org/048npsb62', 'no_lang_code', 1, 'https://ror.org/048npsb62 Karned Tools (Czechia)'),
(58572, 'https://ror.org/048p4wq89', 'no_lang_code', 1, 'https://ror.org/048p4wq89 Takeda (France)'),
(58573, 'https://ror.org/048r71s66', 'en', 1, 'https://ror.org/048r71s66 Ceres Laboratory Laboratoire Ceres'),
(58574, 'https://ror.org/048rt2d32', 'nl', 1, 'https://ror.org/048rt2d32 Cicero Zorggroep'),
(58575, 'https://ror.org/048tv2g66', 'en', 1, 'https://ror.org/048tv2g66 Restless Legs Syndrome Foundation'),
(58576, 'https://ror.org/048vy2749', 'de', 1, 'https://ror.org/048vy2749 ViaStoria'),
(58577, 'https://ror.org/048xrz015', 'no_lang_code', 1, 'https://ror.org/048xrz015 Testima (Czechia)'),
(58578, 'https://ror.org/048y92s67', 'en', 1, 'https://ror.org/048y92s67 JihočeskĆ” agentura pro podporu inovačnĆ­ho podnikĆ”nĆ­ o.p.s South Bohemian Agency for Support to Innovative Enterprising'),
(58579, 'https://ror.org/048zg6t55', 'no_lang_code', 1, 'https://ror.org/048zg6t55 Jiangsu Huadong Institute Of Li-Ion Battery'),
(58580, 'https://ror.org/048ztsn21', 'en', 1, 'https://ror.org/048ztsn21 Cochrane'),
(58581, 'https://ror.org/04904ph59', 'en', 1, 'https://ror.org/04904ph59 Cаксонский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной биотехнологии Instituto Sajón de BiotecnologĆ­a Aplicada anexo Saxon Institute for Applied Biotechnology SƤchsisches Institut für Angewandte Biotechnologie'),
(58582, 'https://ror.org/0491jra02', 'no_lang_code', 1, 'https://ror.org/0491jra02 KBK fire (Czechia)'),
(58583, 'https://ror.org/0491q1q03', 'no_lang_code', 1, 'https://ror.org/0491q1q03 Spel (Czechia)'),
(58584, 'https://ror.org/0492qzy66', 'no_lang_code', 1, 'https://ror.org/0492qzy66 Stanley Black & Decker (France)'),
(58585, 'https://ror.org/0493txn47', 'en', 1, 'https://ror.org/0493txn47 Canadian Energy Research Institute'),
(58586, 'https://ror.org/0494r5h25', 'en', 1, 'https://ror.org/0494r5h25 Bundesgericht Federal Supreme Court of Switzerland Tribunal federal Tribunal fƩdƩral Tribunale federale'),
(58587, 'https://ror.org/0497wpq23', 'no_lang_code', 1, 'https://ror.org/0497wpq23 ČIP Plus (Czechia)'),
(58588, 'https://ror.org/0498qf076', 'de', 1, 'https://ror.org/0498qf076 Kantonsschule Enge'),
(58589, 'https://ror.org/04993kw89', 'de', 1, 'https://ror.org/04993kw89 Departement für Wirtschaft, Soziales und Umwelt'),
(58590, 'https://ror.org/0499cjb39', 'en', 1, 'https://ror.org/0499cjb39 Greek Society of Rheumatology'),
(58591, 'https://ror.org/049a7m162', 'no_lang_code', 1, 'https://ror.org/049a7m162 Abitec (Czechia)'),
(58592, 'https://ror.org/049ay0490', 'no_lang_code', 1, 'https://ror.org/049ay0490 Velobüro (Switzerland)'),
(58593, 'https://ror.org/049efks73', 'en', 1, 'https://ror.org/049efks73 Museum of the City of Usti nad Labem'),
(58594, 'https://ror.org/049g0ca30', 'no_lang_code', 1, 'https://ror.org/049g0ca30 Synthomer (Czechia)'),
(58595, 'https://ror.org/049gvsd25', 'no_lang_code', 1, 'https://ror.org/049gvsd25 Knorr-Bremse (Czechia)'),
(58596, 'https://ror.org/049hp1z35', 'no_lang_code', 1, 'https://ror.org/049hp1z35 Bratři HorĆ”kovĆ© (Czechia)'),
(58597, 'https://ror.org/049j15k39', 'no_lang_code', 1, 'https://ror.org/049j15k39 Dongfeng Motor (China)'),
(58598, 'https://ror.org/049k08p55', 'en', 1, 'https://ror.org/049k08p55 STandUP for Energy'),
(58599, 'https://ror.org/049p61e38', 'en', 1, 'https://ror.org/049p61e38 Lantern Community Services'),
(58600, 'https://ror.org/049px2k81', 'no_lang_code', 1, 'https://ror.org/049px2k81 RCS Kladno (Czechia)'),
(58601, 'https://ror.org/049rk3218', 'de', 1, 'https://ror.org/049rk3218 Institut für angewandte Photonik'),
(58602, 'https://ror.org/049tb1q96', 'no_lang_code', 1, 'https://ror.org/049tb1q96 Varian Medical Systems (Switzerland)'),
(58603, 'https://ror.org/049vb3221', 'no_lang_code', 1, 'https://ror.org/049vb3221 Profinit (Czechia)'),
(58604, 'https://ror.org/049vzz986', 'no_lang_code', 1, 'https://ror.org/049vzz986 Storz Medical (Switzerland)'),
(58605, 'https://ror.org/049wtgt11', 'no_lang_code', 1, 'https://ror.org/049wtgt11 DuPont (France)'),
(58606, 'https://ror.org/049yngf89', 'no_lang_code', 1, 'https://ror.org/049yngf89 Made In Space (United States)'),
(58607, 'https://ror.org/049yqqs33', 'en', 1, 'https://ror.org/049yqqs33 Heidelberg Institute for Stem Cell Technology and Experimental Medicine'),
(58608, 'https://ror.org/049yzrn11', 'no_lang_code', 1, 'https://ror.org/049yzrn11 Technology Partnership (United Kingdom)'),
(58609, 'https://ror.org/049z4x724', 'no_lang_code', 1, 'https://ror.org/049z4x724 PooslavĆ­ NovĆ” Ves (Slovakia)'),
(58610, 'https://ror.org/04a2jrr93', 'no_lang_code', 1, 'https://ror.org/04a2jrr93 Wista (Czechia)'),
(58611, 'https://ror.org/04a2k6j28', 'en', 1, 'https://ror.org/04a2k6j28 Volpe National Transportation Systems Center'),
(58612, 'https://ror.org/04a8hmx75', 'no_lang_code', 1, 'https://ror.org/04a8hmx75 Chateau Bzenec (Czechia)'),
(58613, 'https://ror.org/04a9esj71', 'no_lang_code', 1, 'https://ror.org/04a9esj71 Amec Foster Wheeler (Czechia)'),
(58614, 'https://ror.org/04abad481', 'en', 1, 'https://ror.org/04abad481 Webster Groves Nature Study Society'),
(58615, 'https://ror.org/04ackq833', 'en', 1, 'https://ror.org/04ackq833 Lumbini Eye Institute'),
(58616, 'https://ror.org/04adtqj87', 'en', 1, 'https://ror.org/04adtqj87 T.J. Martell Foundation'),
(58617, 'https://ror.org/04aekkh13', 'en', 1, 'https://ror.org/04aekkh13 International Union for Physical and Engineering Sciences in Medicine'),
(58618, 'https://ror.org/04afcm768', 'en', 1, 'https://ror.org/04afcm768 Mediteranski institut za istraživanje života Mediterranean Institute for Life Sciences'),
(58619, 'https://ror.org/04agdqh30', 'en', 1, 'https://ror.org/04agdqh30 Raine Medical Research Foundation'),
(58620, 'https://ror.org/04ahnxd67', 'de', 1, 'https://ror.org/04ahnxd67 St. Claraspital'),
(58621, 'https://ror.org/04aj0cy60', 'en', 1, 'https://ror.org/04aj0cy60 Gabrielle’s Angel Foundation for Cancer Research'),
(58622, 'https://ror.org/04ajxh113', 'en', 1, 'https://ror.org/04ajxh113 R. Harold Burton Foundation'),
(58623, 'https://ror.org/04ansg437', 'no_lang_code', 1, 'https://ror.org/04ansg437 Altech (Czechia)'),
(58624, 'https://ror.org/04aqd7928', 'no_lang_code', 1, 'https://ror.org/04aqd7928 Amer Sports (United States)'),
(58625, 'https://ror.org/04ar4b407', 'no_lang_code', 1, 'https://ror.org/04ar4b407 Koenig & Bauer (Switzerland)'),
(58626, 'https://ror.org/04are6b10', 'no_lang_code', 1, 'https://ror.org/04are6b10 Sincon (Czechia)'),
(58627, 'https://ror.org/04arfmc53', 'cs', 1, 'https://ror.org/04arfmc53 Svaz Chovatelů HolŔtýnského Skotu ČR'),
(58628, 'https://ror.org/04avh2p37', 'no_lang_code', 1, 'https://ror.org/04avh2p37 AGROSAD VelkƩ Bƭlovice (Czechia)'),
(58629, 'https://ror.org/04avma498', 'no_lang_code', 1, 'https://ror.org/04avma498 VodĆ”renskĆ” AkciovĆ” Společnost (Czechia)'),
(58630, 'https://ror.org/04axw7w96', 'en', 1, 'https://ror.org/04axw7w96 Robert E. and Evelyn McKee Foundation'),
(58631, 'https://ror.org/04axzyr33', 'no_lang_code', 1, 'https://ror.org/04axzyr33 Usibelli Coal Mine (United States)'),
(58632, 'https://ror.org/04ayj6s32', 'en', 1, 'https://ror.org/04ayj6s32 Scientific Research Institute of Technical Physics and Automation'),
(58633, 'https://ror.org/04azbkk87', 'en', 1, 'https://ror.org/04azbkk87 Schweizerisches Institut für öffentliches Management Swiss Institute for Public Management'),
(58634, 'https://ror.org/04b2avy95', 'no_lang_code', 1, 'https://ror.org/04b2avy95 Vuchz (Czechia)'),
(58635, 'https://ror.org/04b2kpa50', 'no_lang_code', 1, 'https://ror.org/04b2kpa50 ZemědělskĆ© družstvo BaÅ”nice (Czechia)'),
(58636, 'https://ror.org/04b5gd719', 'no_lang_code', 1, 'https://ror.org/04b5gd719 Riisfort (Denmark)'),
(58637, 'https://ror.org/04b65h134', 'cs', 1, 'https://ror.org/04b65h134 SlĆ”deček Museum of Local History'),
(58638, 'https://ror.org/04b6xpy41', 'en', 1, 'https://ror.org/04b6xpy41 Neuromuscular Research Association Basel'),
(58639, 'https://ror.org/04b988286', 'en', 1, 'https://ror.org/04b988286 Centre for Socio-Eco-Nomic Development'),
(58640, 'https://ror.org/04b9pxw89', 'de', 1, 'https://ror.org/04b9pxw89 Gymnasien Kirchenfeld'),
(58641, 'https://ror.org/04bag3882', 'no_lang_code', 1, 'https://ror.org/04bag3882 CIUR (Czechia)'),
(58642, 'https://ror.org/04bbdb654', 'cs', 1, 'https://ror.org/04bbdb654 GymnÔzium Žamberk'),
(58643, 'https://ror.org/04bbh4w12', 'es', 1, 'https://ror.org/04bbh4w12 Instituto Universitario de Profesiones Gerenciales'),
(58644, 'https://ror.org/04beemq12', 'it', 1, 'https://ror.org/04beemq12 Memoriav'),
(58645, 'https://ror.org/04bej5z04', 'no_lang_code', 1, 'https://ror.org/04bej5z04 Tovek (Czechia)'),
(58646, 'https://ror.org/04bf2vs71', 'no_lang_code', 1, 'https://ror.org/04bf2vs71 Hemp Production (Czechia)'),
(58647, 'https://ror.org/04bf54607', 'no_lang_code', 1, 'https://ror.org/04bf54607 Soudronic (Switzerland)'),
(58648, 'https://ror.org/04bm96s59', 'no_lang_code', 1, 'https://ror.org/04bm96s59 CZ Bijo (Czechia)'),
(58649, 'https://ror.org/04bt71y08', 'en', 1, 'https://ror.org/04bt71y08 Asociace leteckých výrobců Association of the Czech AeroSpace Industry'),
(58650, 'https://ror.org/04btwgw22', 'no_lang_code', 1, 'https://ror.org/04btwgw22 Aura (Czechia)'),
(58651, 'https://ror.org/04bv5ph58', 'no_lang_code', 1, 'https://ror.org/04bv5ph58 KHSanace (Czechia)'),
(58652, 'https://ror.org/04c4mj004', 'en', 1, 'https://ror.org/04c4mj004 Science and Industry Endowment Fund'),
(58653, 'https://ror.org/04c4xmn37', 'no_lang_code', 1, 'https://ror.org/04c4xmn37 Fermat (Czechia)'),
(58654, 'https://ror.org/04c5v7077', 'no_lang_code', 1, 'https://ror.org/04c5v7077 TTC Marconi (Czechia)'),
(58655, 'https://ror.org/04c5xj152', 'en', 1, 'https://ror.org/04c5xj152 Ray Thomas Edwards Foundation'),
(58656, 'https://ror.org/04c6pgy84', 'no_lang_code', 1, 'https://ror.org/04c6pgy84 Mercer (Czechia)'),
(58657, 'https://ror.org/04c792r17', 'cs', 1, 'https://ror.org/04c792r17 Sdružení obcí Orlicko'),
(58658, 'https://ror.org/04c7g1a88', 'de', 1, 'https://ror.org/04c7g1a88 Amt für Städtebau'),
(58659, 'https://ror.org/04c7mjp03', 'en', 1, 'https://ror.org/04c7mjp03 Latin American Studies Association'),
(58660, 'https://ror.org/04c87mr25', 'de', 1, 'https://ror.org/04c87mr25 Kulturamt Appenzell'),
(58661, 'https://ror.org/04c8y8w58', 'en', 1, 'https://ror.org/04c8y8w58 Institute of Archeology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ археології ŠŠŠ України'),
(58662, 'https://ror.org/04c9dah88', 'fr', 1, 'https://ror.org/04c9dah88 Conseil DƩpartemental des Vosges'),
(58663, 'https://ror.org/04cbqcv03', 'no_lang_code', 1, 'https://ror.org/04cbqcv03 Tpa Čr (Czechia)'),
(58664, 'https://ror.org/04cchyf16', 'en', 1, 'https://ror.org/04cchyf16 Anatolia College Κολλέγιο Ī‘Ī½Ī±Ļ„ĻŒĪ»Ī¹Ī±'),
(58665, 'https://ror.org/04cd0p048', 'no_lang_code', 1, 'https://ror.org/04cd0p048 Svoboda (Czechia)'),
(58666, 'https://ror.org/04cgmq851', 'en', 1, 'https://ror.org/04cgmq851 Society for Ethnomusicology'),
(58667, 'https://ror.org/04chjhs81', 'no_lang_code', 1, 'https://ror.org/04chjhs81 SlƩvƔrna a ModelƔrna NovƩ Ransko'),
(58668, 'https://ror.org/04cmg3c10', 'no_lang_code', 1, 'https://ror.org/04cmg3c10 Foundation of the Baroque Theater in Český Krumlov Nadace barokního divadla zÔmku Český Krumlov'),
(58669, 'https://ror.org/04cn6h279', 'en', 1, 'https://ror.org/04cn6h279 Japan Institute for Advanced Dentistry å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę­Æē§‘å…ˆē«ÆęŠ€č”“ē ”ē©¶ę‰€'),
(58670, 'https://ror.org/04cpbr209', 'en', 1, 'https://ror.org/04cpbr209 Regional Art Gallery Liberec'),
(58671, 'https://ror.org/04cs4hx53', 'no_lang_code', 1, 'https://ror.org/04cs4hx53 NTD Group (Czechia)'),
(58672, 'https://ror.org/04cvw9c02', 'de', 1, 'https://ror.org/04cvw9c02 Library Am Guisanplatz'),
(58673, 'https://ror.org/04d1d9s98', 'en', 1, 'https://ror.org/04d1d9s98 Coopers Animal Health'),
(58674, 'https://ror.org/04d1eym69', 'no_lang_code', 1, 'https://ror.org/04d1eym69 Kingspan (Ireland)'),
(58675, 'https://ror.org/04d23mg64', 'no_lang_code', 1, 'https://ror.org/04d23mg64 Chirana (Czechia)'),
(58676, 'https://ror.org/04d2j3090', 'en', 1, 'https://ror.org/04d2j3090 Ontario Trillium Foundation'),
(58677, 'https://ror.org/04d3cgn96', 'no_lang_code', 1, 'https://ror.org/04d3cgn96 Alginit (Czechia)'),
(58678, 'https://ror.org/04d51r796', 'no_lang_code', 1, 'https://ror.org/04d51r796 Altron (Czechia)'),
(58679, 'https://ror.org/04d730y78', 'cs', 1, 'https://ror.org/04d730y78 Domov Na JaroÅ”ce, PříspěvkovĆ” Organizace'),
(58680, 'https://ror.org/04d7xaq68', 'no_lang_code', 1, 'https://ror.org/04d7xaq68 Takt (Czechia)'),
(58681, 'https://ror.org/04d828f56', 'en', 1, 'https://ror.org/04d828f56 Sarcoma UK'),
(58682, 'https://ror.org/04d8f4804', 'no_lang_code', 1, 'https://ror.org/04d8f4804 HeidelbergCement (United States)'),
(58683, 'https://ror.org/04d9jqv19', 'no_lang_code', 1, 'https://ror.org/04d9jqv19 Minova Bohemia (Czechia)'),
(58684, 'https://ror.org/04dacya36', 'en', 1, 'https://ror.org/04dacya36 Renewable Energy and Energy Efficiency Organization به ŲŖŲ§Ų±Ł†Ł…Ų§ŪŒ سازمان Ų§Ł†Ų±Ś˜ŪŒ Ł‡Ų§ŪŒ تجدیدپذیر و بهره وری Ų§Ł†Ų±Ś˜ŪŒ برق خوؓ Ų¢Ł…ŲÆŪŒŲÆ.'),
(58685, 'https://ror.org/04dbch786', 'no_lang_code', 1, 'https://ror.org/04dbch786 Yandex (Russia) ЯнГекс'),
(58686, 'https://ror.org/04dc5j714', 'no_lang_code', 1, 'https://ror.org/04dc5j714 Antimicrobial Materials (United States)'),
(58687, 'https://ror.org/04dc7cj39', 'no_lang_code', 1, 'https://ror.org/04dc7cj39 SEKO Brno (Czechia)'),
(58688, 'https://ror.org/04de0c074', 'en', 1, 'https://ror.org/04de0c074 Melbourn Science Park'),
(58689, 'https://ror.org/04dedrk57', 'en', 1, 'https://ror.org/04dedrk57 Association of Foundries'),
(58690, 'https://ror.org/04dg1g218', 'no_lang_code', 1, 'https://ror.org/04dg1g218 Cisco Systems (Czechia)'),
(58691, 'https://ror.org/04dg8np90', 'en', 1, 'https://ror.org/04dg8np90 Food Basket (United States)'),
(58692, 'https://ror.org/04dkxv608', 'no_lang_code', 1, 'https://ror.org/04dkxv608 Českomoravský Cement (Czechia)'),
(58693, 'https://ror.org/04dkz7q98', 'no_lang_code', 1, 'https://ror.org/04dkz7q98 eHealth Consulting (United States)'),
(58694, 'https://ror.org/04dr38k67', 'no_lang_code', 1, 'https://ror.org/04dr38k67 Alpha Space Test and Research Alliance (United States)'),
(58695, 'https://ror.org/04dscat02', 'en', 1, 'https://ror.org/04dscat02 Israel National Nanotechnology Initiative'),
(58696, 'https://ror.org/04dvapm76', 'no_lang_code', 1, 'https://ror.org/04dvapm76 Canfield Scientific (United States)'),
(58697, 'https://ror.org/04dzj3g56', 'en', 1, 'https://ror.org/04dzj3g56 Jiangsu Key Laboratory of 3D Printing Equipment and Manufacturing ę±Ÿč‹ēœäø‰ē»“ę‰“å°č£…å¤‡äøŽåˆ¶é€ é‡ē‚¹å®žéŖŒå®¤'),
(58698, 'https://ror.org/04dzqh472', 'no_lang_code', 1, 'https://ror.org/04dzqh472 IBM (Czechia)'),
(58699, 'https://ror.org/04e14gy75', 'no_lang_code', 1, 'https://ror.org/04e14gy75 Styl Plzeň (Czechia)'),
(58700, 'https://ror.org/04e25nh11', 'no_lang_code', 1, 'https://ror.org/04e25nh11 Agro Chomutice (Czechia)'),
(58701, 'https://ror.org/04e2w0r26', 'no_lang_code', 1, 'https://ror.org/04e2w0r26 Excon (Czechia)');
INSERT INTO `rors` VALUES
(58702, 'https://ror.org/04e3g2b28', 'no_lang_code', 1, 'https://ror.org/04e3g2b28 Biopol Paints (Czechia)'),
(58703, 'https://ror.org/04e3kdv87', 'no_lang_code', 1, 'https://ror.org/04e3kdv87 Essa (Czechia)'),
(58704, 'https://ror.org/04e3nxf09', 'no_lang_code', 1, 'https://ror.org/04e3nxf09 Triga (Czechia)'),
(58705, 'https://ror.org/04e55pr56', 'no_lang_code', 1, 'https://ror.org/04e55pr56 GEA Group (Denmark)'),
(58706, 'https://ror.org/04e94n214', 'en', 1, 'https://ror.org/04e94n214 3R Research Foundation Stiftung Forschung 3R'),
(58707, 'https://ror.org/04e9mhs65', 'no_lang_code', 1, 'https://ror.org/04e9mhs65 SolarEnvi (Czechia)'),
(58708, 'https://ror.org/04e9p5d56', 'no_lang_code', 1, 'https://ror.org/04e9p5d56 MOR Informatik (Switzerland)'),
(58709, 'https://ror.org/04ec59978', 'en', 1, 'https://ror.org/04ec59978 Ocular Research Symposia Foundation'),
(58710, 'https://ror.org/04eet1p35', 'no_lang_code', 1, 'https://ror.org/04eet1p35 Rajmont (Czechia)'),
(58711, 'https://ror.org/04ef3fk55', 'en', 1, 'https://ror.org/04ef3fk55 Institute for the Study of Totalitarian Regimes Ústav pro Studium Totalitních Režimů'),
(58712, 'https://ror.org/04ekm7c52', 'no_lang_code', 1, 'https://ror.org/04ekm7c52 C Modul (Czechia)'),
(58713, 'https://ror.org/04em0at09', 'en', 1, 'https://ror.org/04em0at09 Robert W. Woodruff Foundation'),
(58714, 'https://ror.org/04enpqf37', 'en', 1, 'https://ror.org/04enpqf37 Ambassade de Suisse aux Etats-Unis d’AmĆ©rique Embassy of Switzerland in Washington'),
(58715, 'https://ror.org/04eq4yv25', 'fr', 1, 'https://ror.org/04eq4yv25 Institut Regional Des Materiaux Avance'),
(58716, 'https://ror.org/04eq5c702', 'en', 1, 'https://ror.org/04eq5c702 Tea Research Association'),
(58717, 'https://ror.org/04eqn7j88', 'en', 1, 'https://ror.org/04eqn7j88 Swartz Foundation'),
(58718, 'https://ror.org/04etxq867', 'cs', 1, 'https://ror.org/04etxq867 Domov pro Seniory ĎƔblice'),
(58719, 'https://ror.org/04evfhz83', 'en', 1, 'https://ror.org/04evfhz83 Resources Legacy Fund'),
(58720, 'https://ror.org/04evkr214', 'no_lang_code', 1, 'https://ror.org/04evkr214 Advacam (Czechia)'),
(58721, 'https://ror.org/04ezttg26', 'no_lang_code', 1, 'https://ror.org/04ezttg26 Radom (Czechia)'),
(58722, 'https://ror.org/04f0ydx59', 'en', 1, 'https://ror.org/04f0ydx59 Bioengineering Center Š‘ŠøŠ¾ŠøŠ½Š¶ŠµŠ½ŠµŃ€ŠøŃ'),
(58723, 'https://ror.org/04f1k6x45', 'no_lang_code', 1, 'https://ror.org/04f1k6x45 Marshal Logistic (Czechia)'),
(58724, 'https://ror.org/04f1wge97', 'no_lang_code', 1, 'https://ror.org/04f1wge97 Houfek (Czechia)'),
(58725, 'https://ror.org/04f2mnw52', 'no_lang_code', 1, 'https://ror.org/04f2mnw52 Moravia Cans (Czechia)'),
(58726, 'https://ror.org/04f31ek03', 'en', 1, 'https://ror.org/04f31ek03 National Taiwan Craft Research and Development Institute å›½ē«‹å°ę¹¾å·„č‰ŗē ”ē©¶å‘å±•ē ”ē©¶ę‰€'),
(58727, 'https://ror.org/04f350r05', 'fr', 1, 'https://ror.org/04f350r05 PhagogĆØne'),
(58728, 'https://ror.org/04f3f9v34', 'no_lang_code', 1, 'https://ror.org/04f3f9v34 Tradiphar (France)'),
(58729, 'https://ror.org/04f5ks076', 'no_lang_code', 1, 'https://ror.org/04f5ks076 Japan Tobacco (Switzerland)'),
(58730, 'https://ror.org/04f5yeh75', 'no_lang_code', 1, 'https://ror.org/04f5yeh75 Rheinmetall (Czechia)'),
(58731, 'https://ror.org/04f6f3e35', 'en', 1, 'https://ror.org/04f6f3e35 Archeologia Svizzera ArchƤologie Schweiz ArchƩologie Suisse Swiss Archaeology'),
(58732, 'https://ror.org/04f776z76', 'no_lang_code', 1, 'https://ror.org/04f776z76 Ircon (Czechia)'),
(58733, 'https://ror.org/04f7gm277', 'no_lang_code', 1, 'https://ror.org/04f7gm277 Junker (Czechia)'),
(58734, 'https://ror.org/04f84b035', 'de', 1, 'https://ror.org/04f84b035 Gesundheitsdepartement des Kantons Basel-Stadt'),
(58735, 'https://ror.org/04fb46f50', 'no_lang_code', 1, 'https://ror.org/04fb46f50 VisuGen Global (United States)'),
(58736, 'https://ror.org/04fczh442', 'no_lang_code', 1, 'https://ror.org/04fczh442 Holiste (France)'),
(58737, 'https://ror.org/04fdch955', 'no_lang_code', 1, 'https://ror.org/04fdch955 Clean Energy (United States)'),
(58738, 'https://ror.org/04fe4pq10', 'no_lang_code', 1, 'https://ror.org/04fe4pq10 Cemex (Czechia)'),
(58739, 'https://ror.org/04ffchc57', 'no_lang_code', 1, 'https://ror.org/04ffchc57 Top Alulit (Czechia)'),
(58740, 'https://ror.org/04fg2k993', 'no_lang_code', 1, 'https://ror.org/04fg2k993 Biogen (Switzerland)'),
(58741, 'https://ror.org/04fhhgs91', 'en', 1, 'https://ror.org/04fhhgs91 ALERTAsia Foundation'),
(58742, 'https://ror.org/04fhmmg24', 'no_lang_code', 1, 'https://ror.org/04fhmmg24 Medtronic (Luxembourg)'),
(58743, 'https://ror.org/04fj80m50', 'de', 1, 'https://ror.org/04fj80m50 Institut für Wirtschaftsstudien Basel'),
(58744, 'https://ror.org/04fjy3t60', 'no_lang_code', 1, 'https://ror.org/04fjy3t60 Digitech Services (New Zealand)'),
(58745, 'https://ror.org/04fkj8104', 'no_lang_code', 1, 'https://ror.org/04fkj8104 Fabconworks (Czechia)'),
(58746, 'https://ror.org/04fpmef97', 'no_lang_code', 1, 'https://ror.org/04fpmef97 Kontron (Czechia)'),
(58747, 'https://ror.org/04fr05v05', 'en', 1, 'https://ror.org/04fr05v05 Carolina Farm Stewardship Association'),
(58748, 'https://ror.org/04fv3z273', 'en', 1, 'https://ror.org/04fv3z273 Research Institute of Natural and Synthetic Diamonds'),
(58749, 'https://ror.org/04fv8gj73', 'no_lang_code', 1, 'https://ror.org/04fv8gj73 European Business Enterprise (Czechia)'),
(58750, 'https://ror.org/04fw2pd53', 'en', 1, 'https://ror.org/04fw2pd53 RSF Social Finance'),
(58751, 'https://ror.org/04fwb5b39', 'no_lang_code', 1, 'https://ror.org/04fwb5b39 Net4gas (Czechia)'),
(58752, 'https://ror.org/04fwbdj26', 'cs', 1, 'https://ror.org/04fwbdj26 MěstskĆ” Nemocnice ČÔslav'),
(58753, 'https://ror.org/04fxgys42', 'no_lang_code', 1, 'https://ror.org/04fxgys42 Espiner Medical (United Kingdom)'),
(58754, 'https://ror.org/04fyf9d79', 'fr', 1, 'https://ror.org/04fyf9d79 Laboratoire Saint Martin'),
(58755, 'https://ror.org/04fyz3a12', 'de', 1, 'https://ror.org/04fyz3a12 Institut für Produktqualität'),
(58756, 'https://ror.org/04fz10a73', 'no_lang_code', 1, 'https://ror.org/04fz10a73 Medical Production (France)'),
(58757, 'https://ror.org/04g047260', 'no_lang_code', 1, 'https://ror.org/04g047260 Telstra (Australia)'),
(58758, 'https://ror.org/04g14s332', 'no_lang_code', 1, 'https://ror.org/04g14s332 Buchhofer (Switzerland)'),
(58759, 'https://ror.org/04g2fg147', 'en', 1, 'https://ror.org/04g2fg147 Ohio Water Development Authority'),
(58760, 'https://ror.org/04g335g49', 'no_lang_code', 1, 'https://ror.org/04g335g49 IRDAM (Switzerland)'),
(58761, 'https://ror.org/04g34ca09', 'no_lang_code', 1, 'https://ror.org/04g34ca09 Quinta Analytica (Czechia)'),
(58762, 'https://ror.org/04g481a83', 'no_lang_code', 1, 'https://ror.org/04g481a83 Lift Servis (Czechia)'),
(58763, 'https://ror.org/04g4ezh90', 'en', 1, 'https://ror.org/04g4ezh90 IMDEA Food Instituto IMDEA Alimentación'),
(58764, 'https://ror.org/04g5kd725', 'no_lang_code', 1, 'https://ror.org/04g5kd725 IST Medical (France)'),
(58765, 'https://ror.org/04g5kkh98', 'no_lang_code', 1, 'https://ror.org/04g5kkh98 Stelic Institute (Japan)'),
(58766, 'https://ror.org/04g6hvq78', 'no_lang_code', 1, 'https://ror.org/04g6hvq78 Agentura Pro RegionƔlnƭ Rozvoj (Czechia)'),
(58767, 'https://ror.org/04g9my117', 'en', 1, 'https://ror.org/04g9my117 Society for Analytical Chemists of Pittsburgh'),
(58768, 'https://ror.org/04g9rr142', 'en', 1, 'https://ror.org/04g9rr142 Viet Nam Government'),
(58769, 'https://ror.org/04g9yb321', 'no_lang_code', 1, 'https://ror.org/04g9yb321 West Pharmaceutical Services (United Kingdom)'),
(58770, 'https://ror.org/04gam2n80', 'en', 1, 'https://ror.org/04gam2n80 Gravure Association of the Americas'),
(58771, 'https://ror.org/04gbm5d64', 'en', 1, 'https://ror.org/04gbm5d64 Van Vliet Medical Supply'),
(58772, 'https://ror.org/04gc4rt71', 'cs', 1, 'https://ror.org/04gc4rt71 Nemocnice Prachatice'),
(58773, 'https://ror.org/04gcpmc06', 'no_lang_code', 1, 'https://ror.org/04gcpmc06 Enter (Switzerland)'),
(58774, 'https://ror.org/04gf6tr14', 'no_lang_code', 1, 'https://ror.org/04gf6tr14 Fraus Publishing (Czechia) NakladatelstvĆ­ Fraus'),
(58775, 'https://ror.org/04gffqv96', 'no_lang_code', 1, 'https://ror.org/04gffqv96 ZF Engineering (Czechia)'),
(58776, 'https://ror.org/04gk7sd03', 'no_lang_code', 1, 'https://ror.org/04gk7sd03 Benes A Lat (Czechia)'),
(58777, 'https://ror.org/04gm8yz40', 'no_lang_code', 1, 'https://ror.org/04gm8yz40 MeDiLa'),
(58778, 'https://ror.org/04gmfhf08', 'en', 1, 'https://ror.org/04gmfhf08 Applied Research Associates'),
(58779, 'https://ror.org/04gnv7g45', 'no_lang_code', 1, 'https://ror.org/04gnv7g45 VAF Instruments (Netherlands)'),
(58780, 'https://ror.org/04grwn689', 'en', 1, 'https://ror.org/04grwn689 Ufa Eye Research Institute'),
(58781, 'https://ror.org/04gzpwh55', 'no_lang_code', 1, 'https://ror.org/04gzpwh55 GGC Energy (Czechia)'),
(58782, 'https://ror.org/04h006113', 'pt', 1, 'https://ror.org/04h006113 Instituto Sapientia'),
(58783, 'https://ror.org/04h0yyj73', 'cs', 1, 'https://ror.org/04h0yyj73 VzdělĆ”vacĆ­ centrum pro veřejnou SprĆ”vu'),
(58784, 'https://ror.org/04h11pr46', 'en', 1, 'https://ror.org/04h11pr46 Belgrade Centre for Security Policy'),
(58785, 'https://ror.org/04h1j5a33', 'no_lang_code', 1, 'https://ror.org/04h1j5a33 K Profi (Czechia)'),
(58786, 'https://ror.org/04h1r6547', 'es', 1, 'https://ror.org/04h1r6547 Academia Nacional de Ciencia y TecnologĆ­a'),
(58787, 'https://ror.org/04h32es78', 'no_lang_code', 1, 'https://ror.org/04h32es78 Sinpol (Czechia)'),
(58788, 'https://ror.org/04h3a1y15', 'en', 1, 'https://ror.org/04h3a1y15 Mountain Comprehensive Health'),
(58789, 'https://ror.org/04h4t0r16', 'en', 1, 'https://ror.org/04h4t0r16 International Committee of the Red Cross'),
(58790, 'https://ror.org/04h5sdx36', 'en', 1, 'https://ror.org/04h5sdx36 International Union of Biological Sciences'),
(58791, 'https://ror.org/04h7caf58', 'it', 1, 'https://ror.org/04h7caf58 UBI Banca'),
(58792, 'https://ror.org/04h84s498', 'no_lang_code', 1, 'https://ror.org/04h84s498 Pilana (Czechia)'),
(58793, 'https://ror.org/04hb33h70', 'de', 1, 'https://ror.org/04hb33h70 Nationalstiftung für Forschung Technologie und Entwicklung'),
(58794, 'https://ror.org/04hcjez88', 'no_lang_code', 1, 'https://ror.org/04hcjez88 Novel Health Strategies (United States)'),
(58795, 'https://ror.org/04hd32h80', 'en', 1, 'https://ror.org/04hd32h80 Illinois Back Institute'),
(58796, 'https://ror.org/04hd4af29', 'no_lang_code', 1, 'https://ror.org/04hd4af29 Alcoma (Czechia)'),
(58797, 'https://ror.org/04hexsd31', 'en', 1, 'https://ror.org/04hexsd31 Geneva Finance Research Institute'),
(58798, 'https://ror.org/04hkh7617', 'no_lang_code', 1, 'https://ror.org/04hkh7617 Cyclopharma (France)'),
(58799, 'https://ror.org/04hp0zc29', 'en', 1, 'https://ror.org/04hp0zc29 Institut für Telematik Institute for Telematics'),
(58800, 'https://ror.org/04hqnrz12', 'no_lang_code', 1, 'https://ror.org/04hqnrz12 Bruker (Switzerland)'),
(58801, 'https://ror.org/04hrt9p44', 'no_lang_code', 1, 'https://ror.org/04hrt9p44 Clariant (United States)'),
(58802, 'https://ror.org/04hv8pj43', 'no_lang_code', 1, 'https://ror.org/04hv8pj43 NBD Nanotechnologies (United States)'),
(58803, 'https://ror.org/04hv9tr61', 'no_lang_code', 1, 'https://ror.org/04hv9tr61 Laboratoires PhodƩ (France)'),
(58804, 'https://ror.org/04hwhvs78', 'no_lang_code', 1, 'https://ror.org/04hwhvs78 Model Software (United States)'),
(58805, 'https://ror.org/04hww2965', 'no_lang_code', 1, 'https://ror.org/04hww2965 Atlas Copco (Belgium)'),
(58806, 'https://ror.org/04hydf024', 'no_lang_code', 1, 'https://ror.org/04hydf024 Oceaneering International (United States)'),
(58807, 'https://ror.org/04hzhm502', 'no_lang_code', 1, 'https://ror.org/04hzhm502 SyncThink (United States)'),
(58808, 'https://ror.org/04j1khh38', 'no_lang_code', 1, 'https://ror.org/04j1khh38 Ekomont Litoměřice (Czechia)'),
(58809, 'https://ror.org/04j36ys10', 'en', 1, 'https://ror.org/04j36ys10 Save the Redwoods League'),
(58810, 'https://ror.org/04j39xp17', 'en', 1, 'https://ror.org/04j39xp17 Agency for Persons with Disabilities'),
(58811, 'https://ror.org/04j3c4348', 'de', 1, 'https://ror.org/04j3c4348 Debrunner Sozialforschung und Projekte'),
(58812, 'https://ror.org/04j3tfg80', 'no_lang_code', 1, 'https://ror.org/04j3tfg80 Medicton (Czechia)'),
(58813, 'https://ror.org/04j4z1522', 'en', 1, 'https://ror.org/04j4z1522 Synthetic Rubber Research Institute named after S. V. Lebedeva ŠŠ˜Š˜ синтетического ŠŗŠ°ŃƒŃ‡ŃƒŠŗŠ° имени Š”. Š’. ЛебеГева'),
(58814, 'https://ror.org/04j5qh045', 'de', 1, 'https://ror.org/04j5qh045 Hospiz im Park'),
(58815, 'https://ror.org/04j690992', 'en', 1, 'https://ror.org/04j690992 Egypt Nanotechnology Center Ł…Ų±ŁƒŲ² Ł…ŲµŲ± Ł„Ł„Ł†Ų§Ł†Łˆ ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(58816, 'https://ror.org/04j971w37', 'no_lang_code', 1, 'https://ror.org/04j971w37 Cyclacel Pharmaceuticals (United Kingdom)'),
(58817, 'https://ror.org/04j9bkg25', 'fr', 1, 'https://ror.org/04j9bkg25 Fondation Sécurité Routière'),
(58818, 'https://ror.org/04j9fty21', 'no_lang_code', 1, 'https://ror.org/04j9fty21 Elektrometall (Czechia)'),
(58819, 'https://ror.org/04jan1235', 'no_lang_code', 1, 'https://ror.org/04jan1235 DĆ”lničnĆ­ Stavby Praha (Czechia)'),
(58820, 'https://ror.org/04jc7qd72', 'en', 1, 'https://ror.org/04jc7qd72 Serum IVF'),
(58821, 'https://ror.org/04jcq5y30', 'no_lang_code', 1, 'https://ror.org/04jcq5y30 Denas Color (Czechia)'),
(58822, 'https://ror.org/04jd3jd90', 'no_lang_code', 1, 'https://ror.org/04jd3jd90 Procter & Gamble - Rakona (Czechia)'),
(58823, 'https://ror.org/04jebr251', 'en', 1, 'https://ror.org/04jebr251 International Civil Aviation Organization'),
(58824, 'https://ror.org/04jen3t84', 'no_lang_code', 1, 'https://ror.org/04jen3t84 Dasfos (Czechia)'),
(58825, 'https://ror.org/04jfcr240', 'no_lang_code', 1, 'https://ror.org/04jfcr240 Schwery Consulting (Switzerland)'),
(58826, 'https://ror.org/04jfdra48', 'cs', 1, 'https://ror.org/04jfdra48 KlÔŔter ChotěŔov'),
(58827, 'https://ror.org/04jgqt260', 'en', 1, 'https://ror.org/04jgqt260 PSC Partners Seeking a Cure'),
(58828, 'https://ror.org/04jjxvn13', 'no_lang_code', 1, 'https://ror.org/04jjxvn13 Unmanned Experts (United States)'),
(58829, 'https://ror.org/04jkk5b46', 'no_lang_code', 1, 'https://ror.org/04jkk5b46 Tech Aid Czech Branch (Czechia)'),
(58830, 'https://ror.org/04jmfdf65', 'no_lang_code', 1, 'https://ror.org/04jmfdf65 BFP Lesy a statky TomÔŔe Bati'),
(58831, 'https://ror.org/04jmtbm12', 'en', 1, 'https://ror.org/04jmtbm12 Western Surgical Association'),
(58832, 'https://ror.org/04jmzkq74', 'en', 1, 'https://ror.org/04jmzkq74 Alzheimer Disease International'),
(58833, 'https://ror.org/04jppe152', 'no_lang_code', 1, 'https://ror.org/04jppe152 ExxonMobil (France)'),
(58834, 'https://ror.org/04jq2dg02', 'cs', 1, 'https://ror.org/04jq2dg02 ČeskÔ Asociace Steeplachase'),
(58835, 'https://ror.org/04jtx4r25', 'no_lang_code', 1, 'https://ror.org/04jtx4r25 Bogges (Czechia)'),
(58836, 'https://ror.org/04jwy1234', 'no_lang_code', 1, 'https://ror.org/04jwy1234 Shell (Japan)'),
(58837, 'https://ror.org/04k1dvq14', 'no_lang_code', 1, 'https://ror.org/04k1dvq14 INFICON (Switzerland)'),
(58838, 'https://ror.org/04k2s8g66', 'cs', 1, 'https://ror.org/04k2s8g66 VĆ­tkovickĆ” Nemocnice'),
(58839, 'https://ror.org/04k3nyd23', 'no_lang_code', 1, 'https://ror.org/04k3nyd23 InGen (France)'),
(58840, 'https://ror.org/04k417520', 'no_lang_code', 1, 'https://ror.org/04k417520 GoodMills Česko'),
(58841, 'https://ror.org/04k4tkg23', 'no_lang_code', 1, 'https://ror.org/04k4tkg23 DSK (Czechia)'),
(58842, 'https://ror.org/04k588f75', 'no_lang_code', 1, 'https://ror.org/04k588f75 Sev Litovel (Czechia)'),
(58843, 'https://ror.org/04k5pc475', 'en', 1, 'https://ror.org/04k5pc475 Schweizerische Stiftung für Edelstein-Forschung Swiss Foundation for the Research of Gemstones'),
(58844, 'https://ror.org/04k71ka82', 'no_lang_code', 1, 'https://ror.org/04k71ka82 EkoBio (Czechia)'),
(58845, 'https://ror.org/04k88ar18', 'en', 1, 'https://ror.org/04k88ar18 Taylor’s Tale'),
(58846, 'https://ror.org/04kbbt849', 'en', 1, 'https://ror.org/04kbbt849 Chemical Synthesis Lab'),
(58847, 'https://ror.org/04kdaf332', 'en', 1, 'https://ror.org/04kdaf332 Kauffman Physical Therapy'),
(58848, 'https://ror.org/04kdcbs26', 'en', 1, 'https://ror.org/04kdcbs26 Foundation for the Promotion of Applied Scientific Research and Technology in Asturias Fundación para el Fomento en Asturias de la Investigación Científica Aplicada y la Tecnología'),
(58849, 'https://ror.org/04kdvs983', 'en', 1, 'https://ror.org/04kdvs983 Archivio Segreto Vaticano Archivum Secretum Apostolicum Vaticanum Vatican Secret Archives'),
(58850, 'https://ror.org/04kdzp623', 'no_lang_code', 1, 'https://ror.org/04kdzp623 Buhmwoo Institute of Technology Research (South Korea)'),
(58851, 'https://ror.org/04ke7v690', 'no_lang_code', 1, 'https://ror.org/04ke7v690 C and D (Czechia)'),
(58852, 'https://ror.org/04khzvv84', 'en', 1, 'https://ror.org/04khzvv84 Department of Medical Assistance Services'),
(58853, 'https://ror.org/04kkpea39', 'no_lang_code', 1, 'https://ror.org/04kkpea39 ITA (Czechia)'),
(58854, 'https://ror.org/04kkref88', 'en', 1, 'https://ror.org/04kkref88 Czech ICT Alliance ČeskÔ asociace pro IT služby'),
(58855, 'https://ror.org/04kt35s46', 'en', 1, 'https://ror.org/04kt35s46 Zabaikalsky State Humanitarian and Pedagogical University Š—Š°Š±Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š“. Š§ŠµŃ€Š½Ń‹ŃˆŠµŠ²ŃŠŗŠ¾Š³Š¾'),
(58856, 'https://ror.org/04kt6g810', 'no_lang_code', 1, 'https://ror.org/04kt6g810 Shell (France)'),
(58857, 'https://ror.org/04kthcs16', 'de', 1, 'https://ror.org/04kthcs16 IFF Weimar, Institut für Fertigteiltechnik und Fertigbau Weimar'),
(58858, 'https://ror.org/04kwb2d55', 'en', 1, 'https://ror.org/04kwb2d55 Czech Proof House for Arms and Ammunition Český ĆŗÅ™ad pro zkouÅ”enĆ­ zbranĆ­ a střeliva'),
(58859, 'https://ror.org/04kwhpd73', 'no_lang_code', 1, 'https://ror.org/04kwhpd73 Fish Farm Bohemia (Czechia)'),
(58860, 'https://ror.org/04kzfca73', 'en', 1, 'https://ror.org/04kzfca73 Severns Family Foundation'),
(58861, 'https://ror.org/04m08s625', 'no_lang_code', 1, 'https://ror.org/04m08s625 Vaklima (Czechia)'),
(58862, 'https://ror.org/04m1bn868', 'en', 1, 'https://ror.org/04m1bn868 Conseil suisse de la science et de l''innovation Consiglio svizzero della scienza e dell''innovazione Schweizerischer Wissenschafts- und Innovationsrat Swiss Science and Innovation Council'),
(58863, 'https://ror.org/04m1eta66', 'en', 1, 'https://ror.org/04m1eta66 Aigine Cultural Research Center'),
(58864, 'https://ror.org/04m281x40', 'no_lang_code', 1, 'https://ror.org/04m281x40 Clairvoyant Technology (United States)'),
(58865, 'https://ror.org/04m37yt03', 'en', 1, 'https://ror.org/04m37yt03 New Mexico Farmers’ Marketing Association'),
(58866, 'https://ror.org/04m3vtn72', 'no_lang_code', 1, 'https://ror.org/04m3vtn72 Dopravnƭ podnik města ƚstƭ nad Labem (Czechia)'),
(58867, 'https://ror.org/04m453044', 'en', 1, 'https://ror.org/04m453044 VA Northwest Network'),
(58868, 'https://ror.org/04m55z708', 'no_lang_code', 1, 'https://ror.org/04m55z708 Zemos (Czechia)'),
(58869, 'https://ror.org/04m589p37', 'no_lang_code', 1, 'https://ror.org/04m589p37 Irish Life (Ireland)'),
(58870, 'https://ror.org/04m6d2w32', 'en', 1, 'https://ror.org/04m6d2w32 San Angelo Health Foundation'),
(58871, 'https://ror.org/04m7h9q42', 'no_lang_code', 1, 'https://ror.org/04m7h9q42 Limagrain (Czechia)'),
(58872, 'https://ror.org/04m7pe955', 'en', 1, 'https://ror.org/04m7pe955 Carter BloodCare'),
(58873, 'https://ror.org/04m8am631', 'no_lang_code', 1, 'https://ror.org/04m8am631 eWind Solutions (United States)'),
(58874, 'https://ror.org/04m8jz025', 'en', 1, 'https://ror.org/04m8jz025 South African Sugar Association'),
(58875, 'https://ror.org/04m9c9932', 'en', 1, 'https://ror.org/04m9c9932 Indiana Office of the Governor'),
(58876, 'https://ror.org/04maqxw13', 'no_lang_code', 1, 'https://ror.org/04maqxw13 Tratec (Czechia)'),
(58877, 'https://ror.org/04mba0b61', 'no_lang_code', 1, 'https://ror.org/04mba0b61 Structural Science Composites (United Kingdom)'),
(58878, 'https://ror.org/04mbctq18', 'de', 1, 'https://ror.org/04mbctq18 Gebert Rüf Stiftung'),
(58879, 'https://ror.org/04mc4tx89', 'no_lang_code', 1, 'https://ror.org/04mc4tx89 Saurer (Czechia)'),
(58880, 'https://ror.org/04mcr1694', 'no_lang_code', 1, 'https://ror.org/04mcr1694 Walmark (Czechia)'),
(58881, 'https://ror.org/04mdfaw94', 'no_lang_code', 1, 'https://ror.org/04mdfaw94 US Biologic (United States)'),
(58882, 'https://ror.org/04mhdyd20', 'no_lang_code', 1, 'https://ror.org/04mhdyd20 DopravnĆ­ podnik Karlovy Vary (Czechia)'),
(58883, 'https://ror.org/04mhfc493', 'no_lang_code', 1, 'https://ror.org/04mhfc493 Agroholding (Czechia)'),
(58884, 'https://ror.org/04mm9fg30', 'en', 1, 'https://ror.org/04mm9fg30 IMDEA Networks Instituto IMDEA Networks'),
(58885, 'https://ror.org/04mmbzv77', 'no_lang_code', 1, 'https://ror.org/04mmbzv77 Infineum (United States)'),
(58886, 'https://ror.org/04mmccm14', 'no_lang_code', 1, 'https://ror.org/04mmccm14 Elfe (Czechia)'),
(58887, 'https://ror.org/04mn22671', 'no_lang_code', 1, 'https://ror.org/04mn22671 HF-Czechforge (Czechia)'),
(58888, 'https://ror.org/04mphxe26', 'no_lang_code', 1, 'https://ror.org/04mphxe26 Emmi (Switzerland)'),
(58889, 'https://ror.org/04mspgk29', 'no_lang_code', 1, 'https://ror.org/04mspgk29 Free Energy (Slovakia)'),
(58890, 'https://ror.org/04mt41a04', 'no_lang_code', 1, 'https://ror.org/04mt41a04 TechTest (Czechia)'),
(58891, 'https://ror.org/04mtx5741', 'no_lang_code', 1, 'https://ror.org/04mtx5741 Pars Nova (Czechia)'),
(58892, 'https://ror.org/04mwbja62', 'en', 1, 'https://ror.org/04mwbja62 Guangzhou Special Pressure Equipment Testing and Research Institute å¹æå·žē‰¹ē§ę‰æåŽ‹č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(58893, 'https://ror.org/04n2a2465', 'no_lang_code', 1, 'https://ror.org/04n2a2465 Medihope (Czechia)'),
(58894, 'https://ror.org/04n2d2p10', 'no_lang_code', 1, 'https://ror.org/04n2d2p10 Amer Sports (Finland)'),
(58895, 'https://ror.org/04n3be660', 'no_lang_code', 1, 'https://ror.org/04n3be660 GEO Partner (Switzerland)'),
(58896, 'https://ror.org/04n3fbh55', 'no_lang_code', 1, 'https://ror.org/04n3fbh55 JTEKT (France)'),
(58897, 'https://ror.org/04n5x9175', 'en', 1, 'https://ror.org/04n5x9175 Virginia Hodgkins Somers Foundation'),
(58898, 'https://ror.org/04n96xc27', 'en', 1, 'https://ror.org/04n96xc27 Rural Women New Zealand'),
(58899, 'https://ror.org/04na7ry54', 'no_lang_code', 1, 'https://ror.org/04na7ry54 Michell Instruments (United Kingdom)'),
(58900, 'https://ror.org/04nd4kk51', 'en', 1, 'https://ror.org/04nd4kk51 Ceramic Synthesis and Functionalization Laboratory Laboratoire de Synthèse et Fonctionnalisation des Céramiques'),
(58901, 'https://ror.org/04ndcjq03', 'en', 1, 'https://ror.org/04ndcjq03 Shanghai Nanotechnology Promotion Center äøŠęµ·åø‚ēŗ³ē±³ē§‘ęŠ€äøŽäŗ§äøšå‘å±•äæƒčæ›äø­åæƒ'),
(58902, 'https://ror.org/04ne34794', 'en', 1, 'https://ror.org/04ne34794 Ministry of Health ΄πουργείο ΄γείας'),
(58903, 'https://ror.org/04nefpm69', 'no_lang_code', 1, 'https://ror.org/04nefpm69 Esto Cheb (Czechia)'),
(58904, 'https://ror.org/04nfvby78', 'en', 1, 'https://ror.org/04nfvby78 World Health Organization Regional Office for the Western Pacific'),
(58905, 'https://ror.org/04ngy9w38', 'no_lang_code', 1, 'https://ror.org/04ngy9w38 Estcom (Czechia)'),
(58906, 'https://ror.org/04nh5he21', 'no_lang_code', 1, 'https://ror.org/04nh5he21 MaDeX (Czechia)'),
(58907, 'https://ror.org/04nht1525', 'no_lang_code', 1, 'https://ror.org/04nht1525 Sampark'),
(58908, 'https://ror.org/04nknev17', 'no_lang_code', 1, 'https://ror.org/04nknev17 Semix Pluso (Czechia)'),
(58909, 'https://ror.org/04nq9y819', 'en', 1, 'https://ror.org/04nq9y819 Comic Relief'),
(58910, 'https://ror.org/04nqfdt43', 'sv', 1, 'https://ror.org/04nqfdt43 Stiftelsen Sunnerdahls Handikappfond'),
(58911, 'https://ror.org/04nr3tm35', 'no_lang_code', 1, 'https://ror.org/04nr3tm35 Provisco CS (Czechia)'),
(58912, 'https://ror.org/04ntbmy72', 'no_lang_code', 1, 'https://ror.org/04ntbmy72 ANC Components (Czechia)'),
(58913, 'https://ror.org/04nthjy68', 'no_lang_code', 1, 'https://ror.org/04nthjy68 Jimi (Czechia)'),
(58914, 'https://ror.org/04nwny503', 'no_lang_code', 1, 'https://ror.org/04nwny503 Explat (Czechia)'),
(58915, 'https://ror.org/04nxqr324', 'no_lang_code', 1, 'https://ror.org/04nxqr324 Gilson (France)'),
(58916, 'https://ror.org/04p055k28', 'no_lang_code', 1, 'https://ror.org/04p055k28 Prvnƭ SignƔlnƭ (Czechia)'),
(58917, 'https://ror.org/04p4avd56', 'fr', 1, 'https://ror.org/04p4avd56 Société Académique de Genève'),
(58918, 'https://ror.org/04p4qmn53', 'no_lang_code', 1, 'https://ror.org/04p4qmn53 Suiselectra Consulting Engineers (Switzerland) Suiselectra Ingenieurunternehmung AG'),
(58919, 'https://ror.org/04p76s709', 'no_lang_code', 1, 'https://ror.org/04p76s709 RPG Life Sciences (India)'),
(58920, 'https://ror.org/04p78q286', 'no_lang_code', 1, 'https://ror.org/04p78q286 Colsys (Czechia)'),
(58921, 'https://ror.org/04p972q78', 'no_lang_code', 1, 'https://ror.org/04p972q78 Procter & Gamble (France)'),
(58922, 'https://ror.org/04pcraj31', 'en', 1, 'https://ror.org/04pcraj31 Museum of the Bohemian Paradise in Turnov Muzeum ČeskĆ©ho rĆ”je v Turnově'),
(58923, 'https://ror.org/04pdw9n09', 'en', 1, 'https://ror.org/04pdw9n09 Medipolis Medical Research Institute'),
(58924, 'https://ror.org/04pg34p42', 'no_lang_code', 1, 'https://ror.org/04pg34p42 IMS-DraŔnar (Czechia)'),
(58925, 'https://ror.org/04pgeyv17', 'en', 1, 'https://ror.org/04pgeyv17 Weeden Foundation'),
(58926, 'https://ror.org/04pgpfa18', 'no_lang_code', 1, 'https://ror.org/04pgpfa18 Mediware (Czechia)'),
(58927, 'https://ror.org/04ph02j10', 'en', 1, 'https://ror.org/04ph02j10 Asai Germanium Research Institute ę Ŗå¼ä¼šē¤¾ęµ…äŗ•ć‚²ćƒ«ćƒžćƒ‹ć‚¦ćƒ ē ”ē©¶ę‰€'),
(58928, 'https://ror.org/04pjk3w61', 'no_lang_code', 1, 'https://ror.org/04pjk3w61 Can Superconductors (Czechia)'),
(58929, 'https://ror.org/04pkthn83', 'no_lang_code', 1, 'https://ror.org/04pkthn83 Bech Akku Power Batteries (Czechia)'),
(58930, 'https://ror.org/04pm9rq79', 'no_lang_code', 1, 'https://ror.org/04pm9rq79 Ceres Imaging (United States)'),
(58931, 'https://ror.org/04pn65m27', 'no_lang_code', 1, 'https://ror.org/04pn65m27 Eltopia Communications (United States)'),
(58932, 'https://ror.org/04pnnsh51', 'no_lang_code', 1, 'https://ror.org/04pnnsh51 Advanced Mask Technology Center (Germany)'),
(58933, 'https://ror.org/04pq1cd03', 'en', 1, 'https://ror.org/04pq1cd03 Central Region Agricultural Research Center'),
(58934, 'https://ror.org/04prad579', 'no_lang_code', 1, 'https://ror.org/04prad579 Karel ŘehÔk (Czechia)'),
(58935, 'https://ror.org/04prq1595', 'en', 1, 'https://ror.org/04prq1595 National Scientific Center "Institute of Experimental and Clinical Veterinary Medicine" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠµŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Ń— і клінічної ветеринарної меГицини»'),
(58936, 'https://ror.org/04pxnww65', 'no_lang_code', 1, 'https://ror.org/04pxnww65 TriloByte Statistical Software (Czechia)'),
(58937, 'https://ror.org/04pyjfp28', 'no_lang_code', 1, 'https://ror.org/04pyjfp28 Watrex (Czechia)'),
(58938, 'https://ror.org/04pz9s646', 'en', 1, 'https://ror.org/04pz9s646 Montachusett Opportunity Council'),
(58939, 'https://ror.org/04pzwgb48', 'no_lang_code', 1, 'https://ror.org/04pzwgb48 Fapros družstvo (Czechia)'),
(58940, 'https://ror.org/04q0q2e16', 'en', 1, 'https://ror.org/04q0q2e16 Gateway Greening'),
(58941, 'https://ror.org/04q5m8a14', 'no_lang_code', 1, 'https://ror.org/04q5m8a14 Tecan (Switzerland)'),
(58942, 'https://ror.org/04q6jhb10', 'no_lang_code', 1, 'https://ror.org/04q6jhb10 Signal Projekt (Czechia)'),
(58943, 'https://ror.org/04q709a65', 'no_lang_code', 1, 'https://ror.org/04q709a65 Metabo (Switzerland)'),
(58944, 'https://ror.org/04q79jy11', 'no_lang_code', 1, 'https://ror.org/04q79jy11 Fluxamat (Czechia)'),
(58945, 'https://ror.org/04q7nkm38', 'en', 1, 'https://ror.org/04q7nkm38 Institute for Independent Studies Zürich'),
(58946, 'https://ror.org/04q8wkj31', 'en', 1, 'https://ror.org/04q8wkj31 Vietnam Academy of Agricultural Sciences Viện Khoa hį»c NĆ“ng nghiệp Việt Nam'),
(58947, 'https://ror.org/04q9gyp88', 'no_lang_code', 1, 'https://ror.org/04q9gyp88 Mesit (Czechia)'),
(58948, 'https://ror.org/04qb2wt25', 'de', 1, 'https://ror.org/04qb2wt25 Gesundheits- und Fürsorgedirektion des Kantons Bern'),
(58949, 'https://ror.org/04qb3yt59', 'it', 1, 'https://ror.org/04qb3yt59 Fondazione CRT'),
(58950, 'https://ror.org/04qd3ka10', 'en', 1, 'https://ror.org/04qd3ka10 Womens Fund of Central Ohio'),
(58951, 'https://ror.org/04qdg5539', 'de', 1, 'https://ror.org/04qdg5539 Kantonsschule am Burggraben'),
(58952, 'https://ror.org/04qe38n20', 'en', 1, 'https://ror.org/04qe38n20 World Horse Welfare'),
(58953, 'https://ror.org/04qes5008', 'no_lang_code', 1, 'https://ror.org/04qes5008 Stony Creek Colors (United States)'),
(58954, 'https://ror.org/04qfp7s87', 'en', 1, 'https://ror.org/04qfp7s87 Rosenberg Foundation'),
(58955, 'https://ror.org/04qq90y81', 'en', 1, 'https://ror.org/04qq90y81 PLUS Foundation'),
(58956, 'https://ror.org/04qr72260', 'no_lang_code', 1, 'https://ror.org/04qr72260 Gateway Group (India)'),
(58957, 'https://ror.org/04qt5ez29', 'no_lang_code', 1, 'https://ror.org/04qt5ez29 Lihovar Lžín (Czechia)'),
(58958, 'https://ror.org/04qtg7h28', 'fr', 1, 'https://ror.org/04qtg7h28 Centre RƩgional d''Etudes des Populations Alpines'),
(58959, 'https://ror.org/04qv6zr56', 'no_lang_code', 1, 'https://ror.org/04qv6zr56 Ireks Enzyma (Czechia)'),
(58960, 'https://ror.org/04qwja739', 'no_lang_code', 1, 'https://ror.org/04qwja739 Merit Medical (France)'),
(58961, 'https://ror.org/04qy50a03', 'en', 1, 'https://ror.org/04qy50a03 Friedrich Naumann Foundation Friedrich-Naumann-Stiftung für die Freiheit'),
(58962, 'https://ror.org/04qyktt41', 'no_lang_code', 1, 'https://ror.org/04qyktt41 Datacon (Czechia)'),
(58963, 'https://ror.org/04qyvt278', 'no_lang_code', 1, 'https://ror.org/04qyvt278 Eclair (France)'),
(58964, 'https://ror.org/04r05zv91', 'no_lang_code', 1, 'https://ror.org/04r05zv91 Osvětlenƭ Černoch (Czechia)'),
(58965, 'https://ror.org/04r0akj72', 'en', 1, 'https://ror.org/04r0akj72 Quixote Foundation'),
(58966, 'https://ror.org/04r0c8r10', 'en', 1, 'https://ror.org/04r0c8r10 Ohio Department of Aging'),
(58967, 'https://ror.org/04r0vb371', 'no_lang_code', 1, 'https://ror.org/04r0vb371 Asilomar Bio (United States)'),
(58968, 'https://ror.org/04r1srr11', 'en', 1, 'https://ror.org/04r1srr11 Institut Evaluací a SociÔlních Analýz Institute for Evaluation and Social Analyses'),
(58969, 'https://ror.org/04r287r86', 'no_lang_code', 1, 'https://ror.org/04r287r86 Provod (Czechia)'),
(58970, 'https://ror.org/04r3hry39', 'de', 1, 'https://ror.org/04r3hry39 Bündner Kunstmuseum'),
(58971, 'https://ror.org/04r6r5p42', 'az', 1, 'https://ror.org/04r6r5p42 Neft Kimya Prosesləri Institutu'),
(58972, 'https://ror.org/04r6z2s60', 'no_lang_code', 1, 'https://ror.org/04r6z2s60 Dinel (Czechia)'),
(58973, 'https://ror.org/04r70jx96', 'no_lang_code', 1, 'https://ror.org/04r70jx96 Windcall Manufacturing (United States)'),
(58974, 'https://ror.org/04r8jnk80', 'no_lang_code', 1, 'https://ror.org/04r8jnk80 Sloveč (Czechia)'),
(58975, 'https://ror.org/04ra91131', 'es', 1, 'https://ror.org/04ra91131 Fundación Ramón Areces'),
(58976, 'https://ror.org/04rahxj70', 'en', 1, 'https://ror.org/04rahxj70 Arkansas Land and Community Development'),
(58977, 'https://ror.org/04rcgpb63', 'no_lang_code', 1, 'https://ror.org/04rcgpb63 Procter & Gamble (Canada)'),
(58978, 'https://ror.org/04rcz6b42', 'en', 1, 'https://ror.org/04rcz6b42 Finnish Society of Sciences and Letters Finska Vetenskaps-Societeten Suomen Tiedeseura'),
(58979, 'https://ror.org/04re16484', 'en', 1, 'https://ror.org/04re16484 Farmer Veteran Coalition'),
(58980, 'https://ror.org/04reg7v11', 'fr', 1, 'https://ror.org/04reg7v11 Conseil DƩpartemental de la Haute-Savoie'),
(58981, 'https://ror.org/04rhps755', 'es', 1, 'https://ror.org/04rhps755 IMDEA Water, Instituto IMDEA Agua'),
(58982, 'https://ror.org/04rjezz78', 'no_lang_code', 1, 'https://ror.org/04rjezz78 Samumed (United States)'),
(58983, 'https://ror.org/04rkxhv28', 'no_lang_code', 1, 'https://ror.org/04rkxhv28 Arysta LifeScience (France)'),
(58984, 'https://ror.org/04rmevh30', 'en', 1, 'https://ror.org/04rmevh30 Stiftelsen HƤstforskning Swedish Norwegian Foundation for Equine Research'),
(58985, 'https://ror.org/04rnwed46', 'en', 1, 'https://ror.org/04rnwed46 Environmental Earth Sciences'),
(58986, 'https://ror.org/04rpy7390', 'no_lang_code', 1, 'https://ror.org/04rpy7390 Groupe Clarins (France)'),
(58987, 'https://ror.org/04rxa0k64', 'it', 1, 'https://ror.org/04rxa0k64 Lega Ticinese Contro il Reumatismo'),
(58988, 'https://ror.org/04rxsdm69', 'no_lang_code', 1, 'https://ror.org/04rxsdm69 Microsynth (Switzerland)'),
(58989, 'https://ror.org/04rz1y359', 'no_lang_code', 1, 'https://ror.org/04rz1y359 Integra LifeSciences (France)'),
(58990, 'https://ror.org/04s1kgp90', 'es', 1, 'https://ror.org/04s1kgp90 Clinica Santa Maria'),
(58991, 'https://ror.org/04s2v1839', 'no_lang_code', 1, 'https://ror.org/04s2v1839 Elisabeth Pharmacon (Czechia)'),
(58992, 'https://ror.org/04s36mr71', 'en', 1, 'https://ror.org/04s36mr71 Northeast Maritime Institute'),
(58993, 'https://ror.org/04s3f1024', 'de', 1, 'https://ror.org/04s3f1024 Staatliches Weinbauinstitut Freiburg'),
(58994, 'https://ror.org/04s5ej408', 'en', 1, 'https://ror.org/04s5ej408 Kitasato University East Hospital åŒ—é‡Œå¤§å­¦ę±ē—…é™¢'),
(58995, 'https://ror.org/04s5w2j10', 'en', 1, 'https://ror.org/04s5w2j10 Trust for Conservation Innovation'),
(58996, 'https://ror.org/04s64z252', 'en', 1, 'https://ror.org/04s64z252 Helmholtz Alliance Imaging and Curing Environmental Metabolic Diseases'),
(58997, 'https://ror.org/04s68af23', 'en', 1, 'https://ror.org/04s68af23 Green River Community College'),
(58998, 'https://ror.org/04s6a9w47', 'no_lang_code', 1, 'https://ror.org/04s6a9w47 Newell Brands (France)'),
(58999, 'https://ror.org/04s6h1250', 'no_lang_code', 1, 'https://ror.org/04s6h1250 JDA Software (United States)'),
(59000, 'https://ror.org/04s9b1414', 'no_lang_code', 1, 'https://ror.org/04s9b1414 Sudop Group (Czechia)'),
(59001, 'https://ror.org/04saem874', 'de', 1, 'https://ror.org/04saem874 Kloster St. Johann Müstair'),
(59002, 'https://ror.org/04sevde02', 'cs', 1, 'https://ror.org/04sevde02 Českomoravský Svaz MlékÔrenský'),
(59003, 'https://ror.org/04sgcdd21', 'no_lang_code', 1, 'https://ror.org/04sgcdd21 Accelerated Ag Technologies (United States)'),
(59004, 'https://ror.org/04sgvk352', 'en', 1, 'https://ror.org/04sgvk352 Centro de Salud Miguel de Cervantes Miguel de Cervantes Health Care Centre'),
(59005, 'https://ror.org/04sh8kd50', 'cs', 1, 'https://ror.org/04sh8kd50 DopravnĆ­ Podnik Hlavniho Mesta Prahy'),
(59006, 'https://ror.org/04sqxkj61', 'no_lang_code', 1, 'https://ror.org/04sqxkj61 Business Innovation Center (Bulgaria)'),
(59007, 'https://ror.org/04sr19j82', 'no_lang_code', 1, 'https://ror.org/04sr19j82 Lasvit (Czechia)'),
(59008, 'https://ror.org/04srvct20', 'en', 1, 'https://ror.org/04srvct20 Ophthalmos Eye Research & Therapeutic Institute'),
(59009, 'https://ror.org/04swm6c48', 'en', 1, 'https://ror.org/04swm6c48 Z.Smith Reynolds Foundation'),
(59010, 'https://ror.org/04sygbn06', 'en', 1, 'https://ror.org/04sygbn06 CEP America'),
(59011, 'https://ror.org/04sz6yt35', 'en', 1, 'https://ror.org/04sz6yt35 Level Playing Field Institute'),
(59012, 'https://ror.org/04szn7861', 'no_lang_code', 1, 'https://ror.org/04szn7861 ENVI (Czechia)'),
(59013, 'https://ror.org/04t01vf56', 'en', 1, 'https://ror.org/04t01vf56 Gaia Medical Institute'),
(59014, 'https://ror.org/04t21k589', 'no_lang_code', 1, 'https://ror.org/04t21k589 Nexira (France)'),
(59015, 'https://ror.org/04t2jbs80', 'no_lang_code', 1, 'https://ror.org/04t2jbs80 Dionea (Switzerland)'),
(59016, 'https://ror.org/04t4d1t15', 'no_lang_code', 1, 'https://ror.org/04t4d1t15 Cardion (Czechia)'),
(59017, 'https://ror.org/04t5d1438', 'en', 1, 'https://ror.org/04t5d1438 Unitectra'),
(59018, 'https://ror.org/04t5tgf48', 'no_lang_code', 1, 'https://ror.org/04t5tgf48 Conte Energy (Czechia)'),
(59019, 'https://ror.org/04t6d6d70', 'no_lang_code', 1, 'https://ror.org/04t6d6d70 BASF (Czechia)'),
(59020, 'https://ror.org/04t81kd98', 'en', 1, 'https://ror.org/04t81kd98 Vetiver Network International'),
(59021, 'https://ror.org/04t8pft48', 'no_lang_code', 1, 'https://ror.org/04t8pft48 Nanopolis Suzhou (China) č‹å·žēŗ³ē±³ē§‘ęŠ€å‘å±•ęœ‰é™å…¬åø'),
(59022, 'https://ror.org/04t8qhn97', 'no_lang_code', 1, 'https://ror.org/04t8qhn97 Integra LifeSciences (United Kingdom)'),
(59023, 'https://ror.org/04ta9pt38', 'en', 1, 'https://ror.org/04ta9pt38 Women''s Foundation of Colorado'),
(59024, 'https://ror.org/04tac1482', 'en', 1, 'https://ror.org/04tac1482 Pittsburgh Supercomputing Center'),
(59025, 'https://ror.org/04tb15285', 'no_lang_code', 1, 'https://ror.org/04tb15285 Laboratoire France BƩbƩ Nutrition (France)'),
(59026, 'https://ror.org/04tdwrq43', 'en', 1, 'https://ror.org/04tdwrq43 Bethesda Spital'),
(59027, 'https://ror.org/04tepr653', 'no_lang_code', 1, 'https://ror.org/04tepr653 Until There’s A Cure'),
(59028, 'https://ror.org/04tfkjn57', 'no_lang_code', 1, 'https://ror.org/04tfkjn57 Wacker (United States)'),
(59029, 'https://ror.org/04tj33k86', 'en', 1, 'https://ror.org/04tj33k86 Church of the Merciful Sisters of Sts. Karel Boromejský'),
(59030, 'https://ror.org/04tj9xe28', 'no_lang_code', 1, 'https://ror.org/04tj9xe28 Laphal (France)'),
(59031, 'https://ror.org/04tn1tx80', 'fr', 1, 'https://ror.org/04tn1tx80 Museum of Art and History Musée d''Art et d''Histoire de Neuchâtel'),
(59032, 'https://ror.org/04trax135', 'en', 1, 'https://ror.org/04trax135 Sophia Foundation for Children'),
(59033, 'https://ror.org/04trkh314', 'no_lang_code', 1, 'https://ror.org/04trkh314 Rigetti Computing (United States)'),
(59034, 'https://ror.org/04ts80387', 'en', 1, 'https://ror.org/04ts80387 Project ALS'),
(59035, 'https://ror.org/04tshyq54', 'en', 1, 'https://ror.org/04tshyq54 Deutsches Institut für Zell und Gewebeersatz German Institute for Cell and Tissue Replacement'),
(59036, 'https://ror.org/04tsrda09', 'de', 1, 'https://ror.org/04tsrda09 GeschƤftsstelle SVIAL'),
(59037, 'https://ror.org/04ttxs071', 'en', 1, 'https://ror.org/04ttxs071 Berlin Zoological Garden Zoologischer Garten Berlin'),
(59038, 'https://ror.org/04tv6wz75', 'en', 1, 'https://ror.org/04tv6wz75 Czech Council on Foreign Relations Rada pro mezinƔrodnƭ vztahy'),
(59039, 'https://ror.org/04tvb5e69', 'en', 1, 'https://ror.org/04tvb5e69 Wolfe’s Neck Farm'),
(59040, 'https://ror.org/04tvj9g97', 'no_lang_code', 1, 'https://ror.org/04tvj9g97 GKN (France)'),
(59041, 'https://ror.org/04tx4kg58', 'en', 1, 'https://ror.org/04tx4kg58 Northwest Scientific Association'),
(59042, 'https://ror.org/04v4gsn35', 'no_lang_code', 1, 'https://ror.org/04v4gsn35 Allyke (United States)'),
(59043, 'https://ror.org/04v51kr79', 'en', 1, 'https://ror.org/04v51kr79 Ola Grimsby Institute'),
(59044, 'https://ror.org/04v75js20', 'no_lang_code', 1, 'https://ror.org/04v75js20 Noventis (Czechia)'),
(59045, 'https://ror.org/04v87ev31', 'en', 1, 'https://ror.org/04v87ev31 Institute of Occupational Medicine'),
(59046, 'https://ror.org/04v8d4779', 'es', 1, 'https://ror.org/04v8d4779 Fundación para la Innovación y la Prospectiva en Salud en España'),
(59047, 'https://ror.org/04ve9h794', 'no_lang_code', 1, 'https://ror.org/04ve9h794 Bernard (Czechia)'),
(59048, 'https://ror.org/04vh5z648', 'en', 1, 'https://ror.org/04vh5z648 Center for Interdisciplinary Studies of Molecular Interactions'),
(59049, 'https://ror.org/04vhskt34', 'no_lang_code', 1, 'https://ror.org/04vhskt34 Patria KobylĆ­ (Czechia)'),
(59050, 'https://ror.org/04vhxp922', 'en', 1, 'https://ror.org/04vhxp922 Sandip Foundation'),
(59051, 'https://ror.org/04vkaw234', 'no_lang_code', 1, 'https://ror.org/04vkaw234 Imatech (Czechia)'),
(59052, 'https://ror.org/04vmsv961', 'cs', 1, 'https://ror.org/04vmsv961 ČeskÔ MembrÔnovÔ Platforma'),
(59053, 'https://ror.org/04vmvjq74', 'de', 1, 'https://ror.org/04vmvjq74 Historisches Museum Olten'),
(59054, 'https://ror.org/04vn0m402', 'no_lang_code', 1, 'https://ror.org/04vn0m402 Fytovita (Czechia)'),
(59055, 'https://ror.org/04vn8dh18', 'no_lang_code', 1, 'https://ror.org/04vn8dh18 K2pharm (Czechia)'),
(59056, 'https://ror.org/04vnqft85', 'no_lang_code', 1, 'https://ror.org/04vnqft85 Kapa ZlĆ­n (Czechia)'),
(59057, 'https://ror.org/04vppzx17', 'no_lang_code', 1, 'https://ror.org/04vppzx17 Conversant (Luxembourg)'),
(59058, 'https://ror.org/04vqztg05', 'en', 1, 'https://ror.org/04vqztg05 North South Institute'),
(59059, 'https://ror.org/04vrse873', 'no_lang_code', 1, 'https://ror.org/04vrse873 Grafted Growers (United States)'),
(59060, 'https://ror.org/04vtyaw83', 'no_lang_code', 1, 'https://ror.org/04vtyaw83 GEOline (Czechia)'),
(59061, 'https://ror.org/04vvq5g41', 'no_lang_code', 1, 'https://ror.org/04vvq5g41 KR Důlní služby (Czechia)'),
(59062, 'https://ror.org/04w0pnx62', 'cs', 1, 'https://ror.org/04w0pnx62 Nemocnice Milosrdných bratří'),
(59063, 'https://ror.org/04w2f6891', 'no_lang_code', 1, 'https://ror.org/04w2f6891 Heidenhain (Slovakia)'),
(59064, 'https://ror.org/04w3ts152', 'no_lang_code', 1, 'https://ror.org/04w3ts152 Adidas (United Kingdom)'),
(59065, 'https://ror.org/04w68cb80', 'en', 1, 'https://ror.org/04w68cb80 Intersectoral Research and Technology Complex Eye Microsurgery ŠœŠµŠ¶Š¾Ń‚Ń€Š°ŃŠ»ŠµŠ²Š¾Š¹ Š½Š°ŃƒŃ‡Š½Š¾-технический комплекс Ā«ŠœŠøŠŗŃ€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ глаза»'),
(59066, 'https://ror.org/04w6hdb78', 'no_lang_code', 1, 'https://ror.org/04w6hdb78 Starmon (Czechia)'),
(59067, 'https://ror.org/04w7sf714', 'no_lang_code', 1, 'https://ror.org/04w7sf714 Instruments MƩdecine VƩtƩrinaire (France)'),
(59068, 'https://ror.org/04w82sp73', 'fr', 1, 'https://ror.org/04w82sp73 SecrƩtariat GƩnƩral pour les Affaires RƩgionales'),
(59069, 'https://ror.org/04w9zgk85', 'de', 1, 'https://ror.org/04w9zgk85 Paul Sacher Stiftung'),
(59070, 'https://ror.org/04waxaa96', 'en', 1, 'https://ror.org/04waxaa96 Gemini Eye Clinic Očnƭ klinika Gemini'),
(59071, 'https://ror.org/04waxbg79', 'en', 1, 'https://ror.org/04waxbg79 Fondation Suisse pour la Recherche en Microtechnique Swiss Foundation for Research in Microtechnology'),
(59072, 'https://ror.org/04waywn16', 'pt', 1, 'https://ror.org/04waywn16 Gabinete de Relações Internacionais da Ciência e do Ensino Superior'),
(59073, 'https://ror.org/04we3tx21', 'en', 1, 'https://ror.org/04we3tx21 Institute of Geology of the Karelian Research Center Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии ŠšŠ°Ń€ŠŠ¦ Š ŠŠ'),
(59074, 'https://ror.org/04wf28y22', 'no_lang_code', 1, 'https://ror.org/04wf28y22 Techmix (Czechia)'),
(59075, 'https://ror.org/04wf7sx08', 'da', 1, 'https://ror.org/04wf7sx08 Eva og Henry FrƦnkels Mindefond'),
(59076, 'https://ror.org/04whxwq65', 'no_lang_code', 1, 'https://ror.org/04whxwq65 Sonoco (United Kingdom)'),
(59077, 'https://ror.org/04wjdbs69', 'no_lang_code', 1, 'https://ror.org/04wjdbs69 Czech Industry Group (Czechia)'),
(59078, 'https://ror.org/04wjmv675', 'de', 1, 'https://ror.org/04wjmv675 Schweizerische Gesellschaft für Volkskunde'),
(59079, 'https://ror.org/04wjnw514', 'en', 1, 'https://ror.org/04wjnw514 Kona Pacific Public Charter School'),
(59080, 'https://ror.org/04wk0vx02', 'no_lang_code', 1, 'https://ror.org/04wk0vx02 Aveko Servomotory (Czechia)'),
(59081, 'https://ror.org/04wk76v17', 'cs', 1, 'https://ror.org/04wk76v17 ACCENDO – Centrum pro vědu a výzkum'),
(59082, 'https://ror.org/04wn7zs59', 'no_lang_code', 1, 'https://ror.org/04wn7zs59 Allibert Medical (France)'),
(59083, 'https://ror.org/04wq40h64', 'no_lang_code', 1, 'https://ror.org/04wq40h64 Orange Controls (Czechia)'),
(59084, 'https://ror.org/04wrbmd83', 'no_lang_code', 1, 'https://ror.org/04wrbmd83 Vanessa air (Czechia)'),
(59085, 'https://ror.org/04wsg8a03', 'no_lang_code', 1, 'https://ror.org/04wsg8a03 U-24 (Czechia)'),
(59086, 'https://ror.org/04wsk8226', 'no_lang_code', 1, 'https://ror.org/04wsk8226 Idea-Envi (Czechia)'),
(59087, 'https://ror.org/04wsv7966', 'en', 1, 'https://ror.org/04wsv7966 Center for Vascular Biology Research'),
(59088, 'https://ror.org/04wwp6r22', 'de', 1, 'https://ror.org/04wwp6r22 BG Klinik Tübingen'),
(59089, 'https://ror.org/04wwsbd59', 'en', 1, 'https://ror.org/04wwsbd59 ITRI International'),
(59090, 'https://ror.org/04wxm6g36', 'en', 1, 'https://ror.org/04wxm6g36 Ministry of Defense ×žÖ“×©Ö°×‚×ØÖ·×“ ×”Ö·×‘Ö“Ö¼×˜ÖøÖ¼×—×•Ö¹×Ÿ'),
(59091, 'https://ror.org/04wxr5s39', 'no_lang_code', 1, 'https://ror.org/04wxr5s39 MIA Studio (Czechia)'),
(59092, 'https://ror.org/04wz85195', 'de', 1, 'https://ror.org/04wz85195 Karl Jaspers Stiftung'),
(59093, 'https://ror.org/04x0p4p48', 'no_lang_code', 1, 'https://ror.org/04x0p4p48 Abbott (Belgium)'),
(59094, 'https://ror.org/04x17ze61', 'en', 1, 'https://ror.org/04x17ze61 Raymond J. and Mary C. Reisert Foundation'),
(59095, 'https://ror.org/04x4bjr17', 'de', 1, 'https://ror.org/04x4bjr17 Universitätsklinik für Diabetologie, Endokrinologie, Ernährungsmedizin & Metabolismus'),
(59096, 'https://ror.org/04x4bx294', 'no_lang_code', 1, 'https://ror.org/04x4bx294 Lach-Ner (Czechia)'),
(59097, 'https://ror.org/04x6n5698', 'en', 1, 'https://ror.org/04x6n5698 Raptor Research Foundation'),
(59098, 'https://ror.org/04x7s4297', 'no_lang_code', 1, 'https://ror.org/04x7s4297 Chart Industries (United States)'),
(59099, 'https://ror.org/04x99ga69', 'no_lang_code', 1, 'https://ror.org/04x99ga69 Čepro (Czechia)'),
(59100, 'https://ror.org/04x9v7g36', 'no_lang_code', 1, 'https://ror.org/04x9v7g36 Scripps (United States)'),
(59101, 'https://ror.org/04xam4r33', 'en', 1, 'https://ror.org/04xam4r33 Institute for Social and Environmental Research-Nepal'),
(59102, 'https://ror.org/04xatxw44', 'no_lang_code', 1, 'https://ror.org/04xatxw44 Aquion (Czechia)'),
(59103, 'https://ror.org/04xcgfz03', 'no_lang_code', 1, 'https://ror.org/04xcgfz03 MME Legal (Switzerland)'),
(59104, 'https://ror.org/04xctba91', 'no_lang_code', 1, 'https://ror.org/04xctba91 Symatese (France)'),
(59105, 'https://ror.org/04xg8v068', 'no_lang_code', 1, 'https://ror.org/04xg8v068 S.A.M. Metalizačnƭ společnost'),
(59106, 'https://ror.org/04xh47750', 'no_lang_code', 1, 'https://ror.org/04xh47750 Laboratories Synth Innove (France)'),
(59107, 'https://ror.org/04xhmxk63', 'no_lang_code', 1, 'https://ror.org/04xhmxk63 Ruml (Czechia)'),
(59108, 'https://ror.org/04xjjma71', 'en', 1, 'https://ror.org/04xjjma71 Institute of Chemistry, Academia Sinica'),
(59109, 'https://ror.org/04xks6074', 'no_lang_code', 1, 'https://ror.org/04xks6074 Skrivanek (Czechia)'),
(59110, 'https://ror.org/04xqmah83', 'en', 1, 'https://ror.org/04xqmah83 Scientific Research Institute of Steel ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š”Š¢ŠŠ›Š˜'),
(59111, 'https://ror.org/04xrc4v39', 'no_lang_code', 1, 'https://ror.org/04xrc4v39 Bioxis Pharmaceuticals (France)'),
(59112, 'https://ror.org/04xs06471', 'no_lang_code', 1, 'https://ror.org/04xs06471 AgroKonzulta Žamberk (Czechia)'),
(59113, 'https://ror.org/04xsq5430', 'no_lang_code', 1, 'https://ror.org/04xsq5430 Sotec MƩdical (France)'),
(59114, 'https://ror.org/04xtzf071', 'fr', 1, 'https://ror.org/04xtzf071 Fondation Gustave & Simone PrƩvot'),
(59115, 'https://ror.org/04xvc2q17', 'en', 1, 'https://ror.org/04xvc2q17 Lancaster Royal Grammar School'),
(59116, 'https://ror.org/04xvyz885', 'no_lang_code', 1, 'https://ror.org/04xvyz885 Mavet (Czechia)'),
(59117, 'https://ror.org/04xxthg27', 'no_lang_code', 1, 'https://ror.org/04xxthg27 Science et MƩdecine (France)'),
(59118, 'https://ror.org/04xyg3765', 'no_lang_code', 1, 'https://ror.org/04xyg3765 Arthrocentrum'),
(59119, 'https://ror.org/04xzb7w94', 'fr', 1, 'https://ror.org/04xzb7w94 Fondation Gandur pour l’Art'),
(59120, 'https://ror.org/04y2cjj38', 'no_lang_code', 1, 'https://ror.org/04y2cjj38 Amer Sports (Austria)'),
(59121, 'https://ror.org/04y2ytg46', 'en', 1, 'https://ror.org/04y2ytg46 Secure World Foundation'),
(59122, 'https://ror.org/04y37vj38', 'en', 1, 'https://ror.org/04y37vj38 Association for Information Science and Technology'),
(59123, 'https://ror.org/04y64sc23', 'en', 1, 'https://ror.org/04y64sc23 Susan Thompson Buffett Foundation'),
(59124, 'https://ror.org/04y7bzk92', 'en', 1, 'https://ror.org/04y7bzk92 Sakhalin Botanical Garden Дахалинский филиал Ботанического саГа-ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° Š”Š’Šž Š ŠŠ'),
(59125, 'https://ror.org/04y7jcj09', 'en', 1, 'https://ror.org/04y7jcj09 Institute of Hydrobiology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ГіГробіології'),
(59126, 'https://ror.org/04y8ye406', 'en', 1, 'https://ror.org/04y8ye406 Harvest Home Farmer’s Market'),
(59127, 'https://ror.org/04yacgh83', 'no_lang_code', 1, 'https://ror.org/04yacgh83 SoftFil (France)'),
(59128, 'https://ror.org/04yaz0z51', 'it', 1, 'https://ror.org/04yaz0z51 Ospedale San Raffaele Arcangelo'),
(59129, 'https://ror.org/04ye0br83', 'no_lang_code', 1, 'https://ror.org/04ye0br83 Flaveko (Czechia)'),
(59130, 'https://ror.org/04yedeq20', 'no_lang_code', 1, 'https://ror.org/04yedeq20 SG - Geoinenring (Czechia)'),
(59131, 'https://ror.org/04ygsjk43', 'no_lang_code', 1, 'https://ror.org/04ygsjk43 NELAN (Czechia)'),
(59132, 'https://ror.org/04yhya597', 'en', 1, 'https://ror.org/04yhya597 Blue Marble Space Institute of Science'),
(59133, 'https://ror.org/04ykg4p88', 'de', 1, 'https://ror.org/04ykg4p88 Stiftung Landschaftsschutz Schweiz, Swiss Foundation for Landscape Conservation'),
(59134, 'https://ror.org/04ynnbp72', 'en', 1, 'https://ror.org/04ynnbp72 Czech Chamber of Commerce HospodÔřskĆ” komora ČeskĆ© republiky'),
(59135, 'https://ror.org/04yp9az05', 'no_lang_code', 1, 'https://ror.org/04yp9az05 MRB Sazovice (Czechia)'),
(59136, 'https://ror.org/04ypeyk27', 'no_lang_code', 1, 'https://ror.org/04ypeyk27 S&T (Czechia)'),
(59137, 'https://ror.org/04yqshc53', 'en', 1, 'https://ror.org/04yqshc53 German Studies Association'),
(59138, 'https://ror.org/04ys5fv56', 'cs', 1, 'https://ror.org/04ys5fv56 ZĆ”padočeskĆ” Galerie v Plzni'),
(59139, 'https://ror.org/04ytpr841', 'en', 1, 'https://ror.org/04ytpr841 JLK Sanfilippo Research Foundation'),
(59140, 'https://ror.org/04yxgd218', 'no_lang_code', 1, 'https://ror.org/04yxgd218 RobotSystem (Czechia)');
INSERT INTO `rors` VALUES
(59141, 'https://ror.org/04yxwsj75', 'no_lang_code', 1, 'https://ror.org/04yxwsj75 Proficomms (Czechia)'),
(59142, 'https://ror.org/04z0bfr53', 'no_lang_code', 1, 'https://ror.org/04z0bfr53 Urgo Laboratories (France)'),
(59143, 'https://ror.org/04z0qye94', 'no_lang_code', 1, 'https://ror.org/04z0qye94 Johnson & Johnson (Canada)'),
(59144, 'https://ror.org/04z0vpw75', 'no_lang_code', 1, 'https://ror.org/04z0vpw75 Paramo (Czechia)'),
(59145, 'https://ror.org/04z2zsa77', 'en', 1, 'https://ror.org/04z2zsa77 Sonnenfeld Foundation Sonnenfeld Stiftung'),
(59146, 'https://ror.org/04z360s37', 'no_lang_code', 1, 'https://ror.org/04z360s37 EVPÚ Defence (Czechia)'),
(59147, 'https://ror.org/04z4rna54', 'no_lang_code', 1, 'https://ror.org/04z4rna54 Interlacto (Czechia)'),
(59148, 'https://ror.org/04z6xe248', 'en', 1, 'https://ror.org/04z6xe248 Clinica Luganese Moncucco'),
(59149, 'https://ror.org/04z91z113', 'no_lang_code', 1, 'https://ror.org/04z91z113 Symbios OrthopƩdie (Switzerland)'),
(59150, 'https://ror.org/04z9gtp37', 'no_lang_code', 1, 'https://ror.org/04z9gtp37 Integrated Concurrent Systems Associates (United States)'),
(59151, 'https://ror.org/04z9kpd59', 'no_lang_code', 1, 'https://ror.org/04z9kpd59 Metso (Sweden)'),
(59152, 'https://ror.org/04zaa8r69', 'fr', 1, 'https://ror.org/04zaa8r69 Laboratoire de Physique du Rayonnement et de la LumiĆØre'),
(59153, 'https://ror.org/04zbaa003', 'en', 1, 'https://ror.org/04zbaa003 Sports Medicine Australia'),
(59154, 'https://ror.org/04zd2q353', 'en', 1, 'https://ror.org/04zd2q353 Muzeum uměnƭ Olomouc Museum of Art'),
(59155, 'https://ror.org/04zdeh149', 'en', 1, 'https://ror.org/04zdeh149 VA Sepulveda Ambulatory Care Center'),
(59156, 'https://ror.org/04zdw2m37', 'en', 1, 'https://ror.org/04zdw2m37 All-Russian Scientific and Research Institute for Medical Engineering Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И Š˜Š”ŠŸŠ«Š¢ŠŠ¢Š•Š›Š¬ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠžŠ™ Š¢Š•Š„ŠŠ˜ŠšŠ˜'),
(59157, 'https://ror.org/04zeqh491', 'no_lang_code', 1, 'https://ror.org/04zeqh491 Amphenol (France)'),
(59158, 'https://ror.org/04zg3kj04', 'no_lang_code', 1, 'https://ror.org/04zg3kj04 Scaleo Medical (France)'),
(59159, 'https://ror.org/04zgf8140', 'no_lang_code', 1, 'https://ror.org/04zgf8140 Mirtech (United States)'),
(59160, 'https://ror.org/04zgrks73', 'no_lang_code', 1, 'https://ror.org/04zgrks73 Access Sensor Technologies (United States)'),
(59161, 'https://ror.org/04zhxv661', 'en', 1, 'https://ror.org/04zhxv661 Wisconsin Public Service'),
(59162, 'https://ror.org/04zkpdz50', 'no_lang_code', 1, 'https://ror.org/04zkpdz50 ZZN Pelhřimov (Czechia)'),
(59163, 'https://ror.org/04zksj147', 'en', 1, 'https://ror.org/04zksj147 Centre For Innovation And Development Centrum InovacĆ­ a Rozvoje'),
(59164, 'https://ror.org/04zkx3f21', 'en', 1, 'https://ror.org/04zkx3f21 Jinja Municipal Council'),
(59165, 'https://ror.org/04zn4fk08', 'en', 1, 'https://ror.org/04zn4fk08 Society of Urologic Nurses and Associates'),
(59166, 'https://ror.org/04zn57k32', 'it', 1, 'https://ror.org/04zn57k32 Augusta Raurica'),
(59167, 'https://ror.org/04znf4t37', 'en', 1, 'https://ror.org/04znf4t37 Orthodontic World Institute'),
(59168, 'https://ror.org/04znkfj06', 'cs', 1, 'https://ror.org/04znkfj06 PodjeÅ”tědskĆ© Museum'),
(59169, 'https://ror.org/04zp00x83', 'no_lang_code', 1, 'https://ror.org/04zp00x83 FLSmidth (Czechia)'),
(59170, 'https://ror.org/04zp2d344', 'de', 1, 'https://ror.org/04zp2d344 Sächsisches Institut für die Druckindustrie'),
(59171, 'https://ror.org/04zqaby77', 'no_lang_code', 1, 'https://ror.org/04zqaby77 Roemmers Laboratories (Argentina)'),
(59172, 'https://ror.org/04zqw9t81', 'en', 1, 'https://ror.org/04zqw9t81 Helsingin Diakonissalaitos Helsinki Deaconess Institute'),
(59173, 'https://ror.org/04zrk8409', 'en', 1, 'https://ror.org/04zrk8409 Kansas Board of Regents'),
(59174, 'https://ror.org/04zs69r73', 'no_lang_code', 1, 'https://ror.org/04zs69r73 Oekoscience (Switzerland)'),
(59175, 'https://ror.org/04zs9x940', 'en', 1, 'https://ror.org/04zs9x940 Aleutian Pribilof Islands Association'),
(59176, 'https://ror.org/04ztzvw60', 'no_lang_code', 1, 'https://ror.org/04ztzvw60 ModularTest (Czechia)'),
(59177, 'https://ror.org/04zv3dn98', 'en', 1, 'https://ror.org/04zv3dn98 Westchester Institute for Human Development'),
(59178, 'https://ror.org/04zwrha85', 'en', 1, 'https://ror.org/04zwrha85 Victorian Responsible Gambling Foundation'),
(59179, 'https://ror.org/04zwxgg32', 'no_lang_code', 1, 'https://ror.org/04zwxgg32 Nexen (Canada)'),
(59180, 'https://ror.org/04zwy1d58', 'no_lang_code', 1, 'https://ror.org/04zwy1d58 Burnside Autocyl (Ireland)'),
(59181, 'https://ror.org/0501jzx23', 'no_lang_code', 1, 'https://ror.org/0501jzx23 Kunst (Czechia)'),
(59182, 'https://ror.org/0502kph39', 'en', 1, 'https://ror.org/0502kph39 Central Tasar Research & Training Institute'),
(59183, 'https://ror.org/0504frq03', 'en', 1, 'https://ror.org/0504frq03 Global Growers'),
(59184, 'https://ror.org/0505he277', 'no_lang_code', 1, 'https://ror.org/0505he277 Central Japan Railway (Japan) ę±ęµ·ę—…å®¢é‰„é“ę Ŗå¼ä¼šē¤¾'),
(59185, 'https://ror.org/0506vaz69', 'no_lang_code', 1, 'https://ror.org/0506vaz69 Varroc Lighting Systems (United States)'),
(59186, 'https://ror.org/0507cba95', 'en', 1, 'https://ror.org/0507cba95 Duchenne Now'),
(59187, 'https://ror.org/0507jvj85', 'no_lang_code', 1, 'https://ror.org/0507jvj85 GAF (United States)'),
(59188, 'https://ror.org/0507zc831', 'no_lang_code', 1, 'https://ror.org/0507zc831 GNSS Centre of Excellence'),
(59189, 'https://ror.org/0508gqz32', 'no_lang_code', 1, 'https://ror.org/0508gqz32 Büro für Altlasten, Boden und Umwelt (Switzerland)'),
(59190, 'https://ror.org/0509gz575', 'no_lang_code', 1, 'https://ror.org/0509gz575 Via Alta (Czechia)'),
(59191, 'https://ror.org/050ahe644', 'no_lang_code', 1, 'https://ror.org/050ahe644 Hydroma (Czechia)'),
(59192, 'https://ror.org/050awrw49', 'en', 1, 'https://ror.org/050awrw49 GEP Clinic'),
(59193, 'https://ror.org/050dy3g96', 'no_lang_code', 1, 'https://ror.org/050dy3g96 IKT Advanced Technologies (Czechia)'),
(59194, 'https://ror.org/050fr6z67', 'no_lang_code', 1, 'https://ror.org/050fr6z67 Dynamic Digital Depth (Australia)'),
(59195, 'https://ror.org/050g95t43', 'en', 1, 'https://ror.org/050g95t43 Regional Museum and Gallery Jicin'),
(59196, 'https://ror.org/050gcw725', 'en', 1, 'https://ror.org/050gcw725 Telecommunication an Electronics Associaton Tietotekniikan ja Elektroniikan Seura'),
(59197, 'https://ror.org/050gvvy47', 'no_lang_code', 1, 'https://ror.org/050gvvy47 TFA (Czechia)'),
(59198, 'https://ror.org/050ha9v33', 'en', 1, 'https://ror.org/050ha9v33 Czech River Restoration Centre'),
(59199, 'https://ror.org/050jk8g19', 'no_lang_code', 1, 'https://ror.org/050jk8g19 Medical Technology Transfer (Netherlands)'),
(59200, 'https://ror.org/050qj5a78', 'fr', 1, 'https://ror.org/050qj5a78 Gymnase du Bugnon'),
(59201, 'https://ror.org/050rr3m98', 'en', 1, 'https://ror.org/050rr3m98 Institute for Radiological Image Sciences'),
(59202, 'https://ror.org/050t4db88', 'cs', 1, 'https://ror.org/050t4db88 Sokolov Muzeum'),
(59203, 'https://ror.org/050ve4r26', 'en', 1, 'https://ror.org/050ve4r26 Experimental Scientific Research Institute of Forging and Press Engineering Š­ŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ·Š½ŠµŃ‡Š½Š¾-прессового Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(59204, 'https://ror.org/0511swq50', 'en', 1, 'https://ror.org/0511swq50 Pencil Foundation'),
(59205, 'https://ror.org/051334k24', 'fr', 1, 'https://ror.org/051334k24 Institution Nationale des Invalides'),
(59206, 'https://ror.org/0514py963', 'no_lang_code', 1, 'https://ror.org/0514py963 OlChemIm (Czechia)'),
(59207, 'https://ror.org/051bbpq39', 'no_lang_code', 1, 'https://ror.org/051bbpq39 Czech Machines (Czechia)'),
(59208, 'https://ror.org/051bde843', 'no_lang_code', 1, 'https://ror.org/051bde843 HanĆ”ckĆ” ZemědělskĆ” Společnost Jevƭčko (Czechia)'),
(59209, 'https://ror.org/051bwap89', 'en', 1, 'https://ror.org/051bwap89 Institute for Information Recording Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем реєстрації інформації ŠŠŠ України'),
(59210, 'https://ror.org/051f1yf64', 'de', 1, 'https://ror.org/051f1yf64 Institut Kardiale Diagnostik und Therapie'),
(59211, 'https://ror.org/051fr8g96', 'no_lang_code', 1, 'https://ror.org/051fr8g96 GZ Media (Czechia)'),
(59212, 'https://ror.org/051h8nm81', 'no_lang_code', 1, 'https://ror.org/051h8nm81 Vuste - Apis (Czechia)'),
(59213, 'https://ror.org/051hq3021', 'no_lang_code', 1, 'https://ror.org/051hq3021 CTS Corporation (Czechia)'),
(59214, 'https://ror.org/051j13341', 'no_lang_code', 1, 'https://ror.org/051j13341 Gilead Sciences (Australia)'),
(59215, 'https://ror.org/051jcqr59', 'en', 1, 'https://ror.org/051jcqr59 Bytown Cat Hospital'),
(59216, 'https://ror.org/051m3n143', 'en', 1, 'https://ror.org/051m3n143 Environmental Research Instruments'),
(59217, 'https://ror.org/051mfdq62', 'cs', 1, 'https://ror.org/051mfdq62 ČeskĆ” NĆ”rodopisnĆ” Společnost'),
(59218, 'https://ror.org/051p4pj36', 'no_lang_code', 1, 'https://ror.org/051p4pj36 Chaps (Czechia)'),
(59219, 'https://ror.org/051perd82', 'no_lang_code', 1, 'https://ror.org/051perd82 LGL Electronics (Italy)'),
(59220, 'https://ror.org/051tbm140', 'no_lang_code', 1, 'https://ror.org/051tbm140 In''Tech Medical (France)'),
(59221, 'https://ror.org/051tck365', 'en', 1, 'https://ror.org/051tck365 Svenska Kennelklubben Swedish Kennel Club'),
(59222, 'https://ror.org/051tvr365', 'no_lang_code', 1, 'https://ror.org/051tvr365 Pharmaceutical Biotechnology (Czechia)'),
(59223, 'https://ror.org/051x4wh35', 'en', 1, 'https://ror.org/051x4wh35 Commonwealth Scholarship Commission'),
(59224, 'https://ror.org/051xra320', 'no_lang_code', 1, 'https://ror.org/051xra320 Biocodex (France)'),
(59225, 'https://ror.org/051y3re62', 'no_lang_code', 1, 'https://ror.org/051y3re62 Aproks (Czechia)'),
(59226, 'https://ror.org/05201ww68', 'en', 1, 'https://ror.org/05201ww68 Eidgenössisches Institut für Geistiges Eigentum Institut Federal da Proprietad Intellectuala Institut Fédéral de la Propriété Intellectuelle Istituto Federale della Proprietà Intellettuale Swiss Federal Institute of Intellectual Property'),
(59227, 'https://ror.org/0520gqb12', 'en', 1, 'https://ror.org/0520gqb12 Oklahoma Center for Adult Stem Cell Research'),
(59228, 'https://ror.org/052161p79', 'no_lang_code', 1, 'https://ror.org/052161p79 Ekoplant (Slovakia)'),
(59229, 'https://ror.org/0521n7n83', 'no_lang_code', 1, 'https://ror.org/0521n7n83 Microsoft (France)'),
(59230, 'https://ror.org/0521vgb23', 'no_lang_code', 1, 'https://ror.org/0521vgb23 Gas Komplet (Czechia)'),
(59231, 'https://ror.org/0523ytz80', 'en', 1, 'https://ror.org/0523ytz80 FyzikĆ”lně Technický ZkuÅ”ebnĆ­ Ústav Physical Technical Testing Institute'),
(59232, 'https://ror.org/0525q3519', 'en', 1, 'https://ror.org/0525q3519 William K Bowes Jr Foundation'),
(59233, 'https://ror.org/0526qf682', 'no_lang_code', 1, 'https://ror.org/0526qf682 AirshipClub (Czechia)'),
(59234, 'https://ror.org/0527v1v90', 'en', 1, 'https://ror.org/0527v1v90 VA Heart of Texas Health Care Network'),
(59235, 'https://ror.org/0527yet08', 'no_lang_code', 1, 'https://ror.org/0527yet08 Medical Developments International (Australia)'),
(59236, 'https://ror.org/0528q0t18', 'en', 1, 'https://ror.org/0528q0t18 United Mitochondrial Disease Foundation'),
(59237, 'https://ror.org/0529fxt39', 'en', 1, 'https://ror.org/0529fxt39 Palo Alto Research Center'),
(59238, 'https://ror.org/052azjr18', 'de', 1, 'https://ror.org/052azjr18 Stiftung Oskar Helene Heim'),
(59239, 'https://ror.org/052bv2m37', 'en', 1, 'https://ror.org/052bv2m37 Association of Fire and Safety Engineering SdruženĆ­ požÔrnĆ­ho a bezpečnostnĆ­ho inženýrstvĆ­'),
(59240, 'https://ror.org/052ce7c92', 'en', 1, 'https://ror.org/052ce7c92 Population Council'),
(59241, 'https://ror.org/052dd1f02', 'no_lang_code', 1, 'https://ror.org/052dd1f02 EGÚ Brno (Czechia)'),
(59242, 'https://ror.org/052e5jr81', 'de', 1, 'https://ror.org/052e5jr81 Zentrum für Gefässkrankheiten'),
(59243, 'https://ror.org/052gh5147', 'en', 1, 'https://ror.org/052gh5147 Tenagra Observatories'),
(59244, 'https://ror.org/052grs779', 'it', 1, 'https://ror.org/052grs779 Archivio di Stato del canton Ticino'),
(59245, 'https://ror.org/052gt1g92', 'en', 1, 'https://ror.org/052gt1g92 Womens Fund of Hawaii'),
(59246, 'https://ror.org/052gvyf59', 'en', 1, 'https://ror.org/052gvyf59 Right to Care'),
(59247, 'https://ror.org/052jy0t06', 'en', 1, 'https://ror.org/052jy0t06 Kƶrber Foundation Kƶrber Stiftung'),
(59248, 'https://ror.org/052kzcg37', 'en', 1, 'https://ror.org/052kzcg37 Indian Plywood Industries Research and Training Institute'),
(59249, 'https://ror.org/052m56d38', 'en', 1, 'https://ror.org/052m56d38 Whaleman Foundation'),
(59250, 'https://ror.org/052p9pa08', 'en', 1, 'https://ror.org/052p9pa08 Theatre Library Association'),
(59251, 'https://ror.org/052pcv042', 'no_lang_code', 1, 'https://ror.org/052pcv042 TCC (Czechia)'),
(59252, 'https://ror.org/052rbc006', 'it', 1, 'https://ror.org/052rbc006 Fondazione Oronzio e Niccolò De Nora'),
(59253, 'https://ror.org/052rfqh94', 'no_lang_code', 1, 'https://ror.org/052rfqh94 Heunisch Brno (Czechia)'),
(59254, 'https://ror.org/052rvpm80', 'en', 1, 'https://ror.org/052rvpm80 Chattahoochee Valley Community College'),
(59255, 'https://ror.org/052vggk81', 'en', 1, 'https://ror.org/052vggk81 Central Scientific Research Automobile and Engine Institute Š¦ŠµŠ½Ń‚Ń€Š°ĢŠ»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒĢŃ‡Š½Š¾-ŠøŃŃŠ»ŠµĢŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøĢŠ»ŃŒŠ½Ń‹Š¹ Šø автомото́рный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒĢŃ‚'),
(59256, 'https://ror.org/052x2sm38', 'en', 1, 'https://ror.org/052x2sm38 Mississippi Department of Human Services'),
(59257, 'https://ror.org/052xrhc79', 'de', 1, 'https://ror.org/052xrhc79 Gymnasium am Münsterplatz'),
(59258, 'https://ror.org/052ykh203', 'en', 1, 'https://ror.org/052ykh203 Ability Connection Colorado'),
(59259, 'https://ror.org/052yn8h13', 'no_lang_code', 1, 'https://ror.org/052yn8h13 Riga (France)'),
(59260, 'https://ror.org/0532w5z20', 'en', 1, 'https://ror.org/0532w5z20 European Institute for Legal Psychology Europäisches Institut für Rechtspsychologie'),
(59261, 'https://ror.org/05337tn35', 'no_lang_code', 1, 'https://ror.org/05337tn35 Beleco (Czechia)'),
(59262, 'https://ror.org/0534tk365', 'no_lang_code', 1, 'https://ror.org/0534tk365 ZemědělskĆ” a DopravnĆ­ Technika (Czechia)'),
(59263, 'https://ror.org/05353z471', 'no_lang_code', 1, 'https://ror.org/05353z471 Pro-Aqua (Czechia)'),
(59264, 'https://ror.org/0535wgn29', 'en', 1, 'https://ror.org/0535wgn29 Mary Rose Trust'),
(59265, 'https://ror.org/0536ez586', 'no_lang_code', 1, 'https://ror.org/0536ez586 NWB Sensors (United States)'),
(59266, 'https://ror.org/053a16167', 'no_lang_code', 1, 'https://ror.org/053a16167 IRT Group (Australia)'),
(59267, 'https://ror.org/053abfv27', 'en', 1, 'https://ror.org/053abfv27 Canadian Automotive Partnership Council Conseil du Partenariat du Secteur Canadien de l''Automobile'),
(59268, 'https://ror.org/053abxt44', 'en', 1, 'https://ror.org/053abxt44 Willard L. Eccles Charitable Foundation'),
(59269, 'https://ror.org/053bhme26', 'en', 1, 'https://ror.org/053bhme26 Technological Design Institute of Scientific Instrument Engineering'),
(59270, 'https://ror.org/053cfm252', 'en', 1, 'https://ror.org/053cfm252 Institute for Conflict Transformation and Peacebuilding'),
(59271, 'https://ror.org/053hq6b52', 'en', 1, 'https://ror.org/053hq6b52 Charlotte Metro Credit Union'),
(59272, 'https://ror.org/053j1ga94', 'no_lang_code', 1, 'https://ror.org/053j1ga94 Sedium (Czechia)'),
(59273, 'https://ror.org/053jawq64', 'no_lang_code', 1, 'https://ror.org/053jawq64 Centaurea (Czechia)'),
(59274, 'https://ror.org/053k40h13', 'no_lang_code', 1, 'https://ror.org/053k40h13 Chevron (Netherlands)'),
(59275, 'https://ror.org/053rebd44', 'it', 1, 'https://ror.org/053rebd44 Associazione Frantz Fanon'),
(59276, 'https://ror.org/053tfgv50', 'no_lang_code', 1, 'https://ror.org/053tfgv50 Laboratoires Nogues (France)'),
(59277, 'https://ror.org/053tymx43', 'cs', 1, 'https://ror.org/053tymx43 ČeskoslovenskÔ Obchodní Banka'),
(59278, 'https://ror.org/053v42m50', 'no_lang_code', 1, 'https://ror.org/053v42m50 BrainScope (Czechia)'),
(59279, 'https://ror.org/0541hm480', 'de', 1, 'https://ror.org/0541hm480 Stadtbibliothek Winterthur'),
(59280, 'https://ror.org/0542dkz21', 'en', 1, 'https://ror.org/0542dkz21 Czech Environmental Partnership Foundation Nadace PartnerstvĆ­'),
(59281, 'https://ror.org/05434yv04', 'de', 1, 'https://ror.org/05434yv04 Pestalozzianum'),
(59282, 'https://ror.org/054484h93', 'en', 1, 'https://ror.org/054484h93 VA Portland Health Care System'),
(59283, 'https://ror.org/0546ny985', 'en', 1, 'https://ror.org/0546ny985 Adriatic Research Institute'),
(59284, 'https://ror.org/054746w96', 'no_lang_code', 1, 'https://ror.org/054746w96 Columna Centrum'),
(59285, 'https://ror.org/0549g6963', 'nl', 1, 'https://ror.org/0549g6963 Stichting Euregio Maas-Rijn'),
(59286, 'https://ror.org/0549nvv93', 'no_lang_code', 1, 'https://ror.org/0549nvv93 Vws Memsep (Czechia)'),
(59287, 'https://ror.org/054bf3454', 'no_lang_code', 1, 'https://ror.org/054bf3454 Baxter (Australia)'),
(59288, 'https://ror.org/054chcy06', 'no_lang_code', 1, 'https://ror.org/054chcy06 Hong Kong Standards and Testing Centre (China) é¦™ęøÆę ‡å‡†åŠę£€å®šäø­åæƒ'),
(59289, 'https://ror.org/054fjrs33', 'no_lang_code', 1, 'https://ror.org/054fjrs33 Lutz Medical Engineering (Switzerland)'),
(59290, 'https://ror.org/054hgcr68', 'no_lang_code', 1, 'https://ror.org/054hgcr68 Chemoprojekt (Czechia)'),
(59291, 'https://ror.org/054jfj847', 'en', 1, 'https://ror.org/054jfj847 Banque nationale de Belgique Belgische Nationalbank National Bank of Belgium Nationale Bank van Belgiƫ'),
(59292, 'https://ror.org/054jtdj73', 'no_lang_code', 1, 'https://ror.org/054jtdj73 IQ Structures (Czechia)'),
(59293, 'https://ror.org/054kry619', 'en', 1, 'https://ror.org/054kry619 Korean Society of Medical Ultrasound'),
(59294, 'https://ror.org/054n2k594', 'en', 1, 'https://ror.org/054n2k594 Medical Biobank Swiss Institute'),
(59295, 'https://ror.org/054nzx465', 'no_lang_code', 1, 'https://ror.org/054nzx465 Ferring Pharmaceuticals (Czechia)'),
(59296, 'https://ror.org/054rd8b94', 'no_lang_code', 1, 'https://ror.org/054rd8b94 ARKO Consult (Czechia)'),
(59297, 'https://ror.org/054tjtv41', 'no_lang_code', 1, 'https://ror.org/054tjtv41 Motor Jikov (Czechia)'),
(59298, 'https://ror.org/054tqs184', 'no_lang_code', 1, 'https://ror.org/054tqs184 Teramed (Czechia)'),
(59299, 'https://ror.org/054v7pb78', 'no_lang_code', 1, 'https://ror.org/054v7pb78 Teva Pharmaceuticals (Czechia)'),
(59300, 'https://ror.org/054vyqa42', 'sv', 1, 'https://ror.org/054vyqa42 Sven och Dagmar SalƩn Stiftelse'),
(59301, 'https://ror.org/054w3nm73', 'en', 1, 'https://ror.org/054w3nm73 VA Mid-Atlantic Health Care Network'),
(59302, 'https://ror.org/054xw4485', 'no_lang_code', 1, 'https://ror.org/054xw4485 TenzovƔhy (Czechia)'),
(59303, 'https://ror.org/054xxne07', 'no_lang_code', 1, 'https://ror.org/054xxne07 CNH Industrial (United Kingdom)'),
(59304, 'https://ror.org/054zjbk29', 'no_lang_code', 1, 'https://ror.org/054zjbk29 ISIS Medical (France)'),
(59305, 'https://ror.org/05506bz51', 'no_lang_code', 1, 'https://ror.org/05506bz51 Sofigen (Czechia)'),
(59306, 'https://ror.org/0550sx673', 'no_lang_code', 1, 'https://ror.org/0550sx673 Racom (Czechia)'),
(59307, 'https://ror.org/05515m078', 'no_lang_code', 1, 'https://ror.org/05515m078 Značky Plzeň (Czechia)'),
(59308, 'https://ror.org/0551g0798', 'de', 1, 'https://ror.org/0551g0798 Schweizerische Pastoralsoziologische Institut'),
(59309, 'https://ror.org/0552cbh05', 'no_lang_code', 1, 'https://ror.org/0552cbh05 B. Braun (Switzerland)'),
(59310, 'https://ror.org/05539km59', 'en', 1, 'https://ror.org/05539km59 Sylvia and Charles Viertel Charitable Foundation'),
(59311, 'https://ror.org/0553gct64', 'no_lang_code', 1, 'https://ror.org/0553gct64 Catalina Sea Ranch (United States)'),
(59312, 'https://ror.org/0554h3h71', 'no_lang_code', 1, 'https://ror.org/0554h3h71 Ego Zlin (Czechia)'),
(59313, 'https://ror.org/05582qg24', 'no_lang_code', 1, 'https://ror.org/05582qg24 Medical Prognosis Institute (Denmark)'),
(59314, 'https://ror.org/0558ky526', 'cs', 1, 'https://ror.org/0558ky526 MěstskĆ” Nemocnice Ostrava'),
(59315, 'https://ror.org/05598yn68', 'no_lang_code', 1, 'https://ror.org/05598yn68 Ringier (Switzerland)'),
(59316, 'https://ror.org/0559k7072', 'no_lang_code', 1, 'https://ror.org/0559k7072 Moria (France)'),
(59317, 'https://ror.org/055azc127', 'no_lang_code', 1, 'https://ror.org/055azc127 MinMaxMedical (France)'),
(59318, 'https://ror.org/055bk3y86', 'no_lang_code', 1, 'https://ror.org/055bk3y86 Skill (Czechia)'),
(59319, 'https://ror.org/055c6bd74', 'no_lang_code', 1, 'https://ror.org/055c6bd74 Veeco (United States)'),
(59320, 'https://ror.org/055de8j75', 'en', 1, 'https://ror.org/055de8j75 Tag Institute for Social Development'),
(59321, 'https://ror.org/055df5q89', 'no_lang_code', 1, 'https://ror.org/055df5q89 Vuvl (Czechia)'),
(59322, 'https://ror.org/055fj9x85', 'fr', 1, 'https://ror.org/055fj9x85 MusƩe Romain d''Avenches'),
(59323, 'https://ror.org/055g2sd79', 'de', 1, 'https://ror.org/055g2sd79 Sozialwissenschaftliche Forschung und Beratung'),
(59324, 'https://ror.org/055g4ha47', 'cs', 1, 'https://ror.org/055g4ha47 Oblastnƭ muzeum v Chomutově'),
(59325, 'https://ror.org/055gjr823', 'de', 1, 'https://ror.org/055gjr823 Institut für Sozialwissenschaftliche Analysen und Beratung'),
(59326, 'https://ror.org/055h4jb02', 'no_lang_code', 1, 'https://ror.org/055h4jb02 P and S (Czechia)'),
(59327, 'https://ror.org/055hhfr85', 'en', 1, 'https://ror.org/055hhfr85 Cornell Cooperative Extension Association of Jefferson County'),
(59328, 'https://ror.org/055hmgs82', 'no_lang_code', 1, 'https://ror.org/055hmgs82 Network Group (Czechia)'),
(59329, 'https://ror.org/055kj8f51', 'en', 1, 'https://ror.org/055kj8f51 Mitchell School District'),
(59330, 'https://ror.org/055m4g098', 'no_lang_code', 1, 'https://ror.org/055m4g098 E and H Services (Czechia)'),
(59331, 'https://ror.org/055mp5r09', 'en', 1, 'https://ror.org/055mp5r09 Pikes Peak Community Foundation'),
(59332, 'https://ror.org/055p3bc36', 'no_lang_code', 1, 'https://ror.org/055p3bc36 Teknia (Czechia)'),
(59333, 'https://ror.org/055phnh91', 'en', 1, 'https://ror.org/055phnh91 Linka bezpečƭ Safety Line Helpline'),
(59334, 'https://ror.org/055q9j131', 'no_lang_code', 1, 'https://ror.org/055q9j131 Moraprim (Czechia)'),
(59335, 'https://ror.org/055tc0a50', 'no_lang_code', 1, 'https://ror.org/055tc0a50 Central European Biosystems (Czechia)'),
(59336, 'https://ror.org/055vwz968', 'en', 1, 'https://ror.org/055vwz968 Blansko Hospital Nemocnice Blansko'),
(59337, 'https://ror.org/055wsxp82', 'no_lang_code', 1, 'https://ror.org/055wsxp82 DivadelnĆ­ Noviny (Czechia)'),
(59338, 'https://ror.org/055y0va06', 'sv', 1, 'https://ror.org/055y0va06 Jerringfonden'),
(59339, 'https://ror.org/055y56x88', 'en', 1, 'https://ror.org/055y56x88 Stein Resort'),
(59340, 'https://ror.org/056028189', 'no_lang_code', 1, 'https://ror.org/056028189 Swietelsky (Austria)'),
(59341, 'https://ror.org/0560m4761', 'fr', 1, 'https://ror.org/0560m4761 Institut de Prise en Charge de l''ObƩsitƩ en Alsace'),
(59342, 'https://ror.org/0561waf62', 'no_lang_code', 1, 'https://ror.org/0561waf62 Laboratory Imaging (Czechia)'),
(59343, 'https://ror.org/0568dpm54', 'en', 1, 'https://ror.org/0568dpm54 Drug Enforcement Administration'),
(59344, 'https://ror.org/056d4s875', 'fr', 1, 'https://ror.org/056d4s875 SociƩtƩ AcadƩmique Vaudoise'),
(59345, 'https://ror.org/056ezyb19', 'en', 1, 'https://ror.org/056ezyb19 Society of Analytical Psychology'),
(59346, 'https://ror.org/056f7w112', 'en', 1, 'https://ror.org/056f7w112 West Health'),
(59347, 'https://ror.org/056gmd082', 'no_lang_code', 1, 'https://ror.org/056gmd082 GfK (Czechia)'),
(59348, 'https://ror.org/056hf8h17', 'en', 1, 'https://ror.org/056hf8h17 Ministry of Commerce of the People''s Republic of China åÆ¹å¤–č“øę˜“ē»ęµŽåˆä½œéƒØ'),
(59349, 'https://ror.org/056jy0m49', 'en', 1, 'https://ror.org/056jy0m49 Sons of Norway'),
(59350, 'https://ror.org/056kzn313', 'cs', 1, 'https://ror.org/056kzn313 NÔrodní Ústav Lidové Kultury'),
(59351, 'https://ror.org/056mcm922', 'en', 1, 'https://ror.org/056mcm922 Grain Inspection, Packers and Stockyards Administration'),
(59352, 'https://ror.org/056p5a020', 'no_lang_code', 1, 'https://ror.org/056p5a020 SVS FEM (Czechia)'),
(59353, 'https://ror.org/056rxsw51', 'en', 1, 'https://ror.org/056rxsw51 Advanced Life Science Institute å…ˆē«Æē”Ÿå‘½ē§‘å­¦ē ”ē©¶ę‰€'),
(59354, 'https://ror.org/056tpcd64', 'no_lang_code', 1, 'https://ror.org/056tpcd64 Ageris (Czechia)'),
(59355, 'https://ror.org/056v7cj11', 'fr', 1, 'https://ror.org/056v7cj11 Archives de l''ancien ƉvĆŖchĆ© de BĆ¢le'),
(59356, 'https://ror.org/056vxkd58', 'en', 1, 'https://ror.org/056vxkd58 CzechTrade ČeskÔ Agentura na Podporu Obchodu'),
(59357, 'https://ror.org/056w8zz77', 'en', 1, 'https://ror.org/056w8zz77 Association chiropratique canadienne Canadian Chiropractic Association'),
(59358, 'https://ror.org/056xr2125', 'en', 1, 'https://ror.org/056xr2125 Finnish Medical Society Duodecim Suomalainen LƤƤkƤriseura Duodecim'),
(59359, 'https://ror.org/056y2jv89', 'cs', 1, 'https://ror.org/056y2jv89 JazykovědnĆ© SdruženĆ­ ČeskĆ© Republiky'),
(59360, 'https://ror.org/056yng194', 'no_lang_code', 1, 'https://ror.org/056yng194 Stapro (Czechia)'),
(59361, 'https://ror.org/057040g82', 'no_lang_code', 1, 'https://ror.org/057040g82 Semtech (Canada)'),
(59362, 'https://ror.org/0571c2151', 'no_lang_code', 1, 'https://ror.org/0571c2151 P-D Refractories (Germany)'),
(59363, 'https://ror.org/0571stx19', 'de', 1, 'https://ror.org/0571stx19 Schweizerischen Neurologischen Gesellschaft SociƩtƩ Suisse de Neurologie'),
(59364, 'https://ror.org/0573v8y73', 'it', 1, 'https://ror.org/0573v8y73 Fondazione Bolle di Magadino'),
(59365, 'https://ror.org/0574hzg66', 'en', 1, 'https://ror.org/0574hzg66 Yrjƶ Jahnsson Foundation Yrjƶ Jahnssonin sƤƤtiƶ'),
(59366, 'https://ror.org/05757bv38', 'no_lang_code', 1, 'https://ror.org/05757bv38 Fomex Team (Czechia)'),
(59367, 'https://ror.org/0575b2v60', 'en', 1, 'https://ror.org/0575b2v60 Society of Systematic Biologists'),
(59368, 'https://ror.org/057721542', 'no_lang_code', 1, 'https://ror.org/057721542 TeamScape (United States)'),
(59369, 'https://ror.org/05774jg90', 'no_lang_code', 1, 'https://ror.org/05774jg90 NAUPO (Czechia)'),
(59370, 'https://ror.org/0579kbh86', 'no_lang_code', 1, 'https://ror.org/0579kbh86 AkzoNobel (United States)'),
(59371, 'https://ror.org/057a4a874', 'no_lang_code', 1, 'https://ror.org/057a4a874 Sutherland HDL (United States)'),
(59372, 'https://ror.org/057aydj06', 'no_lang_code', 1, 'https://ror.org/057aydj06 Robert Bosch (Netherlands)'),
(59373, 'https://ror.org/057d4hm13', 'fr', 1, 'https://ror.org/057d4hm13 Installations Magasins Gerard Rocquet'),
(59374, 'https://ror.org/057dvs720', 'sv', 1, 'https://ror.org/057dvs720 Stiftelsen Erik and Lily Philipsons Minnesfond'),
(59375, 'https://ror.org/057fxch52', 'en', 1, 'https://ror.org/057fxch52 Matthew 25'),
(59376, 'https://ror.org/057h5ne89', 'no_lang_code', 1, 'https://ror.org/057h5ne89 Robert-Grandpierre et Rapp (Switzerland)'),
(59377, 'https://ror.org/057mgt359', 'en', 1, 'https://ror.org/057mgt359 Institute of Cryobiology and Food Technology'),
(59378, 'https://ror.org/057mm6758', 'no_lang_code', 1, 'https://ror.org/057mm6758 MEI Technologies (United States)'),
(59379, 'https://ror.org/057p1hr03', 'de', 1, 'https://ror.org/057p1hr03 KantonsarchƤologie Aargau'),
(59380, 'https://ror.org/057qqaz54', 'no_lang_code', 1, 'https://ror.org/057qqaz54 Pražské služby (Czechia)'),
(59381, 'https://ror.org/057wy2y58', 'en', 1, 'https://ror.org/057wy2y58 European Platform of Women Scientists'),
(59382, 'https://ror.org/057zjf715', 'en', 1, 'https://ror.org/057zjf715 Centre for Applied Studies in International Negotiations'),
(59383, 'https://ror.org/0584khc13', 'no_lang_code', 1, 'https://ror.org/0584khc13 Agrospol VelkĆ” Bystřice (Czechia)'),
(59384, 'https://ror.org/0586vk124', 'en', 1, 'https://ror.org/0586vk124 CGB Laboratory CGB laboratoř'),
(59385, 'https://ror.org/0587n1k08', 'no_lang_code', 1, 'https://ror.org/0587n1k08 Prakab Prazska Kabelovna (Czechia)'),
(59386, 'https://ror.org/058g1v616', 'no_lang_code', 1, 'https://ror.org/058g1v616 Madeta (Czechia)'),
(59387, 'https://ror.org/058ke7e65', 'no_lang_code', 1, 'https://ror.org/058ke7e65 RybÔřstvĆ­ HlubokĆ” (Czechia)'),
(59388, 'https://ror.org/058kkmh35', 'en', 1, 'https://ror.org/058kkmh35 Asbestos Institute'),
(59389, 'https://ror.org/058krbm80', 'de', 1, 'https://ror.org/058krbm80 Staatsarchiv Nidwalden'),
(59390, 'https://ror.org/058pgtg13', 'en', 1, 'https://ror.org/058pgtg13 Evelina London Children''s Healthcare'),
(59391, 'https://ror.org/058qzh392', 'en', 1, 'https://ror.org/058qzh392 Tan Kah Kee Foundation'),
(59392, 'https://ror.org/058tqt210', 'no_lang_code', 1, 'https://ror.org/058tqt210 Gallopro (Czechia)'),
(59393, 'https://ror.org/058xqms97', 'es', 1, 'https://ror.org/058xqms97 Instituto de FĆ­sica del Litoral'),
(59394, 'https://ror.org/058yerw52', 'en', 1, 'https://ror.org/058yerw52 CRC CARE'),
(59395, 'https://ror.org/058ypfn29', 'cs', 1, 'https://ror.org/058ypfn29 DiecĆ©ze litoměřickĆ”'),
(59396, 'https://ror.org/059091v77', 'fr', 1, 'https://ror.org/059091v77 Onco Lille'),
(59397, 'https://ror.org/0590mw537', 'en', 1, 'https://ror.org/0590mw537 Ministry of Emergency Situations ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ по Гелам гражГанской обороны, чрезвычайным ŃŠøŃ‚ŃƒŠ°Ń†ŠøŃŠ¼ Šø ликвиГации послеГствий стихийных беГствий'),
(59398, 'https://ror.org/05923xh51', 'en', 1, 'https://ror.org/05923xh51 Ludwig Cancer Research'),
(59399, 'https://ror.org/0592xtw71', 'en', 1, 'https://ror.org/0592xtw71 Czech Society Of International Law ČeskĆ” společnost pro mezinĆ”rodnĆ­ prĆ”vo'),
(59400, 'https://ror.org/0593djr05', 'no_lang_code', 1, 'https://ror.org/0593djr05 Quality Quantity Time (Czechia)'),
(59401, 'https://ror.org/0593mby10', 'en', 1, 'https://ror.org/0593mby10 Finnish Medical Foundation Suomen LƤƤketieteen SƤƤtiƶ'),
(59402, 'https://ror.org/0593r9g81', 'en', 1, 'https://ror.org/0593r9g81 Vegetables New Zealand'),
(59403, 'https://ror.org/0594rzx21', 'no_lang_code', 1, 'https://ror.org/0594rzx21 SIS Medical (Switzerland)'),
(59404, 'https://ror.org/05972na11', 'no_lang_code', 1, 'https://ror.org/05972na11 CryoLife (United Kingdom)'),
(59405, 'https://ror.org/0597v6438', 'en', 1, 'https://ror.org/0597v6438 Institute for Economic Research and Policy Consulting Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ та політичних ŠŗŠ¾Š½ŃŃƒŠ»ŃŒŃ‚Š°Ń†Ń–Š¹'),
(59406, 'https://ror.org/05989vw47', 'en', 1, 'https://ror.org/05989vw47 Public Life Foundation of Owensboro'),
(59407, 'https://ror.org/0598sdq75', 'en', 1, 'https://ror.org/0598sdq75 Hastings Community Foundation'),
(59408, 'https://ror.org/059aa2e10', 'no_lang_code', 1, 'https://ror.org/059aa2e10 ČD InformačnĆ­ SystĆ©my (Czechia)'),
(59409, 'https://ror.org/059akse30', 'de', 1, 'https://ror.org/059akse30 Basler Afrika Bibliographien'),
(59410, 'https://ror.org/059c3dd05', 'no_lang_code', 1, 'https://ror.org/059c3dd05 Issa Czech (Czechia)'),
(59411, 'https://ror.org/059cchq73', 'no_lang_code', 1, 'https://ror.org/059cchq73 Knauf (Czechia)'),
(59412, 'https://ror.org/059e60q69', 'en', 1, 'https://ror.org/059e60q69 Southern Taiwan Science Park å—éƒØē§‘å­øå·„ę„­åœ’å€'),
(59413, 'https://ror.org/059ehfk60', 'fr', 1, 'https://ror.org/059ehfk60 SociĆ©tĆ© d’Installation TĆ©lĆ©phonique et Signalisation'),
(59414, 'https://ror.org/059fv9z04', 'en', 1, 'https://ror.org/059fv9z04 Fok Ying Tung Foundation'),
(59415, 'https://ror.org/059g52507', 'no_lang_code', 1, 'https://ror.org/059g52507 3Bar Biologics (United States)'),
(59416, 'https://ror.org/059hma273', 'no_lang_code', 1, 'https://ror.org/059hma273 Vums Legend (Czechia)'),
(59417, 'https://ror.org/059jy0w68', 'no_lang_code', 1, 'https://ror.org/059jy0w68 HRA Pharma (France)'),
(59418, 'https://ror.org/059mh1c03', 'en', 1, 'https://ror.org/059mh1c03 Institute for Biomedical Diagnostics and Research NALAZ'),
(59419, 'https://ror.org/059nmw410', 'no_lang_code', 1, 'https://ror.org/059nmw410 LafargeHolcim (France)'),
(59420, 'https://ror.org/059qamr21', 'en', 1, 'https://ror.org/059qamr21 Varkey Foundation'),
(59421, 'https://ror.org/059qzhk26', 'fr', 1, 'https://ror.org/059qzhk26 HƓpital La Porte Verte'),
(59422, 'https://ror.org/059r9r992', 'no_lang_code', 1, 'https://ror.org/059r9r992 Agrosoft TƔbor (Czechia)'),
(59423, 'https://ror.org/059sx8r46', 'no_lang_code', 1, 'https://ror.org/059sx8r46 Novo Business Consultants (Switzerland)'),
(59424, 'https://ror.org/059tq0w82', 'no_lang_code', 1, 'https://ror.org/059tq0w82 Teva Pharmaceuticals (Ireland)'),
(59425, 'https://ror.org/059v8t736', 'en', 1, 'https://ror.org/059v8t736 Sustainable Development Policy Institute'),
(59426, 'https://ror.org/059w4gg22', 'en', 1, 'https://ror.org/059w4gg22 Village Veterinary Medical Center'),
(59427, 'https://ror.org/059wezj60', 'no_lang_code', 1, 'https://ror.org/059wezj60 Medicalc Software (Czechia)'),
(59428, 'https://ror.org/059xss029', 'no_lang_code', 1, 'https://ror.org/059xss029 GeodĆ©zie Ledeč nad SĆ”zavou (Czechia)'),
(59429, 'https://ror.org/059zyq877', 'no_lang_code', 1, 'https://ror.org/059zyq877 Oliva (Switzerland)'),
(59430, 'https://ror.org/05a15vf47', 'en', 1, 'https://ror.org/05a15vf47 Oil Industry Development Board'),
(59431, 'https://ror.org/05a2qqv55', 'no_lang_code', 1, 'https://ror.org/05a2qqv55 DIZ Bohemia (Czechia)'),
(59432, 'https://ror.org/05a6fy491', 'no_lang_code', 1, 'https://ror.org/05a6fy491 Prometheus (Czechia)'),
(59433, 'https://ror.org/05a73mk94', 'en', 1, 'https://ror.org/05a73mk94 Institut za poljoprivredu i turizam Poreč Institute of Agriculture and Tourism'),
(59434, 'https://ror.org/05a9fs939', 'de', 1, 'https://ror.org/05a9fs939 Landwirtschaftliches Zentrum Liebegg'),
(59435, 'https://ror.org/05aaf8p37', 'no_lang_code', 1, 'https://ror.org/05aaf8p37 Pivo Praha (Czechia)'),
(59436, 'https://ror.org/05ad0gz88', 'en', 1, 'https://ror.org/05ad0gz88 Institute for Legal Studies MTA TÔrsadalomtudomÔnyi Kutatóközpont JogtudomÔnyi Intézet'),
(59437, 'https://ror.org/05adwpb80', 'en', 1, 'https://ror.org/05adwpb80 Regional Development Agency of South Bohemia'),
(59438, 'https://ror.org/05ae3xr78', 'en', 1, 'https://ror.org/05ae3xr78 Ready Mixed Concrete Research and Education Foundation'),
(59439, 'https://ror.org/05afyvv15', 'no_lang_code', 1, 'https://ror.org/05afyvv15 Sonberk (Czechia)'),
(59440, 'https://ror.org/05ah2fk15', 'cs', 1, 'https://ror.org/05ah2fk15 ČeskĆ” Spořitelna'),
(59441, 'https://ror.org/05ak1kg07', 'en', 1, 'https://ror.org/05ak1kg07 Foundation for Japanese Chemical Research å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åŒ–å­¦ē ”ē©¶ä¼š'),
(59442, 'https://ror.org/05akn9t25', 'no_lang_code', 1, 'https://ror.org/05akn9t25 Polypress (Czechia)'),
(59443, 'https://ror.org/05akyca73', 'en', 1, 'https://ror.org/05akyca73 Agrisus Foundation – Sustainable Agriculture Fundação Agrisus'),
(59444, 'https://ror.org/05am0hk18', 'de', 1, 'https://ror.org/05am0hk18 Rietberg Museum'),
(59445, 'https://ror.org/05amca937', 'en', 1, 'https://ror.org/05amca937 Purple Martin Conservation Association'),
(59446, 'https://ror.org/05amv9q86', 'no_lang_code', 1, 'https://ror.org/05amv9q86 Kudelski (United States)'),
(59447, 'https://ror.org/05ancvs60', 'en', 1, 'https://ror.org/05ancvs60 Siloam Eye Hospital ģ‹¤ė”œģ•”ģ•ˆź³¼ė³‘ģ›'),
(59448, 'https://ror.org/05anxz392', 'no_lang_code', 1, 'https://ror.org/05anxz392 StrojĆ­rny Podzimek (Czechia)'),
(59449, 'https://ror.org/05ap66461', 'en', 1, 'https://ror.org/05ap66461 University School'),
(59450, 'https://ror.org/05aq07d91', 'en', 1, 'https://ror.org/05aq07d91 Abbey library of Saint Gall Stiftsbibliothek St. Gallen'),
(59451, 'https://ror.org/05aq4y378', 'en', 1, 'https://ror.org/05aq4y378 Clinica Valle Giulia'),
(59452, 'https://ror.org/05aqqa384', 'no_lang_code', 1, 'https://ror.org/05aqqa384 HET (Czechia)'),
(59453, 'https://ror.org/05av0zp13', 'no_lang_code', 1, 'https://ror.org/05av0zp13 Honeywell (Switzerland)'),
(59454, 'https://ror.org/05avhxb06', 'de', 1, 'https://ror.org/05avhxb06 Museum im Lagerhaus'),
(59455, 'https://ror.org/05aw35e64', 'no_lang_code', 1, 'https://ror.org/05aw35e64 MatƩriel MƩdical (France)'),
(59456, 'https://ror.org/05ax3zs14', 'no_lang_code', 1, 'https://ror.org/05ax3zs14 Abzena (United States)'),
(59457, 'https://ror.org/05axc5t79', 'no_lang_code', 1, 'https://ror.org/05axc5t79 MR&D (Italy)'),
(59458, 'https://ror.org/05axzm004', 'en', 1, 'https://ror.org/05axzm004 Acquisition, Technology & Logistics Agency é˜²č”›č£…å‚™åŗ'),
(59459, 'https://ror.org/05ayx2752', 'no_lang_code', 1, 'https://ror.org/05ayx2752 Inser (Switzerland)'),
(59460, 'https://ror.org/05b1fze65', 'cs', 1, 'https://ror.org/05b1fze65 Sdružení Celiaků České Republiky'),
(59461, 'https://ror.org/05b3j8482', 'no_lang_code', 1, 'https://ror.org/05b3j8482 Unex (Czechia)'),
(59462, 'https://ror.org/05b3xjz72', 'no_lang_code', 1, 'https://ror.org/05b3xjz72 Reacont (Czechia)'),
(59463, 'https://ror.org/05b409c22', 'en', 1, 'https://ror.org/05b409c22 Association of Clinical Scientists'),
(59464, 'https://ror.org/05b4e2111', 'cs', 1, 'https://ror.org/05b4e2111 National Stud at Kladruby nad Labem, NĆ”rodnĆ­ hřebčƭn Kladruby nad Labem'),
(59465, 'https://ror.org/05b50ej63', 'es', 1, 'https://ror.org/05b50ej63 Instituto de Investigaciones Biológicas Clemente Estable'),
(59466, 'https://ror.org/05b71ga35', 'no_lang_code', 1, 'https://ror.org/05b71ga35 Km - KƔmen (Czechia)'),
(59467, 'https://ror.org/05b9eba69', 'en', 1, 'https://ror.org/05b9eba69 Institute for Soil Science and Agricultural Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠ¾Ń‡Š²Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Šø агрохимии Š”Šž Š ŠŠ'),
(59468, 'https://ror.org/05bb2ws56', 'no_lang_code', 1, 'https://ror.org/05bb2ws56 ZUD (Czechia)'),
(59469, 'https://ror.org/05bcrb290', 'en', 1, 'https://ror.org/05bcrb290 Franklinton Gardens'),
(59470, 'https://ror.org/05bda2x91', 'en', 1, 'https://ror.org/05bda2x91 Sidgmore Family Foundation'),
(59471, 'https://ror.org/05bdnn452', 'no_lang_code', 1, 'https://ror.org/05bdnn452 Bohemiaseed (Czechia)'),
(59472, 'https://ror.org/05behat95', 'en', 1, 'https://ror.org/05behat95 GymnƔzium Jana Palacha Jan Palach Private High School'),
(59473, 'https://ror.org/05bfra354', 'no_lang_code', 1, 'https://ror.org/05bfra354 PTV (Czechia)'),
(59474, 'https://ror.org/05bg8j971', 'en', 1, 'https://ror.org/05bg8j971 American Oil Chemists Society'),
(59475, 'https://ror.org/05bgg7k92', 'en', 1, 'https://ror.org/05bgg7k92 Stuart Foundation'),
(59476, 'https://ror.org/05bgkkd24', 'de', 1, 'https://ror.org/05bgkkd24 Spital Lachen'),
(59477, 'https://ror.org/05bgpbh03', 'no_lang_code', 1, 'https://ror.org/05bgpbh03 Vita Green Health Products (China) ē¶­ē‰¹å„éˆ'),
(59478, 'https://ror.org/05bh15594', 'no_lang_code', 1, 'https://ror.org/05bh15594 Odysea (United States)'),
(59479, 'https://ror.org/05bhe6d02', 'no_lang_code', 1, 'https://ror.org/05bhe6d02 MSA Schweiz GmbH Mine Safety Appliances (Switzerland)'),
(59480, 'https://ror.org/05bhj1f22', 'no_lang_code', 1, 'https://ror.org/05bhj1f22 Industrial Technology Systems (Czechia)'),
(59481, 'https://ror.org/05bhnv771', 'en', 1, 'https://ror.org/05bhnv771 Board Institute'),
(59482, 'https://ror.org/05bnbgj20', 'en', 1, 'https://ror.org/05bnbgj20 Sri Lanka Institute of Nanotechnology'),
(59483, 'https://ror.org/05bqykp48', 'cs', 1, 'https://ror.org/05bqykp48 Nemocnice Třebƭč'),
(59484, 'https://ror.org/05bresr75', 'en', 1, 'https://ror.org/05bresr75 Pottstown Area Health and Wellness Foundation'),
(59485, 'https://ror.org/05bs0r528', 'no_lang_code', 1, 'https://ror.org/05bs0r528 Ekopanely Servis (Czechia)'),
(59486, 'https://ror.org/05bsp2531', 'en', 1, 'https://ror.org/05bsp2531 Elektronikas un datorzinātņu institūts Institute of Electronics and Computer Science'),
(59487, 'https://ror.org/05bz35w69', 'cs', 1, 'https://ror.org/05bz35w69 KrkonoŔskÔ Realitní'),
(59488, 'https://ror.org/05bzvq648', 'no_lang_code', 1, 'https://ror.org/05bzvq648 BSS Architekten (Switzerland)'),
(59489, 'https://ror.org/05c0m9m16', 'en', 1, 'https://ror.org/05c0m9m16 IBM Research - Africa'),
(59490, 'https://ror.org/05c18y737', 'no_lang_code', 1, 'https://ror.org/05c18y737 Prous Institute for Biomedical Research (Spain)'),
(59491, 'https://ror.org/05c2q0q08', 'no_lang_code', 1, 'https://ror.org/05c2q0q08 Applied Pharma Research (Switzerland)'),
(59492, 'https://ror.org/05c5mh451', 'no_lang_code', 1, 'https://ror.org/05c5mh451 Glentor (Czechia)'),
(59493, 'https://ror.org/05c84ff54', 'no_lang_code', 1, 'https://ror.org/05c84ff54 Sedlecký kaolin (Czechia)'),
(59494, 'https://ror.org/05c87mw19', 'no_lang_code', 1, 'https://ror.org/05c87mw19 Vyome Biosciences (India)'),
(59495, 'https://ror.org/05cbxy397', 'de', 1, 'https://ror.org/05cbxy397 Dialog Ethik'),
(59496, 'https://ror.org/05ccjec47', 'cs', 1, 'https://ror.org/05ccjec47 OblastnĆ­ nemocnice KolĆ­n'),
(59497, 'https://ror.org/05ce10k61', 'de', 1, 'https://ror.org/05ce10k61 TCM-Klinik Bad Kötzting, TCM-Klinik Bad Kötzting, Erste deutsche Klinik für Traditionelle Chinesische Medizin'),
(59498, 'https://ror.org/05cetd543', 'no_lang_code', 1, 'https://ror.org/05cetd543 Konami (United States)'),
(59499, 'https://ror.org/05cf3m547', 'cs', 1, 'https://ror.org/05cf3m547 Nemocnice Znojmo'),
(59500, 'https://ror.org/05chynf20', 'no_lang_code', 1, 'https://ror.org/05chynf20 Designfoods (Czechia)'),
(59501, 'https://ror.org/05cjrnv40', 'es', 1, 'https://ror.org/05cjrnv40 Gobierno de La Rioja'),
(59502, 'https://ror.org/05cpjt441', 'no_lang_code', 1, 'https://ror.org/05cpjt441 FEM Consulting (Czechia)'),
(59503, 'https://ror.org/05cpqn402', 'no_lang_code', 1, 'https://ror.org/05cpqn402 ZPT Vigantice (Czechia)'),
(59504, 'https://ror.org/05crbhr50', 'fr', 1, 'https://ror.org/05crbhr50 MusƩe des beaux-arts de La Chaux-de-Fonds'),
(59505, 'https://ror.org/05crsng41', 'no_lang_code', 1, 'https://ror.org/05crsng41 Maxi-Steam (Australia)'),
(59506, 'https://ror.org/05csgyk98', 'en', 1, 'https://ror.org/05csgyk98 Egyptian Government'),
(59507, 'https://ror.org/05ctpkb66', 'en', 1, 'https://ror.org/05ctpkb66 Pendleton and Elisabeth Carey Miller Charitable Foundation'),
(59508, 'https://ror.org/05cv4ab20', 'en', 1, 'https://ror.org/05cv4ab20 Poultry Science Association'),
(59509, 'https://ror.org/05cvapf18', 'no_lang_code', 1, 'https://ror.org/05cvapf18 Gesko (Czechia)'),
(59510, 'https://ror.org/05cvdz556', 'cs', 1, 'https://ror.org/05cvdz556 Muzeum Jana Amose KomenskƩho'),
(59511, 'https://ror.org/05cwxhv57', 'en', 1, 'https://ror.org/05cwxhv57 V.V. Lukianov Orel Law Institute of the Ministry of Internal Affairs ŠžŠ Š›ŠžŠ’Š”ŠšŠ˜Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(59512, 'https://ror.org/05d1wpf45', 'en', 1, 'https://ror.org/05d1wpf45 Islamic Azad University, Dezful Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŲŒ ŲÆŲ²ŁŁˆŁ„'),
(59513, 'https://ror.org/05d34d003', 'fr', 1, 'https://ror.org/05d34d003 Institut SupƩrieur de Plasturgie d''AlenƧon'),
(59514, 'https://ror.org/05d3q8024', 'no_lang_code', 1, 'https://ror.org/05d3q8024 SmartMotion (Czechia)'),
(59515, 'https://ror.org/05d5vda41', 'no_lang_code', 1, 'https://ror.org/05d5vda41 Nafigate Corporation (Czechia)'),
(59516, 'https://ror.org/05d64cx77', 'en', 1, 'https://ror.org/05d64cx77 Wellcome Trust Centre for the History of Medicine'),
(59517, 'https://ror.org/05d6awd42', 'no_lang_code', 1, 'https://ror.org/05d6awd42 Bachem (Switzerland)'),
(59518, 'https://ror.org/05d7v2265', 'no_lang_code', 1, 'https://ror.org/05d7v2265 Hanlun Information (China) å…“ä¼¦äæ”ęÆęœ‰é™å…¬åø'),
(59519, 'https://ror.org/05d81xr24', 'en', 1, 'https://ror.org/05d81xr24 National Organization for the Professional Advancement of Black Chemists and Chemical Engineers'),
(59520, 'https://ror.org/05d9rr978', 'fr', 1, 'https://ror.org/05d9rr978 HƓpital de l''enfance'),
(59521, 'https://ror.org/05dad0z78', 'de', 1, 'https://ror.org/05dad0z78 ICM Chemnitz'),
(59522, 'https://ror.org/05dart064', 'no_lang_code', 1, 'https://ror.org/05dart064 TovĆ”rna HasicĆ­ Techniky Polička (Czechia)'),
(59523, 'https://ror.org/05dbs4128', 'no_lang_code', 1, 'https://ror.org/05dbs4128 O2 Czech Republic (Czechia)'),
(59524, 'https://ror.org/05dd7v362', 'en', 1, 'https://ror.org/05dd7v362 DermSurgery Associates'),
(59525, 'https://ror.org/05ddm8177', 'en', 1, 'https://ror.org/05ddm8177 Center of Southwest Culture'),
(59526, 'https://ror.org/05de2f050', 'no_lang_code', 1, 'https://ror.org/05de2f050 ČKD Blansko (Czechia)'),
(59527, 'https://ror.org/05dgj4s02', 'en', 1, 'https://ror.org/05dgj4s02 Association for Jewish Studies'),
(59528, 'https://ror.org/05djstx53', 'en', 1, 'https://ror.org/05djstx53 Institute of Applied Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной физики ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(59529, 'https://ror.org/05dm26171', 'en', 1, 'https://ror.org/05dm26171 Behavior Genetics Association'),
(59530, 'https://ror.org/05dn7bp33', 'en', 1, 'https://ror.org/05dn7bp33 Hartmann Müller Foundation'),
(59531, 'https://ror.org/05dp2c867', 'no_lang_code', 1, 'https://ror.org/05dp2c867 Vale (United Kingdom)'),
(59532, 'https://ror.org/05dq51n70', 'no_lang_code', 1, 'https://ror.org/05dq51n70 FilƔk (Czechia)'),
(59533, 'https://ror.org/05drp1a22', 'en', 1, 'https://ror.org/05drp1a22 Veolia Environmental Trust'),
(59534, 'https://ror.org/05dv4bz40', 'en', 1, 'https://ror.org/05dv4bz40 Institutul Naţional de Cercetare-Dezvoltare pentru Fizică Tehnică National Institute of Research and Development for Technical Physics'),
(59535, 'https://ror.org/05dvmdf20', 'en', 1, 'https://ror.org/05dvmdf20 Stop Cancer'),
(59536, 'https://ror.org/05dwj5629', 'no_lang_code', 1, 'https://ror.org/05dwj5629 Standard General (United States)'),
(59537, 'https://ror.org/05dyyxv94', 'no_lang_code', 1, 'https://ror.org/05dyyxv94 Ekostavby Brno (Czechia)'),
(59538, 'https://ror.org/05dz4gs85', 'no_lang_code', 1, 'https://ror.org/05dz4gs85 Deutsche Telekom (Czechia)'),
(59539, 'https://ror.org/05dze7277', 'en', 1, 'https://ror.org/05dze7277 Stanley Thomas Johnson Foundation Stanley Thomas Johnson Stiftung'),
(59540, 'https://ror.org/05e1aft90', 'en', 1, 'https://ror.org/05e1aft90 Hmong American Farmers Association'),
(59541, 'https://ror.org/05e3xsx31', 'no_lang_code', 1, 'https://ror.org/05e3xsx31 Pragolet (Czechia)'),
(59542, 'https://ror.org/05e6c8204', 'sv', 1, 'https://ror.org/05e6c8204 Svenska Parkinsonstiftelsen'),
(59543, 'https://ror.org/05e6y9g54', 'en', 1, 'https://ror.org/05e6y9g54 Vostochniy Research Institute for Mining Safety ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Š’Š¾ŃŃ‚ŠŠ˜Š˜ по безопасности работ в горной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(59544, 'https://ror.org/05e83v334', 'no_lang_code', 1, 'https://ror.org/05e83v334 Sottas Formative Works (Switzerland)'),
(59545, 'https://ror.org/05e8cby31', 'no_lang_code', 1, 'https://ror.org/05e8cby31 Flury and Giuliani (Switzerland)'),
(59546, 'https://ror.org/05eayn621', 'no_lang_code', 1, 'https://ror.org/05eayn621 INFRAS (Switzerland)'),
(59547, 'https://ror.org/05ee8a898', 'en', 1, 'https://ror.org/05ee8a898 State Titanium Research and Design Institute Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š˜Š¢ŠŠŠ'),
(59548, 'https://ror.org/05ee8pt56', 'en', 1, 'https://ror.org/05ee8pt56 Whiteman Foundation'),
(59549, 'https://ror.org/05ef3yq64', 'cs', 1, 'https://ror.org/05ef3yq64 Academia NakladatelstvĆ­'),
(59550, 'https://ror.org/05eft0257', 'no_lang_code', 1, 'https://ror.org/05eft0257 Hytech (Czechia)'),
(59551, 'https://ror.org/05egh1w37', 'no_lang_code', 1, 'https://ror.org/05egh1w37 Yarra Valley Water (Australia)'),
(59552, 'https://ror.org/05ehreb88', 'en', 1, 'https://ror.org/05ehreb88 Pennsylvania Commission on Crime and Delinquency'),
(59553, 'https://ror.org/05ej13b74', 'cs', 1, 'https://ror.org/05ej13b74 NÔrodní Rada Osob se Zdravotním Postižením'),
(59554, 'https://ror.org/05ejhgb17', 'fr', 1, 'https://ror.org/05ejhgb17 Clinique Valmont'),
(59555, 'https://ror.org/05enwqt08', 'no_lang_code', 1, 'https://ror.org/05enwqt08 Real Eco Technik (Czechia)'),
(59556, 'https://ror.org/05enx7587', 'en', 1, 'https://ror.org/05enx7587 Hong Kong Council on Smoking and Health é¦™ęøÆåøē…™čˆ‡å„åŗ·å§”å“”ęœƒ'),
(59557, 'https://ror.org/05etan845', 'en', 1, 'https://ror.org/05etan845 Pilot International'),
(59558, 'https://ror.org/05etrt910', 'no_lang_code', 1, 'https://ror.org/05etrt910 BioVendor (Czechia)'),
(59559, 'https://ror.org/05ezpt146', 'no_lang_code', 1, 'https://ror.org/05ezpt146 China Ningbo International Cooperation (China) äø­å›½å®ę³¢å›½é™…åˆä½œ'),
(59560, 'https://ror.org/05ezypx20', 'en', 1, 'https://ror.org/05ezypx20 Southeast Island School District'),
(59561, 'https://ror.org/05f07wy20', 'no_lang_code', 1, 'https://ror.org/05f07wy20 In-Eko Team (Czechia)'),
(59562, 'https://ror.org/05f32qs32', 'en', 1, 'https://ror.org/05f32qs32 Hellenic Thoracic Society Ελληνική Πνευμονολογική Εταιρεία'),
(59563, 'https://ror.org/05f33zm87', 'no_lang_code', 1, 'https://ror.org/05f33zm87 Axone (Switzerland)'),
(59564, 'https://ror.org/05f3wa926', 'no_lang_code', 1, 'https://ror.org/05f3wa926 Unica Technologies (Czechia)'),
(59565, 'https://ror.org/05f5ptb49', 'no_lang_code', 1, 'https://ror.org/05f5ptb49 CBS Corporation (United States)'),
(59566, 'https://ror.org/05f5sjj19', 'en', 1, 'https://ror.org/05f5sjj19 Nordic Institute of Asian Studies Nordisk Institut for Asien Studier'),
(59567, 'https://ror.org/05f65w564', 'cs', 1, 'https://ror.org/05f65w564 SjednocenÔ Organizace Nevidomých a Slabozrakých'),
(59568, 'https://ror.org/05f6rx494', 'cs', 1, 'https://ror.org/05f6rx494 Sativa Keřkov'),
(59569, 'https://ror.org/05f6xwx81', 'en', 1, 'https://ror.org/05f6xwx81 Czech Otter Foundation Fund Český nadačnĆ­ fond pro vydru'),
(59570, 'https://ror.org/05f8ada11', 'no_lang_code', 1, 'https://ror.org/05f8ada11 Neurotrack Technologies (United States)');
INSERT INTO `rors` VALUES
(59571, 'https://ror.org/05f99zn18', 'en', 1, 'https://ror.org/05f99zn18 Fruit Growing Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠžŠ²Š¾Ń‰Š°Ń€ŃŃ‚во'),
(59572, 'https://ror.org/05fan6g58', 'en', 1, 'https://ror.org/05fan6g58 Proteus Fund'),
(59573, 'https://ror.org/05fbtm431', 'en', 1, 'https://ror.org/05fbtm431 R and D Center for Valuable Recycling'),
(59574, 'https://ror.org/05fc31f73', 'no_lang_code', 1, 'https://ror.org/05fc31f73 PPG Deco Czech (Czechia)'),
(59575, 'https://ror.org/05fd45014', 'en', 1, 'https://ror.org/05fd45014 BresMed'),
(59576, 'https://ror.org/05fdcyv20', 'no_lang_code', 1, 'https://ror.org/05fdcyv20 Gecko Biomedical (France)'),
(59577, 'https://ror.org/05fe31323', 'en', 1, 'https://ror.org/05fe31323 Volga Region State Academy of Physical Culture, Sports and Tourism ŠŸŠ¾Š²Š¾Š»Š¶ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(59578, 'https://ror.org/05feyk235', 'en', 1, 'https://ror.org/05feyk235 Comparative Aircraft Flight Efficiency Foundation'),
(59579, 'https://ror.org/05ffbqz77', 'no_lang_code', 1, 'https://ror.org/05ffbqz77 Bańa (Czechia)'),
(59580, 'https://ror.org/05ffr4y89', 'de', 1, 'https://ror.org/05ffr4y89 Psychiatriezentrum Münsingen'),
(59581, 'https://ror.org/05fg5zm77', 'no_lang_code', 1, 'https://ror.org/05fg5zm77 Modeco (Czechia)'),
(59582, 'https://ror.org/05frzy624', 'nl', 1, 'https://ror.org/05frzy624 Kennisnet'),
(59583, 'https://ror.org/05fsqes40', 'no_lang_code', 1, 'https://ror.org/05fsqes40 SpeechTech (Czechia)'),
(59584, 'https://ror.org/05ft9p311', 'no_lang_code', 1, 'https://ror.org/05ft9p311 Hobra Å kolnĆ­k (Czechia)'),
(59585, 'https://ror.org/05fw7wg22', 'fr', 1, 'https://ror.org/05fw7wg22 LatƩnium'),
(59586, 'https://ror.org/05fx9dg28', 'no_lang_code', 1, 'https://ror.org/05fx9dg28 G E M A, s.r.o. Automatizace Technologických Procesů General Engineering Measurement and Automation (Czechia)'),
(59587, 'https://ror.org/05fy92604', 'no_lang_code', 1, 'https://ror.org/05fy92604 Destrux (Czechia)'),
(59588, 'https://ror.org/05g1gph86', 'en', 1, 'https://ror.org/05g1gph86 Nutrition International'),
(59589, 'https://ror.org/05g1hyz84', 'en', 1, 'https://ror.org/05g1hyz84 Juntendo University Nerima Hospital é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žē·“é¦¬ē—…é™¢'),
(59590, 'https://ror.org/05g1thn98', 'en', 1, 'https://ror.org/05g1thn98 Shanxi Province Youth Development Foundation å±±č„æēœé’å°‘å¹“å‘å±•åŸŗé‡‘ä¼š'),
(59591, 'https://ror.org/05g23w557', 'fr', 1, 'https://ror.org/05g23w557 Institut National de la Statistique'),
(59592, 'https://ror.org/05g2nyd29', 'no_lang_code', 1, 'https://ror.org/05g2nyd29 BetaCat Pharmaceuticals (United States)'),
(59593, 'https://ror.org/05g34t253', 'no_lang_code', 1, 'https://ror.org/05g34t253 Planergemeinschaft für Stadt und Raum'),
(59594, 'https://ror.org/05g3kjm83', 'no_lang_code', 1, 'https://ror.org/05g3kjm83 IVEP (Czechia)'),
(59595, 'https://ror.org/05g801a49', 'en', 1, 'https://ror.org/05g801a49 Kurdistan Regional Government Ų­ŁƒŁˆŁ…Ų© Ų§Ł‚Ł„ŁŠŁ… ŁƒŲ±ŲÆŲ³ŲŖŲ§Ł†ā€Žā€Ž Ų­Ś©ŁˆŁˆŁ…Ū•ŲŖŪŒ Ł‡Ū•Ų±ŪŽŁ…ŪŒ Ś©ŁˆŲ±ŲÆŲ³ŲŖŲ§Ł†'),
(59596, 'https://ror.org/05g9y6w44', 'no_lang_code', 1, 'https://ror.org/05g9y6w44 Connecting Health Innovations (United States)'),
(59597, 'https://ror.org/05gaz1x25', 'no_lang_code', 1, 'https://ror.org/05gaz1x25 Hottinger Baldwin Messtechnik (United States)'),
(59598, 'https://ror.org/05gbven85', 'en', 1, 'https://ror.org/05gbven85 Wisconsin Institutes for Discovery'),
(59599, 'https://ror.org/05gc01c65', 'no_lang_code', 1, 'https://ror.org/05gc01c65 Agroprojekce LitomyŔl (Czechia)'),
(59600, 'https://ror.org/05gebng48', 'en', 1, 'https://ror.org/05gebng48 CPCL Polytechnic College'),
(59601, 'https://ror.org/05gemrx09', 'no_lang_code', 1, 'https://ror.org/05gemrx09 Argomedical (Switzerland)'),
(59602, 'https://ror.org/05gfvgk18', 'no_lang_code', 1, 'https://ror.org/05gfvgk18 Hydrosoft VeleslavĆ­n (Czechia)'),
(59603, 'https://ror.org/05ghvzc65', 'no_lang_code', 1, 'https://ror.org/05ghvzc65 Sanofi (Czechia)'),
(59604, 'https://ror.org/05gjbbg60', 'en', 1, 'https://ror.org/05gjbbg60 IBM Research - Austin'),
(59605, 'https://ror.org/05gjmqb84', 'no_lang_code', 1, 'https://ror.org/05gjmqb84 Rawat Consulting (Czechia)'),
(59606, 'https://ror.org/05gn2nm29', 'no_lang_code', 1, 'https://ror.org/05gn2nm29 Viditech (Czechia)'),
(59607, 'https://ror.org/05gnhhg32', 'en', 1, 'https://ror.org/05gnhhg32 Carilene'),
(59608, 'https://ror.org/05gnj5y10', 'no_lang_code', 1, 'https://ror.org/05gnj5y10 Rema SystƩm (Czechia)'),
(59609, 'https://ror.org/05gpa6n30', 'no_lang_code', 1, 'https://ror.org/05gpa6n30 CSInstruments (France)'),
(59610, 'https://ror.org/05gv51k44', 'no_lang_code', 1, 'https://ror.org/05gv51k44 KM Beta (Czechia)'),
(59611, 'https://ror.org/05gvkjb48', 'en', 1, 'https://ror.org/05gvkjb48 Office of the Assistant Secretary for Planning and Evaluation'),
(59612, 'https://ror.org/05gvxpc78', 'no_lang_code', 1, 'https://ror.org/05gvxpc78 MSA (Czechia)'),
(59613, 'https://ror.org/05gwp6g74', 'en', 1, 'https://ror.org/05gwp6g74 Accredited Private Hospital Villa Regina Ospedale Privato Accreditato Villa Regina'),
(59614, 'https://ror.org/05gyj2g50', 'en', 1, 'https://ror.org/05gyj2g50 Royal Victoria Hospital'),
(59615, 'https://ror.org/05h0e2y85', 'en', 1, 'https://ror.org/05h0e2y85 CittĆ  della Speranza Foundation'),
(59616, 'https://ror.org/05h0xb276', 'fr', 1, 'https://ror.org/05h0xb276 Service de l''Enfance et de la Jeunesse'),
(59617, 'https://ror.org/05h1ve754', 'no_lang_code', 1, 'https://ror.org/05h1ve754 NXP (Czechia)'),
(59618, 'https://ror.org/05h2qqq38', 'no_lang_code', 1, 'https://ror.org/05h2qqq38 Rhopoint Instruments (United Kingdom)'),
(59619, 'https://ror.org/05h3e9g05', 'cs', 1, 'https://ror.org/05h3e9g05 ObchodnĆ­ Akademie'),
(59620, 'https://ror.org/05h3vzz10', 'no_lang_code', 1, 'https://ror.org/05h3vzz10 Solid (United States)'),
(59621, 'https://ror.org/05h634p83', 'no_lang_code', 1, 'https://ror.org/05h634p83 Credit Suisse (Switzerland)'),
(59622, 'https://ror.org/05h78k766', 'no_lang_code', 1, 'https://ror.org/05h78k766 Baker Hughes (United Kingdom)'),
(59623, 'https://ror.org/05h7bqz94', 'en', 1, 'https://ror.org/05h7bqz94 Brown-Spath & Associates'),
(59624, 'https://ror.org/05h7qq668', 'cs', 1, 'https://ror.org/05h7qq668 Svaz Chovatelů Českého Strakatého Skotu'),
(59625, 'https://ror.org/05h7xpn20', 'es', 1, 'https://ror.org/05h7xpn20 Servicio Nacional de MeteorologĆ­a e HidrologĆ­a del PerĆŗ'),
(59626, 'https://ror.org/05h7zrz56', 'es', 1, 'https://ror.org/05h7zrz56 Atapuerca Foundation Fundación Atapuerca'),
(59627, 'https://ror.org/05ha3xf54', 'en', 1, 'https://ror.org/05ha3xf54 Korea Institute of Atmospheric Prediction Systems ķ•œźµ­ ėŒ€źø° 예츔 ģ‹œģŠ¤ķ…œ ķ•™ķšŒ'),
(59628, 'https://ror.org/05hakte81', 'no_lang_code', 1, 'https://ror.org/05hakte81 LogopedickĆ” společnost MiloÅ”e SovĆ”ka (Czechia)'),
(59629, 'https://ror.org/05hehnx86', 'en', 1, 'https://ror.org/05hehnx86 Hunger Task Force'),
(59630, 'https://ror.org/05herht24', 'en', 1, 'https://ror.org/05herht24 Czechoslovak Society of Arts and Sciences'),
(59631, 'https://ror.org/05hjw0y48', 'no_lang_code', 1, 'https://ror.org/05hjw0y48 Bedag Informatik (Switzerland)'),
(59632, 'https://ror.org/05hkd2w18', 'fr', 1, 'https://ror.org/05hkd2w18 Gymnase de la rue des Alpes'),
(59633, 'https://ror.org/05hnbrd32', 'no_lang_code', 1, 'https://ror.org/05hnbrd32 Wessex Lifts (United Kingdom)'),
(59634, 'https://ror.org/05hnjz787', 'en', 1, 'https://ror.org/05hnjz787 Foundation for Growth Science ęˆé•·ē§‘å­¦å”ä¼š'),
(59635, 'https://ror.org/05hq3fk51', 'de', 1, 'https://ror.org/05hq3fk51 Departement für Erziehung und Kultur'),
(59636, 'https://ror.org/05hr50502', 'en', 1, 'https://ror.org/05hr50502 Plumbing Heating Cooling Contractors National Association Educational Foundation'),
(59637, 'https://ror.org/05hsqsk33', 'en', 1, 'https://ror.org/05hsqsk33 Imaging Center'),
(59638, 'https://ror.org/05htmcq63', 'en', 1, 'https://ror.org/05htmcq63 Nordic Co-operation Nordiske Samarbejde'),
(59639, 'https://ror.org/05htqbc94', 'no_lang_code', 1, 'https://ror.org/05htqbc94 VRM Labs (United States)'),
(59640, 'https://ror.org/05hvp7v67', 'no_lang_code', 1, 'https://ror.org/05hvp7v67 Lacrum VelkĆ© MeziÅ™Ć­ÄĆ­ (Czechia)'),
(59641, 'https://ror.org/05hw2fa25', 'no_lang_code', 1, 'https://ror.org/05hw2fa25 Agra Group (Czechia)'),
(59642, 'https://ror.org/05hwj5b39', 'no_lang_code', 1, 'https://ror.org/05hwj5b39 Bio Nutrition Health Products (United Kingdom)'),
(59643, 'https://ror.org/05hwjr867', 'en', 1, 'https://ror.org/05hwjr867 Municipal Museum in Celakovice MěstskĆ© muzeum v ČelĆ”kovicĆ­ch'),
(59644, 'https://ror.org/05hxrt533', 'no_lang_code', 1, 'https://ror.org/05hxrt533 Tatra (Czechia)'),
(59645, 'https://ror.org/05hy29v76', 'cs', 1, 'https://ror.org/05hy29v76 Nemocnice Na PleŔi'),
(59646, 'https://ror.org/05hy51730', 'no_lang_code', 1, 'https://ror.org/05hy51730 Sage Energo (Czechia)'),
(59647, 'https://ror.org/05hy9mg53', 'de', 1, 'https://ror.org/05hy9mg53 Hochgebirgsklinik Davos'),
(59648, 'https://ror.org/05hzbx907', 'en', 1, 'https://ror.org/05hzbx907 National Digital Research Centre'),
(59649, 'https://ror.org/05hzdft06', 'en', 1, 'https://ror.org/05hzdft06 Center for Food Safety and Applied Nutrition'),
(59650, 'https://ror.org/05hzgh473', 'no_lang_code', 1, 'https://ror.org/05hzgh473 Institute of Super Compression Technologies (Japan)'),
(59651, 'https://ror.org/05j0k2q54', 'en', 1, 'https://ror.org/05j0k2q54 Shanghai Association for Science and Technology'),
(59652, 'https://ror.org/05j159997', 'nl', 1, 'https://ror.org/05j159997 Prins Bernhard Cultuurfonds'),
(59653, 'https://ror.org/05j15g034', 'no_lang_code', 1, 'https://ror.org/05j15g034 STÚ K (Czechia)'),
(59654, 'https://ror.org/05j1j8v70', 'no_lang_code', 1, 'https://ror.org/05j1j8v70 KCI (United Kingdom)'),
(59655, 'https://ror.org/05j1paw03', 'en', 1, 'https://ror.org/05j1paw03 Conference of Research Workers in Animal Diseases'),
(59656, 'https://ror.org/05j242h88', 'fr', 1, 'https://ror.org/05j242h88 RƩseau de SantƩ VitalitƩ, VitalitƩ Health Network'),
(59657, 'https://ror.org/05j2csz34', 'pt', 1, 'https://ror.org/05j2csz34 Institutos Lacte, Institutos Lactec'),
(59658, 'https://ror.org/05j34w995', 'no_lang_code', 1, 'https://ror.org/05j34w995 RaŔelina (Czechia)'),
(59659, 'https://ror.org/05j3vdc31', 'no_lang_code', 1, 'https://ror.org/05j3vdc31 Marel (United States)'),
(59660, 'https://ror.org/05j3y0344', 'no_lang_code', 1, 'https://ror.org/05j3y0344 Koch Industries (France)'),
(59661, 'https://ror.org/05j3ze875', 'en', 1, 'https://ror.org/05j3ze875 Shared Earth Foundation'),
(59662, 'https://ror.org/05j45ps30', 'no_lang_code', 1, 'https://ror.org/05j45ps30 Compotech (Czechia)'),
(59663, 'https://ror.org/05j4zds77', 'en', 1, 'https://ror.org/05j4zds77 Virginia Lakes and Watersheds Association'),
(59664, 'https://ror.org/05j6a3y70', 'no_lang_code', 1, 'https://ror.org/05j6a3y70 ZAS Věž (Czechia)'),
(59665, 'https://ror.org/05j6b7w15', 'no_lang_code', 1, 'https://ror.org/05j6b7w15 Foundation Instruments (United States)'),
(59666, 'https://ror.org/05j7bjh16', 'fr', 1, 'https://ror.org/05j7bjh16 Police Cantonale de GenĆØve'),
(59667, 'https://ror.org/05jcbzw72', 'en', 1, 'https://ror.org/05jcbzw72 Scientific Research Institute of the Cable Industry был созГан ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кабельной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(59668, 'https://ror.org/05jddt560', 'no_lang_code', 1, 'https://ror.org/05jddt560 Cell Medica (Switzerland)'),
(59669, 'https://ror.org/05jdrrw50', 'de', 1, 'https://ror.org/05jdrrw50 Beilstein-Institut, Beilstein-Institut zur Fƶrderung der Chemischen Wissenschaften'),
(59670, 'https://ror.org/05jf66d94', 'no_lang_code', 1, 'https://ror.org/05jf66d94 Juho Vainio Foundation Juho Vainion SƤƤtiƶ'),
(59671, 'https://ror.org/05jg7dd90', 'no_lang_code', 1, 'https://ror.org/05jg7dd90 Photronics (United States)'),
(59672, 'https://ror.org/05jghsy80', 'de', 1, 'https://ror.org/05jghsy80 Holbein-Gymnasium Augsburg'),
(59673, 'https://ror.org/05jjkgv58', 'en', 1, 'https://ror.org/05jjkgv58 High Pressure Gas Safety Institute of Japan é«˜åœ§åŠ›ć‚¬ć‚¹å®‰å…Øē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(59674, 'https://ror.org/05jkrds81', 'no_lang_code', 1, 'https://ror.org/05jkrds81 Vibrom (Czechia)'),
(59675, 'https://ror.org/05jmhh281', 'en', 1, 'https://ror.org/05jmhh281 National Center for Toxicological Research'),
(59676, 'https://ror.org/05jngx315', 'no_lang_code', 1, 'https://ror.org/05jngx315 ZPA Smart Energy (Czechia)'),
(59677, 'https://ror.org/05jpbj586', 'no_lang_code', 1, 'https://ror.org/05jpbj586 Rabbit (Czechia)'),
(59678, 'https://ror.org/05jpnvr67', 'no_lang_code', 1, 'https://ror.org/05jpnvr67 Unicorn (Czechia)'),
(59679, 'https://ror.org/05jrq1t13', 'en', 1, 'https://ror.org/05jrq1t13 Kliniken Valens Valens Clinics'),
(59680, 'https://ror.org/05js6gq32', 'no_lang_code', 1, 'https://ror.org/05js6gq32 Urbanismus Architektura Design Studio (Czechia)'),
(59681, 'https://ror.org/05jtrhd14', 'en', 1, 'https://ror.org/05jtrhd14 Department of Early Education and Care'),
(59682, 'https://ror.org/05jwty529', 'en', 1, 'https://ror.org/05jwty529 Kone Foundation Koneen SƤƤtiƶ'),
(59683, 'https://ror.org/05jxt4a42', 'no_lang_code', 1, 'https://ror.org/05jxt4a42 Toseda (Czechia)'),
(59684, 'https://ror.org/05k1g7h17', 'no_lang_code', 1, 'https://ror.org/05k1g7h17 Aries (Czechia)'),
(59685, 'https://ror.org/05k1j1x39', 'no_lang_code', 1, 'https://ror.org/05k1j1x39 JES Tech (United States)'),
(59686, 'https://ror.org/05k25vk24', 'no_lang_code', 1, 'https://ror.org/05k25vk24 Saudi Arabia Basic Industries (United States)'),
(59687, 'https://ror.org/05k438q37', 'no_lang_code', 1, 'https://ror.org/05k438q37 Semma Therapeutics (United States)'),
(59688, 'https://ror.org/05k6wtk05', 'no_lang_code', 1, 'https://ror.org/05k6wtk05 Taktici (Czechia)'),
(59689, 'https://ror.org/05k7j3y71', 'no_lang_code', 1, 'https://ror.org/05k7j3y71 SportovnĆ­ Centrum Atlas (Czechia)'),
(59690, 'https://ror.org/05k7znz17', 'no_lang_code', 1, 'https://ror.org/05k7znz17 Elcom (Czechia)'),
(59691, 'https://ror.org/05k829w13', 'en', 1, 'https://ror.org/05k829w13 New Mexico Alliance of Health Councils'),
(59692, 'https://ror.org/05katjf64', 'no_lang_code', 1, 'https://ror.org/05katjf64 Cidelec (France)'),
(59693, 'https://ror.org/05kcj6c10', 'en', 1, 'https://ror.org/05kcj6c10 VA Heartland Network'),
(59694, 'https://ror.org/05kcspq23', 'no_lang_code', 1, 'https://ror.org/05kcspq23 Belden (Germany)'),
(59695, 'https://ror.org/05kg16203', 'en', 1, 'https://ror.org/05kg16203 Center Of Theological Inquiry'),
(59696, 'https://ror.org/05kgdba77', 'de', 1, 'https://ror.org/05kgdba77 Gelenkzentrum Zürich'),
(59697, 'https://ror.org/05kk1a757', 'no_lang_code', 1, 'https://ror.org/05kk1a757 Daikin (United States) ćƒ€ć‚¤ć‚­ćƒ³å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(59698, 'https://ror.org/05kks4d25', 'no_lang_code', 1, 'https://ror.org/05kks4d25 Bayer (India)'),
(59699, 'https://ror.org/05km36r23', 'en', 1, 'https://ror.org/05km36r23 Institute of Cytochemistry and Molecular Pharmacology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цитохимии Šø Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ фармакологии'),
(59700, 'https://ror.org/05kntkn59', 'no_lang_code', 1, 'https://ror.org/05kntkn59 Biocont Laboratory (Czechia)'),
(59701, 'https://ror.org/05kvv8w92', 'en', 1, 'https://ror.org/05kvv8w92 Foundation for promoting Information and Communication Technology Fundaţia Pentru Promovarea Tehnologiei Informaţiei şi Comunicaţiei'),
(59702, 'https://ror.org/05kvwxg84', 'no_lang_code', 1, 'https://ror.org/05kvwxg84 Amylon (Czechia)'),
(59703, 'https://ror.org/05kz5x194', 'fr', 1, 'https://ror.org/05kz5x194 Clinique Romande de RƩadaptation'),
(59704, 'https://ror.org/05kzgnp84', 'en', 1, 'https://ror.org/05kzgnp84 Changchun Bureau of Science and Technology é•æę˜„åø‚ē§‘ęŠ€å±€'),
(59705, 'https://ror.org/05m0z0h30', 'en', 1, 'https://ror.org/05m0z0h30 Nano and Advanced Materials Institute'),
(59706, 'https://ror.org/05m135a87', 'no_lang_code', 1, 'https://ror.org/05m135a87 Wekus (Czechia)'),
(59707, 'https://ror.org/05m7g4v96', 'de', 1, 'https://ror.org/05m7g4v96 Von Behring-Rƶntgen-Stiftung'),
(59708, 'https://ror.org/05m7ng931', 'en', 1, 'https://ror.org/05m7ng931 Professional Beef Services'),
(59709, 'https://ror.org/05m8j0776', 'no_lang_code', 1, 'https://ror.org/05m8j0776 Trotti and Associates (United States)'),
(59710, 'https://ror.org/05m9zbc57', 'no_lang_code', 1, 'https://ror.org/05m9zbc57 ČeskoslovenskĆ” Plavba LabskĆ” (Czechia) ČeskoslovenskĆ” PlavebnĆ­ AkciovĆ” Společnost LabskĆ”'),
(59711, 'https://ror.org/05mb6z682', 'da', 1, 'https://ror.org/05mb6z682 Helsefonden'),
(59712, 'https://ror.org/05mc17455', 'en', 1, 'https://ror.org/05mc17455 U.S. Embassy and Consulates in India'),
(59713, 'https://ror.org/05mcn5a93', 'cs', 1, 'https://ror.org/05mcn5a93 MAS DolnĆ­ Morava'),
(59714, 'https://ror.org/05mczez68', 'no_lang_code', 1, 'https://ror.org/05mczez68 Rosenthaler + Partner (Switzerland)'),
(59715, 'https://ror.org/05mddv816', 'cs', 1, 'https://ror.org/05mddv816 SprƔva NƔrodnƭho Parku Podyjƭ'),
(59716, 'https://ror.org/05mh4bk89', 'en', 1, 'https://ror.org/05mh4bk89 Whole Systems Foundation'),
(59717, 'https://ror.org/05mh5m090', 'no_lang_code', 1, 'https://ror.org/05mh5m090 Spenco Medical (United Kingdom)'),
(59718, 'https://ror.org/05mh9zj78', 'no_lang_code', 1, 'https://ror.org/05mh9zj78 Navertica (Czechia)'),
(59719, 'https://ror.org/05mjfsy88', 'en', 1, 'https://ror.org/05mjfsy88 National Laboratory for High Performance Computing'),
(59720, 'https://ror.org/05mk8pj48', 'no_lang_code', 1, 'https://ror.org/05mk8pj48 Metrostav (Czechia)'),
(59721, 'https://ror.org/05mpgew40', 'en', 1, 'https://ror.org/05mpgew40 Institute of Botany ՀՀ Ō³Ō±Ō± Ō²ÕøÖ‚Õ½Õ”Õ¢Õ”Õ¶ÕøÖ‚Õ©ÕµÕ”Õ¶ Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(59722, 'https://ror.org/05mq1qn32', 'no_lang_code', 1, 'https://ror.org/05mq1qn32 Simgeo (Czechia)'),
(59723, 'https://ror.org/05mrcfm45', 'es', 1, 'https://ror.org/05mrcfm45 Nes Naturaleza'),
(59724, 'https://ror.org/05msa1857', 'it', 1, 'https://ror.org/05msa1857 Fondazione Pellegrini Canevascini'),
(59725, 'https://ror.org/05mspvn40', 'no_lang_code', 1, 'https://ror.org/05mspvn40 Isuzu Motors (United States)'),
(59726, 'https://ror.org/05mtsfd08', 'no_lang_code', 1, 'https://ror.org/05mtsfd08 CleverTech (Czechia)'),
(59727, 'https://ror.org/05mv2zc24', 'no_lang_code', 1, 'https://ror.org/05mv2zc24 Habena (Czechia)'),
(59728, 'https://ror.org/05mv3wa59', 'en', 1, 'https://ror.org/05mv3wa59 Shikoku Research Institute ę Ŗå¼ä¼šē¤¾å››å›½ē·åˆē ”ē©¶ę‰€'),
(59729, 'https://ror.org/05mv7cd65', 'en', 1, 'https://ror.org/05mv7cd65 Russian State Archive of Scientific and Technical Documentation ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾Š³Š¾ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š¾Š±Š¾Ń€ŃƒŠ“Š¾Š²Š°Š½ŠøŃ Šø автоприборов'),
(59730, 'https://ror.org/05mvk0v07', 'no_lang_code', 1, 'https://ror.org/05mvk0v07 RFspin (Czechia)'),
(59731, 'https://ror.org/05mx4xx46', 'en', 1, 'https://ror.org/05mx4xx46 Weihai Science and Technology Bureau åØęµ·åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(59732, 'https://ror.org/05mxwbv26', 'no_lang_code', 1, 'https://ror.org/05mxwbv26 Soft Targets Protection Institute (Czechia)'),
(59733, 'https://ror.org/05mygvq15', 'no_lang_code', 1, 'https://ror.org/05mygvq15 Sportas (Czechia)'),
(59734, 'https://ror.org/05mz3p784', 'no_lang_code', 1, 'https://ror.org/05mz3p784 Eurogas (Czechia)'),
(59735, 'https://ror.org/05mzd7q50', 'en', 1, 'https://ror.org/05mzd7q50 Bildungsdirektion Volksschulamt Office of Elementary Education'),
(59736, 'https://ror.org/05n0b7q40', 'en', 1, 'https://ror.org/05n0b7q40 Geological Exploration Institute of Shandong Zhengyuan å±±äøœę­£å…ƒåœ°č“Øå‹˜ęŸ„é™¢'),
(59737, 'https://ror.org/05n0new61', 'no_lang_code', 1, 'https://ror.org/05n0new61 Enterade (United States)'),
(59738, 'https://ror.org/05n1rgb70', 'en', 1, 'https://ror.org/05n1rgb70 Volvo Research and Education Foundations'),
(59739, 'https://ror.org/05n1xkq03', 'no_lang_code', 1, 'https://ror.org/05n1xkq03 Yves Rocher (France)'),
(59740, 'https://ror.org/05n2b6e77', 'en', 1, 'https://ror.org/05n2b6e77 Czech Bat Conservation Society ČeskĆ” společnost pro ochranu netopýrÅÆ'),
(59741, 'https://ror.org/05n31vd29', 'en', 1, 'https://ror.org/05n31vd29 Czech National Bank ČeskÔ nÔrodní banka'),
(59742, 'https://ror.org/05n4ryh34', 'no_lang_code', 1, 'https://ror.org/05n4ryh34 Median (Czechia)'),
(59743, 'https://ror.org/05n6dzg85', 'en', 1, 'https://ror.org/05n6dzg85 Sverige Amerikastiftelsen Sweden America Foundation'),
(59744, 'https://ror.org/05n6yb463', 'no_lang_code', 1, 'https://ror.org/05n6yb463 Rütter Soceco (Switzerland)'),
(59745, 'https://ror.org/05n813p54', 'no_lang_code', 1, 'https://ror.org/05n813p54 Burckhardt+Partner (Switzerland)'),
(59746, 'https://ror.org/05n9nqv74', 'en', 1, 'https://ror.org/05n9nqv74 Western Region Agricultural Research Center č„æę—„ęœ¬č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(59747, 'https://ror.org/05nazes57', 'no_lang_code', 1, 'https://ror.org/05nazes57 L3 MƩdical (France)'),
(59748, 'https://ror.org/05nazff88', 'cs', 1, 'https://ror.org/05nazff88 Muzeum Novojičƭnska'),
(59749, 'https://ror.org/05nbt0w25', 'en', 1, 'https://ror.org/05nbt0w25 Avon Medical Centre'),
(59750, 'https://ror.org/05ne9z340', 'no_lang_code', 1, 'https://ror.org/05ne9z340 Foerster (Germany)'),
(59751, 'https://ror.org/05nef8h70', 'no_lang_code', 1, 'https://ror.org/05nef8h70 GSP (Czechia)'),
(59752, 'https://ror.org/05nf05q11', 'en', 1, 'https://ror.org/05nf05q11 Nebraska Game and Parks Commission'),
(59753, 'https://ror.org/05ng63712', 'en', 1, 'https://ror.org/05ng63712 Clifton T. Perkins Hospital Center'),
(59754, 'https://ror.org/05nhp5y26', 'en', 1, 'https://ror.org/05nhp5y26 Forest Nursery Association SdruženĆ­ lesnĆ­ch Å”kolkařů'),
(59755, 'https://ror.org/05nhx4339', 'en', 1, 'https://ror.org/05nhx4339 Umbricht Attorneys'),
(59756, 'https://ror.org/05nj2pq60', 'no_lang_code', 1, 'https://ror.org/05nj2pq60 Alliance Instruments (France)'),
(59757, 'https://ror.org/05nm81f72', 'no_lang_code', 1, 'https://ror.org/05nm81f72 Braas Monier (United Kingdom)'),
(59758, 'https://ror.org/05nmp3276', 'en', 1, 'https://ror.org/05nmp3276 Vallee Foundation'),
(59759, 'https://ror.org/05nnj5q38', 'no_lang_code', 1, 'https://ror.org/05nnj5q38 ACM Instruments (United Kingdom)'),
(59760, 'https://ror.org/05nqm0q11', 'no_lang_code', 1, 'https://ror.org/05nqm0q11 Institute for Sustainable Process Technology'),
(59761, 'https://ror.org/05nrfbq13', 'en', 1, 'https://ror.org/05nrfbq13 Czech Welding Society ČeskĆ” SvÔřečskĆ” Společnost ANB'),
(59762, 'https://ror.org/05nrryz05', 'no_lang_code', 1, 'https://ror.org/05nrryz05 Eago Systems (Czechia)'),
(59763, 'https://ror.org/05nsn5c92', 'no_lang_code', 1, 'https://ror.org/05nsn5c92 Ammann (Switzerland)'),
(59764, 'https://ror.org/05nynx616', 'en', 1, 'https://ror.org/05nynx616 EUC Group'),
(59765, 'https://ror.org/05nzc1r88', 'en', 1, 'https://ror.org/05nzc1r88 The Synergetic Innovation Center for Advanced Materials ę±Ÿč‹å…ˆčæ›ē”Ÿē‰©äøŽåŒ–å­¦åˆ¶é€ ååŒåˆ›ę–°äø­åæƒ'),
(59766, 'https://ror.org/05p0pbv75', 'no_lang_code', 1, 'https://ror.org/05p0pbv75 Toyota Motor Corporation (Switzerland)'),
(59767, 'https://ror.org/05p1fxc65', 'en', 1, 'https://ror.org/05p1fxc65 Cedar Grove Institute for Sustainable Communities'),
(59768, 'https://ror.org/05p46v555', 'en', 1, 'https://ror.org/05p46v555 Centre for Advanced Study'),
(59769, 'https://ror.org/05p577g88', 'en', 1, 'https://ror.org/05p577g88 Scoliosis Research Society'),
(59770, 'https://ror.org/05p5nhz16', 'de', 1, 'https://ror.org/05p5nhz16 Staatskanzlei des Kantons Zürich'),
(59771, 'https://ror.org/05p799h65', 'de', 1, 'https://ror.org/05p799h65 ch Stiftung für Eidgenössische Zusammenarbeit'),
(59772, 'https://ror.org/05p87d983', 'en', 1, 'https://ror.org/05p87d983 Institute of Medical Polymers'),
(59773, 'https://ror.org/05pafsz05', 'no_lang_code', 1, 'https://ror.org/05pafsz05 Sagittaria'),
(59774, 'https://ror.org/05pb4em20', 'en', 1, 'https://ror.org/05pb4em20 Bonn-Cologne Graduate School of Physics and Astronomy'),
(59775, 'https://ror.org/05pcmd548', 'en', 1, 'https://ror.org/05pcmd548 Institute of Chemistry of Silicates named after I.V. Grebenshchikov Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии силикатов имени И. Š’. Гребенщикова Š ŠŠ'),
(59776, 'https://ror.org/05pctrr97', 'en', 1, 'https://ror.org/05pctrr97 Wisconsin Turfgrass Association'),
(59777, 'https://ror.org/05pe31w16', 'en', 1, 'https://ror.org/05pe31w16 Shorai Foundation For Science And Technology å…¬ē›Šč²”å›£ę³•äŗŗ ę¾ē±Ÿē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(59778, 'https://ror.org/05ph9xy04', 'sv', 1, 'https://ror.org/05ph9xy04 Stiftelsen Folke Bernadottes Minnesfond'),
(59779, 'https://ror.org/05pmpsf41', 'no_lang_code', 1, 'https://ror.org/05pmpsf41 Fokus (Czechia)'),
(59780, 'https://ror.org/05pq72r61', 'cs', 1, 'https://ror.org/05pq72r61 Poliklinika BudějovickĆ”'),
(59781, 'https://ror.org/05ps69x32', 'cs', 1, 'https://ror.org/05ps69x32 Fond DalŔího VzdělĆ”vĆ”nĆ­'),
(59782, 'https://ror.org/05pvet403', 'de', 1, 'https://ror.org/05pvet403 Oncosuisse'),
(59783, 'https://ror.org/05pvypf90', 'en', 1, 'https://ror.org/05pvypf90 Open Source Drug Discovery'),
(59784, 'https://ror.org/05pw2f159', 'en', 1, 'https://ror.org/05pw2f159 Somali Bantu Community Association of Maine'),
(59785, 'https://ror.org/05pwp0t27', 'no_lang_code', 1, 'https://ror.org/05pwp0t27 Getinge (United States)'),
(59786, 'https://ror.org/05pzez236', 'da', 1, 'https://ror.org/05pzez236 Ville Heises Legat'),
(59787, 'https://ror.org/05pzshy96', 'no_lang_code', 1, 'https://ror.org/05pzshy96 Tenez (Czechia)'),
(59788, 'https://ror.org/05q0skb15', 'en', 1, 'https://ror.org/05q0skb15 Tawani Foundation'),
(59789, 'https://ror.org/05q0yrx29', 'no_lang_code', 1, 'https://ror.org/05q0yrx29 ZVU (Czechia)'),
(59790, 'https://ror.org/05q1vsm15', 'en', 1, 'https://ror.org/05q1vsm15 International Society of Electrochemistry'),
(59791, 'https://ror.org/05q2t4173', 'no_lang_code', 1, 'https://ror.org/05q2t4173 Vejce (Czechia)'),
(59792, 'https://ror.org/05q57a218', 'en', 1, 'https://ror.org/05q57a218 Arc of Kentucky'),
(59793, 'https://ror.org/05q59qz08', 'en', 1, 'https://ror.org/05q59qz08 Pinkerton Foundation'),
(59794, 'https://ror.org/05q6e7g57', 'no_lang_code', 1, 'https://ror.org/05q6e7g57 Cidem Hranice (Czechia)'),
(59795, 'https://ror.org/05q8jhf15', 'en', 1, 'https://ror.org/05q8jhf15 Institute for Minority Studies MTA TÔrsadalomtudomÔnyi Kutatóközpont Kisebbségkutató Intézet'),
(59796, 'https://ror.org/05q9d6816', 'no_lang_code', 1, 'https://ror.org/05q9d6816 Mefi (Czechia)'),
(59797, 'https://ror.org/05qaacr29', 'fr', 1, 'https://ror.org/05qaacr29 HƓpital intercantonal de la Broye'),
(59798, 'https://ror.org/05qbxf960', 'en', 1, 'https://ror.org/05qbxf960 Shenzhen Institute for Drug Control'),
(59799, 'https://ror.org/05qds0828', 'en', 1, 'https://ror.org/05qds0828 Society for Applied Microbiology'),
(59800, 'https://ror.org/05qepn613', 'no_lang_code', 1, 'https://ror.org/05qepn613 Merrill (United States)'),
(59801, 'https://ror.org/05qepz429', 'no_lang_code', 1, 'https://ror.org/05qepz429 Resim (Czechia)'),
(59802, 'https://ror.org/05qjt5a38', 'en', 1, 'https://ror.org/05qjt5a38 Royal Canadian Military Institute'),
(59803, 'https://ror.org/05qkh8j74', 'de', 1, 'https://ror.org/05qkh8j74 Archäologischen Dienst Graubünden Servizio archeologico dei Grigioni servetsch archeologic dal Grischun'),
(59804, 'https://ror.org/05qnx7t56', 'cs', 1, 'https://ror.org/05qnx7t56 Svaz ChovatelÅÆ Prasat v ČechĆ”ch a na Moravě'),
(59805, 'https://ror.org/05qp2sp52', 'en', 1, 'https://ror.org/05qp2sp52 Beijing Dongfang Hongsheng New Energy Application Technology Research Institute åŒ—äŗ¬äøœę–¹ēŗ¢å‡ę–°čƒ½ęŗåŗ”ē”ØęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åøē®€ä»‹'),
(59806, 'https://ror.org/05qrxbp40', 'no_lang_code', 1, 'https://ror.org/05qrxbp40 Lisi Automotive Form (Czechia)'),
(59807, 'https://ror.org/05qryz546', 'en', 1, 'https://ror.org/05qryz546 National Farmers Organization'),
(59808, 'https://ror.org/05qs24e23', 'no_lang_code', 1, 'https://ror.org/05qs24e23 Hier und Jetzt (Switzerland)'),
(59809, 'https://ror.org/05qtdkf53', 'cs', 1, 'https://ror.org/05qtdkf53 RegionĆ”lnĆ­ muzeum v KolĆ­ně'),
(59810, 'https://ror.org/05qtqmn65', 'fr', 1, 'https://ror.org/05qtqmn65 Archives de l''Ɖtat de NeuchĆ¢tel'),
(59811, 'https://ror.org/05qtw9471', 'en', 1, 'https://ror.org/05qtw9471 Life Science Patents'),
(59812, 'https://ror.org/05qv1wg20', 'en', 1, 'https://ror.org/05qv1wg20 Prague Security Studies Institute'),
(59813, 'https://ror.org/05qwesv66', 'no_lang_code', 1, 'https://ror.org/05qwesv66 Planconsult (Switzerland)'),
(59814, 'https://ror.org/05qwteg84', 'no_lang_code', 1, 'https://ror.org/05qwteg84 GME (Czechia)'),
(59815, 'https://ror.org/05qxpp357', 'no_lang_code', 1, 'https://ror.org/05qxpp357 Magna Exteriors (Czechia)'),
(59816, 'https://ror.org/05r00b483', 'en', 1, 'https://ror.org/05r00b483 Waksman Foundation for Microbiology'),
(59817, 'https://ror.org/05r0gt719', 'no_lang_code', 1, 'https://ror.org/05r0gt719 Dadar Athornan Institute'),
(59818, 'https://ror.org/05r1nkw66', 'no_lang_code', 1, 'https://ror.org/05r1nkw66 Lineq (Czechia)'),
(59819, 'https://ror.org/05r3dyn47', 'en', 1, 'https://ror.org/05r3dyn47 Center for Systems Biology'),
(59820, 'https://ror.org/05r434x22', 'no_lang_code', 1, 'https://ror.org/05r434x22 Ekogalva (Czechia)'),
(59821, 'https://ror.org/05r6hp586', 'no_lang_code', 1, 'https://ror.org/05r6hp586 Kutch Mahila Vikas Sanghatan'),
(59822, 'https://ror.org/05r7ttv75', 'en', 1, 'https://ror.org/05r7ttv75 United Way of Smith County'),
(59823, 'https://ror.org/05r866132', 'no_lang_code', 1, 'https://ror.org/05r866132 Ekosystem (Czechia)'),
(59824, 'https://ror.org/05r8b0p26', 'no_lang_code', 1, 'https://ror.org/05r8b0p26 Biofarm Dora (Czechia)'),
(59825, 'https://ror.org/05r9k3m54', 'en', 1, 'https://ror.org/05r9k3m54 Robert Mapplethorpe Foundation'),
(59826, 'https://ror.org/05ra0f154', 'no_lang_code', 1, 'https://ror.org/05ra0f154 TIRSO (Czechia)'),
(59827, 'https://ror.org/05ra3zm12', 'en', 1, 'https://ror.org/05ra3zm12 Gulf South Research Corporation'),
(59828, 'https://ror.org/05rbqz184', 'no_lang_code', 1, 'https://ror.org/05rbqz184 Valeo (Czechia)'),
(59829, 'https://ror.org/05rbv1z92', 'no_lang_code', 1, 'https://ror.org/05rbv1z92 Froněk (Czechia)'),
(59830, 'https://ror.org/05rcfkq95', 'en', 1, 'https://ror.org/05rcfkq95 Pittsburgh Emergency Medicine Foundation'),
(59831, 'https://ror.org/05rd7y749', 'en', 1, 'https://ror.org/05rd7y749 Seamester'),
(59832, 'https://ror.org/05rdz5425', 'en', 1, 'https://ror.org/05rdz5425 Ministerstwo Rolnictwa i Rozwoju Wsi Ministry of Agriculture and Rural Development'),
(59833, 'https://ror.org/05reezh07', 'no_lang_code', 1, 'https://ror.org/05reezh07 Nauchno-issledovatelskiy Institut Tekhnologii Avtomobilnoy Promyshlennosti ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технологии Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(59834, 'https://ror.org/05rfpvc37', 'no_lang_code', 1, 'https://ror.org/05rfpvc37 Van Lƶben Sels/RembeRock Foundation'),
(59835, 'https://ror.org/05rgkkt42', 'no_lang_code', 1, 'https://ror.org/05rgkkt42 Vafo Praha (Czechia)'),
(59836, 'https://ror.org/05rgmyf21', 'no_lang_code', 1, 'https://ror.org/05rgmyf21 Kappa-P (Czechia)'),
(59837, 'https://ror.org/05rgnr577', 'en', 1, 'https://ror.org/05rgnr577 Science and Technology Parks Association Společnost Vědeckotechnických ParkÅÆ'),
(59838, 'https://ror.org/05rhhvk61', 'no_lang_code', 1, 'https://ror.org/05rhhvk61 VodnĆ­ zdroje Chrudim (Czechia)'),
(59839, 'https://ror.org/05rjrds16', 'no_lang_code', 1, 'https://ror.org/05rjrds16 Moravoseed (Czechia)'),
(59840, 'https://ror.org/05rk35s69', 'no_lang_code', 1, 'https://ror.org/05rk35s69 Laboratoires Standa (France)'),
(59841, 'https://ror.org/05rm68h52', 'en', 1, 'https://ror.org/05rm68h52 Sikh Foundation'),
(59842, 'https://ror.org/05rngf387', 'en', 1, 'https://ror.org/05rngf387 Ear and Balance Institute'),
(59843, 'https://ror.org/05rnqd221', 'de', 1, 'https://ror.org/05rnqd221 Institut für Prävention und Nachsorge'),
(59844, 'https://ror.org/05rrc9f79', 'no_lang_code', 1, 'https://ror.org/05rrc9f79 Úsporné Bydlení (Czechia)'),
(59845, 'https://ror.org/05rv0ab64', 'no_lang_code', 1, 'https://ror.org/05rv0ab64 BÔňské projekty Teplice'),
(59846, 'https://ror.org/05rvvjw12', 'no_lang_code', 1, 'https://ror.org/05rvvjw12 Chemineau Labs (France) Laboratoires Chemineau'),
(59847, 'https://ror.org/05rwdy684', 'no_lang_code', 1, 'https://ror.org/05rwdy684 Bastion (United Kingdom)'),
(59848, 'https://ror.org/05rxrqv32', 'no_lang_code', 1, 'https://ror.org/05rxrqv32 Stryker (France)'),
(59849, 'https://ror.org/05rxs1s48', 'sv', 1, 'https://ror.org/05rxs1s48 Stiftelsen Samariten'),
(59850, 'https://ror.org/05rz5mc59', 'no_lang_code', 1, 'https://ror.org/05rz5mc59 Cellular Biomedicine Group (United States)'),
(59851, 'https://ror.org/05rzbbw97', 'no_lang_code', 1, 'https://ror.org/05rzbbw97 Life Medical Control (France)'),
(59852, 'https://ror.org/05s1rn618', 'no_lang_code', 1, 'https://ror.org/05s1rn618 Comptoir Pharmaceutique & MƩdical (France)'),
(59853, 'https://ror.org/05s4v9088', 'no_lang_code', 1, 'https://ror.org/05s4v9088 BioChemInsights (United States)'),
(59854, 'https://ror.org/05s5ecm57', 'no_lang_code', 1, 'https://ror.org/05s5ecm57 Parma Technik (Czechia)'),
(59855, 'https://ror.org/05s5wce38', 'no_lang_code', 1, 'https://ror.org/05s5wce38 Chemopharma (Austria)'),
(59856, 'https://ror.org/05s6mnc45', 'no_lang_code', 1, 'https://ror.org/05s6mnc45 Invelt Industry International (Czechia)'),
(59857, 'https://ror.org/05s7bjk78', 'no_lang_code', 1, 'https://ror.org/05s7bjk78 Cicero (Czechia)'),
(59858, 'https://ror.org/05s7vvm14', 'no_lang_code', 1, 'https://ror.org/05s7vvm14 Bioinstitut'),
(59859, 'https://ror.org/05sbk4q39', 'de', 1, 'https://ror.org/05sbk4q39 Clinique Montbrillant'),
(59860, 'https://ror.org/05sczh171', 'en', 1, 'https://ror.org/05sczh171 Institute for Problems of Cryobiology and Cryomedicine Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠ‘Š›Š•Šœ ŠšŠ Š†ŠžŠ‘Š†ŠžŠ›ŠžŠ“Š†Š‡ І ŠšŠ Š†ŠžŠœŠ•Š”Š˜Š¦Š˜ŠŠ˜ ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠžŠ‡ ŠŠšŠŠ”Š•ŠœŠ†Š‡ ŠŠŠ£Šš Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(59861, 'https://ror.org/05sdnkt23', 'no_lang_code', 1, 'https://ror.org/05sdnkt23 Agrofarm (Czechia)'),
(59862, 'https://ror.org/05sejda23', 'en', 1, 'https://ror.org/05sejda23 Armenian National Survey for Seismic Protection'),
(59863, 'https://ror.org/05ses5w88', 'de', 1, 'https://ror.org/05ses5w88 Institut für Lacke und Farben'),
(59864, 'https://ror.org/05sgg0860', 'en', 1, 'https://ror.org/05sgg0860 Finnish Society of Anaesthesiologists Suomen Anestesiologiyhdistys'),
(59865, 'https://ror.org/05sgndn97', 'no_lang_code', 1, 'https://ror.org/05sgndn97 Code Creator (Czechia)'),
(59866, 'https://ror.org/05smkqj74', 'no_lang_code', 1, 'https://ror.org/05smkqj74 Compact Bohemia (Czechia)'),
(59867, 'https://ror.org/05smnbn20', 'no_lang_code', 1, 'https://ror.org/05smnbn20 Foerster (United States)'),
(59868, 'https://ror.org/05smskk65', 'no_lang_code', 1, 'https://ror.org/05smskk65 LabMediaServis (Czechia)'),
(59869, 'https://ror.org/05snmjd73', 'no_lang_code', 1, 'https://ror.org/05snmjd73 SurgiQual Institute (France)'),
(59870, 'https://ror.org/05snsev90', 'en', 1, 'https://ror.org/05snsev90 Cornell Cooperative Extension Sullivan County'),
(59871, 'https://ror.org/05spb8741', 'no_lang_code', 1, 'https://ror.org/05spb8741 Oclaro (United States)'),
(59872, 'https://ror.org/05srw0r52', 'no_lang_code', 1, 'https://ror.org/05srw0r52 Check-Cap (Israel)'),
(59873, 'https://ror.org/05ss23q56', 'no_lang_code', 1, 'https://ror.org/05ss23q56 KSK Precise Motion (Czechia)'),
(59874, 'https://ror.org/05ssa1185', 'en', 1, 'https://ror.org/05ssa1185 State Scientific Production Association of Industrial Ecology'),
(59875, 'https://ror.org/05sthzf60', 'en', 1, 'https://ror.org/05sthzf60 International Union of Materials Research Societies'),
(59876, 'https://ror.org/05sv4rq55', 'no_lang_code', 1, 'https://ror.org/05sv4rq55 OneBreath (United States)'),
(59877, 'https://ror.org/05svfd950', 'en', 1, 'https://ror.org/05svfd950 Regional Research Institute of Unani Medicine'),
(59878, 'https://ror.org/05t0aaa57', 'no_lang_code', 1, 'https://ror.org/05t0aaa57 Scaled Biolabs (United States)'),
(59879, 'https://ror.org/05t2bc229', 'no_lang_code', 1, 'https://ror.org/05t2bc229 SociĆ©tĆ© franƧaise d’instruments de chirurgie Sofic (France)'),
(59880, 'https://ror.org/05t2h5z30', 'no_lang_code', 1, 'https://ror.org/05t2h5z30 CLAC (Switzerland)'),
(59881, 'https://ror.org/05t2njg22', 'en', 1, 'https://ror.org/05t2njg22 Institute of Ethnology MTA BTK NƩprajztudomƔnyi IntƩzet'),
(59882, 'https://ror.org/05t30dz33', 'no_lang_code', 1, 'https://ror.org/05t30dz33 G-Pharm (France)'),
(59883, 'https://ror.org/05t395q46', 'no_lang_code', 1, 'https://ror.org/05t395q46 CĆ­gler Software (Czechia)'),
(59884, 'https://ror.org/05t4n3357', 'no_lang_code', 1, 'https://ror.org/05t4n3357 Ybux (Czechia)'),
(59885, 'https://ror.org/05t81tk93', 'no_lang_code', 1, 'https://ror.org/05t81tk93 Retex (Czechia)'),
(59886, 'https://ror.org/05t96nf23', 'de', 1, 'https://ror.org/05t96nf23 Departement Bildung, Kultur und Sport'),
(59887, 'https://ror.org/05t9fgt79', 'en', 1, 'https://ror.org/05t9fgt79 Shurl and Kay Curci Foundation'),
(59888, 'https://ror.org/05t9frg20', 'no_lang_code', 1, 'https://ror.org/05t9frg20 MAP Systems (Czechia)'),
(59889, 'https://ror.org/05t9z3q05', 'en', 1, 'https://ror.org/05t9z3q05 Richard M. Fairbanks Foundation'),
(59890, 'https://ror.org/05td8h732', 'en', 1, 'https://ror.org/05td8h732 Florida State Collection of Arthropods'),
(59891, 'https://ror.org/05tgveb11', 'no_lang_code', 1, 'https://ror.org/05tgveb11 Altana (Netherlands)'),
(59892, 'https://ror.org/05tk0mn61', 'no_lang_code', 1, 'https://ror.org/05tk0mn61 Büro Vatter (Switzerland)'),
(59893, 'https://ror.org/05tkn9009', 'no_lang_code', 1, 'https://ror.org/05tkn9009 Arcoplan (Switzerland)'),
(59894, 'https://ror.org/05tkx8d31', 'no_lang_code', 1, 'https://ror.org/05tkx8d31 Madep (Switzerland)'),
(59895, 'https://ror.org/05tmxnq68', 'no_lang_code', 1, 'https://ror.org/05tmxnq68 Reliant (Czechia)'),
(59896, 'https://ror.org/05tpaf310', 'en', 1, 'https://ror.org/05tpaf310 National Captioning Institute'),
(59897, 'https://ror.org/05tpefp81', 'cs', 1, 'https://ror.org/05tpefp81 PovodĆ­ Moravy'),
(59898, 'https://ror.org/05tqtn688', 'no_lang_code', 1, 'https://ror.org/05tqtn688 Inpek (Czechia)'),
(59899, 'https://ror.org/05tsgwq26', 'no_lang_code', 1, 'https://ror.org/05tsgwq26 Gennet'),
(59900, 'https://ror.org/05tstvt45', 'de', 1, 'https://ror.org/05tstvt45 Baudirektion Kanton Zürich'),
(59901, 'https://ror.org/05tte3254', 'en', 1, 'https://ror.org/05tte3254 Federal Government of Mexico Gobierno de la RepĆŗblica'),
(59902, 'https://ror.org/05ttxxx91', 'en', 1, 'https://ror.org/05ttxxx91 Stony Wold Herbert Fund'),
(59903, 'https://ror.org/05tv0zk25', 'en', 1, 'https://ror.org/05tv0zk25 The Food Group'),
(59904, 'https://ror.org/05tw6nm64', 'en', 1, 'https://ror.org/05tw6nm64 American Institute of Taxidermy'),
(59905, 'https://ror.org/05twg5e95', 'no_lang_code', 1, 'https://ror.org/05twg5e95 Korund BenƔtky (Czechia)'),
(59906, 'https://ror.org/05tx9ga45', 'no_lang_code', 1, 'https://ror.org/05tx9ga45 InterEco (Czechia)'),
(59907, 'https://ror.org/05tywyy79', 'no_lang_code', 1, 'https://ror.org/05tywyy79 Gazprom (Russia) ŠŸŃƒŠ±Š»ŠøŃ‡Š½Š¾Šµ Акционерное ŠžŠ±Ń‰ŠµŃŃ‚во Газпром'),
(59908, 'https://ror.org/05tz0an20', 'cs', 1, 'https://ror.org/05tz0an20 Autoklub České Republiky'),
(59909, 'https://ror.org/05v0k1d18', 'de', 1, 'https://ror.org/05v0k1d18 Institut für Korrosionsschutz Dresden'),
(59910, 'https://ror.org/05v34vf11', 'en', 1, 'https://ror.org/05v34vf11 Volvo Environment Prize'),
(59911, 'https://ror.org/05v4v2w58', 'en', 1, 'https://ror.org/05v4v2w58 Hebron Theological College'),
(59912, 'https://ror.org/05v629t58', 'no_lang_code', 1, 'https://ror.org/05v629t58 Argo-Hytos (Czechia)'),
(59913, 'https://ror.org/05v7gs072', 'fr', 1, 'https://ror.org/05v7gs072 Nextep'),
(59914, 'https://ror.org/05v80mh43', 'no_lang_code', 1, 'https://ror.org/05v80mh43 JizerskƩ PekƔrny (Czechia)'),
(59915, 'https://ror.org/05v9bqs40', 'no_lang_code', 1, 'https://ror.org/05v9bqs40 ITAB'),
(59916, 'https://ror.org/05vc7zb27', 'no_lang_code', 1, 'https://ror.org/05vc7zb27 Sevaron (Czechia)'),
(59917, 'https://ror.org/05vd6yn18', 'no_lang_code', 1, 'https://ror.org/05vd6yn18 EDAP TMS (France)'),
(59918, 'https://ror.org/05vea6821', 'en', 1, 'https://ror.org/05vea6821 William P. Wharton Trust'),
(59919, 'https://ror.org/05vg8h197', 'no_lang_code', 1, 'https://ror.org/05vg8h197 Japan Space Forum ę—„ęœ¬å®‡å®™ćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(59920, 'https://ror.org/05vg8zj60', 'de', 1, 'https://ror.org/05vg8zj60 Kollegium für Hausarztmedizin'),
(59921, 'https://ror.org/05vgxgc56', 'no_lang_code', 1, 'https://ror.org/05vgxgc56 Trask Solutions (Czechia)'),
(59922, 'https://ror.org/05vh1g220', 'no_lang_code', 1, 'https://ror.org/05vh1g220 Klinger (United Kingdom)'),
(59923, 'https://ror.org/05vh91d34', 'no_lang_code', 1, 'https://ror.org/05vh91d34 KB - Blok (Czechia)'),
(59924, 'https://ror.org/05vkhtr02', 'no_lang_code', 1, 'https://ror.org/05vkhtr02 BCS Engineering (Czechia)'),
(59925, 'https://ror.org/05vm6v844', 'no_lang_code', 1, 'https://ror.org/05vm6v844 Entracon (Czechia)'),
(59926, 'https://ror.org/05vq00593', 'en', 1, 'https://ror.org/05vq00593 Galerie Modernƭho Uměnƭ v Roudnici nad Labem Gallery of Modern Art Roudnice nad Labem'),
(59927, 'https://ror.org/05vsweb26', 'no_lang_code', 1, 'https://ror.org/05vsweb26 Government Testing Laboratory of Machines (Czechia) StÔtní zkuŔebna strojů'),
(59928, 'https://ror.org/05vtq0k76', 'no_lang_code', 1, 'https://ror.org/05vtq0k76 Instant Access Technologies (United Kingdom)'),
(59929, 'https://ror.org/05vv53n36', 'no_lang_code', 1, 'https://ror.org/05vv53n36 AGCO (Germany)'),
(59930, 'https://ror.org/05vvvp143', 'en', 1, 'https://ror.org/05vvvp143 California Dried Plum Board'),
(59931, 'https://ror.org/05w1dmd75', 'no_lang_code', 1, 'https://ror.org/05w1dmd75 Med Discovery (Switzerland)'),
(59932, 'https://ror.org/05w1ran05', 'en', 1, 'https://ror.org/05w1ran05 Womens Foundation of Southern Arizona'),
(59933, 'https://ror.org/05w2mbr20', 'no_lang_code', 1, 'https://ror.org/05w2mbr20 Sellier & Bellot (Czechia)'),
(59934, 'https://ror.org/05w383724', 'no_lang_code', 1, 'https://ror.org/05w383724 Hansen Electric (Czechia)'),
(59935, 'https://ror.org/05w67p097', 'no_lang_code', 1, 'https://ror.org/05w67p097 Advanced Engineering (Czechia)'),
(59936, 'https://ror.org/05w9ckg77', 'en', 1, 'https://ror.org/05w9ckg77 Pet Care Trust'),
(59937, 'https://ror.org/05wfg6079', 'en', 1, 'https://ror.org/05wfg6079 Japan Arteriosclerosis Prevention Fund ę—„ęœ¬å‹•č„ˆē”¬åŒ–äŗˆé˜²ē ”ē©¶åŸŗé‡‘'),
(59938, 'https://ror.org/05wggj048', 'no_lang_code', 1, 'https://ror.org/05wggj048 Vestado (Czechia)'),
(59939, 'https://ror.org/05whaqa79', 'cs', 1, 'https://ror.org/05whaqa79 ČeskÔ RozvojovÔ Agentura'),
(59940, 'https://ror.org/05wjqtf52', 'cs', 1, 'https://ror.org/05wjqtf52 Asociace Pedagogů ZÔkladního Školství České Republiky'),
(59941, 'https://ror.org/05wk4pc85', 'en', 1, 'https://ror.org/05wk4pc85 Pediatric Infectious Diseases Society'),
(59942, 'https://ror.org/05wmvrv56', 'no_lang_code', 1, 'https://ror.org/05wmvrv56 SlezskĆ” Dubina (Czechia)'),
(59943, 'https://ror.org/05wng9697', 'en', 1, 'https://ror.org/05wng9697 Greening of Detroit'),
(59944, 'https://ror.org/05wqf0473', 'no_lang_code', 1, 'https://ror.org/05wqf0473 Gross Wen Technologies (United States)'),
(59945, 'https://ror.org/05wrfa149', 'no_lang_code', 1, 'https://ror.org/05wrfa149 Dako Brno (Czechia)'),
(59946, 'https://ror.org/05wrzfv03', 'no_lang_code', 1, 'https://ror.org/05wrzfv03 Firel (Czechia)'),
(59947, 'https://ror.org/05wtm9j71', 'en', 1, 'https://ror.org/05wtm9j71 Sidney R Baer Jr Foundation'),
(59948, 'https://ror.org/05wv7q844', 'no_lang_code', 1, 'https://ror.org/05wv7q844 Trimarca (Switzerland)'),
(59949, 'https://ror.org/05wyebt73', 'fr', 1, 'https://ror.org/05wyebt73 Association pour l''Assistance Ć  Domicile aux Insuffisants Respiratoire Chroniques'),
(59950, 'https://ror.org/05wyxeg04', 'de', 1, 'https://ror.org/05wyxeg04 Arud'),
(59951, 'https://ror.org/05wz8pk64', 'no_lang_code', 1, 'https://ror.org/05wz8pk64 Abbott (France)'),
(59952, 'https://ror.org/05x0m9n95', 'en', 1, 'https://ror.org/05x0m9n95 Heilongjiang Institute of Technology'),
(59953, 'https://ror.org/05x10y854', 'fr', 1, 'https://ror.org/05x10y854 France Chirurgie Instrumentation'),
(59954, 'https://ror.org/05x13kz70', 'no_lang_code', 1, 'https://ror.org/05x13kz70 Workswell (Czechia)'),
(59955, 'https://ror.org/05x1f4x57', 'no_lang_code', 1, 'https://ror.org/05x1f4x57 Consygen CZ (Czechia)'),
(59956, 'https://ror.org/05x217f96', 'de', 1, 'https://ror.org/05x217f96 Steirische Wirtschaftsfƶrderung'),
(59957, 'https://ror.org/05x4p3q72', 'en', 1, 'https://ror.org/05x4p3q72 South Dakota Community Foundation'),
(59958, 'https://ror.org/05x7k6a83', 'no_lang_code', 1, 'https://ror.org/05x7k6a83 Dr. Reddy''s Laboratories (United States)'),
(59959, 'https://ror.org/05x86b629', 'fr', 1, 'https://ror.org/05x86b629 SociƩtƩ d''Etudes TƶpffƩriennes'),
(59960, 'https://ror.org/05x8mfj57', 'en', 1, 'https://ror.org/05x8mfj57 Czech Society for Quality ČeskĆ” Společnost pro Jakost'),
(59961, 'https://ror.org/05x9m4736', 'no_lang_code', 1, 'https://ror.org/05x9m4736 Farmak Moravia (Czechia)'),
(59962, 'https://ror.org/05xa8nr60', 'no_lang_code', 1, 'https://ror.org/05xa8nr60 Bodycote (Czechia)'),
(59963, 'https://ror.org/05xeax323', 'no_lang_code', 1, 'https://ror.org/05xeax323 Hestia (Czechia)'),
(59964, 'https://ror.org/05xf0e721', 'de', 1, 'https://ror.org/05xf0e721 Amt für Gemeinden und Raumordnung'),
(59965, 'https://ror.org/05xj6ej51', 'cs', 1, 'https://ror.org/05xj6ej51 EnergetickĆ© Třebƭčsko'),
(59966, 'https://ror.org/05xjcvb83', 'en', 1, 'https://ror.org/05xjcvb83 Society for Industrial and Organizational Psychology'),
(59967, 'https://ror.org/05xk8yj88', 'no_lang_code', 1, 'https://ror.org/05xk8yj88 M Silnice (Czechia)'),
(59968, 'https://ror.org/05xm6zq64', 'no_lang_code', 1, 'https://ror.org/05xm6zq64 Iguassu Software Systems (Czechia)'),
(59969, 'https://ror.org/05xptf671', 'de', 1, 'https://ror.org/05xptf671 Kurt-Schwabe-Institut für Mess- und Sensortechnik Meinsberg'),
(59970, 'https://ror.org/05xqftd54', 'no_lang_code', 1, 'https://ror.org/05xqftd54 Ecofer (Czechia)'),
(59971, 'https://ror.org/05xqnpb54', 'en', 1, 'https://ror.org/05xqnpb54 National Young Farmers Coalition'),
(59972, 'https://ror.org/05xry8z31', 'fr', 1, 'https://ror.org/05xry8z31 Evaux Laboratoires'),
(59973, 'https://ror.org/05xs6nw18', 'en', 1, 'https://ror.org/05xs6nw18 Maud Kuistila Memorial Foundation Maud Kuistilan MuistosƤƤtiƶ'),
(59974, 'https://ror.org/05xvgy636', 'no_lang_code', 1, 'https://ror.org/05xvgy636 MediaTek (China) čÆē™¼ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(59975, 'https://ror.org/05y0h1m73', 'no_lang_code', 1, 'https://ror.org/05y0h1m73 Agrointeg (Czechia)'),
(59976, 'https://ror.org/05y0t3w48', 'no_lang_code', 1, 'https://ror.org/05y0t3w48 Creative Connections (Czechia)'),
(59977, 'https://ror.org/05y15e107', 'en', 1, 'https://ror.org/05y15e107 Taiho Kogyo Tribology Research Foundation'),
(59978, 'https://ror.org/05y18s311', 'no_lang_code', 1, 'https://ror.org/05y18s311 Guagliardi Ruoss (Switzerland)'),
(59979, 'https://ror.org/05y1gzz92', 'no_lang_code', 1, 'https://ror.org/05y1gzz92 GHH-Bonatrans (Czechia)'),
(59980, 'https://ror.org/05y33cq80', 'no_lang_code', 1, 'https://ror.org/05y33cq80 FCC (Czechia)'),
(59981, 'https://ror.org/05y8ktr97', 'no_lang_code', 1, 'https://ror.org/05y8ktr97 B. Braun (France)'),
(59982, 'https://ror.org/05yas2736', 'nl', 1, 'https://ror.org/05yas2736 Nederlands Oogheelkundig Onderzoek'),
(59983, 'https://ror.org/05ybw6w30', 'no_lang_code', 1, 'https://ror.org/05ybw6w30 ACRE (Czechia)'),
(59984, 'https://ror.org/05ye9s754', 'en', 1, 'https://ror.org/05ye9s754 Association Internationale de la SƩcuritƩ Sociale International Social Security Association'),
(59985, 'https://ror.org/05yexgq55', 'no_lang_code', 1, 'https://ror.org/05yexgq55 SeveromoravskƩ Vodovody a Kanalizace Ostrava (Czechia)'),
(59986, 'https://ror.org/05yfjtn64', 'en', 1, 'https://ror.org/05yfjtn64 Womens Foundation å©¦å„³åŸŗé‡‘ęœƒęœ‰é™å…¬åø'),
(59987, 'https://ror.org/05yg2by49', 'no_lang_code', 1, 'https://ror.org/05yg2by49 Dartfish (Switzerland)'),
(59988, 'https://ror.org/05yh12c19', 'cs', 1, 'https://ror.org/05yh12c19 Společnost pro Technologie Ochrany PamĆ”tek'),
(59989, 'https://ror.org/05yh1h167', 'nl', 1, 'https://ror.org/05yh1h167 Stichting tot Steun VCVGZ'),
(59990, 'https://ror.org/05yh4rh25', 'en', 1, 'https://ror.org/05yh4rh25 Walton Family Foundation'),
(59991, 'https://ror.org/05yj26y55', 'de', 1, 'https://ror.org/05yj26y55 Museo retico Museum retic RƤtisches Museum'),
(59992, 'https://ror.org/05yjjky95', 'no_lang_code', 1, 'https://ror.org/05yjjky95 One Resonance Sensors (United States)'),
(59993, 'https://ror.org/05yjpzd92', 'fr', 1, 'https://ror.org/05yjpzd92 BibliothĆØque Cantonale Jurassienne'),
(59994, 'https://ror.org/05yjxqy63', 'no_lang_code', 1, 'https://ror.org/05yjxqy63 Podravka (Czechia)'),
(59995, 'https://ror.org/05ykj7f85', 'en', 1, 'https://ror.org/05ykj7f85 Coir Board of India'),
(59996, 'https://ror.org/05ymvmg49', 'no_lang_code', 1, 'https://ror.org/05ymvmg49 GumĆ”rny Zubří (Czechia)'),
(59997, 'https://ror.org/05ynech64', 'es', 1, 'https://ror.org/05ynech64 Servicio Nacional de HidrologĆ­a y MeteorologĆ­a'),
(59998, 'https://ror.org/05ynj8239', 'de', 1, 'https://ror.org/05ynj8239 Zentrum für Labormedizin'),
(59999, 'https://ror.org/05ypkce93', 'no_lang_code', 1, 'https://ror.org/05ypkce93 Cortis Consulting'),
(60000, 'https://ror.org/05yq91m89', 'cs', 1, 'https://ror.org/05yq91m89 ZdravotnickĆ” ZĆ”chrannĆ” Služba HlavnĆ­ho Města Prahy'),
(60001, 'https://ror.org/00012xz55', 'de', 1, 'https://ror.org/00012xz55 Hamburgische Investitions- und Fƶrderbank'),
(60002, 'https://ror.org/0002rg505', 'en', 1, 'https://ror.org/0002rg505 Vascular Institute of Virginia'),
(60003, 'https://ror.org/0003h1s51', 'en', 1, 'https://ror.org/0003h1s51 International Adsorption Society');
INSERT INTO `rors` VALUES
(60004, 'https://ror.org/000466g76', 'no_lang_code', 1, 'https://ror.org/000466g76 Techniker Krankenkasse (Germany)'),
(60005, 'https://ror.org/000518j63', 'no', 1, 'https://ror.org/000518j63 Stavanger Acute Medicine Foundation for Education and Research Stavanger Akuttmedisinfond for utdanning og forskning'),
(60006, 'https://ror.org/0007f0665', 'no_lang_code', 1, 'https://ror.org/0007f0665 MicroPort Orthopedics (Netherlands)'),
(60007, 'https://ror.org/0008bth81', 'no_lang_code', 1, 'https://ror.org/0008bth81 Mezo Research (Australia)'),
(60008, 'https://ror.org/0008ypy64', 'de', 1, 'https://ror.org/0008ypy64 BrustGesundheitZentrum Tirol'),
(60009, 'https://ror.org/000ad3960', 'no_lang_code', 1, 'https://ror.org/000ad3960 Oystershell (Belgium)'),
(60010, 'https://ror.org/000b1qx78', 'no_lang_code', 1, 'https://ror.org/000b1qx78 Revolution Research'),
(60011, 'https://ror.org/000crk757', 'en', 1, 'https://ror.org/000crk757 St. Vincent''s Birmingham'),
(60012, 'https://ror.org/000dkqr98', 'en', 1, 'https://ror.org/000dkqr98 Community Eye Care Foundation'),
(60013, 'https://ror.org/000dspf25', 'en', 1, 'https://ror.org/000dspf25 McNeel Eye Center'),
(60014, 'https://ror.org/000emaz53', 'en', 1, 'https://ror.org/000emaz53 Midwest Aortic & Vascular Institute'),
(60015, 'https://ror.org/000g2fe29', 'en', 1, 'https://ror.org/000g2fe29 Perm Regional Oncology Center ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(60016, 'https://ror.org/000jtf850', 'no_lang_code', 1, 'https://ror.org/000jtf850 Sinopia Biosciences (United States)'),
(60017, 'https://ror.org/000kkgk42', 'es', 1, 'https://ror.org/000kkgk42 Instituto de OncologĆ­a y RadiobiologĆ­a'),
(60018, 'https://ror.org/000n8re15', 'es', 1, 'https://ror.org/000n8re15 Hospital San Juan de la Cruz'),
(60019, 'https://ror.org/000p04g78', 'de', 1, 'https://ror.org/000p04g78 Ministerium für Soziales, Arbeit, Gesundheit und Demografie'),
(60020, 'https://ror.org/000pw2z54', 'es', 1, 'https://ror.org/000pw2z54 Maternal Perinatal Hospital Mónica Pretelini'),
(60021, 'https://ror.org/000re6s27', 'no_lang_code', 1, 'https://ror.org/000re6s27 CHO America (Canada)'),
(60022, 'https://ror.org/000rhcj53', 'en', 1, 'https://ror.org/000rhcj53 Rainbow Research'),
(60023, 'https://ror.org/000txyc96', 'en', 1, 'https://ror.org/000txyc96 Clinical Institute of Brain'),
(60024, 'https://ror.org/000x2q781', 'en', 1, 'https://ror.org/000x2q781 Arthritis Associates of Southern California'),
(60025, 'https://ror.org/000y51230', 'en', 1, 'https://ror.org/000y51230 Vermont Natural Resources Council'),
(60026, 'https://ror.org/000z10z62', 'en', 1, 'https://ror.org/000z10z62 VA National Center of Oncology after Fanarjyan Վ.Ō±. Õ–Õ”Õ¶Õ”Ö€Õ»ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ուռուցքՔբՔնությՔն Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(60027, 'https://ror.org/000zjtf98', 'en', 1, 'https://ror.org/000zjtf98 Medical Center of South Arkansas'),
(60028, 'https://ror.org/00108f448', 'en', 1, 'https://ror.org/00108f448 Midwest Institute for Minimally Invasive Therapies'),
(60029, 'https://ror.org/0010r2q05', 'en', 1, 'https://ror.org/0010r2q05 United Medical Research Institute'),
(60030, 'https://ror.org/00113vt82', 'en', 1, 'https://ror.org/00113vt82 International Spine and Pain Institute'),
(60031, 'https://ror.org/00126za90', 'fr', 1, 'https://ror.org/00126za90 HƓpital d''Instruction des ArmƩes Clermont-Tonnerre'),
(60032, 'https://ror.org/00128qj25', 'fr', 1, 'https://ror.org/00128qj25 Clinique Neuro-Outaouais'),
(60033, 'https://ror.org/0012k7s49', 'en', 1, 'https://ror.org/0012k7s49 Apri Health'),
(60034, 'https://ror.org/0012pe324', 'en', 1, 'https://ror.org/0012pe324 Maharaj Institute of Immune Regenerative Medicine'),
(60035, 'https://ror.org/00131m973', 'en', 1, 'https://ror.org/00131m973 Mack Eye Center'),
(60036, 'https://ror.org/0013dpg50', 'no_lang_code', 1, 'https://ror.org/0013dpg50 Umenz (Netherlands)'),
(60037, 'https://ror.org/0013xzr62', 'en', 1, 'https://ror.org/0013xzr62 International Maitland Teacher Association'),
(60038, 'https://ror.org/0015kmr33', 'nl', 1, 'https://ror.org/0015kmr33 OHRA, Onderlinge ziektekostenverzekeringsfonds van Hoogere RijksAmbtenaren'),
(60039, 'https://ror.org/0019sn611', 'en', 1, 'https://ror.org/0019sn611 Planning and Conservation League'),
(60040, 'https://ror.org/001av7v52', 'en', 1, 'https://ror.org/001av7v52 Dr. h.c. Robert Mathys Stiftung für Forschung RMS Foundation'),
(60041, 'https://ror.org/001b17f86', 'en', 1, 'https://ror.org/001b17f86 Conseil EuropƩen European Council EuropƤischer Rat'),
(60042, 'https://ror.org/001czh282', 'en', 1, 'https://ror.org/001czh282 The Irvine Institute of Medicine & Cosmetic Surgery'),
(60043, 'https://ror.org/001d7gs74', 'no_lang_code', 1, 'https://ror.org/001d7gs74 DDC-I (United States)'),
(60044, 'https://ror.org/001edkr35', 'nl', 1, 'https://ror.org/001edkr35 Vereniging Nederland-Davos'),
(60045, 'https://ror.org/001f8m487', 'en', 1, 'https://ror.org/001f8m487 Global Environment and Technology Foundation'),
(60046, 'https://ror.org/001g4fr45', 'nl', 1, 'https://ror.org/001g4fr45 Het Nieuwe Instituut'),
(60047, 'https://ror.org/001g69757', 'en', 1, 'https://ror.org/001g69757 Phelps County Regional Medical Center'),
(60048, 'https://ror.org/001gp6102', 'de', 1, 'https://ror.org/001gp6102 Edel + weiss ZahnƤrzte'),
(60049, 'https://ror.org/001hc9y40', 'no_lang_code', 1, 'https://ror.org/001hc9y40 ResMed (Netherlands)'),
(60050, 'https://ror.org/001m0em47', 'en', 1, 'https://ror.org/001m0em47 German Doctors'),
(60051, 'https://ror.org/001m64s20', 'en', 1, 'https://ror.org/001m64s20 Bulgarian Antarctic Institute Š‘ŠŖŠ›Š“ŠŠ Š”ŠšŠ˜ ŠŠŠ¢ŠŠ ŠšŠ¢Š˜Š§Š•Š”ŠšŠ˜ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(60052, 'https://ror.org/001nh6z22', 'no_lang_code', 1, 'https://ror.org/001nh6z22 CA DIGITAL (Germany)'),
(60053, 'https://ror.org/001pef276', 'no_lang_code', 1, 'https://ror.org/001pef276 Safecor (United States)'),
(60054, 'https://ror.org/001pkzr89', 'en', 1, 'https://ror.org/001pkzr89 Apotekforeningen Norwegian Pharmacy Association'),
(60055, 'https://ror.org/001qjw859', 'en', 1, 'https://ror.org/001qjw859 European Neuroendocrine Tumor Society'),
(60056, 'https://ror.org/001smqx66', 'no_lang_code', 1, 'https://ror.org/001smqx66 ZSX Medical (United States)'),
(60057, 'https://ror.org/001vn6g34', 'en', 1, 'https://ror.org/001vn6g34 Association of Specialty Physicians'),
(60058, 'https://ror.org/001vtsp98', 'en', 1, 'https://ror.org/001vtsp98 Institute for Educational Inquiry'),
(60059, 'https://ror.org/001x5fb42', 'de', 1, 'https://ror.org/001x5fb42 Therapiezentrum Harburg'),
(60060, 'https://ror.org/001xy0e42', 'de', 1, 'https://ror.org/001xy0e42 Ƅrztliche Akademie für Psychotherapie von Kindern und Jugendlichen'),
(60061, 'https://ror.org/001zdb338', 'it', 1, 'https://ror.org/001zdb338 Fondazione ISAL'),
(60062, 'https://ror.org/0021y6a82', 'en', 1, 'https://ror.org/0021y6a82 California Life Sciences Association'),
(60063, 'https://ror.org/0022e0327', 'no_lang_code', 1, 'https://ror.org/0022e0327 Schaper & Brümmer (Germany)'),
(60064, 'https://ror.org/0025r1k74', 'pt', 1, 'https://ror.org/0025r1k74 Centro Hospitalar Tondela-Viseu'),
(60065, 'https://ror.org/0028e8s02', 'en', 1, 'https://ror.org/0028e8s02 McFarland Clinic - Fort Dodge'),
(60066, 'https://ror.org/0029et149', 'en', 1, 'https://ror.org/0029et149 University Reproductive Associates'),
(60067, 'https://ror.org/0029ghb74', 'nl', 1, 'https://ror.org/0029ghb74 Stichting Vrienden van het Hart'),
(60068, 'https://ror.org/002d8xd40', 'no_lang_code', 1, 'https://ror.org/002d8xd40 Accurate Clinical Research (United States)'),
(60069, 'https://ror.org/002e72m14', 'en', 1, 'https://ror.org/002e72m14 St. Joseph Hospital'),
(60070, 'https://ror.org/002hjb015', 'de', 1, 'https://ror.org/002hjb015 Klinik und Poliklinik für Mund-, Kiefer- und Plastische Gesichtschirurgie'),
(60071, 'https://ror.org/002jbbs61', 'nl', 1, 'https://ror.org/002jbbs61 Continentie Stichting Nederland'),
(60072, 'https://ror.org/002jbzp90', 'en', 1, 'https://ror.org/002jbzp90 Sceptor Pain Foundation'),
(60073, 'https://ror.org/002jdvv38', 'fr', 1, 'https://ror.org/002jdvv38 Centre Hospitalier de Douai'),
(60074, 'https://ror.org/002jry571', 'no_lang_code', 1, 'https://ror.org/002jry571 Ypsomed (Switzerland)'),
(60075, 'https://ror.org/002jv8g15', 'es', 1, 'https://ror.org/002jv8g15 Fundación para La Investigación del Vino y La Nutrición'),
(60076, 'https://ror.org/002kney35', 'no_lang_code', 1, 'https://ror.org/002kney35 Optical Polymer Research (United States)'),
(60077, 'https://ror.org/002pzb313', 'en', 1, 'https://ror.org/002pzb313 The Kidney Foundation of Thailand ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ą¹‚ąø£ąø„ą¹„ąø•ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(60078, 'https://ror.org/002rp9w47', 'en', 1, 'https://ror.org/002rp9w47 National Institute of Emergency Medicine "Pirogov"'),
(60079, 'https://ror.org/002rstz54', 'no_lang_code', 1, 'https://ror.org/002rstz54 TherapySelect (Germany)'),
(60080, 'https://ror.org/002smyn79', 'en', 1, 'https://ror.org/002smyn79 Sun Protection Foundation'),
(60081, 'https://ror.org/002yjkk86', 'en', 1, 'https://ror.org/002yjkk86 Czech Surgical Society ČeskĆ” ChirurgickĆ” Společnost'),
(60082, 'https://ror.org/002zcct17', 'en', 1, 'https://ror.org/002zcct17 Australian Rural Leadership Foundation'),
(60083, 'https://ror.org/0031gef94', 'es', 1, 'https://ror.org/0031gef94 Sociedad EspaƱola de Medicina Interna'),
(60084, 'https://ror.org/0031x0638', 'en', 1, 'https://ror.org/0031x0638 Barrie Urology Group'),
(60085, 'https://ror.org/00322eq64', 'en', 1, 'https://ror.org/00322eq64 Association Canadienne des Chirurgiens GƩnƩraux Canadian Association of General Surgeons'),
(60086, 'https://ror.org/003438m13', 'en', 1, 'https://ror.org/003438m13 Associated Colleges of the Twin Cities'),
(60087, 'https://ror.org/00343zp30', 'en', 1, 'https://ror.org/00343zp30 Action Potential'),
(60088, 'https://ror.org/00354aw77', 'no_lang_code', 1, 'https://ror.org/00354aw77 Bristol-Myers Squibb (Netherlands)'),
(60089, 'https://ror.org/0037fca11', 'en', 1, 'https://ror.org/0037fca11 Australian Maritime and Fisheries Academy'),
(60090, 'https://ror.org/00394zv26', 'en', 1, 'https://ror.org/00394zv26 Department of Disease Control'),
(60091, 'https://ror.org/00396f155', 'no_lang_code', 1, 'https://ror.org/00396f155 Yuli Hospital ēŽ‰é‡Œé†«é™¢ęœ¬éƒØ'),
(60092, 'https://ror.org/0039g6563', 'pt', 1, 'https://ror.org/0039g6563 Hospital UniversitƔrio - Universidade Federal de Juiz de Fora'),
(60093, 'https://ror.org/003akqg03', 'en', 1, 'https://ror.org/003akqg03 Aidan Foundation'),
(60094, 'https://ror.org/003ayef58', 'en', 1, 'https://ror.org/003ayef58 Beijing Academy of Social Sciences åŒ—äŗ¬åø‚ē¤¾ä¼šē§‘å­¦é™¢'),
(60095, 'https://ror.org/003bxg127', 'en', 1, 'https://ror.org/003bxg127 Whitaker Center for Science and the Arts'),
(60096, 'https://ror.org/003c3g222', 'en', 1, 'https://ror.org/003c3g222 Mental Research Institute'),
(60097, 'https://ror.org/003dey933', 'nl', 1, 'https://ror.org/003dey933 Stichting Hofje Codde en Van Beresteyn'),
(60098, 'https://ror.org/003dfn956', 'en', 1, 'https://ror.org/003dfn956 Department of Health & Family Welfare'),
(60099, 'https://ror.org/003ebr303', 'en', 1, 'https://ror.org/003ebr303 Child Psychopharmacology Institute'),
(60100, 'https://ror.org/003jb2109', 'en', 1, 'https://ror.org/003jb2109 European School of Osteopathy'),
(60101, 'https://ror.org/003meye08', 'en', 1, 'https://ror.org/003meye08 Avans+'),
(60102, 'https://ror.org/003mvv560', 'pt', 1, 'https://ror.org/003mvv560 Hemorio, Instituto Estadual de Hematologia Arthur de Siqueira Cavalcanti'),
(60103, 'https://ror.org/003n39s44', 'nl', 1, 'https://ror.org/003n39s44 Apotheek Haagse Ziekenhuizen Pharmacy Hague Hospital'),
(60104, 'https://ror.org/003r56a21', 'no_lang_code', 1, 'https://ror.org/003r56a21 Mastelli (Italy)'),
(60105, 'https://ror.org/003s9de04', 'en', 1, 'https://ror.org/003s9de04 TMT Observatory'),
(60106, 'https://ror.org/003smky23', 'en', 1, 'https://ror.org/003smky23 Sanford Health'),
(60107, 'https://ror.org/003tbyf39', 'en', 1, 'https://ror.org/003tbyf39 Romanian Society of Nephrology Societatii Romane de Nefrologie'),
(60108, 'https://ror.org/003tvwa79', 'en', 1, 'https://ror.org/003tvwa79 Tri-State Community Health Center'),
(60109, 'https://ror.org/003vps097', 'en', 1, 'https://ror.org/003vps097 Hope Cancer Clinic'),
(60110, 'https://ror.org/003w29077', 'en', 1, 'https://ror.org/003w29077 Ontario Clinical Oncology Group'),
(60111, 'https://ror.org/003y1qj16', 'en', 1, 'https://ror.org/003y1qj16 Sanyu Africa Research Institute'),
(60112, 'https://ror.org/003y38f74', 'en', 1, 'https://ror.org/003y38f74 National Recreation and Park Association'),
(60113, 'https://ror.org/003z39n14', 'en', 1, 'https://ror.org/003z39n14 Shanghai International Medical Center'),
(60114, 'https://ror.org/0041kxp69', 'en', 1, 'https://ror.org/0041kxp69 Dr.Heiko Pult Optometry and Vision Research'),
(60115, 'https://ror.org/0043mrk19', 'en', 1, 'https://ror.org/0043mrk19 Norsk Smerteforening Norwegian Pain Society'),
(60116, 'https://ror.org/0043n7w07', 'en', 1, 'https://ror.org/0043n7w07 Integrative Clinical Trials'),
(60117, 'https://ror.org/00447xj53', 'no_lang_code', 1, 'https://ror.org/00447xj53 Lombard Medical (United Kingdom)'),
(60118, 'https://ror.org/0044b0b76', 'en', 1, 'https://ror.org/0044b0b76 HealthCare Partners Medical Group'),
(60119, 'https://ror.org/0044j7z53', 'en', 1, 'https://ror.org/0044j7z53 Hematology and Oncology Associates of Northeastern Pennsylvania'),
(60120, 'https://ror.org/0047xfq17', 'de', 1, 'https://ror.org/0047xfq17 Deutsche Gesellschaft für Neurogastroenterologie und Motilität'),
(60121, 'https://ror.org/00485nf12', 'no_lang_code', 1, 'https://ror.org/00485nf12 TheBeamer (United States)'),
(60122, 'https://ror.org/0049tqy16', 'en', 1, 'https://ror.org/0049tqy16 St. Hope Foundation'),
(60123, 'https://ror.org/004bh1g50', 'en', 1, 'https://ror.org/004bh1g50 National Horticultural Research Institute'),
(60124, 'https://ror.org/004cmqw89', 'no_lang_code', 1, 'https://ror.org/004cmqw89 AOK Allgemeine Ortskrankenkasse'),
(60125, 'https://ror.org/004cvgs24', 'en', 1, 'https://ror.org/004cvgs24 Food Ingredient and Health Research Institute'),
(60126, 'https://ror.org/004d7av08', 'en', 1, 'https://ror.org/004d7av08 Sutherland Society'),
(60127, 'https://ror.org/004ehjz87', 'en', 1, 'https://ror.org/004ehjz87 Society for Biomaterials'),
(60128, 'https://ror.org/004fmny49', 'en', 1, 'https://ror.org/004fmny49 Mercy NeuroScience Institute'),
(60129, 'https://ror.org/004gchq58', 'en', 1, 'https://ror.org/004gchq58 Cooperative Trials Group for Neuro-Oncology'),
(60130, 'https://ror.org/004myp730', 'en', 1, 'https://ror.org/004myp730 Northern Territory Seafood Council'),
(60131, 'https://ror.org/004n9g494', 'en', 1, 'https://ror.org/004n9g494 Task Applied Science'),
(60132, 'https://ror.org/004nvjv21', 'en', 1, 'https://ror.org/004nvjv21 Center for Research Strategies'),
(60133, 'https://ror.org/004pfc251', 'nl', 1, 'https://ror.org/004pfc251 Middelbaar Beroeps Onderwijs'),
(60134, 'https://ror.org/004q2nj38', 'no_lang_code', 1, 'https://ror.org/004q2nj38 Hobi Instrument Services (United States)'),
(60135, 'https://ror.org/004q7a047', 'no_lang_code', 1, 'https://ror.org/004q7a047 Bioline Products (Czechia)'),
(60136, 'https://ror.org/004s4b254', 'en', 1, 'https://ror.org/004s4b254 Inspira Medical Center Vineland'),
(60137, 'https://ror.org/004vymz43', 'en', 1, 'https://ror.org/004vymz43 Diabetes Association of Thailand ąøŖąø”ąø²ąø„ąø”ą¹‚ąø£ąø„ą¹€ąøšąø²ąø«ąø§ąø²ąø™ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(60138, 'https://ror.org/004w3b772', 'en', 1, 'https://ror.org/004w3b772 Alice Hamilton Occupational Health Center'),
(60139, 'https://ror.org/004xe4a74', 'no_lang_code', 1, 'https://ror.org/004xe4a74 Fyzzio (Netherlands)'),
(60140, 'https://ror.org/004xnky59', 'en', 1, 'https://ror.org/004xnky59 Science Museum of Virginia'),
(60141, 'https://ror.org/004znty77', 'en', 1, 'https://ror.org/004znty77 Joint Replacement Institute'),
(60142, 'https://ror.org/004zscr15', 'en', 1, 'https://ror.org/004zscr15 St. Peter''s Hospital'),
(60143, 'https://ror.org/0050bt095', 'en', 1, 'https://ror.org/0050bt095 Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine'),
(60144, 'https://ror.org/0052b4n21', 'pt', 1, 'https://ror.org/0052b4n21 Fundação Ataulpho de Paiva'),
(60145, 'https://ror.org/00536jb56', 'en', 1, 'https://ror.org/00536jb56 Hospital Consortium of San Mateo County'),
(60146, 'https://ror.org/005489b68', 'en', 1, 'https://ror.org/005489b68 Institute of Mind Control & Brain Development'),
(60147, 'https://ror.org/0055a4990', 'en', 1, 'https://ror.org/0055a4990 Dermatology Consulting Services'),
(60148, 'https://ror.org/0055t9634', 'en', 1, 'https://ror.org/0055t9634 Clinical Trials of South Carolina'),
(60149, 'https://ror.org/0055vz979', 'no_lang_code', 1, 'https://ror.org/0055vz979 Glauconix (United States)'),
(60150, 'https://ror.org/00562d506', 'en', 1, 'https://ror.org/00562d506 Chicago Anesthesia Pain Specialists'),
(60151, 'https://ror.org/0059chz26', 'no_lang_code', 1, 'https://ror.org/0059chz26 International Medical Research (Germany)'),
(60152, 'https://ror.org/0059g0z40', 'en', 1, 'https://ror.org/0059g0z40 Council of Colleges of Acupuncture and Oriental Medicine'),
(60153, 'https://ror.org/0059k0c96', 'de', 1, 'https://ror.org/0059k0c96 Krankenhaus Düren'),
(60154, 'https://ror.org/005ajjs97', 'en', 1, 'https://ror.org/005ajjs97 Caribbean Agricultural Research and Development Institute'),
(60155, 'https://ror.org/005cttr84', 'en', 1, 'https://ror.org/005cttr84 Clackamas Radiation Oncology Center'),
(60156, 'https://ror.org/005ebyb46', 'no_lang_code', 1, 'https://ror.org/005ebyb46 TutorGen (United States)'),
(60157, 'https://ror.org/005gwb033', 'en', 1, 'https://ror.org/005gwb033 Taiwan College of Healthcare Executive'),
(60158, 'https://ror.org/005hc0b16', 'en', 1, 'https://ror.org/005hc0b16 Stavropol Regional Clinical Oncology Center Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ областной клинический онкологический Гиспансер'),
(60159, 'https://ror.org/005hh6506', 'no_lang_code', 1, 'https://ror.org/005hh6506 Syntellix (Germany)'),
(60160, 'https://ror.org/005mppy75', 'en', 1, 'https://ror.org/005mppy75 Community Pharmacy Foundation'),
(60161, 'https://ror.org/005pe1772', 'en', 1, 'https://ror.org/005pe1772 Sixth Affiliated Hospital of Sun Yat-sen University äø­å±±å¤§å­¦é™„å±žē¬¬å…­åŒ»é™¢'),
(60162, 'https://ror.org/005snq210', 'en', 1, 'https://ror.org/005snq210 Southern Ocean Medical Center'),
(60163, 'https://ror.org/005vj6496', 'no_lang_code', 1, 'https://ror.org/005vj6496 Greenyard Fresh (United Kingdom)'),
(60164, 'https://ror.org/005vqqr19', 'pt', 1, 'https://ror.org/005vqqr19 Instituto do CĆ¢ncer do Estado de SĆ£o Paulo'),
(60165, 'https://ror.org/005w1rm61', 'pt', 1, 'https://ror.org/005w1rm61 Hospital Alvorada'),
(60166, 'https://ror.org/005wqmj88', 'en', 1, 'https://ror.org/005wqmj88 Alaska Geological Society'),
(60167, 'https://ror.org/005zj1y35', 'es', 1, 'https://ror.org/005zj1y35 Somdex Ginecologia Dr. Santiago Dexeus'),
(60168, 'https://ror.org/0061w5363', 'sk', 1, 'https://ror.org/0061w5363 FakultnĆ” Nemocnica Trnava'),
(60169, 'https://ror.org/0062czq56', 'en', 1, 'https://ror.org/0062czq56 DeGarmo Institute of Medical Research'),
(60170, 'https://ror.org/0062ps924', 'no_lang_code', 1, 'https://ror.org/0062ps924 LABCATAL (France)'),
(60171, 'https://ror.org/0065jhh26', 'en', 1, 'https://ror.org/0065jhh26 Cancer Center of Hawaii'),
(60172, 'https://ror.org/0066mxd71', 'de', 1, 'https://ror.org/0066mxd71 Rexrodt von Fircks Stiftung'),
(60173, 'https://ror.org/0066zpp98', 'en', 1, 'https://ror.org/0066zpp98 Agricultural Genomics Institute at Shenzhen äø­å›½å†œäøšē§‘å­¦é™¢ę·±åœ³å†œäøšåŸŗå› ē»„ē ”ē©¶ę‰€'),
(60174, 'https://ror.org/006ab0n43', 'en', 1, 'https://ror.org/006ab0n43 Community Frameworks'),
(60175, 'https://ror.org/006bc1e54', 'en', 1, 'https://ror.org/006bc1e54 Southern Fishermen Association'),
(60176, 'https://ror.org/006dhhj35', 'en', 1, 'https://ror.org/006dhhj35 Alaska Oncology & Hematology'),
(60177, 'https://ror.org/006ds0328', 'en', 1, 'https://ror.org/006ds0328 World Molecular Imaging Society'),
(60178, 'https://ror.org/006gamx40', 'es', 1, 'https://ror.org/006gamx40 Hospital Universitari de Santa Maria'),
(60179, 'https://ror.org/006gcvq32', 'en', 1, 'https://ror.org/006gcvq32 The Milton H. Erickson Foundation'),
(60180, 'https://ror.org/006ggeh68', 'no_lang_code', 1, 'https://ror.org/006ggeh68 Bentley (Germany)'),
(60181, 'https://ror.org/006gr2m12', 'nl', 1, 'https://ror.org/006gr2m12 Nederlandse Vereniging van Orthodontisten'),
(60182, 'https://ror.org/006mdd626', 'pt', 1, 'https://ror.org/006mdd626 Sociedade Brasileira de Cirurgia de CabeƧa e PescoƧo'),
(60183, 'https://ror.org/006rzj065', 'en', 1, 'https://ror.org/006rzj065 Institute for Environmental Research and Education'),
(60184, 'https://ror.org/006t1gb51', 'en', 1, 'https://ror.org/006t1gb51 Heart & Vascular Institute of Florida'),
(60185, 'https://ror.org/006w57p51', 'ro', 1, 'https://ror.org/006w57p51 Institutul Regional de Oncologie'),
(60186, 'https://ror.org/006wckc26', 'en', 1, 'https://ror.org/006wckc26 Neutron Scattering Society of America'),
(60187, 'https://ror.org/006zme475', 'no_lang_code', 1, 'https://ror.org/006zme475 Embedded Research Solutions (United States)'),
(60188, 'https://ror.org/0071kdv81', 'no_lang_code', 1, 'https://ror.org/0071kdv81 Chedd Angier Production (United States)'),
(60189, 'https://ror.org/0071tdq26', 'de', 1, 'https://ror.org/0071tdq26 Sana Klinikum Lichtenberg'),
(60190, 'https://ror.org/007322p37', 'en', 1, 'https://ror.org/007322p37 Dunsan Korean Medicine Hospital 단산 ķ•œģ˜ģ› 병원'),
(60191, 'https://ror.org/0073whr05', 'no_lang_code', 1, 'https://ror.org/0073whr05 Fujitsu (United States)'),
(60192, 'https://ror.org/00740sw32', 'en', 1, 'https://ror.org/00740sw32 Asklepios Foundation'),
(60193, 'https://ror.org/007416t51', 'no_lang_code', 1, 'https://ror.org/007416t51 Sysmex (Germany)'),
(60194, 'https://ror.org/007492963', 'en', 1, 'https://ror.org/007492963 Grupo de Apoio ao Adolescente e à Criança com Câncer Support group for adolescents and children with cancer'),
(60195, 'https://ror.org/0075ba798', 'en', 1, 'https://ror.org/0075ba798 Southeastern Spine Center & Research Institute'),
(60196, 'https://ror.org/0075qjc87', 'en', 1, 'https://ror.org/0075qjc87 Mathematics Education Collaborative'),
(60197, 'https://ror.org/00768sz96', 'en', 1, 'https://ror.org/00768sz96 Chinese People''s Armed Police Force Medical College Affiliated Hospital äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜ŸåŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(60198, 'https://ror.org/007847151', 'en', 1, 'https://ror.org/007847151 Australian and New Zealand Intensive Care Society'),
(60199, 'https://ror.org/007857862', 'no_lang_code', 1, 'https://ror.org/007857862 Kreiskrankenhaus Gummersbach'),
(60200, 'https://ror.org/0079d7396', 'no_lang_code', 1, 'https://ror.org/0079d7396 Bountiful Applied Research Corporation (United States)'),
(60201, 'https://ror.org/0079qbp72', 'en', 1, 'https://ror.org/0079qbp72 Uniontown Hospital Radiation Oncology'),
(60202, 'https://ror.org/007aefc66', 'en', 1, 'https://ror.org/007aefc66 Pen Bay Medical Center'),
(60203, 'https://ror.org/007b8s847', 'nl', 1, 'https://ror.org/007b8s847 GGD Haaglanden, Gemeentelijke gezondheidsdienst Haaglanden'),
(60204, 'https://ror.org/007c43p06', 'pt', 1, 'https://ror.org/007c43p06 Brazilian Institute of Osteopathy Instituto Brasileiro de Osteopatia'),
(60205, 'https://ror.org/007ca3v86', 'en', 1, 'https://ror.org/007ca3v86 Council for Advancement and Support of Education'),
(60206, 'https://ror.org/007d0bq34', 'en', 1, 'https://ror.org/007d0bq34 Maier Foundation'),
(60207, 'https://ror.org/007emtd94', 'no_lang_code', 1, 'https://ror.org/007emtd94 Nielsen (Germany)'),
(60208, 'https://ror.org/007g95547', 'no_lang_code', 1, 'https://ror.org/007g95547 Immunitor (Mongolia)'),
(60209, 'https://ror.org/007hfqg84', 'no_lang_code', 1, 'https://ror.org/007hfqg84 Nutricia (United Kingdom)'),
(60210, 'https://ror.org/007jwqb84', 'en', 1, 'https://ror.org/007jwqb84 French River Education Center'),
(60211, 'https://ror.org/007nc6623', 'en', 1, 'https://ror.org/007nc6623 The American Law Institute'),
(60212, 'https://ror.org/007nw9a41', 'en', 1, 'https://ror.org/007nw9a41 University Orthopaedic Associates'),
(60213, 'https://ror.org/007r4ws88', 'en', 1, 'https://ror.org/007r4ws88 Krishnadevaraya College of Dental Sciences and Hospital ą²•ą³ƒą²·ą³ą²£ą²¦ą³‡ą²µą²°ą²¾ą²Æ ದಂತ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(60214, 'https://ror.org/007rj1t21', 'nl', 1, 'https://ror.org/007rj1t21 Janusz Korczak Stichting'),
(60215, 'https://ror.org/007rr9202', 'en', 1, 'https://ror.org/007rr9202 Utah Cancer Specialists'),
(60216, 'https://ror.org/007sjwq14', 'nl', 1, 'https://ror.org/007sjwq14 Dokter Wittenberg Stichting'),
(60217, 'https://ror.org/007tk2m83', 'no_lang_code', 1, 'https://ror.org/007tk2m83 Cleveland-Cliffs (United States)'),
(60218, 'https://ror.org/007wy9707', 'en', 1, 'https://ror.org/007wy9707 Pali Momi Medical Center'),
(60219, 'https://ror.org/007zn4n28', 'no_lang_code', 1, 'https://ror.org/007zn4n28 Hologic (Germany)'),
(60220, 'https://ror.org/0081aw162', 'en', 1, 'https://ror.org/0081aw162 Arq Psychotrauma Expert Groep Arq Psychotrauma Expert Group'),
(60221, 'https://ror.org/00828d816', 'it', 1, 'https://ror.org/00828d816 Studio Odontoiatrico Mangano'),
(60222, 'https://ror.org/0082g5x07', 'en', 1, 'https://ror.org/0082g5x07 Better Education Inc'),
(60223, 'https://ror.org/0084rd854', 'en', 1, 'https://ror.org/0084rd854 Institute for Sports Medicine Sportmedizinische Institut'),
(60224, 'https://ror.org/008545842', 'en', 1, 'https://ror.org/008545842 White Clinic'),
(60225, 'https://ror.org/0085er114', 'en', 1, 'https://ror.org/0085er114 Asthma Society of Ireland'),
(60226, 'https://ror.org/00878jj67', 'en', 1, 'https://ror.org/00878jj67 Pain Management Institute'),
(60227, 'https://ror.org/0087pxt17', 'es', 1, 'https://ror.org/0087pxt17 Fundación Pethema'),
(60228, 'https://ror.org/0088a9521', 'no_lang_code', 1, 'https://ror.org/0088a9521 Universe Technical Translation (United States)'),
(60229, 'https://ror.org/0089jr070', 'en', 1, 'https://ror.org/0089jr070 Techbridge (United States)'),
(60230, 'https://ror.org/008a4xs91', 'en', 1, 'https://ror.org/008a4xs91 Alan Turing Institute Almere'),
(60231, 'https://ror.org/008adck89', 'no_lang_code', 1, 'https://ror.org/008adck89 Analyze & Realize (Germany)'),
(60232, 'https://ror.org/008aexf53', 'en', 1, 'https://ror.org/008aexf53 Merrion Fertility Clinic'),
(60233, 'https://ror.org/008cpgt80', 'no_lang_code', 1, 'https://ror.org/008cpgt80 DJO Global (Germany)'),
(60234, 'https://ror.org/008dhsm98', 'en', 1, 'https://ror.org/008dhsm98 Saint Joseph Hospital East'),
(60235, 'https://ror.org/008e4jj26', 'en', 1, 'https://ror.org/008e4jj26 Delaware Valley Industrial Resource Center'),
(60236, 'https://ror.org/008gj9m82', 'de', 1, 'https://ror.org/008gj9m82 Lesmüller-Stiftung'),
(60237, 'https://ror.org/008mcnd42', 'no_lang_code', 1, 'https://ror.org/008mcnd42 Origin BioMed (Canada)'),
(60238, 'https://ror.org/008n6hb03', 'en', 1, 'https://ror.org/008n6hb03 Vachira Phuket Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøØąø¹ąø™ąø¢ą¹Œąø§ąøŠąø“ąø£ąø°ąø ąø¹ą¹€ąøą¹‡ąø•'),
(60239, 'https://ror.org/008nt0z81', 'en', 1, 'https://ror.org/008nt0z81 Central Clinical Hospital of Civil Aviation'),
(60240, 'https://ror.org/008nyfh72', 'en', 1, 'https://ror.org/008nyfh72 World Future Society'),
(60241, 'https://ror.org/008pyjt05', 'en', 1, 'https://ror.org/008pyjt05 Institut für Pathologie Celle Institute of Pathology Celle'),
(60242, 'https://ror.org/008qav573', 'en', 1, 'https://ror.org/008qav573 The Foundation for Peripheral Neuropathy'),
(60243, 'https://ror.org/008qz0n88', 'no_lang_code', 1, 'https://ror.org/008qz0n88 Blue Sky Research (United States)'),
(60244, 'https://ror.org/008v85a91', 'en', 1, 'https://ror.org/008v85a91 Alaska Native Heritage Center'),
(60245, 'https://ror.org/008vha608', 'no_lang_code', 1, 'https://ror.org/008vha608 NestlƩ (South Africa)'),
(60246, 'https://ror.org/008vhq233', 'en', 1, 'https://ror.org/008vhq233 North American Skull Base Society'),
(60247, 'https://ror.org/008x2am79', 'en', 1, 'https://ror.org/008x2am79 Chengdu Women''s and Children''s Central Hospital ęˆéƒ½åø‚å¦‡å„³å„æē«„äø­åæƒåŒ»é™¢'),
(60248, 'https://ror.org/008xssk57', 'no_lang_code', 1, 'https://ror.org/008xssk57 gesetzlichen Krankenversicherungen gkv informatik (Germany)'),
(60249, 'https://ror.org/008zpgd78', 'no_lang_code', 1, 'https://ror.org/008zpgd78 Qualissima (France)'),
(60250, 'https://ror.org/00933dx23', 'no_lang_code', 1, 'https://ror.org/00933dx23 Perfusion Solution (United States)'),
(60251, 'https://ror.org/0093ach88', 'en', 1, 'https://ror.org/0093ach88 CHI Memorial Medical Group'),
(60252, 'https://ror.org/0093yfm43', 'de', 1, 'https://ror.org/0093yfm43 Institut für Verhaltenstherapie-Ausbildung Hamburg'),
(60253, 'https://ror.org/0095qtr23', 'en', 1, 'https://ror.org/0095qtr23 Finnish Society of Obstetrics and Gynaecology Suomen Gynekologiyhdistys'),
(60254, 'https://ror.org/009914361', 'en', 1, 'https://ror.org/009914361 Zaporizhzhia Medical Academy of Post-Graduate Education Ministry of Health of Ukraine Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ° меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŠæŃ–ŃŠ»ŃŠ“ŠøŠæŠ»Š¾Š¼Š½Š¾Ń— освіти ŠœŃ–ністерства охорони Š·Š“Š¾Ń€Š¾Š²ā€™Ń України'),
(60255, 'https://ror.org/009cq8s89', 'no_lang_code', 1, 'https://ror.org/009cq8s89 Olympus (Netherlands)'),
(60256, 'https://ror.org/009ewjt73', 'en', 1, 'https://ror.org/009ewjt73 Four Winds Hospital'),
(60257, 'https://ror.org/009fgen45', 'en', 1, 'https://ror.org/009fgen45 Chitwan Medical College'),
(60258, 'https://ror.org/009gj6k64', 'de', 1, 'https://ror.org/009gj6k64 DRK Kamillus Klinik'),
(60259, 'https://ror.org/009j5xv46', 'de', 1, 'https://ror.org/009j5xv46 Berufsgenossenschaft für Gesundheitsdienst und Wohlfahrtspflege'),
(60260, 'https://ror.org/009mmg508', 'no_lang_code', 1, 'https://ror.org/009mmg508 Vistex Composites (United States)'),
(60261, 'https://ror.org/009py3f05', 'en', 1, 'https://ror.org/009py3f05 Center for Child and Family Health'),
(60262, 'https://ror.org/009qnrs53', 'es', 1, 'https://ror.org/009qnrs53 Asepeyo Hospital Sant Cugat'),
(60263, 'https://ror.org/009r5p347', 'en', 1, 'https://ror.org/009r5p347 Ludwig Boltzmann Institute for Lung Vascular Research'),
(60264, 'https://ror.org/009tgn030', 'en', 1, 'https://ror.org/009tgn030 American Pancreatic Association'),
(60265, 'https://ror.org/009tt1y46', 'en', 1, 'https://ror.org/009tt1y46 Autodesk Foundation'),
(60266, 'https://ror.org/009v0hs75', 'nl', 1, 'https://ror.org/009v0hs75 Stichting Bergh in het Zadel'),
(60267, 'https://ror.org/009vxx508', 'en', 1, 'https://ror.org/009vxx508 Tennessee Physical Therapy Association'),
(60268, 'https://ror.org/009w6v212', 'en', 1, 'https://ror.org/009w6v212 Nizhny Novgorod Regional Clinical Hospital named after Semashko ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° им. Š.А.Демашко'),
(60269, 'https://ror.org/009xczs96', 'en', 1, 'https://ror.org/009xczs96 Midas Multispeciality Hospital'),
(60270, 'https://ror.org/009xp9857', 'de', 1, 'https://ror.org/009xp9857 Deutsche Stiftung Eierstockkrebs'),
(60271, 'https://ror.org/00a0bqh48', 'de', 1, 'https://ror.org/00a0bqh48 Klinik für Frauenheilkunde'),
(60272, 'https://ror.org/00a1kgg63', 'no_lang_code', 1, 'https://ror.org/00a1kgg63 ACR Electronics (United States)'),
(60273, 'https://ror.org/00a1wp308', 'en', 1, 'https://ror.org/00a1wp308 Effective Intervention'),
(60274, 'https://ror.org/00a2ywd05', 'en', 1, 'https://ror.org/00a2ywd05 Acid Maltase Deficiency Association'),
(60275, 'https://ror.org/00a34ea95', 'ro', 1, 'https://ror.org/00a34ea95 Institutul Regional de Gastroenterologie Prof. Dr. Octavian Fodor'),
(60276, 'https://ror.org/00a43s158', 'nl', 1, 'https://ror.org/00a43s158 Hart voor Research Aalst'),
(60277, 'https://ror.org/00a4sne40', 'en', 1, 'https://ror.org/00a4sne40 The Evolution Institute'),
(60278, 'https://ror.org/00a8x7j67', 'en', 1, 'https://ror.org/00a8x7j67 Federal Law Enforcement Training Centers'),
(60279, 'https://ror.org/00ab7gt92', 'no_lang_code', 1, 'https://ror.org/00ab7gt92 Sinclair Pharma'),
(60280, 'https://ror.org/00abcs339', 'no_lang_code', 1, 'https://ror.org/00abcs339 Stasys Medical (United States)'),
(60281, 'https://ror.org/00adthh60', 'de', 1, 'https://ror.org/00adthh60 Vestische Caritas-Kliniken'),
(60282, 'https://ror.org/00aeyav11', 'en', 1, 'https://ror.org/00aeyav11 Foundation for Biomedical Research'),
(60283, 'https://ror.org/00af9q554', 'no_lang_code', 1, 'https://ror.org/00af9q554 Vitromics (Netherlands)'),
(60284, 'https://ror.org/00afzcs08', 'no_lang_code', 1, 'https://ror.org/00afzcs08 HumanTotalCare (Netherlands)'),
(60285, 'https://ror.org/00aj8m584', 'no_lang_code', 1, 'https://ror.org/00aj8m584 Optana (Germany)'),
(60286, 'https://ror.org/00am1hd38', 'en', 1, 'https://ror.org/00am1hd38 United Leukodystrophy Foundation'),
(60287, 'https://ror.org/00ame3479', 'en', 1, 'https://ror.org/00ame3479 Work Opportunity Center'),
(60288, 'https://ror.org/00ap4jg40', 'sl', 1, 'https://ror.org/00ap4jg40 InŔtitut za preventivno medicino'),
(60289, 'https://ror.org/00apa5z77', 'no_lang_code', 1, 'https://ror.org/00apa5z77 InquisitHealth (United States)'),
(60290, 'https://ror.org/00apfzg17', 'pt', 1, 'https://ror.org/00apfzg17 Hospital OrtopƩdico de Passo Fundo'),
(60291, 'https://ror.org/00aqfrr40', 'pt', 1, 'https://ror.org/00aqfrr40 Hospital UniversitƔrio de Santa Maria'),
(60292, 'https://ror.org/00arjmf19', 'en', 1, 'https://ror.org/00arjmf19 Triple O Medical Services'),
(60293, 'https://ror.org/00at08b36', 'es', 1, 'https://ror.org/00at08b36 Hospital Universitario de Torrejón'),
(60294, 'https://ror.org/00at6yb56', 'en', 1, 'https://ror.org/00at6yb56 Jiangxi Province Soil and Water Conservation Science Research Institute ę±Ÿč„æēœę°“åœŸäæęŒē§‘å­¦ē ”ē©¶é™¢'),
(60295, 'https://ror.org/00at7nn49', 'en', 1, 'https://ror.org/00at7nn49 Liverpool Women''s Health Centre'),
(60296, 'https://ror.org/00aw4mh72', 'no_lang_code', 1, 'https://ror.org/00aw4mh72 Madison Group (United States)'),
(60297, 'https://ror.org/00awtmg03', 'en', 1, 'https://ror.org/00awtmg03 Northern New Mexico Health Center'),
(60298, 'https://ror.org/00awvt671', 'no_lang_code', 1, 'https://ror.org/00awvt671 Roche (Finland)'),
(60299, 'https://ror.org/00axjbs56', 'en', 1, 'https://ror.org/00axjbs56 Borland Groover Clinic'),
(60300, 'https://ror.org/00axvkc03', 'fr', 1, 'https://ror.org/00axvkc03 Association FranƧaise de Chirurgie'),
(60301, 'https://ror.org/00ayb2728', 'en', 1, 'https://ror.org/00ayb2728 Patrick Air Force Base'),
(60302, 'https://ror.org/00b095n33', 'no_lang_code', 1, 'https://ror.org/00b095n33 Ribometrix (United States)'),
(60303, 'https://ror.org/00b168w70', 'es', 1, 'https://ror.org/00b168w70 ClĆ­nica IVI Alicante'),
(60304, 'https://ror.org/00b3d7291', 'es', 1, 'https://ror.org/00b3d7291 ClĆ­nica RementerĆ­a'),
(60305, 'https://ror.org/00b3xjw51', 'nl', 1, 'https://ror.org/00b3xjw51 GGZ Noord-Holland-Noord'),
(60306, 'https://ror.org/00b5yqe44', 'no_lang_code', 1, 'https://ror.org/00b5yqe44 Myolex (United States)'),
(60307, 'https://ror.org/00bbh3b38', 'en', 1, 'https://ror.org/00bbh3b38 International Piezoelectric Surgery Academy'),
(60308, 'https://ror.org/00bcgyq51', 'en', 1, 'https://ror.org/00bcgyq51 Great Lakes Environmental Center'),
(60309, 'https://ror.org/00be8q935', 'en', 1, 'https://ror.org/00be8q935 National Board for Professional Teaching Standards'),
(60310, 'https://ror.org/00bhbea87', 'en', 1, 'https://ror.org/00bhbea87 Second Affiliated Hospital of Jiangxi University of TCM ę±Ÿč„æäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(60311, 'https://ror.org/00bkg1j27', 'en', 1, 'https://ror.org/00bkg1j27 The Astronauts Memorial Foundation'),
(60312, 'https://ror.org/00bkk2469', 'en', 1, 'https://ror.org/00bkk2469 Medarva Healthcare'),
(60313, 'https://ror.org/00bpfyj89', 'en', 1, 'https://ror.org/00bpfyj89 Shenzhen Inno Translational Medicine Institute'),
(60314, 'https://ror.org/00bqc1z76', 'en', 1, 'https://ror.org/00bqc1z76 Central-Asian Institute for Applied Geosciences Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Азиатский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГных ИсслеГований Земли'),
(60315, 'https://ror.org/00bqttt79', 'en', 1, 'https://ror.org/00bqttt79 Islamic Azad University, Marvdasht دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ų±ŁˆŲÆŲ“ŲŖ'),
(60316, 'https://ror.org/00brfrj94', 'en', 1, 'https://ror.org/00brfrj94 Veterans for America'),
(60317, 'https://ror.org/00bvdsg05', 'de', 1, 'https://ror.org/00bvdsg05 Krankenhaus Agatharied'),
(60318, 'https://ror.org/00byb9q66', 'no_lang_code', 1, 'https://ror.org/00byb9q66 Fractyl (United States)'),
(60319, 'https://ror.org/00byypm17', 'en', 1, 'https://ror.org/00byypm17 American Health Research Institute'),
(60320, 'https://ror.org/00c0e8k87', 'en', 1, 'https://ror.org/00c0e8k87 Pothecary Witham Weld Solicitors'),
(60321, 'https://ror.org/00c11v577', 'en', 1, 'https://ror.org/00c11v577 Rice Research Institute å¹æäøœēœå†œäøšē§‘å­¦é™¢ę°“ēØ»ē ”ē©¶ę‰€'),
(60322, 'https://ror.org/00c5hbd86', 'no_lang_code', 1, 'https://ror.org/00c5hbd86 Panin (Italy)'),
(60323, 'https://ror.org/00c5s4m23', 'en', 1, 'https://ror.org/00c5s4m23 State Scientific Center of Coloproctology'),
(60324, 'https://ror.org/00c6acq81', 'nl', 1, 'https://ror.org/00c6acq81 Galactosemie Vereniging Nederland'),
(60325, 'https://ror.org/00c7tye13', 'pt', 1, 'https://ror.org/00c7tye13 Medcin Dermatologia'),
(60326, 'https://ror.org/00c9v5g25', 'nl', 1, 'https://ror.org/00c9v5g25 Stichting FORCE'),
(60327, 'https://ror.org/00cb3r984', 'fr', 1, 'https://ror.org/00cb3r984 Ministry of Public Health Ministère de la Santé Publique'),
(60328, 'https://ror.org/00ccsy875', 'nl', 1, 'https://ror.org/00ccsy875 Tante Louise'),
(60329, 'https://ror.org/00cde8652', 'en', 1, 'https://ror.org/00cde8652 Laureate Psychiatric Clinic and Hospital'),
(60330, 'https://ror.org/00cdkww69', 'en', 1, 'https://ror.org/00cdkww69 Williamsburg Technical College'),
(60331, 'https://ror.org/00cdpwj98', 'no_lang_code', 1, 'https://ror.org/00cdpwj98 Vivisol (Netherlands)'),
(60332, 'https://ror.org/00cf1wm13', 'es', 1, 'https://ror.org/00cf1wm13 Conferencia de Rectores de las Universidades EspaƱolas'),
(60333, 'https://ror.org/00cfpf441', 'nl', 1, 'https://ror.org/00cfpf441 Evean'),
(60334, 'https://ror.org/00cftt483', 'no_lang_code', 1, 'https://ror.org/00cftt483 Hoya Surgical Optics (United States)'),
(60335, 'https://ror.org/00cgpr989', 'en', 1, 'https://ror.org/00cgpr989 Lucamed'),
(60336, 'https://ror.org/00cj1jz35', 'en', 1, 'https://ror.org/00cj1jz35 Catholic Charities Archdiocese of Washington'),
(60337, 'https://ror.org/00cj4je85', 'no_lang_code', 1, 'https://ror.org/00cj4je85 Worldwide Clinical Trials (United States)'),
(60338, 'https://ror.org/00cjqwv82', 'en', 1, 'https://ror.org/00cjqwv82 Minnesota''s Private Colleges'),
(60339, 'https://ror.org/00ck5vv44', 'en', 1, 'https://ror.org/00ck5vv44 Ignited'),
(60340, 'https://ror.org/00cm7z053', 'en', 1, 'https://ror.org/00cm7z053 Health First'),
(60341, 'https://ror.org/00cnyek90', 'en', 1, 'https://ror.org/00cnyek90 American Institute of Professional Geologists'),
(60342, 'https://ror.org/00cr1ar81', 'en', 1, 'https://ror.org/00cr1ar81 Australian and New Zealand Society of Palliative Medicine'),
(60343, 'https://ror.org/00ctszj26', 'en', 1, 'https://ror.org/00ctszj26 Cleveland Shoulder Institute'),
(60344, 'https://ror.org/00d110q75', 'en', 1, 'https://ror.org/00d110q75 Sacred Heart Hospital'),
(60345, 'https://ror.org/00d18j871', 'fr', 1, 'https://ror.org/00d18j871 CollĆØge d''Ɖtudes OstĆ©opathiques de MontrĆ©al'),
(60346, 'https://ror.org/00d36eq66', 'en', 1, 'https://ror.org/00d36eq66 National and University Library "St. Kliment of Ohrid" ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Šø ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ŃŠŗŠ° библиотека ā€žŠ”Š². ŠšŠ»ŠøŠ¼ŠµŠ½Ń‚ ŠžŃ…Ń€ŠøŠ“ŃŠŗŠø ā€œ'),
(60347, 'https://ror.org/00d435084', 'no_lang_code', 1, 'https://ror.org/00d435084 Factory Physics (United States)'),
(60348, 'https://ror.org/00d5ej794', 'en', 1, 'https://ror.org/00d5ej794 Hematology\\Oncology Clinic'),
(60349, 'https://ror.org/00d619908', 'es', 1, 'https://ror.org/00d619908 Instituto Mexicano de OftalmologĆ­a IAP'),
(60350, 'https://ror.org/00d6bjs95', 'en', 1, 'https://ror.org/00d6bjs95 China Guangzhou Analysis and Testing Center äø­å›½å¹æå·žåˆ†ęžęµ‹čÆ•äø­åæƒ'),
(60351, 'https://ror.org/00d7qnf81', 'nl', 1, 'https://ror.org/00d7qnf81 Zorg voor innoveren'),
(60352, 'https://ror.org/00da4q652', 'en', 1, 'https://ror.org/00da4q652 Sutherland Cranial College of Osteopathy'),
(60353, 'https://ror.org/00dav3y17', 'nl', 1, 'https://ror.org/00dav3y17 Huygen Installatie Adviseurs'),
(60354, 'https://ror.org/00dbfqh37', 'en', 1, 'https://ror.org/00dbfqh37 Golden Helix Foundation'),
(60355, 'https://ror.org/00dd2mx78', 'en', 1, 'https://ror.org/00dd2mx78 Allied Biomedical Research Institute'),
(60356, 'https://ror.org/00dd86343', 'es', 1, 'https://ror.org/00dd86343 Hospital de Nens de Barcelona'),
(60357, 'https://ror.org/00ddc4178', 'en', 1, 'https://ror.org/00ddc4178 Voronezh Regional Clinical Oncology Center Воронежский областной клинический онкологический Гиспансер'),
(60358, 'https://ror.org/00ddrsv17', 'no_lang_code', 1, 'https://ror.org/00ddrsv17 Splitvane Engineers (United States)'),
(60359, 'https://ror.org/00dehxn63', 'en', 1, 'https://ror.org/00dehxn63 Canadian Fasteners Institute'),
(60360, 'https://ror.org/00dfdhy47', 'nl', 1, 'https://ror.org/00dfdhy47 Stichting Artrose Zorg'),
(60361, 'https://ror.org/00dfpj523', 'en', 1, 'https://ror.org/00dfpj523 Heliodor Swiecicki Clinical Hospital Szpital Kliniczny im. Heliodora Święcickiego w Poznaniu'),
(60362, 'https://ror.org/00dhqzt16', 'de', 1, 'https://ror.org/00dhqzt16 INVADE Institut für Versorgungsforschung'),
(60363, 'https://ror.org/00djc6h11', 'en', 1, 'https://ror.org/00djc6h11 UW Cancer Center Johnson Creek'),
(60364, 'https://ror.org/00dkbxq38', 'no_lang_code', 1, 'https://ror.org/00dkbxq38 Hikma Pharmaceuticals (Germany)'),
(60365, 'https://ror.org/00dkp4z50', 'nl', 1, 'https://ror.org/00dkp4z50 GGD Rotterdam-Rijnmond, Gemeentelijke gezondheidsdienst Rotterdam-Rijnmond'),
(60366, 'https://ror.org/00dmsga81', 'en', 1, 'https://ror.org/00dmsga81 Palomar Health'),
(60367, 'https://ror.org/00dpz6e68', 'de', 1, 'https://ror.org/00dpz6e68 Rut- und Klaus-Bahlsen-Stiftung'),
(60368, 'https://ror.org/00dqec984', 'en', 1, 'https://ror.org/00dqec984 Hope Women''s Cancer Centers'),
(60369, 'https://ror.org/00dr70705', 'de', 1, 'https://ror.org/00dr70705 Frauenklinik an der Elbe'),
(60370, 'https://ror.org/00dt6z133', 'en', 1, 'https://ror.org/00dt6z133 Big Horn Basin Regional Cancer Center'),
(60371, 'https://ror.org/00dtsng04', 'en', 1, 'https://ror.org/00dtsng04 Republican Clinical Hospital of the Ministry of Health of the Republic of Tatarstan'),
(60372, 'https://ror.org/00dv58j78', 'en', 1, 'https://ror.org/00dv58j78 Protexin'),
(60373, 'https://ror.org/00dvqrz49', 'de', 1, 'https://ror.org/00dvqrz49 Helios Amper-Klinikum Dachau'),
(60374, 'https://ror.org/00dw21h32', 'en', 1, 'https://ror.org/00dw21h32 Flint Hills Community Health Center'),
(60375, 'https://ror.org/00dx38855', 'en', 1, 'https://ror.org/00dx38855 McFarland Clinic - Jefferson'),
(60376, 'https://ror.org/00dxw4v18', 'fr', 1, 'https://ror.org/00dxw4v18 HƓpital Couple Enfant'),
(60377, 'https://ror.org/00dyr0c82', 'en', 1, 'https://ror.org/00dyr0c82 Adena Regional Medical Center'),
(60378, 'https://ror.org/00e765c94', 'no_lang_code', 1, 'https://ror.org/00e765c94 Goolwa Pipi (Australia)'),
(60379, 'https://ror.org/00e81jd95', 'no_lang_code', 1, 'https://ror.org/00e81jd95 Sapporo Higashi Tokushukai Hospital ęœ­å¹Œę±ę€„ē™¾č²Øåŗ—'),
(60380, 'https://ror.org/00ebjgp93', 'en', 1, 'https://ror.org/00ebjgp93 National Association of People with HIV Australia'),
(60381, 'https://ror.org/00ec18z53', 'no_lang_code', 1, 'https://ror.org/00ec18z53 BEGO Implant Systems (Germany)'),
(60382, 'https://ror.org/00ef78t34', 'no_lang_code', 1, 'https://ror.org/00ef78t34 Novaliq (Germany)'),
(60383, 'https://ror.org/00eggnv95', 'en', 1, 'https://ror.org/00eggnv95 Finnish Safety and Chemicals Agency SƤkerhets- och kemikalieverket Turvallisuus- ja kemikaalivirasto'),
(60384, 'https://ror.org/00ej70p06', 'en', 1, 'https://ror.org/00ej70p06 Orygen Youth Health'),
(60385, 'https://ror.org/00ekwj913', 'no_lang_code', 1, 'https://ror.org/00ekwj913 Humedics (Germany)'),
(60386, 'https://ror.org/00en0kf81', 'en', 1, 'https://ror.org/00en0kf81 Glendale Heart Institute'),
(60387, 'https://ror.org/00ermfs73', 'en', 1, 'https://ror.org/00ermfs73 Budgetary Health Care Institution of the Omsk Region "Clinical Oncology Center"'),
(60388, 'https://ror.org/00esbf302', 'de', 1, 'https://ror.org/00esbf302 St. Elisabeth-Krankenhaus Leipzig'),
(60389, 'https://ror.org/00etqq360', 'en', 1, 'https://ror.org/00etqq360 Marshfield Clinic'),
(60390, 'https://ror.org/00ettzs98', 'no_lang_code', 1, 'https://ror.org/00ettzs98 Ascent Bio-Nano Technologies (United States)'),
(60391, 'https://ror.org/00evjez55', 'no_lang_code', 1, 'https://ror.org/00evjez55 Tethys Research (United States)'),
(60392, 'https://ror.org/00evne535', 'no_lang_code', 1, 'https://ror.org/00evne535 Apollo Medical Devices (United States)'),
(60393, 'https://ror.org/00ey8ew03', 'no_lang_code', 1, 'https://ror.org/00ey8ew03 Lƶwenstein Medical (Germany)'),
(60394, 'https://ror.org/00eytwa65', 'en', 1, 'https://ror.org/00eytwa65 Allied Research Society'),
(60395, 'https://ror.org/00ezhaq65', 'en', 1, 'https://ror.org/00ezhaq65 Fort Wayne Medical Institute'),
(60396, 'https://ror.org/00ezv4e18', 'es', 1, 'https://ror.org/00ezv4e18 Hospital Viamed Valvanera'),
(60397, 'https://ror.org/00f054b56', 'en', 1, 'https://ror.org/00f054b56 Thai Dietetic Association'),
(60398, 'https://ror.org/00f180m78', 'de', 1, 'https://ror.org/00f180m78 Klinik und Poliklinik für Psychosomatik und Psychotherapie'),
(60399, 'https://ror.org/00f2tsn51', 'no_lang_code', 1, 'https://ror.org/00f2tsn51 Takeda (Italy)'),
(60400, 'https://ror.org/00f378f80', 'sv', 1, 'https://ror.org/00f378f80 Akademiska Barnsjukhuset'),
(60401, 'https://ror.org/00f3p5990', 'no_lang_code', 1, 'https://ror.org/00f3p5990 Pyrochem Catalyst Company (United States)'),
(60402, 'https://ror.org/00f91fg22', 'en', 1, 'https://ror.org/00f91fg22 Tasmanian Seafood Industry Council'),
(60403, 'https://ror.org/00fan0f25', 'no_lang_code', 1, 'https://ror.org/00fan0f25 Servier (China)'),
(60404, 'https://ror.org/00fb1n669', 'en', 1, 'https://ror.org/00fb1n669 Rhode Island Mood and Memory Research Institute'),
(60405, 'https://ror.org/00fdh5j55', 'no_lang_code', 1, 'https://ror.org/00fdh5j55 Given Imaging (Germany)'),
(60406, 'https://ror.org/00feb6h18', 'nl', 1, 'https://ror.org/00feb6h18 Stichting RevaZorg'),
(60407, 'https://ror.org/00feyy410', 'it', 1, 'https://ror.org/00feyy410 Associaizone per lo Studio della Sclerosi Sistemica e delle Malattie'),
(60408, 'https://ror.org/00ffe3313', 'en', 1, 'https://ror.org/00ffe3313 Deutsche Gesellschaft für Pneumologie und Beatmungsmedizin German Respiratory Society'),
(60409, 'https://ror.org/00fg6ww52', 'no_lang_code', 1, 'https://ror.org/00fg6ww52 Buck Research Instruments (United States)'),
(60410, 'https://ror.org/00fgz4k79', 'no_lang_code', 1, 'https://ror.org/00fgz4k79 Novita Healthcare (Australia)'),
(60411, 'https://ror.org/00fh64z73', 'en', 1, 'https://ror.org/00fh64z73 The Performance Institute'),
(60412, 'https://ror.org/00fjyk033', 'en', 1, 'https://ror.org/00fjyk033 Desert Medical Imaging'),
(60413, 'https://ror.org/00fjzr749', 'no_lang_code', 1, 'https://ror.org/00fjzr749 Sanguine Biosciences (United States)'),
(60414, 'https://ror.org/00fk5gz64', 'en', 1, 'https://ror.org/00fk5gz64 Bunker Hill Elementary School'),
(60415, 'https://ror.org/00fpjmb27', 'en', 1, 'https://ror.org/00fpjmb27 Alignment Nashville'),
(60416, 'https://ror.org/00fq8t576', 'en', 1, 'https://ror.org/00fq8t576 Liberian Institute for Biomedical Research'),
(60417, 'https://ror.org/00fr16483', 'no_lang_code', 1, 'https://ror.org/00fr16483 Leighton (United States)'),
(60418, 'https://ror.org/00frd0c49', 'no_lang_code', 1, 'https://ror.org/00frd0c49 Thornton and Ross (United Kingdom)'),
(60419, 'https://ror.org/00frk6j35', 'de', 1, 'https://ror.org/00frk6j35 Berner Augenklinik am Lindenhofspital'),
(60420, 'https://ror.org/00fsjhf77', 'es', 1, 'https://ror.org/00fsjhf77 Instituto Neurológico de Colombia'),
(60421, 'https://ror.org/00ftkzk68', 'en', 1, 'https://ror.org/00ftkzk68 Children’s Museum of Atlanta'),
(60422, 'https://ror.org/00ftze589', 'en', 1, 'https://ror.org/00ftze589 Einstein Institute of Science'),
(60423, 'https://ror.org/00fwp4v27', 'pt', 1, 'https://ror.org/00fwp4v27 Unidade Integrada de Farmacologia e Gastroenterologia'),
(60424, 'https://ror.org/00fymwf34', 'en', 1, 'https://ror.org/00fymwf34 UnaSource Health'),
(60425, 'https://ror.org/00fztf021', 'en', 1, 'https://ror.org/00fztf021 Alliance Foundation Trials'),
(60426, 'https://ror.org/00fzvsb30', 'en', 1, 'https://ror.org/00fzvsb30 The Coordinating Center'),
(60427, 'https://ror.org/00g0ak246', 'en', 1, 'https://ror.org/00g0ak246 Assisting Nature'),
(60428, 'https://ror.org/00g11cc66', 'en', 1, 'https://ror.org/00g11cc66 ATI Physical Therapy'),
(60429, 'https://ror.org/00g25n390', 'en', 1, 'https://ror.org/00g25n390 Ministry of Tourism, Sport and the Arts'),
(60430, 'https://ror.org/00g3t0998', 'en', 1, 'https://ror.org/00g3t0998 The Bureau of Overseas Buildings Operations'),
(60431, 'https://ror.org/00g49cs57', 'nl', 1, 'https://ror.org/00g49cs57 Mentaal Beter'),
(60432, 'https://ror.org/00g5rbh32', 'en', 1, 'https://ror.org/00g5rbh32 Michigan Pharmacists Association'),
(60433, 'https://ror.org/00g63xj11', 'de', 1, 'https://ror.org/00g63xj11 Helios Klinik Kipfenberg'),
(60434, 'https://ror.org/00g715g80', 'nl', 1, 'https://ror.org/00g715g80 Stichting Physico'),
(60435, 'https://ror.org/00g7amd04', 'en', 1, 'https://ror.org/00g7amd04 Missouri Academy of Science'),
(60436, 'https://ror.org/00gd0s828', 'en', 1, 'https://ror.org/00gd0s828 Institute For European Expertise in Physiology'),
(60437, 'https://ror.org/00gdq8383', 'fr', 1, 'https://ror.org/00gdq8383 Alliance UniversitƩ-Entreprise de Grenoble');
INSERT INTO `rors` VALUES
(60438, 'https://ror.org/00gdw7f12', 'en', 1, 'https://ror.org/00gdw7f12 Royal Dutch Pharmacists Association'),
(60439, 'https://ror.org/00gens972', 'en', 1, 'https://ror.org/00gens972 Living Tongues Institute for Endangered Languages'),
(60440, 'https://ror.org/00geycx93', 'en', 1, 'https://ror.org/00geycx93 Hematology & Oncology Consultants'),
(60441, 'https://ror.org/00gfym921', 'de', 1, 'https://ror.org/00gfym921 Klinik und Poliklinik für Urologie'),
(60442, 'https://ror.org/00gked521', 'en', 1, 'https://ror.org/00gked521 Advanced Vision Institute'),
(60443, 'https://ror.org/00gkwfd59', 'en', 1, 'https://ror.org/00gkwfd59 Pathway'),
(60444, 'https://ror.org/00gnc0t86', 'en', 1, 'https://ror.org/00gnc0t86 Sleep to Live Institute'),
(60445, 'https://ror.org/00gp99k74', 'en', 1, 'https://ror.org/00gp99k74 Shanghai Third People''s Hospital äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(60446, 'https://ror.org/00gqmky69', 'no_lang_code', 1, 'https://ror.org/00gqmky69 Achmea (Netherlands)'),
(60447, 'https://ror.org/00gteb412', 'en', 1, 'https://ror.org/00gteb412 Retina Macula Institute'),
(60448, 'https://ror.org/00gtzdm25', 'nl', 1, 'https://ror.org/00gtzdm25 Natuur- en GezondheidsProducten Nederland'),
(60449, 'https://ror.org/00gvwhq75', 'en', 1, 'https://ror.org/00gvwhq75 Institute for Transformative Technologies'),
(60450, 'https://ror.org/00gxa5343', 'en', 1, 'https://ror.org/00gxa5343 Lake Region Healthcare'),
(60451, 'https://ror.org/00gxvz816', 'en', 1, 'https://ror.org/00gxvz816 Associated Colleges of Central Kansas'),
(60452, 'https://ror.org/00gy3sh45', 'en', 1, 'https://ror.org/00gy3sh45 Virtua Voorhees Hospital'),
(60453, 'https://ror.org/00gygke76', 'en', 1, 'https://ror.org/00gygke76 Guangxi Academy of Special Crops å¹æč„æå£®ę—č‡Ŗę²»åŒŗęŸ‘ę””ē ”ē©¶ę‰€'),
(60454, 'https://ror.org/00gyq3v51', 'no_lang_code', 1, 'https://ror.org/00gyq3v51 Hospital Pitas'),
(60455, 'https://ror.org/00gzx6s15', 'en', 1, 'https://ror.org/00gzx6s15 Johns Hopkins Berman Institute of Bioethics'),
(60456, 'https://ror.org/00h2dy637', 'en', 1, 'https://ror.org/00h2dy637 Teachers Development Group'),
(60457, 'https://ror.org/00h4bp382', 'en', 1, 'https://ror.org/00h4bp382 Oklahoma Heart Institute'),
(60458, 'https://ror.org/00h7mt060', 'no_lang_code', 1, 'https://ror.org/00h7mt060 HXI (United States)'),
(60459, 'https://ror.org/00h92wx89', 'en', 1, 'https://ror.org/00h92wx89 Cooley Dickinson Health Care'),
(60460, 'https://ror.org/00h93zw30', 'no_lang_code', 1, 'https://ror.org/00h93zw30 Optimata (Israel)'),
(60461, 'https://ror.org/00ha4p191', 'de', 1, 'https://ror.org/00ha4p191 Diakonie Klinikum Jung-Stilling'),
(60462, 'https://ror.org/00hbvz117', 'en', 1, 'https://ror.org/00hbvz117 Dutch Association for Regional Anesthesia'),
(60463, 'https://ror.org/00hchbn59', 'en', 1, 'https://ror.org/00hchbn59 Fetal Diagnostic Institute of the Pacific'),
(60464, 'https://ror.org/00hech464', 'en', 1, 'https://ror.org/00hech464 The Ojai Foundation'),
(60465, 'https://ror.org/00hf4ew78', 'en', 1, 'https://ror.org/00hf4ew78 OpenBiome'),
(60466, 'https://ror.org/00hg1xm75', 'pt', 1, 'https://ror.org/00hg1xm75 ABCD Institute Instituto ABCD'),
(60467, 'https://ror.org/00hj12c83', 'en', 1, 'https://ror.org/00hj12c83 Hammersmith Medicines Research'),
(60468, 'https://ror.org/00hkez230', 'en', 1, 'https://ror.org/00hkez230 Leningrad Regional Cancer Center ЛенинграГский областной онкологический Гиспансер'),
(60469, 'https://ror.org/00hmegz79', 'en', 1, 'https://ror.org/00hmegz79 International Society for Neuroethology'),
(60470, 'https://ror.org/00hndgp31', 'de', 1, 'https://ror.org/00hndgp31 Deutsche Interdisziplinäre Vereinigung für Intensiv- und Notfallmedizin'),
(60471, 'https://ror.org/00hrr4a84', 'en', 1, 'https://ror.org/00hrr4a84 Regional Clinical Hospital No 4 ГБУЗ ŠžŠ±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–4'),
(60472, 'https://ror.org/00hsk0n38', 'en', 1, 'https://ror.org/00hsk0n38 Sonoma West Medical Center'),
(60473, 'https://ror.org/00ht9y350', 'en', 1, 'https://ror.org/00ht9y350 Elite Research Institute'),
(60474, 'https://ror.org/00htvrc11', 'en', 1, 'https://ror.org/00htvrc11 Carolina BioOncology Institute'),
(60475, 'https://ror.org/00hw4nh44', 'en', 1, 'https://ror.org/00hw4nh44 Newman Regional Health'),
(60476, 'https://ror.org/00hx49s62', 'en', 1, 'https://ror.org/00hx49s62 Cooper Institute for Reproductive Hormonal Disorders'),
(60477, 'https://ror.org/00hygje57', 'en', 1, 'https://ror.org/00hygje57 Undersea and Hyperbaric Medical Society'),
(60478, 'https://ror.org/00hz19x62', 'no_lang_code', 1, 'https://ror.org/00hz19x62 Pharma Nord (United Kingdom)'),
(60479, 'https://ror.org/00hz6qz36', 'en', 1, 'https://ror.org/00hz6qz36 Western States Endurance Run Foundation'),
(60480, 'https://ror.org/00j1czq77', 'en', 1, 'https://ror.org/00j1czq77 Foundation for Cardiovascular Biomedical Research and Gene and Cell Therapy'),
(60481, 'https://ror.org/00j1j3213', 'en', 1, 'https://ror.org/00j1j3213 Beverly Hills Cancer Center'),
(60482, 'https://ror.org/00j1phe22', 'en', 1, 'https://ror.org/00j1phe22 University Clinical Hospital In Bialystok Uniwersyteckim Szpitalu Klinicznym w Białymstoku'),
(60483, 'https://ror.org/00j2yyv15', 'en', 1, 'https://ror.org/00j2yyv15 Taiwan Society of Cardiology'),
(60484, 'https://ror.org/00j6ana21', 'no_lang_code', 1, 'https://ror.org/00j6ana21 Abcombi Biosciences (United States)'),
(60485, 'https://ror.org/00j7qa995', 'en', 1, 'https://ror.org/00j7qa995 Retina Consultants of Houston'),
(60486, 'https://ror.org/00j8m2v88', 'en', 1, 'https://ror.org/00j8m2v88 Foundation for Southwest Orthopedic Research'),
(60487, 'https://ror.org/00jaff906', 'no_lang_code', 1, 'https://ror.org/00jaff906 Surgimab (France)'),
(60488, 'https://ror.org/00jdndk37', 'en', 1, 'https://ror.org/00jdndk37 The Lee Spark NF Foundation'),
(60489, 'https://ror.org/00jemq805', 'en', 1, 'https://ror.org/00jemq805 World Vision International'),
(60490, 'https://ror.org/00jfqw572', 'de', 1, 'https://ror.org/00jfqw572 Austrian Society of Pneumology Ɩsterreichische Gesellschaft für Pneumologie'),
(60491, 'https://ror.org/00jhkj736', 'no_lang_code', 1, 'https://ror.org/00jhkj736 Dr. Pfleger Arzneimittel (Germany)'),
(60492, 'https://ror.org/00jk33f78', 'en', 1, 'https://ror.org/00jk33f78 Acute Leukemia French Association'),
(60493, 'https://ror.org/00jmmae07', 'en', 1, 'https://ror.org/00jmmae07 Fox Valley Surgical Associates'),
(60494, 'https://ror.org/00jms8c74', 'no_lang_code', 1, 'https://ror.org/00jms8c74 Applied University Research (United States)'),
(60495, 'https://ror.org/00jnayz98', 'no_lang_code', 1, 'https://ror.org/00jnayz98 HelixBind (United States)'),
(60496, 'https://ror.org/00jp3t114', 'de', 1, 'https://ror.org/00jp3t114 Helios Hospital Siegburg, Helios Klinikum Siegburg'),
(60497, 'https://ror.org/00jpddv49', 'no_lang_code', 1, 'https://ror.org/00jpddv49 Algomedix (United States)'),
(60498, 'https://ror.org/00jrz2221', 'en', 1, 'https://ror.org/00jrz2221 Kaiser Permanente Stockton Medical Offices'),
(60499, 'https://ror.org/00js7yw33', 'en', 1, 'https://ror.org/00js7yw33 Holston Valley Medical Center'),
(60500, 'https://ror.org/00jsvb253', 'no_lang_code', 1, 'https://ror.org/00jsvb253 Biotropics Malaysia (Malaysia)'),
(60501, 'https://ror.org/00jtnvh80', 'en', 1, 'https://ror.org/00jtnvh80 Netherlands Center for Occupational Diseases Netherlands Centrum for Occupational Diseases'),
(60502, 'https://ror.org/00jtqvs23', 'en', 1, 'https://ror.org/00jtqvs23 Fraser Research'),
(60503, 'https://ror.org/00jts5t62', 'no_lang_code', 1, 'https://ror.org/00jts5t62 SIFI Medtech (Italy)'),
(60504, 'https://ror.org/00jwb3477', 'nl', 1, 'https://ror.org/00jwb3477 Flemish Taekwondo Association Vlaamse Taekwondo Bond'),
(60505, 'https://ror.org/00jzckp39', 'es', 1, 'https://ror.org/00jzckp39 Instituto Dr. Jaime Slullitel'),
(60506, 'https://ror.org/00k009k96', 'en', 1, 'https://ror.org/00k009k96 Kuchnir Dermatology & Dermatologic Surgery'),
(60507, 'https://ror.org/00k065b17', 'it', 1, 'https://ror.org/00k065b17 Fondazione Crescere Insieme al Sant''Anna'),
(60508, 'https://ror.org/00k19bf64', 'no_lang_code', 1, 'https://ror.org/00k19bf64 AppPeople (Germany)'),
(60509, 'https://ror.org/00k24ct23', 'en', 1, 'https://ror.org/00k24ct23 Hillcrest Hospital'),
(60510, 'https://ror.org/00k4wxv40', 'en', 1, 'https://ror.org/00k4wxv40 American Academy of Political and Social Science'),
(60511, 'https://ror.org/00k82d071', 'en', 1, 'https://ror.org/00k82d071 The Chopra Foundation'),
(60512, 'https://ror.org/00k87m820', 'es', 1, 'https://ror.org/00k87m820 Instituto de Cancerologƭa Las AmƩricas'),
(60513, 'https://ror.org/00k98as45', 'en', 1, 'https://ror.org/00k98as45 Perinatal Quality Foundation'),
(60514, 'https://ror.org/00kc1k067', 'en', 1, 'https://ror.org/00kc1k067 The White Oak Institute'),
(60515, 'https://ror.org/00kcr8113', 'en', 1, 'https://ror.org/00kcr8113 Charleston County''s Department of Alcohol and Other Drug Abuse Services'),
(60516, 'https://ror.org/00kgh8k48', 'en', 1, 'https://ror.org/00kgh8k48 Recreational Fishing Alliance of NSW'),
(60517, 'https://ror.org/00kh76710', 'en', 1, 'https://ror.org/00kh76710 Rasool Akram Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų­Ų¶Ų±ŲŖ Ų±Ų³ŁˆŁ„ اکرم'),
(60518, 'https://ror.org/00kh9dy12', 'en', 1, 'https://ror.org/00kh9dy12 Science Museum of Western Virginia'),
(60519, 'https://ror.org/00kk4ng10', 'en', 1, 'https://ror.org/00kk4ng10 The Institute for Advanced Physics'),
(60520, 'https://ror.org/00knv0d66', 'en', 1, 'https://ror.org/00knv0d66 Ministry for Social Equality ×”×ž×©×Ø×“ לשוויון חברתי'),
(60521, 'https://ror.org/00knzje15', 'en', 1, 'https://ror.org/00knzje15 Lloyd A. Fry Foundation'),
(60522, 'https://ror.org/00kpegb17', 'de', 1, 'https://ror.org/00kpegb17 St.-Antonius-Hospital Gronau'),
(60523, 'https://ror.org/00kr06185', 'en', 1, 'https://ror.org/00kr06185 China Institute of Electronics äø­å›½ē”µå­å­¦ä¼š'),
(60524, 'https://ror.org/00krb3q77', 'de', 1, 'https://ror.org/00krb3q77 Freiwillige Akademische Gesellschaft Voluntary Academic Society'),
(60525, 'https://ror.org/00ks0x650', 'en', 1, 'https://ror.org/00ks0x650 Neville Public Museum'),
(60526, 'https://ror.org/00ktr8190', 'no_lang_code', 1, 'https://ror.org/00ktr8190 Fujifilm (Germany)'),
(60527, 'https://ror.org/00kv52794', 'en', 1, 'https://ror.org/00kv52794 Chinese Medical Doctor Association äø­å›½åŒ»åøˆåä¼š'),
(60528, 'https://ror.org/00kw4g054', 'no_lang_code', 1, 'https://ror.org/00kw4g054 Apotex (United States)'),
(60529, 'https://ror.org/00kxda681', 'en', 1, 'https://ror.org/00kxda681 American Foundation for Addiction Research'),
(60530, 'https://ror.org/00kzjzm37', 'no_lang_code', 1, 'https://ror.org/00kzjzm37 Brainly (United States)'),
(60531, 'https://ror.org/00m0c9422', 'en', 1, 'https://ror.org/00m0c9422 Charleston Hematology Oncology Associates'),
(60532, 'https://ror.org/00m3p9e86', 'nl', 1, 'https://ror.org/00m3p9e86 Stichting Semmy'),
(60533, 'https://ror.org/00m3xsv93', 'nl', 1, 'https://ror.org/00m3xsv93 Revalidatieziekenhuis RevArte'),
(60534, 'https://ror.org/00m42s140', 'de', 1, 'https://ror.org/00m42s140 Deutsche Gesellschaft für Internationale Zusammenarbeit German Corporation for International Cooperation'),
(60535, 'https://ror.org/00m48tn76', 'no_lang_code', 1, 'https://ror.org/00m48tn76 LiveLeaf (United States)'),
(60536, 'https://ror.org/00m4szf61', 'en', 1, 'https://ror.org/00m4szf61 Aurora Medical Center in Summit'),
(60537, 'https://ror.org/00m4vvn06', 'en', 1, 'https://ror.org/00m4vvn06 National Association on Drug Abuse Problems'),
(60538, 'https://ror.org/00m4xrb97', 'en', 1, 'https://ror.org/00m4xrb97 Toronto Sleep Institute'),
(60539, 'https://ror.org/00m64hf65', 'de', 1, 'https://ror.org/00m64hf65 Emovis'),
(60540, 'https://ror.org/00m6z3x97', 'en', 1, 'https://ror.org/00m6z3x97 Boronia Multicultural Services'),
(60541, 'https://ror.org/00m7jsz42', 'en', 1, 'https://ror.org/00m7jsz42 European Society for Hyperthermic Oncology'),
(60542, 'https://ror.org/00maba543', 'en', 1, 'https://ror.org/00maba543 Groupe suisse d''oncologie pƩdiatrique Gruppo svizzero di oncologia pediatrica Schweizer PƤdiatrische Onkologie Gruppe Swiss Paediatric Oncology Group'),
(60543, 'https://ror.org/00max4143', 'en', 1, 'https://ror.org/00max4143 Chattanooga Eye Institute'),
(60544, 'https://ror.org/00mfnf459', 'en', 1, 'https://ror.org/00mfnf459 Carson Tahoe Regional Medical Center'),
(60545, 'https://ror.org/00mjfwd15', 'no_lang_code', 1, 'https://ror.org/00mjfwd15 Vectorite Biomedical (Taiwan) é‘«å“ē”ŸåŒ»ē§‘ęŠ€'),
(60546, 'https://ror.org/00mjzz278', 'en', 1, 'https://ror.org/00mjzz278 Unimed Medical Institute'),
(60547, 'https://ror.org/00mks2g63', 'en', 1, 'https://ror.org/00mks2g63 Foundation for Human Potential'),
(60548, 'https://ror.org/00mmfs450', 'en', 1, 'https://ror.org/00mmfs450 Universities UK'),
(60549, 'https://ror.org/00mn1ve16', 'en', 1, 'https://ror.org/00mn1ve16 Kurranulla Aboriginal Corporation'),
(60550, 'https://ror.org/00mptwf92', 'en', 1, 'https://ror.org/00mptwf92 MS4 Research Institute'),
(60551, 'https://ror.org/00mrq0n58', 'fr', 1, 'https://ror.org/00mrq0n58 Centre FranƧois Baclesse'),
(60552, 'https://ror.org/00msj0306', 'no_lang_code', 1, 'https://ror.org/00msj0306 St.Caridad Hospital'),
(60553, 'https://ror.org/00mtc2v89', 'no_lang_code', 1, 'https://ror.org/00mtc2v89 WH Pharmawerk (Germany)'),
(60554, 'https://ror.org/00mvdvy94', 'pt', 1, 'https://ror.org/00mvdvy94 Hospital São José do Avaí'),
(60555, 'https://ror.org/00mvezj69', 'no_lang_code', 1, 'https://ror.org/00mvezj69 Odorcept (United States)'),
(60556, 'https://ror.org/00mw0j492', 'en', 1, 'https://ror.org/00mw0j492 Fit Kids Foundation'),
(60557, 'https://ror.org/00mwvbx98', 'no_lang_code', 1, 'https://ror.org/00mwvbx98 K2M (United States)'),
(60558, 'https://ror.org/00mx9kh08', 'de', 1, 'https://ror.org/00mx9kh08 MEDIAN Klaus-Miehlke-Klinik Wiesbaden'),
(60559, 'https://ror.org/00mystw63', 'en', 1, 'https://ror.org/00mystw63 Texas Plastic Surgery'),
(60560, 'https://ror.org/00n36xb70', 'es', 1, 'https://ror.org/00n36xb70 Liga Contra el Cancer, Liga Peruana de Lucha contra el CƔncer'),
(60561, 'https://ror.org/00n3baz54', 'en', 1, 'https://ror.org/00n3baz54 Arthritis and Rheumatic Disease Specialties'),
(60562, 'https://ror.org/00n4f0h74', 'en', 1, 'https://ror.org/00n4f0h74 Johnson City Medical Center'),
(60563, 'https://ror.org/00n5sdz31', 'en', 1, 'https://ror.org/00n5sdz31 Taylor Regional Hospital'),
(60564, 'https://ror.org/00n7f0287', 'en', 1, 'https://ror.org/00n7f0287 Shenzhen International Travel Health Care Center ę·±åœ³å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€ ę·±åœ³å›½é™…ę—…č”Œå«ē”Ÿäæå„äø­åæƒ'),
(60565, 'https://ror.org/00nc2d154', 'no_lang_code', 1, 'https://ror.org/00nc2d154 NestlƩ (Germany)'),
(60566, 'https://ror.org/00nganv68', 'no_lang_code', 1, 'https://ror.org/00nganv68 Regedent (Switzerland)'),
(60567, 'https://ror.org/00ngea848', 'en', 1, 'https://ror.org/00ngea848 Mercy Health - Lorain Hospital'),
(60568, 'https://ror.org/00ngrws44', 'en', 1, 'https://ror.org/00ngrws44 China Anti-Aging Association äø­å›½ęŠ—č”°č€äæƒčæ›ä¼š'),
(60569, 'https://ror.org/00nkf9b38', 'de', 1, 'https://ror.org/00nkf9b38 St. Marien- und St. Annastiftskrankenhaus'),
(60570, 'https://ror.org/00nkq5n66', 'no_lang_code', 1, 'https://ror.org/00nkq5n66 Solinas Medical (United States)'),
(60571, 'https://ror.org/00nkysz86', 'en', 1, 'https://ror.org/00nkysz86 European School of Oncology'),
(60572, 'https://ror.org/00nmy1597', 'en', 1, 'https://ror.org/00nmy1597 College & Association of Registered Nurses of Alberta'),
(60573, 'https://ror.org/00np5jz23', 'en', 1, 'https://ror.org/00np5jz23 Chartered Institute of Taxation'),
(60574, 'https://ror.org/00np8k310', 'pt', 1, 'https://ror.org/00np8k310 Gastrocirurgia de BrasĆ­lia'),
(60575, 'https://ror.org/00npraj80', 'en', 1, 'https://ror.org/00npraj80 Maryland Oncology Hematology'),
(60576, 'https://ror.org/00nqj3y93', 'en', 1, 'https://ror.org/00nqj3y93 Grand Rapids Women''s Health'),
(60577, 'https://ror.org/00nrk9x91', 'en', 1, 'https://ror.org/00nrk9x91 Kaiser Permanente South Sacramento Medical Center'),
(60578, 'https://ror.org/00nt56514', 'en', 1, 'https://ror.org/00nt56514 First People''s Hospital of Yuhang District ę­å·žåø‚ä½™ę­åŒŗē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(60579, 'https://ror.org/00nv0e804', 'en', 1, 'https://ror.org/00nv0e804 Nebraska Council on Economic Education'),
(60580, 'https://ror.org/00nvb4q10', 'no_lang_code', 1, 'https://ror.org/00nvb4q10 Active Bio Life Science (Germany)'),
(60581, 'https://ror.org/00nvney28', 'en', 1, 'https://ror.org/00nvney28 Lake City VA Medical Center'),
(60582, 'https://ror.org/00nvqm770', 'pt', 1, 'https://ror.org/00nvqm770 Instituto de Medicina AvanƧada'),
(60583, 'https://ror.org/00nx7kq05', 'en', 1, 'https://ror.org/00nx7kq05 Wayne D Kuni & Joan E Kuni Foundation'),
(60584, 'https://ror.org/00nyscn52', 'en', 1, 'https://ror.org/00nyscn52 National Council for Advanced Manufacturing'),
(60585, 'https://ror.org/00p24wc27', 'no_lang_code', 1, 'https://ror.org/00p24wc27 Zenwa (United States)'),
(60586, 'https://ror.org/00p327v48', 'en', 1, 'https://ror.org/00p327v48 International Clinic of Rehabilitation'),
(60587, 'https://ror.org/00p36v374', 'en', 1, 'https://ror.org/00p36v374 Humanity & Health'),
(60588, 'https://ror.org/00p41ea31', 'de', 1, 'https://ror.org/00p41ea31 Verband der Privaten Krankenversicherung'),
(60589, 'https://ror.org/00p59qs14', 'en', 1, 'https://ror.org/00p59qs14 Ain Shams University Hospital'),
(60590, 'https://ror.org/00p75zw90', 'en', 1, 'https://ror.org/00p75zw90 Regional State Budgetary Healthcare Institution "Smolensk Regional Clinical Hospital" ŠžŠ±Š»Š°ŃŃ‚Š½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Ā«Š”Š¼Š¾Š»ŠµŠ½ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°Ā»'),
(60591, 'https://ror.org/00p7q3334', 'en', 1, 'https://ror.org/00p7q3334 Women''s Pelvic Health Institute'),
(60592, 'https://ror.org/00p7wry37', 'fr', 1, 'https://ror.org/00p7wry37 Centre Hospitalier de BƩziers'),
(60593, 'https://ror.org/00paktj46', 'no_lang_code', 1, 'https://ror.org/00paktj46 DARTNet Institute'),
(60594, 'https://ror.org/00pap0267', 'it', 1, 'https://ror.org/00pap0267 Azienda Universitaria Ospedaliera Consorziale - Policlinico Bari'),
(60595, 'https://ror.org/00pbfjy25', 'en', 1, 'https://ror.org/00pbfjy25 Grandview Medical Center'),
(60596, 'https://ror.org/00pbws926', 'en', 1, 'https://ror.org/00pbws926 Family Life Association of Swaziland'),
(60597, 'https://ror.org/00pc21z31', 'en', 1, 'https://ror.org/00pc21z31 Tharawal Aboriginal'),
(60598, 'https://ror.org/00pcyna40', 'en', 1, 'https://ror.org/00pcyna40 Hyderabad Cleft Society'),
(60599, 'https://ror.org/00pdz5e98', 'en', 1, 'https://ror.org/00pdz5e98 Strimling Dermatology, Laser & Vein Institute'),
(60600, 'https://ror.org/00pejz095', 'en', 1, 'https://ror.org/00pejz095 Foundation for Worker, Veteran and Environmental Health'),
(60601, 'https://ror.org/00pfepj55', 'no_lang_code', 1, 'https://ror.org/00pfepj55 Metrisquare (Netherlands)'),
(60602, 'https://ror.org/00pfyq622', 'no_lang_code', 1, 'https://ror.org/00pfyq622 Procare Riaya Hospital مستؓفى بروكار ريايا'),
(60603, 'https://ror.org/00pk3rj18', 'en', 1, 'https://ror.org/00pk3rj18 Neuro Pain Medical Center'),
(60604, 'https://ror.org/00ppwb536', 'en', 1, 'https://ror.org/00ppwb536 Cleveland Sleep Research Center'),
(60605, 'https://ror.org/00ppzj833', 'en', 1, 'https://ror.org/00ppzj833 The Applied Research Institute - Jerusalem معهد الابحاث Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© - القدس'),
(60606, 'https://ror.org/00pqehw64', 'en', 1, 'https://ror.org/00pqehw64 National Stroke Association of Malaysia'),
(60607, 'https://ror.org/00pvgnv60', 'de', 1, 'https://ror.org/00pvgnv60 Fachklinik Weinbƶhla'),
(60608, 'https://ror.org/00pvtfc31', 'no_lang_code', 1, 'https://ror.org/00pvtfc31 Serag-Wiessner (Germany)'),
(60609, 'https://ror.org/00pw9bg10', 'no_lang_code', 1, 'https://ror.org/00pw9bg10 Merz (United States)'),
(60610, 'https://ror.org/00pwnk256', 'it', 1, 'https://ror.org/00pwnk256 Centro Medicina della Riproduzione'),
(60611, 'https://ror.org/00pwy8p79', 'en', 1, 'https://ror.org/00pwy8p79 International Foundation for Entrepreneurship, Science, and Technology'),
(60612, 'https://ror.org/00px03f62', 'no_lang_code', 1, 'https://ror.org/00px03f62 Boehringer Ingelheim (Italy)'),
(60613, 'https://ror.org/00pz61m54', 'de', 1, 'https://ror.org/00pz61m54 Schƶn Klinik Hamburg Eilbek'),
(60614, 'https://ror.org/00q236z92', 'de', 1, 'https://ror.org/00q236z92 SRH Wald-Klinikum Gera'),
(60615, 'https://ror.org/00q3dem22', 'no_lang_code', 1, 'https://ror.org/00q3dem22 Aggredyne (United States)'),
(60616, 'https://ror.org/00q6rn894', 'nl', 1, 'https://ror.org/00q6rn894 Stichting Urologisch Wetenschappelijk Onderzoek'),
(60617, 'https://ror.org/00q768c32', 'en', 1, 'https://ror.org/00q768c32 National Pecan Shellers Association'),
(60618, 'https://ror.org/00qa3s733', 'es', 1, 'https://ror.org/00qa3s733 Heart Institute Bucaramanga Instituto del Corazón de Bucaramanga'),
(60619, 'https://ror.org/00qahme67', 'no_lang_code', 1, 'https://ror.org/00qahme67 McCormick Environmental (United States)'),
(60620, 'https://ror.org/00qb56q84', 'en', 1, 'https://ror.org/00qb56q84 Hospital at Smolensk Station ŠŠ£Š— ŠžŃ‚Š“ŠµŠ»ŠµŠ½Ń‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° на ст. Дмоленск ŠžŠŠž «РЖД»'),
(60621, 'https://ror.org/00qbqb540', 'de', 1, 'https://ror.org/00qbqb540 Verbundkrankenhaus Bernkastel'),
(60622, 'https://ror.org/00qbrqy09', 'en', 1, 'https://ror.org/00qbrqy09 Centerpoint Medical Center'),
(60623, 'https://ror.org/00qc9m834', 'en', 1, 'https://ror.org/00qc9m834 American College of Allergy, Asthma and Immunology'),
(60624, 'https://ror.org/00qdbgv91', 'no_lang_code', 1, 'https://ror.org/00qdbgv91 Soylent (United States)'),
(60625, 'https://ror.org/00qe6gb33', 'no_lang_code', 1, 'https://ror.org/00qe6gb33 Nuvo Pharmaceuticals (Canada)'),
(60626, 'https://ror.org/00qedn974', 'en', 1, 'https://ror.org/00qedn974 Strategic Education Research Partnership'),
(60627, 'https://ror.org/00qf73c06', 'it', 1, 'https://ror.org/00qf73c06 Associazione Istituzione Libera UniversitĆ  Nuorese'),
(60628, 'https://ror.org/00qhrkk71', 'en', 1, 'https://ror.org/00qhrkk71 Shandong Yingcai University å±±äøœč‹±ę‰å­¦é™¢'),
(60629, 'https://ror.org/00qj38h30', 'en', 1, 'https://ror.org/00qj38h30 Columbus Oncology and Hematology Associates'),
(60630, 'https://ror.org/00qjf4t92', 'en', 1, 'https://ror.org/00qjf4t92 Stanger Hospital'),
(60631, 'https://ror.org/00qjyeh27', 'en', 1, 'https://ror.org/00qjyeh27 Kaiser Permanente Rancho Cordova Medical Offices'),
(60632, 'https://ror.org/00qmvv685', 'nl', 1, 'https://ror.org/00qmvv685 Stichting Emmafonds'),
(60633, 'https://ror.org/00qpnm303', 'no_lang_code', 1, 'https://ror.org/00qpnm303 Phranakhon Rajabhat University'),
(60634, 'https://ror.org/00qqw1b44', 'de', 1, 'https://ror.org/00qqw1b44 Klinik und Poliklinik für Nuklearmedizin'),
(60635, 'https://ror.org/00qr9d796', 'no_lang_code', 1, 'https://ror.org/00qr9d796 Perrigo (Germany)'),
(60636, 'https://ror.org/00qrpbx56', 'en', 1, 'https://ror.org/00qrpbx56 Angstron Materials (United States)'),
(60637, 'https://ror.org/00qsxq433', 'no_lang_code', 1, 'https://ror.org/00qsxq433 Santhera Pharmaceuticals (Switzerland)'),
(60638, 'https://ror.org/00qt5a094', 'en', 1, 'https://ror.org/00qt5a094 Tropical Gastroenterology & Nutrition group'),
(60639, 'https://ror.org/00qtc6702', 'en', 1, 'https://ror.org/00qtc6702 Nurses for Newborns'),
(60640, 'https://ror.org/00qtj8f75', 'en', 1, 'https://ror.org/00qtj8f75 Princeton Medical Institute'),
(60641, 'https://ror.org/00qtpwp08', 'de', 1, 'https://ror.org/00qtpwp08 Institut Dr. Schauerte'),
(60642, 'https://ror.org/00qwmz024', 'no_lang_code', 1, 'https://ror.org/00qwmz024 CardioSec (Germany)'),
(60643, 'https://ror.org/00qxws716', 'en', 1, 'https://ror.org/00qxws716 InnoSportLab'),
(60644, 'https://ror.org/00qy8yz42', 'en', 1, 'https://ror.org/00qy8yz42 Children’s Hospital at Erlanger'),
(60645, 'https://ror.org/00r1f1395', 'en', 1, 'https://ror.org/00r1f1395 National Hematology Society ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Šµ гематологическое общество'),
(60646, 'https://ror.org/00r23c464', 'no_lang_code', 1, 'https://ror.org/00r23c464 MediciNova (United States)'),
(60647, 'https://ror.org/00r4a9d75', 'pt', 1, 'https://ror.org/00r4a9d75 Sociedade Brasileira de Cirurgia TorƔcica'),
(60648, 'https://ror.org/00r7hs904', 'it', 1, 'https://ror.org/00r7hs904 Istituto Clinico Sant''Ambrogio'),
(60649, 'https://ror.org/00r83s510', 'nl', 1, 'https://ror.org/00r83s510 Virenze'),
(60650, 'https://ror.org/00r8ksq80', 'en', 1, 'https://ror.org/00r8ksq80 Ministry of Health'),
(60651, 'https://ror.org/00r9kn296', 'es', 1, 'https://ror.org/00r9kn296 Instituto Oncológico Dr. Rosell'),
(60652, 'https://ror.org/00rad0v56', 'no_lang_code', 1, 'https://ror.org/00rad0v56 Kona Medical (United States)'),
(60653, 'https://ror.org/00rca3h04', 'en', 1, 'https://ror.org/00rca3h04 Our Lady of the Lake Children''s Hospital'),
(60654, 'https://ror.org/00rcpde19', 'en', 1, 'https://ror.org/00rcpde19 Qinhuangdao Second Hospital'),
(60655, 'https://ror.org/00reds669', 'de', 1, 'https://ror.org/00reds669 St. Mauritius Therapieklinik'),
(60656, 'https://ror.org/00remyc86', 'nl', 1, 'https://ror.org/00remyc86 Stichting Panta Rhei'),
(60657, 'https://ror.org/00rg8e315', 'en', 1, 'https://ror.org/00rg8e315 Foshan Maternity and Child Health Care Hospital ä½›å±±åø‚å¦‡å¹¼äæå„é™¢'),
(60658, 'https://ror.org/00rgw2q98', 'en', 1, 'https://ror.org/00rgw2q98 Canyon Ranch Institute'),
(60659, 'https://ror.org/00rkprb29', 'no_lang_code', 1, 'https://ror.org/00rkprb29 Lianyungang Oriental Hospital čæžäŗ‘ęøÆåø‚äøœę–¹åŒ»é™¢'),
(60660, 'https://ror.org/00rmx3f80', 'no_lang_code', 1, 'https://ror.org/00rmx3f80 Novatex (Germany)'),
(60661, 'https://ror.org/00rnp5y61', 'en', 1, 'https://ror.org/00rnp5y61 Kidney Care UK'),
(60662, 'https://ror.org/00rq7v092', 'en', 1, 'https://ror.org/00rq7v092 Compass Oncology'),
(60663, 'https://ror.org/00rq8s219', 'en', 1, 'https://ror.org/00rq8s219 Knight Dermatology Institute'),
(60664, 'https://ror.org/00rrdxz53', 'en', 1, 'https://ror.org/00rrdxz53 Nambudripad''s Allergy Research Foundation'),
(60665, 'https://ror.org/00rrer658', 'sr', 1, 'https://ror.org/00rrer658 Kliničko Bolnički Centar Zvezdara'),
(60666, 'https://ror.org/00rybq012', 'en', 1, 'https://ror.org/00rybq012 VitalinQ'),
(60667, 'https://ror.org/00s1jty20', 'en', 1, 'https://ror.org/00s1jty20 Biotechnology Institute'),
(60668, 'https://ror.org/00s3sar63', 'nl', 1, 'https://ror.org/00s3sar63 Stichting Hartekind'),
(60669, 'https://ror.org/00s528j33', 'no_lang_code', 1, 'https://ror.org/00s528j33 Mianyang Central Hospital ē»µé˜³åø‚äø­åæƒåŒ»é™¢'),
(60670, 'https://ror.org/00s64g989', 'de', 1, 'https://ror.org/00s64g989 Zentrum für Zahn-, Mund- und Kieferheilkunde Poliklinik für Zahnerhaltung und Parodontologie'),
(60671, 'https://ror.org/00s65k733', 'en', 1, 'https://ror.org/00s65k733 Institute for Advanced Reconstruction'),
(60672, 'https://ror.org/00s6s1191', 'en', 1, 'https://ror.org/00s6s1191 Institute for Progressive Medicine'),
(60673, 'https://ror.org/00s8c9279', 'de', 1, 'https://ror.org/00s8c9279 Knappschaftsklinikum Saar'),
(60674, 'https://ror.org/00sash423', 'no_lang_code', 1, 'https://ror.org/00sash423 Kunming Tongren Hospital ę˜†ę˜ŽåŒä»åŒ»é™¢'),
(60675, 'https://ror.org/00sb6vz77', 'no_lang_code', 1, 'https://ror.org/00sb6vz77 Valid International (United Kingdom)'),
(60676, 'https://ror.org/00sdedd93', 'en', 1, 'https://ror.org/00sdedd93 UPMC Central Pa'),
(60677, 'https://ror.org/00sgef587', 'en', 1, 'https://ror.org/00sgef587 Inspira Medical Center Woodbury'),
(60678, 'https://ror.org/00sn12234', 'no_lang_code', 1, 'https://ror.org/00sn12234 GS Elektromed. GerƤte G. Stemple (Germany)'),
(60679, 'https://ror.org/00snsrx64', 'no_lang_code', 1, 'https://ror.org/00snsrx64 Precisis (Germany)'),
(60680, 'https://ror.org/00sqneq52', 'en', 1, 'https://ror.org/00sqneq52 Bronson Battle Creek Hospital'),
(60681, 'https://ror.org/00sqvb698', 'en', 1, 'https://ror.org/00sqvb698 Taiwan Lung Cancer Society'),
(60682, 'https://ror.org/00srb9238', 'nl', 1, 'https://ror.org/00srb9238 Stichting Mitialto'),
(60683, 'https://ror.org/00ss42h10', 'en', 1, 'https://ror.org/00ss42h10 Riga East University Hospital Rīgas Austrumu klīniskā universitātes slimnīca'),
(60684, 'https://ror.org/00st10j60', 'en', 1, 'https://ror.org/00st10j60 Virginia Cancer Institute'),
(60685, 'https://ror.org/00st8mg19', 'it', 1, 'https://ror.org/00st8mg19 L''organizzazione Ospedale di Civitanova M'),
(60686, 'https://ror.org/00svmjx28', 'en', 1, 'https://ror.org/00svmjx28 Centro per il Controllo e la Prevenzione delle Malattie National Centre for Disease Prevention and Control'),
(60687, 'https://ror.org/00sx7n004', 'en', 1, 'https://ror.org/00sx7n004 University Surgical Associates'),
(60688, 'https://ror.org/00syaya36', 'en', 1, 'https://ror.org/00syaya36 Singapore College of Traditional Chinese Medicine'),
(60689, 'https://ror.org/00szg4x05', 'en', 1, 'https://ror.org/00szg4x05 Technology Student Association'),
(60690, 'https://ror.org/00t043b19', 'da', 1, 'https://ror.org/00t043b19 Dansk Selskab For Klassisk HomĆøopati'),
(60691, 'https://ror.org/00t1kaa78', 'no_lang_code', 1, 'https://ror.org/00t1kaa78 Grifols (Germany)'),
(60692, 'https://ror.org/00t32cq90', 'en', 1, 'https://ror.org/00t32cq90 FĆødselsstiftelsen Maternity Foundation'),
(60693, 'https://ror.org/00t52h563', 'no_lang_code', 1, 'https://ror.org/00t52h563 Luye Pharma (Germany)'),
(60694, 'https://ror.org/00t68m327', 'de', 1, 'https://ror.org/00t68m327 Balgrist Beteiligungs AG'),
(60695, 'https://ror.org/00t6f7r78', 'pt', 1, 'https://ror.org/00t6f7r78 Instituto Financeiro para o Desenvolvimento Regional'),
(60696, 'https://ror.org/00t9eqw18', 'en', 1, 'https://ror.org/00t9eqw18 NZ Respiratory & Sleep Institute'),
(60697, 'https://ror.org/00tc0zx28', 'en', 1, 'https://ror.org/00tc0zx28 Aspirus Ironwood Hospital'),
(60698, 'https://ror.org/00td6v066', 'de', 1, 'https://ror.org/00td6v066 HELIOS Klinikum Emil von Behring, Helios Klinikum Emil von Behring'),
(60699, 'https://ror.org/00tdtmz24', 'no_lang_code', 1, 'https://ror.org/00tdtmz24 Lapharm (Germany)'),
(60700, 'https://ror.org/00te3yw40', 'en', 1, 'https://ror.org/00te3yw40 Medical Group of the Carolinas'),
(60701, 'https://ror.org/00tfz0s96', 'en', 1, 'https://ror.org/00tfz0s96 Biomed Research Institute'),
(60702, 'https://ror.org/00tmbhz16', 'en', 1, 'https://ror.org/00tmbhz16 Genuine Research Center'),
(60703, 'https://ror.org/00tmrk624', 'en', 1, 'https://ror.org/00tmrk624 Australian Council of Prawn Fisheries'),
(60704, 'https://ror.org/00tna7897', 'en', 1, 'https://ror.org/00tna7897 Sheltering Arms Physical Rehabilitation Centers'),
(60705, 'https://ror.org/00tnb5p85', 'de', 1, 'https://ror.org/00tnb5p85 Zentrum für Therapeutisches Reiten Johannisberg e.V.'),
(60706, 'https://ror.org/00tp6cr77', 'en', 1, 'https://ror.org/00tp6cr77 Fertility Centers of Illinois'),
(60707, 'https://ror.org/00tpyts80', 'no_lang_code', 1, 'https://ror.org/00tpyts80 H-Tech Laboratories (United States)'),
(60708, 'https://ror.org/00ts5sd59', 'en', 1, 'https://ror.org/00ts5sd59 New York Society for the Prevention of Cruelty to Children'),
(60709, 'https://ror.org/00tt93p95', 'no_lang_code', 1, 'https://ror.org/00tt93p95 Healthycell (United States)'),
(60710, 'https://ror.org/00tvc4894', 'en', 1, 'https://ror.org/00tvc4894 Florida Digestive Health Specialists'),
(60711, 'https://ror.org/00txvrc11', 'en', 1, 'https://ror.org/00txvrc11 Leyden Academy on Vitality and Ageing'),
(60712, 'https://ror.org/00v1ygn94', 'en', 1, 'https://ror.org/00v1ygn94 Southeastern Medical Oncology Center'),
(60713, 'https://ror.org/00v2d0427', 'de', 1, 'https://ror.org/00v2d0427 Waldkrankenhaus Rudolf Elle'),
(60714, 'https://ror.org/00v3fhy84', 'nl', 1, 'https://ror.org/00v3fhy84 Stichting Zorgdraad'),
(60715, 'https://ror.org/00v3zdx13', 'no_lang_code', 1, 'https://ror.org/00v3zdx13 Servier (Egypt)'),
(60716, 'https://ror.org/00v8gng44', 'en', 1, 'https://ror.org/00v8gng44 The American Legion Department of Wisconsin'),
(60717, 'https://ror.org/00v8kbs06', 'en', 1, 'https://ror.org/00v8kbs06 Discovery Museum and Planetarium'),
(60718, 'https://ror.org/00v8tzb98', 'no_lang_code', 1, 'https://ror.org/00v8tzb98 Archemix (United States)'),
(60719, 'https://ror.org/00v9j9683', 'en', 1, 'https://ror.org/00v9j9683 Institute for Diabetes Discovery'),
(60720, 'https://ror.org/00vbx3555', 'en', 1, 'https://ror.org/00vbx3555 White Clover Wellness and Research Center'),
(60721, 'https://ror.org/00vc32940', 'en', 1, 'https://ror.org/00vc32940 Children''s City Policlinic No. 45'),
(60722, 'https://ror.org/00vc39d35', 'en', 1, 'https://ror.org/00vc39d35 South East Trawl Fishing Industry Association'),
(60723, 'https://ror.org/00vc9tk32', 'en', 1, 'https://ror.org/00vc9tk32 Inuit Circumpolar Council'),
(60724, 'https://ror.org/00vcp8875', 'no_lang_code', 1, 'https://ror.org/00vcp8875 Mental Canvas (United States)'),
(60725, 'https://ror.org/00vh0j257', 'no_lang_code', 1, 'https://ror.org/00vh0j257 Alexion (Germany)'),
(60726, 'https://ror.org/00vhe9s39', 'en', 1, 'https://ror.org/00vhe9s39 American Association of Chairs of Departments of Psychiatry'),
(60727, 'https://ror.org/00vhf1j84', 'en', 1, 'https://ror.org/00vhf1j84 Whitten Laser Eye'),
(60728, 'https://ror.org/00vhpak23', 'no_lang_code', 1, 'https://ror.org/00vhpak23 Evidation Health (United States)'),
(60729, 'https://ror.org/00vj56071', 'no_lang_code', 1, 'https://ror.org/00vj56071 Mathys (Netherlands)'),
(60730, 'https://ror.org/00vkg4j33', 'en', 1, 'https://ror.org/00vkg4j33 Kinema Research & Software'),
(60731, 'https://ror.org/00vkpdt16', 'nl', 1, 'https://ror.org/00vkpdt16 Movisie'),
(60732, 'https://ror.org/00vkrpr95', 'en', 1, 'https://ror.org/00vkrpr95 Southwest Regional Wound Care Center'),
(60733, 'https://ror.org/00vn3f760', 'en', 1, 'https://ror.org/00vn3f760 Rwanda Pediatric Association'),
(60734, 'https://ror.org/00vppgp96', 'de', 1, 'https://ror.org/00vppgp96 Marienhaus Klinikum Hetzelstift Neustadt'),
(60735, 'https://ror.org/00vs5xf39', 'en', 1, 'https://ror.org/00vs5xf39 Hematology Oncology Associates of Fredericksburg'),
(60736, 'https://ror.org/00vsbee25', 'de', 1, 'https://ror.org/00vsbee25 Jüdisches Krankenhaus Berlin'),
(60737, 'https://ror.org/00vsg4120', 'en', 1, 'https://ror.org/00vsg4120 North Georgia Heart Foundation'),
(60738, 'https://ror.org/00vtp3850', 'nl', 1, 'https://ror.org/00vtp3850 Zorggroep Meander'),
(60739, 'https://ror.org/00vwet919', 'en', 1, 'https://ror.org/00vwet919 Memorial Hospital of Carbondale'),
(60740, 'https://ror.org/00vxq6174', 'en', 1, 'https://ror.org/00vxq6174 Mountain Blue Cancer Care Center'),
(60741, 'https://ror.org/00w22yy94', 'en', 1, 'https://ror.org/00w22yy94 Bartlett Regional Hospital'),
(60742, 'https://ror.org/00w2ggs58', 'en', 1, 'https://ror.org/00w2ggs58 Circle of Care'),
(60743, 'https://ror.org/00w2wr428', 'no_lang_code', 1, 'https://ror.org/00w2wr428 Cefak (Germany)'),
(60744, 'https://ror.org/00w2zvp73', 'en', 1, 'https://ror.org/00w2zvp73 The Few Institute'),
(60745, 'https://ror.org/00w440229', 'en', 1, 'https://ror.org/00w440229 Mercy Hospital Springfield'),
(60746, 'https://ror.org/00w4apt74', 'en', 1, 'https://ror.org/00w4apt74 Jefferson Healthcare'),
(60747, 'https://ror.org/00w52p532', 'en', 1, 'https://ror.org/00w52p532 Specialized Arab Hospital مستؓفى عربي Ł…ŲŖŲ®ŲµŲµ'),
(60748, 'https://ror.org/00w7fxv12', 'en', 1, 'https://ror.org/00w7fxv12 University Hospital Dr. Georgi Stranski Университетската болница за активно лечение ā€œŠ”-р Георги Š”Ń‚Ń€Š°Š½ŃŠŗŠøā€'),
(60749, 'https://ror.org/00w7n4066', 'en', 1, 'https://ror.org/00w7n4066 Mikaelyan Institute of Surgery Õ„Ō»Õ”Ō±Õ…ŌµŌ¼Õ…Ō±Õ† ÕŽŌ»ÕŌ±Ō²ÕˆÕ’ŌŗÕˆÕ’Ō¹Õ…Ō±Õ† Ō»Õ†ÕÕŌ»ÕÕˆÕ’Õ'),
(60750, 'https://ror.org/00w8p4b22', 'en', 1, 'https://ror.org/00w8p4b22 Peoria Hospital'),
(60751, 'https://ror.org/00w93yd70', 'no_lang_code', 1, 'https://ror.org/00w93yd70 Süddeutsche Zuckerrübenverwertungs-Genossenschaft (Germany)'),
(60752, 'https://ror.org/00w9n5q09', 'en', 1, 'https://ror.org/00w9n5q09 University Hospitals Landerbrook Health Center'),
(60753, 'https://ror.org/00wa55978', 'en', 1, 'https://ror.org/00wa55978 Lymphatic Malformation Institute'),
(60754, 'https://ror.org/00wa5kg71', 'en', 1, 'https://ror.org/00wa5kg71 Shenandoah Oncology'),
(60755, 'https://ror.org/00waaf760', 'no_lang_code', 1, 'https://ror.org/00waaf760 Eugonia Ευγονία'),
(60756, 'https://ror.org/00wcjzh22', 'no_lang_code', 1, 'https://ror.org/00wcjzh22 Dr. Peithner KG (Austria)'),
(60757, 'https://ror.org/00wdh3g19', 'en', 1, 'https://ror.org/00wdh3g19 St. Francis Sleep, Allergy, and Lung Institute'),
(60758, 'https://ror.org/00wj7ww55', 'de', 1, 'https://ror.org/00wj7ww55 Deutscher Berufsverband der Hals-Nasen-OhrenƤrzte e. V'),
(60759, 'https://ror.org/00wjdp131', 'en', 1, 'https://ror.org/00wjdp131 Institute for Food Safety and Health'),
(60760, 'https://ror.org/00wjy0847', 'en', 1, 'https://ror.org/00wjy0847 Ministry of Public Health وزارة الصحة العامة'),
(60761, 'https://ror.org/00wk6gg04', 'en', 1, 'https://ror.org/00wk6gg04 Musculoskeletal Orthopedic Research and Education Foundation'),
(60762, 'https://ror.org/00wp9fx28', 'fr', 1, 'https://ror.org/00wp9fx28 Association Mucoviscidose - ABCF2'),
(60763, 'https://ror.org/00wqjrk21', 'de', 1, 'https://ror.org/00wqjrk21 Institut für Medizinische Informatik, Biometrie und Epidemiologie'),
(60764, 'https://ror.org/00wsb3r63', 'no_lang_code', 1, 'https://ror.org/00wsb3r63 Ocutec (United Kingdom)'),
(60765, 'https://ror.org/00wtffy45', 'nl', 1, 'https://ror.org/00wtffy45 Stichting Westelijke Tuinsteden'),
(60766, 'https://ror.org/00wy8pn71', 'en', 1, 'https://ror.org/00wy8pn71 Aquaculture Council of Western Australia'),
(60767, 'https://ror.org/00wz52266', 'es', 1, 'https://ror.org/00wz52266 Fundación Hermano Miguel'),
(60768, 'https://ror.org/00wz6jq51', 'en', 1, 'https://ror.org/00wz6jq51 Sentara CarePlex Hospital'),
(60769, 'https://ror.org/00wztsq19', 'en', 1, 'https://ror.org/00wztsq19 Qilu Normal University é½é²åøˆčŒƒå­¦é™¢'),
(60770, 'https://ror.org/00x1td960', 'de', 1, 'https://ror.org/00x1td960 Klinik Roderbirke'),
(60771, 'https://ror.org/00x1yxe92', 'en', 1, 'https://ror.org/00x1yxe92 Far West Local Health District'),
(60772, 'https://ror.org/00x3k5x70', 'de', 1, 'https://ror.org/00x3k5x70 Ministerium für Wirtschaft, Verkehr, Landwirtschaft und Weinbau Ministry of Economy, Transport, Agriculture and Viticulture'),
(60773, 'https://ror.org/00x4qp065', 'en', 1, 'https://ror.org/00x4qp065 He University č¾½å®ä½•ę°åŒ»å­¦é™¢'),
(60774, 'https://ror.org/00x56mf13', 'it', 1, 'https://ror.org/00x56mf13 Azienda Usl 8 Arezzo'),
(60775, 'https://ror.org/00x5ydx53', 'nl', 1, 'https://ror.org/00x5ydx53 Stichting HemoBase'),
(60776, 'https://ror.org/00xe2gs46', 'nl', 1, 'https://ror.org/00xe2gs46 Stichting Artsenlaboratorium en Trombosedienst'),
(60777, 'https://ror.org/00xg0sp11', 'en', 1, 'https://ror.org/00xg0sp11 Phoenix Molecular Imaging'),
(60778, 'https://ror.org/00xgg4d44', 'tr', 1, 'https://ror.org/00xgg4d44 Erzincan Mengücek Gazi Eğitim ve Araştırma Hastanesi'),
(60779, 'https://ror.org/00xhgth11', 'de', 1, 'https://ror.org/00xhgth11 Zydolab - Institut für Zytologie und Immunzytochemie'),
(60780, 'https://ror.org/00xhn5c68', 'pt', 1, 'https://ror.org/00xhn5c68 Fundação Altino Ventura'),
(60781, 'https://ror.org/00xma8d72', 'en', 1, 'https://ror.org/00xma8d72 Stonewall Learning Center'),
(60782, 'https://ror.org/00xmdg797', 'en', 1, 'https://ror.org/00xmdg797 Canary Institute of Cancer Research Instituto Canario de Investigación del CÔncer'),
(60783, 'https://ror.org/00xnymf93', 'nl', 1, 'https://ror.org/00xnymf93 Militaire Geestelijke Gezondheidszorg'),
(60784, 'https://ror.org/00xs43h36', 'nl', 1, 'https://ror.org/00xs43h36 Vrienden van Heideheuvel'),
(60785, 'https://ror.org/00xsr8926', 'fr', 1, 'https://ror.org/00xsr8926 Groupe d''Oncologie Radiothérapie Tête et Cou'),
(60786, 'https://ror.org/00xt7wr93', 'en', 1, 'https://ror.org/00xt7wr93 Michigan Institute of Urology'),
(60787, 'https://ror.org/00xvtm334', 'no_lang_code', 1, 'https://ror.org/00xvtm334 Aqualis (Norway)'),
(60788, 'https://ror.org/00xvxvn83', 'en', 1, 'https://ror.org/00xvxvn83 European Foundation for the Study of Chronic Liver Failure'),
(60789, 'https://ror.org/00xx1nv47', 'en', 1, 'https://ror.org/00xx1nv47 K2 Communications'),
(60790, 'https://ror.org/00xy72355', 'en', 1, 'https://ror.org/00xy72355 Rocky Mountain School of Expeditionary Learning'),
(60791, 'https://ror.org/00xzj9k32', 'en', 1, 'https://ror.org/00xzj9k32 Clinical Investigation Center Plurithematic Tours'),
(60792, 'https://ror.org/00y0as388', 'no_lang_code', 1, 'https://ror.org/00y0as388 NanoAffix Science (United States)'),
(60793, 'https://ror.org/00y1hj465', 'no_lang_code', 1, 'https://ror.org/00y1hj465 Baxter (South Korea)'),
(60794, 'https://ror.org/00y3gz942', 'eu', 1, 'https://ror.org/00y3gz942 Clinic IMQ Zorrotzaurre'),
(60795, 'https://ror.org/00y3snf11', 'en', 1, 'https://ror.org/00y3snf11 Warrington and Halton Teaching Hospitals NHS Foundation Trust'),
(60796, 'https://ror.org/00y5txd68', 'no_lang_code', 1, 'https://ror.org/00y5txd68 Elfi-Tech (Israel)'),
(60797, 'https://ror.org/00yeh8c54', 'de', 1, 'https://ror.org/00yeh8c54 Schweizerische Ƅrztegesellschaft für Manuelle Medizin'),
(60798, 'https://ror.org/00yeqdq24', 'en', 1, 'https://ror.org/00yeqdq24 Center for Aquatic Sciences'),
(60799, 'https://ror.org/00yerav41', 'no_lang_code', 1, 'https://ror.org/00yerav41 Quantum Pharmaceutical (United Kingdom)'),
(60800, 'https://ror.org/00yggrf40', 'en', 1, 'https://ror.org/00yggrf40 Fondazione Italiana Sindromi Mielodisplastiche Italian Foundation of Myelodysplastic Syndromes'),
(60801, 'https://ror.org/00ygteq35', 'no_lang_code', 1, 'https://ror.org/00ygteq35 Australian Coal Research (Australia)'),
(60802, 'https://ror.org/00yh56t79', 'en', 1, 'https://ror.org/00yh56t79 Doctors Hospital at Renaissance'),
(60803, 'https://ror.org/00yjka566', 'en', 1, 'https://ror.org/00yjka566 Neurogen Brain & Spine Institute'),
(60804, 'https://ror.org/00ynkhx66', 'no_lang_code', 1, 'https://ror.org/00ynkhx66 Care Team Solutions (United States)'),
(60805, 'https://ror.org/00yqqsx19', 'en', 1, 'https://ror.org/00yqqsx19 Care Institute of Medical Sciences'),
(60806, 'https://ror.org/00ysd3163', 'nl', 1, 'https://ror.org/00ysd3163 Fonds voor het Hart'),
(60807, 'https://ror.org/00yt18j75', 'en', 1, 'https://ror.org/00yt18j75 Animal Science Research Institute å¹æäøœēœå†œäøšē§‘å­¦é™¢åŠØē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(60808, 'https://ror.org/00yvav781', 'no_lang_code', 1, 'https://ror.org/00yvav781 FluxPlus (Netherlands)'),
(60809, 'https://ror.org/00yvr3a11', 'en', 1, 'https://ror.org/00yvr3a11 Children’s Hospital at TriStar Centennial'),
(60810, 'https://ror.org/00yy1mz70', 'en', 1, 'https://ror.org/00yy1mz70 Osteopathic Founders Foundation'),
(60811, 'https://ror.org/00yyvga88', 'en', 1, 'https://ror.org/00yyvga88 Small Enterprise Foundation'),
(60812, 'https://ror.org/00yzavr52', 'en', 1, 'https://ror.org/00yzavr52 Joint Preservation Centre of BC'),
(60813, 'https://ror.org/00z1c3x88', 'en', 1, 'https://ror.org/00z1c3x88 Bergman Clinics'),
(60814, 'https://ror.org/00z2zyd49', 'en', 1, 'https://ror.org/00z2zyd49 US Apple Association'),
(60815, 'https://ror.org/00z31b133', 'no', 1, 'https://ror.org/00z31b133 Norsk Kiropraktorforening'),
(60816, 'https://ror.org/00z3eck08', 'it', 1, 'https://ror.org/00z3eck08 Casa di Cura San Michele'),
(60817, 'https://ror.org/00z3tee21', 'en', 1, 'https://ror.org/00z3tee21 Outpatient Endovascular and Interventional Society'),
(60818, 'https://ror.org/00z5hk082', 'en', 1, 'https://ror.org/00z5hk082 Cardiovascular European Research Center'),
(60819, 'https://ror.org/00zb9ns77', 'en', 1, 'https://ror.org/00zb9ns77 American College of Phlebology'),
(60820, 'https://ror.org/00zbyrh97', 'nl', 1, 'https://ror.org/00zbyrh97 Bavo Stichting Heemstede'),
(60821, 'https://ror.org/00zbyy251', 'en', 1, 'https://ror.org/00zbyy251 Southwest Women''s Oncology'),
(60822, 'https://ror.org/00zc8sp15', 'en', 1, 'https://ror.org/00zc8sp15 Georgia Arrhythmia Consultants'),
(60823, 'https://ror.org/00zcefp03', 'en', 1, 'https://ror.org/00zcefp03 Shanghai Institute of Measurement and Testing Technology äøŠęµ·ęµ‹é‡äøŽęµ‹čÆ•ęŠ€ęœÆē ”ē©¶ę‰€'),
(60824, 'https://ror.org/00zdfr649', 'nl', 1, 'https://ror.org/00zdfr649 Stichting Zonnige Jeugd'),
(60825, 'https://ror.org/00zfpsw25', 'en', 1, 'https://ror.org/00zfpsw25 The Lung Association Saskatchewan'),
(60826, 'https://ror.org/00zkc0z81', 'no_lang_code', 1, 'https://ror.org/00zkc0z81 SteelCloud (United States)'),
(60827, 'https://ror.org/00zma5460', 'es', 1, 'https://ror.org/00zma5460 Instituto Nacional de Investigación en Salud Pública'),
(60828, 'https://ror.org/00zn0ha79', 'en', 1, 'https://ror.org/00zn0ha79 Aljazeera Hospital'),
(60829, 'https://ror.org/00znarq76', 'en', 1, 'https://ror.org/00znarq76 Blanchard Valley Health System'),
(60830, 'https://ror.org/00zpf2822', 'no_lang_code', 1, 'https://ror.org/00zpf2822 Laboratorios Sophia (Mexico)'),
(60831, 'https://ror.org/00zpm8f70', 'fr', 1, 'https://ror.org/00zpm8f70 FƩdƩration Antadir'),
(60832, 'https://ror.org/00zqz6907', 'no_lang_code', 1, 'https://ror.org/00zqz6907 Alder (United States)'),
(60833, 'https://ror.org/00zrhn916', 'en', 1, 'https://ror.org/00zrhn916 Bleeding & Clotting Disorders Institute'),
(60834, 'https://ror.org/00zrhqg94', 'en', 1, 'https://ror.org/00zrhqg94 Ikatan Dokter Anak Indonesia Indonesian Pediatric Society'),
(60835, 'https://ror.org/00zrvqw87', 'en', 1, 'https://ror.org/00zrvqw87 Georgia Nasal and Sinus Institute'),
(60836, 'https://ror.org/00zryte34', 'en', 1, 'https://ror.org/00zryte34 Ministry of Foreign and European Affairs Ministère des Affaires étrangères et européennes'),
(60837, 'https://ror.org/00zsny525', 'en', 1, 'https://ror.org/00zsny525 Pediatric Nephrology of Alabama'),
(60838, 'https://ror.org/00zsz8144', 'en', 1, 'https://ror.org/00zsz8144 Ulyanovsk Regional Clinical Hospital Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(60839, 'https://ror.org/00zxr2615', 'no_lang_code', 1, 'https://ror.org/00zxr2615 Nordic Pharma (France)'),
(60840, 'https://ror.org/00zxvps74', 'en', 1, 'https://ror.org/00zxvps74 Indigenous Wellbeing Centre'),
(60841, 'https://ror.org/00zy6xm60', 'no_lang_code', 1, 'https://ror.org/00zy6xm60 KCI (Germany)'),
(60842, 'https://ror.org/00zzaka68', 'en', 1, 'https://ror.org/00zzaka68 Society for Technology in Anesthesia'),
(60843, 'https://ror.org/0101cd070', 'en', 1, 'https://ror.org/0101cd070 Women''s Cancer Center of Nevada'),
(60844, 'https://ror.org/0101mv631', 'de', 1, 'https://ror.org/0101mv631 Klinik und Poliklinik für Kinder- und Jugendmedizin'),
(60845, 'https://ror.org/0101p7966', 'en', 1, 'https://ror.org/0101p7966 Orthopedic Sports Medicine & Spine Care Institute'),
(60846, 'https://ror.org/0102aw075', 'en', 1, 'https://ror.org/0102aw075 Valley Health System'),
(60847, 'https://ror.org/0106jdf02', 'en', 1, 'https://ror.org/0106jdf02 The Lymphoma Academic Research Organisation'),
(60848, 'https://ror.org/0108d5e42', 'en', 1, 'https://ror.org/0108d5e42 Fox Valley Orthopedics'),
(60849, 'https://ror.org/0108f5051', 'no_lang_code', 1, 'https://ror.org/0108f5051 Video Collaboratory (United States)'),
(60850, 'https://ror.org/01093dx30', 'en', 1, 'https://ror.org/01093dx30 Urban Land Institute'),
(60851, 'https://ror.org/010fhjt40', 'de', 1, 'https://ror.org/010fhjt40 Stiftung Berliner Sparkasse'),
(60852, 'https://ror.org/010h4w402', 'en', 1, 'https://ror.org/010h4w402 HCA Midwest Division'),
(60853, 'https://ror.org/010jxjq13', 'nl', 1, 'https://ror.org/010jxjq13 Dimence'),
(60854, 'https://ror.org/010knjd35', 'no_lang_code', 1, 'https://ror.org/010knjd35 Vivostat (Denmark)'),
(60855, 'https://ror.org/010n18211', 'en', 1, 'https://ror.org/010n18211 California Allergy and Asthma Medical Group'),
(60856, 'https://ror.org/010nxj438', 'en', 1, 'https://ror.org/010nxj438 Floridian Research Institute'),
(60857, 'https://ror.org/010p8p018', 'en', 1, 'https://ror.org/010p8p018 Zoo Miami'),
(60858, 'https://ror.org/010rnsd21', 'en', 1, 'https://ror.org/010rnsd21 Consultative and Diagnostic Center'),
(60859, 'https://ror.org/010tc4s75', 'en', 1, 'https://ror.org/010tc4s75 Sanibel-Captiva Conservation Foundation'),
(60860, 'https://ror.org/010vx8x83', 'no_lang_code', 1, 'https://ror.org/010vx8x83 Menzis (Netherlands)'),
(60861, 'https://ror.org/010xeam31', 'no_lang_code', 1, 'https://ror.org/010xeam31 Ono Pharmaceutical (United States)'),
(60862, 'https://ror.org/010xh5279', 'en', 1, 'https://ror.org/010xh5279 Fragile X Research Foundation Of Canada'),
(60863, 'https://ror.org/010xsbj02', 'nl', 1, 'https://ror.org/010xsbj02 Stichting Kenniscentrum Dementie op Jonge Leeftijd'),
(60864, 'https://ror.org/010y9qk38', 'en', 1, 'https://ror.org/010y9qk38 Center for the Advancement of Hispanics in Science and Engineering Education'),
(60865, 'https://ror.org/0113xgn62', 'en', 1, 'https://ror.org/0113xgn62 Ahtna Heritage Foundation'),
(60866, 'https://ror.org/0114pns79', 'fr', 1, 'https://ror.org/0114pns79 UniversitƩ du Travail Paul Pastur'),
(60867, 'https://ror.org/0116f3t39', 'no_lang_code', 1, 'https://ror.org/0116f3t39 Verman (Finland)'),
(60868, 'https://ror.org/0118bqm57', 'en', 1, 'https://ror.org/0118bqm57 Vanderbilt Psychiatric Hospital'),
(60869, 'https://ror.org/0118ke170', 'no_lang_code', 1, 'https://ror.org/0118ke170 Itamar Medical (Israel)'),
(60870, 'https://ror.org/011af0v55', 'en', 1, 'https://ror.org/011af0v55 Spectrum Community Health CIC'),
(60871, 'https://ror.org/011bzst67', 'no_lang_code', 1, 'https://ror.org/011bzst67 Leiber (Germany)'),
(60872, 'https://ror.org/011ccs949', 'no_lang_code', 1, 'https://ror.org/011ccs949 Phoenix (Italy)'),
(60873, 'https://ror.org/011d4mb30', 'en', 1, 'https://ror.org/011d4mb30 Legacy Mount Hood Medical Center'),
(60874, 'https://ror.org/011e6t090', 'en', 1, 'https://ror.org/011e6t090 The Japanese Society of Intensive Care Medicine ę—„ęœ¬é›†äø­ę²»ē™‚åŒ»å­¦ä¼š'),
(60875, 'https://ror.org/011gb2z47', 'fr', 1, 'https://ror.org/011gb2z47 Centre Hospitalier Agen - NƩrac'),
(60876, 'https://ror.org/011h26k47', 'no_lang_code', 1, 'https://ror.org/011h26k47 Investor (Sweden)');
INSERT INTO `rors` VALUES
(60877, 'https://ror.org/011h51195', 'no_lang_code', 1, 'https://ror.org/011h51195 StabiLux Biosciences (United States)'),
(60878, 'https://ror.org/011nmry48', 'no_lang_code', 1, 'https://ror.org/011nmry48 PharmEcosse (United Kingdom)'),
(60879, 'https://ror.org/011nsnr29', 'no_lang_code', 1, 'https://ror.org/011nsnr29 LIDDS (Sweden)'),
(60880, 'https://ror.org/011rkqa43', 'no_lang_code', 1, 'https://ror.org/011rkqa43 Nano-Ditech (United States)'),
(60881, 'https://ror.org/011wa8w96', 'en', 1, 'https://ror.org/011wa8w96 Yunnan Institute For Drug Abuse äŗ‘å—ēœčÆē‰©ę»„ē”Øē ”ē©¶ę‰€'),
(60882, 'https://ror.org/011xgdn77', 'no_lang_code', 1, 'https://ror.org/011xgdn77 Medical CaƱada (Spain)'),
(60883, 'https://ror.org/011yfra46', 'pt', 1, 'https://ror.org/011yfra46 Instituto Ivo Pitanguy'),
(60884, 'https://ror.org/011ypec60', 'no_lang_code', 1, 'https://ror.org/011ypec60 Human Stem Cells Institute PJSC (Russia) Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дтволовых ŠšŠ»ŠµŃ‚Š¾Šŗ Человека'),
(60885, 'https://ror.org/011z6ge83', 'no_lang_code', 1, 'https://ror.org/011z6ge83 Proderm (Germany)'),
(60886, 'https://ror.org/011znd796', 'en', 1, 'https://ror.org/011znd796 American Medical Group Association'),
(60887, 'https://ror.org/01249zp52', 'en', 1, 'https://ror.org/01249zp52 Osteopathie Plus'),
(60888, 'https://ror.org/012729810', 'no_lang_code', 1, 'https://ror.org/012729810 GeoEngineers (United States)'),
(60889, 'https://ror.org/012738550', 'no_lang_code', 1, 'https://ror.org/012738550 INiTS (Austria)'),
(60890, 'https://ror.org/0127psw24', 'en', 1, 'https://ror.org/0127psw24 Visiting Nurse Association'),
(60891, 'https://ror.org/0128rbw31', 'en', 1, 'https://ror.org/0128rbw31 American Academy of Underwater Sciences'),
(60892, 'https://ror.org/0129x4h77', 'en', 1, 'https://ror.org/0129x4h77 Centar za zdravlje, vežbanje i sportske nauke Center for Health, Exercise and Sport Sciences'),
(60893, 'https://ror.org/012a9r338', 'no_lang_code', 1, 'https://ror.org/012a9r338 Bodeker Scientific (New Zealand)'),
(60894, 'https://ror.org/012chae64', 'no_lang_code', 1, 'https://ror.org/012chae64 Merck (Netherlands)'),
(60895, 'https://ror.org/012g7b973', 'no_lang_code', 1, 'https://ror.org/012g7b973 axios Pharma (Germany)'),
(60896, 'https://ror.org/012m0jg51', 'nl', 1, 'https://ror.org/012m0jg51 Instituut voor Verantwoord Medicijngebruik'),
(60897, 'https://ror.org/012m33j29', 'en', 1, 'https://ror.org/012m33j29 NKP Salve Institute of Medical Sciences and Lata Mangeshkar Hospital'),
(60898, 'https://ror.org/012n40c33', 'en', 1, 'https://ror.org/012n40c33 Mississippi Museum of Natural Science'),
(60899, 'https://ror.org/012n4jm27', 'en', 1, 'https://ror.org/012n4jm27 State Technical College of Missouri'),
(60900, 'https://ror.org/012pnb193', 'en', 1, 'https://ror.org/012pnb193 Instituto Milenio para la Investigación en Depresión y Personalidad Millennium Institute for Research in Depression and Personality'),
(60901, 'https://ror.org/012pts076', 'en', 1, 'https://ror.org/012pts076 Danish Institute for Quality and Accreditation in Healthcare Institut for Kvalitet og Akkreditering i Sundhedsvaesenet'),
(60902, 'https://ror.org/012pz6314', 'no_lang_code', 1, 'https://ror.org/012pz6314 TRB Chemedica International (Switzerland)'),
(60903, 'https://ror.org/012recq09', 'en', 1, 'https://ror.org/012recq09 Society for Pediatric Anesthesia'),
(60904, 'https://ror.org/012rrxx37', 'en', 1, 'https://ror.org/012rrxx37 Copenhagen Academy for Medical Education and Simulation KĆøbenhavns Akademi for Medicinsk Uddannelse og Simulation'),
(60905, 'https://ror.org/012x9fa64', 'no_lang_code', 1, 'https://ror.org/012x9fa64 NeuraMedica (United States)'),
(60906, 'https://ror.org/012yg2g20', 'en', 1, 'https://ror.org/012yg2g20 Columbia College - Missouri'),
(60907, 'https://ror.org/012zbs470', 'en', 1, 'https://ror.org/012zbs470 Maryland Medical Research Institute'),
(60908, 'https://ror.org/0130c0t65', 'no_lang_code', 1, 'https://ror.org/0130c0t65 Instituto Lala (Mexico)'),
(60909, 'https://ror.org/0130pvq33', 'en', 1, 'https://ror.org/0130pvq33 Institute of Skin and Product Evaluation'),
(60910, 'https://ror.org/013213t18', 'en', 1, 'https://ror.org/013213t18 Catholic Leadership Institute'),
(60911, 'https://ror.org/0132cpq10', 'en', 1, 'https://ror.org/0132cpq10 Edith Kanaka''ole Foundation'),
(60912, 'https://ror.org/0134vhg32', 'en', 1, 'https://ror.org/0134vhg32 Haitian American Community Development Corporation'),
(60913, 'https://ror.org/0135fer63', 'no_lang_code', 1, 'https://ror.org/0135fer63 Senju Pharmaceutical (United States)'),
(60914, 'https://ror.org/0135q5188', 'en', 1, 'https://ror.org/0135q5188 Q-Pharm'),
(60915, 'https://ror.org/0137q5a72', 'en', 1, 'https://ror.org/0137q5a72 University Clinic for Nephrology and Hypertension, Diabetology and Endocrinology Universitätsklinik für Nieren- und Hochdruckkrankheiten, Diabetologie und Endokrinologie'),
(60916, 'https://ror.org/013848a06', 'en', 1, 'https://ror.org/013848a06 Italian Society of Physiotherapy SocietĆ  Italiana Fisioterapia'),
(60917, 'https://ror.org/0138yyw30', 'en', 1, 'https://ror.org/0138yyw30 Society for Neuroeconomics'),
(60918, 'https://ror.org/013aa1717', 'en', 1, 'https://ror.org/013aa1717 Isle of Wight NHS Trust'),
(60919, 'https://ror.org/013c16d18', 'en', 1, 'https://ror.org/013c16d18 European Society of Gynaecological Oncology'),
(60920, 'https://ror.org/013cjx333', 'en', 1, 'https://ror.org/013cjx333 Physicians Laser and Dermatology Institute'),
(60921, 'https://ror.org/013cqn582', 'en', 1, 'https://ror.org/013cqn582 McGuire Institute'),
(60922, 'https://ror.org/013e4mp15', 'nl', 1, 'https://ror.org/013e4mp15 Wantveld'),
(60923, 'https://ror.org/013ebq793', 'it', 1, 'https://ror.org/013ebq793 Consorzio Interuniversitario Nazionale La Chimica Per L''Ambiente'),
(60924, 'https://ror.org/013f5rs96', 'en', 1, 'https://ror.org/013f5rs96 PCR Oncology'),
(60925, 'https://ror.org/013fdz725', 'en', 1, 'https://ror.org/013fdz725 Melbourne Sexual Health Centre'),
(60926, 'https://ror.org/013jg8087', 'no_lang_code', 1, 'https://ror.org/013jg8087 Solarmer Energy (United States)'),
(60927, 'https://ror.org/013k8vr26', 'en', 1, 'https://ror.org/013k8vr26 Deltaplan Dementie Deltaplan dementia'),
(60928, 'https://ror.org/013km0e25', 'de', 1, 'https://ror.org/013km0e25 Institut für Notfallmedizin Allgäu'),
(60929, 'https://ror.org/013kwyq90', 'en', 1, 'https://ror.org/013kwyq90 Nigerian Cardiac Society'),
(60930, 'https://ror.org/013mm0e79', 'en', 1, 'https://ror.org/013mm0e79 Korean Association for the Study of Targeted Therapy ķ‘œģ ģ¹˜ė£Œģ—°źµ¬ķšŒ ź°€ģž…'),
(60931, 'https://ror.org/013ne8p22', 'de', 1, 'https://ror.org/013ne8p22 Poliklinik für Endokrinologie, Diabetologie und Präventivmedizin'),
(60932, 'https://ror.org/013t72710', 'en', 1, 'https://ror.org/013t72710 Windward Islands Research and Education Foundation'),
(60933, 'https://ror.org/013v77n27', 'no_lang_code', 1, 'https://ror.org/013v77n27 Australian Seafood Industries (Australia)'),
(60934, 'https://ror.org/013x1pp52', 'no_lang_code', 1, 'https://ror.org/013x1pp52 Hanmi Pharmaceutical (South Korea) ķ•œėÆøģ•½ķ’ˆ'),
(60935, 'https://ror.org/013z6ae41', 'en', 1, 'https://ror.org/013z6ae41 Deutsche Krebsgesellschaft German Cancer Society'),
(60936, 'https://ror.org/013zs6k48', 'no_lang_code', 1, 'https://ror.org/013zs6k48 Immunogenics (United States)'),
(60937, 'https://ror.org/01400tq86', 'no_lang_code', 1, 'https://ror.org/01400tq86 CSL (Switzerland)'),
(60938, 'https://ror.org/01442sk86', 'no_lang_code', 1, 'https://ror.org/01442sk86 Bayer (Netherlands)'),
(60939, 'https://ror.org/0144enb05', 'no_lang_code', 1, 'https://ror.org/0144enb05 Novo Nordisk (Finland)'),
(60940, 'https://ror.org/0146zsf67', 'en', 1, 'https://ror.org/0146zsf67 Tatyasaheb Kore Dental College and Research Centre'),
(60941, 'https://ror.org/0149ncr63', 'no_lang_code', 1, 'https://ror.org/0149ncr63 Alvotech (Germany)'),
(60942, 'https://ror.org/0149vtr75', 'en', 1, 'https://ror.org/0149vtr75 Virginia Cooperative Extension'),
(60943, 'https://ror.org/014a78w41', 'no_lang_code', 1, 'https://ror.org/014a78w41 Ideum (United States)'),
(60944, 'https://ror.org/014b0sj15', 'en', 1, 'https://ror.org/014b0sj15 Kansas City Indian Center'),
(60945, 'https://ror.org/014cpc426', 'en', 1, 'https://ror.org/014cpc426 Walgett Aboriginal Medical Service'),
(60946, 'https://ror.org/014ef6110', 'nl', 1, 'https://ror.org/014ef6110 Alexander Monro Ziekenhuis'),
(60947, 'https://ror.org/014epsm02', 'no_lang_code', 1, 'https://ror.org/014epsm02 Novamedia (Netherlands)'),
(60948, 'https://ror.org/014fa1z03', 'da', 1, 'https://ror.org/014fa1z03 Regionshospital Nordjylland'),
(60949, 'https://ror.org/014fcp763', 'pt', 1, 'https://ror.org/014fcp763 Instituto de Gastroenterologia de Goiânia'),
(60950, 'https://ror.org/014gzk937', 'en', 1, 'https://ror.org/014gzk937 Langley Porter Psychiatric Hospital and Clinics'),
(60951, 'https://ror.org/014hhbt69', 'nl', 1, 'https://ror.org/014hhbt69 ALS Centrum Nederland'),
(60952, 'https://ror.org/014knbk35', 'en', 1, 'https://ror.org/014knbk35 Tokyo Women''s Medical University Hospital ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(60953, 'https://ror.org/014m2qe90', 'no_lang_code', 1, 'https://ror.org/014m2qe90 Australian Aquaculture Support Services (Australia)'),
(60954, 'https://ror.org/014n97p37', 'en', 1, 'https://ror.org/014n97p37 Wisconsin Legislative Council'),
(60955, 'https://ror.org/014qd2j86', 'pt', 1, 'https://ror.org/014qd2j86 Instituto Scribner'),
(60956, 'https://ror.org/014sv9994', 'en', 1, 'https://ror.org/014sv9994 Fujian Entry - Exit Inspection and Quarantine Bureau'),
(60957, 'https://ror.org/014v0ay52', 'en', 1, 'https://ror.org/014v0ay52 Society for Promoting Participative Ecosystem Management'),
(60958, 'https://ror.org/014w2tt04', 'en', 1, 'https://ror.org/014w2tt04 Life Care Institute of Medical Sciences & Research'),
(60959, 'https://ror.org/014xwn672', 'en', 1, 'https://ror.org/014xwn672 Asheville Hematology & Oncology'),
(60960, 'https://ror.org/0150fxq66', 'en', 1, 'https://ror.org/0150fxq66 Institute of Virology, Vaccines and Sera ā€œTorlakā€'),
(60961, 'https://ror.org/0151f9x82', 'no_lang_code', 1, 'https://ror.org/0151f9x82 BHR Pharmaceuticals (United Kingdom)'),
(60962, 'https://ror.org/0151g7j48', 'en', 1, 'https://ror.org/0151g7j48 Histiocyte Society'),
(60963, 'https://ror.org/0151kez15', 'en', 1, 'https://ror.org/0151kez15 United Negro College Fund'),
(60964, 'https://ror.org/01523c327', 'no_lang_code', 1, 'https://ror.org/01523c327 Centraal Ziekenfonds (Netherlands)'),
(60965, 'https://ror.org/0152qcr22', 'en', 1, 'https://ror.org/0152qcr22 HSHS St. Nicholas Hospital'),
(60966, 'https://ror.org/0153n9c45', 'en', 1, 'https://ror.org/0153n9c45 Institute for Personal Excellence'),
(60967, 'https://ror.org/0153zg311', 'no_lang_code', 1, 'https://ror.org/0153zg311 Bauerfeind (Netherlands)'),
(60968, 'https://ror.org/01545pc85', 'de', 1, 'https://ror.org/01545pc85 Fachkrankenhaus Hubertusburg'),
(60969, 'https://ror.org/0154h5d61', 'no_lang_code', 1, 'https://ror.org/0154h5d61 Proximity Biosciences (United States)'),
(60970, 'https://ror.org/0154qvp54', 'en', 1, 'https://ror.org/0154qvp54 Trung tĆ¢m Y tįŗæ ĐẔi hį»c Hồ ChĆ­ Minh University Medical Center HCMC'),
(60971, 'https://ror.org/0155dcf85', 'lt', 1, 'https://ror.org/0155dcf85 Alytaus Apskrities S. Kudirkos Ligoninė'),
(60972, 'https://ror.org/0156jsd27', 'en', 1, 'https://ror.org/0156jsd27 James B. and Lois R. Archer Charitable Foundation'),
(60973, 'https://ror.org/0156zyn36', 'en', 1, 'https://ror.org/0156zyn36 California Medical Innovations Institute'),
(60974, 'https://ror.org/01574pc21', 'no_lang_code', 1, 'https://ror.org/01574pc21 Ferring LƤkemedel (Sweden)'),
(60975, 'https://ror.org/0157gcv59', 'no_lang_code', 1, 'https://ror.org/0157gcv59 Acarix (Denmark)'),
(60976, 'https://ror.org/01583x474', 'no_lang_code', 1, 'https://ror.org/01583x474 Invictus Medical (United States)'),
(60977, 'https://ror.org/01599jv46', 'no_lang_code', 1, 'https://ror.org/01599jv46 Zambon (Germany)'),
(60978, 'https://ror.org/015a8sc23', 'en', 1, 'https://ror.org/015a8sc23 Bell County Public Health District'),
(60979, 'https://ror.org/015aser35', 'en', 1, 'https://ror.org/015aser35 Psychiatric Association of Turkey Türkiye Psikiyatri Derneği'),
(60980, 'https://ror.org/015c7cy32', 'pt', 1, 'https://ror.org/015c7cy32 Hospital TotalCor'),
(60981, 'https://ror.org/015d6sb27', 'no_lang_code', 1, 'https://ror.org/015d6sb27 GP Pharm (Spain)'),
(60982, 'https://ror.org/015dptv07', 'en', 1, 'https://ror.org/015dptv07 Athens Orthopedic Clinic'),
(60983, 'https://ror.org/015dsp568', 'en', 1, 'https://ror.org/015dsp568 Rocky Mountain Multiple Sclerosis Clinic'),
(60984, 'https://ror.org/015e4mc09', 'de', 1, 'https://ror.org/015e4mc09 UniversitƤts Kinder Frauenzentrum'),
(60985, 'https://ror.org/015fhgq54', 'en', 1, 'https://ror.org/015fhgq54 National Association of Women Judges'),
(60986, 'https://ror.org/015jb2v95', 'en', 1, 'https://ror.org/015jb2v95 Nepalese Psychological Association'),
(60987, 'https://ror.org/015jb5761', 'en', 1, 'https://ror.org/015jb5761 Bay Area Breast Surgeons'),
(60988, 'https://ror.org/015jr2d68', 'en', 1, 'https://ror.org/015jr2d68 Dandenong Ranges Music Council'),
(60989, 'https://ror.org/015k6vv14', 'no_lang_code', 1, 'https://ror.org/015k6vv14 Boehringer Ingelheim (Finland)'),
(60990, 'https://ror.org/015mpw953', 'es', 1, 'https://ror.org/015mpw953 Corporación Universitaria para el Desarrollo de Internet'),
(60991, 'https://ror.org/015nq5b13', 'nl', 1, 'https://ror.org/015nq5b13 Nederlandse Ski Vereniging'),
(60992, 'https://ror.org/015q26m05', 'en', 1, 'https://ror.org/015q26m05 Clearwater Valley Hospital and Clinics'),
(60993, 'https://ror.org/015sdn055', 'no_lang_code', 1, 'https://ror.org/015sdn055 Universal Cells (United States)'),
(60994, 'https://ror.org/015sq8750', 'en', 1, 'https://ror.org/015sq8750 Kaiser Permanente Lone Tree Medical Offices'),
(60995, 'https://ror.org/015t3ef28', 'de', 1, 'https://ror.org/015t3ef28 Augenstern'),
(60996, 'https://ror.org/015w53b07', 'en', 1, 'https://ror.org/015w53b07 NACE International'),
(60997, 'https://ror.org/015wgw417', 'de', 1, 'https://ror.org/015wgw417 Heidelberger Institut für Radioonkologie'),
(60998, 'https://ror.org/015xqq593', 'no_lang_code', 1, 'https://ror.org/015xqq593 Heat Transfer Research (United States)'),
(60999, 'https://ror.org/015z2xk75', 'en', 1, 'https://ror.org/015z2xk75 Providence Holy Cross Medical Center'),
(61000, 'https://ror.org/016006q30', 'en', 1, 'https://ror.org/016006q30 Slocum Research and Education Foundation'),
(61001, 'https://ror.org/0160xcw76', 'pt', 1, 'https://ror.org/0160xcw76 Fundação Saúde'),
(61002, 'https://ror.org/01612ta13', 'en', 1, 'https://ror.org/01612ta13 Aboriginal Health and Medical Research Council of New South Wales'),
(61003, 'https://ror.org/0161ee609', 'en', 1, 'https://ror.org/0161ee609 Australian Southern Bluefin Tuna Industry Association'),
(61004, 'https://ror.org/016208791', 'en', 1, 'https://ror.org/016208791 Children’s Aid Society'),
(61005, 'https://ror.org/0164nmw44', 'en', 1, 'https://ror.org/0164nmw44 AGIS'),
(61006, 'https://ror.org/01659vw12', 'en', 1, 'https://ror.org/01659vw12 Nutritional Research Foundation'),
(61007, 'https://ror.org/0165tjs71', 'fr', 1, 'https://ror.org/0165tjs71 EurasantƩ'),
(61008, 'https://ror.org/0168g2651', 'en', 1, 'https://ror.org/0168g2651 Pan Am Clinic'),
(61009, 'https://ror.org/0168gzc62', 'en', 1, 'https://ror.org/0168gzc62 Public institution Respublikinė Šiauliai Hospital'),
(61010, 'https://ror.org/016978714', 'en', 1, 'https://ror.org/016978714 Lung Institute'),
(61011, 'https://ror.org/0169ka518', 'en', 1, 'https://ror.org/0169ka518 Shandong Provincial Institute of Dermatology and Venereology å±±äøœēœēš®č‚¤ę€§ē—…ē ”ē©¶ę‰€'),
(61012, 'https://ror.org/016acvd35', 'en', 1, 'https://ror.org/016acvd35 Henry Ford Macomb Hospital'),
(61013, 'https://ror.org/016d4cn96', 'en', 1, 'https://ror.org/016d4cn96 Memorial Healthcare System'),
(61014, 'https://ror.org/016df8p53', 'en', 1, 'https://ror.org/016df8p53 Koliber Biosciences'),
(61015, 'https://ror.org/016dnyj85', 'en', 1, 'https://ror.org/016dnyj85 Tasmanian Salmonid Growers Association'),
(61016, 'https://ror.org/016sspy41', 'no_lang_code', 1, 'https://ror.org/016sspy41 SeneCura Kliniken und Heime (Austria)'),
(61017, 'https://ror.org/0172dx143', 'no_lang_code', 1, 'https://ror.org/0172dx143 Advanced Medical Solutions (Germany)'),
(61018, 'https://ror.org/0172qgn96', 'en', 1, 'https://ror.org/0172qgn96 The Eisner Foundation'),
(61019, 'https://ror.org/01736k933', 'en', 1, 'https://ror.org/01736k933 Vince Lombardi Cancer Clinic'),
(61020, 'https://ror.org/0173ksf49', 'no_lang_code', 1, 'https://ror.org/0173ksf49 Health Outcomes Solutions (United States)'),
(61021, 'https://ror.org/0173wmw02', 'fr', 1, 'https://ror.org/0173wmw02 Association des MƩdecins d''Urgence du QuƩbec'),
(61022, 'https://ror.org/01775kt69', 'es', 1, 'https://ror.org/01775kt69 Hospitales Regionales de Alta Especialidad'),
(61023, 'https://ror.org/017cay976', 'en', 1, 'https://ror.org/017cay976 Orlovsky Oncology Dispensary'),
(61024, 'https://ror.org/017cm0005', 'nl', 1, 'https://ror.org/017cm0005 Nieuwegein Fonds'),
(61025, 'https://ror.org/017dyf006', 'en', 1, 'https://ror.org/017dyf006 Pediatric Hospital of Sinaloa'),
(61026, 'https://ror.org/017ecm653', 'en', 1, 'https://ror.org/017ecm653 Academic Center for Evidence-Based Sports Medicine'),
(61027, 'https://ror.org/017emx724', 'en', 1, 'https://ror.org/017emx724 San Francisco Medical Society'),
(61028, 'https://ror.org/017esgv14', 'en', 1, 'https://ror.org/017esgv14 Anchorage Associates in Radiation Medicine'),
(61029, 'https://ror.org/017g1tr52', 'en', 1, 'https://ror.org/017g1tr52 Morrison Tech'),
(61030, 'https://ror.org/017gepd12', 'no', 1, 'https://ror.org/017gepd12 Landsforeningen Uventet BarnedĆød'),
(61031, 'https://ror.org/017gjh659', 'en', 1, 'https://ror.org/017gjh659 Norwegian Medicines Agency Statens Legemiddelverk'),
(61032, 'https://ror.org/017pp1416', 'en', 1, 'https://ror.org/017pp1416 St. Gallen Oncology Conferences'),
(61033, 'https://ror.org/017qmh907', 'no_lang_code', 1, 'https://ror.org/017qmh907 Zhejiang Yongning Pharma (China)'),
(61034, 'https://ror.org/017s9e951', 'en', 1, 'https://ror.org/017s9e951 Institute for Rehabilitation and Research Foundation'),
(61035, 'https://ror.org/017t5ge61', 'en', 1, 'https://ror.org/017t5ge61 Polk Bros. Foundation'),
(61036, 'https://ror.org/017w9st76', 'en', 1, 'https://ror.org/017w9st76 Jackson-Madison County General Hospital'),
(61037, 'https://ror.org/017ymfm59', 'en', 1, 'https://ror.org/017ymfm59 Oklahoma Cancer Specialists and Research Institute'),
(61038, 'https://ror.org/0180s3q15', 'nl', 1, 'https://ror.org/0180s3q15 Omring'),
(61039, 'https://ror.org/0181jsv49', 'no_lang_code', 1, 'https://ror.org/0181jsv49 Cromsource (Netherlands)'),
(61040, 'https://ror.org/0182jz384', 'de', 1, 'https://ror.org/0182jz384 Age Stiftung'),
(61041, 'https://ror.org/0182mv832', 'nl', 1, 'https://ror.org/0182mv832 Multiple Sclerose Vereniging Nederland'),
(61042, 'https://ror.org/018332h72', 'en', 1, 'https://ror.org/018332h72 Samara City N.I. Pirogov Clinical Hospital ā„–1 Дамара Š.И. ŠŸŠøŃ€Š¾Š³Š¾Š²ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–1'),
(61043, 'https://ror.org/0185gtc53', 'no_lang_code', 1, 'https://ror.org/0185gtc53 Drs. Fine, Hoffman & Sims'),
(61044, 'https://ror.org/018695p26', 'en', 1, 'https://ror.org/018695p26 Health and Social Development Foundation Š¤Š¾Š½Š“Š°Ń†ŠøŃ "ЗГраве Šø социално развитие"'),
(61045, 'https://ror.org/0188ecd37', 'en', 1, 'https://ror.org/0188ecd37 Slovenian Society of Anaesthesiology and Intensive Care Medicine Slovensko združenje za anesteziologijo in intenzivno medicino'),
(61046, 'https://ror.org/0188pyf14', 'en', 1, 'https://ror.org/0188pyf14 Hattiesburg Clinic'),
(61047, 'https://ror.org/0188v8a70', 'no_lang_code', 1, 'https://ror.org/0188v8a70 Icon (United States)'),
(61048, 'https://ror.org/018a3b122', 'en', 1, 'https://ror.org/018a3b122 Moriggia Pelascini Hospital Ospedale Moriggia Pelascini'),
(61049, 'https://ror.org/018akcp84', 'en', 1, 'https://ror.org/018akcp84 Multiple Sclerosis Research Institute'),
(61050, 'https://ror.org/018b60f22', 'en', 1, 'https://ror.org/018b60f22 Belgian Society for Pediatric Gastroenterology Hepatology and Nutrition'),
(61051, 'https://ror.org/018ct3570', 'en', 1, 'https://ror.org/018ct3570 Oslo Sports Trauma Research Center Senter for Idrettsskadeforskning'),
(61052, 'https://ror.org/018d0rc68', 'en', 1, 'https://ror.org/018d0rc68 Kaiser Permanente San Marcos Medical Offices'),
(61053, 'https://ror.org/018djsc63', 'fr', 1, 'https://ror.org/018djsc63 Espoir pour la Sante'),
(61054, 'https://ror.org/018et7876', 'en', 1, 'https://ror.org/018et7876 Columbus Ophthalmology Associates'),
(61055, 'https://ror.org/018fcay07', 'no_lang_code', 1, 'https://ror.org/018fcay07 SLA Pharma (United Kingdom)'),
(61056, 'https://ror.org/018fz1017', 'en', 1, 'https://ror.org/018fz1017 Institute for Research and Evaluation'),
(61057, 'https://ror.org/018g01631', 'de', 1, 'https://ror.org/018g01631 Salus Klinik'),
(61058, 'https://ror.org/018gc9r78', 'en', 1, 'https://ror.org/018gc9r78 Helios Hospital Schwerin Helios Kliniken Schwerin'),
(61059, 'https://ror.org/018hhzz02', 'nl', 1, 'https://ror.org/018hhzz02 Bouman GGZ, Bouman Geestelijke Gezondheidszorg'),
(61060, 'https://ror.org/018q2vm69', 'no_lang_code', 1, 'https://ror.org/018q2vm69 MediRisk (Netherlands)'),
(61061, 'https://ror.org/018q88z15', 'es', 1, 'https://ror.org/018q88z15 Hospital Universitario Quirónsalud Madrid'),
(61062, 'https://ror.org/018qejt38', 'no_lang_code', 1, 'https://ror.org/018qejt38 Bausch & Lomb (France)'),
(61063, 'https://ror.org/018w1ab26', 'en', 1, 'https://ror.org/018w1ab26 Instituto Salgado de SaĆŗde Integral Salgado Institute of Integral Health'),
(61064, 'https://ror.org/018w38s46', 'en', 1, 'https://ror.org/018w38s46 Giant Screen Cinema Association'),
(61065, 'https://ror.org/018w9fc90', 'no_lang_code', 1, 'https://ror.org/018w9fc90 Sachtleben (Germany)'),
(61066, 'https://ror.org/018w9pb03', 'en', 1, 'https://ror.org/018w9pb03 Central Park West Health Center'),
(61067, 'https://ror.org/018wek193', 'no_lang_code', 1, 'https://ror.org/018wek193 The eNose (Netherlands)'),
(61068, 'https://ror.org/018x1j412', 'en', 1, 'https://ror.org/018x1j412 Franciscan Health Indianapolis'),
(61069, 'https://ror.org/018ymm591', 'en', 1, 'https://ror.org/018ymm591 Vimhans PrimaMed Super Speciality Hospital'),
(61070, 'https://ror.org/01903zs91', 'no_lang_code', 1, 'https://ror.org/01903zs91 iSono Health (United States)'),
(61071, 'https://ror.org/01907r966', 'en', 1, 'https://ror.org/01907r966 Eastern Connecticut Hematology and Oncology Associates'),
(61072, 'https://ror.org/019164h44', 'en', 1, 'https://ror.org/019164h44 OSU-University Multispectral Laboratories'),
(61073, 'https://ror.org/0192sgm30', 'sv', 1, 'https://ror.org/0192sgm30 Gorthonstiftelsen'),
(61074, 'https://ror.org/0193k3909', 'en', 1, 'https://ror.org/0193k3909 Swedish Nutrition Foundation'),
(61075, 'https://ror.org/0194n5932', 'no_lang_code', 1, 'https://ror.org/0194n5932 Thanyarak Institute ąø§ąø±ąø•ąø“ąøŖąø–ąø²ąøšąø±ąø™ąø˜ąø±ąøąøąø²ąø£ąø±ąøąø©ą¹Œ'),
(61076, 'https://ror.org/0194xa029', 'en', 1, 'https://ror.org/0194xa029 Oncology Institute of Vojvodina Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за онкологију Š’Š¾Ń˜Š²Š¾Š“ŠøŠ½Šµ'),
(61077, 'https://ror.org/0196d3y13', 'en', 1, 'https://ror.org/0196d3y13 Ambulantes Reha-Zentrum Berlin Adlershof Ambulatory Rehabilitation Center Berlin Adlershof'),
(61078, 'https://ror.org/0198gqt55', 'en', 1, 'https://ror.org/0198gqt55 Australia and New Zealand Melanoma Trials Group'),
(61079, 'https://ror.org/0198kn518', 'de', 1, 'https://ror.org/0198kn518 Sächsisches Staatsministerium für Soziales und Verbraucherschutz'),
(61080, 'https://ror.org/019a4hz49', 'en', 1, 'https://ror.org/019a4hz49 Clinical Research Atlanta'),
(61081, 'https://ror.org/019a9a780', 'de', 1, 'https://ror.org/019a9a780 Klinik Kƶnig-Ludwig Haus'),
(61082, 'https://ror.org/019bv8923', 'en', 1, 'https://ror.org/019bv8923 University Specialized Hospital for Active Treatment of Endocrinology Университетска специализирана болница за активно лечение по ŠµŠ½Š“Š¾ŠŗŃ€ŠøŠ½Š¾Š»Š¾Š³ŠøŃ'),
(61083, 'https://ror.org/019ca7044', 'en', 1, 'https://ror.org/019ca7044 Starnberg Hospital'),
(61084, 'https://ror.org/019dx5122', 'de', 1, 'https://ror.org/019dx5122 Deutsche Gesellschaft für Ultraschall in der Medizin'),
(61085, 'https://ror.org/019fmzd26', 'en', 1, 'https://ror.org/019fmzd26 Plough Foundation'),
(61086, 'https://ror.org/019g4tc51', 'pt', 1, 'https://ror.org/019g4tc51 Androfert'),
(61087, 'https://ror.org/019ntzn33', 'no_lang_code', 1, 'https://ror.org/019ntzn33 International Drug Agency for Pharmaceutical Industry (Egypt)'),
(61088, 'https://ror.org/019pd0m31', 'en', 1, 'https://ror.org/019pd0m31 Hildegard Grunow Foundation Hildegard-Grunow-Stiftung'),
(61089, 'https://ror.org/019pev732', 'en', 1, 'https://ror.org/019pev732 College of Pharmacists of British Columbia'),
(61090, 'https://ror.org/019ph5n64', 'en', 1, 'https://ror.org/019ph5n64 AnMed Health'),
(61091, 'https://ror.org/019q9za18', 'es', 1, 'https://ror.org/019q9za18 Instituto de Tecnologƭa CerƔmica'),
(61092, 'https://ror.org/019rxjv66', 'no_lang_code', 1, 'https://ror.org/019rxjv66 Tricolast (Belgium)'),
(61093, 'https://ror.org/019v04n80', 'de', 1, 'https://ror.org/019v04n80 Katholisches Krankenhaus St. Johann Nepomuk'),
(61094, 'https://ror.org/019wc4e54', 'en', 1, 'https://ror.org/019wc4e54 Tallahassee Cancer Institute'),
(61095, 'https://ror.org/019wqcg20', 'en', 1, 'https://ror.org/019wqcg20 Stanford Health Care'),
(61096, 'https://ror.org/019wxyf39', 'de', 1, 'https://ror.org/019wxyf39 Helios Klinik Hagen Ambrock'),
(61097, 'https://ror.org/019y11h89', 'en', 1, 'https://ror.org/019y11h89 Western NSW Local Health District'),
(61098, 'https://ror.org/019z87133', 'it', 1, 'https://ror.org/019z87133 Azienda Sanitaria Locale di Asti'),
(61099, 'https://ror.org/01a0jnf88', 'nl', 1, 'https://ror.org/01a0jnf88 Landsteiner Instituut'),
(61100, 'https://ror.org/01a0k3v66', 'no_lang_code', 1, 'https://ror.org/01a0k3v66 SonoVol (United States)'),
(61101, 'https://ror.org/01a13fh38', 'en', 1, 'https://ror.org/01a13fh38 Icon Early Phase Services'),
(61102, 'https://ror.org/01a1t3a07', 'en', 1, 'https://ror.org/01a1t3a07 Oregon Law Center'),
(61103, 'https://ror.org/01a2crk92', 'nl', 1, 'https://ror.org/01a2crk92 Dokter Izak Wessel Stichting'),
(61104, 'https://ror.org/01a4ndw62', 'en', 1, 'https://ror.org/01a4ndw62 Chaitanya Hospital And Nursing Home'),
(61105, 'https://ror.org/01a4ygj92', 'en', 1, 'https://ror.org/01a4ygj92 Central Research and Design Institute Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(61106, 'https://ror.org/01a51dp76', 'en', 1, 'https://ror.org/01a51dp76 University High School'),
(61107, 'https://ror.org/01a5kys78', 'no_lang_code', 1, 'https://ror.org/01a5kys78 Q-State Biosciences (United States)'),
(61108, 'https://ror.org/01a7n9s35', 'no_lang_code', 1, 'https://ror.org/01a7n9s35 Medico-Academic Consultings (Germany)'),
(61109, 'https://ror.org/01aagfe76', 'no_lang_code', 1, 'https://ror.org/01aagfe76 Efamol (United Kingdom)'),
(61110, 'https://ror.org/01abhxy31', 'no_lang_code', 1, 'https://ror.org/01abhxy31 Würzburg Institute for Traffic Sciences (Germany) Würzburger Institut für Verkehrswissenschaften'),
(61111, 'https://ror.org/01ambd593', 'no_lang_code', 1, 'https://ror.org/01ambd593 Otsuka (Indonesia)'),
(61112, 'https://ror.org/01an3vn51', 'no_lang_code', 1, 'https://ror.org/01an3vn51 MDxHealth (Netherlands)'),
(61113, 'https://ror.org/01an94380', 'fr', 1, 'https://ror.org/01an94380 Institut Emergences'),
(61114, 'https://ror.org/01anv7k29', 'de', 1, 'https://ror.org/01anv7k29 Klinikum am Weissenhof'),
(61115, 'https://ror.org/01ap05s72', 'de', 1, 'https://ror.org/01ap05s72 Bundeswehrkrankenhaus'),
(61116, 'https://ror.org/01aq0vw42', 'nl', 1, 'https://ror.org/01aq0vw42 Ergotherapie Nederland, Nederlandse Vereniging van Ergotherapie'),
(61117, 'https://ror.org/01aq2mh35', 'en', 1, 'https://ror.org/01aq2mh35 UNM Children''s Hospital'),
(61118, 'https://ror.org/01arb1p52', 'en', 1, 'https://ror.org/01arb1p52 Charlotte Sports Medicine Institute'),
(61119, 'https://ror.org/01are8h73', 'nl', 1, 'https://ror.org/01are8h73 Regio Gooi en Vechtstreek'),
(61120, 'https://ror.org/01arv1h94', 'en', 1, 'https://ror.org/01arv1h94 St. Josefs-Hospital Cloppenburg'),
(61121, 'https://ror.org/01aw97q13', 'en', 1, 'https://ror.org/01aw97q13 Ishar Multicultural Women''s Health Centre'),
(61122, 'https://ror.org/01awb6242', 'de', 1, 'https://ror.org/01awb6242 Kliniken des Bezirks Oberbayern'),
(61123, 'https://ror.org/01axx9y09', 'en', 1, 'https://ror.org/01axx9y09 Kawaiisu Language and Cultural Center'),
(61124, 'https://ror.org/01b0d9a10', 'en', 1, 'https://ror.org/01b0d9a10 Lifelong Vision Foundation'),
(61125, 'https://ror.org/01b1d2r15', 'en', 1, 'https://ror.org/01b1d2r15 Plastic Surgery Institute of San Francisco'),
(61126, 'https://ror.org/01b2j5886', 'en', 1, 'https://ror.org/01b2j5886 Shandong University of Political Science and Law å±±äøœę”æę³•å­¦é™¢'),
(61127, 'https://ror.org/01b3ys956', 'en', 1, 'https://ror.org/01b3ys956 Doris Miller Department of Veterans Affairs Medical Center'),
(61128, 'https://ror.org/01b4gqk18', 'de', 1, 'https://ror.org/01b4gqk18 Sana Klinikum'),
(61129, 'https://ror.org/01b9fxp59', 'es', 1, 'https://ror.org/01b9fxp59 Hospital HLA MediterrƔneo'),
(61130, 'https://ror.org/01bavmk12', 'de', 1, 'https://ror.org/01bavmk12 Poliklinik für Zahnärztliche Prothetik mit Propädeutik'),
(61131, 'https://ror.org/01bbdh545', 'en', 1, 'https://ror.org/01bbdh545 The Nurture Nature Foundation'),
(61132, 'https://ror.org/01bcv2838', 'no_lang_code', 1, 'https://ror.org/01bcv2838 Haemonetics (Netherlands)'),
(61133, 'https://ror.org/01bdtz792', 'no_lang_code', 1, 'https://ror.org/01bdtz792 Burning Rock Biotech (China)'),
(61134, 'https://ror.org/01bftyb90', 'en', 1, 'https://ror.org/01bftyb90 Hematology Oncology Consultants'),
(61135, 'https://ror.org/01bg37c61', 'no_lang_code', 1, 'https://ror.org/01bg37c61 Spaulding Clinical Research (United States)'),
(61136, 'https://ror.org/01bhvb147', 'en', 1, 'https://ror.org/01bhvb147 Critical Illness & Trauma Foundation'),
(61137, 'https://ror.org/01bm8vs30', 'no_lang_code', 1, 'https://ror.org/01bm8vs30 Hubei Bio Pharmaceutical Industry Technology Institute (China)'),
(61138, 'https://ror.org/01bn2tj09', 'en', 1, 'https://ror.org/01bn2tj09 Palm Beach Neurology'),
(61139, 'https://ror.org/01bqcrq32', 'en', 1, 'https://ror.org/01bqcrq32 Against Violence & Abuse'),
(61140, 'https://ror.org/01bqsaw31', 'en', 1, 'https://ror.org/01bqsaw31 Parkwood Institute'),
(61141, 'https://ror.org/01braxd57', 'nl', 1, 'https://ror.org/01braxd57 Stichting Warande'),
(61142, 'https://ror.org/01bs2hb43', 'en', 1, 'https://ror.org/01bs2hb43 Eye Center of North Florida'),
(61143, 'https://ror.org/01bs4z154', 'en', 1, 'https://ror.org/01bs4z154 NeuroSpine Institute'),
(61144, 'https://ror.org/01bs6bj47', 'de', 1, 'https://ror.org/01bs6bj47 BDH Bundesverband Rehabilitation'),
(61145, 'https://ror.org/01bvxq084', 'es', 1, 'https://ror.org/01bvxq084 Sociedad EspaƱola de Trombosis y Hemostasia'),
(61146, 'https://ror.org/01bx1ra43', 'en', 1, 'https://ror.org/01bx1ra43 BundesƤrztekammer German Medical Association'),
(61147, 'https://ror.org/01bxb2y87', 'en', 1, 'https://ror.org/01bxb2y87 The Core Institute'),
(61148, 'https://ror.org/01c127k53', 'en', 1, 'https://ror.org/01c127k53 Clinical Research Services'),
(61149, 'https://ror.org/01c6fkf84', 'en', 1, 'https://ror.org/01c6fkf84 National Gallery of Denmark Statens Museum for Kunst'),
(61150, 'https://ror.org/01c8z0k91', 'lv', 1, 'https://ror.org/01c8z0k91 Agroresursu un ekonomikas institūts'),
(61151, 'https://ror.org/01cabyw47', 'no_lang_code', 1, 'https://ror.org/01cabyw47 Marinomed Biotech (Austria)'),
(61152, 'https://ror.org/01cakqh38', 'no_lang_code', 1, 'https://ror.org/01cakqh38 LMC Diabetes & Endocrinology (Canada)'),
(61153, 'https://ror.org/01cbq7w74', 'it', 1, 'https://ror.org/01cbq7w74 Clinica Odontoiatrica Salzano Tirone'),
(61154, 'https://ror.org/01cbsja09', 'no_lang_code', 1, 'https://ror.org/01cbsja09 Acadia Harvest (United States)'),
(61155, 'https://ror.org/01cbz4y30', 'en', 1, 'https://ror.org/01cbz4y30 Christiana Gynecologic Oncology'),
(61156, 'https://ror.org/01ccgqb68', 'de', 1, 'https://ror.org/01ccgqb68 Dermatologie Freiburg'),
(61157, 'https://ror.org/01ck0ze30', 'en', 1, 'https://ror.org/01ck0ze30 Metropolitan Educational Cooperative Service Unit'),
(61158, 'https://ror.org/01ckbyj78', 'en', 1, 'https://ror.org/01ckbyj78 Foundation Institute for Regional Development Fundacja Instytut Rozwoju Regionalnego'),
(61159, 'https://ror.org/01ckkpd50', 'en', 1, 'https://ror.org/01ckkpd50 Orthopaedic Specialty Clinic'),
(61160, 'https://ror.org/01cn1vy21', 'no_lang_code', 1, 'https://ror.org/01cn1vy21 Empire Clinical Research (United States)'),
(61161, 'https://ror.org/01cny4f98', 'en', 1, 'https://ror.org/01cny4f98 Zhangzhou Municipal Hospital of Fujian Province ē¦å»ŗēœę¼³å·žåø‚åŒ»é™¢'),
(61162, 'https://ror.org/01cpc0e60', 'no_lang_code', 1, 'https://ror.org/01cpc0e60 Haider Bioswing (Germany)'),
(61163, 'https://ror.org/01cqbdz44', 'en', 1, 'https://ror.org/01cqbdz44 Community Health Center of Franklin County'),
(61164, 'https://ror.org/01crhqr30', 'nl', 1, 'https://ror.org/01crhqr30 Ipse de Bruggen'),
(61165, 'https://ror.org/01cs7w326', 'en', 1, 'https://ror.org/01cs7w326 NTL Institute for Applied Behavioral Science'),
(61166, 'https://ror.org/01csjxv16', 'no_lang_code', 1, 'https://ror.org/01csjxv16 Targeted Medical Pharma (United States)'),
(61167, 'https://ror.org/01ct2ab72', 'en', 1, 'https://ror.org/01ct2ab72 Angeles Clinic and Research Institute'),
(61168, 'https://ror.org/01cv0ss35', 'en', 1, 'https://ror.org/01cv0ss35 American Academy of Orthopaedic Manual Physical Therapists'),
(61169, 'https://ror.org/01cv9kh50', 'en', 1, 'https://ror.org/01cv9kh50 Southeast Nebraska Cancer Center'),
(61170, 'https://ror.org/01cwg1p04', 'en', 1, 'https://ror.org/01cwg1p04 Foundation Centrum ''45 Stichting Centrum ''45'),
(61171, 'https://ror.org/01cyatv27', 'no_lang_code', 1, 'https://ror.org/01cyatv27 CTI BioPharma (United Kingdom)'),
(61172, 'https://ror.org/01d0zv889', 'en', 1, 'https://ror.org/01d0zv889 Milton J. Rubenstein Museum of Science and Technology'),
(61173, 'https://ror.org/01d14z762', 'de', 1, 'https://ror.org/01d14z762 Forschungsinstitut der Diabetes Akademie Mergentheim'),
(61174, 'https://ror.org/01d1z3k86', 'en', 1, 'https://ror.org/01d1z3k86 Iron Disorders Institute'),
(61175, 'https://ror.org/01d2t6428', 'nl', 1, 'https://ror.org/01d2t6428 Laurens'),
(61176, 'https://ror.org/01d34f369', 'no_lang_code', 1, 'https://ror.org/01d34f369 Polnox (United States)'),
(61177, 'https://ror.org/01d7a8h40', 'en', 1, 'https://ror.org/01d7a8h40 NewPath Research'),
(61178, 'https://ror.org/01d9cfw89', 'pt', 1, 'https://ror.org/01d9cfw89 Hospital UniversitƔrio Walter Cantƭdio'),
(61179, 'https://ror.org/01dc7nx94', 'de', 1, 'https://ror.org/01dc7nx94 Luisenkrankenhaus'),
(61180, 'https://ror.org/01dd1x730', 'fr', 1, 'https://ror.org/01dd1x730 Clinique Saint Jean'),
(61181, 'https://ror.org/01ddazc14', 'de', 1, 'https://ror.org/01ddazc14 Marienkrankenhaus Kassel'),
(61182, 'https://ror.org/01ddyfs17', 'en', 1, 'https://ror.org/01ddyfs17 Group Health Centre'),
(61183, 'https://ror.org/01derjp85', 'en', 1, 'https://ror.org/01derjp85 Western Illinois Cancer Treatment Center'),
(61184, 'https://ror.org/01df9n019', 'no_lang_code', 1, 'https://ror.org/01df9n019 Applied Science Associates (United States)'),
(61185, 'https://ror.org/01dfa6f88', 'en', 1, 'https://ror.org/01dfa6f88 West Suburban Medical Center'),
(61186, 'https://ror.org/01dgzjt17', 'de', 1, 'https://ror.org/01dgzjt17 Hospital MƤrkisch-Oderland Krankenhaus MƤrkisch-Oderland'),
(61187, 'https://ror.org/01dje3226', 'en', 1, 'https://ror.org/01dje3226 The Stern Cardiovascular Foundation'),
(61188, 'https://ror.org/01dmsg505', 'en', 1, 'https://ror.org/01dmsg505 South Coast Medical Service Aboriginal Corporation'),
(61189, 'https://ror.org/01dq08926', 'nl', 1, 'https://ror.org/01dq08926 Stichting Kinderpostzegels Nederland'),
(61190, 'https://ror.org/01dszxr35', 'en', 1, 'https://ror.org/01dszxr35 American Pulse Association'),
(61191, 'https://ror.org/01dvqbe93', 'en', 1, 'https://ror.org/01dvqbe93 Children''s Health Council'),
(61192, 'https://ror.org/01dwwvh23', 'de', 1, 'https://ror.org/01dwwvh23 rgb Onkologisches Management'),
(61193, 'https://ror.org/01dyphc41', 'es', 1, 'https://ror.org/01dyphc41 Diagnostico MaipĆŗ'),
(61194, 'https://ror.org/01e0c9e09', 'en', 1, 'https://ror.org/01e0c9e09 Carolina Headache Institute'),
(61195, 'https://ror.org/01e2b1f74', 'en', 1, 'https://ror.org/01e2b1f74 Society for Vascular Surgery'),
(61196, 'https://ror.org/01e2kx306', 'no_lang_code', 1, 'https://ror.org/01e2kx306 Stichting Handbike Events'),
(61197, 'https://ror.org/01e2zk874', 'en', 1, 'https://ror.org/01e2zk874 Lymphoma Research Trust'),
(61198, 'https://ror.org/01e32p682', 'en', 1, 'https://ror.org/01e32p682 Island Resources Foundation'),
(61199, 'https://ror.org/01e38mp30', 'en', 1, 'https://ror.org/01e38mp30 Surgical Associates of Neenah'),
(61200, 'https://ror.org/01e3d3j88', 'en', 1, 'https://ror.org/01e3d3j88 Jefferson County Health Center'),
(61201, 'https://ror.org/01e542834', 'nl', 1, 'https://ror.org/01e542834 IrisZorg'),
(61202, 'https://ror.org/01e5bev19', 'no_lang_code', 1, 'https://ror.org/01e5bev19 480 Biomedical (United States)'),
(61203, 'https://ror.org/01e5m5282', 'no_lang_code', 1, 'https://ror.org/01e5m5282 Swedish Orphan Biovitrum (United States)'),
(61204, 'https://ror.org/01e5pnp05', 'en', 1, 'https://ror.org/01e5pnp05 Bloomhill Cancer Care'),
(61205, 'https://ror.org/01e98yd03', 'no_lang_code', 1, 'https://ror.org/01e98yd03 Water-Jel Technologies (United Kingdom)'),
(61206, 'https://ror.org/01eas6g83', 'en', 1, 'https://ror.org/01eas6g83 Canadian Precast Prestressed Concrete Institute'),
(61207, 'https://ror.org/01ec7fw73', 'de', 1, 'https://ror.org/01ec7fw73 Klinik und Poliklinik für Psychosomatische Medizin und Psychotherapie'),
(61208, 'https://ror.org/01ece3a48', 'en', 1, 'https://ror.org/01ece3a48 The Mayer Institute'),
(61209, 'https://ror.org/01ecxwt20', 'en', 1, 'https://ror.org/01ecxwt20 Center for Teaching Thinking'),
(61210, 'https://ror.org/01ecxzf56', 'no_lang_code', 1, 'https://ror.org/01ecxzf56 Cool Down (Switzerland)'),
(61211, 'https://ror.org/01ed1kg72', 'en', 1, 'https://ror.org/01ed1kg72 Ontario Ginseng Growers Association'),
(61212, 'https://ror.org/01ee26j42', 'ca', 1, 'https://ror.org/01ee26j42 Catalan Institute of Traumatology and Sports Medicine Institut CatalĆ  de Traumatologia i Medicina de l''Esport'),
(61213, 'https://ror.org/01efeew70', 'en', 1, 'https://ror.org/01efeew70 Vince Lombardi Cancer Clinic'),
(61214, 'https://ror.org/01ehh4g09', 'en', 1, 'https://ror.org/01ehh4g09 Metropolitan Washington Council of Governments'),
(61215, 'https://ror.org/01ej30k87', 'de', 1, 'https://ror.org/01ej30k87 Kompetenznetz Darmerkrankungen'),
(61216, 'https://ror.org/01emd7z98', 'en', 1, 'https://ror.org/01emd7z98 Asia Diabetes Foundation äŗšę“²ē³–å°æē—…åŸŗé‡‘ä¼š'),
(61217, 'https://ror.org/01erge413', 'no_lang_code', 1, 'https://ror.org/01erge413 Amedon (Germany)'),
(61218, 'https://ror.org/01erpqc93', 'nl', 1, 'https://ror.org/01erpqc93 Revalidatie Nederland'),
(61219, 'https://ror.org/01ex7e298', 'de', 1, 'https://ror.org/01ex7e298 Berufsverband der FrauenƤrzte'),
(61220, 'https://ror.org/01ezw9n40', 'de', 1, 'https://ror.org/01ezw9n40 OrthopƤdische UniversitƤtsklinik'),
(61221, 'https://ror.org/01ezxj338', 'en', 1, 'https://ror.org/01ezxj338 TAFE Queensland Gold Coast'),
(61222, 'https://ror.org/01f19gv14', 'en', 1, 'https://ror.org/01f19gv14 New York City Department for the Aging'),
(61223, 'https://ror.org/01f233332', 'en', 1, 'https://ror.org/01f233332 Asociación Mexicana para la Investigación Clínica Mexican Association for the Clinical Research'),
(61224, 'https://ror.org/01f23xx77', 'de', 1, 'https://ror.org/01f23xx77 Misereor'),
(61225, 'https://ror.org/01f2r3t53', 'en', 1, 'https://ror.org/01f2r3t53 Jinan Disabled Persons Federation'),
(61226, 'https://ror.org/01f80h865', 'no_lang_code', 1, 'https://ror.org/01f80h865 Varigen Biosciences (United States)'),
(61227, 'https://ror.org/01f8v1064', 'en', 1, 'https://ror.org/01f8v1064 Altru Health System'),
(61228, 'https://ror.org/01f8wmr43', 'en', 1, 'https://ror.org/01f8wmr43 Jacaranda Community Centre'),
(61229, 'https://ror.org/01fd5y629', 'no_lang_code', 1, 'https://ror.org/01fd5y629 Tomitahama Hospital'),
(61230, 'https://ror.org/01fdfdf14', 'en', 1, 'https://ror.org/01fdfdf14 The Econometric Society'),
(61231, 'https://ror.org/01fepwa31', 'fr', 1, 'https://ror.org/01fepwa31 Clinique du Sport'),
(61232, 'https://ror.org/01ffp9w12', 'en', 1, 'https://ror.org/01ffp9w12 Schwartz Laser Eye Center'),
(61233, 'https://ror.org/01fg1c160', 'en', 1, 'https://ror.org/01fg1c160 Association of Black Cardiologists'),
(61234, 'https://ror.org/01fhhqb25', 'en', 1, 'https://ror.org/01fhhqb25 Albert Einstein Academy'),
(61235, 'https://ror.org/01fjcp824', 'en', 1, 'https://ror.org/01fjcp824 Tasmania Mures'),
(61236, 'https://ror.org/01fmvjf05', 'no_lang_code', 1, 'https://ror.org/01fmvjf05 Curetis (Germany)'),
(61237, 'https://ror.org/01fnh4d22', 'en', 1, 'https://ror.org/01fnh4d22 Hazleton Eye Specialists'),
(61238, 'https://ror.org/01fqh9j23', 'en', 1, 'https://ror.org/01fqh9j23 Elmhurst Memorial Hospital'),
(61239, 'https://ror.org/01fqyr702', 'nl', 1, 'https://ror.org/01fqyr702 De Twentse Zorgcentra'),
(61240, 'https://ror.org/01fr3sh36', 'en', 1, 'https://ror.org/01fr3sh36 Beebe Healthcare'),
(61241, 'https://ror.org/01frh6r56', 'no_lang_code', 1, 'https://ror.org/01frh6r56 Seguros Caracas Liberty Mutual (Venezuela)'),
(61242, 'https://ror.org/01fse5k28', 'en', 1, 'https://ror.org/01fse5k28 Eesti Siseministeerium Ministry of the Interior'),
(61243, 'https://ror.org/01fsqmr25', 'no_lang_code', 1, 'https://ror.org/01fsqmr25 CrossLife Technologies (United States)'),
(61244, 'https://ror.org/01fsv3111', 'no_lang_code', 1, 'https://ror.org/01fsv3111 Health Fidelity (United States)'),
(61245, 'https://ror.org/01fw4cw44', 'en', 1, 'https://ror.org/01fw4cw44 Transcare'),
(61246, 'https://ror.org/01fyfmc75', 'es', 1, 'https://ror.org/01fyfmc75 Instituto MƩdico DAMIC'),
(61247, 'https://ror.org/01fytb163', 'no_lang_code', 1, 'https://ror.org/01fytb163 Ciclo de Mutação (Brazil)'),
(61248, 'https://ror.org/01g06kj70', 'no_lang_code', 1, 'https://ror.org/01g06kj70 Clinstile (Mexico)'),
(61249, 'https://ror.org/01g0k2717', 'en', 1, 'https://ror.org/01g0k2717 Israeli Yoga Teachers Association ××Ø×’×•×Ÿ ×ž×•×Ø×™ היוגה ×‘×™×©×Ø××œ'),
(61250, 'https://ror.org/01g0kzv83', 'no_lang_code', 1, 'https://ror.org/01g0kzv83 Biosearch Life (Spain)'),
(61251, 'https://ror.org/01g15q926', 'no_lang_code', 1, 'https://ror.org/01g15q926 Origin Sciences (United Kingdom)'),
(61252, 'https://ror.org/01g1xp238', 'en', 1, 'https://ror.org/01g1xp238 Western Rock Lobster Council'),
(61253, 'https://ror.org/01g373s33', 'en', 1, 'https://ror.org/01g373s33 International Hyperbaric Medical Foundation'),
(61254, 'https://ror.org/01g4c0s50', 'no_lang_code', 1, 'https://ror.org/01g4c0s50 Digital Artefacts (United States)'),
(61255, 'https://ror.org/01g4e8585', 'en', 1, 'https://ror.org/01g4e8585 Andalusian Institute of Sexology and Psychology Instituto Andaluz de SexologĆ­a y PsicologĆ­a'),
(61256, 'https://ror.org/01g4jev56', 'no_lang_code', 1, 'https://ror.org/01g4jev56 Philips (Finland) Philips Oy'),
(61257, 'https://ror.org/01g62gh72', 'en', 1, 'https://ror.org/01g62gh72 Buehler Challenger & Science Center'),
(61258, 'https://ror.org/01g6k1070', 'en', 1, 'https://ror.org/01g6k1070 HighScope'),
(61259, 'https://ror.org/01g6xse81', 'no_lang_code', 1, 'https://ror.org/01g6xse81 Altasciences (Canada)'),
(61260, 'https://ror.org/01g73y611', 'en', 1, 'https://ror.org/01g73y611 Jones Institute'),
(61261, 'https://ror.org/01g7wf911', 'en', 1, 'https://ror.org/01g7wf911 Manhattan Physical Medicine and Rehabilitation'),
(61262, 'https://ror.org/01g868933', 'no_lang_code', 1, 'https://ror.org/01g868933 The Johrei Institute'),
(61263, 'https://ror.org/01ga08073', 'en', 1, 'https://ror.org/01ga08073 Saint Alphonsus Medical Center'),
(61264, 'https://ror.org/01gcrbc43', 'en', 1, 'https://ror.org/01gcrbc43 Center for Human Genetics'),
(61265, 'https://ror.org/01gdexd83', 'en', 1, 'https://ror.org/01gdexd83 Clinica Gastrobese'),
(61266, 'https://ror.org/01gg7gz51', 'en', 1, 'https://ror.org/01gg7gz51 Institute for Community Health'),
(61267, 'https://ror.org/01gm5fk44', 'de', 1, 'https://ror.org/01gm5fk44 Informationszentrum für Sexualität und Gesundheit'),
(61268, 'https://ror.org/01gmqt203', 'en', 1, 'https://ror.org/01gmqt203 Mental Health Foundation'),
(61269, 'https://ror.org/01gqah619', 'en', 1, 'https://ror.org/01gqah619 Guangxi Buffalo Research Institute'),
(61270, 'https://ror.org/01gsv1y98', 'no_lang_code', 1, 'https://ror.org/01gsv1y98 Vimta (India)'),
(61271, 'https://ror.org/01gw2gb17', 'fr', 1, 'https://ror.org/01gw2gb17 SociƩtƩ FranƧaise d''Endoscopie Digestive'),
(61272, 'https://ror.org/01gxkhe25', 'no_lang_code', 1, 'https://ror.org/01gxkhe25 Lumos Labs (United States)'),
(61273, 'https://ror.org/01gxyxa13', 'en', 1, 'https://ror.org/01gxyxa13 Setting Scoliosis Straight Foundation'),
(61274, 'https://ror.org/01gy2bm93', 'no_lang_code', 1, 'https://ror.org/01gy2bm93 VDL Groep (Netherlands)'),
(61275, 'https://ror.org/01gycem28', 'pt', 1, 'https://ror.org/01gycem28 Dermatological Center Dona Libânia Instituto de Dermatologia Dona Libania'),
(61276, 'https://ror.org/01h0pkb03', 'no_lang_code', 1, 'https://ror.org/01h0pkb03 MizMedi Hospital'),
(61277, 'https://ror.org/01h0snt56', 'no_lang_code', 1, 'https://ror.org/01h0snt56 Emmedi (Italy)'),
(61278, 'https://ror.org/01h5tah83', 'en', 1, 'https://ror.org/01h5tah83 Alliance Against Diabetes'),
(61279, 'https://ror.org/01h6pad21', 'de', 1, 'https://ror.org/01h6pad21 Psychologische Praxengemeinschaft'),
(61280, 'https://ror.org/01h90nm51', 'en', 1, 'https://ror.org/01h90nm51 Marine Discovery Centre'),
(61281, 'https://ror.org/01ha8kc92', 'en', 1, 'https://ror.org/01ha8kc92 Waverly Hematology Oncology'),
(61282, 'https://ror.org/01hd27x96', 'de', 1, 'https://ror.org/01hd27x96 Deutsche Gesellschaft für Psychoanalyse, Psychotherapie, Psychosomatik und Tiefenpsychologie'),
(61283, 'https://ror.org/01hf1z671', 'no_lang_code', 1, 'https://ror.org/01hf1z671 LIV Pharma (Germany)'),
(61284, 'https://ror.org/01hf2y314', 'pt', 1, 'https://ror.org/01hf2y314 Instituto de Cardiologia do Distrito Federal'),
(61285, 'https://ror.org/01hfvmc98', 'no_lang_code', 1, 'https://ror.org/01hfvmc98 Akervall Technologies (United States)'),
(61286, 'https://ror.org/01hga1v29', 'en', 1, 'https://ror.org/01hga1v29 New Brunswick Pharmacists’ Association'),
(61287, 'https://ror.org/01hgadp56', 'en', 1, 'https://ror.org/01hgadp56 ALS Finding a Cure'),
(61288, 'https://ror.org/01hgbws94', 'en', 1, 'https://ror.org/01hgbws94 St. Catherine Hospital'),
(61289, 'https://ror.org/01hhggr08', 'en', 1, 'https://ror.org/01hhggr08 Humboldt Independent Practice Association'),
(61290, 'https://ror.org/01hkxy133', 'es', 1, 'https://ror.org/01hkxy133 Sociedad Española de Periodoncia y Osteointegración'),
(61291, 'https://ror.org/01hpbbx98', 'fr', 1, 'https://ror.org/01hpbbx98 AcadƩmie de Paris'),
(61292, 'https://ror.org/01hpypq56', 'en', 1, 'https://ror.org/01hpypq56 Angeline Elizabeth Kirby Memorial Health Center'),
(61293, 'https://ror.org/01hq5vx73', 'en', 1, 'https://ror.org/01hq5vx73 Irish Nutrition & Dietetic Institute'),
(61294, 'https://ror.org/01htfbe02', 'en', 1, 'https://ror.org/01htfbe02 Sight and Life'),
(61295, 'https://ror.org/01hyc1n91', 'no_lang_code', 1, 'https://ror.org/01hyc1n91 Roche (Czechia)'),
(61296, 'https://ror.org/01hz8zy20', 'en', 1, 'https://ror.org/01hz8zy20 Los Angeles Council of Black Professional Engineers'),
(61297, 'https://ror.org/01hzc1b78', 'en', 1, 'https://ror.org/01hzc1b78 Inamed'),
(61298, 'https://ror.org/01hzh7w96', 'en', 1, 'https://ror.org/01hzh7w96 University Industry Demonstration Partnership'),
(61299, 'https://ror.org/01j0j2s89', 'nl', 1, 'https://ror.org/01j0j2s89 Zeeuws Hand & Pols Centrum'),
(61300, 'https://ror.org/01j15gd68', 'en', 1, 'https://ror.org/01j15gd68 Erie Family Health Center'),
(61301, 'https://ror.org/01j2f9q17', 'en', 1, 'https://ror.org/01j2f9q17 TerrainWorks'),
(61302, 'https://ror.org/01j5rwt89', 'en', 1, 'https://ror.org/01j5rwt89 Influenza Foundation of Thailand ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ąøŖą¹ˆąø‡ą¹€ąøŖąø“ąø£ąø”ąøąø²ąø£ąøØąø¶ąøąø©ąø²ą¹„ąø‚ą¹‰ąø«ąø§ąø±ąø”ą¹ƒąø«ąøą¹ˆ'),
(61303, 'https://ror.org/01j6p1p64', 'no_lang_code', 1, 'https://ror.org/01j6p1p64 Alimera Sciences (Germany)'),
(61304, 'https://ror.org/01j811c15', 'en', 1, 'https://ror.org/01j811c15 German Inflammatory Bowel Diseases Study Group'),
(61305, 'https://ror.org/01jbeyb43', 'en', 1, 'https://ror.org/01jbeyb43 SPRINT'),
(61306, 'https://ror.org/01jeebd83', 'en', 1, 'https://ror.org/01jeebd83 Rochester Engineering Society'),
(61307, 'https://ror.org/01jekr004', 'de', 1, 'https://ror.org/01jekr004 Centrum für Operative Urologie Bremen'),
(61308, 'https://ror.org/01jfd9z49', 'en', 1, 'https://ror.org/01jfd9z49 Zhengzhou Children''s Hospital ę²³å—ēœå„æē«„åŒ»é™¢'),
(61309, 'https://ror.org/01jgxbq59', 'en', 1, 'https://ror.org/01jgxbq59 AlterMed Research Foundation'),
(61310, 'https://ror.org/01jj3v002', 'en', 1, 'https://ror.org/01jj3v002 Austin Speech Labs'),
(61311, 'https://ror.org/01jkda844', 'en', 1, 'https://ror.org/01jkda844 West Cancer Center'),
(61312, 'https://ror.org/01jm7yc11', 'no_lang_code', 1, 'https://ror.org/01jm7yc11 KCI (Netherlands)'),
(61313, 'https://ror.org/01jngdt03', 'en', 1, 'https://ror.org/01jngdt03 Genetic Information Research Institute'),
(61314, 'https://ror.org/01jrr6c68', 'en', 1, 'https://ror.org/01jrr6c68 Springfield Regional Medical Center'),
(61315, 'https://ror.org/01jrsap74', 'nl', 1, 'https://ror.org/01jrsap74 Stichting De Opbouw');
INSERT INTO `rors` VALUES
(61316, 'https://ror.org/01jscks03', 'en', 1, 'https://ror.org/01jscks03 Clinical Alliance for Research and Education-Infectious Diseases'),
(61317, 'https://ror.org/01jt2k297', 'no_lang_code', 1, 'https://ror.org/01jt2k297 MaxQ (United States)'),
(61318, 'https://ror.org/01jtjrm75', 'no_lang_code', 1, 'https://ror.org/01jtjrm75 Provivi (United States)'),
(61319, 'https://ror.org/01jv6d279', 'en', 1, 'https://ror.org/01jv6d279 Vidant Beaufort Hospital'),
(61320, 'https://ror.org/01jw20968', 'no_lang_code', 1, 'https://ror.org/01jw20968 Orochemie (Germany)'),
(61321, 'https://ror.org/01jxkq910', 'no_lang_code', 1, 'https://ror.org/01jxkq910 Glaxosmithkline (Finland)'),
(61322, 'https://ror.org/01jygxx11', 'no_lang_code', 1, 'https://ror.org/01jygxx11 ThedaCare'),
(61323, 'https://ror.org/01jykf083', 'en', 1, 'https://ror.org/01jykf083 The Seattle Institute for Cardiac Research'),
(61324, 'https://ror.org/01k1j7593', 'en', 1, 'https://ror.org/01k1j7593 Highlands Oncology Group'),
(61325, 'https://ror.org/01k2ap794', 'nl', 1, 'https://ror.org/01k2ap794 Stichting Zorgondersteuningsfonds'),
(61326, 'https://ror.org/01k4dy133', 'no_lang_code', 1, 'https://ror.org/01k4dy133 TheraTears (United States)'),
(61327, 'https://ror.org/01k7ze855', 'no_lang_code', 1, 'https://ror.org/01k7ze855 Novasep (Belgium)'),
(61328, 'https://ror.org/01k9v9b21', 'en', 1, 'https://ror.org/01k9v9b21 Indianapolis Zoo'),
(61329, 'https://ror.org/01kb5b139', 'no_lang_code', 1, 'https://ror.org/01kb5b139 Rite Aid (United States)'),
(61330, 'https://ror.org/01kbfg076', 'en', 1, 'https://ror.org/01kbfg076 American Water Resources Association'),
(61331, 'https://ror.org/01kc06n62', 'no_lang_code', 1, 'https://ror.org/01kc06n62 Vantage View (United States)'),
(61332, 'https://ror.org/01kd1b507', 'no_lang_code', 1, 'https://ror.org/01kd1b507 Sunstream Scientific (United States)'),
(61333, 'https://ror.org/01kdwe889', 'no_lang_code', 1, 'https://ror.org/01kdwe889 Juzo (Germany)'),
(61334, 'https://ror.org/01kebx220', 'en', 1, 'https://ror.org/01kebx220 Clinical Research Organization'),
(61335, 'https://ror.org/01kfnjv17', 'en', 1, 'https://ror.org/01kfnjv17 Kunming Metallurgical Research Institute ę˜†ę˜Žå†¶é‡‘ē ”ē©¶ę‰€'),
(61336, 'https://ror.org/01khddn76', 'en', 1, 'https://ror.org/01khddn76 Conquer Chiari'),
(61337, 'https://ror.org/01kjnq750', 'en', 1, 'https://ror.org/01kjnq750 Atrium Medical Cente'),
(61338, 'https://ror.org/01kkh1557', 'en', 1, 'https://ror.org/01kkh1557 Miami Dermatology and Laser Institute'),
(61339, 'https://ror.org/01kkj4786', 'de', 1, 'https://ror.org/01kkj4786 BARMER GEK'),
(61340, 'https://ror.org/01kkp5g91', 'es', 1, 'https://ror.org/01kkp5g91 Grupo Español de CÔncer de Pulmón'),
(61341, 'https://ror.org/01kmd8x15', 'nl', 1, 'https://ror.org/01kmd8x15 Oostvaarderskliniek'),
(61342, 'https://ror.org/01kmtg526', 'en', 1, 'https://ror.org/01kmtg526 Children’s Institute'),
(61343, 'https://ror.org/01kn25t14', 'en', 1, 'https://ror.org/01kn25t14 Korean Society of Interventional Cardiology ėŒ€ķ•œģ‹¬ķ˜ˆź“€ģ¤‘ģž¬ķ•™ķšŒ'),
(61344, 'https://ror.org/01kn5qq40', 'en', 1, 'https://ror.org/01kn5qq40 Maruyama Memorial General Hospital äøøå±±čØ˜åæµē·åˆē—…é™¢'),
(61345, 'https://ror.org/01kn7pj21', 'fr', 1, 'https://ror.org/01kn7pj21 Association pour la Recherche en Physiologie de l’Environnement'),
(61346, 'https://ror.org/01kpv7172', 'en', 1, 'https://ror.org/01kpv7172 Saviour Hospital'),
(61347, 'https://ror.org/01kq0a723', 'it', 1, 'https://ror.org/01kq0a723 CINFAI, Consorzio Interuniversitario Nazionale per la Fisica delle Atmosfere e delle Idrosfere'),
(61348, 'https://ror.org/01kqrgb09', 'en', 1, 'https://ror.org/01kqrgb09 Banner Thunderbird Medical Center'),
(61349, 'https://ror.org/01kr18419', 'en', 1, 'https://ror.org/01kr18419 Middle East Institute'),
(61350, 'https://ror.org/01kr22f12', 'en', 1, 'https://ror.org/01kr22f12 Tianjin Product Quality Supervision and Testing Technology Institute å¤©ę“„äŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒęŠ€ęœÆē ”ē©¶ę‰€'),
(61351, 'https://ror.org/01krara14', 'en', 1, 'https://ror.org/01krara14 Metropolitan Jewish Health System'),
(61352, 'https://ror.org/01krbfc31', 'en', 1, 'https://ror.org/01krbfc31 Tennessee Cancer Specialists'),
(61353, 'https://ror.org/01krfgm39', 'en', 1, 'https://ror.org/01krfgm39 Alabama Clincal Therapeutics'),
(61354, 'https://ror.org/01ks64q75', 'no_lang_code', 1, 'https://ror.org/01ks64q75 BIRR (Netherlands)'),
(61355, 'https://ror.org/01kwfx619', 'en', 1, 'https://ror.org/01kwfx619 Second Hospital of Tangshan'),
(61356, 'https://ror.org/01kxhkq76', 'en', 1, 'https://ror.org/01kxhkq76 Mary Greeley Medical Center'),
(61357, 'https://ror.org/01m0gv380', 'nl', 1, 'https://ror.org/01m0gv380 GGz centraal'),
(61358, 'https://ror.org/01m15jk16', 'no_lang_code', 1, 'https://ror.org/01m15jk16 Maywufa (Taiwan)'),
(61359, 'https://ror.org/01m1xx561', 'en', 1, 'https://ror.org/01m1xx561 Taizhou Fourth People''s Hospital ęø©å²­åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(61360, 'https://ror.org/01m3r9s26', 'en', 1, 'https://ror.org/01m3r9s26 The Tor Project'),
(61361, 'https://ror.org/01m5a8633', 'en', 1, 'https://ror.org/01m5a8633 Alaska Women''s Cancer Care'),
(61362, 'https://ror.org/01m5aac17', 'no_lang_code', 1, 'https://ror.org/01m5aac17 Ypsomed (Germany)'),
(61363, 'https://ror.org/01m5mwt22', 'de', 1, 'https://ror.org/01m5mwt22 Asklepios Fachklinikum Tiefenbrunn'),
(61364, 'https://ror.org/01m92rg76', 'ro', 1, 'https://ror.org/01m92rg76 Institutul Oncologic din Republica Moldova Oncological Institute of the Republic of Moldova'),
(61365, 'https://ror.org/01m9bke74', 'en', 1, 'https://ror.org/01m9bke74 State Clinical Hospital "Clinical Oncology Center No. 1'),
(61366, 'https://ror.org/01m9n6c96', 'en', 1, 'https://ror.org/01m9n6c96 National Science & Technology Education Partnership'),
(61367, 'https://ror.org/01mgbxm56', 'nl', 1, 'https://ror.org/01mgbxm56 Kliniek voor Parodontologie Rotterdam'),
(61368, 'https://ror.org/01mgtdr23', 'no_lang_code', 1, 'https://ror.org/01mgtdr23 Baxter (France)'),
(61369, 'https://ror.org/01mhc8r12', 'no_lang_code', 1, 'https://ror.org/01mhc8r12 Santen (Finland)'),
(61370, 'https://ror.org/01mj0ma27', 'en', 1, 'https://ror.org/01mj0ma27 Orlando Science Center'),
(61371, 'https://ror.org/01mjp5v83', 'en', 1, 'https://ror.org/01mjp5v83 South Jordan Health Center'),
(61372, 'https://ror.org/01mkr0b50', 'no_lang_code', 1, 'https://ror.org/01mkr0b50 InsightFinder (United States)'),
(61373, 'https://ror.org/01mm9kz68', 'no_lang_code', 1, 'https://ror.org/01mm9kz68 GD Medical Pharma (Netherlands)'),
(61374, 'https://ror.org/01mn8sk35', 'en', 1, 'https://ror.org/01mn8sk35 Presbyterian Kaseman Hospital'),
(61375, 'https://ror.org/01mp0e364', 'de', 1, 'https://ror.org/01mp0e364 Infektionsmedizinisches Centrum Hamburg'),
(61376, 'https://ror.org/01mpr3h03', 'en', 1, 'https://ror.org/01mpr3h03 University Diagnostic Institute'),
(61377, 'https://ror.org/01mr7bg63', 'en', 1, 'https://ror.org/01mr7bg63 The Women’s Imaging Center'),
(61378, 'https://ror.org/01mvtpp50', 'de', 1, 'https://ror.org/01mvtpp50 Arbeitsgemeinschaft für Krebsbekämpfung'),
(61379, 'https://ror.org/01mwa8226', 'en', 1, 'https://ror.org/01mwa8226 SEAMEO Regional Center for Food and Nutrition'),
(61380, 'https://ror.org/01mwnbk39', 'en', 1, 'https://ror.org/01mwnbk39 Kaiser Permanente Modesto Medical Center and Medical Offices'),
(61381, 'https://ror.org/01mxmb797', 'en', 1, 'https://ror.org/01mxmb797 Stockholm Environment Institute'),
(61382, 'https://ror.org/01mz87517', 'no_lang_code', 1, 'https://ror.org/01mz87517 BioInspira (United States)'),
(61383, 'https://ror.org/01mze9517', 'it', 1, 'https://ror.org/01mze9517 Istituto di Ematologia di Bologna'),
(61384, 'https://ror.org/01mzwmh52', 'en', 1, 'https://ror.org/01mzwmh52 British Columbia Rehabilitation Foundation'),
(61385, 'https://ror.org/01n46fg04', 'en', 1, 'https://ror.org/01n46fg04 Everglades Area Health Education Center'),
(61386, 'https://ror.org/01n4hxm67', 'en', 1, 'https://ror.org/01n4hxm67 Interuniversitair Centrum voor Onderwijswetenschappen Interuniversity Center for Educational Research'),
(61387, 'https://ror.org/01n51hq73', 'en', 1, 'https://ror.org/01n51hq73 Self Regional Healthcare'),
(61388, 'https://ror.org/01n5xv175', 'en', 1, 'https://ror.org/01n5xv175 China Metallurgical Geology Bureau'),
(61389, 'https://ror.org/01n69pc33', 'de', 1, 'https://ror.org/01n69pc33 Instand'),
(61390, 'https://ror.org/01n8j6z65', 'en', 1, 'https://ror.org/01n8j6z65 Deutsches Zentrum für Hochschul- und Wissenschaftsforschung German Centre for Higher Education Research and Science Studies'),
(61391, 'https://ror.org/01n8pm979', 'no_lang_code', 1, 'https://ror.org/01n8pm979 Insta (Finland)'),
(61392, 'https://ror.org/01n95cx06', 'no_lang_code', 1, 'https://ror.org/01n95cx06 Chugai Pharma (United States)'),
(61393, 'https://ror.org/01nb8yv40', 'no_lang_code', 1, 'https://ror.org/01nb8yv40 Histogen (United States)'),
(61394, 'https://ror.org/01ncapf89', 'en', 1, 'https://ror.org/01ncapf89 Healthpoint'),
(61395, 'https://ror.org/01ncxv941', 'en', 1, 'https://ror.org/01ncxv941 St. Petersburg State Medical Academy "City Hospital No. 26"'),
(61396, 'https://ror.org/01ne3xe80', 'de', 1, 'https://ror.org/01ne3xe80 Ƅrztliche Gesellschaft zur Gesundheitsfƶrderung e.V'),
(61397, 'https://ror.org/01nhpc584', 'en', 1, 'https://ror.org/01nhpc584 Huther Doyle'),
(61398, 'https://ror.org/01nhpee59', 'en', 1, 'https://ror.org/01nhpee59 European Society for Intravenous Anaesthesia'),
(61399, 'https://ror.org/01nqn2b57', 'no_lang_code', 1, 'https://ror.org/01nqn2b57 SocraTec R&D (Germany)'),
(61400, 'https://ror.org/01nsbm866', 'en', 1, 'https://ror.org/01nsbm866 Moscow Research and Clinical Center for Neuropsychiatry'),
(61401, 'https://ror.org/01nsg2f90', 'nl', 1, 'https://ror.org/01nsg2f90 Robuust'),
(61402, 'https://ror.org/01nsm8h24', 'no_lang_code', 1, 'https://ror.org/01nsm8h24 Physical Devices (United States)'),
(61403, 'https://ror.org/01ntyhv86', 'en', 1, 'https://ror.org/01ntyhv86 Prostate Institute of America'),
(61404, 'https://ror.org/01nvbq395', 'en', 1, 'https://ror.org/01nvbq395 Food for Health Ireland'),
(61405, 'https://ror.org/01nw4gp55', 'en', 1, 'https://ror.org/01nw4gp55 Canadian Society of Intestinal Research'),
(61406, 'https://ror.org/01nw8jb24', 'en', 1, 'https://ror.org/01nw8jb24 Aim Foundation'),
(61407, 'https://ror.org/01nwbp351', 'de', 1, 'https://ror.org/01nwbp351 Nierenzentrum Heidelberg'),
(61408, 'https://ror.org/01nxgpa50', 'nl', 1, 'https://ror.org/01nxgpa50 Stofberg Preventie & Coaching'),
(61409, 'https://ror.org/01nxgy670', 'no_lang_code', 1, 'https://ror.org/01nxgy670 Welzijnservices (Netherlands)'),
(61410, 'https://ror.org/01nxxp011', 'de', 1, 'https://ror.org/01nxxp011 Klinik und Poliklinik für Psychosomatische Medizin und Psychotherapie'),
(61411, 'https://ror.org/01nz0vz73', 'en', 1, 'https://ror.org/01nz0vz73 FamilieSCN2A Foundation'),
(61412, 'https://ror.org/01nzrnn89', 'nl', 1, 'https://ror.org/01nzrnn89 Vanboeijen'),
(61413, 'https://ror.org/01p02as95', 'it', 1, 'https://ror.org/01p02as95 Istituto Europeo per la Medicina Osteopatica'),
(61414, 'https://ror.org/01p0ze617', 'de', 1, 'https://ror.org/01p0ze617 Sankt Gertrauden Krankenhaus'),
(61415, 'https://ror.org/01p1gwk51', 'da', 1, 'https://ror.org/01p1gwk51 Landsforeningen VƦrn om Synet, Ƙjenforeningen'),
(61416, 'https://ror.org/01p3c7261', 'en', 1, 'https://ror.org/01p3c7261 The Peter and Elizabeth C. Tower Foundation'),
(61417, 'https://ror.org/01p47g940', 'es', 1, 'https://ror.org/01p47g940 Fundación Huésped'),
(61418, 'https://ror.org/01p4cs333', 'en', 1, 'https://ror.org/01p4cs333 Saskatoon Medical Imaging'),
(61419, 'https://ror.org/01p4er784', 'en', 1, 'https://ror.org/01p4er784 Kawerak'),
(61420, 'https://ror.org/01p78m944', 'en', 1, 'https://ror.org/01p78m944 Dominican Women''s Development Center'),
(61421, 'https://ror.org/01p894e02', 'en', 1, 'https://ror.org/01p894e02 Institute of Health Visiting'),
(61422, 'https://ror.org/01p9emh29', 'no_lang_code', 1, 'https://ror.org/01p9emh29 AXON Neuroscience (Cyprus)'),
(61423, 'https://ror.org/01pa6t272', 'no_lang_code', 1, 'https://ror.org/01pa6t272 Abbott (Austria)'),
(61424, 'https://ror.org/01pagm392', 'en', 1, 'https://ror.org/01pagm392 Valmontone Hospital'),
(61425, 'https://ror.org/01pbcje80', 'en', 1, 'https://ror.org/01pbcje80 Key-Whitman Eye Center'),
(61426, 'https://ror.org/01pf0ts81', 'no_lang_code', 1, 'https://ror.org/01pf0ts81 Addex Therapeutics (Switzerland)'),
(61427, 'https://ror.org/01pk0nx86', 'en', 1, 'https://ror.org/01pk0nx86 Retina Specialty Institute'),
(61428, 'https://ror.org/01pndgw26', 'de', 1, 'https://ror.org/01pndgw26 Klinik und Poliklinik für Hals-Nasen-Ohren-Heilkunde'),
(61429, 'https://ror.org/01pne6c96', 'no_lang_code', 1, 'https://ror.org/01pne6c96 Dar AlMaraa Center'),
(61430, 'https://ror.org/01prj4323', 'de', 1, 'https://ror.org/01prj4323 Regio Kliniken'),
(61431, 'https://ror.org/01pt05f05', 'en', 1, 'https://ror.org/01pt05f05 The Living Legacy Foundation'),
(61432, 'https://ror.org/01pt9mg14', 'en', 1, 'https://ror.org/01pt9mg14 MidMichigan Medical Center - Midland'),
(61433, 'https://ror.org/01pwcqj21', 'no_lang_code', 1, 'https://ror.org/01pwcqj21 Columbia Shipmanagement (Germany)'),
(61434, 'https://ror.org/01pwm0502', 'en', 1, 'https://ror.org/01pwm0502 Canadian VIGOUR Centre'),
(61435, 'https://ror.org/01pwq1j60', 'no_lang_code', 1, 'https://ror.org/01pwq1j60 N2 Biomedical (United States)'),
(61436, 'https://ror.org/01pxs4m78', 'en', 1, 'https://ror.org/01pxs4m78 Association of Gynaecologists and Obstetricians'),
(61437, 'https://ror.org/01pyacx21', 'en', 1, 'https://ror.org/01pyacx21 Rogers Behavioral Health'),
(61438, 'https://ror.org/01pyv5j09', 'en', 1, 'https://ror.org/01pyv5j09 American Pistachio Growers'),
(61439, 'https://ror.org/01pyynr06', 'it', 1, 'https://ror.org/01pyynr06 SIOTEMA'),
(61440, 'https://ror.org/01q00j872', 'en', 1, 'https://ror.org/01q00j872 HipKnee Arkansas Foundation'),
(61441, 'https://ror.org/01q02kv80', 'en', 1, 'https://ror.org/01q02kv80 Foundation for Faces of Children'),
(61442, 'https://ror.org/01q2pxs68', 'en', 1, 'https://ror.org/01q2pxs68 Vinmec International Hospital'),
(61443, 'https://ror.org/01q3wpv10', 'en', 1, 'https://ror.org/01q3wpv10 St. Mark''s School of Texas'),
(61444, 'https://ror.org/01q428f30', 'no_lang_code', 1, 'https://ror.org/01q428f30 Cesra (Germany)'),
(61445, 'https://ror.org/01q8w7b22', 'no_lang_code', 1, 'https://ror.org/01q8w7b22 Mimetogen (United States)'),
(61446, 'https://ror.org/01q9c7s07', 'en', 1, 'https://ror.org/01q9c7s07 Kaiser Permanente Richmond Medical Center'),
(61447, 'https://ror.org/01qdk5035', 'en', 1, 'https://ror.org/01qdk5035 Whiteley Clinic'),
(61448, 'https://ror.org/01qkbtc88', 'no_lang_code', 1, 'https://ror.org/01qkbtc88 CVRx (United States)'),
(61449, 'https://ror.org/01qsyak13', 'nl', 1, 'https://ror.org/01qsyak13 Dianet'),
(61450, 'https://ror.org/01qtkgt88', 'en', 1, 'https://ror.org/01qtkgt88 Beijing Municipal Commission of Urban Planning åŒ—äŗ¬åø‚č§„åˆ’å’Œå›½åœŸčµ„ęŗē®”ē†å§”å‘˜ä¼š'),
(61451, 'https://ror.org/01qts1d13', 'en', 1, 'https://ror.org/01qts1d13 St. Mary''s Hospital Medical Center'),
(61452, 'https://ror.org/01qtxzw29', 'en', 1, 'https://ror.org/01qtxzw29 Kentuckiana Pulmonary Associates'),
(61453, 'https://ror.org/01qvdp131', 'no_lang_code', 1, 'https://ror.org/01qvdp131 Solace Therapeutics (United States)'),
(61454, 'https://ror.org/01qwf4k77', 'en', 1, 'https://ror.org/01qwf4k77 Jiangsu Province Blood Center ę±Ÿč‹ēœč”€ę¶²äø­åæƒ'),
(61455, 'https://ror.org/01qwfvp91', 'no_lang_code', 1, 'https://ror.org/01qwfvp91 Orthogen (Germany)'),
(61456, 'https://ror.org/01qwms897', 'en', 1, 'https://ror.org/01qwms897 Bernstein Clinical Research Center'),
(61457, 'https://ror.org/01qx93189', 'en', 1, 'https://ror.org/01qx93189 Amateur Fishermen''s Association of the Northern Territory'),
(61458, 'https://ror.org/01qyj3s68', 'en', 1, 'https://ror.org/01qyj3s68 Koninklijke Nederlandse Atletiek Unie Royal Dutch Athletics Federation'),
(61459, 'https://ror.org/01qyj4j90', 'en', 1, 'https://ror.org/01qyj4j90 CityLab010'),
(61460, 'https://ror.org/01r157087', 'en', 1, 'https://ror.org/01r157087 Orthopaedic Specialty Institute'),
(61461, 'https://ror.org/01r2vqh34', 'en', 1, 'https://ror.org/01r2vqh34 North Carolina Office of the Governor'),
(61462, 'https://ror.org/01r32p017', 'en', 1, 'https://ror.org/01r32p017 North Texas Regional Center for Innovation and Commercialization'),
(61463, 'https://ror.org/01r34sc48', 'en', 1, 'https://ror.org/01r34sc48 Philippine Medical Association'),
(61464, 'https://ror.org/01r4eh644', 'en', 1, 'https://ror.org/01r4eh644 Lunar and Planetary Institute'),
(61465, 'https://ror.org/01r4qbv69', 'en', 1, 'https://ror.org/01r4qbv69 Patras Olympian Hospital ĪŸĪ»ĻĪ¼Ļ€Ī¹ĪæĪ½ Ī˜ĪµĻĪ±Ļ€ĪµĻ…Ļ„Ī®ĻĪ¹Īæ Πάτρας'),
(61466, 'https://ror.org/01r74wp43', 'no_lang_code', 1, 'https://ror.org/01r74wp43 Syneos Health (United States)'),
(61467, 'https://ror.org/01r8yv121', 'en', 1, 'https://ror.org/01r8yv121 Research & Development Institute'),
(61468, 'https://ror.org/01rd68671', 'en', 1, 'https://ror.org/01rd68671 Mae Fah Luang University Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąø”ą¹ˆąøŸą¹‰ąø²ąø«ąø„ąø§ąø‡'),
(61469, 'https://ror.org/01rdp0h57', 'en', 1, 'https://ror.org/01rdp0h57 Gansu Provincial Agriculture and Animal Husbandry'),
(61470, 'https://ror.org/01rfvvq43', 'no_lang_code', 1, 'https://ror.org/01rfvvq43 Boston Scientific (Germany)'),
(61471, 'https://ror.org/01rhjvw42', 'no_lang_code', 1, 'https://ror.org/01rhjvw42 NewConceptOncology (Germany)'),
(61472, 'https://ror.org/01rjdjc72', 'en', 1, 'https://ror.org/01rjdjc72 Olberon (United Kingdom)'),
(61473, 'https://ror.org/01rsq7s41', 'no_lang_code', 1, 'https://ror.org/01rsq7s41 JT Pharmaceuticals (United States)'),
(61474, 'https://ror.org/01rsw3c42', 'pt', 1, 'https://ror.org/01rsw3c42 Fundação Bahiana de Infectologia'),
(61475, 'https://ror.org/01rxc2g24', 'no_lang_code', 1, 'https://ror.org/01rxc2g24 Accurate Clinical Management (United States)'),
(61476, 'https://ror.org/01s361a76', 'no_lang_code', 1, 'https://ror.org/01s361a76 Boston Scientific (Belgium)'),
(61477, 'https://ror.org/01s902n79', 'en', 1, 'https://ror.org/01s902n79 Association of Extremity Nerve Surgeons'),
(61478, 'https://ror.org/01saavf11', 'en', 1, 'https://ror.org/01saavf11 Australian Recreational Fishing Foundation'),
(61479, 'https://ror.org/01sbpdt14', 'en', 1, 'https://ror.org/01sbpdt14 Nanchang Normal University å—ę˜ŒåøˆčŒƒå­¦é™¢'),
(61480, 'https://ror.org/01scra789', 'nl', 1, 'https://ror.org/01scra789 Instituut voor Positieve Psychologie'),
(61481, 'https://ror.org/01sf6dn24', 'no_lang_code', 1, 'https://ror.org/01sf6dn24 Procter & Gamble (Netherlands)'),
(61482, 'https://ror.org/01sgsyh36', 'en', 1, 'https://ror.org/01sgsyh36 Charleston Research Institute'),
(61483, 'https://ror.org/01skcdk50', 'ca', 1, 'https://ror.org/01skcdk50 Catalan Retina Institute Institut CatalĆ  de Retina'),
(61484, 'https://ror.org/01skcyw40', 'ca', 1, 'https://ror.org/01skcyw40 Departament de Benestar i Drets Socials'),
(61485, 'https://ror.org/01smr1h94', 'en', 1, 'https://ror.org/01smr1h94 Telligen'),
(61486, 'https://ror.org/01sp6c076', 'en', 1, 'https://ror.org/01sp6c076 Kansas City Area Life Sciences Institute'),
(61487, 'https://ror.org/01spx4y35', 'en', 1, 'https://ror.org/01spx4y35 London Eye Hospital'),
(61488, 'https://ror.org/01spyz863', 'es', 1, 'https://ror.org/01spyz863 Sociedad EspaƱola de Endoscopia Digestiva'),
(61489, 'https://ror.org/01sq6ck73', 'de', 1, 'https://ror.org/01sq6ck73 Monika Kutzner Stiftung'),
(61490, 'https://ror.org/01sr4q713', 'en', 1, 'https://ror.org/01sr4q713 Center for International Environmental Law'),
(61491, 'https://ror.org/01st9qd69', 'de', 1, 'https://ror.org/01st9qd69 Vista Klinik'),
(61492, 'https://ror.org/01sv4m290', 'en', 1, 'https://ror.org/01sv4m290 Randolph Health'),
(61493, 'https://ror.org/01svr1620', 'fr', 1, 'https://ror.org/01svr1620 PharmaSuisse'),
(61494, 'https://ror.org/01t0tr298', 'en', 1, 'https://ror.org/01t0tr298 Academy of Cardiovascular Society Kardiyovasküler Akademi Derneği'),
(61495, 'https://ror.org/01t10vs30', 'no_lang_code', 1, 'https://ror.org/01t10vs30 Eisai (Germany)'),
(61496, 'https://ror.org/01t2rqa20', 'en', 1, 'https://ror.org/01t2rqa20 Annie Penn Hospital'),
(61497, 'https://ror.org/01t2wgx84', 'pt', 1, 'https://ror.org/01t2wgx84 Associação Portuguesa de Hemofilia e de outras Coagulopatias Congénitas'),
(61498, 'https://ror.org/01t307872', 'en', 1, 'https://ror.org/01t307872 Progressive Agriculture Foundation'),
(61499, 'https://ror.org/01t34hq68', 'en', 1, 'https://ror.org/01t34hq68 Association Rwandaise Des Diabetiques Rwanda Diabetes Association'),
(61500, 'https://ror.org/01t3v1178', 'en', 1, 'https://ror.org/01t3v1178 Florida Eye Microsurgical Institute'),
(61501, 'https://ror.org/01t45et45', 'en', 1, 'https://ror.org/01t45et45 Methodist West Hospital'),
(61502, 'https://ror.org/01t825428', 'en', 1, 'https://ror.org/01t825428 The Eve Appeal'),
(61503, 'https://ror.org/01t96az37', 'en', 1, 'https://ror.org/01t96az37 Oysters South Australia'),
(61504, 'https://ror.org/01ta1nw48', 'no_lang_code', 1, 'https://ror.org/01ta1nw48 Alivation (United States)'),
(61505, 'https://ror.org/01tcmg746', 'no_lang_code', 1, 'https://ror.org/01tcmg746 Knox Medical Diagnostics (United States)'),
(61506, 'https://ror.org/01tdaqj45', 'de', 1, 'https://ror.org/01tdaqj45 FWU Institut für Film und Bild in Wissenschaft und Unterricht'),
(61507, 'https://ror.org/01tdq4v27', 'en', 1, 'https://ror.org/01tdq4v27 RUTE Foundations'),
(61508, 'https://ror.org/01teb6y78', 'en', 1, 'https://ror.org/01teb6y78 Foundation for Glacier and Environmental Research'),
(61509, 'https://ror.org/01tf40c53', 'en', 1, 'https://ror.org/01tf40c53 Healing Touch Worldwide Foundation'),
(61510, 'https://ror.org/01tfhsg94', 'fr', 1, 'https://ror.org/01tfhsg94 HƓpital EuropƩen'),
(61511, 'https://ror.org/01tm5k604', 'nl', 1, 'https://ror.org/01tm5k604 Treant Zorggroep'),
(61512, 'https://ror.org/01tpy1912', 'de', 1, 'https://ror.org/01tpy1912 Bundesverband der HƶrgerƤte-Industrie'),
(61513, 'https://ror.org/01tq9ra93', 'en', 1, 'https://ror.org/01tq9ra93 War Child'),
(61514, 'https://ror.org/01tqkhn82', 'en', 1, 'https://ror.org/01tqkhn82 Shandong Entry-Exit Inspection and Quarantine Bureau å±±äøœå‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(61515, 'https://ror.org/01tr7z120', 'en', 1, 'https://ror.org/01tr7z120 Institut National de la SantƩ Publique National Institute of Public Health'),
(61516, 'https://ror.org/01tsmdw03', 'no_lang_code', 1, 'https://ror.org/01tsmdw03 Equinosis (United States)'),
(61517, 'https://ror.org/01tt4qx37', 'en', 1, 'https://ror.org/01tt4qx37 Kuwait Institute for Medical Specialization'),
(61518, 'https://ror.org/01tt8er74', 'en', 1, 'https://ror.org/01tt8er74 Chongqing Maternal and Child Health Hospital'),
(61519, 'https://ror.org/01tvt4d48', 'no_lang_code', 1, 'https://ror.org/01tvt4d48 GlaxoSmithKline (India)'),
(61520, 'https://ror.org/01twnqc61', 'en', 1, 'https://ror.org/01twnqc61 Good Samaritan Hospital'),
(61521, 'https://ror.org/01tx2e407', 'nl', 1, 'https://ror.org/01tx2e407 Vlaams Agentschap Zorg en Gezondheid'),
(61522, 'https://ror.org/01txxvd81', 'pl', 1, 'https://ror.org/01txxvd81 Uniwersytecki Szpital Kliniczny w Opolu'),
(61523, 'https://ror.org/01txxxh71', 'fr', 1, 'https://ror.org/01txxxh71 Centre Hospitalier du Pays d''Aix'),
(61524, 'https://ror.org/01txy2515', 'no_lang_code', 1, 'https://ror.org/01txy2515 Greenyard Fresh (Germany)'),
(61525, 'https://ror.org/01tz5vj85', 'no_lang_code', 1, 'https://ror.org/01tz5vj85 Earlogic (South Korea)'),
(61526, 'https://ror.org/01tzn5f02', 'no_lang_code', 1, 'https://ror.org/01tzn5f02 Spectral MD (United States)'),
(61527, 'https://ror.org/01v11cc68', 'en', 1, 'https://ror.org/01v11cc68 Tianjin International Joint Academy of Biomedicine å¤©ę“„å›½é™…č”åˆē”Ÿē‰©åŒ»å­¦ē ”ē©¶ę‰€'),
(61528, 'https://ror.org/01v1pqp42', 'no_lang_code', 1, 'https://ror.org/01v1pqp42 Across (Spain)'),
(61529, 'https://ror.org/01v1wt982', 'no_lang_code', 1, 'https://ror.org/01v1wt982 Imam Abdulrahman Al Faisal Hospital'),
(61530, 'https://ror.org/01v2qkv12', 'en', 1, 'https://ror.org/01v2qkv12 NEA Baptist Memorial Hospital'),
(61531, 'https://ror.org/01v2w4d05', 'fr', 1, 'https://ror.org/01v2w4d05 Clinique Mutualiste La Sagesse'),
(61532, 'https://ror.org/01v6tyf80', 'de', 1, 'https://ror.org/01v6tyf80 Institut für Ganzheitliche Medizin und Wissenschaft'),
(61533, 'https://ror.org/01v8fa928', 'en', 1, 'https://ror.org/01v8fa928 American Institute of Hydrology'),
(61534, 'https://ror.org/01v9phm86', 'no_lang_code', 1, 'https://ror.org/01v9phm86 J. S. Ayurveda Mahavidyalaya and P.D. Patel Ayurveda Hospital'),
(61535, 'https://ror.org/01va37t86', 'en', 1, 'https://ror.org/01va37t86 New York City Department of Correction'),
(61536, 'https://ror.org/01va8fr66', 'en', 1, 'https://ror.org/01va8fr66 Baim Institute for Clinical Research'),
(61537, 'https://ror.org/01va9fe31', 'no_lang_code', 1, 'https://ror.org/01va9fe31 Inslaw (United States)'),
(61538, 'https://ror.org/01vaajc72', 'en', 1, 'https://ror.org/01vaajc72 City Hospital No. 40 Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 40'),
(61539, 'https://ror.org/01vb5ks25', 'de', 1, 'https://ror.org/01vb5ks25 Martini-Klinik'),
(61540, 'https://ror.org/01vb7db28', 'en', 1, 'https://ror.org/01vb7db28 Bionomics International'),
(61541, 'https://ror.org/01vcw4681', 'en', 1, 'https://ror.org/01vcw4681 Guangzhou Institute of Advanced Technology å¹æå·žäø­å›½ē§‘å­¦é™¢å…ˆčæ›ęŠ€ęœÆē ”ē©¶ę‰€'),
(61542, 'https://ror.org/01vfhjf72', 'en', 1, 'https://ror.org/01vfhjf72 Mount Sinai Rehabilitation Hospital'),
(61543, 'https://ror.org/01vjv9396', 'en', 1, 'https://ror.org/01vjv9396 Virginia Living Museum'),
(61544, 'https://ror.org/01vrgp187', 'en', 1, 'https://ror.org/01vrgp187 CODET Vision Institute'),
(61545, 'https://ror.org/01vs0xq55', 'de', 1, 'https://ror.org/01vs0xq55 Universitätsklinik für Augenheilkunde'),
(61546, 'https://ror.org/01vvdem88', 'en', 1, 'https://ror.org/01vvdem88 National University Heart Centre Singapore'),
(61547, 'https://ror.org/01vvp4329', 'no_lang_code', 1, 'https://ror.org/01vvp4329 Smart Salt (United States)'),
(61548, 'https://ror.org/01vw8ee97', 'en', 1, 'https://ror.org/01vw8ee97 Rhode Island Department of Elementary and Secondary Education'),
(61549, 'https://ror.org/01vwxjv55', 'no_lang_code', 1, 'https://ror.org/01vwxjv55 Prevail Health Solutions (United States)'),
(61550, 'https://ror.org/01vx59p26', 'no_lang_code', 1, 'https://ror.org/01vx59p26 Synapse (Greece)'),
(61551, 'https://ror.org/01vy2pz67', 'en', 1, 'https://ror.org/01vy2pz67 Genesis Healthcare'),
(61552, 'https://ror.org/01vzjtk91', 'en', 1, 'https://ror.org/01vzjtk91 Rocky Mountain Retina Consultants'),
(61553, 'https://ror.org/01vzx5p25', 'de', 1, 'https://ror.org/01vzx5p25 UniversitƤtsaugenklinik Magdeburg'),
(61554, 'https://ror.org/01w09ak35', 'en', 1, 'https://ror.org/01w09ak35 Lehigh Valley Hospital-Pocono'),
(61555, 'https://ror.org/01w1m0197', 'de', 1, 'https://ror.org/01w1m0197 Park-Klinik Weißensee'),
(61556, 'https://ror.org/01w36fb33', 'it', 1, 'https://ror.org/01w36fb33 Agenzia Sanitaria e Sociale Regionale'),
(61557, 'https://ror.org/01w48gk31', 'nl', 1, 'https://ror.org/01w48gk31 Lange Land Ziekenhuis'),
(61558, 'https://ror.org/01w50vm31', 'no_lang_code', 1, 'https://ror.org/01w50vm31 SMART Medical Systems (Israel)'),
(61559, 'https://ror.org/01w5bhe03', 'en', 1, 'https://ror.org/01w5bhe03 Cardiovascular Institute of Northwest Florida'),
(61560, 'https://ror.org/01w8qz314', 'fr', 1, 'https://ror.org/01w8qz314 Association Tunisienne Contre le Cancer'),
(61561, 'https://ror.org/01waq5k48', 'en', 1, 'https://ror.org/01waq5k48 Academic Alliance in Dermatology'),
(61562, 'https://ror.org/01wc8t239', 'no_lang_code', 1, 'https://ror.org/01wc8t239 Curaden (Switzerland)'),
(61563, 'https://ror.org/01wgg7498', 'en', 1, 'https://ror.org/01wgg7498 Atomic Heritage Foundation'),
(61564, 'https://ror.org/01wjwqr61', 'nl', 1, 'https://ror.org/01wjwqr61 Innofeet, Voetencentrum Nijenhuis'),
(61565, 'https://ror.org/01wpjz328', 'en', 1, 'https://ror.org/01wpjz328 The IBC Network Foundation'),
(61566, 'https://ror.org/01wq36e29', 'en', 1, 'https://ror.org/01wq36e29 Kochan Institute for Healing Arts Research'),
(61567, 'https://ror.org/01wqw7p30', 'en', 1, 'https://ror.org/01wqw7p30 Wuhou District People''s Hospital, Chengdu ęˆéƒ½åø‚ę­¦ä¾ÆåŒŗäŗŗę°‘åŒ»é™¢'),
(61568, 'https://ror.org/01wrzk743', 'no_lang_code', 1, 'https://ror.org/01wrzk743 MTPV Power (United States)'),
(61569, 'https://ror.org/01wsec828', 'en', 1, 'https://ror.org/01wsec828 Sentara Heart Hospital'),
(61570, 'https://ror.org/01wvkcg78', 'en', 1, 'https://ror.org/01wvkcg78 Eli Whitney Museum'),
(61571, 'https://ror.org/01wywr782', 'en', 1, 'https://ror.org/01wywr782 Institut National des RadioƩlƩments Institute for Radioelements'),
(61572, 'https://ror.org/01wzg5e03', 'no_lang_code', 1, 'https://ror.org/01wzg5e03 Topasol (United States)'),
(61573, 'https://ror.org/01x1jpq68', 'no_lang_code', 1, 'https://ror.org/01x1jpq68 Dr. Niedermaier Pharma (Germany)'),
(61574, 'https://ror.org/01x3y4k69', 'en', 1, 'https://ror.org/01x3y4k69 Kalamazoo Psychiatric Hospital'),
(61575, 'https://ror.org/01x4thh14', 'en', 1, 'https://ror.org/01x4thh14 CR2O'),
(61576, 'https://ror.org/01x55sj80', 'en', 1, 'https://ror.org/01x55sj80 Smilow Cancer Hospital Care Center'),
(61577, 'https://ror.org/01x62am17', 'no_lang_code', 1, 'https://ror.org/01x62am17 Paladin Pharma (Italy)'),
(61578, 'https://ror.org/01x6mgf32', 'no_lang_code', 1, 'https://ror.org/01x6mgf32 Anchor Science (United States)'),
(61579, 'https://ror.org/01xazqf25', 'nl', 1, 'https://ror.org/01xazqf25 Geriant'),
(61580, 'https://ror.org/01xc3wx73', 'en', 1, 'https://ror.org/01xc3wx73 Exeter Primary Care'),
(61581, 'https://ror.org/01xcb3b67', 'en', 1, 'https://ror.org/01xcb3b67 American Academy of Health Behavior'),
(61582, 'https://ror.org/01xepk867', 'en', 1, 'https://ror.org/01xepk867 IMMUNOe Research Center'),
(61583, 'https://ror.org/01xevy941', 'pt', 1, 'https://ror.org/01xevy941 Hospital UniversitƔrio Lauro Wanderley Lauro Wanderley University Hospital'),
(61584, 'https://ror.org/01xf55557', 'en', 1, 'https://ror.org/01xf55557 Altius Institute for Biomedical Sciences'),
(61585, 'https://ror.org/01xfewa62', 'de', 1, 'https://ror.org/01xfewa62 Arbeitsgemeinschaft Dermatologische Onkologie'),
(61586, 'https://ror.org/01xhd2w58', 'no_lang_code', 1, 'https://ror.org/01xhd2w58 Prescient Surgical (United States)'),
(61587, 'https://ror.org/01xhgcw67', 'no_lang_code', 1, 'https://ror.org/01xhgcw67 De Friesland Zorgverzekeraar (Netherlands)'),
(61588, 'https://ror.org/01xm48j65', 'en', 1, 'https://ror.org/01xm48j65 Shaanxi Provincial Seismological Bureau é™•č„æēœåœ°éœ‡å±€'),
(61589, 'https://ror.org/01xmgrn68', 'es', 1, 'https://ror.org/01xmgrn68 Sociedad EspaƱola de Cirugƭa OrtopƩdica y Traumatologƭa'),
(61590, 'https://ror.org/01xpn7z95', 'en', 1, 'https://ror.org/01xpn7z95 Sustainable Horizons Institute'),
(61591, 'https://ror.org/01xs14k38', 'no_lang_code', 1, 'https://ror.org/01xs14k38 Medacta (United States)'),
(61592, 'https://ror.org/01xsmp527', 'en', 1, 'https://ror.org/01xsmp527 New York Glaucoma Research Institute'),
(61593, 'https://ror.org/01xst2e75', 'es', 1, 'https://ror.org/01xst2e75 Hospital General Mateu Orfila'),
(61594, 'https://ror.org/01xv43c68', 'en', 1, 'https://ror.org/01xv43c68 Lindner Center of HOPE'),
(61595, 'https://ror.org/01xyh8d66', 'en', 1, 'https://ror.org/01xyh8d66 Magrabi Hospitals and Centers'),
(61596, 'https://ror.org/01xz2wh36', 'en', 1, 'https://ror.org/01xz2wh36 The Eye Care Institute'),
(61597, 'https://ror.org/01xzv1t06', 'en', 1, 'https://ror.org/01xzv1t06 Somali Association of Arizona'),
(61598, 'https://ror.org/01y0zfy93', 'no_lang_code', 1, 'https://ror.org/01y0zfy93 Medtronic (Singapore)'),
(61599, 'https://ror.org/01y1na882', 'en', 1, 'https://ror.org/01y1na882 Finnish Association of People with Physical Disabilities'),
(61600, 'https://ror.org/01y1pf628', 'en', 1, 'https://ror.org/01y1pf628 Gwinnett Medical Center'),
(61601, 'https://ror.org/01y2g0378', 'fr', 1, 'https://ror.org/01y2g0378 Association pour la Promotion du Sport chez l''Enfant Malade'),
(61602, 'https://ror.org/01y36r136', 'no_lang_code', 1, 'https://ror.org/01y36r136 Orthica (Netherlands)'),
(61603, 'https://ror.org/01y84kk86', 'no_lang_code', 1, 'https://ror.org/01y84kk86 Wepa Apothekenbedarf (Germany)'),
(61604, 'https://ror.org/01y9dza79', 'en', 1, 'https://ror.org/01y9dza79 Florida Academic Dermatology Center'),
(61605, 'https://ror.org/01ya56e34', 'fr', 1, 'https://ror.org/01ya56e34 Clinique du MillƩnaire'),
(61606, 'https://ror.org/01yac3k46', 'no_lang_code', 1, 'https://ror.org/01yac3k46 Engelhard Arzneimittel (Germany)'),
(61607, 'https://ror.org/01ydthg97', 'en', 1, 'https://ror.org/01ydthg97 Nijmegen Institute for Scientist Practitioners in Addiction'),
(61608, 'https://ror.org/01yegct87', 'en', 1, 'https://ror.org/01yegct87 Commonwealth Cancer Center'),
(61609, 'https://ror.org/01yf7sx51', 'sk', 1, 'https://ror.org/01yf7sx51 Východoslovenský Onkologický Ústav'),
(61610, 'https://ror.org/01yfz8598', 'en', 1, 'https://ror.org/01yfz8598 National Center of Security and Protection'),
(61611, 'https://ror.org/01yh14f85', 'no_lang_code', 1, 'https://ror.org/01yh14f85 OtoNexus Medical Technologies (United States)'),
(61612, 'https://ror.org/01yj5pp70', 'no_lang_code', 1, 'https://ror.org/01yj5pp70 BBC Worldwide (United States)'),
(61613, 'https://ror.org/01yjcwm15', 'de', 1, 'https://ror.org/01yjcwm15 Schweizerische Gesellschaft für Cystische Fibrose Società Svizzera per la fFbrosi Cisitica Société Suisse pour la Mucoviscidose'),
(61614, 'https://ror.org/01yjps198', 'en', 1, 'https://ror.org/01yjps198 Long Now Foundation'),
(61615, 'https://ror.org/01yk61783', 'en', 1, 'https://ror.org/01yk61783 Lake Norman Oncology'),
(61616, 'https://ror.org/01ymyg650', 'en', 1, 'https://ror.org/01ymyg650 Japan Society of Laparoscopic Colorectal Surgery 第6å›žč…¹č…”é”äø‹å¤§č…øåˆ‡é™¤ē ”ē©¶ä¼š'),
(61617, 'https://ror.org/01yn20z87', 'en', 1, 'https://ror.org/01yn20z87 South African Society of Anaesthesiologists'),
(61618, 'https://ror.org/01ynege53', 'no_lang_code', 1, 'https://ror.org/01ynege53 Rehaptix'),
(61619, 'https://ror.org/01yqwf941', 'en', 1, 'https://ror.org/01yqwf941 Kalispell Regional Healthcare'),
(61620, 'https://ror.org/01yrsvz42', 'en', 1, 'https://ror.org/01yrsvz42 Vitality Institute'),
(61621, 'https://ror.org/01yt2c947', 'en', 1, 'https://ror.org/01yt2c947 The Institute for Scientific Information on Coffee'),
(61622, 'https://ror.org/01ytv0571', 'en', 1, 'https://ror.org/01ytv0571 SingHealth Polyclinics'),
(61623, 'https://ror.org/01yvh4c79', 'en', 1, 'https://ror.org/01yvh4c79 Hebei Yiling Hospital'),
(61624, 'https://ror.org/01ywgyp97', 'no_lang_code', 1, 'https://ror.org/01ywgyp97 Independence Science (United States)'),
(61625, 'https://ror.org/01yx43d58', 'en', 1, 'https://ror.org/01yx43d58 Medical Oncology Hematology Consultants'),
(61626, 'https://ror.org/01yzgk702', 'en', 1, 'https://ror.org/01yzgk702 Ministry of Public Health وزارت ŲµŲ­ŲŖ عامه'),
(61627, 'https://ror.org/01z1n5c47', 'en', 1, 'https://ror.org/01z1n5c47 Raymond G. Murphy VA Medical Center'),
(61628, 'https://ror.org/01z5evd58', 'en', 1, 'https://ror.org/01z5evd58 Zhengzhou City Hospital éƒ‘å·žåø‚äø­åŒ»é™¢'),
(61629, 'https://ror.org/01z8ch088', 'en', 1, 'https://ror.org/01z8ch088 Compliant Concept'),
(61630, 'https://ror.org/01z9be204', 'en', 1, 'https://ror.org/01z9be204 ADIR Association'),
(61631, 'https://ror.org/01zacdj41', 'nl', 1, 'https://ror.org/01zacdj41 Amstelland Fysiotherapie'),
(61632, 'https://ror.org/01zcmzh38', 'en', 1, 'https://ror.org/01zcmzh38 Health Informatics Society of Ireland'),
(61633, 'https://ror.org/01zdv2629', 'en', 1, 'https://ror.org/01zdv2629 Joliet Oncology-Hematology Associates'),
(61634, 'https://ror.org/01zekf440', 'en', 1, 'https://ror.org/01zekf440 Missouri Baptist Sullivan Hospital'),
(61635, 'https://ror.org/01zfzpp43', 'en', 1, 'https://ror.org/01zfzpp43 Malaysian Oil Scientists and Technologists Association'),
(61636, 'https://ror.org/01zgn7x32', 'en', 1, 'https://ror.org/01zgn7x32 Ohio Sinus Institute'),
(61637, 'https://ror.org/01zh1d121', 'it', 1, 'https://ror.org/01zh1d121 Ospedale Misericordia e Dolce'),
(61638, 'https://ror.org/01zhtdv64', 'es', 1, 'https://ror.org/01zhtdv64 Hospital General De Zona'),
(61639, 'https://ror.org/01zjb9d64', 'no_lang_code', 1, 'https://ror.org/01zjb9d64 Hiroshima Kyoritsu Hospital åŗƒå³¶å…±ē«‹ē—…é™¢'),
(61640, 'https://ror.org/01zjzsn17', 'en', 1, 'https://ror.org/01zjzsn17 Marshfield Clinic Weston Center'),
(61641, 'https://ror.org/01zmatx12', 'en', 1, 'https://ror.org/01zmatx12 Hassman Research Institute'),
(61642, 'https://ror.org/01zmdh962', 'de', 1, 'https://ror.org/01zmdh962 Arbeiterwohlfahrt München'),
(61643, 'https://ror.org/01zpcsk19', 'no_lang_code', 1, 'https://ror.org/01zpcsk19 SIGNUS Medizintechnik (Germany)'),
(61644, 'https://ror.org/01zqbjs16', 'pt', 1, 'https://ror.org/01zqbjs16 Hospital de Messejana'),
(61645, 'https://ror.org/01zqwsv76', 'it', 1, 'https://ror.org/01zqwsv76 Fondazione FADOI'),
(61646, 'https://ror.org/01zra9c68', 'en', 1, 'https://ror.org/01zra9c68 9-я клиника Минска 9th City Clinical Hospital'),
(61647, 'https://ror.org/01zrbp537', 'no_lang_code', 1, 'https://ror.org/01zrbp537 Chiesi (Germany)'),
(61648, 'https://ror.org/01zt8rh15', 'en', 1, 'https://ror.org/01zt8rh15 Foundation of New York State Nurses'),
(61649, 'https://ror.org/01ztfkn28', 'no_lang_code', 1, 'https://ror.org/01ztfkn28 Trautwein (Germany)'),
(61650, 'https://ror.org/01ztgpx39', 'en', 1, 'https://ror.org/01ztgpx39 Chongqing Institute of Genetics and Reproduction'),
(61651, 'https://ror.org/01zv88x17', 'no_lang_code', 1, 'https://ror.org/01zv88x17 Juno Therapeutics (Germany)'),
(61652, 'https://ror.org/01zwbyz86', 'en', 1, 'https://ror.org/01zwbyz86 Pharmacology Research Institute'),
(61653, 'https://ror.org/01zwdgr60', 'fr', 1, 'https://ror.org/01zwdgr60 Groupe Hospitalier Diaconesses Croix Saint-Simon'),
(61654, 'https://ror.org/01zyk3031', 'en', 1, 'https://ror.org/01zyk3031 Sydney Hernia Specialists Clinic'),
(61655, 'https://ror.org/01zynd687', 'en', 1, 'https://ror.org/01zynd687 Wind Hollow Foundation'),
(61656, 'https://ror.org/01zz40j33', 'en', 1, 'https://ror.org/01zz40j33 Nutrition Center of the Philippines'),
(61657, 'https://ror.org/01zzpzt34', 'en', 1, 'https://ror.org/01zzpzt34 RNA Society'),
(61658, 'https://ror.org/0201xt342', 'en', 1, 'https://ror.org/0201xt342 Institute of Cosmetic and Laser Surgery'),
(61659, 'https://ror.org/020254c55', 'en', 1, 'https://ror.org/020254c55 Caucaseco Scientific Research Center Centro de Investigación Científica Caucaseco'),
(61660, 'https://ror.org/0203bxz75', 'no_lang_code', 1, 'https://ror.org/0203bxz75 Cerbomed (Germany)'),
(61661, 'https://ror.org/020448x84', 'en', 1, 'https://ror.org/020448x84 Riverside University Health System - Medical Center'),
(61662, 'https://ror.org/0204aj955', 'nl', 1, 'https://ror.org/0204aj955 Gouverneur Kremers Centrum'),
(61663, 'https://ror.org/0204j6811', 'en', 1, 'https://ror.org/0204j6811 Specialized Hospital for Active Treatment of Children''s Diseases Дпециализирана болница за активно лечение по Гетски болести'),
(61664, 'https://ror.org/0205c6c55', 'en', 1, 'https://ror.org/0205c6c55 Pine Street Foundation'),
(61665, 'https://ror.org/020616e42', 'en', 1, 'https://ror.org/020616e42 Senologic Hellenic Society Ελληνική Εταιρεία ĪœĪ±ĻƒĻ„ĪæĪ»ĪæĪ³ĪÆĪ±'),
(61666, 'https://ror.org/0206dgg42', 'pt', 1, 'https://ror.org/0206dgg42 Association of Brazilian Intensive Medicine Associação de Medicina Intensiva Brasileira'),
(61667, 'https://ror.org/02076gf69', 'en', 1, 'https://ror.org/02076gf69 Psychiatry Region Zealand Psykiatrien Region SjƦlland'),
(61668, 'https://ror.org/02084tv33', 'en', 1, 'https://ror.org/02084tv33 Herrin Hospital'),
(61669, 'https://ror.org/0208m9g76', 'en', 1, 'https://ror.org/0208m9g76 The Hubbard Foundation'),
(61670, 'https://ror.org/0208vms90', 'de', 1, 'https://ror.org/0208vms90 Landesbank Baden-Württemberg'),
(61671, 'https://ror.org/02097xt92', 'en', 1, 'https://ror.org/02097xt92 Iranian Orthopedic Association انجمن جراحان ارتوپدی Ų§ŪŒŲ±Ų§Ł†'),
(61672, 'https://ror.org/0209kwd29', 'en', 1, 'https://ror.org/0209kwd29 Western Michigan Society of Health Systems Pharmacists'),
(61673, 'https://ror.org/020ay6p95', 'en', 1, 'https://ror.org/020ay6p95 Z Urology'),
(61674, 'https://ror.org/020cs7q41', 'en', 1, 'https://ror.org/020cs7q41 Clearview Cancer Institute'),
(61675, 'https://ror.org/020f8h126', 'de', 1, 'https://ror.org/020f8h126 Poliklinik für Zahnärztliche Prothetik und Werkstoffkunde'),
(61676, 'https://ror.org/020j24g35', 'no_lang_code', 1, 'https://ror.org/020j24g35 Allergan (Netherlands)'),
(61677, 'https://ror.org/020kqbk80', 'en', 1, 'https://ror.org/020kqbk80 Cameroon Nutritional Science Society'),
(61678, 'https://ror.org/020mhtx24', 'en', 1, 'https://ror.org/020mhtx24 Southeast Career Technical Academy'),
(61679, 'https://ror.org/020nhna33', 'en', 1, 'https://ror.org/020nhna33 American College of Osteopathic Obstetricians & Gynecologists'),
(61680, 'https://ror.org/020rmwt56', 'en', 1, 'https://ror.org/020rmwt56 Institute for Global Ethics'),
(61681, 'https://ror.org/020sarg10', 'nl', 1, 'https://ror.org/020sarg10 Stichting Stimuleringsfonds Rouw'),
(61682, 'https://ror.org/020sst346', 'en', 1, 'https://ror.org/020sst346 Ludwig Boltzmann Institute of Electrical Stimulation and Physical Rehabilitation'),
(61683, 'https://ror.org/020szg916', 'en', 1, 'https://ror.org/020szg916 Newland Medical Associates'),
(61684, 'https://ror.org/020vv3w23', 'fi', 1, 'https://ror.org/020vv3w23 InvalidisƤƤtiƶ'),
(61685, 'https://ror.org/020vypr53', 'no', 1, 'https://ror.org/020vypr53 Kristiansund Sykehus'),
(61686, 'https://ror.org/020wh9z45', 'no', 1, 'https://ror.org/020wh9z45 Evjeklinikken'),
(61687, 'https://ror.org/020whm440', 'en', 1, 'https://ror.org/020whm440 St. Mary Mercy Livonia'),
(61688, 'https://ror.org/020wka979', 'en', 1, 'https://ror.org/020wka979 CHRISTUS Highland Medical Center'),
(61689, 'https://ror.org/020yhzm14', 'en', 1, 'https://ror.org/020yhzm14 Kildonan UnitingCare'),
(61690, 'https://ror.org/020yxp837', 'de', 1, 'https://ror.org/020yxp837 Berliner Krebsgesellschaft'),
(61691, 'https://ror.org/0211h1012', 'en', 1, 'https://ror.org/0211h1012 GC Media'),
(61692, 'https://ror.org/0212kmf07', 'en', 1, 'https://ror.org/0212kmf07 Saving Faces'),
(61693, 'https://ror.org/0212s7037', 'en', 1, 'https://ror.org/0212s7037 The Asper Foundation'),
(61694, 'https://ror.org/0213d4b59', 'de', 1, 'https://ror.org/0213d4b59 Stiftung Institut für Herzinfarktforschung'),
(61695, 'https://ror.org/0214xre54', 'en', 1, 'https://ror.org/0214xre54 Guelph Wellington Seniors Association'),
(61696, 'https://ror.org/0215tq732', 'no_lang_code', 1, 'https://ror.org/0215tq732 MEI Asset Protection (United States)'),
(61697, 'https://ror.org/0215ym372', 'no_lang_code', 1, 'https://ror.org/0215ym372 Sense Textile (Netherlands)'),
(61698, 'https://ror.org/02160gj87', 'en', 1, 'https://ror.org/02160gj87 Shaanxi Blood Center é™•č„æēœč”€ę¶²äø­åæƒ'),
(61699, 'https://ror.org/02162rn53', 'en', 1, 'https://ror.org/02162rn53 Koninklijke Nederlandse Organisatie van Verloskundigen Royal Dutch Organization of Midwives'),
(61700, 'https://ror.org/0216ch235', 'en', 1, 'https://ror.org/0216ch235 Coyle Institute'),
(61701, 'https://ror.org/0217f6q14', 'de', 1, 'https://ror.org/0217f6q14 D•A•CH-Gesellschaft'),
(61702, 'https://ror.org/021as9859', 'en', 1, 'https://ror.org/021as9859 City Children''s Hospital No. 22 Š”ŠµŃ‚ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–22'),
(61703, 'https://ror.org/021ayq160', 'no_lang_code', 1, 'https://ror.org/021ayq160 Arytha Biosciences (United States)'),
(61704, 'https://ror.org/021ayzg23', 'no_lang_code', 1, 'https://ror.org/021ayzg23 Institut MƩrieux (United States)'),
(61705, 'https://ror.org/021b7gr78', 'en', 1, 'https://ror.org/021b7gr78 The Africa-America Institute'),
(61706, 'https://ror.org/021bvd011', 'no_lang_code', 1, 'https://ror.org/021bvd011 Boston Scientific (Netherlands)'),
(61707, 'https://ror.org/021crbk07', 'sv', 1, 'https://ror.org/021crbk07 Riddargatan 1'),
(61708, 'https://ror.org/021d7pd31', 'en', 1, 'https://ror.org/021d7pd31 Primary Care Collaborative Clinical Trials Group'),
(61709, 'https://ror.org/021e99k21', 'en', 1, 'https://ror.org/021e99k21 Memorial Sisli Hospital'),
(61710, 'https://ror.org/021fhy603', 'en', 1, 'https://ror.org/021fhy603 Association of Cancer Online Resources'),
(61711, 'https://ror.org/021g17t44', 'en', 1, 'https://ror.org/021g17t44 College of Physicians and Surgeons of Ontario'),
(61712, 'https://ror.org/021h7aq11', 'en', 1, 'https://ror.org/021h7aq11 Hand and Upper Limb Clinic'),
(61713, 'https://ror.org/021hkh665', 'no_lang_code', 1, 'https://ror.org/021hkh665 Polyganics (Netherlands)'),
(61714, 'https://ror.org/021m7am85', 'no_lang_code', 1, 'https://ror.org/021m7am85 BioMat Sciences (United States)'),
(61715, 'https://ror.org/021nbzt76', 'fr', 1, 'https://ror.org/021nbzt76 Association FranƧaise de Lutte Anti-Rhumastismale'),
(61716, 'https://ror.org/021px0753', 'en', 1, 'https://ror.org/021px0753 Moy, Fincher, Chipps Medical Group'),
(61717, 'https://ror.org/021qj7h23', 'en', 1, 'https://ror.org/021qj7h23 Hypersomnia Foundation'),
(61718, 'https://ror.org/021tj2a07', 'en', 1, 'https://ror.org/021tj2a07 National Urea Cycle Disorders Foundation'),
(61719, 'https://ror.org/021x2ed48', 'en', 1, 'https://ror.org/021x2ed48 Sports Concussion Institute'),
(61720, 'https://ror.org/021z26c54', 'en', 1, 'https://ror.org/021z26c54 The Morton Center'),
(61721, 'https://ror.org/021z2yz21', 'en', 1, 'https://ror.org/021z2yz21 Russian Society of Clinical Oncology Российское общество клинической онкологии'),
(61722, 'https://ror.org/02201aj62', 'en', 1, 'https://ror.org/02201aj62 National Research Institute'),
(61723, 'https://ror.org/02207mt46', 'en', 1, 'https://ror.org/02207mt46 Pelvic & Sexual Health Institute'),
(61724, 'https://ror.org/0221nva21', 'en', 1, 'https://ror.org/0221nva21 Footscray Hospital'),
(61725, 'https://ror.org/0223m1p35', 'en', 1, 'https://ror.org/0223m1p35 Shade Foundation'),
(61726, 'https://ror.org/02258bk69', 'nl', 1, 'https://ror.org/02258bk69 Kliniek ViaSana'),
(61727, 'https://ror.org/0229q5b07', 'en', 1, 'https://ror.org/0229q5b07 Medicon Valley Alliance'),
(61728, 'https://ror.org/0229xaa13', 'en', 1, 'https://ror.org/0229xaa13 Yeouido St. Mary''s Hospital ź°€ķ†Øė¦­ėŒ€ķ•™źµģ„±ėŖØė³‘ģ›'),
(61729, 'https://ror.org/022ases92', 'en', 1, 'https://ror.org/022ases92 Coram Clinical Trials'),
(61730, 'https://ror.org/022bpxw56', 'en', 1, 'https://ror.org/022bpxw56 SOUSEIKAI Global Clinical Research Center'),
(61731, 'https://ror.org/022bv4r09', 'en', 1, 'https://ror.org/022bv4r09 African Institute for Health and Development'),
(61732, 'https://ror.org/022dwdg85', 'de', 1, 'https://ror.org/022dwdg85 Deutsche Gesellschaft für Angiologie Gesellschaft für Gefäßmedizin e.V.'),
(61733, 'https://ror.org/022ebn524', 'no_lang_code', 1, 'https://ror.org/022ebn524 Hennepin County'),
(61734, 'https://ror.org/022fkpc23', 'no_lang_code', 1, 'https://ror.org/022fkpc23 Dr. Reddy''s Laboratories (Germany)'),
(61735, 'https://ror.org/022hz3j90', 'de', 1, 'https://ror.org/022hz3j90 Krankenhaus Waldfriede'),
(61736, 'https://ror.org/022j22r70', 'pt', 1, 'https://ror.org/022j22r70 CUF Porto Hospital'),
(61737, 'https://ror.org/022k58k47', 'en', 1, 'https://ror.org/022k58k47 Anchorage and Valley Radiation Therapy Centers'),
(61738, 'https://ror.org/022ktbf55', 'en', 1, 'https://ror.org/022ktbf55 Massage Therapists Association of British Columbia'),
(61739, 'https://ror.org/022n0hr86', 'no_lang_code', 1, 'https://ror.org/022n0hr86 Synimmune (Germany)'),
(61740, 'https://ror.org/022nxqs47', 'nl', 1, 'https://ror.org/022nxqs47 Dialyse Centrum Groningen'),
(61741, 'https://ror.org/022p9j404', 'nl', 1, 'https://ror.org/022p9j404 Nationale Intensive Care Evaluatie Stichting'),
(61742, 'https://ror.org/022r80268', 'no_lang_code', 1, 'https://ror.org/022r80268 Intuitive Surgical (Switzerland)'),
(61743, 'https://ror.org/022rrds39', 'de', 1, 'https://ror.org/022rrds39 Hoffnungsbaum'),
(61744, 'https://ror.org/022txv590', 'en', 1, 'https://ror.org/022txv590 The Society for the Relief of Disabled Children é¦™ęøÆå¼±čƒ½å…’ē«„č­·åŠ©ęœƒ'),
(61745, 'https://ror.org/022vsje77', 'pt', 1, 'https://ror.org/022vsje77 Hospital IPO, Instituto Paranaense de Otorrinolaringologia'),
(61746, 'https://ror.org/022vwef69', 'en', 1, 'https://ror.org/022vwef69 G.A. Carmichael Family Health Center'),
(61747, 'https://ror.org/022w0b336', 'no_lang_code', 1, 'https://ror.org/022w0b336 ALK-Abelló (Netherlands)'),
(61748, 'https://ror.org/022wfr829', 'en', 1, 'https://ror.org/022wfr829 Kaiser Permanente Rock Creek Medical Offices'),
(61749, 'https://ror.org/022yxs707', 'en', 1, 'https://ror.org/022yxs707 Intermutualist Agency'),
(61750, 'https://ror.org/02309hn07', 'es', 1, 'https://ror.org/02309hn07 Via Libre'),
(61751, 'https://ror.org/0230gcj41', 'nl', 1, 'https://ror.org/0230gcj41 Phelps Stichting voor Spastici'),
(61752, 'https://ror.org/0230sdn30', 'no_lang_code', 1, 'https://ror.org/0230sdn30 Hoya Surgical Optics (Germany)'),
(61753, 'https://ror.org/02349xy14', 'en', 1, 'https://ror.org/02349xy14 Korean Glaucoma Society ķ•œźµ­ė…¹ė‚“ģž„ķ•™ķšŒ'),
(61754, 'https://ror.org/0239ann44', 'en', 1, 'https://ror.org/0239ann44 Goulburn Valley Health'),
(61755, 'https://ror.org/023avht41', 'de', 1, 'https://ror.org/023avht41 Deutsche Gesellschaft für Hämatologie und Medizinische Onkologie'),
(61756, 'https://ror.org/023erdr66', 'en', 1, 'https://ror.org/023erdr66 Society of Musculoskeletal Medicine'),
(61757, 'https://ror.org/023grzj16', 'en', 1, 'https://ror.org/023grzj16 Karachi Institute of Heart Diseases'),
(61758, 'https://ror.org/023gzq092', 'en', 1, 'https://ror.org/023gzq092 JosƩ R. Reyes Memorial Medical Center'),
(61759, 'https://ror.org/023h0re83', 'en', 1, 'https://ror.org/023h0re83 Hawaii Cancer Care'),
(61760, 'https://ror.org/023j0b748', 'es', 1, 'https://ror.org/023j0b748 ClĆ­nica Diagonal'),
(61761, 'https://ror.org/023j1w312', 'sv', 1, 'https://ror.org/023j1w312 Skandinaviska Kiropraktorhƶgskolan');
INSERT INTO `rors` VALUES
(61762, 'https://ror.org/023k9vr64', 'no_lang_code', 1, 'https://ror.org/023k9vr64 PROGE FARM (Italy)'),
(61763, 'https://ror.org/023kfdf75', 'en', 1, 'https://ror.org/023kfdf75 Association for Chemoreception Sciences'),
(61764, 'https://ror.org/023mmvm94', 'no_lang_code', 1, 'https://ror.org/023mmvm94 Occipital (United States)'),
(61765, 'https://ror.org/023p1v236', 'en', 1, 'https://ror.org/023p1v236 Australian Childhood Foundation'),
(61766, 'https://ror.org/023p7x818', 'en', 1, 'https://ror.org/023p7x818 Advocate Center for Pediatric Research'),
(61767, 'https://ror.org/023pbyr02', 'no_lang_code', 1, 'https://ror.org/023pbyr02 SteadySense (Austria)'),
(61768, 'https://ror.org/023pcfd52', 'en', 1, 'https://ror.org/023pcfd52 Foundation for Cardiac Surgery'),
(61769, 'https://ror.org/023swa857', 'en', 1, 'https://ror.org/023swa857 Sarasota Retina Institute'),
(61770, 'https://ror.org/023sxys58', 'no_lang_code', 1, 'https://ror.org/023sxys58 Purdue Pharma (Canada)'),
(61771, 'https://ror.org/023t01j49', 'en', 1, 'https://ror.org/023t01j49 Bariatric Medical Institute of Texas'),
(61772, 'https://ror.org/023vxq234', 'en', 1, 'https://ror.org/023vxq234 Association for the Advancement of Medical Instrumentation'),
(61773, 'https://ror.org/023wnz719', 'fr', 1, 'https://ror.org/023wnz719 Centre Hospitalier de Beauvais'),
(61774, 'https://ror.org/023xep540', 'en', 1, 'https://ror.org/023xep540 Qinghai Red Cross Hospital'),
(61775, 'https://ror.org/023ytjs26', 'no_lang_code', 1, 'https://ror.org/023ytjs26 Hasomed (Germany)'),
(61776, 'https://ror.org/023z23g03', 'en', 1, 'https://ror.org/023z23g03 Galiz Research'),
(61777, 'https://ror.org/02437h829', 'sr', 1, 'https://ror.org/02437h829 Zavod ''''Konzilijum'''''),
(61778, 'https://ror.org/0244fmj21', 'en', 1, 'https://ror.org/0244fmj21 ASM International'),
(61779, 'https://ror.org/0245hme54', 'en', 1, 'https://ror.org/0245hme54 Himalayan Rescue Association'),
(61780, 'https://ror.org/024603t93', 'en', 1, 'https://ror.org/024603t93 Interventional Orthopedics Foundation'),
(61781, 'https://ror.org/02465hh03', 'en', 1, 'https://ror.org/02465hh03 Ministry of Health, Community Development, Gender, Elderly and Children'),
(61782, 'https://ror.org/0248h4s70', 'de', 1, 'https://ror.org/0248h4s70 UniversitƤts Hautklinik Kiel'),
(61783, 'https://ror.org/02490t938', 'en', 1, 'https://ror.org/02490t938 Sichuan Entry-Exit Inspection and Quarantine Bureau å››å·å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€ę£€éŖŒę£€ē–«ęŠ€ęœÆäø­åæƒ'),
(61784, 'https://ror.org/024asvc11', 'en', 1, 'https://ror.org/024asvc11 Wisconsin Parkinson Association'),
(61785, 'https://ror.org/024bhvy46', 'no_lang_code', 1, 'https://ror.org/024bhvy46 Population Services International'),
(61786, 'https://ror.org/024bsq388', 'en', 1, 'https://ror.org/024bsq388 Finnish Mass Spectrometry Society Suomen Massaspektrometrian Seura'),
(61787, 'https://ror.org/024bw4368', 'de', 1, 'https://ror.org/024bw4368 Bund gegen Alkohol und Drogen im Straßenverkehr'),
(61788, 'https://ror.org/024fpfc76', 'no_lang_code', 1, 'https://ror.org/024fpfc76 CSL (Japan)'),
(61789, 'https://ror.org/024gbbh50', 'en', 1, 'https://ror.org/024gbbh50 Syosset Hospital'),
(61790, 'https://ror.org/024gr4122', 'nl', 1, 'https://ror.org/024gr4122 Vrienden WKZ'),
(61791, 'https://ror.org/024hscy29', 'fr', 1, 'https://ror.org/024hscy29 Centre Hospitalier de Bigorre'),
(61792, 'https://ror.org/024hyfk31', 'en', 1, 'https://ror.org/024hyfk31 Polish Institute of Arts and Sciences of America'),
(61793, 'https://ror.org/024jrfp78', 'en', 1, 'https://ror.org/024jrfp78 South Australian Sardine Industry Association'),
(61794, 'https://ror.org/024r17c76', 'en', 1, 'https://ror.org/024r17c76 17-я Š³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń поликлиника 17th City Children''s Clinical Polyclinic'),
(61795, 'https://ror.org/024r4w520', 'en', 1, 'https://ror.org/024r4w520 Island Press'),
(61796, 'https://ror.org/024rjga53', 'en', 1, 'https://ror.org/024rjga53 Monroe 2-Orleans BOCES'),
(61797, 'https://ror.org/024s37521', 'en', 1, 'https://ror.org/024s37521 Scientific Research Institute of First Aid to them. N.V. Sklifosovsky ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ чрезвычайных ŃŠøŃ‚ŃƒŠ°Ń†ŠøŠ¹. Š. Š’. Дклифосовский'),
(61798, 'https://ror.org/024w4dn76', 'no_lang_code', 1, 'https://ror.org/024w4dn76 GERCOR (France)'),
(61799, 'https://ror.org/024wpqc10', 'en', 1, 'https://ror.org/024wpqc10 Alaska Native Science Commission'),
(61800, 'https://ror.org/024ws4n60', 'en', 1, 'https://ror.org/024ws4n60 McFarland Clinic - Boone'),
(61801, 'https://ror.org/025009514', 'en', 1, 'https://ror.org/025009514 Coastal Orthopedics'),
(61802, 'https://ror.org/0250yzd02', 'en', 1, 'https://ror.org/0250yzd02 Beacon Hill Academy'),
(61803, 'https://ror.org/025222y07', 'en', 1, 'https://ror.org/025222y07 Council of the Inspectors General on Integrity and Efficiency'),
(61804, 'https://ror.org/0252twa85', 'en', 1, 'https://ror.org/0252twa85 Virtua Memorial Hospital'),
(61805, 'https://ror.org/025c18611', 'en', 1, 'https://ror.org/025c18611 Wildlands Network'),
(61806, 'https://ror.org/025n23k97', 'en', 1, 'https://ror.org/025n23k97 Planet Wheeler Foundation'),
(61807, 'https://ror.org/025nas141', 'es', 1, 'https://ror.org/025nas141 CONAPAC Civil Association for Conservation of the Peruvian Amazon Environment'),
(61808, 'https://ror.org/025pp2a41', 'en', 1, 'https://ror.org/025pp2a41 Bacharach Institute for Rehabilitation'),
(61809, 'https://ror.org/025qj9586', 'en', 1, 'https://ror.org/025qj9586 Semmes Murphey Foundation'),
(61810, 'https://ror.org/025ryw752', 'en', 1, 'https://ror.org/025ryw752 Evergreen General Hospital'),
(61811, 'https://ror.org/025scfy30', 'no_lang_code', 1, 'https://ror.org/025scfy30 VivaTech (United States)'),
(61812, 'https://ror.org/025t8a623', 'no_lang_code', 1, 'https://ror.org/025t8a623 StemGenex (United States)'),
(61813, 'https://ror.org/025w0ga63', 'en', 1, 'https://ror.org/025w0ga63 Spine Institute on the Emerald Coast'),
(61814, 'https://ror.org/025wz7r34', 'en', 1, 'https://ror.org/025wz7r34 Gene Therapy Research Institution ę Ŗå¼ä¼šē¤¾éŗä¼å­ē ”ē©¶ę‰€'),
(61815, 'https://ror.org/025y6ny17', 'en', 1, 'https://ror.org/025y6ny17 Institute for Cardiovascular Diseases of Vojvodina'),
(61816, 'https://ror.org/025yckn40', 'en', 1, 'https://ror.org/025yckn40 KSK Medical'),
(61817, 'https://ror.org/025z7kb61', 'de', 1, 'https://ror.org/025z7kb61 Willi Drache Stiftung'),
(61818, 'https://ror.org/025zg9b48', 'en', 1, 'https://ror.org/025zg9b48 Asset Stem Education'),
(61819, 'https://ror.org/02607jq78', 'en', 1, 'https://ror.org/02607jq78 Society of Military Orthopaedic Surgeons'),
(61820, 'https://ror.org/0260mkc43', 'en', 1, 'https://ror.org/0260mkc43 Retina Research Institute of Texas'),
(61821, 'https://ror.org/0260x4r86', 'en', 1, 'https://ror.org/0260x4r86 Mercy Clinic Cancer and Hematology'),
(61822, 'https://ror.org/0261c1d14', 'no_lang_code', 1, 'https://ror.org/0261c1d14 Okhotsk Kai Hospital ć‚Ŗćƒ›ćƒ¼ćƒ„ć‚Æęµ·ē—…é™¢'),
(61823, 'https://ror.org/0261z1079', 'en', 1, 'https://ror.org/0261z1079 Joint Educational Facilities'),
(61824, 'https://ror.org/02627jy68', 'no_lang_code', 1, 'https://ror.org/02627jy68 Amriton (United States)'),
(61825, 'https://ror.org/0264gwr07', 'no_lang_code', 1, 'https://ror.org/0264gwr07 Novel (Germany)'),
(61826, 'https://ror.org/0264mj391', 'en', 1, 'https://ror.org/0264mj391 Grace Hudson Museum and Sun House'),
(61827, 'https://ror.org/0266fnb18', 'no_lang_code', 1, 'https://ror.org/0266fnb18 BioTeSys (Germany)'),
(61828, 'https://ror.org/0267er755', 'fr', 1, 'https://ror.org/0267er755 Les HƓpitaux de Chartres'),
(61829, 'https://ror.org/0267w9f76', 'en', 1, 'https://ror.org/0267w9f76 Rural Training Initiatives'),
(61830, 'https://ror.org/02687k192', 'en', 1, 'https://ror.org/02687k192 Barbara Lee Family Foundation'),
(61831, 'https://ror.org/0269gkq77', 'en', 1, 'https://ror.org/0269gkq77 Perot Museum of Nature and Science'),
(61832, 'https://ror.org/0269vww35', 'fr', 1, 'https://ror.org/0269vww35 Association Nationale des HƩpato-GastroentƩrologues des HƓpitaux GƩnƩraux de France'),
(61833, 'https://ror.org/026a9y278', 'en', 1, 'https://ror.org/026a9y278 Guizhou Forestry Science Research Institute č“µå·žēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(61834, 'https://ror.org/026b8fb58', 'en', 1, 'https://ror.org/026b8fb58 Carolinas Pain Institute'),
(61835, 'https://ror.org/026c8da16', 'en', 1, 'https://ror.org/026c8da16 Gateway Aesthetic Institute and Laser Center'),
(61836, 'https://ror.org/026d46e20', 'en', 1, 'https://ror.org/026d46e20 Chartered Institute of Environmental Health'),
(61837, 'https://ror.org/026envs24', 'en', 1, 'https://ror.org/026envs24 Paradigm Foundation'),
(61838, 'https://ror.org/026g05v14', 'fr', 1, 'https://ror.org/026g05v14 Conseil Interuniversitaire de la CommunautƩ FranƧaise de Belgique'),
(61839, 'https://ror.org/026g21e16', 'en', 1, 'https://ror.org/026g21e16 Center for Atlantic Oral Surgery'),
(61840, 'https://ror.org/026jf4w16', 'en', 1, 'https://ror.org/026jf4w16 Hessian Ministry for Social Affairs and Integration Hessisches Ministerium für Soziales und Integration'),
(61841, 'https://ror.org/026mkby59', 'en', 1, 'https://ror.org/026mkby59 Microclinic International'),
(61842, 'https://ror.org/026mq3948', 'en', 1, 'https://ror.org/026mq3948 Scandinavian College of Neuropsychopharmacology'),
(61843, 'https://ror.org/026p92b89', 'no_lang_code', 1, 'https://ror.org/026p92b89 KA Medical (United States)'),
(61844, 'https://ror.org/026px0m21', 'en', 1, 'https://ror.org/026px0m21 Spencer Gulf King Prawns'),
(61845, 'https://ror.org/026qrcc48', 'en', 1, 'https://ror.org/026qrcc48 Gujarat Kidney Foundation'),
(61846, 'https://ror.org/026r68s65', 'en', 1, 'https://ror.org/026r68s65 International Thyroid Eye Disease Society'),
(61847, 'https://ror.org/026rvyt77', 'de', 1, 'https://ror.org/026rvyt77 Klinik Bavaria'),
(61848, 'https://ror.org/026v7sm97', 'en', 1, 'https://ror.org/026v7sm97 Eidos Institute'),
(61849, 'https://ror.org/026vbm280', 'no_lang_code', 1, 'https://ror.org/026vbm280 Theraclone Sciences (United States)'),
(61850, 'https://ror.org/026xgbm91', 'en', 1, 'https://ror.org/026xgbm91 Viewpoint Vision'),
(61851, 'https://ror.org/026z0sj95', 'en', 1, 'https://ror.org/026z0sj95 California Center for Sleep Disorders'),
(61852, 'https://ror.org/0270p7k56', 'no_lang_code', 1, 'https://ror.org/0270p7k56 Shin Nippon Biomedical Laboratories (United States)'),
(61853, 'https://ror.org/0270xn642', 'no_lang_code', 1, 'https://ror.org/0270xn642 Bio-Images Drug Delivery (United Kingdom)'),
(61854, 'https://ror.org/0270ypx06', 'en', 1, 'https://ror.org/0270ypx06 Schoodic Institute'),
(61855, 'https://ror.org/02722xq19', 'de', 1, 'https://ror.org/02722xq19 Klinik Niederrhein'),
(61856, 'https://ror.org/0276cxx52', 'en', 1, 'https://ror.org/0276cxx52 Prostate Cancer Clinical Trials Consortium'),
(61857, 'https://ror.org/0278r4c85', 'en', 1, 'https://ror.org/0278r4c85 First Affiliated Hospital of Xinxiang Medical University'),
(61858, 'https://ror.org/0278syk25', 'en', 1, 'https://ror.org/0278syk25 Canadian Foundation for Women’s Health'),
(61859, 'https://ror.org/0279am519', 'no_lang_code', 1, 'https://ror.org/0279am519 KSL Consulting (Denmark)'),
(61860, 'https://ror.org/027gkye86', 'fr', 1, 'https://ror.org/027gkye86 Geneva home care institution Institution Genevoise de Maintien Ć  Domicile'),
(61861, 'https://ror.org/027h0s442', 'en', 1, 'https://ror.org/027h0s442 Brazosport Eye Institute'),
(61862, 'https://ror.org/027jqx654', 'en', 1, 'https://ror.org/027jqx654 Institute for Human Reproduction'),
(61863, 'https://ror.org/027mnhk47', 'en', 1, 'https://ror.org/027mnhk47 Korea National Enterprise for Clinical Trials ķ•œźµ­ģž„ģƒģ‹œķ—˜ģ‚°ģ—…ė³øė¶€'),
(61864, 'https://ror.org/027nwsc63', 'en', 1, 'https://ror.org/027nwsc63 Medical Genetics Center Medizinisch Genetisches Zentrum'),
(61865, 'https://ror.org/027se6721', 'en', 1, 'https://ror.org/027se6721 Pacific Centre for Reproductive Medicine'),
(61866, 'https://ror.org/027tkf265', 'en', 1, 'https://ror.org/027tkf265 Island Hospital'),
(61867, 'https://ror.org/027vp5j60', 'en', 1, 'https://ror.org/027vp5j60 Huntsville Madison County Chamber'),
(61868, 'https://ror.org/027w0yp05', 'en', 1, 'https://ror.org/027w0yp05 William C. Tallent Outpatient Clinic'),
(61869, 'https://ror.org/027yanw18', 'no_lang_code', 1, 'https://ror.org/027yanw18 CMIC Group (Japan)'),
(61870, 'https://ror.org/027ybey37', 'en', 1, 'https://ror.org/027ybey37 Guangdong Institute of Biological Products and Drugs'),
(61871, 'https://ror.org/028248q44', 'nl', 1, 'https://ror.org/028248q44 Nederlandse Vereniging van Podotherapeuten'),
(61872, 'https://ror.org/02827mj70', 'no_lang_code', 1, 'https://ror.org/02827mj70 Regenerative Medical Solutions (United States)'),
(61873, 'https://ror.org/0286p2f78', 'en', 1, 'https://ror.org/0286p2f78 NZ Rock Lobster Industry Council'),
(61874, 'https://ror.org/028a0s046', 'en', 1, 'https://ror.org/028a0s046 Franciscan St Anthony Health – Michigan City'),
(61875, 'https://ror.org/028e4qh46', 'no_lang_code', 1, 'https://ror.org/028e4qh46 New Valve Technology (Germany)'),
(61876, 'https://ror.org/028fe5j11', 'no_lang_code', 1, 'https://ror.org/028fe5j11 Halyard (United Kingdom)'),
(61877, 'https://ror.org/028fgzq86', 'de', 1, 'https://ror.org/028fgzq86 Aktion Pink'),
(61878, 'https://ror.org/028gsb865', 'en', 1, 'https://ror.org/028gsb865 Research Institute of South Florida'),
(61879, 'https://ror.org/028gw7a54', 'en', 1, 'https://ror.org/028gw7a54 University Gastroenterology'),
(61880, 'https://ror.org/028jtth96', 'en', 1, 'https://ror.org/028jtth96 Intelecom Learning'),
(61881, 'https://ror.org/028mrxf52', 'en', 1, 'https://ror.org/028mrxf52 Wrightington, Wigan and Leigh NHS Foundation Trust'),
(61882, 'https://ror.org/028pd3m58', 'en', 1, 'https://ror.org/028pd3m58 Female Pelvic Medicine Institute of Virginia'),
(61883, 'https://ror.org/028v8ft65', 'en', 1, 'https://ror.org/028v8ft65 HELIOS Klinikum Bad Saarow Helios Hospital Bad Saarow'),
(61884, 'https://ror.org/028vbzs83', 'en', 1, 'https://ror.org/028vbzs83 Children’s Museum of Houston'),
(61885, 'https://ror.org/028vdf012', 'no_lang_code', 1, 'https://ror.org/028vdf012 RelaxBogen (Germany)'),
(61886, 'https://ror.org/029041c41', 'en', 1, 'https://ror.org/029041c41 Christiana Institute of Advanced Surgery'),
(61887, 'https://ror.org/0290cy459', 'no_lang_code', 1, 'https://ror.org/0290cy459 Motion Scientific (United States)'),
(61888, 'https://ror.org/0291wkh90', 'no_lang_code', 1, 'https://ror.org/0291wkh90 Ethicare (Germany)'),
(61889, 'https://ror.org/0293zyz69', 'en', 1, 'https://ror.org/0293zyz69 Cantor Spine Institute'),
(61890, 'https://ror.org/029485619', 'en', 1, 'https://ror.org/029485619 Israel Sports Center for the Disabled ×ž×Ø×›×– ×”×”×¤×•×Ø×˜ לנכים ×‘×™×©×Ø××œ'),
(61891, 'https://ror.org/0295gwn16', 'en', 1, 'https://ror.org/0295gwn16 National Association of Hispanic Nurses'),
(61892, 'https://ror.org/0295j0z22', 'en', 1, 'https://ror.org/0295j0z22 Professional Fishermen’s Association'),
(61893, 'https://ror.org/029705428', 'en', 1, 'https://ror.org/029705428 Department of Education'),
(61894, 'https://ror.org/0297r6906', 'nl', 1, 'https://ror.org/0297r6906 Vlaamse Vereniging voor Obstetrie en Gynaecolo'),
(61895, 'https://ror.org/0297tm887', 'en', 1, 'https://ror.org/0297tm887 Vascular Society of Southern Africa'),
(61896, 'https://ror.org/02996kw76', 'en', 1, 'https://ror.org/02996kw76 Delaware Clinical & Laboratory Physicians'),
(61897, 'https://ror.org/0299yrd21', 'en', 1, 'https://ror.org/0299yrd21 Ferre Institute'),
(61898, 'https://ror.org/029b3y474', 'en', 1, 'https://ror.org/029b3y474 Edgecombe Community College'),
(61899, 'https://ror.org/029cqm867', 'de', 1, 'https://ror.org/029cqm867 Hospital Krefeld-Düsseldorf'),
(61900, 'https://ror.org/029ctf279', 'en', 1, 'https://ror.org/029ctf279 Association of Black Health-System Pharmacists'),
(61901, 'https://ror.org/029enjm73', 'ro', 1, 'https://ror.org/029enjm73 Institutul de Pneumoftiziologie "Marius Nasta"'),
(61902, 'https://ror.org/029fxva34', 'no_lang_code', 1, 'https://ror.org/029fxva34 Virta Laboratories (United States)'),
(61903, 'https://ror.org/029fymz93', 'fr', 1, 'https://ror.org/029fymz93 Association de Cardiologie - Ile de France'),
(61904, 'https://ror.org/029hj0c48', 'en', 1, 'https://ror.org/029hj0c48 Space Foundation'),
(61905, 'https://ror.org/029hy6086', 'de', 1, 'https://ror.org/029hy6086 Klinikverbund Südwest'),
(61906, 'https://ror.org/029p55913', 'en', 1, 'https://ror.org/029p55913 Ministry of Public Health and Social Assistance'),
(61907, 'https://ror.org/029pazr57', 'en', 1, 'https://ror.org/029pazr57 Bon Secours Heart & Vascular Institute'),
(61908, 'https://ror.org/029pcyp29', 'en', 1, 'https://ror.org/029pcyp29 Texas Academy of Family Physicians Foundation'),
(61909, 'https://ror.org/029qv0y24', 'en', 1, 'https://ror.org/029qv0y24 The Connecticut Audubon Society'),
(61910, 'https://ror.org/029qzhb32', 'en', 1, 'https://ror.org/029qzhb32 Zvitambo Institute for Maternal and Child Health Research'),
(61911, 'https://ror.org/029ra6018', 'en', 1, 'https://ror.org/029ra6018 Saint Luke''s South Hospital'),
(61912, 'https://ror.org/029rf8d44', 'en', 1, 'https://ror.org/029rf8d44 Institut für Atemwegsforschung GmbH Respiratory Research Institute'),
(61913, 'https://ror.org/029ted261', 'ga', 1, 'https://ror.org/029ted261 Sabhal Mòr Ostaig'),
(61914, 'https://ror.org/029tn0z88', 'en', 1, 'https://ror.org/029tn0z88 Strabismus Research Foundation'),
(61915, 'https://ror.org/029tztb09', 'en', 1, 'https://ror.org/029tztb09 Society for Acupuncture Research'),
(61916, 'https://ror.org/029zvxp24', 'no_lang_code', 1, 'https://ror.org/029zvxp24 Diamant (Germany)'),
(61917, 'https://ror.org/029zxzd20', 'en', 1, 'https://ror.org/029zxzd20 Antoni Jurasz University Hospital Szpital Uniwersytecki im. A. Jurasza'),
(61918, 'https://ror.org/02a0z8v73', 'nl', 1, 'https://ror.org/02a0z8v73 Stichting de Verre Bergen'),
(61919, 'https://ror.org/02a1s0g57', 'nl', 1, 'https://ror.org/02a1s0g57 Huis voor de Zorg'),
(61920, 'https://ror.org/02a1x2s63', 'en', 1, 'https://ror.org/02a1x2s63 American Legion of Iowa Foundation'),
(61921, 'https://ror.org/02a22wk73', 'it', 1, 'https://ror.org/02a22wk73 Fondazione Farmacogenomica FiorGen'),
(61922, 'https://ror.org/02a2sfd38', 'de', 1, 'https://ror.org/02a2sfd38 Klinikum Esslingen'),
(61923, 'https://ror.org/02a4npq92', 'en', 1, 'https://ror.org/02a4npq92 Society for the Advancement of Blood Management'),
(61924, 'https://ror.org/02a5vfy19', 'en', 1, 'https://ror.org/02a5vfy19 Hunan Academy of Traditional Chinese Medicine ę¹–å—ēœäø­åŒ»čÆē ”ē©¶é™¢'),
(61925, 'https://ror.org/02a7ejh44', 'no_lang_code', 1, 'https://ror.org/02a7ejh44 Stragen (France)'),
(61926, 'https://ror.org/02a8scr35', 'no_lang_code', 1, 'https://ror.org/02a8scr35 Veikkaus (Finland)'),
(61927, 'https://ror.org/02a8zfv27', 'en', 1, 'https://ror.org/02a8zfv27 Hokotehi Moriori Trust'),
(61928, 'https://ror.org/02a9kts05', 'no_lang_code', 1, 'https://ror.org/02a9kts05 Baxter (Colombia)'),
(61929, 'https://ror.org/02a9re713', 'en', 1, 'https://ror.org/02a9re713 Moebius Syndrome Foundation'),
(61930, 'https://ror.org/02abmp507', 'en', 1, 'https://ror.org/02abmp507 United States Postal Service Office of Inspector General'),
(61931, 'https://ror.org/02aers703', 'en', 1, 'https://ror.org/02aers703 Gemstone Foundation'),
(61932, 'https://ror.org/02agbat11', 'en', 1, 'https://ror.org/02agbat11 Wellington Aboriginal Corporation Health Service'),
(61933, 'https://ror.org/02ahksm63', 'de', 1, 'https://ror.org/02ahksm63 Diakonie Baden'),
(61934, 'https://ror.org/02ak4m037', 'fr', 1, 'https://ror.org/02ak4m037 Institut de CancƩrologie de Bourgogne'),
(61935, 'https://ror.org/02amn3y43', 'cs', 1, 'https://ror.org/02amn3y43 Committee of Good Will - Olga Havel Foundation Výbor dobré vůle Nadace Olgy Havlové'),
(61936, 'https://ror.org/02apyk545', 'en', 1, 'https://ror.org/02apyk545 Orygen'),
(61937, 'https://ror.org/02asz3j87', 'en', 1, 'https://ror.org/02asz3j87 Stiftung Swiss Foundation for Excellence and Talent in Biomedical Research Swiss Foundation for Excellence and Talent in Biomedical Research'),
(61938, 'https://ror.org/02awhp844', 'en', 1, 'https://ror.org/02awhp844 Vision Specialists of Michigan'),
(61939, 'https://ror.org/02awj9960', 'de', 1, 'https://ror.org/02awj9960 Forschungsinstitut Havelhƶhe'),
(61940, 'https://ror.org/02axh0j46', 'nl', 1, 'https://ror.org/02axh0j46 PsyQ'),
(61941, 'https://ror.org/02b082946', 'pt', 1, 'https://ror.org/02b082946 Hospital UniversitƔrio Oswaldo Cruz'),
(61942, 'https://ror.org/02b0zvv74', 'en', 1, 'https://ror.org/02b0zvv74 Instituto Alexander Fleming'),
(61943, 'https://ror.org/02b184226', 'en', 1, 'https://ror.org/02b184226 Niagara Falls Memorial Medical Center'),
(61944, 'https://ror.org/02b2vbn56', 'en', 1, 'https://ror.org/02b2vbn56 Saud Al-babtain Cardiac Centre Ł…Ų±ŁƒŲ² سعود Ų§Ł„ŲØŲ§ŲØŲ·ŁŠŁ† للقلب'),
(61945, 'https://ror.org/02b3f5j20', 'no_lang_code', 1, 'https://ror.org/02b3f5j20 Apollo Endosurgery (United States)'),
(61946, 'https://ror.org/02b3gtx40', 'it', 1, 'https://ror.org/02b3gtx40 Ente Regionale per il Diritto allo Studio Universitario del Piemonte'),
(61947, 'https://ror.org/02b3z0y06', 'de', 1, 'https://ror.org/02b3z0y06 Asklepios Kliniken Schildautal'),
(61948, 'https://ror.org/02b5w5t35', 'en', 1, 'https://ror.org/02b5w5t35 American Arbitration Association'),
(61949, 'https://ror.org/02b6wm085', 'en', 1, 'https://ror.org/02b6wm085 Sanford Broadway Medical Center'),
(61950, 'https://ror.org/02b941k82', 'no_lang_code', 1, 'https://ror.org/02b941k82 Korian (Germany)'),
(61951, 'https://ror.org/02b9h9j24', 'nl', 1, 'https://ror.org/02b9h9j24 GGz Breburg'),
(61952, 'https://ror.org/02b9nqj69', 'no_lang_code', 1, 'https://ror.org/02b9nqj69 Bluewater International (United States)'),
(61953, 'https://ror.org/02bc7xp68', 'en', 1, 'https://ror.org/02bc7xp68 Dutch Healthcare Authority Nederlandse Zorgautoriteit'),
(61954, 'https://ror.org/02bd5jp47', 'en', 1, 'https://ror.org/02bd5jp47 Institute for the Study of Urologic Diseases Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪœĪµĪ»Ī­Ļ„Ī·Ļ‚ ĪŸĻ…ĻĪæĪ»ĪæĪ³Ī¹ĪŗĻŽĪ½ Ī Ī±ĪøĪ®ĻƒĪµĻ‰Ī½'),
(61955, 'https://ror.org/02bec1n20', 'en', 1, 'https://ror.org/02bec1n20 Milwaukee Emergency Center for Animals'),
(61956, 'https://ror.org/02bexj159', 'no_lang_code', 1, 'https://ror.org/02bexj159 Lead Chemical (Japan)'),
(61957, 'https://ror.org/02bh05k02', 'no_lang_code', 1, 'https://ror.org/02bh05k02 Chemo (Spain)'),
(61958, 'https://ror.org/02bjfq514', 'no_lang_code', 1, 'https://ror.org/02bjfq514 MAA Laboratories (United States)'),
(61959, 'https://ror.org/02bjyz323', 'en', 1, 'https://ror.org/02bjyz323 Hebei University of Environmental Engineering ę²³åŒ—ēŽÆå¢ƒå·„ēØ‹å­¦é™¢'),
(61960, 'https://ror.org/02bkhhg93', 'en', 1, 'https://ror.org/02bkhhg93 Arthritis and Rheumatism Associates'),
(61961, 'https://ror.org/02bkjp178', 'no_lang_code', 1, 'https://ror.org/02bkjp178 Max Zeller Sƶhne (Switzerland)'),
(61962, 'https://ror.org/02braec51', 'en', 1, 'https://ror.org/02braec51 Dutch Expert Centre for Screening Landelijk ReferentieCentrum voor Bevolkingsonderzoek'),
(61963, 'https://ror.org/02bt8sv61', 'en', 1, 'https://ror.org/02bt8sv61 Cacapon Institute'),
(61964, 'https://ror.org/02bttzs67', 'pt', 1, 'https://ror.org/02bttzs67 Instituto Brasiliense de Otorrinolaringologia'),
(61965, 'https://ror.org/02bwxd425', 'no_lang_code', 1, 'https://ror.org/02bwxd425 Applied Dynamics International (United States)'),
(61966, 'https://ror.org/02bx28580', 'en', 1, 'https://ror.org/02bx28580 Dermatological Society of Thailand ąøŖąø”ąø²ąø„ąø”ą¹ąøžąø—ąø¢ą¹Œąøœąø“ąø§ąø«ąø™ąø±ąø‡ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(61967, 'https://ror.org/02bxvq813', 'de', 1, 'https://ror.org/02bxvq813 Klinik und Poliklinik für Frauenheilkunde und Fortpflanzungsmedizin'),
(61968, 'https://ror.org/02by0qa70', 'az', 1, 'https://ror.org/02by0qa70 Akademik Zərifə ʏliyeva adına Milli Oftalmologiya Mərkəzi'),
(61969, 'https://ror.org/02bzsgg26', 'en', 1, 'https://ror.org/02bzsgg26 Association of University Presses'),
(61970, 'https://ror.org/02c02vy89', 'en', 1, 'https://ror.org/02c02vy89 African Institute for Mathematical Sciences Taasisi ya Afrika ya Sayansi ya Hisabati'),
(61971, 'https://ror.org/02c0af132', 'en', 1, 'https://ror.org/02c0af132 Indiana State Museum'),
(61972, 'https://ror.org/02c0pn910', 'no_lang_code', 1, 'https://ror.org/02c0pn910 Winclove Probiotics (Netherlands)'),
(61973, 'https://ror.org/02c19c733', 'no_lang_code', 1, 'https://ror.org/02c19c733 Femeda (United Kingdom)'),
(61974, 'https://ror.org/02c1jfh03', 'de', 1, 'https://ror.org/02c1jfh03 Aenne Speck Stiftung'),
(61975, 'https://ror.org/02c2ejr08', 'en', 1, 'https://ror.org/02c2ejr08 National Black Graduate Student Association'),
(61976, 'https://ror.org/02c30a260', 'en', 1, 'https://ror.org/02c30a260 Republican Scientific and Practical Centre of Pulmonology and Tuberculosis Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр пульмонологии Šø Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»ŠµŠ·Š° Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŠ°Š½ŃŠŗŃ– навукова-практычны Ń†ŃŠ½Ń‚Ń€ ŠæŃƒŠ»ŃŒŠ¼Š°Š½Š°Š»Š¾Š³Ń–Ń– і Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»Ń‘Š·Ńƒ'),
(61977, 'https://ror.org/02c3t8t42', 'en', 1, 'https://ror.org/02c3t8t42 West Virginia Research Technology Park'),
(61978, 'https://ror.org/02c4a9n85', 'en', 1, 'https://ror.org/02c4a9n85 Yuma Oncology Center'),
(61979, 'https://ror.org/02c4vbg64', 'en', 1, 'https://ror.org/02c4vbg64 Maari Ma Health'),
(61980, 'https://ror.org/02c518c71', 'en', 1, 'https://ror.org/02c518c71 Swiss Society of Hypertension'),
(61981, 'https://ror.org/02c7gw327', 'en', 1, 'https://ror.org/02c7gw327 Thistle Foundation'),
(61982, 'https://ror.org/02c81d080', 'en', 1, 'https://ror.org/02c81d080 Institute for Rare and Neglected Diseases Drug Discovery'),
(61983, 'https://ror.org/02c9etv94', 'en', 1, 'https://ror.org/02c9etv94 West End Revitalization Association'),
(61984, 'https://ror.org/02c9xpj15', 'en', 1, 'https://ror.org/02c9xpj15 National Stroke Association'),
(61985, 'https://ror.org/02cagam23', 'en', 1, 'https://ror.org/02cagam23 MultiCare Gig Harbor Medical Park'),
(61986, 'https://ror.org/02ccsj972', 'de', 1, 'https://ror.org/02ccsj972 Cnopf Children''s Hospital Cnopf“sche Kinderklinik'),
(61987, 'https://ror.org/02cdcxq67', 'es', 1, 'https://ror.org/02cdcxq67 Instituto de Salud de Bucaramanga'),
(61988, 'https://ror.org/02cejc171', 'en', 1, 'https://ror.org/02cejc171 Guangxi Normal University for Nationalities'),
(61989, 'https://ror.org/02ceryg42', 'en', 1, 'https://ror.org/02ceryg42 Belgian Society for Pneumology Belgische Vereniging voor Pneumologie'),
(61990, 'https://ror.org/02cesks36', 'en', 1, 'https://ror.org/02cesks36 Family Service Agency of the Central Coast'),
(61991, 'https://ror.org/02cf8gj49', 'no_lang_code', 1, 'https://ror.org/02cf8gj49 IBSA Farmaceutici (Italy)'),
(61992, 'https://ror.org/02cfx3y90', 'en', 1, 'https://ror.org/02cfx3y90 Community Information, Empowerment and Transparency'),
(61993, 'https://ror.org/02chsc169', 'fr', 1, 'https://ror.org/02chsc169 Centre Hospitalier CompiĆØgne-Noyon'),
(61994, 'https://ror.org/02cj39680', 'en', 1, 'https://ror.org/02cj39680 Malheur Field Station'),
(61995, 'https://ror.org/02ckr4v59', 'ca', 1, 'https://ror.org/02ckr4v59 Collegi Oficial d''Infermeres i Infermers de Barcelona'),
(61996, 'https://ror.org/02cn88225', 'en', 1, 'https://ror.org/02cn88225 Boulder Institute for Sports Medicine'),
(61997, 'https://ror.org/02cnwya81', 'no_lang_code', 1, 'https://ror.org/02cnwya81 Nordic Sugar (Finland)'),
(61998, 'https://ror.org/02cp0yq73', 'no_lang_code', 1, 'https://ror.org/02cp0yq73 Cleveland Research (United States)'),
(61999, 'https://ror.org/02cqykx88', 'en', 1, 'https://ror.org/02cqykx88 International Society of Service Innovation Professionals'),
(62000, 'https://ror.org/02crgsc42', 'no_lang_code', 1, 'https://ror.org/02crgsc42 Innospense (Netherlands)'),
(62001, 'https://ror.org/02csejj07', 'en', 1, 'https://ror.org/02csejj07 Chinese People ''s Liberation Army No.455 Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬å››äŗ”äŗ”åŒ»é™¢'),
(62002, 'https://ror.org/02cw3t849', 'en', 1, 'https://ror.org/02cw3t849 Suncoast Hospice Institute'),
(62003, 'https://ror.org/02cwrcd13', 'nl', 1, 'https://ror.org/02cwrcd13 Stichting Gezondheidscentra Eindhoven'),
(62004, 'https://ror.org/02cy2d039', 'en', 1, 'https://ror.org/02cy2d039 Westlake Health Center'),
(62005, 'https://ror.org/02czvz038', 'no', 1, 'https://ror.org/02czvz038 Norsk Ergoterapeutforbund Norwegian Occupational Therapist Association - Occupational Therapists'),
(62006, 'https://ror.org/02d0b6k80', 'en', 1, 'https://ror.org/02d0b6k80 Association Canadienne des Greffes Canadian Transplant Association'),
(62007, 'https://ror.org/02d1y4603', 'pt', 1, 'https://ror.org/02d1y4603 Hospital Ernesto Dornelles'),
(62008, 'https://ror.org/02d21y725', 'en', 1, 'https://ror.org/02d21y725 Rice Memorial Hospital'),
(62009, 'https://ror.org/02d4f0r15', 'no_lang_code', 1, 'https://ror.org/02d4f0r15 Fazer (Finland)'),
(62010, 'https://ror.org/02d5bc995', 'pt', 1, 'https://ror.org/02d5bc995 Instituto da Visão Vision Institute'),
(62011, 'https://ror.org/02d6kbk83', 'en', 1, 'https://ror.org/02d6kbk83 Marienhospital Bottrop'),
(62012, 'https://ror.org/02d741577', 'fr', 1, 'https://ror.org/02d741577 Centre Hospitalier RƩgional de Metz-Thionville'),
(62013, 'https://ror.org/02d750026', 'no_lang_code', 1, 'https://ror.org/02d750026 Fossil Energy Research (United States)'),
(62014, 'https://ror.org/02d893y24', 'en', 1, 'https://ror.org/02d893y24 Medical Mission Institute Missionsärztliches Institut Würzburg'),
(62015, 'https://ror.org/02d950z41', 'en', 1, 'https://ror.org/02d950z41 Altasciences Clinical Research Vince & Associates'),
(62016, 'https://ror.org/02d9e4911', 'de', 1, 'https://ror.org/02d9e4911 Universitätsklinik für Frauenheilkunde und Geburtshilfe'),
(62017, 'https://ror.org/02dbytc62', 'no_lang_code', 1, 'https://ror.org/02dbytc62 Novartis (Mexico)'),
(62018, 'https://ror.org/02dc84z12', 'en', 1, 'https://ror.org/02dc84z12 International Archaeological Research Institute'),
(62019, 'https://ror.org/02devh349', 'de', 1, 'https://ror.org/02devh349 Schƶn Klinik Neustadt'),
(62020, 'https://ror.org/02dfbwd57', 'no_lang_code', 1, 'https://ror.org/02dfbwd57 Amedrix (Germany)'),
(62021, 'https://ror.org/02dfv3292', 'en', 1, 'https://ror.org/02dfv3292 Portsmouth Regional Hospital'),
(62022, 'https://ror.org/02dg40g44', 'en', 1, 'https://ror.org/02dg40g44 St. Petersburg State Budgetary Healthcare Institution "City Polyclinic No. 106"'),
(62023, 'https://ror.org/02dgz7m30', 'en', 1, 'https://ror.org/02dgz7m30 Tahija Foundation, Yayasan Tahija'),
(62024, 'https://ror.org/02dhsf930', 'no_lang_code', 1, 'https://ror.org/02dhsf930 CSD Nano (United States)'),
(62025, 'https://ror.org/02dn5sb95', 'no_lang_code', 1, 'https://ror.org/02dn5sb95 Medivis (Italy)'),
(62026, 'https://ror.org/02dn5zf89', 'en', 1, 'https://ror.org/02dn5zf89 American Psychopathological Association'),
(62027, 'https://ror.org/02dndmg40', 'en', 1, 'https://ror.org/02dndmg40 Advanced Heart and Vascular Institute of Hunterdon'),
(62028, 'https://ror.org/02dpnb389', 'fr', 1, 'https://ror.org/02dpnb389 Clinatec'),
(62029, 'https://ror.org/02dpw9611', 'en', 1, 'https://ror.org/02dpw9611 Digital Harbor Foundation'),
(62030, 'https://ror.org/02dq5y823', 'no_lang_code', 1, 'https://ror.org/02dq5y823 Bionorica (Austria)'),
(62031, 'https://ror.org/02dqsp291', 'de', 1, 'https://ror.org/02dqsp291 UniversitƤts-Frauenklinik des Saarlandes'),
(62032, 'https://ror.org/02dqwa472', 'en', 1, 'https://ror.org/02dqwa472 SerenaGroup Research Institute'),
(62033, 'https://ror.org/02drjk215', 'no_lang_code', 1, 'https://ror.org/02drjk215 NestlƩ (Netherlands)'),
(62034, 'https://ror.org/02dsghr34', 'no_lang_code', 1, 'https://ror.org/02dsghr34 Happiest Baby (United States)'),
(62035, 'https://ror.org/02dt6qg89', 'no_lang_code', 1, 'https://ror.org/02dt6qg89 Organ Recovery Systems (Belgium)'),
(62036, 'https://ror.org/02dts1820', 'no_lang_code', 1, 'https://ror.org/02dts1820 Delpor (United States)'),
(62037, 'https://ror.org/02dtse057', 'en', 1, 'https://ror.org/02dtse057 The Ageless Aesthetic Institute'),
(62038, 'https://ror.org/02dv2bn85', 'de', 1, 'https://ror.org/02dv2bn85 Sanatorium Kilchberg'),
(62039, 'https://ror.org/02dx38m31', 'en', 1, 'https://ror.org/02dx38m31 Scientific Medical School Dr. Synergetic'),
(62040, 'https://ror.org/02dyt2y09', 'en', 1, 'https://ror.org/02dyt2y09 Public Laboratory for Open Technology and Science'),
(62041, 'https://ror.org/02e6fp975', 'en', 1, 'https://ror.org/02e6fp975 Copper Queen Community Hospital'),
(62042, 'https://ror.org/02e9sbg40', 'de', 1, 'https://ror.org/02e9sbg40 Deutscher Berufsverband Rettungsdienst e.V'),
(62043, 'https://ror.org/02ea83075', 'en', 1, 'https://ror.org/02ea83075 Neurological Research Institute'),
(62044, 'https://ror.org/02ebs9s22', 'es', 1, 'https://ror.org/02ebs9s22 Instituto MƩdico TinerfeƱo'),
(62045, 'https://ror.org/02ebx7v45', 'en', 1, 'https://ror.org/02ebx7v45 FrontiĆØre humaine International Human Frontier Science Program Organization'),
(62046, 'https://ror.org/02em8e723', 'en', 1, 'https://ror.org/02em8e723 Brunswick Community College'),
(62047, 'https://ror.org/02emvpp12', 'no_lang_code', 1, 'https://ror.org/02emvpp12 Sarossa (Jersey)'),
(62048, 'https://ror.org/02en9dz36', 'no_lang_code', 1, 'https://ror.org/02en9dz36 Valeas (Italy)'),
(62049, 'https://ror.org/02et0er40', 'en', 1, 'https://ror.org/02et0er40 Institut Jaques-Dalcroze'),
(62050, 'https://ror.org/02et29s96', 'no_lang_code', 1, 'https://ror.org/02et29s96 Remedent (Belgium)'),
(62051, 'https://ror.org/02etw4c89', 'nl', 1, 'https://ror.org/02etw4c89 Vereniging EMDR'),
(62052, 'https://ror.org/02evzb864', 'en', 1, 'https://ror.org/02evzb864 JES & Co'),
(62053, 'https://ror.org/02ewxar05', 'en', 1, 'https://ror.org/02ewxar05 School for Field Studies'),
(62054, 'https://ror.org/02eyfd807', 'en', 1, 'https://ror.org/02eyfd807 Sacred Heart Medical Center at RiverBend'),
(62055, 'https://ror.org/02ez32078', 'en', 1, 'https://ror.org/02ez32078 Stereology Resource Center'),
(62056, 'https://ror.org/02ez87631', 'en', 1, 'https://ror.org/02ez87631 Samara City Children''s Clinical Hospital No. 1 named after NN Ivanova Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–1 им. Š.Š. Иванов'),
(62057, 'https://ror.org/02ezjve56', 'en', 1, 'https://ror.org/02ezjve56 Canadian College of Massage and Hydrotherapy'),
(62058, 'https://ror.org/02f12qk21', 'en', 1, 'https://ror.org/02f12qk21 The Korean Society of Pediatric Hematology-Oncology'),
(62059, 'https://ror.org/02f3qjz81', 'en', 1, 'https://ror.org/02f3qjz81 PaleoCultural Research Group'),
(62060, 'https://ror.org/02f3rf591', 'en', 1, 'https://ror.org/02f3rf591 Russian Venture Company Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š²ŠµŠ½Ń‡ŃƒŃ€Š½Š°Ń ŠŗŠ¾Š¼ŠæŠ°Š½ŠøŃ'),
(62061, 'https://ror.org/02f4m9w39', 'en', 1, 'https://ror.org/02f4m9w39 Lake Huron Medical Center'),
(62062, 'https://ror.org/02f5ccn55', 'no_lang_code', 1, 'https://ror.org/02f5ccn55 Sun Pharma (United States)'),
(62063, 'https://ror.org/02f5z8140', 'en', 1, 'https://ror.org/02f5z8140 Alberta Hip and Knee Clinic'),
(62064, 'https://ror.org/02feh5a48', 'no_lang_code', 1, 'https://ror.org/02feh5a48 SHINE Medical Technologies (United States)'),
(62065, 'https://ror.org/02ffj8167', 'es', 1, 'https://ror.org/02ffj8167 Instituto Hispalense de Pediatria'),
(62066, 'https://ror.org/02ffpzw40', 'no_lang_code', 1, 'https://ror.org/02ffpzw40 Spectrum Scientific (United States)'),
(62067, 'https://ror.org/02fgqtv27', 'no_lang_code', 1, 'https://ror.org/02fgqtv27 LighTopTech (United States)'),
(62068, 'https://ror.org/02fj56008', 'no_lang_code', 1, 'https://ror.org/02fj56008 Vestergaard (Switzerland)'),
(62069, 'https://ror.org/02fjtnt35', 'en', 1, 'https://ror.org/02fjtnt35 Southern Health and Social Care Trust'),
(62070, 'https://ror.org/02fm2jq60', 'en', 1, 'https://ror.org/02fm2jq60 Maine Hospital Association'),
(62071, 'https://ror.org/02fmwa274', 'en', 1, 'https://ror.org/02fmwa274 Brain and Cognition Discovery Foundation'),
(62072, 'https://ror.org/02fp4k302', 'en', 1, 'https://ror.org/02fp4k302 City Hospital ā„– 1 named after. ON. Semashko'),
(62073, 'https://ror.org/02fqx5560', 'no_lang_code', 1, 'https://ror.org/02fqx5560 Implandata Ophthalmic Products (Germany)'),
(62074, 'https://ror.org/02fxb8p51', 'de', 1, 'https://ror.org/02fxb8p51 Familie Mehdorn Stiftung'),
(62075, 'https://ror.org/02fxhk514', 'nl', 1, 'https://ror.org/02fxhk514 Nederlandse Vereniging voor Plastische Chirurgie'),
(62076, 'https://ror.org/02fyhvd52', 'nl', 1, 'https://ror.org/02fyhvd52 Fonds de Gavere'),
(62077, 'https://ror.org/02fyj2e56', 'en', 1, 'https://ror.org/02fyj2e56 Calderdale and Huddersfield NHS Foundation Trust'),
(62078, 'https://ror.org/02g08q683', 'nl', 1, 'https://ror.org/02g08q683 Nederlands Paramedisch Instituut'),
(62079, 'https://ror.org/02g1dfh62', 'no_lang_code', 1, 'https://ror.org/02g1dfh62 Fulltec (Switzerland)'),
(62080, 'https://ror.org/02g2dv858', 'en', 1, 'https://ror.org/02g2dv858 New England Council'),
(62081, 'https://ror.org/02g4bxh77', 'en', 1, 'https://ror.org/02g4bxh77 Medbase'),
(62082, 'https://ror.org/02g7z3v47', 'no_lang_code', 1, 'https://ror.org/02g7z3v47 List Biological Laboratories (United States)'),
(62083, 'https://ror.org/02g9smc25', 'no_lang_code', 1, 'https://ror.org/02g9smc25 VRR Diagnostic Services (India)'),
(62084, 'https://ror.org/02gaw4292', 'de', 1, 'https://ror.org/02gaw4292 Verwaltungs-Berufsgenossenschaft'),
(62085, 'https://ror.org/02gc95f39', 'en', 1, 'https://ror.org/02gc95f39 Omid Fertility Clinic Ś©Ł„ŪŒŁ†ŪŒŚ© باروری Ų§Ł…ŪŒŲÆ'),
(62086, 'https://ror.org/02gee2j04', 'en', 1, 'https://ror.org/02gee2j04 Center for Public Service Communications'),
(62087, 'https://ror.org/02gfcne25', 'en', 1, 'https://ror.org/02gfcne25 Eidos Education'),
(62088, 'https://ror.org/02gg23171', 'de', 1, 'https://ror.org/02gg23171 Medizinisches Versorgungszentrum Prof. Mathey, Prof. Schofer'),
(62089, 'https://ror.org/02gx2rj64', 'en', 1, 'https://ror.org/02gx2rj64 Tahoe Regional Planning Agency'),
(62090, 'https://ror.org/02gxv2217', 'en', 1, 'https://ror.org/02gxv2217 Pedorthic Research Foundation of Canada'),
(62091, 'https://ror.org/02gzjez53', 'en', 1, 'https://ror.org/02gzjez53 Indiana Athletic Trainers Association'),
(62092, 'https://ror.org/02h07t345', 'en', 1, 'https://ror.org/02h07t345 Queen Square Radiosurgery Centre'),
(62093, 'https://ror.org/02h1dt688', 'de', 1, 'https://ror.org/02h1dt688 Klinikum Frankfurt Hƶchst'),
(62094, 'https://ror.org/02h2r8882', 'en', 1, 'https://ror.org/02h2r8882 Central Council for Research in Yoga & Naturopathy'),
(62095, 'https://ror.org/02h3k6w11', 'en', 1, 'https://ror.org/02h3k6w11 The Environmental Literacy Council'),
(62096, 'https://ror.org/02h420k27', 'no_lang_code', 1, 'https://ror.org/02h420k27 Nuga Medical (South Korea)'),
(62097, 'https://ror.org/02h4hqt24', 'en', 1, 'https://ror.org/02h4hqt24 Alberta Bone and Joint Health Institute'),
(62098, 'https://ror.org/02h7wt813', 'en', 1, 'https://ror.org/02h7wt813 Scottish School of Primary Care'),
(62099, 'https://ror.org/02h8c3526', 'en', 1, 'https://ror.org/02h8c3526 Cancer Care Specialists of Illinois'),
(62100, 'https://ror.org/02hanc252', 'no_lang_code', 1, 'https://ror.org/02hanc252 Social Security Office (Thailand)'),
(62101, 'https://ror.org/02hapf869', 'en', 1, 'https://ror.org/02hapf869 Institute of Early Childhood Research Staatsinstitut für Frühpädagogik'),
(62102, 'https://ror.org/02hbjq124', 'no_lang_code', 1, 'https://ror.org/02hbjq124 Network Foundation Technologies (United States)'),
(62103, 'https://ror.org/02hbmed43', 'no_lang_code', 1, 'https://ror.org/02hbmed43 Safety Management Systems Aotearoa (New Zealand)'),
(62104, 'https://ror.org/02hcvyf40', 'nl', 1, 'https://ror.org/02hcvyf40 HSK Groep'),
(62105, 'https://ror.org/02hd7d161', 'en', 1, 'https://ror.org/02hd7d161 Deyang Stomatological Hospital å¾·é˜³å£č…”åŒ»é™¢'),
(62106, 'https://ror.org/02he45g63', 'en', 1, 'https://ror.org/02he45g63 Discovery Center of Idaho'),
(62107, 'https://ror.org/02hfr4n62', 'no_lang_code', 1, 'https://ror.org/02hfr4n62 Hamburg Port Consulting (Germany)'),
(62108, 'https://ror.org/02hgpw430', 'en', 1, 'https://ror.org/02hgpw430 Association of the British Pharmaceutical Industry'),
(62109, 'https://ror.org/02hk1y795', 'en', 1, 'https://ror.org/02hk1y795 TargetCancer Foundation'),
(62110, 'https://ror.org/02hk27r53', 'en', 1, 'https://ror.org/02hk27r53 Asian Institute of Medical Sciences'),
(62111, 'https://ror.org/02hngq018', 'en', 1, 'https://ror.org/02hngq018 Centre de fertilitƩ d''Ottawa Ottawa Fertility Centre'),
(62112, 'https://ror.org/02hp0cc95', 'en', 1, 'https://ror.org/02hp0cc95 Health & Motion'),
(62113, 'https://ror.org/02hp35j69', 'en', 1, 'https://ror.org/02hp35j69 RDS Partners'),
(62114, 'https://ror.org/02hpc5z27', 'en', 1, 'https://ror.org/02hpc5z27 Maralinga Tjarutja'),
(62115, 'https://ror.org/02hptfp27', 'no_lang_code', 1, 'https://ror.org/02hptfp27 Caduceus Intelligence Corporation (United States)'),
(62116, 'https://ror.org/02hrfw153', 'es', 1, 'https://ror.org/02hrfw153 Hospital Regional de Concepción'),
(62117, 'https://ror.org/02hrkdj18', 'no_lang_code', 1, 'https://ror.org/02hrkdj18 Willow Wood (United States)'),
(62118, 'https://ror.org/02htkw777', 'de', 1, 'https://ror.org/02htkw777 Stiftung Chance, Stiftung Chance für das kritisch kranke Kind'),
(62119, 'https://ror.org/02htmn026', 'en', 1, 'https://ror.org/02htmn026 Civil Service Council مجلس الخدمة Ų§Ł„Ł…ŲÆŁ†ŁŠŲ©'),
(62120, 'https://ror.org/02hxr7787', 'en', 1, 'https://ror.org/02hxr7787 Cancer Centers of Southwest Oklahoma'),
(62121, 'https://ror.org/02hyv7840', 'no_lang_code', 1, 'https://ror.org/02hyv7840 Columbia Asia'),
(62122, 'https://ror.org/02j0fhg41', 'de', 1, 'https://ror.org/02j0fhg41 Moritz Klinik'),
(62123, 'https://ror.org/02j0qcn83', 'en', 1, 'https://ror.org/02j0qcn83 Institute for the Blind and Partially Sighted Instituttet for Blinde og Svagsynede'),
(62124, 'https://ror.org/02j0s2m43', 'en', 1, 'https://ror.org/02j0s2m43 Barney''s Pharmacy'),
(62125, 'https://ror.org/02j2kw336', 'no_lang_code', 1, 'https://ror.org/02j2kw336 Molteni Farmaceutici (Italy)'),
(62126, 'https://ror.org/02j2pa220', 'en', 1, 'https://ror.org/02j2pa220 Delray Medical Center'),
(62127, 'https://ror.org/02j3yct66', 'en', 1, 'https://ror.org/02j3yct66 Interuniversity Graduate School of Psychometrics and Sociometrics'),
(62128, 'https://ror.org/02j45y774', 'de', 1, 'https://ror.org/02j45y774 St. Hedwig-Krankenhaus'),
(62129, 'https://ror.org/02j4hfc40', 'no_lang_code', 1, 'https://ror.org/02j4hfc40 Glaukos (United States)'),
(62130, 'https://ror.org/02j5f0439', 'es', 1, 'https://ror.org/02j5f0439 Fundación Neumológica Colombiana'),
(62131, 'https://ror.org/02j787g88', 'en', 1, 'https://ror.org/02j787g88 Skin Science Institute'),
(62132, 'https://ror.org/02jddhc12', 'en', 1, 'https://ror.org/02jddhc12 Laguna Research'),
(62133, 'https://ror.org/02je6ph26', 'fr', 1, 'https://ror.org/02je6ph26 Institut Paul Bocuse'),
(62134, 'https://ror.org/02jf05b83', 'en', 1, 'https://ror.org/02jf05b83 The 21st Century Partnership for STEM Education'),
(62135, 'https://ror.org/02jgqwc20', 'en', 1, 'https://ror.org/02jgqwc20 Imperial College London Diabetes Centre'),
(62136, 'https://ror.org/02jgzx216', 'en', 1, 'https://ror.org/02jgzx216 The Institute of Addiction Medicine'),
(62137, 'https://ror.org/02jhtag43', 'en', 1, 'https://ror.org/02jhtag43 Sun Research Institute'),
(62138, 'https://ror.org/02jk45x82', 'en', 1, 'https://ror.org/02jk45x82 Health Strategy and Policy Institute Viện Chiįŗæn lược vĆ  ChĆ­nh sĆ”ch Y tįŗæ'),
(62139, 'https://ror.org/02jky7c94', 'no_lang_code', 1, 'https://ror.org/02jky7c94 SkƄnemejerier (Sweden)'),
(62140, 'https://ror.org/02jng7h30', 'en', 1, 'https://ror.org/02jng7h30 Kaiser Permanente Gaithersburg Medical Center'),
(62141, 'https://ror.org/02jnh1883', 'en', 1, 'https://ror.org/02jnh1883 Canadian Sugar Institute'),
(62142, 'https://ror.org/02jsea915', 'en', 1, 'https://ror.org/02jsea915 De Cavel Family SIDS Foundation'),
(62143, 'https://ror.org/02jwahm23', 'en', 1, 'https://ror.org/02jwahm23 Doctors with Africa Cuamm Medici con l’Africa Cuamm'),
(62144, 'https://ror.org/02jwgg565', 'en', 1, 'https://ror.org/02jwgg565 National Association of Statutory Health Insurance Physicians'),
(62145, 'https://ror.org/02jwr3j75', 'en', 1, 'https://ror.org/02jwr3j75 City Clinical Oncology Center ГороГской клинический онкологический Гиспансер'),
(62146, 'https://ror.org/02k3h7m33', 'en', 1, 'https://ror.org/02k3h7m33 The Stop ALD Foundation'),
(62147, 'https://ror.org/02k3jph89', 'pt', 1, 'https://ror.org/02k3jph89 Instituto de CiĆŖncias FarmacĆŖuticas'),
(62148, 'https://ror.org/02k4egv76', 'en', 1, 'https://ror.org/02k4egv76 Pacific Fertility Center'),
(62149, 'https://ror.org/02k6byd47', 'da', 1, 'https://ror.org/02k6byd47 Kong Christian X''s Gigthospital'),
(62150, 'https://ror.org/02k6hv566', 'en', 1, 'https://ror.org/02k6hv566 Shahid Gangalal National Heart Centre'),
(62151, 'https://ror.org/02k7x9210', 'en', 1, 'https://ror.org/02k7x9210 The Korean Academy of Tuberculosis and Respiratory Diseases'),
(62152, 'https://ror.org/02kaggc24', 'no_lang_code', 1, 'https://ror.org/02kaggc24 Univercell-Biosolutions (France)'),
(62153, 'https://ror.org/02kbfhq14', 'de', 1, 'https://ror.org/02kbfhq14 Laserklinik Karlsruhe'),
(62154, 'https://ror.org/02kc8gm46', 'en', 1, 'https://ror.org/02kc8gm46 Brisbane Hand & Upper Limb Research Institute'),
(62155, 'https://ror.org/02kcjwx60', 'en', 1, 'https://ror.org/02kcjwx60 Suburban Community Hospital'),
(62156, 'https://ror.org/02kctrc72', 'nl', 1, 'https://ror.org/02kctrc72 Stichting Wetenschappelijk Onderzoek het Oogziekenhuis'),
(62157, 'https://ror.org/02ken4f88', 'en', 1, 'https://ror.org/02ken4f88 Vignana Jyothi Institute of Management'),
(62158, 'https://ror.org/02kf9ya90', 'no_lang_code', 1, 'https://ror.org/02kf9ya90 Baxter (Italy)'),
(62159, 'https://ror.org/02kfmqh26', 'de', 1, 'https://ror.org/02kfmqh26 ZahnƤrzte an der Kleinmachnower Schleuse Stahnsdorf'),
(62160, 'https://ror.org/02kh18p78', 'en', 1, 'https://ror.org/02kh18p78 Elementary Institute of Science'),
(62161, 'https://ror.org/02kj91m96', 'en', 1, 'https://ror.org/02kj91m96 Leipzig Heart Institute'),
(62162, 'https://ror.org/02kj9za59', 'nl', 1, 'https://ror.org/02kj9za59 GGD West-Brabant, Gemeentelijke gezondheidsdienst West-Brabant'),
(62163, 'https://ror.org/02kjx8221', 'no_lang_code', 1, 'https://ror.org/02kjx8221 Dr. Loges (Germany)'),
(62164, 'https://ror.org/02kp6ds19', 'en', 1, 'https://ror.org/02kp6ds19 Boulder Neurosurgical & Spine Associates'),
(62165, 'https://ror.org/02kpbdq88', 'en', 1, 'https://ror.org/02kpbdq88 Danish Society of Cardiology Dansk Cardiologisk Selskab'),
(62166, 'https://ror.org/02krjt890', 'en', 1, 'https://ror.org/02krjt890 Institute for Learning Innovation'),
(62167, 'https://ror.org/02ksqjt48', 'en', 1, 'https://ror.org/02ksqjt48 VitalStrategic Research Institute'),
(62168, 'https://ror.org/02kx02a45', 'en', 1, 'https://ror.org/02kx02a45 Mon Health Medical Center'),
(62169, 'https://ror.org/02kyv4s47', 'en', 1, 'https://ror.org/02kyv4s47 Ministry of National Health Services Regulation and Coordination وزارت ŲµŲ­ŲŖā€Žā€Ž'),
(62170, 'https://ror.org/02m0hdc77', 'en', 1, 'https://ror.org/02m0hdc77 Jesse & Julie Rasch Foundation'),
(62171, 'https://ror.org/02m6eba18', 'en', 1, 'https://ror.org/02m6eba18 Mountview Theatre School'),
(62172, 'https://ror.org/02m6w0m37', 'en', 1, 'https://ror.org/02m6w0m37 St. Agnes Hospital'),
(62173, 'https://ror.org/02m901r68', 'en', 1, 'https://ror.org/02m901r68 Abrams Eye Institute'),
(62174, 'https://ror.org/02mcwd725', 'en', 1, 'https://ror.org/02mcwd725 Bòrd SSN Dùn Phris agus an Gall-Ghaidhealaibh NHS Dumfries and Galloway'),
(62175, 'https://ror.org/02mdj2060', 'de', 1, 'https://ror.org/02mdj2060 Zentrum Überleben'),
(62176, 'https://ror.org/02mez3a16', 'de', 1, 'https://ror.org/02mez3a16 Integrierte Psychiatrie Winterthur'),
(62177, 'https://ror.org/02mfjm186', 'en', 1, 'https://ror.org/02mfjm186 VA Nasonova Scientific Research Institute of Rheumatology ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ревматологии Š¤Š”Š‘Š”Š˜. Вице-аГмирал ŠŠ°ŃŠ¾Š½Š¾Š²Š°Ā»'),
(62178, 'https://ror.org/02mfv5g23', 'en', 1, 'https://ror.org/02mfv5g23 Cancer Clinic'),
(62179, 'https://ror.org/02mgs7839', 'en', 1, 'https://ror.org/02mgs7839 ESE University Hospital San Jorge Pereira'),
(62180, 'https://ror.org/02mgzgr95', 'it', 1, 'https://ror.org/02mgzgr95 Istituto delle Scienze Neurologiche di Bologna'),
(62181, 'https://ror.org/02mj1v005', 'de', 1, 'https://ror.org/02mj1v005 Poliklinik für Präventive Zahnheilkunde und Kinderzahnheilkunde'),
(62182, 'https://ror.org/02mkrd102', 'no_lang_code', 1, 'https://ror.org/02mkrd102 Innovacell Biotechnologie (Austria)'),
(62183, 'https://ror.org/02mmpfj40', 'en', 1, 'https://ror.org/02mmpfj40 Bundesverband Deutscher ApothekerverbƤnde Federal Union of German Associations of Pharmacists'),
(62184, 'https://ror.org/02mpkkr38', 'en', 1, 'https://ror.org/02mpkkr38 Aboriginal Health Council of South Australia'),
(62185, 'https://ror.org/02mqqja67', 'de', 1, 'https://ror.org/02mqqja67 Lungenheilkunde München-Pasing'),
(62186, 'https://ror.org/02msncm75', 'no_lang_code', 1, 'https://ror.org/02msncm75 Zogenix (United Kingdom)'),
(62187, 'https://ror.org/02msz7b29', 'en', 1, 'https://ror.org/02msz7b29 Zankli Medical Centre'),
(62188, 'https://ror.org/02mtbpn10', 'en', 1, 'https://ror.org/02mtbpn10 NeuroModulation Technique'),
(62189, 'https://ror.org/02mtnaz94', 'en', 1, 'https://ror.org/02mtnaz94 Cyber Innovation Center'),
(62190, 'https://ror.org/02mwqcj16', 'en', 1, 'https://ror.org/02mwqcj16 Memorial Health System'),
(62191, 'https://ror.org/02my3ed83', 'en', 1, 'https://ror.org/02my3ed83 Institute of Health Management Pachod'),
(62192, 'https://ror.org/02mywds70', 'it', 1, 'https://ror.org/02mywds70 Consorzio Interuniversitario ReattivitĆ  Chimica e Catalisi'),
(62193, 'https://ror.org/02n0p7v71', 'en', 1, 'https://ror.org/02n0p7v71 Desert Institute For Spine Care'),
(62194, 'https://ror.org/02n172j55', 'en', 1, 'https://ror.org/02n172j55 MedDerm Associates');
INSERT INTO `rors` VALUES
(62195, 'https://ror.org/02n3gey39', 'en', 1, 'https://ror.org/02n3gey39 Institute for Advanced Laser Dentistry'),
(62196, 'https://ror.org/02n3wzn79', 'en', 1, 'https://ror.org/02n3wzn79 The Taiwanese Osteoporosis Association äø­čÆę°‘åœ‹éŖØč³Ŗē–é¬†ē—‡å­øęœƒ'),
(62197, 'https://ror.org/02n59hk56', 'en', 1, 'https://ror.org/02n59hk56 Australian Farm Institute'),
(62198, 'https://ror.org/02n5pfm79', 'no_lang_code', 1, 'https://ror.org/02n5pfm79 Alfasigma (Italy)'),
(62199, 'https://ror.org/02n9shp96', 'no_lang_code', 1, 'https://ror.org/02n9shp96 Dentaid (Spain)'),
(62200, 'https://ror.org/02nb5ap42', 'en', 1, 'https://ror.org/02nb5ap42 Deutsche Evangelische Institut für Altertumswissenschaft German Protestant Institute of Archaeology'),
(62201, 'https://ror.org/02ndam774', 'no_lang_code', 1, 'https://ror.org/02ndam774 Medspray (Netherlands)'),
(62202, 'https://ror.org/02nds3w86', 'en', 1, 'https://ror.org/02nds3w86 Methodist Children’s Hospital'),
(62203, 'https://ror.org/02neq6p97', 'en', 1, 'https://ror.org/02neq6p97 M.S.I. Foundation'),
(62204, 'https://ror.org/02nh1np55', 'en', 1, 'https://ror.org/02nh1np55 Kim''s Eye Hospital é‡‘ēœ¼ē§‘ē—…é™¢'),
(62205, 'https://ror.org/02nkfan21', 'en', 1, 'https://ror.org/02nkfan21 Clinical Evaluation Research Unit'),
(62206, 'https://ror.org/02nmj4h80', 'en', 1, 'https://ror.org/02nmj4h80 Roessingh Concern'),
(62207, 'https://ror.org/02nn2tc47', 'de', 1, 'https://ror.org/02nn2tc47 Arbeitsgemeinschaft Urologische Onkologie'),
(62208, 'https://ror.org/02nn5y377', 'fr', 1, 'https://ror.org/02nn5y377 HƓpital PrivƩ Jean Mermo'),
(62209, 'https://ror.org/02nqpk824', 'no_lang_code', 1, 'https://ror.org/02nqpk824 Advantageous Systems (United States)'),
(62210, 'https://ror.org/02nr63q87', 'en', 1, 'https://ror.org/02nr63q87 Psychotherapy & Movement'),
(62211, 'https://ror.org/02nray311', 'no_lang_code', 1, 'https://ror.org/02nray311 Meda (Germany)'),
(62212, 'https://ror.org/02nrkmk47', 'no_lang_code', 1, 'https://ror.org/02nrkmk47 Edison Agrosciences (United States)'),
(62213, 'https://ror.org/02nrv4053', 'en', 1, 'https://ror.org/02nrv4053 The Football Association'),
(62214, 'https://ror.org/02ntwx703', 'de', 1, 'https://ror.org/02ntwx703 Stiftung Irene'),
(62215, 'https://ror.org/02ntzaq32', 'en', 1, 'https://ror.org/02ntzaq32 International Society for Applied Cardiovascular Biology'),
(62216, 'https://ror.org/02nwfp582', 'en', 1, 'https://ror.org/02nwfp582 Russian Society of Cardiology Российское карГиологическое общество'),
(62217, 'https://ror.org/02nwyam20', 'no_lang_code', 1, 'https://ror.org/02nwyam20 Stryker (Netherlands)'),
(62218, 'https://ror.org/02nz06f09', 'en', 1, 'https://ror.org/02nz06f09 Noran Neurological Clinic'),
(62219, 'https://ror.org/02p046236', 'en', 1, 'https://ror.org/02p046236 Turner Eye Institute'),
(62220, 'https://ror.org/02p0etp25', 'en', 1, 'https://ror.org/02p0etp25 St. Joseph Heritage Medical Group'),
(62221, 'https://ror.org/02p2ybt36', 'no_lang_code', 1, 'https://ror.org/02p2ybt36 Stryker (Japan)'),
(62222, 'https://ror.org/02p6m2x11', 'en', 1, 'https://ror.org/02p6m2x11 The Piton Foundation'),
(62223, 'https://ror.org/02p9va007', 'id', 1, 'https://ror.org/02p9va007 Rumah Sakit Umum Haji Surabaya'),
(62224, 'https://ror.org/02paqmq68', 'de', 1, 'https://ror.org/02paqmq68 St. Vinzenz Kliniken Pfronten im AllgƤu'),
(62225, 'https://ror.org/02pd5tw33', 'en', 1, 'https://ror.org/02pd5tw33 Kenniscentrum Sport Knowledge Centre for Sport Netherlands'),
(62226, 'https://ror.org/02pe43019', 'en', 1, 'https://ror.org/02pe43019 National Asociation of General Practitioners in Bulgaria'),
(62227, 'https://ror.org/02pedxm79', 'en', 1, 'https://ror.org/02pedxm79 The Centre of Chinese Medicine'),
(62228, 'https://ror.org/02pfg4167', 'en', 1, 'https://ror.org/02pfg4167 International Association for Human Values'),
(62229, 'https://ror.org/02pg06c63', 'en', 1, 'https://ror.org/02pg06c63 CHRISTUS St. Vincent Regional Cancer Center'),
(62230, 'https://ror.org/02pg9t310', 'en', 1, 'https://ror.org/02pg9t310 PrimaryPlus'),
(62231, 'https://ror.org/02pj2bt04', 'en', 1, 'https://ror.org/02pj2bt04 Bucci Laser Vision Institute'),
(62232, 'https://ror.org/02pjd1n70', 'en', 1, 'https://ror.org/02pjd1n70 Children''s Hospital at Saint Francis'),
(62233, 'https://ror.org/02pjn5k45', 'de', 1, 'https://ror.org/02pjn5k45 Deutsches Institut für Telemedizin und Gesundheitsförderung'),
(62234, 'https://ror.org/02pndtz33', 'en', 1, 'https://ror.org/02pndtz33 Ohio Pediatric Research Association'),
(62235, 'https://ror.org/02pq1z922', 'en', 1, 'https://ror.org/02pq1z922 Behavioral Health of the Palm Beaches'),
(62236, 'https://ror.org/02pqj5664', 'no_lang_code', 1, 'https://ror.org/02pqj5664 Eurosets (Italy)'),
(62237, 'https://ror.org/02pqkyr67', 'en', 1, 'https://ror.org/02pqkyr67 New Jersey Psychological Association'),
(62238, 'https://ror.org/02psfb488', 'en', 1, 'https://ror.org/02psfb488 China Soong Ching Ling Foundation'),
(62239, 'https://ror.org/02psj8r24', 'en', 1, 'https://ror.org/02psj8r24 University Multipurpose Hospital for Active Treatment "Sveti Georgi" Университетската многопрофилна болница за активно лечение ā€žŠ”Š²ŠµŃ‚Šø Š“ŠµŠ¾Ń€Š³Šøā€œ'),
(62240, 'https://ror.org/02psykc67', 'de', 1, 'https://ror.org/02psykc67 Marienkrankenhaus Hamburg'),
(62241, 'https://ror.org/02pv1pj08', 'no_lang_code', 1, 'https://ror.org/02pv1pj08 Northern Therapeutics (Canada)'),
(62242, 'https://ror.org/02pzmtt36', 'en', 1, 'https://ror.org/02pzmtt36 Physician’s Hair Institute'),
(62243, 'https://ror.org/02q0ygf45', 'no_lang_code', 1, 'https://ror.org/02q0ygf45 OBS Medical (United Kingdom)'),
(62244, 'https://ror.org/02q13mm97', 'en', 1, 'https://ror.org/02q13mm97 Regenerative Medicine Institute'),
(62245, 'https://ror.org/02q1k8269', 'de', 1, 'https://ror.org/02q1k8269 Krebsgesellschaft Nordrhein-Westfalen'),
(62246, 'https://ror.org/02q1t6t25', 'en', 1, 'https://ror.org/02q1t6t25 Usenix Association'),
(62247, 'https://ror.org/02q2ct796', 'en', 1, 'https://ror.org/02q2ct796 Union Settlement'),
(62248, 'https://ror.org/02q3wwm43', 'en', 1, 'https://ror.org/02q3wwm43 Telluride Science Research Center'),
(62249, 'https://ror.org/02q7g9n47', 'no_lang_code', 1, 'https://ror.org/02q7g9n47 Phonak (Germany)'),
(62250, 'https://ror.org/02q9v7665', 'en', 1, 'https://ror.org/02q9v7665 California Liver Research Institute'),
(62251, 'https://ror.org/02qa68339', 'en', 1, 'https://ror.org/02qa68339 National Parks Conservation Association'),
(62252, 'https://ror.org/02qacef07', 'no_lang_code', 1, 'https://ror.org/02qacef07 Gilead Sciences (Spain)'),
(62253, 'https://ror.org/02qbaz641', 'no_lang_code', 1, 'https://ror.org/02qbaz641 Luye Pharma (Switzerland)'),
(62254, 'https://ror.org/02qfg2147', 'de', 1, 'https://ror.org/02qfg2147 Brost Stiftung'),
(62255, 'https://ror.org/02qhn7905', 'en', 1, 'https://ror.org/02qhn7905 Idaho Urologic Institute'),
(62256, 'https://ror.org/02qhvwx61', 'no_lang_code', 1, 'https://ror.org/02qhvwx61 Guz "Tul''skiy Oblastnoy Onkologicheskiy Dispanser'),
(62257, 'https://ror.org/02qk94m81', 'en', 1, 'https://ror.org/02qk94m81 Vancouver Clinic'),
(62258, 'https://ror.org/02qkddx94', 'en', 1, 'https://ror.org/02qkddx94 Arizona Pain Specialists'),
(62259, 'https://ror.org/02qktq607', 'en', 1, 'https://ror.org/02qktq607 Bulgarian Cardiac Institute'),
(62260, 'https://ror.org/02qmczs49', 'no_lang_code', 1, 'https://ror.org/02qmczs49 Devicia (Sweden)'),
(62261, 'https://ror.org/02qmfy413', 'en', 1, 'https://ror.org/02qmfy413 Gibson Institute of Cognitive Research'),
(62262, 'https://ror.org/02qnzpb65', 'en', 1, 'https://ror.org/02qnzpb65 The Farah Hospital'),
(62263, 'https://ror.org/02qpa9w62', 'en', 1, 'https://ror.org/02qpa9w62 Larue Carter Hospital'),
(62264, 'https://ror.org/02qpd5a14', 'nl', 1, 'https://ror.org/02qpd5a14 Volandis'),
(62265, 'https://ror.org/02qq1pn56', 'es', 1, 'https://ror.org/02qq1pn56 Liga Nacional Contra el CƔncer'),
(62266, 'https://ror.org/02qs4wf90', 'en', 1, 'https://ror.org/02qs4wf90 National Institute of Neurosciences & Hospital'),
(62267, 'https://ror.org/02qscpy04', 'no_lang_code', 1, 'https://ror.org/02qscpy04 Applied Scientific Research (United States)'),
(62268, 'https://ror.org/02qsnza70', 'en', 1, 'https://ror.org/02qsnza70 Cornea Eye Institute'),
(62269, 'https://ror.org/02qthww36', 'en', 1, 'https://ror.org/02qthww36 Libin Cardiovascular Institute of Alberta'),
(62270, 'https://ror.org/02qw11p11', 'no_lang_code', 1, 'https://ror.org/02qw11p11 Hollister (Germany)'),
(62271, 'https://ror.org/02qxd8910', 'en', 1, 'https://ror.org/02qxd8910 Columbus Center'),
(62272, 'https://ror.org/02qyyew72', 'en', 1, 'https://ror.org/02qyyew72 Nepal Red Cross Society'),
(62273, 'https://ror.org/02qzyds37', 'en', 1, 'https://ror.org/02qzyds37 Gordon Schanzlin New Vision Institute'),
(62274, 'https://ror.org/02r0j1w74', 'en', 1, 'https://ror.org/02r0j1w74 Program Support Center'),
(62275, 'https://ror.org/02r0j7m07', 'en', 1, 'https://ror.org/02r0j7m07 Addiction Research Foundation'),
(62276, 'https://ror.org/02r0jj466', 'nl', 1, 'https://ror.org/02r0jj466 Stichting Weeshuis der Doopsgezinden'),
(62277, 'https://ror.org/02r15q206', 'no_lang_code', 1, 'https://ror.org/02r15q206 Novitas BKK (Germany)'),
(62278, 'https://ror.org/02r17me31', 'en', 1, 'https://ror.org/02r17me31 Ministry Of Health'),
(62279, 'https://ror.org/02r23w007', 'en', 1, 'https://ror.org/02r23w007 Xi''an Botanical Garden of Shaanxi Province é™•č„æč„æå®‰ę¤ē‰©å›­'),
(62280, 'https://ror.org/02r2n8660', 'en', 1, 'https://ror.org/02r2n8660 The Loka Institute'),
(62281, 'https://ror.org/02r2nns16', 'de', 1, 'https://ror.org/02r2nns16 UniversitƤtsklinikum Krems'),
(62282, 'https://ror.org/02r4exx90', 'en', 1, 'https://ror.org/02r4exx90 Barrow Brain and Spine'),
(62283, 'https://ror.org/02r6d9v55', 'no_lang_code', 1, 'https://ror.org/02r6d9v55 Equilab International (Indonesia)'),
(62284, 'https://ror.org/02r7ybh06', 'no_lang_code', 1, 'https://ror.org/02r7ybh06 Seven Bridges Genomics (United States)'),
(62285, 'https://ror.org/02r89nc92', 'no_lang_code', 1, 'https://ror.org/02r89nc92 Medication Management (United States)'),
(62286, 'https://ror.org/02r8sh830', 'de', 1, 'https://ror.org/02r8sh830 Helios UniversitƤtsklinikum Wuppertal'),
(62287, 'https://ror.org/02ra2yn55', 'fr', 1, 'https://ror.org/02ra2yn55 Ligue Pulmonaire Genevoise'),
(62288, 'https://ror.org/02rc09k84', 'en', 1, 'https://ror.org/02rc09k84 Hellenic Society for Chemotherapy Ελληνική Εταιρεία Χημειοθεραπείας'),
(62289, 'https://ror.org/02rcdta59', 'fr', 1, 'https://ror.org/02rcdta59 Centre Hospitalier d''AngoulĆŖme'),
(62290, 'https://ror.org/02rdz4018', 'en', 1, 'https://ror.org/02rdz4018 Karen Horney Institut'),
(62291, 'https://ror.org/02rgbry52', 'en', 1, 'https://ror.org/02rgbry52 ShangHai JiAi Genetics & IVF Institute äøŠęµ·å‰ēˆ±é—ä¼ äøŽä½“å¤–å—ē²¾ē ”ē©¶ę‰€'),
(62292, 'https://ror.org/02rgedp64', 'en', 1, 'https://ror.org/02rgedp64 Southeast Renal Research Institute'),
(62293, 'https://ror.org/02rh62014', 'en', 1, 'https://ror.org/02rh62014 US Cancer Management Corporation'),
(62294, 'https://ror.org/02rhspt79', 'en', 1, 'https://ror.org/02rhspt79 University of Hawaii Maui College'),
(62295, 'https://ror.org/02rmzps48', 'no_lang_code', 1, 'https://ror.org/02rmzps48 Cliantha (India)'),
(62296, 'https://ror.org/02rpznn70', 'en', 1, 'https://ror.org/02rpznn70 Sinus & Respiratory Disease Center'),
(62297, 'https://ror.org/02rsv1244', 'en', 1, 'https://ror.org/02rsv1244 Gansu Research Academy of Forestry Science and Technology ē”˜č‚ƒęž—äøšē§‘ęŠ€ē ”ē©¶é™¢'),
(62298, 'https://ror.org/02rw7eq98', 'de', 1, 'https://ror.org/02rw7eq98 Rehaklinik Glotterbad'),
(62299, 'https://ror.org/02rxx7m82', 'no_lang_code', 1, 'https://ror.org/02rxx7m82 Sewon Cellontech (South Korea)'),
(62300, 'https://ror.org/02rycyg15', 'nl', 1, 'https://ror.org/02rycyg15 Depressie Vereniging'),
(62301, 'https://ror.org/02rzjbv15', 'en', 1, 'https://ror.org/02rzjbv15 Virtual Reality Medical Center'),
(62302, 'https://ror.org/02s04ww23', 'en', 1, 'https://ror.org/02s04ww23 Ronan Thompson Foundation'),
(62303, 'https://ror.org/02s113s62', 'en', 1, 'https://ror.org/02s113s62 Eyehope'),
(62304, 'https://ror.org/02s28z540', 'en', 1, 'https://ror.org/02s28z540 Nacionalna i univerzitetska biblioteka Bosne i Hercegovine National and University Library of Bosnia and Herzegovina ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Šø ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ŃŠŗŠ° библиотека Босне Šø Єерцеговине'),
(62305, 'https://ror.org/02s6t9r74', 'no_lang_code', 1, 'https://ror.org/02s6t9r74 Teva Pharmaceuticals (Netherlands)'),
(62306, 'https://ror.org/02s70bh95', 'en', 1, 'https://ror.org/02s70bh95 Cardiovascular Research Center'),
(62307, 'https://ror.org/02s7ywx66', 'en', 1, 'https://ror.org/02s7ywx66 Lions Eye Bank at Albany'),
(62308, 'https://ror.org/02s8ewa53', 'no_lang_code', 1, 'https://ror.org/02s8ewa53 Hemics (Netherlands)'),
(62309, 'https://ror.org/02s8t4443', 'en', 1, 'https://ror.org/02s8t4443 Kansas City Research Institute'),
(62310, 'https://ror.org/02sdeme12', 'en', 1, 'https://ror.org/02sdeme12 Innovation Research Center'),
(62311, 'https://ror.org/02skjv125', 'no_lang_code', 1, 'https://ror.org/02skjv125 Mathys (Switzerland)'),
(62312, 'https://ror.org/02skr9c69', 'es', 1, 'https://ror.org/02skr9c69 Cerveceros de EspaƱa The Brewers of Spain'),
(62313, 'https://ror.org/02skrkk58', 'de', 1, 'https://ror.org/02skrkk58 Gemeinschaftskrankenhaus Havelhƶhe'),
(62314, 'https://ror.org/02smhv438', 'no_lang_code', 1, 'https://ror.org/02smhv438 BQS Institut für Qualität und Patientensicherheit (Germany)'),
(62315, 'https://ror.org/02smpkw21', 'en', 1, 'https://ror.org/02smpkw21 Northern Cancer Institute'),
(62316, 'https://ror.org/02snnvx48', 'en', 1, 'https://ror.org/02snnvx48 Wound Healing Society'),
(62317, 'https://ror.org/02sp87b11', 'en', 1, 'https://ror.org/02sp87b11 Pacific Tuberculosis and Cancer Research'),
(62318, 'https://ror.org/02sqx2x96', 'en', 1, 'https://ror.org/02sqx2x96 Heart Valve Society of America'),
(62319, 'https://ror.org/02sv3b352', 'en', 1, 'https://ror.org/02sv3b352 NeuroVita Clinic Клиника ŠŠµŠ¹Ń€Š¾Š²ŠøŃ‚а'),
(62320, 'https://ror.org/02svxyd97', 'en', 1, 'https://ror.org/02svxyd97 League of European Research Universities'),
(62321, 'https://ror.org/02sxbsz55', 'en', 1, 'https://ror.org/02sxbsz55 Castanera Institute of Ophthalmology Instituto de OftalmologĆ­a Castanera'),
(62322, 'https://ror.org/02sxqb906', 'fr', 1, 'https://ror.org/02sxqb906 Association Nationale pour le Developpement de la QualitƩ Dans les HƓpitaux et Les Cliniques'),
(62323, 'https://ror.org/02sy4cy69', 'en', 1, 'https://ror.org/02sy4cy69 Palynological Society'),
(62324, 'https://ror.org/02sz82d98', 'en', 1, 'https://ror.org/02sz82d98 Center for Neurologic Study'),
(62325, 'https://ror.org/02t15ae18', 'no_lang_code', 1, 'https://ror.org/02t15ae18 AXA Health (United Kingdom)'),
(62326, 'https://ror.org/02t4fs169', 'en', 1, 'https://ror.org/02t4fs169 Southwest Kidney Institute'),
(62327, 'https://ror.org/02t4nzq07', 'en', 1, 'https://ror.org/02t4nzq07 Fuzhou Second Hospital ē¦å·žåø‚ē¬¬äŗŒåŒ»é™¢'),
(62328, 'https://ror.org/02t63ax82', 'en', 1, 'https://ror.org/02t63ax82 Surya Chest Foundation'),
(62329, 'https://ror.org/02t771148', 'en', 1, 'https://ror.org/02t771148 National Cancer Institute'),
(62330, 'https://ror.org/02t7cwz48', 'de', 1, 'https://ror.org/02t7cwz48 Stiftung Tumorforschung Kopf-Hals'),
(62331, 'https://ror.org/02t9kcf24', 'it', 1, 'https://ror.org/02t9kcf24 Istituto Europeo di Microchirurgia Oculare'),
(62332, 'https://ror.org/02t9tba68', 'en', 1, 'https://ror.org/02t9tba68 Rare Cancers Australia'),
(62333, 'https://ror.org/02ta1jp69', 'no_lang_code', 1, 'https://ror.org/02ta1jp69 Roche (Hungary)'),
(62334, 'https://ror.org/02tb42851', 'en', 1, 'https://ror.org/02tb42851 Cairns Professional Game Fishing Association'),
(62335, 'https://ror.org/02tg91795', 'en', 1, 'https://ror.org/02tg91795 Aegean Conferences'),
(62336, 'https://ror.org/02tgb3473', 'en', 1, 'https://ror.org/02tgb3473 Reach-Aut Academic Centre for Autism'),
(62337, 'https://ror.org/02tge6s12', 'no_lang_code', 1, 'https://ror.org/02tge6s12 Accutest (India)'),
(62338, 'https://ror.org/02tgkny75', 'en', 1, 'https://ror.org/02tgkny75 Weisenthal Cancer Group'),
(62339, 'https://ror.org/02tj1ha51', 'no_lang_code', 1, 'https://ror.org/02tj1ha51 Ophtec (Netherlands)'),
(62340, 'https://ror.org/02tj1w674', 'no_lang_code', 1, 'https://ror.org/02tj1w674 Shahid Kamyab Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ Ś©Ų§Ł…ŪŒŲ§ŲØ'),
(62341, 'https://ror.org/02tkzg027', 'en', 1, 'https://ror.org/02tkzg027 Lakeland Community Hospital'),
(62342, 'https://ror.org/02tnw4027', 'ro', 1, 'https://ror.org/02tnw4027 Spitalul Universitar de Urgență Elias'),
(62343, 'https://ror.org/02tnzjs62', 'no_lang_code', 1, 'https://ror.org/02tnzjs62 Oliak Center'),
(62344, 'https://ror.org/02tpd3k28', 'no_lang_code', 1, 'https://ror.org/02tpd3k28 IntellADAPT (United States)'),
(62345, 'https://ror.org/02tr9yc56', 'en', 1, 'https://ror.org/02tr9yc56 Horizon House'),
(62346, 'https://ror.org/02trmev56', 'no_lang_code', 1, 'https://ror.org/02trmev56 Twist Bioscience (United States)'),
(62347, 'https://ror.org/02trxcb02', 'en', 1, 'https://ror.org/02trxcb02 Pyatigorsk Oncology Center ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ онкологический Гиспансер'),
(62348, 'https://ror.org/02ts4qr04', 'no_lang_code', 1, 'https://ror.org/02ts4qr04 Disphar International (Netherlands)'),
(62349, 'https://ror.org/02ts9m233', 'en', 1, 'https://ror.org/02ts9m233 Sudan Medical Specialization Board'),
(62350, 'https://ror.org/02tx52885', 'no_lang_code', 1, 'https://ror.org/02tx52885 Nutrition & SantƩ (Spain)'),
(62351, 'https://ror.org/02tyedh23', 'en', 1, 'https://ror.org/02tyedh23 Peninsula Cancer Center'),
(62352, 'https://ror.org/02tzf4h03', 'en', 1, 'https://ror.org/02tzf4h03 Hermann Buhl Institut'),
(62353, 'https://ror.org/02tzmns59', 'en', 1, 'https://ror.org/02tzmns59 Community Hospital of Anaconda'),
(62354, 'https://ror.org/02v14dw26', 'en', 1, 'https://ror.org/02v14dw26 Virginia Gastroenterology Institute'),
(62355, 'https://ror.org/02v1bhf02', 'nl', 1, 'https://ror.org/02v1bhf02 Nederlandse Vereniging voor Acupunctuur'),
(62356, 'https://ror.org/02v2jvk84', 'no_lang_code', 1, 'https://ror.org/02v2jvk84 Univa (United States)'),
(62357, 'https://ror.org/02v72sd52', 'en', 1, 'https://ror.org/02v72sd52 Chhattisgarh Dental College & Research Institute'),
(62358, 'https://ror.org/02v8db677', 'de', 1, 'https://ror.org/02v8db677 KRH Klinikum Agnes Karll Laatzen'),
(62359, 'https://ror.org/02v8ews69', 'no_lang_code', 1, 'https://ror.org/02v8ews69 Mid Michigan Research (United States)'),
(62360, 'https://ror.org/02v8jq558', 'en', 1, 'https://ror.org/02v8jq558 Xerces Society'),
(62361, 'https://ror.org/02v97gj05', 'en', 1, 'https://ror.org/02v97gj05 Firma Clinical Research'),
(62362, 'https://ror.org/02va7tv42', 'no_lang_code', 1, 'https://ror.org/02va7tv42 Allergan (Taiwan)'),
(62363, 'https://ror.org/02van6g18', 'en', 1, 'https://ror.org/02van6g18 Syrentis Clinical Research'),
(62364, 'https://ror.org/02vdkna52', 'en', 1, 'https://ror.org/02vdkna52 Wisconsin Elks Association'),
(62365, 'https://ror.org/02veq1j93', 'de', 1, 'https://ror.org/02veq1j93 UniversitƤts Frauenklinik'),
(62366, 'https://ror.org/02vf9n064', 'en', 1, 'https://ror.org/02vf9n064 Oceanic Research Group'),
(62367, 'https://ror.org/02vfq9e70', 'en', 1, 'https://ror.org/02vfq9e70 Bangladesh Institute of ICT in Development ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ą¦†ą¦‡ą¦øą¦æą¦Ÿą¦æ বাংলাদেশ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(62368, 'https://ror.org/02vja3r71', 'no_lang_code', 1, 'https://ror.org/02vja3r71 Vascular Insights (United States)'),
(62369, 'https://ror.org/02vmgqy82', 'en', 1, 'https://ror.org/02vmgqy82 Bay Area Retina Associates'),
(62370, 'https://ror.org/02vpbac71', 'no_lang_code', 1, 'https://ror.org/02vpbac71 Bayer (Italy)'),
(62371, 'https://ror.org/02vra9861', 'no_lang_code', 1, 'https://ror.org/02vra9861 International Pemphigus & Pemphigoid Foundation'),
(62372, 'https://ror.org/02vrnsq93', 'en', 1, 'https://ror.org/02vrnsq93 Hilo Medical Center'),
(62373, 'https://ror.org/02vsng207', 'nl', 1, 'https://ror.org/02vsng207 Jellinek'),
(62374, 'https://ror.org/02vtdx988', 'en', 1, 'https://ror.org/02vtdx988 Houston Museum of Natural Science'),
(62375, 'https://ror.org/02vtk3a57', 'nl', 1, 'https://ror.org/02vtk3a57 Lygature'),
(62376, 'https://ror.org/02vv8px12', 'en', 1, 'https://ror.org/02vv8px12 Texas Dermatology and Laser Specialists'),
(62377, 'https://ror.org/02vw1hj64', 'en', 1, 'https://ror.org/02vw1hj64 Main Line Fertility'),
(62378, 'https://ror.org/02vwqfb11', 'en', 1, 'https://ror.org/02vwqfb11 Ainsworth Institute of Pain Management'),
(62379, 'https://ror.org/02vz7hv03', 'en', 1, 'https://ror.org/02vz7hv03 Comprehensive Blood & Cancer Center'),
(62380, 'https://ror.org/02vzd2x77', 'en', 1, 'https://ror.org/02vzd2x77 Life Extension Foundation'),
(62381, 'https://ror.org/02vzhpz25', 'en', 1, 'https://ror.org/02vzhpz25 Irish Society of Chartered Physiotherapists'),
(62382, 'https://ror.org/02w0smy45', 'de', 1, 'https://ror.org/02w0smy45 Universitätsklinik für Strahlentherapie'),
(62383, 'https://ror.org/02w1djg46', 'es', 1, 'https://ror.org/02w1djg46 Fecunditas Instituto de Medicina Reproductiva'),
(62384, 'https://ror.org/02w1dxn42', 'nl', 1, 'https://ror.org/02w1dxn42 Rugpoli'),
(62385, 'https://ror.org/02w4b7q15', 'no_lang_code', 1, 'https://ror.org/02w4b7q15 Pharmaxis (United Kingdom)'),
(62386, 'https://ror.org/02w6f6b92', 'de', 1, 'https://ror.org/02w6f6b92 Deutsche Rheuma-Liga'),
(62387, 'https://ror.org/02w74ad83', 'no_lang_code', 1, 'https://ror.org/02w74ad83 Nexmatix (United States)'),
(62388, 'https://ror.org/02w7z1d65', 'en', 1, 'https://ror.org/02w7z1d65 Stem Cell Institute'),
(62389, 'https://ror.org/02w9pcv48', 'en', 1, 'https://ror.org/02w9pcv48 Orenburg Regional Clinical Oncology Center ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ областной клинический онкологический Гиспансер'),
(62390, 'https://ror.org/02wg7hx42', 'en', 1, 'https://ror.org/02wg7hx42 American Society for Apheresis'),
(62391, 'https://ror.org/02wj4f624', 'no_lang_code', 1, 'https://ror.org/02wj4f624 Scientific Imaging and Visualization (United States)'),
(62392, 'https://ror.org/02wmh7s95', 'no_lang_code', 1, 'https://ror.org/02wmh7s95 CasaLuker (Colombia)'),
(62393, 'https://ror.org/02wmkpz59', 'nl', 1, 'https://ror.org/02wmkpz59 Sport Medisch Centrum Papendal'),
(62394, 'https://ror.org/02wn5ed02', 'es', 1, 'https://ror.org/02wn5ed02 Hospitales Nisa'),
(62395, 'https://ror.org/02wq0c278', 'en', 1, 'https://ror.org/02wq0c278 Success for All Foundation'),
(62396, 'https://ror.org/02wq1wf87', 'en', 1, 'https://ror.org/02wq1wf87 Council for Opportunity in Education'),
(62397, 'https://ror.org/02wqv1w77', 'fr', 1, 'https://ror.org/02wqv1w77 Clinique du Pont Saint-Vaast'),
(62398, 'https://ror.org/02wr5jh59', 'no_lang_code', 1, 'https://ror.org/02wr5jh59 Pulmonx (Switzerland)'),
(62399, 'https://ror.org/02wsg8t40', 'en', 1, 'https://ror.org/02wsg8t40 Scientists Center for Animal Welfare'),
(62400, 'https://ror.org/02wspvn72', 'en', 1, 'https://ror.org/02wspvn72 Yin Huo Health Association é“¶ē«å„åŗ·åä¼š'),
(62401, 'https://ror.org/02wtq1680', 'en', 1, 'https://ror.org/02wtq1680 Pain Cure Center'),
(62402, 'https://ror.org/02wv74f83', 'no_lang_code', 1, 'https://ror.org/02wv74f83 Mathys (Germany)'),
(62403, 'https://ror.org/02wv88v83', 'no_lang_code', 1, 'https://ror.org/02wv88v83 Ivoclar Vivadent (Germany)'),
(62404, 'https://ror.org/02wvtac27', 'en', 1, 'https://ror.org/02wvtac27 Clinical Pharmacology of Miami'),
(62405, 'https://ror.org/02ww26h70', 'no_lang_code', 1, 'https://ror.org/02ww26h70 Shionogi (United States)'),
(62406, 'https://ror.org/02ww5xj89', 'en', 1, 'https://ror.org/02ww5xj89 Samnium Medica'),
(62407, 'https://ror.org/02ww9rk15', 'en', 1, 'https://ror.org/02ww9rk15 National Foundation for Autism Research'),
(62408, 'https://ror.org/02wwqa894', 'en', 1, 'https://ror.org/02wwqa894 Central Carolina Technical College'),
(62409, 'https://ror.org/02wx2j769', 'en', 1, 'https://ror.org/02wx2j769 South Coast Dermatology Institute'),
(62410, 'https://ror.org/02wymnj87', 'en', 1, 'https://ror.org/02wymnj87 Osaka Prefectural Government 大阪府'),
(62411, 'https://ror.org/02x2pnc94', 'no_lang_code', 1, 'https://ror.org/02x2pnc94 Advanced Sports Installations (Estonia)'),
(62412, 'https://ror.org/02x62c182', 'en', 1, 'https://ror.org/02x62c182 Her Many Voices Foundation'),
(62413, 'https://ror.org/02x67gd16', 'no_lang_code', 1, 'https://ror.org/02x67gd16 CameraPil (Netherlands)'),
(62414, 'https://ror.org/02x8dnq97', 'no_lang_code', 1, 'https://ror.org/02x8dnq97 Sanofi (Argentina)'),
(62415, 'https://ror.org/02x8fdg77', 'en', 1, 'https://ror.org/02x8fdg77 Lake Erie Research Institute'),
(62416, 'https://ror.org/02x8kf546', 'en', 1, 'https://ror.org/02x8kf546 ARCUS Sportkliniken ARCUS Sports Clinic'),
(62417, 'https://ror.org/02x8t7c47', 'en', 1, 'https://ror.org/02x8t7c47 Northern California Melanoma Center'),
(62418, 'https://ror.org/02xa21y06', 'en', 1, 'https://ror.org/02xa21y06 QUIRIS Healthcare'),
(62419, 'https://ror.org/02xb05b57', 'no_lang_code', 1, 'https://ror.org/02xb05b57 Crospon (Ireland)'),
(62420, 'https://ror.org/02xbtxj19', 'en', 1, 'https://ror.org/02xbtxj19 Door County Medical Center'),
(62421, 'https://ror.org/02xejyg29', 'no_lang_code', 1, 'https://ror.org/02xejyg29 Nano Hydrophobics (United States)'),
(62422, 'https://ror.org/02xffg312', 'en', 1, 'https://ror.org/02xffg312 Buildings Performance Institute Europe'),
(62423, 'https://ror.org/02xjdnj70', 'nl', 1, 'https://ror.org/02xjdnj70 Amstelring'),
(62424, 'https://ror.org/02xkaan08', 'en', 1, 'https://ror.org/02xkaan08 Jinan Municipal Environmental Protection Bureau ęµŽå—åø‚ēŽÆäæå±€'),
(62425, 'https://ror.org/02xpekp13', 'en', 1, 'https://ror.org/02xpekp13 Community Living'),
(62426, 'https://ror.org/02xq0ba35', 'en', 1, 'https://ror.org/02xq0ba35 European Pathway Association'),
(62427, 'https://ror.org/02xq21g71', 'en', 1, 'https://ror.org/02xq21g71 International Heart and Lung Institute'),
(62428, 'https://ror.org/02xqfym19', 'nl', 1, 'https://ror.org/02xqfym19 Stichting Afasie Nederland'),
(62429, 'https://ror.org/02xqq7c82', 'no_lang_code', 1, 'https://ror.org/02xqq7c82 Octapharma (France)'),
(62430, 'https://ror.org/02xrnet37', 'no_lang_code', 1, 'https://ror.org/02xrnet37 Horizon Communications (United States)'),
(62431, 'https://ror.org/02xs7rw35', 'no_lang_code', 1, 'https://ror.org/02xs7rw35 Almased (Germany)'),
(62432, 'https://ror.org/02xss3674', 'en', 1, 'https://ror.org/02xss3674 Institut für Klinisch Onkologische Forschung Institute of Clinical Cancer Research'),
(62433, 'https://ror.org/02xtw2e05', 'en', 1, 'https://ror.org/02xtw2e05 Plano Cancer Institute'),
(62434, 'https://ror.org/02xw5a882', 'no_lang_code', 1, 'https://ror.org/02xw5a882 QD Laser (Germany)'),
(62435, 'https://ror.org/02xyd6272', 'no_lang_code', 1, 'https://ror.org/02xyd6272 Bauerfeind (Germany)'),
(62436, 'https://ror.org/02xypxj44', 'en', 1, 'https://ror.org/02xypxj44 Taiwan Association of Gynecologic Oncologists'),
(62437, 'https://ror.org/02xztvm24', 'en', 1, 'https://ror.org/02xztvm24 Dutch Endovascular Alliance'),
(62438, 'https://ror.org/02y1vmj66', 'it', 1, 'https://ror.org/02y1vmj66 Epatocentro Ticino'),
(62439, 'https://ror.org/02y9p0566', 'es', 1, 'https://ror.org/02y9p0566 Centro Cultural de EspaƱa en Malabo'),
(62440, 'https://ror.org/02y9vw172', 'no_lang_code', 1, 'https://ror.org/02y9vw172 Plethora Solutions (United Kingdom)'),
(62441, 'https://ror.org/02yaq1v87', 'pt', 1, 'https://ror.org/02yaq1v87 Faculdade de Medicina de Petrópolis'),
(62442, 'https://ror.org/02yfds142', 'en', 1, 'https://ror.org/02yfds142 SoutheastHEALTH'),
(62443, 'https://ror.org/02ygjtg18', 'en', 1, 'https://ror.org/02ygjtg18 Association of Oncology Social Work'),
(62444, 'https://ror.org/02yk7ya44', 'en', 1, 'https://ror.org/02yk7ya44 Zhejiang University Medical College Affiliated Stomatological Hospital ęµ™ę±Ÿå¤§å­¦åŒ»å­¦é™¢é™„å±žå£č…”åŒ»é™¢'),
(62445, 'https://ror.org/02ymb2422', 'vi', 1, 'https://ror.org/02ymb2422 Hį»™i Tim mįŗ”ch hį»c Việt Nam Vietnam Heart Association'),
(62446, 'https://ror.org/02yndaw76', 'no_lang_code', 1, 'https://ror.org/02yndaw76 Sydney Fish Market (Australia)'),
(62447, 'https://ror.org/02ynj6025', 'en', 1, 'https://ror.org/02ynj6025 Vision Impact Institute'),
(62448, 'https://ror.org/02ypxp350', 'en', 1, 'https://ror.org/02ypxp350 Metal Powder Industries Federation'),
(62449, 'https://ror.org/02yq5yf84', 'no_lang_code', 1, 'https://ror.org/02yq5yf84 Morphotek (United States)'),
(62450, 'https://ror.org/02yvvjz71', 'en', 1, 'https://ror.org/02yvvjz71 Orthopaedic Institute of Western Kentucky'),
(62451, 'https://ror.org/02ywc9x30', 'en', 1, 'https://ror.org/02ywc9x30 The Korean Society of Blood and Marrow Transplantation ėŒ€ķ•œ ķ˜ˆģ•” ģˆœķ™˜ ķ•™ķšŒ'),
(62452, 'https://ror.org/02yxqm243', 'en', 1, 'https://ror.org/02yxqm243 Budgetary Healthcare Institution of Omsk Region Regional Clinical Hospital'),
(62453, 'https://ror.org/02yy16t83', 'en', 1, 'https://ror.org/02yy16t83 St. Petersburg State Health Care Foundation "Mariinsky City Hospital"'),
(62454, 'https://ror.org/02yy1n467', 'en', 1, 'https://ror.org/02yy1n467 Belgian Burn Foundation'),
(62455, 'https://ror.org/02yzgv231', 'en', 1, 'https://ror.org/02yzgv231 Franciscan Health Mooresville'),
(62456, 'https://ror.org/02z138x11', 'nl', 1, 'https://ror.org/02z138x11 Maatschap Friese Longartsen'),
(62457, 'https://ror.org/02z2af868', 'no_lang_code', 1, 'https://ror.org/02z2af868 K-Implant (Germany)'),
(62458, 'https://ror.org/02z7cqw59', 'no_lang_code', 1, 'https://ror.org/02z7cqw59 Inter-Mountain Laboratories (United States)'),
(62459, 'https://ror.org/02z7tpb72', 'en', 1, 'https://ror.org/02z7tpb72 Amita Health'),
(62460, 'https://ror.org/02z84jh79', 'en', 1, 'https://ror.org/02z84jh79 Brain Tumour Alliance Australia'),
(62461, 'https://ror.org/02z8m4v62', 'en', 1, 'https://ror.org/02z8m4v62 IVF Centers Prof. Zech Willkommen in den IVF Zentren Prof. Zech'),
(62462, 'https://ror.org/02z8q9w63', 'de', 1, 'https://ror.org/02z8q9w63 Schweizerische Ƅrztegesellschaft für Psycholytische Therapie'),
(62463, 'https://ror.org/02zcey775', 'en', 1, 'https://ror.org/02zcey775 Bijhem Scientific'),
(62464, 'https://ror.org/02ze9rw51', 'en', 1, 'https://ror.org/02ze9rw51 KaRaMinds'),
(62465, 'https://ror.org/02zfmm828', 'en', 1, 'https://ror.org/02zfmm828 Community Ministry of Prince George’s County'),
(62466, 'https://ror.org/02zhc2371', 'no_lang_code', 1, 'https://ror.org/02zhc2371 Innovative Technology Laboratories (United States)'),
(62467, 'https://ror.org/02zkb9v82', 'no_lang_code', 1, 'https://ror.org/02zkb9v82 Revenue Management Solutions (United States)'),
(62468, 'https://ror.org/02zkjhv23', 'de', 1, 'https://ror.org/02zkjhv23 Eifelklinik Manderscheid'),
(62469, 'https://ror.org/02zmrd443', 'de', 1, 'https://ror.org/02zmrd443 Klinik und Poliklinik für Augenheilkunde Universitätsklinikum Regensburg'),
(62470, 'https://ror.org/02zsjtp80', 'en', 1, 'https://ror.org/02zsjtp80 Associated Scientists at Woods Hole'),
(62471, 'https://ror.org/02ztdvb08', 'de', 1, 'https://ror.org/02ztdvb08 Stiftung Empiris'),
(62472, 'https://ror.org/02ztj7h33', 'it', 1, 'https://ror.org/02ztj7h33 Federazione Ordini Farmacisti Italiani'),
(62473, 'https://ror.org/02ztxmr86', 'en', 1, 'https://ror.org/02ztxmr86 Institute for Asthma and Allergy'),
(62474, 'https://ror.org/02zv70s92', 'en', 1, 'https://ror.org/02zv70s92 Tyumen Regional Oncological Dispensary Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(62475, 'https://ror.org/02zvbmm61', 'en', 1, 'https://ror.org/02zvbmm61 Vitos Orthopedic Clinic Kassel Vitos OrthopƤdische Klinik Kassel'),
(62476, 'https://ror.org/02zvcx647', 'en', 1, 'https://ror.org/02zvcx647 Science Club'),
(62477, 'https://ror.org/02zw96388', 'en', 1, 'https://ror.org/02zw96388 Chartered Institute of Housing'),
(62478, 'https://ror.org/02zx70081', 'en', 1, 'https://ror.org/02zx70081 Omair Sana Foundation'),
(62479, 'https://ror.org/02zxj2k87', 'no_lang_code', 1, 'https://ror.org/02zxj2k87 Finn Partners (United States)'),
(62480, 'https://ror.org/03003by36', 'fr', 1, 'https://ror.org/03003by36 Centre Hospitalier InterrƩgional Edith Cavell'),
(62481, 'https://ror.org/0300tx783', 'en', 1, 'https://ror.org/0300tx783 Planet Water Foundation'),
(62482, 'https://ror.org/0301h9a14', 'no_lang_code', 1, 'https://ror.org/0301h9a14 AppScale (United States)'),
(62483, 'https://ror.org/03048zv53', 'en', 1, 'https://ror.org/03048zv53 Western Sky Medical Research'),
(62484, 'https://ror.org/0305pf426', 'no_lang_code', 1, 'https://ror.org/0305pf426 Wadsworth Golf Construction Company (United States)'),
(62485, 'https://ror.org/0305w4x35', 'no_lang_code', 1, 'https://ror.org/0305w4x35 Art & Science Productions (United States)'),
(62486, 'https://ror.org/0306c2632', 'en', 1, 'https://ror.org/0306c2632 Inflammation Research Foundation'),
(62487, 'https://ror.org/0307hqx04', 'en', 1, 'https://ror.org/0307hqx04 Vinnytsya Regional Psychoneurological Hospital named after Academician O.I. Yushchenko'),
(62488, 'https://ror.org/0308e9714', 'no_lang_code', 1, 'https://ror.org/0308e9714 Insite Medical Technologies (United States)'),
(62489, 'https://ror.org/0309b0n18', 'no_lang_code', 1, 'https://ror.org/0309b0n18 VOCO (Germany)'),
(62490, 'https://ror.org/030arp767', 'no_lang_code', 1, 'https://ror.org/030arp767 Acandis (Germany)'),
(62491, 'https://ror.org/030bv9h77', 'en', 1, 'https://ror.org/030bv9h77 Holloman Air Force Base'),
(62492, 'https://ror.org/030edbc02', 'no_lang_code', 1, 'https://ror.org/030edbc02 Clinical Research Consultants (United States)'),
(62493, 'https://ror.org/030ehsk26', 'no_lang_code', 1, 'https://ror.org/030ehsk26 Luther Marketing Group (United Kingdom)'),
(62494, 'https://ror.org/030f3bz67', 'en', 1, 'https://ror.org/030f3bz67 Amsterdam Institute for International Development'),
(62495, 'https://ror.org/030gep771', 'en', 1, 'https://ror.org/030gep771 Roanoke-Chowan Community College'),
(62496, 'https://ror.org/030kcs678', 'en', 1, 'https://ror.org/030kcs678 Allergy Asthma Research Institute'),
(62497, 'https://ror.org/030kv0w79', 'nl', 1, 'https://ror.org/030kv0w79 Medisch Coƶrdinerend Centrum Omnes'),
(62498, 'https://ror.org/030mnsr75', 'no_lang_code', 1, 'https://ror.org/030mnsr75 Helbo Photodynamic Systems (Germany)'),
(62499, 'https://ror.org/030nkeg78', 'es', 1, 'https://ror.org/030nkeg78 Insituto de Asistencia Reumatólogica Integral'),
(62500, 'https://ror.org/030nx8440', 'no_lang_code', 1, 'https://ror.org/030nx8440 A.S. Watson (Netherlands)'),
(62501, 'https://ror.org/030s5fz93', 'en', 1, 'https://ror.org/030s5fz93 Thomas John Vision Institute'),
(62502, 'https://ror.org/030ss4c03', 'en', 1, 'https://ror.org/030ss4c03 Bharath Hospital & Institute of Oncology'),
(62503, 'https://ror.org/030xn4p61', 'en', 1, 'https://ror.org/030xn4p61 Sadir Assistance'),
(62504, 'https://ror.org/030ybgp98', 'en', 1, 'https://ror.org/030ybgp98 Mother and Child Foundation'),
(62505, 'https://ror.org/030yhh648', 'da', 1, 'https://ror.org/030yhh648 Dansk Fertilitetsklinik'),
(62506, 'https://ror.org/030yqfm02', 'es', 1, 'https://ror.org/030yqfm02 Ministerio de Salud'),
(62507, 'https://ror.org/030z9kz64', 'no_lang_code', 1, 'https://ror.org/030z9kz64 UCB Pharma (Japan) ćƒ¦ćƒ¼ć‚·ćƒ¼ćƒ“ćƒ¼ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(62508, 'https://ror.org/030zk4850', 'nl', 1, 'https://ror.org/030zk4850 RINO Zuid'),
(62509, 'https://ror.org/0310zet56', 'no_lang_code', 1, 'https://ror.org/0310zet56 Shanghai Han Guan Bio Chip (China) äøŠęµ·åŽå† ē”Ÿē‰©čŠÆē‰‡ęœ‰é™å…¬åøē®€ä»‹'),
(62510, 'https://ror.org/031334b36', 'en', 1, 'https://ror.org/031334b36 Krongrad Institute'),
(62511, 'https://ror.org/0317vxn45', 'en', 1, 'https://ror.org/0317vxn45 Chaminade College Preparatory School'),
(62512, 'https://ror.org/03188nr56', 'no_lang_code', 1, 'https://ror.org/03188nr56 Heavystone Laboratory (United States)'),
(62513, 'https://ror.org/0319y6677', 'en', 1, 'https://ror.org/0319y6677 Stafford University'),
(62514, 'https://ror.org/031afvj24', 'en', 1, 'https://ror.org/031afvj24 Agency for Community Treatment Services'),
(62515, 'https://ror.org/031caxb92', 'en', 1, 'https://ror.org/031caxb92 Kaiser Permanente West Los Angeles Medical Center'),
(62516, 'https://ror.org/031f8xv45', 'en', 1, 'https://ror.org/031f8xv45 Children’s Aid Society of Hamilton'),
(62517, 'https://ror.org/031g1ba05', 'no_lang_code', 1, 'https://ror.org/031g1ba05 Mannatech (United States)'),
(62518, 'https://ror.org/031h5e705', 'en', 1, 'https://ror.org/031h5e705 International Society of Differentiation'),
(62519, 'https://ror.org/031h5rk76', 'es', 1, 'https://ror.org/031h5rk76 Asociación Colombiana de Diabetes'),
(62520, 'https://ror.org/031hkyx15', 'no_lang_code', 1, 'https://ror.org/031hkyx15 Johnson & Johnson (Hungary)'),
(62521, 'https://ror.org/031m0hs53', 'en', 1, 'https://ror.org/031m0hs53 Commit'),
(62522, 'https://ror.org/031mxab46', 'en', 1, 'https://ror.org/031mxab46 Turkish Society of Hypertension and Renal Diseases Türk Hipertansiyon ve Böbrek Hastalıkları Derneği'),
(62523, 'https://ror.org/031nmyb26', 'en', 1, 'https://ror.org/031nmyb26 Reference Institute for Bioanalytics Referenzinstitut für Bioanalytik'),
(62524, 'https://ror.org/031pkxq11', 'no_lang_code', 1, 'https://ror.org/031pkxq11 Baotou Central Hospital åŒ…å¤“åø‚äø­åæƒåŒ»é™¢'),
(62525, 'https://ror.org/031q6s296', 'no_lang_code', 1, 'https://ror.org/031q6s296 Cosmos Technologies (United States)'),
(62526, 'https://ror.org/031rmrw34', 'en', 1, 'https://ror.org/031rmrw34 Pediatric Blood and Marrow Transplant Foundation'),
(62527, 'https://ror.org/031wqxd08', 'no_lang_code', 1, 'https://ror.org/031wqxd08 IONEX Research Corporation (United States)'),
(62528, 'https://ror.org/031yrna52', 'no_lang_code', 1, 'https://ror.org/031yrna52 Ajinomoto (United States)'),
(62529, 'https://ror.org/0320z2q35', 'nl', 1, 'https://ror.org/0320z2q35 Zorggroep Sint Maarten'),
(62530, 'https://ror.org/03247yf20', 'de', 1, 'https://ror.org/03247yf20 Hernienzentrum Rottenburg am Neckar'),
(62531, 'https://ror.org/032951a18', 'no_lang_code', 1, 'https://ror.org/032951a18 Lycotec (United Kingdom)'),
(62532, 'https://ror.org/0329bem96', 'en', 1, 'https://ror.org/0329bem96 Malaysian Endocrine and Metabolic Society'),
(62533, 'https://ror.org/032b8d361', 'en', 1, 'https://ror.org/032b8d361 Minneapolis VA Medical Center'),
(62534, 'https://ror.org/032b8z185', 'no_lang_code', 1, 'https://ror.org/032b8z185 Vygon (Germany)'),
(62535, 'https://ror.org/032d9sg77', 'en', 1, 'https://ror.org/032d9sg77 Kumasi Centre for Collaborative Research in Tropical Medicine'),
(62536, 'https://ror.org/032e5zb24', 'en', 1, 'https://ror.org/032e5zb24 Save the Children'),
(62537, 'https://ror.org/032eyp751', 'en', 1, 'https://ror.org/032eyp751 Vietnamese Voluntary Foundation'),
(62538, 'https://ror.org/032fd8x63', 'en', 1, 'https://ror.org/032fd8x63 Primary Industries Education Foundation Australia'),
(62539, 'https://ror.org/032gz0g45', 'en', 1, 'https://ror.org/032gz0g45 Shanghai Entry-Exit Inspection and Quarantine Bureau äøŠęµ·å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(62540, 'https://ror.org/032h4fk17', 'en', 1, 'https://ror.org/032h4fk17 San Francisco Zoo'),
(62541, 'https://ror.org/032jj2n15', 'en', 1, 'https://ror.org/032jj2n15 American Association of Gynecologic Laparoscopists'),
(62542, 'https://ror.org/032k2hj66', 'pt', 1, 'https://ror.org/032k2hj66 Associação Portuguesa de Fertilidade'),
(62543, 'https://ror.org/032kej893', 'de', 1, 'https://ror.org/032kej893 Poliklinik für Zahnärztliche Prothetik'),
(62544, 'https://ror.org/032kph469', 'en', 1, 'https://ror.org/032kph469 The Korean Urological Oncology Society ķ•œźµ­ 비뇨기 종양 ķ•™ķšŒ'),
(62545, 'https://ror.org/032mk7q57', 'en', 1, 'https://ror.org/032mk7q57 American Institute for Afghanistan Studies'),
(62546, 'https://ror.org/032q9qk24', 'no_lang_code', 1, 'https://ror.org/032q9qk24 Novum Pharmaceutical Research Services (United States)'),
(62547, 'https://ror.org/032skq703', 'no_lang_code', 1, 'https://ror.org/032skq703 Joimax (Germany)'),
(62548, 'https://ror.org/032vv2x86', 'nl', 1, 'https://ror.org/032vv2x86 Diapriva, Diapriva Dialysezentrum Amsterdam'),
(62549, 'https://ror.org/032wae568', 'no_lang_code', 1, 'https://ror.org/032wae568 Elea (Argentina)'),
(62550, 'https://ror.org/032wmfz20', 'no_lang_code', 1, 'https://ror.org/032wmfz20 Tower Clinical Trials (United States)'),
(62551, 'https://ror.org/032y37w70', 'en', 1, 'https://ror.org/032y37w70 American Distance Education Consortium'),
(62552, 'https://ror.org/032y5sx52', 'en', 1, 'https://ror.org/032y5sx52 HealthONE'),
(62553, 'https://ror.org/03308zq86', 'en', 1, 'https://ror.org/03308zq86 Huron Gastro'),
(62554, 'https://ror.org/03326wy09', 'en', 1, 'https://ror.org/03326wy09 Institut für Therapie- und Gesundheitsforschung Institute for Therapy and Health Research'),
(62555, 'https://ror.org/0332tkb18', 'en', 1, 'https://ror.org/0332tkb18 Amiq Institute'),
(62556, 'https://ror.org/0335jxq92', 'no_lang_code', 1, 'https://ror.org/0335jxq92 Immundiagnostik (Germany)'),
(62557, 'https://ror.org/0336dfn75', 'en', 1, 'https://ror.org/0336dfn75 Toledo Clinic Cancer Center'),
(62558, 'https://ror.org/03383wt55', 'en', 1, 'https://ror.org/03383wt55 Broome-Tioga Board of Cooperative Educational Services'),
(62559, 'https://ror.org/033bq3134', 'en', 1, 'https://ror.org/033bq3134 Israeli Society for the Prevention of Heart Attacks'),
(62560, 'https://ror.org/033brdk22', 'no_lang_code', 1, 'https://ror.org/033brdk22 Centrexion Therapeutics (United States)'),
(62561, 'https://ror.org/033bt1t53', 'en', 1, 'https://ror.org/033bt1t53 Palestinian Family Planning and Protection Association'),
(62562, 'https://ror.org/033ezdy84', 'es', 1, 'https://ror.org/033ezdy84 Hospital Universitario del Sureste'),
(62563, 'https://ror.org/033gvjm02', 'de', 1, 'https://ror.org/033gvjm02 Klinik Lüneburger Heide'),
(62564, 'https://ror.org/033hhy390', 'en', 1, 'https://ror.org/033hhy390 Boushahri Clinic'),
(62565, 'https://ror.org/033jqx441', 'de', 1, 'https://ror.org/033jqx441 Hospital zum Heiligen Geist'),
(62566, 'https://ror.org/033knrw51', 'en', 1, 'https://ror.org/033knrw51 Republican Center for the Prevention and Control of AIDS and Infectious Diseases'),
(62567, 'https://ror.org/033n2wq55', 'de', 1, 'https://ror.org/033n2wq55 Aktion Mensch'),
(62568, 'https://ror.org/033nznn12', 'en', 1, 'https://ror.org/033nznn12 Hong Kong Blood Cancer Foundation é¦™ęøÆč”€ē™ŒåŸŗé‡‘'),
(62569, 'https://ror.org/033s1aj42', 'en', 1, 'https://ror.org/033s1aj42 Moorabbin Hospital'),
(62570, 'https://ror.org/033wnk810', 'en', 1, 'https://ror.org/033wnk810 Voluntary Health Association of Goa'),
(62571, 'https://ror.org/033x1wr64', 'de', 1, 'https://ror.org/033x1wr64 Klinik Rosenberg'),
(62572, 'https://ror.org/033x4t230', 'fr', 1, 'https://ror.org/033x4t230 SociƩtƩ FranƧaise d''Allergologie'),
(62573, 'https://ror.org/033yj6a03', 'en', 1, 'https://ror.org/033yj6a03 Korean Association of Thyroid and Endocrine Surgeons ėŒ€ķ•œź°‘ģƒģ„ ė‚“ė¶„ė¹„ģ™øź³¼ķ•™ķšŒ'),
(62574, 'https://ror.org/033zc3t08', 'nl', 1, 'https://ror.org/033zc3t08 Stichting Erasmus Trustfonds'),
(62575, 'https://ror.org/033zmys03', 'nl', 1, 'https://ror.org/033zmys03 Nederlands Astmacentrum Davos'),
(62576, 'https://ror.org/033zx3z52', 'nl', 1, 'https://ror.org/033zx3z52 Kennisinstituut Bier'),
(62577, 'https://ror.org/0345gq170', 'nl', 1, 'https://ror.org/0345gq170 Thebe'),
(62578, 'https://ror.org/0345pts96', 'en', 1, 'https://ror.org/0345pts96 Paoli Hospital'),
(62579, 'https://ror.org/0345t3q13', 'en', 1, 'https://ror.org/0345t3q13 Interdisciplinary Dental Education Academy'),
(62580, 'https://ror.org/0346nyf55', 'en', 1, 'https://ror.org/0346nyf55 Oncology Institute of Hope and Innovation'),
(62581, 'https://ror.org/03477rg40', 'no_lang_code', 1, 'https://ror.org/03477rg40 Neomedic International (Spain)'),
(62582, 'https://ror.org/034a28j20', 'no_lang_code', 1, 'https://ror.org/034a28j20 Smith & Nephew (Switzerland)'),
(62583, 'https://ror.org/034atv473', 'en', 1, 'https://ror.org/034atv473 Jefferson Institute'),
(62584, 'https://ror.org/034dekp80', 'en', 1, 'https://ror.org/034dekp80 Great Orchestra of Christmas Charity Wielka Orkiestra Świątecznej Pomocy'),
(62585, 'https://ror.org/034fc8f37', 'no_lang_code', 1, 'https://ror.org/034fc8f37 Guangdong Junfeng Spectrum (China)'),
(62586, 'https://ror.org/034hg1w33', 'en', 1, 'https://ror.org/034hg1w33 Tribal Nations Research Group'),
(62587, 'https://ror.org/034k8cv93', 'no_lang_code', 1, 'https://ror.org/034k8cv93 Zimmer Biomet (Netherlands)'),
(62588, 'https://ror.org/034nhtc63', 'nl', 1, 'https://ror.org/034nhtc63 Oogvereniging The Eye Association Netherlands'),
(62589, 'https://ror.org/034nqx294', 'en', 1, 'https://ror.org/034nqx294 Canadian Orthopaedic Foot and Ankle Society'),
(62590, 'https://ror.org/034q4hd34', 'en', 1, 'https://ror.org/034q4hd34 Sts. Mary & Elizabeth Hospital'),
(62591, 'https://ror.org/034weys19', 'fr', 1, 'https://ror.org/034weys19 AMIS FSH'),
(62592, 'https://ror.org/034yah449', 'en', 1, 'https://ror.org/034yah449 Martin Foot and Ankle'),
(62593, 'https://ror.org/034zy7551', 'en', 1, 'https://ror.org/034zy7551 Copenhagen Prospective Studies on Asthma in Childhood'),
(62594, 'https://ror.org/0350na611', 'en', 1, 'https://ror.org/0350na611 Institute for Patient- and Family-Centered Care'),
(62595, 'https://ror.org/0352fvv75', 'de', 1, 'https://ror.org/0352fvv75 Institut für Arbeitsmedizin, Sicherheitstechnik und Ergonomie'),
(62596, 'https://ror.org/03557sb27', 'es', 1, 'https://ror.org/03557sb27 Policlinica Metropolitana'),
(62597, 'https://ror.org/0356ywp11', 'nl', 1, 'https://ror.org/0356ywp11 Stichting Rehabilitatie ā€˜92'),
(62598, 'https://ror.org/03572ah39', 'no_lang_code', 1, 'https://ror.org/03572ah39 Actelion (Germany)'),
(62599, 'https://ror.org/03574zr06', 'en', 1, 'https://ror.org/03574zr06 Ocean Institute'),
(62600, 'https://ror.org/0357qk965', 'nl', 1, 'https://ror.org/0357qk965 Huisartsen Oostelijk Zuid Limburg'),
(62601, 'https://ror.org/0359pwd41', 'en', 1, 'https://ror.org/0359pwd41 Down Syndrome Association of Greater Toledo'),
(62602, 'https://ror.org/035aahr55', 'en', 1, 'https://ror.org/035aahr55 The Egyptian IVF-ET Center Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł…ŲµŲ±ŁŠ لأطفال Ų§Ł„Ų£Ł†Ų§ŲØŁŠŲØ'),
(62603, 'https://ror.org/035btw704', 'de', 1, 'https://ror.org/035btw704 Johanna-Etienne-Krankenhaus'),
(62604, 'https://ror.org/035d5ht51', 'en', 1, 'https://ror.org/035d5ht51 The Fan Fox and Leslie R. Samuels Foundation'),
(62605, 'https://ror.org/035d65343', 'de', 1, 'https://ror.org/035d65343 Klinikum Ingolstadt'),
(62606, 'https://ror.org/035e6q027', 'fr', 1, 'https://ror.org/035e6q027 Languedoc MutualitƩ'),
(62607, 'https://ror.org/035f67744', 'en', 1, 'https://ror.org/035f67744 Labor Pachmann'),
(62608, 'https://ror.org/035gkt554', 'en', 1, 'https://ror.org/035gkt554 Sjƶgren’s Society of Canada'),
(62609, 'https://ror.org/035gsd054', 'no_lang_code', 1, 'https://ror.org/035gsd054 Chemie³ (Germany)'),
(62610, 'https://ror.org/035mdk862', 'no_lang_code', 1, 'https://ror.org/035mdk862 Medi-Tate (Israel)'),
(62611, 'https://ror.org/035n56j11', 'no_lang_code', 1, 'https://ror.org/035n56j11 AstraZeneca (Finland)'),
(62612, 'https://ror.org/035ntcd25', 'en', 1, 'https://ror.org/035ntcd25 Central Vermont Medical Center'),
(62613, 'https://ror.org/035p50w29', 'en', 1, 'https://ror.org/035p50w29 Knox Community Hospital'),
(62614, 'https://ror.org/035thvx71', 'nl', 1, 'https://ror.org/035thvx71 Proteion'),
(62615, 'https://ror.org/035ts5t23', 'en', 1, 'https://ror.org/035ts5t23 Virginia Spine Institute'),
(62616, 'https://ror.org/035vbe686', 'en', 1, 'https://ror.org/035vbe686 Bel-Rea Institute'),
(62617, 'https://ror.org/035ws6k56', 'en', 1, 'https://ror.org/035ws6k56 Bioelectromagnetics Society'),
(62618, 'https://ror.org/035wxqn98', 'en', 1, 'https://ror.org/035wxqn98 Carolinas Center for Advanced Management of Pain'),
(62619, 'https://ror.org/035ysxq78', 'sl', 1, 'https://ror.org/035ysxq78 Energetska agencija za Podravje, Energy Agency of Podravje'),
(62620, 'https://ror.org/035zsgw07', 'no_lang_code', 1, 'https://ror.org/035zsgw07 Cambridge Collaborative (United States)'),
(62621, 'https://ror.org/036187n68', 'nl', 1, 'https://ror.org/036187n68 Lyvore'),
(62622, 'https://ror.org/0362ndm62', 'en', 1, 'https://ror.org/0362ndm62 Educational Media Resources'),
(62623, 'https://ror.org/0362zrb32', 'en', 1, 'https://ror.org/0362zrb32 Swanson Center'),
(62624, 'https://ror.org/0364jg040', 'en', 1, 'https://ror.org/0364jg040 Pure North'),
(62625, 'https://ror.org/036501p19', 'en', 1, 'https://ror.org/036501p19 Gulf Marine Institute of Technology'),
(62626, 'https://ror.org/0365qmq92', 'no_lang_code', 1, 'https://ror.org/0365qmq92 Lena Biosciences (United States)'),
(62627, 'https://ror.org/0365ym773', 'en', 1, 'https://ror.org/0365ym773 Kinston Medical Specialists'),
(62628, 'https://ror.org/036arc746', 'de', 1, 'https://ror.org/036arc746 Kompetenznetz LeukƤmien'),
(62629, 'https://ror.org/036awca68', 'en', 1, 'https://ror.org/036awca68 Institute of Ophthalmology'),
(62630, 'https://ror.org/036br4307', 'en', 1, 'https://ror.org/036br4307 TKI Agri & Food'),
(62631, 'https://ror.org/036cpmb86', 'no_lang_code', 1, 'https://ror.org/036cpmb86 Emotra (Sweden)'),
(62632, 'https://ror.org/036csaq39', 'en', 1, 'https://ror.org/036csaq39 The Third Affiliated Hospital of Guangzhou University of Traditional Chinese Medicine å¹æå·žäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äø‰åŒ»é™¢'),
(62633, 'https://ror.org/036cvn086', 'it', 1, 'https://ror.org/036cvn086 Fondazione A.R. Card Onlus'),
(62634, 'https://ror.org/036d1z676', 'pt', 1, 'https://ror.org/036d1z676 Associação Rede de Universidades da Terceira Idade'),
(62635, 'https://ror.org/036da3063', 'en', 1, 'https://ror.org/036da3063 HĆ“pital Libanais Geitaoui - CHU Lebanese Hospital Geitaoui-University Medical Center المستؓفى Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠ Ų§Ł„Ų¬Ų¹ŁŠŲŖŲ§ŁˆŁŠ'),
(62636, 'https://ror.org/036erhh43', 'no_lang_code', 1, 'https://ror.org/036erhh43 Chemsultants International (United States)'),
(62637, 'https://ror.org/036gpm141', 'de', 1, 'https://ror.org/036gpm141 Asklepios Neurologische Klinik Falkenstein'),
(62638, 'https://ror.org/036hbav43', 'en', 1, 'https://ror.org/036hbav43 Canadian College of Osteopathy');
INSERT INTO `rors` VALUES
(62639, 'https://ror.org/036j3hh72', 'de', 1, 'https://ror.org/036j3hh72 Evangelisches Krankenhaus Düsseldorf'),
(62640, 'https://ror.org/036k9cx83', 'en', 1, 'https://ror.org/036k9cx83 Las Vegas Academy of the Arts'),
(62641, 'https://ror.org/036khbq65', 'en', 1, 'https://ror.org/036khbq65 The Alberta Paraplegic Foundation'),
(62642, 'https://ror.org/036mqzt31', 'en', 1, 'https://ror.org/036mqzt31 Hunan Province Chest Hospital ę¹–å—ēœčƒøē§‘åŒ»é™¢'),
(62643, 'https://ror.org/036mshe20', 'en', 1, 'https://ror.org/036mshe20 London Vision Clinic'),
(62644, 'https://ror.org/036mx0561', 'fr', 1, 'https://ror.org/036mx0561 Clinique Claude-Bernard'),
(62645, 'https://ror.org/036qh7831', 'nl', 1, 'https://ror.org/036qh7831 Revant medisch specialistische revalidatie'),
(62646, 'https://ror.org/036qh8f11', 'de', 1, 'https://ror.org/036qh8f11 Augencentrum Rosenheim'),
(62647, 'https://ror.org/036rq4p38', 'en', 1, 'https://ror.org/036rq4p38 Freeman Health System'),
(62648, 'https://ror.org/036vjnj69', 'no_lang_code', 1, 'https://ror.org/036vjnj69 Innomedis (Germany)'),
(62649, 'https://ror.org/036w42389', 'de', 1, 'https://ror.org/036w42389 Niedersächsisches Landesamt für Soziales, Jugend und Familie'),
(62650, 'https://ror.org/036wdbz11', 'en', 1, 'https://ror.org/036wdbz11 Auto Dealers Caring for Kids Foundation'),
(62651, 'https://ror.org/036yga598', 'de', 1, 'https://ror.org/036yga598 Arbeitsgemeinschaft für Klinische Ernährung'),
(62652, 'https://ror.org/036yvkz90', 'no_lang_code', 1, 'https://ror.org/036yvkz90 NestlƩ (Belgium)'),
(62653, 'https://ror.org/036yzwp60', 'en', 1, 'https://ror.org/036yzwp60 Lakeview Hospital'),
(62654, 'https://ror.org/036zzh557', 'no_lang_code', 1, 'https://ror.org/036zzh557 Allergan (Canada)'),
(62655, 'https://ror.org/03707xt68', 'en', 1, 'https://ror.org/03707xt68 Minimally Invasive Pain Institute'),
(62656, 'https://ror.org/0370kn134', 'en', 1, 'https://ror.org/0370kn134 Southwest Center for Educational Excellence'),
(62657, 'https://ror.org/0372q3g13', 'no_lang_code', 1, 'https://ror.org/0372q3g13 oncgnostics (Germany)'),
(62658, 'https://ror.org/03743p518', 'fr', 1, 'https://ror.org/03743p518 Imagerie Médicale et Radiothérapie DrÓme Ardèche'),
(62659, 'https://ror.org/03754ky26', 'en', 1, 'https://ror.org/03754ky26 Tennessee Oncology'),
(62660, 'https://ror.org/037695w38', 'en', 1, 'https://ror.org/037695w38 National Association for Black Veterans'),
(62661, 'https://ror.org/0376avp13', 'en', 1, 'https://ror.org/0376avp13 Svenska Fotbollfƶrbundet Swedish Football Association'),
(62662, 'https://ror.org/0376sq070', 'en', 1, 'https://ror.org/0376sq070 Gifu Prefecture Medical Association 岐阜県医師会'),
(62663, 'https://ror.org/03772c153', 'en', 1, 'https://ror.org/03772c153 Future of Privacy Forum'),
(62664, 'https://ror.org/03791x537', 'en', 1, 'https://ror.org/03791x537 U-center'),
(62665, 'https://ror.org/037da6921', 'pl', 1, 'https://ror.org/037da6921 Fundacja NUTRICIA NUTRICIA Foundation'),
(62666, 'https://ror.org/037dqnd52', 'en', 1, 'https://ror.org/037dqnd52 The Goldfarb Foundation'),
(62667, 'https://ror.org/037hmn502', 'no_lang_code', 1, 'https://ror.org/037hmn502 PROGAL (Colombia)'),
(62668, 'https://ror.org/037jjwb78', 'fr', 1, 'https://ror.org/037jjwb78 Association Pharmaceutique Belge'),
(62669, 'https://ror.org/037mx5d24', 'en', 1, 'https://ror.org/037mx5d24 American Society for Clinical Investigation'),
(62670, 'https://ror.org/037q5gj93', 'en', 1, 'https://ror.org/037q5gj93 First Coast Cardiovascular Institute'),
(62671, 'https://ror.org/037rc8f81', 'no_lang_code', 1, 'https://ror.org/037rc8f81 S-Biomedic (Germany)'),
(62672, 'https://ror.org/037rv3j62', 'de', 1, 'https://ror.org/037rv3j62 Klinik Blankenstein'),
(62673, 'https://ror.org/037s05q15', 'en', 1, 'https://ror.org/037s05q15 Reidman College'),
(62674, 'https://ror.org/037tym531', 'no_lang_code', 1, 'https://ror.org/037tym531 InterMed (United States)'),
(62675, 'https://ror.org/037vec356', 'es', 1, 'https://ror.org/037vec356 Helios Salud'),
(62676, 'https://ror.org/037xt0e18', 'no_lang_code', 1, 'https://ror.org/037xt0e18 MSTM (United States)'),
(62677, 'https://ror.org/038079n45', 'en', 1, 'https://ror.org/038079n45 Holy Family Memorial Hospital'),
(62678, 'https://ror.org/0381nq624', 'fr', 1, 'https://ror.org/0381nq624 FƩdƩration Internationale de Football Association'),
(62679, 'https://ror.org/038420j04', 'en', 1, 'https://ror.org/038420j04 Abalone Council Australia'),
(62680, 'https://ror.org/03849s113', 'en', 1, 'https://ror.org/03849s113 Central Brain Tumor Registry of the United States'),
(62681, 'https://ror.org/0385e6y24', 'en', 1, 'https://ror.org/0385e6y24 Urological Research Foundation'),
(62682, 'https://ror.org/0389djt38', 'no_lang_code', 1, 'https://ror.org/0389djt38 Nu Skin (United States)'),
(62683, 'https://ror.org/038c74q03', 'no_lang_code', 1, 'https://ror.org/038c74q03 Reck Technik (Germany)'),
(62684, 'https://ror.org/038esqp30', 'de', 1, 'https://ror.org/038esqp30 St. Elisabethen-Krankenhaus Frankfurt'),
(62685, 'https://ror.org/038f5ab46', 'en', 1, 'https://ror.org/038f5ab46 University Colleges Australia'),
(62686, 'https://ror.org/038gq7z31', 'en', 1, 'https://ror.org/038gq7z31 Navajo Language Academy'),
(62687, 'https://ror.org/038jmw351', 'en', 1, 'https://ror.org/038jmw351 Department of Health Canton of Zurich Gesundheitsdirektion Kanton Zürich'),
(62688, 'https://ror.org/038k26971', 'en', 1, 'https://ror.org/038k26971 The Roxbury Institute'),
(62689, 'https://ror.org/038kt0m24', 'nl', 1, 'https://ror.org/038kt0m24 Lelie Zorggroep'),
(62690, 'https://ror.org/038phvh31', 'no_lang_code', 1, 'https://ror.org/038phvh31 INC Research (United Kingdom)'),
(62691, 'https://ror.org/038rjzg81', 'en', 1, 'https://ror.org/038rjzg81 Maria Parham Hospital'),
(62692, 'https://ror.org/038t4rm13', 'en', 1, 'https://ror.org/038t4rm13 Kadlec Clinic'),
(62693, 'https://ror.org/038tfar48', 'sq', 1, 'https://ror.org/038tfar48 Spitali Universitar Shefqet Ndroqi'),
(62694, 'https://ror.org/038vwxf79', 'no_lang_code', 1, 'https://ror.org/038vwxf79 Miromatrix Medical (United States)'),
(62695, 'https://ror.org/038w3gx54', 'en', 1, 'https://ror.org/038w3gx54 Marine Biology Institute of Shandong Province å±±äøœēœęµ·ę“‹ē”Ÿē‰©ē ”ē©¶é™¢ 地址'),
(62696, 'https://ror.org/038zxmy79', 'en', 1, 'https://ror.org/038zxmy79 University Vocational Awards Council'),
(62697, 'https://ror.org/0392bhy50', 'nl', 1, 'https://ror.org/0392bhy50 DOH Zorggroep'),
(62698, 'https://ror.org/0394zmz22', 'en', 1, 'https://ror.org/0394zmz22 Building Child and Family Initiatives'),
(62699, 'https://ror.org/0395pak08', 'en', 1, 'https://ror.org/0395pak08 AAB College Kolegji AAB'),
(62700, 'https://ror.org/0397v4g85', 'no_lang_code', 1, 'https://ror.org/0397v4g85 N-Gene (Hungary)'),
(62701, 'https://ror.org/039868y11', 'no_lang_code', 1, 'https://ror.org/039868y11 Pharma Medica Research (Canada)'),
(62702, 'https://ror.org/0398sv340', 'en', 1, 'https://ror.org/0398sv340 Vienna Challenge Chamber'),
(62703, 'https://ror.org/039b8pv66', 'en', 1, 'https://ror.org/039b8pv66 Oncology Specialists of Charlotte'),
(62704, 'https://ror.org/039d9wk42', 'en', 1, 'https://ror.org/039d9wk42 Adventist HealthCare'),
(62705, 'https://ror.org/039fmvr98', 'en', 1, 'https://ror.org/039fmvr98 Southwestern Vermont Health Care'),
(62706, 'https://ror.org/039g7tm38', 'de', 1, 'https://ror.org/039g7tm38 Alzheimer Schweiz'),
(62707, 'https://ror.org/039h4qc17', 'en', 1, 'https://ror.org/039h4qc17 DeClaire LaMacchia Orthopaedic Institute'),
(62708, 'https://ror.org/039hp9c94', 'en', 1, 'https://ror.org/039hp9c94 Family Planning Association of Hong Kong'),
(62709, 'https://ror.org/039k72k82', 'en', 1, 'https://ror.org/039k72k82 Concept Foundation'),
(62710, 'https://ror.org/039kzrb23', 'no_lang_code', 1, 'https://ror.org/039kzrb23 Nuvisan (Germany)'),
(62711, 'https://ror.org/039m3qq17', 'en', 1, 'https://ror.org/039m3qq17 Choroideremia Research Foundation'),
(62712, 'https://ror.org/039mjhc39', 'no_lang_code', 1, 'https://ror.org/039mjhc39 Masih Daneshvari Hospital Ł…ŁˆŲ³Ų³Ł‡ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ł…Ł„ŪŒ سل و ŲØŪŒŁ…Ų§Ų±ŪŒŁ‡Ų§ŪŒ ریوی'),
(62713, 'https://ror.org/039ng5344', 'en', 1, 'https://ror.org/039ng5344 LXD Research & Display'),
(62714, 'https://ror.org/039ngxv93', 'en', 1, 'https://ror.org/039ngxv93 Saginaw Chippewa Tribal College'),
(62715, 'https://ror.org/039nzp647', 'en', 1, 'https://ror.org/039nzp647 King''s Daughters Medical Center'),
(62716, 'https://ror.org/039p74p43', 'en', 1, 'https://ror.org/039p74p43 Hellenic Cancer Society Ελληνική Αντικαρκινική Εταιρεία'),
(62717, 'https://ror.org/039phvz68', 'no_lang_code', 1, 'https://ror.org/039phvz68 GHD GesundHeits GmbH Deutschland (Germany)'),
(62718, 'https://ror.org/039rx1821', 'no_lang_code', 1, 'https://ror.org/039rx1821 Institut für Angewandte Produktions-Technologie (Germany)'),
(62719, 'https://ror.org/039skw388', 'no_lang_code', 1, 'https://ror.org/039skw388 Lundbeck (Germany)'),
(62720, 'https://ror.org/039wqqg43', 'en', 1, 'https://ror.org/039wqqg43 Association for Children at Risk ×”×¢×ž×•×Ŗ×” לילדים בהיכון'),
(62721, 'https://ror.org/039xvf459', 'en', 1, 'https://ror.org/039xvf459 Kentucky Department of Revenue'),
(62722, 'https://ror.org/039zvcc43', 'en', 1, 'https://ror.org/039zvcc43 Conemaugh Health System'),
(62723, 'https://ror.org/03a011y73', 'et', 1, 'https://ror.org/03a011y73 Eesti Reumatoloogia Selts Estonian Rheumatology Society'),
(62724, 'https://ror.org/03a1e0438', 'no_lang_code', 1, 'https://ror.org/03a1e0438 Kaneka (Germany)'),
(62725, 'https://ror.org/03a2dk673', 'no_lang_code', 1, 'https://ror.org/03a2dk673 Snap40 (United Kingdom)'),
(62726, 'https://ror.org/03a3zhd98', 'es', 1, 'https://ror.org/03a3zhd98 Fundación Neumosur'),
(62727, 'https://ror.org/03a5ewm40', 'no_lang_code', 1, 'https://ror.org/03a5ewm40 Rao Research and Consulting (United States)'),
(62728, 'https://ror.org/03a5tyh47', 'no_lang_code', 1, 'https://ror.org/03a5tyh47 PersonGen (China)'),
(62729, 'https://ror.org/03abchz62', 'en', 1, 'https://ror.org/03abchz62 Adventist Health Bakersfield'),
(62730, 'https://ror.org/03acet573', 'no_lang_code', 1, 'https://ror.org/03acet573 IC Independent Consulting (Australia)'),
(62731, 'https://ror.org/03ad34z63', 'en', 1, 'https://ror.org/03ad34z63 Association of Children and Preventive Dentists of Serbia'),
(62732, 'https://ror.org/03aggr754', 'no_lang_code', 1, 'https://ror.org/03aggr754 Infofish (Australia)'),
(62733, 'https://ror.org/03ambf510', 'en', 1, 'https://ror.org/03ambf510 Horizon Oncology Center'),
(62734, 'https://ror.org/03anfar33', 'en', 1, 'https://ror.org/03anfar33 Rocky Mountain Institute'),
(62735, 'https://ror.org/03aw1bv52', 'en', 1, 'https://ror.org/03aw1bv52 Rajamangala Institute of kidney disease ąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøŖąø–ąø²ąøšąø±ąø™ą¹‚ąø£ąø„ą¹„ąø•ą¹‚ąø£ąø„'),
(62736, 'https://ror.org/03aysbj82', 'de', 1, 'https://ror.org/03aysbj82 OncoRay, OncoRay – Nationales Zentrum für Strahlenforschung in der Onkologie'),
(62737, 'https://ror.org/03b5vk392', 'en', 1, 'https://ror.org/03b5vk392 Center for Neurosciences'),
(62738, 'https://ror.org/03b60ep93', 'nl', 1, 'https://ror.org/03b60ep93 Stichting Bio, Stichting Bio Kinderrevalidatie'),
(62739, 'https://ror.org/03b69tw84', 'de', 1, 'https://ror.org/03b69tw84 HNO Bad Bramstedt'),
(62740, 'https://ror.org/03b6wj477', 'en', 1, 'https://ror.org/03b6wj477 Corning Museum of Glass'),
(62741, 'https://ror.org/03b7e6556', 'no_lang_code', 1, 'https://ror.org/03b7e6556 Nea International (Netherlands)'),
(62742, 'https://ror.org/03b8cqm18', 'it', 1, 'https://ror.org/03b8cqm18 Consorzio Interuniversitario Regionale Pugliese'),
(62743, 'https://ror.org/03b9cq520', 'en', 1, 'https://ror.org/03b9cq520 Olympic Medical Center'),
(62744, 'https://ror.org/03bbcet56', 'fr', 1, 'https://ror.org/03bbcet56 Etablissements de SantƩ Mentale'),
(62745, 'https://ror.org/03bd5dw30', 'no_lang_code', 1, 'https://ror.org/03bd5dw30 T3 Scientific (United States)'),
(62746, 'https://ror.org/03be8p176', 'en', 1, 'https://ror.org/03be8p176 Dolan Park Hospital'),
(62747, 'https://ror.org/03benq302', 'fr', 1, 'https://ror.org/03benq302 Association Francophone pour les Soins Oncologiques de Support'),
(62748, 'https://ror.org/03bf8xe98', 'en', 1, 'https://ror.org/03bf8xe98 Midstate Medical Center'),
(62749, 'https://ror.org/03bh0nj27', 'en', 1, 'https://ror.org/03bh0nj27 Goldseker Foundation'),
(62750, 'https://ror.org/03bjjd024', 'en', 1, 'https://ror.org/03bjjd024 Woolfson Eye Institute'),
(62751, 'https://ror.org/03bjx6g30', 'en', 1, 'https://ror.org/03bjx6g30 Africa Mental Health Foundation'),
(62752, 'https://ror.org/03bpe7b73', 'en', 1, 'https://ror.org/03bpe7b73 American College of Nurse-Midwives'),
(62753, 'https://ror.org/03bpyhp77', 'en', 1, 'https://ror.org/03bpyhp77 Social Insurance Institute ĪŠĪ“ĻĻ…Ī¼Ī± ĪšĪæĪ¹Ī½Ļ‰Ī½Ī¹ĪŗĻŽĪ½ Ī‘ĻƒĻ†Ī±Ī»ĪÆĻƒĪµĻ‰Ī½'),
(62754, 'https://ror.org/03bq83s83', 'en', 1, 'https://ror.org/03bq83s83 Capital Health Medical Center Hopewell'),
(62755, 'https://ror.org/03bqkge93', 'en', 1, 'https://ror.org/03bqkge93 Upper Valley Medical Center'),
(62756, 'https://ror.org/03bv7bz63', 'en', 1, 'https://ror.org/03bv7bz63 South Sound Care Foundation'),
(62757, 'https://ror.org/03bvd4t69', 'no_lang_code', 1, 'https://ror.org/03bvd4t69 Kyowa Kirin (France)'),
(62758, 'https://ror.org/03bvvfk64', 'no_lang_code', 1, 'https://ror.org/03bvvfk64 Quintara Biosciences (United States)'),
(62759, 'https://ror.org/03bwk1778', 'no_lang_code', 1, 'https://ror.org/03bwk1778 Behavioral Diagnostics (United States)'),
(62760, 'https://ror.org/03bx4c072', 'en', 1, 'https://ror.org/03bx4c072 The Spine Institute'),
(62761, 'https://ror.org/03by5ya49', 'no_lang_code', 1, 'https://ror.org/03by5ya49 Epiim (Estonia)'),
(62762, 'https://ror.org/03by80w61', 'en', 1, 'https://ror.org/03by80w61 Dayton Interventional Radiology'),
(62763, 'https://ror.org/03bz8z424', 'nl', 1, 'https://ror.org/03bz8z424 Dystonie Vereniging'),
(62764, 'https://ror.org/03bzzj274', 'nl', 1, 'https://ror.org/03bzzj274 Stichting Hartcentrum Twente'),
(62765, 'https://ror.org/03c0asn85', 'no_lang_code', 1, 'https://ror.org/03c0asn85 Redax (Italy)'),
(62766, 'https://ror.org/03c0nts38', 'en', 1, 'https://ror.org/03c0nts38 Woman’s Hospital of Texas'),
(62767, 'https://ror.org/03c4ay951', 'en', 1, 'https://ror.org/03c4ay951 Cardiovascular Institute of Central Florida'),
(62768, 'https://ror.org/03c7ycp20', 'de', 1, 'https://ror.org/03c7ycp20 Deutsche Neurodermitis Stiftung'),
(62769, 'https://ror.org/03c8kfz86', 'no_lang_code', 1, 'https://ror.org/03c8kfz86 Innopastry (Netherlands)'),
(62770, 'https://ror.org/03c9gd523', 'no_lang_code', 1, 'https://ror.org/03c9gd523 Yosemite International Consultants (United States)'),
(62771, 'https://ror.org/03cb3w715', 'en', 1, 'https://ror.org/03cb3w715 Congenital Muscle Disease International Registry'),
(62772, 'https://ror.org/03cba0s60', 'de', 1, 'https://ror.org/03cba0s60 Klinik für Neuropädiatrie und Muskelerkrankungen'),
(62773, 'https://ror.org/03cbwdg94', 'en', 1, 'https://ror.org/03cbwdg94 Catalan Society of Family and Community Medicine'),
(62774, 'https://ror.org/03ceh0618', 'en', 1, 'https://ror.org/03ceh0618 Sri Lanka College of Obstetricians & Gynaecologists'),
(62775, 'https://ror.org/03cev2h16', 'nl', 1, 'https://ror.org/03cev2h16 Stichting Kinderen en Kansen'),
(62776, 'https://ror.org/03chvfw61', 'en', 1, 'https://ror.org/03chvfw61 International Community for Auditory Display'),
(62777, 'https://ror.org/03cj17c02', 'en', 1, 'https://ror.org/03cj17c02 Holistic Health Research Centre'),
(62778, 'https://ror.org/03ckfsa43', 'en', 1, 'https://ror.org/03ckfsa43 Institute of Population, Health and Development'),
(62779, 'https://ror.org/03ckmzz49', 'en', 1, 'https://ror.org/03ckmzz49 Egyptian Foundation for Cancer Research'),
(62780, 'https://ror.org/03ckvbj98', 'en', 1, 'https://ror.org/03ckvbj98 Bon Secours Liver Institute of Richmond'),
(62781, 'https://ror.org/03cmwaa13', 'no_lang_code', 1, 'https://ror.org/03cmwaa13 ABX-CRO Advanced Pharmaceutical Services (Germany)'),
(62782, 'https://ror.org/03cmx5943', 'no_lang_code', 1, 'https://ror.org/03cmx5943 Bayer (Finland)'),
(62783, 'https://ror.org/03cn5jj91', 'pt', 1, 'https://ror.org/03cn5jj91 Hospital Municipal São José'),
(62784, 'https://ror.org/03cn8n632', 'de', 1, 'https://ror.org/03cn8n632 Klinikum Mutterhaus der BorromƤerinnen'),
(62785, 'https://ror.org/03cne5517', 'en', 1, 'https://ror.org/03cne5517 Kotsanis Institute'),
(62786, 'https://ror.org/03cr5e788', 'de', 1, 'https://ror.org/03cr5e788 Klinik und Poliklinik für Hals-, Nasen-, Ohrenheilkunde'),
(62787, 'https://ror.org/03cr9cq69', 'no_lang_code', 1, 'https://ror.org/03cr9cq69 Rivanna Medical (United States)'),
(62788, 'https://ror.org/03creye80', 'en', 1, 'https://ror.org/03creye80 Boucher Institute of Naturopathic Medicine'),
(62789, 'https://ror.org/03crycs56', 'en', 1, 'https://ror.org/03crycs56 Regional Center for the Prevention and Control of AIDS Volgograd ВолгограГский областной центр профилактики Šø Š±Š¾Ń€ŃŒŠ±Ń‹ со Š”ŠŸŠ˜Š”Š¾Š¼'),
(62790, 'https://ror.org/03cryrv62', 'en', 1, 'https://ror.org/03cryrv62 Denova Research'),
(62791, 'https://ror.org/03ct3tn05', 'en', 1, 'https://ror.org/03ct3tn05 Italian Society of Periodontology and Implantology SocietĆ  Italiana di Parodontologia e Implantologia'),
(62792, 'https://ror.org/03cvc1094', 'en', 1, 'https://ror.org/03cvc1094 Jiangsu Provincial Academy of Environmental Science ę±Ÿč‹ēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(62793, 'https://ror.org/03cxfcq46', 'en', 1, 'https://ror.org/03cxfcq46 Beijing Urban Systems Engineering Research Center åŒ—äŗ¬åŸŽåø‚ē³»ē»Ÿå·„ēØ‹ē ”ē©¶äø­åæƒ'),
(62794, 'https://ror.org/03cyvc844', 'en', 1, 'https://ror.org/03cyvc844 "Woman Health & Family Planning" Charity Foundation БлагоГійний фонГ "Жінка зГоров''я та сімейного ŠæŠ»Š°Š½ŃƒŠ²Š°Š½Š½Ń"'),
(62795, 'https://ror.org/03czygt47', 'nl', 1, 'https://ror.org/03czygt47 Stichting Gereformeerd of Burgerweeshuis te Haarlem'),
(62796, 'https://ror.org/03d4teb38', 'no_lang_code', 1, 'https://ror.org/03d4teb38 Infinitesimal (United States)'),
(62797, 'https://ror.org/03d4twy92', 'en', 1, 'https://ror.org/03d4twy92 Fuling Center Hospital of Chongqing é‡åŗ†åø‚ę¶Ŗé™µäø­åæƒåŒ»é™¢'),
(62798, 'https://ror.org/03d5cyq12', 'en', 1, 'https://ror.org/03d5cyq12 TriWest Research Associates'),
(62799, 'https://ror.org/03d5yat74', 'en', 1, 'https://ror.org/03d5yat74 Fuzhou Pulmonary Hospital of Fujian'),
(62800, 'https://ror.org/03d5zbb55', 'en', 1, 'https://ror.org/03d5zbb55 Alberta Pharmacists Association'),
(62801, 'https://ror.org/03d6gdk92', 'sv', 1, 'https://ror.org/03d6gdk92 Folkuniversitetet'),
(62802, 'https://ror.org/03d8cnv56', 'en', 1, 'https://ror.org/03d8cnv56 Neighbourhood Pharmacy Association of Canada'),
(62803, 'https://ror.org/03d8ync95', 'de', 1, 'https://ror.org/03d8ync95 Stiftung Deutsche Depressionshilfe'),
(62804, 'https://ror.org/03d9g9t35', 'en', 1, 'https://ror.org/03d9g9t35 Finnish Society of Surgery Suomen Kirurgiyhdistys'),
(62805, 'https://ror.org/03ddhm954', 'en', 1, 'https://ror.org/03ddhm954 Keogh Institute for Medical Research'),
(62806, 'https://ror.org/03deszr39', 'en', 1, 'https://ror.org/03deszr39 Defence Against Cancer Foundation'),
(62807, 'https://ror.org/03det7895', 'en', 1, 'https://ror.org/03det7895 Oncology Hematology Associates of Saginaw Valley'),
(62808, 'https://ror.org/03dfj7v30', 'en', 1, 'https://ror.org/03dfj7v30 ANZCHOG'),
(62809, 'https://ror.org/03dgcmw96', 'en', 1, 'https://ror.org/03dgcmw96 Yunnan Earthquake Prevention and Disaster Reduction äŗ‘å—ēœåœ°éœ‡å±€'),
(62810, 'https://ror.org/03djmp837', 'en', 1, 'https://ror.org/03djmp837 Gritman Medical Center'),
(62811, 'https://ror.org/03djwcj59', 'en', 1, 'https://ror.org/03djwcj59 The Dementia Association of Thailand ąøŖąø”ąø²ąø„ąø”ą¹‚ąø£ąø„ąøŖąø”ąø­ąø‡ą¹€ąøŖąø·ą¹ˆąø­ąø”ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(62812, 'https://ror.org/03dn8ag70', 'de', 1, 'https://ror.org/03dn8ag70 KaufmƤnnische Krankenkasse'),
(62813, 'https://ror.org/03dnhfz27', 'en', 1, 'https://ror.org/03dnhfz27 British Cardiovascular Intervention Society'),
(62814, 'https://ror.org/03dp65d64', 'en', 1, 'https://ror.org/03dp65d64 Billings Clinic Cody'),
(62815, 'https://ror.org/03dpet089', 'en', 1, 'https://ror.org/03dpet089 Organisation of European Cancer Institutes'),
(62816, 'https://ror.org/03dq7j590', 'es', 1, 'https://ror.org/03dq7j590 Sociedad EspaƱola de Cuidados Intensivos PediƔtricos'),
(62817, 'https://ror.org/03drnws57', 'fr', 1, 'https://ror.org/03drnws57 Sheikh Ragheb Harb Hospital'),
(62818, 'https://ror.org/03ds2he10', 'no_lang_code', 1, 'https://ror.org/03ds2he10 Atrium Medical (Australia)'),
(62819, 'https://ror.org/03dsbfb14', 'en', 1, 'https://ror.org/03dsbfb14 Australian Institute of Tropical Health and Medicine'),
(62820, 'https://ror.org/03dsbzv79', 'en', 1, 'https://ror.org/03dsbzv79 Radiation Oncology Associates'),
(62821, 'https://ror.org/03dvtch96', 'en', 1, 'https://ror.org/03dvtch96 Fairbanks Memorial Hospital'),
(62822, 'https://ror.org/03dw28302', 'en', 1, 'https://ror.org/03dw28302 BAU International University'),
(62823, 'https://ror.org/03e0ext69', 'en', 1, 'https://ror.org/03e0ext69 Andrews Research & Education Foundation'),
(62824, 'https://ror.org/03e1kgt76', 'en', 1, 'https://ror.org/03e1kgt76 Council of State Governments Midwest'),
(62825, 'https://ror.org/03e4r0p06', 'en', 1, 'https://ror.org/03e4r0p06 The Royal College Of Anesthesiologists Of Thailand ąø£ąø²ąøŠąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø§ąø“ąøŖąø±ąøąøąøµąø§ąø“ąø—ąø¢ąø²ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(62826, 'https://ror.org/03e4xsk06', 'no_lang_code', 1, 'https://ror.org/03e4xsk06 Thalchemy (United States)'),
(62827, 'https://ror.org/03e5wjh27', 'en', 1, 'https://ror.org/03e5wjh27 Mayfield Brain & Spine'),
(62828, 'https://ror.org/03e7cxq04', 'en', 1, 'https://ror.org/03e7cxq04 Canadian Society of Colon and Rectal Surgeons'),
(62829, 'https://ror.org/03e7fa829', 'en', 1, 'https://ror.org/03e7fa829 Association of British Clinical Diabetologists'),
(62830, 'https://ror.org/03e9v4151', 'en', 1, 'https://ror.org/03e9v4151 I4CE – Institute for Climate Economics'),
(62831, 'https://ror.org/03ecr5c85', 'en', 1, 'https://ror.org/03ecr5c85 Kaiser Permanente Burke Medical Center'),
(62832, 'https://ror.org/03ed6ba60', 'nl', 1, 'https://ror.org/03ed6ba60 Epilepsiefonds'),
(62833, 'https://ror.org/03edzye91', 'no_lang_code', 1, 'https://ror.org/03edzye91 Apama Medical (United States)'),
(62834, 'https://ror.org/03eg7wq38', 'tr', 1, 'https://ror.org/03eg7wq38 Turkish Emergency Medical Association Türkiye Acil Tıp Derneği'),
(62835, 'https://ror.org/03egr7630', 'de', 1, 'https://ror.org/03egr7630 Diabetesinstitut Heidelberg'),
(62836, 'https://ror.org/03emyr182', 'en', 1, 'https://ror.org/03emyr182 New Mexico Cancer Center'),
(62837, 'https://ror.org/03en95y37', 'nl', 1, 'https://ror.org/03en95y37 Merem'),
(62838, 'https://ror.org/03epcb283', 'en', 1, 'https://ror.org/03epcb283 Brain Matters Research'),
(62839, 'https://ror.org/03epm2r70', 'en', 1, 'https://ror.org/03epm2r70 ICARE Eye Hospital & Postgraduate Institute'),
(62840, 'https://ror.org/03eq4wq29', 'no_lang_code', 1, 'https://ror.org/03eq4wq29 Metacure (United States)'),
(62841, 'https://ror.org/03erpd422', 'de', 1, 'https://ror.org/03erpd422 Förderkreis Hilfe für krebskranke Kinder'),
(62842, 'https://ror.org/03esvmb28', 'en', 1, 'https://ror.org/03esvmb28 Kinderklinik Tübingen University Children''s Hospital Tübingen'),
(62843, 'https://ror.org/03exf6a43', 'en', 1, 'https://ror.org/03exf6a43 Reproductive Science Medical Center'),
(62844, 'https://ror.org/03exh6913', 'nl', 1, 'https://ror.org/03exh6913 Podocentrum Alkmaar'),
(62845, 'https://ror.org/03exkkm57', 'no_lang_code', 1, 'https://ror.org/03exkkm57 Polaris Research and Development (United States)'),
(62846, 'https://ror.org/03eyfxj96', 'ro', 1, 'https://ror.org/03eyfxj96 Spitalul Clinic Judeţean de Urgenţe "Sf. Spiridon" Iaşi'),
(62847, 'https://ror.org/03eyr3b88', 'es', 1, 'https://ror.org/03eyr3b88 Fundación Empresa-Universidad Gallega'),
(62848, 'https://ror.org/03f4hd425', 'en', 1, 'https://ror.org/03f4hd425 Northshore Oncology Associates'),
(62849, 'https://ror.org/03f5v0b74', 'en', 1, 'https://ror.org/03f5v0b74 Midwest Stone Institute'),
(62850, 'https://ror.org/03f6d5009', 'en', 1, 'https://ror.org/03f6d5009 Ludwig Boltzmann Institut Health Promotion Research'),
(62851, 'https://ror.org/03f6gnd82', 'en', 1, 'https://ror.org/03f6gnd82 St. Rita''s Medical Center'),
(62852, 'https://ror.org/03f9y3f86', 'en', 1, 'https://ror.org/03f9y3f86 Chesterfield Family Practice Center'),
(62853, 'https://ror.org/03faca780', 'no_lang_code', 1, 'https://ror.org/03faca780 Screenscope (United States)'),
(62854, 'https://ror.org/03fack110', 'de', 1, 'https://ror.org/03fack110 Anna Mueller Grocholski-Stiftung'),
(62855, 'https://ror.org/03famzf42', 'de', 1, 'https://ror.org/03famzf42 Acqua Klinik'),
(62856, 'https://ror.org/03fc2zn41', 'en', 1, 'https://ror.org/03fc2zn41 Tallahassee Orthopedic Clinic'),
(62857, 'https://ror.org/03fcke922', 'en', 1, 'https://ror.org/03fcke922 Australian Institute of Food Science and Technology'),
(62858, 'https://ror.org/03fd2y933', 'nl', 1, 'https://ror.org/03fd2y933 Stichting Agis Zorginnovatiefonds'),
(62859, 'https://ror.org/03feft235', 'en', 1, 'https://ror.org/03feft235 The Cardiac and Vascular Institute'),
(62860, 'https://ror.org/03fgher32', 'en', 1, 'https://ror.org/03fgher32 UC Irvine Health'),
(62861, 'https://ror.org/03fhrtz10', 'en', 1, 'https://ror.org/03fhrtz10 Northwestern Medicine Lake Forest Hospital'),
(62862, 'https://ror.org/03fmtg610', 'de', 1, 'https://ror.org/03fmtg610 Institut für alternative und nachhaltige Ernährung'),
(62863, 'https://ror.org/03frm6q70', 'en', 1, 'https://ror.org/03frm6q70 Trios Health'),
(62864, 'https://ror.org/03fs77m09', 'no_lang_code', 1, 'https://ror.org/03fs77m09 GILUPI (Germany)'),
(62865, 'https://ror.org/03fsf0027', 'en', 1, 'https://ror.org/03fsf0027 British Columbia Dental Hygienists'' Association'),
(62866, 'https://ror.org/03fsnw247', 'no_lang_code', 1, 'https://ror.org/03fsnw247 OnkoDataMed (Germany)'),
(62867, 'https://ror.org/03fszbf20', 'en', 1, 'https://ror.org/03fszbf20 Optimus Clinical Research'),
(62868, 'https://ror.org/03ftkmq63', 'en', 1, 'https://ror.org/03ftkmq63 Jacksonville Center for Clinical Research'),
(62869, 'https://ror.org/03fttgk04', 'en', 1, 'https://ror.org/03fttgk04 Hong Kong Eye Hospital é¦™ęøÆēœ¼ē§‘é†«é™¢'),
(62870, 'https://ror.org/03fvjvp95', 'no_lang_code', 1, 'https://ror.org/03fvjvp95 GDI Integrated Facility Services (Canada)'),
(62871, 'https://ror.org/03g0fcj72', 'en', 1, 'https://ror.org/03g0fcj72 Sovah Health Martinsville'),
(62872, 'https://ror.org/03g2qrf69', 'en', 1, 'https://ror.org/03g2qrf69 Florida Council of Teachers of Mathematics'),
(62873, 'https://ror.org/03g7v9982', 'nl', 1, 'https://ror.org/03g7v9982 HilverZorg'),
(62874, 'https://ror.org/03g9a1538', 'no_lang_code', 1, 'https://ror.org/03g9a1538 Embedded Fitness (Netherlands)'),
(62875, 'https://ror.org/03ga0ws30', 'no_lang_code', 1, 'https://ror.org/03ga0ws30 Seismic Isolation Engineering (United States)'),
(62876, 'https://ror.org/03gc62f43', 'no_lang_code', 1, 'https://ror.org/03gc62f43 Laxdale Foodservice (United Kingdom)'),
(62877, 'https://ror.org/03gfeke93', 'en', 1, 'https://ror.org/03gfeke93 Guangdong Province Environmental Monitoring Center å¹æäøœēœēŽÆå¢ƒē›‘ęµ‹äø­åæƒ'),
(62878, 'https://ror.org/03ggp5v59', 'en', 1, 'https://ror.org/03ggp5v59 Society For Applied Spectroscopy'),
(62879, 'https://ror.org/03ghw7z04', 'nl', 1, 'https://ror.org/03ghw7z04 Uitvoeringsinstituut Werknemersverzekeringen'),
(62880, 'https://ror.org/03gj9g134', 'en', 1, 'https://ror.org/03gj9g134 Translational Research Institute for Metabolism and Diabetes'),
(62881, 'https://ror.org/03gn7k041', 'no_lang_code', 1, 'https://ror.org/03gn7k041 NestlƩ (China)'),
(62882, 'https://ror.org/03gnnp686', 'en', 1, 'https://ror.org/03gnnp686 Ocular Immunology and Uveitis Foundation'),
(62883, 'https://ror.org/03gqc7y13', 'en', 1, 'https://ror.org/03gqc7y13 Institute for Exercise and Environmental Medicine'),
(62884, 'https://ror.org/03greb419', 'en', 1, 'https://ror.org/03greb419 Turkish Metabolic Surgery Foundation'),
(62885, 'https://ror.org/03grgqr35', 'en', 1, 'https://ror.org/03grgqr35 Moscow City Clinical Hospital after V.M. Buyanov Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° им. Š’. М. Š‘ŃƒŃŠ½Š¾Š²Š°'),
(62886, 'https://ror.org/03gsbap19', 'en', 1, 'https://ror.org/03gsbap19 Clinical Trial Center Maastricht'),
(62887, 'https://ror.org/03gsjff75', 'de', 1, 'https://ror.org/03gsjff75 Waldburg-Zeil Kliniken'),
(62888, 'https://ror.org/03gtaf306', 'no_lang_code', 1, 'https://ror.org/03gtaf306 Univerexport (Serbia)'),
(62889, 'https://ror.org/03gtg9w20', 'es', 1, 'https://ror.org/03gtg9w20 Hospital Universitario del Vinalopó'),
(62890, 'https://ror.org/03gv0kc08', 'fr', 1, 'https://ror.org/03gv0kc08 Oncolie'),
(62891, 'https://ror.org/03gv2tj61', 'no_lang_code', 1, 'https://ror.org/03gv2tj61 Scottsdale Research Institute (United States)'),
(62892, 'https://ror.org/03gy9dj46', 'en', 1, 'https://ror.org/03gy9dj46 Bear Valley'),
(62893, 'https://ror.org/03gzy9q74', 'de', 1, 'https://ror.org/03gzy9q74 Agaplesion Bethesda Klinik'),
(62894, 'https://ror.org/03h007a78', 'en', 1, 'https://ror.org/03h007a78 Association for Tropical Biology and Conservation'),
(62895, 'https://ror.org/03h0d2228', 'en', 1, 'https://ror.org/03h0d2228 California Northstate University'),
(62896, 'https://ror.org/03h0ds251', 'en', 1, 'https://ror.org/03h0ds251 European Dairy Association'),
(62897, 'https://ror.org/03h1j4f11', 'de', 1, 'https://ror.org/03h1j4f11 KrankenhƤuser Landkreis Freudenstadt'),
(62898, 'https://ror.org/03h1ytk17', 'en', 1, 'https://ror.org/03h1ytk17 Kindercare Pediatrics'),
(62899, 'https://ror.org/03h3mye18', 'de', 1, 'https://ror.org/03h3mye18 NBank'),
(62900, 'https://ror.org/03h3pc979', 'no_lang_code', 1, 'https://ror.org/03h3pc979 Media Rez (United States)'),
(62901, 'https://ror.org/03h4vsb09', 'en', 1, 'https://ror.org/03h4vsb09 St. Francis Foundation'),
(62902, 'https://ror.org/03h6d4166', 'en', 1, 'https://ror.org/03h6d4166 Iowa Lutheran Hospital'),
(62903, 'https://ror.org/03h79ns34', 'en', 1, 'https://ror.org/03h79ns34 Bowmen Family Foundation'),
(62904, 'https://ror.org/03h7ehw84', 'en', 1, 'https://ror.org/03h7ehw84 Saint Mary''s Regional Medical Center'),
(62905, 'https://ror.org/03h7g7t47', 'en', 1, 'https://ror.org/03h7g7t47 Massachusetts Academy of Math and Science'),
(62906, 'https://ror.org/03h83vk17', 'fr', 1, 'https://ror.org/03h83vk17 Ministère De La Santé'),
(62907, 'https://ror.org/03h8wam21', 'de', 1, 'https://ror.org/03h8wam21 Schön Klinik München Schwabing'),
(62908, 'https://ror.org/03h96m993', 'fr', 1, 'https://ror.org/03h96m993 Les Thermes d’Allevard'),
(62909, 'https://ror.org/03h9eev95', 'de', 1, 'https://ror.org/03h9eev95 Theo und Friedl Schƶller-Stiftung'),
(62910, 'https://ror.org/03h9qwy97', 'en', 1, 'https://ror.org/03h9qwy97 Southeastern Regional Education Service Center'),
(62911, 'https://ror.org/03haahd66', 'en', 1, 'https://ror.org/03haahd66 Environmental Protection Research Institute of Light Industry č½»å·„äøšēŽÆå¢ƒäæęŠ¤ē ”ē©¶ę‰€'),
(62912, 'https://ror.org/03haydy69', 'no_lang_code', 1, 'https://ror.org/03haydy69 Cambridge Weight Plan (United Kingdom)'),
(62913, 'https://ror.org/03hbv3b74', 'en', 1, 'https://ror.org/03hbv3b74 Blantyre Institute for Community Ophthalmology'),
(62914, 'https://ror.org/03hcgt996', 'no_lang_code', 1, 'https://ror.org/03hcgt996 Top Caredent (Switzerland)'),
(62915, 'https://ror.org/03hdhwe72', 'it', 1, 'https://ror.org/03hdhwe72 Consorzio Interuniversitario Nazionale per la Bio-Oncologia'),
(62916, 'https://ror.org/03hgdak73', 'no_lang_code', 1, 'https://ror.org/03hgdak73 Clinic Asklepio Larissa Ī˜ĪµĻĪ±Ļ€ĪµĻ…Ļ„Ī®ĻĪ¹Īæ Ī‘ĻƒĪŗĪ»Ī·Ļ€Ī¹ĪµĪÆĪæ Ī›Ī¬ĻĪ¹ĻƒĪ±Ļ‚ ΕΠΕ'),
(62917, 'https://ror.org/03hghb841', 'ro', 1, 'https://ror.org/03hghb841 Societatea Română de Anestezie şi Terapie Intensivă'),
(62918, 'https://ror.org/03hmb2468', 'no_lang_code', 1, 'https://ror.org/03hmb2468 Neurotechnics (United Kingdom)'),
(62919, 'https://ror.org/03hmdrw82', 'en', 1, 'https://ror.org/03hmdrw82 Russian Phlebology Association ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ флебологов России'),
(62920, 'https://ror.org/03hmqk966', 'de', 1, 'https://ror.org/03hmqk966 Albert Schweitzer Klinik'),
(62921, 'https://ror.org/03hpjw438', 'en', 1, 'https://ror.org/03hpjw438 Praboromarajchanok Institute of Heath Workforce Development ąøŖąø–ąø²ąøšąø±ąø™ąøžąø£ąø°ąøšąø£ąø”ąø£ąø²ąøŠąøŠąø™ąø'),
(62922, 'https://ror.org/03hvx4842', 'de', 1, 'https://ror.org/03hvx4842 Gesundheitsnetz Rhein-Neckar'),
(62923, 'https://ror.org/03hw0pv02', 'de', 1, 'https://ror.org/03hw0pv02 Vogtland-Klinik'),
(62924, 'https://ror.org/03hx4df17', 'en', 1, 'https://ror.org/03hx4df17 Instructional Research Group'),
(62925, 'https://ror.org/03hxqcn24', 'no_lang_code', 1, 'https://ror.org/03hxqcn24 Gilead Sciences (Italy)'),
(62926, 'https://ror.org/03hy7gn55', 'en', 1, 'https://ror.org/03hy7gn55 The Mountain Institute'),
(62927, 'https://ror.org/03j0gg417', 'en', 1, 'https://ror.org/03j0gg417 The Knee Society'),
(62928, 'https://ror.org/03j3es427', 'de', 1, 'https://ror.org/03j3es427 Association of European Ayurvedic Physicians & Therapists Verband EuropƤischer Ayurveda-Mediziner & Therapeuten'),
(62929, 'https://ror.org/03j503z69', 'fr', 1, 'https://ror.org/03j503z69 Institut Interuniversitaire pour les Relations entre l''Europe l''Amérique Latine et les Caraïbes'),
(62930, 'https://ror.org/03j64fn02', 'no_lang_code', 1, 'https://ror.org/03j64fn02 MacKichan Software (United States)'),
(62931, 'https://ror.org/03j7zd787', 'es', 1, 'https://ror.org/03j7zd787 Colombian Foundation Center for Epilepsy and Neurological Diseases Fundacion Centro Colombiano de Epilepsia y en Enfermedades Neurologicas'),
(62932, 'https://ror.org/03j81hg31', 'fr', 1, 'https://ror.org/03j81hg31 Association de MusicothƩrapie Applications et Recherches Cliniques'),
(62933, 'https://ror.org/03jbnw407', 'fr', 1, 'https://ror.org/03jbnw407 Brides-les-Bains, Thermes de Brides-les-Bains'),
(62934, 'https://ror.org/03jfdh841', 'en', 1, 'https://ror.org/03jfdh841 Japan Petroleum Energy Center ēŸ³ę²¹ć‚Øćƒćƒ«ć‚®ćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(62935, 'https://ror.org/03jftj094', 'nl', 1, 'https://ror.org/03jftj094 Yulius'),
(62936, 'https://ror.org/03jgde213', 'en', 1, 'https://ror.org/03jgde213 Hellenic Food Industries Association Ī£ĻĪ½Ī“ĪµĻƒĪ¼ĪæĻ‚ Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŽĪ½ Ī’Ī¹ĪæĪ¼Ī·Ļ‡Ī±Ī½Ī¹ĻŽĪ½ Τροφίμων'),
(62937, 'https://ror.org/03jgzzv46', 'en', 1, 'https://ror.org/03jgzzv46 Alternating Hemiplegia of Childhood Foundation'),
(62938, 'https://ror.org/03jh4jw93', 'en', 1, 'https://ror.org/03jh4jw93 CSIRO Health and Biosecurity'),
(62939, 'https://ror.org/03jm9y996', 'en', 1, 'https://ror.org/03jm9y996 Lawrence Semiconductor Research Laboratory'),
(62940, 'https://ror.org/03jmahf97', 'en', 1, 'https://ror.org/03jmahf97 Institut de Recherche de l''Agriculture Biologique Research Institute of Organic Agriculture'),
(62941, 'https://ror.org/03jmcnx26', 'en', 1, 'https://ror.org/03jmcnx26 Southern Shark Industry Alliance'),
(62942, 'https://ror.org/03jp2xz10', 'en', 1, 'https://ror.org/03jp2xz10 Intercultural Center for Research in Education'),
(62943, 'https://ror.org/03jqhsm88', 'en', 1, 'https://ror.org/03jqhsm88 Gaidar Institute for Economic Policy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Š¹ политики имени Š•. Š¢. ГайГара'),
(62944, 'https://ror.org/03jt4bv90', 'en', 1, 'https://ror.org/03jt4bv90 University Hospitals Sharon Health Center'),
(62945, 'https://ror.org/03jvn6861', 'no_lang_code', 1, 'https://ror.org/03jvn6861 PharmaFGP (Germany)'),
(62946, 'https://ror.org/03jx7ar65', 'no_lang_code', 1, 'https://ror.org/03jx7ar65 DOCxcellence (Germany)'),
(62947, 'https://ror.org/03jxkz251', 'it', 1, 'https://ror.org/03jxkz251 Istituto Tumori Bari'),
(62948, 'https://ror.org/03jya5r16', 'no_lang_code', 1, 'https://ror.org/03jya5r16 MultiModel Research (United States)'),
(62949, 'https://ror.org/03jykpa72', 'en', 1, 'https://ror.org/03jykpa72 National Congress of American Indians'),
(62950, 'https://ror.org/03jz6qp63', 'en', 1, 'https://ror.org/03jz6qp63 Murmansk Regional Oncology Center ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(62951, 'https://ror.org/03k18qw23', 'en', 1, 'https://ror.org/03k18qw23 Hainan Eye Hospital'),
(62952, 'https://ror.org/03k261948', 'nl', 1, 'https://ror.org/03k261948 Roessingh, Centrum voor Revalidatie'),
(62953, 'https://ror.org/03k2mbt67', 'it', 1, 'https://ror.org/03k2mbt67 Consorzio Universitario per l''Ateneo della Sicilia occidentale e del bacino del Mediterraneo, UNISOM'),
(62954, 'https://ror.org/03k4avy53', 'no_lang_code', 1, 'https://ror.org/03k4avy53 Winanga-Li'),
(62955, 'https://ror.org/03k4rxa78', 'no_lang_code', 1, 'https://ror.org/03k4rxa78 Obalon (United States)'),
(62956, 'https://ror.org/03k50x073', 'en', 1, 'https://ror.org/03k50x073 Mats Uldal Humanitarian Foundation'),
(62957, 'https://ror.org/03k553r38', 'en', 1, 'https://ror.org/03k553r38 Qatar Diabetes Association'),
(62958, 'https://ror.org/03k57wy12', 'no_lang_code', 1, 'https://ror.org/03k57wy12 VesselTek Biomedical (United States)'),
(62959, 'https://ror.org/03k6pst70', 'en', 1, 'https://ror.org/03k6pst70 Kharkiv Regional Clinical Psychiatric Hospital No 3 Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° обласна клінічна психіатрична Š»Ń–ŠŗŠ°Ń€Š½Ń'),
(62960, 'https://ror.org/03k706h10', 'en', 1, 'https://ror.org/03k706h10 Mark H. Zangmeister Cancer Center'),
(62961, 'https://ror.org/03k7rfp93', 'en', 1, 'https://ror.org/03k7rfp93 NEGES Foundation'),
(62962, 'https://ror.org/03kbgb212', 'en', 1, 'https://ror.org/03kbgb212 Society of Alcoholism and other Addictions'),
(62963, 'https://ror.org/03kbxr932', 'de', 1, 'https://ror.org/03kbxr932 Schlosspark-Klinik'),
(62964, 'https://ror.org/03kc8nj63', 'de', 1, 'https://ror.org/03kc8nj63 Medizinisches Wirtschaftsinstitut'),
(62965, 'https://ror.org/03ke8w717', 'en', 1, 'https://ror.org/03ke8w717 Houston Fertility Institute'),
(62966, 'https://ror.org/03kgjaz64', 'en', 1, 'https://ror.org/03kgjaz64 Vince Lombardi Cancer Clinic'),
(62967, 'https://ror.org/03kh2bz92', 'en', 1, 'https://ror.org/03kh2bz92 National Institute of Public Health ąŗŖąŗ°ąŗ–ąŗ²ąŗšąŗ±ąŗ™ąŗŖąŗ²ąŗ—ąŗ²ąŗ„ąŗ°ąŗ™ąŗ°ąŗŖąŗøąŗą»ąŗ«ą»ˆąŗ‡ąŗŠąŗ²ąŗ”'),
(62968, 'https://ror.org/03khf7306', 'en', 1, 'https://ror.org/03khf7306 University Orthopedics Center'),
(62969, 'https://ror.org/03kj3qm29', 'it', 1, 'https://ror.org/03kj3qm29 Associazione Italiana Vulvodinia Onlus'),
(62970, 'https://ror.org/03kk4nz80', 'no_lang_code', 1, 'https://ror.org/03kk4nz80 Cyclotron (Netherlands)'),
(62971, 'https://ror.org/03kkjyc12', 'no_lang_code', 1, 'https://ror.org/03kkjyc12 Medigene (Germany)'),
(62972, 'https://ror.org/03kphbm02', 'no_lang_code', 1, 'https://ror.org/03kphbm02 Lofarma (Italy)'),
(62973, 'https://ror.org/03kps0c77', 'no_lang_code', 1, 'https://ror.org/03kps0c77 Cool Sorption (Denmark)'),
(62974, 'https://ror.org/03kqk1x83', 'de', 1, 'https://ror.org/03kqk1x83 Deutsche Gesellschaft für Transaktionsanalyse'),
(62975, 'https://ror.org/03kqtp318', 'en', 1, 'https://ror.org/03kqtp318 BioBricks Foundation'),
(62976, 'https://ror.org/03krr1g45', 'nl', 1, 'https://ror.org/03krr1g45 Aveleijn'),
(62977, 'https://ror.org/03ks8z635', 'en', 1, 'https://ror.org/03ks8z635 International Hyperbarics Association'),
(62978, 'https://ror.org/03ktrr903', 'no_lang_code', 1, 'https://ror.org/03ktrr903 Hu-Friedy (United States)'),
(62979, 'https://ror.org/03kyy9y42', 'pt', 1, 'https://ror.org/03kyy9y42 Hospital Beatriz Ƃngelo'),
(62980, 'https://ror.org/03kz34w09', 'en', 1, 'https://ror.org/03kz34w09 Sport Medicine Council of Alberta'),
(62981, 'https://ror.org/03kz92t11', 'no_lang_code', 1, 'https://ror.org/03kz92t11 Hermes Arzneimittel (Germany)'),
(62982, 'https://ror.org/03kzw7k63', 'no_lang_code', 1, 'https://ror.org/03kzw7k63 Insta (Germany)'),
(62983, 'https://ror.org/03m0npv78', 'en', 1, 'https://ror.org/03m0npv78 Digestive Health Associates of Texas'),
(62984, 'https://ror.org/03m0x9887', 'en', 1, 'https://ror.org/03m0x9887 Schizophrenia Society of Ontario'),
(62985, 'https://ror.org/03m1gem82', 'no_lang_code', 1, 'https://ror.org/03m1gem82 Zambon (Netherlands)'),
(62986, 'https://ror.org/03m2f4c21', 'en', 1, 'https://ror.org/03m2f4c21 Frontier Science Foundation-Hellas'),
(62987, 'https://ror.org/03m412394', 'en', 1, 'https://ror.org/03m412394 START Clinic'),
(62988, 'https://ror.org/03m5a3737', 'en', 1, 'https://ror.org/03m5a3737 Shandong Chest Hospital'),
(62989, 'https://ror.org/03m723j50', 'en', 1, 'https://ror.org/03m723j50 Anson County Health Department'),
(62990, 'https://ror.org/03m7jfm83', 'nl', 1, 'https://ror.org/03m7jfm83 Sophia Revalidatie'),
(62991, 'https://ror.org/03m84n725', 'en', 1, 'https://ror.org/03m84n725 California Governor’s Office of Emergency Services'),
(62992, 'https://ror.org/03m85x183', 'no_lang_code', 1, 'https://ror.org/03m85x183 KLS Martin (Germany)'),
(62993, 'https://ror.org/03ma3hr46', 'en', 1, 'https://ror.org/03ma3hr46 St. Mary-Corwin Medical Center'),
(62994, 'https://ror.org/03mbb6708', 'fr', 1, 'https://ror.org/03mbb6708 GƩrontopƓle Pierre Pfitzenmeyer'),
(62995, 'https://ror.org/03meq3766', 'nl', 1, 'https://ror.org/03meq3766 Stichting OFOM'),
(62996, 'https://ror.org/03mfyst18', 'no_lang_code', 1, 'https://ror.org/03mfyst18 Perseus PCI (United States)'),
(62997, 'https://ror.org/03mg65n75', 'nl', 1, 'https://ror.org/03mg65n75 GGzE'),
(62998, 'https://ror.org/03mg8fc79', 'no_lang_code', 1, 'https://ror.org/03mg8fc79 Fred Rogers (United States)'),
(62999, 'https://ror.org/03mmtg035', 'en', 1, 'https://ror.org/03mmtg035 Digestive & Liver Disease Specialists'),
(63000, 'https://ror.org/03mpzae61', 'en', 1, 'https://ror.org/03mpzae61 Kazakhstan Academy of Preventive Medicine АкаГемии профилактической меГицины'),
(63001, 'https://ror.org/03mwphj92', 'en', 1, 'https://ror.org/03mwphj92 Rochester Center for Behavioral Medicine'),
(63002, 'https://ror.org/03n17ds51', 'en', 1, 'https://ror.org/03n17ds51 Agriculture and Food'),
(63003, 'https://ror.org/03n1zbr44', 'en', 1, 'https://ror.org/03n1zbr44 Infectious Clinical Hospital No. 1 ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń ŠøŠ½Ń„ŠµŠŗŃ†ŠøŠ¾Š½Š½Š°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 1'),
(63004, 'https://ror.org/03n243a44', 'nl', 1, 'https://ror.org/03n243a44 Atria'),
(63005, 'https://ror.org/03n2efg67', 'en', 1, 'https://ror.org/03n2efg67 Hoffberger Family Philanthropies'),
(63006, 'https://ror.org/03n2zvn26', 'en', 1, 'https://ror.org/03n2zvn26 United Healthcare Children''s Foundation'),
(63007, 'https://ror.org/03n30a589', 'no_lang_code', 1, 'https://ror.org/03n30a589 U.S. Stem Cell (United States)'),
(63008, 'https://ror.org/03n3g7r56', 'no_lang_code', 1, 'https://ror.org/03n3g7r56 Goodlife (Netherlands)'),
(63009, 'https://ror.org/03n3nk688', 'en', 1, 'https://ror.org/03n3nk688 American Association of Kidney Patients'),
(63010, 'https://ror.org/03n4cgv79', 'en', 1, 'https://ror.org/03n4cgv79 Memphis Center For Reproductive Health'),
(63011, 'https://ror.org/03n4vgh07', 'en', 1, 'https://ror.org/03n4vgh07 Jordan-Young Institute'),
(63012, 'https://ror.org/03n556v93', 'es', 1, 'https://ror.org/03n556v93 Instituto para la Atención y Prevención de las Adicciones'),
(63013, 'https://ror.org/03n61m405', 'no_lang_code', 1, 'https://ror.org/03n61m405 Onkovis (Germany)'),
(63014, 'https://ror.org/03n6b6g81', 'ca', 1, 'https://ror.org/03n6b6g81 Hospital de Sant Joan DespĆ­ MoisĆØs Broggi'),
(63015, 'https://ror.org/03n7jkz36', 'no_lang_code', 1, 'https://ror.org/03n7jkz36 Immunodiagnostic Systems (Denmark)'),
(63016, 'https://ror.org/03n9p4x69', 'en', 1, 'https://ror.org/03n9p4x69 Institute for Orthopaedic Surgery & Sports Medicine'),
(63017, 'https://ror.org/03naar428', 'nl', 1, 'https://ror.org/03naar428 Postmaster Psychologie Opleidingen'),
(63018, 'https://ror.org/03naec835', 'en', 1, 'https://ror.org/03naec835 The Solomon Foundation'),
(63019, 'https://ror.org/03nas4306', 'en', 1, 'https://ror.org/03nas4306 Fisheries Administration įžšįžŠįŸ’įž‹įž”įž¶įž› įž‡įž›įž•įž›'),
(63020, 'https://ror.org/03nawys62', 'en', 1, 'https://ror.org/03nawys62 Thorne Nature Experience'),
(63021, 'https://ror.org/03nayh382', 'no_lang_code', 1, 'https://ror.org/03nayh382 VITA (Germany)'),
(63022, 'https://ror.org/03ncmjy81', 'no_lang_code', 1, 'https://ror.org/03ncmjy81 Lusofarmaco (Italy)'),
(63023, 'https://ror.org/03ndabk35', 'de', 1, 'https://ror.org/03ndabk35 Krankenhaus Bethanien'),
(63024, 'https://ror.org/03nemnn25', 'no_lang_code', 1, 'https://ror.org/03nemnn25 Karr Dental (Switzerland)'),
(63025, 'https://ror.org/03nkqys97', 'en', 1, 'https://ror.org/03nkqys97 New York City Police Department'),
(63026, 'https://ror.org/03nqfwv49', 'no_lang_code', 1, 'https://ror.org/03nqfwv49 IDEA (Germany)'),
(63027, 'https://ror.org/03nsv9b85', 'de', 1, 'https://ror.org/03nsv9b85 Reproduktionsmedizin München'),
(63028, 'https://ror.org/03nszce13', 'it', 1, 'https://ror.org/03nszce13 Ospedale Pediatrico Giovanni XXIII'),
(63029, 'https://ror.org/03nx7mw09', 'no_lang_code', 1, 'https://ror.org/03nx7mw09 B. Braun (Netherlands)'),
(63030, 'https://ror.org/03nye1643', 'es', 1, 'https://ror.org/03nye1643 Complejo Hospitalario Dr. Arnulfo Arias Madrid'),
(63031, 'https://ror.org/03nyzw632', 'no_lang_code', 1, 'https://ror.org/03nyzw632 Novo Nordisk (Germany)'),
(63032, 'https://ror.org/03nzaax06', 'en', 1, 'https://ror.org/03nzaax06 Ministry of Foreign Affairs äø­čÆę°‘åœ‹å¤–äŗ¤éƒØ'),
(63033, 'https://ror.org/03p00z818', 'en', 1, 'https://ror.org/03p00z818 Dutch Lung Cancer Research Group'),
(63034, 'https://ror.org/03p03fd83', 'en', 1, 'https://ror.org/03p03fd83 Montgomery Botanical Center'),
(63035, 'https://ror.org/03p0wky60', 'en', 1, 'https://ror.org/03p0wky60 American Association for Bronchology and Interventional Pulmonology'),
(63036, 'https://ror.org/03p14dc73', 'en', 1, 'https://ror.org/03p14dc73 Queensland Seafood Industry Association'),
(63037, 'https://ror.org/03p2hyg63', 'en', 1, 'https://ror.org/03p2hyg63 National Association of Area Agencies on Aging'),
(63038, 'https://ror.org/03p2pvt93', 'en', 1, 'https://ror.org/03p2pvt93 National Council on Crime and Delinquency'),
(63039, 'https://ror.org/03p2tn002', 'en', 1, 'https://ror.org/03p2tn002 Florida Pain Institute'),
(63040, 'https://ror.org/03p352e02', 'en', 1, 'https://ror.org/03p352e02 Ophtalmological Center After S.V.Malayan'),
(63041, 'https://ror.org/03p371b74', 'en', 1, 'https://ror.org/03p371b74 Herford Hospital Klinikum Herford'),
(63042, 'https://ror.org/03p4nrj93', 'es', 1, 'https://ror.org/03p4nrj93 Fundación para la Fibromialgia y el Síndrome de Fatiga Crónica'),
(63043, 'https://ror.org/03pab6q64', 'en', 1, 'https://ror.org/03pab6q64 Children''s Diagnostic & Treatment Center'),
(63044, 'https://ror.org/03pe5z861', 'en', 1, 'https://ror.org/03pe5z861 Kirklin Clinic'),
(63045, 'https://ror.org/03pejh002', 'no_lang_code', 1, 'https://ror.org/03pejh002 AMW (Germany)'),
(63046, 'https://ror.org/03pek4v37', 'pt', 1, 'https://ror.org/03pek4v37 Instituto de Olhos de Goiânia'),
(63047, 'https://ror.org/03pentr35', 'en', 1, 'https://ror.org/03pentr35 Wuhan Applied Science and Technology School ę­¦ę±‰åŗ”ē”Øē§‘ęŠ€å­¦é™¢'),
(63048, 'https://ror.org/03ph8dz38', 'nl', 1, 'https://ror.org/03ph8dz38 GGZ Westelijk Noord-Brabant'),
(63049, 'https://ror.org/03phvnn05', 'no_lang_code', 1, 'https://ror.org/03phvnn05 Andair AG (Switzerland)'),
(63050, 'https://ror.org/03pj64m52', 'en', 1, 'https://ror.org/03pj64m52 Bone and Joint Clinic of Baton Rouge'),
(63051, 'https://ror.org/03pjrzs58', 'no_lang_code', 1, 'https://ror.org/03pjrzs58 Pioneer Valley Books (United States)'),
(63052, 'https://ror.org/03pkj2z67', 'en', 1, 'https://ror.org/03pkj2z67 Lanzhou Petrochemical Polytechnic å…°å·žēŸ³åŒ–čŒäøšęŠ€ęœÆå­¦é™¢'),
(63053, 'https://ror.org/03pn50n78', 'no_lang_code', 1, 'https://ror.org/03pn50n78 DC2 (United States)'),
(63054, 'https://ror.org/03pnhfc19', 'no_lang_code', 1, 'https://ror.org/03pnhfc19 Dermatrendz'),
(63055, 'https://ror.org/03pp2ae67', 'nl', 1, 'https://ror.org/03pp2ae67 Surinaamse Postspaarbank'),
(63056, 'https://ror.org/03psazt82', 'no_lang_code', 1, 'https://ror.org/03psazt82 Ingredia (France)'),
(63057, 'https://ror.org/03psr2094', 'de', 1, 'https://ror.org/03psr2094 GKV Spitzenverband'),
(63058, 'https://ror.org/03pxttn44', 'pl', 1, 'https://ror.org/03pxttn44 Szpital Kliniczny Nr 1 we Wrocławiu'),
(63059, 'https://ror.org/03pxwfh12', 'en', 1, 'https://ror.org/03pxwfh12 Ottumwa Regional Health Center'),
(63060, 'https://ror.org/03q1wc761', 'fr', 1, 'https://ror.org/03q1wc761 UniversitƩ Jean Lorougnon GuƩdƩ'),
(63061, 'https://ror.org/03q33dp04', 'en', 1, 'https://ror.org/03q33dp04 Sichuan Provincial Hospital of Traditional Chinese Medicine å››å·ēœäø­åŒ»é™¢'),
(63062, 'https://ror.org/03q39mv91', 'en', 1, 'https://ror.org/03q39mv91 Massage Therapist Association of Alberta'),
(63063, 'https://ror.org/03q4enq27', 'en', 1, 'https://ror.org/03q4enq27 Thomas & Jeanne Elmezzi Foundation'),
(63064, 'https://ror.org/03q5c2s89', 'pl', 1, 'https://ror.org/03q5c2s89 Centralny Szpital Kliniczny'),
(63065, 'https://ror.org/03q5gxs50', 'en', 1, 'https://ror.org/03q5gxs50 Peter G. Dodge Foundation'),
(63066, 'https://ror.org/03q658t19', 'it', 1, 'https://ror.org/03q658t19 Azienda Ospedaliero Universitario Mater Domini'),
(63067, 'https://ror.org/03q7ay915', 'en', 1, 'https://ror.org/03q7ay915 TIAS School for Business and Society'),
(63068, 'https://ror.org/03q9ez861', 'en', 1, 'https://ror.org/03q9ez861 Minorities in Mathematics, Science & Engineering'),
(63069, 'https://ror.org/03q9mj749', 'en', 1, 'https://ror.org/03q9mj749 American Public Works Association'),
(63070, 'https://ror.org/03qa48d48', 'en', 1, 'https://ror.org/03qa48d48 RSUD Prof. Dr. Saiful Anwar Malang'),
(63071, 'https://ror.org/03qacnx75', 'en', 1, 'https://ror.org/03qacnx75 Kursk Regional Clinical Oncology Center ŠŗŃƒŃ€ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(63072, 'https://ror.org/03qafw071', 'de', 1, 'https://ror.org/03qafw071 Vitos'),
(63073, 'https://ror.org/03qan5r71', 'no_lang_code', 1, 'https://ror.org/03qan5r71 Macrogen (South Korea) 마크딜젠'),
(63074, 'https://ror.org/03qb4sg13', 'no_lang_code', 1, 'https://ror.org/03qb4sg13 Septodont (France)');
INSERT INTO `rors` VALUES
(63075, 'https://ror.org/03qb61g53', 'no_lang_code', 1, 'https://ror.org/03qb61g53 Adnoviv (United States)'),
(63076, 'https://ror.org/03qcwne61', 'en', 1, 'https://ror.org/03qcwne61 Nashville Public Library'),
(63077, 'https://ror.org/03qdk1w56', 'en', 1, 'https://ror.org/03qdk1w56 Dutch Health Care Inspectorate Inspectie voor de Gezondheidszorg'),
(63078, 'https://ror.org/03qem8p70', 'pl', 1, 'https://ror.org/03qem8p70 Zachodniopomorskie Centrum Onkologii'),
(63079, 'https://ror.org/03qhz4n98', 'en', 1, 'https://ror.org/03qhz4n98 Center for Excellence in Education'),
(63080, 'https://ror.org/03qhzdc37', 'no_lang_code', 1, 'https://ror.org/03qhzdc37 Bühlmann (Switzerland)'),
(63081, 'https://ror.org/03qjsg132', 'no_lang_code', 1, 'https://ror.org/03qjsg132 Gadeta (Netherlands)'),
(63082, 'https://ror.org/03qm3c405', 'no_lang_code', 1, 'https://ror.org/03qm3c405 TerraFly (United States)'),
(63083, 'https://ror.org/03qtzhe36', 'en', 1, 'https://ror.org/03qtzhe36 Nutrasource'),
(63084, 'https://ror.org/03qv0rv36', 'no_lang_code', 1, 'https://ror.org/03qv0rv36 Eisai (Taiwan)'),
(63085, 'https://ror.org/03qv69876', 'de', 1, 'https://ror.org/03qv69876 Lungenklinik Kƶln-Merheim'),
(63086, 'https://ror.org/03qwdkr25', 'en', 1, 'https://ror.org/03qwdkr25 First Affiliated Hospital of Shihezi University Medical College ēŸ³ę²³å­å¤§å­¦åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(63087, 'https://ror.org/03qx0ne83', 'en', 1, 'https://ror.org/03qx0ne83 Dean Foundation'),
(63088, 'https://ror.org/03qx3mk66', 'en', 1, 'https://ror.org/03qx3mk66 New York City Foundation for Computer Science Education'),
(63089, 'https://ror.org/03qy1wr49', 'no_lang_code', 1, 'https://ror.org/03qy1wr49 Tasmanian Abalone Council (Australia)'),
(63090, 'https://ror.org/03qz9r039', 'en', 1, 'https://ror.org/03qz9r039 Rwanda Military Hospital'),
(63091, 'https://ror.org/03r29tc70', 'de', 1, 'https://ror.org/03r29tc70 Lungenklinik Hemer'),
(63092, 'https://ror.org/03r2ppv49', 'en', 1, 'https://ror.org/03r2ppv49 The state budgetary institution of public health of the Perm Krai "City Children''s Clinical Polyclinic No. 5"'),
(63093, 'https://ror.org/03r4ey572', 'no_lang_code', 1, 'https://ror.org/03r4ey572 Schweiger Dermatology Group (United States)'),
(63094, 'https://ror.org/03r4phk79', 'en', 1, 'https://ror.org/03r4phk79 Land Information Access Association'),
(63095, 'https://ror.org/03r50rc39', 'en', 1, 'https://ror.org/03r50rc39 Orthopaedic Institute for Children'),
(63096, 'https://ror.org/03r5kty13', 'en', 1, 'https://ror.org/03r5kty13 Lehigh Center for Clinical Research'),
(63097, 'https://ror.org/03r6h3t89', 'en', 1, 'https://ror.org/03r6h3t89 St. Petersburg State Medical Academy "City Polyclinic ā„–44" Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ "Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń поликлиника ā„–44"'),
(63098, 'https://ror.org/03r76e753', 'de', 1, 'https://ror.org/03r76e753 RheiĀ­nisch-BerĀ­giĀ­sche VerĀ­lagsĀ­geĀ­sellĀ­schaft'),
(63099, 'https://ror.org/03r782805', 'en', 1, 'https://ror.org/03r782805 Danish Pain Research Center'),
(63100, 'https://ror.org/03r92yv86', 'en', 1, 'https://ror.org/03r92yv86 European Society for Surgical Research'),
(63101, 'https://ror.org/03rc1y879', 'en', 1, 'https://ror.org/03rc1y879 Physicians'' Clinic of Iowa'),
(63102, 'https://ror.org/03rcjma25', 'en', 1, 'https://ror.org/03rcjma25 Spanish Peaks Regional Health Center'),
(63103, 'https://ror.org/03rehvw54', 'pt', 1, 'https://ror.org/03rehvw54 Hospital das ClĆ­nicas da Universidade Federal de Pernambuco'),
(63104, 'https://ror.org/03rf7pf16', 'de', 1, 'https://ror.org/03rf7pf16 Karl Schlecht Stiftung'),
(63105, 'https://ror.org/03rhbz403', 'en', 1, 'https://ror.org/03rhbz403 Kuala Lumpur Sports Medicine Centre'),
(63106, 'https://ror.org/03rjqyx74', 'en', 1, 'https://ror.org/03rjqyx74 Montana Science Teachers Association'),
(63107, 'https://ror.org/03rjzr314', 'en', 1, 'https://ror.org/03rjzr314 Guangdong Provincial Academy of Environmental Science'),
(63108, 'https://ror.org/03rk6g530', 'en', 1, 'https://ror.org/03rk6g530 Hospital Universitario HM Puerta del Sur University Hospital HM Puerta del Sur'),
(63109, 'https://ror.org/03rmatq71', 'nl', 1, 'https://ror.org/03rmatq71 CED Groep'),
(63110, 'https://ror.org/03rmb1244', 'no_lang_code', 1, 'https://ror.org/03rmb1244 Radiometer (Germany)'),
(63111, 'https://ror.org/03rmqr166', 'de', 1, 'https://ror.org/03rmqr166 KfH Kuratorium für Dialyse und Nierentransplantation'),
(63112, 'https://ror.org/03rmvk095', 'no_lang_code', 1, 'https://ror.org/03rmvk095 Genexine (South Korea)'),
(63113, 'https://ror.org/03rp11m69', 'en', 1, 'https://ror.org/03rp11m69 Municipal Autonomous Healthcare Institution'),
(63114, 'https://ror.org/03rpvpe67', 'de', 1, 'https://ror.org/03rpvpe67 Geriatrische Gesundheitszentren'),
(63115, 'https://ror.org/03rr0h512', 'de', 1, 'https://ror.org/03rr0h512 Feuerwehr Brühl'),
(63116, 'https://ror.org/03rs9zz96', 'en', 1, 'https://ror.org/03rs9zz96 Government Medical Officers Association'),
(63117, 'https://ror.org/03rshf720', 'de', 1, 'https://ror.org/03rshf720 Innovationsgesellschaft Technische UniversitƤt Braunschweig'),
(63118, 'https://ror.org/03rsvnv92', 'en', 1, 'https://ror.org/03rsvnv92 The Sashbear Foundation'),
(63119, 'https://ror.org/03rswdy10', 'de', 1, 'https://ror.org/03rswdy10 Poliklinik für Zahnärztliche Prothetik'),
(63120, 'https://ror.org/03rwphv90', 'en', 1, 'https://ror.org/03rwphv90 International Society for Quality of Life Research'),
(63121, 'https://ror.org/03rzd8715', 'en', 1, 'https://ror.org/03rzd8715 Michigan Healthcare Professionals'),
(63122, 'https://ror.org/03s1pms78', 'en', 1, 'https://ror.org/03s1pms78 Presbyterian Rust Medical Center'),
(63123, 'https://ror.org/03s453j88', 'no_lang_code', 1, 'https://ror.org/03s453j88 Cristal Therapeutics (Netherlands)'),
(63124, 'https://ror.org/03s477z20', 'en', 1, 'https://ror.org/03s477z20 Penny George Institute for Health and Healing'),
(63125, 'https://ror.org/03s49qk39', 'en', 1, 'https://ror.org/03s49qk39 NephroCare'),
(63126, 'https://ror.org/03s54zb62', 'en', 1, 'https://ror.org/03s54zb62 Jefferson Hospital'),
(63127, 'https://ror.org/03s58x415', 'no_lang_code', 1, 'https://ror.org/03s58x415 Deichmann (Germany)'),
(63128, 'https://ror.org/03s92re04', 'en', 1, 'https://ror.org/03s92re04 Nursing Science Foundation Switzerland Stiftung Pflegewissenschaften Schweiz'),
(63129, 'https://ror.org/03sbhxr82', 'en', 1, 'https://ror.org/03sbhxr82 Mid-Pacific Institute'),
(63130, 'https://ror.org/03sc3x439', 'en', 1, 'https://ror.org/03sc3x439 Flagstaff Medical Center'),
(63131, 'https://ror.org/03segdh23', 'en', 1, 'https://ror.org/03segdh23 GynePro Medical'),
(63132, 'https://ror.org/03sevk723', 'en', 1, 'https://ror.org/03sevk723 Divya Shanthi Christian Association and Trust'),
(63133, 'https://ror.org/03sfwdd85', 'fr', 1, 'https://ror.org/03sfwdd85 AlterSantƩ'),
(63134, 'https://ror.org/03sg89w32', 'en', 1, 'https://ror.org/03sg89w32 Western Australian Fishing Industry Council'),
(63135, 'https://ror.org/03sgp5m15', 'it', 1, 'https://ror.org/03sgp5m15 Italian Society of Rheumatology SocietĆ  Italiana di Reumatologia'),
(63136, 'https://ror.org/03sk0gd87', 'no_lang_code', 1, 'https://ror.org/03sk0gd87 Orthofix (Italy)'),
(63137, 'https://ror.org/03sk8zw22', 'nl', 1, 'https://ror.org/03sk8zw22 Nederlandse Internisten Vereniging'),
(63138, 'https://ror.org/03sp3a378', 'no_lang_code', 1, 'https://ror.org/03sp3a378 Expedeon (United States)'),
(63139, 'https://ror.org/03sqnmh94', 'en', 1, 'https://ror.org/03sqnmh94 Vienna School of Clinical Research'),
(63140, 'https://ror.org/03srr7476', 'en', 1, 'https://ror.org/03srr7476 Iridescent'),
(63141, 'https://ror.org/03ssybn81', 'en', 1, 'https://ror.org/03ssybn81 Synergy Health'),
(63142, 'https://ror.org/03sw8j870', 'en', 1, 'https://ror.org/03sw8j870 Center for Environment and Community Assets Development Trung tĆ¢m MĆ“i trĘ°į»ng vĆ  PhĆ”t triển Nguồn lį»±c Cį»™ng đồng'),
(63143, 'https://ror.org/03swmst19', 'en', 1, 'https://ror.org/03swmst19 State Autonomous Healthcare Institution of the Novosibirsk Region "City Clinical Polyclinic No. 1"'),
(63144, 'https://ror.org/03swt5851', 'en', 1, 'https://ror.org/03swt5851 St. James Mercy Hospital'),
(63145, 'https://ror.org/03sywc351', 'en', 1, 'https://ror.org/03sywc351 Dayton Physicians Network'),
(63146, 'https://ror.org/03szj8a51', 'en', 1, 'https://ror.org/03szj8a51 Hussman Institute for Autism'),
(63147, 'https://ror.org/03t0g0q91', 'es', 1, 'https://ror.org/03t0g0q91 Grupo Gallego de CÔncer de Pulmón'),
(63148, 'https://ror.org/03t30gb84', 'en', 1, 'https://ror.org/03t30gb84 Kaiser Permanente Woodlawn Medical Center'),
(63149, 'https://ror.org/03t3mc268', 'en', 1, 'https://ror.org/03t3mc268 Pardee Hospital'),
(63150, 'https://ror.org/03t3y2m33', 'en', 1, 'https://ror.org/03t3y2m33 International Behavioral Neuroscience Society'),
(63151, 'https://ror.org/03t4faz67', 'en', 1, 'https://ror.org/03t4faz67 Russell Group'),
(63152, 'https://ror.org/03t4ktv29', 'fr', 1, 'https://ror.org/03t4ktv29 Association Clinique et ThƩrapeutique Infantile du Val de Marne'),
(63153, 'https://ror.org/03t64vv46', 'en', 1, 'https://ror.org/03t64vv46 Phoenix Society for Burn Survivors'),
(63154, 'https://ror.org/03t7h7x05', 'es', 1, 'https://ror.org/03t7h7x05 Asociación de Universidades Grupo Montevideo'),
(63155, 'https://ror.org/03t7mrd69', 'en', 1, 'https://ror.org/03t7mrd69 Quality Assurance Netherlands Universities'),
(63156, 'https://ror.org/03t8qvt86', 'en', 1, 'https://ror.org/03t8qvt86 Team Westland'),
(63157, 'https://ror.org/03t9hh016', 'en', 1, 'https://ror.org/03t9hh016 Mountain Medicine Society of Nepal'),
(63158, 'https://ror.org/03ta38n35', 'en', 1, 'https://ror.org/03ta38n35 Inland Fisheries Service'),
(63159, 'https://ror.org/03taj9579', 'en', 1, 'https://ror.org/03taj9579 East Bay Consortium of Educational Institutions'),
(63160, 'https://ror.org/03tbabt10', 'en', 1, 'https://ror.org/03tbabt10 Virginia Cancer Specialists'),
(63161, 'https://ror.org/03tcxks04', 'en', 1, 'https://ror.org/03tcxks04 St. James Healthcare'),
(63162, 'https://ror.org/03tdgzq48', 'nl', 1, 'https://ror.org/03tdgzq48 Vrienden van het Sophia'),
(63163, 'https://ror.org/03tdp3e45', 'en', 1, 'https://ror.org/03tdp3e45 Wellish Vision Institute'),
(63164, 'https://ror.org/03thqn741', 'nl', 1, 'https://ror.org/03thqn741 Vereniging Nederlandse Cateringorganisaties'),
(63165, 'https://ror.org/03tqdk258', 'en', 1, 'https://ror.org/03tqdk258 Saint Luke''s East Hospital'),
(63166, 'https://ror.org/03tr83233', 'en', 1, 'https://ror.org/03tr83233 Institute for Interdisciplinary Medicine ifi–Institut für interdisziplinƤre Medizin'),
(63167, 'https://ror.org/03tre7r66', 'no_lang_code', 1, 'https://ror.org/03tre7r66 Isotopen Technologien München (Germany)'),
(63168, 'https://ror.org/03trtgn80', 'pt', 1, 'https://ror.org/03trtgn80 Hospital Infantil Albert Sabin'),
(63169, 'https://ror.org/03tte1d07', 'no_lang_code', 1, 'https://ror.org/03tte1d07 Chania General Hospital ā€St. Georgeā€ Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Χανίων "Ο Άγιος Ī“ĪµĻŽĻĪ³Ī¹ĪæĻ‚"'),
(63170, 'https://ror.org/03tv7jf42', 'en', 1, 'https://ror.org/03tv7jf42 Fondazione per la Ricerca Farmacologica Gianni Benzi Gianni Benzi Pharmacological Research Foundation'),
(63171, 'https://ror.org/03twnzp51', 'en', 1, 'https://ror.org/03twnzp51 YMCA of Greater Vancouver'),
(63172, 'https://ror.org/03twz1019', 'de', 1, 'https://ror.org/03twz1019 Wissenschaftliche Gesellschaft Freiburg'),
(63173, 'https://ror.org/03tx1jp34', 'nl', 1, 'https://ror.org/03tx1jp34 De Forensische Zorgspecialisten'),
(63174, 'https://ror.org/03tyb0e26', 'en', 1, 'https://ror.org/03tyb0e26 St. Anthony Hospital'),
(63175, 'https://ror.org/03tygvc25', 'en', 1, 'https://ror.org/03tygvc25 Chinese Association for the Study of Pain'),
(63176, 'https://ror.org/03v5eb747', 'en', 1, 'https://ror.org/03v5eb747 Malaysian Society of Anaesthesiologists'),
(63177, 'https://ror.org/03vb1w478', 'en', 1, 'https://ror.org/03vb1w478 Texas Digestive Disease Consultants'),
(63178, 'https://ror.org/03vbmcv19', 'no_lang_code', 1, 'https://ror.org/03vbmcv19 E&L Medical Systems (Germany)'),
(63179, 'https://ror.org/03vc76c84', 'de', 1, 'https://ror.org/03vc76c84 BG Klinikum Duisburg'),
(63180, 'https://ror.org/03vct0j86', 'en', 1, 'https://ror.org/03vct0j86 Gynecologic Oncology Associates'),
(63181, 'https://ror.org/03vdexs55', 'en', 1, 'https://ror.org/03vdexs55 Global Alliance for Regenerative Medicine'),
(63182, 'https://ror.org/03vf2kf90', 'en', 1, 'https://ror.org/03vf2kf90 Benelux Society of Phlebology Secretariat of the Benelux Society of Phlebology'),
(63183, 'https://ror.org/03vf6ym20', 'en', 1, 'https://ror.org/03vf6ym20 Kawasaki Disease Foundation'),
(63184, 'https://ror.org/03vfc4p83', 'no_lang_code', 1, 'https://ror.org/03vfc4p83 Octapharma (United States)'),
(63185, 'https://ror.org/03vgg3427', 'en', 1, 'https://ror.org/03vgg3427 American Joint Replacement Registry'),
(63186, 'https://ror.org/03vgzp053', 'en', 1, 'https://ror.org/03vgzp053 Regional Children''s Clinical Hospital No. 1 Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ ДверГловской области ŠžŠ±Š»Š°ŃŃ‚Š½Š°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–1'),
(63187, 'https://ror.org/03vhd0091', 'en', 1, 'https://ror.org/03vhd0091 Alma'),
(63188, 'https://ror.org/03vhzfd61', 'no_lang_code', 1, 'https://ror.org/03vhzfd61 SteriPharm (Germany)'),
(63189, 'https://ror.org/03vjak553', 'no_lang_code', 1, 'https://ror.org/03vjak553 Plymouth Grating Laboratory (United States)'),
(63190, 'https://ror.org/03vjvtz41', 'no_lang_code', 1, 'https://ror.org/03vjvtz41 PronoKal Group (Spain)'),
(63191, 'https://ror.org/03vkbjy63', 'nl', 1, 'https://ror.org/03vkbjy63 Conrisq Groep'),
(63192, 'https://ror.org/03vkvcw90', 'en', 1, 'https://ror.org/03vkvcw90 Montana Health Research Institute'),
(63193, 'https://ror.org/03vkvz969', 'en', 1, 'https://ror.org/03vkvz969 National Institute of Lymphology'),
(63194, 'https://ror.org/03vn3r884', 'nl', 1, 'https://ror.org/03vn3r884 Zorg in Ontwikkeling'),
(63195, 'https://ror.org/03vn93v04', 'no_lang_code', 1, 'https://ror.org/03vn93v04 GlucoSentient (United States)'),
(63196, 'https://ror.org/03vnkza15', 'en', 1, 'https://ror.org/03vnkza15 Aga Khan Development Network'),
(63197, 'https://ror.org/03vnp0789', 'en', 1, 'https://ror.org/03vnp0789 Siskiyou County Office of Education'),
(63198, 'https://ror.org/03vq6fv28', 'en', 1, 'https://ror.org/03vq6fv28 Breast Cancer Network Australia'),
(63199, 'https://ror.org/03vrg9x02', 'en', 1, 'https://ror.org/03vrg9x02 Arkansas Heart Hospital'),
(63200, 'https://ror.org/03vrwsp35', 'no_lang_code', 1, 'https://ror.org/03vrwsp35 Ferring Pharmaceuticals (France)'),
(63201, 'https://ror.org/03vsr5p38', 'no_lang_code', 1, 'https://ror.org/03vsr5p38 BioScience Laboratories (United States)'),
(63202, 'https://ror.org/03vvy2n47', 'en', 1, 'https://ror.org/03vvy2n47 Mountain Studies Institute'),
(63203, 'https://ror.org/03vwqmf10', 'en', 1, 'https://ror.org/03vwqmf10 Global Health Association of Miami'),
(63204, 'https://ror.org/03vx7r377', 'en', 1, 'https://ror.org/03vx7r377 Retina Associates of Florida'),
(63205, 'https://ror.org/03vxcm824', 'es', 1, 'https://ror.org/03vxcm824 Hospital Pedro de Elizalde'),
(63206, 'https://ror.org/03vxfws77', 'en', 1, 'https://ror.org/03vxfws77 Beals institute'),
(63207, 'https://ror.org/03vyf7w04', 'en', 1, 'https://ror.org/03vyf7w04 Kaiser Permanente Baldwin Park Medical Center'),
(63208, 'https://ror.org/03w1b6j67', 'no_lang_code', 1, 'https://ror.org/03w1b6j67 Bitop (Germany)'),
(63209, 'https://ror.org/03w26j609', 'no_lang_code', 1, 'https://ror.org/03w26j609 Cardiac Motion (United States)'),
(63210, 'https://ror.org/03w2j7e67', 'en', 1, 'https://ror.org/03w2j7e67 Xinhua Translational Institute for Cancer Pain äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žę–°åŽåŒ»é™¢'),
(63211, 'https://ror.org/03w45gf56', 'en', 1, 'https://ror.org/03w45gf56 CHI Health Mercy Council Bluffs'),
(63212, 'https://ror.org/03w498803', 'en', 1, 'https://ror.org/03w498803 IVO Addiction Research Institute'),
(63213, 'https://ror.org/03w55an86', 'no_lang_code', 1, 'https://ror.org/03w55an86 NutritionQuest (United States)'),
(63214, 'https://ror.org/03w65s121', 'en', 1, 'https://ror.org/03w65s121 Noyes Memorial Hospital'),
(63215, 'https://ror.org/03w71jp71', 'en', 1, 'https://ror.org/03w71jp71 Toledo Clinic Cancer Center'),
(63216, 'https://ror.org/03w7cqb73', 'en', 1, 'https://ror.org/03w7cqb73 Jack Jablonski BEL13VE in Miracles Foundation'),
(63217, 'https://ror.org/03w9gyy65', 'en', 1, 'https://ror.org/03w9gyy65 GI Cancer Institute'),
(63218, 'https://ror.org/03waq1x26', 'en', 1, 'https://ror.org/03waq1x26 Lakewood Health System'),
(63219, 'https://ror.org/03waxp229', 'en', 1, 'https://ror.org/03waxp229 Acıbadem University Atakent Hospital'),
(63220, 'https://ror.org/03wcj2062', 'no_lang_code', 1, 'https://ror.org/03wcj2062 Ardelyx (United States)'),
(63221, 'https://ror.org/03wdref81', 'no_lang_code', 1, 'https://ror.org/03wdref81 Remedial Centre Hospital'),
(63222, 'https://ror.org/03we5jj07', 'de', 1, 'https://ror.org/03we5jj07 OH DO KWAN Stiftung Ludmilla Pankofer und Carl Wiedmeier'),
(63223, 'https://ror.org/03weyyh46', 'de', 1, 'https://ror.org/03weyyh46 Asklepios Klinikum Harburg'),
(63224, 'https://ror.org/03wfcm341', 'no_lang_code', 1, 'https://ror.org/03wfcm341 Nobilis Therapeutics (United States)'),
(63225, 'https://ror.org/03wh2ff79', 'no_lang_code', 1, 'https://ror.org/03wh2ff79 International Isotopes (United States)'),
(63226, 'https://ror.org/03wjb0y70', 'en', 1, 'https://ror.org/03wjb0y70 Israeli Association for Cardiovascular Trials'),
(63227, 'https://ror.org/03wkbzm88', 'en', 1, 'https://ror.org/03wkbzm88 Turkish Thoracic Society Türk Toraks Derneği'),
(63228, 'https://ror.org/03wkdtr38', 'no_lang_code', 1, 'https://ror.org/03wkdtr38 Profound Medical (Canada)'),
(63229, 'https://ror.org/03wkx9d81', 'en', 1, 'https://ror.org/03wkx9d81 Israel Medical Association'),
(63230, 'https://ror.org/03wnr4x73', 'en', 1, 'https://ror.org/03wnr4x73 Samsung Life Public Welfare Foundation 삼성 ģƒėŖ… 복지 ģž¬ė‹Ø'),
(63231, 'https://ror.org/03wnxd135', 'en', 1, 'https://ror.org/03wnxd135 Second Affiliated Hospital of Fujian Medical University ē¦å»ŗåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(63232, 'https://ror.org/03wq3ma67', 'en', 1, 'https://ror.org/03wq3ma67 Magdi Yacoub Heart Foundation Ł…Ų¤Ų³Ų³Ų© مجدى ŁŠŲ¹Ł‚ŁˆŲØ للقلب'),
(63233, 'https://ror.org/03wqpgn56', 'en', 1, 'https://ror.org/03wqpgn56 Kigezi Healthcare Foundation'),
(63234, 'https://ror.org/03wr2ty35', 'fr', 1, 'https://ror.org/03wr2ty35 Groupe Hospitalier de l''Institut Catholique de Lille'),
(63235, 'https://ror.org/03wtz8b43', 'en', 1, 'https://ror.org/03wtz8b43 Kimberley Aboriginal Medical Services'),
(63236, 'https://ror.org/03wwk8c55', 'en', 1, 'https://ror.org/03wwk8c55 Nepal Fertility Care Center'),
(63237, 'https://ror.org/03x3mrm69', 'es', 1, 'https://ror.org/03x3mrm69 Insitituto Mexicano de Investigación de Familia y Población, Yo quiero Yo puedo'),
(63238, 'https://ror.org/03x5tah73', 'no_lang_code', 1, 'https://ror.org/03x5tah73 Vaximm (Germany)'),
(63239, 'https://ror.org/03x67yw88', 'nl', 1, 'https://ror.org/03x67yw88 Orthopedie Groot Eindhoven'),
(63240, 'https://ror.org/03x78vf16', 'es', 1, 'https://ror.org/03x78vf16 Instituto MƩdico Platense'),
(63241, 'https://ror.org/03x91xm81', 'no_lang_code', 1, 'https://ror.org/03x91xm81 Vascular BioSciences (United States)'),
(63242, 'https://ror.org/03xaqy997', 'en', 1, 'https://ror.org/03xaqy997 Society for Minimally Invasive Spine Surgery'),
(63243, 'https://ror.org/03xd8mt09', 'en', 1, 'https://ror.org/03xd8mt09 ANOA'),
(63244, 'https://ror.org/03xgnab40', 'de', 1, 'https://ror.org/03xgnab40 Neurologisches Fachkrankenhaus für Bewegungsstörungen/Parkinson'),
(63245, 'https://ror.org/03xhdc358', 'fr', 1, 'https://ror.org/03xhdc358 Direction GƩnƩrale de la Pharmacie, du MƩdicament et des Laboratoires'),
(63246, 'https://ror.org/03xhmcf52', 'en', 1, 'https://ror.org/03xhmcf52 Digestive Health Center of Louisiana'),
(63247, 'https://ror.org/03xhpsm17', 'nl', 1, 'https://ror.org/03xhpsm17 Andros Mannenkliniek'),
(63248, 'https://ror.org/03xmq3f10', 'en', 1, 'https://ror.org/03xmq3f10 Institute for Regenerative and Cellular Medicine'),
(63249, 'https://ror.org/03xphxk37', 'es', 1, 'https://ror.org/03xphxk37 Centro de ImplantologĆ­a CirugĆ­a Oral y Maxilofacial'),
(63250, 'https://ror.org/03xpnp312', 'no_lang_code', 1, 'https://ror.org/03xpnp312 Hua Medicine (China)'),
(63251, 'https://ror.org/03xqe1d82', 'id', 1, 'https://ror.org/03xqe1d82 Pembuluh Darah Harapan Kita'),
(63252, 'https://ror.org/03xrhty12', 'en', 1, 'https://ror.org/03xrhty12 JH Rahn Foundation'),
(63253, 'https://ror.org/03xrx2656', 'en', 1, 'https://ror.org/03xrx2656 Cure Foundation'),
(63254, 'https://ror.org/03xsf0n03', 'no_lang_code', 1, 'https://ror.org/03xsf0n03 Sevika Medical (Switzerland)'),
(63255, 'https://ror.org/03xtgc164', 'en', 1, 'https://ror.org/03xtgc164 DuPage Medical Group'),
(63256, 'https://ror.org/03xvt9b17', 'en', 1, 'https://ror.org/03xvt9b17 Hayward Area Memorial Hospital'),
(63257, 'https://ror.org/03xx7rp81', 'en', 1, 'https://ror.org/03xx7rp81 Council for Adult and Experiential Learning'),
(63258, 'https://ror.org/03xzqj858', 'en', 1, 'https://ror.org/03xzqj858 Piramal Clinical Research'),
(63259, 'https://ror.org/03xzqpb53', 'pt', 1, 'https://ror.org/03xzqpb53 Hospital Regional de Presidente Prudente'),
(63260, 'https://ror.org/03y2n4b36', 'en', 1, 'https://ror.org/03y2n4b36 Japanese Academy of Maxillofacial Implants'),
(63261, 'https://ror.org/03y40yh62', 'de', 1, 'https://ror.org/03y40yh62 Stiftung Depressionsforschung'),
(63262, 'https://ror.org/03y5bbq43', 'no_lang_code', 1, 'https://ror.org/03y5bbq43 PlantTec Medical (Germany)'),
(63263, 'https://ror.org/03y6mg459', 'en', 1, 'https://ror.org/03y6mg459 Meditation De-Addiction Health AIDS Nutrition Trust'),
(63264, 'https://ror.org/03y7y3w57', 'de', 1, 'https://ror.org/03y7y3w57 Parkklinik Wiesbaden Schlangenbad'),
(63265, 'https://ror.org/03y902w77', 'en', 1, 'https://ror.org/03y902w77 MidMichigan Medical Center - Alpena'),
(63266, 'https://ror.org/03y9e9713', 'de', 1, 'https://ror.org/03y9e9713 Raphaelsklinik Münster'),
(63267, 'https://ror.org/03y9g2t13', 'no_lang_code', 1, 'https://ror.org/03y9g2t13 Boehringer Ingelheim (Denmark)'),
(63268, 'https://ror.org/03y9rwp16', 'fr', 1, 'https://ror.org/03y9rwp16 HƓpitaux Universitaires Grand Ouest'),
(63269, 'https://ror.org/03yazg833', 'en', 1, 'https://ror.org/03yazg833 St. Peter’s Child Development Center'),
(63270, 'https://ror.org/03ydnrx14', 'en', 1, 'https://ror.org/03ydnrx14 Connecticut Skin Institute'),
(63271, 'https://ror.org/03yef6m79', 'en', 1, 'https://ror.org/03yef6m79 Oncological Dispensary No. 2 ŠžŠ½ŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Гиспансер ā„– 2'),
(63272, 'https://ror.org/03yf63872', 'sv', 1, 'https://ror.org/03yf63872 Probi'),
(63273, 'https://ror.org/03yh6aq45', 'en', 1, 'https://ror.org/03yh6aq45 Alaska Institute for Justice'),
(63274, 'https://ror.org/03yhxyz98', 'en', 1, 'https://ror.org/03yhxyz98 Chinese Medical Center'),
(63275, 'https://ror.org/03yjh4902', 'en', 1, 'https://ror.org/03yjh4902 ResOrtho Foundation ResOrtho Stiftung'),
(63276, 'https://ror.org/03yk6x532', 'en', 1, 'https://ror.org/03yk6x532 Texas Liver Institute'),
(63277, 'https://ror.org/03ynpnz81', 'en', 1, 'https://ror.org/03ynpnz81 Atlantia Food Clinical Trials'),
(63278, 'https://ror.org/03ypq8732', 'es', 1, 'https://ror.org/03ypq8732 Instituto Sexológico Murciano'),
(63279, 'https://ror.org/03yqmy809', 'de', 1, 'https://ror.org/03yqmy809 Albert und Barbara von Metzler-Stiftung'),
(63280, 'https://ror.org/03ysbjx45', 'de', 1, 'https://ror.org/03ysbjx45 Fachklinik 360°'),
(63281, 'https://ror.org/03ytm9f32', 'de', 1, 'https://ror.org/03ytm9f32 Klinik Bad Reichenhall'),
(63282, 'https://ror.org/03ytsc046', 'nl', 1, 'https://ror.org/03ytsc046 IJsselheem'),
(63283, 'https://ror.org/03yv08q03', 'en', 1, 'https://ror.org/03yv08q03 Family Guidance Centers'),
(63284, 'https://ror.org/03ywwjy69', 'en', 1, 'https://ror.org/03ywwjy69 The Howard Foundation'),
(63285, 'https://ror.org/03yx5ta37', 'en', 1, 'https://ror.org/03yx5ta37 Richmond Behavioral Associates'),
(63286, 'https://ror.org/03yyfkv62', 'en', 1, 'https://ror.org/03yyfkv62 Sancheti Institute For Orthopaedics & Rehabilitation'),
(63287, 'https://ror.org/03z1g1222', 'no_lang_code', 1, 'https://ror.org/03z1g1222 TransTissue (Germany)'),
(63288, 'https://ror.org/03z1jm984', 'en', 1, 'https://ror.org/03z1jm984 Western Governors Association'),
(63289, 'https://ror.org/03z2eez35', 'en', 1, 'https://ror.org/03z2eez35 Madison County Health Department'),
(63290, 'https://ror.org/03z4x4n61', 'no_lang_code', 1, 'https://ror.org/03z4x4n61 Lysosomal Therapeutics (United States)'),
(63291, 'https://ror.org/03z5ka349', 'de', 1, 'https://ror.org/03z5ka349 Klinikum Konstanz'),
(63292, 'https://ror.org/03z5qqj48', 'en', 1, 'https://ror.org/03z5qqj48 Adam International Hospital'),
(63293, 'https://ror.org/03z68z654', 'pl', 1, 'https://ror.org/03z68z654 Samodzielny Publiczny Szpital Specjalistyczny Chorób Płuc im. dr O. Sokołowskiego'),
(63294, 'https://ror.org/03z71e370', 'en', 1, 'https://ror.org/03z71e370 Municipal Budgetary Health care Institution "Clinical and Diagnostic Center" Health'),
(63295, 'https://ror.org/03z77se46', 'en', 1, 'https://ror.org/03z77se46 Hawaii Department of Human Services'),
(63296, 'https://ror.org/03z7gnm21', 'en', 1, 'https://ror.org/03z7gnm21 Center for the Improvement of Child Caring'),
(63297, 'https://ror.org/03z7zv664', 'es', 1, 'https://ror.org/03z7zv664 Instituto de Salud del Estado de MƩxico'),
(63298, 'https://ror.org/03za4at61', 'nl', 1, 'https://ror.org/03za4at61 Nationaal MS Fonds'),
(63299, 'https://ror.org/03zbwg385', 'no_lang_code', 1, 'https://ror.org/03zbwg385 Lumenware (United States)'),
(63300, 'https://ror.org/03zbwg482', 'no_lang_code', 1, 'https://ror.org/03zbwg482 Kowa (United States)'),
(63301, 'https://ror.org/03zdy0d17', 'en', 1, 'https://ror.org/03zdy0d17 Motu Economic and Public Policy Research'),
(63302, 'https://ror.org/03ze2q110', 'en', 1, 'https://ror.org/03ze2q110 Essex Westford School District'),
(63303, 'https://ror.org/03zfqb242', 'de', 1, 'https://ror.org/03zfqb242 Elefanten Apotheke'),
(63304, 'https://ror.org/03zgxjc71', 'en', 1, 'https://ror.org/03zgxjc71 Ohio Gastroenterology and Liver Institute'),
(63305, 'https://ror.org/03zn9nd89', 'en', 1, 'https://ror.org/03zn9nd89 Department of Health Kagawaran ng Kalusugan'),
(63306, 'https://ror.org/03znth086', 'no_lang_code', 1, 'https://ror.org/03znth086 Carthago International Solutions (United States)'),
(63307, 'https://ror.org/03zqa2346', 'en', 1, 'https://ror.org/03zqa2346 Manitoba Institute for Patient Safety'),
(63308, 'https://ror.org/03zqjf227', 'en', 1, 'https://ror.org/03zqjf227 Panaquatic'),
(63309, 'https://ror.org/03zrdj512', 'en', 1, 'https://ror.org/03zrdj512 GOUZ YaO "Solovyov NV Clinical Emergency Hospital"'),
(63310, 'https://ror.org/03zvpee43', 'de', 1, 'https://ror.org/03zvpee43 Hochschule für Gesundheitsorientierte Wissenschaften Rhein-Neckar'),
(63311, 'https://ror.org/03zx2vv67', 'en', 1, 'https://ror.org/03zx2vv67 Oklahoma Blood Institute'),
(63312, 'https://ror.org/03zxn7k97', 'de', 1, 'https://ror.org/03zxn7k97 Die ZahnƤrzte.ch'),
(63313, 'https://ror.org/03zzm8134', 'en', 1, 'https://ror.org/03zzm8134 Deutschen Akademie für Flug- und Reisemedizin German Academy for Aviation and Travel Medicine'),
(63314, 'https://ror.org/04030gz13', 'en', 1, 'https://ror.org/04030gz13 KriminalvƄrden Swedish Prison and Probation Service'),
(63315, 'https://ror.org/0405m4551', 'en', 1, 'https://ror.org/0405m4551 MedStar Heart & Vascular Institute'),
(63316, 'https://ror.org/0405wpw62', 'en', 1, 'https://ror.org/0405wpw62 Vasan Eye Care Hospital'),
(63317, 'https://ror.org/0408r6k10', 'en', 1, 'https://ror.org/0408r6k10 Mary Washington Hospital'),
(63318, 'https://ror.org/040a4rx48', 'fr', 1, 'https://ror.org/040a4rx48 Institut SupĆ©rieur du Sport et de l’Éducation Physique de Sfax'),
(63319, 'https://ror.org/040cmp171', 'no_lang_code', 1, 'https://ror.org/040cmp171 Asahi Kasei (Germany)'),
(63320, 'https://ror.org/040ctp848', 'en', 1, 'https://ror.org/040ctp848 Aleut International Association'),
(63321, 'https://ror.org/040dw4657', 'no_lang_code', 1, 'https://ror.org/040dw4657 Baxter (Belgium)'),
(63322, 'https://ror.org/040emdb43', 'en', 1, 'https://ror.org/040emdb43 Fetal Medicine Foundation Belgium Foetale Geneeskunde'),
(63323, 'https://ror.org/040frxb47', 'en', 1, 'https://ror.org/040frxb47 Niger State Ministry of Health'),
(63324, 'https://ror.org/040gwjm94', 'no_lang_code', 1, 'https://ror.org/040gwjm94 MusclePharm Sports Science Institute (United States)'),
(63325, 'https://ror.org/040h2ty70', 'no_lang_code', 1, 'https://ror.org/040h2ty70 Optima Pharmazeutische (Germany)'),
(63326, 'https://ror.org/040hgf597', 'en', 1, 'https://ror.org/040hgf597 Institute for Liver Health'),
(63327, 'https://ror.org/040pncp85', 'en', 1, 'https://ror.org/040pncp85 Colorado Blood Cancer Institute'),
(63328, 'https://ror.org/040s1e839', 'no_lang_code', 1, 'https://ror.org/040s1e839 Launchpad Central (United States)'),
(63329, 'https://ror.org/040s9t622', 'no_lang_code', 1, 'https://ror.org/040s9t622 Novo Nordisk (Italy)'),
(63330, 'https://ror.org/041045722', 'en', 1, 'https://ror.org/041045722 Bloom Fertility Centre'),
(63331, 'https://ror.org/041100z65', 'en', 1, 'https://ror.org/041100z65 State Radio Regulation Of China å›½å®¶ę— ēŗæē”µē›‘ęµ‹äø­åæƒ'),
(63332, 'https://ror.org/04113mk23', 'no_lang_code', 1, 'https://ror.org/04113mk23 Akupunkturforeningen'),
(63333, 'https://ror.org/0412yvb02', 'en', 1, 'https://ror.org/0412yvb02 Graves Gilbert Clinic'),
(63334, 'https://ror.org/0413e4b06', 'no', 1, 'https://ror.org/0413e4b06 Solveig and Johan P. Sommer''s foundation Solveig og Johan P. Sommers stiftelse'),
(63335, 'https://ror.org/0413n0f20', 'fr', 1, 'https://ror.org/0413n0f20 Loterie Nationale Nationale loterij Nationallotterie'),
(63336, 'https://ror.org/0415b1145', 'en', 1, 'https://ror.org/0415b1145 Leiomyosarcoma Direct Research Foundation'),
(63337, 'https://ror.org/041682e62', 'en', 1, 'https://ror.org/041682e62 Shenzhen Habitat Environment Committee ę·±åœ³åø‚äŗŗå±…ēŽÆå¢ƒå§”å‘˜ä¼š'),
(63338, 'https://ror.org/0417z1990', 'de', 1, 'https://ror.org/0417z1990 Klinikum Bremerhaven-Reinkenheide'),
(63339, 'https://ror.org/041a6v281', 'nl', 1, 'https://ror.org/041a6v281 Centrum Verslavings Onderzoek'),
(63340, 'https://ror.org/041avvw93', 'en', 1, 'https://ror.org/041avvw93 Riverside Transplantation Institute'),
(63341, 'https://ror.org/041b88186', 'en', 1, 'https://ror.org/041b88186 Intercultural Development Research Association'),
(63342, 'https://ror.org/041b8s785', 'no_lang_code', 1, 'https://ror.org/041b8s785 Clinipace (United States)'),
(63343, 'https://ror.org/041c6tx10', 'en', 1, 'https://ror.org/041c6tx10 Southwest General Health Center'),
(63344, 'https://ror.org/041drfb04', 'en', 1, 'https://ror.org/041drfb04 Fruit Research Institute å¹æäøœēœå†œäøšē§‘å­¦é™¢ęžœę ‘ē ”ē©¶ę‰€'),
(63345, 'https://ror.org/041e7q719', 'en', 1, 'https://ror.org/041e7q719 Institute of Molecular and Translational Medicine Ústav molekulĆ”rnĆ­ a translačnĆ­ medicĆ­ny'),
(63346, 'https://ror.org/041ee2w62', 'en', 1, 'https://ror.org/041ee2w62 Michael Reese Research and Education Foundation'),
(63347, 'https://ror.org/041g5fr04', 'nl', 1, 'https://ror.org/041g5fr04 GGNet'),
(63348, 'https://ror.org/041hmmv49', 'en', 1, 'https://ror.org/041hmmv49 Bronx Psychiatric Center'),
(63349, 'https://ror.org/041kzk395', 'no_lang_code', 1, 'https://ror.org/041kzk395 Elektror Airsystems (Germany)'),
(63350, 'https://ror.org/041mqc477', 'no_lang_code', 1, 'https://ror.org/041mqc477 Zija International (United States)'),
(63351, 'https://ror.org/041mscx66', 'no_lang_code', 1, 'https://ror.org/041mscx66 Vortex Hydro Energy (United States)'),
(63352, 'https://ror.org/041n30849', 'de', 1, 'https://ror.org/041n30849 Union zur Fƶrderung von Oel- und Proteinpflanzen e.V.'),
(63353, 'https://ror.org/041n62j20', 'en', 1, 'https://ror.org/041n62j20 Maryland Department of Legislative Services'),
(63354, 'https://ror.org/041s25165', 'en', 1, 'https://ror.org/041s25165 National Association of Attorneys General'),
(63355, 'https://ror.org/041twma66', 'en', 1, 'https://ror.org/041twma66 Science Factory'),
(63356, 'https://ror.org/041wcwm28', 'en', 1, 'https://ror.org/041wcwm28 American Association of Physical Anthropologists'),
(63357, 'https://ror.org/041x9ee87', 'no_lang_code', 1, 'https://ror.org/041x9ee87 Klar Scientific (United States)'),
(63358, 'https://ror.org/041zgk078', 'en', 1, 'https://ror.org/041zgk078 Northeastern Mental Health Center'),
(63359, 'https://ror.org/0425kp210', 'en', 1, 'https://ror.org/0425kp210 San Diego Spine Institute'),
(63360, 'https://ror.org/0425mk239', 'en', 1, 'https://ror.org/0425mk239 Gruter Institute'),
(63361, 'https://ror.org/0426yhw42', 'en', 1, 'https://ror.org/0426yhw42 St. Petersburg State Health Care Institution "Elizabethan Hospital" Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Š•Š»ŠøŠ·Š°Š²ŠµŃ‚ŠøŠ½ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(63362, 'https://ror.org/042agnp26', 'en', 1, 'https://ror.org/042agnp26 Sparta Cancer Center'),
(63363, 'https://ror.org/042bx3y66', 'en', 1, 'https://ror.org/042bx3y66 Ablon Skin Institute and Research Center'),
(63364, 'https://ror.org/042dbq096', 'en', 1, 'https://ror.org/042dbq096 Parker Adventist Hospital'),
(63365, 'https://ror.org/042dk7821', 'en', 1, 'https://ror.org/042dk7821 Madison Children''s Museum'),
(63366, 'https://ror.org/042eeg142', 'en', 1, 'https://ror.org/042eeg142 Adelaide Institute for Sleep Health'),
(63367, 'https://ror.org/042g9vq32', 'de', 1, 'https://ror.org/042g9vq32 BG Klinikum Bergmannstrost Halle'),
(63368, 'https://ror.org/042gsyn68', 'en', 1, 'https://ror.org/042gsyn68 Odessa Memorial Healthcare Center'),
(63369, 'https://ror.org/042gx3p69', 'en', 1, 'https://ror.org/042gx3p69 Society For Pediatric Dermatology'),
(63370, 'https://ror.org/042j4et55', 'en', 1, 'https://ror.org/042j4et55 Philippines Tuberculosis Society'),
(63371, 'https://ror.org/042k68148', 'en', 1, 'https://ror.org/042k68148 Mercy Regional Medical Center'),
(63372, 'https://ror.org/042pj0j50', 'fr', 1, 'https://ror.org/042pj0j50 Agence Universitaire de la Francophonie'),
(63373, 'https://ror.org/042qe4k74', 'no_lang_code', 1, 'https://ror.org/042qe4k74 OESH Shoes (United States)'),
(63374, 'https://ror.org/042rbpa77', 'en', 1, 'https://ror.org/042rbpa77 Damascus Hospital مستؓفى ŲÆŁ…Ų“Ł‚'),
(63375, 'https://ror.org/042s1np65', 'en', 1, 'https://ror.org/042s1np65 City Clinical Hospital No. 2 Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š‘Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 2'),
(63376, 'https://ror.org/042s2nd27', 'nl', 1, 'https://ror.org/042s2nd27 GGD Zeeland, Gemeentelijke gezondheidsdienst Zeeland'),
(63377, 'https://ror.org/042t5qg73', 'en', 1, 'https://ror.org/042t5qg73 Miina SillanpƤƤ Foundation Miina SillanpƤƤn SƤƤtiƶ'),
(63378, 'https://ror.org/042v6ch48', 'nl', 1, 'https://ror.org/042v6ch48 Zorgverzekeraars Nederland'),
(63379, 'https://ror.org/042xens09', 'no_lang_code', 1, 'https://ror.org/042xens09 BiotecEra (United States)'),
(63380, 'https://ror.org/042xrv022', 'da', 1, 'https://ror.org/042xrv022 Dansk Centralbibliotek for Sydslesvig'),
(63381, 'https://ror.org/042xwgm79', 'nl', 1, 'https://ror.org/042xwgm79 Fysio Schambergen'),
(63382, 'https://ror.org/042y18291', 'en', 1, 'https://ror.org/042y18291 Kaiser Permanente Zion Medical Center'),
(63383, 'https://ror.org/042y6y279', 'en', 1, 'https://ror.org/042y6y279 The Lloyd Society'),
(63384, 'https://ror.org/042yqf226', 'nl', 1, 'https://ror.org/042yqf226 Sint Maartenskliniek'),
(63385, 'https://ror.org/042yx6h67', 'de', 1, 'https://ror.org/042yx6h67 Medalp Imst - Zentrum für ambulante Chirurgie Betriebs'),
(63386, 'https://ror.org/042z8c185', 'en', 1, 'https://ror.org/042z8c185 Tarkio College'),
(63387, 'https://ror.org/04304fr42', 'en', 1, 'https://ror.org/04304fr42 National Finance Center'),
(63388, 'https://ror.org/0430haf92', 'no_lang_code', 1, 'https://ror.org/0430haf92 Medartis (Switzerland)'),
(63389, 'https://ror.org/04318hx17', 'nl', 1, 'https://ror.org/04318hx17 Antes'),
(63390, 'https://ror.org/04318pf64', 'es', 1, 'https://ror.org/04318pf64 Instituto Nicaraguense de Pesca y Acuicultura'),
(63391, 'https://ror.org/0431amh23', 'en', 1, 'https://ror.org/0431amh23 Klinik für Augenheilkunde Ophthalmology Clinic'),
(63392, 'https://ror.org/0431xay97', 'no_lang_code', 1, 'https://ror.org/0431xay97 pfm medical (Germany)'),
(63393, 'https://ror.org/043256924', 'en', 1, 'https://ror.org/043256924 Ludwig Boltzmann Institute for Translational Heart Failure Research'),
(63394, 'https://ror.org/0432mp741', 'en', 1, 'https://ror.org/0432mp741 Royal Health Awareness Society'),
(63395, 'https://ror.org/0439nps09', 'en', 1, 'https://ror.org/0439nps09 Assil Eye Institute'),
(63396, 'https://ror.org/0439wry26', 'de', 1, 'https://ror.org/0439wry26 Ministerium für Heimat, Kommunales, Bau und Gleichstellung des Landes Nordrhein-Westfalen'),
(63397, 'https://ror.org/043afx341', 'en', 1, 'https://ror.org/043afx341 Kaohsiung Breast Cancer Promotion and Education Society ē¤¾åœ˜ę³•äŗŗé«˜é›„åø‚ä¹³ē™Œé˜²ę²»č”›ę•™å­øęœƒ'),
(63398, 'https://ror.org/043cmyb92', 'en', 1, 'https://ror.org/043cmyb92 Israel Diabetes Association אגודה ×™×©×Ø××œ×™×Ŗ ×œ×”×•×›×Ø×Ŗ'),
(63399, 'https://ror.org/043dj2c51', 'en', 1, 'https://ror.org/043dj2c51 South Australian Rock Lobster Advisory Council'),
(63400, 'https://ror.org/043dpra13', 'no_lang_code', 1, 'https://ror.org/043dpra13 Eurocept Groep Eurocept Group (Netherlands)'),
(63401, 'https://ror.org/043dsjh82', 'en', 1, 'https://ror.org/043dsjh82 The Advanced IVF Institute'),
(63402, 'https://ror.org/043e6bd18', 'nl', 1, 'https://ror.org/043e6bd18 NIM Maatschappelijk Werk'),
(63403, 'https://ror.org/043emz428', 'en', 1, 'https://ror.org/043emz428 Institute for Science and Human Values'),
(63404, 'https://ror.org/043gdn302', 'en', 1, 'https://ror.org/043gdn302 Association of Ethiopian Microfinance Institutions į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆ›į‹­įŠ­įˆ® į‹į‹­įŠ“įŠ•įˆµ į‰°į‰‹įˆ›į‰µ įˆ›įˆ…į‰ įˆ­'),
(63405, 'https://ror.org/043gt9j70', 'en', 1, 'https://ror.org/043gt9j70 Arthritis Treatment Center'),
(63406, 'https://ror.org/043hdf156', 'no_lang_code', 1, 'https://ror.org/043hdf156 Global BioClinical (United States)'),
(63407, 'https://ror.org/043jpam45', 'en', 1, 'https://ror.org/043jpam45 Keystone Initiative for Network Based Education and Research'),
(63408, 'https://ror.org/043m5qs92', 'en', 1, 'https://ror.org/043m5qs92 New Mexico Heart Institute'),
(63409, 'https://ror.org/043mdy139', 'no_lang_code', 1, 'https://ror.org/043mdy139 Dentaid (Netherlands)'),
(63410, 'https://ror.org/043nwx769', 'nl', 1, 'https://ror.org/043nwx769 Visio'),
(63411, 'https://ror.org/043rqx383', 'en', 1, 'https://ror.org/043rqx383 Pinnacle Oncology Hematology'),
(63412, 'https://ror.org/043sczt09', 'en', 1, 'https://ror.org/043sczt09 Ontario Association of Optometrists'),
(63413, 'https://ror.org/043vk3t22', 'no_lang_code', 1, 'https://ror.org/043vk3t22 Terumo (Belgium)'),
(63414, 'https://ror.org/043xarp69', 'no_lang_code', 1, 'https://ror.org/043xarp69 Knop Laboratories (Chile)'),
(63415, 'https://ror.org/043yx1v14', 'en', 1, 'https://ror.org/043yx1v14 University and Rehabilitation Clinics Ulm UniversitƤts und Rehabilitationskliniken Ulm'),
(63416, 'https://ror.org/0440a2x91', 'en', 1, 'https://ror.org/0440a2x91 St. Francis Regional Medical Center'),
(63417, 'https://ror.org/0440bgy37', 'no_lang_code', 1, 'https://ror.org/0440bgy37 EHI Retail Institute (Germany)'),
(63418, 'https://ror.org/0440mmj74', 'en', 1, 'https://ror.org/0440mmj74 World Childhood Foundation'),
(63419, 'https://ror.org/0441v1872', 'no_lang_code', 1, 'https://ror.org/0441v1872 Mipharm (Italy)'),
(63420, 'https://ror.org/0443rrm71', 'it', 1, 'https://ror.org/0443rrm71 Consorzio inter-Universitario per la previsione e la prevenzione dei Grandi RIschi'),
(63421, 'https://ror.org/0445eft26', 'en', 1, 'https://ror.org/0445eft26 Advanced Memory Research Institute of New Jersey'),
(63422, 'https://ror.org/0447hzq61', 'en', 1, 'https://ror.org/0447hzq61 Cornea and Laser Eye Institute - Hersh Vision Group'),
(63423, 'https://ror.org/04488aw82', 'no_lang_code', 1, 'https://ror.org/04488aw82 Kellogg’s (Belgium)'),
(63424, 'https://ror.org/044a30492', 'en', 1, 'https://ror.org/044a30492 Gantt Clinical Research Institute'),
(63425, 'https://ror.org/044cwq841', 'de', 1, 'https://ror.org/044cwq841 AGO Austria'),
(63426, 'https://ror.org/044d2hn91', 'fr', 1, 'https://ror.org/044d2hn91 Centre Hospitalier Guillaume RƩgnier'),
(63427, 'https://ror.org/044dx6h83', 'en', 1, 'https://ror.org/044dx6h83 AIDS Healthcare Foundation'),
(63428, 'https://ror.org/044ef5h76', 'en', 1, 'https://ror.org/044ef5h76 Shanghai Cell Therapy Research Institute'),
(63429, 'https://ror.org/044g5sj75', 'nl', 1, 'https://ror.org/044g5sj75 Departement Cultuur, Jeugd en Media'),
(63430, 'https://ror.org/044jq0109', 'no_lang_code', 1, 'https://ror.org/044jq0109 NeuroTrials Research (United States)'),
(63431, 'https://ror.org/044jw3b45', 'pt', 1, 'https://ror.org/044jw3b45 Hospital Pitangueiras'),
(63432, 'https://ror.org/044mt4802', 'en', 1, 'https://ror.org/044mt4802 Central European Cooperative Oncology Group'),
(63433, 'https://ror.org/044p0sr27', 'no_lang_code', 1, 'https://ror.org/044p0sr27 ProMetic Life Sciences (United States)'),
(63434, 'https://ror.org/044q6km85', 'en', 1, 'https://ror.org/044q6km85 Ministry of Health and Quality of Life'),
(63435, 'https://ror.org/044s3bf07', 'nl', 1, 'https://ror.org/044s3bf07 Nederlandse Hoofdpijn Vereniging'),
(63436, 'https://ror.org/044s59k57', 'de', 1, 'https://ror.org/044s59k57 SƤchsisches Krankenhaus Rodewisch'),
(63437, 'https://ror.org/044sr7e96', 'no_lang_code', 1, 'https://ror.org/044sr7e96 Difa Cooper (Italy)'),
(63438, 'https://ror.org/044vvxq04', 'en', 1, 'https://ror.org/044vvxq04 International Society for Chronobiology'),
(63439, 'https://ror.org/044xe3t49', 'lt', 1, 'https://ror.org/044xe3t49 Respublikinės Kauno Ligoninės'),
(63440, 'https://ror.org/044zwp896', 'es', 1, 'https://ror.org/044zwp896 Fundación Andrés Marcio Marcio Andres Foundation'),
(63441, 'https://ror.org/0451etm15', 'it', 1, 'https://ror.org/0451etm15 Associazione Medici Diabetologi'),
(63442, 'https://ror.org/0452c3x52', 'nl', 1, 'https://ror.org/0452c3x52 D.H. Heijne Stichting'),
(63443, 'https://ror.org/0456c8v85', 'en', 1, 'https://ror.org/0456c8v85 Lake Norman Oncology'),
(63444, 'https://ror.org/04578ze73', 'no_lang_code', 1, 'https://ror.org/04578ze73 Derma Consult (Germany)'),
(63445, 'https://ror.org/045axgc25', 'de', 1, 'https://ror.org/045axgc25 Ministerium für Arbeit, Gesundheit und Soziales des Landes Nordrhein-Westfalen'),
(63446, 'https://ror.org/045ayna68', 'en', 1, 'https://ror.org/045ayna68 Justin Parker Neurological Institute'),
(63447, 'https://ror.org/045d4st33', 'en', 1, 'https://ror.org/045d4st33 Yoga Science Foundation'),
(63448, 'https://ror.org/045d8mm77', 'en', 1, 'https://ror.org/045d8mm77 Precision Research Institute'),
(63449, 'https://ror.org/045dptz13', 'en', 1, 'https://ror.org/045dptz13 Associazione QOL-ONE QOL-ONE Association'),
(63450, 'https://ror.org/045jdd948', 'en', 1, 'https://ror.org/045jdd948 LifeSpan Medical Institute'),
(63451, 'https://ror.org/045jrd330', 'en', 1, 'https://ror.org/045jrd330 Dallas Nephrology Associates'),
(63452, 'https://ror.org/045k5xj29', 'de', 1, 'https://ror.org/045k5xj29 Allgemeiner Deutscher Tanzlehrerverband'),
(63453, 'https://ror.org/045m3df12', 'en', 1, 'https://ror.org/045m3df12 Tseung Kwan O Hospital å°‡č»ę¾³é†«é™¢'),
(63454, 'https://ror.org/045qccw34', 'no_lang_code', 1, 'https://ror.org/045qccw34 Bemer (Liechtenstein)'),
(63455, 'https://ror.org/045qrr805', 'en', 1, 'https://ror.org/045qrr805 Ministry of Economy and Finance'),
(63456, 'https://ror.org/045w1wd13', 'en', 1, 'https://ror.org/045w1wd13 Hellenic College of Treatment of Atherosclerosis Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Κολέγιο Ī˜ĪµĻĪ±Ļ€ĪµĪÆĪ±Ļ‚ της Ī‘ĪøĪ·ĻĪæĻƒĪŗĪ»Ī®ĻĻ‰ĻƒĪ·Ļ‚'),
(63457, 'https://ror.org/045wd8a95', 'en', 1, 'https://ror.org/045wd8a95 OSF St. Francis Hospital & Medical Group'),
(63458, 'https://ror.org/045xrc244', 'no_lang_code', 1, 'https://ror.org/045xrc244 ISO Arzneimittel (Germany)'),
(63459, 'https://ror.org/045xrnk02', 'fr', 1, 'https://ror.org/045xrnk02 Doctors Without Borders Médecins Sans Frontières'),
(63460, 'https://ror.org/045xvrw74', 'en', 1, 'https://ror.org/045xvrw74 German Insurance Association Gesamtverband der Deutschen Versicherungswirtschaft'),
(63461, 'https://ror.org/045z78c59', 'en', 1, 'https://ror.org/045z78c59 ADD Centre'),
(63462, 'https://ror.org/045znsy82', 'en', 1, 'https://ror.org/045znsy82 River Valley Community College'),
(63463, 'https://ror.org/0460chp58', 'en', 1, 'https://ror.org/0460chp58 Nationaal Initiatief Hersenen & Cognitie National Initiative Brain & Cognition'),
(63464, 'https://ror.org/0460whz58', 'en', 1, 'https://ror.org/0460whz58 Orange County Global Medical Center'),
(63465, 'https://ror.org/0463yzy10', 'en', 1, 'https://ror.org/0463yzy10 Chongqing Population and Family Planning Science and Technology Research Institute é‡åŗ†åø‚äŗŗå£å’Œč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(63466, 'https://ror.org/0464wn274', 'en', 1, 'https://ror.org/0464wn274 Sericultural Research Institute 养殖研究所'),
(63467, 'https://ror.org/0466ghp25', 'en', 1, 'https://ror.org/0466ghp25 Heekin Clinic'),
(63468, 'https://ror.org/0467x3v78', 'de', 1, 'https://ror.org/0467x3v78 OrthopƤdische Praxis'),
(63469, 'https://ror.org/0468q7p56', 'en', 1, 'https://ror.org/0468q7p56 North Little Rock Health Department'),
(63470, 'https://ror.org/0468xyb13', 'en', 1, 'https://ror.org/0468xyb13 Icelandic Félag sjúkraþjÔlfara The Icelandic Physiotherapy Association'),
(63471, 'https://ror.org/0468zsk48', 'en', 1, 'https://ror.org/0468zsk48 Bulgarr Ngaru Medical Aboriginal Corporation'),
(63472, 'https://ror.org/0469pxf24', 'en', 1, 'https://ror.org/0469pxf24 Medicor Foundation'),
(63473, 'https://ror.org/046bcwj93', 'no_lang_code', 1, 'https://ror.org/046bcwj93 Associated Management Services (United States)'),
(63474, 'https://ror.org/046df5t56', 'en', 1, 'https://ror.org/046df5t56 U.S. Space and Rocket Center'),
(63475, 'https://ror.org/046dq9976', 'nl', 1, 'https://ror.org/046dq9976 Cordaid'),
(63476, 'https://ror.org/046dsav87', 'no_lang_code', 1, 'https://ror.org/046dsav87 Swisstom (Switzerland)'),
(63477, 'https://ror.org/046gp2614', 'de', 1, 'https://ror.org/046gp2614 Deutsche Gesellschaft für Anästhesiologie und Intensivmedizin'),
(63478, 'https://ror.org/046h4sg67', 'pt', 1, 'https://ror.org/046h4sg67 Instituto Vascular BH'),
(63479, 'https://ror.org/046k3mr17', 'en', 1, 'https://ror.org/046k3mr17 Healthcare Global Enterprises'),
(63480, 'https://ror.org/046n2mh17', 'no_lang_code', 1, 'https://ror.org/046n2mh17 Electrocon International (United States)'),
(63481, 'https://ror.org/046nba540', 'en', 1, 'https://ror.org/046nba540 St. Mary''s Medical Center'),
(63482, 'https://ror.org/046np1j53', 'sr', 1, 'https://ror.org/046np1j53 Institut za Reumatologiju'),
(63483, 'https://ror.org/046pkq184', 'no_lang_code', 1, 'https://ror.org/046pkq184 Provexis (United Kingdom)'),
(63484, 'https://ror.org/046sb0j13', 'es', 1, 'https://ror.org/046sb0j13 Asociación Española de Psiquiatría del Niño y el Adolescente'),
(63485, 'https://ror.org/046sm3c31', 'de', 1, 'https://ror.org/046sm3c31 Austrian Society of Hypertension, Ɩsterreichische Gesellschaft für Hypertensiologie'),
(63486, 'https://ror.org/046tgw891', 'en', 1, 'https://ror.org/046tgw891 New Hampshire Audubon'),
(63487, 'https://ror.org/046ww9q34', 'it', 1, 'https://ror.org/046ww9q34 Casa di Cura CittĆ  di Roma'),
(63488, 'https://ror.org/046xv3q50', 'en', 1, 'https://ror.org/046xv3q50 Running Injury Clinic'),
(63489, 'https://ror.org/04705pk24', 'en', 1, 'https://ror.org/04705pk24 California Institute Of Medical Science'),
(63490, 'https://ror.org/0470v5z93', 'de', 1, 'https://ror.org/0470v5z93 Post Apotheke'),
(63491, 'https://ror.org/0471rft76', 'en', 1, 'https://ror.org/0471rft76 Global Alzheimer''s Platform Foundation'),
(63492, 'https://ror.org/0472xf465', 'en', 1, 'https://ror.org/0472xf465 Nordic Society for Pediatric Hematology and Oncology'),
(63493, 'https://ror.org/0479nnv27', 'no_lang_code', 1, 'https://ror.org/0479nnv27 Dentium (South Korea)'),
(63494, 'https://ror.org/0479zah75', 'nl', 1, 'https://ror.org/0479zah75 Stichting LOOP'),
(63495, 'https://ror.org/047a78m29', 'en', 1, 'https://ror.org/047a78m29 Farzan Knowledge Development, Research and Technology Institute'),
(63496, 'https://ror.org/047acnh17', 'en', 1, 'https://ror.org/047acnh17 CReATe Fertility Centre'),
(63497, 'https://ror.org/047b6h508', 'no_lang_code', 1, 'https://ror.org/047b6h508 Lamepro Benelux (Netherlands)'),
(63498, 'https://ror.org/047b7k736', 'nl', 1, 'https://ror.org/047b7k736 BartimƩus'),
(63499, 'https://ror.org/047bp3m73', 'en', 1, 'https://ror.org/047bp3m73 Florida Urology Associates'),
(63500, 'https://ror.org/047bx1161', 'no_lang_code', 1, 'https://ror.org/047bx1161 Alaska Biological Research (United States)'),
(63501, 'https://ror.org/047e6a566', 'en', 1, 'https://ror.org/047e6a566 Westwood Institute for Anxiety Disorders'),
(63502, 'https://ror.org/047get849', 'en', 1, 'https://ror.org/047get849 Dallas Ear Institute'),
(63503, 'https://ror.org/047hbnr51', 'no_lang_code', 1, 'https://ror.org/047hbnr51 DigsFish Services (Australia)'),
(63504, 'https://ror.org/047j0w511', 'en', 1, 'https://ror.org/047j0w511 St. Joseph Mercy Canton'),
(63505, 'https://ror.org/047qv2c31', 'no_lang_code', 1, 'https://ror.org/047qv2c31 Mammoet (Netherlands)'),
(63506, 'https://ror.org/047tk1g21', 'no_lang_code', 1, 'https://ror.org/047tk1g21 Indena (France)'),
(63507, 'https://ror.org/047xc1q35', 'no_lang_code', 1, 'https://ror.org/047xc1q35 Eminence Clinical Research (United States)'),
(63508, 'https://ror.org/047xpay52', 'no_lang_code', 1, 'https://ror.org/047xpay52 PAX Scientific (United States)'),
(63509, 'https://ror.org/047yyd552', 'en', 1, 'https://ror.org/047yyd552 American Foundry Society');
INSERT INTO `rors` VALUES
(63510, 'https://ror.org/047zejf54', 'en', 1, 'https://ror.org/047zejf54 Chimes Society'),
(63511, 'https://ror.org/0480n9h26', 'nl', 1, 'https://ror.org/0480n9h26 Nederlandse Vereniging voor Radiologie'),
(63512, 'https://ror.org/04816wc22', 'en', 1, 'https://ror.org/04816wc22 Society on Neuroimmune Pharmacology'),
(63513, 'https://ror.org/0481c6y41', 'en', 1, 'https://ror.org/0481c6y41 Australian Barramundi Farmers Association'),
(63514, 'https://ror.org/04830hf15', 'de', 1, 'https://ror.org/04830hf15 Evangelisches Krankenhaus Oldenburg'),
(63515, 'https://ror.org/048338z54', 'nl', 1, 'https://ror.org/048338z54 Radiotherapie Groep'),
(63516, 'https://ror.org/0487c1f17', 'en', 1, 'https://ror.org/0487c1f17 Advanced Radiation Centers of New York'),
(63517, 'https://ror.org/0487hf333', 'en', 1, 'https://ror.org/0487hf333 Pikeville Medical Center'),
(63518, 'https://ror.org/04883bn66', 'en', 1, 'https://ror.org/04883bn66 Western Trauma Association'),
(63519, 'https://ror.org/04898h931', 'no_lang_code', 1, 'https://ror.org/04898h931 Dfusion (United States)'),
(63520, 'https://ror.org/048a4sn26', 'nl', 1, 'https://ror.org/048a4sn26 Stichting Adriaan Metius'),
(63521, 'https://ror.org/048bjga67', 'no_lang_code', 1, 'https://ror.org/048bjga67 Evalan (Netherlands)'),
(63522, 'https://ror.org/048d4kk91', 'no_lang_code', 1, 'https://ror.org/048d4kk91 National Bioproducts Institute (South Africa)'),
(63523, 'https://ror.org/048g8j049', 'no_lang_code', 1, 'https://ror.org/048g8j049 Oncoscience (Germany)'),
(63524, 'https://ror.org/048ga6v20', 'en', 1, 'https://ror.org/048ga6v20 Mesa Public Schools'),
(63525, 'https://ror.org/048gkn792', 'no_lang_code', 1, 'https://ror.org/048gkn792 Inversago Pharma (Canada)'),
(63526, 'https://ror.org/048hv9z27', 'es', 1, 'https://ror.org/048hv9z27 Centro de Infertilidad y Reproducción Humana'),
(63527, 'https://ror.org/048jjj865', 'es', 1, 'https://ror.org/048jjj865 Sociedad EspaƱola de Cirugƭa PediƔtrica'),
(63528, 'https://ror.org/048jnwk41', 'nl', 1, 'https://ror.org/048jnwk41 De Viersprong'),
(63529, 'https://ror.org/048kfq149', 'de', 1, 'https://ror.org/048kfq149 HIZ Berlin'),
(63530, 'https://ror.org/048knfw55', 'no_lang_code', 1, 'https://ror.org/048knfw55 Gesundes Kinzigtal (Germany)'),
(63531, 'https://ror.org/048m0by09', 'en', 1, 'https://ror.org/048m0by09 Indian Society of Critical Care Medicine'),
(63532, 'https://ror.org/048n17y91', 'en', 1, 'https://ror.org/048n17y91 Excelsior Orthopaedics'),
(63533, 'https://ror.org/048q77b60', 'en', 1, 'https://ror.org/048q77b60 Irish Pharmacy Union'),
(63534, 'https://ror.org/048qh2s42', 'en', 1, 'https://ror.org/048qh2s42 OASI Bioresearch Foundation'),
(63535, 'https://ror.org/048qt5n54', 'nl', 1, 'https://ror.org/048qt5n54 Koninklijke Nederlandse Klim- en Bergsport Vereniging'),
(63536, 'https://ror.org/048sptm58', 'en', 1, 'https://ror.org/048sptm58 OCTANE FOUNDATION'),
(63537, 'https://ror.org/048vgwq64', 'en', 1, 'https://ror.org/048vgwq64 New Hampshire Nurses'' Association'),
(63538, 'https://ror.org/048xg4d81', 'en', 1, 'https://ror.org/048xg4d81 Northern Indiana Cancer Research Consortium'),
(63539, 'https://ror.org/04901sx27', 'en', 1, 'https://ror.org/04901sx27 Port Macquarie Base Hospital'),
(63540, 'https://ror.org/0491zfs73', 'nl', 1, 'https://ror.org/0491zfs73 Arkin'),
(63541, 'https://ror.org/0492chx91', 'en', 1, 'https://ror.org/0492chx91 Go4children'),
(63542, 'https://ror.org/04957ke43', 'en', 1, 'https://ror.org/04957ke43 Coalition of Asian-American Independent Practice Association'),
(63543, 'https://ror.org/04983vw43', 'no_lang_code', 1, 'https://ror.org/04983vw43 Coƶperatie VGZ (Netherlands)'),
(63544, 'https://ror.org/0498ha267', 'en', 1, 'https://ror.org/0498ha267 Armstrong Center for Medicine & Health'),
(63545, 'https://ror.org/04993ye45', 'en', 1, 'https://ror.org/04993ye45 Retina Vitreous Associates of Florida'),
(63546, 'https://ror.org/049a2sy14', 'en', 1, 'https://ror.org/049a2sy14 Chautauqua Institution'),
(63547, 'https://ror.org/049at5m16', 'en', 1, 'https://ror.org/049at5m16 Cypress Pointe Pain Management'),
(63548, 'https://ror.org/049btft62', 'de', 1, 'https://ror.org/049btft62 Netzwerk der Rehabilitationsforschung in Nordrhein-Westfalen'),
(63549, 'https://ror.org/049fxhe24', 'de', 1, 'https://ror.org/049fxhe24 Klinik Bad Bergzabern'),
(63550, 'https://ror.org/049fybn29', 'en', 1, 'https://ror.org/049fybn29 Northern Area Armed Forces Hospital'),
(63551, 'https://ror.org/049g3g548', 'de', 1, 'https://ror.org/049g3g548 Sana Kliniken Leipziger Land'),
(63552, 'https://ror.org/049gpxk45', 'en', 1, 'https://ror.org/049gpxk45 OceanWatch Australia'),
(63553, 'https://ror.org/049gtbp49', 'en', 1, 'https://ror.org/049gtbp49 ProCare Odessa Heart Institute'),
(63554, 'https://ror.org/049hac046', 'en', 1, 'https://ror.org/049hac046 Oklahoma State Regents for Higher Education'),
(63555, 'https://ror.org/049kfbr47', 'de', 1, 'https://ror.org/049kfbr47 Aktion Benni'),
(63556, 'https://ror.org/049kj1302', 'es', 1, 'https://ror.org/049kj1302 Instituto de GastroenterologĆ­a'),
(63557, 'https://ror.org/049kvfv38', 'no_lang_code', 1, 'https://ror.org/049kvfv38 Daacro (Germany)'),
(63558, 'https://ror.org/049mk3j45', 'en', 1, 'https://ror.org/049mk3j45 Heart Institute'),
(63559, 'https://ror.org/049n8jv26', 'en', 1, 'https://ror.org/049n8jv26 Diagnostic and Treatment Centre Berlin Diagnostisch Therapeutisches Zentrum'),
(63560, 'https://ror.org/049s06a25', 'en', 1, 'https://ror.org/049s06a25 Southeast Radiation Oncology Group'),
(63561, 'https://ror.org/049s51r41', 'en', 1, 'https://ror.org/049s51r41 Men''s Health Boston'),
(63562, 'https://ror.org/049sbnt53', 'no_lang_code', 1, 'https://ror.org/049sbnt53 Migros (Switzerland)'),
(63563, 'https://ror.org/049skrn36', 'en', 1, 'https://ror.org/049skrn36 Baltic Institute of Social Sciences Baltijas Sociālo zinātņu institūts'),
(63564, 'https://ror.org/049snp549', 'es', 1, 'https://ror.org/049snp549 Instituto para NiƱos Ciegos y Sordos del Valle del Cauca'),
(63565, 'https://ror.org/049sttw47', 'de', 1, 'https://ror.org/049sttw47 STZ eyetrial'),
(63566, 'https://ror.org/049w02t38', 'en', 1, 'https://ror.org/049w02t38 Cardiovascular Clinical Science Foundation'),
(63567, 'https://ror.org/049w74f06', 'de', 1, 'https://ror.org/049w74f06 Institut für Medizinische Diagnostik Berlin-Potsdam'),
(63568, 'https://ror.org/049w8dr20', 'en', 1, 'https://ror.org/049w8dr20 Gwendolyn Strong Foundation'),
(63569, 'https://ror.org/049x86d03', 'en', 1, 'https://ror.org/049x86d03 Academic Health Science Partnership'),
(63570, 'https://ror.org/049xawg80', 'en', 1, 'https://ror.org/049xawg80 Deutsche Gesellschaft für Thorax-, Herz- und Gefäßchirurgie German Society for Thoracic and Cardiovascular Surgery'),
(63571, 'https://ror.org/049yad652', 'de', 1, 'https://ror.org/049yad652 Erwin Rƶver Stiftung'),
(63572, 'https://ror.org/049yq6285', 'no_lang_code', 1, 'https://ror.org/049yq6285 ActivMed Practices & Research (United States)'),
(63573, 'https://ror.org/049yrqz47', 'vi', 1, 'https://ror.org/049yrqz47 Hį»™i Gastroenterology Việt Nam Vietnam Association of Gastroenterology'),
(63574, 'https://ror.org/04a2d1y86', 'no_lang_code', 1, 'https://ror.org/04a2d1y86 Media Health Technologies (United States)'),
(63575, 'https://ror.org/04a3njz22', 'en', 1, 'https://ror.org/04a3njz22 University Dermatology'),
(63576, 'https://ror.org/04a409h19', 'en', 1, 'https://ror.org/04a409h19 Dawson Education Cooperative'),
(63577, 'https://ror.org/04a59jq61', 'no_lang_code', 1, 'https://ror.org/04a59jq61 Procon (Germany)'),
(63578, 'https://ror.org/04a5jy818', 'en', 1, 'https://ror.org/04a5jy818 Michigan Orthopaedic Spine Surgeons'),
(63579, 'https://ror.org/04a7kqd39', 'de', 1, 'https://ror.org/04a7kqd39 Asklepios Klinik Langen'),
(63580, 'https://ror.org/04a87yd07', 'de', 1, 'https://ror.org/04a87yd07 Bundesverband SelbststƤndiger Physiotherapeuten'),
(63581, 'https://ror.org/04abjbr81', 'da', 1, 'https://ror.org/04abjbr81 Danish Agency for Labour Market and Recruitment Styrelsen for Arbejdsmarked og Rekruttering'),
(63582, 'https://ror.org/04ac7y941', 'en', 1, 'https://ror.org/04ac7y941 Kaiping Central Hospital å¼€å¹³åø‚äø­åæƒåŒ»é™¢'),
(63583, 'https://ror.org/04ade1b90', 'en', 1, 'https://ror.org/04ade1b90 Calista Education and Culture'),
(63584, 'https://ror.org/04aercx33', 'pt', 1, 'https://ror.org/04aercx33 Hospital Ana Nery'),
(63585, 'https://ror.org/04af0r679', 'nl', 1, 'https://ror.org/04af0r679 GGD Zuid Limburg, Gemeentelijke gezondheidsdienst Zuid Limburg'),
(63586, 'https://ror.org/04ak3w704', 'en', 1, 'https://ror.org/04ak3w704 Italian Network for Tumor Biotherapy Foundation Network Italiano per la Bioterapia dei Tumori Fondazione'),
(63587, 'https://ror.org/04akv9b62', 'en', 1, 'https://ror.org/04akv9b62 Shanghai Pudong Institute of Education Development'),
(63588, 'https://ror.org/04anq5q02', 'en', 1, 'https://ror.org/04anq5q02 Danish Multiple Sclerosis Center'),
(63589, 'https://ror.org/04asxht25', 'en', 1, 'https://ror.org/04asxht25 Czech Society for Hypertension ČeskĆ” Společnost pro Hypertenzi'),
(63590, 'https://ror.org/04atyxw20', 'en', 1, 'https://ror.org/04atyxw20 Morrison Vein Institute'),
(63591, 'https://ror.org/04avexy41', 'en', 1, 'https://ror.org/04avexy41 North American Family Institute'),
(63592, 'https://ror.org/04awze035', 'en', 1, 'https://ror.org/04awze035 Ronin Institute'),
(63593, 'https://ror.org/04ayaxc32', 'de', 1, 'https://ror.org/04ayaxc32 Elterninitiative Krebskranker Kinder im Saarland'),
(63594, 'https://ror.org/04azstb81', 'en', 1, 'https://ror.org/04azstb81 Hypertension Institute'),
(63595, 'https://ror.org/04b0dke26', 'no_lang_code', 1, 'https://ror.org/04b0dke26 Cancer Prevention Pharmaceuticals (United States)'),
(63596, 'https://ror.org/04b0ys521', 'en', 1, 'https://ror.org/04b0ys521 CHRISTUS Transplant Institute'),
(63597, 'https://ror.org/04b85d432', 'de', 1, 'https://ror.org/04b85d432 UniversitƤts-HNO-Klinik Heidelberg'),
(63598, 'https://ror.org/04b98k103', 'de', 1, 'https://ror.org/04b98k103 Dƶpfer Schulen Regensburg'),
(63599, 'https://ror.org/04babz459', 'fr', 1, 'https://ror.org/04babz459 Association Schizo Oui'),
(63600, 'https://ror.org/04backa61', 'no_lang_code', 1, 'https://ror.org/04backa61 Scientific Centre of Personalized Psychiatry Š—ŠŠž "ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр персонализированной психиатрии"'),
(63601, 'https://ror.org/04bbrxk94', 'en', 1, 'https://ror.org/04bbrxk94 Council of Athabascan Tribal Governments'),
(63602, 'https://ror.org/04bf36351', 'fr', 1, 'https://ror.org/04bf36351 SociƩtƩ Nationale FranƧaise de Colo-Proctologie'),
(63603, 'https://ror.org/04bharj65', 'no_lang_code', 1, 'https://ror.org/04bharj65 ALK-Abelló (Italy)'),
(63604, 'https://ror.org/04bhbrs76', 'en', 1, 'https://ror.org/04bhbrs76 River Styx Foundation'),
(63605, 'https://ror.org/04bkr1a40', 'da', 1, 'https://ror.org/04bkr1a40 Psoriasisforeningen'),
(63606, 'https://ror.org/04bkxkh03', 'de', 1, 'https://ror.org/04bkxkh03 Bundesverband Medizintechnologie German Medical Technology Association'),
(63607, 'https://ror.org/04bmdeb43', 'fr', 1, 'https://ror.org/04bmdeb43 Ages et Vie'),
(63608, 'https://ror.org/04bpnyr93', 'en', 1, 'https://ror.org/04bpnyr93 Aesthetico'),
(63609, 'https://ror.org/04bsbyy14', 'en', 1, 'https://ror.org/04bsbyy14 Delmarva Advisory Council'),
(63610, 'https://ror.org/04bsc0v25', 'en', 1, 'https://ror.org/04bsc0v25 Society for Cardiovascular Angiography and Interventions'),
(63611, 'https://ror.org/04bt3ez84', 'no_lang_code', 1, 'https://ror.org/04bt3ez84 SmalTec International (United States)'),
(63612, 'https://ror.org/04bvb7577', 'en', 1, 'https://ror.org/04bvb7577 WellMed Charitable Foundation'),
(63613, 'https://ror.org/04by43e81', 'de', 1, 'https://ror.org/04by43e81 GOIN Gesundheitsorganisation'),
(63614, 'https://ror.org/04byjbp28', 'nl', 1, 'https://ror.org/04byjbp28 Centrum Aquamarijn'),
(63615, 'https://ror.org/04bymxx89', 'en', 1, 'https://ror.org/04bymxx89 Anhui and Huaihe River Institute of Hydraulic Research å®‰å¾½ēœę°“åˆ©éƒØę·®å§”ę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(63616, 'https://ror.org/04bzrjn90', 'es', 1, 'https://ror.org/04bzrjn90 Instituto Jalisciense de CancerologĆ­a'),
(63617, 'https://ror.org/04bzrt549', 'no_lang_code', 1, 'https://ror.org/04bzrt549 Boston Medical Group (Colombia)'),
(63618, 'https://ror.org/04c0eje39', 'en', 1, 'https://ror.org/04c0eje39 Regional Public Health Care Institution "City Hospital No. 5, Barnaul" ŠšŃ€Š°ŠµŠ²Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Ā«Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–5, г. Š‘Š°Ń€Š½Š°ŃƒŠ»Ā»'),
(63619, 'https://ror.org/04c0z9s56', 'nl', 1, 'https://ror.org/04c0z9s56 GGZ Delfland'),
(63620, 'https://ror.org/04c1ham66', 'bs', 1, 'https://ror.org/04c1ham66 Univerzitet Za Poslovne Studije'),
(63621, 'https://ror.org/04c1q3311', 'no_lang_code', 1, 'https://ror.org/04c1q3311 NanoSynth Materials and Sensors (United States)'),
(63622, 'https://ror.org/04c275n83', 'en', 1, 'https://ror.org/04c275n83 Center for Accessible Technology'),
(63623, 'https://ror.org/04c2qqq25', 'en', 1, 'https://ror.org/04c2qqq25 St. Vincent Carmel Hospital'),
(63624, 'https://ror.org/04c4nbz33', 'nl', 1, 'https://ror.org/04c4nbz33 AmbulanceZorg Rotterdam-Rijnmond'),
(63625, 'https://ror.org/04c5d0e65', 'no_lang_code', 1, 'https://ror.org/04c5d0e65 Minerva Neurosciences (United States)'),
(63626, 'https://ror.org/04c6zpp14', 'en', 1, 'https://ror.org/04c6zpp14 InSites'),
(63627, 'https://ror.org/04c8g2w89', 'en', 1, 'https://ror.org/04c8g2w89 Mulago Foundation'),
(63628, 'https://ror.org/04c9g9234', 'es', 1, 'https://ror.org/04c9g9234 Instituto de Investigación Biomédica de A Coruña'),
(63629, 'https://ror.org/04cakc678', 'en', 1, 'https://ror.org/04cakc678 Healthcare Association of New York State'),
(63630, 'https://ror.org/04cas2957', 'no_lang_code', 1, 'https://ror.org/04cas2957 Non-Surgical Orthopaedics (United States)'),
(63631, 'https://ror.org/04caxkq63', 'en', 1, 'https://ror.org/04caxkq63 LCC Medical Research Institute'),
(63632, 'https://ror.org/04cba8s74', 'en', 1, 'https://ror.org/04cba8s74 Competence Network Multiple Sclerosis Kompetenznetz Multiple Sklerose'),
(63633, 'https://ror.org/04cd54f48', 'en', 1, 'https://ror.org/04cd54f48 Landon Pediatric Foundation'),
(63634, 'https://ror.org/04cd6tt69', 'pt', 1, 'https://ror.org/04cd6tt69 Hospital Estadual Centra'),
(63635, 'https://ror.org/04cd7aa36', 'no_lang_code', 1, 'https://ror.org/04cd7aa36 Farmaceutici Damor (Italy)'),
(63636, 'https://ror.org/04cghs078', 'en', 1, 'https://ror.org/04cghs078 Catalina Research Institute'),
(63637, 'https://ror.org/04chanh47', 'nl', 1, 'https://ror.org/04chanh47 ZorgKeuzeLab'),
(63638, 'https://ror.org/04cj95h53', 'no_lang_code', 1, 'https://ror.org/04cj95h53 Global Medical Institutes (United States)'),
(63639, 'https://ror.org/04cjq4e24', 'nl', 1, 'https://ror.org/04cjq4e24 Nederlandse Vereniging voor Reumatologie'),
(63640, 'https://ror.org/04ckqjc98', 'en', 1, 'https://ror.org/04ckqjc98 South Bend Medical Foundation'),
(63641, 'https://ror.org/04cm10r73', 'en', 1, 'https://ror.org/04cm10r73 Jon J van Rood Centre for Clinical Transfusion Research'),
(63642, 'https://ror.org/04cm8jr24', 'de', 1, 'https://ror.org/04cm8jr24 Klinikum Würzburg Mitte'),
(63643, 'https://ror.org/04cmvex31', 'ru', 1, 'https://ror.org/04cmvex31 Arkhangel''skiy Klinicheskiy Onkologicheskiy Dispanser, ŠŃ€Ń…Š°Š½Š³ŠµŠ»ŃŒŃŠŗŠøŠ¹ клинический онкологический Гиспансер'),
(63644, 'https://ror.org/04crn0128', 'no_lang_code', 1, 'https://ror.org/04crn0128 Agrokor (Croatia)'),
(63645, 'https://ror.org/04crv0223', 'en', 1, 'https://ror.org/04crv0223 Clear Lake Medical Foundation'),
(63646, 'https://ror.org/04ctmwv54', 'nl', 1, 'https://ror.org/04ctmwv54 MeanderGroep Zuid-Limburg'),
(63647, 'https://ror.org/04cvz3k71', 'en', 1, 'https://ror.org/04cvz3k71 Kona Community Hospital'),
(63648, 'https://ror.org/04cwh4511', 'no_lang_code', 1, 'https://ror.org/04cwh4511 KPMG (Australia)'),
(63649, 'https://ror.org/04cyd9q39', 'en', 1, 'https://ror.org/04cyd9q39 Universities and Colleges Admissions Service'),
(63650, 'https://ror.org/04cznqd05', 'en', 1, 'https://ror.org/04cznqd05 O’Donnell Associates'),
(63651, 'https://ror.org/04d2erj26', 'de', 1, 'https://ror.org/04d2erj26 Buchinger Wilhelmi'),
(63652, 'https://ror.org/04d3z1s95', 'no_lang_code', 1, 'https://ror.org/04d3z1s95 Dr. Mattiola & Partner AG (Switzerland)'),
(63653, 'https://ror.org/04d42nn29', 'no_lang_code', 1, 'https://ror.org/04d42nn29 DWA (Netherlands)'),
(63654, 'https://ror.org/04d52p729', 'en', 1, 'https://ror.org/04d52p729 Indiana Biosciences Research Institute'),
(63655, 'https://ror.org/04d59va55', 'nl', 1, 'https://ror.org/04d59va55 De Hoogstraat Revalidatie'),
(63656, 'https://ror.org/04d7j1v83', 'no_lang_code', 1, 'https://ror.org/04d7j1v83 CCI Reprographics (United States)'),
(63657, 'https://ror.org/04d9c7c50', 'en', 1, 'https://ror.org/04d9c7c50 Society Hill Reproductive Medicine'),
(63658, 'https://ror.org/04dammg70', 'en', 1, 'https://ror.org/04dammg70 Penza State Technological University'),
(63659, 'https://ror.org/04dbahf95', 'de', 1, 'https://ror.org/04dbahf95 Klinik und Poliklinik für Mund-, Kiefer- und Gesichtschirurgie'),
(63660, 'https://ror.org/04ded4967', 'en', 1, 'https://ror.org/04ded4967 British Tinnitus Association'),
(63661, 'https://ror.org/04devjv87', 'en', 1, 'https://ror.org/04devjv87 International Eosinophil Society'),
(63662, 'https://ror.org/04dg4zc02', 'de', 1, 'https://ror.org/04dg4zc02 Gemeinschaftskrankenhaus Herdecke'),
(63663, 'https://ror.org/04dg86p75', 'no_lang_code', 1, 'https://ror.org/04dg86p75 Isdin (Spain)'),
(63664, 'https://ror.org/04dgj3g22', 'en', 1, 'https://ror.org/04dgj3g22 Coatesville Veterans Affairs Medical Center'),
(63665, 'https://ror.org/04dh3fc08', 'en', 1, 'https://ror.org/04dh3fc08 Office of the Secretary of Health and Human Services'),
(63666, 'https://ror.org/04dhrzj96', 'de', 1, 'https://ror.org/04dhrzj96 Aturo'),
(63667, 'https://ror.org/04dk78q10', 'no_lang_code', 1, 'https://ror.org/04dk78q10 BioVinc (United States)'),
(63668, 'https://ror.org/04dm9th67', 'nl', 1, 'https://ror.org/04dm9th67 Nederlandse Vereniging voor Heelkunde'),
(63669, 'https://ror.org/04dmckt32', 'es', 1, 'https://ror.org/04dmckt32 Instituto Amazónico de Investigaciones Científicas, Instituto Sinchi'),
(63670, 'https://ror.org/04dn07m96', 'es', 1, 'https://ror.org/04dn07m96 Instituto Nacional de las Mujeres National Institute of Women'),
(63671, 'https://ror.org/04dpmwx08', 'en', 1, 'https://ror.org/04dpmwx08 Compassionate Cancer Care'),
(63672, 'https://ror.org/04dqgsa85', 'en', 1, 'https://ror.org/04dqgsa85 CS Diagnostics'),
(63673, 'https://ror.org/04dr2j587', 'es', 1, 'https://ror.org/04dr2j587 Hospital Dr. Gustavo Fricke'),
(63674, 'https://ror.org/04drdn069', 'fr', 1, 'https://ror.org/04drdn069 Presses Universitaires de France'),
(63675, 'https://ror.org/04dst9624', 'en', 1, 'https://ror.org/04dst9624 The PANSS Institute'),
(63676, 'https://ror.org/04dtt7385', 'en', 1, 'https://ror.org/04dtt7385 The Casco Bay Assyriological Institute'),
(63677, 'https://ror.org/04dv35865', 'en', 1, 'https://ror.org/04dv35865 San Antonio Endovascular & Heart Institute'),
(63678, 'https://ror.org/04dz2w781', 'no_lang_code', 1, 'https://ror.org/04dz2w781 Nemo Healthcare (Netherlands)'),
(63679, 'https://ror.org/04dz3w425', 'en', 1, 'https://ror.org/04dz3w425 Inala Community Health Centre'),
(63680, 'https://ror.org/04e10fw49', 'en', 1, 'https://ror.org/04e10fw49 Parkview Hospital Randallia'),
(63681, 'https://ror.org/04e40d584', 'en', 1, 'https://ror.org/04e40d584 Taipei Fubon Bank Philanthropy Foundation å°åŒ—åÆŒé‚¦éŠ€č”Œå…¬ē›Šę…ˆå–„åŸŗé‡‘ęœƒ'),
(63682, 'https://ror.org/04e456155', 'en', 1, 'https://ror.org/04e456155 Cardiovascular Research Associates'),
(63683, 'https://ror.org/04e53cd15', 'nl', 1, 'https://ror.org/04e53cd15 Nederlandse Obesitas Kliniek'),
(63684, 'https://ror.org/04e5xac72', 'no_lang_code', 1, 'https://ror.org/04e5xac72 Clasado BioSciences (United Kingdom)'),
(63685, 'https://ror.org/04e69hx24', 'en', 1, 'https://ror.org/04e69hx24 Bristol Regional Medical Center'),
(63686, 'https://ror.org/04e6xj170', 'en', 1, 'https://ror.org/04e6xj170 Centre For Digestive Diseases'),
(63687, 'https://ror.org/04e72pa13', 'en', 1, 'https://ror.org/04e72pa13 The Radiosurgery Society'),
(63688, 'https://ror.org/04e796m94', 'fr', 1, 'https://ror.org/04e796m94 SociƩtƩ Francophone Posture Equilibre Locomotion'),
(63689, 'https://ror.org/04ed27a31', 'en', 1, 'https://ror.org/04ed27a31 New England Retina Associates'),
(63690, 'https://ror.org/04ee1hr21', 'en', 1, 'https://ror.org/04ee1hr21 Ministry of Education and Skills Development'),
(63691, 'https://ror.org/04ej3kx94', 'en', 1, 'https://ror.org/04ej3kx94 Bach & Godofsky Infectious Diseases'),
(63692, 'https://ror.org/04ejqwk94', 'en', 1, 'https://ror.org/04ejqwk94 Ocean Research & Conservation Association'),
(63693, 'https://ror.org/04eme8h94', 'en', 1, 'https://ror.org/04eme8h94 Los Angeles Clinical Trials'),
(63694, 'https://ror.org/04en0yf19', 'id', 1, 'https://ror.org/04en0yf19 Rumah Sakit Umum Pusat Sanglah Denpasar'),
(63695, 'https://ror.org/04en82c62', 'en', 1, 'https://ror.org/04en82c62 American Tai Chi and Qigong Association'),
(63696, 'https://ror.org/04enecq37', 'de', 1, 'https://ror.org/04enecq37 Dental Clinic of Bochum Zahnklinik Bochum'),
(63697, 'https://ror.org/04eqa0k17', 'de', 1, 'https://ror.org/04eqa0k17 KassenƤrztliche Vereinigung Sachsen-Anhalt'),
(63698, 'https://ror.org/04eqf2x52', 'no_lang_code', 1, 'https://ror.org/04eqf2x52 Heelkunde Friesland (Netherlands)'),
(63699, 'https://ror.org/04erbf175', 'en', 1, 'https://ror.org/04erbf175 Russian Respiratory Society ŠœŠµŠ¶Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š¾Š±Ń‰ŠµŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Российское Респираторное ŠžŠ±Ń‰ŠµŃŃ‚во'),
(63700, 'https://ror.org/04erj2z02', 'en', 1, 'https://ror.org/04erj2z02 Virpiniemen liikuntaopisto Virpiniemi Sports Institute'),
(63701, 'https://ror.org/04erjjt33', 'en', 1, 'https://ror.org/04erjjt33 TrĘ°į»ng ĐẔi hį»c Lao Động - XĆ£ Hį»™i University of Labor and Social Affairs'),
(63702, 'https://ror.org/04evbhe06', 'en', 1, 'https://ror.org/04evbhe06 Arkhangelsk Children''s Clinical Hospital named P.G.Vyzhletsova ŠŃ€Ń…Š°Š½Š³ŠµŠ»ŃŒŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° им. П.Š“. Выжцовой'),
(63703, 'https://ror.org/04evm3p62', 'en', 1, 'https://ror.org/04evm3p62 Nanjing Product Quality Supervision and Inspection Institute'),
(63704, 'https://ror.org/04ew55674', 'en', 1, 'https://ror.org/04ew55674 Heart & Vascular Outcomes Research Institute'),
(63705, 'https://ror.org/04ewmmy12', 'en', 1, 'https://ror.org/04ewmmy12 The Challenging Behaviour Foundation'),
(63706, 'https://ror.org/04ex7c508', 'en', 1, 'https://ror.org/04ex7c508 Oshkosh Public Museum'),
(63707, 'https://ror.org/04eynfz47', 'en', 1, 'https://ror.org/04eynfz47 Collier Neurologic Specialists'),
(63708, 'https://ror.org/04f17kc16', 'it', 1, 'https://ror.org/04f17kc16 Ospedale S.Gennaro'),
(63709, 'https://ror.org/04f2wf871', 'de', 1, 'https://ror.org/04f2wf871 Centrum für Integrierte Onkologie'),
(63710, 'https://ror.org/04f2wpy12', 'no', 1, 'https://ror.org/04f2wpy12 Norsk CĆøliakiforening'),
(63711, 'https://ror.org/04f3x2j17', 'no_lang_code', 1, 'https://ror.org/04f3x2j17 Sofar (Italy)'),
(63712, 'https://ror.org/04f6ttz68', 'no_lang_code', 1, 'https://ror.org/04f6ttz68 GeneTAG Technology (United States)'),
(63713, 'https://ror.org/04f6tvf20', 'no_lang_code', 1, 'https://ror.org/04f6tvf20 PSI CRO (United Kingdom)'),
(63714, 'https://ror.org/04fap3q60', 'en', 1, 'https://ror.org/04fap3q60 Pacific Rim Electrophysiology Research Institute'),
(63715, 'https://ror.org/04fasw929', 'no_lang_code', 1, 'https://ror.org/04fasw929 MB Clinical Research and Consulting (United States)'),
(63716, 'https://ror.org/04fb0r664', 'en', 1, 'https://ror.org/04fb0r664 National Foundation for the Elderly Stichting Nationaal Ouderenfonds'),
(63717, 'https://ror.org/04fbjgg20', 'tr', 1, 'https://ror.org/04fbjgg20 Higher Specialization University Yüksek İhtisas Üniversitesi'),
(63718, 'https://ror.org/04fdxtz57', 'no_lang_code', 1, 'https://ror.org/04fdxtz57 Far Eastern Shipping (United States)'),
(63719, 'https://ror.org/04ffwr418', 'en', 1, 'https://ror.org/04ffwr418 City Clinical Hospital No15 named. O. M. Filatova Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–15 n.a O.M. Филатов'),
(63720, 'https://ror.org/04fgkvt12', 'no_lang_code', 1, 'https://ror.org/04fgkvt12 ScienceMedia (United States)'),
(63721, 'https://ror.org/04fh1gw55', 'no_lang_code', 1, 'https://ror.org/04fh1gw55 Boehringer Ingelheim (Netherlands)'),
(63722, 'https://ror.org/04fj57991', 'en', 1, 'https://ror.org/04fj57991 Westside Medical Associates of Los Angeles'),
(63723, 'https://ror.org/04fn5zr38', 'en', 1, 'https://ror.org/04fn5zr38 American SIDS Institute'),
(63724, 'https://ror.org/04fpkm116', 'no_lang_code', 1, 'https://ror.org/04fpkm116 Enanta Pharmaceuticals (United States)'),
(63725, 'https://ror.org/04fqe7a64', 'no_lang_code', 1, 'https://ror.org/04fqe7a64 OrganOx (United Kingdom)'),
(63726, 'https://ror.org/04fr6kc62', 'de', 1, 'https://ror.org/04fr6kc62 Schƶn Klinik Bad Aibling'),
(63727, 'https://ror.org/04ft4my53', 'no_lang_code', 1, 'https://ror.org/04ft4my53 Filament Games (United States)'),
(63728, 'https://ror.org/04ftscg80', 'pt', 1, 'https://ror.org/04ftscg80 Instituto Paulista de Estudos e Pesquisas em Oftalmologia'),
(63729, 'https://ror.org/04fx78583', 'en', 1, 'https://ror.org/04fx78583 CalNeuro Research Group'),
(63730, 'https://ror.org/04fxbva21', 'en', 1, 'https://ror.org/04fxbva21 Marine Corps – Law Enforcement Foundation'),
(63731, 'https://ror.org/04g1f3s05', 'nl', 1, 'https://ror.org/04g1f3s05 Gemeente Leiden'),
(63732, 'https://ror.org/04g1gk322', 'no_lang_code', 1, 'https://ror.org/04g1gk322 Pharmacosmos (Denmark)'),
(63733, 'https://ror.org/04g22a016', 'en', 1, 'https://ror.org/04g22a016 Vision Research ROPARD Foundation'),
(63734, 'https://ror.org/04g5zwy64', 'de', 1, 'https://ror.org/04g5zwy64 Clinic for Sleep Medicine Klinik für Schlafmedizin'),
(63735, 'https://ror.org/04g6dp887', 'en', 1, 'https://ror.org/04g6dp887 NeuroCognitive Institute'),
(63736, 'https://ror.org/04g9ryv67', 'en', 1, 'https://ror.org/04g9ryv67 Brooklyn Chest Hospital'),
(63737, 'https://ror.org/04g9szr12', 'nl', 1, 'https://ror.org/04g9szr12 Marti-Keuning Eckhardt Stichting'),
(63738, 'https://ror.org/04gbh9b75', 'no_lang_code', 1, 'https://ror.org/04gbh9b75 General Electric (Spain)'),
(63739, 'https://ror.org/04gbkes05', 'en', 1, 'https://ror.org/04gbkes05 National Retina Institute'),
(63740, 'https://ror.org/04gbqr315', 'de', 1, 'https://ror.org/04gbqr315 Forschungsgesellschaft Atemwegerkrankungen'),
(63741, 'https://ror.org/04gc7k725', 'en', 1, 'https://ror.org/04gc7k725 Chesapeake Urology Associates'),
(63742, 'https://ror.org/04gca2h74', 'no_lang_code', 1, 'https://ror.org/04gca2h74 UCB Pharma (Netherlands)'),
(63743, 'https://ror.org/04gckzn88', 'no_lang_code', 1, 'https://ror.org/04gckzn88 PuraCath Medical (United States)'),
(63744, 'https://ror.org/04ge4r742', 'en', 1, 'https://ror.org/04ge4r742 Capio Research Foundation'),
(63745, 'https://ror.org/04gfyfa37', 'en', 1, 'https://ror.org/04gfyfa37 Boston Partners in Education'),
(63746, 'https://ror.org/04gg6jm72', 'en', 1, 'https://ror.org/04gg6jm72 European Center for Peace and Development'),
(63747, 'https://ror.org/04ggjpc96', 'nl', 1, 'https://ror.org/04ggjpc96 Reinier van Arkel'),
(63748, 'https://ror.org/04gj3vw69', 'de', 1, 'https://ror.org/04gj3vw69 Physiotherapie und Lauftherapie Zentrum'),
(63749, 'https://ror.org/04gk6ks26', 'nl', 1, 'https://ror.org/04gk6ks26 Mondriaan GGZ'),
(63750, 'https://ror.org/04gm2d409', 'no_lang_code', 1, 'https://ror.org/04gm2d409 Cellulose Sciences International (United States)'),
(63751, 'https://ror.org/04gnkpp77', 'en', 1, 'https://ror.org/04gnkpp77 Jingzhou Central Hospital č†å·žåø‚äø­åæƒåŒ»é™¢'),
(63752, 'https://ror.org/04gpc6733', 'it', 1, 'https://ror.org/04gpc6733 Ospedale Santa Maria Goretti'),
(63753, 'https://ror.org/04gpeah71', 'nl', 1, 'https://ror.org/04gpeah71 Zorggroep Kans'),
(63754, 'https://ror.org/04gpj3340', 'de', 1, 'https://ror.org/04gpj3340 Poliklinik für Zahnerhaltung und Parodontologie'),
(63755, 'https://ror.org/04gpmm421', 'en', 1, 'https://ror.org/04gpmm421 Invision Sally Jobe'),
(63756, 'https://ror.org/04gqr8882', 'en', 1, 'https://ror.org/04gqr8882 Oncology Hematology Care'),
(63757, 'https://ror.org/04gqrmc82', 'en', 1, 'https://ror.org/04gqrmc82 Australasian Gastro Intestinal Research Foundation'),
(63758, 'https://ror.org/04gsrxt60', 'en', 1, 'https://ror.org/04gsrxt60 J.C. Blair Memorial Hospital'),
(63759, 'https://ror.org/04gv1ap07', 'nl', 1, 'https://ror.org/04gv1ap07 Nederlandse Vereniging van Artsen voor Musculoskeletale Geneeskunde'),
(63760, 'https://ror.org/04gw1ym87', 'pt', 1, 'https://ror.org/04gw1ym87 Instituto do CƩrebro de Brasƭlia'),
(63761, 'https://ror.org/04gxk9y84', 'de', 1, 'https://ror.org/04gxk9y84 Kassenärztliche Vereinigung Baden-Württemberg'),
(63762, 'https://ror.org/04gzrzz80', 'en', 1, 'https://ror.org/04gzrzz80 Apex Heart Institute'),
(63763, 'https://ror.org/04h0t7y80', 'pt', 1, 'https://ror.org/04h0t7y80 Instituto de Implantologia'),
(63764, 'https://ror.org/04h15t444', 'en', 1, 'https://ror.org/04h15t444 Bay Area Discovery Museum'),
(63765, 'https://ror.org/04h30bj32', 'no_lang_code', 1, 'https://ror.org/04h30bj32 Boehringer Ingelheim (Portugal)'),
(63766, 'https://ror.org/04h35xj16', 'en', 1, 'https://ror.org/04h35xj16 Alaska Breast Care & Surgery'),
(63767, 'https://ror.org/04h3kb791', 'en', 1, 'https://ror.org/04h3kb791 Electrophysiology Research Foundation'),
(63768, 'https://ror.org/04h3x0y40', 'en', 1, 'https://ror.org/04h3x0y40 Geisinger Lewistown Hospital'),
(63769, 'https://ror.org/04h3xw934', 'en', 1, 'https://ror.org/04h3xw934 Western Sydney Community Forum'),
(63770, 'https://ror.org/04h407e94', 'en', 1, 'https://ror.org/04h407e94 Chest Wall Injury Society'),
(63771, 'https://ror.org/04h616z85', 'de', 1, 'https://ror.org/04h616z85 LVR-Klinik Bonn'),
(63772, 'https://ror.org/04h6ep125', 'no_lang_code', 1, 'https://ror.org/04h6ep125 Synairgen (United Kingdom)'),
(63773, 'https://ror.org/04h6ghc51', 'en', 1, 'https://ror.org/04h6ghc51 International WAGR Syndrome Association'),
(63774, 'https://ror.org/04h6zzz03', 'no_lang_code', 1, 'https://ror.org/04h6zzz03 General Electric (Finland)'),
(63775, 'https://ror.org/04h783r90', 'en', 1, 'https://ror.org/04h783r90 Lung Center of the Philippines'),
(63776, 'https://ror.org/04h8ph678', 'en', 1, 'https://ror.org/04h8ph678 Cancer Care of Western North Carolina'),
(63777, 'https://ror.org/04h92e089', 'no_lang_code', 1, 'https://ror.org/04h92e089 Sintact Medical Systems (United States)'),
(63778, 'https://ror.org/04h9drp94', 'no_lang_code', 1, 'https://ror.org/04h9drp94 Leo Pharma (Germany)'),
(63779, 'https://ror.org/04hb5tw27', 'no_lang_code', 1, 'https://ror.org/04hb5tw27 Jafco (Japan)'),
(63780, 'https://ror.org/04hc0rs25', 'en', 1, 'https://ror.org/04hc0rs25 Providence Regional Cancer Partnership'),
(63781, 'https://ror.org/04hc4vy44', 'en', 1, 'https://ror.org/04hc4vy44 Los Angeles Neurological Institute'),
(63782, 'https://ror.org/04hd04g86', 'en', 1, 'https://ror.org/04hd04g86 Agaplesion Markus Hospital Agaplesion Markus Krankenhaus'),
(63783, 'https://ror.org/04he90472', 'en', 1, 'https://ror.org/04he90472 American Association for Cancer Education'),
(63784, 'https://ror.org/04hfec795', 'de', 1, 'https://ror.org/04hfec795 Ɩsterreichische Gesellschaft für Parodontologie'),
(63785, 'https://ror.org/04hfn2h85', 'en', 1, 'https://ror.org/04hfn2h85 National Health Council'),
(63786, 'https://ror.org/04hg8qq17', 'en', 1, 'https://ror.org/04hg8qq17 Royal Incorporation of Architects in Scotland'),
(63787, 'https://ror.org/04hgg9s59', 'es', 1, 'https://ror.org/04hgg9s59 Fundacion Instituto de Reumatologia Fernando Chalem'),
(63788, 'https://ror.org/04hgryz27', 'en', 1, 'https://ror.org/04hgryz27 American Professional Society of ADHD and Related Disorders'),
(63789, 'https://ror.org/04hjayk14', 'no_lang_code', 1, 'https://ror.org/04hjayk14 Terumo (Germany)'),
(63790, 'https://ror.org/04hk0mm26', 'en', 1, 'https://ror.org/04hk0mm26 Phoenix Neurological Associates'),
(63791, 'https://ror.org/04hprbe92', 'en', 1, 'https://ror.org/04hprbe92 The Pelvic Floor Institute'),
(63792, 'https://ror.org/04hqa8c89', 'en', 1, 'https://ror.org/04hqa8c89 Gansu Qilian Mountains Water Conservation Forest Research Institute ē„čæžå±±ę°“ęŗę¶µå…»ęž—ē ”ē©¶é™¢'),
(63793, 'https://ror.org/04hqw2h62', 'en', 1, 'https://ror.org/04hqw2h62 Kazakhstan Association on Sexual and Reproductive Health ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ°Ń Š°ŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ по половому Šø Ń€ŠµŠæŃ€Š¾Š“ŃƒŠŗŃ‚ŠøŠ²Š½Š¾Š¼Ńƒ Š·Š“Š¾Ń€Š¾Š²ŃŒŃŽ'),
(63794, 'https://ror.org/04hrwvd56', 'no_lang_code', 1, 'https://ror.org/04hrwvd56 Moximed (United States)'),
(63795, 'https://ror.org/04htftw90', 'no_lang_code', 1, 'https://ror.org/04htftw90 Pluryn'),
(63796, 'https://ror.org/04j032963', 'en', 1, 'https://ror.org/04j032963 New York School of Regional Anesthesia'),
(63797, 'https://ror.org/04j2nkn49', 'no_lang_code', 1, 'https://ror.org/04j2nkn49 Educational Solutions (United States)'),
(63798, 'https://ror.org/04j2vda74', 'en', 1, 'https://ror.org/04j2vda74 DuPage Children''s Museum'),
(63799, 'https://ror.org/04j5wtv36', 'en', 1, 'https://ror.org/04j5wtv36 Centre commun de recherche Directorate-General Joint Research Centre Gemeinsame Forschungsstelle'),
(63800, 'https://ror.org/04j7z5d67', 'no_lang_code', 1, 'https://ror.org/04j7z5d67 Aerospace Testing (United States)'),
(63801, 'https://ror.org/04ja13179', 'no_lang_code', 1, 'https://ror.org/04ja13179 AQLANE Medical (Netherlands)'),
(63802, 'https://ror.org/04janzm11', 'de', 1, 'https://ror.org/04janzm11 Rotkreuzklinikum München'),
(63803, 'https://ror.org/04jbfxj71', 'no_lang_code', 1, 'https://ror.org/04jbfxj71 Kalwun (Australia)'),
(63804, 'https://ror.org/04jbh8n08', 'en', 1, 'https://ror.org/04jbh8n08 Detroit Area Agency on Aging'),
(63805, 'https://ror.org/04jcfwb48', 'en', 1, 'https://ror.org/04jcfwb48 Berman Center for Outcomes and Clinical Research'),
(63806, 'https://ror.org/04jddfp89', 'no_lang_code', 1, 'https://ror.org/04jddfp89 Vision2Health (Netherlands)'),
(63807, 'https://ror.org/04je70584', 'en', 1, 'https://ror.org/04je70584 Anhui Provincial Children''s Hospital å®‰å¾½ēœå„æē«„åŒ»é™¢'),
(63808, 'https://ror.org/04jey9359', 'no_lang_code', 1, 'https://ror.org/04jey9359 M4 Sciences (United States)'),
(63809, 'https://ror.org/04jf1d362', 'fr', 1, 'https://ror.org/04jf1d362 HÓpital Jean Jaurès'),
(63810, 'https://ror.org/04jfsvb44', 'nl', 1, 'https://ror.org/04jfsvb44 Star Medisch Diagnostisch Centrum'),
(63811, 'https://ror.org/04jgrem26', 'en', 1, 'https://ror.org/04jgrem26 OspidƩal MƔithreachais na hOllscoile, Luimneach University Maternity Hospital Limerick'),
(63812, 'https://ror.org/04jj1kk85', 'en', 1, 'https://ror.org/04jj1kk85 International Neuroethics Society'),
(63813, 'https://ror.org/04jm04j52', 'en', 1, 'https://ror.org/04jm04j52 Black Hills Regional Eye Institute'),
(63814, 'https://ror.org/04jntfm70', 'de', 1, 'https://ror.org/04jntfm70 Deutsche Lepra- und Tuberkulosehilfe'),
(63815, 'https://ror.org/04jqt3k72', 'en', 1, 'https://ror.org/04jqt3k72 Minia University Hospital ŲÆŁ„ŁŠŁ„ الصحة Ų§Ł„Ł…ŲµŲ±ŁŠ'),
(63816, 'https://ror.org/04jqvgn14', 'no_lang_code', 1, 'https://ror.org/04jqvgn14 Rose Research Center (United States)'),
(63817, 'https://ror.org/04jszep51', 'no_lang_code', 1, 'https://ror.org/04jszep51 Clinuvel Pharmaceuticals (Australia)'),
(63818, 'https://ror.org/04jx2gq17', 'en', 1, 'https://ror.org/04jx2gq17 zyBooks'),
(63819, 'https://ror.org/04jx66z14', 'pt', 1, 'https://ror.org/04jx66z14 Fundação Edson Queiroz'),
(63820, 'https://ror.org/04jxcha86', 'nl', 1, 'https://ror.org/04jxcha86 Stichting Vooruit'),
(63821, 'https://ror.org/04jxvq020', 'en', 1, 'https://ror.org/04jxvq020 Nurse Maude Association'),
(63822, 'https://ror.org/04jzqr098', 'en', 1, 'https://ror.org/04jzqr098 Texas Institute for Hip & Knee Surgery'),
(63823, 'https://ror.org/04k175063', 'en', 1, 'https://ror.org/04k175063 Nona Research Foundation'),
(63824, 'https://ror.org/04k24ww57', 'en', 1, 'https://ror.org/04k24ww57 Capital Region Special Surgery'),
(63825, 'https://ror.org/04k3a2264', 'en', 1, 'https://ror.org/04k3a2264 Turkish Ophthalmological Association Türk Oftalmoloji Derneği'),
(63826, 'https://ror.org/04k3xq990', 'en', 1, 'https://ror.org/04k3xq990 Phoenixville Hospital'),
(63827, 'https://ror.org/04k4egd33', 'fr', 1, 'https://ror.org/04k4egd33 Association Keoogo'),
(63828, 'https://ror.org/04k5a4r11', 'en', 1, 'https://ror.org/04k5a4r11 Futurefish Foundation'),
(63829, 'https://ror.org/04kazdy71', 'en', 1, 'https://ror.org/04kazdy71 Shaanxi Provincial Hospital of Traditional Chinese Medicine'),
(63830, 'https://ror.org/04kb8af13', 'en', 1, 'https://ror.org/04kb8af13 Havana Research Institute'),
(63831, 'https://ror.org/04kcgyj43', 'en', 1, 'https://ror.org/04kcgyj43 The Microsoft Research - University of Trento Centre for Computational and Systems Biology'),
(63832, 'https://ror.org/04kej9b21', 'no_lang_code', 1, 'https://ror.org/04kej9b21 Ardeypharm (Germany)'),
(63833, 'https://ror.org/04kf58w92', 'en', 1, 'https://ror.org/04kf58w92 Autonomous Healthcare'),
(63834, 'https://ror.org/04khtec53', 'en', 1, 'https://ror.org/04khtec53 Paul Ruby Foundation for Parkinson’s Research'),
(63835, 'https://ror.org/04kn1yz10', 'de', 1, 'https://ror.org/04kn1yz10 Rosenpark Klinik'),
(63836, 'https://ror.org/04kqtxx50', 'en', 1, 'https://ror.org/04kqtxx50 Chang Hua Hospital č”›ē”Ÿē¦åˆ©éƒØå½°åŒ–é†«é™¢'),
(63837, 'https://ror.org/04kqymn96', 'en', 1, 'https://ror.org/04kqymn96 Wild Salmon Center'),
(63838, 'https://ror.org/04krek379', 'en', 1, 'https://ror.org/04krek379 Watching Over Mothers & Babies'),
(63839, 'https://ror.org/04kt7f841', 'de', 1, 'https://ror.org/04kt7f841 Berufsgenossenschaftliche Unfallklinik Frankfurt am Main'),
(63840, 'https://ror.org/04ktmrv21', 'en', 1, 'https://ror.org/04ktmrv21 Graham Boeckh Foundation'),
(63841, 'https://ror.org/04kvtp152', 'no_lang_code', 1, 'https://ror.org/04kvtp152 Danone (Germany)'),
(63842, 'https://ror.org/04kxpwr66', 'en', 1, 'https://ror.org/04kxpwr66 European Society for Diseases of the Esophagus'),
(63843, 'https://ror.org/04kyvt253', 'no_lang_code', 1, 'https://ror.org/04kyvt253 ZeroUI (United States)'),
(63844, 'https://ror.org/04kz28h20', 'no_lang_code', 1, 'https://ror.org/04kz28h20 Meril Life Sciences (India)'),
(63845, 'https://ror.org/04kzcc298', 'en', 1, 'https://ror.org/04kzcc298 Cognitive Medical Systems'),
(63846, 'https://ror.org/04m0x6q45', 'en', 1, 'https://ror.org/04m0x6q45 Republican Scientific and Practical Centre for Traumatology and Orthopedics'),
(63847, 'https://ror.org/04m17xs91', 'en', 1, 'https://ror.org/04m17xs91 National Center of Cardiology and Internal Medicine'),
(63848, 'https://ror.org/04m219c69', 'en', 1, 'https://ror.org/04m219c69 Medicina Specjalistyczne Centrum Diagnostyczno-Zabiegowe MEDICINA'),
(63849, 'https://ror.org/04m27xb90', 'en', 1, 'https://ror.org/04m27xb90 Jiangsu Provincial Quality Supervision and Inspection Institute'),
(63850, 'https://ror.org/04m55rk62', 'no_lang_code', 1, 'https://ror.org/04m55rk62 Archipel Zorggroep (Netherlands)'),
(63851, 'https://ror.org/04m718665', 'no_lang_code', 1, 'https://ror.org/04m718665 Collaborations Pharmaceuticals (United States)'),
(63852, 'https://ror.org/04m7qna91', 'en', 1, 'https://ror.org/04m7qna91 Sirindhorn National Medical Rehabilitation Institute ąøŖąø–ąø²ąøšąø±ąø™ąøŖąø“ąø£ąø“ąø™ąø˜ąø£ą¹€ąøžąø·ą¹ˆąø­ąøąø²ąø£ąøŸąø·ą¹‰ąø™ąøŸąø¹ąøŖąø”ąø£ąø£ąø–ąø ąø²ąøžąø—ąø²ąø‡ąøąø²ąø£ą¹ąøžąø—ąø¢ą¹Œą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(63853, 'https://ror.org/04m8g8w48', 'no_lang_code', 1, 'https://ror.org/04m8g8w48 Certe'),
(63854, 'https://ror.org/04mae1e30', 'de', 1, 'https://ror.org/04mae1e30 Deutsche WirbelsƤulengesellschaft'),
(63855, 'https://ror.org/04masrj05', 'en', 1, 'https://ror.org/04masrj05 Salina Regional Health Center'),
(63856, 'https://ror.org/04md5tc32', 'nl', 1, 'https://ror.org/04md5tc32 Entrea'),
(63857, 'https://ror.org/04mddwq63', 'en', 1, 'https://ror.org/04mddwq63 Susan L. Bader Foundation of Hope'),
(63858, 'https://ror.org/04mftqn06', 'no_lang_code', 1, 'https://ror.org/04mftqn06 Heimomed Heinze (Germany)'),
(63859, 'https://ror.org/04mg7be43', 'no_lang_code', 1, 'https://ror.org/04mg7be43 Guna (Italy)'),
(63860, 'https://ror.org/04mhcqm57', 'en', 1, 'https://ror.org/04mhcqm57 QMI Solutions'),
(63861, 'https://ror.org/04mj3zw98', 'de', 1, 'https://ror.org/04mj3zw98 Klinikum Fürth'),
(63862, 'https://ror.org/04mjm3795', 'en', 1, 'https://ror.org/04mjm3795 Jackson Medical Mall Thad Cochran Center'),
(63863, 'https://ror.org/04mjpp490', 'en', 1, 'https://ror.org/04mjpp490 Finnish Medicines Agency Fimea'),
(63864, 'https://ror.org/04mnk3a22', 'en', 1, 'https://ror.org/04mnk3a22 Lutheran SeniorLife'),
(63865, 'https://ror.org/04mp3v976', 'no_lang_code', 1, 'https://ror.org/04mp3v976 Zur Rose Pharma (Germany)'),
(63866, 'https://ror.org/04mpvkk30', 'no_lang_code', 1, 'https://ror.org/04mpvkk30 Sientra (United States)'),
(63867, 'https://ror.org/04mqvep70', 'en', 1, 'https://ror.org/04mqvep70 Orange County Department of Education'),
(63868, 'https://ror.org/04ms2sw50', 'nl', 1, 'https://ror.org/04ms2sw50 Dienst Gezondheid & Jeugd'),
(63869, 'https://ror.org/04mz17v36', 'en', 1, 'https://ror.org/04mz17v36 Texas Physical Therapy Association'),
(63870, 'https://ror.org/04n052q31', 'no_lang_code', 1, 'https://ror.org/04n052q31 Miha Bodytec (Germany)'),
(63871, 'https://ror.org/04n0rde95', 'de', 1, 'https://ror.org/04n0rde95 Segeberger Kliniken'),
(63872, 'https://ror.org/04n278m24', 'en', 1, 'https://ror.org/04n278m24 Hallym University Dongtan Sacred Heart Hospital'),
(63873, 'https://ror.org/04n43dm09', 'en', 1, 'https://ror.org/04n43dm09 Colorado Sleep Institute'),
(63874, 'https://ror.org/04n4wd093', 'en', 1, 'https://ror.org/04n4wd093 Institute for Respiratory Health'),
(63875, 'https://ror.org/04n79vf04', 'en', 1, 'https://ror.org/04n79vf04 Northeast Radiation Oncology Center'),
(63876, 'https://ror.org/04n7wm262', 'en', 1, 'https://ror.org/04n7wm262 Sickle Cell Disease Association of America'),
(63877, 'https://ror.org/04n800n16', 'en', 1, 'https://ror.org/04n800n16 South Pointe Hospital'),
(63878, 'https://ror.org/04n8nb568', 'da', 1, 'https://ror.org/04n8nb568 Universitetshospitalernes Center for Sundhedsfaglig Forskning'),
(63879, 'https://ror.org/04n8xcj92', 'en', 1, 'https://ror.org/04n8xcj92 Alabama School of Fine Arts'),
(63880, 'https://ror.org/04n8xnv74', 'pt', 1, 'https://ror.org/04n8xnv74 Sociedade Brasileira de Oncologia ClĆ­nica'),
(63881, 'https://ror.org/04n9aye53', 'en', 1, 'https://ror.org/04n9aye53 Bundesverwaltungsamt FedĀ­erĀ­al OfĀ­fice of AdĀ­minĀ­isĀ­traĀ­tion'),
(63882, 'https://ror.org/04nfn2y71', 'en', 1, 'https://ror.org/04nfn2y71 Ferry County Memorial Hospital'),
(63883, 'https://ror.org/04ngqwc75', 'en', 1, 'https://ror.org/04ngqwc75 Hilton Pond Center for Piedmont Natural History'),
(63884, 'https://ror.org/04ngsnt90', 'en', 1, 'https://ror.org/04ngsnt90 The Baum Foundation'),
(63885, 'https://ror.org/04ngt6a58', 'no_lang_code', 1, 'https://ror.org/04ngt6a58 Institute for Skin Research (Israel)'),
(63886, 'https://ror.org/04njkp570', 'no_lang_code', 1, 'https://ror.org/04njkp570 Rahnuma'),
(63887, 'https://ror.org/04njrx155', 'en', 1, 'https://ror.org/04njrx155 ELZA Institute'),
(63888, 'https://ror.org/04nkwzq76', 'en', 1, 'https://ror.org/04nkwzq76 Anfomed Society for Applied Research in Medicine'),
(63889, 'https://ror.org/04nmnyc35', 'en', 1, 'https://ror.org/04nmnyc35 Carolina Performance'),
(63890, 'https://ror.org/04nqf3887', 'de', 1, 'https://ror.org/04nqf3887 Schön Klinik Nürnberg Fürth'),
(63891, 'https://ror.org/04nqrq322', 'en', 1, 'https://ror.org/04nqrq322 Shenzhen Entry-Exit Inspection and Quarantine Bureau'),
(63892, 'https://ror.org/04nv6s061', 'en', 1, 'https://ror.org/04nv6s061 Canadian Heart Research Centre'),
(63893, 'https://ror.org/04nyjea81', 'en', 1, 'https://ror.org/04nyjea81 Capital Health'),
(63894, 'https://ror.org/04nz0rp18', 'en', 1, 'https://ror.org/04nz0rp18 Riverton Hospital'),
(63895, 'https://ror.org/04p16rp27', 'no_lang_code', 1, 'https://ror.org/04p16rp27 Slow Control (France)'),
(63896, 'https://ror.org/04p31sb09', 'no_lang_code', 1, 'https://ror.org/04p31sb09 Myovant Sciences (United States)'),
(63897, 'https://ror.org/04p3kfc87', 'no_lang_code', 1, 'https://ror.org/04p3kfc87 ClinAssess (Germany)'),
(63898, 'https://ror.org/04p3m1723', 'en', 1, 'https://ror.org/04p3m1723 MultiCare Auburn Medical Center'),
(63899, 'https://ror.org/04p56b975', 'no_lang_code', 1, 'https://ror.org/04p56b975 Medimate (Netherlands)'),
(63900, 'https://ror.org/04p7je888', 'en', 1, 'https://ror.org/04p7je888 Alliance Integrative Medicine'),
(63901, 'https://ror.org/04p7qvm31', 'en', 1, 'https://ror.org/04p7qvm31 Ministry of Health'),
(63902, 'https://ror.org/04p94z953', 'de', 1, 'https://ror.org/04p94z953 Klinikum Rheine'),
(63903, 'https://ror.org/04p9df934', 'en', 1, 'https://ror.org/04p9df934 Winnicott Foundation'),
(63904, 'https://ror.org/04p9njy36', 'fr', 1, 'https://ror.org/04p9njy36 Association FranƧaise pour le DĆ©pistage et la PrĆ©vention des Handicaps de l’Enfant'),
(63905, 'https://ror.org/04pexwy87', 'it', 1, 'https://ror.org/04pexwy87 Consorzio Interuniversitario Nazionale EnSiEL, Consorzio Interuniversitario Nazionale per Energia e Sistemi Elettrici'),
(63906, 'https://ror.org/04pfbqx48', 'en', 1, 'https://ror.org/04pfbqx48 South Health Campus'),
(63907, 'https://ror.org/04pfm8b84', 'en', 1, 'https://ror.org/04pfm8b84 Acadia Hospital'),
(63908, 'https://ror.org/04pgck314', 'en', 1, 'https://ror.org/04pgck314 Mount Carmel St. Ann''s'),
(63909, 'https://ror.org/04pgw5133', 'en', 1, 'https://ror.org/04pgw5133 Charlotte Hungerford Hospital'),
(63910, 'https://ror.org/04ph6g561', 'no_lang_code', 1, 'https://ror.org/04ph6g561 Brocacef Groep (Netherlands)'),
(63911, 'https://ror.org/04phw6a61', 'nl', 1, 'https://ror.org/04phw6a61 de Posten'),
(63912, 'https://ror.org/04phz6672', 'en', 1, 'https://ror.org/04phz6672 Old Colorado City Historical Society'),
(63913, 'https://ror.org/04pj7f452', 'en', 1, 'https://ror.org/04pj7f452 Chirayu Medical College & Hospital'),
(63914, 'https://ror.org/04pjs3n80', 'en', 1, 'https://ror.org/04pjs3n80 Cyclomed medical services & consulting'),
(63915, 'https://ror.org/04pk7nd85', 'en', 1, 'https://ror.org/04pk7nd85 Providence Community Health Centers'),
(63916, 'https://ror.org/04pkg4a74', 'en', 1, 'https://ror.org/04pkg4a74 Ludwig Boltzmann Cluster Arthritis and Rehabilitation'),
(63917, 'https://ror.org/04pmb3j40', 'en', 1, 'https://ror.org/04pmb3j40 Hong Kong Lung Foundation'),
(63918, 'https://ror.org/04pmj8905', 'no_lang_code', 1, 'https://ror.org/04pmj8905 CM Hospital'),
(63919, 'https://ror.org/04pmrdd93', 'no_lang_code', 1, 'https://ror.org/04pmrdd93 ATP Clinical Research (United States)'),
(63920, 'https://ror.org/04pnmxh23', 'en', 1, 'https://ror.org/04pnmxh23 Public Health Research Institute Of India'),
(63921, 'https://ror.org/04pp96p75', 'no_lang_code', 1, 'https://ror.org/04pp96p75 MediWound (Israel)'),
(63922, 'https://ror.org/04ppky291', 'en', 1, 'https://ror.org/04ppky291 Advanced Medical Research Institute'),
(63923, 'https://ror.org/04ppvf629', 'no_lang_code', 1, 'https://ror.org/04ppvf629 Weleda (Switzerland)'),
(63924, 'https://ror.org/04prh3p48', 'en', 1, 'https://ror.org/04prh3p48 Full Plate Living'),
(63925, 'https://ror.org/04ps8kg42', 'en', 1, 'https://ror.org/04ps8kg42 Central and North West Queensland Medicare Local'),
(63926, 'https://ror.org/04pse2556', 'de', 1, 'https://ror.org/04pse2556 Klinik und Poliklinik für Kinder- und Jugendpsychiatrie'),
(63927, 'https://ror.org/04psvb108', 'de', 1, 'https://ror.org/04psvb108 Elbe Kliniken Stade-Buxtehude'),
(63928, 'https://ror.org/04pxn5h75', 'en', 1, 'https://ror.org/04pxn5h75 Arab Foundation For Freedoms And Equality'),
(63929, 'https://ror.org/04py26v74', 'en', 1, 'https://ror.org/04py26v74 Korean Society of Lipidology and Atherosclerosis ķ•œźµ­ģ§€ģ§ˆĀ·ė™ė§„ź²½ķ™”ķ•™ķšŒ'),
(63930, 'https://ror.org/04pz1vx14', 'en', 1, 'https://ror.org/04pz1vx14 Coastal Marine Biolabs'),
(63931, 'https://ror.org/04q14s497', 'en', 1, 'https://ror.org/04q14s497 Peregrine Eye and Laser Institute'),
(63932, 'https://ror.org/04q1tq423', 'en', 1, 'https://ror.org/04q1tq423 The Sandra A. Daugherty Foundation'),
(63933, 'https://ror.org/04q2cc503', 'en', 1, 'https://ror.org/04q2cc503 Network of the Universities from the Capitals of Europe RƩseau des universitƩs des capitales de l''Europe'),
(63934, 'https://ror.org/04q33ey84', 'fr', 1, 'https://ror.org/04q33ey84 Centre Hospitalier Charles Perrens'),
(63935, 'https://ror.org/04q3h7t52', 'nl', 1, 'https://ror.org/04q3h7t52 Stichting Nationaal Fonds Het Gehandicapte Kind'),
(63936, 'https://ror.org/04q43a127', 'no_lang_code', 1, 'https://ror.org/04q43a127 IPS Research (United States)'),
(63937, 'https://ror.org/04q550429', 'de', 1, 'https://ror.org/04q550429 Sozialversicherung für Landwirtschaft, Forsten und Gartenbau'),
(63938, 'https://ror.org/04q5vh665', 'no_lang_code', 1, 'https://ror.org/04q5vh665 Novindiet Clinic'),
(63939, 'https://ror.org/04q7gws66', 'en', 1, 'https://ror.org/04q7gws66 Natural Philosophy Institute'),
(63940, 'https://ror.org/04q81mh44', 'no_lang_code', 1, 'https://ror.org/04q81mh44 Piramal (United Kingdom)'),
(63941, 'https://ror.org/04qb91x19', 'en', 1, 'https://ror.org/04qb91x19 Latin School of Chicago'),
(63942, 'https://ror.org/04qc37m11', 'no_lang_code', 1, 'https://ror.org/04qc37m11 TeamAlert'),
(63943, 'https://ror.org/04qczj105', 'en', 1, 'https://ror.org/04qczj105 American Association of Sensory Electrodiagnostic Medicine'),
(63944, 'https://ror.org/04qd1fg21', 'en', 1, 'https://ror.org/04qd1fg21 Springfield Clinic'),
(63945, 'https://ror.org/04qfvk625', 'en', 1, 'https://ror.org/04qfvk625 William P. Clements Jr. University Hospital'),
(63946, 'https://ror.org/04qh1sk44', 'en', 1, 'https://ror.org/04qh1sk44 Stoke Mandeville Spinal Research'),
(63947, 'https://ror.org/04qjgaa08', 'en', 1, 'https://ror.org/04qjgaa08 Foundation Children with Spinal Muscular Atrophy');
INSERT INTO `rors` VALUES
(63948, 'https://ror.org/04qjz7g79', 'sr', 1, 'https://ror.org/04qjz7g79 Klinika za Psihijatrijske Bolesti Dr Laza Lazarević'),
(63949, 'https://ror.org/04qkqhe87', 'en', 1, 'https://ror.org/04qkqhe87 Shandong Binzhou Pasturage Veterinary Academy å±±äøœēœę»Øå·žē•œē‰§å…½åŒ»ē ”ē©¶é™¢'),
(63950, 'https://ror.org/04qkw0x88', 'en', 1, 'https://ror.org/04qkw0x88 International CTEPH Association'),
(63951, 'https://ror.org/04qm5g479', 'en', 1, 'https://ror.org/04qm5g479 Thought Field Therapy Foundation'),
(63952, 'https://ror.org/04qmeyd63', 'en', 1, 'https://ror.org/04qmeyd63 Association of Academic Professionals in Obstetrics and Gynaecology'),
(63953, 'https://ror.org/04qmha372', 'en', 1, 'https://ror.org/04qmha372 British Association of Urological Surgeons'),
(63954, 'https://ror.org/04qmnd212', 'en', 1, 'https://ror.org/04qmnd212 Ste. Genevieve County Memorial Hospital'),
(63955, 'https://ror.org/04qnj3s85', 'en', 1, 'https://ror.org/04qnj3s85 InSpine'),
(63956, 'https://ror.org/04qqn5v91', 'en', 1, 'https://ror.org/04qqn5v91 Hematology Oncology Consultants'),
(63957, 'https://ror.org/04qqvvm35', 'no_lang_code', 1, 'https://ror.org/04qqvvm35 EyeSonix (United States)'),
(63958, 'https://ror.org/04qr62034', 'no_lang_code', 1, 'https://ror.org/04qr62034 Roche (Romania)'),
(63959, 'https://ror.org/04qs1qk86', 'de', 1, 'https://ror.org/04qs1qk86 Nord-Ostdeutsche Gesellschaft für Gynäkologische Onkologie'),
(63960, 'https://ror.org/04qstxt95', 'no_lang_code', 1, 'https://ror.org/04qstxt95 Apomedica (Austria)'),
(63961, 'https://ror.org/04qvenw96', 'fr', 1, 'https://ror.org/04qvenw96 Clinique Victor Hugo'),
(63962, 'https://ror.org/04qvz3512', 'en', 1, 'https://ror.org/04qvz3512 Louisiana Hematology Oncology Associates'),
(63963, 'https://ror.org/04qw37741', 'en', 1, 'https://ror.org/04qw37741 The Medical Center of Aurora'),
(63964, 'https://ror.org/04qx49k93', 'no_lang_code', 1, 'https://ror.org/04qx49k93 Gehrlicher (Germany)'),
(63965, 'https://ror.org/04qzmty18', 'en', 1, 'https://ror.org/04qzmty18 Saroj Gupta Cancer Centre & Research Institute'),
(63966, 'https://ror.org/04r4esr16', 'es', 1, 'https://ror.org/04r4esr16 Hospital Odontológico Universidad de Barcelona'),
(63967, 'https://ror.org/04r55zh03', 'fr', 1, 'https://ror.org/04r55zh03 Clinique Mutualiste de l''Estuaire'),
(63968, 'https://ror.org/04r5abx10', 'en', 1, 'https://ror.org/04r5abx10 Territory Neurology & Research Institute'),
(63969, 'https://ror.org/04r5kab60', 'no_lang_code', 1, 'https://ror.org/04r5kab60 Arteg (Netherlands)'),
(63970, 'https://ror.org/04r796168', 'no_lang_code', 1, 'https://ror.org/04r796168 DiagNodus (United Kingdom)'),
(63971, 'https://ror.org/04r7rm468', 'en', 1, 'https://ror.org/04r7rm468 The Center for Mind-Body Medicine'),
(63972, 'https://ror.org/04r7wpm53', 'no_lang_code', 1, 'https://ror.org/04r7wpm53 HealthMyne (United States)'),
(63973, 'https://ror.org/04r88rm51', 'no_lang_code', 1, 'https://ror.org/04r88rm51 Intersurgical (Germany)'),
(63974, 'https://ror.org/04raj3421', 'es', 1, 'https://ror.org/04raj3421 Hospital El Escorial'),
(63975, 'https://ror.org/04rcd2e35', 'de', 1, 'https://ror.org/04rcd2e35 Fachklinik St. Marienstift Dammer Berge'),
(63976, 'https://ror.org/04rd2ca50', 'pt', 1, 'https://ror.org/04rd2ca50 Instituto Tropical de Medicina Reprodutiva'),
(63977, 'https://ror.org/04rdhz191', 'es', 1, 'https://ror.org/04rdhz191 Hospital Comarcal de Inca'),
(63978, 'https://ror.org/04rf3en62', 'no_lang_code', 1, 'https://ror.org/04rf3en62 El Instituto Hero de Nutrición Infantil Hero Institute for Infant Nutrition (Spain)'),
(63979, 'https://ror.org/04rg77e64', 'fr', 1, 'https://ror.org/04rg77e64 Centre d''Etudes et de Recherches pour l''Intensification du Traitement du DiabĆØte'),
(63980, 'https://ror.org/04rh37t51', 'en', 1, 'https://ror.org/04rh37t51 Shafran Gastroenterology Center'),
(63981, 'https://ror.org/04rhkcf19', 'no_lang_code', 1, 'https://ror.org/04rhkcf19 Santech (United States)'),
(63982, 'https://ror.org/04rhwda32', 'en', 1, 'https://ror.org/04rhwda32 Heartland Hematology and Oncology'),
(63983, 'https://ror.org/04rk3mm93', 'en', 1, 'https://ror.org/04rk3mm93 International Cannabinoid Research Society'),
(63984, 'https://ror.org/04rkyw928', 'fr', 1, 'https://ror.org/04rkyw928 L''HƓpital Nord Franche-ComtƩ'),
(63985, 'https://ror.org/04rmmk750', 'no_lang_code', 1, 'https://ror.org/04rmmk750 GAIA (Germany)'),
(63986, 'https://ror.org/04rr26086', 'de', 1, 'https://ror.org/04rr26086 UniversitƤtskinderklinik'),
(63987, 'https://ror.org/04rrktd29', 'en', 1, 'https://ror.org/04rrktd29 Joseph M. Still Research Foundation'),
(63988, 'https://ror.org/04rtgxf38', 'en', 1, 'https://ror.org/04rtgxf38 Canadian Institute of Natural and Integrative Medicine'),
(63989, 'https://ror.org/04rw83w19', 'en', 1, 'https://ror.org/04rw83w19 Avera McKennan Hospital & University Health Center'),
(63990, 'https://ror.org/04rwyp244', 'de', 1, 'https://ror.org/04rwyp244 St. Maria-Hilf-Krankenhaus'),
(63991, 'https://ror.org/04rwzz867', 'en', 1, 'https://ror.org/04rwzz867 Samara Regional Clinical Hospital named after V.D. Seredavina Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° Š’.Š”.ДереГавин'),
(63992, 'https://ror.org/04s366p63', 'de', 1, 'https://ror.org/04s366p63 Klinikum Sindelfingen-Bƶblingen'),
(63993, 'https://ror.org/04s3ast04', 'de', 1, 'https://ror.org/04s3ast04 Klinik und Poliklinik für Neurologie'),
(63994, 'https://ror.org/04s4dtk79', 'no_lang_code', 1, 'https://ror.org/04s4dtk79 Mertiva (Sweden)'),
(63995, 'https://ror.org/04s679e90', 'en', 1, 'https://ror.org/04s679e90 Western Foundation of Vertebrate Zoology'),
(63996, 'https://ror.org/04s8yyn61', 'en', 1, 'https://ror.org/04s8yyn61 National Committee on United States China Relations'),
(63997, 'https://ror.org/04sc54484', 'en', 1, 'https://ror.org/04sc54484 Cổng thĆ“ng tin điện tį»­ Viện Kiểm Định Quốc Gia VįŗÆc Xin VĆ  Sinh National Institute for Control of Vaccines and Biologicals'),
(63998, 'https://ror.org/04sce8194', 'nl', 1, 'https://ror.org/04sce8194 Praktikon'),
(63999, 'https://ror.org/04scta677', 'en', 1, 'https://ror.org/04scta677 Japan Clinical Cancer Research Organization ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗ ę—„ęœ¬ćŒć‚“č‡ØåŗŠč©¦éØ“ęŽØé€²ę©Ÿę§‹'),
(64000, 'https://ror.org/04sdeyq07', 'no_lang_code', 1, 'https://ror.org/04sdeyq07 B. Braun (Spain)'),
(64001, 'https://ror.org/04sdwnk70', 'de', 1, 'https://ror.org/04sdwnk70 Werner und Erika Messmer Stiftung'),
(64002, 'https://ror.org/04shda628', 'no_lang_code', 1, 'https://ror.org/04shda628 Biorasis (United States)'),
(64003, 'https://ror.org/04sn1zv12', 'en', 1, 'https://ror.org/04sn1zv12 Global Biological Standards Institute'),
(64004, 'https://ror.org/04snwz472', 'en', 1, 'https://ror.org/04snwz472 Southern Cross Fertility & IVF Centre'),
(64005, 'https://ror.org/04sqj7m79', 'en', 1, 'https://ror.org/04sqj7m79 National Heart Foundation Hospital & Research Institute'),
(64006, 'https://ror.org/04sr0hc76', 'de', 1, 'https://ror.org/04sr0hc76 Helios Kliniken Mittelweser'),
(64007, 'https://ror.org/04ssr4v64', 'en', 1, 'https://ror.org/04ssr4v64 Research Institute for Child Psychology and Pathopsychology Vyskumny Ustav Detskej Psychologie a Patopsychologie'),
(64008, 'https://ror.org/04st1y556', 'it', 1, 'https://ror.org/04st1y556 La Maddalena'),
(64009, 'https://ror.org/04stq9b42', 'en', 1, 'https://ror.org/04stq9b42 Family Healthcare'),
(64010, 'https://ror.org/04sv8h433', 'no_lang_code', 1, 'https://ror.org/04sv8h433 Activated Research Company (United States)'),
(64011, 'https://ror.org/04svmxd14', 'en', 1, 'https://ror.org/04svmxd14 Changzhi University 长治学院'),
(64012, 'https://ror.org/04sw4ge25', 'en', 1, 'https://ror.org/04sw4ge25 DSC Services'),
(64013, 'https://ror.org/04swy5694', 'nl', 1, 'https://ror.org/04swy5694 Dokter Bosman'),
(64014, 'https://ror.org/04sxdc114', 'en', 1, 'https://ror.org/04sxdc114 OhioHealth Mansfield Hospital'),
(64015, 'https://ror.org/04sy1dy83', 'en', 1, 'https://ror.org/04sy1dy83 West Virginia Network'),
(64016, 'https://ror.org/04t03ph12', 'en', 1, 'https://ror.org/04t03ph12 Danish Agency for Institutions and Educational Grants'),
(64017, 'https://ror.org/04t1yja74', 'fr', 1, 'https://ror.org/04t1yja74 Association des Neuro-Oncologues d’Expression FranƧaise'),
(64018, 'https://ror.org/04t2ed417', 'en', 1, 'https://ror.org/04t2ed417 Vitalis WoonZorg Group'),
(64019, 'https://ror.org/04t455g84', 'en', 1, 'https://ror.org/04t455g84 Great Lakes Cancer Management Specialists'),
(64020, 'https://ror.org/04t4g7j44', 'en', 1, 'https://ror.org/04t4g7j44 Changhua County Public Health Bureau å½°åŒ–ēø£č”›ē”Ÿå±€'),
(64021, 'https://ror.org/04t5pq748', 'en', 1, 'https://ror.org/04t5pq748 Delos Clinical'),
(64022, 'https://ror.org/04t5qmm38', 'nl', 1, 'https://ror.org/04t5qmm38 Agora'),
(64023, 'https://ror.org/04t69c375', 'en', 1, 'https://ror.org/04t69c375 Baoshan College 宝山学院'),
(64024, 'https://ror.org/04t6gkr49', 'en', 1, 'https://ror.org/04t6gkr49 Alliance for Canadian Health Outcomes Research in Diabetes'),
(64025, 'https://ror.org/04t7jet59', 'no_lang_code', 1, 'https://ror.org/04t7jet59 Stryker (Switzerland)'),
(64026, 'https://ror.org/04t7xhp38', 'en', 1, 'https://ror.org/04t7xhp38 Side-Out Foundation'),
(64027, 'https://ror.org/04t8gaz30', 'en', 1, 'https://ror.org/04t8gaz30 Ayurvedic Institute'),
(64028, 'https://ror.org/04tagby45', 'en', 1, 'https://ror.org/04tagby45 Triodos Bank'),
(64029, 'https://ror.org/04td0jm23', 'en', 1, 'https://ror.org/04td0jm23 Euromedic'),
(64030, 'https://ror.org/04tf0ye64', 'en', 1, 'https://ror.org/04tf0ye64 Center for Psychiatry and Behavioral Medicine'),
(64031, 'https://ror.org/04tg2rn58', 'no_lang_code', 1, 'https://ror.org/04tg2rn58 IQ Medical Ventures (Netherlands)'),
(64032, 'https://ror.org/04tgkyt11', 'no_lang_code', 1, 'https://ror.org/04tgkyt11 Froceth (Lithuania)'),
(64033, 'https://ror.org/04th56x69', 'en', 1, 'https://ror.org/04th56x69 THIM van der Laan University College Physiotherapy'),
(64034, 'https://ror.org/04thvph49', 'en', 1, 'https://ror.org/04thvph49 Virginia Center for Reproductive Medicine'),
(64035, 'https://ror.org/04tj2nz36', 'en', 1, 'https://ror.org/04tj2nz36 Northeast Center for Rehabilitation and Brain Injury'),
(64036, 'https://ror.org/04tkkqy57', 'en', 1, 'https://ror.org/04tkkqy57 Nam Dinh University of Nursing'),
(64037, 'https://ror.org/04trvzz06', 'en', 1, 'https://ror.org/04trvzz06 Ontario Rheumatology Association'),
(64038, 'https://ror.org/04tsbxb91', 'no_lang_code', 1, 'https://ror.org/04tsbxb91 TAO Connect (United States)'),
(64039, 'https://ror.org/04tv9yw85', 'en', 1, 'https://ror.org/04tv9yw85 C-AID Consultants'),
(64040, 'https://ror.org/04tx7n689', 'en', 1, 'https://ror.org/04tx7n689 Chu Vision Institute'),
(64041, 'https://ror.org/04typ7821', 'en', 1, 'https://ror.org/04typ7821 Tri Center'),
(64042, 'https://ror.org/04tyx7m15', 'en', 1, 'https://ror.org/04tyx7m15 Carolinas Hospital System'),
(64043, 'https://ror.org/04v1ay816', 'es', 1, 'https://ror.org/04v1ay816 Hospital Universitario San Rafael San Rafael University Hospital'),
(64044, 'https://ror.org/04v2tad62', 'en', 1, 'https://ror.org/04v2tad62 Palm Beach Neurological Center'),
(64045, 'https://ror.org/04v2xy120', 'no_lang_code', 1, 'https://ror.org/04v2xy120 Higher Education Services (United States)'),
(64046, 'https://ror.org/04v5fn795', 'nl', 1, 'https://ror.org/04v5fn795 Stichting Apotheek der Haarlemse Ziekenhuizen'),
(64047, 'https://ror.org/04v67sh61', 'en', 1, 'https://ror.org/04v67sh61 Centeno-Schultz Clinic'),
(64048, 'https://ror.org/04v6y1533', 'nl', 1, 'https://ror.org/04v6y1533 Maurits en Anna de Kock Stichting'),
(64049, 'https://ror.org/04v719x65', 'en', 1, 'https://ror.org/04v719x65 Beat Nb'),
(64050, 'https://ror.org/04v77c541', 'en', 1, 'https://ror.org/04v77c541 Sierra Eye Associates'),
(64051, 'https://ror.org/04v7c9d77', 'no_lang_code', 1, 'https://ror.org/04v7c9d77 SoundRocket (United States)'),
(64052, 'https://ror.org/04v9dga39', 'en', 1, 'https://ror.org/04v9dga39 NOVO Cellular Medicine Institute'),
(64053, 'https://ror.org/04v9hjm42', 'de', 1, 'https://ror.org/04v9hjm42 Juliusspital Foundation Stiftung Juliusspital'),
(64054, 'https://ror.org/04vdm6x24', 'de', 1, 'https://ror.org/04vdm6x24 Senatsverwaltung für Gesundheit, Pflege und Gleichstellung'),
(64055, 'https://ror.org/04vdzam19', 'en', 1, 'https://ror.org/04vdzam19 Ministry of Local Government, Rural Development and Co-operatives ą¦øą§ą¦„ą¦¾ą¦Øą§€ą¦Æą¦¼ সরকার, ą¦Ŗą¦²ą§ą¦²ą§€ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ও সমবায় ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(64056, 'https://ror.org/04vj7nb44', 'en', 1, 'https://ror.org/04vj7nb44 Mercy Fitzgerald Hospital'),
(64057, 'https://ror.org/04vjj4994', 'en', 1, 'https://ror.org/04vjj4994 Nepal Family Development Foundation'),
(64058, 'https://ror.org/04vjrjb03', 'en', 1, 'https://ror.org/04vjrjb03 Illawarra Women''s Health Centre'),
(64059, 'https://ror.org/04vkz4w22', 'en', 1, 'https://ror.org/04vkz4w22 Rowe Neurology Institute'),
(64060, 'https://ror.org/04vmpyg44', 'en', 1, 'https://ror.org/04vmpyg44 Fujian Academy of Medical Sciences ē¦å»ŗēœåŒ»å­¦ē§‘å­¦é™¢'),
(64061, 'https://ror.org/04vnjb193', 'en', 1, 'https://ror.org/04vnjb193 Vascular Interventional Advances'),
(64062, 'https://ror.org/04vpsne51', 'en', 1, 'https://ror.org/04vpsne51 Facial Pain Association'),
(64063, 'https://ror.org/04vqtes97', 'en', 1, 'https://ror.org/04vqtes97 Creedmoor Psychiatric Center'),
(64064, 'https://ror.org/04vr72n28', 'en', 1, 'https://ror.org/04vr72n28 Michigan Head and Spine Institute'),
(64065, 'https://ror.org/04vs51a50', 'en', 1, 'https://ror.org/04vs51a50 Midtown Educational Foundation'),
(64066, 'https://ror.org/04vs52k24', 'en', 1, 'https://ror.org/04vs52k24 Legacy International'),
(64067, 'https://ror.org/04vt5s449', 'en', 1, 'https://ror.org/04vt5s449 Cure CP'),
(64068, 'https://ror.org/04vvsta47', 'en', 1, 'https://ror.org/04vvsta47 National Institute for Health Care Reform'),
(64069, 'https://ror.org/04vw6de50', 'en', 1, 'https://ror.org/04vw6de50 Seafood South Australia'),
(64070, 'https://ror.org/04vxexg79', 'en', 1, 'https://ror.org/04vxexg79 MiiMi Aboriginal Corporation'),
(64071, 'https://ror.org/04vxvsq82', 'no_lang_code', 1, 'https://ror.org/04vxvsq82 Spectrum Research (United States)'),
(64072, 'https://ror.org/04vz2j713', 'no_lang_code', 1, 'https://ror.org/04vz2j713 Interpolis (Netherlands)'),
(64073, 'https://ror.org/04vz3bz63', 'en', 1, 'https://ror.org/04vz3bz63 Inspired Spine'),
(64074, 'https://ror.org/04w0g9c06', 'no_lang_code', 1, 'https://ror.org/04w0g9c06 RR Mechatronics (Netherlands)'),
(64075, 'https://ror.org/04w3zd882', 'en', 1, 'https://ror.org/04w3zd882 Hematology Oncology Associates'),
(64076, 'https://ror.org/04w47cg22', 'en', 1, 'https://ror.org/04w47cg22 Neosho Memorial Regional Medical Center'),
(64077, 'https://ror.org/04w4jta18', 'de', 1, 'https://ror.org/04w4jta18 Acura Kliniken'),
(64078, 'https://ror.org/04w65pb91', 'no_lang_code', 1, 'https://ror.org/04w65pb91 SIGVARIS Group (Switzerland)'),
(64079, 'https://ror.org/04w70m307', 'en', 1, 'https://ror.org/04w70m307 Centro Intercultural de Estudios de Desiertos y OcƩanos Intercultural Center for the Study of Deserts and Oceans'),
(64080, 'https://ror.org/04w87a187', 'fr', 1, 'https://ror.org/04w87a187 Adema 80'),
(64081, 'https://ror.org/04w8qq712', 'es', 1, 'https://ror.org/04w8qq712 Instituto Ecuatoriano de Enfermedades Digestivas'),
(64082, 'https://ror.org/04w908n49', 'en', 1, 'https://ror.org/04w908n49 Center for the Study of State and Society Centro para el Estudio del Estado y la Sociedad'),
(64083, 'https://ror.org/04w9ddv64', 'de', 1, 'https://ror.org/04w9ddv64 Caritas-Krankenhaus St. Josef'),
(64084, 'https://ror.org/04wbedy98', 'no_lang_code', 1, 'https://ror.org/04wbedy98 Storch und Beller'),
(64085, 'https://ror.org/04we5xg30', 'en', 1, 'https://ror.org/04we5xg30 McFarland Clinic - Marshalltown'),
(64086, 'https://ror.org/04wfwab40', 'no_lang_code', 1, 'https://ror.org/04wfwab40 Vion Food Group (Netherlands)'),
(64087, 'https://ror.org/04wfzj177', 'en', 1, 'https://ror.org/04wfzj177 PeaceHealth St. Joseph Medical Center'),
(64088, 'https://ror.org/04wh5hg83', 'no_lang_code', 1, 'https://ror.org/04wh5hg83 Caris Life Sciences (United States)'),
(64089, 'https://ror.org/04whgpk43', 'nl', 1, 'https://ror.org/04whgpk43 Brijder, Brijder Verslavingszorg'),
(64090, 'https://ror.org/04wk3wd50', 'fr', 1, 'https://ror.org/04wk3wd50 AcadƩmie de Nancy-Metz'),
(64091, 'https://ror.org/04wkxh813', 'en', 1, 'https://ror.org/04wkxh813 Neurologique Foundation'),
(64092, 'https://ror.org/04wnnpk31', 'no_lang_code', 1, 'https://ror.org/04wnnpk31 Pulmonx (United States)'),
(64093, 'https://ror.org/04wnsdv29', 'en', 1, 'https://ror.org/04wnsdv29 Mandya Institute of Medical Sciences ą²®ą²‚ą²”ą³ą²Æ ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²«ą³ ą²®ą³†ą²”ą²æą²•ą²²ą³ ą²øą³ˆą²Øą³ą²øą³'),
(64094, 'https://ror.org/04wpjg525', 'en', 1, 'https://ror.org/04wpjg525 Food & Nutrition'),
(64095, 'https://ror.org/04wqn7h33', 'no_lang_code', 1, 'https://ror.org/04wqn7h33 AEGEA Medical (United States)'),
(64096, 'https://ror.org/04wqvjr21', 'fr', 1, 'https://ror.org/04wqvjr21 Centre Hospitalier Intercommunal Toulon-La Seyne-sur-Mer'),
(64097, 'https://ror.org/04wt3vp12', 'no_lang_code', 1, 'https://ror.org/04wt3vp12 Roivant Sciences (Bermuda)'),
(64098, 'https://ror.org/04wwppp44', 'en', 1, 'https://ror.org/04wwppp44 The O.P. and W.E. Edwards Foundation'),
(64099, 'https://ror.org/04wx5ek40', 'en', 1, 'https://ror.org/04wx5ek40 Tau Beta Pi Association'),
(64100, 'https://ror.org/04x0cjk42', 'en', 1, 'https://ror.org/04x0cjk42 Greater Regional Medical Center'),
(64101, 'https://ror.org/04x3fmq96', 'en', 1, 'https://ror.org/04x3fmq96 IVI Middle East Fertility Clinic'),
(64102, 'https://ror.org/04x4dcg02', 'en', 1, 'https://ror.org/04x4dcg02 Thinkery'),
(64103, 'https://ror.org/04x50ay81', 'no_lang_code', 1, 'https://ror.org/04x50ay81 Lambda Therapeutic Research (India)'),
(64104, 'https://ror.org/04x5fjw90', 'en', 1, 'https://ror.org/04x5fjw90 OrthoCarolina Research Institute'),
(64105, 'https://ror.org/04x747113', 'de', 1, 'https://ror.org/04x747113 Evangelisches Krankenhaus Hamm'),
(64106, 'https://ror.org/04x7hfy59', 'en', 1, 'https://ror.org/04x7hfy59 Naples Community Hospital Healthcare System'),
(64107, 'https://ror.org/04x80tf13', 'en', 1, 'https://ror.org/04x80tf13 Recfish Australia'),
(64108, 'https://ror.org/04x814r93', 'de', 1, 'https://ror.org/04x814r93 Vinforce'),
(64109, 'https://ror.org/04x84m665', 'de', 1, 'https://ror.org/04x84m665 Adipositas Zentrum Oberhausen'),
(64110, 'https://ror.org/04x8czz63', 'no_lang_code', 1, 'https://ror.org/04x8czz63 Bracco (Germany)'),
(64111, 'https://ror.org/04xbtey77', 'en', 1, 'https://ror.org/04xbtey77 National Institute for Public Safety Health'),
(64112, 'https://ror.org/04xdas356', 'no_lang_code', 1, 'https://ror.org/04xdas356 Unfallkasse Rheinland-Pfalz (Germany)'),
(64113, 'https://ror.org/04xer1p89', 'en', 1, 'https://ror.org/04xer1p89 Austrian Standards Ɩsterreichisches Normungsinstitut'),
(64114, 'https://ror.org/04xfd0826', 'en', 1, 'https://ror.org/04xfd0826 Shanghai Research Center for Wireless Communications äøŠęµ·ę— ēŗæé€šäæ”ē ”ē©¶äø­åæƒ'),
(64115, 'https://ror.org/04xg96b46', 'pt', 1, 'https://ror.org/04xg96b46 Instituto de Oncologia do ParanĆ”'),
(64116, 'https://ror.org/04xg9g962', 'nl', 1, 'https://ror.org/04xg9g962 Condite'),
(64117, 'https://ror.org/04xh4nj31', 'no_lang_code', 1, 'https://ror.org/04xh4nj31 EDAP TMS (Germany)'),
(64118, 'https://ror.org/04xhn5b95', 'de', 1, 'https://ror.org/04xhn5b95 Universitätsklinik für Kinder und Jugendpsychiatrie'),
(64119, 'https://ror.org/04xhnhj86', 'en', 1, 'https://ror.org/04xhnhj86 Grupo EspaƱol de Tratamiento de Tumores de Cabeza y Cuello Spanish Head & Neck Cancer Cooperative Group'),
(64120, 'https://ror.org/04xj4zj95', 'en', 1, 'https://ror.org/04xj4zj95 Southeast Tech'),
(64121, 'https://ror.org/04xj8xr09', 'de', 1, 'https://ror.org/04xj8xr09 Deutscher Psoriasis Bund'),
(64122, 'https://ror.org/04xkbx134', 'en', 1, 'https://ror.org/04xkbx134 Providence Saint Joseph Medical Center'),
(64123, 'https://ror.org/04xkx8s32', 'en', 1, 'https://ror.org/04xkx8s32 Nasser Institute hospital'),
(64124, 'https://ror.org/04xpvy130', 'en', 1, 'https://ror.org/04xpvy130 Difficult Airways Society'),
(64125, 'https://ror.org/04xqmb911', 'en', 1, 'https://ror.org/04xqmb911 Institut für Mikrobiologie und Hygiene Institute of Medical Microbiology and Hygiene'),
(64126, 'https://ror.org/04xwcs454', 'en', 1, 'https://ror.org/04xwcs454 Inner Mongolia International Mongolian Hospital å†…č’™å¤å›½é™…č’™åŒ»é™¢å®˜ē½‘'),
(64127, 'https://ror.org/04xx57w85', 'no_lang_code', 1, 'https://ror.org/04xx57w85 Gelita (Germany)'),
(64128, 'https://ror.org/04y18m106', 'de', 1, 'https://ror.org/04y18m106 Helios Klinikum Erfurt'),
(64129, 'https://ror.org/04y1ahe28', 'en', 1, 'https://ror.org/04y1ahe28 EEC Institute'),
(64130, 'https://ror.org/04y25zx85', 'en', 1, 'https://ror.org/04y25zx85 Taiwan Society of Thrombosis and Hemostasis'),
(64131, 'https://ror.org/04y52eq55', 'en', 1, 'https://ror.org/04y52eq55 Federal Neuro Psychiatric Hospital'),
(64132, 'https://ror.org/04y5tkt43', 'de', 1, 'https://ror.org/04y5tkt43 BIG Direkt Gesund'),
(64133, 'https://ror.org/04y6cx804', 'en', 1, 'https://ror.org/04y6cx804 EGMONT – The Royal Institute for International Relations'),
(64134, 'https://ror.org/04y8jf896', 'en', 1, 'https://ror.org/04y8jf896 Interventional Stroke Therapy Outcomes Registry'),
(64135, 'https://ror.org/04y9b7t58', 'en', 1, 'https://ror.org/04y9b7t58 Italian Resuscitation Council'),
(64136, 'https://ror.org/04y9nj467', 'en', 1, 'https://ror.org/04y9nj467 Healing Institute'),
(64137, 'https://ror.org/04ybb1s66', 'en', 1, 'https://ror.org/04ybb1s66 Foundation Van Goethem-Brichant'),
(64138, 'https://ror.org/04yctj498', 'en', 1, 'https://ror.org/04yctj498 Panhandle Eye Group'),
(64139, 'https://ror.org/04yeh2x21', 'de', 1, 'https://ror.org/04yeh2x21 Refonet'),
(64140, 'https://ror.org/04yjzvg70', 'en', 1, 'https://ror.org/04yjzvg70 Arizona Oncology Foundation'),
(64141, 'https://ror.org/04ykj1118', 'no_lang_code', 1, 'https://ror.org/04ykj1118 Gynius (Sweden)'),
(64142, 'https://ror.org/04ym85q78', 'es', 1, 'https://ror.org/04ym85q78 Hospital Plató'),
(64143, 'https://ror.org/04yqk3j23', 'en', 1, 'https://ror.org/04yqk3j23 Seafood Industry Victoria'),
(64144, 'https://ror.org/04yv75396', 'no_lang_code', 1, 'https://ror.org/04yv75396 UnivƩ (Netherlands)'),
(64145, 'https://ror.org/04yw4y185', 'en', 1, 'https://ror.org/04yw4y185 Entrada Institute'),
(64146, 'https://ror.org/04yw93c88', 'en', 1, 'https://ror.org/04yw93c88 Lagos State Health Service Commission'),
(64147, 'https://ror.org/04ywqtw26', 'en', 1, 'https://ror.org/04ywqtw26 Houston Methodist Sugar Land Hospital'),
(64148, 'https://ror.org/04yx65w97', 'de', 1, 'https://ror.org/04yx65w97 Institut für Palliative Care'),
(64149, 'https://ror.org/04yxf9085', 'en', 1, 'https://ror.org/04yxf9085 Maine Discovery Museum'),
(64150, 'https://ror.org/04yxf9667', 'en', 1, 'https://ror.org/04yxf9667 European Society of Hypertension SocietĆ  europea di ipertensione'),
(64151, 'https://ror.org/04yy1mz94', 'en', 1, 'https://ror.org/04yy1mz94 Royal Belgian Society for Surgery'),
(64152, 'https://ror.org/04z0aed53', 'en', 1, 'https://ror.org/04z0aed53 The Clay Minerals Society'),
(64153, 'https://ror.org/04z0cdx68', 'en', 1, 'https://ror.org/04z0cdx68 SurgOne Foregut Institute'),
(64154, 'https://ror.org/04z0csp04', 'en', 1, 'https://ror.org/04z0csp04 Primary Care Diabetes Society'),
(64155, 'https://ror.org/04z256d90', 'en', 1, 'https://ror.org/04z256d90 Governor''s Office of Planning and Research'),
(64156, 'https://ror.org/04z27mz17', 'fr', 1, 'https://ror.org/04z27mz17 Clinique Hartmann'),
(64157, 'https://ror.org/04z28dj81', 'fr', 1, 'https://ror.org/04z28dj81 Institut Aguettant'),
(64158, 'https://ror.org/04z3y3b74', 'en', 1, 'https://ror.org/04z3y3b74 Chicago Children’s Museum'),
(64159, 'https://ror.org/04z435g27', 'en', 1, 'https://ror.org/04z435g27 South Asian Clinical Toxicology Research Collaboration'),
(64160, 'https://ror.org/04z5c1995', 'it', 1, 'https://ror.org/04z5c1995 Istituto di Montecatone, Ospedale di Riabilitazione'),
(64161, 'https://ror.org/04z5nag80', 'en', 1, 'https://ror.org/04z5nag80 Medirex Group Academy'),
(64162, 'https://ror.org/04z5qk104', 'en', 1, 'https://ror.org/04z5qk104 Community Hospital'),
(64163, 'https://ror.org/04z5qv209', 'en', 1, 'https://ror.org/04z5qv209 Kalispell Regional Medical Center'),
(64164, 'https://ror.org/04z76wj11', 'no_lang_code', 1, 'https://ror.org/04z76wj11 Caribou Biosciences (United States)'),
(64165, 'https://ror.org/04z8yvn47', 'en', 1, 'https://ror.org/04z8yvn47 Chinese Anti-Cancer Association äø­å›½ęŠ—ē™Œåä¼š'),
(64166, 'https://ror.org/04z99zb45', 'en', 1, 'https://ror.org/04z99zb45 Genesee Cancer & Blood Disease'),
(64167, 'https://ror.org/04z9wzt26', 'en', 1, 'https://ror.org/04z9wzt26 Appalachia-Science in the Public Interest'),
(64168, 'https://ror.org/04zame467', 'en', 1, 'https://ror.org/04zame467 Kulas Foundation'),
(64169, 'https://ror.org/04zd8zs90', 'en', 1, 'https://ror.org/04zd8zs90 California Indian Museum and Cultural Center'),
(64170, 'https://ror.org/04zdc2070', 'en', 1, 'https://ror.org/04zdc2070 Mountain Diabetes and Endocrine Center'),
(64171, 'https://ror.org/04zdsga82', 'en', 1, 'https://ror.org/04zdsga82 Ruikang Affiliated Hospital of Guangxi Medical University å¹æč„æäø­åŒ»čÆå¤§å­¦é™„å±žē‘žåŗ·åŒ»é™¢'),
(64172, 'https://ror.org/04zj53020', 'no_lang_code', 1, 'https://ror.org/04zj53020 Onkotrakt (Germany)'),
(64173, 'https://ror.org/04zkhyt19', 'de', 1, 'https://ror.org/04zkhyt19 Deutsche Parkinson Vereinigung e.V'),
(64174, 'https://ror.org/04zmc7w78', 'en', 1, 'https://ror.org/04zmc7w78 Netherlands Nutrition Centre Stichting Voedingscentrum'),
(64175, 'https://ror.org/04zncpe92', 'en', 1, 'https://ror.org/04zncpe92 Access to Wholistic and Productive Living Institute'),
(64176, 'https://ror.org/04zp4vp65', 'en', 1, 'https://ror.org/04zp4vp65 Institute of Mental Health Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ментално зГравље'),
(64177, 'https://ror.org/04zrd1t35', 'no_lang_code', 1, 'https://ror.org/04zrd1t35 Zambon (Switzerland)'),
(64178, 'https://ror.org/04zs9v841', 'no_lang_code', 1, 'https://ror.org/04zs9v841 Multi Electrical System (Suriname)'),
(64179, 'https://ror.org/04ztvxe73', 'de', 1, 'https://ror.org/04ztvxe73 Kreiskrankenhaus Emmendingen'),
(64180, 'https://ror.org/04zv2wf02', 'no_lang_code', 1, 'https://ror.org/04zv2wf02 Damien Foundation'),
(64181, 'https://ror.org/04zvdfd56', 'de', 1, 'https://ror.org/04zvdfd56 UniversitƤtszahnklinik Wien'),
(64182, 'https://ror.org/04zy2vv30', 'en', 1, 'https://ror.org/04zy2vv30 Gulf Heart Association'),
(64183, 'https://ror.org/04zymc478', 'en', 1, 'https://ror.org/04zymc478 National Cancer Institute of Sri Lanka'),
(64184, 'https://ror.org/04zys7342', 'de', 1, 'https://ror.org/04zys7342 Klinik und Poliklinik für Psychiatrie und Psychotherapie des Kindes- und Jugendalters'),
(64185, 'https://ror.org/04zzrht05', 'en', 1, 'https://ror.org/04zzrht05 North Tees and Hartlepool NHS Foundation Trust'),
(64186, 'https://ror.org/0501ptv55', 'no_lang_code', 1, 'https://ror.org/0501ptv55 nView Medical (United States)'),
(64187, 'https://ror.org/0501yf769', 'en', 1, 'https://ror.org/0501yf769 George Huntington Institute George-Huntington-Institut'),
(64188, 'https://ror.org/0503fq502', 'no_lang_code', 1, 'https://ror.org/0503fq502 Neuren Pharmaceuticals (New Zealand)'),
(64189, 'https://ror.org/0505n3394', 'en', 1, 'https://ror.org/0505n3394 Pearl Producers Association'),
(64190, 'https://ror.org/05069qg36', 'no_lang_code', 1, 'https://ror.org/05069qg36 Infinity HealthCare (United States)'),
(64191, 'https://ror.org/050782b52', 'no_lang_code', 1, 'https://ror.org/050782b52 A-SKIN (Netherlands)'),
(64192, 'https://ror.org/05090cn78', 'de', 1, 'https://ror.org/05090cn78 Onkozentrum Dresden'),
(64193, 'https://ror.org/050ct8k07', 'en', 1, 'https://ror.org/050ct8k07 Beijing Institute of Labor Protection Science åŒ—äŗ¬åø‚åŠ³åŠØäæęŠ¤ē§‘å­¦ē ”ē©¶ę‰€'),
(64194, 'https://ror.org/050dmq329', 'en', 1, 'https://ror.org/050dmq329 The AIDS Institute'),
(64195, 'https://ror.org/050ept838', 'en', 1, 'https://ror.org/050ept838 Road Safety Institute Panos Mylonas Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪŸĪ“Ī¹ĪŗĪ®Ļ‚ Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī±Ļ‚ "Πάνος ĪœĻ…Ī»Ļ‰Ī½Ī¬Ļ‚"'),
(64196, 'https://ror.org/050eva982', 'en', 1, 'https://ror.org/050eva982 German Council for Scientific Information Infrastructures Rat für Informationsinfrastrukturen'),
(64197, 'https://ror.org/050fgea76', 'no_lang_code', 1, 'https://ror.org/050fgea76 Kazahstanskoe Obshchestvo Bariatricheskih i Metabolicheskih Hirurgov ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾Šµ общество бариатрических Šø метаболических Ń…ŠøŃ€ŃƒŃ€Š³Š¾Š² Š ŠžŠž'),
(64198, 'https://ror.org/050fh0z31', 'en', 1, 'https://ror.org/050fh0z31 Queen Giovanna Hospital болница Царица Йоанна'),
(64199, 'https://ror.org/050fnhx85', 'en', 1, 'https://ror.org/050fnhx85 Great Falls Clinic'),
(64200, 'https://ror.org/050g10a24', 'no_lang_code', 1, 'https://ror.org/050g10a24 Zimmer Biomet (Switzerland)'),
(64201, 'https://ror.org/050g5gp35', 'no_lang_code', 1, 'https://ror.org/050g5gp35 Premaitha Health (United Kingdom)'),
(64202, 'https://ror.org/050hmr449', 'en', 1, 'https://ror.org/050hmr449 Jackson Hole Wildlife Film Festival'),
(64203, 'https://ror.org/050htcf02', 'en', 1, 'https://ror.org/050htcf02 Proliance Orthopedic Associates'),
(64204, 'https://ror.org/050ja5z71', 'no_lang_code', 1, 'https://ror.org/050ja5z71 HausMed (Germany)'),
(64205, 'https://ror.org/050k6mb72', 'no_lang_code', 1, 'https://ror.org/050k6mb72 PharmaCept (Germany)'),
(64206, 'https://ror.org/050kj6p21', 'no_lang_code', 1, 'https://ror.org/050kj6p21 Alloheim (Germany)'),
(64207, 'https://ror.org/050mwvy04', 'no_lang_code', 1, 'https://ror.org/050mwvy04 Admin Partners (Switzerland)'),
(64208, 'https://ror.org/050p4bn34', 'en', 1, 'https://ror.org/050p4bn34 Oakland Colon and Rectal Associates'),
(64209, 'https://ror.org/050p5yf06', 'en', 1, 'https://ror.org/050p5yf06 Open Medicine Institute'),
(64210, 'https://ror.org/050pcsr04', 'en', 1, 'https://ror.org/050pcsr04 Dr. Becker Rhein-Sieg Clinic Dr. Becker Rhein-Sieg-Klinik'),
(64211, 'https://ror.org/050qytm65', 'en', 1, 'https://ror.org/050qytm65 Qingdao Party School of CPC äø­å›½å…±äŗ§å…šé’å²›åø‚å§”å‘˜ä¼šå…šę ”'),
(64212, 'https://ror.org/050t8nt82', 'no_lang_code', 1, 'https://ror.org/050t8nt82 Glycemicon (Switzerland)'),
(64213, 'https://ror.org/050tgz329', 'en', 1, 'https://ror.org/050tgz329 Eastern Maine Community College'),
(64214, 'https://ror.org/050wz9j65', 'de', 1, 'https://ror.org/050wz9j65 Rehazentrum Wilhelmshaven'),
(64215, 'https://ror.org/050y6sw38', 'en', 1, 'https://ror.org/050y6sw38 Deutsche Stiftung Organtransplantation German Organ Transplantation Foundation'),
(64216, 'https://ror.org/05110bn15', 'en', 1, 'https://ror.org/05110bn15 Euskoiker Foundation'),
(64217, 'https://ror.org/05129cd91', 'no_lang_code', 1, 'https://ror.org/05129cd91 Dürr Dental (Germany)'),
(64218, 'https://ror.org/0513wsw42', 'de', 1, 'https://ror.org/0513wsw42 Deutsche AIDS-Gesellschaft'),
(64219, 'https://ror.org/0514yze14', 'no_lang_code', 1, 'https://ror.org/0514yze14 Huons (South Korea)'),
(64220, 'https://ror.org/05157de90', 'en', 1, 'https://ror.org/05157de90 Philadelphia Eye Associates'),
(64221, 'https://ror.org/0515efc31', 'no_lang_code', 1, 'https://ror.org/0515efc31 Danone (China)'),
(64222, 'https://ror.org/05165er51', 'en', 1, 'https://ror.org/05165er51 Danish College of General Practitioners Dansk Selskab for Almen Medicin'),
(64223, 'https://ror.org/0516ccm91', 'no_lang_code', 1, 'https://ror.org/0516ccm91 OIM Orthopedie (Netherlands)'),
(64224, 'https://ror.org/0518w2v98', 'en', 1, 'https://ror.org/0518w2v98 Benjamin Banneker Association'),
(64225, 'https://ror.org/051ay2y67', 'en', 1, 'https://ror.org/051ay2y67 Rashi Foundation קרן רש"י'),
(64226, 'https://ror.org/051bqjh49', 'en', 1, 'https://ror.org/051bqjh49 European Society of Cutaneous Lupus Erythematosus Europäische Gesellschaft für kutanen Lupus erythematodes'),
(64227, 'https://ror.org/051d1hf40', 'es', 1, 'https://ror.org/051d1hf40 Halitus Instituto MƩdico'),
(64228, 'https://ror.org/051fvq837', 'en', 1, 'https://ror.org/051fvq837 Hospital General Universitario Santa LucĆ­a Santa LucĆ­a University General Hospital'),
(64229, 'https://ror.org/051gnmd75', 'no_lang_code', 1, 'https://ror.org/051gnmd75 Musculoskeletal Clinical Regulatory Advisers (United States)'),
(64230, 'https://ror.org/051jvhq51', 'no_lang_code', 1, 'https://ror.org/051jvhq51 Imbed Biosciences (United States)'),
(64231, 'https://ror.org/051k3ba49', 'no_lang_code', 1, 'https://ror.org/051k3ba49 Minnesota HealthSolutions (United States)'),
(64232, 'https://ror.org/051kb4j80', 'en', 1, 'https://ror.org/051kb4j80 Ludwig Boltzmann Institute of Osteology'),
(64233, 'https://ror.org/051md9f18', 'de', 1, 'https://ror.org/051md9f18 Apothekerstiftung Westfalen-Lippe'),
(64234, 'https://ror.org/051mqhp34', 'no_lang_code', 1, 'https://ror.org/051mqhp34 Psicon (United Kingdom)'),
(64235, 'https://ror.org/051nkwd95', 'en', 1, 'https://ror.org/051nkwd95 New Renaissance Institute'),
(64236, 'https://ror.org/051r8dh72', 'no_lang_code', 1, 'https://ror.org/051r8dh72 Nano3D Biosciences (United States)'),
(64237, 'https://ror.org/051ws8490', 'en', 1, 'https://ror.org/051ws8490 Rogue Regional Medical Center'),
(64238, 'https://ror.org/051y5hr89', 'no_lang_code', 1, 'https://ror.org/051y5hr89 Landsbond der Christelijke Mutualiteiten (Belgium)'),
(64239, 'https://ror.org/051y66958', 'en', 1, 'https://ror.org/051y66958 Grinnell Regional Medical Center'),
(64240, 'https://ror.org/052414247', 'en', 1, 'https://ror.org/052414247 Centre for Studies in Economics and Finance'),
(64241, 'https://ror.org/05258cy55', 'no_lang_code', 1, 'https://ror.org/05258cy55 Genmab (United States)'),
(64242, 'https://ror.org/0525jdx88', 'de', 1, 'https://ror.org/0525jdx88 Diakonie Kork'),
(64243, 'https://ror.org/05262w896', 'en', 1, 'https://ror.org/05262w896 US Virtual Astronomical Observatory'),
(64244, 'https://ror.org/0528hwm66', 'en', 1, 'https://ror.org/0528hwm66 The Japan-Multinational Trial Organization ę—„ęœ¬ćƒ»å¤šå›½é–“č‡ØåŗŠč©¦éØ“ę©Ÿę§‹'),
(64245, 'https://ror.org/0528jqb23', 'no_lang_code', 1, 'https://ror.org/0528jqb23 Inspire Medical Systems (United States)'),
(64246, 'https://ror.org/052bwcm79', 'nl', 1, 'https://ror.org/052bwcm79 Capri Hartrevalidatie'),
(64247, 'https://ror.org/052c2ng98', 'nl', 1, 'https://ror.org/052c2ng98 ROC Leeuwenborgh'),
(64248, 'https://ror.org/052c7xn57', 'de', 1, 'https://ror.org/052c7xn57 Oberberg Stiftung'),
(64249, 'https://ror.org/052e10e62', 'no_lang_code', 1, 'https://ror.org/052e10e62 IsoPlexis (United States)'),
(64250, 'https://ror.org/052ec2555', 'en', 1, 'https://ror.org/052ec2555 HealthCare Partners Institute for Applied Research and Education'),
(64251, 'https://ror.org/052eesz64', 'no_lang_code', 1, 'https://ror.org/052eesz64 Veeda Clinical Research (India)'),
(64252, 'https://ror.org/052eqw254', 'en', 1, 'https://ror.org/052eqw254 Northwest Cancer Clinic'),
(64253, 'https://ror.org/052farg34', 'en', 1, 'https://ror.org/052farg34 Trenholm State Community College'),
(64254, 'https://ror.org/052hty126', 'no_lang_code', 1, 'https://ror.org/052hty126 Konpharma (Italy)'),
(64255, 'https://ror.org/052hwbh23', 'no_lang_code', 1, 'https://ror.org/052hwbh23 Centerline Digital (United States)'),
(64256, 'https://ror.org/052q1fv39', 'it', 1, 'https://ror.org/052q1fv39 Istituto Nazionale per le Ricerche Cardiovascolari'),
(64257, 'https://ror.org/052s3m976', 'en', 1, 'https://ror.org/052s3m976 Neurosurgeons of New Jersey'),
(64258, 'https://ror.org/052vdf235', 'en', 1, 'https://ror.org/052vdf235 Central Florida Neurosurgery Institute'),
(64259, 'https://ror.org/052vnzp53', 'de', 1, 'https://ror.org/052vnzp53 Fƶrderverein Hilfe bei Prostatakrebs'),
(64260, 'https://ror.org/052w5jd94', 'en', 1, 'https://ror.org/052w5jd94 Microcirculatory Society'),
(64261, 'https://ror.org/052w8rh87', 'no_lang_code', 1, 'https://ror.org/052w8rh87 Agunco'),
(64262, 'https://ror.org/052ycjw90', 'en', 1, 'https://ror.org/052ycjw90 Corporation for Research and Educational Networking'),
(64263, 'https://ror.org/052yr7741', 'no_lang_code', 1, 'https://ror.org/052yr7741 Azienda di Servizi alla Persona di Pavia (Italy)'),
(64264, 'https://ror.org/052z1v370', 'en', 1, 'https://ror.org/052z1v370 Nebraska Cancer Specialists'),
(64265, 'https://ror.org/052zacv77', 'pt', 1, 'https://ror.org/052zacv77 Hospital Regional Publico do Araguaia'),
(64266, 'https://ror.org/0530nw968', 'en', 1, 'https://ror.org/0530nw968 The Prompt Institute'),
(64267, 'https://ror.org/05319p535', 'no_lang_code', 1, 'https://ror.org/05319p535 SilverCloud (Ireland)'),
(64268, 'https://ror.org/05321n235', 'nl', 1, 'https://ror.org/05321n235 Kenter Jeugdhulp'),
(64269, 'https://ror.org/05340km55', 'no_lang_code', 1, 'https://ror.org/05340km55 Sterling International (United States)'),
(64270, 'https://ror.org/05393h285', 'en', 1, 'https://ror.org/05393h285 Memorial Hermann Memorial City Medical Center'),
(64271, 'https://ror.org/053a2h986', 'en', 1, 'https://ror.org/053a2h986 Saint Alphonsus Health System'),
(64272, 'https://ror.org/053ad7843', 'nl', 1, 'https://ror.org/053ad7843 ZZG zorggroep'),
(64273, 'https://ror.org/053ax5y02', 'no_lang_code', 1, 'https://ror.org/053ax5y02 Barry Callebaut (Belgium)'),
(64274, 'https://ror.org/053dfbb70', 'en', 1, 'https://ror.org/053dfbb70 Immunology Research Institute in Gifu å²é˜œåŽæå…ē–«å­¦ē ”ē©¶ę‰€'),
(64275, 'https://ror.org/053gt7v47', 'en', 1, 'https://ror.org/053gt7v47 Association of Pediatric Program Directors'),
(64276, 'https://ror.org/053gtbc96', 'no_lang_code', 1, 'https://ror.org/053gtbc96 QPS (United States)'),
(64277, 'https://ror.org/053h97f78', 'no_lang_code', 1, 'https://ror.org/053h97f78 M’s Science Corporation (Japan)'),
(64278, 'https://ror.org/053hn4213', 'en', 1, 'https://ror.org/053hn4213 North American Hair Research Society'),
(64279, 'https://ror.org/053k58g56', 'de', 1, 'https://ror.org/053k58g56 Rückenzentrum am Michel'),
(64280, 'https://ror.org/053kqnj57', 'no_lang_code', 1, 'https://ror.org/053kqnj57 SpringActive (United States)'),
(64281, 'https://ror.org/053kvet57', 'en', 1, 'https://ror.org/053kvet57 Dolfinger-McMahon Foundation'),
(64282, 'https://ror.org/053n8e896', 'pt', 1, 'https://ror.org/053n8e896 Instituto do Sono'),
(64283, 'https://ror.org/053nf2720', 'no_lang_code', 1, 'https://ror.org/053nf2720 Inion (Finland)'),
(64284, 'https://ror.org/053p3br36', 'no_lang_code', 1, 'https://ror.org/053p3br36 PharmaJet (United States)'),
(64285, 'https://ror.org/053p3yh76', 'no_lang_code', 1, 'https://ror.org/053p3yh76 Walder Wyss (Switzerland)'),
(64286, 'https://ror.org/053pqt666', 'en', 1, 'https://ror.org/053pqt666 Society for Modeling and Simulation International'),
(64287, 'https://ror.org/053q96737', 'en', 1, 'https://ror.org/053q96737 International Renal Research Institute of Vicenza'),
(64288, 'https://ror.org/053q9dm05', 'no_lang_code', 1, 'https://ror.org/053q9dm05 Progenitec (United States)'),
(64289, 'https://ror.org/053qhtw56', 'no_lang_code', 1, 'https://ror.org/053qhtw56 Imam Hossein Hospital'),
(64290, 'https://ror.org/053qwyf63', 'no_lang_code', 1, 'https://ror.org/053qwyf63 Japan Tobacco (United States)'),
(64291, 'https://ror.org/053t8d971', 'en', 1, 'https://ror.org/053t8d971 Teaching Channel'),
(64292, 'https://ror.org/053w4zz03', 'en', 1, 'https://ror.org/053w4zz03 Association for Academic Minority Physicians'),
(64293, 'https://ror.org/053x0fn40', 'de', 1, 'https://ror.org/053x0fn40 IKK Classic'),
(64294, 'https://ror.org/053xtf838', 'en', 1, 'https://ror.org/053xtf838 Mendocino Coast District Hospital'),
(64295, 'https://ror.org/053y21h59', 'no_lang_code', 1, 'https://ror.org/053y21h59 Metcut Research (United States)'),
(64296, 'https://ror.org/0540d1y92', 'nl', 1, 'https://ror.org/0540d1y92 AO Nederland'),
(64297, 'https://ror.org/0540mv626', 'en', 1, 'https://ror.org/0540mv626 AHEC West'),
(64298, 'https://ror.org/05415x202', 'en', 1, 'https://ror.org/05415x202 Caron'),
(64299, 'https://ror.org/0541h6s03', 'es', 1, 'https://ror.org/0541h6s03 Fundación Universitaria Iberoamericana'),
(64300, 'https://ror.org/0546e1p84', 'en', 1, 'https://ror.org/0546e1p84 Great Plains Regional Medical Center'),
(64301, 'https://ror.org/0546j8a61', 'en', 1, 'https://ror.org/0546j8a61 Institute for Pulmonary Diseases of Vojvodina'),
(64302, 'https://ror.org/0549yzf33', 'en', 1, 'https://ror.org/0549yzf33 Main Line Center for Laser Surgery'),
(64303, 'https://ror.org/054a8d283', 'no_lang_code', 1, 'https://ror.org/054a8d283 Applied LifeSciences & Systems (United States)'),
(64304, 'https://ror.org/054azm735', 'es', 1, 'https://ror.org/054azm735 Instituto de OncologĆ­a de Rosario'),
(64305, 'https://ror.org/054bkqx30', 'pt', 1, 'https://ror.org/054bkqx30 Instituto de Terapia Integrada e Oriental'),
(64306, 'https://ror.org/054c9y537', 'en', 1, 'https://ror.org/054c9y537 Bundeszentrale für Gesundheitliche Aufklärung Federal Centre for Health Education'),
(64307, 'https://ror.org/054d83h93', 'nl', 1, 'https://ror.org/054d83h93 Cornelia-Stichting'),
(64308, 'https://ror.org/054df3r05', 'no_lang_code', 1, 'https://ror.org/054df3r05 GlaxoSmithKline (Sweden)'),
(64309, 'https://ror.org/054dhkd21', 'en', 1, 'https://ror.org/054dhkd21 Rheumatology Consultants'),
(64310, 'https://ror.org/054dq1w53', 'en', 1, 'https://ror.org/054dq1w53 Sericulture and Agricultural Products Research Institute å¹æäøœēœå†œäøšē§‘å­¦é™¢čš•äøšäøŽå†œäŗ§å“åŠ å·„ē ”ē©¶ę‰€'),
(64311, 'https://ror.org/054ey2125', 'de', 1, 'https://ror.org/054ey2125 Behandlungszentrum Aschau'),
(64312, 'https://ror.org/054fev274', 'de', 1, 'https://ror.org/054fev274 Evangelisches Diakoniekrankenhaus'),
(64313, 'https://ror.org/054gy5e97', 'en', 1, 'https://ror.org/054gy5e97 Agency for Integrated Care'),
(64314, 'https://ror.org/054jcxz87', 'fr', 1, 'https://ror.org/054jcxz87 Groupe Hospitalier de la RƩgion de Mulhouse et Sud Alsace'),
(64315, 'https://ror.org/054jdkk48', 'en', 1, 'https://ror.org/054jdkk48 Hanoi Medical University Hospital'),
(64316, 'https://ror.org/054khgx03', 'en', 1, 'https://ror.org/054khgx03 International Science and Technology Institute'),
(64317, 'https://ror.org/054m0e665', 'en', 1, 'https://ror.org/054m0e665 Grupo Español de Investigación en Sarcomas Spanish Research Group on Sarcomas'),
(64318, 'https://ror.org/054mtjm83', 'en', 1, 'https://ror.org/054mtjm83 NatureBridge'),
(64319, 'https://ror.org/054p08670', 'en', 1, 'https://ror.org/054p08670 Regional Children''s Hospital No1'),
(64320, 'https://ror.org/054q96n74', 'no_lang_code', 1, 'https://ror.org/054q96n74 AstraZeneca (Germany)'),
(64321, 'https://ror.org/054rg6027', 'en', 1, 'https://ror.org/054rg6027 Port Kennedy Association'),
(64322, 'https://ror.org/054svy457', 'no_lang_code', 1, 'https://ror.org/054svy457 SilverFit (Netherlands)'),
(64323, 'https://ror.org/054vkyc79', 'de', 1, 'https://ror.org/054vkyc79 Evangelisches Krankenhaus Kƶnigin Elisabeth Herzberge'),
(64324, 'https://ror.org/054wms778', 'fr', 1, 'https://ror.org/054wms778 Association pour l''Utilisation du Rein Artificiel'),
(64325, 'https://ror.org/054zhk838', 'en', 1, 'https://ror.org/054zhk838 National Scientific Center "M.D. Strazhesko Institute of Cardiology" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр ''М.Š”. Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карГіології ім. Дтражеска'),
(64326, 'https://ror.org/054zjpg49', 'no_lang_code', 1, 'https://ror.org/054zjpg49 OneVax (United States)'),
(64327, 'https://ror.org/054zktz40', 'nl', 1, 'https://ror.org/054zktz40 TKI Treco'),
(64328, 'https://ror.org/054zxwt86', 'de', 1, 'https://ror.org/054zxwt86 Evangelisches Krankenhaus Mettmann'),
(64329, 'https://ror.org/0550wc655', 'en', 1, 'https://ror.org/0550wc655 Charles H. Hood Foundation'),
(64330, 'https://ror.org/055273664', 'en', 1, 'https://ror.org/055273664 National Heart Institute'),
(64331, 'https://ror.org/0552kvw18', 'en', 1, 'https://ror.org/0552kvw18 Australia New Zealand Gynaecological Oncology Group'),
(64332, 'https://ror.org/05535a176', 'en', 1, 'https://ror.org/05535a176 Kaiser Permanente Orange County Irvine Medical Center'),
(64333, 'https://ror.org/05540q762', 'en', 1, 'https://ror.org/05540q762 Northern Westchester Hospital'),
(64334, 'https://ror.org/0555sjc23', 'no_lang_code', 1, 'https://ror.org/0555sjc23 Universal Dialog (United States)'),
(64335, 'https://ror.org/0556qd820', 'en', 1, 'https://ror.org/0556qd820 Inland Empire Liver Foundation'),
(64336, 'https://ror.org/0559vb332', 'en', 1, 'https://ror.org/0559vb332 D.A.V Centenary Dental College'),
(64337, 'https://ror.org/055bjxf28', 'en', 1, 'https://ror.org/055bjxf28 Retina Clinic'),
(64338, 'https://ror.org/055bwx684', 'en', 1, 'https://ror.org/055bwx684 Association for Utah Community Health'),
(64339, 'https://ror.org/055cpj147', 'it', 1, 'https://ror.org/055cpj147 Centro Interuniversitario di Ricerca sui Peptidi Bioattivi'),
(64340, 'https://ror.org/055g9vf08', 'en', 1, 'https://ror.org/055g9vf08 Human Development Research Foundation'),
(64341, 'https://ror.org/055j6t743', 'en', 1, 'https://ror.org/055j6t743 Texas Institute of Dermatology Laser and Cosmetic Surgery'),
(64342, 'https://ror.org/055jf3p69', 'de', 1, 'https://ror.org/055jf3p69 Wissenschaftliches Institut der AOK'),
(64343, 'https://ror.org/055kjct22', 'en', 1, 'https://ror.org/055kjct22 Asante Three Rivers Medical Center'),
(64344, 'https://ror.org/055kp8612', 'no_lang_code', 1, 'https://ror.org/055kp8612 Libbs (Brazil)'),
(64345, 'https://ror.org/055kyaa64', 'de', 1, 'https://ror.org/055kyaa64 Rheinhessen-Fachklinik Mainz'),
(64346, 'https://ror.org/055m95h02', 'en', 1, 'https://ror.org/055m95h02 Werlhof Institute'),
(64347, 'https://ror.org/055papc77', 'en', 1, 'https://ror.org/055papc77 Tennessee Retina'),
(64348, 'https://ror.org/055rf7657', 'no_lang_code', 1, 'https://ror.org/055rf7657 Roche (Sweden)'),
(64349, 'https://ror.org/055ryq086', 'no_lang_code', 1, 'https://ror.org/055ryq086 TRC Companies (United States)'),
(64350, 'https://ror.org/055tk9p53', 'de', 1, 'https://ror.org/055tk9p53 Asklepios'),
(64351, 'https://ror.org/055tmjh12', 'en', 1, 'https://ror.org/055tmjh12 Asthma Association ŠŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ Астма'),
(64352, 'https://ror.org/055tvcv06', 'en', 1, 'https://ror.org/055tvcv06 Four Corners School of Outdoor Education'),
(64353, 'https://ror.org/055vbz424', 'no_lang_code', 1, 'https://ror.org/055vbz424 Score (Netherlands)'),
(64354, 'https://ror.org/055vkj473', 'no_lang_code', 1, 'https://ror.org/055vkj473 Cox Enterprises (United States)'),
(64355, 'https://ror.org/055w00q26', 'de', 1, 'https://ror.org/055w00q26 Parkinson-Klinik Ortenau'),
(64356, 'https://ror.org/055x1zb82', 'no_lang_code', 1, 'https://ror.org/055x1zb82 Osypka (Germany)'),
(64357, 'https://ror.org/055zj4e19', 'en', 1, 'https://ror.org/055zj4e19 Centra Health'),
(64358, 'https://ror.org/0560yf995', 'en', 1, 'https://ror.org/0560yf995 Feminist Majority Foundation'),
(64359, 'https://ror.org/0561hjj97', 'en', 1, 'https://ror.org/0561hjj97 Milwaukee Health Department'),
(64360, 'https://ror.org/0562b6777', 'en', 1, 'https://ror.org/0562b6777 Center for World Indigenous Studies'),
(64361, 'https://ror.org/0564c7p76', 'nl', 1, 'https://ror.org/0564c7p76 Verslavingszorg Noord Nederland'),
(64362, 'https://ror.org/0566emh82', 'en', 1, 'https://ror.org/0566emh82 KKT Orthopedic Spine Center'),
(64363, 'https://ror.org/0567gec15', 'en', 1, 'https://ror.org/0567gec15 The Memory Clinic'),
(64364, 'https://ror.org/056bmw021', 'hr', 1, 'https://ror.org/056bmw021 Opća Bolnica Varaždin'),
(64365, 'https://ror.org/056efxn58', 'de', 1, 'https://ror.org/056efxn58 Klinik und Poliklinik für Urologie, Kinderurologie und Andrologie'),
(64366, 'https://ror.org/056gvz809', 'de', 1, 'https://ror.org/056gvz809 Klinik und Poliklinik für Augenheilkunde am Universitätsklinikum Carl Gustav Carus'),
(64367, 'https://ror.org/056ha9e61', 'de', 1, 'https://ror.org/056ha9e61 Urologische Klinik München'),
(64368, 'https://ror.org/056jbdt18', 'no_lang_code', 1, 'https://ror.org/056jbdt18 Yakult (Netherlands)'),
(64369, 'https://ror.org/056jvp908', 'en', 1, 'https://ror.org/056jvp908 Nebraska Independent College Foundation'),
(64370, 'https://ror.org/056npsb07', 'en', 1, 'https://ror.org/056npsb07 Union City Public Schools'),
(64371, 'https://ror.org/056p0fy66', 'no_lang_code', 1, 'https://ror.org/056p0fy66 Daval International (United Kingdom)'),
(64372, 'https://ror.org/056pp8v93', 'en', 1, 'https://ror.org/056pp8v93 Monadnock Community Hospital'),
(64373, 'https://ror.org/056tvxc50', 'en', 1, 'https://ror.org/056tvxc50 Baptist Health Paducah'),
(64374, 'https://ror.org/056v13058', 'nl', 1, 'https://ror.org/056v13058 Fonds Verstandelijk Gehandicapten'),
(64375, 'https://ror.org/056v2vw30', 'en', 1, 'https://ror.org/056v2vw30 The Orthopaedic Institute'),
(64376, 'https://ror.org/056vah748', 'nl', 1, 'https://ror.org/056vah748 Federatie Medisch Specialisten'),
(64377, 'https://ror.org/056w6an22', 'en', 1, 'https://ror.org/056w6an22 North Carolina Department of Administration'),
(64378, 'https://ror.org/056xgt572', 'en', 1, 'https://ror.org/056xgt572 Colorado Springs Osteopathic Foundation'),
(64379, 'https://ror.org/056xm2x07', 'ro', 1, 'https://ror.org/056xm2x07 Spitalul Clinic Judetean de Urgenta Sibiu'),
(64380, 'https://ror.org/056y4sn81', 'de', 1, 'https://ror.org/056y4sn81 Evangelisches Krankenhaus Gƶttingen-Weende'),
(64381, 'https://ror.org/05712eb04', 'en', 1, 'https://ror.org/05712eb04 Pacific Sociological Association'),
(64382, 'https://ror.org/05724sa39', 'en', 1, 'https://ror.org/05724sa39 Fondation Sandra Schmirler Sandra Schmirler Foundation'),
(64383, 'https://ror.org/0572qg377', 'en', 1, 'https://ror.org/0572qg377 Associated Neurologists of Southern Connecticut'),
(64384, 'https://ror.org/057484769', 'no_lang_code', 1, 'https://ror.org/057484769 Fine Treatment (United Kingdom)'),
(64385, 'https://ror.org/0575y1m09', 'es', 1, 'https://ror.org/0575y1m09 Instituto de Salud MusculoesquelƩtica'),
(64386, 'https://ror.org/057601z40', 'en', 1, 'https://ror.org/057601z40 Tidelands Health'),
(64387, 'https://ror.org/0576xfs30', 'en', 1, 'https://ror.org/0576xfs30 Behman Hospital'),
(64388, 'https://ror.org/057889117', 'de', 1, 'https://ror.org/057889117 Investitionsbank Sachsen-Anhalt');
INSERT INTO `rors` VALUES
(64389, 'https://ror.org/0579h7m09', 'no_lang_code', 1, 'https://ror.org/0579h7m09 Creative Research Enterprises (United States)'),
(64390, 'https://ror.org/057a13j38', 'nl', 1, 'https://ror.org/057a13j38 Mediant Geestelijke Gezondheidszorg'),
(64391, 'https://ror.org/057b57860', 'en', 1, 'https://ror.org/057b57860 Dattoli Cancer Center and Brachytherapy Research Institute'),
(64392, 'https://ror.org/057bhmh42', 'en', 1, 'https://ror.org/057bhmh42 Second Affiliated Hospital of Shandong University of TCM å±±äøœäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(64393, 'https://ror.org/057c4v611', 'en', 1, 'https://ror.org/057c4v611 International Brain Research Foundation'),
(64394, 'https://ror.org/057e5kw77', 'en', 1, 'https://ror.org/057e5kw77 American Academy of Osteopathy'),
(64395, 'https://ror.org/057hhh802', 'de', 1, 'https://ror.org/057hhh802 Verband Deutscher Mineralbrunnen'),
(64396, 'https://ror.org/057hq8k55', 'en', 1, 'https://ror.org/057hq8k55 Texas Society of Allied Health Professions'),
(64397, 'https://ror.org/057hv3t60', 'en', 1, 'https://ror.org/057hv3t60 Arkansas Children’s Foundation'),
(64398, 'https://ror.org/057j2mw04', 'no_lang_code', 1, 'https://ror.org/057j2mw04 NanoHybrids (United States)'),
(64399, 'https://ror.org/057kxm327', 'fr', 1, 'https://ror.org/057kxm327 SociĆ©tĆ© Francophone d’Arthroscopie'),
(64400, 'https://ror.org/057kybq87', 'en', 1, 'https://ror.org/057kybq87 Bridgewater Community Healthcare NHS Foundation Trust'),
(64401, 'https://ror.org/057kz9b56', 'en', 1, 'https://ror.org/057kz9b56 Southern Oncology Specialists'),
(64402, 'https://ror.org/057q38q18', 'en', 1, 'https://ror.org/057q38q18 Aurora BayCare Medical Center'),
(64403, 'https://ror.org/057qnv003', 'en', 1, 'https://ror.org/057qnv003 Gaston Hematology & Oncology Associates'),
(64404, 'https://ror.org/057r0z941', 'nl', 1, 'https://ror.org/057r0z941 Praktijkondersteuning Zuidoost-Brabant'),
(64405, 'https://ror.org/057r18x87', 'no_lang_code', 1, 'https://ror.org/057r18x87 All Sum Research Center (Canada)'),
(64406, 'https://ror.org/057s1m822', 'en', 1, 'https://ror.org/057s1m822 Florida Department of Citrus'),
(64407, 'https://ror.org/057sba841', 'en', 1, 'https://ror.org/057sba841 Keloid Research Foundation'),
(64408, 'https://ror.org/057schw20', 'de', 1, 'https://ror.org/057schw20 Schƶn Klinik Berchtesgadener Land'),
(64409, 'https://ror.org/057w77e54', 'no_lang_code', 1, 'https://ror.org/057w77e54 Leo Pharma (United States)'),
(64410, 'https://ror.org/057ybbc09', 'no_lang_code', 1, 'https://ror.org/057ybbc09 N. V. Pharma (India)'),
(64411, 'https://ror.org/0580n4369', 'en', 1, 'https://ror.org/0580n4369 Minnesota Science Teachers Association'),
(64412, 'https://ror.org/058196w54', 'en', 1, 'https://ror.org/058196w54 Carolina Urology Partners'),
(64413, 'https://ror.org/0581as286', 'en', 1, 'https://ror.org/0581as286 Square Hospitals'),
(64414, 'https://ror.org/0581hjr43', 'en', 1, 'https://ror.org/0581hjr43 Bendigo Hospital'),
(64415, 'https://ror.org/0582awy59', 'en', 1, 'https://ror.org/0582awy59 Sparrow Thoracic Cardiovascular Institute'),
(64416, 'https://ror.org/05841h928', 'en', 1, 'https://ror.org/05841h928 North Central London Research Consortium'),
(64417, 'https://ror.org/0584knp84', 'no_lang_code', 1, 'https://ror.org/0584knp84 Nucleix (Israel)'),
(64418, 'https://ror.org/0585bbm72', 'en', 1, 'https://ror.org/0585bbm72 Clinical Infectious Disease Hospital named after S.P. Botkin ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠøŠ½Ń„ŠµŠŗŃ†ŠøŠ¾Š½Š½Š°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° имени Š”. П. Боткина'),
(64419, 'https://ror.org/0585r9546', 'en', 1, 'https://ror.org/0585r9546 Farr Institute'),
(64420, 'https://ror.org/05887gz78', 'lt', 1, 'https://ror.org/05887gz78 Centro poliklinika'),
(64421, 'https://ror.org/058ab9q40', 'en', 1, 'https://ror.org/058ab9q40 The Lynn Sage Foundation'),
(64422, 'https://ror.org/058avwz62', 'en', 1, 'https://ror.org/058avwz62 CanRevive'),
(64423, 'https://ror.org/058fx5466', 'en', 1, 'https://ror.org/058fx5466 University Radiology'),
(64424, 'https://ror.org/058g4tt51', 'da', 1, 'https://ror.org/058g4tt51 Edgar Schnohr og hustru Gilberte Schnohr''s Fond'),
(64425, 'https://ror.org/058g8jq83', 'no_lang_code', 1, 'https://ror.org/058g8jq83 Sanofi (Brazil)'),
(64426, 'https://ror.org/058ma0d84', 'en', 1, 'https://ror.org/058ma0d84 Tƶƶlƶ Hospital'),
(64427, 'https://ror.org/058n6ep94', 'de', 1, 'https://ror.org/058n6ep94 Bethlehem Gesundheitszentrum Stolberg'),
(64428, 'https://ror.org/058nqnd90', 'en', 1, 'https://ror.org/058nqnd90 Japanese Society of CT Screening ę—„ęœ¬CT検診学会'),
(64429, 'https://ror.org/058q6bh20', 'en', 1, 'https://ror.org/058q6bh20 Sheridan Memorial Hospital'),
(64430, 'https://ror.org/058rwr454', 'en', 1, 'https://ror.org/058rwr454 University of Ottawa Skills and Simulation Centre'),
(64431, 'https://ror.org/058s7pp59', 'en', 1, 'https://ror.org/058s7pp59 Northcentral Arkansas Education Cooperative'),
(64432, 'https://ror.org/058tkvp17', 'en', 1, 'https://ror.org/058tkvp17 University Resident Theatre Association'),
(64433, 'https://ror.org/058wnr349', 'no_lang_code', 1, 'https://ror.org/058wnr349 Cardialysis (Netherlands)'),
(64434, 'https://ror.org/058wr8j84', 'en', 1, 'https://ror.org/058wr8j84 China Academy of Fiscal Science 中国蓢政科学研究院'),
(64435, 'https://ror.org/058x0nn53', 'nl', 1, 'https://ror.org/058x0nn53 Centrum Oosterwal'),
(64436, 'https://ror.org/058x4qg04', 'en', 1, 'https://ror.org/058x4qg04 A Step Ahead Foundation'),
(64437, 'https://ror.org/058yj6h98', 'en', 1, 'https://ror.org/058yj6h98 Respiratory Clinical Trials'),
(64438, 'https://ror.org/05901gg63', 'en', 1, 'https://ror.org/05901gg63 Chemical Industry Press åŒ–å­¦å·„äøšå‡ŗē‰ˆē¤¾'),
(64439, 'https://ror.org/05908bk79', 'en', 1, 'https://ror.org/05908bk79 Cancer Center of Western Wisconsin'),
(64440, 'https://ror.org/0590c4t82', 'en', 1, 'https://ror.org/0590c4t82 Academic Research in Complementary and Integrative Medicine'),
(64441, 'https://ror.org/0590fg074', 'en', 1, 'https://ror.org/0590fg074 Environmental Health'),
(64442, 'https://ror.org/059151f39', 'pl', 1, 'https://ror.org/059151f39 Samodzielny Publiczny Szpital Kliniczny im. prof. W. Orłowskiego CMKP'),
(64443, 'https://ror.org/05916vc09', 'no_lang_code', 1, 'https://ror.org/05916vc09 DMG (Germany)'),
(64444, 'https://ror.org/0592a5f63', 'en', 1, 'https://ror.org/0592a5f63 Foundation for Spinal Cord Research Moelle Epinière et Motricité Québec'),
(64445, 'https://ror.org/05955c602', 'de', 1, 'https://ror.org/05955c602 HausƤrzteverband Sachsen-Anhalt'),
(64446, 'https://ror.org/0595wzt18', 'en', 1, 'https://ror.org/0595wzt18 Guangdong 999 Brain Hospital 广东999č„‘ē§‘åŒ»é™¢'),
(64447, 'https://ror.org/05980vk77', 'en', 1, 'https://ror.org/05980vk77 Hernando Eye Institute'),
(64448, 'https://ror.org/05988vk42', 'en', 1, 'https://ror.org/05988vk42 Korean Society of Coloproctology ėŒ€ķ•œėŒ€ģž„ķ•­ė¬øķ•™ķšŒ'),
(64449, 'https://ror.org/0598b8w92', 'nl', 1, 'https://ror.org/0598b8w92 Nederlandse Vereniging voor Hepatologie'),
(64450, 'https://ror.org/0598gge11', 'en', 1, 'https://ror.org/0598gge11 Ridgewater College'),
(64451, 'https://ror.org/059ape351', 'no_lang_code', 1, 'https://ror.org/059ape351 CCM Clinical Research Group (United States)'),
(64452, 'https://ror.org/059b2sn04', 'no_lang_code', 1, 'https://ror.org/059b2sn04 Guangdong Inspection and Quarantine Technology Center (China)'),
(64453, 'https://ror.org/059gavv29', 'nl', 1, 'https://ror.org/059gavv29 Rijnlands Revalidatie Centrum'),
(64454, 'https://ror.org/059gjhp96', 'no_lang_code', 1, 'https://ror.org/059gjhp96 Adtec Plasma Technology (United Kingdom)'),
(64455, 'https://ror.org/059gs6g36', 'en', 1, 'https://ror.org/059gs6g36 KSYOS TeleMedical Centre KSYOS TeleMedisch Centrum'),
(64456, 'https://ror.org/059hprj06', 'es', 1, 'https://ror.org/059hprj06 Hospital Recoletas Campo Grande'),
(64457, 'https://ror.org/059hsbq74', 'en', 1, 'https://ror.org/059hsbq74 Dearborn-Sah Institute For Joint Restoration'),
(64458, 'https://ror.org/059j7sj66', 'no_lang_code', 1, 'https://ror.org/059j7sj66 Wockhardt (United States)'),
(64459, 'https://ror.org/059rgaq66', 'sv', 1, 'https://ror.org/059rgaq66 Fertilitetscentrum'),
(64460, 'https://ror.org/059rjv992', 'no_lang_code', 1, 'https://ror.org/059rjv992 EarlySense (Israel)'),
(64461, 'https://ror.org/059vcy092', 'en', 1, 'https://ror.org/059vcy092 State Autonomous Institution of Health Interregional Clinical Diagnostic Center ŠŸŠ¾Š»ŠøŃ‚ŠøŠŗŠ° ŠŗŠ¾Š½Ń„ŠøŠ“ŠµŠ½Ń†ŠøŠ°Š»ŃŒŠ½Š¾ŃŃ‚Šø ŠæŠµŃ€ŃŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… Ганных сайта'),
(64462, 'https://ror.org/059w81j32', 'en', 1, 'https://ror.org/059w81j32 Olathe Medical Center'),
(64463, 'https://ror.org/05a3a1625', 'en', 1, 'https://ror.org/05a3a1625 Professional Footballers'' Association'),
(64464, 'https://ror.org/05a3ksk07', 'en', 1, 'https://ror.org/05a3ksk07 GVK Emergency Management and Research Institute'),
(64465, 'https://ror.org/05a4m8k76', 'es', 1, 'https://ror.org/05a4m8k76 Hospital de Especialidades JosƩ Carrasco Arteaga'),
(64466, 'https://ror.org/05a4nj078', 'en', 1, 'https://ror.org/05a4nj078 Centro Común de Investigación Joint Research Center'),
(64467, 'https://ror.org/05a55tn50', 'en', 1, 'https://ror.org/05a55tn50 Forbes Hospital'),
(64468, 'https://ror.org/05a76fs70', 'en', 1, 'https://ror.org/05a76fs70 Sentara Virginia Beach General Hospital'),
(64469, 'https://ror.org/05a8epj20', 'en', 1, 'https://ror.org/05a8epj20 Pension Fund for Care and Well-Being Stichting Pensioenfonds Zorg en Welzijn'),
(64470, 'https://ror.org/05a90wj20', 'en', 1, 'https://ror.org/05a90wj20 Girl Scouts of NE Kansas and NW Missouri'),
(64471, 'https://ror.org/05a92a023', 'en', 1, 'https://ror.org/05a92a023 Institut für Materialprüfung und Werkstofftechnik Institute for Materials Testing and Materials Technology Dr. Neubert'),
(64472, 'https://ror.org/05a9k3463', 'en', 1, 'https://ror.org/05a9k3463 Kaiser Permanente Franklin Medical Offices'),
(64473, 'https://ror.org/05a9rbd10', 'en', 1, 'https://ror.org/05a9rbd10 Sage Bariatric Institute'),
(64474, 'https://ror.org/05aaaax52', 'en', 1, 'https://ror.org/05aaaax52 Alana''s Foundation'),
(64475, 'https://ror.org/05aatnq11', 'en', 1, 'https://ror.org/05aatnq11 Respiratory and Meningeal Pathogens Research Unit'),
(64476, 'https://ror.org/05abb3j67', 'en', 1, 'https://ror.org/05abb3j67 Croatian Society of Regional Anaesthesia and Analgesia Hrvatsko druŔtvo regionalne anestezije i analgezije'),
(64477, 'https://ror.org/05abkk781', 'en', 1, 'https://ror.org/05abkk781 Universities Scotland'),
(64478, 'https://ror.org/05acg0e96', 'no_lang_code', 1, 'https://ror.org/05acg0e96 High Speed Sustainable Manufacturing Institute (United Kingdom)'),
(64479, 'https://ror.org/05agddf32', 'de', 1, 'https://ror.org/05agddf32 MVZ - Kurfürstendamm'),
(64480, 'https://ror.org/05akv3y05', 'en', 1, 'https://ror.org/05akv3y05 National Association of Conservation Districts'),
(64481, 'https://ror.org/05am1q986', 'en', 1, 'https://ror.org/05am1q986 Pharmalog (Germany)'),
(64482, 'https://ror.org/05am7x020', 'id', 1, 'https://ror.org/05am7x020 Dr. National Center General Hospital Cipto Mangunkusumo Rumah Sakit Umum Pusat Nasional Dr. Cipto Mangunkusumo'),
(64483, 'https://ror.org/05amk1r13', 'en', 1, 'https://ror.org/05amk1r13 Children''s City Clinical Hospital ā„–11'),
(64484, 'https://ror.org/05ane1z80', 'en', 1, 'https://ror.org/05ane1z80 Sheth M. L. Vaduwala Charitable Eye Hospital and Dr. Thakorbhai V. Patel Eye Institute'),
(64485, 'https://ror.org/05apf4k11', 'en', 1, 'https://ror.org/05apf4k11 Myanmar Liver Foundation'),
(64486, 'https://ror.org/05aqc8c91', 'de', 1, 'https://ror.org/05aqc8c91 Gelenkpunkt'),
(64487, 'https://ror.org/05arjk578', 'en', 1, 'https://ror.org/05arjk578 Trinity Health'),
(64488, 'https://ror.org/05at6ra83', 'en', 1, 'https://ror.org/05at6ra83 Orange Regional Medical Center'),
(64489, 'https://ror.org/05at6sw30', 'es', 1, 'https://ror.org/05at6sw30 Hospital Universitario Infantil San JosƩ University Children''s Hospital of San JosƩ'),
(64490, 'https://ror.org/05atcw115', 'no_lang_code', 1, 'https://ror.org/05atcw115 GlaxoSmithKline (Netherlands)'),
(64491, 'https://ror.org/05avj5s69', 'en', 1, 'https://ror.org/05avj5s69 Shenzhen Genoimmune Medical Institute'),
(64492, 'https://ror.org/05aznfd39', 'en', 1, 'https://ror.org/05aznfd39 Network of European Foundations'),
(64493, 'https://ror.org/05b0t4w03', 'en', 1, 'https://ror.org/05b0t4w03 Association of Microfinance Institutions in Rwanda'),
(64494, 'https://ror.org/05b1whg73', 'en', 1, 'https://ror.org/05b1whg73 OSF St. Joseph Medical Center'),
(64495, 'https://ror.org/05b58s093', 'no_lang_code', 1, 'https://ror.org/05b58s093 Pentracor (Germany)'),
(64496, 'https://ror.org/05b6jwz86', 'no_lang_code', 1, 'https://ror.org/05b6jwz86 World of Medicine (Germany)'),
(64497, 'https://ror.org/05b7by496', 'en', 1, 'https://ror.org/05b7by496 International Neuromodulation Society'),
(64498, 'https://ror.org/05b8d3v21', 'en', 1, 'https://ror.org/05b8d3v21 Antalya IVF'),
(64499, 'https://ror.org/05b9hfy12', 'en', 1, 'https://ror.org/05b9hfy12 Lifecenter Hospital'),
(64500, 'https://ror.org/05baejf18', 'no_lang_code', 1, 'https://ror.org/05baejf18 PhylloTech (United States)'),
(64501, 'https://ror.org/05be8g764', 'en', 1, 'https://ror.org/05be8g764 Public Responsibility in Medicine and Research'),
(64502, 'https://ror.org/05beaz940', 'nl', 1, 'https://ror.org/05beaz940 Vereniging van Zorgaanbieders voor Zorgcommunicatie'),
(64503, 'https://ror.org/05bfdfr32', 'en', 1, 'https://ror.org/05bfdfr32 Anoka-Hennepin School District'),
(64504, 'https://ror.org/05bgdck98', 'pt', 1, 'https://ror.org/05bgdck98 Instituto Nefrológico de Campinas'),
(64505, 'https://ror.org/05bgwpv79', 'no_lang_code', 1, 'https://ror.org/05bgwpv79 Bioenergy Life Science (United States)'),
(64506, 'https://ror.org/05bmt9g57', 'no_lang_code', 1, 'https://ror.org/05bmt9g57 Hero Benelux (Netherlands)'),
(64507, 'https://ror.org/05bn46e89', 'en', 1, 'https://ror.org/05bn46e89 Emory University Orthopaedics and Spine Hospital'),
(64508, 'https://ror.org/05bp5yn81', 'en', 1, 'https://ror.org/05bp5yn81 Fiber Optic Association'),
(64509, 'https://ror.org/05bq6d892', 'en', 1, 'https://ror.org/05bq6d892 Pamoja Tunaweza Women''s Centre'),
(64510, 'https://ror.org/05bt97174', 'no_lang_code', 1, 'https://ror.org/05bt97174 enEvolv (United States)'),
(64511, 'https://ror.org/05btveq09', 'de', 1, 'https://ror.org/05btveq09 SLK-Kliniken Heilbronn'),
(64512, 'https://ror.org/05bvayz93', 'no_lang_code', 1, 'https://ror.org/05bvayz93 Muhimbili Orthopaedic Institute'),
(64513, 'https://ror.org/05bw8dc26', 'en', 1, 'https://ror.org/05bw8dc26 Newfound Harbor Marine Institute'),
(64514, 'https://ror.org/05bzbnj80', 'no_lang_code', 1, 'https://ror.org/05bzbnj80 Bifodan (Denmark)'),
(64515, 'https://ror.org/05c06xk76', 'de', 1, 'https://ror.org/05c06xk76 Universitätsklinik für Stereotaktische Neurochirurgie'),
(64516, 'https://ror.org/05c1xy536', 'en', 1, 'https://ror.org/05c1xy536 Arizona Oncology'),
(64517, 'https://ror.org/05c25gm39', 'es', 1, 'https://ror.org/05c25gm39 Cardiovascular Institute of Rosario Instituto Cardiovascular de Rosario'),
(64518, 'https://ror.org/05c3kx226', 'en', 1, 'https://ror.org/05c3kx226 First Alaskans Institute'),
(64519, 'https://ror.org/05c3qep79', 'no_lang_code', 1, 'https://ror.org/05c3qep79 C-RAD (Sweden)'),
(64520, 'https://ror.org/05c4jjy50', 'en', 1, 'https://ror.org/05c4jjy50 Medica Foundation'),
(64521, 'https://ror.org/05c9r4685', 'en', 1, 'https://ror.org/05c9r4685 Dignity Health'),
(64522, 'https://ror.org/05c9swc26', 'en', 1, 'https://ror.org/05c9swc26 Museum of New Zealand Te Papa Tongarewa'),
(64523, 'https://ror.org/05cb6kb05', 'en', 1, 'https://ror.org/05cb6kb05 Penn Highlands DuBois'),
(64524, 'https://ror.org/05cbe5r14', 'de', 1, 'https://ror.org/05cbe5r14 Zentrum für Psychiatrie Emmendingen'),
(64525, 'https://ror.org/05cc53v60', 'de', 1, 'https://ror.org/05cc53v60 Fachverband SAPV Hessen'),
(64526, 'https://ror.org/05ccbwp98', 'en', 1, 'https://ror.org/05ccbwp98 Premier Clinical Research Institute'),
(64527, 'https://ror.org/05cdyhf91', 'en', 1, 'https://ror.org/05cdyhf91 Universiteit van Aruba University of Aruba'),
(64528, 'https://ror.org/05ceh6345', 'no_lang_code', 1, 'https://ror.org/05ceh6345 Dukat (Croatia)'),
(64529, 'https://ror.org/05cej7184', 'nl', 1, 'https://ror.org/05cej7184 SIDN Fonds'),
(64530, 'https://ror.org/05cfhyk75', 'en', 1, 'https://ror.org/05cfhyk75 Neys-van Hoogstraten Foundation'),
(64531, 'https://ror.org/05cga6x45', 'en', 1, 'https://ror.org/05cga6x45 Sports Surgery Clinic'),
(64532, 'https://ror.org/05ch34p88', 'de', 1, 'https://ror.org/05ch34p88 Neurologisches Rehabilitationszentrum Leipzig'),
(64533, 'https://ror.org/05cj0xg89', 'de', 1, 'https://ror.org/05cj0xg89 Akademie Für Osteopathie'),
(64534, 'https://ror.org/05ctk4y92', 'en', 1, 'https://ror.org/05ctk4y92 William W Backus Hospital'),
(64535, 'https://ror.org/05cvcn611', 'fr', 1, 'https://ror.org/05cvcn611 Clinique du Grand Large'),
(64536, 'https://ror.org/05cvd1d02', 'no_lang_code', 1, 'https://ror.org/05cvd1d02 Diamed Medizintechnik (Germany)'),
(64537, 'https://ror.org/05cven481', 'en', 1, 'https://ror.org/05cven481 UK Thalassaemia Society'),
(64538, 'https://ror.org/05cxhm587', 'en', 1, 'https://ror.org/05cxhm587 Channel Islands Marine & Wildlife Institute'),
(64539, 'https://ror.org/05cygvk74', 'en', 1, 'https://ror.org/05cygvk74 Pactive Motion'),
(64540, 'https://ror.org/05czd8n07', 'en', 1, 'https://ror.org/05czd8n07 Illinois Retina Associates'),
(64541, 'https://ror.org/05d0e9y67', 'no_lang_code', 1, 'https://ror.org/05d0e9y67 Eli Lilly (Italy)'),
(64542, 'https://ror.org/05d0mtf30', 'en', 1, 'https://ror.org/05d0mtf30 Ministry of Public Health'),
(64543, 'https://ror.org/05d0y1j25', 'en', 1, 'https://ror.org/05d0y1j25 Hubei Provincial Hospital of Integrative Medicine'),
(64544, 'https://ror.org/05d14ax96', 'no_lang_code', 1, 'https://ror.org/05d14ax96 Gilead Sciences (France)'),
(64545, 'https://ror.org/05d2j9p36', 'en', 1, 'https://ror.org/05d2j9p36 Texas Life Science Foundation'),
(64546, 'https://ror.org/05d3c1829', 'no_lang_code', 1, 'https://ror.org/05d3c1829 Pfizer (India)'),
(64547, 'https://ror.org/05d3qwz48', 'no_lang_code', 1, 'https://ror.org/05d3qwz48 Honey & Fox (Australia)'),
(64548, 'https://ror.org/05d4yeg66', 'de', 1, 'https://ror.org/05d4yeg66 Ria & Arthur Dietschweiler Stiftung'),
(64549, 'https://ror.org/05d585f89', 'en', 1, 'https://ror.org/05d585f89 Mahesh Bhattacharyya Homeopathic Medical College and Hospital'),
(64550, 'https://ror.org/05d63m431', 'en', 1, 'https://ror.org/05d63m431 Carbohydrate Competence Center'),
(64551, 'https://ror.org/05d788x61', 'en', 1, 'https://ror.org/05d788x61 Redmond Fire Department'),
(64552, 'https://ror.org/05d7dmk69', 'en', 1, 'https://ror.org/05d7dmk69 ProHealth Care'),
(64553, 'https://ror.org/05d854h51', 'en', 1, 'https://ror.org/05d854h51 Institut für Diabetes "Gerhardt Katsch" Karlsburg Institute for Diabetes Gerhardt Katsch'),
(64554, 'https://ror.org/05d85fb80', 'en', 1, 'https://ror.org/05d85fb80 Hong Kong Island Women''s Association 香 ęøÆ å³¶ 婦 儳 聯 會'),
(64555, 'https://ror.org/05dc02738', 'en', 1, 'https://ror.org/05dc02738 International Society for Cellular Therapy'),
(64556, 'https://ror.org/05dcdha72', 'en', 1, 'https://ror.org/05dcdha72 Canton-Potsdam Hospital'),
(64557, 'https://ror.org/05dd14b17', 'no_lang_code', 1, 'https://ror.org/05dd14b17 Ketron Optimization (United States)'),
(64558, 'https://ror.org/05dd2e480', 'en', 1, 'https://ror.org/05dd2e480 JEM Research Institute'),
(64559, 'https://ror.org/05dd4dx68', 'es', 1, 'https://ror.org/05dd4dx68 Institute of Hematology and Immunology Instituto de HematologĆ­a e InmunologĆ­a'),
(64560, 'https://ror.org/05dh8ar36', 'no_lang_code', 1, 'https://ror.org/05dh8ar36 Gilead Sciences (Germany)'),
(64561, 'https://ror.org/05dhprc49', 'en', 1, 'https://ror.org/05dhprc49 Afeka College of Engineering אפקה - המכללה ×”××§×“×ž×™×Ŗ להנדהה ×‘×Ŗ×œ אביב'),
(64562, 'https://ror.org/05dp34n52', 'es', 1, 'https://ror.org/05dp34n52 Asociación Argentina de Tenis'),
(64563, 'https://ror.org/05ds5vg25', 'hr', 1, 'https://ror.org/05ds5vg25 Opća Bolnica Zadar'),
(64564, 'https://ror.org/05dshav68', 'en', 1, 'https://ror.org/05dshav68 Providence Regional Medical Center Everett'),
(64565, 'https://ror.org/05dsxqn95', 'en', 1, 'https://ror.org/05dsxqn95 ELEPAP-Rehabilitation for The Disabled Ελληνική Εταιρία Ī ĻĪæĻƒĻ„Ī±ĻƒĪÆĪ±Ļ‚ & Ī‘Ļ€ĪæĪŗĪ±Ļ„Ī±ĻƒĻ„Ī¬ĻƒĪµĻ‰Ļ‚ Αναπήρων Ī ĻĪæĻƒĻŽĻ€Ļ‰Ī½-ΕΛΕΠΑΠ'),
(64566, 'https://ror.org/05dtj8q67', 'en', 1, 'https://ror.org/05dtj8q67 Obesity Medicine Association'),
(64567, 'https://ror.org/05dw0jd27', 'no_lang_code', 1, 'https://ror.org/05dw0jd27 Xendo (Netherlands)'),
(64568, 'https://ror.org/05dweaz25', 'en', 1, 'https://ror.org/05dweaz25 Vision Education and Media'),
(64569, 'https://ror.org/05dwehn62', 'no_lang_code', 1, 'https://ror.org/05dwehn62 Physiol (Belgium)'),
(64570, 'https://ror.org/05dx5b564', 'de', 1, 'https://ror.org/05dx5b564 Immanuel Klinikum Bernau'),
(64571, 'https://ror.org/05dyf1y62', 'no_lang_code', 1, 'https://ror.org/05dyf1y62 Byrraju Foundation'),
(64572, 'https://ror.org/05dyfnr03', 'de', 1, 'https://ror.org/05dyfnr03 Park-Klinik Birkenwerder'),
(64573, 'https://ror.org/05dyssa78', 'no_lang_code', 1, 'https://ror.org/05dyssa78 Provascular (Germany)'),
(64574, 'https://ror.org/05e0am895', 'en', 1, 'https://ror.org/05e0am895 Mobile Area Education Foundation'),
(64575, 'https://ror.org/05e2s1y16', 'no_lang_code', 1, 'https://ror.org/05e2s1y16 AngioDynamics (Netherlands)'),
(64576, 'https://ror.org/05e2tvq95', 'en', 1, 'https://ror.org/05e2tvq95 Defense Contract Management Agency'),
(64577, 'https://ror.org/05e9aes39', 'en', 1, 'https://ror.org/05e9aes39 Chelyabinsk Regional Clinical Oncology Center Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ областной клинический онкологический Гиспансер'),
(64578, 'https://ror.org/05ea7a262', 'en', 1, 'https://ror.org/05ea7a262 Eat2Move'),
(64579, 'https://ror.org/05ek56k41', 'en', 1, 'https://ror.org/05ek56k41 Kaiser Permanente Capitol Hill Medical Center'),
(64580, 'https://ror.org/05ekyck71', 'no_lang_code', 1, 'https://ror.org/05ekyck71 KelaHealth (United States)'),
(64581, 'https://ror.org/05enva623', 'en', 1, 'https://ror.org/05enva623 Stark Education Partnership'),
(64582, 'https://ror.org/05ep1jp78', 'no_lang_code', 1, 'https://ror.org/05ep1jp78 SGS (Belgium)'),
(64583, 'https://ror.org/05epcyx33', 'en', 1, 'https://ror.org/05epcyx33 Foundation for Education and Musculoskeletal Research'),
(64584, 'https://ror.org/05epfm497', 'en', 1, 'https://ror.org/05epfm497 Hautok + Hautok Cosmetics'),
(64585, 'https://ror.org/05eqpm581', 'no_lang_code', 1, 'https://ror.org/05eqpm581 LINK (Netherlands)'),
(64586, 'https://ror.org/05evjvn31', 'en', 1, 'https://ror.org/05evjvn31 Bon Secours Liver Institute of Hampton Roads'),
(64587, 'https://ror.org/05f0cz467', 'de', 1, 'https://ror.org/05f0cz467 Garmisch-Partenkirchen Medical Center, Klinikum Garmisch-Partenkirchen'),
(64588, 'https://ror.org/05f1hc953', 'en', 1, 'https://ror.org/05f1hc953 Parkland Health Center'),
(64589, 'https://ror.org/05f1s6j82', 'en', 1, 'https://ror.org/05f1s6j82 Association for Pediatric Pulmonary Hypertension'),
(64590, 'https://ror.org/05f4jn380', 'no_lang_code', 1, 'https://ror.org/05f4jn380 Omni Med'),
(64591, 'https://ror.org/05f508233', 'en', 1, 'https://ror.org/05f508233 Chan Heart Rhythm Institute'),
(64592, 'https://ror.org/05f6hbt77', 'no_lang_code', 1, 'https://ror.org/05f6hbt77 AmebaGone (United States)'),
(64593, 'https://ror.org/05f6zz720', 'no_lang_code', 1, 'https://ror.org/05f6zz720 SolRayo (United States)'),
(64594, 'https://ror.org/05f8fxj66', 'pt', 1, 'https://ror.org/05f8fxj66 Hospital Risoleta Tolentino Neves'),
(64595, 'https://ror.org/05f9vfg11', 'en', 1, 'https://ror.org/05f9vfg11 Huazhong University of Science and Technology Hospital'),
(64596, 'https://ror.org/05fbm4611', 'en', 1, 'https://ror.org/05fbm4611 University Hospitals Geauga Medical Center'),
(64597, 'https://ror.org/05fch8r16', 'en', 1, 'https://ror.org/05fch8r16 Specialized Clinical Psychiatric Hospital No. 1 Š”ŠæŠµŃ†ŠøŠ°Š»ŠøŠ·ŠøŃ€Š¾Š²Š°Š½Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠæŃŠøŃ…ŠøŠ°Ń‚Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 1'),
(64598, 'https://ror.org/05fcjtk81', 'no_lang_code', 1, 'https://ror.org/05fcjtk81 Ethica (Canada)'),
(64599, 'https://ror.org/05fdgz909', 'de', 1, 'https://ror.org/05fdgz909 Evangelische Kliniken Gelsenkirchen'),
(64600, 'https://ror.org/05fep0t76', 'no_lang_code', 1, 'https://ror.org/05fep0t76 LogicMill Technology (United States)'),
(64601, 'https://ror.org/05fmyxw97', 'no_lang_code', 1, 'https://ror.org/05fmyxw97 Fishwell Consulting (Australia)'),
(64602, 'https://ror.org/05fnerq37', 'en', 1, 'https://ror.org/05fnerq37 Parks and Wildlife Service'),
(64603, 'https://ror.org/05fnnp231', 'no_lang_code', 1, 'https://ror.org/05fnnp231 Revive Therapeutics (Canada)'),
(64604, 'https://ror.org/05fp35w93', 'no_lang_code', 1, 'https://ror.org/05fp35w93 Ausvet (Australia)'),
(64605, 'https://ror.org/05fp5vn06', 'en', 1, 'https://ror.org/05fp5vn06 Absenger Cancer Education Foundation'),
(64606, 'https://ror.org/05fqhmm52', 'en', 1, 'https://ror.org/05fqhmm52 Chicago College of Oriental Medicine'),
(64607, 'https://ror.org/05fqw3447', 'en', 1, 'https://ror.org/05fqw3447 Carter County Museum'),
(64608, 'https://ror.org/05fr3nj53', 'en', 1, 'https://ror.org/05fr3nj53 Miller Orthopedic Specialist'),
(64609, 'https://ror.org/05fstx905', 'sk', 1, 'https://ror.org/05fstx905 NÔrodný Endokrinologický a Diabetologický Ústav'),
(64610, 'https://ror.org/05fvh4506', 'en', 1, 'https://ror.org/05fvh4506 General Hospital of Filiates Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ – Κ.Ī„. Ī¦Ī¹Ī»Ī¹Ī±Ļ„ĻŽĪ½'),
(64611, 'https://ror.org/05fwfqf82', 'en', 1, 'https://ror.org/05fwfqf82 Charlotte Eye Ear Nose & Throat Associates'),
(64612, 'https://ror.org/05fwtr092', 'nl', 1, 'https://ror.org/05fwtr092 Arbo Unie'),
(64613, 'https://ror.org/05fxqy444', 'no_lang_code', 1, 'https://ror.org/05fxqy444 Solarno (United States)'),
(64614, 'https://ror.org/05fzfv584', 'en', 1, 'https://ror.org/05fzfv584 Berlin Center for Epidemiology and Health Research'),
(64615, 'https://ror.org/05g0bc010', 'en', 1, 'https://ror.org/05g0bc010 Baltic Institute of Advanced Technology Baltijos pažangių technologijų institutas'),
(64616, 'https://ror.org/05g1qrw85', 'no_lang_code', 1, 'https://ror.org/05g1qrw85 Yes Technologies (United States)'),
(64617, 'https://ror.org/05g37hp80', 'en', 1, 'https://ror.org/05g37hp80 Institute of Applied Economics and Health Research ApS'),
(64618, 'https://ror.org/05g3rxr48', 'en', 1, 'https://ror.org/05g3rxr48 Arizona Science Center'),
(64619, 'https://ror.org/05g52s684', 'nl', 1, 'https://ror.org/05g52s684 Kijvelanden'),
(64620, 'https://ror.org/05g6kcv24', 'nl', 1, 'https://ror.org/05g6kcv24 IZZ Zorgverzekering'),
(64621, 'https://ror.org/05g6ncb39', 'de', 1, 'https://ror.org/05g6ncb39 Niederƶsterreichischer Gesundheits- und Sozialfond'),
(64622, 'https://ror.org/05g7jpw53', 'no_lang_code', 1, 'https://ror.org/05g7jpw53 Cory Laboratories'),
(64623, 'https://ror.org/05g8axa09', 'en', 1, 'https://ror.org/05g8axa09 Tri-County Community Mental Health Center'),
(64624, 'https://ror.org/05g8gd021', 'en', 1, 'https://ror.org/05g8gd021 Cardiovascular Institute of Michigan P.C'),
(64625, 'https://ror.org/05gag8m64', 'de', 1, 'https://ror.org/05gag8m64 Kreiskrankenhaus Dormagen'),
(64626, 'https://ror.org/05gapbz32', 'de', 1, 'https://ror.org/05gapbz32 Klinik Bad Oexen'),
(64627, 'https://ror.org/05gb36730', 'en', 1, 'https://ror.org/05gb36730 Levin Institute'),
(64628, 'https://ror.org/05gctgr03', 'en', 1, 'https://ror.org/05gctgr03 Nebraska Hematology-Oncology'),
(64629, 'https://ror.org/05gczn822', 'en', 1, 'https://ror.org/05gczn822 Hellenic Society of Hypertension Ελληνική Εταιρεία Ī„Ļ€Ī­ĻĻ„Ī±ĻƒĪ·Ļ‚'),
(64630, 'https://ror.org/05gdr4s75', 'en', 1, 'https://ror.org/05gdr4s75 Amerind Museum'),
(64631, 'https://ror.org/05gdxv139', 'en', 1, 'https://ror.org/05gdxv139 Andros Clinica Day Surgery'),
(64632, 'https://ror.org/05geszq97', 'en', 1, 'https://ror.org/05geszq97 The Speech and Stuttering Institute'),
(64633, 'https://ror.org/05gff4a37', 'en', 1, 'https://ror.org/05gff4a37 Society for Invertebrate Pathology'),
(64634, 'https://ror.org/05ggj5w37', 'en', 1, 'https://ror.org/05ggj5w37 Utah AIDS Foundation'),
(64635, 'https://ror.org/05gjj8523', 'en', 1, 'https://ror.org/05gjj8523 Yellowstone Forever'),
(64636, 'https://ror.org/05gkev856', 'en', 1, 'https://ror.org/05gkev856 European Society for Blood and Marrow Transplantation'),
(64637, 'https://ror.org/05gqsqy69', 'de', 1, 'https://ror.org/05gqsqy69 Institut für Lungenforschung'),
(64638, 'https://ror.org/05grhsk96', 'no_lang_code', 1, 'https://ror.org/05grhsk96 Vanderbilt Health'),
(64639, 'https://ror.org/05grjt380', 'no_lang_code', 1, 'https://ror.org/05grjt380 Focal Meditech (Netherlands)'),
(64640, 'https://ror.org/05gsbmf62', 'en', 1, 'https://ror.org/05gsbmf62 Herzig Eye Institute'),
(64641, 'https://ror.org/05gshbf51', 'no_lang_code', 1, 'https://ror.org/05gshbf51 Sign Media (United States)'),
(64642, 'https://ror.org/05gsvv626', 'en', 1, 'https://ror.org/05gsvv626 Dermatology Society of South Africa'),
(64643, 'https://ror.org/05gsxqf59', 'en', 1, 'https://ror.org/05gsxqf59 European Society for Organ Transplantation SocietĆ  europea per il trapianto di organi'),
(64644, 'https://ror.org/05gt42d74', 'en', 1, 'https://ror.org/05gt42d74 Cardiovascular and Interventional Radiological Society of Europe'),
(64645, 'https://ror.org/05gt5r361', 'de', 1, 'https://ror.org/05gt5r361 Marienhospital Osnabrück'),
(64646, 'https://ror.org/05gtere25', 'no_lang_code', 1, 'https://ror.org/05gtere25 Vabiotech (Vietnam)'),
(64647, 'https://ror.org/05gvf0x42', 'en', 1, 'https://ror.org/05gvf0x42 Bulgarian Neuromuscular Diseases Association Š‘ŠŖŠ›Š“ŠŠ Š”ŠšŠ ŠŠ”ŠžŠ¦Š˜ŠŠ¦Š˜ŠÆ ЗА ŠŠ•Š’Š ŠžŠœŠ£Š”ŠšŠ£Š›ŠŠ˜ Š—ŠŠ‘ŠžŠ›ŠÆŠ’ŠŠŠ˜ŠÆ'),
(64648, 'https://ror.org/05gxm7d74', 'en', 1, 'https://ror.org/05gxm7d74 Korea Pharmaceutical and Bio-Pharma Manufacturers Association ķ•œźµ­ģ œģ•½ė°”ģ“ģ˜¤ķ˜‘ķšŒ'),
(64649, 'https://ror.org/05gz5te09', 'no_lang_code', 1, 'https://ror.org/05gz5te09 Sepragen Corporation (United States)'),
(64650, 'https://ror.org/05h3wd214', 'en', 1, 'https://ror.org/05h3wd214 Adventist Heart Institute'),
(64651, 'https://ror.org/05h4bcs36', 'en', 1, 'https://ror.org/05h4bcs36 June E. Nylen Cancer Center'),
(64652, 'https://ror.org/05h5s3f74', 'no_lang_code', 1, 'https://ror.org/05h5s3f74 Holtec International (United States)'),
(64653, 'https://ror.org/05h876969', 'de', 1, 'https://ror.org/05h876969 Stiftung Mandacaru'),
(64654, 'https://ror.org/05hadjh66', 'en', 1, 'https://ror.org/05hadjh66 Marshall Health'),
(64655, 'https://ror.org/05hbymd96', 'de', 1, 'https://ror.org/05hbymd96 Hauschka Stiftung'),
(64656, 'https://ror.org/05hc6gd57', 'en', 1, 'https://ror.org/05hc6gd57 C.I. Trials'),
(64657, 'https://ror.org/05hcyxs26', 'nl', 1, 'https://ror.org/05hcyxs26 Fietsersbond'),
(64658, 'https://ror.org/05hdpwb59', 'en', 1, 'https://ror.org/05hdpwb59 Fatmawati Hospital Rumah Sakit Umum Pusat Fatmawati'),
(64659, 'https://ror.org/05hgh1g19', 'en', 1, 'https://ror.org/05hgh1g19 Helios Hospital Berlin-Buch Helios Klinikum Berlin-Buch'),
(64660, 'https://ror.org/05hgkmq81', 'en', 1, 'https://ror.org/05hgkmq81 Servy Institute for Reproductive Endocrinology'),
(64661, 'https://ror.org/05hgx8v86', 'no_lang_code', 1, 'https://ror.org/05hgx8v86 Elixir Medical (United States)'),
(64662, 'https://ror.org/05hk5hv71', 'en', 1, 'https://ror.org/05hk5hv71 Stormont Vail Health'),
(64663, 'https://ror.org/05hkjyh45', 'no_lang_code', 1, 'https://ror.org/05hkjyh45 Alexion Pharma (Switzerland)'),
(64664, 'https://ror.org/05hm3dk81', 'en', 1, 'https://ror.org/05hm3dk81 Tennessee Orthopaedic Clinics'),
(64665, 'https://ror.org/05hnk1p44', 'de', 1, 'https://ror.org/05hnk1p44 Klinik für Herzchirurgie Karlsruhe'),
(64666, 'https://ror.org/05hnxef10', 'no_lang_code', 1, 'https://ror.org/05hnxef10 NinePoint Medical (United States)'),
(64667, 'https://ror.org/05hqyp882', 'no_lang_code', 1, 'https://ror.org/05hqyp882 MedSkin Solutions (Germany)'),
(64668, 'https://ror.org/05hr4m393', 'en', 1, 'https://ror.org/05hr4m393 Northwest Medical Specialties'),
(64669, 'https://ror.org/05hrw6q11', 'en', 1, 'https://ror.org/05hrw6q11 Ovation Fertility'),
(64670, 'https://ror.org/05hs5ga57', 'en', 1, 'https://ror.org/05hs5ga57 Qualitouch-HC Foundation'),
(64671, 'https://ror.org/05htkf588', 'en', 1, 'https://ror.org/05htkf588 Shandong Eye Hospital'),
(64672, 'https://ror.org/05htm1j67', 'en', 1, 'https://ror.org/05htm1j67 National Gardening Association'),
(64673, 'https://ror.org/05hx1v477', 'en', 1, 'https://ror.org/05hx1v477 Moreton Bay Seafood Industry Association'),
(64674, 'https://ror.org/05hzdqf47', 'en', 1, 'https://ror.org/05hzdqf47 Adirondack Area Network'),
(64675, 'https://ror.org/05j0e3q89', 'en', 1, 'https://ror.org/05j0e3q89 Roparun Foundation Stichting Roparun'),
(64676, 'https://ror.org/05j35jp78', 'en', 1, 'https://ror.org/05j35jp78 The Lok Sin Tong Benevolent Society Kowloon ä¹é¾ęØ‚å–„å ‚'),
(64677, 'https://ror.org/05j4tjy04', 'en', 1, 'https://ror.org/05j4tjy04 Ministry of Health and Social Welfare'),
(64678, 'https://ror.org/05j54qh77', 'en', 1, 'https://ror.org/05j54qh77 Chagrin Highlands Health Center'),
(64679, 'https://ror.org/05j6kar92', 'no_lang_code', 1, 'https://ror.org/05j6kar92 Omnicare Pharma (Germany)'),
(64680, 'https://ror.org/05j8e7885', 'en', 1, 'https://ror.org/05j8e7885 St. Luke''s Hospital'),
(64681, 'https://ror.org/05jb7jk98', 'en', 1, 'https://ror.org/05jb7jk98 Southeast Health District'),
(64682, 'https://ror.org/05jd5rm48', 'en', 1, 'https://ror.org/05jd5rm48 Carolina Musculoskeletal Institute'),
(64683, 'https://ror.org/05je0gs16', 'en', 1, 'https://ror.org/05je0gs16 San Diego Archaeological Center'),
(64684, 'https://ror.org/05jfknj25', 'en', 1, 'https://ror.org/05jfknj25 Legacy Salmon Creek Medical Center'),
(64685, 'https://ror.org/05jgnq975', 'en', 1, 'https://ror.org/05jgnq975 Early Childhood Initiative Foundation'),
(64686, 'https://ror.org/05jhd9y87', 'no_lang_code', 1, 'https://ror.org/05jhd9y87 Biosignatures (United Kingdom)'),
(64687, 'https://ror.org/05jjc0y03', 'no_lang_code', 1, 'https://ror.org/05jjc0y03 Alphamade (Berlin)'),
(64688, 'https://ror.org/05jksah37', 'en', 1, 'https://ror.org/05jksah37 Asia Cornea Society'),
(64689, 'https://ror.org/05jm48923', 'sv', 1, 'https://ror.org/05jm48923 Ryggkirurgiska Kliniken i StrƤngnƤs'),
(64690, 'https://ror.org/05jnah305', 'no_lang_code', 1, 'https://ror.org/05jnah305 novacare (Germany)'),
(64691, 'https://ror.org/05jp2s596', 'en', 1, 'https://ror.org/05jp2s596 California Public Interest Research Group'),
(64692, 'https://ror.org/05jpsw268', 'de', 1, 'https://ror.org/05jpsw268 SƤchsische Krebsgesellschaft'),
(64693, 'https://ror.org/05jpvp811', 'en', 1, 'https://ror.org/05jpvp811 Fortius Clinic'),
(64694, 'https://ror.org/05jr0p734', 'en', 1, 'https://ror.org/05jr0p734 Joint Interoperability Test Command'),
(64695, 'https://ror.org/05jrbdv26', 'en', 1, 'https://ror.org/05jrbdv26 Expertise Center Vocational Education Expertisecentrum Beroepsonderwijs'),
(64696, 'https://ror.org/05jrvwk92', 'pt', 1, 'https://ror.org/05jrvwk92 ClĆ­nica e Instituto de Oftalmologia Ivo CorrĆŖa Meyer'),
(64697, 'https://ror.org/05js1ap63', 'en', 1, 'https://ror.org/05js1ap63 Prairie Vascular Institute'),
(64698, 'https://ror.org/05jtxmk62', 'en', 1, 'https://ror.org/05jtxmk62 Baptist Health Corbin'),
(64699, 'https://ror.org/05jxfq030', 'en', 1, 'https://ror.org/05jxfq030 Kidney Disease Association of Thailand'),
(64700, 'https://ror.org/05jxxs868', 'en', 1, 'https://ror.org/05jxxs868 Tropical Disease Foundation'),
(64701, 'https://ror.org/05jy2cf97', 'en', 1, 'https://ror.org/05jy2cf97 Science Center of Pinellas'),
(64702, 'https://ror.org/05jy72h47', 'en', 1, 'https://ror.org/05jy72h47 The Fifth People’s Hospital of Suzhou č‹å·žåø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(64703, 'https://ror.org/05jyzkb74', 'en', 1, 'https://ror.org/05jyzkb74 Pennsylvania Allergy and Asthma Association'),
(64704, 'https://ror.org/05k150873', 'en', 1, 'https://ror.org/05k150873 OASIS Clinic'),
(64705, 'https://ror.org/05k2jeg48', 'en', 1, 'https://ror.org/05k2jeg48 North Suffolk Mental Health Association'),
(64706, 'https://ror.org/05k3cv262', 'nl', 1, 'https://ror.org/05k3cv262 Willem Meindert de Hoop Stichting'),
(64707, 'https://ror.org/05k3yhz56', 'en', 1, 'https://ror.org/05k3yhz56 Association Canadienne de Protection MƩdicale Canadian Medical Protective Association'),
(64708, 'https://ror.org/05k40gs40', 'en', 1, 'https://ror.org/05k40gs40 University hospital Medical Information Network å¤§å­¦ē—…é™¢åŒ»ē™‚ęƒ…å ±ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(64709, 'https://ror.org/05k64t167', 'de', 1, 'https://ror.org/05k64t167 Lahntalklinik'),
(64710, 'https://ror.org/05k71bz17', 'no_lang_code', 1, 'https://ror.org/05k71bz17 Biocinese (Brazil) Centro de Estudos BiofarmacĆŖuticos'),
(64711, 'https://ror.org/05k8f3f74', 'en', 1, 'https://ror.org/05k8f3f74 Utah Society for Environmental Education'),
(64712, 'https://ror.org/05k9gkx37', 'nl', 1, 'https://ror.org/05k9gkx37 Erfelijke Stofwisselingsziekten Nederland'),
(64713, 'https://ror.org/05kagrs11', 'no_lang_code', 1, 'https://ror.org/05kagrs11 Competence Centre on Health Technologies (Estonia) Tervisetehnoloogiate Arenduskeskus'),
(64714, 'https://ror.org/05kaht993', 'en', 1, 'https://ror.org/05kaht993 Skin of Color Society'),
(64715, 'https://ror.org/05kbg7k66', 'en', 1, 'https://ror.org/05kbg7k66 Berkeley Art Museum and Pacific Film Archive'),
(64716, 'https://ror.org/05kbmt076', 'en', 1, 'https://ror.org/05kbmt076 Southeastern Health'),
(64717, 'https://ror.org/05kcpxy10', 'en', 1, 'https://ror.org/05kcpxy10 Tula Regional Clinical Hospital Š¢ŃƒŠ»ŃŒŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(64718, 'https://ror.org/05kd3hv35', 'no_lang_code', 1, 'https://ror.org/05kd3hv35 V&R Energy Systems Research (United States)'),
(64719, 'https://ror.org/05kfwsr87', 'de', 1, 'https://ror.org/05kfwsr87 Wirbelsäulen-Institut München'),
(64720, 'https://ror.org/05kg2q446', 'en', 1, 'https://ror.org/05kg2q446 University Health Conway'),
(64721, 'https://ror.org/05kgqvw68', 'en', 1, 'https://ror.org/05kgqvw68 University MRI & Diagnostic Imaging Centers'),
(64722, 'https://ror.org/05khxfe53', 'en', 1, 'https://ror.org/05khxfe53 University of Bojnord دانؓگاه ŲØŲ¬Ł†ŁˆŲ±ŲÆ'),
(64723, 'https://ror.org/05kj9dv08', 'en', 1, 'https://ror.org/05kj9dv08 The SHM Foundation'),
(64724, 'https://ror.org/05kjrdd45', 'no_lang_code', 1, 'https://ror.org/05kjrdd45 Enable Biosciences (United States)'),
(64725, 'https://ror.org/05kk2ma90', 'en', 1, 'https://ror.org/05kk2ma90 TobaccoFree Research Institute'),
(64726, 'https://ror.org/05kkspf37', 'en', 1, 'https://ror.org/05kkspf37 CueThink'),
(64727, 'https://ror.org/05kmpn815', 'no_lang_code', 1, 'https://ror.org/05kmpn815 Marigot (Ireland)'),
(64728, 'https://ror.org/05kn06p84', 'en', 1, 'https://ror.org/05kn06p84 Michigan Reproductive Medicine'),
(64729, 'https://ror.org/05knza467', 'en', 1, 'https://ror.org/05knza467 Central Australian Remote Health Development Services'),
(64730, 'https://ror.org/05kp26h23', 'en', 1, 'https://ror.org/05kp26h23 National Nutrition Agency'),
(64731, 'https://ror.org/05ks75x17', 'no_lang_code', 1, 'https://ror.org/05ks75x17 Suyash Hospital'),
(64732, 'https://ror.org/05ksnhc43', 'en', 1, 'https://ror.org/05ksnhc43 Physical-Chemical Institute O. Bogatsky Фізико-хімічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ім. Šž.Š’. Š‘Š¾Š³Š°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ ŠŠŠ України'),
(64733, 'https://ror.org/05ktfmr66', 'de', 1, 'https://ror.org/05ktfmr66 Helios Vogtland Klinikum Plauen'),
(64734, 'https://ror.org/05ktmtk53', 'en', 1, 'https://ror.org/05ktmtk53 Kanagawa Prefecture Medical Association ē„žå„ˆå·ēœŒåŒ»åø«ä¼š'),
(64735, 'https://ror.org/05kv4r135', 'en', 1, 'https://ror.org/05kv4r135 Regional State Budget Health Care Institution "Regional Clinical Hospital" ŠšŃ€Š°ŠµŠ²Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Ā«ŠšŃ€Š°ŠµŠ²Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°Ā»'),
(64736, 'https://ror.org/05kwbcj56', 'en', 1, 'https://ror.org/05kwbcj56 Legacy Meridian Park Medical Center'),
(64737, 'https://ror.org/05kxwfj75', 'en', 1, 'https://ror.org/05kxwfj75 East Florida Eye Institute'),
(64738, 'https://ror.org/05kzst346', 'en', 1, 'https://ror.org/05kzst346 Maricopa County Department of Public Health'),
(64739, 'https://ror.org/05m074r21', 'en', 1, 'https://ror.org/05m074r21 Berkshire Health Systems'),
(64740, 'https://ror.org/05m0fyt06', 'nl', 1, 'https://ror.org/05m0fyt06 Zorggroep Solis'),
(64741, 'https://ror.org/05m54mx02', 'en', 1, 'https://ror.org/05m54mx02 Ohio Dermatological Association'),
(64742, 'https://ror.org/05m94vg70', 'en', 1, 'https://ror.org/05m94vg70 National Association of Home Builders'),
(64743, 'https://ror.org/05m9b9906', 'en', 1, 'https://ror.org/05m9b9906 Boise Kidney & Hypertension Institute'),
(64744, 'https://ror.org/05ma3wj87', 'no_lang_code', 1, 'https://ror.org/05ma3wj87 Genoverde Biosciences (United States)'),
(64745, 'https://ror.org/05maag353', 'en', 1, 'https://ror.org/05maag353 Providence Willamette Falls Medical Center'),
(64746, 'https://ror.org/05mavg897', 'en', 1, 'https://ror.org/05mavg897 Society for Organizational Learning'),
(64747, 'https://ror.org/05mb9sm33', 'en', 1, 'https://ror.org/05mb9sm33 Texas Cardiac Arrhythmia'),
(64748, 'https://ror.org/05medrv10', 'de', 1, 'https://ror.org/05medrv10 Klinik und Poliklinik für Psychotherapie und Psychosomatik'),
(64749, 'https://ror.org/05mg0j941', 'en', 1, 'https://ror.org/05mg0j941 Radiation Oncology Centers of Nevada'),
(64750, 'https://ror.org/05mhs9m77', 'es', 1, 'https://ror.org/05mhs9m77 Instituto Privado de Hematología e Investigación Clínica'),
(64751, 'https://ror.org/05mht2065', 'en', 1, 'https://ror.org/05mht2065 Chinese Gerontology Society äø­å›½č€å¹“å­¦å’Œč€å¹“åŒ»å­¦å­¦ä¼š'),
(64752, 'https://ror.org/05mm8r061', 'nl', 1, 'https://ror.org/05mm8r061 Heliomare'),
(64753, 'https://ror.org/05mmjzg49', 'en', 1, 'https://ror.org/05mmjzg49 iResearch Atlanta'),
(64754, 'https://ror.org/05mnrce88', 'el', 1, 'https://ror.org/05mnrce88 Iakentro'),
(64755, 'https://ror.org/05mphpp98', 'en', 1, 'https://ror.org/05mphpp98 Saint Mary''s School'),
(64756, 'https://ror.org/05mpph804', 'no_lang_code', 1, 'https://ror.org/05mpph804 Frisian Flag (Indonesia)'),
(64757, 'https://ror.org/05mrk2t44', 'en', 1, 'https://ror.org/05mrk2t44 Center for Snow and Avalanche Studies'),
(64758, 'https://ror.org/05mrmvf37', 'no_lang_code', 1, 'https://ror.org/05mrmvf37 Hanzhong Central Hospital ę±‰äø­åø‚äø­åæƒåŒ»é™¢'),
(64759, 'https://ror.org/05mrzft53', 'no_lang_code', 1, 'https://ror.org/05mrzft53 CSL (United Kingdom)'),
(64760, 'https://ror.org/05msdft16', 'no_lang_code', 1, 'https://ror.org/05msdft16 PDX Pharmaceuticals (United States)'),
(64761, 'https://ror.org/05mty4w15', 'en', 1, 'https://ror.org/05mty4w15 Paediatric Integrated Cancer Service'),
(64762, 'https://ror.org/05mv0x382', 'no_lang_code', 1, 'https://ror.org/05mv0x382 Biebertaler Blutegelzucht (Germany)'),
(64763, 'https://ror.org/05mv95n98', 'fr', 1, 'https://ror.org/05mv95n98 France Alzheimer et maladies apparentƩes France Alzheimer''s and related diseases'),
(64764, 'https://ror.org/05mvyv273', 'de', 1, 'https://ror.org/05mvyv273 Das Onkologische und Palliativmedizinische Netzwerk Landshut'),
(64765, 'https://ror.org/05mx1gf76', 'en', 1, 'https://ror.org/05mx1gf76 Kangdong Sacred Heart Hospital'),
(64766, 'https://ror.org/05mx4yp68', 'en', 1, 'https://ror.org/05mx4yp68 Kennedy Clinic Hospital'),
(64767, 'https://ror.org/05my1gr06', 'nl', 1, 'https://ror.org/05my1gr06 Stichting Toegepast Wetenschappelijk Instituut voor Neuromodulatie'),
(64768, 'https://ror.org/05mz4e808', 'no_lang_code', 1, 'https://ror.org/05mz4e808 N-Gene (United States)'),
(64769, 'https://ror.org/05n07wm39', 'en', 1, 'https://ror.org/05n07wm39 Colorado Community College System'),
(64770, 'https://ror.org/05n521861', 'nl', 1, 'https://ror.org/05n521861 Vereniging van Groothandelaren in Bloemkwekerijprodukten'),
(64771, 'https://ror.org/05nc6an52', 'en', 1, 'https://ror.org/05nc6an52 Saint Alphonsus Medical Center'),
(64772, 'https://ror.org/05ncexg51', 'en', 1, 'https://ror.org/05ncexg51 Atos Medical'),
(64773, 'https://ror.org/05ne0js61', 'en', 1, 'https://ror.org/05ne0js61 Modoc County Office of Education'),
(64774, 'https://ror.org/05nf6pg47', 'en', 1, 'https://ror.org/05nf6pg47 European Inter-University Association of Society, Science and Technology'),
(64775, 'https://ror.org/05ng03c96', 'pt', 1, 'https://ror.org/05ng03c96 Hospital SĆ£o Domingos'),
(64776, 'https://ror.org/05ng5j404', 'en', 1, 'https://ror.org/05ng5j404 Saratov City Clinical Hospital ā„– 2 named. IN AND. Razumovsky'),
(64777, 'https://ror.org/05ngdrj30', 'fr', 1, 'https://ror.org/05ngdrj30 Fondation FranƧaise pour la Recherche sur l''Epilepsie'),
(64778, 'https://ror.org/05ngmaw16', 'no_lang_code', 1, 'https://ror.org/05ngmaw16 Certmedica (Germany)'),
(64779, 'https://ror.org/05ngx7r22', 'es', 1, 'https://ror.org/05ngx7r22 Hospital de Guadarrama'),
(64780, 'https://ror.org/05nh4qq71', 'en', 1, 'https://ror.org/05nh4qq71 Orchid'),
(64781, 'https://ror.org/05nhtke22', 'de', 1, 'https://ror.org/05nhtke22 Vinzenzkrankenhaus Hannover'),
(64782, 'https://ror.org/05nmdmf57', 'en', 1, 'https://ror.org/05nmdmf57 European Optical Society'),
(64783, 'https://ror.org/05nmp7m26', 'no_lang_code', 1, 'https://ror.org/05nmp7m26 Laccure (Sweden)'),
(64784, 'https://ror.org/05nqjs332', 'en', 1, 'https://ror.org/05nqjs332 Regeneris Medical'),
(64785, 'https://ror.org/05ns7k858', 'nl', 1, 'https://ror.org/05ns7k858 EspƩrance, Stichting Esperance'),
(64786, 'https://ror.org/05ntm4g04', 'en', 1, 'https://ror.org/05ntm4g04 eSwiss Medical and Surgical Center'),
(64787, 'https://ror.org/05nvfzh19', 'de', 1, 'https://ror.org/05nvfzh19 Leppermühle'),
(64788, 'https://ror.org/05nvpz682', 'en', 1, 'https://ror.org/05nvpz682 AI Access Foundation'),
(64789, 'https://ror.org/05nvt9206', 'no_lang_code', 1, 'https://ror.org/05nvt9206 NutriLeads (Netherlands)'),
(64790, 'https://ror.org/05nxrmr92', 'no_lang_code', 1, 'https://ror.org/05nxrmr92 Werk-Goed Bedrijfskleding alle rechten voorbehouden Werkgoed (Netherlands)'),
(64791, 'https://ror.org/05p017741', 'en', 1, 'https://ror.org/05p017741 Centre of Excellence for Health, Immunity and Infections'),
(64792, 'https://ror.org/05p1s7a78', 'no_lang_code', 1, 'https://ror.org/05p1s7a78 Napp Pharmaceuticals (United Kingdom)'),
(64793, 'https://ror.org/05p20q348', 'pt', 1, 'https://ror.org/05p20q348 Sindicato Nacional dos Professores Licenciados pelos PolitƩcnicos e Universidades'),
(64794, 'https://ror.org/05p2gad32', 'en', 1, 'https://ror.org/05p2gad32 Malabam Health Board Aboriginal Corporation'),
(64795, 'https://ror.org/05p5naa72', 'en', 1, 'https://ror.org/05p5naa72 IWK Foundation'),
(64796, 'https://ror.org/05p7ffb87', 'en', 1, 'https://ror.org/05p7ffb87 Riyadh Fertility and Reproductive Health Center Ł…Ų±ŁƒŲ² Ų§Ł„Ų±ŁŠŲ§Ų¶ للصحة Ų§Ł„Ų§Ł†Ų¬Ų§ŲØŁŠŲ©'),
(64797, 'https://ror.org/05p9zq845', 'no_lang_code', 1, 'https://ror.org/05p9zq845 QPS (India)'),
(64798, 'https://ror.org/05pa68763', 'en', 1, 'https://ror.org/05pa68763 Asan Foundation ģ•„ģ‚°ģ‚¬ķšŒė³µģ§€ģž¬ė‹Ø'),
(64799, 'https://ror.org/05pabx459', 'nl', 1, 'https://ror.org/05pabx459 STECR'),
(64800, 'https://ror.org/05parng43', 'en', 1, 'https://ror.org/05parng43 Bethlehem Arab Society for Rehabilitation Ų¬Ł…Ų¹ŁŠŲ© بيت لحم Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„ŲŖŲ£Ł‡ŁŠŁ„'),
(64801, 'https://ror.org/05pax0z40', 'no_lang_code', 1, 'https://ror.org/05pax0z40 Medi (Germany)'),
(64802, 'https://ror.org/05pe6et34', 'no_lang_code', 1, 'https://ror.org/05pe6et34 Recuperat-ion (Spain)'),
(64803, 'https://ror.org/05pegpf07', 'en', 1, 'https://ror.org/05pegpf07 Western Orthopedics Foundation'),
(64804, 'https://ror.org/05pgfe605', 'no_lang_code', 1, 'https://ror.org/05pgfe605 Dansk Sundhedssikring'),
(64805, 'https://ror.org/05pkc2853', 'no_lang_code', 1, 'https://ror.org/05pkc2853 SCHWIND eye-tech-solutions (Germany)'),
(64806, 'https://ror.org/05pnggp67', 'en', 1, 'https://ror.org/05pnggp67 Oregon Urology Institute'),
(64807, 'https://ror.org/05pnxjq94', 'no_lang_code', 1, 'https://ror.org/05pnxjq94 Kaali Institute Kaali Intezet'),
(64808, 'https://ror.org/05pp3ka35', 'no_lang_code', 1, 'https://ror.org/05pp3ka35 Dr. Ausbüttel (Germany)'),
(64809, 'https://ror.org/05ppn2f94', 'no_lang_code', 1, 'https://ror.org/05ppn2f94 Institute for Quality Indicators (Sweden) Institutet fƶr kvalitetsindikatorer'),
(64810, 'https://ror.org/05prbcv50', 'en', 1, 'https://ror.org/05prbcv50 Ruane Medical'),
(64811, 'https://ror.org/05psxec48', 'en', 1, 'https://ror.org/05psxec48 Hunan Institute of Mental Health ę¹–å—ēœåæƒē†å«ē”Ÿē ”ē©¶ę‰€'),
(64812, 'https://ror.org/05pv0dd97', 'en', 1, 'https://ror.org/05pv0dd97 Florida Cancer Care'),
(64813, 'https://ror.org/05pvs7q85', 'fr', 1, 'https://ror.org/05pvs7q85 Epicura'),
(64814, 'https://ror.org/05pz4ws32', 'en', 1, 'https://ror.org/05pz4ws32 Children''s Hospital of Chongqing Medical University'),
(64815, 'https://ror.org/05pzx1a74', 'no_lang_code', 1, 'https://ror.org/05pzx1a74 Lipogen (Israel)'),
(64816, 'https://ror.org/05q0wnh95', 'no_lang_code', 1, 'https://ror.org/05q0wnh95 Actigen (Denmark)'),
(64817, 'https://ror.org/05q11w119', 'en', 1, 'https://ror.org/05q11w119 Southeast Retina Center'),
(64818, 'https://ror.org/05q2kbw66', 'en', 1, 'https://ror.org/05q2kbw66 The Heartburn Foundation'),
(64819, 'https://ror.org/05q2w8v63', 'en', 1, 'https://ror.org/05q2w8v63 Salvadori Center'),
(64820, 'https://ror.org/05q35d534', 'fr', 1, 'https://ror.org/05q35d534 Association pour l''Information et la Recherche sur les maladies rƩnales GƩnƩtiques'),
(64821, 'https://ror.org/05q3jcj22', 'en', 1, 'https://ror.org/05q3jcj22 Miami Serpentarium Laboratories'),
(64822, 'https://ror.org/05q3rkb48', 'en', 1, 'https://ror.org/05q3rkb48 Mile Bluff Medical Center'),
(64823, 'https://ror.org/05q4r1796', 'de', 1, 'https://ror.org/05q4r1796 Evangelische Lungenklinik Berlin'),
(64824, 'https://ror.org/05q4t9480', 'en', 1, 'https://ror.org/05q4t9480 Star Spine & Sport');
INSERT INTO `rors` VALUES
(64825, 'https://ror.org/05q50g776', 'en', 1, 'https://ror.org/05q50g776 Republican Clinical Hospital named after G.G. Kuvatova Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–. G.G. ŠšŃƒŠ²Š°Ń‚Š¾Š²'),
(64826, 'https://ror.org/05q6g7072', 'no_lang_code', 1, 'https://ror.org/05q6g7072 Laila Impex (India)'),
(64827, 'https://ror.org/05q7twd40', 'de', 1, 'https://ror.org/05q7twd40 Zentrum für Psychiatrie Südwürttemberg'),
(64828, 'https://ror.org/05qa66z68', 'en', 1, 'https://ror.org/05qa66z68 MISH Hospital and Clinics'),
(64829, 'https://ror.org/05qaf7a32', 'nl', 1, 'https://ror.org/05qaf7a32 Dutch Society for Obstetrics and Gynecology Nederlandse Vereniging voor Obstetrie en Gynaecologie'),
(64830, 'https://ror.org/05qce6816', 'no_lang_code', 1, 'https://ror.org/05qce6816 BioClin (Netherlands)'),
(64831, 'https://ror.org/05qf3bt68', 'fr', 1, 'https://ror.org/05qf3bt68 Centre Hospitalo-Universitaire Bab El Oued'),
(64832, 'https://ror.org/05qgkbs55', 'en', 1, 'https://ror.org/05qgkbs55 Belgian Hematological Society'),
(64833, 'https://ror.org/05qkht728', 'no_lang_code', 1, 'https://ror.org/05qkht728 Credentis (Switzerland)'),
(64834, 'https://ror.org/05qmfrv53', 'en', 1, 'https://ror.org/05qmfrv53 St John of God Murdoch Hospital'),
(64835, 'https://ror.org/05qph7t17', 'en', 1, 'https://ror.org/05qph7t17 Bayit Balev Rehabilitation Hospital'),
(64836, 'https://ror.org/05qqdh613', 'en', 1, 'https://ror.org/05qqdh613 Nebraska Cancer Research Center'),
(64837, 'https://ror.org/05qsrmb73', 'en', 1, 'https://ror.org/05qsrmb73 Shanxi Institute of Endemic Diseases'),
(64838, 'https://ror.org/05qtv1p74', 'de', 1, 'https://ror.org/05qtv1p74 Zentrum für Pathologie und Zytodiagnostik'),
(64839, 'https://ror.org/05qtxj124', 'en', 1, 'https://ror.org/05qtxj124 National Academy of Public Administration'),
(64840, 'https://ror.org/05qv09308', 'en', 1, 'https://ror.org/05qv09308 St. Petersburg School of Religion and Philosophy Центр Š½Š°ŃƒŃ‡Š½Š¾-ŠæŃ€Š¾ŃŠ²ŠµŃ‚ŠøŃ‚ŠµŠ»ŃŒŃŠŗŠøŃ… Šø религиозно-философских программ'),
(64841, 'https://ror.org/05qvwyg13', 'de', 1, 'https://ror.org/05qvwyg13 Spitalzentrum Centre hospitalier Biel- Bienne'),
(64842, 'https://ror.org/05qwpv987', 'nl', 1, 'https://ror.org/05qwpv987 VeiligheidNL'),
(64843, 'https://ror.org/05qz4m566', 'en', 1, 'https://ror.org/05qz4m566 Regional Clinical Hospital named after II Mechnikov'),
(64844, 'https://ror.org/05r0e4p82', 'en', 1, 'https://ror.org/05r0e4p82 Karl Landsteiner Gesellschaft Karl Landsteiner Society'),
(64845, 'https://ror.org/05r2zqh89', 'no_lang_code', 1, 'https://ror.org/05r2zqh89 Nutricia (Germany)'),
(64846, 'https://ror.org/05r52pz56', 'no_lang_code', 1, 'https://ror.org/05r52pz56 Ratrix Technologies (United States)'),
(64847, 'https://ror.org/05r643345', 'en', 1, 'https://ror.org/05r643345 Women''s Resource Center'),
(64848, 'https://ror.org/05r7sx321', 'en', 1, 'https://ror.org/05r7sx321 Workit Health'),
(64849, 'https://ror.org/05r9t2t65', 'es', 1, 'https://ror.org/05r9t2t65 Fundación Teknon'),
(64850, 'https://ror.org/05rezdz06', 'no_lang_code', 1, 'https://ror.org/05rezdz06 Heat Transfer Research & Development (United States)'),
(64851, 'https://ror.org/05rg5xr95', 'en', 1, 'https://ror.org/05rg5xr95 University General Surgeons'),
(64852, 'https://ror.org/05rg8gm93', 'en', 1, 'https://ror.org/05rg8gm93 HƓtel-Dieu Grace Healthcare'),
(64853, 'https://ror.org/05rmea943', 'en', 1, 'https://ror.org/05rmea943 International Society for Heart Research'),
(64854, 'https://ror.org/05rnrcn92', 'en', 1, 'https://ror.org/05rnrcn92 Counterpart'),
(64855, 'https://ror.org/05rnt2n49', 'no_lang_code', 1, 'https://ror.org/05rnt2n49 National Power (United Kingdom)'),
(64856, 'https://ror.org/05rpby975', 'en', 1, 'https://ror.org/05rpby975 Chios Mastiha Growers Association'),
(64857, 'https://ror.org/05rpe4a45', 'en', 1, 'https://ror.org/05rpe4a45 Nebraska State College System'),
(64858, 'https://ror.org/05rtjbe93', 'de', 1, 'https://ror.org/05rtjbe93 Asklepios OrthopƤdische Klinik Lindenlohe'),
(64859, 'https://ror.org/05rtpzn26', 'pt', 1, 'https://ror.org/05rtpzn26 Centro Hospitalar do Baixo Vouga'),
(64860, 'https://ror.org/05rtsqz84', 'en', 1, 'https://ror.org/05rtsqz84 Ben''s Dream'),
(64861, 'https://ror.org/05s2x3814', 'en', 1, 'https://ror.org/05s2x3814 Recfishwest'),
(64862, 'https://ror.org/05s409k40', 'en', 1, 'https://ror.org/05s409k40 University School of Nashville'),
(64863, 'https://ror.org/05s432v08', 'en', 1, 'https://ror.org/05s432v08 Institute of Vaccine and Medical Biologicals'),
(64864, 'https://ror.org/05sa02996', 'en', 1, 'https://ror.org/05sa02996 The Institute of Aesthetic Surgery'),
(64865, 'https://ror.org/05sa2hd66', 'en', 1, 'https://ror.org/05sa2hd66 Academic Medical Research Institute'),
(64866, 'https://ror.org/05scpew87', 'de', 1, 'https://ror.org/05scpew87 St. Josefskrankenhaus Freiburg'),
(64867, 'https://ror.org/05sdkg034', 'no_lang_code', 1, 'https://ror.org/05sdkg034 Boehringer Ingelheim (Argentina)'),
(64868, 'https://ror.org/05set4688', 'en', 1, 'https://ror.org/05set4688 Aria - Jefferson Health'),
(64869, 'https://ror.org/05sf78r66', 'en', 1, 'https://ror.org/05sf78r66 Organizations Concerned About Rural Education'),
(64870, 'https://ror.org/05sgvn942', 'en', 1, 'https://ror.org/05sgvn942 Valor Health'),
(64871, 'https://ror.org/05sgz5r12', 'da', 1, 'https://ror.org/05sgz5r12 Ensomme Gamles Vaern'),
(64872, 'https://ror.org/05sj77784', 'en', 1, 'https://ror.org/05sj77784 Dutch Hospital Association'),
(64873, 'https://ror.org/05sjtd719', 'en', 1, 'https://ror.org/05sjtd719 Southern Oregon Public Television'),
(64874, 'https://ror.org/05smc1464', 'fr', 1, 'https://ror.org/05smc1464 Association Nationale d’Aide aux personnes HandicapĆ©es'),
(64875, 'https://ror.org/05sqsny02', 'no_lang_code', 1, 'https://ror.org/05sqsny02 Lophius Biosciences (Germany)'),
(64876, 'https://ror.org/05svdww41', 'en', 1, 'https://ror.org/05svdww41 University Hospital Medical Center Bezanijska kosa'),
(64877, 'https://ror.org/05sw1mq09', 'en', 1, 'https://ror.org/05sw1mq09 Clinical Research Center Kiel'),
(64878, 'https://ror.org/05sxgd993', 'de', 1, 'https://ror.org/05sxgd993 Stiftung Leben mit Krebs'),
(64879, 'https://ror.org/05syayg48', 'en', 1, 'https://ror.org/05syayg48 Wyoming Outdoor Council'),
(64880, 'https://ror.org/05t04rb70', 'en', 1, 'https://ror.org/05t04rb70 National Consumer Law Center'),
(64881, 'https://ror.org/05t1byf51', 'en', 1, 'https://ror.org/05t1byf51 Ohio Physical Therapy Association'),
(64882, 'https://ror.org/05t3agv77', 'en', 1, 'https://ror.org/05t3agv77 American University of Beirut New York Office'),
(64883, 'https://ror.org/05t3jtz40', 'en', 1, 'https://ror.org/05t3jtz40 Baltimore Symphony Orchestra'),
(64884, 'https://ror.org/05t6cb670', 'no_lang_code', 1, 'https://ror.org/05t6cb670 MetaX - Institut für Diätetik (Germany)'),
(64885, 'https://ror.org/05taw7c97', 'no_lang_code', 1, 'https://ror.org/05taw7c97 NanoCarrier (Japan) ćƒŠćƒŽć‚­ćƒ£ćƒŖć‚¢ę Ŗå¼ä¼šē¤¾'),
(64886, 'https://ror.org/05tb20n61', 'no_lang_code', 1, 'https://ror.org/05tb20n61 AquaMatrix International (United States)'),
(64887, 'https://ror.org/05teqzw32', 'tr', 1, 'https://ror.org/05teqzw32 Ɩzel Ankara Umut Hastanesi'),
(64888, 'https://ror.org/05teweq93', 'en', 1, 'https://ror.org/05teweq93 Androgen Excess and PCOS Society'),
(64889, 'https://ror.org/05tfxp741', 'en', 1, 'https://ror.org/05tfxp741 Ocean Road Cancer Institute'),
(64890, 'https://ror.org/05tg5qm65', 'en', 1, 'https://ror.org/05tg5qm65 Stiles Eyecare Excellence'),
(64891, 'https://ror.org/05tgjcd06', 'en', 1, 'https://ror.org/05tgjcd06 National Institute of Brain and Rehabilitation Sciences'),
(64892, 'https://ror.org/05tja9q19', 'no_lang_code', 1, 'https://ror.org/05tja9q19 Teva Pharmaceuticals (Spain)'),
(64893, 'https://ror.org/05tkcx517', 'no_lang_code', 1, 'https://ror.org/05tkcx517 Tƶpfer (Germany)'),
(64894, 'https://ror.org/05tma9m39', 'de', 1, 'https://ror.org/05tma9m39 An-Institut für Qualitätssicherung in der operativen Medizin'),
(64895, 'https://ror.org/05tmk0k30', 'en', 1, 'https://ror.org/05tmk0k30 Massachusetts Health & Hospital Association'),
(64896, 'https://ror.org/05tn6ve98', 'en', 1, 'https://ror.org/05tn6ve98 First Dayton CyberKnife'),
(64897, 'https://ror.org/05tr65377', 'en', 1, 'https://ror.org/05tr65377 Associates in Women’s Health'),
(64898, 'https://ror.org/05trqa150', 'en', 1, 'https://ror.org/05trqa150 CHRISTUS St. Frances Cabrini Hospital'),
(64899, 'https://ror.org/05tt0dn44', 'en', 1, 'https://ror.org/05tt0dn44 Alesco Concepts'),
(64900, 'https://ror.org/05tt58068', 'en', 1, 'https://ror.org/05tt58068 Nevin Scrimshaw International Nutrition Foundation'),
(64901, 'https://ror.org/05ty23t08', 'en', 1, 'https://ror.org/05ty23t08 The Neurological Institute'),
(64902, 'https://ror.org/05ty37s47', 'en', 1, 'https://ror.org/05ty37s47 Clinical Hospital No 122 named after. L.G.Sokolova'),
(64903, 'https://ror.org/05v0wb549', 'en', 1, 'https://ror.org/05v0wb549 Kieve-Wavus Education'),
(64904, 'https://ror.org/05v1v4z83', 'en', 1, 'https://ror.org/05v1v4z83 Jesse’s Journey – The Foundation for Gene and Cell Therapy'),
(64905, 'https://ror.org/05v4fng20', 'fr', 1, 'https://ror.org/05v4fng20 Association FranƧaise pour la Recherche Thermale'),
(64906, 'https://ror.org/05v54nj07', 'en', 1, 'https://ror.org/05v54nj07 Finnish Research Foundation for Orthopaedics and Traumatology Ortopedian ja traumatologian tutkimussƤƤtiƶ'),
(64907, 'https://ror.org/05v57yz73', 'en', 1, 'https://ror.org/05v57yz73 Against Abuse'),
(64908, 'https://ror.org/05v5gb241', 'en', 1, 'https://ror.org/05v5gb241 Carolina Arthritis Associates'),
(64909, 'https://ror.org/05v5gqt78', 'en', 1, 'https://ror.org/05v5gqt78 International Spine, Pain & Performance'),
(64910, 'https://ror.org/05v6ze002', 'de', 1, 'https://ror.org/05v6ze002 Energieinstitut Vorarlberg'),
(64911, 'https://ror.org/05v7vyj84', 'en', 1, 'https://ror.org/05v7vyj84 American Orthotic and Prosthetic Association'),
(64912, 'https://ror.org/05v8dvy39', 'no_lang_code', 1, 'https://ror.org/05v8dvy39 Essentium Materials (United States)'),
(64913, 'https://ror.org/05v8yha51', 'en', 1, 'https://ror.org/05v8yha51 Institute for Urban Indigenous Health'),
(64914, 'https://ror.org/05vbevg81', 'en', 1, 'https://ror.org/05vbevg81 Kaiser Permanente San Jose Medical Center'),
(64915, 'https://ror.org/05vbgdg34', 'en', 1, 'https://ror.org/05vbgdg34 Central Texas Spine Institute'),
(64916, 'https://ror.org/05vcqrs05', 'de', 1, 'https://ror.org/05vcqrs05 Rehaklinik Zihlschlacht'),
(64917, 'https://ror.org/05vctz765', 'en', 1, 'https://ror.org/05vctz765 Arthritis Northwest'),
(64918, 'https://ror.org/05vfzkq36', 'en', 1, 'https://ror.org/05vfzkq36 National Association of Counties'),
(64919, 'https://ror.org/05vg37x37', 'en', 1, 'https://ror.org/05vg37x37 Saint Alphonsus Medical Center'),
(64920, 'https://ror.org/05vgtss27', 'en', 1, 'https://ror.org/05vgtss27 C Care Orthopedics'),
(64921, 'https://ror.org/05vhw2a70', 'en', 1, 'https://ror.org/05vhw2a70 Institute of Kidney Lifescience Technologies'),
(64922, 'https://ror.org/05vmsw483', 'en', 1, 'https://ror.org/05vmsw483 Minnesota Oncology'),
(64923, 'https://ror.org/05vnpr825', 'en', 1, 'https://ror.org/05vnpr825 Linear Clinical Research'),
(64924, 'https://ror.org/05vp7ha71', 'en', 1, 'https://ror.org/05vp7ha71 Thrombolysis in Myocardial Infarction Study Group'),
(64925, 'https://ror.org/05vpy0b11', 'no_lang_code', 1, 'https://ror.org/05vpy0b11 Integrative Health Technologies (United States)'),
(64926, 'https://ror.org/05vstp197', 'en', 1, 'https://ror.org/05vstp197 Association of American Cancer Institutes'),
(64927, 'https://ror.org/05vtewd28', 'no_lang_code', 1, 'https://ror.org/05vtewd28 Chiasma (United States)'),
(64928, 'https://ror.org/05vvd0y68', 'en', 1, 'https://ror.org/05vvd0y68 Alzheimer Society London Middlesex'),
(64929, 'https://ror.org/05vvryp86', 'de', 1, 'https://ror.org/05vvryp86 Deutsches Zentrum für Musiktherapieforschung'),
(64930, 'https://ror.org/05vx20690', 'es', 1, 'https://ror.org/05vx20690 Sociedad EspaƱola de Patologƭa Digestiva'),
(64931, 'https://ror.org/05vxg1z76', 'no_lang_code', 1, 'https://ror.org/05vxg1z76 Physeon (Switzerland)'),
(64932, 'https://ror.org/05w107e31', 'en', 1, 'https://ror.org/05w107e31 Great Lakes Clinical Trials'),
(64933, 'https://ror.org/05w1qwk94', 'en', 1, 'https://ror.org/05w1qwk94 Kaiser Permanente Vacaville Medical Center'),
(64934, 'https://ror.org/05w3d1m46', 'de', 1, 'https://ror.org/05w3d1m46 Ɩsterreichische Gesellschaft für AnƤsthesiologie, Reanimation und Intensivmedizin'),
(64935, 'https://ror.org/05w3mbc13', 'no_lang_code', 1, 'https://ror.org/05w3mbc13 Shenzhen Hanke Bioengineering (China)'),
(64936, 'https://ror.org/05w7fem48', 'en', 1, 'https://ror.org/05w7fem48 South Bronx Overall Economic Development'),
(64937, 'https://ror.org/05w8yzs02', 'es', 1, 'https://ror.org/05w8yzs02 Innpulsa'),
(64938, 'https://ror.org/05w9jxk76', 'es', 1, 'https://ror.org/05w9jxk76 Nueva Opción'),
(64939, 'https://ror.org/05wbdm460', 'en', 1, 'https://ror.org/05wbdm460 Swiss Ankylosing Spondylitis Association'),
(64940, 'https://ror.org/05wcjxp35', 'no_lang_code', 1, 'https://ror.org/05wcjxp35 Great Minds in STEM (United States)'),
(64941, 'https://ror.org/05wd4ca48', 'en', 1, 'https://ror.org/05wd4ca48 Nikiforov Russian Center of Emergency and Radiation Medicine ŠŠøŠŗŠøŃ„Š¾Ń€Š¾Š² Российский центр ŃŠŗŃŃ‚Ń€ŠµŠ½Š½Š¾Š¹ Šø раГиационной меГицины'),
(64942, 'https://ror.org/05wdzq856', 'en', 1, 'https://ror.org/05wdzq856 Institute for Atherosclerosis Research'),
(64943, 'https://ror.org/05we0sj60', 'en', 1, 'https://ror.org/05we0sj60 Food Research and Development Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за изслеГване Šø развитие на храните'),
(64944, 'https://ror.org/05wgs8j78', 'en', 1, 'https://ror.org/05wgs8j78 Northwest Oklahoma Osteopathic Foundation'),
(64945, 'https://ror.org/05whcgs91', 'no_lang_code', 1, 'https://ror.org/05whcgs91 Picosense (United States)'),
(64946, 'https://ror.org/05wk1qp57', 'ro', 1, 'https://ror.org/05wk1qp57 FundaÅ£ia pentru Formare Profesională şi ƎnvăţămĆ¢nt Preuniversitar - Viitor'),
(64947, 'https://ror.org/05wk4ae67', 'no_lang_code', 1, 'https://ror.org/05wk4ae67 Servier (Germany)'),
(64948, 'https://ror.org/05wry3s62', 'en', 1, 'https://ror.org/05wry3s62 Prader Willi Syndrome Association'),
(64949, 'https://ror.org/05wsbcr05', 'de', 1, 'https://ror.org/05wsbcr05 Medprevent Ottobrunn'),
(64950, 'https://ror.org/05wsh0y70', 'en', 1, 'https://ror.org/05wsh0y70 Williams Plastic Surgery Specialists'),
(64951, 'https://ror.org/05wwhq151', 'de', 1, 'https://ror.org/05wwhq151 Technologiestiftung Berlin, Technologiestiftung Innovationszentrum Berlin'),
(64952, 'https://ror.org/05wz0rz65', 'fr', 1, 'https://ror.org/05wz0rz65 Association SahƩlienne de Recherche AppliquƩe pour le DƩveloppement Durable'),
(64953, 'https://ror.org/05wzgbw88', 'en', 1, 'https://ror.org/05wzgbw88 Mitsukoshi Health and Welfare Foundation č²”å›£ę³•äŗŗäø‰č¶ŠåŽšē”Ÿäŗ‹ę„­å›£'),
(64954, 'https://ror.org/05x0bqw91', 'en', 1, 'https://ror.org/05x0bqw91 Infectious Diseases and the Research Institute'),
(64955, 'https://ror.org/05x1ves75', 'en', 1, 'https://ror.org/05x1ves75 NHS Fife'),
(64956, 'https://ror.org/05x4n5887', 'en', 1, 'https://ror.org/05x4n5887 Information Systems Audit and Control Association'),
(64957, 'https://ror.org/05x5j6e28', 'en', 1, 'https://ror.org/05x5j6e28 The Hospital of Central Connecticut'),
(64958, 'https://ror.org/05x6pvv95', 'en', 1, 'https://ror.org/05x6pvv95 Retina Institute'),
(64959, 'https://ror.org/05x6vad86', 'en', 1, 'https://ror.org/05x6vad86 Save by Seva Foundation Stichting Save by Seva'),
(64960, 'https://ror.org/05x9nc097', 'en', 1, 'https://ror.org/05x9nc097 Xiamen Maternal and Child Health Hospital åŽ¦é—Øå¦‡å¹¼äæå„é™¢'),
(64961, 'https://ror.org/05xc9cz73', 'en', 1, 'https://ror.org/05xc9cz73 Nutraveris'),
(64962, 'https://ror.org/05xd60306', 'en', 1, 'https://ror.org/05xd60306 Yulin Orthopedics Hospital of Chinese and Western Medicine ēŽ‰ęž—åø‚äø­č„æåŒ»ē»“åˆéŖØē§‘åŒ»é™¢ę˜Æ'),
(64963, 'https://ror.org/05xenh663', 'en', 1, 'https://ror.org/05xenh663 Kaiser Permanente Tysons Corner Medical Center'),
(64964, 'https://ror.org/05xet3f85', 'en', 1, 'https://ror.org/05xet3f85 Interlochen Center for the Arts'),
(64965, 'https://ror.org/05xfh8p29', 'no_lang_code', 1, 'https://ror.org/05xfh8p29 Baoji City Central Hospital å®éø”åø‚äø­åæƒåŒ»é™¢'),
(64966, 'https://ror.org/05xgv5563', 'de', 1, 'https://ror.org/05xgv5563 Tauern Hospital Zell am See, Tauernkrankenhaus Zell am See'),
(64967, 'https://ror.org/05xn2x639', 'no_lang_code', 1, 'https://ror.org/05xn2x639 Curacyte (Germany)'),
(64968, 'https://ror.org/05xp1nk14', 'no_lang_code', 1, 'https://ror.org/05xp1nk14 Isarna Therapeutics (Germany)'),
(64969, 'https://ror.org/05xqrcz80', 'no_lang_code', 1, 'https://ror.org/05xqrcz80 Lundbeck (Italy)'),
(64970, 'https://ror.org/05xrv5316', 'en', 1, 'https://ror.org/05xrv5316 Hellenic Osteoporosis Foundation Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪŸĻƒĻ„ĪµĪæĻ€ĻŒĻĻ‰ĻƒĪ·Ļ‚'),
(64971, 'https://ror.org/05xs81d10', 'no_lang_code', 1, 'https://ror.org/05xs81d10 "Hadji Dimitar" Hospital MHAT ā€œHadji Dimitarā€ ŠœŠ‘ŠŠ› "ЄаГжи Š”ŠøŠ¼ŠøŃ‚ŃŠŃ€"'),
(64972, 'https://ror.org/05xte2s27', 'de', 1, 'https://ror.org/05xte2s27 Institut für Versorgungsforschung in der Onkologie'),
(64973, 'https://ror.org/05xv38e59', 'no_lang_code', 1, 'https://ror.org/05xv38e59 Brf (Brazil)'),
(64974, 'https://ror.org/05xvh6h11', 'es', 1, 'https://ror.org/05xvh6h11 Los Comuneros Hospital Universitario de Bucaramanga'),
(64975, 'https://ror.org/05xwdg192', 'en', 1, 'https://ror.org/05xwdg192 Southern Ohio Medical Center'),
(64976, 'https://ror.org/05xzd4n85', 'nl', 1, 'https://ror.org/05xzd4n85 Stichting Roomsch Catholyk Oude Armen kantoor'),
(64977, 'https://ror.org/05xzsm645', 'en', 1, 'https://ror.org/05xzsm645 Trung Vuong University ĐẔi hį»c Trʰng Vʰʔng'),
(64978, 'https://ror.org/05y09dk26', 'en', 1, 'https://ror.org/05y09dk26 Samara Regional Clinical Oncology Center Дамарский областной клинический онкологический Гиспансер'),
(64979, 'https://ror.org/05y1zs562', 'en', 1, 'https://ror.org/05y1zs562 404 General Military Hospital 404 Ī“ĪµĪ½Ī¹ĪŗĻŒ Ī£Ļ„ĻĪ±Ļ„Ī¹Ļ‰Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(64980, 'https://ror.org/05y6ppz60', 'en', 1, 'https://ror.org/05y6ppz60 Don Harrington Discovery Center'),
(64981, 'https://ror.org/05y6zv446', 'en', 1, 'https://ror.org/05y6zv446 Capio Clinic in the Park Capio Klinik im Park'),
(64982, 'https://ror.org/05y75g627', 'fr', 1, 'https://ror.org/05y75g627 Association des Familles de Traumatisés Crâniens d''Alsace'),
(64983, 'https://ror.org/05y7rdz72', 'sl', 1, 'https://ror.org/05y7rdz72 Očesna Klinika UKC Ljubljana'),
(64984, 'https://ror.org/05y895e77', 'de', 1, 'https://ror.org/05y895e77 Landesuntersuchungsanstalt Sachsen'),
(64985, 'https://ror.org/05y8mf384', 'it', 1, 'https://ror.org/05y8mf384 Centro Interuniversitario di Ricerca Per lo Sviluppo sostenibile'),
(64986, 'https://ror.org/05y922z47', 'en', 1, 'https://ror.org/05y922z47 Leonardis Foundation'),
(64987, 'https://ror.org/05y9nr091', 'en', 1, 'https://ror.org/05y9nr091 Arts OutWest'),
(64988, 'https://ror.org/05ya6s054', 'en', 1, 'https://ror.org/05ya6s054 Canadian Foundation for Dental Hygiene Research and Education'),
(64989, 'https://ror.org/05ya9gp75', 'no_lang_code', 1, 'https://ror.org/05ya9gp75 Winston Pharmaceuticals (United States)'),
(64990, 'https://ror.org/05ye26511', 'no_lang_code', 1, 'https://ror.org/05ye26511 TechSolve (United States)'),
(64991, 'https://ror.org/05yf87y86', 'en', 1, 'https://ror.org/05yf87y86 Juvenile Protective Association'),
(64992, 'https://ror.org/05ygse102', 'no_lang_code', 1, 'https://ror.org/05ygse102 Shell (Germany)'),
(64993, 'https://ror.org/05yh2yz22', 'de', 1, 'https://ror.org/05yh2yz22 Krankenhaus Jerusalem'),
(64994, 'https://ror.org/05yh4az66', 'no_lang_code', 1, 'https://ror.org/05yh4az66 Instant Advice (Sweden)'),
(64995, 'https://ror.org/05yhpvt92', 'en', 1, 'https://ror.org/05yhpvt92 IHA Hematology Oncology Consultants'),
(64996, 'https://ror.org/05yjkn316', 'en', 1, 'https://ror.org/05yjkn316 Hamburg Institute for Therapy Research Hamburger Institut für Therapieforschung'),
(64997, 'https://ror.org/05ykvn529', 'en', 1, 'https://ror.org/05ykvn529 Manhattan Psychiatric Center'),
(64998, 'https://ror.org/05ymjt203', 'no_lang_code', 1, 'https://ror.org/05ymjt203 Kedrion (Italy)'),
(64999, 'https://ror.org/05yp06a73', 'de', 1, 'https://ror.org/05yp06a73 Schweizerische Gesellschaft für Pulmonale Hypertonie'),
(65000, 'https://ror.org/05ypvb778', 'no_lang_code', 1, 'https://ror.org/05ypvb778 Novintethical Pharma (Switzerland)'),
(65001, 'https://ror.org/00008m859', 'no_lang_code', 1, 'https://ror.org/00008m859 3-Sci (United Kingdom)'),
(65002, 'https://ror.org/0001g7380', 'en', 1, 'https://ror.org/0001g7380 Research Institute "Vector" ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "Вектор"'),
(65003, 'https://ror.org/000245824', 'en', 1, 'https://ror.org/000245824 Future Human Resources Research Institute ėÆøėž˜ ģøģ  ģžģ› ģ—°źµ¬ģ†Œ'),
(65004, 'https://ror.org/000275q75', 'en', 1, 'https://ror.org/000275q75 Department of Public Service'),
(65005, 'https://ror.org/00032t641', 'en', 1, 'https://ror.org/00032t641 Surya Hospitals ą¤øą„‚ą¤°ą„ą¤Æą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²ą„ą¤ø'),
(65006, 'https://ror.org/000372389', 'en', 1, 'https://ror.org/000372389 Intellectual Property Institute'),
(65007, 'https://ror.org/0003ang68', 'en', 1, 'https://ror.org/0003ang68 Federal Forestry Agency of Russia Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń Š»ŠµŃŠ½Š°Ń служба России'),
(65008, 'https://ror.org/0006wrh30', 'en', 1, 'https://ror.org/0006wrh30 Consejo OleĆ­cola Internacional International Olive Council'),
(65009, 'https://ror.org/0007q9r82', 'no_lang_code', 1, 'https://ror.org/0007q9r82 NiCADa Research & Development (China)'),
(65010, 'https://ror.org/0009f0p28', 'en', 1, 'https://ror.org/0009f0p28 Wuxi Municipal Product Quality Supervision and Inspection Institute ę— é””åø‚äŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒé™¢'),
(65011, 'https://ror.org/000ak5281', 'en', 1, 'https://ror.org/000ak5281 Missouri Department of Public Safety'),
(65012, 'https://ror.org/000exqh08', 'no_lang_code', 1, 'https://ror.org/000exqh08 Azis Mining Service (Poland)'),
(65013, 'https://ror.org/000ffa622', 'en', 1, 'https://ror.org/000ffa622 Patriarchal Institute of Patristic Studies Ī Ī±Ļ„ĻĪ¹Ī±ĻĻ‡Ī¹ĪŗĻŒĪ½ ΙΓρυμα Ī Ī±Ļ„ĪµĻĪ¹ĪŗĻŽĪ½ ĪœĪµĪ»ĪµĻ„ĻŽĪ½'),
(65014, 'https://ror.org/000h77t05', 'en', 1, 'https://ror.org/000h77t05 Songdo Hospital ģ„œģšøģ†”ė„ė³‘ģ›'),
(65015, 'https://ror.org/000hc5726', 'no_lang_code', 1, 'https://ror.org/000hc5726 First Design and Research Institute MI China (China) 中国第一设讔研究院'),
(65016, 'https://ror.org/000hew328', 'no_lang_code', 1, 'https://ror.org/000hew328 Knowles (United States)'),
(65017, 'https://ror.org/000j5qy96', 'no_lang_code', 1, 'https://ror.org/000j5qy96 AdvanPro (China)'),
(65018, 'https://ror.org/000jxr567', 'en', 1, 'https://ror.org/000jxr567 Association of Independent Museums'),
(65019, 'https://ror.org/000m4se28', 'en', 1, 'https://ror.org/000m4se28 Aerospace Research Institute Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł‡ŁˆŲ§ŁŲ¶Ų§ā€Ž'),
(65020, 'https://ror.org/000n8h147', 'no_lang_code', 1, 'https://ror.org/000n8h147 Fripp Design (United Kingdom)'),
(65021, 'https://ror.org/000p6eh83', 'en', 1, 'https://ror.org/000p6eh83 Rio Grande Council of Governments'),
(65022, 'https://ror.org/000qm5821', 'no_lang_code', 1, 'https://ror.org/000qm5821 Chain Biotechnology (United Kingdom)'),
(65023, 'https://ror.org/000qr7b45', 'en', 1, 'https://ror.org/000qr7b45 Directorate of Health'),
(65024, 'https://ror.org/000tk0v89', 'no_lang_code', 1, 'https://ror.org/000tk0v89 Giprotyumenneftegaz (Russia) Š“ŠøŠæŃ€Š¾Ń‚ŃŽŠ¼ŠµŠ½Š½ŠµŃ„Ń‚ŠµŠ³Š°Š·'),
(65025, 'https://ror.org/000vg1h78', 'en', 1, 'https://ror.org/000vg1h78 Beijing Institute of Nutritional Sources åŒ—äŗ¬åø‚č„å…»ęŗē ”ē©¶ę‰€'),
(65026, 'https://ror.org/000wc3348', 'en', 1, 'https://ror.org/000wc3348 Guangdong Machinery Research Institute å¹æäøœēœęœŗę¢°ē ”ē©¶ę‰€'),
(65027, 'https://ror.org/000z10w71', 'en', 1, 'https://ror.org/000z10w71 Boston Landmarks Commission'),
(65028, 'https://ror.org/001398926', 'en', 1, 'https://ror.org/001398926 Balshaw’s Church of England High School'),
(65029, 'https://ror.org/0013rer79', 'no_lang_code', 1, 'https://ror.org/0013rer79 Ningbo Transportation Planning and Design Institute (China)'),
(65030, 'https://ror.org/00142p479', 'en', 1, 'https://ror.org/00142p479 Institute for Human Development'),
(65031, 'https://ror.org/00146qx36', 'en', 1, 'https://ror.org/00146qx36 Jiujiang Vocational University ä¹ę±ŸčŒäøšå¤§å­¦'),
(65032, 'https://ror.org/0014sb331', 'en', 1, 'https://ror.org/0014sb331 Suncheon Jeil College ģˆœģ²œģ œģ¼ėŒ€ķ•™źµ'),
(65033, 'https://ror.org/0014vc978', 'en', 1, 'https://ror.org/0014vc978 Shanxi Provincial Traffic Planning Survey and Design Institute å±±č„æēœäŗ¤é€šč§„åˆ’å‹˜åÆŸč®¾č®”é™¢'),
(65034, 'https://ror.org/00153ex82', 'no_lang_code', 1, 'https://ror.org/00153ex82 Socotec (United Kingdom)'),
(65035, 'https://ror.org/001561737', 'en', 1, 'https://ror.org/001561737 Research Institute Orion'),
(65036, 'https://ror.org/00169v428', 'en', 1, 'https://ror.org/00169v428 The Sitia Development Organisation Ο ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ Ανάπτυξης Σητείας'),
(65037, 'https://ror.org/0017thv62', 'en', 1, 'https://ror.org/0017thv62 The Korean Social and Personality Psychological Association ķ•œźµ­ ģ‚¬ķšŒ ė° ģøģ„± 심리 ķ•™ķšŒ'),
(65038, 'https://ror.org/0018yg518', 'en', 1, 'https://ror.org/0018yg518 Phoenix Bioinformatics'),
(65039, 'https://ror.org/0018ymk77', 'no_lang_code', 1, 'https://ror.org/0018ymk77 Sibtsvetmetniiproekt Š”Š˜Š‘Š¦Š’Š•Š¢ŠœŠ•Š¢ŠŠ˜Š˜ŠŸŠ ŠžŠ•ŠšŠ¢'),
(65040, 'https://ror.org/0019q7242', 'en', 1, 'https://ror.org/0019q7242 Ural Scientific Research Institute of Dermatovenerology and Immunopathology'),
(65041, 'https://ror.org/001amex23', 'en', 1, 'https://ror.org/001amex23 Missouri Secretary of State''s Office'),
(65042, 'https://ror.org/001d11g88', 'en', 1, 'https://ror.org/001d11g88 Agricultural Research Institute for South-East Region ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Юго-Восточного'),
(65043, 'https://ror.org/001dvnn52', 'en', 1, 'https://ror.org/001dvnn52 Financial Conduct Authority'),
(65044, 'https://ror.org/001e26h79', 'en', 1, 'https://ror.org/001e26h79 All-Russian Scientific Research Institute of Soybean Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сои'),
(65045, 'https://ror.org/001eccs90', 'no_lang_code', 1, 'https://ror.org/001eccs90 Amadeus Capital Partners (United Kingdom)'),
(65046, 'https://ror.org/001ej4640', 'en', 1, 'https://ror.org/001ej4640 Dignitas International'),
(65047, 'https://ror.org/001eqde88', 'en', 1, 'https://ror.org/001eqde88 Z.V.M.Unani Medical College & Hospital'),
(65048, 'https://ror.org/001h7kn14', 'no_lang_code', 1, 'https://ror.org/001h7kn14 Hefei Design and Research Institute of Coal Industry (China) ē…¤ē‚­å·„äøšåˆč‚„č®¾č®”ē ”ē©¶é™¢'),
(65049, 'https://ror.org/001hkh847', 'en', 1, 'https://ror.org/001hkh847 Sorabol College ģ„œė¼ė²ŒėŒ€ķ•™'),
(65050, 'https://ror.org/001hybk69', 'en', 1, 'https://ror.org/001hybk69 Association of German Banks Bundesverband deutscher Banken'),
(65051, 'https://ror.org/001kca336', 'no_lang_code', 1, 'https://ror.org/001kca336 Encirc (United Kingdom)'),
(65052, 'https://ror.org/001kj9s64', 'en', 1, 'https://ror.org/001kj9s64 Bristol Natural History Consortium'),
(65053, 'https://ror.org/001ky3808', 'no_lang_code', 1, 'https://ror.org/001ky3808 Allford Hall Monaghan Morris (United Kingdom)'),
(65054, 'https://ror.org/001rebv08', 'en', 1, 'https://ror.org/001rebv08 People''s Bank of China äø­å›½äŗŗę°‘é“¶č”Œ'),
(65055, 'https://ror.org/001x3nr42', 'en', 1, 'https://ror.org/001x3nr42 The BE Vedeneev All Russia Institute of Hydraulic Engineering Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГротехники имени Š‘.Š•. ВеГенеева'),
(65056, 'https://ror.org/001x6t991', 'no_lang_code', 1, 'https://ror.org/001x6t991 Immaterial Labs (United Kingdom)'),
(65057, 'https://ror.org/001xr1669', 'en', 1, 'https://ror.org/001xr1669 Gansu Provincial Academy of Membrane Science and Technology ē”˜č‚ƒēœč†œē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(65058, 'https://ror.org/001xv6k34', 'no_lang_code', 1, 'https://ror.org/001xv6k34 Oran Pre-Cast (Ireland)'),
(65059, 'https://ror.org/001z3ck59', 'no_lang_code', 1, 'https://ror.org/001z3ck59 Jiangsu Institute of Ecomones (China) ę±Ÿč‹ēœęæ€ē“ ē ”ē©¶ę‰€'),
(65060, 'https://ror.org/0020kar26', 'en', 1, 'https://ror.org/0020kar26 Galway Film Centre'),
(65061, 'https://ror.org/00247dx40', 'no_lang_code', 1, 'https://ror.org/00247dx40 Tatung (Taiwan) å¤§åŒč‚”ä»½ęœ‰é™å…¬åø'),
(65062, 'https://ror.org/0024e4j94', 'no_lang_code', 1, 'https://ror.org/0024e4j94 China Financial Services Holdings (China) äø­åœ‹é‡‘čžęŠ•č³‡ē®”ē†ęœ‰é™å…¬åø'),
(65063, 'https://ror.org/00251mh42', 'no_lang_code', 1, 'https://ror.org/00251mh42 Amonics (China)'),
(65064, 'https://ror.org/0025ycf95', 'no_lang_code', 1, 'https://ror.org/0025ycf95 Pivotal (Spain)'),
(65065, 'https://ror.org/0026yhs27', 'no_lang_code', 1, 'https://ror.org/0026yhs27 China Resources (China) čÆę½¤é›†åœ˜'),
(65066, 'https://ror.org/0028eqh41', 'en', 1, 'https://ror.org/0028eqh41 Recovery Institute of Southwest Michigan'),
(65067, 'https://ror.org/0029tjt59', 'no_lang_code', 1, 'https://ror.org/0029tjt59 Milescan Technologies (China)'),
(65068, 'https://ror.org/002a2eq29', 'no_lang_code', 1, 'https://ror.org/002a2eq29 Zynga (United States)'),
(65069, 'https://ror.org/002da4m58', 'en', 1, 'https://ror.org/002da4m58 Korean Bible Society ķ•œźµ­ ģ„±ģ„œ 공회'),
(65070, 'https://ror.org/002f4va27', 'no_lang_code', 1, 'https://ror.org/002f4va27 JW Shinyak (South Korea) JW신약'),
(65071, 'https://ror.org/002fe3c26', 'no_lang_code', 1, 'https://ror.org/002fe3c26 VTRON (China) åØåˆ›'),
(65072, 'https://ror.org/002fqzg39', 'en', 1, 'https://ror.org/002fqzg39 Military Institute Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ военное авиационное инженерное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ'),
(65073, 'https://ror.org/002gcqm12', 'en', 1, 'https://ror.org/002gcqm12 State Tax Inspectorate Valstybinė Mokesčių Inspekcija'),
(65074, 'https://ror.org/002j3c366', 'en', 1, 'https://ror.org/002j3c366 Hong Kong Wireless Technology Industry Association é¦™ęøÆę— ēŗæē§‘ęŠ€å·„äøšåä¼š'),
(65075, 'https://ror.org/002jr8r89', 'en', 1, 'https://ror.org/002jr8r89 Public Service Development Agency įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒ”įƒ įƒ•įƒ˜įƒ”įƒ”įƒ‘įƒ˜įƒ” įƒ’įƒįƒœįƒ•įƒ˜įƒ—įƒįƒ įƒ”įƒ‘įƒ˜įƒ” įƒ”įƒįƒįƒ’įƒ”įƒœįƒ¢įƒ'),
(65076, 'https://ror.org/002k1r174', 'en', 1, 'https://ror.org/002k1r174 State-owned Assets Supervision and Administration Commission of the State Council å›½åŠ”é™¢å›½ęœ‰čµ„äŗ§ē›‘ē£ē®”ē†å§”å‘˜ä¼š'),
(65077, 'https://ror.org/002mt0228', 'no_lang_code', 1, 'https://ror.org/002mt0228 Eltis Microelectronics (China)'),
(65078, 'https://ror.org/002mzw222', 'en', 1, 'https://ror.org/002mzw222 Cape Coast Technical University'),
(65079, 'https://ror.org/002nnaj78', 'no_lang_code', 1, 'https://ror.org/002nnaj78 Walgreens Boots Alliance (United States)'),
(65080, 'https://ror.org/002pjp005', 'en', 1, 'https://ror.org/002pjp005 Baltic Marine Environment Protection Commission'),
(65081, 'https://ror.org/002qybp75', 'en', 1, 'https://ror.org/002qybp75 National Institute of Measurement and Testing Technology äø­å›½ęµ‹čÆ•ęŠ€ęœÆē ”ē©¶é™¢'),
(65082, 'https://ror.org/002r94d59', 'en', 1, 'https://ror.org/002r94d59 Mediolanum Cardio Research'),
(65083, 'https://ror.org/002tj9208', 'en', 1, 'https://ror.org/002tj9208 Construction Industry Council'),
(65084, 'https://ror.org/002xf8h28', 'en', 1, 'https://ror.org/002xf8h28 Tobacco Harm Reduction 4 Life'),
(65085, 'https://ror.org/002xt1d94', 'en', 1, 'https://ror.org/002xt1d94 Korea Reformed Theological Society ķ•œźµ­ 개혁 ģ‹ ķ•™ķšŒ'),
(65086, 'https://ror.org/002ywyv05', 'no_lang_code', 1, 'https://ror.org/002ywyv05 Icax (United Kingdom)'),
(65087, 'https://ror.org/002z7gg85', 'en', 1, 'https://ror.org/002z7gg85 Department of the Taoiseach Roinn an Taoisigh'),
(65088, 'https://ror.org/002zm9348', 'no_lang_code', 1, 'https://ror.org/002zm9348 VNIIGIS ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геофизических исслеГований геологоразвеГочных скважин['),
(65089, 'https://ror.org/0032hsp73', 'no_lang_code', 1, 'https://ror.org/0032hsp73 Athenex (China)'),
(65090, 'https://ror.org/0033kcc14', 'en', 1, 'https://ror.org/0033kcc14 Canadian Organization for Rare Disorders'),
(65091, 'https://ror.org/0034dyb91', 'no_lang_code', 1, 'https://ror.org/0034dyb91 ThyssenKrupp (China) č’‚ę£®å…‹č™ä¼Æč‚”ä»½å…¬åø'),
(65092, 'https://ror.org/00380qe69', 'fr', 1, 'https://ror.org/00380qe69 ComitƩ Champagne, ComitƩ Interprofessionnel du vin de Champagne'),
(65093, 'https://ror.org/003cp7918', 'en', 1, 'https://ror.org/003cp7918 Shanghai Micro Satellite Engineering Center äøŠęµ·å¾®åž‹å«ę˜Ÿå·„ēØ‹äø­åæƒ'),
(65094, 'https://ror.org/003d4z032', 'en', 1, 'https://ror.org/003d4z032 World Music Institute'),
(65095, 'https://ror.org/003da0193', 'no_lang_code', 1, 'https://ror.org/003da0193 Atlantis Resources (United Kingdom)'),
(65096, 'https://ror.org/003dqz155', 'en', 1, 'https://ror.org/003dqz155 Indiana Professional Licensing Agency'),
(65097, 'https://ror.org/003eds368', 'no_lang_code', 1, 'https://ror.org/003eds368 Samsung Pharm (South Korea) ģ‚¼ģ„±ģ œģ•½ćˆœ'),
(65098, 'https://ror.org/003f1a217', 'no_lang_code', 1, 'https://ror.org/003f1a217 Bizconline (China)'),
(65099, 'https://ror.org/003f9k191', 'en', 1, 'https://ror.org/003f9k191 Gem Arts'),
(65100, 'https://ror.org/003f9vj48', 'no_lang_code', 1, 'https://ror.org/003f9vj48 Bauman Lyons Architects (United Kingdom)'),
(65101, 'https://ror.org/003gcpg05', 'en', 1, 'https://ror.org/003gcpg05 Institute of Superhigh-Frequency Semiconductor Electronics of the Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ микроволновой ŠæŠ¾Š»ŃƒŠæŃ€Š¾Š²Š¾Š“Š½ŠøŠŗŠ¾Š²Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø Š ŠŠ'),
(65102, 'https://ror.org/003gy5515', 'en', 1, 'https://ror.org/003gy5515 Biology Institute of Shandong Academy of Sciences å±±äøœēœē§‘å­¦é™¢ē”Ÿē‰©ē ”ē©¶ę‰€'),
(65103, 'https://ror.org/003jehd84', 'en', 1, 'https://ror.org/003jehd84 Cromarty Firth Fishery Board'),
(65104, 'https://ror.org/003k32q32', 'no_lang_code', 1, 'https://ror.org/003k32q32 Ctrip'),
(65105, 'https://ror.org/003km8q97', 'en', 1, 'https://ror.org/003km8q97 Hong Kong Opto-Mechatronics Industries Association é¦™ęøÆäø­čÆēœ¼é”č£½é€ å» å•†ęœƒęœ‰é™å…¬åø'),
(65106, 'https://ror.org/003mgr108', 'de', 1, 'https://ror.org/003mgr108 Bundesverband Photovoltaic Austria'),
(65107, 'https://ror.org/003mmwh92', 'en', 1, 'https://ror.org/003mmwh92 Korean Musicological Society ķ•œźµ­źµ­ģ•…ķ•™ķšŒ'),
(65108, 'https://ror.org/003p49p42', 'no_lang_code', 1, 'https://ror.org/003p49p42 Fundamentproekt (Russia) Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚ŠæŃ€Š¾ŠµŠŗŃ‚'),
(65109, 'https://ror.org/003rwad73', 'de', 1, 'https://ror.org/003rwad73 Bundesverband Herzkranke Kinder'),
(65110, 'https://ror.org/003rwj896', 'no_lang_code', 1, 'https://ror.org/003rwj896 Ensol (Poland)'),
(65111, 'https://ror.org/003tn6j35', 'en', 1, 'https://ror.org/003tn6j35 Shandong Institute of Agricultural Sustainable Development å±±äøœå†œäøšåÆęŒē»­å‘å±•ē ”ē©¶é™¢'),
(65112, 'https://ror.org/003vwv291', 'en', 1, 'https://ror.org/003vwv291 Asiantaeth Trwyddedu Gyrwyr a Cherbydau Driver and Vehicle Licensing Agency'),
(65113, 'https://ror.org/003wpag88', 'es', 1, 'https://ror.org/003wpag88 Instituto Geofƭsico de la Escuela PolitƩcnica Nacional'),
(65114, 'https://ror.org/003xptq40', 'no_lang_code', 1, 'https://ror.org/003xptq40 Ex-Polon Kwieciński Fornalski Spółka Cywilna (Poland)'),
(65115, 'https://ror.org/003ydcg07', 'no_lang_code', 1, 'https://ror.org/003ydcg07 Aidyia (China)'),
(65116, 'https://ror.org/003yv5j54', 'en', 1, 'https://ror.org/003yv5j54 Canadian Association of Cardiovascular Prevention and Rehabilitation L''Association Canadienne pour la PrƩvention Cardiovasculaire et de RƩadaptation'),
(65117, 'https://ror.org/0041k0688', 'en', 1, 'https://ror.org/0041k0688 Institute of Food Safety, Animal Health and Environment ā€œBIORā€ Pārtikas droŔības, dzÄ«vnieku veselÄ«bas un vides zinātniskais institÅ«ts ā€žBIORā€'),
(65118, 'https://ror.org/0041szh84', 'no_lang_code', 1, 'https://ror.org/0041szh84 Inner Mongolia Electric Power (China) å†…č’™å¤ē”µåŠ›'),
(65119, 'https://ror.org/0042ng628', 'en', 1, 'https://ror.org/0042ng628 African Council on Narcotics'),
(65120, 'https://ror.org/004427313', 'en', 1, 'https://ror.org/004427313 International Association of Comparative Korean Studies źµ­ģ œė¹„źµķ•œźµ­ķ•™ķšŒ'),
(65121, 'https://ror.org/0045hhf36', 'no_lang_code', 1, 'https://ror.org/0045hhf36 Ashghal Ł‡ŁŠŲ¦Ų© الأؓغال العامة'),
(65122, 'https://ror.org/0048j1p96', 'no_lang_code', 1, 'https://ror.org/0048j1p96 Janssen (France)'),
(65123, 'https://ror.org/004b20975', 'en', 1, 'https://ror.org/004b20975 Changzhou Vocational Institute of Textile and Garment åøøå·žēŗŗē»‡ęœč£…čŒäøšęŠ€ęœÆå­¦é™¢'),
(65124, 'https://ror.org/004c4h916', 'en', 1, 'https://ror.org/004c4h916 Evaluation Support Scotland'),
(65125, 'https://ror.org/004drsj12', 'en', 1, 'https://ror.org/004drsj12 Korean Institute of Interior Design ķ•œźµ­ģ‹¤ė‚“ė””ģžģøķ•™ķšŒėŠ”'),
(65126, 'https://ror.org/004hsfv29', 'en', 1, 'https://ror.org/004hsfv29 Ministry for Finance'),
(65127, 'https://ror.org/004hvek19', 'en', 1, 'https://ror.org/004hvek19 International League of Dermatological Societies'),
(65128, 'https://ror.org/004kfs587', 'en', 1, 'https://ror.org/004kfs587 Moscow City Hospital No 29 Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–29 им. Š.Š­.Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(65129, 'https://ror.org/004n78r59', 'no_lang_code', 1, 'https://ror.org/004n78r59 Hetman Petro Sahaidachnyi National Army Academy ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŃŃƒŃ…Š¾ŠæŃƒŃ‚Š½ŠøŃ… Š²Ń–Š¹ŃŃŒŠŗ імені Š³ŠµŃ‚ŃŒŠ¼Š°Š½Š° ŠŸŠµŃ‚Ń€Š° ДагайГачного'),
(65130, 'https://ror.org/004q1d440', 'no_lang_code', 1, 'https://ror.org/004q1d440 HEL Group (United Kingdom)'),
(65131, 'https://ror.org/004rbvh98', 'en', 1, 'https://ror.org/004rbvh98 Phi Delta Phi'),
(65132, 'https://ror.org/004skt070', 'fi', 1, 'https://ror.org/004skt070 TTS Tyƶtehoseura'),
(65133, 'https://ror.org/004tf5h21', 'en', 1, 'https://ror.org/004tf5h21 Korea Radiation Industry Association ķ•œźµ­ė°©ģ‚¬ģ„ ģ‚°ģ—…ķ•™ķšŒ'),
(65134, 'https://ror.org/004v3gj87', 'en', 1, 'https://ror.org/004v3gj87 Ministry of Emergency Situations Š¢Ó©Ń‚ŠµŠ½ŃˆŠµ жағГайлар министрлігі'),
(65135, 'https://ror.org/004zrqc30', 'en', 1, 'https://ror.org/004zrqc30 Gangdong University ź°•ė™ ėŒ€ķ•™źµ'),
(65136, 'https://ror.org/004zxvq64', 'en', 1, 'https://ror.org/004zxvq64 Bundesministerium der Finanzen Federal Ministry of Finance'),
(65137, 'https://ror.org/0050zy157', 'no_lang_code', 1, 'https://ror.org/0050zy157 Fresenius Kabi (South Korea) ķ”„ė ˆģ§€ė‹ˆģš°ģŠ¤ģ¹“ė¹„ģ½”ė¦¬ģ•„'),
(65138, 'https://ror.org/005205v40', 'en', 1, 'https://ror.org/005205v40 Korean Society for Industrial and Organizational Psychology ķ•œźµ­ģ‚°ģ—…ė°ģ”°ģ§ģ‹¬ė¦¬ķ•™ķšŒ'),
(65139, 'https://ror.org/0052whg11', 'en', 1, 'https://ror.org/0052whg11 Gansu Research Institute of Chemical Industry ē”˜č‚ƒēœåŒ–å·„ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(65140, 'https://ror.org/00540tm93', 'en', 1, 'https://ror.org/00540tm93 Conservative Institute of M. R. ŠtefÔnik Konzervatívny inŔtitút M. R. ŠtefÔnika'),
(65141, 'https://ror.org/0054tdg51', 'en', 1, 'https://ror.org/0054tdg51 Shandong Academy of Pesticide Science å±±äøœēœå†œčÆē§‘å­¦ē ”ē©¶é™¢'),
(65142, 'https://ror.org/0055bsh22', 'no_lang_code', 1, 'https://ror.org/0055bsh22 Burrenbeo Trust'),
(65143, 'https://ror.org/0055vg673', 'en', 1, 'https://ror.org/0055vg673 Business History Conference'),
(65144, 'https://ror.org/0055wm418', 'de', 1, 'https://ror.org/0055wm418 Ministerium der Finanzen des Landes Sachsen-Anhalt'),
(65145, 'https://ror.org/005781837', 'en', 1, 'https://ror.org/005781837 Water Board of Lemesos Ī£Ļ…Ī¼Ī²ĪæĻĪ»Ī¹Īæ ΄Γατοπρομήθειας Ī›ĪµĪ¼ĪµĻƒĪæĻ'),
(65146, 'https://ror.org/0057p6x39', 'en', 1, 'https://ror.org/0057p6x39 International Risk Governance Council'),
(65147, 'https://ror.org/0058b2697', 'en', 1, 'https://ror.org/0058b2697 All-Russian Scientific Research Institute of Lupine Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š»ŃŽŠæŠøŠ½Š°'),
(65148, 'https://ror.org/0058pdq21', 'no_lang_code', 1, 'https://ror.org/0058pdq21 Rodsum Wireless (China)'),
(65149, 'https://ror.org/0058tb798', 'en', 1, 'https://ror.org/0058tb798 The Society for Teaching English through Media ģ˜ģƒģ˜ģ–“źµģœ”ķ•™ķšŒ'),
(65150, 'https://ror.org/005bzjd21', 'no_lang_code', 1, 'https://ror.org/005bzjd21 Roche (India)'),
(65151, 'https://ror.org/005ccd956', 'en', 1, 'https://ror.org/005ccd956 Korean Association for History of Modern Art ķ˜„ėŒ€ėÆøģˆ ģ‚¬ķ•™ķšŒ'),
(65152, 'https://ror.org/005ds8z67', 'en', 1, 'https://ror.org/005ds8z67 Nevada Department of Agriculture'),
(65153, 'https://ror.org/005ep3598', 'no_lang_code', 1, 'https://ror.org/005ep3598 Zhejiang Chint Electrics (China) ęµ™ę±Ÿę­£ę³°ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(65154, 'https://ror.org/005g0ws49', 'en', 1, 'https://ror.org/005g0ws49 Tax Law Association'),
(65155, 'https://ror.org/005gz3f76', 'fr', 1, 'https://ror.org/005gz3f76 AcadƩmie Nationale des Sciences et Techniques du SƩnƩgal'),
(65156, 'https://ror.org/005h0gs91', 'no_lang_code', 1, 'https://ror.org/005h0gs91 Enzolve Technologies (Ireland)'),
(65157, 'https://ror.org/005hd0857', 'no_lang_code', 1, 'https://ror.org/005hd0857 Intergen Consulting Group (South Korea) ģøķ„°ģ   ģ»Øģ„¤ķŒ… 그룹'),
(65158, 'https://ror.org/005n3jc56', 'en', 1, 'https://ror.org/005n3jc56 Ministry of Water Resources and Meteorology įž€įŸ’įžšįžŸįž½įž„įž’įž“įž’įž¶įž“įž‘įž¹įž€įž“įž·įž„įž§įžįž»įž“įž·įž™įž˜'),
(65159, 'https://ror.org/005n4rr58', 'en', 1, 'https://ror.org/005n4rr58 Scientific Research Institute of Introscopy ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ интроскопии'),
(65160, 'https://ror.org/005n8c828', 'en', 1, 'https://ror.org/005n8c828 Science Gallery International'),
(65161, 'https://ror.org/005qxjw75', 'en', 1, 'https://ror.org/005qxjw75 Habitat for Humanity of Collier County'),
(65162, 'https://ror.org/005r9px72', 'no_lang_code', 1, 'https://ror.org/005r9px72 Qatar Mining (Qatar)'),
(65163, 'https://ror.org/005rems48', 'en', 1, 'https://ror.org/005rems48 Interuniversity Center for Social Science Theory and Methodology'),
(65164, 'https://ror.org/005ysj118', 'en', 1, 'https://ror.org/005ysj118 Changzhou Vocational Institute of Light Industry åøøå·žč½»å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(65165, 'https://ror.org/005yy5d32', 'en', 1, 'https://ror.org/005yy5d32 Nantong Snake Treatment Research Institute'),
(65166, 'https://ror.org/005yzhk58', 'en', 1, 'https://ror.org/005yzhk58 Hassle Free Clinic'),
(65167, 'https://ror.org/005zkh270', 'en', 1, 'https://ror.org/005zkh270 American Risk and Insurance Association'),
(65168, 'https://ror.org/006424y87', 'en', 1, 'https://ror.org/006424y87 Office of the Attorney General'),
(65169, 'https://ror.org/00659aj19', 'en', 1, 'https://ror.org/00659aj19 Philanthropy New York'),
(65170, 'https://ror.org/0067g4302', 'no_lang_code', 1, 'https://ror.org/0067g4302 Meizu (China) é­…ę—ē§‘ęŠ€ęœ‰é™å…¬åø'),
(65171, 'https://ror.org/0068m0j38', 'en', 1, 'https://ror.org/0068m0j38 Cancer Research UK Cambridge Center'),
(65172, 'https://ror.org/0068qef60', 'en', 1, 'https://ror.org/0068qef60 Korean Broadcasters Association ķ•œźµ­ė°©ģ†”ķ˜‘ķšŒ'),
(65173, 'https://ror.org/006bvz121', 'en', 1, 'https://ror.org/006bvz121 Korea Public Relations Consultancy Association ķ•œźµ­ ķ™ė³“ ģƒė‹“ķšŒ'),
(65174, 'https://ror.org/006ec3357', 'en', 1, 'https://ror.org/006ec3357 Culinary Institute of Korea'),
(65175, 'https://ror.org/006fm2278', 'no_lang_code', 1, 'https://ror.org/006fm2278 Midea Group (China) ē¾Žēš„é›†å›¢'),
(65176, 'https://ror.org/006g7b022', 'fr', 1, 'https://ror.org/006g7b022 ARCTIConnexion'),
(65177, 'https://ror.org/006gmcn85', 'en', 1, 'https://ror.org/006gmcn85 Kelkar Education Trust''s Scientific Research Centre'),
(65178, 'https://ror.org/006gwfr44', 'no_lang_code', 1, 'https://ror.org/006gwfr44 Sailun Jinyu Group (China) 赛轮金宇集团'),
(65179, 'https://ror.org/006h3y937', 'en', 1, 'https://ror.org/006h3y937 MRA Group'),
(65180, 'https://ror.org/006hdm859', 'fr', 1, 'https://ror.org/006hdm859 Parkinson Quebec'),
(65181, 'https://ror.org/006j3m787', 'en', 1, 'https://ror.org/006j3m787 Specialized Scientific Research Institute of Instrument Engineering'),
(65182, 'https://ror.org/006knem90', 'en', 1, 'https://ror.org/006knem90 Tatar Scientific Research Institute of Agrochemistry and Soil Science Татарский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ агрохимии Šø ŠæŠ¾Ń‡Š²Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ - обособленное ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€Š½Š¾Šµ поГразГеление Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Š³Š¾ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŃ науки'),
(65183, 'https://ror.org/006npbt15', 'en', 1, 'https://ror.org/006npbt15 Veterinaar- ja Toiduamet Veterinary and Food Board'),
(65184, 'https://ror.org/006pcz623', 'no_lang_code', 1, 'https://ror.org/006pcz623 Informatica (South Korea) ģøķ¬ė§¤ķ‹°ģ¹“'),
(65185, 'https://ror.org/006pd7g98', 'no_lang_code', 1, 'https://ror.org/006pd7g98 Cell Guidance Systems (United Kingdom)'),
(65186, 'https://ror.org/006qwan38', 'en', 1, 'https://ror.org/006qwan38 Guangdong Work Injury Rehabilitation Hospital å¹æäøœēœå·„ä¼¤åŗ·å¤åŒ»é™¢'),
(65187, 'https://ror.org/006sbr164', 'no_lang_code', 1, 'https://ror.org/006sbr164 Gemalto (Netherlands)'),
(65188, 'https://ror.org/006tkeh25', 'no_lang_code', 1, 'https://ror.org/006tkeh25 Icon (India) ą®ą®•ą®¾ą®©ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ ą®Ŗą®æą®°ąÆˆą®µąÆ‡ą®ŸąÆ'),
(65189, 'https://ror.org/0072bx170', 'no_lang_code', 1, 'https://ror.org/0072bx170 Compact Imaging (United States)'),
(65190, 'https://ror.org/0072dwk79', 'en', 1, 'https://ror.org/0072dwk79 Hosan University ķ˜øģ‚°ėŒ€ķ•™źµ'),
(65191, 'https://ror.org/0072ngz93', 'no_lang_code', 1, 'https://ror.org/0072ngz93 Nectaerra'),
(65192, 'https://ror.org/0072xr450', 'en', 1, 'https://ror.org/0072xr450 The Korean Association for Children with Special Needs ķ•œźµ­ķŠ¹ģˆ˜ģ•„ė™ķ•™ķšŒ'),
(65193, 'https://ror.org/0073p9c35', 'en', 1, 'https://ror.org/0073p9c35 National Board for Certified Counselors'),
(65194, 'https://ror.org/00753dy67', 'en', 1, 'https://ror.org/00753dy67 Hunan Provincial Agricultural Machinery Authority ę¹–å—ēœå†œäøšęœŗę¢°ē®”ē†å±€'),
(65195, 'https://ror.org/00771gx20', 'no_lang_code', 1, 'https://ror.org/00771gx20 Aisino (China) čˆŖå¤©äæ”ęÆč‚”ä»½ęœ‰é™å…¬åø'),
(65196, 'https://ror.org/0077fwc46', 'no_lang_code', 1, 'https://ror.org/0077fwc46 Big White Wall (United Kingdom)'),
(65197, 'https://ror.org/0077tey39', 'fr', 1, 'https://ror.org/0077tey39 Centre Jacques-Cartier'),
(65198, 'https://ror.org/0078v1m45', 'en', 1, 'https://ror.org/0078v1m45 Government Ayurved College, Nanded'),
(65199, 'https://ror.org/0078x3268', 'no_lang_code', 1, 'https://ror.org/0078x3268 Sinolight (China) äø­å›½č½»å·„é›†å›¢ęœ‰é™å…¬åø'),
(65200, 'https://ror.org/0079vgv93', 'en', 1, 'https://ror.org/0079vgv93 Edwards Air Force Base'),
(65201, 'https://ror.org/007bw6q41', 'de', 1, 'https://ror.org/007bw6q41 Evangelische Hochschule Berlin'),
(65202, 'https://ror.org/007d31z96', 'no_lang_code', 1, 'https://ror.org/007d31z96 All-Russian Institute of Light Alloys (Russia) Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лёгких сплавов Ā«Š’Š˜Š›Š”Ā»'),
(65203, 'https://ror.org/007dnkv23', 'en', 1, 'https://ror.org/007dnkv23 Presidential Executive Office ŠŠ“Š¼ŠøŠ½ŠøŃŃ‚Ń€Š°Ń†ŠøŃ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Š°'),
(65204, 'https://ror.org/007ecf642', 'en', 1, 'https://ror.org/007ecf642 Henan Province Quality and Technical Supervision Bureau ę²³å—ēœč“Øé‡ęŠ€ęœÆē›‘ē£å±€'),
(65205, 'https://ror.org/007ffat30', 'no_lang_code', 1, 'https://ror.org/007ffat30 Ajanta Pharma (India) ą¤…ą¤œą¤‚ą¤¤ą¤¾ ą¤«ą¤¾ą¤°ą„ą¤®ą¤¾ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(65206, 'https://ror.org/007gr2e12', 'no_lang_code', 1, 'https://ror.org/007gr2e12 DRD Power (United Kingdom)'),
(65207, 'https://ror.org/007h50662', 'no_lang_code', 1, 'https://ror.org/007h50662 Advanced Materials Enterprises (China) å…ˆčæ›ęę–™ä¼äøš'),
(65208, 'https://ror.org/007ht4b44', 'en', 1, 'https://ror.org/007ht4b44 Financial Services Institute of Australasia'),
(65209, 'https://ror.org/007mhqn04', 'en', 1, 'https://ror.org/007mhqn04 Songwon University ģ†”ģ›ėŒ€ķ•™źµ'),
(65210, 'https://ror.org/007mm3r71', 'no_lang_code', 1, 'https://ror.org/007mm3r71 Korea Petroleum Group (South Korea) ķ•œźµ­ ģ„ģœ  그룹'),
(65211, 'https://ror.org/007n0ss86', 'en', 1, 'https://ror.org/007n0ss86 Desh Bhagat University ਦੇਸ਼ ਭਗਤ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(65212, 'https://ror.org/007n4g377', 'no_lang_code', 1, 'https://ror.org/007n4g377 Pharmacosmos (United States)'),
(65213, 'https://ror.org/007nzgd38', 'no_lang_code', 1, 'https://ror.org/007nzgd38 Expedition (United Kingdom)'),
(65214, 'https://ror.org/007s1fv27', 'en', 1, 'https://ror.org/007s1fv27 Tianjin Municipal Engineering Design and Research Institute 天擄市市政巄程设讔研究总院'),
(65215, 'https://ror.org/007sv4q84', 'en', 1, 'https://ror.org/007sv4q84 Buxton Festival'),
(65216, 'https://ror.org/007w7dm12', 'en', 1, 'https://ror.org/007w7dm12 Korean Studies Institute ķ•œźµ­źµ­ķ•™ģ§„ķ„ģ›'),
(65217, 'https://ror.org/007wym039', 'en', 1, 'https://ror.org/007wym039 Henan University of Engineering ę²³å—å·„ēØ‹å­¦é™¢'),
(65218, 'https://ror.org/007y7ej30', 'en', 1, 'https://ror.org/007y7ej30 Beijing Microelectronics Technology Institute'),
(65219, 'https://ror.org/007yv1g81', 'no_lang_code', 1, 'https://ror.org/007yv1g81 Teijin (Netherlands)');
INSERT INTO `rors` VALUES
(65220, 'https://ror.org/007zske95', 'en', 1, 'https://ror.org/007zske95 Ministerstwo Sprawiedliwośc Ministry of Justice of the Republic of Poland'),
(65221, 'https://ror.org/00809fn97', 'en', 1, 'https://ror.org/00809fn97 Lietuvos Respublikos Aplinkos Ministerija Ministry of Environment of the Republic of Lithuania'),
(65222, 'https://ror.org/0080szk49', 'en', 1, 'https://ror.org/0080szk49 Korean Cancer Study Group ėŒ€ķ•œķ•­ģ•”ģš”ė²•ģ—°źµ¬ķšŒ ģž…ė‹ˆė‹¤'),
(65223, 'https://ror.org/00822yz63', 'en', 1, 'https://ror.org/00822yz63 Liaoning Planning and Design Institute of Post and Telecommunication č¾½å®é‚®ē”µč§„åˆ’č®¾č®”é™¢ęœ‰é™å…¬åøē‰ˆ'),
(65224, 'https://ror.org/0086q4c12', 'no_lang_code', 1, 'https://ror.org/0086q4c12 Sino Biopharmaceutical (China) äø­å›½ē”Ÿē‰©åˆ¶čÆ'),
(65225, 'https://ror.org/0086r2b45', 'no_lang_code', 1, 'https://ror.org/0086r2b45 Grupa Lotos (Poland)'),
(65226, 'https://ror.org/0087dde40', 'no_lang_code', 1, 'https://ror.org/0087dde40 Taixing First Construction Group (China) ę³°å…“äø€å»ŗå»ŗč®¾é›†å›¢ęœ‰é™å…¬åø'),
(65227, 'https://ror.org/008923h68', 'en', 1, 'https://ror.org/008923h68 Archives State Agency Š”ŃŠŃ€Š¶Š°Š²Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ "Архиви"'),
(65228, 'https://ror.org/008cmt298', 'en', 1, 'https://ror.org/008cmt298 Sunlin University 선린 ėŒ€ķ•™źµ'),
(65229, 'https://ror.org/008d47791', 'no_lang_code', 1, 'https://ror.org/008d47791 Novem (Netherlands)'),
(65230, 'https://ror.org/008dfd567', 'no_lang_code', 1, 'https://ror.org/008dfd567 Plasma (Russia)'),
(65231, 'https://ror.org/008dffq15', 'hu', 1, 'https://ror.org/008dffq15 Nemzeti SzakkĆ©pzĆ©si Ć©s FelnőttkĆ©pzĆ©si Hivatal'),
(65232, 'https://ror.org/008f0n203', 'no_lang_code', 1, 'https://ror.org/008f0n203 Care UK (United Kingdom)'),
(65233, 'https://ror.org/008gn7430', 'en', 1, 'https://ror.org/008gn7430 Environment Agency of Iceland Umhverfisstofnun'),
(65234, 'https://ror.org/008gsg955', 'en', 1, 'https://ror.org/008gsg955 Liga Portuguesa Contra a Epilepsia Portuguese League Against Epilepsy'),
(65235, 'https://ror.org/008hpge95', 'no_lang_code', 1, 'https://ror.org/008hpge95 Shenzhen Metro (China) ę·±åœ³åø‚åœ°é“'),
(65236, 'https://ror.org/008jsgk36', 'no_lang_code', 1, 'https://ror.org/008jsgk36 Fano Labs (China) ę³•čÆŗå®žéŖŒå®¤'),
(65237, 'https://ror.org/008ke6x86', 'no_lang_code', 1, 'https://ror.org/008ke6x86 Chong Kun Dang Bio (South Korea) ģ¢…ź·¼ė‹¹ķ™€ė”©ģŠ¤'),
(65238, 'https://ror.org/008khgq16', 'no_lang_code', 1, 'https://ror.org/008khgq16 Integra (Russia) Š’ŠŠ˜Š˜Š‘Š¢-Š‘ŃƒŃ€Š¾Š²Š¾Š¹ ŠøŠ½ŃŃ‚Ń€ŃƒŠ¼ŠµŠ½Ń‚'),
(65239, 'https://ror.org/008m7sk62', 'en', 1, 'https://ror.org/008m7sk62 Pavee Point'),
(65240, 'https://ror.org/008pe8240', 'en', 1, 'https://ror.org/008pe8240 West Asia-North Africa Institute معهد ŲŗŲ±ŲØ آسيا - Ų“Ł…Ų§Ł„ Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§'),
(65241, 'https://ror.org/008qws759', 'en', 1, 'https://ror.org/008qws759 Xinjiang Uygur Autonomous Region Product Quality Supervision and Inspection Institute ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗäŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒē ”ē©¶é™¢'),
(65242, 'https://ror.org/008s4ef43', 'en', 1, 'https://ror.org/008s4ef43 European Federation of Agencies and Regions for Energy and Environment'),
(65243, 'https://ror.org/008sxtj70', 'no_lang_code', 1, 'https://ror.org/008sxtj70 Manor Farm (Ireland)'),
(65244, 'https://ror.org/008vv7y59', 'en', 1, 'https://ror.org/008vv7y59 The Korea Association of Foreign Language Education ķ•œźµ­ 외국얓 교윔 ķ˜‘ķšŒ'),
(65245, 'https://ror.org/008z9pq26', 'no_lang_code', 1, 'https://ror.org/008z9pq26 Audi (Italy)'),
(65246, 'https://ror.org/008ztbx56', 'no_lang_code', 1, 'https://ror.org/008ztbx56 Global Technic Enterprises (China)'),
(65247, 'https://ror.org/00900hh96', 'no_lang_code', 1, 'https://ror.org/00900hh96 Washington Monthly (United States)'),
(65248, 'https://ror.org/00905q798', 'en', 1, 'https://ror.org/00905q798 Hong Kong Metals Manufacturers Association é¦™ęøÆé‡‘å±¬č£½é€ ę„­å”ęœƒ'),
(65249, 'https://ror.org/0090cxj04', 'en', 1, 'https://ror.org/0090cxj04 Shandong Academy of Agricultural Machinery Sciences å±±äøœēœå†œäøšęœŗę¢°ē§‘å­¦ē ”ē©¶é™¢å§‹'),
(65250, 'https://ror.org/00929bm89', 'en', 1, 'https://ror.org/00929bm89 Iberia Parish Government'),
(65251, 'https://ror.org/009361291', 'en', 1, 'https://ror.org/009361291 Korean Scholars of Marketing Science ķ•œźµ­ ė§ˆģ¼€ķŒ… ķ•™ģž'),
(65252, 'https://ror.org/0094xtm76', 'en', 1, 'https://ror.org/0094xtm76 Georgia Sakartvelos shromis, janmrtelobisa ads sotsialuri datsvis saministro Ministry of Labour, Health and Social Affairs'),
(65253, 'https://ror.org/0095wvm02', 'no_lang_code', 1, 'https://ror.org/0095wvm02 Move4Parkinson’s'),
(65254, 'https://ror.org/0096nz963', 'en', 1, 'https://ror.org/0096nz963 The Heritage Alliance'),
(65255, 'https://ror.org/0097ttw21', 'no_lang_code', 1, 'https://ror.org/0097ttw21 Qingdao Installation & Construction (China) é’å²›å®‰č£…å»ŗč®¾č‚”ä»½ęœ‰é™å…¬åø'),
(65256, 'https://ror.org/00997qd48', 'en', 1, 'https://ror.org/00997qd48 Goverment Siddha Medical College ą®…ą®°ą®šąÆ ą®šą®æą®¤ąÆą®¤ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(65257, 'https://ror.org/009a2jy80', 'no_lang_code', 1, 'https://ror.org/009a2jy80 Hexagon (Sweden)'),
(65258, 'https://ror.org/009ba1g27', 'no_lang_code', 1, 'https://ror.org/009ba1g27 Bullion Tech (United Kingdom)'),
(65259, 'https://ror.org/009bb4304', 'no_lang_code', 1, 'https://ror.org/009bb4304 Electricity North West (United Kingdom)'),
(65260, 'https://ror.org/009cevv08', 'en', 1, 'https://ror.org/009cevv08 Institute of Research of Iron and Steel Shasteel 钢铁研究所研究所'),
(65261, 'https://ror.org/009fecc06', 'no_lang_code', 1, 'https://ror.org/009fecc06 Staten Island Museum'),
(65262, 'https://ror.org/009fkjn48', 'en', 1, 'https://ror.org/009fkjn48 Korea Moral Education Association ķ•œźµ­ė„ė•źµģœ”ķ•™ķšŒ'),
(65263, 'https://ror.org/009hm2720', 'en', 1, 'https://ror.org/009hm2720 Laboratory for Biomedical Neurosciences'),
(65264, 'https://ror.org/009j0tv77', 'en', 1, 'https://ror.org/009j0tv77 Guizhou Center for Disease Control and Prevention č“µå·žēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(65265, 'https://ror.org/009mwch30', 'en', 1, 'https://ror.org/009mwch30 Slovenian Nuclear Safety Administration Uprava Republike Slovenije za Jedrsko Varnost'),
(65266, 'https://ror.org/009neaa43', 'en', 1, 'https://ror.org/009neaa43 Public Investment Development Agency VieŔųjų investicijų plėtros agentÅ«ra'),
(65267, 'https://ror.org/009nm7068', 'no_lang_code', 1, 'https://ror.org/009nm7068 Nanjing Zhongyi Architectural Design Institute (China) å—äŗ¬äø­ę„å»ŗē­‘č®¾č®”é™¢'),
(65268, 'https://ror.org/009qwp447', 'en', 1, 'https://ror.org/009qwp447 Suihua University ē»„åŒ–å­¦é™¢'),
(65269, 'https://ror.org/009rsan39', 'pt', 1, 'https://ror.org/009rsan39 Centro UniversitƔrio UNINOVAFAPI'),
(65270, 'https://ror.org/009tmjw71', 'en', 1, 'https://ror.org/009tmjw71 Environmental Centre for Administration and Technology VieŔoji įstaiga Aplinkosaugos valdymo ir technologijų'),
(65271, 'https://ror.org/009v92n69', 'en', 1, 'https://ror.org/009v92n69 Hassan Usman Katsina Polytechnic'),
(65272, 'https://ror.org/009x2yy51', 'en', 1, 'https://ror.org/009x2yy51 Busan Digital University 부산 디지털 ėŒ€ķ•™źµ'),
(65273, 'https://ror.org/009y9e888', 'no_lang_code', 1, 'https://ror.org/009y9e888 Pacific Satellite (China)'),
(65274, 'https://ror.org/009ygqw67', 'no_lang_code', 1, 'https://ror.org/009ygqw67 Ecoenergia (Poland)'),
(65275, 'https://ror.org/009ytmf35', 'en', 1, 'https://ror.org/009ytmf35 ACE Hospital'),
(65276, 'https://ror.org/009zm7e81', 'no_lang_code', 1, 'https://ror.org/009zm7e81 Boditech Med (South Korea) 바디 ķ… ė©”ė“œ'),
(65277, 'https://ror.org/009zsxc75', 'en', 1, 'https://ror.org/009zsxc75 Institute on Science for Global Policy'),
(65278, 'https://ror.org/009ztd224', 'en', 1, 'https://ror.org/009ztd224 Re-shaping Development Institute źø€ė”œė²Œ 개발 ģ—°źµ¬ģ†Œ'),
(65279, 'https://ror.org/00a1a6c68', 'en', 1, 'https://ror.org/00a1a6c68 Committee on Capital Markets Regulation'),
(65280, 'https://ror.org/00a21ek15', 'no_lang_code', 1, 'https://ror.org/00a21ek15 Delta Rafał Mikke (Poland)'),
(65281, 'https://ror.org/00a2qtn46', 'en', 1, 'https://ror.org/00a2qtn46 Heilongjiang Provincial Metrology and Testing Institute é»‘é¾™ę±Ÿēœč®”é‡ę£€å®šęµ‹čÆ•é™¢ ꊀ'),
(65282, 'https://ror.org/00a37dc87', 'en', 1, 'https://ror.org/00a37dc87 Pacific Standard'),
(65283, 'https://ror.org/00a4qwj68', 'en', 1, 'https://ror.org/00a4qwj68 Shandong Institute of Metrology å±±äøœēœč®”é‡ē§‘å­¦ē ”ē©¶é™¢'),
(65284, 'https://ror.org/00a5fnb74', 'en', 1, 'https://ror.org/00a5fnb74 Perm Military Institute ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ военный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(65285, 'https://ror.org/00a671n16', 'no_lang_code', 1, 'https://ror.org/00a671n16 Ultimate Software (United States)'),
(65286, 'https://ror.org/00a6g3p12', 'no_lang_code', 1, 'https://ror.org/00a6g3p12 Materials Engineers Group (Poland)'),
(65287, 'https://ror.org/00a7jw027', 'fr', 1, 'https://ror.org/00a7jw027 Agence FranƧaise pour le DĆ©veloppement et la Promotion de l’Agriculture Biologique'),
(65288, 'https://ror.org/00a9f8892', 'en', 1, 'https://ror.org/00a9f8892 Bishop Simeon Trust'),
(65289, 'https://ror.org/00a9kc733', 'no_lang_code', 1, 'https://ror.org/00a9kc733 Tianjin Rubber Industry Institute (China) å¤©ę“„åø‚ę©”čƒ¶å·„äøšē ”ē©¶ę‰€'),
(65290, 'https://ror.org/00a9n4r38', 'en', 1, 'https://ror.org/00a9n4r38 All-Union Scientific Research Institute of Plant Quarantine Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карантина растений'),
(65291, 'https://ror.org/00a9yh217', 'en', 1, 'https://ror.org/00a9yh217 Employees State Insurance Post Graduate Institute of Medical Sciences and Research'),
(65292, 'https://ror.org/00aa87042', 'en', 1, 'https://ror.org/00aa87042 Consorcio para el Desarrollo Sostenible de la Ecoregión Andina Consortium for Sustainable Development of the Andean Ecoregion'),
(65293, 'https://ror.org/00aakw318', 'en', 1, 'https://ror.org/00aakw318 Ministry of Foreign Affairs ę–°åŠ å”å¤–äŗ¤éƒØ'),
(65294, 'https://ror.org/00ab95029', 'en', 1, 'https://ror.org/00ab95029 Wuxi Institute of Technology 无锔理巄学院'),
(65295, 'https://ror.org/00ackcm59', 'no_lang_code', 1, 'https://ror.org/00ackcm59 Construction Development (Qatar)'),
(65296, 'https://ror.org/00ad1c858', 'no_lang_code', 1, 'https://ror.org/00ad1c858 Botswana Vaccine Institute (Botswana)'),
(65297, 'https://ror.org/00aekg328', 'en', 1, 'https://ror.org/00aekg328 Global Dryland Alliance التحالف Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠ Ł„Ł„Ų£Ų±Ų§Ų¶ŁŠ الجافة'),
(65298, 'https://ror.org/00ag0hf75', 'en', 1, 'https://ror.org/00ag0hf75 Diagnostic and Prevention Research Institute for Human and Animal Diseases ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гиагностики Šø профилактики болезней человека Šø животных'),
(65299, 'https://ror.org/00ag0s904', 'en', 1, 'https://ror.org/00ag0s904 The Boys'' & Girls'' Clubs Association of Hong Kong é¦™ęøÆå°ē«„ē¾¤ē›Šęœƒ'),
(65300, 'https://ror.org/00ag2q384', 'en', 1, 'https://ror.org/00ag2q384 Hebei Research Institute of Microbiology ę²³åŒ—ēœå¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(65301, 'https://ror.org/00agtd172', 'no_lang_code', 1, 'https://ror.org/00agtd172 Jin Tech (South Korea) ģ§„ķ…Œķ¬'),
(65302, 'https://ror.org/00agxat90', 'en', 1, 'https://ror.org/00agxat90 Asia Foundation ģ•„ģ‹œģ•„ ģž¬ė‹Ø'),
(65303, 'https://ror.org/00ahg0572', 'no_lang_code', 1, 'https://ror.org/00ahg0572 Syneos Health (Germany)'),
(65304, 'https://ror.org/00ahhj040', 'en', 1, 'https://ror.org/00ahhj040 Hangzhou Quality and Technical Supervision and Testing Institute ę­å·žåø‚č“Øé‡ęŠ€ęœÆē›‘ē£ę£€ęµ‹é™¢'),
(65305, 'https://ror.org/00ahxp428', 'no_lang_code', 1, 'https://ror.org/00ahxp428 Micom Tech (China)'),
(65306, 'https://ror.org/00ar42c47', 'no_lang_code', 1, 'https://ror.org/00ar42c47 Fustec (China) åÆŒé”ē§‘ęŠ€åœ‹éš›ęœ‰é™å…¬åø'),
(65307, 'https://ror.org/00as6e892', 'en', 1, 'https://ror.org/00as6e892 Qatar Museums Ł‡ŁŠŲ¦Ų© متاحف قطر'),
(65308, 'https://ror.org/00at16584', 'no_lang_code', 1, 'https://ror.org/00at16584 Huafon Group (China) 华峰集团'),
(65309, 'https://ror.org/00atn8q90', 'en', 1, 'https://ror.org/00atn8q90 Korean Geographical Society ķ•œźµ­ģ§€ė¦¬ķ•™ķšŒ'),
(65310, 'https://ror.org/00avkj256', 'en', 1, 'https://ror.org/00avkj256 Interstate Commission for Water Coordination of Central Asia ŠœŠµŠ¶Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š¾Ń€Š“ŠøŠ½Š°Ń†ŠøŠ¾Š½Š½Š°Ń Š²Š¾Š“Š¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š¼ŠøŃŃŠøŃ'),
(65311, 'https://ror.org/00ayy7n17', 'no_lang_code', 1, 'https://ror.org/00ayy7n17 Aston Particle Technologies (United Kingdom)'),
(65312, 'https://ror.org/00az85j53', 'no_lang_code', 1, 'https://ror.org/00az85j53 Dongfang Electric Corporation (China)'),
(65313, 'https://ror.org/00azevz34', 'en', 1, 'https://ror.org/00azevz34 Oyster & Pearl Hospital'),
(65314, 'https://ror.org/00azprd50', 'no_lang_code', 1, 'https://ror.org/00azprd50 Omiberry (South Korea) ķšØģ¢…ģ›'),
(65315, 'https://ror.org/00b1efb93', 'en', 1, 'https://ror.org/00b1efb93 Lietuvos Respublikos energetikos ministerija Ministry of Energy of the Republic of Lithuania'),
(65316, 'https://ror.org/00b1twa08', 'no_lang_code', 1, 'https://ror.org/00b1twa08 Scientific and Production Association of Electromechanics (Russia)'),
(65317, 'https://ror.org/00b285s97', 'no_lang_code', 1, 'https://ror.org/00b285s97 ON Semiconductor (China)'),
(65318, 'https://ror.org/00b2xm665', 'en', 1, 'https://ror.org/00b2xm665 Korean Society of Sport Psychology ķ•œźµ­ģŠ¤ķ¬ģø ģ‹¬ė¦¬ķ•™ķšŒ'),
(65319, 'https://ror.org/00b7g1a82', 'en', 1, 'https://ror.org/00b7g1a82 Reformed Theological Institute 개혁 ģ‹ ķ•™ 연구원'),
(65320, 'https://ror.org/00b8t8z12', 'no_lang_code', 1, 'https://ror.org/00b8t8z12 CAV Advanced Technologies (United Kingdom)'),
(65321, 'https://ror.org/00b9ktm87', 'no_lang_code', 1, 'https://ror.org/00b9ktm87 Amazon (Germany)'),
(65322, 'https://ror.org/00bant556', 'en', 1, 'https://ror.org/00bant556 Charnwood Arts'),
(65323, 'https://ror.org/00bazmd55', 'no_lang_code', 1, 'https://ror.org/00bazmd55 Well Being Digital (China)'),
(65324, 'https://ror.org/00bbwmf07', 'en', 1, 'https://ror.org/00bbwmf07 International Council of Associations for Science Education'),
(65325, 'https://ror.org/00bc51d88', 'it', 1, 'https://ror.org/00bc51d88 Istituto di Nanotecnologia'),
(65326, 'https://ror.org/00bcsba68', 'pt', 1, 'https://ror.org/00bcsba68 Instituto das Tecnologias de Informação na Justiça'),
(65327, 'https://ror.org/00bdbjn36', 'no_lang_code', 1, 'https://ror.org/00bdbjn36 Bennamann (United Kingdom)'),
(65328, 'https://ror.org/00bh8v131', 'en', 1, 'https://ror.org/00bh8v131 Changjiang Institute of Survey, Planning, Design and Research é•æę±Ÿå‹˜ęµ‹č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(65329, 'https://ror.org/00bh9qz66', 'en', 1, 'https://ror.org/00bh9qz66 Mavlyutov Institute of Mechanics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики им Š .Š . ŠœŠ°Š²Š»ŃŽŃ‚Š¾Š²Š°'),
(65330, 'https://ror.org/00bhqk118', 'en', 1, 'https://ror.org/00bhqk118 Terviseamet Health Board'),
(65331, 'https://ror.org/00bhvbg93', 'no_lang_code', 1, 'https://ror.org/00bhvbg93 Sir Ivan Stedeford Hospital ą®šą®°ąÆ ą®ą®µą®©ąÆ ą®øąÆą®ŸąÆ†ą®ŸąÆą®ŖąÆ‹ą®°ąÆą®Ÿ ą®¹ą®¾ą®øąÆą®Ŗą®æą®Ÿą®²ąÆ'),
(65332, 'https://ror.org/00bjnxh67', 'en', 1, 'https://ror.org/00bjnxh67 Ministry of Economy'),
(65333, 'https://ror.org/00bmszw78', 'no_lang_code', 1, 'https://ror.org/00bmszw78 Block Dox (United Kingdom)'),
(65334, 'https://ror.org/00bnbwc20', 'en', 1, 'https://ror.org/00bnbwc20 Castlefield Gallery'),
(65335, 'https://ror.org/00bngsg68', 'no_lang_code', 1, 'https://ror.org/00bngsg68 Kukdong Communication (South Korea) ź·¹ė™ķ†µģ‹ '),
(65336, 'https://ror.org/00bqgmr50', 'en', 1, 'https://ror.org/00bqgmr50 Svenska Institutet i Athen Swedish Institute at Athens'),
(65337, 'https://ror.org/00bsgdw42', 'no_lang_code', 1, 'https://ror.org/00bsgdw42 Geomatic Ventures (United Kingdom)'),
(65338, 'https://ror.org/00bsmqd31', 'en', 1, 'https://ror.org/00bsmqd31 Connecticut Public Broadcasting'),
(65339, 'https://ror.org/00bwrgp93', 'no_lang_code', 1, 'https://ror.org/00bwrgp93 Waldi (Poland)'),
(65340, 'https://ror.org/00bwzfm31', 'no_lang_code', 1, 'https://ror.org/00bwzfm31 Cascade Biosystems (United States)'),
(65341, 'https://ror.org/00bz31e77', 'no_lang_code', 1, 'https://ror.org/00bz31e77 Waste & Environmental Technologies (China)'),
(65342, 'https://ror.org/00c232088', 'en', 1, 'https://ror.org/00c232088 The Society of Service Science ģ„œė¹„ģŠ¤ ź³¼ķ•™ķšŒ'),
(65343, 'https://ror.org/00c2k1j60', 'en', 1, 'https://ror.org/00c2k1j60 Chongqing Bureau of Geology and Minerals Exploration é‡åŗ†åø‚åœ°č“ØēŸæäŗ§å‹˜ęŸ„å¼€å‘å±€'),
(65344, 'https://ror.org/00c46pp52', 'no_lang_code', 1, 'https://ror.org/00c46pp52 3D Engineering Design (United Kingdom)'),
(65345, 'https://ror.org/00c480063', 'en', 1, 'https://ror.org/00c480063 New Hampshire Association of Conservation Commissions'),
(65346, 'https://ror.org/00c56ep98', 'en', 1, 'https://ror.org/00c56ep98 The Korean Society for the Economics and Finance of Education ķ•œźµ­źµģœ”ģž¬ģ •ź²½ģ œķ•™ķšŒ'),
(65347, 'https://ror.org/00c671n77', 'en', 1, 'https://ror.org/00c671n77 Hong Kong Small and Medium Enterprises Association é¦™ęøÆäø­å°ä¼äøšč”ä¼š'),
(65348, 'https://ror.org/00c6gyc33', 'no_lang_code', 1, 'https://ror.org/00c6gyc33 Everplant Technology (China)'),
(65349, 'https://ror.org/00c6xam17', 'no_lang_code', 1, 'https://ror.org/00c6xam17 Gezhouba Group (China) äø­å›½č‘›ę“²åé›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(65350, 'https://ror.org/00cafe722', 'en', 1, 'https://ror.org/00cafe722 The Korea Association for Han-Character and Classical Written Language Education ķ•œźµ­ ķ•œė¬øķ•™ ė° ź³ ģ „ 문얓 교윔 ķ˜‘ķšŒ'),
(65351, 'https://ror.org/00cd12q64', 'en', 1, 'https://ror.org/00cd12q64 Beijing Zhenxing Metrology & Measurement Institute åŒ—äŗ¬ęŒÆå…“č®”é‡ęµ‹čÆ•ē ”ē©¶ę‰€'),
(65352, 'https://ror.org/00cdtmq09', 'en', 1, 'https://ror.org/00cdtmq09 North American Society for Sport Management'),
(65353, 'https://ror.org/00ce2eb04', 'en', 1, 'https://ror.org/00ce2eb04 Georgia Emergency Management Agency'),
(65354, 'https://ror.org/00cefgj13', 'no_lang_code', 1, 'https://ror.org/00cefgj13 Caredoc'),
(65355, 'https://ror.org/00cgmem79', 'no_lang_code', 1, 'https://ror.org/00cgmem79 Power Roll (United Kingdom)'),
(65356, 'https://ror.org/00ch65t46', 'en', 1, 'https://ror.org/00ch65t46 Auvergne-Rhone-Alpes Entreprises'),
(65357, 'https://ror.org/00cjcx491', 'en', 1, 'https://ror.org/00cjcx491 Korean Academic Society of Taxation 씰세 ķ•™ķšŒ'),
(65358, 'https://ror.org/00ckc8f91', 'no_lang_code', 1, 'https://ror.org/00ckc8f91 Mamata General Hospital మమత ą°œą°Øą°°ą°²ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(65359, 'https://ror.org/00cn4vr32', 'en', 1, 'https://ror.org/00cn4vr32 Wanda Cultural Tourism Planning and Research Institute äø‡č¾¾ę–‡åŒ–ę—…ęøøč§„åˆ’ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(65360, 'https://ror.org/00cnnb535', 'no_lang_code', 1, 'https://ror.org/00cnnb535 SIPN S.R.L. (Italy)'),
(65361, 'https://ror.org/00cp1jc17', 'en', 1, 'https://ror.org/00cp1jc17 Java Clinical'),
(65362, 'https://ror.org/00ctyfm67', 'en', 1, 'https://ror.org/00ctyfm67 Nanjing Institute of Railway Technology'),
(65363, 'https://ror.org/00cw8st45', 'en', 1, 'https://ror.org/00cw8st45 Antiquities, Monuments and Museum Corporation'),
(65364, 'https://ror.org/00cza2v51', 'en', 1, 'https://ror.org/00cza2v51 Casey House'),
(65365, 'https://ror.org/00d01mn47', 'de', 1, 'https://ror.org/00d01mn47 ECOVIN Bundesverband Ɩkologischer Weinbau'),
(65366, 'https://ror.org/00d0f1n88', 'no_lang_code', 1, 'https://ror.org/00d0f1n88 Carbograf (Poland)'),
(65367, 'https://ror.org/00d1fsm72', 'no_lang_code', 1, 'https://ror.org/00d1fsm72 Dimensional Imaging (United Kingdom)'),
(65368, 'https://ror.org/00d1vfe76', 'en', 1, 'https://ror.org/00d1vfe76 Child Welfare League of Canada Ligue pour le Bien-Être de l''Enfance du Canada'),
(65369, 'https://ror.org/00d2q3517', 'no_lang_code', 1, 'https://ror.org/00d2q3517 Arcadis (United Kingdom)'),
(65370, 'https://ror.org/00d2xk240', 'de', 1, 'https://ror.org/00d2xk240 Bayerisches Staatsministerium der Finanzen, für Landesentwicklung und Heimat'),
(65371, 'https://ror.org/00d5asq22', 'no_lang_code', 1, 'https://ror.org/00d5asq22 Pansori Society ķŒģ†Œė¦¬ķ•™ķšŒėŠ”'),
(65372, 'https://ror.org/00d6ce877', 'en', 1, 'https://ror.org/00d6ce877 National Council on Patient Information and Education'),
(65373, 'https://ror.org/00d6gwq77', 'en', 1, 'https://ror.org/00d6gwq77 Extra Care Physiotherapy Centre'),
(65374, 'https://ror.org/00d6pe324', 'en', 1, 'https://ror.org/00d6pe324 Neurobehavioral Research Laboratory and Clinic'),
(65375, 'https://ror.org/00d6y7q19', 'no_lang_code', 1, 'https://ror.org/00d6y7q19 Avara Pharmaceutical Services (Ireland)'),
(65376, 'https://ror.org/00d8yqt37', 'en', 1, 'https://ror.org/00d8yqt37 The Korean Association for Public Administration ķ•œźµ­ 행정 ķ•™ķšŒ'),
(65377, 'https://ror.org/00d96ax77', 'en', 1, 'https://ror.org/00d96ax77 An Roinn Iompair, Turasóireachta agus Spóirt Department of Transport, Tourism and Sport'),
(65378, 'https://ror.org/00dc5v408', 'en', 1, 'https://ror.org/00dc5v408 Research and Design and Technological Institute of Rolling Stock ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ поГвижного состава'),
(65379, 'https://ror.org/00dcyet50', 'no_lang_code', 1, 'https://ror.org/00dcyet50 S. Norton (United Kingdom)'),
(65380, 'https://ror.org/00dd2be17', 'no_lang_code', 1, 'https://ror.org/00dd2be17 Kite Entertainment (Ireland)'),
(65381, 'https://ror.org/00ddcgv12', 'en', 1, 'https://ror.org/00ddcgv12 State Phytosanitary Administration StĆ”tnĆ­ RostlinolĆ©kařskĆ” SprĆ”va'),
(65382, 'https://ror.org/00dfw9p58', 'fr', 1, 'https://ror.org/00dfw9p58 SantƩ Publique France'),
(65383, 'https://ror.org/00dfz6605', 'en', 1, 'https://ror.org/00dfz6605 Future Transport Systems'),
(65384, 'https://ror.org/00dg6q264', 'en', 1, 'https://ror.org/00dg6q264 National Academy of Kinesiology'),
(65385, 'https://ror.org/00dg9e448', 'en', 1, 'https://ror.org/00dg9e448 Isotherm Research Institute ŠŠ˜Š˜ "Š˜Š·Š¾Ń‚ŠµŃ€Š¼"'),
(65386, 'https://ror.org/00dhaqb25', 'en', 1, 'https://ror.org/00dhaqb25 Yeongnam Archaeological Society ģ˜ė‚Øź³ ź³ ķ•™ķšŒ'),
(65387, 'https://ror.org/00dj3pn18', 'no_lang_code', 1, 'https://ror.org/00dj3pn18 ExpreS2ion Biotechnologies (Denmark)'),
(65388, 'https://ror.org/00dka4r75', 'en', 1, 'https://ror.org/00dka4r75 Zhejiang Academy of Building Research & Design ęµ™ę±Ÿēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(65389, 'https://ror.org/00dkg9f08', 'nl', 1, 'https://ror.org/00dkg9f08 Royal Dirkzwager'),
(65390, 'https://ror.org/00dqsh274', 'en', 1, 'https://ror.org/00dqsh274 Research Institute of Agriculture of Crimea ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° ŠšŃ€Ń‹Š¼Š°'),
(65391, 'https://ror.org/00drjse70', 'en', 1, 'https://ror.org/00drjse70 Balaji Dental & Craniofacial Hospital'),
(65392, 'https://ror.org/00dvybz66', 'en', 1, 'https://ror.org/00dvybz66 Korean Society for the Study of Obesity ėŒ€ķ•œė¹„ė§Œķ•™ķšŒ ķ™ˆķŽ˜'),
(65393, 'https://ror.org/00dxjhh32', 'fr', 1, 'https://ror.org/00dxjhh32 Agence Nationale pour l''Emploi National Employment Agency'),
(65394, 'https://ror.org/00dy5pp48', 'no_lang_code', 1, 'https://ror.org/00dy5pp48 Lanzhou Great Wall Electrical Corporation å…°å·žé•æåŸŽē”µå·„č‚”ä»½ęœ‰é™å…¬åø'),
(65395, 'https://ror.org/00dzggj72', 'no_lang_code', 1, 'https://ror.org/00dzggj72 Takeda (Singapore)'),
(65396, 'https://ror.org/00e02bd76', 'en', 1, 'https://ror.org/00e02bd76 European Marine Energy Centre'),
(65397, 'https://ror.org/00e373235', 'en', 1, 'https://ror.org/00e373235 Korean Alliance for Health, Physical Education, Recreation, and Dance ķ•œźµ­ģ²“ģœ”ķ•™ķšŒ'),
(65398, 'https://ror.org/00e4n7b29', 'en', 1, 'https://ror.org/00e4n7b29 Institutet fƶr SprƄk och Folkminnen Swedish Institute for Language and Folklore'),
(65399, 'https://ror.org/00e7v1604', 'en', 1, 'https://ror.org/00e7v1604 Central Research Institute of Automation and Hydraulics Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø гиГравлики'),
(65400, 'https://ror.org/00e8eg742', 'no_lang_code', 1, 'https://ror.org/00e8eg742 LAMA (Italy)'),
(65401, 'https://ror.org/00eb2vz50', 'en', 1, 'https://ror.org/00eb2vz50 Rail Delivery Group'),
(65402, 'https://ror.org/00ebpsa72', 'en', 1, 'https://ror.org/00ebpsa72 Cyberport 數碼港'),
(65403, 'https://ror.org/00ebq8d78', 'en', 1, 'https://ror.org/00ebq8d78 Catholic Agency for Overseas Development'),
(65404, 'https://ror.org/00ed67a38', 'no_lang_code', 1, 'https://ror.org/00ed67a38 Chunlan (China) ę˜„å…°'),
(65405, 'https://ror.org/00egzwg33', 'no_lang_code', 1, 'https://ror.org/00egzwg33 Cloughjordan Ecovillage'),
(65406, 'https://ror.org/00emmzb12', 'no_lang_code', 1, 'https://ror.org/00emmzb12 Boehringer Ingelheim (Norway)'),
(65407, 'https://ror.org/00eqa6a26', 'no_lang_code', 1, 'https://ror.org/00eqa6a26 Sichuan Provincial Architectural Design and Research Institute (China) å››å·ēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(65408, 'https://ror.org/00eqzvz74', 'no_lang_code', 1, 'https://ror.org/00eqzvz74 Terrasun (South Korea) ķ…Œė¼ 손'),
(65409, 'https://ror.org/00erz7p38', 'no_lang_code', 1, 'https://ror.org/00erz7p38 Jellagen (United Kingdom)'),
(65410, 'https://ror.org/00etvy980', 'en', 1, 'https://ror.org/00etvy980 Gloucestershire Guild of Craftsmen'),
(65411, 'https://ror.org/00exf0825', 'en', 1, 'https://ror.org/00exf0825 Ministry of Agriculture and Food ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø ŠæŃ€Š¾Š“Š¾Š²Š¾Š»ŃŒŃŃ‚Š²ŠøŃ Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(65412, 'https://ror.org/00f0mbf46', 'no_lang_code', 1, 'https://ror.org/00f0mbf46 TPV Technology (China) å† ę·ē§‘ęŠ€'),
(65413, 'https://ror.org/00f11nx42', 'no_lang_code', 1, 'https://ror.org/00f11nx42 Belmehanobchermet (Russia)'),
(65414, 'https://ror.org/00f23qy62', 'en', 1, 'https://ror.org/00f23qy62 Institute for Bulgarian Language Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š±ŃŠŠ»Š³Š°Ń€ŃŠŗŠø език'),
(65415, 'https://ror.org/00f32vr09', 'en', 1, 'https://ror.org/00f32vr09 Guangxi South Subtropical Agricultural Research Institute å¹æč„æå—äŗšēƒ­åø¦å†œäøšē§‘å­¦ē ”ē©¶ę‰€'),
(65416, 'https://ror.org/00f5sa326', 'en', 1, 'https://ror.org/00f5sa326 Fujian Institute of Microbiology ē¦å»ŗēœå¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(65417, 'https://ror.org/00f65v533', 'en', 1, 'https://ror.org/00f65v533 Strategic Investment Board'),
(65418, 'https://ror.org/00f6n1x59', 'en', 1, 'https://ror.org/00f6n1x59 Far Eastern Scientific Research Institute of Mechanization and Electrification of Agriculture Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Šø ŃŠ»ŠµŠŗŃ‚Ń€ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(65419, 'https://ror.org/00f7qfv03', 'en', 1, 'https://ror.org/00f7qfv03 Sujata Birla Hospital and Medical Research Center'),
(65420, 'https://ror.org/00f89ms08', 'en', 1, 'https://ror.org/00f89ms08 Zhejiang Province Institute of Architectural Design and Research ęµ™ę±Ÿēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(65421, 'https://ror.org/00f905c89', 'en', 1, 'https://ror.org/00f905c89 Leningrad branch Central Science Research Telecommunications Institute Š›Š•ŠŠ˜ŠŠ“Š ŠŠ”Š”ŠšŠžŠ• ŠžŠ¢Š”Š•Š›Š•ŠŠ˜Š• Š¦Š•ŠŠ¢Š ŠŠ›Š¬ŠŠžŠ“Šž ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠžŠ“Šž Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢Š Š”Š’ŠÆŠ—Š˜'),
(65422, 'https://ror.org/00f9bzb82', 'no_lang_code', 1, 'https://ror.org/00f9bzb82 OAO Giproniselprom (Russia)'),
(65423, 'https://ror.org/00fagmh73', 'no_lang_code', 1, 'https://ror.org/00fagmh73 LiteMagic (China) ē£Šę˜Žē§‘ęŠ€'),
(65424, 'https://ror.org/00fbs6k07', 'no_lang_code', 1, 'https://ror.org/00fbs6k07 Stronghold Technology (South Korea)'),
(65425, 'https://ror.org/00fgwkr80', 'no_lang_code', 1, 'https://ror.org/00fgwkr80 Runze (China) é‡åŗ†ę¶¦ę³½åŒ»čÆ'),
(65426, 'https://ror.org/00fhzqb79', 'en', 1, 'https://ror.org/00fhzqb79 Hong Kong Association for the Advancement of Science and Technology é¦™ęøÆē§‘ęŠ€å”é€²ęœƒ'),
(65427, 'https://ror.org/00fp23a83', 'en', 1, 'https://ror.org/00fp23a83 Aras Nua-Ealaƭne na hƉireann Irish Museum of Modern Art'),
(65428, 'https://ror.org/00fp6fj05', 'no_lang_code', 1, 'https://ror.org/00fp6fj05 NetEase (China) ē½‘ę˜“'),
(65429, 'https://ror.org/00fpj7t66', 'no_lang_code', 1, 'https://ror.org/00fpj7t66 China General Nuclear Power Corporation (China) 中国广核集团'),
(65430, 'https://ror.org/00fpwd955', 'en', 1, 'https://ror.org/00fpwd955 Bundesministerium des Innern Federal Ministry of the Interior'),
(65431, 'https://ror.org/00fr05644', 'en', 1, 'https://ror.org/00fr05644 Institute for International Economic and Political Studies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŃ… Šø политических исслеГований'),
(65432, 'https://ror.org/00fr2wv68', 'en', 1, 'https://ror.org/00fr2wv68 "Professor Tsvetan Lazarov" Defence Institute'),
(65433, 'https://ror.org/00fsz9s67', 'no_lang_code', 1, 'https://ror.org/00fsz9s67 Boehringer Ingelheim (Taiwan) å°ē£ē™¾éˆä½³ę®·ę ¼ēæ°č‚”ä»½ęœ‰é™å…¬åø'),
(65434, 'https://ror.org/00fycd487', 'no_lang_code', 1, 'https://ror.org/00fycd487 Constellation Software (Canada)'),
(65435, 'https://ror.org/00g1br919', 'en', 1, 'https://ror.org/00g1br919 Jeonbuk Development Institute 전북 ź°œė°œģ›'),
(65436, 'https://ror.org/00g2ec863', 'en', 1, 'https://ror.org/00g2ec863 Hong Kong Pharmaceutical Manufacturers Association é¦™ęøÆåˆ¶čÆå•†åä¼šęœ‰é™å…¬åø'),
(65437, 'https://ror.org/00g2kbc16', 'en', 1, 'https://ror.org/00g2kbc16 Shanghai Shipbuilding Technology Research Institute äøŠęµ·é€ čˆ¹ęŠ€ęœÆē ”ē©¶é™¢'),
(65438, 'https://ror.org/00g2rx327', 'en', 1, 'https://ror.org/00g2rx327 All-Russian Research and Design Institute of Metallurgical Engineering Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(65439, 'https://ror.org/00g473r84', 'en', 1, 'https://ror.org/00g473r84 All-Russian Scientific Research Institute of Livestock Mechanization Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации животновоГства'),
(65440, 'https://ror.org/00g4nz923', 'en', 1, 'https://ror.org/00g4nz923 All-Russian Scientific Research Institute of the Dairy Industry Всеросийский ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ¾Š»Š¾Ń‡Š½Š¾Š¹ ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(65441, 'https://ror.org/00g553t68', 'no_lang_code', 1, 'https://ror.org/00g553t68 Semler Research Center (India)'),
(65442, 'https://ror.org/00g55y949', 'no_lang_code', 1, 'https://ror.org/00g55y949 BGI Europe (Denmark)'),
(65443, 'https://ror.org/00g5s2979', 'en', 1, 'https://ror.org/00g5s2979 Ministry of Public Health وزارة الصحة العامة'),
(65444, 'https://ror.org/00g7nbz02', 'no_lang_code', 1, 'https://ror.org/00g7nbz02 SZNIIMESH Деверо-запаГный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Šø ŃŠ»ŠµŠŗŃ‚Ń€ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(65445, 'https://ror.org/00g98sq23', 'en', 1, 'https://ror.org/00g98sq23 Central Research Institute of Communications'),
(65446, 'https://ror.org/00ga74481', 'en', 1, 'https://ror.org/00ga74481 Hollanda Araştırma Enstitüsü Netherlands Institute in Turkey'),
(65447, 'https://ror.org/00gb9k226', 'no_lang_code', 1, 'https://ror.org/00gb9k226 DIPEx International (United Kingdom)'),
(65448, 'https://ror.org/00gd17e24', 'no_lang_code', 1, 'https://ror.org/00gd17e24 Hanall Biopharma (South Korea) ķ•œģ˜¬ė°”ģ“ģ˜¤ķŒŒė§ˆ'),
(65449, 'https://ror.org/00gef5g33', 'en', 1, 'https://ror.org/00gef5g33 Center for Beta Cell Therapy in Diabetes'),
(65450, 'https://ror.org/00ggq9934', 'en', 1, 'https://ror.org/00ggq9934 European Conference of Transport Research Institutes'),
(65451, 'https://ror.org/00gncg762', 'en', 1, 'https://ror.org/00gncg762 Hong Kong Plastic Machinery Association é¦™ęøÆå”‘ę–™ęœŗę¢°åä¼š'),
(65452, 'https://ror.org/00gpshd30', 'en', 1, 'https://ror.org/00gpshd30 Midcoast Watersheds Council'),
(65453, 'https://ror.org/00gqs6306', 'no_lang_code', 1, 'https://ror.org/00gqs6306 Dolby (Sweden)'),
(65454, 'https://ror.org/00grk8n10', 'en', 1, 'https://ror.org/00grk8n10 Scientific Research Institute of Computing Machinery ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники'),
(65455, 'https://ror.org/00gssft54', 'no_lang_code', 1, 'https://ror.org/00gssft54 Invicro (United Kingdom)'),
(65456, 'https://ror.org/00gth1k53', 'en', 1, 'https://ror.org/00gth1k53 Chongqing Academy of Environmental Science é‡åŗ†åø‚ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(65457, 'https://ror.org/00gvfpz28', 'en', 1, 'https://ror.org/00gvfpz28 Beijing Automation Control Equipment Institute åŒ—äŗ¬č‡ŖåŠØåŒ–ęŽ§åˆ¶č®¾å¤‡ē ”ē©¶ę‰€åˆ›å»ŗäŗŽ'),
(65458, 'https://ror.org/00gxft621', 'en', 1, 'https://ror.org/00gxft621 Belgian Welding Institute Belgisch Instituut voor Lastechniek'),
(65459, 'https://ror.org/00gxm5663', 'no_lang_code', 1, 'https://ror.org/00gxm5663 Craft Group (China)'),
(65460, 'https://ror.org/00gxxdv05', 'en', 1, 'https://ror.org/00gxxdv05 Nizhniy Novgorod Research Institute of Epidemiology and Microbiology named after Academician I.N. Blokhina АкаГемик И.Š. Блохина ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(65461, 'https://ror.org/00gy01w86', 'en', 1, 'https://ror.org/00gy01w86 Heilongjiang Provincial Institute of Hydraulic Research é»‘é¾™ę±Ÿēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(65462, 'https://ror.org/00gy54m79', 'en', 1, 'https://ror.org/00gy54m79 Tomsk Scientific Research Institute of Balneology and Physiotherapy Томский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠø Šø физиотерапии'),
(65463, 'https://ror.org/00gycng41', 'fr', 1, 'https://ror.org/00gycng41 Association des Radiologistes du QuƩbec'),
(65464, 'https://ror.org/00gznmy49', 'en', 1, 'https://ror.org/00gznmy49 Shaanxi Railway Institute 陕脿铁道学院'),
(65465, 'https://ror.org/00h05fc28', 'en', 1, 'https://ror.org/00h05fc28 Alabama Department of Economic and Community Affairs'),
(65466, 'https://ror.org/00h4z8814', 'en', 1, 'https://ror.org/00h4z8814 Dr. Peter AIDS Foundation'),
(65467, 'https://ror.org/00h644t73', 'no_lang_code', 1, 'https://ror.org/00h644t73 Green Island Chinese Medicine International Group (China)'),
(65468, 'https://ror.org/00h64t852', 'no_lang_code', 1, 'https://ror.org/00h64t852 SAIC-GM (China) äøŠę±½é€šē”Øę±½č½¦'),
(65469, 'https://ror.org/00h6s9634', 'no_lang_code', 1, 'https://ror.org/00h6s9634 Yfisoft (China)'),
(65470, 'https://ror.org/00h7z1q27', 'en', 1, 'https://ror.org/00h7z1q27 Campus Notre-Dame-de-Foy'),
(65471, 'https://ror.org/00h8mkp41', 'no_lang_code', 1, 'https://ror.org/00h8mkp41 Bloombase (China)'),
(65472, 'https://ror.org/00hbkpf98', 'en', 1, 'https://ror.org/00hbkpf98 Commission de la Sante Mentale du Canada Mental Health Commission of Canada'),
(65473, 'https://ror.org/00hbpmz47', 'no_lang_code', 1, 'https://ror.org/00hbpmz47 Bioalpha (Malaysia)'),
(65474, 'https://ror.org/00hc2b418', 'en', 1, 'https://ror.org/00hc2b418 Wuxi Pneumatic Technology Research Institute'),
(65475, 'https://ror.org/00hcsjz98', 'en', 1, 'https://ror.org/00hcsjz98 Agrarian Science Center "Donskoy" Аграрный Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр «Донской»'),
(65476, 'https://ror.org/00hd2sp32', 'no_lang_code', 1, 'https://ror.org/00hd2sp32 IntelliHep (United Kingdom)'),
(65477, 'https://ror.org/00hfwa053', 'no_lang_code', 1, 'https://ror.org/00hfwa053 C4X Discovery (United Kingdom)'),
(65478, 'https://ror.org/00hgh4525', 'no_lang_code', 1, 'https://ror.org/00hgh4525 Hetao College 河儗学院'),
(65479, 'https://ror.org/00hhh2m32', 'no_lang_code', 1, 'https://ror.org/00hhh2m32 Hochtief (Qatar)'),
(65480, 'https://ror.org/00hk4sk41', 'en', 1, 'https://ror.org/00hk4sk41 The Korean Generative Grammar Circle ķ•œźµ­ 문법 ķ•™ķšŒ'),
(65481, 'https://ror.org/00hn6vp12', 'no_lang_code', 1, 'https://ror.org/00hn6vp12 Indutherm (Spain)'),
(65482, 'https://ror.org/00hqwyj63', 'en', 1, 'https://ror.org/00hqwyj63 Heilongjiang Academy of Sciences é»‘é¾™ę±Ÿēœē§‘å­¦é™¢'),
(65483, 'https://ror.org/00hr37w40', 'no_lang_code', 1, 'https://ror.org/00hr37w40 Kelada Pharmachem (Ireland)'),
(65484, 'https://ror.org/00hs4m805', 'en', 1, 'https://ror.org/00hs4m805 Research Institute of Tire Industry ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ шинной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(65485, 'https://ror.org/00hvq0c10', 'en', 1, 'https://ror.org/00hvq0c10 Shanghai Fire Research Institute'),
(65486, 'https://ror.org/00hw06340', 'no_lang_code', 1, 'https://ror.org/00hw06340 Pedorthic Technology (China)'),
(65487, 'https://ror.org/00hw5pa98', 'no_lang_code', 1, 'https://ror.org/00hw5pa98 Hunan Agricultural Products (China) ę¹–å—å†œäŗ§å“'),
(65488, 'https://ror.org/00hwrpk97', 'no_lang_code', 1, 'https://ror.org/00hwrpk97 American Transmission Company (United States)'),
(65489, 'https://ror.org/00hx3p021', 'en', 1, 'https://ror.org/00hx3p021 Regional Geographical Society of Korea ķ•œźµ­ 지리 ķ•™ķšŒ'),
(65490, 'https://ror.org/00hy0ds89', 'en', 1, 'https://ror.org/00hy0ds89 The Society of Korean Performance Art and Culture ķ•œźµ­ 공연 예술 ķ•™ķšŒ'),
(65491, 'https://ror.org/00hzd4z47', 'no_lang_code', 1, 'https://ror.org/00hzd4z47 Sharing and Technologies Incorporated (South Korea) 공유 ė° źø°ģˆ ė²•ģøģ˜'),
(65492, 'https://ror.org/00j0sx021', 'no_lang_code', 1, 'https://ror.org/00j0sx021 Johnson Controls (Ireland)'),
(65493, 'https://ror.org/00j1gmf24', 'en', 1, 'https://ror.org/00j1gmf24 The Department of Arkansas Heritage'),
(65494, 'https://ror.org/00j38z902', 'en', 1, 'https://ror.org/00j38z902 Malta Intelligent Energy Management Agency'),
(65495, 'https://ror.org/00j4as432', 'en', 1, 'https://ror.org/00j4as432 Ministry of Education and Higher Education وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ'),
(65496, 'https://ror.org/00j4jtq38', 'en', 1, 'https://ror.org/00j4jtq38 Thelonious Monk Institute of Jazz'),
(65497, 'https://ror.org/00j9f1256', 'no_lang_code', 1, 'https://ror.org/00j9f1256 Youngjin Technology (South Korea) ģ˜ģ§„źø°ģˆ  ģ£¼ģ‹ķšŒģ‚¬'),
(65498, 'https://ror.org/00j9g7s25', 'en', 1, 'https://ror.org/00j9g7s25 Kimmage Development Studies Centre'),
(65499, 'https://ror.org/00jap5g05', 'en', 1, 'https://ror.org/00jap5g05 AO Foundation'),
(65500, 'https://ror.org/00jb49g69', 'en', 1, 'https://ror.org/00jb49g69 JSC Federal Center for Geoecological Systems'),
(65501, 'https://ror.org/00jcp4354', 'no_lang_code', 1, 'https://ror.org/00jcp4354 O-film (China) ę¬§č²ē§‘ęŠ€'),
(65502, 'https://ror.org/00je6d832', 'en', 1, 'https://ror.org/00je6d832 Scientific Research Engineering Institute ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ–Š•ŠŠ•Š ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(65503, 'https://ror.org/00jg3eb36', 'en', 1, 'https://ror.org/00jg3eb36 Fischer Family Trust'),
(65504, 'https://ror.org/00jhee281', 'en', 1, 'https://ror.org/00jhee281 Centre for Innovation Excellence in Livestock'),
(65505, 'https://ror.org/00jkdkv87', 'no_lang_code', 1, 'https://ror.org/00jkdkv87 Zonhon Biopharma Institute ę±Ÿč‹ä¼—ēŗ¢ē”Ÿē‰©å·„ēØ‹åˆ›čÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(65506, 'https://ror.org/00jkyke88', 'no_lang_code', 1, 'https://ror.org/00jkyke88 Novartis (South Korea) ė…øė°”ķ‹°ģŠ¤'),
(65507, 'https://ror.org/00jma7w30', 'en', 1, 'https://ror.org/00jma7w30 Wuxi Dongfang Environmental Engineering Design Institute ę— é””åø‚äøœę–¹ēŽÆå¢ƒå·„ēØ‹č®¾č®”ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(65508, 'https://ror.org/00jmt8d06', 'en', 1, 'https://ror.org/00jmt8d06 Agentschap Telecom Radiocommunications Agency'),
(65509, 'https://ror.org/00jsa0k29', 'en', 1, 'https://ror.org/00jsa0k29 PBC Foundation'),
(65510, 'https://ror.org/00jtr7j56', 'no_lang_code', 1, 'https://ror.org/00jtr7j56 Boris FX (United Kingdom)'),
(65511, 'https://ror.org/00jvma136', 'no_lang_code', 1, 'https://ror.org/00jvma136 Shanghai Industrial Boiler Research Institute (China) äøŠęµ·å·„äøšé”…ē‚‰ē ”ē©¶ę‰€'),
(65512, 'https://ror.org/00jw46w75', 'fr', 1, 'https://ror.org/00jw46w75 Regroupement des Organismes Communautaires QuƩbƩcoise de Lutte au DƩcrochage'),
(65513, 'https://ror.org/00jwvx142', 'en', 1, 'https://ror.org/00jwvx142 State Scientific Center - Research Institute of Atomic Reactors Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр — ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ атомных реакторов'),
(65514, 'https://ror.org/00jz5ch17', 'no_lang_code', 1, 'https://ror.org/00jz5ch17 Jangan University ģž„ģ•ˆėŒ€ķ•™źµ'),
(65515, 'https://ror.org/00jztws02', 'en', 1, 'https://ror.org/00jztws02 Defence Equipment and Support'),
(65516, 'https://ror.org/00jzxnz73', 'en', 1, 'https://ror.org/00jzxnz73 The Third Institute of the Ministry of Public Security å…¬å®‰éƒØē¬¬äø‰ē ”ē©¶ę‰€'),
(65517, 'https://ror.org/00k1mne41', 'en', 1, 'https://ror.org/00k1mne41 Korean Family Resource Management Association ķ•œźµ­ź°€ģ”±ģžģ›ź²½ģ˜ķ•™ķšŒ'),
(65518, 'https://ror.org/00k1vj692', 'en', 1, 'https://ror.org/00k1vj692 Dongyang Hanmoon Association ė™ģ–‘ ķ•œė¬ø ģ—°ķ•©ķšŒ'),
(65519, 'https://ror.org/00k388f40', 'no_lang_code', 1, 'https://ror.org/00k388f40 NanoBioImaging (China)'),
(65520, 'https://ror.org/00k722394', 'en', 1, 'https://ror.org/00k722394 Krasnodar Research Institute of Storage and Processing of Agricultural Products ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø переработки ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŠæŃ€Š¾Š“ŃƒŠŗŃ†ŠøŠø'),
(65521, 'https://ror.org/00k7bh212', 'no_lang_code', 1, 'https://ror.org/00k7bh212 Sengital (China)'),
(65522, 'https://ror.org/00k852a29', 'en', 1, 'https://ror.org/00k852a29 West Virginia Division of Natural Resources'),
(65523, 'https://ror.org/00k872414', 'en', 1, 'https://ror.org/00k872414 Korean Association for Radiation Application ķ•œźµ­ė°©ģ‚¬ģ„ ģ§„ķ„ķ˜‘ķšŒ'),
(65524, 'https://ror.org/00kdtw736', 'no_lang_code', 1, 'https://ror.org/00kdtw736 Cambridge Carbon Capture (United Kingdom)'),
(65525, 'https://ror.org/00kh8jx85', 'en', 1, 'https://ror.org/00kh8jx85 Learning Hub Limerick'),
(65526, 'https://ror.org/00khsrq71', 'de', 1, 'https://ror.org/00khsrq71 Bundesverband Garten- Landschafts- und Sportplatzbau'),
(65527, 'https://ror.org/00kn8e190', 'no_lang_code', 1, 'https://ror.org/00kn8e190 DHC Software (China)'),
(65528, 'https://ror.org/00kpke984', 'en', 1, 'https://ror.org/00kpke984 Society for Korean Traditional Performing Arts ķ•œźµ­ģ „ķ†µź³µģ—°ģ˜ˆģˆ ķ•™ķšŒ'),
(65529, 'https://ror.org/00kq61997', 'no_lang_code', 1, 'https://ror.org/00kq61997 Arterius (United Kingdom)'),
(65530, 'https://ror.org/00krjyc70', 'en', 1, 'https://ror.org/00krjyc70 Head Design Institute Chelyabinskgrazhdanproekt'),
(65531, 'https://ror.org/00kskf856', 'no_lang_code', 1, 'https://ror.org/00kskf856 Chinatex Posts and Telecommunications Consulting and Design Institute (China) äø­č®Æé‚®ē”µå’ØčÆ¢č®¾č®”é™¢ęœ‰é™å…¬åø'),
(65532, 'https://ror.org/00ktvw306', 'en', 1, 'https://ror.org/00ktvw306 Ufa Research Institute of Occupational Health and Human Ecology Уфимский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицины Ń‚Ń€ŃƒŠ“Š° Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø человека'),
(65533, 'https://ror.org/00kv86506', 'en', 1, 'https://ror.org/00kv86506 Korean Association for Archaeological Heritage ķ•œźµ­ė§¤ģž„ė¬øķ™”ģž¬ķ˜‘ķšŒ'),
(65534, 'https://ror.org/00kx5x153', 'no_lang_code', 1, 'https://ror.org/00kx5x153 Avixgen (South Korea) ģ—ė¹…ģŠ¤ģ  '),
(65535, 'https://ror.org/00ky61211', 'en', 1, 'https://ror.org/00ky61211 Shanghai Light Industry Research Institute äøŠęµ·č½»å·„äøšē ”ē©¶é™¢'),
(65536, 'https://ror.org/00kzfz874', 'en', 1, 'https://ror.org/00kzfz874 Latvijas Republikas Ekonomikas ministrija Ministry of Economics'),
(65537, 'https://ror.org/00m0pp561', 'en', 1, 'https://ror.org/00m0pp561 National Board of Patents and Registration of Finland Patentti- ja rekisterihallitus'),
(65538, 'https://ror.org/00m0rkq68', 'no_lang_code', 1, 'https://ror.org/00m0rkq68 Mascot Spincontrol (India)'),
(65539, 'https://ror.org/00m2gz195', 'en', 1, 'https://ror.org/00m2gz195 Korean Society for Political Thought ķ•œźµ­ģ •ģ¹˜ģ‚¬ģƒķ•™ķšŒ'),
(65540, 'https://ror.org/00m61xx36', 'no_lang_code', 1, 'https://ror.org/00m61xx36 Burelle (France)'),
(65541, 'https://ror.org/00m8yma53', 'en', 1, 'https://ror.org/00m8yma53 Architectural Design Agency ŠŃ€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-Дизайнерска ŠŠ³ŠµŠ½Ń†ŠøŃ ŠžŠžŠ”'),
(65542, 'https://ror.org/00mcf6y06', 'no_lang_code', 1, 'https://ror.org/00mcf6y06 Novosibirsk Tuberculosis Research Institute ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»Ń‘Š·Š°'),
(65543, 'https://ror.org/00mdmxm79', 'fr', 1, 'https://ror.org/00mdmxm79 CollĆØge de Rosemont'),
(65544, 'https://ror.org/00mg6mc02', 'no_lang_code', 1, 'https://ror.org/00mg6mc02 China National Salt Industry Corporation (China) äø­å›½ē›äøšę€»å…¬åø'),
(65545, 'https://ror.org/00mgrqp66', 'no_lang_code', 1, 'https://ror.org/00mgrqp66 Jiuquan Iron & Steel (China) 酒泉钢铁'),
(65546, 'https://ror.org/00mh5ga26', 'no_lang_code', 1, 'https://ror.org/00mh5ga26 East Japan Railway (Japan) ę±ę—„ęœ¬ę—…å®¢é‰„é“ę Ŗå¼ä¼šē¤¾'),
(65547, 'https://ror.org/00mjzrw90', 'en', 1, 'https://ror.org/00mjzrw90 Ministarstvo Pravde u Vladi Crne Gore Ministry of Justice'),
(65548, 'https://ror.org/00mmnvh11', 'no_lang_code', 1, 'https://ror.org/00mmnvh11 Asia Pacific Satellite (South Korea)'),
(65549, 'https://ror.org/00mmxpv38', 'no_lang_code', 1, 'https://ror.org/00mmxpv38 Chongqing Yongda Precision Machinery (China) é‡åŗ†ę°øč¾¾ē²¾åÆ†ęœŗę¢°'),
(65550, 'https://ror.org/00mpsrh50', 'en', 1, 'https://ror.org/00mpsrh50 Zhangjiakou Academy of Agricultural Sciences å¼ å®¶å£åø‚å†œäøšē§‘å­¦é™¢å†œäøš'),
(65551, 'https://ror.org/00mr5jb15', 'no_lang_code', 1, 'https://ror.org/00mr5jb15 (주)ģ—ģŠ¤ķ‹°ģ•Œė°”ģ“ģ˜¤ķ… STR Biotech (South Korea)'),
(65552, 'https://ror.org/00mr5v348', 'no_lang_code', 1, 'https://ror.org/00mr5v348 Jinan Foundry and Metalforming Machinery Research Institute (China) ęµŽå—é“øé€ é”»åŽ‹ęœŗę¢°ē ”ē©¶ę‰€'),
(65553, 'https://ror.org/00mxc5141', 'no_lang_code', 1, 'https://ror.org/00mxc5141 Sehenstar Energy Technology (China) č‹å·žåå®ę³°čŠ‚čƒ½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(65554, 'https://ror.org/00myv8y06', 'no_lang_code', 1, 'https://ror.org/00myv8y06 Excivion (United Kingdom)'),
(65555, 'https://ror.org/00mzd6670', 'no_lang_code', 1, 'https://ror.org/00mzd6670 Shenzhen Institute of Innovation Design (China) ę·±åœ³åø‚åˆ›ę–°č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(65556, 'https://ror.org/00mzhwb11', 'no_lang_code', 1, 'https://ror.org/00mzhwb11 Ingersoll Rand (Ireland)'),
(65557, 'https://ror.org/00n0egr15', 'en', 1, 'https://ror.org/00n0egr15 Development Agency of Serbia Развојна Š°Š³ŠµŠ½Ń†ŠøŃ˜Š° Š”Ń€Š±ŠøŃ˜Šµ'),
(65558, 'https://ror.org/00n0yt415', 'no_lang_code', 1, 'https://ror.org/00n0yt415 E4tech (United Kingdom)'),
(65559, 'https://ror.org/00n1s7m36', 'no_lang_code', 1, 'https://ror.org/00n1s7m36 MosvodokanalNIIproject Institute (Russia) ŠœŠ¾ŃŠ²Š¾Š“Š¾ŠŗŠ°Š½Š°Š»ŠŠ˜Š˜ŠæŃ€Š¾ŠµŠŗŃ‚ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(65560, 'https://ror.org/00n2pkx76', 'en', 1, 'https://ror.org/00n2pkx76 Korea Invention Promotion Association ķ•œźµ­ė°œėŖ…ģ§„ķ„ķšŒ'),
(65561, 'https://ror.org/00n5daa95', 'en', 1, 'https://ror.org/00n5daa95 Spectrum Healthcare ą¤øą„ą¤Ŗą„‡ą¤•ą„ą¤Ÿą„ą¤°ą¤® ą¤†ą¤°ą„‹ą¤—ą„ą¤Æ'),
(65562, 'https://ror.org/00n6b8986', 'no_lang_code', 1, 'https://ror.org/00n6b8986 Guangdong Southern China Special Gas Institute (China) å¹æäøœå—åŽē‰¹ę®Šę°”ä½“ē ”ē©¶ę‰€'),
(65563, 'https://ror.org/00n6y9334', 'no_lang_code', 1, 'https://ror.org/00n6y9334 Kanichi (United Kingdom)'),
(65564, 'https://ror.org/00n7rz703', 'no_lang_code', 1, 'https://ror.org/00n7rz703 South China Municipal Engineering Design and Research Institute (China) äø­å›½åø‚ę”æå·„ēØ‹äø­å—č®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬'),
(65565, 'https://ror.org/00n92fc55', 'en', 1, 'https://ror.org/00n92fc55 Danish Business Authority'),
(65566, 'https://ror.org/00n99mq57', 'en', 1, 'https://ror.org/00n99mq57 Siberian Research, Design and Design Institute of Aluminum and Electrode Industry Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Š»ŃŽŠ¼ŠøŠ½ŠøŠµŠ²Š¾Š¹ Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š“Š½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(65567, 'https://ror.org/00n9q5753', 'en', 1, 'https://ror.org/00n9q5753 Cancer Trials Australia'),
(65568, 'https://ror.org/00naggm49', 'en', 1, 'https://ror.org/00naggm49 Enable Ireland'),
(65569, 'https://ror.org/00nczhw32', 'en', 1, 'https://ror.org/00nczhw32 Municipal Enterprise for Social Development Trikalon Ī”Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ· ĪšĪ±Ī»Ī±Ī¼Ļ€Ī¬ĪŗĪ±Ļ‚ 28 & Αμπάτη Τρίκαλα,'),
(65570, 'https://ror.org/00nd3vv76', 'en', 1, 'https://ror.org/00nd3vv76 Scientific and Research Institute of Textile Materials ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠŗŃŃ‚ŠøŠ»ŃŒŠ½Ń‹Ń… материалов'),
(65571, 'https://ror.org/00ndnb620', 'en', 1, 'https://ror.org/00ndnb620 Energy Research Institute å±±äøœēœē§‘å­¦é™¢čƒ½ęŗē ”ē©¶ę‰€'),
(65572, 'https://ror.org/00nf44j26', 'no_lang_code', 1, 'https://ror.org/00nf44j26 Zhejiang Runtu (China) ęµ™ę±Ÿé—°åœŸč‚”ä»½ęœ‰é™å…¬åø'),
(65573, 'https://ror.org/00nhhef84', 'no_lang_code', 1, 'https://ror.org/00nhhef84 Sama Pharm (South Korea) ģ‚¼ģ•„ģ œģ•½'),
(65574, 'https://ror.org/00nhtf127', 'no_lang_code', 1, 'https://ror.org/00nhtf127 InStream Fisheries Research (Canada)'),
(65575, 'https://ror.org/00nhyfw74', 'en', 1, 'https://ror.org/00nhyfw74 Ministry of Justice Oikeusministeriƶ'),
(65576, 'https://ror.org/00nkkk791', 'no_lang_code', 1, 'https://ror.org/00nkkk791 Shanghai Tunnel Engineering (China) äøŠęµ·éš§é“å·„ēØ‹');
INSERT INTO `rors` VALUES
(65577, 'https://ror.org/00nna6j59', 'en', 1, 'https://ror.org/00nna6j59 Far Eastern Scientific Research Institute of Hydraulic Engineering and Reclamation Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ ŠŠ˜Š˜ гиГротехники Šø мелиорации'),
(65578, 'https://ror.org/00npqj595', 'en', 1, 'https://ror.org/00npqj595 Cambridge Curiosity and Imagination'),
(65579, 'https://ror.org/00nrddj33', 'en', 1, 'https://ror.org/00nrddj33 Luohe Academy of Agricultural Sciences ę²³å—ēœę¼Æę²³åø‚å†œäøšē§‘å­¦ē ”ē©¶ę‰€'),
(65580, 'https://ror.org/00nsted34', 'no_lang_code', 1, 'https://ror.org/00nsted34 Calon Cardio (United Kingdom)'),
(65581, 'https://ror.org/00nswcb05', 'no_lang_code', 1, 'https://ror.org/00nswcb05 Guangzhou Academy of Building Research (China)'),
(65582, 'https://ror.org/00ntvge22', 'en', 1, 'https://ror.org/00ntvge22 M.B.Barvalia Foundation’s Spandan Organizations'),
(65583, 'https://ror.org/00nv19w68', 'en', 1, 'https://ror.org/00nv19w68 International Council of Museums'),
(65584, 'https://ror.org/00nw2x646', 'no_lang_code', 1, 'https://ror.org/00nw2x646 LG (India) ą¤²ą¤œą„€ लाइफ ą¤øą¤¾ą¤‡ą¤‚ą¤øą„‡ą¤œ इंऔिया ą¤Ŗą„ą¤°ą¤¾ą„¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤” ą²²ą³‡ą²œą²æ ą²²ą³ˆą²«ą³ ą²øą³ˆą²Øą³ą²øą²øą³ ಇಂಔಿಯಾ ą²Ŗą³ą²°ą³ˆ. ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(65585, 'https://ror.org/00nwrzz95', 'no_lang_code', 1, 'https://ror.org/00nwrzz95 Beijing Founder Electronics (China) åŒ—äŗ¬åŒ—å¤§ę–¹ę­£ē”µå­ęœ‰é™å…¬åø'),
(65586, 'https://ror.org/00nypd214', 'en', 1, 'https://ror.org/00nypd214 Bundesverband WindEnergie German Wind Energy Association'),
(65587, 'https://ror.org/00nz1s384', 'no_lang_code', 1, 'https://ror.org/00nz1s384 Belorusneft (Belarus) Š‘ŠµŠ»Š¾Ń€ŃƒŃŠ½ŠµŃ„Ń‚ŃŒ'),
(65588, 'https://ror.org/00p0gp915', 'en', 1, 'https://ror.org/00p0gp915 Saudi Digital Library Ų§Ł„Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ų±Ł‚Ł…ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ©'),
(65589, 'https://ror.org/00p10a639', 'no_lang_code', 1, 'https://ror.org/00p10a639 Drax (United Kingdom)'),
(65590, 'https://ror.org/00p18a507', 'no_lang_code', 1, 'https://ror.org/00p18a507 China First Heavy Industries (China) äø­å›½ē¬¬äø€é‡åž‹ęœŗę¢°č‹±'),
(65591, 'https://ror.org/00p24re17', 'no_lang_code', 1, 'https://ror.org/00p24re17 Zhongji Test Equipment (China) äø­ęœŗčÆ•éŖŒč£…å¤‡č‚”ä»½ęœ‰é™å…¬åø'),
(65592, 'https://ror.org/00p285362', 'en', 1, 'https://ror.org/00p285362 The Society for Dance Documentation & History 묓용 ķ˜‘ķšŒ ė¬øģ„œ ė° 역사'),
(65593, 'https://ror.org/00p2s1h75', 'en', 1, 'https://ror.org/00p2s1h75 Equality and Human Rights Commission'),
(65594, 'https://ror.org/00p2smd09', 'en', 1, 'https://ror.org/00p2smd09 Manchester Climate Change Agency'),
(65595, 'https://ror.org/00p3a2r17', 'en', 1, 'https://ror.org/00p3a2r17 Lietuvos automobilių kelių direkcija prie Susisiekimo ministerijos Lithuanian Road Administration under the Ministry of Transport and Communications'),
(65596, 'https://ror.org/00p3qeq60', 'no_lang_code', 1, 'https://ror.org/00p3qeq60 YuYu Pharma (South Korea)'),
(65597, 'https://ror.org/00p46pc96', 'no_lang_code', 1, 'https://ror.org/00p46pc96 (주)ė„„ģŠ¤ė°”ģ“ģ˜¤ Nex Bio (South Korea)'),
(65598, 'https://ror.org/00p4rkj69', 'no_lang_code', 1, 'https://ror.org/00p4rkj69 Qihoo 360 (China) å„‡č™Ž360'),
(65599, 'https://ror.org/00p4t5755', 'en', 1, 'https://ror.org/00p4t5755 Research Institute of Radio Š¤Š“Š£ŠŸ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГио'),
(65600, 'https://ror.org/00p544d65', 'no_lang_code', 1, 'https://ror.org/00p544d65 Cyclone Energy Group (United States)'),
(65601, 'https://ror.org/00p5h5h82', 'en', 1, 'https://ror.org/00p5h5h82 ELI-HU Research and Development Non-Profit'),
(65602, 'https://ror.org/00p6ghq98', 'en', 1, 'https://ror.org/00p6ghq98 Hong Kong Productivity Council é¦™ęøÆē”Ÿē”¢åŠ›äæƒé€²å±€'),
(65603, 'https://ror.org/00p6s4733', 'en', 1, 'https://ror.org/00p6s4733 Newton International School'),
(65604, 'https://ror.org/00p7fct09', 'no_lang_code', 1, 'https://ror.org/00p7fct09 Oxford Drug Design (United Kingdom)'),
(65605, 'https://ror.org/00pb9rf78', 'no_lang_code', 1, 'https://ror.org/00pb9rf78 GoDaddy (United States)'),
(65606, 'https://ror.org/00pbt4z69', 'en', 1, 'https://ror.org/00pbt4z69 North Caucasian Zonal Scientific Research Veterinary Institute Деверо-Кавказский Š—Š¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ветеринарный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(65607, 'https://ror.org/00pdf6q45', 'en', 1, 'https://ror.org/00pdf6q45 Xiamen Institute of Building Research Group åŽ¦é—Øå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(65608, 'https://ror.org/00pdq3d37', 'en', 1, 'https://ror.org/00pdq3d37 Center for State and Local Government Excellence'),
(65609, 'https://ror.org/00pfnk039', 'no_lang_code', 1, 'https://ror.org/00pfnk039 ExxonMobil (Qatar) Ų„ŁƒŲ³ŁˆŁ† Ł…ŁˆŲØŁŠŁ„ā€¬ā€Ž'),
(65610, 'https://ror.org/00pgef156', 'en', 1, 'https://ror.org/00pgef156 End Domestic Abuse Wisconsin'),
(65611, 'https://ror.org/00pgy4f30', 'no_lang_code', 1, 'https://ror.org/00pgy4f30 China Electric Equipment Group (China) äø­ē”µē”µę°”é›†å›¢ęœ‰é™å…¬åø'),
(65612, 'https://ror.org/00pmgap74', 'no_lang_code', 1, 'https://ror.org/00pmgap74 Dabur (India) औाबर'),
(65613, 'https://ror.org/00ppf7x29', 'en', 1, 'https://ror.org/00ppf7x29 Institut sur la Gouvernance Institute on Governance'),
(65614, 'https://ror.org/00pqj0a35', 'en', 1, 'https://ror.org/00pqj0a35 An Roinn DlĆ­ agus Cirt Department of Justice'),
(65615, 'https://ror.org/00pss1k50', 'no_lang_code', 1, 'https://ror.org/00pss1k50 Bloodaxe Books (United Kingdom)'),
(65616, 'https://ror.org/00pthr413', 'fr', 1, 'https://ror.org/00pthr413 HƓpital Fleurimont'),
(65617, 'https://ror.org/00pvegc36', 'no_lang_code', 1, 'https://ror.org/00pvegc36 Chevron (United Kingdom)'),
(65618, 'https://ror.org/00pvmfq97', 'no_lang_code', 1, 'https://ror.org/00pvmfq97 Galamedia (Canada)'),
(65619, 'https://ror.org/00pvxy857', 'no_lang_code', 1, 'https://ror.org/00pvxy857 Cargotec (Poland)'),
(65620, 'https://ror.org/00pw5mk76', 'de', 1, 'https://ror.org/00pw5mk76 Bundesverband Naturkost Naturwaren'),
(65621, 'https://ror.org/00pxdqq86', 'en', 1, 'https://ror.org/00pxdqq86 The T.S. Eliot Society of Korea ķ•œźµ­T.S.ģ—˜ė¦¬ģ—‡ķ•™ķšŒ'),
(65622, 'https://ror.org/00pzjx720', 'no_lang_code', 1, 'https://ror.org/00pzjx720 Body Organ Biomedical (Taiwan)'),
(65623, 'https://ror.org/00q03be40', 'fr', 1, 'https://ror.org/00q03be40 L’Institut Wallon de l’Évaluation, de la Prospective et de la Statistique'),
(65624, 'https://ror.org/00q0cd663', 'no_lang_code', 1, 'https://ror.org/00q0cd663 Ooredoo (Qatar) أوريدو'),
(65625, 'https://ror.org/00q167h80', 'no_lang_code', 1, 'https://ror.org/00q167h80 Phorest Salon Software (Ireland)'),
(65626, 'https://ror.org/00q1ddg22', 'en', 1, 'https://ror.org/00q1ddg22 North-Caucasian Zonal Research Institute of Horticulture and Viticulture Деверо-Кавказский Š—Š¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ саГовоГства Šø винограГарства'),
(65627, 'https://ror.org/00q3w5456', 'en', 1, 'https://ror.org/00q3w5456 Hellenic Civil Aviation Authority Ī„Ļ€Ī·ĻĪµĻƒĪÆĪ± Πολιτικής Αεροπορίας'),
(65628, 'https://ror.org/00q650071', 'no_lang_code', 1, 'https://ror.org/00q650071 Korea Pharma (South Korea) ķ•œźµ­ķŒŒė§ˆ'),
(65629, 'https://ror.org/00q7qmn76', 'en', 1, 'https://ror.org/00q7qmn76 Polish Air Navigation Services Agency Polska Agencja Żeglugi Powietrznej'),
(65630, 'https://ror.org/00q9egp83', 'no_lang_code', 1, 'https://ror.org/00q9egp83 Rough Magic Theatre (Ireland)'),
(65631, 'https://ror.org/00q9tch90', 'no_lang_code', 1, 'https://ror.org/00q9tch90 Amneal (India)'),
(65632, 'https://ror.org/00qa3c235', 'no_lang_code', 1, 'https://ror.org/00qa3c235 Konka (China) 康佳集团'),
(65633, 'https://ror.org/00qa68036', 'no_lang_code', 1, 'https://ror.org/00qa68036 Exactech (South Korea)'),
(65634, 'https://ror.org/00qb33m26', 'en', 1, 'https://ror.org/00qb33m26 Research Institute of Scientific Research and Production Association ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ Šø произвоГственного Š¾Š±ŃŠŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ'),
(65635, 'https://ror.org/00qbcq685', 'no_lang_code', 1, 'https://ror.org/00qbcq685 Cavium (United States)'),
(65636, 'https://ror.org/00qc4yc66', 'en', 1, 'https://ror.org/00qc4yc66 New Mexico Military Institute'),
(65637, 'https://ror.org/00qdcrt37', 'en', 1, 'https://ror.org/00qdcrt37 Korean Constitutional Law Association ķ•œźµ­ķ—Œė²•ķ•™ķšŒ'),
(65638, 'https://ror.org/00qe7ms27', 'en', 1, 'https://ror.org/00qe7ms27 KG Hospital'),
(65639, 'https://ror.org/00qe9bz64', 'en', 1, 'https://ror.org/00qe9bz64 Blackpool Council'),
(65640, 'https://ror.org/00qj80m76', 'no_lang_code', 1, 'https://ror.org/00qj80m76 BIPVco (United Kingdom)'),
(65641, 'https://ror.org/00qjpp897', 'en', 1, 'https://ror.org/00qjpp897 Centre Cyber-aide'),
(65642, 'https://ror.org/00qmy0x85', 'en', 1, 'https://ror.org/00qmy0x85 Internationaal Instituut voor de stedelijke omgeving International Institute for the Urban Environment'),
(65643, 'https://ror.org/00qq6rm15', 'en', 1, 'https://ror.org/00qq6rm15 The Zalman Shazar Center ×ž×Ø×›×– זלמן שזר'),
(65644, 'https://ror.org/00qrd4818', 'no_lang_code', 1, 'https://ror.org/00qrd4818 Pharmbio Korea (South Korea)'),
(65645, 'https://ror.org/00qrrpk64', 'en', 1, 'https://ror.org/00qrrpk64 International Health Central American Institute Foundation'),
(65646, 'https://ror.org/00qt31k61', 'no_lang_code', 1, 'https://ror.org/00qt31k61 Fido Intelligence (Poland)'),
(65647, 'https://ror.org/00qtezm52', 'no_lang_code', 1, 'https://ror.org/00qtezm52 HealthUnlocked (United Kingdom)'),
(65648, 'https://ror.org/00qvayv53', 'en', 1, 'https://ror.org/00qvayv53 St Nicholas Trust'),
(65649, 'https://ror.org/00qvnkt09', 'no_lang_code', 1, 'https://ror.org/00qvnkt09 True Films (Ireland)'),
(65650, 'https://ror.org/00qvnyw14', 'no_lang_code', 1, 'https://ror.org/00qvnyw14 Jets Technics (China)'),
(65651, 'https://ror.org/00r0vv945', 'en', 1, 'https://ror.org/00r0vv945 Voronezh State University of Forestry and Technologies Воронежский Š³Š¾ŃŃƒŠ“арственный лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š“.ф. ŠœŠ¾Ń€Š¾Š·Š¾Š²Š°'),
(65652, 'https://ror.org/00r20e176', 'en', 1, 'https://ror.org/00r20e176 Cumann na nInnealtóirí Engineers Ireland'),
(65653, 'https://ror.org/00r2cc364', 'no_lang_code', 1, 'https://ror.org/00r2cc364 REGEN Biotech (South Korea)'),
(65654, 'https://ror.org/00r2js569', 'no_lang_code', 1, 'https://ror.org/00r2js569 Golden Concord Group (China) 金色 康科德集团'),
(65655, 'https://ror.org/00r2s0s14', 'en', 1, 'https://ror.org/00r2s0s14 Shandong Institute of Food and Drug Inspection å±±äøœēœé£Ÿå“čÆå“ę£€éŖŒē ”ē©¶é™¢'),
(65656, 'https://ror.org/00r2ty054', 'no_lang_code', 1, 'https://ror.org/00r2ty054 Lively Impact (China)'),
(65657, 'https://ror.org/00r7x5x17', 'en', 1, 'https://ror.org/00r7x5x17 Sunshine Hospitals ą°øą°Øą± ą°·ą±ˆą°Øą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±ą°øą±'),
(65658, 'https://ror.org/00rarg214', 'no_lang_code', 1, 'https://ror.org/00rarg214 Penza Electrotechnical Research Institute (Russia) Пензенский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹'),
(65659, 'https://ror.org/00rarw420', 'no_lang_code', 1, 'https://ror.org/00rarw420 Harmonic (United States)'),
(65660, 'https://ror.org/00razdc11', 'no_lang_code', 1, 'https://ror.org/00razdc11 Avantor (Poland)'),
(65661, 'https://ror.org/00rbnn565', 'en', 1, 'https://ror.org/00rbnn565 Liaoning General Aviation Research Institute č¾½å®é€šē”ØčˆŖē©ŗē ”ē©¶é™¢'),
(65662, 'https://ror.org/00rbqbc98', 'en', 1, 'https://ror.org/00rbqbc98 Wellcome Centre of Cultures and Environments of Health'),
(65663, 'https://ror.org/00rdb5f98', 'en', 1, 'https://ror.org/00rdb5f98 All-Russian Scientific Research Institute of Agrochemistry named after D.N. Pryanishnikova Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”.Š.ŠŸŃ€ŃŠ½ŠøŃˆŠ½ŠøŠŗŠ¾Š²Š°'),
(65664, 'https://ror.org/00rdva175', 'en', 1, 'https://ror.org/00rdva175 Bundesagentur für Arbeit Federal Employment Agency'),
(65665, 'https://ror.org/00rejsz57', 'en', 1, 'https://ror.org/00rejsz57 All-Russian Scientific and Research Institute of Brucellosis and Tuberculosis of Animals Всеросcийский Š½Š°ŃƒŃ‡Š½Š¾-исcŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š±Ń€ŃƒŃ†ŠµŠ»Š»ŠµŠ·Š° Šø Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»ŠµŠ·Š° животных'),
(65666, 'https://ror.org/00rhakp81', 'en', 1, 'https://ror.org/00rhakp81 GAM Investments'),
(65667, 'https://ror.org/00rhats79', 'no_lang_code', 1, 'https://ror.org/00rhats79 Abbott (Singapore)'),
(65668, 'https://ror.org/00rhvvr45', 'no_lang_code', 1, 'https://ror.org/00rhvvr45 China Railway Shanghai Design Institute Group (China) äø­é“äøŠęµ·č®¾č®”é™¢é›†å›¢'),
(65669, 'https://ror.org/00rm5gm86', 'en', 1, 'https://ror.org/00rm5gm86 Exemplar Associates'),
(65670, 'https://ror.org/00rm8g048', 'no_lang_code', 1, 'https://ror.org/00rm8g048 Bharat Biotech (India)'),
(65671, 'https://ror.org/00rmh4k73', 'no_lang_code', 1, 'https://ror.org/00rmh4k73 Evotec (India)'),
(65672, 'https://ror.org/00rn0j915', 'no_lang_code', 1, 'https://ror.org/00rn0j915 Geo Green Power (United Kingdom)'),
(65673, 'https://ror.org/00rpc7954', 'en', 1, 'https://ror.org/00rpc7954 International Tuberculosis Research Center źµ­ģ œź²°ķ•µģ—°źµ¬ģ†Œ'),
(65674, 'https://ror.org/00rrtbd20', 'no_lang_code', 1, 'https://ror.org/00rrtbd20 EnerSys (United Kingdom)'),
(65675, 'https://ror.org/00rs2nc95', 'en', 1, 'https://ror.org/00rs2nc95 Ministry of Transport, Maritime Affairs and Communications Ulaştırma, Denizcilik ve Haberleşme Bakanlığı'),
(65676, 'https://ror.org/00rs3yk18', 'en', 1, 'https://ror.org/00rs3yk18 Korean Home Economics Education Association ķ•œźµ­ź°€ģ •ź³¼źµģœ”ķ•™ķšŒ 회'),
(65677, 'https://ror.org/00rtmek18', 'no_lang_code', 1, 'https://ror.org/00rtmek18 Nobel Academy'),
(65678, 'https://ror.org/00rv22c87', 'de', 1, 'https://ror.org/00rv22c87 ift Rosenheim'),
(65679, 'https://ror.org/00rwx5a44', 'en', 1, 'https://ror.org/00rwx5a44 National Directorate General for Disaster Management'),
(65680, 'https://ror.org/00rxcx675', 'en', 1, 'https://ror.org/00rxcx675 Tianjin Heat Treatment Research Institute å¤©ę“„åø‚ēƒ­å¤„ē†ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(65681, 'https://ror.org/00rxg5003', 'no_lang_code', 1, 'https://ror.org/00rxg5003 Nets (Denmark)'),
(65682, 'https://ror.org/00s011v85', 'no_lang_code', 1, 'https://ror.org/00s011v85 Coal Industry Taiyuan Design and Research Institute (China) ē…¤ē‚­å·„äøšå¤ŖåŽŸč®¾č®”ē ”ē©¶é™¢'),
(65683, 'https://ror.org/00s50z725', 'en', 1, 'https://ror.org/00s50z725 Metamorphose VI AISBL'),
(65684, 'https://ror.org/00s8enb31', 'no_lang_code', 1, 'https://ror.org/00s8enb31 Spectrum Clinical Research (India)'),
(65685, 'https://ror.org/00s8pzv55', 'en', 1, 'https://ror.org/00s8pzv55 Ministry of Economic Development and Trade ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ економічного Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ і торгівлі України'),
(65686, 'https://ror.org/00sc0e019', 'en', 1, 'https://ror.org/00sc0e019 Shinhan University ģ‹ ķ•œ ėŒ€ķ•™źµ'),
(65687, 'https://ror.org/00sd4s212', 'fr', 1, 'https://ror.org/00sd4s212 Institut SupĆ©rieur des Ɖtudes Technologiques de Nabeul المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© ŲØŲŖŲ§ŲØŁ„'),
(65688, 'https://ror.org/00sdawb83', 'en', 1, 'https://ror.org/00sdawb83 Co-operatives of Innovative Intellectuals åˆ›ę–°ēŸ„čÆ†åˆ†å­åˆä½œē¤¾'),
(65689, 'https://ror.org/00se45k92', 'en', 1, 'https://ror.org/00se45k92 Korea Open Association Early Childhood Education ķ•œźµ­ģ—“ė¦°ģœ ģ•„źµģœ”ķ•™ķšŒ'),
(65690, 'https://ror.org/00sg0ja15', 'en', 1, 'https://ror.org/00sg0ja15 Amgueddfa Ceredigion Ceredigion Museum'),
(65691, 'https://ror.org/00sg44t81', 'no_lang_code', 1, 'https://ror.org/00sg44t81 Houot Agencement (France)'),
(65692, 'https://ror.org/00shp5f66', 'en', 1, 'https://ror.org/00shp5f66 Saratov Research Institute of Traumatology and Orthopedics Даратовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии'),
(65693, 'https://ror.org/00shsg218', 'no_lang_code', 1, 'https://ror.org/00shsg218 Daewon Pharm (South Korea) ėŒ€ģ›ģ œģ•½'),
(65694, 'https://ror.org/00sj61m74', 'en', 1, 'https://ror.org/00sj61m74 Institute of Marine Technology Problems of the Far-Eastern Branch of the Russian Academy of Sciences ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем морских технологий Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(65695, 'https://ror.org/00sn3eq47', 'en', 1, 'https://ror.org/00sn3eq47 All-Russian Horticultural Institute for Breeding, Agrotechnology and Nursery Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ Š”Š•Š›Š•ŠšŠ¦Š˜ŠžŠŠŠž-Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š”ŠŠ”ŠžŠ’ŠžŠ”Š”Š¢Š’Š И ŠŸŠ˜Š¢ŠžŠœŠŠ˜ŠšŠžŠ’ŠžŠ”Š”Š¢Š’Š'),
(65696, 'https://ror.org/00sp8me03', 'en', 1, 'https://ror.org/00sp8me03 Flemish Community'),
(65697, 'https://ror.org/00st18g74', 'en', 1, 'https://ror.org/00st18g74 Hanoi Pedagogical University 2 TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m HĆ  Nį»™i 2'),
(65698, 'https://ror.org/00stcbe47', 'en', 1, 'https://ror.org/00stcbe47 Consortium Clinical Research'),
(65699, 'https://ror.org/00sv3ym08', 'en', 1, 'https://ror.org/00sv3ym08 Institute of Precision Mechanics and Computer Science S.A. Lebedev Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ точной механики Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники имени Š”. А. ЛебеГева Š ŠŠ'),
(65700, 'https://ror.org/00sveth74', 'en', 1, 'https://ror.org/00sveth74 Asian Community AIDS Services'),
(65701, 'https://ror.org/00sw6qf69', 'en', 1, 'https://ror.org/00sw6qf69 Hong Kong Statistical Society é¦™ęøÆēµ±čØˆå­øęœƒ'),
(65702, 'https://ror.org/00swjtf68', 'en', 1, 'https://ror.org/00swjtf68 Anhui Institute of Robotics Industrial Technology Research Institute å®‰å¾½å·„ēØ‹å¤§å­¦ęœŗå™Øäŗŗäŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(65703, 'https://ror.org/00sxe1e69', 'en', 1, 'https://ror.org/00sxe1e69 Citizens Committee for Historic Preservation'),
(65704, 'https://ror.org/00sz56h79', 'en', 1, 'https://ror.org/00sz56h79 HKUST Shenzhen Research Institute'),
(65705, 'https://ror.org/00szk3r18', 'no_lang_code', 1, 'https://ror.org/00szk3r18 IQVIA (India)'),
(65706, 'https://ror.org/00t01w369', 'no_lang_code', 1, 'https://ror.org/00t01w369 Simcere Pharmaceutical (China) å…ˆå£°čÆäøš'),
(65707, 'https://ror.org/00t0bdg44', 'no_lang_code', 1, 'https://ror.org/00t0bdg44 Exosect Enabling Technologies'),
(65708, 'https://ror.org/00t3nxd66', 'no_lang_code', 1, 'https://ror.org/00t3nxd66 Samjin Pharm (South Korea) ģ‚¼ģ§„ģ œģ•½'),
(65709, 'https://ror.org/00t442a43', 'no_lang_code', 1, 'https://ror.org/00t442a43 UCB Pharma (Spain)'),
(65710, 'https://ror.org/00t5sva18', 'en', 1, 'https://ror.org/00t5sva18 Center for Agricultural Resources Research å†œäøščµ„ęŗē ”ē©¶äø­åæƒ'),
(65711, 'https://ror.org/00t6s9p18', 'en', 1, 'https://ror.org/00t6s9p18 Lloyd''s Maritime Academy'),
(65712, 'https://ror.org/00t8fsx92', 'en', 1, 'https://ror.org/00t8fsx92 Korea Economic Development Institute ķ•œźµ­ź²½ģ œė°œģ „ķ•™ķšŒ'),
(65713, 'https://ror.org/00t8p6b60', 'en', 1, 'https://ror.org/00t8p6b60 Bapu Nature Cure Hospital & Yogashram'),
(65714, 'https://ror.org/00t8tnj85', 'en', 1, 'https://ror.org/00t8tnj85 Korea Customs Trade Development Institute ķ•œźµ­ ź“€ģ„øė¬“ģ—­ź°œė°œģ›'),
(65715, 'https://ror.org/00t8z0x94', 'en', 1, 'https://ror.org/00t8z0x94 Hong Kong Information Technology Joint Council é¦™ęøÆč³‡čØŠē§‘ęŠ€čÆęœƒ'),
(65716, 'https://ror.org/00tc3yz20', 'no_lang_code', 1, 'https://ror.org/00tc3yz20 Babcock International Group (United Kingdom)'),
(65717, 'https://ror.org/00td86h58', 'fr', 1, 'https://ror.org/00td86h58 Michel-Sarrazin'),
(65718, 'https://ror.org/00tem2640', 'en', 1, 'https://ror.org/00tem2640 Hyattsville Community Development Corporation'),
(65719, 'https://ror.org/00tf0tc42', 'no_lang_code', 1, 'https://ror.org/00tf0tc42 Beiersdorf (Russia) БайерсГорф'),
(65720, 'https://ror.org/00tha0b59', 'en', 1, 'https://ror.org/00tha0b59 Scholars at Risk'),
(65721, 'https://ror.org/00tmwt177', 'en', 1, 'https://ror.org/00tmwt177 Agency of European innovations'),
(65722, 'https://ror.org/00tn0fn37', 'no_lang_code', 1, 'https://ror.org/00tn0fn37 Jaywing (United Kingdom)'),
(65723, 'https://ror.org/00tpb3x19', 'no_lang_code', 1, 'https://ror.org/00tpb3x19 Infrastructure Research & Development (Qatar)'),
(65724, 'https://ror.org/00tpwmd46', 'en', 1, 'https://ror.org/00tpwmd46 China Household Electrical Appliances Research Institute 中国家用电器研究院'),
(65725, 'https://ror.org/00tq75c95', 'en', 1, 'https://ror.org/00tq75c95 Korea Association for Social Welfare Studies'),
(65726, 'https://ror.org/00tqqep04', 'en', 1, 'https://ror.org/00tqqep04 Jewish Agency for Israel ההוכנות היהודית לארׄ ×™×©×Ø××œ'),
(65727, 'https://ror.org/00tsc5z15', 'no_lang_code', 1, 'https://ror.org/00tsc5z15 Gazpromekt (Russia) Š“Š°Š·ŠŸŃ€Š¾ŠµŠŗŃ‚'),
(65728, 'https://ror.org/00txf1d86', 'no_lang_code', 1, 'https://ror.org/00txf1d86 Danyang Hengan Chemical (China) äø¹é˜³åø‚ę’å®‰åŒ–å·„ęœ‰é™å…¬åøę˜Æ'),
(65729, 'https://ror.org/00v025f24', 'no_lang_code', 1, 'https://ror.org/00v025f24 GDL (China)'),
(65730, 'https://ror.org/00v2fq029', 'en', 1, 'https://ror.org/00v2fq029 Gangwon State University ź°•ģ›ė„ė¦½ėŒ€ķ•™źµ'),
(65731, 'https://ror.org/00v70rk54', 'no_lang_code', 1, 'https://ror.org/00v70rk54 BBPOS (China)'),
(65732, 'https://ror.org/00v85ww51', 'no_lang_code', 1, 'https://ror.org/00v85ww51 China Railway Signal & Communication (China) äø­å›½é“č·Æé€šäæ”äæ”å·č‚”ä»½ęœ‰é™å…¬åø'),
(65733, 'https://ror.org/00v8mj605', 'en', 1, 'https://ror.org/00v8mj605 American Friends of the Hebrew University'),
(65734, 'https://ror.org/00v8t0x13', 'en', 1, 'https://ror.org/00v8t0x13 St. Petersburg Scientific Research Institute of Forestry Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лесного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(65735, 'https://ror.org/00vaeh811', 'en', 1, 'https://ror.org/00vaeh811 Institute for Environmental Security'),
(65736, 'https://ror.org/00vcfn567', 'en', 1, 'https://ror.org/00vcfn567 Association of German Public Banks Bundesverband Ɩffentlicher Banken Deutschlands'),
(65737, 'https://ror.org/00vdwj549', 'en', 1, 'https://ror.org/00vdwj549 Textile Council of Hong Kong'),
(65738, 'https://ror.org/00vdwtt91', 'en', 1, 'https://ror.org/00vdwtt91 National Black Leadership Commission on AIDS'),
(65739, 'https://ror.org/00ve9f380', 'de', 1, 'https://ror.org/00ve9f380 Ministerium des Innern des Landes Nordrhein-Westfalen'),
(65740, 'https://ror.org/00vg14y34', 'no_lang_code', 1, 'https://ror.org/00vg14y34 UnionPay (China) 银联'),
(65741, 'https://ror.org/00vg62x98', 'en', 1, 'https://ror.org/00vg62x98 Indian Education Society''s V. N. Sule Guruji English Medium School ą¤µą„ą¤¹ą„€ ą¤ą¤Ø ą¤øą„ą¤³ą„‡ ą¤—ą„ą¤°ą„ą¤œą„€ ą¤‡ą¤‚ą¤—ą„ą¤°ą¤œą„€ ą¤®ą¤¾ą¤§ą„ą¤Æą¤® ą¤®ą¤¾ą¤§ą„ą¤Æą¤®ą¤æą¤• शाळा'),
(65742, 'https://ror.org/00vgqhr90', 'en', 1, 'https://ror.org/00vgqhr90 Federal State Budgetary Scientific Institution Caspian Fisheries Research Institute Дагестанский филиал Š¤Š“Š‘ŠŠ£ Каспийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(65743, 'https://ror.org/00vn8k536', 'no_lang_code', 1, 'https://ror.org/00vn8k536 Fujian Star-net (China)'),
(65744, 'https://ror.org/00vpqzk55', 'no_lang_code', 1, 'https://ror.org/00vpqzk55 SillaJen (South Korea) ģ   ģ˜ģž'),
(65745, 'https://ror.org/00vs6f587', 'en', 1, 'https://ror.org/00vs6f587 Hong Kong Information Technology Federation é¦™ęøÆč³‡čØŠē§‘ęŠ€å•†ęœƒ'),
(65746, 'https://ror.org/00vsv8c52', 'no_lang_code', 1, 'https://ror.org/00vsv8c52 China Electronics Corporation (China) äø­åœ‹é›»å­å…¬åø'),
(65747, 'https://ror.org/00vtf4k85', 'no_lang_code', 1, 'https://ror.org/00vtf4k85 BioScientia (Poland)'),
(65748, 'https://ror.org/00vvey578', 'en', 1, 'https://ror.org/00vvey578 Taiya Inlet Watershed Council'),
(65749, 'https://ror.org/00vx4ds80', 'no_lang_code', 1, 'https://ror.org/00vx4ds80 Anhui Fuhuang Architectural Design Research (China)'),
(65750, 'https://ror.org/00vx7p454', 'en', 1, 'https://ror.org/00vx7p454 Glencree'),
(65751, 'https://ror.org/00vx9pd91', 'en', 1, 'https://ror.org/00vx9pd91 Hong Kong Cosmetic Association é¦™ęøÆåŒ–ē²§å“åŒę„­å”ęœƒęœ‰é™å…¬åø'),
(65752, 'https://ror.org/00vy04v88', 'en', 1, 'https://ror.org/00vy04v88 The Society of Korean Language and Culture ķ•œźµ­ģ–“ģ™€ ķ•œźµ­ 문화 ķ•™ķšŒ'),
(65753, 'https://ror.org/00w1qwz28', 'en', 1, 'https://ror.org/00w1qwz28 Ministerstwo Inwestycji i Rozwoju Ministry of Investment and Development'),
(65754, 'https://ror.org/00w3s9s05', 'no_lang_code', 1, 'https://ror.org/00w3s9s05 CIDP Biotech (India)'),
(65755, 'https://ror.org/00w43nz28', 'en', 1, 'https://ror.org/00w43nz28 Clean Air Task Force'),
(65756, 'https://ror.org/00w4zfe96', 'no_lang_code', 1, 'https://ror.org/00w4zfe96 Chaowei Group (China)'),
(65757, 'https://ror.org/00w6eec53', 'no_lang_code', 1, 'https://ror.org/00w6eec53 Medtronic (India)'),
(65758, 'https://ror.org/00w85kx21', 'en', 1, 'https://ror.org/00w85kx21 Breast Cancer Care'),
(65759, 'https://ror.org/00wa5fs40', 'no_lang_code', 1, 'https://ror.org/00wa5fs40 Shenzhen General Institute of Architectural Design and Research (China) ę·±åœ³åø‚å»ŗē­‘č®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(65760, 'https://ror.org/00wbknw54', 'no_lang_code', 1, 'https://ror.org/00wbknw54 Techworks Marine (Ireland)'),
(65761, 'https://ror.org/00wc09b24', 'en', 1, 'https://ror.org/00wc09b24 The Korean Society of Eastern Art Studies ķ•œźµ­ ė™ģ„œģ–‘ ķ•™ķšŒ'),
(65762, 'https://ror.org/00wcc7f06', 'no_lang_code', 1, 'https://ror.org/00wcc7f06 Karmaveer Bhausaheb Hiray Dental College and Hospital'),
(65763, 'https://ror.org/00wda1y42', 'en', 1, 'https://ror.org/00wda1y42 Scientific Research Institute of Agriculture of the Central Black Earth Zone named after V.V. Dokuchaeva ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Черноземной полосы имени Š’.Š’. Š”Š¾ŠŗŃƒŃ‡Š°ŠµŠ²Š°'),
(65764, 'https://ror.org/00we2ka15', 'no_lang_code', 1, 'https://ror.org/00we2ka15 Haemair (United Kingdom)'),
(65765, 'https://ror.org/00wg0ca52', 'no_lang_code', 1, 'https://ror.org/00wg0ca52 Beijing Longda Light Industry Holding (China) åŒ—äŗ¬éš†č¾¾č½»å·„ęŽ§č‚”ęœ‰é™č“£ä»»å…¬åø'),
(65766, 'https://ror.org/00wgtjd08', 'en', 1, 'https://ror.org/00wgtjd08 Guangdong Institute of Arts and Sciences å¹æäøœę–‡ē†čŒäøšå­¦é™¢'),
(65767, 'https://ror.org/00whypb06', 'no_lang_code', 1, 'https://ror.org/00whypb06 Supor (China)'),
(65768, 'https://ror.org/00wja7n54', 'no_lang_code', 1, 'https://ror.org/00wja7n54 Fuyao Group (China)'),
(65769, 'https://ror.org/00wjmqn02', 'en', 1, 'https://ror.org/00wjmqn02 Korean Logistics Research Association ķ•œźµ­ė¬¼ė„˜ķ•™ķšŒ'),
(65770, 'https://ror.org/00wjyb955', 'no_lang_code', 1, 'https://ror.org/00wjyb955 Million Tech Development (China)'),
(65771, 'https://ror.org/00wkv8m74', 'no_lang_code', 1, 'https://ror.org/00wkv8m74 Morrisons (United Kingdom)'),
(65772, 'https://ror.org/00wkvrs75', 'en', 1, 'https://ror.org/00wkvrs75 State Scientific Research Institute of Biological Instrumentation Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š‘Š˜ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠžŠ“Šž ŠŸŠ Š˜Š‘ŠžŠ ŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ'),
(65773, 'https://ror.org/00wm96095', 'en', 1, 'https://ror.org/00wm96095 24-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны России 24th Central Research Institute of the Russian Defence Ministry'),
(65774, 'https://ror.org/00wmar339', 'no_lang_code', 1, 'https://ror.org/00wmar339 JSAB Technologies (China)'),
(65775, 'https://ror.org/00wmyyg64', 'en', 1, 'https://ror.org/00wmyyg64 History & Policy'),
(65776, 'https://ror.org/00wppnk92', 'en', 1, 'https://ror.org/00wppnk92 Assembly of First Nations'),
(65777, 'https://ror.org/00wq2sy59', 'no_lang_code', 1, 'https://ror.org/00wq2sy59 Iggesund Paperboard (Sweden)'),
(65778, 'https://ror.org/00wrskr85', 'no_lang_code', 1, 'https://ror.org/00wrskr85 Igeolise (United Kingdom)'),
(65779, 'https://ror.org/00ws3fz89', 'en', 1, 'https://ror.org/00ws3fz89 Hong Kong Tourism Board é¦™ęøÆę—…éŠē™¼å±•å±€'),
(65780, 'https://ror.org/00wsvb073', 'no_lang_code', 1, 'https://ror.org/00wsvb073 "Institute" Energosetproject" Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ā«Š­ŠŠ•Š Š“ŠžŠ”Š•Š¢Š¬ŠŸŠ ŠžŠ•ŠšŠ¢Ā»'),
(65781, 'https://ror.org/00wt3rj94', 'no_lang_code', 1, 'https://ror.org/00wt3rj94 Technopolis (Finland)'),
(65782, 'https://ror.org/00wtwe162', 'en', 1, 'https://ror.org/00wtwe162 John Dora Consulting'),
(65783, 'https://ror.org/00wwj2d93', 'no_lang_code', 1, 'https://ror.org/00wwj2d93 CellaMedic Biotechnology (South Korea) ģ„øė¼ė©”ė”• ė°”ģ“ģ˜¤ķ…Œķ¬ė†€ėŸ¬ģ§€'),
(65784, 'https://ror.org/00wwk7w85', 'en', 1, 'https://ror.org/00wwk7w85 Federal Scientific Center for Agroecology, Integrated Land Reclamation and Protective Afforestation'),
(65785, 'https://ror.org/00x0k1767', 'en', 1, 'https://ror.org/00x0k1767 Korean Consumption Culture Association ķ•œźµ­ģ†Œė¹„ė¬øķ™”ķ•™ķšŒ'),
(65786, 'https://ror.org/00x4jvm44', 'no_lang_code', 1, 'https://ror.org/00x4jvm44 Flock (United Kingdom)'),
(65787, 'https://ror.org/00x5f1424', 'no_lang_code', 1, 'https://ror.org/00x5f1424 Metrogiprotrans (Russia) ŠœŠµŃ‚Ń€Š¾Š³ŠøŠæŃ€Š¾Ń‚Ń€Š°Š½Ń'),
(65788, 'https://ror.org/00x8he857', 'no_lang_code', 1, 'https://ror.org/00x8he857 Doncasters (United Kingdom)'),
(65789, 'https://ror.org/00x935r91', 'no_lang_code', 1, 'https://ror.org/00x935r91 MoszhilNIIproekt ŠœŠ¾ŃŠ¶ŠøŠ»ŠŠ˜Š˜ŠæŃ€Š¾ŠµŠŗŃ‚'),
(65790, 'https://ror.org/00x9re747', 'en', 1, 'https://ror.org/00x9re747 Scientific Research Institute for the Kursk Magnetic Anomaly named after L.D. Shevyakova ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по проблемам ŠšŃƒŃ€ŃŠŗŠ¾Š¹ магнитной аномалии имени Š›.Š”. ŠØŠµŠ²ŃŠŗŠ¾Š²Š°'),
(65791, 'https://ror.org/00xaj0b77', 'en', 1, 'https://ror.org/00xaj0b77 Indo-US Super Speciality Hospital ą°­ą°¾ą°°ą°¤ą±-అమెరికా ą°øą±‚ą°Ŗą°°ą± ą°øą±ą°Ŗą±†ą°·ą°¾ą°²ą°æą°Ÿą±€ ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(65792, 'https://ror.org/00xb05e36', 'no_lang_code', 1, 'https://ror.org/00xb05e36 Advanced Micro Devices (United Kingdom)'),
(65793, 'https://ror.org/00xbas612', 'en', 1, 'https://ror.org/00xbas612 Rabindranath Tagore International Institute of Cardiac Sciences'),
(65794, 'https://ror.org/00xd7fg81', 'no_lang_code', 1, 'https://ror.org/00xd7fg81 Vedic Lifesciences (India)'),
(65795, 'https://ror.org/00xdme738', 'en', 1, 'https://ror.org/00xdme738 Hunan Radio and Television University ę¹–å—å¹æę’­ē”µč§†å¤§å­¦'),
(65796, 'https://ror.org/00xe3w941', 'en', 1, 'https://ror.org/00xe3w941 Applied Energy Lab Ī•ĻĪ³Ī±ĻƒĻ„Ī®ĻĪ¹Īæ Ī•Ļ†Ī±ĻĪ¼ĪæĪ³ĻŽĪ½ Ενέργειας'),
(65797, 'https://ror.org/00xfr3x03', 'no_lang_code', 1, 'https://ror.org/00xfr3x03 Plusvital (Ireland)'),
(65798, 'https://ror.org/00xgd4p18', 'no_lang_code', 1, 'https://ror.org/00xgd4p18 Knowledge Unlatched (Germany)'),
(65799, 'https://ror.org/00xgj2b15', 'no_lang_code', 1, 'https://ror.org/00xgj2b15 Tianjin Food Group (China) å¤©ę“„é£Ÿå“é›†å›¢'),
(65800, 'https://ror.org/00xgwej35', 'no_lang_code', 1, 'https://ror.org/00xgwej35 Vitalograph (Ireland)'),
(65801, 'https://ror.org/00xh1ex65', 'en', 1, 'https://ror.org/00xh1ex65 Harbin Huade University å“ˆå°”ę»ØåŽå¾·å­¦é™¢'),
(65802, 'https://ror.org/00xhxgs05', 'no_lang_code', 1, 'https://ror.org/00xhxgs05 Oryx Publishing and Advertising (Qatar)'),
(65803, 'https://ror.org/00xj9p276', 'no_lang_code', 1, 'https://ror.org/00xj9p276 GoPro (United States)'),
(65804, 'https://ror.org/00xkt2t97', 'en', 1, 'https://ror.org/00xkt2t97 Animal Health Ireland'),
(65805, 'https://ror.org/00xms2q31', 'en', 1, 'https://ror.org/00xms2q31 Institute of International Visual Arts'),
(65806, 'https://ror.org/00xn1x092', 'no_lang_code', 1, 'https://ror.org/00xn1x092 Changchun Gold Research Institute (China)'),
(65807, 'https://ror.org/00xn99b04', 'en', 1, 'https://ror.org/00xn99b04 Central Research Institute of Chemistry and Mechanics'),
(65808, 'https://ror.org/00xnkp952', 'en', 1, 'https://ror.org/00xnkp952 Xinjiang Uygur Autonomous Region Institute Inspection of Special Equipment ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(65809, 'https://ror.org/00xq2zb07', 'en', 1, 'https://ror.org/00xq2zb07 Institute of Nature Management Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ'),
(65810, 'https://ror.org/00xqhy713', 'en', 1, 'https://ror.org/00xqhy713 Heilongjiang Vocational Institute of Ecological Engineering é»‘é¾™ę±Ÿē”Ÿę€å·„ēØ‹čŒäøšå­¦é™¢'),
(65811, 'https://ror.org/00xr42905', 'no_lang_code', 1, 'https://ror.org/00xr42905 Activision Blizzard (United States)'),
(65812, 'https://ror.org/00xtpf729', 'pt', 1, 'https://ror.org/00xtpf729 Ministério da Ciência e Tecnologia'),
(65813, 'https://ror.org/00xts7a11', 'no_lang_code', 1, 'https://ror.org/00xts7a11 Elisha Systems (United Kingdom)'),
(65814, 'https://ror.org/00xxrde38', 'no_lang_code', 1, 'https://ror.org/00xxrde38 Educated Change (United Kingdom)'),
(65815, 'https://ror.org/00y05vn70', 'en', 1, 'https://ror.org/00y05vn70 Montreal Police Service Service de Police de la Ville de MontrƩal'),
(65816, 'https://ror.org/00y22s337', 'en', 1, 'https://ror.org/00y22s337 Directia pentru Evidenta Persoanelor si Administrarea Bazelor de Date Directorate for Persons Record and Databases Management'),
(65817, 'https://ror.org/00y245p24', 'en', 1, 'https://ror.org/00y245p24 Ural Institute of Traumatology and Orthopedics named after V.D. Chaklin Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии имени Š’.Š”. Чаклина'),
(65818, 'https://ror.org/00y2naf12', 'no_lang_code', 1, 'https://ror.org/00y2naf12 Firesouls (United Kingdom)'),
(65819, 'https://ror.org/00y34pm04', 'no_lang_code', 1, 'https://ror.org/00y34pm04 Fusion Software (South Korea)'),
(65820, 'https://ror.org/00y6jnc55', 'fr', 1, 'https://ror.org/00y6jnc55 L''Accord Mauricie'),
(65821, 'https://ror.org/00y7n3708', 'no_lang_code', 1, 'https://ror.org/00y7n3708 Atlassian (United Kingdom)'),
(65822, 'https://ror.org/00y9w2r94', 'no_lang_code', 1, 'https://ror.org/00y9w2r94 Ta Solutions (China)'),
(65823, 'https://ror.org/00ycgaj92', 'en', 1, 'https://ror.org/00ycgaj92 Association of Japanology in East Asia ė™ģ•„ģ‹œģ•„ģ¼ė³øķ•™ķšŒ'),
(65824, 'https://ror.org/00ycq1k13', 'en', 1, 'https://ror.org/00ycq1k13 Wuhan Municipal Engineering Design & Research Institute ę­¦ę±‰åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åøē®€ä»‹'),
(65825, 'https://ror.org/00ydadx21', 'no_lang_code', 1, 'https://ror.org/00ydadx21 Cheonan Yonam College ģ²œģ•ˆģ—°ģ•”ėŒ€ķ•™'),
(65826, 'https://ror.org/00ye1p368', 'en', 1, 'https://ror.org/00ye1p368 Habitat for Humanity'),
(65827, 'https://ror.org/00yec5b88', 'no_lang_code', 1, 'https://ror.org/00yec5b88 Macronix International (China)'),
(65828, 'https://ror.org/00yhnb286', 'no_lang_code', 1, 'https://ror.org/00yhnb286 Gnosys (United Kingdom)'),
(65829, 'https://ror.org/00yjcvf23', 'en', 1, 'https://ror.org/00yjcvf23 40-й Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны Российской ФеГерации 40th State Research Institute of the Ministry of Defence of the Russian Federation'),
(65830, 'https://ror.org/00yjk3k17', 'en', 1, 'https://ror.org/00yjk3k17 Ministry of Transport, Communications and Works ΄πουργείο ĪœĪµĻ„Ī±Ļ†ĪæĻĻŽĪ½, Ī•Ļ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½ και ĪˆĻĪ³Ļ‰Ī½'),
(65831, 'https://ror.org/00yk8z483', 'en', 1, 'https://ror.org/00yk8z483 Canadian Apheresis Group Groupe Canadien d''Aphérèse'),
(65832, 'https://ror.org/00ykfqt39', 'en', 1, 'https://ror.org/00ykfqt39 European Nuclear Safety Training & Tutoring Institute'),
(65833, 'https://ror.org/00ynr1103', 'en', 1, 'https://ror.org/00ynr1103 Houston Parks Board'),
(65834, 'https://ror.org/00yqxqx15', 'no_lang_code', 1, 'https://ror.org/00yqxqx15 OKTECH (China) ęµ·ę“‹ēŽ‹ē…§ę˜Žē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(65835, 'https://ror.org/00ytg8k67', 'en', 1, 'https://ror.org/00ytg8k67 Hong Kong Principals’ Institute é¦™ęøÆę ”é•æä¼š'),
(65836, 'https://ror.org/00ytxpg21', 'no_lang_code', 1, 'https://ror.org/00ytxpg21 Applied Multilayers (United Kingdom)'),
(65837, 'https://ror.org/00yy4hw75', 'de', 1, 'https://ror.org/00yy4hw75 Industrievereinigung Kunststoffverpackungen'),
(65838, 'https://ror.org/00yzc7459', 'en', 1, 'https://ror.org/00yzc7459 Korea Entrepreneurship Foundation ķ•œźµ­ģ²­ė…„źø°ģ—…ź°€ģ •ģ‹ ģž¬ė‹Ø'),
(65839, 'https://ror.org/00z0gd065', 'no_lang_code', 1, 'https://ror.org/00z0gd065 Idealand Electronics (China) ē†ęƒ³å’Œē”µå­'),
(65840, 'https://ror.org/00z33z605', 'no_lang_code', 1, 'https://ror.org/00z33z605 Arthritis Ireland'),
(65841, 'https://ror.org/00z46p261', 'no_lang_code', 1, 'https://ror.org/00z46p261 BBK Electronics (China) å¹æäøœę­„ę­„é«˜ē”µå­å·„äøšęœ‰é™å…¬åø'),
(65842, 'https://ror.org/00z4cvh19', 'en', 1, 'https://ror.org/00z4cvh19 Korean Association of Middle Eastern Studies ķ•œźµ­ ģ¤‘ė™ ķ•™ķšŒ'),
(65843, 'https://ror.org/00z6nt756', 'en', 1, 'https://ror.org/00z6nt756 Aberdeen Harbour Board'),
(65844, 'https://ror.org/00z74rd31', 'no_lang_code', 1, 'https://ror.org/00z74rd31 Shanghai FRP Research Institute (China) äøŠęµ·ēŽ»ē’ƒé’¢ē ”ē©¶ę‰€'),
(65845, 'https://ror.org/00z84ne79', 'en', 1, 'https://ror.org/00z84ne79 Canterbury City Council'),
(65846, 'https://ror.org/00z8s7v19', 'no_lang_code', 1, 'https://ror.org/00z8s7v19 Fitbit (United States)'),
(65847, 'https://ror.org/00z9txv30', 'en', 1, 'https://ror.org/00z9txv30 Investment and Development Agency of Latvia Latvijas Investīciju un attīstības aģentūra'),
(65848, 'https://ror.org/00zbas770', 'en', 1, 'https://ror.org/00zbas770 Art History Association Of Korea ķ•œźµ­ėÆøģˆ ģ‚¬ķ•™ķšŒ'),
(65849, 'https://ror.org/00zecgp48', 'en', 1, 'https://ror.org/00zecgp48 Scientific Research and Design Institute of Nitric Industry and Organic Synthesis Products ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ азотной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø Šø ŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š² органического синтеза'),
(65850, 'https://ror.org/00zgbag39', 'no_lang_code', 1, 'https://ror.org/00zgbag39 WiseSpot (China)'),
(65851, 'https://ror.org/00zgs1h87', 'no_lang_code', 1, 'https://ror.org/00zgs1h87 Advanced Interconnect Technologies (China) å…ˆčæ›ēš„äŗ’čæžęŠ€ęœÆ'),
(65852, 'https://ror.org/00zhe2a05', 'no_lang_code', 1, 'https://ror.org/00zhe2a05 TEI Korea (South Korea)'),
(65853, 'https://ror.org/00zkpmz33', 'en', 1, 'https://ror.org/00zkpmz33 National Institute of Medical Statistics'),
(65854, 'https://ror.org/00znysx20', 'no_lang_code', 1, 'https://ror.org/00znysx20 Optim Design (United States)'),
(65855, 'https://ror.org/00zsjqa04', 'en', 1, 'https://ror.org/00zsjqa04 Light Industry Hangzhou Electromechanical Design Institute č½»å·„äøšę­å·žęœŗē”µč®¾č®”ē ”ē©¶é™¢'),
(65856, 'https://ror.org/00ztg7b72', 'en', 1, 'https://ror.org/00ztg7b72 Historical Association'),
(65857, 'https://ror.org/00zv9r340', 'no_lang_code', 1, 'https://ror.org/00zv9r340 Pan Asia Technical Automotive Center (China) ę³›äŗšę±½č½¦ęŠ€ęœÆäø­åæƒ'),
(65858, 'https://ror.org/00zy1tg06', 'en', 1, 'https://ror.org/00zy1tg06 Learning through Landscapes'),
(65859, 'https://ror.org/00zy60964', 'en', 1, 'https://ror.org/00zy60964 Jiangsu Province Special Equipment Safety Supervision and Inspection Institute ę±Ÿč‹ēœē‰¹ē§č®¾å¤‡å®‰å…Øē›‘ē£ę£€éŖŒē ”ē©¶é™¢ę— é””åˆ†é™¢'),
(65860, 'https://ror.org/00zymfp03', 'no_lang_code', 1, 'https://ror.org/00zymfp03 Electronics for Imaging (United States)'),
(65861, 'https://ror.org/00zypna12', 'en', 1, 'https://ror.org/00zypna12 Korean Association For Studies of Philosophical Thought ķ•œźµ­ ģ² ķ•™ ģ—°źµ¬ķšŒ'),
(65862, 'https://ror.org/00zyzhx45', 'no_lang_code', 1, 'https://ror.org/00zyzhx45 ELG Carbon Fibre (United Kingdom)'),
(65863, 'https://ror.org/0100xdb42', 'no_lang_code', 1, 'https://ror.org/0100xdb42 Multichannel (China) 多通道'),
(65864, 'https://ror.org/0104w4x66', 'en', 1, 'https://ror.org/0104w4x66 Institute of Engineering Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инженерной физики Российской ФеГерации'),
(65865, 'https://ror.org/0105p2r38', 'en', 1, 'https://ror.org/0105p2r38 Bristol and Bath Science Park'),
(65866, 'https://ror.org/01080h262', 'no_lang_code', 1, 'https://ror.org/01080h262 Research Institute of Cosmic and Aviation Materials (Russia) ŠŠ°ŃƒŃ‡Š½Š¾ – ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космических Šø авиационных материалов'),
(65867, 'https://ror.org/01085m037', 'no_lang_code', 1, 'https://ror.org/01085m037 Geolang (United Kingdom)'),
(65868, 'https://ror.org/010azga70', 'en', 1, 'https://ror.org/010azga70 Tezpur Medical College & Hospital'),
(65869, 'https://ror.org/010eqta40', 'en', 1, 'https://ror.org/010eqta40 Qatar Computer Emergency Response Team'),
(65870, 'https://ror.org/010f98v62', 'no_lang_code', 1, 'https://ror.org/010f98v62 Encontech (Netherlands)'),
(65871, 'https://ror.org/010fems46', 'en', 1, 'https://ror.org/010fems46 Guangzhou Design Institute å¹æå·žåø‚č®¾č®”é™¢'),
(65872, 'https://ror.org/010he8702', 'no_lang_code', 1, 'https://ror.org/010he8702 Beijing Enterprises Water Group (China)'),
(65873, 'https://ror.org/010jaxs89', 'en', 1, 'https://ror.org/010jaxs89 European Molecular Biology Laboratory'),
(65874, 'https://ror.org/010m1c258', 'fr', 1, 'https://ror.org/010m1c258 Agence eSantƩ'),
(65875, 'https://ror.org/010pgs956', 'no_lang_code', 1, 'https://ror.org/010pgs956 Cambridge Reactor Design (United Kingdom)'),
(65876, 'https://ror.org/010rhww45', 'en', 1, 'https://ror.org/010rhww45 Experimental Factory of Scientific Engineering and Special Design Department Š­ŠšŠ”ŠŸŠ•Š Š˜ŠœŠ•ŠŠ¢ŠŠ›Š¬ŠŠ«Š™ Š—ŠŠ’ŠžŠ” ŠŠŠ£Š§ŠŠžŠ“Šž ŠŸŠ Š˜Š‘ŠžŠ ŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ Š”Šž Š”ŠŸŠ•Š¦Š˜ŠŠ›Š¬ŠŠ«Šœ ŠšŠžŠŠ”Š¢Š Š£ŠšŠ¢ŠžŠ Š”ŠšŠ˜Šœ Š‘Š®Š Šž'),
(65877, 'https://ror.org/010ryc044', 'no_lang_code', 1, 'https://ror.org/010ryc044 Tianjin Research Institute of Electric Science (China) å¤©ę“„ē”µę°”ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(65878, 'https://ror.org/010sks923', 'en', 1, 'https://ror.org/010sks923 The Mediterranean Science Commission'),
(65879, 'https://ror.org/010t34638', 'no_lang_code', 1, 'https://ror.org/010t34638 Insight (China)'),
(65880, 'https://ror.org/010v2ez92', 'no_lang_code', 1, 'https://ror.org/010v2ez92 F5 Networks (United States)'),
(65881, 'https://ror.org/010x6sj87', 'en', 1, 'https://ror.org/010x6sj87 Ministry of Culture and Sport of the Republic of Kazakhstan ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ ŠœÓ™Š“ŠµŠ½ŠøŠµŃ‚ және спорт министрлігі'),
(65882, 'https://ror.org/010zncz41', 'en', 1, 'https://ror.org/010zncz41 JEI University ģøģ²œģž¬ėŠ„ėŒ€ķ•™źµ'),
(65883, 'https://ror.org/010znyz59', 'en', 1, 'https://ror.org/010znyz59 Beijing Agricultural Machinery Research Institute åŒ—äŗ¬åø‚å†œäøšęœŗę¢°ē ”ē©¶ę‰€'),
(65884, 'https://ror.org/01104nk81', 'en', 1, 'https://ror.org/01104nk81 Kulturdepartementet Ministry of Culture'),
(65885, 'https://ror.org/0111fqb28', 'en', 1, 'https://ror.org/0111fqb28 (사)ķ•œźµ­ėŠ„ė„ ķ˜‘ķšŒ Korea Management Association'),
(65886, 'https://ror.org/0111grw10', 'no_lang_code', 1, 'https://ror.org/0111grw10 Graphitene (United Kingdom)'),
(65887, 'https://ror.org/0112jky20', 'en', 1, 'https://ror.org/0112jky20 Vilnius City Municipality Administration'),
(65888, 'https://ror.org/0113k2j28', 'no_lang_code', 1, 'https://ror.org/0113k2j28 Origin Enterprises (Ireland)'),
(65889, 'https://ror.org/0113knn38', 'no_lang_code', 1, 'https://ror.org/0113knn38 Geopartner (Poland)'),
(65890, 'https://ror.org/01144jm97', 'no_lang_code', 1, 'https://ror.org/01144jm97 Barrnon (United Kingdom)'),
(65891, 'https://ror.org/0114hcc46', 'no_lang_code', 1, 'https://ror.org/0114hcc46 Guangzhou Mechanical Engineering Research Institute (China) å¹æå·žęœŗę¢°ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(65892, 'https://ror.org/01158c721', 'en', 1, 'https://ror.org/01158c721 Estorick Collection of Modern Italian Art'),
(65893, 'https://ror.org/0118x3091', 'en', 1, 'https://ror.org/0118x3091 The Society of Study for Korean Music Education ķ•œźµ­źµ­ģ•…źµģœ”ģ—°źµ¬ķ•™ķšŒ'),
(65894, 'https://ror.org/0119xsz74', 'no_lang_code', 1, 'https://ror.org/0119xsz74 City Image Technology (China) åŸŽåø‚å½¢č±”ęŠ€ęœÆ'),
(65895, 'https://ror.org/011byjj52', 'no_lang_code', 1, 'https://ror.org/011byjj52 Troikaa (India)'),
(65896, 'https://ror.org/011cs1z84', 'en', 1, 'https://ror.org/011cs1z84 Zhejiang Provincial Institute of Communications Planning,Design & Research ęµ™ę±Ÿēœäŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(65897, 'https://ror.org/011f5zy27', 'no_lang_code', 1, 'https://ror.org/011f5zy27 Oceanpribor (Russia) ŠžŠŗŠµŠ°Š½ŠæŃ€ŠøŠ±Š¾Ń€'),
(65898, 'https://ror.org/011fdmv87', 'no_lang_code', 1, 'https://ror.org/011fdmv87 InSysBio (Russia) Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ системной биологии'),
(65899, 'https://ror.org/011fjjx45', 'en', 1, 'https://ror.org/011fjjx45 Azərbaycan Respublikası Fƶvqəladə Hallar Nazirliyi Ministry of Emergency Situations of the Republic of Azerbaijan'),
(65900, 'https://ror.org/011hmms37', 'no_lang_code', 1, 'https://ror.org/011hmms37 Alliance Canadienne des MassothƩrapeutes Canadian Massage Therapy Aliance'),
(65901, 'https://ror.org/011k1kc60', 'en', 1, 'https://ror.org/011k1kc60 Bundesverband der Deutschen Luft- und Raumfahrtindustrie German Aerospace Industries Association'),
(65902, 'https://ror.org/011m4cv61', 'en', 1, 'https://ror.org/011m4cv61 Korea Atomic Industrial Forum ķ•œźµ­ģ›ģžė „ģ‚°ģ—…ķšŒģ˜'),
(65903, 'https://ror.org/011mzb617', 'en', 1, 'https://ror.org/011mzb617 Masan University ė§ˆģ‚° ėŒ€ķ•™źµ'),
(65904, 'https://ror.org/011nkhg51', 'no_lang_code', 1, 'https://ror.org/011nkhg51 Chromacity (United Kingdom)'),
(65905, 'https://ror.org/011pysq56', 'no_lang_code', 1, 'https://ror.org/011pysq56 Laboclinic (Poland)'),
(65906, 'https://ror.org/011qk9n39', 'en', 1, 'https://ror.org/011qk9n39 Hong Kong Electro-Plating Merchants Association'),
(65907, 'https://ror.org/011rjve03', 'en', 1, 'https://ror.org/011rjve03 Health Education and Training Institute'),
(65908, 'https://ror.org/011rk9932', 'no_lang_code', 1, 'https://ror.org/011rk9932 Prenetics (China)'),
(65909, 'https://ror.org/011t9p927', 'en', 1, 'https://ror.org/011t9p927 China Internet Network Information Center äø­å›½äŗ’č”ē½‘ē»œäæ”ęÆäø­åæƒ'),
(65910, 'https://ror.org/011xqyx03', 'no_lang_code', 1, 'https://ror.org/011xqyx03 Hamsoa Pharmaceutical (South Korea) ķ•Øģ†Œģ•„ģ œģ•½'),
(65911, 'https://ror.org/01209ew92', 'fr', 1, 'https://ror.org/01209ew92 FƩdƩration des Maisons D''HƩbergement pour Femmes'),
(65912, 'https://ror.org/0122c9a54', 'no_lang_code', 1, 'https://ror.org/0122c9a54 Suntek Computer Systems (China) äø‰ę±Ÿé›»č…¦ē§‘ęŠ€'),
(65913, 'https://ror.org/01243ws42', 'en', 1, 'https://ror.org/01243ws42 TianjinSino-German University of Applied Sciences å¤©ę“„äø­å¾·åŗ”ē”ØęŠ€ęœÆå¤§å­¦'),
(65914, 'https://ror.org/0126xra53', 'en', 1, 'https://ror.org/0126xra53 Hellenic Agency for Local Development and Local Government Ελληνική Εταιρία Τοπικής Ανάπτυξης και Ī‘Ļ…Ļ„ĪæĪ“Ī¹ĪæĪÆĪŗĪ·ĻƒĪ·Ļ‚'),
(65915, 'https://ror.org/0128dte27', 'en', 1, 'https://ror.org/0128dte27 Labor Welfare Corporation ź·¼ė”œė³µģ§€ź³µė‹Ø'),
(65916, 'https://ror.org/0128g9342', 'no_lang_code', 1, 'https://ror.org/0128g9342 Storage Computer (China) å„²å­˜é›»č…¦'),
(65917, 'https://ror.org/012adm074', 'no_lang_code', 1, 'https://ror.org/012adm074 Multi Base (China)'),
(65918, 'https://ror.org/012b6r490', 'no_lang_code', 1, 'https://ror.org/012b6r490 GeneMatrix (South Korea)'),
(65919, 'https://ror.org/012czx379', 'en', 1, 'https://ror.org/012czx379 Jingdezhen University 景德镇学院'),
(65920, 'https://ror.org/012ewnz96', 'en', 1, 'https://ror.org/012ewnz96 National Forum for the Enhancement of Teaching & Learning in Higher Education'),
(65921, 'https://ror.org/012hbj192', 'en', 1, 'https://ror.org/012hbj192 Sichuan Highway Design and Research Institute å››å·ēœäŗ¤é€ščæč¾“åŽ…å…¬č·Æč§„åˆ’å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢'),
(65922, 'https://ror.org/012hgcz59', 'en', 1, 'https://ror.org/012hgcz59 Korean Community Welfare Society ķ•œźµ­ģ§€ģ—­ģ‚¬ķšŒė³µģ§€ķ•™ķšŒ'),
(65923, 'https://ror.org/012hhd379', 'en', 1, 'https://ror.org/012hhd379 The Anglican Church of Korea ėŒ€ķ•œģ„±ź³µķšŒ ꓀구 ķ™ˆķŽ˜ģ“ģ§€'),
(65924, 'https://ror.org/012pkqv60', 'no_lang_code', 1, 'https://ror.org/012pkqv60 Hikma Pharmaceuticals (United Kingdom)'),
(65925, 'https://ror.org/012pz7r49', 'en', 1, 'https://ror.org/012pz7r49 Guangzhou Academy of Special Equipment Inspection and Testing å¹æå·žē‰¹ē§č®¾å¤‡ę£€ęµ‹ęŠ€ęœÆē ”ē©¶é™¢'),
(65926, 'https://ror.org/012q0kv84', 'en', 1, 'https://ror.org/012q0kv84 French Culture and Arts Society ķ”„ėž‘ģŠ¤ė¬øķ™”ģ˜ˆģˆ ķ•™ķšŒ'),
(65927, 'https://ror.org/012q4vx20', 'en', 1, 'https://ror.org/012q4vx20 Korean Psychological Association of Culture and Social Issues ķ•œźµ­ė¬øķ™”ė°ģ‚¬ķšŒė¬øģ œģ‹¬ė¦¬ķ•™ķšŒ'),
(65928, 'https://ror.org/012qbtt58', 'en', 1, 'https://ror.org/012qbtt58 Korean Society of Interpretation and Translation Studies 우리 ķ•œźµ­ķ†µģ—­ė²ˆģ—­ķ•™ķšŒź°€'),
(65929, 'https://ror.org/012r2dp17', 'ro', 1, 'https://ror.org/012r2dp17 Ministerul Comunicațiilor și Societății Informaționale'),
(65930, 'https://ror.org/012rg8a11', 'en', 1, 'https://ror.org/012rg8a11 Icelandic Road and Coastal Administration Vegagerưin'),
(65931, 'https://ror.org/012tba185', 'no_lang_code', 1, 'https://ror.org/012tba185 Cheng Shin Rubber (Taiwan) ę­£ę–°ę©”č† å·„ę„­č‚”ä»½ęœ‰é™å…¬åø'),
(65932, 'https://ror.org/012x2n652', 'en', 1, 'https://ror.org/012x2n652 Australian Council for Educational Research'),
(65933, 'https://ror.org/012xz1202', 'no_lang_code', 1, 'https://ror.org/012xz1202 Primax Electronics (China) č‡“ä¼øē§‘ęŠ€'),
(65934, 'https://ror.org/0131enr16', 'no_lang_code', 1, 'https://ror.org/0131enr16 CNR Services International (United Kingdom)');
INSERT INTO `rors` VALUES
(65935, 'https://ror.org/0133gy754', 'en', 1, 'https://ror.org/0133gy754 Oglebay Institute'),
(65936, 'https://ror.org/0135rsr71', 'en', 1, 'https://ror.org/0135rsr71 MeabhairshlĆ”inte na hƉireann Mental Health Ireland'),
(65937, 'https://ror.org/0137z3b32', 'en', 1, 'https://ror.org/0137z3b32 Lietuvos Respublikos Ŕvietimo ir mokslo ministerija Ministry of Education and Science of the Republic of Lithuania'),
(65938, 'https://ror.org/013acqk67', 'no_lang_code', 1, 'https://ror.org/013acqk67 AMS (United Kingdom)'),
(65939, 'https://ror.org/013b8tn87', 'no_lang_code', 1, 'https://ror.org/013b8tn87 NetDragon (China)'),
(65940, 'https://ror.org/013bmyp84', 'en', 1, 'https://ror.org/013bmyp84 Government of Himachal Pradesh हिमाचल ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ सचिवालय'),
(65941, 'https://ror.org/013bx1v37', 'no_lang_code', 1, 'https://ror.org/013bx1v37 Banedanmark (Denmark)'),
(65942, 'https://ror.org/013crbb86', 'no_lang_code', 1, 'https://ror.org/013crbb86 Cellid (South Korea) ģ…€ė¦¬ė“œ'),
(65943, 'https://ror.org/013ctv878', 'fr', 1, 'https://ror.org/013ctv878 Centre d''Ʃtude des solidaritƩs sociales'),
(65944, 'https://ror.org/013dvfk22', 'en', 1, 'https://ror.org/013dvfk22 4-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны России 4th Central Research Institute of the Russian Defence Ministry'),
(65945, 'https://ror.org/013eh1m30', 'no_lang_code', 1, 'https://ror.org/013eh1m30 Astellas Pharma (India)'),
(65946, 'https://ror.org/013fj3d42', 'en', 1, 'https://ror.org/013fj3d42 State Enterprise "State Road Research Institute named M.P.Shulgina'),
(65947, 'https://ror.org/013gmhc80', 'en', 1, 'https://ror.org/013gmhc80 Development Agency for Amvrakikos Ī‘Ī½Ī±Ļ€Ļ„Ļ…Ī¾Ī¹Ī±ĪŗĻŒĻ‚ ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ Ī‘Ī¼Ī²ĻĪ±ĪŗĪ¹ĪŗĪæĻ'),
(65948, 'https://ror.org/013kktc25', 'en', 1, 'https://ror.org/013kktc25 Tsehootsooi Medical Center'),
(65949, 'https://ror.org/013kn0e57', 'en', 1, 'https://ror.org/013kn0e57 Farming & Wildlife Advisory Group'),
(65950, 'https://ror.org/013pbgw67', 'fr', 1, 'https://ror.org/013pbgw67 ID Champagne-Ardenne'),
(65951, 'https://ror.org/013q8p212', 'no_lang_code', 1, 'https://ror.org/013q8p212 Afimilk (United Kingdom)'),
(65952, 'https://ror.org/013t7g336', 'en', 1, 'https://ror.org/013t7g336 Bioregional'),
(65953, 'https://ror.org/013te4x73', 'no_lang_code', 1, 'https://ror.org/013te4x73 Vitzro Tech (South Korea) ė¹„ģø ė”œ ķ…Œķ¬'),
(65954, 'https://ror.org/014028r32', 'en', 1, 'https://ror.org/014028r32 Le Hong Phong High School for the Gifted TrĘ°į»ng Trung hį»c phổ thĆ“ng chuyĆŖn LĆŖ Hồng Phong, Nam Định'),
(65955, 'https://ror.org/0142eak56', 'no_lang_code', 1, 'https://ror.org/0142eak56 Blueprint Medicines (United States)'),
(65956, 'https://ror.org/0146h2h75', 'no_lang_code', 1, 'https://ror.org/0146h2h75 IBM (Ireland)'),
(65957, 'https://ror.org/0146vv083', 'en', 1, 'https://ror.org/0146vv083 Shaanxi Xueqian Normal University'),
(65958, 'https://ror.org/0147f9026', 'no_lang_code', 1, 'https://ror.org/0147f9026 BMI (South Korea)'),
(65959, 'https://ror.org/0147q3t04', 'es', 1, 'https://ror.org/0147q3t04 Instituto Cubano de Investigaciones de los Derivados de la Caña de Azúcar'),
(65960, 'https://ror.org/0148z7881', 'no_lang_code', 1, 'https://ror.org/0148z7881 Chengdu Guoke Haibo Information Technology (China) ęˆéƒ½å›½ē§‘ęµ·åšäæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(65961, 'https://ror.org/0149mnh61', 'no_lang_code', 1, 'https://ror.org/0149mnh61 Henan Energy & Chemical Industry Group (China) ę²³å—čƒ½ęŗåŒ–å·„é›†å›¢ęœ‰é™å…¬åø'),
(65962, 'https://ror.org/014aahx46', 'en', 1, 'https://ror.org/014aahx46 Central Research and Design Institute of Fuel Equipment for Automotive and Stationary Engines Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ топливной Š°ŠæŠæŠ°Ń€Š°Ń‚ŃƒŃ€Ń‹ автотракторных Šø стационарных Гвигателей'),
(65963, 'https://ror.org/014bh6885', 'en', 1, 'https://ror.org/014bh6885 Association of Metropolitan Water Agencies'),
(65964, 'https://ror.org/014cakb16', 'en', 1, 'https://ror.org/014cakb16 European Heart Network'),
(65965, 'https://ror.org/014cnvs43', 'en', 1, 'https://ror.org/014cnvs43 Improvement Service'),
(65966, 'https://ror.org/014d1nq39', 'en', 1, 'https://ror.org/014d1nq39 Hull History Centre'),
(65967, 'https://ror.org/014dg3r13', 'en', 1, 'https://ror.org/014dg3r13 The Korean Society for Industrial Education ķ•œźµ­ģ‚°ģ—…źµģœ”ķ•™ķšŒ'),
(65968, 'https://ror.org/014h86b15', 'en', 1, 'https://ror.org/014h86b15 Ministry of Shipping and Island Policy ΄πουργείο Εμπορικής ĪĪ±Ļ…Ļ„Ī¹Ī»ĪÆĪ±Ļ‚'),
(65969, 'https://ror.org/014m5jx39', 'en', 1, 'https://ror.org/014m5jx39 Scientific Research Institute of Mining ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Горного Гела'),
(65970, 'https://ror.org/014mmeq48', 'en', 1, 'https://ror.org/014mmeq48 Galway One World Centre'),
(65971, 'https://ror.org/014nbfa48', 'en', 1, 'https://ror.org/014nbfa48 DearbhĆŗ CĆ”ilĆ­ochta agus CĆ”ilĆ­ochtaĆ­ Ɖireann Quality and Qualifications Ireland'),
(65972, 'https://ror.org/014nzyr79', 'en', 1, 'https://ror.org/014nzyr79 China Railway Economic and Planning Research Institute äø­å›½é“č·Æē»ęµŽäøŽč§„åˆ’ē ”ē©¶é™¢'),
(65973, 'https://ror.org/014rxe718', 'en', 1, 'https://ror.org/014rxe718 Russian Scientific Research Institute of Traumatology and Orthopedics named after R.R. Vreden ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии им. Š .Š .ВреГена'),
(65974, 'https://ror.org/014v16267', 'en', 1, 'https://ror.org/014v16267 American Association for Agricultural Education'),
(65975, 'https://ror.org/014vdg758', 'no_lang_code', 1, 'https://ror.org/014vdg758 Myungin Pharm (South Korea)'),
(65976, 'https://ror.org/014x92w58', 'en', 1, 'https://ror.org/014x92w58 Irish Heritage Trust'),
(65977, 'https://ror.org/014xkga58', 'no_lang_code', 1, 'https://ror.org/014xkga58 Research Institute for Oilfield Chemistry (Russia) ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ЄИМИИ'),
(65978, 'https://ror.org/014y0b014', 'no_lang_code', 1, 'https://ror.org/014y0b014 NetScout (United States)'),
(65979, 'https://ror.org/014yvnw28', 'en', 1, 'https://ror.org/014yvnw28 Project Arts Centre'),
(65980, 'https://ror.org/01504bq84', 'no_lang_code', 1, 'https://ror.org/01504bq84 Inventya (United Kingdom)'),
(65981, 'https://ror.org/0150cj610', 'en', 1, 'https://ror.org/0150cj610 Program for Appropriate Technology in Health'),
(65982, 'https://ror.org/0150d1t62', 'no_lang_code', 1, 'https://ror.org/0150d1t62 Spiretronic (Egypt)'),
(65983, 'https://ror.org/0152gf261', 'no_lang_code', 1, 'https://ror.org/0152gf261 Roche (Ireland)'),
(65984, 'https://ror.org/01537rr61', 'en', 1, 'https://ror.org/01537rr61 JustGiving'),
(65985, 'https://ror.org/0153x1x48', 'no_lang_code', 1, 'https://ror.org/0153x1x48 U-Casadh Project (Ireland)'),
(65986, 'https://ror.org/0154kj662', 'no_lang_code', 1, 'https://ror.org/0154kj662 VGM Gastro Centre'),
(65987, 'https://ror.org/01551ga11', 'en', 1, 'https://ror.org/01551ga11 Hunan International Economics University ę¹–å—ę¶‰å¤–ē»ęµŽå­¦é™¢'),
(65988, 'https://ror.org/0157pp245', 'en', 1, 'https://ror.org/0157pp245 Ministry of Communications and Technology وزارة ال؄تصالات ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(65989, 'https://ror.org/0158njk12', 'no_lang_code', 1, 'https://ror.org/0158njk12 Shanxi Industrial Equipment Installation Group (Taiwan) å±±č„æēœå·„äøšč®¾å¤‡å®‰č£…é›†å›¢ęœ‰é™å…¬åø'),
(65990, 'https://ror.org/0158zgz03', 'en', 1, 'https://ror.org/0158zgz03 International Longevity Centre'),
(65991, 'https://ror.org/015966407', 'no_lang_code', 1, 'https://ror.org/015966407 Cryptomage (Poland)'),
(65992, 'https://ror.org/01599zj86', 'en', 1, 'https://ror.org/01599zj86 Guangxi Hydraulic Power Machinery Research Institute å¹æč„æę°“åˆ©ęœŗę¢°ē ”ē©¶ę‰€'),
(65993, 'https://ror.org/0159kpq91', 'no_lang_code', 1, 'https://ror.org/0159kpq91 Zydus Pharmaceuticals (United States)'),
(65994, 'https://ror.org/0159q3366', 'en', 1, 'https://ror.org/0159q3366 Vancouver Infectious Diseases Centre'),
(65995, 'https://ror.org/015aajy26', 'en', 1, 'https://ror.org/015aajy26 Ministry of Finance ŠœŠøŠ½ŠøŃŃ‚Š°Ń€ за финансии'),
(65996, 'https://ror.org/015b6zh04', 'en', 1, 'https://ror.org/015b6zh04 Cheshire West and Chester'),
(65997, 'https://ror.org/015b9mz47', 'no_lang_code', 1, 'https://ror.org/015b9mz47 Artworks Cymru'),
(65998, 'https://ror.org/015bwbz64', 'en', 1, 'https://ror.org/015bwbz64 Korea Cosmetic Association ėŒ€ķ•œķ™”ģž„ķ’ˆķ˜‘ķšŒ'),
(65999, 'https://ror.org/015csvh80', 'no_lang_code', 1, 'https://ror.org/015csvh80 (주)ķƒœģ›…ė©”ė””ģ¹¼ Taewoong Medical (South Korea)'),
(66000, 'https://ror.org/015ddje41', 'en', 1, 'https://ror.org/015ddje41 Jiangxi Fisheries Research Institute ę±Ÿč„æēœę°“äŗ§ē§‘å­¦ē ”ē©¶ę‰€'),
(66001, 'https://ror.org/015drfm81', 'no_lang_code', 1, 'https://ror.org/015drfm81 Microsoft (Denmark)'),
(66002, 'https://ror.org/015epak69', 'no_lang_code', 1, 'https://ror.org/015epak69 Hengtong Optoelectronic (China) äŗØé€šå…‰ē”µ'),
(66003, 'https://ror.org/015ff4823', 'en', 1, 'https://ror.org/015ff4823 Sci-Tech Daresbury'),
(66004, 'https://ror.org/015fr8y55', 'en', 1, 'https://ror.org/015fr8y55 Regent Park Community Health Centre'),
(66005, 'https://ror.org/015ggv447', 'en', 1, 'https://ror.org/015ggv447 United Nations Economic Commission for Latin America and the Caribbean'),
(66006, 'https://ror.org/015gyv119', 'no_lang_code', 1, 'https://ror.org/015gyv119 Austrian Federal Computing Centre Bundesrechenzentrum (Austria)'),
(66007, 'https://ror.org/015jj1011', 'fr', 1, 'https://ror.org/015jj1011 Minister of the Interior Ministère de l''Intérieur'),
(66008, 'https://ror.org/015m5qc77', 'en', 1, 'https://ror.org/015m5qc77 Expii'),
(66009, 'https://ror.org/015nzpb92', 'no_lang_code', 1, 'https://ror.org/015nzpb92 Baldoyle Forum'),
(66010, 'https://ror.org/015peq218', 'en', 1, 'https://ror.org/015peq218 Omsk Research Institute of Natural Focal Infections ŠžŠ¼ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ естественных очаговых инфекций'),
(66011, 'https://ror.org/015pwqr12', 'en', 1, 'https://ror.org/015pwqr12 National Sports Promotion Corporation źµ­ėÆ¼ģ²“ģœ”ģ§„ķ„ź³µė‹Ø'),
(66012, 'https://ror.org/015qn9r22', 'no_lang_code', 1, 'https://ror.org/015qn9r22 Champion Technology Holdings (China)'),
(66013, 'https://ror.org/015r8jj75', 'en', 1, 'https://ror.org/015r8jj75 The European Institute for Crime Prevention and Control, affiliated with the United Nations Yhdistyneiden Kansakuntien kanssa toimiva Euroopan rikoksentorjunta- ja torjuntaelin'),
(66014, 'https://ror.org/015rkeq20', 'no_lang_code', 1, 'https://ror.org/015rkeq20 Innoverz (China)'),
(66015, 'https://ror.org/015rsk965', 'no_lang_code', 1, 'https://ror.org/015rsk965 SiliconSapiens (South Korea) 실 리코 ģ‚¬ķ”¼ģ—”ģŠ¤'),
(66016, 'https://ror.org/015sgx450', 'de', 1, 'https://ror.org/015sgx450 Richard-Strauss-Institut'),
(66017, 'https://ror.org/015vve507', 'no_lang_code', 1, 'https://ror.org/015vve507 Colgate-Palmolive (India)'),
(66018, 'https://ror.org/015ydew40', 'no_lang_code', 1, 'https://ror.org/015ydew40 Axess Technologies (United Kingdom)'),
(66019, 'https://ror.org/016096484', 'en', 1, 'https://ror.org/016096484 Society of Korean Classical Woman Literature ķ•œźµ­ź³ ģ „ģ—¬ģ„±ė¬øķ•™ķšŒ'),
(66020, 'https://ror.org/0160dkh89', 'en', 1, 'https://ror.org/0160dkh89 All-Russian Research Institute of Biological Plant Protection Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š‘Š˜ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠžŠ™ Š—ŠŠ©Š˜Š¢Š« Š ŠŠ”Š¢Š•ŠŠ˜Š™'),
(66021, 'https://ror.org/0160gm722', 'en', 1, 'https://ror.org/0160gm722 Gulf English School Ł…ŲÆŲ±Ų³Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ų§Ł„Ų§Ł†Ų¬Ł„ŁŠŲ²ŁŠŁ‡'),
(66022, 'https://ror.org/0164s1237', 'no_lang_code', 1, 'https://ror.org/0164s1237 New A Innovation (China)'),
(66023, 'https://ror.org/0165m4813', 'en', 1, 'https://ror.org/0165m4813 Research Institute of Radiology'),
(66024, 'https://ror.org/0167cg095', 'no_lang_code', 1, 'https://ror.org/0167cg095 Daden (United Kingdom)'),
(66025, 'https://ror.org/016bxe465', 'en', 1, 'https://ror.org/016bxe465 Ministry of Energy, Commerce, Industry and Tourism ΄πουργείο Ενέργειας, Εμπορίου, Βιομηχανίας και Ī¤ĪæĻ…ĻĪ¹ĻƒĪ¼ĪæĻ,'),
(66026, 'https://ror.org/016d1vx88', 'en', 1, 'https://ror.org/016d1vx88 Institute Society and Technology Instituut Samenleving en Technologie'),
(66027, 'https://ror.org/016d5wx23', 'no_lang_code', 1, 'https://ror.org/016d5wx23 Institute Giprostroymost Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гипростроймост'),
(66028, 'https://ror.org/016dc7q50', 'no_lang_code', 1, 'https://ror.org/016dc7q50 Yonyou (China) ē”Øå‹'),
(66029, 'https://ror.org/016frx827', 'en', 1, 'https://ror.org/016frx827 Knowledge Centre for Materials Chemistry'),
(66030, 'https://ror.org/016frzz57', 'en', 1, 'https://ror.org/016frzz57 Welding Technology Institute of Australia'),
(66031, 'https://ror.org/016hga078', 'no_lang_code', 1, 'https://ror.org/016hga078 Infowise (China)'),
(66032, 'https://ror.org/016jjeg55', 'no_lang_code', 1, 'https://ror.org/016jjeg55 LanzaTech (New Zealand)'),
(66033, 'https://ror.org/016jvwb81', 'no_lang_code', 1, 'https://ror.org/016jvwb81 Octoly (France)'),
(66034, 'https://ror.org/016k9q072', 'no_lang_code', 1, 'https://ror.org/016k9q072 Shandong Academy of Textile Science (China) å±±äøœēŗŗē»‡ē§‘å­¦ē ”ē©¶é™¢'),
(66035, 'https://ror.org/016kjnf22', 'no_lang_code', 1, 'https://ror.org/016kjnf22 AstroTec Holding (Netherlands)'),
(66036, 'https://ror.org/016ksqd60', 'en', 1, 'https://ror.org/016ksqd60 Hong Kong Institution of Engineers é¦™ęøÆå·„ēØ‹åøˆå­¦ä¼š'),
(66037, 'https://ror.org/016m9ee75', 'en', 1, 'https://ror.org/016m9ee75 Fatima Groups United'),
(66038, 'https://ror.org/016p05413', 'es', 1, 'https://ror.org/016p05413 Ministerio de Salud PĆŗblica y Asistencia Social'),
(66039, 'https://ror.org/016qr5362', 'no_lang_code', 1, 'https://ror.org/016qr5362 Pentair (United Kingdom)'),
(66040, 'https://ror.org/016qtng06', 'en', 1, 'https://ror.org/016qtng06 Shangqiu Institute of Technology å•†äø˜å·„å­¦é™¢ē®€ä»‹'),
(66041, 'https://ror.org/016ta0z75', 'en', 1, 'https://ror.org/016ta0z75 Institute of Agroengineering and Environmental Problems of Agricultural Production Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ агроинженерных Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… проблем ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ произвоГства'),
(66042, 'https://ror.org/016v9qm56', 'no_lang_code', 1, 'https://ror.org/016v9qm56 GoerTek (China)'),
(66043, 'https://ror.org/016vktt70', 'no_lang_code', 1, 'https://ror.org/016vktt70 Giprotruboprovod, JSC ŠŠž Ā«Š“ŠøŠæŃ€Š¾Ń‚Ń€ŃƒŠ±Š¾ŠæŃ€Š¾Š²Š¾Š“Ā»'),
(66044, 'https://ror.org/016w6xc44', 'en', 1, 'https://ror.org/016w6xc44 Bhaktivedanta Hospital & Research Institute'),
(66045, 'https://ror.org/016wmdb91', 'en', 1, 'https://ror.org/016wmdb91 Korea Venture Business Association ė²¤ģ²˜źø°ģ—…ķ˜‘ķšŒ'),
(66046, 'https://ror.org/016xf4y16', 'no_lang_code', 1, 'https://ror.org/016xf4y16 Dynamic Imaging (United Kingdom)'),
(66047, 'https://ror.org/01712vn60', 'en', 1, 'https://ror.org/01712vn60 Medical Device Information & Technology Assistance Center'),
(66048, 'https://ror.org/0172mzb45', 'en', 1, 'https://ror.org/0172mzb45 Wellcome Centre for Integrative Neuroimaging'),
(66049, 'https://ror.org/0175bfp64', 'en', 1, 'https://ror.org/0175bfp64 Ministria e Shƫndetƫsisƫ dhe Mbrojtjes Sociale Ministry of Health and Social Protection'),
(66050, 'https://ror.org/0176h5851', 'en', 1, 'https://ror.org/0176h5851 Midnapore Homeopathic Medical College and Hospital মেদিনীপুর ą¦¹ą§‹ą¦®ą¦æą¦“ą¦Ŗą§ą¦Æą¦¾ą¦„ą¦æą¦• মেঔিকেল ą¦•ą¦²ą§‡ą¦œ ą¦ą¦Øą§ą¦” হসপিটাল'),
(66051, 'https://ror.org/01793sb67', 'no_lang_code', 1, 'https://ror.org/01793sb67 Concern Granit-Electron (Russia) ŠšŠ¾Š½Ń†ŠµŃ€Š½ «Гранит-Электрон»'),
(66052, 'https://ror.org/0179kd988', 'no_lang_code', 1, 'https://ror.org/0179kd988 Nipigormash (Russia) ŠŠ˜ŠŸŠ˜Š“ŠžŠ ŠœŠŠØ'),
(66053, 'https://ror.org/0179kz909', 'en', 1, 'https://ror.org/0179kz909 Korea Internet e-Commerce Association ķ•œźµ­ģøķ„°ė„·ģ „ģžģƒź±°ėž˜ķ•™ķšŒ'),
(66054, 'https://ror.org/017cark40', 'en', 1, 'https://ror.org/017cark40 Hopi Cultural Center'),
(66055, 'https://ror.org/017h4eq96', 'en', 1, 'https://ror.org/017h4eq96 RG Stone Urology & Laparoscopy Hospital ą¤†ą¤°ą¤œą„€ ą¤øą„ą¤Ÿą„‹ą¤Ø ą¤Æą„‚ą¤°ą„‹ą¤²ą„‰ą¤œą„€ और ą¤²ą„ˆą¤Ŗą„ą¤°ą„‹ą¤øą„ą¤•ą„‹ą¤Ŗą„€ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(66056, 'https://ror.org/017hy4e72', 'en', 1, 'https://ror.org/017hy4e72 Crown Prosecution Service'),
(66057, 'https://ror.org/017j78t37', 'en', 1, 'https://ror.org/017j78t37 Korea-China Science & Technology Cooperation Center ķ•œģ¤‘ 과학 기술 ķ˜‘ė „ 센터'),
(66058, 'https://ror.org/017jvt967', 'en', 1, 'https://ror.org/017jvt967 Ministerul Sănătății, Muncii și Protecției Sociale Ministry of Health, Labour and Social Protection'),
(66059, 'https://ror.org/017k7p668', 'en', 1, 'https://ror.org/017k7p668 Institute of Public Affairs Instytut Spraw Publicznych'),
(66060, 'https://ror.org/017mwaf76', 'en', 1, 'https://ror.org/017mwaf76 British Water'),
(66061, 'https://ror.org/017mxs556', 'en', 1, 'https://ror.org/017mxs556 Buglife'),
(66062, 'https://ror.org/017swdm43', 'no_lang_code', 1, 'https://ror.org/017swdm43 Rosgeo (Russia) РосГео'),
(66063, 'https://ror.org/017sz1f45', 'en', 1, 'https://ror.org/017sz1f45 ICLEI - Local Governments for Sustainability Canada'),
(66064, 'https://ror.org/017veh155', 'en', 1, 'https://ror.org/017veh155 South China Robotics Innovative Research Institute å—åŽęœŗå™Øäŗŗåˆ›ę–°ē ”ē©¶é™¢'),
(66065, 'https://ror.org/017vypx03', 'no_lang_code', 1, 'https://ror.org/017vypx03 Qatar Biobank قطر ŲØŁŠŁˆŲØŁ†Łƒ'),
(66066, 'https://ror.org/017xc4380', 'no_lang_code', 1, 'https://ror.org/017xc4380 Alexander Dennis (United Kingdom)'),
(66067, 'https://ror.org/017xn7477', 'en', 1, 'https://ror.org/017xn7477 The Korean Rural Sociological Society ķ•œźµ­ė†ģ“Œģ‚¬ķšŒķ•™ķšŒ'),
(66068, 'https://ror.org/0181g3j87', 'no_lang_code', 1, 'https://ror.org/0181g3j87 Hybrid Air Vehicles (United Kingdom)'),
(66069, 'https://ror.org/0181x9z82', 'en', 1, 'https://ror.org/0181x9z82 National Agency for Technological Development'),
(66070, 'https://ror.org/01820fp17', 'en', 1, 'https://ror.org/01820fp17 Hong Kong Convention and Exhibition Centre é¦™ęøÆęœƒč­°å±•č¦½äø­åæƒ'),
(66071, 'https://ror.org/0182dgx25', 'en', 1, 'https://ror.org/0182dgx25 Woolf Institute'),
(66072, 'https://ror.org/0184n6078', 'en', 1, 'https://ror.org/0184n6078 Central Scientific Research Radio Engineering Institute named after Academician A.I. Berg Š¦ŠŠ˜Š Š¢Š˜ им. aкаГемика А.И.Берга'),
(66073, 'https://ror.org/0184neg38', 'no_lang_code', 1, 'https://ror.org/0184neg38 Vita Actives (Ireland)'),
(66074, 'https://ror.org/01859cw58', 'en', 1, 'https://ror.org/01859cw58 All-Russian Research Institute of Civil Defense Š’ŃŠµŃŠ¾ŃŽŠ·Š½Š¾Š³Š¾ ŠŠ˜Š˜ гражГанской обороны'),
(66075, 'https://ror.org/0185gt671', 'en', 1, 'https://ror.org/0185gt671 The English Modern School'),
(66076, 'https://ror.org/0187f2d05', 'fr', 1, 'https://ror.org/0187f2d05 HƓpital PrivƩ Marseille Beauregard'),
(66077, 'https://ror.org/018caxa54', 'en', 1, 'https://ror.org/018caxa54 Embody Orthopaedic'),
(66078, 'https://ror.org/018dqxd30', 'en', 1, 'https://ror.org/018dqxd30 Korea Thinking and Expression Society ķ•œźµ­ 사고 ķ‘œķ˜„ ģ‚¬ķšŒ'),
(66079, 'https://ror.org/018dzfz24', 'no_lang_code', 1, 'https://ror.org/018dzfz24 KiWi Power (United Kingdom)'),
(66080, 'https://ror.org/018e02524', 'en', 1, 'https://ror.org/018e02524 Ministrstvo za Kmetijstvo, Gozdarstvo in Prehrano Ministry of Agriculture, Forestry and Food Security'),
(66081, 'https://ror.org/018e2qw40', 'en', 1, 'https://ror.org/018e2qw40 Chongqing Metrology Quality Inspection and Research Institute é‡åŗ†åø‚č®”é‡č“Øé‡ę£€ęµ‹ē ”ē©¶é™¢'),
(66082, 'https://ror.org/018ek4r92', 'no_lang_code', 1, 'https://ror.org/018ek4r92 Cosmact (China)'),
(66083, 'https://ror.org/018g3kw79', 'en', 1, 'https://ror.org/018g3kw79 The Marigold Foundation'),
(66084, 'https://ror.org/018g7an25', 'no_lang_code', 1, 'https://ror.org/018g7an25 Emart (South Korea) ģ“ė§ˆķŠø'),
(66085, 'https://ror.org/018hb5750', 'en', 1, 'https://ror.org/018hb5750 European Aviation Safety Agency'),
(66086, 'https://ror.org/018jxrz45', 'no_lang_code', 1, 'https://ror.org/018jxrz45 China Tianjin Tools Research Institute (China) 中国天擄巄具研究院'),
(66087, 'https://ror.org/018k0qv55', 'no_lang_code', 1, 'https://ror.org/018k0qv55 Sozvezdie (Russia) Воронежский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹'),
(66088, 'https://ror.org/018k88765', 'en', 1, 'https://ror.org/018k88765 Central Research Institute for the Pulp and Paper Industry Š¾Ń€Š³Š°Š½ŠøŠ·ŃƒŠµŃ‚ŃŃ Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń†ŠµŠ»Š»ŃŽŠ»Š¾Š·Š½Š¾-бу­мажной пр'),
(66089, 'https://ror.org/018mj3h16', 'en', 1, 'https://ror.org/018mj3h16 Seminary of the Southwest'),
(66090, 'https://ror.org/018mykm19', 'no_lang_code', 1, 'https://ror.org/018mykm19 Dinona (South Korea) ė‹¤ģ“ė…øė‚˜'),
(66091, 'https://ror.org/018x0pp27', 'en', 1, 'https://ror.org/018x0pp27 The Korean Urban Geographical Society ķ•œźµ­ė„ģ‹œģ§€ė¦¬ķ•™ķšŒ'),
(66092, 'https://ror.org/018y30a94', 'en', 1, 'https://ror.org/018y30a94 Dutch Fish Marketing Board Nederlands Visbureau'),
(66093, 'https://ror.org/019037b12', 'en', 1, 'https://ror.org/019037b12 The Korean Association for Local Government & Administration Studies ėŒ€ķ•œ 지방 행정 ķ•™ķšŒ'),
(66094, 'https://ror.org/0191mq174', 'no_lang_code', 1, 'https://ror.org/0191mq174 Hanlim Pharm (South Korea) ķ•œė¦¼ģ œģ•½'),
(66095, 'https://ror.org/0191ymw19', 'en', 1, 'https://ror.org/0191ymw19 Russian Scientific Research Neurosurgical Institute Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. проф. А.Š›. Поленова'),
(66096, 'https://ror.org/0192men59', 'en', 1, 'https://ror.org/0192men59 Changzhou Institute of Mechatronic Technology åøøå·žęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(66097, 'https://ror.org/0193t3v82', 'en', 1, 'https://ror.org/0193t3v82 EmployAbility Galway'),
(66098, 'https://ror.org/0195qz106', 'en', 1, 'https://ror.org/0195qz106 Korea Security Association ķ•œźµ­ ģ¦ź¶Œģ—… ķ˜‘ķšŒ'),
(66099, 'https://ror.org/0197qw696', 'no_lang_code', 1, 'https://ror.org/0197qw696 Netflix (United States)'),
(66100, 'https://ror.org/01989c577', 'no_lang_code', 1, 'https://ror.org/01989c577 EVRAZ (Russia)'),
(66101, 'https://ror.org/0198za406', 'en', 1, 'https://ror.org/0198za406 Palm Research Center Pusat Penelitian Kelapa Sawit'),
(66102, 'https://ror.org/0199ey615', 'no_lang_code', 1, 'https://ror.org/0199ey615 Truking (China)'),
(66103, 'https://ror.org/0199vce98', 'en', 1, 'https://ror.org/0199vce98 Korean Society for Teaching English Literature ķ•œźµ­ģ˜ėÆøė¬øķ•™źµģœ”ķ•™ķšŒ'),
(66104, 'https://ror.org/0199wd076', 'en', 1, 'https://ror.org/0199wd076 Korean Library And Information Science Society ķ•œźµ­ ė„ģ„œź“€ 정볓 ķ•™ķšŒ'),
(66105, 'https://ror.org/019aqfx79', 'en', 1, 'https://ror.org/019aqfx79 The Japanese Culture Association of Korea ķ•œźµ­ģ¼ė³øė¬øķ™”ķ•™ķšŒ'),
(66106, 'https://ror.org/019h3d096', 'no_lang_code', 1, 'https://ror.org/019h3d096 Hua Hong Semiconductor (China) čÆč™¹åŠå°Žé«”'),
(66107, 'https://ror.org/019j1v294', 'en', 1, 'https://ror.org/019j1v294 "Š¤ŠŠŸŠ¦ "ŠŠ˜Š˜ приклаГной химии" FNPC Research Institute of Applied Chemistry'),
(66108, 'https://ror.org/019jryw76', 'no_lang_code', 1, 'https://ror.org/019jryw76 Prexton Therapeutics (Switzerland)'),
(66109, 'https://ror.org/019k9ma82', 'en', 1, 'https://ror.org/019k9ma82 Hunan Research Academy of Environmental Sciences ę¹–å—ēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶é™¢'),
(66110, 'https://ror.org/019rn2x79', 'en', 1, 'https://ror.org/019rn2x79 Kansas Board of Pharmacy'),
(66111, 'https://ror.org/019taje90', 'en', 1, 'https://ror.org/019taje90 Institute of Technology of Metals Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š˜ ŠœŠ•Š¢ŠŠ›Š›ŠžŠ’'),
(66112, 'https://ror.org/019w5wj36', 'no_lang_code', 1, 'https://ror.org/019w5wj36 (주)ģ—ģ–“ė ˆģø Airrane (South Korea)'),
(66113, 'https://ror.org/019xwzn44', 'no_lang_code', 1, 'https://ror.org/019xwzn44 Great Wall Motors (China) é•æåŸŽę±½č½¦'),
(66114, 'https://ror.org/019yg2621', 'en', 1, 'https://ror.org/019yg2621 Lady Tata Memorial Trust'),
(66115, 'https://ror.org/01a00zk92', 'en', 1, 'https://ror.org/01a00zk92 Jeju Tourism University ģ œģ£¼ź“€ź“‘ėŒ€ķ•™źµ'),
(66116, 'https://ror.org/01a19sv16', 'en', 1, 'https://ror.org/01a19sv16 Korean Social Science Data Center ķ•œźµ­ģ‚¬ķšŒź³¼ķ•™ė°ģ“ķ„°ģ„¼ķ„°'),
(66117, 'https://ror.org/01a1ft290', 'en', 1, 'https://ror.org/01a1ft290 Institute of Industry Technology Guangzhou å¹æå·žäø­å›½ē§‘å­¦é™¢å·„äøšęŠ€ęœÆē ”ē©¶é™¢'),
(66118, 'https://ror.org/01a1w0r26', 'en', 1, 'https://ror.org/01a1w0r26 Jiangsu Provincial Academy of Traditional Chinese Medicine ę±Ÿč‹ēœäø­åŒ»čÆē ”ē©¶é™¢'),
(66119, 'https://ror.org/01a3x3w60', 'en', 1, 'https://ror.org/01a3x3w60 Scientific and Practical Center of the National Academy of Sciences of Belarus on Animal Husbandry РУП Ā«ŠŠ°ŃƒŃ‡Š½Š¾-практический центр ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø по Š¶ŠøŠ²Š¾Ń‚Š½Š¾Š²Š¾Š“ŃŃ‚Š²ŃƒĀ»'),
(66120, 'https://ror.org/01aa0sx14', 'no_lang_code', 1, 'https://ror.org/01aa0sx14 Parc Technologique du QuƩbec MƩtropolitain QuƩbec Metro High Tech Park (Canada)'),
(66121, 'https://ror.org/01aaarj75', 'no_lang_code', 1, 'https://ror.org/01aaarj75 Baboro'),
(66122, 'https://ror.org/01abfdk81', 'en', 1, 'https://ror.org/01abfdk81 Korean Society for Biology Education'),
(66123, 'https://ror.org/01aew1m62', 'en', 1, 'https://ror.org/01aew1m62 Jiangsu Vocational Institute of Commerce ę±Ÿč‹ē»č“øčŒäøšęŠ€ęœÆå­¦é™¢'),
(66124, 'https://ror.org/01af2ae87', 'no_lang_code', 1, 'https://ror.org/01af2ae87 Innopage (China)'),
(66125, 'https://ror.org/01agawy76', 'no_lang_code', 1, 'https://ror.org/01agawy76 Beth Mardutho'),
(66126, 'https://ror.org/01ahgf011', 'en', 1, 'https://ror.org/01ahgf011 Energy Systems Catapult'),
(66127, 'https://ror.org/01ajch036', 'no_lang_code', 1, 'https://ror.org/01ajch036 Irgiredmet (Russia) Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Грагоценных Šø реГких металлов Šø алмазов'),
(66128, 'https://ror.org/01ak5f834', 'en', 1, 'https://ror.org/01ak5f834 Derbyshire County Council'),
(66129, 'https://ror.org/01akqkg08', 'no_lang_code', 1, 'https://ror.org/01akqkg08 BrainWaveBank (United Kingdom)'),
(66130, 'https://ror.org/01am91k72', 'en', 1, 'https://ror.org/01am91k72 Prospex Institute'),
(66131, 'https://ror.org/01anfr786', 'en', 1, 'https://ror.org/01anfr786 International Area Studies Society źµ­ģ œģ§€ģ—­ķ•™ķšŒ'),
(66132, 'https://ror.org/01ankx725', 'en', 1, 'https://ror.org/01ankx725 Shanghai Electric Apparatus Research Institute äøŠęµ·ē”µå™Øē§‘å­¦ē ”ē©¶ę‰€'),
(66133, 'https://ror.org/01apnjb23', 'no_lang_code', 1, 'https://ror.org/01apnjb23 Recipharm (Sweden)'),
(66134, 'https://ror.org/01asjpz33', 'en', 1, 'https://ror.org/01asjpz33 Friends of the National Libraries'),
(66135, 'https://ror.org/01aw03h30', 'en', 1, 'https://ror.org/01aw03h30 MItoCanada'),
(66136, 'https://ror.org/01ayka222', 'en', 1, 'https://ror.org/01ayka222 Korea Children''s Rights Society ķ•œźµ­ģ•„ė™ź¶Œė¦¬ķ•™ķšŒ'),
(66137, 'https://ror.org/01az28z25', 'no_lang_code', 1, 'https://ror.org/01az28z25 FutureChem (South Korea) ėÆøėž˜ģ˜ 화학'),
(66138, 'https://ror.org/01b04pq84', 'no_lang_code', 1, 'https://ror.org/01b04pq84 BAM Nuttall (United Kingdom)'),
(66139, 'https://ror.org/01b0cs606', 'no_lang_code', 1, 'https://ror.org/01b0cs606 Unilever (China) č”åˆåˆ©åŽ'),
(66140, 'https://ror.org/01b30ww12', 'en', 1, 'https://ror.org/01b30ww12 Korea Drug Research Association ėŒ€ķ•œ ė§ˆģ•½ 연구 ķ•™ķšŒ'),
(66141, 'https://ror.org/01b45e393', 'en', 1, 'https://ror.org/01b45e393 Samara Academy of State and Municipal Management Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Šø Š¼ŃƒŠ½ŠøŃ†ŠøŠæŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(66142, 'https://ror.org/01b4h2w02', 'en', 1, 'https://ror.org/01b4h2w02 Seoul Institute of the Arts ģ„œģšø 예술 ėŒ€ķ•™'),
(66143, 'https://ror.org/01b5g4110', 'en', 1, 'https://ror.org/01b5g4110 Yang Hospital 양병원'),
(66144, 'https://ror.org/01b5yxj44', 'no_lang_code', 1, 'https://ror.org/01b5yxj44 Jiangxi Institute of Agricultural Machinery (Company) ę±Ÿč„æå†œäøšęœŗę¢°ē ”ē©¶ę‰€'),
(66145, 'https://ror.org/01b7f0c49', 'no_lang_code', 1, 'https://ror.org/01b7f0c49 WCW Technology (China)'),
(66146, 'https://ror.org/01ba3f557', 'en', 1, 'https://ror.org/01ba3f557 Chinese Manufacturers'' Association of Hong Kong é¦™ęøÆäø­čÆå» å•†čÆåˆęœƒ'),
(66147, 'https://ror.org/01bac4y65', 'en', 1, 'https://ror.org/01bac4y65 Beijing Tianheng Pharmaceutical Research Institute åŒ—äŗ¬å¤©č””čÆē‰©ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(66148, 'https://ror.org/01bat0e72', 'no_lang_code', 1, 'https://ror.org/01bat0e72 Impact Solutions (United Kingdom)'),
(66149, 'https://ror.org/01bax9607', 'no_lang_code', 1, 'https://ror.org/01bax9607 Hypha Discovery (United Kingdom)'),
(66150, 'https://ror.org/01bctgj87', 'no_lang_code', 1, 'https://ror.org/01bctgj87 Hortonworks (United States)'),
(66151, 'https://ror.org/01ber0266', 'fr', 1, 'https://ror.org/01ber0266 Institut D’Eco-PĆ©dagogie'),
(66152, 'https://ror.org/01bf03r65', 'en', 1, 'https://ror.org/01bf03r65 Jiangsu Provincial Urban Planning and Design Institute ę±Ÿč‹ēœåŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢ęˆ'),
(66153, 'https://ror.org/01bffta28', 'en', 1, 'https://ror.org/01bffta28 Zhejiang Institute of Freshwater Fisheries ęµ™ę±Ÿēœę·”ę°“ę°“äŗ§ē ”ē©¶ę‰€'),
(66154, 'https://ror.org/01bg7hf93', 'no_lang_code', 1, 'https://ror.org/01bg7hf93 Anhui Huizhou Geological Safety Research Institute (China)'),
(66155, 'https://ror.org/01bgqbn96', 'en', 1, 'https://ror.org/01bgqbn96 Barbican Centre'),
(66156, 'https://ror.org/01bjkqp85', 'no_lang_code', 1, 'https://ror.org/01bjkqp85 Maxful (China)'),
(66157, 'https://ror.org/01bka6482', 'en', 1, 'https://ror.org/01bka6482 FOD Werkgelegenheid, Arbeid en Sociaal Overleg Federal Public Service Employment, Labour and Social Dialogue FƖD BeschƤftigung, Arbeit und Soziale Konzertierung SPF Emploi, Travail et Concertation sociale'),
(66158, 'https://ror.org/01bnchp17', 'no_lang_code', 1, 'https://ror.org/01bnchp17 Procter & Gamble (India)'),
(66159, 'https://ror.org/01bnkw221', 'no_lang_code', 1, 'https://ror.org/01bnkw221 Magnitogorsk Gipromez (Russia) ŠžŠŠž "ŠœŠŠ“ŠŠ˜Š¢ŠžŠ“ŠžŠ Š”ŠšŠ˜Š™ Š“Š˜ŠŸŠ ŠžŠœŠ•Š—"'),
(66160, 'https://ror.org/01bp6g914', 'en', 1, 'https://ror.org/01bp6g914 Suwon Research Institute ģˆ˜ģ› ģ‹œė¦½ ģ—°źµ¬ģ†Œ'),
(66161, 'https://ror.org/01bq0yy21', 'no_lang_code', 1, 'https://ror.org/01bq0yy21 RediSem (China)'),
(66162, 'https://ror.org/01bqq8340', 'no_lang_code', 1, 'https://ror.org/01bqq8340 Kunshan Govisionox Optoelectronic (China) ę˜†å±±å›½ę˜¾å…‰ē”µęœ‰é™å…¬åø'),
(66163, 'https://ror.org/01bs84e19', 'no_lang_code', 1, 'https://ror.org/01bs84e19 CCCC Highway Consultants (China) äø­äŗ¤å…¬č·Æč§„åˆ’č®¾č®”é™¢ęœ‰é™å…¬åø'),
(66164, 'https://ror.org/01bs8p952', 'no_lang_code', 1, 'https://ror.org/01bs8p952 Logifact (Poland) Systemy Logistyczne'),
(66165, 'https://ror.org/01bt4t203', 'no_lang_code', 1, 'https://ror.org/01bt4t203 Synergation (United Kingdom)'),
(66166, 'https://ror.org/01bwbfp70', 'en', 1, 'https://ror.org/01bwbfp70 Korean Society of Systematic Theology ķ•œźµ­ ģ‹ ķ•™ ėŒ€ķ•™ģ›'),
(66167, 'https://ror.org/01bx4e159', 'no_lang_code', 1, 'https://ror.org/01bx4e159 Shandong Xiehe University å±±äøœåå’Œå­¦é™¢'),
(66168, 'https://ror.org/01bxb0563', 'en', 1, 'https://ror.org/01bxb0563 Kyung Hee Cyber University ź²½ķ¬ģ‚¬ģ“ė²„ėŒ€ķ•™źµ/ę…¶ē†™ģ‚¬ģ“ė²„å¤§å­øę ”'),
(66169, 'https://ror.org/01bxc9g71', 'no_lang_code', 1, 'https://ror.org/01bxc9g71 (주)ģ§€ė‹ˆģŠ¤ JINIS Biopharmaceuticals (South Korea)'),
(66170, 'https://ror.org/01bxcf222', 'no_lang_code', 1, 'https://ror.org/01bxcf222 EurasTech (South Korea) ģœ ė¼ģŠ¤ķ…'),
(66171, 'https://ror.org/01bypwr52', 'no_lang_code', 1, 'https://ror.org/01bypwr52 Aekyung (South Korea) ģ• ź²½'),
(66172, 'https://ror.org/01bz76d25', 'no_lang_code', 1, 'https://ror.org/01bz76d25 NextGen Federal Systems (United States)'),
(66173, 'https://ror.org/01bzgqf33', 'en', 1, 'https://ror.org/01bzgqf33 Oifig na nOibreacha PoiblĆ­ The Office of Public Works'),
(66174, 'https://ror.org/01c0n4952', 'en', 1, 'https://ror.org/01c0n4952 Institute of Mining of the North after N.V.Chersky Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного Гела Девера после Š.Š’.Черского'),
(66175, 'https://ror.org/01c3bft48', 'no_lang_code', 1, 'https://ror.org/01c3bft48 MainStream Aquaculture (Australia)'),
(66176, 'https://ror.org/01c5bvd13', 'en', 1, 'https://ror.org/01c5bvd13 Dongguan South China Design and Innovation Institute äøœčŽžåŽå—č®¾č®”åˆ›ę–°ē ”ē©¶é™¢'),
(66177, 'https://ror.org/01c75js78', 'en', 1, 'https://ror.org/01c75js78 Military Academy of Radiation, Chemical and Biological Protection Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ раГиационной, химической Šø биологической защиты'),
(66178, 'https://ror.org/01c8w8x70', 'en', 1, 'https://ror.org/01c8w8x70 Tianjin North Garden Ecological Environmental Engineering Research Institute å¤©ę“„åŒ—å›­ē”Ÿę€ēŽÆå¢ƒå·„ēØ‹ē ”ē©¶ę‰€'),
(66179, 'https://ror.org/01c9d4e73', 'en', 1, 'https://ror.org/01c9d4e73 Mandalay University of Distance Education'),
(66180, 'https://ror.org/01ca0jg10', 'en', 1, 'https://ror.org/01ca0jg10 Krasnoyarsk Research Institute of Animal Husbandry ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ животновоГства'),
(66181, 'https://ror.org/01caasa64', 'en', 1, 'https://ror.org/01caasa64 Comhairle NĆ”isiĆŗnta na nƓg, National Youth Council of Ireland'),
(66182, 'https://ror.org/01cad8852', 'ga', 1, 'https://ror.org/01cad8852 FƔilte Ireland'),
(66183, 'https://ror.org/01cdkgk90', 'en', 1, 'https://ror.org/01cdkgk90 Churches’ Commission for Migrants in Europe'),
(66184, 'https://ror.org/01cg3ht11', 'en', 1, 'https://ror.org/01cg3ht11 Institutet fƶr Kvalitetsutveckling Swedish Institute for Quality'),
(66185, 'https://ror.org/01cg3n190', 'no_lang_code', 1, 'https://ror.org/01cg3n190 Inner Mongolia Electric Power Survey & Design Institute (China) å†…č’™å¤ē”µåŠ›å‹˜ęµ‹č®¾č®”é™¢'),
(66186, 'https://ror.org/01ch1s087', 'en', 1, 'https://ror.org/01ch1s087 Russian Research Institute of Problems of Land Reclamation Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем мелиорации земель'),
(66187, 'https://ror.org/01cj13d80', 'no_lang_code', 1, 'https://ror.org/01cj13d80 Frutarom (Netherlands)'),
(66188, 'https://ror.org/01cj5hx77', 'en', 1, 'https://ror.org/01cj5hx77 Atmiya University'),
(66189, 'https://ror.org/01cj7ev47', 'en', 1, 'https://ror.org/01cj7ev47 All-Russian Research Institute of Reclaimed Lands Всероссийский ŠŠ˜Š˜ мелиорированных земель'),
(66190, 'https://ror.org/01cjdx044', 'no_lang_code', 1, 'https://ror.org/01cjdx044 Johnson & Johnson (Singapore)'),
(66191, 'https://ror.org/01cjh3728', 'en', 1, 'https://ror.org/01cjh3728 Research Institute of Bakery Industry ŠŠ˜Š˜ хлебопекарной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(66192, 'https://ror.org/01cm9h109', 'en', 1, 'https://ror.org/01cm9h109 Disability Federation of Ireland'),
(66193, 'https://ror.org/01cnhdd85', 'en', 1, 'https://ror.org/01cnhdd85 Hong Kong Association of Registered Tour Co-ordinators é¦™ęøÆčØ»å†Šå°ŽéŠå”ęœƒ'),
(66194, 'https://ror.org/01cnxqz37', 'en', 1, 'https://ror.org/01cnxqz37 Jeddah Institute for Speech and Hearing Ł…Ų±ŁƒŲ² Ų¬ŲÆŲ© للنطق ŁˆŲ§Ł„Ų³Ł…Ų¹'),
(66195, 'https://ror.org/01cpeja57', 'no_lang_code', 1, 'https://ror.org/01cpeja57 Shenyang Aluminum & Magnesium Engineering & Research Institute (China) ę²‰é˜³é“é•č®¾č®”ē ”ē©¶é™¢'),
(66196, 'https://ror.org/01cqas505', 'en', 1, 'https://ror.org/01cqas505 Hong Kong General Chamber of Commerce'),
(66197, 'https://ror.org/01cqv3m94', 'no_lang_code', 1, 'https://ror.org/01cqv3m94 Indear (Argentina)'),
(66198, 'https://ror.org/01cscw292', 'en', 1, 'https://ror.org/01cscw292 The Korean Society for School Science ėŒ€ķ•œ 학교 ķ•™ķšŒ'),
(66199, 'https://ror.org/01ctr6v45', 'no_lang_code', 1, 'https://ror.org/01ctr6v45 Wincas Technology (China)'),
(66200, 'https://ror.org/01ctr9c93', 'en', 1, 'https://ror.org/01ctr9c93 European Science Communication Institute'),
(66201, 'https://ror.org/01ctszf41', 'no_lang_code', 1, 'https://ror.org/01ctszf41 United Machinery Technologies (Russia)'),
(66202, 'https://ror.org/01cv0qm48', 'en', 1, 'https://ror.org/01cv0qm48 Heilongjiang International University'),
(66203, 'https://ror.org/01cv6t012', 'no_lang_code', 1, 'https://ror.org/01cv6t012 Board of Innovation (Belgium)'),
(66204, 'https://ror.org/01cvj0j25', 'de', 1, 'https://ror.org/01cvj0j25 Ministerium des Innern und für Sport Rheinland-Pfalz'),
(66205, 'https://ror.org/01cxrh590', 'en', 1, 'https://ror.org/01cxrh590 South China National Centre of Metrology åŽå—å›½å®¶č®”é‡ęµ‹čÆ•äø­åæƒ'),
(66206, 'https://ror.org/01d070g46', 'en', 1, 'https://ror.org/01d070g46 Haringey Council'),
(66207, 'https://ror.org/01d0mcn71', 'en', 1, 'https://ror.org/01d0mcn71 Croft Additive Manufacturing'),
(66208, 'https://ror.org/01d41fy43', 'en', 1, 'https://ror.org/01d41fy43 International Society of Electrophysiology and Kinesiology'),
(66209, 'https://ror.org/01d4y8v03', 'en', 1, 'https://ror.org/01d4y8v03 Jiangsu Vocational Institute of Architectural Technology ę±Ÿč‹å»ŗē­‘čŒäøšęŠ€ęœÆå­¦é™¢'),
(66210, 'https://ror.org/01d550q37', 'en', 1, 'https://ror.org/01d550q37 Science World at Telus World of Science'),
(66211, 'https://ror.org/01d7fe160', 'no_lang_code', 1, 'https://ror.org/01d7fe160 Sixin (China)'),
(66212, 'https://ror.org/01d92aq70', 'no_lang_code', 1, 'https://ror.org/01d92aq70 InterDigital (United Kingdom)'),
(66213, 'https://ror.org/01dbbht76', 'en', 1, 'https://ror.org/01dbbht76 National Center for PTSD'),
(66214, 'https://ror.org/01dcb8p36', 'no_lang_code', 1, 'https://ror.org/01dcb8p36 Dai Han Pharm (South Korea) ėŒ€ķ•œģ•½ķ’ˆź³µģ—…ģ£¼ģ‹ķšŒģ‚¬'),
(66215, 'https://ror.org/01dcg9845', 'no_lang_code', 1, 'https://ror.org/01dcg9845 Janssen (Ireland)'),
(66216, 'https://ror.org/01de7qg49', 'en', 1, 'https://ror.org/01de7qg49 Cangzhou Normal University ę²§å·žåøˆčŒƒå­¦é™¢'),
(66217, 'https://ror.org/01dhvqg75', 'no_lang_code', 1, 'https://ror.org/01dhvqg75 Rostov-on-Don Anti-plague Institute Rospotrebnadzor Ростовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠæŃ€Š¾Ń‚ŠøŠ²Š¾Ń‡ŃƒŠ¼Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(66218, 'https://ror.org/01dk6as53', 'en', 1, 'https://ror.org/01dk6as53 Korea Tourism College ķ•œźµ­ź“€ź“‘ėŒ€ķ•™źµ'),
(66219, 'https://ror.org/01dkhme60', 'en', 1, 'https://ror.org/01dkhme60 First Research Institute of the Ministry of Public Security å…¬å®‰éƒØē¬¬äø€ē ”ē©¶ę‰€'),
(66220, 'https://ror.org/01dkjkq64', 'no_lang_code', 1, 'https://ror.org/01dkjkq64 Jingdong (China) 京东'),
(66221, 'https://ror.org/01dmaez27', 'en', 1, 'https://ror.org/01dmaez27 Hong Kong Institute of Vocational Education é¦™ęøÆå°ˆę„­ę•™č‚²å­øé™¢'),
(66222, 'https://ror.org/01dnmm403', 'no_lang_code', 1, 'https://ror.org/01dnmm403 Ural Mining and Metallurgical Company (Russia) ŠžŃ‚ŠŗŃ€Ń‹Ń‚Š¾Šµ акционерное общество Ā«Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŗŠ¾Š¼ŠæŠ°Š½ŠøŃ'),
(66223, 'https://ror.org/01dpe0a21', 'no_lang_code', 1, 'https://ror.org/01dpe0a21 Cell Biotech (South Korea) ģŽŒė°”ģ“ģ˜¤ķ…'),
(66224, 'https://ror.org/01dqs7f31', 'en', 1, 'https://ror.org/01dqs7f31 Guangdong Research Institute of Water Resources and Hydropower å¹æäøœēœę°“åˆ©ę°“ē”µē§‘å­¦ē ”ē©¶é™¢'),
(66225, 'https://ror.org/01dr6h017', 'no_lang_code', 1, 'https://ror.org/01dr6h017 Pega (United States)'),
(66226, 'https://ror.org/01drdtp87', 'en', 1, 'https://ror.org/01drdtp87 Shree Krishna Hospital ąŖ¶ą«ąŖ°ą«€ ąŖ•ą«ƒąŖ·ą«ąŖ£ ąŖ¹ą«‹ąŖøą«ąŖŖąŖæąŖŸąŖ²'),
(66227, 'https://ror.org/01dsawn50', 'en', 1, 'https://ror.org/01dsawn50 RƩseau de recherche en santƩ des populations du QuƩbec The Quebec Population Health Research Network'),
(66228, 'https://ror.org/01dshmj81', 'no_lang_code', 1, 'https://ror.org/01dshmj81 New Universe Environmental Group (China) ę–°å®‡åœ‹éš›åÆ¦ę„­(集團)ęœ‰é™å…¬åø'),
(66229, 'https://ror.org/01dt03b80', 'no_lang_code', 1, 'https://ror.org/01dt03b80 Unilever (Japan)'),
(66230, 'https://ror.org/01dt3rt55', 'en', 1, 'https://ror.org/01dt3rt55 Wuzhou Food and Drug Administration ę¢§å·žåø‚é£Ÿå“čÆå“ē›‘ē£ē®”ē†å±€'),
(66231, 'https://ror.org/01dwpz371', 'en', 1, 'https://ror.org/01dwpz371 All-Russian Scientific Research Institute of Grain and Products of its Processing Всероссийский ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Зерна Šø ŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š² его переработки'),
(66232, 'https://ror.org/01dx9ap19', 'no_lang_code', 1, 'https://ror.org/01dx9ap19 Gameone Holdings (China) ę™ŗå‚²ęŽ§č‚”ęœ‰é™å…¬åø'),
(66233, 'https://ror.org/01dxqkr82', 'en', 1, 'https://ror.org/01dxqkr82 Institute of Biophysics and Biomedical Engineering Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по биофизика Šø биомеГицинско инженерство'),
(66234, 'https://ror.org/01dynsx63', 'en', 1, 'https://ror.org/01dynsx63 Xi''an Micromotor Research Institute č„æå®‰å¾®ē”µęœŗē ”ē©¶ę‰€'),
(66235, 'https://ror.org/01dz1nw58', 'no_lang_code', 1, 'https://ror.org/01dz1nw58 Bercanan (Poland)'),
(66236, 'https://ror.org/01dznag44', 'en', 1, 'https://ror.org/01dznag44 Office of Washington Secretary of State'),
(66237, 'https://ror.org/01dzptr68', 'no_lang_code', 1, 'https://ror.org/01dzptr68 Four Directions (China)'),
(66238, 'https://ror.org/01e0e7p47', 'en', 1, 'https://ror.org/01e0e7p47 Positive Living North'),
(66239, 'https://ror.org/01e0s4559', 'en', 1, 'https://ror.org/01e0s4559 Ministry of Labour and Social Protection Republic of Belarus ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Ń‚Ń€ŃƒŠ“Š° Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ защиты Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(66240, 'https://ror.org/01e2dpk50', 'no_lang_code', 1, 'https://ror.org/01e2dpk50 Yuntianhua Group (China)'),
(66241, 'https://ror.org/01e6c7y89', 'en', 1, 'https://ror.org/01e6c7y89 Carlow County Council Comhairle Contae Cheatharlach'),
(66242, 'https://ror.org/01e7kxc55', 'en', 1, 'https://ror.org/01e7kxc55 Children''s Scientific and Clinical Center for Infectious Diseases of the Federal Medical and Biological Agency Детский Š½Š°ŃƒŃ‡Š½Š¾-клинический центр инфекционных заболеваний Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(66243, 'https://ror.org/01e80cj48', 'no_lang_code', 1, 'https://ror.org/01e80cj48 Gulf Drilling International (Qatar)'),
(66244, 'https://ror.org/01e8kt239', 'no_lang_code', 1, 'https://ror.org/01e8kt239 International Transport Information Systems (China)'),
(66245, 'https://ror.org/01e8kye07', 'en', 1, 'https://ror.org/01e8kye07 All-Russian Scientific Research Institute of Hydraulic Engineering and Melioration named after A.N. Kostyakov Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГротехники Šø мелиорации имени А. Š. ŠšŠ¾ŃŃ‚ŃŠŗŠ¾Š²Š°'),
(66246, 'https://ror.org/01eakvg09', 'en', 1, 'https://ror.org/01eakvg09 Global English Teachers Association źø€ė”œė²Œ ģ˜ģ–“ 교사 ķ˜‘ķšŒ'),
(66247, 'https://ror.org/01eb0bw82', 'no_lang_code', 1, 'https://ror.org/01eb0bw82 Sahaj Hospital सहज ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(66248, 'https://ror.org/01eb2ss72', 'no_lang_code', 1, 'https://ror.org/01eb2ss72 Stallergenes Greer (Australia)'),
(66249, 'https://ror.org/01ebjwm20', 'no_lang_code', 1, 'https://ror.org/01ebjwm20 Springer Nature (Netherlands)'),
(66250, 'https://ror.org/01eevfr57', 'no_lang_code', 1, 'https://ror.org/01eevfr57 Hankook Tire (South Korea) ķ•œźµ­ķƒ€ģ“ģ–“'),
(66251, 'https://ror.org/01ef25a22', 'no_lang_code', 1, 'https://ror.org/01ef25a22 Shenwu Technology Group Corp (China) ē„žé›¾ē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(66252, 'https://ror.org/01egb4878', 'no_lang_code', 1, 'https://ror.org/01egb4878 Beijing Enterprises (China)'),
(66253, 'https://ror.org/01ehetm20', 'no_lang_code', 1, 'https://ror.org/01ehetm20 Dongwoodang (South Korea) ė™ģš°ė‹¹ģ œģ•½'),
(66254, 'https://ror.org/01ejgx395', 'no_lang_code', 1, 'https://ror.org/01ejgx395 GL PharmTech (South Korea)'),
(66255, 'https://ror.org/01ejspd55', 'no_lang_code', 1, 'https://ror.org/01ejspd55 Ranheim Paper & Board (Norway)'),
(66256, 'https://ror.org/01em1bx15', 'no_lang_code', 1, 'https://ror.org/01em1bx15 Inston (United States)'),
(66257, 'https://ror.org/01em57323', 'en', 1, 'https://ror.org/01em57323 Guizhou Province Chemical Industry Research Institute'),
(66258, 'https://ror.org/01en03795', 'no_lang_code', 1, 'https://ror.org/01en03795 Amasic (China)'),
(66259, 'https://ror.org/01ep52038', 'no_lang_code', 1, 'https://ror.org/01ep52038 L&K Biomed (South Korea)'),
(66260, 'https://ror.org/01eps0y04', 'en', 1, 'https://ror.org/01eps0y04 The Association of Korean Cultural and Historical Geographers ķ•œźµ­ė¬øķ™”ģ—­ģ‚¬ģ§€ė¦¬ķ•™ķšŒ'),
(66261, 'https://ror.org/01eq53z97', 'no_lang_code', 1, 'https://ror.org/01eq53z97 Chemoxy (United Kingdom)'),
(66262, 'https://ror.org/01eqqdz04', 'en', 1, 'https://ror.org/01eqqdz04 Korea Association of Health Promotion ķ•œźµ­ź±“ź°•ź“€ė¦¬ķ˜‘ķšŒ'),
(66263, 'https://ror.org/01eskr961', 'en', 1, 'https://ror.org/01eskr961 ESI - Post Graduate Institute of Medical Science and Research'),
(66264, 'https://ror.org/01et03p29', 'en', 1, 'https://ror.org/01et03p29 Kerry Education and Training Board'),
(66265, 'https://ror.org/01etg0b86', 'en', 1, 'https://ror.org/01etg0b86 Korean Association For Housing Policy Studies ķ•œźµ­ģ£¼ķƒķ•™ķšŒ'),
(66266, 'https://ror.org/01ett0051', 'no_lang_code', 1, 'https://ror.org/01ett0051 Research Institute of Precision Instruments (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ прецизионных приборов'),
(66267, 'https://ror.org/01ew95g57', 'no_lang_code', 1, 'https://ror.org/01ew95g57 Vir Biotechnology (Switzerland)'),
(66268, 'https://ror.org/01ezqqb21', 'no_lang_code', 1, 'https://ror.org/01ezqqb21 Akilah Hospital مستؓفى عاقله'),
(66269, 'https://ror.org/01f0eaw14', 'en', 1, 'https://ror.org/01f0eaw14 The Global Alliance for LGBT Education'),
(66270, 'https://ror.org/01f1xfq83', 'en', 1, 'https://ror.org/01f1xfq83 Tompkins Conservation'),
(66271, 'https://ror.org/01f2k3r93', 'no_lang_code', 1, 'https://ror.org/01f2k3r93 Shenzhen Yihua Computer (China) ę·±åœ³ę€”åŒ–ē”µč„‘č‚”ä»½ęœ‰é™å…¬åø'),
(66272, 'https://ror.org/01f390f45', 'no_lang_code', 1, 'https://ror.org/01f390f45 Guangxi Yuchai Machinery Group (China) ēŽ‰ęŸ“é›†å›¢'),
(66273, 'https://ror.org/01f3b0g09', 'en', 1, 'https://ror.org/01f3b0g09 Technological Institute of Castilla y León'),
(66274, 'https://ror.org/01f4ntp03', 'en', 1, 'https://ror.org/01f4ntp03 Material and Industrial Technology Research Institute Beijing ę–°ęę–™äøŽäŗ§äøšęŠ€ęœÆåŒ—äŗ¬ē ”ē©¶é™¢'),
(66275, 'https://ror.org/01f573w53', 'en', 1, 'https://ror.org/01f573w53 Korean Cognitive and Biological Psychology Society ķ•œźµ­ģøģ§€ė°ģƒė¬¼ģ‹¬ė¦¬ķ•™ķšŒ'),
(66276, 'https://ror.org/01f6j5k03', 'en', 1, 'https://ror.org/01f6j5k03 Harbin Liushun Electric Automation Design Institute å“ˆå°”ę»Øåø‚å…­é”ŗē”µę°”č‡ŖåŠØåŒ–č®¾č®”ē ”ē©¶ę‰€'),
(66277, 'https://ror.org/01f74qr97', 'en', 1, 'https://ror.org/01f74qr97 Shree O.H. Nazar Ayurved College Shree Swami Atmanand Saraswati Ayurved Hospital'),
(66278, 'https://ror.org/01f7zsh14', 'en', 1, 'https://ror.org/01f7zsh14 Korean Theatre Education Association ķ•œźµ­ģ—°ź·¹źµģœ”ķ•™ķšŒ'),
(66279, 'https://ror.org/01f83ya71', 'en', 1, 'https://ror.org/01f83ya71 Royal Society for Asian Affairs'),
(66280, 'https://ror.org/01f85g151', 'en', 1, 'https://ror.org/01f85g151 Creative Wick'),
(66281, 'https://ror.org/01f91hj24', 'no_lang_code', 1, 'https://ror.org/01f91hj24 Xinjiang Machinery Research Institute (China) ę–°ē–†ęœŗę¢°ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(66282, 'https://ror.org/01fbkw579', 'no_lang_code', 1, 'https://ror.org/01fbkw579 Wuhan Institute of Geo-Environmental Industry and Technology (China) ę­¦ę±‰åœ°č“ØēŽÆå¢ƒå·„ēØ‹ęŠ€ęœÆē ”ē©¶ę‰€'),
(66283, 'https://ror.org/01fc2st08', 'no_lang_code', 1, 'https://ror.org/01fc2st08 Clear Water Revival (United Kingdom)'),
(66284, 'https://ror.org/01fex4x77', 'no_lang_code', 1, 'https://ror.org/01fex4x77 VeriFone Systems (United States)'),
(66285, 'https://ror.org/01fgam068', 'en', 1, 'https://ror.org/01fgam068 Rediscovery Centre'),
(66286, 'https://ror.org/01fgay757', 'en', 1, 'https://ror.org/01fgay757 Guyana Forestry Commission'),
(66287, 'https://ror.org/01fh2dk93', 'en', 1, 'https://ror.org/01fh2dk93 Montana Department of Justice'),
(66288, 'https://ror.org/01fhjwb62', 'en', 1, 'https://ror.org/01fhjwb62 Chinese General Chamber of Commerce é¦™ęøÆäø­čÆēø½å•†ęœƒ'),
(66289, 'https://ror.org/01fmwwp26', 'en', 1, 'https://ror.org/01fmwwp26 China Special Equipment Inspection and Research Institute äø­å›½ē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(66290, 'https://ror.org/01fp3t562', 'en', 1, 'https://ror.org/01fp3t562 Korea Digital Hospital Export Agency ķ•œźµ­ė””ģ§€ķ„øė³‘ģ›ģˆ˜ģ¶œģ”°ķ•©'),
(66291, 'https://ror.org/01fqnwx40', 'en', 1, 'https://ror.org/01fqnwx40 M.V. Hospital and Research Centre'),
(66292, 'https://ror.org/01fsnxq70', 'no_lang_code', 1, 'https://ror.org/01fsnxq70 Elite Antennas (United Kingdom)'),
(66293, 'https://ror.org/01fst1562', 'no_lang_code', 1, 'https://ror.org/01fst1562 Sceptica Scientific (United Kingdom)');
INSERT INTO `rors` VALUES
(66294, 'https://ror.org/01ftfrf48', 'no_lang_code', 1, 'https://ror.org/01ftfrf48 Gidropribor ГиГроприбор'),
(66295, 'https://ror.org/01fvvak72', 'en', 1, 'https://ror.org/01fvvak72 Russian Engineering Academy Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŠøŠ½Š¶ŠµŠ½ŠµŃ€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(66296, 'https://ror.org/01fygw054', 'en', 1, 'https://ror.org/01fygw054 Lifetime Lab'),
(66297, 'https://ror.org/01fz81h65', 'en', 1, 'https://ror.org/01fz81h65 Dagestan Scientific Center of the Russian Academy of Sciences Дагестанский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук'),
(66298, 'https://ror.org/01g08q774', 'no_lang_code', 1, 'https://ror.org/01g08q774 SAIC-GM-Wuling (China) äøŠę±½é€šē”Øäŗ”č±ę±½č½¦č‚”ä»½ęœ‰é™å…¬åø'),
(66299, 'https://ror.org/01g09cg68', 'en', 1, 'https://ror.org/01g09cg68 Health Physics Society'),
(66300, 'https://ror.org/01g140v14', 'en', 1, 'https://ror.org/01g140v14 China Spallation Neutron Source 中国散裂中子源巄程'),
(66301, 'https://ror.org/01g34pr56', 'en', 1, 'https://ror.org/01g34pr56 Inclusion Ireland'),
(66302, 'https://ror.org/01g37sx43', 'en', 1, 'https://ror.org/01g37sx43 The Korea Society for Chinese Studies ķ•œźµ­ģ¤‘źµ­ķ•™ķšŒ'),
(66303, 'https://ror.org/01g3jyj45', 'no_lang_code', 1, 'https://ror.org/01g3jyj45 Fermion Government Services (United States)'),
(66304, 'https://ror.org/01g4ecg56', 'no_lang_code', 1, 'https://ror.org/01g4ecg56 Sooriya Hospital ą®šąÆ‚ą®°ą®æą®Æą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(66305, 'https://ror.org/01g4vtd10', 'en', 1, 'https://ror.org/01g4vtd10 Keimyung College University 계명 문화 ėŒ€ķ•™'),
(66306, 'https://ror.org/01g5j9962', 'en', 1, 'https://ror.org/01g5j9962 Stoughton Youth Commission'),
(66307, 'https://ror.org/01g81xd76', 'en', 1, 'https://ror.org/01g81xd76 Ministry of Culture and Communications MinistĆØre de la Culture et des Communications'),
(66308, 'https://ror.org/01g8e7412', 'es', 1, 'https://ror.org/01g8e7412 Instituto Interamericano de Cooperación para la Agricultura'),
(66309, 'https://ror.org/01gacnq13', 'no_lang_code', 1, 'https://ror.org/01gacnq13 Quest Diagnostics (United Kingdom)'),
(66310, 'https://ror.org/01gav0153', 'en', 1, 'https://ror.org/01gav0153 Bristol Green Capital Partnership'),
(66311, 'https://ror.org/01ghdd484', 'no_lang_code', 1, 'https://ror.org/01ghdd484 Ervia (Ireland)'),
(66312, 'https://ror.org/01gjt0k11', 'no_lang_code', 1, 'https://ror.org/01gjt0k11 Sina (China) ę–°ęµŖ'),
(66313, 'https://ror.org/01gkngr03', 'no_lang_code', 1, 'https://ror.org/01gkngr03 ATG UV Technology (United Kingdom)'),
(66314, 'https://ror.org/01gn3jg46', 'en', 1, 'https://ror.org/01gn3jg46 Sussex Wildlife Trust'),
(66315, 'https://ror.org/01gnxgt70', 'no_lang_code', 1, 'https://ror.org/01gnxgt70 Cimpress (Netherlands)'),
(66316, 'https://ror.org/01gpc7s59', 'es', 1, 'https://ror.org/01gpc7s59 Instituto Colombiano de Medicina Tropical'),
(66317, 'https://ror.org/01gpd6e26', 'no_lang_code', 1, 'https://ror.org/01gpd6e26 Calix (United States)'),
(66318, 'https://ror.org/01gpm9f56', 'no_lang_code', 1, 'https://ror.org/01gpm9f56 Jiangsu Provincial Water Survey & Design Institute (China) ę±Ÿč‹ēœę°“åˆ©å‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(66319, 'https://ror.org/01gwe4v50', 'en', 1, 'https://ror.org/01gwe4v50 International Association for the Exchange of Students for Technical Experience ŠœŠµŃ“ŃƒŠ½Š°Ń€Š¾Š“Š½Š° Š°ŃŠ¾Ń†ŠøŃ˜Š°Ń†ŠøŃ˜Š° за размена на ŃŃ‚ŃƒŠ“ŠµŠ½Ń‚Šø за техничко ŠøŃŠŗŃƒŃŃ‚во'),
(66320, 'https://ror.org/01gwm2d88', 'en', 1, 'https://ror.org/01gwm2d88 Korean Society For Curriculum Studies ķ•œźµ­źµģœ”ź³¼ģ •ķ•™ķšŒ'),
(66321, 'https://ror.org/01gxrv819', 'no_lang_code', 1, 'https://ror.org/01gxrv819 Vornia (Ireland)'),
(66322, 'https://ror.org/01gy1fv44', 'en', 1, 'https://ror.org/01gy1fv44 Qinhuangdao Audio-Visual Machinery Research Institute ē§¦ēš‡å²›č§†å¬ęœŗę¢°ē ”ē©¶ę‰€'),
(66323, 'https://ror.org/01gybxp05', 'no_lang_code', 1, 'https://ror.org/01gybxp05 Emteq (United Kingdom)'),
(66324, 'https://ror.org/01h027j09', 'en', 1, 'https://ror.org/01h027j09 Shenzhen Academy of Robotics äø“ę·±åœ³åø‚ę™ŗčƒ½ęœŗå™Øäŗŗē ”ē©¶é™¢'),
(66325, 'https://ror.org/01h1t5f62', 'en', 1, 'https://ror.org/01h1t5f62 Bulgarian Small and Medium Enterprises Promotion Agency'),
(66326, 'https://ror.org/01h2zyy62', 'pt', 1, 'https://ror.org/01h2zyy62 Serviços Partilhados do Ministério da Saúde'),
(66327, 'https://ror.org/01h3gvb78', 'en', 1, 'https://ror.org/01h3gvb78 Korean Society for History of Education ķ•œźµ­źµģœ”ģ‚¬ķ•™ķšŒ'),
(66328, 'https://ror.org/01h3wfb62', 'en', 1, 'https://ror.org/01h3wfb62 Trade and Industry Department å·„ę„­č²æę˜“ē½²'),
(66329, 'https://ror.org/01h527v58', 'en', 1, 'https://ror.org/01h527v58 GBS Leiden'),
(66330, 'https://ror.org/01h6y6f73', 'en', 1, 'https://ror.org/01h6y6f73 The Korean Society of Contemporary European Studies ķ•œźµ­ģœ ėŸ½ķ•™ķšŒ'),
(66331, 'https://ror.org/01h8pyj37', 'en', 1, 'https://ror.org/01h8pyj37 International Commission on Radiological Protection'),
(66332, 'https://ror.org/01h8s5550', 'en', 1, 'https://ror.org/01h8s5550 Korea Intelligent Information Systems Society ķ•œźµ­ ģ§€ėŠ„ 정볓 ģ‹œģŠ¤ķ…œ ķ•™ķšŒ'),
(66333, 'https://ror.org/01h9v1373', 'no_lang_code', 1, 'https://ror.org/01h9v1373 Language Science (South Korea) 언얓과학'),
(66334, 'https://ror.org/01hahzp71', 'en', 1, 'https://ror.org/01hahzp71 Shanxi Academy of Forestry å±±č„æēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(66335, 'https://ror.org/01hb90y08', 'en', 1, 'https://ror.org/01hb90y08 Institutul Teologic Protestant Protestant Theological Institute of Cluj-Napoca ProtestÔns Teológiai Intézet'),
(66336, 'https://ror.org/01hbaf921', 'en', 1, 'https://ror.org/01hbaf921 Hong Kong Medical and Healthcare Device Industries Association é¦™ęøÆé†«ē™‚åŠäæå„å™Øęč”Œę„­å”ęœƒ'),
(66337, 'https://ror.org/01hbex578', 'no_lang_code', 1, 'https://ror.org/01hbex578 Biosolution (South Korea) ė°”ģ“ģ˜¤ģ†”ė£Øģ…˜'),
(66338, 'https://ror.org/01hf44t80', 'en', 1, 'https://ror.org/01hf44t80 Guangzhou Institute of Applied Software Technology, Chinese Academy of Sciences å¹æå·žäø­å›½ē§‘å­¦é™¢č½Æä»¶åŗ”ē”ØęŠ€ęœÆē ”ē©¶ę‰€'),
(66339, 'https://ror.org/01hf8qc75', 'en', 1, 'https://ror.org/01hf8qc75 Hubei Provincial Water Resources and Hydropower Planning Survey and Design Institute ę¹–åŒ—ēœę°“åˆ©ę°“ē”µč§„åˆ’å‹˜ęµ‹č®¾č®”é™¢'),
(66340, 'https://ror.org/01hg18f75', 'no_lang_code', 1, 'https://ror.org/01hg18f75 SynAgile (United States)'),
(66341, 'https://ror.org/01hg8wj19', 'en', 1, 'https://ror.org/01hg8wj19 Migration Institute of Australia'),
(66342, 'https://ror.org/01hh1mx02', 'no_lang_code', 1, 'https://ror.org/01hh1mx02 Beijing Guodaotong Highway Design & Research Institute (China) åŒ—äŗ¬å›½é“é€šå…¬č·Æč®¾č®”ē ”ē©¶é™¢'),
(66343, 'https://ror.org/01hjn9g45', 'en', 1, 'https://ror.org/01hjn9g45 The Busan Metropolitan Simin Municipal Library ė¶€ģ‚°ģ‹œė¦½ģ‹œėÆ¼ė„ģ„œź“€'),
(66344, 'https://ror.org/01hm87p08', 'no_lang_code', 1, 'https://ror.org/01hm87p08 Stop. Watch Television (Ireland)'),
(66345, 'https://ror.org/01hp1ex72', 'en', 1, 'https://ror.org/01hp1ex72 Korean Association For Local Government Studies ķ•œźµ­ģ§€ė°©ģžģ¹˜ķ•™ķšŒėŠ”'),
(66346, 'https://ror.org/01hpfvd96', 'no_lang_code', 1, 'https://ror.org/01hpfvd96 Unilever (Australia)'),
(66347, 'https://ror.org/01hprsv49', 'en', 1, 'https://ror.org/01hprsv49 Joint Stock Company National Research Institute Electron Ā«Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «Электрон»'),
(66348, 'https://ror.org/01hqxj822', 'en', 1, 'https://ror.org/01hqxj822 Cybercommunication Academic Society'),
(66349, 'https://ror.org/01hrwg648', 'en', 1, 'https://ror.org/01hrwg648 Avon Wildlife Trust'),
(66350, 'https://ror.org/01hs54b18', 'en', 1, 'https://ror.org/01hs54b18 Centre Casa'),
(66351, 'https://ror.org/01hvq8642', 'en', 1, 'https://ror.org/01hvq8642 Coalition for Research in Women''s Health'),
(66352, 'https://ror.org/01hy56d90', 'no_lang_code', 1, 'https://ror.org/01hy56d90 Marafeq (Qatar)'),
(66353, 'https://ror.org/01hy8fk80', 'en', 1, 'https://ror.org/01hy8fk80 Guizhou Electromechanical Research and Design Institute'),
(66354, 'https://ror.org/01hyggk46', 'no_lang_code', 1, 'https://ror.org/01hyggk46 PSP Security (China)'),
(66355, 'https://ror.org/01j0j2q95', 'en', 1, 'https://ror.org/01j0j2q95 The Society of Korean Language and Literature źµ­ģ–“źµ­ė¬øķ•™ķšŒ'),
(66356, 'https://ror.org/01j0jk666', 'no_lang_code', 1, 'https://ror.org/01j0jk666 ResMed (United States)'),
(66357, 'https://ror.org/01j1w6v73', 'no_lang_code', 1, 'https://ror.org/01j1w6v73 Allscripts (United States)'),
(66358, 'https://ror.org/01j2rpy06', 'en', 1, 'https://ror.org/01j2rpy06 Ajou Motor College 아주 ģžė™ģ°Ø ėŒ€ķ•™'),
(66359, 'https://ror.org/01j3dap11', 'en', 1, 'https://ror.org/01j3dap11 Cardiff West Community High School'),
(66360, 'https://ror.org/01j3dkq17', 'fr', 1, 'https://ror.org/01j3dkq17 Institut de Recherches en IngƩnierie des Surfaces'),
(66361, 'https://ror.org/01j49yd81', 'en', 1, 'https://ror.org/01j49yd81 Korean Academy of Science and Technology ķ•œźµ­ź³¼ķ•™źø°ģˆ ķ•œė¦¼ģ›'),
(66362, 'https://ror.org/01j5rta38', 'es', 1, 'https://ror.org/01j5rta38 Ministerio de Salud'),
(66363, 'https://ror.org/01j6bp769', 'en', 1, 'https://ror.org/01j6bp769 European Network of Building Research Institutes'),
(66364, 'https://ror.org/01j6drw72', 'en', 1, 'https://ror.org/01j6drw72 Institute of Science and Technology for Ceramics Istituto di Scienza e Tecnologia dei Materiali Ceramici'),
(66365, 'https://ror.org/01j71j305', 'en', 1, 'https://ror.org/01j71j305 Tianjin TDBH Naval Architecture & Ocean Engineering Academy å¤©ę“„å¤©å¤§ę»Øęµ·čˆ¹čˆ¶äøŽęµ·ę“‹å·„ēØ‹ē ”ē©¶é™¢'),
(66366, 'https://ror.org/01j82jb67', 'en', 1, 'https://ror.org/01j82jb67 Frontline Dance'),
(66367, 'https://ror.org/01j8bzd71', 'no_lang_code', 1, 'https://ror.org/01j8bzd71 Cambridge Microelectronics (United Kingdom)'),
(66368, 'https://ror.org/01j8cv720', 'no_lang_code', 1, 'https://ror.org/01j8cv720 Changzhou Academy of Intelli-Ag Equipment (China) åøøå·žę™ŗčƒ½åŒ–č®¾å¤‡ē ”ē©¶é™¢'),
(66369, 'https://ror.org/01j8s5338', 'no_lang_code', 1, 'https://ror.org/01j8s5338 Ilsung Pharmaceuticals (South Korea) ģ¼ģ„± ģ œģ•½'),
(66370, 'https://ror.org/01j90hd50', 'en', 1, 'https://ror.org/01j90hd50 Korea Institute of Youth Facility and Environment'),
(66371, 'https://ror.org/01j9g7106', 'no_lang_code', 1, 'https://ror.org/01j9g7106 Korea Innotech (South Korea) ź³ ė ¤ģ“ė…øķ…Œķ¬'),
(66372, 'https://ror.org/01jabqj59', 'en', 1, 'https://ror.org/01jabqj59 State Specialized Design Institute Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ специализированный проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(66373, 'https://ror.org/01jah5c57', 'no_lang_code', 1, 'https://ror.org/01jah5c57 ATK Holding Group (China)'),
(66374, 'https://ror.org/01jajf911', 'en', 1, 'https://ror.org/01jajf911 Energy Research Partnership'),
(66375, 'https://ror.org/01jb3sz14', 'en', 1, 'https://ror.org/01jb3sz14 Zhejiang Institute of Special Equipment Inspection ęµ™ę±Ÿēœē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(66376, 'https://ror.org/01jcqgb80', 'no_lang_code', 1, 'https://ror.org/01jcqgb80 Leshi Internet Information and Technology (China) 乐视网'),
(66377, 'https://ror.org/01jpa7r59', 'en', 1, 'https://ror.org/01jpa7r59 West Africa Civil Society Institute'),
(66378, 'https://ror.org/01jq9hd27', 'sv', 1, 'https://ror.org/01jq9hd27 National Agency for Special Needs Education and Schools Specialpedagogiska Skolmyndigheten'),
(66379, 'https://ror.org/01jqa8y96', 'no_lang_code', 1, 'https://ror.org/01jqa8y96 Qatar Electricity & Water (Qatar)'),
(66380, 'https://ror.org/01jr0rj76', 'en', 1, 'https://ror.org/01jr0rj76 Texas Department of Public Safety'),
(66381, 'https://ror.org/01jsfh075', 'en', 1, 'https://ror.org/01jsfh075 Irish Refugee Council'),
(66382, 'https://ror.org/01jsj3b27', 'no_lang_code', 1, 'https://ror.org/01jsj3b27 Suren Systems (China) č„æę¦®ē§‘ęŠ€ęœ‰é™å…¬åø'),
(66383, 'https://ror.org/01jt38m64', 'en', 1, 'https://ror.org/01jt38m64 Institute for Energetics and Interphases Istituto per Energetica e Interfasi'),
(66384, 'https://ror.org/01jwjz832', 'en', 1, 'https://ror.org/01jwjz832 Index Medical College, Hospital & Research Centre ą¤¦ą„‡ą¤µą„€ ą¤…ą¤¹ą¤æą¤²ą„ą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤øą¤Øą¤æą¤• ą¤•ą¤¾ą¤°ą„ą¤Æą¤¾ą¤²ą¤Æ, आर ą¤ą¤Ø ą¤Ÿą„€'),
(66385, 'https://ror.org/01jwwa840', 'en', 1, 'https://ror.org/01jwwa840 Korea Soongsil Cyber ​​University ķ•œźµ­ģ‚¬ģ“ė²„ėŒ€ķ•™źµ ģ¢…ė”œģŗ ķ¼ģŠ¤'),
(66386, 'https://ror.org/01jxmb930', 'en', 1, 'https://ror.org/01jxmb930 Retina Care Specialists'),
(66387, 'https://ror.org/01jz1e142', 'en', 1, 'https://ror.org/01jz1e142 Northwest Institute of Eco-Environment and Resources äø­å›½ē§‘å­¦é™¢č„æåŒ—ē”Ÿę€ēŽÆå¢ƒčµ„ęŗē ”ē©¶é™¢'),
(66388, 'https://ror.org/01jzaby46', 'en', 1, 'https://ror.org/01jzaby46 Chongqing Three Gorges Academy of Agricultural Sciences é‡åŗ†äø‰å³”å†œäøšē§‘å­¦é™¢'),
(66389, 'https://ror.org/01k184b43', 'no_lang_code', 1, 'https://ror.org/01k184b43 Onex (Canada)'),
(66390, 'https://ror.org/01k218104', 'en', 1, 'https://ror.org/01k218104 FjƔrmƔla- og efnahagsrƔưuneytiư Ministry of Finance and Economic Affairs'),
(66391, 'https://ror.org/01k4fsz02', 'no_lang_code', 1, 'https://ror.org/01k4fsz02 Brainomix (United Kingdom)'),
(66392, 'https://ror.org/01k722e67', 'en', 1, 'https://ror.org/01k722e67 The Korean Society for Literature and Religion ķ•œźµ­ė¬øķ•™ź³¼ģ¢…źµķ•™ķšŒ'),
(66393, 'https://ror.org/01k814a06', 'en', 1, 'https://ror.org/01k814a06 Coconut Industry Board'),
(66394, 'https://ror.org/01kam1p04', 'en', 1, 'https://ror.org/01kam1p04 All-Russian Research Institute for Fire Protection Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ «Всероссийский орГена ā€žŠ—Š½Š°Šŗ ŠŸŠ¾Ń‡Ń‘Ń‚Š°ā€œ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ противопожарной обороны»'),
(66395, 'https://ror.org/01kapv839', 'en', 1, 'https://ror.org/01kapv839 Korea Women''s Associations United ķ•œźµ­ 여성 단첓 ģ—°ķ•©'),
(66396, 'https://ror.org/01kbeda11', 'en', 1, 'https://ror.org/01kbeda11 Rostov-on-Don Research Institute of Radio Communications Š ŠžŠ”Š¢ŠžŠ’Š”ŠšŠ˜Š™-ŠŠ-Š”ŠžŠŠ£ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š ŠŠ”Š˜ŠžŠ”Š’ŠÆŠ—Š˜'),
(66397, 'https://ror.org/01kbrc263', 'no_lang_code', 1, 'https://ror.org/01kbrc263 FUTRESynthesis (Poland)'),
(66398, 'https://ror.org/01ke7y772', 'no_lang_code', 1, 'https://ror.org/01ke7y772 KO VNIIMETMASH Колпинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(66399, 'https://ror.org/01kegt086', 'en', 1, 'https://ror.org/01kegt086 Korea Contents Association'),
(66400, 'https://ror.org/01kfqj356', 'en', 1, 'https://ror.org/01kfqj356 Tula University Тульский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(66401, 'https://ror.org/01kfzv427', 'no_lang_code', 1, 'https://ror.org/01kfzv427 Green Running (United Kingdom)'),
(66402, 'https://ror.org/01kh6gx25', 'en', 1, 'https://ror.org/01kh6gx25 Sustainable Europe Research Institute'),
(66403, 'https://ror.org/01khbav88', 'no_lang_code', 1, 'https://ror.org/01khbav88 Getech (United Kingdom)'),
(66404, 'https://ror.org/01kp5ce13', 'en', 1, 'https://ror.org/01kp5ce13 Korean Sociological Association ķ•œźµ­ģ‚¬ķšŒķ•™ķšŒ'),
(66405, 'https://ror.org/01kpcqp30', 'en', 1, 'https://ror.org/01kpcqp30 Men’s Development Network'),
(66406, 'https://ror.org/01kstph72', 'no_lang_code', 1, 'https://ror.org/01kstph72 Emotech (United Kingdom)'),
(66407, 'https://ror.org/01kvmmx47', 'no_lang_code', 1, 'https://ror.org/01kvmmx47 Han Kook Shin Yak Pharmaceutical (South Korea)'),
(66408, 'https://ror.org/01m2ydy56', 'no_lang_code', 1, 'https://ror.org/01m2ydy56 Altaba (United States)'),
(66409, 'https://ror.org/01m3vxn57', 'en', 1, 'https://ror.org/01m3vxn57 York Minster'),
(66410, 'https://ror.org/01m52ey02', 'en', 1, 'https://ror.org/01m52ey02 Science Communication Institute'),
(66411, 'https://ror.org/01m64ks43', 'en', 1, 'https://ror.org/01m64ks43 The Association of East Asian Ancient Studies ź³ ėŒ€ ģ•„ģ‹œģ•„ ķ•™ķšŒ'),
(66412, 'https://ror.org/01m708z37', 'no_lang_code', 1, 'https://ror.org/01m708z37 Bio-Marine Ingredients (Ireland)'),
(66413, 'https://ror.org/01m9skf34', 'en', 1, 'https://ror.org/01m9skf34 Central Research Institute "Course" Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "ŠšŃƒŃ€Ń"'),
(66414, 'https://ror.org/01mbh6s37', 'no_lang_code', 1, 'https://ror.org/01mbh6s37 PricewaterhouseCoopers (South Korea)'),
(66415, 'https://ror.org/01mcf1q28', 'en', 1, 'https://ror.org/01mcf1q28 Durham Cathedral'),
(66416, 'https://ror.org/01mdgds23', 'en', 1, 'https://ror.org/01mdgds23 Sichuan Machinery Research and Design Institute å››å·ēœęœŗę¢°ē ”ē©¶č®¾č®”é™¢ęœŗ'),
(66417, 'https://ror.org/01me33t36', 'en', 1, 'https://ror.org/01me33t36 Korean Society of East-West Comparative Literature ķ•œźµ­ė™ģ„œė¹„źµė¬øķ•™ķ•™ķšŒ'),
(66418, 'https://ror.org/01mf87c05', 'de', 1, 'https://ror.org/01mf87c05 ParitƤtisches Bildungswerk Bundesverband'),
(66419, 'https://ror.org/01mh12h63', 'en', 1, 'https://ror.org/01mh12h63 Gwangyang Health College ź“‘ģ–‘ė³“ź±“ėŒ€ķ•™'),
(66420, 'https://ror.org/01mj0je13', 'no_lang_code', 1, 'https://ror.org/01mj0je13 Shafallah Center Ł…Ų±ŁƒŲ² الؓفلح'),
(66421, 'https://ror.org/01mj1ap13', 'en', 1, 'https://ror.org/01mj1ap13 Xinjiang Industry Technical College ę–°ē–†č½»å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(66422, 'https://ror.org/01mkcqs35', 'en', 1, 'https://ror.org/01mkcqs35 Public Policy and Management Institute VieŔosios politikos ir vadybos institutas'),
(66423, 'https://ror.org/01mp4p403', 'en', 1, 'https://ror.org/01mp4p403 2-Spirited'),
(66424, 'https://ror.org/01mp7gg57', 'en', 1, 'https://ror.org/01mp7gg57 All-Russian Scientific Research Institute of Irrigation and Agricultural Water Supply "Raduga" Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Ń€Š¾ŃˆŠµŠ½ŠøŃ Šø ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š²Š¾Š“Š¾ŃŠ½Š°Š±Š¶ŠµŠ½ŠøŃ «РаГуга»'),
(66425, 'https://ror.org/01mrfz775', 'en', 1, 'https://ror.org/01mrfz775 Jiaxing Hengchuang Electric Design and Research Institute å˜‰å…“ę’åˆ›ē”µåŠ›č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åøę˜Žē»˜åˆ†å…¬'),
(66426, 'https://ror.org/01ms42351', 'no_lang_code', 1, 'https://ror.org/01ms42351 Leoni (Germany)'),
(66427, 'https://ror.org/01mymm084', 'en', 1, 'https://ror.org/01mymm084 Technological Educational Institute of Western Greece Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Δυτικής ΕλλάΓας'),
(66428, 'https://ror.org/01mzy1p82', 'no_lang_code', 1, 'https://ror.org/01mzy1p82 DaVinci Laboratories (United States)'),
(66429, 'https://ror.org/01n2ba875', 'no_lang_code', 1, 'https://ror.org/01n2ba875 Tinno (China) ę·±åœ³å¤©ē‘ē§»åŠØęŠ€ęœÆęœ‰é™å…¬åø'),
(66430, 'https://ror.org/01n4hda81', 'no_lang_code', 1, 'https://ror.org/01n4hda81 Shandong Huanneng Design Institute (China) å±±äøœēŽÆčƒ½č®¾č®”é™¢'),
(66431, 'https://ror.org/01n6k5w94', 'en', 1, 'https://ror.org/01n6k5w94 BEAM Society'),
(66432, 'https://ror.org/01n78v775', 'de', 1, 'https://ror.org/01n78v775 Bundesverband Kalksandsteinindustrie'),
(66433, 'https://ror.org/01n7byd59', 'en', 1, 'https://ror.org/01n7byd59 Chungkang College of Cultural Industries ģ²­ź°•ė¬øķ™”ģ‚°ģ—…ėŒ€ķ•™źµ'),
(66434, 'https://ror.org/01n94r461', 'en', 1, 'https://ror.org/01n94r461 Shandong Academy of Forestry å±±äøœēœęž—äøšē§‘å­¦é™¢'),
(66435, 'https://ror.org/01ncm8z56', 'no_lang_code', 1, 'https://ror.org/01ncm8z56 CET Opto (China)'),
(66436, 'https://ror.org/01ne6ew22', 'no_lang_code', 1, 'https://ror.org/01ne6ew22 Xi''an Electric Furnace Research Institute (China) č„æå®‰ē”µē‚‰ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(66437, 'https://ror.org/01nesd228', 'en', 1, 'https://ror.org/01nesd228 Russian Research Institute of the Sugar Industry Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сахарной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(66438, 'https://ror.org/01nfb0t34', 'no_lang_code', 1, 'https://ror.org/01nfb0t34 PAREXEL International (South Korea)'),
(66439, 'https://ror.org/01nfbwg92', 'en', 1, 'https://ror.org/01nfbwg92 Northern Ireland Statistics and Research Agency'),
(66440, 'https://ror.org/01nfhmh79', 'no_lang_code', 1, 'https://ror.org/01nfhmh79 E I L (China)'),
(66441, 'https://ror.org/01ngg1n70', 'en', 1, 'https://ror.org/01ngg1n70 Korean Academy of International Business ķ•œźµ­źµ­ģ œź²½ģ˜ķ•™ķšŒ'),
(66442, 'https://ror.org/01nhsch47', 'no_lang_code', 1, 'https://ror.org/01nhsch47 Tianneng Power (China)'),
(66443, 'https://ror.org/01njzma31', 'en', 1, 'https://ror.org/01njzma31 Mokpo Science University ėŖ©ķ¬ź³¼ķ•™ėŒ€ķ•™źµ'),
(66444, 'https://ror.org/01nm2rj64', 'fr', 1, 'https://ror.org/01nm2rj64 Agence pour la CoopƩration Scientifique Afrique Luxembourg'),
(66445, 'https://ror.org/01nmnpy52', 'en', 1, 'https://ror.org/01nmnpy52 Ministry for Tourism'),
(66446, 'https://ror.org/01nnzv715', 'no_lang_code', 1, 'https://ror.org/01nnzv715 Shutterfly (United States)'),
(66447, 'https://ror.org/01npvq928', 'en', 1, 'https://ror.org/01npvq928 Korea International Trade Research Institute ķ•œźµ­ 묓역 연구원'),
(66448, 'https://ror.org/01nq34e56', 'pt', 1, 'https://ror.org/01nq34e56 Instituto Nacional de Investigação Pesqueira'),
(66449, 'https://ror.org/01nqeer97', 'en', 1, 'https://ror.org/01nqeer97 Anhui Special Equipment Inspection Institute'),
(66450, 'https://ror.org/01nsk1909', 'no_lang_code', 1, 'https://ror.org/01nsk1909 Medifron (South Korea)'),
(66451, 'https://ror.org/01nt4yq55', 'no_lang_code', 1, 'https://ror.org/01nt4yq55 Ekopoz (Poland)'),
(66452, 'https://ror.org/01nvxm192', 'en', 1, 'https://ror.org/01nvxm192 Association Canadienne de Soins Palliatifs Canadian Hospice Palliative Care Association'),
(66453, 'https://ror.org/01nx55p33', 'no_lang_code', 1, 'https://ror.org/01nx55p33 Temenos Group (Switzerland)'),
(66454, 'https://ror.org/01nxbsb84', 'en', 1, 'https://ror.org/01nxbsb84 Ottawa Baffin Nunavut Health Services'),
(66455, 'https://ror.org/01ny34961', 'no_lang_code', 1, 'https://ror.org/01ny34961 China Huarong Energy (China) äø­å›½åŽčžčƒ½ęŗ'),
(66456, 'https://ror.org/01nyd3m56', 'en', 1, 'https://ror.org/01nyd3m56 The Korean Regional Development Association ķ•œźµ­ģ§€ģ—­ź°œė°œķ•™ķšŒ'),
(66457, 'https://ror.org/01nzkak21', 'no_lang_code', 1, 'https://ror.org/01nzkak21 Baby2Body (United Kingdom)'),
(66458, 'https://ror.org/01nzt4j48', 'no_lang_code', 1, 'https://ror.org/01nzt4j48 SGIDI Engineering Consulting (China) äøŠęµ·å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢'),
(66459, 'https://ror.org/01p0mtg35', 'en', 1, 'https://ror.org/01p0mtg35 The Society of Korean Practical Arts Education Research ķ•œźµ­ģ‹¤ź³¼źµģœ”ģ—°źµ¬ķ•™ķšŒ'),
(66460, 'https://ror.org/01p73k589', 'en', 1, 'https://ror.org/01p73k589 Ministry of Labour, Employment and Social Solidarity MinistĆØre du Travail, de l’Emploi et de la SolidaritĆ© Sociale'),
(66461, 'https://ror.org/01p85sc95', 'no_lang_code', 1, 'https://ror.org/01p85sc95 PJSC "VNIIPThimnefteapparatury" (Russia)'),
(66462, 'https://ror.org/01p93xj71', 'en', 1, 'https://ror.org/01p93xj71 Danish Board of District Heating'),
(66463, 'https://ror.org/01p9kdj82', 'no_lang_code', 1, 'https://ror.org/01p9kdj82 Sir Takhtasinhji General Hospital ąŖøąŖ° ąŖ¤ąŖ–ą«ąŖ¤ąŖøąŖæąŖ‚ąŖ¹ąŖœą«€ જનરલ ąŖ¹ą«‹ąŖøą«ąŖŖąŖæąŖŸąŖ²'),
(66464, 'https://ror.org/01pcjfy81', 'en', 1, 'https://ror.org/01pcjfy81 Savantas Policy Institute'),
(66465, 'https://ror.org/01pd36221', 'en', 1, 'https://ror.org/01pd36221 Police Department Policijos departamentas'),
(66466, 'https://ror.org/01pdtb768', 'en', 1, 'https://ror.org/01pdtb768 Health Protection Agency'),
(66467, 'https://ror.org/01pe06664', 'no_lang_code', 1, 'https://ror.org/01pe06664 Hunan Yonker Investment Group (China) ę°øęø…ēŽÆå¢ƒē§‘ęŠ€äŗ§äøšé›†å›¢ęœ‰é™å…¬åø'),
(66468, 'https://ror.org/01pgkb997', 'no_lang_code', 1, 'https://ror.org/01pgkb997 KG Chemical (South Korea)'),
(66469, 'https://ror.org/01pgq0p78', 'en', 1, 'https://ror.org/01pgq0p78 Korea Fisheries Resources Agency ķ•œźµ­ ģˆ˜ģ‚° ģžģ› 공사'),
(66470, 'https://ror.org/01pgtee18', 'en', 1, 'https://ror.org/01pgtee18 Active Norfolk'),
(66471, 'https://ror.org/01phtp995', 'en', 1, 'https://ror.org/01phtp995 Institut royal du Patrimoine artistique Koninklijk Instituut voor het Kunstpatrimonium Königliches Institut für Denkmalschutz Royal Institute for Cultural Heritage'),
(66472, 'https://ror.org/01pjqz574', 'no_lang_code', 1, 'https://ror.org/01pjqz574 Zibo Qixiang Petrochemical Industry Group (China) ę·„åšåÆē„„ēŸ³åŒ–å·„äøšé›†å›¢'),
(66473, 'https://ror.org/01pk2qg94', 'en', 1, 'https://ror.org/01pk2qg94 The Daedong Philosophical Association ėŒ€ė™ ģ² ķ•™ķšŒ'),
(66474, 'https://ror.org/01pk4vy23', 'no_lang_code', 1, 'https://ror.org/01pk4vy23 Novanta (United Kingdom)'),
(66475, 'https://ror.org/01pmqys24', 'en', 1, 'https://ror.org/01pmqys24 Tianjin Textile Machinery and Equipment Research Institute å¤©ę“„ēŗŗē»‡ęœŗę¢°å™Øęē ”ē©¶ę‰€'),
(66476, 'https://ror.org/01ppbq689', 'no_lang_code', 1, 'https://ror.org/01ppbq689 WEBAGENCY E-Commerce (Germany)'),
(66477, 'https://ror.org/01ppnms58', 'en', 1, 'https://ror.org/01ppnms58 Korea Medical Devices Industry Association ķ•œźµ­ģ˜ė£Œźø°źø°ģ‚°ģ—…ķ˜‘ķšŒ'),
(66478, 'https://ror.org/01pr5e984', 'en', 1, 'https://ror.org/01pr5e984 New York State Coalition Against Domestic Violence'),
(66479, 'https://ror.org/01prhbv23', 'en', 1, 'https://ror.org/01prhbv23 Korean Society for Eco Early Childhood Education ķ•œźµ­ģƒķƒœģœ ģ•„źµģœ”ķ•™ķšŒ'),
(66480, 'https://ror.org/01prjex52', 'en', 1, 'https://ror.org/01prjex52 Andong Science University ģ•ˆė™ź³¼ķ•™ėŒ€ķ•™źµ'),
(66481, 'https://ror.org/01pv18527', 'en', 1, 'https://ror.org/01pv18527 The Association of North-east Asian Cultures ė™ė¶ģ•„ģ‹œģ•„ė¬øķ™”ķ•™ķšŒ'),
(66482, 'https://ror.org/01pv9g403', 'en', 1, 'https://ror.org/01pv9g403 Nacionaline mokejimo agentura National Paying Agency'),
(66483, 'https://ror.org/01pva1129', 'bs', 1, 'https://ror.org/01pva1129 Ministarstvo Gospodarstva'),
(66484, 'https://ror.org/01pw44479', 'en', 1, 'https://ror.org/01pw44479 Shanghai Power Equipment Research Institute äøŠęµ·ē”µåŠ›č®¾å¤‡ē ”ē©¶é™¢'),
(66485, 'https://ror.org/01px69d78', 'en', 1, 'https://ror.org/01px69d78 The Research Institute for the Care of Older People'),
(66486, 'https://ror.org/01py2n540', 'no_lang_code', 1, 'https://ror.org/01py2n540 Guizhou Aerospace Power Science & Tech (China) č“µå·žčˆŖå¤©åŠØåŠ›ęŠ€ęœÆ'),
(66487, 'https://ror.org/01q447526', 'fr', 1, 'https://ror.org/01q447526 Observatoire RĆ©gional de la SantĆ© d’Alsace'),
(66488, 'https://ror.org/01q4pmw61', 'de', 1, 'https://ror.org/01q4pmw61 Bundesverband Glaukom-Selbsthilfe'),
(66489, 'https://ror.org/01q4rp502', 'en', 1, 'https://ror.org/01q4rp502 All-Russian Scientific Research Institute of Hydrocarbon Raw Materials Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠ³Š»ŠµŠ²Š¾Š“Š¾Ń€Š¾Š“Š½Š¾Š³Š¾ сырья'),
(66490, 'https://ror.org/01q53cr93', 'en', 1, 'https://ror.org/01q53cr93 New York City Arts in Education Roundtable'),
(66491, 'https://ror.org/01q6hrk40', 'en', 1, 'https://ror.org/01q6hrk40 Korean Association of Law Schools ķ•œźµ­ ė²•ėŒ€'),
(66492, 'https://ror.org/01q6skw70', 'no_lang_code', 1, 'https://ror.org/01q6skw70 Shantui (China) å±±ęŽØå·„ēØ‹ęœŗę¢°č‚”ä»½ęœ‰é™å…¬åø'),
(66493, 'https://ror.org/01q8vz920', 'en', 1, 'https://ror.org/01q8vz920 Stavropol Research Institute of Animal Production and Feed Production Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ ŠŠ˜Š˜ животновоГства Šø кормопроизвоГства'),
(66494, 'https://ror.org/01q8yy239', 'no_lang_code', 1, 'https://ror.org/01q8yy239 Manicon Technology (China)'),
(66495, 'https://ror.org/01qa6vq89', 'pl', 1, 'https://ror.org/01qa6vq89 Instytutu Melioracji i Użytków Zielonych'),
(66496, 'https://ror.org/01qb3ks33', 'no_lang_code', 1, 'https://ror.org/01qb3ks33 Bellrock Technology (United Kingdom)'),
(66497, 'https://ror.org/01qdggq75', 'cs', 1, 'https://ror.org/01qdggq75 Institut RestaurovĆ”nĆ­ a KonzervačnĆ­ch Technik'),
(66498, 'https://ror.org/01qe70573', 'en', 1, 'https://ror.org/01qe70573 Families and Work Institute'),
(66499, 'https://ror.org/01qf53178', 'no_lang_code', 1, 'https://ror.org/01qf53178 Jellybooks (United Kingdom)'),
(66500, 'https://ror.org/01qgwck47', 'en', 1, 'https://ror.org/01qgwck47 Green Alliance'),
(66501, 'https://ror.org/01qj7t912', 'en', 1, 'https://ror.org/01qj7t912 Polymer Research Institute ŠŠ˜Š˜ полимеров'),
(66502, 'https://ror.org/01qjhbg05', 'en', 1, 'https://ror.org/01qjhbg05 Guangzhou Railway Polytechnic å¹æå·žé“č·ÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(66503, 'https://ror.org/01qkhw706', 'no_lang_code', 1, 'https://ror.org/01qkhw706 Christian Dior (France)'),
(66504, 'https://ror.org/01qm74v44', 'no_lang_code', 1, 'https://ror.org/01qm74v44 BIOCAD (India)'),
(66505, 'https://ror.org/01qncxn10', 'en', 1, 'https://ror.org/01qncxn10 Television Research Institute ŠŠ˜Š˜ Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ'),
(66506, 'https://ror.org/01qr4nw81', 'en', 1, 'https://ror.org/01qr4nw81 Suzhou Nonferrous Metals Research Institute č‹å·žęœ‰č‰²é‡‘å±žē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(66507, 'https://ror.org/01qs6m282', 'no_lang_code', 1, 'https://ror.org/01qs6m282 Mergon (Ireland)'),
(66508, 'https://ror.org/01qtea582', 'no_lang_code', 1, 'https://ror.org/01qtea582 PAREXEL International (India)'),
(66509, 'https://ror.org/01qv4nh82', 'no_lang_code', 1, 'https://ror.org/01qv4nh82 Cartap (United Kingdom)'),
(66510, 'https://ror.org/01qvc7p18', 'en', 1, 'https://ror.org/01qvc7p18 The Japanese Language Literature Association of Korea ķ•œźµ­ģ¼ė³øģ–“ė¬øķ•™ķšŒ'),
(66511, 'https://ror.org/01qvrd474', 'en', 1, 'https://ror.org/01qvrd474 Institutul National de Cercetare-Dezvoltare pentru Metale si Resurse Radioactive Research and Development National Institute for Metals and Radioactive Resources'),
(66512, 'https://ror.org/01qw6et69', 'no_lang_code', 1, 'https://ror.org/01qw6et69 Xingx (China) ę˜Ÿę˜Ÿé›†å›¢ęœ‰é™å…¬åø'),
(66513, 'https://ror.org/01qxec746', 'no_lang_code', 1, 'https://ror.org/01qxec746 Renault (Russia) Рено'),
(66514, 'https://ror.org/01qybkd90', 'en', 1, 'https://ror.org/01qybkd90 Sri Venkateshwaraa Medical College Hospital and Research Centre, ą®øąÆą®°ąÆ€ ą®µąÆ†ą®™ąÆą®•ą®ŸąÆ‡ą®øąÆą®µą®°ą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®ÆąÆą®µąÆ ą®®ąÆˆą®Æą®®ąÆ'),
(66515, 'https://ror.org/01qypmk37', 'no_lang_code', 1, 'https://ror.org/01qypmk37 Abbott (Chile)'),
(66516, 'https://ror.org/01qyrv456', 'no_lang_code', 1, 'https://ror.org/01qyrv456 Mettler-Toledo (United States)'),
(66517, 'https://ror.org/01r0fjf28', 'en', 1, 'https://ror.org/01r0fjf28 European Institute of Education and Social Policy'),
(66518, 'https://ror.org/01r15jk41', 'no_lang_code', 1, 'https://ror.org/01r15jk41 Biogelx (United Kingdom)'),
(66519, 'https://ror.org/01r1k7826', 'en', 1, 'https://ror.org/01r1k7826 New Jersey Sports and Exposition Authority'),
(66520, 'https://ror.org/01r4zz038', 'no_lang_code', 1, 'https://ror.org/01r4zz038 Thomson Reuters (Canada)'),
(66521, 'https://ror.org/01r5tp796', 'en', 1, 'https://ror.org/01r5tp796 Research Institute of Measuring Equipment ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŠ·Š¼ŠµŃ€ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники'),
(66522, 'https://ror.org/01r779962', 'en', 1, 'https://ror.org/01r779962 International Association of Research in Income and Wealth'),
(66523, 'https://ror.org/01r7kys31', 'en', 1, 'https://ror.org/01r7kys31 Anhui DingHeng Manufacturing Industry Technology Research Institute å®‰å¾½é¼Žę’åˆ¶é€ ęŠ€ęœÆē ”ē©¶é™¢'),
(66524, 'https://ror.org/01r9x4p54', 'en', 1, 'https://ror.org/01r9x4p54 Bashkir Scientific Research Institute of Petroleum Refining ŠŠž "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефтехимпереработки"'),
(66525, 'https://ror.org/01ra2eg48', 'en', 1, 'https://ror.org/01ra2eg48 The Korea Society for Children''s Media ķ•œźµ­ģ–“ė¦°ģ“ėÆøė””ģ–“ķ•™ķšŒģ— ģžˆģŠµė‹ˆė‹¤'),
(66526, 'https://ror.org/01rakqm07', 'en', 1, 'https://ror.org/01rakqm07 General Directorate of Highways Türkiye Cumhuriyeti Karayolları Genel Müdürlüğü'),
(66527, 'https://ror.org/01rb6gh35', 'en', 1, 'https://ror.org/01rb6gh35 China Railway Fifth Survey and Design Institute Group äø­å›½é“č·Æē¬¬äŗ”å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢é›†å›¢'),
(66528, 'https://ror.org/01rbsaw22', 'en', 1, 'https://ror.org/01rbsaw22 Acoustic Institute named after NN Andreev ŠŠŗŃƒŃŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š. Š. АнГреева'),
(66529, 'https://ror.org/01rc3sz57', 'en', 1, 'https://ror.org/01rc3sz57 European Shippers'' Council'),
(66530, 'https://ror.org/01rcev019', 'no_lang_code', 1, 'https://ror.org/01rcev019 Hybrid Instruments (United Kingdom)'),
(66531, 'https://ror.org/01re5t323', 'en', 1, 'https://ror.org/01re5t323 Perry Maddocks Trollope Lawyers'),
(66532, 'https://ror.org/01reqdm50', 'en', 1, 'https://ror.org/01reqdm50 Institute of Electron Physics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ електронної фізики Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ физики'),
(66533, 'https://ror.org/01rfqch15', 'en', 1, 'https://ror.org/01rfqch15 The Indonesian Institute, Center for Public Policy Research'),
(66534, 'https://ror.org/01rg40y89', 'en', 1, 'https://ror.org/01rg40y89 Institute of Condensed Matter Chemistry and Technologies for Energy Istituto di Chimica della Materia Condensata e di Tecnologie per l''Energia'),
(66535, 'https://ror.org/01rhasd23', 'no_lang_code', 1, 'https://ror.org/01rhasd23 Mettler-Toledo (China) 梅特勒-ę‰˜åˆ©å¤š'),
(66536, 'https://ror.org/01rjhdz41', 'de', 1, 'https://ror.org/01rjhdz41 Hessisches Ministerium für Umwelt, Klimaschutz, Landwirtschaft und Verbraucherschutz'),
(66537, 'https://ror.org/01rkf4y25', 'no_lang_code', 1, 'https://ror.org/01rkf4y25 Johnson Matthey Battery Systems (United Kingdom)'),
(66538, 'https://ror.org/01rn6rn86', 'no_lang_code', 1, 'https://ror.org/01rn6rn86 Palo Alto Networks (United States)'),
(66539, 'https://ror.org/01rqdcg33', 'pl', 1, 'https://ror.org/01rqdcg33 Laboratorium Datowań Bezwzględnych'),
(66540, 'https://ror.org/01rqthp48', 'en', 1, 'https://ror.org/01rqthp48 The Korean Society for Anesthetic Pharmacology ėŒ€ķ•œė§ˆģ·Øģ•½ė¦¬ķ•™ķšŒ'),
(66541, 'https://ror.org/01rrttc44', 'no_lang_code', 1, 'https://ror.org/01rrttc44 Berry Gardens (United Kingdom)'),
(66542, 'https://ror.org/01rs2d517', 'en', 1, 'https://ror.org/01rs2d517 Women in Nuclear Korea'),
(66543, 'https://ror.org/01rt7y457', 'no_lang_code', 1, 'https://ror.org/01rt7y457 Baogang Group (China)'),
(66544, 'https://ror.org/01rte3169', 'en', 1, 'https://ror.org/01rte3169 Podar Ayurved Medical College'),
(66545, 'https://ror.org/01rvzsj56', 'en', 1, 'https://ror.org/01rvzsj56 Qingdao Aerospace Semiconductor Research Institute é’å²›čˆŖå¤©åŠåÆ¼ä½“ē ”ē©¶ę‰€ęœ‰é™å…¬åøåŽŸ'),
(66546, 'https://ror.org/01rw44x65', 'en', 1, 'https://ror.org/01rw44x65 Korean Society of Design Science ķ•œźµ­ė””ģžģøķ•™ķšŒ'),
(66547, 'https://ror.org/01rwmh192', 'no_lang_code', 1, 'https://ror.org/01rwmh192 Excel Life Sciences (India)'),
(66548, 'https://ror.org/01ryvqz49', 'en', 1, 'https://ror.org/01ryvqz49 The Korean Literature Association ķ•œźµ­ė¬øķ•™ķšŒ'),
(66549, 'https://ror.org/01rz7nn73', 'no_lang_code', 1, 'https://ror.org/01rz7nn73 BrainTech (Poland)'),
(66550, 'https://ror.org/01rzj1953', 'en', 1, 'https://ror.org/01rzj1953 Institute of Service and Entrepreneurship of DGTU Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сферы Š¾Š±ŃŠ»ŃƒŠ¶ŠøŠ²Š°Š½ŠøŃ Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° ДГТУ в г. Шахты'),
(66551, 'https://ror.org/01s1egc39', 'no_lang_code', 1, 'https://ror.org/01s1egc39 Dashboard (United Kingdom)'),
(66552, 'https://ror.org/01s40r185', 'no_lang_code', 1, 'https://ror.org/01s40r185 Ubisoft (France)'),
(66553, 'https://ror.org/01s41x998', 'no_lang_code', 1, 'https://ror.org/01s41x998 ATM (Poland)'),
(66554, 'https://ror.org/01s50gs59', 'no_lang_code', 1, 'https://ror.org/01s50gs59 North Oil Company (Qatar)'),
(66555, 'https://ror.org/01s5dew76', 'en', 1, 'https://ror.org/01s5dew76 Institute of Food Science and Technology é£Ÿå“ē§‘å­¦äøŽęŠ€ęœÆē ”ē©¶ę‰€'),
(66556, 'https://ror.org/01s5hh873', 'en', 1, 'https://ror.org/01s5hh873 Xinjiang Institute of Engineering 新疆巄程学院'),
(66557, 'https://ror.org/01s6fxv18', 'no_lang_code', 1, 'https://ror.org/01s6fxv18 Interactive Scientific (United Kingdom)'),
(66558, 'https://ror.org/01s7tq402', 'en', 1, 'https://ror.org/01s7tq402 Hainan Provincial Academy of Marine Fisheries and Aquaculture ęµ·å—ēœęµ·ę“‹äøŽęø”äøšē§‘å­¦é™¢'),
(66559, 'https://ror.org/01s8ycx98', 'en', 1, 'https://ror.org/01s8ycx98 Flatpack Film Festival'),
(66560, 'https://ror.org/01sa5tb56', 'en', 1, 'https://ror.org/01sa5tb56 Islamic Azad University, Aliabad Katoul Ų¬Ų§Ł…Ų¹Ų© Ų¢Ų²Ų§ŲÆ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ، Ų¹Ł„ŁŠ Ų£ŲØŲ§ŲÆ Ł‚Ų·ŁˆŁ„'),
(66561, 'https://ror.org/01sa95390', 'no_lang_code', 1, 'https://ror.org/01sa95390 Bernard Matthews (United Kingdom)'),
(66562, 'https://ror.org/01sag2n63', 'no_lang_code', 1, 'https://ror.org/01sag2n63 Guangdong Meiyan Jixiang Hydropower (China) å¹æäøœę¢…é›å‰ē„„ę°“ē”µč‚”ä»½ęœ‰é™å…¬åø'),
(66563, 'https://ror.org/01sbnfq90', 'no_lang_code', 1, 'https://ror.org/01sbnfq90 IAC (United States)'),
(66564, 'https://ror.org/01scdmg11', 'fr', 1, 'https://ror.org/01scdmg11 Agence des SystĆØmes d’information PartagĆ©s de SantĆ©'),
(66565, 'https://ror.org/01scevc62', 'en', 1, 'https://ror.org/01scevc62 Directorate of Fisheries Fiskeridirektoratet'),
(66566, 'https://ror.org/01scxhk26', 'no_lang_code', 1, 'https://ror.org/01scxhk26 Fern (China)'),
(66567, 'https://ror.org/01sdpjb75', 'no_lang_code', 1, 'https://ror.org/01sdpjb75 Geotermia Uniejów (Poland)'),
(66568, 'https://ror.org/01sf33a48', 'en', 1, 'https://ror.org/01sf33a48 Guangzhou Fiber Products Inspection and Research Institute å¹æå·žēŗ¤ē»“äŗ§å“ę£€ęµ‹ē ”ē©¶é™¢'),
(66569, 'https://ror.org/01sh85g09', 'no_lang_code', 1, 'https://ror.org/01sh85g09 Expedia Group (United States)'),
(66570, 'https://ror.org/01shdwj89', 'en', 1, 'https://ror.org/01shdwj89 Korea Academic Society of Tourism Management ėŒ€ķ•œź“€ź“‘ź²½ģ˜ķ•™ķšŒ'),
(66571, 'https://ror.org/01skxtv98', 'no_lang_code', 1, 'https://ror.org/01skxtv98 Citi Logik (United Kingdom)'),
(66572, 'https://ror.org/01smd1r12', 'en', 1, 'https://ror.org/01smd1r12 InstiĀ­tute of Labour and Social StudĀ­ies InstyĀ­tut Pracy i Spraw SocĀ­jalĀ­nych'),
(66573, 'https://ror.org/01snp8f97', 'no_lang_code', 1, 'https://ror.org/01snp8f97 The Russian Research Institute of the Tube & Pipe Industries (Russia) Российский Š½Š°ŃƒŃ‡Š½Š¾ā€“ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚Ń€ŃƒŠ±Š½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(66574, 'https://ror.org/01sph6713', 'en', 1, 'https://ror.org/01sph6713 The North South Institute'),
(66575, 'https://ror.org/01srd9017', 'en', 1, 'https://ror.org/01srd9017 Korean Association of Southeast Asian Studies ķ•œźµ­ė™ė‚Øģ•„ķ•™ķšŒ'),
(66576, 'https://ror.org/01stnfn33', 'no_lang_code', 1, 'https://ror.org/01stnfn33 Kingsoft (China) 金山软件'),
(66577, 'https://ror.org/01sv85c76', 'it', 1, 'https://ror.org/01sv85c76 Centro Studi GISED'),
(66578, 'https://ror.org/01sx2d521', 'en', 1, 'https://ror.org/01sx2d521 Guangdong Shunde Innovative Design Institute å¹æäøœé”ŗå¾·åˆ›ę–°č®¾č®”é™¢'),
(66579, 'https://ror.org/01sxmq816', 'en', 1, 'https://ror.org/01sxmq816 J.P. Morgan'),
(66580, 'https://ror.org/01sxvbm95', 'no_lang_code', 1, 'https://ror.org/01sxvbm95 10X Genomics (United States)'),
(66581, 'https://ror.org/01syk7628', 'fr', 1, 'https://ror.org/01syk7628 Agence Nationale de Protection de l''Environnement'),
(66582, 'https://ror.org/01sz7sf77', 'en', 1, 'https://ror.org/01sz7sf77 Korean Association of Real Estate Law ķ•œźµ­ ė¶€ė™ģ‚°ė²• ķ•™ķšŒ'),
(66583, 'https://ror.org/01t0p7s78', 'en', 1, 'https://ror.org/01t0p7s78 Canadian Red Cross Society Croix Rouge canadienne'),
(66584, 'https://ror.org/01t1hq354', 'en', 1, 'https://ror.org/01t1hq354 Soil and Fertilizer Institute of Hunan Province ę¹–å—ēœåœŸå£¤č‚„ę–™ē ”ē©¶ę‰€ęˆ'),
(66585, 'https://ror.org/01t20fb17', 'en', 1, 'https://ror.org/01t20fb17 Society of Naval Architects and Marine Engineers'),
(66586, 'https://ror.org/01t3xs363', 'en', 1, 'https://ror.org/01t3xs363 Institute for Governance & Sustainable Development'),
(66587, 'https://ror.org/01t4th798', 'no_lang_code', 1, 'https://ror.org/01t4th798 Yeoju University ģ—¬ģ£¼ėŒ€ķ•™źµ'),
(66588, 'https://ror.org/01t748q81', 'en', 1, 'https://ror.org/01t748q81 Korea Exercise Rehabilitation Association ķ•œźµ­ģš“ė™ģž¬ķ™œķ˜‘ķšŒ'),
(66589, 'https://ror.org/01t7bdx98', 'en', 1, 'https://ror.org/01t7bdx98 Korean Financial Management Association ķ•œźµ­ ģž¬ė¬“ ꓀리 ķ˜‘ķšŒ'),
(66590, 'https://ror.org/01t81st47', 'en', 1, 'https://ror.org/01t81st47 Yantai Academy of Agricultural Sciences ēƒŸå°å†œäøšē§‘å­¦é™¢'),
(66591, 'https://ror.org/01t85ct65', 'en', 1, 'https://ror.org/01t85ct65 European Association of Research Managers and Administrators'),
(66592, 'https://ror.org/01t8k0773', 'en', 1, 'https://ror.org/01t8k0773 Society for the Scientific Study of Sexuality'),
(66593, 'https://ror.org/01t91mp11', 'no_lang_code', 1, 'https://ror.org/01t91mp11 Proofpoint (United States)'),
(66594, 'https://ror.org/01tbd0258', 'no_lang_code', 1, 'https://ror.org/01tbd0258 Lexiwave Technology (China)'),
(66595, 'https://ror.org/01tbkq861', 'no_lang_code', 1, 'https://ror.org/01tbkq861 Tianjin Geothermal Exploration, Development and Design Institute (China) å¤©ę“„åœ°ēƒ­å‹˜ęŸ„å¼€å‘č®¾č®”é™¢'),
(66596, 'https://ror.org/01tbn4j76', 'en', 1, 'https://ror.org/01tbn4j76 Gumi University 구미 ėŒ€ķ•™źµ'),
(66597, 'https://ror.org/01te4n153', 'en', 1, 'https://ror.org/01te4n153 Government Medical College'),
(66598, 'https://ror.org/01tevac66', 'no_lang_code', 1, 'https://ror.org/01tevac66 Agencja Rozwoju Przemysłu SA Industrial Development Agency JSC (Poland)'),
(66599, 'https://ror.org/01tjqkz09', 'en', 1, 'https://ror.org/01tjqkz09 Institute for Government'),
(66600, 'https://ror.org/01tn6aq30', 'no_lang_code', 1, 'https://ror.org/01tn6aq30 Da Tang Xi Shi Group (China)'),
(66601, 'https://ror.org/01tnmcm04', 'en', 1, 'https://ror.org/01tnmcm04 Scientists and Engineers Without Borders źµ­ź²½ģ—†ėŠ” 과학 기술 ģ‚¬ķšŒ'),
(66602, 'https://ror.org/01tp0e450', 'en', 1, 'https://ror.org/01tp0e450 Drugs for Neglected Diseases Initiative India'),
(66603, 'https://ror.org/01tp7ze67', 'fr', 1, 'https://ror.org/01tp7ze67 Energieagence'),
(66604, 'https://ror.org/01tsmee46', 'en', 1, 'https://ror.org/01tsmee46 Shanghai Special Equipment Supervision and Inspection Institute äøŠęµ·ē‰¹ē§č®¾å¤‡ę£€ęµ‹ęŠ€ęœÆē ”ē©¶é™¢'),
(66605, 'https://ror.org/01ttqmm87', 'no_lang_code', 1, 'https://ror.org/01ttqmm87 CatScI (United Kingdom)'),
(66606, 'https://ror.org/01txhcw25', 'no_lang_code', 1, 'https://ror.org/01txhcw25 Cell Technology (China)'),
(66607, 'https://ror.org/01tys1796', 'en', 1, 'https://ror.org/01tys1796 Yunnan Supply and Marketing Cooperatives'),
(66608, 'https://ror.org/01v0cwt49', 'no_lang_code', 1, 'https://ror.org/01v0cwt49 Sungae Hospital 성애병원'),
(66609, 'https://ror.org/01v0e7752', 'en', 1, 'https://ror.org/01v0e7752 The Korean Educational Administration Society ķ•œźµ­ 교윔 행정 ķ•™ķšŒ'),
(66610, 'https://ror.org/01v1h2b88', 'en', 1, 'https://ror.org/01v1h2b88 The Society of Modern Literature Theory ķ˜„ėŒ€ 문학 ģ“ė”  ķ•™ķšŒ'),
(66611, 'https://ror.org/01v434r56', 'es', 1, 'https://ror.org/01v434r56 Agencia Tributaria'),
(66612, 'https://ror.org/01v67wf52', 'fr', 1, 'https://ror.org/01v67wf52 Centre des AƮnƩs CƓte-des-Neiges'),
(66613, 'https://ror.org/01v6p2g18', 'no_lang_code', 1, 'https://ror.org/01v6p2g18 Ahold Delhaize (Netherlands) Koninklijke Ahold Delhaize N.V.'),
(66614, 'https://ror.org/01v7ngj48', 'en', 1, 'https://ror.org/01v7ngj48 Ikon Gallery'),
(66615, 'https://ror.org/01varr368', 'no_lang_code', 1, 'https://ror.org/01varr368 PowerChina (China) äø­å›½ē”µåŠ›å»ŗč®¾é›†å›¢å…¬åø'),
(66616, 'https://ror.org/01vd5cb71', 'en', 1, 'https://ror.org/01vd5cb71 Scientific Research Institute Elpa Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «Элпа»'),
(66617, 'https://ror.org/01vdscs87', 'en', 1, 'https://ror.org/01vdscs87 All-Russian Research Institute for Animal Health Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š·Š“Š¾Ń€Š¾Š²ŃŒŃ животных'),
(66618, 'https://ror.org/01ve3tk51', 'en', 1, 'https://ror.org/01ve3tk51 Administrative Conference of the United States'),
(66619, 'https://ror.org/01vg4mj91', 'no_lang_code', 1, 'https://ror.org/01vg4mj91 Jiangsu Provincial Posts & Telecommunications Planning & Design Institute (China) ę±Ÿč‹ēœé‚®ē”µč§„åˆ’č®¾č®”é™¢ęœ‰é™č“£ä»»å…¬åø'),
(66620, 'https://ror.org/01vjf9109', 'no_lang_code', 1, 'https://ror.org/01vjf9109 Coolsure (China)'),
(66621, 'https://ror.org/01vjps349', 'en', 1, 'https://ror.org/01vjps349 Research Institute of Medical Problems of the North ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинских проблем Девера'),
(66622, 'https://ror.org/01vn81v55', 'no_lang_code', 1, 'https://ror.org/01vn81v55 Numina Group (United States)'),
(66623, 'https://ror.org/01vppps02', 'en', 1, 'https://ror.org/01vppps02 The Korean Association for the Study of English Language and Linguistics ķ•œźµ­ģ˜ģ–“ķ•™ķšŒ'),
(66624, 'https://ror.org/01vpvpx53', 'en', 1, 'https://ror.org/01vpvpx53 Technology Affinity Group'),
(66625, 'https://ror.org/01vq8q751', 'en', 1, 'https://ror.org/01vq8q751 Korean Industrial Economic Association ķ•œźµ­ģ‚°ģ—…ź²½ģ œķ•™ķšŒ'),
(66626, 'https://ror.org/01vqbzy86', 'en', 1, 'https://ror.org/01vqbzy86 Shanghai Laser Technology Institute äøŠęµ·åø‚ęæ€å…‰ęŠ€ęœÆē ”ē©¶ę‰€'),
(66627, 'https://ror.org/01vr2v714', 'no_lang_code', 1, 'https://ror.org/01vr2v714 International Moisture Analysers (United Kingdom)'),
(66628, 'https://ror.org/01vrded44', 'en', 1, 'https://ror.org/01vrded44 Hotel Dieu Shaver Health and Rehabilitation Centre'),
(66629, 'https://ror.org/01vw41f50', 'en', 1, 'https://ror.org/01vw41f50 Federal State Budget Scientific Institution "Nizhny Novgorod Research Institute of Agriculture"'),
(66630, 'https://ror.org/01vw57x46', 'no_lang_code', 1, 'https://ror.org/01vw57x46 Rosneft (Russia) Š Š¾ŃŠ½ŠµĢŃ„Ń‚ŃŒ'),
(66631, 'https://ror.org/01vzdsm24', 'no_lang_code', 1, 'https://ror.org/01vzdsm24 Medpace (India)'),
(66632, 'https://ror.org/01w2py151', 'en', 1, 'https://ror.org/01w2py151 North Ossetian State Medical Academy Деверо-ŠžŃŠµŃ‚ŠøŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(66633, 'https://ror.org/01w2qw957', 'no_lang_code', 1, 'https://ror.org/01w2qw957 Shanghai Research Institute of Building Sciences (China) äøŠęµ·å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(66634, 'https://ror.org/01w34q495', 'de', 1, 'https://ror.org/01w34q495 Bundesvereinigung der Deutschen ErnƤhrungsindustrie, Federation of German Food and Drink Industries'),
(66635, 'https://ror.org/01w38z049', 'en', 1, 'https://ror.org/01w38z049 The Korean Language And Culture Education Society ķ•œźµ­ģ–øģ–“ė¬øķ™”źµģœ”ķ•™ķšŒ'),
(66636, 'https://ror.org/01w3c2c15', 'fr', 1, 'https://ror.org/01w3c2c15 Belga'),
(66637, 'https://ror.org/01w4b7951', 'en', 1, 'https://ror.org/01w4b7951 Institute for Recent History of Serbia Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за новију ŠøŃŃ‚Š¾Ń€ŠøŃ˜Ńƒ'),
(66638, 'https://ror.org/01w723627', 'en', 1, 'https://ror.org/01w723627 Austrian Institute of Ecology Ɩsterreichische Ɩkologie Institut'),
(66639, 'https://ror.org/01w7h4t60', 'en', 1, 'https://ror.org/01w7h4t60 Royal Hospital for Sick Children'),
(66640, 'https://ror.org/01w7vxz02', 'no_lang_code', 1, 'https://ror.org/01w7vxz02 Wistron (China) ē·Æå‰µč³‡é€šč‚”ä»½ęœ‰é™å…¬åø'),
(66641, 'https://ror.org/01w94b128', 'en', 1, 'https://ror.org/01w94b128 Korean Association of Comparative Criminal Law ķ•œźµ­ė¹„źµķ˜•ģ‚¬ė²•ķ•™ķšŒ'),
(66642, 'https://ror.org/01wcts620', 'en', 1, 'https://ror.org/01wcts620 Shandong Transportation Research Institute å±±äøœēœäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(66643, 'https://ror.org/01wf22864', 'en', 1, 'https://ror.org/01wf22864 Seoil University ē‘žé€øå¤§å­øę ”,'),
(66644, 'https://ror.org/01wjb4152', 'no_lang_code', 1, 'https://ror.org/01wjb4152 Adoreboard (United Kingdom)'),
(66645, 'https://ror.org/01wm2fy87', 'no_lang_code', 1, 'https://ror.org/01wm2fy87 Schlumberger (Qatar)'),
(66646, 'https://ror.org/01wm3c497', 'en', 1, 'https://ror.org/01wm3c497 Prostate Cancer Research'),
(66647, 'https://ror.org/01wmkgr68', 'no_lang_code', 1, 'https://ror.org/01wmkgr68 Link (Germany)'),
(66648, 'https://ror.org/01wmprq78', 'no_lang_code', 1, 'https://ror.org/01wmprq78 eCountability (United Kingdom)'),
(66649, 'https://ror.org/01wn5z925', 'en', 1, 'https://ror.org/01wn5z925 Horse Sport Ireland'),
(66650, 'https://ror.org/01wrnz920', 'no_lang_code', 1, 'https://ror.org/01wrnz920 Arcadis (United States)'),
(66651, 'https://ror.org/01wtjkn81', 'en', 1, 'https://ror.org/01wtjkn81 Guangdong Special Equipment Inspection and Research Institute å¹æäøœēœē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(66652, 'https://ror.org/01wtq2m33', 'no_lang_code', 1, 'https://ror.org/01wtq2m33 DSM (India)'),
(66653, 'https://ror.org/01wx5br04', 'en', 1, 'https://ror.org/01wx5br04 Korean Strategic Marketing Association ķ•œźµ­ ģ „ėžµ ė§ˆģ¼€ķŒ… ķ˜‘ķšŒ'),
(66654, 'https://ror.org/01wxbtj35', 'en', 1, 'https://ror.org/01wxbtj35 All-Russian Scientific Research Institute of Butter and Cheese Making Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃŠ»Š¾Š“ŠµŠ»ŠøŃ Šø ŃŃ‹Ń€Š¾Š“ŠµŠ»ŠøŃ'),
(66655, 'https://ror.org/01wxsyf11', 'no_lang_code', 1, 'https://ror.org/01wxsyf11 Lupin Pharmaceuticals (United States)'),
(66656, 'https://ror.org/01wxtxj33', 'no_lang_code', 1, 'https://ror.org/01wxtxj33 Shanghai Urban Transportation Design Institute (China) äøŠęµ·åø‚äŗ¤é€šč®¾č®”é™¢'),
(66657, 'https://ror.org/01x23ex04', 'no_lang_code', 1, 'https://ror.org/01x23ex04 CAS Logistics (China)'),
(66658, 'https://ror.org/01x2aqm70', 'en', 1, 'https://ror.org/01x2aqm70 Tatar Scientific Research Institute of Agriculture Татарский ŠŠ˜Š˜ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°');
INSERT INTO `rors` VALUES
(66659, 'https://ror.org/01x4gae84', 'en', 1, 'https://ror.org/01x4gae84 Kovai Medical Center and Hospital'),
(66660, 'https://ror.org/01x4jh294', 'fr', 1, 'https://ror.org/01x4jh294 ARPE PACA, Agence RĆ©gionale Pour l’Environnement & l’écodĆ©veloppement Provence-Alpes-CĆ“te d’Azur'),
(66661, 'https://ror.org/01x7pyz19', 'no_lang_code', 1, 'https://ror.org/01x7pyz19 Boryung Pharma (South Korea) ė³“ė ¹ģ œģ•½ģ˜'),
(66662, 'https://ror.org/01x87jt81', 'en', 1, 'https://ror.org/01x87jt81 Institute of Macromolecular Chemistry Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ хімії Š²ŠøŃŠ¾ŠŗŠ¾Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½ŠøŃ… сполук'),
(66663, 'https://ror.org/01xa8e295', 'en', 1, 'https://ror.org/01xa8e295 An Bord Ɓrachais SlƔinte ShaorƔlaigh Vhi Healthcare'),
(66664, 'https://ror.org/01xbd6g65', 'en', 1, 'https://ror.org/01xbd6g65 Beijing Institute of Neurosurgery'),
(66665, 'https://ror.org/01xdejb38', 'no_lang_code', 1, 'https://ror.org/01xdejb38 iNtRON (South Korea) ģøķŠøė” ė°”ģ“ģ˜¤ķ…Œķ¬ė†€ė”œģ§€'),
(66666, 'https://ror.org/01xhnny36', 'en', 1, 'https://ror.org/01xhnny36 Korean German Literature Society ķ•œźµ­ ė…ģ¼ ė¬øķ•™ķšŒ'),
(66667, 'https://ror.org/01xhv6h58', 'no_lang_code', 1, 'https://ror.org/01xhv6h58 Sage (United Kingdom)'),
(66668, 'https://ror.org/01xjdd789', 'no_lang_code', 1, 'https://ror.org/01xjdd789 Action in Caerau & Ely (United Kingdom)'),
(66669, 'https://ror.org/01xje0t51', 'en', 1, 'https://ror.org/01xje0t51 Dongak Art History Association ė™ģ•…ėÆøģˆ ģ‚¬ķ•™ķšŒ'),
(66670, 'https://ror.org/01xm51j90', 'no_lang_code', 1, 'https://ror.org/01xm51j90 eCow Devon (United Kingdom)'),
(66671, 'https://ror.org/01xp2eb39', 'en', 1, 'https://ror.org/01xp2eb39 The International Association for Korean Language Education źµ­ģ œķ•œźµ­ģ–“źµģœ”ķ•™ķšŒ'),
(66672, 'https://ror.org/01xq1xt31', 'no_lang_code', 1, 'https://ror.org/01xq1xt31 Biotika'),
(66673, 'https://ror.org/01xqtwj78', 'no_lang_code', 1, 'https://ror.org/01xqtwj78 Agilent Technologies (Ireland)'),
(66674, 'https://ror.org/01xsvrg26', 'no_lang_code', 1, 'https://ror.org/01xsvrg26 Cascoda (United Kingdom)'),
(66675, 'https://ror.org/01xw83c56', 'fr', 1, 'https://ror.org/01xw83c56 Registre gƩnƩral des cancers de Lille et de sa rƩgion'),
(66676, 'https://ror.org/01xyf9430', 'no_lang_code', 1, 'https://ror.org/01xyf9430 Boehringer Ingelheim (India)'),
(66677, 'https://ror.org/01y0vt648', 'no_lang_code', 1, 'https://ror.org/01y0vt648 Institute for Quality, Safety and Transportation (Germany)'),
(66678, 'https://ror.org/01y335991', 'en', 1, 'https://ror.org/01y335991 Institute of Transport Engineering Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ транспортного Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(66679, 'https://ror.org/01y434d35', 'en', 1, 'https://ror.org/01y434d35 International Council of Marine Industry Associations'),
(66680, 'https://ror.org/01y659x67', 'no_lang_code', 1, 'https://ror.org/01y659x67 LabGenius (United Kingdom)'),
(66681, 'https://ror.org/01y69kh47', 'en', 1, 'https://ror.org/01y69kh47 Ministry of Environment and Physical Planning ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ за животна среГина Šø просторно ŠæŠ»Š°Š½ŠøŃ€Š°ŃšŠµ'),
(66682, 'https://ror.org/01y6s8j60', 'en', 1, 'https://ror.org/01y6s8j60 Cyprus Post Kıbrıs Posta Ofisi'),
(66683, 'https://ror.org/01y6x9f04', 'no_lang_code', 1, 'https://ror.org/01y6x9f04 ColVisTec (Germany)'),
(66684, 'https://ror.org/01y9p8471', 'en', 1, 'https://ror.org/01y9p8471 Ministry of Labour, Social Insurance and Social Solidarity ΄πουργείο Ī•ĻĪ³Ī±ĻƒĪÆĪ±Ļ‚ και ĪšĪæĪ¹Ī½Ļ‰Ī½Ī¹ĪŗĪ®Ļ‚ Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī±Ļ‚ & ĪšĪæĪ¹Ī½Ļ‰Ī½Ī¹ĪŗĪ®Ļ‚ Ī‘Ī»Ī»Ī·Ī»ĪµĪ³Ī³ĻĪ·Ļ‚'),
(66685, 'https://ror.org/01yagnz59', 'en', 1, 'https://ror.org/01yagnz59 Korean Clinical Psychcological Association'),
(66686, 'https://ror.org/01yarqc83', 'en', 1, 'https://ror.org/01yarqc83 Suwon Women’s University ģˆ˜ģ› ģ—¬ģž ėŒ€ķ•™źµ'),
(66687, 'https://ror.org/01ycn3984', 'en', 1, 'https://ror.org/01ycn3984 Changchun Observatory é•æę˜„äŗŗé€ å«ę˜Ÿč§‚ęµ‹ē«™'),
(66688, 'https://ror.org/01ydbqk02', 'no_lang_code', 1, 'https://ror.org/01ydbqk02 Fujian Academy of Building Research (China) ē¦å»ŗēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(66689, 'https://ror.org/01ydvxb59', 'no_lang_code', 1, 'https://ror.org/01ydvxb59 Elgór + Hansen (Poland)'),
(66690, 'https://ror.org/01yetjs28', 'en', 1, 'https://ror.org/01yetjs28 Kirov Research Institute of Hematology and Blood Transfusion FMBA ŠšŠøŃ€Š¾Š²ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гематологии Šø ŠæŠµŃ€ŠµŠ»ŠøŠ²Š°Š½ŠøŃ крови Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(66691, 'https://ror.org/01yfptf89', 'no_lang_code', 1, 'https://ror.org/01yfptf89 OAO Š¢Ń€ŃƒŠ±Š½Š°Ń ŠœŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń ŠšŠ¾Š¼ŠæŠ°Š½ŠøŃ Pipe Metallurgical (Russia)'),
(66692, 'https://ror.org/01ygra721', 'no_lang_code', 1, 'https://ror.org/01ygra721 Environmental Process Systems (United Kingdom)'),
(66693, 'https://ror.org/01yj6y952', 'en', 1, 'https://ror.org/01yj6y952 Korean Society of Basic Design & Art ķ•œźµ­ ė””ģžģø 기쓈 ķ•™ķšŒ'),
(66694, 'https://ror.org/01ykf3r31', 'no_lang_code', 1, 'https://ror.org/01ykf3r31 Elyson Pharm (South Korea) ģ—ė¦¬ģŠØģ œģ•½(주)'),
(66695, 'https://ror.org/01yknwh75', 'no_lang_code', 1, 'https://ror.org/01yknwh75 Cadila Pharmaceuticals (India)'),
(66696, 'https://ror.org/01ykzp537', 'no_lang_code', 1, 'https://ror.org/01ykzp537 Institute of Electronic Measurements KVARZ (Russia) Ā«Š¤ŠŠŸŠ¦ Ā«ŠŠŠ˜ŠŸŠ˜ Ā«ŠšŠ²Š°Ń€Ń†Ā» имени А.П. Š“Š¾Ń€ŃˆŠŗŠ¾Š²Š°Ā»'),
(66697, 'https://ror.org/01ym0mb49', 'no_lang_code', 1, 'https://ror.org/01ym0mb49 Mikronika (Poland)'),
(66698, 'https://ror.org/01ym1hq42', 'en', 1, 'https://ror.org/01ym1hq42 Federation of Environmental Trade Associations'),
(66699, 'https://ror.org/01yn40g02', 'en', 1, 'https://ror.org/01yn40g02 Hong Kong Bar Association é¦™ęøÆå¤§å¾‹åø«å…¬ęœƒ'),
(66700, 'https://ror.org/01yr36w05', 'no_lang_code', 1, 'https://ror.org/01yr36w05 Key Organics (United Kingdom)'),
(66701, 'https://ror.org/01yvzps21', 'en', 1, 'https://ror.org/01yvzps21 The Korean Association of Primary English Education ķ•œźµ­ ģ“ˆė“± ģ˜ģ–“ 교윔 ķ˜‘ķšŒ'),
(66702, 'https://ror.org/01ywkr738', 'en', 1, 'https://ror.org/01ywkr738 Prince Mohammad Bin Salman College of Business and Entrepreneurship ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£Ł…ŁŠŲ± Ł…Ų­Ł…ŲÆ بن سلمان لل؄دارة وريادة الأعمال'),
(66703, 'https://ror.org/01yx4gk53', 'en', 1, 'https://ror.org/01yx4gk53 Office of the Secretary of Natural Resources'),
(66704, 'https://ror.org/01yxxqf96', 'en', 1, 'https://ror.org/01yxxqf96 Concern Worldwide UK'),
(66705, 'https://ror.org/01yywym13', 'en', 1, 'https://ror.org/01yywym13 The Society for the Studies of Silla History ģ‹ ė¼ 역사 ķ•™ķšŒ'),
(66706, 'https://ror.org/01z230y48', 'en', 1, 'https://ror.org/01z230y48 Canadian National Institute Of Health'),
(66707, 'https://ror.org/01zaaey39', 'no_lang_code', 1, 'https://ror.org/01zaaey39 Interregional Open Social Institute ŠœŠµŠ¶Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ открытый ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(66708, 'https://ror.org/01zak2017', 'no_lang_code', 1, 'https://ror.org/01zak2017 MercadoLibre (Argentina)'),
(66709, 'https://ror.org/01zbb0s29', 'en', 1, 'https://ror.org/01zbb0s29 Center for Art Studies ķ•œźµ­ģ˜ˆģˆ ģ—°źµ¬ģ†Œ'),
(66710, 'https://ror.org/01zc60580', 'no_lang_code', 1, 'https://ror.org/01zc60580 Heiwa (Japan) ę Ŗå¼ä¼šē¤¾å¹³å’Œ'),
(66711, 'https://ror.org/01zd5r820', 'no_lang_code', 1, 'https://ror.org/01zd5r820 Energostal (Ukraine) Š£ŠšŠ ŠŠ˜ŠŠ”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š¢Š•Š„ŠŠ˜Š§Š•Š”ŠšŠ˜Š™ Š¦Š•ŠŠ¢Š  ŠœŠ•Š¢ŠŠ›Š›Š£Š Š“Š˜Š§Š•Š”ŠšŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(66712, 'https://ror.org/01zd6tj24', 'no_lang_code', 1, 'https://ror.org/01zd6tj24 Ineos (Belgium)'),
(66713, 'https://ror.org/01zdajg53', 'de', 1, 'https://ror.org/01zdajg53 Ɩsterreichische Lateinamerika-Institut'),
(66714, 'https://ror.org/01zeqwe54', 'en', 1, 'https://ror.org/01zeqwe54 Bridgepoint Active Healthcare'),
(66715, 'https://ror.org/01zfjxa58', 'no_lang_code', 1, 'https://ror.org/01zfjxa58 Covance (India)'),
(66716, 'https://ror.org/01zfykz78', 'en', 1, 'https://ror.org/01zfykz78 Network of Schools of Public Policy, Affairs, and Administration'),
(66717, 'https://ror.org/01zgghk09', 'no_lang_code', 1, 'https://ror.org/01zgghk09 CoderDojo Foundation'),
(66718, 'https://ror.org/01zh21529', 'no_lang_code', 1, 'https://ror.org/01zh21529 Daegu TechnoPark ėŒ€źµ¬ķ…Œķ¬ė…øķŒŒķ¬'),
(66719, 'https://ror.org/01zn9ea79', 'fr', 1, 'https://ror.org/01zn9ea79 MinistĆØre de la Production Animale et des Ressources Halieutiques'),
(66720, 'https://ror.org/01zq0ty45', 'en', 1, 'https://ror.org/01zq0ty45 Public Waste Agency of Flanders'),
(66721, 'https://ror.org/01zqjg022', 'en', 1, 'https://ror.org/01zqjg022 United States Association for Computational Mechanics'),
(66722, 'https://ror.org/01zs00411', 'en', 1, 'https://ror.org/01zs00411 Korea Testing Certification ķ•œźµ­źø°ź³„ģ „źø°ģ „ģžģ‹œķ—˜ģ—°źµ¬ģ›'),
(66723, 'https://ror.org/01zvw4x71', 'en', 1, 'https://ror.org/01zvw4x71 Ministry of Ecology and Natural Resources of Ukraine ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ екології та прироГних Ń€ŠµŃŃƒŃ€ŃŃ–Š² України'),
(66724, 'https://ror.org/01zyz5223', 'no_lang_code', 1, 'https://ror.org/01zyz5223 Bonyf (Liechtenstein)'),
(66725, 'https://ror.org/01zzk8a60', 'no_lang_code', 1, 'https://ror.org/01zzk8a60 Instorff (Russia) Š˜Š½ŃŃ‚Š¾Ń€Ń„Š°'),
(66726, 'https://ror.org/01zzq1m54', 'en', 1, 'https://ror.org/01zzq1m54 Central Scientific and Research Institute of the Sewing Industry ŠžŠŠž "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Швейной ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø"'),
(66727, 'https://ror.org/0200k4z47', 'no_lang_code', 1, 'https://ror.org/0200k4z47 Amneal (Switzerland)'),
(66728, 'https://ror.org/0201w0c54', 'en', 1, 'https://ror.org/0201w0c54 Shijiazhuang Academy of Agriculture and Forestry Sciences ēŸ³å®¶åŗ„åø‚å†œęž—ē§‘å­¦ē ”ē©¶é™¢'),
(66729, 'https://ror.org/0203r7m17', 'no_lang_code', 1, 'https://ror.org/0203r7m17 Yarsintez ŠžŠŠž ŠŠ˜Š˜ «Ярсинтез»'),
(66730, 'https://ror.org/0204q4d57', 'en', 1, 'https://ror.org/0204q4d57 Texas Wheat Producers Board and Association'),
(66731, 'https://ror.org/02069m354', 'en', 1, 'https://ror.org/02069m354 East Ayrshire Council'),
(66732, 'https://ror.org/020a0s966', 'en', 1, 'https://ror.org/020a0s966 Bodyline Hospitals'),
(66733, 'https://ror.org/020a52n70', 'en', 1, 'https://ror.org/020a52n70 Department of Planning & Building'),
(66734, 'https://ror.org/020b78451', 'en', 1, 'https://ror.org/020b78451 Sejong Cyber University ģ„øģ¢…ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(66735, 'https://ror.org/020dfcj86', 'no_lang_code', 1, 'https://ror.org/020dfcj86 Manhattan Theatre Club (United States)'),
(66736, 'https://ror.org/020h7tk57', 'en', 1, 'https://ror.org/020h7tk57 Lafourche Parish School District'),
(66737, 'https://ror.org/020js1x50', 'no_lang_code', 1, 'https://ror.org/020js1x50 Baxter (India)'),
(66738, 'https://ror.org/020jz8z49', 'en', 1, 'https://ror.org/020jz8z49 Thermal Power Research Institute č„æå®‰ēƒ­å·„ē ”ē©¶é™¢'),
(66739, 'https://ror.org/020kx6615', 'en', 1, 'https://ror.org/020kx6615 Cultural Enterprise Office'),
(66740, 'https://ror.org/020n6f578', 'en', 1, 'https://ror.org/020n6f578 MaRS'),
(66741, 'https://ror.org/020ng9892', 'en', 1, 'https://ror.org/020ng9892 Canadian Society of Microbiologists SociƩtƩ Canadienne des Microbiologistes'),
(66742, 'https://ror.org/020nwtk72', 'en', 1, 'https://ror.org/020nwtk72 Korean Society for Digital Policy ķ•œźµ­ė””ģ§€ķ„øģ •ģ±…ķ•™ķšŒ'),
(66743, 'https://ror.org/020p5zy41', 'en', 1, 'https://ror.org/020p5zy41 Xinjiang Uygur Autonomous Region Institute of Metrology and Measurement ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗč®”é‡ęµ‹čÆ•ē ”ē©¶é™¢'),
(66744, 'https://ror.org/020tka774', 'no_lang_code', 1, 'https://ror.org/020tka774 Irish Horseracing Regulatory Board (Ireland)'),
(66745, 'https://ror.org/020tqff86', 'no_lang_code', 1, 'https://ror.org/020tqff86 Ebiche (South Korea) ģ“ė¹„ģ±„'),
(66746, 'https://ror.org/020vamp96', 'en', 1, 'https://ror.org/020vamp96 Family Carers Ireland'),
(66747, 'https://ror.org/020whct63', 'no_lang_code', 1, 'https://ror.org/020whct63 Research Institute "Pilot" (Russia)'),
(66748, 'https://ror.org/020y5qm10', 'en', 1, 'https://ror.org/020y5qm10 Ministry of Health of the Republic of Lithuania'),
(66749, 'https://ror.org/0210g9419', 'no_lang_code', 1, 'https://ror.org/0210g9419 ƅre Skidfabrik (Sweden)'),
(66750, 'https://ror.org/0211fbv71', 'en', 1, 'https://ror.org/0211fbv71 Academy of Engineering Sciences Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ł‡Ł†ŲÆŲ³ŁŠŲ©'),
(66751, 'https://ror.org/0212cyj75', 'no_lang_code', 1, 'https://ror.org/0212cyj75 Micro Focus (United Kingdom)'),
(66752, 'https://ror.org/02133fc38', 'no_lang_code', 1, 'https://ror.org/02133fc38 Stinger Ghaffarian Technologies (United States)'),
(66753, 'https://ror.org/021393933', 'en', 1, 'https://ror.org/021393933 Airmid Healthgroup'),
(66754, 'https://ror.org/0214mhn29', 'en', 1, 'https://ror.org/0214mhn29 The Korea institute for Religion and Culture ķ•œźµ­ģ¢…źµė¬øķ™”ģ—°źµ¬ģ†Œ'),
(66755, 'https://ror.org/021923v79', 'en', 1, 'https://ror.org/021923v79 Institute of Marine Geology and Geophysics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ морской геологии Šø геофизики'),
(66756, 'https://ror.org/0219db520', 'en', 1, 'https://ror.org/0219db520 All-Russian Research Institute "Signal" Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «Дигнал»'),
(66757, 'https://ror.org/0219e8j10', 'no_lang_code', 1, 'https://ror.org/0219e8j10 Vast Solar (Australia)'),
(66758, 'https://ror.org/021a9n650', 'en', 1, 'https://ror.org/021a9n650 Institute of Technology and Development Foundation'),
(66759, 'https://ror.org/021c9ha45', 'en', 1, 'https://ror.org/021c9ha45 Vasantdada Patil Ayurvedic Medical College & Institute Of Yoga'),
(66760, 'https://ror.org/021dst456', 'en', 1, 'https://ror.org/021dst456 Derby Museums'),
(66761, 'https://ror.org/021es5e59', 'en', 1, 'https://ror.org/021es5e59 Moscow Institute of Thermal Technology ŠšŠ¾Ń€ŠæŠ¾Ń€Š°Ń†ŠøŃ Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплотехники'),
(66762, 'https://ror.org/021h96b10', 'en', 1, 'https://ror.org/021h96b10 Korean Association Of Business Education ķ•œźµ­ 경영 교윔 ķ•™ķšŒ'),
(66763, 'https://ror.org/021m1ad11', 'de', 1, 'https://ror.org/021m1ad11 AWO Bundesverband, Arbeiterwohlfahrt Bundesverband'),
(66764, 'https://ror.org/021peq975', 'no_lang_code', 1, 'https://ror.org/021peq975 Bramble Energy (United Kingdom)'),
(66765, 'https://ror.org/021pght82', 'en', 1, 'https://ror.org/021pght82 An Roinn Caiteachais Phoiblí agus Athchóirithe Department of Public Expenditure and Reform'),
(66766, 'https://ror.org/021scha67', 'en', 1, 'https://ror.org/021scha67 Institute of Biological Problems of the North Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологических проблем Девера Š”Š’Šž'),
(66767, 'https://ror.org/021vwsa16', 'no_lang_code', 1, 'https://ror.org/021vwsa16 Wockhardt (Switzerland)'),
(66768, 'https://ror.org/021wgs783', 'en', 1, 'https://ror.org/021wgs783 Nutrition Metabolism Aquaculture'),
(66769, 'https://ror.org/021yk7r24', 'no_lang_code', 1, 'https://ror.org/021yk7r24 Shanghai Textile Holdings (China) äøŠęµ·ēŗŗē»‡ęŽ§č‚”é›†å›¢å…¬åø'),
(66770, 'https://ror.org/021ywyg68', 'en', 1, 'https://ror.org/021ywyg68 Korea Infrastructure Organization for Nanotechnology źµ­ź°€ė‚˜ė…øģøķ”„ė¼ķ˜‘ģ˜ģ²“'),
(66771, 'https://ror.org/021z1mz76', 'en', 1, 'https://ror.org/021z1mz76 Institute of Organic Synthesis and Photoreactivity Istituto di Sintesi Organica e FotoreattivitĆ '),
(66772, 'https://ror.org/0220p2586', 'en', 1, 'https://ror.org/0220p2586 Guizhou Institute of Biology č“µå·žēœē”Ÿē‰©ē ”ē©¶ę‰€'),
(66773, 'https://ror.org/0221fhj86', 'en', 1, 'https://ror.org/0221fhj86 Heihe University 黑河学院'),
(66774, 'https://ror.org/0221g4j08', 'no_lang_code', 1, 'https://ror.org/0221g4j08 OBERMEYER Planen + Beraten (Germany)'),
(66775, 'https://ror.org/0221pe749', 'en', 1, 'https://ror.org/0221pe749 Pakistan Council of Research in Water Resources'),
(66776, 'https://ror.org/0222rn292', 'no_lang_code', 1, 'https://ror.org/0222rn292 Hypetex (United Kingdom)'),
(66777, 'https://ror.org/0222tsk12', 'en', 1, 'https://ror.org/0222tsk12 Shanghai Electric Tool Research Institute äøŠęµ·ē”µåŠØå·„å…·ē ”ē©¶ę‰€'),
(66778, 'https://ror.org/022352x20', 'no_lang_code', 1, 'https://ror.org/022352x20 Getinge (Sweden)'),
(66779, 'https://ror.org/022535b24', 'no_lang_code', 1, 'https://ror.org/022535b24 Korea Sensor Technology (South Korea) ķ•œźµ­ ģ„¼ģ„œ 기술'),
(66780, 'https://ror.org/0225rdk98', 'en', 1, 'https://ror.org/0225rdk98 Institute of Materials Science of the Khabarovsk Scientific Center Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(66781, 'https://ror.org/0226gmk97', 'en', 1, 'https://ror.org/0226gmk97 Bristol Museum & Art Gallery'),
(66782, 'https://ror.org/02275hy54', 'no_lang_code', 1, 'https://ror.org/02275hy54 Scientific Research Institute of Semiconductor Mechanical Engineering (Russia)'),
(66783, 'https://ror.org/022772y06', 'no_lang_code', 1, 'https://ror.org/022772y06 Abnoba (South Korea) ģ•„ėøŒė…øė°”'),
(66784, 'https://ror.org/02278he04', 'no_lang_code', 1, 'https://ror.org/02278he04 JSR Farming (United Kingdom)'),
(66785, 'https://ror.org/0228dfp95', 'en', 1, 'https://ror.org/0228dfp95 MAB-Mackay Rehabilitation Centre'),
(66786, 'https://ror.org/022em9m61', 'en', 1, 'https://ror.org/022em9m61 Association Canadienne de MƩdecine Physique et de RƩadaptation Canadian Association of Physical Medicine and Rehabilitation'),
(66787, 'https://ror.org/022ftcx89', 'no_lang_code', 1, 'https://ror.org/022ftcx89 Zimmer Biomet (India)'),
(66788, 'https://ror.org/022g12y09', 'en', 1, 'https://ror.org/022g12y09 Sustainable Energy Development Agency'),
(66789, 'https://ror.org/022haww92', 'no_lang_code', 1, 'https://ror.org/022haww92 ICURE Pharm (South Korea) ģ•„ģ“ķģ–“'),
(66790, 'https://ror.org/022k2qy30', 'en', 1, 'https://ror.org/022k2qy30 Guilin Tea Research Institute ę”‚ęž—čŒ¶å¶ē ”ē©¶ę‰€'),
(66791, 'https://ror.org/022m1me97', 'en', 1, 'https://ror.org/022m1me97 Merchants Quay Ireland'),
(66792, 'https://ror.org/022ppya26', 'en', 1, 'https://ror.org/022ppya26 Cork Alliance Centre'),
(66793, 'https://ror.org/022prt504', 'en', 1, 'https://ror.org/022prt504 Air Force Academy named after Professor NE Zhukovsky and Yu.A. Gagarin Военно-Š²Š¾Š·Š“ŃƒŃˆŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени профессора Š. Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾ Šø Š®. А. Гагарина'),
(66794, 'https://ror.org/022qbnw53', 'en', 1, 'https://ror.org/022qbnw53 Guangdong Province Welding Technology Institute'),
(66795, 'https://ror.org/022sn6h14', 'no_lang_code', 1, 'https://ror.org/022sn6h14 Alvant (United Kingdom)'),
(66796, 'https://ror.org/022t97w40', 'en', 1, 'https://ror.org/022t97w40 Guomao Engineering Design Institute 国蓸巄程设讔院'),
(66797, 'https://ror.org/022tsv947', 'no_lang_code', 1, 'https://ror.org/022tsv947 Fiberight (United Kingdom)'),
(66798, 'https://ror.org/022vzex26', 'no_lang_code', 1, 'https://ror.org/022vzex26 Taiyuan Heavy Industry (China) å¤ŖåŽŸé‡å·„č‚”ä»½ęœ‰é™å…¬åø'),
(66799, 'https://ror.org/022yj5z48', 'en', 1, 'https://ror.org/022yj5z48 Critical Sociological Association of Korea ķ•œźµ­ ģ¤‘ģš” ģ‚¬ķšŒ ķ•™ķšŒ'),
(66800, 'https://ror.org/022ypyz07', 'no_lang_code', 1, 'https://ror.org/022ypyz07 (주)중앙산업 Chungang Industry (South Korea)'),
(66801, 'https://ror.org/022zaft65', 'ga', 1, 'https://ror.org/022zaft65 Doras LuimnĆ­'),
(66802, 'https://ror.org/0231kk931', 'en', 1, 'https://ror.org/0231kk931 African Institute for Mathematical Sciences Ghana'),
(66803, 'https://ror.org/0232zj786', 'no_lang_code', 1, 'https://ror.org/0232zj786 Focus Innovation (United Kingdom)'),
(66804, 'https://ror.org/0233jyt67', 'en', 1, 'https://ror.org/0233jyt67 Fujian Electric Power Survey & Design Institute ē¦å»ŗēœē”µåŠ›å‹˜ęµ‹č®¾č®”é™¢'),
(66805, 'https://ror.org/0233w8s77', 'no_lang_code', 1, 'https://ror.org/0233w8s77 Playnote (China)'),
(66806, 'https://ror.org/0236s9n59', 'en', 1, 'https://ror.org/0236s9n59 East Sussex County Council'),
(66807, 'https://ror.org/0237g7h29', 'en', 1, 'https://ror.org/0237g7h29 Moulana Hospital ą“®ąµ—ą“²ą“¾ą“Ø ą“¹ąµ‹ą“øąµą“Ŗą“æą“±ąµą“±ąµ½'),
(66808, 'https://ror.org/023a7m452', 'en', 1, 'https://ror.org/023a7m452 Jewish Community Centre Association of North America'),
(66809, 'https://ror.org/023b14j50', 'en', 1, 'https://ror.org/023b14j50 Shri Sathya Sai Medical College and Research Institute ą®øąÆą®°ąÆ€ ą®šą®¤ąÆą®Æ ą®šą®¾ą®ÆąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(66810, 'https://ror.org/023b3v773', 'en', 1, 'https://ror.org/023b3v773 Busan Development Institute ė¶€ģ‚°ė°œģ „ģ—°źµ¬ģ›'),
(66811, 'https://ror.org/023byrq13', 'en', 1, 'https://ror.org/023byrq13 Guangdong Province Special Equipment Testing and Research Institute Zhuhai Testing Institute å¹æäøœēœē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢ē ęµ·ę£€ęµ‹é™¢'),
(66812, 'https://ror.org/023c92218', 'en', 1, 'https://ror.org/023c92218 Korea Leisure and Recreation Association ķ•œźµ­ ė ˆģ € ė ˆķ¬ė¦¬ģ—ģ“ģ…˜ ķ˜‘ķšŒ'),
(66813, 'https://ror.org/023es3c27', 'no_lang_code', 1, 'https://ror.org/023es3c27 Anheuser-Busch InBev (Belgium)'),
(66814, 'https://ror.org/023fgyc14', 'no_lang_code', 1, 'https://ror.org/023fgyc14 Halliburton (Qatar)'),
(66815, 'https://ror.org/023fyxd70', 'en', 1, 'https://ror.org/023fyxd70 Panzhihua Academy of Agriculture and Forestry Sciences ę”€ęžčŠ±åø‚å†œęž—ē§‘å­¦ē ”ē©¶é™¢ę˜Æē”±'),
(66816, 'https://ror.org/023gs4b42', 'en', 1, 'https://ror.org/023gs4b42 Korean Association of Sport Pedagogy ķ•œźµ­ģŠ¤ķ¬ģø źµģœ”ķ•™ķšŒ'),
(66817, 'https://ror.org/023h03q35', 'en', 1, 'https://ror.org/023h03q35 National Institute for Lifelong Education źµ­ź°€ķ‰ģƒźµģœ”ģ§„ķ„ģ›'),
(66818, 'https://ror.org/023j0tg36', 'en', 1, 'https://ror.org/023j0tg36 United States Association for Energy Economics'),
(66819, 'https://ror.org/023jrwe36', 'no_lang_code', 1, 'https://ror.org/023jrwe36 Sany (China) äø‰äø€é‡å·„č‚”ä»½ęœ‰é™å…¬åø'),
(66820, 'https://ror.org/023jx0404', 'no_lang_code', 1, 'https://ror.org/023jx0404 Coal Industry Jinan Design & Research Institute (China) ē…¤ē‚­å·„äøšęµŽå—č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(66821, 'https://ror.org/023kz8918', 'en', 1, 'https://ror.org/023kz8918 Ningbo Product Quality Supervision and Inspection Institute å®ę³¢äŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒē ”ē©¶é™¢'),
(66822, 'https://ror.org/023p2b446', 'en', 1, 'https://ror.org/023p2b446 Dutch Art Institute'),
(66823, 'https://ror.org/023p4rz42', 'no_lang_code', 1, 'https://ror.org/023p4rz42 AstraZeneca (Singapore)'),
(66824, 'https://ror.org/023s0f257', 'no_lang_code', 1, 'https://ror.org/023s0f257 42 Technology (United Kingdom)'),
(66825, 'https://ror.org/023t03t27', 'en', 1, 'https://ror.org/023t03t27 Shandong Ocean and Fisheries Department å±±äøœēœęµ·ę“‹äøŽęø”äøšåŽ…'),
(66826, 'https://ror.org/023w7hq91', 'en', 1, 'https://ror.org/023w7hq91 General Commission for Scientific Agricultural Research Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų¹Ł„Ł…ŁŠŲ© Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(66827, 'https://ror.org/023wbge51', 'en', 1, 'https://ror.org/023wbge51 Korean German Language and Literature Society ķ•œźµ­ė…ģ–“ė…ė¬øķ•™ķšŒ'),
(66828, 'https://ror.org/0240hhb81', 'en', 1, 'https://ror.org/0240hhb81 Konsumentverket Swedish Consumer Agency'),
(66829, 'https://ror.org/0242z8y86', 'no_lang_code', 1, 'https://ror.org/0242z8y86 Gridsum (China) å›½åŒē§‘ęŠ€ęœ‰é™å…¬åø'),
(66830, 'https://ror.org/0243az357', 'no_lang_code', 1, 'https://ror.org/0243az357 LifeForce Homoeopathy (India)'),
(66831, 'https://ror.org/0246b6g90', 'en', 1, 'https://ror.org/0246b6g90 Kansas Coalition Against Sexual and Domestic Violence'),
(66832, 'https://ror.org/0246ppj64', 'en', 1, 'https://ror.org/0246ppj64 Korea Music Educators Society ķ•œźµ­ģŒģ•…źµģœ”ķ•™ķšŒ'),
(66833, 'https://ror.org/0246q4714', 'no_lang_code', 1, 'https://ror.org/0246q4714 Comba (China) äŗ¬äæ”é€šäæ”'),
(66834, 'https://ror.org/0246sc786', 'no_lang_code', 1, 'https://ror.org/0246sc786 Kontel Microsystems (China)'),
(66835, 'https://ror.org/0247e9n34', 'no_lang_code', 1, 'https://ror.org/0247e9n34 Cellucomp (United Kingdom)'),
(66836, 'https://ror.org/024aa1608', 'en', 1, 'https://ror.org/024aa1608 Shanghai Pesticide Research Institute äøŠęµ·åø‚å†œčÆē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(66837, 'https://ror.org/024an9j41', 'en', 1, 'https://ror.org/024an9j41 Ministry of Immigration, Diversity and Inclusion MinistĆØre de l’Immigration, de la DiversitĆ© et de l’Inclusion'),
(66838, 'https://ror.org/024ay6y96', 'en', 1, 'https://ror.org/024ay6y96 The Anam Society for the Study Of Education 아남 교윔 ķ•™ķšŒ'),
(66839, 'https://ror.org/024b0tx86', 'it', 1, 'https://ror.org/024b0tx86 Scuola Nazionale dell''Amministrazione'),
(66840, 'https://ror.org/024bc3e07', 'no_lang_code', 1, 'https://ror.org/024bc3e07 Google (United Kingdom)'),
(66841, 'https://ror.org/024cyxm63', 'fr', 1, 'https://ror.org/024cyxm63 Bruxelles-PropretƩ'),
(66842, 'https://ror.org/024emcc52', 'en', 1, 'https://ror.org/024emcc52 The Korean Institute of Communications and Information Sciences ķ•œźµ­ 통신 정볓 ķ•™ķšŒ'),
(66843, 'https://ror.org/024h8zy86', 'en', 1, 'https://ror.org/024h8zy86 Schothorst Feed Research'),
(66844, 'https://ror.org/024hh3630', 'no_lang_code', 1, 'https://ror.org/024hh3630 Dracaena Life (China) é¾™č”€ę ‘ē”Ÿå‘½ęŠ€ęœÆ'),
(66845, 'https://ror.org/024hrs294', 'no_lang_code', 1, 'https://ror.org/024hrs294 Eutechnyx (United Kingdom)'),
(66846, 'https://ror.org/024jtk794', 'en', 1, 'https://ror.org/024jtk794 Munson-Williams-Proctor Arts Institute'),
(66847, 'https://ror.org/024kww824', 'no_lang_code', 1, 'https://ror.org/024kww824 AlphaFox Systems (United Kingdom)'),
(66848, 'https://ror.org/024nvcs33', 'en', 1, 'https://ror.org/024nvcs33 Military Space Academy named after AF Mozhaisky Военно-ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени А. Ф. Можайского'),
(66849, 'https://ror.org/024qq7b50', 'en', 1, 'https://ror.org/024qq7b50 The Korean Society for Brain and Neural Sciences ķ•œźµ­ė‡Œģ‹ ź²½ź³¼ķ•™ķšŒ'),
(66850, 'https://ror.org/024rmbk85', 'en', 1, 'https://ror.org/024rmbk85 The Yeats Society of Korea ķ•œźµ­ģ˜ˆģ“ģø ķ•™ķšŒ'),
(66851, 'https://ror.org/024swd842', 'no_lang_code', 1, 'https://ror.org/024swd842 KuboTek (South Korea) 쿠볓 ķ…'),
(66852, 'https://ror.org/024t3b967', 'no_lang_code', 1, 'https://ror.org/024t3b967 TQ Pharma (Jordan) ؓركة التقدم للصناعات Ų§Ł„ŲÆŁˆŲ§Ų¦ŁŠŲ©'),
(66853, 'https://ror.org/024tkjg80', 'no_lang_code', 1, 'https://ror.org/024tkjg80 Aeirtec (United Kingdom)'),
(66854, 'https://ror.org/024xby240', 'no_lang_code', 1, 'https://ror.org/024xby240 Airport Facilities Management (South Korea) 공항 ģ‹œģ„¤ ꓀리 (주)'),
(66855, 'https://ror.org/025162850', 'en', 1, 'https://ror.org/025162850 The Korean Society Of Western Civilization ķ•œźµ­ ģ„œģ–‘ 문명 ķ•™ķšŒ'),
(66856, 'https://ror.org/0251z6a72', 'en', 1, 'https://ror.org/0251z6a72 Sri Sathya Sai Institute of Higher Medical Sciences ą°¶ą±ą°°ą±€ ą°øą°¤ą±ą°Æ సాయి ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°¹ą°Æą±ą°Æą°°ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°øą±ˆą°Øą±ą°øą±†ą°øą±'),
(66857, 'https://ror.org/0252z0n87', 'no_lang_code', 1, 'https://ror.org/0252z0n87 Peer Intelligence Technology (China)'),
(66858, 'https://ror.org/0253bfw77', 'en', 1, 'https://ror.org/0253bfw77 The National Institute for Strategic Studies ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стратегічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(66859, 'https://ror.org/02558jz83', 'en', 1, 'https://ror.org/02558jz83 Shenzhen Terahertz Technology Innovation Research Institute ę·±åœ³åø‚å¤Ŗčµ«å…¹ē§‘ęŠ€åˆ›ę–°ē ”ē©¶é™¢'),
(66860, 'https://ror.org/0256gay97', 'en', 1, 'https://ror.org/0256gay97 Korean Society for Consumer Studies ķ•œźµ­ģ†Œė¹„ģžķ•™ķšŒ'),
(66861, 'https://ror.org/02587ed69', 'no_lang_code', 1, 'https://ror.org/02587ed69 Bucher Industries (Switzerland)'),
(66862, 'https://ror.org/0259eer23', 'en', 1, 'https://ror.org/0259eer23 Khabarovsk Scientific Research Institute of Epidemiology and Microbiology Єабаровский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(66863, 'https://ror.org/025bqp693', 'en', 1, 'https://ror.org/025bqp693 Korean Association Of Rusists ķ•œźµ­ ė£Øģ‹œģŠ¤ķŠø ķ˜‘ķšŒ'),
(66864, 'https://ror.org/025c3rs34', 'en', 1, 'https://ror.org/025c3rs34 Akademia im. Jakuba z Paradyża w Gorzowie Wielkopolskim The Jacob of Paradies University'),
(66865, 'https://ror.org/025c9az97', 'en', 1, 'https://ror.org/025c9az97 Hunan Nonferrous Metal Research Institute ę¹–å—ęœ‰č‰²é‡‘å±žē ”ē©¶é™¢åˆ›å»ŗ'),
(66866, 'https://ror.org/025cyqr27', 'no_lang_code', 1, 'https://ror.org/025cyqr27 Molloy Environmental Systems (Ireland)'),
(66867, 'https://ror.org/025dn7p74', 'uk', 1, 'https://ror.org/025dn7p74 Ukrnaftokhimproect'),
(66868, 'https://ror.org/025g2vb69', 'en', 1, 'https://ror.org/025g2vb69 All-Russian Research Institute of Irrigation Vegetable and Melon Crops Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Ń€Š¾ŃˆŠ°ŠµŠ¼Š¾Š³Š¾ овощевоГства Šø бахчевоГства'),
(66869, 'https://ror.org/025hrcs91', 'en', 1, 'https://ror.org/025hrcs91 Hefei Urban Planning & Design Institute åˆč‚„åø‚č§„åˆ’č®¾č®”é™¢'),
(66870, 'https://ror.org/025hs2285', 'no_lang_code', 1, 'https://ror.org/025hs2285 Hilong (China) ęµ·éš†é›†å›¢ē¬¬'),
(66871, 'https://ror.org/025j9qd03', 'en', 1, 'https://ror.org/025j9qd03 Lu’ma Native Housing Society'),
(66872, 'https://ror.org/025jpkh15', 'fr', 1, 'https://ror.org/025jpkh15 Institut Eco-Conseil'),
(66873, 'https://ror.org/025kvpn26', 'en', 1, 'https://ror.org/025kvpn26 International Institute for Humanistic Studies'),
(66874, 'https://ror.org/025maj953', 'no_lang_code', 1, 'https://ror.org/025maj953 LyondellBasell (Germany)'),
(66875, 'https://ror.org/025mfxt76', 'en', 1, 'https://ror.org/025mfxt76 Human Resources Agency of New Britain'),
(66876, 'https://ror.org/025mpfp07', 'en', 1, 'https://ror.org/025mpfp07 Tianjin Special Equipment Supervision and Inspection Technology Research Institute å¤©ę“„åø‚ē‰¹ē§č®¾å¤‡ē›‘ē£ę£€ęŸ„ę£€éŖŒęŠ€ęœÆē ”ē©¶é™¢'),
(66877, 'https://ror.org/025n3m882', 'no_lang_code', 1, 'https://ror.org/025n3m882 CCm Technologies (United Kingdom)'),
(66878, 'https://ror.org/025ny0a47', 'en', 1, 'https://ror.org/025ny0a47 Global Education and Culture Institute źø€ė”œė²Œźµģœ”ė¬øķ™”ģ—°źµ¬ģ›'),
(66879, 'https://ror.org/025pqy228', 'en', 1, 'https://ror.org/025pqy228 YIJUN Institute of International Law ģ“ģ¤€ źµ­ģ œė²• 학원'),
(66880, 'https://ror.org/025ptz228', 'en', 1, 'https://ror.org/025ptz228 Korean Marketing Association ķ•œźµ­ė§ˆģ¼€ķŒ…ķ•™ķšŒ'),
(66881, 'https://ror.org/025s0zm80', 'no_lang_code', 1, 'https://ror.org/025s0zm80 MS Clinical Research (India)'),
(66882, 'https://ror.org/025sfcn53', 'en', 1, 'https://ror.org/025sfcn53 Pioneer Valley Planning Commission'),
(66883, 'https://ror.org/025v5g975', 'en', 1, 'https://ror.org/025v5g975 Korean Music Therapy Association ķ•œźµ­ ģŒģ•… 치료 ķ˜‘ķšŒ'),
(66884, 'https://ror.org/025vxa670', 'es', 1, 'https://ror.org/025vxa670 Instituto Interamericano de Cooperación para la Agricultura'),
(66885, 'https://ror.org/025x5jh64', 'en', 1, 'https://ror.org/025x5jh64 Daedong Han Literary Society ėŒ€ė™ķ•œė¬øķ•™ķšŒ'),
(66886, 'https://ror.org/025x7xq24', 'no_lang_code', 1, 'https://ror.org/025x7xq24 Cerbios (Switzerland)'),
(66887, 'https://ror.org/025yaka09', 'en', 1, 'https://ror.org/025yaka09 Lietuvos Socialinių Tyrimų Centras Lithuanian Social Research Centre'),
(66888, 'https://ror.org/025yhyr08', 'en', 1, 'https://ror.org/025yhyr08 Directorate of Fisheries Fiskistofa'),
(66889, 'https://ror.org/025ypjv50', 'en', 1, 'https://ror.org/025ypjv50 Community Water and Sanitation Agency'),
(66890, 'https://ror.org/025z7st22', 'en', 1, 'https://ror.org/025z7st22 Hong Kong Printed Circuit Association é¦™ęøÆå°åˆ¶ē”µč·Æåä¼š'),
(66891, 'https://ror.org/025zvp446', 'no_lang_code', 1, 'https://ror.org/025zvp446 Elektromontaż-Lublin (Poland)'),
(66892, 'https://ror.org/0262wvq91', 'no_lang_code', 1, 'https://ror.org/0262wvq91 Celerity (United States)'),
(66893, 'https://ror.org/0263vns04', 'no_lang_code', 1, 'https://ror.org/0263vns04 Veeva Systems (United States)'),
(66894, 'https://ror.org/0265k7q42', 'no_lang_code', 1, 'https://ror.org/0265k7q42 Triumph Group (United States)'),
(66895, 'https://ror.org/02667ne44', 'en', 1, 'https://ror.org/02667ne44 Korea Housing Association'),
(66896, 'https://ror.org/0266pt959', 'lt', 1, 'https://ror.org/0266pt959 Klaipėdos Miesto Savivaldybė'),
(66897, 'https://ror.org/026737t17', 'en', 1, 'https://ror.org/026737t17 Saratov Research Institute of Rural Hygiene Даратовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельской гигиены'),
(66898, 'https://ror.org/0267beb34', 'en', 1, 'https://ror.org/0267beb34 BECTU (United Kingdom)'),
(66899, 'https://ror.org/0268c6h94', 'en', 1, 'https://ror.org/0268c6h94 Medfit Proactive Healthcare'),
(66900, 'https://ror.org/0269t5q92', 'no_lang_code', 1, 'https://ror.org/0269t5q92 Electronic Arts (United States)'),
(66901, 'https://ror.org/0269yjk51', 'en', 1, 'https://ror.org/0269yjk51 The Musicological Society of Korea ķ•œźµ­ ģŒģ•… ķ•™ķšŒ'),
(66902, 'https://ror.org/026afmr97', 'en', 1, 'https://ror.org/026afmr97 Korean Comparative Education Society ķ•œźµ­ 비교 교윔 ķ•™ķšŒ'),
(66903, 'https://ror.org/026ajc257', 'no_lang_code', 1, 'https://ror.org/026ajc257 iHorizons (Qatar)'),
(66904, 'https://ror.org/026bgaz55', 'en', 1, 'https://ror.org/026bgaz55 Louisiana Organ Procurement Agency'),
(66905, 'https://ror.org/026c0g860', 'no_lang_code', 1, 'https://ror.org/026c0g860 Samil Industry (South Korea)'),
(66906, 'https://ror.org/026cpqs41', 'en', 1, 'https://ror.org/026cpqs41 Graphic Arts Association of Hong Kong'),
(66907, 'https://ror.org/026f8z808', 'en', 1, 'https://ror.org/026f8z808 Shandong Academy of Building Research å±±äøœēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(66908, 'https://ror.org/026fzn952', 'no_lang_code', 1, 'https://ror.org/026fzn952 Guangzhou Automobile Group (China) å¹æå·žę±½č½¦é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(66909, 'https://ror.org/026h0ny75', 'en', 1, 'https://ror.org/026h0ny75 IgazsÔgügyi Minisztérium Ministry of Justice'),
(66910, 'https://ror.org/026hfx847', 'no_lang_code', 1, 'https://ror.org/026hfx847 Electrosonic (United Kingdom)'),
(66911, 'https://ror.org/026hkgb56', 'de', 1, 'https://ror.org/026hkgb56 HBLFA Raumberg-Gumpenstein, Hƶhere Bundeslehr- und Forschungsanstalt Raumberg-Gumpenstein'),
(66912, 'https://ror.org/026kkn784', 'en', 1, 'https://ror.org/026kkn784 Columbus Consolidated Government'),
(66913, 'https://ror.org/026p9k915', 'pl', 1, 'https://ror.org/026p9k915 Agencja Rozwoju Miasta'),
(66914, 'https://ror.org/026pdm559', 'no_lang_code', 1, 'https://ror.org/026pdm559 Il-Yang Pharmaceutical (South Korea) ģ¼ģ–‘ģ•½ķ’ˆ'),
(66915, 'https://ror.org/026ppbb29', 'fr', 1, 'https://ror.org/026ppbb29 FƩdƩration des ComitƩs de Parents du QuƩbec'),
(66916, 'https://ror.org/026rmwf78', 'no_lang_code', 1, 'https://ror.org/026rmwf78 Aesi (China) å…‰äø€ē³»ēµ±ļ¼ˆé¦™ęøÆļ¼‰'),
(66917, 'https://ror.org/026sr2a55', 'no_lang_code', 1, 'https://ror.org/026sr2a55 Encounters Arts (United Kingdom)'),
(66918, 'https://ror.org/026vx6939', 'no_lang_code', 1, 'https://ror.org/026vx6939 Tanvir Hospital ą°¤ą°Øą±ą°µą±€ą°°ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(66919, 'https://ror.org/026w3f849', 'no_lang_code', 1, 'https://ror.org/026w3f849 Jiangsu Yonggang Group (China)'),
(66920, 'https://ror.org/026wyr849', 'en', 1, 'https://ror.org/026wyr849 Economic Geographical Society of Korea ķ•œźµ­ź²½ģ œģ§€ė¦¬ķ•™ķšŒ'),
(66921, 'https://ror.org/026xfzp73', 'no_lang_code', 1, 'https://ror.org/026xfzp73 Siemens (Qatar)'),
(66922, 'https://ror.org/026xvz038', 'no_lang_code', 1, 'https://ror.org/026xvz038 iQIYI (China) ēˆ±å„‡č‰ŗ'),
(66923, 'https://ror.org/026z05h78', 'no_lang_code', 1, 'https://ror.org/026z05h78 Shinawil (Ireland)'),
(66924, 'https://ror.org/026z6mp76', 'en', 1, 'https://ror.org/026z6mp76 Guizhou Water Conservancy and Hydropower Survey and Design Institute č“µå·žę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”é™¢'),
(66925, 'https://ror.org/0271pep11', 'en', 1, 'https://ror.org/0271pep11 Beck Institute for Cognitive Behavior Therapy'),
(66926, 'https://ror.org/02738s524', 'de', 1, 'https://ror.org/02738s524 Bundesverband der Deutschen Ziegelindustrie'),
(66927, 'https://ror.org/0274zyn92', 'en', 1, 'https://ror.org/0274zyn92 Binzhou Technician College ę»Øå·žåø‚ęŠ€åøˆå­¦é™¢'),
(66928, 'https://ror.org/027714w23', 'no_lang_code', 1, 'https://ror.org/027714w23 Zhejiang Shangfeng Industry (China) ęµ™ę±ŸäøŠęµ·å·„äøš'),
(66929, 'https://ror.org/0279ce674', 'no_lang_code', 1, 'https://ror.org/0279ce674 Econboard (Italy)'),
(66930, 'https://ror.org/027adfw95', 'no_lang_code', 1, 'https://ror.org/027adfw95 Chongqing Sinstar Packaging Machinery (China) é‡åŗ†ę–°ę˜ŸåŒ…č£…ęœŗę¢°'),
(66931, 'https://ror.org/027cccy65', 'en', 1, 'https://ror.org/027cccy65 All-Russian Scientific Research Institute of Refrigeration Industry Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ЄолоГильной ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(66932, 'https://ror.org/027cwk965', 'no_lang_code', 1, 'https://ror.org/027cwk965 Bühler (Austria)'),
(66933, 'https://ror.org/027g02171', 'ru', 1, 'https://ror.org/027g02171 Zarubezhneft, Š—Š°Ń€ŃƒŠ±ŠµŠ¶Š½ŠµŃ„Ń‚ŃŒ'),
(66934, 'https://ror.org/027g7ga88', 'en', 1, 'https://ror.org/027g7ga88 All-Russian Research Institute Gradient Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «ГраГиент»'),
(66935, 'https://ror.org/027g9mf44', 'en', 1, 'https://ror.org/027g9mf44 Government of the Philippines'),
(66936, 'https://ror.org/027gawg81', 'en', 1, 'https://ror.org/027gawg81 Kharkiv State Veterinary Academy Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° Гержавна зооветеринарна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(66937, 'https://ror.org/027k9ac11', 'en', 1, 'https://ror.org/027k9ac11 Energy Networks Association'),
(66938, 'https://ror.org/027m4q536', 'no_lang_code', 1, 'https://ror.org/027m4q536 Bolmet (Poland)'),
(66939, 'https://ror.org/027m81w73', 'no_lang_code', 1, 'https://ror.org/027m81w73 Barco (United Kingdom)'),
(66940, 'https://ror.org/027mcbx14', 'en', 1, 'https://ror.org/027mcbx14 Parachute'),
(66941, 'https://ror.org/027n77q19', 'no', 1, 'https://ror.org/027n77q19 Institutt for Eksperimentell Medisinsk Forskning'),
(66942, 'https://ror.org/027qg8776', 'en', 1, 'https://ror.org/027qg8776 Assembly of Manitoba Chiefs'),
(66943, 'https://ror.org/027rn2111', 'en', 1, 'https://ror.org/027rn2111 Suzhou Vocational Institute of Industrial Technology ꜉ č‹å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(66944, 'https://ror.org/027s3ss22', 'en', 1, 'https://ror.org/027s3ss22 Korea Industrial Technology Association ķ•œźµ­ ģ‚°ģ—… 기술 ģ§„ķ„ ķ˜‘ķšŒ'),
(66945, 'https://ror.org/027shs254', 'en', 1, 'https://ror.org/027shs254 Development Agency of Thessaloniki Αναπτυξιακή ĪĪæĪ¼ĪæĻ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚ Ī‘.Ī•'),
(66946, 'https://ror.org/027szw220', 'no_lang_code', 1, 'https://ror.org/027szw220 Inphi (United States)'),
(66947, 'https://ror.org/027tx3c52', 'en', 1, 'https://ror.org/027tx3c52 Korea Medical Devices Industrial Cooperative Association ķ•œźµ­ ģ˜ė£Œ źø°źø° ģ‚°ģ—… ģ”°ķ•©'),
(66948, 'https://ror.org/027xb9s90', 'no_lang_code', 1, 'https://ror.org/027xb9s90 Alteogen (South Korea) ģ•Œķ…Œģ˜¤ģ  '),
(66949, 'https://ror.org/027yjc737', 'en', 1, 'https://ror.org/027yjc737 United States Preventive Services Task Force'),
(66950, 'https://ror.org/0280brb18', 'en', 1, 'https://ror.org/0280brb18 Southington Public School'),
(66951, 'https://ror.org/02888dy92', 'en', 1, 'https://ror.org/02888dy92 HelpAge International'),
(66952, 'https://ror.org/0288css53', 'en', 1, 'https://ror.org/0288css53 Chengdu Documentation and Information Center ęˆéƒ½ę–‡ēŒ®ęƒ…ęŠ„äø­åæƒ'),
(66953, 'https://ror.org/0289qmg93', 'en', 1, 'https://ror.org/0289qmg93 Ministarstvo Pravosuđa Ministry of Justice'),
(66954, 'https://ror.org/028bgy326', 'en', 1, 'https://ror.org/028bgy326 Westminster Graduate School of Theology ģ›ØģŠ¤ķŠøėÆ¼ģŠ¤ķ„°ģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(66955, 'https://ror.org/028casa56', 'no_lang_code', 1, 'https://ror.org/028casa56 GridDuck (United Kingdom)'),
(66956, 'https://ror.org/028dztp68', 'en', 1, 'https://ror.org/028dztp68 The Korean Society of British and American Fiction ķ•œźµ­ź·¼ėŒ€ģ˜ėÆøģ†Œģ„¤ķ•™ķšŒ'),
(66957, 'https://ror.org/028e4ya74', 'no_lang_code', 1, 'https://ror.org/028e4ya74 Maersk (Qatar)'),
(66958, 'https://ror.org/028hjhm59', 'en', 1, 'https://ror.org/028hjhm59 The Korean Society for the Philosophy of Science ķ•œźµ­ ģ² ķ•™ ķ•™ķšŒ'),
(66959, 'https://ror.org/028jhf333', 'fr', 1, 'https://ror.org/028jhf333 Regroupement Provincial en Santé et Bien-Être des Hommes'),
(66960, 'https://ror.org/028kjem67', 'en', 1, 'https://ror.org/028kjem67 Solar Energy Research Institute of Sun Yat-sen University é”ŗå¾·äø­å±±å¤§å­¦å¤Ŗé˜³čƒ½ē ”ē©¶é™¢ē”±'),
(66961, 'https://ror.org/028ngh465', 'en', 1, 'https://ror.org/028ngh465 Young Entrepreneurs Development Council'),
(66962, 'https://ror.org/028v17202', 'no_lang_code', 1, 'https://ror.org/028v17202 Compound Semiconductor Centre (United Kingdom)'),
(66963, 'https://ror.org/028v1x030', 'en', 1, 'https://ror.org/028v1x030 Reverse Rett'),
(66964, 'https://ror.org/028vnkj24', 'en', 1, 'https://ror.org/028vnkj24 Korea Lift College ķ•œźµ­ģŠ¹ź°•źø°ėŒ€ķ•™źµ'),
(66965, 'https://ror.org/028xc0m13', 'no_lang_code', 1, 'https://ror.org/028xc0m13 Dhathri Ayurveda (India)'),
(66966, 'https://ror.org/028xtjj97', 'no_lang_code', 1, 'https://ror.org/028xtjj97 Chengdu Design & Research Institute of Building Materials Industry (China) ęˆéƒ½å»ŗē­‘ęę–™å·„äøšč®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬'),
(66967, 'https://ror.org/028yfvv72', 'no_lang_code', 1, 'https://ror.org/028yfvv72 Equipmake (United Kingdom)'),
(66968, 'https://ror.org/028zc6k33', 'en', 1, 'https://ror.org/028zc6k33 Office of the Minister of State for Administrative Reform Ł…ŁƒŲŖŲØ وزير Ų§Ł„ŲÆŁˆŁ„Ų© Ł„Ų“Ų¤ŁˆŁ† Ų§Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ©'),
(66969, 'https://ror.org/02929hv86', 'en', 1, 'https://ror.org/02929hv86 The Korean Society of Design Culture ķ•œźµ­ė””ģžģøė¬øķ™”ķ•™ķšŒ'),
(66970, 'https://ror.org/02929xv98', 'no_lang_code', 1, 'https://ror.org/02929xv98 Ildong (South Korea) ģ¼ė™ģ œģ•½'),
(66971, 'https://ror.org/0292bdr58', 'en', 1, 'https://ror.org/0292bdr58 Research Institute of Disinfectology Rospotrebnadzor ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гезинфектологии РоспотребнаГзора'),
(66972, 'https://ror.org/02930yz47', 'no_lang_code', 1, 'https://ror.org/02930yz47 Korea Kacoh (South Korea) 코리아칓코'),
(66973, 'https://ror.org/02936ek65', 'fr', 1, 'https://ror.org/02936ek65 Institut Pierre Vernier'),
(66974, 'https://ror.org/0294ypw92', 'en', 1, 'https://ror.org/0294ypw92 Coast to Capital'),
(66975, 'https://ror.org/0297e7684', 'no_lang_code', 1, 'https://ror.org/0297e7684 Sanhua Holding Group (China) äø‰åŽęŽ§č‚”é›†å›¢'),
(66976, 'https://ror.org/029bb7n62', 'no_lang_code', 1, 'https://ror.org/029bb7n62 Industrias PeƱoles PeƱoles (Mexico)'),
(66977, 'https://ror.org/029bt1211', 'en', 1, 'https://ror.org/029bt1211 Sudan Academy for Banking and Financial Sciences Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ł…ŲµŲ±ŁŁŠŲ© ŁˆŲ§Ł„Ł…Ų§Ł„ŁŠŲ©'),
(66978, 'https://ror.org/029crhw36', 'no_lang_code', 1, 'https://ror.org/029crhw36 Siberian Research and Design Institute (Russia) Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(66979, 'https://ror.org/029db8m77', 'no_lang_code', 1, 'https://ror.org/029db8m77 Dynavolt Tech (China) å¹æäøœēŒ›ē‹®ę–°čƒ½ęŗē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(66980, 'https://ror.org/029dhqq81', 'en', 1, 'https://ror.org/029dhqq81 All-Russian Research Institute of Food Additives Всероссийский ŠŠ˜Š˜ пищевых Гобавок'),
(66981, 'https://ror.org/029dmf820', 'no_lang_code', 1, 'https://ror.org/029dmf820 Shandong Iron and Steel Group (China) å±±äøœé’¢é“é›†å›¢'),
(66982, 'https://ror.org/029drer02', 'de', 1, 'https://ror.org/029drer02 Institut für Chemo- und Biosensorik'),
(66983, 'https://ror.org/029eyr524', 'en', 1, 'https://ror.org/029eyr524 Hong Kong Food Council é¦™ęøÆé£Ÿå“å§”å“”ęœƒ'),
(66984, 'https://ror.org/029jy4332', 'en', 1, 'https://ror.org/029jy4332 Military University Военный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(66985, 'https://ror.org/029kkqw66', 'en', 1, 'https://ror.org/029kkqw66 Democratic Commission for Human Development'),
(66986, 'https://ror.org/029m34v77', 'en', 1, 'https://ror.org/029m34v77 Irkutsk Regional Clinical Hospital Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(66987, 'https://ror.org/029ma5383', 'en', 1, 'https://ror.org/029ma5383 Care International'),
(66988, 'https://ror.org/029pvsr13', 'en', 1, 'https://ror.org/029pvsr13 Barnsley Metropolitan Borough Council'),
(66989, 'https://ror.org/029rkvw49', 'en', 1, 'https://ror.org/029rkvw49 The Korean Society for Sociology of Education ķ•œźµ­ ģ‚¬ķšŒ ķ•™ķšŒ'),
(66990, 'https://ror.org/029rs5v28', 'en', 1, 'https://ror.org/029rs5v28 Mental Health, Drug & Alcohol Services Board of Logan and Champaign'),
(66991, 'https://ror.org/029ssav87', 'en', 1, 'https://ror.org/029ssav87 DSMS Group of Institutions ą¦¦ą§ą¦°ą§ą¦—ą¦¾ą¦Ŗą§ą¦° ą¦øą§‹ą¦øą¦¾ą¦‡ą¦Ÿą¦æ অফ ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦øą¦¾ą¦‡ą¦Øą§ą¦ø'),
(66992, 'https://ror.org/029t9vk58', 'no_lang_code', 1, 'https://ror.org/029t9vk58 Yonker Environmental Protection (China) ę°øęø…ēŽÆäæč‚”ä»½ęœ‰é™å…¬åø'),
(66993, 'https://ror.org/029v0q071', 'en', 1, 'https://ror.org/029v0q071 Korean Society for Education through Art ķ•œźµ­źµ­ģ œėÆøģˆ źµģœ”ķ•™ķšŒ'),
(66994, 'https://ror.org/029v5kx43', 'en', 1, 'https://ror.org/029v5kx43 BahĆ”''Ć­ Agency for Social and Economic Development'),
(66995, 'https://ror.org/029wn1m36', 'no_lang_code', 1, 'https://ror.org/029wn1m36 Geotermia Mazowiecka (Poland)'),
(66996, 'https://ror.org/029z1nr51', 'fr', 1, 'https://ror.org/029z1nr51 RĆ©seau FranƧais des Instituts d''Ɖtudes AvancĆ©es'),
(66997, 'https://ror.org/029z8r738', 'en', 1, 'https://ror.org/029z8r738 Olympic Council of Ireland'),
(66998, 'https://ror.org/02a0rnh86', 'en', 1, 'https://ror.org/02a0rnh86 Qingdao Academy of Intelligent Industries é’å²›ę™ŗčƒ½äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(66999, 'https://ror.org/02a3mcc29', 'en', 1, 'https://ror.org/02a3mcc29 Wiltshire and Swindon History Centre'),
(67000, 'https://ror.org/02a3p3j66', 'en', 1, 'https://ror.org/02a3p3j66 Institute for Creation Research'),
(67001, 'https://ror.org/02a62fq70', 'en', 1, 'https://ror.org/02a62fq70 Susquehanna River Basin Commission'),
(67002, 'https://ror.org/02a71hb33', 'en', 1, 'https://ror.org/02a71hb33 Azov Scientific Research Institute of Fisheries Азовский ŠŠ˜Š˜ Рыбного Š„Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(67003, 'https://ror.org/02a7a3437', 'no_lang_code', 1, 'https://ror.org/02a7a3437 DiagCor (China)'),
(67004, 'https://ror.org/02a7e9x96', 'en', 1, 'https://ror.org/02a7e9x96 Federation of German Consumer Organisations Verbraucherzentrale Bundesverband'),
(67005, 'https://ror.org/02a8tfk85', 'en', 1, 'https://ror.org/02a8tfk85 Centre d’innovation sociale en agriculture Centre of Social Innovation in Agriculture'),
(67006, 'https://ror.org/02a98s891', 'en', 1, 'https://ror.org/02a98s891 Helmholtz Institute for RNA-based Infection Research Helmholtz-Institut für RNA-basierte Infektionsforschung'),
(67007, 'https://ror.org/02abbq608', 'en', 1, 'https://ror.org/02abbq608 Suzhou Thermal Engineering Research Institute č‹å·žēƒ­å·„ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(67008, 'https://ror.org/02adfx268', 'en', 1, 'https://ror.org/02adfx268 Native Youth Sexual Health Network'),
(67009, 'https://ror.org/02admgw40', 'no_lang_code', 1, 'https://ror.org/02admgw40 Sulzer (Ireland)'),
(67010, 'https://ror.org/02ajr4b89', 'en', 1, 'https://ror.org/02ajr4b89 Korean Society of Comparision Labor Law ķ•œźµ­ė¹„źµė…øė™ė²•ķ•™ķšŒ'),
(67011, 'https://ror.org/02ammvg77', 'en', 1, 'https://ror.org/02ammvg77 Westminster Schools'),
(67012, 'https://ror.org/02an5qv02', 'en', 1, 'https://ror.org/02an5qv02 Seoul University of Buddhism ģ„œģšøė¶ˆźµėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(67013, 'https://ror.org/02an66777', 'en', 1, 'https://ror.org/02an66777 International Network for Korean Language and Culture źµ­ģ œķ•œźµ­ģ–øģ–“ė¬øķ™”ķ•™ķšŒ'),
(67014, 'https://ror.org/02ap03539', 'no_lang_code', 1, 'https://ror.org/02ap03539 Rosinformagrotekh Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информации Šø технико-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŃ… обоснований Š“Š»Ń инженерно-технического Š¾Š±ŠµŃŠæŠµŃ‡ŠµŠ½ŠøŃ Š°Š³Ń€Š¾ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š³Š¾ комплекса'),
(67015, 'https://ror.org/02apbtx51', 'en', 1, 'https://ror.org/02apbtx51 Hong Kong Printers Association é¦™ęøÆå°åˆ·ę„­å•†ęœƒ'),
(67016, 'https://ror.org/02apbz725', 'en', 1, 'https://ror.org/02apbz725 Korean Society of Civil Engineers ėŒ€ķ•œ 토목 ķ•™ķšŒ'),
(67017, 'https://ror.org/02ard0m30', 'en', 1, 'https://ror.org/02ard0m30 American School of Doha المدرسة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© ŲØŲ§Ł„ŲÆŁˆŲ­Ų©'),
(67018, 'https://ror.org/02arm0y30', 'en', 1, 'https://ror.org/02arm0y30 VA Center for Clinical Management Research'),
(67019, 'https://ror.org/02at8py67', 'en', 1, 'https://ror.org/02at8py67 Sparsh Hospital'),
(67020, 'https://ror.org/02atexs87', 'no_lang_code', 1, 'https://ror.org/02atexs87 Kangmei Pharmaceutical (China) åŗ·ē¾ŽčÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(67021, 'https://ror.org/02atm6p71', 'en', 1, 'https://ror.org/02atm6p71 Marches Energy Agency'),
(67022, 'https://ror.org/02axkfm22', 'no_lang_code', 1, 'https://ror.org/02axkfm22 Alarsin (India)'),
(67023, 'https://ror.org/02azzxw19', 'en', 1, 'https://ror.org/02azzxw19 Liaoning Water Conservancy Society 辽宁省氓利学会');
INSERT INTO `rors` VALUES
(67024, 'https://ror.org/02b12qx63', 'en', 1, 'https://ror.org/02b12qx63 SAGA Heavy Ion Medical Accelerator in Tosu ä¹å·žå›½éš›é‡ē²’å­ē·šćŒć‚“ę²»ē™‚ć‚»ćƒ³ć‚æ'),
(67025, 'https://ror.org/02b1w8773', 'no_lang_code', 1, 'https://ror.org/02b1w8773 Giproniiaviaprom Š“ŠøŠæŃ€Š¾ŠŠ˜Š˜Š°Š²ŠøŠ°ŠæŃ€Š¾Š¼'),
(67026, 'https://ror.org/02b3h4622', 'no_lang_code', 1, 'https://ror.org/02b3h4622 Cambridge Nanotherm (United Kingdom)'),
(67027, 'https://ror.org/02b3rrn27', 'no_lang_code', 1, 'https://ror.org/02b3rrn27 JSS Medical Research (India) ą¤œą„‡ą¤ą¤øą¤ą¤ø ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤°ą¤æą¤øą¤°ą„ą¤š इंऔिया ą¤Ŗą„ą¤°ą¤¾ą„¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤” ą²œą³†ą²Žą²øą³ą²Žą²øą³ ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ಸಂಶೋಧನಾ ಭಾರತ ą²Ŗą³ą²°ą³ˆ. ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(67028, 'https://ror.org/02b49vz59', 'en', 1, 'https://ror.org/02b49vz59 Dr. Panjabrao Deshmukh Memorial Medical College'),
(67029, 'https://ror.org/02b5y2p11', 'en', 1, 'https://ror.org/02b5y2p11 Department of Fisheries and Marine Research Τμήματος Αλιείας και Ī˜Ī±Ī»Ī±ĻƒĻƒĪÆĻ‰Ī½ Ī•ĻĪµĻ…Ī½ĻŽĪ½'),
(67030, 'https://ror.org/02b9rcr39', 'en', 1, 'https://ror.org/02b9rcr39 Harbin Institute of Petroleum å“ˆå°”ę»ØēŸ³ę²¹å­¦é™¢'),
(67031, 'https://ror.org/02ba86714', 'en', 1, 'https://ror.org/02ba86714 Surrey Board of Trade'),
(67032, 'https://ror.org/02bb52086', 'no_lang_code', 1, 'https://ror.org/02bb52086 Mundipharma (South Korea)'),
(67033, 'https://ror.org/02bb56y97', 'en', 1, 'https://ror.org/02bb56y97 Daegu Visually Impaired Culture Center ėŒ€źµ¬ģ‹œź°ģž„ģ• ģøė¬øķ™”ģ›'),
(67034, 'https://ror.org/02bbj5z24', 'en', 1, 'https://ror.org/02bbj5z24 Division of Energy'),
(67035, 'https://ror.org/02be8ew78', 'no_lang_code', 1, 'https://ror.org/02be8ew78 SCIVIC Engineering Corporation (China) ęœŗę¢°å·„äøšē¬¬å››č®¾č®”ē ”ē©¶é™¢'),
(67036, 'https://ror.org/02benpk44', 'fr', 1, 'https://ror.org/02benpk44 Ministère de la Famille, de l''Intégration et à la Grande Région'),
(67037, 'https://ror.org/02bfrg439', 'en', 1, 'https://ror.org/02bfrg439 Heilongjiang Academy of Forestry é»‘é¾™ę±Ÿēœęž—äøšē§‘å­¦é™¢'),
(67038, 'https://ror.org/02bh71182', 'no_lang_code', 1, 'https://ror.org/02bh71182 Chuang''s Consortium International (China) åŗ„ę°å›½é™…č“¢å›¢'),
(67039, 'https://ror.org/02bn1dj67', 'fr', 1, 'https://ror.org/02bn1dj67 Centre d''ƉpidĆ©miologie sur les Causes MĆ©dicales de DĆ©cĆØs'),
(67040, 'https://ror.org/02bnzce68', 'en', 1, 'https://ror.org/02bnzce68 Radiation Safety Directorate Š”ŠøŃ€ŠµŠŗŃ†ŠøŃ˜Š° за Ń€Š°Š“ŠøŃ˜Š°Ń†ŠøŠ¾Š½Š° ŃŠøŠ³ŃƒŃ€Š½Š¾ŃŃ‚'),
(67041, 'https://ror.org/02bv86w93', 'en', 1, 'https://ror.org/02bv86w93 Danish Ministry of Justice Justitsministeriet'),
(67042, 'https://ror.org/02bvdyv86', 'no_lang_code', 1, 'https://ror.org/02bvdyv86 Equilume (Ireland)'),
(67043, 'https://ror.org/02bw9ra57', 'no_lang_code', 1, 'https://ror.org/02bw9ra57 Corium Solutions (United Kingdom)'),
(67044, 'https://ror.org/02bwhra22', 'no_lang_code', 1, 'https://ror.org/02bwhra22 Cloudera (United States)'),
(67045, 'https://ror.org/02bwjed35', 'en', 1, 'https://ror.org/02bwjed35 Central Design and Technology Institute of Valve Construction Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Ń€Š¼Š°Ń‚ŃƒŃ€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(67046, 'https://ror.org/02c2anw65', 'en', 1, 'https://ror.org/02c2anw65 East Belfast Mission'),
(67047, 'https://ror.org/02c2tat87', 'no_lang_code', 1, 'https://ror.org/02c2tat87 Intoinworld ģøķˆ¬ģøģ›”ė“œėŠ”'),
(67048, 'https://ror.org/02c38ff88', 'en', 1, 'https://ror.org/02c38ff88 Central Research Textile Institute Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Ń‚ŠµŠŗŃŃ‚ŠøŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(67049, 'https://ror.org/02c3k5572', 'no_lang_code', 1, 'https://ror.org/02c3k5572 AP Photonics (China) ę„›ä½©å„€å…‰é›»ęŠ€č”“ęœ‰é™å…¬åø'),
(67050, 'https://ror.org/02c451b44', 'en', 1, 'https://ror.org/02c451b44 The English Linguistics Society of Korea ķ•œźµ­ģ˜ģ–“ķ•™ķ•™ķšŒ'),
(67051, 'https://ror.org/02c5w4v13', 'en', 1, 'https://ror.org/02c5w4v13 Gateshead Council'),
(67052, 'https://ror.org/02c5y9t85', 'no_lang_code', 1, 'https://ror.org/02c5y9t85 Positec (China) å®ę—¶å¾—ē§‘ęŠ€'),
(67053, 'https://ror.org/02c67p367', 'no_lang_code', 1, 'https://ror.org/02c67p367 Array Information Technology (United States)'),
(67054, 'https://ror.org/02c85tn61', 'en', 1, 'https://ror.org/02c85tn61 Goodball Academy źµæė³¼ķžė§ģ„¼ķ„°'),
(67055, 'https://ror.org/02c97sq75', 'en', 1, 'https://ror.org/02c97sq75 Liaoning Provincial Institute of Agricultural Mechanization č¾½å®ēœå†œäøšęœŗę¢°åŒ–ē ”ē©¶ę‰€'),
(67056, 'https://ror.org/02cabnz35', 'no_lang_code', 1, 'https://ror.org/02cabnz35 Elytt Energy (Spain)'),
(67057, 'https://ror.org/02cb9fc76', 'en', 1, 'https://ror.org/02cb9fc76 Federal Agrarian Scientific Center of the North-East named after NV Rudnitsky Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ аграрный Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Деверо-Востока имени Š.Š’. Š ŃƒŠ“Š½ŠøŃ†ŠŗŠ¾Š³Š¾'),
(67058, 'https://ror.org/02ccc7d21', 'no_lang_code', 1, 'https://ror.org/02ccc7d21 Albatern (United Kingdom)'),
(67059, 'https://ror.org/02ce9zg48', 'en', 1, 'https://ror.org/02ce9zg48 The Association of Comparative Study of World Literature ģ„øź³„ė¬øķ•™ė¹„źµķ•™ķšŒ'),
(67060, 'https://ror.org/02cfws461', 'no_lang_code', 1, 'https://ror.org/02cfws461 Actimass (United Kingdom)'),
(67061, 'https://ror.org/02cgrtm37', 'en', 1, 'https://ror.org/02cgrtm37 East-Siberian Institute of Medical and Ecological Research Восточно-Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГико-ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований'),
(67062, 'https://ror.org/02cme9q04', 'en', 1, 'https://ror.org/02cme9q04 NHS Forth Valley'),
(67063, 'https://ror.org/02cmtfp09', 'no_lang_code', 1, 'https://ror.org/02cmtfp09 European Recycling Platform (Ireland)'),
(67064, 'https://ror.org/02cnr9p90', 'en', 1, 'https://ror.org/02cnr9p90 Asian Pacific Society of Cardiology'),
(67065, 'https://ror.org/02cpxnn28', 'en', 1, 'https://ror.org/02cpxnn28 Wilmington Public Library'),
(67066, 'https://ror.org/02cq13n41', 'en', 1, 'https://ror.org/02cq13n41 Kentucky Commission on Human Rights'),
(67067, 'https://ror.org/02crg7060', 'en', 1, 'https://ror.org/02crg7060 Guangzhou Urban Planning Survey & Design Institute å¹æå·žåø‚åŸŽåø‚č§„åˆ’å‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢'),
(67068, 'https://ror.org/02csy5q06', 'no_lang_code', 1, 'https://ror.org/02csy5q06 LIT-PHONON (Russia)'),
(67069, 'https://ror.org/02ct9ew61', 'en', 1, 'https://ror.org/02ct9ew61 Korean Urban Management Association ķ•œźµ­ė„ģ‹œķ–‰ģ •ķ•™ķšŒ'),
(67070, 'https://ror.org/02d0ewh10', 'en', 1, 'https://ror.org/02d0ewh10 Florida Department of Economic Opportunity'),
(67071, 'https://ror.org/02d0fkx94', 'en', 1, 'https://ror.org/02d0fkx94 Taiyuan Institute of Technology'),
(67072, 'https://ror.org/02d4rx016', 'en', 1, 'https://ror.org/02d4rx016 International Ginseng & Herb Research Institute źøˆģ‚°źµ­ģ œģøģ‚¼ģ•½ģ“ˆģ—°źµ¬ģ†Œ'),
(67073, 'https://ror.org/02d4waw41', 'no_lang_code', 1, 'https://ror.org/02d4waw41 Lirsot (Russia) Лирсот'),
(67074, 'https://ror.org/02d4zgx43', 'no_lang_code', 1, 'https://ror.org/02d4zgx43 AP Systems (South Korea) ģ—ģ“ķ”¼ģ‹œģŠ¤ķ…œ(주)'),
(67075, 'https://ror.org/02d5jky69', 'en', 1, 'https://ror.org/02d5jky69 Ministry of Communication and Information Technology į‹“.įˆ į‹Øįˆ˜įŒˆįŠ“įŠ›įŠ“ įŠ¢įŠ•įŽįˆ­įˆœįˆ½įŠ• į‰“įŠ­įŠ–įˆŽįŒ‚ įˆšįŠ’įˆµį‰“įˆ­'),
(67076, 'https://ror.org/02d5yh638', 'en', 1, 'https://ror.org/02d5yh638 Korean Association for Public Security Administration ķ•œźµ­ ź³µģ•ˆ ꓀리 ķ˜‘ķšŒ'),
(67077, 'https://ror.org/02d8efy02', 'en', 1, 'https://ror.org/02d8efy02 Institute of Neurosciences Kolkata ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦Øą¦æą¦‰ą¦°ą§‹ą¦øą¦¾ą¦‡ą¦Øą§ą¦øą§‡ą¦ø'),
(67078, 'https://ror.org/02d9xx252', 'en', 1, 'https://ror.org/02d9xx252 Bilquis Postgraduate College For Women Ų®ŁˆŲ§ŲŖŪŒŁ† کے لئے ŲØŁ„Ł‚ŪŒŲ³ Ų§ŪŒŲ¬ŁˆŚ©ŪŒŲ“Ł† کالج'),
(67079, 'https://ror.org/02dcxvm61', 'de', 1, 'https://ror.org/02dcxvm61 Ministerium für Umwelt, Energie, Ernährung und Forsten Rheinland Pfalz'),
(67080, 'https://ror.org/02djm4k77', 'no_lang_code', 1, 'https://ror.org/02djm4k77 Wowiwe Instruction (United States)'),
(67081, 'https://ror.org/02dmx2h89', 'en', 1, 'https://ror.org/02dmx2h89 Korean Family studies Association ķ•œźµ­ź°€ģ”±ķ•™ķšŒ'),
(67082, 'https://ror.org/02dnmrq53', 'en', 1, 'https://ror.org/02dnmrq53 Jiangxi Provincial Institute of Water Sciences ę±Ÿč„æēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(67083, 'https://ror.org/02dnrfk87', 'en', 1, 'https://ror.org/02dnrfk87 Chechen Scientific Research Institute of Agriculture Чеченский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(67084, 'https://ror.org/02dp0cj52', 'en', 1, 'https://ror.org/02dp0cj52 Dundee Contemporary Arts'),
(67085, 'https://ror.org/02dp69877', 'no_lang_code', 1, 'https://ror.org/02dp69877 Corepharmbio (South Korea)'),
(67086, 'https://ror.org/02dpm0z59', 'no_lang_code', 1, 'https://ror.org/02dpm0z59 Kyungdong Pharmaceutical (South Korea) ź²½ė™ģ œģ•½'),
(67087, 'https://ror.org/02dszyb81', 'en', 1, 'https://ror.org/02dszyb81 Scientific Research Institute for Standardization and Unification ŠŠ°ŃƒŃ‡Š½Š¾Ā­ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ станГартизации Šø ŃƒŠ½ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø'),
(67088, 'https://ror.org/02dw6dx51', 'no_lang_code', 1, 'https://ror.org/02dw6dx51 Sinograin (China) 中储粮'),
(67089, 'https://ror.org/02dwzga38', 'en', 1, 'https://ror.org/02dwzga38 The Korean Economic Association ķ•œźµ­ź²½ģ œķ•™ķšŒ'),
(67090, 'https://ror.org/02dxc4q15', 'en', 1, 'https://ror.org/02dxc4q15 Korean Japanese Association ķ•œģ¼ķ˜‘ķšŒ'),
(67091, 'https://ror.org/02dzv6j38', 'en', 1, 'https://ror.org/02dzv6j38 Yulchon Foundation ģœØģ“Œģž¬ė‹Ø'),
(67092, 'https://ror.org/02dzzqz47', 'en', 1, 'https://ror.org/02dzzqz47 Mount Fuji Research Institute åÆŒå£«ē·åˆē ”ē©¶ę‰€'),
(67093, 'https://ror.org/02e1zdz48', 'en', 1, 'https://ror.org/02e1zdz48 Guangxi Special Equipment Inspection Institute å¹æč„æå£®ę—č‡Ŗę²»åŒŗē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(67094, 'https://ror.org/02e246391', 'en', 1, 'https://ror.org/02e246391 Korean Mathematical Society ķ•œźµ­ ģˆ˜ķ•™ķšŒ'),
(67095, 'https://ror.org/02e2v3t76', 'en', 1, 'https://ror.org/02e2v3t76 Korea Medicine Research Institute ķ•œźµ­ ģ˜ģ•½ 연구원'),
(67096, 'https://ror.org/02e58j402', 'no_lang_code', 1, 'https://ror.org/02e58j402 Bioseutica (Netherlands)'),
(67097, 'https://ror.org/02e6k9z27', 'en', 1, 'https://ror.org/02e6k9z27 Wellcome Centre for Anti-Infectives Research'),
(67098, 'https://ror.org/02e8xmx84', 'en', 1, 'https://ror.org/02e8xmx84 China International Engineering Design & Research Institute äø­ęœŗå›½é™…å·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(67099, 'https://ror.org/02e8y3865', 'en', 1, 'https://ror.org/02e8y3865 Keskkonnaministeerium Ministry of the Environment'),
(67100, 'https://ror.org/02ebrh849', 'en', 1, 'https://ror.org/02ebrh849 Gansu Academy of Machinery Science ē”˜č‚ƒēœęœŗę¢°ē§‘å­¦ē ”ē©¶é™¢'),
(67101, 'https://ror.org/02ed4cj64', 'no_lang_code', 1, 'https://ror.org/02ed4cj64 Creative Commons'),
(67102, 'https://ror.org/02ee49b39', 'no_lang_code', 1, 'https://ror.org/02ee49b39 Sibur (Russia)'),
(67103, 'https://ror.org/02eez3a27', 'en', 1, 'https://ror.org/02eez3a27 The Nautical Institute'),
(67104, 'https://ror.org/02eh06394', 'no_lang_code', 1, 'https://ror.org/02eh06394 Made in Sense (China)'),
(67105, 'https://ror.org/02eh7bh87', 'no_lang_code', 1, 'https://ror.org/02eh7bh87 Tebian Electric Apparatus (China) ē‰¹å˜ē”µå·„č‚”ä»½ęœ‰é™å…¬åø'),
(67106, 'https://ror.org/02emh6z37', 'no_lang_code', 1, 'https://ror.org/02emh6z37 Changzhou Institute of Printed Electronics Industry åøøå·žå°åˆ·ē”µå­äŗ§äøšē ”ē©¶é™¢é”µ'),
(67107, 'https://ror.org/02en0fr62', 'en', 1, 'https://ror.org/02en0fr62 Korean Society of Interventional Neuroradiology ėŒ€ķ•œģ‹ ź²½ģ¤‘ģž¬ģ¹˜ė£Œģ˜ķ•™ķšŒ'),
(67108, 'https://ror.org/02en1qh26', 'no_lang_code', 1, 'https://ror.org/02en1qh26 Creative Concern (United Kingdom)'),
(67109, 'https://ror.org/02en5gq32', 'fr', 1, 'https://ror.org/02en5gq32 Commission Scolaire des Hautes RiviĆØres'),
(67110, 'https://ror.org/02epwnv39', 'no_lang_code', 1, 'https://ror.org/02epwnv39 ILJIN Group (South Korea) ģ¼ģ§„ 그룹'),
(67111, 'https://ror.org/02erc6n26', 'no_lang_code', 1, 'https://ror.org/02erc6n26 Information Technology for Market Leadership (Greece)'),
(67112, 'https://ror.org/02ernp878', 'en', 1, 'https://ror.org/02ernp878 Korea Engineering Consultants Corporation ķ•œźµ­ģ¢…ķ•©źø°ģˆ '),
(67113, 'https://ror.org/02esmse85', 'en', 1, 'https://ror.org/02esmse85 Nulife Hospital'),
(67114, 'https://ror.org/02esr1a07', 'en', 1, 'https://ror.org/02esr1a07 Saint Joseph’s Translational Research Institute'),
(67115, 'https://ror.org/02etm4q91', 'pl', 1, 'https://ror.org/02etm4q91 Europejski Instytut Miedzi'),
(67116, 'https://ror.org/02ew2ks20', 'no_lang_code', 1, 'https://ror.org/02ew2ks20 SoftBank Group (Japan) ć‚½ćƒ•ćƒˆćƒćƒ³ć‚Æć‚°ćƒ«ćƒ¼ćƒ—ę Ŗå¼ä¼šē¤¾'),
(67117, 'https://ror.org/02ewh7078', 'en', 1, 'https://ror.org/02ewh7078 Clothing Industry Training Authority åˆ¶č”£äøšč®­ē»ƒå±€'),
(67118, 'https://ror.org/02ey7f844', 'no_lang_code', 1, 'https://ror.org/02ey7f844 Pacific Medical (China)'),
(67119, 'https://ror.org/02eyayb49', 'en', 1, 'https://ror.org/02eyayb49 Northern Lighthouse Board'),
(67120, 'https://ror.org/02eytr588', 'no_lang_code', 1, 'https://ror.org/02eytr588 Phison (Taiwan)'),
(67121, 'https://ror.org/02eyz9636', 'en', 1, 'https://ror.org/02eyz9636 The Korean Society for Practical Theology ķ•œźµ­ ģ‹¤ģ²œ ģ‹ ķ•™ķšŒ'),
(67122, 'https://ror.org/02f0tm013', 'id', 1, 'https://ror.org/02f0tm013 Direktorat Jenderal Peternakan dan Kesehatan Hewan'),
(67123, 'https://ror.org/02f1ve384', 'no_lang_code', 1, 'https://ror.org/02f1ve384 Helia Photonics (United Kingdom)'),
(67124, 'https://ror.org/02f59zk81', 'no_lang_code', 1, 'https://ror.org/02f59zk81 Occidental Petroleum (Qatar)'),
(67125, 'https://ror.org/02f66ex89', 'no_lang_code', 1, 'https://ror.org/02f66ex89 Bio bean (United Kingdom)'),
(67126, 'https://ror.org/02f713g11', 'en', 1, 'https://ror.org/02f713g11 All-Russian Research and Development Technological Institute for the Repair and Operation of the Machine and Tractor Park Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технического ремонта Šø Š¾Š±ŃŠ»ŃƒŠ¶ŠøŠ²Š°Š½ŠøŃ тракторного парка'),
(67127, 'https://ror.org/02f83md58', 'en', 1, 'https://ror.org/02f83md58 Zhejiang Library ęµ™ę±Ÿå›¾ä¹¦é¦†'),
(67128, 'https://ror.org/02f8fjx04', 'en', 1, 'https://ror.org/02f8fjx04 Ashtabula County Mental Health & Recovery Services Board'),
(67129, 'https://ror.org/02f9nks69', 'es', 1, 'https://ror.org/02f9nks69 Instituto Tecnico Agronómico Provincial'),
(67130, 'https://ror.org/02f9qkk54', 'no_lang_code', 1, 'https://ror.org/02f9qkk54 Korea Smart Manufacturing Industry Association (South Korea) ķ•œźµ­ 스마트 ģ œģ”°ģ—… ķ˜‘ķšŒ'),
(67131, 'https://ror.org/02f9z7g16', 'en', 1, 'https://ror.org/02f9z7g16 The Society Of Modern Grammar ķ˜„ėŒ€ 문법 ķ•™ķšŒ'),
(67132, 'https://ror.org/02fakmn72', 'en', 1, 'https://ror.org/02fakmn72 Korea Academic Society of Industrial Organization ķ•œźµ­ ģ‚°ģ—… ķ•™ķšŒ'),
(67133, 'https://ror.org/02fjd2454', 'en', 1, 'https://ror.org/02fjd2454 Decom North Sea'),
(67134, 'https://ror.org/02fn9fg65', 'en', 1, 'https://ror.org/02fn9fg65 Korean Educational Idea Association ķ•œźµ­źµģœ”ģ‚¬ģƒģ—°źµ¬ķšŒ'),
(67135, 'https://ror.org/02fnwm920', 'en', 1, 'https://ror.org/02fnwm920 Conference Board'),
(67136, 'https://ror.org/02fp12092', 'no_lang_code', 1, 'https://ror.org/02fp12092 CeGaT (Germany)'),
(67137, 'https://ror.org/02fpeer60', 'no_lang_code', 1, 'https://ror.org/02fpeer60 2-DTech (United Kingdom)'),
(67138, 'https://ror.org/02fq4hx73', 'no_lang_code', 1, 'https://ror.org/02fq4hx73 Syneos Health (South Korea)'),
(67139, 'https://ror.org/02fqh4r06', 'en', 1, 'https://ror.org/02fqh4r06 Jiangsu Provincial Marine and Fisheries Bureau ę±Ÿč‹ēœęµ·ę“‹äøŽęø”äøšå±€ 地址'),
(67140, 'https://ror.org/02fqjqj75', 'fr', 1, 'https://ror.org/02fqjqj75 HƓpital Clinique Claude-Bernard'),
(67141, 'https://ror.org/02frmqt72', 'no_lang_code', 1, 'https://ror.org/02frmqt72 Korea Information System (South Korea) ķ•œźµ­ 정볓 ģ‹œģŠ¤ķ…œ'),
(67142, 'https://ror.org/02fse8e52', 'en', 1, 'https://ror.org/02fse8e52 Federation of Sri Lankan Local Government Authorities'),
(67143, 'https://ror.org/02ftn0461', 'en', 1, 'https://ror.org/02ftn0461 Ryazan Higher Airborne Command School named after. V. F. Margelov Š ŃŠ·Š°Š½ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ возГушно-Гесантное команГное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ им. Š’. Ф. ŠœŠ°Ń€Š³ŠµŠ»Š¾Š²'),
(67144, 'https://ror.org/02fttt453', 'no_lang_code', 1, 'https://ror.org/02fttt453 VCAST (China)'),
(67145, 'https://ror.org/02fx3wf30', 'de', 1, 'https://ror.org/02fx3wf30 Bundesverband IT-Mittelstand'),
(67146, 'https://ror.org/02g0sqt82', 'en', 1, 'https://ror.org/02g0sqt82 Social Care Institute for Excellence'),
(67147, 'https://ror.org/02g4n2f85', 'en', 1, 'https://ror.org/02g4n2f85 Shanxi Academy of Building Research å±±č„æēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(67148, 'https://ror.org/02g8v2v69', 'en', 1, 'https://ror.org/02g8v2v69 National Cancer Registry'),
(67149, 'https://ror.org/02gbmxj61', 'no_lang_code', 1, 'https://ror.org/02gbmxj61 Certizen (China) ēæ¹ę™‰é›»å­å•†å‹™ęœ‰é™å…¬åø'),
(67150, 'https://ror.org/02gdmz419', 'en', 1, 'https://ror.org/02gdmz419 Liaoning Provincial Bureau of Quality and Technical Supervision č¾½å®ēœč“Øé‡ęŠ€ęœÆē›‘ē£å±€'),
(67151, 'https://ror.org/02gdweq07', 'en', 1, 'https://ror.org/02gdweq07 Suzhou Institute of Trade & Commerce č‹å·žåø‚å•†č“øå­¦é™¢'),
(67152, 'https://ror.org/02gefwx29', 'en', 1, 'https://ror.org/02gefwx29 Department of Metropolitan Development'),
(67153, 'https://ror.org/02gegry54', 'en', 1, 'https://ror.org/02gegry54 Asia-Pacific Centre of Education for International Understanding ģœ ė„¤ģŠ¤ģ½”ģ˜ ģ§€ģ›ķ•˜ģ— ģ•„ģ‹œģ•„ ķƒœķ‰ģ–‘ 국제 ģ“ķ•“ 교윔 센터'),
(67154, 'https://ror.org/02gf6fa33', 'en', 1, 'https://ror.org/02gf6fa33 Forschungsinstitut für Musiktheater Research Institute for Music Theater Studies'),
(67155, 'https://ror.org/02gg0at36', 'en', 1, 'https://ror.org/02gg0at36 Council of European Aerospace Societies'),
(67156, 'https://ror.org/02ghdcm41', 'en', 1, 'https://ror.org/02ghdcm41 Man Up Campaign'),
(67157, 'https://ror.org/02ghs8a63', 'en', 1, 'https://ror.org/02ghs8a63 Federation of Busan Science and Technology ė¶€ģ‚°ź³¼ķ•™źø°ģˆ ķ˜‘ģ˜ķšŒ'),
(67158, 'https://ror.org/02gn6qq35', 'no_lang_code', 1, 'https://ror.org/02gn6qq35 Bladon Jets (United Kingdom)'),
(67159, 'https://ror.org/02gp9tw76', 'no_lang_code', 1, 'https://ror.org/02gp9tw76 Delta Motorsport (United Kingdom)'),
(67160, 'https://ror.org/02gqm6h10', 'no_lang_code', 1, 'https://ror.org/02gqm6h10 Centerprogramsystems Центрпрограммсистем'),
(67161, 'https://ror.org/02gr2xd08', 'en', 1, 'https://ror.org/02gr2xd08 Lietuvos geologijos tarnyba Lithuanian Geological Survey'),
(67162, 'https://ror.org/02grzhe48', 'en', 1, 'https://ror.org/02grzhe48 Yangzhou Polytechnic Institute ę‰¬å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(67163, 'https://ror.org/02gs73d02', 'en', 1, 'https://ror.org/02gs73d02 Antich & Sons (United Kingdom)'),
(67164, 'https://ror.org/02gsggh97', 'en', 1, 'https://ror.org/02gsggh97 Korea Tourism Organization ķ•œźµ­ź“€ź“‘ź³µģ‚¬'),
(67165, 'https://ror.org/02gt4vn57', 'en', 1, 'https://ror.org/02gt4vn57 Kaywon University of Art & Design ģ¼€ģ“ģ› 미술 ėŒ€ķ•™'),
(67166, 'https://ror.org/02gteh527', 'en', 1, 'https://ror.org/02gteh527 European Mentoring Coaching Council'),
(67167, 'https://ror.org/02gtpap31', 'en', 1, 'https://ror.org/02gtpap31 Institute of Industrial Engineers å·„äøšå·„ēØ‹åøˆå­¦ä¼š'),
(67168, 'https://ror.org/02gvdqg22', 'en', 1, 'https://ror.org/02gvdqg22 Changzhou Changchao Electronic Research Institute åøøå·žåø‚åøøč¶…ē”µå­ē ”ē©¶ę‰€'),
(67169, 'https://ror.org/02gww2486', 'bs', 1, 'https://ror.org/02gww2486 Federalni hidrometeoroloŔki zavod'),
(67170, 'https://ror.org/02gynz496', 'en', 1, 'https://ror.org/02gynz496 MCC Huatian Engineering and Technology Corporation äø­å†¶åŽå¤©å·„ēØ‹ęŠ€ęœÆå…¬åø'),
(67171, 'https://ror.org/02gzaeb51', 'no_lang_code', 1, 'https://ror.org/02gzaeb51 Alliance Data (United States)'),
(67172, 'https://ror.org/02gze7m48', 'en', 1, 'https://ror.org/02gze7m48 Hong Kong Biotechnology Organization é¦™ęøÆē”Ÿē‰©ē§‘ęŠ€å”ęœƒ'),
(67173, 'https://ror.org/02h07sr78', 'no_lang_code', 1, 'https://ror.org/02h07sr78 Luxshare ICT (China) ē«‹č®Æē²¾åÆ†å·„äøšč‚”ä»½ęœ‰é™å…¬åø'),
(67174, 'https://ror.org/02h0gy831', 'en', 1, 'https://ror.org/02h0gy831 Institute of Transportation Engineers'),
(67175, 'https://ror.org/02h0nxr45', 'no_lang_code', 1, 'https://ror.org/02h0nxr45 The Debajehmujig Creation Centre (Canada)'),
(67176, 'https://ror.org/02h221462', 'en', 1, 'https://ror.org/02h221462 Korean Association of Public Safety and Criminal Justice ķ•œźµ­ź³µģ•ˆķ–‰ģ •ķ•™ķšŒ'),
(67177, 'https://ror.org/02h6hms35', 'no_lang_code', 1, 'https://ror.org/02h6hms35 Anhui Transport Consulting & Design Institute (China) å®‰å¾½äŗ¤é€šå’ØčÆ¢č®¾č®”é™¢'),
(67178, 'https://ror.org/02h812s98', 'en', 1, 'https://ror.org/02h812s98 Korea Social Science Research Council ķ•œźµ­ģ‚¬ķšŒź³¼ķ•™ģ—°źµ¬ķ˜‘ģ˜ķšŒ'),
(67179, 'https://ror.org/02h91ww72', 'en', 1, 'https://ror.org/02h91ww72 Institute for Research and Innovation in Social Services'),
(67180, 'https://ror.org/02habex41', 'en', 1, 'https://ror.org/02habex41 Tianjin Plastics Research Institute å¤©ę“„åø‚å”‘ę–™ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(67181, 'https://ror.org/02hbjae69', 'en', 1, 'https://ror.org/02hbjae69 Gyeonggi Research Institute 경기연구원'),
(67182, 'https://ror.org/02hbtf857', 'en', 1, 'https://ror.org/02hbtf857 Hong Kong Design Centre é¦™ęøÆčØ­čØˆäø­åæƒ'),
(67183, 'https://ror.org/02hcww794', 'no_lang_code', 1, 'https://ror.org/02hcww794 Suning (China)'),
(67184, 'https://ror.org/02hf3eh91', 'no_lang_code', 1, 'https://ror.org/02hf3eh91 Eska (Netherlands)'),
(67185, 'https://ror.org/02hgfj293', 'en', 1, 'https://ror.org/02hgfj293 Siberian Research Institute of Agricultural Economics Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Š”Š¤ŠŠ¦Š Š ŠŠ'),
(67186, 'https://ror.org/02hn5dg93', 'en', 1, 'https://ror.org/02hn5dg93 Vaidyaratnam P.S. Varier Ayurveda College'),
(67187, 'https://ror.org/02hnfym30', 'no_lang_code', 1, 'https://ror.org/02hnfym30 Platysens (China)'),
(67188, 'https://ror.org/02hp59b61', 'no_lang_code', 1, 'https://ror.org/02hp59b61 Folium Optics (United Kingdom)'),
(67189, 'https://ror.org/02hp6vh93', 'en', 1, 'https://ror.org/02hp6vh93 New Jersey Pinelands Commission'),
(67190, 'https://ror.org/02hpa6r82', 'no_lang_code', 1, 'https://ror.org/02hpa6r82 Zhejiang Zhe Kuang Heavy Industries (China) ęµ™ēŸæé‡å·„'),
(67191, 'https://ror.org/02hqs8f63', 'en', 1, 'https://ror.org/02hqs8f63 Nanjing Institute of Mechatronic Technology å—äŗ¬ęœŗē”µęŠ€ęœÆē ”ē©¶ę‰€'),
(67192, 'https://ror.org/02hw5jq67', 'en', 1, 'https://ror.org/02hw5jq67 Dr. Syamala Reddy Dental College Hospital & Research Center'),
(67193, 'https://ror.org/02hw94g08', 'no_lang_code', 1, 'https://ror.org/02hw94g08 Ballyhoura Development (Ireland)'),
(67194, 'https://ror.org/02hwfmb37', 'no_lang_code', 1, 'https://ror.org/02hwfmb37 Hundsun (China) ę’ē”Ÿē§‘ęŠ€'),
(67195, 'https://ror.org/02hx87760', 'no_lang_code', 1, 'https://ror.org/02hx87760 Canary Wharf Group (United Kingdom)'),
(67196, 'https://ror.org/02hxk7x55', 'no_lang_code', 1, 'https://ror.org/02hxk7x55 Beijing Institute of Power Machinery (China) åŒ—äŗ¬åŠØåŠ›ęœŗę¢°ē ”ē©¶ę‰€'),
(67197, 'https://ror.org/02hzqtm46', 'pl', 1, 'https://ror.org/02hzqtm46 Ministerstwo Infrastruktury'),
(67198, 'https://ror.org/02j0mrt81', 'no_lang_code', 1, 'https://ror.org/02j0mrt81 Pharmicell (South Korea) ķŒŒėÆøģ…€'),
(67199, 'https://ror.org/02j0x3x48', 'en', 1, 'https://ror.org/02j0x3x48 The Shakespeare Association of Korea ķ•œźµ­ģ…°ģµģŠ¤ķ”¼ģ–“ķ•™ķšŒ'),
(67200, 'https://ror.org/02j29rq40', 'en', 1, 'https://ror.org/02j29rq40 Arab Medical Association Against Cancer ā€«Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł…ŁƒŲ§ŁŲ­Ų© Ų§Ł„Ų³Ų±Ų·Ų§Ł†ā€¬ā€Ž'),
(67201, 'https://ror.org/02j488654', 'no_lang_code', 1, 'https://ror.org/02j488654 Abbott (China) 雅培'),
(67202, 'https://ror.org/02j64yq05', 'en', 1, 'https://ror.org/02j64yq05 Auckland Castle Trust'),
(67203, 'https://ror.org/02j6dqk07', 'no_lang_code', 1, 'https://ror.org/02j6dqk07 Coletex (Russia) ŠšŠ¾Š»ŠµŃ‚ŠµŠŗŃ'),
(67204, 'https://ror.org/02j6s3h86', 'no_lang_code', 1, 'https://ror.org/02j6s3h86 Otsuka (South Korea) ķ•œźµ­ģ˜¤ģø ģ¹“ģ œģ•½'),
(67205, 'https://ror.org/02j79w189', 'en', 1, 'https://ror.org/02j79w189 Ram Poly Clinic'),
(67206, 'https://ror.org/02jfjpx40', 'no_lang_code', 1, 'https://ror.org/02jfjpx40 Kabe (Poland)'),
(67207, 'https://ror.org/02jfw5430', 'en', 1, 'https://ror.org/02jfw5430 Powys Dance'),
(67208, 'https://ror.org/02jgyee30', 'en', 1, 'https://ror.org/02jgyee30 The Society of Korean Traditional Costume ķ•œė³µė¬øķ™”ķ•™ķšŒ'),
(67209, 'https://ror.org/02jh1bj14', 'no_lang_code', 1, 'https://ror.org/02jh1bj14 Oshkosh (United States)'),
(67210, 'https://ror.org/02jmf0570', 'en', 1, 'https://ror.org/02jmf0570 Changsha Mineral Resources Exploration Center é•æę²™ēŸæäŗ§čµ„ęŗå‹˜ęŸ„äø­åæƒ'),
(67211, 'https://ror.org/02jnvb825', 'en', 1, 'https://ror.org/02jnvb825 Department of Cultural Heritage Kultūros paveldo departamentas'),
(67212, 'https://ror.org/02jpkw737', 'no_lang_code', 1, 'https://ror.org/02jpkw737 Acidophil (United Kingdom)'),
(67213, 'https://ror.org/02jpsw347', 'no_lang_code', 1, 'https://ror.org/02jpsw347 Kelun Group (China) å››å·ē§‘ä¼¦čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(67214, 'https://ror.org/02jqc2b23', 'no_lang_code', 1, 'https://ror.org/02jqc2b23 Zhen Ding Technology (Taiwan)'),
(67215, 'https://ror.org/02jr9jv46', 'en', 1, 'https://ror.org/02jr9jv46 Hong Kong Federation of Youth Groups é¦™ęøÆé’å¹“å”ęœƒ'),
(67216, 'https://ror.org/02jv1px47', 'en', 1, 'https://ror.org/02jv1px47 Kyungnam College of Information and Technology ź²½ė‚Øģ •ė³“ėŒ€ķ•™źµ'),
(67217, 'https://ror.org/02jwva135', 'no_lang_code', 1, 'https://ror.org/02jwva135 Piramal (United States)'),
(67218, 'https://ror.org/02jwva620', 'no_lang_code', 1, 'https://ror.org/02jwva620 Gelexir Healthcare (United Kingdom)'),
(67219, 'https://ror.org/02jx32965', 'en', 1, 'https://ror.org/02jx32965 Department of Science & Technology'),
(67220, 'https://ror.org/02jy5y626', 'en', 1, 'https://ror.org/02jy5y626 Voronezh Research Institute Vega Воронежский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(67221, 'https://ror.org/02k2g5975', 'no_lang_code', 1, 'https://ror.org/02k2g5975 PowerELab (China)'),
(67222, 'https://ror.org/02k550c65', 'en', 1, 'https://ror.org/02k550c65 VNU Central Institute for Natural Resources and Environmental Studies Viện TĆ i NguyĆŖn vĆ  MĆ“i TrĘ°į»ng'),
(67223, 'https://ror.org/02k6fy602', 'no_lang_code', 1, 'https://ror.org/02k6fy602 Guangdong Hiway Integrated Circuit Technology (China)'),
(67224, 'https://ror.org/02k8k3617', 'no_lang_code', 1, 'https://ror.org/02k8k3617 Actelion (South Korea)'),
(67225, 'https://ror.org/02k9fzh35', 'no_lang_code', 1, 'https://ror.org/02k9fzh35 Cooper Standard (United States)'),
(67226, 'https://ror.org/02k9k1t09', 'pt', 1, 'https://ror.org/02k9k1t09 Administração e Gestão de Sistemas de Salubridade'),
(67227, 'https://ror.org/02k9pct19', 'en', 1, 'https://ror.org/02k9pct19 Institute of Physiology, Komi Science Center Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¹ физиологии Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ'),
(67228, 'https://ror.org/02kd16s45', 'no_lang_code', 1, 'https://ror.org/02kd16s45 OPKO Health (Ireland)'),
(67229, 'https://ror.org/02kk3jn69', 'en', 1, 'https://ror.org/02kk3jn69 Institute of Women and Ethnic Studies'),
(67230, 'https://ror.org/02kkn9893', 'en', 1, 'https://ror.org/02kkn9893 Advocates for Children of New York'),
(67231, 'https://ror.org/02kmbbe05', 'en', 1, 'https://ror.org/02kmbbe05 Hong Kong Surface Finishing Society é¦™ęøÆč”Øé¢å¤„ē†å­¦ä¼š'),
(67232, 'https://ror.org/02kn1p956', 'en', 1, 'https://ror.org/02kn1p956 Korea Institute for Industrial Economics and Trade ģ‚°ģ—…ģ—°źµ¬ģ›ģ€ 국낓외 ģ‚°ģ—…ź³¼ ė¬“ģ—­ķ†µģƒ 분야넼 ģ„œė”œ ģ—°ź³„ķ•˜ģ—¬'),
(67233, 'https://ror.org/02knxf196', 'no_lang_code', 1, 'https://ror.org/02knxf196 TAKE Solutions (India)'),
(67234, 'https://ror.org/02kp07769', 'en', 1, 'https://ror.org/02kp07769 American Conference of Governmental Industrial Hygienists'),
(67235, 'https://ror.org/02kqpay82', 'no_lang_code', 1, 'https://ror.org/02kqpay82 Scientific Research Institute of Sanitary Technology (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сантехники'),
(67236, 'https://ror.org/02kqsaj20', 'en', 1, 'https://ror.org/02kqsaj20 Krishna Maternity and Surgical Nursing Home'),
(67237, 'https://ror.org/02kras730', 'no_lang_code', 1, 'https://ror.org/02kras730 Prexton Therapeutics (Netherlands)'),
(67238, 'https://ror.org/02ktcfe74', 'en', 1, 'https://ror.org/02ktcfe74 Kimpo University ź¹€ķ¬ ėŒ€ķ•™źµ'),
(67239, 'https://ror.org/02ktw5c97', 'no_lang_code', 1, 'https://ror.org/02ktw5c97 Walgreens Boots Alliance (United Kingdom)'),
(67240, 'https://ror.org/02kxkje75', 'en', 1, 'https://ror.org/02kxkje75 Association for the Study of Literature & Environment 문학 ė° ķ™˜ź²½ ķ•™ķšŒ'),
(67241, 'https://ror.org/02kxkxq59', 'en', 1, 'https://ror.org/02kxkxq59 Working Men’s Institute'),
(67242, 'https://ror.org/02ky5cy15', 'no_lang_code', 1, 'https://ror.org/02ky5cy15 Nuritas (Ireland)'),
(67243, 'https://ror.org/02kyk8452', 'en', 1, 'https://ror.org/02kyk8452 Shine Center for Autism'),
(67244, 'https://ror.org/02m014756', 'en', 1, 'https://ror.org/02m014756 Irish Council for Civil Liberties'),
(67245, 'https://ror.org/02m0d9n15', 'de', 1, 'https://ror.org/02m0d9n15 Bundesverband der Deutschen Binnenschiffahrt'),
(67246, 'https://ror.org/02m2pq682', 'en', 1, 'https://ror.org/02m2pq682 Open Space Institute'),
(67247, 'https://ror.org/02m3rv513', 'en', 1, 'https://ror.org/02m3rv513 Shingu College ģ‹ źµ¬ėŒ€ķ•™źµ'),
(67248, 'https://ror.org/02m4v1f10', 'no_lang_code', 1, 'https://ror.org/02m4v1f10 Energy Transitions (United Kingdom)'),
(67249, 'https://ror.org/02m679f68', 'en', 1, 'https://ror.org/02m679f68 Tula Artillery Engineering Institute Тульский артиллерийский инженерный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(67250, 'https://ror.org/02m7bcm44', 'no_lang_code', 1, 'https://ror.org/02m7bcm44 Medtronic (China) ē¾Žę•¦åŠ›'),
(67251, 'https://ror.org/02m7v0022', 'no_lang_code', 1, 'https://ror.org/02m7v0022 Fusion Innovations (United Kingdom)'),
(67252, 'https://ror.org/02m9wbt95', 'en', 1, 'https://ror.org/02m9wbt95 European Coil Coating Association'),
(67253, 'https://ror.org/02m9zj664', 'no_lang_code', 1, 'https://ror.org/02m9zj664 Quest Integrity (New Zealand)'),
(67254, 'https://ror.org/02mad9e91', 'en', 1, 'https://ror.org/02mad9e91 Think-tank for Action on Social Change'),
(67255, 'https://ror.org/02mag1e82', 'en', 1, 'https://ror.org/02mag1e82 Full Fact'),
(67256, 'https://ror.org/02mcdae06', 'en', 1, 'https://ror.org/02mcdae06 Wuhan Ship Development & Design Institute ę­¦ę±‰čˆ¹čˆ¶č®¾č®”ē ”ē©¶é™¢'),
(67257, 'https://ror.org/02mfx6g88', 'no_lang_code', 1, 'https://ror.org/02mfx6g88 Cardiocity (United Kingdom)'),
(67258, 'https://ror.org/02mgny734', 'en', 1, 'https://ror.org/02mgny734 AIDS Vancouver'),
(67259, 'https://ror.org/02mnaa826', 'no_lang_code', 1, 'https://ror.org/02mnaa826 China Design Group (China) 中设设讔集团肔份'),
(67260, 'https://ror.org/02mndw455', 'fr', 1, 'https://ror.org/02mndw455 SociƩtƩ QuƩbƩcoise de NƩphrologie'),
(67261, 'https://ror.org/02mq35511', 'en', 1, 'https://ror.org/02mq35511 British Cycling'),
(67262, 'https://ror.org/02mt26r85', 'en', 1, 'https://ror.org/02mt26r85 Transportation Research Board'),
(67263, 'https://ror.org/02mts0a81', 'en', 1, 'https://ror.org/02mts0a81 Institut de Recherches Sociales Internationales Institute for International Social Research'),
(67264, 'https://ror.org/02n2dfg29', 'en', 1, 'https://ror.org/02n2dfg29 Sichuan Fire Research Institute'),
(67265, 'https://ror.org/02n5fqy27', 'en', 1, 'https://ror.org/02n5fqy27 Siberian Aeronautical Research Institute Named After S.A. Chaplygin Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиации им. Š”. А. Чаплыгина'),
(67266, 'https://ror.org/02n5gsq82', 'no_lang_code', 1, 'https://ror.org/02n5gsq82 Giprokoks (Ukraine) Š“Š˜ŠŸŠ ŠžŠšŠžŠšŠ”'),
(67267, 'https://ror.org/02n6dhr29', 'en', 1, 'https://ror.org/02n6dhr29 Zhejiang Water Conservancy and Hydropower Survey and Design Institute ęµ™ę±Ÿēœę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”é™¢'),
(67268, 'https://ror.org/02n6fv369', 'en', 1, 'https://ror.org/02n6fv369 Jinhua Academy of Agricultural Sciences'),
(67269, 'https://ror.org/02n76vp69', 'en', 1, 'https://ror.org/02n76vp69 Changzhou Zhiye Medical Devices Institute åøøå·žåø‚ę™ŗäøšåŒ»ē–—ä»Ŗå™Øē ”ē©¶ę‰€ęœ‰'),
(67270, 'https://ror.org/02na80n77', 'en', 1, 'https://ror.org/02na80n77 Zhangjiagang Smartgrid Fanghua Electrical Energy Storage Research Institute å¼ å®¶ęøÆę™ŗčƒ½ē”µē½‘ę–¹åŽē”µčƒ½å‚Øčƒ½ē ”ē©¶ę‰€'),
(67271, 'https://ror.org/02nbbm116', 'no_lang_code', 1, 'https://ror.org/02nbbm116 Changchun Municipal Engineering Design and Research Institute (China) é•æę˜„åø‚åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢ č”ē³»ē”µčÆ'),
(67272, 'https://ror.org/02nbv7m70', 'no_lang_code', 1, 'https://ror.org/02nbv7m70 Biogen (India)'),
(67273, 'https://ror.org/02ndpzr30', 'en', 1, 'https://ror.org/02ndpzr30 The Korean Physical Society ķ•œźµ­ė¬¼ė¦¬ķ•™ķšŒ'),
(67274, 'https://ror.org/02ne61390', 'es', 1, 'https://ror.org/02ne61390 Universidad PolitƩcnica Metropolitana de Hidalgo'),
(67275, 'https://ror.org/02nee2y72', 'en', 1, 'https://ror.org/02nee2y72 Buein Zahra Technical University'),
(67276, 'https://ror.org/02nfvkt86', 'no_lang_code', 1, 'https://ror.org/02nfvkt86 Digitalia (Poland)'),
(67277, 'https://ror.org/02ng64w29', 'en', 1, 'https://ror.org/02ng64w29 Dobrich Local Agency for Energy Management Добрич ŠŠ³ŠµŠ½Ń†ŠøŃ за ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŠµ на ŠµŠ½ŠµŃ€Š³ŠøŃŃ‚а'),
(67278, 'https://ror.org/02ngyjm59', 'en', 1, 'https://ror.org/02ngyjm59 Marine Renewables Industry Association'),
(67279, 'https://ror.org/02nh1m314', 'no_lang_code', 1, 'https://ror.org/02nh1m314 Ravenbhel Healthcare (India)'),
(67280, 'https://ror.org/02nhpf205', 'fr', 1, 'https://ror.org/02nhpf205 CancƩropƓle Lyon Auvergne-RhƓne-Alpes'),
(67281, 'https://ror.org/02nj97t48', 'en', 1, 'https://ror.org/02nj97t48 Adesh University'),
(67282, 'https://ror.org/02nkezr98', 'no_lang_code', 1, 'https://ror.org/02nkezr98 (주)ģ‹ ķ™”ģ˜ė£Œźø° Shinhwa Medical (South Korea)'),
(67283, 'https://ror.org/02nkkj123', 'en', 1, 'https://ror.org/02nkkj123 Danish Ministry of Taxation Skatteministeriet'),
(67284, 'https://ror.org/02nn1vm89', 'no_lang_code', 1, 'https://ror.org/02nn1vm89 Workday (United States)'),
(67285, 'https://ror.org/02nncgd63', 'no_lang_code', 1, 'https://ror.org/02nncgd63 BNP Paribas (United Kingdom)'),
(67286, 'https://ror.org/02npqkq54', 'en', 1, 'https://ror.org/02npqkq54 Human Factors and Ergonomics Society'),
(67287, 'https://ror.org/02ns8zp42', 'no_lang_code', 1, 'https://ror.org/02ns8zp42 Numerical Method (China)'),
(67288, 'https://ror.org/02nsc9n54', 'en', 1, 'https://ror.org/02nsc9n54 Local Enterprise Office Cork North & West'),
(67289, 'https://ror.org/02nv0e913', 'en', 1, 'https://ror.org/02nv0e913 Bristol Health Partners'),
(67290, 'https://ror.org/02nyad521', 'no_lang_code', 1, 'https://ror.org/02nyad521 CHTC Fong’s Industries (China)'),
(67291, 'https://ror.org/02p1cew82', 'en', 1, 'https://ror.org/02p1cew82 Korean Society for Engineering Education ķ•œźµ­ź³µķ•™źµģœ”ķ•™ķšŒ'),
(67292, 'https://ror.org/02p3n3q94', 'no_lang_code', 1, 'https://ror.org/02p3n3q94 Fiberpro (South Korea) ķŒŒģ“ė²„ķ”„ė”œ'),
(67293, 'https://ror.org/02p3w0b60', 'en', 1, 'https://ror.org/02p3w0b60 Koguryeo College 고구려 ėŒ€ķ•™'),
(67294, 'https://ror.org/02p50nh51', 'en', 1, 'https://ror.org/02p50nh51 Korea-China Humanities Society ķ•œģ¤‘ģøė¬øķ•™ķšŒ'),
(67295, 'https://ror.org/02p5pfd82', 'pt', 1, 'https://ror.org/02p5pfd82 Instituto de Gestão Financeira e Equipamentos da Justiça'),
(67296, 'https://ror.org/02pcqkp81', 'no_lang_code', 1, 'https://ror.org/02pcqkp81 Artstor'),
(67297, 'https://ror.org/02pgg0p54', 'en', 1, 'https://ror.org/02pgg0p54 Russian Union of Refrigeration Enterprises Российский ŃŠ¾ŃŽŠ· ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠ¹ Ń…Š¾Š»Š¾Š“ŠøŠ»ŃŒŠ½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(67298, 'https://ror.org/02phqhd85', 'en', 1, 'https://ror.org/02phqhd85 Research Institute of Hermes ŠŠ˜Š˜ "Š“Š•Š ŠœŠ•Š”"'),
(67299, 'https://ror.org/02phz7j25', 'no_lang_code', 1, 'https://ror.org/02phz7j25 3Brain (Switzerland)'),
(67300, 'https://ror.org/02pjk8429', 'en', 1, 'https://ror.org/02pjk8429 The Sisters of Charity of Ottawa les Soeurs de la CharitĆ© d’Ottawa'),
(67301, 'https://ror.org/02pjxh370', 'en', 1, 'https://ror.org/02pjxh370 Medieval and Early Modern English Studies Association of Korea ķ•œźµ­ģ¤‘ģ„øė„“ė„¤ģƒģŠ¤ģ˜ė¬øķ•™ķšŒ'),
(67302, 'https://ror.org/02pk6rm23', 'en', 1, 'https://ror.org/02pk6rm23 Chengdu Surveying Geotechnical Research Institute äø­å†¶ęˆéƒ½å‹˜åÆŸē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(67303, 'https://ror.org/02pn2hw69', 'no_lang_code', 1, 'https://ror.org/02pn2hw69 Neuromod (Ireland)'),
(67304, 'https://ror.org/02pn32n10', 'en', 1, 'https://ror.org/02pn32n10 British High Commission Singapore'),
(67305, 'https://ror.org/02pn5rj08', 'en', 1, 'https://ror.org/02pn5rj08 State Key Laboratory of Cryptology åÆ†ē ē§‘å­¦ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤ē”±å›½å®¶åÆ†ē ē®”ē†å±€äø»ē®”'),
(67306, 'https://ror.org/02pnqx643', 'en', 1, 'https://ror.org/02pnqx643 Shanxi Electromechanical Design and Research Institute å±±č„æęœŗę¢°č®¾č®”ē ”ē©¶é™¢'),
(67307, 'https://ror.org/02pps8d22', 'en', 1, 'https://ror.org/02pps8d22 Anhui 3D Printing Intelligent Equipment Industry Technology Research Institute å®‰å¾½ēœę˜„č°·3Dę‰“å°ę™ŗčƒ½č£…å¤‡äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(67308, 'https://ror.org/02pqag031', 'en', 1, 'https://ror.org/02pqag031 Partnership for Dengue Control'),
(67309, 'https://ror.org/02pqvpt18', 'no_lang_code', 1, 'https://ror.org/02pqvpt18 Cambridge Intellectual Property (United Kingdom)'),
(67310, 'https://ror.org/02pr5zn71', 'no_lang_code', 1, 'https://ror.org/02pr5zn71 Wisers (China)'),
(67311, 'https://ror.org/02prs4262', 'no_lang_code', 1, 'https://ror.org/02prs4262 Dr.Chung’s Food (South Korea)'),
(67312, 'https://ror.org/02ps68973', 'no_lang_code', 1, 'https://ror.org/02ps68973 Vodafone (Qatar)'),
(67313, 'https://ror.org/02ptkm873', 'no_lang_code', 1, 'https://ror.org/02ptkm873 Jiangyin Traffic Planning Survey & Design Institute (China) ę±Ÿé˜“åø‚äŗ¤é€šč§„åˆ’å‹˜åÆŸč®¾č®”é™¢ęœ‰é™å…¬åøå‰'),
(67314, 'https://ror.org/02ptmys64', 'en', 1, 'https://ror.org/02ptmys64 Korean Nuclear Society ķ•œźµ­ģ›ģžė „ķ•™ķšŒ'),
(67315, 'https://ror.org/02pvd9627', 'no_lang_code', 1, 'https://ror.org/02pvd9627 Barratt Developments (United Kingdom)'),
(67316, 'https://ror.org/02pvf2m42', 'no_lang_code', 1, 'https://ror.org/02pvf2m42 Progressive Technology (China)'),
(67317, 'https://ror.org/02pwhra18', 'no_lang_code', 1, 'https://ror.org/02pwhra18 LakePharma (United States)'),
(67318, 'https://ror.org/02px07p57', 'no_lang_code', 1, 'https://ror.org/02px07p57 Siniat (United Kingdom)'),
(67319, 'https://ror.org/02pxqb184', 'no_lang_code', 1, 'https://ror.org/02pxqb184 Dalian Synthetic Fiber Research and Design Institute (China) å¤§čæžåˆęˆēŗ¤ē»“ē ”ē©¶č®¾č®”é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(67320, 'https://ror.org/02pxwy266', 'no_lang_code', 1, 'https://ror.org/02pxwy266 (주)캐리마 Carima (South Korea)'),
(67321, 'https://ror.org/02pyy0k06', 'en', 1, 'https://ror.org/02pyy0k06 Interactive Systems & Technologies'),
(67322, 'https://ror.org/02pzg9066', 'no_lang_code', 1, 'https://ror.org/02pzg9066 China Railway Major Bridge Reconnaissance & Design Institute (China) äø­å›½é“č·Æå¤§ę”„å‹˜åÆŸč®¾č®”é™¢'),
(67323, 'https://ror.org/02q3pze66', 'en', 1, 'https://ror.org/02q3pze66 Age Action Alliance'),
(67324, 'https://ror.org/02q5b4225', 'en', 1, 'https://ror.org/02q5b4225 Hong Kong Association For Integration Of Chinese-Western Medicine'),
(67325, 'https://ror.org/02q5y6156', 'en', 1, 'https://ror.org/02q5y6156 Nanchang Institute of Science & Technology'),
(67326, 'https://ror.org/02q7gp705', 'en', 1, 'https://ror.org/02q7gp705 Ministry of Science and Technology įˆ³į‹­įŠ•įˆµ įŠ„įŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ įˆšįŠ’įˆµį‰“įˆ­'),
(67327, 'https://ror.org/02q9rf286', 'en', 1, 'https://ror.org/02q9rf286 Sustainable Development Institute'),
(67328, 'https://ror.org/02qby5382', 'en', 1, 'https://ror.org/02qby5382 Anhui Institute of Architectural Research and Design'),
(67329, 'https://ror.org/02qcmfw42', 'fr', 1, 'https://ror.org/02qcmfw42 Relais Femmes'),
(67330, 'https://ror.org/02qcpmn35', 'en', 1, 'https://ror.org/02qcpmn35 Northwest Institute of Mining and Metallurgy č„æåŒ—ēŸæå†¶ē ”ē©¶é™¢'),
(67331, 'https://ror.org/02qd73916', 'no_lang_code', 1, 'https://ror.org/02qd73916 Brigit''s Garden'),
(67332, 'https://ror.org/02qd8zg55', 'no_lang_code', 1, 'https://ror.org/02qd8zg55 McCormick Advanced Marcomm Services (Ireland)'),
(67333, 'https://ror.org/02qe51g80', 'en', 1, 'https://ror.org/02qe51g80 The Eden Rivers Trust'),
(67334, 'https://ror.org/02qgeqz65', 'no_lang_code', 1, 'https://ror.org/02qgeqz65 Alcove (United Kingdom)'),
(67335, 'https://ror.org/02qgskp52', 'en', 1, 'https://ror.org/02qgskp52 Institute of Medical Cell Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинских клеточных технологий'),
(67336, 'https://ror.org/02qh6my57', 'en', 1, 'https://ror.org/02qh6my57 Skogsstyrelsen Swedish Forest Agency'),
(67337, 'https://ror.org/02qhbts44', 'en', 1, 'https://ror.org/02qhbts44 Vernadsky State Geological Museum Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Геологический Музей им. Š’.И. ВернаГского Š ŠŠ'),
(67338, 'https://ror.org/02qjrh386', 'en', 1, 'https://ror.org/02qjrh386 Korea Association of japanology ķ•œźµ­ģ¼ė³øķ•™ķšŒ'),
(67339, 'https://ror.org/02qk9nj07', 'en', 1, 'https://ror.org/02qk9nj07 Ministero delle Infrastrutture e dei Trasporti Ministry of Infrastructures and Transport'),
(67340, 'https://ror.org/02qmdtn88', 'no_lang_code', 1, 'https://ror.org/02qmdtn88 Scientific Research Institute of Polymer Material (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ полимерных материалов'),
(67341, 'https://ror.org/02qms3512', 'no_lang_code', 1, 'https://ror.org/02qms3512 Assist Mi (United Kingdom)'),
(67342, 'https://ror.org/02qp22n14', 'en', 1, 'https://ror.org/02qp22n14 Association for Supply Chain Management, Procurement and Logistics Bundesverband Materialwirtschaft, Einkauf und Logistik'),
(67343, 'https://ror.org/02qqdvw36', 'en', 1, 'https://ror.org/02qqdvw36 Korea Communication Association ķ•œźµ­ 통신 ķ˜‘ķšŒ'),
(67344, 'https://ror.org/02qrd8y65', 'en', 1, 'https://ror.org/02qrd8y65 Euro-Centrum'),
(67345, 'https://ror.org/02qtf7714', 'no_lang_code', 1, 'https://ror.org/02qtf7714 KoreaBio 코리아 ė°”ģ“ģ˜¤'),
(67346, 'https://ror.org/02qv38g46', 'no_lang_code', 1, 'https://ror.org/02qv38g46 RBio (South Korea)'),
(67347, 'https://ror.org/02qv8f649', 'en', 1, 'https://ror.org/02qv8f649 Research Institute of Mining Geomechanics and Mine Surveying ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горно'),
(67348, 'https://ror.org/02qv9b386', 'en', 1, 'https://ror.org/02qv9b386 Korean Housing Association ėŒ€ķ•œ ģ£¼ķƒ ģ”°ķ•©'),
(67349, 'https://ror.org/02qwdgg40', 'no_lang_code', 1, 'https://ror.org/02qwdgg40 VDE Prüf- und Zertifizierungsinstitut (Germany)'),
(67350, 'https://ror.org/02qwr8r69', 'en', 1, 'https://ror.org/02qwr8r69 S Nijalingappa Medical College and HSK Hospital & Research Centre'),
(67351, 'https://ror.org/02qwswa66', 'no_lang_code', 1, 'https://ror.org/02qwswa66 Genoss (South Korea)'),
(67352, 'https://ror.org/02qx4d724', 'en', 1, 'https://ror.org/02qx4d724 Bangalore Medical Center'),
(67353, 'https://ror.org/02qy75381', 'no_lang_code', 1, 'https://ror.org/02qy75381 Cisco Systems (China)'),
(67354, 'https://ror.org/02qyqxk84', 'no_lang_code', 1, 'https://ror.org/02qyqxk84 Qiagen (Netherlands)'),
(67355, 'https://ror.org/02qze4h25', 'no_lang_code', 1, 'https://ror.org/02qze4h25 Caching Technology (China)'),
(67356, 'https://ror.org/02r21h126', 'en', 1, 'https://ror.org/02r21h126 The Society for Chinese Cultural Studies ģ¤‘źµ­ė¬øķ™”ģ—°źµ¬ķ•™ķšŒ'),
(67357, 'https://ror.org/02r4hr462', 'en', 1, 'https://ror.org/02r4hr462 Istituto Virtuale dei Nano Film Virtual Institute of Nano Films'),
(67358, 'https://ror.org/02r4j2j30', 'en', 1, 'https://ror.org/02r4j2j30 Korean Society for Child Education ķ•œźµ­ģ•„ė™źµģœ”ķ•™ķšŒ'),
(67359, 'https://ror.org/02r57zt28', 'en', 1, 'https://ror.org/02r57zt28 Qingdao Academy of Agricultural Sciences'),
(67360, 'https://ror.org/02r7hdt50', 'en', 1, 'https://ror.org/02r7hdt50 Gwangmyeong Mental Health Welfare Center ź“‘ėŖ…ģ‹œģ •ģ‹ ź±“ź°•ė³µģ§€ģ„¼ķ„°'),
(67361, 'https://ror.org/02r82ad48', 'en', 1, 'https://ror.org/02r82ad48 Hong Kong Retail Management Association é¦™ęøÆé›¶å”®ē®”ē†åä¼š'),
(67362, 'https://ror.org/02ra22j36', 'en', 1, 'https://ror.org/02ra22j36 Nano Technology Research Association ė‚˜ė…øģœµķ•©ģ‚°ģ—…ģ—°źµ¬ģ”°ķ•©'),
(67363, 'https://ror.org/02ra28290', 'en', 1, 'https://ror.org/02ra28290 Irkutsk Research Institute of the Forestry Industry Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лесной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(67364, 'https://ror.org/02rake840', 'no_lang_code', 1, 'https://ror.org/02rake840 Esquel Group (China)'),
(67365, 'https://ror.org/02rb7k030', 'no_lang_code', 1, 'https://ror.org/02rb7k030 AI Factory (United Kingdom)'),
(67366, 'https://ror.org/02rcz2a29', 'no_lang_code', 1, 'https://ror.org/02rcz2a29 Bio Pharm Dongsung (South Korea) ė™ģ„±ģ œģ•½ģ£¼ģ‹ķšŒģ‚¬'),
(67367, 'https://ror.org/02ree3t31', 'no_lang_code', 1, 'https://ror.org/02ree3t31 Zigong Light Industry Design Institute (China) č‡Ŗč“”åø‚č½»å·„äøšč®¾č®”ē ”ē©¶é™¢'),
(67368, 'https://ror.org/02rehe313', 'en', 1, 'https://ror.org/02rehe313 China Communications Tianjin Port Exploration & Design Institute äø­äŗ¤å¤©å’Œęœŗę¢°č®¾å¤‡åˆ¶é€ '),
(67369, 'https://ror.org/02rf2nk31', 'no_lang_code', 1, 'https://ror.org/02rf2nk31 ADTRAN (United States)'),
(67370, 'https://ror.org/02rh42t66', 'no_lang_code', 1, 'https://ror.org/02rh42t66 JK (Poland)'),
(67371, 'https://ror.org/02rkpd451', 'en', 1, 'https://ror.org/02rkpd451 Saoirse Foundation'),
(67372, 'https://ror.org/02rpbcj12', 'en', 1, 'https://ror.org/02rpbcj12 Scientific Research Institute of Technology named after AP Aleksandrov ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ А. П. АлексанГров'),
(67373, 'https://ror.org/02rqvg733', 'en', 1, 'https://ror.org/02rqvg733 Hong Kong Organic Waste Recycling Centre é¦™ęøÆęœ‰ę©Ÿč³‡ęŗå†ē”Ÿäø­'),
(67374, 'https://ror.org/02rr12038', 'de', 1, 'https://ror.org/02rr12038 LVR-Institut für Landeskunde und Regionalgeschichte'),
(67375, 'https://ror.org/02rzqa255', 'no_lang_code', 1, 'https://ror.org/02rzqa255 KT&G (South Korea) ģ£¼ģ‹ķšŒģ‚¬ ģ¼€ģ“ķ‹°ģ•¤ģ§€'),
(67376, 'https://ror.org/02s0pv682', 'en', 1, 'https://ror.org/02s0pv682 Hong Kong Exporters’ Association é¦™ęøÆå‡ŗå£å•†åä¼š'),
(67377, 'https://ror.org/02s2m5c86', 'de', 1, 'https://ror.org/02s2m5c86 Bundesverband Reifenhandel und Vulkaniseur-Handwerk'),
(67378, 'https://ror.org/02s322r10', 'en', 1, 'https://ror.org/02s322r10 Narodowy Instytut Audiowizualny National Audiovisual Institute'),
(67379, 'https://ror.org/02s3fnw45', 'no_lang_code', 1, 'https://ror.org/02s3fnw45 Advanced Technology & Materials (China)'),
(67380, 'https://ror.org/02s48dm85', 'en', 1, 'https://ror.org/02s48dm85 Centre de Recherche en NumƩrique de Sfax Digital Research Centre of Sfax'),
(67381, 'https://ror.org/02s5nq722', 'en', 1, 'https://ror.org/02s5nq722 All-Russian Research Institute of Relay Engineering Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ релейной инженерии'),
(67382, 'https://ror.org/02s6y7k21', 'en', 1, 'https://ror.org/02s6y7k21 Central Research Institute of Materials Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ материалов'),
(67383, 'https://ror.org/02s7bv320', 'es', 1, 'https://ror.org/02s7bv320 Instituto Navarro de TecnologĆ­a e Infraestructuras Agroalimentarias'),
(67384, 'https://ror.org/02s8kjs61', 'no_lang_code', 1, 'https://ror.org/02s8kjs61 Ensemble Studio Theatre (United States)'),
(67385, 'https://ror.org/02s97qm42', 'en', 1, 'https://ror.org/02s97qm42 European Consortium for Ocean Research Drilling'),
(67386, 'https://ror.org/02sb0kr07', 'no_lang_code', 1, 'https://ror.org/02sb0kr07 Ayush Arihant (India) ą¤†ą¤Æą„ą¤· अरिहंत ą¤‡ą¤‚ą¤”ą¤øą„ą¤Ÿą„ą¤°ą„€ą¤œ'),
(67387, 'https://ror.org/02scqqt19', 'en', 1, 'https://ror.org/02scqqt19 Institutul National de Cercetare – Dezvoltare pentru Ecologie Industriala National Institute for Research and Development for Industrial Ecology'),
(67388, 'https://ror.org/02se2k984', 'en', 1, 'https://ror.org/02se2k984 All-Russian Scientific Research Institute of Technical Physics Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технической физики'),
(67389, 'https://ror.org/02sfdh709', 'no_lang_code', 1, 'https://ror.org/02sfdh709 Sohu (China) ęœē‹'),
(67390, 'https://ror.org/02sfk5x26', 'no_lang_code', 1, 'https://ror.org/02sfk5x26 Byotrol (United Kingdom)'),
(67391, 'https://ror.org/02shrfh49', 'no_lang_code', 1, 'https://ror.org/02shrfh49 Yutong (China)'),
(67392, 'https://ror.org/02smtnw54', 'no_lang_code', 1, 'https://ror.org/02smtnw54 Tatneft (Russia) Š¢Š°Ń‚Š½ŠµŃ„Ń‚ŃŒ'),
(67393, 'https://ror.org/02srhtt90', 'en', 1, 'https://ror.org/02srhtt90 Ukrainian Institute for Public Policy'),
(67394, 'https://ror.org/02ssta106', 'en', 1, 'https://ror.org/02ssta106 CỄc ThĆŗ y Việt Nam Department of Animal Health');
INSERT INTO `rors` VALUES
(67395, 'https://ror.org/02svsbh35', 'no_lang_code', 1, 'https://ror.org/02svsbh35 Wix.com (Israel)'),
(67396, 'https://ror.org/02swpkm89', 'en', 1, 'https://ror.org/02swpkm89 HIV Community Link'),
(67397, 'https://ror.org/02swqvf47', 'en', 1, 'https://ror.org/02swqvf47 PTEN Hamartoma Tumor Syndrome Foundation'),
(67398, 'https://ror.org/02szepc22', 'en', 1, 'https://ror.org/02szepc22 Suzhou Institute of Systems Medicine č‹å·žåø‚ē³»ē»ŸåŒ»å­¦ē ”ē©¶ę‰€'),
(67399, 'https://ror.org/02t09mq75', 'no_lang_code', 1, 'https://ror.org/02t09mq75 SEI (United States)'),
(67400, 'https://ror.org/02t0g3v76', 'en', 1, 'https://ror.org/02t0g3v76 The Korean Association of Language Studies ķ•œźµ­ģ–øģ–“ģ—°źµ¬ķ•™ķšŒ'),
(67401, 'https://ror.org/02t3k2v42', 'no_lang_code', 1, 'https://ror.org/02t3k2v42 Suga International Holdings (China)'),
(67402, 'https://ror.org/02t3qgb38', 'no_lang_code', 1, 'https://ror.org/02t3qgb38 China GreatWall Technology Group (China) äø­å›½é•æåŸŽē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(67403, 'https://ror.org/02t40d841', 'no_lang_code', 1, 'https://ror.org/02t40d841 Serdia Pharmaceuticals (India)'),
(67404, 'https://ror.org/02t41e292', 'en', 1, 'https://ror.org/02t41e292 Russian Space Systems Российские космические системы'),
(67405, 'https://ror.org/02t4g5c48', 'en', 1, 'https://ror.org/02t4g5c48 Arab Civil Aviation Commission Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų·ŁŠŲ±Ų§Ł† Ų§Ł„Ł…ŲÆŁ†ŁŠ'),
(67406, 'https://ror.org/02t6vd455', 'en', 1, 'https://ror.org/02t6vd455 Hį»™i đồng ChĆ­nh sĆ”ch KH&CN quốc gia National Council for Science and Technology Policy'),
(67407, 'https://ror.org/02t835g30', 'en', 1, 'https://ror.org/02t835g30 Shanghai Architectural Design & Research Institute äøŠęµ·å»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(67408, 'https://ror.org/02t8wny28', 'no_lang_code', 1, 'https://ror.org/02t8wny28 Tianjin Ganghang Installation Engineering (China) å¤©ę“„ęøÆčˆŖå®‰č£…å·„ēØ‹ęœ‰é™č“£ä»»å…¬åø'),
(67409, 'https://ror.org/02t9r5804', 'en', 1, 'https://ror.org/02t9r5804 Korea Institute of Theological Information ķ•œźµ­ģ‹ ķ•™ģ •ė³“ģ—°źµ¬ģ›'),
(67410, 'https://ror.org/02tawe219', 'en', 1, 'https://ror.org/02tawe219 Ministry of Environment and Water ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на околната среГа Šø воГите'),
(67411, 'https://ror.org/02tdp6375', 'en', 1, 'https://ror.org/02tdp6375 Korean Association Of Social Welfare Policy ķ•œźµ­ ģ‚¬ķšŒ 복지 ģ •ģ±… ķ•™ķšŒ'),
(67412, 'https://ror.org/02tdv0r69', 'no_lang_code', 1, 'https://ror.org/02tdv0r69 "Зенит ТрейГинг" Zenit Trading (Russia)'),
(67413, 'https://ror.org/02tf3z094', 'en', 1, 'https://ror.org/02tf3z094 British Board of Film Classification'),
(67414, 'https://ror.org/02tfjqk24', 'no_lang_code', 1, 'https://ror.org/02tfjqk24 Stalproekt (Russia) Š”Ń‚Š°Š»ŃŒŠæŃ€Š¾ŠµŠŗŃ‚'),
(67415, 'https://ror.org/02thf7b44', 'no_lang_code', 1, 'https://ror.org/02thf7b44 SillyCube Technology (China)'),
(67416, 'https://ror.org/02thsp703', 'no_lang_code', 1, 'https://ror.org/02thsp703 ASV (United Kingdom)'),
(67417, 'https://ror.org/02tn9qe75', 'en', 1, 'https://ror.org/02tn9qe75 Accreditation and Quality Assurance Commission لجنة الاعتماد ŁˆŲ¶Ł…Ų§Ł† Ų§Ł„Ų¬ŁˆŲÆŲ©'),
(67418, 'https://ror.org/02trvhh22', 'no_lang_code', 1, 'https://ror.org/02trvhh22 Korea Accounting Standards Board ķ•œźµ­ ķšŒź³„ 기준 원'),
(67419, 'https://ror.org/02tszw848', 'en', 1, 'https://ror.org/02tszw848 European Energy Research Alliance Europese Alliantie voor Energieonderzoek'),
(67420, 'https://ror.org/02tt9pw11', 'en', 1, 'https://ror.org/02tt9pw11 Ministarstvo ZaŔtite OkoliŔa i Energetike Ministry of Environmental Protection and Energy'),
(67421, 'https://ror.org/02tthqe19', 'en', 1, 'https://ror.org/02tthqe19 Tianjin Institute of Advanced Technology å¤©ę“„äø­ē§‘å…ˆčæ›ęŠ€ęœÆē ”ē©¶é™¢'),
(67422, 'https://ror.org/02tzdnt26', 'no_lang_code', 1, 'https://ror.org/02tzdnt26 Sante Mernaud (India)'),
(67423, 'https://ror.org/02tzmrb07', 'en', 1, 'https://ror.org/02tzmrb07 Guodian Institute of Science and Technology å›½ē”µē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(67424, 'https://ror.org/02v72s867', 'no_lang_code', 1, 'https://ror.org/02v72s867 Jasco (United Kingdom)'),
(67425, 'https://ror.org/02v74rx67', 'en', 1, 'https://ror.org/02v74rx67 Chengdu Pump Application Technology Research Institute'),
(67426, 'https://ror.org/02v8tah71', 'ga', 1, 'https://ror.org/02v8tah71 AisƩirƭ'),
(67427, 'https://ror.org/02vdh2x09', 'en', 1, 'https://ror.org/02vdh2x09 City College of Dongguan University of Technology äøœčŽžē†å·„å­¦é™¢åŸŽåø‚å­¦é™¢'),
(67428, 'https://ror.org/02vdn6c95', 'en', 1, 'https://ror.org/02vdn6c95 Cluid Housing'),
(67429, 'https://ror.org/02vef8c56', 'no_lang_code', 1, 'https://ror.org/02vef8c56 Opto Circuits (India)'),
(67430, 'https://ror.org/02vf30q73', 'en', 1, 'https://ror.org/02vf30q73 Ministry of Health Эрүүл Š¼ŃŠ½Š“ийн ŃŠ°Š¼'),
(67431, 'https://ror.org/02vfbts58', 'en', 1, 'https://ror.org/02vfbts58 Ministerstwo Finansów Ministry of Finance'),
(67432, 'https://ror.org/02vg9gp47', 'en', 1, 'https://ror.org/02vg9gp47 Guangzhou Building Materials Institute å¹æå·žå»ŗē­‘ęę–™ē ”ē©¶ę‰€'),
(67433, 'https://ror.org/02vh2ts72', 'no_lang_code', 1, 'https://ror.org/02vh2ts72 Goodwin (United Kingdom)'),
(67434, 'https://ror.org/02vhnq558', 'sq', 1, 'https://ror.org/02vhnq558 Instituti Kombƫtar i Shƫndetƫsisƫ Publike'),
(67435, 'https://ror.org/02vj92h59', 'en', 1, 'https://ror.org/02vj92h59 IAM RoadSmart'),
(67436, 'https://ror.org/02vjrna94', 'fr', 1, 'https://ror.org/02vjrna94 Ministère de la Fonction Publique et de la Réforme Administrative'),
(67437, 'https://ror.org/02vm8jd66', 'no_lang_code', 1, 'https://ror.org/02vm8jd66 RT-RK Institute for Computer Based Systems (Serbia)'),
(67438, 'https://ror.org/02vmc0j64', 'no_lang_code', 1, 'https://ror.org/02vmc0j64 D-RisQ (United Kingdom)'),
(67439, 'https://ror.org/02vmmpc69', 'en', 1, 'https://ror.org/02vmmpc69 Fairfax-Falls Church Community Services Board'),
(67440, 'https://ror.org/02vn18x32', 'en', 1, 'https://ror.org/02vn18x32 The Textlinguistic Society of Korea ķ•œźµ­ķ…ģŠ¤ķŠøģ–øģ–“ķ•™ķšŒ'),
(67441, 'https://ror.org/02vnfe476', 'no_lang_code', 1, 'https://ror.org/02vnfe476 Zhe jiang Research Institute of Traditional Chinese Medicine (China) ęµ™ę±Ÿēœäø­åŒ»čÆē ”ē©¶é™¢'),
(67442, 'https://ror.org/02vptss42', 'en', 1, 'https://ror.org/02vptss42 Hebrew SeniorLife'),
(67443, 'https://ror.org/02vtcpw89', 'en', 1, 'https://ror.org/02vtcpw89 The Korean Society for German History ķ•œźµ­ė…ģ¼ģ‚¬ķ•™ķšŒ'),
(67444, 'https://ror.org/02vx4zx98', 'en', 1, 'https://ror.org/02vx4zx98 Beijing Jingshida Electromechanical Equipment Research Institute åŒ—äŗ¬åø‚č­¦č§†č¾¾ęœŗē”µč®¾å¤‡ē ”ē©¶ę‰€ęœ‰é™'),
(67445, 'https://ror.org/02vxhn688', 'en', 1, 'https://ror.org/02vxhn688 Chenguang Research Institute of Chemical Industry'),
(67446, 'https://ror.org/02vxnkm75', 'no_lang_code', 1, 'https://ror.org/02vxnkm75 GaitSmart (United Kingdom)'),
(67447, 'https://ror.org/02vy0w981', 'no_lang_code', 1, 'https://ror.org/02vy0w981 ESP Technology (United Kingdom)'),
(67448, 'https://ror.org/02vy6fy03', 'no_lang_code', 1, 'https://ror.org/02vy6fy03 GeoCento (United Kingdom)'),
(67449, 'https://ror.org/02vy7sg87', 'en', 1, 'https://ror.org/02vy7sg87 Hunan Rice Research Institute ę¹–å—ēœę°“ēØ»ē ”ē©¶ę‰€'),
(67450, 'https://ror.org/02w083059', 'en', 1, 'https://ror.org/02w083059 Immigrant Institute Immigrant-institutet'),
(67451, 'https://ror.org/02w1g8568', 'en', 1, 'https://ror.org/02w1g8568 The Academy of Sciences of Hong Kong 香港科学院'),
(67452, 'https://ror.org/02w1tnr53', 'en', 1, 'https://ror.org/02w1tnr53 Scientific Institute of Pearl River Water Resources Protection ē ę±Ÿę°“čµ„ęŗäæęŠ¤ē§‘å­¦ē ”ē©¶ę‰€'),
(67453, 'https://ror.org/02w2qw090', 'no_lang_code', 1, 'https://ror.org/02w2qw090 Charles River Laboratories (Germany)'),
(67454, 'https://ror.org/02w3ejv56', 'no_lang_code', 1, 'https://ror.org/02w3ejv56 Eclipse Research Consultants (United Kingdom)'),
(67455, 'https://ror.org/02w4f0s33', 'no_lang_code', 1, 'https://ror.org/02w4f0s33 Larkfleet (United Kingdom)'),
(67456, 'https://ror.org/02w4hck30', 'no_lang_code', 1, 'https://ror.org/02w4hck30 JW Pharmaceutical (South Korea) JWģ¤‘ģ™øģ œģ•½'),
(67457, 'https://ror.org/02w5vdf29', 'en', 1, 'https://ror.org/02w5vdf29 Caribbean Health Research Council'),
(67458, 'https://ror.org/02w5yvv06', 'no_lang_code', 1, 'https://ror.org/02w5yvv06 Neo Access (South Korea) ė„¤ģ˜¤ģ—‘ģ„øģŠ¤'),
(67459, 'https://ror.org/02w6cg233', 'en', 1, 'https://ror.org/02w6cg233 Central Research Institute of Building Constructions named after VA Kucherenko Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ†ŠøŠ¹ имени Š’.А. ŠšŃƒŃ‡ŠµŃ€ŠµŠ½ŠŗŠ¾'),
(67460, 'https://ror.org/02w82cx27', 'en', 1, 'https://ror.org/02w82cx27 Korean Social History Association ķ•œźµ­ ģ‚¬ķšŒģ‚¬ ķ˜‘ķšŒ'),
(67461, 'https://ror.org/02w8vq828', 'en', 1, 'https://ror.org/02w8vq828 Hong Kong International Arbitration Centre é¦™ęøÆå›½é™…ä»²č£äø­åæƒ'),
(67462, 'https://ror.org/02w9cqe69', 'en', 1, 'https://ror.org/02w9cqe69 Guangxi Transportation Research Institute å¹æč„æäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(67463, 'https://ror.org/02waqvh82', 'no_lang_code', 1, 'https://ror.org/02waqvh82 China Building Standard Design and Research Institute (China) 中国建筑标准设讔研究院'),
(67464, 'https://ror.org/02wazkc54', 'en', 1, 'https://ror.org/02wazkc54 Ivanovo State Agricultural Academy named after D.K. Belyaev Š˜Š²Š°Š½Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Š”.К. Š‘ŠµŠ»ŃŠµŠ²Š°'),
(67465, 'https://ror.org/02wbfy710', 'no_lang_code', 1, 'https://ror.org/02wbfy710 Xeolas Pharmaceuticals (Ireland)'),
(67466, 'https://ror.org/02wdyv422', 'en', 1, 'https://ror.org/02wdyv422 Ministry for Transport, Infrastructure and Capital Projects'),
(67467, 'https://ror.org/02wgmby61', 'no_lang_code', 1, 'https://ror.org/02wgmby61 GreenCross Medical Science (South Korea)'),
(67468, 'https://ror.org/02wj1da11', 'en', 1, 'https://ror.org/02wj1da11 Dagestan Scientific Research Institute of Agriculture Named After F.G. Kysriev Š¤Š“Š‘ŠŠ£ Š”ŠŠ“Š•Š”Š¢ŠŠŠ”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š”Š•Š›Š¬Š”ŠšŠžŠ“Šž Š„ŠžŠ—ŠÆŠ™Š”Š¢Š’Š Š˜ŠœŠ•ŠŠ˜ Ф.Š“.ŠšŠ˜Š”Š Š˜Š•Š’Š'),
(67469, 'https://ror.org/02wk38057', 'no_lang_code', 1, 'https://ror.org/02wk38057 2DHeat (United Kingdom)'),
(67470, 'https://ror.org/02wkqjs50', 'no_lang_code', 1, 'https://ror.org/02wkqjs50 Exerscout (Ireland)'),
(67471, 'https://ror.org/02wks8h31', 'no_lang_code', 1, 'https://ror.org/02wks8h31 MixSemi (China)'),
(67472, 'https://ror.org/02wn4vf74', 'en', 1, 'https://ror.org/02wn4vf74 Korean Association for Political Economy ķ•œźµ­ģ‚¬ķšŒź²½ģ œķ•™ķšŒ'),
(67473, 'https://ror.org/02wnznw20', 'no_lang_code', 1, 'https://ror.org/02wnznw20 Boliden Tara Mines (Ireland)'),
(67474, 'https://ror.org/02wv4rx62', 'ga', 1, 'https://ror.org/02wv4rx62 Foróige'),
(67475, 'https://ror.org/02wvj4674', 'pl', 1, 'https://ror.org/02wvj4674 Kardio-Med Silesia'),
(67476, 'https://ror.org/02wwrad14', 'en', 1, 'https://ror.org/02wwrad14 Anhui Water Conservancy and Hydropower Survey and Design Institute å®‰å¾½ēœę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”é™¢'),
(67477, 'https://ror.org/02wxyms40', 'no_lang_code', 1, 'https://ror.org/02wxyms40 Roquette FrĆØres (India)'),
(67478, 'https://ror.org/02wy00t81', 'no_lang_code', 1, 'https://ror.org/02wy00t81 Hanpoong Pharm (South Korea) ķ•œķ’ģ œģ•½'),
(67479, 'https://ror.org/02wy0xt13', 'en', 1, 'https://ror.org/02wy0xt13 European Council on Refugees and Exiles'),
(67480, 'https://ror.org/02x6qh956', 'no_lang_code', 1, 'https://ror.org/02x6qh956 Cybersys Computer (China)'),
(67481, 'https://ror.org/02x76rz89', 'en', 1, 'https://ror.org/02x76rz89 United States Anti-Doping Agency'),
(67482, 'https://ror.org/02x9rq768', 'en', 1, 'https://ror.org/02x9rq768 Vitalant'),
(67483, 'https://ror.org/02xab7z06', 'no_lang_code', 1, 'https://ror.org/02xab7z06 Chery Automobile (China) å„‡ē‘ž'),
(67484, 'https://ror.org/02xaygw50', 'no_lang_code', 1, 'https://ror.org/02xaygw50 Aqdot (United Kingdom)'),
(67485, 'https://ror.org/02xcbvq61', 'en', 1, 'https://ror.org/02xcbvq61 Public Limited Company for Radioactive Waste Management RadioaktĆ­v HulladĆ©kokat Kezelő KƶzhasznĆŗ'),
(67486, 'https://ror.org/02xd1z741', 'no_lang_code', 1, 'https://ror.org/02xd1z741 ACI Worldwide (United States)'),
(67487, 'https://ror.org/02xd7sw67', 'en', 1, 'https://ror.org/02xd7sw67 Autism Canada SociĆ©tĆ© canadienne de l’autisme'),
(67488, 'https://ror.org/02xdxcj12', 'en', 1, 'https://ror.org/02xdxcj12 The Korean Drama Society ķ•œźµ­ė“œė¼ė§ˆķ•™ķšŒ'),
(67489, 'https://ror.org/02xdygm42', 'en', 1, 'https://ror.org/02xdygm42 Prevention Institute'),
(67490, 'https://ror.org/02xfvtk67', 'en', 1, 'https://ror.org/02xfvtk67 Mechanics'' Institute'),
(67491, 'https://ror.org/02xfypx32', 'en', 1, 'https://ror.org/02xfypx32 Sustainable Economic Development Agency'),
(67492, 'https://ror.org/02xgad785', 'en', 1, 'https://ror.org/02xgad785 Maryland Commission on African American History and Culture'),
(67493, 'https://ror.org/02xh5g973', 'en', 1, 'https://ror.org/02xh5g973 Ministry of Healthcare Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ€Õ”Õ¶Ö€Õ”ÕŗÕ„ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ Õ”Õ¼ÕøÕ²Õ»Õ”ÕŗÕ”Õ°ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ¶Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(67494, 'https://ror.org/02xm3a386', 'en', 1, 'https://ror.org/02xm3a386 Korean Calligraphy Association ķ•œźµ­ģ„œģ˜ˆķ˜‘ķšŒ'),
(67495, 'https://ror.org/02xq34z61', 'en', 1, 'https://ror.org/02xq34z61 (사)ķ•œźµ­ė””ģ§€ķ„øė””ģžģøķ˜‘ģ˜ķšŒ Korea Digital Design Council'),
(67496, 'https://ror.org/02xq4xp48', 'en', 1, 'https://ror.org/02xq4xp48 State Agency for Metrological and Technical Surveillance Š”ŃŠŃ€Š¶Š°Š²Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ за метрологичен Šø технически наГзор'),
(67497, 'https://ror.org/02xs6t089', 'en', 1, 'https://ror.org/02xs6t089 SupBuyer (China)'),
(67498, 'https://ror.org/02xshzv74', 'en', 1, 'https://ror.org/02xshzv74 Kazan Research Institute of Epidemiology and Microbiology'),
(67499, 'https://ror.org/02xyaf767', 'en', 1, 'https://ror.org/02xyaf767 Transnational University Limburg'),
(67500, 'https://ror.org/02xyxjs42', 'no_lang_code', 1, 'https://ror.org/02xyxjs42 Cthulhu Ventures (United States)'),
(67501, 'https://ror.org/02xzsz056', 'no_lang_code', 1, 'https://ror.org/02xzsz056 Masquelier’s (Netherlands)'),
(67502, 'https://ror.org/02y0e7413', 'en', 1, 'https://ror.org/02y0e7413 Scientific Research Institute of Biochemistry ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии'),
(67503, 'https://ror.org/02y0st784', 'en', 1, 'https://ror.org/02y0st784 The Korean Archeological Society ķ•œźµ­ź³ ź³ ķ•™ķšŒė¼ ķ•œė‹¤'),
(67504, 'https://ror.org/02y20t868', 'no_lang_code', 1, 'https://ror.org/02y20t868 Kinesis Health Technologies (Ireland)'),
(67505, 'https://ror.org/02y5xjh56', 'en', 1, 'https://ror.org/02y5xjh56 International Neuroinformatics Coordinating Facility'),
(67506, 'https://ror.org/02y8hcw86', 'en', 1, 'https://ror.org/02y8hcw86 Korean Psychological Association ķ•œźµ­ģ‹¬ė¦¬ķ•™ķšŒ'),
(67507, 'https://ror.org/02y8m9y76', 'en', 1, 'https://ror.org/02y8m9y76 Beijing Institute of Water åŒ—äŗ¬ę°“ē ”ē©¶ę‰€'),
(67508, 'https://ror.org/02y8rvp52', 'en', 1, 'https://ror.org/02y8rvp52 Korean Language Institute ģ—°ģ„øėŒ€ķ•™źµ ķ•œźµ­ģ–“ķ•™ė‹¹ģ€'),
(67509, 'https://ror.org/02yaqge44', 'en', 1, 'https://ror.org/02yaqge44 I Wish'),
(67510, 'https://ror.org/02ybby158', 'en', 1, 'https://ror.org/02ybby158 International Institute of Industrial Property ŠœŠ•Š–Š”Š£ŠŠŠ ŠžŠ”ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ™ Š”ŠžŠ‘Š”Š¢Š’Š•ŠŠŠžŠ”Š¢Š˜'),
(67511, 'https://ror.org/02ybk0k36', 'en', 1, 'https://ror.org/02ybk0k36 Ministarstvo komunikacija i prometa Ministry of Communication and Transport'),
(67512, 'https://ror.org/02yd1fb92', 'no_lang_code', 1, 'https://ror.org/02yd1fb92 Fes Trading (Poland)'),
(67513, 'https://ror.org/02ydbtz72', 'no_lang_code', 1, 'https://ror.org/02ydbtz72 Chengdu Industrial Equipment Installation (China) ęˆéƒ½åø‚å·„äøšč®¾å¤‡å®‰č£…å…¬åø ē‰ˆęƒę‰€ęœ‰'),
(67514, 'https://ror.org/02ye0gt70', 'en', 1, 'https://ror.org/02ye0gt70 All-Russian Research Institute of Chemical Technology Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической технологии'),
(67515, 'https://ror.org/02yhdrk95', 'en', 1, 'https://ror.org/02yhdrk95 Mississippi Blues Trail'),
(67516, 'https://ror.org/02yjcwm21', 'no_lang_code', 1, 'https://ror.org/02yjcwm21 Daiichi-Sankyo (South Korea) ķ•œźµ­ė‹¤ģ“ģ“ģ°Œģ‚°ģæ„ģ£¼ģ‹ķšŒģ‚¬'),
(67517, 'https://ror.org/02yjfp753', 'no_lang_code', 1, 'https://ror.org/02yjfp753 Donlim (China) å¹æäøœę–°å®ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(67518, 'https://ror.org/02yjv7f10', 'en', 1, 'https://ror.org/02yjv7f10 Population Services International'),
(67519, 'https://ror.org/02ykbvm42', 'en', 1, 'https://ror.org/02ykbvm42 Centre for Materials for Electronics Technology'),
(67520, 'https://ror.org/02ykcjw41', 'en', 1, 'https://ror.org/02ykcjw41 James Joyce Society of Korea ķ•œźµ­ģ œģž„ģŠ¤ģ”°ģ“ģŠ¤ķ•™ķšŒ'),
(67521, 'https://ror.org/02yx0ge43', 'en', 1, 'https://ror.org/02yx0ge43 Eesti Sotsiaalministeerium Ministry of Social Affairs'),
(67522, 'https://ror.org/02yxyb555', 'fr', 1, 'https://ror.org/02yxyb555 Table de Concertation en Violence Conjugale de MontrƩal'),
(67523, 'https://ror.org/02yxzrq46', 'no_lang_code', 1, 'https://ror.org/02yxzrq46 Diamond Photofoil (United Kingdom)'),
(67524, 'https://ror.org/02yz5ze35', 'no_lang_code', 1, 'https://ror.org/02yz5ze35 Critical Solutions International (United States)'),
(67525, 'https://ror.org/02yzb5728', 'no_lang_code', 1, 'https://ror.org/02yzb5728 Awsaj Academy Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© أوساج'),
(67526, 'https://ror.org/02z02sq57', 'en', 1, 'https://ror.org/02z02sq57 Maine Central Institute'),
(67527, 'https://ror.org/02z23mj13', 'en', 1, 'https://ror.org/02z23mj13 Kazakh Eye Research Institute ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ ŠŠ˜Š˜ глазных болезней Көз Š°ŃƒŃ€ŃƒŠ»Š°Ń€Ń‹ ŅšŠ°Š·Š°Ņ› ғылыми Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(67528, 'https://ror.org/02z2b4x26', 'no_lang_code', 1, 'https://ror.org/02z2b4x26 UCB Pharma (India)'),
(67529, 'https://ror.org/02z2gfm30', 'en', 1, 'https://ror.org/02z2gfm30 Data Assurance and Communication Security äø­å›½ē§‘å­¦é™¢ę•°ę®äøŽé€šäæ”äæęŠ¤ē ”ē©¶ę•™č‚²äø­åæƒ'),
(67530, 'https://ror.org/02z2n2043', 'en', 1, 'https://ror.org/02z2n2043 Kent Wildlife Trust'),
(67531, 'https://ror.org/02z3r7t23', 'en', 1, 'https://ror.org/02z3r7t23 Edinburgh Genomics'),
(67532, 'https://ror.org/02z491a27', 'pt', 1, 'https://ror.org/02z491a27 Sindicato Dos Trabalhadores Da Administração Pública e de Entidades com Fins Públicos'),
(67533, 'https://ror.org/02z4pnd66', 'no_lang_code', 1, 'https://ror.org/02z4pnd66 Zhejiang Modern Chinese Medicine and Natural Medicine Research Institute (China) ęµ™ę±ŸēŽ°ä»£äø­čÆäøŽå¤©ē„¶čÆē‰©ē ”ē©¶é™¢ęœ‰é™å…¬åøäŗŽ'),
(67534, 'https://ror.org/02z6x1r54', 'en', 1, 'https://ror.org/02z6x1r54 Dandelion Medical Welfare Social Cooperative ėÆ¼ė“¤ė ˆ ģ˜ė£Œ 복지 ģ‚¬ķšŒ ķ˜‘ė™ ģ”°ķ•©'),
(67535, 'https://ror.org/02z7d4y66', 'no_lang_code', 1, 'https://ror.org/02z7d4y66 Keylane (Netherlands)'),
(67536, 'https://ror.org/02z8dkq59', 'en', 1, 'https://ror.org/02z8dkq59 Russian Research Institute of Hematology and Transfusiology Российский ŠŠ˜Š˜ гематологии Šø Ń‚Ń€Š°Š½ŃŃ„ŃƒŠ·ŠøŠ¾Š»Š¾Š³ŠøŠø'),
(67537, 'https://ror.org/02z9np441', 'no_lang_code', 1, 'https://ror.org/02z9np441 CGA Simulations (United Kingdom)'),
(67538, 'https://ror.org/02zawmw51', 'en', 1, 'https://ror.org/02zawmw51 BC Mental Health & Substance Use Services'),
(67539, 'https://ror.org/02zc6h894', 'en', 1, 'https://ror.org/02zc6h894 Institute of Physico-Technical Problems of the North named VP Larionov Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физико-технических проблем Девера Š’.П. Ларионов'),
(67540, 'https://ror.org/02zc84r97', 'no_lang_code', 1, 'https://ror.org/02zc84r97 Neusoft (China) äøœč½Æå…¬åø'),
(67541, 'https://ror.org/02ze37p54', 'en', 1, 'https://ror.org/02ze37p54 Chosun College of Science & Technology ģ”°ģ„ ģ“ź³µėŒ€ķ•™źµ'),
(67542, 'https://ror.org/02zgswx90', 'en', 1, 'https://ror.org/02zgswx90 Athletic Edge Sports Medicine'),
(67543, 'https://ror.org/02zh3z112', 'en', 1, 'https://ror.org/02zh3z112 Korea Association of Chinese Language Education ķ•œźµ­ ģ–øģ–“ 교윔 ķ•™ķšŒ'),
(67544, 'https://ror.org/02zjbky29', 'en', 1, 'https://ror.org/02zjbky29 Korea Advertising Society ķ•œźµ­ ź“‘ź³  ķ•™ķšŒ'),
(67545, 'https://ror.org/02zjnfj90', 'en', 1, 'https://ror.org/02zjnfj90 Barnardo''s'),
(67546, 'https://ror.org/02zk30t14', 'no_lang_code', 1, 'https://ror.org/02zk30t14 Wolong Electric Group Hangzhou Research Institute (China)'),
(67547, 'https://ror.org/02zmk8084', 'en', 1, 'https://ror.org/02zmk8084 John von Neumann Institute for Computing John von Neumann-Institut für Computing'),
(67548, 'https://ror.org/02zn0w908', 'no_lang_code', 1, 'https://ror.org/02zn0w908 Auvi (China)'),
(67549, 'https://ror.org/02zpms144', 'en', 1, 'https://ror.org/02zpms144 Korean Society of Alchol Science and Health Behavior ķ•œźµ­ ģ•Œģ½”ģ˜¬ ģ¤‘ė… ķ•™ķšŒ'),
(67550, 'https://ror.org/02zscxh03', 'en', 1, 'https://ror.org/02zscxh03 Hollywood Orthopaedic Group'),
(67551, 'https://ror.org/02ztwrd91', 'no_lang_code', 1, 'https://ror.org/02ztwrd91 JAC Motors (China) 江淮汽车'),
(67552, 'https://ror.org/02zty9d43', 'en', 1, 'https://ror.org/02zty9d43 FAO/IAEA Agriculture and Biotechnology Laboratories'),
(67553, 'https://ror.org/02zw2vm28', 'en', 1, 'https://ror.org/02zw2vm28 EastSide Partnership'),
(67554, 'https://ror.org/02zwzx824', 'en', 1, 'https://ror.org/02zwzx824 Urban Design Institute of Korea ķ•œźµ­ ė„ģ‹œ ė””ģžģø 학원'),
(67555, 'https://ror.org/02zxg0r06', 'en', 1, 'https://ror.org/02zxg0r06 Institute of Applied Dermatology'),
(67556, 'https://ror.org/02zz6x768', 'en', 1, 'https://ror.org/02zz6x768 Fundación Biomédica Neurounion Neurounion Biomedical Foundation'),
(67557, 'https://ror.org/02zznv955', 'en', 1, 'https://ror.org/02zznv955 Shanghai Tunnel Engineering Rail Transit Design & Research Institute äøŠęµ·åø‚éš§é“å·„ēØ‹č½Øé“äŗ¤é€šč®¾č®”ē ”ē©¶é™¢'),
(67558, 'https://ror.org/0300wj933', 'en', 1, 'https://ror.org/0300wj933 Korean History Society ķ•œźµ­ģ—­ģ‚¬ģ—°źµ¬ķšŒ'),
(67559, 'https://ror.org/0301h4330', 'it', 1, 'https://ror.org/0301h4330 Federazione Medico Sportiva Italiana'),
(67560, 'https://ror.org/03039yw27', 'no_lang_code', 1, 'https://ror.org/03039yw27 Corestem (South Korea) ģ½”ģ•„ģŠ¤ķ…œ(주)'),
(67561, 'https://ror.org/0304ak089', 'en', 1, 'https://ror.org/0304ak089 Korean Pancreatobiliary Association ėŒ€ķ•œģ·Œė‹“ė„ķ•™ķšŒ'),
(67562, 'https://ror.org/0304ps964', 'en', 1, 'https://ror.org/0304ps964 Dermot Foley Landscape Architects (Ireland)'),
(67563, 'https://ror.org/0305q1250', 'en', 1, 'https://ror.org/0305q1250 Wuhan Modern Urban Agriculture Planning and Design Institute ę­¦ę±‰ēŽ°ä»£éƒ½åø‚å†œäøšč§„åˆ’č®¾č®”é™¢č‚”ä»½ęœ‰é™å…¬'),
(67564, 'https://ror.org/030d9pd22', 'en', 1, 'https://ror.org/030d9pd22 International Academy of Ecology, Human and Nature Safety ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук ŃŠŗŠ¾Š»Š¾Š³ŠøŠø, безопасности человека Šø прироГы'),
(67565, 'https://ror.org/030dg0748', 'no_lang_code', 1, 'https://ror.org/030dg0748 Navitas Life Sciences (India)'),
(67566, 'https://ror.org/030mq9680', 'no_lang_code', 1, 'https://ror.org/030mq9680 State Development & Investment Corporation (China) å›½å®¶å¼€å‘ęŠ•čµ„å…¬åø'),
(67567, 'https://ror.org/030nd5313', 'no_lang_code', 1, 'https://ror.org/030nd5313 Coventry (United Kingdom)'),
(67568, 'https://ror.org/030nky627', 'no_lang_code', 1, 'https://ror.org/030nky627 Roche (South Korea) ķ•œźµ­ė”œģŠˆ'),
(67569, 'https://ror.org/030nw5b81', 'en', 1, 'https://ror.org/030nw5b81 ActionAid Ireland'),
(67570, 'https://ror.org/030q87z73', 'en', 1, 'https://ror.org/030q87z73 Loughs Agency'),
(67571, 'https://ror.org/030qwwd12', 'no_lang_code', 1, 'https://ror.org/030qwwd12 The Springboard Consultancy (United Kingdom)'),
(67572, 'https://ror.org/030v00e77', 'en', 1, 'https://ror.org/030v00e77 Institute for the International Education of Students'),
(67573, 'https://ror.org/030vc9997', 'no_lang_code', 1, 'https://ror.org/030vc9997 Eagle Genomics (United Kingdom)'),
(67574, 'https://ror.org/030wgts54', 'en', 1, 'https://ror.org/030wgts54 Hong Kong Electrical Appliances Manufacturers Association é¦™ęøÆē”µå™Øåˆ¶é€ å•†åä¼š'),
(67575, 'https://ror.org/0310e9d31', 'en', 1, 'https://ror.org/0310e9d31 Institute of Biotechnology and Veterinary Medicine Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биотехнологии Šø ветеринарной меГицины'),
(67576, 'https://ror.org/031194929', 'no_lang_code', 1, 'https://ror.org/031194929 Chrysalis Health & Beauty (United Kingdom)'),
(67577, 'https://ror.org/0312bsv17', 'en', 1, 'https://ror.org/0312bsv17 Guangdong Urban & Rural Planning and Design Institute å¹æäøœēœåŸŽä¹”č§„åˆ’č®¾č®”é™¢'),
(67578, 'https://ror.org/0314qy595', 'no_lang_code', 1, 'https://ror.org/0314qy595 Shanghai Electric (China) äøŠęµ·ē”µę°”é›†å›¢'),
(67579, 'https://ror.org/0315e7x57', 'no_lang_code', 1, 'https://ror.org/0315e7x57 GL Assessment (United Kingdom)'),
(67580, 'https://ror.org/0317nyv30', 'en', 1, 'https://ror.org/0317nyv30 Hong Kong Export Credit Insurance Corporation'),
(67581, 'https://ror.org/0317tcf14', 'no_lang_code', 1, 'https://ror.org/0317tcf14 Vesuvius (United States)'),
(67582, 'https://ror.org/0317vtg57', 'no_lang_code', 1, 'https://ror.org/0317vtg57 Advanced Card Systems (China) å…ˆčæ›ēš„å”ē‰‡ē³»ē»Ÿ'),
(67583, 'https://ror.org/0318jmw72', 'hu', 1, 'https://ror.org/0318jmw72 Magyar TehetsĆ©gsegĆ­tő Szervezetek SzƶvetsĆ©ge'),
(67584, 'https://ror.org/0319gez47', 'en', 1, 'https://ror.org/0319gez47 Korean Women''s Association for Communication Studies ķ•œźµ­ 여성 ķ•™ķšŒ'),
(67585, 'https://ror.org/031dc4703', 'no_lang_code', 1, 'https://ror.org/031dc4703 BlackRock (United States)'),
(67586, 'https://ror.org/031eaaa87', 'en', 1, 'https://ror.org/031eaaa87 Association des Pharmaciens du Canada Canadian Pharmacists Association'),
(67587, 'https://ror.org/031ebne21', 'en', 1, 'https://ror.org/031ebne21 National Measurement Laboratory'),
(67588, 'https://ror.org/031hazy16', 'en', 1, 'https://ror.org/031hazy16 Springboard'),
(67589, 'https://ror.org/031mxty05', 'no_lang_code', 1, 'https://ror.org/031mxty05 Activ8rlives (United Kingdom)'),
(67590, 'https://ror.org/031nqzs81', 'en', 1, 'https://ror.org/031nqzs81 Horological Research Institute of Light Industry č½»å·„äøšé’Ÿč”Øē ”ē©¶ę‰€'),
(67591, 'https://ror.org/031p8aq28', 'en', 1, 'https://ror.org/031p8aq28 Stavya Spine Hospital & Research Institute, ą¤øą„ą¤¤ą¤¾ą¤²ą„ą¤Æ ą¤øą„ą¤Ŗą¤¾ą¤‡ą¤Ø ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(67592, 'https://ror.org/031q99e43', 'fr', 1, 'https://ror.org/031q99e43 Institut PrƩpaVogt'),
(67593, 'https://ror.org/031vvza93', 'no_lang_code', 1, 'https://ror.org/031vvza93 Mabo (Poland)'),
(67594, 'https://ror.org/031x5nm39', 'no_lang_code', 1, 'https://ror.org/031x5nm39 Bühler (China)'),
(67595, 'https://ror.org/0320mrm05', 'no_lang_code', 1, 'https://ror.org/0320mrm05 Academician V.P.Makeyev State Rocket Centre (Russia) Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ракетный центр имени акаГемика Š’.П. Макеева'),
(67596, 'https://ror.org/032331w61', 'en', 1, 'https://ror.org/032331w61 Development Agency of Karditsa'),
(67597, 'https://ror.org/032412d97', 'en', 1, 'https://ror.org/032412d97 Seoul Business Agency'),
(67598, 'https://ror.org/0324mr378', 'en', 1, 'https://ror.org/0324mr378 Borne Foundation'),
(67599, 'https://ror.org/0324qh176', 'en', 1, 'https://ror.org/0324qh176 Institute of Biology Ufa Science Center Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Уфимского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра'),
(67600, 'https://ror.org/0326a4r74', 'en', 1, 'https://ror.org/0326a4r74 The Art History Research Institute of Korea ķ•œźµ­ 미술 사학 ģ—°źµ¬ģ†Œ'),
(67601, 'https://ror.org/0329dzd04', 'no_lang_code', 1, 'https://ror.org/0329dzd04 Vanke (China) 萬科'),
(67602, 'https://ror.org/032a11168', 'de', 1, 'https://ror.org/032a11168 Arbeitsgemeinschaft Mauerziegel'),
(67603, 'https://ror.org/032ab1973', 'en', 1, 'https://ror.org/032ab1973 Geological Survey Department'),
(67604, 'https://ror.org/032btfw79', 'en', 1, 'https://ror.org/032btfw79 Ural Scientific Research Institute of Composite Materials Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ композиционных материалов'),
(67605, 'https://ror.org/032cggj38', 'en', 1, 'https://ror.org/032cggj38 Institute of Alcohol Studies'),
(67606, 'https://ror.org/032dfqd82', 'no_lang_code', 1, 'https://ror.org/032dfqd82 Precise (India)'),
(67607, 'https://ror.org/032dmkq14', 'en', 1, 'https://ror.org/032dmkq14 The Korean Society of Christian Religious Education ķ•œźµ­ źø°ė…źµ 교윔 ķ•™ķšŒ'),
(67608, 'https://ror.org/032eb5z33', 'en', 1, 'https://ror.org/032eb5z33 Guizhou Academy of Testing & Analysis č“µå·žēœåˆ†ęžęµ‹čÆ•ē ”ē©¶é™¢'),
(67609, 'https://ror.org/032fx1s95', 'no_lang_code', 1, 'https://ror.org/032fx1s95 Xi''an Peihua University č„æå®‰åŸ¹åŽå­¦é™¢'),
(67610, 'https://ror.org/032ge1s57', 'no_lang_code', 1, 'https://ror.org/032ge1s57 YY (China)'),
(67611, 'https://ror.org/032j0jn37', 'en', 1, 'https://ror.org/032j0jn37 National Institute of Korean History ķ•œźµ­ 역사 ģ—°źµ¬ģ†Œ'),
(67612, 'https://ror.org/032sv7e28', 'no_lang_code', 1, 'https://ror.org/032sv7e28 AiGameDev.com (Austria)'),
(67613, 'https://ror.org/032sv9d33', 'en', 1, 'https://ror.org/032sv9d33 Jiyang College of Zhejiang A&F University'),
(67614, 'https://ror.org/032ttbd57', 'en', 1, 'https://ror.org/032ttbd57 Ministry of Security of Bosnia and Herzegovina'),
(67615, 'https://ror.org/032w21978', 'en', 1, 'https://ror.org/032w21978 Korean Association for Lifelong Education ķ•œźµ­ ģƒģ•  교윔 ķ˜‘ķšŒ'),
(67616, 'https://ror.org/032w4ep19', 'no_lang_code', 1, 'https://ror.org/032w4ep19 IDAP Technology (Poland)'),
(67617, 'https://ror.org/032wy5y42', 'no_lang_code', 1, 'https://ror.org/032wy5y42 Innovative Cryogenic Engineering (United Kingdom)'),
(67618, 'https://ror.org/032x61x06', 'no_lang_code', 1, 'https://ror.org/032x61x06 Astrimmune (United Kingdom)'),
(67619, 'https://ror.org/032y2wk86', 'en', 1, 'https://ror.org/032y2wk86 Georgia Public Broadcasting'),
(67620, 'https://ror.org/0330hwr77', 'en', 1, 'https://ror.org/0330hwr77 AO Foundation'),
(67621, 'https://ror.org/0330st597', 'en', 1, 'https://ror.org/0330st597 Fujian Special Equipment Inspection Institute ē¦å»ŗēœē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(67622, 'https://ror.org/033403863', 'no_lang_code', 1, 'https://ror.org/033403863 Micro-Star International (Taiwan)'),
(67623, 'https://ror.org/03346b772', 'no_lang_code', 1, 'https://ror.org/03346b772 Daiichi Sankyo (India)'),
(67624, 'https://ror.org/03349yg63', 'en', 1, 'https://ror.org/03349yg63 Mediterranean Institute for Primary Care'),
(67625, 'https://ror.org/0335k6h22', 'en', 1, 'https://ror.org/0335k6h22 International Security and Emergency Management Institute InÅ”titĆŗt pre medzinĆ”rodnĆŗ bezpečnosÅ„ a krĆ­zovĆ© riadenie'),
(67626, 'https://ror.org/0336k1122', 'en', 1, 'https://ror.org/0336k1122 The Reading Agency'),
(67627, 'https://ror.org/0338x2357', 'pl', 1, 'https://ror.org/0338x2357 Kutnowska Hodowla Buraka Cukrowego'),
(67628, 'https://ror.org/0339jm562', 'en', 1, 'https://ror.org/0339jm562 The Linguistic Society of Korea ķ•œźµ­ģ–øģ–“ķ•™ķšŒ'),
(67629, 'https://ror.org/0339vxy90', 'no_lang_code', 1, 'https://ror.org/0339vxy90 Becton Dickinson (India)'),
(67630, 'https://ror.org/033aqz496', 'no_lang_code', 1, 'https://ror.org/033aqz496 Biotronik (India)'),
(67631, 'https://ror.org/033bjbc43', 'en', 1, 'https://ror.org/033bjbc43 Korea Baduk Association ķ•œźµ­źø°ģ›'),
(67632, 'https://ror.org/033dqre27', 'en', 1, 'https://ror.org/033dqre27 Brand Design Association of Korea'),
(67633, 'https://ror.org/033famg97', 'en', 1, 'https://ror.org/033famg97 Association for Regional and International Underground Storage'),
(67634, 'https://ror.org/033fj2y02', 'en', 1, 'https://ror.org/033fj2y02 Liaoning Petroleum Equipment Institute č¾½å®é™†ęµ·ēŸ³ę²¹č£…å¤‡ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(67635, 'https://ror.org/033mgm122', 'no_lang_code', 1, 'https://ror.org/033mgm122 China Datang Corporation (China) äø­å›½å¤§å”é›†å›¢ē§‘ęŠ€ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(67636, 'https://ror.org/033p8v660', 'no_lang_code', 1, 'https://ror.org/033p8v660 Wita Proteomics (Germany)'),
(67637, 'https://ror.org/033ptv654', 'no_lang_code', 1, 'https://ror.org/033ptv654 Objective Solutions (China)'),
(67638, 'https://ror.org/033r7gh92', 'en', 1, 'https://ror.org/033r7gh92 Korea Society Of IT Services ķ•œźµ­ITģ„œė¹„ģŠ¤ķ•™ķšŒ'),
(67639, 'https://ror.org/033s51991', 'en', 1, 'https://ror.org/033s51991 ComunitĆ  Scientifica Italiana in Canada Italian Scientific Community in Canada'),
(67640, 'https://ror.org/033sdmz09', 'no_lang_code', 1, 'https://ror.org/033sdmz09 ITS (United Kingdom)'),
(67641, 'https://ror.org/033sqvz45', 'no_lang_code', 1, 'https://ror.org/033sqvz45 Industrial Phycology (United Kingdom)'),
(67642, 'https://ror.org/033vexm94', 'no_lang_code', 1, 'https://ror.org/033vexm94 Econotherm (United Kingdom)'),
(67643, 'https://ror.org/033w89p27', 'en', 1, 'https://ror.org/033w89p27 Kansas Health Institute'),
(67644, 'https://ror.org/033wz4y55', 'no_lang_code', 1, 'https://ror.org/033wz4y55 Anhui East China Institute of Optoelectronic Technology (China)'),
(67645, 'https://ror.org/033z65h39', 'en', 1, 'https://ror.org/033z65h39 Ministry of Higher and Tertiary Education'),
(67646, 'https://ror.org/033zvg385', 'no_lang_code', 1, 'https://ror.org/033zvg385 Kab Bygge-Og Boligadministration (Denmark)'),
(67647, 'https://ror.org/0340bsg82', 'no_lang_code', 1, 'https://ror.org/0340bsg82 Hyundai Pharm (South Korea)'),
(67648, 'https://ror.org/0341fmf68', 'no_lang_code', 1, 'https://ror.org/0341fmf68 Lucky Technology (China) å¹øčæęŠ€ęœÆ'),
(67649, 'https://ror.org/03428zt70', 'en', 1, 'https://ror.org/03428zt70 Bangladesh Medical Research Council'),
(67650, 'https://ror.org/0344txx64', 'en', 1, 'https://ror.org/0344txx64 Medtronic (South Korea)'),
(67651, 'https://ror.org/0344v8a35', 'fr', 1, 'https://ror.org/0344v8a35 Ć  coeur d''homme'),
(67652, 'https://ror.org/03471w967', 'fr', 1, 'https://ror.org/03471w967 HƓpital Larrey'),
(67653, 'https://ror.org/0347rqq77', 'no_lang_code', 1, 'https://ror.org/0347rqq77 OceanX Technology (China)'),
(67654, 'https://ror.org/0348jjn37', 'es', 1, 'https://ror.org/0348jjn37 Redit'),
(67655, 'https://ror.org/034ad8717', 'en', 1, 'https://ror.org/034ad8717 Chaithanya Eye Hospital and Research Institute'),
(67656, 'https://ror.org/034ahxs15', 'en', 1, 'https://ror.org/034ahxs15 The State Scientific Research Institute of Civil Aviation Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гражГанской авиации'),
(67657, 'https://ror.org/034c6t134', 'de', 1, 'https://ror.org/034c6t134 Pathodiagnostik Berlin'),
(67658, 'https://ror.org/034dme430', 'no_lang_code', 1, 'https://ror.org/034dme430 Euros Energy (Poland)'),
(67659, 'https://ror.org/034ee8p26', 'no_lang_code', 1, 'https://ror.org/034ee8p26 ZeClinics (Spain)'),
(67660, 'https://ror.org/034fcx588', 'en', 1, 'https://ror.org/034fcx588 Central Council for Research in Unani Medicine'),
(67661, 'https://ror.org/034jmpk69', 'en', 1, 'https://ror.org/034jmpk69 North China Municipal Engineering Design & Research Institute äø­å›½åø‚ę”æå·„ēØ‹åŽåŒ—č®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(67662, 'https://ror.org/034kyps37', 'en', 1, 'https://ror.org/034kyps37 Ministry of Information Society and Administration'),
(67663, 'https://ror.org/034kzpn81', 'en', 1, 'https://ror.org/034kzpn81 Vermont Department of Libraries'),
(67664, 'https://ror.org/034mx6v37', 'en', 1, 'https://ror.org/034mx6v37 L.A. Theatre Works'),
(67665, 'https://ror.org/034q8g297', 'en', 1, 'https://ror.org/034q8g297 University of Brain Education źµ­ģ œė‡Œźµģœ”ģ¢…ķ•©ėŒ€ķ•™ģ›ėŒ€ķ•™źµ ķ™ˆķŽ˜ģ“ģ§€'),
(67666, 'https://ror.org/034qbvs38', 'no_lang_code', 1, 'https://ror.org/034qbvs38 Kora Healthcare (Ireland)'),
(67667, 'https://ror.org/034twfm68', 'en', 1, 'https://ror.org/034twfm68 Hong Kong Jewellery & Jade Manufacturers Association é¦™ęøÆē å®ēŽ‰ēŸ³åŽ‚å•†ä¼š'),
(67668, 'https://ror.org/034vp3v91', 'no_lang_code', 1, 'https://ror.org/034vp3v91 Research Institute "Pulsar" (Russia) ŠŠŠ£Š§ŠŠž-ŠŸŠ ŠžŠ˜Š—Š’ŠžŠ”Š”Š¢Š’Š•ŠŠŠžŠ• ŠŸŠ Š•Š”ŠŸŠ Š˜ŠÆŠ¢Š˜Š• "ŠŸŠ£Š›Š¬Š”ŠŠ "'),
(67669, 'https://ror.org/034wjng68', 'en', 1, 'https://ror.org/034wjng68 Nuclear and Radiation Safety Center ę øäøŽč¾å°„å®‰å…Øäø­åæƒ'),
(67670, 'https://ror.org/034x52m63', 'no_lang_code', 1, 'https://ror.org/034x52m63 VNIPIvzryvgeofizika Š’ŠŠ˜ŠŸŠ˜Š²Š·Ń€Ń‹Š²Š³ŠµŠ¾Ń„ŠøŠ·ŠøŠŗŠ°'),
(67671, 'https://ror.org/034yf9p50', 'no_lang_code', 1, 'https://ror.org/034yf9p50 Nanjing Water Conservancy Planning & Design Institute (China) å—äŗ¬åø‚ę°“åˆ©č§„åˆ’č®¾č®”é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(67672, 'https://ror.org/034yp9n83', 'no_lang_code', 1, 'https://ror.org/034yp9n83 Ecometrica (United Kingdom)'),
(67673, 'https://ror.org/035198g37', 'en', 1, 'https://ror.org/035198g37 All-Russian Scientific Research Institute of Floriculture and Subtropical Crops Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цветовоГства Šø ŃŃƒŠ±Ń‚Ń€Š¾ŠæŠøŃ‡ŠµŃŠŗŠøŃ… ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€'),
(67674, 'https://ror.org/03519pp33', 'en', 1, 'https://ror.org/03519pp33 Agenţia Naţională Antidrog National Anti-drug Agency'),
(67675, 'https://ror.org/0352k4r92', 'en', 1, 'https://ror.org/0352k4r92 Indian Nations Council of Governments'),
(67676, 'https://ror.org/035397c59', 'en', 1, 'https://ror.org/035397c59 Atlantic Research Institute of Fisheries and Oceanography Атлантический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø океанографии'),
(67677, 'https://ror.org/0353dhs61', 'en', 1, 'https://ror.org/0353dhs61 Hubei Polytechnic Institute ę¹– 北 职 业 ꊀ 术 å­¦ 院 简 介'),
(67678, 'https://ror.org/0353t4m91', 'no_lang_code', 1, 'https://ror.org/0353t4m91 First Automotive Works (China)'),
(67679, 'https://ror.org/035598n44', 'no_lang_code', 1, 'https://ror.org/035598n44 DCC Health & Beauty Solutions'),
(67680, 'https://ror.org/0355rmf69', 'en', 1, 'https://ror.org/0355rmf69 Northeast Asian Forest Forum ė™ė¶ģ•„ ģ‚°ė¦¼ķ¬ėŸ¼'),
(67681, 'https://ror.org/0356p2h35', 'no_lang_code', 1, 'https://ror.org/0356p2h35 Total (Qatar)'),
(67682, 'https://ror.org/03573kt53', 'no_lang_code', 1, 'https://ror.org/03573kt53 Mosway Semiconductor (China)'),
(67683, 'https://ror.org/0358qh338', 'en', 1, 'https://ror.org/0358qh338 Costume Culture Association ģ˜ģƒ 문화 ķ˜‘ķšŒ'),
(67684, 'https://ror.org/035a15991', 'es', 1, 'https://ror.org/035a15991 Instituto Argentino de RadioastronomĆ­a'),
(67685, 'https://ror.org/035br3k73', 'no_lang_code', 1, 'https://ror.org/035br3k73 China Aluminum International Engineering Corporation Limited (China) äø­å›½é“äøšå›½é™…å·„ēØ‹ęœ‰é™å…¬åø'),
(67686, 'https://ror.org/035brg434', 'no_lang_code', 1, 'https://ror.org/035brg434 Guizhou Magic Pharmaceutical (China)'),
(67687, 'https://ror.org/035c0tw34', 'no_lang_code', 1, 'https://ror.org/035c0tw34 GS1 Hong Kong'),
(67688, 'https://ror.org/035cs2n55', 'en', 1, 'https://ror.org/035cs2n55 Association for Nutrition'),
(67689, 'https://ror.org/035dq5k54', 'en', 1, 'https://ror.org/035dq5k54 Institut für sozial-ökologische Forschung Institute for Social-Ecological Research'),
(67690, 'https://ror.org/035f7jt30', 'no_lang_code', 1, 'https://ror.org/035f7jt30 A.M.P Rose (United Kingdom)'),
(67691, 'https://ror.org/035few730', 'en', 1, 'https://ror.org/035few730 International Society of Indoor Air Quality and Climate'),
(67692, 'https://ror.org/035g2m198', 'no_lang_code', 1, 'https://ror.org/035g2m198 ƉireComposites (Ireland)'),
(67693, 'https://ror.org/035gcxp73', 'no_lang_code', 1, 'https://ror.org/035gcxp73 Foxlink (China) ę­£å““ē²¾åÆ†å·„äøš'),
(67694, 'https://ror.org/035ggpk09', 'en', 1, 'https://ror.org/035ggpk09 Tlicho Community Services Agency'),
(67695, 'https://ror.org/035h0ne50', 'en', 1, 'https://ror.org/035h0ne50 Meher Hospitals'),
(67696, 'https://ror.org/035hazd92', 'en', 1, 'https://ror.org/035hazd92 Jiangsu Institute of Metrology ę±Ÿč‹ēœč®”é‡ē§‘å­¦ē ”ē©¶é™¢'),
(67697, 'https://ror.org/035hyrv04', 'en', 1, 'https://ror.org/035hyrv04 Korean Association of Feminist Philosophers ķ•œźµ­ 여성 ģ² ķ•™ģž ķ˜‘ķšŒ'),
(67698, 'https://ror.org/035jb5191', 'en', 1, 'https://ror.org/035jb5191 Nova Scotia Advisory Commission on AIDS'),
(67699, 'https://ror.org/035mna818', 'en', 1, 'https://ror.org/035mna818 Wuhan Academy of Agricultural Sciences ę­¦ę±‰åø‚å†œäøšē§‘å­¦é™¢'),
(67700, 'https://ror.org/035qztk95', 'en', 1, 'https://ror.org/035qztk95 Riga Energy Agency Rīgas enerģētikas aģentūra'),
(67701, 'https://ror.org/035rc4w74', 'no_lang_code', 1, 'https://ror.org/035rc4w74 PanGen Biotech (South Korea) ģ£¼ģ‹ķšŒģ‚¬ 팬젠'),
(67702, 'https://ror.org/035seyp42', 'en', 1, 'https://ror.org/035seyp42 Institut de MathƩmatiques et de Sciences Physiques Institute of Mathematics and Physics'),
(67703, 'https://ror.org/035t6ww14', 'en', 1, 'https://ror.org/035t6ww14 National Museum of Ireland'),
(67704, 'https://ror.org/035tncn14', 'no_lang_code', 1, 'https://ror.org/035tncn14 Grupa Wolff Wolff Group (Poland)'),
(67705, 'https://ror.org/035ttr831', 'no_lang_code', 1, 'https://ror.org/035ttr831 Pantarei Design (China)'),
(67706, 'https://ror.org/035w30858', 'en', 1, 'https://ror.org/035w30858 Kaliningrad Frontier Institute of the Federal Security Service of Russia ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“ŃŠŗŠøŠ¹ пограничный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ФДБ России'),
(67707, 'https://ror.org/035x0zb38', 'en', 1, 'https://ror.org/035x0zb38 Federal Scientific Center for Vegetable Growing Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ селекции Šø семеновоГства овощных ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€'),
(67708, 'https://ror.org/035ybn758', 'en', 1, 'https://ror.org/035ybn758 Korean Finance Association ķ•œźµ­ģž¬ė¬“ķ•™ķšŒ'),
(67709, 'https://ror.org/036246q84', 'no_lang_code', 1, 'https://ror.org/036246q84 Box (United States)'),
(67710, 'https://ror.org/0362f0p45', 'en', 1, 'https://ror.org/0362f0p45 National Archives of India, ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤…ą¤­ą¤æą¤²ą„‡ą¤–ą¤¾ą¤—ą¤¾ą¤°'),
(67711, 'https://ror.org/03651dk72', 'no_lang_code', 1, 'https://ror.org/03651dk72 Gipronickel Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“ŠøŠæŃ€Š¾Š½ŠøŠŗŠµŠ»ŃŒ'),
(67712, 'https://ror.org/03654w628', 'en', 1, 'https://ror.org/03654w628 Shanghai Research Institute of Sports Science äøŠęµ·ä½“č‚²ē§‘å­¦ē ”ē©¶ę‰€'),
(67713, 'https://ror.org/0367rr790', 'no_lang_code', 1, 'https://ror.org/0367rr790 Eurotech (Poland)'),
(67714, 'https://ror.org/0368h0402', 'no_lang_code', 1, 'https://ror.org/0368h0402 Sophos Group (United Kingdom)'),
(67715, 'https://ror.org/0369eb468', 'en', 1, 'https://ror.org/0369eb468 Hainan Meteorology Administration ęµ·å—ēœę°”č±”å±€'),
(67716, 'https://ror.org/0369p0616', 'en', 1, 'https://ror.org/0369p0616 HealthCareCAN'),
(67717, 'https://ror.org/036b14153', 'no_lang_code', 1, 'https://ror.org/036b14153 Elsta Elektronika (Poland)'),
(67718, 'https://ror.org/036b8s592', 'en', 1, 'https://ror.org/036b8s592 The Folklore Society'),
(67719, 'https://ror.org/036cy3843', 'en', 1, 'https://ror.org/036cy3843 Film Independent'),
(67720, 'https://ror.org/036f01c07', 'no_lang_code', 1, 'https://ror.org/036f01c07 Pacific World Industrial (China)'),
(67721, 'https://ror.org/036grzb86', 'no_lang_code', 1, 'https://ror.org/036grzb86 Voysis (Ireland)'),
(67722, 'https://ror.org/036gs9v48', 'en', 1, 'https://ror.org/036gs9v48 North East Atlantic Fisheries Commission'),
(67723, 'https://ror.org/036j7gs78', 'en', 1, 'https://ror.org/036j7gs78 Nevada Dairy Commission'),
(67724, 'https://ror.org/036kvqx88', 'no_lang_code', 1, 'https://ror.org/036kvqx88 Jiangsu Provincial Architectural Design and Research Institute (China) ę±Ÿč‹ēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(67725, 'https://ror.org/036n3de45', 'en', 1, 'https://ror.org/036n3de45 The Korean Society of Management Information Systems ķ•œźµ­ 경영 정볓 ķ•™ķšŒ'),
(67726, 'https://ror.org/036n8hs79', 'en', 1, 'https://ror.org/036n8hs79 Guangzhou Institute of Mechanical Design å¹æå·žęœŗę¢°č®¾č®”ē ”ē©¶ę‰€ē®€ä»‹'),
(67727, 'https://ror.org/036p9e334', 'en', 1, 'https://ror.org/036p9e334 Yunnan Water Conservancy and Hydropower Survey and Design Institute'),
(67728, 'https://ror.org/036qa5g72', 'en', 1, 'https://ror.org/036qa5g72 Coachella Valley Association of Governments'),
(67729, 'https://ror.org/036qc8g42', 'en', 1, 'https://ror.org/036qc8g42 Siberian Research Institute of Agriculture and Peat'),
(67730, 'https://ror.org/036rtm992', 'en', 1, 'https://ror.org/036rtm992 Taegu Science University ėŒ€źµ¬ 과학 ėŒ€ķ•™źµ'),
(67731, 'https://ror.org/036rv4s60', 'en', 1, 'https://ror.org/036rv4s60 Scientific and Research Institute of High-Voltage Apparatus ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Š²Š¾Š»ŃŒŃ‚Š½Š¾Š³Š¾ Š¾Š±Š¾Ń€ŃƒŠ“Š¾Š²Š°Š½ŠøŃ'),
(67732, 'https://ror.org/036s8jq11', 'en', 1, 'https://ror.org/036s8jq11 Association Canadienne de la MĆ©decine du Travail et de l’environnement Occupational and Environmental Medical Association of Canada'),
(67733, 'https://ror.org/036vxpt10', 'en', 1, 'https://ror.org/036vxpt10 Gama (United Kingdom)'),
(67734, 'https://ror.org/036wd5777', 'no_lang_code', 1, 'https://ror.org/036wd5777 Group Sense (China) ę¬Šę™ŗé›†åœ˜'),
(67735, 'https://ror.org/036xccj73', 'en', 1, 'https://ror.org/036xccj73 Institute for Research and Development ā€œUtripā€ InÅ”titut za raziskave in razvoj "Utrip"'),
(67736, 'https://ror.org/036xtjy06', 'en', 1, 'https://ror.org/036xtjy06 Shanghai Xiandai Architectural Design äøŠęµ·ēŽ°ä»£å»ŗē­‘č®¾č®”'),
(67737, 'https://ror.org/0371s1r94', 'en', 1, 'https://ror.org/0371s1r94 Canadian Rural Health Research Society SociƩtƩ Canadienne de Recherche en SantƩ Rurale'),
(67738, 'https://ror.org/03751qd82', 'en', 1, 'https://ror.org/03751qd82 The Alaska Sea Otter and Steller Sea Lion Commission'),
(67739, 'https://ror.org/0376fv627', 'en', 1, 'https://ror.org/0376fv627 Department of Public Works Τμήμα Ī”Ī·Ī¼ĪæĻƒĪÆĻ‰Ī½ ĪˆĻĪ³Ļ‰Ī½'),
(67740, 'https://ror.org/037b6wy35', 'no_lang_code', 1, 'https://ror.org/037b6wy35 CITIC Group (China)'),
(67741, 'https://ror.org/037e82q62', 'en', 1, 'https://ror.org/037e82q62 The Korean Association for Christian Ethics ķ•œźµ­ źø°ė…źµ ģœ¤ė¦¬ķ•™ķšŒ'),
(67742, 'https://ror.org/037fbyh64', 'en', 1, 'https://ror.org/037fbyh64 Israel Antiquities Authority רשות העתיקות داﺌرة الآثار'),
(67743, 'https://ror.org/037fm9770', 'fr', 1, 'https://ror.org/037fm9770 SociƩtƩ d''Habitation du QuƩbec'),
(67744, 'https://ror.org/037g0v202', 'en', 1, 'https://ror.org/037g0v202 Bristol Hospitality Network'),
(67745, 'https://ror.org/037g7hc89', 'en', 1, 'https://ror.org/037g7hc89 National Statistical Service of the Republic of Armenia Ō±Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ¾Õ«Õ³Õ”ÕÆÕ”Õ£Ö€Õ”ÕÆÕ”Õ¶ Õ®Õ”Õ¼Õ”ÕµÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(67746, 'https://ror.org/037hasf44', 'no_lang_code', 1, 'https://ror.org/037hasf44 Bastik (Poland)'),
(67747, 'https://ror.org/037jwt041', 'no_lang_code', 1, 'https://ror.org/037jwt041 Clover Seed (China) é«˜čÆēØ®å­'),
(67748, 'https://ror.org/037mxx572', 'no_lang_code', 1, 'https://ror.org/037mxx572 Aridhia (United Kingdom)'),
(67749, 'https://ror.org/037nsm974', 'no_lang_code', 1, 'https://ror.org/037nsm974 Landcatch (United Kingdom)'),
(67750, 'https://ror.org/037p5ng50', 'en', 1, 'https://ror.org/037p5ng50 Bolivian Forest Research Institute Instituto Boliviano de Investigación Forestal'),
(67751, 'https://ror.org/037qebp73', 'no_lang_code', 1, 'https://ror.org/037qebp73 Ram-Chem (China)'),
(67752, 'https://ror.org/037qvtm25', 'de', 1, 'https://ror.org/037qvtm25 Hessisches Kultusministerium'),
(67753, 'https://ror.org/037sg1398', 'no_lang_code', 1, 'https://ror.org/037sg1398 Nymbl Science (United Kingdom)'),
(67754, 'https://ror.org/037t5k894', 'en', 1, 'https://ror.org/037t5k894 Russian Research and Design Institute of Titanium and Magnesium Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š˜Š¢ŠŠŠ И ŠœŠŠ“ŠŠ˜ŠÆ'),
(67755, 'https://ror.org/037tmrg70', 'no_lang_code', 1, 'https://ror.org/037tmrg70 Anton Paar (United Kingdom)'),
(67756, 'https://ror.org/037wd0n12', 'no_lang_code', 1, 'https://ror.org/037wd0n12 Farm Energy and Control Services (United Kingdom)'),
(67757, 'https://ror.org/037xt3w76', 'en', 1, 'https://ror.org/037xt3w76 Bicester Town Council'),
(67758, 'https://ror.org/037z0v527', 'en', 1, 'https://ror.org/037z0v527 Institute of Oceanographic Instrumentation å±±äøœēœē§‘å­¦é™¢ęµ·ę“‹ä»Ŗå™Øä»Ŗč”Øē ”ē©¶ę‰€ 地址'),
(67759, 'https://ror.org/038105c92', 'no_lang_code', 1, 'https://ror.org/038105c92 Marine Projects (Poland)'),
(67760, 'https://ror.org/0381np041', 'en', 1, 'https://ror.org/0381np041 Kent and Medway NHS and Social Care Partnership Trust'),
(67761, 'https://ror.org/0384jmk48', 'en', 1, 'https://ror.org/0384jmk48 Citizens Advice'),
(67762, 'https://ror.org/038631f57', 'en', 1, 'https://ror.org/038631f57 Ministry of Economy of the Republic of Bulgaria ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на икономиката на Република Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(67763, 'https://ror.org/0386abs67', 'no_lang_code', 1, 'https://ror.org/0386abs67 Automatic Data Processing (United States)'),
(67764, 'https://ror.org/03884sd33', 'en', 1, 'https://ror.org/03884sd33 Rape Crisis Network Ireland'),
(67765, 'https://ror.org/03890pj38', 'no_lang_code', 1, 'https://ror.org/03890pj38 Axiom (China)'),
(67766, 'https://ror.org/038dn8481', 'en', 1, 'https://ror.org/038dn8481 United Nations Economic Commission for Europe'),
(67767, 'https://ror.org/038j07x88', 'en', 1, 'https://ror.org/038j07x88 Dr. Vitthalrao Vikhe Patil Foundation’s Medical College');
INSERT INTO `rors` VALUES
(67768, 'https://ror.org/038jzt119', 'en', 1, 'https://ror.org/038jzt119 Scientific Research Institute "Kulon" ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š¼Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ «Кулон»'),
(67769, 'https://ror.org/038ksq075', 'no_lang_code', 1, 'https://ror.org/038ksq075 Niiteplopribor (Russia) ŠŠ˜Š˜Š¢ŠµŠæŠ»Š¾ŠæŃ€ŠøŠ±Š¾Ń€'),
(67770, 'https://ror.org/038m16120', 'en', 1, 'https://ror.org/038m16120 Military Academy of Strategic Missile Forces named after Peter the Great Š’ŠžŠ•ŠŠŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ Š Š’Š”Š Š˜ŠœŠ•ŠŠ˜ ŠŸŠ•Š¢Š Š Š’Š•Š›Š˜ŠšŠžŠ“Šž'),
(67771, 'https://ror.org/038m7b802', 'no_lang_code', 1, 'https://ror.org/038m7b802 Pandora (United States)'),
(67772, 'https://ror.org/038ntq021', 'en', 1, 'https://ror.org/038ntq021 European Biodiesel Board'),
(67773, 'https://ror.org/038nz7z72', 'en', 1, 'https://ror.org/038nz7z72 Ballymun Job Centre'),
(67774, 'https://ror.org/038pmte38', 'no_lang_code', 1, 'https://ror.org/038pmte38 AC Goatham & Son (United Kingdom)'),
(67775, 'https://ror.org/038ravk06', 'en', 1, 'https://ror.org/038ravk06 Abraham Lincoln Bicentennial Foundation'),
(67776, 'https://ror.org/038rd9v60', 'no_lang_code', 1, 'https://ror.org/038rd9v60 Janssen (Germany)'),
(67777, 'https://ror.org/038smd132', 'no_lang_code', 1, 'https://ror.org/038smd132 HiLight Semiconductor (United Kingdom)'),
(67778, 'https://ror.org/038t6hw46', 'en', 1, 'https://ror.org/038t6hw46 Al Emadi Hospital مستؓفى Ų§Ł„Ų¹Ł…Ų§ŲÆŁŠ'),
(67779, 'https://ror.org/038vs8686', 'en', 1, 'https://ror.org/038vs8686 Iraqi Association for Psychotherapy Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ© للعلاج Ų§Ł„Ł†ŁŲ³ŁŠ'),
(67780, 'https://ror.org/038vtqc18', 'no_lang_code', 1, 'https://ror.org/038vtqc18 Acoustic Arc (China) å£°ę³¢å›½é™…ęœ‰é™å…¬åø'),
(67781, 'https://ror.org/038wddm10', 'en', 1, 'https://ror.org/038wddm10 Gyeongnam Provincial Geochang College ź²½ė‚Øė„ė¦½ź±°ģ°½ėŒ€ķ•™'),
(67782, 'https://ror.org/038wqs208', 'en', 1, 'https://ror.org/038wqs208 National Agency for Education Skolverket'),
(67783, 'https://ror.org/038wz3345', 'en', 1, 'https://ror.org/038wz3345 European Association of Development Research and Training Institutes association Européenne des Instituts de Recherche et de Formation en Matière de Développement'),
(67784, 'https://ror.org/038xegj08', 'no_lang_code', 1, 'https://ror.org/038xegj08 TPC (China)'),
(67785, 'https://ror.org/038z8c944', 'en', 1, 'https://ror.org/038z8c944 WiseEuropa'),
(67786, 'https://ror.org/03900bm02', 'en', 1, 'https://ror.org/03900bm02 Institute for Public Relations'),
(67787, 'https://ror.org/0391e9v93', 'no_lang_code', 1, 'https://ror.org/0391e9v93 Minch Malt (Ireland)'),
(67788, 'https://ror.org/0391pty66', 'no_lang_code', 1, 'https://ror.org/0391pty66 Hunan Xiangdian Test Research Institute (China) ę¹–å—ę¹˜ē”µęµ‹čÆ•ē ”ē©¶ę‰€'),
(67789, 'https://ror.org/0392kk689', 'en', 1, 'https://ror.org/0392kk689 Eisenbahn-Bundesamt Federal Railway Authority'),
(67790, 'https://ror.org/0393akr92', 'no_lang_code', 1, 'https://ror.org/0393akr92 Buijs Advice and Consultancy (Netherlands)'),
(67791, 'https://ror.org/0393kd737', 'en', 1, 'https://ror.org/0393kd737 Ministry of Health'),
(67792, 'https://ror.org/03945f733', 'no_lang_code', 1, 'https://ror.org/03945f733 Autolus (United Kingdom)'),
(67793, 'https://ror.org/0394d5w22', 'no_lang_code', 1, 'https://ror.org/0394d5w22 SMA Magnetics (Poland)'),
(67794, 'https://ror.org/0394wsn58', 'no_lang_code', 1, 'https://ror.org/0394wsn58 Harbin Electric Corporation (China) å“ˆå°”ę»Øē”µę°”é›†å›¢ęœ‰é™å…¬åø'),
(67795, 'https://ror.org/0398c6388', 'no_lang_code', 1, 'https://ror.org/0398c6388 BGT Materials (United Kingdom)'),
(67796, 'https://ror.org/03994m394', 'no_lang_code', 1, 'https://ror.org/03994m394 Tech Valley (South Korea) ķ…Œķ¬ė°øė¦¬'),
(67797, 'https://ror.org/039ac0z09', 'en', 1, 'https://ror.org/039ac0z09 Social Justice Ireland'),
(67798, 'https://ror.org/039dc8c42', 'en', 1, 'https://ror.org/039dc8c42 Korean Academy of Speech-Language Pathology and Audiology'),
(67799, 'https://ror.org/039e7pd44', 'no_lang_code', 1, 'https://ror.org/039e7pd44 Pharmaceutical Product Development (India)'),
(67800, 'https://ror.org/039exhw19', 'no_lang_code', 1, 'https://ror.org/039exhw19 Federalimentare (Italy)'),
(67801, 'https://ror.org/039ezad24', 'en', 1, 'https://ror.org/039ezad24 Child, Adolescent and Family Mental Health'),
(67802, 'https://ror.org/039grkz57', 'no_lang_code', 1, 'https://ror.org/039grkz57 The Behaviouralist (United Kingdom)'),
(67803, 'https://ror.org/039jt6988', 'en', 1, 'https://ror.org/039jt6988 Ministrstvo za infrastrukturo Ministry of Infrastructure'),
(67804, 'https://ror.org/039k9vd92', 'en', 1, 'https://ror.org/039k9vd92 Ministry of Education and Culture ΄πουργείο ΠαιΓείας και Ī ĪæĪ»Ī¹Ļ„Ī¹ĻƒĪ¼ĪæĻ'),
(67805, 'https://ror.org/039me2320', 'no_lang_code', 1, 'https://ror.org/039me2320 ValiRx (United Kingdom)'),
(67806, 'https://ror.org/039n5wp46', 'no_lang_code', 1, 'https://ror.org/039n5wp46 Qinhuangdao Glass Industry Research and Design Institute (China) ē§¦ēš‡å²›ēŽ»ē’ƒå·„äøšē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åø'),
(67807, 'https://ror.org/039p5as73', 'en', 1, 'https://ror.org/039p5as73 NHS Eastern Cheshire Clinical Commissioning Group'),
(67808, 'https://ror.org/039t1kw64', 'en', 1, 'https://ror.org/039t1kw64 The Korean Society for Culture and Arts Education Studies ķ•œźµ­ 문화 예술 교윔 ķ•™ķšŒ'),
(67809, 'https://ror.org/039vb7e80', 'no_lang_code', 1, 'https://ror.org/039vb7e80 Lars Lighting (Poland)'),
(67810, 'https://ror.org/039vmy627', 'en', 1, 'https://ror.org/039vmy627 Lawn Tennis Association'),
(67811, 'https://ror.org/039vtca92', 'en', 1, 'https://ror.org/039vtca92 Research And Design Institute of Electric Coal Products ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠž-Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š­Š›Š•ŠšŠ¢Š ŠžŠ£Š“ŠžŠ›Š¬ŠŠ«Š„ Š˜Š—Š”Š•Š›Š˜Š™'),
(67812, 'https://ror.org/039vzrf55', 'no_lang_code', 1, 'https://ror.org/039vzrf55 Shenzhen Institute of Building Research (China) ę·±åœ³åø‚å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(67813, 'https://ror.org/039wxfg33', 'en', 1, 'https://ror.org/039wxfg33 The Association for Historical Studies on Korean National Movement ķ•œźµ­ėÆ¼ģ”±ģš“ė™ģ‚¬ķ•™ķšŒ'),
(67814, 'https://ror.org/039xg1481', 'no_lang_code', 1, 'https://ror.org/039xg1481 Gateway (United Kingdom)'),
(67815, 'https://ror.org/039zvkm26', 'en', 1, 'https://ror.org/039zvkm26 Central Scientific Research Institute of Geology of Non-metallic Minerals'),
(67816, 'https://ror.org/03a0vt050', 'en', 1, 'https://ror.org/03a0vt050 Institute of Inorganic Methodologies and Plasmas Istituto di Metodologie Inorganiche e dei Plasmi'),
(67817, 'https://ror.org/03a2tkf74', 'no_lang_code', 1, 'https://ror.org/03a2tkf74 Zhejiang Energy Group (China) ęµ™ę±Ÿēœčƒ½ęŗé›†å›¢ęœ‰é™å…¬åø'),
(67818, 'https://ror.org/03a3t8q93', 'en', 1, 'https://ror.org/03a3t8q93 The Hearing Foundation of Canada'),
(67819, 'https://ror.org/03a53n517', 'en', 1, 'https://ror.org/03a53n517 Jeju participation environmental solidarity 제주 ģ°øģ—¬ ķ™˜ź²½ ģ—°ėŒ€'),
(67820, 'https://ror.org/03acf5r27', 'no_lang_code', 1, 'https://ror.org/03acf5r27 Siemens (Russia) Дименс'),
(67821, 'https://ror.org/03acn2870', 'en', 1, 'https://ror.org/03acn2870 Executive Agency Electronic Communication Networks and Information Systems'),
(67822, 'https://ror.org/03ad6jw85', 'en', 1, 'https://ror.org/03ad6jw85 State Research Institute of Highly Pure Biopreparations Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾ā€‘ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ особо чистых биопрепаратов'),
(67823, 'https://ror.org/03aearw79', 'en', 1, 'https://ror.org/03aearw79 Devon Guild of Craftsmen'),
(67824, 'https://ror.org/03aeycp46', 'no_lang_code', 1, 'https://ror.org/03aeycp46 Meyer (China) ē¾Žäŗžå»šå…·ę——č‰¦åŗ—'),
(67825, 'https://ror.org/03ag4ep03', 'no_lang_code', 1, 'https://ror.org/03ag4ep03 Pixel Magic Systems (China)'),
(67826, 'https://ror.org/03agg4249', 'en', 1, 'https://ror.org/03agg4249 Amnesty International Ireland'),
(67827, 'https://ror.org/03agtxq40', 'en', 1, 'https://ror.org/03agtxq40 Genetic Factors for Osteoporosis Consortium'),
(67828, 'https://ror.org/03an6e694', 'en', 1, 'https://ror.org/03an6e694 Myeongji Chunhye Hospital ėŖ…ģ§€ģ¶˜ķ˜œė³‘ģ›'),
(67829, 'https://ror.org/03anhbw86', 'en', 1, 'https://ror.org/03anhbw86 Regional Energy Agency Регионална енергийна Š°Š³ŠµŠ½Ń†ŠøŃ - Русе'),
(67830, 'https://ror.org/03antem13', 'fr', 1, 'https://ror.org/03antem13 Association QuƩbƩcoise des Enseignantes et des Enseignants du Primaire'),
(67831, 'https://ror.org/03aqaa732', 'en', 1, 'https://ror.org/03aqaa732 Yunnan Machinery Research and Design Institute äŗ‘å—ēœęœŗę¢°ē ”ē©¶č®¾č®”é™¢'),
(67832, 'https://ror.org/03aqz1r62', 'en', 1, 'https://ror.org/03aqz1r62 British High Commission Nairobi'),
(67833, 'https://ror.org/03artrq79', 'en', 1, 'https://ror.org/03artrq79 Association of Western Art History ķ•œźµ­ģ„œģ–‘ėÆøģˆ ģ‚¬ķ•™ķšŒ 회'),
(67834, 'https://ror.org/03asfqn77', 'en', 1, 'https://ror.org/03asfqn77 Zhoukou City Academy of Agricultural Sciences å‘Øå£åø‚å†œäøšē§‘å­¦é™¢'),
(67835, 'https://ror.org/03aw27j10', 'en', 1, 'https://ror.org/03aw27j10 Contact Theatre'),
(67836, 'https://ror.org/03awp8j69', 'en', 1, 'https://ror.org/03awp8j69 Galway Education Centre'),
(67837, 'https://ror.org/03awxm844', 'en', 1, 'https://ror.org/03awxm844 Saint-Petersburg I. I. Dzhanelidze Research Institute of Emergency Medicine Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ И. И. ДжанелиГзе ŠŠ˜Š˜ ŃŠŗŃŃ‚Ń€ŠµŠ½Š½Š¾Š¹ меГицины'),
(67838, 'https://ror.org/03ax0vt93', 'en', 1, 'https://ror.org/03ax0vt93 Korea Society of Strategic Management ķ•œźµ­ģ „ėžµź²½ģ˜ķ•™ķšŒ'),
(67839, 'https://ror.org/03axtnh73', 'en', 1, 'https://ror.org/03axtnh73 Qatar Green Building Council'),
(67840, 'https://ror.org/03b092790', 'no_lang_code', 1, 'https://ror.org/03b092790 NeuMed (United States)'),
(67841, 'https://ror.org/03b0cj417', 'no_lang_code', 1, 'https://ror.org/03b0cj417 Almaz-Antey (Russia) ŠšŠ¾Š½Ń†ŠµŃ€Š½ Š’ŠšŠž "Алмаз-Антей'),
(67842, 'https://ror.org/03b2atp15', 'en', 1, 'https://ror.org/03b2atp15 Shaanxi Coal Chemical Industry Technology Research Institute é™•č„æē…¤äøšåŒ–å·„ęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(67843, 'https://ror.org/03b2mxf68', 'en', 1, 'https://ror.org/03b2mxf68 European Transport Safety Council'),
(67844, 'https://ror.org/03b3aa119', 'en', 1, 'https://ror.org/03b3aa119 Quebec Automobile Insurance Corporation SociƩtƩ de l''Assurance Automobile du QuƩbec'),
(67845, 'https://ror.org/03b58r953', 'en', 1, 'https://ror.org/03b58r953 Bį»™ Lao động, Thʰʔng binh vĆ  XĆ£ hį»™i Ministry of Labour, Invalids and Social Affairs'),
(67846, 'https://ror.org/03b5k1h67', 'en', 1, 'https://ror.org/03b5k1h67 Guangdong Food Industry Research Institute å¹æäøœēœé£Ÿå“å·„äøšē ”ē©¶ę‰€'),
(67847, 'https://ror.org/03b68tz43', 'en', 1, 'https://ror.org/03b68tz43 Institut für Bau- Umwelt- und Solarforschung Institute for Construction, Environmental and Solar Research'),
(67848, 'https://ror.org/03b6dwx17', 'no_lang_code', 1, 'https://ror.org/03b6dwx17 Tricomed (Poland)'),
(67849, 'https://ror.org/03b7av255', 'en', 1, 'https://ror.org/03b7av255 CMC Research Institutes'),
(67850, 'https://ror.org/03b7gey53', 'no_lang_code', 1, 'https://ror.org/03b7gey53 Tianma Microelectronics (China) 天 é©¬å¾®ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(67851, 'https://ror.org/03b8swz18', 'de', 1, 'https://ror.org/03b8swz18 Thüringer Ministerium für Umwelt, Energie und Naturschutz'),
(67852, 'https://ror.org/03b9tt486', 'en', 1, 'https://ror.org/03b9tt486 Ananthapuri Hospitals and Research Institute'),
(67853, 'https://ror.org/03baef921', 'no_lang_code', 1, 'https://ror.org/03baef921 Kwangdong Pharmaceutical ź“‘ė™ģ œģ•½'),
(67854, 'https://ror.org/03bd8jh67', 'en', 1, 'https://ror.org/03bd8jh67 Vancouver Coastal Health'),
(67855, 'https://ror.org/03bdrtb23', 'en', 1, 'https://ror.org/03bdrtb23 Wuxi Vocational Institute of Commerce ę— é””å•†äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(67856, 'https://ror.org/03bftdb85', 'en', 1, 'https://ror.org/03bftdb85 Dr. B.R.K.R. Government Ayurvedic College'),
(67857, 'https://ror.org/03bhmb905', 'no_lang_code', 1, 'https://ror.org/03bhmb905 Amgen (Belgium)'),
(67858, 'https://ror.org/03bkmgf03', 'en', 1, 'https://ror.org/03bkmgf03 Guangdong Hydropower Planning & Design Institute'),
(67859, 'https://ror.org/03bmc1y32', 'en', 1, 'https://ror.org/03bmc1y32 Hope and Homes for Children'),
(67860, 'https://ror.org/03bmmqp43', 'en', 1, 'https://ror.org/03bmmqp43 Cell Stress Discoveries'),
(67861, 'https://ror.org/03bn62179', 'en', 1, 'https://ror.org/03bn62179 Vilnius Higher Command School of Radioelectronics Air Defense Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠ¾Š³Š¾ Š²Ń‹ŃŃˆŠµŠ³Š¾ команГного ŃƒŃ‡ŠøŠ»ŠøŃ‰Š° Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø ŠŸŠ’Šž'),
(67862, 'https://ror.org/03bpcr835', 'en', 1, 'https://ror.org/03bpcr835 Tianjin Fire Research Institute å…¬å®‰éƒØå¤©ę“„ę¶ˆé˜²ē ”ē©¶ę‰€ē®€ä»‹'),
(67863, 'https://ror.org/03bsery98', 'en', 1, 'https://ror.org/03bsery98 Bundesministerium für Soziales, Gesundheit, Pflege und Konsumentenschutz Federal Ministry of Social Affairs, Health, Care and Consumer Protection'),
(67864, 'https://ror.org/03bw4fh67', 'no_lang_code', 1, 'https://ror.org/03bw4fh67 Zhejiang Seahead Ship Design And Research Institute (China) ęµ™ę±Ÿę¬£ęµ·čˆ¹čˆ¶č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(67865, 'https://ror.org/03c0kvc14', 'en', 1, 'https://ror.org/03c0kvc14 Kavli Energy NanoScience Institute'),
(67866, 'https://ror.org/03c1m8990', 'no_lang_code', 1, 'https://ror.org/03c1m8990 Institute Tsvetmetobrabotka Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Цветметобработка'),
(67867, 'https://ror.org/03c4brc68', 'no_lang_code', 1, 'https://ror.org/03c4brc68 Nantong Tongbo Equipment Installation Engineering (China) å—é€šé€šåšč®¾å¤‡å®‰č£…å·„ēØ‹ęœ‰é™å…¬åø'),
(67868, 'https://ror.org/03c4tjd54', 'no_lang_code', 1, 'https://ror.org/03c4tjd54 Neonutra (South Korea)'),
(67869, 'https://ror.org/03c57q417', 'en', 1, 'https://ror.org/03c57q417 Hong Kong Policy Research Institute é¦™ęøÆé”˜ę™Æ'),
(67870, 'https://ror.org/03c5c0a39', 'no_lang_code', 1, 'https://ror.org/03c5c0a39 Genomics Medicine (Ireland)'),
(67871, 'https://ror.org/03c6vy245', 'en', 1, 'https://ror.org/03c6vy245 Action for Children'),
(67872, 'https://ror.org/03ca37b25', 'en', 1, 'https://ror.org/03ca37b25 Hong Kong Institute of Biotechnology é¦™ęøÆē”Ÿē‰©ē§‘ęŠ€å­¦é™¢'),
(67873, 'https://ror.org/03cb4jc22', 'en', 1, 'https://ror.org/03cb4jc22 SCIVP of Veterinary Medicinal Products and Feed Additives Державний науково-ГосліГний ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŒŠ½ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарних препаратів та кормових Гобавок.'),
(67874, 'https://ror.org/03cdkd641', 'en', 1, 'https://ror.org/03cdkd641 Institute of Social and Economic Studies of Population'),
(67875, 'https://ror.org/03cej8561', 'en', 1, 'https://ror.org/03cej8561 Ministarstvo unutarnjih poslova Republike Hrvatske Ministry of the Interior'),
(67876, 'https://ror.org/03cg2g747', 'en', 1, 'https://ror.org/03cg2g747 Korea Counseling Psychology Association ķ•œźµ­ ģƒė‹“ 심리 ķ•™ķšŒ'),
(67877, 'https://ror.org/03chexd92', 'es', 1, 'https://ror.org/03chexd92 Clinica Rotger'),
(67878, 'https://ror.org/03cky5d09', 'no_lang_code', 1, 'https://ror.org/03cky5d09 Amgen (Australia)'),
(67879, 'https://ror.org/03cmpa045', 'en', 1, 'https://ror.org/03cmpa045 Altai Scientific Research Institute of Machine Building Technology Алтайский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технологии Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(67880, 'https://ror.org/03cmt3942', 'en', 1, 'https://ror.org/03cmt3942 National Museum New Delhi'),
(67881, 'https://ror.org/03cterj73', 'no_lang_code', 1, 'https://ror.org/03cterj73 Aquila Bioscience (Ireland)'),
(67882, 'https://ror.org/03cthg118', 'en', 1, 'https://ror.org/03cthg118 Istituto di ricerca Santa Marinella Santa Marinella Research Institute'),
(67883, 'https://ror.org/03cv88167', 'en', 1, 'https://ror.org/03cv88167 Korea Social Science Data Archive ķ•œźµ­ģ‚¬ķšŒź³¼ķ•™ģžė£Œģ›'),
(67884, 'https://ror.org/03cvbjc43', 'it', 1, 'https://ror.org/03cvbjc43 I.R.C.C.S. Oasi Maria SS'),
(67885, 'https://ror.org/03cvn7e55', 'en', 1, 'https://ror.org/03cvn7e55 Women In Technology International'),
(67886, 'https://ror.org/03cw0ad25', 'no_lang_code', 1, 'https://ror.org/03cw0ad25 Beijing Urban Construction Design & Development Group (China)'),
(67887, 'https://ror.org/03cwgd676', 'en', 1, 'https://ror.org/03cwgd676 National Information Standards Organization'),
(67888, 'https://ror.org/03cyrwm25', 'en', 1, 'https://ror.org/03cyrwm25 National Council on Family Relations'),
(67889, 'https://ror.org/03cz3xh96', 'lt', 1, 'https://ror.org/03cz3xh96 Marijampolė municipality, Marijampolės savivaldybė'),
(67890, 'https://ror.org/03czddz67', 'en', 1, 'https://ror.org/03czddz67 Gasóga na hƉireann Scouting Ireland'),
(67891, 'https://ror.org/03cznfh76', 'en', 1, 'https://ror.org/03cznfh76 London Mathematical Laboratory'),
(67892, 'https://ror.org/03d1xjg58', 'en', 1, 'https://ror.org/03d1xjg58 William Osler Health System'),
(67893, 'https://ror.org/03d3d5f32', 'en', 1, 'https://ror.org/03d3d5f32 Kyungmin University ź²½ėÆ¼ėŒ€ķ•™źµ'),
(67894, 'https://ror.org/03d3w4k14', 'en', 1, 'https://ror.org/03d3w4k14 Azərbaycan Respublikasının Səhiyyə Nazirliyi Ministry of Healthcare'),
(67895, 'https://ror.org/03d4vn886', 'it', 1, 'https://ror.org/03d4vn886 Consorzio Mipa'),
(67896, 'https://ror.org/03d6pk735', 'en', 1, 'https://ror.org/03d6pk735 World Rugby'),
(67897, 'https://ror.org/03d73se48', 'no_lang_code', 1, 'https://ror.org/03d73se48 EC Systems (Poland)'),
(67898, 'https://ror.org/03d8xcp24', 'en', 1, 'https://ror.org/03d8xcp24 VA Afanasyev Research Institute of Fur-breeding and Rabbit breeding'),
(67899, 'https://ror.org/03d9hbb17', 'en', 1, 'https://ror.org/03d9hbb17 All-Russian Research Institute of Brewing, Non-Alcoholic and Wine Industry Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŸŠøŠ²Š¾Š²Š°Ń€ŠµŠ½Š½Š¾Š¹, Š‘ŠµŠ·Š°Š»ŠŗŠ¾Š³Š¾Š»ŃŒŠ½Š¾Š¹ И Š’ŠøŠ½Š¾Š“ŠµŠ»ŃŒŃ‡ŠµŃŠŗŠ¾Š¹ ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(67900, 'https://ror.org/03d9yvx07', 'no_lang_code', 1, 'https://ror.org/03d9yvx07 Medinstill (United States)'),
(67901, 'https://ror.org/03ddkyw71', 'en', 1, 'https://ror.org/03ddkyw71 Bulgarian Food Safety Agency Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° ŠŠ³ŠµŠ½Ń†ŠøŃ по Безопасност на Єраните'),
(67902, 'https://ror.org/03dhkf841', 'no_lang_code', 1, 'https://ror.org/03dhkf841 Hangzhou West-Lake Fountain Installation Serials (China) ę­å·žč„æę¹–å–·ę³‰č®¾å¤‡ęˆå„—ęœ‰é™å…¬åø'),
(67903, 'https://ror.org/03djtgh02', 'en', 1, 'https://ror.org/03djtgh02 Primary Health Care Ł…Ų¤Ų³Ų³Ų© Ų§Ł„Ų±Ų¹Ų§ŁŠŲ© Ų§Ł„ŲµŲ­ŁŠŲ© Ų§Ł„Ų£ŁˆŁ„ŁŠŲ©'),
(67904, 'https://ror.org/03dkatp24', 'no_lang_code', 1, 'https://ror.org/03dkatp24 Longchang Group (China)'),
(67905, 'https://ror.org/03dkhv024', 'en', 1, 'https://ror.org/03dkhv024 Korean Cinema Association ķ•œźµ­ ģ˜ķ™” ķ˜‘ķšŒ'),
(67906, 'https://ror.org/03dmmx952', 'en', 1, 'https://ror.org/03dmmx952 Israel-Europe R&D Directorate'),
(67907, 'https://ror.org/03dn9ew70', 'en', 1, 'https://ror.org/03dn9ew70 WAMITAB'),
(67908, 'https://ror.org/03dnebc81', 'en', 1, 'https://ror.org/03dnebc81 Bundesverband der Deutschen Volksbanken und Raiffeisenbanken National Association of German Cooperative Bank'),
(67909, 'https://ror.org/03dnk5950', 'no_lang_code', 1, 'https://ror.org/03dnk5950 Canberra (United Kingdom)'),
(67910, 'https://ror.org/03dnkwm40', 'no_lang_code', 1, 'https://ror.org/03dnkwm40 Anacail (United Kingdom)'),
(67911, 'https://ror.org/03dnqre85', 'no_lang_code', 1, 'https://ror.org/03dnqre85 FireEye (United States)'),
(67912, 'https://ror.org/03dp0nd82', 'en', 1, 'https://ror.org/03dp0nd82 British Board of AgrƩment'),
(67913, 'https://ror.org/03dpx8939', 'no_lang_code', 1, 'https://ror.org/03dpx8939 Bayer (South Korea) ė°”ģ“ģ—˜'),
(67914, 'https://ror.org/03drbv102', 'pt', 1, 'https://ror.org/03drbv102 Escola de Negócios e Administração'),
(67915, 'https://ror.org/03ds52424', 'no_lang_code', 1, 'https://ror.org/03ds52424 Electromechanical Device Installation (China) ęœŗē”µč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(67916, 'https://ror.org/03dt4rv96', 'en', 1, 'https://ror.org/03dt4rv96 Korean Society for Emotion and Sensibility ķ•œźµ­ź°ģ„±ź³¼ķ•™ķšŒ'),
(67917, 'https://ror.org/03dtb8870', 'no_lang_code', 1, 'https://ror.org/03dtb8870 Speechmatics (United Kingdom)'),
(67918, 'https://ror.org/03dvyec47', 'no_lang_code', 1, 'https://ror.org/03dvyec47 Lambda Films (United Kingdom)'),
(67919, 'https://ror.org/03dyavz10', 'en', 1, 'https://ror.org/03dyavz10 Institute for National Security Strategy źµ­ź°€ģ•ˆė³“ģ „ėžµģ—°źµ¬ģ›'),
(67920, 'https://ror.org/03dys8z83', 'no_lang_code', 1, 'https://ror.org/03dys8z83 Bexel (South Korea) 범셀'),
(67921, 'https://ror.org/03dzbma55', 'en', 1, 'https://ror.org/03dzbma55 Western Development Commission'),
(67922, 'https://ror.org/03dzmbv89', 'en', 1, 'https://ror.org/03dzmbv89 Cambridgeshire County Council'),
(67923, 'https://ror.org/03e0kkv22', 'fr', 1, 'https://ror.org/03e0kkv22 Office des Personnes HandicapƩes du QuƩbec'),
(67924, 'https://ror.org/03e14yd37', 'en', 1, 'https://ror.org/03e14yd37 Korea Christian Educational Information Society źø°ė…źµźµģœ”ģ •ė³“ķ•™ķšŒ'),
(67925, 'https://ror.org/03e3kzq14', 'no_lang_code', 1, 'https://ror.org/03e3kzq14 Hubbard Products (United Kingdom)'),
(67926, 'https://ror.org/03e3mtv29', 'en', 1, 'https://ror.org/03e3mtv29 Frank and Rosemary Iovieno Caring for Children Foundation'),
(67927, 'https://ror.org/03e6wzs70', 'no_lang_code', 1, 'https://ror.org/03e6wzs70 Unisen Group (China)'),
(67928, 'https://ror.org/03e8v6h48', 'en', 1, 'https://ror.org/03e8v6h48 The Korean Society for Microbiology and Biotechnology ķ•œźµ­ėÆøģƒė¬¼ģƒėŖ…ź³µķ•™ķšŒ'),
(67929, 'https://ror.org/03e92b619', 'en', 1, 'https://ror.org/03e92b619 3-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½Š¾Š±Š¾Ń€Š¾Š½Ń‹ России 3rd Central Research Institute of the Russian Defence Ministry'),
(67930, 'https://ror.org/03e9p3c51', 'no_lang_code', 1, 'https://ror.org/03e9p3c51 Boehringer Ingelheim (South Korea) ķ•œźµ­ė² ė§ź±°ģøź²”ķ•˜ģž„'),
(67931, 'https://ror.org/03ec9a810', 'en', 1, 'https://ror.org/03ec9a810 Mahatma Gandhi Mission''s Dental College and Hospital ą¤®ą¤œą„€ą¤ą¤® ą¤”ą„‡ą¤‚ą¤Ÿą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ अँऔ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(67932, 'https://ror.org/03eewsq17', 'no_lang_code', 1, 'https://ror.org/03eewsq17 DNEG (United Kingdom)'),
(67933, 'https://ror.org/03efra385', 'no_lang_code', 1, 'https://ror.org/03efra385 Manchurian Society 만주 ģ‚¬ķšŒ'),
(67934, 'https://ror.org/03eg3xh26', 'no_lang_code', 1, 'https://ror.org/03eg3xh26 Bleepbleeps (United Kingdom)'),
(67935, 'https://ror.org/03egtq807', 'en', 1, 'https://ror.org/03egtq807 Korean Otological Society ėŒ€ķ•œģ“ź³¼ķ•™ķšŒ'),
(67936, 'https://ror.org/03eh9sb92', 'en', 1, 'https://ror.org/03eh9sb92 Historians Against Slavery'),
(67937, 'https://ror.org/03ej4ab68', 'no_lang_code', 1, 'https://ror.org/03ej4ab68 Partron (South Korea) 파트딠'),
(67938, 'https://ror.org/03ekz9c12', 'no_lang_code', 1, 'https://ror.org/03ekz9c12 Guizhou Winstar Hydraulic Transmission Machinery (China) č“µå·žå‡Æę˜Ÿę¶²åŠ›ä¼ åŠØęœŗę¢°ęœ‰é™å…¬åø'),
(67939, 'https://ror.org/03emyb266', 'en', 1, 'https://ror.org/03emyb266 Active Aging Canada'),
(67940, 'https://ror.org/03enb9971', 'en', 1, 'https://ror.org/03enb9971 Korean International Maritime Law Association ķ•œźµ­ķ•“ģ‚¬ė²•ķ•™ķšŒ'),
(67941, 'https://ror.org/03ep0t884', 'no_lang_code', 1, 'https://ror.org/03ep0t884 ANGA Mechanical Seals (Poland) ANGA Uszczelnienia Mechaniczne'),
(67942, 'https://ror.org/03epkyk81', 'en', 1, 'https://ror.org/03epkyk81 Kahnawake Education Center'),
(67943, 'https://ror.org/03eszxk44', 'en', 1, 'https://ror.org/03eszxk44 Berkeley-Charleston-Dorchester Council of Governments'),
(67944, 'https://ror.org/03ew4ty82', 'no_lang_code', 1, 'https://ror.org/03ew4ty82 Celiko (Poland)'),
(67945, 'https://ror.org/03ey31514', 'no_lang_code', 1, 'https://ror.org/03ey31514 CliniRx (India)'),
(67946, 'https://ror.org/03eyba682', 'no_lang_code', 1, 'https://ror.org/03eyba682 3DX-Ray (United Kingdom)'),
(67947, 'https://ror.org/03f1dy734', 'en', 1, 'https://ror.org/03f1dy734 Korean Society of Mathematical Education ģ‚¬ė‹Øė²•ģø ķ•œźµ­ģˆ˜ķ•™źµģœ”ķ•™ķšŒ ģ •ź“€'),
(67948, 'https://ror.org/03f20tk20', 'no_lang_code', 1, 'https://ror.org/03f20tk20 Pixelworks (China)'),
(67949, 'https://ror.org/03f2t9x29', 'en', 1, 'https://ror.org/03f2t9x29 Research Institute of Semiconductor Devices ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠ¾Š»ŃƒŠæŃ€Š¾Š²Š¾Š“Š½ŠøŠŗŠ¾Š²Ń‹Ń… приборов'),
(67950, 'https://ror.org/03f3afg04', 'en', 1, 'https://ror.org/03f3afg04 Uttarakhand Ayurved University'),
(67951, 'https://ror.org/03f53yd09', 'fr', 1, 'https://ror.org/03f53yd09 Certifer'),
(67952, 'https://ror.org/03f5qdn26', 'pt', 1, 'https://ror.org/03f5qdn26 Fundace, Fundação para Pesquisa e Desenvolvimento da Administração, Contabilidade e Economia'),
(67953, 'https://ror.org/03f617c76', 'no_lang_code', 1, 'https://ror.org/03f617c76 ASD Technology (China)'),
(67954, 'https://ror.org/03f668467', 'no_lang_code', 1, 'https://ror.org/03f668467 Supermicro (United States)'),
(67955, 'https://ror.org/03fbzmy04', 'no_lang_code', 1, 'https://ror.org/03fbzmy04 22q11 Ireland'),
(67956, 'https://ror.org/03fc5a179', 'no_lang_code', 1, 'https://ror.org/03fc5a179 BTM Cluster (Poland)'),
(67957, 'https://ror.org/03fcc9n48', 'no_lang_code', 1, 'https://ror.org/03fcc9n48 Celbius (United Kingdom)'),
(67958, 'https://ror.org/03fdkrb80', 'en', 1, 'https://ror.org/03fdkrb80 The Sociolinguistic Society of Korea ķ•œźµ­ ģ‚¬ķšŒ ģ–øģ–“ ķ•™ķšŒ'),
(67959, 'https://ror.org/03feknn04', 'en', 1, 'https://ror.org/03feknn04 The Korean Society of Modern Chinese Literature ķ•œźµ­ģ¤‘źµ­ķ˜„ėŒ€ė¬øķ•™ķ•™ķšŒ'),
(67960, 'https://ror.org/03feqng50', 'en', 1, 'https://ror.org/03feqng50 Hopewell Fund'),
(67961, 'https://ror.org/03ff82720', 'no_lang_code', 1, 'https://ror.org/03ff82720 Johnson Electric (China) å¾·ę˜Œé›»ę©ŸęŽ§č‚”ęœ‰é™å…¬åø'),
(67962, 'https://ror.org/03ffr1d28', 'no_lang_code', 1, 'https://ror.org/03ffr1d28 Claims (India)'),
(67963, 'https://ror.org/03fgnpp77', 'no_lang_code', 1, 'https://ror.org/03fgnpp77 Syneos Health (India)'),
(67964, 'https://ror.org/03fgrnr69', 'en', 1, 'https://ror.org/03fgrnr69 Irish Penal Reform Trust'),
(67965, 'https://ror.org/03fgw4s80', 'no_lang_code', 1, 'https://ror.org/03fgw4s80 Scientific Research Institute of Marine Systems (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ морских систем'),
(67966, 'https://ror.org/03fhvyq37', 'en', 1, 'https://ror.org/03fhvyq37 Korean Technical Management Institute ķ•œźµ­źø°ģˆ ź²½ģ˜ģ—°źµ¬ģ›'),
(67967, 'https://ror.org/03fkhvq16', 'en', 1, 'https://ror.org/03fkhvq16 Desh Bhagat Ayurvedic College and Hospital'),
(67968, 'https://ror.org/03fmdyk54', 'no_lang_code', 1, 'https://ror.org/03fmdyk54 Cutting & Wear (United Kingdom)'),
(67969, 'https://ror.org/03fmpbg41', 'en', 1, 'https://ror.org/03fmpbg41 Reformed Graduate University'),
(67970, 'https://ror.org/03fps1283', 'no_lang_code', 1, 'https://ror.org/03fps1283 Sky (United Kingdom)'),
(67971, 'https://ror.org/03fqhrc68', 'no_lang_code', 1, 'https://ror.org/03fqhrc68 Verint Systems (United States)'),
(67972, 'https://ror.org/03fqhsr33', 'no_lang_code', 1, 'https://ror.org/03fqhsr33 Breathing Buildings (United Kingdom)'),
(67973, 'https://ror.org/03ft28352', 'no_lang_code', 1, 'https://ror.org/03ft28352 Innovation Performance Group (South Korea) ģ•„ģ“ķ”¼ź·øė£¹'),
(67974, 'https://ror.org/03fvsys22', 'lt', 1, 'https://ror.org/03fvsys22 Jonavos Rajono Savivaldybė'),
(67975, 'https://ror.org/03fvze758', 'en', 1, 'https://ror.org/03fvze758 Research Institute of Comprehensive Exploitation of Mineral Resources Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем комплексного Š¾ŃŠ²Š¾ŠµŠ½ŠøŃ неГр Š ŠŠ'),
(67976, 'https://ror.org/03fxjr266', 'no_lang_code', 1, 'https://ror.org/03fxjr266 Impression Technologies (United Kingdom)'),
(67977, 'https://ror.org/03fxqrk78', 'no_lang_code', 1, 'https://ror.org/03fxqrk78 AiSoft Technology (China)'),
(67978, 'https://ror.org/03g01jm12', 'fr', 1, 'https://ror.org/03g01jm12 Institut FranƧais de SƩoul'),
(67979, 'https://ror.org/03g45bs43', 'en', 1, 'https://ror.org/03g45bs43 The History of Korean Society ėŒ€ģ¤‘ģ„œģ‚¬ķ•™ķšŒ'),
(67980, 'https://ror.org/03g4p4m13', 'en', 1, 'https://ror.org/03g4p4m13 Association Nationale Autochtone du DiabĆØte National Aboriginal Diabetes Association'),
(67981, 'https://ror.org/03g4zd952', 'no_lang_code', 1, 'https://ror.org/03g4zd952 Emag Serwis (Poland)'),
(67982, 'https://ror.org/03g7k3c05', 'en', 1, 'https://ror.org/03g7k3c05 Art of Problem Solving Initiative'),
(67983, 'https://ror.org/03g7p4332', 'no_lang_code', 1, 'https://ror.org/03g7p4332 Geologorazvedka (Russia) ГеологоразвеГка'),
(67984, 'https://ror.org/03g7px163', 'en', 1, 'https://ror.org/03g7px163 Blackrock Castle Observatory'),
(67985, 'https://ror.org/03gaznv39', 'en', 1, 'https://ror.org/03gaznv39 Bundesministerium für Justiz Federal Ministry of Justice'),
(67986, 'https://ror.org/03gb38m78', 'en', 1, 'https://ror.org/03gb38m78 Shanghai Tongji Urban Planning and Design Institute äøŠęµ·åŒęµŽåŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢åœØåŒ'),
(67987, 'https://ror.org/03gh3xj41', 'en', 1, 'https://ror.org/03gh3xj41 Institut ekonomskih nauka Institute of Economic Sciences'),
(67988, 'https://ror.org/03gkdzy47', 'en', 1, 'https://ror.org/03gkdzy47 Commission communautaire franƧaise French Community Commission'),
(67989, 'https://ror.org/03gpgyd64', 'no_lang_code', 1, 'https://ror.org/03gpgyd64 GeneHarbor (China)'),
(67990, 'https://ror.org/03gq7nj97', 'en', 1, 'https://ror.org/03gq7nj97 Community Action for Safe Alternatives'),
(67991, 'https://ror.org/03gsqqb61', 'de', 1, 'https://ror.org/03gsqqb61 Institut für Soziale Infrastruktur'),
(67992, 'https://ror.org/03gtecx53', 'en', 1, 'https://ror.org/03gtecx53 Commonwealth Secretariat'),
(67993, 'https://ror.org/03gtgjs38', 'no_lang_code', 1, 'https://ror.org/03gtgjs38 Retraction (China)'),
(67994, 'https://ror.org/03gtnj176', 'no_lang_code', 1, 'https://ror.org/03gtnj176 Diagnostic Sonar (United Kingdom)'),
(67995, 'https://ror.org/03gwaxw53', 'en', 1, 'https://ror.org/03gwaxw53 Services Australia'),
(67996, 'https://ror.org/03gwmvd28', 'en', 1, 'https://ror.org/03gwmvd28 The Caspian Scientific Research Institute of Arid Aarming ŠŸŃ€ŠøŠŗŠ°ŃŠæŠøŠ¹ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ариГного Š·ŠµŠ¼Š»ŠµŠ“ŠµŠ»ŠøŃ'),
(67997, 'https://ror.org/03gy09487', 'no_lang_code', 1, 'https://ror.org/03gy09487 CN Bio Innovations (United Kingdom)'),
(67998, 'https://ror.org/03gyssm79', 'no_lang_code', 1, 'https://ror.org/03gyssm79 China Railway Construction Corporation (China) äø­å›½é“č·Æå»ŗč®¾ę€»å…¬åø'),
(67999, 'https://ror.org/03gzkvf55', 'no_lang_code', 1, 'https://ror.org/03gzkvf55 PeopleBio (South Korea)'),
(68000, 'https://ror.org/03h1fpd36', 'no_lang_code', 1, 'https://ror.org/03h1fpd36 Nubia Technology (China) åŠŖęÆ”äŗžęŠ€č”“ęœ‰é™å…¬åø'),
(68001, 'https://ror.org/03h2jvh82', 'no_lang_code', 1, 'https://ror.org/03h2jvh82 Amethyst Research (United Kingdom)'),
(68002, 'https://ror.org/03h3tha15', 'en', 1, 'https://ror.org/03h3tha15 Chungbuk Provincial College ģ¶©ė¶ė„ė¦½ėŒ€ķ•™'),
(68003, 'https://ror.org/03h65g504', 'no_lang_code', 1, 'https://ror.org/03h65g504 Advanced Blast & Ballistic Systems (United Kingdom)'),
(68004, 'https://ror.org/03h6a8753', 'en', 1, 'https://ror.org/03h6a8753 Education and Early Childhood Development'),
(68005, 'https://ror.org/03h8vnd21', 'no_lang_code', 1, 'https://ror.org/03h8vnd21 Mind the Gap Films (Ireland)'),
(68006, 'https://ror.org/03h9jqz26', 'en', 1, 'https://ror.org/03h9jqz26 Free Legal Advice Centres'),
(68007, 'https://ror.org/03h9pej87', 'no_lang_code', 1, 'https://ror.org/03h9pej87 Geranti (South Korea) ź²Œėž€ķ‹°'),
(68008, 'https://ror.org/03har1q80', 'no_lang_code', 1, 'https://ror.org/03har1q80 Yelp (United States)'),
(68009, 'https://ror.org/03har5c20', 'no_lang_code', 1, 'https://ror.org/03har5c20 Roszheldorproject (Russia) РосжелГорпроект'),
(68010, 'https://ror.org/03hcmsw69', 'en', 1, 'https://ror.org/03hcmsw69 Cardiff Tourist Information Centre'),
(68011, 'https://ror.org/03hebkk07', 'ga', 1, 'https://ror.org/03hebkk07 Ɓiseanna Tacaƭochta'),
(68012, 'https://ror.org/03hfst573', 'en', 1, 'https://ror.org/03hfst573 Arizona Secretary of State''s Office'),
(68013, 'https://ror.org/03hhghr21', 'en', 1, 'https://ror.org/03hhghr21 The Korean Social Security Association ķ•œźµ­ ģ‚¬ķšŒ ė³“ģž„ ķ˜‘ķšŒ'),
(68014, 'https://ror.org/03hhzh088', 'no_lang_code', 1, 'https://ror.org/03hhzh088 C-Tex (United Kingdom)'),
(68015, 'https://ror.org/03hmm9666', 'no_lang_code', 1, 'https://ror.org/03hmm9666 Tianjin Energy Investment Group (China) å¤©ę“„čƒ½ęŗęŠ•čµ„é›†å›¢ęœ‰é™å…¬åø'),
(68016, 'https://ror.org/03hrca821', 'no_lang_code', 1, 'https://ror.org/03hrca821 Interplastik (Poland)'),
(68017, 'https://ror.org/03ht1rb73', 'en', 1, 'https://ror.org/03ht1rb73 Aurous HealthCare'),
(68018, 'https://ror.org/03ht6cj06', 'en', 1, 'https://ror.org/03ht6cj06 Bahrain Center for Strategic International and Energy Studies'),
(68019, 'https://ror.org/03hw64936', 'no_lang_code', 1, 'https://ror.org/03hw64936 Campbell Soup (United States)'),
(68020, 'https://ror.org/03hye4039', 'en', 1, 'https://ror.org/03hye4039 Federal Scientific Center of Physical Culture and Sports Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Физической ŠšŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ И Дпорта'),
(68021, 'https://ror.org/03j057g08', 'no_lang_code', 1, 'https://ror.org/03j057g08 Shenyang Academy of Environmental Sciences (China) ę²ˆé˜³ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(68022, 'https://ror.org/03j1pdd39', 'en', 1, 'https://ror.org/03j1pdd39 Shanghai Industrial Technology Institute äøŠęµ·å·„äøšęŠ€ęœÆå­¦é™¢'),
(68023, 'https://ror.org/03j3raf08', 'no_lang_code', 1, 'https://ror.org/03j3raf08 Medzone Healthcare (China)'),
(68024, 'https://ror.org/03j7v1b32', 'en', 1, 'https://ror.org/03j7v1b32 Multiple Sclerosis Society of Ireland'),
(68025, 'https://ror.org/03j8jac95', 'no_lang_code', 1, 'https://ror.org/03j8jac95 Norbain (United Kingdom)'),
(68026, 'https://ror.org/03j9rnw13', 'en', 1, 'https://ror.org/03j9rnw13 The Korean Folklore Society ķ•œźµ­ ėÆ¼ģ† ķ•™ķšŒ'),
(68027, 'https://ror.org/03jfezp45', 'no_lang_code', 1, 'https://ror.org/03jfezp45 Parameter Space (Ireland)'),
(68028, 'https://ror.org/03jgnzt20', 'no_lang_code', 1, 'https://ror.org/03jgnzt20 China Telecom (China) 中国电俔'),
(68029, 'https://ror.org/03jgxy838', 'en', 1, 'https://ror.org/03jgxy838 Institute of Reproductive Medicine ą¦°ą¦æą¦Ŗą§ą¦°ą§‹ą¦”ą¦¾ą¦•ą¦Ÿą¦æą¦­ মেঔিসিন ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(68030, 'https://ror.org/03jhs6a31', 'en', 1, 'https://ror.org/03jhs6a31 Institute for Community Living'),
(68031, 'https://ror.org/03jm70514', 'en', 1, 'https://ror.org/03jm70514 Ministry of Foreign Affairs ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на Š²ŃŠŠ½ŃˆŠ½ŠøŃ‚е работи'),
(68032, 'https://ror.org/03jm8py90', 'en', 1, 'https://ror.org/03jm8py90 Dongbang Culture University ė™ė°© 문화 ėŒ€ķ•™źµ'),
(68033, 'https://ror.org/03jn38r85', 'en', 1, 'https://ror.org/03jn38r85 Collaborative Innovation Center of Quantum Matter é‡å­ē‰©č“Øē§‘å­¦ååŒåˆ›ę–°äø­åæƒ'),
(68034, 'https://ror.org/03jnm8t41', 'no_lang_code', 1, 'https://ror.org/03jnm8t41 Alltech (Ireland)'),
(68035, 'https://ror.org/03jpdh152', 'no_lang_code', 1, 'https://ror.org/03jpdh152 Well Synergy International (China)'),
(68036, 'https://ror.org/03jpstz64', 'en', 1, 'https://ror.org/03jpstz64 Ministry of Science and Technology ąŗąŗ°ąŗŠąŗ§ąŗ‡ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ąŗŖąŗ²ąŗ” ą»ąŗ„ąŗ°ą»€ąŗ•ąŗ±ąŗą»‚ąŗ™ą»‚ąŗ„ąŗŠąŗµ'),
(68037, 'https://ror.org/03jqpht28', 'no_lang_code', 1, 'https://ror.org/03jqpht28 Ferrovial (United Kingdom)'),
(68038, 'https://ror.org/03jraf938', 'en', 1, 'https://ror.org/03jraf938 The Piegan Institute'),
(68039, 'https://ror.org/03jrrs135', 'en', 1, 'https://ror.org/03jrrs135 National Disability Authority'),
(68040, 'https://ror.org/03jswvp59', 'en', 1, 'https://ror.org/03jswvp59 Ministry for Health'),
(68041, 'https://ror.org/03jt3fb13', 'en', 1, 'https://ror.org/03jt3fb13 BiofoodCRO (South Korea) ė°”ģ“ģ˜¤ķ‘øė“œ CRO'),
(68042, 'https://ror.org/03jw91041', 'no_lang_code', 1, 'https://ror.org/03jw91041 Jindal Naturecure Institute ą¤œą¤æą¤‚ą¤¦ą¤² ą¤Øą„‡ą¤šą¤°ą¤šą¤° ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ'),
(68043, 'https://ror.org/03jwdnh41', 'no_lang_code', 1, 'https://ror.org/03jwdnh41 Arbro Pharmaceuticals (India)'),
(68044, 'https://ror.org/03jyeqt59', 'no_lang_code', 1, 'https://ror.org/03jyeqt59 Korea Bio Solution (South Korea) ķ•œźµ­ė°”ģ“ģ˜¤ģ†”ė£Øģ…˜'),
(68045, 'https://ror.org/03jzw9k83', 'no_lang_code', 1, 'https://ror.org/03jzw9k83 Torrent Pharma (India)'),
(68046, 'https://ror.org/03k3ymr68', 'en', 1, 'https://ror.org/03k3ymr68 Mental Health and Recovery Services Board of Seneca, Sandusky and Wyandot Counties'),
(68047, 'https://ror.org/03k52at40', 'en', 1, 'https://ror.org/03k52at40 Academy of Philosophy ģ² ķ•™ ģ•„ģ¹“ė°ėÆø'),
(68048, 'https://ror.org/03k6gyz62', 'en', 1, 'https://ror.org/03k6gyz62 The Korean Association of Literature and Film ķ•œźµ­ 문학 ģ˜ķ™” ķ•™ķšŒ'),
(68049, 'https://ror.org/03k7e2020', 'no_lang_code', 1, 'https://ror.org/03k7e2020 Ironfly Technologies (China)'),
(68050, 'https://ror.org/03k8nq416', 'en', 1, 'https://ror.org/03k8nq416 Asian Comparative Folklore Society ģ•„ģ‹œģ•„ 비교 민간 ģ‚¬ķšŒ'),
(68051, 'https://ror.org/03kb01078', 'en', 1, 'https://ror.org/03kb01078 Hong Kong Green Building Council é¦™ęøÆē¶ č‰²å»ŗēÆ‰č­°ęœƒ'),
(68052, 'https://ror.org/03kb9y492', 'en', 1, 'https://ror.org/03kb9y492 SDM College of Medical Science and Hospital ą²Žą²øą³ ಔಿ ą²Žą²®ą³ ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(68053, 'https://ror.org/03kcd5067', 'en', 1, 'https://ror.org/03kcd5067 Donggwon Science and Technology University ė™ģ›ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(68054, 'https://ror.org/03kcfmk89', 'en', 1, 'https://ror.org/03kcfmk89 Suzhou Academy of Agricultural Sciences č‹å·žåø‚å†œäøšē§‘å­¦é™¢'),
(68055, 'https://ror.org/03kgapk50', 'no_lang_code', 1, 'https://ror.org/03kgapk50 MAGJ Hospital'),
(68056, 'https://ror.org/03kj2mz58', 'en', 1, 'https://ror.org/03kj2mz58 Hong Kong Far Infrared Rays Association é¦™ęøÆé ē“…å¤–ē·šå”ęœƒ'),
(68057, 'https://ror.org/03kjbs929', 'en', 1, 'https://ror.org/03kjbs929 Rural Payments Agency'),
(68058, 'https://ror.org/03kjkfb75', 'no_lang_code', 1, 'https://ror.org/03kjkfb75 It’s Fresh (United Kingdom)'),
(68059, 'https://ror.org/03kk81v06', 'en', 1, 'https://ror.org/03kk81v06 International Slavery Museum'),
(68060, 'https://ror.org/03kke0n21', 'en', 1, 'https://ror.org/03kke0n21 Stockholm Environment Institute'),
(68061, 'https://ror.org/03knart10', 'fr', 1, 'https://ror.org/03knart10 Agence France-Presse'),
(68062, 'https://ror.org/03knd6b36', 'en', 1, 'https://ror.org/03knd6b36 Amnesty International'),
(68063, 'https://ror.org/03kpa8902', 'en', 1, 'https://ror.org/03kpa8902 Coalition on Violence Against Women'),
(68064, 'https://ror.org/03kq7m969', 'no_lang_code', 1, 'https://ror.org/03kq7m969 Advanced Innovative Engineering (United Kingdom)'),
(68065, 'https://ror.org/03krv7d59', 'en', 1, 'https://ror.org/03krv7d59 All-Russian Research and Design Institute of Nuclear and Power Engineering Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ атомного Šø ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(68066, 'https://ror.org/03kt9pk73', 'en', 1, 'https://ror.org/03kt9pk73 Ionad Cearta Imirceach na hƉireann Migrant Rights Centre Ireland'),
(68067, 'https://ror.org/03kx1j711', 'no_lang_code', 1, 'https://ror.org/03kx1j711 Future Voice System (Poland)'),
(68068, 'https://ror.org/03kx7xv57', 'no_lang_code', 1, 'https://ror.org/03kx7xv57 Little Swan (China)'),
(68069, 'https://ror.org/03kxtax58', 'en', 1, 'https://ror.org/03kxtax58 Sichuan Institute of Building Research å››å·ēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(68070, 'https://ror.org/03kzhbn97', 'no_lang_code', 1, 'https://ror.org/03kzhbn97 Fotile (China) 方太'),
(68071, 'https://ror.org/03m002728', 'no_lang_code', 1, 'https://ror.org/03m002728 Jiangsu Gaoke Applied Science Research Institute (China) ę±Ÿč‹é«˜ē§‘åŗ”ē”Øē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(68072, 'https://ror.org/03m0n3c07', 'it', 1, 'https://ror.org/03m0n3c07 Institute of Applied Mathematics and Information Technologies, Istituto di Matematica Applicata e Tecnologie Informatiche'),
(68073, 'https://ror.org/03m3ca021', 'en', 1, 'https://ror.org/03m3ca021 RMIT Europe'),
(68074, 'https://ror.org/03m3za047', 'en', 1, 'https://ror.org/03m3za047 Pecan Street'),
(68075, 'https://ror.org/03m6cnv16', 'no_lang_code', 1, 'https://ror.org/03m6cnv16 NTST Forestry Machine Manufacture Installation (China) NTST ęž—äøšęœŗę¢°åˆ¶é€ å®‰č£…'),
(68076, 'https://ror.org/03m7d0s87', 'en', 1, 'https://ror.org/03m7d0s87 Medilink East Midlands'),
(68077, 'https://ror.org/03mbmmk80', 'no_lang_code', 1, 'https://ror.org/03mbmmk80 Crop Intellect (United Kingdom)'),
(68078, 'https://ror.org/03mbt7q53', 'en', 1, 'https://ror.org/03mbt7q53 Wuxi Wind Power Design and Research Institute ę— é””é£Žē”µč®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(68079, 'https://ror.org/03mbybz64', 'en', 1, 'https://ror.org/03mbybz64 Research and Design Institute of the Equipment for Tyre Industry ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¾Š±Š¾Ń€ŃƒŠ“Š¾Š²Š°Š½ŠøŃŽ Š“Š»Ń шинной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(68080, 'https://ror.org/03md1xx44', 'en', 1, 'https://ror.org/03md1xx44 Geological Exploration Technology Institute of Jiangsu Province åœ°č“Øå‹˜ęŸ„ęŠ€ęœÆé™¢'),
(68081, 'https://ror.org/03mdx1k69', 'en', 1, 'https://ror.org/03mdx1k69 Greater Portland Council of Governments'),
(68082, 'https://ror.org/03metqd67', 'no_lang_code', 1, 'https://ror.org/03metqd67 eNano Health (China)'),
(68083, 'https://ror.org/03mjn8x60', 'en', 1, 'https://ror.org/03mjn8x60 Moscow Scientific-Research Television Institute Московский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ телевизионный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(68084, 'https://ror.org/03mjzvj44', 'no_lang_code', 1, 'https://ror.org/03mjzvj44 Optimum Nano (China)'),
(68085, 'https://ror.org/03mmctw95', 'no_lang_code', 1, 'https://ror.org/03mmctw95 MSN Laboratories (India)'),
(68086, 'https://ror.org/03ms5pa94', 'no_lang_code', 1, 'https://ror.org/03ms5pa94 IrkutskNIIHimmash (Russia)'),
(68087, 'https://ror.org/03ms7da52', 'de', 1, 'https://ror.org/03ms7da52 Niedersächsisches Ministerium für Inneres und Sport'),
(68088, 'https://ror.org/03mwc5x18', 'no_lang_code', 1, 'https://ror.org/03mwc5x18 Chunghwa Medipower (South Korea) ģ²­ķ™”ė©”ė””ķŒŒģ›Œ(주)'),
(68089, 'https://ror.org/03mxyhv84', 'no_lang_code', 1, 'https://ror.org/03mxyhv84 Kuhnil Pharma (South Korea) ź±“ģ¼ģ œģ•½'),
(68090, 'https://ror.org/03myvh511', 'en', 1, 'https://ror.org/03myvh511 Zhangzhou Vocational and Technical College ę¼³å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(68091, 'https://ror.org/03mz26918', 'no_lang_code', 1, 'https://ror.org/03mz26918 Cargotec (Finland)'),
(68092, 'https://ror.org/03mzdta96', 'en', 1, 'https://ror.org/03mzdta96 Sanjivani Super Speciality Hospitals'),
(68093, 'https://ror.org/03mzdwb95', 'en', 1, 'https://ror.org/03mzdwb95 Guangzhou Quality Supervision, Inspection and Research Institute å¹æå·žč“Øé‡ē›‘ē£ę£€ęµ‹ē ”ē©¶é™¢'),
(68094, 'https://ror.org/03n01va58', 'en', 1, 'https://ror.org/03n01va58 Korean Association of Family Therapy'),
(68095, 'https://ror.org/03n1kz237', 'en', 1, 'https://ror.org/03n1kz237 New Zealand Christians in Science Te Kāhui Whakapono ki Nga Kaipūtaiao o Te Motu'),
(68096, 'https://ror.org/03n4ayy20', 'en', 1, 'https://ror.org/03n4ayy20 RAFT'),
(68097, 'https://ror.org/03n603b32', 'de', 1, 'https://ror.org/03n603b32 Bundesverband der SelbstƤndigen Deutscher Gewerbeverband'),
(68098, 'https://ror.org/03n6ptv32', 'en', 1, 'https://ror.org/03n6ptv32 Coastal Watershed Council'),
(68099, 'https://ror.org/03n86v874', 'no_lang_code', 1, 'https://ror.org/03n86v874 Zillow Group (United States)'),
(68100, 'https://ror.org/03n8g4g56', 'no_lang_code', 1, 'https://ror.org/03n8g4g56 Baxendale (United Kingdom)'),
(68101, 'https://ror.org/03n90de98', 'en', 1, 'https://ror.org/03n90de98 Canadian Institute of Child Health'),
(68102, 'https://ror.org/03n983v14', 'en', 1, 'https://ror.org/03n983v14 Federal Aviation Office Luftfahrt-Bundesamt'),
(68103, 'https://ror.org/03n9kt276', 'en', 1, 'https://ror.org/03n9kt276 The Audience Agency'),
(68104, 'https://ror.org/03n9t0w02', 'fr', 1, 'https://ror.org/03n9t0w02 Association des Doyennes et des Doyens des Ɖtudes SupĆ©rieures au QuĆ©bec'),
(68105, 'https://ror.org/03n9xd583', 'en', 1, 'https://ror.org/03n9xd583 Xinjiang Academy of Forestry ꜉ ę–°ē–†ęž—äøšē§‘å­¦é™¢'),
(68106, 'https://ror.org/03na4j812', 'no_lang_code', 1, 'https://ror.org/03na4j812 CreaPhys (Germany)'),
(68107, 'https://ror.org/03ngwn840', 'en', 1, 'https://ror.org/03ngwn840 Rainbow Health Ontario SantƩ arc-en-ciel Ontario'),
(68108, 'https://ror.org/03nh4nw42', 'no_lang_code', 1, 'https://ror.org/03nh4nw42 Dem Dx (United Kingdom)'),
(68109, 'https://ror.org/03nhp6a75', 'en', 1, 'https://ror.org/03nhp6a75 Canadian Dental Hygienists Association'),
(68110, 'https://ror.org/03njbda75', 'en', 1, 'https://ror.org/03njbda75 Danish Ministry of Finance Finansministeriet'),
(68111, 'https://ror.org/03nkgv042', 'en', 1, 'https://ror.org/03nkgv042 Korean Historical Folklore Institute ķ•œźµ­ģ—­ģ‚¬ėÆ¼ģ†ķ•™ķšŒ'),
(68112, 'https://ror.org/03nm59d75', 'en', 1, 'https://ror.org/03nm59d75 Hong Kong R&D Centre for Logistics and Supply Chain Management Enabling Technologies é¦™ęøÆē‰©ęµåŠä¾›åŗ”é“¾ē®”ē†åŗ”ē”ØęŠ€ęœÆē ”å‘äø­åæƒ'),
(68113, 'https://ror.org/03nnrh396', 'no_lang_code', 1, 'https://ror.org/03nnrh396 Housing Quality Network (United Kingdom)'),
(68114, 'https://ror.org/03np7fg50', 'en', 1, 'https://ror.org/03np7fg50 Pyatigorsk State Scientific Research Institute of Balneology ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠø'),
(68115, 'https://ror.org/03nvser95', 'no_lang_code', 1, 'https://ror.org/03nvser95 ASM Pacific Technology (China)'),
(68116, 'https://ror.org/03nwbtx86', 'no_lang_code', 1, 'https://ror.org/03nwbtx86 Libra Trading Company (Qatar)'),
(68117, 'https://ror.org/03nwyka65', 'en', 1, 'https://ror.org/03nwyka65 International Association of Korean Literary and Cultural Studies źµ­ģ œķ•œźµ­ė¬øķ•™ė¬øķ™”ķ•™ķšŒ'),
(68118, 'https://ror.org/03nz9nk15', 'no_lang_code', 1, 'https://ror.org/03nz9nk15 Selekt Výskumný a Šľachtiteľský Ústav (Slovakia)'),
(68119, 'https://ror.org/03p6bmy35', 'no_lang_code', 1, 'https://ror.org/03p6bmy35 Biocera (South Korea) ė°”ģ“ģ˜¤ ģ—ė¼'),
(68120, 'https://ror.org/03p7qab35', 'en', 1, 'https://ror.org/03p7qab35 Atlantic Arc Commission'),
(68121, 'https://ror.org/03p928666', 'no_lang_code', 1, 'https://ror.org/03p928666 RedT Energy Storage (United Kingdom)'),
(68122, 'https://ror.org/03pbjsf94', 'en', 1, 'https://ror.org/03pbjsf94 Danish Ministry of Industry, Business and Financial Affairs Erhvervsministeriets opgave'),
(68123, 'https://ror.org/03pch7e04', 'en', 1, 'https://ror.org/03pch7e04 CAG Consultants'),
(68124, 'https://ror.org/03pcp9q42', 'no_lang_code', 1, 'https://ror.org/03pcp9q42 PharmacoGenetics (China)'),
(68125, 'https://ror.org/03pdr1e82', 'en', 1, 'https://ror.org/03pdr1e82 Ministarstvo graditeljstva i prostornoga uređenja Ministry of Construction and Physical Planning'),
(68126, 'https://ror.org/03pengj43', 'es', 1, 'https://ror.org/03pengj43 Asociación de Comunidades Forestales de Peten'),
(68127, 'https://ror.org/03ph7q594', 'no_lang_code', 1, 'https://ror.org/03ph7q594 KLE Ayur World'),
(68128, 'https://ror.org/03pj17v68', 'en', 1, 'https://ror.org/03pj17v68 Jeonnam Bioindustry Foundation 전남 ė°”ģ“ģ˜¤ ģ‚°ģ—… ģž¬ė‹Ø'),
(68129, 'https://ror.org/03pm9cy40', 'it', 1, 'https://ror.org/03pm9cy40 Agenzia Energetica Della Provincia Di Livorno'),
(68130, 'https://ror.org/03pmvdv44', 'no_lang_code', 1, 'https://ror.org/03pmvdv44 IDT Biologika (Germany)'),
(68131, 'https://ror.org/03ppy8d91', 'en', 1, 'https://ror.org/03ppy8d91 International Institute for Mesopotamian Area Studies'),
(68132, 'https://ror.org/03pr7ft13', 'en', 1, 'https://ror.org/03pr7ft13 State Research Center for Dermatovenereology and Cosmetology'),
(68133, 'https://ror.org/03psvch52', 'en', 1, 'https://ror.org/03psvch52 Dr. BMN College of Home Science Dr. BMN ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ़ ą¤¹ą„‹ą¤® साइंस'),
(68134, 'https://ror.org/03ptfj749', 'en', 1, 'https://ror.org/03ptfj749 Korea Petroleum Quality & Distribution Authority ķ•œźµ­ ģ„ģœ  ķ’ˆģ§ˆ ꓀리국'),
(68135, 'https://ror.org/03pttjv50', 'en', 1, 'https://ror.org/03pttjv50 Glamorgan Archives'),
(68136, 'https://ror.org/03pw0zs24', 'no_lang_code', 1, 'https://ror.org/03pw0zs24 Jilin Electric Power Research Institute (China) å‰ęž—ēœē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(68137, 'https://ror.org/03pydxa09', 'en', 1, 'https://ror.org/03pydxa09 Tianjin Institute of Metrological Supervision Testing å¤©ę“„č®”é‡ē›‘ē£ę£€ęµ‹ē§‘å­¦ē ”ē©¶é™¢'),
(68138, 'https://ror.org/03q0nr592', 'no_lang_code', 1, 'https://ror.org/03q0nr592 Hankuk Carbon (South Korea) ķ•œźµ­ 칓본'),
(68139, 'https://ror.org/03q1bec86', 'en', 1, 'https://ror.org/03q1bec86 Slovak Governance Institute'),
(68140, 'https://ror.org/03q29n119', 'en', 1, 'https://ror.org/03q29n119 Ottawa Public Health SantƩ Publique Ottawa'),
(68141, 'https://ror.org/03q2d8x50', 'en', 1, 'https://ror.org/03q2d8x50 Digestive CARE'),
(68142, 'https://ror.org/03q2s0610', 'no_lang_code', 1, 'https://ror.org/03q2s0610 Edgewater Federal Solutions (United States)'),
(68143, 'https://ror.org/03q3een69', 'no_lang_code', 1, 'https://ror.org/03q3een69 China Communications Construction Company (China) äø­å›½äŗ¤é€šå»ŗč®¾å…¬åø');
INSERT INTO `rors` VALUES
(68144, 'https://ror.org/03q4mza74', 'no_lang_code', 1, 'https://ror.org/03q4mza74 NCSOFT (South Korea)'),
(68145, 'https://ror.org/03q4yat34', 'no_lang_code', 1, 'https://ror.org/03q4yat34 Guangdong Taibao Medical Technology (China) å¹æäøœę³°å®åŒ»ē–—ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(68146, 'https://ror.org/03q57f308', 'no_lang_code', 1, 'https://ror.org/03q57f308 Nizhny Novgorod Research Institute of Radio Engineering (Russia) Ā«Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-произвоГственный центр Ā«ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиотехники»'),
(68147, 'https://ror.org/03q5f3h16', 'en', 1, 'https://ror.org/03q5f3h16 National Women''s Studies Association'),
(68148, 'https://ror.org/03q5grb87', 'fr', 1, 'https://ror.org/03q5grb87 AcadƩmie des Sciences et des Technologies d''AlgƩrie'),
(68149, 'https://ror.org/03q6e5e49', 'no_lang_code', 1, 'https://ror.org/03q6e5e49 Stempeutics (India)'),
(68150, 'https://ror.org/03q78z367', 'en', 1, 'https://ror.org/03q78z367 The Genetics Society of Korea ķ•œźµ­ģœ ģ „ķ•™ķšŒ'),
(68151, 'https://ror.org/03qb1ht73', 'no_lang_code', 1, 'https://ror.org/03qb1ht73 Lishen (China) å¤©ę“„åŠ›ē„žē”µę± č‚”ä»½ęœ‰é™å…¬åø'),
(68152, 'https://ror.org/03qbvh110', 'en', 1, 'https://ror.org/03qbvh110 Korean Christian Society ķ•œźµ­źø°ė…źµķ•™ķšŒ'),
(68153, 'https://ror.org/03qc6zh37', 'en', 1, 'https://ror.org/03qc6zh37 Research Institute "Agat"'),
(68154, 'https://ror.org/03qckzp50', 'no_lang_code', 1, 'https://ror.org/03qckzp50 AAC Technologies (China)'),
(68155, 'https://ror.org/03qe1mf77', 'en', 1, 'https://ror.org/03qe1mf77 Scientific and Production Association. S.A. Lavochkin'),
(68156, 'https://ror.org/03qfd7n96', 'en', 1, 'https://ror.org/03qfd7n96 3G''S Development Trust'),
(68157, 'https://ror.org/03qffpf96', 'fr', 1, 'https://ror.org/03qffpf96 Agence pour l''Observation de la RƩunion'),
(68158, 'https://ror.org/03qfpb645', 'en', 1, 'https://ror.org/03qfpb645 Cloyne Diocesan Youth Services'),
(68159, 'https://ror.org/03qfrnd98', 'no_lang_code', 1, 'https://ror.org/03qfrnd98 BC World Pharm (South Korea)'),
(68160, 'https://ror.org/03qgxqd23', 'fr', 1, 'https://ror.org/03qgxqd23 MinistĆØre de l''Agriculture, de l''Elevage et de l''Hydraulique'),
(68161, 'https://ror.org/03qhca141', 'en', 1, 'https://ror.org/03qhca141 All Nations Hope Network'),
(68162, 'https://ror.org/03qjg1411', 'en', 1, 'https://ror.org/03qjg1411 Maryland-National Capital Park and Planning Commission'),
(68163, 'https://ror.org/03qn8zy63', 'en', 1, 'https://ror.org/03qn8zy63 Xi''an Aeronautical University č„æå®‰čˆŖē©ŗå­¦é™¢'),
(68164, 'https://ror.org/03qqw3m37', 'no_lang_code', 1, 'https://ror.org/03qqw3m37 United Imaging Healthcare (China)'),
(68165, 'https://ror.org/03qranw91', 'en', 1, 'https://ror.org/03qranw91 Korean Philosophical Association ķ•œźµ­ ģ² ķ•™ķšŒ'),
(68166, 'https://ror.org/03qs3qx17', 'no_lang_code', 1, 'https://ror.org/03qs3qx17 Sejong Institute ģ„øģ¢…ģ—°źµ¬ģ†Œ'),
(68167, 'https://ror.org/03qsja474', 'no_lang_code', 1, 'https://ror.org/03qsja474 Radica Systems (China)'),
(68168, 'https://ror.org/03qvhaa35', 'en', 1, 'https://ror.org/03qvhaa35 The Korean Association for Mongolian Studies ķ•œźµ­ 몽골 연구 ķ˜‘ķšŒ'),
(68169, 'https://ror.org/03qw6d546', 'no_lang_code', 1, 'https://ror.org/03qw6d546 Lanzhou Nonferrous Metals Design and Research Institute (China)'),
(68170, 'https://ror.org/03qxezw14', 'en', 1, 'https://ror.org/03qxezw14 Korea Integrated Logistics Association ķ•œźµ­ķ†µķ•©ė¬¼ė„˜ķ˜‘ķšŒ'),
(68171, 'https://ror.org/03r0gs027', 'no_lang_code', 1, 'https://ror.org/03r0gs027 CrystecPharma (United Kingdom)'),
(68172, 'https://ror.org/03r0hka23', 'no_lang_code', 1, 'https://ror.org/03r0hka23 RediCare (Ireland)'),
(68173, 'https://ror.org/03r0j3j15', 'no_lang_code', 1, 'https://ror.org/03r0j3j15 Amway (South Korea) 암웨'),
(68174, 'https://ror.org/03r1dwc49', 'no_lang_code', 1, 'https://ror.org/03r1dwc49 Harsco (United Kingdom)'),
(68175, 'https://ror.org/03r2hkg16', 'no_lang_code', 1, 'https://ror.org/03r2hkg16 Chungnam Group (China) åæ å—é›†å›¢'),
(68176, 'https://ror.org/03r55ca96', 'no_lang_code', 1, 'https://ror.org/03r55ca96 Hourglass Group (United Kingdom)'),
(68177, 'https://ror.org/03r5t9q47', 'no_lang_code', 1, 'https://ror.org/03r5t9q47 Benchmark Animal Health (United Kingdom)'),
(68178, 'https://ror.org/03r6fm605', 'en', 1, 'https://ror.org/03r6fm605 Japanese Language & Culture Association of Korea ģ¼ė³øģ–øģ–“ė¬øķ™”ķ•™ķšŒė„¼'),
(68179, 'https://ror.org/03r78y930', 'en', 1, 'https://ror.org/03r78y930 Siberian Research Institute of Geology, Geophysics and Mineral Resources Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Геологии, Геофизики Šø ŠœŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ сырья'),
(68180, 'https://ror.org/03r7nme33', 'de', 1, 'https://ror.org/03r7nme33 Bundesverband SekundƤrrohstoffe und Entsorgung'),
(68181, 'https://ror.org/03r7ya547', 'de', 1, 'https://ror.org/03r7ya547 Der Ɩsterreichische Weinbauverband'),
(68182, 'https://ror.org/03r86y726', 'no_lang_code', 1, 'https://ror.org/03r86y726 Fresenius Kabi (China)'),
(68183, 'https://ror.org/03r8s5d09', 'en', 1, 'https://ror.org/03r8s5d09 Coimisean nan Croitearan Crofting Commission'),
(68184, 'https://ror.org/03r97zp68', 'pt', 1, 'https://ror.org/03r97zp68 Direcção dos Serviços da Reforma Jurídica e do Direito Internacional'),
(68185, 'https://ror.org/03r9dgm57', 'en', 1, 'https://ror.org/03r9dgm57 Alaska Native Health Board'),
(68186, 'https://ror.org/03r9sb108', 'no_lang_code', 1, 'https://ror.org/03r9sb108 LinkPowerTechnology (China)'),
(68187, 'https://ror.org/03ra80q23', 'no_lang_code', 1, 'https://ror.org/03ra80q23 (주)제욱 Jeuk (South Korea)'),
(68188, 'https://ror.org/03rb53j96', 'en', 1, 'https://ror.org/03rb53j96 Directorate for Inland Waterways Direkcija za vodne puteve Plovput Š”ŠøŃ€ŠµŠŗŃ†ŠøŃ˜Š° за воГне ŠæŃƒŃ‚еве ŠŸŠ»Š¾Š²ŠæŃƒŃ‚'),
(68189, 'https://ror.org/03rc6pz65', 'ga', 1, 'https://ror.org/03rc6pz65 CroĆ­'),
(68190, 'https://ror.org/03rcmhq47', 'en', 1, 'https://ror.org/03rcmhq47 Apollo Hospitals ą¤…ą¤Ŗą„‹ą¤²ą„‹ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(68191, 'https://ror.org/03rd9h303', 'en', 1, 'https://ror.org/03rd9h303 Delaware River Basin Commission'),
(68192, 'https://ror.org/03re7j391', 'no_lang_code', 1, 'https://ror.org/03re7j391 Osmotica Pharmaceutical (Hungary)'),
(68193, 'https://ror.org/03reqkm68', 'no_lang_code', 1, 'https://ror.org/03reqkm68 Blendology (United Kingdom)'),
(68194, 'https://ror.org/03rf8vd59', 'de', 1, 'https://ror.org/03rf8vd59 Bundesverband Freier Radios'),
(68195, 'https://ror.org/03rfc8789', 'en', 1, 'https://ror.org/03rfc8789 Foundation for Art and Creative Technology'),
(68196, 'https://ror.org/03rfn7203', 'no_lang_code', 1, 'https://ror.org/03rfn7203 Vesuvius (Belgium)'),
(68197, 'https://ror.org/03rfsht69', 'no_lang_code', 1, 'https://ror.org/03rfsht69 Jason Medical Holdings (China) å‚‘ę£®é†«ē™‚ęŽ§č‚”'),
(68198, 'https://ror.org/03rkn9a03', 'en', 1, 'https://ror.org/03rkn9a03 Federation of Hong Kong Industries'),
(68199, 'https://ror.org/03rkqvk58', 'en', 1, 'https://ror.org/03rkqvk58 Capital Enterprise'),
(68200, 'https://ror.org/03rm3gk43', 'en', 1, 'https://ror.org/03rm3gk43 National Cancer Center Hospital East å›½ē«‹ćŒć‚“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼ę±ē—…é™¢'),
(68201, 'https://ror.org/03rr58081', 'en', 1, 'https://ror.org/03rr58081 Karnataka Medical Council'),
(68202, 'https://ror.org/03rs7hg63', 'no_lang_code', 1, 'https://ror.org/03rs7hg63 Escort (Poland)'),
(68203, 'https://ror.org/03rtrf513', 'en', 1, 'https://ror.org/03rtrf513 New Energy Coalition'),
(68204, 'https://ror.org/03rv77e70', 'no_lang_code', 1, 'https://ror.org/03rv77e70 Scientific Research Institute of Parachute Construction (Russia) ŠŠ˜Š˜ ŠæŠ°Ń€Š°ŃˆŃŽŃ‚Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(68205, 'https://ror.org/03rw2rj66', 'no_lang_code', 1, 'https://ror.org/03rw2rj66 JXTG Holdings (Japan) JXćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(68206, 'https://ror.org/03ry0z171', 'no_lang_code', 1, 'https://ror.org/03ry0z171 Koofy Development (China)'),
(68207, 'https://ror.org/03rywge40', 'no_lang_code', 1, 'https://ror.org/03rywge40 Beijing Institute of Architectural Design (China)'),
(68208, 'https://ror.org/03s0pk098', 'fr', 1, 'https://ror.org/03s0pk098 Ɖcole SupĆ©rieure en Sciences AppliquĆ©es de Tlemcen'),
(68209, 'https://ror.org/03s0s8j32', 'en', 1, 'https://ror.org/03s0s8j32 Centre for Modelling & Simulation'),
(68210, 'https://ror.org/03s2thv57', 'en', 1, 'https://ror.org/03s2thv57 Newford Research Institute of Advanced Technology ēŗ½ē¦å¾·å…ˆčæ›ęŠ€ęœÆē ”ē©¶ę‰€'),
(68211, 'https://ror.org/03s3cgk74', 'fr', 1, 'https://ror.org/03s3cgk74 Laboratoire de Mesure du Carbone 14'),
(68212, 'https://ror.org/03s3e1h32', 'en', 1, 'https://ror.org/03s3e1h32 Korean Society for Indian Philosophy ģøė„ģ² ķ•™ķšŒ'),
(68213, 'https://ror.org/03s6z8117', 'en', 1, 'https://ror.org/03s6z8117 Institution of Chemical Engineers'),
(68214, 'https://ror.org/03s87dw57', 'en', 1, 'https://ror.org/03s87dw57 Korean Counseling Association ķ•œźµ­ģƒė‹“ķ•™ķšŒ'),
(68215, 'https://ror.org/03s9q6118', 'no_lang_code', 1, 'https://ror.org/03s9q6118 ICBio (India)'),
(68216, 'https://ror.org/03s9rtw86', 'en', 1, 'https://ror.org/03s9rtw86 National Adult Literacy Agency'),
(68217, 'https://ror.org/03sbjj951', 'no_lang_code', 1, 'https://ror.org/03sbjj951 Gravitricity (United Kingdom)'),
(68218, 'https://ror.org/03sc9rz48', 'en', 1, 'https://ror.org/03sc9rz48 25-й Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ чехтотологии ŠœŠøŠ½ŠøŃŃ‚ерства обороны Российской ФеГерации 25th State Research Institute of Chemmotology of the Ministry of Defence of the Russian Federation'),
(68219, 'https://ror.org/03sgkc956', 'en', 1, 'https://ror.org/03sgkc956 All-Russian Rice Research Institute Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ риса'),
(68220, 'https://ror.org/03sh73423', 'en', 1, 'https://ror.org/03sh73423 State Environmental Service Valsts vides dienests'),
(68221, 'https://ror.org/03sjfbk05', 'en', 1, 'https://ror.org/03sjfbk05 National Environment Commission'),
(68222, 'https://ror.org/03sjwka68', 'no_lang_code', 1, 'https://ror.org/03sjwka68 Realtek (China) ē‘žę˜±åŠå°Žé«”č‚”ä»½ęœ‰é™å…¬åø'),
(68223, 'https://ror.org/03sk2bs13', 'en', 1, 'https://ror.org/03sk2bs13 European Foundation for the Improvement of Living and Working Conditions Fondúireacht Eorpach chun DÔlaí MaireachtÔla agus Oibre a Fheabhsú'),
(68224, 'https://ror.org/03skdv165', 'en', 1, 'https://ror.org/03skdv165 Institute of Educational Policy Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ΕκπαιΓευτικής Πολιτικής'),
(68225, 'https://ror.org/03skfnn63', 'no_lang_code', 1, 'https://ror.org/03skfnn63 Ruselprom (Russia)'),
(68226, 'https://ror.org/03snx9z92', 'en', 1, 'https://ror.org/03snx9z92 Wuxi Fuel Injection Equipment Research Institute äø­å›½ē¬¬äø€ę±½č½¦č‚”ä»½ęœ‰é™å…¬åøę— é””ę²¹ę³µę²¹å˜“ē ”ē©¶ę‰€'),
(68227, 'https://ror.org/03sqtr018', 'no_lang_code', 1, 'https://ror.org/03sqtr018 Qatalum (Qatar)'),
(68228, 'https://ror.org/03ssqhs45', 'en', 1, 'https://ror.org/03ssqhs45 Qingdao Institute of Animal Husbandry and Veterinary Medicine é’å²›åø‚ē•œē‰§å…½åŒ»ē ”ē©¶ę‰€'),
(68229, 'https://ror.org/03sw09b87', 'no_lang_code', 1, 'https://ror.org/03sw09b87 SFC (South Korea)'),
(68230, 'https://ror.org/03sxsay12', 'en', 1, 'https://ror.org/03sxsay12 Yangzhou Vocational University ę‰¬å·žåø‚čŒäøšå¤§å­¦'),
(68231, 'https://ror.org/03t07pn25', 'no_lang_code', 1, 'https://ror.org/03t07pn25 Ecosense (South Korea) ģ—ģ½”ģ„¼ģŠ¤'),
(68232, 'https://ror.org/03t25gb93', 'en', 1, 'https://ror.org/03t25gb93 Pamiatkový úrad Slovenskej republiky The Monuments Board of the Slovak Republic'),
(68233, 'https://ror.org/03t2ahc57', 'no_lang_code', 1, 'https://ror.org/03t2ahc57 Eozone Group (United Kingdom)'),
(68234, 'https://ror.org/03t4ypp04', 'es', 1, 'https://ror.org/03t4ypp04 Instituto de Medicina Genómica'),
(68235, 'https://ror.org/03t4zvk50', 'en', 1, 'https://ror.org/03t4zvk50 Laser Research Institute å±±äøœēœē§‘å­¦é™¢ęæ€å…‰ē ”ē©¶ę‰€'),
(68236, 'https://ror.org/03t5ky459', 'no_lang_code', 1, 'https://ror.org/03t5ky459 Tech Dragon Limited (China)'),
(68237, 'https://ror.org/03t5r4496', 'no_lang_code', 1, 'https://ror.org/03t5r4496 Zvezda (Russia) ЗвезГа'),
(68238, 'https://ror.org/03t6vm274', 'no_lang_code', 1, 'https://ror.org/03t6vm274 Wonkwang Digital University ģ›ź“‘ė””ģ§€ķ„øėŒ€ķ•™źµ'),
(68239, 'https://ror.org/03t6zfb73', 'en', 1, 'https://ror.org/03t6zfb73 Idaho State Department of Agriculture'),
(68240, 'https://ror.org/03t6zvf73', 'en', 1, 'https://ror.org/03t6zvf73 National Academy of Inventors'),
(68241, 'https://ror.org/03t85np98', 'en', 1, 'https://ror.org/03t85np98 Cyber University of Korea ģ‚¬ģ“ė²„ ėŒ€ķ•™źµ'),
(68242, 'https://ror.org/03t8e0d04', 'en', 1, 'https://ror.org/03t8e0d04 YMT Ayurvedic Medical College & Hospital. P.G.Institute'),
(68243, 'https://ror.org/03t8xys90', 'en', 1, 'https://ror.org/03t8xys90 Shakhty Scientific Research and Design Coal Institute Шахтинский ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š£Š³Š¾Š»ŃŒŠ½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(68244, 'https://ror.org/03t8yea54', 'en', 1, 'https://ror.org/03t8yea54 The Korean-German Society for the Educational Studies ķ•œė… 교윔 ķ•™ķšŒ'),
(68245, 'https://ror.org/03t9vst72', 'no_lang_code', 1, 'https://ror.org/03t9vst72 Icahn Enterprises (United States)'),
(68246, 'https://ror.org/03tarb191', 'no_lang_code', 1, 'https://ror.org/03tarb191 Akamai (United States)'),
(68247, 'https://ror.org/03taw0g66', 'en', 1, 'https://ror.org/03taw0g66 Agency for Social Analyses ŠŠ³ŠµŠ½Ń†ŠøŃŃ‚Š° за социални анализи'),
(68248, 'https://ror.org/03taw9026', 'en', 1, 'https://ror.org/03taw9026 Korean Association of Physical Education and Sport for Girls and Women ķ•œźµ­ 첓윔 첓윔 ģŠ¤ķ¬ģø  ķ˜‘ķšŒ'),
(68249, 'https://ror.org/03tb73372', 'en', 1, 'https://ror.org/03tb73372 Chongqing Academy of Forestry é‡åŗ†ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(68250, 'https://ror.org/03tc50h17', 'no_lang_code', 1, 'https://ror.org/03tc50h17 Korea Yakult (South Korea) ķ•œźµ­ģ•¼ģæ ė„“ķŠø'),
(68251, 'https://ror.org/03tc6sd86', 'en', 1, 'https://ror.org/03tc6sd86 Target Institute of Medical Education & Research ą¤Ÿą¤¾ą¤°ą„ą¤—ą„‡ą¤Ÿ ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤ą¤œą„‚ą¤•ą„‡ą¤¶ą¤Ø & ą¤°ą¤æą¤øą¤°ą„ą¤š'),
(68252, 'https://ror.org/03tcqv962', 'fr', 1, 'https://ror.org/03tcqv962 Aids Moncton'),
(68253, 'https://ror.org/03tfwa394', 'en', 1, 'https://ror.org/03tfwa394 Hampshire Constabulary'),
(68254, 'https://ror.org/03thvaw95', 'en', 1, 'https://ror.org/03thvaw95 International Fiscal Association Korea źµ­ģ œģ”°ģ„øķ˜‘ķšŒ'),
(68255, 'https://ror.org/03tkqz180', 'no_lang_code', 1, 'https://ror.org/03tkqz180 Cipla (United States)'),
(68256, 'https://ror.org/03tks8n61', 'en', 1, 'https://ror.org/03tks8n61 Korean Ethics Education Association ķ•œźµ­ģœ¤ė¦¬źµģœ”ķ•™ķšŒ'),
(68257, 'https://ror.org/03tmyjv73', 'no_lang_code', 1, 'https://ror.org/03tmyjv73 Fiserv (United States)'),
(68258, 'https://ror.org/03tqbke55', 'en', 1, 'https://ror.org/03tqbke55 Ministarstvo nauke i Tehnologije Ministry of Science and Technology'),
(68259, 'https://ror.org/03tx11h32', 'no_lang_code', 1, 'https://ror.org/03tx11h32 Kuca (Poland)'),
(68260, 'https://ror.org/03tx9q361', 'no_lang_code', 1, 'https://ror.org/03tx9q361 Fortis Hospital ą¦«ą§‹ą¦°ą§ą¦Ÿą¦æą¦ø হসপিটাল'),
(68261, 'https://ror.org/03txtgw38', 'no_lang_code', 1, 'https://ror.org/03txtgw38 2iC (United Kingdom)'),
(68262, 'https://ror.org/03tzzx112', 'en', 1, 'https://ror.org/03tzzx112 E-Car Club'),
(68263, 'https://ror.org/03v27je35', 'no_lang_code', 1, 'https://ror.org/03v27je35 (주)ģ…€ė£Øė©”ė“œėŠ” Cellumed (South Korea)'),
(68264, 'https://ror.org/03v2qmr34', 'fr', 1, 'https://ror.org/03v2qmr34 Agence pour le dƩveloppement de l''emploi'),
(68265, 'https://ror.org/03v4ccn82', 'en', 1, 'https://ror.org/03v4ccn82 Fortis Escorts Hospital ą¤«ą„‹ą¤°ą„ą¤Ÿą¤æą¤ø ą¤ą¤øą„ą¤•ą„‰ą¤°ą„ą¤Ÿą„ą¤ø ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(68266, 'https://ror.org/03v5azw70', 'en', 1, 'https://ror.org/03v5azw70 Qatar Olympic Committee اللجنة Ų§Ł„Ų£ŁˆŁ„Ł…ŲØŁŠŲ© Ų§Ł„Ł‚Ų·Ų±ŁŠŲ©ā€Ž'),
(68267, 'https://ror.org/03v60jr94', 'no_lang_code', 1, 'https://ror.org/03v60jr94 Springer Nature (Switzerland)'),
(68268, 'https://ror.org/03vabkb23', 'en', 1, 'https://ror.org/03vabkb23 Korea Institute of Human Resources Development źµ­ź°€ź³¼ķ•™źø°ģˆ ģøė „ź°œė°œģ›'),
(68269, 'https://ror.org/03vapwt48', 'en', 1, 'https://ror.org/03vapwt48 Lietuvos Respublikos ūkio ministerija Ministry of Economy of the Republic of Lithuania'),
(68270, 'https://ror.org/03vbs1928', 'no_lang_code', 1, 'https://ror.org/03vbs1928 Transpharmation (Ireland)'),
(68271, 'https://ror.org/03vcpp131', 'en', 1, 'https://ror.org/03vcpp131 21st Century Foreign Language Academy 21세기 외국얓 학원'),
(68272, 'https://ror.org/03ve00c59', 'no_lang_code', 1, 'https://ror.org/03ve00c59 Industrial Light & Magic (United Kingdom)'),
(68273, 'https://ror.org/03vfggs20', 'en', 1, 'https://ror.org/03vfggs20 One Earth Designs'),
(68274, 'https://ror.org/03vfz6856', 'en', 1, 'https://ror.org/03vfz6856 Institute for Public Policy Research'),
(68275, 'https://ror.org/03vhfjx86', 'no_lang_code', 1, 'https://ror.org/03vhfjx86 Kimal (United Kingdom)'),
(68276, 'https://ror.org/03vhksx27', 'en', 1, 'https://ror.org/03vhksx27 Research Institute of Instrument named after V.V. Tikhomirova ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ Š˜Š‘ŠžŠ ŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ Š˜ŠœŠ•ŠŠ˜ Š’.Š’. Š¢Š˜Š„ŠžŠœŠ˜Š ŠžŠ’Š'),
(68277, 'https://ror.org/03vhyy859', 'en', 1, 'https://ror.org/03vhyy859 Korea Tourism Research Association ķ•œźµ­ź“€ź“‘ģ—°źµ¬ķ•™ķšŒ'),
(68278, 'https://ror.org/03vnkwk82', 'en', 1, 'https://ror.org/03vnkwk82 The Mussar Institute'),
(68279, 'https://ror.org/03vnpf028', 'en', 1, 'https://ror.org/03vnpf028 Joel Samson Ruvugo Traders'),
(68280, 'https://ror.org/03vnxht79', 'no_lang_code', 1, 'https://ror.org/03vnxht79 Medipost (South Korea) 메디 ķ¬ģŠ¤ķŠø'),
(68281, 'https://ror.org/03vqgax46', 'no_lang_code', 1, 'https://ror.org/03vqgax46 Scientific and Production Association of Automatics named after Academician N.A.Semikhatov (Russia) ŠŠŸŠž автоматики имени акаГемика Š. А. Демихатова'),
(68282, 'https://ror.org/03vtyfv85', 'en', 1, 'https://ror.org/03vtyfv85 Manitoba Harm Reduction Network'),
(68283, 'https://ror.org/03w12qr69', 'no_lang_code', 1, 'https://ror.org/03w12qr69 Clinipace (South Korea)'),
(68284, 'https://ror.org/03w3tb520', 'en', 1, 'https://ror.org/03w3tb520 National Commission on Correctional Health Care'),
(68285, 'https://ror.org/03w4e6p22', 'no_lang_code', 1, 'https://ror.org/03w4e6p22 Meiji (India)'),
(68286, 'https://ror.org/03w4n2z21', 'de', 1, 'https://ror.org/03w4n2z21 Bundesamt für Weinbau'),
(68287, 'https://ror.org/03w7z8f72', 'no_lang_code', 1, 'https://ror.org/03w7z8f72 GP Batteries (China)'),
(68288, 'https://ror.org/03w9cnt37', 'en', 1, 'https://ror.org/03w9cnt37 Gansu Normal University for Nationalities ē”˜č‚ƒę°‘ę—åøˆčŒƒå­¦é™¢'),
(68289, 'https://ror.org/03wb8cw02', 'no_lang_code', 1, 'https://ror.org/03wb8cw02 Skyworth (China) åˆ›ē»“'),
(68290, 'https://ror.org/03wbses72', 'no_lang_code', 1, 'https://ror.org/03wbses72 Polyus Research Institute of M.F.Stelmakh (Russia)'),
(68291, 'https://ror.org/03wc7j405', 'no_lang_code', 1, 'https://ror.org/03wc7j405 Adient (Ireland)'),
(68292, 'https://ror.org/03wcmbn72', 'en', 1, 'https://ror.org/03wcmbn72 Kims Bibi Hospital'),
(68293, 'https://ror.org/03wcmj821', 'no_lang_code', 1, 'https://ror.org/03wcmj821 Lola Group (United Kingdom)'),
(68294, 'https://ror.org/03wdfwr71', 'en', 1, 'https://ror.org/03wdfwr71 Guangdong Testing Institute for Product Quality Supervision å¹æäøœēœäŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒē ”ē©¶é™¢'),
(68295, 'https://ror.org/03wfdhy86', 'en', 1, 'https://ror.org/03wfdhy86 The Modern Linguistic Society Of Korea ķ•œźµ­ ķ˜„ėŒ€ ģ–øģ–“ ķ•™ķšŒ'),
(68296, 'https://ror.org/03wgebb29', 'en', 1, 'https://ror.org/03wgebb29 Beijing Nonferrous Metals and Rare Earth Applications Institute åŒ—äŗ¬ęœ‰č‰²é‡‘å±žäøŽēØ€åœŸåŗ”ē”Øē ”ē©¶ę‰€'),
(68297, 'https://ror.org/03wgjx693', 'no_lang_code', 1, 'https://ror.org/03wgjx693 Maya Clinicals (India)'),
(68298, 'https://ror.org/03wj3bs34', 'no_lang_code', 1, 'https://ror.org/03wj3bs34 Hai Kang Life (China) ęµ·åŗ·ē”Ÿå‘½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(68299, 'https://ror.org/03wj9h986', 'no_lang_code', 1, 'https://ror.org/03wj9h986 China Huadian Corporation (China) äø­å›½åŽē”µé›†å›¢å…¬åø'),
(68300, 'https://ror.org/03wjb5650', 'no_lang_code', 1, 'https://ror.org/03wjb5650 China International Marine Containers (China) 中国国际海运集装箱'),
(68301, 'https://ror.org/03wjek566', 'en', 1, 'https://ror.org/03wjek566 Nasc The Irish Immigrant Support Centre'),
(68302, 'https://ror.org/03wjy4481', 'no_lang_code', 1, 'https://ror.org/03wjy4481 Westin Limousine (Canada)'),
(68303, 'https://ror.org/03wn3aq07', 'no_lang_code', 1, 'https://ror.org/03wn3aq07 Scientific Research Institute "Girikond" (Russia)'),
(68304, 'https://ror.org/03wpcjb05', 'no_lang_code', 1, 'https://ror.org/03wpcjb05 Samoo Architects & Engineers (South Korea)'),
(68305, 'https://ror.org/03wr30131', 'en', 1, 'https://ror.org/03wr30131 Laban/Bartenieff Institute of Movement Studies'),
(68306, 'https://ror.org/03wsc5672', 'no_lang_code', 1, 'https://ror.org/03wsc5672 Digital Catapult (United Kingdom)'),
(68307, 'https://ror.org/03wscj685', 'en', 1, 'https://ror.org/03wscj685 Sri Kalabyraveshwara Swamy Ayurvedic Medical College, Hospital and Research Center ą²¶ą³ą²°ą³€ ą²•ą²²ą²¾ą²­ą²°ą²£ą²µą³‡ą²¶ą³ą²µą²° ą²øą³ą²µą²¾ą²®ą²æ ą²†ą²Æą³ą²°ą³ą²µą³‡ą²¦ą²æą²•ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³† ą²®ą²¤ą³ą²¤ą³ ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(68308, 'https://ror.org/03wtw1749', 'en', 1, 'https://ror.org/03wtw1749 Shanghai Zhaozhan Metal Materials äøŠęµ·é‡‘å±¬ęę–™ęœ‰é™å…¬åø'),
(68309, 'https://ror.org/03ww67x72', 'no_lang_code', 1, 'https://ror.org/03ww67x72 FlyingBinary (United Kingdom)'),
(68310, 'https://ror.org/03wyr0j06', 'no_lang_code', 1, 'https://ror.org/03wyr0j06 Iberdrola (Qatar)'),
(68311, 'https://ror.org/03x1j8d96', 'no_lang_code', 1, 'https://ror.org/03x1j8d96 China Railway Design Corporation (China) äø­å›½é“č·Æč®¾č®”é›†å›¢ęœ‰é™å…¬åø'),
(68312, 'https://ror.org/03x21fh86', 'en', 1, 'https://ror.org/03x21fh86 Biblioteka Śląska Silesian Library'),
(68313, 'https://ror.org/03x2b6b27', 'en', 1, 'https://ror.org/03x2b6b27 Gyeongnam Provincial Namhae College ź²½ė‚Øė„ė¦½ė‚Øķ•“ėŒ€ķ•™'),
(68314, 'https://ror.org/03x35bg73', 'en', 1, 'https://ror.org/03x35bg73 Wyoming Department of Agriculture'),
(68315, 'https://ror.org/03x36kh13', 'en', 1, 'https://ror.org/03x36kh13 New Testament Society of Korea ķ•œźµ­ģ‹ ģ•½ķ•™ķšŒ'),
(68316, 'https://ror.org/03x3py878', 'en', 1, 'https://ror.org/03x3py878 Association of Local Public Health Agencies'),
(68317, 'https://ror.org/03x542r19', 'en', 1, 'https://ror.org/03x542r19 Business France'),
(68318, 'https://ror.org/03x58gj82', 'en', 1, 'https://ror.org/03x58gj82 Alabama Bicentennial Commission'),
(68319, 'https://ror.org/03x68sb69', 'en', 1, 'https://ror.org/03x68sb69 "VNIINM" named after AA Bochvar "Высокотехнологический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неорганических материалов имени акаГемика А.А. Бочвара"'),
(68320, 'https://ror.org/03x7gzh76', 'en', 1, 'https://ror.org/03x7gzh76 The Design Museum'),
(68321, 'https://ror.org/03x92hw77', 'no_lang_code', 1, 'https://ror.org/03x92hw77 Beijing Municipal Engineering Design and Research Institute (China) åŒ—äŗ¬åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(68322, 'https://ror.org/03xabzk72', 'en', 1, 'https://ror.org/03xabzk72 Galway Clinic'),
(68323, 'https://ror.org/03xdgrg08', 'no_lang_code', 1, 'https://ror.org/03xdgrg08 Academician M.F. Reshetnev Information Satellite Systems (Russia) Ā«Š˜ŠŠ¤ŠžŠ ŠœŠŠ¦Š˜ŠžŠŠŠ«Š• Š”ŠŸŠ£Š¢ŠŠ˜ŠšŠžŠ’Š«Š• Š”Š˜Š”Š¢Š•ŠœŠ«Ā» имени акаГемика М.Ф. Š ŠµŃˆŠµŃ‚Š½Ń‘Š²Š°Ā»'),
(68324, 'https://ror.org/03xgzn792', 'en', 1, 'https://ror.org/03xgzn792 Beijing Polytechnic åŒ—äŗ¬ē”µå­ē§‘ęŠ€čŒäøšå­¦é™¢'),
(68325, 'https://ror.org/03xh8em43', 'fr', 1, 'https://ror.org/03xh8em43 OSEntreprendre'),
(68326, 'https://ror.org/03xjh0j86', 'en', 1, 'https://ror.org/03xjh0j86 National Institute of Aviation Technologies ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных технологий'),
(68327, 'https://ror.org/03xk2yz39', 'en', 1, 'https://ror.org/03xk2yz39 Shandong Institute of Commerce & Technology å±±äøœå•†äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(68328, 'https://ror.org/03xkdt868', 'en', 1, 'https://ror.org/03xkdt868 Research Institute of Nonwoven Materials'),
(68329, 'https://ror.org/03xkqe691', 'no_lang_code', 1, 'https://ror.org/03xkqe691 Sweco (United Kingdom)'),
(68330, 'https://ror.org/03xxysc72', 'no_lang_code', 1, 'https://ror.org/03xxysc72 SensorTec (South Korea)'),
(68331, 'https://ror.org/03xygbe46', 'en', 1, 'https://ror.org/03xygbe46 All-Russian Research Institute for Silviculture and Mechanization of Forestry ФБУ Š’ŠŠ˜Š˜Š›Šœ'),
(68332, 'https://ror.org/03xyxqq59', 'en', 1, 'https://ror.org/03xyxqq59 Korean Association for the Society of Religion ķ•œźµ­ 종교 ģ‚¬ķšŒ'),
(68333, 'https://ror.org/03xzqa656', 'en', 1, 'https://ror.org/03xzqa656 Pembina Institute'),
(68334, 'https://ror.org/03y008h18', 'en', 1, 'https://ror.org/03y008h18 Vermont Judiciary'),
(68335, 'https://ror.org/03y1kax64', 'en', 1, 'https://ror.org/03y1kax64 Micro & Nano Research Institute 微纳米研究所'),
(68336, 'https://ror.org/03y2sw318', 'no_lang_code', 1, 'https://ror.org/03y2sw318 EuBiologics (South Korea) ģœ ė°”ģ“ģ˜¤ė”œģ§ģŠ¤'),
(68337, 'https://ror.org/03y32jh60', 'en', 1, 'https://ror.org/03y32jh60 Gyeongbuk Marine Bio-Industry Research Institute 경북 ķ•“ģ–‘ ģƒė¬¼ ģ‚°ģ—… 연구원'),
(68338, 'https://ror.org/03y5ebv30', 'en', 1, 'https://ror.org/03y5ebv30 Regulatory Agency for Electronic Communications and Postal Services Š ŠµŠ³ŃƒŠ»Š°Ń‚Š¾Ń€Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ˜Š° за електронске ŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŃ˜Šµ Šø ŠæŠ¾ŃˆŃ‚Š°Š½ŃŠŗŠµ услуге'),
(68339, 'https://ror.org/03y5fjm90', 'en', 1, 'https://ror.org/03y5fjm90 Special Design Bureau for Automation of Marine Research Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Š³Š¾ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŃ науки Š”ŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾Š³Š¾ Š±ŃŽŃ€Š¾ среГств автоматизации морских исслеГований Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(68340, 'https://ror.org/03y5ndk86', 'no_lang_code', 1, 'https://ror.org/03y5ndk86 Western EcoSystems Technology (United States)'),
(68341, 'https://ror.org/03y5s5n06', 'no_lang_code', 1, 'https://ror.org/03y5s5n06 Smartec-Group (Egypt)'),
(68342, 'https://ror.org/03y64fn77', 'en', 1, 'https://ror.org/03y64fn77 The Korean Academic Society of Business Administration And Law ķ•œźµ­ 경영 ķ•™ķšŒ'),
(68343, 'https://ror.org/03y8xgp13', 'es', 1, 'https://ror.org/03y8xgp13 Instituto Nacional de Higiene, EpidemiologĆ­a y MicrobiologĆ­a'),
(68344, 'https://ror.org/03y9jct87', 'en', 1, 'https://ror.org/03y9jct87 Ministry of Finance ×žÖ“×©Ö°×‚×ØÖ·×“ הַאוֹצָר'),
(68345, 'https://ror.org/03ya3p525', 'en', 1, 'https://ror.org/03ya3p525 Nizhny Novgorod State University of Engineering and Economics ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ инженерно-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(68346, 'https://ror.org/03yccxk95', 'en', 1, 'https://ror.org/03yccxk95 Sponsors for Educational Opportunity'),
(68347, 'https://ror.org/03ydpmt51', 'no_lang_code', 1, 'https://ror.org/03ydpmt51 ffei (United Kingdom)'),
(68348, 'https://ror.org/03ydr6t04', 'en', 1, 'https://ror.org/03ydr6t04 Maritime Institute of Eastern Mediterranean'),
(68349, 'https://ror.org/03yepnj33', 'no_lang_code', 1, 'https://ror.org/03yepnj33 ALP Technologies (United Kingdom)'),
(68350, 'https://ror.org/03yfxxf37', 'no_lang_code', 1, 'https://ror.org/03yfxxf37 Air Black Box (United Kingdom)'),
(68351, 'https://ror.org/03ygfng20', 'en', 1, 'https://ror.org/03ygfng20 The Society Eastern Philosophy ė™ģ–‘ģ² ķ•™ģ—°źµ¬ķšŒ'),
(68352, 'https://ror.org/03yhtwa63', 'en', 1, 'https://ror.org/03yhtwa63 Magadan Research Institute of Agriculture МагаГанский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(68353, 'https://ror.org/03ypsgm65', 'en', 1, 'https://ror.org/03ypsgm65 Institute of Information Technologies Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠž Š˜ŠŠ¤ŠžŠ ŠœŠŠ¦Š˜ŠžŠŠŠ˜ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š˜'),
(68354, 'https://ror.org/03ypwqc95', 'en', 1, 'https://ror.org/03ypwqc95 Ministry of Interior of the Republic of Serbia Mинистарство ŃƒŠ½ŃƒŃ‚Ń€Š°ŃˆŃšŠøŃ… послова'),
(68355, 'https://ror.org/03yq9y457', 'no_lang_code', 1, 'https://ror.org/03yq9y457 Bharat Serums and Vaccines (India)'),
(68356, 'https://ror.org/03yqhkg72', 'no_lang_code', 1, 'https://ror.org/03yqhkg72 Hy-Line (United States)'),
(68357, 'https://ror.org/03yqjpf13', 'en', 1, 'https://ror.org/03yqjpf13 Icelandic Institute for Intelligent Machines'),
(68358, 'https://ror.org/03yt10624', 'en', 1, 'https://ror.org/03yt10624 Loretto Community'),
(68359, 'https://ror.org/03ytd3n75', 'en', 1, 'https://ror.org/03ytd3n75 All-Russian Research Institute of Oil Crops by V.S. Pustovoit Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ масличных ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ имени Š’. Š”. ŠŸŃƒŃŃ‚Š¾Š²Š¾Š¹Ń‚Š°'),
(68360, 'https://ror.org/03ytyhv33', 'no_lang_code', 1, 'https://ror.org/03ytyhv33 Intel (United Arab Emirates)'),
(68361, 'https://ror.org/03ywvs716', 'en', 1, 'https://ror.org/03ywvs716 Suzhou Polytechnic Institute of Agriculture č‹å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(68362, 'https://ror.org/03yyvfk78', 'no_lang_code', 1, 'https://ror.org/03yyvfk78 Milo''s Knitwear (China) ē±³ę“›ēš„é’ˆē»‡å“'),
(68363, 'https://ror.org/03yzcrs31', 'en', 1, 'https://ror.org/03yzcrs31 Bradford District Care NHS Foundation Trust'),
(68364, 'https://ror.org/03z4z1b55', 'en', 1, 'https://ror.org/03z4z1b55 Guangdong Iron and Steel Research Institute å¹æäøœēœé’¢é“ē ”ē©¶ę‰€'),
(68365, 'https://ror.org/03z7s4z65', 'en', 1, 'https://ror.org/03z7s4z65 Inspiring Scotland'),
(68366, 'https://ror.org/03zb2mt61', 'no_lang_code', 1, 'https://ror.org/03zb2mt61 Bukwang Pharmaceutical (South Korea) ė¶€ź“‘ģ•½ķ’ˆ'),
(68367, 'https://ror.org/03zdtbn70', 'en', 1, 'https://ror.org/03zdtbn70 Northwood'),
(68368, 'https://ror.org/03zj4hg45', 'en', 1, 'https://ror.org/03zj4hg45 Military Academy of Air-Space Defense named after Marshal of the Soviet Union GK Zhukov Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ возГушно-космической обороны имени Š¼Š°Ń€ŃˆŠ°Š»Š° Доветского Š”Š¾ŃŽŠ·Š° Š“.К. Š–ŃƒŠŗŠ¾Š²Š°'),
(68369, 'https://ror.org/03zmfa837', 'en', 1, 'https://ror.org/03zmfa837 Rochester Institute of Technology - Dubai معهد روتؓستر Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ - دبي'),
(68370, 'https://ror.org/03zp29z47', 'no_lang_code', 1, 'https://ror.org/03zp29z47 Bioleaders (South Korea) ė°”ģ“ģ˜¤ė¦¬ė”ģŠ¤'),
(68371, 'https://ror.org/03zp7sq53', 'no_lang_code', 1, 'https://ror.org/03zp7sq53 Hefei Municipal Design and Research Institute (China) åˆč‚„åø‚åø‚ę”æč®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(68372, 'https://ror.org/03zp9j082', 'no_lang_code', 1, 'https://ror.org/03zp9j082 ISKRA Zakłady Precyzyjne (Poland)'),
(68373, 'https://ror.org/03zpdjb80', 'en', 1, 'https://ror.org/03zpdjb80 Korean Literature Theory and Criticism Society ķ•œźµ­ė¬øķ•™ģ“ė” ź³¼ ė¹„ķ‰ķ•™ķšŒ'),
(68374, 'https://ror.org/03zqt7766', 'de', 1, 'https://ror.org/03zqt7766 Bundesverband der Deutschen Tourismuswirtschaft, Federal Association of the German Tourism Industry'),
(68375, 'https://ror.org/03zrdpv47', 'en', 1, 'https://ror.org/03zrdpv47 Institute of Molecular Biology and Biotechnology'),
(68376, 'https://ror.org/03zscq151', 'en', 1, 'https://ror.org/03zscq151 Suwon Science College ģˆ˜ģ› 과학 ėŒ€ķ•™'),
(68377, 'https://ror.org/03zv9wh20', 'no_lang_code', 1, 'https://ror.org/03zv9wh20 Scientific Research Institute of Precision Mechanics (Russia)'),
(68378, 'https://ror.org/03zw9ym67', 'no_lang_code', 1, 'https://ror.org/03zw9ym67 Electricity Storage Network (United Kingdom)'),
(68379, 'https://ror.org/03zx5da06', 'en', 1, 'https://ror.org/03zx5da06 Government of Nova Scotia'),
(68380, 'https://ror.org/03zzxst70', 'en', 1, 'https://ror.org/03zzxst70 Thunderbird Partnership Foundation'),
(68381, 'https://ror.org/0405fd303', 'no_lang_code', 1, 'https://ror.org/0405fd303 Medica (United States)'),
(68382, 'https://ror.org/04060wh35', 'no_lang_code', 1, 'https://ror.org/04060wh35 Advanced Microwave Technologies (United Kingdom)'),
(68383, 'https://ror.org/040696g13', 'no_lang_code', 1, 'https://ror.org/040696g13 PI Photovoltaik-Institut (Germany)'),
(68384, 'https://ror.org/0406egb04', 'no_lang_code', 1, 'https://ror.org/0406egb04 Adbiotech (South Korea)'),
(68385, 'https://ror.org/0408v1a31', 'fr', 1, 'https://ror.org/0408v1a31 Ministère de la Santé'),
(68386, 'https://ror.org/040a2d739', 'no_lang_code', 1, 'https://ror.org/040a2d739 Seagate (Ireland)'),
(68387, 'https://ror.org/040b19m18', 'en', 1, 'https://ror.org/040b19m18 Wellcome Centre for Infectious Diseases Research in Africa'),
(68388, 'https://ror.org/040c9hz12', 'no_lang_code', 1, 'https://ror.org/040c9hz12 Tozer Seeds (United Kingdom)'),
(68389, 'https://ror.org/040cjb096', 'en', 1, 'https://ror.org/040cjb096 Korea Art Education Association ķ•œźµ­ 미술 교윔 ķ•™ķšŒ'),
(68390, 'https://ror.org/040eyrz23', 'no_lang_code', 1, 'https://ror.org/040eyrz23 Domino (United Kingdom)'),
(68391, 'https://ror.org/040f9jx84', 'no_lang_code', 1, 'https://ror.org/040f9jx84 Acumen Environmental Engineering & Technologies (China) ę•é”ēŽÆå¢ƒå·„ēØ‹äøŽęŠ€ęœÆ'),
(68392, 'https://ror.org/040hdea82', 'en', 1, 'https://ror.org/040hdea82 Coolidge Corner Theatre'),
(68393, 'https://ror.org/040hegx59', 'en', 1, 'https://ror.org/040hegx59 Guangxi Agricultural Machinery Research Institute å¹æč„æå†œäøšęœŗę¢°ē ”ē©¶é™¢'),
(68394, 'https://ror.org/040kksw48', 'no_lang_code', 1, 'https://ror.org/040kksw48 Rehab-Robotics (China)'),
(68395, 'https://ror.org/040mkk956', 'en', 1, 'https://ror.org/040mkk956 Energy Institute named after G.M. Krzhizhanovsky Энергетический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š“.М. ŠšŃ€Š¶ŠøŠ¶Š°Š½Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(68396, 'https://ror.org/040nzs042', 'en', 1, 'https://ror.org/040nzs042 Shenyang Fire Research Institute'),
(68397, 'https://ror.org/040pyq062', 'no_lang_code', 1, 'https://ror.org/040pyq062 Shandong Lianxing Energy Group (China) å±±äøœč”ę˜Ÿčƒ½ęŗé›†å›¢'),
(68398, 'https://ror.org/040qnm310', 'no_lang_code', 1, 'https://ror.org/040qnm310 TES Global (United Kingdom)'),
(68399, 'https://ror.org/040xkwz97', 'en', 1, 'https://ror.org/040xkwz97 Military Academy of Material and Technical Support them General of the Army A.V. Khruleva Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»ŃŒŠ½Š¾-технического Š¾Š±ŠµŃŠæŠµŃ‡ŠµŠ½ŠøŃ им. генерала армии А.Š’. Š„Ń€ŃƒŠ»Ń‘Š²Š°'),
(68400, 'https://ror.org/04104tq92', 'fr', 1, 'https://ror.org/04104tq92 Institut de Recherche Sur L’IntĆ©gration Professionnelle des Immigrants'),
(68401, 'https://ror.org/0410sm148', 'en', 1, 'https://ror.org/0410sm148 Federal Management Partners'),
(68402, 'https://ror.org/0410wtw69', 'fr', 1, 'https://ror.org/0410wtw69 Gouvernement de la Nouvelle-CalƩdonie'),
(68403, 'https://ror.org/0412x6661', 'en', 1, 'https://ror.org/0412x6661 Korea Research Institute of Mechanical Facilities Industry ėŒ€ķ•œźø°ź³„ģ„¤ė¹„ģ‚°ģ—…ģ—°źµ¬ģ›'),
(68404, 'https://ror.org/0412z8048', 'no_lang_code', 1, 'https://ror.org/0412z8048 Jiangsu Kawei Auto Industrial Group (China) ę±Ÿč‹å”åØę±½č½¦å·„äøšé›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(68405, 'https://ror.org/04132ev69', 'nl', 1, 'https://ror.org/04132ev69 Nederlands Instituut voor Lastechniek'),
(68406, 'https://ror.org/0415vh479', 'en', 1, 'https://ror.org/0415vh479 Ministry of Interior Mинистерство на Š²ŃŠŃ‚Ń€ŠµŃˆŠ½ŠøŃ‚Šµ работи'),
(68407, 'https://ror.org/0416ygn80', 'en', 1, 'https://ror.org/0416ygn80 National Development Institute of Korean Medicine'),
(68408, 'https://ror.org/04172zb59', 'no_lang_code', 1, 'https://ror.org/04172zb59 IDEXX Laboratories (United States)'),
(68409, 'https://ror.org/041azcz03', 'en', 1, 'https://ror.org/041azcz03 Cultural Heritage & Education'),
(68410, 'https://ror.org/041cran12', 'en', 1, 'https://ror.org/041cran12 National House Building Council'),
(68411, 'https://ror.org/041dptm21', 'en', 1, 'https://ror.org/041dptm21 Sofia Energy Agency ŠŠ”ŠžŠ¦Š˜ŠŠ¦Š˜ŠÆ ŠŠ ŠŠ“Š•ŠŠ¦Š˜ŠÆŠ¢Š ЗА Š•ŠŠ•Š Š“Š˜Š™ŠŠ Š”ŠžŠ¤Š˜ŠÆ'),
(68412, 'https://ror.org/041e3g390', 'no_lang_code', 1, 'https://ror.org/041e3g390 Crypta Labs (United Kingdom)'),
(68413, 'https://ror.org/041f9mm95', 'fr', 1, 'https://ror.org/041f9mm95 Gay Line Interligne'),
(68414, 'https://ror.org/041g7ma18', 'no_lang_code', 1, 'https://ror.org/041g7ma18 Course Hero (United States)'),
(68415, 'https://ror.org/041ga0r52', 'no_lang_code', 1, 'https://ror.org/041ga0r52 GyroGear (United Kingdom)'),
(68416, 'https://ror.org/041gbt667', 'en', 1, 'https://ror.org/041gbt667 Institute of Semitic Studies'),
(68417, 'https://ror.org/041hf3v66', 'fr', 1, 'https://ror.org/041hf3v66 Ministre de la ForĆŖt,de la Mer et de l''Environnement'),
(68418, 'https://ror.org/041hn9r79', 'en', 1, 'https://ror.org/041hn9r79 Ministry of Agriculture and Agrarian Reform وزارة الزراعة ŁˆŲ§Ł„Ų„ŲµŁ„Ų§Ų­ Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠ'),
(68419, 'https://ror.org/041mxqs23', 'no_lang_code', 1, 'https://ror.org/041mxqs23 Figshare (United Kingdom)'),
(68420, 'https://ror.org/041sejv93', 'no_lang_code', 1, 'https://ror.org/041sejv93 Boeing (United Kingdom)'),
(68421, 'https://ror.org/041t08q89', 'no_lang_code', 1, 'https://ror.org/041t08q89 Handley Heating Services (United Kingdom)'),
(68422, 'https://ror.org/041t9rh23', 'en', 1, 'https://ror.org/041t9rh23 People of Color Against AIDS Network'),
(68423, 'https://ror.org/041tqx430', 'en', 1, 'https://ror.org/041tqx430 Ningbo College of Health Sciences å®ę³¢å«ē”ŸčŒäøšęŠ€ęœÆå­¦é™¢'),
(68424, 'https://ror.org/041v5wj47', 'en', 1, 'https://ror.org/041v5wj47 Institute of Mineralogy, Geochemistry and Crystallochemistry of Rare Elements Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ минералогии Šø геохимии реГких ŃŠ»ŠµŠ¼ŠµŠ½Ń‚Š¾Š²'),
(68425, 'https://ror.org/041wbs441', 'it', 1, 'https://ror.org/041wbs441 Commissione Nazionale per le SocietĆ  e la Borsa'),
(68426, 'https://ror.org/041zqvj62', 'no_lang_code', 1, 'https://ror.org/041zqvj62 Toray (China) 东丽'),
(68427, 'https://ror.org/0421np737', 'en', 1, 'https://ror.org/0421np737 RƩseau de sensibilisation de sciences et technologie Science and Technology Awareness Network'),
(68428, 'https://ror.org/04250rf44', 'en', 1, 'https://ror.org/04250rf44 JSC Institute Hydroproject ŠŠž Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ГиГропроект»'),
(68429, 'https://ror.org/04254vt45', 'no_lang_code', 1, 'https://ror.org/04254vt45 Klinera (India) ą¤•ą„ą¤²ą„€ą¤°ą¤æą¤Æą¤¾ निगम भारत ąŖ•ą«ąŖ²ąŖæąŖąŖ°ąŖ¾ ąŖ•ą«‹ąŖ°ą«ąŖŖą«‹ąŖ°ą«‡ąŖ¶ąŖØ ąŖ‡ąŖØą«ąŖ”ąŖæąŖÆąŖ¾ ą²•ą³ą²²ą²æą²Øą³ą²‡ą²°ą²¾ ą²•ą²¾ą²°ą³ą²Ŗą³Šą²°ą³‡ą²·ą²Øą³ ಇಂಔಿಯಾ'),
(68430, 'https://ror.org/0425zsq43', 'no_lang_code', 1, 'https://ror.org/0425zsq43 NutraPharm Tech (South Korea)'),
(68431, 'https://ror.org/0427ccd45', 'no_lang_code', 1, 'https://ror.org/0427ccd45 Forge (United Kingdom)'),
(68432, 'https://ror.org/0428w4157', 'no_lang_code', 1, 'https://ror.org/0428w4157 Change Agents (Australia)'),
(68433, 'https://ror.org/042b06r32', 'en', 1, 'https://ror.org/042b06r32 The Society of Gynecologic Oncology of Canada'),
(68434, 'https://ror.org/042b0hg67', 'no_lang_code', 1, 'https://ror.org/042b0hg67 PepsiCo (India)'),
(68435, 'https://ror.org/042h3jc15', 'en', 1, 'https://ror.org/042h3jc15 Suzhou Electronic Products Inspection č‹å·žē”µå­äŗ§å“ę£€éŖŒę‰€'),
(68436, 'https://ror.org/042hg5r91', 'en', 1, 'https://ror.org/042hg5r91 Institute of Quantum Materials Science Š—ŠŠž "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ квантового Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ"'),
(68437, 'https://ror.org/042k0ht81', 'en', 1, 'https://ror.org/042k0ht81 Manhattan District Attorney''s Office'),
(68438, 'https://ror.org/042n1mt30', 'en', 1, 'https://ror.org/042n1mt30 Friends For Life'),
(68439, 'https://ror.org/042n9zw97', 'en', 1, 'https://ror.org/042n9zw97 Military Academy of the Air Defense Forces Named after Marshal of the Soviet Union А.М. Vasilevsky Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š’Š¾Š·Š“ŃƒŃˆŠ½Š¾-Гесантных войск Š’Š¾Š¾Ń€ŃƒŠ¶ŠµŠ½Š½Ń‹Ń… Дил Российской ФеГерации им. ŠœŠ°Ń€ŃˆŠ°Š»Š° Доветского Š”Š¾ŃŽŠ·Š° А.М. Василевский'),
(68440, 'https://ror.org/042pabj96', 'en', 1, 'https://ror.org/042pabj96 Shandong Institute of Quantum Science and Technology å±±äøœé‡å­ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(68441, 'https://ror.org/042pg9146', 'no_lang_code', 1, 'https://ror.org/042pg9146 Micro Labs (India) ą²®ą³†ą³–ą²•ą³ą²°ą³†ą³‚ą³• ą²²ą³ą²Æą²¾ą²¬ą³ą²øą³ ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(68442, 'https://ror.org/042q4h794', 'no_lang_code', 1, 'https://ror.org/042q4h794 Ferenc RĆ”kóczi II Transcarpathian Hungarian Institute RĆ”kóczi Ferenc KĆ”rpĆ”taljai Magyar Főiskola Š—Š°ŠŗŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ ŃƒŠ³Š¾Ń€ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ імені Ференца Ракоці II'),
(68443, 'https://ror.org/042qxra19', 'en', 1, 'https://ror.org/042qxra19 Lietuvos saugios laivybos administracija The Lithuanian Maritime Safety Administration'),
(68444, 'https://ror.org/042rnq234', 'en', 1, 'https://ror.org/042rnq234 Institute of Engineering Science and Metallurgy Far Eastern Branch of the Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Šø Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(68445, 'https://ror.org/042t78q04', 'no_lang_code', 1, 'https://ror.org/042t78q04 Nanjing Surveying and Mapping Research Institute (China) å—äŗ¬åø‚ęµ‹ē»˜å‹˜åÆŸē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(68446, 'https://ror.org/042tbn311', 'en', 1, 'https://ror.org/042tbn311 Department of Defence'),
(68447, 'https://ror.org/042v5ej15', 'en', 1, 'https://ror.org/042v5ej15 Agencija za lijekove i medicinske proizvode. Sva prava pridržana Agency for Medicinal Products and Medical Devices of Croatia'),
(68448, 'https://ror.org/042wg4g29', 'en', 1, 'https://ror.org/042wg4g29 Agricultural Industries Confederation'),
(68449, 'https://ror.org/042zedv06', 'fr', 1, 'https://ror.org/042zedv06 SociƩtƩ QuƩbƩcoise de Lipidologie, de Nutrition et de MƩtabolisme'),
(68450, 'https://ror.org/04320sq35', 'en', 1, 'https://ror.org/04320sq35 Yeongnam Chinese Literature Society ģ˜ė‚Øģ¤‘źµ­ģ–“ė¬øķ•™ķšŒ'),
(68451, 'https://ror.org/0432aqd92', 'en', 1, 'https://ror.org/0432aqd92 Andrew Faulkner Associates'),
(68452, 'https://ror.org/0433ct737', 'no_lang_code', 1, 'https://ror.org/0433ct737 NIIAS ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информатизации, автоматизации Šø ŃŠ²ŃŠ·Šø на железноГорожном транспорте'),
(68453, 'https://ror.org/04340b392', 'no_lang_code', 1, 'https://ror.org/04340b392 Agency9 (Sweden)'),
(68454, 'https://ror.org/0435jga27', 'en', 1, 'https://ror.org/0435jga27 Taganrog Research Institute of Communications Таганрогский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ²ŃŠ·Šø'),
(68455, 'https://ror.org/0435vfk93', 'no_lang_code', 1, 'https://ror.org/0435vfk93 Philips (India)'),
(68456, 'https://ror.org/0437bmy49', 'no_lang_code', 1, 'https://ror.org/0437bmy49 Admomo Media (China)'),
(68457, 'https://ror.org/043axjc63', 'no_lang_code', 1, 'https://ror.org/043axjc63 Kingfisher (United Kingdom)'),
(68458, 'https://ror.org/043ca0x76', 'no_lang_code', 1, 'https://ror.org/043ca0x76 Nam Kwong Electric (China) å—å…‰é›»å“ęœ‰é™å…¬åø'),
(68459, 'https://ror.org/043ch9202', 'de', 1, 'https://ror.org/043ch9202 Ministerium der Justiz Nordrhein-Westfalen'),
(68460, 'https://ror.org/043d97677', 'en', 1, 'https://ror.org/043d97677 Junior Achievement'),
(68461, 'https://ror.org/043gbyv69', 'en', 1, 'https://ror.org/043gbyv69 Korean Academy of Social Welfare ķ•œźµ­ ģ‚¬ķšŒ 복지'),
(68462, 'https://ror.org/043k84k36', 'no_lang_code', 1, 'https://ror.org/043k84k36 Enovate Biolife (India)'),
(68463, 'https://ror.org/043kg1637', 'no_lang_code', 1, 'https://ror.org/043kg1637 Chambroad Chemical Industry Research Institute (China) é¦™ęøÆåŒ–å­¦å·„äøšē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(68464, 'https://ror.org/043my4k18', 'en', 1, 'https://ror.org/043my4k18 Jiangxi Provincial Institute of Water Resources Planning and Design ę±Ÿč„æēœę°“åˆ©č§„åˆ’č®¾č®”ē ”ē©¶é™¢ ē‰ˆęƒę‰€ęœ‰'),
(68465, 'https://ror.org/043njxm98', 'fr', 1, 'https://ror.org/043njxm98 Table Carrefour Violence Conjugale QuƩbec MƩtro'),
(68466, 'https://ror.org/043qcaa25', 'en', 1, 'https://ror.org/043qcaa25 The Joint Institute of Mechanical Engineering'),
(68467, 'https://ror.org/043qm9c80', 'es', 1, 'https://ror.org/043qm9c80 Instituto tecnológico de MatemÔtica Industrial'),
(68468, 'https://ror.org/043s7kq40', 'no_lang_code', 1, 'https://ror.org/043s7kq40 Kingfa (China)'),
(68469, 'https://ror.org/043smqe02', 'no_lang_code', 1, 'https://ror.org/043smqe02 Unilever (Indonesia)'),
(68470, 'https://ror.org/043smtf02', 'en', 1, 'https://ror.org/043smtf02 Ministry of Health'),
(68471, 'https://ror.org/043sy2j95', 'no_lang_code', 1, 'https://ror.org/043sy2j95 Devro (United Kingdom)'),
(68472, 'https://ror.org/043tdpj13', 'no_lang_code', 1, 'https://ror.org/043tdpj13 Karm Research Group (United Kingdom)'),
(68473, 'https://ror.org/043xhrz72', 'en', 1, 'https://ror.org/043xhrz72 Badan Meteorologi, Klimatologi, dan Geofisika Meteorological, Climatological, And Geophysical Agency'),
(68474, 'https://ror.org/043xmfp89', 'en', 1, 'https://ror.org/043xmfp89 Indravati Hospital & Research Centre ą¤‡ą¤‚ą¤¦ą„ą¤°ą¤¾ą¤µą¤¤ą„€ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(68475, 'https://ror.org/043z96f51', 'en', 1, 'https://ror.org/043z96f51 International League Against Epilepsy'),
(68476, 'https://ror.org/043zsj038', 'no_lang_code', 1, 'https://ror.org/043zsj038 Sanofi (India) ą¤øą¤Øą„‹ą¤«ą„€'),
(68477, 'https://ror.org/0442x7317', 'en', 1, 'https://ror.org/0442x7317 Siberian State Order of the Red Banner of Labor Research Institute of Metrology Дибирский Š³Š¾ŃŃƒŠ“арственный орГена Š¢Ń€ŃƒŠ“ового ŠšŃ€Š°ŃŠ½Š¾Š³Š¾ Знамени Š½Š°ŃƒŃ‡Š½Š¾- ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(68478, 'https://ror.org/0444szm67', 'en', 1, 'https://ror.org/0444szm67 Stockholm Institute of Communication Science'),
(68479, 'https://ror.org/0445snd35', 'en', 1, 'https://ror.org/0445snd35 Federal Motor Transport Authority Kraftfahrt-Bundesamt'),
(68480, 'https://ror.org/0447hq607', 'no_lang_code', 1, 'https://ror.org/0447hq607 (주)ģ”Øķ‹°ģ”Øė°”ģ“ģ˜¤ CTCBio (South Korea)'),
(68481, 'https://ror.org/044a9d018', 'en', 1, 'https://ror.org/044a9d018 Jiangsu Industry Technology Research Institute ę±Ÿč‹å·„äøšęŠ€ęœÆē ”ē©¶é™¢'),
(68482, 'https://ror.org/044b5hs67', 'en', 1, 'https://ror.org/044b5hs67 Greater Lafourche Port Commission'),
(68483, 'https://ror.org/044bvzh33', 'no_lang_code', 1, 'https://ror.org/044bvzh33 Sanwa Technologies (China)'),
(68484, 'https://ror.org/044bzs788', 'no_lang_code', 1, 'https://ror.org/044bzs788 ATDBio (United Kingdom)'),
(68485, 'https://ror.org/044d15d71', 'en', 1, 'https://ror.org/044d15d71 Qatar Tourism Authority Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„Ų³ŁŠŲ§Ų­Ų©ā€Ž'),
(68486, 'https://ror.org/044d6nj38', 'en', 1, 'https://ror.org/044d6nj38 Ministry of Agriculture'),
(68487, 'https://ror.org/044dmqn91', 'en', 1, 'https://ror.org/044dmqn91 Centre for Sustainable Healthcare'),
(68488, 'https://ror.org/044f58834', 'no_lang_code', 1, 'https://ror.org/044f58834 Shanghai Huayi Group (China) äøŠęµ·åŽč°Šļ¼ˆé›†å›¢ļ¼‰å…¬åø'),
(68489, 'https://ror.org/044kv7f59', 'en', 1, 'https://ror.org/044kv7f59 Bishopsgate Institute'),
(68490, 'https://ror.org/044qfk433', 'en', 1, 'https://ror.org/044qfk433 Institute of public health of Republic of Macedonia Instituti i ShĆ«ndetit Publik i RepublikĆ«s sĆ« MaqedonisĆ« Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за јавно Š·Š“Ń€Š°Š²Ń˜Šµ на Република МакеГонија'),
(68491, 'https://ror.org/044qm0e47', 'en', 1, 'https://ror.org/044qm0e47 Ministry of Petroleum and Energy Olje- og energidepartementet'),
(68492, 'https://ror.org/044w2a375', 'no_lang_code', 1, 'https://ror.org/044w2a375 Inspection Technologies (United Kingdom)'),
(68493, 'https://ror.org/044wmmj34', 'en', 1, 'https://ror.org/044wmmj34 Hefei Institute of Technology Innovation'),
(68494, 'https://ror.org/044wnr609', 'en', 1, 'https://ror.org/044wnr609 The Korean Association of Ethics ķ•œźµ­ģœ¤ė¦¬ķ•™ķšŒ'),
(68495, 'https://ror.org/044y4ky78', 'en', 1, 'https://ror.org/044y4ky78 Northern Ireland Tourist Board'),
(68496, 'https://ror.org/044y8xw28', 'en', 1, 'https://ror.org/044y8xw28 Fundacja Itaka ITAKA Foundation'),
(68497, 'https://ror.org/044yb1859', 'en', 1, 'https://ror.org/044yb1859 Shandong Academy of Environmental Science å±±äøœēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶č®¾č®”é™¢åœ°'),
(68498, 'https://ror.org/044z1kj72', 'en', 1, 'https://ror.org/044z1kj72 Internet Professional Association äŗ’čÆē¶²å°ˆę„­å”ęœƒ'),
(68499, 'https://ror.org/044zwsy33', 'en', 1, 'https://ror.org/044zwsy33 Suzhou Industrial Park Vocational Technical College č‹å·žå·„äøšå›­åŒŗčŒäøšęŠ€ęœÆå­¦é™¢'),
(68500, 'https://ror.org/045029d66', 'en', 1, 'https://ror.org/045029d66 John Muir Trust'),
(68501, 'https://ror.org/045195s13', 'no_lang_code', 1, 'https://ror.org/045195s13 Nara Controls (South Korea)'),
(68502, 'https://ror.org/045272c39', 'no_lang_code', 1, 'https://ror.org/045272c39 Samyoung Unitech (South Korea)'),
(68503, 'https://ror.org/0452w5362', 'no_lang_code', 1, 'https://ror.org/0452w5362 Phicomm (China) 斐讯');
INSERT INTO `rors` VALUES
(68504, 'https://ror.org/0453axf13', 'en', 1, 'https://ror.org/0453axf13 Financial Management Association International'),
(68505, 'https://ror.org/0453gw346', 'no_lang_code', 1, 'https://ror.org/0453gw346 Agrimetrics (United Kingdom)'),
(68506, 'https://ror.org/0454xt523', 'es', 1, 'https://ror.org/0454xt523 Seminario Bíblico de Colombia Fundación Universitaria'),
(68507, 'https://ror.org/0455j8q41', 'en', 1, 'https://ror.org/0455j8q41 Korea Dance Association ģ‚¬ė‹Øė²•ģø ķ•œźµ­ė¬“ģš©ķ˜‘ķšŒ'),
(68508, 'https://ror.org/0455ncp47', 'en', 1, 'https://ror.org/0455ncp47 Association for Language Learning'),
(68509, 'https://ror.org/0455r8m48', 'no_lang_code', 1, 'https://ror.org/0455r8m48 IT Channel (China) ē§‘ęŠ€åÆ¼čˆŖ'),
(68510, 'https://ror.org/04570m236', 'en', 1, 'https://ror.org/04570m236 Landsbókasafn ƍslands HĆ”skólabókasafn National and University Library of Iceland'),
(68511, 'https://ror.org/04598a202', 'en', 1, 'https://ror.org/04598a202 The Korean Historical Association ģ—­ģ‚¬ķ•™ķšŒ'),
(68512, 'https://ror.org/0459zan02', 'no_lang_code', 1, 'https://ror.org/0459zan02 CL Pharm (South Korea)'),
(68513, 'https://ror.org/045che656', 'en', 1, 'https://ror.org/045che656 Research Institute of Fur Industry ŠŠ˜Š˜ ŠœŠµŃ…ŠŸŃ€Š¾Š¼'),
(68514, 'https://ror.org/045dsac53', 'en', 1, 'https://ror.org/045dsac53 Korean Association of Women''s History ķ•œźµ­ 여성사 ķ˜‘ķšŒ'),
(68515, 'https://ror.org/045embs06', 'en', 1, 'https://ror.org/045embs06 Fundacja Idea Rozwoju IDEA of Development Foundation'),
(68516, 'https://ror.org/045kyae46', 'en', 1, 'https://ror.org/045kyae46 Ministry of Agriculture and Fisheries'),
(68517, 'https://ror.org/045pm7d82', 'en', 1, 'https://ror.org/045pm7d82 Peace Action, Training and Research Institute of Romania'),
(68518, 'https://ror.org/045t4ag71', 'en', 1, 'https://ror.org/045t4ag71 Hong Kong Hotels Association é¦™ęøÆé…’åŗ—äøšåä¼š'),
(68519, 'https://ror.org/045tbyy79', 'no_lang_code', 1, 'https://ror.org/045tbyy79 Dr. Bidari’s Ashwini Hospital'),
(68520, 'https://ror.org/045vmw703', 'en', 1, 'https://ror.org/045vmw703 Tatar Scientific Research And Design Institute of Petroleum Engineering Š¢ŠŠ¢ŠŠ Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠž-ŠšŠžŠŠ”Š¢Š Š£ŠšŠ¢ŠžŠ Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŠ•Š¤Š¢ŠÆŠŠžŠ“Šž ŠœŠŠØŠ˜ŠŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ'),
(68521, 'https://ror.org/045wfpr34', 'en', 1, 'https://ror.org/045wfpr34 Comhairle Cathrach ChorcaĆ­ Cork City Council'),
(68522, 'https://ror.org/045x5zp74', 'no_lang_code', 1, 'https://ror.org/045x5zp74 NSilico (Ireland)'),
(68523, 'https://ror.org/045yv2772', 'no_lang_code', 1, 'https://ror.org/045yv2772 Virchow BioTech (India)'),
(68524, 'https://ror.org/045z49291', 'en', 1, 'https://ror.org/045z49291 Ministerul Apărării Naționale Ministry of National Defence'),
(68525, 'https://ror.org/046268q59', 'no_lang_code', 1, 'https://ror.org/046268q59 Foshan Ceramics Research Institute (China) ä½›å±±åø‚é™¶ē“·ē ”ē©¶ę‰€ęœ‰é™'),
(68526, 'https://ror.org/0462w7z59', 'en', 1, 'https://ror.org/0462w7z59 German Agency for Quality in Medicine Ƅrztliches Zentrum für QualitƤt in der Medizin (ƄZQ)'),
(68527, 'https://ror.org/0467xn953', 'en', 1, 'https://ror.org/0467xn953 Balhousie Care Group'),
(68528, 'https://ror.org/0468j3t74', 'no_lang_code', 1, 'https://ror.org/0468j3t74 Panasonic (Russia)'),
(68529, 'https://ror.org/0468tse97', 'en', 1, 'https://ror.org/0468tse97 The Canadian Scientific & Christian Affiliation'),
(68530, 'https://ror.org/046916w66', 'no_lang_code', 1, 'https://ror.org/046916w66 XTC (China) å°å¤©ę‰'),
(68531, 'https://ror.org/046bz5635', 'en', 1, 'https://ror.org/046bz5635 Ministry of Economy of the Republic of Belarus ŠœŃ–Š½Ń–ŃŃ‚ŃŃ€ŃŃ‚Š²Š° ŃŠŗŠ°Š½Š¾Š¼Ń–ŠŗŃ– Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(68532, 'https://ror.org/046ec1h37', 'de', 1, 'https://ror.org/046ec1h37 Bundesverband Baustoffe - Steine und Erden, German Building Materials Association'),
(68533, 'https://ror.org/046fag481', 'no_lang_code', 1, 'https://ror.org/046fag481 China Shenhua Energy (China) ē„žåŽčƒ½ęŗ'),
(68534, 'https://ror.org/046fssx10', 'no_lang_code', 1, 'https://ror.org/046fssx10 Sun Cupid Technology (China) å¤Ŗé˜³äø˜ęÆ”ē‰¹ē§‘ęŠ€'),
(68535, 'https://ror.org/046h96256', 'tr', 1, 'https://ror.org/046h96256 İstanbul Pendik Veteriner Kontrol Enstitüsü'),
(68536, 'https://ror.org/046hgyp50', 'en', 1, 'https://ror.org/046hgyp50 Cowlitz-Wahkiakum Council of Governments'),
(68537, 'https://ror.org/046j5g483', 'no_lang_code', 1, 'https://ror.org/046j5g483 Pegatron (Taiwan) å’Œē¢©čÆåˆē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(68538, 'https://ror.org/046mdph26', 'no_lang_code', 1, 'https://ror.org/046mdph26 Vitelic Technology (China)'),
(68539, 'https://ror.org/046nzts54', 'no_lang_code', 1, 'https://ror.org/046nzts54 Environmental Monitoring Solutions (United Kingdom)'),
(68540, 'https://ror.org/046qfjt27', 'en', 1, 'https://ror.org/046qfjt27 National Evaluation and Accreditation Agency ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ за Š¾Ń†ŠµŠ½ŃŠ²Š°Š½Šµ Šø Š°ŠŗŃ€ŠµŠ“ŠøŃ‚Š°Ń†ŠøŃ'),
(68541, 'https://ror.org/046qpde88', 'en', 1, 'https://ror.org/046qpde88 Scientific Research Institute of Horticulture of Siberia named after М.А. Lisavenko'),
(68542, 'https://ror.org/046qqhz73', 'en', 1, 'https://ror.org/046qqhz73 Korea Research Institute for Construction Policy ķ•œźµ­ź±“ģ„¤źø°ģˆ ģ—°źµ¬ģ›'),
(68543, 'https://ror.org/046ra5d44', 'en', 1, 'https://ror.org/046ra5d44 Institut für angewandte Bauinformatik Institute of Applied Building Informatics'),
(68544, 'https://ror.org/046rj3t65', 'en', 1, 'https://ror.org/046rj3t65 Lembaga Warisan Negara National Heritage Board ą®¤ąÆ‡ą®šą®æą®Æ ą®®ą®°ą®ŖąÆą®ŸąÆˆą®®ąÆˆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ 国家文物局'),
(68545, 'https://ror.org/046s87c39', 'en', 1, 'https://ror.org/046s87c39 The Lewy Body Society'),
(68546, 'https://ror.org/046tg4t13', 'en', 1, 'https://ror.org/046tg4t13 Zhangjiagang Intelligent Power Research Institute å¼ å®¶ęøÆę™ŗčƒ½ē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢'),
(68547, 'https://ror.org/046vsfw69', 'en', 1, 'https://ror.org/046vsfw69 Korea Economic History Society ź²½ģ œģ‚¬ķ•™ķšŒ'),
(68548, 'https://ror.org/046w98q07', 'pt', 1, 'https://ror.org/046w98q07 Ministério da Saúde'),
(68549, 'https://ror.org/046wacp46', 'en', 1, 'https://ror.org/046wacp46 South-Russian State Polytechnic University named after MI Platov'),
(68550, 'https://ror.org/046xx9480', 'en', 1, 'https://ror.org/046xx9480 Korea Counseling Graduate University ķ•œźµ­ģƒė‹“ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(68551, 'https://ror.org/046yjt975', 'en', 1, 'https://ror.org/046yjt975 Focus Ireland'),
(68552, 'https://ror.org/046zes997', 'en', 1, 'https://ror.org/046zes997 Men Overcoming Violence'),
(68553, 'https://ror.org/0470cr695', 'no_lang_code', 1, 'https://ror.org/0470cr695 AKT II (United Kingdom)'),
(68554, 'https://ror.org/0470pce88', 'en', 1, 'https://ror.org/0470pce88 Smolensk Scientific Research Institute of Agriculture Дмоленский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(68555, 'https://ror.org/04724nx69', 'en', 1, 'https://ror.org/04724nx69 Comhairle Contae Mhaigh Eo, Mayo County Council'),
(68556, 'https://ror.org/0474e7473', 'no_lang_code', 1, 'https://ror.org/0474e7473 Hong Kong Blind Union é¦™ęøÆå¤±ę˜Žäŗŗå”é€²ęœƒ'),
(68557, 'https://ror.org/0474p4r72', 'no_lang_code', 1, 'https://ror.org/0474p4r72 Inspur (China) ęµŖę½®'),
(68558, 'https://ror.org/0475cs869', 'no_lang_code', 1, 'https://ror.org/0475cs869 Wuxi Industrial Equipment Installation (China) ę— é””åø‚å·„äøšč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(68559, 'https://ror.org/047bk8v58', 'no_lang_code', 1, 'https://ror.org/047bk8v58 Cast Metals Federation (United Kingdom)'),
(68560, 'https://ror.org/047by7h51', 'no_lang_code', 1, 'https://ror.org/047by7h51 Luoyang Sanlong Installation and Maintenance (China) ę“›é˜³äø‰éš†å®‰č£…ę£€äæ®ęœ‰é™å…¬åø'),
(68561, 'https://ror.org/047k73g37', 'no_lang_code', 1, 'https://ror.org/047k73g37 Mikron (Russia) ŠœŠøŠŗŃ€Š¾Š½'),
(68562, 'https://ror.org/047mfz132', 'en', 1, 'https://ror.org/047mfz132 Siberian Scientific Research Institute of Oil Industry'),
(68563, 'https://ror.org/047qkza04', 'no_lang_code', 1, 'https://ror.org/047qkza04 Jiangsu Yanjiang Chemical Resources Development Research Institute (China) ę±Ÿč‹ę²æę±ŸåŒ–å­¦čµ„ęŗå¼€å‘ē ”ē©¶é™¢'),
(68564, 'https://ror.org/047qrwb61', 'no_lang_code', 1, 'https://ror.org/047qrwb61 Amos Enterprise (China) é˜æčŽ«ę–Æä¼äøšęœ‰é™å…¬åø'),
(68565, 'https://ror.org/047rxfg53', 'en', 1, 'https://ror.org/047rxfg53 Tianjin Stomatological Hospital å¤©ę“„åø‚å£č…”åŒ»é™¢'),
(68566, 'https://ror.org/047tgb953', 'en', 1, 'https://ror.org/047tgb953 Federal Scientific Center for Medical and Preventive Health Risk Management Technologies Š›ŃŽŠ±Š¾Šµ использование материалов Š“Š¾ŠæŃƒŃŠŗŠ°ŠµŃ‚ŃŃ Ń‚Š¾Š»ŃŒŠŗŠ¾ с ŃŠ¾Š³Š»Š°ŃŠøŃ ŠæŃ€Š°Š²Š¾Š¾Š±Š»Š°Š“Š°Ń‚ŠµŠ»Ń'),
(68567, 'https://ror.org/047xkn445', 'en', 1, 'https://ror.org/047xkn445 Geological Society of Korea ėŒ€ķ•œģ§€ģ§ˆķ•™ķšŒ'),
(68568, 'https://ror.org/047xt4p04', 'fr', 1, 'https://ror.org/047xt4p04 Centre IntƩgrƩ de SantƩ et de Services Sociaux du Bas-Saint-Laurent'),
(68569, 'https://ror.org/047ygyr49', 'en', 1, 'https://ror.org/047ygyr49 The Korean Association for Dialectology ķ•œźµ­ė°©ģ–øķ•™ķšŒ'),
(68570, 'https://ror.org/047zg7c19', 'en', 1, 'https://ror.org/047zg7c19 K. J. Somaiya Hospital & Research Centre ą¤•ą„‡. ą¤œą„‡. ą¤øą„‹ą¤®ą¤Æą„ą¤Æą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤…ą¤ą¤Øą„ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤° ą¤•ą„‡ą„¤ ą¤œą„‡ą„¤ ą¤øą„‹ą¤®ą„ˆą¤Æą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(68571, 'https://ror.org/0480smc83', 'en', 1, 'https://ror.org/0480smc83 Lietuvos agrarinių ir miŔkų mokslų centro filialas Lithuanian Research Centre for Agriculture and Forestry'),
(68572, 'https://ror.org/0483jcr74', 'no_lang_code', 1, 'https://ror.org/0483jcr74 British Precast (United Kingdom)'),
(68573, 'https://ror.org/0486wce04', 'en', 1, 'https://ror.org/0486wce04 Black Cultural Archives'),
(68574, 'https://ror.org/04896fz93', 'fr', 1, 'https://ror.org/04896fz93 Commission Internationale pour la Protection des Alpes'),
(68575, 'https://ror.org/0489td242', 'en', 1, 'https://ror.org/0489td242 Korean Spanish Literature Society ķ•œźµ­ģŠ¤ķŽ˜ģøģ–“ė¬øķ•™ķšŒ'),
(68576, 'https://ror.org/048b33h38', 'en', 1, 'https://ror.org/048b33h38 JBI International'),
(68577, 'https://ror.org/048byev10', 'no_lang_code', 1, 'https://ror.org/048byev10 MotherApp (China)'),
(68578, 'https://ror.org/048cxnx33', 'no_lang_code', 1, 'https://ror.org/048cxnx33 Quality Systems (United States)'),
(68579, 'https://ror.org/048d2bt95', 'en', 1, 'https://ror.org/048d2bt95 Shandong Institute for Product Quality Inspection å±±äøœēœäŗ§å“č“Øé‡ę£€éŖŒē ”ē©¶é™¢'),
(68580, 'https://ror.org/048db4454', 'en', 1, 'https://ror.org/048db4454 National Platform of Self Advocates'),
(68581, 'https://ror.org/048favk11', 'no_lang_code', 1, 'https://ror.org/048favk11 Isastur (Spain)'),
(68582, 'https://ror.org/048gxh623', 'no_lang_code', 1, 'https://ror.org/048gxh623 Dalim (South Korea)'),
(68583, 'https://ror.org/048gya260', 'no_lang_code', 1, 'https://ror.org/048gya260 Kerry Group (Ireland)'),
(68584, 'https://ror.org/048j6j578', 'no_lang_code', 1, 'https://ror.org/048j6j578 Synchronoss (United States)'),
(68585, 'https://ror.org/048jfe862', 'en', 1, 'https://ror.org/048jfe862 Nanjing Architecture Design and Research Institute å—äŗ¬åø‚å»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(68586, 'https://ror.org/048kbkr42', 'en', 1, 'https://ror.org/048kbkr42 Federal Service for Technical and Export Control Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба по Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ¾Š¼Ńƒ Šø ŃŠŗŃŠæŠ¾Ń€Ń‚Š½Š¾Š¼Ńƒ ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŽ'),
(68587, 'https://ror.org/048m5jb39', 'en', 1, 'https://ror.org/048m5jb39 Extreme Light Infrastructure - Nuclear Physics'),
(68588, 'https://ror.org/048mf0j29', 'en', 1, 'https://ror.org/048mf0j29 Business West'),
(68589, 'https://ror.org/048n5zk82', 'en', 1, 'https://ror.org/048n5zk82 Onnuri Smile Eye Clinic'),
(68590, 'https://ror.org/048nyba16', 'en', 1, 'https://ror.org/048nyba16 Ministry of Mines and Geology Ministère des Mines et de la Géologie'),
(68591, 'https://ror.org/048p60388', 'no_lang_code', 1, 'https://ror.org/048p60388 Beijing Railway Institute of Mechanical & Electrical Engineering Group (China) åŒ—äŗ¬é“é“å·„ēØ‹ęœŗē”µęŠ€ęœÆē ”ē©¶ę‰€č‚”ä»½ęœ‰é™å…¬'),
(68592, 'https://ror.org/048rar163', 'no_lang_code', 1, 'https://ror.org/048rar163 Reprodoc (Ireland)'),
(68593, 'https://ror.org/048shx058', 'no_lang_code', 1, 'https://ror.org/048shx058 Wuxi Taiji industry (China) ę— é””åø‚å¤Ŗęžå®žäøšč‚”ä»½ęœ‰é™å…¬åø'),
(68594, 'https://ror.org/048snpq13', 'en', 1, 'https://ror.org/048snpq13 Resource Management Agency'),
(68595, 'https://ror.org/048tmw498', 'no_lang_code', 1, 'https://ror.org/048tmw498 Viogem Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¾ŃŃƒŃˆŠµŠ½ŠøŃŽ месторожГений полезных ископаемых, защите инженерных ŃŠ¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠ¹ от Š¾Š±Š²Š¾Š“Š½ŠµŠ½ŠøŃ, ŃŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Ń‹Š¼ горным работам, геомеханике, геофизике, гиГротехнике, геологии Šø Š¼Š°Ń€ŠŗŃˆŠµŠ¹Š“ŠµŃ€ŃŠŗŠ¾Š¼Ńƒ Гелу'),
(68596, 'https://ror.org/048vxvs85', 'fr', 1, 'https://ror.org/048vxvs85 Regroupement des Maisons pour Femmes Victimes de Violence Conjugale'),
(68597, 'https://ror.org/048wp8t87', 'no_lang_code', 1, 'https://ror.org/048wp8t87 Jiangsu Province Metallurgical Design Institute (China) ę±Ÿč‹ēœå†¶é‡‘č®¾č®”é™¢ęœ‰é™å…¬åø'),
(68598, 'https://ror.org/048wwkz81', 'en', 1, 'https://ror.org/048wwkz81 Henan Provincial Academy of Building Research ę²³å—ēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢ęœ‰'),
(68599, 'https://ror.org/048xn9q22', 'en', 1, 'https://ror.org/048xn9q22 China National Petroleum and Chemical Planning Institute ēŸ³ę²¹å’ŒåŒ–å­¦å·„äøšč§„åˆ’é™¢'),
(68600, 'https://ror.org/048xprg90', 'en', 1, 'https://ror.org/048xprg90 Bertalanffy Center for the Study of Systems Science Bertalanffy Zentrum für das Studium der Systemwissenschaften'),
(68601, 'https://ror.org/048yeyk79', 'no_lang_code', 1, 'https://ror.org/048yeyk79 Guzhou Transportation Planning Survey & Design Academe (China) č“µå·žäŗ¤é€šč§„åˆ’å‹˜åÆŸč®¾č®”é™¢ęœ‰é™å…¬åø'),
(68602, 'https://ror.org/048z7ap74', 'en', 1, 'https://ror.org/048z7ap74 Canadian Sleep Society SociƩtƩ Canadienne du Sommeil'),
(68603, 'https://ror.org/048zkw057', 'no_lang_code', 1, 'https://ror.org/048zkw057 Korea Financial Engineering Consulting (South Korea) ķ•œźµ­ 금융 공학 ģ»Øģ„¤ķŒ…'),
(68604, 'https://ror.org/0491qs096', 'en', 1, 'https://ror.org/0491qs096 The Third Affiliated Hospital of Zhejiang Chinese Medical University ęµ™ę±Ÿäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äø‰åŒ»é™¢čŽ«'),
(68605, 'https://ror.org/0493mnj50', 'no_lang_code', 1, 'https://ror.org/0493mnj50 Clovergreen (China)'),
(68606, 'https://ror.org/04951gp18', 'en', 1, 'https://ror.org/04951gp18 Alabama Historical Commission'),
(68607, 'https://ror.org/0497jkw73', 'no_lang_code', 1, 'https://ror.org/0497jkw73 Olive Lifesciences (India)'),
(68608, 'https://ror.org/04980ww45', 'no_lang_code', 1, 'https://ror.org/04980ww45 Nemo Partners (South Korea) ė„¤ėŖØķŒŒķŠøė„ˆģ¦ˆ'),
(68609, 'https://ror.org/04982zn36', 'en', 1, 'https://ror.org/04982zn36 Anhui Academy of Coal Science å®‰å¾½ēœē…¤ē‚­ē§‘å­¦ē ”ē©¶é™¢'),
(68610, 'https://ror.org/0498wda10', 'en', 1, 'https://ror.org/0498wda10 European Writers'' Council'),
(68611, 'https://ror.org/0498x1v76', 'en', 1, 'https://ror.org/0498x1v76 Texoma Council of Governments'),
(68612, 'https://ror.org/049986y36', 'en', 1, 'https://ror.org/049986y36 Chinese Literature Society ģ¤‘źµ­ģøė¬øķ•™ķšŒ'),
(68613, 'https://ror.org/0499b1896', 'en', 1, 'https://ror.org/0499b1896 Yantai Nanshan University ēƒŸå°å—å±±å­¦é™¢'),
(68614, 'https://ror.org/0499kfe57', 'en', 1, 'https://ror.org/0499kfe57 Department for Work and Pensions'),
(68615, 'https://ror.org/049b8gm87', 'en', 1, 'https://ror.org/049b8gm87 Teerthanker Mahaveer Medical College & Research Centre ą¤¤ą„€ą¤°ą„ą¤„ą¤‚ą¤•ą¤° ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(68616, 'https://ror.org/049ck3c19', 'en', 1, 'https://ror.org/049ck3c19 Childminding Ireland'),
(68617, 'https://ror.org/049cw4s75', 'en', 1, 'https://ror.org/049cw4s75 North Caucasian Research Institute of Mountain and Foothill Agriculture Деверо-Кавказский ŠŠ˜Š˜ горного Šø преГгорного сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(68618, 'https://ror.org/049d7dw39', 'en', 1, 'https://ror.org/049d7dw39 Youth Theatre Ireland'),
(68619, 'https://ror.org/049e30b03', 'en', 1, 'https://ror.org/049e30b03 Complex Scientific Research Institute. H.I. Ibrahimov ŠšŠ¾Š¼ŠæŠ»ŠµŠŗŃŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š„. И. Š˜Š±Ń€Š°Š³ŠøŠ¼Š¾Š²Š° Российской акаГемии наук'),
(68620, 'https://ror.org/049gvs161', 'en', 1, 'https://ror.org/049gvs161 National Allergy Asthma Bronchitis Institute'),
(68621, 'https://ror.org/049j4jr36', 'en', 1, 'https://ror.org/049j4jr36 "Московский ŠŠ˜Š˜Š”Š„ Ā«ŠŠµŠ¼Ń‡ŠøŠ½Š¾Š²ŠŗŠ°Ā», Moscow Research Institute" Nemchinovka "'),
(68622, 'https://ror.org/049jpjz09', 'en', 1, 'https://ror.org/049jpjz09 Guangdong Institute of Intelligent Manufacturing å¹æäøœēœę™ŗčƒ½åˆ¶é€ ē ”ē©¶ę‰€ęˆ'),
(68623, 'https://ror.org/049kc3j58', 'en', 1, 'https://ror.org/049kc3j58 PRA Health Sciences'),
(68624, 'https://ror.org/049kk5y54', 'en', 1, 'https://ror.org/049kk5y54 Siobhan Davies Studios'),
(68625, 'https://ror.org/049n5v408', 'en', 1, 'https://ror.org/049n5v408 Qatar Financial Centre Authority'),
(68626, 'https://ror.org/049naj365', 'no_lang_code', 1, 'https://ror.org/049naj365 B-Free Technology (China)'),
(68627, 'https://ror.org/049r2ed34', 'en', 1, 'https://ror.org/049r2ed34 Swim Ireland'),
(68628, 'https://ror.org/049r93771', 'no_lang_code', 1, 'https://ror.org/049r93771 DNA Electronics (United Kingdom)'),
(68629, 'https://ror.org/049ragm77', 'de', 1, 'https://ror.org/049ragm77 Ministerium für Verkehr des Landes Nordrhein-Westfalen'),
(68630, 'https://ror.org/049rajq70', 'en', 1, 'https://ror.org/049rajq70 Qatar Natural History Group'),
(68631, 'https://ror.org/049rnt984', 'no_lang_code', 1, 'https://ror.org/049rnt984 Tyson Foods (United Kingdom)'),
(68632, 'https://ror.org/049sf4b15', 'de', 1, 'https://ror.org/049sf4b15 Finanzministerium des Landes Schleswig-Holstein'),
(68633, 'https://ror.org/049tttq19', 'en', 1, 'https://ror.org/049tttq19 Tula Institute of Design & Technology ŠŸŃ€Š¾ŠµŠŗŃ‚Š½Š¾-ŠšŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ Технологический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(68634, 'https://ror.org/049ve2f77', 'no_lang_code', 1, 'https://ror.org/049ve2f77 Al Sulaiteen Agricultural & Industrial Complex (Qatar)'),
(68635, 'https://ror.org/049w4dp92', 'en', 1, 'https://ror.org/049w4dp92 Wuhu Hit Robot Technology Research Institute å“ˆē‰¹ęœŗå™Øäŗŗē ”ē©¶é™¢'),
(68636, 'https://ror.org/049weg966', 'en', 1, 'https://ror.org/049weg966 ESI - Post Graduate Institute of Medical Science and Research'),
(68637, 'https://ror.org/049x6dn19', 'en', 1, 'https://ror.org/049x6dn19 Irish Blood Transfusion Service, SeirbhĆ­s FuilaistriĆŗchĆ”in na hƉireann'),
(68638, 'https://ror.org/049yh6j39', 'no_lang_code', 1, 'https://ror.org/049yh6j39 CMCL Innovations (United Kingdom)'),
(68639, 'https://ror.org/049zdyf95', 'en', 1, 'https://ror.org/049zdyf95 Yongin Mental Hospital ģš©ģøė„ģ •ģ‹ ė³‘ģ›'),
(68640, 'https://ror.org/049zrr195', 'en', 1, 'https://ror.org/049zrr195 S.R. Kalla Memorial Gastro and General Hospital ą¤ą¤ø आर ą¤•ą¤²ą„ą¤²ą¤¾ ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤—ą„ˆą¤øą„ą¤Ÿą„ą¤°ą„‹ ą¤ą¤‚ą¤” जनरल ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(68641, 'https://ror.org/04a0ct255', 'en', 1, 'https://ror.org/04a0ct255 Democracy Center'),
(68642, 'https://ror.org/04a0env39', 'no_lang_code', 1, 'https://ror.org/04a0env39 Catalytic Innovations (United States)'),
(68643, 'https://ror.org/04a19s309', 'en', 1, 'https://ror.org/04a19s309 Academician Pilyugin Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный центр автоматики Šø ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ имени акаГемика Š. А. ŠŸŠøŠ»ŃŽŠ³ŠøŠ½Š°'),
(68644, 'https://ror.org/04a21y403', 'no_lang_code', 1, 'https://ror.org/04a21y403 Irish Home Energy Rating Energy Services (Ireland)'),
(68645, 'https://ror.org/04a35vw13', 'no_lang_code', 1, 'https://ror.org/04a35vw13 Janssen (India)'),
(68646, 'https://ror.org/04a3nbd69', 'en', 1, 'https://ror.org/04a3nbd69 Institut za jadranske kulture i melioraciju krŔa Institute for Adriatic Crops and Karst Reclamation'),
(68647, 'https://ror.org/04a44dr33', 'en', 1, 'https://ror.org/04a44dr33 Korean Society of Educational Technology ķ•œźµ­źµģœ”ź³µķ•™ķšŒ'),
(68648, 'https://ror.org/04a6pz225', 'de', 1, 'https://ror.org/04a6pz225 HBLFA Tirol, Höhere Bundeslehr- und Forschungsanstalt für Landwirtschaft und Ernährung, Lebensmittel- und Biotechnologie Tirol'),
(68649, 'https://ror.org/04a8px331', 'en', 1, 'https://ror.org/04a8px331 Russian Institute of Radionavigation and Time Российский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГионавигации Šø времени'),
(68650, 'https://ror.org/04a91ra66', 'no_lang_code', 1, 'https://ror.org/04a91ra66 Heathrow Airport Holdings (United Kingdom)'),
(68651, 'https://ror.org/04a9d3847', 'en', 1, 'https://ror.org/04a9d3847 Alton Towers Resort'),
(68652, 'https://ror.org/04aa0zm65', 'en', 1, 'https://ror.org/04aa0zm65 Cloud Computing Center äŗ‘č®”ē®—äø­åæƒ'),
(68653, 'https://ror.org/04aa9an38', 'ro', 1, 'https://ror.org/04aa9an38 Institutul Naţional al Patrimoniului'),
(68654, 'https://ror.org/04aax7b26', 'en', 1, 'https://ror.org/04aax7b26 The Health Care Science Institute ćƒ˜ćƒ«ć‚¹ć‚±ć‚¢ē§‘å­¦ē ”ē©¶ę‰€'),
(68655, 'https://ror.org/04acgky61', 'en', 1, 'https://ror.org/04acgky61 Luoyang Cement Engineering Design and Research Institute ę“›é˜³ę°“ę³„å·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(68656, 'https://ror.org/04acy3777', 'en', 1, 'https://ror.org/04acy3777 Science Council'),
(68657, 'https://ror.org/04aexvn38', 'no_lang_code', 1, 'https://ror.org/04aexvn38 Stallergenes Greer (Spain)'),
(68658, 'https://ror.org/04ah1mm76', 'en', 1, 'https://ror.org/04ah1mm76 State Research Institute of Mechanical Engineering Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ" им. Š’.Š’. Бахирева'),
(68659, 'https://ror.org/04ahbgg16', 'en', 1, 'https://ror.org/04ahbgg16 Culinary Society of Korea ķ•œźµ­ģ”°ė¦¬ķ•™ķšŒ'),
(68660, 'https://ror.org/04ahnh094', 'no_lang_code', 1, 'https://ror.org/04ahnh094 Lattice Government Services (United States)'),
(68661, 'https://ror.org/04am0wd41', 'en', 1, 'https://ror.org/04am0wd41 Korean Technology Education Association ķ•œźµ­źø°ģˆ źµģœ”ķ•™ķšŒ'),
(68662, 'https://ror.org/04apk3g44', 'en', 1, 'https://ror.org/04apk3g44 International St. Mary''s Hospital ź°€ķ†Øė¦­ź“€ė™ėŒ€ķ•™źµ'),
(68663, 'https://ror.org/04asgtj30', 'en', 1, 'https://ror.org/04asgtj30 Baoding University'),
(68664, 'https://ror.org/04astfq33', 'en', 1, 'https://ror.org/04astfq33 Youth Society Opening the Future ģ²­ģ†Œė…„ ģ‚¬ķšŒ ėÆøėž˜ė„¼ ģ—¬ėŠ”'),
(68665, 'https://ror.org/04atm1047', 'no_lang_code', 1, 'https://ror.org/04atm1047 Lubawa (Poland)'),
(68666, 'https://ror.org/04aycct37', 'no_lang_code', 1, 'https://ror.org/04aycct37 Shinva (China) å±±äøœę–°åŽåŒ»ē–—å™Øę¢°č‚”ä»½ęœ‰é™å…¬åø'),
(68667, 'https://ror.org/04azzhq34', 'no_lang_code', 1, 'https://ror.org/04azzhq34 Shanghai Construction Group (China) äøŠęµ·å»ŗå·„é›†å›¢'),
(68668, 'https://ror.org/04b0d8j03', 'en', 1, 'https://ror.org/04b0d8j03 Boardmatch'),
(68669, 'https://ror.org/04b1e4w55', 'en', 1, 'https://ror.org/04b1e4w55 Business to Arts'),
(68670, 'https://ror.org/04b2d5d26', 'en', 1, 'https://ror.org/04b2d5d26 Providence Health Care Research Institute'),
(68671, 'https://ror.org/04b2w5n94', 'no_lang_code', 1, 'https://ror.org/04b2w5n94 Lotus Labs (India)'),
(68672, 'https://ror.org/04b305x04', 'en', 1, 'https://ror.org/04b305x04 Institue of the History of Christianity in Korea ķ•œźµ­źµķšŒģ‚¬ķ•™ķšŒ'),
(68673, 'https://ror.org/04b3c9h40', 'no_lang_code', 1, 'https://ror.org/04b3c9h40 Dalian Academy of Reconnaissance and Mapping (China) å¤§čæžå‹˜ęµ‹ęµ‹ē»˜ē ”ē©¶é™¢'),
(68674, 'https://ror.org/04b3dps61', 'no_lang_code', 1, 'https://ror.org/04b3dps61 CapitaLogic (China)'),
(68675, 'https://ror.org/04b4psm33', 'no_lang_code', 1, 'https://ror.org/04b4psm33 Anpac Semiconductor (China) å®‰åø•å…‹åŠåÆ¼ä½“ęœ‰é™å…¬åø'),
(68676, 'https://ror.org/04b4yfd09', 'no_lang_code', 1, 'https://ror.org/04b4yfd09 DSP4YOU (China)'),
(68677, 'https://ror.org/04b5qs470', 'no_lang_code', 1, 'https://ror.org/04b5qs470 SinoCDN (China)'),
(68678, 'https://ror.org/04b6wfh41', 'no_lang_code', 1, 'https://ror.org/04b6wfh41 Alford Industries (China) é˜æå°”ē¦å¾·å·„äøš'),
(68679, 'https://ror.org/04b78z783', 'en', 1, 'https://ror.org/04b78z783 Ministerstvo hospodƔrstva Slovenskej republiky Ministry of Economy of the Slovak Republic'),
(68680, 'https://ror.org/04b7phn87', 'en', 1, 'https://ror.org/04b7phn87 Kursk Research Institute of Agricultural Production ŠšŠ£Š Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŠ“Š ŠžŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ“Šž ŠŸŠ ŠžŠ˜Š—Š’ŠžŠ”Š”Š¢Š’Š'),
(68681, 'https://ror.org/04b855715', 'en', 1, 'https://ror.org/04b855715 Pakistan Environmental Protection Agency'),
(68682, 'https://ror.org/04b8rvg36', 'en', 1, 'https://ror.org/04b8rvg36 Ministero del lavoro e delle politiche sociali Ministry of Labour and Social Policies'),
(68683, 'https://ror.org/04bc14p57', 'no_lang_code', 1, 'https://ror.org/04bc14p57 Eurofins (Ireland)'),
(68684, 'https://ror.org/04bcbnh21', 'no_lang_code', 1, 'https://ror.org/04bcbnh21 Zensis (China)'),
(68685, 'https://ror.org/04bddhf44', 'en', 1, 'https://ror.org/04bddhf44 American Medical Writers Association'),
(68686, 'https://ror.org/04bfex435', 'en', 1, 'https://ror.org/04bfex435 Scientific Research Institute of Optoelectronic Instrumentation ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптико-ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š³Š¾ ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(68687, 'https://ror.org/04bfk3375', 'en', 1, 'https://ror.org/04bfk3375 Fedcap'),
(68688, 'https://ror.org/04bfwec56', 'en', 1, 'https://ror.org/04bfwec56 East Asia Institute ģž¬ė‹Øė²•ģø ė™ģ•„ģ‹œģ•„ģ—°źµ¬ģ›'),
(68689, 'https://ror.org/04bgfj122', 'no_lang_code', 1, 'https://ror.org/04bgfj122 Edelman (United Kingdom)'),
(68690, 'https://ror.org/04bhbcm79', 'no_lang_code', 1, 'https://ror.org/04bhbcm79 TOTVS (Brazil)'),
(68691, 'https://ror.org/04bj5db66', 'en', 1, 'https://ror.org/04bj5db66 Ningbo Intelligent Manufacturing Industry Research Institute å®ę³¢ę™ŗčƒ½åˆ¶é€ äøšē ”ē©¶ę‰€'),
(68692, 'https://ror.org/04bkx5428', 'en', 1, 'https://ror.org/04bkx5428 The Korean Association of Small Buisness Studies ķ•œźµ­ģ¤‘ģ†Œźø°ģ—…ķ•™ķšŒ'),
(68693, 'https://ror.org/04bnxk453', 'en', 1, 'https://ror.org/04bnxk453 Sport Ireland, Spórt Ɖireann'),
(68694, 'https://ror.org/04bpz1v84', 'es', 1, 'https://ror.org/04bpz1v84 FC Barcelona'),
(68695, 'https://ror.org/04brysy78', 'no_lang_code', 1, 'https://ror.org/04brysy78 Masteel (China) 马钢集团'),
(68696, 'https://ror.org/04bsc7n50', 'no_lang_code', 1, 'https://ror.org/04bsc7n50 CoControl (United Kingdom)'),
(68697, 'https://ror.org/04bv2e296', 'es', 1, 'https://ror.org/04bv2e296 Instituto Valenciano de la Edificación'),
(68698, 'https://ror.org/04bv4nc40', 'no_lang_code', 1, 'https://ror.org/04bv4nc40 Q4 Public Relations (Ireland)'),
(68699, 'https://ror.org/04c10vw97', 'no_lang_code', 1, 'https://ror.org/04c10vw97 Myungmoon Pharm (South Korea)'),
(68700, 'https://ror.org/04c2c2109', 'de', 1, 'https://ror.org/04c2c2109 Kunststoff-Institut Lüdenscheid, Kunststoff-Institut für das mittelständische Wirtschaft NRW GmbH'),
(68701, 'https://ror.org/04c31he75', 'en', 1, 'https://ror.org/04c31he75 Central Research Institute of Starch-and-Vaccine Industry and Non-Carrageenaceous Saccharose Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ крахмала'),
(68702, 'https://ror.org/04c3g7r30', 'en', 1, 'https://ror.org/04c3g7r30 ICLEI - Local Governments for Sustainability'),
(68703, 'https://ror.org/04c3q9n71', 'no_lang_code', 1, 'https://ror.org/04c3q9n71 Truly International Holdings (China)'),
(68704, 'https://ror.org/04c54tg88', 'en', 1, 'https://ror.org/04c54tg88 IBA Lifesciences'),
(68705, 'https://ror.org/04c5hmr86', 'no_lang_code', 1, 'https://ror.org/04c5hmr86 Highway Resource Solutions (United Kingdom)'),
(68706, 'https://ror.org/04c5wp027', 'no_lang_code', 1, 'https://ror.org/04c5wp027 Bandai Namco (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒ³ćƒ€ć‚¤ćƒŠćƒ ć‚³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(68707, 'https://ror.org/04c6m2d57', 'no_lang_code', 1, 'https://ror.org/04c6m2d57 Wuxi Guolian Development (China) ę— é””å›½č”å‘å±•é›†å›¢'),
(68708, 'https://ror.org/04c77tp80', 'en', 1, 'https://ror.org/04c77tp80 Yunnan Institute of Tropical Crops äŗ‘å—ēƒ­åø¦ä½œē‰©ē ”ē©¶ę‰€'),
(68709, 'https://ror.org/04c7f6285', 'en', 1, 'https://ror.org/04c7f6285 Irkutsk State Agrarian University named after A.A. Ezhevsky Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А.А. Ежевского'),
(68710, 'https://ror.org/04c8qrb95', 'en', 1, 'https://ror.org/04c8qrb95 Korea Environmental Education Association ķ•œźµ­ ķ™˜ź²½ 교윔 ģ—°ķ•©ķšŒ'),
(68711, 'https://ror.org/04c99ac72', 'no_lang_code', 1, 'https://ror.org/04c99ac72 Xi''an UniIC Semiconductors (China)'),
(68712, 'https://ror.org/04c9j0t17', 'en', 1, 'https://ror.org/04c9j0t17 Collingswood Public Schools'),
(68713, 'https://ror.org/04ccgt898', 'en', 1, 'https://ror.org/04ccgt898 Daejeon Health Institute of Technology ėŒ€ģ „ė³“ź±“ėŒ€ķ•™źµ'),
(68714, 'https://ror.org/04cegfm62', 'en', 1, 'https://ror.org/04cegfm62 The Rivers Trust'),
(68715, 'https://ror.org/04ceqst84', 'no_lang_code', 1, 'https://ror.org/04ceqst84 China XD Group (China) 中国脿电集团'),
(68716, 'https://ror.org/04cf0ca19', 'en', 1, 'https://ror.org/04cf0ca19 The Society of Living Environment System ķ•œźµ­ģƒķ™œķ™˜ź²½ķ•™ķšŒ'),
(68717, 'https://ror.org/04cfbcn47', 'en', 1, 'https://ror.org/04cfbcn47 Mikhailovsky Military Artillery Academy ŠœŠøŃ…Š°Š¹Š»Š¾Š²ŃŠŗŠ°Ń Š²Š¾ŠµŠ½Š½Š°Ń Š°Ń€Ń‚ŠøŠ»Š»ŠµŃ€ŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(68718, 'https://ror.org/04chh0y17', 'en', 1, 'https://ror.org/04chh0y17 Korean Continence Society ėŒ€ķ•œė°°ė‡Øģž„ģ• ģš”ģ‹¤źøˆķ•™ķšŒ'),
(68719, 'https://ror.org/04cka6191', 'en', 1, 'https://ror.org/04cka6191 Chethana Special School'),
(68720, 'https://ror.org/04ckzvj54', 'en', 1, 'https://ror.org/04ckzvj54 Consumer Protection Commission ŠšŠ¾Š¼ŠøŃŠøŃ за защита на потребителите'),
(68721, 'https://ror.org/04cnfv189', 'en', 1, 'https://ror.org/04cnfv189 State Research Institute of Applied Problems Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГных проблем»'),
(68722, 'https://ror.org/04cpcxa22', 'no_lang_code', 1, 'https://ror.org/04cpcxa22 Equipe Group (United Kingdom)'),
(68723, 'https://ror.org/04cqfv685', 'no_lang_code', 1, 'https://ror.org/04cqfv685 Leeds City Region Enterprise Partnership (United Kingdom)'),
(68724, 'https://ror.org/04cqpym76', 'en', 1, 'https://ror.org/04cqpym76 Hyoja Geriatric Hospital'),
(68725, 'https://ror.org/04crchr76', 'en', 1, 'https://ror.org/04crchr76 Military Academy of Communications named after Marshal of the Soviet Union SM Budennogo Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠ²ŃŠ·Šø имени ŠœŠ°Ń€ŃˆŠ°Š»Š° Доветского Š”Š¾ŃŽŠ·Š° Š”. М. Š‘ŃƒŠ“Ń‘Š½Š½Š¾Š³Š¾'),
(68726, 'https://ror.org/04crq6e59', 'en', 1, 'https://ror.org/04crq6e59 State Consumer Rights Protection Authority Valstybinė ne maisto Produktų Inspekcija prie ÅŖkio Ministerijos'),
(68727, 'https://ror.org/04cv9th75', 'en', 1, 'https://ror.org/04cv9th75 Autism Initiatives'),
(68728, 'https://ror.org/04cxegr21', 'no_lang_code', 1, 'https://ror.org/04cxegr21 Janssen (Netherlands)'),
(68729, 'https://ror.org/04cyde307', 'en', 1, 'https://ror.org/04cyde307 Guangdong Southern Telecommunication Planning Consulting & Design Institute å¹æäøœå—ę–¹ē”µäæ”č§„åˆ’å’ØčÆ¢č®¾č®”é™¢ęœ‰é™å…¬åø'),
(68730, 'https://ror.org/04cykn118', 'es', 1, 'https://ror.org/04cykn118 Instituto Mayor Campesino'),
(68731, 'https://ror.org/04d0xbz55', 'en', 1, 'https://ror.org/04d0xbz55 Behavioral Science & Policy Association'),
(68732, 'https://ror.org/04d0zy231', 'no_lang_code', 1, 'https://ror.org/04d0zy231 Grant Technology (China)'),
(68733, 'https://ror.org/04d1kva62', 'no_lang_code', 1, 'https://ror.org/04d1kva62 YD Global Life Science (South Korea) ģ™€ģ“ė””ģƒėŖ…ź³¼ķ•™'),
(68734, 'https://ror.org/04d6d4n84', 'en', 1, 'https://ror.org/04d6d4n84 Korean Beauty Society ķ•œźµ­ ė·°ķ‹° ķ•™ķšŒ'),
(68735, 'https://ror.org/04d7gd791', 'en', 1, 'https://ror.org/04d7gd791 Institute of Monitoring of Climatic and Ecological Systems Главный ŠŗŠ¾Ń€ŠæŃƒŃ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мониторинга климатических Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… систем Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(68736, 'https://ror.org/04d7w6g53', 'no_lang_code', 1, 'https://ror.org/04d7w6g53 Playtech (Isle of Man)'),
(68737, 'https://ror.org/04dagd274', 'en', 1, 'https://ror.org/04dagd274 Subharti Medical College ą¤Øą„‡ą¤¤ą¤¾ą¤œą„€ ą¤øą„ą¤­ą¤¾ą¤· ą¤šą¤‚ą¤¦ą„ą¤°ą¤¾ ą¤¬ą„‹ą¤ø ą¤øą„ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(68738, 'https://ror.org/04ddf4k47', 'en', 1, 'https://ror.org/04ddf4k47 Benefits Data Trust'),
(68739, 'https://ror.org/04dgkhg68', 'no_lang_code', 1, 'https://ror.org/04dgkhg68 Snap (United States)'),
(68740, 'https://ror.org/04dh4pw96', 'en', 1, 'https://ror.org/04dh4pw96 Gdansk Water Foundation Gdańska Fundacja Wody'),
(68741, 'https://ror.org/04dmkfz43', 'no_lang_code', 1, 'https://ror.org/04dmkfz43 Decai Decoration (China) å¾·ę‰č£é£¾č‚”ä»½ęœ‰é™å…¬'),
(68742, 'https://ror.org/04dnw3t97', 'no_lang_code', 1, 'https://ror.org/04dnw3t97 Ionoptika (United Kingdom)'),
(68743, 'https://ror.org/04dnx8c79', 'en', 1, 'https://ror.org/04dnx8c79 American Council on Exercise'),
(68744, 'https://ror.org/04dpyhy23', 'en', 1, 'https://ror.org/04dpyhy23 Association of American Veterinary Medical Colleges'),
(68745, 'https://ror.org/04dqc4x73', 'en', 1, 'https://ror.org/04dqc4x73 Osan University ģ˜¤ģ‚°ėŒ€ķ•™'),
(68746, 'https://ror.org/04dr8r009', 'no_lang_code', 1, 'https://ror.org/04dr8r009 Technologisches Gewerbemuseum Tgm'),
(68747, 'https://ror.org/04dt6nf05', 'en', 1, 'https://ror.org/04dt6nf05 European Plasticisers'),
(68748, 'https://ror.org/04dtdfx84', 'no_lang_code', 1, 'https://ror.org/04dtdfx84 Exploristics (United Kingdom)'),
(68749, 'https://ror.org/04dtz3153', 'en', 1, 'https://ror.org/04dtz3153 Green Life Knowledge Economy Research Institute ė…¹ģƒ‰ ģƒķ™œ ģ§€ģ‹ 경제 ģ—°źµ¬ģ†Œ'),
(68750, 'https://ror.org/04dvm6828', 'en', 1, 'https://ror.org/04dvm6828 Human Service Agency'),
(68751, 'https://ror.org/04dwb2s30', 'en', 1, 'https://ror.org/04dwb2s30 Father Muller Charitable Institutions ą²«ą²¾ą²¦ą²°ą³ ą²®ą³ą²²ą³ą²²ą²°ą³ ą²šą²¾ą²°ą²æą²Ÿą²¬ą²²ą³ ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²·ą²Øą³ą²øą³'),
(68752, 'https://ror.org/04e116f14', 'no_lang_code', 1, 'https://ror.org/04e116f14 Cargill (Belgium)'),
(68753, 'https://ror.org/04e2ayg86', 'no_lang_code', 1, 'https://ror.org/04e2ayg86 Diagnostics for the Real World (United Kingdom)'),
(68754, 'https://ror.org/04e2hkj02', 'en', 1, 'https://ror.org/04e2hkj02 Homewood Research Institute'),
(68755, 'https://ror.org/04e2kfy26', 'en', 1, 'https://ror.org/04e2kfy26 Scientific Research Clinical Institute. L.I. Sverzhevsky ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ клинический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚. Š›.И. Двержевского'),
(68756, 'https://ror.org/04e3xe586', 'fr', 1, 'https://ror.org/04e3xe586 Institut National d''Excellence en SantƩ et en Services Sociaux'),
(68757, 'https://ror.org/04e5z5943', 'en', 1, 'https://ror.org/04e5z5943 Tasan Cultural Foundation ė‹¤ģ‚°ķ•™ģˆ ė¬øķ™”ģž¬ė‹Øģ€ 근세'),
(68758, 'https://ror.org/04e6xnh25', 'en', 1, 'https://ror.org/04e6xnh25 Intelligent Image and Information System ģ§€ėŠ„ķ˜• ģ“ėÆøģ§€ ė° 정볓 ģ‹œģŠ¤ķ…œ'),
(68759, 'https://ror.org/04e91sk65', 'en', 1, 'https://ror.org/04e91sk65 The Westminster Historical Society'),
(68760, 'https://ror.org/04ea9m912', 'no_lang_code', 1, 'https://ror.org/04ea9m912 Cellular Therapeutics (United Kingdom)'),
(68761, 'https://ror.org/04eacrz46', 'en', 1, 'https://ror.org/04eacrz46 Eversole Associates'),
(68762, 'https://ror.org/04ebkyp66', 'en', 1, 'https://ror.org/04ebkyp66 National Council of Teachers of English'),
(68763, 'https://ror.org/04ee9p839', 'en', 1, 'https://ror.org/04ee9p839 American Marketing Association'),
(68764, 'https://ror.org/04eftem11', 'en', 1, 'https://ror.org/04eftem11 Irish Society for the Prevention of Cruelty to Animals'),
(68765, 'https://ror.org/04egk7864', 'en', 1, 'https://ror.org/04egk7864 Yunnan Open University äŗ‘å—å¼€ę”¾å¤§å­¦'),
(68766, 'https://ror.org/04egvzv93', 'en', 1, 'https://ror.org/04egvzv93 National Institute of Research and Development for Electrochemistry and Condensed'),
(68767, 'https://ror.org/04egyjm03', 'en', 1, 'https://ror.org/04egyjm03 Nevada Department of Education'),
(68768, 'https://ror.org/04ehmzv20', 'en', 1, 'https://ror.org/04ehmzv20 COPE Galway'),
(68769, 'https://ror.org/04ejrv182', 'en', 1, 'https://ror.org/04ejrv182 All-Russia Research Institute of Legumes and Groat Crops FGBNU "Vserossijskij Nauchno-Issledovatel''skij Institut Zernobobovyh i Krupyanyh Kul''tur"'),
(68770, 'https://ror.org/04ekj9p57', 'no_lang_code', 1, 'https://ror.org/04ekj9p57 GlenDimplex (United Kingdom)'),
(68771, 'https://ror.org/04emf4852', 'en', 1, 'https://ror.org/04emf4852 Xi''an Railway Survey and Design Institute č„æå®‰é“č·Æå‹˜ęµ‹č®¾č®”é™¢'),
(68772, 'https://ror.org/04eq28s42', 'en', 1, 'https://ror.org/04eq28s42 Scientific Research Institute of Computer Complexes. M.A. Kartsev ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… комплексов'),
(68773, 'https://ror.org/04esbsa15', 'no_lang_code', 1, 'https://ror.org/04esbsa15 Samvedna Hospital ą¤øą¤‚ą¤µą„‡ą¤¦ą¤Øą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(68774, 'https://ror.org/04esny758', 'en', 1, 'https://ror.org/04esny758 Hong Kong Cytogenetics and Medical Genetics Centre åŒ»ē–—åŸŗå› äø­åæƒęœ‰é™å…¬åø'),
(68775, 'https://ror.org/04et4nb32', 'en', 1, 'https://ror.org/04et4nb32 Infinity Vision Dallas'),
(68776, 'https://ror.org/04exgja93', 'en', 1, 'https://ror.org/04exgja93 Institute of Optoelectronic Information Technologies ŠžŃ‚ŠŗŃ€Ń‹Ń‚Š¾Šµ акционерное общество "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптико-ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Ń‹Ń… информационных технологий"'),
(68777, 'https://ror.org/04f3qs775', 'no_lang_code', 1, 'https://ror.org/04f3qs775 iThera Medical (Germany)'),
(68778, 'https://ror.org/04f41jv37', 'en', 1, 'https://ror.org/04f41jv37 Flanders Environment Agency Vlaamse Milieumaatschappij'),
(68779, 'https://ror.org/04f49yt17', 'en', 1, 'https://ror.org/04f49yt17 The Wiener Library'),
(68780, 'https://ror.org/04f5a5m96', 'no_lang_code', 1, 'https://ror.org/04f5a5m96 Apotex (India)'),
(68781, 'https://ror.org/04f5mrw23', 'en', 1, 'https://ror.org/04f5mrw23 Commission de la santé et des services sociaux des Premières Nations du Québec et du Labrador First Nations of Quebec and Labrador Health and Social Services Commission'),
(68782, 'https://ror.org/04f63ne57', 'no_lang_code', 1, 'https://ror.org/04f63ne57 Chongqing Construction Engineering Investment Holding (China) é‡åŗ†å»ŗå·„ęŠ•čµ„ęŽ§č‚”'),
(68783, 'https://ror.org/04f68cb23', 'en', 1, 'https://ror.org/04f68cb23 Patanjali Research Foundation'),
(68784, 'https://ror.org/04f81me03', 'no_lang_code', 1, 'https://ror.org/04f81me03 Constellium (France)'),
(68785, 'https://ror.org/04fak9718', 'en', 1, 'https://ror.org/04fak9718 All-Russian Scientific - Research Institute of Horse Breeding Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коневоГства'),
(68786, 'https://ror.org/04fc1vj20', 'en', 1, 'https://ror.org/04fc1vj20 International Commission for the Hydrology of the Rhine Basin Internationale Kommission für die Hydrologie des Rheingebietes'),
(68787, 'https://ror.org/04fd00748', 'en', 1, 'https://ror.org/04fd00748 Central Research Institute" Dolphin " Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "Š”ŠµŠ»ŃŒŃ„ŠøŠ½"'),
(68788, 'https://ror.org/04ff87f07', 'no_lang_code', 1, 'https://ror.org/04ff87f07 Gene Tech (China)'),
(68789, 'https://ror.org/04ffj1463', 'no_lang_code', 1, 'https://ror.org/04ffj1463 Kingdee (China)'),
(68790, 'https://ror.org/04fg7ry98', 'no_lang_code', 1, 'https://ror.org/04fg7ry98 Arista (United States)'),
(68791, 'https://ror.org/04fgq7x14', 'no_lang_code', 1, 'https://ror.org/04fgq7x14 Smith & Nephew (Australia)'),
(68792, 'https://ror.org/04fjx8e69', 'en', 1, 'https://ror.org/04fjx8e69 The Deputy Prime Minister''s Office'),
(68793, 'https://ror.org/04fkpdv59', 'no_lang_code', 1, 'https://ror.org/04fkpdv59 Nexteer Automotive (United States)'),
(68794, 'https://ror.org/04fmkfb67', 'no_lang_code', 1, 'https://ror.org/04fmkfb67 DĆ -Jiāng Innovations Science and Technology (China) å¤§ē–†åˆ›ę–°ē§‘ęŠ€ęœ‰é™å…¬åø'),
(68795, 'https://ror.org/04fndbe13', 'no_lang_code', 1, 'https://ror.org/04fndbe13 Woo Young Medical (South Korea) 우 영 ģ˜ė£Œ'),
(68796, 'https://ror.org/04fnybk57', 'no_lang_code', 1, 'https://ror.org/04fnybk57 Wabco (Belgium)'),
(68797, 'https://ror.org/04fr2ec26', 'fr', 1, 'https://ror.org/04fr2ec26 UC-Institut inter RƩgional pour la SAntƩ'),
(68798, 'https://ror.org/04frvwq31', 'en', 1, 'https://ror.org/04frvwq31 International Research Society for Public Management'),
(68799, 'https://ror.org/04fs1av96', 'en', 1, 'https://ror.org/04fs1av96 Public Health Accreditation Board'),
(68800, 'https://ror.org/04fsntv73', 'no_lang_code', 1, 'https://ror.org/04fsntv73 Koguryo Bohai Society 고구려 ė°œķ•“ ķ•™ķšŒ'),
(68801, 'https://ror.org/04fwng791', 'no_lang_code', 1, 'https://ror.org/04fwng791 Castolin Eutectic (Ireland)'),
(68802, 'https://ror.org/04fxnt467', 'en', 1, 'https://ror.org/04fxnt467 Guangdong Institute of Rare Metals'),
(68803, 'https://ror.org/04g1tx361', 'no_lang_code', 1, 'https://ror.org/04g1tx361 AppoTech (China) å“ę¦®é›†ęˆé›»č·Æē§‘ęŠ€ęœ‰é™å…¬åø'),
(68804, 'https://ror.org/04g2esr52', 'en', 1, 'https://ror.org/04g2esr52 Seth Nandlal Dhoot Hospital'),
(68805, 'https://ror.org/04g4hv039', 'en', 1, 'https://ror.org/04g4hv039 Shaanxi Research Design Institute of Petroleum and Chemical Industry é™•č„æēœēŸ³ę²¹åŒ–å·„ē ”ē©¶č®¾č®”é™¢'),
(68806, 'https://ror.org/04g4j1336', 'nl', 1, 'https://ror.org/04g4j1336 Vlaams Instituut Gezond Leven'),
(68807, 'https://ror.org/04g526d38', 'en', 1, 'https://ror.org/04g526d38 European Utilities Telecom Council'),
(68808, 'https://ror.org/04g67gh56', 'no_lang_code', 1, 'https://ror.org/04g67gh56 Studio-R'),
(68809, 'https://ror.org/04g81mm64', 'no_lang_code', 1, 'https://ror.org/04g81mm64 Keysight Technologies (United Kingdom)'),
(68810, 'https://ror.org/04gdd6b52', 'en', 1, 'https://ror.org/04gdd6b52 European Youth Information and Counselling Agency EuropƤesch Jugendinformatioun an Berodungsassistent'),
(68811, 'https://ror.org/04gea5y49', 'en', 1, 'https://ror.org/04gea5y49 Cork’s Technology Network'),
(68812, 'https://ror.org/04gf2dg91', 'no_lang_code', 1, 'https://ror.org/04gf2dg91 Epicardio (United Kingdom)'),
(68813, 'https://ror.org/04gfm7t49', 'no_lang_code', 1, 'https://ror.org/04gfm7t49 Lifan (China) åŠ›åø†é›†å›¢'),
(68814, 'https://ror.org/04gfyef21', 'no_lang_code', 1, 'https://ror.org/04gfyef21 Guangzhou Metro Group (China)'),
(68815, 'https://ror.org/04gjr7b93', 'de', 1, 'https://ror.org/04gjr7b93 Ministerium für Kinder, Familie, Flüchtlinge und Integration des Landes Nordrhein-Westfalen'),
(68816, 'https://ror.org/04gjwsq09', 'en', 1, 'https://ror.org/04gjwsq09 European Association for Local Democracy'),
(68817, 'https://ror.org/04gkr8m24', 'en', 1, 'https://ror.org/04gkr8m24 "ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ¾Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°" Kostroma Research Institute of Agriculture'),
(68818, 'https://ror.org/04gm1dg38', 'en', 1, 'https://ror.org/04gm1dg38 The Daegu Historical Association ėŒ€źµ¬ 역사 ķ•™ķšŒ'),
(68819, 'https://ror.org/04gpq6y25', 'en', 1, 'https://ror.org/04gpq6y25 Kildare Education Centre'),
(68820, 'https://ror.org/04gs82x94', 'no_lang_code', 1, 'https://ror.org/04gs82x94 Brandon Bioscience (Ireland)'),
(68821, 'https://ror.org/04gsz9w64', 'en', 1, 'https://ror.org/04gsz9w64 Reef Check Foundation'),
(68822, 'https://ror.org/04gtfsy04', 'en', 1, 'https://ror.org/04gtfsy04 Atlantic Environmental Research Center Centro de Investigaciones Medioambientales del AtlƔntico'),
(68823, 'https://ror.org/04gwfmd61', 'en', 1, 'https://ror.org/04gwfmd61 Department of Livestock Development ąøąø£ąø”ąø›ąøØąøøąøŖąø±ąø•ąø§ą¹Œ'),
(68824, 'https://ror.org/04gzzzx19', 'en', 1, 'https://ror.org/04gzzzx19 Korean Language and Literature Society ķ•œźµ­ģ–øģ–“ė¬øķ•™ķšŒ'),
(68825, 'https://ror.org/04h002109', 'no_lang_code', 1, 'https://ror.org/04h002109 Space Solutions (South Korea) 우주 ģ†”ė£Øģ…˜'),
(68826, 'https://ror.org/04h0ns222', 'en', 1, 'https://ror.org/04h0ns222 Korean Society of Child Welfare ķ•œźµ­ģ•„ė™ė³µģ§€ķ•™ķšŒ'),
(68827, 'https://ror.org/04h1h5j74', 'no_lang_code', 1, 'https://ror.org/04h1h5j74 NDT Engineering & Aerospace (South Korea) ė¹„ķŒŒź““ ģ—”ģ§€ė‹ˆģ–“ė§ ė° ķ•­ź³µ 우주 ģœ ķ•œ 공사'),
(68828, 'https://ror.org/04h2nqb04', 'en', 1, 'https://ror.org/04h2nqb04 Food Standards Scotland Inbhe-Bidhe Alba'),
(68829, 'https://ror.org/04h411m05', 'no_lang_code', 1, 'https://ror.org/04h411m05 Transneft (Russia) Š¢Ń€Š°Š½ŃŠ½ŠµŃ„Ń‚ŃŒ'),
(68830, 'https://ror.org/04h48jk55', 'no_lang_code', 1, 'https://ror.org/04h48jk55 Ford Otosan (Turkey)'),
(68831, 'https://ror.org/04h4zjp06', 'en', 1, 'https://ror.org/04h4zjp06 Dongguan LungCheong Institute of Intelligent Technology äøœčŽžé¾™ę˜Œę™ŗčƒ½ęŠ€ęœÆē ”ē©¶é™¢ē®€ä»‹'),
(68832, 'https://ror.org/04h534k32', 'no_lang_code', 1, 'https://ror.org/04h534k32 Chiaro (United Kingdom)'),
(68833, 'https://ror.org/04h6dc762', 'en', 1, 'https://ror.org/04h6dc762 State Board of Education'),
(68834, 'https://ror.org/04h6rvh11', 'no_lang_code', 1, 'https://ror.org/04h6rvh11 Kai Biotech (South Korea) ė°”ģ“ģ˜¤ ķ…Œķ¬ ģ£¼ģ‹ ķšŒģ‚¬ ģ¹“ģ“'),
(68835, 'https://ror.org/04h7sxq81', 'no_lang_code', 1, 'https://ror.org/04h7sxq81 Winus Technology (South Korea) ģœ„ė„ˆģŠ¤ 과학 기술'),
(68836, 'https://ror.org/04h9hnm31', 'en', 1, 'https://ror.org/04h9hnm31 Tianjin Metallurgical Vocational Technical College å¤©ę“„å†¶é‡‘čŒäøšęŠ€ęœÆå­¦é™¢'),
(68837, 'https://ror.org/04hbyjq58', 'no_lang_code', 1, 'https://ror.org/04hbyjq58 Embecosm (United Kingdom)'),
(68838, 'https://ror.org/04hc0ps23', 'no_lang_code', 1, 'https://ror.org/04hc0ps23 G-Volution (United Kingdom)'),
(68839, 'https://ror.org/04hc7z719', 'en', 1, 'https://ror.org/04hc7z719 International Theatre Institute'),
(68840, 'https://ror.org/04hf4he50', 'no_lang_code', 1, 'https://ror.org/04hf4he50 Ukrainian Research Institute of Cable Industry (Ukraine)'),
(68841, 'https://ror.org/04hfnps81', 'en', 1, 'https://ror.org/04hfnps81 Canadian Arthritis Patient Alliance L’Alliance Canadienne des Arthritiques'),
(68842, 'https://ror.org/04hhsd771', 'no_lang_code', 1, 'https://ror.org/04hhsd771 Solomon Systech (China)'),
(68843, 'https://ror.org/04hjc2592', 'en', 1, 'https://ror.org/04hjc2592 Kazan Research Institute of Aviation Technologies Казанский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных технологий'),
(68844, 'https://ror.org/04hjzh827', 'no_lang_code', 1, 'https://ror.org/04hjzh827 First Solar (United States)'),
(68845, 'https://ror.org/04hpnke04', 'en', 1, 'https://ror.org/04hpnke04 Tusla - Child and Family Agency'),
(68846, 'https://ror.org/04hqk4797', 'en', 1, 'https://ror.org/04hqk4797 The Korean Society of Art Theories ķ•œźµ­ėÆøģˆ ģ“ė” ķ•™ķšŒ'),
(68847, 'https://ror.org/04hqxxp09', 'en', 1, 'https://ror.org/04hqxxp09 ICS Skills'),
(68848, 'https://ror.org/04hwz0a59', 'de', 1, 'https://ror.org/04hwz0a59 Bundesverband mittelstƤndische Wirtschaft'),
(68849, 'https://ror.org/04hxfpp72', 'no_lang_code', 1, 'https://ror.org/04hxfpp72 Ocean FM (Ireland)'),
(68850, 'https://ror.org/04hz7m473', 'no_lang_code', 1, 'https://ror.org/04hz7m473 Evonik (Switzerland)'),
(68851, 'https://ror.org/04hzt6a67', 'no_lang_code', 1, 'https://ror.org/04hzt6a67 Hefei Meiling (China) åˆč‚„ē¾Žč±č‚”ä»½ęœ‰é™å…¬åø'),
(68852, 'https://ror.org/04j4jwe91', 'en', 1, 'https://ror.org/04j4jwe91 Jiangsu Institute of Hydraulic Science and Technology ę±Ÿč‹ēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(68853, 'https://ror.org/04j7c2756', 'en', 1, 'https://ror.org/04j7c2756 The Korean Society for Gifted and Talented ķ•œźµ­ģ˜ģž¬źµģœ”ķ•™ķšŒ'),
(68854, 'https://ror.org/04j8mbe63', 'en', 1, 'https://ror.org/04j8mbe63 Nevada State Board of Pharmacy'),
(68855, 'https://ror.org/04jadnp30', 'en', 1, 'https://ror.org/04jadnp30 Korean Classics Research Society ķ•œźµ­ ź³ ģ „ ķ•™ķšŒ'),
(68856, 'https://ror.org/04jf04g79', 'en', 1, 'https://ror.org/04jf04g79 International Foundation for Integrated Care'),
(68857, 'https://ror.org/04jg36w98', 'no_lang_code', 1, 'https://ror.org/04jg36w98 Saint-Petersburg Research Institute of Phthisiopulmonology Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠŠ˜Š˜ Ń„Ń‚ŠøŠ·ŠøŠ¾ŠæŃƒŠ»ŃŒŠ¼Š¾Š½Š¾Š»Š¾Š³ŠøŠø'),
(68858, 'https://ror.org/04jj4c328', 'no_lang_code', 1, 'https://ror.org/04jj4c328 AECOM (China)'),
(68859, 'https://ror.org/04jmg2j77', 'no_lang_code', 1, 'https://ror.org/04jmg2j77 Edwards Lifesciences (South Korea)'),
(68860, 'https://ror.org/04jr4g753', 'en', 1, 'https://ror.org/04jr4g753 Osong Medical Innovation Foundation ģ˜¤ģ†”ģ²Øė‹Øģ˜ė£Œģ‚°ģ—…ģ§„ķ„ģž¬ė‹Ø');
INSERT INTO `rors` VALUES
(68861, 'https://ror.org/04jrjqp75', 'en', 1, 'https://ror.org/04jrjqp75 National Institute of Grape and Wine "Magarach" Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ винограГарства Šø Š²ŠøŠ½Š¾Š“ŠµŠ»ŠøŃ Ā«ŠœŠ°Š³Š°Ń€Š°Ń‡Ā»'),
(68862, 'https://ror.org/04js16v38', 'en', 1, 'https://ror.org/04js16v38 Hubei Academy of Environmental Sciences ę¹–åŒ—ēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(68863, 'https://ror.org/04jsqtz71', 'fr', 1, 'https://ror.org/04jsqtz71 Centre d''aide Pour Hommes de LanaudiĆØre'),
(68864, 'https://ror.org/04jstcr77', 'en', 1, 'https://ror.org/04jstcr77 Ministry of Transport and Communications وزارة Ų§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ ŁˆŲ§Ł„Ų§ŲŖŲµŲ§Ł„Ų§ŲŖ- المبنى Ų§Ł„Ų±Ų¦ŁŠŲ³ŁŠ'),
(68865, 'https://ror.org/04jvr6m30', 'no_lang_code', 1, 'https://ror.org/04jvr6m30 China Post (China) 中国邮政'),
(68866, 'https://ror.org/04jx53751', 'no_lang_code', 1, 'https://ror.org/04jx53751 ConvenientPower Systems (China)'),
(68867, 'https://ror.org/04jxank96', 'en', 1, 'https://ror.org/04jxank96 Hunan Non-ferrous Metallurgical Labor Protection Institute ę¹–å—ēœęœ‰č‰²é‡‘å±žåŠ³åŠØäæęŠ¤ē ”ē©¶ę‰€'),
(68868, 'https://ror.org/04jxbkz90', 'en', 1, 'https://ror.org/04jxbkz90 Institute for Programming research and Algorithmics'),
(68869, 'https://ror.org/04jxxfd37', 'fr', 1, 'https://ror.org/04jxxfd37 RƩseau National d''Expertise en Trouble du Spectre de l''Autisme'),
(68870, 'https://ror.org/04jyhzm90', 'no_lang_code', 1, 'https://ror.org/04jyhzm90 FirsTune (China)'),
(68871, 'https://ror.org/04k1aj657', 'en', 1, 'https://ror.org/04k1aj657 The Korea Society of Fashion Design ķ•œźµ­ķŒØģ…˜ė””ģžģøķ•™ķšŒ'),
(68872, 'https://ror.org/04k31nk35', 'en', 1, 'https://ror.org/04k31nk35 American International School in Egypt المدرسة Ų§Ł„Ų§Ł…Ų±ŁŠŁƒŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(68873, 'https://ror.org/04k3kqt10', 'en', 1, 'https://ror.org/04k3kqt10 Battersea Arts Centre'),
(68874, 'https://ror.org/04k414517', 'en', 1, 'https://ror.org/04k414517 Lietuvos Respublikos teisingumo ministerija Ministry of Justice of the Republic of Lithuania'),
(68875, 'https://ror.org/04k7c8d26', 'no_lang_code', 1, 'https://ror.org/04k7c8d26 Shanghai Institute of Process Automation Instrumentation (China) äøŠęµ·å·„äøšč‡ŖåŠØåŒ–ä»Ŗč”Øē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(68876, 'https://ror.org/04k7seg51', 'en', 1, 'https://ror.org/04k7seg51 Alberta Kidney Disease Network'),
(68877, 'https://ror.org/04k7xq042', 'no_lang_code', 1, 'https://ror.org/04k7xq042 Jiangxi Copper (China) ę±Ÿč„æé“œäøš'),
(68878, 'https://ror.org/04k8w6g96', 'en', 1, 'https://ror.org/04k8w6g96 National Tax Association'),
(68879, 'https://ror.org/04k92fs76', 'no_lang_code', 1, 'https://ror.org/04k92fs76 Amgen (India)'),
(68880, 'https://ror.org/04k9aq609', 'en', 1, 'https://ror.org/04k9aq609 ECDL Foundation'),
(68881, 'https://ror.org/04k9ktn61', 'no_lang_code', 1, 'https://ror.org/04k9ktn61 Dahua Technology (China)'),
(68882, 'https://ror.org/04kbbd545', 'en', 1, 'https://ror.org/04kbbd545 Shri Bhausaheb Hire Government Medical College & Hospital'),
(68883, 'https://ror.org/04kd20m98', 'en', 1, 'https://ror.org/04kd20m98 Department for Economic Affairs Volkswirtschaftsdirektion'),
(68884, 'https://ror.org/04kddx345', 'en', 1, 'https://ror.org/04kddx345 Hong Kong Business Angel Network é¦™ęøÆå•†äøšå¤©ä½æē½‘'),
(68885, 'https://ror.org/04kdp2897', 'en', 1, 'https://ror.org/04kdp2897 Tourism Management Research Organization ź“€ź“‘ź²½ģ˜ķ•™ķšŒ'),
(68886, 'https://ror.org/04kfnx806', 'no_lang_code', 1, 'https://ror.org/04kfnx806 K+S (Germany)'),
(68887, 'https://ror.org/04kfpsj04', 'en', 1, 'https://ror.org/04kfpsj04 Business in the Community'),
(68888, 'https://ror.org/04kfvhz20', 'no_lang_code', 1, 'https://ror.org/04kfvhz20 LivaNova (United States)'),
(68889, 'https://ror.org/04kg4fr36', 'en', 1, 'https://ror.org/04kg4fr36 Saint-Petersburg Research Institute of Ear, Throat, Nose and Speech Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠŠ˜Š˜ ŃƒŃ…Š°, горла, носа Šø речи'),
(68890, 'https://ror.org/04kgekf96', 'no_lang_code', 1, 'https://ror.org/04kgekf96 Sputnik Š”ŠæŃƒŃ‚Š½ŠøŠŗ'),
(68891, 'https://ror.org/04kgxe034', 'en', 1, 'https://ror.org/04kgxe034 Korean Association of Exercise Physiology ķ•œźµ­ģš“ė™ģƒė¦¬ķ•™ķšŒ'),
(68892, 'https://ror.org/04khvmp61', 'no_lang_code', 1, 'https://ror.org/04khvmp61 Fanuc (United Kingdom)'),
(68893, 'https://ror.org/04km3ca65', 'no_lang_code', 1, 'https://ror.org/04km3ca65 Intercommunale Waterleidingsmaatschappij van Veurne-Ambacht Intermunicipal Water Company of Veurne-Craft (Belgium)'),
(68894, 'https://ror.org/04kmk1j57', 'no_lang_code', 1, 'https://ror.org/04kmk1j57 Inventia (India)'),
(68895, 'https://ror.org/04kpjf880', 'en', 1, 'https://ror.org/04kpjf880 Mexican Cultural Institute'),
(68896, 'https://ror.org/04kpqtt03', 'no_lang_code', 1, 'https://ror.org/04kpqtt03 i3D Robotics (United Kingdom)'),
(68897, 'https://ror.org/04kpxf456', 'en', 1, 'https://ror.org/04kpxf456 The Korean History Education Society ķ•œźµ­ģ‚¬ 교윔 ķ•™ķšŒ'),
(68898, 'https://ror.org/04krrjy26', 'en', 1, 'https://ror.org/04krrjy26 All-Russian Scientific Research Institute of Pulp and Paper Industry Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¦Š•Š›Š›Š®Š›ŠžŠ—ŠŠž-Š‘Š£ŠœŠŠ–ŠŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(68899, 'https://ror.org/04ktfyy52', 'no_lang_code', 1, 'https://ror.org/04ktfyy52 Pfizer (China) č¾‰ē‘žå…¬åø'),
(68900, 'https://ror.org/04kvstc88', 'en', 1, 'https://ror.org/04kvstc88 Yiwu Science and Technology Research Institute ęµ™ę±Ÿå·„äøšå¤§å­¦ä¹‰ä¹Œē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(68901, 'https://ror.org/04kwv3995', 'en', 1, 'https://ror.org/04kwv3995 Council of Professional Associations on Federal Statistics'),
(68902, 'https://ror.org/04kwy9224', 'no_lang_code', 1, 'https://ror.org/04kwy9224 Alkem (India)'),
(68903, 'https://ror.org/04kxcwc73', 'en', 1, 'https://ror.org/04kxcwc73 Law Society of Hong Kong é¦™ęøÆå¾‹åø«ęœƒ'),
(68904, 'https://ror.org/04kzytq43', 'en', 1, 'https://ror.org/04kzytq43 Centre d''excellence pour la santƩ des femmes - rƩgion des Prairies Prairie Women''s Health Centre of Excellence'),
(68905, 'https://ror.org/04m123659', 'no_lang_code', 1, 'https://ror.org/04m123659 Daewoo Pharma (South Korea) ėŒ€ģš°ģ œģ•½'),
(68906, 'https://ror.org/04m20rz92', 'en', 1, 'https://ror.org/04m20rz92 Advanced Manufacturing Research Centre'),
(68907, 'https://ror.org/04m2bcn74', 'no_lang_code', 1, 'https://ror.org/04m2bcn74 System Equipment (China) ē³»ē»Ÿč®¾å¤‡'),
(68908, 'https://ror.org/04m4kv128', 'en', 1, 'https://ror.org/04m4kv128 Institute of Plastics named after G. Petrov Акционерное общество Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пластмасс имени Š“.Š”.ŠŸŠµŃ‚Ń€Š¾Š²Š°Ā»'),
(68909, 'https://ror.org/04m5qh397', 'en', 1, 'https://ror.org/04m5qh397 Church of England'),
(68910, 'https://ror.org/04m6cjv19', 'en', 1, 'https://ror.org/04m6cjv19 Development Research Center ę°“åˆ©éƒØå‘å±•ē ”ē©¶äø­åæƒ'),
(68911, 'https://ror.org/04m6gem67', 'en', 1, 'https://ror.org/04m6gem67 Ministry of Education and Science of Georgia įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ’įƒįƒœįƒįƒ—įƒšįƒ”įƒ‘įƒ˜įƒ”įƒ įƒ“įƒ įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒ˜įƒ” įƒ”įƒįƒ›įƒ˜įƒœįƒ˜įƒ”įƒ¢įƒ įƒ'),
(68912, 'https://ror.org/04m8qbk11', 'en', 1, 'https://ror.org/04m8qbk11 Urals Research Institute for the Protection of Maternity and Infancy Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠŠ˜Š˜ охраны материнства Šø млаГенчества'),
(68913, 'https://ror.org/04m97pf61', 'en', 1, 'https://ror.org/04m97pf61 First Nations Health and Social Secretariat of Manitoba'),
(68914, 'https://ror.org/04marmm60', 'no_lang_code', 1, 'https://ror.org/04marmm60 D2NA (United Kingdom)'),
(68915, 'https://ror.org/04matqb57', 'no_lang_code', 1, 'https://ror.org/04matqb57 Gamaplast (Poland)'),
(68916, 'https://ror.org/04mf01f43', 'no_lang_code', 1, 'https://ror.org/04mf01f43 Wanda Group (China) 万达集团'),
(68917, 'https://ror.org/04mfdcn64', 'en', 1, 'https://ror.org/04mfdcn64 Comhairle Contae MhuineachƔin Monaghan County Council'),
(68918, 'https://ror.org/04mfdzp80', 'no_lang_code', 1, 'https://ror.org/04mfdzp80 YAMSU Technologies (Ireland)'),
(68919, 'https://ror.org/04mja2r14', 'it', 1, 'https://ror.org/04mja2r14 Pontificia commissione di archeologia sacra, Pontificium consilium archaeologiae sacrae'),
(68920, 'https://ror.org/04mk8hf46', 'en', 1, 'https://ror.org/04mk8hf46 Amgueddfa Stori Caerdydd Cardiff Story Museum'),
(68921, 'https://ror.org/04mnty788', 'es', 1, 'https://ror.org/04mnty788 Servicio Diabetología Hospital Córdoba'),
(68922, 'https://ror.org/04mq2mh67', 'en', 1, 'https://ror.org/04mq2mh67 Ontario Long Term Care Association'),
(68923, 'https://ror.org/04mrd1117', 'no_lang_code', 1, 'https://ror.org/04mrd1117 ServusNet Informatics (Ireland)'),
(68924, 'https://ror.org/04mrvfq25', 'fr', 1, 'https://ror.org/04mrvfq25 Agence pour l’Entreprise & l’Innovation'),
(68925, 'https://ror.org/04mtmfz79', 'en', 1, 'https://ror.org/04mtmfz79 Korea Regional Economic Reserach institute ķ•œźµ­ 지역 경제 연구원'),
(68926, 'https://ror.org/04mw2ty13', 'en', 1, 'https://ror.org/04mw2ty13 Anhui Institute of Information Technology ꜉ 安徽俔息巄程学院'),
(68927, 'https://ror.org/04mwczr65', 'en', 1, 'https://ror.org/04mwczr65 Markham Museum'),
(68928, 'https://ror.org/04n0kdq05', 'en', 1, 'https://ror.org/04n0kdq05 SamsĆø Energiakademi SamsĆø Energy Academy'),
(68929, 'https://ror.org/04n0xnb78', 'no_lang_code', 1, 'https://ror.org/04n0xnb78 Latvian Environment, Geology and Meteorology Centre (Latvia) Latvijas Vides, ģeoloģijas un meteoroloģijas centrs'),
(68930, 'https://ror.org/04n11fv55', 'no_lang_code', 1, 'https://ror.org/04n11fv55 Cerner (Austria)'),
(68931, 'https://ror.org/04n2kvd60', 'en', 1, 'https://ror.org/04n2kvd60 Conseil des AcadƩmies Canadiennes Council of Canadian Academies'),
(68932, 'https://ror.org/04n3n8t23', 'no_lang_code', 1, 'https://ror.org/04n3n8t23 U-Tel (South Korea) ģœ ķ…”'),
(68933, 'https://ror.org/04n3x5g15', 'en', 1, 'https://ror.org/04n3x5g15 Huzhou Academy of Agricultural Sciences ę¹–å·žå†œäøšē§‘å­¦'),
(68934, 'https://ror.org/04n5ac152', 'en', 1, 'https://ror.org/04n5ac152 Quebec Network on Suicide, Mood Disorders and Related Disorders'),
(68935, 'https://ror.org/04n5pyx79', 'en', 1, 'https://ror.org/04n5pyx79 Korean Elementary Moral Education Society ķ•œźµ­ģ“ˆė“±ė„ė•źµģœ”ķ•™ķšŒ'),
(68936, 'https://ror.org/04n6ern89', 'no_lang_code', 1, 'https://ror.org/04n6ern89 Concern Energomera (Russia)'),
(68937, 'https://ror.org/04n7qr785', 'en', 1, 'https://ror.org/04n7qr785 Stavropol Research Institute of Agriculture Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠ¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(68938, 'https://ror.org/04n7s1j93', 'en', 1, 'https://ror.org/04n7s1j93 Research Institute for Aquaculture No1 Viện NghiĆŖn cứu NuĆ“i trồng Thį»§y sįŗ£n I'),
(68939, 'https://ror.org/04n99ng06', 'no_lang_code', 1, 'https://ror.org/04n99ng06 eLearning Studios (United Kingdom)'),
(68940, 'https://ror.org/04nars592', 'en', 1, 'https://ror.org/04nars592 Ministrstvo za okolje in prostor Ministry of the Environment and Spatial Planning'),
(68941, 'https://ror.org/04nexjf43', 'en', 1, 'https://ror.org/04nexjf43 Korean Language Society ķ•œźø€ ķ•™ķšŒ'),
(68942, 'https://ror.org/04nfvqg35', 'es', 1, 'https://ror.org/04nfvqg35 Barcelona Energia'),
(68943, 'https://ror.org/04ng8qp45', 'pt', 1, 'https://ror.org/04ng8qp45 Instituto da Habitação e da Reabilitação Urbana'),
(68944, 'https://ror.org/04nga4641', 'no_lang_code', 1, 'https://ror.org/04nga4641 Diodes (China)'),
(68945, 'https://ror.org/04nh45n53', 'no_lang_code', 1, 'https://ror.org/04nh45n53 Reasonable Software House (China)'),
(68946, 'https://ror.org/04nhsym74', 'no_lang_code', 1, 'https://ror.org/04nhsym74 Avatr (United Kingdom)'),
(68947, 'https://ror.org/04nk2tb51', 'en', 1, 'https://ror.org/04nk2tb51 Shandong Special Equipment Inspection Institute å±±äøœēœē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(68948, 'https://ror.org/04nn86d34', 'no_lang_code', 1, 'https://ror.org/04nn86d34 Mondelēz International (India)'),
(68949, 'https://ror.org/04npq0213', 'en', 1, 'https://ror.org/04npq0213 Contact Helpline'),
(68950, 'https://ror.org/04nqpys93', 'no_lang_code', 1, 'https://ror.org/04nqpys93 Check Point (Israel)'),
(68951, 'https://ror.org/04nrp9v23', 'en', 1, 'https://ror.org/04nrp9v23 Korea Society of Translators ķ•œźµ­ė²ˆģ—­ź°€ķ˜‘ķšŒ'),
(68952, 'https://ror.org/04nsjct52', 'no_lang_code', 1, 'https://ror.org/04nsjct52 VNIIPelkhozkhim Š ŃŠ·Š°Š½Šø был организован Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по технологии Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠµ Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ в сельском Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Šµ Š¼ŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Ń‹Ń… ŃƒŠ“Š¾Š±Ń€ŠµŠ½ŠøŠ¹ Šø химических среГств защиты растений'),
(68953, 'https://ror.org/04ntr0v89', 'en', 1, 'https://ror.org/04ntr0v89 Dongguan Frontier Technology Research Institute äøœčŽžå‰ę²æęŠ€ęœÆē ”ē©¶é™¢'),
(68954, 'https://ror.org/04nvd1261', 'en', 1, 'https://ror.org/04nvd1261 Canadian MPS Society for Mucopolysaccharide and Related Diseases SociƩtƩ Canadienne des Mucopolysaccharidoses et des Maladies ApparentƩes'),
(68955, 'https://ror.org/04nwskz42', 'en', 1, 'https://ror.org/04nwskz42 Korea Economic Law Association ķ•œźµ­ź²½ģ œė²•ķ•™ķšŒ'),
(68956, 'https://ror.org/04nxxn125', 'no_lang_code', 1, 'https://ror.org/04nxxn125 Amadeus (Spain)'),
(68957, 'https://ror.org/04nzfkq05', 'no_lang_code', 1, 'https://ror.org/04nzfkq05 Exor (Netherlands)'),
(68958, 'https://ror.org/04nzrnx83', 'no_lang_code', 1, 'https://ror.org/04nzrnx83 Naver (South Korea) ė„¤ģ“ė²„'),
(68959, 'https://ror.org/04p1qqj97', 'en', 1, 'https://ror.org/04p1qqj97 Hunan Communications Research Institute ę¹–å—äŗ¤é€šē ”ē©¶é™¢'),
(68960, 'https://ror.org/04p4jbz48', 'de', 1, 'https://ror.org/04p4jbz48 Ministerium für Umwelt und Verbraucherschutz'),
(68961, 'https://ror.org/04p6nsn05', 'no_lang_code', 1, 'https://ror.org/04p6nsn05 Kolmar Korea (South Korea) ķ•œźµ­ 콜마'),
(68962, 'https://ror.org/04p7mex89', 'no_lang_code', 1, 'https://ror.org/04p7mex89 Jagoda JPS (Poland)'),
(68963, 'https://ror.org/04pb98034', 'no_lang_code', 1, 'https://ror.org/04pb98034 TFI Digital Media Limited (China)'),
(68964, 'https://ror.org/04pc4cw42', 'en', 1, 'https://ror.org/04pc4cw42 Research Institute Submicron ŠŠ˜Š˜ Š”ŃƒŠ±Š¼ŠøŠŗŃ€Š¾Š½'),
(68965, 'https://ror.org/04pchp455', 'no_lang_code', 1, 'https://ror.org/04pchp455 Astellas Pharma (South Korea) ģ•„ģŠ¤ķ…”ė¼ģŠ¤'),
(68966, 'https://ror.org/04pdjr931', 'no_lang_code', 1, 'https://ror.org/04pdjr931 Xinxing Pipes International Development (China) ę–°å…“é“øē®”č‚”ä»½ęœ‰é™å…¬åø'),
(68967, 'https://ror.org/04pdkbc41', 'de', 1, 'https://ror.org/04pdkbc41 VAF Bundesverband Telekommunikation'),
(68968, 'https://ror.org/04pe7qe08', 'no_lang_code', 1, 'https://ror.org/04pe7qe08 Aero Engine Corporation of China (China) äø­å›½čˆŖē©ŗå‘åŠØęœŗé›†å›¢'),
(68969, 'https://ror.org/04pekda06', 'no_lang_code', 1, 'https://ror.org/04pekda06 Jiangsu Maritime Institute å›½é™…ę•™č‚²äŗ¤ęµäøŽęœåŠ”äø­åæƒ'),
(68970, 'https://ror.org/04pfhpy42', 'no_lang_code', 1, 'https://ror.org/04pfhpy42 Beijing Drainage Group (China) åŒ—äŗ¬ęŽ’ę°“é›†å›¢'),
(68971, 'https://ror.org/04pgsn829', 'en', 1, 'https://ror.org/04pgsn829 Ministry of Justice of the Republic of Kazakhstan ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ó˜Š“Ń–Š»ŠµŃ‚ министрлігі'),
(68972, 'https://ror.org/04phk2284', 'en', 1, 'https://ror.org/04phk2284 Dolphin (PG) Institute of Bio Medical and Natural Science'),
(68973, 'https://ror.org/04pms6p91', 'en', 1, 'https://ror.org/04pms6p91 Ivan Vazov National Library ŠŠ°Ń€Š¾Š“Š½Š° библиотека "Иван Вазов"'),
(68974, 'https://ror.org/04pq7rm89', 'no_lang_code', 1, 'https://ror.org/04pq7rm89 Deutsche Bƶrse (Germany)'),
(68975, 'https://ror.org/04pqc7b65', 'en', 1, 'https://ror.org/04pqc7b65 Granite Falls Family Medical Care Center'),
(68976, 'https://ror.org/04pr3cf18', 'no_lang_code', 1, 'https://ror.org/04pr3cf18 Bmvitek (South Korea) ė¹„ģ— ė°”ģ“ķ…'),
(68977, 'https://ror.org/04ptgyz27', 'en', 1, 'https://ror.org/04ptgyz27 Korean Academic Society for Public Relations ķ•œźµ­PRķ•™ķšŒ'),
(68978, 'https://ror.org/04ptvr660', 'no_lang_code', 1, 'https://ror.org/04ptvr660 Gene (China) é¦™ęøÆåŸŗå› ęœ‰é™å…¬åø'),
(68979, 'https://ror.org/04pv2qa77', 'en', 1, 'https://ror.org/04pv2qa77 Center of Excellence in Wireless & Information Technology'),
(68980, 'https://ror.org/04pw43593', 'no_lang_code', 1, 'https://ror.org/04pw43593 British Glass'),
(68981, 'https://ror.org/04pwn6a43', 'no_lang_code', 1, 'https://ror.org/04pwn6a43 China National Chemical Engineering (China) äø­å›½åŒ–å­¦å·„ēØ‹č‚”ä»½ęœ‰é™å…¬åø'),
(68982, 'https://ror.org/04pwwk213', 'no_lang_code', 1, 'https://ror.org/04pwwk213 HIC (South Korea)'),
(68983, 'https://ror.org/04pxj3v44', 'en', 1, 'https://ror.org/04pxj3v44 Agency for Innovation and Technology Transfer Agenția pentru Inovare și Transfer Tehnologic Агентство по Š˜Š½Š¾Š²Š°Ń†ŠøŠø Šø Š¢ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¼Ńƒ'),
(68984, 'https://ror.org/04pxsa259', 'no_lang_code', 1, 'https://ror.org/04pxsa259 EpiGear (Australia)'),
(68985, 'https://ror.org/04q19fq93', 'en', 1, 'https://ror.org/04q19fq93 Korea IT Developer Cooperative ķ•œźµ­ ģ•„ģ“ķ‹° (IT) ź°œė°œģž ķ˜‘ė™ ģ”°ķ•©'),
(68986, 'https://ror.org/04q1k6w98', 'no_lang_code', 1, 'https://ror.org/04q1k6w98 ATM PP (Poland)'),
(68987, 'https://ror.org/04q38p245', 'en', 1, 'https://ror.org/04q38p245 Restore'),
(68988, 'https://ror.org/04q4xms21', 'en', 1, 'https://ror.org/04q4xms21 Independent Expert Consulting Board to Promote Scientific Research Activity in Kazakhstan ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½Š“Š°Ņ“Ń‹ ғылыми-Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ қызметін Š“Š°Š¼Ń‹Ń‚ŃƒŅ“Š° арналған Ń‚Ó™ŃƒŠµŠ»ŃŃ–Š· сараптамалық кеңес Š±ŠµŃ€Ńƒ кеңесі'),
(68989, 'https://ror.org/04q50hn29', 'no_lang_code', 1, 'https://ror.org/04q50hn29 Whipsmart Media (Ireland)'),
(68990, 'https://ror.org/04q57k124', 'en', 1, 'https://ror.org/04q57k124 Hong Kong New Generation Cultural Association é¦™ęøÆę–°äø€ä»£ę–‡åŒ–å”ęœƒ'),
(68991, 'https://ror.org/04q586p77', 'en', 1, 'https://ror.org/04q586p77 Choonhae College of Health Sciences ģ¶©ķ•“ 걓강 과학 ėŒ€ķ•™'),
(68992, 'https://ror.org/04q6c1q57', 'en', 1, 'https://ror.org/04q6c1q57 Shandong Academy of Pharmaceutical Sciences å±±äøœēœčÆå­¦ē§‘å­¦é™¢'),
(68993, 'https://ror.org/04q9fd590', 'en', 1, 'https://ror.org/04q9fd590 British Council'),
(68994, 'https://ror.org/04qbrde71', 'en', 1, 'https://ror.org/04qbrde71 Siberian Research Institute of Mechanization and Electrification of Agriculture Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Šø ŃŠ»ŠµŠŗŃ‚Ń€ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(68995, 'https://ror.org/04qbvap43', 'en', 1, 'https://ror.org/04qbvap43 Future Earth'),
(68996, 'https://ror.org/04qbxvw09', 'no_lang_code', 1, 'https://ror.org/04qbxvw09 MAMA-86'),
(68997, 'https://ror.org/04qc4xv44', 'en', 1, 'https://ror.org/04qc4xv44 Institute for Strategic Dialogue'),
(68998, 'https://ror.org/04qd74z60', 'en', 1, 'https://ror.org/04qd74z60 Society for Personality Assessment'),
(68999, 'https://ror.org/04qgd6703', 'no_lang_code', 1, 'https://ror.org/04qgd6703 Hyundai Engineering (South Korea) ķ˜„ėŒ€ģ—”ģ§€ė‹ˆģ–“ė§'),
(69000, 'https://ror.org/04qh86j58', 'en', 1, 'https://ror.org/04qh86j58 Korean Association Of Science and Technology Studies ķ•œźµ­ 과학 기술 ķ•™ķšŒ'),
(69001, 'https://ror.org/04qhq0392', 'no_lang_code', 1, 'https://ror.org/04qhq0392 D.V.Efremov Institute of Electrophysical Apparatus (Russia)'),
(69002, 'https://ror.org/04qkwfk36', 'en', 1, 'https://ror.org/04qkwfk36 Icelandic Transport Authority SamgƶngurƔưuneytiư'),
(69003, 'https://ror.org/04qn48008', 'no_lang_code', 1, 'https://ror.org/04qn48008 BioSense Institute'),
(69004, 'https://ror.org/04qnq8c95', 'en', 1, 'https://ror.org/04qnq8c95 Korean Social Theory Association ķ•œźµ­ģ‚¬ķšŒģ“ė” ķ•™ķšŒ'),
(69005, 'https://ror.org/04qpssw85', 'en', 1, 'https://ror.org/04qpssw85 State Research Center of the Russian Federation Š¦ŠŠ˜Š˜ Электроприбор'),
(69006, 'https://ror.org/04qq4mg80', 'no_lang_code', 1, 'https://ror.org/04qq4mg80 ITC (India)'),
(69007, 'https://ror.org/04qs09z04', 'en', 1, 'https://ror.org/04qs09z04 Florida Certification Board'),
(69008, 'https://ror.org/04qtsfp18', 'no_lang_code', 1, 'https://ror.org/04qtsfp18 Inteco (Poland)'),
(69009, 'https://ror.org/04r0s7h58', 'en', 1, 'https://ror.org/04r0s7h58 Korean Society for Western Medieval History ķ•œźµ­ ģ„œģ–‘ 중세사 ķ•™ķšŒ'),
(69010, 'https://ror.org/04r2ex566', 'no_lang_code', 1, 'https://ror.org/04r2ex566 Cypress (China)'),
(69011, 'https://ror.org/04r3bfv41', 'en', 1, 'https://ror.org/04r3bfv41 Native Women''s Shelter of Montreal'),
(69012, 'https://ror.org/04r3tf602', 'no_lang_code', 1, 'https://ror.org/04r3tf602 Joshua Mqabuko Nkomo Polytechnic'),
(69013, 'https://ror.org/04r4vyn58', 'no_lang_code', 1, 'https://ror.org/04r4vyn58 State Scientific - Research Institute of Chemical Products (Russia) Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химических ŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š²'),
(69014, 'https://ror.org/04r6pf442', 'no_lang_code', 1, 'https://ror.org/04r6pf442 Logital (China)'),
(69015, 'https://ror.org/04r85yt40', 'no_lang_code', 1, 'https://ror.org/04r85yt40 Cojac (United Kingdom)'),
(69016, 'https://ror.org/04r9c8c47', 'en', 1, 'https://ror.org/04r9c8c47 Hong Kong Computer Society'),
(69017, 'https://ror.org/04rafa332', 'en', 1, 'https://ror.org/04rafa332 Institut za tehnologiju nuklearnih i drugih mineralnih sirovina Institute for Technology of Nuclear and other Mineral Raw Materials'),
(69018, 'https://ror.org/04re28h79', 'en', 1, 'https://ror.org/04re28h79 Shaanxi Institute of International Trade & Commerce 陕脿国际商蓸学院'),
(69019, 'https://ror.org/04rezdf48', 'no_lang_code', 1, 'https://ror.org/04rezdf48 Dycotec Materials (United Kingdom)'),
(69020, 'https://ror.org/04rf2w592', 'fr', 1, 'https://ror.org/04rf2w592 Sercovie'),
(69021, 'https://ror.org/04rg8xb30', 'en', 1, 'https://ror.org/04rg8xb30 American Institute of Mining, Metallurgical, and Petroleum Engineers'),
(69022, 'https://ror.org/04rh1ph29', 'no_lang_code', 1, 'https://ror.org/04rh1ph29 Kompol (Poland)'),
(69023, 'https://ror.org/04rhf8d87', 'fr', 1, 'https://ror.org/04rhf8d87 CancƩropƓle Nord-Ouest'),
(69024, 'https://ror.org/04rjcfg43', 'no_lang_code', 1, 'https://ror.org/04rjcfg43 Star Vision (China)'),
(69025, 'https://ror.org/04rnk3y84', 'en', 1, 'https://ror.org/04rnk3y84 All-Russian Scientific Research Institute of Experimental Veterinary Sciences. Ya.R. Kovalenko Š¤Š“Š‘ŠŠ£ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ ветеринарии им. ŠÆ.Š . Коваленко'),
(69026, 'https://ror.org/04rp1yr92', 'en', 1, 'https://ror.org/04rp1yr92 Yancheng Vocational Institute of Industry Technology ē›åŸŽå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(69027, 'https://ror.org/04rppdm80', 'en', 1, 'https://ror.org/04rppdm80 European and American Osteosarcoma Study Group'),
(69028, 'https://ror.org/04rt77q92', 'no_lang_code', 1, 'https://ror.org/04rt77q92 Eaton (Ireland)'),
(69029, 'https://ror.org/04rttan30', 'no_lang_code', 1, 'https://ror.org/04rttan30 Tech Pro (China)'),
(69030, 'https://ror.org/04rv2he23', 'no_lang_code', 1, 'https://ror.org/04rv2he23 G''s Fresh (United Kingdom)'),
(69031, 'https://ror.org/04rveb346', 'no_lang_code', 1, 'https://ror.org/04rveb346 China State Shipbuilding (China) äø­å›½čˆ¹čˆ¶å·„äøšé›†å›¢å…¬åø'),
(69032, 'https://ror.org/04rxxfz69', 'en', 1, 'https://ror.org/04rxxfz69 Genomics England'),
(69033, 'https://ror.org/04s0cpt97', 'en', 1, 'https://ror.org/04s0cpt97 Latin American Studies Association of Korea ķ•œźµ­ė¼ķ‹“ģ•„ė©”ė¦¬ģ¹“ķ•™ķšŒ'),
(69034, 'https://ror.org/04s1wfe13', 'en', 1, 'https://ror.org/04s1wfe13 Jewish Historical Institute Żydowski Instytut Historyczny im. Emanuela Ringelbluma'),
(69035, 'https://ror.org/04s21va03', 'en', 1, 'https://ror.org/04s21va03 Mythopoeic Society'),
(69036, 'https://ror.org/04s3ttr38', 'no_lang_code', 1, 'https://ror.org/04s3ttr38 Maspex (Poland)'),
(69037, 'https://ror.org/04s4yxp35', 'es', 1, 'https://ror.org/04s4yxp35 Asociación de InformÔticos del Uruguay'),
(69038, 'https://ror.org/04s5hmf73', 'en', 1, 'https://ror.org/04s5hmf73 The Hunterian'),
(69039, 'https://ror.org/04s5pra58', 'no_lang_code', 1, 'https://ror.org/04s5pra58 NestlƩ (India)'),
(69040, 'https://ror.org/04s69jg60', 'en', 1, 'https://ror.org/04s69jg60 International Organisation for Knowledge Economy and Enterprise Development'),
(69041, 'https://ror.org/04s8r5v20', 'no_lang_code', 1, 'https://ror.org/04s8r5v20 Alvogen (South Korea)'),
(69042, 'https://ror.org/04sbhzq93', 'en', 1, 'https://ror.org/04sbhzq93 China Nonferrous Metals Changsha Investigation Design Institute äø­å›½ęœ‰č‰²é‡‘å±žé•æę²™å‹˜åÆŸč®¾č®”é™¢'),
(69043, 'https://ror.org/04sbmz064', 'no_lang_code', 1, 'https://ror.org/04sbmz064 BH Consulting (Ireland)'),
(69044, 'https://ror.org/04sbx8232', 'en', 1, 'https://ror.org/04sbx8232 Shanghai Research Institute of Materials äøŠęµ·ęę–™ē ”ē©¶ę‰€'),
(69045, 'https://ror.org/04sbypa54', 'no_lang_code', 1, 'https://ror.org/04sbypa54 Tsinghua Holdings (China) ęø…åŽęŽ§č‚”ęœ‰é™å…¬åø'),
(69046, 'https://ror.org/04scxn396', 'hu', 1, 'https://ror.org/04scxn396 KƶzbeszerzĆ©si Ć©s EllĆ”tĆ”si FőigazgatósĆ”g'),
(69047, 'https://ror.org/04sdv1b42', 'no_lang_code', 1, 'https://ror.org/04sdv1b42 JSpectrum (China)'),
(69048, 'https://ror.org/04sfxnf28', 'no_lang_code', 1, 'https://ror.org/04sfxnf28 Active Text (Poland)'),
(69049, 'https://ror.org/04sgnw557', 'no_lang_code', 1, 'https://ror.org/04sgnw557 Novartis (Ireland)'),
(69050, 'https://ror.org/04sgsjj39', 'en', 1, 'https://ror.org/04sgsjj39 Korean Society for the Study of Social Education ķ•œźµ­ ģ‚¬ķšŒ 교윔 ķ•™ķšŒ'),
(69051, 'https://ror.org/04shyvf77', 'no_lang_code', 1, 'https://ror.org/04shyvf77 Amalyst (United Kingdom)'),
(69052, 'https://ror.org/04sjk7a65', 'no_lang_code', 1, 'https://ror.org/04sjk7a65 LinkedTech Solutions (China)'),
(69053, 'https://ror.org/04skrt813', 'en', 1, 'https://ror.org/04skrt813 Gwynedd Council'),
(69054, 'https://ror.org/04skssb35', 'en', 1, 'https://ror.org/04skssb35 The Federal State Budgetary Scientific Institution "Izmerov Research Institute of Occupational Health" Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицины Ń‚Ń€ŃƒŠ“Š° имени акаГемика Š.Ф. Š˜Š·Š¼ŠµŃ€Š¾Š²Š°Ā»'),
(69055, 'https://ror.org/04smcbj26', 'en', 1, 'https://ror.org/04smcbj26 Council of Educators in Landscape Architecture'),
(69056, 'https://ror.org/04smgsr53', 'en', 1, 'https://ror.org/04smgsr53 Canal and River Trust'),
(69057, 'https://ror.org/04spkws63', 'no_lang_code', 1, 'https://ror.org/04spkws63 Botamedi (South Korea)'),
(69058, 'https://ror.org/04sqtxy36', 'en', 1, 'https://ror.org/04sqtxy36 Research Institute "Quantum" ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŠ²Š°Š½Ń‚'),
(69059, 'https://ror.org/04stpnd16', 'ro', 1, 'https://ror.org/04stpnd16 Institutul de Cercetari Biologice Cluj-Napoca'),
(69060, 'https://ror.org/04stwsr82', 'fr', 1, 'https://ror.org/04stwsr82 Agence pour la Promotion de la CrƩation Industrielle'),
(69061, 'https://ror.org/04sx9wp33', 'en', 1, 'https://ror.org/04sx9wp33 CSIRO Manufacturing'),
(69062, 'https://ror.org/04sy98p67', 'en', 1, 'https://ror.org/04sy98p67 Lishui Academy of Agricultural Sciences'),
(69063, 'https://ror.org/04syg0e16', 'en', 1, 'https://ror.org/04syg0e16 Nederlands Instituut voor Meerpartijendemocratie Netherlands Institute for Multiparty Democracy'),
(69064, 'https://ror.org/04t17k048', 'en', 1, 'https://ror.org/04t17k048 Society for Korean Ancient History ķ•œźµ­ ź³ ėŒ€ģ‚¬ ķ•™ķšŒ'),
(69065, 'https://ror.org/04t5t5q13', 'en', 1, 'https://ror.org/04t5t5q13 State of Ohio Board of Pharmacy'),
(69066, 'https://ror.org/04t7p9y73', 'no_lang_code', 1, 'https://ror.org/04t7p9y73 (ģž¬)ķ¬ķ•­ķ…Œķ¬ė…øķŒŒķ¬ Pohang TechnoPark (South Korea)'),
(69067, 'https://ror.org/04t7q4g45', 'no_lang_code', 1, 'https://ror.org/04t7q4g45 Andrychowska Fabryka Maszyn DEFUM (Poland)'),
(69068, 'https://ror.org/04t8zgm64', 'no_lang_code', 1, 'https://ror.org/04t8zgm64 BAIC Motor (China)'),
(69069, 'https://ror.org/04t98sb97', 'en', 1, 'https://ror.org/04t98sb97 Daejeon Technopark ėŒ€ģ „ķ…Œķ¬ė…øķŒŒķ¬'),
(69070, 'https://ror.org/04tadm242', 'en', 1, 'https://ror.org/04tadm242 Korean Association of Geography and Environmental Education ķ•œźµ­ģ§€ė¦¬ķ™˜ź²½źµģœ”ķ•™ķšŒ'),
(69071, 'https://ror.org/04tdzkh55', 'en', 1, 'https://ror.org/04tdzkh55 The Korean Society for the Study of Elementary Education ķ•œźµ­ģ“ˆė“±źµģœ”ķ•™ķšŒ'),
(69072, 'https://ror.org/04th5gf24', 'no_lang_code', 1, 'https://ror.org/04th5gf24 China Nerin Engineering (China)'),
(69073, 'https://ror.org/04thcs884', 'en', 1, 'https://ror.org/04thcs884 Korean Society of Modern Philosophy ģ„œģ–‘ź·¼ėŒ€ģ² ķ•™ķšŒ'),
(69074, 'https://ror.org/04tkgz835', 'en', 1, 'https://ror.org/04tkgz835 Agricultural Engineering Precision Innovation Centre'),
(69075, 'https://ror.org/04tmm4t39', 'en', 1, 'https://ror.org/04tmm4t39 Creative Carbon Scotland'),
(69076, 'https://ror.org/04trmce08', 'no_lang_code', 1, 'https://ror.org/04trmce08 Energy Delivery Solutions (United States)'),
(69077, 'https://ror.org/04ttbbx73', 'no_lang_code', 1, 'https://ror.org/04ttbbx73 Innovation Team (China) å‰µę–°åœ˜éšŠęœ‰é™å…¬åø'),
(69078, 'https://ror.org/04tttpd30', 'no_lang_code', 1, 'https://ror.org/04tttpd30 Changhong (China) å››å·é•æč™¹ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(69079, 'https://ror.org/04ttwb316', 'en', 1, 'https://ror.org/04ttwb316 Northwest Research Institute of Chemical Industry č„æåŒ—åŒ–å·„ē ”ē©¶é™¢'),
(69080, 'https://ror.org/04tv6gw72', 'en', 1, 'https://ror.org/04tv6gw72 Hyundai Research Institute ķ˜„ėŒ€ź²½ģ œģ—°źµ¬ģ›'),
(69081, 'https://ror.org/04twmwz92', 'en', 1, 'https://ror.org/04twmwz92 Korean Association for Religious Education ķ•œźµ­ 종교 교윔 ķ˜‘ķšŒ'),
(69082, 'https://ror.org/04txdsx22', 'de', 1, 'https://ror.org/04txdsx22 Allgemeiner Deutscher Fahrrad-Club'),
(69083, 'https://ror.org/04ty5pz05', 'en', 1, 'https://ror.org/04ty5pz05 Jiangsu Provincial Academy of Forestry Science and Management ę±Ÿč‹ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(69084, 'https://ror.org/04ty7jx71', 'en', 1, 'https://ror.org/04ty7jx71 Kalawati Saran Children''s Hospital'),
(69085, 'https://ror.org/04tz2xx73', 'no_lang_code', 1, 'https://ror.org/04tz2xx73 Nutanix (United States)'),
(69086, 'https://ror.org/04v15r068', 'no_lang_code', 1, 'https://ror.org/04v15r068 Shin Poong Pharm (South Korea) ģ‹ ķ’ģ œģ•½ģ£¼ģ‹ķšŒģ‚¬'),
(69087, 'https://ror.org/04v3ce875', 'en', 1, 'https://ror.org/04v3ce875 ICAR-Indian Institute of Maize Research'),
(69088, 'https://ror.org/04v6xjb97', 'en', 1, 'https://ror.org/04v6xjb97 The Society of Philosophical Studies ģ² ķ•™ģ—°źµ¬ķšŒ'),
(69089, 'https://ror.org/04v9w1q77', 'no_lang_code', 1, 'https://ror.org/04v9w1q77 Kraft Heinz (India)'),
(69090, 'https://ror.org/04vazsk69', 'en', 1, 'https://ror.org/04vazsk69 Carbon Capture & Storage Association'),
(69091, 'https://ror.org/04vbm7a71', 'en', 1, 'https://ror.org/04vbm7a71 Nederlands Instituut voor Internationale Betrekkingen Clingendael Netherlands Institute of International Relations Clingendael'),
(69092, 'https://ror.org/04vbsjz82', 'en', 1, 'https://ror.org/04vbsjz82 Danish Ministry of Children and Education Undervisningsministeriet'),
(69093, 'https://ror.org/04vccma76', 'en', 1, 'https://ror.org/04vccma76 Korea Advanced Nano Fab Center ķ•œźµ­ ź³ źø‰ ė‚˜ė…ø 팹 센터'),
(69094, 'https://ror.org/04vdhyw52', 'en', 1, 'https://ror.org/04vdhyw52 All-Russian Scientific Research Institute of high-frequency currents named after VP Vologdin ā€œŠ’ŃŠµŃ€Š¾ŃŃŠøŠ¹ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ токов высокой Ń‡Š°ŃŃ‚Š¾Ń‚Ń‹ā€ им. Š’.П. ВологГина'),
(69095, 'https://ror.org/04veg0s53', 'en', 1, 'https://ror.org/04veg0s53 International Institute for Information Design'),
(69096, 'https://ror.org/04vg0e805', 'en', 1, 'https://ror.org/04vg0e805 The Polis Project'),
(69097, 'https://ror.org/04vgmy976', 'en', 1, 'https://ror.org/04vgmy976 Russian Scientific Center "Applied Chemistry" Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ā«ŠŸŃ€ŠøŠŗŠ»Š°Š“Š½Š°Ń Ń…ŠøŠ¼ŠøŃĀ»'),
(69098, 'https://ror.org/04vje9y05', 'en', 1, 'https://ror.org/04vje9y05 Research Institute of Development and Operation of oil-field Pipes ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ разработки Šø ŃŠŗŃŠæŠ»ŃƒŠ°Ń‚Š°Ń†ŠøŠø OCTG'),
(69099, 'https://ror.org/04vkaka98', 'en', 1, 'https://ror.org/04vkaka98 Ministry of Foreign Affairs ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ закорГонних справ України'),
(69100, 'https://ror.org/04vkyz392', 'en', 1, 'https://ror.org/04vkyz392 Hangzhou Special Equipment Inspection and Research Institute ę­å·žåø‚ē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(69101, 'https://ror.org/04vm99k83', 'en', 1, 'https://ror.org/04vm99k83 Ministerul Tineretului şi Sportului Ministry of Youth and Sports'),
(69102, 'https://ror.org/04vmegd74', 'en', 1, 'https://ror.org/04vmegd74 Shanghai Landscape Architectural Design Research institute äøŠęµ·å›­ęž—å»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(69103, 'https://ror.org/04vncya87', 'no_lang_code', 1, 'https://ror.org/04vncya87 Laterit Productions (France)'),
(69104, 'https://ror.org/04vptn707', 'en', 1, 'https://ror.org/04vptn707 Shanghai Institute of Quality Inspection and Technical Research äøŠęµ·åø‚č“Øé‡ē›‘ē£ę£€éŖŒęŠ€ęœÆē ”ē©¶é™¢'),
(69105, 'https://ror.org/04vpw5755', 'en', 1, 'https://ror.org/04vpw5755 Heilongjiang Institute of Wood Science é»‘é¾™ę±ŸēœęœØęē§‘å­¦ē ”ē©¶ę‰€'),
(69106, 'https://ror.org/04vq10619', 'no_lang_code', 1, 'https://ror.org/04vq10619 Analytics Engines (United Kingdom)'),
(69107, 'https://ror.org/04vrkaw11', 'en', 1, 'https://ror.org/04vrkaw11 Jiangxi Institute of Red Soil ę±Ÿč„æēœēŗ¢å£¤ē ”ē©¶ę‰€'),
(69108, 'https://ror.org/04vrn7932', 'en', 1, 'https://ror.org/04vrn7932 Hunan Software Vocational Institute ę¹–å—č½Æä»¶čŒäøšå­¦é™¢'),
(69109, 'https://ror.org/04vrwc094', 'no_lang_code', 1, 'https://ror.org/04vrwc094 Biome Technologies (United Kingdom)'),
(69110, 'https://ror.org/04vs0j422', 'en', 1, 'https://ror.org/04vs0j422 Hospice UK'),
(69111, 'https://ror.org/04vsybf69', 'no_lang_code', 1, 'https://ror.org/04vsybf69 ADGS (Qatar)'),
(69112, 'https://ror.org/04vv86192', 'en', 1, 'https://ror.org/04vv86192 Doncaster Council'),
(69113, 'https://ror.org/04vv9sb16', 'no_lang_code', 1, 'https://ror.org/04vv9sb16 Lasertex (Poland)'),
(69114, 'https://ror.org/04vvag751', 'en', 1, 'https://ror.org/04vvag751 Sichuan Food Fermentation Industry Research and Design Institute å››å·ēœé£Ÿå“å‘é…µå·„äøšē ”ē©¶č®¾č®”é™¢'),
(69115, 'https://ror.org/04vvqct18', 'en', 1, 'https://ror.org/04vvqct18 Cancer Clinical Research Trust'),
(69116, 'https://ror.org/04vw91v95', 'no_lang_code', 1, 'https://ror.org/04vw91v95 Cheongam College ģ²­ģ•”ėŒ€ķ•™źµ'),
(69117, 'https://ror.org/04vwkmg79', 'en', 1, 'https://ror.org/04vwkmg79 Child Development Center Ł…Ų±ŁƒŲ² ŲŖŁ†Ł…ŁŠŲ© الأطفال'),
(69118, 'https://ror.org/04vxnz547', 'en', 1, 'https://ror.org/04vxnz547 (주)ķ•œźµ­ģœ ķ†µź³¼ķ•™ģ—°źµ¬ģ†Œ Korea Distribution Science Institute'),
(69119, 'https://ror.org/04vyg0r47', 'no_lang_code', 1, 'https://ror.org/04vyg0r47 Criteo (France)'),
(69120, 'https://ror.org/04w19j463', 'en', 1, 'https://ror.org/04w19j463 European Alliance Against Depression'),
(69121, 'https://ror.org/04w1svb78', 'no_lang_code', 1, 'https://ror.org/04w1svb78 Brother International (United Kingdom)'),
(69122, 'https://ror.org/04w38db16', 'no_lang_code', 1, 'https://ror.org/04w38db16 Inca Digital Printers (United Kingdom)'),
(69123, 'https://ror.org/04w38zs89', 'no_lang_code', 1, 'https://ror.org/04w38zs89 Tver Wagon Building Institute (Russia) ŠŠ°ŃƒŃ‡Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ «Тверской ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ каретки»'),
(69124, 'https://ror.org/04w3zk015', 'no_lang_code', 1, 'https://ror.org/04w3zk015 IDEXX Laboratories (France)'),
(69125, 'https://ror.org/04w41nt03', 'no_lang_code', 1, 'https://ror.org/04w41nt03 Kalloc Studios (China)'),
(69126, 'https://ror.org/04w4yzw62', 'no_lang_code', 1, 'https://ror.org/04w4yzw62 Fujitsu (China)'),
(69127, 'https://ror.org/04w54p329', 'en', 1, 'https://ror.org/04w54p329 International College of Nutrition ą¤‡ą¤‚ą¤Ÿą¤°ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ़ ą¤Øą„ą¤¤ą„ą¤°ą¤æą¤¤ą¤æą¤“ą¤‚'),
(69128, 'https://ror.org/04w5hf447', 'en', 1, 'https://ror.org/04w5hf447 Future Early Childhood Education Society ėÆøėž˜ģœ ģ•„źµģœ”ķ•™ķšŒ'),
(69129, 'https://ror.org/04w5qyg24', 'en', 1, 'https://ror.org/04w5qyg24 Maryland Emergency Management Agency'),
(69130, 'https://ror.org/04w6b5d66', 'no_lang_code', 1, 'https://ror.org/04w6b5d66 Informatica Qatar (Qatar)'),
(69131, 'https://ror.org/04w6mhj60', 'no_lang_code', 1, 'https://ror.org/04w6mhj60 JSM Technology Korea (South Korea) ģ œģ“ģ—ģŠ¤ģ— ķ…Œķ¬ė†€ėŸ¬ģ§€ģ½”ė¦¬ģ•„'),
(69132, 'https://ror.org/04wbhnv17', 'no_lang_code', 1, 'https://ror.org/04wbhnv17 Aptcore (United Kingdom)'),
(69133, 'https://ror.org/04wgdr728', 'en', 1, 'https://ror.org/04wgdr728 Guangzhou Research Institute of Synthetic Materials'),
(69134, 'https://ror.org/04wgf7387', 'no_lang_code', 1, 'https://ror.org/04wgf7387 Beijing Building Construction Research Institute (China) åŒ—äŗ¬å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(69135, 'https://ror.org/04wgrw793', 'en', 1, 'https://ror.org/04wgrw793 All-Russian Scientific Research Institute of Radio Engineering Всероссийский ŠŠ˜Š˜ РаГиотехники'),
(69136, 'https://ror.org/04wm6mg86', 'en', 1, 'https://ror.org/04wm6mg86 Private Capital Research Institute'),
(69137, 'https://ror.org/04wmbjv17', 'en', 1, 'https://ror.org/04wmbjv17 Seoul Sleep Center ģ„œģšøģˆ˜ė©“ķ“ė¦¬ė‹‰'),
(69138, 'https://ror.org/04wmqsp35', 'no_lang_code', 1, 'https://ror.org/04wmqsp35 The Ural Scientific-Research Institute of Architecture and Construction (Russia)'),
(69139, 'https://ror.org/04wmrj902', 'no_lang_code', 1, 'https://ror.org/04wmrj902 Guangdong Baiyun University ź“‘ė™ė°±ģš“ėŒ€ķ•™źµėŠ”'),
(69140, 'https://ror.org/04wqtzp08', 'no_lang_code', 1, 'https://ror.org/04wqtzp08 Henan Provincial Institute of Communications Planning Survey & Design (China) ę²³å—ēœäŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(69141, 'https://ror.org/04wsa7713', 'en', 1, 'https://ror.org/04wsa7713 All-Russian Scientific-Research Institute Of Mineral Resources named after N.M. Fedorovsky Всероссийский ŠŠ˜Š˜ Š¼ŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ сырья имени Š. М. ФеГоровского'),
(69142, 'https://ror.org/04wtt0690', 'no_lang_code', 1, 'https://ror.org/04wtt0690 Suzhou Institute of Building Science Group (China) č‹å·žåø‚å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(69143, 'https://ror.org/04wyd3784', 'en', 1, 'https://ror.org/04wyd3784 Philosophy Of Education Society Of Korea ķ•œźµ­ 교윔 ģ² ķ•™ķšŒ'),
(69144, 'https://ror.org/04x5g9003', 'en', 1, 'https://ror.org/04x5g9003 Hong Kong Plastics Manufacturers Association é¦™ęøÆå”‘č† ę„­å» å•†ęœ‰é™å…¬åø'),
(69145, 'https://ror.org/04x5v4156', 'en', 1, 'https://ror.org/04x5v4156 Korean Arabic Arabic Literature Society ģ•„ėžģ–“ ģ•„ėžģ–“ ė¬øķ•™ķšŒ'),
(69146, 'https://ror.org/04xbnb295', 'en', 1, 'https://ror.org/04xbnb295 Korean Elementary Art Education Association ķ•œźµ­ģ“ˆė“±ėÆøģˆ źµģœ”ķ•™ķšŒ'),
(69147, 'https://ror.org/04xe4ne75', 'en', 1, 'https://ror.org/04xe4ne75 Gouvernement de Maurice Government of Mauritius'),
(69148, 'https://ror.org/04xf9tg94', 'en', 1, 'https://ror.org/04xf9tg94 Sewerage Board of Limassol – Amathus Ī£Ļ…Ī¼Ī²ĪæĻĪ»Ī¹Īæ Ī‘Ļ€ĪæĻ‡ĪµĻ„ĪµĻĻƒĪµĻ‰Ī½ Ī›ĪµĪ¼ĪµĻƒĪæĻ - Ī‘Ī¼Ī±ĪøĪæĻĪ½Ļ„Ī±Ļ‚'),
(69149, 'https://ror.org/04xgx9819', 'en', 1, 'https://ror.org/04xgx9819 Krasnodar Research Institute of Fishery ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(69150, 'https://ror.org/04xhs0x67', 'no_lang_code', 1, 'https://ror.org/04xhs0x67 Beijing Survey and Design Institute (China) åŒ—äŗ¬åø‚å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢ęœ‰é™'),
(69151, 'https://ror.org/04xkyrk98', 'no_lang_code', 1, 'https://ror.org/04xkyrk98 OJSC VNIIST (Russia) Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Ńƒ Šø ŃŠŗŃŠæŠ»ŃƒŠ°Ń‚Š°Ń†ŠøŠø Ń‚Ń€ŃƒŠ±Š¾ŠæŃ€Š¾Š²Š¾Š“Š¾Š², Š¾Š±ŃŠŠµŠŗŃ‚Š¾Š²'),
(69152, 'https://ror.org/04xnk9j36', 'no_lang_code', 1, 'https://ror.org/04xnk9j36 Fujifilm (South Korea) ķ•œźµ­ķ›„ģ§€ķ•„ė¦„'),
(69153, 'https://ror.org/04xpgws89', 'no_lang_code', 1, 'https://ror.org/04xpgws89 Toshiba Mitsubishi-Electric Industrial Systems Corporation (Japan) ę±čŠäø‰č±é›»ę©Ÿē”£ę„­ć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(69154, 'https://ror.org/04xrcx824', 'no_lang_code', 1, 'https://ror.org/04xrcx824 NEC (China) ę—„ęœ¬é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(69155, 'https://ror.org/04xrq1760', 'en', 1, 'https://ror.org/04xrq1760 Jurong Jinghou Machinery Research Institute å„å®¹äŗ¬ä¾Æęœŗę¢°ē ”ē©¶ę‰€'),
(69156, 'https://ror.org/04xrvq619', 'en', 1, 'https://ror.org/04xrvq619 StoryCorps'),
(69157, 'https://ror.org/04xskva03', 'en', 1, 'https://ror.org/04xskva03 Maekyung Institute for Safety and Environment 매경 ģ•ˆģ „ķ™˜ź²½ģ—°źµ¬ģ›'),
(69158, 'https://ror.org/04xtdqy92', 'no_lang_code', 1, 'https://ror.org/04xtdqy92 Gumi Electronics & Information Technology Research Institute (South Korea) źµ¬ėÆøģ „ģžģ •ė³“źø°ģˆ ģ›'),
(69159, 'https://ror.org/04xxknx59', 'en', 1, 'https://ror.org/04xxknx59 Council on Health Research for Development'),
(69160, 'https://ror.org/04xxm7a37', 'en', 1, 'https://ror.org/04xxm7a37 Korea Association of Information Systems ķ•œźµ­ģ •ė³“ģ‹œģŠ¤ķ…œķ•™ķšŒ'),
(69161, 'https://ror.org/04xxxza58', 'en', 1, 'https://ror.org/04xxxza58 Wenzhou Institute of Technology Testing & Calibration ęø©å·žē†å·„å­¦é™¢ęµ‹čÆ•äøŽę ”å‡†'),
(69162, 'https://ror.org/04xytpa07', 'en', 1, 'https://ror.org/04xytpa07 European Council for an Energy Efficient Economy'),
(69163, 'https://ror.org/04xzvj604', 'no_lang_code', 1, 'https://ror.org/04xzvj604 Monaghan Biosciences (Ireland)'),
(69164, 'https://ror.org/04y08pq82', 'no_lang_code', 1, 'https://ror.org/04y08pq82 CCCC Wuhan Harbour Engineering Design and Research (China) 中交武汉港湾巄程设讔研究院'),
(69165, 'https://ror.org/04y0apy28', 'en', 1, 'https://ror.org/04y0apy28 The Korean Society for Early Childhood Education ķ•œźµ­ģœ ģ•„źµģœ”ķ•™ķšŒ'),
(69166, 'https://ror.org/04y3hfp43', 'en', 1, 'https://ror.org/04y3hfp43 Ministry of Agriculture of the Russian Federation ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Российской ФеГерации'),
(69167, 'https://ror.org/04y76yy92', 'no_lang_code', 1, 'https://ror.org/04y76yy92 Zheng yan Seed (China) éƒ‘ē‡•ē§å­'),
(69168, 'https://ror.org/04y85rv20', 'en', 1, 'https://ror.org/04y85rv20 Honam Archaeological Society ķ˜øė‚Øź³ ź³ ķ•™ķšŒ'),
(69169, 'https://ror.org/04y922n71', 'no_lang_code', 1, 'https://ror.org/04y922n71 Daiseung Medics (South Korea) ėŒ€ģŠ¹ģ˜ė£Œźø°źø°(주)'),
(69170, 'https://ror.org/04y9x6j75', 'en', 1, 'https://ror.org/04y9x6j75 All-Russian Research Geological Oil Institute Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефти'),
(69171, 'https://ror.org/04ya8jc69', 'en', 1, 'https://ror.org/04ya8jc69 All-Russian Research Institute of Agriculture and Soil Protection from erosion'),
(69172, 'https://ror.org/04yabfc65', 'en', 1, 'https://ror.org/04yabfc65 Gansu Institute of Mechanical and Electrical Technology ē”˜č‚ƒęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢ 地址'),
(69173, 'https://ror.org/04yajxs70', 'en', 1, 'https://ror.org/04yajxs70 Frank P Matthews'),
(69174, 'https://ror.org/04ye58e76', 'pl', 1, 'https://ror.org/04ye58e76 Instytut Europy Środkowo-Wschodniej'),
(69175, 'https://ror.org/04yek5g30', 'no_lang_code', 1, 'https://ror.org/04yek5g30 FSUE FNPTS NIIIS named after Yu.Sedakov (Russia)'),
(69176, 'https://ror.org/04yep8s05', 'no_lang_code', 1, 'https://ror.org/04yep8s05 Fujian Petrochemical Group (China) ē¦å»ŗēŸ³ę²¹åŒ–å·„é›†å›¢ęœ‰é™č“£ä»»å…¬åø'),
(69177, 'https://ror.org/04yfe8169', 'no_lang_code', 1, 'https://ror.org/04yfe8169 Mindray (China) ę·±åœ³čæˆē‘žē”Ÿē‰©åŒ»ē–—ē”µå­č‚”ä»½ęœ‰é™å…¬åø ē‰ˆęƒę‰€ęœ‰'),
(69178, 'https://ror.org/04yj3me46', 'no_lang_code', 1, 'https://ror.org/04yj3me46 Iljin Radiation Engineering (South Korea) ģ¼ģ§„ė°©ģ‚¬ģ„ ģ—”ģ§€ė‹ˆģ–“ė§'),
(69179, 'https://ror.org/04ymawg89', 'no_lang_code', 1, 'https://ror.org/04ymawg89 Ketonex (United Kingdom)'),
(69180, 'https://ror.org/04ynn1b95', 'en', 1, 'https://ror.org/04ynn1b95 Astronomy and Space'),
(69181, 'https://ror.org/04ynzkj24', 'no_lang_code', 1, 'https://ror.org/04ynzkj24 Blackboard (United States)'),
(69182, 'https://ror.org/04ypjrs34', 'en', 1, 'https://ror.org/04ypjrs34 National Supercomputing Center in Wuxi ę— é””å›½å®¶č¶…ēŗ§č®”ē®—äø­åæƒ'),
(69183, 'https://ror.org/04yq0fn97', 'no_lang_code', 1, 'https://ror.org/04yq0fn97 Yueyang Changling Equipment Research Institute (China) å²³é˜³é•æå²­č®¾å¤‡ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(69184, 'https://ror.org/04yq6yj22', 'no_lang_code', 1, 'https://ror.org/04yq6yj22 AgSpace (United Kingdom)'),
(69185, 'https://ror.org/04yr0q610', 'no_lang_code', 1, 'https://ror.org/04yr0q610 Chengdu Tiger Microwave Technology (China) ęˆéƒ½ę³°ę ¼å¾®ę³¢ęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(69186, 'https://ror.org/04yt00889', 'no_lang_code', 1, 'https://ror.org/04yt00889 Samsung (China) äø‰ę˜Ÿē”µå­äø­å›½'),
(69187, 'https://ror.org/04ytn9a85', 'no_lang_code', 1, 'https://ror.org/04ytn9a85 General Electric (Poland)'),
(69188, 'https://ror.org/04yvash73', 'en', 1, 'https://ror.org/04yvash73 International Commission on Non-Ionizing Radiation Protection'),
(69189, 'https://ror.org/04yvkkx28', 'en', 1, 'https://ror.org/04yvkkx28 Korean Educational Research Association ķ•œźµ­źµģœ”ķ•™ķšŒ'),
(69190, 'https://ror.org/04ywg4h07', 'en', 1, 'https://ror.org/04ywg4h07 Seoul Media Institute of Technology ģ„œģšøėÆøė””ģ–“ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(69191, 'https://ror.org/04ywpy664', 'no_lang_code', 1, 'https://ror.org/04ywpy664 Ekoinwentyka (Poland)'),
(69192, 'https://ror.org/04yydwx07', 'nl', 1, 'https://ror.org/04yydwx07 Ministerie van Volksgezondheid'),
(69193, 'https://ror.org/04yzwa804', 'no_lang_code', 1, 'https://ror.org/04yzwa804 Sega Sammy (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ć‚¬ć‚µćƒŸćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(69194, 'https://ror.org/04z0vgz60', 'en', 1, 'https://ror.org/04z0vgz60 Dhanvantari Ayurveda College Hospital and Research Centre'),
(69195, 'https://ror.org/04z11gw67', 'no_lang_code', 1, 'https://ror.org/04z11gw67 Fresenius Medical Care (India)'),
(69196, 'https://ror.org/04z1ghe08', 'en', 1, 'https://ror.org/04z1ghe08 Korean Publishing Science Society ķ•œźµ­ 출판 ķ•™ķšŒ'),
(69197, 'https://ror.org/04z27kp43', 'no_lang_code', 1, 'https://ror.org/04z27kp43 Juthis (South Korea)'),
(69198, 'https://ror.org/04z3rz137', 'no_lang_code', 1, 'https://ror.org/04z3rz137 ANKO (Greece) Αναπτυξιακή Δυτικής ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(69199, 'https://ror.org/04z4aan47', 'en', 1, 'https://ror.org/04z4aan47 FƩdƩration Internationale de MƩdecine du Sport International Federation of Sports Medicine'),
(69200, 'https://ror.org/04z4hje09', 'en', 1, 'https://ror.org/04z4hje09 Early Childhood Ireland'),
(69201, 'https://ror.org/04z4kzf83', 'no_lang_code', 1, 'https://ror.org/04z4kzf83 A.P. Krylov All-Russian Oil and Gas Research Institute (Russia) Акционерное общество «Всероссийский нефтегазовый Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени акаГемика А.П. ŠšŃ€Ń‹Š»Š¾Š²Š°Ā»'),
(69202, 'https://ror.org/04z4pf693', 'en', 1, 'https://ror.org/04z4pf693 Sholem Aleichem Amur State University ŠŸŃ€ŠøŠ°Š¼ŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шолом-Алейхема'),
(69203, 'https://ror.org/04z6dh903', 'no_lang_code', 1, 'https://ror.org/04z6dh903 Wonkwang Pharmaceutical (South Korea) ģ›ź“‘ģ œģ•½'),
(69204, 'https://ror.org/04z77bq11', 'no_lang_code', 1, 'https://ror.org/04z77bq11 Pieta House'),
(69205, 'https://ror.org/04z9e1z18', 'en', 1, 'https://ror.org/04z9e1z18 Scientific Research Institute of Industrial Television Rastr ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š³Š¾ Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ Растр'),
(69206, 'https://ror.org/04z9hzj86', 'no_lang_code', 1, 'https://ror.org/04z9hzj86 Jeil Pharmaceutical (South Korea) ģ œģ¼ģ•½ķ’ˆ ģ£¼ģ‹ķšŒģ‚¬'),
(69207, 'https://ror.org/04zg20k47', 'en', 1, 'https://ror.org/04zg20k47 Public.Resource.Org'),
(69208, 'https://ror.org/04zh2hd39', 'no_lang_code', 1, 'https://ror.org/04zh2hd39 Yunnan Investment Group (China) äŗ‘ęŠ•é›†å›¢'),
(69209, 'https://ror.org/04zhz8n61', 'en', 1, 'https://ror.org/04zhz8n61 Hong Kong Optical Manufacturers Association é¦™ęøÆå…‰å­¦åˆ¶é€ å•†åä¼š'),
(69210, 'https://ror.org/04zjdjq28', 'no_lang_code', 1, 'https://ror.org/04zjdjq28 Hutchinson (United Kingdom)'),
(69211, 'https://ror.org/04zk0zd97', 'en', 1, 'https://ror.org/04zk0zd97 Georgia Department of Juvenile Justice'),
(69212, 'https://ror.org/04zpnp088', 'en', 1, 'https://ror.org/04zpnp088 Southern States Energy Board'),
(69213, 'https://ror.org/04zpwwx37', 'en', 1, 'https://ror.org/04zpwwx37 Korean Brecht Society ķ•œźµ­ėøŒė ˆķžˆķŠøķ•™ķšŒ'),
(69214, 'https://ror.org/04zr3n007', 'no_lang_code', 1, 'https://ror.org/04zr3n007 Green Energy Engineering Consultancy (China)'),
(69215, 'https://ror.org/04zrq7c15', 'en', 1, 'https://ror.org/04zrq7c15 Ministria e Financave dhe Ekonomisƫ Ministry of Finance'),
(69216, 'https://ror.org/04zsrq347', 'en', 1, 'https://ror.org/04zsrq347 St. Paul''s Co-educational College č–äæē¾…ē”·å„³äø­å­ø'),
(69217, 'https://ror.org/04ztb5g16', 'no_lang_code', 1, 'https://ror.org/04ztb5g16 Shanxi Provincial Institute of Chemical Industry (China) å±±č„æēœåŒ–å·„ē ”ē©¶ę‰€');
INSERT INTO `rors` VALUES
(69218, 'https://ror.org/04zv3rp09', 'en', 1, 'https://ror.org/04zv3rp09 Shenzhen Academy of Metrology and Quality Inspection ę·±åœ³åø‚č®”é‡č“Øé‡ę£€ęµ‹ē ”ē©¶é™¢'),
(69219, 'https://ror.org/04zvdhe55', 'en', 1, 'https://ror.org/04zvdhe55 Institute of Nuclear Power Operations'),
(69220, 'https://ror.org/04zvt6r42', 'en', 1, 'https://ror.org/04zvt6r42 Outreach Scout Foundation'),
(69221, 'https://ror.org/04zw7qt81', 'no_lang_code', 1, 'https://ror.org/04zw7qt81 VNIIStrudormash (Russia) Š’ŠŠ˜Š˜ŃŃ‚Ń€Š¾Š¹Š“Š¾Ń€Š¼Š°Ńˆ'),
(69222, 'https://ror.org/04zxd7e56', 'en', 1, 'https://ror.org/04zxd7e56 Ministarstvo finansija-uprava carina Ministry of Finance and Economy'),
(69223, 'https://ror.org/04zxtq045', 'en', 1, 'https://ror.org/04zxtq045 Xiamen Nanyang University åŽ¦é—Øå—ę“‹å­¦é™¢'),
(69224, 'https://ror.org/04zyrd219', 'cs', 1, 'https://ror.org/04zyrd219 Agentura pro podporu podnikƔnƭ a investic, CzechInvest'),
(69225, 'https://ror.org/0503q8b31', 'no_lang_code', 1, 'https://ror.org/0503q8b31 II-VI (China)'),
(69226, 'https://ror.org/0505b0847', 'no_lang_code', 1, 'https://ror.org/0505b0847 Joyson Electronics (China) å‡čƒœē”µå­'),
(69227, 'https://ror.org/0506qpg95', 'no_lang_code', 1, 'https://ror.org/0506qpg95 Impedans (Ireland)'),
(69228, 'https://ror.org/050777m95', 'en', 1, 'https://ror.org/050777m95 Hebei Semiconductor Research Institute'),
(69229, 'https://ror.org/0507jm035', 'no_lang_code', 1, 'https://ror.org/0507jm035 Umbo Computer Vision (United Kingdom)'),
(69230, 'https://ror.org/05093ss78', 'no_lang_code', 1, 'https://ror.org/05093ss78 Lens Technology (China) č“ę€ē§‘ęŠ€'),
(69231, 'https://ror.org/050acz986', 'no_lang_code', 1, 'https://ror.org/050acz986 Gogo (United States)'),
(69232, 'https://ror.org/050bxqn58', 'en', 1, 'https://ror.org/050bxqn58 Xihu Institute of Electronic Research ę­å·žč„æę¹–ē”µå­ē ”ē©¶ę‰€'),
(69233, 'https://ror.org/050d32d16', 'no_lang_code', 1, 'https://ror.org/050d32d16 Hong Kong Telecommunications Limited (China)'),
(69234, 'https://ror.org/050f6zs19', 'en', 1, 'https://ror.org/050f6zs19 Krasnodar Research Institute of Agriculture named after P. Lukyanenko ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ ŠŠ˜Š˜ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° имени П. П. Š›ŃƒŠŗŃŒŃŠ½ŠµŠ½ŠŗŠ¾'),
(69235, 'https://ror.org/050g87e49', 'en', 1, 'https://ror.org/050g87e49 Henan Forestry Vocational College ę²³å—ęž—äøščŒäøšå­¦é™¢'),
(69236, 'https://ror.org/050gfgn67', 'en', 1, 'https://ror.org/050gfgn67 Institute of Lithuanian Literature and Folklore Lietuvių Literatūros ir Tautosakos Institutas'),
(69237, 'https://ror.org/050jrfq68', 'en', 1, 'https://ror.org/050jrfq68 Research Institute of Metallurgy Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠøĀ»'),
(69238, 'https://ror.org/050m8a892', 'en', 1, 'https://ror.org/050m8a892 Commodity Futures Trading Commission'),
(69239, 'https://ror.org/050r87w51', 'en', 1, 'https://ror.org/050r87w51 North Atlantic Salmon Conservation Organization'),
(69240, 'https://ror.org/050s4mf29', 'en', 1, 'https://ror.org/050s4mf29 Danish Nature Agency Naturstyrelsen'),
(69241, 'https://ror.org/050s80f40', 'en', 1, 'https://ror.org/050s80f40 Korea Agricultural Economics Association ķ•œźµ­ė†ģ—…ź²½ģ œķ•™ķšŒ'),
(69242, 'https://ror.org/050scpn75', 'en', 1, 'https://ror.org/050scpn75 Ural Scientific Research and Design Institute of Galurgy Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š°Š»ŃƒŃ€Š³ŠøŠø'),
(69243, 'https://ror.org/050skmv85', 'en', 1, 'https://ror.org/050skmv85 Ural research Institute of Phthisiopulmonology Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„Ń‚ŠøŠ·ŠøŠ¾ŠæŃƒŠ»ŃŒŠ¼Š¾Š½Š¾Š»Š¾Š³ŠøŠø'),
(69244, 'https://ror.org/050w2w956', 'no_lang_code', 1, 'https://ror.org/050w2w956 inStream Media (United States)'),
(69245, 'https://ror.org/050wsc124', 'en', 1, 'https://ror.org/050wsc124 Institute of Licensing'),
(69246, 'https://ror.org/050yrsr44', 'en', 1, 'https://ror.org/050yrsr44 All-Russian Scientific Research Institute of Confectionery Industry Š¤Š“Š‘ŠŠ£ Всероссийский ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŠ¾Š½Š“ŠøŃ‚ŠµŃ€ŃŠŗŠ¾Š¹ ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(69247, 'https://ror.org/0510xwc60', 'no_lang_code', 1, 'https://ror.org/0510xwc60 Oursky (China)'),
(69248, 'https://ror.org/05113d564', 'en', 1, 'https://ror.org/05113d564 Akademia Sztuki Wojennej War Studies Academy'),
(69249, 'https://ror.org/051451b66', 'no_lang_code', 1, 'https://ror.org/051451b66 Finima Innovations (China)'),
(69250, 'https://ror.org/0514g5649', 'no_lang_code', 1, 'https://ror.org/0514g5649 Bodle Technologies (United Kingdom)'),
(69251, 'https://ror.org/0515gyd10', 'no_lang_code', 1, 'https://ror.org/0515gyd10 Accoson (United Kingdom)'),
(69252, 'https://ror.org/0516brw47', 'en', 1, 'https://ror.org/0516brw47 Indian Institute of Wheat and Barley Research ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤—ą„‡ą¤¹ą„‚ą¤‚ और ą¤œą„Œ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(69253, 'https://ror.org/0516ekw41', 'en', 1, 'https://ror.org/0516ekw41 Federal Protective Service Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба охраны'),
(69254, 'https://ror.org/0517atn92', 'no_lang_code', 1, 'https://ror.org/0517atn92 (주)ģ‹¬ģœ  Symyoo'),
(69255, 'https://ror.org/0518zn197', 'en', 1, 'https://ror.org/0518zn197 International Commission on Radiation Units and Measurements'),
(69256, 'https://ror.org/051awps38', 'en', 1, 'https://ror.org/051awps38 Soongeui Women''s College ģˆ­ģ˜ģ—¬ģžėŒ€ķ•™źµ'),
(69257, 'https://ror.org/051b9ta18', 'no_lang_code', 1, 'https://ror.org/051b9ta18 SAIC Motor (China) äøŠę±½é›†å›¢'),
(69258, 'https://ror.org/051d61326', 'no_lang_code', 1, 'https://ror.org/051d61326 Tata Consulting Engineers (Qatar)'),
(69259, 'https://ror.org/051dx4d56', 'no_lang_code', 1, 'https://ror.org/051dx4d56 Bryant Symons Technologies (United Kingdom)'),
(69260, 'https://ror.org/051eb2f11', 'fr', 1, 'https://ror.org/051eb2f11 Centre Hospitalier de la DracƩnie'),
(69261, 'https://ror.org/051h3ee29', 'no_lang_code', 1, 'https://ror.org/051h3ee29 M-Gen Mobile Technology (China)'),
(69262, 'https://ror.org/051hnz082', 'no_lang_code', 1, 'https://ror.org/051hnz082 Silvapa (Portugal)'),
(69263, 'https://ror.org/051kc3x78', 'en', 1, 'https://ror.org/051kc3x78 Heze Academy of Agricultural Sciences čę³½å†œē§‘é™¢'),
(69264, 'https://ror.org/051mxsx19', 'no_lang_code', 1, 'https://ror.org/051mxsx19 SP Technology (South Korea) ģ—ģŠ¤ķ”¼ķ…'),
(69265, 'https://ror.org/051pt2g47', 'en', 1, 'https://ror.org/051pt2g47 Korean-German Vocational College ķ•œė…ģ§ģ—…ģ „ė¬øķ•™źµ'),
(69266, 'https://ror.org/051qgy342', 'no_lang_code', 1, 'https://ror.org/051qgy342 CDK Global (United States)'),
(69267, 'https://ror.org/051wgfj58', 'en', 1, 'https://ror.org/051wgfj58 Institute of Biological, Environmental and Rural Sciences'),
(69268, 'https://ror.org/051x0xg08', 'en', 1, 'https://ror.org/051x0xg08 Natura Foundation'),
(69269, 'https://ror.org/051xxew12', 'no_lang_code', 1, 'https://ror.org/051xxew12 Coship (China) ę·±åœ³åø‚åŒę“²ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(69270, 'https://ror.org/051y11y24', 'en', 1, 'https://ror.org/051y11y24 Justitiedepartementet Ministry of Justice'),
(69271, 'https://ror.org/051yzyq64', 'no_lang_code', 1, 'https://ror.org/051yzyq64 Techtra (Poland)'),
(69272, 'https://ror.org/0520y8c54', 'no_lang_code', 1, 'https://ror.org/0520y8c54 SverdNIIhimmash ДверГловский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химического Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(69273, 'https://ror.org/0522a8916', 'no_lang_code', 1, 'https://ror.org/0522a8916 Print-Rite (China) 天威 (å®‰ę·)'),
(69274, 'https://ror.org/0522zz544', 'en', 1, 'https://ror.org/0522zz544 Gorta Self Help Africa'),
(69275, 'https://ror.org/0526r9902', 'en', 1, 'https://ror.org/0526r9902 Kenya Forest Service'),
(69276, 'https://ror.org/0528jzf19', 'en', 1, 'https://ror.org/0528jzf19 Korean Association of French Language and Literature ķ•œźµ­ ė¶ˆģ–“ ķ•™ķšŒ'),
(69277, 'https://ror.org/0529ecj14', 'no_lang_code', 1, 'https://ror.org/0529ecj14 Institut für Solartechnologien (Germany)'),
(69278, 'https://ror.org/0529wwy54', 'en', 1, 'https://ror.org/0529wwy54 Institute of New Carbon Materials and Technologies'),
(69279, 'https://ror.org/052bj1e57', 'no_lang_code', 1, 'https://ror.org/052bj1e57 Contamac (United Kingdom)'),
(69280, 'https://ror.org/052bj9b74', 'en', 1, 'https://ror.org/052bj9b74 The Korean Ceramic Society ėŒ€ķ•œ ė„ģž ķ•™ķšŒ'),
(69281, 'https://ror.org/052fc5r55', 'en', 1, 'https://ror.org/052fc5r55 International Water Institute'),
(69282, 'https://ror.org/052gbj065', 'en', 1, 'https://ror.org/052gbj065 Mississippi Board of Pharmacy'),
(69283, 'https://ror.org/052h3h832', 'en', 1, 'https://ror.org/052h3h832 Guangxi Institute of Oceanography 广脿海擋研究所'),
(69284, 'https://ror.org/052hz8t89', 'en', 1, 'https://ror.org/052hz8t89 Lietuvos Istorijos Institutas Lithuanian Institute of History'),
(69285, 'https://ror.org/052qbca19', 'en', 1, 'https://ror.org/052qbca19 Ministrstvo za javno upravo Ministry of Public Administration'),
(69286, 'https://ror.org/052rh9n35', 'fr', 1, 'https://ror.org/052rh9n35 Centrale des Syndicats du QuƩbec'),
(69287, 'https://ror.org/052td7g28', 'en', 1, 'https://ror.org/052td7g28 Korea Peace Institute ķ•œźµ­ ķ‰ķ™” ģ—°źµ¬ģ†Œ'),
(69288, 'https://ror.org/052w5r042', 'en', 1, 'https://ror.org/052w5r042 Ministry of Natural Resources and Environment ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ прироГных Ń€ŠµŃŃƒŃ€ŃŠ¾Š² Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Российской ФеГерации'),
(69289, 'https://ror.org/052wkga64', 'no_lang_code', 1, 'https://ror.org/052wkga64 APT Electronics (China)'),
(69290, 'https://ror.org/052ww7470', 'no_lang_code', 1, 'https://ror.org/052ww7470 General Mills (United Kingdom)'),
(69291, 'https://ror.org/052x5qt17', 'no_lang_code', 1, 'https://ror.org/052x5qt17 Baltic Ceramics Investments (Poland)'),
(69292, 'https://ror.org/052z4cr88', 'en', 1, 'https://ror.org/052z4cr88 Chemins de fer fƩdƩraux suisses Schweizerische Bundesbahnen Swiss Federal Railways'),
(69293, 'https://ror.org/0532vhk36', 'no_lang_code', 1, 'https://ror.org/0532vhk36 MODUS (Qatar)'),
(69294, 'https://ror.org/0534xfc33', 'en', 1, 'https://ror.org/0534xfc33 Khanty-Mansiysk State Medical Academy Єанты-ŠœŠ°Š½ŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(69295, 'https://ror.org/0536ax941', 'en', 1, 'https://ror.org/0536ax941 Copenhagen Institute of Interaction Design'),
(69296, 'https://ror.org/05370es03', 'en', 1, 'https://ror.org/05370es03 British Columbia Academic Health Science Network'),
(69297, 'https://ror.org/0537cyx03', 'en', 1, 'https://ror.org/0537cyx03 Agricultural Farmer''s Policy Institute ė†ģ—…ė†ėÆ¼ģ •ģ±…ģ—°źµ¬ģ†Œ 녀름'),
(69298, 'https://ror.org/05388c580', 'en', 1, 'https://ror.org/05388c580 United Nations Children''s Fund India'),
(69299, 'https://ror.org/0538yth83', 'en', 1, 'https://ror.org/0538yth83 Korea Association of Teachers of English ķ•œźµ­ģ˜ģ–“źµģœ”ķ•™ķšŒ'),
(69300, 'https://ror.org/053afye15', 'no_lang_code', 1, 'https://ror.org/053afye15 iMusicTech (China)'),
(69301, 'https://ror.org/053ahvv37', 'en', 1, 'https://ror.org/053ahvv37 Esoterix'),
(69302, 'https://ror.org/053amty26', 'en', 1, 'https://ror.org/053amty26 Delaware Heritage Commission'),
(69303, 'https://ror.org/053e3ts04', 'en', 1, 'https://ror.org/053e3ts04 Research Institute of Problems of Storage Rosrezerva ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ агентства по Š³Š¾ŃŃƒŠ“арственным резервам'),
(69304, 'https://ror.org/053f7j738', 'en', 1, 'https://ror.org/053f7j738 Institute for Knowledge Mobilization l''Institut pour la Mobilisation des Connaissances'),
(69305, 'https://ror.org/053fj3b72', 'en', 1, 'https://ror.org/053fj3b72 27-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны Российской ФеГерации 27th Central Research Institute of the Ministry of Defence of the Russian Federation'),
(69306, 'https://ror.org/053gsyk62', 'en', 1, 'https://ror.org/053gsyk62 Dagestan Center of Eye Microsurgery Дагестанский центр Š¼ŠøŠŗŃ€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø глаза'),
(69307, 'https://ror.org/053k9rz58', 'en', 1, 'https://ror.org/053k9rz58 National Association of Regional Game Councils'),
(69308, 'https://ror.org/053prtv35', 'en', 1, 'https://ror.org/053prtv35 Physicians East'),
(69309, 'https://ror.org/053sg5d59', 'no_lang_code', 1, 'https://ror.org/053sg5d59 Arconic (United Kingdom)'),
(69310, 'https://ror.org/053ss9y09', 'pt', 1, 'https://ror.org/053ss9y09 Associação Kuyper para Estudos Transdisciplinares'),
(69311, 'https://ror.org/053t6pj86', 'en', 1, 'https://ror.org/053t6pj86 Povolzhsky Research Institute of Ecological and Meliorative Technologies Волжский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³Š¾-мелиоративных технологий'),
(69312, 'https://ror.org/053t76350', 'no_lang_code', 1, 'https://ror.org/053t76350 Wellbeing LS (South Korea) ģ›°ė¹™ģ—˜ģ—ģŠ¤'),
(69313, 'https://ror.org/053v5e348', 'no_lang_code', 1, 'https://ror.org/053v5e348 Tableau Software (United States)'),
(69314, 'https://ror.org/053v9t488', 'no_lang_code', 1, 'https://ror.org/053v9t488 Daqo (China) 大全'),
(69315, 'https://ror.org/053w2fj59', 'en', 1, 'https://ror.org/053w2fj59 Glass-House Community Led Design'),
(69316, 'https://ror.org/053y4qc63', 'en', 1, 'https://ror.org/053y4qc63 United Cancer Support Foundation'),
(69317, 'https://ror.org/053z9ab73', 'de', 1, 'https://ror.org/053z9ab73 Johanniter-Krankenhaus Bonn'),
(69318, 'https://ror.org/053zb8g23', 'en', 1, 'https://ror.org/053zb8g23 Plaquemines Parish Government'),
(69319, 'https://ror.org/053zgay46', 'en', 1, 'https://ror.org/053zgay46 Zhejiang Institute of Modern Textile Industry ęµ™ę±ŸēœēŽ°ä»£ēŗŗē»‡å·„äøšē ”ē©¶é™¢'),
(69320, 'https://ror.org/05411zh25', 'en', 1, 'https://ror.org/05411zh25 The Korea Association of Yeolin Education ķ•œźµ­ģ—“ė¦°źµģœ”ķ•™ķšŒ'),
(69321, 'https://ror.org/0541hzv22', 'no_lang_code', 1, 'https://ror.org/0541hzv22 K-UTEC Salt Technologies (Germany)'),
(69322, 'https://ror.org/05451aa47', 'no_lang_code', 1, 'https://ror.org/05451aa47 DSV (United Kingdom)'),
(69323, 'https://ror.org/0546h2150', 'en', 1, 'https://ror.org/0546h2150 Department of Disaster Prevention and Mitigation ąøąø£ąø”ąø›ą¹‰ąø­ąø‡ąøąø±ąø™ą¹ąø„ąø°ąøšąø£ąø£ą¹€ąø—ąø²ąøŖąø²ąø˜ąø²ąø£ąø“ąø ąø±ąø¢'),
(69324, 'https://ror.org/0548hz093', 'en', 1, 'https://ror.org/0548hz093 Russian State Agrarian Correspondence University Российский Š³Š¾ŃŃƒŠ“арственный аграрный заочный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(69325, 'https://ror.org/05495v729', 'en', 1, 'https://ror.org/05495v729 Luliang University 吕梁学院'),
(69326, 'https://ror.org/0549hdw45', 'en', 1, 'https://ror.org/0549hdw45 Abbottabad University of Science and Technology'),
(69327, 'https://ror.org/054atdn20', 'en', 1, 'https://ror.org/054atdn20 King Abdullah Medical City Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ عبدالله Ų§Ł„Ų·ŲØŁŠŲ©'),
(69328, 'https://ror.org/054deg252', 'no_lang_code', 1, 'https://ror.org/054deg252 Shanghai Huali Microelectronics (China) äøŠęµ·åŽåŠ›å¾®ē”µå­ęœ‰é™å…¬åø'),
(69329, 'https://ror.org/054ep4r90', 'en', 1, 'https://ror.org/054ep4r90 Federal Scientific Center for Feed Production and Agroecology named after V.R. Williams Всероссийский ŠŠ˜Š˜ кормов имени Š’. Š . Š’ŠøŠ»ŃŒŃŠ¼ŃŠ°'),
(69330, 'https://ror.org/054hffs36', 'en', 1, 'https://ror.org/054hffs36 Global Cultural Contents Association 세계 문화 ģ½˜ķ…ģø  ķ•™ķšŒ'),
(69331, 'https://ror.org/054hrx607', 'no_lang_code', 1, 'https://ror.org/054hrx607 ShaoLin Microsystems (China)'),
(69332, 'https://ror.org/054m6hn21', 'en', 1, 'https://ror.org/054m6hn21 Center for Inquiry'),
(69333, 'https://ror.org/054q52n39', 'no_lang_code', 1, 'https://ror.org/054q52n39 Stallergenes Greer (United States)'),
(69334, 'https://ror.org/054vdk688', 'no_lang_code', 1, 'https://ror.org/054vdk688 KanHan Technologies (China)'),
(69335, 'https://ror.org/054wntq63', 'en', 1, 'https://ror.org/054wntq63 Suzhou Chien-Shiung Institute of Technology č‹å·žå„é›„čŒäøšęŠ€ęœÆå­¦é™¢'),
(69336, 'https://ror.org/054z4z240', 'en', 1, 'https://ror.org/054z4z240 Korea International Understanding Education Society ķ•œźµ­ 국제 ģ“ķ•“ 교윔 ķ•™ķšŒ'),
(69337, 'https://ror.org/05500xy74', 'no_lang_code', 1, 'https://ror.org/05500xy74 Guangdong Industrial Equipment Installation (China) å¹æäøœēœå·„äøšč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(69338, 'https://ror.org/0550dmh35', 'fr', 1, 'https://ror.org/0550dmh35 Centre Interdisciplinaire de Nanoscience de Marseille'),
(69339, 'https://ror.org/05518k367', 'en', 1, 'https://ror.org/05518k367 Institute of Applied Physics Акционерного ŠžŠ±Ń‰ŠµŃŃ‚ва Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной физики'),
(69340, 'https://ror.org/0553r0192', 'no_lang_code', 1, 'https://ror.org/0553r0192 Ionix Advanced Technologies (United Kingdom)'),
(69341, 'https://ror.org/0554q2022', 'en', 1, 'https://ror.org/0554q2022 Ministry of Transport, Information Technology and Communications ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на транспорта, информационните технологии Šø ŃŃŠŠ¾Š±Ń‰ŠµŠ½ŠøŃŃ‚Š° на Република Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(69342, 'https://ror.org/0554tsp75', 'en', 1, 'https://ror.org/0554tsp75 Zhejiang Modern Architectural Design & Research Institute ęµ™ę±ŸēœēŽ°ä»£å»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(69343, 'https://ror.org/0555rbr45', 'no_lang_code', 1, 'https://ror.org/0555rbr45 Hygienic Research Institute (India) ą¤øą„ą¤µą¤šą„ą¤›ą¤‚ą¤¦ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(69344, 'https://ror.org/0555zm156', 'en', 1, 'https://ror.org/0555zm156 Middle East Research Institute'),
(69345, 'https://ror.org/0556k3d61', 'hu', 1, 'https://ror.org/0556k3d61 PuskƔs Tivadar TƔvkƶzlƩsi Technikum'),
(69346, 'https://ror.org/0557f3j69', 'fr', 1, 'https://ror.org/0557f3j69 Communautique'),
(69347, 'https://ror.org/0557kgc34', 'en', 1, 'https://ror.org/0557kgc34 Computing Center Š’Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ центр'),
(69348, 'https://ror.org/0557n0d79', 'en', 1, 'https://ror.org/0557n0d79 The Association For Korean Law Of Property ķ•œźµ­ ė²•ģƒ ķ˜‘ķšŒ'),
(69349, 'https://ror.org/05582kr93', 'no_lang_code', 1, 'https://ror.org/05582kr93 Analog Devices (Ireland)'),
(69350, 'https://ror.org/0559jvv76', 'no_lang_code', 1, 'https://ror.org/0559jvv76 Tango Telecom (Ireland)'),
(69351, 'https://ror.org/055ar4y96', 'no_lang_code', 1, 'https://ror.org/055ar4y96 Dongfeng Motor Group (China)'),
(69352, 'https://ror.org/055be5309', 'en', 1, 'https://ror.org/055be5309 Enshi Tujia and Miao Autonomous Prefecture Academy of Agricultural Sciences ę©ę–½åœŸå®¶ę—č‹—ę—č‡Ŗę²»å·žå†œäøšē§‘å­¦é™¢'),
(69353, 'https://ror.org/055bsnv14', 'no_lang_code', 1, 'https://ror.org/055bsnv14 Clean Energy Prospector (United Kingdom)'),
(69354, 'https://ror.org/055e0ds53', 'en', 1, 'https://ror.org/055e0ds53 Electoral Commission'),
(69355, 'https://ror.org/055ehs005', 'no_lang_code', 1, 'https://ror.org/055ehs005 Bundesverbandes Keramische Industrie (Germany)'),
(69356, 'https://ror.org/055f13495', 'en', 1, 'https://ror.org/055f13495 Guizhou Electric Power Design and Research Institute č“µå·žē”µåŠ›č®¾č®”ē ”ē©¶é™¢'),
(69357, 'https://ror.org/055f7gc82', 'no_lang_code', 1, 'https://ror.org/055f7gc82 Dragonchip (China)'),
(69358, 'https://ror.org/055ff4r96', 'no_lang_code', 1, 'https://ror.org/055ff4r96 AutoTrip (United Kingdom)'),
(69359, 'https://ror.org/055gtbq27', 'en', 1, 'https://ror.org/055gtbq27 Tennessee Emergency Management Agency'),
(69360, 'https://ror.org/055h6f484', 'no_lang_code', 1, 'https://ror.org/055h6f484 Tekno Surgical (Ireland)'),
(69361, 'https://ror.org/055jj1035', 'no_lang_code', 1, 'https://ror.org/055jj1035 Tile Films (Ireland)'),
(69362, 'https://ror.org/055n6t614', 'en', 1, 'https://ror.org/055n6t614 City of Dublin Skin and Cancer Hospital Charity'),
(69363, 'https://ror.org/055q8rh54', 'en', 1, 'https://ror.org/055q8rh54 Institute of Information Science InŔtitut za informacijske znanosti'),
(69364, 'https://ror.org/055qdna38', 'en', 1, 'https://ror.org/055qdna38 Shanghai Harbour Engineering Design & Research Institute äøŠęµ·ęµ·ę¹¾å·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(69365, 'https://ror.org/055sgbp02', 'en', 1, 'https://ror.org/055sgbp02 Live Art Development Agency'),
(69366, 'https://ror.org/055vcsm02', 'no_lang_code', 1, 'https://ror.org/055vcsm02 Risun (China) ę—­é™½é›†åœ˜'),
(69367, 'https://ror.org/055yqn475', 'en', 1, 'https://ror.org/055yqn475 Yonsei Proteome Research Center 연세 ķ”„ė”œķ…Œģ˜“ 연구원 단백첓 ė¶„ģ„'),
(69368, 'https://ror.org/055zc7842', 'en', 1, 'https://ror.org/055zc7842 Rockaway Waterfront Alliance'),
(69369, 'https://ror.org/0560xy784', 'en', 1, 'https://ror.org/0560xy784 The Korea English Education Society ķ•œźµ­ ģ˜ģ–“ 교윔 ķ•™ķšŒ'),
(69370, 'https://ror.org/05610bc49', 'en', 1, 'https://ror.org/05610bc49 Partnerships in Environmental Management for the Seas of East Asia'),
(69371, 'https://ror.org/0564cmz62', 'no_lang_code', 1, 'https://ror.org/0564cmz62 MCO (Ireland)'),
(69372, 'https://ror.org/0564t2w16', 'no_lang_code', 1, 'https://ror.org/0564t2w16 BG Research (United Kingdom)'),
(69373, 'https://ror.org/0564x6103', 'en', 1, 'https://ror.org/0564x6103 Council of Scientific Society Presidents'),
(69374, 'https://ror.org/05673tf87', 'en', 1, 'https://ror.org/05673tf87 Irkutsk Antiplague Research Institute of Siberia and Far East Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠæŃ€Š¾Ń‚ŠøŠ²Š¾Ń‡ŃƒŠ¼Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дибири Šø Š”Š°Š»ŃŒŠ½ŠµŠ³Š¾ Востока'),
(69375, 'https://ror.org/0567jx130', 'en', 1, 'https://ror.org/0567jx130 Combined Arms Academy of the Armed Forces of the Russian Federation ŠžŠ±Ń‰ŠµŠ²Š¾Š¹ŃŠŗŠ¾Š²Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š’Š¾Š¾Ń€ŃƒŠ¶Ń‘Š½Š½Ń‹Ń… Дил Российской ФеГерации'),
(69376, 'https://ror.org/056840095', 'en', 1, 'https://ror.org/056840095 Korea Economic Research Institute ķ•œźµ­ź²½ģ œģ—°źµ¬ģ›'),
(69377, 'https://ror.org/0569x1756', 'en', 1, 'https://ror.org/0569x1756 Guangdong Provincial Architectural Design and Research Institute å¹æäøœēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(69378, 'https://ror.org/056acjt11', 'no_lang_code', 1, 'https://ror.org/056acjt11 Research Institute of Technology (Russia)'),
(69379, 'https://ror.org/056ct2144', 'en', 1, 'https://ror.org/056ct2144 Federal Scientific Center for the Rehabilitation of the Disabled by G.A. Albrecht of the Ministry of Labor and Social Protection of the Russian Federation'),
(69380, 'https://ror.org/056eew379', 'no_lang_code', 1, 'https://ror.org/056eew379 Shanghai Micro Electronics Equipment (China) äøŠęµ·å¾®ē”µå­č£…å¤‡'),
(69381, 'https://ror.org/056k8rb32', 'no_lang_code', 1, 'https://ror.org/056k8rb32 OGT Amenity (Ireland)'),
(69382, 'https://ror.org/056kqr545', 'fr', 1, 'https://ror.org/056kqr545 Agence Locale de l''Energie et du Climat de la MƩtropole de Lyon'),
(69383, 'https://ror.org/056n9vg63', 'en', 1, 'https://ror.org/056n9vg63 Research Institute Ekran ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(69384, 'https://ror.org/056pc6w59', 'en', 1, 'https://ror.org/056pc6w59 Guilin Electrical Equipment Research Institute ę”‚ęž—ē”µå™Øē§‘å­¦ē ”ē©¶é™¢ęœ‰é™'),
(69385, 'https://ror.org/056q45x47', 'en', 1, 'https://ror.org/056q45x47 Korea Bio Polytechnic College ķ•œźµ­ķ“ė¦¬ķ…ė°”ģ“ģ˜¤ėŒ€ķ•™'),
(69386, 'https://ror.org/056s60883', 'en', 1, 'https://ror.org/056s60883 Hong Kong Hide & Leather Traders'' Association é¦™ęøÆēš®ę„­å•†ęœƒęœ‰é™å…¬åø'),
(69387, 'https://ror.org/056sbyc67', 'en', 1, 'https://ror.org/056sbyc67 Bristol Robotics Laboratory'),
(69388, 'https://ror.org/056te6132', 'en', 1, 'https://ror.org/056te6132 Ceemet'),
(69389, 'https://ror.org/056thpa20', 'en', 1, 'https://ror.org/056thpa20 International Drug Development'),
(69390, 'https://ror.org/056tm2d87', 'en', 1, 'https://ror.org/056tm2d87 Suzhou Electrical Apparatus Science Academy č‹å·žē”µå™Øē§‘å­¦ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(69391, 'https://ror.org/056v3aw45', 'en', 1, 'https://ror.org/056v3aw45 Korean Economic and Business Association ķ•œźµ­ź²½ģ œķ†µģƒķ•™ķšŒ'),
(69392, 'https://ror.org/056wwd598', 'ga', 1, 'https://ror.org/056wwd598 DeafHear'),
(69393, 'https://ror.org/056yydt13', 'no_lang_code', 1, 'https://ror.org/056yydt13 ZTT (China) ę±Ÿč‹äø­å¤©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(69394, 'https://ror.org/056zvrd21', 'en', 1, 'https://ror.org/056zvrd21 The Korean Criminal Law Association ķ•œźµ­ ķ˜•ė²• ķ˜‘ķšŒ'),
(69395, 'https://ror.org/05763y646', 'en', 1, 'https://ror.org/05763y646 General Directorate for National Roads and Motorways Generalna Dyrekcja Dróg Krajowych i Autostrad'),
(69396, 'https://ror.org/0576zak10', 'no_lang_code', 1, 'https://ror.org/0576zak10 Intelligent Health (United Kingdom)'),
(69397, 'https://ror.org/0577v7f42', 'en', 1, 'https://ror.org/0577v7f42 Crop Health and Protection'),
(69398, 'https://ror.org/0578b5015', 'no_lang_code', 1, 'https://ror.org/0578b5015 Indestructible Paint (United Kingdom)'),
(69399, 'https://ror.org/057dje809', 'en', 1, 'https://ror.org/057dje809 KBP Instrument Design Bureau ŠšŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾Šµ Š±ŃŽŃ€Š¾ ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ им. акаГемика А. Š“. Шипунова'),
(69400, 'https://ror.org/057h57w33', 'en', 1, 'https://ror.org/057h57w33 Qiqihar Institute of Engineering é½é½å“ˆå°”å·„ēØ‹å­¦é™¢'),
(69401, 'https://ror.org/057hps485', 'no_lang_code', 1, 'https://ror.org/057hps485 Atpath Technologies (China)'),
(69402, 'https://ror.org/057hqh897', 'no_lang_code', 1, 'https://ror.org/057hqh897 Lundbeck (South Korea) ķ•œźµ­ė£¬ė“œė²”'),
(69403, 'https://ror.org/057hzyr27', 'en', 1, 'https://ror.org/057hzyr27 Korean Society For Philosophy East-West ķ•œźµ­ė™ģ„œģ² ķ•™ķšŒ'),
(69404, 'https://ror.org/057kr8834', 'no_lang_code', 1, 'https://ror.org/057kr8834 JIT Solutions (Poland)'),
(69405, 'https://ror.org/057kvja37', 'tr', 1, 'https://ror.org/057kvja37 TUBITAK BILGEM, TÜBİTAK Bilişim ve Bilgi Güvenliği İleri Teknolojiler Araştırma Merkezi'),
(69406, 'https://ror.org/057mvkb89', 'en', 1, 'https://ror.org/057mvkb89 AgĆŖncia de Empreendedores Sociais Social Entrepreneurs Agency'),
(69407, 'https://ror.org/057n4jt40', 'en', 1, 'https://ror.org/057n4jt40 All-Russian Scientific Research Institute for Irrigated Agriculture'),
(69408, 'https://ror.org/057najf71', 'no_lang_code', 1, 'https://ror.org/057najf71 Kahramaa (Qatar)'),
(69409, 'https://ror.org/057ngkn52', 'no_lang_code', 1, 'https://ror.org/057ngkn52 Xianyang Research and Design Institute of Ceramics (China) å’øé˜³é™¶ē“·ē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åø'),
(69410, 'https://ror.org/057nkx415', 'no_lang_code', 1, 'https://ror.org/057nkx415 Historic Futures (United Kingdom)'),
(69411, 'https://ror.org/057q47t40', 'en', 1, 'https://ror.org/057q47t40 Jeju Regional Business Evaluation Foundation 제주 지역 사업 ķ‰ź°€ ģž¬ė‹Ø'),
(69412, 'https://ror.org/057qdm128', 'no_lang_code', 1, 'https://ror.org/057qdm128 LendingClub (United States)'),
(69413, 'https://ror.org/057r0bm85', 'en', 1, 'https://ror.org/057r0bm85 Zhejiang Sorfa Life Science Research ęµ™ę±Ÿē”•åŽē”Ÿå‘½ē§‘å­¦ē ”ē©¶č‚”ä»½ęœ‰é™å…¬åø'),
(69414, 'https://ror.org/057rgnq16', 'en', 1, 'https://ror.org/057rgnq16 Aberdeenshire Council'),
(69415, 'https://ror.org/057t9t071', 'en', 1, 'https://ror.org/057t9t071 Kyung-in Women''s University ź²½ ģ—¬ģž ėŒ€ķ•™źµ'),
(69416, 'https://ror.org/057tmwv53', 'no_lang_code', 1, 'https://ror.org/057tmwv53 Comet (Russia) комета'),
(69417, 'https://ror.org/057wj6q87', 'en', 1, 'https://ror.org/057wj6q87 East Renfrewshire Council'),
(69418, 'https://ror.org/057wrv854', 'en', 1, 'https://ror.org/057wrv854 International Minerals Innovation Institute'),
(69419, 'https://ror.org/057z7x668', 'no_lang_code', 1, 'https://ror.org/057z7x668 Dialog Semiconductor (United Kingdom)'),
(69420, 'https://ror.org/057zxk877', 'no_lang_code', 1, 'https://ror.org/057zxk877 Tianjin Aolian Special Steel Structure Installation Engineering (China) å¤©ę“„åø‚å„„č”ē‰¹é’¢ē»“ęž„å®‰č£…å·„ēØ‹ęœ‰é™å…¬åø'),
(69421, 'https://ror.org/0580q1236', 'en', 1, 'https://ror.org/0580q1236 Alaska Department of Commerce, Community and Economic Development'),
(69422, 'https://ror.org/0582kjq67', 'no_lang_code', 1, 'https://ror.org/0582kjq67 Antikor (United Kingdom)'),
(69423, 'https://ror.org/0587yj467', 'no_lang_code', 1, 'https://ror.org/0587yj467 MicroGen Biotech (Ireland)'),
(69424, 'https://ror.org/0588fx246', 'no_lang_code', 1, 'https://ror.org/0588fx246 Rongsheng Petrochemical (China) č£ē››ēŸ³åŒ–č‚”ä»½ęœ‰é™å…¬åø'),
(69425, 'https://ror.org/058atjp47', 'en', 1, 'https://ror.org/058atjp47 Ministry of Energy of the Republic of Bulgaria ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на енергетиката на Република Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(69426, 'https://ror.org/058awzy03', 'en', 1, 'https://ror.org/058awzy03 Scientific Research Institute of Flax Mechanization Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Š²Š¾Š·Š“ŠµŠ»Ń‹Š²Š°Š½ŠøŃ льна'),
(69427, 'https://ror.org/058bqqp10', 'no_lang_code', 1, 'https://ror.org/058bqqp10 Qatargas (Qatar)'),
(69428, 'https://ror.org/058bqw857', 'no_lang_code', 1, 'https://ror.org/058bqw857 Sam Chun Dang Pharm (South Korea)'),
(69429, 'https://ror.org/058ddgs73', 'en', 1, 'https://ror.org/058ddgs73 Center for Art and Media Karlsruhe Zentrum für Kunst und Medien'),
(69430, 'https://ror.org/058fm6761', 'en', 1, 'https://ror.org/058fm6761 Ministrstvo za Obrambo Republike Slovenije Ministry of Defence'),
(69431, 'https://ror.org/058h5ns38', 'fr', 1, 'https://ror.org/058h5ns38 CancƩropƓle Grand Sud-Ouest'),
(69432, 'https://ror.org/058jpya11', 'fr', 1, 'https://ror.org/058jpya11 SociƩtƩ QuƩbƩcoise d''Hypertension ArtƩrielle'),
(69433, 'https://ror.org/058n0ks92', 'ro', 1, 'https://ror.org/058n0ks92 Institutul Naţional de Cercetare-Dezvoltare pentru Mecatronică si Tehnica Masurării'),
(69434, 'https://ror.org/058qcqm21', 'en', 1, 'https://ror.org/058qcqm21 Early Intervention Foundation'),
(69435, 'https://ror.org/058snr381', 'fr', 1, 'https://ror.org/058snr381 Observatoire RƩgional de la SantƩ et du Social'),
(69436, 'https://ror.org/058stpv70', 'no_lang_code', 1, 'https://ror.org/058stpv70 Huainan Mining Industry Group (China) ę·®å—ēŸæäøšé›†å›¢'),
(69437, 'https://ror.org/058t64323', 'pt', 1, 'https://ror.org/058t64323 CSEM'),
(69438, 'https://ror.org/058t7m662', 'en', 1, 'https://ror.org/058t7m662 Ivanovo State Polytechnic University Ивановского Š³Š¾ŃŃƒŠ“арственного политехнического ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š°'),
(69439, 'https://ror.org/058ttvb80', 'no_lang_code', 1, 'https://ror.org/058ttvb80 Goodbaby (China) å„½å­©å­å›½é™…ęŽ§č‚”ęœ‰é™å…¬åø'),
(69440, 'https://ror.org/058v1h521', 'no_lang_code', 1, 'https://ror.org/058v1h521 Cloudnine'),
(69441, 'https://ror.org/058v8m457', 'no_lang_code', 1, 'https://ror.org/058v8m457 Exergyn (Ireland)'),
(69442, 'https://ror.org/058x40223', 'no_lang_code', 1, 'https://ror.org/058x40223 Pure Storage (United States)'),
(69443, 'https://ror.org/058y6z954', 'no_lang_code', 1, 'https://ror.org/058y6z954 Exagenica (United Kingdom)'),
(69444, 'https://ror.org/058yas979', 'en', 1, 'https://ror.org/058yas979 Technology Management Economics Society źø°ģˆ ź²½ģ˜ź²½ģ œķ•™ķšŒ'),
(69445, 'https://ror.org/0590nw084', 'no_lang_code', 1, 'https://ror.org/0590nw084 Crossing the Line (Ireland)'),
(69446, 'https://ror.org/0593bs311', 'en', 1, 'https://ror.org/0593bs311 Vernadsky National Library of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° бібліотека України імені Š’. І. Š’ŠµŃ€Š½Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(69447, 'https://ror.org/05941t046', 'en', 1, 'https://ror.org/05941t046 Cymdeithas Llywodraeth Leol Cymru Welsh Local Government Association'),
(69448, 'https://ror.org/0594xf543', 'no_lang_code', 1, 'https://ror.org/0594xf543 Agrola (Poland)'),
(69449, 'https://ror.org/0597afe55', 'no_lang_code', 1, 'https://ror.org/0597afe55 BIOCAD (Russia)'),
(69450, 'https://ror.org/0597zww19', 'en', 1, 'https://ror.org/0597zww19 African Literature Association'),
(69451, 'https://ror.org/05998tm92', 'en', 1, 'https://ror.org/05998tm92 Fujian Inspection and Research Institute for Product Quality ē¦å»ŗēœäŗ§å“č“Øé‡ę£€éŖŒē ”ē©¶é™¢'),
(69452, 'https://ror.org/0599fy865', 'en', 1, 'https://ror.org/0599fy865 Pan-Korea English Teachers Association ķŒ¬ģ½”ė¦¬ģ•„ģ˜ģ–“źµģœ”ķ•™ķšŒ'),
(69453, 'https://ror.org/059aht397', 'en', 1, 'https://ror.org/059aht397 Institute of Oil and Gas Problems of the Siberian Branch of the RAS Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем нефти Šø газа Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(69454, 'https://ror.org/059ccn340', 'en', 1, 'https://ror.org/059ccn340 Korea International Accounting Association ķ•œźµ­źµ­ģ œķšŒź³„ķ•™ķšŒ'),
(69455, 'https://ror.org/059d8kr95', 'en', 1, 'https://ror.org/059d8kr95 Centre for Family Medicine'),
(69456, 'https://ror.org/059fafs66', 'no_lang_code', 1, 'https://ror.org/059fafs66 Allergan (South Korea) ģ—˜ėŸ¬ź°„'),
(69457, 'https://ror.org/059jjdh21', 'en', 1, 'https://ror.org/059jjdh21 Nanjing Boiler and Pressure Vessel Inspection Institute å—äŗ¬åø‚é”…ē‚‰åŽ‹åŠ›å®¹å™Øę£€éŖŒē ”ē©¶é™¢'),
(69458, 'https://ror.org/059kpjd26', 'en', 1, 'https://ror.org/059kpjd26 Greater Shankill Partnership'),
(69459, 'https://ror.org/059mggq50', 'en', 1, 'https://ror.org/059mggq50 Hunan Coal Science Research Institute ę¹–å—ēœē…¤ē‚­ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(69460, 'https://ror.org/059n2nf73', 'no_lang_code', 1, 'https://ror.org/059n2nf73 Hong Kong RFID (China)'),
(69461, 'https://ror.org/059p3be55', 'en', 1, 'https://ror.org/059p3be55 All-Russian Research and Design Institute of Hard Alloys and Refractory Metals Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ тверГых сплавов Šø Ń‚ŃƒŠ³Š¾ŠæŠ»Š°Š²ŠŗŠøŃ… металлов'),
(69462, 'https://ror.org/059q78r10', 'en', 1, 'https://ror.org/059q78r10 Ministry of Health'),
(69463, 'https://ror.org/059rsrh95', 'en', 1, 'https://ror.org/059rsrh95 FORZA, Agency For Sustainable Development of The Carpathian Region Агентство ŃŠæŃ€ŠøŃŠ½Š½Ń ŃŃ‚Š°Š»Š¾Š¼Ńƒ Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ Ń€ŠµŠ³Ń–Š¾Š½Ńƒ Š¤ŠžŠ Š—Š'),
(69464, 'https://ror.org/059s9d453', 'en', 1, 'https://ror.org/059s9d453 Liming Vocational University é»Žę˜ŽčŒäøšå¤§å­¦'),
(69465, 'https://ror.org/059twtp92', 'no_lang_code', 1, 'https://ror.org/059twtp92 Entropea Labs (United Kingdom)'),
(69466, 'https://ror.org/059vazt48', 'no_lang_code', 1, 'https://ror.org/059vazt48 Halo Labs (United States)'),
(69467, 'https://ror.org/059vdg789', 'no_lang_code', 1, 'https://ror.org/059vdg789 nwStor (China)'),
(69468, 'https://ror.org/059wdnr97', 'no_lang_code', 1, 'https://ror.org/059wdnr97 Lotus Innovative Health (China)'),
(69469, 'https://ror.org/059wz2726', 'no_lang_code', 1, 'https://ror.org/059wz2726 Archipelago Technology (United Kingdom)'),
(69470, 'https://ror.org/059ya5h17', 'no_lang_code', 1, 'https://ror.org/059ya5h17 Bluetomation (Poland)'),
(69471, 'https://ror.org/059zjse65', 'en', 1, 'https://ror.org/059zjse65 Glasgow Housing Association'),
(69472, 'https://ror.org/05a1zjh88', 'en', 1, 'https://ror.org/05a1zjh88 Korean Literature Research Society ķ•œźµ­ė¬øķ•™ģ—°źµ¬ķ•™ķšŒ'),
(69473, 'https://ror.org/05a2wb866', 'no_lang_code', 1, 'https://ror.org/05a2wb866 Boryszew (Poland)'),
(69474, 'https://ror.org/05a4qc136', 'en', 1, 'https://ror.org/05a4qc136 The Modern English Education Society'),
(69475, 'https://ror.org/05a67cs45', 'en', 1, 'https://ror.org/05a67cs45 Central Council for Research in Siddha'),
(69476, 'https://ror.org/05a8e5154', 'en', 1, 'https://ror.org/05a8e5154 Tianjin Academy of Environmental Sciences å¤©ę“„åø‚ēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶é™¢'),
(69477, 'https://ror.org/05aaad433', 'no_lang_code', 1, 'https://ror.org/05aaad433 Heartisans (China)'),
(69478, 'https://ror.org/05aana297', 'no_lang_code', 1, 'https://ror.org/05aana297 Glory Sky Group (China)'),
(69479, 'https://ror.org/05acyge75', 'no_lang_code', 1, 'https://ror.org/05acyge75 Shantou Light Industrial Machinery Factory (China) ę±•å¤“č½»å·„ęœŗę¢°åŽ‚ęœ‰é™å…¬åø'),
(69480, 'https://ror.org/05ad53425', 'en', 1, 'https://ror.org/05ad53425 Maryland Department of General Services'),
(69481, 'https://ror.org/05adk8w18', 'no_lang_code', 1, 'https://ror.org/05adk8w18 Kaliskie Zakłady Przemysłu Terenowego (Poland)'),
(69482, 'https://ror.org/05af73403', 'no_lang_code', 1, 'https://ror.org/05af73403 Janssen (United States)'),
(69483, 'https://ror.org/05agwvf41', 'en', 1, 'https://ror.org/05agwvf41 All-Union Scientific Research Institute of Woodworking Industry Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“ŠµŃ€ŠµŠ²Š¾Š¾Š±Ń€Š°Š±Š°Ń‚Ń‹Š²Š°ŃŽŃ‰ŠµŠ¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(69484, 'https://ror.org/05agz2w73', 'en', 1, 'https://ror.org/05agz2w73 The Korean Society of Sports Science ėŒ€ķ•œ 첓윔 ķ•™ķšŒ'),
(69485, 'https://ror.org/05ajbr617', 'en', 1, 'https://ror.org/05ajbr617 Zhejiang Fashion Institute of Technology ęµ™ę±Ÿēŗŗē»‡ęœč£…čŒäøšęŠ€ęœÆå­¦é™¢'),
(69486, 'https://ror.org/05apznb79', 'no_lang_code', 1, 'https://ror.org/05apznb79 Zeus Entertainment (China) å¤§čæžå¤©ē„žåØ±ä¹č‚”ä»½ęœ‰é™å…¬åø'),
(69487, 'https://ror.org/05atyq880', 'en', 1, 'https://ror.org/05atyq880 ProPublica'),
(69488, 'https://ror.org/05atzd126', 'no_lang_code', 1, 'https://ror.org/05atzd126 Joyoung (China) 九阳'),
(69489, 'https://ror.org/05av4bp24', 'no_lang_code', 1, 'https://ror.org/05av4bp24 Shougang (China) 首钢集团'),
(69490, 'https://ror.org/05aw74s61', 'en', 1, 'https://ror.org/05aw74s61 Commission Internationale des Examens de Conduite Automobile The International Commission for Driver Testing'),
(69491, 'https://ror.org/05ay2w302', 'en', 1, 'https://ror.org/05ay2w302 Society of Korean Classical Literature Education ķ•œźµ­ź³ ģ „ė¬øķ•™źµģœ”ķ•™ķšŒ'),
(69492, 'https://ror.org/05aykjy67', 'en', 1, 'https://ror.org/05aykjy67 Korea Testing Laboratory ķ•œźµ­ ģ‹¤ķ—˜ 연구원'),
(69493, 'https://ror.org/05azkwn61', 'en', 1, 'https://ror.org/05azkwn61 National Board of Customs Tullihallitus'),
(69494, 'https://ror.org/05b0gd358', 'en', 1, 'https://ror.org/05b0gd358 Detroit Rescue Mission Ministries'),
(69495, 'https://ror.org/05b0zb254', 'no_lang_code', 1, 'https://ror.org/05b0zb254 Far (United Kingdom)'),
(69496, 'https://ror.org/05b2nvq86', 'no_lang_code', 1, 'https://ror.org/05b2nvq86 Hotblock Onboard (France)'),
(69497, 'https://ror.org/05b2ydd02', 'en', 1, 'https://ror.org/05b2ydd02 Executive Agency Maritime Administration Š˜Š·ŠæŃŠŠ»Š½ŠøŃ‚ŠµŠ»Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ "ŠœŠ¾Ń€ŃŠŗŠ° ŠŠ“Š¼ŠøŠ½ŠøŃŃ‚Ń€Š°Ń†ŠøŃ"'),
(69498, 'https://ror.org/05b4q6y22', 'en', 1, 'https://ror.org/05b4q6y22 Hong Kong Jewelry Manufacturers'' Association é¦™ęøÆē åÆ¶č£½é€ ę„­å» å•†ęœƒ'),
(69499, 'https://ror.org/05b4xvt53', 'no_lang_code', 1, 'https://ror.org/05b4xvt53 Wonbiogen (South Korea) ģ›ė°”ģ“ģ˜¤ģ  '),
(69500, 'https://ror.org/05b7yq612', 'en', 1, 'https://ror.org/05b7yq612 Ukrainian Institute for the Design of Metallurgical Plants Украинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃŽ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŃ… завоГов'),
(69501, 'https://ror.org/05b887v59', 'no_lang_code', 1, 'https://ror.org/05b887v59 Flowgroup (United Kingdom)'),
(69502, 'https://ror.org/05b9wad22', 'en', 1, 'https://ror.org/05b9wad22 Flint Institute Of Arts'),
(69503, 'https://ror.org/05ba3vx21', 'en', 1, 'https://ror.org/05ba3vx21 Modern Korean Literature Assocation ķ•œźµ­ ź·¼ėŒ€ ė¬øķ•™ķšŒ'),
(69504, 'https://ror.org/05ba5yp12', 'no_lang_code', 1, 'https://ror.org/05ba5yp12 Daeduk University ėŒ€ė• ėŒ€ķ•™źµ'),
(69505, 'https://ror.org/05ban5b47', 'en', 1, 'https://ror.org/05ban5b47 Shenzhen Special Equipment Safety Inspection Institute ę·±åœ³åø‚ē‰¹ē§č®¾å¤‡å®‰å…Øę£€éŖŒē ”ē©¶é™¢'),
(69506, 'https://ror.org/05baxg638', 'no_lang_code', 1, 'https://ror.org/05baxg638 Ningbo Putian Information Industry (China) å®ę³¢ę™®å¤©äæ”ęÆäŗ§äøš'),
(69507, 'https://ror.org/05bbfjb19', 'en', 1, 'https://ror.org/05bbfjb19 Balakovo Engineering and Technology Institute Балаковский инженерно-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(69508, 'https://ror.org/05bbfzp96', 'en', 1, 'https://ror.org/05bbfzp96 Harbin Welding Institute å“ˆå°”ę»Øē„ŠęŽ„ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(69509, 'https://ror.org/05bbyvt75', 'en', 1, 'https://ror.org/05bbyvt75 Shantou Ultrasonic Instrument Research Institute 汕夓超声仪器研究所'),
(69510, 'https://ror.org/05bcwh715', 'en', 1, 'https://ror.org/05bcwh715 Alba Trees'),
(69511, 'https://ror.org/05bdngh08', 'fr', 1, 'https://ror.org/05bdngh08 ECAM-EPMI'),
(69512, 'https://ror.org/05be7j249', 'no_lang_code', 1, 'https://ror.org/05be7j249 Eye Tech Care (France)'),
(69513, 'https://ror.org/05bfb6c92', 'no_lang_code', 1, 'https://ror.org/05bfb6c92 Zetakey Solutions (China)'),
(69514, 'https://ror.org/05bfe1413', 'no_lang_code', 1, 'https://ror.org/05bfe1413 NPO Energomash (Russia) ŠŠŸŠž Š­Š½ŠµŃ€Š³Š¾Š¼Š°Ńˆ'),
(69515, 'https://ror.org/05bfjdn05', 'en', 1, 'https://ror.org/05bfjdn05 Learning and Skills Development Agency'),
(69516, 'https://ror.org/05bjekg60', 'no_lang_code', 1, 'https://ror.org/05bjekg60 Bristol Water (United Kingdom)'),
(69517, 'https://ror.org/05bjfv051', 'no_lang_code', 1, 'https://ror.org/05bjfv051 Changshu Switch Manufacturing (China) åøøē†Ÿå¼€å…³åˆ¶é€ ęœ‰é™å…¬åø'),
(69518, 'https://ror.org/05bk3hg51', 'en', 1, 'https://ror.org/05bk3hg51 Montana Department of Labor & Industry'),
(69519, 'https://ror.org/05bnagb09', 'no_lang_code', 1, 'https://ror.org/05bnagb09 All-Russian Research and Design Institute of Electric Locomotive Industry (Russia) Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š²Š¾Š·Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(69520, 'https://ror.org/05bqqpf42', 'no_lang_code', 1, 'https://ror.org/05bqqpf42 Ambarella (United States)'),
(69521, 'https://ror.org/05bqsm828', 'no_lang_code', 1, 'https://ror.org/05bqsm828 Cambridge Nanolitic (United Kingdom)'),
(69522, 'https://ror.org/05bshbg41', 'en', 1, 'https://ror.org/05bshbg41 The Korean Society of Special Education ķ•œźµ­ķŠ¹ģˆ˜źµģœ”ķ•™ķšŒ'),
(69523, 'https://ror.org/05bsykf80', 'no_lang_code', 1, 'https://ror.org/05bsykf80 Hyperdrive Innovation (United Kingdom)'),
(69524, 'https://ror.org/05bwm9830', 'en', 1, 'https://ror.org/05bwm9830 Telegraph Museum'),
(69525, 'https://ror.org/05bx22c71', 'no_lang_code', 1, 'https://ror.org/05bx22c71 Intel (Poland)'),
(69526, 'https://ror.org/05bxe2n40', 'no_lang_code', 1, 'https://ror.org/05bxe2n40 Pilot Photonics (Ireland)'),
(69527, 'https://ror.org/05byjjz14', 'en', 1, 'https://ror.org/05byjjz14 Ural Scientific Research Veterinary Institute Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ветеринарный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(69528, 'https://ror.org/05bywcp64', 'en', 1, 'https://ror.org/05bywcp64 Austrian Centre for Electron Microscopy and Nanoanalysis'),
(69529, 'https://ror.org/05bz3n751', 'en', 1, 'https://ror.org/05bz3n751 Fighting Blindness'),
(69530, 'https://ror.org/05c1vs952', 'en', 1, 'https://ror.org/05c1vs952 Open Cyber University of Korea ķ•œźµ­ģ—“ė¦°ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(69531, 'https://ror.org/05c2g3729', 'en', 1, 'https://ror.org/05c2g3729 Ministarstvo vanjskih poslova Ministarstvo vanjskih poslova Ministry of Foreign Affairs ŠœŠøŠ½ŠøŃŃ‚Š°Ń€ŃŃ‚Š²Š¾ иностраних послова'),
(69532, 'https://ror.org/05c45t605', 'en', 1, 'https://ror.org/05c45t605 Internationale Lignin-Institut The International Lignin Institute'),
(69533, 'https://ror.org/05c4ffc05', 'en', 1, 'https://ror.org/05c4ffc05 Lancashire Fire and Rescue Service'),
(69534, 'https://ror.org/05c658986', 'no_lang_code', 1, 'https://ror.org/05c658986 Jeju TechnoPark ģ œģ£¼ķ…Œķ¬ė…øķŒŒķ¬'),
(69535, 'https://ror.org/05cb67q54', 'no_lang_code', 1, 'https://ror.org/05cb67q54 Anshar Studios (Poland)'),
(69536, 'https://ror.org/05cbc2019', 'no_lang_code', 1, 'https://ror.org/05cbc2019 Al-Wataniya Concrete (Qatar)'),
(69537, 'https://ror.org/05cc0x492', 'no_lang_code', 1, 'https://ror.org/05cc0x492 Hewlett Packard Enterprise (Ireland)'),
(69538, 'https://ror.org/05cc6ax93', 'en', 1, 'https://ror.org/05cc6ax93 American College of Theriogenologists'),
(69539, 'https://ror.org/05cctmc18', 'en', 1, 'https://ror.org/05cctmc18 Institute of Transport and Communications Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по транспорт Šø ŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠø'),
(69540, 'https://ror.org/05cdfm144', 'it', 1, 'https://ror.org/05cdfm144 Istituto di Cibernetica ā€œEduardo Caianielloā€'),
(69541, 'https://ror.org/05cdh3h43', 'en', 1, 'https://ror.org/05cdh3h43 The Korean Association of General Education ėŒ€ķ•œ 교윔 ģ“ķšŒ'),
(69542, 'https://ror.org/05cendc56', 'en', 1, 'https://ror.org/05cendc56 East Baton Rouge Parish School System'),
(69543, 'https://ror.org/05ceqm842', 'no_lang_code', 1, 'https://ror.org/05ceqm842 CNEX (China)'),
(69544, 'https://ror.org/05cf80b72', 'en', 1, 'https://ror.org/05cf80b72 Cochrane'),
(69545, 'https://ror.org/05cg6gz18', 'no_lang_code', 1, 'https://ror.org/05cg6gz18 Ibex Innovations (United Kingdom)'),
(69546, 'https://ror.org/05cgcnt36', 'en', 1, 'https://ror.org/05cgcnt36 Saint-Vincent Hospital'),
(69547, 'https://ror.org/05ch0my81', 'no_lang_code', 1, 'https://ror.org/05ch0my81 Change of Paradigm (United Kingdom)'),
(69548, 'https://ror.org/05cjv8495', 'en', 1, 'https://ror.org/05cjv8495 Korea Association of Chinese Language and Literature ķ•œźµ­ģ¤‘ģ–“ģ¤‘ė¬øķ•™ķšŒ'),
(69549, 'https://ror.org/05ck6jr09', 'de', 1, 'https://ror.org/05ck6jr09 Universum Bremen'),
(69550, 'https://ror.org/05cmc6v40', 'no_lang_code', 1, 'https://ror.org/05cmc6v40 Kirloskar Hospital'),
(69551, 'https://ror.org/05cmpp263', 'en', 1, 'https://ror.org/05cmpp263 Hunan Vocational College of Safety Technology ę¹–å—å®‰å…ØęŠ€ęœÆčŒäøšå­¦é™¢'),
(69552, 'https://ror.org/05cq2am04', 'no_lang_code', 1, 'https://ror.org/05cq2am04 Merck (Singapore)'),
(69553, 'https://ror.org/05crdvn36', 'en', 1, 'https://ror.org/05crdvn36 Wellcome Centre for Ethics and Humanities'),
(69554, 'https://ror.org/05cv5pe55', 'en', 1, 'https://ror.org/05cv5pe55 Fujian Fisheries Research Institute ē¦å»ŗēœę°“äŗ§ē ”ē©¶ę‰€'),
(69555, 'https://ror.org/05cvya303', 'en', 1, 'https://ror.org/05cvya303 Harbin FRP Research Institute å“ˆå°”ę»ØēŽ»ē’ƒé’¢ē ”ē©¶é™¢'),
(69556, 'https://ror.org/05cx42j02', 'en', 1, 'https://ror.org/05cx42j02 Korea University of International Studies ķ•œė°˜ė„źµ­ģ œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(69557, 'https://ror.org/05cx6qq72', 'en', 1, 'https://ror.org/05cx6qq72 La SociƩtƩ des obstƩtriciens et gynƩcologues du Canada The Society of Obstetricians and Gynaecologists of Canada'),
(69558, 'https://ror.org/05cxhgh47', 'en', 1, 'https://ror.org/05cxhgh47 China Aircraft Services Limited äø­åœ‹é£›ę©Ÿęœå‹™ęœ‰é™å…¬åø'),
(69559, 'https://ror.org/05d0pa414', 'en', 1, 'https://ror.org/05d0pa414 Bundesverband Solarwirtschaft German Solar Association'),
(69560, 'https://ror.org/05d2jmv32', 'en', 1, 'https://ror.org/05d2jmv32 Institute of Health Studies and Rehabilitation'),
(69561, 'https://ror.org/05d34xs41', 'en', 1, 'https://ror.org/05d34xs41 The Korean Association for Multicultural Education ķ•œźµ­ 다문화 교윔 ķ˜‘ķšŒ'),
(69562, 'https://ror.org/05d5kcc69', 'en', 1, 'https://ror.org/05d5kcc69 Jiangxi College of Applied Technology ę±Ÿč„æåŗ”ē”ØęŠ€ęœÆčŒäøšå­¦é™¢'),
(69563, 'https://ror.org/05d5mtz58', 'no_lang_code', 1, 'https://ror.org/05d5mtz58 Hansol Chemical (South Korea) ķ•œģ†”ģ¼€ėÆøģ¹¼'),
(69564, 'https://ror.org/05d5yxq17', 'no_lang_code', 1, 'https://ror.org/05d5yxq17 Bayer (China) ę‹œč€³äø­å›½'),
(69565, 'https://ror.org/05d6m6x98', 'en', 1, 'https://ror.org/05d6m6x98 Kaluga Research Institute of Telemechanical Devices Калужский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ телемеханических ŃƒŃŃ‚Ń€Š¾Š¹ŃŃ‚Š²'),
(69566, 'https://ror.org/05d8tdk47', 'en', 1, 'https://ror.org/05d8tdk47 Doha International Center for Interfaith Dialogue Ł…Ų±ŁƒŲ² Ų§Ł„ŲÆŁˆŲ­Ų© Ų§Ł„ŲÆŁˆŁ„ŁŠ Ł„Ų­ŁˆŲ§Ų± Ų§Ł„Ų£ŲÆŁŠŲ§Ł†'),
(69567, 'https://ror.org/05d8z4d22', 'en', 1, 'https://ror.org/05d8z4d22 PHS Community Services Society'),
(69568, 'https://ror.org/05damwn69', 'en', 1, 'https://ror.org/05damwn69 Naval Academy named after Admiral of the Fleet of the Soviet Union NG Kuznetsov ŠœŠ¾Ń€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ им. АГмирала флота Доветского Š”Š¾ŃŽŠ·Š° Š. Š“. ŠšŃƒŠ·Š½ŠµŃ†Š¾Š²'),
(69569, 'https://ror.org/05datqy35', 'en', 1, 'https://ror.org/05datqy35 Changzhou City Planning and Design Institute åøøå·žåø‚č§„åˆ’č®¾č®”é™¢'),
(69570, 'https://ror.org/05datya05', 'en', 1, 'https://ror.org/05datya05 Hunan Institute of Energy Storage Materials and Devices ę¹–å—ēœå‚Øčƒ½ęę–™äøŽå™Øä»¶ē ”ē©¶ę‰€'),
(69571, 'https://ror.org/05db7s640', 'en', 1, 'https://ror.org/05db7s640 Korean Accounting Association ķ•œźµ­ķšŒź³„ķ•™ķšŒ'),
(69572, 'https://ror.org/05dbddb11', 'en', 1, 'https://ror.org/05dbddb11 Northern Cheyenne Tribal Board of Health'),
(69573, 'https://ror.org/05dbmr667', 'en', 1, 'https://ror.org/05dbmr667 Entidade de Serviços Partilhados da Administração Pública Government Shared Services Entity'),
(69574, 'https://ror.org/05dec7653', 'en', 1, 'https://ror.org/05dec7653 Children in Scotland'),
(69575, 'https://ror.org/05dhs6t85', 'en', 1, 'https://ror.org/05dhs6t85 Krasnodar Higher Military School named after General of the Army S. Shtemenko ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ военное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ имени генерала армии Š”.М.Штеменко'),
(69576, 'https://ror.org/05dk70562', 'en', 1, 'https://ror.org/05dk70562 Scientific and Research Institute Voskhod ŠŠ˜Š˜ ВосхоГ'),
(69577, 'https://ror.org/05dm7fw62', 'no_lang_code', 1, 'https://ror.org/05dm7fw62 Katcon (Poland)'),
(69578, 'https://ror.org/05dng9k37', 'no_lang_code', 1, 'https://ror.org/05dng9k37 NAURA (China) åŒ—ę–¹åŽåˆ›'),
(69579, 'https://ror.org/05drjse03', 'no_lang_code', 1, 'https://ror.org/05drjse03 Thermionix Energy (United Kingdom)');
INSERT INTO `rors` VALUES
(69580, 'https://ror.org/05dtnxd20', 'en', 1, 'https://ror.org/05dtnxd20 Israel Olive Oil Board'),
(69581, 'https://ror.org/05dv2rg34', 'no_lang_code', 1, 'https://ror.org/05dv2rg34 2P-Info (Poland)'),
(69582, 'https://ror.org/05dw07152', 'no_lang_code', 1, 'https://ror.org/05dw07152 Novo Nordisk (India)'),
(69583, 'https://ror.org/05dx52749', 'en', 1, 'https://ror.org/05dx52749 Ministry of Health and Wellness'),
(69584, 'https://ror.org/05dzk5241', 'en', 1, 'https://ror.org/05dzk5241 Bern Economic Development Agency Standortfƶrderung Kanton Bern'),
(69585, 'https://ror.org/05e0we980', 'no_lang_code', 1, 'https://ror.org/05e0we980 Good Homes Alliance (United Kingdom)'),
(69586, 'https://ror.org/05e189971', 'en', 1, 'https://ror.org/05e189971 Heilongjiang Vocational College of Art é»‘é¾™ę±Ÿč‰ŗęœÆčŒäøšå­¦é™¢'),
(69587, 'https://ror.org/05e2j7v98', 'en', 1, 'https://ror.org/05e2j7v98 The Modern English Society of Korea ķ˜„ėŒ€ ķ•œźµ­ ģ˜ģ–“ ķ•™ķšŒ'),
(69588, 'https://ror.org/05e59pk11', 'no_lang_code', 1, 'https://ror.org/05e59pk11 Green Tomato (China)'),
(69589, 'https://ror.org/05e5vsw78', 'no_lang_code', 1, 'https://ror.org/05e5vsw78 Lukoil (Russia) Š˜ŃŃ‚Š¾Ń€ŠøŃ'),
(69590, 'https://ror.org/05e5xw908', 'no_lang_code', 1, 'https://ror.org/05e5xw908 Advanced Digital Innovation (United Kingdom)'),
(69591, 'https://ror.org/05e6vta90', 'no_lang_code', 1, 'https://ror.org/05e6vta90 Cypralis (United Kingdom)'),
(69592, 'https://ror.org/05e7fdz72', 'no_lang_code', 1, 'https://ror.org/05e7fdz72 Futuregov (United Kingdom)'),
(69593, 'https://ror.org/05e81p556', 'en', 1, 'https://ror.org/05e81p556 Korea Corporate Education Center ķ•œźµ­źø°ģ—…źµģœ”ģ„¼ķ„°'),
(69594, 'https://ror.org/05e8j1012', 'en', 1, 'https://ror.org/05e8j1012 The Modern English Drama Association of Korea ķ˜„ėŒ€ ķ•œźµ­ ģ—°ź·¹ ķ•™ķšŒ'),
(69595, 'https://ror.org/05e91m220', 'no_lang_code', 1, 'https://ror.org/05e91m220 NC bit (South Korea)'),
(69596, 'https://ror.org/05e948p44', 'en', 1, 'https://ror.org/05e948p44 Native Mental Health Association of Canada'),
(69597, 'https://ror.org/05e9zkt34', 'en', 1, 'https://ror.org/05e9zkt34 Freshfields Bruckhaus Deringer'),
(69598, 'https://ror.org/05eaeap32', 'en', 1, 'https://ror.org/05eaeap32 Korean Speech-Language & Hearing Association'),
(69599, 'https://ror.org/05ec5ky31', 'no_lang_code', 1, 'https://ror.org/05ec5ky31 Eternal East Group (China)'),
(69600, 'https://ror.org/05ecd4168', 'no_lang_code', 1, 'https://ror.org/05ecd4168 Chongqing Electromechanical Holdings (China) é‡åŗ†ęœŗē”µęŽ§č‚”'),
(69601, 'https://ror.org/05ee18g42', 'en', 1, 'https://ror.org/05ee18g42 Lionra na hƉireann um Chomhionanns Transinscne Transgender Equality Network Ireland'),
(69602, 'https://ror.org/05eg09m10', 'en', 1, 'https://ror.org/05eg09m10 Fujian Province Science and Technology Association ē¦å»ŗēœē§‘å­¦ęŠ€ęœÆåä¼š'),
(69603, 'https://ror.org/05eg7b102', 'no_lang_code', 1, 'https://ror.org/05eg7b102 BeoCare (United States)'),
(69604, 'https://ror.org/05egxdg81', 'en', 1, 'https://ror.org/05egxdg81 Institute of Advanced Manufacturing Technology'),
(69605, 'https://ror.org/05egxm427', 'no_lang_code', 1, 'https://ror.org/05egxm427 +H2O (Poland)'),
(69606, 'https://ror.org/05es75p31', 'en', 1, 'https://ror.org/05es75p31 Korea Environmental Policy and Administration Society ķ•œźµ­ ķ™˜ź²½ ģ •ģ±… ꓀리 ķ•™ķšŒ'),
(69607, 'https://ror.org/05espyj63', 'en', 1, 'https://ror.org/05espyj63 Irish Human Rights and Equality Commission'),
(69608, 'https://ror.org/05etjgx39', 'en', 1, 'https://ror.org/05etjgx39 Council for International Exchange of Scholars'),
(69609, 'https://ror.org/05etzsm06', 'en', 1, 'https://ror.org/05etzsm06 Shenzhen Academy of Aerospace Technology ę·±åœ³čˆŖå¤©ē§‘ęŠ€ē ”ē©¶é™¢'),
(69610, 'https://ror.org/05evttw71', 'es', 1, 'https://ror.org/05evttw71 Ministerio de Salud - Provincia de Buenos Aires'),
(69611, 'https://ror.org/05ez11m68', 'en', 1, 'https://ror.org/05ez11m68 Kahoolawe Island Reserve Commission'),
(69612, 'https://ror.org/05f399j69', 'en', 1, 'https://ror.org/05f399j69 Zhejiang Metallurgical Research Institute ęµ™ę±Ÿå†¶é‡‘ē ”ē©¶é™¢'),
(69613, 'https://ror.org/05f6z3f65', 'no_lang_code', 1, 'https://ror.org/05f6z3f65 Spiretronic (United States)'),
(69614, 'https://ror.org/05f71tw16', 'no_lang_code', 1, 'https://ror.org/05f71tw16 Ipsos (United Kingdom)'),
(69615, 'https://ror.org/05f7d9x89', 'en', 1, 'https://ror.org/05f7d9x89 NYC H2O'),
(69616, 'https://ror.org/05f96jg21', 'it', 1, 'https://ror.org/05f96jg21 PromoFirenze, PromoFirenze Azienda Speciale della Camera di Commercio di Firenze'),
(69617, 'https://ror.org/05far8k50', 'en', 1, 'https://ror.org/05far8k50 The French Society of Korea ķ•œźµ­ķ”„ėž‘ģŠ¤ķ•™ķšŒ'),
(69618, 'https://ror.org/05fbfky85', 'en', 1, 'https://ror.org/05fbfky85 Sichuan Dongpo China Kimchi Industrial Technology Research Institute å››å·äøœå”äø­å›½ę³”čœäŗ§äøšęŠ€ęœÆē ”ē©¶é™¢ę˜Æåŗ”ę³”'),
(69619, 'https://ror.org/05fc6mp70', 'en', 1, 'https://ror.org/05fc6mp70 General Directorate of Forestry ORMAN GENEL MƜDƜRLƜĞƜ'),
(69620, 'https://ror.org/05fd8mt79', 'no_lang_code', 1, 'https://ror.org/05fd8mt79 Casale (Switzerland)'),
(69621, 'https://ror.org/05fg5ca88', 'no', 1, 'https://ror.org/05fg5ca88 Vest-Agder fylkeskommune'),
(69622, 'https://ror.org/05fgdse54', 'en', 1, 'https://ror.org/05fgdse54 Korea Association for Nondestructive Testing ķ•œźµ­ ė¹„ķŒŒź““ 검사 ķ˜‘ķšŒ'),
(69623, 'https://ror.org/05fhdzx69', 'en', 1, 'https://ror.org/05fhdzx69 Federal Scientific Agroengineering Center VIM Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ агроинженерный центр Š’Š˜Šœ"'),
(69624, 'https://ror.org/05fhjra85', 'en', 1, 'https://ror.org/05fhjra85 Ailtearachd is Dealbhadh na h-Alba Architecture and Design Scotland'),
(69625, 'https://ror.org/05fj2by39', 'en', 1, 'https://ror.org/05fj2by39 Cairnmillar Institute'),
(69626, 'https://ror.org/05fn69a96', 'en', 1, 'https://ror.org/05fn69a96 Irish Equine Centre'),
(69627, 'https://ror.org/05ft43x45', 'no_lang_code', 1, 'https://ror.org/05ft43x45 Themis (India)'),
(69628, 'https://ror.org/05fxdte78', 'no_lang_code', 1, 'https://ror.org/05fxdte78 Ceva Animal Health (United Kingdom)'),
(69629, 'https://ror.org/05fyggb33', 'no_lang_code', 1, 'https://ror.org/05fyggb33 Research Institute VOLGA (Russia) ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Ā«Š’ŠžŠ›Š“ŠĀ»'),
(69630, 'https://ror.org/05fz3xt27', 'en', 1, 'https://ror.org/05fz3xt27 Institute of Polymer Materials and Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии растений, генетики Šø биоинженерии'),
(69631, 'https://ror.org/05g0b2873', 'no_lang_code', 1, 'https://ror.org/05g0b2873 Cogent (United Kingdom)'),
(69632, 'https://ror.org/05g0va229', 'no_lang_code', 1, 'https://ror.org/05g0va229 Hana Pharm (South Korea) ķ•˜ė‚˜ģ œģ•½ģ£¼ģ‹ķšŒģ‚¬'),
(69633, 'https://ror.org/05g1fka72', 'de', 1, 'https://ror.org/05g1fka72 Ministerium der Deutschsprachigen Gemeinschaft'),
(69634, 'https://ror.org/05g3b0q91', 'en', 1, 'https://ror.org/05g3b0q91 Kahnawake Schools Diabetes Prevention Project'),
(69635, 'https://ror.org/05g7ye804', 'en', 1, 'https://ror.org/05g7ye804 Fota Wildlife Park'),
(69636, 'https://ror.org/05g8xd728', 'en', 1, 'https://ror.org/05g8xd728 Jason Burges Studio'),
(69637, 'https://ror.org/05g9k3k07', 'en', 1, 'https://ror.org/05g9k3k07 Nethradhama Superspeciality Eye Hospital ą²Øą³‡ą²¤ą³ą²°ą²§ą²¾ą²® ą²øą³‚ą²Ŗą²°ą³ ą²øą³ą²Ŗą³†ą²¶ą²¾ą²²ą²æą²Ÿą²æ ą²•ą²£ą³ą²£ą²æą²Ø ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(69638, 'https://ror.org/05gc25a42', 'no_lang_code', 1, 'https://ror.org/05gc25a42 Keyence (Japan) ć‚­ćƒ¼ć‚Øćƒ³ć‚¹'),
(69639, 'https://ror.org/05gcdb333', 'no_lang_code', 1, 'https://ror.org/05gcdb333 DataTalk (United Kingdom)'),
(69640, 'https://ror.org/05ge22856', 'en', 1, 'https://ror.org/05ge22856 All-Russian Research Institute of Veterinary Sanitation, Hygiene and Ecology Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарной санитарии, гигиены Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(69641, 'https://ror.org/05gennv44', 'en', 1, 'https://ror.org/05gennv44 Korea Service Management Society ķ•œźµ­ģ„œė¹„ģŠ¤ź²½ģ˜ķ•™ķšŒ'),
(69642, 'https://ror.org/05gfq0q56', 'no_lang_code', 1, 'https://ror.org/05gfq0q56 Global optical communication (South Korea) źø€ė”œė²Œź“‘ķ†µģ‹ '),
(69643, 'https://ror.org/05gftfe97', 'no_lang_code', 1, 'https://ror.org/05gftfe97 China Mobile (China) äø­å›½ē§»åŠØ'),
(69644, 'https://ror.org/05gga8159', 'en', 1, 'https://ror.org/05gga8159 Yakut Scientific Research Institute of Agriculture ŠÆŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° имени М.Š“. Дафронова'),
(69645, 'https://ror.org/05gjb9r34', 'en', 1, 'https://ror.org/05gjb9r34 Siberian Research and Technological Institute for Processing Agricultural Products Š”ŠøŠ±ŠøŃ€ŃŠŗŠ¾Š¼Ńƒ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š¼Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ переработки ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŠæŃ€Š¾Š“ŃƒŠŗŃ†ŠøŠø'),
(69646, 'https://ror.org/05gjkvy96', 'en', 1, 'https://ror.org/05gjkvy96 Institute of Cultural Affairs'),
(69647, 'https://ror.org/05gk6fr31', 'en', 1, 'https://ror.org/05gk6fr31 Traffic Management Research Institute'),
(69648, 'https://ror.org/05gk7hr65', 'no_lang_code', 1, 'https://ror.org/05gk7hr65 CrystalGenomics (South Korea) 크리스탈 ģœ ģ „ģ²“ķ•™'),
(69649, 'https://ror.org/05gkpvg94', 'en', 1, 'https://ror.org/05gkpvg94 Korean Institute of Southeast Asian Studies ģ‚¬ė‹Øė²•ģø ķ•œźµ­ė™ė‚Øģ•„ģ—°źµ¬ģ†Œ'),
(69650, 'https://ror.org/05gkt5054', 'no_lang_code', 1, 'https://ror.org/05gkt5054 Agilent Technologies (Switzerland)'),
(69651, 'https://ror.org/05gn27172', 'en', 1, 'https://ror.org/05gn27172 Society for Asian Philosophy in Korea ķ•œźµ­ė™ģ–‘ģ² ķ•™ķšŒ'),
(69652, 'https://ror.org/05gq6gs51', 'en', 1, 'https://ror.org/05gq6gs51 Korean Association for Radiation Protection ėŒ€ķ•œė°©ģ‚¬ģ„ ė°©ģ–“ķ•™ķšŒ'),
(69653, 'https://ror.org/05gsrqd02', 'en', 1, 'https://ror.org/05gsrqd02 International Crisis Group'),
(69654, 'https://ror.org/05gwh5f13', 'no_lang_code', 1, 'https://ror.org/05gwh5f13 Sistema (Russia)'),
(69655, 'https://ror.org/05gxd5275', 'en', 1, 'https://ror.org/05gxd5275 Association Canadienne pour la PrƩvention du Suicide Canadian Association for Suicide Prevention'),
(69656, 'https://ror.org/05h0pr162', 'fr', 1, 'https://ror.org/05h0pr162 FƩdƩration des Commissions Scolaires du QuƩbec'),
(69657, 'https://ror.org/05h37xr68', 'en', 1, 'https://ror.org/05h37xr68 Asha Hospital'),
(69658, 'https://ror.org/05h577t51', 'en', 1, 'https://ror.org/05h577t51 Korean Family Welfare Society ķ•œźµ­ź°€ģ”±ģ‚¬ķšŒė³µģ§€ķ•™ķšŒģ˜'),
(69659, 'https://ror.org/05h57he97', 'en', 1, 'https://ror.org/05h57he97 Ningbo Entry-Exit Inspection And Quarantine Bureau å®ę³¢å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(69660, 'https://ror.org/05h63pk13', 'en', 1, 'https://ror.org/05h63pk13 Baltic and International Maritime Council'),
(69661, 'https://ror.org/05h8mcx43', 'en', 1, 'https://ror.org/05h8mcx43 Korean Association of Architectural History ź±“ģ¶•ģ—­ģ‚¬ķ•™ķšŒ'),
(69662, 'https://ror.org/05h8w0m23', 'en', 1, 'https://ror.org/05h8w0m23 Leukaemia & Lymphoma NI'),
(69663, 'https://ror.org/05h9fft46', 'en', 1, 'https://ror.org/05h9fft46 North Carolina Coalition Against Domestic Violence'),
(69664, 'https://ror.org/05h9jst55', 'no_lang_code', 1, 'https://ror.org/05h9jst55 Dae Hwa Pharm (South Korea)'),
(69665, 'https://ror.org/05h9ndr48', 'en', 1, 'https://ror.org/05h9ndr48 Institute Of Historic Building Conservation'),
(69666, 'https://ror.org/05hadht38', 'no_lang_code', 1, 'https://ror.org/05hadht38 National Informatics Corporation (Iran) ي ؓرکت Ł…Ł„ŁŠ Ų§Ł†ŁŁˆŲ±Ł…Ų§ŲŖŁŠŚ©'),
(69667, 'https://ror.org/05hamn538', 'en', 1, 'https://ror.org/05hamn538 Bundesanstalt für Agrarwirtschaft Federal Institute of Agricultural Economics'),
(69668, 'https://ror.org/05hatgd07', 'no_lang_code', 1, 'https://ror.org/05hatgd07 Smartbay Ireland'),
(69669, 'https://ror.org/05hb5sg68', 'no_lang_code', 1, 'https://ror.org/05hb5sg68 Johnson & Johnson (India) ą¤œą„‰ą¤Øą„ą¤øą¤Ø आणि ą¤œą„‰ą¤Øą„ą¤øą¤Ø ą¤Ŗą„ą¤°ą¤¾ą¤Æą¤µą„ą¤¹ą„‡ą¤Ÿ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤” ą¤œą„‰ą¤Øą„ą¤øą¤Ø और ą¤œą„‰ą¤Øą„ą¤øą¤Ø ą¤Ŗą„ą¤°ą¤¾ą¤Æą„‹ą¤œą¤æą¤¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤” ą²œą²¾ą²Øą³ą²øą²Øą³ ą²®ą²¤ą³ą²¤ą³ ą²œą²¾ą²Øą³ą²øą²Øą³ ą²Ŗą³ą²°ą³ˆą²µą³‡ą²Ÿą³ ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(69670, 'https://ror.org/05hczvf86', 'no_lang_code', 1, 'https://ror.org/05hczvf86 Boehringer Ingelheim (China) å‹ƒęž—ę ¼ę®·ę ¼ēæ°'),
(69671, 'https://ror.org/05he9zt43', 'en', 1, 'https://ror.org/05he9zt43 Korean Association for Religious Studies ķ•œźµ­ 종교 ķ•™ķšŒ'),
(69672, 'https://ror.org/05hf6yg30', 'no_lang_code', 1, 'https://ror.org/05hf6yg30 Central Research Institute for Special Machinery (Russia) Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(69673, 'https://ror.org/05hfj9732', 'en', 1, 'https://ror.org/05hfj9732 Minsk Regional Institute of Education Development Минский областной ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(69674, 'https://ror.org/05hfx5z17', 'en', 1, 'https://ror.org/05hfx5z17 Public Radio Exchange'),
(69675, 'https://ror.org/05hjg3r73', 'en', 1, 'https://ror.org/05hjg3r73 Hong Kong Federation of Innovative Technologies and Manufacturing Industries é¦™ęøÆå‰µę–°ē§‘ęŠ€åŠč£½é€ ę„­čÆåˆēø½ęœƒ'),
(69676, 'https://ror.org/05hky6p02', 'en', 1, 'https://ror.org/05hky6p02 Institute of Atmospheric Pollution Research Istituto sull’Inquinamento Atmosferico'),
(69677, 'https://ror.org/05hmph265', 'en', 1, 'https://ror.org/05hmph265 The Korean Association of Sports and Entertainment Law ķ•œźµ­ģŠ¤ķ¬ģø ģ—”ķ„°ķ…ŒģøėØ¼ķŠøė²•ķ•™ķšŒ'),
(69678, 'https://ror.org/05hn8j260', 'no_lang_code', 1, 'https://ror.org/05hn8j260 Administrația Porturilor Maritime Constantza Port (Romania)'),
(69679, 'https://ror.org/05hnet169', 'en', 1, 'https://ror.org/05hnet169 Chennai Skin Foundation & Yesudian Research Institute'),
(69680, 'https://ror.org/05hrf7s75', 'en', 1, 'https://ror.org/05hrf7s75 All-Russian State Scientific Research Institute for Control, Standardization and Certification of Veterinary Preparations Всероссийский Š³Š¾ŃŃƒŠ“арственный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŠ¾Š½Ń‚Ń€Š¾Š»Ń, станГартизации Šø сертификации ветеринарных препаратов'),
(69681, 'https://ror.org/05hrscm27', 'fr', 1, 'https://ror.org/05hrscm27 CRIIRAD, Commission de Recherche et d’Information IndĆ©pendantes sur la RadioactivitĆ©'),
(69682, 'https://ror.org/05htczx02', 'no_lang_code', 1, 'https://ror.org/05htczx02 Prada (Italy)'),
(69683, 'https://ror.org/05hte8b97', 'en', 1, 'https://ror.org/05hte8b97 Institute on Social Theory and Dynamics ē¤¾ä¼šē†č«–ćƒ»å‹•ę…‹ē ”ē©¶ę‰€'),
(69684, 'https://ror.org/05hthhc05', 'en', 1, 'https://ror.org/05hthhc05 State Institute for the Design of Non-Ferrous Metallurgy Enterprises Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃŽ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠ¹ цветной Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø'),
(69685, 'https://ror.org/05hwkqh71', 'no_lang_code', 1, 'https://ror.org/05hwkqh71 Frenzoo (China)'),
(69686, 'https://ror.org/05hxcq922', 'en', 1, 'https://ror.org/05hxcq922 Heilongjiang Electric Power Workers University é»‘é¾™ę±Ÿē”µåŠ›čŒå·„å¤§å­¦'),
(69687, 'https://ror.org/05hxzkx81', 'es', 1, 'https://ror.org/05hxzkx81 Instituto Canario de Investigaciones Agrarias'),
(69688, 'https://ror.org/05hzjar70', 'no_lang_code', 1, 'https://ror.org/05hzjar70 Bristol-Myers Squibb (South Korea) ėøŒė¦¬ģŠ¤ķ†Ø-ė§ˆģ“ģ–“ģŠ¤ ģŠ¤ķ…'),
(69689, 'https://ror.org/05j0ypg59', 'en', 1, 'https://ror.org/05j0ypg59 Gansu Great Wall Electrical and Electronics Engineering Research Institute ē”˜č‚ƒé•æåŸŽē”µå·„ē”µå™Øå·„ēØ‹ē ”ē©¶é™¢'),
(69690, 'https://ror.org/05j1c1r74', 'no_lang_code', 1, 'https://ror.org/05j1c1r74 Ionotec (United Kingdom)'),
(69691, 'https://ror.org/05j1wft12', 'no_lang_code', 1, 'https://ror.org/05j1wft12 Taube Koret Center'),
(69692, 'https://ror.org/05j26dk60', 'no_lang_code', 1, 'https://ror.org/05j26dk60 AviChina Industry & Technology (China) äø­å›½čˆŖē©ŗē§‘ęŠ€å·„äøšč‚”ä»½ęœ‰é™å…¬åø'),
(69693, 'https://ror.org/05j2cg215', 'en', 1, 'https://ror.org/05j2cg215 Cambridge Housing Society'),
(69694, 'https://ror.org/05j2z6f89', 'en', 1, 'https://ror.org/05j2z6f89 Delhi State Cancer Institute'),
(69695, 'https://ror.org/05j4s2c10', 'en', 1, 'https://ror.org/05j4s2c10 Northern Ireland Commissioner for Children and Young People'),
(69696, 'https://ror.org/05j5wde68', 'en', 1, 'https://ror.org/05j5wde68 Eterna Massive Open Laboratory'),
(69697, 'https://ror.org/05j84vd61', 'en', 1, 'https://ror.org/05j84vd61 Korean Association of Space & Environment Research ķ•œźµ­ 우주 ķ™˜ź²½ 연구 ķ•™ķšŒ'),
(69698, 'https://ror.org/05j88yh83', 'no_lang_code', 1, 'https://ror.org/05j88yh83 Qiagen (India)'),
(69699, 'https://ror.org/05j918z43', 'en', 1, 'https://ror.org/05j918z43 Hunan Institute of Nuclear Agronomy and Space Breeding ę¹–å—ēœę øå†œå­¦äøŽčˆŖå¤©č‚²ē§ē ”ē©¶ę‰€'),
(69700, 'https://ror.org/05j9mt277', 'fr', 1, 'https://ror.org/05j9mt277 RƩseau SolidaritƩ ItinƩrance du QuƩbec'),
(69701, 'https://ror.org/05jaz3369', 'no_lang_code', 1, 'https://ror.org/05jaz3369 Indian Immunologicals (India)'),
(69702, 'https://ror.org/05jbr3j48', 'no_lang_code', 1, 'https://ror.org/05jbr3j48 Lakma (Poland)'),
(69703, 'https://ror.org/05jca5f53', 'en', 1, 'https://ror.org/05jca5f53 Heilongjiang Academy of Agricultural Machinery Engineering é»‘é¾™ę±Ÿēœå†œäøšęœŗę¢°å·„ēØ‹ē§‘å­¦ē ”ē©¶é™¢'),
(69704, 'https://ror.org/05jct2b89', 'en', 1, 'https://ror.org/05jct2b89 Ekaterinburg Research Institute of Viral Infections Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠŠ˜Š˜ Š²ŠøŃ€ŃƒŃŠ½Ń‹Ń… инфекций'),
(69705, 'https://ror.org/05jd85x98', 'en', 1, 'https://ror.org/05jd85x98 Korean Cultural Dynamics ė™ģ–‘ė¬øķ™”ģ—°źµ¬ģ›'),
(69706, 'https://ror.org/05jdqs103', 'en', 1, 'https://ror.org/05jdqs103 Interior Health'),
(69707, 'https://ror.org/05jg7y437', 'no_lang_code', 1, 'https://ror.org/05jg7y437 Desktop Genetics (United Kingdom)'),
(69708, 'https://ror.org/05jhaqb62', 'no_lang_code', 1, 'https://ror.org/05jhaqb62 (주)ģž„ģ„±E.P.S에 ģ˜¤ģ‹ ź²ƒģ„ ķ™˜ģ˜ķ•©ė‹ˆė‹¤ Jangsung (South Korea)'),
(69709, 'https://ror.org/05jnpxa89', 'no_lang_code', 1, 'https://ror.org/05jnpxa89 AnaBio Technologies (Ireland)'),
(69710, 'https://ror.org/05jnsc004', 'fr', 1, 'https://ror.org/05jnsc004 Association QuĆ©bĆ©coise du Personnel de Direction des Ɖcoles'),
(69711, 'https://ror.org/05jrea685', 'en', 1, 'https://ror.org/05jrea685 Center for Agricultural Research å†œäøšęŠ€ęœÆäø­åæƒ'),
(69712, 'https://ror.org/05jrpd556', 'de', 1, 'https://ror.org/05jrpd556 Niedersächsisches Ministerium für Wirtschaft, Arbeit und Verkehr'),
(69713, 'https://ror.org/05jsb4h04', 'en', 1, 'https://ror.org/05jsb4h04 Korea Association of Vocational Education ķ•œźµ­ģ§ģ—…ėŠ„ė „źµģœ”ķ˜‘ķšŒ'),
(69714, 'https://ror.org/05jsj3p18', 'en', 1, 'https://ror.org/05jsj3p18 National Agricultural Research Institute'),
(69715, 'https://ror.org/05jsss136', 'en', 1, 'https://ror.org/05jsss136 Central Research Institute of Engineering Troops of the Ministry of Defense of the Russian Federation Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инженерных войск ŠœŠøŠ½ŠøŃŃ‚ерства обороны Российской ФеГерации'),
(69716, 'https://ror.org/05jt2eq53', 'en', 1, 'https://ror.org/05jt2eq53 Korea Nuclear International Cooperation Foundation ķ•œźµ­ģ›ģžė „ķ˜‘ė „ģž¬ė‹Ø'),
(69717, 'https://ror.org/05jv1dg95', 'no_lang_code', 1, 'https://ror.org/05jv1dg95 eSpot Lighting (China)'),
(69718, 'https://ror.org/05jvc9976', 'no_lang_code', 1, 'https://ror.org/05jvc9976 ENBIO (Ireland)'),
(69719, 'https://ror.org/05jxkdk91', 'en', 1, 'https://ror.org/05jxkdk91 Charity Commission for England and Wales'),
(69720, 'https://ror.org/05jzn3892', 'de', 1, 'https://ror.org/05jzn3892 Bundesverband Flachglas Federal Flat Glass Association'),
(69721, 'https://ror.org/05jzxm583', 'no_lang_code', 1, 'https://ror.org/05jzxm583 Williams (United Kingdom)'),
(69722, 'https://ror.org/05k05ta39', 'no_lang_code', 1, 'https://ror.org/05k05ta39 Guidewire (United States)'),
(69723, 'https://ror.org/05k1bk987', 'no_lang_code', 1, 'https://ror.org/05k1bk987 Hiflux (United Kingdom)'),
(69724, 'https://ror.org/05k1xe006', 'no_lang_code', 1, 'https://ror.org/05k1xe006 Shandong Provincial Communications Planning and Design Institute (China) å±±äøœēœäŗ¤é€šč§„åˆ’č®¾č®”é™¢'),
(69725, 'https://ror.org/05k2dce86', 'en', 1, 'https://ror.org/05k2dce86 Donga Broadcasting University of Arts ė™ģ•„ė°©ģ†”ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(69726, 'https://ror.org/05k2j8e48', 'en', 1, 'https://ror.org/05k2j8e48 Jiangxi University of Technology ę±Ÿč„æē§‘ęŠ€å­¦é™¢'),
(69727, 'https://ror.org/05k2sh226', 'en', 1, 'https://ror.org/05k2sh226 Bard College Berlin'),
(69728, 'https://ror.org/05k393r70', 'en', 1, 'https://ror.org/05k393r70 Hunan Energy Research Institute ę¹–å—ēœčƒ½ęŗē ”ē©¶ę‰€'),
(69729, 'https://ror.org/05k460e55', 'en', 1, 'https://ror.org/05k460e55 Planetwork'),
(69730, 'https://ror.org/05k58k622', 'no_lang_code', 1, 'https://ror.org/05k58k622 Sunonwealth Electric Machine Industry (China)'),
(69731, 'https://ror.org/05k5h6g73', 'no_lang_code', 1, 'https://ror.org/05k5h6g73 Bodywhys'),
(69732, 'https://ror.org/05k7qec05', 'fr', 1, 'https://ror.org/05k7qec05 Ministère de l''Education Nationale de CÓte d''Ivoire'),
(69733, 'https://ror.org/05k7yfd33', 'en', 1, 'https://ror.org/05k7yfd33 Korea Lifelong Education Center ķ•œźµ­ķ‰ģƒźµģœ”ģ›'),
(69734, 'https://ror.org/05k8rth88', 'en', 1, 'https://ror.org/05k8rth88 ESIC Hospital इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤ˆą¤ą¤øą¤†ą¤ˆ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(69735, 'https://ror.org/05k953v63', 'no_lang_code', 1, 'https://ror.org/05k953v63 Gionee (China) 金立'),
(69736, 'https://ror.org/05kb58m03', 'en', 1, 'https://ror.org/05kb58m03 21st Century Political Science Association 21ģ„øźø°ģ •ģ¹˜ķ•™ķšŒ'),
(69737, 'https://ror.org/05kbfwb79', 'en', 1, 'https://ror.org/05kbfwb79 Center for Disease Analysis'),
(69738, 'https://ror.org/05kch1b73', 'en', 1, 'https://ror.org/05kch1b73 Institute of Justice ķ•™ķšŒ ģ •ģ˜ģ˜'),
(69739, 'https://ror.org/05kemy048', 'en', 1, 'https://ror.org/05kemy048 European Forest Institute'),
(69740, 'https://ror.org/05kextd02', 'no_lang_code', 1, 'https://ror.org/05kextd02 Holsin Engineering Consulting Group (China) åˆčÆšå·„ēØ‹å’ØčÆ¢é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(69741, 'https://ror.org/05kh3e232', 'en', 1, 'https://ror.org/05kh3e232 Korea Academy of Mental Health Social Work ķ•œźµ­ģ •ģ‹ ė³“ź±“ģ‚¬ķšŒė³µģ§€ķ•™ķšŒ'),
(69742, 'https://ror.org/05kh7ew82', 'no_lang_code', 1, 'https://ror.org/05kh7ew82 NexusCRO (India)'),
(69743, 'https://ror.org/05kp0wh78', 'en', 1, 'https://ror.org/05kp0wh78 Sagamore Institute'),
(69744, 'https://ror.org/05kqdk687', 'en', 1, 'https://ror.org/05kqdk687 Xiangyang Hospital of Traditional Chinese Medicine č„„é˜³äø­åŒ»åŒ»é™¢'),
(69745, 'https://ror.org/05krfyb07', 'no_lang_code', 1, 'https://ror.org/05krfyb07 MEMS RIGHT (China)'),
(69746, 'https://ror.org/05kt30h71', 'no_lang_code', 1, 'https://ror.org/05kt30h71 Laser 2000 (United Kingdom)'),
(69747, 'https://ror.org/05kt4a843', 'no_lang_code', 1, 'https://ror.org/05kt4a843 Owens Corning (Finland)'),
(69748, 'https://ror.org/05kt6fp70', 'no_lang_code', 1, 'https://ror.org/05kt6fp70 Sumana Hospital సుమానా ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(69749, 'https://ror.org/05kvfm871', 'no_lang_code', 1, 'https://ror.org/05kvfm871 Fibercore (United Kingdom)'),
(69750, 'https://ror.org/05kvt2j84', 'no_lang_code', 1, 'https://ror.org/05kvt2j84 C4 Carbides (United Kingdom)'),
(69751, 'https://ror.org/05kxkht56', 'en', 1, 'https://ror.org/05kxkht56 The Gemmological Association of Hong Kong'),
(69752, 'https://ror.org/05m4yff41', 'en', 1, 'https://ror.org/05m4yff41 Guangdong Institute of New Materials å¹æäøœēœę–°ęę–™ē ”ē©¶ę‰€'),
(69753, 'https://ror.org/05m5d6945', 'en', 1, 'https://ror.org/05m5d6945 Human Development Institute ģøź°„ 개발 ģ—°źµ¬ģ†Œ'),
(69754, 'https://ror.org/05m9b8032', 'fr', 1, 'https://ror.org/05m9b8032 Agence Luxembourgeoise d''Action Culturelle'),
(69755, 'https://ror.org/05mag7924', 'en', 1, 'https://ror.org/05mag7924 State Scientific Research Navigation and Hydrographic Institute Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ навигационно-гиГрографического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š°'),
(69756, 'https://ror.org/05mfwdr57', 'en', 1, 'https://ror.org/05mfwdr57 Gyeongbuk IT Convergence Industrial Technology Institute 경북ITģœµķ•©ģ‚°ģ—…źø°ģˆ ģ›'),
(69757, 'https://ror.org/05mk8j583', 'en', 1, 'https://ror.org/05mk8j583 Ministry of Labour, Employment and the Social and Solidarity Economy MinistĆØre du Travail, de l''Emploi et de l''Ɖconomie Sociale et Solidaire'),
(69758, 'https://ror.org/05mmqpp85', 'en', 1, 'https://ror.org/05mmqpp85 Acharya Shri Chander College of Medical Sciences and Hospital'),
(69759, 'https://ror.org/05mp1w822', 'no_lang_code', 1, 'https://ror.org/05mp1w822 Cathay Photonics (China) åœ‹ę³°å…‰é›»ęœ‰é™å…¬åø'),
(69760, 'https://ror.org/05mq0z459', 'no_lang_code', 1, 'https://ror.org/05mq0z459 Jiangsu Radio Scientific Research Institute (China) ę±Ÿč‹ēœę— ēŗæē”µē§‘å­¦ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(69761, 'https://ror.org/05mr5xg41', 'en', 1, 'https://ror.org/05mr5xg41 Shinsung University 신성 ėŒ€ķ•™źµ'),
(69762, 'https://ror.org/05mvt5123', 'no_lang_code', 1, 'https://ror.org/05mvt5123 Hyster-Yale Materials Handling (United States)'),
(69763, 'https://ror.org/05mw5z210', 'no_lang_code', 1, 'https://ror.org/05mw5z210 (ģž¬ė‹Ø)ė¶€ģ‚°ķ…Œķ¬ė…øķŒŒķ¬ Busan TechnoPark'),
(69764, 'https://ror.org/05n083m46', 'no_lang_code', 1, 'https://ror.org/05n083m46 Innovation Zed (Ireland)'),
(69765, 'https://ror.org/05n1bhg28', 'no_lang_code', 1, 'https://ror.org/05n1bhg28 Kazancompressormash ŠšŠ°Š·Š°Š½ŃŒŠŗŠ¾Š¼ŠæŃ€ŠµŃŃŠ¾Ń€Š¼Š°Ńˆ'),
(69766, 'https://ror.org/05n3q1w80', 'no_lang_code', 1, 'https://ror.org/05n3q1w80 Reyon Pharmaceutical (South Korea) ģ“ģ—°ģ œģ•½'),
(69767, 'https://ror.org/05n4dxt42', 'en', 1, 'https://ror.org/05n4dxt42 Wayne-Finger Lakes BOCES'),
(69768, 'https://ror.org/05n6r8r02', 'no_lang_code', 1, 'https://ror.org/05n6r8r02 Ukrainian Center of Environmental and Water Projects (Ukraine)'),
(69769, 'https://ror.org/05n6vhy89', 'en', 1, 'https://ror.org/05n6vhy89 Jacobs Levy Equity Management'),
(69770, 'https://ror.org/05n6zrm60', 'en', 1, 'https://ror.org/05n6zrm60 SWOG Cancer Research Network'),
(69771, 'https://ror.org/05ndtje96', 'no_lang_code', 1, 'https://ror.org/05ndtje96 LaVision (United Kingdom)'),
(69772, 'https://ror.org/05nh9ky12', 'en', 1, 'https://ror.org/05nh9ky12 Irish Archaeology Field School'),
(69773, 'https://ror.org/05nhh6248', 'en', 1, 'https://ror.org/05nhh6248 Ministry of the Interior ΄πουργείο Ī•ĻƒĻ‰Ļ„ĪµĻĪ¹ĪŗĻŽĪ½'),
(69774, 'https://ror.org/05nm1mt28', 'de', 1, 'https://ror.org/05nm1mt28 DBI - Gastechnologisches Institut'),
(69775, 'https://ror.org/05npd2m35', 'no_lang_code', 1, 'https://ror.org/05npd2m35 Overstock (United States)'),
(69776, 'https://ror.org/05npt9421', 'no_lang_code', 1, 'https://ror.org/05npt9421 Ancon (United Kingdom)'),
(69777, 'https://ror.org/05nqkcp91', 'no_lang_code', 1, 'https://ror.org/05nqkcp91 WengFu Group (China)'),
(69778, 'https://ror.org/05ntybz92', 'en', 1, 'https://ror.org/05ntybz92 Guangdong Provincial Academy of Building Research Group å¹æäøœēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢é›†å›¢'),
(69779, 'https://ror.org/05nvwdp14', 'no_lang_code', 1, 'https://ror.org/05nvwdp14 AM Technology (United Kingdom)'),
(69780, 'https://ror.org/05nwd8d95', 'no_lang_code', 1, 'https://ror.org/05nwd8d95 Kowsar Medical (Netherlands)'),
(69781, 'https://ror.org/05p0jfk72', 'no_lang_code', 1, 'https://ror.org/05p0jfk72 Infas Institut für Angewandte Sozialwissenschaft (Germany)'),
(69782, 'https://ror.org/05p0krc37', 'en', 1, 'https://ror.org/05p0krc37 The Korean Society of Greco-Roman Studies ķ•œźµ­ģ„œģ–‘ź³ ģ „ķ•™ķšŒ'),
(69783, 'https://ror.org/05p3nte65', 'en', 1, 'https://ror.org/05p3nte65 The Korean Society for the Study of Career Education ķ•œźµ­ 직업 교윔 ģ—°źµ¬ķšŒ'),
(69784, 'https://ror.org/05p5dcf94', 'fr', 1, 'https://ror.org/05p5dcf94 RƩseau des Centres de Ressources PƩrinatales'),
(69785, 'https://ror.org/05p859a12', 'no_lang_code', 1, 'https://ror.org/05p859a12 Ferrari (Italy)'),
(69786, 'https://ror.org/05pagb310', 'en', 1, 'https://ror.org/05pagb310 Korean Women''s Literature ź³ ė ¤ 사항'),
(69787, 'https://ror.org/05pd8ej68', 'no_lang_code', 1, 'https://ror.org/05pd8ej68 Crossword Cybersecurity (United Kingdom)'),
(69788, 'https://ror.org/05penet29', 'en', 1, 'https://ror.org/05penet29 Dr. Humeira Badsha Medical Center'),
(69789, 'https://ror.org/05pf6rt98', 'en', 1, 'https://ror.org/05pf6rt98 Black Coalition for AIDS Prevention'),
(69790, 'https://ror.org/05pf8rm83', 'en', 1, 'https://ror.org/05pf8rm83 Modernized Chinese Medicine International Association å›½é™…ēŽ°ä»£åŒ–äø­čÆ'),
(69791, 'https://ror.org/05pgmek29', 'en', 1, 'https://ror.org/05pgmek29 Nizhny Tagil Institute for Testing Metals ŠŠøŠ¶Š½ŠµŃ‚Š°Š³ŠøŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠæŃ‹Ń‚Š°Š½ŠøŃ металлов'),
(69792, 'https://ror.org/05phhyq88', 'no_lang_code', 1, 'https://ror.org/05phhyq88 CSSC Offshore & Marine Engineering Company (China)'),
(69793, 'https://ror.org/05pjvcp59', 'no_lang_code', 1, 'https://ror.org/05pjvcp59 Ewha Biomedics (South Korea) ģ“ķ™”ė°”ģ“ģ˜¤ė©”ė”•ģŠ¤'),
(69794, 'https://ror.org/05pntjg19', 'en', 1, 'https://ror.org/05pntjg19 Amur Scientific Center ŠŠ¼ŃƒŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(69795, 'https://ror.org/05psg6c12', 'no_lang_code', 1, 'https://ror.org/05psg6c12 Sensata Technologies (Netherlands)'),
(69796, 'https://ror.org/05pwe3434', 'en', 1, 'https://ror.org/05pwe3434 The Federal Trust'),
(69797, 'https://ror.org/05pxcg049', 'no_lang_code', 1, 'https://ror.org/05pxcg049 Take-Two Interactive (United States)'),
(69798, 'https://ror.org/05py8xn22', 'no_lang_code', 1, 'https://ror.org/05py8xn22 Janssen (Hungary)'),
(69799, 'https://ror.org/05pz9kz68', 'en', 1, 'https://ror.org/05pz9kz68 All-Russian Scientific Research Institute of Horticulture named after IV Michurin Всероссийский ŠŠ˜Š˜ саГовоГства имени И. Š’. ŠœŠøŃ‡ŃƒŃ€ŠøŠ½Š°'),
(69800, 'https://ror.org/05q13b263', 'no_lang_code', 1, 'https://ror.org/05q13b263 NIIhimmash (Russia)'),
(69801, 'https://ror.org/05q23ne91', 'en', 1, 'https://ror.org/05q23ne91 State Research Institute "Crystal" Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ā«ŠšŃ€ŠøŃŃ‚Š°Š»Š»Ā»'),
(69802, 'https://ror.org/05q7ass71', 'en', 1, 'https://ror.org/05q7ass71 Immigrant Council of Ireland'),
(69803, 'https://ror.org/05q8mqd91', 'en', 1, 'https://ror.org/05q8mqd91 Hong Kong Science and Technology Parks Corporation é¦™ęøÆē§‘ęŠ€å›­å…¬åø'),
(69804, 'https://ror.org/05q950e27', 'en', 1, 'https://ror.org/05q950e27 English Language and Literature Association of Korea ķ•œźµ­ģ˜ģ–“ģ˜ė¬øķ•™ķšŒ'),
(69805, 'https://ror.org/05qapvh61', 'en', 1, 'https://ror.org/05qapvh61 The Korean Association of Slavic Eurasian Studies'),
(69806, 'https://ror.org/05qb29e48', 'no_lang_code', 1, 'https://ror.org/05qb29e48 Komipharm International (South Korea) ģ½”ėÆøķŒœ'),
(69807, 'https://ror.org/05qc7mv40', 'fr', 1, 'https://ror.org/05qc7mv40 De Veber'),
(69808, 'https://ror.org/05qcfb174', 'en', 1, 'https://ror.org/05qcfb174 Henan Province Water Conservancy Survey and Design Research ę²³å—ēœę°“åˆ©å‹˜ęµ‹č®¾č®”ē ”ē©¶ęœ‰é™å…¬åø'),
(69809, 'https://ror.org/05qcvps09', 'en', 1, 'https://ror.org/05qcvps09 Respond Housing Association'),
(69810, 'https://ror.org/05qf0w940', 'no_lang_code', 1, 'https://ror.org/05qf0w940 Tongling Nonferrous Metals Group Holding (China) é“œé™µęœ‰č‰²é‡‘å±žé›†å›¢ęŽ§č‚”ęœ‰é™å…¬åø'),
(69811, 'https://ror.org/05qfv6h82', 'no_lang_code', 1, 'https://ror.org/05qfv6h82 Nanjing Lishui Electronics Research Institute (China) å—äŗ¬äø½ę°“ē”µå­ē ”ē©¶ę‰€'),
(69812, 'https://ror.org/05qm21180', 'en', 1, 'https://ror.org/05qm21180 Beijing Advanced Sciences and Innovation Center åŒ—äŗ¬ē»¼åˆē ”ē©¶äø­åæƒ'),
(69813, 'https://ror.org/05qm99d82', 'en', 1, 'https://ror.org/05qm99d82 Nihon University Itabashi Hospital ę—„ęœ¬å¤§å­¦ęæę©‹ē—…é™¢'),
(69814, 'https://ror.org/05qp95904', 'en', 1, 'https://ror.org/05qp95904 Korean Society for Journalism and Communication Studies ķ•œźµ­ ģ €ė„ė¦¬ģ¦˜ ģ»¤ė®¤ė‹ˆģ¼€ģ“ģ…˜ ķ•™ķšŒ'),
(69815, 'https://ror.org/05qtmcx34', 'en', 1, 'https://ror.org/05qtmcx34 Environmental Justice Foundation'),
(69816, 'https://ror.org/05qw0wj36', 'fr', 1, 'https://ror.org/05qw0wj36 Cercle Finance du QuƩbec'),
(69817, 'https://ror.org/05qw2ag88', 'no_lang_code', 1, 'https://ror.org/05qw2ag88 Congenomics (United States)'),
(69818, 'https://ror.org/05qw55b97', 'en', 1, 'https://ror.org/05qw55b97 China Railway Construction Machinery Research & Design Institute äø­é“å·„ēØ‹ęœŗę¢°ē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åøé™¢ē®€ä»‹'),
(69819, 'https://ror.org/05qw5qh97', 'en', 1, 'https://ror.org/05qw5qh97 Macedonian Information Agency МакеГонска информативна Š°Š³ŠµŠ½Ń†ŠøŃ˜Š°'),
(69820, 'https://ror.org/05qwvj556', 'no_lang_code', 1, 'https://ror.org/05qwvj556 China National Heavy Duty Truck Group (China) äø­å›½é‡åž‹ę±½č½¦é›†å›¢ęœ‰é™å…¬åø'),
(69821, 'https://ror.org/05qxkh644', 'no_lang_code', 1, 'https://ror.org/05qxkh644 INSEAD'),
(69822, 'https://ror.org/05qzes018', 'en', 1, 'https://ror.org/05qzes018 Active Healthy Kids'),
(69823, 'https://ror.org/05r0sb604', 'en', 1, 'https://ror.org/05r0sb604 Kyungbok University ź²½ė³µėŒ€ķ•™źµ'),
(69824, 'https://ror.org/05r1f9v61', 'en', 1, 'https://ror.org/05r1f9v61 Guizhou Provincial Institute of Mountain Agricultural Machinery'),
(69825, 'https://ror.org/05r2fn790', 'en', 1, 'https://ror.org/05r2fn790 Korean Educational Psychology Association ķ•œźµ­źµģœ”ģ‹¬ė¦¬ķ•™ķšŒ'),
(69826, 'https://ror.org/05r3yzq04', 'en', 1, 'https://ror.org/05r3yzq04 All-Russian Scientific Research Institute for Operation of Nuclear Power Plants Всероссийский ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŃŠŗŃŠæŠ»ŃƒŠ°Ń‚Š°Ń†ŠøŠø атомных ŃŠ»ŠµŠŗŃ‚Ń€Š¾ŃŃ‚Š°Š½Ń†ŠøŠ¹'),
(69827, 'https://ror.org/05r783042', 'no_lang_code', 1, 'https://ror.org/05r783042 Vitargent (China)'),
(69828, 'https://ror.org/05r85wx35', 'no_lang_code', 1, 'https://ror.org/05r85wx35 Optrace (Ireland)'),
(69829, 'https://ror.org/05rb1p829', 'no_lang_code', 1, 'https://ror.org/05rb1p829 Chenming Group (China) 晨鸣集团'),
(69830, 'https://ror.org/05rbhdv87', 'en', 1, 'https://ror.org/05rbhdv87 Central Scientific Research Institute of Measuring Equipment Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ˜Š˜ ŠøŠ·Š¼ŠµŃ€ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ Š°ŠæŠæŠ°Ń€Š°Ń‚ŃƒŃ€Ń‹'),
(69831, 'https://ror.org/05rbhw377', 'no_lang_code', 1, 'https://ror.org/05rbhw377 Hanjin (South Korea) ķ•œģ§„ 그룹'),
(69832, 'https://ror.org/05rdw5k78', 'no_lang_code', 1, 'https://ror.org/05rdw5k78 Biocarbon Engineering (United Kingdom)'),
(69833, 'https://ror.org/05re20904', 'en', 1, 'https://ror.org/05re20904 Westminster Cathedral'),
(69834, 'https://ror.org/05reefs64', 'en', 1, 'https://ror.org/05reefs64 Noble Hospital'),
(69835, 'https://ror.org/05rekxz26', 'en', 1, 'https://ror.org/05rekxz26 Hallym University of Graduate Studies ķ•œė¦¼źµ­ģ œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(69836, 'https://ror.org/05rf8fe56', 'en', 1, 'https://ror.org/05rf8fe56 Liuzhou Institute of Automation Science'),
(69837, 'https://ror.org/05rfv2111', 'en', 1, 'https://ror.org/05rfv2111 All-Russian Research Institute of Radio Equipment ŠžŃ€Š“ŠµŠ½Š° Š¢Ń€ŃƒŠ“Š¾Š²Š¾Š³Š¾ ŠšŃ€Š°ŃŠ½Š¾Š³Š¾ Знамени Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š“ŠøŠ¾Š°ŠæŠæŠ°Ń€Š°Ń‚ŃƒŃ€Ń‹'),
(69838, 'https://ror.org/05rg3v683', 'en', 1, 'https://ror.org/05rg3v683 West Virginia Coalition Against Domestic Violence'),
(69839, 'https://ror.org/05rgt3j80', 'en', 1, 'https://ror.org/05rgt3j80 International Institute of Refrigeration'),
(69840, 'https://ror.org/05rjfmp35', 'no_lang_code', 1, 'https://ror.org/05rjfmp35 Alexium (United States)'),
(69841, 'https://ror.org/05rmdvv71', 'no_lang_code', 1, 'https://ror.org/05rmdvv71 Worldwide Intellectual Property Service (South Korea) 전세계 지적 ģž¬ģ‚°ź¶Œ ģ„œė¹„ģŠ¤'),
(69842, 'https://ror.org/05rmpy443', 'en', 1, 'https://ror.org/05rmpy443 Institute of Navigation'),
(69843, 'https://ror.org/05rn7n590', 'no_lang_code', 1, 'https://ror.org/05rn7n590 HeidelbergCement (Italy)'),
(69844, 'https://ror.org/05rpz9w55', 'no_lang_code', 1, 'https://ror.org/05rpz9w55 Gowell (China)'),
(69845, 'https://ror.org/05rr45446', 'de', 1, 'https://ror.org/05rr45446 Bundesverband CarSharing'),
(69846, 'https://ror.org/05rsjde41', 'no_lang_code', 1, 'https://ror.org/05rsjde41 Drukpol (Poland)'),
(69847, 'https://ror.org/05ryb2603', 'en', 1, 'https://ror.org/05ryb2603 Ministerstwo Rodziny, Pracy i Polityki Społecznej Ministry of Family, Labour and Social Policy'),
(69848, 'https://ror.org/05s6qms04', 'fr', 1, 'https://ror.org/05s6qms04 Institut Jacques Delors'),
(69849, 'https://ror.org/05s6v6872', 'en', 1, 'https://ror.org/05s6v6872 Chengdu Academy of Agriculture and Forestry Sciences ęˆéƒ½åø‚å†œęž—ē§‘å­¦é™¢'),
(69850, 'https://ror.org/05s7r0436', 'en', 1, 'https://ror.org/05s7r0436 The Society of Korean Language Education ķ•œźµ­ģ–“źµģœ”ķ•™ķšŒ'),
(69851, 'https://ror.org/05sc3yb31', 'en', 1, 'https://ror.org/05sc3yb31 Sunyani Technical University'),
(69852, 'https://ror.org/05scsxp22', 'en', 1, 'https://ror.org/05scsxp22 Growth Networks Uganda'),
(69853, 'https://ror.org/05scw8a36', 'no_lang_code', 1, 'https://ror.org/05scw8a36 Na Eun Hospital ė‚˜ģ€ 병원'),
(69854, 'https://ror.org/05scxdt25', 'en', 1, 'https://ror.org/05scxdt25 Drake Music'),
(69855, 'https://ror.org/05sdrja69', 'no_lang_code', 1, 'https://ror.org/05sdrja69 Janssen (Italy)'),
(69856, 'https://ror.org/05sg01b25', 'en', 1, 'https://ror.org/05sg01b25 Minnan University of Science and Technology'),
(69857, 'https://ror.org/05sgs4n22', 'en', 1, 'https://ror.org/05sgs4n22 Jilin Academy of Agricultural Machinery å‰ęž—ēœå†œäøšęœŗę¢°ē ”ē©¶é™¢'),
(69858, 'https://ror.org/05shez493', 'en', 1, 'https://ror.org/05shez493 Employment and Economic Development Office Tyƶ- ja elinkeinotoimisto'),
(69859, 'https://ror.org/05sj3q575', 'en', 1, 'https://ror.org/05sj3q575 European Union Agency for Law Enforcement Cooperation'),
(69860, 'https://ror.org/05sjd4488', 'en', 1, 'https://ror.org/05sjd4488 The Linguistic Science Society ģ–øģ–“ź³¼ķ•™ķšŒ'),
(69861, 'https://ror.org/05skt5b53', 'en', 1, 'https://ror.org/05skt5b53 Korean Infant and Child Care Society ķ•œźµ­ ģœ ģ•„ 볓윔 ķ•™ķšŒ'),
(69862, 'https://ror.org/05sn2dp47', 'en', 1, 'https://ror.org/05sn2dp47 The Society of Korean Language And Literature ģš°ė¦¬ģ–“ė¬øķ•™ķšŒ'),
(69863, 'https://ror.org/05spnqq37', 'en', 1, 'https://ror.org/05spnqq37 The Society of Korean Literary Criticism ķ•œźµ­ė¹„ķ‰ė¬øķ•™ķšŒėŠ”'),
(69864, 'https://ror.org/05sqbw136', 'no_lang_code', 1, 'https://ror.org/05sqbw136 Panasonic (China) ę¾äø‹ē”µå™Ø'),
(69865, 'https://ror.org/05sshc517', 'en', 1, 'https://ror.org/05sshc517 Kunshan Industrial Technology Research Institute ę˜†å±±åø‚å·„äøšęŠ€ęœÆē ”ē©¶é™¢'),
(69866, 'https://ror.org/05t0r7338', 'pl', 1, 'https://ror.org/05t0r7338 Centrum Gamma Knife'),
(69867, 'https://ror.org/05t4mrn89', 'no_lang_code', 1, 'https://ror.org/05t4mrn89 Scientific Research Institute of Metallurgical Technology (Russia)'),
(69868, 'https://ror.org/05t7cak84', 'en', 1, 'https://ror.org/05t7cak84 Scientific and Research Technological Institute Progress ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ā«ŠŸŃ€Š¾Š³Ń€ŠµŃŃ'),
(69869, 'https://ror.org/05t869972', 'no_lang_code', 1, 'https://ror.org/05t869972 Shell (Qatar)'),
(69870, 'https://ror.org/05t86wg70', 'en', 1, 'https://ror.org/05t86wg70 Agartala Government Medical College'),
(69871, 'https://ror.org/05ta4fp83', 'no_lang_code', 1, 'https://ror.org/05ta4fp83 Quanta Computer (China) 广达电脑'),
(69872, 'https://ror.org/05taf4c66', 'en', 1, 'https://ror.org/05taf4c66 The Korean Society Of Literary Education ķ•œźµ­ 문학 교윔 ķ•™ķšŒ'),
(69873, 'https://ror.org/05tb49488', 'en', 1, 'https://ror.org/05tb49488 Korea Institute of Finance ķ•œźµ­źøˆģœµģ—°źµ¬ģ›ģ€ ģ§€ė‚œ'),
(69874, 'https://ror.org/05tb8hj85', 'no_lang_code', 1, 'https://ror.org/05tb8hj85 Arya Vaidya Sala'),
(69875, 'https://ror.org/05tbpks29', 'no_lang_code', 1, 'https://ror.org/05tbpks29 TradeCity Cybersoft (China)'),
(69876, 'https://ror.org/05tedyt08', 'no_lang_code', 1, 'https://ror.org/05tedyt08 Everbright International (China) äø­å›½å…‰å¤§å›½é™…ęœ‰é™å…¬åø'),
(69877, 'https://ror.org/05teyj036', 'no_lang_code', 1, 'https://ror.org/05teyj036 Karl Mayer (China) å”å°”čæˆč€¶'),
(69878, 'https://ror.org/05tf3bx05', 'en', 1, 'https://ror.org/05tf3bx05 Korea-American Association ķ•œėÆø ķ˜‘ķšŒ'),
(69879, 'https://ror.org/05thd7q59', 'no_lang_code', 1, 'https://ror.org/05thd7q59 AtoGen (South Korea) ģ—ģ“ķˆ¬ģ  '),
(69880, 'https://ror.org/05thgmv59', 'en', 1, 'https://ror.org/05thgmv59 Research Institute "Argon" ŠŠ˜Š˜ "Аргон"'),
(69881, 'https://ror.org/05tj70371', 'en', 1, 'https://ror.org/05tj70371 International Council on Clean Transportation Internationaler Rat für sauberen Verkehr'),
(69882, 'https://ror.org/05tk02106', 'en', 1, 'https://ror.org/05tk02106 Suas Educational Development'),
(69883, 'https://ror.org/05tk66d69', 'en', 1, 'https://ror.org/05tk66d69 Human Rights Solidarity ģøź¶Œģ—°ėŒ€ėŠ”'),
(69884, 'https://ror.org/05tm3n275', 'no_lang_code', 1, 'https://ror.org/05tm3n275 ARTS Group (China) č‰ŗęœÆ 组'),
(69885, 'https://ror.org/05tnntp68', 'en', 1, 'https://ror.org/05tnntp68 Commission de Formation de l''Est Ontarien Eastern Ontario Training Board'),
(69886, 'https://ror.org/05tq31x39', 'no_lang_code', 1, 'https://ror.org/05tq31x39 Beijing Automotive Group (China) åŒ—äŗ¬ę±½č½¦å·„äøšęŽ§č‚”ęœ‰é™č“£ä»»å…¬åø'),
(69887, 'https://ror.org/05tr8ks89', 'no_lang_code', 1, 'https://ror.org/05tr8ks89 Splunk (United States)'),
(69888, 'https://ror.org/05tt6ka81', 'en', 1, 'https://ror.org/05tt6ka81 Associated Radiologists'),
(69889, 'https://ror.org/05tt6m403', 'en', 1, 'https://ror.org/05tt6m403 Nanjing Polytechnic Institute å—äŗ¬å·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(69890, 'https://ror.org/05ttdgs63', 'en', 1, 'https://ror.org/05ttdgs63 Heilbronn Institute for Mathematical Research'),
(69891, 'https://ror.org/05ttqxn20', 'en', 1, 'https://ror.org/05ttqxn20 The Society Of Korean Literary Therapy ķ•œźµ­ 문학 치료 ķ•™ķšŒ'),
(69892, 'https://ror.org/05ttsx632', 'no_lang_code', 1, 'https://ror.org/05ttsx632 C&T Elmech (Poland)'),
(69893, 'https://ror.org/05txhgq68', 'en', 1, 'https://ror.org/05txhgq68 Vlaams Kenniscentrum Water Vlakwa'),
(69894, 'https://ror.org/05ty9g711', 'tr', 1, 'https://ror.org/05ty9g711 Ƈevre ve Şehircilik Bakanlığı'),
(69895, 'https://ror.org/05tzavc93', 'no_lang_code', 1, 'https://ror.org/05tzavc93 Bakkavor (United Kingdom)'),
(69896, 'https://ror.org/05v0b3r22', 'en', 1, 'https://ror.org/05v0b3r22 Institute for Public Affairs InŔtitút pre verejné otÔzky'),
(69897, 'https://ror.org/05v15sz79', 'no_lang_code', 1, 'https://ror.org/05v15sz79 58.com (China)'),
(69898, 'https://ror.org/05v384f19', 'pt', 1, 'https://ror.org/05v384f19 Instituto dos Vinhos do Douro e Porto'),
(69899, 'https://ror.org/05v6zeb66', 'en', 1, 'https://ror.org/05v6zeb66 Koninklijk Nederlands Instituut te Rome Royal Netherlands Institute in Rome'),
(69900, 'https://ror.org/05v791212', 'en', 1, 'https://ror.org/05v791212 International Food & Agricultural Trade Policy Council'),
(69901, 'https://ror.org/05v7z3142', 'en', 1, 'https://ror.org/05v7z3142 Jiangmen Polytechnic ę±Ÿé—ØčŒäøšęŠ€ęœÆå­¦é™¢'),
(69902, 'https://ror.org/05v8ead08', 'no_lang_code', 1, 'https://ror.org/05v8ead08 Magaza (Qatar)'),
(69903, 'https://ror.org/05v9der98', 'no_lang_code', 1, 'https://ror.org/05v9der98 Bridge Interpreting (Ireland)'),
(69904, 'https://ror.org/05v9hkc73', 'no_lang_code', 1, 'https://ror.org/05v9hkc73 Covnetics (United Kingdom)'),
(69905, 'https://ror.org/05vd34735', 'en', 1, 'https://ror.org/05vd34735 National Centre for Immunisation Research & Surveillance'),
(69906, 'https://ror.org/05vdz3s03', 'no_lang_code', 1, 'https://ror.org/05vdz3s03 Ningxia Machinery Research Institute (China)'),
(69907, 'https://ror.org/05vft1j67', 'no_lang_code', 1, 'https://ror.org/05vft1j67 Cordis Automation (Netherlands)'),
(69908, 'https://ror.org/05vn8sm27', 'no_lang_code', 1, 'https://ror.org/05vn8sm27 IPG Transport (United Kingdom)'),
(69909, 'https://ror.org/05vndtw67', 'pl', 1, 'https://ror.org/05vndtw67 Instytut Wzornictwa Przemyslowego'),
(69910, 'https://ror.org/05vqf7304', 'en', 1, 'https://ror.org/05vqf7304 Panhellenic Confederation of Unions of Agricultural Cooperatives Πανελλήνια Ī£Ļ…Ī½ĪæĪ¼ĪæĻƒĻ€ĪæĪ½Ī“ĪÆĪ± Ī•Ī½ĻŽĻƒĪµĻ‰Ī½ Ī‘Ī³ĻĪæĻ„Ī¹ĪŗĻŽĪ½ Ī£Ļ…Ī½ĪµĻ„Ī±Ī¹ĻĪ¹ĻƒĪ¼ĻŽĪ½'),
(69911, 'https://ror.org/05vr8kn83', 'en', 1, 'https://ror.org/05vr8kn83 Ministry of Agriculture, Food and Forestry ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на земеГелието Šø горите, Ministerstvo na zemedelieto i gorite'),
(69912, 'https://ror.org/05vtgxb02', 'no_lang_code', 1, 'https://ror.org/05vtgxb02 Jinan Municipal Engineering Design & Research Institute (China) ęµŽå—åø‚åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(69913, 'https://ror.org/05vw7gr61', 'en', 1, 'https://ror.org/05vw7gr61 The Korean Association for Policy Analysis and Evaluation ė…„ ģ¶œė²”ķ•œ ķ•œźµ­ģ •ģ±…ė¶„ģ„ķ‰ź°€ķ•™ķšŒėŠ” ģ§€źøˆź¹Œģ§€'),
(69914, 'https://ror.org/05vxe5982', 'no_lang_code', 1, 'https://ror.org/05vxe5982 Read-Gene (Poland)'),
(69915, 'https://ror.org/05w0gd052', 'en', 1, 'https://ror.org/05w0gd052 Mada Assistive Technology Centre Ł…Ų±ŁƒŲ² قطر Ł„Ł„ŲŖŁƒŁ†Ł„ŁˆŲ¬ŁŠŲ§ المساعدة مدى'),
(69916, 'https://ror.org/05w0m3461', 'no_lang_code', 1, 'https://ror.org/05w0m3461 Autech Group (South Korea) ģ˜¤ķ…ź·øė£¹ģ€'),
(69917, 'https://ror.org/05w1w8291', 'en', 1, 'https://ror.org/05w1w8291 High Peak Community Arts'),
(69918, 'https://ror.org/05w23xy58', 'en', 1, 'https://ror.org/05w23xy58 Guangxi Machinery Industry Research Institute'),
(69919, 'https://ror.org/05w2j5k62', 'en', 1, 'https://ror.org/05w2j5k62 International Commission on Illumination Internationale Beleuchtungskommission'),
(69920, 'https://ror.org/05w61r586', 'en', 1, 'https://ror.org/05w61r586 St. Ignatius Loyola College Å v. Ignaco Lojolos Kolegija'),
(69921, 'https://ror.org/05w9aqz69', 'no_lang_code', 1, 'https://ror.org/05w9aqz69 Tern (United Kingdom)'),
(69922, 'https://ror.org/05wad7k45', 'en', 1, 'https://ror.org/05wad7k45 Sichuan Academy of Traditional Chinese Medicine å››å·ēœäø­åŒ»čÆē§‘å­¦é™¢'),
(69923, 'https://ror.org/05wany963', 'en', 1, 'https://ror.org/05wany963 Hong Kong Footwear Federation'),
(69924, 'https://ror.org/05waykt95', 'no_lang_code', 1, 'https://ror.org/05waykt95 Schlumberger (Russia)'),
(69925, 'https://ror.org/05wbeav13', 'en', 1, 'https://ror.org/05wbeav13 Hunan Rare Earth Metal Material Research Institute ę¹–å—ēØ€åœŸé‡‘å±žęę–™ē ”ē©¶ę‰€'),
(69926, 'https://ror.org/05wbxb284', 'de', 1, 'https://ror.org/05wbxb284 Bifa Umweltinstitut'),
(69927, 'https://ror.org/05wd2ky28', 'en', 1, 'https://ror.org/05wd2ky28 Tianjin Academy for Intelligent Recognition Technologies å¤©ę“„äø­ē§‘ę™ŗčƒ½čÆ†åˆ«äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(69928, 'https://ror.org/05wd8bb75', 'en', 1, 'https://ror.org/05wd8bb75 Iraq Virtual Science Library'),
(69929, 'https://ror.org/05wdqnb80', 'en', 1, 'https://ror.org/05wdqnb80 Construction Industry Training Board'),
(69930, 'https://ror.org/05we3nb76', 'en', 1, 'https://ror.org/05we3nb76 China Fishery Machinery and Instrument Research Institute ęø”äøšęœŗę¢°ä»Ŗå™Øē ”ē©¶ę‰€åˆ›'),
(69931, 'https://ror.org/05weh2538', 'en', 1, 'https://ror.org/05weh2538 Henan Radio and Television University ę²³å—å¹æę’­ē”µč§†å¤§å­¦'),
(69932, 'https://ror.org/05wenf776', 'no_lang_code', 1, 'https://ror.org/05wenf776 Marico (India)'),
(69933, 'https://ror.org/05wfkgx98', 'en', 1, 'https://ror.org/05wfkgx98 All-Russian Scientific Research Institute of Canned Food Technology Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ консервной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(69934, 'https://ror.org/05wgqxk32', 'en', 1, 'https://ror.org/05wgqxk32 Hong Kong Electronic Industries Association é¦™ęøÆé›»å­ę„­å•†ęœƒ'),
(69935, 'https://ror.org/05whnha37', 'en', 1, 'https://ror.org/05whnha37 Institute Belniis ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Šµ Ń€ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠ¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ по ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Ńƒ "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š‘ŠµŠ»ŠŠ˜Š˜Š”"'),
(69936, 'https://ror.org/05wjcp323', 'no_lang_code', 1, 'https://ror.org/05wjcp323 Enza Zaden (Netherlands)'),
(69937, 'https://ror.org/05wjeww18', 'en', 1, 'https://ror.org/05wjeww18 BuildingSMART Korea ģ„œģšø 스마트 ė¹Œė”©'),
(69938, 'https://ror.org/05wmm6h38', 'en', 1, 'https://ror.org/05wmm6h38 The Korean Society for the Study of Teacher Education ķ•œźµ­źµģ›źµģœ”ķ•™ķšŒ'),
(69939, 'https://ror.org/05wnrmt13', 'en', 1, 'https://ror.org/05wnrmt13 Hong Kong Watch Manufacturers Association é¦™ęøÆč”Øå» å•†ęœƒęœ‰é™å…¬åø'),
(69940, 'https://ror.org/05wnvb372', 'en', 1, 'https://ror.org/05wnvb372 Research Institute of Medical Climatology and Rehabilitation Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинской климатологии Šø Š²Š¾ŃŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š³Š¾ Š»ŠµŃ‡ŠµŠ½ŠøŃ'),
(69941, 'https://ror.org/05wnw8q41', 'en', 1, 'https://ror.org/05wnw8q41 San Francisco Bay Conservation and Development Commission'),
(69942, 'https://ror.org/05wp4m669', 'no_lang_code', 1, 'https://ror.org/05wp4m669 Korea Educational Broadcasting System ķ•œźµ­źµģœ”ė°©ģ†”ź³µģ‚¬'),
(69943, 'https://ror.org/05wp72p02', 'en', 1, 'https://ror.org/05wp72p02 Korea Marketing Management Association ķ•œźµ­ ė§ˆģ¼€ķŒ… 경영 ķ•™ķšŒ'),
(69944, 'https://ror.org/05wp9f048', 'en', 1, 'https://ror.org/05wp9f048 Al Kawther Secondary Independent School for Girls Ł…ŲÆŲ±Ų³Ų© Ų§Ł„ŁƒŁˆŲ«Ų± Ų§Ł„Ų«Ų§Ł†ŁˆŁŠŲ© للبنات');
INSERT INTO `rors` VALUES
(69945, 'https://ror.org/05wtd8w10', 'no_lang_code', 1, 'https://ror.org/05wtd8w10 CEG International (Qatar)'),
(69946, 'https://ror.org/05wvzc243', 'en', 1, 'https://ror.org/05wvzc243 (사)ķ•œźµ­ģ •ė³“ķ†µģ‹ źø°ģˆ ģ‚°ģ—…ķ˜‘ķšŒ- Korea Information & Communication Technology Industry Association'),
(69947, 'https://ror.org/05wwazp63', 'no_lang_code', 1, 'https://ror.org/05wwazp63 Adone (South Korea) ģ£¼ģ‹ķšŒģ‚¬ ģ—ė“œģ›'),
(69948, 'https://ror.org/05wwj0f18', 'no_lang_code', 1, 'https://ror.org/05wwj0f18 Greengineering (United Kingdom)'),
(69949, 'https://ror.org/05wwp6197', 'de', 1, 'https://ror.org/05wwp6197 Bundeswehrzentralkrankenhaus Koblenz'),
(69950, 'https://ror.org/05wx2c490', 'en', 1, 'https://ror.org/05wx2c490 NHS Bradford Districts Clinical Commissioning Group'),
(69951, 'https://ror.org/05wz8q607', 'en', 1, 'https://ror.org/05wz8q607 Apollo Cradle For Women & Children'),
(69952, 'https://ror.org/05wzmn116', 'en', 1, 'https://ror.org/05wzmn116 Shandong Huanghe Delta Institute of Textile Science and Technology å±±äøœé»„ę²³äø‰č§’ę“²ēŗŗē»‡ē§‘ęŠ€ē ”ē©¶é™¢äŗŽ'),
(69953, 'https://ror.org/05wzyqm87', 'en', 1, 'https://ror.org/05wzyqm87 Guizhou Institute of Building Materials Science Research and Design Institute'),
(69954, 'https://ror.org/05x0baj11', 'en', 1, 'https://ror.org/05x0baj11 Tianyi Institute of Biological Technology åˆč‚„å¤©äø€ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€ęˆ'),
(69955, 'https://ror.org/05x0rwj57', 'no_lang_code', 1, 'https://ror.org/05x0rwj57 Changzhou Architectural Research Institute Group (China) åøøå·žåø‚å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(69956, 'https://ror.org/05x4ndx32', 'en', 1, 'https://ror.org/05x4ndx32 Korea Communications Industry Cooperative ķ•œźµ­ė°©ģ†”ķ†µģ‹ ģ‚°ģ—…ķ˜‘ė™ģ”°ķ•© ģ”°ķ•©ģ†Œź°œ ģøģ‚¬ė§ ģ•ˆė‚“ģž…ė‹ˆė‹¤'),
(69957, 'https://ror.org/05x5psy30', 'en', 1, 'https://ror.org/05x5psy30 Research Institute of Molecular Electronics ŠŠ˜Š˜ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(69958, 'https://ror.org/05x5sjp46', 'no_lang_code', 1, 'https://ror.org/05x5sjp46 VolgoUralNIPIgaz (Russia)'),
(69959, 'https://ror.org/05x7v0b39', 'en', 1, 'https://ror.org/05x7v0b39 Ministry of Agriculture and Forestry ąŗąŗ°ąŗŠąŗ§ąŗ‡ ກະສຓກຳ ແຄະ ąŗ›ą»ˆąŗ²ą»„ąŗ”ą»‰'),
(69960, 'https://ror.org/05x8k4a38', 'en', 1, 'https://ror.org/05x8k4a38 Health Insurance Institute of Slovenia Zavod za zdravstveno zavarovanje Slovenije'),
(69961, 'https://ror.org/05x9xyq11', 'en', 1, 'https://ror.org/05x9xyq11 Kyung Hee University Hospital at Gangdong ź°•ė™ź²½ķ¬ėŒ€ķ•™źµė³‘ģ›'),
(69962, 'https://ror.org/05xabex37', 'en', 1, 'https://ror.org/05xabex37 Research Institute of Refining and Petrochemical Industry" MASMA " ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нафтопереробки "МАДМА"'),
(69963, 'https://ror.org/05xaptb67', 'no_lang_code', 1, 'https://ror.org/05xaptb67 Uralniti (Russia) Š£Ń€Š°Š»ŠŠ˜Š¢Š˜'),
(69964, 'https://ror.org/05xb0z813', 'en', 1, 'https://ror.org/05xb0z813 Government Vidarbha Institute of Science and Humanities'),
(69965, 'https://ror.org/05xcp0f40', 'no_lang_code', 1, 'https://ror.org/05xcp0f40 Heidelberg (Poland)'),
(69966, 'https://ror.org/05xd3cs50', 'en', 1, 'https://ror.org/05xd3cs50 Shanghai Water Conservancy Engineering Design & Research Institute äøŠęµ·åø‚ę°“åˆ©å·„ēØ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™'),
(69967, 'https://ror.org/05xdfr133', 'en', 1, 'https://ror.org/05xdfr133 North-West Public Health Research Center'),
(69968, 'https://ror.org/05xg3zg64', 'no_lang_code', 1, 'https://ror.org/05xg3zg64 Sensory (United States)'),
(69969, 'https://ror.org/05xh4v485', 'en', 1, 'https://ror.org/05xh4v485 Korean Political Science Association ķ•œźµ­ģ •ģ¹˜ķ•™ķšŒ'),
(69970, 'https://ror.org/05xhh0z05', 'no_lang_code', 1, 'https://ror.org/05xhh0z05 CCFEB Industrial Equipment Installation (China) äø­å»ŗäŗ”å±€å·„äøšč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(69971, 'https://ror.org/05xnfc553', 'ro', 1, 'https://ror.org/05xnfc553 Colegiul National Mihai Eminescu'),
(69972, 'https://ror.org/05xnw5k32', 'en', 1, 'https://ror.org/05xnw5k32 Center for Non-Communicable Diseases'),
(69973, 'https://ror.org/05xpjer51', 'en', 1, 'https://ror.org/05xpjer51 Centre for Arab Genomic Studies'),
(69974, 'https://ror.org/05xpxhd51', 'no_lang_code', 1, 'https://ror.org/05xpxhd51 Portable Innovation Technology (China)'),
(69975, 'https://ror.org/05xqdb208', 'no_lang_code', 1, 'https://ror.org/05xqdb208 Frontier Advanced Technology (China)'),
(69976, 'https://ror.org/05xr0bc04', 'no_lang_code', 1, 'https://ror.org/05xr0bc04 ServiceNow (United States)'),
(69977, 'https://ror.org/05xrp5e17', 'en', 1, 'https://ror.org/05xrp5e17 TheMuseum'),
(69978, 'https://ror.org/05xs8j551', 'no_lang_code', 1, 'https://ror.org/05xs8j551 Institute of Technology and Production Organization (Russia)'),
(69979, 'https://ror.org/05xsa6v37', 'en', 1, 'https://ror.org/05xsa6v37 Government Ayurvedic College and Hospital Osmanabad ą¤øą¤°ą¤•ą¤¾ą¤°ą„€ ą¤†ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¦ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ आणि ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ ą¤‰ą¤øą„ą¤®ą¤¾ą¤Øą¤¾ą¤¬ą¤¾ą¤¦'),
(69980, 'https://ror.org/05xsbq070', 'en', 1, 'https://ror.org/05xsbq070 Institute of Medical Ethics and Bioethics, n. f Ústav medicínskej etiky a bioetiky'),
(69981, 'https://ror.org/05xt21n42', 'no_lang_code', 1, 'https://ror.org/05xt21n42 Zhejiang Yuhua Electronics (China) ęµ™ę±Ÿč£•åŽē”µå™Øęœ‰é™å…¬åø'),
(69982, 'https://ror.org/05xwtrp65', 'en', 1, 'https://ror.org/05xwtrp65 Suzhou Industrial Park Institute of Services Outsourcing č‹å·žå·„äøšå›­åŒŗęœåŠ”å¤–åŒ…čŒäøšå­¦é™¢'),
(69983, 'https://ror.org/05xx7en86', 'en', 1, 'https://ror.org/05xx7en86 Division of Fossil Fuels Energy'),
(69984, 'https://ror.org/05xxaa629', 'en', 1, 'https://ror.org/05xxaa629 Ministry of Culture and Sports وزارة الثقافه ŁˆŲ§Ł„Ų±ŁŠŲ§Ų¶Ł‡'),
(69985, 'https://ror.org/05xyc2351', 'en', 1, 'https://ror.org/05xyc2351 All-Russian Scientific Research Institute of Freshwater Fisheries Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пресновоГного рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²a'),
(69986, 'https://ror.org/05xzn7m56', 'en', 1, 'https://ror.org/05xzn7m56 Guangdong Provincial Institute of Grain Science and Technology å¹æäøœēœē²®é£Ÿē§‘å­¦ē ”ē©¶ę‰€'),
(69987, 'https://ror.org/05y0rb755', 'no_lang_code', 1, 'https://ror.org/05y0rb755 Dalian Plastics Research Institute (China) å¤§čæžå”‘ę–™ē ”ē©¶ę‰€'),
(69988, 'https://ror.org/05y3xma86', 'no_lang_code', 1, 'https://ror.org/05y3xma86 Coolpad (China)'),
(69989, 'https://ror.org/05y57mm42', 'en', 1, 'https://ror.org/05y57mm42 All-Russian Scientific Research Institute of Flax Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ льна'),
(69990, 'https://ror.org/05y5s3t98', 'en', 1, 'https://ror.org/05y5s3t98 Scientific Research Institute of Agrarian Problems of Khakassia'),
(69991, 'https://ror.org/05y6t7072', 'lt', 1, 'https://ror.org/05y6t7072 BirÅ”tono Savivaldybė'),
(69992, 'https://ror.org/05y7veh17', 'en', 1, 'https://ror.org/05y7veh17 Shanxi Transportation Research Institute å±±č„æēœäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(69993, 'https://ror.org/05yaab071', 'no_lang_code', 1, 'https://ror.org/05yaab071 Googol Technology (China)'),
(69994, 'https://ror.org/05yay3q52', 'en', 1, 'https://ror.org/05yay3q52 Ministry of Education and Higher Education'),
(69995, 'https://ror.org/05ybbth24', 'en', 1, 'https://ror.org/05ybbth24 National Youth Agency'),
(69996, 'https://ror.org/05yd2zc58', 'en', 1, 'https://ror.org/05yd2zc58 Ministry of Industry, Commerce, Agriculture and Fisheries'),
(69997, 'https://ror.org/05ymqz659', 'es', 1, 'https://ror.org/05ymqz659 Instituto Nacional de Silicosis'),
(69998, 'https://ror.org/05ynabk26', 'en', 1, 'https://ror.org/05ynabk26 Avon and Somerset Police Authority'),
(69999, 'https://ror.org/05ynh7w25', 'no_lang_code', 1, 'https://ror.org/05ynh7w25 ZheJiang East Crystal Electronic (China) ęµ™ę±Ÿäøœę™¶ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(70000, 'https://ror.org/05ypnbp35', 'no_lang_code', 1, 'https://ror.org/05ypnbp35 Anhui Provincial Urban Construction Design & Research Institute (China)'),
(70001, 'https://ror.org/00003g016', 'en', 1, 'https://ror.org/00003g016 World Water Watch'),
(70002, 'https://ror.org/00033n668', 'en', 1, 'https://ror.org/00033n668 Universiteti pƫr Biznes dhe Teknologji University for Business and Technology'),
(70003, 'https://ror.org/0005q3137', 'en', 1, 'https://ror.org/0005q3137 Ultach Trust'),
(70004, 'https://ror.org/0009dkt68', 'no_lang_code', 1, 'https://ror.org/0009dkt68 Arrhythmotech (United States)'),
(70005, 'https://ror.org/0009sdg88', 'no_lang_code', 1, 'https://ror.org/0009sdg88 Elways (Sweden)'),
(70006, 'https://ror.org/000a82508', 'no_lang_code', 1, 'https://ror.org/000a82508 Blue Therapeutics (United States)'),
(70007, 'https://ror.org/000c2p832', 'en', 1, 'https://ror.org/000c2p832 South London Healthcare NHS Trust'),
(70008, 'https://ror.org/000c5n539', 'no_lang_code', 1, 'https://ror.org/000c5n539 Exensor Technology (Sweden)'),
(70009, 'https://ror.org/000dpyn16', 'no_lang_code', 1, 'https://ror.org/000dpyn16 Zenuity (Sweden)'),
(70010, 'https://ror.org/000ecmj40', 'no_lang_code', 1, 'https://ror.org/000ecmj40 Evorx (United States)'),
(70011, 'https://ror.org/000eh9340', 'en', 1, 'https://ror.org/000eh9340 California Budget & Policy Center'),
(70012, 'https://ror.org/000erc082', 'en', 1, 'https://ror.org/000erc082 Conway Hall Ethical Society'),
(70013, 'https://ror.org/000kw4c48', 'en', 1, 'https://ror.org/000kw4c48 South Cheshire Astronomical Society'),
(70014, 'https://ror.org/000m0gv46', 'no_lang_code', 1, 'https://ror.org/000m0gv46 SolAero Technologies (United States)'),
(70015, 'https://ror.org/000nw4a65', 'no_lang_code', 1, 'https://ror.org/000nw4a65 Polish Aviation Works Polskie Zakłady Lotnicze (Poland)'),
(70016, 'https://ror.org/000rmdf62', 'no_lang_code', 1, 'https://ror.org/000rmdf62 BioLite (United States)'),
(70017, 'https://ror.org/000s5ry87', 'en', 1, 'https://ror.org/000s5ry87 Glasgow West Housing Association'),
(70018, 'https://ror.org/000sec356', 'no_lang_code', 1, 'https://ror.org/000sec356 Epizone'),
(70019, 'https://ror.org/000ymg434', 'no_lang_code', 1, 'https://ror.org/000ymg434 Amplification Technologies (United States)'),
(70020, 'https://ror.org/001000g32', 'en', 1, 'https://ror.org/001000g32 Tullie House Museum and Art Gallery'),
(70021, 'https://ror.org/00135x916', 'no_lang_code', 1, 'https://ror.org/00135x916 Inkubera (Sweden)'),
(70022, 'https://ror.org/0013pnn31', 'no_lang_code', 1, 'https://ror.org/0013pnn31 Ocean Harvesting Technologies (Sweden)'),
(70023, 'https://ror.org/0013qma95', 'en', 1, 'https://ror.org/0013qma95 Diseworth Heritage Centre'),
(70024, 'https://ror.org/0013ssk40', 'no_lang_code', 1, 'https://ror.org/0013ssk40 Microtech Instruments (United States)'),
(70025, 'https://ror.org/0013y6044', 'en', 1, 'https://ror.org/0013y6044 Irish Jewish Museum'),
(70026, 'https://ror.org/00147y550', 'en', 1, 'https://ror.org/00147y550 Caribbean Institute for Meteorology and Hydrology'),
(70027, 'https://ror.org/0016std27', 'en', 1, 'https://ror.org/0016std27 International Maritime Organization'),
(70028, 'https://ror.org/00186j916', 'en', 1, 'https://ror.org/00186j916 Scottish Music Industry Association'),
(70029, 'https://ror.org/001a3sv78', 'no_lang_code', 1, 'https://ror.org/001a3sv78 Cognitopia (United States)'),
(70030, 'https://ror.org/001a7dw94', 'de', 1, 'https://ror.org/001a7dw94 Krankenhaus der Barmherzigen Brüder Trier'),
(70031, 'https://ror.org/001aba497', 'pt', 1, 'https://ror.org/001aba497 Instituto Brasil Estados Unidos'),
(70032, 'https://ror.org/001ajv156', 'no_lang_code', 1, 'https://ror.org/001ajv156 EES Research (United Kingdom)'),
(70033, 'https://ror.org/001engn06', 'no_lang_code', 1, 'https://ror.org/001engn06 BRS Aerospace (United States)'),
(70034, 'https://ror.org/001fg0044', 'en', 1, 'https://ror.org/001fg0044 London Rebuilding Society'),
(70035, 'https://ror.org/001j88k95', 'no_lang_code', 1, 'https://ror.org/001j88k95 Alico Systems (United States)'),
(70036, 'https://ror.org/001m3mk55', 'no_lang_code', 1, 'https://ror.org/001m3mk55 Healthcare over Internet Protocol Community Interest Company (United Kingdom)'),
(70037, 'https://ror.org/001qkb777', 'no_lang_code', 1, 'https://ror.org/001qkb777 Creative Technologies (United States)'),
(70038, 'https://ror.org/001v02q16', 'no_lang_code', 1, 'https://ror.org/001v02q16 RenFuel (Sweden)'),
(70039, 'https://ror.org/001v0e970', 'no_lang_code', 1, 'https://ror.org/001v0e970 Movexum (Sweden)'),
(70040, 'https://ror.org/001wkh665', 'no_lang_code', 1, 'https://ror.org/001wkh665 Kelenn Technology (France)'),
(70041, 'https://ror.org/001ykgy03', 'fr', 1, 'https://ror.org/001ykgy03 MinistĆØre de l’Enseignement SupĆ©rieur et de la Recherche Scientifique'),
(70042, 'https://ror.org/001zq7k15', 'en', 1, 'https://ror.org/001zq7k15 Nigerian Meteorological Agency'),
(70043, 'https://ror.org/0020g8f52', 'sv', 1, 'https://ror.org/0020g8f52 Datorn I Utbildningen'),
(70044, 'https://ror.org/0020mxe10', 'en', 1, 'https://ror.org/0020mxe10 Shevchenko Institute of Literature Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š»Ń–Ń‚ŠµŃ€Š°Ń‚ŃƒŃ€Šø імені Тараса Шевченка ŠŠŠ України'),
(70045, 'https://ror.org/0020qzt72', 'no_lang_code', 1, 'https://ror.org/0020qzt72 Mabou Mines (United States)'),
(70046, 'https://ror.org/00216ta13', 'en', 1, 'https://ror.org/00216ta13 Center for the Study of Social Policy'),
(70047, 'https://ror.org/0021w4337', 'en', 1, 'https://ror.org/0021w4337 Scottish Fisheries Museum'),
(70048, 'https://ror.org/0022jb369', 'en', 1, 'https://ror.org/0022jb369 Institute for Molecular Manufacturing'),
(70049, 'https://ror.org/00235xz29', 'no_lang_code', 1, 'https://ror.org/00235xz29 BKF Systems (United States)'),
(70050, 'https://ror.org/00244rn76', 'en', 1, 'https://ror.org/00244rn76 Zanzibar School of Health'),
(70051, 'https://ror.org/00259sq91', 'en', 1, 'https://ror.org/00259sq91 MS Training Centre for Development Cooperation'),
(70052, 'https://ror.org/00290ns09', 'en', 1, 'https://ror.org/00290ns09 SociĆ©tĆ© des Eiders de l’Arctique The Arctic Eider Society'),
(70053, 'https://ror.org/002a9y532', 'fr', 1, 'https://ror.org/002a9y532 Unité de Recherche Technologie et Analyses Laitières'),
(70054, 'https://ror.org/002aev204', 'en', 1, 'https://ror.org/002aev204 African Institute for Leaders and Leadership'),
(70055, 'https://ror.org/002ba7a80', 'en', 1, 'https://ror.org/002ba7a80 Pakistan and Kashmir Welfare Association'),
(70056, 'https://ror.org/002bahc84', 'en', 1, 'https://ror.org/002bahc84 Institute of Materials Finishing'),
(70057, 'https://ror.org/002ffx508', 'en', 1, 'https://ror.org/002ffx508 Make the Road New York'),
(70058, 'https://ror.org/002kr4405', 'en', 1, 'https://ror.org/002kr4405 Delhi Foundation of Deaf Women'),
(70059, 'https://ror.org/002m2fe15', 'en', 1, 'https://ror.org/002m2fe15 Telecommunications Industry Association'),
(70060, 'https://ror.org/002nebm43', 'no_lang_code', 1, 'https://ror.org/002nebm43 Pharem Biotech (Sweden)'),
(70061, 'https://ror.org/002pa2q48', 'en', 1, 'https://ror.org/002pa2q48 National Immigration Law Center'),
(70062, 'https://ror.org/002pdme92', 'en', 1, 'https://ror.org/002pdme92 Centre for Environment Concerns'),
(70063, 'https://ror.org/002pnw495', 'en', 1, 'https://ror.org/002pnw495 Singapore-HUJ Alliance for Research and Enterprise'),
(70064, 'https://ror.org/002rnrf69', 'no_lang_code', 1, 'https://ror.org/002rnrf69 NORDIC BioEngineering (Sweden)'),
(70065, 'https://ror.org/002tst934', 'en', 1, 'https://ror.org/002tst934 Institute for International Urban Development'),
(70066, 'https://ror.org/002v8sr80', 'no_lang_code', 1, 'https://ror.org/002v8sr80 Aptek (United States)'),
(70067, 'https://ror.org/002wpgj09', 'no_lang_code', 1, 'https://ror.org/002wpgj09 Spaceworks'),
(70068, 'https://ror.org/0030fkc22', 'en', 1, 'https://ror.org/0030fkc22 Wandle'),
(70069, 'https://ror.org/0031tkh25', 'en', 1, 'https://ror.org/0031tkh25 International Genetically Engineered Machine Foundation'),
(70070, 'https://ror.org/0033qx680', 'fi', 1, 'https://ror.org/0033qx680 Vamia'),
(70071, 'https://ror.org/0037jxv73', 'en', 1, 'https://ror.org/0037jxv73 Mophradat'),
(70072, 'https://ror.org/0039c1624', 'en', 1, 'https://ror.org/0039c1624 The Bhandarkar Oriental Research Institute भांऔारकर ą¤“ą¤°ą¤æą¤ą¤‚ą¤Ÿą¤² ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ'),
(70073, 'https://ror.org/0039f4626', 'en', 1, 'https://ror.org/0039f4626 Royal Engineers Museum'),
(70074, 'https://ror.org/003aa7r63', 'en', 1, 'https://ror.org/003aa7r63 Uganda Red Cross Society'),
(70075, 'https://ror.org/003aw4c90', 'en', 1, 'https://ror.org/003aw4c90 Institut für Binnenfischerei e.V. Potsdam-Sacrow Institute of Inland Fisheries in Potsdam-Sacrow'),
(70076, 'https://ror.org/003c8wq34', 'en', 1, 'https://ror.org/003c8wq34 UK Music'),
(70077, 'https://ror.org/003cyvv46', 'no_lang_code', 1, 'https://ror.org/003cyvv46 h2med (United States)'),
(70078, 'https://ror.org/003dca267', 'en', 1, 'https://ror.org/003dca267 Stevenage Bioscience Catalyst'),
(70079, 'https://ror.org/003f4e996', 'en', 1, 'https://ror.org/003f4e996 Sir John Soane''s Museum'),
(70080, 'https://ror.org/003gh6294', 'no_lang_code', 1, 'https://ror.org/003gh6294 Ejenta (United States)'),
(70081, 'https://ror.org/003hksp74', 'no_lang_code', 1, 'https://ror.org/003hksp74 BWA (United Kingdom)'),
(70082, 'https://ror.org/003hx7248', 'es', 1, 'https://ror.org/003hx7248 Instituto Nicaragüense de Cultura'),
(70083, 'https://ror.org/003kr8v19', 'en', 1, 'https://ror.org/003kr8v19 Linen Hall Library'),
(70084, 'https://ror.org/003mg4e46', 'no_lang_code', 1, 'https://ror.org/003mg4e46 Radosys (Hungary)'),
(70085, 'https://ror.org/003s4zv17', 'no_lang_code', 1, 'https://ror.org/003s4zv17 EaglePicher Technologies (United States)'),
(70086, 'https://ror.org/003t9wy25', 'no_lang_code', 1, 'https://ror.org/003t9wy25 Sweekaar'),
(70087, 'https://ror.org/003td8q57', 'pt', 1, 'https://ror.org/003td8q57 Faesa Centro Universitario'),
(70088, 'https://ror.org/003v0x852', 'en', 1, 'https://ror.org/003v0x852 Aliansi Masyarakat Adat Nusantara Indigenous Peoples'' Alliance of the Archipelago'),
(70089, 'https://ror.org/003w3ym70', 'en', 1, 'https://ror.org/003w3ym70 FCT College of Education'),
(70090, 'https://ror.org/003yky459', 'no_lang_code', 1, 'https://ror.org/003yky459 RentPath (United States)'),
(70091, 'https://ror.org/00408kc71', 'en', 1, 'https://ror.org/00408kc71 Education Authority'),
(70092, 'https://ror.org/0041aya12', 'es', 1, 'https://ror.org/0041aya12 Centro de Investigación de Métodos Computacionales'),
(70093, 'https://ror.org/0042dc077', 'en', 1, 'https://ror.org/0042dc077 Peterborough City Council'),
(70094, 'https://ror.org/0042x6d59', 'de', 1, 'https://ror.org/0042x6d59 Zentrum für Seelische Gesundheit'),
(70095, 'https://ror.org/00442nv52', 'no_lang_code', 1, 'https://ror.org/00442nv52 Globe Composite (United States)'),
(70096, 'https://ror.org/0045cz905', 'en', 1, 'https://ror.org/0045cz905 Portobello High School'),
(70097, 'https://ror.org/0045hsd50', 'en', 1, 'https://ror.org/0045hsd50 United States Educational Foundation in Pakistan'),
(70098, 'https://ror.org/0045nra89', 'no_lang_code', 1, 'https://ror.org/0045nra89 Arkham Technology (United States)'),
(70099, 'https://ror.org/0047fgf79', 'no_lang_code', 1, 'https://ror.org/0047fgf79 Micro-Leads (United States)'),
(70100, 'https://ror.org/0048qgt65', 'en', 1, 'https://ror.org/0048qgt65 BKForensics'),
(70101, 'https://ror.org/004b2nf78', 'en', 1, 'https://ror.org/004b2nf78 Jewish Museum of Greece Ī•Ī²ĻĪ±ĻŠĪŗĻŒ ĪœĪæĻ…ĻƒĪµĪÆĪæ ΕλλάΓος'),
(70102, 'https://ror.org/004bdfx91', 'no_lang_code', 1, 'https://ror.org/004bdfx91 American Engineering Group (United States)'),
(70103, 'https://ror.org/004ee9657', 'en', 1, 'https://ror.org/004ee9657 Colwyn Bay Community Hospital'),
(70104, 'https://ror.org/004fa4s18', 'fr', 1, 'https://ror.org/004fa4s18 Ecole Nationale d’IngĆ©nieurs – Abderhamane Baba TourĆ©'),
(70105, 'https://ror.org/004jq5c54', 'no_lang_code', 1, 'https://ror.org/004jq5c54 Brighter (Sweden)'),
(70106, 'https://ror.org/004mh3p35', 'en', 1, 'https://ror.org/004mh3p35 Keystone Research Center'),
(70107, 'https://ror.org/004mwvw05', 'en', 1, 'https://ror.org/004mwvw05 AfriChild Centre'),
(70108, 'https://ror.org/004n44f83', 'en', 1, 'https://ror.org/004n44f83 New Zealand Law Society'),
(70109, 'https://ror.org/004qqsw05', 'en', 1, 'https://ror.org/004qqsw05 Glasgow Centre for Inclusive Living'),
(70110, 'https://ror.org/004rh7a97', 'en', 1, 'https://ror.org/004rh7a97 Public Health Institute of Malawi'),
(70111, 'https://ror.org/004x6m349', 'en', 1, 'https://ror.org/004x6m349 Centre for Communication and Development Studies'),
(70112, 'https://ror.org/004y5mm20', 'en', 1, 'https://ror.org/004y5mm20 ACCE Institute'),
(70113, 'https://ror.org/004z3ar85', 'no_lang_code', 1, 'https://ror.org/004z3ar85 Active Medicine (United Kingdom)'),
(70114, 'https://ror.org/004z5ps61', 'de', 1, 'https://ror.org/004z5ps61 Gesundheitszentrum Oberndorf'),
(70115, 'https://ror.org/004zjze34', 'en', 1, 'https://ror.org/004zjze34 Institute for Security Studies'),
(70116, 'https://ror.org/004zmp616', 'en', 1, 'https://ror.org/004zmp616 National Institute of Ecology'),
(70117, 'https://ror.org/0051af203', 'en', 1, 'https://ror.org/0051af203 The Lindsay Leg Club Foundation'),
(70118, 'https://ror.org/005278833', 'en', 1, 'https://ror.org/005278833 Maxwell Air Force Base'),
(70119, 'https://ror.org/0053bzc32', 'no_lang_code', 1, 'https://ror.org/0053bzc32 Proton (Malaysia)'),
(70120, 'https://ror.org/0055gxg92', 'en', 1, 'https://ror.org/0055gxg92 New Jersey Institute for Social Justice'),
(70121, 'https://ror.org/0056a1265', 'en', 1, 'https://ror.org/0056a1265 Bank Information Center'),
(70122, 'https://ror.org/00586yd41', 'en', 1, 'https://ror.org/00586yd41 National Skills Coalition'),
(70123, 'https://ror.org/005898f12', 'en', 1, 'https://ror.org/005898f12 Project on Organizing, Development, Education, and Research'),
(70124, 'https://ror.org/0059vsf77', 'no_lang_code', 1, 'https://ror.org/0059vsf77 1st Edge (United States)'),
(70125, 'https://ror.org/005a3qv04', 'en', 1, 'https://ror.org/005a3qv04 Illinois Primary Health Care Association'),
(70126, 'https://ror.org/005b2xe71', 'no_lang_code', 1, 'https://ror.org/005b2xe71 WntResearch (Sweden)'),
(70127, 'https://ror.org/005d5fb76', 'en', 1, 'https://ror.org/005d5fb76 Kent State University Geauga'),
(70128, 'https://ror.org/005gnk787', 'no_lang_code', 1, 'https://ror.org/005gnk787 Fort Environmental Laboratories (United States)'),
(70129, 'https://ror.org/005mzjw74', 'en', 1, 'https://ror.org/005mzjw74 Permian Research Foundation'),
(70130, 'https://ror.org/005n3yy14', 'en', 1, 'https://ror.org/005n3yy14 Institute of Physics and Technology науки Физико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(70131, 'https://ror.org/005p07d97', 'en', 1, 'https://ror.org/005p07d97 Consejo de Monumentos Nacionales National Monuments Council'),
(70132, 'https://ror.org/005pgmf34', 'pt', 1, 'https://ror.org/005pgmf34 Associação Cultural de Mulheres Negras'),
(70133, 'https://ror.org/005q1n430', 'it', 1, 'https://ror.org/005q1n430 Osservativa di Campo Imperatore'),
(70134, 'https://ror.org/005q59x71', 'no_lang_code', 1, 'https://ror.org/005q59x71 Ebb Therapeutics (United States)'),
(70135, 'https://ror.org/005rgra64', 'en', 1, 'https://ror.org/005rgra64 Israeli Cultural Institute Izraeli KulturƔlis IntƩzet'),
(70136, 'https://ror.org/005rnqt78', 'no_lang_code', 1, 'https://ror.org/005rnqt78 Invenia (Canada)'),
(70137, 'https://ror.org/005smnq10', 'en', 1, 'https://ror.org/005smnq10 The Welsh Black Cattle Society'),
(70138, 'https://ror.org/005sn8a68', 'no_lang_code', 1, 'https://ror.org/005sn8a68 Blue Marble Health (United States)'),
(70139, 'https://ror.org/005trhy70', 'en', 1, 'https://ror.org/005trhy70 Young Women''s Trust'),
(70140, 'https://ror.org/005y6yz11', 'en', 1, 'https://ror.org/005y6yz11 Zoological Society of East Anglia'),
(70141, 'https://ror.org/00635kd98', 'en', 1, 'https://ror.org/00635kd98 Queen Elizabeth Hospital Birmingham Charity'),
(70142, 'https://ror.org/00648sd60', 'no_lang_code', 1, 'https://ror.org/00648sd60 Entanglement Technologies (United States)'),
(70143, 'https://ror.org/00666kk80', 'en', 1, 'https://ror.org/00666kk80 European Molecular Biology Conference'),
(70144, 'https://ror.org/0067znv39', 'no_lang_code', 1, 'https://ror.org/0067znv39 Aditus Science (Sweden)'),
(70145, 'https://ror.org/006a5r035', 'nl', 1, 'https://ror.org/006a5r035 Stedelijk Museum Amsterdam'),
(70146, 'https://ror.org/006agn966', 'en', 1, 'https://ror.org/006agn966 Tor Lodge and Applecross Trust'),
(70147, 'https://ror.org/006de3561', 'no_lang_code', 1, 'https://ror.org/006de3561 Mindconnect (Sweden)'),
(70148, 'https://ror.org/006fhby04', 'fr', 1, 'https://ror.org/006fhby04 Animal, Santé, Territoires, Risques et Ecosystèmes'),
(70149, 'https://ror.org/006gdfw37', 'en', 1, 'https://ror.org/006gdfw37 Southern Association of Colleges and Schools'),
(70150, 'https://ror.org/006h33619', 'no_lang_code', 1, 'https://ror.org/006h33619 Keleketla Library'),
(70151, 'https://ror.org/006j9rn47', 'en', 1, 'https://ror.org/006j9rn47 Hypatia of Alexandria Institute for Reflexion and Studies'),
(70152, 'https://ror.org/006js8r49', 'en', 1, 'https://ror.org/006js8r49 Crop Protection Association'),
(70153, 'https://ror.org/006m3k312', 'en', 1, 'https://ror.org/006m3k312 Museo de la Memoria y los Derechos Humanos Museum of Memory and Human Rights'),
(70154, 'https://ror.org/006pcm806', 'en', 1, 'https://ror.org/006pcm806 The Philippine Women Centre of BC'),
(70155, 'https://ror.org/006pekx06', 'en', 1, 'https://ror.org/006pekx06 Emmanuel Schools Foundation'),
(70156, 'https://ror.org/006qepw66', 'no_lang_code', 1, 'https://ror.org/006qepw66 Moco (United States)'),
(70157, 'https://ror.org/006qrkk22', 'en', 1, 'https://ror.org/006qrkk22 Hymers College'),
(70158, 'https://ror.org/006s3gt16', 'no_lang_code', 1, 'https://ror.org/006s3gt16 Hearst (United States)'),
(70159, 'https://ror.org/006s9cd49', 'no_lang_code', 1, 'https://ror.org/006s9cd49 European Willow Breeding (Sweden)'),
(70160, 'https://ror.org/006t3b628', 'cs', 1, 'https://ror.org/006t3b628 Nadace České Architektury'),
(70161, 'https://ror.org/006w74372', 'no_lang_code', 1, 'https://ror.org/006w74372 Landec (United States)'),
(70162, 'https://ror.org/006wjwp03', 'nl', 1, 'https://ror.org/006wjwp03 National Museum Nationale Kunstgalerij’, Rijksmuseum'),
(70163, 'https://ror.org/006xcew27', 'en', 1, 'https://ror.org/006xcew27 Doğa Koruma Merkezi Nature Conservation Centre'),
(70164, 'https://ror.org/006y2wa23', 'en', 1, 'https://ror.org/006y2wa23 The Foundation for a Civil Society'),
(70165, 'https://ror.org/006y63v75', 'es', 1, 'https://ror.org/006y63v75 Museo de Historia Natural Noel Kempff Mercado'),
(70166, 'https://ror.org/0070nd560', 'en', 1, 'https://ror.org/0070nd560 Comprehensive OBGYN'),
(70167, 'https://ror.org/0071w5f09', 'no_lang_code', 1, 'https://ror.org/0071w5f09 Quintus Technologies (Sweden)'),
(70168, 'https://ror.org/0073twa91', 'en', 1, 'https://ror.org/0073twa91 Interdisciplinary Scientific Center J.-V. Poncelet'),
(70169, 'https://ror.org/0076fay17', 'en', 1, 'https://ror.org/0076fay17 Ocala Research Institute'),
(70170, 'https://ror.org/0077tt432', 'en', 1, 'https://ror.org/0077tt432 Freud Museum'),
(70171, 'https://ror.org/00795nv73', 'no_lang_code', 1, 'https://ror.org/00795nv73 Care Progress (United States)'),
(70172, 'https://ror.org/007b1fc92', 'no_lang_code', 1, 'https://ror.org/007b1fc92 INTAR'),
(70173, 'https://ror.org/007f72038', 'en', 1, 'https://ror.org/007f72038 Coordinating Ministry for Human Development and Cultural Affairs Kementerian Koordinator Bidang Pembangunan Manusia dan Kebudayaan'),
(70174, 'https://ror.org/007hz9242', 'no_lang_code', 1, 'https://ror.org/007hz9242 Clinical & Biomedical Computing (United Kingdom)'),
(70175, 'https://ror.org/007pepr06', 'en', 1, 'https://ror.org/007pepr06 Sanskriti Foundation ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ą¤æ'),
(70176, 'https://ror.org/007ppd810', 'no_lang_code', 1, 'https://ror.org/007ppd810 Science Navigation Group (United Kingdom)'),
(70177, 'https://ror.org/007q9sw85', 'en', 1, 'https://ror.org/007q9sw85 Institute for Law and Environmental Governance'),
(70178, 'https://ror.org/007s2zd20', 'no_lang_code', 1, 'https://ror.org/007s2zd20 Nanosc (Sweden)'),
(70179, 'https://ror.org/007s7nj58', 'en', 1, 'https://ror.org/007s7nj58 Landesregierung von Nordrhein-Westfalen State Government of North Rhine Westphalia'),
(70180, 'https://ror.org/007tpha30', 'en', 1, 'https://ror.org/007tpha30 Barber Institute of Fine Arts'),
(70181, 'https://ror.org/007vees71', 'no_lang_code', 1, 'https://ror.org/007vees71 Gyan Data (India)'),
(70182, 'https://ror.org/007vw4k42', 'en', 1, 'https://ror.org/007vw4k42 Ag Innovations'),
(70183, 'https://ror.org/007whsh62', 'no_lang_code', 1, 'https://ror.org/007whsh62 Intertek (United States)'),
(70184, 'https://ror.org/007wjj235', 'en', 1, 'https://ror.org/007wjj235 2Blades Foundation'),
(70185, 'https://ror.org/007z06v19', 'en', 1, 'https://ror.org/007z06v19 Global Impact'),
(70186, 'https://ror.org/007zp0p53', 'en', 1, 'https://ror.org/007zp0p53 Canadian Institute of Technology Instituti Kanadez i Teknologjisƫ'),
(70187, 'https://ror.org/007zz7317', 'no_lang_code', 1, 'https://ror.org/007zz7317 Health Action Partnership International (United Kingdom)'),
(70188, 'https://ror.org/0080qw039', 'no_lang_code', 1, 'https://ror.org/0080qw039 Horus Energia (Poland)'),
(70189, 'https://ror.org/0083kgt80', 'en', 1, 'https://ror.org/0083kgt80 Guildhall Library'),
(70190, 'https://ror.org/0084xy061', 'no_lang_code', 1, 'https://ror.org/0084xy061 Vishuo Biomedical (Singapore)'),
(70191, 'https://ror.org/0086j2x90', 'no_lang_code', 1, 'https://ror.org/0086j2x90 Aerotech Research (United States)'),
(70192, 'https://ror.org/0086x0p73', 'no_lang_code', 1, 'https://ror.org/0086x0p73 Rouillard (Canada)'),
(70193, 'https://ror.org/008892w10', 'en', 1, 'https://ror.org/008892w10 Everyday Democracy'),
(70194, 'https://ror.org/0089yx556', 'en', 1, 'https://ror.org/0089yx556 Lawyers Collective'),
(70195, 'https://ror.org/008aazg21', 'no_lang_code', 1, 'https://ror.org/008aazg21 Predicare (Sweden)'),
(70196, 'https://ror.org/008cg6v69', 'en', 1, 'https://ror.org/008cg6v69 Erdiston Teachers'' Training College'),
(70197, 'https://ror.org/008dq1c96', 'en', 1, 'https://ror.org/008dq1c96 Buccleuch Living Heritage Trust'),
(70198, 'https://ror.org/008ehzy31', 'en', 1, 'https://ror.org/008ehzy31 World Academy of Art and Science'),
(70199, 'https://ror.org/008fjbg42', 'en', 1, 'https://ror.org/008fjbg42 Institute for Sustainable Plant Protection Istituto per la Protezione Sostenibile delle Piante'),
(70200, 'https://ror.org/008hq2e16', 'no_lang_code', 1, 'https://ror.org/008hq2e16 Andritz (United Kingdom)'),
(70201, 'https://ror.org/008kjzh81', 'en', 1, 'https://ror.org/008kjzh81 UK Irrigation Association'),
(70202, 'https://ror.org/008m0sk32', 'no_lang_code', 1, 'https://ror.org/008m0sk32 Shandong Museum å±±äøœåšē‰©é¦†'),
(70203, 'https://ror.org/008ntxv25', 'en', 1, 'https://ror.org/008ntxv25 National Subsea Research Initiative'),
(70204, 'https://ror.org/008nvwa10', 'en', 1, 'https://ror.org/008nvwa10 International Centre for Women Playwrights'),
(70205, 'https://ror.org/008p4q226', 'en', 1, 'https://ror.org/008p4q226 Central State Archive of the Republic of Kazakhstan Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ архив Республики ŠšŠ°Š·Š°Ń…стан ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ ŠžŃ€Ń‚Š°Š»Ń‹Ņ› мемлекеттік мұрағаты'),
(70206, 'https://ror.org/008pyv383', 'no_lang_code', 1, 'https://ror.org/008pyv383 i2r Medical (United Kingdom)'),
(70207, 'https://ror.org/008qv2m62', 'id', 1, 'https://ror.org/008qv2m62 Lembaga Gemawan'),
(70208, 'https://ror.org/008tjs116', 'no_lang_code', 1, 'https://ror.org/008tjs116 Porvair (United Kingdom)'),
(70209, 'https://ror.org/008vf9155', 'en', 1, 'https://ror.org/008vf9155 The Donaldson Trust'),
(70210, 'https://ror.org/008w6ry40', 'no_lang_code', 1, 'https://ror.org/008w6ry40 Rigaku (United States)'),
(70211, 'https://ror.org/008y34898', 'en', 1, 'https://ror.org/008y34898 Guangdong Association of STD and AIDS Prevention and Control å¹æäøœēœę€§ē—…č‰¾ę»‹ē—…é˜²ę²»åä¼š'),
(70212, 'https://ror.org/009261g92', 'en', 1, 'https://ror.org/009261g92 Celtic FC Foundation'),
(70213, 'https://ror.org/00936xm65', 'en', 1, 'https://ror.org/00936xm65 Ajmal College of Arts and Science'),
(70214, 'https://ror.org/0093ddg91', 'de', 1, 'https://ror.org/0093ddg91 NiedersƤchsisches Landesgesundheitsamt'),
(70215, 'https://ror.org/0093qrn19', 'en', 1, 'https://ror.org/0093qrn19 Salzburg Global Seminar'),
(70216, 'https://ror.org/0093y5e51', 'no_lang_code', 1, 'https://ror.org/0093y5e51 PanNature Trung tĆ¢m Con ngĘ°į»i vĆ  ThiĆŖn nhiĆŖn'),
(70217, 'https://ror.org/0094qg225', 'no_lang_code', 1, 'https://ror.org/0094qg225 Advanced Design Consulting USA (United States)'),
(70218, 'https://ror.org/0094wp003', 'en', 1, 'https://ror.org/0094wp003 Ecological Sequestration Trust'),
(70219, 'https://ror.org/0095m0q98', 'no_lang_code', 1, 'https://ror.org/0095m0q98 Eddy (United States)'),
(70220, 'https://ror.org/0096pft28', 'fr', 1, 'https://ror.org/0096pft28 Espoir Vie-Togo'),
(70221, 'https://ror.org/0096z2k33', 'en', 1, 'https://ror.org/0096z2k33 Luxembourg School of Business'),
(70222, 'https://ror.org/00976p334', 'no_lang_code', 1, 'https://ror.org/00976p334 Calando Pharmaceuticals (United States)'),
(70223, 'https://ror.org/009778y68', 'en', 1, 'https://ror.org/009778y68 Project On Government Oversight'),
(70224, 'https://ror.org/0097v3890', 'fr', 1, 'https://ror.org/0097v3890 Bibliothèque d''étude et du patrimoine, Bibliothèque de Toulouse'),
(70225, 'https://ror.org/009bgdw98', 'en', 1, 'https://ror.org/009bgdw98 North Yorkshire County Council'),
(70226, 'https://ror.org/009c3m506', 'no_lang_code', 1, 'https://ror.org/009c3m506 Gamma HealthCare (United States)'),
(70227, 'https://ror.org/009d3ws08', 'es', 1, 'https://ror.org/009d3ws08 Instituto de Investigaciones FĆ­sicas de Mar del Plata'),
(70228, 'https://ror.org/009dhvf97', 'en', 1, 'https://ror.org/009dhvf97 South Western Ambulance Service NHS Foundation Trust'),
(70229, 'https://ror.org/009k4kq70', 'no_lang_code', 1, 'https://ror.org/009k4kq70 Cardialen (United States)'),
(70230, 'https://ror.org/009kqey70', 'no_lang_code', 1, 'https://ror.org/009kqey70 Kennon (United States)'),
(70231, 'https://ror.org/009mm8209', 'no_lang_code', 1, 'https://ror.org/009mm8209 nanoMAG (United States)'),
(70232, 'https://ror.org/009n4zx75', 'en', 1, 'https://ror.org/009n4zx75 Conseil EuropƩen de Remanufacture European Remanufacturing Council'),
(70233, 'https://ror.org/009ne2259', 'no_lang_code', 1, 'https://ror.org/009ne2259 For Robin (United States)'),
(70234, 'https://ror.org/009njsq50', 'en', 1, 'https://ror.org/009njsq50 Yunnan Vocational College of Mechanical and Electrical Technology äŗ‘å—ęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(70235, 'https://ror.org/009prqx82', 'no_lang_code', 1, 'https://ror.org/009prqx82 Jaybridge Robotics (United States)'),
(70236, 'https://ror.org/009rcpx96', 'en', 1, 'https://ror.org/009rcpx96 Feminist Archive North'),
(70237, 'https://ror.org/009rr6x76', 'es', 1, 'https://ror.org/009rr6x76 Instituto Tecnológico Superior de Xalapa'),
(70238, 'https://ror.org/009sjag78', 'en', 1, 'https://ror.org/009sjag78 Education Group Akron Аркон'),
(70239, 'https://ror.org/009vmn503', 'en', 1, 'https://ror.org/009vmn503 National AIDS Housing Coalition'),
(70240, 'https://ror.org/009vrft62', 'no_lang_code', 1, 'https://ror.org/009vrft62 Cole Engineering Services (United States)'),
(70241, 'https://ror.org/009x3z174', 'en', 1, 'https://ror.org/009x3z174 Butetown Community Centre'),
(70242, 'https://ror.org/009xbxr65', 'en', 1, 'https://ror.org/009xbxr65 Beloved Community Center'),
(70243, 'https://ror.org/00a07ag07', 'no_lang_code', 1, 'https://ror.org/00a07ag07 Conjugon (United States)'),
(70244, 'https://ror.org/00a0wam85', 'en', 1, 'https://ror.org/00a0wam85 Arizona School for the Arts'),
(70245, 'https://ror.org/00a1grh69', 'en', 1, 'https://ror.org/00a1grh69 Medicon Village'),
(70246, 'https://ror.org/00a2pr463', 'en', 1, 'https://ror.org/00a2pr463 National Agricultural Genotyping Center'),
(70247, 'https://ror.org/00a43hv69', 'no_lang_code', 1, 'https://ror.org/00a43hv69 Benchmark (United Kingdom)'),
(70248, 'https://ror.org/00a4e3a70', 'no', 1, 'https://ror.org/00a4e3a70 Trondheim Hjertesenter'),
(70249, 'https://ror.org/00a4rps73', 'no_lang_code', 1, 'https://ror.org/00a4rps73 Profu (Sweden)'),
(70250, 'https://ror.org/00a91y272', 'en', 1, 'https://ror.org/00a91y272 Redress'),
(70251, 'https://ror.org/00aahmr77', 'en', 1, 'https://ror.org/00aahmr77 City of Asylum'),
(70252, 'https://ror.org/00ab8jq38', 'en', 1, 'https://ror.org/00ab8jq38 The DaCapo Music Foundation'),
(70253, 'https://ror.org/00ad9p542', 'no_lang_code', 1, 'https://ror.org/00ad9p542 Ferric (United States)'),
(70254, 'https://ror.org/00aejbn34', 'en', 1, 'https://ror.org/00aejbn34 Polish Cultural Festival Association'),
(70255, 'https://ror.org/00ah0qh32', 'en', 1, 'https://ror.org/00ah0qh32 Climate Outreach'),
(70256, 'https://ror.org/00akavp61', 'en', 1, 'https://ror.org/00akavp61 Reading Museum'),
(70257, 'https://ror.org/00amyy824', 'no_lang_code', 1, 'https://ror.org/00amyy824 In Vitro Admet Laboratories (United States)'),
(70258, 'https://ror.org/00an5hx75', 'en', 1, 'https://ror.org/00an5hx75 Bennett University'),
(70259, 'https://ror.org/00aqrhw18', 'pt', 1, 'https://ror.org/00aqrhw18 Associação Centro de Estudos de Economia SolidÔria do Atlântico'),
(70260, 'https://ror.org/00aqt1c17', 'no_lang_code', 1, 'https://ror.org/00aqt1c17 Klaria Pharma Holding (Sweden)'),
(70261, 'https://ror.org/00awv0k06', 'es', 1, 'https://ror.org/00awv0k06 Instituto de Liderazgo Simone de Beauvoir'),
(70262, 'https://ror.org/00axw4v72', 'no_lang_code', 1, 'https://ror.org/00axw4v72 Cerahelix (United States)'),
(70263, 'https://ror.org/00axz0e09', 'no_lang_code', 1, 'https://ror.org/00axz0e09 E7 Ventures (United States)'),
(70264, 'https://ror.org/00aywxq66', 'ro', 1, 'https://ror.org/00aywxq66 Spitalul Clinic Judeţean de Urgenţă "Pius Brînzeu" Timişoara'),
(70265, 'https://ror.org/00az65y50', 'en', 1, 'https://ror.org/00az65y50 Research Organization for Information Science and Technology é«˜åŗ¦ęƒ…å ±ē§‘å­¦ęŠ€č”“ē ”ē©¶ę©Ÿę§‹'),
(70266, 'https://ror.org/00b4tnh45', 'en', 1, 'https://ror.org/00b4tnh45 Campaign Legal Center'),
(70267, 'https://ror.org/00b9t3w70', 'no_lang_code', 1, 'https://ror.org/00b9t3w70 TerraGo (United States)'),
(70268, 'https://ror.org/00bb5xg53', 'en', 1, 'https://ror.org/00bb5xg53 Minnesota Council of Nonprofits'),
(70269, 'https://ror.org/00bcg1285', 'en', 1, 'https://ror.org/00bcg1285 Low Income Investment Fund'),
(70270, 'https://ror.org/00bdk5051', 'no_lang_code', 1, 'https://ror.org/00bdk5051 Polar Light Technologies (Sweden)'),
(70271, 'https://ror.org/00be2g057', 'en', 1, 'https://ror.org/00be2g057 King Faisal Center for Research and Islamic Studies Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„ Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(70272, 'https://ror.org/00be4s518', 'en', 1, 'https://ror.org/00be4s518 Theodore Roosevelt Association'),
(70273, 'https://ror.org/00bev4j15', 'en', 1, 'https://ror.org/00bev4j15 Sveriges Olympiska KommittƩ Swedish Olympic Committee'),
(70274, 'https://ror.org/00bhp9x86', 'sv', 1, 'https://ror.org/00bhp9x86 Fƶreningen Universitetsholdingbolag i Sverige'),
(70275, 'https://ror.org/00bhzer06', 'no_lang_code', 1, 'https://ror.org/00bhzer06 Akrotome Imaging (United States)'),
(70276, 'https://ror.org/00bk62d14', 'no_lang_code', 1, 'https://ror.org/00bk62d14 Accudyne Systems (United States)'),
(70277, 'https://ror.org/00bndmb79', 'no_lang_code', 1, 'https://ror.org/00bndmb79 TecnoBio (Brazil)'),
(70278, 'https://ror.org/00bq3m385', 'en', 1, 'https://ror.org/00bq3m385 Arise Citizens'' Policy Project'),
(70279, 'https://ror.org/00brf2d87', 'en', 1, 'https://ror.org/00brf2d87 Institute of Acoustics and Sensors "Orso Mario Corbino" Istituto di Acustica e Sensoristica ā€œOrso Mario Corbinoā€'),
(70280, 'https://ror.org/00bshqd32', 'no_lang_code', 1, 'https://ror.org/00bshqd32 Briteseed (United States)'),
(70281, 'https://ror.org/00btw3p03', 'no_lang_code', 1, 'https://ror.org/00btw3p03 Nippon Television (Japan) ę—„ęœ¬ćƒ†ćƒ¬ćƒ“ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(70282, 'https://ror.org/00bv27459', 'es', 1, 'https://ror.org/00bv27459 Instituto Superior de Investigaciones Biológicas'),
(70283, 'https://ror.org/00bvkj141', 'no_lang_code', 1, 'https://ror.org/00bvkj141 GS Caltex (South Korea)'),
(70284, 'https://ror.org/00bw0hk14', 'en', 1, 'https://ror.org/00bw0hk14 Center for Medical Technology Policy'),
(70285, 'https://ror.org/00bw9fz70', 'en', 1, 'https://ror.org/00bw9fz70 The Royal A​nglian Regiment Museum'),
(70286, 'https://ror.org/00c0kg894', 'en', 1, 'https://ror.org/00c0kg894 Royal Pavilion'),
(70287, 'https://ror.org/00c1dss11', 'en', 1, 'https://ror.org/00c1dss11 Pearl Harbor Aviation Museum'),
(70288, 'https://ror.org/00c393w57', 'no_lang_code', 1, 'https://ror.org/00c393w57 Intematix (United States)'),
(70289, 'https://ror.org/00c4rqe71', 'en', 1, 'https://ror.org/00c4rqe71 Watermans'),
(70290, 'https://ror.org/00c6b0n10', 'en', 1, 'https://ror.org/00c6b0n10 J. Paul Getty Museum'),
(70291, 'https://ror.org/00c89gb03', 'no_lang_code', 1, 'https://ror.org/00c89gb03 Deveryware (France)'),
(70292, 'https://ror.org/00cadqf40', 'en', 1, 'https://ror.org/00cadqf40 The Sophie Lancaster Foundation'),
(70293, 'https://ror.org/00cdbmd44', 'en', 1, 'https://ror.org/00cdbmd44 Wired Sussex'),
(70294, 'https://ror.org/00cgyrr09', 'en', 1, 'https://ror.org/00cgyrr09 Sussex Recovery College'),
(70295, 'https://ror.org/00chcy438', 'en', 1, 'https://ror.org/00chcy438 Pau Costa Foundation'),
(70296, 'https://ror.org/00chs5h02', 'en', 1, 'https://ror.org/00chs5h02 Whitechapel Gallery'),
(70297, 'https://ror.org/00cjejy66', 'no_lang_code', 1, 'https://ror.org/00cjejy66 iXBlue (France)'),
(70298, 'https://ror.org/00cjhgf11', 'no_lang_code', 1, 'https://ror.org/00cjhgf11 FoVI3D (United States)'),
(70299, 'https://ror.org/00cmk9h73', 'en', 1, 'https://ror.org/00cmk9h73 Smart Growth America'),
(70300, 'https://ror.org/00cmvzh60', 'en', 1, 'https://ror.org/00cmvzh60 The Portico Library'),
(70301, 'https://ror.org/00cpnjf66', 'en', 1, 'https://ror.org/00cpnjf66 Kathimerini Publishing (Greece) Oι ĪšĪ‘Ī˜Ī—ĪœĪ•Ī”Ī™ĪĪ•Ī£ Ī•ĪšĪ”ĪŸĪ£Ī•Ī™Ī£'),
(70302, 'https://ror.org/00cr13h95', 'no_lang_code', 1, 'https://ror.org/00cr13h95 MillenniTek (United States)'),
(70303, 'https://ror.org/00ctx3180', 'en', 1, 'https://ror.org/00ctx3180 Anveshi Research Centre for Women''s Studies'),
(70304, 'https://ror.org/00cw00f88', 'en', 1, 'https://ror.org/00cw00f88 Media Council of Kenya'),
(70305, 'https://ror.org/00cx7pr70', 'no_lang_code', 1, 'https://ror.org/00cx7pr70 Tiri (United Kingdom)'),
(70306, 'https://ror.org/00cx9zc82', 'en', 1, 'https://ror.org/00cx9zc82 Hill House Association'),
(70307, 'https://ror.org/00czf4z07', 'en', 1, 'https://ror.org/00czf4z07 Pearl Medical Centre'),
(70308, 'https://ror.org/00d0y9x67', 'no_lang_code', 1, 'https://ror.org/00d0y9x67 Unlimited Group (United Kingdom)'),
(70309, 'https://ror.org/00d2cdk21', 'no_lang_code', 1, 'https://ror.org/00d2cdk21 ReVibe Energy (Sweden)'),
(70310, 'https://ror.org/00d32rn51', 'pl', 1, 'https://ror.org/00d32rn51 Centrum Badań Jakości Quality Research Center'),
(70311, 'https://ror.org/00d58r705', 'en', 1, 'https://ror.org/00d58r705 Namgyal Tantric College ą¤Øą¤¾ą¤®ą¤—ą„ą¤Æą¤¾ą¤² ą¤®ą„‹ą¤Øą¤¾ą¤øą„ą¤Ÿą„ą¤°ą„€'),
(70312, 'https://ror.org/00d6gc809', 'en', 1, 'https://ror.org/00d6gc809 Northampton General Hospital NHS Trust'),
(70313, 'https://ror.org/00dah2077', 'en', 1, 'https://ror.org/00dah2077 Consejo Nacional de Areas Protegidas National Council for Protected Areas'),
(70314, 'https://ror.org/00darb407', 'en', 1, 'https://ror.org/00darb407 West Of Scotland Housing Association'),
(70315, 'https://ror.org/00darzp70', 'no_lang_code', 1, 'https://ror.org/00darzp70 Health Innovations (United States)'),
(70316, 'https://ror.org/00dbps023', 'no_lang_code', 1, 'https://ror.org/00dbps023 Ɖolane (France)'),
(70317, 'https://ror.org/00de4mp23', 'no_lang_code', 1, 'https://ror.org/00de4mp23 Marko-Kolor (Poland)'),
(70318, 'https://ror.org/00dfkj427', 'no_lang_code', 1, 'https://ror.org/00dfkj427 Summit Associates (United States)'),
(70319, 'https://ror.org/00dgyys91', 'en', 1, 'https://ror.org/00dgyys91 Qatar Mobility Innovations Center'),
(70320, 'https://ror.org/00djmfe91', 'en', 1, 'https://ror.org/00djmfe91 Schumacher College'),
(70321, 'https://ror.org/00dmpd885', 'no_lang_code', 1, 'https://ror.org/00dmpd885 John Tiller Software (United States)'),
(70322, 'https://ror.org/00dnwkf25', 'no_lang_code', 1, 'https://ror.org/00dnwkf25 Blue Line Engineering (United States)'),
(70323, 'https://ror.org/00dp5t753', 'no_lang_code', 1, 'https://ror.org/00dp5t753 Innoveering (United States)'),
(70324, 'https://ror.org/00dpzpk69', 'no_lang_code', 1, 'https://ror.org/00dpzpk69 Ilya Pharma (Sweden)'),
(70325, 'https://ror.org/00dqx9006', 'no_lang_code', 1, 'https://ror.org/00dqx9006 MicroVide (United States)'),
(70326, 'https://ror.org/00dsaey03', 'en', 1, 'https://ror.org/00dsaey03 New Economy Project'),
(70327, 'https://ror.org/00dw32w32', 'en', 1, 'https://ror.org/00dw32w32 The Healthy Pizza Company'),
(70328, 'https://ror.org/00dw3s236', 'en', 1, 'https://ror.org/00dw3s236 Tearfund'),
(70329, 'https://ror.org/00dwnzj85', 'en', 1, 'https://ror.org/00dwnzj85 Newbattle Abbey College'),
(70330, 'https://ror.org/00dxccz84', 'en', 1, 'https://ror.org/00dxccz84 Mpumalanga Deparment of Health'),
(70331, 'https://ror.org/00dy9nm84', 'no_lang_code', 1, 'https://ror.org/00dy9nm84 Automated Precision (United States)'),
(70332, 'https://ror.org/00dyj9f84', 'en', 1, 'https://ror.org/00dyj9f84 Communities Unlimited'),
(70333, 'https://ror.org/00e0czp98', 'en', 1, 'https://ror.org/00e0czp98 Sir Bobby Robson Foundation'),
(70334, 'https://ror.org/00e2y6338', 'en', 1, 'https://ror.org/00e2y6338 Centre for Nursing Innovation'),
(70335, 'https://ror.org/00e30wp67', 'en', 1, 'https://ror.org/00e30wp67 Northern Ireland Advanced Composites and Engineering Centre'),
(70336, 'https://ror.org/00e3esm33', 'en', 1, 'https://ror.org/00e3esm33 National Civil War Centre'),
(70337, 'https://ror.org/00e3gp542', 'en', 1, 'https://ror.org/00e3gp542 National Library of New Zealand'),
(70338, 'https://ror.org/00e3s7s61', 'no_lang_code', 1, 'https://ror.org/00e3s7s61 BPR Medical (United Kingdom)'),
(70339, 'https://ror.org/00e452s52', 'en', 1, 'https://ror.org/00e452s52 Highlanes Gallery'),
(70340, 'https://ror.org/00e633366', 'en', 1, 'https://ror.org/00e633366 Scottish Cancer Foundation'),
(70341, 'https://ror.org/00e6aar40', 'no_lang_code', 1, 'https://ror.org/00e6aar40 Illumisonics (Canada)'),
(70342, 'https://ror.org/00e7yhp68', 'no_lang_code', 1, 'https://ror.org/00e7yhp68 SR Research (Canada)'),
(70343, 'https://ror.org/00e8byk21', 'en', 1, 'https://ror.org/00e8byk21 Soldiers of Oxfordshire Museum'),
(70344, 'https://ror.org/00e8f1a50', 'de', 1, 'https://ror.org/00e8f1a50 Theologische FakultƤt Paderborn'),
(70345, 'https://ror.org/00e965d05', 'no_lang_code', 1, 'https://ror.org/00e965d05 Dfuzion (United States)'),
(70346, 'https://ror.org/00eb43c50', 'en', 1, 'https://ror.org/00eb43c50 Institute for Justice & Democracy in Haiti'),
(70347, 'https://ror.org/00ebf6w66', 'en', 1, 'https://ror.org/00ebf6w66 Americas Media Initiative'),
(70348, 'https://ror.org/00ecnfg66', 'en', 1, 'https://ror.org/00ecnfg66 Political Research Associates'),
(70349, 'https://ror.org/00ed5y156', 'en', 1, 'https://ror.org/00ed5y156 Koninklijke Maatschappij voor Dierkunde Antwerpen Royal Zoological Society of Antwerp'),
(70350, 'https://ror.org/00eep5m87', 'en', 1, 'https://ror.org/00eep5m87 International Association of Forensic Nurses'),
(70351, 'https://ror.org/00efjzq30', 'sv', 1, 'https://ror.org/00efjzq30 Kalmar LƤns Museum'),
(70352, 'https://ror.org/00ej43w89', 'en', 1, 'https://ror.org/00ej43w89 Dallas Office of Emergency Management'),
(70353, 'https://ror.org/00ejkk087', 'en', 1, 'https://ror.org/00ejkk087 Baroness Warsi Foundation'),
(70354, 'https://ror.org/00ek25n05', 'no_lang_code', 1, 'https://ror.org/00ek25n05 Advanced Medical Solutions Group (United Kingdom)'),
(70355, 'https://ror.org/00ekkwn87', 'no_lang_code', 1, 'https://ror.org/00ekkwn87 Sedibeng TVET College'),
(70356, 'https://ror.org/00em2ph88', 'no_lang_code', 1, 'https://ror.org/00em2ph88 Catalent (United Kingdom)'),
(70357, 'https://ror.org/00erpmf75', 'en', 1, 'https://ror.org/00erpmf75 Institute of Geography Named after Academician Hasan Aliyev'),
(70358, 'https://ror.org/00esg0r84', 'en', 1, 'https://ror.org/00esg0r84 Abilities United'),
(70359, 'https://ror.org/00f1wmk62', 'es', 1, 'https://ror.org/00f1wmk62 Universidad Iberoamericana León'),
(70360, 'https://ror.org/00f20ws83', 'es', 1, 'https://ror.org/00f20ws83 Hospital Angeles Clinica Londres'),
(70361, 'https://ror.org/00f21ds03', 'en', 1, 'https://ror.org/00f21ds03 L''Istituto dei Sordi di Torino Turin Institute for the Deaf'),
(70362, 'https://ror.org/00f2tck44', 'fr', 1, 'https://ror.org/00f2tck44 Ministère de l''Agriculture et des Aménagements Hydrauliques'),
(70363, 'https://ror.org/00f4q6m47', 'en', 1, 'https://ror.org/00f4q6m47 British Screen Advisory Council'),
(70364, 'https://ror.org/00f5a7a07', 'en', 1, 'https://ror.org/00f5a7a07 Rural Development Agency ąŗŖąŗ¹ąŗ™ąŗžąŗ±ąŗ”ąŗ—ąŗ°ąŗ™ąŗ²ąŗŠąŗ»ąŗ™ąŗ™ąŗ°ąŗšąŗ»ąŗ”'),
(70365, 'https://ror.org/00fb17655', 'en', 1, 'https://ror.org/00fb17655 DJ Academy of Design'),
(70366, 'https://ror.org/00fb7th39', 'no_lang_code', 1, 'https://ror.org/00fb7th39 Elsit (Poland)'),
(70367, 'https://ror.org/00fc9de56', 'no_lang_code', 1, 'https://ror.org/00fc9de56 Dog Star Technologies (United States)'),
(70368, 'https://ror.org/00fd8gy33', 'en', 1, 'https://ror.org/00fd8gy33 Yorkshire Dales Millennium Trust'),
(70369, 'https://ror.org/00feqrp17', 'no_lang_code', 1, 'https://ror.org/00feqrp17 Hydronalix (United States)'),
(70370, 'https://ror.org/00fgx8j22', 'no_lang_code', 1, 'https://ror.org/00fgx8j22 Montfort Social Institute ą°®ą±‹ą°‚ą°Ÿą±ą°«ą±‹ą°°ą±ą°Ÿą± ą°øą±‹ą°·ą°²ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą±');
INSERT INTO `rors` VALUES
(70371, 'https://ror.org/00fkta435', 'no_lang_code', 1, 'https://ror.org/00fkta435 1928 Diagnostics (Sweden)'),
(70372, 'https://ror.org/00fq2kn23', 'no_lang_code', 1, 'https://ror.org/00fq2kn23 Associated Research (United States)'),
(70373, 'https://ror.org/00fv3qf02', 'no_lang_code', 1, 'https://ror.org/00fv3qf02 Lyndra Therapeutics (United States)'),
(70374, 'https://ror.org/00fvsrz77', 'en', 1, 'https://ror.org/00fvsrz77 Society for Clinical Trials'),
(70375, 'https://ror.org/00fwfdb54', 'no_lang_code', 1, 'https://ror.org/00fwfdb54 Telesystem (Poland)'),
(70376, 'https://ror.org/00fyaz829', 'en', 1, 'https://ror.org/00fyaz829 Catholics for Choice'),
(70377, 'https://ror.org/00fymn945', 'en', 1, 'https://ror.org/00fymn945 Pan-African Association'),
(70378, 'https://ror.org/00fz3d156', 'no_lang_code', 1, 'https://ror.org/00fz3d156 SmugMug (United States)'),
(70379, 'https://ror.org/00fzeeb88', 'de', 1, 'https://ror.org/00fzeeb88 Landesamt für Soziales und Versorgung des Landes Brandenburg'),
(70380, 'https://ror.org/00fzv2y47', 'en', 1, 'https://ror.org/00fzv2y47 Maynard Institute'),
(70381, 'https://ror.org/00g04a530', 'es', 1, 'https://ror.org/00g04a530 Instituto de FĆ­sica del Sur'),
(70382, 'https://ror.org/00g18j041', 'no_lang_code', 1, 'https://ror.org/00g18j041 CM-Tec (United States)'),
(70383, 'https://ror.org/00g3bkn86', 'ms', 1, 'https://ror.org/00g3bkn86 Sarawak Biodiversity Centre'),
(70384, 'https://ror.org/00g5g8212', 'no_lang_code', 1, 'https://ror.org/00g5g8212 Ipsos (United States)'),
(70385, 'https://ror.org/00g65m314', 'no_lang_code', 1, 'https://ror.org/00g65m314 Applied Optronics (United States)'),
(70386, 'https://ror.org/00g71t343', 'no_lang_code', 1, 'https://ror.org/00g71t343 Greinon (Sweden)'),
(70387, 'https://ror.org/00g732a62', 'en', 1, 'https://ror.org/00g732a62 Calorx Teachers'' University'),
(70388, 'https://ror.org/00g78ej16', 'en', 1, 'https://ror.org/00g78ej16 Research Institute for Disabled Consumers'),
(70389, 'https://ror.org/00g7h8w74', 'en', 1, 'https://ror.org/00g7h8w74 Africa Centre for Energy Policy'),
(70390, 'https://ror.org/00g832k89', 'pt', 1, 'https://ror.org/00g832k89 Grupo Montecitrus'),
(70391, 'https://ror.org/00g96hn54', 'no_lang_code', 1, 'https://ror.org/00g96hn54 Bio Alternative Medical Devices (United Kingdom)'),
(70392, 'https://ror.org/00gc37a46', 'no_lang_code', 1, 'https://ror.org/00gc37a46 Mowi (United Kingdom)'),
(70393, 'https://ror.org/00gc8q349', 'no_lang_code', 1, 'https://ror.org/00gc8q349 Nalu Scientific (United States)'),
(70394, 'https://ror.org/00gd30v42', 'no_lang_code', 1, 'https://ror.org/00gd30v42 Infinia ML (United States)'),
(70395, 'https://ror.org/00gd4j561', 'en', 1, 'https://ror.org/00gd4j561 West Virginia Bureau of Senior Services'),
(70396, 'https://ror.org/00gdary87', 'en', 1, 'https://ror.org/00gdary87 Mt Albert Primary School'),
(70397, 'https://ror.org/00gesww49', 'en', 1, 'https://ror.org/00gesww49 Archivo nacional del Ecuador National Archives of Ecuador'),
(70398, 'https://ror.org/00gfzq956', 'en', 1, 'https://ror.org/00gfzq956 The McMinn Centre'),
(70399, 'https://ror.org/00ghwyh51', 'en', 1, 'https://ror.org/00ghwyh51 Environmental Grantmakers Association'),
(70400, 'https://ror.org/00gkr8739', 'en', 1, 'https://ror.org/00gkr8739 Psychoanalytical Association ŠŸŃŠøŃ…Š¾Š°Š½Š°Š»ŠøŃ‚ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ'),
(70401, 'https://ror.org/00gm4dn95', 'no_lang_code', 1, 'https://ror.org/00gm4dn95 Richard Carter and Associates (United Kingdom)'),
(70402, 'https://ror.org/00gpd0h05', 'no_lang_code', 1, 'https://ror.org/00gpd0h05 Omnikon (Poland)'),
(70403, 'https://ror.org/00gsd6w43', 'en', 1, 'https://ror.org/00gsd6w43 Scarborough Archaeological and Historical Society'),
(70404, 'https://ror.org/00gvdzs88', 'en', 1, 'https://ror.org/00gvdzs88 Color Of Change'),
(70405, 'https://ror.org/00gwr4a27', 'en', 1, 'https://ror.org/00gwr4a27 Polismyndigheten Swedish Police Authority'),
(70406, 'https://ror.org/00gxhds15', 'no_lang_code', 1, 'https://ror.org/00gxhds15 Ndifuna Ukwazi'),
(70407, 'https://ror.org/00gy7w809', 'en', 1, 'https://ror.org/00gy7w809 Dronah Foundation'),
(70408, 'https://ror.org/00gyqqh04', 'no_lang_code', 1, 'https://ror.org/00gyqqh04 Fiber Optic Manufacturing in Space (United States)'),
(70409, 'https://ror.org/00gzp0b21', 'en', 1, 'https://ror.org/00gzp0b21 Association on Higher Education And Disability'),
(70410, 'https://ror.org/00h0z3d69', 'en', 1, 'https://ror.org/00h0z3d69 Exeter Northcott Theatre'),
(70411, 'https://ror.org/00h2d3028', 'no_lang_code', 1, 'https://ror.org/00h2d3028 Umalusi'),
(70412, 'https://ror.org/00h2xqq06', 'no_lang_code', 1, 'https://ror.org/00h2xqq06 Nano Control (Sweden)'),
(70413, 'https://ror.org/00h33cn96', 'no_lang_code', 1, 'https://ror.org/00h33cn96 Genendeavor (United States)'),
(70414, 'https://ror.org/00h63w240', 'en', 1, 'https://ror.org/00h63w240 Universal University Š£Š½ŠøŠ²ŠµŃ€ŃŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(70415, 'https://ror.org/00h6bkr27', 'en', 1, 'https://ror.org/00h6bkr27 Museum Ethnographers Group'),
(70416, 'https://ror.org/00h9tn549', 'en', 1, 'https://ror.org/00h9tn549 Missenden Centre'),
(70417, 'https://ror.org/00hc2mf91', 'no_lang_code', 1, 'https://ror.org/00hc2mf91 Microsoft (Brazil)'),
(70418, 'https://ror.org/00hc63q81', 'en', 1, 'https://ror.org/00hc63q81 Belfast Charitable Society'),
(70419, 'https://ror.org/00hcdm003', 'en', 1, 'https://ror.org/00hcdm003 Curatio International Foundation'),
(70420, 'https://ror.org/00hdpb239', 'en', 1, 'https://ror.org/00hdpb239 The Tree Council'),
(70421, 'https://ror.org/00hhkje33', 'en', 1, 'https://ror.org/00hhkje33 Royal Horticultural Society'),
(70422, 'https://ror.org/00hpx8e31', 'en', 1, 'https://ror.org/00hpx8e31 Asia Pacific Forum on Women, Law and Development'),
(70423, 'https://ror.org/00hqts921', 'en', 1, 'https://ror.org/00hqts921 New Virginia Majority Education Fund'),
(70424, 'https://ror.org/00htbzg76', 'en', 1, 'https://ror.org/00htbzg76 Saxon Memorial Foundation Stiftung SƤchsische GedenkstƤtten zur Erinnerung an die Opfer politischer Gewaltherrschaft'),
(70425, 'https://ror.org/00htsfa41', 'en', 1, 'https://ror.org/00htsfa41 Consumer Council for Water'),
(70426, 'https://ror.org/00hty4y33', 'en', 1, 'https://ror.org/00hty4y33 Headlands Center for the Arts'),
(70427, 'https://ror.org/00hy04j04', 'en', 1, 'https://ror.org/00hy04j04 The Judicial General Council of Mongolia Монгол Улсын Шүүхийн Ерөнхий Зөвлөл'),
(70428, 'https://ror.org/00hyx3015', 'no_lang_code', 1, 'https://ror.org/00hyx3015 Frequency Management International (United States)'),
(70429, 'https://ror.org/00hzz2423', 'en', 1, 'https://ror.org/00hzz2423 National Gamete Donation Trust'),
(70430, 'https://ror.org/00j1bpb72', 'no_lang_code', 1, 'https://ror.org/00j1bpb72 Johnson Engineering (United States)'),
(70431, 'https://ror.org/00j1hxb77', 'en', 1, 'https://ror.org/00j1hxb77 Scottish Wildlife Trust'),
(70432, 'https://ror.org/00j3vdq65', 'no_lang_code', 1, 'https://ror.org/00j3vdq65 Applied BioMath (United States)'),
(70433, 'https://ror.org/00j4kjd92', 'no_lang_code', 1, 'https://ror.org/00j4kjd92 PocketLab (United States)'),
(70434, 'https://ror.org/00j557793', 'en', 1, 'https://ror.org/00j557793 Western Organization of Resource Councils'),
(70435, 'https://ror.org/00j5fn448', 'en', 1, 'https://ror.org/00j5fn448 Loden Foundation'),
(70436, 'https://ror.org/00j5pc081', 'en', 1, 'https://ror.org/00j5pc081 The UK Sepsis Trust'),
(70437, 'https://ror.org/00j71tm53', 'en', 1, 'https://ror.org/00j71tm53 Beijing Yilian Legal Aid and Research Center of Labor åŒ—äŗ¬ä¹‰č”åŠ³åŠØę³•ę“åŠ©äøŽē ”ē©¶äø­åæƒ'),
(70438, 'https://ror.org/00j75nc06', 'en', 1, 'https://ror.org/00j75nc06 First Floor Gallery Harare'),
(70439, 'https://ror.org/00j7d4t09', 'fr', 1, 'https://ror.org/00j7d4t09 Institut EuropƩen De La QualitƩ Totale'),
(70440, 'https://ror.org/00j7mmn70', 'en', 1, 'https://ror.org/00j7mmn70 Science on Stage Europe'),
(70441, 'https://ror.org/00j82ww20', 'en', 1, 'https://ror.org/00j82ww20 Low Gillerthwaite Field Centre'),
(70442, 'https://ror.org/00ja58288', 'en', 1, 'https://ror.org/00ja58288 Wheal Martyn'),
(70443, 'https://ror.org/00ja8fs25', 'en', 1, 'https://ror.org/00ja8fs25 Institute for Society, Population and Nature Instituto Sociedade População Natureza'),
(70444, 'https://ror.org/00jd4hc03', 'en', 1, 'https://ror.org/00jd4hc03 Chomhairle NÔisiúnta Eacnamaíoch Shóialta National Economic and Social Council'),
(70445, 'https://ror.org/00je08x63', 'en', 1, 'https://ror.org/00je08x63 Tygerberg Children’s Hospital'),
(70446, 'https://ror.org/00je6er82', 'en', 1, 'https://ror.org/00je6er82 Mississippi Division of Medicaid'),
(70447, 'https://ror.org/00jeph960', 'pt', 1, 'https://ror.org/00jeph960 Museu do Samba'),
(70448, 'https://ror.org/00jet1p36', 'en', 1, 'https://ror.org/00jet1p36 Indian Institute of Forest Management ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ वन ą¤Ŗą„ą¤°ą¤¬ą¤Øą„ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(70449, 'https://ror.org/00jfgw542', 'ms', 1, 'https://ror.org/00jfgw542 Hospital Sultanah Nur Zahirah'),
(70450, 'https://ror.org/00jgjke27', 'no_lang_code', 1, 'https://ror.org/00jgjke27 Coating Systems Laboratories (United States)'),
(70451, 'https://ror.org/00jgz5a53', 'en', 1, 'https://ror.org/00jgz5a53 Sigmund Freud Museum'),
(70452, 'https://ror.org/00jh87v98', 'en', 1, 'https://ror.org/00jh87v98 International Lesbian, Gay, Bisexual, Trans and Intersex Association'),
(70453, 'https://ror.org/00jhfm416', 'pt', 1, 'https://ror.org/00jhfm416 Associação Brasileira de Esclerose Lateral Amiotrófica'),
(70454, 'https://ror.org/00jhpn059', 'en', 1, 'https://ror.org/00jhpn059 American University of Mongolia Монгол Š“Š°Ń…ŃŒ Америк Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(70455, 'https://ror.org/00jmssa97', 'en', 1, 'https://ror.org/00jmssa97 National Legal Aid & Defender Association'),
(70456, 'https://ror.org/00jmvpm31', 'en', 1, 'https://ror.org/00jmvpm31 Institution of Engineering Designers'),
(70457, 'https://ror.org/00jpxw560', 'no_lang_code', 1, 'https://ror.org/00jpxw560 Antheia (United States)'),
(70458, 'https://ror.org/00jreav89', 'es', 1, 'https://ror.org/00jreav89 Hospital Base'),
(70459, 'https://ror.org/00jxnw682', 'ms', 1, 'https://ror.org/00jxnw682 Hospital Tuanku Ja’afar'),
(70460, 'https://ror.org/00k1jzy36', 'en', 1, 'https://ror.org/00k1jzy36 Carnegie UK Trust'),
(70461, 'https://ror.org/00k2j2d15', 'no_lang_code', 1, 'https://ror.org/00k2j2d15 Dirac Research (Sweden)'),
(70462, 'https://ror.org/00k2ybc23', 'no_lang_code', 1, 'https://ror.org/00k2ybc23 Cavis Technologies (Sweden)'),
(70463, 'https://ror.org/00k2ykm07', 'no_lang_code', 1, 'https://ror.org/00k2ykm07 Industrial & Biomedical Sensors (United States)'),
(70464, 'https://ror.org/00k64aw37', 'en', 1, 'https://ror.org/00k64aw37 Scottish Family Business Association'),
(70465, 'https://ror.org/00k6qmq88', 'en', 1, 'https://ror.org/00k6qmq88 Association of North East Councils'),
(70466, 'https://ror.org/00k7xg884', 'en', 1, 'https://ror.org/00k7xg884 World Energy Council'),
(70467, 'https://ror.org/00k8d8f82', 'en', 1, 'https://ror.org/00k8d8f82 The Bowes Museum'),
(70468, 'https://ror.org/00k8f0f41', 'en', 1, 'https://ror.org/00k8f0f41 National Institute of Technical Teachers’ Training and Research'),
(70469, 'https://ror.org/00k8r3g38', 'no_lang_code', 1, 'https://ror.org/00k8r3g38 TPK (United States)'),
(70470, 'https://ror.org/00k8rrx20', 'pt', 1, 'https://ror.org/00k8rrx20 Centro de Estudos das RelaƧƵes de Trabalho e Desigualdades'),
(70471, 'https://ror.org/00k8z3892', 'en', 1, 'https://ror.org/00k8z3892 Leicestershire Fire and Rescue Service'),
(70472, 'https://ror.org/00kbh2120', 'no_lang_code', 1, 'https://ror.org/00kbh2120 Herbal Apothecary (United Kingdom)'),
(70473, 'https://ror.org/00kdkx513', 'en', 1, 'https://ror.org/00kdkx513 African Heritage and Educational Centre'),
(70474, 'https://ror.org/00kdmt348', 'no_lang_code', 1, 'https://ror.org/00kdmt348 Cellar Door Labs (United States)'),
(70475, 'https://ror.org/00ke1nc44', 'de', 1, 'https://ror.org/00ke1nc44 Deutscher Beton- und Bautechnik-Verein'),
(70476, 'https://ror.org/00kewvc41', 'fr', 1, 'https://ror.org/00kewvc41 Laboratoire D''Ʃtude des RƩsidus et Contaminants Dans les Aliments'),
(70477, 'https://ror.org/00kf1a996', 'pt', 1, 'https://ror.org/00kf1a996 Casa Fluminense'),
(70478, 'https://ror.org/00kgt0r22', 'no_lang_code', 1, 'https://ror.org/00kgt0r22 Studi'),
(70479, 'https://ror.org/00kgx1e52', 'en', 1, 'https://ror.org/00kgx1e52 Caledonia Housing Association'),
(70480, 'https://ror.org/00khkb614', 'en', 1, 'https://ror.org/00khkb614 Laboratory of Excellence for Financial Regulation'),
(70481, 'https://ror.org/00knfed84', 'en', 1, 'https://ror.org/00knfed84 Bangladesh Institute of International and Strategic Studies বাংলাদেশ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦ą¦Øą§ą¦” ą¦øą§ą¦Ÿą§ą¦°ą¦¾ą¦Ÿą§‡ą¦œą¦æą¦• ą¦øą§ą¦Ÿą¦¾ą¦”ą¦æą¦œ'),
(70482, 'https://ror.org/00kqgxx94', 'en', 1, 'https://ror.org/00kqgxx94 African Studies Association of India'),
(70483, 'https://ror.org/00krgnp64', 'en', 1, 'https://ror.org/00krgnp64 London Sinfonietta'),
(70484, 'https://ror.org/00ksfyn98', 'en', 1, 'https://ror.org/00ksfyn98 Centre for Investigative Journalism'),
(70485, 'https://ror.org/00kvy8r73', 'en', 1, 'https://ror.org/00kvy8r73 The Mountain Institute'),
(70486, 'https://ror.org/00m0sd163', 'en', 1, 'https://ror.org/00m0sd163 Religious Coalition for Reproductive Choice'),
(70487, 'https://ror.org/00m1hwg25', 'en', 1, 'https://ror.org/00m1hwg25 English & Media Centre'),
(70488, 'https://ror.org/00m1t4240', 'en', 1, 'https://ror.org/00m1t4240 National Library of Laos ąŗ«ą»ąŗŖąŗ°ą»ąŗøąŗ”ą»ąŗ«ą»ˆąŗ‡ąŗŠąŗ²ąŗ”'),
(70489, 'https://ror.org/00m48be82', 'en', 1, 'https://ror.org/00m48be82 National Council for Voluntary Youth Services'),
(70490, 'https://ror.org/00m6ag204', 'en', 1, 'https://ror.org/00m6ag204 Pulitzer Arts Foundation'),
(70491, 'https://ror.org/00mddz208', 'no_lang_code', 1, 'https://ror.org/00mddz208 And Technology Research (United Kingdom)'),
(70492, 'https://ror.org/00mezra25', 'en', 1, 'https://ror.org/00mezra25 The Hans GƔl Society'),
(70493, 'https://ror.org/00mg9qs62', 'no_lang_code', 1, 'https://ror.org/00mg9qs62 GC Systems (United States)'),
(70494, 'https://ror.org/00mhw7g56', 'no_lang_code', 1, 'https://ror.org/00mhw7g56 Tulana'),
(70495, 'https://ror.org/00mja9e27', 'en', 1, 'https://ror.org/00mja9e27 Kyrgyzskaya State Academy of Physical Culture and Sports ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(70496, 'https://ror.org/00mkb4d14', 'hu', 1, 'https://ror.org/00mkb4d14 Lechner TudƔskƶzpont'),
(70497, 'https://ror.org/00mkdy143', 'no_lang_code', 1, 'https://ror.org/00mkdy143 Vicore Pharma (Sweden)'),
(70498, 'https://ror.org/00mm8xk76', 'it', 1, 'https://ror.org/00mm8xk76 Istituto di Istruzione Secondaria Superiore "V. Lilla" Francavilla Fontana - Oria'),
(70499, 'https://ror.org/00mmb0c67', 'en', 1, 'https://ror.org/00mmb0c67 Human Resource Development Center Š¦ŠµŠ½Ń‚ŃŠŃ€ за развитие на Ń‡Š¾Š²ŠµŃˆŠŗŠøŃ‚Šµ Ń€ŠµŃŃƒŃ€ŃŠø'),
(70500, 'https://ror.org/00mmkx194', 'en', 1, 'https://ror.org/00mmkx194 Progress Michigan'),
(70501, 'https://ror.org/00mnsjn75', 'en', 1, 'https://ror.org/00mnsjn75 Institute of Forensic Sciences Instituto de Ciencias Forenses de Puerto Rico'),
(70502, 'https://ror.org/00mp54j66', 'en', 1, 'https://ror.org/00mp54j66 Bryansk Regional Scientific Universal Library. F. I. Tyutchev'),
(70503, 'https://ror.org/00mqaf442', 'no_lang_code', 1, 'https://ror.org/00mqaf442 GTS (Denmark)'),
(70504, 'https://ror.org/00ms2qt30', 'no_lang_code', 1, 'https://ror.org/00ms2qt30 IntelliWheels (United States)'),
(70505, 'https://ror.org/00mvdnr09', 'no_lang_code', 1, 'https://ror.org/00mvdnr09 Mach Diamond Propulsion (United States)'),
(70506, 'https://ror.org/00mx4ey95', 'no_lang_code', 1, 'https://ror.org/00mx4ey95 Innovative Imaging and Research (United States)'),
(70507, 'https://ror.org/00mycjp45', 'no_lang_code', 1, 'https://ror.org/00mycjp45 Custom Electronics (United States)'),
(70508, 'https://ror.org/00mz2b614', 'en', 1, 'https://ror.org/00mz2b614 The Culture Capital Exchange'),
(70509, 'https://ror.org/00n03f122', 'pt', 1, 'https://ror.org/00n03f122 Malungu'),
(70510, 'https://ror.org/00n0f0m43', 'no_lang_code', 1, 'https://ror.org/00n0f0m43 Praxis (United Kingdom)'),
(70511, 'https://ror.org/00n1h4322', 'pl', 1, 'https://ror.org/00n1h4322 Wojewódzki Szpital Specjalistyczny we Wrocławiu'),
(70512, 'https://ror.org/00n1qg914', 'en', 1, 'https://ror.org/00n1qg914 Methodology and Quality of Life Unit in Oncology UnitƩ de MƩthodologie et de QualitƩ de Vie en CancƩrologie'),
(70513, 'https://ror.org/00n29yx59', 'no_lang_code', 1, 'https://ror.org/00n29yx59 Brockmann Geomatics (Sweden)'),
(70514, 'https://ror.org/00n3bma30', 'en', 1, 'https://ror.org/00n3bma30 The Operational Research Society'),
(70515, 'https://ror.org/00n3xk635', 'en', 1, 'https://ror.org/00n3xk635 Libraries Tasmania'),
(70516, 'https://ror.org/00n6bec83', 'no_lang_code', 1, 'https://ror.org/00n6bec83 Guernsey Coating Laboratories (United States)'),
(70517, 'https://ror.org/00n860n87', 'en', 1, 'https://ror.org/00n860n87 St. Vrain Valley School District'),
(70518, 'https://ror.org/00n9dn158', 'fr', 1, 'https://ror.org/00n9dn158 Institut Franco-Chinois de l''Energie NuclĆ©aire äø­ę³•ę øå·„ēØ‹äøŽęŠ€ęœÆå­¦é™¢'),
(70519, 'https://ror.org/00n9sjd15', 'en', 1, 'https://ror.org/00n9sjd15 Center for Human Rights and Conflict Resolution'),
(70520, 'https://ror.org/00nbvsp70', 'en', 1, 'https://ror.org/00nbvsp70 Pretrial Services Agency for the District of Columbia'),
(70521, 'https://ror.org/00nc5nv80', 'no_lang_code', 1, 'https://ror.org/00nc5nv80 Midsummer (Sweden)'),
(70522, 'https://ror.org/00nc9jd53', 'no_lang_code', 1, 'https://ror.org/00nc9jd53 Kharkiv Lit Museum Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š»Ń–Ń‚ŠµŃ€Š°Ń‚ŃƒŃ€Š½ŠøŠ¹ музей'),
(70523, 'https://ror.org/00nge9944', 'en', 1, 'https://ror.org/00nge9944 Law & Society Trust'),
(70524, 'https://ror.org/00nh4sd73', 'en', 1, 'https://ror.org/00nh4sd73 UK Quality Ash Association'),
(70525, 'https://ror.org/00nj4dw70', 'en', 1, 'https://ror.org/00nj4dw70 Action Against Medical Accidents'),
(70526, 'https://ror.org/00nmjtf96', 'no_lang_code', 1, 'https://ror.org/00nmjtf96 Catalina (United States)'),
(70527, 'https://ror.org/00nmq2g35', 'no_lang_code', 1, 'https://ror.org/00nmq2g35 Integrative Research Laboratories'),
(70528, 'https://ror.org/00nmsgd25', 'en', 1, 'https://ror.org/00nmsgd25 Keith Khan Associates'),
(70529, 'https://ror.org/00nn13598', 'no_lang_code', 1, 'https://ror.org/00nn13598 Edge One (United States)'),
(70530, 'https://ror.org/00nn27y59', 'en', 1, 'https://ror.org/00nn27y59 World Policy Institute'),
(70531, 'https://ror.org/00nnrh863', 'en', 1, 'https://ror.org/00nnrh863 Tajik State Institute of Languages Š”ŠžŠŠ˜ŠØŠšŠŠ”ŠŠ˜ Š”ŠŠ’Š›ŠŠ¢Š˜Š˜ Š—ŠŠ‘ŠžŠ©ŠžŠ˜ тоГикистон БА номи сотим Š£Š›Š£Š“Š—ŠžŠ”Š'),
(70532, 'https://ror.org/00nrdj674', 'en', 1, 'https://ror.org/00nrdj674 Columbia Global Centers'),
(70533, 'https://ror.org/00nsfc592', 'no_lang_code', 1, 'https://ror.org/00nsfc592 Atrogi (Sweden)'),
(70534, 'https://ror.org/00nwdkz22', 'en', 1, 'https://ror.org/00nwdkz22 Institute of Philosophy Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ філасофіі ŠŠ°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Š°Š¹ Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń– навук Š‘ŠµŠ»Š°Ń€ŃƒŃŃ– Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ философии ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(70535, 'https://ror.org/00nwkxv42', 'en', 1, 'https://ror.org/00nwkxv42 McCrone Research Institute'),
(70536, 'https://ror.org/00nx8qv29', 'en', 1, 'https://ror.org/00nx8qv29 Siena School for Liberal Arts'),
(70537, 'https://ror.org/00nxm0568', 'en', 1, 'https://ror.org/00nxm0568 Lillstreet Art Center'),
(70538, 'https://ror.org/00nz6vc25', 'en', 1, 'https://ror.org/00nz6vc25 Middle Rio Grande Development Council'),
(70539, 'https://ror.org/00p1gt488', 'en', 1, 'https://ror.org/00p1gt488 European Association for the Defence of Human Rights'),
(70540, 'https://ror.org/00p3qg519', 'en', 1, 'https://ror.org/00p3qg519 Exact Sports'),
(70541, 'https://ror.org/00p5gtp56', 'no_lang_code', 1, 'https://ror.org/00p5gtp56 Patriksson Communication (Sweden)'),
(70542, 'https://ror.org/00p65td76', 'en', 1, 'https://ror.org/00p65td76 Royal Pigeon Racing Association'),
(70543, 'https://ror.org/00p6c9322', 'no_lang_code', 1, 'https://ror.org/00p6c9322 Ngami Data Services (Botswana)'),
(70544, 'https://ror.org/00p7ztx41', 'en', 1, 'https://ror.org/00p7ztx41 Belarusian Economic Research and Outreach Center'),
(70545, 'https://ror.org/00p957h13', 'en', 1, 'https://ror.org/00p957h13 Institute for Social Development Studies Viện nghiĆŖn cứu phĆ”t triển xĆ£ hį»™i'),
(70546, 'https://ror.org/00p9qs658', 'en', 1, 'https://ror.org/00p9qs658 Teller Madsen'),
(70547, 'https://ror.org/00pahkj72', 'no_lang_code', 1, 'https://ror.org/00pahkj72 Xilinx (Ireland)'),
(70548, 'https://ror.org/00panym11', 'no_lang_code', 1, 'https://ror.org/00panym11 Cairn Biosciences (United States)'),
(70549, 'https://ror.org/00pcg1863', 'en', 1, 'https://ror.org/00pcg1863 Booksellers Association'),
(70550, 'https://ror.org/00pcsg584', 'en', 1, 'https://ror.org/00pcsg584 Turkiye Diyanet Foundation'),
(70551, 'https://ror.org/00pf88j43', 'no_lang_code', 1, 'https://ror.org/00pf88j43 WilderShares (United States)'),
(70552, 'https://ror.org/00pftgq30', 'en', 1, 'https://ror.org/00pftgq30 DST Centre for Policy Research'),
(70553, 'https://ror.org/00pg29k97', 'en', 1, 'https://ror.org/00pg29k97 Intercultural Dialogue Foundation InterkulturƔlis PƔrbeszƩd AlapƭtvƔny'),
(70554, 'https://ror.org/00pj4py55', 'no_lang_code', 1, 'https://ror.org/00pj4py55 American Systems (United States)'),
(70555, 'https://ror.org/00pjvg681', 'no_lang_code', 1, 'https://ror.org/00pjvg681 Global Aircraft (United States)'),
(70556, 'https://ror.org/00pk8w333', 'en', 1, 'https://ror.org/00pk8w333 Bolton Library and Museum Services'),
(70557, 'https://ror.org/00pkccj03', 'no_lang_code', 1, 'https://ror.org/00pkccj03 Magna-Tech P/M Labs (United States)'),
(70558, 'https://ror.org/00pkkjm33', 'no_lang_code', 1, 'https://ror.org/00pkkjm33 Mistral Security (United States)'),
(70559, 'https://ror.org/00pkp3a47', 'en', 1, 'https://ror.org/00pkp3a47 Nkuzi Development Association'),
(70560, 'https://ror.org/00pvp5q54', 'en', 1, 'https://ror.org/00pvp5q54 State Cryptography Administration 国家密码箔理局'),
(70561, 'https://ror.org/00pvy5f43', 'en', 1, 'https://ror.org/00pvy5f43 Da Nang Institute For Socio - Economic Development VIỆN NGHIÊN CỨU PHƁT TRIỂN KINH Tįŗ¾ - Xƃ HỘI Đƀ Nįŗ“NG'),
(70562, 'https://ror.org/00pyvsn14', 'en', 1, 'https://ror.org/00pyvsn14 British Association of Social Workers'),
(70563, 'https://ror.org/00q0e7f94', 'no_lang_code', 1, 'https://ror.org/00q0e7f94 Tįŗ­p đoĆ n Bʰu chĆ­nh Viį»…n thĆ“ng Việt Nam Vietnam Posts and Telecommunications Group (Vietnam)'),
(70564, 'https://ror.org/00q1sca35', 'en', 1, 'https://ror.org/00q1sca35 Carnegie Moscow Center Московский Центр ŠšŠ°Ń€Š½ŠµŠ³Šø'),
(70565, 'https://ror.org/00q29t979', 'no_lang_code', 1, 'https://ror.org/00q29t979 American Engineering & Manufacturing (United States)'),
(70566, 'https://ror.org/00q4d6m68', 'no_lang_code', 1, 'https://ror.org/00q4d6m68 Glider Factory in Jeżów (Poland) Zakład Szybowcowy Jeźów Henryk Mynarski'),
(70567, 'https://ror.org/00q5t6695', 'no_lang_code', 1, 'https://ror.org/00q5t6695 Harland Medical Systems (United States)'),
(70568, 'https://ror.org/00q6vbk50', 'en', 1, 'https://ror.org/00q6vbk50 Southern Mutual Help Association'),
(70569, 'https://ror.org/00q80jg86', 'en', 1, 'https://ror.org/00q80jg86 Champs Public Health Collaborative'),
(70570, 'https://ror.org/00q89h712', 'no_lang_code', 1, 'https://ror.org/00q89h712 Chem-Master International (United States)'),
(70571, 'https://ror.org/00q8ds557', 'en', 1, 'https://ror.org/00q8ds557 The State Historical and Cultural Reserve "Trypillya Culture" Державний історико-ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½ŠøŠ¹ заповіГник Ā«Š¢Ń€ŠøŠæŃ–Š»ŃŒŃŃŒŠŗŠ° ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š°Ā»'),
(70572, 'https://ror.org/00q8xtg52', 'en', 1, 'https://ror.org/00q8xtg52 Palmetto Research Center'),
(70573, 'https://ror.org/00q9x4d93', 'no_lang_code', 1, 'https://ror.org/00q9x4d93 Eureka Aerospace (United States)'),
(70574, 'https://ror.org/00qavst65', 'en', 1, 'https://ror.org/00qavst65 Wuhan Puai Hospital ę­¦ę±‰ę™®ēˆ±åŒ»é™¢'),
(70575, 'https://ror.org/00qb7v529', 'it', 1, 'https://ror.org/00qb7v529 Archivio di Stato di Roma'),
(70576, 'https://ror.org/00qbdg904', 'en', 1, 'https://ror.org/00qbdg904 Road Clinical Hospital on Novosibirsk-Main JSC Russian Railways ŠŠ£Š— "Š”Š¾Ń€Š¾Š¶Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° на ст ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗ-Главный ŠžŠŠž "Š Š–Š”"'),
(70577, 'https://ror.org/00qbns296', 'no_lang_code', 1, 'https://ror.org/00qbns296 Crestone (United States)'),
(70578, 'https://ror.org/00qdxv953', 'no_lang_code', 1, 'https://ror.org/00qdxv953 Praktika Publishing House ŠŸŃ€Š°ŠŗŃ‚ŠøŠŗŠ°'),
(70579, 'https://ror.org/00qerf253', 'en', 1, 'https://ror.org/00qerf253 Belgrade Open School Beogradska Otvorena Skola'),
(70580, 'https://ror.org/00qfydg61', 'en', 1, 'https://ror.org/00qfydg61 Centre for Policy Dialogue'),
(70581, 'https://ror.org/00qg3d075', 'no_lang_code', 1, 'https://ror.org/00qg3d075 Ajelis (France)'),
(70582, 'https://ror.org/00qjnpe47', 'no_lang_code', 1, 'https://ror.org/00qjnpe47 PatentVantage (United States)'),
(70583, 'https://ror.org/00qkegp41', 'de', 1, 'https://ror.org/00qkegp41 cts CaritasKlinikum Saarbrücken'),
(70584, 'https://ror.org/00qmr3w93', 'no_lang_code', 1, 'https://ror.org/00qmr3w93 Fabrico Technology (United States)'),
(70585, 'https://ror.org/00qnj9c09', 'no_lang_code', 1, 'https://ror.org/00qnj9c09 Zakłady Energetyki Cieplnej (Poland)'),
(70586, 'https://ror.org/00qsjqq12', 'en', 1, 'https://ror.org/00qsjqq12 Greenland National Museum & Archives Nunatta Katersugaasivia Allagaateqarfialu'),
(70587, 'https://ror.org/00qt5t304', 'en', 1, 'https://ror.org/00qt5t304 Automated Regional Justice Information System'),
(70588, 'https://ror.org/00qvjvf51', 'en', 1, 'https://ror.org/00qvjvf51 Catalyst'),
(70589, 'https://ror.org/00qw0ej89', 'no_lang_code', 1, 'https://ror.org/00qw0ej89 Vigo (Poland)'),
(70590, 'https://ror.org/00qxn6s10', 'no_lang_code', 1, 'https://ror.org/00qxn6s10 Nordic BioAnalyis (Sweden)'),
(70591, 'https://ror.org/00r071h34', 'en', 1, 'https://ror.org/00r071h34 Smith-Magenis Syndrome Foundation'),
(70592, 'https://ror.org/00r18kp26', 'bs', 1, 'https://ror.org/00r18kp26 OKC AbraÅ”ević The Youth Cultural Centre AbraÅ”ević'),
(70593, 'https://ror.org/00r2sd878', 'no_lang_code', 1, 'https://ror.org/00r2sd878 ISTEQ (Netherlands)'),
(70594, 'https://ror.org/00r3k2f05', 'no_lang_code', 1, 'https://ror.org/00r3k2f05 Grainflow Dynamics (United States)'),
(70595, 'https://ror.org/00r492z79', 'no_lang_code', 1, 'https://ror.org/00r492z79 OikosLab Future Solutions (Sweden)'),
(70596, 'https://ror.org/00r80fz20', 'en', 1, 'https://ror.org/00r80fz20 Quantum Gravity Research'),
(70597, 'https://ror.org/00r838687', 'no_lang_code', 1, 'https://ror.org/00r838687 Inscope International (United States)'),
(70598, 'https://ror.org/00ragt065', 'en', 1, 'https://ror.org/00ragt065 Trent Rivers Trust'),
(70599, 'https://ror.org/00rcg3441', 'en', 1, 'https://ror.org/00rcg3441 Shamakhy Astrophysical Observatory named after Nasraddin Tusi'),
(70600, 'https://ror.org/00rcv1209', 'en', 1, 'https://ror.org/00rcv1209 The Crucible'),
(70601, 'https://ror.org/00rdsdk57', 'pt', 1, 'https://ror.org/00rdsdk57 Agência Patrícia Galvão'),
(70602, 'https://ror.org/00rfg3b85', 'en', 1, 'https://ror.org/00rfg3b85 Working Class Movement Library'),
(70603, 'https://ror.org/00rjqge87', 'sv', 1, 'https://ror.org/00rjqge87 Tesch-Ɩvermo stiftelsen'),
(70604, 'https://ror.org/00rkc1204', 'en', 1, 'https://ror.org/00rkc1204 Crichton Carbon Centre'),
(70605, 'https://ror.org/00rkfts56', 'no_lang_code', 1, 'https://ror.org/00rkfts56 Gismo Therapeutics (United States)'),
(70606, 'https://ror.org/00rmabh56', 'en', 1, 'https://ror.org/00rmabh56 Lower East Side Printshop'),
(70607, 'https://ror.org/00rn98z33', 'no_lang_code', 1, 'https://ror.org/00rn98z33 Suntory (United Kingdom)'),
(70608, 'https://ror.org/00rnjpt59', 'en', 1, 'https://ror.org/00rnjpt59 Bulacan Agricultural State College'),
(70609, 'https://ror.org/00rq4rf45', 'no_lang_code', 1, 'https://ror.org/00rq4rf45 Zeto (Poland)'),
(70610, 'https://ror.org/00rve9x39', 'en', 1, 'https://ror.org/00rve9x39 Shannon Applied Biotechnology Centre'),
(70611, 'https://ror.org/00rwrt808', 'en', 1, 'https://ror.org/00rwrt808 Tekniska Museet The National Museum of Science and Technology'),
(70612, 'https://ror.org/00rxtaa07', 'en', 1, 'https://ror.org/00rxtaa07 Thai-German Institute ąøŖąø–ąø²ąøšąø±ąø™ą¹„ąø—ąø¢-เยอรดัน'),
(70613, 'https://ror.org/00s0qnx27', 'en', 1, 'https://ror.org/00s0qnx27 Apeejay Stya University'),
(70614, 'https://ror.org/00s11fs62', 'no_lang_code', 1, 'https://ror.org/00s11fs62 iDEAL Technology (United States)'),
(70615, 'https://ror.org/00s4y3439', 'no_lang_code', 1, 'https://ror.org/00s4y3439 Cemet (Poland)'),
(70616, 'https://ror.org/00s78tb81', 'no_lang_code', 1, 'https://ror.org/00s78tb81 Blaze Bioscience (United States)'),
(70617, 'https://ror.org/00sbgyf60', 'fr', 1, 'https://ror.org/00sbgyf60 Laboratoire de Recherche Scientifique'),
(70618, 'https://ror.org/00sbkq582', 'en', 1, 'https://ror.org/00sbkq582 Futuro'),
(70619, 'https://ror.org/00sch3b34', 'en', 1, 'https://ror.org/00sch3b34 Plymouth City Council'),
(70620, 'https://ror.org/00scy5291', 'en', 1, 'https://ror.org/00scy5291 Centre for Contemporary Art and the Natural World'),
(70621, 'https://ror.org/00se8ng51', 'no_lang_code', 1, 'https://ror.org/00se8ng51 CSL Materials (United States)'),
(70622, 'https://ror.org/00semp387', 'no_lang_code', 1, 'https://ror.org/00semp387 Murphy Oil Corporation (United States)'),
(70623, 'https://ror.org/00sgv1989', 'en', 1, 'https://ror.org/00sgv1989 Concurrent Technologies Corporation'),
(70624, 'https://ror.org/00sh5y950', 'en', 1, 'https://ror.org/00sh5y950 Yantai Automobile Engineering Professional College ēƒŸå°ę±½č½¦å·„ēØ‹čŒäøšå­¦é™¢'),
(70625, 'https://ror.org/00shbds80', 'en', 1, 'https://ror.org/00shbds80 Dartington Service Design Lab'),
(70626, 'https://ror.org/00shyvc62', 'no_lang_code', 1, 'https://ror.org/00shyvc62 Icosystem (United States)'),
(70627, 'https://ror.org/00sj73q02', 'no_lang_code', 1, 'https://ror.org/00sj73q02 CoorsTek (United States)'),
(70628, 'https://ror.org/00smxfq50', 'en', 1, 'https://ror.org/00smxfq50 Bulgarian Association for the Promotion of Citizens Initiative Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ¾ ŃŠ“Ń€ŃƒŠ¶ŠµŠ½ŠøŠµ за Š½Š°ŃŃŠŃ€Ń‡Š°Š²Š°Š½Šµ на гражГанската инициатива'),
(70629, 'https://ror.org/00sp0xc53', 'no_lang_code', 1, 'https://ror.org/00sp0xc53 Blackfynn (United States)'),
(70630, 'https://ror.org/00sqz4v59', 'no_lang_code', 1, 'https://ror.org/00sqz4v59 Innovatech (United States)'),
(70631, 'https://ror.org/00sr3jx98', 'sv', 1, 'https://ror.org/00sr3jx98 VƄrdcentralen SilentzvƤgen'),
(70632, 'https://ror.org/00srfk182', 'no_lang_code', 1, 'https://ror.org/00srfk182 Magicom (United States)'),
(70633, 'https://ror.org/00sv6gs75', 'en', 1, 'https://ror.org/00sv6gs75 Shenyang Sujiatun District Central Hospital ę²ˆé˜³åø‚č‹å®¶å±ÆåŒŗäø­åæƒåŒ»é™¢'),
(70634, 'https://ror.org/00sxaat11', 'en', 1, 'https://ror.org/00sxaat11 King Abdulaziz Foundation For Research And Archives'),
(70635, 'https://ror.org/00sxv8m86', 'no_lang_code', 1, 'https://ror.org/00sxv8m86 Centre of Technology Transfer Emag (Poland)'),
(70636, 'https://ror.org/00sy58v94', 'en', 1, 'https://ror.org/00sy58v94 Chung-Hwa Institute of Buddhist Studies äø­čÆä½›å­øē ”ē©¶ę‰€'),
(70637, 'https://ror.org/00sydr738', 'no_lang_code', 1, 'https://ror.org/00sydr738 Electro-Medical Measurement Systems (United Kingdom)'),
(70638, 'https://ror.org/00szj4f14', 'en', 1, 'https://ror.org/00szj4f14 Austrumeiropas Politikas Pētījumu Centrs Centre for Eastern European Policy Studies'),
(70639, 'https://ror.org/00t0v7w29', 'en', 1, 'https://ror.org/00t0v7w29 Min-On Concert Association ę°‘äø»éŸ³ę„½å”ä¼š'),
(70640, 'https://ror.org/00t1n6362', 'no_lang_code', 1, 'https://ror.org/00t1n6362 OMV Petrom (Romania)'),
(70641, 'https://ror.org/00t3e3c13', 'en', 1, 'https://ror.org/00t3e3c13 Steel Charitable Trust'),
(70642, 'https://ror.org/00t3h6w64', 'en', 1, 'https://ror.org/00t3h6w64 Science Media Centre'),
(70643, 'https://ror.org/00t3j9c50', 'en', 1, 'https://ror.org/00t3j9c50 The Heart House'),
(70644, 'https://ror.org/00t5yad55', 'en', 1, 'https://ror.org/00t5yad55 Isis-WICCE'),
(70645, 'https://ror.org/00t5ymp38', 'en', 1, 'https://ror.org/00t5ymp38 Scientific Center of Zoology and Hydroecology ŌæÕ„Õ¶Õ¤Õ”Õ¶Õ”Õ¢Õ”Õ¶ÕøÖ‚Õ©ÕµÕ”Õ¶ և Õ°Õ«Õ¤Ö€ÕøÕ§ÕÆÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ« Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(70646, 'https://ror.org/00t6eqy44', 'no_lang_code', 1, 'https://ror.org/00t6eqy44 MP Technologies (United States)'),
(70647, 'https://ror.org/00t87a490', 'no_lang_code', 1, 'https://ror.org/00t87a490 21st Century Systems (United States)'),
(70648, 'https://ror.org/00tasa398', 'en', 1, 'https://ror.org/00tasa398 Society for Longitudinal and Lifecourse Studies'),
(70649, 'https://ror.org/00tay8944', 'es', 1, 'https://ror.org/00tay8944 Instituto Nacional de Derechos Humanos'),
(70650, 'https://ror.org/00tcejj11', 'no_lang_code', 1, 'https://ror.org/00tcejj11 Azərbaycan Respublikası Dƶvlət Neft Şirkəti State Oil Company of Azerbaijan Republic (Azerbaijan)'),
(70651, 'https://ror.org/00tcrzw23', 'no_lang_code', 1, 'https://ror.org/00tcrzw23 Tawata Productions (New Zealand)'),
(70652, 'https://ror.org/00td3vg19', 'en', 1, 'https://ror.org/00td3vg19 British Dam Society'),
(70653, 'https://ror.org/00tey2378', 'no_lang_code', 1, 'https://ror.org/00tey2378 Stem Cells Spin (Poland)'),
(70654, 'https://ror.org/00tgp6q68', 'no_lang_code', 1, 'https://ror.org/00tgp6q68 Voestalpine (Brazil)'),
(70655, 'https://ror.org/00tjrva09', 'no_lang_code', 1, 'https://ror.org/00tjrva09 Envirochem (United States)'),
(70656, 'https://ror.org/00tmbfm47', 'en', 1, 'https://ror.org/00tmbfm47 Ocean Tracking Network'),
(70657, 'https://ror.org/00tn5yw94', 'es', 1, 'https://ror.org/00tn5yw94 Red Argentina de Instituciones de MicrocrƩdito'),
(70658, 'https://ror.org/00tntqs89', 'en', 1, 'https://ror.org/00tntqs89 Wonder Foundation'),
(70659, 'https://ror.org/00tpb5981', 'pt', 1, 'https://ror.org/00tpb5981 Conectas, Conectas Direitos Humanos'),
(70660, 'https://ror.org/00tpdkh38', 'en', 1, 'https://ror.org/00tpdkh38 Ross School'),
(70661, 'https://ror.org/00tq4sv71', 'no_lang_code', 1, 'https://ror.org/00tq4sv71 Cynvec (United States)'),
(70662, 'https://ror.org/00ts92x19', 'de', 1, 'https://ror.org/00ts92x19 Bürgerhospital Frankfurt am Main'),
(70663, 'https://ror.org/00tsh7c40', 'en', 1, 'https://ror.org/00tsh7c40 Ukrainian Association of Specialists on Overcoming the Consequences of Traumatic Events'),
(70664, 'https://ror.org/00ttwjh54', 'de', 1, 'https://ror.org/00ttwjh54 Georesearch Forschungsgesellschaft'),
(70665, 'https://ror.org/00twd4s32', 'en', 1, 'https://ror.org/00twd4s32 Great North Museum Hancock'),
(70666, 'https://ror.org/00twy1r91', 'en', 1, 'https://ror.org/00twy1r91 National Association of British and Irish Millers'),
(70667, 'https://ror.org/00txb3a66', 'en', 1, 'https://ror.org/00txb3a66 Christchurch City Council'),
(70668, 'https://ror.org/00txmyx33', 'no_lang_code', 1, 'https://ror.org/00txmyx33 InnaVasc Medical (United States)'),
(70669, 'https://ror.org/00tzfk251', 'en', 1, 'https://ror.org/00tzfk251 Centre for Youth & Criminal Justice'),
(70670, 'https://ror.org/00v140q16', 'en', 1, 'https://ror.org/00v140q16 MIT University МИТ Универзитет'),
(70671, 'https://ror.org/00v1wvp38', 'no_lang_code', 1, 'https://ror.org/00v1wvp38 Flashback Technologies (United States)'),
(70672, 'https://ror.org/00v2nch62', 'no_lang_code', 1, 'https://ror.org/00v2nch62 Barnstorm Research (United States)'),
(70673, 'https://ror.org/00v2zc821', 'es', 1, 'https://ror.org/00v2zc821 Colegio Ɓrula'),
(70674, 'https://ror.org/00v3n0x68', 'no_lang_code', 1, 'https://ror.org/00v3n0x68 Bio-Works (Sweden)'),
(70675, 'https://ror.org/00v3tje97', 'en', 1, 'https://ror.org/00v3tje97 The Faith & Politics Institute'),
(70676, 'https://ror.org/00v4msg57', 'en', 1, 'https://ror.org/00v4msg57 African Network for Internationalization of Education'),
(70677, 'https://ror.org/00v8ry163', 'en', 1, 'https://ror.org/00v8ry163 European Centre for Ecotoxicology and Toxicology of Chemicals'),
(70678, 'https://ror.org/00v907w21', 'en', 1, 'https://ror.org/00v907w21 Dubbo Hospital'),
(70679, 'https://ror.org/00v9mrx93', 'en', 1, 'https://ror.org/00v9mrx93 Energy and Utility Skills'),
(70680, 'https://ror.org/00v9sab02', 'no_lang_code', 1, 'https://ror.org/00v9sab02 Iteratec (Germany)'),
(70681, 'https://ror.org/00vaaes23', 'en', 1, 'https://ror.org/00vaaes23 Northwest Professional Consortium'),
(70682, 'https://ror.org/00vacpg25', 'no_lang_code', 1, 'https://ror.org/00vacpg25 Alba-Technic (United States)'),
(70683, 'https://ror.org/00varvj20', 'no_lang_code', 1, 'https://ror.org/00varvj20 SAIC Motor (United Kingdom)'),
(70684, 'https://ror.org/00vbd8v64', 'no_lang_code', 1, 'https://ror.org/00vbd8v64 Episensors (United States)'),
(70685, 'https://ror.org/00vbej866', 'en', 1, 'https://ror.org/00vbej866 Kalakshetra Foundation'),
(70686, 'https://ror.org/00vf0sw72', 'no_lang_code', 1, 'https://ror.org/00vf0sw72 B M Birla Science Centre'),
(70687, 'https://ror.org/00vf59397', 'no_lang_code', 1, 'https://ror.org/00vf59397 Neosense Technologies (Sweden)'),
(70688, 'https://ror.org/00vfdyp26', 'en', 1, 'https://ror.org/00vfdyp26 Finlands Nationalgalleri Finnish National Gallery Suomen Kansallisgalleria'),
(70689, 'https://ror.org/00vjz3318', 'en', 1, 'https://ror.org/00vjz3318 Leksikografski zavod Miroslav Krleža Miroslav Krleža Institute of Lexicography'),
(70690, 'https://ror.org/00vk4n496', 'no_lang_code', 1, 'https://ror.org/00vk4n496 Assuage Pharmaceuticals (United States)'),
(70691, 'https://ror.org/00vkfxn17', 'en', 1, 'https://ror.org/00vkfxn17 Mongolia International University'),
(70692, 'https://ror.org/00vm5qp33', 'no_lang_code', 1, 'https://ror.org/00vm5qp33 Integrated Optical Circuit Consultants (United States)'),
(70693, 'https://ror.org/00vp3mb10', 'en', 1, 'https://ror.org/00vp3mb10 Byron Museum of History'),
(70694, 'https://ror.org/00vrf8x48', 'en', 1, 'https://ror.org/00vrf8x48 Alamire Foundation'),
(70695, 'https://ror.org/00vtapt19', 'en', 1, 'https://ror.org/00vtapt19 The Mauritius Chamber of Commerce and Industry'),
(70696, 'https://ror.org/00vtb6v32', 'en', 1, 'https://ror.org/00vtb6v32 Institute of Educational Sciences Institutul de Ştiinţe ale Educaţiei'),
(70697, 'https://ror.org/00vvpe721', 'en', 1, 'https://ror.org/00vvpe721 La Jolla Alcohol Research'),
(70698, 'https://ror.org/00vyhrf09', 'no_lang_code', 1, 'https://ror.org/00vyhrf09 DEI Holdings (United States)'),
(70699, 'https://ror.org/00w074307', 'no_lang_code', 1, 'https://ror.org/00w074307 GoofyFoot Labs (United States)'),
(70700, 'https://ror.org/00w0b1y51', 'en', 1, 'https://ror.org/00w0b1y51 Global Press'),
(70701, 'https://ror.org/00w0zag63', 'en', 1, 'https://ror.org/00w0zag63 National Council for Palliative Care'),
(70702, 'https://ror.org/00w3sh282', 'en', 1, 'https://ror.org/00w3sh282 Six Nations Indian Museum'),
(70703, 'https://ror.org/00w46h989', 'en', 1, 'https://ror.org/00w46h989 Asian American Legal Defense and Education Fund'),
(70704, 'https://ror.org/00w4q6f22', 'no_lang_code', 1, 'https://ror.org/00w4q6f22 Kontron (France)'),
(70705, 'https://ror.org/00w60d804', 'en', 1, 'https://ror.org/00w60d804 International Network for Economic, Social and Cultural Rights Red Internacional para los Derechos Económicos, Sociales y Culturales Réseau International pour les Droits Economiques, Sociaux et Culturels'),
(70706, 'https://ror.org/00w6sdm89', 'en', 1, 'https://ror.org/00w6sdm89 Institute for Cultural Diplomacy'),
(70707, 'https://ror.org/00w7fsy96', 'no_lang_code', 1, 'https://ror.org/00w7fsy96 AVT Simulation (United States)'),
(70708, 'https://ror.org/00w7r8d30', 'en', 1, 'https://ror.org/00w7r8d30 The Hepatitis C Trust'),
(70709, 'https://ror.org/00w9dm031', 'en', 1, 'https://ror.org/00w9dm031 Institute on Taxation and Economic Policy'),
(70710, 'https://ror.org/00wbxbw73', 'en', 1, 'https://ror.org/00wbxbw73 Pre School Learning Alliance'),
(70711, 'https://ror.org/00we63k03', 'no_lang_code', 1, 'https://ror.org/00we63k03 Kiyatec (United States)'),
(70712, 'https://ror.org/00wfb0t96', 'no_lang_code', 1, 'https://ror.org/00wfb0t96 Holoeye (United States)'),
(70713, 'https://ror.org/00wjvk964', 'no_lang_code', 1, 'https://ror.org/00wjvk964 RAB Microfluidics (United Kingdom)'),
(70714, 'https://ror.org/00wjwzs60', 'en', 1, 'https://ror.org/00wjwzs60 Institute for Sound & Music'),
(70715, 'https://ror.org/00wngta72', 'en', 1, 'https://ror.org/00wngta72 Bumblebee Conservation Trust'),
(70716, 'https://ror.org/00wp30s27', 'no_lang_code', 1, 'https://ror.org/00wp30s27 Keywords Studios (United States)'),
(70717, 'https://ror.org/00wqws496', 'fr', 1, 'https://ror.org/00wqws496 Institut FranƧais de Rabat'),
(70718, 'https://ror.org/00wtq5187', 'en', 1, 'https://ror.org/00wtq5187 Design and Artists Copyright Society'),
(70719, 'https://ror.org/00wvn7664', 'no_lang_code', 1, 'https://ror.org/00wvn7664 Digital Proteomics (United States)'),
(70720, 'https://ror.org/00wvz2203', 'en', 1, 'https://ror.org/00wvz2203 Higher Learning Commission'),
(70721, 'https://ror.org/00ww76c39', 'en', 1, 'https://ror.org/00ww76c39 Muzeum Narodowe w Warszawie National Museum in Warsaw'),
(70722, 'https://ror.org/00wybgv46', 'no_lang_code', 1, 'https://ror.org/00wybgv46 Enformia (United States)'),
(70723, 'https://ror.org/00x0hb616', 'no_lang_code', 1, 'https://ror.org/00x0hb616 Mapei (United States)'),
(70724, 'https://ror.org/00x0x6v41', 'en', 1, 'https://ror.org/00x0x6v41 Co-operative College'),
(70725, 'https://ror.org/00x0xxx58', 'en', 1, 'https://ror.org/00x0xxx58 British Institute of Non-Destructive Testing'),
(70726, 'https://ror.org/00x3qgf57', 'hu', 1, 'https://ror.org/00x3qgf57 Eötvös József GimnÔzium'),
(70727, 'https://ror.org/00x43vj55', 'en', 1, 'https://ror.org/00x43vj55 Foundation Scotland'),
(70728, 'https://ror.org/00x5wpm25', 'en', 1, 'https://ror.org/00x5wpm25 Institute for Archaeological and Monumental Heritage Istituto per i Beni Archeologici e Monumentali'),
(70729, 'https://ror.org/00x6bxz91', 'no_lang_code', 1, 'https://ror.org/00x6bxz91 Companhia SiderĆŗrgica Nacional (Brazil)'),
(70730, 'https://ror.org/00x8nv804', 'en', 1, 'https://ror.org/00x8nv804 National Employment Law Project'),
(70731, 'https://ror.org/00x8y2776', 'no_lang_code', 1, 'https://ror.org/00x8y2776 Dynalene (United States)'),
(70732, 'https://ror.org/00xa7zj26', 'en', 1, 'https://ror.org/00xa7zj26 Lambeth Council'),
(70733, 'https://ror.org/00xc55195', 'en', 1, 'https://ror.org/00xc55195 The African Safari Foundation'),
(70734, 'https://ror.org/00xfbtw98', 'no_lang_code', 1, 'https://ror.org/00xfbtw98 EnSolve Biosystems (United States)'),
(70735, 'https://ror.org/00xg4w305', 'en', 1, 'https://ror.org/00xg4w305 Outcomes Based Healthcare'),
(70736, 'https://ror.org/00xg85119', 'no_lang_code', 1, 'https://ror.org/00xg85119 Bite Technologies (United States)'),
(70737, 'https://ror.org/00xka5v70', 'no_lang_code', 1, 'https://ror.org/00xka5v70 Raziskovalna Genetika in Agrokemija Research Genetics and Agrochemistry (Slovenia)'),
(70738, 'https://ror.org/00xky7n51', 'no_lang_code', 1, 'https://ror.org/00xky7n51 Lawrie Technology (United States)'),
(70739, 'https://ror.org/00xm1m223', 'no_lang_code', 1, 'https://ror.org/00xm1m223 The Washington Times (United States)'),
(70740, 'https://ror.org/00xpayr72', 'es', 1, 'https://ror.org/00xpayr72 Planta Piloto de IngenierĆ­a QuĆ­mica'),
(70741, 'https://ror.org/00xq4r679', 'en', 1, 'https://ror.org/00xq4r679 Veterinarians Without Borders Vétérinaires Sans Frontières'),
(70742, 'https://ror.org/00xqr8q70', 'en', 1, 'https://ror.org/00xqr8q70 Fountainbridge Library'),
(70743, 'https://ror.org/00xr7fv60', 'en', 1, 'https://ror.org/00xr7fv60 Social Science Baha'),
(70744, 'https://ror.org/00xr8z771', 'en', 1, 'https://ror.org/00xr8z771 Institute of Public Health Osijek-Baranja County Zavod za Javno Zdravstvo Osječko-Baranjske Županije'),
(70745, 'https://ror.org/00xrtc164', 'en', 1, 'https://ror.org/00xrtc164 Shetland Arts'),
(70746, 'https://ror.org/00xsqes49', 'no_lang_code', 1, 'https://ror.org/00xsqes49 BioInvenu (United States)'),
(70747, 'https://ror.org/00xws5c14', 'es', 1, 'https://ror.org/00xws5c14 Centro Cultural de España en El Salvador, Cooperación Española Cultura'),
(70748, 'https://ror.org/00xwvfm64', 'en', 1, 'https://ror.org/00xwvfm64 Australian Centre for Plant Functional Genomics'),
(70749, 'https://ror.org/00xyype02', 'en', 1, 'https://ror.org/00xyype02 Community Woodlands Association'),
(70750, 'https://ror.org/00xzb4g06', 'en', 1, 'https://ror.org/00xzb4g06 Center for Strategic Research Центр стратегических разработок'),
(70751, 'https://ror.org/00y0dba52', 'no_lang_code', 1, 'https://ror.org/00y0dba52 Gedea Biotech (Sweden)'),
(70752, 'https://ror.org/00y0mtz34', 'no_lang_code', 1, 'https://ror.org/00y0mtz34 BTB Pharma (Sweden)'),
(70753, 'https://ror.org/00y1ncc66', 'no_lang_code', 1, 'https://ror.org/00y1ncc66 Idaho Scientific (United States)'),
(70754, 'https://ror.org/00y1npz19', 'en', 1, 'https://ror.org/00y1npz19 Bridgeman Images'),
(70755, 'https://ror.org/00y2cjt87', 'en', 1, 'https://ror.org/00y2cjt87 Royal Opera House'),
(70756, 'https://ror.org/00y3b8e38', 'en', 1, 'https://ror.org/00y3b8e38 Lorna Young Foundation'),
(70757, 'https://ror.org/00y4jkk21', 'en', 1, 'https://ror.org/00y4jkk21 Pensions and Lifetime Savings Association'),
(70758, 'https://ror.org/00y4w6s19', 'no_lang_code', 1, 'https://ror.org/00y4w6s19 Parabola (United Kingdom)'),
(70759, 'https://ror.org/00y8a5g73', 'en', 1, 'https://ror.org/00y8a5g73 Sabah Environmental Trust'),
(70760, 'https://ror.org/00y8fja70', 'no_lang_code', 1, 'https://ror.org/00y8fja70 Ekomarine Paint (Sweden)'),
(70761, 'https://ror.org/00y8xx462', 'no_lang_code', 1, 'https://ror.org/00y8xx462 Credit Data Research (United Kingdom)'),
(70762, 'https://ror.org/00ya5ka53', 'en', 1, 'https://ror.org/00ya5ka53 Indus Resource Centre'),
(70763, 'https://ror.org/00yak9133', 'no_lang_code', 1, 'https://ror.org/00yak9133 Yangtze Optical Electronic (China)'),
(70764, 'https://ror.org/00ybgpf59', 'en', 1, 'https://ror.org/00ybgpf59 National Council of Juvenile and Family Court Judges'),
(70765, 'https://ror.org/00yc8p775', 'en', 1, 'https://ror.org/00yc8p775 International Federation of Television Archives'),
(70766, 'https://ror.org/00ycry713', 'en', 1, 'https://ror.org/00ycry713 TrĘ°į»ng ĐẔi Hį»c TĆ i ChĆ­nh - Marketing University of Finance - Marketing'),
(70767, 'https://ror.org/00yd8np83', 'en', 1, 'https://ror.org/00yd8np83 National University System'),
(70768, 'https://ror.org/00yenz435', 'en', 1, 'https://ror.org/00yenz435 AURA-J'),
(70769, 'https://ror.org/00yf53d07', 'en', 1, 'https://ror.org/00yf53d07 The Bill Douglas Cinema Museum'),
(70770, 'https://ror.org/00ygaqv05', 'no_lang_code', 1, 'https://ror.org/00ygaqv05 MetaMorph (United States)'),
(70771, 'https://ror.org/00yjxga86', 'no_lang_code', 1, 'https://ror.org/00yjxga86 AnaBios (United States)'),
(70772, 'https://ror.org/00yk3tm64', 'fr', 1, 'https://ror.org/00yk3tm64 UniversitƩ des Sciences de la SantƩ'),
(70773, 'https://ror.org/00ykyfn41', 'no_lang_code', 1, 'https://ror.org/00ykyfn41 CB Healthcare (India)'),
(70774, 'https://ror.org/00yn65598', 'en', 1, 'https://ror.org/00yn65598 Environmental Simulation Center'),
(70775, 'https://ror.org/00ynqbp15', 'no_lang_code', 1, 'https://ror.org/00ynqbp15 Integra (United States)'),
(70776, 'https://ror.org/00ysde465', 'no_lang_code', 1, 'https://ror.org/00ysde465 Cenna Biosciences (United States)'),
(70777, 'https://ror.org/00ysy8y40', 'en', 1, 'https://ror.org/00ysy8y40 Cleveland FES Center'),
(70778, 'https://ror.org/00ytw6m58', 'en', 1, 'https://ror.org/00ytw6m58 Institute of Environmental Geology and Geoengineering Istituto di Geologia Ambientale e Geoingegneria'),
(70779, 'https://ror.org/00ywmky87', 'no_lang_code', 1, 'https://ror.org/00ywmky87 Flightware (United States)'),
(70780, 'https://ror.org/00ywywm58', 'en', 1, 'https://ror.org/00ywywm58 Bevan Foundation'),
(70781, 'https://ror.org/00yy0tx50', 'no_lang_code', 1, 'https://ror.org/00yy0tx50 Hefei CAS Ion Medical and Technical Devices (China) åˆč‚„äø­ē§‘ē¦»å­åŒ»å­¦ęŠ€ęœÆč£…å¤‡'),
(70782, 'https://ror.org/00z1z4s30', 'no_lang_code', 1, 'https://ror.org/00z1z4s30 EpiBone (United States)'),
(70783, 'https://ror.org/00z28s026', 'en', 1, 'https://ror.org/00z28s026 Partnership for African Social & Governance Research'),
(70784, 'https://ror.org/00z57gh96', 'en', 1, 'https://ror.org/00z57gh96 Uganda National NGO Forum'),
(70785, 'https://ror.org/00z58gx92', 'en', 1, 'https://ror.org/00z58gx92 Wai Yin Society'),
(70786, 'https://ror.org/00z5a4134', 'es', 1, 'https://ror.org/00z5a4134 Hospital Naval Almirante Adriazola de Talcahuano'),
(70787, 'https://ror.org/00z610a60', 'en', 1, 'https://ror.org/00z610a60 Archivo y Biblioteca Nacionales de Bolivia National Archive and Library of Bolivia'),
(70788, 'https://ror.org/00z7p5142', 'en', 1, 'https://ror.org/00z7p5142 North Devon Biosphere Foundation'),
(70789, 'https://ror.org/00z8qb234', 'en', 1, 'https://ror.org/00z8qb234 Country Land and Business Association'),
(70790, 'https://ror.org/00z94ps04', 'en', 1, 'https://ror.org/00z94ps04 State Institute for Art Studies Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²Š¾Š·Š½Š°Š½ŠøŃ'),
(70791, 'https://ror.org/00za55k91', 'no_lang_code', 1, 'https://ror.org/00za55k91 Roper Technologies (United Kingdom)'),
(70792, 'https://ror.org/00za70p44', 'da', 1, 'https://ror.org/00za70p44 Museum SĆønderjylland'),
(70793, 'https://ror.org/00zam7c12', 'de', 1, 'https://ror.org/00zam7c12 Deutsche Initiative für Netzwerkinformation German Initiative for Network Information'),
(70794, 'https://ror.org/00zay1847', 'no_lang_code', 1, 'https://ror.org/00zay1847 GTD Unlimited (United States)');
INSERT INTO `rors` VALUES
(70795, 'https://ror.org/00zb61d94', 'en', 1, 'https://ror.org/00zb61d94 The Kenya Alliance of Resident Associations'),
(70796, 'https://ror.org/00zb6xd25', 'en', 1, 'https://ror.org/00zb6xd25 British Gear Association'),
(70797, 'https://ror.org/00zbqep42', 'en', 1, 'https://ror.org/00zbqep42 U.S. Embassy in Burma'),
(70798, 'https://ror.org/00zc49422', 'en', 1, 'https://ror.org/00zc49422 Nexus Community Partners'),
(70799, 'https://ror.org/00ze9yt51', 'no_lang_code', 1, 'https://ror.org/00ze9yt51 SP Industries (United States)'),
(70800, 'https://ror.org/00zenaa75', 'en', 1, 'https://ror.org/00zenaa75 Beijing Academy of Smart Economy åŒ—äŗ¬ę™ŗčƒ½ē»ęµŽē ”ē©¶é™¢'),
(70801, 'https://ror.org/00zhc6r97', 'en', 1, 'https://ror.org/00zhc6r97 Partners for the Common Good'),
(70802, 'https://ror.org/00zhdk214', 'no_lang_code', 1, 'https://ror.org/00zhdk214 Axenis (France)'),
(70803, 'https://ror.org/00zjk7642', 'en', 1, 'https://ror.org/00zjk7642 Larkin University'),
(70804, 'https://ror.org/00zphcv39', 'en', 1, 'https://ror.org/00zphcv39 UK Green Building Council'),
(70805, 'https://ror.org/00zpw7s04', 'en', 1, 'https://ror.org/00zpw7s04 Pacific Arts Association'),
(70806, 'https://ror.org/00zq3ce72', 'en', 1, 'https://ror.org/00zq3ce72 QuSoft'),
(70807, 'https://ror.org/00zqvjm52', 'en', 1, 'https://ror.org/00zqvjm52 Global Action Project'),
(70808, 'https://ror.org/00zr60y65', 'no_lang_code', 1, 'https://ror.org/00zr60y65 Jariet Technologies (United States)'),
(70809, 'https://ror.org/00zs92e71', 'en', 1, 'https://ror.org/00zs92e71 National Museum of History åœ‹ē«‹ę­·å²åšē‰©é¤Ø'),
(70810, 'https://ror.org/00ztk9j52', 'en', 1, 'https://ror.org/00ztk9j52 Elders of Newscastle Upon Tyne'),
(70811, 'https://ror.org/00zx4bg33', 'en', 1, 'https://ror.org/00zx4bg33 School of Social Work Roshni Nilaya'),
(70812, 'https://ror.org/00zyky634', 'en', 1, 'https://ror.org/00zyky634 Institute of Family Therapy'),
(70813, 'https://ror.org/00zznvx80', 'en', 1, 'https://ror.org/00zznvx80 The Linenhall Arts Centre'),
(70814, 'https://ror.org/00zzvzy79', 'no_lang_code', 1, 'https://ror.org/00zzvzy79 Novetta (United States)'),
(70815, 'https://ror.org/01006t419', 'no_lang_code', 1, 'https://ror.org/01006t419 Corrected Electron Optical Systems (Germany)'),
(70816, 'https://ror.org/0100dqc22', 'en', 1, 'https://ror.org/0100dqc22 Action Canada for Sexual Health and Rights'),
(70817, 'https://ror.org/0102cs330', 'da', 1, 'https://ror.org/0102cs330 Landsorganisation af Kvindekrisecentre'),
(70818, 'https://ror.org/0102z1w54', 'en', 1, 'https://ror.org/0102z1w54 Association of Industrial Laser Users'),
(70819, 'https://ror.org/0105eee18', 'no_lang_code', 1, 'https://ror.org/0105eee18 Ariamis (France)'),
(70820, 'https://ror.org/0106nad04', 'en', 1, 'https://ror.org/0106nad04 Snack, Nut and Crisp Manufacturers Association'),
(70821, 'https://ror.org/010719r63', 'en', 1, 'https://ror.org/010719r63 Atmospheric Observatory of Austral Patagonia Observatorio AtmosfƩrico de la Patagonia Austral'),
(70822, 'https://ror.org/01077pm86', 'en', 1, 'https://ror.org/01077pm86 UK Centre for Moisture in Buildings'),
(70823, 'https://ror.org/0107ykj49', 'no_lang_code', 1, 'https://ror.org/0107ykj49 Extreme Diagnostics (United States)'),
(70824, 'https://ror.org/0108dmg51', 'en', 1, 'https://ror.org/0108dmg51 The Hakluyt Society'),
(70825, 'https://ror.org/0109q6556', 'en', 1, 'https://ror.org/0109q6556 Tim Parry Johnathan Ball Peace Foundation'),
(70826, 'https://ror.org/010c3p773', 'no_lang_code', 1, 'https://ror.org/010c3p773 Pure Biologics (Poland)'),
(70827, 'https://ror.org/010depv31', 'no_lang_code', 1, 'https://ror.org/010depv31 inTACT (United States)'),
(70828, 'https://ror.org/010e6zk56', 'en', 1, 'https://ror.org/010e6zk56 Urban Big Data Centre'),
(70829, 'https://ror.org/010fz6j15', 'no_lang_code', 1, 'https://ror.org/010fz6j15 Equipalcool (Brazil)'),
(70830, 'https://ror.org/010gf6775', 'no_lang_code', 1, 'https://ror.org/010gf6775 Katam (Sweden)'),
(70831, 'https://ror.org/010h6a642', 'en', 1, 'https://ror.org/010h6a642 Topsham Museum'),
(70832, 'https://ror.org/010jran45', 'en', 1, 'https://ror.org/010jran45 Carers Trust'),
(70833, 'https://ror.org/010ktw632', 'en', 1, 'https://ror.org/010ktw632 National Centre for Writing'),
(70834, 'https://ror.org/010npae67', 'en', 1, 'https://ror.org/010npae67 The Honourable Society of Lincoln''s Inn'),
(70835, 'https://ror.org/010pg4y69', 'no_lang_code', 1, 'https://ror.org/010pg4y69 Genapsys (United States)'),
(70836, 'https://ror.org/010rd4p08', 'no_lang_code', 1, 'https://ror.org/010rd4p08 OTJ Architects (United States)'),
(70837, 'https://ror.org/010rh0d62', 'en', 1, 'https://ror.org/010rh0d62 Scottish Refugee Council'),
(70838, 'https://ror.org/010t2jv54', 'es', 1, 'https://ror.org/010t2jv54 Columbus Theatre, Teatro Colón'),
(70839, 'https://ror.org/010tqdr51', 'en', 1, 'https://ror.org/010tqdr51 The Institute for Bird Populations'),
(70840, 'https://ror.org/010tw2j24', 'en', 1, 'https://ror.org/010tw2j24 Winnipeg Institute for Theoretical Physics'),
(70841, 'https://ror.org/010vm1c33', 'en', 1, 'https://ror.org/010vm1c33 American Institute of Indian Studies ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤Ø ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ इंऔियन ą¤øą„ą¤Ÿą¤”ą„€ą¤œ'),
(70842, 'https://ror.org/010vz8719', 'no_lang_code', 1, 'https://ror.org/010vz8719 Seen Semiconductors (Poland)'),
(70843, 'https://ror.org/010xxn679', 'no_lang_code', 1, 'https://ror.org/010xxn679 Linguastat (United States)'),
(70844, 'https://ror.org/010zs2155', 'no_lang_code', 1, 'https://ror.org/010zs2155 K Lab (United States)'),
(70845, 'https://ror.org/01108tk20', 'en', 1, 'https://ror.org/01108tk20 Deutsche Vereinigung für Sportwissenschaft German Society of Sport Science'),
(70846, 'https://ror.org/0110z5t35', 'no_lang_code', 1, 'https://ror.org/0110z5t35 Telemetry Associates (United Kingdom)'),
(70847, 'https://ror.org/0111f0b05', 'en', 1, 'https://ror.org/0111f0b05 Centre for Historical Research and Documentation on War and Contemporary Society'),
(70848, 'https://ror.org/0113crs96', 'no_lang_code', 1, 'https://ror.org/0113crs96 BryCoat (United States)'),
(70849, 'https://ror.org/011494s34', 'en', 1, 'https://ror.org/011494s34 Large Synoptic Survey Telescope Corporation'),
(70850, 'https://ror.org/0114n8z16', 'en', 1, 'https://ror.org/0114n8z16 International Brecht Society'),
(70851, 'https://ror.org/0116x8861', 'en', 1, 'https://ror.org/0116x8861 Safe & Justice Michigan'),
(70852, 'https://ror.org/0117czb70', 'en', 1, 'https://ror.org/0117czb70 European Academy for Standardisation'),
(70853, 'https://ror.org/011akm672', 'no_lang_code', 1, 'https://ror.org/011akm672 dbS Productions (United States)'),
(70854, 'https://ror.org/011b4c141', 'en', 1, 'https://ror.org/011b4c141 Australian Council of Social Service'),
(70855, 'https://ror.org/011bk2q57', 'no_lang_code', 1, 'https://ror.org/011bk2q57 IonField Systems (United States)'),
(70856, 'https://ror.org/011bspp78', 'no_lang_code', 1, 'https://ror.org/011bspp78 Behavioral Pharma (United States)'),
(70857, 'https://ror.org/011cev627', 'en', 1, 'https://ror.org/011cev627'),
(70858, 'https://ror.org/011fkt075', 'en', 1, 'https://ror.org/011fkt075 Nanjing Museum å—äŗ¬åšē‰©é™¢'),
(70859, 'https://ror.org/011gdes44', 'en', 1, 'https://ror.org/011gdes44 Centre for Window and Cladding Technology'),
(70860, 'https://ror.org/011gmce08', 'en', 1, 'https://ror.org/011gmce08 National Association for Latino Community Asset Builders'),
(70861, 'https://ror.org/011hfx640', 'en', 1, 'https://ror.org/011hfx640 Center For Policy Research'),
(70862, 'https://ror.org/011hgk177', 'no_lang_code', 1, 'https://ror.org/011hgk177 Thusanani Foundation'),
(70863, 'https://ror.org/011hj0222', 'en', 1, 'https://ror.org/011hj0222'),
(70864, 'https://ror.org/011jh0j93', 'no_lang_code', 1, 'https://ror.org/011jh0j93 4IT I (Sweden)'),
(70865, 'https://ror.org/011m7rj02', 'no_lang_code', 1, 'https://ror.org/011m7rj02 Brandon Medical (United Kingdom)'),
(70866, 'https://ror.org/011n2hw53', 'it', 1, 'https://ror.org/011n2hw53 Istituto per il Lessico Intellettuale Europeo e la Storia delle Idee'),
(70867, 'https://ror.org/011qz6c59', 'en', 1, 'https://ror.org/011qz6c59 Houston-Galveston Area Council'),
(70868, 'https://ror.org/011rh1x94', 'en', 1, 'https://ror.org/011rh1x94 Alternative Law Forum'),
(70869, 'https://ror.org/011rkfr90', 'en', 1, 'https://ror.org/011rkfr90 National Videogame Museum'),
(70870, 'https://ror.org/011swmr49', 'no_lang_code', 1, 'https://ror.org/011swmr49 Durbin Group (United States)'),
(70871, 'https://ror.org/011tecf62', 'fr', 1, 'https://ror.org/011tecf62 UniversitƩ des Lettres et des Sciences Humaines de Bamako'),
(70872, 'https://ror.org/011v30d49', 'en', 1, 'https://ror.org/011v30d49 Knowle West Healthy Living Centre'),
(70873, 'https://ror.org/011x0jf73', 'no_lang_code', 1, 'https://ror.org/011x0jf73 Razumkov Centre Центр Разумкова'),
(70874, 'https://ror.org/011yqtc07', 'en', 1, 'https://ror.org/011yqtc07 Turks and Caicos National Museum'),
(70875, 'https://ror.org/01201q996', 'en', 1, 'https://ror.org/01201q996 Sexuality Information and Education Council of the United States'),
(70876, 'https://ror.org/0121pvy84', 'en', 1, 'https://ror.org/0121pvy84 Scottish Social Services Council'),
(70877, 'https://ror.org/01235bb77', 'fr', 1, 'https://ror.org/01235bb77 Banque Nationale de GĆØnes'),
(70878, 'https://ror.org/0123gbz78', 'en', 1, 'https://ror.org/0123gbz78 CarbonCo-op'),
(70879, 'https://ror.org/0123m1q26', 'no_lang_code', 1, 'https://ror.org/0123m1q26 NordvƤstra SkƄnes Vatten och Avlopp (Sweden)'),
(70880, 'https://ror.org/0126z0220', 'en', 1, 'https://ror.org/0126z0220 Midlands Arts Centre'),
(70881, 'https://ror.org/01286xj85', 'no_lang_code', 1, 'https://ror.org/01286xj85 FocusStart (United States)'),
(70882, 'https://ror.org/0128g3b12', 'en', 1, 'https://ror.org/0128g3b12 LGBT Youth Scotland'),
(70883, 'https://ror.org/0129pxj69', 'en', 1, 'https://ror.org/0129pxj69 British Industrial Design Association'),
(70884, 'https://ror.org/012a4r663', 'en', 1, 'https://ror.org/012a4r663 Autoridad del Canal de PanamĆ” Panama Canal Authority'),
(70885, 'https://ror.org/012c60617', 'en', 1, 'https://ror.org/012c60617 The Spectrum Centre'),
(70886, 'https://ror.org/012cr4712', 'en', 1, 'https://ror.org/012cr4712 Cedarwood Trust'),
(70887, 'https://ror.org/012g5w926', 'en', 1, 'https://ror.org/012g5w926 Universal Rights Group'),
(70888, 'https://ror.org/012hyjz28', 'en', 1, 'https://ror.org/012hyjz28 Riverside Community Health Project'),
(70889, 'https://ror.org/012mrz395', 'no_lang_code', 1, 'https://ror.org/012mrz395 Walker Associates Architects (United Kingdom)'),
(70890, 'https://ror.org/012nzs861', 'no_lang_code', 1, 'https://ror.org/012nzs861 Taps (Poland)'),
(70891, 'https://ror.org/012pegt90', 'it', 1, 'https://ror.org/012pegt90 Det Danske Institut i Rom - Accademia di Danimarca'),
(70892, 'https://ror.org/012q2m618', 'no_lang_code', 1, 'https://ror.org/012q2m618 Bosmal (Poland)'),
(70893, 'https://ror.org/012r7dj92', 'no_lang_code', 1, 'https://ror.org/012r7dj92 Silikony (Poland)'),
(70894, 'https://ror.org/012rxy285', 'no_lang_code', 1, 'https://ror.org/012rxy285 Greenely (Sweden)'),
(70895, 'https://ror.org/012shwn84', 'en', 1, 'https://ror.org/012shwn84 Jordan Media Institute معهد ال؄علام Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ'),
(70896, 'https://ror.org/012tyys59', 'sq', 1, 'https://ror.org/012tyys59 Kolegji Dardania'),
(70897, 'https://ror.org/012wmev19', 'no_lang_code', 1, 'https://ror.org/012wmev19 Arava Institute معهد العرفة'),
(70898, 'https://ror.org/012xd9119', 'no_lang_code', 1, 'https://ror.org/012xd9119 WestCon Medical (United States)'),
(70899, 'https://ror.org/012yc1x46', 'en', 1, 'https://ror.org/012yc1x46 Botanika İnstitutu Institute of Botany'),
(70900, 'https://ror.org/012zsv435', 'no_lang_code', 1, 'https://ror.org/012zsv435 Academic Rights Press (United Kingdom)'),
(70901, 'https://ror.org/0130dgg46', 'en', 1, 'https://ror.org/0130dgg46 China-Britain Business Council'),
(70902, 'https://ror.org/01315ff40', 'en', 1, 'https://ror.org/01315ff40 English Language Teachers Association of India'),
(70903, 'https://ror.org/0131as255', 'en', 1, 'https://ror.org/0131as255 Auditory Valley'),
(70904, 'https://ror.org/0131ydd68', 'nl', 1, 'https://ror.org/0131ydd68 De Tijd'),
(70905, 'https://ror.org/01324gs33', 'no_lang_code', 1, 'https://ror.org/01324gs33 Elladam Consulting (Hungary)'),
(70906, 'https://ror.org/0132eaf86', 'no_lang_code', 1, 'https://ror.org/0132eaf86 CRO Laboratories (United States)'),
(70907, 'https://ror.org/0132q8e84', 'no_lang_code', 1, 'https://ror.org/0132q8e84 Longenecker and Associates (United States)'),
(70908, 'https://ror.org/0134kq024', 'en', 1, 'https://ror.org/0134kq024 Cell and Gene Therapy Catapult'),
(70909, 'https://ror.org/01368p749', 'en', 1, 'https://ror.org/01368p749 Lincolnshire County Council'),
(70910, 'https://ror.org/0136rmr23', 'es', 1, 'https://ror.org/0136rmr23 Programa Venezolano de Educación Acción en Derechos Humanos'),
(70911, 'https://ror.org/0137nq929', 'de', 1, 'https://ror.org/0137nq929 Nephrologisches Zentrum Villingen-Schwenningen'),
(70912, 'https://ror.org/0139hgh75', 'no_lang_code', 1, 'https://ror.org/0139hgh75 Meissa Vaccines (United States)'),
(70913, 'https://ror.org/013b0x867', 'en', 1, 'https://ror.org/013b0x867 Florida Policy Institute'),
(70914, 'https://ror.org/013cbkm39', 'en', 1, 'https://ror.org/013cbkm39 Luing Cattle Society'),
(70915, 'https://ror.org/013d7vw46', 'en', 1, 'https://ror.org/013d7vw46 Nottinghamshire Deaf Society'),
(70916, 'https://ror.org/013fwa311', 'en', 1, 'https://ror.org/013fwa311 Sakhnin College ā€ŽŁƒŁ„ŁŠŲ© Ų³Ų®Ł†ŁŠŁ† Ł„ŲŖŲ£Ł‡ŁŠŁ„ Ų§Ł„Ł…Ų¹Ł„Ł…ŁŠŁ†'),
(70917, 'https://ror.org/013h5z577', 'en', 1, 'https://ror.org/013h5z577 Riksidrottsfƶrbundet Swedish Sports Confederation'),
(70918, 'https://ror.org/013md5775', 'no_lang_code', 1, 'https://ror.org/013md5775 Centre for Factories of the Future (United Kingdom)'),
(70919, 'https://ror.org/013nqbx98', 'en', 1, 'https://ror.org/013nqbx98 Type Media Center'),
(70920, 'https://ror.org/013pphq47', 'no_lang_code', 1, 'https://ror.org/013pphq47 Metria Innovation (United States)'),
(70921, 'https://ror.org/013pta043', 'en', 1, 'https://ror.org/013pta043 Noise Abatement Society'),
(70922, 'https://ror.org/013r0t984', 'no_lang_code', 1, 'https://ror.org/013r0t984 Fabryka Łożysk Tocznych Kraśnik Polish Bearings Factory (Poland)'),
(70923, 'https://ror.org/013rhnj14', 'pt', 1, 'https://ror.org/013rhnj14 Instituto de Estudos de SaĆŗde Suplementar'),
(70924, 'https://ror.org/013vjwn12', 'fr', 1, 'https://ror.org/013vjwn12 BiopolymĆØres Interactions Assemblages'),
(70925, 'https://ror.org/013vwky05', 'en', 1, 'https://ror.org/013vwky05 Henriette-Bathily Women''s Museum'),
(70926, 'https://ror.org/013w7en88', 'no_lang_code', 1, 'https://ror.org/013w7en88 Military Aviation Works No. 4 (Poland) Wojskowe Zakłady Lotnicze Nr 4'),
(70927, 'https://ror.org/013ypha33', 'es', 1, 'https://ror.org/013ypha33 Asociación Nacional de Afrocolombianos Desplazados'),
(70928, 'https://ror.org/013ysep90', 'no_lang_code', 1, 'https://ror.org/013ysep90 Isandla Institute'),
(70929, 'https://ror.org/014077748', 'da', 1, 'https://ror.org/014077748 Dansk Standard'),
(70930, 'https://ror.org/0141vn777', 'en', 1, 'https://ror.org/0141vn777 Institute of Chemistry of Molecular Recognition Istituto di Chimica del Riconoscimento Molecolare'),
(70931, 'https://ror.org/0144ggd58', 'en', 1, 'https://ror.org/0144ggd58 International Research and Development Actions'),
(70932, 'https://ror.org/0146jt667', 'en', 1, 'https://ror.org/0146jt667 Academic Health Science Network North East and North Cumbria'),
(70933, 'https://ror.org/0147mxz16', 'no_lang_code', 1, 'https://ror.org/0147mxz16 Swedish Adrenaline (Sweden)'),
(70934, 'https://ror.org/014a3e682', 'no_lang_code', 1, 'https://ror.org/014a3e682 Arima Genomics (United States)'),
(70935, 'https://ror.org/014bnza38', 'en', 1, 'https://ror.org/014bnza38 Texas Housers'),
(70936, 'https://ror.org/014c4zc27', 'no_lang_code', 1, 'https://ror.org/014c4zc27 Liuman Technologies (United States)'),
(70937, 'https://ror.org/014cjsd78', 'en', 1, 'https://ror.org/014cjsd78 Ministry of Defence of Armenia Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« ÕŗÕ”Õ·ÕæÕŗÕ”Õ¶ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ¶Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(70938, 'https://ror.org/014e1k160', 'no_lang_code', 1, 'https://ror.org/014e1k160 Stockbridge Technology Centre (United Kingdom)'),
(70939, 'https://ror.org/014eqv775', 'no_lang_code', 1, 'https://ror.org/014eqv775 International Therapeutics (United States)'),
(70940, 'https://ror.org/014femp80', 'en', 1, 'https://ror.org/014femp80 University of Trans-Disciplinary Health Sciences and Technology'),
(70941, 'https://ror.org/014fqyj02', 'en', 1, 'https://ror.org/014fqyj02 The National Allotment Society'),
(70942, 'https://ror.org/014gfpc04', 'no_lang_code', 1, 'https://ror.org/014gfpc04 DCN (United States)'),
(70943, 'https://ror.org/014jakh31', 'en', 1, 'https://ror.org/014jakh31 Society of Energy Engineers and Managers'),
(70944, 'https://ror.org/014p3wd44', 'no_lang_code', 1, 'https://ror.org/014p3wd44 Creative Light Source (United States)'),
(70945, 'https://ror.org/014p7yd77', 'no_lang_code', 1, 'https://ror.org/014p7yd77 Altius Space Machines (United States)'),
(70946, 'https://ror.org/014pnnx80', 'en', 1, 'https://ror.org/014pnnx80 Myanmar Environment Institute'),
(70947, 'https://ror.org/014txmb23', 'en', 1, 'https://ror.org/014txmb23 Grace Mutual'),
(70948, 'https://ror.org/014vs5452', 'en', 1, 'https://ror.org/014vs5452 Shakespeare Behind Bars'),
(70949, 'https://ror.org/014wwcs49', 'en', 1, 'https://ror.org/014wwcs49 Naturskyddsfƶreningen Swedish Society for Nature Conservation'),
(70950, 'https://ror.org/014xb2303', 'pl', 1, 'https://ror.org/014xb2303 Wojewódzki Szpital Specjalistyczny nr 4 w Bytomiu'),
(70951, 'https://ror.org/014ypdf93', 'en', 1, 'https://ror.org/014ypdf93 Fettes College'),
(70952, 'https://ror.org/014zfzp17', 'sk', 1, 'https://ror.org/014zfzp17 HvezdÔreň a PlanetÔrium M.R. ŠtefÔnika'),
(70953, 'https://ror.org/01504hb29', 'no_lang_code', 1, 'https://ror.org/01504hb29 Cytovale (United States)'),
(70954, 'https://ror.org/0151ap895', 'en', 1, 'https://ror.org/0151ap895 Institute for Transportation and Development Policy'),
(70955, 'https://ror.org/0151zbe59', 'no_lang_code', 1, 'https://ror.org/0151zbe59 Q2 Solutions (United States)'),
(70956, 'https://ror.org/0153h6k87', 'en', 1, 'https://ror.org/0153h6k87 Feminist Institute for Democracy'),
(70957, 'https://ror.org/015480z05', 'en', 1, 'https://ror.org/015480z05 All-Russian Institute of Agrarian Problems and Informatics A.A.Nikonova Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрных проблем Šø информатики им. А.А.ŠŠøŠŗŠ¾Š½Š¾Š²Š°'),
(70958, 'https://ror.org/015a03w85', 'no_lang_code', 1, 'https://ror.org/015a03w85 Aero Thermo Technology (United States)'),
(70959, 'https://ror.org/015dvxx67', 'en', 1, 'https://ror.org/015dvxx67 Institute of Mental Health'),
(70960, 'https://ror.org/015jwe732', 'en', 1, 'https://ror.org/015jwe732 South Belfast Partnership Board'),
(70961, 'https://ror.org/015mb8g48', 'en', 1, 'https://ror.org/015mb8g48 Royal Institute for Inter-Faith Studies المعهد Ų§Ł„Ł…Ł„ŁƒŁŠ للدراسات Ų§Ł„ŲÆŁŠŁ†ŁŠŲ©'),
(70962, 'https://ror.org/015mspw86', 'en', 1, 'https://ror.org/015mspw86 Western Forensic Law Enforcement Training Center'),
(70963, 'https://ror.org/015pscp08', 'cs', 1, 'https://ror.org/015pscp08 Cesta Domu'),
(70964, 'https://ror.org/015v8md60', 'en', 1, 'https://ror.org/015v8md60 PIR Center ПИР-Центр'),
(70965, 'https://ror.org/015w40490', 'es', 1, 'https://ror.org/015w40490 Liceo Jubilar Juan Pablo II'),
(70966, 'https://ror.org/015y4yq74', 'en', 1, 'https://ror.org/015y4yq74 Language and Learning Foundation भाषा और ą¤øą„€ą¤–ą¤Øą¤¾ ą¤«ą¤¾ą¤‰ą¤‚ą¤”ą„‡ą¤¶ą¤Ø'),
(70967, 'https://ror.org/015zzsp20', 'en', 1, 'https://ror.org/015zzsp20 Kirkgate Centre'),
(70968, 'https://ror.org/016055452', 'en', 1, 'https://ror.org/016055452 Scottish Association of the Teachers of History'),
(70969, 'https://ror.org/0160tym22', 'en', 1, 'https://ror.org/0160tym22 Ouseburn Trust'),
(70970, 'https://ror.org/0163j0p86', 'no_lang_code', 1, 'https://ror.org/0163j0p86 BlackBox Biometrics (United States)'),
(70971, 'https://ror.org/016411e09', 'en', 1, 'https://ror.org/016411e09 Centre for Justice Innovation'),
(70972, 'https://ror.org/01643wd06', 'en', 1, 'https://ror.org/01643wd06 Institute for Globally Distributed Open Research and Education'),
(70973, 'https://ror.org/0165cfe41', 'en', 1, 'https://ror.org/0165cfe41 Bį»™ Tʰ phĆ”p Ministry of Justice'),
(70974, 'https://ror.org/0167k2h60', 'en', 1, 'https://ror.org/0167k2h60 Development Network of Indigenous Voluntary Associations'),
(70975, 'https://ror.org/01680n352', 'no_lang_code', 1, 'https://ror.org/01680n352 Lithium Innovations (United States)'),
(70976, 'https://ror.org/016a6yb46', 'en', 1, 'https://ror.org/016a6yb46 Dundee Heritage Trust'),
(70977, 'https://ror.org/016agrs27', 'en', 1, 'https://ror.org/016agrs27 Crescent City Community Land Trust'),
(70978, 'https://ror.org/016ata990', 'no_lang_code', 1, 'https://ror.org/016ata990 Immuno Technologies (United States)'),
(70979, 'https://ror.org/016azcq16', 'en', 1, 'https://ror.org/016azcq16 Meditest Niepubliczny Zakład Opieki Zdrowotnej Meditest. Diagnostyka Medyczna'),
(70980, 'https://ror.org/016bfm023', 'no_lang_code', 1, 'https://ror.org/016bfm023 MLabs (Poland)'),
(70981, 'https://ror.org/016cmyf08', 'no_lang_code', 1, 'https://ror.org/016cmyf08 Advanced Fiber Sensors (United States)'),
(70982, 'https://ror.org/016ftxq46', 'en', 1, 'https://ror.org/016ftxq46 New Orleans Workers’ Center for Racial Justice'),
(70983, 'https://ror.org/016g45z27', 'no_lang_code', 1, 'https://ror.org/016g45z27 Integran (United States)'),
(70984, 'https://ror.org/016gda025', 'en', 1, 'https://ror.org/016gda025 Dundee Blind and Partially Sighted Society'),
(70985, 'https://ror.org/016gn8k28', 'en', 1, 'https://ror.org/016gn8k28 The Reader'),
(70986, 'https://ror.org/016grqh48', 'en', 1, 'https://ror.org/016grqh48 Mentor'),
(70987, 'https://ror.org/016haaa50', 'no_lang_code', 1, 'https://ror.org/016haaa50 MetalgrƔfica Rojek (Brazil)'),
(70988, 'https://ror.org/016hmeh62', 'en', 1, 'https://ror.org/016hmeh62 Migrant Center For Human Rights'),
(70989, 'https://ror.org/016hpv675', 'en', 1, 'https://ror.org/016hpv675 Westgate Hall'),
(70990, 'https://ror.org/016ja5m69', 'no_lang_code', 1, 'https://ror.org/016ja5m69 Investa (Australia)'),
(70991, 'https://ror.org/016k9n555', 'en', 1, 'https://ror.org/016k9n555 Centre for Cities'),
(70992, 'https://ror.org/016kk7667', 'no_lang_code', 1, 'https://ror.org/016kk7667 ClearMotion (United States)'),
(70993, 'https://ror.org/016metk38', 'en', 1, 'https://ror.org/016metk38 Russian Museum of Ethnography Российский ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŃ‡ŠµŃŠŗŠøŠ¹ музей'),
(70994, 'https://ror.org/016nc1s82', 'en', 1, 'https://ror.org/016nc1s82 British Association for Immediate Care Scotland'),
(70995, 'https://ror.org/016skwe97', 'en', 1, 'https://ror.org/016skwe97 The Gate'),
(70996, 'https://ror.org/016tbft40', 'no_lang_code', 1, 'https://ror.org/016tbft40 INTER Materials (United States)'),
(70997, 'https://ror.org/016tee698', 'en', 1, 'https://ror.org/016tee698 Resolution Fundation'),
(70998, 'https://ror.org/016tt0b65', 'en', 1, 'https://ror.org/016tt0b65 The Archaeological Society at Athens Εν Αθήναις Αρχαιολογική Εταιρεία'),
(70999, 'https://ror.org/016vd5517', 'no_lang_code', 1, 'https://ror.org/016vd5517 Dillen Associates (United States)'),
(71000, 'https://ror.org/016wmhd89', 'en', 1, 'https://ror.org/016wmhd89 WORLDwrite'),
(71001, 'https://ror.org/016xq8366', 'en', 1, 'https://ror.org/016xq8366 Arts & Science Council'),
(71002, 'https://ror.org/01709et08', 'sv', 1, 'https://ror.org/01709et08 Ɩstergƶtland Museum'),
(71003, 'https://ror.org/0171ejg62', 'en', 1, 'https://ror.org/0171ejg62 Sonoma Ecology Center'),
(71004, 'https://ror.org/0173e2k48', 'no_lang_code', 1, 'https://ror.org/0173e2k48 Sol Voltaics (Sweden)'),
(71005, 'https://ror.org/0173en609', 'en', 1, 'https://ror.org/0173en609 In Flanders Fields Museum'),
(71006, 'https://ror.org/0173qy615', 'en', 1, 'https://ror.org/0173qy615 Jordan Radio and Television Corporation Ł…Ų¤Ų³Ų³Ų© ال؄ذاعة ŁˆŲ§Ł„ŲŖŁ„ŁŲ²ŁŠŁˆŁ† Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ'),
(71007, 'https://ror.org/0173tje75', 'no_lang_code', 1, 'https://ror.org/0173tje75 Compass Manufacturing Services (United States)'),
(71008, 'https://ror.org/0174crz24', 'en', 1, 'https://ror.org/0174crz24 Quip'),
(71009, 'https://ror.org/0174fcn41', 'no_lang_code', 1, 'https://ror.org/0174fcn41 Maas Biolab (United States)'),
(71010, 'https://ror.org/017747t25', 'no_lang_code', 1, 'https://ror.org/017747t25 Inovex (United States)'),
(71011, 'https://ror.org/0177wgn41', 'no_lang_code', 1, 'https://ror.org/0177wgn41 Stoney Forensic (United States)'),
(71012, 'https://ror.org/017a2g404', 'no_lang_code', 1, 'https://ror.org/017a2g404 Hexicon (Sweden)'),
(71013, 'https://ror.org/017ebm718', 'no_lang_code', 1, 'https://ror.org/017ebm718 Inclusiv (United States)'),
(71014, 'https://ror.org/017ez5470', 'no_lang_code', 1, 'https://ror.org/017ez5470 I-Tech (Sweden)'),
(71015, 'https://ror.org/017g8gb14', 'no_lang_code', 1, 'https://ror.org/017g8gb14 Prime Discoveries (United States)'),
(71016, 'https://ror.org/017jrd082', 'no_lang_code', 1, 'https://ror.org/017jrd082 Eclipse Bioinnovations (United States)'),
(71017, 'https://ror.org/017kp0447', 'en', 1, 'https://ror.org/017kp0447 Cheshire Archives and Local Studies'),
(71018, 'https://ror.org/017na5t98', 'en', 1, 'https://ror.org/017na5t98 Scruggs & Associates'),
(71019, 'https://ror.org/017p3r607', 'en', 1, 'https://ror.org/017p3r607 International Network of Civil Liberties Organizations'),
(71020, 'https://ror.org/017pcb882', 'no_lang_code', 1, 'https://ror.org/017pcb882 Framtidens Fƶretag (Sweden)'),
(71021, 'https://ror.org/017ppge98', 'en', 1, 'https://ror.org/017ppge98 CO2 Technology Centre Mongstad Teknologisenteret pƄ Mongstad'),
(71022, 'https://ror.org/017s7a786', 'en', 1, 'https://ror.org/017s7a786 Renaissance Life Therapies'),
(71023, 'https://ror.org/017sc6v85', 'en', 1, 'https://ror.org/017sc6v85 Glasgow and West of Scotland Forum of Housing Associations'),
(71024, 'https://ror.org/017sdfy20', 'en', 1, 'https://ror.org/017sdfy20 Medieval Settlement Research Group'),
(71025, 'https://ror.org/017snwk31', 'en', 1, 'https://ror.org/017snwk31 Jerusalem Film and Television School'),
(71026, 'https://ror.org/017t6mt61', 'sv', 1, 'https://ror.org/017t6mt61 VA Syd'),
(71027, 'https://ror.org/017vb4h92', 'no_lang_code', 1, 'https://ror.org/017vb4h92 Seabased (Sweden)'),
(71028, 'https://ror.org/017vsz909', 'da', 1, 'https://ror.org/017vsz909 EUC Nordvestsjaelland, ErhvervsUddannelses Center Nordvestsjaelland'),
(71029, 'https://ror.org/017wf3d91', 'no_lang_code', 1, 'https://ror.org/017wf3d91 Case Engineering (United States)'),
(71030, 'https://ror.org/017ycry73', 'no_lang_code', 1, 'https://ror.org/017ycry73 Bhungroo (India)'),
(71031, 'https://ror.org/017z7ha20', 'en', 1, 'https://ror.org/017z7ha20 Doc Society'),
(71032, 'https://ror.org/017zq4f19', 'en', 1, 'https://ror.org/017zq4f19 Espoo Music Institute Espoon Musiikkiopisto'),
(71033, 'https://ror.org/018112f03', 'en', 1, 'https://ror.org/018112f03 Parenting Across Scotland'),
(71034, 'https://ror.org/0183bsj57', 'en', 1, 'https://ror.org/0183bsj57 Chartered Insurance Institute'),
(71035, 'https://ror.org/01844pt54', 'en', 1, 'https://ror.org/01844pt54 Shantou Broadcasting and Television University 汕夓广播电视大学'),
(71036, 'https://ror.org/0186mhr93', 'en', 1, 'https://ror.org/0186mhr93 European Society for Paediatric Oncology'),
(71037, 'https://ror.org/0186pgv50', 'no_lang_code', 1, 'https://ror.org/0186pgv50 iFIT Prosthetics (United States)'),
(71038, 'https://ror.org/0187g4p12', 'en', 1, 'https://ror.org/0187g4p12 Down Syndrome Society of Kenya'),
(71039, 'https://ror.org/018bg7z10', 'en', 1, 'https://ror.org/018bg7z10 Bangladesh Institute of Bank Management বাংলাদেশ ą¦‡ą¦Øą§ą¦øą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦¬ą§ą¦Æą¦¾ą¦‚ą¦• ą¦®ą§‡ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ'),
(71040, 'https://ror.org/018bj7h19', 'no_lang_code', 1, 'https://ror.org/018bj7h19 A J Tuck (United States)'),
(71041, 'https://ror.org/018df9d45', 'no_lang_code', 1, 'https://ror.org/018df9d45 Zhongzhu Healthcare (China)'),
(71042, 'https://ror.org/018gn4336', 'en', 1, 'https://ror.org/018gn4336 Online Dating Association'),
(71043, 'https://ror.org/018h4tb29', 'no_lang_code', 1, 'https://ror.org/018h4tb29 Ivan Honchar Museum Музей Івана Гончара'),
(71044, 'https://ror.org/018j6fe30', 'en', 1, 'https://ror.org/018j6fe30 Mission Asset Fund'),
(71045, 'https://ror.org/018jnkm11', 'no_lang_code', 1, 'https://ror.org/018jnkm11 Blacktrace (United States)'),
(71046, 'https://ror.org/018kbgx06', 'en', 1, 'https://ror.org/018kbgx06 Oretha Castle Haley Boulevard Merchants & Business Association'),
(71047, 'https://ror.org/018mc6y79', 'no_lang_code', 1, 'https://ror.org/018mc6y79 Fimbrion Therapeutics (United States)'),
(71048, 'https://ror.org/018rrky13', 'no_lang_code', 1, 'https://ror.org/018rrky13 Lanarkshire Enterprise Services Limited (United Kingdom)'),
(71049, 'https://ror.org/018smbg70', 'no_lang_code', 1, 'https://ror.org/018smbg70 Angstrom Designs (United States)'),
(71050, 'https://ror.org/018sp9t05', 'en', 1, 'https://ror.org/018sp9t05 Irish World Heritage Centre'),
(71051, 'https://ror.org/018t0g992', 'en', 1, 'https://ror.org/018t0g992 York, North Yorkshire and East Riding Enterprise Partnership'),
(71052, 'https://ror.org/018z2vp10', 'da', 1, 'https://ror.org/018z2vp10 Rybners'),
(71053, 'https://ror.org/018z6vq38', 'en', 1, 'https://ror.org/018z6vq38 CdLS Foundation UK & Ireland'),
(71054, 'https://ror.org/0190epk64', 'no_lang_code', 1, 'https://ror.org/0190epk64 C-Green Technology (Sweden)'),
(71055, 'https://ror.org/0190s7p04', 'en', 1, 'https://ror.org/0190s7p04 AcadƩmie de France Ơ Rome French Academy in Rome'),
(71056, 'https://ror.org/0192srs23', 'en', 1, 'https://ror.org/0192srs23 Caribbean Electric Utility Services Corporation'),
(71057, 'https://ror.org/01949f364', 'en', 1, 'https://ror.org/01949f364 Northeastern Illinois Regional Crime Laboratory'),
(71058, 'https://ror.org/0194gma78', 'no_lang_code', 1, 'https://ror.org/0194gma78 MosquitoMate (United States)'),
(71059, 'https://ror.org/0195q2562', 'no_lang_code', 1, 'https://ror.org/0195q2562 Eon Corporation (United States)'),
(71060, 'https://ror.org/01974bd32', 'no_lang_code', 1, 'https://ror.org/01974bd32 CytoInformatics (United States)'),
(71061, 'https://ror.org/01994hy95', 'en', 1, 'https://ror.org/01994hy95 Islington Museum'),
(71062, 'https://ror.org/019btxj82', 'no_lang_code', 1, 'https://ror.org/019btxj82 Ajjer (United States)'),
(71063, 'https://ror.org/019enq229', 'no_lang_code', 1, 'https://ror.org/019enq229 Folio Photonics (United States)'),
(71064, 'https://ror.org/019hmfn94', 'en', 1, 'https://ror.org/019hmfn94 Centre for Movement Disorders'),
(71065, 'https://ror.org/019hsqt53', 'en', 1, 'https://ror.org/019hsqt53 Healing Fields Foundation ą°¹ą±€ą°²ą°æą°‚ą°—ą± ą°«ą±€ą°²ą±ą°”ą±ą°øą± ą°«ą±Œą°‚ą°”ą±‡ą°·ą°Øą±'),
(71066, 'https://ror.org/019j5vb98', 'no_lang_code', 1, 'https://ror.org/019j5vb98 ArrayFire (United States)'),
(71067, 'https://ror.org/019jheb81', 'en', 1, 'https://ror.org/019jheb81 Future Health Biobank'),
(71068, 'https://ror.org/019jndt66', 'en', 1, 'https://ror.org/019jndt66 Textile Centre of Excellence'),
(71069, 'https://ror.org/019jswg45', 'no_lang_code', 1, 'https://ror.org/019jswg45 Berkeley Air Monitoring Group (United States)'),
(71070, 'https://ror.org/019kg0t44', 'en', 1, 'https://ror.org/019kg0t44 Legatum Institute'),
(71071, 'https://ror.org/019kjv407', 'no_lang_code', 1, 'https://ror.org/019kjv407 Gougeon Brothers (United States)'),
(71072, 'https://ror.org/019msr682', 'en', 1, 'https://ror.org/019msr682 Colmar Inra Research Centre Le Centre Inra de Colmar'),
(71073, 'https://ror.org/019n3pt49', 'no_lang_code', 1, 'https://ror.org/019n3pt49 4SC (Germany)'),
(71074, 'https://ror.org/019qntf91', 'en', 1, 'https://ror.org/019qntf91 Article 19 Artigo 19'),
(71075, 'https://ror.org/019qwdy63', 'en', 1, 'https://ror.org/019qwdy63 American Center Yangon'),
(71076, 'https://ror.org/019rrzp31', 'en', 1, 'https://ror.org/019rrzp31 Institute for Linguistic Evidence'),
(71077, 'https://ror.org/019w0b107', 'no_lang_code', 1, 'https://ror.org/019w0b107 Choshu Industry (Japan) é•·å·žē”£ę„­'),
(71078, 'https://ror.org/019ybb567', 'no_lang_code', 1, 'https://ror.org/019ybb567 LightLine Technologies (United States)'),
(71079, 'https://ror.org/019yfmw38', 'no_lang_code', 1, 'https://ror.org/019yfmw38 Bryne (Sweden)'),
(71080, 'https://ror.org/019yha079', 'en', 1, 'https://ror.org/019yha079 Sustainable Food Trust'),
(71081, 'https://ror.org/019yq4944', 'no_lang_code', 1, 'https://ror.org/019yq4944 LumenRadio (Sweden)'),
(71082, 'https://ror.org/01a0mkb65', 'en', 1, 'https://ror.org/01a0mkb65 Archiv Hlavnƭho Města Prahy Prague City Archives'),
(71083, 'https://ror.org/01a1vdv95', 'en', 1, 'https://ror.org/01a1vdv95 British Safety Council'),
(71084, 'https://ror.org/01a402j88', 'en', 1, 'https://ror.org/01a402j88 National HIV/AIDS Secretariat'),
(71085, 'https://ror.org/01a4m6398', 'no_lang_code', 1, 'https://ror.org/01a4m6398 Fahe'),
(71086, 'https://ror.org/01a4v4q66', 'en', 1, 'https://ror.org/01a4v4q66 SNV Netherlands Development Organisation'),
(71087, 'https://ror.org/01a5k3514', 'no_lang_code', 1, 'https://ror.org/01a5k3514 Anchor Technology (United States)'),
(71088, 'https://ror.org/01a5ymr35', 'no_lang_code', 1, 'https://ror.org/01a5ymr35 Global Science & Technology (United States)'),
(71089, 'https://ror.org/01a7xtr20', 'no_lang_code', 1, 'https://ror.org/01a7xtr20 InnoVentum (Sweden)'),
(71090, 'https://ror.org/01a9bcw11', 'no_lang_code', 1, 'https://ror.org/01a9bcw11 Mira Dx (United States)'),
(71091, 'https://ror.org/01aary583', 'en', 1, 'https://ror.org/01aary583 Verbal Arts Centre'),
(71092, 'https://ror.org/01ab9wf13', 'en', 1, 'https://ror.org/01ab9wf13 Argentine Senate Honorable Senado de la Nación Argentina'),
(71093, 'https://ror.org/01abd8q97', 'en', 1, 'https://ror.org/01abd8q97 Potato Processors Association'),
(71094, 'https://ror.org/01ad0ky70', 'no_lang_code', 1, 'https://ror.org/01ad0ky70 Mikel (United States)'),
(71095, 'https://ror.org/01adn4a11', 'no_lang_code', 1, 'https://ror.org/01adn4a11 LodeSpin Labs (United States)'),
(71096, 'https://ror.org/01adw2y76', 'pt', 1, 'https://ror.org/01adw2y76 Osso'),
(71097, 'https://ror.org/01agawv85', 'en', 1, 'https://ror.org/01agawv85 Plymouth City Museum and Art Gallery'),
(71098, 'https://ror.org/01ame3c61', 'no_lang_code', 1, 'https://ror.org/01ame3c61 Innovital Systems (United States)'),
(71099, 'https://ror.org/01amnkg95', 'en', 1, 'https://ror.org/01amnkg95 Refugee Action'),
(71100, 'https://ror.org/01anktx53', 'no_lang_code', 1, 'https://ror.org/01anktx53 Sealed Air (Brazil)'),
(71101, 'https://ror.org/01aptsm66', 'en', 1, 'https://ror.org/01aptsm66 Institute for In Vitro Sciences'),
(71102, 'https://ror.org/01apxt611', 'en', 1, 'https://ror.org/01apxt611 Medway NHS Foundation Trust'),
(71103, 'https://ror.org/01aq5nz90', 'en', 1, 'https://ror.org/01aq5nz90 China Development Brief äø­å›½å‘å±•ē®€ęŠ„'),
(71104, 'https://ror.org/01ar8m914', 'en', 1, 'https://ror.org/01ar8m914 Polish Platform for Homeland Security Polska Platforma Bezpieczeństwa Wewnętrznego'),
(71105, 'https://ror.org/01avd5833', 'pl', 1, 'https://ror.org/01avd5833 Narodowy Instytut Muzealnictwa i Ochrony Zbiorów'),
(71106, 'https://ror.org/01axqd881', 'en', 1, 'https://ror.org/01axqd881 Swarnabhoomi Academy of Music'),
(71107, 'https://ror.org/01ayxmp98', 'de', 1, 'https://ror.org/01ayxmp98 GFO Kliniken Bonn, St. Marien-Hospital Bonn'),
(71108, 'https://ror.org/01az4vq35', 'en', 1, 'https://ror.org/01az4vq35 Society for Education Welfare and Action Rural'),
(71109, 'https://ror.org/01azp7v94', 'no_lang_code', 1, 'https://ror.org/01azp7v94 Glactone Pharma (Sweden)'),
(71110, 'https://ror.org/01b003q34', 'no_lang_code', 1, 'https://ror.org/01b003q34 Sokrat'),
(71111, 'https://ror.org/01b0e9p06', 'en', 1, 'https://ror.org/01b0e9p06 East Sweden Energy Agency Energikontoret Ɩstergƶtland'),
(71112, 'https://ror.org/01b0sfz46', 'en', 1, 'https://ror.org/01b0sfz46 National Centre for Contemporary Arts Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ центр современного ŠøŃŠŗŃƒŃŃŃ‚ва'),
(71113, 'https://ror.org/01b0x7m05', 'no_lang_code', 1, 'https://ror.org/01b0x7m05 BST Systems (United States)'),
(71114, 'https://ror.org/01b2xn187', 'no_lang_code', 1, 'https://ror.org/01b2xn187 CloneOpt (Sweden)'),
(71115, 'https://ror.org/01b30v774', 'no_lang_code', 1, 'https://ror.org/01b30v774 Sakata (Brazil)'),
(71116, 'https://ror.org/01b385s60', 'en', 1, 'https://ror.org/01b385s60 Suffolk Sheep Society'),
(71117, 'https://ror.org/01b3ygz78', 'de', 1, 'https://ror.org/01b3ygz78 Institut Kurz'),
(71118, 'https://ror.org/01b6p7v84', 'no_lang_code', 1, 'https://ror.org/01b6p7v84 Platod (France)'),
(71119, 'https://ror.org/01b9jms40', 'pt', 1, 'https://ror.org/01b9jms40 Centro de Estudos de SeguranƧa e Cidadania'),
(71120, 'https://ror.org/01bby3105', 'no_lang_code', 1, 'https://ror.org/01bby3105 DexMat (United States)'),
(71121, 'https://ror.org/01bchpm90', 'en', 1, 'https://ror.org/01bchpm90 Instituto Nacional de Lenguas IndĆ­genas National Indigenous Languages Institute'),
(71122, 'https://ror.org/01bdg0p84', 'pl', 1, 'https://ror.org/01bdg0p84 Wojewódzki Szpital Specjalistyczny nr 5 im. św. Barbary w Sosnowcu'),
(71123, 'https://ror.org/01bdvsc06', 'sv', 1, 'https://ror.org/01bdvsc06 Swerim'),
(71124, 'https://ror.org/01bfjbb09', 'no_lang_code', 1, 'https://ror.org/01bfjbb09 Akuru Pharma (Sweden)'),
(71125, 'https://ror.org/01bjs1d88', 'en', 1, 'https://ror.org/01bjs1d88 Helsingfors Konstmuseum Helsingin Taidemuseo Helsinki Art Museum'),
(71126, 'https://ror.org/01bkzhn35', 'en', 1, 'https://ror.org/01bkzhn35 Angling Trust'),
(71127, 'https://ror.org/01bq72s38', 'no_lang_code', 1, 'https://ror.org/01bq72s38 Astrileux (United States)'),
(71128, 'https://ror.org/01bqdbm60', 'pl', 1, 'https://ror.org/01bqdbm60 Szkoła Aspirantów Państwowej Straży Pożarnej'),
(71129, 'https://ror.org/01bqqes77', 'no_lang_code', 1, 'https://ror.org/01bqqes77 Fluorescence Innovations (United States)'),
(71130, 'https://ror.org/01bqrhe48', 'en', 1, 'https://ror.org/01bqrhe48 Institute of Genetics and Hospital for Genetic Diseases ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°œą±†ą°Øą°æą°Ÿą°æą°•ą±ą°øą± ą°…ą°‚ą°”ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą± ą°«ą°°ą± ą°œą±†ą°Øą±†ą°Ÿą°æą°•ą± ą°”ą°æą°øą±€ą°œą±†ą°øą±'),
(71131, 'https://ror.org/01bqshg74', 'no_lang_code', 1, 'https://ror.org/01bqshg74 Watty (Sweden)'),
(71132, 'https://ror.org/01br0tv80', 'no_lang_code', 1, 'https://ror.org/01br0tv80 Brains4Drones (United States)'),
(71133, 'https://ror.org/01brhxa96', 'en', 1, 'https://ror.org/01brhxa96 Library of the Russian Academy of Sciences Библиотека Российской акаГемии наук'),
(71134, 'https://ror.org/01bs3vx31', 'en', 1, 'https://ror.org/01bs3vx31 Centro di Documentazione Ebraica Contemporanea Foundation Jewish Contemporary Documentation Center La Fondazione Centro di Documentazione Ebraica Contemporanea'),
(71135, 'https://ror.org/01bsx7b24', 'es', 1, 'https://ror.org/01bsx7b24 Fundación ProYungas'),
(71136, 'https://ror.org/01bv0ma93', 'no_lang_code', 1, 'https://ror.org/01bv0ma93 Artemis (United States)'),
(71137, 'https://ror.org/01bxfeh72', 'en', 1, 'https://ror.org/01bxfeh72 American Correctional Association'),
(71138, 'https://ror.org/01bya3q34', 'no_lang_code', 1, 'https://ror.org/01bya3q34 SGL Carbon (Poland)'),
(71139, 'https://ror.org/01bycfv98', 'no_lang_code', 1, 'https://ror.org/01bycfv98 Ideas Engineering & Technology (United States)'),
(71140, 'https://ror.org/01bye2s58', 'en', 1, 'https://ror.org/01bye2s58 Breakthrough Science Society'),
(71141, 'https://ror.org/01bynsf44', 'de', 1, 'https://ror.org/01bynsf44 Deutsche Akademie für Kinder- und Jugendmedizin'),
(71142, 'https://ror.org/01byxa330', 'no_lang_code', 1, 'https://ror.org/01byxa330 Navdanya'),
(71143, 'https://ror.org/01byxcr66', 'en', 1, 'https://ror.org/01byxcr66 Learning and Work Institute'),
(71144, 'https://ror.org/01bz5gk50', 'no_lang_code', 1, 'https://ror.org/01bz5gk50 PHI'),
(71145, 'https://ror.org/01c1sry94', 'en', 1, 'https://ror.org/01c1sry94 International Solid Waste Association'),
(71146, 'https://ror.org/01c366927', 'no_lang_code', 1, 'https://ror.org/01c366927 BoroPharm (United States)'),
(71147, 'https://ror.org/01c85sy27', 'en', 1, 'https://ror.org/01c85sy27 Philanthropy West Virginia'),
(71148, 'https://ror.org/01c961y89', 'en', 1, 'https://ror.org/01c961y89 International Broadcasting Trust'),
(71149, 'https://ror.org/01cahbt32', 'no_lang_code', 1, 'https://ror.org/01cahbt32 Centre Régional Songhaï Songhai'),
(71150, 'https://ror.org/01cb4q924', 'en', 1, 'https://ror.org/01cb4q924 London Arts in Health Forum'),
(71151, 'https://ror.org/01cbfpq42', 'no_lang_code', 1, 'https://ror.org/01cbfpq42 Braxton (United States)'),
(71152, 'https://ror.org/01cc0qc38', 'en', 1, 'https://ror.org/01cc0qc38 Victorian Bar'),
(71153, 'https://ror.org/01cdys993', 'en', 1, 'https://ror.org/01cdys993 Manchester Health and Wellbeing Service'),
(71154, 'https://ror.org/01cjtcc19', 'pt', 1, 'https://ror.org/01cjtcc19 Uma Gota no Oceano'),
(71155, 'https://ror.org/01cjyw781', 'en', 1, 'https://ror.org/01cjyw781 St Ethelburga’s Centre for Reconciliation and Peace'),
(71156, 'https://ror.org/01cjzrq61', 'en', 1, 'https://ror.org/01cjzrq61 Media Matters for America'),
(71157, 'https://ror.org/01cm1jq76', 'no_lang_code', 1, 'https://ror.org/01cm1jq76 Kerberos International (United States)'),
(71158, 'https://ror.org/01cntn905', 'no_lang_code', 1, 'https://ror.org/01cntn905 BorgWarner (United Kingdom)'),
(71159, 'https://ror.org/01cregx09', 'en', 1, 'https://ror.org/01cregx09 Ceiba Foundation for Tropical Conservation'),
(71160, 'https://ror.org/01crhk777', 'en', 1, 'https://ror.org/01crhk777 LGBT Foundation'),
(71161, 'https://ror.org/01cs5d441', 'no_lang_code', 1, 'https://ror.org/01cs5d441 E-Line Media (United States)'),
(71162, 'https://ror.org/01cwznr13', 'no_lang_code', 1, 'https://ror.org/01cwznr13 IBI Group (United Kingdom)'),
(71163, 'https://ror.org/01cxdpf04', 'no_lang_code', 1, 'https://ror.org/01cxdpf04 Cambridge Electronics (United States)'),
(71164, 'https://ror.org/01d016e60', 'en', 1, 'https://ror.org/01d016e60 Jonathan A Law & Associates'),
(71165, 'https://ror.org/01d20y590', 'de', 1, 'https://ror.org/01d20y590 Spiekermann and Wegener'),
(71166, 'https://ror.org/01d4cy209', 'no_lang_code', 1, 'https://ror.org/01d4cy209 NanoRidge (United States)'),
(71167, 'https://ror.org/01dashf18', 'en', 1, 'https://ror.org/01dashf18 Wuhan College'),
(71168, 'https://ror.org/01de12660', 'no_lang_code', 1, 'https://ror.org/01de12660 Cell Podium (United States)'),
(71169, 'https://ror.org/01de1bn24', 'no_lang_code', 1, 'https://ror.org/01de1bn24 Dextra Laboratories (United Kingdom)'),
(71170, 'https://ror.org/01dfmc653', 'de', 1, 'https://ror.org/01dfmc653 Krankenhaus Sachsenhausen'),
(71171, 'https://ror.org/01dg1k785', 'no_lang_code', 1, 'https://ror.org/01dg1k785 Alliance for Multispecialty Research (United States)'),
(71172, 'https://ror.org/01dg8r335', 'en', 1, 'https://ror.org/01dg8r335 Ministry of Economy of the Republic of Uzbekistan O''zbekiston Respublikasi Iqtisodiyot Vazirligi'),
(71173, 'https://ror.org/01dgmv528', 'en', 1, 'https://ror.org/01dgmv528 Institute of History of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ історії України ŠŠŠ України'),
(71174, 'https://ror.org/01dgyad16', 'en', 1, 'https://ror.org/01dgyad16 Partnership for Working Families'),
(71175, 'https://ror.org/01dkdqg26', 'no_lang_code', 1, 'https://ror.org/01dkdqg26 Mote Research (United Kingdom)'),
(71176, 'https://ror.org/01dkvcs48', 'en', 1, 'https://ror.org/01dkvcs48 North Somerset Council'),
(71177, 'https://ror.org/01dmy1650', 'no_lang_code', 1, 'https://ror.org/01dmy1650 Odlewnie Polskie (Poland)'),
(71178, 'https://ror.org/01dp90d46', 'en', 1, 'https://ror.org/01dp90d46 Peggy Dodd Centre'),
(71179, 'https://ror.org/01dqh8j58', 'en', 1, 'https://ror.org/01dqh8j58 National Institute of Disaster Management ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ आपदा ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(71180, 'https://ror.org/01dsgkd63', 'en', 1, 'https://ror.org/01dsgkd63 Asian Americans/Pacific Islanders in Philanthropy'),
(71181, 'https://ror.org/01dsgn298', 'no_lang_code', 1, 'https://ror.org/01dsgn298 Al-Kasaba Theatre & Cinematheque Ł…Ų³Ų±Ų­ ŁˆŲ³ŁŠŁ†Ł…Ų§ŲŖŁƒ القصبة'),
(71182, 'https://ror.org/01dt0bh70', 'en', 1, 'https://ror.org/01dt0bh70 Akademi Seni Budaya Dan Warisan Kebangsaan National Academy of Arts, Culture and Heritage'),
(71183, 'https://ror.org/01dtas649', 'no_lang_code', 1, 'https://ror.org/01dtas649 Norstel (Sweden)'),
(71184, 'https://ror.org/01dtngx32', 'no_lang_code', 1, 'https://ror.org/01dtngx32 Bioendev (Sweden)'),
(71185, 'https://ror.org/01dwh3q17', 'pt', 1, 'https://ror.org/01dwh3q17 Centro de Estudos e Pesquisa em SaĆŗde Coletiva'),
(71186, 'https://ror.org/01dwwr847', 'en', 1, 'https://ror.org/01dwwr847 Filantropi Indonesia Indonesia Philanthropy Association'),
(71187, 'https://ror.org/01dx39x96', 'en', 1, 'https://ror.org/01dx39x96 Institut druŔtvenih nauka Institute of Social Sciences'),
(71188, 'https://ror.org/01dy6j730', 'no_lang_code', 1, 'https://ror.org/01dy6j730 Diamir (United States)'),
(71189, 'https://ror.org/01e10kr47', 'en', 1, 'https://ror.org/01e10kr47 Museum of the Order of St John'),
(71190, 'https://ror.org/01e10rp58', 'en', 1, 'https://ror.org/01e10rp58 Interfaith Worker Justice'),
(71191, 'https://ror.org/01e15cb45', 'no_lang_code', 1, 'https://ror.org/01e15cb45 Bova (Taiwan)'),
(71192, 'https://ror.org/01e17wh10', 'no_lang_code', 1, 'https://ror.org/01e17wh10 Vikas Samvad'),
(71193, 'https://ror.org/01e3mhx02', 'en', 1, 'https://ror.org/01e3mhx02 Japan Institute for Labour Policy and Training ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒę”æē­–ē ”ē©¶ćƒ»ē ”äæ®ę©Ÿę§‹'),
(71194, 'https://ror.org/01e47g017', 'no_lang_code', 1, 'https://ror.org/01e47g017 FirstPass Engineering (United States)'),
(71195, 'https://ror.org/01e4h3c94', 'no_lang_code', 1, 'https://ror.org/01e4h3c94 Tony Coll and Associates (United Kingdom)'),
(71196, 'https://ror.org/01e8m9d21', 'en', 1, 'https://ror.org/01e8m9d21 Ministry of Foreign Affairs وزارة Ų§Ł„Ų®Ų§Ų±Ų¬ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(71197, 'https://ror.org/01e8xap89', 'no_lang_code', 1, 'https://ror.org/01e8xap89 Peptide Protein Research (United Kingdom)'),
(71198, 'https://ror.org/01e9djz97', 'en', 1, 'https://ror.org/01e9djz97 International Bluegrass Music Association'),
(71199, 'https://ror.org/01eb6s760', 'no_lang_code', 1, 'https://ror.org/01eb6s760 Electric Propulsion Laboratory (United States)'),
(71200, 'https://ror.org/01ecdm936', 'en', 1, 'https://ror.org/01ecdm936 Brighton Museum'),
(71201, 'https://ror.org/01eeqkr30', 'en', 1, 'https://ror.org/01eeqkr30 The Ministry of Education and Science of the Kyrgyz Republic ŠšŃ‹Ń€Š³Ń‹Š· Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Š½ билим берүү жана илим министрлиги ŠœŠøŠ½ŠøŃŃ‚ерство Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾Š¹ Республики'),
(71202, 'https://ror.org/01egfqj98', 'no_lang_code', 1, 'https://ror.org/01egfqj98 Sanskriti Samvardhan Mandal'),
(71203, 'https://ror.org/01eggt963', 'de', 1, 'https://ror.org/01eggt963 Klinikum Lüdenscheid'),
(71204, 'https://ror.org/01ekv6k42', 'en', 1, 'https://ror.org/01ekv6k42 Green Camel Bell ē»æé©¼é“ƒ'),
(71205, 'https://ror.org/01em2a424', 'no_lang_code', 1, 'https://ror.org/01em2a424 Land Sea Air Autonomy (United States)'),
(71206, 'https://ror.org/01em88r57', 'en', 1, 'https://ror.org/01em88r57 Community Connect Foundation'),
(71207, 'https://ror.org/01emaft25', 'no_lang_code', 1, 'https://ror.org/01emaft25 Avantherm (Sweden)'),
(71208, 'https://ror.org/01emkn494', 'en', 1, 'https://ror.org/01emkn494 DC Arts & Humanities Education Collaborative'),
(71209, 'https://ror.org/01enkn839', 'en', 1, 'https://ror.org/01enkn839 The Aquatic Coleoptera Conservation Trust'),
(71210, 'https://ror.org/01epkyf81', 'no_lang_code', 1, 'https://ror.org/01epkyf81 Astrox (United States)'),
(71211, 'https://ror.org/01esz2741', 'no_lang_code', 1, 'https://ror.org/01esz2741 UIT Solutions (South Korea) ģœ ģ•„ģ“ķ‹°'),
(71212, 'https://ror.org/01etbpd39', 'en', 1, 'https://ror.org/01etbpd39 St. Scholastica''s College'),
(71213, 'https://ror.org/01ex19q32', 'en', 1, 'https://ror.org/01ex19q32 Kingswood Oxford'),
(71214, 'https://ror.org/01eydjf18', 'en', 1, 'https://ror.org/01eydjf18 The Beles Group'),
(71215, 'https://ror.org/01f0ym620', 'en', 1, 'https://ror.org/01f0ym620 Teylers Museum'),
(71216, 'https://ror.org/01f3jm010', 'en', 1, 'https://ror.org/01f3jm010 Canadian Foundation for the Americas'),
(71217, 'https://ror.org/01f4evc04', 'en', 1, 'https://ror.org/01f4evc04 Culture Coventry'),
(71218, 'https://ror.org/01f4st973', 'no_lang_code', 1, 'https://ror.org/01f4st973 Biocentre Technology (United Kingdom)'),
(71219, 'https://ror.org/01f5kte17', 'en', 1, 'https://ror.org/01f5kte17 I Choose Life'),
(71220, 'https://ror.org/01f6x5c85', 'no_lang_code', 1, 'https://ror.org/01f6x5c85 Dynamic Systems Integration (United States)'),
(71221, 'https://ror.org/01f7ac059', 'no_lang_code', 1, 'https://ror.org/01f7ac059 Inertial Labs (United States)'),
(71222, 'https://ror.org/01f83vs23', 'no_lang_code', 1, 'https://ror.org/01f83vs23 C&A Foundation (Switzerland)'),
(71223, 'https://ror.org/01f8qyw75', 'en', 1, 'https://ror.org/01f8qyw75 Indian Institute of Information Technology, Pune ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø,ą¤Ŗą„ą¤£ą„‡'),
(71224, 'https://ror.org/01faqmz67', 'no_lang_code', 1, 'https://ror.org/01faqmz67 Kepley BioSystems (United States)'),
(71225, 'https://ror.org/01fbez228', 'no_lang_code', 1, 'https://ror.org/01fbez228 Sprint Bioscience (Sweden)'),
(71226, 'https://ror.org/01fcbp662', 'en', 1, 'https://ror.org/01fcbp662 Institute for Cultural Inquiry'),
(71227, 'https://ror.org/01fddvx19', 'en', 1, 'https://ror.org/01fddvx19 West Lothian Council'),
(71228, 'https://ror.org/01fe85m15', 'en', 1, 'https://ror.org/01fe85m15 Eyebeam');
INSERT INTO `rors` VALUES
(71229, 'https://ror.org/01ffkb584', 'en', 1, 'https://ror.org/01ffkb584 Sustainable Livelihoods Foundation'),
(71230, 'https://ror.org/01ffr8256', 'no_lang_code', 1, 'https://ror.org/01ffr8256 Annexon Biosciences (United States)'),
(71231, 'https://ror.org/01fgzfp87', 'en', 1, 'https://ror.org/01fgzfp87 US Embassy in Turkmenistan'),
(71232, 'https://ror.org/01fkztr60', 'en', 1, 'https://ror.org/01fkztr60 Glasgow Women''s Library'),
(71233, 'https://ror.org/01fm8t129', 'en', 1, 'https://ror.org/01fm8t129 Scientific Studies Association İlmi Etüdler Derneğ'),
(71234, 'https://ror.org/01fn3sj65', 'en', 1, 'https://ror.org/01fn3sj65 Institute for Intergovernmental Research'),
(71235, 'https://ror.org/01fn7y155', 'no_lang_code', 1, 'https://ror.org/01fn7y155 Pharmaron (United Kingdom)'),
(71236, 'https://ror.org/01fns9c92', 'en', 1, 'https://ror.org/01fns9c92 Black Country Living Museum'),
(71237, 'https://ror.org/01fq8hw04', 'en', 1, 'https://ror.org/01fq8hw04 Evangelical Church Winning All'),
(71238, 'https://ror.org/01fr1mq46', 'en', 1, 'https://ror.org/01fr1mq46 Balor Arts Centre'),
(71239, 'https://ror.org/01fr7xq53', 'en', 1, 'https://ror.org/01fr7xq53 Adaptive Design Association'),
(71240, 'https://ror.org/01ftj8q07', 'en', 1, 'https://ror.org/01ftj8q07 College of St George'),
(71241, 'https://ror.org/01fv2q409', 'en', 1, 'https://ror.org/01fv2q409 Horniman Museum and Gardens'),
(71242, 'https://ror.org/01fxfr158', 'en', 1, 'https://ror.org/01fxfr158 Anna Lindh Foundation'),
(71243, 'https://ror.org/01fztcv40', 'en', 1, 'https://ror.org/01fztcv40 Kenya School of Government'),
(71244, 'https://ror.org/01g0bw002', 'no_lang_code', 1, 'https://ror.org/01g0bw002 Tretyakov Gallery Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¢Ń€ŠµŃ‚ŃŒŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š“Š°Š»ŠµŃ€ŠµŃ'),
(71245, 'https://ror.org/01g26n816', 'en', 1, 'https://ror.org/01g26n816 Saffron Walden Museum'),
(71246, 'https://ror.org/01g36xg54', 'en', 1, 'https://ror.org/01g36xg54 Trees and Design Action Group'),
(71247, 'https://ror.org/01g3gak55', 'en', 1, 'https://ror.org/01g3gak55 The National Autistic Society'),
(71248, 'https://ror.org/01g5nae47', 'en', 1, 'https://ror.org/01g5nae47 Texas Association Against Sexual Assault'),
(71249, 'https://ror.org/01g6mxs55', 'no_lang_code', 1, 'https://ror.org/01g6mxs55 Inteligistics (United States)'),
(71250, 'https://ror.org/01g75py92', 'no_lang_code', 1, 'https://ror.org/01g75py92 MAST Technologies (United States)'),
(71251, 'https://ror.org/01g78rb53', 'fr', 1, 'https://ror.org/01g78rb53 Alliance Citoyenne'),
(71252, 'https://ror.org/01g7a7y43', 'no_lang_code', 1, 'https://ror.org/01g7a7y43 Noravank Foundation Õ†ÕøÖ€Õ”Õ¾Õ”Õ¶Ö„Ā» Õ°Õ«Õ“Õ¶Õ”Õ¤Ö€Õ”Õ“'),
(71253, 'https://ror.org/01g8p7e44', 'no_lang_code', 1, 'https://ror.org/01g8p7e44 Publicis Groupe (France)'),
(71254, 'https://ror.org/01g9gaq76', 'en', 1, 'https://ror.org/01g9gaq76 Xuzhou Cancer Hospital'),
(71255, 'https://ror.org/01gamcy45', 'no_lang_code', 1, 'https://ror.org/01gamcy45 Brain (Germany)'),
(71256, 'https://ror.org/01garp273', 'no_lang_code', 1, 'https://ror.org/01garp273 Fulcrum Composites (United States)'),
(71257, 'https://ror.org/01gat1y32', 'no_lang_code', 1, 'https://ror.org/01gat1y32 No Picnic (Sweden)'),
(71258, 'https://ror.org/01gf4c669', 'en', 1, 'https://ror.org/01gf4c669 The Elizabeth Foundation for the Arts'),
(71259, 'https://ror.org/01gh80505', 'en', 1, 'https://ror.org/01gh80505 Coventry and Warwickshire Partnership NHS Trust'),
(71260, 'https://ror.org/01gjnjy30', 'no_lang_code', 1, 'https://ror.org/01gjnjy30 Medical Diagnostic Laboratories (United States)'),
(71261, 'https://ror.org/01gjnzx46', 'es', 1, 'https://ror.org/01gjnzx46 Cultura, Instituto de Cultura, Turismo y Arte de Mazatlan'),
(71262, 'https://ror.org/01gp9yw74', 'en', 1, 'https://ror.org/01gp9yw74 Open Society OtevřenĆ” Společnost'),
(71263, 'https://ror.org/01gr3kq91', 'en', 1, 'https://ror.org/01gr3kq91 Interamerican Society of Cardiology Sociedad Interamericana de CardiologĆ­a'),
(71264, 'https://ror.org/01grm4y17', 'en', 1, 'https://ror.org/01grm4y17 Bavarian State Research Center for Agriculture Bayerische Landesanstalt für Landwirtschaft'),
(71265, 'https://ror.org/01gspzg10', 'no_lang_code', 1, 'https://ror.org/01gspzg10 TV Asahi (Japan) ę Ŗå¼ä¼šē¤¾ćƒ†ćƒ¬ćƒ“ęœę—„'),
(71266, 'https://ror.org/01gw2fq77', 'en', 1, 'https://ror.org/01gw2fq77 Shetland Museum and Archives'),
(71267, 'https://ror.org/01gxrbz31', 'en', 1, 'https://ror.org/01gxrbz31 Rodrigues Economic Chamber and Industry'),
(71268, 'https://ror.org/01h3j2d14', 'en', 1, 'https://ror.org/01h3j2d14 Detroit Economic Growth Corporation'),
(71269, 'https://ror.org/01h4b6a51', 'pt', 1, 'https://ror.org/01h4b6a51 Observatório do Meio Rural'),
(71270, 'https://ror.org/01h4n0g56', 'no_lang_code', 1, 'https://ror.org/01h4n0g56 Amydis (United States)'),
(71271, 'https://ror.org/01h4rra97', 'fr', 1, 'https://ror.org/01h4rra97 Gouvernance, Risque, Environnement, DƩveloppement'),
(71272, 'https://ror.org/01h5wyd82', 'en', 1, 'https://ror.org/01h5wyd82 Taiwan Public Television Service Foundation č²”åœ˜ę³•äŗŗå…¬å…±é›»č¦–ę–‡åŒ–äŗ‹ę„­åŸŗé‡‘ęœƒ'),
(71273, 'https://ror.org/01h6ebv15', 'en', 1, 'https://ror.org/01h6ebv15 mySociety'),
(71274, 'https://ror.org/01h79xg57', 'no_lang_code', 1, 'https://ror.org/01h79xg57 Applied Graphene Materials (United Kingdom)'),
(71275, 'https://ror.org/01h814g24', 'no_lang_code', 1, 'https://ror.org/01h814g24 Lanka Hydraulic Institute (Sri Lanka)'),
(71276, 'https://ror.org/01h9cfp35', 'no_lang_code', 1, 'https://ror.org/01h9cfp35 Connecticut Analytical Corporation (United States)'),
(71277, 'https://ror.org/01hc68e22', 'en', 1, 'https://ror.org/01hc68e22 Association of Baltimore Area Grantmakers'),
(71278, 'https://ror.org/01hcawk58', 'en', 1, 'https://ror.org/01hcawk58 Seoyeong University'),
(71279, 'https://ror.org/01heyg366', 'fr', 1, 'https://ror.org/01heyg366 MusƩe d''Orsay'),
(71280, 'https://ror.org/01hg6wr34', 'es', 1, 'https://ror.org/01hg6wr34 Instituto de Lengua y Cultura Aymara'),
(71281, 'https://ror.org/01hg97084', 'en', 1, 'https://ror.org/01hg97084 New York Theatre Workshop'),
(71282, 'https://ror.org/01hg9sk45', 'no_lang_code', 1, 'https://ror.org/01hg9sk45 BSC Associates (United States)'),
(71283, 'https://ror.org/01hj7gk80', 'en', 1, 'https://ror.org/01hj7gk80 One-Handed Musical Instrument'),
(71284, 'https://ror.org/01hptbr11', 'en', 1, 'https://ror.org/01hptbr11 Equal Rights Trust'),
(71285, 'https://ror.org/01hqnxa62', 'en', 1, 'https://ror.org/01hqnxa62 Te Wānanga o Raukawa'),
(71286, 'https://ror.org/01hr74d22', 'no_lang_code', 1, 'https://ror.org/01hr74d22 Boehringer Ingelheim (Brazil)'),
(71287, 'https://ror.org/01hsjdk31', 'no_lang_code', 1, 'https://ror.org/01hsjdk31 McClatchy (United States)'),
(71288, 'https://ror.org/01hsyq967', 'en', 1, 'https://ror.org/01hsyq967 Choithram College of Nursing ą¤šą„‹ą¤‡ą¤„ą¤°ą¤¾ą¤® ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ़ ą¤Øą¤°ą„ą¤øą¤æą¤‚ą¤—'),
(71289, 'https://ror.org/01hthk989', 'en', 1, 'https://ror.org/01hthk989 World Endometriosis Research Foundation'),
(71290, 'https://ror.org/01hxaqe16', 'en', 1, 'https://ror.org/01hxaqe16 King Fahd Security College ŁƒŁ„ŁŠŲ© Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„Ų£Ł…Ł†ŁŠŲ©'),
(71291, 'https://ror.org/01hxz7b02', 'no_lang_code', 1, 'https://ror.org/01hxz7b02 Advent Systems (United States)'),
(71292, 'https://ror.org/01hz1eb30', 'en', 1, 'https://ror.org/01hz1eb30 Lloyd''s'),
(71293, 'https://ror.org/01hzg6v66', 'en', 1, 'https://ror.org/01hzg6v66 London Social Science'),
(71294, 'https://ror.org/01j0mz257', 'no_lang_code', 1, 'https://ror.org/01j0mz257 CyberOptics (United States)'),
(71295, 'https://ror.org/01j1yd322', 'en', 1, 'https://ror.org/01j1yd322 Foundation for Revitalisation of Local Health Traditions'),
(71296, 'https://ror.org/01j2pmk70', 'en', 1, 'https://ror.org/01j2pmk70 Time-Line computer Archive'),
(71297, 'https://ror.org/01j4nab63', 'no_lang_code', 1, 'https://ror.org/01j4nab63 Kereval (France)'),
(71298, 'https://ror.org/01j4y5573', 'no_lang_code', 1, 'https://ror.org/01j4y5573 Biomarker Profiles (United States)'),
(71299, 'https://ror.org/01j5kbq18', 'no_lang_code', 1, 'https://ror.org/01j5kbq18 EcoTech (Sweden)'),
(71300, 'https://ror.org/01j5w9y89', 'en', 1, 'https://ror.org/01j5w9y89 The IARS International Institute'),
(71301, 'https://ror.org/01ja22q26', 'no_lang_code', 1, 'https://ror.org/01ja22q26 Liquidmetal Technologies (United States)'),
(71302, 'https://ror.org/01jc6t452', 'no_lang_code', 1, 'https://ror.org/01jc6t452 Dar al Athar al Islamiyyah Ł…Ų±ŁƒŲ² Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŲ§Ł†ŁŠ Ų§Ł„Ų«Ł‚Ų§ŁŁŠ - ŲÆŲ§Ų± الآثار Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(71303, 'https://ror.org/01je6ev79', 'en', 1, 'https://ror.org/01je6ev79 Manor Gardens Welfare Trust'),
(71304, 'https://ror.org/01jet5112', 'en', 1, 'https://ror.org/01jet5112 Say Yes to Education'),
(71305, 'https://ror.org/01jgm3705', 'en', 1, 'https://ror.org/01jgm3705 Autism at Kingwood'),
(71306, 'https://ror.org/01jjrv674', 'en', 1, 'https://ror.org/01jjrv674 Shakespeare Birthplace Trust'),
(71307, 'https://ror.org/01jjvj470', 'en', 1, 'https://ror.org/01jjvj470 Centre for Polar Observation and Modelling'),
(71308, 'https://ror.org/01jk98t54', 'no_lang_code', 1, 'https://ror.org/01jk98t54 DoseOptics (United States)'),
(71309, 'https://ror.org/01jkb7292', 'no_lang_code', 1, 'https://ror.org/01jkb7292 Cheyney (United Kingdom)'),
(71310, 'https://ror.org/01jkbqt36', 'no_lang_code', 1, 'https://ror.org/01jkbqt36 Lankard Materials Laboratory (United States)'),
(71311, 'https://ror.org/01jkn7h76', 'no_lang_code', 1, 'https://ror.org/01jkn7h76 Qamcom Research and Technology (Sweden)'),
(71312, 'https://ror.org/01jp0wp57', 'no_lang_code', 1, 'https://ror.org/01jp0wp57 AccessData (United States)'),
(71313, 'https://ror.org/01jpyha72', 'en', 1, 'https://ror.org/01jpyha72 The Heather Trust'),
(71314, 'https://ror.org/01jq58g75', 'no_lang_code', 1, 'https://ror.org/01jq58g75 Micron Corporation (United States)'),
(71315, 'https://ror.org/01jttce46', 'en', 1, 'https://ror.org/01jttce46 Federal State Budget Scientific Institution Institute of Applied Mathematics and Automation Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ Š˜ŠšŠ›ŠŠ”ŠŠžŠ™ ŠœŠŠ¢Š•ŠœŠŠ¢Š˜ŠšŠ˜ И ŠŠ’Š¢ŠžŠœŠŠ¢Š˜Š—ŠŠ¦Š˜Š˜'),
(71316, 'https://ror.org/01jv0yc68', 'no_lang_code', 1, 'https://ror.org/01jv0yc68 Digital Native Academy (United Kingdom)'),
(71317, 'https://ror.org/01jwwe165', 'en', 1, 'https://ror.org/01jwwe165 Association of London Environmental Health Managers'),
(71318, 'https://ror.org/01jx84k94', 'no_lang_code', 1, 'https://ror.org/01jx84k94 Millennium Dynamics (United States)'),
(71319, 'https://ror.org/01jyjxa35', 'en', 1, 'https://ror.org/01jyjxa35 Open Health Systems Laboratory'),
(71320, 'https://ror.org/01jyr6y47', 'pl', 1, 'https://ror.org/01jyr6y47 Polskie Stowarzyszenie Terapii Behawioralnej'),
(71321, 'https://ror.org/01jysap10', 'en', 1, 'https://ror.org/01jysap10 West Yorkshire Joint Services'),
(71322, 'https://ror.org/01jyzgn17', 'en', 1, 'https://ror.org/01jyzgn17 Stockholm University College of Music Education Stockholms Musikpedagogiska Institut'),
(71323, 'https://ror.org/01jzvc390', 'no_lang_code', 1, 'https://ror.org/01jzvc390 Sweden Water Research (Sweden)'),
(71324, 'https://ror.org/01k101787', 'no_lang_code', 1, 'https://ror.org/01k101787 Idhelio (France)'),
(71325, 'https://ror.org/01k1gfz56', 'no_lang_code', 1, 'https://ror.org/01k1gfz56 Hays Innovations (United States)'),
(71326, 'https://ror.org/01k3bjh49', 'en', 1, 'https://ror.org/01k3bjh49 British Machine Vision Association'),
(71327, 'https://ror.org/01k3phj09', 'no_lang_code', 1, 'https://ror.org/01k3phj09 Infrascan (United States)'),
(71328, 'https://ror.org/01k469x92', 'en', 1, 'https://ror.org/01k469x92 St Albans and Hertfordshire Architectural and Archaeological Society'),
(71329, 'https://ror.org/01k645a92', 'no_lang_code', 1, 'https://ror.org/01k645a92 Forward Photonics (United States)'),
(71330, 'https://ror.org/01k6zmz35', 'en', 1, 'https://ror.org/01k6zmz35 Refugee Council'),
(71331, 'https://ror.org/01k9d6864', 'en', 1, 'https://ror.org/01k9d6864 Digital Curation Centre'),
(71332, 'https://ror.org/01ka1xt91', 'en', 1, 'https://ror.org/01ka1xt91 York Theatre Royal'),
(71333, 'https://ror.org/01ka62b75', 'en', 1, 'https://ror.org/01ka62b75 Office of Governor'),
(71334, 'https://ror.org/01kbwt308', 'en', 1, 'https://ror.org/01kbwt308 International Planned Parenthood Federation'),
(71335, 'https://ror.org/01kck2n84', 'en', 1, 'https://ror.org/01kck2n84 San Gabriel Pomona Regional Center'),
(71336, 'https://ror.org/01kde9c12', 'en', 1, 'https://ror.org/01kde9c12 Council on Higher Education'),
(71337, 'https://ror.org/01kegck15', 'en', 1, 'https://ror.org/01kegck15 Rotherham United Community Sports Trust'),
(71338, 'https://ror.org/01kh56070', 'fr', 1, 'https://ror.org/01kh56070 Conseil DƩpartemental de la Creuse'),
(71339, 'https://ror.org/01kj6qf31', 'en', 1, 'https://ror.org/01kj6qf31 Ministry of Welfare VelferưarrƔưuneytiư'),
(71340, 'https://ror.org/01kqhzq55', 'pt', 1, 'https://ror.org/01kqhzq55 Associação Nacional de Direitos Humanos, Pesquisa e Pós-Graduação'),
(71341, 'https://ror.org/01kr8fz72', 'en', 1, 'https://ror.org/01kr8fz72 Muslim Women''s Research and Action Forum'),
(71342, 'https://ror.org/01krfhk43', 'no_lang_code', 1, 'https://ror.org/01krfhk43 Norrkƶping Visualisering (Sweden)'),
(71343, 'https://ror.org/01ks5xj83', 'en', 1, 'https://ror.org/01ks5xj83 The Parks Trust'),
(71344, 'https://ror.org/01kvaek42', 'en', 1, 'https://ror.org/01kvaek42 Thomas Mann Cultural Centre Thomo Manno Kultūros Centras'),
(71345, 'https://ror.org/01kw4bf10', 'en', 1, 'https://ror.org/01kw4bf10 Medicines Patent Pool'),
(71346, 'https://ror.org/01kwnqg78', 'en', 1, 'https://ror.org/01kwnqg78 Northern Ireland Council for Voluntary Action'),
(71347, 'https://ror.org/01kz8wz75', 'en', 1, 'https://ror.org/01kz8wz75 Abaseen Foundation'),
(71348, 'https://ror.org/01m06zm04', 'en', 1, 'https://ror.org/01m06zm04 Quakers'),
(71349, 'https://ror.org/01m081680', 'en', 1, 'https://ror.org/01m081680 Thomas Pocklington Trust'),
(71350, 'https://ror.org/01m08sy32', 'en', 1, 'https://ror.org/01m08sy32 The Association of Early Pregnancy Units'),
(71351, 'https://ror.org/01m0rks68', 'en', 1, 'https://ror.org/01m0rks68 City Year'),
(71352, 'https://ror.org/01m1ej943', 'en', 1, 'https://ror.org/01m1ej943 United Nations Children''s Fund Kosovo'),
(71353, 'https://ror.org/01m2mh218', 'en', 1, 'https://ror.org/01m2mh218 Dhow Countries Music Academy'),
(71354, 'https://ror.org/01m3mp859', 'en', 1, 'https://ror.org/01m3mp859 The Wye & Usk Foundation'),
(71355, 'https://ror.org/01m3qwn25', 'no_lang_code', 1, 'https://ror.org/01m3qwn25 Guidestar Optical Systems (United States)'),
(71356, 'https://ror.org/01m5b4t98', 'no_lang_code', 1, 'https://ror.org/01m5b4t98 Hoh Aeronautics (United States)'),
(71357, 'https://ror.org/01m5n8597', 'no_lang_code', 1, 'https://ror.org/01m5n8597 ReproCELL (United Kingdom)'),
(71358, 'https://ror.org/01m7cyk91', 'no_lang_code', 1, 'https://ror.org/01m7cyk91 PolymemTech (Poland)'),
(71359, 'https://ror.org/01m82kt84', 'en', 1, 'https://ror.org/01m82kt84 Durham Dales Health Federation'),
(71360, 'https://ror.org/01m8g2q39', 'no_lang_code', 1, 'https://ror.org/01m8g2q39 Noviga Research (Sweden)'),
(71361, 'https://ror.org/01m965f91', 'it', 1, 'https://ror.org/01m965f91 Museo Civico di Zoologia'),
(71362, 'https://ror.org/01m96mc18', 'no_lang_code', 1, 'https://ror.org/01m96mc18 Pragma Therapeutics (France)'),
(71363, 'https://ror.org/01m9jpy59', 'no_lang_code', 1, 'https://ror.org/01m9jpy59 Greensea Systems (United States)'),
(71364, 'https://ror.org/01mb4vz12', 'en', 1, 'https://ror.org/01mb4vz12 Tripura State Pollution Control Board'),
(71365, 'https://ror.org/01mb5fa95', 'en', 1, 'https://ror.org/01mb5fa95 Institute of Modern Knowledge named after A.M. Shirokova Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ ŃŃƒŃ‡Š°ŃŠ½Ń‹Ń… Š²ŠµŠ“Š°Ńž Ń–Š¼Ń А. М. Шырокава Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ современных знаний имени А. М. Широкова'),
(71366, 'https://ror.org/01mbqee76', 'no_lang_code', 1, 'https://ror.org/01mbqee76 Agile RF Systems (United States)'),
(71367, 'https://ror.org/01mcrzq55', 'en', 1, 'https://ror.org/01mcrzq55 Oral History Society'),
(71368, 'https://ror.org/01md5nh91', 'en', 1, 'https://ror.org/01md5nh91 Centre for Research and Technology Development'),
(71369, 'https://ror.org/01mdxbf79', 'en', 1, 'https://ror.org/01mdxbf79 International Centre on Space Technologies for Natural and Cultural Heritage å›½é™…č‡Ŗē„¶äøŽę–‡åŒ–é—äŗ§ē©ŗé—“ęŠ€ęœÆäø­åæƒ'),
(71370, 'https://ror.org/01mesrv79', 'en', 1, 'https://ror.org/01mesrv79 Center for Neighborhood Technology'),
(71371, 'https://ror.org/01mey5f62', 'no_lang_code', 1, 'https://ror.org/01mey5f62 Meva Energy (Sweden)'),
(71372, 'https://ror.org/01mfyt667', 'no_lang_code', 1, 'https://ror.org/01mfyt667 Celtic Research (United Kingdom)'),
(71373, 'https://ror.org/01mgxxq41', 'no_lang_code', 1, 'https://ror.org/01mgxxq41 Clean Motion (Sweden)'),
(71374, 'https://ror.org/01mhhtp02', 'en', 1, 'https://ror.org/01mhhtp02 J P French Associates'),
(71375, 'https://ror.org/01mhrge46', 'en', 1, 'https://ror.org/01mhrge46 Professional Publishers Association'),
(71376, 'https://ror.org/01mj2ze90', 'en', 1, 'https://ror.org/01mj2ze90 Tyne Rivers Trust'),
(71377, 'https://ror.org/01mj57h56', 'no_lang_code', 1, 'https://ror.org/01mj57h56 NanoSD (United States)'),
(71378, 'https://ror.org/01mm16571', 'de', 1, 'https://ror.org/01mm16571 Nawi Graz'),
(71379, 'https://ror.org/01mnn1775', 'no_lang_code', 1, 'https://ror.org/01mnn1775 Caktus Group (United States)'),
(71380, 'https://ror.org/01mqnjq55', 'en', 1, 'https://ror.org/01mqnjq55 Houston Galveston Institute'),
(71381, 'https://ror.org/01mqrn417', 'en', 1, 'https://ror.org/01mqrn417 Coram'),
(71382, 'https://ror.org/01mryv087', 'en', 1, 'https://ror.org/01mryv087 The K.R. Cama Oriental Institute'),
(71383, 'https://ror.org/01msk4m94', 'en', 1, 'https://ror.org/01msk4m94 Education Law Center'),
(71384, 'https://ror.org/01msn1v37', 'en', 1, 'https://ror.org/01msn1v37 Tostan'),
(71385, 'https://ror.org/01msx8j36', 'en', 1, 'https://ror.org/01msx8j36 Respons'),
(71386, 'https://ror.org/01mtztp63', 'en', 1, 'https://ror.org/01mtztp63 YoungMinds'),
(71387, 'https://ror.org/01mvkzd56', 'pt', 1, 'https://ror.org/01mvkzd56 Fundepag'),
(71388, 'https://ror.org/01mvvkn82', 'no_lang_code', 1, 'https://ror.org/01mvvkn82 Svenskt fjƤll- och samemuseum Ɓjtte'),
(71389, 'https://ror.org/01mwk7t47', 'en', 1, 'https://ror.org/01mwk7t47 Quality of Life Partnership'),
(71390, 'https://ror.org/01myp4b02', 'en', 1, 'https://ror.org/01myp4b02 Migrants Rights Network'),
(71391, 'https://ror.org/01n1ayq61', 'en', 1, 'https://ror.org/01n1ayq61 Institute for Research on Population and Social Policies Istituto di Ricerche sulla Popolazione e le Politiche Sociali'),
(71392, 'https://ror.org/01n2ebv18', 'en', 1, 'https://ror.org/01n2ebv18 Ukrainian State Employment Service Training Institute Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ піГготовки каГрів'),
(71393, 'https://ror.org/01n2ss077', 'no_lang_code', 1, 'https://ror.org/01n2ss077 Stri (Sweden)'),
(71394, 'https://ror.org/01n3xc149', 'es', 1, 'https://ror.org/01n3xc149 Oxfam MƩxico'),
(71395, 'https://ror.org/01n6r0d03', 'en', 1, 'https://ror.org/01n6r0d03 PPMA Group of Associations'),
(71396, 'https://ror.org/01n6ss875', 'no_lang_code', 1, 'https://ror.org/01n6ss875 Glosten (United States)'),
(71397, 'https://ror.org/01n6xge79', 'tr', 1, 'https://ror.org/01n6xge79 Türk Eğitim Vakfı'),
(71398, 'https://ror.org/01n93gn67', 'en', 1, 'https://ror.org/01n93gn67 Center for Quantum Nanoscience ģ–‘ģžė‚˜ė…øź³¼ķ•™ģ—°źµ¬ė‹Ø'),
(71399, 'https://ror.org/01n95pm43', 'en', 1, 'https://ror.org/01n95pm43 Foundation for the Advancement of Social Theory'),
(71400, 'https://ror.org/01nb27779', 'no_lang_code', 1, 'https://ror.org/01nb27779 Capgemini (United Kingdom)'),
(71401, 'https://ror.org/01nd71k14', 'en', 1, 'https://ror.org/01nd71k14 Edinburgh City of Literature'),
(71402, 'https://ror.org/01ndq3682', 'en', 1, 'https://ror.org/01ndq3682 United States Courts'),
(71403, 'https://ror.org/01neznn74', 'en', 1, 'https://ror.org/01neznn74 Honolulu Theatre for Youth'),
(71404, 'https://ror.org/01ng1nj07', 'no_lang_code', 1, 'https://ror.org/01ng1nj07 Bio-Bras'),
(71405, 'https://ror.org/01ngfjj64', 'no_lang_code', 1, 'https://ror.org/01ngfjj64 PharmChem (United States)'),
(71406, 'https://ror.org/01nh1pn53', 'no_lang_code', 1, 'https://ror.org/01nh1pn53 StereoVision Imaging (United States)'),
(71407, 'https://ror.org/01nj7ae17', 'en', 1, 'https://ror.org/01nj7ae17 National Organizations for Youth Safety'),
(71408, 'https://ror.org/01njpm937', 'no_lang_code', 1, 'https://ror.org/01njpm937 Seva Mandir'),
(71409, 'https://ror.org/01nke7b10', 'no_lang_code', 1, 'https://ror.org/01nke7b10 Soliya'),
(71410, 'https://ror.org/01nmjw537', 'en', 1, 'https://ror.org/01nmjw537 Constituency for Africa'),
(71411, 'https://ror.org/01nmtfv20', 'en', 1, 'https://ror.org/01nmtfv20 National Defense University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž€įž¶įžšįž–įž¶įžšįž‡įž¶įžįž·'),
(71412, 'https://ror.org/01nnh1n81', 'fr', 1, 'https://ror.org/01nnh1n81 CIEP'),
(71413, 'https://ror.org/01nnqk936', 'en', 1, 'https://ror.org/01nnqk936 Gulf Coast Housing Partnership'),
(71414, 'https://ror.org/01ns4tv82', 'no_lang_code', 1, 'https://ror.org/01ns4tv82 GPD Optoelectronics (United States)'),
(71415, 'https://ror.org/01nsyw318', 'en', 1, 'https://ror.org/01nsyw318 Portsmouth Museum'),
(71416, 'https://ror.org/01nt99q97', 'en', 1, 'https://ror.org/01nt99q97 Aston Reinvestment Trust'),
(71417, 'https://ror.org/01ntfzr17', 'no_lang_code', 1, 'https://ror.org/01ntfzr17 La Strada'),
(71418, 'https://ror.org/01nvxbj32', 'no_lang_code', 1, 'https://ror.org/01nvxbj32 JBS Technologies (United States)'),
(71419, 'https://ror.org/01nwj0553', 'en', 1, 'https://ror.org/01nwj0553 Scottish Association of Meat Wholesalers'),
(71420, 'https://ror.org/01nxjag84', 'ro', 1, 'https://ror.org/01nxjag84 Institutul Medicina de Urgenta'),
(71421, 'https://ror.org/01p35vs79', 'no_lang_code', 1, 'https://ror.org/01p35vs79 Echandia Marine (Sweden)'),
(71422, 'https://ror.org/01p5xff03', 'no_lang_code', 1, 'https://ror.org/01p5xff03 Gorgias Press (United States)'),
(71423, 'https://ror.org/01p8akv10', 'no_lang_code', 1, 'https://ror.org/01p8akv10 Polish Security Printing Works (Poland) Polska Wytwornia Papierow Wartosciowych'),
(71424, 'https://ror.org/01pbfbp48', 'en', 1, 'https://ror.org/01pbfbp48 Abhivyakti Media for Development'),
(71425, 'https://ror.org/01pbz1b98', 'en', 1, 'https://ror.org/01pbz1b98 Norfolk Record Office'),
(71426, 'https://ror.org/01pdb1x94', 'en', 1, 'https://ror.org/01pdb1x94 Central Road Research Institute'),
(71427, 'https://ror.org/01pfmmr39', 'en', 1, 'https://ror.org/01pfmmr39 Kotka Maritime Research Centre Meriturvallisuuden ja -liikenteen Tutkimuskeskus'),
(71428, 'https://ror.org/01pg0y117', 'en', 1, 'https://ror.org/01pg0y117 The Institute for Food Brain and Behaviour'),
(71429, 'https://ror.org/01phdew02', 'en', 1, 'https://ror.org/01phdew02 National Central Library åœ‹å®¶åœ–ę›øé¤Ø'),
(71430, 'https://ror.org/01phse664', 'en', 1, 'https://ror.org/01phse664 Azərbaycan Respublikasının Mərkəzi Bankı Central Bank of the Republic of Azerbaijan'),
(71431, 'https://ror.org/01pme5r05', 'no_lang_code', 1, 'https://ror.org/01pme5r05 DiSTI (United States)'),
(71432, 'https://ror.org/01ppqae48', 'en', 1, 'https://ror.org/01ppqae48 The Golden Bridges Foundation'),
(71433, 'https://ror.org/01pqjya71', 'en', 1, 'https://ror.org/01pqjya71 Ministerul Afacerilor Externe Ministry of Foreign Affairs'),
(71434, 'https://ror.org/01pqxf729', 'pt', 1, 'https://ror.org/01pqxf729 Instituto Eqüit – GĆŖnero, Economia e Cidadania Global'),
(71435, 'https://ror.org/01ps6tc76', 'no_lang_code', 1, 'https://ror.org/01ps6tc76 Leaflabs (United States)'),
(71436, 'https://ror.org/01psmkn05', 'en', 1, 'https://ror.org/01psmkn05 Institut de Recherche en SantĆ©, de Surveillance ƉpidĆ©miologique et de Formation Institute of Health Research, Epidemiological Surveillance and Training'),
(71437, 'https://ror.org/01pz7ej14', 'en', 1, 'https://ror.org/01pz7ej14 UK Carbon Capture and Research Centre'),
(71438, 'https://ror.org/01q0egy64', 'no_lang_code', 1, 'https://ror.org/01q0egy64 Hanson & Associates (United Kingdom)'),
(71439, 'https://ror.org/01q0h5a15', 'en', 1, 'https://ror.org/01q0h5a15 Media Rights Agenda'),
(71440, 'https://ror.org/01q0r1k14', 'en', 1, 'https://ror.org/01q0r1k14 Office of National Intelligence'),
(71441, 'https://ror.org/01q15xv46', 'no_lang_code', 1, 'https://ror.org/01q15xv46 Financial Network Analytics (United Kingdom)'),
(71442, 'https://ror.org/01q3p9d41', 'fr', 1, 'https://ror.org/01q3p9d41 Arteria, Association Arteria MƩdiation'),
(71443, 'https://ror.org/01q4spz53', 'en', 1, 'https://ror.org/01q4spz53 National AIDS Trust'),
(71444, 'https://ror.org/01q5qmy44', 'en', 1, 'https://ror.org/01q5qmy44 Institute of Translation and Interpreting'),
(71445, 'https://ror.org/01q78gf04', 'no_lang_code', 1, 'https://ror.org/01q78gf04 MJ Medical (United Kingdom)'),
(71446, 'https://ror.org/01q9c3q09', 'en', 1, 'https://ror.org/01q9c3q09 Buffs Social Club'),
(71447, 'https://ror.org/01qajny58', 'en', 1, 'https://ror.org/01qajny58 Capital Impact Partners'),
(71448, 'https://ror.org/01qc0qt89', 'en', 1, 'https://ror.org/01qc0qt89 Archiv VýtvarnĆ©ho UměnĆ­ The Fine Art Archive'),
(71449, 'https://ror.org/01qdnge68', 'no_lang_code', 1, 'https://ror.org/01qdnge68 Fluent (United States)'),
(71450, 'https://ror.org/01qegt208', 'en', 1, 'https://ror.org/01qegt208 Armenian Genocide Museum-Institute Foundation'),
(71451, 'https://ror.org/01qgv9s91', 'no_lang_code', 1, 'https://ror.org/01qgv9s91 ATSP Innovations (United States)'),
(71452, 'https://ror.org/01qmska07', 'no_lang_code', 1, 'https://ror.org/01qmska07 Kabar'),
(71453, 'https://ror.org/01qnwjk32', 'en', 1, 'https://ror.org/01qnwjk32 National Women''s Health Network'),
(71454, 'https://ror.org/01qqqf422', 'en', 1, 'https://ror.org/01qqqf422 British Arts Festivals Association'),
(71455, 'https://ror.org/01qqvwg30', 'en', 1, 'https://ror.org/01qqvwg30 Sampad'),
(71456, 'https://ror.org/01qsj4k11', 'no_lang_code', 1, 'https://ror.org/01qsj4k11 Energesis Pharmaceuticals (United States)'),
(71457, 'https://ror.org/01qte9y06', 'no_lang_code', 1, 'https://ror.org/01qte9y06 Proboscis'),
(71458, 'https://ror.org/01qvanv50', 'en', 1, 'https://ror.org/01qvanv50 AshƩ'),
(71459, 'https://ror.org/01qvbxx84', 'no_lang_code', 1, 'https://ror.org/01qvbxx84 Medical Moulded Products (United Kingdom)'),
(71460, 'https://ror.org/01qvnjw08', 'no_lang_code', 1, 'https://ror.org/01qvnjw08 Flow Neuroscience (Sweden)'),
(71461, 'https://ror.org/01qxe7a32', 'en', 1, 'https://ror.org/01qxe7a32 The Investment Association'),
(71462, 'https://ror.org/01qxrj975', 'no_lang_code', 1, 'https://ror.org/01qxrj975 Ellison Laboratories (United States)'),
(71463, 'https://ror.org/01qxx5k95', 'no_lang_code', 1, 'https://ror.org/01qxx5k95 Botswana Open University'),
(71464, 'https://ror.org/01qyb4t36', 'en', 1, 'https://ror.org/01qyb4t36 Interaction Institute for Social Change'),
(71465, 'https://ror.org/01qynw361', 'ms', 1, 'https://ror.org/01qynw361 Hospital Raja Perempuan Zainab II'),
(71466, 'https://ror.org/01r0enz48', 'no_lang_code', 1, 'https://ror.org/01r0enz48 Oxford MicroMedical (United Kingdom)'),
(71467, 'https://ror.org/01r3ct535', 'no_lang_code', 1, 'https://ror.org/01r3ct535 Kheiron Medical Technologies (United Kingdom)'),
(71468, 'https://ror.org/01r5zkn17', 'en', 1, 'https://ror.org/01r5zkn17 Angmering Community Centre'),
(71469, 'https://ror.org/01r7ewj84', 'en', 1, 'https://ror.org/01r7ewj84 Nerve Centre'),
(71470, 'https://ror.org/01r7xf702', 'no_lang_code', 1, 'https://ror.org/01r7xf702 Fedor-Bis (Poland)'),
(71471, 'https://ror.org/01rbf3264', 'az', 1, 'https://ror.org/01rbf3264 Azərbaycan Milli Elmlər Akademiyası Abbasqulu Ağa Bakıxanov Adina Tarix Institutu'),
(71472, 'https://ror.org/01rbmj730', 'en', 1, 'https://ror.org/01rbmj730 York Castle Museum'),
(71473, 'https://ror.org/01rfnpk52', 'no_lang_code', 1, 'https://ror.org/01rfnpk52 bioMƩrieux (Brazil)'),
(71474, 'https://ror.org/01rjqh621', 'en', 1, 'https://ror.org/01rjqh621 Ministry of Social Justice and Empowerment'),
(71475, 'https://ror.org/01rkbf580', 'en', 1, 'https://ror.org/01rkbf580 Economic and Social Research Foundation'),
(71476, 'https://ror.org/01rmwzy37', 'no_lang_code', 1, 'https://ror.org/01rmwzy37 Digital First Media (United States)'),
(71477, 'https://ror.org/01rng5a32', 'en', 1, 'https://ror.org/01rng5a32 New City College'),
(71478, 'https://ror.org/01rt6qg79', 'no_lang_code', 1, 'https://ror.org/01rt6qg79 Suzano (Brazil)'),
(71479, 'https://ror.org/01rvq6e84', 'no_lang_code', 1, 'https://ror.org/01rvq6e84 The McCrone Group (United States)'),
(71480, 'https://ror.org/01rwgmd28', 'no_lang_code', 1, 'https://ror.org/01rwgmd28 Sempre (Poland)'),
(71481, 'https://ror.org/01rwgzt97', 'no_lang_code', 1, 'https://ror.org/01rwgzt97 CMA Technologies (United States)'),
(71482, 'https://ror.org/01rxfp867', 'no_lang_code', 1, 'https://ror.org/01rxfp867 Spirit AeroSystems (United Kingdom)'),
(71483, 'https://ror.org/01rys6g13', 'no_lang_code', 1, 'https://ror.org/01rys6g13 Advent Life Sciences (United Kingdom)'),
(71484, 'https://ror.org/01rz1yn84', 'en', 1, 'https://ror.org/01rz1yn84 Law Centres Network'),
(71485, 'https://ror.org/01s0fdm87', 'de', 1, 'https://ror.org/01s0fdm87 Malteser Waldkrankenhaus Erlangen'),
(71486, 'https://ror.org/01s1h9f22', 'no_lang_code', 1, 'https://ror.org/01s1h9f22 SoletAer (Sweden)'),
(71487, 'https://ror.org/01s1jrd75', 'sv', 1, 'https://ror.org/01s1jrd75 Bergslagssjukhuset'),
(71488, 'https://ror.org/01s2wtj48', 'pt', 1, 'https://ror.org/01s2wtj48 Instituto Sou da Paz'),
(71489, 'https://ror.org/01s3pkg06', 'en', 1, 'https://ror.org/01s3pkg06 Diplomatic Academy of Vienna Diplomatische Akademie Wien'),
(71490, 'https://ror.org/01s6jvm36', 'en', 1, 'https://ror.org/01s6jvm36 ExpandED Schools'),
(71491, 'https://ror.org/01s78ww38', 'en', 1, 'https://ror.org/01s78ww38 Border Network for Human Rights'),
(71492, 'https://ror.org/01s897575', 'en', 1, 'https://ror.org/01s897575 Leadership Conference Education Fund'),
(71493, 'https://ror.org/01s8e3v68', 'en', 1, 'https://ror.org/01s8e3v68 American Society for Yad Vashem'),
(71494, 'https://ror.org/01s8h3924', 'no_lang_code', 1, 'https://ror.org/01s8h3924 Luxbright (Sweden)'),
(71495, 'https://ror.org/01sas2f78', 'es', 1, 'https://ror.org/01sas2f78 Instituto de Ciencias Astronómicas, de la Tierra y del Espacio'),
(71496, 'https://ror.org/01scpqc23', 'en', 1, 'https://ror.org/01scpqc23 Mapungubwe Institute for Strategic Reflection'),
(71497, 'https://ror.org/01sg0nk94', 'en', 1, 'https://ror.org/01sg0nk94 CR Rao Advanced Institute of Mathematics, Statistics and Computer Science'),
(71498, 'https://ror.org/01shrfv13', 'en', 1, 'https://ror.org/01shrfv13 International Association for the History of Religions'),
(71499, 'https://ror.org/01shzby30', 'en', 1, 'https://ror.org/01shzby30 Industry and Parliament Trust'),
(71500, 'https://ror.org/01sjyas66', 'no_lang_code', 1, 'https://ror.org/01sjyas66 Orphelia Pharma (France)'),
(71501, 'https://ror.org/01sm4nm47', 'en', 1, 'https://ror.org/01sm4nm47 Boromarajonani College of Nursing ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø¢ąø²ąøšąø²ąø„ąøšąø£ąø”ąø£ąø²ąøŠąøŠąø™ąø™ąøµ ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(71502, 'https://ror.org/01smzda60', 'en', 1, 'https://ror.org/01smzda60 Global Canopy'),
(71503, 'https://ror.org/01snh9k23', 'en', 1, 'https://ror.org/01snh9k23 NeighborWorks America'),
(71504, 'https://ror.org/01ssng043', 'en', 1, 'https://ror.org/01ssng043 Gurkha Welfare Trust'),
(71505, 'https://ror.org/01st8zv03', 'es', 1, 'https://ror.org/01st8zv03 ConCuerpos'),
(71506, 'https://ror.org/01svaca56', 'no_lang_code', 1, 'https://ror.org/01svaca56 Songklanagarind Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąø‡ąø‚ąø„ąø²ąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(71507, 'https://ror.org/01sxva348', 'es', 1, 'https://ror.org/01sxva348 Hospital d''Igualada'),
(71508, 'https://ror.org/01sxy8636', 'no_lang_code', 1, 'https://ror.org/01sxy8636 LightPointe (United States)'),
(71509, 'https://ror.org/01sy7jy68', 'nl', 1, 'https://ror.org/01sy7jy68 Stichting Hester'),
(71510, 'https://ror.org/01sz34q98', 'en', 1, 'https://ror.org/01sz34q98 Anciens Combattants Canada Veterans Affairs Canada'),
(71511, 'https://ror.org/01szy6y70', 'no_lang_code', 1, 'https://ror.org/01szy6y70 Aili Innovations (Sweden)'),
(71512, 'https://ror.org/01t03c617', 'en', 1, 'https://ror.org/01t03c617 Newark Trust for Education'),
(71513, 'https://ror.org/01t263c97', 'en', 1, 'https://ror.org/01t263c97 Scottish Public Pensions Agency'),
(71514, 'https://ror.org/01t2seb40', 'en', 1, 'https://ror.org/01t2seb40 National Disability Rights Network'),
(71515, 'https://ror.org/01t3wc318', 'en', 1, 'https://ror.org/01t3wc318 All India Artisans and Craftworkers Welfare Association'),
(71516, 'https://ror.org/01t41r490', 'en', 1, 'https://ror.org/01t41r490 National Hispanic Leadership Agenda'),
(71517, 'https://ror.org/01t4ana66', 'no_lang_code', 1, 'https://ror.org/01t4ana66 Flexsys (United States)'),
(71518, 'https://ror.org/01t4t8r38', 'no_lang_code', 1, 'https://ror.org/01t4t8r38 Gen-9 (United States)'),
(71519, 'https://ror.org/01t5hzs18', 'en', 1, 'https://ror.org/01t5hzs18 Association of Chief Executives of Voluntary Organisations'),
(71520, 'https://ror.org/01t8am602', 'en', 1, 'https://ror.org/01t8am602 Creative & Cultural Skills'),
(71521, 'https://ror.org/01tbsny88', 'no_lang_code', 1, 'https://ror.org/01tbsny88 Advratech (United States)'),
(71522, 'https://ror.org/01tc7df88', 'no_lang_code', 1, 'https://ror.org/01tc7df88 Manufacturing Laboratories (United States)'),
(71523, 'https://ror.org/01tcx0921', 'sv', 1, 'https://ror.org/01tcx0921 LƤnsstyrelsen VƤstra Gƶtalands lƤn'),
(71524, 'https://ror.org/01tftde85', 'cy', 1, 'https://ror.org/01tftde85 Cymdeithas Thomas Pennant'),
(71525, 'https://ror.org/01tgg8632', 'en', 1, 'https://ror.org/01tgg8632 Asian Arts Initiative'),
(71526, 'https://ror.org/01tgsx068', 'no_lang_code', 1, 'https://ror.org/01tgsx068 Microsonic Systems (United States)'),
(71527, 'https://ror.org/01tje5w07', 'no_lang_code', 1, 'https://ror.org/01tje5w07 Hydroacoustics (United States)'),
(71528, 'https://ror.org/01tkrhw05', 'es', 1, 'https://ror.org/01tkrhw05 Hospital ClĆ­nico FUSAT'),
(71529, 'https://ror.org/01tm6bj89', 'en', 1, 'https://ror.org/01tm6bj89 Mazatlan Professional School of Dance'),
(71530, 'https://ror.org/01tmhf305', 'en', 1, 'https://ror.org/01tmhf305 Living Cities'),
(71531, 'https://ror.org/01tmm2z04', 'en', 1, 'https://ror.org/01tmm2z04 National Association of British Market Authorities'),
(71532, 'https://ror.org/01tmmd981', 'en', 1, 'https://ror.org/01tmmd981 Action Health Incorporated'),
(71533, 'https://ror.org/01tmwk758', 'en', 1, 'https://ror.org/01tmwk758 Museum of Contemporary African Diasporan Arts'),
(71534, 'https://ror.org/01tpj7340', 'en', 1, 'https://ror.org/01tpj7340 Institute of Geology, Komi Science Centre Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Коми ŠŠ¦ Š£Ń€Šž Š ŠŠ'),
(71535, 'https://ror.org/01tpz3h22', 'no_lang_code', 1, 'https://ror.org/01tpz3h22 Electric Funstuff (United States)'),
(71536, 'https://ror.org/01tqtaq02', 'no_lang_code', 1, 'https://ror.org/01tqtaq02 Fauji Fertilizer (Pakistan)'),
(71537, 'https://ror.org/01ts47345', 'cy', 1, 'https://ror.org/01ts47345 Comunn Eachdraidh na Pairc'),
(71538, 'https://ror.org/01tw5qz74', 'en', 1, 'https://ror.org/01tw5qz74 Aitchison College Ų§ŪŒŚ†ŪŒŲ³Ł† Ś©Ų§Ł„Ų¬ā€Ž'),
(71539, 'https://ror.org/01twkx136', 'no_lang_code', 1, 'https://ror.org/01twkx136 Ecome (France)'),
(71540, 'https://ror.org/01tx8tm66', 'en', 1, 'https://ror.org/01tx8tm66 New Florida Majority'),
(71541, 'https://ror.org/01txftm96', 'en', 1, 'https://ror.org/01txftm96 Hertford County Hospital'),
(71542, 'https://ror.org/01tyxje26', 'en', 1, 'https://ror.org/01tyxje26 Regional Water Management Authority in Warsaw Regionalny Zarząd Gospodarki Wodnej w Warszawie'),
(71543, 'https://ror.org/01tz3nb36', 'da', 1, 'https://ror.org/01tz3nb36 Museum Salling'),
(71544, 'https://ror.org/01tzf7a21', 'en', 1, 'https://ror.org/01tzf7a21 Public Interest Research and Advocacy Center'),
(71545, 'https://ror.org/01v01s839', 'en', 1, 'https://ror.org/01v01s839 The GoDown Arts Centre'),
(71546, 'https://ror.org/01v49q824', 'en', 1, 'https://ror.org/01v49q824 Tianjin Internal Combustion Engine Research Institute å¤©ę“„å†…ē‡ƒęœŗē ”ē©¶ę‰€'),
(71547, 'https://ror.org/01v4jae87', 'no_lang_code', 1, 'https://ror.org/01v4jae87 BTS Software Solutions (United States)'),
(71548, 'https://ror.org/01v6svm30', 'en', 1, 'https://ror.org/01v6svm30 Neighborhood Funders Group'),
(71549, 'https://ror.org/01v7z1116', 'it', 1, 'https://ror.org/01v7z1116 Istituto storico italiano per il Medio Evo'),
(71550, 'https://ror.org/01v801w64', 'en', 1, 'https://ror.org/01v801w64 Observatories and Research Facilities for European Seismology'),
(71551, 'https://ror.org/01v9w5g84', 'en', 1, 'https://ror.org/01v9w5g84 Seattle Film Institute'),
(71552, 'https://ror.org/01vbszv89', 'en', 1, 'https://ror.org/01vbszv89 The Institute for Southern Studies'),
(71553, 'https://ror.org/01vexk157', 'no_lang_code', 1, 'https://ror.org/01vexk157 Centralny Ośrodek Badawczo Rozwojowy Aparatury Badawczej i Dydaktycznej (Poland)'),
(71554, 'https://ror.org/01vf6n447', 'en', 1, 'https://ror.org/01vf6n447 Midlands Partnership NHS Foundation Trust'),
(71555, 'https://ror.org/01vj91x16', 'no_lang_code', 1, 'https://ror.org/01vj91x16 Defense Engineering Corporation (United States)'),
(71556, 'https://ror.org/01vjge728', 'no_lang_code', 1, 'https://ror.org/01vjge728 Enika (Poland)'),
(71557, 'https://ror.org/01vpeym60', 'no_lang_code', 1, 'https://ror.org/01vpeym60 Apple (United Kingdom)'),
(71558, 'https://ror.org/01vph1q21', 'no_lang_code', 1, 'https://ror.org/01vph1q21 Eltraf (Poland)'),
(71559, 'https://ror.org/01vqq1j88', 'en', 1, 'https://ror.org/01vqq1j88 Community Voices Heard'),
(71560, 'https://ror.org/01vqq8440', 'no_lang_code', 1, 'https://ror.org/01vqq8440 ERA Software Systems (United States)'),
(71561, 'https://ror.org/01vr3ck92', 'en', 1, 'https://ror.org/01vr3ck92 Matheny'),
(71562, 'https://ror.org/01vr3s065', 'en', 1, 'https://ror.org/01vr3s065 West Dunbartonshire Council'),
(71563, 'https://ror.org/01vspjx51', 'tl', 1, 'https://ror.org/01vspjx51 De La Salle Lipa'),
(71564, 'https://ror.org/01vxe0k23', 'en', 1, 'https://ror.org/01vxe0k23 Wales Co-operative Centre'),
(71565, 'https://ror.org/01w3qd511', 'en', 1, 'https://ror.org/01w3qd511 NEO Philanthropy'),
(71566, 'https://ror.org/01w3syr35', 'en', 1, 'https://ror.org/01w3syr35 Iseal Alliance'),
(71567, 'https://ror.org/01w3yjx71', 'en', 1, 'https://ror.org/01w3yjx71 Rome International Center for Materials Science'),
(71568, 'https://ror.org/01w56ba43', 'en', 1, 'https://ror.org/01w56ba43 Council on Energy, Environment and Water'),
(71569, 'https://ror.org/01w74v812', 'en', 1, 'https://ror.org/01w74v812 Environmental Council of the States'),
(71570, 'https://ror.org/01w7zp604', 'en', 1, 'https://ror.org/01w7zp604 Azerbaijan State Agricultural University Azərbaycan Dƶvlət Aqrar Universiteti'),
(71571, 'https://ror.org/01w90vg65', 'no_lang_code', 1, 'https://ror.org/01w90vg65 Sarissa Biomedical (United Kingdom)'),
(71572, 'https://ror.org/01w975c85', 'en', 1, 'https://ror.org/01w975c85 Brighton Peace and Environment Centre'),
(71573, 'https://ror.org/01wa67h94', 'en', 1, 'https://ror.org/01wa67h94 Metropolitan Arts Centre'),
(71574, 'https://ror.org/01wag9e37', 'en', 1, 'https://ror.org/01wag9e37 Westford Academy'),
(71575, 'https://ror.org/01wb8ph33', 'en', 1, 'https://ror.org/01wb8ph33 Center for Social Sciences įƒ”įƒįƒŖįƒ˜įƒįƒšįƒ£įƒ  įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒįƒ—įƒ įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜'),
(71576, 'https://ror.org/01wbay932', 'en', 1, 'https://ror.org/01wbay932 SOVA Center for Information and Analysis Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Š¾-аналитического центра Дова'),
(71577, 'https://ror.org/01wey0b22', 'en', 1, 'https://ror.org/01wey0b22 West Cumbria Rivers Trust'),
(71578, 'https://ror.org/01wfbns29', 'pl', 1, 'https://ror.org/01wfbns29 Powszechna Kasa Oszczędności Bank Polski Spółka Akcyjna'),
(71579, 'https://ror.org/01wfg7444', 'no_lang_code', 1, 'https://ror.org/01wfg7444 Grid Logic (United States)'),
(71580, 'https://ror.org/01wfksv89', 'en', 1, 'https://ror.org/01wfksv89 Centre on Dynamics of Ethnicity'),
(71581, 'https://ror.org/01wg0wd65', 'en', 1, 'https://ror.org/01wg0wd65 The Center for Arts Education'),
(71582, 'https://ror.org/01whfyx68', 'no_lang_code', 1, 'https://ror.org/01whfyx68 Codex Biosolutions (United States)'),
(71583, 'https://ror.org/01whqqg65', 'en', 1, 'https://ror.org/01whqqg65 Community Development Advocates of Detroit'),
(71584, 'https://ror.org/01wm51k08', 'es', 1, 'https://ror.org/01wm51k08 Consejo Estatal Para la Cultura y las Artes de Hidalgo'),
(71585, 'https://ror.org/01wn6mq04', 'en', 1, 'https://ror.org/01wn6mq04 Museum of London'),
(71586, 'https://ror.org/01wt3hp81', 'en', 1, 'https://ror.org/01wt3hp81 21st Century Education Research Institute 21世纪教育研究院'),
(71587, 'https://ror.org/01wtyr048', 'no_lang_code', 1, 'https://ror.org/01wtyr048 Auger Communications (United States)'),
(71588, 'https://ror.org/01wvejv85', 'de', 1, 'https://ror.org/01wvejv85 Kliniken Maria Hilf'),
(71589, 'https://ror.org/01wvgx920', 'no_lang_code', 1, 'https://ror.org/01wvgx920 Mavenoid (Sweden)'),
(71590, 'https://ror.org/01wwsba50', 'de', 1, 'https://ror.org/01wwsba50 Zentrum für Rhinologie und Allergologie'),
(71591, 'https://ror.org/01wy0hc37', 'fr', 1, 'https://ror.org/01wy0hc37 Alistore'),
(71592, 'https://ror.org/01wy67352', 'en', 1, 'https://ror.org/01wy67352 CittĆ  di Castello Hospital'),
(71593, 'https://ror.org/01wz1pj13', 'no_lang_code', 1, 'https://ror.org/01wz1pj13 Zaslaw (Poland)'),
(71594, 'https://ror.org/01wze2x85', 'en', 1, 'https://ror.org/01wze2x85 Watsonville Community Hospital'),
(71595, 'https://ror.org/01x1wtd34', 'en', 1, 'https://ror.org/01x1wtd34 China Port Museum äø­å›½ęøÆå£åšē‰©é¦†'),
(71596, 'https://ror.org/01x3ftb23', 'en', 1, 'https://ror.org/01x3ftb23 Biology of Infection DƩpartement Biologie Cellulaire et Infection'),
(71597, 'https://ror.org/01x41eb05', 'en', 1, 'https://ror.org/01x41eb05 University of Neyshabur دانؓگاه Ł†ŪŒŲ“Ų§ŲØŁˆŲ±'),
(71598, 'https://ror.org/01x48j266', 'en', 1, 'https://ror.org/01x48j266 Hainan Modern Women and Children''s Hospital ęµ·å—ēŽ°ä»£å¦‡å„³å„æē«„åŒ»é™¢'),
(71599, 'https://ror.org/01x4yvt28', 'pt', 1, 'https://ror.org/01x4yvt28 Fundação Raquel e Martin Sain'),
(71600, 'https://ror.org/01x5kbv02', 'hu', 1, 'https://ror.org/01x5kbv02 Budapesti Fazekas MihÔly Gyakorló ÁltalÔnos Iskola és GimnÔzium'),
(71601, 'https://ror.org/01x81ey67', 'es', 1, 'https://ror.org/01x81ey67 Instituto OceanogrƔfico de la Armada del Ecuador'),
(71602, 'https://ror.org/01x9n7m08', 'en', 1, 'https://ror.org/01x9n7m08 Govanhill Housing Association'),
(71603, 'https://ror.org/01x9xr535', 'en', 1, 'https://ror.org/01x9xr535 International School of Dakar'),
(71604, 'https://ror.org/01xaac745', 'en', 1, 'https://ror.org/01xaac745 Chai Found Music Workshop'),
(71605, 'https://ror.org/01xdqzr09', 'en', 1, 'https://ror.org/01xdqzr09 The Geffrye Museum of the Home'),
(71606, 'https://ror.org/01xehft43', 'en', 1, 'https://ror.org/01xehft43 Delaware Youth Center'),
(71607, 'https://ror.org/01xfdgh94', 'no_lang_code', 1, 'https://ror.org/01xfdgh94 Motivational Educational Entertainment Productions (United States)'),
(71608, 'https://ror.org/01xfv7487', 'no_lang_code', 1, 'https://ror.org/01xfv7487 Electric Ant Lab (Netherlands)'),
(71609, 'https://ror.org/01xgj3b22', 'en', 1, 'https://ror.org/01xgj3b22 Northern Ireland Office Oifig Thuaisceart Ɖireann'),
(71610, 'https://ror.org/01xhhwe60', 'en', 1, 'https://ror.org/01xhhwe60 Bundesministerium der Justiz und für Verbraucherschutz Federal Ministry of Justice and Consumer Protection'),
(71611, 'https://ror.org/01xj9hs08', 'id', 1, 'https://ror.org/01xj9hs08 HuMA, Perkumpulan HuMa Indonesia'),
(71612, 'https://ror.org/01xkrj909', 'no_lang_code', 1, 'https://ror.org/01xkrj909 L-Nutra (United States)'),
(71613, 'https://ror.org/01xnh6j48', 'en', 1, 'https://ror.org/01xnh6j48 United Learning'),
(71614, 'https://ror.org/01xpndd58', 'en', 1, 'https://ror.org/01xpndd58 GeoEnergy Research Centre'),
(71615, 'https://ror.org/01xpreq28', 'fr', 1, 'https://ror.org/01xpreq28 Laboratoire ArchƩomatƩriaux et PrƩvision de l''AltƩration'),
(71616, 'https://ror.org/01xtb7181', 'en', 1, 'https://ror.org/01xtb7181 Lviv State University of Internal Affairs Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(71617, 'https://ror.org/01xth0e33', 'en', 1, 'https://ror.org/01xth0e33 Asian Women Lone Parent Association'),
(71618, 'https://ror.org/01xvefs70', 'en', 1, 'https://ror.org/01xvefs70 Ministry of Health and Sports'),
(71619, 'https://ror.org/01xwy3t39', 'no_lang_code', 1, 'https://ror.org/01xwy3t39 Northvolt (Sweden)'),
(71620, 'https://ror.org/01xy18563', 'no_lang_code', 1, 'https://ror.org/01xy18563 Cardax (United States)'),
(71621, 'https://ror.org/01xz13x40', 'en', 1, 'https://ror.org/01xz13x40 New Walk Museum and Art Gallery'),
(71622, 'https://ror.org/01xzfht26', 'en', 1, 'https://ror.org/01xzfht26 Guide Dogs'),
(71623, 'https://ror.org/01xzsbn64', 'en', 1, 'https://ror.org/01xzsbn64 Dutch Foundation for Literature Nederlands Letterenfonds'),
(71624, 'https://ror.org/01y36md93', 'de', 1, 'https://ror.org/01y36md93 Christoph-Dornier-Stiftung für Klinische Psychologie'),
(71625, 'https://ror.org/01y3m2562', 'en', 1, 'https://ror.org/01y3m2562 Tyne & Wear Building Preservation Trust'),
(71626, 'https://ror.org/01y5haq28', 'en', 1, 'https://ror.org/01y5haq28 Intercultural Institute Timisoara'),
(71627, 'https://ror.org/01y6sx232', 'sr', 1, 'https://ror.org/01y6sx232 Institut za savremenu istoriju'),
(71628, 'https://ror.org/01y9tmc90', 'no_lang_code', 1, 'https://ror.org/01y9tmc90 DecImmune Therapeutics (United States)'),
(71629, 'https://ror.org/01ycfmb97', 'en', 1, 'https://ror.org/01ycfmb97 Foundation for Water Research'),
(71630, 'https://ror.org/01ye8de62', 'en', 1, 'https://ror.org/01ye8de62 Athens Clarke County Police Department'),
(71631, 'https://ror.org/01yeg0z60', 'no_lang_code', 1, 'https://ror.org/01yeg0z60 MDA Engineering (United States)'),
(71632, 'https://ror.org/01yfdk227', 'en', 1, 'https://ror.org/01yfdk227 Wigston College'),
(71633, 'https://ror.org/01yjtde78', 'en', 1, 'https://ror.org/01yjtde78 Historický Ústav Slovenskej Akadémie Vied Institute of History of the Slovak Academy of Sciences'),
(71634, 'https://ror.org/01ynbhc61', 'no_lang_code', 1, 'https://ror.org/01ynbhc61 SageTech Medical Equipment (United Kingdom)'),
(71635, 'https://ror.org/01yq1rp20', 'en', 1, 'https://ror.org/01yq1rp20 Comann Eachdraidh Bharabhais Agus Bhrù'),
(71636, 'https://ror.org/01yrdw043', 'en', 1, 'https://ror.org/01yrdw043 Huntington''s Disease Association'),
(71637, 'https://ror.org/01yt2xt13', 'en', 1, 'https://ror.org/01yt2xt13 Youth Junction'),
(71638, 'https://ror.org/01yth3h09', 'en', 1, 'https://ror.org/01yth3h09 Vietnam National Institute of Culture and Arts Studies Viện Văn hóa Nghệ thuįŗ­t quốc gia Việt Nam'),
(71639, 'https://ror.org/01ywq4g22', 'no_lang_code', 1, 'https://ror.org/01ywq4g22 CytoLumina Technologies (United States)'),
(71640, 'https://ror.org/01yymmk41', 'no_lang_code', 1, 'https://ror.org/01yymmk41 Maximus (United States)'),
(71641, 'https://ror.org/01z1azz52', 'en', 1, 'https://ror.org/01z1azz52 AIR'),
(71642, 'https://ror.org/01z28z523', 'en', 1, 'https://ror.org/01z28z523 Trinity House Community Resource Centre'),
(71643, 'https://ror.org/01z2dq675', 'no_lang_code', 1, 'https://ror.org/01z2dq675 Chhandam School of Kathak'),
(71644, 'https://ror.org/01z2j4m77', 'no_lang_code', 1, 'https://ror.org/01z2j4m77 MC Power (United States)'),
(71645, 'https://ror.org/01z2yst76', 'en', 1, 'https://ror.org/01z2yst76 Alaska Department of Public Safety'),
(71646, 'https://ror.org/01z48vg94', 'en', 1, 'https://ror.org/01z48vg94 Central Adoption Resource Authority ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¦ą¤¤ą„ą¤¤ą¤• ą¤—ą„ą¤°ą¤¹ą¤£ संसाधन ą¤Ŗą„ą¤°ą¤¾ą¤§ą¤æą¤•ą¤°ą¤£'),
(71647, 'https://ror.org/01z654s56', 'en', 1, 'https://ror.org/01z654s56 Kharadar General Hospital کھارادر جنرل ہسپتال'),
(71648, 'https://ror.org/01z6gyk64', 'no_lang_code', 1, 'https://ror.org/01z6gyk64 Flight Works (United States)'),
(71649, 'https://ror.org/01z6qfp70', 'no_lang_code', 1, 'https://ror.org/01z6qfp70 Neural Analytics (United States)'),
(71650, 'https://ror.org/01z6vsq11', 'en', 1, 'https://ror.org/01z6vsq11 Heritage Medical Research Clinic'),
(71651, 'https://ror.org/01z8avt53', 'no_lang_code', 1, 'https://ror.org/01z8avt53 Fibralign (United States)'),
(71652, 'https://ror.org/01zbsa271', 'en', 1, 'https://ror.org/01zbsa271 UK Centre for Tobacco & Alcohol Studies'),
(71653, 'https://ror.org/01zd2ew48', 'en', 1, 'https://ror.org/01zd2ew48 Hlanganisa Institute for Development Southern Africa'),
(71654, 'https://ror.org/01zdwy980', 'en', 1, 'https://ror.org/01zdwy980 Goldsmiths Community Centre'),
(71655, 'https://ror.org/01zepqe17', 'en', 1, 'https://ror.org/01zepqe17 The Jerusalem Academy of Music and Dance האקדמיה למוהיקה ולמחול ×‘×™×Ø×•×©×œ×™×'),
(71656, 'https://ror.org/01zfe1g78', 'en', 1, 'https://ror.org/01zfe1g78 The Interuniversity Institute for Research and Development'),
(71657, 'https://ror.org/01zg6vj90', 'en', 1, 'https://ror.org/01zg6vj90 Tanzania Meteorological Agency'),
(71658, 'https://ror.org/01zgjgk72', 'en', 1, 'https://ror.org/01zgjgk72 Bexhill Museum'),
(71659, 'https://ror.org/01zhys576', 'en', 1, 'https://ror.org/01zhys576 Institute of Practitioners in Advertising'),
(71660, 'https://ror.org/01zjqjw24', 'en', 1, 'https://ror.org/01zjqjw24 Buckinghamshire Military Museum Trust'),
(71661, 'https://ror.org/01zpqtc05', 'en', 1, 'https://ror.org/01zpqtc05 Portsmouth City Council'),
(71662, 'https://ror.org/01zpte707', 'en', 1, 'https://ror.org/01zpte707 Infrastructure Transitions Research Consortium'),
(71663, 'https://ror.org/01zs7ak06', 'pt', 1, 'https://ror.org/01zs7ak06 GeledƩs Instituto da Mulher Negra'),
(71664, 'https://ror.org/01zsng323', 'en', 1, 'https://ror.org/01zsng323 European Network of Guardianship Institutions');
INSERT INTO `rors` VALUES
(71665, 'https://ror.org/01zstqa72', 'no_lang_code', 1, 'https://ror.org/01zstqa72 Kalyra Pharmaceuticals (United States)'),
(71666, 'https://ror.org/01ztenz65', 'fr', 1, 'https://ror.org/01ztenz65 Centre Hospitalier de Mouscron'),
(71667, 'https://ror.org/01ztwdy23', 'no_lang_code', 1, 'https://ror.org/01ztwdy23 CI&T (Brasil)'),
(71668, 'https://ror.org/01zvnqb17', 'no_lang_code', 1, 'https://ror.org/01zvnqb17 Organic Electronics Saxony (Germany)'),
(71669, 'https://ror.org/01zxrsb29', 'en', 1, 'https://ror.org/01zxrsb29 Virginia Center for Policing Innovation'),
(71670, 'https://ror.org/0201v2f15', 'en', 1, 'https://ror.org/0201v2f15 Cromarty Courthouse Museum'),
(71671, 'https://ror.org/020ap9s27', 'en', 1, 'https://ror.org/020ap9s27 United Kingdom Petroleum Industry Association'),
(71672, 'https://ror.org/020bgk265', 'no_lang_code', 1, 'https://ror.org/020bgk265 D-2 Incorporated (United States)'),
(71673, 'https://ror.org/020emvx88', 'no_lang_code', 1, 'https://ror.org/020emvx88 EP Analytics (United States)'),
(71674, 'https://ror.org/020esa803', 'es', 1, 'https://ror.org/020esa803 Club Matador'),
(71675, 'https://ror.org/020esap58', 'no_lang_code', 1, 'https://ror.org/020esap58 Valve (United States)'),
(71676, 'https://ror.org/020fcm936', 'no_lang_code', 1, 'https://ror.org/020fcm936 MixZon (United States)'),
(71677, 'https://ror.org/020fdd961', 'en', 1, 'https://ror.org/020fdd961 Nautilus Institute'),
(71678, 'https://ror.org/020gf2z05', 'en', 1, 'https://ror.org/020gf2z05 King County Council'),
(71679, 'https://ror.org/020jcq616', 'en', 1, 'https://ror.org/020jcq616 Institute of Social Studies Trust'),
(71680, 'https://ror.org/020jzvw77', 'no_lang_code', 1, 'https://ror.org/020jzvw77 NDE Technologies (United States)'),
(71681, 'https://ror.org/020k77x19', 'no_lang_code', 1, 'https://ror.org/020k77x19 Callen Lenz (United Kingdom)'),
(71682, 'https://ror.org/020nbej04', 'fr', 1, 'https://ror.org/020nbej04 Laboratoire National de RƩfƩrence'),
(71683, 'https://ror.org/020p1sa64', 'en', 1, 'https://ror.org/020p1sa64 L.V. Prasad Film & TV Academy'),
(71684, 'https://ror.org/020pnfy52', 'en', 1, 'https://ror.org/020pnfy52 University Alliance'),
(71685, 'https://ror.org/020q2cx80', 'en', 1, 'https://ror.org/020q2cx80 Centre for Social Sciences and Humanities'),
(71686, 'https://ror.org/020qa8h77', 'en', 1, 'https://ror.org/020qa8h77 Coalition Against Trafficking Women'),
(71687, 'https://ror.org/020wewy68', 'no_lang_code', 1, 'https://ror.org/020wewy68 Wind Power Engineering (Japan)'),
(71688, 'https://ror.org/020x1hr04', 'en', 1, 'https://ror.org/020x1hr04 Community Health And Information Network'),
(71689, 'https://ror.org/020x5hh56', 'en', 1, 'https://ror.org/020x5hh56 Council of Urban Professionals'),
(71690, 'https://ror.org/020yenx75', 'en', 1, 'https://ror.org/020yenx75 Museums Sheffield'),
(71691, 'https://ror.org/020yyec49', 'no_lang_code', 1, 'https://ror.org/020yyec49 Bally Ribbon Mills (United States)'),
(71692, 'https://ror.org/020znap72', 'ro', 1, 'https://ror.org/020znap72 Asociația RomĆ¢nă de Artă Contemporană'),
(71693, 'https://ror.org/020zz6y73', 'en', 1, 'https://ror.org/020zz6y73 Smart Water Networks Forum'),
(71694, 'https://ror.org/02169sk90', 'en', 1, 'https://ror.org/02169sk90 National Drug Addiction Center'),
(71695, 'https://ror.org/02191ha15', 'no_lang_code', 1, 'https://ror.org/02191ha15 Sysnav (France)'),
(71696, 'https://ror.org/0219smt59', 'en', 1, 'https://ror.org/0219smt59 The Justice Research Center'),
(71697, 'https://ror.org/021c2nt68', 'no_lang_code', 1, 'https://ror.org/021c2nt68 Emmune (United States)'),
(71698, 'https://ror.org/021cmds57', 'no_lang_code', 1, 'https://ror.org/021cmds57 Life Services (United States)'),
(71699, 'https://ror.org/021d2w304', 'no_lang_code', 1, 'https://ror.org/021d2w304 Vivo Smart Medical Devices (United Kingdom)'),
(71700, 'https://ror.org/021e6jr16', 'sv', 1, 'https://ror.org/021e6jr16 Vetenskap I Skolan'),
(71701, 'https://ror.org/021ebxe23', 'no_lang_code', 1, 'https://ror.org/021ebxe23 Mi-Tech (United States)'),
(71702, 'https://ror.org/021eps607', 'de', 1, 'https://ror.org/021eps607 Hans-Bredow-Institut, Hans-Bredow-Institute'),
(71703, 'https://ror.org/021ez5n36', 'en', 1, 'https://ror.org/021ez5n36 College of Science, Technology and Applied Arts of Trinidad and Tobago'),
(71704, 'https://ror.org/021fwfm07', 'en', 1, 'https://ror.org/021fwfm07 National Survivor User Network'),
(71705, 'https://ror.org/021g78m61', 'en', 1, 'https://ror.org/021g78m61 Social Progress Imperative'),
(71706, 'https://ror.org/021j6vs44', 'en', 1, 'https://ror.org/021j6vs44 Iceland Symphony Orchestra SinfónĆ­uhljómsveit ƍslands'),
(71707, 'https://ror.org/021k8e418', 'no_lang_code', 1, 'https://ror.org/021k8e418 Calibrant Digital (United States)'),
(71708, 'https://ror.org/021kyym11', 'en', 1, 'https://ror.org/021kyym11 Bradford Museums and Galleries'),
(71709, 'https://ror.org/021p0r140', 'no_lang_code', 1, 'https://ror.org/021p0r140 CLEARink (Canada)'),
(71710, 'https://ror.org/021rm5384', 'no_lang_code', 1, 'https://ror.org/021rm5384 eMagin (United States)'),
(71711, 'https://ror.org/021rrz441', 'en', 1, 'https://ror.org/021rrz441 BMCC Tribeca Performing Arts Center'),
(71712, 'https://ror.org/021trq250', 'no_lang_code', 1, 'https://ror.org/021trq250 Ceebus Technologies (United States)'),
(71713, 'https://ror.org/021v42516', 'en', 1, 'https://ror.org/021v42516 Glastonbury Abbey'),
(71714, 'https://ror.org/021w6ye38', 'en', 1, 'https://ror.org/021w6ye38 Blueberry Academy'),
(71715, 'https://ror.org/021wayr39', 'en', 1, 'https://ror.org/021wayr39 Big Sky Institute'),
(71716, 'https://ror.org/021wky884', 'de', 1, 'https://ror.org/021wky884 St. Vincentius-Kliniken'),
(71717, 'https://ror.org/021xnk312', 'sq', 1, 'https://ror.org/021xnk312 Stacion'),
(71718, 'https://ror.org/021yz3w04', 'en', 1, 'https://ror.org/021yz3w04 Los Angeles Area Chamber of Commerce'),
(71719, 'https://ror.org/0220er837', 'no_lang_code', 1, 'https://ror.org/0220er837 Intraband (United States)'),
(71720, 'https://ror.org/0220t3t55', 'no_lang_code', 1, 'https://ror.org/0220t3t55 Nikkei Business Publications (Japan) ę Ŗå¼ä¼šē¤¾ę—„ēµŒ'),
(71721, 'https://ror.org/0221agg28', 'en', 1, 'https://ror.org/0221agg28 Construction Technologies Institute Istituto per le Tecnologie della Costruzione'),
(71722, 'https://ror.org/0221z8061', 'en', 1, 'https://ror.org/0221z8061 Settlement Centre Waikato'),
(71723, 'https://ror.org/0222kcs48', 'no_lang_code', 1, 'https://ror.org/0222kcs48 Applied Sonics (United States)'),
(71724, 'https://ror.org/0223xwb92', 'en', 1, 'https://ror.org/0223xwb92 The Pevensey Court House Museum and Gaol'),
(71725, 'https://ror.org/0225s8473', 'no_lang_code', 1, 'https://ror.org/0225s8473 LaserGuide (United States)'),
(71726, 'https://ror.org/02297eg71', 'en', 1, 'https://ror.org/02297eg71 Democracy Development Centre Розвиток Гемократії'),
(71727, 'https://ror.org/0229g8886', 'en', 1, 'https://ror.org/0229g8886 Warsaw School of Computer Science Warszawska Wyższa Szkoła Informatyki'),
(71728, 'https://ror.org/0229h7141', 'no_lang_code', 1, 'https://ror.org/0229h7141 Centre Culturel Bactria'),
(71729, 'https://ror.org/0229rjp19', 'en', 1, 'https://ror.org/0229rjp19 Health Action International'),
(71730, 'https://ror.org/0229sfh63', 'en', 1, 'https://ror.org/0229sfh63 Sri Lanka Foundation'),
(71731, 'https://ror.org/022a78s92', 'en', 1, 'https://ror.org/022a78s92 Nafici Environmental Research'),
(71732, 'https://ror.org/022aez802', 'en', 1, 'https://ror.org/022aez802 Shenyang First People''s Hospital ę²ˆé˜³åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(71733, 'https://ror.org/022axmn44', 'en', 1, 'https://ror.org/022axmn44 Detroit River International Wildlife Refuge'),
(71734, 'https://ror.org/022cj9d07', 'en', 1, 'https://ror.org/022cj9d07 Ladies College'),
(71735, 'https://ror.org/022d66a71', 'pt', 1, 'https://ror.org/022d66a71 Hospital AraĆŗjo Jorge'),
(71736, 'https://ror.org/022d92k39', 'en', 1, 'https://ror.org/022d92k39 SETsquared Partnership'),
(71737, 'https://ror.org/022fw8624', 'en', 1, 'https://ror.org/022fw8624 Oil & Gas Innovation Centre'),
(71738, 'https://ror.org/022gg8876', 'no_lang_code', 1, 'https://ror.org/022gg8876 MIE Medical Research (United Kingdom)'),
(71739, 'https://ror.org/022gx5t47', 'en', 1, 'https://ror.org/022gx5t47 Contemporary Dance Center Центр современного танца'),
(71740, 'https://ror.org/022gyr952', 'en', 1, 'https://ror.org/022gyr952 Article 19'),
(71741, 'https://ror.org/022jej057', 'en', 1, 'https://ror.org/022jej057 Institute of Economic Development'),
(71742, 'https://ror.org/022k78750', 'no_lang_code', 1, 'https://ror.org/022k78750 ECD for the Masses (United States)'),
(71743, 'https://ror.org/022ka4k09', 'es', 1, 'https://ror.org/022ka4k09 Museo De Arte Contemporaneo'),
(71744, 'https://ror.org/022kcpx61', 'en', 1, 'https://ror.org/022kcpx61 The Bewdley School'),
(71745, 'https://ror.org/022ma3798', 'en', 1, 'https://ror.org/022ma3798 World Travel and Tourism Council'),
(71746, 'https://ror.org/022mgyj90', 'no_lang_code', 1, 'https://ror.org/022mgyj90 Kennen Technologies (United States)'),
(71747, 'https://ror.org/022mnpm42', 'en', 1, 'https://ror.org/022mnpm42 Ministry of Natural Resources and Environmental Conservation'),
(71748, 'https://ror.org/022n30916', 'en', 1, 'https://ror.org/022n30916 Economic Policy Research Centre'),
(71749, 'https://ror.org/022nyvr86', 'en', 1, 'https://ror.org/022nyvr86 V.M. Koretsky Institute of State and Law Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гержави і права імені Š’. М. ŠšŠ¾Ń€ŠµŃ†ŃŒŠŗŠ¾Š³Š¾ ŠŠŠ України Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²Š° Šø права имени Š’. М. ŠšŠ¾Ń€ŠµŃ†ŠŗŠ¾Š³Š¾ ŠŠŠ Украины'),
(71750, 'https://ror.org/022pve491', 'no_lang_code', 1, 'https://ror.org/022pve491 Aura Technologies (United States)'),
(71751, 'https://ror.org/022qrts95', 'no_lang_code', 1, 'https://ror.org/022qrts95 Tecomet (United Kingdom)'),
(71752, 'https://ror.org/022rh5p10', 'no_lang_code', 1, 'https://ror.org/022rh5p10 Black Swift Technologies (United States)'),
(71753, 'https://ror.org/022s4gs38', 'en', 1, 'https://ror.org/022s4gs38 Parliamentary Advisory Council for Transport Safety'),
(71754, 'https://ror.org/022wdbc37', 'en', 1, 'https://ror.org/022wdbc37 Uganda Media Women’s Association'),
(71755, 'https://ror.org/022wfhc10', 'en', 1, 'https://ror.org/022wfhc10 Royal Institution of Naval Architects'),
(71756, 'https://ror.org/022wja523', 'en', 1, 'https://ror.org/022wja523 Security Council Report'),
(71757, 'https://ror.org/022xz9e77', 'en', 1, 'https://ror.org/022xz9e77 Bangladesh Bank বাংলাদেশ ą¦¬ą§ą¦Æą¦¾ą¦‚ą¦•'),
(71758, 'https://ror.org/022y13z84', 'en', 1, 'https://ror.org/022y13z84 ZanaAfrica Foundation'),
(71759, 'https://ror.org/022z6jk58', 'en', 1, 'https://ror.org/022z6jk58 MIT Lincoln Laboratory'),
(71760, 'https://ror.org/022z7sg09', 'en', 1, 'https://ror.org/022z7sg09 The Potteries Museum and Art Gallery'),
(71761, 'https://ror.org/0230prd66', 'no_lang_code', 1, 'https://ror.org/0230prd66 Cox & Company (United States)'),
(71762, 'https://ror.org/0235g7a39', 'en', 1, 'https://ror.org/0235g7a39 Framework'),
(71763, 'https://ror.org/0238mgj23', 'es', 1, 'https://ror.org/0238mgj23 Hospital Regional de Antofagasta'),
(71764, 'https://ror.org/023a61k53', 'en', 1, 'https://ror.org/023a61k53 Centre for Excellence for Looked After Children in Scotland'),
(71765, 'https://ror.org/023fje098', 'en', 1, 'https://ror.org/023fje098 Canolfan y Dechnoleg Amgen Centre for Alternative Technology'),
(71766, 'https://ror.org/023fnpq36', 'en', 1, 'https://ror.org/023fnpq36 Gweld Gwyddoniaeth See Science'),
(71767, 'https://ror.org/023gd8d44', 'en', 1, 'https://ror.org/023gd8d44 Perth and Kinross Heritage Trust'),
(71768, 'https://ror.org/023gtz231', 'en', 1, 'https://ror.org/023gtz231 Elderly Accommodation Counsel'),
(71769, 'https://ror.org/023h7p541', 'en', 1, 'https://ror.org/023h7p541 Business Technology Incubator of Technical Faculties Belgrade'),
(71770, 'https://ror.org/023j15q26', 'en', 1, 'https://ror.org/023j15q26 Maine Center for Economic Policy'),
(71771, 'https://ror.org/023m6zy08', 'no_lang_code', 1, 'https://ror.org/023m6zy08 Lokadharmi'),
(71772, 'https://ror.org/023n14c26', 'no_lang_code', 1, 'https://ror.org/023n14c26 Integrity Systems (United States)'),
(71773, 'https://ror.org/023nbxm56', 'en', 1, 'https://ror.org/023nbxm56 Green Liberty Zaļā brīvība'),
(71774, 'https://ror.org/023qjpe11', 'en', 1, 'https://ror.org/023qjpe11 LEAP Africa'),
(71775, 'https://ror.org/02411h917', 'no_lang_code', 1, 'https://ror.org/02411h917 Bauer Associates (United States)'),
(71776, 'https://ror.org/02451fm04', 'en', 1, 'https://ror.org/02451fm04 Kyrgyz State Law Academy ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(71777, 'https://ror.org/0245g4145', 'en', 1, 'https://ror.org/0245g4145 Houston Forensic Science Center'),
(71778, 'https://ror.org/0245zq547', 'en', 1, 'https://ror.org/0245zq547 Programme on Women’s Economic, Social and Cultural Rights'),
(71779, 'https://ror.org/0246dm313', 'en', 1, 'https://ror.org/0246dm313 South Downs National Park Authority'),
(71780, 'https://ror.org/0249a2s92', 'no_lang_code', 1, 'https://ror.org/0249a2s92 Ginger (France) Groupe Ginger'),
(71781, 'https://ror.org/024arph56', 'no_lang_code', 1, 'https://ror.org/024arph56 MorganFranklin (United States)'),
(71782, 'https://ror.org/024bajv16', 'en', 1, 'https://ror.org/024bajv16 The Northwest School'),
(71783, 'https://ror.org/024e7ek05', 'no_lang_code', 1, 'https://ror.org/024e7ek05 Kaleidoscopio'),
(71784, 'https://ror.org/024f22429', 'en', 1, 'https://ror.org/024f22429 Ministry of Justice and Public Security Ministério da Justiça e Segurança Pública'),
(71785, 'https://ror.org/024gr5317', 'no_lang_code', 1, 'https://ror.org/024gr5317 Blueenergy'),
(71786, 'https://ror.org/024h4bk68', 'no_lang_code', 1, 'https://ror.org/024h4bk68 American Xtal Technology (United States)'),
(71787, 'https://ror.org/024hme737', 'no_lang_code', 1, 'https://ror.org/024hme737 Mirage Systems (United States)'),
(71788, 'https://ror.org/024jszt17', 'no_lang_code', 1, 'https://ror.org/024jszt17 Mgenuity (United States)'),
(71789, 'https://ror.org/024m3bm98', 'ro', 1, 'https://ror.org/024m3bm98 Biblioteca Metropolitană București'),
(71790, 'https://ror.org/024m9cy67', 'en', 1, 'https://ror.org/024m9cy67 Funders'' Network for Smart Growth and Livable Communities'),
(71791, 'https://ror.org/024n0w036', 'no_lang_code', 1, 'https://ror.org/024n0w036 Nine Health CIC (United Kingdom)'),
(71792, 'https://ror.org/024ng9141', 'en', 1, 'https://ror.org/024ng9141 Transport Analysis'),
(71793, 'https://ror.org/024p6za61', 'no_lang_code', 1, 'https://ror.org/024p6za61 Solvay (Brazil)'),
(71794, 'https://ror.org/024ps9968', 'no_lang_code', 1, 'https://ror.org/024ps9968 AI Signal Research (United States)'),
(71795, 'https://ror.org/024srtw61', 'pt', 1, 'https://ror.org/024srtw61 Redes da MarƩ'),
(71796, 'https://ror.org/024vwmq15', 'en', 1, 'https://ror.org/024vwmq15 Nonprofit Finance Fund'),
(71797, 'https://ror.org/024w3dd68', 'no_lang_code', 1, 'https://ror.org/024w3dd68 Tetra Pak (Brazil)'),
(71798, 'https://ror.org/024x1z891', 'en', 1, 'https://ror.org/024x1z891 Gloucestershire Wildlife Trust'),
(71799, 'https://ror.org/024z18394', 'es', 1, 'https://ror.org/024z18394 Banco Central del Uruguay Central Bank of Uruguay'),
(71800, 'https://ror.org/0250p1d07', 'no_lang_code', 1, 'https://ror.org/0250p1d07 Phenikaa (Vietnam)'),
(71801, 'https://ror.org/0251n1a38', 'no_lang_code', 1, 'https://ror.org/0251n1a38 Amprion (United States)'),
(71802, 'https://ror.org/025314t43', 'en', 1, 'https://ror.org/025314t43 EngageMedia'),
(71803, 'https://ror.org/02542wh83', 'en', 1, 'https://ror.org/02542wh83 Mull and Iona Community Trust'),
(71804, 'https://ror.org/02547f863', 'no_lang_code', 1, 'https://ror.org/02547f863 TeXtreme (Sweden)'),
(71805, 'https://ror.org/0254e9x24', 'en', 1, 'https://ror.org/0254e9x24 Friends of Cumbria Archives'),
(71806, 'https://ror.org/02557nd11', 'en', 1, 'https://ror.org/02557nd11 Jinan Institute of Quantum Technology ęµŽå—é‡å­ęŠ€ęœÆē ”ē©¶é™¢'),
(71807, 'https://ror.org/0255b1449', 'en', 1, 'https://ror.org/0255b1449 Planet Earth Institute'),
(71808, 'https://ror.org/0256tf124', 'en', 1, 'https://ror.org/0256tf124 Association for the Prevention of Torture'),
(71809, 'https://ror.org/0257m1m09', 'no_lang_code', 1, 'https://ror.org/0257m1m09 Vere Software (United States)'),
(71810, 'https://ror.org/025a6yk46', 'en', 1, 'https://ror.org/025a6yk46 Rhondda Cynon Taff Library Service'),
(71811, 'https://ror.org/025a7c117', 'en', 1, 'https://ror.org/025a7c117 Federation of Small Businesses'),
(71812, 'https://ror.org/025apse83', 'fr', 1, 'https://ror.org/025apse83 Binche MusƩe International du Carnaval et du Masque'),
(71813, 'https://ror.org/025ardq11', 'en', 1, 'https://ror.org/025ardq11 Forest Trends'),
(71814, 'https://ror.org/025c20538', 'en', 1, 'https://ror.org/025c20538 America''s Voice'),
(71815, 'https://ror.org/025emxq18', 'no_lang_code', 1, 'https://ror.org/025emxq18 DZYNE Technologies (United States)'),
(71816, 'https://ror.org/025jccm67', 'no_lang_code', 1, 'https://ror.org/025jccm67 Kobe Shimbun (Japan) ē„žęˆøę–°čž'),
(71817, 'https://ror.org/025je7089', 'no_lang_code', 1, 'https://ror.org/025je7089 Atvos (Brazil)'),
(71818, 'https://ror.org/025je9g43', 'en', 1, 'https://ror.org/025je9g43 Glossop Heritage Trust'),
(71819, 'https://ror.org/025jtyf63', 'en', 1, 'https://ror.org/025jtyf63 International Energy Research Centre'),
(71820, 'https://ror.org/025kjws23', 'no_lang_code', 1, 'https://ror.org/025kjws23 Advanced Energy Dynamics (United States)'),
(71821, 'https://ror.org/025mrej82', 'en', 1, 'https://ror.org/025mrej82 Public Religion Research Institute'),
(71822, 'https://ror.org/025q9pc81', 'no_lang_code', 1, 'https://ror.org/025q9pc81 AgileDelta (United States)'),
(71823, 'https://ror.org/025s7rk09', 'en', 1, 'https://ror.org/025s7rk09 Wessex Chalk Stream and Rivers Trust'),
(71824, 'https://ror.org/025t58v56', 'no_lang_code', 1, 'https://ror.org/025t58v56 Iguacu'),
(71825, 'https://ror.org/025tf0837', 'en', 1, 'https://ror.org/025tf0837 South Yorkshire Fire and Rescue'),
(71826, 'https://ror.org/025y1an67', 'no_lang_code', 1, 'https://ror.org/025y1an67 Kerala Museum ą“•ąµ‡ą“°ą“³ ą“šą“°ą“æą“¤ąµą“° ą“®ąµą“Æąµ‚ą“øą“æą“Æą“‚'),
(71827, 'https://ror.org/025z1qv19', 'no_lang_code', 1, 'https://ror.org/025z1qv19 Child Watabaran Center'),
(71828, 'https://ror.org/026031778', 'en', 1, 'https://ror.org/026031778 Saudi Heritage Preservation Society'),
(71829, 'https://ror.org/02606x514', 'en', 1, 'https://ror.org/02606x514 Chilled Food Association'),
(71830, 'https://ror.org/0260evc53', 'de', 1, 'https://ror.org/0260evc53 Maschinenbauschule Ansbach'),
(71831, 'https://ror.org/0260rem45', 'no_lang_code', 1, 'https://ror.org/0260rem45 Kinetic Art & Technology (United States)'),
(71832, 'https://ror.org/0261n2w64', 'no_lang_code', 1, 'https://ror.org/0261n2w64 HS Owen (United States)'),
(71833, 'https://ror.org/0261w0b46', 'no_lang_code', 1, 'https://ror.org/0261w0b46 Micro-Precision Technologies (United States)'),
(71834, 'https://ror.org/0261y3y56', 'sv', 1, 'https://ror.org/0261y3y56 Konsthantverkscentrum'),
(71835, 'https://ror.org/0263zy895', 'it', 1, 'https://ror.org/0263zy895 Istituto di Metodologie Chimiche'),
(71836, 'https://ror.org/026537666', 'en', 1, 'https://ror.org/026537666 Helen Storey Foundation'),
(71837, 'https://ror.org/0265f5c42', 'en', 1, 'https://ror.org/0265f5c42 Minshar School of Art ×ž× ×©×Ø ×œ××ž× ×•×Ŗ'),
(71838, 'https://ror.org/02677zc17', 'no_lang_code', 1, 'https://ror.org/02677zc17 Balcones Technologies (United States)'),
(71839, 'https://ror.org/02694zd26', 'es', 1, 'https://ror.org/02694zd26 Centro de Recursos Educativos Avanzados'),
(71840, 'https://ror.org/0269jcv25', 'no_lang_code', 1, 'https://ror.org/0269jcv25 Esensors (United States)'),
(71841, 'https://ror.org/0269x8842', 'no_lang_code', 1, 'https://ror.org/0269x8842 AsclepiX Therapeutics (United States)'),
(71842, 'https://ror.org/026dj7w39', 'en', 1, 'https://ror.org/026dj7w39 Bellahouston Academy'),
(71843, 'https://ror.org/026e7vh85', 'no_lang_code', 1, 'https://ror.org/026e7vh85 Goodmark Medical (United States)'),
(71844, 'https://ror.org/026f02s60', 'en', 1, 'https://ror.org/026f02s60 Sir Arthur Lewis Community College'),
(71845, 'https://ror.org/026fx4095', 'en', 1, 'https://ror.org/026fx4095 National Theatre Wales'),
(71846, 'https://ror.org/026hn9a19', 'en', 1, 'https://ror.org/026hn9a19 New York Musical Festival'),
(71847, 'https://ror.org/026m9xy48', 'no_lang_code', 1, 'https://ror.org/026m9xy48 AstraZeneca (Brazil)'),
(71848, 'https://ror.org/026ped584', 'es', 1, 'https://ror.org/026ped584 Hospital Santiago Oriente - Dr. Luis Tisne Brousse'),
(71849, 'https://ror.org/026q0wa78', 'en', 1, 'https://ror.org/026q0wa78 Uppsala Innovation Centre'),
(71850, 'https://ror.org/026rd5w83', 'en', 1, 'https://ror.org/026rd5w83 Maharashtra Association of Anthropological Sciences ą¤®ą¤¾ą¤Øą¤µą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤…ą¤øą„‹ą¤øą¤æą¤ą¤¶ą¤Ø'),
(71851, 'https://ror.org/026s4w053', 'no_lang_code', 1, 'https://ror.org/026s4w053 Poznańska Hodowla Roślin (Poland)'),
(71852, 'https://ror.org/026t78k29', 'en', 1, 'https://ror.org/026t78k29 Eastbridge Hospital'),
(71853, 'https://ror.org/026xf4k55', 'en', 1, 'https://ror.org/026xf4k55 MeetFactory'),
(71854, 'https://ror.org/02700b480', 'no_lang_code', 1, 'https://ror.org/02700b480 MicroConnex (United States)'),
(71855, 'https://ror.org/0270vwd61', 'en', 1, 'https://ror.org/0270vwd61 American Museum and Gardens'),
(71856, 'https://ror.org/027218r60', 'no_lang_code', 1, 'https://ror.org/027218r60 CounterPath (United States)'),
(71857, 'https://ror.org/0273d1w91', 'no_lang_code', 1, 'https://ror.org/0273d1w91 Intan Technologies (United States)'),
(71858, 'https://ror.org/027441620', 'en', 1, 'https://ror.org/027441620 Florence English Language Theatre Artists'),
(71859, 'https://ror.org/0276e3d41', 'en', 1, 'https://ror.org/0276e3d41 Hį»c viện Ƃm nhįŗ”c Quốc gia Việt Nam Viet Nam National Academy of Music'),
(71860, 'https://ror.org/0276h0a46', 'en', 1, 'https://ror.org/0276h0a46 St Monica Trust'),
(71861, 'https://ror.org/0279ae125', 'en', 1, 'https://ror.org/0279ae125 Fordingbridge Museum Trust'),
(71862, 'https://ror.org/027c34053', 'en', 1, 'https://ror.org/027c34053 Safe Motherhood Ladies Association'),
(71863, 'https://ror.org/027ckgt14', 'no_lang_code', 1, 'https://ror.org/027ckgt14 Flex Force Enterprises (United States)'),
(71864, 'https://ror.org/027d29w93', 'no_lang_code', 1, 'https://ror.org/027d29w93 InnovaPrep (United States)'),
(71865, 'https://ror.org/027esmb72', 'no_lang_code', 1, 'https://ror.org/027esmb72 Attainment (United States)'),
(71866, 'https://ror.org/027f5c287', 'en', 1, 'https://ror.org/027f5c287 Citizen University'),
(71867, 'https://ror.org/027fw3f96', 'en', 1, 'https://ror.org/027fw3f96 Arab Education Forum الملتقى Ų§Ł„ŲŖŲ±ŲØŁˆŁŠ Ų§Ł„Ų¹Ų±ŲØŁŠ'),
(71868, 'https://ror.org/027h4hn14', 'no_lang_code', 1, 'https://ror.org/027h4hn14 Alma Media (Finland) Alma Media Oyj'),
(71869, 'https://ror.org/027jtmq90', 'en', 1, 'https://ror.org/027jtmq90 Statens musikverk Swedish Performing Arts Agency'),
(71870, 'https://ror.org/027nc8m92', 'en', 1, 'https://ror.org/027nc8m92 Northshore Education Consortium'),
(71871, 'https://ror.org/027nnzv91', 'es', 1, 'https://ror.org/027nnzv91 Hospital Italiano La Plata'),
(71872, 'https://ror.org/027p78k86', 'no_lang_code', 1, 'https://ror.org/027p78k86 Ligand Pharmaceuticals (United Kingdom)'),
(71873, 'https://ror.org/027q5ca10', 'es', 1, 'https://ror.org/027q5ca10 Instituto Nacional de Patrimonio Cultural'),
(71874, 'https://ror.org/027qvm849', 'en', 1, 'https://ror.org/027qvm849 Future Earth'),
(71875, 'https://ror.org/027s2rg16', 'no_lang_code', 1, 'https://ror.org/027s2rg16 Machakos School'),
(71876, 'https://ror.org/027xc7098', 'en', 1, 'https://ror.org/027xc7098 Liverpool College'),
(71877, 'https://ror.org/027xnhd66', 'no_lang_code', 1, 'https://ror.org/027xnhd66 Grier Forensics (United States)'),
(71878, 'https://ror.org/027y5z534', 'en', 1, 'https://ror.org/027y5z534 Roja Muthiah Research Library'),
(71879, 'https://ror.org/027yhxh89', 'no_lang_code', 1, 'https://ror.org/027yhxh89 Magzor (United States)'),
(71880, 'https://ror.org/027yyz170', 'en', 1, 'https://ror.org/027yyz170 Himalayan Environmental Studies and Conservation Organization'),
(71881, 'https://ror.org/027zjnr49', 'en', 1, 'https://ror.org/027zjnr49 International New Town Institute'),
(71882, 'https://ror.org/02802hm84', 'no_lang_code', 1, 'https://ror.org/02802hm84 Tecplot (United States)'),
(71883, 'https://ror.org/0280epy55', 'en', 1, 'https://ror.org/0280epy55 Arab Educational Information Network ؓبكة Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„ŲŖŲ±ŲØŁˆŁŠŲ©'),
(71884, 'https://ror.org/028310354', 'no_lang_code', 1, 'https://ror.org/028310354 Social Policy Research Associates (United States)'),
(71885, 'https://ror.org/02857w585', 'no_lang_code', 1, 'https://ror.org/02857w585 Hdm Systems (United States)'),
(71886, 'https://ror.org/0285kfv02', 'no_lang_code', 1, 'https://ror.org/0285kfv02 Biodesigns (United States)'),
(71887, 'https://ror.org/02861vh07', 'en', 1, 'https://ror.org/02861vh07 The Poetry Society'),
(71888, 'https://ror.org/0286v3284', 'en', 1, 'https://ror.org/0286v3284 Institute of Hydrogeology and Geoecology. Ahmedsafina Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГрогеологии Šø Š³ŠµŠ¾ŃŠŗŠ¾Š»Š¾Š³ŠøŠø им. АхмеГсафина'),
(71889, 'https://ror.org/0287y3s68', 'en', 1, 'https://ror.org/0287y3s68 Echo Network Africa'),
(71890, 'https://ror.org/028ata669', 'no_lang_code', 1, 'https://ror.org/028ata669 IR Dynamics (United States)'),
(71891, 'https://ror.org/028awrr93', 'en', 1, 'https://ror.org/028awrr93 Woodbrooke'),
(71892, 'https://ror.org/028chwx32', 'en', 1, 'https://ror.org/028chwx32 Ministry of Culture'),
(71893, 'https://ror.org/028e1nz03', 'no_lang_code', 1, 'https://ror.org/028e1nz03 Nitroerg (Poland)'),
(71894, 'https://ror.org/028g3cv81', 'no_lang_code', 1, 'https://ror.org/028g3cv81 Interphase Materials (United States)'),
(71895, 'https://ror.org/028g3pe33', 'en', 1, 'https://ror.org/028g3pe33 Institute for Computational Linguistics ā€œA. Zampolliā€ Istituto di Linguistica Computazionale "A. Zampolli"'),
(71896, 'https://ror.org/028j88e93', 'en', 1, 'https://ror.org/028j88e93 Shaw Trust'),
(71897, 'https://ror.org/028k2a581', 'no_lang_code', 1, 'https://ror.org/028k2a581 Meloq (Sweden)'),
(71898, 'https://ror.org/028mtkm91', 'en', 1, 'https://ror.org/028mtkm91 San Francisco Police Department'),
(71899, 'https://ror.org/028n3wq88', 'no_lang_code', 1, 'https://ror.org/028n3wq88 EndoProtech (United States)'),
(71900, 'https://ror.org/028pb7349', 'en', 1, 'https://ror.org/028pb7349 Green Circle Zelený kruh'),
(71901, 'https://ror.org/028pznd91', 'no_lang_code', 1, 'https://ror.org/028pznd91 Chromafora (Sweden)'),
(71902, 'https://ror.org/028qge085', 'no_lang_code', 1, 'https://ror.org/028qge085 Century (United States)'),
(71903, 'https://ror.org/028v2q832', 'en', 1, 'https://ror.org/028v2q832 Wear Rivers Trust'),
(71904, 'https://ror.org/028vs0284', 'en', 1, 'https://ror.org/028vs0284 Academy of Ancient Music'),
(71905, 'https://ror.org/028wrtm78', 'en', 1, 'https://ror.org/028wrtm78 Hong Kong America Center'),
(71906, 'https://ror.org/028x4en59', 'en', 1, 'https://ror.org/028x4en59 Climate Centre'),
(71907, 'https://ror.org/028ypwr15', 'en', 1, 'https://ror.org/028ypwr15 Albury Wodonga Health'),
(71908, 'https://ror.org/028yxzq51', 'en', 1, 'https://ror.org/028yxzq51 Lourdes Health System'),
(71909, 'https://ror.org/0291ys696', 'en', 1, 'https://ror.org/0291ys696 Michigan United'),
(71910, 'https://ror.org/0293c7e71', 'fr', 1, 'https://ror.org/0293c7e71 Conservatoire des Arts et MƩtiers MultimƩdia'),
(71911, 'https://ror.org/029587y03', 'en', 1, 'https://ror.org/029587y03 Ilfracombe Museum'),
(71912, 'https://ror.org/029768m78', 'no_lang_code', 1, 'https://ror.org/029768m78 Maskpol (Poland)'),
(71913, 'https://ror.org/0297mhz17', 'en', 1, 'https://ror.org/0297mhz17 Baria Vungtau University TrĘ°į»ng ĐẔi hį»c BĆ  Rịa - VÅ©ng TĆ u'),
(71914, 'https://ror.org/02980ky18', 'en', 1, 'https://ror.org/02980ky18 West of England Academic Health Science Network'),
(71915, 'https://ror.org/0299hrs54', 'en', 1, 'https://ror.org/0299hrs54 Enlightened Myanmar Research Foundation'),
(71916, 'https://ror.org/029a61c63', 'en', 1, 'https://ror.org/029a61c63 Academy of Policy and Development'),
(71917, 'https://ror.org/029agyb27', 'en', 1, 'https://ror.org/029agyb27 Centre de Recherches pour le DƩveloppement International International Development Research Centre'),
(71918, 'https://ror.org/029ajv121', 'en', 1, 'https://ror.org/029ajv121 United Philanthropy Forum'),
(71919, 'https://ror.org/029b7sx25', 'en', 1, 'https://ror.org/029b7sx25 Sydney Jewish Museum'),
(71920, 'https://ror.org/029bmhr60', 'no_lang_code', 1, 'https://ror.org/029bmhr60 Amastan Technologies (United States)'),
(71921, 'https://ror.org/029e72445', 'en', 1, 'https://ror.org/029e72445 Childhood Bereavement Network'),
(71922, 'https://ror.org/029fsgw35', 'en', 1, 'https://ror.org/029fsgw35 Association for Democratic Reforms'),
(71923, 'https://ror.org/029g0ec14', 'en', 1, 'https://ror.org/029g0ec14 Cyngor Sir Fynwy Monmouthshire County Council'),
(71924, 'https://ror.org/029jmc311', 'no_lang_code', 1, 'https://ror.org/029jmc311 Amjet Turbine System (United States)'),
(71925, 'https://ror.org/029mydn95', 'no_lang_code', 1, 'https://ror.org/029mydn95 Fischer Imaging (United States)'),
(71926, 'https://ror.org/029n3ke88', 'no_lang_code', 1, 'https://ror.org/029n3ke88 Wyld (United Kingdom)'),
(71927, 'https://ror.org/029vth897', 'en', 1, 'https://ror.org/029vth897 Association for India’s Development'),
(71928, 'https://ror.org/029w2ds07', 'en', 1, 'https://ror.org/029w2ds07 Foundation for International Cooperation In Higher Education of Taiwan č²”åœ˜ę³•äŗŗé«˜ē­‰ę•™č‚²åœ‹éš›åˆä½œåŸŗé‡‘ęœƒ'),
(71929, 'https://ror.org/029whta60', 'no_lang_code', 1, 'https://ror.org/029whta60 PBG (Poland)'),
(71930, 'https://ror.org/02a0gmf29', 'en', 1, 'https://ror.org/02a0gmf29 Biomedical Research Institute of Southern California'),
(71931, 'https://ror.org/02a2anr16', 'en', 1, 'https://ror.org/02a2anr16 Regional Education Centre for the area of primary care'),
(71932, 'https://ror.org/02a3zx434', 'pt', 1, 'https://ror.org/02a3zx434 Conservatório Pernambucano de Música'),
(71933, 'https://ror.org/02a497926', 'en', 1, 'https://ror.org/02a497926 American Indian Development Associates'),
(71934, 'https://ror.org/02a4rtb34', 'en', 1, 'https://ror.org/02a4rtb34 Taiwan Design Center å°ē£å‰µę„čØ­čØˆäø­åæƒ'),
(71935, 'https://ror.org/02a4rw748', 'no_lang_code', 1, 'https://ror.org/02a4rw748 Kosovo Telecom (Kosovo) Telekomi i Kosovës Телеком Косова'),
(71936, 'https://ror.org/02a7s3141', 'en', 1, 'https://ror.org/02a7s3141 Contemporary Art Society'),
(71937, 'https://ror.org/02a8fvh42', 'en', 1, 'https://ror.org/02a8fvh42 Useful Simple Trust'),
(71938, 'https://ror.org/02a91xk32', 'da', 1, 'https://ror.org/02a91xk32 Dansk Filosofisk Selskab'),
(71939, 'https://ror.org/02aaavs63', 'en', 1, 'https://ror.org/02aaavs63 Anglo-Boer War Museum'),
(71940, 'https://ror.org/02abp7362', 'no_lang_code', 1, 'https://ror.org/02abp7362 358 (Finland)'),
(71941, 'https://ror.org/02acf6r22', 'no_lang_code', 1, 'https://ror.org/02acf6r22 Maroon Biotech (United States)'),
(71942, 'https://ror.org/02acrm202', 'no_lang_code', 1, 'https://ror.org/02acrm202 Ampersand (Sweden)'),
(71943, 'https://ror.org/02act3e13', 'no_lang_code', 1, 'https://ror.org/02act3e13 BGI (United States)'),
(71944, 'https://ror.org/02actgg20', 'no_lang_code', 1, 'https://ror.org/02actgg20 Adroit Science (Sweden)'),
(71945, 'https://ror.org/02ad86n55', 'en', 1, 'https://ror.org/02ad86n55 More Associates'),
(71946, 'https://ror.org/02ae15t63', 'es', 1, 'https://ror.org/02ae15t63 Centro de Implementación de Políticas Públicas para la Equidad y el Crecimiento'),
(71947, 'https://ror.org/02aebf083', 'no_lang_code', 1, 'https://ror.org/02aebf083 Melink (United States)'),
(71948, 'https://ror.org/02af2ve13', 'en', 1, 'https://ror.org/02af2ve13 Orkney Library and Archive'),
(71949, 'https://ror.org/02af40965', 'no_lang_code', 1, 'https://ror.org/02af40965 Crecare (United States)'),
(71950, 'https://ror.org/02afwny15', 'en', 1, 'https://ror.org/02afwny15 Tiree Community Development Trust'),
(71951, 'https://ror.org/02agf1x24', 'no_lang_code', 1, 'https://ror.org/02agf1x24 AlzeCure Pharma (Sweden)'),
(71952, 'https://ror.org/02agte379', 'sv', 1, 'https://ror.org/02agte379 Medeon'),
(71953, 'https://ror.org/02an8as91', 'en', 1, 'https://ror.org/02an8as91 British Egg Industry Council'),
(71954, 'https://ror.org/02app9g37', 'en', 1, 'https://ror.org/02app9g37 Cool Farm Alliance'),
(71955, 'https://ror.org/02ar1p116', 'es', 1, 'https://ror.org/02ar1p116 Hospital de Referencia La Equina'),
(71956, 'https://ror.org/02arr6933', 'en', 1, 'https://ror.org/02arr6933 Centre for Contemporary Arts'),
(71957, 'https://ror.org/02awtmh12', 'en', 1, 'https://ror.org/02awtmh12 Centre for Rural Studies and Development'),
(71958, 'https://ror.org/02awzpt50', 'de', 1, 'https://ror.org/02awzpt50 Agaplesion Frankfurter Diakonie Kliniken'),
(71959, 'https://ror.org/02axp7z77', 'no_lang_code', 1, 'https://ror.org/02axp7z77 Termetal (Poland)'),
(71960, 'https://ror.org/02b028e39', 'en', 1, 'https://ror.org/02b028e39 National Historical Museums Statens Historiska Museer'),
(71961, 'https://ror.org/02b0gsr86', 'en', 1, 'https://ror.org/02b0gsr86 Southwestern Association for Indian Arts'),
(71962, 'https://ror.org/02b27r753', 'en', 1, 'https://ror.org/02b27r753 Royal Education Council'),
(71963, 'https://ror.org/02b58rv90', 'en', 1, 'https://ror.org/02b58rv90 Defence Electronics History Society'),
(71964, 'https://ror.org/02b5ra378', 'no_lang_code', 1, 'https://ror.org/02b5ra378 Microwave Applications Group (United States)'),
(71965, 'https://ror.org/02b7a2y37', 'fr', 1, 'https://ror.org/02b7a2y37 MusĆ©e du Quai Branly – Jacques Chirac'),
(71966, 'https://ror.org/02b8fww89', 'en', 1, 'https://ror.org/02b8fww89 Pen International'),
(71967, 'https://ror.org/02b9c3t28', 'no_lang_code', 1, 'https://ror.org/02b9c3t28 Solibro Research (Sweden)'),
(71968, 'https://ror.org/02bchz941', 'es', 1, 'https://ror.org/02bchz941 Instituto para la Seguridad y Democracia'),
(71969, 'https://ror.org/02bdk9r92', 'no_lang_code', 1, 'https://ror.org/02bdk9r92 Advaita (United States)'),
(71970, 'https://ror.org/02bf21z15', 'no_lang_code', 1, 'https://ror.org/02bf21z15 All Street Research (United Kingdom)'),
(71971, 'https://ror.org/02bggcy46', 'en', 1, 'https://ror.org/02bggcy46 Transport and Health Study Group'),
(71972, 'https://ror.org/02bm86575', 'en', 1, 'https://ror.org/02bm86575 Mason Perkins Deafness Fund Onlus'),
(71973, 'https://ror.org/02bmxkm36', 'en', 1, 'https://ror.org/02bmxkm36 Deepak Foundation'),
(71974, 'https://ror.org/02bn6gq21', 'no_lang_code', 1, 'https://ror.org/02bn6gq21 FGH Biotech (United States)'),
(71975, 'https://ror.org/02bnwry33', 'en', 1, 'https://ror.org/02bnwry33 Karnataka Health Promotion Trust'),
(71976, 'https://ror.org/02bpt5c58', 'en', 1, 'https://ror.org/02bpt5c58 Bush Heritage Australia'),
(71977, 'https://ror.org/02bq53250', 'no_lang_code', 1, 'https://ror.org/02bq53250 Comfort Talk (United States)'),
(71978, 'https://ror.org/02brk6173', 'no_lang_code', 1, 'https://ror.org/02brk6173 Biomass and Fossil Fuel Research Alliance (United Kingdom)'),
(71979, 'https://ror.org/02bv7qz69', 'en', 1, 'https://ror.org/02bv7qz69 Center for Large Landscape Conservation'),
(71980, 'https://ror.org/02bx3wt69', 'no_lang_code', 1, 'https://ror.org/02bx3wt69 Moller International (United States)'),
(71981, 'https://ror.org/02bymqz65', 'no_lang_code', 1, 'https://ror.org/02bymqz65 Dassault SystĆØmes (Japan)'),
(71982, 'https://ror.org/02byrdn19', 'en', 1, 'https://ror.org/02byrdn19 Surfers Against Sewage'),
(71983, 'https://ror.org/02bz1zq28', 'en', 1, 'https://ror.org/02bz1zq28 Tenet Healthcare'),
(71984, 'https://ror.org/02bze1z02', 'en', 1, 'https://ror.org/02bze1z02 Luton Culture'),
(71985, 'https://ror.org/02c10cc21', 'en', 1, 'https://ror.org/02c10cc21 Hft'),
(71986, 'https://ror.org/02c237f60', 'no_lang_code', 1, 'https://ror.org/02c237f60 Scotia Gas Networks (United Kingdom)'),
(71987, 'https://ror.org/02c289w86', 'pl', 1, 'https://ror.org/02c289w86 Słodownia Soufflet Polska'),
(71988, 'https://ror.org/02c2c0k38', 'en', 1, 'https://ror.org/02c2c0k38 The Parks Agency'),
(71989, 'https://ror.org/02c39fv84', 'en', 1, 'https://ror.org/02c39fv84 Road Haulage Association'),
(71990, 'https://ror.org/02c8ckq78', 'en', 1, 'https://ror.org/02c8ckq78 Svenskt Demenscentrum Swedish Dementia Centre'),
(71991, 'https://ror.org/02c8fyq88', 'no_lang_code', 1, 'https://ror.org/02c8fyq88 Antagen Pharmaceuticals (United States)'),
(71992, 'https://ror.org/02c8pt668', 'en', 1, 'https://ror.org/02c8pt668 Auroville Foundation'),
(71993, 'https://ror.org/02ca9pg17', 'no_lang_code', 1, 'https://ror.org/02ca9pg17 Inovatia Laboratories (United States)'),
(71994, 'https://ror.org/02cbaqx65', 'en', 1, 'https://ror.org/02cbaqx65 State of Rhode Island General Assembly'),
(71995, 'https://ror.org/02cby3y03', 'no_lang_code', 1, 'https://ror.org/02cby3y03 ScrewFast Foundations (United Kingdom)'),
(71996, 'https://ror.org/02ccaw114', 'en', 1, 'https://ror.org/02ccaw114 International Ceramics Studio Nemzetközi KerÔmia Stúdió'),
(71997, 'https://ror.org/02ce15590', 'no_lang_code', 1, 'https://ror.org/02ce15590 Mood Media (United States)'),
(71998, 'https://ror.org/02cfsj843', 'no_lang_code', 1, 'https://ror.org/02cfsj843 Envention (United States)'),
(71999, 'https://ror.org/02cfw5538', 'no_lang_code', 1, 'https://ror.org/02cfw5538 Spectronic (Sweden)'),
(72000, 'https://ror.org/02cg7h320', 'en', 1, 'https://ror.org/02cg7h320 Salford Museum and Art Gallery'),
(72001, 'https://ror.org/02cgy3m12', 'en', 1, 'https://ror.org/02cgy3m12 CSIRO Scientific Computing'),
(72002, 'https://ror.org/02cmcyy37', 'no_lang_code', 1, 'https://ror.org/02cmcyy37 Exos (United States)'),
(72003, 'https://ror.org/02cpbjg46', 'no_lang_code', 1, 'https://ror.org/02cpbjg46 Fuse (United States)'),
(72004, 'https://ror.org/02cqajj62', 'sv', 1, 'https://ror.org/02cqajj62 Marin Biogas'),
(72005, 'https://ror.org/02cqmj630', 'es', 1, 'https://ror.org/02cqmj630 Fundacion ArriarƔn'),
(72006, 'https://ror.org/02ctd9k17', 'no_lang_code', 1, 'https://ror.org/02ctd9k17 Aereon (United States)'),
(72007, 'https://ror.org/02cvnka73', 'en', 1, 'https://ror.org/02cvnka73 Norfolk Rivers Trust'),
(72008, 'https://ror.org/02cxa8527', 'en', 1, 'https://ror.org/02cxa8527 iCivics'),
(72009, 'https://ror.org/02cy8w246', 'en', 1, 'https://ror.org/02cy8w246 European Association of Archaeologists EvropskĆ” asociace archeologÅÆ'),
(72010, 'https://ror.org/02cyenj86', 'en', 1, 'https://ror.org/02cyenj86 Ashwell Museum'),
(72011, 'https://ror.org/02cyn4444', 'en', 1, 'https://ror.org/02cyn4444 Birmingham Museums Trust'),
(72012, 'https://ror.org/02d16vp83', 'en', 1, 'https://ror.org/02d16vp83 Biblioteka KombĆ«tare e KosovĆ«s National Library of Kosovo ŠŠ°Ń€Š¾Š“Š½Š° библиотека Косова'),
(72013, 'https://ror.org/02d6ntk65', 'en', 1, 'https://ror.org/02d6ntk65 Whitecliffe College of Arts and Design'),
(72014, 'https://ror.org/02d77hg59', 'no_lang_code', 1, 'https://ror.org/02d77hg59 ID Genomics (United States)'),
(72015, 'https://ror.org/02d7ecg84', 'no_lang_code', 1, 'https://ror.org/02d7ecg84 EnginZyme (Sweden)'),
(72016, 'https://ror.org/02d807218', 'no_lang_code', 1, 'https://ror.org/02d807218 Peak Associates (United Kingdom)'),
(72017, 'https://ror.org/02d894j61', 'hi', 1, 'https://ror.org/02d894j61 Bhasha'),
(72018, 'https://ror.org/02d8xcv03', 'en', 1, 'https://ror.org/02d8xcv03 Chwaraeon Cymru Sport Wales'),
(72019, 'https://ror.org/02d9p5295', 'en', 1, 'https://ror.org/02d9p5295 Rail Research UK Association'),
(72020, 'https://ror.org/02davjz41', 'en', 1, 'https://ror.org/02davjz41 Gunnersbury'),
(72021, 'https://ror.org/02dbpdq51', 'no_lang_code', 1, 'https://ror.org/02dbpdq51 DATA4 (France)'),
(72022, 'https://ror.org/02dg2kf02', 'en', 1, 'https://ror.org/02dg2kf02 Hį»c viện HĆ nh chĆ­nh Quốc gia National Academy of Public Administration'),
(72023, 'https://ror.org/02djg6z12', 'en', 1, 'https://ror.org/02djg6z12 Institute for Science and International Security'),
(72024, 'https://ror.org/02djy5m07', 'no_lang_code', 1, 'https://ror.org/02djy5m07 Les Kurbas Center Š¦Š•ŠŠ¢Š  ЛЕДЯ ŠšŠ£Š Š‘ŠŠ”Š'),
(72025, 'https://ror.org/02dn4tb64', 'cs', 1, 'https://ror.org/02dn4tb64 Nemocnice KutnĆ” Hora'),
(72026, 'https://ror.org/02dnkgs07', 'en', 1, 'https://ror.org/02dnkgs07 Studio in a School'),
(72027, 'https://ror.org/02dnv4714', 'en', 1, 'https://ror.org/02dnv4714 The Ark'),
(72028, 'https://ror.org/02dpfs211', 'sv', 1, 'https://ror.org/02dpfs211 Svenska NationalkommittƩn fƶr kemi'),
(72029, 'https://ror.org/02dqn4533', 'en', 1, 'https://ror.org/02dqn4533 Halsway Manor National Centre for Folk Arts'),
(72030, 'https://ror.org/02dr5rf50', 'no_lang_code', 1, 'https://ror.org/02dr5rf50 Maxon Motor (Switzerland)'),
(72031, 'https://ror.org/02dswfg52', 'no_lang_code', 1, 'https://ror.org/02dswfg52 Cellf BIO (United States)'),
(72032, 'https://ror.org/02dt6mc98', 'es', 1, 'https://ror.org/02dt6mc98 Pronatura Noroeste'),
(72033, 'https://ror.org/02dv7rd88', 'no_lang_code', 1, 'https://ror.org/02dv7rd88 Primetals Technologies (United Kingdom)'),
(72034, 'https://ror.org/02dz3j209', 'no_lang_code', 1, 'https://ror.org/02dz3j209 First Wave Technologies (United States)'),
(72035, 'https://ror.org/02e00fb34', 'en', 1, 'https://ror.org/02e00fb34 Cooper''s Ferry Partnership'),
(72036, 'https://ror.org/02e2v3e15', 'es', 1, 'https://ror.org/02e2v3e15 Instituto de QuĆ­mica del Noroeste Argentino'),
(72037, 'https://ror.org/02e4d0d63', 'en', 1, 'https://ror.org/02e4d0d63 Alabama Department of Forensic Sciences'),
(72038, 'https://ror.org/02e4kxk72', 'no_lang_code', 1, 'https://ror.org/02e4kxk72 Kupiec (Poland)'),
(72039, 'https://ror.org/02e5d6e23', 'en', 1, 'https://ror.org/02e5d6e23 The Western Front Association'),
(72040, 'https://ror.org/02e5tmt29', 'en', 1, 'https://ror.org/02e5tmt29 Rural Development Foundation of Pakistan'),
(72041, 'https://ror.org/02e6s3r40', 'es', 1, 'https://ror.org/02e6s3r40 Escuela Superior de Artes de YucatƔn'),
(72042, 'https://ror.org/02e7g3z76', 'no_lang_code', 1, 'https://ror.org/02e7g3z76 Curoverse (United States)'),
(72043, 'https://ror.org/02e7nyv81', 'en', 1, 'https://ror.org/02e7nyv81 Associates Research'),
(72044, 'https://ror.org/02easm151', 'no_lang_code', 1, 'https://ror.org/02easm151 Albion (United States)'),
(72045, 'https://ror.org/02eazqp86', 'en', 1, 'https://ror.org/02eazqp86 Stornoway Historical Society'),
(72046, 'https://ror.org/02eb2vj04', 'no_lang_code', 1, 'https://ror.org/02eb2vj04 Mitek Analytics (United States)'),
(72047, 'https://ror.org/02edgp803', 'en', 1, 'https://ror.org/02edgp803 Grace Eyre'),
(72048, 'https://ror.org/02efpnz39', 'fr', 1, 'https://ror.org/02efpnz39 AcadƩmie de Versailles'),
(72049, 'https://ror.org/02eg9wt87', 'en', 1, 'https://ror.org/02eg9wt87 Community Catalyst'),
(72050, 'https://ror.org/02egea792', 'en', 1, 'https://ror.org/02egea792 United Way of Greater Houston'),
(72051, 'https://ror.org/02egkac43', 'en', 1, 'https://ror.org/02egkac43 TechSoup'),
(72052, 'https://ror.org/02egnep81', 'no_lang_code', 1, 'https://ror.org/02egnep81 CRE Consulting (Poland)'),
(72053, 'https://ror.org/02ehf4193', 'no_lang_code', 1, 'https://ror.org/02ehf4193 Block Engineering (United States)'),
(72054, 'https://ror.org/02ehgd331', 'no_lang_code', 1, 'https://ror.org/02ehgd331 Allvivo Vascular (United States)'),
(72055, 'https://ror.org/02ekas647', 'no_lang_code', 1, 'https://ror.org/02ekas647 SDL (United States)'),
(72056, 'https://ror.org/02enjva13', 'no_lang_code', 1, 'https://ror.org/02enjva13 BitPlus (United States)'),
(72057, 'https://ror.org/02enpd448', 'en', 1, 'https://ror.org/02enpd448 Centre for Regeneration Excellence Wales'),
(72058, 'https://ror.org/02epwv805', 'no_lang_code', 1, 'https://ror.org/02epwv805 Tekceleo (France)'),
(72059, 'https://ror.org/02eqy2w38', 'en', 1, 'https://ror.org/02eqy2w38 Association for Decentralised Energy'),
(72060, 'https://ror.org/02er1v340', 'en', 1, 'https://ror.org/02er1v340 Mourne Heritage Trust'),
(72061, 'https://ror.org/02ere1c15', 'en', 1, 'https://ror.org/02ere1c15 Brick Development Association'),
(72062, 'https://ror.org/02erzes48', 'en', 1, 'https://ror.org/02erzes48 NIHR MindTech MedTech Co-operative'),
(72063, 'https://ror.org/02evg2181', 'en', 1, 'https://ror.org/02evg2181 Bennetts Associates'),
(72064, 'https://ror.org/02eyqgr24', 'en', 1, 'https://ror.org/02eyqgr24 Russian State Archive of Literature and Arts Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ архив Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²Š°'),
(72065, 'https://ror.org/02f1wt137', 'no_lang_code', 1, 'https://ror.org/02f1wt137 Nanoshell Company (United States)'),
(72066, 'https://ror.org/02f2s6657', 'en', 1, 'https://ror.org/02f2s6657 Noida Deaf Society'),
(72067, 'https://ror.org/02f3zfv55', 'no_lang_code', 1, 'https://ror.org/02f3zfv55 Adeptrix (United States)'),
(72068, 'https://ror.org/02f443s15', 'en', 1, 'https://ror.org/02f443s15 Institut Khimii Imeni V.i.nikitina Akademii Nauk Respubliki Tajikistan Institute of Chemistry named after V.I. Nikitin Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Šø кимиёи ба номи Š’.И.ŠŠøŠŗŠøŃ‚ŠøŠ½Šø ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŠø илмҳои Ņ¶ŃƒŠ¼Ņ³ŃƒŃ€ŠøŠø Тоҷикистон'),
(72069, 'https://ror.org/02f7edq28', 'en', 1, 'https://ror.org/02f7edq28 Section 27'),
(72070, 'https://ror.org/02f85ye32', 'no_lang_code', 1, 'https://ror.org/02f85ye32 Vultus (Sweden)'),
(72071, 'https://ror.org/02f8pzn71', 'en', 1, 'https://ror.org/02f8pzn71 American Mandarin Society'),
(72072, 'https://ror.org/02f9ma297', 'no_lang_code', 1, 'https://ror.org/02f9ma297 Tecna (Poland)'),
(72073, 'https://ror.org/02fa1wt71', 'en', 1, 'https://ror.org/02fa1wt71 The Incorporated Council of Law Reporting for England & Wales'),
(72074, 'https://ror.org/02facmr33', 'en', 1, 'https://ror.org/02facmr33'),
(72075, 'https://ror.org/02fcqpe40', 'en', 1, 'https://ror.org/02fcqpe40 Municipal Association of Victoria'),
(72076, 'https://ror.org/02fddhv21', 'en', 1, 'https://ror.org/02fddhv21 Institute of Healthcare Engineering and Estate Management'),
(72077, 'https://ror.org/02fgmdx09', 'no_lang_code', 1, 'https://ror.org/02fgmdx09 ACF-Metals (United States)'),
(72078, 'https://ror.org/02fkkph87', 'en', 1, 'https://ror.org/02fkkph87 CASA CASA de Maryland'),
(72079, 'https://ror.org/02fkxw270', 'en', 1, 'https://ror.org/02fkxw270 African Centre for Global Health and Social Transformation'),
(72080, 'https://ror.org/02fn8bv93', 'en', 1, 'https://ror.org/02fn8bv93 Ambasciata d''Italia Embassy of Italy in Tel Aviv'),
(72081, 'https://ror.org/02fnw1n62', 'en', 1, 'https://ror.org/02fnw1n62 Budapest Centre for Mass Atrocities Prevention'),
(72082, 'https://ror.org/02fnwfw55', 'no_lang_code', 1, 'https://ror.org/02fnwfw55 AeroStream Communications (United States)'),
(72083, 'https://ror.org/02fqfwd96', 'en', 1, 'https://ror.org/02fqfwd96 FreeBSD Foundation'),
(72084, 'https://ror.org/02frgyp60', 'pt', 1, 'https://ror.org/02frgyp60 Instituto Nupef'),
(72085, 'https://ror.org/02ft9z011', 'en', 1, 'https://ror.org/02ft9z011 Royal College of Speech and Language Therapists'),
(72086, 'https://ror.org/02ftc0e34', 'en', 1, 'https://ror.org/02ftc0e34 Innovative Housing Institute'),
(72087, 'https://ror.org/02fvbz323', 'en', 1, 'https://ror.org/02fvbz323 Dearne Valley College'),
(72088, 'https://ror.org/02fw2tr12', 'no_lang_code', 1, 'https://ror.org/02fw2tr12 Concepts to Systems (United States)'),
(72089, 'https://ror.org/02fwchg56', 'en', 1, 'https://ror.org/02fwchg56 Documentation Center of Cambodia'),
(72090, 'https://ror.org/02fwrmp37', 'no_lang_code', 1, 'https://ror.org/02fwrmp37 Lifespan Associates (United States)'),
(72091, 'https://ror.org/02fxg2r05', 'en', 1, 'https://ror.org/02fxg2r05'),
(72092, 'https://ror.org/02fyvxt44', 'no_lang_code', 1, 'https://ror.org/02fyvxt44 Drive DeVilbiss Healthcare (United Kingdom)'),
(72093, 'https://ror.org/02fzzq880', 'en', 1, 'https://ror.org/02fzzq880 Bath Social and Development Research'),
(72094, 'https://ror.org/02g2dpz81', 'no_lang_code', 1, 'https://ror.org/02g2dpz81 Pottstown Medical Specialists (United States)'),
(72095, 'https://ror.org/02g451n39', 'en', 1, 'https://ror.org/02g451n39 MusƩe royal de Mariemont Royal Museum of Mariemont'),
(72096, 'https://ror.org/02g6p0656', 'no_lang_code', 1, 'https://ror.org/02g6p0656 Harp Engineering (United States)'),
(72097, 'https://ror.org/02g6z1s94', 'en', 1, 'https://ror.org/02g6z1s94 St Johns Theatre'),
(72098, 'https://ror.org/02g7f1v18', 'en', 1, 'https://ror.org/02g7f1v18 The Center for Public Integrity'),
(72099, 'https://ror.org/02g861y66', 'no_lang_code', 1, 'https://ror.org/02g861y66 Againity (Sweden)'),
(72100, 'https://ror.org/02g8fqy85', 'no_lang_code', 1, 'https://ror.org/02g8fqy85 CoolCad Electronics (United States)'),
(72101, 'https://ror.org/02g918154', 'en', 1, 'https://ror.org/02g918154 Kent Archaeological Society'),
(72102, 'https://ror.org/02gcshf78', 'no_lang_code', 1, 'https://ror.org/02gcshf78 Natura (Brazil)'),
(72103, 'https://ror.org/02gcxw165', 'it', 1, 'https://ror.org/02gcxw165 Istituto di Studi sul Mediterraneo Antico'),
(72104, 'https://ror.org/02gdxv606', 'no_lang_code', 1, 'https://ror.org/02gdxv606 Insect Research Systems (United Kingdom)'),
(72105, 'https://ror.org/02ge9wf73', 'no_lang_code', 1, 'https://ror.org/02ge9wf73 Juteborg (Sweden)'),
(72106, 'https://ror.org/02gemh168', 'id', 1, 'https://ror.org/02gemh168 Asosiasi Perempuan Indonesia untuk Keadilan'),
(72107, 'https://ror.org/02gfwnc58', 'en', 1, 'https://ror.org/02gfwnc58 Prague Film School'),
(72108, 'https://ror.org/02ghr1636', 'en', 1, 'https://ror.org/02ghr1636 Museo Nacional de ArqueologĆ­a de Bolivia National Museum of Archaeology'),
(72109, 'https://ror.org/02gjn0z15', 'en', 1, 'https://ror.org/02gjn0z15 Nationwide Building Society'),
(72110, 'https://ror.org/02gk9xs23', 'no_lang_code', 1, 'https://ror.org/02gk9xs23 Investigators Research Group (United States)');
INSERT INTO `rors` VALUES
(72111, 'https://ror.org/02gkgnb87', 'en', 1, 'https://ror.org/02gkgnb87 Supreme Arbitration Court of the Russian Federation Š’Ń‹ŃŃˆŠøŠ¹ Арбитражный суГ Российской ФеГерации'),
(72112, 'https://ror.org/02gkmwf16', 'en', 1, 'https://ror.org/02gkmwf16 Pentucket Medical'),
(72113, 'https://ror.org/02gmjfa08', 'no_lang_code', 1, 'https://ror.org/02gmjfa08 Bhagat Phool Singh Mahila Vishwavidyalaya भगत ą¤«ą„‚ą¤² सिंह महिला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(72114, 'https://ror.org/02gn97s12', 'en', 1, 'https://ror.org/02gn97s12 Scottish Civic Trust'),
(72115, 'https://ror.org/02gnftn41', 'en', 1, 'https://ror.org/02gnftn41 Saras Environment Consultant'),
(72116, 'https://ror.org/02gnws810', 'en', 1, 'https://ror.org/02gnws810 Irish Cultural Centre'),
(72117, 'https://ror.org/02gq3ch54', 'en', 1, 'https://ror.org/02gq3ch54 Observational & Pragmatic Research Institute'),
(72118, 'https://ror.org/02gqfbn37', 'no_lang_code', 1, 'https://ror.org/02gqfbn37 Analytic Measures (United States)'),
(72119, 'https://ror.org/02gs82g24', 'en', 1, 'https://ror.org/02gs82g24 Runway of Dreams Foundation'),
(72120, 'https://ror.org/02gse4n09', 'en', 1, 'https://ror.org/02gse4n09 L. A. Orbeli Institute of Physiology NAS RA ՀՀ Ō³Ō±Ō± Ō±ÕÆÕ”Õ¤. Ō¼. Ō±. Õ•Ö€Õ¢Õ„Õ¬ÕøÖ‚ Õ”Õ¶Õ¾Õ”Õ¶ Õ–Õ«Õ¦Õ«ÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ« Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(72121, 'https://ror.org/02gwwbd68', 'en', 1, 'https://ror.org/02gwwbd68 Capital Cardiology Associates'),
(72122, 'https://ror.org/02gx09e94', 'en', 1, 'https://ror.org/02gx09e94 Surrey Police'),
(72123, 'https://ror.org/02gy8t657', 'no_lang_code', 1, 'https://ror.org/02gy8t657 Function Promoting Therapies (United States)'),
(72124, 'https://ror.org/02h0a0v43', 'en', 1, 'https://ror.org/02h0a0v43 Institute for Development and Economic Analysis Perhimpunan IDEA'),
(72125, 'https://ror.org/02h26j898', 'en', 1, 'https://ror.org/02h26j898 Kings Foundation'),
(72126, 'https://ror.org/02h3d3t16', 'en', 1, 'https://ror.org/02h3d3t16 Cadence Performance'),
(72127, 'https://ror.org/02h3fax78', 'en', 1, 'https://ror.org/02h3fax78 National library of Uzbekistan ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š° библиотека Узбекистана'),
(72128, 'https://ror.org/02h4ptt90', 'en', 1, 'https://ror.org/02h4ptt90 Taiwan Miaoli District Court č‡ŗē£č‹—ę —åœ°ę–¹ę³•é™¢'),
(72129, 'https://ror.org/02h6a5d26', 'no_lang_code', 1, 'https://ror.org/02h6a5d26 Codar Ocean Sensors (United States)'),
(72130, 'https://ror.org/02h8yps76', 'no_lang_code', 1, 'https://ror.org/02h8yps76 Chadwick Optical (United States)'),
(72131, 'https://ror.org/02h9s3z30', 'no_lang_code', 1, 'https://ror.org/02h9s3z30 Airflow Sciences (United States)'),
(72132, 'https://ror.org/02ha7nd65', 'en', 1, 'https://ror.org/02ha7nd65 Indian Institute of Journalism and New Media'),
(72133, 'https://ror.org/02hc8ze18', 'no_lang_code', 1, 'https://ror.org/02hc8ze18 Advanced Life Technologies (United States)'),
(72134, 'https://ror.org/02hcvme33', 'de', 1, 'https://ror.org/02hcvme33 Institut für Nichtklassische Chemie'),
(72135, 'https://ror.org/02hd3s336', 'no_lang_code', 1, 'https://ror.org/02hd3s336 AuSIM (United States)'),
(72136, 'https://ror.org/02he69d43', 'en', 1, 'https://ror.org/02he69d43 Kyiv Institute of Music. R. Glier ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ музики ім. Š .М.Глієра'),
(72137, 'https://ror.org/02he8hw70', 'en', 1, 'https://ror.org/02he8hw70 Instytut Śląski w Opolu Silesian Institute in Opole'),
(72138, 'https://ror.org/02heqf923', 'no_lang_code', 1, 'https://ror.org/02heqf923 Panasonic (Poland)'),
(72139, 'https://ror.org/02hg7p914', 'en', 1, 'https://ror.org/02hg7p914 Catalyst Science Discovery Centre'),
(72140, 'https://ror.org/02hj84f21', 'en', 1, 'https://ror.org/02hj84f21 World Sugar Research Organisation'),
(72141, 'https://ror.org/02hjmkw90', 'en', 1, 'https://ror.org/02hjmkw90 Accademia internazionale di Scienze Ambientali International Academy of Environmental Sciences'),
(72142, 'https://ror.org/02hm6a795', 'no_lang_code', 1, 'https://ror.org/02hm6a795 Tropical Marine Centre (United Kingdom)'),
(72143, 'https://ror.org/02hnqr243', 'en', 1, 'https://ror.org/02hnqr243 Arab NGO Network for Development ؓبكة المنظمات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© غير Ų§Ł„Ų­ŁƒŁˆŁ…ŁŠŲ© Ł„Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(72144, 'https://ror.org/02hpv2m52', 'en', 1, 'https://ror.org/02hpv2m52 Charles Rennie Mackintosh Society'),
(72145, 'https://ror.org/02hpzh255', 'no_lang_code', 1, 'https://ror.org/02hpzh255 Lindo Catsystem (Poland)'),
(72146, 'https://ror.org/02hqgbq45', 'no_lang_code', 1, 'https://ror.org/02hqgbq45 Unchained Labs (United States)'),
(72147, 'https://ror.org/02hqm2v55', 'en', 1, 'https://ror.org/02hqm2v55 Mahatma Gandhi Institute'),
(72148, 'https://ror.org/02hr94v50', 'no_lang_code', 1, 'https://ror.org/02hr94v50 Office of the Ombudsman for Bermuda'),
(72149, 'https://ror.org/02hrnt925', 'en', 1, 'https://ror.org/02hrnt925 Samuel Johnson Birthplace Museum'),
(72150, 'https://ror.org/02hs9bv14', 'en', 1, 'https://ror.org/02hs9bv14 Committee to Protect Journalists'),
(72151, 'https://ror.org/02hv72q61', 'en', 1, 'https://ror.org/02hv72q61 Center for Rural Strategies'),
(72152, 'https://ror.org/02hvh2w75', 'pt', 1, 'https://ror.org/02hvh2w75 Comissão Pastoral da Terra'),
(72153, 'https://ror.org/02hvmpx91', 'es', 1, 'https://ror.org/02hvmpx91 ACICAFOC'),
(72154, 'https://ror.org/02hw7mf60', 'en', 1, 'https://ror.org/02hw7mf60 Alfred Gillett Trust'),
(72155, 'https://ror.org/02hwd6186', 'no_lang_code', 1, 'https://ror.org/02hwd6186 Waelzholz (Brasil) Waelzholz Brasmetal Laminação'),
(72156, 'https://ror.org/02hzhm878', 'no_lang_code', 1, 'https://ror.org/02hzhm878 Spitfire Spark Change (United States)'),
(72157, 'https://ror.org/02j1gpv02', 'en', 1, 'https://ror.org/02j1gpv02 Great Lakes Institute for Strategic Studies'),
(72158, 'https://ror.org/02j3g5e35', 'en', 1, 'https://ror.org/02j3g5e35 Centre for the Study of Labour and Mobility'),
(72159, 'https://ror.org/02j5kt108', 'it', 1, 'https://ror.org/02j5kt108 Ospedale Veris Delli Ponti Scorrano'),
(72160, 'https://ror.org/02j79g662', 'en', 1, 'https://ror.org/02j79g662 Holocaust Educational Trust'),
(72161, 'https://ror.org/02j7asw37', 'en', 1, 'https://ror.org/02j7asw37 Moray Art Centre'),
(72162, 'https://ror.org/02j9vtb62', 'en', 1, 'https://ror.org/02j9vtb62 Perth & Kinross Association of Voluntary Service'),
(72163, 'https://ror.org/02ja16p07', 'no_lang_code', 1, 'https://ror.org/02ja16p07 Accumed Systems (United States)'),
(72164, 'https://ror.org/02ja69h88', 'en', 1, 'https://ror.org/02ja69h88 The Society of Portrait Sculptors'),
(72165, 'https://ror.org/02jcdkn30', 'no_lang_code', 1, 'https://ror.org/02jcdkn30 Forum 2000'),
(72166, 'https://ror.org/02jcjsk08', 'no_lang_code', 1, 'https://ror.org/02jcjsk08 DRG Undersea Consulting (United States)'),
(72167, 'https://ror.org/02jek3571', 'no_lang_code', 1, 'https://ror.org/02jek3571 Fluoresprobe Sciences (United States)'),
(72168, 'https://ror.org/02jfkxh18', 'en', 1, 'https://ror.org/02jfkxh18 Vietnam National University of Forestry'),
(72169, 'https://ror.org/02jgmf723', 'en', 1, 'https://ror.org/02jgmf723 National Health Insurance Fund'),
(72170, 'https://ror.org/02jk5za03', 'en', 1, 'https://ror.org/02jk5za03 Women''s Rights International'),
(72171, 'https://ror.org/02jqq3312', 'en', 1, 'https://ror.org/02jqq3312 Maidstone Museum'),
(72172, 'https://ror.org/02jqsv109', 'en', 1, 'https://ror.org/02jqsv109 Margarita Rudomino All-Russia State Library for Foreign Literature Библиотека иностранной Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹'),
(72173, 'https://ror.org/02jqwk197', 'en', 1, 'https://ror.org/02jqwk197 National Centre for Product Design and Development Research'),
(72174, 'https://ror.org/02jv6dk34', 'en', 1, 'https://ror.org/02jv6dk34 Southern Environmental Law Center'),
(72175, 'https://ror.org/02jvvnm32', 'no_lang_code', 1, 'https://ror.org/02jvvnm32 Cortus Energy (Sweden)'),
(72176, 'https://ror.org/02jwd3a38', 'no_lang_code', 1, 'https://ror.org/02jwd3a38 Minerva Laboratories (United Kingdom)'),
(72177, 'https://ror.org/02jwx1966', 'en', 1, 'https://ror.org/02jwx1966 Good Jobs First'),
(72178, 'https://ror.org/02jyhs326', 'en', 1, 'https://ror.org/02jyhs326 Ukrainian National Museum'),
(72179, 'https://ror.org/02k0b2995', 'en', 1, 'https://ror.org/02k0b2995 Novita'),
(72180, 'https://ror.org/02k0mqf95', 'en', 1, 'https://ror.org/02k0mqf95 Campaign to End Loneliness'),
(72181, 'https://ror.org/02k1g2k85', 'no_lang_code', 1, 'https://ror.org/02k1g2k85 Sunwave Solutions (China)'),
(72182, 'https://ror.org/02k1py847', 'en', 1, 'https://ror.org/02k1py847 Conservation through Poverty Alleviation International'),
(72183, 'https://ror.org/02k2w4w13', 'en', 1, 'https://ror.org/02k2w4w13 Rama Hospital & Research Centre'),
(72184, 'https://ror.org/02k35v311', 'es', 1, 'https://ror.org/02k35v311 Benemerito Hospital General con Especialidades "Juan Maria de Salvatierra"'),
(72185, 'https://ror.org/02k3c5b92', 'en', 1, 'https://ror.org/02k3c5b92 Bee Farmers Association'),
(72186, 'https://ror.org/02k3cg524', 'fi', 1, 'https://ror.org/02k3cg524 Demos Helsinki'),
(72187, 'https://ror.org/02k3grx88', 'no_lang_code', 1, 'https://ror.org/02k3grx88 KazMunayGas (Kazakhstan) ŅšŠ°Š·ŠœŅ±Š½Š°Š¹Š“Š°Š·'),
(72188, 'https://ror.org/02k6hnt94', 'pt', 1, 'https://ror.org/02k6hnt94 Hospital Napoleão Laureano'),
(72189, 'https://ror.org/02k6zwz49', 'no_lang_code', 1, 'https://ror.org/02k6zwz49 Zakłady Magnezytowe (Poland)'),
(72190, 'https://ror.org/02k7ex914', 'pl', 1, 'https://ror.org/02k7ex914 Institute of Law Studies Instytut Nauk Prawnych'),
(72191, 'https://ror.org/02k8em959', 'en', 1, 'https://ror.org/02k8em959 Housing Studies Association'),
(72192, 'https://ror.org/02kb5g732', 'no_lang_code', 1, 'https://ror.org/02kb5g732 Aurelia Bioscience (United Kingdom)'),
(72193, 'https://ror.org/02kchqd71', 'en', 1, 'https://ror.org/02kchqd71 Milnbank Housing Association'),
(72194, 'https://ror.org/02kdshq54', 'en', 1, 'https://ror.org/02kdshq54 Connecticut Statistical Analysis Center'),
(72195, 'https://ror.org/02kf03x09', 'en', 1, 'https://ror.org/02kf03x09 National Center for Tuberculosis and Lung Disease'),
(72196, 'https://ror.org/02kg10n19', 'no_lang_code', 1, 'https://ror.org/02kg10n19 Design Intelligence (United States)'),
(72197, 'https://ror.org/02kgjbk95', 'no_lang_code', 1, 'https://ror.org/02kgjbk95 Advanced Media Research (United States)'),
(72198, 'https://ror.org/02kgsyn41', 'no_lang_code', 1, 'https://ror.org/02kgsyn41 Vacuumschmelze (Germany)'),
(72199, 'https://ror.org/02kh9xe88', 'no_lang_code', 1, 'https://ror.org/02kh9xe88 Western Energy Support & Technology (United States)'),
(72200, 'https://ror.org/02kje8711', 'en', 1, 'https://ror.org/02kje8711 National Slate Museum'),
(72201, 'https://ror.org/02kjm5h73', 'no_lang_code', 1, 'https://ror.org/02kjm5h73 Velez College'),
(72202, 'https://ror.org/02kkwr259', 'it', 1, 'https://ror.org/02kkwr259 Ospedale Ferdinando Veneziale di Isernia'),
(72203, 'https://ror.org/02kmv2v81', 'no_lang_code', 1, 'https://ror.org/02kmv2v81 Innovia Medical (United Kingdom)'),
(72204, 'https://ror.org/02kn8f882', 'no_lang_code', 1, 'https://ror.org/02kn8f882 Taiwan Futures Exchange (Taiwan) č‡ŗē£ęœŸč²Øäŗ¤ę˜“ę‰€'),
(72205, 'https://ror.org/02kpprd93', 'de', 1, 'https://ror.org/02kpprd93 Gesellschaft zur Fƶrderung von Medizin-, Bio- und Umwelttechnologien'),
(72206, 'https://ror.org/02kswk287', 'en', 1, 'https://ror.org/02kswk287 Isles of Scilly Museum'),
(72207, 'https://ror.org/02kxj7753', 'no_lang_code', 1, 'https://ror.org/02kxj7753 Creative MicroSystems (United States)'),
(72208, 'https://ror.org/02kydsx93', 'en', 1, 'https://ror.org/02kydsx93 San Francisco County Transportation Authority'),
(72209, 'https://ror.org/02kzjed53', 'no_lang_code', 1, 'https://ror.org/02kzjed53 Value Chain Lab (United Kingdom)'),
(72210, 'https://ror.org/02m23a643', 'no_lang_code', 1, 'https://ror.org/02m23a643 Fallbrook Engineering (United States)'),
(72211, 'https://ror.org/02m2edj71', 'no_lang_code', 1, 'https://ror.org/02m2edj71 Aldatu Biosciences (United States)'),
(72212, 'https://ror.org/02m2ek616', 'no_lang_code', 1, 'https://ror.org/02m2ek616 N&N Pharmaceuticals (United States)'),
(72213, 'https://ror.org/02m2t8v35', 'no_lang_code', 1, 'https://ror.org/02m2t8v35 Mahle (Brazil)'),
(72214, 'https://ror.org/02m4de687', 'no_lang_code', 1, 'https://ror.org/02m4de687 Reed Medical (United Kingdom)'),
(72215, 'https://ror.org/02m51bd24', 'en', 1, 'https://ror.org/02m51bd24 British Bobsleigh and Skeleton Association'),
(72216, 'https://ror.org/02m528480', 'no_lang_code', 1, 'https://ror.org/02m528480 Cythelia (France)'),
(72217, 'https://ror.org/02m633z80', 'en', 1, 'https://ror.org/02m633z80 National Education Union'),
(72218, 'https://ror.org/02m7qex15', 'en', 1, 'https://ror.org/02m7qex15 South West Yorkshire Partnership NHS Foundation Trust'),
(72219, 'https://ror.org/02m8wcg72', 'da', 1, 'https://ror.org/02m8wcg72 Kroppedal Museum'),
(72220, 'https://ror.org/02m93y750', 'en', 1, 'https://ror.org/02m93y750 Center for Family Policy and Practice'),
(72221, 'https://ror.org/02m9cpr85', 'en', 1, 'https://ror.org/02m9cpr85 Dag Hammarskjƶld Foundation'),
(72222, 'https://ror.org/02ma9m113', 'it', 1, 'https://ror.org/02ma9m113 Humanitas Castelli'),
(72223, 'https://ror.org/02mb6z761', 'en', 1, 'https://ror.org/02mb6z761 Myanmar Institute of Theology'),
(72224, 'https://ror.org/02md98x79', 'en', 1, 'https://ror.org/02md98x79 National White Collar Crime Center'),
(72225, 'https://ror.org/02mdvw277', 'no_lang_code', 1, 'https://ror.org/02mdvw277 Hanby Environmental (United States)'),
(72226, 'https://ror.org/02mf18m55', 'en', 1, 'https://ror.org/02mf18m55 Beijing Administration Institute åŒ—äŗ¬č”Œę”æå­¦é™¢'),
(72227, 'https://ror.org/02mjbb212', 'ga', 1, 'https://ror.org/02mjbb212 Glór'),
(72228, 'https://ror.org/02mjd7y85', 'en', 1, 'https://ror.org/02mjd7y85 Homeland Security and Emergency Management'),
(72229, 'https://ror.org/02mjj7x54', 'en', 1, 'https://ror.org/02mjj7x54 Sussex Police'),
(72230, 'https://ror.org/02mjvaa14', 'no_lang_code', 1, 'https://ror.org/02mjvaa14 Arctic Business Incubator (Sweden)'),
(72231, 'https://ror.org/02mpe3v47', 'en', 1, 'https://ror.org/02mpe3v47 Fund for Constitutional Government'),
(72232, 'https://ror.org/02mpfyr18', 'no_lang_code', 1, 'https://ror.org/02mpfyr18 AxoSim (United States)'),
(72233, 'https://ror.org/02mpx2r50', 'en', 1, 'https://ror.org/02mpx2r50 The Alexander Centre'),
(72234, 'https://ror.org/02mq6af82', 'en', 1, 'https://ror.org/02mq6af82 Rockwood Leadership Institute'),
(72235, 'https://ror.org/02mqmfa65', 'no_lang_code', 1, 'https://ror.org/02mqmfa65 Liberty Ammunition (United States)'),
(72236, 'https://ror.org/02mrr4460', 'en', 1, 'https://ror.org/02mrr4460 Institute for Education in International Media'),
(72237, 'https://ror.org/02mt5f456', 'en', 1, 'https://ror.org/02mt5f456 Regional Centre of Advanced Technologies and Materials RegionÔlní Centrum Pokrocilych Technologií a MateriÔlů'),
(72238, 'https://ror.org/02mwnrf70', 'en', 1, 'https://ror.org/02mwnrf70 Race Equality Foundation'),
(72239, 'https://ror.org/02mwtkt95', 'en', 1, 'https://ror.org/02mwtkt95 Deutschen Zentrums für Kinder- und Jugendrheumatologie German Center for Pediatric and Adolescent Rheumatology'),
(72240, 'https://ror.org/02mwx3w72', 'en', 1, 'https://ror.org/02mwx3w72 Food and Finance High School'),
(72241, 'https://ror.org/02mx3q756', 'en', 1, 'https://ror.org/02mx3q756 Better Life Association for Comprehensive Development'),
(72242, 'https://ror.org/02n0t1662', 'no_lang_code', 1, 'https://ror.org/02n0t1662 Airborne Innovations (United States)'),
(72243, 'https://ror.org/02n56bb75', 'en', 1, 'https://ror.org/02n56bb75 Ministry of Scientific Research and Innovation MinistĆØre de la Recherche Scientifique et de l''Innovation'),
(72244, 'https://ror.org/02n57gs70', 'en', 1, 'https://ror.org/02n57gs70 Holocaust Survivors Friendship Association'),
(72245, 'https://ror.org/02n5j7g52', 'en', 1, 'https://ror.org/02n5j7g52 R&G Associates'),
(72246, 'https://ror.org/02n6c2636', 'en', 1, 'https://ror.org/02n6c2636 The Constitution Society'),
(72247, 'https://ror.org/02n7f7n49', 'en', 1, 'https://ror.org/02n7f7n49 Diplomatic Academy of Vietnam Hį»c viện Ngoįŗ”i giao Việt Nam'),
(72248, 'https://ror.org/02n7nje79', 'no_lang_code', 1, 'https://ror.org/02n7nje79 Creative Aero Engineering Solutions (United States)'),
(72249, 'https://ror.org/02n82df02', 'no_lang_code', 1, 'https://ror.org/02n82df02 Argil (United States)'),
(72250, 'https://ror.org/02na2cx67', 'no_lang_code', 1, 'https://ror.org/02na2cx67 Miltran (United States)'),
(72251, 'https://ror.org/02nart969', 'en', 1, 'https://ror.org/02nart969 International Aluminium Institute'),
(72252, 'https://ror.org/02nd24c78', 'en', 1, 'https://ror.org/02nd24c78 Men''s Health Forum'),
(72253, 'https://ror.org/02ndp2s95', 'en', 1, 'https://ror.org/02ndp2s95 The UK Cards Association'),
(72254, 'https://ror.org/02ndpa275', 'no_lang_code', 1, 'https://ror.org/02ndpa275 Pilloxa (Sweden)'),
(72255, 'https://ror.org/02ngckp60', 'en', 1, 'https://ror.org/02ngckp60 Citizens’ Housing and Planning Association'),
(72256, 'https://ror.org/02njsw853', 'no_lang_code', 1, 'https://ror.org/02njsw853 AAVogen (United States)'),
(72257, 'https://ror.org/02nmjb623', 'no_lang_code', 1, 'https://ror.org/02nmjb623 Xi''an City Planning&Design Institute (China) č„æå®‰åø‚åŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(72258, 'https://ror.org/02nmtzc87', 'no_lang_code', 1, 'https://ror.org/02nmtzc87 Bitlink (Australia)'),
(72259, 'https://ror.org/02nnx0145', 'en', 1, 'https://ror.org/02nnx0145 Ekaterinburg Academy of Contemporary Art Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ современного ŠøŃŠŗŃƒŃŃŃ‚ва'),
(72260, 'https://ror.org/02np7f480', 'en', 1, 'https://ror.org/02np7f480 Pham Van Dong University TrĘ°į»ng ĐẔi hį»c Phįŗ”m Văn Đồng'),
(72261, 'https://ror.org/02nq2ye56', 'no_lang_code', 1, 'https://ror.org/02nq2ye56 Colorado Power Electronics (United States)'),
(72262, 'https://ror.org/02nq88n11', 'en', 1, 'https://ror.org/02nq88n11 Gamaliel'),
(72263, 'https://ror.org/02nqa0m70', 'en', 1, 'https://ror.org/02nqa0m70 Schieffelin Institute of Health Research and Leprosy Centre'),
(72264, 'https://ror.org/02nqa6n73', 'no_lang_code', 1, 'https://ror.org/02nqa6n73 Eskra Technical Products (United States)'),
(72265, 'https://ror.org/02nr4yf74', 'en', 1, 'https://ror.org/02nr4yf74 Copenhagen Consensus Center'),
(72266, 'https://ror.org/02nr9m172', 'en', 1, 'https://ror.org/02nr9m172 Sheffield & Rotherham Wildlife Trust'),
(72267, 'https://ror.org/02nrznb68', 'en', 1, 'https://ror.org/02nrznb68 Energy Programs Consortium'),
(72268, 'https://ror.org/02ns8e576', 'en', 1, 'https://ror.org/02ns8e576 Naval Dockyards Society'),
(72269, 'https://ror.org/02nstsj42', 'en', 1, 'https://ror.org/02nstsj42 BayMark Health Services'),
(72270, 'https://ror.org/02nsvrr55', 'en', 1, 'https://ror.org/02nsvrr55 Centre for Conservation Biology & Sustainable Development'),
(72271, 'https://ror.org/02nwxkn91', 'no_lang_code', 1, 'https://ror.org/02nwxkn91 Solkompaniet (Sweden)'),
(72272, 'https://ror.org/02nxjx545', 'en', 1, 'https://ror.org/02nxjx545 The Sentencing Project'),
(72273, 'https://ror.org/02nz60c10', 'en', 1, 'https://ror.org/02nz60c10 Action Center on Race and the Economy'),
(72274, 'https://ror.org/02nzb0q40', 'fr', 1, 'https://ror.org/02nzb0q40 SƩcuritƩ des Aliments et Microbiologie'),
(72275, 'https://ror.org/02p12t634', 'no_lang_code', 1, 'https://ror.org/02p12t634 Karnataka Chitrakala Parishath ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²šą²æą²¤ą³ą²°ą²•ą²²ą²¾ ą²Ŗą²°ą²æą²·ą²¤ą³'),
(72276, 'https://ror.org/02p1e8c91', 'en', 1, 'https://ror.org/02p1e8c91 National Phenotypic Screening Centre'),
(72277, 'https://ror.org/02p6hd207', 'no_lang_code', 1, 'https://ror.org/02p6hd207 MMR Technologies (United States)'),
(72278, 'https://ror.org/02p6rwd19', 'no_lang_code', 1, 'https://ror.org/02p6rwd19 Shalom Hartman Institute'),
(72279, 'https://ror.org/02p6xqb83', 'en', 1, 'https://ror.org/02p6xqb83 Deaf Studies Trust'),
(72280, 'https://ror.org/02p7tyt03', 'no_lang_code', 1, 'https://ror.org/02p7tyt03 SenSanna (United States)'),
(72281, 'https://ror.org/02paymf25', 'no_lang_code', 1, 'https://ror.org/02paymf25 VeterinƦrmedicinsk Industriforening'),
(72282, 'https://ror.org/02pbw4p75', 'en', 1, 'https://ror.org/02pbw4p75 Association of Illustrators'),
(72283, 'https://ror.org/02pctja18', 'no_lang_code', 1, 'https://ror.org/02pctja18 Ascilion (Sweden)'),
(72284, 'https://ror.org/02pd2vd80', 'en', 1, 'https://ror.org/02pd2vd80 Chicago Arts Partnerships in Education'),
(72285, 'https://ror.org/02pep9116', 'no_lang_code', 1, 'https://ror.org/02pep9116 GlyTech (United States)'),
(72286, 'https://ror.org/02pf3fv69', 'en', 1, 'https://ror.org/02pf3fv69 Central Bank of Turkmenistan Türkmenistanyň Merkezi Banky'),
(72287, 'https://ror.org/02pgyqd67', 'en', 1, 'https://ror.org/02pgyqd67 Asian Arts Agency'),
(72288, 'https://ror.org/02pheq715', 'no_lang_code', 1, 'https://ror.org/02pheq715 Applied Engineering Management (United States)'),
(72289, 'https://ror.org/02pk1eg59', 'en', 1, 'https://ror.org/02pk1eg59 Cromarty History Society'),
(72290, 'https://ror.org/02pr1pc58', 'no_lang_code', 1, 'https://ror.org/02pr1pc58 Inhibrx (United States)'),
(72291, 'https://ror.org/02ptdcx04', 'en', 1, 'https://ror.org/02ptdcx04 West Midlands Police'),
(72292, 'https://ror.org/02pv3ns50', 'no_lang_code', 1, 'https://ror.org/02pv3ns50 Go Sheng'),
(72293, 'https://ror.org/02pvd8a14', 'en', 1, 'https://ror.org/02pvd8a14 The Schumacher Institute'),
(72294, 'https://ror.org/02pvnr704', 'en', 1, 'https://ror.org/02pvnr704 Parliamentary Office of Science and Technology'),
(72295, 'https://ror.org/02pvvhr41', 'no_lang_code', 1, 'https://ror.org/02pvvhr41 Carrera Bioscience (United States)'),
(72296, 'https://ror.org/02pvz5132', 'en', 1, 'https://ror.org/02pvz5132 Cumberland and Westmorland Antiquarian and Archaeological Society'),
(72297, 'https://ror.org/02pzza935', 'en', 1, 'https://ror.org/02pzza935 Culture Resource Ų§Ł„Ł…ŁˆŲ±ŲÆ Ų§Ł„Ų«Ł‚Ų§ŁŁŠ'),
(72298, 'https://ror.org/02q0p6x28', 'en', 1, 'https://ror.org/02q0p6x28 Institute of Literary Research Instytut Badań Literackich Polskiej Akademii Nauk'),
(72299, 'https://ror.org/02q189e70', 'no_lang_code', 1, 'https://ror.org/02q189e70 OptiBiotix (United Kingdom)'),
(72300, 'https://ror.org/02q27pq78', 'en', 1, 'https://ror.org/02q27pq78 South East Rivers Trust'),
(72301, 'https://ror.org/02q284937', 'no_lang_code', 1, 'https://ror.org/02q284937 Corrdesa (United States)'),
(72302, 'https://ror.org/02q2kw246', 'en', 1, 'https://ror.org/02q2kw246 The Institute of Concrete Technology'),
(72303, 'https://ror.org/02q3gyw25', 'no_lang_code', 1, 'https://ror.org/02q3gyw25 Lipigon Pharmaceuticals (Sweden)'),
(72304, 'https://ror.org/02q53zc57', 'en', 1, 'https://ror.org/02q53zc57 Hackney Museum'),
(72305, 'https://ror.org/02q58a426', 'en', 1, 'https://ror.org/02q58a426 African Leadership Institute'),
(72306, 'https://ror.org/02q5pvy25', 'en', 1, 'https://ror.org/02q5pvy25 National Hispanic Media Coalition'),
(72307, 'https://ror.org/02qa6e442', 'no_lang_code', 1, 'https://ror.org/02qa6e442 Men-Tsee-Khang'),
(72308, 'https://ror.org/02qar2r61', 'no_lang_code', 1, 'https://ror.org/02qar2r61 Enigio Time (Sweden)'),
(72309, 'https://ror.org/02qb49x49', 'en', 1, 'https://ror.org/02qb49x49 Changes Community Health Project'),
(72310, 'https://ror.org/02qc0yf38', 'no_lang_code', 1, 'https://ror.org/02qc0yf38 LiveSchool (United States)'),
(72311, 'https://ror.org/02qcr0t64', 'no_lang_code', 1, 'https://ror.org/02qcr0t64 Endomimetics (United States)'),
(72312, 'https://ror.org/02qesd198', 'en', 1, 'https://ror.org/02qesd198 Public Media Alliance'),
(72313, 'https://ror.org/02qfrzf96', 'en', 1, 'https://ror.org/02qfrzf96 Isha Foundation'),
(72314, 'https://ror.org/02qgkae69', 'es', 1, 'https://ror.org/02qgkae69 Projazz Instituto Profesional'),
(72315, 'https://ror.org/02qhn8518', 'en', 1, 'https://ror.org/02qhn8518 Santa Fe Art Institute'),
(72316, 'https://ror.org/02qj00s11', 'en', 1, 'https://ror.org/02qj00s11 Center for International Policy'),
(72317, 'https://ror.org/02qjz4v31', 'no_lang_code', 1, 'https://ror.org/02qjz4v31 Arctan (United States)'),
(72318, 'https://ror.org/02qnz4080', 'en', 1, 'https://ror.org/02qnz4080 The Churches Conservation Trust'),
(72319, 'https://ror.org/02qp5k481', 'en', 1, 'https://ror.org/02qp5k481 In-Q-Tel'),
(72320, 'https://ror.org/02qpnf892', 'en', 1, 'https://ror.org/02qpnf892 Czech Association for the Study of Religions ČeskĆ” společnost pro religionistiku'),
(72321, 'https://ror.org/02qq5pa23', 'no_lang_code', 1, 'https://ror.org/02qq5pa23 Geospatial Research (United Kingdom)'),
(72322, 'https://ror.org/02qqz2g41', 'en', 1, 'https://ror.org/02qqz2g41 Welsh Refugee Council'),
(72323, 'https://ror.org/02qst3a08', 'en', 1, 'https://ror.org/02qst3a08 Crimea University of Culture Art and Tourism'),
(72324, 'https://ror.org/02qvc4v06', 'en', 1, 'https://ror.org/02qvc4v06 Massachusetts Budget and Policy Center'),
(72325, 'https://ror.org/02qvs5504', 'no_lang_code', 1, 'https://ror.org/02qvs5504 Artwork Conversion Software (United States)'),
(72326, 'https://ror.org/02qwv6g90', 'no_lang_code', 1, 'https://ror.org/02qwv6g90 Chab Dai'),
(72327, 'https://ror.org/02qwy8e97', 'it', 1, 'https://ror.org/02qwy8e97 Institute for Research on Engines Istituto Motori'),
(72328, 'https://ror.org/02r06d562', 'en', 1, 'https://ror.org/02r06d562 National Institute of Arts l''Institut National des Arts'),
(72329, 'https://ror.org/02r1dkx80', 'en', 1, 'https://ror.org/02r1dkx80 Hį»c viện Y Dược hį»c Cổ truyền Việt Nam Viet Nam University Of Traditional Medicine'),
(72330, 'https://ror.org/02r3mzm63', 'en', 1, 'https://ror.org/02r3mzm63 Center for Civic Policy'),
(72331, 'https://ror.org/02r4h2g04', 'en', 1, 'https://ror.org/02r4h2g04 Association for Prevention and Control of Rabies in India'),
(72332, 'https://ror.org/02r4q7v71', 'en', 1, 'https://ror.org/02r4q7v71 Association of Child Psychotherapists'),
(72333, 'https://ror.org/02r4tgk06', 'en', 1, 'https://ror.org/02r4tgk06 International Renaissance Foundation ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ фонГ "Š’Ń–Š“Ń€Š¾Š“Š¶ŠµŠ½Š½Ń'),
(72334, 'https://ror.org/02r6bnp18', 'en', 1, 'https://ror.org/02r6bnp18 Chance for Education Å ance na vzdělĆ”nĆ­'),
(72335, 'https://ror.org/02r6vy896', 'no_lang_code', 1, 'https://ror.org/02r6vy896 Adams Business Associates (United Kingdom)'),
(72336, 'https://ror.org/02r802v31', 'no_lang_code', 1, 'https://ror.org/02r802v31 Fortem Technologies (United States)'),
(72337, 'https://ror.org/02r895s37', 'no_lang_code', 1, 'https://ror.org/02r895s37 Kibow Biotech (United States)'),
(72338, 'https://ror.org/02raw1z52', 'no_lang_code', 1, 'https://ror.org/02raw1z52 Countervail Corporation (United States)'),
(72339, 'https://ror.org/02rd7vq77', 'en', 1, 'https://ror.org/02rd7vq77 Berkhamsted and District Archaeological Society'),
(72340, 'https://ror.org/02reydp80', 'no_lang_code', 1, 'https://ror.org/02reydp80 Glucan Biorenewables (United States)'),
(72341, 'https://ror.org/02rfbsc53', 'fr', 1, 'https://ror.org/02rfbsc53 Institut SupĆ©rieur des Ɖtudes Technologiques en Communications de Tunis لمعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© في Ų§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ ŲØŲŖŁˆŁ†Ų³'),
(72342, 'https://ror.org/02rjrfe33', 'en', 1, 'https://ror.org/02rjrfe33 Earthjustice'),
(72343, 'https://ror.org/02rmnz491', 'en', 1, 'https://ror.org/02rmnz491 Magna'),
(72344, 'https://ror.org/02rpeh167', 'en', 1, 'https://ror.org/02rpeh167 Green Innovation and Development Centre Trung tâm PhÔt triển SÔng tẔo Xanh'),
(72345, 'https://ror.org/02rr7cf98', 'no_lang_code', 1, 'https://ror.org/02rr7cf98 Registry Trust (United Kingdom)'),
(72346, 'https://ror.org/02rr9hy25', 'no_lang_code', 1, 'https://ror.org/02rr9hy25 AMPAC (United States)'),
(72347, 'https://ror.org/02rrq9749', 'en', 1, 'https://ror.org/02rrq9749 Amnesty International Brazil'),
(72348, 'https://ror.org/02rs65g13', 'no_lang_code', 1, 'https://ror.org/02rs65g13 Creavo (United Kingdom)'),
(72349, 'https://ror.org/02rshjz42', 'en', 1, 'https://ror.org/02rshjz42 Northumbria Police'),
(72350, 'https://ror.org/02rtcze97', 'en', 1, 'https://ror.org/02rtcze97 Dansk Byplanlaboratorium The Danish Town Planning Institute'),
(72351, 'https://ror.org/02rx89054', 'de', 1, 'https://ror.org/02rx89054 Die Paracelsus Heilpraktikerschulen'),
(72352, 'https://ror.org/02rzxrg25', 'it', 1, 'https://ror.org/02rzxrg25 Opera del Vocabolario Italiano'),
(72353, 'https://ror.org/02s01qb70', 'en', 1, 'https://ror.org/02s01qb70 Scarborough Museums Trust'),
(72354, 'https://ror.org/02s03gc27', 'en', 1, 'https://ror.org/02s03gc27 Metta Development Foundation'),
(72355, 'https://ror.org/02s040f34', 'es', 1, 'https://ror.org/02s040f34 Instituto de Investigaciones en Ciencias Agrarias de Rosario'),
(72356, 'https://ror.org/02s1nfr38', 'en', 1, 'https://ror.org/02s1nfr38 GDP Ayurvedic University'),
(72357, 'https://ror.org/02s29db36', 'fr', 1, 'https://ror.org/02s29db36 Kahuzi-BiƩga National Park'),
(72358, 'https://ror.org/02s3m2561', 'en', 1, 'https://ror.org/02s3m2561 Health Services and Performance Research Laboratory'),
(72359, 'https://ror.org/02s437n13', 'en', 1, 'https://ror.org/02s437n13 The Textile Institute'),
(72360, 'https://ror.org/02s5mpe65', 'en', 1, 'https://ror.org/02s5mpe65 The Intercultural Communication Institute'),
(72361, 'https://ror.org/02s6awq69', 'en', 1, 'https://ror.org/02s6awq69 Institute for Nonprofit News'),
(72362, 'https://ror.org/02s6maw65', 'pt', 1, 'https://ror.org/02s6maw65 Faculdades Guarulhos, Faculdades Integradas de Ciências Humanas, Saúde e Educação de Guarulhos'),
(72363, 'https://ror.org/02s6z4m47', 'en', 1, 'https://ror.org/02s6z4m47 Warwickshire Wildlife Trust'),
(72364, 'https://ror.org/02s7vda12', 'en', 1, 'https://ror.org/02s7vda12 Association of Breastfeeding Mothers'),
(72365, 'https://ror.org/02s7xpw31', 'de', 1, 'https://ror.org/02s7xpw31 St. Josef Krankenhaus'),
(72366, 'https://ror.org/02s9xjj68', 'en', 1, 'https://ror.org/02s9xjj68 Hansard Society'),
(72367, 'https://ror.org/02sbgzg70', 'en', 1, 'https://ror.org/02sbgzg70 Vine Trust'),
(72368, 'https://ror.org/02sc13d13', 'en', 1, 'https://ror.org/02sc13d13 Pakistan Muslim Centre'),
(72369, 'https://ror.org/02scqxw19', 'en', 1, 'https://ror.org/02scqxw19 Art UK'),
(72370, 'https://ror.org/02sdyzy02', 'no_lang_code', 1, 'https://ror.org/02sdyzy02 Moxtek (United States)'),
(72371, 'https://ror.org/02seb1k33', 'en', 1, 'https://ror.org/02seb1k33 Freight Transport Association'),
(72372, 'https://ror.org/02sfgx138', 'en', 1, 'https://ror.org/02sfgx138 Abogados y Abogadas del NOA en Derechos Humanos y Estudios Sociales Lawyers and Advocates of Northwest and Human Rights Studies Social'),
(72373, 'https://ror.org/02sgc5k80', 'no_lang_code', 1, 'https://ror.org/02sgc5k80 Grinm Advanced Materials (China) ęœ‰ē ”ę–°ęę–™č‚”ä»½ęœ‰é™å…¬åø'),
(72374, 'https://ror.org/02sgg7t92', 'en', 1, 'https://ror.org/02sgg7t92 Scottish Hydrogen and Fuel Cell Association'),
(72375, 'https://ror.org/02sgk6k14', 'en', 1, 'https://ror.org/02sgk6k14 Local Government Association'),
(72376, 'https://ror.org/02sgs5a38', 'no_lang_code', 1, 'https://ror.org/02sgs5a38 Elcon (United States)'),
(72377, 'https://ror.org/02shbjh24', 'en', 1, 'https://ror.org/02shbjh24 Kazakh Research Institute of Plant Protection and Quarantine казахский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ защиты Šø карантина растений'),
(72378, 'https://ror.org/02sjm2q41', 'no_lang_code', 1, 'https://ror.org/02sjm2q41 Ecofiltration (Sweden)'),
(72379, 'https://ror.org/02sjwx878', 'en', 1, 'https://ror.org/02sjwx878 Condensed Matter Physics Research Center'),
(72380, 'https://ror.org/02sk64d67', 'de', 1, 'https://ror.org/02sk64d67 Inn-Salzach-Klinikum'),
(72381, 'https://ror.org/02sksqx64', 'en', 1, 'https://ror.org/02sksqx64 Division of Public Defender Services'),
(72382, 'https://ror.org/02skssx66', 'en', 1, 'https://ror.org/02skssx66 The School of Visual Theatre בית ההפר ×œ×Ŗ×™××˜×Ø×•×Ÿ חזותי'),
(72383, 'https://ror.org/02skwfk85', 'en', 1, 'https://ror.org/02skwfk85 United States Court of Appeals for the Ninth Circuit'),
(72384, 'https://ror.org/02sncd318', 'en', 1, 'https://ror.org/02sncd318 The Reed Institute'),
(72385, 'https://ror.org/02spn2261', 'no_lang_code', 1, 'https://ror.org/02spn2261 Netzsch (United Kingdom)'),
(72386, 'https://ror.org/02spn6s93', 'en', 1, 'https://ror.org/02spn6s93 National Energy Action'),
(72387, 'https://ror.org/02sqcyb22', 'en', 1, 'https://ror.org/02sqcyb22 The Bronx Academy of Arts and Dance'),
(72388, 'https://ror.org/02sqn1q51', 'en', 1, 'https://ror.org/02sqn1q51 Karakalpakstan State Museum of Art named after I.V. Savitsky Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ музей ŠøŃŠŗŃƒŃŃŃ‚в имени И. Š’. Давицкого'),
(72389, 'https://ror.org/02ss0eq82', 'en', 1, 'https://ror.org/02ss0eq82 Cognitive Engineering Research Institute'),
(72390, 'https://ror.org/02st6h303', 'en', 1, 'https://ror.org/02st6h303 Archives Nationales du SƩnƩgal National Archives of Senegal'),
(72391, 'https://ror.org/02st7ck79', 'en', 1, 'https://ror.org/02st7ck79 Museo Archeologico Nazionale di Napoli National Archaeological Museum'),
(72392, 'https://ror.org/02sv3ne29', 'en', 1, 'https://ror.org/02sv3ne29 Kaivalya Education Foundation'),
(72393, 'https://ror.org/02svwkx06', 'sv', 1, 'https://ror.org/02svwkx06 Svebio, Svenska Bioenergifƶreningen'),
(72394, 'https://ror.org/02svwte58', 'en', 1, 'https://ror.org/02svwte58 Places for People'),
(72395, 'https://ror.org/02sw18145', 'no_lang_code', 1, 'https://ror.org/02sw18145 Sveriges Television (Sweden)'),
(72396, 'https://ror.org/02sxph104', 'no_lang_code', 1, 'https://ror.org/02sxph104 Orsus Medical (United Kingdom)'),
(72397, 'https://ror.org/02sxtj815', 'sv', 1, 'https://ror.org/02sxtj815 Stockholms Stadsmission'),
(72398, 'https://ror.org/02szhc144', 'en', 1, 'https://ror.org/02szhc144 London Irish Centre'),
(72399, 'https://ror.org/02t2xcx21', 'en', 1, 'https://ror.org/02t2xcx21 Social Science Research and Evaluation'),
(72400, 'https://ror.org/02t3fqk56', 'no_lang_code', 1, 'https://ror.org/02t3fqk56 Digital Wave (United States)'),
(72401, 'https://ror.org/02t84ww49', 'en', 1, 'https://ror.org/02t84ww49 Pastoral Women''s Council'),
(72402, 'https://ror.org/02t975260', 'no_lang_code', 1, 'https://ror.org/02t975260 Metrum (Sweden)'),
(72403, 'https://ror.org/02tahzf33', 'en', 1, 'https://ror.org/02tahzf33 Centre for Human Rights and Policy Studies'),
(72404, 'https://ror.org/02tbvzj10', 'en', 1, 'https://ror.org/02tbvzj10 Ministry of Culture وزارة الثقافة'),
(72405, 'https://ror.org/02td76a59', 'no_lang_code', 1, 'https://ror.org/02td76a59 Cassia (United States)'),
(72406, 'https://ror.org/02tdmp521', 'no_lang_code', 1, 'https://ror.org/02tdmp521 Health Solutions (Sweden)'),
(72407, 'https://ror.org/02teqse50', 'en', 1, 'https://ror.org/02teqse50 Yorkshire & Humber Academic Health Science Network'),
(72408, 'https://ror.org/02tf15f56', 'en', 1, 'https://ror.org/02tf15f56 Gregson Arts & Community Centre'),
(72409, 'https://ror.org/02tg4ba33', 'en', 1, 'https://ror.org/02tg4ba33 Aarno Labs'),
(72410, 'https://ror.org/02tgy3j57', 'en', 1, 'https://ror.org/02tgy3j57 Uttarakhand Government'),
(72411, 'https://ror.org/02tjeq988', 'en', 1, 'https://ror.org/02tjeq988 Association of Media Women in Kenya'),
(72412, 'https://ror.org/02tjpr954', 'en', 1, 'https://ror.org/02tjpr954 Scottish Poetry Library'),
(72413, 'https://ror.org/02tkzjy36', 'no_lang_code', 1, 'https://ror.org/02tkzjy36 Sphere Medical (United Kingdom)'),
(72414, 'https://ror.org/02tn23649', 'no_lang_code', 1, 'https://ror.org/02tn23649 Litecom (United States)'),
(72415, 'https://ror.org/02tshe095', 'en', 1, 'https://ror.org/02tshe095 The National Trust'),
(72416, 'https://ror.org/02ttgy424', 'no_lang_code', 1, 'https://ror.org/02ttgy424 Innovative Materials Testing Technologies (United States)'),
(72417, 'https://ror.org/02twwc510', 'fr', 1, 'https://ror.org/02twwc510 Association des Journalistes Lesbiennes'),
(72418, 'https://ror.org/02v1vde28', 'no_lang_code', 1, 'https://ror.org/02v1vde28 MGT Capital Investments (United Kingdom)'),
(72419, 'https://ror.org/02v351s66', 'en', 1, 'https://ror.org/02v351s66 Australian Energy Council'),
(72420, 'https://ror.org/02v856y35', 'en', 1, 'https://ror.org/02v856y35 Association of British Orchestras'),
(72421, 'https://ror.org/02v857h75', 'no_lang_code', 1, 'https://ror.org/02v857h75 Deregallera (United Kingdom)'),
(72422, 'https://ror.org/02v9x8e34', 'no_lang_code', 1, 'https://ror.org/02v9x8e34 Ocunexus Therapeutics (United States)'),
(72423, 'https://ror.org/02vaea525', 'no_lang_code', 1, 'https://ror.org/02vaea525 Akston Biosciences (United States)'),
(72424, 'https://ror.org/02vd17947', 'no_lang_code', 1, 'https://ror.org/02vd17947 Thornhill Medical (Canada)'),
(72425, 'https://ror.org/02vdga848', 'no_lang_code', 1, 'https://ror.org/02vdga848 Neon Century (United Kingdom)'),
(72426, 'https://ror.org/02vdz8162', 'no_lang_code', 1, 'https://ror.org/02vdz8162 Natama'),
(72427, 'https://ror.org/02ve9pj54', 'no_lang_code', 1, 'https://ror.org/02ve9pj54 McCormick Stevenson (United States)'),
(72428, 'https://ror.org/02veev176', 'es', 1, 'https://ror.org/02veev176 Instituto Nacional de Biodiversidad'),
(72429, 'https://ror.org/02vhbqj87', 'no_lang_code', 1, 'https://ror.org/02vhbqj87 Arborsense (United States)'),
(72430, 'https://ror.org/02vhzww23', 'no_lang_code', 1, 'https://ror.org/02vhzww23 Aizu Hokurei High School'),
(72431, 'https://ror.org/02vjrjn58', 'no_lang_code', 1, 'https://ror.org/02vjrjn58 Logistic Gliders (United States)'),
(72432, 'https://ror.org/02vjtn770', 'en', 1, 'https://ror.org/02vjtn770 Internews'),
(72433, 'https://ror.org/02vkaxr54', 'en', 1, 'https://ror.org/02vkaxr54 Library of Tibetan Works and Archives'),
(72434, 'https://ror.org/02vmy5t39', 'en', 1, 'https://ror.org/02vmy5t39 Egyptian Foundation for Refugee Rights'),
(72435, 'https://ror.org/02vn97859', 'en', 1, 'https://ror.org/02vn97859 Arbejdermuseet The Workers Museum'),
(72436, 'https://ror.org/02vp3n735', 'en', 1, 'https://ror.org/02vp3n735 National Museum of Natural History ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¾ą¤•ą„ƒą¤¤ą¤æą¤• इतिहास ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ, नई ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(72437, 'https://ror.org/02vp84g54', 'no_lang_code', 1, 'https://ror.org/02vp84g54 Sebastian Conran Associates (United Kingdom)'),
(72438, 'https://ror.org/02vparz93', 'no_lang_code', 1, 'https://ror.org/02vparz93 Hexagon Interactive (United States)'),
(72439, 'https://ror.org/02vpqn405', 'en', 1, 'https://ror.org/02vpqn405 North Lanarkshire Council'),
(72440, 'https://ror.org/02vqmr172', 'en', 1, 'https://ror.org/02vqmr172 Baltic Sea Cultural Centre in Gdańsk Nadbałtyckie Centrum Kultury'),
(72441, 'https://ror.org/02vrphe47', 'en', 1, 'https://ror.org/02vrphe47 Swaziland National Trust Commission'),
(72442, 'https://ror.org/02vrtbq45', 'en', 1, 'https://ror.org/02vrtbq45 Gailearaidhean NĆ iseanta na h-Alba National Galleries of Scotland'),
(72443, 'https://ror.org/02vt6dp03', 'it', 1, 'https://ror.org/02vt6dp03 Fondazione Studio Marangoni'),
(72444, 'https://ror.org/02vt7ey12', 'en', 1, 'https://ror.org/02vt7ey12 FenArch'),
(72445, 'https://ror.org/02vw9ek23', 'pl', 1, 'https://ror.org/02vw9ek23 Dolnośląskie Centrum Onkologii'),
(72446, 'https://ror.org/02vx6cf88', 'en', 1, 'https://ror.org/02vx6cf88 What Works Network'),
(72447, 'https://ror.org/02vxq2c49', 'en', 1, 'https://ror.org/02vxq2c49 Royal Academy of Arts'),
(72448, 'https://ror.org/02vywq223', 'no_lang_code', 1, 'https://ror.org/02vywq223 Thinfilm (Sweden)'),
(72449, 'https://ror.org/02w00g107', 'en', 1, 'https://ror.org/02w00g107 World Education Services'),
(72450, 'https://ror.org/02w2g9n75', 'en', 1, 'https://ror.org/02w2g9n75 Stonebridge Trust'),
(72451, 'https://ror.org/02w3bxb19', 'es', 1, 'https://ror.org/02w3bxb19 Asociación Herpetológica Española'),
(72452, 'https://ror.org/02w9ngz08', 'no_lang_code', 1, 'https://ror.org/02w9ngz08 Verdesian (United Kingdom)'),
(72453, 'https://ror.org/02wbkeq74', 'en', 1, 'https://ror.org/02wbkeq74 Restoke'),
(72454, 'https://ror.org/02wbvek51', 'en', 1, 'https://ror.org/02wbvek51 Edna Manley College of the Visual and Performing Arts'),
(72455, 'https://ror.org/02wc3s860', 'no_lang_code', 1, 'https://ror.org/02wc3s860 Administración Nacional de Usinas y Trasmisiones Eléctricas National Administration of Power Plants and Electrical Transmissions (Uruguay)'),
(72456, 'https://ror.org/02wcg0z91', 'en', 1, 'https://ror.org/02wcg0z91 Quebec Labrador Foundation'),
(72457, 'https://ror.org/02wfk0r79', 'en', 1, 'https://ror.org/02wfk0r79 IWW Water Centre IWW Zentrum Wasser'),
(72458, 'https://ror.org/02wfpbs86', 'en', 1, 'https://ror.org/02wfpbs86 China Family Planning Association äø­å›½č®”åˆ’ē”Ÿč‚²åä¼š'),
(72459, 'https://ror.org/02wgwcd78', 'en', 1, 'https://ror.org/02wgwcd78 Ribble Rivers Trust'),
(72460, 'https://ror.org/02wgxhz61', 'no_lang_code', 1, 'https://ror.org/02wgxhz61 Arradiance (United States)'),
(72461, 'https://ror.org/02wgzkd84', 'no_lang_code', 1, 'https://ror.org/02wgzkd84 Graf Research (United States)'),
(72462, 'https://ror.org/02whsfz82', 'en', 1, 'https://ror.org/02whsfz82 Ministry of Defence'),
(72463, 'https://ror.org/02wkq6598', 'no_lang_code', 1, 'https://ror.org/02wkq6598 Rezonansi įƒ įƒ”įƒ–įƒįƒœįƒįƒœįƒ”įƒ˜'),
(72464, 'https://ror.org/02wkzzr31', 'en', 1, 'https://ror.org/02wkzzr31 Mikroskopie im Nanometerbereich und Molekularphysiologie des Gehirns Exzellenzcluster 171 — DFG Forschungszentrum 103 Nanoscale Microscopy and Molecular Physiology of the Brain Cluster of Excellence 171 — DFG Research Center 103'),
(72465, 'https://ror.org/02wmgyv80', 'no_lang_code', 1, 'https://ror.org/02wmgyv80 Brain Wellness and Biofeedback Center (United States)'),
(72466, 'https://ror.org/02wp5bm32', 'en', 1, 'https://ror.org/02wp5bm32 The National Holocaust Centre & Museum'),
(72467, 'https://ror.org/02wpzhj03', 'en', 1, 'https://ror.org/02wpzhj03 National Centre for Advocacy Studies'),
(72468, 'https://ror.org/02wq0b665', 'no_lang_code', 1, 'https://ror.org/02wq0b665 Short and Associates (United States)'),
(72469, 'https://ror.org/02wq53r66', 'no_lang_code', 1, 'https://ror.org/02wq53r66 Tpa (Poland)'),
(72470, 'https://ror.org/02wqcra62', 'es', 1, 'https://ror.org/02wqcra62 Fundación para el Desarrollo Integral del Valle del Cauca, ProPacífico'),
(72471, 'https://ror.org/02wrp2347', 'en', 1, 'https://ror.org/02wrp2347 International Bar Association'),
(72472, 'https://ror.org/02wtkky92', 'en', 1, 'https://ror.org/02wtkky92 The Emergency Planning Society'),
(72473, 'https://ror.org/02wvbw668', 'en', 1, 'https://ror.org/02wvbw668 The Marie Collins Foundation'),
(72474, 'https://ror.org/02wvrc195', 'no_lang_code', 1, 'https://ror.org/02wvrc195 Ahmic Aerospace (United States)'),
(72475, 'https://ror.org/02wvyyg66', 'en', 1, 'https://ror.org/02wvyyg66 Automotive Council UK'),
(72476, 'https://ror.org/02wwq2595', 'en', 1, 'https://ror.org/02wwq2595 Social Research Association'),
(72477, 'https://ror.org/02wxpbn78', 'en', 1, 'https://ror.org/02wxpbn78 Findhorn Foundation'),
(72478, 'https://ror.org/02wype295', 'no_lang_code', 1, 'https://ror.org/02wype295 Keystone Automation (United States)'),
(72479, 'https://ror.org/02x0dpr51', 'en', 1, 'https://ror.org/02x0dpr51 Intellectual Property Watch'),
(72480, 'https://ror.org/02x2r7t05', 'no_lang_code', 1, 'https://ror.org/02x2r7t05 Nitrochem (Poland)'),
(72481, 'https://ror.org/02x30pp94', 'en', 1, 'https://ror.org/02x30pp94 Royal Society for the Prevention of Accidents'),
(72482, 'https://ror.org/02x6wmw65', 'en', 1, 'https://ror.org/02x6wmw65 The National Centre for Early Music'),
(72483, 'https://ror.org/02x7tr046', 'no_lang_code', 1, 'https://ror.org/02x7tr046 China Regenerative Medicine International (China) äø­åœ‹å†ē”Ÿé†«å­øåœ‹éš›ęœ‰é™å…¬åø'),
(72484, 'https://ror.org/02x9fwx10', 'en', 1, 'https://ror.org/02x9fwx10 Ethiopian Space Science and Technology Institute į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆµį”įˆµ įˆ³į‹­įŠ•įˆµ įŠ„įŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ į‰°į‰‹įˆ'),
(72485, 'https://ror.org/02x9mk733', 'es', 1, 'https://ror.org/02x9mk733 Consejo Civil Mexicano para la Silvicultura Sostenible'),
(72486, 'https://ror.org/02xc11d36', 'en', 1, 'https://ror.org/02xc11d36 Chama cha Wanahabari Wanawake Tanzania Tanzania Media Women''s Association'),
(72487, 'https://ror.org/02xct9y17', 'en', 1, 'https://ror.org/02xct9y17 Amical Veterinary Centre'),
(72488, 'https://ror.org/02xd41x41', 'de', 1, 'https://ror.org/02xd41x41 Forio'),
(72489, 'https://ror.org/02xe5e906', 'no_lang_code', 1, 'https://ror.org/02xe5e906 Lupine Labs (United States)'),
(72490, 'https://ror.org/02xey9634', 'no_lang_code', 1, 'https://ror.org/02xey9634 Amazon (United Kingdom)'),
(72491, 'https://ror.org/02xf24951', 'en', 1, 'https://ror.org/02xf24951 Folkestone College'),
(72492, 'https://ror.org/02xf6ts56', 'en', 1, 'https://ror.org/02xf6ts56 National Flood Forum'),
(72493, 'https://ror.org/02xfc1977', 'no_lang_code', 1, 'https://ror.org/02xfc1977 Enthought (United States)'),
(72494, 'https://ror.org/02xhnj226', 'en', 1, 'https://ror.org/02xhnj226 Mobox Foundation'),
(72495, 'https://ror.org/02xkae269', 'no_lang_code', 1, 'https://ror.org/02xkae269 AptaMatrix (United States)'),
(72496, 'https://ror.org/02xkrvb18', 'en', 1, 'https://ror.org/02xkrvb18 Institute of Economic and Social Development Instituto de Desarrollo Económico y Social'),
(72497, 'https://ror.org/02xqbzx59', 'no_lang_code', 1, 'https://ror.org/02xqbzx59 SLE (United Kingdom)'),
(72498, 'https://ror.org/02xs8bd02', 'no_lang_code', 1, 'https://ror.org/02xs8bd02 Bergoz Instrumentation (France)'),
(72499, 'https://ror.org/02xvpd793', 'no_lang_code', 1, 'https://ror.org/02xvpd793 Heureka (United States)'),
(72500, 'https://ror.org/02xvpn995', 'no_lang_code', 1, 'https://ror.org/02xvpn995 Hawaii Hydrogen Carriers (United States)'),
(72501, 'https://ror.org/02xxmdw74', 'en', 1, 'https://ror.org/02xxmdw74 The Modernist Society'),
(72502, 'https://ror.org/02xy8q226', 'no_lang_code', 1, 'https://ror.org/02xy8q226 Composites Automation (United States)'),
(72503, 'https://ror.org/02xz4xc25', 'it', 1, 'https://ror.org/02xz4xc25 Istituto per le Tecnologie Didattiche'),
(72504, 'https://ror.org/02y0c7m95', 'en', 1, 'https://ror.org/02y0c7m95 United Nations University Institute on Computing and Society čÆåˆåœ‹å¤§å­øčØˆē®—čˆ‡ē¤¾ęœƒē ”ē©¶ę‰€'),
(72505, 'https://ror.org/02y14pt84', 'en', 1, 'https://ror.org/02y14pt84 Constitution and Reform Education Consortium'),
(72506, 'https://ror.org/02y2kap36', 'en', 1, 'https://ror.org/02y2kap36 Center for Global Policy Solutions'),
(72507, 'https://ror.org/02y5w9a36', 'en', 1, 'https://ror.org/02y5w9a36 United States Public Interest Research Group Education Fund'),
(72508, 'https://ror.org/02y7qqd86', 'no_lang_code', 1, 'https://ror.org/02y7qqd86 A123 Systems (United States)'),
(72509, 'https://ror.org/02y83px33', 'no_lang_code', 1, 'https://ror.org/02y83px33 UNNATI ą¤‰ą¤Øą„ą¤Øą¤¤ą¤æ'),
(72510, 'https://ror.org/02ya7hp91', 'en', 1, 'https://ror.org/02ya7hp91 ALZHIR Museum and Memorial Complex Музейно-Š¼ŠµŠ¼Š¾Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ комплекс "ŠŠ›Š–Š˜Š " ŠœŅ±Ń€Š°Š¶Š°Š¹ мен Ā«ŠŠ›Š–Š˜Š Ā» мемориалГы ŠŗŠµŃˆŠµŠ½Ń–Š½Ń–Ņ£'),
(72511, 'https://ror.org/02yay2r30', 'no_lang_code', 1, 'https://ror.org/02yay2r30 Zurad (Poland)'),
(72512, 'https://ror.org/02yczqn06', 'en', 1, 'https://ror.org/02yczqn06 UbonRatchathani Rice Research Center ąøØąø¹ąø™ąø¢ą¹Œąø§ąø“ąøˆąø±ąø¢ąø‚ą¹‰ąø²ąø§ąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(72513, 'https://ror.org/02ydg9890', 'en', 1, 'https://ror.org/02ydg9890 The Angelou Centre'),
(72514, 'https://ror.org/02yf26450', 'no_lang_code', 1, 'https://ror.org/02yf26450 InterVision Media (United States)'),
(72515, 'https://ror.org/02yghr808', 'en', 1, 'https://ror.org/02yghr808 Asian Institute of Medical Sciences'),
(72516, 'https://ror.org/02yj18485', 'no_lang_code', 1, 'https://ror.org/02yj18485 Engineering Matters (United States)'),
(72517, 'https://ror.org/02yjnch11', 'en', 1, 'https://ror.org/02yjnch11 Japanese Foundation for Multidisciplinary Treatment of Cancer ćŒć‚“é›†å­¦ēš„ę²»ē™‚ē ”ē©¶č²”å›£'),
(72518, 'https://ror.org/02ykpj445', 'en', 1, 'https://ror.org/02ykpj445 Windrush Foundation'),
(72519, 'https://ror.org/02ykxyy09', 'en', 1, 'https://ror.org/02ykxyy09 Southwest Florida Research'),
(72520, 'https://ror.org/02ynrme92', 'en', 1, 'https://ror.org/02ynrme92 Institute for the Conservation and Valorization of Cultural Heritage Istituto per la Conservazione e la Valorizzazione dei Beni Culturali'),
(72521, 'https://ror.org/02yq4nm28', 'en', 1, 'https://ror.org/02yq4nm28 New Horizon Association for Social Development Ł…Ų¤Ų³Ų³Ų© أفاق جديدة Ł„Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(72522, 'https://ror.org/02yqafw93', 'en', 1, 'https://ror.org/02yqafw93 Eurasia Foundation of Central Asia ФонГ Š•Š²Ń€Š°Š·ŠøŃ Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(72523, 'https://ror.org/02yqvqf05', 'en', 1, 'https://ror.org/02yqvqf05 Tranby National Indigenous Adult Education and Training'),
(72524, 'https://ror.org/02yqzy864', 'en', 1, 'https://ror.org/02yqzy864 Islamic Foundation for Ecology and Environmental Science'),
(72525, 'https://ror.org/02yt07f63', 'en', 1, 'https://ror.org/02yt07f63 Kent History and Library Centre'),
(72526, 'https://ror.org/02yv9pn14', 'en', 1, 'https://ror.org/02yv9pn14 Department of Finance'),
(72527, 'https://ror.org/02yvdyk59', 'no_lang_code', 1, 'https://ror.org/02yvdyk59 Ksaria (United States)'),
(72528, 'https://ror.org/02yvf4f12', 'en', 1, 'https://ror.org/02yvf4f12 Allied Media Projects'),
(72529, 'https://ror.org/02yw4ce16', 'no_lang_code', 1, 'https://ror.org/02yw4ce16 Surgical Energetics (United States)'),
(72530, 'https://ror.org/02yx0p576', 'no_lang_code', 1, 'https://ror.org/02yx0p576 Rantor (Sweden)'),
(72531, 'https://ror.org/02yy7ck11', 'no_lang_code', 1, 'https://ror.org/02yy7ck11 Metstat (United States)'),
(72532, 'https://ror.org/02z1j6f46', 'en', 1, 'https://ror.org/02z1j6f46 National Association of Eco-Friendly Salons and Spas'),
(72533, 'https://ror.org/02z1jjz10', 'no_lang_code', 1, 'https://ror.org/02z1jjz10 Ohmedics (United Kingdom)'),
(72534, 'https://ror.org/02z50b706', 'en', 1, 'https://ror.org/02z50b706 Mauritian Wildlife Foundation'),
(72535, 'https://ror.org/02z5b5082', 'en', 1, 'https://ror.org/02z5b5082 Belfast Healthy Cities');
INSERT INTO `rors` VALUES
(72536, 'https://ror.org/02z66xs22', 'en', 1, 'https://ror.org/02z66xs22 Institute of Travel & Tourism'),
(72537, 'https://ror.org/02z85gz67', 'en', 1, 'https://ror.org/02z85gz67 Institut Mittag-Leffler Mittag-Leffler Institute'),
(72538, 'https://ror.org/02zb0z080', 'no_lang_code', 1, 'https://ror.org/02zb0z080 Expektra (Sweden)'),
(72539, 'https://ror.org/02zcam055', 'en', 1, 'https://ror.org/02zcam055 Canfranc Underground Laboratory Laboratorio SubterrƔneo de Canfranc'),
(72540, 'https://ror.org/02zdtxx58', 'en', 1, 'https://ror.org/02zdtxx58 Wheat Trust'),
(72541, 'https://ror.org/02zfxwc21', 'en', 1, 'https://ror.org/02zfxwc21 Derbyshire Community Health Services NHS Foundation Trust'),
(72542, 'https://ror.org/02zggew82', 'en', 1, 'https://ror.org/02zggew82 Museum Of Modern Art'),
(72543, 'https://ror.org/02zgtky13', 'en', 1, 'https://ror.org/02zgtky13 Center for the Study of Childhood and Adolescence'),
(72544, 'https://ror.org/02zhx9s71', 'no_lang_code', 1, 'https://ror.org/02zhx9s71 Coltene (United States)'),
(72545, 'https://ror.org/02zm6bn93', 'en', 1, 'https://ror.org/02zm6bn93 Connections for Abused Women and their Children'),
(72546, 'https://ror.org/02znmjj29', 'no_lang_code', 1, 'https://ror.org/02znmjj29 High Force Research (United Kingdom)'),
(72547, 'https://ror.org/02zp3yd51', 'en', 1, 'https://ror.org/02zp3yd51 ARC Centre of Excellence for Gravitational Wave Discovery'),
(72548, 'https://ror.org/02ztp3208', 'no_lang_code', 1, 'https://ror.org/02ztp3208 Ashton Security Laboratories (United States)'),
(72549, 'https://ror.org/02zwdks66', 'no_lang_code', 1, 'https://ror.org/02zwdks66 Arete (United Kingdom)'),
(72550, 'https://ror.org/02zyhyh46', 'no_lang_code', 1, 'https://ror.org/02zyhyh46 Scottish Canals (United Kingdom)'),
(72551, 'https://ror.org/02zzhpq74', 'en', 1, 'https://ror.org/02zzhpq74 Kungliga Akademien fƶr de fria konsterna Royal Academy of Fine Arts'),
(72552, 'https://ror.org/030192654', 'en', 1, 'https://ror.org/030192654 National Museum of Korea 국립중앙박물꓀'),
(72553, 'https://ror.org/0303trx77', 'en', 1, 'https://ror.org/0303trx77 Green and Seidner Family Practice Associates'),
(72554, 'https://ror.org/0305p8k71', 'en', 1, 'https://ror.org/0305p8k71 East Suffolk Council'),
(72555, 'https://ror.org/03060mz76', 'en', 1, 'https://ror.org/03060mz76 Greater Boston Interfaith Organization'),
(72556, 'https://ror.org/0306jdn93', 'en', 1, 'https://ror.org/0306jdn93 The Ethical Small Traders Association'),
(72557, 'https://ror.org/0307m3652', 'en', 1, 'https://ror.org/0307m3652 African Migration and Development Policy Centre'),
(72558, 'https://ror.org/0307tfa50', 'no_lang_code', 1, 'https://ror.org/0307tfa50 Cambia'),
(72559, 'https://ror.org/0308a9489', 'no_lang_code', 1, 'https://ror.org/0308a9489 Bristol Maid (United Kingdom)'),
(72560, 'https://ror.org/030ajmr16', 'en', 1, 'https://ror.org/030ajmr16 Royal Society for the Conservation of Nature'),
(72561, 'https://ror.org/030b5a298', 'en', 1, 'https://ror.org/030b5a298 Japan Institute of International Affairs ę—„ęœ¬å›½éš›å•é”Œē ”ē©¶ę‰€'),
(72562, 'https://ror.org/030dxdj56', 'en', 1, 'https://ror.org/030dxdj56 Nanjing Collaborator Community Development Center å—äŗ¬åø‚åä½œč€…ē¤¾åŒŗå‘å±•äø­åæƒ'),
(72563, 'https://ror.org/030f1e584', 'no_lang_code', 1, 'https://ror.org/030f1e584 Cortrol Services (United States)'),
(72564, 'https://ror.org/030gh7x86', 'no_lang_code', 1, 'https://ror.org/030gh7x86 Immunosciences Lab (United States)'),
(72565, 'https://ror.org/030j6jf89', 'no_lang_code', 1, 'https://ror.org/030j6jf89 Trusted Information Consulting (Poland)'),
(72566, 'https://ror.org/030jahg19', 'no_lang_code', 1, 'https://ror.org/030jahg19 Intuidex (United States)'),
(72567, 'https://ror.org/030mda749', 'en', 1, 'https://ror.org/030mda749 San Diego Housing Federation'),
(72568, 'https://ror.org/030p2g996', 'en', 1, 'https://ror.org/030p2g996 Habib University حبيب ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(72569, 'https://ror.org/030pt9011', 'en', 1, 'https://ror.org/030pt9011 Swansea Museum'),
(72570, 'https://ror.org/030qgq632', 'en', 1, 'https://ror.org/030qgq632 Her Majesty''s Inspectorate of Probation'),
(72571, 'https://ror.org/030rrr070', 'en', 1, 'https://ror.org/030rrr070 West African Research Center'),
(72572, 'https://ror.org/030v2bt19', 'en', 1, 'https://ror.org/030v2bt19 Centro Intercultural de Estudios de Desiertos y OcƩanos Intercultural Center for the Study of Deserts and Oceans'),
(72573, 'https://ror.org/030v3z925', 'en', 1, 'https://ror.org/030v3z925 Newcastle United Foundation'),
(72574, 'https://ror.org/030vnt817', 'en', 1, 'https://ror.org/030vnt817 Goree Institute L’Institut GorĆ©e – Centre pour la DĆ©mocratie, le DĆ©vĆ©loppement et la Culture en Afrique'),
(72575, 'https://ror.org/030w0d671', 'en', 1, 'https://ror.org/030w0d671 Chetham’s Library'),
(72576, 'https://ror.org/030xj3f82', 'en', 1, 'https://ror.org/030xj3f82 Xingyi Normal University for Nationalities å…“ä¹‰ę°‘ę—åøˆčŒƒå­¦é™¢'),
(72577, 'https://ror.org/030ypsd98', 'en', 1, 'https://ror.org/030ypsd98 Free Word'),
(72578, 'https://ror.org/030z00d05', 'en', 1, 'https://ror.org/030z00d05 China Association for NGO Cooperation äø­å›½å›½é™…ę°‘é—“ē»„ē»‡åˆä½œäæƒčæ›ä¼š'),
(72579, 'https://ror.org/0311bpv57', 'en', 1, 'https://ror.org/0311bpv57 Lisburn & Castlereagh City Council'),
(72580, 'https://ror.org/0311x9y29', 'no_lang_code', 1, 'https://ror.org/0311x9y29 National Milk Records (United Kingdom)'),
(72581, 'https://ror.org/0316mxt43', 'no_lang_code', 1, 'https://ror.org/0316mxt43 Shanghai Museum äøŠęµ·åšē‰©é¦†'),
(72582, 'https://ror.org/0317wv817', 'en', 1, 'https://ror.org/0317wv817 British and Irish Association of Zoos and Aquariums'),
(72583, 'https://ror.org/031bfdk61', 'no_lang_code', 1, 'https://ror.org/031bfdk61 LM Group (United States)'),
(72584, 'https://ror.org/031bpj056', 'no_lang_code', 1, 'https://ror.org/031bpj056 Sea Level Research (United Kingdom)'),
(72585, 'https://ror.org/031bw2b05', 'en', 1, 'https://ror.org/031bw2b05 The New World Foundation'),
(72586, 'https://ror.org/031cp3483', 'no_lang_code', 1, 'https://ror.org/031cp3483 Gastops (United States)'),
(72587, 'https://ror.org/031exbw60', 'no_lang_code', 1, 'https://ror.org/031exbw60 Agilent Technologies (Brazil)'),
(72588, 'https://ror.org/031fg5f22', 'no_lang_code', 1, 'https://ror.org/031fg5f22 Cofactor Genomics (United States)'),
(72589, 'https://ror.org/031ftjj55', 'en', 1, 'https://ror.org/031ftjj55 Northumberland and Durham Family History Society'),
(72590, 'https://ror.org/031gwf224', 'en', 1, 'https://ror.org/031gwf224 Center For Biomarker Research In Medicine'),
(72591, 'https://ror.org/031h6k742', 'no_lang_code', 1, 'https://ror.org/031h6k742 Numedicus (United Kingdom)'),
(72592, 'https://ror.org/031hre343', 'en', 1, 'https://ror.org/031hre343 Emirates Center for Strategic Studies and Research'),
(72593, 'https://ror.org/031kmgt53', 'en', 1, 'https://ror.org/031kmgt53 Central Illinois Neuroscience Foundation'),
(72594, 'https://ror.org/031kpa286', 'en', 1, 'https://ror.org/031kpa286 Q & T Recherche Sherbrooke Q & T Research'),
(72595, 'https://ror.org/031ncfw92', 'no_lang_code', 1, 'https://ror.org/031ncfw92 PNDetector (Germany)'),
(72596, 'https://ror.org/031pan754', 'no_lang_code', 1, 'https://ror.org/031pan754 SentiOne (Poland)'),
(72597, 'https://ror.org/031r1z972', 'en', 1, 'https://ror.org/031r1z972 Fetal Care Research Foundation'),
(72598, 'https://ror.org/031r9ct64', 'no_lang_code', 1, 'https://ror.org/031r9ct64 Metastable Instruments (United States)'),
(72599, 'https://ror.org/031rh4g51', 'no_lang_code', 1, 'https://ror.org/031rh4g51 Soley (Poland)'),
(72600, 'https://ror.org/031rhbf61', 'en', 1, 'https://ror.org/031rhbf61 Philanthropy Northwest'),
(72601, 'https://ror.org/031s3hp40', 'es', 1, 'https://ror.org/031s3hp40 Stael Ruffinelli de Ortiz'),
(72602, 'https://ror.org/031v20w81', 'en', 1, 'https://ror.org/031v20w81 Blueenergy'),
(72603, 'https://ror.org/031w8tq77', 'no_lang_code', 1, 'https://ror.org/031w8tq77 Atrex Energy (United States)'),
(72604, 'https://ror.org/031xn1a76', 'no_lang_code', 1, 'https://ror.org/031xn1a76 Partners in Development for Research, Consulting and Training (Egypt) ؓركاؔ Ų§Ł„ŲŖŁ†Ł…ŁŠŲ© Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„Ų§Ų³ŲŖŲ“Ų§Ų±Ų§ŲŖ ŁˆŲ§Ł„ŲŖŲÆŲ±ŁŠŲØ'),
(72605, 'https://ror.org/031zahk15', 'en', 1, 'https://ror.org/031zahk15 Royal National Theatre'),
(72606, 'https://ror.org/0321hn990', 'no_lang_code', 1, 'https://ror.org/0321hn990 Ad-Tech (United States)'),
(72607, 'https://ror.org/0323bjj73', 'en', 1, 'https://ror.org/0323bjj73 Centre for Women’s Research'),
(72608, 'https://ror.org/0323znp25', 'fr', 1, 'https://ror.org/0323znp25 BibliothĆØque Universitaire des Langues et Civilisations'),
(72609, 'https://ror.org/03247t449', 'en', 1, 'https://ror.org/03247t449 Campbell College'),
(72610, 'https://ror.org/0327fb755', 'no_lang_code', 1, 'https://ror.org/0327fb755 Heat Management (Sweden)'),
(72611, 'https://ror.org/0327qwp89', 'no_lang_code', 1, 'https://ror.org/0327qwp89 Annexin Pharmaceuticals (Sweden)'),
(72612, 'https://ror.org/03283qn83', 'en', 1, 'https://ror.org/03283qn83 Society for Community Health Awareness Research and Action'),
(72613, 'https://ror.org/03286xn88', 'no_lang_code', 1, 'https://ror.org/03286xn88 Microprobes (United States)'),
(72614, 'https://ror.org/0328qyd75', 'en', 1, 'https://ror.org/0328qyd75 The Equality Trust'),
(72615, 'https://ror.org/032cpcp20', 'no_lang_code', 1, 'https://ror.org/032cpcp20 ETI Instrument Systems (United States)'),
(72616, 'https://ror.org/032dvkh62', 'en', 1, 'https://ror.org/032dvkh62 Thanhtay University TrĘ°į»ng ĐẔi hį»c ThĆ nh TĆ¢y'),
(72617, 'https://ror.org/032jca185', 'en', 1, 'https://ror.org/032jca185 Institute for Human Rights and Development in Africa'),
(72618, 'https://ror.org/032jd4h63', 'es', 1, 'https://ror.org/032jd4h63 Fundación Pro Vivienda Social'),
(72619, 'https://ror.org/032ns4d39', 'en', 1, 'https://ror.org/032ns4d39 Arab Institute for Human Rights معهد Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ų­Ł‚ŁˆŁ‚ الانسان'),
(72620, 'https://ror.org/032pxea46', 'no_lang_code', 1, 'https://ror.org/032pxea46 Geost (United States)'),
(72621, 'https://ror.org/032q63062', 'en', 1, 'https://ror.org/032q63062 Equitas - International Centre for Human Rights Education'),
(72622, 'https://ror.org/032qdxd79', 'no_lang_code', 1, 'https://ror.org/032qdxd79 Invisense (Sweden)'),
(72623, 'https://ror.org/032t23b63', 'no_lang_code', 1, 'https://ror.org/032t23b63 Search (Poland)'),
(72624, 'https://ror.org/032xxp947', 'en', 1, 'https://ror.org/032xxp947 Geo Explore Foundation'),
(72625, 'https://ror.org/032y8tg91', 'en', 1, 'https://ror.org/032y8tg91 Mediciti Institute of Medical Sciences ą°®ą±†ą°”ą°æą°øą°æą°Ÿą°æ ą°µą±ˆą°¦ą±ą°Æ ą°µą°æą°œą±ą°žą°¾ą°Ø ą°øą°‚ą°øą±ą°„'),
(72626, 'https://ror.org/0330j9a35', 'en', 1, 'https://ror.org/0330j9a35 University of Science and Technology, Meghalaya, ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤®ą„‡ą¤˜ą¤¾ą¤²ą¤Æ'),
(72627, 'https://ror.org/0331wa828', 'en', 1, 'https://ror.org/0331wa828 Universiti Xiamen Malaysia Xiamen University Malaysia'),
(72628, 'https://ror.org/0331xj092', 'en', 1, 'https://ror.org/0331xj092 Institute for Technologies Applied to Cultural Heritage Istituto per le Tecnologie Applicate ai Beni Culturali'),
(72629, 'https://ror.org/0332r9t93', 'en', 1, 'https://ror.org/0332r9t93 Children and War Foundation'),
(72630, 'https://ror.org/0334ajr59', 'no_lang_code', 1, 'https://ror.org/0334ajr59 Development Services Group (United States)'),
(72631, 'https://ror.org/03356tk08', 'en', 1, 'https://ror.org/03356tk08 Newfoundland and Labrador Centre for Applied Health Research'),
(72632, 'https://ror.org/0336yfm40', 'no_lang_code', 1, 'https://ror.org/0336yfm40 In Depth Engineering (United States)'),
(72633, 'https://ror.org/0337b1h63', 'no_lang_code', 1, 'https://ror.org/0337b1h63 Juneteenth Productions (United States)'),
(72634, 'https://ror.org/033893t28', 'no_lang_code', 1, 'https://ror.org/033893t28 Martin Chautari ą¤®ą¤¾ą¤°ą„ą¤Ÿą¤æą¤Ø ą¤šą„Œą¤¤ą¤¾ą¤°ą„€'),
(72635, 'https://ror.org/0338yqm59', 'en', 1, 'https://ror.org/0338yqm59 Kinetica Museum'),
(72636, 'https://ror.org/033anq036', 'no_lang_code', 1, 'https://ror.org/033anq036 GreenTech Consultants (Sri Lanka)'),
(72637, 'https://ror.org/033bdbr41', 'es', 1, 'https://ror.org/033bdbr41 Dejusticia'),
(72638, 'https://ror.org/033c33n67', 'no_lang_code', 1, 'https://ror.org/033c33n67 Marine Design Dynamics (United States)'),
(72639, 'https://ror.org/033d2dh14', 'en', 1, 'https://ror.org/033d2dh14 Wolverhampton Art Gallery'),
(72640, 'https://ror.org/033ensv76', 'en', 1, 'https://ror.org/033ensv76 Lowry Memorial College & Group of Institutions'),
(72641, 'https://ror.org/033hdxa37', 'en', 1, 'https://ror.org/033hdxa37 Brockhouse Institute for Materials Research'),
(72642, 'https://ror.org/033kh6571', 'en', 1, 'https://ror.org/033kh6571 Consejo Nacional de Evaluación de la Política de Desarrollo Social National Council for the Evaluation of Social Development Policy'),
(72643, 'https://ror.org/033mdbt36', 'no_lang_code', 1, 'https://ror.org/033mdbt36 Aggamin (United States)'),
(72644, 'https://ror.org/033mfbr09', 'no_lang_code', 1, 'https://ror.org/033mfbr09 Ubuntu Institute'),
(72645, 'https://ror.org/033mhgr78', 'en', 1, 'https://ror.org/033mhgr78 Srishti Institute of Art Design and Technology'),
(72646, 'https://ror.org/033mn5m13', 'en', 1, 'https://ror.org/033mn5m13 Pasargad Institute for Advanced Innovative Solutions معهد ŲØŲ§Ų³Ų§Ų±Ų¬Ų§ŲÆ Ł„Ł„Ų­Ł„ŁˆŁ„ Ų§Ł„Ł…ŲØŲŖŁƒŲ±Ų© المتقدمة'),
(72647, 'https://ror.org/033ny7f81', 'fr', 1, 'https://ror.org/033ny7f81 Laboratoire d''Anthropologie et de Psychologie Cognitives et Sociales'),
(72648, 'https://ror.org/033pj6j32', 'en', 1, 'https://ror.org/033pj6j32 Konjunkturinstitutet National Institute of Economic Research'),
(72649, 'https://ror.org/033rcy608', 'no_lang_code', 1, 'https://ror.org/033rcy608 Aechelon Technology (United States)'),
(72650, 'https://ror.org/033t2dn25', 'en', 1, 'https://ror.org/033t2dn25 Oxleas NHS Foundation Trust'),
(72651, 'https://ror.org/033vfvr15', 'en', 1, 'https://ror.org/033vfvr15 Polish Chamber of Packaging Polska Izba Opakowań'),
(72652, 'https://ror.org/033wxp778', 'en', 1, 'https://ror.org/033wxp778 photo.circle'),
(72653, 'https://ror.org/033xmtn97', 'en', 1, 'https://ror.org/033xmtn97 Crimean Republican Institute of Post-Decisive Pedagogical Education ŠšŃ€Ń‹Š¼ŃŠŗŠøŠ¹ Ń€ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ постГипломного пеГагогического Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(72654, 'https://ror.org/033y2mr45', 'it', 1, 'https://ror.org/033y2mr45 Archivio di Stato di Venezia'),
(72655, 'https://ror.org/033z00p21', 'en', 1, 'https://ror.org/033z00p21 Centre for Social Research and Development Trung tĆ¢m NghiĆŖn cứu vĆ  PhĆ”t triển xĆ£ hį»™i'),
(72656, 'https://ror.org/0342vn940', 'no_lang_code', 1, 'https://ror.org/0342vn940 Tromp Medical (Netherlands)'),
(72657, 'https://ror.org/0344fac35', 'no_lang_code', 1, 'https://ror.org/0344fac35 A&P Technology (United States)'),
(72658, 'https://ror.org/034515739', 'no_lang_code', 1, 'https://ror.org/034515739 Jacobi Consulting (New Zealand)'),
(72659, 'https://ror.org/0345vzk85', 'en', 1, 'https://ror.org/0345vzk85 Equality Now'),
(72660, 'https://ror.org/03496sr93', 'no_lang_code', 1, 'https://ror.org/03496sr93 ArteEast'),
(72661, 'https://ror.org/03497yd66', 'en', 1, 'https://ror.org/03497yd66 Association of British Insurers'),
(72662, 'https://ror.org/034a0hk59', 'en', 1, 'https://ror.org/034a0hk59 Health Innovation Manchester'),
(72663, 'https://ror.org/034b8wj92', 'en', 1, 'https://ror.org/034b8wj92 Yorkshire Dales Rivers Trust'),
(72664, 'https://ror.org/034bnq460', 'no_lang_code', 1, 'https://ror.org/034bnq460 Solelia Greentech (Sweden)'),
(72665, 'https://ror.org/034ca5920', 'no_lang_code', 1, 'https://ror.org/034ca5920 TSI (United States)'),
(72666, 'https://ror.org/034dfmd43', 'en', 1, 'https://ror.org/034dfmd43 The Data Lab'),
(72667, 'https://ror.org/034dmsh02', 'en', 1, 'https://ror.org/034dmsh02 Insight Center for Community Economic Development'),
(72668, 'https://ror.org/034ds6p31', 'en', 1, 'https://ror.org/034ds6p31 Yunnan Archaeology äŗ‘å—ēœę–‡ē‰©č€ƒå¤ē ”ē©¶ę‰€ęˆē«‹äŗŽ'),
(72669, 'https://ror.org/034egr366', 'no_lang_code', 1, 'https://ror.org/034egr366 Cortest (United States)'),
(72670, 'https://ror.org/034fv3460', 'no_lang_code', 1, 'https://ror.org/034fv3460 Procosi'),
(72671, 'https://ror.org/034j2a896', 'en', 1, 'https://ror.org/034j2a896 Rainforest Foundation Norway Regnskogfondet'),
(72672, 'https://ror.org/034j4sq33', 'no_lang_code', 1, 'https://ror.org/034j4sq33 Dispomedical (United Kingdom)'),
(72673, 'https://ror.org/034k42q64', 'no_lang_code', 1, 'https://ror.org/034k42q64 Beyond Photonics (United States)'),
(72674, 'https://ror.org/034mzgy05', 'fr', 1, 'https://ror.org/034mzgy05 Ashkal Alwan Ų£Ų“ŁƒŲ§Ł„ Ų£Ł„ŁˆŲ§Ł†'),
(72675, 'https://ror.org/034n9ps55', 'no_lang_code', 1, 'https://ror.org/034n9ps55 Intelli-Firewall (United States)'),
(72676, 'https://ror.org/034p3rp25', 'en', 1, 'https://ror.org/034p3rp25 Kazakhstan Medical University ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½Š“Ń‹Ņ› меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(72677, 'https://ror.org/034qcqw57', 'no_lang_code', 1, 'https://ror.org/034qcqw57 Hf Designworks (United States)'),
(72678, 'https://ror.org/034r98c48', 'en', 1, 'https://ror.org/034r98c48 British Computer Association of the Blind'),
(72679, 'https://ror.org/034v70z81', 'en', 1, 'https://ror.org/034v70z81 Medical Education Cooperation with Cuba'),
(72680, 'https://ror.org/03525gg68', 'no_lang_code', 1, 'https://ror.org/03525gg68 Entropic Systems (United States)'),
(72681, 'https://ror.org/0353nx598', 'en', 1, 'https://ror.org/0353nx598 Instituto Cultural Steve Biko'),
(72682, 'https://ror.org/03546qf24', 'en', 1, 'https://ror.org/03546qf24 China Law Society'),
(72683, 'https://ror.org/03580ka59', 'en', 1, 'https://ror.org/03580ka59 Fulbright Japan ę—„ē±³ę•™č‚²å§”å“”ä¼š'),
(72684, 'https://ror.org/0358rk857', 'no_lang_code', 1, 'https://ror.org/0358rk857 Hexagon (United States)'),
(72685, 'https://ror.org/035ayvm38', 'no_lang_code', 1, 'https://ror.org/035ayvm38 Delaware Diamond Knives (United States)'),
(72686, 'https://ror.org/035az3a76', 'en', 1, 'https://ror.org/035az3a76 China Arms Control and Disarmament Association äø­å›½å†›ęŽ§äøŽč£å†›åä¼š'),
(72687, 'https://ror.org/035drqx74', 'no_lang_code', 1, 'https://ror.org/035drqx74 Argonide (United States)'),
(72688, 'https://ror.org/035dzbx92', 'en', 1, 'https://ror.org/035dzbx92 Community Aid International'),
(72689, 'https://ror.org/035f28x45', 'en', 1, 'https://ror.org/035f28x45 Zhicheng Public Interest Lawyers č‡“čÆšå…¬ē›Šå¾‹åøˆ'),
(72690, 'https://ror.org/035hns865', 'no_lang_code', 1, 'https://ror.org/035hns865 Boehringer Ingelheim (Egypt)'),
(72691, 'https://ror.org/035hx4w46', 'no_lang_code', 1, 'https://ror.org/035hx4w46 Bristol-Myers Squibb (Sweden)'),
(72692, 'https://ror.org/035jk1734', 'es', 1, 'https://ror.org/035jk1734 Forum Solidaridad PerĆŗ'),
(72693, 'https://ror.org/035pc1920', 'en', 1, 'https://ror.org/035pc1920 German National Bone Marrow Donor Registry Zentrale Knochenmarkspender-Register Deutschland'),
(72694, 'https://ror.org/035pvn644', 'no_lang_code', 1, 'https://ror.org/035pvn644 Cooltech Applications (France)'),
(72695, 'https://ror.org/035q3vc94', 'en', 1, 'https://ror.org/035q3vc94 Royal Television Society'),
(72696, 'https://ror.org/035rpst33', 'pt', 1, 'https://ror.org/035rpst33 Hospital das ClĆ­nicas da Universidade Federal de Minas Gerais'),
(72697, 'https://ror.org/035tvak16', 'no_lang_code', 1, 'https://ror.org/035tvak16 Experiad (United States)'),
(72698, 'https://ror.org/035wa3p49', 'no_lang_code', 1, 'https://ror.org/035wa3p49 Dream Laboratory (United Kingdom)'),
(72699, 'https://ror.org/035x03e98', 'no_lang_code', 1, 'https://ror.org/035x03e98 InEnTec (United States)'),
(72700, 'https://ror.org/035x64r67', 'en', 1, 'https://ror.org/035x64r67 Down''s Syndrome Association'),
(72701, 'https://ror.org/035y5td47', 'en', 1, 'https://ror.org/035y5td47 Institute for International Legal Studies Istituto di Studi Giuridici Internazionali'),
(72702, 'https://ror.org/035zr6437', 'es', 1, 'https://ror.org/035zr6437 Hospital Dipreca'),
(72703, 'https://ror.org/0360xnj30', 'no_lang_code', 1, 'https://ror.org/0360xnj30 Strainlabs (Sweden)'),
(72704, 'https://ror.org/0363ne177', 'en', 1, 'https://ror.org/0363ne177 ABFE'),
(72705, 'https://ror.org/036515p55', 'en', 1, 'https://ror.org/036515p55 Museum of the History of Science'),
(72706, 'https://ror.org/0365n9z90', 'es', 1, 'https://ror.org/0365n9z90 Sisma Mujer'),
(72707, 'https://ror.org/03666dk92', 'en', 1, 'https://ror.org/03666dk92 The Bingo Association'),
(72708, 'https://ror.org/036791a63', 'no_lang_code', 1, 'https://ror.org/036791a63 S&C Electric Company (United States)'),
(72709, 'https://ror.org/0367sm721', 'en', 1, 'https://ror.org/0367sm721 Caribbean Disaster Emergency Management Agency'),
(72710, 'https://ror.org/03688j326', 'en', 1, 'https://ror.org/03688j326 Centre for Policy Alternatives'),
(72711, 'https://ror.org/036ak6q26', 'en', 1, 'https://ror.org/036ak6q26 Cloud Innovation Centre'),
(72712, 'https://ror.org/036d5sh68', 'en', 1, 'https://ror.org/036d5sh68 Institute of Food Science & Technology'),
(72713, 'https://ror.org/036dda554', 'en', 1, 'https://ror.org/036dda554 Particulate Solid Research (United States)'),
(72714, 'https://ror.org/036g36489', 'en', 1, 'https://ror.org/036g36489 British Limousin Cattle Society'),
(72715, 'https://ror.org/036hc2148', 'no_lang_code', 1, 'https://ror.org/036hc2148 ​Advanced Systems Technology (United States)'),
(72716, 'https://ror.org/036j7xe27', 'de', 1, 'https://ror.org/036j7xe27 Augusta-Kranken-Anstalt'),
(72717, 'https://ror.org/036pz8x72', 'en', 1, 'https://ror.org/036pz8x72 UNITE-LA'),
(72718, 'https://ror.org/036vvw903', 'en', 1, 'https://ror.org/036vvw903 Blackwood'),
(72719, 'https://ror.org/036w35554', 'en', 1, 'https://ror.org/036w35554 African Centre for Advanced Studies'),
(72720, 'https://ror.org/036wb1d88', 'no_lang_code', 1, 'https://ror.org/036wb1d88 Conspiro (Sweden)'),
(72721, 'https://ror.org/036wgjt32', 'en', 1, 'https://ror.org/036wgjt32 Institute for Research in Schools'),
(72722, 'https://ror.org/036y1an55', 'no_lang_code', 1, 'https://ror.org/036y1an55 Keysight Technologies (Austria)'),
(72723, 'https://ror.org/036y4q615', 'no_lang_code', 1, 'https://ror.org/036y4q615 Vector (United States)'),
(72724, 'https://ror.org/03718pw44', 'en', 1, 'https://ror.org/03718pw44 The Hindu Group (India)'),
(72725, 'https://ror.org/03723ft34', 'en', 1, 'https://ror.org/03723ft34 Legal Policy Research Centre Центр ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Š½ŠøŃ правовой политики'),
(72726, 'https://ror.org/0372j2579', 'en', 1, 'https://ror.org/0372j2579 Cambodian Institute for Cooperation and Peace įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įžįŸ’įž˜įŸ‚įžšįžŸįž˜įŸ’įžšįž¶įž”įŸ‹įžŸįž įž”įŸ’įžšįžįž·įž”įžįŸ’įžįž·įž€įž¶įžšįž“įž·įž„įžŸįž“įŸ’įžįž·įž—įž¶įž–'),
(72727, 'https://ror.org/03730gy78', 'no_lang_code', 1, 'https://ror.org/03730gy78 Agile Scientific (Canada)'),
(72728, 'https://ror.org/0373nkv83', 'en', 1, 'https://ror.org/0373nkv83 The Soar Foundation'),
(72729, 'https://ror.org/03755pe12', 'en', 1, 'https://ror.org/03755pe12 Satyajit Ray Film and Television Institute'),
(72730, 'https://ror.org/037668223', 'no_lang_code', 1, 'https://ror.org/037668223 cPacket (United States)'),
(72731, 'https://ror.org/0377cab50', 'en', 1, 'https://ror.org/0377cab50 The Samdhana Institute'),
(72732, 'https://ror.org/03781qc53', 'no_lang_code', 1, 'https://ror.org/03781qc53 Frontier Energy (United States)'),
(72733, 'https://ror.org/0378sf364', 'fr', 1, 'https://ror.org/0378sf364 Laboratoire Structure et Dynamique par RƩsonance MagnƩtique'),
(72734, 'https://ror.org/037a1dk33', 'no_lang_code', 1, 'https://ror.org/037a1dk33 Medical Architecture (United Kingdom)'),
(72735, 'https://ror.org/037a35y56', 'en', 1, 'https://ror.org/037a35y56 Moving the GoalPosts'),
(72736, 'https://ror.org/037a3hd22', 'en', 1, 'https://ror.org/037a3hd22 Aberlour'),
(72737, 'https://ror.org/037aan677', 'en', 1, 'https://ror.org/037aan677 New Zealand eScience Infrastructure'),
(72738, 'https://ror.org/037e7x320', 'no_lang_code', 1, 'https://ror.org/037e7x320 Actar (Spain)'),
(72739, 'https://ror.org/037ef6262', 'en', 1, 'https://ror.org/037ef6262 Architects for Health'),
(72740, 'https://ror.org/037g37s09', 'no_lang_code', 1, 'https://ror.org/037g37s09 Concentris Systems (United States)'),
(72741, 'https://ror.org/037hv9r60', 'en', 1, 'https://ror.org/037hv9r60 Efficient Energy Centre'),
(72742, 'https://ror.org/037nqez35', 'en', 1, 'https://ror.org/037nqez35 Myanmar Geosciences Society'),
(72743, 'https://ror.org/037q25y47', 'en', 1, 'https://ror.org/037q25y47 The Lewis Carroll Society'),
(72744, 'https://ror.org/037s2cq86', 'en', 1, 'https://ror.org/037s2cq86 British Chambers of Commerce'),
(72745, 'https://ror.org/037trk629', 'en', 1, 'https://ror.org/037trk629 Volunteer Dundee'),
(72746, 'https://ror.org/037y0zy96', 'en', 1, 'https://ror.org/037y0zy96 Studies in Poverty and Inequality Institute'),
(72747, 'https://ror.org/037yg6j37', 'en', 1, 'https://ror.org/037yg6j37 Norfolk Archaeological Trust'),
(72748, 'https://ror.org/0381acm07', 'no_lang_code', 1, 'https://ror.org/0381acm07 Samsung (Poland)'),
(72749, 'https://ror.org/0382h3v61', 'cs', 1, 'https://ror.org/0382h3v61 ZÔkladní Ŕkola a PraktickÔ Ŕkola SvítÔní'),
(72750, 'https://ror.org/0383d6s93', 'no_lang_code', 1, 'https://ror.org/0383d6s93 Blekinge Business Incubator (Sweden)'),
(72751, 'https://ror.org/038a3t246', 'en', 1, 'https://ror.org/038a3t246 International Center for Transitional Justice'),
(72752, 'https://ror.org/038c5v419', 'no_lang_code', 1, 'https://ror.org/038c5v419 NMAS Group (United States)'),
(72753, 'https://ror.org/038cgya65', 'en', 1, 'https://ror.org/038cgya65 International Center for Advanced Research and Training'),
(72754, 'https://ror.org/038ec0d06', 'no_lang_code', 1, 'https://ror.org/038ec0d06 Sri Caitanya Prema Samsthana'),
(72755, 'https://ror.org/038es3z80', 'pt', 1, 'https://ror.org/038es3z80 ClĆ­nica de Psiquiatria Psiquimei'),
(72756, 'https://ror.org/038gr4r81', 'en', 1, 'https://ror.org/038gr4r81 Hawley Collection'),
(72757, 'https://ror.org/038jgf307', 'en', 1, 'https://ror.org/038jgf307 National Army Museum'),
(72758, 'https://ror.org/038jw0f49', 'en', 1, 'https://ror.org/038jw0f49 The German Marshall Fund of the United States'),
(72759, 'https://ror.org/038jwkk56', 'no_lang_code', 1, 'https://ror.org/038jwkk56 Copersucar (Brazil)'),
(72760, 'https://ror.org/038mavt60', 'en', 1, 'https://ror.org/038mavt60 Astana Medical University ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Астана'),
(72761, 'https://ror.org/038mf7084', 'en', 1, 'https://ror.org/038mf7084 Institute of Directors'),
(72762, 'https://ror.org/038n2xa05', 'en', 1, 'https://ror.org/038n2xa05 Supreme Court of the Republic of Slovenia Vrhovno sodiŔče Republike Slovenije'),
(72763, 'https://ror.org/038rkt253', 'en', 1, 'https://ror.org/038rkt253 Kelvingrove Art Gallery and Museum'),
(72764, 'https://ror.org/038rpgw61', 'de', 1, 'https://ror.org/038rpgw61 Bayerische Landesanstalt für Wald und Forstwirtschaft'),
(72765, 'https://ror.org/038rpm246', 'no_lang_code', 1, 'https://ror.org/038rpm246 GHKN Engineering (United States)'),
(72766, 'https://ror.org/038smxt70', 'en', 1, 'https://ror.org/038smxt70 Myanmar Institute of Information Technology'),
(72767, 'https://ror.org/038swrn45', 'no_lang_code', 1, 'https://ror.org/038swrn45 Critical Imaging (United States)'),
(72768, 'https://ror.org/038t8cx05', 'en', 1, 'https://ror.org/038t8cx05 Northern Architecture'),
(72769, 'https://ror.org/038tbvr34', 'pt', 1, 'https://ror.org/038tbvr34 Instituto Papai'),
(72770, 'https://ror.org/038v0bj29', 'en', 1, 'https://ror.org/038v0bj29 Pomfret School'),
(72771, 'https://ror.org/038v45r36', 'no_lang_code', 1, 'https://ror.org/038v45r36 VĆØringer (Spain)'),
(72772, 'https://ror.org/038x31d44', 'no_lang_code', 1, 'https://ror.org/038x31d44 Anagin (United States)'),
(72773, 'https://ror.org/038xhby63', 'en', 1, 'https://ror.org/038xhby63 Comprehensive Cardiovascular'),
(72774, 'https://ror.org/038y41363', 'cs', 1, 'https://ror.org/038y41363 Nadace Neziskovky'),
(72775, 'https://ror.org/038zk4221', 'no_lang_code', 1, 'https://ror.org/038zk4221 Chip Scan (United States)'),
(72776, 'https://ror.org/0390vgx68', 'en', 1, 'https://ror.org/0390vgx68 European Theoretical Spectroscopy Facility'),
(72777, 'https://ror.org/0391mhw96', 'en', 1, 'https://ror.org/0391mhw96 The David Hume Institute'),
(72778, 'https://ror.org/0394gje76', 'no_lang_code', 1, 'https://ror.org/0394gje76 Command and Control Technologies Corporation (United States)'),
(72779, 'https://ror.org/03953th04', 'no_lang_code', 1, 'https://ror.org/03953th04 American Metal Processing (United States)'),
(72780, 'https://ror.org/0397m3490', 'no_lang_code', 1, 'https://ror.org/0397m3490 Ash Access Technology (United States)'),
(72781, 'https://ror.org/03989be61', 'en', 1, 'https://ror.org/03989be61 National Association of Cider Makers'),
(72782, 'https://ror.org/039ahdn18', 'en', 1, 'https://ror.org/039ahdn18 Slovak Rectors“Conference SlovenskÔ rektorskÔ konferencia'),
(72783, 'https://ror.org/039cmfe51', 'en', 1, 'https://ror.org/039cmfe51 Vienna Institute for Urban Sustainability'),
(72784, 'https://ror.org/039d0ar12', 'no_lang_code', 1, 'https://ror.org/039d0ar12 Hattaway Communications (United States)'),
(72785, 'https://ror.org/039dvf662', 'en', 1, 'https://ror.org/039dvf662 Kenya Community Development Foundation'),
(72786, 'https://ror.org/039e9be94', 'en', 1, 'https://ror.org/039e9be94 Garden Street Academy'),
(72787, 'https://ror.org/039fs9a88', 'no_lang_code', 1, 'https://ror.org/039fs9a88 CMGI (Poland)'),
(72788, 'https://ror.org/039fta733', 'en', 1, 'https://ror.org/039fta733 West of England Centre for Inclusive Living'),
(72789, 'https://ror.org/039g88209', 'no', 1, 'https://ror.org/039g88209 Kongsberg sykehus'),
(72790, 'https://ror.org/039jhgf83', 'en', 1, 'https://ror.org/039jhgf83 China Automotive Engineering Research Institute äø­å›½ę±½č½¦å·„ēØ‹ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(72791, 'https://ror.org/039mm4q57', 'no_lang_code', 1, 'https://ror.org/039mm4q57 Eaton (Brazil)'),
(72792, 'https://ror.org/039n1nw87', 'en', 1, 'https://ror.org/039n1nw87 New York City Council'),
(72793, 'https://ror.org/039psj505', 'no_lang_code', 1, 'https://ror.org/039psj505 Lightening Energy (United States)'),
(72794, 'https://ror.org/039qtbx12', 'en', 1, 'https://ror.org/039qtbx12 Kidney Associates'),
(72795, 'https://ror.org/039r16z31', 'no_lang_code', 1, 'https://ror.org/039r16z31 Stratec (Germany)'),
(72796, 'https://ror.org/039txbb33', 'no_lang_code', 1, 'https://ror.org/039txbb33 Nanogen (United States)'),
(72797, 'https://ror.org/039v1f004', 'no_lang_code', 1, 'https://ror.org/039v1f004 Centrum Badawczo - Produkcyjne DGT (Poland)'),
(72798, 'https://ror.org/039wwq736', 'en', 1, 'https://ror.org/039wwq736 Public Affairs Research Institute'),
(72799, 'https://ror.org/039xsf007', 'en', 1, 'https://ror.org/039xsf007 Otharlann Chontae ThĆ­r Eoghain Tyrone County Hospital'),
(72800, 'https://ror.org/039y2jb71', 'en', 1, 'https://ror.org/039y2jb71 Lawyers'' Committee for Civil Rights Under Law'),
(72801, 'https://ror.org/039y9ma09', 'no_lang_code', 1, 'https://ror.org/039y9ma09 Laser & Plasma Technologies (United States)'),
(72802, 'https://ror.org/039zhwx76', 'en', 1, 'https://ror.org/039zhwx76 Buddhist Digital Resource Center'),
(72803, 'https://ror.org/03a111314', 'en', 1, 'https://ror.org/03a111314 Institute of History of Mediterranean Europe Istituto di Storia dell''Europa Mediterranea'),
(72804, 'https://ror.org/03a1ecb29', 'no_lang_code', 1, 'https://ror.org/03a1ecb29 Fidesmo (Sweden)'),
(72805, 'https://ror.org/03a3rm692', 'en', 1, 'https://ror.org/03a3rm692 Museum of Australian Democracy'),
(72806, 'https://ror.org/03a3z0217', 'en', 1, 'https://ror.org/03a3z0217 Institute for Research and Empowerment'),
(72807, 'https://ror.org/03a8ase89', 'en', 1, 'https://ror.org/03a8ase89 Institute of Physics of Molecules and Crystals Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики молекул Šø кристаллов'),
(72808, 'https://ror.org/03aamfw77', 'en', 1, 'https://ror.org/03aamfw77 Freedman Consulting'),
(72809, 'https://ror.org/03ab9ve27', 'en', 1, 'https://ror.org/03ab9ve27 Mental Health America'),
(72810, 'https://ror.org/03aeskr81', 'en', 1, 'https://ror.org/03aeskr81 European Association for Biometrics'),
(72811, 'https://ror.org/03af8y353', 'no_lang_code', 1, 'https://ror.org/03af8y353 Hermes Medical Solutions (United Kingdom)'),
(72812, 'https://ror.org/03ahp4j53', 'en', 1, 'https://ror.org/03ahp4j53 Restaurant Opportunities Centers United'),
(72813, 'https://ror.org/03ajz9454', 'en', 1, 'https://ror.org/03ajz9454 China Society for Urban Studies'),
(72814, 'https://ror.org/03ak5rf34', 'en', 1, 'https://ror.org/03ak5rf34 The Colebrooke Centre'),
(72815, 'https://ror.org/03ak5tq12', 'no_lang_code', 1, 'https://ror.org/03ak5tq12 Microscale (United States)'),
(72816, 'https://ror.org/03akcxx27', 'en', 1, 'https://ror.org/03akcxx27 District of Columbia Department of Forensic Sciences'),
(72817, 'https://ror.org/03akdaa97', 'no_lang_code', 1, 'https://ror.org/03akdaa97 Inossia (Sweden)'),
(72818, 'https://ror.org/03amggk32', 'en', 1, 'https://ror.org/03amggk32 Dupuytren Research Group'),
(72819, 'https://ror.org/03amnyx79', 'no_lang_code', 1, 'https://ror.org/03amnyx79 Ecoat (France)'),
(72820, 'https://ror.org/03an8gd42', 'no_lang_code', 1, 'https://ror.org/03an8gd42 intuVision (United States)'),
(72821, 'https://ror.org/03ang6a06', 'en', 1, 'https://ror.org/03ang6a06 The Fermanagh Trust'),
(72822, 'https://ror.org/03apry564', 'en', 1, 'https://ror.org/03apry564 Oak Field School and Sports College'),
(72823, 'https://ror.org/03aqxew96', 'no_lang_code', 1, 'https://ror.org/03aqxew96 ChM (Poland)'),
(72824, 'https://ror.org/03ar4yr57', 'en', 1, 'https://ror.org/03ar4yr57 Alliance for Justice'),
(72825, 'https://ror.org/03ast5668', 'no_lang_code', 1, 'https://ror.org/03ast5668 TetraScience (United States)'),
(72826, 'https://ror.org/03atnhf44', 'no_lang_code', 1, 'https://ror.org/03atnhf44 Archimage (United States)'),
(72827, 'https://ror.org/03aw8az69', 'no_lang_code', 1, 'https://ror.org/03aw8az69 Biomedical Research Laboratories (United States)'),
(72828, 'https://ror.org/03ay16t61', 'en', 1, 'https://ror.org/03ay16t61 National Gugak Center 국립국악원'),
(72829, 'https://ror.org/03b0cap52', 'en', 1, 'https://ror.org/03b0cap52 Fundação Roberto Marinho Roberto Marinho Foundation'),
(72830, 'https://ror.org/03b4e1389', 'no_lang_code', 1, 'https://ror.org/03b4e1389 Fiore Industries (United States)'),
(72831, 'https://ror.org/03b51p242', 'no_lang_code', 1, 'https://ror.org/03b51p242 Canget BioTekpharma (United States)'),
(72832, 'https://ror.org/03b5pw144', 'en', 1, 'https://ror.org/03b5pw144 Centre for the Study of Culture and Society ą²øą²‚ą²øą³ą²•ą³ƒą²¤ą²æ ą²®ą²¤ą³ą²¤ą³ ಸಮಾಜ ą²…ą²§ą³ą²Æą²Æą²Ø ą²•ą³†ą³•ą²‚ą²¦ą³ą²°ą²¦'),
(72833, 'https://ror.org/03b6bz334', 'no_lang_code', 1, 'https://ror.org/03b6bz334 Voltaiq (United States)'),
(72834, 'https://ror.org/03b6wpc57', 'no_lang_code', 1, 'https://ror.org/03b6wpc57 Tech-X (United Kingdom)'),
(72835, 'https://ror.org/03b8fd746', 'en', 1, 'https://ror.org/03b8fd746 Chief Fire Officers Association'),
(72836, 'https://ror.org/03b8sbf49', 'en', 1, 'https://ror.org/03b8sbf49 Industrie, Tourisme et Investissement Industry, Tourism and Investment'),
(72837, 'https://ror.org/03b9dsq97', 'en', 1, 'https://ror.org/03b9dsq97 Xcellon School of Business'),
(72838, 'https://ror.org/03b9pqg16', 'en', 1, 'https://ror.org/03b9pqg16 The Wahid Institute'),
(72839, 'https://ror.org/03bdktf45', 'no_lang_code', 1, 'https://ror.org/03bdktf45 Fracsun (United States)'),
(72840, 'https://ror.org/03bfpw005', 'en', 1, 'https://ror.org/03bfpw005 Sheffield Beekeepers'' Association'),
(72841, 'https://ror.org/03bgw1x40', 'en', 1, 'https://ror.org/03bgw1x40 Institute of Epidemiology, Disease Control and Research ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦ą¦Ŗą¦æą¦”ą§‡ą¦®ą§‹ą¦²ą§‹ą¦œą¦æ ঔিজিজ ą¦•ą¦Øą§ą¦Ÿą§ą¦°ą§‹ą¦² ą¦ą¦Øą§ą¦” ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š আইইঔিসিআর'),
(72842, 'https://ror.org/03bjdat74', 'no_lang_code', 1, 'https://ror.org/03bjdat74 Design Science (United Kingdom)'),
(72843, 'https://ror.org/03bm1r569', 'en', 1, 'https://ror.org/03bm1r569 Medical Prescription Services'),
(72844, 'https://ror.org/03bnq5z51', 'en', 1, 'https://ror.org/03bnq5z51 Palestinian Center for Research and Cultural Dialogue Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁŁ„Ų³Ų·ŁŠŁ†ŁŠ للدراسات وحوار'),
(72845, 'https://ror.org/03bpswy98', 'en', 1, 'https://ror.org/03bpswy98 Alliance for a Just Society'),
(72846, 'https://ror.org/03br5ck68', 'no_lang_code', 1, 'https://ror.org/03br5ck68 Absorption Systems (United States)'),
(72847, 'https://ror.org/03bsbp090', 'no_lang_code', 1, 'https://ror.org/03bsbp090 Minitube (United States)'),
(72848, 'https://ror.org/03bvswz74', 'no_lang_code', 1, 'https://ror.org/03bvswz74 Telesis Corporation (United States)'),
(72849, 'https://ror.org/03bxpek11', 'en', 1, 'https://ror.org/03bxpek11 Colonial Society of Massachusetts'),
(72850, 'https://ror.org/03c33cs95', 'en', 1, 'https://ror.org/03c33cs95 National Sheep Association'),
(72851, 'https://ror.org/03c388s57', 'en', 1, 'https://ror.org/03c388s57 United Kingdom Antarctic Heritage Trust'),
(72852, 'https://ror.org/03c71f034', 'en', 1, 'https://ror.org/03c71f034 Los Angeles Police Department'),
(72853, 'https://ror.org/03c782j94', 'no_lang_code', 1, 'https://ror.org/03c782j94 Judd Systems Technologies (United States)'),
(72854, 'https://ror.org/03c7nm582', 'no_lang_code', 1, 'https://ror.org/03c7nm582 Innovimmune Biotherapeutics (United States)'),
(72855, 'https://ror.org/03c87q579', 'en', 1, 'https://ror.org/03c87q579 The Point of Care Foundation'),
(72856, 'https://ror.org/03c9pj817', 'en', 1, 'https://ror.org/03c9pj817 Tanganyika Law Society'),
(72857, 'https://ror.org/03c9tb453', 'en', 1, 'https://ror.org/03c9tb453 Swadhinata Trust'),
(72858, 'https://ror.org/03caes622', 'en', 1, 'https://ror.org/03caes622 Colchester + Ipswich Museums'),
(72859, 'https://ror.org/03cbybs32', 'no_lang_code', 1, 'https://ror.org/03cbybs32 Jericho Sciences (United States)'),
(72860, 'https://ror.org/03cfe5t18', 'en', 1, 'https://ror.org/03cfe5t18 The Mainichi ę Ŗå¼ä¼šē¤¾ęÆŽę—„ę–°čžē¤¾'),
(72861, 'https://ror.org/03cgw6h63', 'no_lang_code', 1, 'https://ror.org/03cgw6h63 Elveflow (France)'),
(72862, 'https://ror.org/03ch48z85', 'en', 1, 'https://ror.org/03ch48z85 American Visionary Art Museum'),
(72863, 'https://ror.org/03chj8432', 'en', 1, 'https://ror.org/03chj8432 Regen'),
(72864, 'https://ror.org/03cj4xr84', 'no_lang_code', 1, 'https://ror.org/03cj4xr84 Newind (Poland)'),
(72865, 'https://ror.org/03cn5zn95', 'en', 1, 'https://ror.org/03cn5zn95 Occupational Research and Assessment'),
(72866, 'https://ror.org/03cnk2k35', 'no_lang_code', 1, 'https://ror.org/03cnk2k35 TCC Group (United States)'),
(72867, 'https://ror.org/03cnkgk49', 'en', 1, 'https://ror.org/03cnkgk49 Erie Arts and Culture'),
(72868, 'https://ror.org/03cnz7c57', 'en', 1, 'https://ror.org/03cnz7c57 Ministry of Culture وزارة الثقافة'),
(72869, 'https://ror.org/03cp8z405', 'fr', 1, 'https://ror.org/03cp8z405 Comportement et Ɖcologie de la Faune Sauvage'),
(72870, 'https://ror.org/03cph9p23', 'en', 1, 'https://ror.org/03cph9p23 Leonard Cheshire'),
(72871, 'https://ror.org/03ct9r646', 'no_lang_code', 1, 'https://ror.org/03ct9r646 DBV Technology (United States)'),
(72872, 'https://ror.org/03cv0r897', 'en', 1, 'https://ror.org/03cv0r897 Dallas Theological Seminary'),
(72873, 'https://ror.org/03cwrs750', 'no_lang_code', 1, 'https://ror.org/03cwrs750 Allen (United States)'),
(72874, 'https://ror.org/03cxfcp49', 'en', 1, 'https://ror.org/03cxfcp49 Bangladesh Islamic Foundation ইসলামিক ą¦«ą¦¾ą¦‰ą¦Øą§ą¦”ą§‡ą¦¶ą¦Ø বাংলাদেশ'),
(72875, 'https://ror.org/03cxgaw61', 'no_lang_code', 1, 'https://ror.org/03cxgaw61 K-Rep Development Agency (Kenya)'),
(72876, 'https://ror.org/03cybp342', 'en', 1, 'https://ror.org/03cybp342 Media Design School'),
(72877, 'https://ror.org/03cync167', 'en', 1, 'https://ror.org/03cync167 International Summer School of Photography'),
(72878, 'https://ror.org/03cz45f13', 'no', 1, 'https://ror.org/03cz45f13 Skedsmo Medisinske Senter'),
(72879, 'https://ror.org/03d022g94', 'en', 1, 'https://ror.org/03d022g94 Indonesian Coffee and Cocoa Research Institute'),
(72880, 'https://ror.org/03d17d270', 'en', 1, 'https://ror.org/03d17d270 University of Washington Applied Physics Laboratory'),
(72881, 'https://ror.org/03d2jk391', 'fr', 1, 'https://ror.org/03d2jk391 Laboratoire de GƩnie Civil, Diagnostic et DurabilitƩ'),
(72882, 'https://ror.org/03d3dj187', 'no_lang_code', 1, 'https://ror.org/03d3dj187 Protected Trust Services (United Kingdom)'),
(72883, 'https://ror.org/03d4czf80', 'en', 1, 'https://ror.org/03d4czf80 United Nations System Staff College'),
(72884, 'https://ror.org/03d5t5j62', 'en', 1, 'https://ror.org/03d5t5j62 Rare Breeds Survival Trust'),
(72885, 'https://ror.org/03d6kfv69', 'no_lang_code', 1, 'https://ror.org/03d6kfv69 Centripetal (United States)'),
(72886, 'https://ror.org/03daz6p93', 'de', 1, 'https://ror.org/03daz6p93 Evangelisches Klinikum Kƶln Weyertal'),
(72887, 'https://ror.org/03dbje387', 'no_lang_code', 1, 'https://ror.org/03dbje387 Austral Engineering and Software (United States)'),
(72888, 'https://ror.org/03dbpxy52', 'de', 1, 'https://ror.org/03dbpxy52 DRK Kliniken Berlin'),
(72889, 'https://ror.org/03dg97q02', 'en', 1, 'https://ror.org/03dg97q02 Center for Economic Progress'),
(72890, 'https://ror.org/03dhgb547', 'no_lang_code', 1, 'https://ror.org/03dhgb547 TOMSAD Tomasz Sadowski (Poland)'),
(72891, 'https://ror.org/03dj32m19', 'en', 1, 'https://ror.org/03dj32m19 Local Area Research & Intelligence Association'),
(72892, 'https://ror.org/03djana98', 'no_lang_code', 1, 'https://ror.org/03djana98 LaCell (United States)'),
(72893, 'https://ror.org/03djjyk45', 'en', 1, 'https://ror.org/03djjyk45 Center for Effective Global Action'),
(72894, 'https://ror.org/03dkq2191', 'en', 1, 'https://ror.org/03dkq2191 Ministry of Internal Affairs ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Šž ЗА Š’ŠŠŠ¢Š Š•ŠØŠŠ˜ Š ŠŠ‘ŠžŠ¢Š˜'),
(72895, 'https://ror.org/03dnwsa64', 'no_lang_code', 1, 'https://ror.org/03dnwsa64 Opegieka (Poland)'),
(72896, 'https://ror.org/03dq65642', 'es', 1, 'https://ror.org/03dq65642 Instituto Mora, Instituto de Investigaciones Dr. JosƩ Marƭa Luis Mora'),
(72897, 'https://ror.org/03dqgwy22', 'sv', 1, 'https://ror.org/03dqgwy22 Funka Nu'),
(72898, 'https://ror.org/03dsf5v84', 'en', 1, 'https://ror.org/03dsf5v84 Partick Housing Association'),
(72899, 'https://ror.org/03dwcee04', 'en', 1, 'https://ror.org/03dwcee04 Co.As.It.'),
(72900, 'https://ror.org/03dyp1558', 'no_lang_code', 1, 'https://ror.org/03dyp1558 MPTS (Poland)'),
(72901, 'https://ror.org/03dywr773', 'en', 1, 'https://ror.org/03dywr773 Community-Campus Partnerships for Health'),
(72902, 'https://ror.org/03e14gy69', 'no_lang_code', 1, 'https://ror.org/03e14gy69 GenomeDesigns Lab (United States)'),
(72903, 'https://ror.org/03e5mh597', 'en', 1, 'https://ror.org/03e5mh597 Broadstairs College'),
(72904, 'https://ror.org/03ebpdd69', 'no_lang_code', 1, 'https://ror.org/03ebpdd69 Liquids Research (United Kingdom)'),
(72905, 'https://ror.org/03ee4bv96', 'en', 1, 'https://ror.org/03ee4bv96 New York City Bar Association'),
(72906, 'https://ror.org/03efa2608', 'en', 1, 'https://ror.org/03efa2608 National Indigenous Organization of Colombia Organización Nacional Indígena de Colombia'),
(72907, 'https://ror.org/03efpdt52', 'no_lang_code', 1, 'https://ror.org/03efpdt52 Applied Tissue Technologies (United States)'),
(72908, 'https://ror.org/03eg1sw22', 'en', 1, 'https://ror.org/03eg1sw22 Sheppey College'),
(72909, 'https://ror.org/03egje930', 'en', 1, 'https://ror.org/03egje930 Association for Learning Technology'),
(72910, 'https://ror.org/03ekrpq59', 'en', 1, 'https://ror.org/03ekrpq59 Dubai International Financial Centre'),
(72911, 'https://ror.org/03evgp013', 'en', 1, 'https://ror.org/03evgp013 Centre for Rural Legal Studies'),
(72912, 'https://ror.org/03ey1ct92', 'en', 1, 'https://ror.org/03ey1ct92 Wildfowl & Wetlands Trust'),
(72913, 'https://ror.org/03eykm948', 'en', 1, 'https://ror.org/03eykm948 Islamic Azad University, Buin-Zahra'),
(72914, 'https://ror.org/03ezj6665', 'sv', 1, 'https://ror.org/03ezj6665 NyfƶretagarCentrum'),
(72915, 'https://ror.org/03ezkck64', 'en', 1, 'https://ror.org/03ezkck64 Chartered Management Institute'),
(72916, 'https://ror.org/03ezrv005', 'no_lang_code', 1, 'https://ror.org/03ezrv005 AgroBio Associação das Empresas de Biotecnologia na Agricultura e Agroindústria'),
(72917, 'https://ror.org/03f0f5j83', 'en', 1, 'https://ror.org/03f0f5j83 Communications Consortium Media Center'),
(72918, 'https://ror.org/03f2hv234', 'no_lang_code', 1, 'https://ror.org/03f2hv234 AVL (Sweden)'),
(72919, 'https://ror.org/03f2nzb42', 'en', 1, 'https://ror.org/03f2nzb42 The LGBT Centre ЛГБТ Төв'),
(72920, 'https://ror.org/03f2wzg57', 'en', 1, 'https://ror.org/03f2wzg57 Asian-Pacific Resource and Research Centre for Women'),
(72921, 'https://ror.org/03f358370', 'en', 1, 'https://ror.org/03f358370 Institute of Environmental Management and Assessment'),
(72922, 'https://ror.org/03f3pxe20', 'en', 1, 'https://ror.org/03f3pxe20 Shenyang Fifth People Hospital ę²ˆé˜³åø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(72923, 'https://ror.org/03f78hn46', 'no_lang_code', 1, 'https://ror.org/03f78hn46 Search'),
(72924, 'https://ror.org/03f8ja864', 'en', 1, 'https://ror.org/03f8ja864 British Council'),
(72925, 'https://ror.org/03f9hxz36', 'no_lang_code', 1, 'https://ror.org/03f9hxz36 Companhia Brasileira de Aluminio'),
(72926, 'https://ror.org/03fb51s41', 'no_lang_code', 1, 'https://ror.org/03fb51s41 Biorecro (Sweden)'),
(72927, 'https://ror.org/03fdaw896', 'en', 1, 'https://ror.org/03fdaw896 Learning Spaces Collaboratory'),
(72928, 'https://ror.org/03fdvjw85', 'en', 1, 'https://ror.org/03fdvjw85 Ahmad Dahlan School of Economics Sekolah Tinggi Ilmu Ekonomi Ahmad Dahlan Jakarta'),
(72929, 'https://ror.org/03fg3n924', 'no_lang_code', 1, 'https://ror.org/03fg3n924 Mobile Foundations (United States)'),
(72930, 'https://ror.org/03fgzbf19', 'no_lang_code', 1, 'https://ror.org/03fgzbf19 Concordance Health Solutions (United States)'),
(72931, 'https://ror.org/03fjx1y08', 'no_lang_code', 1, 'https://ror.org/03fjx1y08 Gesynta Pharma (Sweden)'),
(72932, 'https://ror.org/03fjysk97', 'en', 1, 'https://ror.org/03fjysk97 V&A Museum of Childhood'),
(72933, 'https://ror.org/03fka6907', 'no_lang_code', 1, 'https://ror.org/03fka6907 Hyperion Technology Group (United States)'),
(72934, 'https://ror.org/03fmbdf82', 'en', 1, 'https://ror.org/03fmbdf82 United States Court of Appeals for the Seventh Circuit'),
(72935, 'https://ror.org/03fnt7n10', 'no_lang_code', 1, 'https://ror.org/03fnt7n10 BrightSpec'),
(72936, 'https://ror.org/03fr3nn32', 'en', 1, 'https://ror.org/03fr3nn32 National Centre for Resilience'),
(72937, 'https://ror.org/03fs9z545', 'en', 1, 'https://ror.org/03fs9z545 Mahidol Oxford Tropical Medicine Research Unit'),
(72938, 'https://ror.org/03ftfv496', 'no_lang_code', 1, 'https://ror.org/03ftfv496 Applied Decision Science (United States)'),
(72939, 'https://ror.org/03fxa2376', 'en', 1, 'https://ror.org/03fxa2376 Shenzhen Baoan High School Group ę·±åœ³åø‚å®å®‰äø­å­¦'),
(72940, 'https://ror.org/03fxxfx37', 'en', 1, 'https://ror.org/03fxxfx37 Social Market Foundation'),
(72941, 'https://ror.org/03g016n94', 'no_lang_code', 1, 'https://ror.org/03g016n94 AlyXan (France)'),
(72942, 'https://ror.org/03g0fjg84', 'en', 1, 'https://ror.org/03g0fjg84 Saint Louis Zoo'),
(72943, 'https://ror.org/03g1d8888', 'en', 1, 'https://ror.org/03g1d8888 Institute of Town Planners, Sri lanka'),
(72944, 'https://ror.org/03g24h954', 'en', 1, 'https://ror.org/03g24h954 MRS Training & Rescue'),
(72945, 'https://ror.org/03g26ah87', 'fr', 1, 'https://ror.org/03g26ah87 HĆ“pital Universitaire International Cheikh Khalifa المستؓفى Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠ Ų§Ł„Ų“ŁŠŲ® زايد'),
(72946, 'https://ror.org/03g2atw04', 'no_lang_code', 1, 'https://ror.org/03g2atw04 Mind (Poland)'),
(72947, 'https://ror.org/03g343n58', 'no_lang_code', 1, 'https://ror.org/03g343n58 FSCX (United States)'),
(72948, 'https://ror.org/03g4bhz29', 'en', 1, 'https://ror.org/03g4bhz29 Canterbury College'),
(72949, 'https://ror.org/03g5wrk88', 'no_lang_code', 1, 'https://ror.org/03g5wrk88 Simerics (United States)'),
(72950, 'https://ror.org/03g64g296', 'en', 1, 'https://ror.org/03g64g296 The Christian and Missionary Alliance'),
(72951, 'https://ror.org/03g658126', 'no_lang_code', 1, 'https://ror.org/03g658126 Imaxio (France)'),
(72952, 'https://ror.org/03g8he721', 'no_lang_code', 1, 'https://ror.org/03g8he721 EUV Labs (Russia)'),
(72953, 'https://ror.org/03g8mjq73', 'en', 1, 'https://ror.org/03g8mjq73 London Fire Brigade'),
(72954, 'https://ror.org/03g93g135', 'en', 1, 'https://ror.org/03g93g135 Azerbaijan Social Work Public Union Azərbaycan Sosial İş İctimai Birliyi'),
(72955, 'https://ror.org/03g9ft432', 'en', 1, 'https://ror.org/03g9ft432 The Hearth'),
(72956, 'https://ror.org/03gbabd35', 'en', 1, 'https://ror.org/03gbabd35 Institute of Coal Chemistry and Material Science Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŠø Šø химического Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(72957, 'https://ror.org/03gdwf180', 'en', 1, 'https://ror.org/03gdwf180 National Film and Sound Archive of Australia'),
(72958, 'https://ror.org/03ges2v44', 'no_lang_code', 1, 'https://ror.org/03ges2v44 CytaCoat (Sweden)'),
(72959, 'https://ror.org/03gf6ma44', 'en', 1, 'https://ror.org/03gf6ma44 Shaanxi Research Association for Women and Family é™•č„æēœå¦‡å„³ē†č®ŗå©šå§»å®¶åŗ­ē ”ē©¶ä¼š'),
(72960, 'https://ror.org/03gg0m324', 'en', 1, 'https://ror.org/03gg0m324 Danish Institute at Athens Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ της Δανίας ĻƒĻ„Ī·Ī½ Αθήνα'),
(72961, 'https://ror.org/03gjvye03', 'en', 1, 'https://ror.org/03gjvye03 Our Lady of Maryknoll Hospital č–ęÆé†«é™¢'),
(72962, 'https://ror.org/03gk5bm92', 'en', 1, 'https://ror.org/03gk5bm92 Kazakh-American Free University ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½-АмериканГық еркін ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(72963, 'https://ror.org/03grydy67', 'no_lang_code', 1, 'https://ror.org/03grydy67 Pelago Bioscience (Sweden)');
INSERT INTO `rors` VALUES
(72964, 'https://ror.org/03gs68n54', 'fr', 1, 'https://ror.org/03gs68n54 Aide et Recherche en CancƩrologie Digestive, Fondation ARCAD'),
(72965, 'https://ror.org/03gs9sh82', 'no_lang_code', 1, 'https://ror.org/03gs9sh82 BioVentures (United States)'),
(72966, 'https://ror.org/03gxz3j07', 'en', 1, 'https://ror.org/03gxz3j07 Polish Society of Oriental Art Polski Instytut Studiów nad Sztuką Świata'),
(72967, 'https://ror.org/03gyt6j98', 'pt', 1, 'https://ror.org/03gyt6j98 Coopercitrus Cooperativa de Produtores Rurais'),
(72968, 'https://ror.org/03gzqe894', 'en', 1, 'https://ror.org/03gzqe894 Niels Brock'),
(72969, 'https://ror.org/03h1s0z86', 'en', 1, 'https://ror.org/03h1s0z86 Transparency International'),
(72970, 'https://ror.org/03h20ca94', 'en', 1, 'https://ror.org/03h20ca94 Walk Free Foundation'),
(72971, 'https://ror.org/03h3p2g48', 'en', 1, 'https://ror.org/03h3p2g48 SolarAid'),
(72972, 'https://ror.org/03h41b845', 'no_lang_code', 1, 'https://ror.org/03h41b845 Royal Shakespeare Company (United Kingdom)'),
(72973, 'https://ror.org/03h7pxc12', 'no_lang_code', 1, 'https://ror.org/03h7pxc12 Iceotope Technologies (United Kingdom)'),
(72974, 'https://ror.org/03h7rjb68', 'en', 1, 'https://ror.org/03h7rjb68 Botswana Institute for Technology Research and Innovation'),
(72975, 'https://ror.org/03h837345', 'nl', 1, 'https://ror.org/03h837345 Astronomisch Fysisch Onderzoek Nederland'),
(72976, 'https://ror.org/03h8kn192', 'en', 1, 'https://ror.org/03h8kn192 International Union of Police Associations'),
(72977, 'https://ror.org/03h8nf250', 'no_lang_code', 1, 'https://ror.org/03h8nf250 Binergy Scientific (United States)'),
(72978, 'https://ror.org/03h8wyx14', 'pt', 1, 'https://ror.org/03h8wyx14 Instituto Paulo Gontijo'),
(72979, 'https://ror.org/03haheq63', 'no_lang_code', 1, 'https://ror.org/03haheq63 Engineering Technologies and Developments (Ukraine)'),
(72980, 'https://ror.org/03ham4v40', 'it', 1, 'https://ror.org/03ham4v40 Opificio delle Pietre Dure'),
(72981, 'https://ror.org/03hbejw10', 'en', 1, 'https://ror.org/03hbejw10 Collaborative Laboratory Services'),
(72982, 'https://ror.org/03hbksy74', 'no_lang_code', 1, 'https://ror.org/03hbksy74 Airbus (United States)'),
(72983, 'https://ror.org/03hbnfz28', 'en', 1, 'https://ror.org/03hbnfz28 Nautical Archaeology Society'),
(72984, 'https://ror.org/03hd9pr71', 'no_lang_code', 1, 'https://ror.org/03hd9pr71 Palumed (France)'),
(72985, 'https://ror.org/03hensb66', 'en', 1, 'https://ror.org/03hensb66 Witness'),
(72986, 'https://ror.org/03hgy0s07', 'en', 1, 'https://ror.org/03hgy0s07 Ho Chi Minh National Academy of Politics Hį»c viện ChĆ­nh trị Quốc gia Hồ ChĆ­ Minh'),
(72987, 'https://ror.org/03hh6sn09', 'en', 1, 'https://ror.org/03hh6sn09 Yunnan Building Materials Research & Design Institute äŗ‘å—å¤§å­¦å»ŗē­‘äøŽč§„åˆ’å­¦é™¢'),
(72988, 'https://ror.org/03hhqgr50', 'en', 1, 'https://ror.org/03hhqgr50 Peace Through Folk'),
(72989, 'https://ror.org/03hjaw451', 'no_lang_code', 1, 'https://ror.org/03hjaw451 Daico Industries (United States)'),
(72990, 'https://ror.org/03hjbp089', 'en', 1, 'https://ror.org/03hjbp089 Wallace Kelsey Research Foundation'),
(72991, 'https://ror.org/03hqbt751', 'en', 1, 'https://ror.org/03hqbt751 Angela Ash Associates'),
(72992, 'https://ror.org/03hqq6242', 'es', 1, 'https://ror.org/03hqq6242 Plan Ceibal'),
(72993, 'https://ror.org/03hqz0977', 'no_lang_code', 1, 'https://ror.org/03hqz0977 Microtrace (United States)'),
(72994, 'https://ror.org/03hr98c08', 'en', 1, 'https://ror.org/03hr98c08 The History Teachers'' Association of Australia'),
(72995, 'https://ror.org/03hrkx094', 'no_lang_code', 1, 'https://ror.org/03hrkx094 Gadusol Laboratories (United States)'),
(72996, 'https://ror.org/03htrq259', 'en', 1, 'https://ror.org/03htrq259 Camino Public Relations'),
(72997, 'https://ror.org/03hxch322', 'en', 1, 'https://ror.org/03hxch322 1947 Partition Archive'),
(72998, 'https://ror.org/03hxhpz06', 'en', 1, 'https://ror.org/03hxhpz06 Wildlife Conservation Society United Kingdom'),
(72999, 'https://ror.org/03hxrwp69', 'no_lang_code', 1, 'https://ror.org/03hxrwp69 Shopping Live (Russia)'),
(73000, 'https://ror.org/03hzr9w43', 'en', 1, 'https://ror.org/03hzr9w43 Club & Institute Union'),
(73001, 'https://ror.org/03j0tz946', 'no_lang_code', 1, 'https://ror.org/03j0tz946 Detector Technology (United States)'),
(73002, 'https://ror.org/03j2yjz09', 'en', 1, 'https://ror.org/03j2yjz09 North Norfolk Clinical Commissioning Group'),
(73003, 'https://ror.org/03j3q6b81', 'ro', 1, 'https://ror.org/03j3q6b81 Spitalul Clinic Dr. Victor Babes'),
(73004, 'https://ror.org/03ja1tq30', 'no_lang_code', 1, 'https://ror.org/03ja1tq30 HOPE Innovations (Canada)'),
(73005, 'https://ror.org/03ja7dr12', 'en', 1, 'https://ror.org/03ja7dr12 International Air Transport Association'),
(73006, 'https://ror.org/03jaxrf75', 'en', 1, 'https://ror.org/03jaxrf75 Cumberland County Historical Society'),
(73007, 'https://ror.org/03jbvpa78', 'en', 1, 'https://ror.org/03jbvpa78 Association for Play Therapy'),
(73008, 'https://ror.org/03jcfvc38', 'no_lang_code', 1, 'https://ror.org/03jcfvc38 Multibeam (United States)'),
(73009, 'https://ror.org/03jdaez56', 'en', 1, 'https://ror.org/03jdaez56 Africa Research Institute'),
(73010, 'https://ror.org/03jdn7e64', 'en', 1, 'https://ror.org/03jdn7e64 Association of University Research Parks'),
(73011, 'https://ror.org/03jf1cp95', 'en', 1, 'https://ror.org/03jf1cp95 Social Tech Trust'),
(73012, 'https://ror.org/03jjc4667', 'en', 1, 'https://ror.org/03jjc4667 Ministry of Agriculture and Fisheries وزارة الزراعة ŁˆŲ§Ł„Ų«Ų±ŁˆŲ© Ų§Ł„Ų³Ł…ŁƒŁŠŲ© - سلطنة Ų¹ŁŁ…Ų§Ł†'),
(73013, 'https://ror.org/03jjj8766', 'en', 1, 'https://ror.org/03jjj8766 Green Technology'),
(73014, 'https://ror.org/03jjzp129', 'en', 1, 'https://ror.org/03jjzp129 Los Angeles County Superior Court'),
(73015, 'https://ror.org/03jn9cy69', 'en', 1, 'https://ror.org/03jn9cy69 Harry S. Truman Presidential Library and Museum'),
(73016, 'https://ror.org/03jpft613', 'no_lang_code', 1, 'https://ror.org/03jpft613 Metal Storm (United States)'),
(73017, 'https://ror.org/03jqv7547', 'no_lang_code', 1, 'https://ror.org/03jqv7547 Lumibird (France)'),
(73018, 'https://ror.org/03jr24865', 'en', 1, 'https://ror.org/03jr24865 Blackpool Better Start'),
(73019, 'https://ror.org/03jr6e130', 'no_lang_code', 1, 'https://ror.org/03jr6e130 Zębiec (Poland)'),
(73020, 'https://ror.org/03jrg4537', 'en', 1, 'https://ror.org/03jrg4537 British Association for South Asian Studies'),
(73021, 'https://ror.org/03js0ja63', 'en', 1, 'https://ror.org/03js0ja63 Havering College of Further and Higher Education'),
(73022, 'https://ror.org/03jtvc520', 'en', 1, 'https://ror.org/03jtvc520 Energiewirtschaftliches Institut an der UniversitƤt zu Kƶln Institute of Energy Economics at the University of Cologne'),
(73023, 'https://ror.org/03jxrtv34', 'no_lang_code', 1, 'https://ror.org/03jxrtv34 Alaskanativetech (United States)'),
(73024, 'https://ror.org/03k3mtb84', 'en', 1, 'https://ror.org/03k3mtb84 Kino Klassika Foundation'),
(73025, 'https://ror.org/03k434963', 'pt', 1, 'https://ror.org/03k434963 Instituto de Estudos do Trabalho e Sociedade'),
(73026, 'https://ror.org/03k4hy467', 'en', 1, 'https://ror.org/03k4hy467 Virgin Care'),
(73027, 'https://ror.org/03k5dtn35', 'en', 1, 'https://ror.org/03k5dtn35 One Text Initiative'),
(73028, 'https://ror.org/03k7v4244', 'no_lang_code', 1, 'https://ror.org/03k7v4244 Infinity (United States)'),
(73029, 'https://ror.org/03k85sj46', 'en', 1, 'https://ror.org/03k85sj46 Learning Policy Institute'),
(73030, 'https://ror.org/03kcznq08', 'en', 1, 'https://ror.org/03kcznq08 Convergence'),
(73031, 'https://ror.org/03kd8zx94', 'en', 1, 'https://ror.org/03kd8zx94 Council of State Administrators of Vocational Rehabilitation'),
(73032, 'https://ror.org/03kecmv77', 'en', 1, 'https://ror.org/03kecmv77 Consumer Federation of America'),
(73033, 'https://ror.org/03kfjwh70', 'nl', 1, 'https://ror.org/03kfjwh70 College voor de Rechten van de Mens'),
(73034, 'https://ror.org/03kfmyx03', 'en', 1, 'https://ror.org/03kfmyx03 Canterbury Museums and Galleries'),
(73035, 'https://ror.org/03kg58a97', 'no_lang_code', 1, 'https://ror.org/03kg58a97 Diassess (United States)'),
(73036, 'https://ror.org/03kg5d423', 'en', 1, 'https://ror.org/03kg5d423 PRS Legislative Research'),
(73037, 'https://ror.org/03khf9f69', 'en', 1, 'https://ror.org/03khf9f69 Turnaround for Children'),
(73038, 'https://ror.org/03kky0014', 'en', 1, 'https://ror.org/03kky0014 Community Development and Health Network'),
(73039, 'https://ror.org/03kmk3010', 'no_lang_code', 1, 'https://ror.org/03kmk3010 Inanovate (United States)'),
(73040, 'https://ror.org/03knmxa92', 'en', 1, 'https://ror.org/03knmxa92 Dynamic Object Language Labs'),
(73041, 'https://ror.org/03kpvz984', 'en', 1, 'https://ror.org/03kpvz984 Jobs With Justice'),
(73042, 'https://ror.org/03ktp1v56', 'no_lang_code', 1, 'https://ror.org/03ktp1v56 NuSep (United States)'),
(73043, 'https://ror.org/03ktsar73', 'en', 1, 'https://ror.org/03ktsar73 AARP Foundation'),
(73044, 'https://ror.org/03kwqy112', 'no_lang_code', 1, 'https://ror.org/03kwqy112 GPB Scientific (United States)'),
(73045, 'https://ror.org/03ky9yn97', 'en', 1, 'https://ror.org/03ky9yn97 Structural Timber Association'),
(73046, 'https://ror.org/03kyeae64', 'en', 1, 'https://ror.org/03kyeae64 Nile University'),
(73047, 'https://ror.org/03m252h72', 'no_lang_code', 1, 'https://ror.org/03m252h72 Bashpole Software (United States)'),
(73048, 'https://ror.org/03m2a9c60', 'en', 1, 'https://ror.org/03m2a9c60 UK Health Forum'),
(73049, 'https://ror.org/03m2raa30', 'en', 1, 'https://ror.org/03m2raa30 Beijing Gender Health Education Institute åŒ—äŗ¬ēŗŖå®‰å¾·å’ØčÆ¢äø­åæƒ'),
(73050, 'https://ror.org/03m2tmd95', 'en', 1, 'https://ror.org/03m2tmd95 National Institute for Pharmaceutical Technology & Education'),
(73051, 'https://ror.org/03m3bzv26', 'no_lang_code', 1, 'https://ror.org/03m3bzv26 Kytaro (United States)'),
(73052, 'https://ror.org/03m3kst85', 'en', 1, 'https://ror.org/03m3kst85 Wales Council for Voluntary Action'),
(73053, 'https://ror.org/03m56sb16', 'en', 1, 'https://ror.org/03m56sb16 Gloag Foundation'),
(73054, 'https://ror.org/03m659k95', 'en', 1, 'https://ror.org/03m659k95 Alfred Williams Heritage Society'),
(73055, 'https://ror.org/03m91y886', 'no_lang_code', 1, 'https://ror.org/03m91y886 Shirkat Gah'),
(73056, 'https://ror.org/03m92j615', 'no_lang_code', 1, 'https://ror.org/03m92j615 Axiom (United States)'),
(73057, 'https://ror.org/03m9tj704', 'en', 1, 'https://ror.org/03m9tj704 The Kauri Museum'),
(73058, 'https://ror.org/03mc4hv80', 'en', 1, 'https://ror.org/03mc4hv80 California Latinas for Reproductive Justice'),
(73059, 'https://ror.org/03md19g63', 'en', 1, 'https://ror.org/03md19g63 Lapido Media'),
(73060, 'https://ror.org/03meb1477', 'en', 1, 'https://ror.org/03meb1477 Oswestry Town Museum'),
(73061, 'https://ror.org/03med0831', 'en', 1, 'https://ror.org/03med0831 Al-Ahram Center for Political and Strategic Studies Ł…Ų±ŁƒŲ² الأهرام للدراسات Ų§Ł„Ų³ŁŠŲ§Ų³ŁŠŲ© ŁˆŲ§Ł„Ų§Ų³ŲŖŲ±Ų§ŲŖŁŠŲ¬ŁŠŲ©'),
(73062, 'https://ror.org/03mf8nk10', 'en', 1, 'https://ror.org/03mf8nk10 DanChurchAid'),
(73063, 'https://ror.org/03mfwzh84', 'en', 1, 'https://ror.org/03mfwzh84 The Work Foundation'),
(73064, 'https://ror.org/03mj23d77', 'en', 1, 'https://ror.org/03mj23d77 Institute of Livelihood Research and Training ą°²ą±†ą±–ą°µą±ą°²ą±€ą°¹ą±ą°”ą± ą°°ą±€ą°øą±†ą°°ą±ą°šą± ą°…ą°‚ą°”ą± ą°Ÿą±ą°°ą±†ą±–ą°Øą°æą°‚ą°—ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą±'),
(73065, 'https://ror.org/03mk3w518', 'en', 1, 'https://ror.org/03mk3w518 Seattle Psychoanalytic Society and Institute'),
(73066, 'https://ror.org/03mmb0d82', 'fr', 1, 'https://ror.org/03mmb0d82 Bases, Corpus, Langage'),
(73067, 'https://ror.org/03mpmj050', 'no_lang_code', 1, 'https://ror.org/03mpmj050 Torkapparater (Sweden)'),
(73068, 'https://ror.org/03mq02m67', 'en', 1, 'https://ror.org/03mq02m67 Limón Institute'),
(73069, 'https://ror.org/03mqht986', 'no_lang_code', 1, 'https://ror.org/03mqht986 LogMeIn (United Kingdom)'),
(73070, 'https://ror.org/03mr6bx04', 'en', 1, 'https://ror.org/03mr6bx04 Zayed Higher Organization for Humanitarian Care and Special Needs Ų³Ų³Ų© زايد Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł…Ų¤Ų³Ų³Ų© زايد Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų±Ų¹Ų§ŁŠŲ© Ų§Ł„Ų„Ł†Ų³Ų§Ł†ŁŠŲ© ŁˆŲ§Ł„Ų„Ų­ŲŖŁŠŲ§Ų¬Ų§ŲŖ الخاصة'),
(73071, 'https://ror.org/03mrd4308', 'en', 1, 'https://ror.org/03mrd4308 Salem City Schools'),
(73072, 'https://ror.org/03mrdtb06', 'en', 1, 'https://ror.org/03mrdtb06 International Association of Teachers of English as a Foreign Language'),
(73073, 'https://ror.org/03mrs5c75', 'no_lang_code', 1, 'https://ror.org/03mrs5c75 KuÅŗnia Stalowa Wola (Poland)'),
(73074, 'https://ror.org/03msnc432', 'no_lang_code', 1, 'https://ror.org/03msnc432 SpectraCure (Sweden)'),
(73075, 'https://ror.org/03mt2tp20', 'en', 1, 'https://ror.org/03mt2tp20 Federation for Self Financing Tertiary Education č‡Ŗč³‡é«˜ē­‰ę•™č‚²čÆē›Ÿ'),
(73076, 'https://ror.org/03mv13182', 'en', 1, 'https://ror.org/03mv13182 Ways to Wellness'),
(73077, 'https://ror.org/03mv51c78', 'en', 1, 'https://ror.org/03mv51c78 Airport Services Association'),
(73078, 'https://ror.org/03mvw5b45', 'en', 1, 'https://ror.org/03mvw5b45 Sheffield Industrial Museums Trust'),
(73079, 'https://ror.org/03mw0xn70', 'no_lang_code', 1, 'https://ror.org/03mw0xn70 Royal London Group (United Kingdom)'),
(73080, 'https://ror.org/03mwh5n08', 'no_lang_code', 1, 'https://ror.org/03mwh5n08 Jonas (United States)'),
(73081, 'https://ror.org/03mxmdc96', 'en', 1, 'https://ror.org/03mxmdc96 Institute of Religious Studies Instituto de Estudos da Religião'),
(73082, 'https://ror.org/03mxt3314', 'en', 1, 'https://ror.org/03mxt3314 Family Mediation Council'),
(73083, 'https://ror.org/03n103c50', 'en', 1, 'https://ror.org/03n103c50 Habitat for Humanity'),
(73084, 'https://ror.org/03n1csv23', 'en', 1, 'https://ror.org/03n1csv23 Institute of Criminology of the Polish Forensic Association Polskie Towarzystwo Kryminalistyczne'),
(73085, 'https://ror.org/03n1jcy96', 'de', 1, 'https://ror.org/03n1jcy96 DRK Krankenhaus Altenkirchen-Hachenburg'),
(73086, 'https://ror.org/03n3d2997', 'en', 1, 'https://ror.org/03n3d2997 Paediatric Emergency Research in the United Kingdom & Ireland'),
(73087, 'https://ror.org/03n3erz85', 'en', 1, 'https://ror.org/03n3erz85 Koshish Charitable Trust ą¤•ą„‹ą¤¶ą¤æą¤¶'),
(73088, 'https://ror.org/03n3xvs04', 'en', 1, 'https://ror.org/03n3xvs04 Solar Fuels Institute'),
(73089, 'https://ror.org/03n4dkj44', 'no_lang_code', 1, 'https://ror.org/03n4dkj44 Chhandam School of Kathak'),
(73090, 'https://ror.org/03n4e9s45', 'en', 1, 'https://ror.org/03n4e9s45 Human Services Coalition'),
(73091, 'https://ror.org/03n8a0v21', 'en', 1, 'https://ror.org/03n8a0v21 Coalition for Community Schools'),
(73092, 'https://ror.org/03n8g5s30', 'no_lang_code', 1, 'https://ror.org/03n8g5s30 Carbon Carbon Advanced Technologies (United States)'),
(73093, 'https://ror.org/03nfq0y30', 'en', 1, 'https://ror.org/03nfq0y30 Association for Robots in Architecture'),
(73094, 'https://ror.org/03nj9bh85', 'no_lang_code', 1, 'https://ror.org/03nj9bh85 Corgenix (United States)'),
(73095, 'https://ror.org/03nkk3987', 'en', 1, 'https://ror.org/03nkk3987 Worcestershire Health and Care NHS Trust'),
(73096, 'https://ror.org/03nm0d152', 'en', 1, 'https://ror.org/03nm0d152 Media Archive for Central England'),
(73097, 'https://ror.org/03nm8wc96', 'en', 1, 'https://ror.org/03nm8wc96 Glenbow Museum'),
(73098, 'https://ror.org/03nm9bt69', 'no_lang_code', 1, 'https://ror.org/03nm9bt69 Howell Laboratories (United States)'),
(73099, 'https://ror.org/03nnaq439', 'en', 1, 'https://ror.org/03nnaq439 One to One Development Trust'),
(73100, 'https://ror.org/03nq9vg83', 'no_lang_code', 1, 'https://ror.org/03nq9vg83 Getica (Sweden)'),
(73101, 'https://ror.org/03nqaj348', 'no_lang_code', 1, 'https://ror.org/03nqaj348 Bell Biosystems (United States)'),
(73102, 'https://ror.org/03nr7d398', 'en', 1, 'https://ror.org/03nr7d398 Center for Evaluation and Development Mannheimer Zentrum für Evaluation und Entwicklungsforschung'),
(73103, 'https://ror.org/03ns2gd62', 'no_lang_code', 1, 'https://ror.org/03ns2gd62 C-2 Innovations (United States)'),
(73104, 'https://ror.org/03nt2n936', 'no_lang_code', 1, 'https://ror.org/03nt2n936 SilMach (France)'),
(73105, 'https://ror.org/03nt6qk39', 'no_lang_code', 1, 'https://ror.org/03nt6qk39 CheckUp & Choices (United States)'),
(73106, 'https://ror.org/03ntwd790', 'en', 1, 'https://ror.org/03ntwd790 Xavier Institute of Communications ą¤œą¤¼ą„‡ą¤µą¤æą¤Æą¤° ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤•ą¤®ą„ą¤Æą„ą¤Øą¤æą¤•ą„‡ą¤¶ą¤Øą„ą¤ø'),
(73107, 'https://ror.org/03nv0w254', 'no_lang_code', 1, 'https://ror.org/03nv0w254 Acorn Science & Innovation (United States)'),
(73108, 'https://ror.org/03p13vc55', 'no_lang_code', 1, 'https://ror.org/03p13vc55 Insilixa (United States)'),
(73109, 'https://ror.org/03p61g771', 'en', 1, 'https://ror.org/03p61g771 Toniic Institute'),
(73110, 'https://ror.org/03p7n1480', 'no_lang_code', 1, 'https://ror.org/03p7n1480 Cardiosolv Ablation Technologies (United States)'),
(73111, 'https://ror.org/03p878384', 'en', 1, 'https://ror.org/03p878384 Association of English Cathedrals'),
(73112, 'https://ror.org/03p8djp35', 'no_lang_code', 1, 'https://ror.org/03p8djp35 Uttarakhand Seva Nidhi Paryavaran Shiksha Sansthan'),
(73113, 'https://ror.org/03p8mx045', 'no_lang_code', 1, 'https://ror.org/03p8mx045 Curl Bio (United States)'),
(73114, 'https://ror.org/03p9ccw33', 'en', 1, 'https://ror.org/03p9ccw33 American Jazz Institute'),
(73115, 'https://ror.org/03p9zdb14', 'no_lang_code', 1, 'https://ror.org/03p9zdb14 ISCO International (United States)'),
(73116, 'https://ror.org/03pbq8185', 'en', 1, 'https://ror.org/03pbq8185 National Council for Black Studies'),
(73117, 'https://ror.org/03pesqc02', 'en', 1, 'https://ror.org/03pesqc02 Center for Whale Research'),
(73118, 'https://ror.org/03phkpc68', 'no_lang_code', 1, 'https://ror.org/03phkpc68 LightStanza (United States)'),
(73119, 'https://ror.org/03pk2ae02', 'en', 1, 'https://ror.org/03pk2ae02 Amani Institute Uganda'),
(73120, 'https://ror.org/03pkrh852', 'no_lang_code', 1, 'https://ror.org/03pkrh852 Tauron Wytwarzanie (Poland)'),
(73121, 'https://ror.org/03pm3k527', 'no_lang_code', 1, 'https://ror.org/03pm3k527 AlphaTRAC (United States)'),
(73122, 'https://ror.org/03pm6jn74', 'en', 1, 'https://ror.org/03pm6jn74 Health Nest Uganda'),
(73123, 'https://ror.org/03pm74b25', 'en', 1, 'https://ror.org/03pm74b25 Arkansas Community Colleges'),
(73124, 'https://ror.org/03pm82185', 'no_lang_code', 1, 'https://ror.org/03pm82185 Lingua et Machina (France)'),
(73125, 'https://ror.org/03pmk4927', 'no_lang_code', 1, 'https://ror.org/03pmk4927 Emerald Sky Technologies'),
(73126, 'https://ror.org/03pp91130', 'no_lang_code', 1, 'https://ror.org/03pp91130 Heliospectra (Sweden)'),
(73127, 'https://ror.org/03pr6f932', 'en', 1, 'https://ror.org/03pr6f932 Darbar'),
(73128, 'https://ror.org/03pr7sz08', 'en', 1, 'https://ror.org/03pr7sz08 International Association of Plumbing and Mechanical Officials'),
(73129, 'https://ror.org/03preh705', 'sv', 1, 'https://ror.org/03preh705 WeMind'),
(73130, 'https://ror.org/03prq2784', 'en', 1, 'https://ror.org/03prq2784 Zhuzhou Central Hospital ę Ŗę“²åø‚äø­åæƒåŒ»é™¢'),
(73131, 'https://ror.org/03prqps50', 'no_lang_code', 1, 'https://ror.org/03prqps50 4Power (United States)'),
(73132, 'https://ror.org/03ps8mj31', 'en', 1, 'https://ror.org/03ps8mj31 Watershed Support Services and Activities Network'),
(73133, 'https://ror.org/03psr8197', 'no_lang_code', 1, 'https://ror.org/03psr8197 AsystBio (United States)'),
(73134, 'https://ror.org/03pvzeb17', 'en', 1, 'https://ror.org/03pvzeb17 Kansas City Public Schools'),
(73135, 'https://ror.org/03px6cm72', 'no_lang_code', 1, 'https://ror.org/03px6cm72 NBL Technovator Group (Japan)'),
(73136, 'https://ror.org/03q1m1j52', 'en', 1, 'https://ror.org/03q1m1j52 IST Research'),
(73137, 'https://ror.org/03q3g6770', 'no_lang_code', 1, 'https://ror.org/03q3g6770 RIKA (Austria)'),
(73138, 'https://ror.org/03q4ccx33', 'en', 1, 'https://ror.org/03q4ccx33 Acropolis Museum ĪœĪæĻ…ĻƒĪµĪÆĪæ Ī‘ĪŗĻĻŒĻ€ĪæĪ»Ī·Ļ‚'),
(73139, 'https://ror.org/03q51r998', 'no_lang_code', 1, 'https://ror.org/03q51r998 Valero Energy (United States)'),
(73140, 'https://ror.org/03q5h1s54', 'no_lang_code', 1, 'https://ror.org/03q5h1s54 ​Eicosis (United States)'),
(73141, 'https://ror.org/03q674f15', 'en', 1, 'https://ror.org/03q674f15 Polish Academy of Learning Polska Akademia Umiejętności'),
(73142, 'https://ror.org/03q8mf789', 'no_lang_code', 1, 'https://ror.org/03q8mf789 Goleta Engineering (United States)'),
(73143, 'https://ror.org/03q8q9685', 'en', 1, 'https://ror.org/03q8q9685 Academia de Administrare Publică Academy of Public Administration'),
(73144, 'https://ror.org/03qa33147', 'en', 1, 'https://ror.org/03qa33147 Gladstone Pottery Museum'),
(73145, 'https://ror.org/03qbv1q25', 'en', 1, 'https://ror.org/03qbv1q25 China Institutes of Contemporary International Relations äø­å›½ēŽ°ä»£å›½é™…å…³ē³»ē ”ē©¶é™¢'),
(73146, 'https://ror.org/03qc0jc41', 'no_lang_code', 1, 'https://ror.org/03qc0jc41 Saratoga Cardiology Associates (United States)'),
(73147, 'https://ror.org/03qdg6h95', 'no_lang_code', 1, 'https://ror.org/03qdg6h95 Inscopix (United States)'),
(73148, 'https://ror.org/03qe16108', 'en', 1, 'https://ror.org/03qe16108 Directorate General of Training'),
(73149, 'https://ror.org/03qe43686', 'no_lang_code', 1, 'https://ror.org/03qe43686 HNU Photonics (United States)'),
(73150, 'https://ror.org/03qgydn21', 'es', 1, 'https://ror.org/03qgydn21 Escuela Nacional Superior de Ballet'),
(73151, 'https://ror.org/03qj46y39', 'en', 1, 'https://ror.org/03qj46y39 Ministry of Labour, Social Security and Services'),
(73152, 'https://ror.org/03qkv5w58', 'en', 1, 'https://ror.org/03qkv5w58 Inward Bound Mindfulness Education'),
(73153, 'https://ror.org/03qrymy45', 'no_lang_code', 1, 'https://ror.org/03qrymy45 Medsleuth (United States)'),
(73154, 'https://ror.org/03qs0wq41', 'no_lang_code', 1, 'https://ror.org/03qs0wq41 Cervantes Institute'),
(73155, 'https://ror.org/03qsj7h32', 'no_lang_code', 1, 'https://ror.org/03qsj7h32 Danpet (Sweden)'),
(73156, 'https://ror.org/03qsnan22', 'en', 1, 'https://ror.org/03qsnan22 Alaska Community Action on Toxics'),
(73157, 'https://ror.org/03qyybc26', 'no_lang_code', 1, 'https://ror.org/03qyybc26 Kyocera (United Kingdom)'),
(73158, 'https://ror.org/03r1eja77', 'no_lang_code', 1, 'https://ror.org/03r1eja77 Accacia International (United States)'),
(73159, 'https://ror.org/03r32j025', 'no_lang_code', 1, 'https://ror.org/03r32j025 NeuroProof (Germany)'),
(73160, 'https://ror.org/03r4xtg30', 'en', 1, 'https://ror.org/03r4xtg30 Cat Tien National Park VĘ°į»n Quốc Gia CĆ”t TiĆŖn'),
(73161, 'https://ror.org/03r79dj18', 'pt', 1, 'https://ror.org/03r79dj18 Anis'),
(73162, 'https://ror.org/03r9xyh10', 'no_lang_code', 1, 'https://ror.org/03r9xyh10 Inproel (Poland)'),
(73163, 'https://ror.org/03rab9n37', 'en', 1, 'https://ror.org/03rab9n37 Indonesia International Institute for Life Sciences'),
(73164, 'https://ror.org/03rc7sa66', 'no_lang_code', 1, 'https://ror.org/03rc7sa66 Automation, Information, and Management Systems (United States)'),
(73165, 'https://ror.org/03rdg0s47', 'en', 1, 'https://ror.org/03rdg0s47 British Ports Association'),
(73166, 'https://ror.org/03rkfnq75', 'en', 1, 'https://ror.org/03rkfnq75 Equal Education Law Centre'),
(73167, 'https://ror.org/03rqs0g29', 'en', 1, 'https://ror.org/03rqs0g29 Hį»™i NhĆ  bĆ”o Việt Nam Vietnam Journalists Association'),
(73168, 'https://ror.org/03rw4ty96', 'en', 1, 'https://ror.org/03rw4ty96 Beijing Social Work Development Center for Facilitators åŒ—äŗ¬åø‚åä½œč€…ē¤¾ä¼šå·„ä½œå‘å±•äø­åæƒ'),
(73169, 'https://ror.org/03rx9tc73', 'sv', 1, 'https://ror.org/03rx9tc73 VƤsttrafik'),
(73170, 'https://ror.org/03rz1c626', 'en', 1, 'https://ror.org/03rz1c626 The Carbon Monoxide and Gas Safety Society'),
(73171, 'https://ror.org/03rzjkf65', 'no_lang_code', 1, 'https://ror.org/03rzjkf65 Apptronik (United States)'),
(73172, 'https://ror.org/03s13k126', 'pt', 1, 'https://ror.org/03s13k126 Hospital das Clínicas Samuel Libânio'),
(73173, 'https://ror.org/03s1pjm91', 'no_lang_code', 1, 'https://ror.org/03s1pjm91 LatinoJustice PRLDEF'),
(73174, 'https://ror.org/03s2zgf58', 'en', 1, 'https://ror.org/03s2zgf58 Polish Stem Cell Bank Polski Bank Komórek Macierzystych'),
(73175, 'https://ror.org/03s3a5s78', 'en', 1, 'https://ror.org/03s3a5s78 Bulgarian Helsinki Committee'),
(73176, 'https://ror.org/03s84bz47', 'fr', 1, 'https://ror.org/03s84bz47 Centre Lavallois de Ressources Technologiques, Clarte'),
(73177, 'https://ror.org/03s9q3c79', 'en', 1, 'https://ror.org/03s9q3c79 Poetry International Foundation'),
(73178, 'https://ror.org/03sax3264', 'en', 1, 'https://ror.org/03sax3264 Southern Technical University الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„Ų¬Ł†ŁˆŲØŁŠŲ©'),
(73179, 'https://ror.org/03saz4k78', 'no_lang_code', 1, 'https://ror.org/03saz4k78 TeleMedic Systems (United Kingdom)'),
(73180, 'https://ror.org/03sbkjp44', 'no_lang_code', 1, 'https://ror.org/03sbkjp44 Cognionics (United States)'),
(73181, 'https://ror.org/03sc8dz05', 'en', 1, 'https://ror.org/03sc8dz05 Ministry of Land Management, Urban Planning and Construction įž€įŸ’įžšįžŸįž½įž„įžšįŸ€įž”įž…įŸ†įžŠįŸ‚įž“įžŠįžø įž“įž‚įžšįž¼įž”įž“įžøįž™įž€įž˜įŸ’įž˜ įž“įž·įž„įžŸįŸ†įžŽįž„įŸ‹'),
(73182, 'https://ror.org/03scfd225', 'en', 1, 'https://ror.org/03scfd225 Arab Center for International Humanitarian Law and Human Rights Education Centre Arabe pour l''Education au Droit International Humanitaire et aux Droits Humains'),
(73183, 'https://ror.org/03schyf67', 'no_lang_code', 1, 'https://ror.org/03schyf67 CLEARink (United States)'),
(73184, 'https://ror.org/03sd3yf61', 'de', 1, 'https://ror.org/03sd3yf61 Senckenberg am Meer'),
(73185, 'https://ror.org/03sdvv968', 'en', 1, 'https://ror.org/03sdvv968 Marine Science Coordination Committee'),
(73186, 'https://ror.org/03se4em19', 'no_lang_code', 1, 'https://ror.org/03se4em19 Axillium Research (United Kingdom)'),
(73187, 'https://ror.org/03sezsp15', 'en', 1, 'https://ror.org/03sezsp15 Cohen Medical Associates'),
(73188, 'https://ror.org/03snh5g40', 'de', 1, 'https://ror.org/03snh5g40 Ameos Klinikum Inntal'),
(73189, 'https://ror.org/03snzra40', 'en', 1, 'https://ror.org/03snzra40 Institute of Information Security Professionals'),
(73190, 'https://ror.org/03sp64371', 'en', 1, 'https://ror.org/03sp64371 British Council'),
(73191, 'https://ror.org/03spr2751', 'en', 1, 'https://ror.org/03spr2751 Empower Schools'),
(73192, 'https://ror.org/03sq05k80', 'en', 1, 'https://ror.org/03sq05k80 Red Poll Cattle Society'),
(73193, 'https://ror.org/03sqqkw27', 'en', 1, 'https://ror.org/03sqqkw27 Society for Labour & Development'),
(73194, 'https://ror.org/03sr9xs40', 'de', 1, 'https://ror.org/03sr9xs40 Dermatopathologie Friedrichshafen'),
(73195, 'https://ror.org/03ss3kc28', 'en', 1, 'https://ror.org/03ss3kc28 HealthWORKS Newcastle'),
(73196, 'https://ror.org/03ssym444', 'en', 1, 'https://ror.org/03ssym444 Publishers Licensing Services'),
(73197, 'https://ror.org/03stctc86', 'no_lang_code', 1, 'https://ror.org/03stctc86 EnetjƤrn Natur (Sweden)'),
(73198, 'https://ror.org/03stza714', 'no_lang_code', 1, 'https://ror.org/03stza714 Shanxi Museum å±±č„æåšē‰©é™¢'),
(73199, 'https://ror.org/03sz41d72', 'de', 1, 'https://ror.org/03sz41d72 Südharz Klinikum'),
(73200, 'https://ror.org/03t0jaj83', 'en', 1, 'https://ror.org/03t0jaj83 British Association for Islamic Studies'),
(73201, 'https://ror.org/03t0w9n05', 'no_lang_code', 1, 'https://ror.org/03t0w9n05 Sama (Brazil)'),
(73202, 'https://ror.org/03t35rn28', 'en', 1, 'https://ror.org/03t35rn28 National Engineering and Scientific Commission'),
(73203, 'https://ror.org/03t3fww40', 'no_lang_code', 1, 'https://ror.org/03t3fww40 CellSight Technologies (United States)'),
(73204, 'https://ror.org/03t6v9748', 'en', 1, 'https://ror.org/03t6v9748 The Communication Trust'),
(73205, 'https://ror.org/03t7fe423', 'en', 1, 'https://ror.org/03t7fe423 East Belfast Community Development Agency'),
(73206, 'https://ror.org/03t9eke74', 'en', 1, 'https://ror.org/03t9eke74 Corrymeela Community'),
(73207, 'https://ror.org/03tcray14', 'no_lang_code', 1, 'https://ror.org/03tcray14 Peppy Pals (Sweden)'),
(73208, 'https://ror.org/03tdwc870', 'no_lang_code', 1, 'https://ror.org/03tdwc870 Compositex (United States)'),
(73209, 'https://ror.org/03tecy818', 'no_lang_code', 1, 'https://ror.org/03tecy818 AchƩ (Brazil)'),
(73210, 'https://ror.org/03tf2ww78', 'en', 1, 'https://ror.org/03tf2ww78 Jammu and Kashmir Academy of Art, Culture and Languages'),
(73211, 'https://ror.org/03tfjft98', 'en', 1, 'https://ror.org/03tfjft98 American Bible Society'),
(73212, 'https://ror.org/03tht7k87', 'no_lang_code', 1, 'https://ror.org/03tht7k87 Dendris (France)'),
(73213, 'https://ror.org/03tkmjj17', 'en', 1, 'https://ror.org/03tkmjj17 Indian Law Resource Center'),
(73214, 'https://ror.org/03tmyej96', 'en', 1, 'https://ror.org/03tmyej96 Centro de Investigación en Ecosistemas de la Patagonia Patagonian Ecosystems Investigation Research Center'),
(73215, 'https://ror.org/03tny0b60', 'no_lang_code', 1, 'https://ror.org/03tny0b60 Hesperos (United States)'),
(73216, 'https://ror.org/03tp6qw94', 'no_lang_code', 1, 'https://ror.org/03tp6qw94 Ceryx Medical (United Kingdom)'),
(73217, 'https://ror.org/03tqm1w89', 'no_lang_code', 1, 'https://ror.org/03tqm1w89 Erallo Technologies (United States)'),
(73218, 'https://ror.org/03trz9s27', 'en', 1, 'https://ror.org/03trz9s27 Centre for Social Innovation'),
(73219, 'https://ror.org/03tv6h054', 'en', 1, 'https://ror.org/03tv6h054 Police Executive Research Forum'),
(73220, 'https://ror.org/03tvfd726', 'no_lang_code', 1, 'https://ror.org/03tvfd726 Marin Miljƶanalys Marine Environmental Analysis (Sweden)'),
(73221, 'https://ror.org/03tw07585', 'no_lang_code', 1, 'https://ror.org/03tw07585 Jackson and Tull (United States)'),
(73222, 'https://ror.org/03twde329', 'no_lang_code', 1, 'https://ror.org/03twde329 CellOptic (United States)'),
(73223, 'https://ror.org/03twgdg85', 'de', 1, 'https://ror.org/03twgdg85 Medizinische Zentrum für Gesundheit'),
(73224, 'https://ror.org/03tzxbr55', 'en', 1, 'https://ror.org/03tzxbr55 Georgian Arts and Culture Center įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜ įƒ®įƒ”įƒšįƒįƒ•įƒœįƒ”įƒ‘įƒ˜įƒ” ინეტიტუტი įƒ¬įƒįƒ›įƒ§įƒ•įƒįƒœįƒ˜ įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ˜'),
(73225, 'https://ror.org/03v0pfp89', 'en', 1, 'https://ror.org/03v0pfp89 WATCH'),
(73226, 'https://ror.org/03v4d6h23', 'en', 1, 'https://ror.org/03v4d6h23 The National Institute for Latino Policy'),
(73227, 'https://ror.org/03v50hq42', 'no_lang_code', 1, 'https://ror.org/03v50hq42 Coapt (United States)'),
(73228, 'https://ror.org/03v78xj45', 'en', 1, 'https://ror.org/03v78xj45 Public Health Research Consortium'),
(73229, 'https://ror.org/03v80r862', 'no_lang_code', 1, 'https://ror.org/03v80r862 Governo (Sweden)'),
(73230, 'https://ror.org/03vagve85', 'no_lang_code', 1, 'https://ror.org/03vagve85 Alector (United States)'),
(73231, 'https://ror.org/03vc6ep30', 'en', 1, 'https://ror.org/03vc6ep30 Center for Urban History of East Central Europe Центр Š¼Ń–ŃŃŒŠŗŠ¾Ń— історії Ń†ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-схіГної Європи'),
(73232, 'https://ror.org/03vd0wp03', 'en', 1, 'https://ror.org/03vd0wp03 DDR Museum'),
(73233, 'https://ror.org/03vd5n125', 'no_lang_code', 1, 'https://ror.org/03vd5n125 FringeArts'),
(73234, 'https://ror.org/03vebqe40', 'en', 1, 'https://ror.org/03vebqe40 Software Carpentry'),
(73235, 'https://ror.org/03vewy051', 'en', 1, 'https://ror.org/03vewy051 Bay Area Cardiology and Vascular Associates'),
(73236, 'https://ror.org/03vg1zh21', 'no_lang_code', 1, 'https://ror.org/03vg1zh21 Brinks Gilson & Lione (United States)'),
(73237, 'https://ror.org/03vgw1v49', 'en', 1, 'https://ror.org/03vgw1v49 Bundesamt für Migration und Flüchtlinge Federal Office for Migration and Refugees'),
(73238, 'https://ror.org/03vj16b25', 'en', 1, 'https://ror.org/03vj16b25 Money Advice Trust'),
(73239, 'https://ror.org/03vqhcv86', 'no_lang_code', 1, 'https://ror.org/03vqhcv86 Gamma Therapeutics (United States)'),
(73240, 'https://ror.org/03vr3gq96', 'en', 1, 'https://ror.org/03vr3gq96 Institute of Chartered Financial Analysts of India University, Jaipur'),
(73241, 'https://ror.org/03vrs3080', 'en', 1, 'https://ror.org/03vrs3080 National Management Degree College'),
(73242, 'https://ror.org/03vt7za95', 'en', 1, 'https://ror.org/03vt7za95 Xi''an High Tech University č„æå®‰é«˜ę–°ē§‘ęŠ€čŒäøšå­¦é™¢'),
(73243, 'https://ror.org/03vw5v747', 'en', 1, 'https://ror.org/03vw5v747 Toft Historical Society'),
(73244, 'https://ror.org/03vwaan51', 'en', 1, 'https://ror.org/03vwaan51 PetroVietnam University TrĘ°į»ng ĐẔi hį»c Dįŗ§u khĆ­ Việt Nam'),
(73245, 'https://ror.org/03vx81s20', 'en', 1, 'https://ror.org/03vx81s20 Mamta Health Institute for Mother and Child'),
(73246, 'https://ror.org/03w0gh820', 'en', 1, 'https://ror.org/03w0gh820 Bletchley Park Trust'),
(73247, 'https://ror.org/03w1yvq02', 'no_lang_code', 1, 'https://ror.org/03w1yvq02 PressCise (Sweden)'),
(73248, 'https://ror.org/03w2bez90', 'en', 1, 'https://ror.org/03w2bez90 National Mining Museum Scotland'),
(73249, 'https://ror.org/03w343k42', 'no_lang_code', 1, 'https://ror.org/03w343k42 Gleechi (Sweden)'),
(73250, 'https://ror.org/03w764380', 'no_lang_code', 1, 'https://ror.org/03w764380 Amercom (United States)'),
(73251, 'https://ror.org/03w7tz659', 'en', 1, 'https://ror.org/03w7tz659 Ishara Puppet Theatre Trust'),
(73252, 'https://ror.org/03w836z53', 'no_lang_code', 1, 'https://ror.org/03w836z53 Adient Medical (United States)'),
(73253, 'https://ror.org/03w8ev131', 'en', 1, 'https://ror.org/03w8ev131 British Olympic Association'),
(73254, 'https://ror.org/03w8g0847', 'en', 1, 'https://ror.org/03w8g0847 West Virginia Department of Military Affairs and Public Safety'),
(73255, 'https://ror.org/03w8kgm26', 'en', 1, 'https://ror.org/03w8kgm26 SB Science Management'),
(73256, 'https://ror.org/03w8qvw44', 'no_lang_code', 1, 'https://ror.org/03w8qvw44 4D (United Kingdom)'),
(73257, 'https://ror.org/03wb5j481', 'en', 1, 'https://ror.org/03wb5j481 The Facilities Society'),
(73258, 'https://ror.org/03wcjpf37', 'en', 1, 'https://ror.org/03wcjpf37 The Hellenic Centre'),
(73259, 'https://ror.org/03wcq4p61', 'en', 1, 'https://ror.org/03wcq4p61 Britannia Panopticon'),
(73260, 'https://ror.org/03wdrwf95', 'en', 1, 'https://ror.org/03wdrwf95 Shaoguan Railway Hospital éŸ¶å…³åø‚é“č·ÆåŒ»é™¢'),
(73261, 'https://ror.org/03wfbz902', 'en', 1, 'https://ror.org/03wfbz902 Foster Care Associates Scotland'),
(73262, 'https://ror.org/03wgnxg62', 'no_lang_code', 1, 'https://ror.org/03wgnxg62 Cytonics (United States)'),
(73263, 'https://ror.org/03whr7s66', 'en', 1, 'https://ror.org/03whr7s66 Center for Interdisciplinary Studies'),
(73264, 'https://ror.org/03wjazp93', 'no_lang_code', 1, 'https://ror.org/03wjazp93 Express Medicals (United Kingdom)'),
(73265, 'https://ror.org/03wjhyh40', 'no_lang_code', 1, 'https://ror.org/03wjhyh40 Oxford Applied Research (United Kingdom)'),
(73266, 'https://ror.org/03wkg1w97', 'en', 1, 'https://ror.org/03wkg1w97 Center for Democracy in the Americas'),
(73267, 'https://ror.org/03wkr8v72', 'en', 1, 'https://ror.org/03wkr8v72 Serendib Foundation for Music and Performing Arts'),
(73268, 'https://ror.org/03wm0sn72', 'en', 1, 'https://ror.org/03wm0sn72 Barbados Community College'),
(73269, 'https://ror.org/03wpmcv13', 'en', 1, 'https://ror.org/03wpmcv13 Education Through Music'),
(73270, 'https://ror.org/03wpswf31', 'no_lang_code', 1, 'https://ror.org/03wpswf31 Richard Allitt Associates (United Kingdom)'),
(73271, 'https://ror.org/03wqmmj05', 'no_lang_code', 1, 'https://ror.org/03wqmmj05 Furukawa Electric (Denmark)'),
(73272, 'https://ror.org/03wqzz907', 'en', 1, 'https://ror.org/03wqzz907 Topos'),
(73273, 'https://ror.org/03wt59215', 'en', 1, 'https://ror.org/03wt59215 Torbay Council'),
(73274, 'https://ror.org/03wts3073', 'en', 1, 'https://ror.org/03wts3073 Centre for Fine Arts Palais des Beaux-Arts Paleis voor Schone Kunsten'),
(73275, 'https://ror.org/03wvwbe92', 'en', 1, 'https://ror.org/03wvwbe92 Nanjing Foreign Language School å—äŗ¬å¤–å›½čÆ­å­¦ę ”'),
(73276, 'https://ror.org/03ww5we09', 'no_lang_code', 1, 'https://ror.org/03ww5we09 CMM Energy (United States)'),
(73277, 'https://ror.org/03wwnte34', 'en', 1, 'https://ror.org/03wwnte34 South West Vineyards Association'),
(73278, 'https://ror.org/03wxe4k21', 'no_lang_code', 1, 'https://ror.org/03wxe4k21 Ketebul Music'),
(73279, 'https://ror.org/03wyyd750', 'no_lang_code', 1, 'https://ror.org/03wyyd750 Menard (Poland)'),
(73280, 'https://ror.org/03x0jax93', 'no_lang_code', 1, 'https://ror.org/03x0jax93 SpaceX (United States)'),
(73281, 'https://ror.org/03x3nyk13', 'en', 1, 'https://ror.org/03x3nyk13 HAT Community Foundation'),
(73282, 'https://ror.org/03x58jg90', 'no_lang_code', 1, 'https://ror.org/03x58jg90 Mikronatura Środowisko (Poland)'),
(73283, 'https://ror.org/03x5d0y93', 'en', 1, 'https://ror.org/03x5d0y93 Royal Liverpool Philharmonic'),
(73284, 'https://ror.org/03x6nht44', 'en', 1, 'https://ror.org/03x6nht44 Torquay Museum'),
(73285, 'https://ror.org/03x89f523', 'no_lang_code', 1, 'https://ror.org/03x89f523 Model Driven Solutions (United States)'),
(73286, 'https://ror.org/03x8p5f11', 'en', 1, 'https://ror.org/03x8p5f11 Molecular Sciences Software Institute'),
(73287, 'https://ror.org/03x9t5820', 'en', 1, 'https://ror.org/03x9t5820 Working Families'),
(73288, 'https://ror.org/03xa44945', 'en', 1, 'https://ror.org/03xa44945 Bavarian National Museum Bayerisches Nationalmuseum'),
(73289, 'https://ror.org/03xae5975', 'sv', 1, 'https://ror.org/03xae5975 Aleris HƤlsocentral BollnƤs'),
(73290, 'https://ror.org/03xepm880', 'no_lang_code', 1, 'https://ror.org/03xepm880 Fourth State (United Kingdom)'),
(73291, 'https://ror.org/03xfg5k88', 'en', 1, 'https://ror.org/03xfg5k88 Center for Responsible Enterprise And Trade'),
(73292, 'https://ror.org/03xg97b41', 'en', 1, 'https://ror.org/03xg97b41 Mind Music Labs'),
(73293, 'https://ror.org/03xga3b69', 'en', 1, 'https://ror.org/03xga3b69 Prosperity Now'),
(73294, 'https://ror.org/03xh8zm60', 'no_lang_code', 1, 'https://ror.org/03xh8zm60 Bakhtar Research and Engineering (United States)'),
(73295, 'https://ror.org/03xn5qf90', 'no_lang_code', 1, 'https://ror.org/03xn5qf90 Adelwitz Technologiezentrum (Germany)'),
(73296, 'https://ror.org/03xnq0g58', 'no_lang_code', 1, 'https://ror.org/03xnq0g58 David Jarvis Associates (United Kingdom)'),
(73297, 'https://ror.org/03xnyzd31', 'en', 1, 'https://ror.org/03xnyzd31 Ministry of Internal Affairs of the Kyrgyz Republic ŠšŃ‹Ń€Š³Ń‹Š· Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Š½ Š˜Ń‡ŠŗŠø Š˜ŃˆŃ‚ŠµŃ€ ŠœŠøŠ½ŠøŃŃ‚Ń€Š»ŠøŠ³Šø ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел ŠšŠøŃ€Š³ŠøŠ·ŃŠŗŠ¾Š¹ Республики'),
(73298, 'https://ror.org/03xpfdf66', 'en', 1, 'https://ror.org/03xpfdf66 Dalarna Science Park'),
(73299, 'https://ror.org/03xpvmx27', 'en', 1, 'https://ror.org/03xpvmx27 Kovno Communications'),
(73300, 'https://ror.org/03xt9b909', 'en', 1, 'https://ror.org/03xt9b909 Galt Museum & Archives'),
(73301, 'https://ror.org/03xtd0t75', 'en', 1, 'https://ror.org/03xtd0t75 Population Media Center'),
(73302, 'https://ror.org/03xts3v71', 'da', 1, 'https://ror.org/03xts3v71 Orionplanetarium'),
(73303, 'https://ror.org/03xvcse61', 'es', 1, 'https://ror.org/03xvcse61 Vasos Comunicantes'),
(73304, 'https://ror.org/03xw42v88', 'en', 1, 'https://ror.org/03xw42v88 African Woman and Child Feature Service'),
(73305, 'https://ror.org/03xyc1c11', 'no_lang_code', 1, 'https://ror.org/03xyc1c11 Proteca (Brazil)'),
(73306, 'https://ror.org/03xzzpw64', 'en', 1, 'https://ror.org/03xzzpw64 Delegation of the European Union to the Kyrgyz Republic'),
(73307, 'https://ror.org/03y19wk83', 'en', 1, 'https://ror.org/03y19wk83 Community Museum Project'),
(73308, 'https://ror.org/03y1x0461', 'en', 1, 'https://ror.org/03y1x0461 Citizens UK'),
(73309, 'https://ror.org/03y298h26', 'en', 1, 'https://ror.org/03y298h26 HB Studio'),
(73310, 'https://ror.org/03y46nb69', 'no_lang_code', 1, 'https://ror.org/03y46nb69 Intelligent Medical Objects (United States)'),
(73311, 'https://ror.org/03y4ynm34', 'en', 1, 'https://ror.org/03y4ynm34 TAFE Directors Australian'),
(73312, 'https://ror.org/03y53a049', 'en', 1, 'https://ror.org/03y53a049 National Heritage Science Forum'),
(73313, 'https://ror.org/03y5bcg65', 'en', 1, 'https://ror.org/03y5bcg65 Action for Trans Health'),
(73314, 'https://ror.org/03y6t7d21', 'en', 1, 'https://ror.org/03y6t7d21 Scottish Council for Voluntary Organisations'),
(73315, 'https://ror.org/03y7t4596', 'no_lang_code', 1, 'https://ror.org/03y7t4596 Sigrid Therapeutics (Sweden)'),
(73316, 'https://ror.org/03y83ve89', 'en', 1, 'https://ror.org/03y83ve89 Sing Up Foundation'),
(73317, 'https://ror.org/03y8dxm05', 'en', 1, 'https://ror.org/03y8dxm05 Sunraysia Institute of TAFE'),
(73318, 'https://ror.org/03y8jje75', 'en', 1, 'https://ror.org/03y8jje75 Banner Health Foundation'),
(73319, 'https://ror.org/03ya27672', 'no_lang_code', 1, 'https://ror.org/03ya27672 Effecta (Sweden)'),
(73320, 'https://ror.org/03yarwa09', 'en', 1, 'https://ror.org/03yarwa09 Update Institute of Professional Studies'),
(73321, 'https://ror.org/03yavnj74', 'no_lang_code', 1, 'https://ror.org/03yavnj74 Advanced Space Technology Research (United States)'),
(73322, 'https://ror.org/03ybdm606', 'en', 1, 'https://ror.org/03ybdm606 Centre for Low Carbon Futures'),
(73323, 'https://ror.org/03yc1zp27', 'en', 1, 'https://ror.org/03yc1zp27 European Second Language Association'),
(73324, 'https://ror.org/03ydtyz77', 'no_lang_code', 1, 'https://ror.org/03ydtyz77 Tektura Opakowania Papier (Poland)'),
(73325, 'https://ror.org/03ye55p43', 'en', 1, 'https://ror.org/03ye55p43 Brazilian Interdisciplinary AIDS Association'),
(73326, 'https://ror.org/03yhvb593', 'en', 1, 'https://ror.org/03yhvb593 Royal African Society'),
(73327, 'https://ror.org/03yjj4449', 'en', 1, 'https://ror.org/03yjj4449 El Museo'),
(73328, 'https://ror.org/03yk1a741', 'no_lang_code', 1, 'https://ror.org/03yk1a741 Advanced Genomic Technology (United States)'),
(73329, 'https://ror.org/03yk8za83', 'en', 1, 'https://ror.org/03yk8za83 British Texel Sheep Society'),
(73330, 'https://ror.org/03ymrta62', 'en', 1, 'https://ror.org/03ymrta62 Child Welfare Society of Kenya'),
(73331, 'https://ror.org/03ysgs202', 'no_lang_code', 1, 'https://ror.org/03ysgs202 Klogene (United States)'),
(73332, 'https://ror.org/03ysxv814', 'en', 1, 'https://ror.org/03ysxv814 Center for Contemporary Arts Prague Centrum pro SoučasnĆ© UměnĆ­ Praha'),
(73333, 'https://ror.org/03ytbkh39', 'en', 1, 'https://ror.org/03ytbkh39 The Arboretum at Flagstaff'),
(73334, 'https://ror.org/03ywsr457', 'en', 1, 'https://ror.org/03ywsr457 Native American Rights Fund'),
(73335, 'https://ror.org/03yy0w351', 'en', 1, 'https://ror.org/03yy0w351 Comunn Eachdraidh Nis'),
(73336, 'https://ror.org/03yza5b87', 'fr', 1, 'https://ror.org/03yza5b87 HƓpitaux Iris Sud'),
(73337, 'https://ror.org/03yzz6t36', 'no_lang_code', 1, 'https://ror.org/03yzz6t36 Buildlab (United States)'),
(73338, 'https://ror.org/03z0a5562', 'en', 1, 'https://ror.org/03z0a5562 Krinova Incubator & Science Park'),
(73339, 'https://ror.org/03z3k8g94', 'no_lang_code', 1, 'https://ror.org/03z3k8g94 Cliris (Switzerland)'),
(73340, 'https://ror.org/03z50sg96', 'en', 1, 'https://ror.org/03z50sg96 Institute for Conflict Research'),
(73341, 'https://ror.org/03z58xd74', 'en', 1, 'https://ror.org/03z58xd74 Institute for the Dynamics of Environmental Processes Istituto per la Dinamica dei Processi Ambientali'),
(73342, 'https://ror.org/03z6qqm96', 'no_lang_code', 1, 'https://ror.org/03z6qqm96 Cardinal Engineering (United States)'),
(73343, 'https://ror.org/03z6vda50', 'en', 1, 'https://ror.org/03z6vda50 Fachhochschule für die Wirtschaft Hannover University of Applied Sciences FHDW Hannover'),
(73344, 'https://ror.org/03z78jt35', 'no_lang_code', 1, 'https://ror.org/03z78jt35 Custom Scientific (United States)'),
(73345, 'https://ror.org/03zbfp751', 'en', 1, 'https://ror.org/03zbfp751 Aga Khan Foundation'),
(73346, 'https://ror.org/03zc8zv24', 'en', 1, 'https://ror.org/03zc8zv24 National Ice Centre'),
(73347, 'https://ror.org/03ze5je62', 'no_lang_code', 1, 'https://ror.org/03ze5je62 EngineersHRW (United Kingdom)'),
(73348, 'https://ror.org/03zgaq086', 'en', 1, 'https://ror.org/03zgaq086 Institute of Peruvian Studies Instituto de Estudios Peruanos'),
(73349, 'https://ror.org/03zknp308', 'no_lang_code', 1, 'https://ror.org/03zknp308 Angel Secure Networks (United States)'),
(73350, 'https://ror.org/03zn0nj77', 'en', 1, 'https://ror.org/03zn0nj77 New Museum'),
(73351, 'https://ror.org/03zpb4e90', 'no_lang_code', 1, 'https://ror.org/03zpb4e90 MapLarge (United States)'),
(73352, 'https://ror.org/03zq31024', 'en', 1, 'https://ror.org/03zq31024 Chancellery of the Prime Minister Kancelaria Prezesa Rady Ministrów'),
(73353, 'https://ror.org/03zraew37', 'en', 1, 'https://ror.org/03zraew37 Centre for Contemporary Art'),
(73354, 'https://ror.org/03zrkam54', 'no_lang_code', 1, 'https://ror.org/03zrkam54 Edge Case Research (United States)'),
(73355, 'https://ror.org/03zsp0254', 'en', 1, 'https://ror.org/03zsp0254 American University of Phnom Penh įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž¶įž˜įŸįžšįž·įž€įž¶įŸ†įž„įž—įŸ’įž“įŸ†įž–įŸįž‰'),
(73356, 'https://ror.org/03zt57v78', 'no_lang_code', 1, 'https://ror.org/03zt57v78 CalciMedica (United States)'),
(73357, 'https://ror.org/03zvet229', 'en', 1, 'https://ror.org/03zvet229 Groninger Museum'),
(73358, 'https://ror.org/03zvmjp56', 'af', 1, 'https://ror.org/03zvmjp56 Afesis-Corplan'),
(73359, 'https://ror.org/03zwqne39', 'en', 1, 'https://ror.org/03zwqne39 The Judge Advocate General''s Legal Center and School'),
(73360, 'https://ror.org/03zxqg324', 'no_lang_code', 1, 'https://ror.org/03zxqg324 ReceptorPharma (Sweden)'),
(73361, 'https://ror.org/04003b617', 'en', 1, 'https://ror.org/04003b617 Institute for Social Transformation'),
(73362, 'https://ror.org/040109961', 'no_lang_code', 1, 'https://ror.org/040109961 ƅland Maritime Museum ƅlands sjƶfartsmuseum'),
(73363, 'https://ror.org/0403byw97', 'en', 1, 'https://ror.org/0403byw97 Hungarian Demographic Research Institute'),
(73364, 'https://ror.org/04046a831', 'en', 1, 'https://ror.org/04046a831 Mondo Foundation'),
(73365, 'https://ror.org/0404j2625', 'en', 1, 'https://ror.org/0404j2625 Poplar Housing and Regeneration Community Association'),
(73366, 'https://ror.org/04054a724', 'no_lang_code', 1, 'https://ror.org/04054a724 CellProtect Nordic Pharmaceuticals (Sweden)'),
(73367, 'https://ror.org/0405ppk91', 'en', 1, 'https://ror.org/0405ppk91 Climate and Development Knowledge Network'),
(73368, 'https://ror.org/0405v9k44', 'no_lang_code', 1, 'https://ror.org/0405v9k44 International Centre for Advanced Materials (United Kingdom)'),
(73369, 'https://ror.org/0407kdz58', 'no_lang_code', 1, 'https://ror.org/0407kdz58 Lexplore (Sweden)'),
(73370, 'https://ror.org/04081em55', 'en', 1, 'https://ror.org/04081em55 Residency Unlimited'),
(73371, 'https://ror.org/0408hpd14', 'en', 1, 'https://ror.org/0408hpd14 Feminist Archive South'),
(73372, 'https://ror.org/0409tje58', 'en', 1, 'https://ror.org/0409tje58 Press Association'),
(73373, 'https://ror.org/040a3tj51', 'en', 1, 'https://ror.org/040a3tj51 Norfolk Museums Service'),
(73374, 'https://ror.org/040an2851', 'en', 1, 'https://ror.org/040an2851 Hellenic Children''s Museum Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ΠαιΓικό ĪœĪæĻ…ĻƒĪµĪÆĪæ'),
(73375, 'https://ror.org/040d3j938', 'no_lang_code', 1, 'https://ror.org/040d3j938 Clearwater Group (United States)'),
(73376, 'https://ror.org/040dpbx94', 'no_lang_code', 1, 'https://ror.org/040dpbx94 Image Metrics (United Kingdom)'),
(73377, 'https://ror.org/040f8w440', 'en', 1, 'https://ror.org/040f8w440 Institute of Social Sciences'),
(73378, 'https://ror.org/040fsr689', 'no_lang_code', 1, 'https://ror.org/040fsr689 Nomino (Poland)'),
(73379, 'https://ror.org/040gtvq30', 'de', 1, 'https://ror.org/040gtvq30 Helios Endo-Klinik Hamburg'),
(73380, 'https://ror.org/040hg4198', 'en', 1, 'https://ror.org/040hg4198 National Youth Science Forum'),
(73381, 'https://ror.org/040j2ng64', 'en', 1, 'https://ror.org/040j2ng64 Thomson Reuters Foundation'),
(73382, 'https://ror.org/040jc3p57', 'it', 1, 'https://ror.org/040jc3p57 Associazione Radioamatori Italiani'),
(73383, 'https://ror.org/040s56h35', 'en', 1, 'https://ror.org/040s56h35 Seoul Central District Court ģ„œģšøģ¤‘ģ•™ģ§€ė°©ė²•ģ›'),
(73384, 'https://ror.org/040t3et06', 'en', 1, 'https://ror.org/040t3et06 Keswick Museum'),
(73385, 'https://ror.org/040tfy969', 'en', 1, 'https://ror.org/040tfy969 Tyndall Centre'),
(73386, 'https://ror.org/040vbzm60', 'en', 1, 'https://ror.org/040vbzm60 Quakers'),
(73387, 'https://ror.org/040x93a09', 'en', 1, 'https://ror.org/040x93a09 Hawaii Institute for Public Affairs'),
(73388, 'https://ror.org/040xcjs75', 'en', 1, 'https://ror.org/040xcjs75 Airports Council International Europe'),
(73389, 'https://ror.org/040xrky57', 'no_lang_code', 1, 'https://ror.org/040xrky57 Falmouth Scientific (United States)'),
(73390, 'https://ror.org/040yamy52', 'no_lang_code', 1, 'https://ror.org/040yamy52 Multidisciplinary Software Systems Research (United States)'),
(73391, 'https://ror.org/040zv4433', 'en', 1, 'https://ror.org/040zv4433 Il’laramatak Community Concerns'),
(73392, 'https://ror.org/0410jfe71', 'en', 1, 'https://ror.org/0410jfe71 British Council'),
(73393, 'https://ror.org/0411mdb02', 'no_lang_code', 1, 'https://ror.org/0411mdb02 AVEKA (United States)'),
(73394, 'https://ror.org/0411yf357', 'en', 1, 'https://ror.org/0411yf357 Central Compilation & Translation Bureau äø­å¤®ē¼–čÆ‘å±€ęÆ”č¾ƒę”æę²»äøŽē»ęµŽē ”ē©¶äø­åæƒ'),
(73395, 'https://ror.org/0412t9j29', 'no_lang_code', 1, 'https://ror.org/0412t9j29 Walker-Moffat (United States)'),
(73396, 'https://ror.org/04137sz34', 'no_lang_code', 1, 'https://ror.org/04137sz34 Daktari Diagnostics (United States)'),
(73397, 'https://ror.org/041542g68', 'no_lang_code', 1, 'https://ror.org/041542g68 Foresite (United States)'),
(73398, 'https://ror.org/041a6wm28', 'en', 1, 'https://ror.org/041a6wm28 American Chamber of Commerce in Kosovo Oda Ekonomike Amerikane ne Kosove'),
(73399, 'https://ror.org/041d67p66', 'no_lang_code', 1, 'https://ror.org/041d67p66 Amalgamated Sugar (United States)'),
(73400, 'https://ror.org/041dcmy53', 'en', 1, 'https://ror.org/041dcmy53 British Deaf Association'),
(73401, 'https://ror.org/041ec4084', 'en', 1, 'https://ror.org/041ec4084 Her Majesty''s Inspectorate of Constabulary in Scotland'),
(73402, 'https://ror.org/041gsht58', 'no_lang_code', 1, 'https://ror.org/041gsht58 Fealinx (France)');
INSERT INTO `rors` VALUES
(73403, 'https://ror.org/041gwe229', 'en', 1, 'https://ror.org/041gwe229 South African Council for Planners'),
(73404, 'https://ror.org/041hvc055', 'en', 1, 'https://ror.org/041hvc055 Islamic Azad University Yasuj دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد یاسوج'),
(73405, 'https://ror.org/041mvre90', 'en', 1, 'https://ror.org/041mvre90 The African Arts Trust'),
(73406, 'https://ror.org/041mxbp20', 'en', 1, 'https://ror.org/041mxbp20 Housing and Community Development Network of New Jersey'),
(73407, 'https://ror.org/041pfmf98', 'no_lang_code', 1, 'https://ror.org/041pfmf98 2D Fab (Sweden)'),
(73408, 'https://ror.org/041pxa775', 'no_lang_code', 1, 'https://ror.org/041pxa775 Critical Innovations (United States)'),
(73409, 'https://ror.org/041q6vc74', 'en', 1, 'https://ror.org/041q6vc74 SANE Mental Health Charity'),
(73410, 'https://ror.org/041v8ha59', 'sv', 1, 'https://ror.org/041v8ha59 Adopticum'),
(73411, 'https://ror.org/041wapp49', 'no_lang_code', 1, 'https://ror.org/041wapp49 Pain Care Labs (United States)'),
(73412, 'https://ror.org/041yzwn62', 'no_lang_code', 1, 'https://ror.org/041yzwn62 Influx (United States)'),
(73413, 'https://ror.org/042228s94', 'no_lang_code', 1, 'https://ror.org/042228s94 Cyteir Therapeutics (United States)'),
(73414, 'https://ror.org/042416g98', 'en', 1, 'https://ror.org/042416g98 China Education Press Agency äø­å›½ę•™č‚²ęŠ„åˆŠē¤¾'),
(73415, 'https://ror.org/0424fq223', 'en', 1, 'https://ror.org/0424fq223 Berkshire Buckinghamshire and Oxfordshire Wildlife Trust'),
(73416, 'https://ror.org/0424v9t30', 'en', 1, 'https://ror.org/0424v9t30 Indian Institute of Water Management'),
(73417, 'https://ror.org/04258ak80', 'en', 1, 'https://ror.org/04258ak80 North of England Civic Trust'),
(73418, 'https://ror.org/0425hwa25', 'no_lang_code', 1, 'https://ror.org/0425hwa25 Biomedical Acoustics (United States)'),
(73419, 'https://ror.org/042688r20', 'en', 1, 'https://ror.org/042688r20 Indian Pharmacist Association'),
(73420, 'https://ror.org/0426a7r83', 'en', 1, 'https://ror.org/0426a7r83 European Communication Research and Education Association'),
(73421, 'https://ror.org/042730j21', 'en', 1, 'https://ror.org/042730j21 Global Campaign for Education United States'),
(73422, 'https://ror.org/042765079', 'es', 1, 'https://ror.org/042765079 Instituto Nacional de LimnologĆ­a'),
(73423, 'https://ror.org/0428j9521', 'en', 1, 'https://ror.org/0428j9521 Fizika-Texnika Instituti Physicotechnical Institute'),
(73424, 'https://ror.org/0429eqk16', 'no_lang_code', 1, 'https://ror.org/0429eqk16 Colfax (United States)'),
(73425, 'https://ror.org/042a1e381', 'de', 1, 'https://ror.org/042a1e381 Clemenshospital Münster'),
(73426, 'https://ror.org/042a1x396', 'no_lang_code', 1, 'https://ror.org/042a1x396 Nolan Associates (United Kingdom)'),
(73427, 'https://ror.org/042ac6m83', 'no_lang_code', 1, 'https://ror.org/042ac6m83 Ascent Solar (United States)'),
(73428, 'https://ror.org/042b7qk94', 'hi', 1, 'https://ror.org/042b7qk94 Ramakrishna Mission Vidyalaya'),
(73429, 'https://ror.org/042bs8227', 'es', 1, 'https://ror.org/042bs8227 Centro Mexicano de Derecho Ambiental'),
(73430, 'https://ror.org/042eye458', 'en', 1, 'https://ror.org/042eye458 Institution of Agricultural Engineers'),
(73431, 'https://ror.org/042hdh758', 'en', 1, 'https://ror.org/042hdh758 School Health Research Network'),
(73432, 'https://ror.org/042j4gm75', 'en', 1, 'https://ror.org/042j4gm75 Northwest Evaluation Association'),
(73433, 'https://ror.org/042q0et03', 'en', 1, 'https://ror.org/042q0et03 MI College'),
(73434, 'https://ror.org/042sca472', 'no_lang_code', 1, 'https://ror.org/042sca472 H-DOX (United States)'),
(73435, 'https://ror.org/042sg7s37', 'en', 1, 'https://ror.org/042sg7s37 Association of Colleges'),
(73436, 'https://ror.org/042tf3y40', 'en', 1, 'https://ror.org/042tf3y40 Wild Trout Trust'),
(73437, 'https://ror.org/042wbt424', 'no_lang_code', 1, 'https://ror.org/042wbt424 Cova (United States)'),
(73438, 'https://ror.org/04316xy59', 'en', 1, 'https://ror.org/04316xy59 PNLP'),
(73439, 'https://ror.org/0431j1g69', 'en', 1, 'https://ror.org/0431j1g69 Hendrick Hudson School District'),
(73440, 'https://ror.org/0431q3e43', 'en', 1, 'https://ror.org/0431q3e43 Ensenada Institute of Technology Instituto Tecnológico de Ensenada'),
(73441, 'https://ror.org/0433wdg24', 'en', 1, 'https://ror.org/0433wdg24 Children’s Arthritis Association'),
(73442, 'https://ror.org/0434w4n54', 'en', 1, 'https://ror.org/0434w4n54 Center for Story-based Strategy'),
(73443, 'https://ror.org/0435vpd21', 'en', 1, 'https://ror.org/0435vpd21 Environmental Education Exchange'),
(73444, 'https://ror.org/0435yq060', 'no_lang_code', 1, 'https://ror.org/0435yq060 Ourofino SaĆŗde Animal (Brazil)'),
(73445, 'https://ror.org/043726d89', 'en', 1, 'https://ror.org/043726d89 Athena Sustainable Materials Institute'),
(73446, 'https://ror.org/0437mk135', 'no_lang_code', 1, 'https://ror.org/0437mk135 BioMimetic Systems (United States)'),
(73447, 'https://ror.org/0439dh211', 'no_lang_code', 1, 'https://ror.org/0439dh211 Applied Design Labs (United States)'),
(73448, 'https://ror.org/043amj005', 'en', 1, 'https://ror.org/043amj005 Development Alternatives with Women for a New Era'),
(73449, 'https://ror.org/043c0pj05', 'no_lang_code', 1, 'https://ror.org/043c0pj05 Saur (Armenia)'),
(73450, 'https://ror.org/043c1f957', 'en', 1, 'https://ror.org/043c1f957 Union of Economists of Turkmenistan'),
(73451, 'https://ror.org/043e6pw81', 'no_lang_code', 1, 'https://ror.org/043e6pw81 Food Radar Systems (Sweden)'),
(73452, 'https://ror.org/043em9g67', 'en', 1, 'https://ror.org/043em9g67 Bali Animal Welfare Association'),
(73453, 'https://ror.org/043hn3j55', 'en', 1, 'https://ror.org/043hn3j55 Tamba'),
(73454, 'https://ror.org/043jjxy03', 'en', 1, 'https://ror.org/043jjxy03 Bayimba'),
(73455, 'https://ror.org/043k8f492', 'et', 1, 'https://ror.org/043k8f492 PƵlva Haigla'),
(73456, 'https://ror.org/043m46d79', 'no_lang_code', 1, 'https://ror.org/043m46d79 Cognitive Electronics (United States)'),
(73457, 'https://ror.org/043ppxs71', 'no_lang_code', 1, 'https://ror.org/043ppxs71 PPAM Solkraft (Sweden)'),
(73458, 'https://ror.org/043wep886', 'no_lang_code', 1, 'https://ror.org/043wep886 Mikhulu Trust'),
(73459, 'https://ror.org/043yzag23', 'no_lang_code', 1, 'https://ror.org/043yzag23 Mademoiselle Desserts (United Kingdom)'),
(73460, 'https://ror.org/0441qc561', 'en', 1, 'https://ror.org/0441qc561 The British Antique Dealers Association'),
(73461, 'https://ror.org/0443s9p82', 'en', 1, 'https://ror.org/0443s9p82 Center for High Pressure Science & Technology Advanced Research åŒ—äŗ¬é«˜åŽ‹ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(73462, 'https://ror.org/044691a51', 'en', 1, 'https://ror.org/044691a51 LearnPlay Foundation'),
(73463, 'https://ror.org/04469fh44', 'en', 1, 'https://ror.org/04469fh44 Colombian Commission of Jurists Comisión Colombiana de Juristas'),
(73464, 'https://ror.org/04473af04', 'en', 1, 'https://ror.org/04473af04 Berneray Historical Society Comunn Eachdraidh BheĆ rnaraigh'),
(73465, 'https://ror.org/04476hk95', 'en', 1, 'https://ror.org/04476hk95 Institute for Social and Economic Research'),
(73466, 'https://ror.org/0447ftg13', 'no_lang_code', 1, 'https://ror.org/0447ftg13 GEDI Gruppo Editoriale (Italy) Gruppo Editoriale L''Espresso'),
(73467, 'https://ror.org/0447j3y44', 'en', 1, 'https://ror.org/0447j3y44 Ossett Academy'),
(73468, 'https://ror.org/044889x78', 'de', 1, 'https://ror.org/044889x78 Kommission für Geschichte und Kultur der Deutschen in Südosteuropa'),
(73469, 'https://ror.org/0449ygn91', 'no_lang_code', 1, 'https://ror.org/0449ygn91 Accel Diagnostics (United States)'),
(73470, 'https://ror.org/044bfsy89', 'en', 1, 'https://ror.org/044bfsy89 Istituto di Ricerca sulla Crescita Economica Sostenibile Research Institute on Sustainable Economic Growth'),
(73471, 'https://ror.org/044cd9z60', 'en', 1, 'https://ror.org/044cd9z60 Cope Environmental Center'),
(73472, 'https://ror.org/044dcv581', 'en', 1, 'https://ror.org/044dcv581 York Blind & Partially Sighted Society'),
(73473, 'https://ror.org/044dvga50', 'en', 1, 'https://ror.org/044dvga50 Bį»™ Ngoįŗ”i giao Việt Nam Ministry of Foreign Affairs'),
(73474, 'https://ror.org/044ga3f28', 'en', 1, 'https://ror.org/044ga3f28 Medic Mobile'),
(73475, 'https://ror.org/044h52h12', 'es', 1, 'https://ror.org/044h52h12 Poder Judicial de la Ciudad de Buenos Aires'),
(73476, 'https://ror.org/044kzfd07', 'en', 1, 'https://ror.org/044kzfd07 Leicestershire Police'),
(73477, 'https://ror.org/044n3e324', 'no_lang_code', 1, 'https://ror.org/044n3e324 Knopp Biosciences (United States)'),
(73478, 'https://ror.org/044nmzj55', 'en', 1, 'https://ror.org/044nmzj55 The Vietnam National Institute of Educational Sciences Viện Khoa hį»c GiĆ”o dỄc Việt Nam'),
(73479, 'https://ror.org/044q96y41', 'en', 1, 'https://ror.org/044q96y41 Center for Economic and Social Rights'),
(73480, 'https://ror.org/044t55e25', 'en', 1, 'https://ror.org/044t55e25 Participatory Development Training Centre ąŗŖąŗ¹ąŗ™ąŗąŗ¶ąŗąŗ­ąŗ»ąŗšąŗ®ąŗ»ąŗ”ąŗąŗ²ąŗ™ąŗžąŗ±ąŗ”ąŗ—ąŗ°ąŗ™ąŗ²ąŗ—ąŗµą»ˆąŗ”ąŗµąŗŖą»ˆąŗ§ąŗ™ąŗ®ą»ˆąŗ§ąŗ”'),
(73481, 'https://ror.org/044v30149', 'en', 1, 'https://ror.org/044v30149 People''s Action'),
(73482, 'https://ror.org/044ve7993', 'en', 1, 'https://ror.org/044ve7993 Migration & Asylum Project'),
(73483, 'https://ror.org/044wa0621', 'en', 1, 'https://ror.org/044wa0621 Perry Foundation'),
(73484, 'https://ror.org/044x9zq23', 'en', 1, 'https://ror.org/044x9zq23 The Community Trust'),
(73485, 'https://ror.org/044xs7e53', 'no_lang_code', 1, 'https://ror.org/044xs7e53 RxMP Therapeutics (United States)'),
(73486, 'https://ror.org/044xxhs61', 'en', 1, 'https://ror.org/044xxhs61 NIHR WoundTec Healthcare Technology Co-operative'),
(73487, 'https://ror.org/044ybps29', 'no_lang_code', 1, 'https://ror.org/044ybps29 Accord Solutions (United States)'),
(73488, 'https://ror.org/0451dft51', 'no_lang_code', 1, 'https://ror.org/0451dft51 Ecofys (Germany)'),
(73489, 'https://ror.org/0453eyr18', 'no_lang_code', 1, 'https://ror.org/0453eyr18 Bill Harvey Associates (United Kingdom)'),
(73490, 'https://ror.org/04570hm76', 'en', 1, 'https://ror.org/04570hm76 Private Sector Foundation Uganda'),
(73491, 'https://ror.org/045832a47', 'no_lang_code', 1, 'https://ror.org/045832a47 GamesThatWork (United States)'),
(73492, 'https://ror.org/045bb6111', 'en', 1, 'https://ror.org/045bb6111 William Temple Foundation'),
(73493, 'https://ror.org/045bf0r64', 'en', 1, 'https://ror.org/045bf0r64 Suffolk Horse Society'),
(73494, 'https://ror.org/045dz4566', 'en', 1, 'https://ror.org/045dz4566 Submicron Heterostructures for Microelectronics Research and Engineering Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠŠ°ŃƒŃ‡Š½Š¾-технологический центр Š¼ŠøŠŗŃ€Š¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø Šø ŃŃƒŠ±Š¼ŠøŠŗŃ€Š¾Š½Š½Ń‹Ń… Š³ŠµŃ‚ŠµŃ€Š¾ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€ Российской акаГемии наук'),
(73495, 'https://ror.org/045e6n322', 'en', 1, 'https://ror.org/045e6n322 Chelsea Primary School'),
(73496, 'https://ror.org/045fe0126', 'no_lang_code', 1, 'https://ror.org/045fe0126 Aries Design Automation (United States)'),
(73497, 'https://ror.org/045g91y28', 'no_lang_code', 1, 'https://ror.org/045g91y28 Riverside Medical Packaging (United Kingdom)'),
(73498, 'https://ror.org/045jkfr03', 'no_lang_code', 1, 'https://ror.org/045jkfr03 Arvinas (United States)'),
(73499, 'https://ror.org/045m5hq56', 'en', 1, 'https://ror.org/045m5hq56 Foundation for Civil Society'),
(73500, 'https://ror.org/045neh952', 'no_lang_code', 1, 'https://ror.org/045neh952 Zenicor Medical Systems (Sweden)'),
(73501, 'https://ror.org/045nmj854', 'pt', 1, 'https://ror.org/045nmj854 Terra de Direitos'),
(73502, 'https://ror.org/045p8ax41', 'en', 1, 'https://ror.org/045p8ax41 Turquoise Mountain'),
(73503, 'https://ror.org/045rzp790', 'en', 1, 'https://ror.org/045rzp790 Sex Workers Education & Advocacy Taskforce'),
(73504, 'https://ror.org/045te9j93', 'no_lang_code', 1, 'https://ror.org/045te9j93 Empirical Systems Aerospace (United States)'),
(73505, 'https://ror.org/045thzj17', 'es', 1, 'https://ror.org/045thzj17 Dirección Regional de Salud del Callao'),
(73506, 'https://ror.org/045wtka37', 'no_lang_code', 1, 'https://ror.org/045wtka37 Izola General Hospital SploŔna BolniŔnica Izola'),
(73507, 'https://ror.org/045x3e738', 'no_lang_code', 1, 'https://ror.org/045x3e738 BioFactura (United States)'),
(73508, 'https://ror.org/045xczk16', 'en', 1, 'https://ror.org/045xczk16 Canterbury Archaeological Trust'),
(73509, 'https://ror.org/045xz7k18', 'no_lang_code', 1, 'https://ror.org/045xz7k18 Quazar Technologies (India)'),
(73510, 'https://ror.org/045y8mm25', 'en', 1, 'https://ror.org/045y8mm25 Centre for Multi-disciplinary Development Research'),
(73511, 'https://ror.org/045zphe57', 'en', 1, 'https://ror.org/045zphe57 Institute for Agricultural and Earthmoving Machines Istituto per le Macchine Agricole e Movimento Terra'),
(73512, 'https://ror.org/04625e684', 'es', 1, 'https://ror.org/04625e684 Centro Peruano de Estudios Sociales'),
(73513, 'https://ror.org/0462c0k61', 'en', 1, 'https://ror.org/0462c0k61 Nanolayers'),
(73514, 'https://ror.org/0463agq55', 'no_lang_code', 1, 'https://ror.org/0463agq55 Brown and Caldwell (United States)'),
(73515, 'https://ror.org/0467kh241', 'pt', 1, 'https://ror.org/0467kh241 Grupo de Açãoe Estudos Ambientais'),
(73516, 'https://ror.org/0468szt35', 'en', 1, 'https://ror.org/0468szt35 Gwynedd Archaeological Trust'),
(73517, 'https://ror.org/0469msm38', 'it', 1, 'https://ror.org/0469msm38 Cineteca di Bologna'),
(73518, 'https://ror.org/046c3d965', 'en', 1, 'https://ror.org/046c3d965 Aquincum Institute of Technology'),
(73519, 'https://ror.org/046c8ca27', 'en', 1, 'https://ror.org/046c8ca27 Nepal Participatory Action Network'),
(73520, 'https://ror.org/046dj2v49', 'no_lang_code', 1, 'https://ror.org/046dj2v49 AdTech Optics (United States)'),
(73521, 'https://ror.org/046dyet60', 'pt', 1, 'https://ror.org/046dyet60 Instituto Nacional de Psiquiatria do Desenvolvimento para CrianƧas e Adolescentes'),
(73522, 'https://ror.org/046pa0m07', 'en', 1, 'https://ror.org/046pa0m07 The National Lobster Hatchery'),
(73523, 'https://ror.org/046qkca03', 'no_lang_code', 1, 'https://ror.org/046qkca03 Daniel Black and Associates (United States)'),
(73524, 'https://ror.org/046qtkm10', 'no_lang_code', 1, 'https://ror.org/046qtkm10 Electroformed Nickel (United States)'),
(73525, 'https://ror.org/046qxha37', 'en', 1, 'https://ror.org/046qxha37 Azerbaijan Genetic Resources Institute Genetik Ehtiyatlar İnstitutu'),
(73526, 'https://ror.org/046s5m283', 'no_lang_code', 1, 'https://ror.org/046s5m283 Lifesize (Sweden)'),
(73527, 'https://ror.org/046sdzq93', 'en', 1, 'https://ror.org/046sdzq93 Botswana Predator Conservation Trust'),
(73528, 'https://ror.org/046shck20', 'en', 1, 'https://ror.org/046shck20 Association for Social and Environmental Development'),
(73529, 'https://ror.org/046sr9880', 'pt', 1, 'https://ror.org/046sr9880 Instituto Brasileiro de Defesa do Consumidor'),
(73530, 'https://ror.org/046swr926', 'no_lang_code', 1, 'https://ror.org/046swr926 Peptaderm (Poland)'),
(73531, 'https://ror.org/046tk5b58', 'no_lang_code', 1, 'https://ror.org/046tk5b58 Wala Heilmittel (Germany)'),
(73532, 'https://ror.org/046vj6r42', 'en', 1, 'https://ror.org/046vj6r42 China Sexology Association äø­å›½ę€§å­¦ä¼š'),
(73533, 'https://ror.org/046wv1d24', 'no_lang_code', 1, 'https://ror.org/046wv1d24 Itres (Canada)'),
(73534, 'https://ror.org/046xn0c82', 'en', 1, 'https://ror.org/046xn0c82 Indian Institute of Mass Communication ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ जन ą¤øą¤‚ą¤šą¤¾ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(73535, 'https://ror.org/0470jgx16', 'en', 1, 'https://ror.org/0470jgx16 Institute for War and Peace Reporting'),
(73536, 'https://ror.org/04713pn08', 'en', 1, 'https://ror.org/04713pn08 Huddersfield Local History Society'),
(73537, 'https://ror.org/04723ev36', 'en', 1, 'https://ror.org/04723ev36 Centre for European Reform'),
(73538, 'https://ror.org/0473dy216', 'en', 1, 'https://ror.org/0473dy216 Midland Heart'),
(73539, 'https://ror.org/04742eh45', 'no_lang_code', 1, 'https://ror.org/04742eh45 Embedded Systems (United States)'),
(73540, 'https://ror.org/0474hd478', 'no_lang_code', 1, 'https://ror.org/0474hd478 TLM Shahdara Hospital'),
(73541, 'https://ror.org/047740987', 'en', 1, 'https://ror.org/047740987 Jimmy Mac’s Centre'),
(73542, 'https://ror.org/0477dxh89', 'no_lang_code', 1, 'https://ror.org/0477dxh89 The Seattle Times (United States)'),
(73543, 'https://ror.org/0477ytm39', 'en', 1, 'https://ror.org/0477ytm39 National Security and Defense Council of Ukraine РаГа Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— безпеки і оборони України'),
(73544, 'https://ror.org/047cyxk24', 'en', 1, 'https://ror.org/047cyxk24 Centre of Excellence for Sensory Impairment'),
(73545, 'https://ror.org/047eaw227', 'en', 1, 'https://ror.org/047eaw227 African Centre for Technology Studies'),
(73546, 'https://ror.org/047edpg75', 'en', 1, 'https://ror.org/047edpg75 HƓpital Psychiatrique du Beau Vallon Le Beau Vallon - Psychiatric Hospital'),
(73547, 'https://ror.org/047eefb18', 'en', 1, 'https://ror.org/047eefb18 Stratified Medicine Scotland'),
(73548, 'https://ror.org/047enf178', 'en', 1, 'https://ror.org/047enf178 Bay Area Oppositional and Conduct Clinic'),
(73549, 'https://ror.org/047h63042', 'no_lang_code', 1, 'https://ror.org/047h63042 Eko-Konnect'),
(73550, 'https://ror.org/047j8xx02', 'en', 1, 'https://ror.org/047j8xx02 Gear Research Institute'),
(73551, 'https://ror.org/047kbbm64', 'en', 1, 'https://ror.org/047kbbm64 Marine Stewardship Council'),
(73552, 'https://ror.org/047kq9b85', 'en', 1, 'https://ror.org/047kq9b85 International Association of Directors of Law Enforcement Standards and Training'),
(73553, 'https://ror.org/047m1md22', 'no_lang_code', 1, 'https://ror.org/047m1md22 KUKA (United Kingdom)'),
(73554, 'https://ror.org/047m78h93', 'en', 1, 'https://ror.org/047m78h93 Puppet Centre Trust'),
(73555, 'https://ror.org/047pb7g40', 'en', 1, 'https://ror.org/047pb7g40 South Dakota Department of Public Safety'),
(73556, 'https://ror.org/047py4r39', 'en', 1, 'https://ror.org/047py4r39 Americans for Indian Opportunity'),
(73557, 'https://ror.org/047smnk10', 'en', 1, 'https://ror.org/047smnk10 National Day Laborer Organizing Network'),
(73558, 'https://ror.org/047xyhs39', 'no_lang_code', 1, 'https://ror.org/047xyhs39 Innodura (France)'),
(73559, 'https://ror.org/047z5ry18', 'en', 1, 'https://ror.org/047z5ry18 Israeli Center for Libraries ×ž×Ø×›×– ההפר וההפריות'),
(73560, 'https://ror.org/047zp5633', 'en', 1, 'https://ror.org/047zp5633 Royal Society for Public Health'),
(73561, 'https://ror.org/048104e91', 'no_lang_code', 1, 'https://ror.org/048104e91 Max Biopharma (United States)'),
(73562, 'https://ror.org/0484jez12', 'en', 1, 'https://ror.org/0484jez12 Sharma Centre for Heritage Education India'),
(73563, 'https://ror.org/0485zq002', 'no_lang_code', 1, 'https://ror.org/0485zq002 Integrated Medicines (United Kingdom)'),
(73564, 'https://ror.org/0488afy73', 'en', 1, 'https://ror.org/0488afy73 Institute for Technology & Society Instituto de Tecnologia e Sociedade'),
(73565, 'https://ror.org/0488ezv32', 'no_lang_code', 1, 'https://ror.org/0488ezv32 Boston Dynamics (United States)'),
(73566, 'https://ror.org/0488wz367', 'en', 1, 'https://ror.org/0488wz367 Wuyi University 五邑大学'),
(73567, 'https://ror.org/048954822', 'en', 1, 'https://ror.org/048954822 Flemish Radio and Television Broadcasting Organisation Vlaamse Radio- en Televisieomroeporganisatie'),
(73568, 'https://ror.org/048a6mf06', 'en', 1, 'https://ror.org/048a6mf06 Spencer Academies Trust'),
(73569, 'https://ror.org/048bd3118', 'en', 1, 'https://ror.org/048bd3118 San Diego State University, Imperial Valley Campus'),
(73570, 'https://ror.org/048c0wq03', 'no_lang_code', 1, 'https://ror.org/048c0wq03 Era (Sweden)'),
(73571, 'https://ror.org/048c72h25', 'en', 1, 'https://ror.org/048c72h25 Anokhi Museum of Hand Printing ą¤…ą¤Øą„‹ą¤–ą„€ ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ'),
(73572, 'https://ror.org/048cscx90', 'en', 1, 'https://ror.org/048cscx90 Transparency International'),
(73573, 'https://ror.org/048eb3m59', 'en', 1, 'https://ror.org/048eb3m59 Polytechnic College Suriname'),
(73574, 'https://ror.org/048f1z657', 'no_lang_code', 1, 'https://ror.org/048f1z657 Kyiv International Institute of Sociology (Ukraine) ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ міжнароГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ соціології'),
(73575, 'https://ror.org/048k8a688', 'en', 1, 'https://ror.org/048k8a688 The Orderly Society Trust'),
(73576, 'https://ror.org/048kwbq96', 'no_lang_code', 1, 'https://ror.org/048kwbq96 ImCare Biotech (United States)'),
(73577, 'https://ror.org/048m65g43', 'en', 1, 'https://ror.org/048m65g43 Chess Valley Archaeological and Historical Society'),
(73578, 'https://ror.org/048maeh80', 'no_lang_code', 1, 'https://ror.org/048maeh80 KeyW (United States)'),
(73579, 'https://ror.org/048mkm910', 'en', 1, 'https://ror.org/048mkm910 Nemocnice Strakonice Strakonice Hospital'),
(73580, 'https://ror.org/048nm0n40', 'no_lang_code', 1, 'https://ror.org/048nm0n40 Dust Identity (United States)'),
(73581, 'https://ror.org/048par152', 'no_lang_code', 1, 'https://ror.org/048par152 Ingenious Targeting Laboratory (United States)'),
(73582, 'https://ror.org/048q5k041', 'en', 1, 'https://ror.org/048q5k041 Renewable Energy Association'),
(73583, 'https://ror.org/048shje05', 'no_lang_code', 1, 'https://ror.org/048shje05 Alomone Labs (Israel)'),
(73584, 'https://ror.org/048sjp277', 'no_lang_code', 1, 'https://ror.org/048sjp277 Akron Polymer Systems (United States)'),
(73585, 'https://ror.org/048swbb68', 'en', 1, 'https://ror.org/048swbb68 Scottish Jewish Archives Centre'),
(73586, 'https://ror.org/048t31q52', 'en', 1, 'https://ror.org/048t31q52 Hennadii Udovenko Diplomatic Academy Of Ukraine Дипломатична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України'),
(73587, 'https://ror.org/048tb3g40', 'en', 1, 'https://ror.org/048tb3g40 International Security and Development Center'),
(73588, 'https://ror.org/048vp3g58', 'en', 1, 'https://ror.org/048vp3g58 Gardd Fotaneg Genedlaethol Cymru National Botanic Garden of Wales'),
(73589, 'https://ror.org/048ytzw49', 'es', 1, 'https://ror.org/048ytzw49 Escuela de Actores de Canarias'),
(73590, 'https://ror.org/0490b3412', 'no_lang_code', 1, 'https://ror.org/0490b3412 Sue Mbaya & Associates (South Africa)'),
(73591, 'https://ror.org/0491vhh68', 'en', 1, 'https://ror.org/0491vhh68 American Sustainable Business Institute'),
(73592, 'https://ror.org/049b1yp65', 'en', 1, 'https://ror.org/049b1yp65 Ghana Museums and Monuments Board'),
(73593, 'https://ror.org/049b5m346', 'fr', 1, 'https://ror.org/049b5m346 Ɖcole FranƧaise de Rome'),
(73594, 'https://ror.org/049dqrc28', 'en', 1, 'https://ror.org/049dqrc28 Center for High Pressure Science & Technology Advanced Research åŒ—äŗ¬é«˜åŽ‹ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(73595, 'https://ror.org/049e8e889', 'en', 1, 'https://ror.org/049e8e889 Poetry Society of America'),
(73596, 'https://ror.org/049fst917', 'en', 1, 'https://ror.org/049fst917 St Paul''s Cathedral'),
(73597, 'https://ror.org/049g84z21', 'no_lang_code', 1, 'https://ror.org/049g84z21 Electroimpact (United States)'),
(73598, 'https://ror.org/049gt8c76', 'no_lang_code', 1, 'https://ror.org/049gt8c76 Ultrapar (Brazil)'),
(73599, 'https://ror.org/049hvrk60', 'en', 1, 'https://ror.org/049hvrk60 Fred Roche Foundation'),
(73600, 'https://ror.org/049kty102', 'en', 1, 'https://ror.org/049kty102 Young Citizens'),
(73601, 'https://ror.org/049ntvc74', 'fr', 1, 'https://ror.org/049ntvc74 Centre de Recherche NuclĆ©aire d’Alger Ł…Ų±ŁƒŲ² البحث Ų§Ł„Ł†ŁˆŁˆŁŠ بالجزائر'),
(73602, 'https://ror.org/049rm1a24', 'en', 1, 'https://ror.org/049rm1a24 International Finance Corporation'),
(73603, 'https://ror.org/049s75k27', 'en', 1, 'https://ror.org/049s75k27 Arkansas State Crime Laboratory'),
(73604, 'https://ror.org/049sa5a53', 'en', 1, 'https://ror.org/049sa5a53 National Dance Institute of New Mexico'),
(73605, 'https://ror.org/049wrg704', 'no_lang_code', 1, 'https://ror.org/049wrg704 Dovetail Genomics (United States)'),
(73606, 'https://ror.org/049ya5256', 'en', 1, 'https://ror.org/049ya5256 Next City'),
(73607, 'https://ror.org/049yd1k97', 'en', 1, 'https://ror.org/049yd1k97 Archivo Histórico de la Policía Nacional Guatemala National Police Archives'),
(73608, 'https://ror.org/049zj0z80', 'no_lang_code', 1, 'https://ror.org/049zj0z80 Sto (Poland)'),
(73609, 'https://ror.org/04a092p69', 'no_lang_code', 1, 'https://ror.org/04a092p69 Fo Guang Shan 佛光山'),
(73610, 'https://ror.org/04a09r739', 'en', 1, 'https://ror.org/04a09r739 Academy of Public Administration under the President of the Kyrgyz Republic ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при ŠŸŃ€ŠµŠ·ŠøŠ“енте ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾Š¹ Республики'),
(73611, 'https://ror.org/04a0c3v54', 'no_lang_code', 1, 'https://ror.org/04a0c3v54 Azerbaijan Investment (Azerbaijan) Azərbaycan İnvestisiya Şirkəti'),
(73612, 'https://ror.org/04a0qg985', 'en', 1, 'https://ror.org/04a0qg985 Committee on the Administration of Justice'),
(73613, 'https://ror.org/04a1gmj86', 'no_lang_code', 1, 'https://ror.org/04a1gmj86 TCG Nordica'),
(73614, 'https://ror.org/04a1qr465', 'no_lang_code', 1, 'https://ror.org/04a1qr465 Denovx (United States)'),
(73615, 'https://ror.org/04a1y6x02', 'en', 1, 'https://ror.org/04a1y6x02 Strategic Society Centre'),
(73616, 'https://ror.org/04a3b0x78', 'en', 1, 'https://ror.org/04a3b0x78 The Tuke Centre'),
(73617, 'https://ror.org/04a4fb261', 'en', 1, 'https://ror.org/04a4fb261 Society of Editors'),
(73618, 'https://ror.org/04a4xjz41', 'en', 1, 'https://ror.org/04a4xjz41 Cadre Research'),
(73619, 'https://ror.org/04a59gq59', 'en', 1, 'https://ror.org/04a59gq59 Bureau of Plant Industry Kawanihan ng Paghahalaman'),
(73620, 'https://ror.org/04a5mbz91', 'en', 1, 'https://ror.org/04a5mbz91 Investor Relations Society'),
(73621, 'https://ror.org/04a6sax19', 'en', 1, 'https://ror.org/04a6sax19 American Farm School Αμερικανική Γεωργική Σχολή'),
(73622, 'https://ror.org/04a7hfh52', 'en', 1, 'https://ror.org/04a7hfh52 Howard Cottage Housing Association'),
(73623, 'https://ror.org/04a7qxt37', 'en', 1, 'https://ror.org/04a7qxt37 InternetLab'),
(73624, 'https://ror.org/04a908t67', 'en', 1, 'https://ror.org/04a908t67 Centre for Equity Studies'),
(73625, 'https://ror.org/04aatd066', 'en', 1, 'https://ror.org/04aatd066 Franco-British Council'),
(73626, 'https://ror.org/04abpa862', 'no_lang_code', 1, 'https://ror.org/04abpa862 Holst Centre (Netherlands)'),
(73627, 'https://ror.org/04aca8627', 'no_lang_code', 1, 'https://ror.org/04aca8627 ATC Materials (United States)'),
(73628, 'https://ror.org/04aez6g96', 'en', 1, 'https://ror.org/04aez6g96 Scottish Community Development Centre'),
(73629, 'https://ror.org/04agxqa78', 'en', 1, 'https://ror.org/04agxqa78 David Livingstone Trust'),
(73630, 'https://ror.org/04ah8f064', 'en', 1, 'https://ror.org/04ah8f064 Shropshire Archives'),
(73631, 'https://ror.org/04ap5hz50', 'no_lang_code', 1, 'https://ror.org/04ap5hz50 VSE Corporation (United States)'),
(73632, 'https://ror.org/04aq1wg32', 'en', 1, 'https://ror.org/04aq1wg32 The Supreme People''s Procuratorate of the People''s Republic of China äø­å›½ę£€åÆŸå®˜åä¼š'),
(73633, 'https://ror.org/04avaqv13', 'no_lang_code', 1, 'https://ror.org/04avaqv13 Ikonix (United States)'),
(73634, 'https://ror.org/04avmkt41', 'en', 1, 'https://ror.org/04avmkt41 Institute for Defence Studies and Analyses ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø और ą¤µą¤æą¤¶ą„ą¤²ą„‡ą¤·ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(73635, 'https://ror.org/04awy3v08', 'en', 1, 'https://ror.org/04awy3v08 Eastern Africa Centre for Constitutional Development Kituo cha Katiba'),
(73636, 'https://ror.org/04aywmt72', 'es', 1, 'https://ror.org/04aywmt72 Fundación Naturaleza y Hombre'),
(73637, 'https://ror.org/04azfmk22', 'en', 1, 'https://ror.org/04azfmk22 Oasis Charitable Trust'),
(73638, 'https://ror.org/04b0ymk71', 'es', 1, 'https://ror.org/04b0ymk71'),
(73639, 'https://ror.org/04b4htq59', 'en', 1, 'https://ror.org/04b4htq59 Bell Educational Trust'),
(73640, 'https://ror.org/04b6bgg83', 'no_lang_code', 1, 'https://ror.org/04b6bgg83 Coridea (United States)'),
(73641, 'https://ror.org/04b8c7j14', 'en', 1, 'https://ror.org/04b8c7j14 Association for Real Change'),
(73642, 'https://ror.org/04b8ktb84', 'en', 1, 'https://ror.org/04b8ktb84 Open Air Laboratories Network'),
(73643, 'https://ror.org/04badap48', 'en', 1, 'https://ror.org/04badap48 Military Institute of Telecommunications and Informatization ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ зв''ŃŠ·ŠŗŃƒ'),
(73644, 'https://ror.org/04bakg991', 'en', 1, 'https://ror.org/04bakg991 Center for Popular Democracy'),
(73645, 'https://ror.org/04bapa014', 'no_lang_code', 1, 'https://ror.org/04bapa014 Hongzhiwei Technology (China) éøæä¹‹å¾®ē§‘ęŠ€'),
(73646, 'https://ror.org/04bb5z418', 'no_lang_code', 1, 'https://ror.org/04bb5z418 Molecular Fingerprint (Sweden)'),
(73647, 'https://ror.org/04bdan579', 'en', 1, 'https://ror.org/04bdan579 National Rehabilitation Hospital Ospidéal NÔisiúnta AthshlÔnúchÔin'),
(73648, 'https://ror.org/04beck307', 'no_lang_code', 1, 'https://ror.org/04beck307 Eau de Paris (France)'),
(73649, 'https://ror.org/04beybq30', 'en', 1, 'https://ror.org/04beybq30 Association to Contribute to Improve the Governance of Land, Water and Natural Resources'),
(73650, 'https://ror.org/04bfhdd88', 'en', 1, 'https://ror.org/04bfhdd88 Abergavenny Museum'),
(73651, 'https://ror.org/04bk95661', 'en', 1, 'https://ror.org/04bk95661 Center for Advanced Defense Studies'),
(73652, 'https://ror.org/04bmy8c93', 'no_lang_code', 1, 'https://ror.org/04bmy8c93 Banco Montepio (Portugal)'),
(73653, 'https://ror.org/04bphbz22', 'en', 1, 'https://ror.org/04bphbz22 Bhutan Centre for Media and Democracy'),
(73654, 'https://ror.org/04bty2w72', 'en', 1, 'https://ror.org/04bty2w72 Albuquerque Academy'),
(73655, 'https://ror.org/04bw58q80', 'en', 1, 'https://ror.org/04bw58q80 32° East Ugandan Arts Trust'),
(73656, 'https://ror.org/04bwj5j23', 'en', 1, 'https://ror.org/04bwj5j23 Alternative Technology Centre'),
(73657, 'https://ror.org/04bws0e60', 'en', 1, 'https://ror.org/04bws0e60 Centre for AIDS Development, Research and Evaluation'),
(73658, 'https://ror.org/04bxpq277', 'en', 1, 'https://ror.org/04bxpq277 Centre for Self Managed Learning'),
(73659, 'https://ror.org/04byf5b56', 'no_lang_code', 1, 'https://ror.org/04byf5b56 Zakład Mechaniki Maszyn (Poland)'),
(73660, 'https://ror.org/04byy6k28', 'en', 1, 'https://ror.org/04byy6k28 National Great Rivers Research and Education Center'),
(73661, 'https://ror.org/04c0nne72', 'en', 1, 'https://ror.org/04c0nne72 Rylsky Institute of Art Studies, Folklore and Ethnology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мистецтвознавства, Ń„Š¾Š»ŃŒŠŗŠ»Š¾Ń€ŠøŃŃ‚ŠøŠŗŠø та етнології ім. М. Š¢. Рильського'),
(73662, 'https://ror.org/04c1s0g33', 'en', 1, 'https://ror.org/04c1s0g33 Maya Educational Foundation'),
(73663, 'https://ror.org/04c47m560', 'en', 1, 'https://ror.org/04c47m560 Kerala State Chalachitra Academy ą“•ąµ‡ą“°ą“³ ą“øą“‚ą“øąµą“„ą“¾ą“Ø ą“šą“²ą“šąµą“šą“æą“¤ąµą“° ą“…ą“•ąµą“•ą“¾ą“¦ą“®ą“æ'),
(73664, 'https://ror.org/04c4hz115', 'en', 1, 'https://ror.org/04c4hz115 Purdue University Fort Wayne'),
(73665, 'https://ror.org/04c5enf18', 'en', 1, 'https://ror.org/04c5enf18 Galicia Jewish Museum Żydowskie Muzeum Galicja'),
(73666, 'https://ror.org/04c5nsm37', 'no_lang_code', 1, 'https://ror.org/04c5nsm37 Kalpavriksh'),
(73667, 'https://ror.org/04c7bhp05', 'no_lang_code', 1, 'https://ror.org/04c7bhp05 SGL Carbon (Germany)'),
(73668, 'https://ror.org/04c7j8965', 'en', 1, 'https://ror.org/04c7j8965 Pontus Research'),
(73669, 'https://ror.org/04c7t5k94', 'de', 1, 'https://ror.org/04c7t5k94 Institut für Mittelstandsforschung'),
(73670, 'https://ror.org/04c7tcz65', 'no_lang_code', 1, 'https://ror.org/04c7tcz65 DeviceFarm (United States)'),
(73671, 'https://ror.org/04caxfb95', 'en', 1, 'https://ror.org/04caxfb95 The Princes Foundation'),
(73672, 'https://ror.org/04cd5hv25', 'en', 1, 'https://ror.org/04cd5hv25 New Leaf Center'),
(73673, 'https://ror.org/04cecjb61', 'en', 1, 'https://ror.org/04cecjb61 Lancaster City Museum'),
(73674, 'https://ror.org/04cm43729', 'no_lang_code', 1, 'https://ror.org/04cm43729 Electron Optica (United States)'),
(73675, 'https://ror.org/04cnp9g56', 'en', 1, 'https://ror.org/04cnp9g56 Conservancies KZN'),
(73676, 'https://ror.org/04cprvb13', 'no_lang_code', 1, 'https://ror.org/04cprvb13 Engin-Ic (United States)'),
(73677, 'https://ror.org/04crvpe09', 'en', 1, 'https://ror.org/04crvpe09 Fƶreningen Svenskt Flyg Intresse Swedish Air Transport Society'),
(73678, 'https://ror.org/04csk5x36', 'en', 1, 'https://ror.org/04csk5x36 Out & Equal Workplace Advocates'),
(73679, 'https://ror.org/04ctzs969', 'en', 1, 'https://ror.org/04ctzs969 Friends of the National Railway Museum'),
(73680, 'https://ror.org/04cv2s677', 'no_lang_code', 1, 'https://ror.org/04cv2s677 ​Sevalanka Foundation'),
(73681, 'https://ror.org/04cx28z93', 'en', 1, 'https://ror.org/04cx28z93 Jeremy Gardner Associates'),
(73682, 'https://ror.org/04d0dqe91', 'en', 1, 'https://ror.org/04d0dqe91 Tunbridge Wells Museum & Art Gallery'),
(73683, 'https://ror.org/04d0tbe10', 'no_lang_code', 1, 'https://ror.org/04d0tbe10 Vanu (United States)'),
(73684, 'https://ror.org/04d2pnx52', 'en', 1, 'https://ror.org/04d2pnx52 Institute for Complex Analysis of Regional Problems'),
(73685, 'https://ror.org/04d2zdx41', 'en', 1, 'https://ror.org/04d2zdx41 Labyrinth Musical Workshop ĪœĪæĻ…ĻƒĪ¹ĪŗĻŒ ĪµĻĪ³Ī±ĻƒĻ„Ī®ĻĪ¹ Ī›Ī±Ī²ĻĻĪ¹Ī½ĪøĪæĻ‚'),
(73686, 'https://ror.org/04d3hex36', 'en', 1, 'https://ror.org/04d3hex36 The Dialogue'),
(73687, 'https://ror.org/04d8rzx62', 'en', 1, 'https://ror.org/04d8rzx62 TakeAction Minnesota'),
(73688, 'https://ror.org/04d90y792', 'en', 1, 'https://ror.org/04d90y792 China Philanthropy Research Institute äø­å›½å…¬ē›Šē ”ē©¶é™¢'),
(73689, 'https://ror.org/04d92sd36', 'en', 1, 'https://ror.org/04d92sd36 Lower Saxony State Office for Consumer Protection and Food Safety Niedersächsisch Landesamt für Verbraucherschutz und Lebensmittelsicherheit'),
(73690, 'https://ror.org/04d9w7y23', 'no_lang_code', 1, 'https://ror.org/04d9w7y23 TwoCan Associates (United Kingdom)'),
(73691, 'https://ror.org/04db4kr72', 'en', 1, 'https://ror.org/04db4kr72 Society for Social Uplift Through Rural Action'),
(73692, 'https://ror.org/04dbzyc13', 'en', 1, 'https://ror.org/04dbzyc13 Khizra Foundation'),
(73693, 'https://ror.org/04dc9g452', 'de', 1, 'https://ror.org/04dc9g452 Klinikum Osnabrück'),
(73694, 'https://ror.org/04dcbs719', 'en', 1, 'https://ror.org/04dcbs719 International Longevity Centre - India'),
(73695, 'https://ror.org/04ddadw63', 'en', 1, 'https://ror.org/04ddadw63 Vienna Institute for Nature Conservation & Analyses'),
(73696, 'https://ror.org/04de66260', 'no_lang_code', 1, 'https://ror.org/04de66260 Burt (Sweden)'),
(73697, 'https://ror.org/04dgdk605', 'en', 1, 'https://ror.org/04dgdk605 Nationellt Forensiskt Centrum Swedish National Forensic Centre'),
(73698, 'https://ror.org/04dge4z44', 'en', 1, 'https://ror.org/04dge4z44 Pretrial Justice Institute'),
(73699, 'https://ror.org/04dk3n740', 'en', 1, 'https://ror.org/04dk3n740 Jordan National Gallery of Fine Arts المتحف Ų§Ł„ŁˆŲ·Ł†ŁŠ Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ Ł„Ł„ŁŁ†ŁˆŁ† Ų§Ł„Ų¬Ł…ŁŠŁ„Ų©'),
(73700, 'https://ror.org/04dm8py89', 'no_lang_code', 1, 'https://ror.org/04dm8py89 COBRO (Poland)'),
(73701, 'https://ror.org/04drzaz56', 'no_lang_code', 1, 'https://ror.org/04drzaz56 Indivior (United States)'),
(73702, 'https://ror.org/04dsd4494', 'pt', 1, 'https://ror.org/04dsd4494 Central Única das Favelas'),
(73703, 'https://ror.org/04dsh5k81', 'en', 1, 'https://ror.org/04dsh5k81 Orchestra of the Age of Enlightenment'),
(73704, 'https://ror.org/04dvzv716', 'no_lang_code', 1, 'https://ror.org/04dvzv716 Polska Grupa Górnicza (Poland)'),
(73705, 'https://ror.org/04dx63c61', 'en', 1, 'https://ror.org/04dx63c61 Nottingham Contemporary'),
(73706, 'https://ror.org/04e0gjd70', 'it', 1, 'https://ror.org/04e0gjd70 Istituto Tecnico Industriale Alessandro Volta'),
(73707, 'https://ror.org/04e0kmg62', 'pt', 1, 'https://ror.org/04e0kmg62 Favela Observatory Observatório de Favelas'),
(73708, 'https://ror.org/04e0phs31', 'en', 1, 'https://ror.org/04e0phs31 Rural Support Partners'),
(73709, 'https://ror.org/04e12gr29', 'es', 1, 'https://ror.org/04e12gr29 Federación de Instituciones y Organismos Financieros Rurales'),
(73710, 'https://ror.org/04e3cb039', 'en', 1, 'https://ror.org/04e3cb039 French Institute for Research in Africa'),
(73711, 'https://ror.org/04e6ef560', 'en', 1, 'https://ror.org/04e6ef560 Southbank Centre'),
(73712, 'https://ror.org/04e7x9x31', 'en', 1, 'https://ror.org/04e7x9x31 Open Acting Academy'),
(73713, 'https://ror.org/04e8ct712', 'en', 1, 'https://ror.org/04e8ct712 Dialogue Society'),
(73714, 'https://ror.org/04e8mam19', 'en', 1, 'https://ror.org/04e8mam19 Organic Centre Wales'),
(73715, 'https://ror.org/04ea9we05', 'no_lang_code', 1, 'https://ror.org/04ea9we05 Hope Pharmaceuticals (United States)'),
(73716, 'https://ror.org/04eb4dd81', 'en', 1, 'https://ror.org/04eb4dd81 Herefordshire & Worcestershire Earth Heritage Trust'),
(73717, 'https://ror.org/04ebdby25', 'en', 1, 'https://ror.org/04ebdby25 Cambridge Cardiac Care Centre'),
(73718, 'https://ror.org/04edx5729', 'en', 1, 'https://ror.org/04edx5729 Turner-Fairbank Highway Research Center'),
(73719, 'https://ror.org/04ee5c022', 'no_lang_code', 1, 'https://ror.org/04ee5c022 Cognitec (Germany)'),
(73720, 'https://ror.org/04efb7z73', 'en', 1, 'https://ror.org/04efb7z73 Rethink Mental Illness'),
(73721, 'https://ror.org/04efk6227', 'en', 1, 'https://ror.org/04efk6227 Clevedon Pier & Heritage Trust'),
(73722, 'https://ror.org/04egvyc40', 'en', 1, 'https://ror.org/04egvyc40 DrawBridge'),
(73723, 'https://ror.org/04eh4dc20', 'no_lang_code', 1, 'https://ror.org/04eh4dc20 Winfoor (Sweden)'),
(73724, 'https://ror.org/04ehnbe71', 'en', 1, 'https://ror.org/04ehnbe71 Generation 2.0 for Rights, Equality & Diversity'),
(73725, 'https://ror.org/04ejzqx24', 'en', 1, 'https://ror.org/04ejzqx24 Team Restoration Ministries'),
(73726, 'https://ror.org/04ests719', 'en', 1, 'https://ror.org/04ests719 National Lesbian and Gay Journalists Association'),
(73727, 'https://ror.org/04esx4309', 'no_lang_code', 1, 'https://ror.org/04esx4309 Fairmount Technologies (United States)'),
(73728, 'https://ror.org/04ev8y062', 'no_lang_code', 1, 'https://ror.org/04ev8y062 Woundchek Laboratories (United Kingdom)'),
(73729, 'https://ror.org/04ex4j806', 'en', 1, 'https://ror.org/04ex4j806 Civil Service'),
(73730, 'https://ror.org/04ex99s09', 'en', 1, 'https://ror.org/04ex99s09 Foundations of Success'),
(73731, 'https://ror.org/04ez8az68', 'en', 1, 'https://ror.org/04ez8az68 University of Swabi ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŲµŁˆŲ§ŲØŪŒā€¬ā€Ž'),
(73732, 'https://ror.org/04f02tt58', 'no_lang_code', 1, 'https://ror.org/04f02tt58 Laboratório Teuto (Brazil)'),
(73733, 'https://ror.org/04f07ep24', 'no_lang_code', 1, 'https://ror.org/04f07ep24 Corona (Poland)'),
(73734, 'https://ror.org/04f0gqc60', 'en', 1, 'https://ror.org/04f0gqc60 The Democratic Society'),
(73735, 'https://ror.org/04f187557', 'en', 1, 'https://ror.org/04f187557 Sylva Foundation'),
(73736, 'https://ror.org/04f204837', 'no_lang_code', 1, 'https://ror.org/04f204837 Enviresearch (United Kingdom)'),
(73737, 'https://ror.org/04f2vpk13', 'en', 1, 'https://ror.org/04f2vpk13 Paternity Testing Corporation Laboratories'),
(73738, 'https://ror.org/04f41f018', 'no_lang_code', 1, 'https://ror.org/04f41f018 Advanced Algorithm and Systems (Japan)'),
(73739, 'https://ror.org/04f433167', 'en', 1, 'https://ror.org/04f433167 The Basketmakers Association'),
(73740, 'https://ror.org/04f5aam04', 'es', 1, 'https://ror.org/04f5aam04 Instituto de BiologĆ­a AgrĆ­cola de Mendoza'),
(73741, 'https://ror.org/04f8bya54', 'sv', 1, 'https://ror.org/04f8bya54 Fryshuset'),
(73742, 'https://ror.org/04fa9he73', 'en', 1, 'https://ror.org/04fa9he73 Robert Gordon''s College'),
(73743, 'https://ror.org/04fb9vg34', 'en', 1, 'https://ror.org/04fb9vg34 Baku Academy of Music Hacıbəyov adına Bakı Musiqi Akademiyası'),
(73744, 'https://ror.org/04fcsw843', 'en', 1, 'https://ror.org/04fcsw843 Virginia Department of Forensic Science'),
(73745, 'https://ror.org/04fd1ra95', 'en', 1, 'https://ror.org/04fd1ra95 Public Knowledge'),
(73746, 'https://ror.org/04ff64s07', 'en', 1, 'https://ror.org/04ff64s07 Institute of Diplomacy and Foreign Relations'),
(73747, 'https://ror.org/04ffrx392', 'en', 1, 'https://ror.org/04ffrx392 Chartered Institute for Archaeologists'),
(73748, 'https://ror.org/04fgqxr51', 'en', 1, 'https://ror.org/04fgqxr51 Earth Trust'),
(73749, 'https://ror.org/04fj96439', 'no_lang_code', 1, 'https://ror.org/04fj96439 Vashon Partners (United States)'),
(73750, 'https://ror.org/04fjeez29', 'no_lang_code', 1, 'https://ror.org/04fjeez29 Inuheat (Sweden)'),
(73751, 'https://ror.org/04fjkn289', 'en', 1, 'https://ror.org/04fjkn289 Taigh Chearsabhagh Museum and Arts Centre'),
(73752, 'https://ror.org/04fnrqd89', 'en', 1, 'https://ror.org/04fnrqd89 Institute of Food Biotechnology and Genomics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ харчової біотехнології та геноміки'),
(73753, 'https://ror.org/04fnvtv49', 'da', 1, 'https://ror.org/04fnvtv49 Tycho Brahe Planetarium'),
(73754, 'https://ror.org/04fp2d244', 'en', 1, 'https://ror.org/04fp2d244 Ministry of Education'),
(73755, 'https://ror.org/04fqnjy45', 'en', 1, 'https://ror.org/04fqnjy45 The Feminist Library'),
(73756, 'https://ror.org/04fr05765', 'no_lang_code', 1, 'https://ror.org/04fr05765 Discerning Technologies (United States)'),
(73757, 'https://ror.org/04fs8fj61', 'en', 1, 'https://ror.org/04fs8fj61 East Africa Law Society'),
(73758, 'https://ror.org/04fsg5361', 'en', 1, 'https://ror.org/04fsg5361 Theatrescience'),
(73759, 'https://ror.org/04ft60f45', 'en', 1, 'https://ror.org/04ft60f45 Cromarty Arts Trust'),
(73760, 'https://ror.org/04fves037', 'no_lang_code', 1, 'https://ror.org/04fves037 Standard Chartered (Singapore)'),
(73761, 'https://ror.org/04fvg7665', 'en', 1, 'https://ror.org/04fvg7665 State Institute of Cultural Heritage of the Peoples of Turkmenistan Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½Š¾Š³Š¾ Š½Š°ŃŠ»ŠµŠ“ŠøŃ нароГов Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŠøŃŃ‚ана'),
(73762, 'https://ror.org/04fwehd44', 'no_lang_code', 1, 'https://ror.org/04fwehd44 InfoAssure (United States)'),
(73763, 'https://ror.org/04fx4cs28', 'en', 1, 'https://ror.org/04fx4cs28 The Tavistock and Portman NHS Foundation Trust'),
(73764, 'https://ror.org/04fyc2a82', 'en', 1, 'https://ror.org/04fyc2a82 Sustainable Inshore Fisheries Trust'),
(73765, 'https://ror.org/04fyq4a48', 'en', 1, 'https://ror.org/04fyq4a48 Jana Sanskriti Centre for Theatre of the Oppressed'),
(73766, 'https://ror.org/04fyt3464', 'en', 1, 'https://ror.org/04fyt3464 Shaanxi History Museum é™•č„æåŽ†å²åšē‰©é¦†'),
(73767, 'https://ror.org/04g0m9s20', 'no_lang_code', 1, 'https://ror.org/04g0m9s20 Riwaq'),
(73768, 'https://ror.org/04g0z8x68', 'no_lang_code', 1, 'https://ror.org/04g0z8x68 Abeno Harukas Art Museum ć‚ć¹ć®ćƒćƒ«ć‚«ć‚¹ē¾Žč”“é¤Ø'),
(73769, 'https://ror.org/04g2vnx61', 'en', 1, 'https://ror.org/04g2vnx61 Hellenic Adult Education Association Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĪæĪ½Ī¹ĪŗĪ® ĪˆĪ½Ļ‰ĻƒĪ· Ī•ĪŗĻ€Ī±ĪÆĪ“ĪµĻ…ĻƒĪ·Ļ‚ Ενηλίκων'),
(73770, 'https://ror.org/04g4wrc61', 'en', 1, 'https://ror.org/04g4wrc61 The Justice Management Institute'),
(73771, 'https://ror.org/04g5jfs38', 'no_lang_code', 1, 'https://ror.org/04g5jfs38 Advanced Optical Technologies (United States)'),
(73772, 'https://ror.org/04g5q3m07', 'no_lang_code', 1, 'https://ror.org/04g5q3m07 Dinntec (Colombia)'),
(73773, 'https://ror.org/04g84km62', 'no_lang_code', 1, 'https://ror.org/04g84km62 KW Engineering (United States)'),
(73774, 'https://ror.org/04g8kt609', 'en', 1, 'https://ror.org/04g8kt609 Oā€˜zbekiston Respublikasi Fanlar Akademiyasi Tarix Instituti The Institute of History of The Academy of Sciences of The Republic of Uzbekistan Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š˜ŃŃ‚Š¾Ń€ŠøŠø АкаГемии ŠŠ°ŃƒŠŗ Республики Узбекистан'),
(73775, 'https://ror.org/04g8zfc73', 'pt', 1, 'https://ror.org/04g8zfc73 Ethnic Media Institute Instituto Midia Ɖtnica'),
(73776, 'https://ror.org/04g9aps05', 'en', 1, 'https://ror.org/04g9aps05 British Record Society'),
(73777, 'https://ror.org/04ganmj42', 'no_lang_code', 1, 'https://ror.org/04ganmj42 Herrick Technology Laboratories (United States)'),
(73778, 'https://ror.org/04gbdgm24', 'no_lang_code', 1, 'https://ror.org/04gbdgm24 Champions Oncology (United States)'),
(73779, 'https://ror.org/04gbygd07', 'no_lang_code', 1, 'https://ror.org/04gbygd07 Transbit (Poland)'),
(73780, 'https://ror.org/04gcfwh66', 'en', 1, 'https://ror.org/04gcfwh66 The First People''s Hospital of Zhaoqing č‚‡åŗ†åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(73781, 'https://ror.org/04gck6g78', 'en', 1, 'https://ror.org/04gck6g78 University of Modern Sciences Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(73782, 'https://ror.org/04gfanq43', 'no_lang_code', 1, 'https://ror.org/04gfanq43 British American Tobacco (Uzbekistan)'),
(73783, 'https://ror.org/04gfk4b59', 'en', 1, 'https://ror.org/04gfk4b59 Ministerio de Cultura Ministry of Culture'),
(73784, 'https://ror.org/04gh4hn58', 'en', 1, 'https://ror.org/04gh4hn58 Southern Coalition for Social Justice'),
(73785, 'https://ror.org/04gj4mv97', 'no_lang_code', 1, 'https://ror.org/04gj4mv97 Intact Genomics (United States)'),
(73786, 'https://ror.org/04gjcva23', 'no_lang_code', 1, 'https://ror.org/04gjcva23 Two Sigma Investments (United States)'),
(73787, 'https://ror.org/04gk2ac25', 'es', 1, 'https://ror.org/04gk2ac25 Ministerio PĆŗblico de la Defensa'),
(73788, 'https://ror.org/04gnd7n67', 'pt', 1, 'https://ror.org/04gnd7n67 Centro de Cultura Luiz Freire'),
(73789, 'https://ror.org/04gnvyj62', 'en', 1, 'https://ror.org/04gnvyj62 The BEARR Trust'),
(73790, 'https://ror.org/04gq33t30', 'no_lang_code', 1, 'https://ror.org/04gq33t30 Chase Research Cryogenics (United Kingdom)'),
(73791, 'https://ror.org/04gqz0031', 'no_lang_code', 1, 'https://ror.org/04gqz0031 H6 Systems (United States)'),
(73792, 'https://ror.org/04gs0zr76', 'en', 1, 'https://ror.org/04gs0zr76 South Lanarkshire Council'),
(73793, 'https://ror.org/04gv3sq83', 'no_lang_code', 1, 'https://ror.org/04gv3sq83 AngelMed (United States)'),
(73794, 'https://ror.org/04gv91m66', 'en', 1, 'https://ror.org/04gv91m66 Chartered Society of Designers'),
(73795, 'https://ror.org/04gw3cp30', 'es', 1, 'https://ror.org/04gw3cp30 Seminario Permanente de Investigación Agraria'),
(73796, 'https://ror.org/04gww5p47', 'en', 1, 'https://ror.org/04gww5p47 Heritage Lower Saint Lawrence'),
(73797, 'https://ror.org/04gwy5274', 'no_lang_code', 1, 'https://ror.org/04gwy5274 Ferroamp Elektronik (Sweden)'),
(73798, 'https://ror.org/04gwzxy46', 'en', 1, 'https://ror.org/04gwzxy46 End Violence Against Women'),
(73799, 'https://ror.org/04gy0kq46', 'no_lang_code', 1, 'https://ror.org/04gy0kq46 Scanmed (Poland)'),
(73800, 'https://ror.org/04gyqbv83', 'en', 1, 'https://ror.org/04gyqbv83 Staffordshire County Council'),
(73801, 'https://ror.org/04h0bdf39', 'en', 1, 'https://ror.org/04h0bdf39 Sisters of Mercy of the Americas'),
(73802, 'https://ror.org/04h1th525', 'no_lang_code', 1, 'https://ror.org/04h1th525 DigitalSpace (United States)'),
(73803, 'https://ror.org/04h347b80', 'en', 1, 'https://ror.org/04h347b80 Institute of Art and Ideas'),
(73804, 'https://ror.org/04h3krc89', 'en', 1, 'https://ror.org/04h3krc89 National Secretariat - Indonesian Forum for Budget Transparency Sekretariat Nasional Forum Indonesia untuk Transparansi'),
(73805, 'https://ror.org/04h3mfd12', 'no_lang_code', 1, 'https://ror.org/04h3mfd12 Intel (Brazil)'),
(73806, 'https://ror.org/04h516318', 'no_lang_code', 1, 'https://ror.org/04h516318 Firestar Technologies (United States)'),
(73807, 'https://ror.org/04h51r045', 'en', 1, 'https://ror.org/04h51r045 Interdisciplinary Scientific Research'),
(73808, 'https://ror.org/04h54m622', 'de', 1, 'https://ror.org/04h54m622 Gemeinschaftsklinikum Mittelrhein'),
(73809, 'https://ror.org/04h75qr14', 'en', 1, 'https://ror.org/04h75qr14 Sobhraj Maternity Hospital'),
(73810, 'https://ror.org/04h8bnx49', 'en', 1, 'https://ror.org/04h8bnx49 Mitchell Library'),
(73811, 'https://ror.org/04h8j1922', 'no_lang_code', 1, 'https://ror.org/04h8j1922 Alvin Ailey (United States)'),
(73812, 'https://ror.org/04hc8pc27', 'en', 1, 'https://ror.org/04hc8pc27 The Allaince Advancing Regional Equity'),
(73813, 'https://ror.org/04hhsn876', 'en', 1, 'https://ror.org/04hhsn876 National Employment Savings Trust'),
(73814, 'https://ror.org/04hjd4917', 'no_lang_code', 1, 'https://ror.org/04hjd4917 Hardric Laboratories (United States)'),
(73815, 'https://ror.org/04hjm1265', 'no_lang_code', 1, 'https://ror.org/04hjm1265 Group W (United States)'),
(73816, 'https://ror.org/04hk30d26', 'no_lang_code', 1, 'https://ror.org/04hk30d26 Perpetuity Research (United Kingdom)'),
(73817, 'https://ror.org/04hkn2n95', 'en', 1, 'https://ror.org/04hkn2n95 Milapfest'),
(73818, 'https://ror.org/04hktxn88', 'no_lang_code', 1, 'https://ror.org/04hktxn88 Mantis Vision (Israel)'),
(73819, 'https://ror.org/04hpe2n33', 'en', 1, 'https://ror.org/04hpe2n33 Haywood Academy'),
(73820, 'https://ror.org/04hqk0696', 'en', 1, 'https://ror.org/04hqk0696 Fabric Workshop and Museum'),
(73821, 'https://ror.org/04hqqb835', 'no_lang_code', 1, 'https://ror.org/04hqqb835 Camras Vision (United States)'),
(73822, 'https://ror.org/04hse4551', 'no_lang_code', 1, 'https://ror.org/04hse4551 Kamukunji Paralegal Trust'),
(73823, 'https://ror.org/04hsv5386', 'en', 1, 'https://ror.org/04hsv5386 British Association of Picture Libraries and Agencies'),
(73824, 'https://ror.org/04htmqx50', 'no_lang_code', 1, 'https://ror.org/04htmqx50 Evispot (Sweden)'),
(73825, 'https://ror.org/04hv2da60', 'no_lang_code', 1, 'https://ror.org/04hv2da60 i2 Media Research (United Kingdom)'),
(73826, 'https://ror.org/04hvavg21', 'no_lang_code', 1, 'https://ror.org/04hvavg21 BRAC ą¦¬ą§ą¦°ą§ą¦Æą¦¾ą¦• ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦°'),
(73827, 'https://ror.org/04hytgp84', 'pt', 1, 'https://ror.org/04hytgp84 Instituto Vladimir Herzog'),
(73828, 'https://ror.org/04hzsme37', 'no_lang_code', 1, 'https://ror.org/04hzsme37 Medituner (Sweden)'),
(73829, 'https://ror.org/04j1vxv82', 'en', 1, 'https://ror.org/04j1vxv82 Yorkshire Agricultural Society'),
(73830, 'https://ror.org/04j4pfa24', 'en', 1, 'https://ror.org/04j4pfa24 Arms Control Association');
INSERT INTO `rors` VALUES
(73831, 'https://ror.org/04j4xtm35', 'en', 1, 'https://ror.org/04j4xtm35 Institute of Scientific Information on Social Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°ŃƒŃ‡Š½Š¾Š¹ информации по общественным наукам'),
(73832, 'https://ror.org/04j57sj69', 'ga', 1, 'https://ror.org/04j57sj69 Garda SƭochƔna Inspectorate'),
(73833, 'https://ror.org/04j5w9585', 'no_lang_code', 1, 'https://ror.org/04j5w9585 3Eflow (Sweden)'),
(73834, 'https://ror.org/04j7q4722', 'en', 1, 'https://ror.org/04j7q4722 Institute for Jewish Policy Research'),
(73835, 'https://ror.org/04j8fde02', 'fr', 1, 'https://ror.org/04j8fde02 Centre FranƧais de Recherche en Sciences Sociales Francouzský Ćŗstav pro výzkum ve společenských vědĆ”ch French Research Center in Humanities and Social Sciences'),
(73836, 'https://ror.org/04j8yhy50', 'en', 1, 'https://ror.org/04j8yhy50 Science Oxford'),
(73837, 'https://ror.org/04j9eba34', 'en', 1, 'https://ror.org/04j9eba34 Wysing Arts Centre'),
(73838, 'https://ror.org/04j9qwe36', 'en', 1, 'https://ror.org/04j9qwe36 Danish Refugee Council Dansk FlygtningehjƦlp'),
(73839, 'https://ror.org/04jav4h88', 'no_lang_code', 1, 'https://ror.org/04jav4h88 Adjuvance (United States)'),
(73840, 'https://ror.org/04jbk1p62', 'no_lang_code', 1, 'https://ror.org/04jbk1p62'),
(73841, 'https://ror.org/04jd5mx11', 'no_lang_code', 1, 'https://ror.org/04jd5mx11 iGW (Sweden)'),
(73842, 'https://ror.org/04jdgsn04', 'en', 1, 'https://ror.org/04jdgsn04 Blue Marine Foundation'),
(73843, 'https://ror.org/04jffap62', 'no_lang_code', 1, 'https://ror.org/04jffap62 Inkbit (United States)'),
(73844, 'https://ror.org/04jg5kt84', 'en', 1, 'https://ror.org/04jg5kt84 Asian Pacific Environmental Network'),
(73845, 'https://ror.org/04jgxcn84', 'no_lang_code', 1, 'https://ror.org/04jgxcn84 C&R Technologies (United States)'),
(73846, 'https://ror.org/04jjxrc37', 'en', 1, 'https://ror.org/04jjxrc37 Office of the Governor'),
(73847, 'https://ror.org/04jn6c360', 'no_lang_code', 1, 'https://ror.org/04jn6c360 Arne Jensen (Sweden)'),
(73848, 'https://ror.org/04jpkas74', 'de', 1, 'https://ror.org/04jpkas74 Albertinen Diakoniewerk'),
(73849, 'https://ror.org/04jq8tj07', 'en', 1, 'https://ror.org/04jq8tj07 ASEM Water Resources Research and Development Centre'),
(73850, 'https://ror.org/04jsfmm36', 'en', 1, 'https://ror.org/04jsfmm36 Centre for Literacy in Primary Education'),
(73851, 'https://ror.org/04jvezd47', 'no_lang_code', 1, 'https://ror.org/04jvezd47 Conrad Technologies (United States)'),
(73852, 'https://ror.org/04jw55602', 'en', 1, 'https://ror.org/04jw55602 Global Stem cell & Regenerative medicine Acceleration Center'),
(73853, 'https://ror.org/04jw9yz80', 'no_lang_code', 1, 'https://ror.org/04jw9yz80 Elex Biotech (United States)'),
(73854, 'https://ror.org/04jx1nd20', 'en', 1, 'https://ror.org/04jx1nd20 National Eczema Society'),
(73855, 'https://ror.org/04jy9y087', 'en', 1, 'https://ror.org/04jy9y087 Pennsylvania Coalition Against Domestic Violence'),
(73856, 'https://ror.org/04k0m1906', 'no_lang_code', 1, 'https://ror.org/04k0m1906 GlobalAgRisk (United States)'),
(73857, 'https://ror.org/04k10z253', 'en', 1, 'https://ror.org/04k10z253 Green Capacity'),
(73858, 'https://ror.org/04k2vba54', 'no_lang_code', 1, 'https://ror.org/04k2vba54 Molecular Theranostics (United States)'),
(73859, 'https://ror.org/04k2y5271', 'en', 1, 'https://ror.org/04k2y5271 Epic Theatre Ensemble'),
(73860, 'https://ror.org/04k3h1n36', 'no_lang_code', 1, 'https://ror.org/04k3h1n36 ADW (Poland)'),
(73861, 'https://ror.org/04k3q6a72', 'en', 1, 'https://ror.org/04k3q6a72 Blind and Sight Impaired Society'),
(73862, 'https://ror.org/04k3sfn15', 'en', 1, 'https://ror.org/04k3sfn15 Le musƩe Dr Guislain Museum Dr Guislain'),
(73863, 'https://ror.org/04k5c4t69', 'no_lang_code', 1, 'https://ror.org/04k5c4t69 Sa-Dhan'),
(73864, 'https://ror.org/04k7q3y31', 'en', 1, 'https://ror.org/04k7q3y31 Horse Hospital'),
(73865, 'https://ror.org/04k8txf58', 'no_lang_code', 1, 'https://ror.org/04k8txf58 EpiSys Science (United States)'),
(73866, 'https://ror.org/04k9wp214', 'en', 1, 'https://ror.org/04k9wp214 NIHR Trauma Management MedTech Co-operative'),
(73867, 'https://ror.org/04kae8j43', 'en', 1, 'https://ror.org/04kae8j43 Instituto'),
(73868, 'https://ror.org/04kb7h130', 'en', 1, 'https://ror.org/04kb7h130 Irrigation Management Training Institute'),
(73869, 'https://ror.org/04kdrdn36', 'en', 1, 'https://ror.org/04kdrdn36 Awdurdod Ystadegau''r DU UK Statistics Authority'),
(73870, 'https://ror.org/04ke81j60', 'no_lang_code', 1, 'https://ror.org/04ke81j60 Katiba Institute'),
(73871, 'https://ror.org/04keq6987', 'en', 1, 'https://ror.org/04keq6987 Purdue University Northwest'),
(73872, 'https://ror.org/04kesq777', 'en', 1, 'https://ror.org/04kesq777 European Centre for Living Technology'),
(73873, 'https://ror.org/04kpt5t78', 'en', 1, 'https://ror.org/04kpt5t78 Manufacturing Technologies Association'),
(73874, 'https://ror.org/04kpx4g09', 'en', 1, 'https://ror.org/04kpx4g09 Northern Ireland Council for Integrated Education'),
(73875, 'https://ror.org/04kqnad16', 'en', 1, 'https://ror.org/04kqnad16 Svenska Hƶftprotesregistret The Swedish Hip Arthroplasty Register'),
(73876, 'https://ror.org/04ks1pv36', 'en', 1, 'https://ror.org/04ks1pv36 Law Institute of Lithuania Teisės institutas'),
(73877, 'https://ror.org/04kw2cw23', 'en', 1, 'https://ror.org/04kw2cw23 Center for Responsible Lending'),
(73878, 'https://ror.org/04kwf3417', 'en', 1, 'https://ror.org/04kwf3417 Housing California'),
(73879, 'https://ror.org/04kwfkk85', 'no_lang_code', 1, 'https://ror.org/04kwfkk85 Nokia (France)'),
(73880, 'https://ror.org/04kxvwk47', 'en', 1, 'https://ror.org/04kxvwk47 Local Trust'),
(73881, 'https://ror.org/04kymnq52', 'fr', 1, 'https://ror.org/04kymnq52 Centre de Recherche en Technologie des Semi-conducteurs pour l’EnergĆ©tique'),
(73882, 'https://ror.org/04m0rev75', 'en', 1, 'https://ror.org/04m0rev75 MidSchoolMath'),
(73883, 'https://ror.org/04m1grf16', 'en', 1, 'https://ror.org/04m1grf16 Zambia Red Cross Society'),
(73884, 'https://ror.org/04m2re361', 'en', 1, 'https://ror.org/04m2re361 Ormiston Bushfield Academy'),
(73885, 'https://ror.org/04m2vv179', 'no_lang_code', 1, 'https://ror.org/04m2vv179 Arcos (United States)'),
(73886, 'https://ror.org/04m3c6y30', 'vi', 1, 'https://ror.org/04m3c6y30 Hį»c viện Tʰ phĆ”p'),
(73887, 'https://ror.org/04m3ze057', 'no_lang_code', 1, 'https://ror.org/04m3ze057 Bioinduction (United Kingdom)'),
(73888, 'https://ror.org/04m4hft71', 'en', 1, 'https://ror.org/04m4hft71 Americans for Financial Reform Education Fund'),
(73889, 'https://ror.org/04m541b31', 'en', 1, 'https://ror.org/04m541b31 Chartered Institute of Procurement & Supply'),
(73890, 'https://ror.org/04m5xrq42', 'en', 1, 'https://ror.org/04m5xrq42 Music Venue Trust'),
(73891, 'https://ror.org/04m6k0e70', 'no_lang_code', 1, 'https://ror.org/04m6k0e70 Drakontas (United States)'),
(73892, 'https://ror.org/04m83kv34', 'no_lang_code', 1, 'https://ror.org/04m83kv34 Eligo Bioscience (France)'),
(73893, 'https://ror.org/04m8nb974', 'no_lang_code', 1, 'https://ror.org/04m8nb974 SPring-8 (Japan) ć‚¹ćƒ—ćƒŖćƒ³ć‚°ć‚Øć‚¤ćƒˆć‚µćƒ¼ćƒ“ć‚¹'),
(73894, 'https://ror.org/04m9ftx85', 'en', 1, 'https://ror.org/04m9ftx85 Istanbul Foundation for Research and Education İSTANBUL ARAŞTIRMA VE EĞİTİM VAKFI'),
(73895, 'https://ror.org/04mc93t41', 'en', 1, 'https://ror.org/04mc93t41 New York City Department of Transportation'),
(73896, 'https://ror.org/04mevkg92', 'en', 1, 'https://ror.org/04mevkg92 Rural Action'),
(73897, 'https://ror.org/04mfvsa73', 'en', 1, 'https://ror.org/04mfvsa73 The Cinema Museum'),
(73898, 'https://ror.org/04mk94w26', 'en', 1, 'https://ror.org/04mk94w26 National Coastal Tourism Academy'),
(73899, 'https://ror.org/04mm4cb76', 'en', 1, 'https://ror.org/04mm4cb76 Chicago Youth Symphony Orchestras'),
(73900, 'https://ror.org/04mmeqg04', 'fr', 1, 'https://ror.org/04mmeqg04 Agence France Presse'),
(73901, 'https://ror.org/04mn04g76', 'en', 1, 'https://ror.org/04mn04g76 Rajasthan Police Academy ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤²ą¤æą¤ø ą¤…ą¤•ą¤¾ą¤¦ą¤®ą„€'),
(73902, 'https://ror.org/04mrfa287', 'no_lang_code', 1, 'https://ror.org/04mrfa287 NanoCor Therapeutics (United States)'),
(73903, 'https://ror.org/04ms3vt90', 'no_lang_code', 1, 'https://ror.org/04ms3vt90 Ten Medical Design (Sweden)'),
(73904, 'https://ror.org/04mvkev15', 'en', 1, 'https://ror.org/04mvkev15 Twentieth Century Society'),
(73905, 'https://ror.org/04mw9je83', 'en', 1, 'https://ror.org/04mw9je83 Dudhope Multicultural Centre'),
(73906, 'https://ror.org/04mwgzt90', 'en', 1, 'https://ror.org/04mwgzt90 National Health Systems Resource Centre'),
(73907, 'https://ror.org/04myjct49', 'no_lang_code', 1, 'https://ror.org/04myjct49 Airospring (United Kingdom)'),
(73908, 'https://ror.org/04myryz50', 'en', 1, 'https://ror.org/04myryz50 The Nuclear Institute'),
(73909, 'https://ror.org/04n09hm86', 'pt', 1, 'https://ror.org/04n09hm86 Fórum Nacional das Entidades Civis de Defesa do Consumidor'),
(73910, 'https://ror.org/04n11wj95', 'en', 1, 'https://ror.org/04n11wj95 National Portrait Gallery'),
(73911, 'https://ror.org/04n1dwf03', 'no_lang_code', 1, 'https://ror.org/04n1dwf03 ECM Technologies (France)'),
(73912, 'https://ror.org/04n1tep93', 'en', 1, 'https://ror.org/04n1tep93 Ardler Village Trust'),
(73913, 'https://ror.org/04n3ta263', 'no_lang_code', 1, 'https://ror.org/04n3ta263 Flometrics (United States)'),
(73914, 'https://ror.org/04n49tc44', 'en', 1, 'https://ror.org/04n49tc44 Economic Policy Research Institute'),
(73915, 'https://ror.org/04n4nnv87', 'no_lang_code', 1, 'https://ror.org/04n4nnv87 Graphensic (Sweden)'),
(73916, 'https://ror.org/04n5gt552', 'en', 1, 'https://ror.org/04n5gt552 Supra-Regional Assay Service'),
(73917, 'https://ror.org/04n66vw09', 'no_lang_code', 1, 'https://ror.org/04n66vw09 Lab Resources (United States)'),
(73918, 'https://ror.org/04n78zc82', 'en', 1, 'https://ror.org/04n78zc82 Kenya Health Informatics Association'),
(73919, 'https://ror.org/04n8wxk74', 'en', 1, 'https://ror.org/04n8wxk74 American Immigration Lawyers Association'),
(73920, 'https://ror.org/04n96a723', 'en', 1, 'https://ror.org/04n96a723 Kraszna-Krausz Foundation'),
(73921, 'https://ror.org/04na1dr63', 'en', 1, 'https://ror.org/04na1dr63 Anthropological Survey of India'),
(73922, 'https://ror.org/04nbbfv42', 'en', 1, 'https://ror.org/04nbbfv42 Contemporary Visual Arts Network'),
(73923, 'https://ror.org/04nem5m18', 'no_lang_code', 1, 'https://ror.org/04nem5m18 Molecule Works (United States)'),
(73924, 'https://ror.org/04nffa559', 'en', 1, 'https://ror.org/04nffa559 Sichuan Academy Of Social Sciences å››å·ēœē¤¾ä¼šē§‘å­¦é™¢'),
(73925, 'https://ror.org/04nhd8d77', 'no_lang_code', 1, 'https://ror.org/04nhd8d77 SwissLitho (Switzerland)'),
(73926, 'https://ror.org/04nhyzz08', 'en', 1, 'https://ror.org/04nhyzz08 St. Thomas Medical Group'),
(73927, 'https://ror.org/04nm9tm11', 'en', 1, 'https://ror.org/04nm9tm11 Girls Not Brides'),
(73928, 'https://ror.org/04nnjqq50', 'en', 1, 'https://ror.org/04nnjqq50 Philippine Cancer Society'),
(73929, 'https://ror.org/04np9tf37', 'en', 1, 'https://ror.org/04np9tf37 Poltava Regional Institute of Postgraduate Education ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ обласний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ–ŃŠ»ŃŠ“ŠøŠæŠ»Š¾Š¼Š½Š¾Ń— пеГагогічної освіти імені М. Š’. ŠžŃŃ‚Ń€Š¾Š³Ń€Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(73930, 'https://ror.org/04npwyz19', 'en', 1, 'https://ror.org/04npwyz19 Church Service Society'),
(73931, 'https://ror.org/04nrddh60', 'no_lang_code', 1, 'https://ror.org/04nrddh60 A Luck Associates (United Kingdom)'),
(73932, 'https://ror.org/04nsmsp44', 'en', 1, 'https://ror.org/04nsmsp44 Tinderbox Theatre'),
(73933, 'https://ror.org/04nt7yh90', 'en', 1, 'https://ror.org/04nt7yh90 Lambda Legal'),
(73934, 'https://ror.org/04ntxw843', 'en', 1, 'https://ror.org/04ntxw843 International Cinema Education'),
(73935, 'https://ror.org/04nwbht92', 'no_lang_code', 1, 'https://ror.org/04nwbht92 Tricol Biomedical (United States)'),
(73936, 'https://ror.org/04nwm6350', 'en', 1, 'https://ror.org/04nwm6350 Comhairle Choitcheann Teagaisg na h-Alba, The General Teaching Council for Scotland'),
(73937, 'https://ror.org/04nwvkj48', 'en', 1, 'https://ror.org/04nwvkj48 International Comparative Literature Association'),
(73938, 'https://ror.org/04nx3q556', 'en', 1, 'https://ror.org/04nx3q556 Metropolitan Black Police Association'),
(73939, 'https://ror.org/04nzac004', 'no_lang_code', 1, 'https://ror.org/04nzac004 CRRC (United Kingdom)'),
(73940, 'https://ror.org/04nzg6m33', 'en', 1, 'https://ror.org/04nzg6m33 Foundation Tallinn 2011 Sihtasutus Tallinn 2011 Ajalugu Š¦Š•Š›Š•Š’ŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• Ā«Š¢ŠŠ›Š›Š˜ŠŠ 2011Ā»'),
(73941, 'https://ror.org/04nznt564', 'en', 1, 'https://ror.org/04nznt564 Centre for Nepal Studies'),
(73942, 'https://ror.org/04nzw6768', 'no_lang_code', 1, 'https://ror.org/04nzw6768 W. L. Gore & Associates (United Kingdom)'),
(73943, 'https://ror.org/04p0tpz02', 'en', 1, 'https://ror.org/04p0tpz02 The Greenlining Institute'),
(73944, 'https://ror.org/04p3gx041', 'no_lang_code', 1, 'https://ror.org/04p3gx041 Specialist Vehicle Research and Development (United Kingdom)'),
(73945, 'https://ror.org/04p41m479', 'en', 1, 'https://ror.org/04p41m479 Ministry of Education and Science of the Republic of Tatarstan ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки Республики Татарстан'),
(73946, 'https://ror.org/04p42tf84', 'no_lang_code', 1, 'https://ror.org/04p42tf84 Nanosolar (United States)'),
(73947, 'https://ror.org/04p5h5d21', 'en', 1, 'https://ror.org/04p5h5d21 Electoral Reform Society'),
(73948, 'https://ror.org/04p7gyb31', 'no_lang_code', 1, 'https://ror.org/04p7gyb31 Allure (United States)'),
(73949, 'https://ror.org/04p858908', 'en', 1, 'https://ror.org/04p858908 Daedalus Trust'),
(73950, 'https://ror.org/04pb43063', 'no_lang_code', 1, 'https://ror.org/04pb43063 DWA Aluminum Composites (United States)'),
(73951, 'https://ror.org/04pc9r783', 'en', 1, 'https://ror.org/04pc9r783 Edinburgh World Heritage'),
(73952, 'https://ror.org/04pjzs357', 'en', 1, 'https://ror.org/04pjzs357 Creative Foundation'),
(73953, 'https://ror.org/04pngg224', 'no_lang_code', 1, 'https://ror.org/04pngg224 DJ Associates (United States)'),
(73954, 'https://ror.org/04pp9zs91', 'no_lang_code', 1, 'https://ror.org/04pp9zs91 Engineering Science Analysis (United States)'),
(73955, 'https://ror.org/04pq4an73', 'no_lang_code', 1, 'https://ror.org/04pq4an73 Kiko Labs (United States)'),
(73956, 'https://ror.org/04pqzwm85', 'no_lang_code', 1, 'https://ror.org/04pqzwm85 GlaxoSmithKline (Brazil)'),
(73957, 'https://ror.org/04pvsp066', 'no_lang_code', 1, 'https://ror.org/04pvsp066 Chromation (United States)'),
(73958, 'https://ror.org/04pw37k23', 'no_lang_code', 1, 'https://ror.org/04pw37k23 Deciwatt (United Kingdom)'),
(73959, 'https://ror.org/04py12f74', 'no_lang_code', 1, 'https://ror.org/04py12f74 PublicPolicy.ie (Ireland)'),
(73960, 'https://ror.org/04pzbyz40', 'no_lang_code', 1, 'https://ror.org/04pzbyz40 Ananse (Brazil)'),
(73961, 'https://ror.org/04q08td48', 'en', 1, 'https://ror.org/04q08td48 Republic Klaipeda Hospital Respublikinė Klaipėdos ligoninė'),
(73962, 'https://ror.org/04q17db63', 'no_lang_code', 1, 'https://ror.org/04q17db63 Brown Computer Company (United States)'),
(73963, 'https://ror.org/04q23qy39', 'en', 1, 'https://ror.org/04q23qy39 Chaudhary Ranbir Singh University ą¤šą„Œą¤§ą¤°ą„€ ą¤°ą¤£ą¤¬ą„€ą¤° सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(73964, 'https://ror.org/04q267888', 'en', 1, 'https://ror.org/04q267888 Pitt Rivers Museum'),
(73965, 'https://ror.org/04q2b1z76', 'no_lang_code', 1, 'https://ror.org/04q2b1z76 Brainquake (United States)'),
(73966, 'https://ror.org/04q6az286', 'en', 1, 'https://ror.org/04q6az286 Carbon180'),
(73967, 'https://ror.org/04q8qbp45', 'en', 1, 'https://ror.org/04q8qbp45 Shoreditch Trust'),
(73968, 'https://ror.org/04q8xq606', 'en', 1, 'https://ror.org/04q8xq606 National Museum of the Royal Navy'),
(73969, 'https://ror.org/04q9spx56', 'no_lang_code', 1, 'https://ror.org/04q9spx56 Proen (Poland)'),
(73970, 'https://ror.org/04qbfzp68', 'en', 1, 'https://ror.org/04qbfzp68 Centre for Child Evaluation & Teaching Ł…Ų±ŁƒŲ² ŲŖŁ‚ŁˆŁŠŁ… ŁˆŲŖŲ¹Ł„ŁŠŁ… الطفل'),
(73971, 'https://ror.org/04qbw6v56', 'pt', 1, 'https://ror.org/04qbw6v56 NĆŗcleo Interdisciplinar da CiĆŖncia do Sono'),
(73972, 'https://ror.org/04qer5752', 'en', 1, 'https://ror.org/04qer5752 Institute of Archaeology named after A.Kh.Margulan Ә.Š„. ŠœŠ°Ń€Ņ“Ņ±Š»Š°Š½ атынГағы ŠŃ€Ń…ŠµŠ¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(73973, 'https://ror.org/04qfef108', 'en', 1, 'https://ror.org/04qfef108 Language Systems International College of English'),
(73974, 'https://ror.org/04qgafw47', 'en', 1, 'https://ror.org/04qgafw47 The Katie Piper Foundation'),
(73975, 'https://ror.org/04qke1n53', 'en', 1, 'https://ror.org/04qke1n53 Veterinary Medicines Directorate'),
(73976, 'https://ror.org/04qnap020', 'en', 1, 'https://ror.org/04qnap020 World Healthal Trust'),
(73977, 'https://ror.org/04qpdjf24', 'no_lang_code', 1, 'https://ror.org/04qpdjf24 Cambridge Research Biochemicals (United Kingdom)'),
(73978, 'https://ror.org/04qq74014', 'no_lang_code', 1, 'https://ror.org/04qq74014 Dedini Industrias De Base (Brazil)'),
(73979, 'https://ror.org/04qtg7w92', 'en', 1, 'https://ror.org/04qtg7w92 Theatre Royal and Royal Concert Hall'),
(73980, 'https://ror.org/04qtj6724', 'no_lang_code', 1, 'https://ror.org/04qtj6724 Berge (Sweden)'),
(73981, 'https://ror.org/04qtnvc29', 'en', 1, 'https://ror.org/04qtnvc29 Taichung City Government å°äø­åø‚ę”æåŗœ'),
(73982, 'https://ror.org/04qw67643', 'en', 1, 'https://ror.org/04qw67643 Community Labor United'),
(73983, 'https://ror.org/04qwqk520', 'en', 1, 'https://ror.org/04qwqk520 State of Alaska Office of the Governor'),
(73984, 'https://ror.org/04qzn0m54', 'en', 1, 'https://ror.org/04qzn0m54 The Academy at Shotton Hall'),
(73985, 'https://ror.org/04r0mp352', 'no_lang_code', 1, 'https://ror.org/04r0mp352 Magnetic Resonance Innovations (United States)'),
(73986, 'https://ror.org/04r3a4v95', 'fr', 1, 'https://ror.org/04r3a4v95 ComitĆ© Rhodanien d’Accueil des RĆ©fugiĆ©s et de DĆ©fense du Droit d''Asile, Forum RĆ©fugiĆ©s - Cosi'),
(73987, 'https://ror.org/04r5fge26', 'en', 1, 'https://ror.org/04r5fge26 Institute for High Performance Computing and Networking Istituto di Calcolo e Reti ad Alte Prestazioni'),
(73988, 'https://ror.org/04r67z754', 'no_lang_code', 1, 'https://ror.org/04r67z754 Soleno Therapeutics (United States)'),
(73989, 'https://ror.org/04r7ckw96', 'es', 1, 'https://ror.org/04r7ckw96 Agrupación Astronómica de la Safor'),
(73990, 'https://ror.org/04r7jvc53', 'no_lang_code', 1, 'https://ror.org/04r7jvc53 Diapin Therapeutics (United States)'),
(73991, 'https://ror.org/04r8tna72', 'en', 1, 'https://ror.org/04r8tna72 Hadaf Institute of Higher Education'),
(73992, 'https://ror.org/04ramzc89', 'en', 1, 'https://ror.org/04ramzc89 Islamic Azad University, Langarud Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł„Ł†ŚÆŲ±ŁˆŲÆ'),
(73993, 'https://ror.org/04rapth36', 'no_lang_code', 1, 'https://ror.org/04rapth36 Ondine (Canada)'),
(73994, 'https://ror.org/04rb79711', 'en', 1, 'https://ror.org/04rb79711 Mountain Association for Community Economic Development'),
(73995, 'https://ror.org/04rcfnb30', 'en', 1, 'https://ror.org/04rcfnb30 South West Heritage Trust'),
(73996, 'https://ror.org/04rd9p896', 'en', 1, 'https://ror.org/04rd9p896 Felipe GonzÔlez Foundation Fundación Felipe GonzÔlez'),
(73997, 'https://ror.org/04rfmre55', 'en', 1, 'https://ror.org/04rfmre55 Islamic Azad University of Marand'),
(73998, 'https://ror.org/04rg4ek57', 'no_lang_code', 1, 'https://ror.org/04rg4ek57 Materion (United States)'),
(73999, 'https://ror.org/04rjeh836', 'no_lang_code', 1, 'https://ror.org/04rjeh836 Patliputra University'),
(74000, 'https://ror.org/04rjsxs58', 'en', 1, 'https://ror.org/04rjsxs58 President of the Office of Electronic Communications Urząd Komunikacji Elektronicznej'),
(74001, 'https://ror.org/04rsv0546', 'no_lang_code', 1, 'https://ror.org/04rsv0546 Holland and Knight (United Arab Emirates)'),
(74002, 'https://ror.org/04rx5bj15', 'en', 1, 'https://ror.org/04rx5bj15 Istraživačka stanica Petnica Petnica Science Center'),
(74003, 'https://ror.org/04rzp1e87', 'pl', 1, 'https://ror.org/04rzp1e87 Stowarzyszenie Pomocy Niepełnosprawnym Kierowcom'),
(74004, 'https://ror.org/04rzrwk66', 'en', 1, 'https://ror.org/04rzrwk66 International Centre for Mathematical and Computer Sciences'),
(74005, 'https://ror.org/04s2xcs63', 'en', 1, 'https://ror.org/04s2xcs63 Solidago Foundation'),
(74006, 'https://ror.org/04s4cdp25', 'no_lang_code', 1, 'https://ror.org/04s4cdp25 QuizRR (Sweden)'),
(74007, 'https://ror.org/04s4ypk37', 'sq', 1, 'https://ror.org/04s4ypk37 Instituti i Sigurisƫ Ushqimore dhe Veterinarisƫ'),
(74008, 'https://ror.org/04s8wpa22', 'no_lang_code', 1, 'https://ror.org/04s8wpa22 Aqua Resources (United States)'),
(74009, 'https://ror.org/04s9hnr69', 'no_lang_code', 1, 'https://ror.org/04s9hnr69 Fƶretagsfabriken i Kronoberg (Sweden)'),
(74010, 'https://ror.org/04sbndd39', 'en', 1, 'https://ror.org/04sbndd39 Muslim Advocates'),
(74011, 'https://ror.org/04scw1t72', 'no_lang_code', 1, 'https://ror.org/04scw1t72 Laser Shot (United States)'),
(74012, 'https://ror.org/04sdakz38', 'en', 1, 'https://ror.org/04sdakz38 The Matthew Elvidge Trust'),
(74013, 'https://ror.org/04sdkmx42', 'id', 1, 'https://ror.org/04sdkmx42 Ciliwung Merdeka'),
(74014, 'https://ror.org/04sdy1r02', 'no_lang_code', 1, 'https://ror.org/04sdy1r02 Lund Science (Sweden)'),
(74015, 'https://ror.org/04sedqx04', 'no_lang_code', 1, 'https://ror.org/04sedqx04 Twerd (Poland)'),
(74016, 'https://ror.org/04sf68197', 'en', 1, 'https://ror.org/04sf68197 British Crystallographic Association'),
(74017, 'https://ror.org/04sg6fy71', 'en', 1, 'https://ror.org/04sg6fy71 Small Woods Association'),
(74018, 'https://ror.org/04sgq7503', 'no_lang_code', 1, 'https://ror.org/04sgq7503 India Habitat Centre भारत ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤¾ą¤ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(74019, 'https://ror.org/04smac308', 'no_lang_code', 1, 'https://ror.org/04smac308 Loc (United States)'),
(74020, 'https://ror.org/04smhj247', 'en', 1, 'https://ror.org/04smhj247 Szpital Kliniczny Przemienienia Pańskiego University Hospital of Lord’s Transfiguration'),
(74021, 'https://ror.org/04sn6zn93', 'en', 1, 'https://ror.org/04sn6zn93 Essex Wildlife Trust'),
(74022, 'https://ror.org/04snxr303', 'pt', 1, 'https://ror.org/04snxr303 Museu da Lourinhã'),
(74023, 'https://ror.org/04sprnk40', 'en', 1, 'https://ror.org/04sprnk40 National Gallery of Arts'),
(74024, 'https://ror.org/04sq27t34', 'en', 1, 'https://ror.org/04sq27t34 L''Association de la Promotion de la MƩdecine Traditionnelle PROMETRA International'),
(74025, 'https://ror.org/04sqcre19', 'en', 1, 'https://ror.org/04sqcre19 Fredric Rieders Family Foundation'),
(74026, 'https://ror.org/04srgzx66', 'en', 1, 'https://ror.org/04srgzx66 Scottish Federation of Housing Associations'),
(74027, 'https://ror.org/04ss19q24', 'en', 1, 'https://ror.org/04ss19q24 Kirknewton Community Development Trust'),
(74028, 'https://ror.org/04stw6a08', 'no_lang_code', 1, 'https://ror.org/04stw6a08 Unilever (France)'),
(74029, 'https://ror.org/04stz1h78', 'en', 1, 'https://ror.org/04stz1h78 Learning Ovations'),
(74030, 'https://ror.org/04svebv53', 'en', 1, 'https://ror.org/04svebv53 Softwarica College'),
(74031, 'https://ror.org/04sw0cd90', 'no_lang_code', 1, 'https://ror.org/04sw0cd90 Det Kongelige Nordiske Oldskriftselskab Royal Nordic Society of Antiquaries (Denmark)'),
(74032, 'https://ror.org/04sw2sb76', 'en', 1, 'https://ror.org/04sw2sb76 Cuban Artists Fund'),
(74033, 'https://ror.org/04sxzk018', 'no_lang_code', 1, 'https://ror.org/04sxzk018 Phoenix Contact (Poland)'),
(74034, 'https://ror.org/04sy68g86', 'en', 1, 'https://ror.org/04sy68g86 South Cumbria Rivers Trust'),
(74035, 'https://ror.org/04syf8713', 'en', 1, 'https://ror.org/04syf8713 Common Cause Education Fund'),
(74036, 'https://ror.org/04t514251', 'no_lang_code', 1, 'https://ror.org/04t514251 UK-China Guangdong CCUS Centre'),
(74037, 'https://ror.org/04t5dkk11', 'no_lang_code', 1, 'https://ror.org/04t5dkk11 Rhinomed (United States)'),
(74038, 'https://ror.org/04t7my217', 'no_lang_code', 1, 'https://ror.org/04t7my217 Inceptus (United States)'),
(74039, 'https://ror.org/04t8wt911', 'no_lang_code', 1, 'https://ror.org/04t8wt911 DeviceRadio (Sweden)'),
(74040, 'https://ror.org/04t9edw32', 'no_lang_code', 1, 'https://ror.org/04t9edw32 Camx Power (United States)'),
(74041, 'https://ror.org/04ta9xg75', 'en', 1, 'https://ror.org/04ta9xg75 Chartered Institution of Water and Environmental Management'),
(74042, 'https://ror.org/04tb0r175', 'no_lang_code', 1, 'https://ror.org/04tb0r175 Szkuner (Poland)'),
(74043, 'https://ror.org/04tbskb64', 'no_lang_code', 1, 'https://ror.org/04tbskb64 Mimerse (Sweden)'),
(74044, 'https://ror.org/04tk9hj58', 'no_lang_code', 1, 'https://ror.org/04tk9hj58 Hong Kong Maritime Museum é¦™ęøÆęµ·äŗ‹åšē‰©é¤Ø'),
(74045, 'https://ror.org/04tp3cz81', 'en', 1, 'https://ror.org/04tp3cz81 Infectious Diseases Data Observatory'),
(74046, 'https://ror.org/04tpe6y42', 'en', 1, 'https://ror.org/04tpe6y42 Dr. Sadhana Nayak’s Voice Clinic and Center'),
(74047, 'https://ror.org/04tr7gf78', 'no_lang_code', 1, 'https://ror.org/04tr7gf78 Nanoacademic Technologies'),
(74048, 'https://ror.org/04tvaxw19', 'no_lang_code', 1, 'https://ror.org/04tvaxw19 DNA Diagnostics Center (United States)'),
(74049, 'https://ror.org/04tvh6p44', 'no_lang_code', 1, 'https://ror.org/04tvh6p44 Lime Associates (United Kingdom)'),
(74050, 'https://ror.org/04tw1z259', 'no_lang_code', 1, 'https://ror.org/04tw1z259 Ideon Innovation (Sweden)'),
(74051, 'https://ror.org/04tw9zq58', 'en', 1, 'https://ror.org/04tw9zq58 International Space Science Institute - Beijing 国际空闓科学研究所-åŒ—äŗ¬'),
(74052, 'https://ror.org/04twq5n98', 'en', 1, 'https://ror.org/04twq5n98 Beverly Hills Cardiology'),
(74053, 'https://ror.org/04tzn6q94', 'en', 1, 'https://ror.org/04tzn6q94 Grassroots Institute for Fundraising Training'),
(74054, 'https://ror.org/04v5fxp58', 'en', 1, 'https://ror.org/04v5fxp58 Institute of Cast Metals Engineers'),
(74055, 'https://ror.org/04v8ha428', 'en', 1, 'https://ror.org/04v8ha428 Rights and Resources'),
(74056, 'https://ror.org/04v8wx508', 'no_lang_code', 1, 'https://ror.org/04v8wx508 Ezenia (United States)'),
(74057, 'https://ror.org/04v9yk034', 'en', 1, 'https://ror.org/04v9yk034 Cornwall Museums Partnership'),
(74058, 'https://ror.org/04vc7kq70', 'en', 1, 'https://ror.org/04vc7kq70 Consejo de la Magistratura de la Nación Council of Magistrates of the Nation'),
(74059, 'https://ror.org/04vcg0a87', 'no_lang_code', 1, 'https://ror.org/04vcg0a87 Golden Agri-Resources (Singapore)'),
(74060, 'https://ror.org/04vda4c44', 'no_lang_code', 1, 'https://ror.org/04vda4c44 Hqphotonics (United States)'),
(74061, 'https://ror.org/04ve58z79', 'en', 1, 'https://ror.org/04ve58z79 Insigneo'),
(74062, 'https://ror.org/04vgzny65', 'no_lang_code', 1, 'https://ror.org/04vgzny65 Vestas (United Kingdom)'),
(74063, 'https://ror.org/04vj14y69', 'no_lang_code', 1, 'https://ror.org/04vj14y69 NeoGenomics (United States)'),
(74064, 'https://ror.org/04vkkc603', 'en', 1, 'https://ror.org/04vkkc603 Zambia National Broadcasting Corporation'),
(74065, 'https://ror.org/04vmcpd16', 'no_lang_code', 1, 'https://ror.org/04vmcpd16 Cell IDx (United States)'),
(74066, 'https://ror.org/04vmq6d61', 'no_lang_code', 1, 'https://ror.org/04vmq6d61 Planact'),
(74067, 'https://ror.org/04vnwke91', 'en', 1, 'https://ror.org/04vnwke91 Institute for Research on Innovation and Services for Development Istituto di Ricerca su Innovazione e Servizi per lo Sviluppo'),
(74068, 'https://ror.org/04vr5fc04', 'en', 1, 'https://ror.org/04vr5fc04 China Association of Higher Educaiton äø­å›½é«˜ē­‰ę•™č‚²å­¦ä¼š'),
(74069, 'https://ror.org/04vsshx67', 'en', 1, 'https://ror.org/04vsshx67 Scottish Graduate School for Arts & Humanities'),
(74070, 'https://ror.org/04vv9rj91', 'no_lang_code', 1, 'https://ror.org/04vv9rj91 Data One Global (United States)'),
(74071, 'https://ror.org/04vwync56', 'en', 1, 'https://ror.org/04vwync56 British Cattle Veterinary Association'),
(74072, 'https://ror.org/04vx2nc87', 'no_lang_code', 1, 'https://ror.org/04vx2nc87 Igennus Healthcare Nutrition (United Kingdom)'),
(74073, 'https://ror.org/04vxddf34', 'en', 1, 'https://ror.org/04vxddf34 IsoForensics'),
(74074, 'https://ror.org/04vy99971', 'en', 1, 'https://ror.org/04vy99971 Forward Cities'),
(74075, 'https://ror.org/04w013s63', 'en', 1, 'https://ror.org/04w013s63 Centre National de MƩmoire Historique National Center for Historical Memory'),
(74076, 'https://ror.org/04w11qx28', 'en', 1, 'https://ror.org/04w11qx28 South Essex Rape and Incest Crisis Centre'),
(74077, 'https://ror.org/04w1vv369', 'no_lang_code', 1, 'https://ror.org/04w1vv369 Healthcare Technologies and Methods (United States)'),
(74078, 'https://ror.org/04w1vws04', 'en', 1, 'https://ror.org/04w1vws04 Indian Institute of Dalit Studies दलित ą¤øą„ą¤Ÿą¤”ą„€ą¤œ का ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(74079, 'https://ror.org/04w200405', 'en', 1, 'https://ror.org/04w200405 Beirut Art Center Ł…Ų±ŁƒŲ² بيروت للفن'),
(74080, 'https://ror.org/04w96wv49', 'en', 1, 'https://ror.org/04w96wv49 Sustainability Accounting Standards Board'),
(74081, 'https://ror.org/04wasyv34', 'no_lang_code', 1, 'https://ror.org/04wasyv34 Jingpin Materials (China) č‹å·žę™¶å“ę–°ęę–™č‚”ä»½ęœ‰é™å…¬åø'),
(74082, 'https://ror.org/04wax6w38', 'fr', 1, 'https://ror.org/04wax6w38 Institut SupƩrieur PrivƩ Polytechnique'),
(74083, 'https://ror.org/04wb05896', 'en', 1, 'https://ror.org/04wb05896 New Gorbals Housing Association'),
(74084, 'https://ror.org/04wb42e09', 'en', 1, 'https://ror.org/04wb42e09 Royal Film Commission Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ų§Ł„Ų§Ų±ŲÆŁ†ŁŠŲ© للأفلام'),
(74085, 'https://ror.org/04wbhfm32', 'en', 1, 'https://ror.org/04wbhfm32 Exercise Science Consulting'),
(74086, 'https://ror.org/04wdbw215', 'en', 1, 'https://ror.org/04wdbw215 Dover Technical College'),
(74087, 'https://ror.org/04wdj7e85', 'en', 1, 'https://ror.org/04wdj7e85 LifeMoves'),
(74088, 'https://ror.org/04wf30j82', 'en', 1, 'https://ror.org/04wf30j82 QuTech'),
(74089, 'https://ror.org/04wfdnt11', 'no_lang_code', 1, 'https://ror.org/04wfdnt11 Brooks Rand Instruments (United States)'),
(74090, 'https://ror.org/04wfs4b35', 'no_lang_code', 1, 'https://ror.org/04wfs4b35 Brite Bio (United States)'),
(74091, 'https://ror.org/04wkssk54', 'no_lang_code', 1, 'https://ror.org/04wkssk54 HumanN (United States)'),
(74092, 'https://ror.org/04wn4j219', 'en', 1, 'https://ror.org/04wn4j219 National Telford Institute'),
(74093, 'https://ror.org/04wn4nw41', 'en', 1, 'https://ror.org/04wn4nw41 Respect'),
(74094, 'https://ror.org/04wpnc326', 'no_lang_code', 1, 'https://ror.org/04wpnc326 Cells Therapy (Poland)'),
(74095, 'https://ror.org/04wr8sz35', 'no_lang_code', 1, 'https://ror.org/04wr8sz35 Petrol (Poland)'),
(74096, 'https://ror.org/04wrn8f94', 'en', 1, 'https://ror.org/04wrn8f94 Centre for Sustainable Energy Use in Food'),
(74097, 'https://ror.org/04wsd7x43', 'en', 1, 'https://ror.org/04wsd7x43 The Scottish Forestry Trust'),
(74098, 'https://ror.org/04wtyx265', 'no_lang_code', 1, 'https://ror.org/04wtyx265 Sprint (Poland)'),
(74099, 'https://ror.org/04wvz8b06', 'en', 1, 'https://ror.org/04wvz8b06 Hospitalfield'),
(74100, 'https://ror.org/04wx50v02', 'en', 1, 'https://ror.org/04wx50v02 Newark Air Museum'),
(74101, 'https://ror.org/04wxqpw15', 'en', 1, 'https://ror.org/04wxqpw15 Court of Appeal ąøØąø²ąø„ąø­ąøøąø—ąø˜ąø£ąø“ą¹Œ'),
(74102, 'https://ror.org/04wzaab37', 'en', 1, 'https://ror.org/04wzaab37 Delima Associates'),
(74103, 'https://ror.org/04x0n3178', 'es', 1, 'https://ror.org/04x0n3178 Instituto de BiologĆ­a Molecular y Celular de Rosario'),
(74104, 'https://ror.org/04x2dgq71', 'en', 1, 'https://ror.org/04x2dgq71 Provincial Polyclinical Hospital in Toruń Wojewódzki Szpital Zespolony im. L. Rydygiera w Toruniu'),
(74105, 'https://ror.org/04x2kaj78', 'no_lang_code', 1, 'https://ror.org/04x2kaj78 NajĆ­t Technologies (United States)'),
(74106, 'https://ror.org/04x31hn39', 'en', 1, 'https://ror.org/04x31hn39 Bangladesh Institute of Development Studies বাংলাদেশ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø গবেষণা ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø'),
(74107, 'https://ror.org/04x44n450', 'en', 1, 'https://ror.org/04x44n450 Justice Research and Statistics Association'),
(74108, 'https://ror.org/04x62fc64', 'no_lang_code', 1, 'https://ror.org/04x62fc64 Textile Recycling Association'),
(74109, 'https://ror.org/04x7abt37', 'en', 1, 'https://ror.org/04x7abt37 International University of Central Asia'),
(74110, 'https://ror.org/04x8c0q56', 'en', 1, 'https://ror.org/04x8c0q56 Committee on Radioactive Waste Management'),
(74111, 'https://ror.org/04x95c937', 'no_lang_code', 1, 'https://ror.org/04x95c937 Health and Education Research Management and Epidemiologic Services (United States)'),
(74112, 'https://ror.org/04x970698', 'en', 1, 'https://ror.org/04x970698 NonFerrous Materials Technology Development Centre'),
(74113, 'https://ror.org/04xawry97', 'en', 1, 'https://ror.org/04xawry97 Lincolnshire Partnership NHS Foundation Trust'),
(74114, 'https://ror.org/04xcr2824', 'en', 1, 'https://ror.org/04xcr2824 St. Anna Hospital'),
(74115, 'https://ror.org/04xf8jv21', 'es', 1, 'https://ror.org/04xf8jv21 Biblioteca Palafoxiana'),
(74116, 'https://ror.org/04xgczp37', 'en', 1, 'https://ror.org/04xgczp37 Centre for Computing History'),
(74117, 'https://ror.org/04xh5t898', 'en', 1, 'https://ror.org/04xh5t898 Egyptian Center for Culture and Arts'),
(74118, 'https://ror.org/04xjc6b56', 'en', 1, 'https://ror.org/04xjc6b56 Rescobie Loch Development Association'),
(74119, 'https://ror.org/04xm01g51', 'en', 1, 'https://ror.org/04xm01g51 Wrexham County Borough Museum & Archives'),
(74120, 'https://ror.org/04xp1hk04', 'en', 1, 'https://ror.org/04xp1hk04 Southern Africa Nazarene University'),
(74121, 'https://ror.org/04xpmqs18', 'no_lang_code', 1, 'https://ror.org/04xpmqs18 DayStar (United States)'),
(74122, 'https://ror.org/04xt6cc08', 'en', 1, 'https://ror.org/04xt6cc08 Second Air Division Memorial Library'),
(74123, 'https://ror.org/04xtpyw05', 'fr', 1, 'https://ror.org/04xtpyw05 Ɖcole Normale SupĆ©rieure, Ɖcole Normale SupĆ©rieure d''Abidjan'),
(74124, 'https://ror.org/04xv9k977', 'no_lang_code', 1, 'https://ror.org/04xv9k977 N5 Sensors (United States)'),
(74125, 'https://ror.org/04xvgmn72', 'en', 1, 'https://ror.org/04xvgmn72 Centre for Cultural Heritage Preservation Ł…Ų±ŁƒŲ² حفظ التراث Ų§Ł„Ų«Ł‚Ų§ŁŁŠ'),
(74126, 'https://ror.org/04y03rz94', 'no_lang_code', 1, 'https://ror.org/04y03rz94 Muquans (France)'),
(74127, 'https://ror.org/04y06jx93', 'en', 1, 'https://ror.org/04y06jx93 Cleantech Scandinavia'),
(74128, 'https://ror.org/04y159c60', 'en', 1, 'https://ror.org/04y159c60 Association for Young People’s Health'),
(74129, 'https://ror.org/04y1w8a25', 'no_lang_code', 1, 'https://ror.org/04y1w8a25 Marshall Motor Holdings (United Kingdom)'),
(74130, 'https://ror.org/04y2vsa64', 'no_lang_code', 1, 'https://ror.org/04y2vsa64 Hogan Lovells (United States)'),
(74131, 'https://ror.org/04y51qn38', 'en', 1, 'https://ror.org/04y51qn38 Centre for Cosmology and Particle Physics Phenomenology'),
(74132, 'https://ror.org/04y58vw51', 'en', 1, 'https://ror.org/04y58vw51 CarrotNewYork'),
(74133, 'https://ror.org/04y64y937', 'en', 1, 'https://ror.org/04y64y937 Kenya Human Rights Commission'),
(74134, 'https://ror.org/04y723v43', 'en', 1, 'https://ror.org/04y723v43 Driving Mobility'),
(74135, 'https://ror.org/04yc4x775', 'en', 1, 'https://ror.org/04yc4x775 Northern Rock Foundation'),
(74136, 'https://ror.org/04ycer023', 'en', 1, 'https://ror.org/04ycer023 Cardiovascular Medical Group'),
(74137, 'https://ror.org/04yd1f040', 'en', 1, 'https://ror.org/04yd1f040 Urban Design Research Institute'),
(74138, 'https://ror.org/04ydsm425', 'no_lang_code', 1, 'https://ror.org/04ydsm425 Enhanced Systems Consulting (United States)'),
(74139, 'https://ror.org/04yf6py31', 'en', 1, 'https://ror.org/04yf6py31 The Meththa Foundation'),
(74140, 'https://ror.org/04ygg1h35', 'en', 1, 'https://ror.org/04ygg1h35 Public Citizen'),
(74141, 'https://ror.org/04yk11f14', 'en', 1, 'https://ror.org/04yk11f14 Tibetan Academy of Social Science č„æč—č‡Ŗę²»åŒŗē¤¾ä¼šē§‘å­¦é™¢'),
(74142, 'https://ror.org/04ykwve34', 'en', 1, 'https://ror.org/04ykwve34 Saamarthya Foundation'),
(74143, 'https://ror.org/04ys74c57', 'en', 1, 'https://ror.org/04ys74c57 Western States Center'),
(74144, 'https://ror.org/04yt49153', 'no_lang_code', 1, 'https://ror.org/04yt49153 Micatu (United States)'),
(74145, 'https://ror.org/04yt64d76', 'no_lang_code', 1, 'https://ror.org/04yt64d76 Informa (Sweden)'),
(74146, 'https://ror.org/04yva1294', 'en', 1, 'https://ror.org/04yva1294 International Centre for Ethnic Studies ą¶¢ą¶±ą·€ą·ą¶»ą·Šą¶œą·’ą¶š ą¶…ą¶°ą·Šą¶ŗą¶ŗą¶± ą·ƒą¶³ą·„ą· ą¶¢ą·ą¶­ą·Šą¶ŗą¶±ą·Šą¶­ą¶» ą¶øą¶°ą·Šą¶ŗą·ƒą·Šą¶®ą·ą¶±ą¶ŗ'),
(74147, 'https://ror.org/04yvfxe52', 'en', 1, 'https://ror.org/04yvfxe52 Center for Responsible Travel'),
(74148, 'https://ror.org/04yw9z443', 'no_lang_code', 1, 'https://ror.org/04yw9z443 iTaukei Trust Fund Board'),
(74149, 'https://ror.org/04yws8253', 'no_lang_code', 1, 'https://ror.org/04yws8253 BuildSafe (Sweden)'),
(74150, 'https://ror.org/04yxq0914', 'no_lang_code', 1, 'https://ror.org/04yxq0914 Nexstar Media Group (United States)'),
(74151, 'https://ror.org/04yzyns28', 'es', 1, 'https://ror.org/04yzyns28 Hospital Regional de Talca'),
(74152, 'https://ror.org/04z020c77', 'en', 1, 'https://ror.org/04z020c77 Landscape Research & Management'),
(74153, 'https://ror.org/04z172717', 'en', 1, 'https://ror.org/04z172717 Iraqi Al-Amal Association Ų¬Ł…Ų¹ŁŠŲ© الامل Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ© - Ł…ŁƒŲŖŲØ كركوك'),
(74154, 'https://ror.org/04z5pp948', 'no_lang_code', 1, 'https://ror.org/04z5pp948 Skotan (Poland)'),
(74155, 'https://ror.org/04z5sh748', 'es', 1, 'https://ror.org/04z5sh748 Ministerio Público Fiscal de la Ciudad Autónoma de Buenos Aires'),
(74156, 'https://ror.org/04zajmz25', 'en', 1, 'https://ror.org/04zajmz25 Regional Inter-agency Task Team on Children and AIDS'),
(74157, 'https://ror.org/04zarx416', 'no_lang_code', 1, 'https://ror.org/04zarx416 Riela (Poland)'),
(74158, 'https://ror.org/04zay9103', 'en', 1, 'https://ror.org/04zay9103 The Trussell Trust'),
(74159, 'https://ror.org/04zb5v345', 'no_lang_code', 1, 'https://ror.org/04zb5v345 COSM Advanced Manufacturing Systems (United States)'),
(74160, 'https://ror.org/04zdent75', 'no_lang_code', 1, 'https://ror.org/04zdent75 Gem Power (United States)'),
(74161, 'https://ror.org/04zdqq152', 'en', 1, 'https://ror.org/04zdqq152 Senckenberg Deutsches Entomologisches Institut Senckenberg German Entomological Institute'),
(74162, 'https://ror.org/04zdyxh40', 'en', 1, 'https://ror.org/04zdyxh40 Kenya Land Alliance'),
(74163, 'https://ror.org/04zfskg78', 'pt', 1, 'https://ror.org/04zfskg78 Fórum Nacional pela Democratização da Comunicação'),
(74164, 'https://ror.org/04zhncz06', 'en', 1, 'https://ror.org/04zhncz06 Weight Concern'),
(74165, 'https://ror.org/04zjrqq94', 'en', 1, 'https://ror.org/04zjrqq94 George Sexton Associates'),
(74166, 'https://ror.org/04zmpab64', 'en', 1, 'https://ror.org/04zmpab64 International Association for the Study of Traditional Environments'),
(74167, 'https://ror.org/04zp3gp22', 'no_lang_code', 1, 'https://ror.org/04zp3gp22 ImpeDx Diagnostics (United States)'),
(74168, 'https://ror.org/04zpgzj77', 'en', 1, 'https://ror.org/04zpgzj77 South East Health Technologies Alliance'),
(74169, 'https://ror.org/04zqp3155', 'pt', 1, 'https://ror.org/04zqp3155 Movimento Interestadual das Quebradeiras de Coco BabaƧu'),
(74170, 'https://ror.org/04zsfh247', 'en', 1, 'https://ror.org/04zsfh247 Royal College of Occupational Therapists'),
(74171, 'https://ror.org/04zsmb304', 'no_lang_code', 1, 'https://ror.org/04zsmb304 Ambient Micro (United States)'),
(74172, 'https://ror.org/04zv6cm02', 'no_lang_code', 1, 'https://ror.org/04zv6cm02 Dignitana (Sweden)'),
(74173, 'https://ror.org/04zy5hd61', 'en', 1, 'https://ror.org/04zy5hd61 National District Attorneys Association'),
(74174, 'https://ror.org/04zyefw11', 'en', 1, 'https://ror.org/04zyefw11 Kern Community College District'),
(74175, 'https://ror.org/04zzb1s61', 'no_lang_code', 1, 'https://ror.org/04zzb1s61 Dyenamo (Sweden)'),
(74176, 'https://ror.org/0501kzx55', 'en', 1, 'https://ror.org/0501kzx55 Grantmakers for Effective Organizations'),
(74177, 'https://ror.org/05023n062', 'no_lang_code', 1, 'https://ror.org/05023n062 Energy Quest Technologies (United States)'),
(74178, 'https://ror.org/05025g024', 'en', 1, 'https://ror.org/05025g024 Indiana Criminal Justice Institute'),
(74179, 'https://ror.org/050351d24', 'en', 1, 'https://ror.org/050351d24 Borneo Orangutan Survival Foundation'),
(74180, 'https://ror.org/05057ay57', 'en', 1, 'https://ror.org/05057ay57 Missouri Budget Project'),
(74181, 'https://ror.org/05065r248', 'en', 1, 'https://ror.org/05065r248 Horn of Africa Press Institute'),
(74182, 'https://ror.org/0509fnv64', 'en', 1, 'https://ror.org/0509fnv64 League of Resident Theatres'),
(74183, 'https://ror.org/050a13t43', 'en', 1, 'https://ror.org/050a13t43 Moscow State University Филиал Московского Š³Š¾ŃŃƒŠ“арственного ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š° имени М.Š’. Ломоносова в гороГе Š”ŃƒŃˆŠ°Š½Š±Šµ'),
(74184, 'https://ror.org/050arpw16', 'en', 1, 'https://ror.org/050arpw16 British Dragonfly Society'),
(74185, 'https://ror.org/050ayhm33', 'en', 1, 'https://ror.org/050ayhm33 The Stables'),
(74186, 'https://ror.org/050b4xy13', 'no_lang_code', 1, 'https://ror.org/050b4xy13 BioFluidica (United States)'),
(74187, 'https://ror.org/050bxrz29', 'en', 1, 'https://ror.org/050bxrz29 Citizen Engagement Laboratory'),
(74188, 'https://ror.org/050c6pn54', 'en', 1, 'https://ror.org/050c6pn54 International Alliance on Natural Resources in Africa'),
(74189, 'https://ror.org/050ca4130', 'en', 1, 'https://ror.org/050ca4130 Namgyal Monastery Institute of Buddhist Studies Namgyal monastère Institut d''études bouddhistes'),
(74190, 'https://ror.org/050cfca74', 'en', 1, 'https://ror.org/050cfca74 World Bioenergy Association'),
(74191, 'https://ror.org/050dsb089', 'en', 1, 'https://ror.org/050dsb089 Colorado Organization for Latina Opportunity and Reproductive Rights'),
(74192, 'https://ror.org/050e1vh19', 'en', 1, 'https://ror.org/050e1vh19 Centre for Rural and Remote Mental Health'),
(74193, 'https://ror.org/050h8nq90', 'en', 1, 'https://ror.org/050h8nq90 Collaboration on International ICT Policy in East and Southern Africa'),
(74194, 'https://ror.org/050mver74', 'no_lang_code', 1, 'https://ror.org/050mver74 EBTIC'),
(74195, 'https://ror.org/050qmy682', 'es', 1, 'https://ror.org/050qmy682 Fundación Nacional para el Desarrollo'),
(74196, 'https://ror.org/050qymw35', 'no_lang_code', 1, 'https://ror.org/050qymw35 InTouch Health (United States)'),
(74197, 'https://ror.org/050rahh61', 'en', 1, 'https://ror.org/050rahh61 The W. Haywood Burns Institute'),
(74198, 'https://ror.org/050s60797', 'en', 1, 'https://ror.org/050s60797 Ministria e Kulturƫs, Rinisƫ dhe Sportit e Kosovƫs Ministry of Culture, Youth and Sport'),
(74199, 'https://ror.org/050skgy72', 'en', 1, 'https://ror.org/050skgy72 Playwrights Horizons'),
(74200, 'https://ror.org/050tnyq31', 'no_lang_code', 1, 'https://ror.org/050tnyq31 Certerra (United States)'),
(74201, 'https://ror.org/0510ctm72', 'es', 1, 'https://ror.org/0510ctm72 Centro de Investigación de la Caña de Azúcar de Colombia'),
(74202, 'https://ror.org/05125rf66', 'no_lang_code', 1, 'https://ror.org/05125rf66 Metabolic Nutritionals (United States)'),
(74203, 'https://ror.org/0515r3k27', 'no_lang_code', 1, 'https://ror.org/0515r3k27 Integration Innovation (United States)'),
(74204, 'https://ror.org/0517ad239', 'en', 1, 'https://ror.org/0517ad239 Cornwall Partnership NHS Foundation Trust'),
(74205, 'https://ror.org/051816580', 'en', 1, 'https://ror.org/051816580 Hackney Learning Trust'),
(74206, 'https://ror.org/05186xw97', 'no_lang_code', 1, 'https://ror.org/05186xw97 Polbud-Pomorze (Poland)'),
(74207, 'https://ror.org/051a5x257', 'en', 1, 'https://ror.org/051a5x257 Nepal Water Conservation Foundation'),
(74208, 'https://ror.org/051abd045', 'en', 1, 'https://ror.org/051abd045 The Pier Arts Centre'),
(74209, 'https://ror.org/051b0xe12', 'en', 1, 'https://ror.org/051b0xe12 Byggherrarna Sverige Swedish Construction Clients'),
(74210, 'https://ror.org/051b9wq78', 'no_lang_code', 1, 'https://ror.org/051b9wq78 Elicityl (France)'),
(74211, 'https://ror.org/051fwvb64', 'en', 1, 'https://ror.org/051fwvb64 Thackray Medical Museum'),
(74212, 'https://ror.org/051mvtt62', 'no_lang_code', 1, 'https://ror.org/051mvtt62 Maestro (Sweden)'),
(74213, 'https://ror.org/051n93m20', 'no_lang_code', 1, 'https://ror.org/051n93m20 Genpact (United States)'),
(74214, 'https://ror.org/051qp5024', 'no_lang_code', 1, 'https://ror.org/051qp5024 Hartsci (United States)'),
(74215, 'https://ror.org/051r7gk37', 'en', 1, 'https://ror.org/051r7gk37 Northern Ireland Housing Executive'),
(74216, 'https://ror.org/051tr9v76', 'en', 1, 'https://ror.org/051tr9v76 Oregon Center for Public Policy'),
(74217, 'https://ror.org/051twfb64', 'no_lang_code', 1, 'https://ror.org/051twfb64 Reece Innovation (United Kingdom)'),
(74218, 'https://ror.org/051twmh51', 'en', 1, 'https://ror.org/051twmh51 Aga Khan Foundation'),
(74219, 'https://ror.org/051x1jz81', 'en', 1, 'https://ror.org/051x1jz81 Leeds Community Foundation'),
(74220, 'https://ror.org/051xqea68', 'en', 1, 'https://ror.org/051xqea68 Moseley Community Development Trust'),
(74221, 'https://ror.org/051ytw456', 'pt', 1, 'https://ror.org/051ytw456 ANDI ANDI – Comunicación y Derechos'),
(74222, 'https://ror.org/051yxch97', 'no_lang_code', 1, 'https://ror.org/051yxch97 LTCalcoli (Italy)'),
(74223, 'https://ror.org/0521tgf76', 'en', 1, 'https://ror.org/0521tgf76 Cementitious Slag Makers Association'),
(74224, 'https://ror.org/052213k81', 'en', 1, 'https://ror.org/052213k81 Day One'),
(74225, 'https://ror.org/052530s92', 'en', 1, 'https://ror.org/052530s92 Brunelcare'),
(74226, 'https://ror.org/0525v4q94', 'en', 1, 'https://ror.org/0525v4q94 Royal School of Administration įžŸįž¶įž›įž¶įž—įž¼įž˜įž·įž“įŸ’įž‘įžšįžŠįŸ’įž‹įž”įž¶įž›'),
(74227, 'https://ror.org/05277x335', 'en', 1, 'https://ror.org/05277x335 Joint Institute for Computational Sciences'),
(74228, 'https://ror.org/0527t6d08', 'no_lang_code', 1, 'https://ror.org/0527t6d08 X-Code (Poland)'),
(74229, 'https://ror.org/05291f140', 'en', 1, 'https://ror.org/05291f140 Molteno Institute for Language and Literacy'),
(74230, 'https://ror.org/0529ngj48', 'en', 1, 'https://ror.org/0529ngj48 Big Science Suppliers Network'),
(74231, 'https://ror.org/052brmw32', 'en', 1, 'https://ror.org/052brmw32 Centro Feminista de Estudos e Assessoria Feminist Center for Studies and Advisory Services'),
(74232, 'https://ror.org/052bwdm80', 'en', 1, 'https://ror.org/052bwdm80 Bucks County Intermediate Unit'),
(74233, 'https://ror.org/052dx1v90', 'no_lang_code', 1, 'https://ror.org/052dx1v90 Chornobyl Center Š§Š¾Ń€Š½Š¾Š±ŠøŠ»ŃŒŃŃŒŠŗŠøŠ¹ центр'),
(74234, 'https://ror.org/052ff1r50', 'no_lang_code', 1, 'https://ror.org/052ff1r50 IC Tech (United States)'),
(74235, 'https://ror.org/052g82050', 'pt', 1, 'https://ror.org/052g82050 Instituto Akatu'),
(74236, 'https://ror.org/052gthd20', 'en', 1, 'https://ror.org/052gthd20 Mural Arts Philadelphia'),
(74237, 'https://ror.org/052hfgr76', 'no_lang_code', 1, 'https://ror.org/052hfgr76 MBC Pharma (United States)'),
(74238, 'https://ror.org/052kgwk49', 'no_lang_code', 1, 'https://ror.org/052kgwk49 NETGEAR (United States)'),
(74239, 'https://ror.org/052n05843', 'no_lang_code', 1, 'https://ror.org/052n05843 Osteotronix (United Kingdom)'),
(74240, 'https://ror.org/052n2hz50', 'en', 1, 'https://ror.org/052n2hz50 Port Washington Public Library'),
(74241, 'https://ror.org/052ndyr48', 'en', 1, 'https://ror.org/052ndyr48 Center on Policy Initiatives'),
(74242, 'https://ror.org/052pk7q80', 'en', 1, 'https://ror.org/052pk7q80 Alabama State Office of Governor'),
(74243, 'https://ror.org/052qx3616', 'no_lang_code', 1, 'https://ror.org/052qx3616 Hotto Link (Japan)'),
(74244, 'https://ror.org/052rhds27', 'en', 1, 'https://ror.org/052rhds27 Centre for Environmental Rights'),
(74245, 'https://ror.org/052rsaq92', 'no_lang_code', 1, 'https://ror.org/052rsaq92 PASSAsia (Sri Lanka)'),
(74246, 'https://ror.org/052rzq754', 'no_lang_code', 1, 'https://ror.org/052rzq754 Global Professional Consulting (United States)'),
(74247, 'https://ror.org/052s7ab91', 'no_lang_code', 1, 'https://ror.org/052s7ab91 Folded Structures (United States)'),
(74248, 'https://ror.org/052s8df17', 'no_lang_code', 1, 'https://ror.org/052s8df17 Lithium Power (United States)'),
(74249, 'https://ror.org/052zq7x94', 'pt', 1, 'https://ror.org/052zq7x94 Fundo Brasil, Fundo Brasil de Direitos Humanos'),
(74250, 'https://ror.org/0531tjg57', 'en', 1, 'https://ror.org/0531tjg57 Middlesex University'),
(74251, 'https://ror.org/053236z94', 'en', 1, 'https://ror.org/053236z94 City of Stoke-on-Trent Sixth Form College'),
(74252, 'https://ror.org/0532k3p48', 'en', 1, 'https://ror.org/0532k3p48 Liberty Hill'),
(74253, 'https://ror.org/05334he48', 'no_lang_code', 1, 'https://ror.org/05334he48 C4 Therapeutics (United States)'),
(74254, 'https://ror.org/0534yb097', 'no_lang_code', 1, 'https://ror.org/0534yb097 Enterprise Sciences (United States)'),
(74255, 'https://ror.org/05370f467', 'en', 1, 'https://ror.org/05370f467 Northwest Heart Clinical Research'),
(74256, 'https://ror.org/0538mca61', 'en', 1, 'https://ror.org/0538mca61 Align Economy Environment Equity'),
(74257, 'https://ror.org/0538ncp57', 'en', 1, 'https://ror.org/0538ncp57 Mount Sanford Tribal Consortium'),
(74258, 'https://ror.org/05395nj08', 'en', 1, 'https://ror.org/05395nj08 Civil Society Budget Advocacy Group'),
(74259, 'https://ror.org/0539c7x88', 'no_lang_code', 1, 'https://ror.org/0539c7x88 Madeleine Pharmaceuticals (United States)'),
(74260, 'https://ror.org/053bgz920', 'en', 1, 'https://ror.org/053bgz920 Amnesty International USA'),
(74261, 'https://ror.org/053br3t03', 'en', 1, 'https://ror.org/053br3t03 South Asians for Human Rights'),
(74262, 'https://ror.org/053f01012', 'no_lang_code', 1, 'https://ror.org/053f01012 Globalworks (Sweden)'),
(74263, 'https://ror.org/053fkzm08', 'en', 1, 'https://ror.org/053fkzm08 Gideon''s Promise');
INSERT INTO `rors` VALUES
(74264, 'https://ror.org/053gcq860', 'en', 1, 'https://ror.org/053gcq860 Wormingford Community Education Centre'),
(74265, 'https://ror.org/053k9sq83', 'no_lang_code', 1, 'https://ror.org/053k9sq83 Lumetrics (United States)'),
(74266, 'https://ror.org/053man137', 'en', 1, 'https://ror.org/053man137 Centre for Effective Dispute Resolution'),
(74267, 'https://ror.org/053mejc32', 'id', 1, 'https://ror.org/053mejc32 Dewan Kesenian Jakarta'),
(74268, 'https://ror.org/053pr7h46', 'en', 1, 'https://ror.org/053pr7h46 Association of Convenience Stores'),
(74269, 'https://ror.org/053rdtp97', 'en', 1, 'https://ror.org/053rdtp97 Artspace'),
(74270, 'https://ror.org/053v58q79', 'no_lang_code', 1, 'https://ror.org/053v58q79 Chalmers Ventures (Sweden)'),
(74271, 'https://ror.org/053vgma94', 'en', 1, 'https://ror.org/053vgma94 Centre for Global Equality'),
(74272, 'https://ror.org/053yfc731', 'no_lang_code', 1, 'https://ror.org/053yfc731 Fomos-Materials (Russia)'),
(74273, 'https://ror.org/053yqvn66', 'en', 1, 'https://ror.org/053yqvn66 English Folk Dance and Song Society'),
(74274, 'https://ror.org/053z1j925', 'no_lang_code', 1, 'https://ror.org/053z1j925 Digital Science Technologies (United States)'),
(74275, 'https://ror.org/0540yt557', 'no_lang_code', 1, 'https://ror.org/0540yt557 Sensefarm (Sweden)'),
(74276, 'https://ror.org/0542txc19', 'no_lang_code', 1, 'https://ror.org/0542txc19 Elforest Technologies (Sweden)'),
(74277, 'https://ror.org/0542z7581', 'no_lang_code', 1, 'https://ror.org/0542z7581 Front Range Engineering (United States)'),
(74278, 'https://ror.org/05431pf33', 'en', 1, 'https://ror.org/05431pf33 Shakespeare Globe Trust'),
(74279, 'https://ror.org/05434kd35', 'en', 1, 'https://ror.org/05434kd35 Portland Center Stage at The Armory'),
(74280, 'https://ror.org/0546ajs61', 'en', 1, 'https://ror.org/0546ajs61 The London College'),
(74281, 'https://ror.org/0546g4411', 'no_lang_code', 1, 'https://ror.org/0546g4411 Bergskraft Bergslagen (Sweden)'),
(74282, 'https://ror.org/054871422', 'en', 1, 'https://ror.org/054871422 Eureka'),
(74283, 'https://ror.org/054bz5192', 'en', 1, 'https://ror.org/054bz5192 The Cartoon Museum'),
(74284, 'https://ror.org/054dqap80', 'no_lang_code', 1, 'https://ror.org/054dqap80 Brainxell (United States)'),
(74285, 'https://ror.org/054fvwy19', 'en', 1, 'https://ror.org/054fvwy19 Ironbridge Gorge Museum Trust'),
(74286, 'https://ror.org/054h8jj30', 'en', 1, 'https://ror.org/054h8jj30 International Islamic Center for Population Studies and Research'),
(74287, 'https://ror.org/054h9pe78', 'en', 1, 'https://ror.org/054h9pe78 British Council for Offices'),
(74288, 'https://ror.org/054hq6n04', 'no_lang_code', 1, 'https://ror.org/054hq6n04 Advanced Medical Equipment (United Kingdom)'),
(74289, 'https://ror.org/054hzcj81', 'en', 1, 'https://ror.org/054hzcj81 Fintry Development Trust'),
(74290, 'https://ror.org/054j3ks98', 'no_lang_code', 1, 'https://ror.org/054j3ks98 Nuvia (United Kingdom)'),
(74291, 'https://ror.org/054pnzp38', 'no_lang_code', 1, 'https://ror.org/054pnzp38 BMSEED (United States)'),
(74292, 'https://ror.org/054px3h87', 'no_lang_code', 1, 'https://ror.org/054px3h87 Materials Resources (United States)'),
(74293, 'https://ror.org/054qp2w77', 'fr', 1, 'https://ror.org/054qp2w77 Institut des Hautes Ɖtudes du MinistĆØre de l''IntĆ©rieur'),
(74294, 'https://ror.org/054rgmw54', 'en', 1, 'https://ror.org/054rgmw54 Palli Karma Sahayak Foundation ą¦Ŗą¦²ą§ą¦²ą§€ ą¦•ą¦°ą§ą¦®-ą¦øą¦¹ą¦¾ą§Ÿą¦• ą¦«ą¦¾ą¦‰ą¦Øą§ą¦”ą§‡ą¦¶ą¦Øą„¤'),
(74295, 'https://ror.org/054rzgh78', 'en', 1, 'https://ror.org/054rzgh78 National Association of Funeral Directors'),
(74296, 'https://ror.org/054s1f192', 'no_lang_code', 1, 'https://ror.org/054s1f192 Post Bellum'),
(74297, 'https://ror.org/054snha28', 'en', 1, 'https://ror.org/054snha28 Reading International Solidarity Centre'),
(74298, 'https://ror.org/054v2h819', 'en', 1, 'https://ror.org/054v2h819 Instituto Procomum Procomum Institute'),
(74299, 'https://ror.org/054wvz232', 'en', 1, 'https://ror.org/054wvz232 Centre for Study of Society and Secularism'),
(74300, 'https://ror.org/054x00070', 'en', 1, 'https://ror.org/054x00070 Wisconsin Disability Association'),
(74301, 'https://ror.org/054xyqj29', 'en', 1, 'https://ror.org/054xyqj29 St. Vincent and the Grenadines Community College'),
(74302, 'https://ror.org/054yyyw60', 'no_lang_code', 1, 'https://ror.org/054yyyw60 Mada al-Carmel مدى Ų§Ł„ŁƒŲ±Ł…Ł„'),
(74303, 'https://ror.org/054z0bn29', 'en', 1, 'https://ror.org/054z0bn29 Austrian Foundation for Development Research Ɩsterreichische Forschungsstiftung für Internationale Entwicklung'),
(74304, 'https://ror.org/054zq1h88', 'en', 1, 'https://ror.org/054zq1h88 Railway Industry Association'),
(74305, 'https://ror.org/054zw5g61', 'de', 1, 'https://ror.org/054zw5g61 Jesuiten, Jesuitenkolleg'),
(74306, 'https://ror.org/05503ny65', 'it', 1, 'https://ror.org/05503ny65 Ospedale "Floraspe Renzetti"'),
(74307, 'https://ror.org/0550tq505', 'no_lang_code', 1, 'https://ror.org/0550tq505 Rolfes Henry (United States)'),
(74308, 'https://ror.org/0551yxg63', 'en', 1, 'https://ror.org/0551yxg63 Centre for Social Justice'),
(74309, 'https://ror.org/0552acy97', 'no_lang_code', 1, 'https://ror.org/0552acy97 AdƔmas Nano (United States)'),
(74310, 'https://ror.org/0552brw50', 'no_lang_code', 1, 'https://ror.org/0552brw50 AirLift Environmental (United States)'),
(74311, 'https://ror.org/0553f1x12', 'no_lang_code', 1, 'https://ror.org/0553f1x12 Advanced Fluidics (United States)'),
(74312, 'https://ror.org/0553s6b03', 'no_lang_code', 1, 'https://ror.org/0553s6b03 Aspin (United Kingdom)'),
(74313, 'https://ror.org/05558br18', 'no_lang_code', 1, 'https://ror.org/05558br18 Jan Biotech (United States)'),
(74314, 'https://ror.org/0555yg896', 'en', 1, 'https://ror.org/0555yg896 Asha Foundation'),
(74315, 'https://ror.org/0557gff25', 'en', 1, 'https://ror.org/0557gff25 Twaweza Communications'),
(74316, 'https://ror.org/0557mg878', 'en', 1, 'https://ror.org/0557mg878 Independent Institute for Social Policy ŠŠµŠ·Š°Š²ŠøŃŠøŠ¼Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ политики'),
(74317, 'https://ror.org/0558qfp88', 'no_lang_code', 1, 'https://ror.org/0558qfp88 Veridict (Sweden)'),
(74318, 'https://ror.org/055dkvv33', 'no_lang_code', 1, 'https://ror.org/055dkvv33 Zenergy (Sweden)'),
(74319, 'https://ror.org/055dwzk58', 'no_lang_code', 1, 'https://ror.org/055dwzk58 Topricin (United States)'),
(74320, 'https://ror.org/055es1h89', 'en', 1, 'https://ror.org/055es1h89 African Centre for Parliamentary Affairs'),
(74321, 'https://ror.org/055g1b266', 'no_lang_code', 1, 'https://ror.org/055g1b266 Energy Concepts (United States)'),
(74322, 'https://ror.org/055h9ry14', 'en', 1, 'https://ror.org/055h9ry14 RAC Foundation'),
(74323, 'https://ror.org/055jfyy72', 'en', 1, 'https://ror.org/055jfyy72 Center for Indonesian Veterinary Analytical Studies'),
(74324, 'https://ror.org/055kf5191', 'en', 1, 'https://ror.org/055kf5191 Fuping Development Institute åŒ—äŗ¬åÆŒå¹³å­¦ę ”'),
(74325, 'https://ror.org/055pc3y68', 'en', 1, 'https://ror.org/055pc3y68 Amina'),
(74326, 'https://ror.org/055qvdj66', 'no_lang_code', 1, 'https://ror.org/055qvdj66 MegaChips (United States)'),
(74327, 'https://ror.org/055srzn87', 'en', 1, 'https://ror.org/055srzn87 9to5'),
(74328, 'https://ror.org/055t40212', 'en', 1, 'https://ror.org/055t40212 Social Science Forum منتدى Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(74329, 'https://ror.org/055twxx49', 'no_lang_code', 1, 'https://ror.org/055twxx49 SMC (United Kingdom)'),
(74330, 'https://ror.org/055zpaa68', 'pt', 1, 'https://ror.org/055zpaa68 Centro Panamericano de Fiebre Aftosa'),
(74331, 'https://ror.org/0561xd336', 'no_lang_code', 1, 'https://ror.org/0561xd336 Miyazaki Enterprises (United States)'),
(74332, 'https://ror.org/0563brw86', 'en', 1, 'https://ror.org/0563brw86 Institute of Industry Analyst Relations'),
(74333, 'https://ror.org/05649qt81', 'no_lang_code', 1, 'https://ror.org/05649qt81 BiVACOR (United States)'),
(74334, 'https://ror.org/05661qy18', 'no_lang_code', 1, 'https://ror.org/05661qy18 Ballet HispƔnico (United States)'),
(74335, 'https://ror.org/0566x7w31', 'sv', 1, 'https://ror.org/0566x7w31 BrƤcke Diakoni'),
(74336, 'https://ror.org/0568d6a68', 'en', 1, 'https://ror.org/0568d6a68 St. Francis Referral Hospital'),
(74337, 'https://ror.org/0568zd681', 'no_lang_code', 1, 'https://ror.org/0568zd681 Backyard Brains (United States)'),
(74338, 'https://ror.org/056gaxr94', 'no_lang_code', 1, 'https://ror.org/056gaxr94 Cameca (United States)'),
(74339, 'https://ror.org/056hg4387', 'en', 1, 'https://ror.org/056hg4387 Shawlands Academy'),
(74340, 'https://ror.org/056hm0802', 'no_lang_code', 1, 'https://ror.org/056hm0802 Life Cycle Engineering (United States)'),
(74341, 'https://ror.org/056jpe255', 'no_lang_code', 1, 'https://ror.org/056jpe255 Automex (Poland)'),
(74342, 'https://ror.org/056n7tt65', 'en', 1, 'https://ror.org/056n7tt65 Coptic Evangelical Organization for Social Services Ų§Ł„Ł‚ŲØŲ·ŁŠŲ© Ų§Ł„Ų„Ł†Ų¬ŁŠŁ„ŁŠŲ© للخدمات Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© في ŲŖŁ‚'),
(74343, 'https://ror.org/056ph9112', 'en', 1, 'https://ror.org/056ph9112 Foundation for Common Land'),
(74344, 'https://ror.org/056qvg202', 'no_lang_code', 1, 'https://ror.org/056qvg202 Clock Spring (United States)'),
(74345, 'https://ror.org/056ve6962', 'fr', 1, 'https://ror.org/056ve6962 Centre National de Lutte Antiacridienne'),
(74346, 'https://ror.org/056wznz27', 'de', 1, 'https://ror.org/056wznz27 Landesamt für Denkmalpflege Sachsen'),
(74347, 'https://ror.org/056xtp403', 'en', 1, 'https://ror.org/056xtp403 Institute of Archeology and Ethnography Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ археологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø'),
(74348, 'https://ror.org/056ykyc11', 'no_lang_code', 1, 'https://ror.org/056ykyc11 Torbay Development Agency (United Kingdom)'),
(74349, 'https://ror.org/056ytj938', 'en', 1, 'https://ror.org/056ytj938 Coastal Cancer Center'),
(74350, 'https://ror.org/05701hm88', 'no_lang_code', 1, 'https://ror.org/05701hm88 Infinite Technologies (United States)'),
(74351, 'https://ror.org/0570trv98', 'en', 1, 'https://ror.org/0570trv98 Future Academy فيوتؓر Ų§ŁƒŲ§ŲÆŁŠŁ…Ł‰'),
(74352, 'https://ror.org/0571pz015', 'no_lang_code', 1, 'https://ror.org/0571pz015 VoicePIN.com (Poland)'),
(74353, 'https://ror.org/0572j1y15', 'en', 1, 'https://ror.org/0572j1y15 North Alabama Research Center'),
(74354, 'https://ror.org/05743ng93', 'en', 1, 'https://ror.org/05743ng93 Fife Coast and Countryside Trust'),
(74355, 'https://ror.org/0574xt008', 'no_lang_code', 1, 'https://ror.org/0574xt008 Kahoku Shimpō ę²³åŒ—ę–°å ±'),
(74356, 'https://ror.org/0575fjh40', 'en', 1, 'https://ror.org/0575fjh40 Kenya Association of Professional Counsellors'),
(74357, 'https://ror.org/057915t59', 'es', 1, 'https://ror.org/057915t59 Instituto de AgrobiotecnologĆ­a del Litoral'),
(74358, 'https://ror.org/05793mh68', 'no_lang_code', 1, 'https://ror.org/05793mh68 Kinetic Resolve (United States)'),
(74359, 'https://ror.org/057bhaf38', 'en', 1, 'https://ror.org/057bhaf38 Smuts House Museum'),
(74360, 'https://ror.org/057c5p638', 'en', 1, 'https://ror.org/057c5p638 Indira Gandhi Delhi Technical University for Women'),
(74361, 'https://ror.org/057d9q433', 'no_lang_code', 1, 'https://ror.org/057d9q433 Great Basin Data Recovery (United States)'),
(74362, 'https://ror.org/057e5gj07', 'no_lang_code', 1, 'https://ror.org/057e5gj07 Cobra Design & Engineering (United States)'),
(74363, 'https://ror.org/057eq1q68', 'en', 1, 'https://ror.org/057eq1q68 Ramblers'),
(74364, 'https://ror.org/057gnjm41', 'en', 1, 'https://ror.org/057gnjm41 The Environmental Foundation for Africa'),
(74365, 'https://ror.org/057kcg264', 'en', 1, 'https://ror.org/057kcg264 Freedom of the Press Foundation'),
(74366, 'https://ror.org/057mfeh70', 'no_lang_code', 1, 'https://ror.org/057mfeh70 Coreform (United States)'),
(74367, 'https://ror.org/057nt4d90', 'en', 1, 'https://ror.org/057nt4d90 British Hydropower Association'),
(74368, 'https://ror.org/057qey752', 'no_lang_code', 1, 'https://ror.org/057qey752 Sweheat & Cooling (Sweden)'),
(74369, 'https://ror.org/057rf8v56', 'no_lang_code', 1, 'https://ror.org/057rf8v56 American Maglev Technology (United States)'),
(74370, 'https://ror.org/057t4ts30', 'no_lang_code', 1, 'https://ror.org/057t4ts30 Igenbio (United States)'),
(74371, 'https://ror.org/057tdt975', 'en', 1, 'https://ror.org/057tdt975 University of Warwick Science Park'),
(74372, 'https://ror.org/057tkar12', 'en', 1, 'https://ror.org/057tkar12 Understanding Childhood Arthritis Network'),
(74373, 'https://ror.org/057v97d67', 'en', 1, 'https://ror.org/057v97d67 Chengdu Shuguang Community Development Capacity Building Center'),
(74374, 'https://ror.org/057y00943', 'no_lang_code', 1, 'https://ror.org/057y00943 Argos Intelligence (United States)'),
(74375, 'https://ror.org/057ydw805', 'no_lang_code', 1, 'https://ror.org/057ydw805 Shanghai Dramatic Arts Centre (China) äøŠęµ·čÆå‰§č‰ŗęœÆäø­åæƒ'),
(74376, 'https://ror.org/057zt9577', 'en', 1, 'https://ror.org/057zt9577 Putnoe Medical Centre'),
(74377, 'https://ror.org/058123a75', 'en', 1, 'https://ror.org/058123a75 Instituto Nacional de SismologĆ­a, VulcanologĆ­a, MeteorologĆ­a e HidrologĆ­a National Institute for Seismology, Vulcanology, Meteorology and Hydrology'),
(74378, 'https://ror.org/05813hx64', 'en', 1, 'https://ror.org/05813hx64 Centre for Indigenous Cultures of Peru Centro de Culturas IndĆ­genas del PerĆŗ'),
(74379, 'https://ror.org/0582veh46', 'no_lang_code', 1, 'https://ror.org/0582veh46 HarmonoLogic (United States)'),
(74380, 'https://ror.org/05831r008', 'de', 1, 'https://ror.org/05831r008 Institut für Zuckerrübenforschung'),
(74381, 'https://ror.org/05845zh49', 'no_lang_code', 1, 'https://ror.org/05845zh49 Rochester Precision Optics (United States)'),
(74382, 'https://ror.org/0584sxj05', 'en', 1, 'https://ror.org/0584sxj05 Metal Industries Research & Development Centre é‡‘å±¬å·„ę„­ē ”ē©¶ē™¼å±•äø­åæƒ'),
(74383, 'https://ror.org/058646248', 'no_lang_code', 1, 'https://ror.org/058646248 Gemini Computers (United States)'),
(74384, 'https://ror.org/0588yrd03', 'en', 1, 'https://ror.org/0588yrd03 Ministria e Arsimit, e Shkencƫs dhe e Teknologjisƫ Ministry of Education, Science and Technology'),
(74385, 'https://ror.org/0589qa052', 'en', 1, 'https://ror.org/0589qa052 Phu Yen University TrĘ°į»ng ĐẔi Hį»c PhĆŗ YĆŖn'),
(74386, 'https://ror.org/058bjkh55', 'no_lang_code', 1, 'https://ror.org/058bjkh55 Analysis, Integration & Design (United States)'),
(74387, 'https://ror.org/058c5e806', 'en', 1, 'https://ror.org/058c5e806 Forest Peoples Programme'),
(74388, 'https://ror.org/058efm270', 'en', 1, 'https://ror.org/058efm270 The Mill'),
(74389, 'https://ror.org/058ej4w72', 'no_lang_code', 1, 'https://ror.org/058ej4w72 Aptinyx (United States)'),
(74390, 'https://ror.org/058g9dj28', 'en', 1, 'https://ror.org/058g9dj28 Advanced Propulsion Centre'),
(74391, 'https://ror.org/058gtx933', 'en', 1, 'https://ror.org/058gtx933 Capital Academy of Finance and Humanities Š”Ń‚Š¾Š»ŠøŃ‡Š½Š°Ń Финансово-Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(74392, 'https://ror.org/058hheg54', 'en', 1, 'https://ror.org/058hheg54 Hamilton Multicultural Services Trust'),
(74393, 'https://ror.org/058m30p27', 'en', 1, 'https://ror.org/058m30p27 National Society for Earthquake Technology'),
(74394, 'https://ror.org/058n1t885', 'no_lang_code', 1, 'https://ror.org/058n1t885 Actoprobe (United States)'),
(74395, 'https://ror.org/058n53b84', 'en', 1, 'https://ror.org/058n53b84 Geographical Association'),
(74396, 'https://ror.org/058pb0b36', 'en', 1, 'https://ror.org/058pb0b36 State of Vermont Office of Governor'),
(74397, 'https://ror.org/058qzvd72', 'en', 1, 'https://ror.org/058qzvd72 Cyprus Arbitration & Mediation Centre'),
(74398, 'https://ror.org/058sdr222', 'en', 1, 'https://ror.org/058sdr222 Center for Public Policy Priorities'),
(74399, 'https://ror.org/058twjz75', 'no_lang_code', 1, 'https://ror.org/058twjz75 HyPerComp Engineering (United States)'),
(74400, 'https://ror.org/058vm0m82', 'pt', 1, 'https://ror.org/058vm0m82 Sindicato dos Trabalhadores Rurais de Caxias do Sul'),
(74401, 'https://ror.org/058yy5a17', 'en', 1, 'https://ror.org/058yy5a17 Urban Justice Center'),
(74402, 'https://ror.org/058zn7e64', 'no_lang_code', 1, 'https://ror.org/058zn7e64 Teraphysics (United States)'),
(74403, 'https://ror.org/058znqh71', 'en', 1, 'https://ror.org/058znqh71 Cranfield Trust'),
(74404, 'https://ror.org/058zx7d32', 'no_lang_code', 1, 'https://ror.org/058zx7d32 TESco Associates (United States)'),
(74405, 'https://ror.org/058zzep76', 'it', 1, 'https://ror.org/058zzep76 Museo Egizio'),
(74406, 'https://ror.org/0591ds558', 'en', 1, 'https://ror.org/0591ds558 Internal Displacement Monitoring Centre'),
(74407, 'https://ror.org/05927vd92', 'no_lang_code', 1, 'https://ror.org/05927vd92 Studio Olgoj Chorchoj'),
(74408, 'https://ror.org/0592ben86', 'en', 1, 'https://ror.org/0592ben86 Indian Institute of Public Health Gandhinagar ભારતીય જન ąŖøą«ąŖµąŖ¾ąŖøą«ąŖ„ ąŖøąŖ‚ąŖøą«ąŖ„ąŖ¾ąŖØ ગાંધીનગર'),
(74409, 'https://ror.org/05964ej87', 'no_lang_code', 1, 'https://ror.org/05964ej87 Akron Rubber Development Laboratory (United States)'),
(74410, 'https://ror.org/0596srd08', 'en', 1, 'https://ror.org/0596srd08 Powell Cotton Museum'),
(74411, 'https://ror.org/05974x792', 'es', 1, 'https://ror.org/05974x792 Red Universitaria Mutis'),
(74412, 'https://ror.org/0598sqh06', 'es', 1, 'https://ror.org/0598sqh06 Centro Regional de Derechos Humanos y Justicia de Género, Corporación Humanas'),
(74413, 'https://ror.org/059aemv20', 'en', 1, 'https://ror.org/059aemv20 National Association of Drug Court Professionals'),
(74414, 'https://ror.org/059cetm58', 'no_lang_code', 1, 'https://ror.org/059cetm58 Uniswed (Sweden)'),
(74415, 'https://ror.org/059d9my13', 'en', 1, 'https://ror.org/059d9my13 Centre for Women War Victims'),
(74416, 'https://ror.org/059dzmv47', 'no_lang_code', 1, 'https://ror.org/059dzmv47 UVElite (Sweden)'),
(74417, 'https://ror.org/059evmh03', 'no_lang_code', 1, 'https://ror.org/059evmh03 Hocuslocus (United States)'),
(74418, 'https://ror.org/059jmsh97', 'en', 1, 'https://ror.org/059jmsh97 Oxford Centre for Drug Delivery Devices'),
(74419, 'https://ror.org/059kvg223', 'no_lang_code', 1, 'https://ror.org/059kvg223 Hydromar (Poland)'),
(74420, 'https://ror.org/059ma6x24', 'no_lang_code', 1, 'https://ror.org/059ma6x24 Mod9 Technologies (United States)'),
(74421, 'https://ror.org/059mrwr24', 'no_lang_code', 1, 'https://ror.org/059mrwr24 The Medical Device (United Kingdom)'),
(74422, 'https://ror.org/059pfgk41', 'no_lang_code', 1, 'https://ror.org/059pfgk41 International Data Group (Sweden)'),
(74423, 'https://ror.org/059q04r73', 'en', 1, 'https://ror.org/059q04r73 Leeds College of Building'),
(74424, 'https://ror.org/059rzps67', 'en', 1, 'https://ror.org/059rzps67 Center for Khmer Studies'),
(74425, 'https://ror.org/059s6j071', 'en', 1, 'https://ror.org/059s6j071 China Classification Society äø­åœ‹čˆ¹ē“šē¤¾'),
(74426, 'https://ror.org/059tydn49', 'no_lang_code', 1, 'https://ror.org/059tydn49 Telvis (Poland)'),
(74427, 'https://ror.org/059v6k471', 'en', 1, 'https://ror.org/059v6k471 Dudley Associates'),
(74428, 'https://ror.org/059vdry28', 'en', 1, 'https://ror.org/059vdry28 Alternate Roots'),
(74429, 'https://ror.org/059wwav72', 'no_lang_code', 1, 'https://ror.org/059wwav72 M C I SantƩ Animale (Morocco)'),
(74430, 'https://ror.org/059ydbh22', 'no_lang_code', 1, 'https://ror.org/059ydbh22 Oxipit (Lithuania)'),
(74431, 'https://ror.org/05a0jk155', 'no_lang_code', 1, 'https://ror.org/05a0jk155 Innovative Materials & Processes (United States)'),
(74432, 'https://ror.org/05a0w0e26', 'en', 1, 'https://ror.org/05a0w0e26 Washington Glass School'),
(74433, 'https://ror.org/05a133z08', 'en', 1, 'https://ror.org/05a133z08 St Albans Museums'),
(74434, 'https://ror.org/05a1sck78', 'no_lang_code', 1, 'https://ror.org/05a1sck78 Alice Films (France)'),
(74435, 'https://ror.org/05a5vr330', 'no_lang_code', 1, 'https://ror.org/05a5vr330 Precipio (United States)'),
(74436, 'https://ror.org/05a885w72', 'en', 1, 'https://ror.org/05a885w72 Peace Museum'),
(74437, 'https://ror.org/05a8q5k94', 'en', 1, 'https://ror.org/05a8q5k94 Water Industry Forum'),
(74438, 'https://ror.org/05a9ar681', 'no_lang_code', 1, 'https://ror.org/05a9ar681 Descartes Labs (United States)'),
(74439, 'https://ror.org/05a9avq33', 'en', 1, 'https://ror.org/05a9avq33 Centre for Printing History and Culture'),
(74440, 'https://ror.org/05a9zc759', 'en', 1, 'https://ror.org/05a9zc759 Arts & Health South'),
(74441, 'https://ror.org/05acccr47', 'en', 1, 'https://ror.org/05acccr47 Judicial Yuan åøę³•é™¢'),
(74442, 'https://ror.org/05ae3z928', 'no_lang_code', 1, 'https://ror.org/05ae3z928 VoiceLab (Poland)'),
(74443, 'https://ror.org/05ae5sf68', 'en', 1, 'https://ror.org/05ae5sf68 China Population Welfare Foundation äø­å›½äŗŗå£ē¦åˆ©åŸŗé‡‘ä¼š'),
(74444, 'https://ror.org/05af7se92', 'en', 1, 'https://ror.org/05af7se92 Centre for Crime and Justice Studies'),
(74445, 'https://ror.org/05ahdap62', 'no_lang_code', 1, 'https://ror.org/05ahdap62 Taylor McKenzie (United Kingdom)'),
(74446, 'https://ror.org/05ahssc06', 'pt', 1, 'https://ror.org/05ahssc06 Instituto de Pesquisas e Estudos Afro Brasileiros'),
(74447, 'https://ror.org/05ajf5338', 'fr', 1, 'https://ror.org/05ajf5338 MinistĆØre des Affaires Ɖconomiques et de la Promotion des Secteurs Productifs'),
(74448, 'https://ror.org/05ak48w56', 'no_lang_code', 1, 'https://ror.org/05ak48w56 Materials Research Group (United States)'),
(74449, 'https://ror.org/05am5k237', 'en', 1, 'https://ror.org/05am5k237 Social Action'),
(74450, 'https://ror.org/05ap64c35', 'no_lang_code', 1, 'https://ror.org/05ap64c35 Harare Central Hospital'),
(74451, 'https://ror.org/05ar6z982', 'no_lang_code', 1, 'https://ror.org/05ar6z982 Antigua State College'),
(74452, 'https://ror.org/05av08j02', 'es', 1, 'https://ror.org/05av08j02 Instituto Nacional de Medicina Tropical'),
(74453, 'https://ror.org/05av8vw53', 'fr', 1, 'https://ror.org/05av8vw53 Centre International de PoƩsie Marseille'),
(74454, 'https://ror.org/05avpf476', 'en', 1, 'https://ror.org/05avpf476 Gujarat Institute of Desert Ecology'),
(74455, 'https://ror.org/05awv5h47', 'en', 1, 'https://ror.org/05awv5h47 Community Development Corporation of Brownsville'),
(74456, 'https://ror.org/05ay42146', 'en', 1, 'https://ror.org/05ay42146 Internet Service Providers Association'),
(74457, 'https://ror.org/05aytwf55', 'no_lang_code', 1, 'https://ror.org/05aytwf55 Owens Corning (Brazil)'),
(74458, 'https://ror.org/05azvrx95', 'sv', 1, 'https://ror.org/05azvrx95 Carlanderska Sjukhuset'),
(74459, 'https://ror.org/05b1g0108', 'en', 1, 'https://ror.org/05b1g0108 Michigan League for Public Policy'),
(74460, 'https://ror.org/05b1rj382', 'no_lang_code', 1, 'https://ror.org/05b1rj382 DHPC Technologies (United States)'),
(74461, 'https://ror.org/05b1ymr19', 'es', 1, 'https://ror.org/05b1ymr19 Universidad San Carlos'),
(74462, 'https://ror.org/05b2mvq54', 'en', 1, 'https://ror.org/05b2mvq54 Russian State University of Justice Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŸŃ€Š°Š²Š¾ŃŃƒŠ“ŠøŃ'),
(74463, 'https://ror.org/05b4wdn22', 'en', 1, 'https://ror.org/05b4wdn22 Ecological Continuity Trust'),
(74464, 'https://ror.org/05b9e3t13', 'no_lang_code', 1, 'https://ror.org/05b9e3t13 dTEC Systems (United States)'),
(74465, 'https://ror.org/05bbr1905', 'de', 1, 'https://ror.org/05bbr1905 Nephrologisches Zentrum Emsland'),
(74466, 'https://ror.org/05bc3r795', 'en', 1, 'https://ror.org/05bc3r795 UK Collaborative on Development Research'),
(74467, 'https://ror.org/05bdz6951', 'en', 1, 'https://ror.org/05bdz6951 Federal Senate Senado Federal'),
(74468, 'https://ror.org/05bf1hc74', 'no_lang_code', 1, 'https://ror.org/05bf1hc74 Lentex (Poland)'),
(74469, 'https://ror.org/05bg9sv56', 'en', 1, 'https://ror.org/05bg9sv56 Crossroads Youth & Community Association'),
(74470, 'https://ror.org/05bgbfq25', 'en', 1, 'https://ror.org/05bgbfq25 Public Works Department Buildings and Roads'),
(74471, 'https://ror.org/05bhhjy59', 'en', 1, 'https://ror.org/05bhhjy59 Queen Elizabeth’s Academy'),
(74472, 'https://ror.org/05bmf3j81', 'en', 1, 'https://ror.org/05bmf3j81 Clifton Suspension Bridge Trust'),
(74473, 'https://ror.org/05bmkf081', 'en', 1, 'https://ror.org/05bmkf081 Friends of Basrah Museum متحف البصرة'),
(74474, 'https://ror.org/05bnh6b29', 'en', 1, 'https://ror.org/05bnh6b29 Institute of Group Analysis'),
(74475, 'https://ror.org/05bp3t561', 'en', 1, 'https://ror.org/05bp3t561 The National Coalition on Black Civic Participation'),
(74476, 'https://ror.org/05bpgb671', 'en', 1, 'https://ror.org/05bpgb671 Emil Racovita Institute of Speleology Institutul De Speologie Emil Racoviţă'),
(74477, 'https://ror.org/05bpzf670', 'en', 1, 'https://ror.org/05bpzf670 Dutch Institute for Alcohol Policy Nederlands Instituut voor Alcoholbeleid'),
(74478, 'https://ror.org/05bs2v013', 'no_lang_code', 1, 'https://ror.org/05bs2v013 ItaĆŗsa (Brazil)'),
(74479, 'https://ror.org/05bte7q71', 'no_lang_code', 1, 'https://ror.org/05bte7q71 Cytoptics (United States)'),
(74480, 'https://ror.org/05btsbq39', 'en', 1, 'https://ror.org/05btsbq39 Institute of Chartered Accountants in England and Wales'),
(74481, 'https://ror.org/05bvpnp10', 'no_lang_code', 1, 'https://ror.org/05bvpnp10 HTD Biosystems (United States)'),
(74482, 'https://ror.org/05bvtbx10', 'en', 1, 'https://ror.org/05bvtbx10 The Patients Association'),
(74483, 'https://ror.org/05c0pz938', 'pt', 1, 'https://ror.org/05c0pz938 Associação Brasileira de Pesquisadores Negros'),
(74484, 'https://ror.org/05c1nzq18', 'en', 1, 'https://ror.org/05c1nzq18 Commission de la Capitale Nationale National Capital Commission'),
(74485, 'https://ror.org/05c35hf12', 'no_lang_code', 1, 'https://ror.org/05c35hf12 Elysium Therapeutics (United States)'),
(74486, 'https://ror.org/05c53qb74', 'en', 1, 'https://ror.org/05c53qb74 National Center for Technological Progress Viện ứng dỄng cĆ“ng nghệ'),
(74487, 'https://ror.org/05c5x4241', 'en', 1, 'https://ror.org/05c5x4241 Fair Share Education Fund'),
(74488, 'https://ror.org/05c64fx98', 'en', 1, 'https://ror.org/05c64fx98 Stockholm Makerspace'),
(74489, 'https://ror.org/05c6afn23', 'en', 1, 'https://ror.org/05c6afn23 Start'),
(74490, 'https://ror.org/05c7mzp22', 'pt', 1, 'https://ror.org/05c7mzp22 Museu Afro Brasil'),
(74491, 'https://ror.org/05caamn50', 'pt', 1, 'https://ror.org/05caamn50 Instituto para o Desenvolvimento do Jornalismo'),
(74492, 'https://ror.org/05cam0y32', 'no_lang_code', 1, 'https://ror.org/05cam0y32 NTS (United States)'),
(74493, 'https://ror.org/05cbsyd36', 'en', 1, 'https://ror.org/05cbsyd36 National Committee for Responsive Philanthropy'),
(74494, 'https://ror.org/05ccpr318', 'en', 1, 'https://ror.org/05ccpr318 British Meat Processors Association'),
(74495, 'https://ror.org/05cdbex20', 'en', 1, 'https://ror.org/05cdbex20 Agensi Angkasa Negara National Space Agency'),
(74496, 'https://ror.org/05cdt9d58', 'no_lang_code', 1, 'https://ror.org/05cdt9d58 Micro Vascular Theraputics (United States)'),
(74497, 'https://ror.org/05cfrq349', 'en', 1, 'https://ror.org/05cfrq349 Oregon Shakespeare Festival'),
(74498, 'https://ror.org/05ch53314', 'no_lang_code', 1, 'https://ror.org/05ch53314 Mevia (Sweden)'),
(74499, 'https://ror.org/05cjqhm25', 'no_lang_code', 1, 'https://ror.org/05cjqhm25 Agilent Technologies (Sweden)'),
(74500, 'https://ror.org/05cpqm110', 'no_lang_code', 1, 'https://ror.org/05cpqm110 Direct Electron (United States)'),
(74501, 'https://ror.org/05cqwch71', 'en', 1, 'https://ror.org/05cqwch71 North Tolsta Historical Society'),
(74502, 'https://ror.org/05cr6kr86', 'en', 1, 'https://ror.org/05cr6kr86 Centre for Environment Education'),
(74503, 'https://ror.org/05ct4s596', 'en', 1, 'https://ror.org/05ct4s596 PLA Academy of Military Science 中国人民解放军军事科学院'),
(74504, 'https://ror.org/05ct52702', 'en', 1, 'https://ror.org/05ct52702 Planned Environment Therapy Trust'),
(74505, 'https://ror.org/05ctt1694', 'no_lang_code', 1, 'https://ror.org/05ctt1694 Iamip (Sweden)'),
(74506, 'https://ror.org/05cvbfc52', 'en', 1, 'https://ror.org/05cvbfc52 National Korean American Service & Education Consortium'),
(74507, 'https://ror.org/05cwv3v76', 'no_lang_code', 1, 'https://ror.org/05cwv3v76 Gnosco (Sweden)'),
(74508, 'https://ror.org/05cx65996', 'en', 1, 'https://ror.org/05cx65996 Ocean Doctor'),
(74509, 'https://ror.org/05cxzzq07', 'en', 1, 'https://ror.org/05cxzzq07 Oldham Council'),
(74510, 'https://ror.org/05cz09y50', 'no_lang_code', 1, 'https://ror.org/05cz09y50 Yomiuri Group (Japan) čŖ­å£²ę–°čž'),
(74511, 'https://ror.org/05cz4ke42', 'en', 1, 'https://ror.org/05cz4ke42 Wildwood Trust'),
(74512, 'https://ror.org/05czbgw27', 'en', 1, 'https://ror.org/05czbgw27 Renewable Energy and Energy Efficiency Partnership'),
(74513, 'https://ror.org/05czncj82', 'no_lang_code', 1, 'https://ror.org/05czncj82 Lasanaa'),
(74514, 'https://ror.org/05d0gds53', 'en', 1, 'https://ror.org/05d0gds53 The Financial Inclusion Centre'),
(74515, 'https://ror.org/05d1twd90', 'en', 1, 'https://ror.org/05d1twd90 Angelman Syndrome Support Education & Research Trust'),
(74516, 'https://ror.org/05d4wmc20', 'en', 1, 'https://ror.org/05d4wmc20 City of Knowledge Ciudad del Saber'),
(74517, 'https://ror.org/05d6cw921', 'no_lang_code', 1, 'https://ror.org/05d6cw921 Nomura Plating (Japan)'),
(74518, 'https://ror.org/05d73n292', 'en', 1, 'https://ror.org/05d73n292 Uganda Association of Women Lawyers'),
(74519, 'https://ror.org/05d8p0254', 'es', 1, 'https://ror.org/05d8p0254 Hospital Regional de Arica Doctor Juan NoƩ Crevani'),
(74520, 'https://ror.org/05db2rf46', 'en', 1, 'https://ror.org/05db2rf46 Centre pour le contrÓle démocratique des forces armées Geneva Centre for the Democratic Control of Armed Forces Genfer Zentrum für die demokratische Kontrolle der Streitkräfte'),
(74521, 'https://ror.org/05ddcb021', 'en', 1, 'https://ror.org/05ddcb021 Bach Dancing and Dynamite Society'),
(74522, 'https://ror.org/05de8nz58', 'en', 1, 'https://ror.org/05de8nz58 Uganda National Council for Higher Education'),
(74523, 'https://ror.org/05dhgv769', 'en', 1, 'https://ror.org/05dhgv769 Campaign for Migrant Worker Justice'),
(74524, 'https://ror.org/05dhnhb13', 'no_lang_code', 1, 'https://ror.org/05dhnhb13 Naftogaz (Ukraine) ŠŠ°Ń„Ń‚Š¾Š³Š°Š· України'),
(74525, 'https://ror.org/05djs6314', 'en', 1, 'https://ror.org/05djs6314 Clinton Foundation'),
(74526, 'https://ror.org/05dk07j97', 'en', 1, 'https://ror.org/05dk07j97 Energy Technology Centre'),
(74527, 'https://ror.org/05dmkvt76', 'en', 1, 'https://ror.org/05dmkvt76 Wise Monkey Foundation'),
(74528, 'https://ror.org/05dmqh951', 'no_lang_code', 1, 'https://ror.org/05dmqh951 Engemasa (Brazil)'),
(74529, 'https://ror.org/05dnjaa32', 'es', 1, 'https://ror.org/05dnjaa32 Geophysical Institute of Peru Instituto GeofĆ­sico del PerĆŗ'),
(74530, 'https://ror.org/05dq77c70', 'no_lang_code', 1, 'https://ror.org/05dq77c70 Promote Medical (United Kingdom)'),
(74531, 'https://ror.org/05ds1cx37', 'no_lang_code', 1, 'https://ror.org/05ds1cx37 RKB Mainichi Broadcasting (Japan) RKBęÆŽę—„ę”¾é€ę Ŗå¼ä¼šē¤¾'),
(74532, 'https://ror.org/05dsek450', 'fr', 1, 'https://ror.org/05dsek450 HƩmostase et Dynamique Cellulaire Vasculaire'),
(74533, 'https://ror.org/05dv0q502', 'en', 1, 'https://ror.org/05dv0q502 Chartered Institute of Management Accountants'),
(74534, 'https://ror.org/05dvgxb17', 'en', 1, 'https://ror.org/05dvgxb17 The Center For Rural Development'),
(74535, 'https://ror.org/05dwbzt62', 'en', 1, 'https://ror.org/05dwbzt62 Samata Foundation समता ą¤«ą¤¾ą¤‰ą¤Øą„ą¤”ą„‡ą¤¶ą¤Ø'),
(74536, 'https://ror.org/05dxne691', 'en', 1, 'https://ror.org/05dxne691 European Public Health Association'),
(74537, 'https://ror.org/05dy2tj95', 'no_lang_code', 1, 'https://ror.org/05dy2tj95 Special Production Plant Gamrat (Poland) Zaklad Produkcji Specjalnej Gamrat'),
(74538, 'https://ror.org/05e0fad36', 'no_lang_code', 1, 'https://ror.org/05e0fad36 Shangri-la Institute é¦™ę ¼é‡Œę‹‰åÆęŒē»­ē¤¾åŒŗå­¦ä¼š'),
(74539, 'https://ror.org/05e357p42', 'fr', 1, 'https://ror.org/05e357p42 Centre National d''Art et de Culture Georges-Pompidou, Centre Pompidou'),
(74540, 'https://ror.org/05e371w82', 'en', 1, 'https://ror.org/05e371w82 Hereford Health and Safety Group'),
(74541, 'https://ror.org/05e3gef34', 'es', 1, 'https://ror.org/05e3gef34 Hospital Las Higueras'),
(74542, 'https://ror.org/05e475224', 'no_lang_code', 1, 'https://ror.org/05e475224 Cerberus Security Laboratories (United Kingdom)'),
(74543, 'https://ror.org/05e7atb82', 'en', 1, 'https://ror.org/05e7atb82 Directorate of Scheduled Tribes Development Department'),
(74544, 'https://ror.org/05e7psn47', 'en', 1, 'https://ror.org/05e7psn47 Center for Domestic Violence Prevention'),
(74545, 'https://ror.org/05e9tm050', 'no_lang_code', 1, 'https://ror.org/05e9tm050 Detectogen (United States)'),
(74546, 'https://ror.org/05ea00v44', 'no_lang_code', 1, 'https://ror.org/05ea00v44 AlphaMicron (United States)'),
(74547, 'https://ror.org/05ebjrj46', 'en', 1, 'https://ror.org/05ebjrj46 Nepal Centre for Contemporary Studies'),
(74548, 'https://ror.org/05ecntp89', 'en', 1, 'https://ror.org/05ecntp89 Department for Communities'),
(74549, 'https://ror.org/05ednck41', 'en', 1, 'https://ror.org/05ednck41 Brunei Polytechnic Politeknik Brunei'),
(74550, 'https://ror.org/05edrpk50', 'no_lang_code', 1, 'https://ror.org/05edrpk50 BCO (United States)'),
(74551, 'https://ror.org/05eh8wd69', 'no_lang_code', 1, 'https://ror.org/05eh8wd69 Dependable Computing (United States)'),
(74552, 'https://ror.org/05ej9rw09', 'no_lang_code', 1, 'https://ror.org/05ej9rw09 Capture Pharmaceuticals (United States)'),
(74553, 'https://ror.org/05ejdaa80', 'en', 1, 'https://ror.org/05ejdaa80 Khoj International Artists'' Association'),
(74554, 'https://ror.org/05ekxjh51', 'en', 1, 'https://ror.org/05ekxjh51 The Research Network'),
(74555, 'https://ror.org/05em9b770', 'en', 1, 'https://ror.org/05em9b770 Justice & Security Strategies'),
(74556, 'https://ror.org/05eqc4s73', 'en', 1, 'https://ror.org/05eqc4s73 Regional Plan Association'),
(74557, 'https://ror.org/05erea272', 'en', 1, 'https://ror.org/05erea272 Barrier Breakers Foundation'),
(74558, 'https://ror.org/05es54b96', 'pl', 1, 'https://ror.org/05es54b96 Specjalistyczny Szpital Miejski im. M. Kopernika'),
(74559, 'https://ror.org/05eva4f61', 'no_lang_code', 1, 'https://ror.org/05eva4f61 API Engineering (United States)'),
(74560, 'https://ror.org/05evqrm94', 'en', 1, 'https://ror.org/05evqrm94 Nehru Memorial Museum & Library ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤øą„ą¤®ą¤¾ą¤°ą¤• ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ और ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą¤¾ą¤²ą¤Æ'),
(74561, 'https://ror.org/05ez2gd39', 'en', 1, 'https://ror.org/05ez2gd39 Digital Engineering and Test Centre'),
(74562, 'https://ror.org/05f0grh52', 'sv', 1, 'https://ror.org/05f0grh52 Avfallshantering Ɩstra Skaraborg'),
(74563, 'https://ror.org/05f0ps005', 'en', 1, 'https://ror.org/05f0ps005 National Religious Campaign Against Torture'),
(74564, 'https://ror.org/05f0pxv25', 'en', 1, 'https://ror.org/05f0pxv25 Sunlight Foundation'),
(74565, 'https://ror.org/05f32fm39', 'en', 1, 'https://ror.org/05f32fm39 Hadejia Jama’are Komadugu Yobe Basin-Trust Fund'),
(74566, 'https://ror.org/05f4fay86', 'en', 1, 'https://ror.org/05f4fay86 Bethlehem Bible College'),
(74567, 'https://ror.org/05f4wkm56', 'en', 1, 'https://ror.org/05f4wkm56 The Anne Frank Trust UK'),
(74568, 'https://ror.org/05f5m2x04', 'no_lang_code', 1, 'https://ror.org/05f5m2x04 RAPID Biomedical (Germany)'),
(74569, 'https://ror.org/05f8ht569', 'en', 1, 'https://ror.org/05f8ht569 Institute of Bio-Sensing Technology'),
(74570, 'https://ror.org/05f8krt68', 'en', 1, 'https://ror.org/05f8krt68 Sigtuna Foundation Sigtunastiftelsen'),
(74571, 'https://ror.org/05f8y8t16', 'no_lang_code', 1, 'https://ror.org/05f8y8t16 Mentaid'),
(74572, 'https://ror.org/05fbshr33', 'en', 1, 'https://ror.org/05fbshr33 National Housing Conference'),
(74573, 'https://ror.org/05fdfq287', 'en', 1, 'https://ror.org/05fdfq287 Capital Museum é¦–éƒ½åšē‰©é¦†'),
(74574, 'https://ror.org/05fe6f045', 'es', 1, 'https://ror.org/05fe6f045 Centro de AnÔlisis e Investigación, Fundar'),
(74575, 'https://ror.org/05fexxx29', 'no_lang_code', 1, 'https://ror.org/05fexxx29 Lumen (United Kingdom)'),
(74576, 'https://ror.org/05ff8j166', 'id', 1, 'https://ror.org/05ff8j166 Pancur Kasih Association, Perkumpulan Pancur Kasih'),
(74577, 'https://ror.org/05fh3jm54', 'no_lang_code', 1, 'https://ror.org/05fh3jm54 Dayton T. Brown (United States)'),
(74578, 'https://ror.org/05fh4qp85', 'en', 1, 'https://ror.org/05fh4qp85 The Grierson Trust'),
(74579, 'https://ror.org/05fhfab69', 'en', 1, 'https://ror.org/05fhfab69 PĆ rlamaid na h-Alba, Scottish Parliament'),
(74580, 'https://ror.org/05fhxms97', 'en', 1, 'https://ror.org/05fhxms97 Dar Al-Kalima University College of Arts and Culture ŁƒŁ„ŁŠŲ© ŲÆŲ§Ų± Ų§Ł„ŁƒŁ„Ł…Ų© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„ŁŁ†ŁˆŁ† ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ©'),
(74581, 'https://ror.org/05fkmgk28', 'en', 1, 'https://ror.org/05fkmgk28 World Dementia Council'),
(74582, 'https://ror.org/05fkw0228', 'no_lang_code', 1, 'https://ror.org/05fkw0228 Delta International (Georgia) įƒ”įƒ”įƒ˜įƒž - ეეეტც įƒ“įƒ”įƒšįƒ¢įƒ'),
(74583, 'https://ror.org/05fmpsp49', 'no_lang_code', 1, 'https://ror.org/05fmpsp49 Spyra Primo (Poland)'),
(74584, 'https://ror.org/05fn6pg91', 'sv', 1, 'https://ror.org/05fn6pg91 Forska Sverige Research!Sweden'),
(74585, 'https://ror.org/05fnwbw69', 'en', 1, 'https://ror.org/05fnwbw69 Ministry of Foreign Affairs Ž‰ŽØŽ‚ŽØŽŽ°Ž“Ž°ŽƒŽ© Ž‡Ž®ŽŠŽ° ŽŠŽ®ŽƒŽØŽ‚Ž° Ž‡Ž¬ŽŠŽ¬Ž‡Ž§Ž’Ž°'),
(74586, 'https://ror.org/05fnxds15', 'fr', 1, 'https://ror.org/05fnxds15 Processus Infectieux en Milieu Insulaire Tropical'),
(74587, 'https://ror.org/05fp2br79', 'no_lang_code', 1, 'https://ror.org/05fp2br79 Anolytech (Sweden)'),
(74588, 'https://ror.org/05fpcda55', 'en', 1, 'https://ror.org/05fpcda55 Landscape Research Group'),
(74589, 'https://ror.org/05frbvt97', 'en', 1, 'https://ror.org/05frbvt97 The Bay Trust'),
(74590, 'https://ror.org/05frq8d16', 'en', 1, 'https://ror.org/05frq8d16 Modern Art Research Institute Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃŃƒŃ‡Š°ŃŠ½Š¾Š³Š¾ мистецтва'),
(74591, 'https://ror.org/05fsww483', 'sv', 1, 'https://ror.org/05fsww483 Sunderby Folkhƶgskola'),
(74592, 'https://ror.org/05ftdtn89', 'en', 1, 'https://ror.org/05ftdtn89 Greater Manchester Police Museum & Archives'),
(74593, 'https://ror.org/05fv6dp97', 'en', 1, 'https://ror.org/05fv6dp97 Grantmakers in the Arts'),
(74594, 'https://ror.org/05fwhaq12', 'en', 1, 'https://ror.org/05fwhaq12 Higher Education Statistics Agency'),
(74595, 'https://ror.org/05fxdg983', 'no_lang_code', 1, 'https://ror.org/05fxdg983 Coramed (United States)'),
(74596, 'https://ror.org/05fxzh978', 'fr', 1, 'https://ror.org/05fxzh978 Laboratoire Philippe Auguste'),
(74597, 'https://ror.org/05fy44g10', 'pl', 1, 'https://ror.org/05fy44g10 Beskidzkie Centrum Onkologii Szpital Miejski im. Jana Pawla II w Bielsku-Bialej'),
(74598, 'https://ror.org/05g6h0p60', 'en', 1, 'https://ror.org/05g6h0p60 International Graduate School of Leadership'),
(74599, 'https://ror.org/05g6xs632', 'no_lang_code', 1, 'https://ror.org/05g6xs632 LunaLEC (Sweden)'),
(74600, 'https://ror.org/05g6zgq36', 'en', 1, 'https://ror.org/05g6zgq36 Goethe Institute'),
(74601, 'https://ror.org/05g94gn19', 'no_lang_code', 1, 'https://ror.org/05g94gn19 Change.org (United States)'),
(74602, 'https://ror.org/05g94t868', 'en', 1, 'https://ror.org/05g94t868 Yorkshire Film Archive'),
(74603, 'https://ror.org/05g9paz74', 'en', 1, 'https://ror.org/05g9paz74 Oxford Spires Academy'),
(74604, 'https://ror.org/05g9s8164', 'no_lang_code', 1, 'https://ror.org/05g9s8164 Gallagher (United States)'),
(74605, 'https://ror.org/05gdhyx59', 'en', 1, 'https://ror.org/05gdhyx59 The Georgian Concert Society'),
(74606, 'https://ror.org/05ge23e39', 'no_lang_code', 1, 'https://ror.org/05ge23e39 Carritech Research (United Kingdom)'),
(74607, 'https://ror.org/05gfawf80', 'no_lang_code', 1, 'https://ror.org/05gfawf80 MH Acoustics (United States)'),
(74608, 'https://ror.org/05gggsd38', 'en', 1, 'https://ror.org/05gggsd38 Centre for Responsible Credit'),
(74609, 'https://ror.org/05ghfbv04', 'en', 1, 'https://ror.org/05ghfbv04 Sir James Knott Trust'),
(74610, 'https://ror.org/05gn3js43', 'no_lang_code', 1, 'https://ror.org/05gn3js43 DxTerity (United States)'),
(74611, 'https://ror.org/05gsn4d81', 'en', 1, 'https://ror.org/05gsn4d81 Delius Trust'),
(74612, 'https://ror.org/05gt2gw76', 'en', 1, 'https://ror.org/05gt2gw76 Educational Video Center'),
(74613, 'https://ror.org/05gv0tw76', 'no_lang_code', 1, 'https://ror.org/05gv0tw76 Eko-Energia (Poland)'),
(74614, 'https://ror.org/05gvbr510', 'en', 1, 'https://ror.org/05gvbr510 Staffordshire Film Archive'),
(74615, 'https://ror.org/05gvknb51', 'en', 1, 'https://ror.org/05gvknb51 Institute of Biomedical Physics Viện Vįŗ­t Lý Y Sinh'),
(74616, 'https://ror.org/05gwdv631', 'en', 1, 'https://ror.org/05gwdv631 Michigan Nonprofit Association'),
(74617, 'https://ror.org/05gwgrg94', 'no_lang_code', 1, 'https://ror.org/05gwgrg94 InflamaCore (United States)'),
(74618, 'https://ror.org/05gzzg873', 'en', 1, 'https://ror.org/05gzzg873 Institute for Voluntary Action Research'),
(74619, 'https://ror.org/05h0rfr48', 'en', 1, 'https://ror.org/05h0rfr48 Rural Self-Reliance Development Centre'),
(74620, 'https://ror.org/05h1ag309', 'de', 1, 'https://ror.org/05h1ag309 Marienhospital Gelsenkirchen'),
(74621, 'https://ror.org/05h1bjp83', 'no_lang_code', 1, 'https://ror.org/05h1bjp83 High Throughput Biology (United States)'),
(74622, 'https://ror.org/05h2nkq67', 'en', 1, 'https://ror.org/05h2nkq67 Association for Micro-Finance Institutions'),
(74623, 'https://ror.org/05h2sqk17', 'no_lang_code', 1, 'https://ror.org/05h2sqk17 Sewaco System (Poland)'),
(74624, 'https://ror.org/05h3cvr32', 'no_lang_code', 1, 'https://ror.org/05h3cvr32 Tedspaw (Poland)'),
(74625, 'https://ror.org/05h49ef04', 'en', 1, 'https://ror.org/05h49ef04 Association of Independent Crop Consultants'),
(74626, 'https://ror.org/05h4gap09', 'no_lang_code', 1, 'https://ror.org/05h4gap09 Innovative Design Engineeering & Analysis (United States)'),
(74627, 'https://ror.org/05h4kd271', 'en', 1, 'https://ror.org/05h4kd271 Watershed Center'),
(74628, 'https://ror.org/05h7w4033', 'no_lang_code', 1, 'https://ror.org/05h7w4033 Wematter (Sweden)'),
(74629, 'https://ror.org/05h8jev84', 'en', 1, 'https://ror.org/05h8jev84 JNCL-NCLIS'),
(74630, 'https://ror.org/05h9c9c83', 'en', 1, 'https://ror.org/05h9c9c83 Grupo de Información en Reproducción Elegida Information Group on Reproductive Choice'),
(74631, 'https://ror.org/05h9r7c77', 'en', 1, 'https://ror.org/05h9r7c77 National Museum of China äø­å›½å›½å®¶åšē‰©é¦†'),
(74632, 'https://ror.org/05hd64t60', 'en', 1, 'https://ror.org/05hd64t60 Movement Strategy Center'),
(74633, 'https://ror.org/05hdh9883', 'no_lang_code', 1, 'https://ror.org/05hdh9883 JK Research (United States)'),
(74634, 'https://ror.org/05hdhmf73', 'en', 1, 'https://ror.org/05hdhmf73 Association of British Professional Conference Organisers'),
(74635, 'https://ror.org/05hfzg379', 'no_lang_code', 1, 'https://ror.org/05hfzg379 Entech (United States)'),
(74636, 'https://ror.org/05hj4dk05', 'pt', 1, 'https://ror.org/05hj4dk05 Museu de Lamego'),
(74637, 'https://ror.org/05hjg4437', 'no_lang_code', 1, 'https://ror.org/05hjg4437 Evosens (France)'),
(74638, 'https://ror.org/05hkpfm52', 'en', 1, 'https://ror.org/05hkpfm52 Dharma Drum Institute of Liberal Arts 法鼓文理學院'),
(74639, 'https://ror.org/05hnrst22', 'en', 1, 'https://ror.org/05hnrst22 Westmill Sustainable Energy Trust'),
(74640, 'https://ror.org/05hpbxg82', 'no_lang_code', 1, 'https://ror.org/05hpbxg82 Nexteer Automotive (Poland)'),
(74641, 'https://ror.org/05hpw7264', 'pt', 1, 'https://ror.org/05hpw7264 CooxupƩ'),
(74642, 'https://ror.org/05hspww74', 'en', 1, 'https://ror.org/05hspww74 New Rules for Global Finance'),
(74643, 'https://ror.org/05hvdj453', 'no_lang_code', 1, 'https://ror.org/05hvdj453 Semcon (Sweden)'),
(74644, 'https://ror.org/05hy8nr95', 'no_lang_code', 1, 'https://ror.org/05hy8nr95 Io Therapeutics (United States)'),
(74645, 'https://ror.org/05j07r343', 'en', 1, 'https://ror.org/05j07r343 Ukrainian Academy of Agrarian Sciences Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ¾Ń— акаГемії аграрних наук'),
(74646, 'https://ror.org/05j0jp984', 'az', 1, 'https://ror.org/05j0jp984 Strateji Araşdırmalar Mərkəzi'),
(74647, 'https://ror.org/05j2afk93', 'no_lang_code', 1, 'https://ror.org/05j2afk93 Alpha Environmental (United States)'),
(74648, 'https://ror.org/05j2cds40', 'sv', 1, 'https://ror.org/05j2cds40 Industriella UtvecklingsCentra'),
(74649, 'https://ror.org/05j3nm367', 'en', 1, 'https://ror.org/05j3nm367 The Queen''s Foundation'),
(74650, 'https://ror.org/05j4kzc41', 'ro', 1, 'https://ror.org/05j4kzc41 Spitalul Clinic Județean de Urgență Cluj-Napoca'),
(74651, 'https://ror.org/05j5nk668', 'no_lang_code', 1, 'https://ror.org/05j5nk668 Kelly Space & Technology (United States)'),
(74652, 'https://ror.org/05j6qf006', 'fr', 1, 'https://ror.org/05j6qf006 Centre de Recherche en Ɖcologie ExpĆ©rimentale et PrĆ©dictive, Cereep Ecotron Ǝle-de-France'),
(74653, 'https://ror.org/05j6sj461', 'de', 1, 'https://ror.org/05j6sj461 Museum Strom und Leben'),
(74654, 'https://ror.org/05j704380', 'en', 1, 'https://ror.org/05j704380 International Media Support'),
(74655, 'https://ror.org/05j8hq318', 'no_lang_code', 1, 'https://ror.org/05j8hq318 Sdiptech (Sweden)'),
(74656, 'https://ror.org/05j9p9809', 'no_lang_code', 1, 'https://ror.org/05j9p9809 Marvel Medtech (United States)'),
(74657, 'https://ror.org/05jbsjy59', 'en', 1, 'https://ror.org/05jbsjy59 Iran Meteorological Organization سازمان Ł‡ŁˆŲ§Ų“Ł†Ų§Ų³ŪŒ Ų¬Ł…Ł‡ŁˆŲ±ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(74658, 'https://ror.org/05je89049', 'en', 1, 'https://ror.org/05je89049 Strategic Concepts in Organizing and Policy Education'),
(74659, 'https://ror.org/05jev2650', 'no_lang_code', 1, 'https://ror.org/05jev2650 Research Network Services (Germany)'),
(74660, 'https://ror.org/05jexhf05', 'no_lang_code', 1, 'https://ror.org/05jexhf05 John Regan Associates (United Kingdom)'),
(74661, 'https://ror.org/05jfg3b29', 'en', 1, 'https://ror.org/05jfg3b29 National Institute of Criminology OrszÔgos Kriminológiai Intézet'),
(74662, 'https://ror.org/05jgm8734', 'en', 1, 'https://ror.org/05jgm8734 National Literacy Trust'),
(74663, 'https://ror.org/05jh28309', 'en', 1, 'https://ror.org/05jh28309 Youth Development Administration é’å¹“ē™¼å±•ē½²'),
(74664, 'https://ror.org/05jh6qs86', 'en', 1, 'https://ror.org/05jh6qs86 Entrepreneurial Ecosystems'),
(74665, 'https://ror.org/05jk0sf34', 'no_lang_code', 1, 'https://ror.org/05jk0sf34 LW Microsystems (United States)'),
(74666, 'https://ror.org/05jn4m407', 'en', 1, 'https://ror.org/05jn4m407 Environmental Health Coalition'),
(74667, 'https://ror.org/05jnhtw66', 'en', 1, 'https://ror.org/05jnhtw66 King Hussein Foundation Ł…Ų¤Ų³Ų³Ų© Ų§Ł„Ł…Ł„Łƒ Ų§Ł„Ų­Ų³ŁŠŁ†'),
(74668, 'https://ror.org/05jp4w275', 'en', 1, 'https://ror.org/05jp4w275 Seethapathy Clinic and Hospital'),
(74669, 'https://ror.org/05jqw2r29', 'en', 1, 'https://ror.org/05jqw2r29 Rossdales Veterinary Surgeons'),
(74670, 'https://ror.org/05jskhr58', 'en', 1, 'https://ror.org/05jskhr58 Global Environmental Institute å…ØēƒēŽÆå¢ƒē ”ē©¶ę‰€'),
(74671, 'https://ror.org/05jsp9k64', 'en', 1, 'https://ror.org/05jsp9k64 Economic Research Centre İqtisadi Tədqiqatlar Mərkəzi'),
(74672, 'https://ror.org/05jv9s411', 'de', 1, 'https://ror.org/05jv9s411 Senckenberg Museum für Naturkunde Görlitz Senckenberg Museum of Natural History Görlitz'),
(74673, 'https://ror.org/05jwhr041', 'en', 1, 'https://ror.org/05jwhr041 Donetsk Christian University Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š„Ń€ŠøŃŃ‚ŠøŃŠ½ŃŃŒŠŗŠøŠ¹ Університет'),
(74674, 'https://ror.org/05jxn6e66', 'en', 1, 'https://ror.org/05jxn6e66 Ministry of Natural Resources and Environment ąŗąŗ°ąŗŠąŗ§ąŗ‡ ąŗŠąŗ±ąŗšąŗžąŗ°ąŗąŗ²ąŗąŗ­ąŗ™ ąŗ—ąŗ³ąŗ”ąŗ°ąŗŠąŗ²ąŗ” ແຄະ ąŗŖąŗ“ą»ˆąŗ‡ą»ąŗ§ąŗ”ąŗ„ą»‰ąŗ­ąŗ”'),
(74675, 'https://ror.org/05jz37f81', 'no_lang_code', 1, 'https://ror.org/05jz37f81 Consolidated Precision Products (Poland)'),
(74676, 'https://ror.org/05k0e7y54', 'en', 1, 'https://ror.org/05k0e7y54 Wallingford Museum'),
(74677, 'https://ror.org/05k1fbt59', 'en', 1, 'https://ror.org/05k1fbt59 Natural History Society of Northumbria'),
(74678, 'https://ror.org/05k3cs357', 'en', 1, 'https://ror.org/05k3cs357 Institute for the Study of Regionalism, Federalism and Self-Government Istituto di Studi sui Sistemi Regionali Federali e sulle Autonomie ''''Massimo Severo Giannini'''''),
(74679, 'https://ror.org/05k3f0d98', 'no_lang_code', 1, 'https://ror.org/05k3f0d98 All India Kisan Sabha अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ किसान सभा'),
(74680, 'https://ror.org/05k533e16', 'en', 1, 'https://ror.org/05k533e16 Vana Trust'),
(74681, 'https://ror.org/05k5x9q51', 'no_lang_code', 1, 'https://ror.org/05k5x9q51 Medfield Diagnostics (Sweden)'),
(74682, 'https://ror.org/05k6f1688', 'en', 1, 'https://ror.org/05k6f1688 Children’s Action Alliance'),
(74683, 'https://ror.org/05k6q1750', 'no_lang_code', 1, 'https://ror.org/05k6q1750 Advanced Numerical Solutions (United States)'),
(74684, 'https://ror.org/05k78rz60', 'no_lang_code', 1, 'https://ror.org/05k78rz60 BioHybrid Solutions (United States)'),
(74685, 'https://ror.org/05k7h3711', 'en', 1, 'https://ror.org/05k7h3711 BOTEC Analysis'),
(74686, 'https://ror.org/05k8q2h32', 'de', 1, 'https://ror.org/05k8q2h32 Institut für Dünnschichttechnologie und Mikrosensorik'),
(74687, 'https://ror.org/05k9ygy91', 'en', 1, 'https://ror.org/05k9ygy91 Dundee Carers Centre'),
(74688, 'https://ror.org/05kavjv60', 'en', 1, 'https://ror.org/05kavjv60 Centre for the Study of Violence and Reconciliation'),
(74689, 'https://ror.org/05kb1ze13', 'ro', 1, 'https://ror.org/05kb1ze13 Spitalul Clinic Judetean Mures'),
(74690, 'https://ror.org/05kc40c41', 'en', 1, 'https://ror.org/05kc40c41 Phoenix Futures'),
(74691, 'https://ror.org/05kcpgf42', 'en', 1, 'https://ror.org/05kcpgf42 Dudley Street Neighborhood Initiative'),
(74692, 'https://ror.org/05kcyf633', 'en', 1, 'https://ror.org/05kcyf633 The Stuttering Association for the Young'),
(74693, 'https://ror.org/05kd5pz92', 'en', 1, 'https://ror.org/05kd5pz92 Wales & West Housing'),
(74694, 'https://ror.org/05kdgvd18', 'en', 1, 'https://ror.org/05kdgvd18 Raspberry Pi Foundation'),
(74695, 'https://ror.org/05kge5x46', 'no_lang_code', 1, 'https://ror.org/05kge5x46 AgeSoya (Poland)'),
(74696, 'https://ror.org/05kgh1y38', 'es', 1, 'https://ror.org/05kgh1y38 Hospital de Carabineros');
INSERT INTO `rors` VALUES
(74697, 'https://ror.org/05kgk6p34', 'en', 1, 'https://ror.org/05kgk6p34 British Beet Research Organisation'),
(74698, 'https://ror.org/05kjkha92', 'en', 1, 'https://ror.org/05kjkha92 University Professional and Continuing Education Association'),
(74699, 'https://ror.org/05kjqse22', 'no_lang_code', 1, 'https://ror.org/05kjqse22 Deep Ocean Engineering (United States)'),
(74700, 'https://ror.org/05kjsed78', 'en', 1, 'https://ror.org/05kjsed78 International Press Center RƩsidence Palace - Internationales Pressezentrum'),
(74701, 'https://ror.org/05kk1wy06', 'no_lang_code', 1, 'https://ror.org/05kk1wy06 Greenerwave (France)'),
(74702, 'https://ror.org/05kks9d30', 'en', 1, 'https://ror.org/05kks9d30 Interdisciplinary Centre for Storage, Transformation and Upgrading of Thermal Energy'),
(74703, 'https://ror.org/05km3cw17', 'no_lang_code', 1, 'https://ror.org/05km3cw17 Prindit (Sweden)'),
(74704, 'https://ror.org/05kmqx952', 'no_lang_code', 1, 'https://ror.org/05kmqx952 Mettler-Toledo (United Kingdom)'),
(74705, 'https://ror.org/05kmtkm08', 'en', 1, 'https://ror.org/05kmtkm08 Community Life Project'),
(74706, 'https://ror.org/05kn8zy50', 'en', 1, 'https://ror.org/05kn8zy50 Socio-Economic Rights Institute of South Africa'),
(74707, 'https://ror.org/05kngp096', 'no_lang_code', 1, 'https://ror.org/05kngp096 Innerco (Poland)'),
(74708, 'https://ror.org/05kpepv05', 'en', 1, 'https://ror.org/05kpepv05 The Vega Science Trust'),
(74709, 'https://ror.org/05kpzb522', 'no_lang_code', 1, 'https://ror.org/05kpzb522 InVivo Analytics (United States)'),
(74710, 'https://ror.org/05kq90346', 'no_lang_code', 1, 'https://ror.org/05kq90346 Oberon (United States)'),
(74711, 'https://ror.org/05ks9jt06', 'en', 1, 'https://ror.org/05ks9jt06 Institute for Studies of Society, Economy and Environment Viện nghiĆŖn cứu XĆ£ hį»™i, Kinh tįŗæ vĆ  MĆ“i trĘ°į»ng'),
(74712, 'https://ror.org/05ksq6x45', 'en', 1, 'https://ror.org/05ksq6x45 American Society of Crime Laboratory Directors'),
(74713, 'https://ror.org/05kt1vc49', 'en', 1, 'https://ror.org/05kt1vc49 Eric Liddell Centre'),
(74714, 'https://ror.org/05kykkq24', 'no_lang_code', 1, 'https://ror.org/05kykkq24 Sensatech Designs (United Kingdom)'),
(74715, 'https://ror.org/05kz04g58', 'en', 1, 'https://ror.org/05kz04g58 Spacelink Learning Foundation'),
(74716, 'https://ror.org/05m1f6211', 'no_lang_code', 1, 'https://ror.org/05m1f6211 3DReid (United Kingdom)'),
(74717, 'https://ror.org/05m1yqp60', 'it', 1, 'https://ror.org/05m1yqp60 Istituto di Biometeorologia'),
(74718, 'https://ror.org/05m2dxd88', 'en', 1, 'https://ror.org/05m2dxd88 Peruvian Association of People Affected by Tuberculosis'),
(74719, 'https://ror.org/05m2t4v49', 'no_lang_code', 1, 'https://ror.org/05m2t4v49 Infinid Technologies (United States)'),
(74720, 'https://ror.org/05m2vsm26', 'pt', 1, 'https://ror.org/05m2vsm26 Sociedade Paraense de Defesa dos Direitos Humanos'),
(74721, 'https://ror.org/05m5awa65', 'en', 1, 'https://ror.org/05m5awa65 Group of Institutes, Foundations and Enterprises Grupo de Institutos FundaƧƵes e Empresas'),
(74722, 'https://ror.org/05m7btq67', 'pt', 1, 'https://ror.org/05m7btq67 Associação Brasileira do Papelão Ondulado'),
(74723, 'https://ror.org/05m7seh36', 'no_lang_code', 1, 'https://ror.org/05m7seh36 Mician (Germany)'),
(74724, 'https://ror.org/05m8k7t58', 'es', 1, 'https://ror.org/05m8k7t58 Instituto de Información Científica y Tecnológica'),
(74725, 'https://ror.org/05m905s87', 'en', 1, 'https://ror.org/05m905s87 Islamic Azad University, Masjed Soleyman دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ų³Ų¬ŲÆŲ³Ł„ŪŒŁ…Ų§Ł†'),
(74726, 'https://ror.org/05m97qg65', 'no_lang_code', 1, 'https://ror.org/05m97qg65 Analog Photonics (United States)'),
(74727, 'https://ror.org/05mbp3c63', 'no_lang_code', 1, 'https://ror.org/05mbp3c63 AnatomyWorks (United States)'),
(74728, 'https://ror.org/05mc59k43', 'no_lang_code', 1, 'https://ror.org/05mc59k43 Health Decision Technologies (United States)'),
(74729, 'https://ror.org/05md2f937', 'en', 1, 'https://ror.org/05md2f937 Consumer VOICE'),
(74730, 'https://ror.org/05mdmem94', 'en', 1, 'https://ror.org/05mdmem94 Newpark Music Centre'),
(74731, 'https://ror.org/05mef5z43', 'en', 1, 'https://ror.org/05mef5z43 Disabled Living Foundation'),
(74732, 'https://ror.org/05mf35n34', 'es', 1, 'https://ror.org/05mf35n34 Hospital Base'),
(74733, 'https://ror.org/05mgh6q46', 'en', 1, 'https://ror.org/05mgh6q46 MB Recycling'),
(74734, 'https://ror.org/05mk38d83', 'no_lang_code', 1, 'https://ror.org/05mk38d83 Codemill (Sweden)'),
(74735, 'https://ror.org/05mk46e13', 'de', 1, 'https://ror.org/05mk46e13 Institute for Fermentation and Biotechnology, Berlin Versuchs- und Lehranstalt für Brauerei in Berlin'),
(74736, 'https://ror.org/05mke6x94', 'en', 1, 'https://ror.org/05mke6x94 HƄll Sverige Rent Keep Sweden Tidy Foundation'),
(74737, 'https://ror.org/05mp3ea66', 'en', 1, 'https://ror.org/05mp3ea66 Sanctuary Housing'),
(74738, 'https://ror.org/05mq2av33', 'no_lang_code', 1, 'https://ror.org/05mq2av33 Dura Biotech (United States)'),
(74739, 'https://ror.org/05mrwj523', 'no_lang_code', 1, 'https://ror.org/05mrwj523 Innovation SkƄne (Sweden)'),
(74740, 'https://ror.org/05mryp106', 'no_lang_code', 1, 'https://ror.org/05mryp106 Sixera Pharma (Sweden)'),
(74741, 'https://ror.org/05mt2aq13', 'no_lang_code', 1, 'https://ror.org/05mt2aq13 Mimsi Materials (Sweden)'),
(74742, 'https://ror.org/05mt98789', 'no_lang_code', 1, 'https://ror.org/05mt98789 iStar'),
(74743, 'https://ror.org/05mw0ee88', 'en', 1, 'https://ror.org/05mw0ee88 Instytut im. Jerzego Grotowskiego The Grotowski Institute'),
(74744, 'https://ror.org/05mx2as72', 'es', 1, 'https://ror.org/05mx2as72 Comisión Mexicana de Defensa y Promoción de los Derechos Humanos'),
(74745, 'https://ror.org/05n134d59', 'no_lang_code', 1, 'https://ror.org/05n134d59 Halcyon Biomedical (United States)'),
(74746, 'https://ror.org/05n1eva55', 'no_lang_code', 1, 'https://ror.org/05n1eva55 SwissScientific Technologies (Switzerland)'),
(74747, 'https://ror.org/05n7d5e22', 'en', 1, 'https://ror.org/05n7d5e22 Centre for Innovation Policy and Governance'),
(74748, 'https://ror.org/05n7m1k33', 'en', 1, 'https://ror.org/05n7m1k33 Loutky v Nemocnici Puppets in Hospital'),
(74749, 'https://ror.org/05n8k2j59', 'en', 1, 'https://ror.org/05n8k2j59 Good Things Foundation'),
(74750, 'https://ror.org/05nawz538', 'en', 1, 'https://ror.org/05nawz538 Conect Association'),
(74751, 'https://ror.org/05nb6mm11', 'en', 1, 'https://ror.org/05nb6mm11 Adaptive Cognitive Systems'),
(74752, 'https://ror.org/05nf32d37', 'en', 1, 'https://ror.org/05nf32d37 Anglo-Norman Text Society'),
(74753, 'https://ror.org/05ngeka81', 'no_lang_code', 1, 'https://ror.org/05ngeka81 Alcis Sports (India)'),
(74754, 'https://ror.org/05nggxc52', 'en', 1, 'https://ror.org/05nggxc52 Marin Endocrine Care and Research'),
(74755, 'https://ror.org/05nhhvb42', 'en', 1, 'https://ror.org/05nhhvb42 Charles River Medical Associates'),
(74756, 'https://ror.org/05nk7f239', 'en', 1, 'https://ror.org/05nk7f239 Save the Rhino Trust'),
(74757, 'https://ror.org/05nr25f03', 'no_lang_code', 1, 'https://ror.org/05nr25f03 Translational Research Platform for Veterinary Biologicals (India)'),
(74758, 'https://ror.org/05nr7xa08', 'en', 1, 'https://ror.org/05nr7xa08 Institute of Polymers, Composites and Biomaterials Istituto dei Polimeri, Compositi e Biomateriali'),
(74759, 'https://ror.org/05nrj5p09', 'en', 1, 'https://ror.org/05nrj5p09 The Acronym Institute for Disarmament Diplomacy'),
(74760, 'https://ror.org/05nrxp832', 'en', 1, 'https://ror.org/05nrxp832 National Economic and Social Rights Initiative'),
(74761, 'https://ror.org/05ntjbh41', 'en', 1, 'https://ror.org/05ntjbh41 The Association of Boarding Schools'),
(74762, 'https://ror.org/05ntky919', 'no_lang_code', 1, 'https://ror.org/05ntky919 MD Informatics (United States)'),
(74763, 'https://ror.org/05nv0w557', 'en', 1, 'https://ror.org/05nv0w557 Terrence Higgins Trust'),
(74764, 'https://ror.org/05nwaqa23', 'no_lang_code', 1, 'https://ror.org/05nwaqa23 Celestica (Brasil)'),
(74765, 'https://ror.org/05nzf7q96', 'en', 1, 'https://ror.org/05nzf7q96 Institute of Biomembranes, Bioenergetics and Molecular Biotechnologies Istituto di Biomembrane, Bioenergetica e Biotecnologie Molecolari'),
(74766, 'https://ror.org/05nzhg723', 'no_lang_code', 1, 'https://ror.org/05nzhg723 Merx (Poland)'),
(74767, 'https://ror.org/05p0tmv18', 'en', 1, 'https://ror.org/05p0tmv18 Nubuke Foundation'),
(74768, 'https://ror.org/05p23jt70', 'no_lang_code', 1, 'https://ror.org/05p23jt70 Endovab Endovascular Development (Sweden)'),
(74769, 'https://ror.org/05p29gb14', 'en', 1, 'https://ror.org/05p29gb14 Jakarta Theological Seminary Sekolah Tinggi Filsafat Teologi Jakarta'),
(74770, 'https://ror.org/05p2t9n36', 'en', 1, 'https://ror.org/05p2t9n36 Anshan Hospital éžå±±åø‚é“č„æåŒ»é™¢'),
(74771, 'https://ror.org/05p4qy229', 'en', 1, 'https://ror.org/05p4qy229 Shahid Beheshti Teacher Training College دانؓگاه تربیت معلم Ų“Ł‡ŪŒŲÆ ŲØŁ‡Ų“ŲŖŪŒ مؓهد'),
(74772, 'https://ror.org/05p5d8426', 'en', 1, 'https://ror.org/05p5d8426 Centre for Performance Research'),
(74773, 'https://ror.org/05p6vxc40', 'no_lang_code', 1, 'https://ror.org/05p6vxc40 Amcom Communications (United States)'),
(74774, 'https://ror.org/05p8b7e93', 'no_lang_code', 1, 'https://ror.org/05p8b7e93 Frontier Aerospace Corporation (United States)'),
(74775, 'https://ror.org/05p8jxd51', 'en', 1, 'https://ror.org/05p8jxd51 Institut Hak Asasi Perempuan Institute for Women Human Rights'),
(74776, 'https://ror.org/05pbk0158', 'en', 1, 'https://ror.org/05pbk0158 Taiwan Shilin District Prosecutors Office č‡ŗē£å£«ęž—åœ°ę–¹ęŖ¢åÆŸē½²'),
(74777, 'https://ror.org/05pd4an24', 'en', 1, 'https://ror.org/05pd4an24 Skylight'),
(74778, 'https://ror.org/05pdy0618', 'no_lang_code', 1, 'https://ror.org/05pdy0618 Generation 2 Materials Technology (United States)'),
(74779, 'https://ror.org/05pef1484', 'de', 1, 'https://ror.org/05pef1484 Klinikum Links der Weser'),
(74780, 'https://ror.org/05pgctg85', 'no_lang_code', 1, 'https://ror.org/05pgctg85 Fiji Museum'),
(74781, 'https://ror.org/05pgvxf86', 'en', 1, 'https://ror.org/05pgvxf86 Innovation Centre for Sensor and Imaging Systems'),
(74782, 'https://ror.org/05pk1g903', 'no_lang_code', 1, 'https://ror.org/05pk1g903 Luraco Technologies (United States)'),
(74783, 'https://ror.org/05pms6260', 'en', 1, 'https://ror.org/05pms6260 Development Trusts Association Scotland'),
(74784, 'https://ror.org/05pp5m809', 'en', 1, 'https://ror.org/05pp5m809 Southern African Social Policy Research Institute'),
(74785, 'https://ror.org/05pq20j14', 'en', 1, 'https://ror.org/05pq20j14 National Museums of World Culture VƤrldskulturmuseerna'),
(74786, 'https://ror.org/05pqevf46', 'en', 1, 'https://ror.org/05pqevf46 Reconnecting America'),
(74787, 'https://ror.org/05prp0x93', 'no_lang_code', 1, 'https://ror.org/05prp0x93 Viscovery Software (Austria)'),
(74788, 'https://ror.org/05pt1n025', 'no_lang_code', 1, 'https://ror.org/05pt1n025 Biosensing Instrument (United States)'),
(74789, 'https://ror.org/05pvcyy59', 'en', 1, 'https://ror.org/05pvcyy59 Aarhus Business College Aarhus Handelsforenings Aftenskole'),
(74790, 'https://ror.org/05pvfsz50', 'en', 1, 'https://ror.org/05pvfsz50 Rochester Community and Technical College'),
(74791, 'https://ror.org/05pwnep21', 'no_lang_code', 1, 'https://ror.org/05pwnep21 Hytton Technologies (Sweden)'),
(74792, 'https://ror.org/05px4qj37', 'en', 1, 'https://ror.org/05px4qj37 Measures for Justice'),
(74793, 'https://ror.org/05pxqvv40', 'no_lang_code', 1, 'https://ror.org/05pxqvv40 Altmetric (United Kingdom)'),
(74794, 'https://ror.org/05pyyqe62', 'no_lang_code', 1, 'https://ror.org/05pyyqe62 Voice of America (United States)'),
(74795, 'https://ror.org/05pzd7w96', 'en', 1, 'https://ror.org/05pzd7w96 Asiaq Greenland Survey'),
(74796, 'https://ror.org/05pzhrr59', 'no_lang_code', 1, 'https://ror.org/05pzhrr59 Light Curable Coatings (United States)'),
(74797, 'https://ror.org/05q0txz94', 'es', 1, 'https://ror.org/05q0txz94 Jardƭn EtnobotƔnico de Oaxaca'),
(74798, 'https://ror.org/05q4wvm17', 'no_lang_code', 1, 'https://ror.org/05q4wvm17 Porslinsfabriken (Sweden)'),
(74799, 'https://ror.org/05q52xn14', 'es', 1, 'https://ror.org/05q52xn14 Instituto de Medicina y BiologĆ­a Experimental de Cuyo'),
(74800, 'https://ror.org/05q5sqy38', 'en', 1, 'https://ror.org/05q5sqy38 Slovak National Gallery SlovenskƔ nƔrodnƔ galƩria'),
(74801, 'https://ror.org/05q655z13', 'en', 1, 'https://ror.org/05q655z13 Omaha Community Foundation'),
(74802, 'https://ror.org/05q6snw96', 'en', 1, 'https://ror.org/05q6snw96 Council for Wales of Voluntary Youth Services'),
(74803, 'https://ror.org/05q6xw994', 'en', 1, 'https://ror.org/05q6xw994 International Research School of Planetary Sciences'),
(74804, 'https://ror.org/05q7g3j68', 'no_lang_code', 1, 'https://ror.org/05q7g3j68 CohesionForce (United States)'),
(74805, 'https://ror.org/05q846d47', 'en', 1, 'https://ror.org/05q846d47 Kyoto Costume Institute äŗ¬éƒ½ęœé£¾ę–‡åŒ–ē ”ē©¶č²”å›£'),
(74806, 'https://ror.org/05q86a639', 'no_lang_code', 1, 'https://ror.org/05q86a639 Levings & Associates (United States)'),
(74807, 'https://ror.org/05q86pe27', 'en', 1, 'https://ror.org/05q86pe27 Institute of Seismology Š”ŠµŠ¹ŃŠ¼Š¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(74808, 'https://ror.org/05q88x431', 'no_lang_code', 1, 'https://ror.org/05q88x431 BnearIT (Sweden)'),
(74809, 'https://ror.org/05q8qmk69', 'pl', 1, 'https://ror.org/05q8qmk69 Stowarzyszenie Radość Życia'),
(74810, 'https://ror.org/05q8qsw47', 'es', 1, 'https://ror.org/05q8qsw47 Católicas por el Derecho a Decidir'),
(74811, 'https://ror.org/05qbgtq98', 'no_lang_code', 1, 'https://ror.org/05qbgtq98 Minc (Sweden)'),
(74812, 'https://ror.org/05qd6x152', 'no_lang_code', 1, 'https://ror.org/05qd6x152 Cascade Drives (Sweden)'),
(74813, 'https://ror.org/05qdccy43', 'en', 1, 'https://ror.org/05qdccy43 Lexington Institute'),
(74814, 'https://ror.org/05qect977', 'no_lang_code', 1, 'https://ror.org/05qect977 Infibra (Brazil)'),
(74815, 'https://ror.org/05qgb2253', 'no_lang_code', 1, 'https://ror.org/05qgb2253 ABT Molecular Imaging (United States)'),
(74816, 'https://ror.org/05qgprp76', 'no_lang_code', 1, 'https://ror.org/05qgprp76 Enterprise Products (United States)'),
(74817, 'https://ror.org/05qgvw694', 'en', 1, 'https://ror.org/05qgvw694 South Western Housing Society'),
(74818, 'https://ror.org/05qgz8802', 'no_lang_code', 1, 'https://ror.org/05qgz8802 Ballas, Pelecanos & Associates (Greece)'),
(74819, 'https://ror.org/05qjcpt44', 'no_lang_code', 1, 'https://ror.org/05qjcpt44 Quantemplate (United Kingdom)'),
(74820, 'https://ror.org/05qjzj338', 'pl', 1, 'https://ror.org/05qjzj338 Lambda Warszawa, Stowarzyszenie Lambda Warszawa'),
(74821, 'https://ror.org/05qnpc206', 'en', 1, 'https://ror.org/05qnpc206 Museums Northumberland'),
(74822, 'https://ror.org/05qr1wq31', 'en', 1, 'https://ror.org/05qr1wq31 Ministry of Industries and Production'),
(74823, 'https://ror.org/05qs8zv09', 'en', 1, 'https://ror.org/05qs8zv09 Centre for Chinese Contemporary Art'),
(74824, 'https://ror.org/05qt0kq98', 'no_lang_code', 1, 'https://ror.org/05qt0kq98 BH Sensors (United States)'),
(74825, 'https://ror.org/05qt0wt98', 'en', 1, 'https://ror.org/05qt0wt98 Global Americans'),
(74826, 'https://ror.org/05qwbfs63', 'en', 1, 'https://ror.org/05qwbfs63 Iowa Diabetes and Endocrinology Research Center'),
(74827, 'https://ror.org/05qwhr533', 'en', 1, 'https://ror.org/05qwhr533 International Center for Transitional Justice'),
(74828, 'https://ror.org/05qx2fb65', 'no_lang_code', 1, 'https://ror.org/05qx2fb65 SDS Optic (Poland)'),
(74829, 'https://ror.org/05qxvxf91', 'en', 1, 'https://ror.org/05qxvxf91 iHealth'),
(74830, 'https://ror.org/05qxwht78', 'en', 1, 'https://ror.org/05qxwht78 Dmitri Hvorostovsky Siberian State Institute of Arts Дибирский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² имени Š”Š¼ŠøŃ‚Ń€ŠøŃ Єворостовского'),
(74831, 'https://ror.org/05qywhx26', 'en', 1, 'https://ror.org/05qywhx26 Ahmed Iqbal Ullah Education Trust'),
(74832, 'https://ror.org/05qzrmp73', 'no_lang_code', 1, 'https://ror.org/05qzrmp73 Instrumental Polymer Technologies (United States)'),
(74833, 'https://ror.org/05r04kd95', 'no_lang_code', 1, 'https://ror.org/05r04kd95 Dovzhenko Film Studios ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° ŠŗŃ–Š½Š¾ŃŃ‚ŃƒŠ“Ń–Ń Ń…ŃƒŠ“Š¾Š¶Š½Ń–Ń… Ń„Ń–Š»ŃŒŠ¼Ń–Š² імені Šž. Довженка'),
(74834, 'https://ror.org/05r0zxs60', 'no_lang_code', 1, 'https://ror.org/05r0zxs60 Qwed (Poland)'),
(74835, 'https://ror.org/05r288y75', 'en', 1, 'https://ror.org/05r288y75 Magic Lantern Movies'),
(74836, 'https://ror.org/05r2e4v78', 'de', 1, 'https://ror.org/05r2e4v78 BDH-Klinik Elzach'),
(74837, 'https://ror.org/05r33p655', 'en', 1, 'https://ror.org/05r33p655 Solas Festival'),
(74838, 'https://ror.org/05r592159', 'en', 1, 'https://ror.org/05r592159 The Ectopic Pregnancy Trust'),
(74839, 'https://ror.org/05r5t3g74', 'en', 1, 'https://ror.org/05r5t3g74 China National Silk Museum äø­å›½äøē»øåšē‰©é¦†'),
(74840, 'https://ror.org/05r66v627', 'en', 1, 'https://ror.org/05r66v627 The AD Centre'),
(74841, 'https://ror.org/05r8kh365', 'en', 1, 'https://ror.org/05r8kh365 Helen Bamber Foundation'),
(74842, 'https://ror.org/05r957b25', 'en', 1, 'https://ror.org/05r957b25 Citizenship, Studies, Research, Information and Action'),
(74843, 'https://ror.org/05r9kh419', 'en', 1, 'https://ror.org/05r9kh419 South Devon Prime Beef'),
(74844, 'https://ror.org/05r9ndf46', 'en', 1, 'https://ror.org/05r9ndf46 Al Sadu Society بيت Ų§Ł„Ų³ŲÆŁˆ'),
(74845, 'https://ror.org/05rahmh70', 'en', 1, 'https://ror.org/05rahmh70 United Kingdom Council for Psychotherapy'),
(74846, 'https://ror.org/05rczqt20', 'no_lang_code', 1, 'https://ror.org/05rczqt20 InertialWave (United States)'),
(74847, 'https://ror.org/05re8w736', 'no_lang_code', 1, 'https://ror.org/05re8w736 MEMStim (United States)'),
(74848, 'https://ror.org/05rf93e76', 'en', 1, 'https://ror.org/05rf93e76 Voluntary Health Scotland'),
(74849, 'https://ror.org/05rg4er48', 'no_lang_code', 1, 'https://ror.org/05rg4er48 Sullivan and Worcester (United States)'),
(74850, 'https://ror.org/05rjvjy05', 'en', 1, 'https://ror.org/05rjvjy05 Study Center for National Reconciliation Å tudijski center za narodno spravo'),
(74851, 'https://ror.org/05rkvrx68', 'en', 1, 'https://ror.org/05rkvrx68 Centre Hospitalier Universitaire of Butare University Teaching Hospital of Butare'),
(74852, 'https://ror.org/05rm7p925', 'en', 1, 'https://ror.org/05rm7p925 Raphael Samuel History Centre'),
(74853, 'https://ror.org/05rq0zb63', 'no_lang_code', 1, 'https://ror.org/05rq0zb63 iK9'),
(74854, 'https://ror.org/05rs58729', 'no_lang_code', 1, 'https://ror.org/05rs58729 Elbit Systems (United States)'),
(74855, 'https://ror.org/05rs7mx39', 'en', 1, 'https://ror.org/05rs7mx39 Richmond School and Sixth Form College'),
(74856, 'https://ror.org/05rsmmq85', 'no_lang_code', 1, 'https://ror.org/05rsmmq85 Fuss & O’Neill (United States)'),
(74857, 'https://ror.org/05rtd6p98', 'de', 1, 'https://ror.org/05rtd6p98 Gespag'),
(74858, 'https://ror.org/05rx18c05', 'no_lang_code', 1, 'https://ror.org/05rx18c05 Aster Medcity'),
(74859, 'https://ror.org/05rxmkq09', 'es', 1, 'https://ror.org/05rxmkq09 Fundación Ciencias Exactas y Naturales'),
(74860, 'https://ror.org/05rzjz037', 'en', 1, 'https://ror.org/05rzjz037 Combine Resource Institution'),
(74861, 'https://ror.org/05s04a010', 'en', 1, 'https://ror.org/05s04a010 Centre for Invasive Species Solution'),
(74862, 'https://ror.org/05s075877', 'en', 1, 'https://ror.org/05s075877 Movement for Freedom Движение «За ДвобоГу»'),
(74863, 'https://ror.org/05s0d1r23', 'no_lang_code', 1, 'https://ror.org/05s0d1r23 Zakłady Mechaniczne Tarnów (Poland)'),
(74864, 'https://ror.org/05s192022', 'en', 1, 'https://ror.org/05s192022 International Studio & Curatorial Program'),
(74865, 'https://ror.org/05s28rs88', 'no_lang_code', 1, 'https://ror.org/05s28rs88 Modertrans (Poland)'),
(74866, 'https://ror.org/05s2yxq27', 'en', 1, 'https://ror.org/05s2yxq27 Funder'),
(74867, 'https://ror.org/05s3f7036', 'en', 1, 'https://ror.org/05s3f7036 Policy Matters Ohio'),
(74868, 'https://ror.org/05s58ph78', 'no_lang_code', 1, 'https://ror.org/05s58ph78 Niki (Greece)'),
(74869, 'https://ror.org/05s6aww72', 'no_lang_code', 1, 'https://ror.org/05s6aww72 Zoetis (United Kingdom)'),
(74870, 'https://ror.org/05s8kep84', 'en', 1, 'https://ror.org/05s8kep84 Northern Ireland Civil Service StĆ”tseirbhĆ­s Thuaisceart Ɖireann'),
(74871, 'https://ror.org/05s9kz512', 'en', 1, 'https://ror.org/05s9kz512 Chawton House'),
(74872, 'https://ror.org/05s9qrg03', 'en', 1, 'https://ror.org/05s9qrg03 Equal Education'),
(74873, 'https://ror.org/05sb8nh13', 'en', 1, 'https://ror.org/05sb8nh13 The Military Intelligence Museum'),
(74874, 'https://ror.org/05sbd5m51', 'no_lang_code', 1, 'https://ror.org/05sbd5m51 Saintpro (Sweden)'),
(74875, 'https://ror.org/05sbkz135', 'no_lang_code', 1, 'https://ror.org/05sbkz135 LucidEnergy (United States)'),
(74876, 'https://ror.org/05sce7z09', 'en', 1, 'https://ror.org/05sce7z09 South Asian Americans Leading Together'),
(74877, 'https://ror.org/05sdqca31', 'en', 1, 'https://ror.org/05sdqca31 NHS Employers'),
(74878, 'https://ror.org/05sdt3y58', 'en', 1, 'https://ror.org/05sdt3y58 The Cabell Brand Center'),
(74879, 'https://ror.org/05sevfb19', 'en', 1, 'https://ror.org/05sevfb19 Museo Nazionale Preistorico Etnografico Luigi Pigorini Pigorini National Museum of Prehistory and Ethnography'),
(74880, 'https://ror.org/05shw9n80', 'en', 1, 'https://ror.org/05shw9n80 Mitchell Arts Centre'),
(74881, 'https://ror.org/05sjrzv10', 'en', 1, 'https://ror.org/05sjrzv10 National Deaf Children''s Society'),
(74882, 'https://ror.org/05smh3q72', 'no_lang_code', 1, 'https://ror.org/05smh3q72 JP Group (Brazil)'),
(74883, 'https://ror.org/05snn5v50', 'en', 1, 'https://ror.org/05snn5v50 National Institute for Defense Studies é˜²č”›ē ”ē©¶ę‰€'),
(74884, 'https://ror.org/05snnkz52', 'no_lang_code', 1, 'https://ror.org/05snnkz52 Koning (United States)'),
(74885, 'https://ror.org/05sp7aa03', 'no_lang_code', 1, 'https://ror.org/05sp7aa03 US-China Strong'),
(74886, 'https://ror.org/05ss64h09', 'en', 1, 'https://ror.org/05ss64h09 Green Cross International'),
(74887, 'https://ror.org/05sswkg52', 'en', 1, 'https://ror.org/05sswkg52 Agricultural Genetics Institute Viện Di truyền NĆ“ng nghiệp'),
(74888, 'https://ror.org/05svg6v21', 'en', 1, 'https://ror.org/05svg6v21 Royal Yachting Association'),
(74889, 'https://ror.org/05szkt337', 'en', 1, 'https://ror.org/05szkt337 Electric Infrastructure Security Council'),
(74890, 'https://ror.org/05t02jp64', 'en', 1, 'https://ror.org/05t02jp64 National Housing Trust'),
(74891, 'https://ror.org/05t3tvt21', 'en', 1, 'https://ror.org/05t3tvt21 Asociación MeetShareDance MeetShareDance Association'),
(74892, 'https://ror.org/05t4k0m36', 'no_lang_code', 1, 'https://ror.org/05t4k0m36 SHL Group (Taiwan)'),
(74893, 'https://ror.org/05t5az281', 'en', 1, 'https://ror.org/05t5az281 Mothering Justice'),
(74894, 'https://ror.org/05t61hc94', 'en', 1, 'https://ror.org/05t61hc94 The Center for Victims of Torture'),
(74895, 'https://ror.org/05t6aan57', 'no_lang_code', 1, 'https://ror.org/05t6aan57 Stalprodukt (Poland)'),
(74896, 'https://ror.org/05t7k1t84', 'en', 1, 'https://ror.org/05t7k1t84 Community Media Association'),
(74897, 'https://ror.org/05t90a350', 'en', 1, 'https://ror.org/05t90a350 Fab Foundation'),
(74898, 'https://ror.org/05t952114', 'en', 1, 'https://ror.org/05t952114 Sensory Support Service'),
(74899, 'https://ror.org/05t9ac381', 'en', 1, 'https://ror.org/05t9ac381 MuseumNext'),
(74900, 'https://ror.org/05tay5389', 'no_lang_code', 1, 'https://ror.org/05tay5389 Cirrus Aircraft (United States)'),
(74901, 'https://ror.org/05tbdj203', 'en', 1, 'https://ror.org/05tbdj203 Polistovsky National Nature Reserve ŠŸŠ¾Š»ŠøŃŃ‚Š¾Š²ŃŠŗŠøŠ¹ заповеГник'),
(74902, 'https://ror.org/05tbx9d85', 'no_lang_code', 1, 'https://ror.org/05tbx9d85 Wijeya Newspapers (Sri Lanka)'),
(74903, 'https://ror.org/05tc5ha67', 'en', 1, 'https://ror.org/05tc5ha67 EARN'),
(74904, 'https://ror.org/05tcphk02', 'en', 1, 'https://ror.org/05tcphk02 British Institute of Facilities Management'),
(74905, 'https://ror.org/05tcv8k56', 'en', 1, 'https://ror.org/05tcv8k56 California Institute for Behavioral Health Solutions'),
(74906, 'https://ror.org/05tcvhs47', 'no_lang_code', 1, 'https://ror.org/05tcvhs47 Microwave Products and Technology (United States)'),
(74907, 'https://ror.org/05tcyv616', 'es', 1, 'https://ror.org/05tcyv616 Instituto Superior Tecnológico de Artes del Ecuador'),
(74908, 'https://ror.org/05td67m16', 'no_lang_code', 1, 'https://ror.org/05td67m16 Fluid Synchrony (United States)'),
(74909, 'https://ror.org/05tekqt96', 'en', 1, 'https://ror.org/05tekqt96 National Laboratory for Superconductivity č¶…åÆ¼å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(74910, 'https://ror.org/05tf4ye04', 'no_lang_code', 1, 'https://ror.org/05tf4ye04 Laipac Technology (Canada)'),
(74911, 'https://ror.org/05thm6q88', 'no_lang_code', 1, 'https://ror.org/05thm6q88 IBM (Brazil)'),
(74912, 'https://ror.org/05tje4e72', 'en', 1, 'https://ror.org/05tje4e72 Solidarity and Action Against the HIV Infection in India'),
(74913, 'https://ror.org/05tnmhm33', 'en', 1, 'https://ror.org/05tnmhm33 Employment Agency'),
(74914, 'https://ror.org/05tp36v93', 'en', 1, 'https://ror.org/05tp36v93 Advanced Center for Water Resources Development and Management'),
(74915, 'https://ror.org/05tp3m188', 'en', 1, 'https://ror.org/05tp3m188 Bandaranaike Centre for International Studies'),
(74916, 'https://ror.org/05tq87k41', 'en', 1, 'https://ror.org/05tq87k41 Sydney Living Museums'),
(74917, 'https://ror.org/05ts3jd18', 'no_lang_code', 1, 'https://ror.org/05ts3jd18 Lumme Labs (United States)'),
(74918, 'https://ror.org/05ts5ga89', 'no_lang_code', 1, 'https://ror.org/05ts5ga89 Anton Paar (United States)'),
(74919, 'https://ror.org/05ts8kw37', 'pt', 1, 'https://ror.org/05ts8kw37 Instituto de Terras do ParĆ”'),
(74920, 'https://ror.org/05ttdrn83', 'en', 1, 'https://ror.org/05ttdrn83 Den Haag Centrum voor Strategische Studies The Hague Centre for Strategic Studies'),
(74921, 'https://ror.org/05v3ktf05', 'en', 1, 'https://ror.org/05v3ktf05'),
(74922, 'https://ror.org/05v75d484', 'no_lang_code', 1, 'https://ror.org/05v75d484 Angus Bela Vista PecuƔria Central Bela Vista (Brazil)'),
(74923, 'https://ror.org/05v99m436', 'en', 1, 'https://ror.org/05v99m436 People''s History Museum'),
(74924, 'https://ror.org/05v9zxy89', 'en', 1, 'https://ror.org/05v9zxy89 Georgia Stand-Up'),
(74925, 'https://ror.org/05va3v984', 'no_lang_code', 1, 'https://ror.org/05va3v984 Expedition Technology (United States)'),
(74926, 'https://ror.org/05vcmd458', 'en', 1, 'https://ror.org/05vcmd458 National Childbirth Trust'),
(74927, 'https://ror.org/05vd07545', 'no_lang_code', 1, 'https://ror.org/05vd07545 Filene'),
(74928, 'https://ror.org/05vfv3b25', 'no_lang_code', 1, 'https://ror.org/05vfv3b25 ArcelorMittal (Brazil)'),
(74929, 'https://ror.org/05vg9cw43', 'fr', 1, 'https://ror.org/05vg9cw43 Laboratoire de GĆ©ologie de l’École Normale SupĆ©rieure'),
(74930, 'https://ror.org/05vh42w24', 'no_lang_code', 1, 'https://ror.org/05vh42w24 Gaia Herbs (United States)'),
(74931, 'https://ror.org/05vhsk894', 'no_lang_code', 1, 'https://ror.org/05vhsk894 ChromaTan'),
(74932, 'https://ror.org/05vmv7z45', 'en', 1, 'https://ror.org/05vmv7z45 Arkansas Insurance Department'),
(74933, 'https://ror.org/05vmzg372', 'no_lang_code', 1, 'https://ror.org/05vmzg372 Villares Metals (Brasil)'),
(74934, 'https://ror.org/05vng4k71', 'en', 1, 'https://ror.org/05vng4k71 Kansas Office of the Governor'),
(74935, 'https://ror.org/05vpe6993', 'en', 1, 'https://ror.org/05vpe6993 Museum of East Anglian Life'),
(74936, 'https://ror.org/05vr51226', 'en', 1, 'https://ror.org/05vr51226 Research and Information Centre Memorial ŠŠ°ŃƒŃ‡Š½Š¾-информационный центр ŠœŠµŠ¼Š¾Ń€ŠøŠ°Š»'),
(74937, 'https://ror.org/05vvtz217', 'en', 1, 'https://ror.org/05vvtz217 Centre for Women''s Development Studies'),
(74938, 'https://ror.org/05vz90k92', 'fr', 1, 'https://ror.org/05vz90k92 Bibliothèque d''Agglomération du Pays de Saint-Omer'),
(74939, 'https://ror.org/05w0mz683', 'no_lang_code', 1, 'https://ror.org/05w0mz683 Juniper Industries (United States)'),
(74940, 'https://ror.org/05w0zaf96', 'en', 1, 'https://ror.org/05w0zaf96 International Hydropower Association'),
(74941, 'https://ror.org/05w58gm09', 'no_lang_code', 1, 'https://ror.org/05w58gm09 Fifth Gait Technologies (United States)'),
(74942, 'https://ror.org/05w5q8v72', 'no_lang_code', 1, 'https://ror.org/05w5q8v72 Create (Sweden)'),
(74943, 'https://ror.org/05w603h94', 'pl', 1, 'https://ror.org/05w603h94 Instytut Badań Rynku, Konsumpcji i Koniunktur'),
(74944, 'https://ror.org/05w78km23', 'pt', 1, 'https://ror.org/05w78km23 Instituto Brasileiro de AnƔlises Sociais e EconƓmicas'),
(74945, 'https://ror.org/05w7dft64', 'en', 1, 'https://ror.org/05w7dft64 National Institute of Cancer Prevention and Research'),
(74946, 'https://ror.org/05w8pph52', 'en', 1, 'https://ror.org/05w8pph52 Ministry of Education'),
(74947, 'https://ror.org/05waabg59', 'en', 1, 'https://ror.org/05waabg59 The Cancer Treatment Center'),
(74948, 'https://ror.org/05wbcyx60', 'no_lang_code', 1, 'https://ror.org/05wbcyx60 InnoGenomics (United States)'),
(74949, 'https://ror.org/05wetj454', 'no_lang_code', 1, 'https://ror.org/05wetj454 Braskem (Brazil)'),
(74950, 'https://ror.org/05wfe5014', 'en', 1, 'https://ror.org/05wfe5014 National Scientific Center for Surgery named after A.N. Syzganov ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø им. А.Š. Дызганова'),
(74951, 'https://ror.org/05wjk9x59', 'no_lang_code', 1, 'https://ror.org/05wjk9x59 General Oceanics (United States)'),
(74952, 'https://ror.org/05wm18065', 'en', 1, 'https://ror.org/05wm18065 Kirklees & Calderdale Rape & Sexual Abuse Counselling Centre'),
(74953, 'https://ror.org/05wm19m06', 'es', 1, 'https://ror.org/05wm19m06 Instituto CentroAmericano de Estudios para la Democracia Social'),
(74954, 'https://ror.org/05wmkk652', 'no_lang_code', 1, 'https://ror.org/05wmkk652 Sioo Wood Protection (Sweden)'),
(74955, 'https://ror.org/05wnsd310', 'en', 1, 'https://ror.org/05wnsd310 Chinese National Museum of Ethnology'),
(74956, 'https://ror.org/05wqvch42', 'no_lang_code', 1, 'https://ror.org/05wqvch42 Double Bond Pharmaceutical (Sweden)'),
(74957, 'https://ror.org/05wvcb507', 'en', 1, 'https://ror.org/05wvcb507 Angered Hospital Angereds NƤrsjukhus'),
(74958, 'https://ror.org/05wvy7982', 'en', 1, 'https://ror.org/05wvy7982 The Campaign Against Living Miserably'),
(74959, 'https://ror.org/05ww0cq12', 'en', 1, 'https://ror.org/05ww0cq12 Colorado Public Television'),
(74960, 'https://ror.org/05ww0qy02', 'no_lang_code', 1, 'https://ror.org/05ww0qy02 Boehringer Ingelheim (Australia)'),
(74961, 'https://ror.org/05wyk6k55', 'en', 1, 'https://ror.org/05wyk6k55 Centre for Higher Education Trust'),
(74962, 'https://ror.org/05wyxfm90', 'en', 1, 'https://ror.org/05wyxfm90 National Ready Mixed Concrete Association'),
(74963, 'https://ror.org/05x4f0t30', 'en', 1, 'https://ror.org/05x4f0t30 Avvai Village Welfare Society ą®…ą®µąÆą®µąÆˆ ą®•ą®æą®°ą®¾ą®®ą®®ąÆ ą®Øą®²ąÆą®µą®¾ą®“ąÆą®µąÆ ą®šą®™ąÆą®•ą®¤ąÆą®¤ą®¾ą®²ąÆ'),
(74964, 'https://ror.org/05x542h52', 'es', 1, 'https://ror.org/05x542h52 Museo Nacional de EtnografĆ­a y Folklore'),
(74965, 'https://ror.org/05x55kp86', 'no_lang_code', 1, 'https://ror.org/05x55kp86 Forsythe Technologies (United States)'),
(74966, 'https://ror.org/05x67xq17', 'no_lang_code', 1, 'https://ror.org/05x67xq17 NeoZeo (Sweden)'),
(74967, 'https://ror.org/05x6bj397', 'es', 1, 'https://ror.org/05x6bj397 Instituto Universitario Hospital Italiano'),
(74968, 'https://ror.org/05x75zf33', 'en', 1, 'https://ror.org/05x75zf33 Ptoukha Institute for Demography and Social Studies of the National Academy of Sciences of Ukraine Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гемографии Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… исслеГований имени М.Š’. ŠŸŃ‚ŃƒŃ…Šø ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Украины'),
(74969, 'https://ror.org/05x7p8987', 'en', 1, 'https://ror.org/05x7p8987 Scottish Collaboration for Public Health Research and Policy'),
(74970, 'https://ror.org/05x8gcy84', 'en', 1, 'https://ror.org/05x8gcy84 Washington Office on Latin America'),
(74971, 'https://ror.org/05xa78572', 'en', 1, 'https://ror.org/05xa78572 Association of Mental Health Providers'),
(74972, 'https://ror.org/05xcdy991', 'en', 1, 'https://ror.org/05xcdy991 Department of Archaeology ą®¤ąÆŠą®²ąÆą®ŖąÆŠą®°ąÆą®³ą®æą®Æą®²ąÆ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ ą¶“ą·”ą¶»ą·ą·€ą·’ą¶Æą·Šā€ą¶ŗą· ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(74973, 'https://ror.org/05xemz742', 'en', 1, 'https://ror.org/05xemz742 Government of Mizoram'),
(74974, 'https://ror.org/05xg77x32', 'en', 1, 'https://ror.org/05xg77x32 Tyneside Cinema'),
(74975, 'https://ror.org/05xh18273', 'en', 1, 'https://ror.org/05xh18273 Media Standards Trust'),
(74976, 'https://ror.org/05xht1n33', 'en', 1, 'https://ror.org/05xht1n33 Labor Community Strategy Center'),
(74977, 'https://ror.org/05xhx0t16', 'en', 1, 'https://ror.org/05xhx0t16 The Fairbanking Foundation'),
(74978, 'https://ror.org/05xjndf54', 'en', 1, 'https://ror.org/05xjndf54 Freedom Festival Arts Trust'),
(74979, 'https://ror.org/05xn1q504', 'en', 1, 'https://ror.org/05xn1q504 All Ireland Institute for Hospice and Palliative Care'),
(74980, 'https://ror.org/05xnmjv56', 'en', 1, 'https://ror.org/05xnmjv56 York Museums Trust'),
(74981, 'https://ror.org/05xr63b94', 'no_lang_code', 1, 'https://ror.org/05xr63b94 Cell Biologics (United States)'),
(74982, 'https://ror.org/05xrbcc66', 'en', 1, 'https://ror.org/05xrbcc66 Advanced Science Research Center å…ˆē«ÆåŸŗē¤Žē ”ē©¶ć‚»ćƒ³ć‚æ'),
(74983, 'https://ror.org/05xrxf972', 'en', 1, 'https://ror.org/05xrxf972 Dumfries Museum and Camera Obscura'),
(74984, 'https://ror.org/05xvry795', 'no_lang_code', 1, 'https://ror.org/05xvry795 Lund and Company Invention (United States)'),
(74985, 'https://ror.org/05xwf9k95', 'no_lang_code', 1, 'https://ror.org/05xwf9k95 Clearsky Medical Diagnostics (United Kingdom)'),
(74986, 'https://ror.org/05xwnpp97', 'no_lang_code', 1, 'https://ror.org/05xwnpp97 Flexicare (United Kingdom)'),
(74987, 'https://ror.org/05y05z458', 'en', 1, 'https://ror.org/05y05z458 Welwyn Archaeological Society'),
(74988, 'https://ror.org/05y0cez87', 'en', 1, 'https://ror.org/05y0cez87 Riverside'),
(74989, 'https://ror.org/05y477617', 'en', 1, 'https://ror.org/05y477617 Comann Eachdraidh Uig'),
(74990, 'https://ror.org/05y4aj433', 'no_lang_code', 1, 'https://ror.org/05y4aj433 Radarbolaget (Sweden)'),
(74991, 'https://ror.org/05y8p4437', 'en', 1, 'https://ror.org/05y8p4437 Trials Methodology Research Network'),
(74992, 'https://ror.org/05yaa8165', 'en', 1, 'https://ror.org/05yaa8165 West Africa Vocational Education'),
(74993, 'https://ror.org/05yd64b65', 'en', 1, 'https://ror.org/05yd64b65 High Life Highland'),
(74994, 'https://ror.org/05ydvwr43', 'no_lang_code', 1, 'https://ror.org/05ydvwr43 Full Radius Dance (United States)'),
(74995, 'https://ror.org/05yj8y167', 'no_lang_code', 1, 'https://ror.org/05yj8y167 Mesh Robotics (United States)'),
(74996, 'https://ror.org/05yjmpq86', 'en', 1, 'https://ror.org/05yjmpq86 Royal College of Veterinary Surgeons'),
(74997, 'https://ror.org/05yk1x869', 'de', 1, 'https://ror.org/05yk1x869 Bezirkskrankenhaus Augsburg'),
(74998, 'https://ror.org/05ykna326', 'no_lang_code', 1, 'https://ror.org/05ykna326 BatAndCat Sound Labs (United States)'),
(74999, 'https://ror.org/05ymybb54', 'en', 1, 'https://ror.org/05ymybb54 A Better Balance'),
(75000, 'https://ror.org/05yngzb68', 'en', 1, 'https://ror.org/05yngzb68 Penn Associates'),
(75001, 'https://ror.org/00005jn19', 'no_lang_code', 1, 'https://ror.org/00005jn19 Global Unichip (Taiwan)'),
(75002, 'https://ror.org/0000fr117', 'de', 1, 'https://ror.org/0000fr117 Landesbetrieb Landwirtschaft Hessen'),
(75003, 'https://ror.org/0006fww70', 'no_lang_code', 1, 'https://ror.org/0006fww70 Oxford Biotherapeutics (United Kingdom)'),
(75004, 'https://ror.org/0007cgk43', 'no_lang_code', 1, 'https://ror.org/0007cgk43 Ansys (Germany)'),
(75005, 'https://ror.org/00087rj45', 'en', 1, 'https://ror.org/00087rj45 Sanming Agricultural Science Research Institute äø‰ę˜Žåø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(75006, 'https://ror.org/0008adq18', 'no_lang_code', 1, 'https://ror.org/0008adq18 Gel4Med (United States)'),
(75007, 'https://ror.org/0008m0297', 'en', 1, 'https://ror.org/0008m0297 Bank of Lithuania Lietuvos Bankas'),
(75008, 'https://ror.org/000ahf130', 'no_lang_code', 1, 'https://ror.org/000ahf130 Hillenbrand (United States)'),
(75009, 'https://ror.org/000aqgk72', 'de', 1, 'https://ror.org/000aqgk72 Photonik-Zentrum Kaiserslautern'),
(75010, 'https://ror.org/000cf1839', 'en', 1, 'https://ror.org/000cf1839 Bank of Latvia Latvijas Banka'),
(75011, 'https://ror.org/000j0ys55', 'no_lang_code', 1, 'https://ror.org/000j0ys55 Grindeks (Latvia)'),
(75012, 'https://ror.org/000j37591', 'en', 1, 'https://ror.org/000j37591 British Psychoanalytical Society'),
(75013, 'https://ror.org/000k53a93', 'en', 1, 'https://ror.org/000k53a93 Emerald Coast Science Center'),
(75014, 'https://ror.org/000mrg216', 'no_lang_code', 1, 'https://ror.org/000mrg216 Industrieverband Feuerverzinken (Germany)'),
(75015, 'https://ror.org/000n79883', 'no_lang_code', 1, 'https://ror.org/000n79883 Stresau Laboratory (United States)'),
(75016, 'https://ror.org/000n9hp16', 'no_lang_code', 1, 'https://ror.org/000n9hp16 Stress Photonics (United States)'),
(75017, 'https://ror.org/000pwjf21', 'no_lang_code', 1, 'https://ror.org/000pwjf21 Documents Workflow Content (Slovakia)'),
(75018, 'https://ror.org/000qx7w57', 'en', 1, 'https://ror.org/000qx7w57 Baokang Hospital Affiliated to Tianjin University of Traditional Chinese Medicine å¤©ę“„äø­åŒ»čÆå¤§å­¦é™„å±žäæåŗ·åŒ»é™¢'),
(75019, 'https://ror.org/000wrzy88', 'no_lang_code', 1, 'https://ror.org/000wrzy88 Pharmabridge (United States)'),
(75020, 'https://ror.org/000wyyt97', 'no_lang_code', 1, 'https://ror.org/000wyyt97 Theracule (Norway)'),
(75021, 'https://ror.org/000z94124', 'no_lang_code', 1, 'https://ror.org/000z94124 Lensar (United States)'),
(75022, 'https://ror.org/000zes111', 'no_lang_code', 1, 'https://ror.org/000zes111 Sensopath Technologies (United States)'),
(75023, 'https://ror.org/000zgvm20', 'en', 1, 'https://ror.org/000zgvm20 Research Center for Information Technology Innovation, Academia Sinica äø­å¤®ē ”ē©¶é™¢č³‡čØŠē§‘ęŠ€å‰µę–°ē ”ē©¶äø­åæƒ'),
(75024, 'https://ror.org/001087p83', 'no_lang_code', 1, 'https://ror.org/001087p83 Phenox (Germany)'),
(75025, 'https://ror.org/0010cp777', 'de', 1, 'https://ror.org/0010cp777 Institut für Mittelstandsforschung'),
(75026, 'https://ror.org/00124ry56', 'no_lang_code', 1, 'https://ror.org/00124ry56 Institut für Modelle Beruflicher und Sozialer Entwicklung (Germany)'),
(75027, 'https://ror.org/001272r51', 'no_lang_code', 1, 'https://ror.org/001272r51 Precision Vision (United States)'),
(75028, 'https://ror.org/0012bhf27', 'no_lang_code', 1, 'https://ror.org/0012bhf27 Stuttgarter Straßenbahnen (Germany)'),
(75029, 'https://ror.org/0012d5512', 'no_lang_code', 1, 'https://ror.org/0012d5512 SensoDx (United States)'),
(75030, 'https://ror.org/0012p6j68', 'en', 1, 'https://ror.org/0012p6j68 National Electronic Information Consortium ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾-информационный ŠŗŠ¾Š½ŃŠ¾Ń€Ń†ŠøŃƒŠ¼'),
(75031, 'https://ror.org/00130jf21', 'no_lang_code', 1, 'https://ror.org/00130jf21 Elliptika (France)'),
(75032, 'https://ror.org/0016by010', 'id', 1, 'https://ror.org/0016by010 Universitas Teknokrat Indonesia'),
(75033, 'https://ror.org/0016cbc84', 'no_lang_code', 1, 'https://ror.org/0016cbc84 Northeast Semiconductor (United States)'),
(75034, 'https://ror.org/0016m8j28', 'no_lang_code', 1, 'https://ror.org/0016m8j28 Energie Aus Der Mitte (Germany)'),
(75035, 'https://ror.org/0017yad31', 'de', 1, 'https://ror.org/0017yad31 DGB Bildungswerk BUND'),
(75036, 'https://ror.org/0018afc35', 'no_lang_code', 1, 'https://ror.org/0018afc35 JGC Catalysts and Chemicals (Japan)'),
(75037, 'https://ror.org/001agqs13', 'en', 1, 'https://ror.org/001agqs13 Institute of Political Science, Academia Sinica 中央研究院政治學研究所'),
(75038, 'https://ror.org/001bdsd09', 'en', 1, 'https://ror.org/001bdsd09 Osaka Kaisei Hospital å¤§é˜Ŗå›žē”Ÿē—…é™¢'),
(75039, 'https://ror.org/001eahy16', 'no_lang_code', 1, 'https://ror.org/001eahy16 Catalent (Belgium)'),
(75040, 'https://ror.org/001ex3n55', 'no_lang_code', 1, 'https://ror.org/001ex3n55 KOB (Germany)'),
(75041, 'https://ror.org/001f11244', 'no_lang_code', 1, 'https://ror.org/001f11244 Adivit (Slovakia)'),
(75042, 'https://ror.org/001hkv469', 'no_lang_code', 1, 'https://ror.org/001hkv469 Koch Industries (United Kingdom)'),
(75043, 'https://ror.org/001kv2y39', 'en', 1, 'https://ror.org/001kv2y39 Technology Innovation Institute معهد Ų§Ł„Ų§ŲØŲŖŁƒŲ§Ų± Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(75044, 'https://ror.org/001msz730', 'no_lang_code', 1, 'https://ror.org/001msz730 Spectrum Associates (United States)'),
(75045, 'https://ror.org/001p6v129', 'de', 1, 'https://ror.org/001p6v129 Institut für Sicherheitstechnik / Schiffssicherheit'),
(75046, 'https://ror.org/001pvd496', 'en', 1, 'https://ror.org/001pvd496 Kansai Vocational College of Medicine é–¢č„æåŒ»ē™‚å­¦åœ’å°‚é–€å­¦ę ”'),
(75047, 'https://ror.org/001pxkx91', 'no_lang_code', 1, 'https://ror.org/001pxkx91 Givaudan (Sweden)'),
(75048, 'https://ror.org/001q6ph30', 'en', 1, 'https://ror.org/001q6ph30 Barajas Clinic ClĆ­nica Barajas'),
(75049, 'https://ror.org/001qnfn06', 'en', 1, 'https://ror.org/001qnfn06 Staatliche Lehr- und Versuchsanstalt für Wein- und Obstbau Weinsberg State Education and Research Institute for Viticulture and Pomology Weinsberg'),
(75050, 'https://ror.org/001s1be73', 'en', 1, 'https://ror.org/001s1be73 Industrial Development Bureau ē¶“ęæŸéƒØå·„ę„­å±€'),
(75051, 'https://ror.org/001zmxb62', 'en', 1, 'https://ror.org/001zmxb62 Greenland Ecosystem Monitoring'),
(75052, 'https://ror.org/001zxk082', 'en', 1, 'https://ror.org/001zxk082 Centre for Natural Resource Governance'),
(75053, 'https://ror.org/0020h0412', 'en', 1, 'https://ror.org/0020h0412 Art Aia - Creatives / In / Residence'),
(75054, 'https://ror.org/0021myq38', 'no_lang_code', 1, 'https://ror.org/0021myq38 Eloxx Pharmaceuticals (United States)'),
(75055, 'https://ror.org/0023wb355', 'en', 1, 'https://ror.org/0023wb355 Higashitagawa Culture Memorial Hall ę±ē”°å·ę–‡åŒ–čØ˜åæµé¤Ø'),
(75056, 'https://ror.org/0024v4x89', 'en', 1, 'https://ror.org/0024v4x89 Anhui Geological Museum'),
(75057, 'https://ror.org/0026qcv83', 'no_lang_code', 1, 'https://ror.org/0026qcv83 BeDimensional (Italy)'),
(75058, 'https://ror.org/00276db30', 'no_lang_code', 1, 'https://ror.org/00276db30 TechnoSpex (Singapore)'),
(75059, 'https://ror.org/00279h066', 'en', 1, 'https://ror.org/00279h066 Rwanda Wildlife Conservation Association'),
(75060, 'https://ror.org/0027p4q12', 'no_lang_code', 1, 'https://ror.org/0027p4q12 AIMM Therapeutics (Netherlands)'),
(75061, 'https://ror.org/002823j22', 'en', 1, 'https://ror.org/002823j22 International Education Specialist College'),
(75062, 'https://ror.org/0028eeh32', 'en', 1, 'https://ror.org/0028eeh32 Electronics and Radar Development Establishment ą²Žą²²ą³†ą²•ą³ą²Ÿą³ą²°ą²¾ą²Øą²æą²•ą³ą²øą³ ą²°ą³†ą²”ą²¾ą²°ą³ ą²”ą³†ą²µą²²ą²Ŗą³ą²®ą³†ą²‚ą²Ÿą³ ą²Žą²øą³ą²Ÿą²¾ą²¬ą³ą²²ą²æą²·ą³ą²®ą³†ą²‚ą²Ÿą³'),
(75063, 'https://ror.org/0029pc197', 'en', 1, 'https://ror.org/0029pc197 Institute of Electronic Business'),
(75064, 'https://ror.org/002ayyd98', 'en', 1, 'https://ror.org/002ayyd98 Mie Forestry Research Institute äø‰é‡ēœŒ ęž—ę„­ē ”ē©¶ę‰€'),
(75065, 'https://ror.org/002bpzx43', 'no_lang_code', 1, 'https://ror.org/002bpzx43 Taro Pharmaceuticals (Israel)'),
(75066, 'https://ror.org/002g7k102', 'no_lang_code', 1, 'https://ror.org/002g7k102 Dascena (United States)'),
(75067, 'https://ror.org/002hn6106', 'no_lang_code', 1, 'https://ror.org/002hn6106 CKM Analytix (United States)'),
(75068, 'https://ror.org/002hr7c70', 'no_lang_code', 1, 'https://ror.org/002hr7c70 BGR Energy Systems (India)'),
(75069, 'https://ror.org/002j4n989', 'no_lang_code', 1, 'https://ror.org/002j4n989 Owens & Minor (United States)'),
(75070, 'https://ror.org/002jmh430', 'de', 1, 'https://ror.org/002jmh430 Institut zur Modernisierung von Wirtschafts- und BeschƤftigungsstrukturen'),
(75071, 'https://ror.org/002jq3415', 'en', 1, 'https://ror.org/002jq3415 Mercator Research Institute on Global Commons and Climate Change'),
(75072, 'https://ror.org/002kcsd03', 'en', 1, 'https://ror.org/002kcsd03 Institute of Manuscripts of Azerbaijan ʏlyazmalar İnstitutu'),
(75073, 'https://ror.org/002n9qz56', 'en', 1, 'https://ror.org/002n9qz56 European School of Materials'),
(75074, 'https://ror.org/002p8js91', 'en', 1, 'https://ror.org/002p8js91 Drugs & Diagnostics for Tropical Diseases'),
(75075, 'https://ror.org/002rc3h45', 'no_lang_code', 1, 'https://ror.org/002rc3h45 BioInteractions (United Kingdom)'),
(75076, 'https://ror.org/002td9r73', 'no_lang_code', 1, 'https://ror.org/002td9r73 Laboklin (Germany)'),
(75077, 'https://ror.org/002vfg852', 'no_lang_code', 1, 'https://ror.org/002vfg852 Ferno (United States)'),
(75078, 'https://ror.org/002xr5z77', 'no_lang_code', 1, 'https://ror.org/002xr5z77 SilBiotech (United States)'),
(75079, 'https://ror.org/0030sx194', 'no_lang_code', 1, 'https://ror.org/0030sx194 Altus Capital Partners (United States)'),
(75080, 'https://ror.org/0032xfd86', 'no_lang_code', 1, 'https://ror.org/0032xfd86 PerceptiMed (United States)'),
(75081, 'https://ror.org/00345kx61', 'en', 1, 'https://ror.org/00345kx61 Physical Education and Medicine Research Foundation čŗ«ä½“ę•™č‚²åŒ»å­¦ē ”ē©¶ę‰€'),
(75082, 'https://ror.org/0035phc29', 'no_lang_code', 1, 'https://ror.org/0035phc29 Pherin Pharmaceuticals (United States)'),
(75083, 'https://ror.org/00375d304', 'en', 1, 'https://ror.org/00375d304 China Education and Research Network äø­å›½ę•™č‚²å’Œē§‘ē ”č®”ē®—ęœŗē½‘ē½‘ē»œäø­åæƒ'),
(75084, 'https://ror.org/003cqeh33', 'de', 1, 'https://ror.org/003cqeh33 Institut Dr. Flad'),
(75085, 'https://ror.org/003e1fb38', 'no_lang_code', 1, 'https://ror.org/003e1fb38 Snow & Avalanche Study Estt ą¤øą¤¾ą¤øą„‡ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(75086, 'https://ror.org/003fdpq59', 'no_lang_code', 1, 'https://ror.org/003fdpq59 Micos Engineering (Switzerland)'),
(75087, 'https://ror.org/003fdzp71', 'no_lang_code', 1, 'https://ror.org/003fdzp71 Schƶlly (Germany)'),
(75088, 'https://ror.org/003fxr642', 'no_lang_code', 1, 'https://ror.org/003fxr642 Vertiver (India) ą¤µą„‡ą¤°ą„ą¤¤ą¤æą¤µą¤°'),
(75089, 'https://ror.org/003hq9m95', 'en', 1, 'https://ror.org/003hq9m95 North Cumbria Integrated Care NHS Foundation Trust'),
(75090, 'https://ror.org/003mewa18', 'no_lang_code', 1, 'https://ror.org/003mewa18 Linde (Italy)'),
(75091, 'https://ror.org/003mm3215', 'es', 1, 'https://ror.org/003mm3215 Mutualista Hospital EvangƩlico'),
(75092, 'https://ror.org/003na7826', 'no_lang_code', 1, 'https://ror.org/003na7826 Takeda (Ireland)'),
(75093, 'https://ror.org/003njj705', 'no_lang_code', 1, 'https://ror.org/003njj705 Unisearch (United States)'),
(75094, 'https://ror.org/003q5e975', 'no_lang_code', 1, 'https://ror.org/003q5e975 Gewerbliche Institut für Umweltanalytik (Germany)'),
(75095, 'https://ror.org/003sqa685', 'no_lang_code', 1, 'https://ror.org/003sqa685 Stat Medical Devices (United States)'),
(75096, 'https://ror.org/003w8na57', 'no_lang_code', 1, 'https://ror.org/003w8na57 Hydroisotop (Germany)'),
(75097, 'https://ror.org/003xvvt95', 'en', 1, 'https://ror.org/003xvvt95 Institut für Deutsches, Europäisches und Internationales Medizinrecht, Gesundheitsrecht und Bioethik Institute for German, European and International Medical Law, Public Health Law and Bioethics'),
(75098, 'https://ror.org/00402k788', 'en', 1, 'https://ror.org/00402k788 Animal Husbandry & Veterinary'),
(75099, 'https://ror.org/0042bdc75', 'en', 1, 'https://ror.org/0042bdc75 Alphacrucis College'),
(75100, 'https://ror.org/0043cxs41', 'no_lang_code', 1, 'https://ror.org/0043cxs41 Helperby Therapeutics (United Kingdom)'),
(75101, 'https://ror.org/0043ys591', 'no_lang_code', 1, 'https://ror.org/0043ys591 Magstim (United Kingdom)'),
(75102, 'https://ror.org/00443vb41', 'no_lang_code', 1, 'https://ror.org/00443vb41 NeoPhotonics (United States)'),
(75103, 'https://ror.org/00451sn96', 'en', 1, 'https://ror.org/00451sn96 Alberta Biodiversity Monitoring Institute'),
(75104, 'https://ror.org/0045fm505', 'no_lang_code', 1, 'https://ror.org/0045fm505 Staar Surgical (United States)'),
(75105, 'https://ror.org/0046sdb63', 'no_lang_code', 1, 'https://ror.org/0046sdb63 Tosk (United States)'),
(75106, 'https://ror.org/004776246', 'en', 1, 'https://ror.org/004776246 Capital University of Science and Technology جامعہ ŲÆŲ§Ų±Ų§Ł„Ų­Ś©ŁˆŁ…ŲŖ سائنس و Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒā€Ž'),
(75107, 'https://ror.org/0047dfm96', 'en', 1, 'https://ror.org/0047dfm96 Shikoku Occupational Skills Development College é¦™å·č·ę„­čØ“ē·“ēŸ­ęœŸå¤§å­¦ę ”'),
(75108, 'https://ror.org/0047j9t38', 'de', 1, 'https://ror.org/0047j9t38 Institut für Informationsverarbeitung'),
(75109, 'https://ror.org/004cyfn34', 'en', 1, 'https://ror.org/004cyfn34 Jiangxi Provincial Academy of Medical Sciences ę±Ÿč„æēœåŒ»å­¦ē§‘å­¦é™¢'),
(75110, 'https://ror.org/004de7504', 'en', 1, 'https://ror.org/004de7504 Burkina Faso Ministry of the Environment, Green Economy, and Climate Change MinistĆØre de L''Environnement, de l''Economie verte et du Changement Climatique'),
(75111, 'https://ror.org/004dy8z51', 'no_lang_code', 1, 'https://ror.org/004dy8z51 Siddharth Starch (India)'),
(75112, 'https://ror.org/004dyvb33', 'no_lang_code', 1, 'https://ror.org/004dyvb33 Unity Biotechnology (United States)'),
(75113, 'https://ror.org/004evz222', 'fr', 1, 'https://ror.org/004evz222 Association Nationale des Producteurs de Noisettes'),
(75114, 'https://ror.org/004jhjr33', 'en', 1, 'https://ror.org/004jhjr33 Vinh Phuc Department of Health'),
(75115, 'https://ror.org/004q1hy63', 'en', 1, 'https://ror.org/004q1hy63 Yamanashi Research Institute å…¬ē›Šč²”å›£ę³•äŗŗ å±±ę¢Øē·åˆē ”ē©¶ę‰€'),
(75116, 'https://ror.org/004q9nj68', 'no_lang_code', 1, 'https://ror.org/004q9nj68 Vapotherm (United States)'),
(75117, 'https://ror.org/004sfne89', 'no_lang_code', 1, 'https://ror.org/004sfne89 Klinikum Westfalen (Germany)'),
(75118, 'https://ror.org/004sp0722', 'no_lang_code', 1, 'https://ror.org/004sp0722 Alpine Immune Sciences (United States)');
INSERT INTO `rors` VALUES
(75119, 'https://ror.org/004srxn73', 'en', 1, 'https://ror.org/004srxn73 Shanghai Institute for Science of Science äøŠęµ·åø‚ē§‘å­¦å­¦ē ”ē©¶ę‰€'),
(75120, 'https://ror.org/004tnhr10', 'en', 1, 'https://ror.org/004tnhr10 Laser Science & Technology Centre'),
(75121, 'https://ror.org/004tpxz33', 'no_lang_code', 1, 'https://ror.org/004tpxz33 Nichiban (Japan) ćƒ‹ćƒćƒćƒ³ę Ŗå¼ä¼šē¤¾'),
(75122, 'https://ror.org/004w4c708', 'no_lang_code', 1, 'https://ror.org/004w4c708 Pipestone (United States)'),
(75123, 'https://ror.org/004x7d471', 'en', 1, 'https://ror.org/004x7d471 Center for Light Energy Activated Redox Processes'),
(75124, 'https://ror.org/004z0nw85', 'no_lang_code', 1, 'https://ror.org/004z0nw85 Forestadent (Germany)'),
(75125, 'https://ror.org/004zpe866', 'en', 1, 'https://ror.org/004zpe866 Beltsville Human Nutrition Research Center'),
(75126, 'https://ror.org/00502tg50', 'no_lang_code', 1, 'https://ror.org/00502tg50 Wanfang Data (China)'),
(75127, 'https://ror.org/0053a1v22', 'de', 1, 'https://ror.org/0053a1v22 Hamburger Kunsthalle'),
(75128, 'https://ror.org/0054nhx50', 'no_lang_code', 1, 'https://ror.org/0054nhx50 EdgeWave (Germany)'),
(75129, 'https://ror.org/0056pgw95', 'no_lang_code', 1, 'https://ror.org/0056pgw95 Eureka Therapeutics (United States)'),
(75130, 'https://ror.org/0057mhb40', 'no_lang_code', 1, 'https://ror.org/0057mhb40 Matador (Slovakia)'),
(75131, 'https://ror.org/0058ctf29', 'en', 1, 'https://ror.org/0058ctf29 Consortium of European Taxonomic Facilities'),
(75132, 'https://ror.org/0059myg49', 'de', 1, 'https://ror.org/0059myg49 Forschungsgemeinschaft Feuerfest'),
(75133, 'https://ror.org/0059y1582', 'en', 1, 'https://ror.org/0059y1582 World Wide Web Consortium'),
(75134, 'https://ror.org/005ahed97', 'no_lang_code', 1, 'https://ror.org/005ahed97 Apollo Global Management (United States)'),
(75135, 'https://ror.org/005dbxm61', 'no_lang_code', 1, 'https://ror.org/005dbxm61 Piezosystem Jena (Germany)'),
(75136, 'https://ror.org/005e5y372', 'en', 1, 'https://ror.org/005e5y372 Aeronautical Development Establishment ą¤µą„ˆą¤®ą¤¾ą¤Øą¤æą¤•ą„€ विकास ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø ą²ą²°ą³†ą³‚ą²Øą²¾ą²Ÿą²æą²•ą²²ą³ ą²”ą³†ą²µą²²ą²Ŗą³ą²®ą³†ą²‚ą²Ÿą³ ą²Žą²øą³ą²Ÿą²¾ą²¬ą³ą²²ą²æą²·ą³ą²®ą³†ą²‚ą²Ÿą³'),
(75137, 'https://ror.org/005e86b23', 'de', 1, 'https://ror.org/005e86b23 Economica'),
(75138, 'https://ror.org/005ev0c40', 'no_lang_code', 1, 'https://ror.org/005ev0c40 IMU Institut (Germany)'),
(75139, 'https://ror.org/005h88p57', 'no_lang_code', 1, 'https://ror.org/005h88p57 ASELTA Nanographics (France)'),
(75140, 'https://ror.org/005ksdp35', 'no_lang_code', 1, 'https://ror.org/005ksdp35 Systems Analytics (United States)'),
(75141, 'https://ror.org/005md5539', 'no_lang_code', 1, 'https://ror.org/005md5539 Colour Control Farbmesstechnik (Germany)'),
(75142, 'https://ror.org/005mgvs97', 'en', 1, 'https://ror.org/005mgvs97 Shenyang Center for Disease Control and Prevention ę²ˆé˜³åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(75143, 'https://ror.org/005n4dc83', 'no_lang_code', 1, 'https://ror.org/005n4dc83 Tianjin Synthetic Material Research Institute (China) å¤©ę“„åø‚åˆęˆęę–™å·„äøšē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(75144, 'https://ror.org/005vq4d33', 'no_lang_code', 1, 'https://ror.org/005vq4d33 Oxford Plastics (United Kingdom)'),
(75145, 'https://ror.org/005wx2316', 'no_lang_code', 1, 'https://ror.org/005wx2316 Value Farm Consulting (Japan) ćƒćƒŖćƒ„ćƒ¼ćƒ•ć‚”ćƒ¼ćƒ ćƒ»ć‚³ćƒ³ć‚µćƒ«ćƒ†ć‚£ćƒ³ć‚°'),
(75146, 'https://ror.org/005wzhk47', 'no_lang_code', 1, 'https://ror.org/005wzhk47 MiCell Technologies (United States)'),
(75147, 'https://ror.org/005x7bz67', 'no_lang_code', 1, 'https://ror.org/005x7bz67 Transphorm (United States)'),
(75148, 'https://ror.org/005xgxx88', 'en', 1, 'https://ror.org/005xgxx88 World Health Organization - Morocco'),
(75149, 'https://ror.org/005z3yp93', 'en', 1, 'https://ror.org/005z3yp93 Central Sericultural Germplasm Resources Centre'),
(75150, 'https://ror.org/0063h8607', 'no_lang_code', 1, 'https://ror.org/0063h8607 Protia (United States)'),
(75151, 'https://ror.org/0063jwc41', 'en', 1, 'https://ror.org/0063jwc41 Bauhaus Archive'),
(75152, 'https://ror.org/0064ns709', 'no_lang_code', 1, 'https://ror.org/0064ns709 Shilpa (India)'),
(75153, 'https://ror.org/0065gjh60', 'no_lang_code', 1, 'https://ror.org/0065gjh60 Institut für Umwelttechnologien und Strahlenschutz (Germany)'),
(75154, 'https://ror.org/0065tt051', 'no_lang_code', 1, 'https://ror.org/0065tt051 U.S. Composites (United States)'),
(75155, 'https://ror.org/0066efq29', 'en', 1, 'https://ror.org/0066efq29 Hunan Provincial Center for Disease Control and Prevention ę¹–å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ)'),
(75156, 'https://ror.org/0066mva78', 'en', 1, 'https://ror.org/0066mva78 Natural History Museum of Bern Naturhistorisches Museum Bern'),
(75157, 'https://ror.org/006763s03', 'en', 1, 'https://ror.org/006763s03 Nemuro Education Institute 根室教育研究所'),
(75158, 'https://ror.org/006992e45', 'en', 1, 'https://ror.org/006992e45 Yanan University Affiliated Hospital 延安大学附属医院'),
(75159, 'https://ror.org/0069k3e75', 'en', 1, 'https://ror.org/0069k3e75 Institute of Mental Health ą®•ąÆ€ą®“ąÆą®Ŗą®¾ą®•ąÆą®•ą®®ąÆ ą®…ą®°ą®šąÆ மனநல ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(75160, 'https://ror.org/006efxj37', 'es', 1, 'https://ror.org/006efxj37 Confederación Latinoamericana de Religiosos Latin American and Caribbean Confederation of Religious Orders'),
(75161, 'https://ror.org/006f3dv52', 'es', 1, 'https://ror.org/006f3dv52 Observatorio de Mortalidad Materna en MƩxico'),
(75162, 'https://ror.org/006f8jv23', 'no_lang_code', 1, 'https://ror.org/006f8jv23 Fulcrum Therapeutics (United States)'),
(75163, 'https://ror.org/006grep18', 'no_lang_code', 1, 'https://ror.org/006grep18 Science Spaza'),
(75164, 'https://ror.org/006h5wv45', 'no_lang_code', 1, 'https://ror.org/006h5wv45 Gripple (United Kingdom)'),
(75165, 'https://ror.org/006jfnq36', 'en', 1, 'https://ror.org/006jfnq36 American Farm Bureau Federation'),
(75166, 'https://ror.org/006kn2235', 'no_lang_code', 1, 'https://ror.org/006kn2235 Anova Corp (Vietnam)'),
(75167, 'https://ror.org/006kn8y54', 'en', 1, 'https://ror.org/006kn8y54 Kyoto City Archaeological Research Institute äŗ¬éƒ½åø‚č€ƒå¤č³‡ę–™é¤Ø'),
(75168, 'https://ror.org/006mk5713', 'no_lang_code', 1, 'https://ror.org/006mk5713 Wellesley Pharmaceuticals (United States)'),
(75169, 'https://ror.org/006mz4f81', 'en', 1, 'https://ror.org/006mz4f81 Ishikawa Prefectural Museum of History ēŸ³å·ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(75170, 'https://ror.org/006nx0g64', 'no_lang_code', 1, 'https://ror.org/006nx0g64 6 Dimensions Capital (United States)'),
(75171, 'https://ror.org/006s82919', 'no_lang_code', 1, 'https://ror.org/006s82919 Shishikari Sand Dune Museum ć„ć—ć‹ć‚Šē ‚äø˜ć®é¢Øč³‡ę–™é¤Ø'),
(75172, 'https://ror.org/006shyb38', 'en', 1, 'https://ror.org/006shyb38 GD Hospital & Diabetes Institute জিঔি হসপিটাল ą¦ą¦Øą§ą¦” ą¦”ą¦¾ą¦Æą¦¼ą¦¾ą¦¬ą§‡ą¦Ÿą¦æą¦ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(75173, 'https://ror.org/006sjd474', 'no_lang_code', 1, 'https://ror.org/006sjd474 Serimmune (United States)'),
(75174, 'https://ror.org/006t7br05', 'no_lang_code', 1, 'https://ror.org/006t7br05 FirstUnion (China)'),
(75175, 'https://ror.org/006vvm489', 'fr', 1, 'https://ror.org/006vvm489 Institut Universitaire d''Abidjan'),
(75176, 'https://ror.org/006w0gs85', 'en', 1, 'https://ror.org/006w0gs85 Mazumdar Shaw Medical Foundation'),
(75177, 'https://ror.org/006w9hg13', 'en', 1, 'https://ror.org/006w9hg13 Institut für Dauerhaft Umweltgerechte Entwicklung Von Naturräumen der Erde Institute of Sustainable Development of Landscapes of the Earth'),
(75178, 'https://ror.org/006xv9y11', 'no_lang_code', 1, 'https://ror.org/006xv9y11 Haim Bio (South Korea)'),
(75179, 'https://ror.org/006zxtd57', 'no_lang_code', 1, 'https://ror.org/006zxtd57 Boso no Mura åƒč‘‰ēœŒē«‹ęˆæē·ć®ć‚€ć‚‰'),
(75180, 'https://ror.org/007009t97', 'no_lang_code', 1, 'https://ror.org/007009t97 Yuyama (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ¤ćƒž'),
(75181, 'https://ror.org/007022329', 'en', 1, 'https://ror.org/007022329 European Regional and Local Health Authorities'),
(75182, 'https://ror.org/00717c553', 'de', 1, 'https://ror.org/00717c553 Philosophisch-Theologische Hochschule Münster'),
(75183, 'https://ror.org/0071sjj14', 'en', 1, 'https://ror.org/0071sjj14 Massachusetts Space Grant Consortium'),
(75184, 'https://ror.org/0072d4h61', 'no_lang_code', 1, 'https://ror.org/0072d4h61 Bioscience (China) åšå„„čµ›ę–Æ'),
(75185, 'https://ror.org/0075t0c68', 'no_lang_code', 1, 'https://ror.org/0075t0c68 Wienerberger (Austria)'),
(75186, 'https://ror.org/00761tq91', 'en', 1, 'https://ror.org/00761tq91 Institut für Gebäudeanalyse und Sanierungsplanung Institute for Building Analysis and Reconstruction Planning'),
(75187, 'https://ror.org/0076h6458', 'de', 1, 'https://ror.org/0076h6458 Deutsche Akademie für Städtebau und Landesplanung'),
(75188, 'https://ror.org/007amws38', 'en', 1, 'https://ror.org/007amws38 Hubei Water Resources Research Institute ę¹–åŒ—ēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(75189, 'https://ror.org/007ctn309', 'no_lang_code', 1, 'https://ror.org/007ctn309 Protochips (United States)'),
(75190, 'https://ror.org/007e09543', 'en', 1, 'https://ror.org/007e09543 Sammy''s Superheroes'),
(75191, 'https://ror.org/007e7b187', 'no_lang_code', 1, 'https://ror.org/007e7b187 Changchun Discovery Sciences (China) é•æę˜„å‰å¤§å¤©å…ƒåŒ–å­¦ęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(75192, 'https://ror.org/007f5j378', 'no_lang_code', 1, 'https://ror.org/007f5j378 Cryosoft (Slovakia)'),
(75193, 'https://ror.org/007ferf45', 'en', 1, 'https://ror.org/007ferf45 Parker Conservation'),
(75194, 'https://ror.org/007fp9y47', 'no_lang_code', 1, 'https://ror.org/007fp9y47 Rapt Therapeutics (United States)'),
(75195, 'https://ror.org/007gt1a87', 'de', 1, 'https://ror.org/007gt1a87 StƤdtisches Klinikum Dresden'),
(75196, 'https://ror.org/007h0mc98', 'en', 1, 'https://ror.org/007h0mc98 Hong Kong Tuberculosis, Chest and Heart Diseases Association é¦™ęøÆé˜²ē™†åæƒč‡ŸåŠčƒøē—…å”ęœƒ'),
(75197, 'https://ror.org/007h8y788', 'fr', 1, 'https://ror.org/007h8y788 Higher Institutes of Nursing and Health Technical Professions Instituts SupĆ©rieurs des Professions InfirmiĆØres et Techniques de SantĆ© المعاهد Ų§Ł„Ų¹Ł„ŁŠŲ§ للمهن Ų§Ł„ŲŖŁ…Ų±ŁŠŲ¶ŁŠŲ© ŁˆŲŖŁ‚Ł†ŁŠŲ§ŲŖ الصحة'),
(75198, 'https://ror.org/007jgnc83', 'no_lang_code', 1, 'https://ror.org/007jgnc83 Danieli (United Kingdom)'),
(75199, 'https://ror.org/007jmsy64', 'no_lang_code', 1, 'https://ror.org/007jmsy64 Laurus labs (India)'),
(75200, 'https://ror.org/007jnt575', 'en', 1, 'https://ror.org/007jnt575 Guangzhou Center for Disease Control and Prevention å¹æå·žåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(75201, 'https://ror.org/007mkk709', 'no_lang_code', 1, 'https://ror.org/007mkk709 Specialty Devices (United States)'),
(75202, 'https://ror.org/007ns0839', 'no_lang_code', 1, 'https://ror.org/007ns0839 Arjo (Sweden)'),
(75203, 'https://ror.org/007stz924', 'no_lang_code', 1, 'https://ror.org/007stz924 DNARx (United States)'),
(75204, 'https://ror.org/007w39b04', 'en', 1, 'https://ror.org/007w39b04 National Research Centre on Litchi ą¤†ą¤ˆą¤øą„€ą¤ą¤†ą¤°-ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤²ą„€ą¤šą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(75205, 'https://ror.org/007wz9933', 'en', 1, 'https://ror.org/007wz9933 Shanghai Medical Information Center äøŠęµ·åø‚åŒ»ē–—äæé™©äæ”ęÆäø­åæƒ'),
(75206, 'https://ror.org/007x4cq57', 'en', 1, 'https://ror.org/007x4cq57 Directorate of Religious Affairs Diyanet İşleri Başkanlığı'),
(75207, 'https://ror.org/0080ttk76', 'es', 1, 'https://ror.org/0080ttk76 Instituto de Salud PĆŗblica de Chile'),
(75208, 'https://ror.org/008356476', 'no_lang_code', 1, 'https://ror.org/008356476 Spine Wave (United States)'),
(75209, 'https://ror.org/0083rgp58', 'no_lang_code', 1, 'https://ror.org/0083rgp58 Neurotech (United States)'),
(75210, 'https://ror.org/0086zck61', 'no_lang_code', 1, 'https://ror.org/0086zck61 Martimex (Slovakia)'),
(75211, 'https://ror.org/008d3n094', 'no_lang_code', 1, 'https://ror.org/008d3n094 PYC Therapeutics (Australia)'),
(75212, 'https://ror.org/008d7nr53', 'no_lang_code', 1, 'https://ror.org/008d7nr53 Manaty (France)'),
(75213, 'https://ror.org/008en0y31', 'en', 1, 'https://ror.org/008en0y31 Deutsches Apotheken-Museum German Museum of Pharmacy'),
(75214, 'https://ror.org/008enam71', 'en', 1, 'https://ror.org/008enam71 Polish Botanical Society Polskie Towarzystwo Botaniczne'),
(75215, 'https://ror.org/008f1m719', 'no_lang_code', 1, 'https://ror.org/008f1m719 Immune Pharmaceuticals (United States)'),
(75216, 'https://ror.org/008h0ge70', 'en', 1, 'https://ror.org/008h0ge70 Research Center of Saline and Akali Land of State Foresty Administration å›½å®¶ęž—äøšå±€ē›ē¢±åœ°ē ”ē©¶äø­åæƒäŗŽ'),
(75217, 'https://ror.org/008h8bh21', 'no_lang_code', 1, 'https://ror.org/008h8bh21 Astellas Pharma (China) å®‰ę–Æę³°ę„åˆ¶čÆ'),
(75218, 'https://ror.org/008hcnq44', 'en', 1, 'https://ror.org/008hcnq44 Action Toward Independence'),
(75219, 'https://ror.org/008n7jx79', 'en', 1, 'https://ror.org/008n7jx79 Institute of Sustainable Development, Environmental & Scientific Research'),
(75220, 'https://ror.org/008nqzn46', 'no_lang_code', 1, 'https://ror.org/008nqzn46 Vigyan Prasar ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤øą¤¾ą¤°'),
(75221, 'https://ror.org/008p13e68', 'no_lang_code', 1, 'https://ror.org/008p13e68 Farvet (Peru)'),
(75222, 'https://ror.org/008pcc762', 'de', 1, 'https://ror.org/008pcc762 Museum Folkwang'),
(75223, 'https://ror.org/008tj1x05', 'no_lang_code', 1, 'https://ror.org/008tj1x05 Strange Loop Games (United States)'),
(75224, 'https://ror.org/008ww7s63', 'no_lang_code', 1, 'https://ror.org/008ww7s63 Eurobio Scientific (France)'),
(75225, 'https://ror.org/008y8yz21', 'en', 1, 'https://ror.org/008y8yz21 European Research Infrastructure on Highly Pathogenic Agents'),
(75226, 'https://ror.org/0090yh913', 'en', 1, 'https://ror.org/0090yh913 Xiangshan County First People''s Hospital č±”å±±åŽæē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(75227, 'https://ror.org/00913vr41', 'no_lang_code', 1, 'https://ror.org/00913vr41 Ricardo (India)'),
(75228, 'https://ror.org/0092tvz34', 'en', 1, 'https://ror.org/0092tvz34 Biodiversity and Nature Conservation Association'),
(75229, 'https://ror.org/009399a74', 'en', 1, 'https://ror.org/009399a74 Shanghai Institute of Science & Technology Management'),
(75230, 'https://ror.org/0093rkw25', 'en', 1, 'https://ror.org/0093rkw25 Bhartiya Skill Development University ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„ą¤•ą¤æą¤² ą¤”ą¤µą¤²ą¤Ŗą¤®ą„‡ą¤Øą„ą¤Ÿ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(75231, 'https://ror.org/009498z64', 'no_lang_code', 1, 'https://ror.org/009498z64 Joint Active Systems (United States)'),
(75232, 'https://ror.org/0095a7z52', 'en', 1, 'https://ror.org/0095a7z52 Islamic Azad University Kashmar Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کاؓمر'),
(75233, 'https://ror.org/00961se81', 'en', 1, 'https://ror.org/00961se81 First Consultants Medical Center'),
(75234, 'https://ror.org/0096ngc39', 'no_lang_code', 1, 'https://ror.org/0096ngc39 Medibeacon (United States)'),
(75235, 'https://ror.org/00983c961', 'en', 1, 'https://ror.org/00983c961 Xian Center for Disease Control and Prevention č„æå®‰åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(75236, 'https://ror.org/0099s2a30', 'en', 1, 'https://ror.org/0099s2a30 German United Services Trade Union Vereinte Dienstleistungsgewerkschaft'),
(75237, 'https://ror.org/009cfk404', 'en', 1, 'https://ror.org/009cfk404 Electric Vehicle Transportation Center'),
(75238, 'https://ror.org/009epkm94', 'en', 1, 'https://ror.org/009epkm94 Center for Environmental Concerns'),
(75239, 'https://ror.org/009gkhz71', 'no_lang_code', 1, 'https://ror.org/009gkhz71 Tredegar (United States)'),
(75240, 'https://ror.org/009hj6r06', 'en', 1, 'https://ror.org/009hj6r06 Matsue History Museum ę¾ę±Ÿę­“å²åšē‰©é¤Ø'),
(75241, 'https://ror.org/009m9x557', 'no_lang_code', 1, 'https://ror.org/009m9x557 Storagenergy Technologies (United States)'),
(75242, 'https://ror.org/009qyxk73', 'no_lang_code', 1, 'https://ror.org/009qyxk73 Theron Pharmaceuticals (United States)'),
(75243, 'https://ror.org/009rg7s27', 'no_lang_code', 1, 'https://ror.org/009rg7s27 Biomed Protection (United States)'),
(75244, 'https://ror.org/009v0gn86', 'no_lang_code', 1, 'https://ror.org/009v0gn86 Energetický a Průmyslový Holding (Czechia)'),
(75245, 'https://ror.org/009wgy438', 'no_lang_code', 1, 'https://ror.org/009wgy438 Shell (Malaysia)'),
(75246, 'https://ror.org/009x7v589', 'en', 1, 'https://ror.org/009x7v589 Pharmacie des HƓpitaux de l''Est LƩmanique Pharmacy of the Eastern Vaud Hospitals'),
(75247, 'https://ror.org/009xejr53', 'de', 1, 'https://ror.org/009xejr53 Schön Klinik München Harlaching'),
(75248, 'https://ror.org/009xgxm43', 'no_lang_code', 1, 'https://ror.org/009xgxm43 Hosokawa Micron (United Kingdom)'),
(75249, 'https://ror.org/00a082661', 'no_lang_code', 1, 'https://ror.org/00a082661 Pollution Control Technologies (United States)'),
(75250, 'https://ror.org/00a0w0523', 'en', 1, 'https://ror.org/00a0w0523 Centre for East European and International Studies Zentrum für Osteuropa- und internationale Studien'),
(75251, 'https://ror.org/00a14tf81', 'en', 1, 'https://ror.org/00a14tf81 ISRO Propulsion Complex ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤…ą¤‚ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø संगठन ą¤Ŗą„ą¤°ą¤£ą„‹ą¤¦ą¤Ø ą¤øą¤®ą„‚ą¤¹ ą°‡ą°øą±ą°°ą±‹ ą°Ŗą±ą°°ą±Šą°Ŗą°²ą±ą°·ą°Øą± ą°•ą°¾ą°‚ą°Ŗą±ą°²ą±†ą°•ą±ą°øą±'),
(75252, 'https://ror.org/00a21fr98', 'en', 1, 'https://ror.org/00a21fr98 Environment and Plant Protection Research Institute ēŽÆå¢ƒäøŽę¤ē‰©äæęŠ¤ē ”ē©¶ę‰€'),
(75253, 'https://ror.org/00a2cej79', 'no_lang_code', 1, 'https://ror.org/00a2cej79 TCI (Taiwan) å¤§ę±Ÿē”Ÿé†«č‚”ä»½ęœ‰é™å…¬åø'),
(75254, 'https://ror.org/00a4gmh33', 'no_lang_code', 1, 'https://ror.org/00a4gmh33 Barricaid (United States)'),
(75255, 'https://ror.org/00a4nhr72', 'en', 1, 'https://ror.org/00a4nhr72 TrĘ°į»ng ĐẔi hį»c KhĆ”nh Hòa University of Khanh Hoa'),
(75256, 'https://ror.org/00a5h4251', 'no_lang_code', 1, 'https://ror.org/00a5h4251 Noveratech (United States)'),
(75257, 'https://ror.org/00a6gz882', 'no_lang_code', 1, 'https://ror.org/00a6gz882 Renova Life (United States)'),
(75258, 'https://ror.org/00aahzn97', 'en', 1, 'https://ror.org/00aahzn97 Bureau de la Coordination des Affaires Humanitaires United Nations Office for the Coordination of Humanitarian Affairs'),
(75259, 'https://ror.org/00aazk693', 'en', 1, 'https://ror.org/00aazk693 National Institute of Technology Manipur ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą¤£ą¤æą¤Ŗą„ą¤°'),
(75260, 'https://ror.org/00abset84', 'en', 1, 'https://ror.org/00abset84 Art College kobe ć‚¢ćƒ¼ćƒˆć‚«ćƒ¬ćƒƒć‚øē„žęˆø'),
(75261, 'https://ror.org/00ac1vt62', 'no_lang_code', 1, 'https://ror.org/00ac1vt62 Kenwood (United Kingdom)'),
(75262, 'https://ror.org/00acjv878', 'en', 1, 'https://ror.org/00acjv878 Oscar G. Johnson VA Medical Center'),
(75263, 'https://ror.org/00acss906', 'no_lang_code', 1, 'https://ror.org/00acss906 Saluda Medical (Australia)'),
(75264, 'https://ror.org/00adtdy17', 'en', 1, 'https://ror.org/00adtdy17 Eastern Mediterranean Public Health Network'),
(75265, 'https://ror.org/00aejfc65', 'es', 1, 'https://ror.org/00aejfc65 Consejo Nacional de Ciencia y TecnologĆ­a'),
(75266, 'https://ror.org/00afzhq19', 'en', 1, 'https://ror.org/00afzhq19 L.T. Malaya National Therapy Institute of the National Academy of Medical Sciences of Ukraine Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠŠ°Ń†iональний iŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ терапії iменi Š›.Š¢.ŠœŠ°Š»Š¾Ń— ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(75267, 'https://ror.org/00ah5w636', 'no_lang_code', 1, 'https://ror.org/00ah5w636 Centire Research (Slovakia)'),
(75268, 'https://ror.org/00ah6pg32', 'no_lang_code', 1, 'https://ror.org/00ah6pg32 SunRay Scientific (United States)'),
(75269, 'https://ror.org/00ahbw052', 'de', 1, 'https://ror.org/00ahbw052 Blindeninstitutsstiftung'),
(75270, 'https://ror.org/00am9gf93', 'en', 1, 'https://ror.org/00am9gf93 Southern African Migration Programme'),
(75271, 'https://ror.org/00ap23p40', 'no_lang_code', 1, 'https://ror.org/00ap23p40 Noom (United States)'),
(75272, 'https://ror.org/00apa0w81', 'no_lang_code', 1, 'https://ror.org/00apa0w81 Paragon 28 (United States)'),
(75273, 'https://ror.org/00as6b113', 'en', 1, 'https://ror.org/00as6b113 Inner Mongolia Chifeng Forestry Science Research Institute å†…č’™å¤čµ¤å³°åø‚ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(75274, 'https://ror.org/00av7cz64', 'no_lang_code', 1, 'https://ror.org/00av7cz64 International Research Associates (United States)'),
(75275, 'https://ror.org/00axkns98', 'en', 1, 'https://ror.org/00axkns98 Electronics Corporation of India'),
(75276, 'https://ror.org/00axm1v07', 'en', 1, 'https://ror.org/00axm1v07 Sudan Childhood Diabetes Association'),
(75277, 'https://ror.org/00az06337', 'no_lang_code', 1, 'https://ror.org/00az06337 ORIG3N (United States)'),
(75278, 'https://ror.org/00b0mey76', 'en', 1, 'https://ror.org/00b0mey76 Defence Institute of High Altitude Research'),
(75279, 'https://ror.org/00b1jmk08', 'no_lang_code', 1, 'https://ror.org/00b1jmk08 Huizhou Kimree Technology (China) ęƒ å·žåø‚é‡‘ē‘žē§‘ęŠ€ęœ‰é™å…¬åø'),
(75280, 'https://ror.org/00b49pe93', 'no_lang_code', 1, 'https://ror.org/00b49pe93 Dornier MedTech (Germany)'),
(75281, 'https://ror.org/00b4tzx19', 'fr', 1, 'https://ror.org/00b4tzx19 RƩseau National de Surveillance AƩrobiologique'),
(75282, 'https://ror.org/00b691416', 'en', 1, 'https://ror.org/00b691416 Marine Megafauna Foundation'),
(75283, 'https://ror.org/00b6x1q17', 'en', 1, 'https://ror.org/00b6x1q17 Hans Litten Archive Hans-Litten-Archiv'),
(75284, 'https://ror.org/00b7zyg88', 'en', 1, 'https://ror.org/00b7zyg88 Museum of Old and New Art'),
(75285, 'https://ror.org/00bc49e61', 'no_lang_code', 1, 'https://ror.org/00bc49e61 GLS Industries (Canada)'),
(75286, 'https://ror.org/00bcept67', 'no_lang_code', 1, 'https://ror.org/00bcept67 Deutsches Institut für Bautechnik (Germany)'),
(75287, 'https://ror.org/00bdxyz12', 'en', 1, 'https://ror.org/00bdxyz12 Hokkaido Arisu High School åŒ—ęµ·é“ęœ‰ę –é«˜ę ”'),
(75288, 'https://ror.org/00be0m967', 'en', 1, 'https://ror.org/00be0m967 United Nations University Institute for Sustainability and Peace å›½é€£å¤§å­¦ć‚µć‚¹ćƒ†ć‚¤ćƒŠćƒ“ćƒŖćƒ†ć‚£ćØå¹³å’Œē ”ē©¶ę‰€'),
(75289, 'https://ror.org/00bf6gk85', 'no_lang_code', 1, 'https://ror.org/00bf6gk85 Volkswagen Financial Services (Germany)'),
(75290, 'https://ror.org/00bg5mz75', 'no_lang_code', 1, 'https://ror.org/00bg5mz75 SkEyes Unlimited (United States)'),
(75291, 'https://ror.org/00bhbn803', 'en', 1, 'https://ror.org/00bhbn803 Chellaram Hospital'),
(75292, 'https://ror.org/00bhf5527', 'no_lang_code', 1, 'https://ror.org/00bhf5527 Ethypharm (United Kingdom)'),
(75293, 'https://ror.org/00bkjqa40', 'no_lang_code', 1, 'https://ror.org/00bkjqa40 InnoLas Solutions (Germany)'),
(75294, 'https://ror.org/00bs1hy45', 'en', 1, 'https://ror.org/00bs1hy45 Hospital PediƔtrico "Baca Ortiz" Pediatric Hospital "Baca Ortiz"'),
(75295, 'https://ror.org/00bs41j64', 'en', 1, 'https://ror.org/00bs41j64 United Nations Department of Peacekeeping Operations'),
(75296, 'https://ror.org/00bsbpb39', 'no_lang_code', 1, 'https://ror.org/00bsbpb39 Cannuflow (United States)'),
(75297, 'https://ror.org/00bv4hb15', 'fr', 1, 'https://ror.org/00bv4hb15 Centre Hospitalier de Wallonie Picarde'),
(75298, 'https://ror.org/00bwm5s42', 'en', 1, 'https://ror.org/00bwm5s42 Te Kaunihera ā-Rohe o Waikato Waikato Regional Council'),
(75299, 'https://ror.org/00bwvyk18', 'no_lang_code', 1, 'https://ror.org/00bwvyk18 Qatar Credit Bureau Ł…Ų±ŁƒŲ² قطر Ł„Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ų§Ł„Ų§Ų¦ŲŖŁ…Ų§Ł†ŁŠŲ©'),
(75300, 'https://ror.org/00byf8747', 'no_lang_code', 1, 'https://ror.org/00byf8747 Gorongosa National Park'),
(75301, 'https://ror.org/00byme428', 'fr', 1, 'https://ror.org/00byme428 Groupe FranƧais de Transplantation FƩcale'),
(75302, 'https://ror.org/00bzfhs56', 'en', 1, 'https://ror.org/00bzfhs56 The Technological College of Beer Sheva המכללה ×”×˜×›× ×•×œ×•×’×™×Ŗ באר שבע'),
(75303, 'https://ror.org/00c1g7649', 'no_lang_code', 1, 'https://ror.org/00c1g7649 werusys (Germany)'),
(75304, 'https://ror.org/00c1ha781', 'no_lang_code', 1, 'https://ror.org/00c1ha781 Tosho (Japan)'),
(75305, 'https://ror.org/00c20xw32', 'en', 1, 'https://ror.org/00c20xw32 Terminal Ballistics Research Laboratory'),
(75306, 'https://ror.org/00c2n9b56', 'en', 1, 'https://ror.org/00c2n9b56 Jewish Voice for Peace'),
(75307, 'https://ror.org/00c2nxt31', 'no_lang_code', 1, 'https://ror.org/00c2nxt31 Querium (United States)'),
(75308, 'https://ror.org/00c31c476', 'no_lang_code', 1, 'https://ror.org/00c31c476 Vishay Intertechnology (United States)'),
(75309, 'https://ror.org/00c44w836', 'en', 1, 'https://ror.org/00c44w836 Vivekananda Memorial Hospital'),
(75310, 'https://ror.org/00c782c94', 'no_lang_code', 1, 'https://ror.org/00c782c94 Mitsubishi UFJ Research & Consulting (Japan) äø‰č±UFJćƒŖć‚µćƒ¼ćƒ&ć‚³ćƒ³ć‚µćƒ«ćƒ†ć‚£ćƒ³ć‚°'),
(75311, 'https://ror.org/00c8nx045', 'en', 1, 'https://ror.org/00c8nx045 Australian National Insect Collection'),
(75312, 'https://ror.org/00c8vg612', 'no_lang_code', 1, 'https://ror.org/00c8vg612 Parasim (United States)'),
(75313, 'https://ror.org/00cb76512', 'en', 1, 'https://ror.org/00cb76512 Northland District Health Board'),
(75314, 'https://ror.org/00ccqnx36', 'en', 1, 'https://ror.org/00ccqnx36 Institute of Food Resources of National Academy of Agrarian Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ харчових Ń€ŠµŃŃƒŃ€ŃŃ–Š² ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(75315, 'https://ror.org/00ceh5s45', 'es', 1, 'https://ror.org/00ceh5s45 Departamento de EpidemiologĆ­a'),
(75316, 'https://ror.org/00cenf840', 'en', 1, 'https://ror.org/00cenf840 Providence Health & Services Alaska'),
(75317, 'https://ror.org/00ceqya16', 'no_lang_code', 1, 'https://ror.org/00ceqya16 Soterix Medical (United States)'),
(75318, 'https://ror.org/00cgds605', 'en', 1, 'https://ror.org/00cgds605 Forum Ekonomi Islam Dunia World Islamic Economic Forum Foundation'),
(75319, 'https://ror.org/00ck5k311', 'no_lang_code', 1, 'https://ror.org/00ck5k311 Boundless Bio (United States)'),
(75320, 'https://ror.org/00ckgf271', 'en', 1, 'https://ror.org/00ckgf271 Centre for Interdisciplinary Research and Education'),
(75321, 'https://ror.org/00cky6c92', 'no_lang_code', 1, 'https://ror.org/00cky6c92 Tesi (Finland)'),
(75322, 'https://ror.org/00cnznq20', 'de', 1, 'https://ror.org/00cnznq20 BUND-Hof Wendbüdel'),
(75323, 'https://ror.org/00cprwm60', 'en', 1, 'https://ror.org/00cprwm60 Center for Promotion of Advancement of Society'),
(75324, 'https://ror.org/00cqckx82', 'no_lang_code', 1, 'https://ror.org/00cqckx82 AbMax AntibodyChina (China) åŒ—äŗ¬å¤©ęˆę–°č„‰ē”Ÿē‰©ęŠ€ęœÆęœ‰é™å…¬åø'),
(75325, 'https://ror.org/00cr5zh57', 'no_lang_code', 1, 'https://ror.org/00cr5zh57 Fonterra (Australia)'),
(75326, 'https://ror.org/00crw9046', 'en', 1, 'https://ror.org/00crw9046 Islamic Azad University, Estahban Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد استهبان'),
(75327, 'https://ror.org/00cs5an78', 'no_lang_code', 1, 'https://ror.org/00cs5an78 Pixel Velocity (United States)'),
(75328, 'https://ror.org/00cv80m81', 'no_lang_code', 1, 'https://ror.org/00cv80m81 Cambridge Systematics (United States)'),
(75329, 'https://ror.org/00cvsxf87', 'no_lang_code', 1, 'https://ror.org/00cvsxf87 Atom Medical (Japan)'),
(75330, 'https://ror.org/00cwypn82', 'en', 1, 'https://ror.org/00cwypn82 Iranian National Center for Laser Science and Techology مرکز Ł…Ł„ŪŒ Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† Ł„ŪŒŲ²Ų± Ų§ŪŒŲ±Ų§Ł†'),
(75331, 'https://ror.org/00cx1hm79', 'no_lang_code', 1, 'https://ror.org/00cx1hm79 Sessler'),
(75332, 'https://ror.org/00cx2cp03', 'en', 1, 'https://ror.org/00cx2cp03 Association of German Agricultural Analytic and Research Institutes'),
(75333, 'https://ror.org/00cx3rx26', 'en', 1, 'https://ror.org/00cx3rx26 Overseas Museum Übersee Museum'),
(75334, 'https://ror.org/00cy9w266', 'no_lang_code', 1, 'https://ror.org/00cy9w266 Sensirion (Switzerland)'),
(75335, 'https://ror.org/00cyj6q75', 'no_lang_code', 1, 'https://ror.org/00cyj6q75 Orbits Lightwave (United States)'),
(75336, 'https://ror.org/00czdkn85', 'en', 1, 'https://ror.org/00czdkn85 Eskişehir City Hospital Eskişehir Şehir Hastanesi'),
(75337, 'https://ror.org/00d17v460', 'no_lang_code', 1, 'https://ror.org/00d17v460 Pacific Antenna Systems (United States)'),
(75338, 'https://ror.org/00d1mzg56', 'no_lang_code', 1, 'https://ror.org/00d1mzg56 Modern Electron (United States)'),
(75339, 'https://ror.org/00d22z552', 'de', 1, 'https://ror.org/00d22z552 Institut für Qualitätssicherung von Stoffsystemen Freiberg'),
(75340, 'https://ror.org/00d2zfh55', 'en', 1, 'https://ror.org/00d2zfh55 Departament Federal da Giustia e Polizia Dipartimento Federale di Giustizia e Polizia DƩpartement FƩdƩral de Justice et Police Eidgenƶssisches Justiz- und Polizeidepartement Federal Department of Justice and Police'),
(75341, 'https://ror.org/00d8dyw76', 'no_lang_code', 1, 'https://ror.org/00d8dyw76 Novilytic (United States)'),
(75342, 'https://ror.org/00d964061', 'en', 1, 'https://ror.org/00d964061 GoCare Health Solutions Limited'),
(75343, 'https://ror.org/00ddcfv11', 'en', 1, 'https://ror.org/00ddcfv11 Center for Dynamic Research on High Latitude Marine Ecosystems Centro de Investigación DinÔmica de Ecosistemas Marinos de Altas Latitudes'),
(75344, 'https://ror.org/00ddsq322', 'no_lang_code', 1, 'https://ror.org/00ddsq322 Viroclinics Biosciences (Netherlands)'),
(75345, 'https://ror.org/00ddzkr50', 'no_lang_code', 1, 'https://ror.org/00ddzkr50 Isogen (Germany)'),
(75346, 'https://ror.org/00dfbm658', 'en', 1, 'https://ror.org/00dfbm658 West Bengal State Council of Technical Education ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ কারিগরী পরিষদ'),
(75347, 'https://ror.org/00dg4wf63', 'de', 1, 'https://ror.org/00dg4wf63 Institut zur Fƶrderung von Bildung und Integration'),
(75348, 'https://ror.org/00djr1538', 'no_lang_code', 1, 'https://ror.org/00djr1538 DCA (United Kingdom)'),
(75349, 'https://ror.org/00dkekd57', 'en', 1, 'https://ror.org/00dkekd57 Institute of Economic Affairs, Ghana'),
(75350, 'https://ror.org/00dks7s70', 'no_lang_code', 1, 'https://ror.org/00dks7s70 SoftTeam Solutions (India)'),
(75351, 'https://ror.org/00dp5a155', 'en', 1, 'https://ror.org/00dp5a155 TIFR Centre for Applicable Mathematics'),
(75352, 'https://ror.org/00dpp6p47', 'no_lang_code', 1, 'https://ror.org/00dpp6p47 Caixin (China) 蓢新传媒'),
(75353, 'https://ror.org/00drdr242', 'no_lang_code', 1, 'https://ror.org/00drdr242 AnywherEnergy (United States)'),
(75354, 'https://ror.org/00dsvzt91', 'no_lang_code', 1, 'https://ror.org/00dsvzt91 Mutabilis (France)'),
(75355, 'https://ror.org/00dx35m16', 'en', 1, 'https://ror.org/00dx35m16 Western Human Nutrition Research Center'),
(75356, 'https://ror.org/00dys1t73', 'no_lang_code', 1, 'https://ror.org/00dys1t73 Gibaud (France)'),
(75357, 'https://ror.org/00dyz4s77', 'no_lang_code', 1, 'https://ror.org/00dyz4s77 Acura Pharmaceuticals (United States)'),
(75358, 'https://ror.org/00e06he13', 'en', 1, 'https://ror.org/00e06he13 The Neuroblastoma Children''s Cancer Society'),
(75359, 'https://ror.org/00e1em465', 'en', 1, 'https://ror.org/00e1em465 Centre for Personnel Talent Management ą¤•ą¤¾ą¤°ą„ą¤®ą¤æą¤• ą¤Ŗą„ą¤°ą¤¤ą¤æą¤­ą¤¾ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(75360, 'https://ror.org/00e1g1704', 'no_lang_code', 1, 'https://ror.org/00e1g1704 Vector Composites (United States)'),
(75361, 'https://ror.org/00e1wd906', 'en', 1, 'https://ror.org/00e1wd906 Institute of Electronics, Information and Communication Engineers é›»å­ęƒ…å ±é€šäæ”å­¦ä¼š'),
(75362, 'https://ror.org/00e1xxm21', 'no_lang_code', 1, 'https://ror.org/00e1xxm21 Sogrape Vinhos (Portugal)'),
(75363, 'https://ror.org/00e27h292', 'no_lang_code', 1, 'https://ror.org/00e27h292 Synthonics (United States)'),
(75364, 'https://ror.org/00e2b9v40', 'no_lang_code', 1, 'https://ror.org/00e2b9v40 Phoenix Digital (United States)'),
(75365, 'https://ror.org/00e2xjp58', 'en', 1, 'https://ror.org/00e2xjp58 Anabuki Design College ē©“å¹ćƒ‡ć‚¶ć‚¤ćƒ³å°‚é–€å­¦ę ”'),
(75366, 'https://ror.org/00e3c6786', 'en', 1, 'https://ror.org/00e3c6786 Scottish Council on Human Bioethics'),
(75367, 'https://ror.org/00e3qze54', 'no_lang_code', 1, 'https://ror.org/00e3qze54 AutomatizĆ”cia železničnej Dopravy (Slovakia)'),
(75368, 'https://ror.org/00e42m728', 'en', 1, 'https://ror.org/00e42m728 Kumamoto Prefectural Museum Network Center ē†Šęœ¬ēœŒåšē‰©é¤ØćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æć‚»ćƒ³ć‚æćƒ¼'),
(75369, 'https://ror.org/00e52k684', 'en', 1, 'https://ror.org/00e52k684 Fuyang Second People''s Hospital é˜œé˜³åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(75370, 'https://ror.org/00e6dgm57', 'no_lang_code', 1, 'https://ror.org/00e6dgm57 NewPath Learning (United States)'),
(75371, 'https://ror.org/00e71xp25', 'no_lang_code', 1, 'https://ror.org/00e71xp25 RegeneRx Biopharmaceuticals (United States)'),
(75372, 'https://ror.org/00e73ws79', 'no_lang_code', 1, 'https://ror.org/00e73ws79 DO'),
(75373, 'https://ror.org/00e8ed254', 'de', 1, 'https://ror.org/00e8ed254 Rhein-Ruhr Institut für Sozialforschung und Politikberatung'),
(75374, 'https://ror.org/00e98bw30', 'en', 1, 'https://ror.org/00e98bw30 Coalition of Open Access Policy Institutions'),
(75375, 'https://ror.org/00e9neb15', 'no_lang_code', 1, 'https://ror.org/00e9neb15 Institut für Qualität im Management (Germany)'),
(75376, 'https://ror.org/00e9z4164', 'en', 1, 'https://ror.org/00e9z4164 Miyazaki Prefectural Art Museum å®®å“ŽēœŒē«‹ē¾Žč”“é¤Ø'),
(75377, 'https://ror.org/00ea83k06', 'de', 1, 'https://ror.org/00ea83k06 Institut für Kommunikation und Wirtschaftsbildung'),
(75378, 'https://ror.org/00ebvm839', 'no_lang_code', 1, 'https://ror.org/00ebvm839 Northern Minerals (Australia)'),
(75379, 'https://ror.org/00ecwxa31', 'no_lang_code', 1, 'https://ror.org/00ecwxa31 Procedyne (United States)'),
(75380, 'https://ror.org/00eefy724', 'en', 1, 'https://ror.org/00eefy724 Bundesamt für die Sicherheit der nuklearen Entsorgung Federal Office for the Safety of Nuclear Waste Management'),
(75381, 'https://ror.org/00eexgx04', 'no_lang_code', 1, 'https://ror.org/00eexgx04 Dril Quip (United States)'),
(75382, 'https://ror.org/00ef1tn69', 'no_lang_code', 1, 'https://ror.org/00ef1tn69 Northern Power Systems (United States)'),
(75383, 'https://ror.org/00eh21150', 'en', 1, 'https://ror.org/00eh21150 Cummings Veterinary Medical Center'),
(75384, 'https://ror.org/00ehgcp58', 'no_lang_code', 1, 'https://ror.org/00ehgcp58 Mitaka Kohki (Japan)'),
(75385, 'https://ror.org/00ehvs489', 'de', 1, 'https://ror.org/00ehvs489 Forschungsvereinigung Antriebstechnik'),
(75386, 'https://ror.org/00ejvzn98', 'no_lang_code', 1, 'https://ror.org/00ejvzn98 Shanghai Techwell Biopharmaceutical (China)'),
(75387, 'https://ror.org/00ekwzh02', 'en', 1, 'https://ror.org/00ekwzh02 Aomori Prefectural School Education Center é’ę£®ēœŒē·åˆå­¦ę ”ę•™č‚²ć‚»ćƒ³ć‚æ'),
(75388, 'https://ror.org/00emba706', 'no_lang_code', 1, 'https://ror.org/00emba706 Iridex (United States)'),
(75389, 'https://ror.org/00epa7w16', 'no_lang_code', 1, 'https://ror.org/00epa7w16 Paramount Bed (Japan) ćƒ‘ćƒ©ćƒžć‚¦ćƒ³ćƒˆćƒ™ćƒƒćƒ‰ę Ŗå¼ä¼šē¤¾'),
(75390, 'https://ror.org/00eqyc023', 'no_lang_code', 1, 'https://ror.org/00eqyc023 GI Dynamics (United States)'),
(75391, 'https://ror.org/00etypk41', 'no_lang_code', 1, 'https://ror.org/00etypk41 Institut für Umformtechnik (Germany)'),
(75392, 'https://ror.org/00ev5ap50', 'en', 1, 'https://ror.org/00ev5ap50 ZRT Laboratory'),
(75393, 'https://ror.org/00evn4913', 'no_lang_code', 1, 'https://ror.org/00evn4913 Norbrook (United Kingdom)'),
(75394, 'https://ror.org/00ewyxm56', 'en', 1, 'https://ror.org/00ewyxm56 Centre for Air Borne System ą¤µą¤¾ą¤Æą„ą¤µą¤¾ą¤¹ą¤æą¤¤ ą¤Ŗą„ą¤°ą¤£ą¤¾ą¤²ą„€ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(75395, 'https://ror.org/00exc4v70', 'fr', 1, 'https://ror.org/00exc4v70 Institut Amadeus'),
(75396, 'https://ror.org/00exzt005', 'no_lang_code', 1, 'https://ror.org/00exzt005 Xalud Therapeutics (United States)'),
(75397, 'https://ror.org/00eyegs12', 'de', 1, 'https://ror.org/00eyegs12 Institut für Kompetenz und Begabung'),
(75398, 'https://ror.org/00ez5eh91', 'en', 1, 'https://ror.org/00ez5eh91 Center for Advanced Biomaterials for Healthcare'),
(75399, 'https://ror.org/00f2c2516', 'en', 1, 'https://ror.org/00f2c2516 Guangzhou Experimental Station äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢å¹æå·žå®žéŖŒē«™'),
(75400, 'https://ror.org/00f330z90', 'en', 1, 'https://ror.org/00f330z90 Poma International Business University'),
(75401, 'https://ror.org/00f6a9h42', 'en', 1, 'https://ror.org/00f6a9h42 National Institute of Animal Biotechnology'),
(75402, 'https://ror.org/00f6b3992', 'no_lang_code', 1, 'https://ror.org/00f6b3992 The 451 Group (United States)'),
(75403, 'https://ror.org/00f7kfd14', 'en', 1, 'https://ror.org/00f7kfd14 Dulbecco Telethon Institute'),
(75404, 'https://ror.org/00f7ytv44', 'en', 1, 'https://ror.org/00f7ytv44 Curculio Institute'),
(75405, 'https://ror.org/00f8ebm77', 'es', 1, 'https://ror.org/00f8ebm77 SELVA'),
(75406, 'https://ror.org/00f8k0n29', 'en', 1, 'https://ror.org/00f8k0n29 Earl Haig Secondary School'),
(75407, 'https://ror.org/00faxb822', 'no_lang_code', 1, 'https://ror.org/00faxb822 DIGIBƍS (Spain)'),
(75408, 'https://ror.org/00fc1yz57', 'no_lang_code', 1, 'https://ror.org/00fc1yz57 Laboratorios FarmaceĆŗticos Rovi (Spain)'),
(75409, 'https://ror.org/00fcv5w97', 'no_lang_code', 1, 'https://ror.org/00fcv5w97 Loewenstein Medical Technology (Germany)'),
(75410, 'https://ror.org/00fdb3g61', 'no_lang_code', 1, 'https://ror.org/00fdb3g61 Henke-Sass Wolf (Germany)'),
(75411, 'https://ror.org/00feczr54', 'no_lang_code', 1, 'https://ror.org/00feczr54 PureCircle (United States)'),
(75412, 'https://ror.org/00fefjp46', 'en', 1, 'https://ror.org/00fefjp46 Pertubuhan Pertolongan Wanita Women''s Aid Organisation'),
(75413, 'https://ror.org/00ffcee24', 'en', 1, 'https://ror.org/00ffcee24 Australian Hearing'),
(75414, 'https://ror.org/00ffejy44', 'no_lang_code', 1, 'https://ror.org/00ffejy44 Teikoku Seiyaku (Japan) åøåœ‹č£½č–¬ćˆ±'),
(75415, 'https://ror.org/00fjpwq08', 'no_lang_code', 1, 'https://ror.org/00fjpwq08 Stadtwerk Haßfurt (Germany)'),
(75416, 'https://ror.org/00fkq8j89', 'no_lang_code', 1, 'https://ror.org/00fkq8j89 ThrustMe (France)'),
(75417, 'https://ror.org/00fpp6w90', 'no_lang_code', 1, 'https://ror.org/00fpp6w90 PowerFilm (United States)'),
(75418, 'https://ror.org/00fr8m236', 'en', 1, 'https://ror.org/00fr8m236 Canadian Media Concentration Research Project'),
(75419, 'https://ror.org/00ft0fw96', 'en', 1, 'https://ror.org/00ft0fw96 China Centre for Resources Satellite Data and Application äø­å›½čµ„ęŗå«ę˜Ÿåŗ”ē”Øäø­åæƒ'),
(75420, 'https://ror.org/00ft0j474', 'en', 1, 'https://ror.org/00ft0j474 Lebanon VA Medical Center'),
(75421, 'https://ror.org/00fx5vd87', 'no_lang_code', 1, 'https://ror.org/00fx5vd87 Xenex Disinfection Services (United States)'),
(75422, 'https://ror.org/00fz72d40', 'no_lang_code', 1, 'https://ror.org/00fz72d40 Visage Technologies (Sweden)'),
(75423, 'https://ror.org/00fzcyf28', 'no_lang_code', 1, 'https://ror.org/00fzcyf28 Royal Engineered Composites (United States)'),
(75424, 'https://ror.org/00fzf1h89', 'en', 1, 'https://ror.org/00fzf1h89 HOSEI Daini Junior and Senior High School ę³•ę”æå¤§å­¦ē¬¬äŗŒäø­'),
(75425, 'https://ror.org/00g15v148', 'no_lang_code', 1, 'https://ror.org/00g15v148 Nyangabgwe Referral Hospital'),
(75426, 'https://ror.org/00g1jg068', 'no_lang_code', 1, 'https://ror.org/00g1jg068 Xybion Corporation (United States)'),
(75427, 'https://ror.org/00g2e9181', 'no_lang_code', 1, 'https://ror.org/00g2e9181 Njoy (United States)'),
(75428, 'https://ror.org/00g35nv72', 'no_lang_code', 1, 'https://ror.org/00g35nv72 EndoGastric Solutions (United States)'),
(75429, 'https://ror.org/00g3f8n09', 'en', 1, 'https://ror.org/00g3f8n09 Ningbo Center for Disease Control and Prevention å®ę³¢åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(75430, 'https://ror.org/00g3t5227', 'no_lang_code', 1, 'https://ror.org/00g3t5227 Phenex Pharmaceuticals (Germany)'),
(75431, 'https://ror.org/00g46p143', 'en', 1, 'https://ror.org/00g46p143 Agricultural Product Processing Research Institute å†œäŗ§å“åŠ å·„ē ”ē©¶ę‰€'),
(75432, 'https://ror.org/00g4wce19', 'no_lang_code', 1, 'https://ror.org/00g4wce19 Stoller Ingenieurtechnik (Germany)'),
(75433, 'https://ror.org/00g552c12', 'en', 1, 'https://ror.org/00g552c12 Association Suisse des Investisseurs en Capital et de Financement Schweizerische Vereinigung für Unternehmensfinanzierung The Swiss Private Equity & Corporate Finance Association'),
(75434, 'https://ror.org/00g56wy16', 'en', 1, 'https://ror.org/00g56wy16 Shanghai Stomatological Hospital äøŠęµ·åø‚å£č…”ē—…é˜²ę²»é™¢'),
(75435, 'https://ror.org/00g5xkr82', 'no_lang_code', 1, 'https://ror.org/00g5xkr82 Lianyungang Runzhong Pharmaceutical (China) čæžäŗ‘ęøÆę¶¦ä¼—åˆ¶čÆęœ‰é™å…¬åø'),
(75436, 'https://ror.org/00g7r3086', 'no_lang_code', 1, 'https://ror.org/00g7r3086 Perpetua (United States)'),
(75437, 'https://ror.org/00g87gv13', 'en', 1, 'https://ror.org/00g87gv13 Beijing Shijingshan Hospital åŒ—äŗ¬åø‚ēŸ³ę™Æå±±åŒ»é™¢'),
(75438, 'https://ror.org/00g8ww875', 'en', 1, 'https://ror.org/00g8ww875 AWS-Institut für Digitale Produkte und Prozesse AWS-Institute for Digitized Products and Processes'),
(75439, 'https://ror.org/00g934978', 'no_lang_code', 1, 'https://ror.org/00g934978 Clinical Microbiomics (Denmark)'),
(75440, 'https://ror.org/00gbn4v29', 'en', 1, 'https://ror.org/00gbn4v29 Global Alliance for Incinerator Alternatives'),
(75441, 'https://ror.org/00gc85q68', 'es', 1, 'https://ror.org/00gc85q68 Corporación de Estudios Sociales y Educación'),
(75442, 'https://ror.org/00geck193', 'no_lang_code', 1, 'https://ror.org/00geck193 Kirinyaga University'),
(75443, 'https://ror.org/00ged3985', 'en', 1, 'https://ror.org/00ged3985 Mieko Fuji Contemporary Dance School & Company åÆŒå£«ē¾Žęžå­ć‚³ćƒ³ćƒ†ćƒ³ćƒćƒ©ćƒŖćƒ¼ćƒ€ćƒ³ć‚¹ć‚¹ć‚Æćƒ¼ćƒ«ļ¼†ć‚«ćƒ³ćƒ‘ćƒ‹ćƒ¼'),
(75444, 'https://ror.org/00gga3b91', 'no_lang_code', 1, 'https://ror.org/00gga3b91 Fisher & Paykel Appliances (New Zealand)'),
(75445, 'https://ror.org/00ggswp78', 'no_lang_code', 1, 'https://ror.org/00ggswp78 Ganesamoni Hospital'),
(75446, 'https://ror.org/00ghe3j58', 'no_lang_code', 1, 'https://ror.org/00ghe3j58 Koken (Japan) ę Ŗå¼ä¼šē¤¾é«˜ē ”'),
(75447, 'https://ror.org/00ghnph13', 'en', 1, 'https://ror.org/00ghnph13 Fujian Blood Center ē¦å»ŗč”€ę¶²äø­åæƒ'),
(75448, 'https://ror.org/00gj56b42', 'en', 1, 'https://ror.org/00gj56b42 Friends of Rosie Children''s Cancer Research Fund'),
(75449, 'https://ror.org/00gjhva62', 'en', 1, 'https://ror.org/00gjhva62 Lifecare Innovations (India)'),
(75450, 'https://ror.org/00gk5fa11', 'en', 1, 'https://ror.org/00gk5fa11 Sheikh Shakhbout Medical City Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų“ŁŠŲ® ؓخبوط Ų§Ł„Ų·ŲØŁŠŲ©'),
(75451, 'https://ror.org/00gnzfk51', 'no_lang_code', 1, 'https://ror.org/00gnzfk51 Sansho (Japan) äø‰ę™¶ę Ŗå¼ä¼šē¤¾'),
(75452, 'https://ror.org/00gqx0b07', 'no_lang_code', 1, 'https://ror.org/00gqx0b07 Xenotran (United States)'),
(75453, 'https://ror.org/00grkfw93', 'no_lang_code', 1, 'https://ror.org/00grkfw93 SlovenskĆ” ElektrizačnĆ” PrenosovĆ” SĆŗstava (Slovakia)'),
(75454, 'https://ror.org/00gsmyw97', 'en', 1, 'https://ror.org/00gsmyw97 Central Avian Research Institute ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤Ŗą¤•ą„ą¤·ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(75455, 'https://ror.org/00gv7g150', 'en', 1, 'https://ror.org/00gv7g150 Clinica Esperanza/Hope Clinic'),
(75456, 'https://ror.org/00gvawq92', 'no_lang_code', 1, 'https://ror.org/00gvawq92 Reflexion Health (United States)'),
(75457, 'https://ror.org/00gvay066', 'pt', 1, 'https://ror.org/00gvay066 Instituto Gremar'),
(75458, 'https://ror.org/00gw0v185', 'no_lang_code', 1, 'https://ror.org/00gw0v185 Inovance (China)'),
(75459, 'https://ror.org/00gxg2532', 'en', 1, 'https://ror.org/00gxg2532 Association for BahÔ’í Studies'),
(75460, 'https://ror.org/00gz53f50', 'en', 1, 'https://ror.org/00gz53f50 Centre for Public Policy Research'),
(75461, 'https://ror.org/00gzext40', 'no_lang_code', 1, 'https://ror.org/00gzext40 Operative Experience (United States)'),
(75462, 'https://ror.org/00h03ws35', 'no_lang_code', 1, 'https://ror.org/00h03ws35 Institut für Umwelttechnologien (Germany)'),
(75463, 'https://ror.org/00h2m4d20', 'en', 1, 'https://ror.org/00h2m4d20 Hemophilia Center of Iran Ś©Ų§Ł†ŁˆŁ† Ł‡Ł…ŁˆŁŪŒŁ„ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(75464, 'https://ror.org/00h46mj69', 'no_lang_code', 1, 'https://ror.org/00h46mj69 Seer Systems (United States)'),
(75465, 'https://ror.org/00h539j16', 'en', 1, 'https://ror.org/00h539j16 Bavarian Research Institute for Digital Transformation Bayerisches Forschungsinstitut für digitale Transformation'),
(75466, 'https://ror.org/00h56hn14', 'no_lang_code', 1, 'https://ror.org/00h56hn14 SK Discovery (South Korea) SKė””ģŠ¤ģ»¤ė²„ė¦¬'),
(75467, 'https://ror.org/00h626c53', 'en', 1, 'https://ror.org/00h626c53 The Fourth People''s Hospital of Zibo City ę·„åšåø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(75468, 'https://ror.org/00h7cs967', 'en', 1, 'https://ror.org/00h7cs967 Mid-Atlantic University Transportation Center'),
(75469, 'https://ror.org/00h8xmr33', 'no_lang_code', 1, 'https://ror.org/00h8xmr33 Science Learning Resources (United States)'),
(75470, 'https://ror.org/00h9s7503', 'no_lang_code', 1, 'https://ror.org/00h9s7503 TrueOne Semiconductor (China) ä¼—å…ƒåŠåÆ¼ä½“'),
(75471, 'https://ror.org/00habgn55', 'de', 1, 'https://ror.org/00habgn55 Die Senatorin für Kinder und Bildung'),
(75472, 'https://ror.org/00hanm733', 'en', 1, 'https://ror.org/00hanm733 Kyoto Prefectural Library and Archives äŗ¬éƒ½åŗœē«‹ē·åˆč³‡ę–™é¤Ø'),
(75473, 'https://ror.org/00hbc3482', 'de', 1, 'https://ror.org/00hbc3482 Institut für Innovations- und Informationsmanagement'),
(75474, 'https://ror.org/00hbteh17', 'de', 1, 'https://ror.org/00hbteh17 Forschungsvereinigung Elektrotechnik beim ZVEI'),
(75475, 'https://ror.org/00hew8j40', 'no_lang_code', 1, 'https://ror.org/00hew8j40 TaiGen Biotechnology (Taiwan)'),
(75476, 'https://ror.org/00hfjx819', 'no_lang_code', 1, 'https://ror.org/00hfjx819 OSRAM (United Kingdom)'),
(75477, 'https://ror.org/00hgexf21', 'no_lang_code', 1, 'https://ror.org/00hgexf21 TranS1 (United States)'),
(75478, 'https://ror.org/00hgn5a42', 'no_lang_code', 1, 'https://ror.org/00hgn5a42 Sentien (United States)'),
(75479, 'https://ror.org/00hgq7r66', 'no_lang_code', 1, 'https://ror.org/00hgq7r66 Fichtner (Germany)'),
(75480, 'https://ror.org/00hkvk052', 'en', 1, 'https://ror.org/00hkvk052 Forschungsinstitut für Bildungs- und Sozialökonomie Research Institute for the Economics of Education and Social Affairs'),
(75481, 'https://ror.org/00hm4a331', 'en', 1, 'https://ror.org/00hm4a331 Antwerp Management School'),
(75482, 'https://ror.org/00hn06s81', 'no_lang_code', 1, 'https://ror.org/00hn06s81 Everspin Technologies (United States)'),
(75483, 'https://ror.org/00hn65a26', 'en', 1, 'https://ror.org/00hn65a26 Banco Central de la RepĆŗblica Argentina Central Bank of Argentina'),
(75484, 'https://ror.org/00hn7pt27', 'de', 1, 'https://ror.org/00hn7pt27 Haus der Natur - Museum für Natur und Technik'),
(75485, 'https://ror.org/00hq78102', 'no_lang_code', 1, 'https://ror.org/00hq78102 A.M. Surgical (United States)'),
(75486, 'https://ror.org/00hv1r627', 'en', 1, 'https://ror.org/00hv1r627 Shenzhen Research Institute of China University of Geosciences äø­å›½åœ°č“Øå¤§å­¦ę·±åœ³ē ”ē©¶é™¢'),
(75487, 'https://ror.org/00hxc6390', 'no_lang_code', 1, 'https://ror.org/00hxc6390 NanoGraf (United States)'),
(75488, 'https://ror.org/00hxnw991', 'no_lang_code', 1, 'https://ror.org/00hxnw991 Theva (Germany)'),
(75489, 'https://ror.org/00hyd8090', 'de', 1, 'https://ror.org/00hyd8090 Institut für Medizinische Biometrie, Informatik und Epidemiologie'),
(75490, 'https://ror.org/00j08hk87', 'no_lang_code', 1, 'https://ror.org/00j08hk87 Adama (Israel) אדמה בע"×žā€Ž'),
(75491, 'https://ror.org/00j0ctk30', 'en', 1, 'https://ror.org/00j0ctk30 Banc Ceannais na hƉireann Central Bank of Ireland'),
(75492, 'https://ror.org/00j0gr892', 'en', 1, 'https://ror.org/00j0gr892 Women''s Coalition of Zimbabwe'),
(75493, 'https://ror.org/00j48ny80', 'no_lang_code', 1, 'https://ror.org/00j48ny80 Focused Photonics (China) čšå…‰ē§‘ęŠ€'),
(75494, 'https://ror.org/00j7rye35', 'en', 1, 'https://ror.org/00j7rye35 Cambridge Science Centre'),
(75495, 'https://ror.org/00jabcz03', 'no_lang_code', 1, 'https://ror.org/00jabcz03 Zobele (Italy)'),
(75496, 'https://ror.org/00jb5hw73', 'no_lang_code', 1, 'https://ror.org/00jb5hw73 Tasso (United States)'),
(75497, 'https://ror.org/00jbakb92', 'no_lang_code', 1, 'https://ror.org/00jbakb92 Branston (United Kingdom)'),
(75498, 'https://ror.org/00jd15125', 'no_lang_code', 1, 'https://ror.org/00jd15125 Propath Services (United States)'),
(75499, 'https://ror.org/00jd3sh61', 'no_lang_code', 1, 'https://ror.org/00jd3sh61 HKScan (Finland)'),
(75500, 'https://ror.org/00jep9q10', 'no_lang_code', 1, 'https://ror.org/00jep9q10 KOSƉ (Japan) ę Ŗå¼ä¼šē¤¾ć‚³ćƒ¼ć‚»ćƒ¼'),
(75501, 'https://ror.org/00jfeg660', 'en', 1, 'https://ror.org/00jfeg660 Center for the Neural Basis of Cognition'),
(75502, 'https://ror.org/00jffhp45', 'no_lang_code', 1, 'https://ror.org/00jffhp45 POGO (United States)'),
(75503, 'https://ror.org/00jgaep33', 'es', 1, 'https://ror.org/00jgaep33 Dr. Lucio MelƩndez Hospital Zonal General de Agudos'),
(75504, 'https://ror.org/00jhgmb27', 'no_lang_code', 1, 'https://ror.org/00jhgmb27 iCeutica (United States)'),
(75505, 'https://ror.org/00jj3h083', 'en', 1, 'https://ror.org/00jj3h083 Institute of Plant and Microbial Biology, Academia Sinica äø­å¤®ē ”ē©¶é™¢ę¤ē‰©ęšØå¾®ē”Ÿē‰©å­øē ”ē©¶ę‰€'),
(75506, 'https://ror.org/00jpm8e16', 'no_lang_code', 1, 'https://ror.org/00jpm8e16 Mattson Technology (Germany)'),
(75507, 'https://ror.org/00js99a33', 'de', 1, 'https://ror.org/00js99a33 Batteryuniversity'),
(75508, 'https://ror.org/00jsec129', 'en', 1, 'https://ror.org/00jsec129 PƤdagogische Hochschule Oberƶsterreich University of Education Upper Austria'),
(75509, 'https://ror.org/00jsnkt88', 'no_lang_code', 1, 'https://ror.org/00jsnkt88 Dragonfly Data Science (New Zealand)'),
(75510, 'https://ror.org/00jt3dw39', 'en', 1, 'https://ror.org/00jt3dw39 Institute of Biological Chemistry, Academia Sinica äø­å¤®ē ”ē©¶é™¢ē”Ÿē‰©åŒ–å­øē ”ē©¶ę‰€'),
(75511, 'https://ror.org/00jv6rk33', 'no_lang_code', 1, 'https://ror.org/00jv6rk33 Nehemiah Security (United States)');
INSERT INTO `rors` VALUES
(75512, 'https://ror.org/00jy7vv12', 'de', 1, 'https://ror.org/00jy7vv12 Verein für Umweltmanagement und Nachhaltigkeit in Finanzinstituten'),
(75513, 'https://ror.org/00jzyfv14', 'no_lang_code', 1, 'https://ror.org/00jzyfv14 Meyra (Germany)'),
(75514, 'https://ror.org/00k03v073', 'no_lang_code', 1, 'https://ror.org/00k03v073 CoImmune (United States)'),
(75515, 'https://ror.org/00k085e72', 'no_lang_code', 1, 'https://ror.org/00k085e72 NanoMedical Systems (United States)'),
(75516, 'https://ror.org/00k1y3f49', 'en', 1, 'https://ror.org/00k1y3f49 Vector & Vector-Borne Diseases Research Institute'),
(75517, 'https://ror.org/00k389k29', 'no_lang_code', 1, 'https://ror.org/00k389k29 Rahko (United Kingdom)'),
(75518, 'https://ror.org/00k8bhh21', 'en', 1, 'https://ror.org/00k8bhh21 Polar Libraries Colloquy'),
(75519, 'https://ror.org/00k9exb07', 'no_lang_code', 1, 'https://ror.org/00k9exb07 Yashentech (China) äŗšē”³ē§‘ęŠ€'),
(75520, 'https://ror.org/00kan1k39', 'en', 1, 'https://ror.org/00kan1k39 VA Illiana Health Care System'),
(75521, 'https://ror.org/00kbw8090', 'no_lang_code', 1, 'https://ror.org/00kbw8090 Hameln (Slovakia)'),
(75522, 'https://ror.org/00kc2sb72', 'fr', 1, 'https://ror.org/00kc2sb72 Centre Hospitalier RƩgional de Namur'),
(75523, 'https://ror.org/00kc5p198', 'en', 1, 'https://ror.org/00kc5p198 Defence Bioengineering and Electromedical Laboratory ą¤°ą¤•ą„ą¤·ą¤¾ ą¤œą„ˆą¤µ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ और ą¤µą¤æą¤¦ą„ą¤Æą„ą¤¤ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤•ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(75524, 'https://ror.org/00kcb8667', 'no_lang_code', 1, 'https://ror.org/00kcb8667 Airway Technologies (United States)'),
(75525, 'https://ror.org/00kd86526', 'no_lang_code', 1, 'https://ror.org/00kd86526 Ultradent Products (United States)'),
(75526, 'https://ror.org/00kewyc44', 'no_lang_code', 1, 'https://ror.org/00kewyc44 Praj (India)'),
(75527, 'https://ror.org/00kfae706', 'en', 1, 'https://ror.org/00kfae706 Qinzhou Maternity and Child Health Care Hospital é’¦å·žåø‚å¦‡å¹¼äæå„é™¢'),
(75528, 'https://ror.org/00khe8x73', 'no_lang_code', 1, 'https://ror.org/00khe8x73 Tennet (Germany)'),
(75529, 'https://ror.org/00khsgc96', 'no_lang_code', 1, 'https://ror.org/00khsgc96 The RebornCell (South Korea) ė”ė¦¬ė³øģ…€'),
(75530, 'https://ror.org/00kr78d81', 'no_lang_code', 1, 'https://ror.org/00kr78d81 Nippon Chemiphar (Japan)'),
(75531, 'https://ror.org/00krh1q73', 'no_lang_code', 1, 'https://ror.org/00krh1q73 Smart Electric Grid (United States)'),
(75532, 'https://ror.org/00kt9hm47', 'no_lang_code', 1, 'https://ror.org/00kt9hm47 Hensoldt (Germany)'),
(75533, 'https://ror.org/00kw49k87', 'en', 1, 'https://ror.org/00kw49k87 Equal Justice Initiative'),
(75534, 'https://ror.org/00kwmw966', 'no_lang_code', 1, 'https://ror.org/00kwmw966 MeVis BreastCare (Germany)'),
(75535, 'https://ror.org/00kxdws42', 'no_lang_code', 1, 'https://ror.org/00kxdws42 Neovasc Tiara (Canada)'),
(75536, 'https://ror.org/00ky63q47', 'no_lang_code', 1, 'https://ror.org/00ky63q47 Pentum Group (United States)'),
(75537, 'https://ror.org/00m0wp850', 'no_lang_code', 1, 'https://ror.org/00m0wp850 Ascensia Diabetes Care (Switzerland)'),
(75538, 'https://ror.org/00m1bsz76', 'en', 1, 'https://ror.org/00m1bsz76 Federal Polytechnic Oko'),
(75539, 'https://ror.org/00m22r904', 'no_lang_code', 1, 'https://ror.org/00m22r904 Vim Spectrum'),
(75540, 'https://ror.org/00m235s66', 'en', 1, 'https://ror.org/00m235s66 Solar Heating and Cooling Programme'),
(75541, 'https://ror.org/00m25j606', 'no_lang_code', 1, 'https://ror.org/00m25j606 Polypipe (United Kingdom)'),
(75542, 'https://ror.org/00m6hew51', 'en', 1, 'https://ror.org/00m6hew51 Center for Creative Initiatives in Health and Population'),
(75543, 'https://ror.org/00m6yzj29', 'no_lang_code', 1, 'https://ror.org/00m6yzj29 Northern Microdesign (United States)'),
(75544, 'https://ror.org/00m73vh91', 'no_lang_code', 1, 'https://ror.org/00m73vh91 RS Global (Poland)'),
(75545, 'https://ror.org/00m7w6q76', 'no_lang_code', 1, 'https://ror.org/00m7w6q76 Exxelia (France)'),
(75546, 'https://ror.org/00mbc1g87', 'de', 1, 'https://ror.org/00mbc1g87 Chamber of Agriculture in Lower Saxony Landwirtschaftskammer Niedersachsen'),
(75547, 'https://ror.org/00mbpre48', 'no_lang_code', 1, 'https://ror.org/00mbpre48 Solano Pharmaceuticals (United States)'),
(75548, 'https://ror.org/00mcaq341', 'no_lang_code', 1, 'https://ror.org/00mcaq341 Indi-Vet (Israel) אינדי-וט'),
(75549, 'https://ror.org/00mczy147', 'de', 1, 'https://ror.org/00mczy147 Medien Management Institut'),
(75550, 'https://ror.org/00mdwv587', 'no_lang_code', 1, 'https://ror.org/00mdwv587 Lungpacer Medical (Canada)'),
(75551, 'https://ror.org/00me6gs45', 'no_lang_code', 1, 'https://ror.org/00me6gs45 LafargeHolcim (Switzerland)'),
(75552, 'https://ror.org/00meeqp26', 'no_lang_code', 1, 'https://ror.org/00meeqp26 nPoint (United States)'),
(75553, 'https://ror.org/00mf9x671', 'en', 1, 'https://ror.org/00mf9x671 Cook County Department of Public Health'),
(75554, 'https://ror.org/00mffe072', 'no_lang_code', 1, 'https://ror.org/00mffe072 Advanced Procurement Center (United States)'),
(75555, 'https://ror.org/00mft6s50', 'no_lang_code', 1, 'https://ror.org/00mft6s50 Daihachi Chemical Industry (Japan)'),
(75556, 'https://ror.org/00mhjxz04', 'no_lang_code', 1, 'https://ror.org/00mhjxz04 NovaBiotics (United Kingdom)'),
(75557, 'https://ror.org/00mmqn314', 'no_lang_code', 1, 'https://ror.org/00mmqn314 Rincon Research (United States)'),
(75558, 'https://ror.org/00mn4cb09', 'no_lang_code', 1, 'https://ror.org/00mn4cb09 Surfx Technologies (United States)'),
(75559, 'https://ror.org/00mne8d28', 'no_lang_code', 1, 'https://ror.org/00mne8d28 Institut für Angewandte Funksystemtechnik (Germany)'),
(75560, 'https://ror.org/00mpvse27', 'es', 1, 'https://ror.org/00mpvse27 Instituto EspaƱol de Estudios EstratƩgicos'),
(75561, 'https://ror.org/00msx4d41', 'no_lang_code', 1, 'https://ror.org/00msx4d41 FLAVIA IT (Germany)'),
(75562, 'https://ror.org/00mv0vt78', 'no_lang_code', 1, 'https://ror.org/00mv0vt78 Biotech Park ą¤¬ą¤¾ą¤Æą„‹ą¤Ÿą„‡ą¤• ą¤Ŗą¤¾ą¤°ą„ą¤•'),
(75563, 'https://ror.org/00mv0zs85', 'de', 1, 'https://ror.org/00mv0zs85 Grimme Institut'),
(75564, 'https://ror.org/00mwqgc26', 'no_lang_code', 1, 'https://ror.org/00mwqgc26 Anocca (Sweden)'),
(75565, 'https://ror.org/00mxz0t84', 'no_lang_code', 1, 'https://ror.org/00mxz0t84 Wuhan Amysen Life Technology (China)'),
(75566, 'https://ror.org/00myrf395', 'no_lang_code', 1, 'https://ror.org/00myrf395 Restech (United States)'),
(75567, 'https://ror.org/00mz4by06', 'en', 1, 'https://ror.org/00mz4by06 Provinciaal Instituut voor Hygiƫne Provincial Institute for Hygiene'),
(75568, 'https://ror.org/00mz6cr89', 'en', 1, 'https://ror.org/00mz6cr89 Be Strong, Fight On!'),
(75569, 'https://ror.org/00n1nbv85', 'no_lang_code', 1, 'https://ror.org/00n1nbv85 Advanced BioNutrition (United States)'),
(75570, 'https://ror.org/00n20v437', 'en', 1, 'https://ror.org/00n20v437 Kochi Prefecture Archaeological Center é«˜ēŸ„ēœŒē«‹åŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(75571, 'https://ror.org/00n2yhr54', 'en', 1, 'https://ror.org/00n2yhr54 Norton Priory Museum & Gardens'),
(75572, 'https://ror.org/00n49pr77', 'no_lang_code', 1, 'https://ror.org/00n49pr77 Digital China Health (China) ē„žå·žåŒ»ē–—'),
(75573, 'https://ror.org/00n7khb11', 'no_lang_code', 1, 'https://ror.org/00n7khb11 Sana Biotechnology (United States)'),
(75574, 'https://ror.org/00n9sg246', 'en', 1, 'https://ror.org/00n9sg246 Association of British Neurologists'),
(75575, 'https://ror.org/00ndx3g44', 'en', 1, 'https://ror.org/00ndx3g44 Hamamatsu University School of Medicine ęµœę¾åŒ»ē§‘å¤§å­¦'),
(75576, 'https://ror.org/00ne4ap63', 'fr', 1, 'https://ror.org/00ne4ap63 UniversitƩ Tertiaire et Technologique-Lokko'),
(75577, 'https://ror.org/00nf7ms20', 'en', 1, 'https://ror.org/00nf7ms20 Institute of Sociology, Academia Sinica äø­å¤®ē ”ē©¶é™¢ē¤¾ęœƒå­øē ”ē©¶ę‰€'),
(75578, 'https://ror.org/00nfe8z20', 'no_lang_code', 1, 'https://ror.org/00nfe8z20 Hachaklait (Israel) ×”×—×§×œ××™×Ŗ'),
(75579, 'https://ror.org/00ng9c593', 'en', 1, 'https://ror.org/00ng9c593 Stockholm Environment Institute'),
(75580, 'https://ror.org/00nhmr817', 'nl', 1, 'https://ror.org/00nhmr817 Port of Moerdijk'),
(75581, 'https://ror.org/00nhwjb64', 'no_lang_code', 1, 'https://ror.org/00nhwjb64 Michelin (Japan)'),
(75582, 'https://ror.org/00nhwxe66', 'en', 1, 'https://ror.org/00nhwxe66 Deutsches Technikmuseum Berlin German Museum of Technology'),
(75583, 'https://ror.org/00njqng43', 'de', 1, 'https://ror.org/00njqng43 Institut für Musikinstrumentenbau'),
(75584, 'https://ror.org/00njwz164', 'en', 1, 'https://ror.org/00njwz164 Jyoban Hospital 常磐病院'),
(75585, 'https://ror.org/00nkeq441', 'en', 1, 'https://ror.org/00nkeq441 Research Institute of Tropical Forestry äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ēƒ­åø¦ęž—äøšē ”ē©¶ę‰€'),
(75586, 'https://ror.org/00npgvt11', 'no_lang_code', 1, 'https://ror.org/00npgvt11 Traverse Biosciences (United States)'),
(75587, 'https://ror.org/00nq5xx94', 'no_lang_code', 1, 'https://ror.org/00nq5xx94 CMR Surgical (United Kingdom)'),
(75588, 'https://ror.org/00nrdcp20', 'no_lang_code', 1, 'https://ror.org/00nrdcp20 Windmill International (United States)'),
(75589, 'https://ror.org/00nt0xf41', 'en', 1, 'https://ror.org/00nt0xf41 Islamic Azad University of Gachsaran دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گچساران'),
(75590, 'https://ror.org/00nwtn727', 'no_lang_code', 1, 'https://ror.org/00nwtn727 Scott Laboratories (United States)'),
(75591, 'https://ror.org/00ny2ab23', 'no_lang_code', 1, 'https://ror.org/00ny2ab23 Thermal Storage Systems (United States)'),
(75592, 'https://ror.org/00ny9n194', 'no_lang_code', 1, 'https://ror.org/00ny9n194 SuperTurbo Technologies (United States)'),
(75593, 'https://ror.org/00nz5p994', 'no_lang_code', 1, 'https://ror.org/00nz5p994 Dongwha Pharm (South Korea)'),
(75594, 'https://ror.org/00p2sbg88', 'en', 1, 'https://ror.org/00p2sbg88 Passive House Institute Passivhaus Institut'),
(75595, 'https://ror.org/00p4ry522', 'no_lang_code', 1, 'https://ror.org/00p4ry522 Nomura Research Institute ę Ŗå¼ä¼šē¤¾é‡Žę‘ē·åˆē ”ē©¶ę‰€'),
(75596, 'https://ror.org/00p574j49', 'hr', 1, 'https://ror.org/00p574j49 Institut za filozofiju Institute of Philosophy'),
(75597, 'https://ror.org/00p64v472', 'no_lang_code', 1, 'https://ror.org/00p64v472 Aker (Norway)'),
(75598, 'https://ror.org/00p6fj621', 'no_lang_code', 1, 'https://ror.org/00p6fj621 Inis Biotech (Argentina)'),
(75599, 'https://ror.org/00p77dx36', 'en', 1, 'https://ror.org/00p77dx36 Usambara Field Studies Centre'),
(75600, 'https://ror.org/00pam4d71', 'no_lang_code', 1, 'https://ror.org/00pam4d71 Badger Licensing (United States)'),
(75601, 'https://ror.org/00pbcb885', 'en', 1, 'https://ror.org/00pbcb885 National Energy Commission å›½å®¶čƒ½ęŗå§”å‘˜ä¼š'),
(75602, 'https://ror.org/00pdfdm61', 'no_lang_code', 1, 'https://ror.org/00pdfdm61 Specialty Materials (United States)'),
(75603, 'https://ror.org/00pdgtx79', 'fr', 1, 'https://ror.org/00pdgtx79 Institut SupƩrieur de DƩveloppement Rural'),
(75604, 'https://ror.org/00pdsbg03', 'no_lang_code', 1, 'https://ror.org/00pdsbg03 Arkema (United Kingdom)'),
(75605, 'https://ror.org/00pg0dt16', 'de', 1, 'https://ror.org/00pg0dt16 Hessische LehrkrƤfteakademie'),
(75606, 'https://ror.org/00pgx7e04', 'no_lang_code', 1, 'https://ror.org/00pgx7e04 Q-Flex (United States)'),
(75607, 'https://ror.org/00phbja87', 'en', 1, 'https://ror.org/00phbja87 State Administration of Foreign Exchange 国家外汇箔理局'),
(75608, 'https://ror.org/00phja430', 'no_lang_code', 1, 'https://ror.org/00phja430 Science and Technology in Atmospheric Research (United States)'),
(75609, 'https://ror.org/00pm0z037', 'en', 1, 'https://ror.org/00pm0z037 Georgia''s Innovation and Technology Agency įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ˜įƒœįƒįƒ•įƒįƒŖįƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ“įƒ įƒ¢įƒ”įƒ„įƒœįƒįƒšįƒįƒ’įƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ”įƒįƒįƒ’įƒ”įƒœįƒ¢įƒ'),
(75610, 'https://ror.org/00pmn2q29', 'no_lang_code', 1, 'https://ror.org/00pmn2q29 Sencera Energy (United States)'),
(75611, 'https://ror.org/00pmqj178', 'en', 1, 'https://ror.org/00pmqj178 Eunpyeong Hospital ģ„œģšøķŠ¹ė³„ģ‹œ ģ€ķ‰ė³‘ģ›'),
(75612, 'https://ror.org/00pnc3s81', 'en', 1, 'https://ror.org/00pnc3s81 Research Center for Agricultural Information Technology č¾²ę„­ęƒ…å ±ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(75613, 'https://ror.org/00pnhtk88', 'en', 1, 'https://ror.org/00pnhtk88 Indiana Geological and Water Survey'),
(75614, 'https://ror.org/00pp12j94', 'en', 1, 'https://ror.org/00pp12j94 China Development Bank å›½å®¶å¼€å‘é“¶č”Œ'),
(75615, 'https://ror.org/00pph5857', 'no_lang_code', 1, 'https://ror.org/00pph5857 Atos (Slovakia)'),
(75616, 'https://ror.org/00pptj576', 'de', 1, 'https://ror.org/00pptj576 Institut für Fortbildung, Forschung und Entwicklung'),
(75617, 'https://ror.org/00psjjw10', 'no_lang_code', 1, 'https://ror.org/00psjjw10 Ventrix (United States)'),
(75618, 'https://ror.org/00ptgb077', 'de', 1, 'https://ror.org/00ptgb077 Staatsinstitut für Schulqualität und Bildungsforschung'),
(75619, 'https://ror.org/00pv01967', 'en', 1, 'https://ror.org/00pv01967 Kunming Third People''s Hospital ę˜†ę˜Žåø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢ęˆ'),
(75620, 'https://ror.org/00pw1cb61', 'no_lang_code', 1, 'https://ror.org/00pw1cb61 Vyne Therapeutics (Israel)'),
(75621, 'https://ror.org/00pwcvj19', 'de', 1, 'https://ror.org/00pwcvj19 Hamburg State and University Library Staats- und UniversitƤtsbibliothek Hamburg'),
(75622, 'https://ror.org/00pwqz914', 'en', 1, 'https://ror.org/00pwqz914 Institut Kavli pour l''astrophysique des particules et la cosmologie Kavli Institute for Particle Astrophysics and Cosmology'),
(75623, 'https://ror.org/00pxc7m47', 'no_lang_code', 1, 'https://ror.org/00pxc7m47 Shenzhen Bioeasy Biotechnology (China)'),
(75624, 'https://ror.org/00pyf2p89', 'no_lang_code', 1, 'https://ror.org/00pyf2p89 TMG (Slovakia)'),
(75625, 'https://ror.org/00q0vag25', 'en', 1, 'https://ror.org/00q0vag25 William and Barbara Leonard Transportation Center'),
(75626, 'https://ror.org/00q1p9b30', 'en', 1, 'https://ror.org/00q1p9b30 Southern Tohoku General Hospital ē·åˆå—ę±åŒ—ē—…é™¢'),
(75627, 'https://ror.org/00q2vrq29', 'no_lang_code', 1, 'https://ror.org/00q2vrq29 Collegium Pharmaceutical (United States)'),
(75628, 'https://ror.org/00q51ae51', 'no_lang_code', 1, 'https://ror.org/00q51ae51 BAROnova (United States)'),
(75629, 'https://ror.org/00q5t0010', 'en', 1, 'https://ror.org/00q5t0010 Leibniz Institute for Resilience Research Leibniz-Institut für Resilienzforschung'),
(75630, 'https://ror.org/00q7z2571', 'de', 1, 'https://ror.org/00q7z2571 Forschungszentrum Energiespeichertechnologien'),
(75631, 'https://ror.org/00q8frg87', 'no_lang_code', 1, 'https://ror.org/00q8frg87 Marathon (United States)'),
(75632, 'https://ror.org/00q8gqq97', 'no_lang_code', 1, 'https://ror.org/00q8gqq97 ProteinQure (Canada)'),
(75633, 'https://ror.org/00qapk656', 'en', 1, 'https://ror.org/00qapk656 Royal Alberta Museum'),
(75634, 'https://ror.org/00qc6xh17', 'no_lang_code', 1, 'https://ror.org/00qc6xh17 Medacta International (Switzerland)'),
(75635, 'https://ror.org/00qdw5r51', 'no_lang_code', 1, 'https://ror.org/00qdw5r51 Research, Evaluation and Social Solutions (United States)'),
(75636, 'https://ror.org/00qdzme95', 'no_lang_code', 1, 'https://ror.org/00qdzme95 SignPath Pharma (United States)'),
(75637, 'https://ror.org/00qeeg419', 'de', 1, 'https://ror.org/00qeeg419 Arbeitsgemeinschaft ƶkologischer Forschungsinstitute'),
(75638, 'https://ror.org/00qfke340', 'en', 1, 'https://ror.org/00qfke340 Institute of Molecular Functional Materials åˆ†å­åŠŸčƒ½ęę–™ē ”ē©¶ę‰€'),
(75639, 'https://ror.org/00qg8pm87', 'no_lang_code', 1, 'https://ror.org/00qg8pm87 Line Corporation (Japan)'),
(75640, 'https://ror.org/00qh9vh90', 'no_lang_code', 1, 'https://ror.org/00qh9vh90 Phiar (United States)'),
(75641, 'https://ror.org/00qhbve66', 'no_lang_code', 1, 'https://ror.org/00qhbve66 PI Electronics (China)'),
(75642, 'https://ror.org/00qhpe738', 'no_lang_code', 1, 'https://ror.org/00qhpe738 Insightra Medical (United States)'),
(75643, 'https://ror.org/00qhvgf79', 'en', 1, 'https://ror.org/00qhvgf79 Research Center in Industrial Technologies وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ و البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(75644, 'https://ror.org/00qhzxe29', 'no_lang_code', 1, 'https://ror.org/00qhzxe29 Prevayl (United Kingdom)'),
(75645, 'https://ror.org/00qjps318', 'en', 1, 'https://ror.org/00qjps318 China Enterprise Confederation äø­å›½ä¼äøšč”åˆä¼š'),
(75646, 'https://ror.org/00qjtn636', 'en', 1, 'https://ror.org/00qjtn636 Qinghai No.3 People''s Hospital é’ęµ·ēœē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(75647, 'https://ror.org/00qkwk946', 'fr', 1, 'https://ror.org/00qkwk946 Institut de la Filtration et des Techniques SƩparatives'),
(75648, 'https://ror.org/00qmj8087', 'no_lang_code', 1, 'https://ror.org/00qmj8087 Ideaya Biosciences (United States)'),
(75649, 'https://ror.org/00qpxe165', 'no_lang_code', 1, 'https://ror.org/00qpxe165 Faculty (United Kingdom)'),
(75650, 'https://ror.org/00qqrrn06', 'no_lang_code', 1, 'https://ror.org/00qqrrn06 Rebion (United States)'),
(75651, 'https://ror.org/00qr9qz34', 'en', 1, 'https://ror.org/00qr9qz34 Gamagori City Marine Science Museum č’²éƒ”åø‚ē”Ÿå‘½ć®ęµ·ē§‘å­¦é¤Ø'),
(75652, 'https://ror.org/00qry0z04', 'no_lang_code', 1, 'https://ror.org/00qry0z04 Ionetix (United States)'),
(75653, 'https://ror.org/00qtzg544', 'en', 1, 'https://ror.org/00qtzg544 Wuhan Wudong Hospital ę­¦ę±‰åø‚ę­¦äøœåŒ»é™¢'),
(75654, 'https://ror.org/00qv2zm13', 'en', 1, 'https://ror.org/00qv2zm13 Agricultural Research Service - Pacific West Area'),
(75655, 'https://ror.org/00qw2t413', 'no_lang_code', 1, 'https://ror.org/00qw2t413 Lifetech Scientific (China)'),
(75656, 'https://ror.org/00qxryb75', 'de', 1, 'https://ror.org/00qxryb75 Landesnahverkehrsgesellschaft Niedersachsen'),
(75657, 'https://ror.org/00qy2fm62', 'no_lang_code', 1, 'https://ror.org/00qy2fm62 Beijing Zhongke Science and Technology (China) åŒ—äŗ¬äø­ē§‘ē§‘ä»Ŗč‚”ä»½ęœ‰é™å…¬åø'),
(75658, 'https://ror.org/00r23cm16', 'no_lang_code', 1, 'https://ror.org/00r23cm16 Groupe Lesaffre Lesaffre (France)'),
(75659, 'https://ror.org/00r2x0p54', 'no_lang_code', 1, 'https://ror.org/00r2x0p54 Biomark (United States)'),
(75660, 'https://ror.org/00r4e6n79', 'de', 1, 'https://ror.org/00r4e6n79 Institut für Innovation, Transfer und Beratung'),
(75661, 'https://ror.org/00r4fsd57', 'en', 1, 'https://ror.org/00r4fsd57 North Canyon Medical Center'),
(75662, 'https://ror.org/00r8dbc04', 'no_lang_code', 1, 'https://ror.org/00r8dbc04 Floratech (United States)'),
(75663, 'https://ror.org/00r9q8b87', 'no_lang_code', 1, 'https://ror.org/00r9q8b87 Click Diagnostics (United States)'),
(75664, 'https://ror.org/00rat0g20', 'en', 1, 'https://ror.org/00rat0g20 Amanosan Cultural Heritages Research Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗ å¤©é‡Žå±±ę–‡åŒ–éŗē”£ē ”ē©¶ę‰€'),
(75665, 'https://ror.org/00rb4xa96', 'en', 1, 'https://ror.org/00rb4xa96 United Nations Office for Project Services'),
(75666, 'https://ror.org/00rbf3t83', 'no_lang_code', 1, 'https://ror.org/00rbf3t83 Silicon Therapeutics (United States)'),
(75667, 'https://ror.org/00rbnp372', 'no_lang_code', 1, 'https://ror.org/00rbnp372 System Dynamics International (United States)'),
(75668, 'https://ror.org/00rbzv406', 'no_lang_code', 1, 'https://ror.org/00rbzv406 Object Computing (United States)'),
(75669, 'https://ror.org/00recnr76', 'en', 1, 'https://ror.org/00recnr76 Centre for Democracy and Development'),
(75670, 'https://ror.org/00red6q96', 'id', 1, 'https://ror.org/00red6q96 Politeknik Medica Farma Husada Mataram'),
(75671, 'https://ror.org/00rezvm23', 'no_lang_code', 1, 'https://ror.org/00rezvm23 Atea Pharmaceuticals (United States)'),
(75672, 'https://ror.org/00rgsn672', 'no_lang_code', 1, 'https://ror.org/00rgsn672 Stannah (United Kingdom)'),
(75673, 'https://ror.org/00rjxfx39', 'no_lang_code', 1, 'https://ror.org/00rjxfx39 E-Techco Group (China)'),
(75674, 'https://ror.org/00rm7zs53', 'de', 1, 'https://ror.org/00rm7zs53 Zug Cantonal Hospital, Zuger Kantonsspital'),
(75675, 'https://ror.org/00rpy3653', 'no_lang_code', 1, 'https://ror.org/00rpy3653 Caregen (South Korea)'),
(75676, 'https://ror.org/00rqckp81', 'no_lang_code', 1, 'https://ror.org/00rqckp81 Quantum Diamond Technologies (United States)'),
(75677, 'https://ror.org/00rr70t41', 'en', 1, 'https://ror.org/00rr70t41 Experimental Center of Tropical Forestry äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ēƒ­åø¦ęž—äøšå®žéŖŒäø­åæƒ'),
(75678, 'https://ror.org/00rs9dy63', 'no_lang_code', 1, 'https://ror.org/00rs9dy63 Advanced Energy (United States)'),
(75679, 'https://ror.org/00rtdby49', 'no_lang_code', 1, 'https://ror.org/00rtdby49 Ingeneric (Germany)'),
(75680, 'https://ror.org/00rtdgr72', 'en', 1, 'https://ror.org/00rtdgr72 Mann-Grandstaff VA Medical Center'),
(75681, 'https://ror.org/00ryt4t07', 'no_lang_code', 1, 'https://ror.org/00ryt4t07 Zeomedix (United States)'),
(75682, 'https://ror.org/00rytkh49', 'en', 1, 'https://ror.org/00rytkh49 Shanghai Institute of Nutrition and Health 中国科学院 äøŠęµ·č„å…»äøŽå„åŗ·ē ”ē©¶é™¢'),
(75683, 'https://ror.org/00s05em53', 'en', 1, 'https://ror.org/00s05em53 RIKEN BioResource Research Center ē†ē ”ćƒć‚¤ć‚ŖćƒŖć‚½ćƒ¼ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(75684, 'https://ror.org/00s3xpq12', 'en', 1, 'https://ror.org/00s3xpq12 Shandong Freshwater Fisheries Research Institute å±±äøœēœę·”ę°“ęø”äøšē ”ē©¶é™¢'),
(75685, 'https://ror.org/00s3ykq41', 'no_lang_code', 1, 'https://ror.org/00s3ykq41 Photonics (United States)'),
(75686, 'https://ror.org/00s4w8768', 'no_lang_code', 1, 'https://ror.org/00s4w8768 First Quality (United States)'),
(75687, 'https://ror.org/00s5nzf91', 'en', 1, 'https://ror.org/00s5nzf91 Baoson Hospital Bệnh viện Đa khoa Bįŗ£o SĘ”n'),
(75688, 'https://ror.org/00s653v54', 'en', 1, 'https://ror.org/00s653v54 Misato Observatory ćæć•ćØå¤©ę–‡å°'),
(75689, 'https://ror.org/00s6yzk33', 'no_lang_code', 1, 'https://ror.org/00s6yzk33 Exogenesis (United States)'),
(75690, 'https://ror.org/00scx1h10', 'en', 1, 'https://ror.org/00scx1h10 Health Education England'),
(75691, 'https://ror.org/00sdg9z02', 'no_lang_code', 1, 'https://ror.org/00sdg9z02 Strategic Science & Technologies (United States)'),
(75692, 'https://ror.org/00sf4jq50', 'de', 1, 'https://ror.org/00sf4jq50 Institut für Brand- und Katastrophenschutz Heyrothsberge'),
(75693, 'https://ror.org/00sfd8n43', 'ca', 1, 'https://ror.org/00sfd8n43 Consorci d’Atenció PrimĆ ria de Salut Barcelona Esquerra'),
(75694, 'https://ror.org/00sh93275', 'no_lang_code', 1, 'https://ror.org/00sh93275 Seno Medical (United States)'),
(75695, 'https://ror.org/00shjhx05', 'no_lang_code', 1, 'https://ror.org/00shjhx05 SMD (United States)'),
(75696, 'https://ror.org/00sj01y46', 'de', 1, 'https://ror.org/00sj01y46 Waldrappteam'),
(75697, 'https://ror.org/00skc8b63', 'en', 1, 'https://ror.org/00skc8b63 Ministry of Public Works Transportation and Communications MinistĆØre des Travaux Publics Transports et Communications'),
(75698, 'https://ror.org/00skh8d23', 'no_lang_code', 1, 'https://ror.org/00skh8d23 Modeinstitut Berlin (Germany)'),
(75699, 'https://ror.org/00snk4s58', 'no_lang_code', 1, 'https://ror.org/00snk4s58 Primus Consulting (United States)'),
(75700, 'https://ror.org/00sp0zs16', 'no_lang_code', 1, 'https://ror.org/00sp0zs16 Compass (United States)'),
(75701, 'https://ror.org/00sq9j129', 'de', 1, 'https://ror.org/00sq9j129 Deutsche Gesellschaft für Information und Wissen'),
(75702, 'https://ror.org/00sqkbc18', 'en', 1, 'https://ror.org/00sqkbc18 International Academy of Astronautics'),
(75703, 'https://ror.org/00ss6h043', 'no_lang_code', 1, 'https://ror.org/00ss6h043 Promet Optics (United States)'),
(75704, 'https://ror.org/00ssdzp21', 'no_lang_code', 1, 'https://ror.org/00ssdzp21 Lohmann (Germany)'),
(75705, 'https://ror.org/00ssr5f77', 'no_lang_code', 1, 'https://ror.org/00ssr5f77 Alphatec Spine Approach Technologies (United States)'),
(75706, 'https://ror.org/00ssr7512', 'en', 1, 'https://ror.org/00ssr7512 Shikoku Central Medical Welfare Institute å››å›½äø­å¤®åŒ»ē™‚ē¦ē„‰ē·åˆå­¦é™¢'),
(75707, 'https://ror.org/00stt1q70', 'no_lang_code', 1, 'https://ror.org/00stt1q70 Ensysce Biosciences (United States)'),
(75708, 'https://ror.org/00svm1971', 'no_lang_code', 1, 'https://ror.org/00svm1971 Quantlab (United States)'),
(75709, 'https://ror.org/00svpda47', 'en', 1, 'https://ror.org/00svpda47 Euro-Arab Foundation for Higher Studies'),
(75710, 'https://ror.org/00sz65064', 'no_lang_code', 1, 'https://ror.org/00sz65064 Kringle Pharma (Japan) ć‚ÆćƒŖćƒ³ć‚°ćƒ«ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(75711, 'https://ror.org/00t2dcp03', 'no_lang_code', 1, 'https://ror.org/00t2dcp03 Sto (Germany)'),
(75712, 'https://ror.org/00t35ff19', 'no_lang_code', 1, 'https://ror.org/00t35ff19 Arrayed Materials (China)'),
(75713, 'https://ror.org/00t48m413', 'no_lang_code', 1, 'https://ror.org/00t48m413 Johns Manville (Slovakia)'),
(75714, 'https://ror.org/00t4ywr83', 'no_lang_code', 1, 'https://ror.org/00t4ywr83 Goodman (Japan) ę Ŗå¼ä¼šē¤¾ć‚°ćƒƒćƒ‰ćƒžćƒ³'),
(75715, 'https://ror.org/00t5ata22', 'no_lang_code', 1, 'https://ror.org/00t5ata22 Scribner (United States)'),
(75716, 'https://ror.org/00t7bjm27', 'en', 1, 'https://ror.org/00t7bjm27 National Bank of Slovakia NƔrodnƔ banka Slovenska'),
(75717, 'https://ror.org/00t7w7h84', 'fr', 1, 'https://ror.org/00t7w7h84 Le Soleil dans la Main'),
(75718, 'https://ror.org/00t8pc875', 'en', 1, 'https://ror.org/00t8pc875 National Brain Centre Rumah Sakit Pusat Otak Nasional'),
(75719, 'https://ror.org/00t9fb122', 'no_lang_code', 1, 'https://ror.org/00t9fb122 OpenCell Technologies (United States)'),
(75720, 'https://ror.org/00tbnam70', 'no_lang_code', 1, 'https://ror.org/00tbnam70 iSense (United States)'),
(75721, 'https://ror.org/00tbs6p91', 'en', 1, 'https://ror.org/00tbs6p91 Center for Nanoscale Science and Technology'),
(75722, 'https://ror.org/00td9q934', 'en', 1, 'https://ror.org/00td9q934 Taiwan Semiconductor Industry Association'),
(75723, 'https://ror.org/00te3ej54', 'no_lang_code', 1, 'https://ror.org/00te3ej54 ZoneOne Pharma (United States)'),
(75724, 'https://ror.org/00tebjn14', 'no_lang_code', 1, 'https://ror.org/00tebjn14 Molecular Partners (Switzerland)'),
(75725, 'https://ror.org/00tecmr39', 'no_lang_code', 1, 'https://ror.org/00tecmr39 Solutions Through Innovative Technologies (United States)'),
(75726, 'https://ror.org/00tf8t528', 'no_lang_code', 1, 'https://ror.org/00tf8t528 Think Surgical (United States)'),
(75727, 'https://ror.org/00tfv5n82', 'no_lang_code', 1, 'https://ror.org/00tfv5n82 Tegut (Germany)'),
(75728, 'https://ror.org/00tjt8p18', 'no_lang_code', 1, 'https://ror.org/00tjt8p18 RF Laboratories (United States)'),
(75729, 'https://ror.org/00tk46k54', 'en', 1, 'https://ror.org/00tk46k54 Sanjay Ghodawat University'),
(75730, 'https://ror.org/00tkbqn95', 'no_lang_code', 1, 'https://ror.org/00tkbqn95 Widder Brothers (United States)'),
(75731, 'https://ror.org/00tkrt383', 'en', 1, 'https://ror.org/00tkrt383 Chianti Multifunctional Observatory Osservatorio Polifunzionale del Chianti'),
(75732, 'https://ror.org/00tm9pr75', 'en', 1, 'https://ror.org/00tm9pr75 Das Institut für Seevölkerrecht und Internationales Meersumweltrecht The Institute for the Law of the Sea and International Marine Environmental Law'),
(75733, 'https://ror.org/00tna8k65', 'no_lang_code', 1, 'https://ror.org/00tna8k65 Purilogics (United States)'),
(75734, 'https://ror.org/00tptkt39', 'no_lang_code', 1, 'https://ror.org/00tptkt39 NetDragon (United States)'),
(75735, 'https://ror.org/00tpvmh02', 'no_lang_code', 1, 'https://ror.org/00tpvmh02 Huaibei Mining (China)'),
(75736, 'https://ror.org/00tq9bz11', 'no_lang_code', 1, 'https://ror.org/00tq9bz11 Royalty Pharma (United States)'),
(75737, 'https://ror.org/00tsej476', 'no_lang_code', 1, 'https://ror.org/00tsej476 Schwenk (Germany)'),
(75738, 'https://ror.org/00tt3wc55', 'en', 1, 'https://ror.org/00tt3wc55 Xinjiang Uygur Autonomous Region Disease Prevention and Control Center ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(75739, 'https://ror.org/00ttsnw25', 'en', 1, 'https://ror.org/00ttsnw25 College of Contract Management'),
(75740, 'https://ror.org/00tvmqw18', 'no_lang_code', 1, 'https://ror.org/00tvmqw18 GenISys (Germany)'),
(75741, 'https://ror.org/00tw8zf26', 'en', 1, 'https://ror.org/00tw8zf26 Centre For Human Genetics'),
(75742, 'https://ror.org/00ty48v44', 'en', 1, 'https://ror.org/00ty48v44 The Fifth People''s Hospital of Anyang å®‰é˜³åø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(75743, 'https://ror.org/00tystp70', 'en', 1, 'https://ror.org/00tystp70 Narodowy Bank Polski National Bank of Poland'),
(75744, 'https://ror.org/00v0f9w17', 'no_lang_code', 1, 'https://ror.org/00v0f9w17 Welland Medical (United Kingdom)'),
(75745, 'https://ror.org/00v1nkq94', 'de', 1, 'https://ror.org/00v1nkq94 Landesamt für Kultur und Denkmalpflege Mecklenburg-Vorpommern'),
(75746, 'https://ror.org/00v1x5b81', 'no_lang_code', 1, 'https://ror.org/00v1x5b81 PTC (United Kingdom)'),
(75747, 'https://ror.org/00v28x102', 'no_lang_code', 1, 'https://ror.org/00v28x102 Syntrotek (United States)'),
(75748, 'https://ror.org/00v4zth19', 'de', 1, 'https://ror.org/00v4zth19 Rechenkraft.net'),
(75749, 'https://ror.org/00v5sgn53', 'no_lang_code', 1, 'https://ror.org/00v5sgn53 LDK Solar (China) č³½ē¶­å¤Ŗé™½čƒ½'),
(75750, 'https://ror.org/00v7p0n49', 'no_lang_code', 1, 'https://ror.org/00v7p0n49 Kyoto Pharmaceutical Industries (Japan) äŗ¬éƒ½č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(75751, 'https://ror.org/00v7rqs27', 'no_lang_code', 1, 'https://ror.org/00v7rqs27 Mitsui Sugar (Japan) äø‰äŗ•č£½ē³–ę Ŗå¼ä¼šē¤¾'),
(75752, 'https://ror.org/00v7th354', 'en', 1, 'https://ror.org/00v7th354 The Mark Foundation for Cancer Research'),
(75753, 'https://ror.org/00v8tjj64', 'de', 1, 'https://ror.org/00v8tjj64 Halle Zoo, Zoologischer Garten Halle'),
(75754, 'https://ror.org/00vawgs19', 'no_lang_code', 1, 'https://ror.org/00vawgs19 United Initiators (Germany)'),
(75755, 'https://ror.org/00vcb3m70', 'en', 1, 'https://ror.org/00vcb3m70 Biological and Chemical Oceanography Data Management Office'),
(75756, 'https://ror.org/00vdc9c89', 'no_lang_code', 1, 'https://ror.org/00vdc9c89 Technology Applications Group (United States)'),
(75757, 'https://ror.org/00veca956', 'en', 1, 'https://ror.org/00veca956 Islamic Azad University, Firuzabad Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد فیروزآباد'),
(75758, 'https://ror.org/00vhhsw45', 'en', 1, 'https://ror.org/00vhhsw45 Vehicles Research Development Establishment'),
(75759, 'https://ror.org/00vk1xe75', 'en', 1, 'https://ror.org/00vk1xe75 Liaoning Vocational College of Medical č¾½å®åŒ»å­¦é™¢å­¦ęŠ„'),
(75760, 'https://ror.org/00vmat262', 'no_lang_code', 1, 'https://ror.org/00vmat262 TianKai Optical Communication (China) å¤©å‡Æå…‰é€šäæ”'),
(75761, 'https://ror.org/00vmpjn90', 'no_lang_code', 1, 'https://ror.org/00vmpjn90 Oscilla Power (United States)'),
(75762, 'https://ror.org/00vna7491', 'en', 1, 'https://ror.org/00vna7491 Handan Polytechnic College é‚ÆéƒøčŒäøšęŠ€ęœÆå­¦é™¢'),
(75763, 'https://ror.org/00vp8qm49', 'en', 1, 'https://ror.org/00vp8qm49 Institut für Inklusive Bildung Institute for Inclusive Education'),
(75764, 'https://ror.org/00vr1xq27', 'no_lang_code', 1, 'https://ror.org/00vr1xq27 Syntermed (United States)'),
(75765, 'https://ror.org/00vtjav66', 'en', 1, 'https://ror.org/00vtjav66 Darwin Centre'),
(75766, 'https://ror.org/00vwbk234', 'no_lang_code', 1, 'https://ror.org/00vwbk234 Melexis (Belgium)'),
(75767, 'https://ror.org/00vwnt173', 'en', 1, 'https://ror.org/00vwnt173 Animal Resources Development Department'),
(75768, 'https://ror.org/00vx0am61', 'en', 1, 'https://ror.org/00vx0am61 Kagoshima Medical Corporation Association Nursing College é¹æå…å³¶ēœŒåŒ»ē™‚ę³•äŗŗå”ä¼šē«‹ēœ‹č­·å°‚é–€å­¦ę ”'),
(75769, 'https://ror.org/00vy6y387', 'no_lang_code', 1, 'https://ror.org/00vy6y387 Bard Access Systems (United States)'),
(75770, 'https://ror.org/00w040886', 'no_lang_code', 1, 'https://ror.org/00w040886 Blockheizkraftwerks- TrƤger- und Betreibergesellschaft (Germany)'),
(75771, 'https://ror.org/00w05gw74', 'en', 1, 'https://ror.org/00w05gw74 PEG-Bio Biopharm é‡åŗ†ę“¾é‡‘ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(75772, 'https://ror.org/00w1ev608', 'en', 1, 'https://ror.org/00w1ev608 Fundación Iguaque Iguaque Foundation'),
(75773, 'https://ror.org/00w53fs94', 'de', 1, 'https://ror.org/00w53fs94 Forschungszentrum Küste'),
(75774, 'https://ror.org/00w5h0n54', 'en', 1, 'https://ror.org/00w5h0n54 Wenzhou Central Hospital ęø©å·žåø‚äø­åæƒåŒ»é™¢'),
(75775, 'https://ror.org/00w6car46', 'no_lang_code', 1, 'https://ror.org/00w6car46 Liebherr (Switzerland)'),
(75776, 'https://ror.org/00w894124', 'en', 1, 'https://ror.org/00w894124 Bochum Observatory Sternwarte Bochum'),
(75777, 'https://ror.org/00wethk75', 'en', 1, 'https://ror.org/00wethk75 Research & Development Establishment (Engrs.) ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø आणि विकास ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾ ą¤‡ą¤‚ą¤œą¤æą¤Øą¤æą¤Æą¤°ą„ą¤ø'),
(75778, 'https://ror.org/00wf92r40', 'no_lang_code', 1, 'https://ror.org/00wf92r40 JW Medical Systems (China)'),
(75779, 'https://ror.org/00wftwn37', 'en', 1, 'https://ror.org/00wftwn37 Defence Electronics Research Laboratory ą¤°ą¤•ą„ą¤·ą¤¾ ą¤‡ą¤²ą„‡ą¤•ą„ą¤Ÿą„ą¤°ą„‰ą¤Øą¤æą¤•ą„ą¤ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(75780, 'https://ror.org/00wg69w90', 'no_lang_code', 1, 'https://ror.org/00wg69w90 Starship Health Technologies (United States)'),
(75781, 'https://ror.org/00wg9tw09', 'de', 1, 'https://ror.org/00wg9tw09 Institut für Textoptimierung'),
(75782, 'https://ror.org/00whjrr70', 'en', 1, 'https://ror.org/00whjrr70 Bildungswerk der Wirtschaft Hamburg Education and Training Service for Hamburg Businesses'),
(75783, 'https://ror.org/00wks3b32', 'no_lang_code', 1, 'https://ror.org/00wks3b32 RealTimePurity (United States)'),
(75784, 'https://ror.org/00wn45376', 'no_lang_code', 1, 'https://ror.org/00wn45376 CCP Technologies (United States)'),
(75785, 'https://ror.org/00wnpy880', 'en', 1, 'https://ror.org/00wnpy880 Centre des sciences de l''Ontario Ontario Science Centre'),
(75786, 'https://ror.org/00wns3e34', 'no_lang_code', 1, 'https://ror.org/00wns3e34 Tiburon Associates (United States)'),
(75787, 'https://ror.org/00wp2vz04', 'no_lang_code', 1, 'https://ror.org/00wp2vz04 China Light Industry Press (China) äø­å›½č½»å·„äøšå‡ŗē‰ˆē¤¾'),
(75788, 'https://ror.org/00wrdbm93', 'no_lang_code', 1, 'https://ror.org/00wrdbm93 Cyberdyne (Japan) ć‚µć‚¤ćƒćƒ¼ćƒ€ć‚¤ćƒ³'),
(75789, 'https://ror.org/00wsc5072', 'no_lang_code', 1, 'https://ror.org/00wsc5072 Stiegelmeyer (Germany)'),
(75790, 'https://ror.org/00wtqt111', 'no_lang_code', 1, 'https://ror.org/00wtqt111 Esox-Plast (Slovakia)'),
(75791, 'https://ror.org/00wtxn298', 'no_lang_code', 1, 'https://ror.org/00wtxn298 West Coast Solutions (United States)'),
(75792, 'https://ror.org/00wvsjr52', 'no_lang_code', 1, 'https://ror.org/00wvsjr52 Ingenium (Germany)'),
(75793, 'https://ror.org/00wvyk770', 'en', 1, 'https://ror.org/00wvyk770 Guanacaste Conservation Area Área de Conservación Guanacaste'),
(75794, 'https://ror.org/00wwe0e57', 'en', 1, 'https://ror.org/00wwe0e57 Sabalan University of Advanced Technologies دانؓگاه ŁŁ†Ų§ŁˆŲ±ŪŒ Ł‡Ų§ŪŒ Ł†ŁˆŪŒŁ† سبلان'),
(75795, 'https://ror.org/00wwv7522', 'no_lang_code', 1, 'https://ror.org/00wwv7522 MRJ Consulting (United States)'),
(75796, 'https://ror.org/00wxjqb77', 'de', 1, 'https://ror.org/00wxjqb77 Klinikum Mittelbaden'),
(75797, 'https://ror.org/00wy0mk13', 'en', 1, 'https://ror.org/00wy0mk13 Museum of Military Medicine'),
(75798, 'https://ror.org/00wzysf74', 'en', 1, 'https://ror.org/00wzysf74 Wilkes-Barre VA Medical Center'),
(75799, 'https://ror.org/00x27fn54', 'no_lang_code', 1, 'https://ror.org/00x27fn54 Advania (Sweden)'),
(75800, 'https://ror.org/00x5exn66', 'no_lang_code', 1, 'https://ror.org/00x5exn66 Picoyune (United States)'),
(75801, 'https://ror.org/00x605y09', 'no_lang_code', 1, 'https://ror.org/00x605y09 Praeses (United States)'),
(75802, 'https://ror.org/00x67g916', 'en', 1, 'https://ror.org/00x67g916 Allensbach Hochschule Allensbach University'),
(75803, 'https://ror.org/00x74f485', 'en', 1, 'https://ror.org/00x74f485 Slovak Caves Administration SzlovÔkiai Barlangok IgazgatósÔga'),
(75804, 'https://ror.org/00x87ch96', 'no_lang_code', 1, 'https://ror.org/00x87ch96 Ibule Photonics (South Korea)'),
(75805, 'https://ror.org/00x8kv449', 'en', 1, 'https://ror.org/00x8kv449 Reality of Aid Africa Network'),
(75806, 'https://ror.org/00x93xn27', 'en', 1, 'https://ror.org/00x93xn27 Falklands Conservation'),
(75807, 'https://ror.org/00xa4tk19', 'en', 1, 'https://ror.org/00xa4tk19 Suratthani Cancer Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąøŖąøøąø£ąø²ąø©ąøŽąø£ą¹Œąø˜ąø²ąø™ąøµ'),
(75808, 'https://ror.org/00xa9v334', 'no_lang_code', 1, 'https://ror.org/00xa9v334 Equinor (United Kingdom)'),
(75809, 'https://ror.org/00xbvdz81', 'en', 1, 'https://ror.org/00xbvdz81 Organisation of Islamic Cooperation منظمة Ų§Ł„ŲŖŲ¹Ų§ŁˆŁ† Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(75810, 'https://ror.org/00xcgk367', 'de', 1, 'https://ror.org/00xcgk367 Arbeitsgruppe für regionale Struktur- und Umweltforschung'),
(75811, 'https://ror.org/00xcr3m62', 'sk', 1, 'https://ror.org/00xcr3m62 ŠtÔtny VeterinÔrny a Potravinový Ústav'),
(75812, 'https://ror.org/00xctjm44', 'en', 1, 'https://ror.org/00xctjm44 P.V. Narsimha Rao Telangana Veterinary University PV ą°Øą°°ą°øą°æą°‚ą°¹ రావు తెలంగాణ ą°µą±†ą°Ÿą°°ą±ą°Øą°°ą±€ ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(75813, 'https://ror.org/00xg5j618', 'no_lang_code', 1, 'https://ror.org/00xg5j618 HI-LEX (Japan) ę Ŗå¼ä¼šē¤¾ćƒć‚¤ćƒ¬ćƒƒć‚Æć‚¹ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(75814, 'https://ror.org/00xgdcy02', 'de', 1, 'https://ror.org/00xgdcy02 Hermann-Josef-Krankenhaus Erkelenz'),
(75815, 'https://ror.org/00xgq3z19', 'no_lang_code', 1, 'https://ror.org/00xgq3z19 PeoplePower (United States)'),
(75816, 'https://ror.org/00xja4t18', 'no_lang_code', 1, 'https://ror.org/00xja4t18 Keramische Folien (Germany)'),
(75817, 'https://ror.org/00xjqd715', 'en', 1, 'https://ror.org/00xjqd715 Coconut Research Institute äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢ę¤°å­ē ”ē©¶ę‰€'),
(75818, 'https://ror.org/00xk3qa12', 'no_lang_code', 1, 'https://ror.org/00xk3qa12 Transparency Lab (Netherlands)'),
(75819, 'https://ror.org/00xkmw397', 'no_lang_code', 1, 'https://ror.org/00xkmw397 AutoMedx (United States)'),
(75820, 'https://ror.org/00xkrw816', 'en', 1, 'https://ror.org/00xkrw816 China Construction Bank äø­å›½å»ŗč®¾é“¶č”Œ'),
(75821, 'https://ror.org/00xn0yt80', 'en', 1, 'https://ror.org/00xn0yt80 Chartered Institute of Personnel and Development'),
(75822, 'https://ror.org/00xr96s24', 'no_lang_code', 1, 'https://ror.org/00xr96s24 AIR Worldwide (United States)'),
(75823, 'https://ror.org/00xrhzn26', 'no_lang_code', 1, 'https://ror.org/00xrhzn26 TransMed7 (United States)'),
(75824, 'https://ror.org/00xrmm659', 'no_lang_code', 1, 'https://ror.org/00xrmm659 Kintech Lab (Russia)'),
(75825, 'https://ror.org/00xscwy84', 'en', 1, 'https://ror.org/00xscwy84 Shiga Prefectural Higashi Otsu High School ę»‹č³€ēœŒē«‹ę±å¤§ę“„é«˜'),
(75826, 'https://ror.org/00xsmqz41', 'no_lang_code', 1, 'https://ror.org/00xsmqz41 Vivant (United States)'),
(75827, 'https://ror.org/00xt1mj08', 'no_lang_code', 1, 'https://ror.org/00xt1mj08 LRC Products (United States)'),
(75828, 'https://ror.org/00xwb9867', 'no_lang_code', 1, 'https://ror.org/00xwb9867 WinSanTor (United States)'),
(75829, 'https://ror.org/00xyaq666', 'no_lang_code', 1, 'https://ror.org/00xyaq666 Abcentra (United States)'),
(75830, 'https://ror.org/00xymz606', 'en', 1, 'https://ror.org/00xymz606 Institute of Desertification Studies č’ę¼ åŒ–ē ”ē©¶ę‰€'),
(75831, 'https://ror.org/00xyqkv27', 'en', 1, 'https://ror.org/00xyqkv27 Axis Multispecialty Hospital'),
(75832, 'https://ror.org/00y16bh55', 'en', 1, 'https://ror.org/00y16bh55 Islamic Azad University, Ashtian Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų¢Ų“ŲŖŁŠŲ§Ł†'),
(75833, 'https://ror.org/00y289c89', 'en', 1, 'https://ror.org/00y289c89 British Society for the History of Medicine'),
(75834, 'https://ror.org/00y3rz519', 'no_lang_code', 1, 'https://ror.org/00y3rz519 Jiangsu Changjiang Electronics Technology (China) ę±Ÿč˜‡é•·é›»ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(75835, 'https://ror.org/00y3zx547', 'no_lang_code', 1, 'https://ror.org/00y3zx547 Krishi Vigyan Kendra, Hingoli'),
(75836, 'https://ror.org/00y5vq715', 'en', 1, 'https://ror.org/00y5vq715 Brennan Center for Justice'),
(75837, 'https://ror.org/00y61e316', 'de', 1, 'https://ror.org/00y61e316 Bremer Umweltinstitut'),
(75838, 'https://ror.org/00y650p73', 'no_lang_code', 1, 'https://ror.org/00y650p73 Neuboron (China)'),
(75839, 'https://ror.org/00y6d4r36', 'no_lang_code', 1, 'https://ror.org/00y6d4r36 Opticslah (United States)'),
(75840, 'https://ror.org/00y6pq124', 'no_lang_code', 1, 'https://ror.org/00y6pq124 Cefla (Italy)'),
(75841, 'https://ror.org/00y7m9a70', 'no_lang_code', 1, 'https://ror.org/00y7m9a70 Silver Bullet Solutions (United States)'),
(75842, 'https://ror.org/00y903920', 'no_lang_code', 1, 'https://ror.org/00y903920 Vcrsoft (United States)'),
(75843, 'https://ror.org/00y9hdv35', 'de', 1, 'https://ror.org/00y9hdv35 Institut für Hämatopathologie Hamburg'),
(75844, 'https://ror.org/00yc2my06', 'no_lang_code', 1, 'https://ror.org/00yc2my06 Sarcos (United States)'),
(75845, 'https://ror.org/00ycxta63', 'no_lang_code', 1, 'https://ror.org/00ycxta63 Hengdian Group DMEGC Magnetics (China)'),
(75846, 'https://ror.org/00yd0p282', 'en', 1, 'https://ror.org/00yd0p282 Institute of Microbiology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ микробиологии'),
(75847, 'https://ror.org/00ydhd623', 'en', 1, 'https://ror.org/00ydhd623 Institute for Global Dialogue'),
(75848, 'https://ror.org/00yfk0297', 'no_lang_code', 1, 'https://ror.org/00yfk0297 Sentimetrix (United States)'),
(75849, 'https://ror.org/00yfsq027', 'en', 1, 'https://ror.org/00yfsq027 Fayetteville VA Medical Center'),
(75850, 'https://ror.org/00ygnz155', 'en', 1, 'https://ror.org/00ygnz155 University Transportation Center for Railway Safety'),
(75851, 'https://ror.org/00yjfkj05', 'en', 1, 'https://ror.org/00yjfkj05 Chigasaki Rehabilitation College čŒ…ćƒ¶å“ŽćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€å­¦ę ”ćÆ'),
(75852, 'https://ror.org/00ynyd598', 'no_lang_code', 1, 'https://ror.org/00ynyd598 Gesellschaft für Materialforschung und Prüfungsanstalt für das Bauwesen (Germany)'),
(75853, 'https://ror.org/00ynzwx73', 'en', 1, 'https://ror.org/00ynzwx73 Afghan Paramount Welfare and Development Organization'),
(75854, 'https://ror.org/00yqed873', 'no_lang_code', 1, 'https://ror.org/00yqed873 Fraunhofer Singapore'),
(75855, 'https://ror.org/00ysb4w16', 'en', 1, 'https://ror.org/00ysb4w16 Multi Vaccines Development Program'),
(75856, 'https://ror.org/00z0wts96', 'no_lang_code', 1, 'https://ror.org/00z0wts96 Fuji Chemical Industries (Japan) åÆŒå£«åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(75857, 'https://ror.org/00z14xy49', 'no_lang_code', 1, 'https://ror.org/00z14xy49 Ossur (United States)'),
(75858, 'https://ror.org/00z1ayq69', 'de', 1, 'https://ror.org/00z1ayq69 Propstei Johannesberg'),
(75859, 'https://ror.org/00z3pae83', 'en', 1, 'https://ror.org/00z3pae83 Beijing Fengtai Disease Prevention and Control Center åŒ—äŗ¬åø‚äø°å°åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(75860, 'https://ror.org/00z4kzd65', 'no_lang_code', 1, 'https://ror.org/00z4kzd65 Microline Surgical (United States)'),
(75861, 'https://ror.org/00z5k4y41', 'no_lang_code', 1, 'https://ror.org/00z5k4y41 Novel (United States)'),
(75862, 'https://ror.org/00z62fe95', 'no_lang_code', 1, 'https://ror.org/00z62fe95 Merete (Germany)'),
(75863, 'https://ror.org/00z6hkq67', 'es', 1, 'https://ror.org/00z6hkq67 Tierra'),
(75864, 'https://ror.org/00z6x4k60', 'en', 1, 'https://ror.org/00z6x4k60 Jewish Museum London'),
(75865, 'https://ror.org/00z83z196', 'en', 1, 'https://ror.org/00z83z196 Institute of Information Science, Academia Sinica äø­å¤®ē ”ē©¶é™¢č³‡čØŠē§‘å­øē ”ē©¶ę‰€'),
(75866, 'https://ror.org/00z87ds37', 'no_lang_code', 1, 'https://ror.org/00z87ds37 HAMR Industries (United States)'),
(75867, 'https://ror.org/00zaasm74', 'no_lang_code', 1, 'https://ror.org/00zaasm74 MANI (Japan)'),
(75868, 'https://ror.org/00zev5680', 'fr', 1, 'https://ror.org/00zev5680 Agitel-Formation'),
(75869, 'https://ror.org/00zjvm038', 'no_lang_code', 1, 'https://ror.org/00zjvm038 SecurAcath (United States)'),
(75870, 'https://ror.org/00zkrw974', 'en', 1, 'https://ror.org/00zkrw974 Canada''s Ecofiscal Commission'),
(75871, 'https://ror.org/00zm1zp35', 'no_lang_code', 1, 'https://ror.org/00zm1zp35 SI-Bone (United States)'),
(75872, 'https://ror.org/00zmwwm29', 'en', 1, 'https://ror.org/00zmwwm29 Northern Ireland Ambulance Service Health and Social Care Trust'),
(75873, 'https://ror.org/00zpwvr27', 'en', 1, 'https://ror.org/00zpwvr27 Horseed International University'),
(75874, 'https://ror.org/00zrbk722', 'de', 1, 'https://ror.org/00zrbk722 Gesellschaft für Akademische Studienvorbereitung und Testentwicklung'),
(75875, 'https://ror.org/00zrx8c87', 'no_lang_code', 1, 'https://ror.org/00zrx8c87 Optics Balzers (Germany)'),
(75876, 'https://ror.org/00ztar512', 'en', 1, 'https://ror.org/00ztar512 Aichi Medical University Hospital ę„›ēŸ„åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(75877, 'https://ror.org/00zvhfv21', 'no_lang_code', 1, 'https://ror.org/00zvhfv21 Silergy (China)'),
(75878, 'https://ror.org/00zw0jt22', 'no_lang_code', 1, 'https://ror.org/00zw0jt22 Berry (Switzerland)'),
(75879, 'https://ror.org/00zwgem63', 'en', 1, 'https://ror.org/00zwgem63 Brooke'),
(75880, 'https://ror.org/00zx7vr24', 'no_lang_code', 1, 'https://ror.org/00zx7vr24 Kage Mikrofotografie (Germany)'),
(75881, 'https://ror.org/01021jx78', 'no_lang_code', 1, 'https://ror.org/01021jx78 Sunset Laboratory (United States)'),
(75882, 'https://ror.org/0102hgm33', 'no_lang_code', 1, 'https://ror.org/0102hgm33 Seelos Therapeutics (United States)'),
(75883, 'https://ror.org/01046sm89', 'es', 1, 'https://ror.org/01046sm89 Universidad Autónoma de Baja California Sur'),
(75884, 'https://ror.org/010584e10', 'no_lang_code', 1, 'https://ror.org/010584e10 Exactech (United States)'),
(75885, 'https://ror.org/0106sdn14', 'en', 1, 'https://ror.org/0106sdn14 Gorilla Doctors'),
(75886, 'https://ror.org/01088yf98', 'en', 1, 'https://ror.org/01088yf98 Mabula Ground Hornbill Project'),
(75887, 'https://ror.org/010b0td06', 'en', 1, 'https://ror.org/010b0td06 Komatsu University å…¬ē«‹å°ę¾å¤§å­¦'),
(75888, 'https://ror.org/010bhd382', 'no_lang_code', 1, 'https://ror.org/010bhd382 Launch Alaska (United States)'),
(75889, 'https://ror.org/010efbr18', 'no_lang_code', 1, 'https://ror.org/010efbr18 XUV Lasers (United States)'),
(75890, 'https://ror.org/010h7xw27', 'en', 1, 'https://ror.org/010h7xw27 BIOP Institute'),
(75891, 'https://ror.org/010heyq73', 'en', 1, 'https://ror.org/010heyq73 Zoo Atlanta'),
(75892, 'https://ror.org/010kw5m31', 'no_lang_code', 1, 'https://ror.org/010kw5m31 OTI Lumionics (Canada)'),
(75893, 'https://ror.org/010p2sq51', 'no_lang_code', 1, 'https://ror.org/010p2sq51 Nabors Industries (United States)'),
(75894, 'https://ror.org/010qd1m54', 'no_lang_code', 1, 'https://ror.org/010qd1m54 Institut für Nachhaltige Landbewirtschaftung (Germany)'),
(75895, 'https://ror.org/010qfgc60', 'en', 1, 'https://ror.org/010qfgc60 African Heritage Institution'),
(75896, 'https://ror.org/010wgsf71', 'no_lang_code', 1, 'https://ror.org/010wgsf71 Ventions (United States)'),
(75897, 'https://ror.org/010whbs59', 'no_lang_code', 1, 'https://ror.org/010whbs59 Miyanomori Memorial Hospital åŒ»ē™‚ę³•äŗŗ č®ƒē”Ÿä¼š å®®ć®ę£®čØ˜åæµē—…é™¢'),
(75898, 'https://ror.org/010x76r82', 'no_lang_code', 1, 'https://ror.org/010x76r82 Azur Space Solar Power'),
(75899, 'https://ror.org/010xsqw81', 'no_lang_code', 1, 'https://ror.org/010xsqw81 Institut für Bauphysik und Bauchemie (Germany)'),
(75900, 'https://ror.org/0110h6q82', 'en', 1, 'https://ror.org/0110h6q82 Clear Path for Veterans'),
(75901, 'https://ror.org/01119m545', 'no_lang_code', 1, 'https://ror.org/01119m545 Stf Technologies (United States)'),
(75902, 'https://ror.org/0114yxd88', 'no_lang_code', 1, 'https://ror.org/0114yxd88 Shijia Photons (China) 仕佳光子'),
(75903, 'https://ror.org/0117s3e61', 'no_lang_code', 1, 'https://ror.org/0117s3e61 ID Quantique (United Kingdom)'),
(75904, 'https://ror.org/0119k2y25', 'no_lang_code', 1, 'https://ror.org/0119k2y25 Safeware Engineering (United States)'),
(75905, 'https://ror.org/0119wa702', 'de', 1, 'https://ror.org/0119wa702 Virtus - Institut für Neue Lehr- und Lernmethoden'),
(75906, 'https://ror.org/0119y0r05', 'no_lang_code', 1, 'https://ror.org/0119y0r05 Hokko Chemical Industry (Japan) åŒ—čˆˆåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(75907, 'https://ror.org/011bx4w73', 'en', 1, 'https://ror.org/011bx4w73 Research Institute for Baker’s Yeast Versuchsanstalt der Hefeindustrie'),
(75908, 'https://ror.org/011djka92', 'no_lang_code', 1, 'https://ror.org/011djka92 Sabin Medicina Diagnostica (Brazil)'),
(75909, 'https://ror.org/011fc0n53', 'en', 1, 'https://ror.org/011fc0n53 National Transportation Research Center'),
(75910, 'https://ror.org/011g3fn28', 'no_lang_code', 1, 'https://ror.org/011g3fn28 Hatz (Germany)'),
(75911, 'https://ror.org/011g48w32', 'en', 1, 'https://ror.org/011g48w32 Institute of Sand Control, Shaanxi Academy of Forestry é™•č„æēœę²»ę²™ē ”ē©¶ę‰€'),
(75912, 'https://ror.org/011gpgf73', 'no_lang_code', 1, 'https://ror.org/011gpgf73 Berliner Stadtreinigungsbetriebe (Germany)'),
(75913, 'https://ror.org/011hecd67', 'en', 1, 'https://ror.org/011hecd67 National Center for Gene Research äø­å›½ē§‘å­¦é™¢å›½å®¶åŸŗå› ē ”ē©¶äø­åæƒ'),
(75914, 'https://ror.org/011jjvt31', 'en', 1, 'https://ror.org/011jjvt31 Chinese Society of Forestry äø­å›½ęž—å­¦ä¼š'),
(75915, 'https://ror.org/011jkz145', 'en', 1, 'https://ror.org/011jkz145 International Federation of Surveyors'),
(75916, 'https://ror.org/011kc9d11', 'en', 1, 'https://ror.org/011kc9d11 Agri-Food Business Innovation Center é£Ÿč¾²ćƒ“ć‚øćƒć‚¹ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(75917, 'https://ror.org/011kf5918', 'en', 1, 'https://ror.org/011kf5918 Mianyang Institute of Traditional Chinese Medicine ē»µé˜³äø­åŒ»å­¦é™¢'),
(75918, 'https://ror.org/011nerd04', 'no_lang_code', 1, 'https://ror.org/011nerd04 Kisarazu Hospital ęœØę›“ę“„ē—…é™¢'),
(75919, 'https://ror.org/011pwcp79', 'en', 1, 'https://ror.org/011pwcp79 Research and Action in Natural Wealth Administration ą¤Øą„ˆą¤øą¤°ą„ą¤—ą¤æą¤• ą¤øą¤‚ą¤Ŗą¤¤ą„ą¤¤ą„€ ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤øą¤Ø ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø आणि ą¤•ą„ƒą¤¤ą„€'),
(75920, 'https://ror.org/011s5nh14', 'en', 1, 'https://ror.org/011s5nh14 Fraunhofer Center for Chemical-Biotechnological Processes Fraunhofer-Zentrum für Chemisch-Biotechnologische Prozesse');
INSERT INTO `rors` VALUES
(75921, 'https://ror.org/011se0j84', 'en', 1, 'https://ror.org/011se0j84 African Forum and Network on Debt and Development'),
(75922, 'https://ror.org/011v4dm73', 'no_lang_code', 1, 'https://ror.org/011v4dm73 Averis Seeds (Netherlands)'),
(75923, 'https://ror.org/011yfd550', 'no_lang_code', 1, 'https://ror.org/011yfd550 TerraVerdae BioWorks (United Kingdom)'),
(75924, 'https://ror.org/0120p8e59', 'no_lang_code', 1, 'https://ror.org/0120p8e59 Dynapel Systems (United States)'),
(75925, 'https://ror.org/0120q3031', 'en', 1, 'https://ror.org/0120q3031 Institute of Mathematics, Academia Sinica 中央研究院數學所'),
(75926, 'https://ror.org/01217ma45', 'no_lang_code', 1, 'https://ror.org/01217ma45 Footstar (United States)'),
(75927, 'https://ror.org/0121c6k67', 'no_lang_code', 1, 'https://ror.org/0121c6k67 Institut Stadt I MobilitƤt I Energie (Germany)'),
(75928, 'https://ror.org/0121xav09', 'no_lang_code', 1, 'https://ror.org/0121xav09 Seikow Chemical Engineering and Machinery (Japan) ć‚»ć‚¤ć‚³ćƒ¼åŒ–å·„ę©Ÿ'),
(75929, 'https://ror.org/0121y9f76', 'no_lang_code', 1, 'https://ror.org/0121y9f76 NantWorks (United States)'),
(75930, 'https://ror.org/01231rh41', 'en', 1, 'https://ror.org/01231rh41 Georgia Department of Economic Development'),
(75931, 'https://ror.org/0123nj144', 'en', 1, 'https://ror.org/0123nj144 Egyptian Center for Innovation and Technology Development'),
(75932, 'https://ror.org/0124z6a88', 'en', 1, 'https://ror.org/0124z6a88 Baoding People''s Hospital äæå®šåø‚äŗŗę°‘åŒ»é™¢'),
(75933, 'https://ror.org/0125nre22', 'de', 1, 'https://ror.org/0125nre22 Kreisklinik Trostberg'),
(75934, 'https://ror.org/0125qer46', 'de', 1, 'https://ror.org/0125qer46 Die Johanniter'),
(75935, 'https://ror.org/0125wtc60', 'no_lang_code', 1, 'https://ror.org/0125wtc60 Pendar Technologies (United States)'),
(75936, 'https://ror.org/012797s84', 'no_lang_code', 1, 'https://ror.org/012797s84 Institut für Zukunftsorientierte Arbeitsgestaltung (Germany)'),
(75937, 'https://ror.org/0128qg670', 'en', 1, 'https://ror.org/0128qg670 Fraunhofer Group for Microelectronics Fraunhofer-Verbund Mikroelektronik'),
(75938, 'https://ror.org/0129kzc90', 'no_lang_code', 1, 'https://ror.org/0129kzc90 Showa Ika Kogyo (Japan) ę˜­å’ŒåŒ»ē§‘å·„ę„­'),
(75939, 'https://ror.org/0129qsy61', 'no_lang_code', 1, 'https://ror.org/0129qsy61 CGI (Canada)'),
(75940, 'https://ror.org/012cvjw59', 'no_lang_code', 1, 'https://ror.org/012cvjw59 Meagan Medical (United States)'),
(75941, 'https://ror.org/012d67872', 'en', 1, 'https://ror.org/012d67872 Diagnostic Microbiology Development Program'),
(75942, 'https://ror.org/012g7ks33', 'no_lang_code', 1, 'https://ror.org/012g7ks33 Praxis BioSciences (United States)'),
(75943, 'https://ror.org/012gdwx28', 'es', 1, 'https://ror.org/012gdwx28 Centro de Salud Casa del Barco'),
(75944, 'https://ror.org/012j9gn20', 'no_lang_code', 1, 'https://ror.org/012j9gn20 Mackinac Technology (United States)'),
(75945, 'https://ror.org/012k7ag19', 'no_lang_code', 1, 'https://ror.org/012k7ag19 IS-Wireless (Poland)'),
(75946, 'https://ror.org/012ktab60', 'no_lang_code', 1, 'https://ror.org/012ktab60 BrightPath Biotherapeutics (Japan)'),
(75947, 'https://ror.org/012m44z23', 'no_lang_code', 1, 'https://ror.org/012m44z23 Stadtwerke Duisburg (Germany)'),
(75948, 'https://ror.org/012n48z81', 'no_lang_code', 1, 'https://ror.org/012n48z81 Plasmology4 (United States)'),
(75949, 'https://ror.org/012pd4b91', 'en', 1, 'https://ror.org/012pd4b91 Western Transportation Institute'),
(75950, 'https://ror.org/012qgxn42', 'no_lang_code', 1, 'https://ror.org/012qgxn42 Secondpeak (United States)'),
(75951, 'https://ror.org/012rcg503', 'no_lang_code', 1, 'https://ror.org/012rcg503 Belron (Switzerland)'),
(75952, 'https://ror.org/012yg6072', 'de', 1, 'https://ror.org/012yg6072 Institut für Angewandte Bauforschung Weimar'),
(75953, 'https://ror.org/0130r4628', 'en', 1, 'https://ror.org/0130r4628 China Tibetology Research Center äø­å›½č—å­¦ē ”ē©¶äø­åæƒ'),
(75954, 'https://ror.org/0131vqf73', 'no_lang_code', 1, 'https://ror.org/0131vqf73 LiveDo (Japan)'),
(75955, 'https://ror.org/0135ffj82', 'en', 1, 'https://ror.org/0135ffj82 The Gordon Life Science Institute'),
(75956, 'https://ror.org/0135n9613', 'no_lang_code', 1, 'https://ror.org/0135n9613 SpaceTech (Germany)'),
(75957, 'https://ror.org/013607p24', 'sk', 1, 'https://ror.org/013607p24 Prevencia'),
(75958, 'https://ror.org/0136jw687', 'no_lang_code', 1, 'https://ror.org/0136jw687 Teva Pharmaceuticals (Switzerland)'),
(75959, 'https://ror.org/0138a8a04', 'en', 1, 'https://ror.org/0138a8a04 Xianning Central Hospital å’øå®åø‚äø­åæƒåŒ»é™¢'),
(75960, 'https://ror.org/013a5fa56', 'en', 1, 'https://ror.org/013a5fa56 Jinshan Hospital of Fudan University å¤ę—¦å¤§å­¦é™„å±žé‡‘å±±åŒ»é™¢'),
(75961, 'https://ror.org/013c0df84', 'de', 1, 'https://ror.org/013c0df84 Progress-Institut für Wirtschaftsforschung'),
(75962, 'https://ror.org/013ceqq33', 'no_lang_code', 1, 'https://ror.org/013ceqq33 D.I.I.V. (Croatia) DruŔtvo za Istraživanje i IskoriŔtavanje Voda'),
(75963, 'https://ror.org/013cg0x56', 'en', 1, 'https://ror.org/013cg0x56 Cleveland Metroparks'),
(75964, 'https://ror.org/013deq447', 'es', 1, 'https://ror.org/013deq447 Federación de Aseguradores Colombianos Federation of Colombian Insurers'),
(75965, 'https://ror.org/013e6jc10', 'no_lang_code', 1, 'https://ror.org/013e6jc10 Elixiron Immunotherapeutics (Taiwan) å®‰ē«‹ēŽŗč£ē”Ÿē‰©åŒ»čÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(75966, 'https://ror.org/013fp1s35', 'no_lang_code', 1, 'https://ror.org/013fp1s35 SiOnyx (United States)'),
(75967, 'https://ror.org/013hxq561', 'en', 1, 'https://ror.org/013hxq561 University of the Sacred Heart Gulu'),
(75968, 'https://ror.org/013hy3379', 'no_lang_code', 1, 'https://ror.org/013hy3379 Sinus Markt- und Sozialforschung (Germany)'),
(75969, 'https://ror.org/013vv4k88', 'no_lang_code', 1, 'https://ror.org/013vv4k88 CosMED Pharmaceutical (Japan) ć‚³ć‚¹ćƒ”ćƒ‡ć‚£č£½č–¬'),
(75970, 'https://ror.org/013wbpj39', 'no_lang_code', 1, 'https://ror.org/013wbpj39 Technology Focus (United States)'),
(75971, 'https://ror.org/013y3gm73', 'no_lang_code', 1, 'https://ror.org/013y3gm73 ZTS Sabinov (Slovakia)'),
(75972, 'https://ror.org/013yc9k66', 'no_lang_code', 1, 'https://ror.org/013yc9k66 GEOtest Bratislava (Slovakia)'),
(75973, 'https://ror.org/013z02f32', 'en', 1, 'https://ror.org/013z02f32 Shizuoka Prefecture Archaeological Center é™å²”ēœŒåŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(75974, 'https://ror.org/014088296', 'no_lang_code', 1, 'https://ror.org/014088296 H2 Mobility (Germany)'),
(75975, 'https://ror.org/0140nwe11', 'en', 1, 'https://ror.org/0140nwe11 Institute of European and American Studies, Academia Sinica äø­å¤®ē ”ē©¶é™¢ę­ē¾Žē ”ē©¶ę‰€'),
(75976, 'https://ror.org/0140vs727', 'no_lang_code', 1, 'https://ror.org/0140vs727 Potrero Medical (United States)'),
(75977, 'https://ror.org/01433fv30', 'en', 1, 'https://ror.org/01433fv30 Bunka Gakuen Nagano Technical College ę–‡åŒ–å­¦åœ’é•·é‡Žäæč‚²å°‚é–€å­¦ę ”'),
(75978, 'https://ror.org/0143ggv59', 'no_lang_code', 1, 'https://ror.org/0143ggv59 Israel Corp (Israel) החברה ×œ×™×©×Ø××œ'),
(75979, 'https://ror.org/01441w502', 'no_lang_code', 1, 'https://ror.org/01441w502 Bayer (Australia)'),
(75980, 'https://ror.org/0144gtm47', 'de', 1, 'https://ror.org/0144gtm47 Ministerium für Finanzen und Europa'),
(75981, 'https://ror.org/0146m4n64', 'no_lang_code', 1, 'https://ror.org/0146m4n64 Qatar Central Bank مصرف قطر Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(75982, 'https://ror.org/0146rd070', 'no_lang_code', 1, 'https://ror.org/0146rd070 Bloorazma (Iran) ŲØŁ„ŁˆŲ±Ų¢Ų²Ł…Ų§'),
(75983, 'https://ror.org/014a6fe58', 'en', 1, 'https://ror.org/014a6fe58 Whole Health Institute'),
(75984, 'https://ror.org/014bb9r42', 'no_lang_code', 1, 'https://ror.org/014bb9r42 ACS Dobfar (Italy)'),
(75985, 'https://ror.org/014bm1n40', 'en', 1, 'https://ror.org/014bm1n40 FIRST Robotics Canada'),
(75986, 'https://ror.org/014cg2q58', 'no_lang_code', 1, 'https://ror.org/014cg2q58 Atotech (Germany)'),
(75987, 'https://ror.org/014dapq37', 'no_lang_code', 1, 'https://ror.org/014dapq37 Envitec Biogas (Germany)'),
(75988, 'https://ror.org/014dgqr33', 'it', 1, 'https://ror.org/014dgqr33 Ordine Ospedaliero di San Giovanni di Dio Fatebenefratelli'),
(75989, 'https://ror.org/014em8n15', 'no_lang_code', 1, 'https://ror.org/014em8n15 Rubius Therapeutics (United States)'),
(75990, 'https://ror.org/014kzd996', 'en', 1, 'https://ror.org/014kzd996 Centro Pipistrelli Sardegna'),
(75991, 'https://ror.org/014ma9t05', 'no_lang_code', 1, 'https://ror.org/014ma9t05 SDS Biotech (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ćƒ»ćƒ‡ć‚£ćƒ¼ćƒ»ć‚Øć‚¹ ćƒć‚¤ć‚Ŗćƒ†ćƒƒć‚Æ'),
(75992, 'https://ror.org/014p0zg39', 'no_lang_code', 1, 'https://ror.org/014p0zg39 Stiftung Liebenau (Germany)'),
(75993, 'https://ror.org/014pmjv51', 'no_lang_code', 1, 'https://ror.org/014pmjv51 Natreon (United States)'),
(75994, 'https://ror.org/014pnrs95', 'no_lang_code', 1, 'https://ror.org/014pnrs95 Pigeon (Japan)'),
(75995, 'https://ror.org/014r8q346', 'no_lang_code', 1, 'https://ror.org/014r8q346 The Scatter Works (United States)'),
(75996, 'https://ror.org/014tnpn30', 'no_lang_code', 1, 'https://ror.org/014tnpn30 Recovery Record (United States)'),
(75997, 'https://ror.org/014trz974', 'en', 1, 'https://ror.org/014trz974 Qualitative Data Repository'),
(75998, 'https://ror.org/014tv7j22', 'en', 1, 'https://ror.org/014tv7j22 Department of Agrarian Sciences ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ аграрных навук'),
(75999, 'https://ror.org/014vmc881', 'no_lang_code', 1, 'https://ror.org/014vmc881 OVO (Indonesia)'),
(76000, 'https://ror.org/014wkxc11', 'no_lang_code', 1, 'https://ror.org/014wkxc11 DenMat (United States)'),
(76001, 'https://ror.org/014x0rv86', 'en', 1, 'https://ror.org/014x0rv86 Institut für Bildung und Kultur Institute for Education and Culture'),
(76002, 'https://ror.org/014xvjk95', 'no_lang_code', 1, 'https://ror.org/014xvjk95 Observatory and Planetarium of PreŔov'),
(76003, 'https://ror.org/014ze5k65', 'no_lang_code', 1, 'https://ror.org/014ze5k65 Catalyst Chemical Industries (India)'),
(76004, 'https://ror.org/014ze8513', 'no_lang_code', 1, 'https://ror.org/014ze8513 Dyckerhoff (Germany)'),
(76005, 'https://ror.org/0151gh112', 'en', 1, 'https://ror.org/0151gh112 Islamic Azad University Rasht Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد Ų±Ų“ŲŖā€Ž'),
(76006, 'https://ror.org/015305q15', 'fr', 1, 'https://ror.org/015305q15 Centre Hospitalier Avranches Granville, Le centre hospitalier Avranches Granville'),
(76007, 'https://ror.org/0155p9f79', 'en', 1, 'https://ror.org/0155p9f79 Foundation for Environment and Economic Development Services'),
(76008, 'https://ror.org/01565d802', 'no_lang_code', 1, 'https://ror.org/01565d802 Locate Bio (United Kingdom)'),
(76009, 'https://ror.org/015706c71', 'no_lang_code', 1, 'https://ror.org/015706c71 Institut für Stahlbau Leipzig (Germany)'),
(76010, 'https://ror.org/015999a88', 'no_lang_code', 1, 'https://ror.org/015999a88 Amino Up (Japan) ćˆ±ć‚¢ćƒŸćƒŽć‚¢ćƒƒćƒ—'),
(76011, 'https://ror.org/015ad1e56', 'de', 1, 'https://ror.org/015ad1e56 Landesinstitut für Arbeitsgestaltung des Landes Nordrhein-Westfalen'),
(76012, 'https://ror.org/015bm3863', 'no_lang_code', 1, 'https://ror.org/015bm3863 Ueno Fine Chemicals Industry (Japan) äøŠé‡Žč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(76013, 'https://ror.org/015bsfc29', 'en', 1, 'https://ror.org/015bsfc29 Network for Computational Modeling in the Social and Ecological Sciences'),
(76014, 'https://ror.org/015ccve61', 'no_lang_code', 1, 'https://ror.org/015ccve61 Dilon Technologies (United States)'),
(76015, 'https://ror.org/015dkr863', 'no_lang_code', 1, 'https://ror.org/015dkr863 TCI Peptide Therapeutics (United States)'),
(76016, 'https://ror.org/015e70897', 'de', 1, 'https://ror.org/015e70897 Forschungsgemeinschaft für elektrische Anlagen und Stromwirtschaft'),
(76017, 'https://ror.org/015f8tz43', 'en', 1, 'https://ror.org/015f8tz43 North Dakota Game and Fish Department'),
(76018, 'https://ror.org/015g9sa94', 'en', 1, 'https://ror.org/015g9sa94 Agricultural Bank of China'),
(76019, 'https://ror.org/015gwtc18', 'en', 1, 'https://ror.org/015gwtc18 Kochi Agricultural Technology Center é«˜ēŸ„ēœŒč¾²ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(76020, 'https://ror.org/015kbrv74', 'no_lang_code', 1, 'https://ror.org/015kbrv74 Vital Art and Science (United States)'),
(76021, 'https://ror.org/015m1g269', 'no_lang_code', 1, 'https://ror.org/015m1g269 Auchem (Slovakia)'),
(76022, 'https://ror.org/015q2vx96', 'no_lang_code', 1, 'https://ror.org/015q2vx96 Power+Energy (United States)'),
(76023, 'https://ror.org/015s5md50', 'en', 1, 'https://ror.org/015s5md50 James Family Prescott YMCA'),
(76024, 'https://ror.org/015s7dk89', 'no_lang_code', 1, 'https://ror.org/015s7dk89 Nima (United States)'),
(76025, 'https://ror.org/015sra590', 'sk', 1, 'https://ror.org/015sra590 SlovenskƩ PlanetƔriƔ'),
(76026, 'https://ror.org/015trrs98', 'no_lang_code', 1, 'https://ror.org/015trrs98 T2C-Energy (United States)'),
(76027, 'https://ror.org/015vyg314', 'en', 1, 'https://ror.org/015vyg314 The National Institute of Neuromotor System المعهد Ų§Ł„Ł‚ŁˆŁ…ŁŠ للجهاز Ų§Ł„Ų­Ų±ŁƒŁŠ Ų§Ł„Ų¹ŲµŲØŁŠ'),
(76028, 'https://ror.org/015w7jz26', 'en', 1, 'https://ror.org/015w7jz26 Kerala Livestock Development Board ą“•ąµ‡ą“°ą“³ ą“•ą“Øąµą“Øąµą“•ą“¾ą“²ą“æ ą“µą“æą“•ą“øą“Ø ą“¬ąµ‡ą“¾ąµ¼ą“”ąµ'),
(76029, 'https://ror.org/015w8rd21', 'no_lang_code', 1, 'https://ror.org/015w8rd21 Bonesupport (Sweden)'),
(76030, 'https://ror.org/015x34y38', 'no_lang_code', 1, 'https://ror.org/015x34y38 Wave Life Sciences (United States)'),
(76031, 'https://ror.org/015xey021', 'en', 1, 'https://ror.org/015xey021 Communications Technology Laboratory'),
(76032, 'https://ror.org/015xh0s12', 'en', 1, 'https://ror.org/015xh0s12 Biosciences Research Support Foundation'),
(76033, 'https://ror.org/015z19759', 'no_lang_code', 1, 'https://ror.org/015z19759 Grosskraftwerk Mannheim (Germany)'),
(76034, 'https://ror.org/016065f51', 'no_lang_code', 1, 'https://ror.org/016065f51 Kanto Chemical (Japan)'),
(76035, 'https://ror.org/0160cqn49', 'en', 1, 'https://ror.org/0160cqn49 Beijing Chang''an Integrated Traditional Chinese and Western Medicine Hospital åŒ—äŗ¬é•æå®‰äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(76036, 'https://ror.org/0160qej13', 'no_lang_code', 1, 'https://ror.org/0160qej13 PhotoniCare (United States)'),
(76037, 'https://ror.org/01613vh25', 'en', 1, 'https://ror.org/01613vh25 Chief Scientist Office'),
(76038, 'https://ror.org/0161hbt42', 'en', 1, 'https://ror.org/0161hbt42 University of Gonabad Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŁŠ گناباد'),
(76039, 'https://ror.org/0166ary89', 'no_lang_code', 1, 'https://ror.org/0166ary89 Calibrium (Slovakia)'),
(76040, 'https://ror.org/016715t42', 'no_lang_code', 1, 'https://ror.org/016715t42 One-Cycle Control (United States)'),
(76041, 'https://ror.org/016728c22', 'no_lang_code', 1, 'https://ror.org/016728c22 Proteus (New Zealand)'),
(76042, 'https://ror.org/0168c7237', 'en', 1, 'https://ror.org/0168c7237 State Public Scientific Technological Library of Siberian Branch of Russian Academy of Sciences Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŃƒŠ±Š»ŠøŃ‡Š½Š°Ń Š½Š°ŃƒŃ‡Š½Š¾-Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń библиотека Š”Šž Š ŠŠ'),
(76043, 'https://ror.org/0168wa849', 'no_lang_code', 1, 'https://ror.org/0168wa849 Sakai Chemical Industry (Japan) å ŗåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(76044, 'https://ror.org/0169qcp97', 'no_lang_code', 1, 'https://ror.org/0169qcp97 Geocomplex (Slovakia)'),
(76045, 'https://ror.org/016aygb24', 'no_lang_code', 1, 'https://ror.org/016aygb24 Zymeworks (Canada)'),
(76046, 'https://ror.org/016ayye29', 'en', 1, 'https://ror.org/016ayye29 Lusaka Apex Medical University'),
(76047, 'https://ror.org/016bjqk65', 'no_lang_code', 1, 'https://ror.org/016bjqk65 Abu Dhabi Health Services ؓركة أبوظبي للخدمات Ų§Ł„ŲµŲ­ŁŠŲ© - ŲµŲ­Ų©'),
(76048, 'https://ror.org/016bnqk64', 'en', 1, 'https://ror.org/016bnqk64 Humber Teaching NHS Foundation Trust'),
(76049, 'https://ror.org/016d4nc35', 'no_lang_code', 1, 'https://ror.org/016d4nc35 Phoenix Integration (United States)'),
(76050, 'https://ror.org/016k2xj91', 'no_lang_code', 1, 'https://ror.org/016k2xj91 Wittenstein (Germany)'),
(76051, 'https://ror.org/016knsn07', 'en', 1, 'https://ror.org/016knsn07 National Confidential Enquiry into Patient Outcome and Death'),
(76052, 'https://ror.org/016mndq43', 'no_lang_code', 1, 'https://ror.org/016mndq43 Biota Institut für ökologische Forschung und Planung (Germany)'),
(76053, 'https://ror.org/016nv1t74', 'en', 1, 'https://ror.org/016nv1t74 Kumamoto Prefectural College of Technology ē†Šęœ¬ēœŒē«‹ęŠ€č”“ēŸ­ęœŸå¤§å­¦ę ”'),
(76054, 'https://ror.org/016p2sb76', 'no_lang_code', 1, 'https://ror.org/016p2sb76 Particle Beam Lasers (United States)'),
(76055, 'https://ror.org/016qkze89', 'no_lang_code', 1, 'https://ror.org/016qkze89 Achieve Life Sciences (United States)'),
(76056, 'https://ror.org/016r7x187', 'no_lang_code', 1, 'https://ror.org/016r7x187 WiTricity (United States)'),
(76057, 'https://ror.org/016s8vs02', 'en', 1, 'https://ror.org/016s8vs02 Physical Measurement Laboratory'),
(76058, 'https://ror.org/016ye1q56', 'no_lang_code', 1, 'https://ror.org/016ye1q56 Cognetix (India)'),
(76059, 'https://ror.org/016ywe586', 'no_lang_code', 1, 'https://ror.org/016ywe586 Kvant (Slovakia)'),
(76060, 'https://ror.org/0170b6c09', 'en', 1, 'https://ror.org/0170b6c09 Institute of Scientific and Technical Information'),
(76061, 'https://ror.org/0170pdx26', 'no_lang_code', 1, 'https://ror.org/0170pdx26 Genetic Signatures (Australia)'),
(76062, 'https://ror.org/0171m6969', 'no_lang_code', 1, 'https://ror.org/0171m6969 Exploramed (United States)'),
(76063, 'https://ror.org/0175s4d43', 'no_lang_code', 1, 'https://ror.org/0175s4d43 Engineering Software Steyr (Austria)'),
(76064, 'https://ror.org/0176eja59', 'en', 1, 'https://ror.org/0176eja59 Foundation for Finnish Inventions KeksintƶsƤƤtiƶ'),
(76065, 'https://ror.org/0176pnx67', 'en', 1, 'https://ror.org/0176pnx67 Hong Kong Institute of Contemporary Culture é¦™ęøÆē•¶ä»£ę–‡åŒ–äø­åæƒę–¼'),
(76066, 'https://ror.org/0177mph94', 'no_lang_code', 1, 'https://ror.org/0177mph94 New England Biolabs (United Kingdom)'),
(76067, 'https://ror.org/0179g4w23', 'no_lang_code', 1, 'https://ror.org/0179g4w23 Insiders Technologies (Germany)'),
(76068, 'https://ror.org/0179ktw44', 'en', 1, 'https://ror.org/0179ktw44 Advanced Systems Laboratory ą¤‰ą¤Øą„ą¤Øą¤¤ ą¤Ŗą„ą¤°ą¤£ą¤¾ą¤²ą„€ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(76069, 'https://ror.org/017ay4a94', 'en', 1, 'https://ror.org/017ay4a94 Sunshine Coast University Hospital'),
(76070, 'https://ror.org/017cm6884', 'en', 1, 'https://ror.org/017cm6884 Baylor Scott & White Medical Center - Temple'),
(76071, 'https://ror.org/017dx9162', 'no_lang_code', 1, 'https://ror.org/017dx9162 Jiangsu T-mab BioPharma (China) ę±Ÿč‹ę³°åŗ·ē”Ÿē‰©åŒ»čÆęœ‰é™å…¬åøåˆ›'),
(76072, 'https://ror.org/017f6te91', 'pt', 1, 'https://ror.org/017f6te91 Instituto Biopesca'),
(76073, 'https://ror.org/017fg3624', 'en', 1, 'https://ror.org/017fg3624 Arab Network for Early Childhood Development Ų§Ł„Ų“ŲØŁƒŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų·ŁŁˆŁ„Ų© Ų§Ł„Ł…ŲØŁƒŲ±Ų©'),
(76074, 'https://ror.org/017fspt77', 'en', 1, 'https://ror.org/017fspt77 Kutaisi International University įƒ„įƒ£įƒ—įƒįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ”įƒ įƒ—įƒįƒØįƒįƒ įƒ˜įƒ”įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(76075, 'https://ror.org/017gepx61', 'no_lang_code', 1, 'https://ror.org/017gepx61 Modumetal (United States)'),
(76076, 'https://ror.org/017jr1555', 'en', 1, 'https://ror.org/017jr1555 Mercator Institute for China Studies'),
(76077, 'https://ror.org/017k52s24', 'en', 1, 'https://ror.org/017k52s24 Turkish Academic Network and Information Center Ulusal Akademik Ağ ve Bilgi Merkezi'),
(76078, 'https://ror.org/017kv7q60', 'en', 1, 'https://ror.org/017kv7q60 Naval Physical & Oceanographic Laboratory'),
(76079, 'https://ror.org/017pwjv59', 'no_lang_code', 1, 'https://ror.org/017pwjv59 Spectrum Coatings (United States)'),
(76080, 'https://ror.org/017qypp02', 'no_lang_code', 1, 'https://ror.org/017qypp02 ExxonMobil (Germany)'),
(76081, 'https://ror.org/017ragh07', 'no_lang_code', 1, 'https://ror.org/017ragh07 ProActive Memory Services (United States)'),
(76082, 'https://ror.org/017rfjf78', 'no_lang_code', 1, 'https://ror.org/017rfjf78 Riso (Slovakia)'),
(76083, 'https://ror.org/017rhna63', 'no_lang_code', 1, 'https://ror.org/017rhna63 CNH Industrial (Netherlands)'),
(76084, 'https://ror.org/017rjkb90', 'no_lang_code', 1, 'https://ror.org/017rjkb90 Thermo Solar (Slovakia)'),
(76085, 'https://ror.org/017v23v64', 'no_lang_code', 1, 'https://ror.org/017v23v64 Kisters (Germany)'),
(76086, 'https://ror.org/017w08b10', 'en', 1, 'https://ror.org/017w08b10 Stockholm Environment Institute'),
(76087, 'https://ror.org/017yfyw84', 'no_lang_code', 1, 'https://ror.org/017yfyw84 Alanod (Germany)'),
(76088, 'https://ror.org/01813aq51', 'no_lang_code', 1, 'https://ror.org/01813aq51 Lohmann & Rauscher (Germany)'),
(76089, 'https://ror.org/0181a8730', 'en', 1, 'https://ror.org/0181a8730 Harcourt Butler Technical University ą¤¹ą¤°ą¤•ą„‹ą¤°ą„ą¤Ÿ बटलर ą¤Ÿą„‡ą¤•ą„ą¤Øą¤æą¤•ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(76090, 'https://ror.org/0182aka86', 'en', 1, 'https://ror.org/0182aka86 Tochigi Prefectural Police 栃木県警察'),
(76091, 'https://ror.org/0182t0e82', 'en', 1, 'https://ror.org/0182t0e82 InterAmerican Network of Academies of Sciences'),
(76092, 'https://ror.org/0189jyk25', 'en', 1, 'https://ror.org/0189jyk25 Aachen Institute for Nuclear Training'),
(76093, 'https://ror.org/0189mfq62', 'no_lang_code', 1, 'https://ror.org/0189mfq62 Deutsche Messe (Germany)'),
(76094, 'https://ror.org/018aq0w85', 'en', 1, 'https://ror.org/018aq0w85 Ryugasaki City Museum of History and Folklore é¾ć‚±å“Žåø‚ę­“å²ę°‘äæ—č³‡ę–™é¤Ø'),
(76095, 'https://ror.org/018fa7h76', 'no_lang_code', 1, 'https://ror.org/018fa7h76 Skeletal Dynamics (United States)'),
(76096, 'https://ror.org/018fa8m68', 'en', 1, 'https://ror.org/018fa8m68 Forest Ecosystem Monitoring Cooperative'),
(76097, 'https://ror.org/018fbs662', 'de', 1, 'https://ror.org/018fbs662 Nestor Bildungsinstitut'),
(76098, 'https://ror.org/018ftzc45', 'no_lang_code', 1, 'https://ror.org/018ftzc45 K8 Institute of Strategic Aesthetics (Germany)'),
(76099, 'https://ror.org/018g2w043', 'no_lang_code', 1, 'https://ror.org/018g2w043 Therapeutic Vision (United States)'),
(76100, 'https://ror.org/018jrds86', 'en', 1, 'https://ror.org/018jrds86 Directorate of Cashew Research ą¤•ą¤¾ą¤œą„‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(76101, 'https://ror.org/018mtsg06', 'no_lang_code', 1, 'https://ror.org/018mtsg06 Klox Technologies (Canada)'),
(76102, 'https://ror.org/018n2ja79', 'en', 1, 'https://ror.org/018n2ja79 Atlas of Living Australia'),
(76103, 'https://ror.org/018saep26', 'fr', 1, 'https://ror.org/018saep26 Ɖcole de Formation aux CarriĆØres de SantĆ©'),
(76104, 'https://ror.org/018t24x84', 'en', 1, 'https://ror.org/018t24x84 Centre for Research and Information on Substance Abuse'),
(76105, 'https://ror.org/018zkg706', 'en', 1, 'https://ror.org/018zkg706 Beijing Emergency Medical Center åŒ—äŗ¬ę€„ę•‘äø­åæƒ'),
(76106, 'https://ror.org/0191qaw76', 'no_lang_code', 1, 'https://ror.org/0191qaw76 Swift Solar (United States)'),
(76107, 'https://ror.org/0191qk654', 'no_lang_code', 1, 'https://ror.org/0191qk654 Vibration and Shock Technologies (United States)'),
(76108, 'https://ror.org/0194rjs93', 'no_lang_code', 1, 'https://ror.org/0194rjs93 Schunk Carbon Technology (Germany)'),
(76109, 'https://ror.org/0197j6223', 'no_lang_code', 1, 'https://ror.org/0197j6223 Sofar Acoustics (United States)'),
(76110, 'https://ror.org/0197nmp73', 'en', 1, 'https://ror.org/0197nmp73 Hubei Provincial Center for Disease Control and Prevention ę¹–åŒ—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(76111, 'https://ror.org/0199zgv94', 'fr', 1, 'https://ror.org/0199zgv94 IRT M2P, Instituts de Recherche Technologique'),
(76112, 'https://ror.org/019f08v97', 'en', 1, 'https://ror.org/019f08v97 Jundi-Shapur University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų¬Ł†ŲÆŪŒ ؓاپور ŲÆŲ²ŁŁˆŁ„'),
(76113, 'https://ror.org/019f6hy95', 'no_lang_code', 1, 'https://ror.org/019f6hy95 Duoject Medical Systems (Canada)'),
(76114, 'https://ror.org/019g08z42', 'en', 1, 'https://ror.org/019g08z42 East Suffolk and North Essex NHS Foundation Trust'),
(76115, 'https://ror.org/019g1wb57', 'no_lang_code', 1, 'https://ror.org/019g1wb57 Aerogen (Ireland)'),
(76116, 'https://ror.org/019gg0j03', 'no_lang_code', 1, 'https://ror.org/019gg0j03 Nuvaira (United States)'),
(76117, 'https://ror.org/019gqj590', 'no_lang_code', 1, 'https://ror.org/019gqj590 Mardil (United States)'),
(76118, 'https://ror.org/019jqyn65', 'no_lang_code', 1, 'https://ror.org/019jqyn65 Vattenfall (United Kingdom)'),
(76119, 'https://ror.org/019m6wk21', 'en', 1, 'https://ror.org/019m6wk21 Algebra University College Visoko učiliŔte Algebra'),
(76120, 'https://ror.org/019nmjx95', 'no_lang_code', 1, 'https://ror.org/019nmjx95 HEC Pharm (China)'),
(76121, 'https://ror.org/019p75874', 'fr', 1, 'https://ror.org/019p75874 Château de Montsoreau Museum of Contemporary Art'),
(76122, 'https://ror.org/019qk5827', 'no_lang_code', 1, 'https://ror.org/019qk5827 Boly Media Communications (United States)'),
(76123, 'https://ror.org/019r5ea24', 'en', 1, 'https://ror.org/019r5ea24 Suriname Indigenous Health Fund'),
(76124, 'https://ror.org/019rkfc79', 'no_lang_code', 1, 'https://ror.org/019rkfc79 SpineVision (France)'),
(76125, 'https://ror.org/019t2m169', 'no_lang_code', 1, 'https://ror.org/019t2m169 Valagro (India)'),
(76126, 'https://ror.org/019t4cq59', 'no_lang_code', 1, 'https://ror.org/019t4cq59 Phase IV (United States)'),
(76127, 'https://ror.org/019tz0c71', 'en', 1, 'https://ror.org/019tz0c71 State Scientific and Technical Library of Ukraine Державна науково-технічна бібліотека України'),
(76128, 'https://ror.org/019vk5v89', 'en', 1, 'https://ror.org/019vk5v89 Hamburg Institute for Vocational Education and Training Hamburger Institut für Berufliche Bildung'),
(76129, 'https://ror.org/019ytqh38', 'en', 1, 'https://ror.org/019ytqh38 Hubei 672 Orthopedics Hospital of Traditional Chinese Medicine and Western Medicine ę¹–åŒ—å…­äøƒäŗŒäø­č„æåŒ»ē»“åˆéŖØē§‘åŒ»é™¢'),
(76130, 'https://ror.org/019yx9f29', 'no_lang_code', 1, 'https://ror.org/019yx9f29 Lundin Mining (Canada)'),
(76131, 'https://ror.org/019z2v446', 'en', 1, 'https://ror.org/019z2v446 Rongo University'),
(76132, 'https://ror.org/019z7bq36', 'no_lang_code', 1, 'https://ror.org/019z7bq36 Opti-Logic (United States)'),
(76133, 'https://ror.org/019z90y68', 'en', 1, 'https://ror.org/019z90y68 Children''s Play School Citizen Stage é‡§č·Æåø‚ć“ć©ć‚‚éŠå­¦é¤Ø'),
(76134, 'https://ror.org/01a0hfp29', 'fr', 1, 'https://ror.org/01a0hfp29 Service Volontaire International'),
(76135, 'https://ror.org/01a1rwe53', 'no_lang_code', 1, 'https://ror.org/01a1rwe53 Solvis (Germany)'),
(76136, 'https://ror.org/01a242a35', 'en', 1, 'https://ror.org/01a242a35 Government Logistics Department ę”æåŗœē‰©ęµęœå‹™ē½²'),
(76137, 'https://ror.org/01a289t25', 'no_lang_code', 1, 'https://ror.org/01a289t25 Bien-Air Medical Technologies (Switzerland)'),
(76138, 'https://ror.org/01a2p6r88', 'no_lang_code', 1, 'https://ror.org/01a2p6r88 ConsenSys (United States)'),
(76139, 'https://ror.org/01a6bf324', 'no_lang_code', 1, 'https://ror.org/01a6bf324 Ofogh Koorosh Chain Stores ŁŲ±ŁˆŲ“ŚÆŲ§Ł‡ Ł‡Ų§ŪŒ Ų²Ł†Ų¬ŪŒŲ±Ł‡ ای افق کوروؓ'),
(76140, 'https://ror.org/01a7sne14', 'no_lang_code', 1, 'https://ror.org/01a7sne14 Apex (Taiwan)'),
(76141, 'https://ror.org/01a8dsa88', 'en', 1, 'https://ror.org/01a8dsa88 Hakodate Clinical Welfare College å‡½é¤Øč‡ØåŗŠē¦ē„‰å°‚é–€å­¦ę ”'),
(76142, 'https://ror.org/01aa5rh15', 'en', 1, 'https://ror.org/01aa5rh15 Institute of Traditional Japanese Architecture ę—„ęœ¬å»ŗēÆ‰å°‚é–€å­¦ę ”'),
(76143, 'https://ror.org/01ab6z353', 'en', 1, 'https://ror.org/01ab6z353 American Action Forum'),
(76144, 'https://ror.org/01acc4e45', 'no_lang_code', 1, 'https://ror.org/01acc4e45 Castellini (Italy)'),
(76145, 'https://ror.org/01af4em40', 'no_lang_code', 1, 'https://ror.org/01af4em40 IDS (Germany)'),
(76146, 'https://ror.org/01afeqs63', 'no_lang_code', 1, 'https://ror.org/01afeqs63 PEEL Therapeutics (United States)'),
(76147, 'https://ror.org/01aggbv66', 'en', 1, 'https://ror.org/01aggbv66 Mahendra Institute of Management and Technical Studies ą¬®ą¬¹ą­‡ą¬Øą­ą¬¦ą­ą¬° ą¬‡ą¬Øą¬·ą­ą¬Ÿą¬æą¬šą­ą­Ÿą­ą¬Ÿą­ ą¬…ą¬«ą­ ą¬®ą­ą­Ÿą¬¾ą¬Øą­‡ą¬œą¬®ą­‡ą¬£ą­ą¬Ÿ ą¬†ą¬£ą­ą¬” ą¬Ÿą­‡ą¬•ą­ą¬Øą¬æą¬•ą¬¾ą¬² ą¬·ą­ą¬Ÿą¬”ą¬æą¬ø (ą¬®ą¬æą¬®ą­ā€Œą¬Ÿą­ą¬ø)'),
(76148, 'https://ror.org/01ahhnh95', 'no_lang_code', 1, 'https://ror.org/01ahhnh95 Xellia (Denmark)'),
(76149, 'https://ror.org/01aht8130', 'no_lang_code', 1, 'https://ror.org/01aht8130 Simetri (United States)'),
(76150, 'https://ror.org/01am3pw68', 'en', 1, 'https://ror.org/01am3pw68 Islamic Azad University, Zahedan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد زاهدان'),
(76151, 'https://ror.org/01an1rj90', 'en', 1, 'https://ror.org/01an1rj90 Sumitomo Mitsui Banking Corporation äø‰äŗ•ä½å‹éŠ€č”Œ'),
(76152, 'https://ror.org/01anr5861', 'no_lang_code', 1, 'https://ror.org/01anr5861 Balipara Foundation'),
(76153, 'https://ror.org/01aqb5k11', 'en', 1, 'https://ror.org/01aqb5k11 Biotechnology and Pharmaceutical Industries Promotion Office ē¶“ęæŸéƒØē”ŸęŠ€é†«č—„ē”¢ę„­ē™¼å±•ęŽØå‹•å°ēµ„'),
(76154, 'https://ror.org/01as6we94', 'en', 1, 'https://ror.org/01as6we94 Rama Devi Women''s University ରମା ଦେବୀ ମହିଳା ą¬¬ą¬æą¬¶ą­ą¬µ ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(76155, 'https://ror.org/01aseef42', 'no_lang_code', 1, 'https://ror.org/01aseef42 Knowledge Raven Management (Germany)'),
(76156, 'https://ror.org/01at1hy26', 'no_lang_code', 1, 'https://ror.org/01at1hy26 Amazentis (Switzerland)'),
(76157, 'https://ror.org/01at8a333', 'no_lang_code', 1, 'https://ror.org/01at8a333 Allogene Therapeutics (United States)'),
(76158, 'https://ror.org/01atc9m12', 'no_lang_code', 1, 'https://ror.org/01atc9m12 Wizbe Innovations (United States)'),
(76159, 'https://ror.org/01av07n65', 'no_lang_code', 1, 'https://ror.org/01av07n65 Suguna Holdings (India)'),
(76160, 'https://ror.org/01avpbm97', 'no_lang_code', 1, 'https://ror.org/01avpbm97 Chanel (United Kingdom)'),
(76161, 'https://ror.org/01awdtn69', 'no_lang_code', 1, 'https://ror.org/01awdtn69 SinoMaps Press äø­å›½åœ°å›¾å‡ŗē‰ˆē¤¾'),
(76162, 'https://ror.org/01awf8081', 'de', 1, 'https://ror.org/01awf8081 BilSE - Institut für Bildung und Forschung'),
(76163, 'https://ror.org/01axfdj86', 'en', 1, 'https://ror.org/01axfdj86 Homi Bhabha Centre for Science Education ą¤¹ą„‹ą¤®ą„€ भाभा ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°, ą¤Ÿą„€.ą¤†ą¤ˆ.ą¤ą¤«.आर'),
(76164, 'https://ror.org/01ay03t14', 'no_lang_code', 1, 'https://ror.org/01ay03t14 13Therapeutics (United States)'),
(76165, 'https://ror.org/01ayhb353', 'no_lang_code', 1, 'https://ror.org/01ayhb353 ATS Sardegna (Italy)'),
(76166, 'https://ror.org/01b2gkw73', 'de', 1, 'https://ror.org/01b2gkw73 Deutsche Angestellten-Akademie'),
(76167, 'https://ror.org/01b6ag081', 'no_lang_code', 1, 'https://ror.org/01b6ag081 MSSCORPS (Taiwan)'),
(76168, 'https://ror.org/01b8v0r63', 'en', 1, 'https://ror.org/01b8v0r63 Transportation Safety Institute'),
(76169, 'https://ror.org/01b9b0y72', 'no_lang_code', 1, 'https://ror.org/01b9b0y72 Gynesonics (United States)'),
(76170, 'https://ror.org/01b9t8b35', 'no_lang_code', 1, 'https://ror.org/01b9t8b35 Medipan (Germany)'),
(76171, 'https://ror.org/01ba4rc77', 'no_lang_code', 1, 'https://ror.org/01ba4rc77 Silverside Detectors (United States)'),
(76172, 'https://ror.org/01baj0246', 'de', 1, 'https://ror.org/01baj0246 Beratungs und Schulungsinstitut für Tierschutz bei Transport und Schlachtung'),
(76173, 'https://ror.org/01bd30j68', 'en', 1, 'https://ror.org/01bd30j68 Academy of Law Management of the Federal Penal Service of Russia ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ права Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Š¤Š”Š˜Š'),
(76174, 'https://ror.org/01bdefj47', 'en', 1, 'https://ror.org/01bdefj47 Institute of History and Philology, Academia Sinica äø­å¤®ē ”ē©¶é™¢ę­·å²čŖžčØ€ē ”ē©¶ę‰€ē ”ē©¶å¤§ęØ“ęŖ”ę”ˆé¤Ø'),
(76175, 'https://ror.org/01bdg6b26', 'no_lang_code', 1, 'https://ror.org/01bdg6b26 Newtec Services Group (United States)'),
(76176, 'https://ror.org/01berdk28', 'no_lang_code', 1, 'https://ror.org/01berdk28 Strabag (Germany)'),
(76177, 'https://ror.org/01bgyfj42', 'no_lang_code', 1, 'https://ror.org/01bgyfj42 Venable Instruments (United States)'),
(76178, 'https://ror.org/01bhz3v89', 'no', 1, 'https://ror.org/01bhz3v89 Biofokus'),
(76179, 'https://ror.org/01bk4zx34', 'de', 1, 'https://ror.org/01bk4zx34 Thüringer Institut für Akademische Weiterbildung'),
(76180, 'https://ror.org/01bnwnv33', 'no_lang_code', 1, 'https://ror.org/01bnwnv33 S&K Aerospace (United States)'),
(76181, 'https://ror.org/01bqvph43', 'en', 1, 'https://ror.org/01bqvph43 W. G. (Bill) Hefner VA Medical Center'),
(76182, 'https://ror.org/01bvph436', 'en', 1, 'https://ror.org/01bvph436 Rotunda – The Center for Human Reproduction'),
(76183, 'https://ror.org/01bxmvw18', 'en', 1, 'https://ror.org/01bxmvw18 Hebei Rehabilitation Hospital ę²³åŒ—ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(76184, 'https://ror.org/01bxpwm10', 'de', 1, 'https://ror.org/01bxpwm10 Institut für Wasser und Boden Dr. Uhlmann'),
(76185, 'https://ror.org/01bxzfe12', 'en', 1, 'https://ror.org/01bxzfe12 PROCURE'),
(76186, 'https://ror.org/01bzbbd61', 'en', 1, 'https://ror.org/01bzbbd61 Gallup Korea'),
(76187, 'https://ror.org/01c0kpp64', 'en', 1, 'https://ror.org/01c0kpp64 University College of Azarabadegan Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ آذرآبادگان'),
(76188, 'https://ror.org/01c0mrz71', 'en', 1, 'https://ror.org/01c0mrz71 Directorate of Poultry Research ą°ą°øą°æą°Žą°†ą°°ą±-ą°”ą±†ą±–ą°°ą±†ą°•ą±ą°Ÿą°°ą±‡ą°Ÿą± ą°Ŗą±Œą°²ą±ą°Ÿą±ą°°ą±€ ą°°ą±€ą°øą±†ą°°ą±ą°šą±'),
(76189, 'https://ror.org/01c13f829', 'en', 1, 'https://ror.org/01c13f829 Kinki Polytechnic College čæ‘ē•æćƒćƒŖćƒ†ć‚Æć‚«ćƒ¬ćƒƒć‚ø'),
(76190, 'https://ror.org/01c1pcz80', 'de', 1, 'https://ror.org/01c1pcz80 Kleine Private Lehrinstitut Derksen'),
(76191, 'https://ror.org/01c3m4791', 'no_lang_code', 1, 'https://ror.org/01c3m4791 Regio (Germany)'),
(76192, 'https://ror.org/01c40z329', 'en', 1, 'https://ror.org/01c40z329 Heilongjiang Coldland Building Science Research Institute é»‘é¾™ę±ŸēœåÆ’åœ°å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(76193, 'https://ror.org/01c4gq057', 'en', 1, 'https://ror.org/01c4gq057 Tongliao Academy of Agricultural Sciences é€šč¾½åø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(76194, 'https://ror.org/01c55fw55', 'en', 1, 'https://ror.org/01c55fw55 Krishi Vigyan Kendra, Ghatkhed Amravati'),
(76195, 'https://ror.org/01c5fzf42', 'no_lang_code', 1, 'https://ror.org/01c5fzf42 STC Biologics (United States)'),
(76196, 'https://ror.org/01c7pa495', 'no_lang_code', 1, 'https://ror.org/01c7pa495 Powertech Technology (Taiwan) åŠ›ęˆē§‘ęŠ€'),
(76197, 'https://ror.org/01c8p7c25', 'it', 1, 'https://ror.org/01c8p7c25 ASP CittĆ  di Bologna'),
(76198, 'https://ror.org/01camqg73', 'en', 1, 'https://ror.org/01camqg73 Tana High-Level Forum on Security in Africa'),
(76199, 'https://ror.org/01casvr19', 'no_lang_code', 1, 'https://ror.org/01casvr19 Scribe Biosciences (United States)'),
(76200, 'https://ror.org/01cat9493', 'no_lang_code', 1, 'https://ror.org/01cat9493 Raumedic (Germany)'),
(76201, 'https://ror.org/01cbwsm82', 'no_lang_code', 1, 'https://ror.org/01cbwsm82 GF Biochemicals (Italy)'),
(76202, 'https://ror.org/01ccnft78', 'no_lang_code', 1, 'https://ror.org/01ccnft78 Qiagen (Spain)'),
(76203, 'https://ror.org/01ccttc97', 'en', 1, 'https://ror.org/01ccttc97 Forschungsstelle für Energiewirtschaft Research Center for Energy Economics'),
(76204, 'https://ror.org/01cdxzt16', 'en', 1, 'https://ror.org/01cdxzt16 Pakistan Scientific and Technological Information Centre پاکستان Ų³Ų§Ų¦Ł†Ų³ŪŒ اور ŲŖŚ©Ł†ŪŒŚ©ŪŒ Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ مرکز'),
(76205, 'https://ror.org/01cepg588', 'no_lang_code', 1, 'https://ror.org/01cepg588 Haleakala Research and Development (United States)'),
(76206, 'https://ror.org/01cesq109', 'en', 1, 'https://ror.org/01cesq109 Liverpool Medical Institution'),
(76207, 'https://ror.org/01cf59p25', 'en', 1, 'https://ror.org/01cf59p25 Unlimited Potential'),
(76208, 'https://ror.org/01cghcn81', 'en', 1, 'https://ror.org/01cghcn81 Southern Regional Research Center'),
(76209, 'https://ror.org/01cmhh462', 'en', 1, 'https://ror.org/01cmhh462 Bavarian Broadcasting Bayerischer Rundfunk'),
(76210, 'https://ror.org/01cpb1168', 'en', 1, 'https://ror.org/01cpb1168 State Forest Research Institute'),
(76211, 'https://ror.org/01crytg85', 'en', 1, 'https://ror.org/01crytg85 Adani Institute of Infrastructure Engineering અદાણી ąŖ‡ąŖØą«ąŖøą«ąŖŸąŖæąŖŸą«ąŖÆą«‚ąŖŸ ąŖ“ąŖ« ąŖˆąŖØą«ąŖ«ą«ąŖ°ąŖ¾ąŖøą«ąŖŸą«ąŖ°ąŖ•ą«ąŖšąŖ° ąŖąŖØą«ąŖœąŖæąŖØąŖæąŖÆąŖ°ąŖæąŖ‚ąŖ—'),
(76212, 'https://ror.org/01cte4v14', 'no_lang_code', 1, 'https://ror.org/01cte4v14 PKG (United States)'),
(76213, 'https://ror.org/01cvr7569', 'no_lang_code', 1, 'https://ror.org/01cvr7569 Auven Therapeutics (United States)'),
(76214, 'https://ror.org/01cxprv64', 'en', 1, 'https://ror.org/01cxprv64 Initiative Prospective Agricole et Rurale'),
(76215, 'https://ror.org/01cyp2953', 'no_lang_code', 1, 'https://ror.org/01cyp2953 Xenstats (Poland)'),
(76216, 'https://ror.org/01d0zz505', 'en', 1, 'https://ror.org/01d0zz505 Jean Mayer Human Nutrition Research Center on Aging'),
(76217, 'https://ror.org/01d1pkv81', 'no_lang_code', 1, 'https://ror.org/01d1pkv81 Viz-Tek (United States)'),
(76218, 'https://ror.org/01d2xqw69', 'de', 1, 'https://ror.org/01d2xqw69 Technologiezentrum Halbleitermaterialien'),
(76219, 'https://ror.org/01d46py16', 'es', 1, 'https://ror.org/01d46py16 Centro Jambatu de Investigación y Conservación de Anfibios'),
(76220, 'https://ror.org/01d4n7s11', 'en', 1, 'https://ror.org/01d4n7s11 Bath VA Medical Center'),
(76221, 'https://ror.org/01d7h6313', 'no_lang_code', 1, 'https://ror.org/01d7h6313 Enzo Life Sciences (United States)'),
(76222, 'https://ror.org/01d9dbd65', 'en', 1, 'https://ror.org/01d9dbd65 Africa Centres for Disease Control and Prevention'),
(76223, 'https://ror.org/01d9dyv42', 'en', 1, 'https://ror.org/01d9dyv42 National Research Centre for Integrated Pest Management ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„‡ą¤•ą¤æą¤¤ ą¤Øą¤¾ą¤¶ą„€ą¤œą„€ą¤µ ą¤Ŗą„ą¤°ą¤¬ą¤Øą„ą¤§ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(76224, 'https://ror.org/01db4wa08', 'no_lang_code', 1, 'https://ror.org/01db4wa08 DUKSAN Neolux (South Korea)'),
(76225, 'https://ror.org/01dc86h50', 'no_lang_code', 1, 'https://ror.org/01dc86h50 Fachverband GebƤude-Klima (Germany)'),
(76226, 'https://ror.org/01ddr6f40', 'no_lang_code', 1, 'https://ror.org/01ddr6f40 Enteris Biopharma (United States)'),
(76227, 'https://ror.org/01dj1tt46', 'no_lang_code', 1, 'https://ror.org/01dj1tt46 Neuraxpharm (Spain)'),
(76228, 'https://ror.org/01dj88q67', 'no_lang_code', 1, 'https://ror.org/01dj88q67 Besins Healthcare (Thailand)'),
(76229, 'https://ror.org/01djdkh62', 'no_lang_code', 1, 'https://ror.org/01djdkh62 VitreaLab (Austria)'),
(76230, 'https://ror.org/01djh3v47', 'fr', 1, 'https://ror.org/01djh3v47 Centre Autonome d''Etudes et de Renforcement des capacitƩs pour le DƩveloppement au Togo'),
(76231, 'https://ror.org/01djrhs97', 'en', 1, 'https://ror.org/01djrhs97 Federal Reserve Bank of Boston'),
(76232, 'https://ror.org/01dktcn28', 'en', 1, 'https://ror.org/01dktcn28 Scholarly Publishing and Academic Resources Coalition'),
(76233, 'https://ror.org/01dphnv87', 'en', 1, 'https://ror.org/01dphnv87 National Institute of Pharmaceutical Education and Research'),
(76234, 'https://ror.org/01dqwwr24', 'en', 1, 'https://ror.org/01dqwwr24 Iora Ecological Solutions'),
(76235, 'https://ror.org/01dr6j212', 'no_lang_code', 1, 'https://ror.org/01dr6j212 Tactical Edge (United States)'),
(76236, 'https://ror.org/01drpqr75', 'no_lang_code', 1, 'https://ror.org/01drpqr75 Technologiezentrum Dresden (Germany)'),
(76237, 'https://ror.org/01dspch42', 'no_lang_code', 1, 'https://ror.org/01dspch42 Amiri Diwan Ų§Ł„ŲÆŁŠŁˆŲ§Ł† Ų§Ł„Ų£Ł…ŁŠŲ±ŁŠ'),
(76238, 'https://ror.org/01dt1nn03', 'en', 1, 'https://ror.org/01dt1nn03 VA Hudson Valley Health Care System'),
(76239, 'https://ror.org/01dwnnm75', 'no_lang_code', 1, 'https://ror.org/01dwnnm75 Shanghai Aerospace Automobile Electromechanical (China) äøŠęµ·čˆŖå¤©ę±½č½¦ęœŗē”µč‚”ä»½ęœ‰é™å…¬åø'),
(76240, 'https://ror.org/01dx2f060', 'fr', 1, 'https://ror.org/01dx2f060 Nature Environnement 17'),
(76241, 'https://ror.org/01dxbn742', 'es', 1, 'https://ror.org/01dxbn742 Fundación A LA PAR'),
(76242, 'https://ror.org/01dzqde20', 'no_lang_code', 1, 'https://ror.org/01dzqde20 Autodesk (United Kingdom)'),
(76243, 'https://ror.org/01e0dz978', 'en', 1, 'https://ror.org/01e0dz978 VA Central Western Massachusetts Healthcare System'),
(76244, 'https://ror.org/01e154458', 'en', 1, 'https://ror.org/01e154458 Croatian National Bank Hrvatska Narodna Banka'),
(76245, 'https://ror.org/01e2h6r50', 'en', 1, 'https://ror.org/01e2h6r50 Dr Jenner''s House, Museum and Garden'),
(76246, 'https://ror.org/01e2hm815', 'en', 1, 'https://ror.org/01e2hm815 Mid-Atlantic Transportation Sustainability Center'),
(76247, 'https://ror.org/01e6kag67', 'en', 1, 'https://ror.org/01e6kag67 Gujarat Science City'),
(76248, 'https://ror.org/01e7k1548', 'no_lang_code', 1, 'https://ror.org/01e7k1548 Kistler (United Kingdom)'),
(76249, 'https://ror.org/01e7yxy62', 'no_lang_code', 1, 'https://ror.org/01e7yxy62 Vantage Health Solutions (Myanmar)'),
(76250, 'https://ror.org/01e99h158', 'en', 1, 'https://ror.org/01e99h158 Velleja Research'),
(76251, 'https://ror.org/01eaqxy97', 'no_lang_code', 1, 'https://ror.org/01eaqxy97 Momentive (Japan) ćƒ¢ćƒ”ćƒ³ćƒ†ć‚£ćƒ–ćƒ»ćƒ‘ćƒ•ć‚©ćƒ¼ćƒžćƒ³ć‚¹ćƒ»ćƒžćƒ†ćƒŖć‚¢ćƒ«ć‚ŗćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(76252, 'https://ror.org/01eb4hw22', 'no_lang_code', 1, 'https://ror.org/01eb4hw22 NeoMatrix Therapeutics (United States)'),
(76253, 'https://ror.org/01ecwsw76', 'en', 1, 'https://ror.org/01ecwsw76 Shanghai Stock Exchange äøŠęµ·čÆåˆøäŗ¤ę˜“ę‰€'),
(76254, 'https://ror.org/01ecxmq21', 'no_lang_code', 1, 'https://ror.org/01ecxmq21 Inari Agriculture (United States)'),
(76255, 'https://ror.org/01eda7a75', 'en', 1, 'https://ror.org/01eda7a75 Second People Hospital of Hunan ę¹–å—ēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(76256, 'https://ror.org/01ee9cx45', 'no_lang_code', 1, 'https://ror.org/01ee9cx45 Enercity (Germany)'),
(76257, 'https://ror.org/01eg7wt17', 'en', 1, 'https://ror.org/01eg7wt17 Centre for Humanitarian Dialogue'),
(76258, 'https://ror.org/01egwg173', 'en', 1, 'https://ror.org/01egwg173 UK Astronomy Technology Centre'),
(76259, 'https://ror.org/01ehqfp97', 'no_lang_code', 1, 'https://ror.org/01ehqfp97 Zensun (China)'),
(76260, 'https://ror.org/01ej3kj12', 'no_lang_code', 1, 'https://ror.org/01ej3kj12 Institut für berufliche Bildung, Arbeitsmarkt- und Sozialpolitik Institute for Vocational Education, Labor Market and Social Policy (Germany)'),
(76261, 'https://ror.org/01en28k31', 'no_lang_code', 1, 'https://ror.org/01en28k31 Renova Therapeutics (United States)'),
(76262, 'https://ror.org/01ennef75', 'en', 1, 'https://ror.org/01ennef75 MiMER Centre'),
(76263, 'https://ror.org/01ep5y454', 'no_lang_code', 1, 'https://ror.org/01ep5y454 Venator Solutions (United States)'),
(76264, 'https://ror.org/01eq1tg37', 'de', 1, 'https://ror.org/01eq1tg37 Landesbetrieb für Küstenschutz, Nationalpark und Meeresschutz Schleswig-Holstein'),
(76265, 'https://ror.org/01eqdrp13', 'no_lang_code', 1, 'https://ror.org/01eqdrp13 BMW (United Kingdom)'),
(76266, 'https://ror.org/01eqh1863', 'en', 1, 'https://ror.org/01eqh1863 Yango University 阳光学院'),
(76267, 'https://ror.org/01eqz2j94', 'no_lang_code', 1, 'https://ror.org/01eqz2j94 Astro- und Feinwerktechnik Adlershof (Germany)'),
(76268, 'https://ror.org/01etbrg32', 'en', 1, 'https://ror.org/01etbrg32 Henan Nonferrous Metals Geological Exploration Institute ę²³å—ēœęœ‰č‰²é‡‘å±žåœ°č“Øå‹˜ęŸ„ę€»é™¢'),
(76269, 'https://ror.org/01eygpy73', 'no_lang_code', 1, 'https://ror.org/01eygpy73 Phelix Therapeutics (United States)'),
(76270, 'https://ror.org/01ezwtn57', 'en', 1, 'https://ror.org/01ezwtn57 The Institution of Environmental Sciences'),
(76271, 'https://ror.org/01f0pjz75', 'en', 1, 'https://ror.org/01f0pjz75 Jazeera University'),
(76272, 'https://ror.org/01f0rgv52', 'en', 1, 'https://ror.org/01f0rgv52 Wuhan Prevention and Treatment Center for Occupational Diseases ę­¦ę±‰åø‚čŒäøšē—…é˜²ę²»é™¢'),
(76273, 'https://ror.org/01f30wv40', 'de', 1, 'https://ror.org/01f30wv40 Institut für Frauengesundheit'),
(76274, 'https://ror.org/01f35f850', 'en', 1, 'https://ror.org/01f35f850 The Browns'' School'),
(76275, 'https://ror.org/01f4r1a13', 'no_lang_code', 1, 'https://ror.org/01f4r1a13 Visca (United States)'),
(76276, 'https://ror.org/01f55re52', 'no_lang_code', 1, 'https://ror.org/01f55re52 Takazono (Japan) ę Ŗå¼ä¼šē¤¾ć‚æć‚«ć‚¾ćƒŽ'),
(76277, 'https://ror.org/01f6r4445', 'no_lang_code', 1, 'https://ror.org/01f6r4445 CJSC Ekran FEP (Russia) Š—ŠŠž Экран ФЭП'),
(76278, 'https://ror.org/01f8zjp46', 'no_lang_code', 1, 'https://ror.org/01f8zjp46 Nogra Pharma (Ireland)'),
(76279, 'https://ror.org/01f978p98', 'no_lang_code', 1, 'https://ror.org/01f978p98 Venus Concept (Canada)'),
(76280, 'https://ror.org/01fcvr303', 'en', 1, 'https://ror.org/01fcvr303 Gifu Academy of Forest Science and Culture å²é˜œēœŒē«‹ę£®ęž—ę–‡åŒ–ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(76281, 'https://ror.org/01fdmy333', 'pt', 1, 'https://ror.org/01fdmy333 Governo do Estado de ParaĆ­ba'),
(76282, 'https://ror.org/01fef0w16', 'en', 1, 'https://ror.org/01fef0w16 EAT'),
(76283, 'https://ror.org/01ffdac64', 'de', 1, 'https://ror.org/01ffdac64 Institut für Sozialforschung und Sozialplanung'),
(76284, 'https://ror.org/01fgny818', 'no_lang_code', 1, 'https://ror.org/01fgny818 Vacuum Process Engineering (United States)'),
(76285, 'https://ror.org/01fhhep80', 'en', 1, 'https://ror.org/01fhhep80 China Productivity Center'),
(76286, 'https://ror.org/01fhyd561', 'en', 1, 'https://ror.org/01fhyd561 Kyoto College of Economics 京都経済短期大学'),
(76287, 'https://ror.org/01fkqhn95', 'en', 1, 'https://ror.org/01fkqhn95 National Federation of Cooperative Sugar Factories ą¤•ą¤‚ą¤Ŗą¤Øą„€ ą¤•ą„‡ ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤«ą„‡ą¤”ą¤°ą„‡ą¤¶ą¤Ø - ą¤øą„‡ą¤¶ą¤Ø ą¤¶ą„ą¤—ą¤° ą¤«ą„ˆą¤•ą„ą¤Ÿą„ą¤°ą„€ą¤œ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(76288, 'https://ror.org/01fmexj76', 'no_lang_code', 1, 'https://ror.org/01fmexj76 Primed (Germany) Primed Halberstadt Medizintechnik'),
(76289, 'https://ror.org/01fn4wm94', 'no_lang_code', 1, 'https://ror.org/01fn4wm94 Bagilstein (Germany)'),
(76290, 'https://ror.org/01fr0xv11', 'en', 1, 'https://ror.org/01fr0xv11 Heilongjiang Provincial Wildlife Research Institute é»‘é¾™ę±Ÿēœé‡Žē”ŸåŠØē‰©ē ”ē©¶ę‰€'),
(76291, 'https://ror.org/01ftjhs10', 'no_lang_code', 1, 'https://ror.org/01ftjhs10 Ramboll (Germany)'),
(76292, 'https://ror.org/01ftmwd24', 'no_lang_code', 1, 'https://ror.org/01ftmwd24 Stu Segall Productions (United States)'),
(76293, 'https://ror.org/01ftyyd55', 'no_lang_code', 1, 'https://ror.org/01ftyyd55 Coty (United States)'),
(76294, 'https://ror.org/01fy15230', 'no_lang_code', 1, 'https://ror.org/01fy15230 Reliant Technologies (United States)'),
(76295, 'https://ror.org/01g1qg816', 'en', 1, 'https://ror.org/01g1qg816 Northeast Cancer Centre'),
(76296, 'https://ror.org/01g3a5n46', 'no_lang_code', 1, 'https://ror.org/01g3a5n46 Siegfried (Switzerland)'),
(76297, 'https://ror.org/01g67he48', 'no_lang_code', 1, 'https://ror.org/01g67he48 Medicaroid (Japan) ćƒ”ćƒ‡ć‚£ć‚«ćƒ­ć‚¤ćƒ‰'),
(76298, 'https://ror.org/01g89d937', 'no_lang_code', 1, 'https://ror.org/01g89d937 Gloor Instruments (Switzerland)'),
(76299, 'https://ror.org/01gawax11', 'no_lang_code', 1, 'https://ror.org/01gawax11 Appvion (United States)'),
(76300, 'https://ror.org/01gczqs46', 'no_lang_code', 1, 'https://ror.org/01gczqs46 DK Recycling und Roheisen (Germany)'),
(76301, 'https://ror.org/01gdcm534', 'no_lang_code', 1, 'https://ror.org/01gdcm534 Arte (Japan)'),
(76302, 'https://ror.org/01gfzgg34', 'no_lang_code', 1, 'https://ror.org/01gfzgg34 Vaxess Technologies (United States)'),
(76303, 'https://ror.org/01ghzbt10', 'sk', 1, 'https://ror.org/01ghzbt10 Nemocnica SvƤtƩho Michala'),
(76304, 'https://ror.org/01gjgcg03', 'no_lang_code', 1, 'https://ror.org/01gjgcg03 Paragon Genomics (United States)'),
(76305, 'https://ror.org/01gpa4h16', 'en', 1, 'https://ror.org/01gpa4h16 TRENDS Research & Advisory Ł…Ų±ŁƒŲ² ŲŖŲ±ŁŠŁ†ŲÆŲ² Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„Ų§Ų³ŲŖŲ“Ų§Ų±Ų§ŲŖ'),
(76306, 'https://ror.org/01gpng625', 'no_lang_code', 1, 'https://ror.org/01gpng625 TerraVia (United States)'),
(76307, 'https://ror.org/01grk2s95', 'pt', 1, 'https://ror.org/01grk2s95 Instituto Laura Fressatto'),
(76308, 'https://ror.org/01grpbq12', 'no_lang_code', 1, 'https://ror.org/01grpbq12 Novapharm Research (Australia)'),
(76309, 'https://ror.org/01grvwt83', 'no_lang_code', 1, 'https://ror.org/01grvwt83 BioNet Lab (Japan) ćƒć‚¤ć‚Ŗćƒćƒƒćƒˆē ”ē©¶ę‰€'),
(76310, 'https://ror.org/01gsxb553', 'en', 1, 'https://ror.org/01gsxb553 Kaimosi Friends University College'),
(76311, 'https://ror.org/01gtv1921', 'no_lang_code', 1, 'https://ror.org/01gtv1921 Virtual Phantoms (United States)'),
(76312, 'https://ror.org/01gw9bn12', 'de', 1, 'https://ror.org/01gw9bn12 HeurekaNet'),
(76313, 'https://ror.org/01gwd8297', 'no_lang_code', 1, 'https://ror.org/01gwd8297 Bio Medic Data Systems (United States)'),
(76314, 'https://ror.org/01gwdsm60', 'es', 1, 'https://ror.org/01gwdsm60 Fundación Andaluza Beturia para la Investigación en Salud'),
(76315, 'https://ror.org/01gycb861', 'no_lang_code', 1, 'https://ror.org/01gycb861 Thyssengas (Germany)'),
(76316, 'https://ror.org/01gystf83', 'no_lang_code', 1, 'https://ror.org/01gystf83 Pollere (United States)'),
(76317, 'https://ror.org/01gz5c498', 'no_lang_code', 1, 'https://ror.org/01gz5c498 Sonendo (United States)'),
(76318, 'https://ror.org/01gzkj661', 'no_lang_code', 1, 'https://ror.org/01gzkj661 Essity (Sweden)'),
(76319, 'https://ror.org/01h0bbn98', 'no_lang_code', 1, 'https://ror.org/01h0bbn98 Celltechgen (United States)'),
(76320, 'https://ror.org/01h0vdv12', 'no_lang_code', 1, 'https://ror.org/01h0vdv12 Bristol-Myers Squibb (Ireland)'),
(76321, 'https://ror.org/01h14dd51', 'no_lang_code', 1, 'https://ror.org/01h14dd51 Axa (United Kingdom)'),
(76322, 'https://ror.org/01h2q5p96', 'no_lang_code', 1, 'https://ror.org/01h2q5p96 Transmural Systems (United States)'),
(76323, 'https://ror.org/01h371j34', 'de', 1, 'https://ror.org/01h371j34 AGFW'),
(76324, 'https://ror.org/01h39y763', 'no_lang_code', 1, 'https://ror.org/01h39y763 Endotronix (United States)');
INSERT INTO `rors` VALUES
(76325, 'https://ror.org/01h3j3f09', 'no_lang_code', 1, 'https://ror.org/01h3j3f09 Mifune Dinosaur Museum å¾”čˆ¹ē”ŗęē«œåšē‰©é¤Ø'),
(76326, 'https://ror.org/01h5d6x15', 'en', 1, 'https://ror.org/01h5d6x15 Institute of Forest Resource Information Techniques äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢čµ„ęŗäæ”ęÆē ”ē©¶ę‰€'),
(76327, 'https://ror.org/01h772984', 'en', 1, 'https://ror.org/01h772984 Southern Nevada Water Authority'),
(76328, 'https://ror.org/01h8x8p33', 'no_lang_code', 1, 'https://ror.org/01h8x8p33 DataStrategy (Japan) ćƒ‡ćƒ¼ć‚æć‚¹ćƒˆćƒ©ćƒ†ć‚ø'),
(76329, 'https://ror.org/01has8079', 'en', 1, 'https://ror.org/01has8079 The Central Hospital of Xiao gan å­ę„Ÿåø‚äø­åæƒåŒ»é™¢'),
(76330, 'https://ror.org/01hcney72', 'no_lang_code', 1, 'https://ror.org/01hcney72 Thyssenkrupp (Slovakia)'),
(76331, 'https://ror.org/01hcrn459', 'en', 1, 'https://ror.org/01hcrn459 Education and Science Workers'' Union Gewerkschaft Erziehung und Wissenschaft'),
(76332, 'https://ror.org/01hg7d511', 'no_lang_code', 1, 'https://ror.org/01hg7d511 Login BV (Slovenia)'),
(76333, 'https://ror.org/01hh2jh68', 'da', 1, 'https://ror.org/01hh2jh68 Danmarks Nationalbank'),
(76334, 'https://ror.org/01hjd1v39', 'no_lang_code', 1, 'https://ror.org/01hjd1v39 Zelseed (Slovakia)'),
(76335, 'https://ror.org/01hktad75', 'no_lang_code', 1, 'https://ror.org/01hktad75 Optimal Solutions Software (United States)'),
(76336, 'https://ror.org/01hmd1y41', 'en', 1, 'https://ror.org/01hmd1y41 Federal Police of Brazil Police FƩdƩrale Policƭa Federal Polƭcia Federal'),
(76337, 'https://ror.org/01hmsgz49', 'no_lang_code', 1, 'https://ror.org/01hmsgz49 Krishi Vigyan Kendra, Latur ą¤•ą„ƒą¤·ą„€ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°, ą¤²ą¤¾ą¤¤ą„‚ą¤°'),
(76338, 'https://ror.org/01hnmd615', 'no_lang_code', 1, 'https://ror.org/01hnmd615 Hydroquest (France)'),
(76339, 'https://ror.org/01hpqfn25', 'en', 1, 'https://ror.org/01hpqfn25 IBM Research - United Kingdom'),
(76340, 'https://ror.org/01hq7pd83', 'en', 1, 'https://ror.org/01hq7pd83 The First Hospital of Kunming ę˜†ę˜Žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(76341, 'https://ror.org/01hr4k271', 'en', 1, 'https://ror.org/01hr4k271 Health Commission of Anhui Province å®‰å¾½ēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(76342, 'https://ror.org/01hs4tb08', 'de', 1, 'https://ror.org/01hs4tb08 Museumslandschaft Hessen Kassel'),
(76343, 'https://ror.org/01hthpr47', 'no_lang_code', 1, 'https://ror.org/01hthpr47 Hamilton Medical (Switzerland)'),
(76344, 'https://ror.org/01hv3m305', 'no_lang_code', 1, 'https://ror.org/01hv3m305 Becker Technologies (Germany)'),
(76345, 'https://ror.org/01hxmwm32', 'en', 1, 'https://ror.org/01hxmwm32 Punjab State Council for Science & Technology ਵਿਗਿਆਨ ਅਤੇ ąØ¤ąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ਦੇ ਲਈ ਪੰਜਾਬ ਰਾਜ ąØŖą©ąØ°ą©€ąØøąØ¼ąØ¦'),
(76346, 'https://ror.org/01hy7j205', 'no_lang_code', 1, 'https://ror.org/01hy7j205 Altum Pharmaceuticals (Canada)'),
(76347, 'https://ror.org/01hyt0e74', 'no_lang_code', 1, 'https://ror.org/01hyt0e74 Plasma Controls (United States)'),
(76348, 'https://ror.org/01hzs1h88', 'no_lang_code', 1, 'https://ror.org/01hzs1h88 Universalbeton Heringen (Germany)'),
(76349, 'https://ror.org/01j1q9a64', 'en', 1, 'https://ror.org/01j1q9a64 International Work Group for Indigenous Affairs'),
(76350, 'https://ror.org/01j60ss54', 'es', 1, 'https://ror.org/01j60ss54 Asociación Jardín BotÔnico La Laguna'),
(76351, 'https://ror.org/01j66t516', 'de', 1, 'https://ror.org/01j66t516 Verein zur Fƶrderung Agrar- und Stadtƶkologischer Projekte'),
(76352, 'https://ror.org/01j7kyf72', 'en', 1, 'https://ror.org/01j7kyf72 Archdiocese of Cologne Erzbistum Kƶln'),
(76353, 'https://ror.org/01jbsqt52', 'no_lang_code', 1, 'https://ror.org/01jbsqt52 Medical Components (United States)'),
(76354, 'https://ror.org/01jc4ps18', 'no_lang_code', 1, 'https://ror.org/01jc4ps18 CathRx (Australia)'),
(76355, 'https://ror.org/01jdd8n67', 'no_lang_code', 1, 'https://ror.org/01jdd8n67 Tgv (United States)'),
(76356, 'https://ror.org/01jdgtk90', 'no_lang_code', 1, 'https://ror.org/01jdgtk90 UbiQD (United States)'),
(76357, 'https://ror.org/01jf25m17', 'no_lang_code', 1, 'https://ror.org/01jf25m17 Stealthyx (United Kingdom)'),
(76358, 'https://ror.org/01jfknd16', 'no_lang_code', 1, 'https://ror.org/01jfknd16 Treventis (Canada)'),
(76359, 'https://ror.org/01jfre984', 'no_lang_code', 1, 'https://ror.org/01jfre984 Aptiv (Ireland)'),
(76360, 'https://ror.org/01jh73d13', 'no_lang_code', 1, 'https://ror.org/01jh73d13 Kemin (Belgium)'),
(76361, 'https://ror.org/01jk11645', 'de', 1, 'https://ror.org/01jk11645 Institut für Tier-, Natur- und Umweltethik'),
(76362, 'https://ror.org/01jk37618', 'no_lang_code', 1, 'https://ror.org/01jk37618 Singleron Biotechnologies (china)'),
(76363, 'https://ror.org/01jmes654', 'no_lang_code', 1, 'https://ror.org/01jmes654 Tendeg (United States)'),
(76364, 'https://ror.org/01jn16g31', 'en', 1, 'https://ror.org/01jn16g31 Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services Zwischenstaatliche Plattform für BiodiversitƤt und Ɩkosystem-Dienstleistungen'),
(76365, 'https://ror.org/01jpxmr98', 'en', 1, 'https://ror.org/01jpxmr98 Mazingira Institute'),
(76366, 'https://ror.org/01jsw1s12', 'en', 1, 'https://ror.org/01jsw1s12 Florida Center for Dermatology'),
(76367, 'https://ror.org/01jw3cq70', 'no_lang_code', 1, 'https://ror.org/01jw3cq70 Institut für Entsorgung und Umwelttechnik (Germany)'),
(76368, 'https://ror.org/01jwfv926', 'no_lang_code', 1, 'https://ror.org/01jwfv926 Korean Register (South Korea) ķ•œźµ­ģ„ źø‰'),
(76369, 'https://ror.org/01jxtbx65', 'no_lang_code', 1, 'https://ror.org/01jxtbx65 Biedermann Technologies (Germany)'),
(76370, 'https://ror.org/01jzb6k09', 'no_lang_code', 1, 'https://ror.org/01jzb6k09 Bioinformatics Solutions (Canada)'),
(76371, 'https://ror.org/01jzeez77', 'en', 1, 'https://ror.org/01jzeez77 Maryland Advanced Development Laboratory'),
(76372, 'https://ror.org/01jzg2v44', 'no_lang_code', 1, 'https://ror.org/01jzg2v44 MKS Instruments (Germany)'),
(76373, 'https://ror.org/01jzyr789', 'no_lang_code', 1, 'https://ror.org/01jzyr789 Bronkhorst (Netherlands)'),
(76374, 'https://ror.org/01k1p7y49', 'no_lang_code', 1, 'https://ror.org/01k1p7y49 Zeteo Tech (United States)'),
(76375, 'https://ror.org/01k3cnb05', 'no_lang_code', 1, 'https://ror.org/01k3cnb05 Kamiichi General Hospital ć‹ćæć„ć”ē·åˆē—…é™¢'),
(76376, 'https://ror.org/01k48et73', 'no_lang_code', 1, 'https://ror.org/01k48et73 Maui Imaging (United States)'),
(76377, 'https://ror.org/01k8fm112', 'de', 1, 'https://ror.org/01k8fm112 UniversitƤt Bayern'),
(76378, 'https://ror.org/01kcan266', 'no_lang_code', 1, 'https://ror.org/01kcan266 CytoSMART Technologies (Netherlands)'),
(76379, 'https://ror.org/01kcsv364', 'de', 1, 'https://ror.org/01kcsv364 Internationales Institut für Sozio-Informatik'),
(76380, 'https://ror.org/01kf4j136', 'no_lang_code', 1, 'https://ror.org/01kf4j136 G.E.O.S. Ingenieurgesellschaft (Germany)'),
(76381, 'https://ror.org/01kfq1x58', 'en', 1, 'https://ror.org/01kfq1x58 Islamic Azad University, Abhar Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ابهر'),
(76382, 'https://ror.org/01kgmpa94', 'en', 1, 'https://ror.org/01kgmpa94 Institut für innovative Verfahrenstechnik Institute for Innovative Process Engineering'),
(76383, 'https://ror.org/01kjj2h97', 'en', 1, 'https://ror.org/01kjj2h97 Moscow Research Institute for Cybernetic Medicine Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кибернетической меГицины'),
(76384, 'https://ror.org/01kjych06', 'en', 1, 'https://ror.org/01kjych06 Fraunhofer ICT Group Fraunhofer-Verbund IUK-Technologie'),
(76385, 'https://ror.org/01kk57e40', 'no_lang_code', 1, 'https://ror.org/01kk57e40 Agency for Medical Innovations (Austria)'),
(76386, 'https://ror.org/01kkmzs26', 'no_lang_code', 1, 'https://ror.org/01kkmzs26 Seriad (United States)'),
(76387, 'https://ror.org/01kkwex59', 'no_lang_code', 1, 'https://ror.org/01kkwex59 Scientific Toolworks (United States)'),
(76388, 'https://ror.org/01knk7v72', 'en', 1, 'https://ror.org/01knk7v72 Tameside and Glossop Integrated Care NHS Foundation Trust'),
(76389, 'https://ror.org/01kpf5k20', 'no_lang_code', 1, 'https://ror.org/01kpf5k20 Flow Pharma (United States)'),
(76390, 'https://ror.org/01kqb2f52', 'no_lang_code', 1, 'https://ror.org/01kqb2f52 Kuraray Noritake Dental (Japan) ć‚Æćƒ©ćƒ¬ćƒŽćƒŖć‚æć‚±ćƒ‡ćƒ³ć‚æćƒ«ę Ŗå¼ä¼šē¤¾'),
(76391, 'https://ror.org/01kqcdh89', 'en', 1, 'https://ror.org/01kqcdh89 Wuhan Pulmonary Hospital ę­¦ę±‰åø‚č‚ŗē§‘åŒ»é™¢'),
(76392, 'https://ror.org/01kqva520', 'no_lang_code', 1, 'https://ror.org/01kqva520 Opus 12 (United States)'),
(76393, 'https://ror.org/01krwnb02', 'no_lang_code', 1, 'https://ror.org/01krwnb02 VNIR Biotechnologies (India)'),
(76394, 'https://ror.org/01ksmk704', 'de', 1, 'https://ror.org/01ksmk704 Institut für Rohrleitungsbau an der Fachhochschule Oldenburg'),
(76395, 'https://ror.org/01kx4gj60', 'no_lang_code', 1, 'https://ror.org/01kx4gj60 Varex Imaging (United States)'),
(76396, 'https://ror.org/01kxwcg54', 'de', 1, 'https://ror.org/01kxwcg54 Schweißtechnische Lehr- und Versuchsanstalt Nord'),
(76397, 'https://ror.org/01ky4ht91', 'no_lang_code', 1, 'https://ror.org/01ky4ht91 Redbud Labs (United States)'),
(76398, 'https://ror.org/01ky9e908', 'es', 1, 'https://ror.org/01ky9e908 Instituto Superior Tecnológico Loja'),
(76399, 'https://ror.org/01m12mf31', 'no_lang_code', 1, 'https://ror.org/01m12mf31 Indus Biotech (India)'),
(76400, 'https://ror.org/01m2aa958', 'de', 1, 'https://ror.org/01m2aa958 Hanse Institut Oldenburg Bildung und Gesundheit'),
(76401, 'https://ror.org/01m2h6984', 'en', 1, 'https://ror.org/01m2h6984 Chameli Devi Institute of Pharmacy'),
(76402, 'https://ror.org/01m39r121', 'en', 1, 'https://ror.org/01m39r121 Tate & Lyle (United Kingdom)'),
(76403, 'https://ror.org/01m69r865', 'en', 1, 'https://ror.org/01m69r865 Genetic Resources Center éŗä¼č³‡ęŗć‚»ćƒ³ć‚æćƒ¼'),
(76404, 'https://ror.org/01m7j1c81', 'no_lang_code', 1, 'https://ror.org/01m7j1c81 Summit Test Solutions (United States)'),
(76405, 'https://ror.org/01m7xb285', 'no_lang_code', 1, 'https://ror.org/01m7xb285 Aquestive (United States)'),
(76406, 'https://ror.org/01m9s4d25', 'en', 1, 'https://ror.org/01m9s4d25 Colorado Space Grant Consortium'),
(76407, 'https://ror.org/01m9scr97', 'en', 1, 'https://ror.org/01m9scr97 Analysis and Testing Centre åˆ†ęžęµ‹čÆ•äø­åæƒ'),
(76408, 'https://ror.org/01m9x8p33', 'no_lang_code', 1, 'https://ror.org/01m9x8p33 Isochem (France)'),
(76409, 'https://ror.org/01mbbap52', 'no_lang_code', 1, 'https://ror.org/01mbbap52 RTI (United States)'),
(76410, 'https://ror.org/01mc04w21', 'en', 1, 'https://ror.org/01mc04w21 Fujian Business University ē¦å»ŗå•†å­¦é™¢'),
(76411, 'https://ror.org/01mdf9741', 'no_lang_code', 1, 'https://ror.org/01mdf9741 Old Harbor Native (United States)'),
(76412, 'https://ror.org/01mf5nv72', 'no_lang_code', 1, 'https://ror.org/01mf5nv72 Truma (Germany)'),
(76413, 'https://ror.org/01mftq342', 'no_lang_code', 1, 'https://ror.org/01mftq342 Konzeko, spol (Slovakia)'),
(76414, 'https://ror.org/01mkqvv94', 'no_lang_code', 1, 'https://ror.org/01mkqvv94 Semba Biosciences (United States)'),
(76415, 'https://ror.org/01mky9g42', 'en', 1, 'https://ror.org/01mky9g42 Snohomish Health District'),
(76416, 'https://ror.org/01mm1y498', 'no_lang_code', 1, 'https://ror.org/01mm1y498 Viewpoint Molecular Targeting (United States)'),
(76417, 'https://ror.org/01mm5pq64', 'no_lang_code', 1, 'https://ror.org/01mm5pq64 Biocure (United States)'),
(76418, 'https://ror.org/01mp98161', 'en', 1, 'https://ror.org/01mp98161 China Institute of Finance and Capital Markets'),
(76419, 'https://ror.org/01mtjh577', 'no_lang_code', 1, 'https://ror.org/01mtjh577 Alivio Therapeutics (United States)'),
(76420, 'https://ror.org/01mvsyt14', 'no_lang_code', 1, 'https://ror.org/01mvsyt14 Jnana Therapeutics (United States)'),
(76421, 'https://ror.org/01mwqr173', 'de', 1, 'https://ror.org/01mwqr173 Professor Hellriegel Institut'),
(76422, 'https://ror.org/01my9wr56', 'en', 1, 'https://ror.org/01my9wr56 Bridge Consultants Foundation'),
(76423, 'https://ror.org/01n1byn02', 'de', 1, 'https://ror.org/01n1byn02 Institut der Feuerwehr Nordrhein-Westfalen'),
(76424, 'https://ror.org/01n1cp186', 'en', 1, 'https://ror.org/01n1cp186 Central Institute for Research on Goats ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¬ą¤•ą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(76425, 'https://ror.org/01n1jtd52', 'no_lang_code', 1, 'https://ror.org/01n1jtd52 Sonavex (United States)'),
(76426, 'https://ror.org/01n494f92', 'no_lang_code', 1, 'https://ror.org/01n494f92 A-dec (United States)'),
(76427, 'https://ror.org/01n4hfa83', 'no_lang_code', 1, 'https://ror.org/01n4hfa83 QualiMed (Germany)'),
(76428, 'https://ror.org/01n71v551', 'en', 1, 'https://ror.org/01n71v551 Universal Scientific Education and Research Network ؓبکه Ų¬Ł‡Ų§Ł†ŪŒ Ų¢Ł…ŁˆŲ²Ų“ و Ł¾Ś˜ŁˆŁ‡Ų“ Ł‡Ų§ŪŒ Ų¹Ł„Ł…ŪŒ'),
(76429, 'https://ror.org/01n7e3q98', 'en', 1, 'https://ror.org/01n7e3q98 Chiba Prefectural Center Museum Otone Branch åƒč‘‰ēœŒē«‹äø­å¤®åšē‰©é¤Ø å¤§åˆ©ę ¹åˆ†é¤Ø'),
(76430, 'https://ror.org/01n857y41', 'en', 1, 'https://ror.org/01n857y41 Scientific Society of Otolaryngology and Head and Neck Surgery Sociedad Otorrinolaringológica de Castilla y León, Cantabria y La Rioja'),
(76431, 'https://ror.org/01n8ggb71', 'en', 1, 'https://ror.org/01n8ggb71 Institut für Biodiversität Institute for Biodiversity'),
(76432, 'https://ror.org/01n8pt985', 'no_lang_code', 1, 'https://ror.org/01n8pt985 Seafire Micros (United States)'),
(76433, 'https://ror.org/01n8zce53', 'no_lang_code', 1, 'https://ror.org/01n8zce53 AllaChem (United States)'),
(76434, 'https://ror.org/01nahaf96', 'no_lang_code', 1, 'https://ror.org/01nahaf96 Uvex (Germany)'),
(76435, 'https://ror.org/01ncvmx07', 'no_lang_code', 1, 'https://ror.org/01ncvmx07 Protgen (China)'),
(76436, 'https://ror.org/01ndwmb50', 'no_lang_code', 1, 'https://ror.org/01ndwmb50 Alpek (Mexico)'),
(76437, 'https://ror.org/01nfd5g36', 'no_lang_code', 1, 'https://ror.org/01nfd5g36 SDI Engineering (United States)'),
(76438, 'https://ror.org/01ngh1553', 'no_lang_code', 1, 'https://ror.org/01ngh1553 Avanos Medical (United States)'),
(76439, 'https://ror.org/01nhxrw57', 'de', 1, 'https://ror.org/01nhxrw57 Westfalen-Kolleg'),
(76440, 'https://ror.org/01njdjw78', 'no_lang_code', 1, 'https://ror.org/01njdjw78 QuEra Computing (United States)'),
(76441, 'https://ror.org/01nm9xk96', 'no_lang_code', 1, 'https://ror.org/01nm9xk96 Kumho Petrochemical (South Korea) źøˆķ˜øģ„ģœ ķ™”ķ•™ ģ£¼ģ‹ķšŒģ‚¬'),
(76442, 'https://ror.org/01nmh8776', 'de', 1, 'https://ror.org/01nmh8776 Forschungsinstitut für Bergbaufolgelandschaften'),
(76443, 'https://ror.org/01nn9ej41', 'no_lang_code', 1, 'https://ror.org/01nn9ej41 Silicon Mitus (United States)'),
(76444, 'https://ror.org/01nnvad46', 'no_lang_code', 1, 'https://ror.org/01nnvad46 Hydromer (United States)'),
(76445, 'https://ror.org/01np3r452', 'en', 1, 'https://ror.org/01np3r452 VA Montana Health Care System'),
(76446, 'https://ror.org/01npr5x48', 'no_lang_code', 1, 'https://ror.org/01npr5x48 GNA Research (Israel)'),
(76447, 'https://ror.org/01nqkgr65', 'tr', 1, 'https://ror.org/01nqkgr65 Medical Park Tarsus Hastanesi'),
(76448, 'https://ror.org/01nrhd027', 'nl', 1, 'https://ror.org/01nrhd027 Flemish Patiƫnt Platform vzw Vlaams Patiƫntenplatform'),
(76449, 'https://ror.org/01nssfy55', 'no_lang_code', 1, 'https://ror.org/01nssfy55 Signals Analytics (United States)'),
(76450, 'https://ror.org/01nvzxh20', 'no_lang_code', 1, 'https://ror.org/01nvzxh20 DEEP.KBB (Germany)'),
(76451, 'https://ror.org/01nwt2j78', 'no_lang_code', 1, 'https://ror.org/01nwt2j78 Sichuan Mianyang 404 Hospital å››å·ē»µé˜³å››ć€‡å››åŒ»é™¢'),
(76452, 'https://ror.org/01nz7sp31', 'no_lang_code', 1, 'https://ror.org/01nz7sp31 Beijing Chemical Industry Research Institute (China) åŒ—äŗ¬åø‚åŒ–å­¦å·„äøšē ”ē©¶é™¢'),
(76453, 'https://ror.org/01nzm8x21', 'no_lang_code', 1, 'https://ror.org/01nzm8x21 Opticyte (United States)'),
(76454, 'https://ror.org/01nztb982', 'en', 1, 'https://ror.org/01nztb982 Abdul Latif Jameel Poverty Action Lab'),
(76455, 'https://ror.org/01p1map55', 'no_lang_code', 1, 'https://ror.org/01p1map55 Transitions Optical (United States)'),
(76456, 'https://ror.org/01p27zg23', 'fr', 1, 'https://ror.org/01p27zg23 Centre Africain d’Etudes Internationales Diplomatiques Economiques et StratĆ©giques'),
(76457, 'https://ror.org/01p4gwr04', 'no_lang_code', 1, 'https://ror.org/01p4gwr04 Prenosis (United States)'),
(76458, 'https://ror.org/01p5b6z49', 'no_lang_code', 1, 'https://ror.org/01p5b6z49 Nota Laboratories (United States)'),
(76459, 'https://ror.org/01p5vg276', 'no_lang_code', 1, 'https://ror.org/01p5vg276 Centro Nacional de Endemias'),
(76460, 'https://ror.org/01p7awb13', 'no_lang_code', 1, 'https://ror.org/01p7awb13 Penumbra (United States)'),
(76461, 'https://ror.org/01p7vjt17', 'no_lang_code', 1, 'https://ror.org/01p7vjt17 Oscor (United States)'),
(76462, 'https://ror.org/01paq3405', 'de', 1, 'https://ror.org/01paq3405 Institut für Europäische Gesundheits- und Sozialwirtschaft'),
(76463, 'https://ror.org/01pbexw16', 'en', 1, 'https://ror.org/01pbexw16 The People''s Hospital Tongling é“œé™µåø‚äŗŗę°‘åŒ»é™¢'),
(76464, 'https://ror.org/01pczxn53', 'no_lang_code', 1, 'https://ror.org/01pczxn53 Platelet BioGenesis (United States)'),
(76465, 'https://ror.org/01pdra218', 'it', 1, 'https://ror.org/01pdra218 Ospedale Civile di Voghera'),
(76466, 'https://ror.org/01peek834', 'en', 1, 'https://ror.org/01peek834 National Art Institute č²”å›£ę³•äŗŗę°‘ę—čŠøč”“ē ”ē©¶ę‰€'),
(76467, 'https://ror.org/01pet0423', 'en', 1, 'https://ror.org/01pet0423 Otemae College of Nutrition å¤§ę‰‹å‰ę „é¤Šå¤§å­¦'),
(76468, 'https://ror.org/01pj4qf10', 'en', 1, 'https://ror.org/01pj4qf10 Institute of Network Cultures'),
(76469, 'https://ror.org/01pj6sv40', 'no_lang_code', 1, 'https://ror.org/01pj6sv40 EssilorLuxottica (France)'),
(76470, 'https://ror.org/01ppyqb03', 'no_lang_code', 1, 'https://ror.org/01ppyqb03 Cardinal Health (Ireland)'),
(76471, 'https://ror.org/01psb9158', 'en', 1, 'https://ror.org/01psb9158 Community College of Qatar ŁƒŁ„ŁŠŲ© المجتمع في قطر'),
(76472, 'https://ror.org/01pxxz681', 'en', 1, 'https://ror.org/01pxxz681 Zhejiang Medical and Health Group Hangzhou Hospital ęµ™ę±ŸēœåŒ»ē–—å„åŗ·é›†å›¢ę­å·žåŒ»é™¢'),
(76473, 'https://ror.org/01py4yp62', 'de', 1, 'https://ror.org/01py4yp62 Institut für Abfall, Abwasser, Site und Facility Management'),
(76474, 'https://ror.org/01pydbv25', 'no_lang_code', 1, 'https://ror.org/01pydbv25 YAN Engines (United States)'),
(76475, 'https://ror.org/01pz1d457', 'no_lang_code', 1, 'https://ror.org/01pz1d457 Quantum Devices (United States)'),
(76476, 'https://ror.org/01q1pek17', 'en', 1, 'https://ror.org/01q1pek17 Hamburg Archaeological Museum'),
(76477, 'https://ror.org/01q206483', 'no_lang_code', 1, 'https://ror.org/01q206483 OVD - OvocinÔrske Družstvo (Slovakia)'),
(76478, 'https://ror.org/01q27qv61', 'no_lang_code', 1, 'https://ror.org/01q27qv61 DATADVANCE (France)'),
(76479, 'https://ror.org/01q4q2062', 'no_lang_code', 1, 'https://ror.org/01q4q2062 HighLife (France)'),
(76480, 'https://ror.org/01q5m4507', 'en', 1, 'https://ror.org/01q5m4507 Endometriosis'),
(76481, 'https://ror.org/01q7fvf45', 'no_lang_code', 1, 'https://ror.org/01q7fvf45 NLA Diagnostics (United States)'),
(76482, 'https://ror.org/01q8n5k63', 'de', 1, 'https://ror.org/01q8n5k63 Institut für Prozessoptimierung und Informationstechnologien'),
(76483, 'https://ror.org/01qa1m185', 'no_lang_code', 1, 'https://ror.org/01qa1m185 SignalRx Pharmaceuticals (United States)'),
(76484, 'https://ror.org/01qceeg73', 'en', 1, 'https://ror.org/01qceeg73 Protein Research Foundation'),
(76485, 'https://ror.org/01qh5w602', 'nl', 1, 'https://ror.org/01qh5w602 Belastingdienst Tax and Customs Administration'),
(76486, 'https://ror.org/01qhcb906', 'en', 1, 'https://ror.org/01qhcb906 Hohhot Minzu College å‘¼å’Œęµ©ē‰¹ę°‘ę—å­¦é™¢'),
(76487, 'https://ror.org/01qnpya73', 'no_lang_code', 1, 'https://ror.org/01qnpya73 Signature Analytics (United States)'),
(76488, 'https://ror.org/01qqp2h35', 'no_lang_code', 1, 'https://ror.org/01qqp2h35 Amano Enzyme (Japan)'),
(76489, 'https://ror.org/01qr6ev44', 'no_lang_code', 1, 'https://ror.org/01qr6ev44 Alps Electric (United Kingdom)'),
(76490, 'https://ror.org/01qsz2191', 'en', 1, 'https://ror.org/01qsz2191 Nagasaki Ajisai Hospital é•·å“Žé€“äæ”ē—…é™¢'),
(76491, 'https://ror.org/01qve8440', 'de', 1, 'https://ror.org/01qve8440 Institut für Berufliche Bildung'),
(76492, 'https://ror.org/01qvmm256', 'en', 1, 'https://ror.org/01qvmm256 Academy of Arts Education Akademie der Kulturellen Bildung'),
(76493, 'https://ror.org/01qw4g764', 'no_lang_code', 1, 'https://ror.org/01qw4g764 Mitsui (Japan) äø‰äŗ•ć‚°ćƒ«ćƒ¼ćƒ—'),
(76494, 'https://ror.org/01qwwqf39', 'no_lang_code', 1, 'https://ror.org/01qwwqf39 YMS (Slovakia)'),
(76495, 'https://ror.org/01qyyep84', 'en', 1, 'https://ror.org/01qyyep84 Community Agroecology Network'),
(76496, 'https://ror.org/01r1pft76', 'no_lang_code', 1, 'https://ror.org/01r1pft76 Ambrx (United States)'),
(76497, 'https://ror.org/01r2s5391', 'en', 1, 'https://ror.org/01r2s5391 Beckley VA Medical Center'),
(76498, 'https://ror.org/01r2s9d65', 'no_lang_code', 1, 'https://ror.org/01r2s9d65 Ocular Proteomics (United States)'),
(76499, 'https://ror.org/01r2vjq11', 'no_lang_code', 1, 'https://ror.org/01r2vjq11 Tower Semiconductor (Israel) ć‚æćƒÆćƒ¼ć‚»ćƒŸć‚³ćƒ³ćƒ€ć‚Æć‚æćƒ¼'),
(76500, 'https://ror.org/01r3j5512', 'no_lang_code', 1, 'https://ror.org/01r3j5512 Vasoptic Medical (United States)'),
(76501, 'https://ror.org/01r58sr54', 'en', 1, 'https://ror.org/01r58sr54 National Center for Chronic and Noncommunicable Disease Control and Prevention äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒę…¢ę€§éžä¼ ęŸ“ę€§ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(76502, 'https://ror.org/01r5f5330', 'no_lang_code', 1, 'https://ror.org/01r5f5330 Tactical Communications Group (United States)'),
(76503, 'https://ror.org/01r5ta105', 'no_lang_code', 1, 'https://ror.org/01r5ta105 Azimuth (United States)'),
(76504, 'https://ror.org/01r7f1531', 'no_lang_code', 1, 'https://ror.org/01r7f1531 Synertech PM (United States)'),
(76505, 'https://ror.org/01r8h1t86', 'no_lang_code', 1, 'https://ror.org/01r8h1t86 Swabian Instruments (Germany)'),
(76506, 'https://ror.org/01r9c6a33', 'no_lang_code', 1, 'https://ror.org/01r9c6a33 Dempsey Ventures (United States)'),
(76507, 'https://ror.org/01r9z2t07', 'no_lang_code', 1, 'https://ror.org/01r9z2t07 Reinhart & Associates (United States)'),
(76508, 'https://ror.org/01ra0cf82', 'no_lang_code', 1, 'https://ror.org/01ra0cf82 Axonics Modulation Technologies (United States)'),
(76509, 'https://ror.org/01radym16', 'en', 1, 'https://ror.org/01radym16 Institute of Agro-Products Processing Science and Technology äø­å›½å†œäøšē§‘å­¦é™¢å†œäŗ§å“åŠ å·„ę‰€'),
(76510, 'https://ror.org/01rbbfm88', 'en', 1, 'https://ror.org/01rbbfm88 Xiamen Blood Center åŽ¦é—Øåø‚äø­åæƒč”€ē«™'),
(76511, 'https://ror.org/01rce2188', 'no_lang_code', 1, 'https://ror.org/01rce2188 Omnicell (United States)'),
(76512, 'https://ror.org/01rdcx205', 'en', 1, 'https://ror.org/01rdcx205 New Development Bank'),
(76513, 'https://ror.org/01rfxdq93', 'de', 1, 'https://ror.org/01rfxdq93 Evangelisches Krankenhaus Oberhausen'),
(76514, 'https://ror.org/01rhva785', 'es', 1, 'https://ror.org/01rhva785 Centro Nacional de Investigaciones en Salud Materno Infantil'),
(76515, 'https://ror.org/01rk5br21', 'en', 1, 'https://ror.org/01rk5br21 China Association of Agricultural Science Societies äø­å›½å†œå­¦ä¼š'),
(76516, 'https://ror.org/01rkbgp30', 'no_lang_code', 1, 'https://ror.org/01rkbgp30 Angiochem (Canada)'),
(76517, 'https://ror.org/01rm1r711', 'no_lang_code', 1, 'https://ror.org/01rm1r711 United Electric Controls (United States)'),
(76518, 'https://ror.org/01rmj8z79', 'en', 1, 'https://ror.org/01rmj8z79 Kitami Industrial Technology Center åŒ—č¦‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(76519, 'https://ror.org/01rpjzn46', 'no_lang_code', 1, 'https://ror.org/01rpjzn46 DMT Produktentwicklung (Germany)'),
(76520, 'https://ror.org/01rpq5x59', 'no_lang_code', 1, 'https://ror.org/01rpq5x59 Syntek Technologies (United States)'),
(76521, 'https://ror.org/01rqyfs68', 'nl', 1, 'https://ror.org/01rqyfs68 Huisarts en Wetenschap'),
(76522, 'https://ror.org/01rsktd65', 'no_lang_code', 1, 'https://ror.org/01rsktd65 Northgate Technologies (United States)'),
(76523, 'https://ror.org/01rsndm95', 'en', 1, 'https://ror.org/01rsndm95 James Lind Institute'),
(76524, 'https://ror.org/01rtttn28', 'en', 1, 'https://ror.org/01rtttn28 AINET Association of English Teachers'),
(76525, 'https://ror.org/01rvva743', 'no_lang_code', 1, 'https://ror.org/01rvva743 Ancora Heart (United States)'),
(76526, 'https://ror.org/01rwvbt41', 'no_lang_code', 1, 'https://ror.org/01rwvbt41 Integer (United States)'),
(76527, 'https://ror.org/01rx40j51', 'no_lang_code', 1, 'https://ror.org/01rx40j51 Muko City Cultural Museum å‘ę—„åø‚ę–‡åŒ–č³‡ę–™é¤Ø'),
(76528, 'https://ror.org/01rxdrm66', 'no_lang_code', 1, 'https://ror.org/01rxdrm66 Passport Systems (United States)'),
(76529, 'https://ror.org/01rxgdr42', 'de', 1, 'https://ror.org/01rxgdr42 PECO-Institut'),
(76530, 'https://ror.org/01rztr650', 'de', 1, 'https://ror.org/01rztr650 Hessischer Volkshochschulverband'),
(76531, 'https://ror.org/01s016274', 'no_lang_code', 1, 'https://ror.org/01s016274 BioCardia (United States)'),
(76532, 'https://ror.org/01s157z73', 'no_lang_code', 1, 'https://ror.org/01s157z73 Kyivmetroproekt (Ukraine) ŠšŠ˜Š‡Š’ŠŸŠ ŠžŠ•ŠšŠ¢'),
(76533, 'https://ror.org/01s3wja21', 'no_lang_code', 1, 'https://ror.org/01s3wja21 Scientific Technologies Corporation (United States)'),
(76534, 'https://ror.org/01s8b3v69', 'en', 1, 'https://ror.org/01s8b3v69 Veterans Health Care System of the Ozarks'),
(76535, 'https://ror.org/01s8f2180', 'en', 1, 'https://ror.org/01s8f2180 Natural History Museum Rotterdam Natuurhistorisch Museum Rotterdam'),
(76536, 'https://ror.org/01s8p3017', 'no_lang_code', 1, 'https://ror.org/01s8p3017 Kinection (United States)'),
(76537, 'https://ror.org/01sah3s84', 'no_lang_code', 1, 'https://ror.org/01sah3s84 Mountain Data Group (United States)'),
(76538, 'https://ror.org/01sbfc546', 'no_lang_code', 1, 'https://ror.org/01sbfc546 Truventic (United States)'),
(76539, 'https://ror.org/01scdrj09', 'en', 1, 'https://ror.org/01scdrj09 International Medical And Welfare College Nanao School å›½éš›åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”äøƒå°¾ę ”'),
(76540, 'https://ror.org/01sevvg89', 'no_lang_code', 1, 'https://ror.org/01sevvg89 Varidesk (United States)'),
(76541, 'https://ror.org/01sexcc53', 'no_lang_code', 1, 'https://ror.org/01sexcc53 Planmeca (Finland)'),
(76542, 'https://ror.org/01shd5g72', 'no_lang_code', 1, 'https://ror.org/01shd5g72 Electro Optical Systems (United Kingdom)'),
(76543, 'https://ror.org/01sm6mt92', 'no_lang_code', 1, 'https://ror.org/01sm6mt92 Test & Evaluation Solutions (United States)'),
(76544, 'https://ror.org/01sqm5e44', 'no_lang_code', 1, 'https://ror.org/01sqm5e44 Shin Nippon Biomedical Laboratories (Japan) ę–°ę—„ęœ¬ćƒć‚¤ć‚Ŗćƒ”ćƒ‡ć‚£ć‚«ćƒ«ē ”ē©¶ę‰€'),
(76545, 'https://ror.org/01sr2h546', 'fr', 1, 'https://ror.org/01sr2h546 HĆ“pital Ɖmile-Roux'),
(76546, 'https://ror.org/01srayt58', 'en', 1, 'https://ror.org/01srayt58 ICLEI - Local Governments for Sustainability USA'),
(76547, 'https://ror.org/01svaqq28', 'en', 1, 'https://ror.org/01svaqq28 Qatar National Research Fund Ų§Ł„ŲµŁ†ŲÆŁˆŁ‚ Ų§Ł„Ł‚Ų·Ų±ŁŠ Ł„Ų±Ų¹Ų§ŁŠŲ© البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(76548, 'https://ror.org/01sw43c97', 'no_lang_code', 1, 'https://ror.org/01sw43c97 Centre for Conflict Management and Transformation'),
(76549, 'https://ror.org/01sw7vm96', 'no_lang_code', 1, 'https://ror.org/01sw7vm96 We Predict (United Kingdom)'),
(76550, 'https://ror.org/01swx2932', 'fr', 1, 'https://ror.org/01swx2932 Institut Catholique d''Arts et MƩtiers'),
(76551, 'https://ror.org/01sy5t684', 'en', 1, 'https://ror.org/01sy5t684 The First Hospital of Changsha é•æę²™åø‚ē¬¬äø€åŒ»é™¢'),
(76552, 'https://ror.org/01t08q012', 'en', 1, 'https://ror.org/01t08q012 Coalition for Epidemic Preparedness Innovations'),
(76553, 'https://ror.org/01t2dy869', 'en', 1, 'https://ror.org/01t2dy869 Chiba City Lifelong Learning Center åƒč‘‰åø‚ ē”Ÿę¶Æå­¦ēæ’ć‚»ćƒ³ć‚æćƒ¼'),
(76554, 'https://ror.org/01t2z2m96', 'no_lang_code', 1, 'https://ror.org/01t2z2m96 Lotte Fine Chemical (South Korea)'),
(76555, 'https://ror.org/01t338n33', 'no_lang_code', 1, 'https://ror.org/01t338n33 Pharmazeutische Fabrik Dr. Reckeweg (Germany)'),
(76556, 'https://ror.org/01t40ej06', 'en', 1, 'https://ror.org/01t40ej06 Toyota City Museum of Local History č±Šē”°åø‚éƒ·åœŸč³‡ę–™é¤Ø'),
(76557, 'https://ror.org/01t6ysk15', 'en', 1, 'https://ror.org/01t6ysk15 Koul Research Foundation'),
(76558, 'https://ror.org/01t876c68', 'en', 1, 'https://ror.org/01t876c68 Hormuud University'),
(76559, 'https://ror.org/01t8k4098', 'no_lang_code', 1, 'https://ror.org/01t8k4098 Guhua Hospital äøŠęµ·åø‚å„‰č“¤åŒŗå¤åŽåŒ»é™¢'),
(76560, 'https://ror.org/01t92qx25', 'no_lang_code', 1, 'https://ror.org/01t92qx25 Arcturus Therapeutics (United States)'),
(76561, 'https://ror.org/01tas7m50', 'en', 1, 'https://ror.org/01tas7m50 Africa Youth Growth Foundation'),
(76562, 'https://ror.org/01tbnxe16', 'en', 1, 'https://ror.org/01tbnxe16 BRIQ Institute on Behavior and Inequality'),
(76563, 'https://ror.org/01tcd5f78', 'no_lang_code', 1, 'https://ror.org/01tcd5f78 Kentropy Technologies (India)'),
(76564, 'https://ror.org/01teevb58', 'no_lang_code', 1, 'https://ror.org/01teevb58 John Wood Group (United Kingdom)'),
(76565, 'https://ror.org/01tfjyv98', 'en', 1, 'https://ror.org/01tfjyv98 MRC Brain Network Dynamics Unit'),
(76566, 'https://ror.org/01tfspm44', 'de', 1, 'https://ror.org/01tfspm44 Sozialwissenschaftliches Forschungszentrum Berlin-Brandenburg'),
(76567, 'https://ror.org/01th5x258', 'en', 1, 'https://ror.org/01th5x258 Institute of Chemical Industry of Forest Products äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ęž—äŗ§åŒ–å­¦å·„äøšē ”ē©¶ę‰€'),
(76568, 'https://ror.org/01tpbbf75', 'no_lang_code', 1, 'https://ror.org/01tpbbf75 Excelitas Technologies (United States)'),
(76569, 'https://ror.org/01tppr291', 'no_lang_code', 1, 'https://ror.org/01tppr291 d-fine (Germany)'),
(76570, 'https://ror.org/01ttqf142', 'no_lang_code', 1, 'https://ror.org/01ttqf142 Honshu Chemical Industry (Japan) ęœ¬å·žåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(76571, 'https://ror.org/01tv67y39', 'en', 1, 'https://ror.org/01tv67y39 Mustard Research and Promotion Consortium ą¤øą¤°ą¤øą„‹ą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤øą¤‚ą¤µą¤°ą„ą¤§ą¤Ø ą¤•ą¤‚ą¤øą„‹ą¤°ą„ą¤Ÿą¤æą¤Æą¤®'),
(76572, 'https://ror.org/01tvy6411', 'en', 1, 'https://ror.org/01tvy6411 Institute of Ethnology, Academia Sinica äø­å¤®ē ”ē©¶é™¢ę°‘ę—å­øē ”ē©¶ę‰€'),
(76573, 'https://ror.org/01tyj4381', 'no_lang_code', 1, 'https://ror.org/01tyj4381 Sino-American Silicon Products (Taiwan)'),
(76574, 'https://ror.org/01tyzsw55', 'en', 1, 'https://ror.org/01tyzsw55 Mie Agricultural Research Institute äø‰é‡ēœŒč¾²ę„­ē ”ē©¶ę‰€'),
(76575, 'https://ror.org/01v15pf03', 'no_lang_code', 1, 'https://ror.org/01v15pf03 Hellenic Telecommunications and Post Commission (Greece) Εθνική Επιτροπή Ī¤Ī·Ī»ĪµĻ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½ και ΤαχυΓρομείων'),
(76576, 'https://ror.org/01v171a61', 'en', 1, 'https://ror.org/01v171a61 National Center for Women and Children’s Health, China CDC äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒå¦‡å¹¼äæå„äø­åæƒ'),
(76577, 'https://ror.org/01v2h2d39', 'en', 1, 'https://ror.org/01v2h2d39 National Medical and Surgical Center named after N.I. Pirogov ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГико-Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Центр имени Š.И. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(76578, 'https://ror.org/01v5bs750', 'en', 1, 'https://ror.org/01v5bs750 Rayos Contra Cancer'),
(76579, 'https://ror.org/01v7cer31', 'no_lang_code', 1, 'https://ror.org/01v7cer31 McKinsey & Company (United Kingdom)'),
(76580, 'https://ror.org/01v7fn691', 'es', 1, 'https://ror.org/01v7fn691 Guyra Paraguay'),
(76581, 'https://ror.org/01v7g3220', 'en', 1, 'https://ror.org/01v7g3220 Flemish Advisory Council for Innovation & Enterprise Vlaamse Adviesraad voor Innoveren en Ondernemen'),
(76582, 'https://ror.org/01v8wnr22', 'no_lang_code', 1, 'https://ror.org/01v8wnr22 Hitowa Holdings (Japan) ć²ćØć‚ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(76583, 'https://ror.org/01vav0149', 'en', 1, 'https://ror.org/01vav0149 Guizhou Botanical Garden č“µå·žēœę¤ē‰©å›­'),
(76584, 'https://ror.org/01vbw9k90', 'no_lang_code', 1, 'https://ror.org/01vbw9k90 Orihara Industrial (Japan)'),
(76585, 'https://ror.org/01vd6wz59', 'no_lang_code', 1, 'https://ror.org/01vd6wz59 Hoppecke (Germany)'),
(76586, 'https://ror.org/01vec9q19', 'no_lang_code', 1, 'https://ror.org/01vec9q19 Vital Probes (United States)'),
(76587, 'https://ror.org/01vhc4245', 'en', 1, 'https://ror.org/01vhc4245 INFINITY Science Center'),
(76588, 'https://ror.org/01vksdv18', 'no_lang_code', 1, 'https://ror.org/01vksdv18 Mackie Research (New Zealand)'),
(76589, 'https://ror.org/01vpqmh56', 'no_lang_code', 1, 'https://ror.org/01vpqmh56 Endologix (United States)'),
(76590, 'https://ror.org/01vpzfr92', 'de', 1, 'https://ror.org/01vpzfr92 ThüringenForst'),
(76591, 'https://ror.org/01vrvqh04', 'en', 1, 'https://ror.org/01vrvqh04 Association for Scottish Literary Studies'),
(76592, 'https://ror.org/01vs47t55', 'en', 1, 'https://ror.org/01vs47t55 Zhengzhou Jinshui District General Hospital éƒ‘å·žåø‚é‡‘ę°“åŒŗę€»åŒ»é™¢'),
(76593, 'https://ror.org/01vv0b990', 'en', 1, 'https://ror.org/01vv0b990 Tamil Nadu Board of Rural Development ą®Šą®°ą®• ą®®ąÆ‡ą®®ąÆą®Ŗą®¾ą®ŸąÆą®ŸąÆ ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®µą®¾ą®°ą®æą®Æą®®ąÆ'),
(76594, 'https://ror.org/01vv3bt38', 'no_lang_code', 1, 'https://ror.org/01vv3bt38 Vectrus (United States)'),
(76595, 'https://ror.org/01vy25d07', 'no_lang_code', 1, 'https://ror.org/01vy25d07 Neurotargeting (United States)'),
(76596, 'https://ror.org/01vz88x14', 'en', 1, 'https://ror.org/01vz88x14 LogicalOutcomes'),
(76597, 'https://ror.org/01w0ddb93', 'no_lang_code', 1, 'https://ror.org/01w0ddb93 QuantaLab'),
(76598, 'https://ror.org/01w0mjg16', 'no_lang_code', 1, 'https://ror.org/01w0mjg16 Yamamoto Chamicals (Japan) å±±ęœ¬åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(76599, 'https://ror.org/01w142366', 'no_lang_code', 1, 'https://ror.org/01w142366 Venebio (United States)'),
(76600, 'https://ror.org/01w1jem87', 'no_lang_code', 1, 'https://ror.org/01w1jem87 Alpenforschungsinstitut (Germany)'),
(76601, 'https://ror.org/01w4k1v53', 'en', 1, 'https://ror.org/01w4k1v53 Rubber Research Institute äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢ę©”čƒ¶ē ”ē©¶ę‰€'),
(76602, 'https://ror.org/01w50w965', 'no_lang_code', 1, 'https://ror.org/01w50w965 Robocasting (United States)'),
(76603, 'https://ror.org/01w82kb82', 'en', 1, 'https://ror.org/01w82kb82 Tamano General Medical College ēŽ‰é‡Žē·åˆåŒ»ē™‚å°‚å•å­¦ę ”'),
(76604, 'https://ror.org/01w90cz05', 'fr', 1, 'https://ror.org/01w90cz05 Centre National des Soins Palliatifs et de la Fin de Vie'),
(76605, 'https://ror.org/01w94r626', 'no_lang_code', 1, 'https://ror.org/01w94r626 Synamedia (United Kingdom)'),
(76606, 'https://ror.org/01w9wgg77', 'en', 1, 'https://ror.org/01w9wgg77 Istanbul Kent University İstanbul Kent Üniversitesi'),
(76607, 'https://ror.org/01wd8pk38', 'en', 1, 'https://ror.org/01wd8pk38 VA Connecticut Research and Education Foundation'),
(76608, 'https://ror.org/01wexqy53', 'en', 1, 'https://ror.org/01wexqy53 VA Gulf Coast Veterans Health Care System'),
(76609, 'https://ror.org/01whq1k34', 'en', 1, 'https://ror.org/01whq1k34 Biomedical Translation Research Center'),
(76610, 'https://ror.org/01wj99869', 'no_lang_code', 1, 'https://ror.org/01wj99869 Spectrum Dynamics Medical (Switzerland)'),
(76611, 'https://ror.org/01wp8zh54', 'en', 1, 'https://ror.org/01wp8zh54 IIT@MIT'),
(76612, 'https://ror.org/01wrvt331', 'no_lang_code', 1, 'https://ror.org/01wrvt331 Proteos (United States)'),
(76613, 'https://ror.org/01wt5xg78', 'no_lang_code', 1, 'https://ror.org/01wt5xg78 User Systems (United States)'),
(76614, 'https://ror.org/01ww58407', 'no_lang_code', 1, 'https://ror.org/01ww58407 Durect (United States)'),
(76615, 'https://ror.org/01wxthv91', 'sk', 1, 'https://ror.org/01wxthv91 SlovenskĆ” FyzikĆ”lna SpoločnosÅ„'),
(76616, 'https://ror.org/01wzmc277', 'no_lang_code', 1, 'https://ror.org/01wzmc277 NAEJA-RGM Pharmaceuticals (Canada)'),
(76617, 'https://ror.org/01x1dz568', 'no_lang_code', 1, 'https://ror.org/01x1dz568 Neuronano (Sweden)'),
(76618, 'https://ror.org/01x37s187', 'no_lang_code', 1, 'https://ror.org/01x37s187 Stratom (United States)'),
(76619, 'https://ror.org/01x68z872', 'no_lang_code', 1, 'https://ror.org/01x68z872 Loadhog (United Kingdom)'),
(76620, 'https://ror.org/01x8bp388', 'no_lang_code', 1, 'https://ror.org/01x8bp388 ImageRive (Switzerland)'),
(76621, 'https://ror.org/01x905d34', 'no_lang_code', 1, 'https://ror.org/01x905d34 Samyang Holdings (South Korea) ģ‚¼ģ–‘ė°”ģ“ģ˜¤ķŒœ'),
(76622, 'https://ror.org/01xa88s20', 'en', 1, 'https://ror.org/01xa88s20 Baotou Teachers College åŒ…å¤“åøˆčŒƒå­¦é™¢'),
(76623, 'https://ror.org/01xaf3k63', 'no_lang_code', 1, 'https://ror.org/01xaf3k63 Metallurgical Industry Press (China) å†¶é‡‘å·„äøšå‡ŗē‰ˆē¤¾'),
(76624, 'https://ror.org/01xcek018', 'no_lang_code', 1, 'https://ror.org/01xcek018 Ensuiko Sugar Refining (Japan)'),
(76625, 'https://ror.org/01xf31a71', 'en', 1, 'https://ror.org/01xf31a71 College of Applied Sciences, Nizwa ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© ŲØŁ†Ų²ŁˆŁ‰'),
(76626, 'https://ror.org/01xg16290', 'no_lang_code', 1, 'https://ror.org/01xg16290 Isagro (Italy)'),
(76627, 'https://ror.org/01xkxj196', 'no_lang_code', 1, 'https://ror.org/01xkxj196 Seward (United States)'),
(76628, 'https://ror.org/01xnbq218', 'en', 1, 'https://ror.org/01xnbq218 Centre for Artificial Intelligence and Robotics ą¤•ą„ƒą¤¤ą„ą¤°ą¤æą¤® ą¤œą„ą¤žą¤¾ą¤Ø तऄा ą¤°ą„‹ą¤¬ą„‹ą¤Ÿą¤æą¤•ą„€ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(76629, 'https://ror.org/01xpcj978', 'no_lang_code', 1, 'https://ror.org/01xpcj978 Severn Glocon Group (United Kingdom)'),
(76630, 'https://ror.org/01xpf5964', 'en', 1, 'https://ror.org/01xpf5964 SƔmi High School and Reindeer Husbandry School'),
(76631, 'https://ror.org/01xq34439', 'no_lang_code', 1, 'https://ror.org/01xq34439 Plus Designs (United States)'),
(76632, 'https://ror.org/01xvdt027', 'no_lang_code', 1, 'https://ror.org/01xvdt027 Intersect ENT (United States)'),
(76633, 'https://ror.org/01xxch676', 'de', 1, 'https://ror.org/01xxch676 Institut für Sozialforschung und Berufliche Weiterbildung'),
(76634, 'https://ror.org/01xz87r89', 'de', 1, 'https://ror.org/01xz87r89 Institut für Betontechnologie und Oberflächenschutz'),
(76635, 'https://ror.org/01xzey958', 'no_lang_code', 1, 'https://ror.org/01xzey958 Nemoto (Japan) ę ¹ęœ¬ęęž—å ‚'),
(76636, 'https://ror.org/01xzsbk70', 'en', 1, 'https://ror.org/01xzsbk70 Vienna City Library Wienbibliothek im Rathaus'),
(76637, 'https://ror.org/01y1re497', 'en', 1, 'https://ror.org/01y1re497 Department of Physical and Technical Sciences ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ фізіка-Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹Ń… навук'),
(76638, 'https://ror.org/01y2qzf06', 'no_lang_code', 1, 'https://ror.org/01y2qzf06 Seven Solutions (Spain)'),
(76639, 'https://ror.org/01y4d4d64', 'no_lang_code', 1, 'https://ror.org/01y4d4d64 MIA Engineering (Slovakia)'),
(76640, 'https://ror.org/01y6y5368', 'no_lang_code', 1, 'https://ror.org/01y6y5368 China Metallurgical Planning Net (China) å†¶é‡‘å·„äøšč§„åˆ’ē ”ē©¶é™¢'),
(76641, 'https://ror.org/01y8gzr79', 'en', 1, 'https://ror.org/01y8gzr79 Institute of Economics, Academia Sinica äø­å¤®ē ”ē©¶é™¢ē¶“ęæŸē ”ē©¶ę‰€'),
(76642, 'https://ror.org/01ya1kj04', 'no_lang_code', 1, 'https://ror.org/01ya1kj04 TechnoView (United States)'),
(76643, 'https://ror.org/01ycfd220', 'no_lang_code', 1, 'https://ror.org/01ycfd220 Cergentis (Netherlands)'),
(76644, 'https://ror.org/01ydq7s61', 'no_lang_code', 1, 'https://ror.org/01ydq7s61 GenePath Dx (India)'),
(76645, 'https://ror.org/01ye8r794', 'en', 1, 'https://ror.org/01ye8r794 Tropical Crops Genetic Resources Institute ēƒ­åø¦ä½œē‰©å“ē§čµ„ęŗē ”ē©¶ę‰€'),
(76646, 'https://ror.org/01yennm80', 'en', 1, 'https://ror.org/01yennm80 King Institute of Preventive Medicine and Research ą®¤ą®ŸąÆą®ŖąÆą®ŖąÆ ą®®ą®°ąÆą®ØąÆą®¤ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®•ą®æą®™ąÆ ą®‡ą®©ąÆą®øąÆą®Ÿą®æą®Ÿą®æą®ÆąÆ‚ą®ŸąÆ'),
(76647, 'https://ror.org/01yfx8049', 'en', 1, 'https://ror.org/01yfx8049 Fragrance & Flavour Development Centre ą¤«ą„ą¤°ą¤¾ą¤—ą„ą¤°ą¤¾ą¤‚ą¤ø & ą¤«ą„ą¤²ą„‡ą¤µą¤° ą¤”ą„‡ą¤µą„‡ą¤²ą¤Ŗą¤®ą„‡ą¤‚ą¤Ÿ ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(76648, 'https://ror.org/01yhcdk46', 'no_lang_code', 1, 'https://ror.org/01yhcdk46 Rex Medical (United States)'),
(76649, 'https://ror.org/01yjnjk05', 'en', 1, 'https://ror.org/01yjnjk05 Defence Terrain Research Laboratory ą¤°ą¤•ą„ą¤·ą¤¾ ą¤­ą„‚-भाग और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(76650, 'https://ror.org/01yjzw780', 'no_lang_code', 1, 'https://ror.org/01yjzw780 Quandela (France)'),
(76651, 'https://ror.org/01ymrn657', 'no_lang_code', 1, 'https://ror.org/01ymrn657 Devolo (Germany)'),
(76652, 'https://ror.org/01ymz3j33', 'en', 1, 'https://ror.org/01ymz3j33 Tertiary Research and Education Network of South Africa'),
(76653, 'https://ror.org/01yp7yc97', 'no_lang_code', 1, 'https://ror.org/01yp7yc97 Urban Planning & Design Institute of Shenzhen (China) ę·±åœ³åø‚åŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(76654, 'https://ror.org/01yphfr75', 'no_lang_code', 1, 'https://ror.org/01yphfr75 Planetary Systems (United States)'),
(76655, 'https://ror.org/01ypsy903', 'en', 1, 'https://ror.org/01ypsy903 Asia-Pacific Regional Network for Early Childhood'),
(76656, 'https://ror.org/01yrg4t37', 'en', 1, 'https://ror.org/01yrg4t37 Partnership for Economic Policy'),
(76657, 'https://ror.org/01ys4k188', 'en', 1, 'https://ror.org/01ys4k188 World Organisation of Family Doctors'),
(76658, 'https://ror.org/01ywdxb33', 'en', 1, 'https://ror.org/01ywdxb33 Bank of Estonia Eesti Pank'),
(76659, 'https://ror.org/01yx4wq53', 'en', 1, 'https://ror.org/01yx4wq53 Delta Institute for Theoretical Physics'),
(76660, 'https://ror.org/01yx9b459', 'no_lang_code', 1, 'https://ror.org/01yx9b459 Fleetwood Specialty Pharmacy (United States)'),
(76661, 'https://ror.org/01yxc0v75', 'no_lang_code', 1, 'https://ror.org/01yxc0v75 Photon Spot (United States)'),
(76662, 'https://ror.org/01yxkbf55', 'en', 1, 'https://ror.org/01yxkbf55 Xiaogan First People''s Hospital å­ę„Ÿåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(76663, 'https://ror.org/01z04wv09', 'en', 1, 'https://ror.org/01z04wv09 Corporación de Ciencia y Tecnología para el Desarrollo de la Industria Naval Marítima y Fluvial Science and Technology Corporation for Naval, Maritime and Riverine Industry Development'),
(76664, 'https://ror.org/01z0d7163', 'en', 1, 'https://ror.org/01z0d7163 Shizuoka Prefecture Institute of Environmental Health Sciences é™å²”ēœŒē’°å¢ƒč”›ē”Ÿē§‘å­¦ē ”ē©¶ę‰€'),
(76665, 'https://ror.org/01z0qxf72', 'no_lang_code', 1, 'https://ror.org/01z0qxf72 NevadaNano (United States)'),
(76666, 'https://ror.org/01z2jfk91', 'de', 1, 'https://ror.org/01z2jfk91 Ostasien-Institut'),
(76667, 'https://ror.org/01z3tch16', 'en', 1, 'https://ror.org/01z3tch16 Zhejiang Provincial Public Security Department ęµ™ę±Ÿēœå…¬å®‰åŽ…'),
(76668, 'https://ror.org/01z5cg313', 'no_lang_code', 1, 'https://ror.org/01z5cg313 Fabbrica Italiana Sintetici (Italy)'),
(76669, 'https://ror.org/01z620d89', 'no_lang_code', 1, 'https://ror.org/01z620d89 EoTech (United States)'),
(76670, 'https://ror.org/01z7f8509', 'no_lang_code', 1, 'https://ror.org/01z7f8509 EQUIcon (Germany)'),
(76671, 'https://ror.org/01zb9kf14', 'no_lang_code', 1, 'https://ror.org/01zb9kf14 Visionary Pharmaceuticals (United States)'),
(76672, 'https://ror.org/01zcmnc43', 'no_lang_code', 1, 'https://ror.org/01zcmnc43 MeMed (Israel)'),
(76673, 'https://ror.org/01ze2qb65', 'en', 1, 'https://ror.org/01ze2qb65 International Step by Step Association'),
(76674, 'https://ror.org/01ze2td62', 'no_lang_code', 1, 'https://ror.org/01ze2td62 Humanigen (United States)'),
(76675, 'https://ror.org/01zm1c864', 'en', 1, 'https://ror.org/01zm1c864 Department of Animal Husbandry, Veterinary and Dairy Development'),
(76676, 'https://ror.org/01zm8nz34', 'no_lang_code', 1, 'https://ror.org/01zm8nz34 Vytronus (United States)'),
(76677, 'https://ror.org/01zmbg994', 'en', 1, 'https://ror.org/01zmbg994 Plasma University'),
(76678, 'https://ror.org/01zn6ne75', 'no_lang_code', 1, 'https://ror.org/01zn6ne75 Wilo (Germany)'),
(76679, 'https://ror.org/01znjq697', 'no_lang_code', 1, 'https://ror.org/01znjq697 Dorf Ketal (India) ą¤”ą„‰ą¤°ą„ą¤«-ą¤•ą„‡ą¤Ÿą¤² ą¤•ą„‡ą¤®ą¤æą¤•ą¤²ą„ą¤ø इंऔिया ą¤Ŗą„ą¤°ą¤¾ą¤‡ą¤µą„‡ą¤Ÿ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(76680, 'https://ror.org/01zs9ce87', 'en', 1, 'https://ror.org/01zs9ce87 Jingzhou Maternal and Child Health Hospital č†å·žåø‚å¦‡å¹¼äæå„é™¢'),
(76681, 'https://ror.org/01zsz0b12', 'en', 1, 'https://ror.org/01zsz0b12 Institute for Justice and Reconciliation'),
(76682, 'https://ror.org/01zw36675', 'no_lang_code', 1, 'https://ror.org/01zw36675 RetrieverTech (United States)'),
(76683, 'https://ror.org/01zww3c78', 'en', 1, 'https://ror.org/01zww3c78 West Ridge Veterinary Practice'),
(76684, 'https://ror.org/01zy32z07', 'en', 1, 'https://ror.org/01zy32z07 Beijing Institue Of Electronics Technology And Application åŒ—äŗ¬ē”µå­ē§‘ęŠ€ęŠ€ęœÆē ”ē©¶ę‰€'),
(76685, 'https://ror.org/01zzaw986', 'en', 1, 'https://ror.org/01zzaw986 General Clinic PhưƔng Nam Phòng KhÔm Đa Khoa PhưƔng Nam'),
(76686, 'https://ror.org/01zzqts64', 'no_lang_code', 1, 'https://ror.org/01zzqts64 Stada Arzneimittel (Germany) Standardarzneimittel Deutscher Apotheker'),
(76687, 'https://ror.org/0200a2h90', 'no_lang_code', 1, 'https://ror.org/0200a2h90 Equis (Slovakia)'),
(76688, 'https://ror.org/0201da008', 'no_lang_code', 1, 'https://ror.org/0201da008 HCL Technologies (United States)'),
(76689, 'https://ror.org/0202z8x64', 'no_lang_code', 1, 'https://ror.org/0202z8x64 Associated Fund Administrators (Botswana)'),
(76690, 'https://ror.org/0203dhb90', 'no_lang_code', 1, 'https://ror.org/0203dhb90 IQM (Finland)'),
(76691, 'https://ror.org/0203kq127', 'no_lang_code', 1, 'https://ror.org/0203kq127 Vulintus (United States)'),
(76692, 'https://ror.org/02048n894', 'en', 1, 'https://ror.org/02048n894 Joint Center for Quantum Information and Computer Science'),
(76693, 'https://ror.org/02088r143', 'no_lang_code', 1, 'https://ror.org/02088r143 Springstar (United States)'),
(76694, 'https://ror.org/0208ecv48', 'no_lang_code', 1, 'https://ror.org/0208ecv48 Amstein + Walthert (Switzerland)'),
(76695, 'https://ror.org/0208qbg77', 'en', 1, 'https://ror.org/0208qbg77 Shanghai Zhangjiang Laboratory äøŠęµ·ęŽØčæ›ē§‘ęŠ€åˆ›ę–°äø­åæƒå»ŗč®¾åŠžå…¬å®¤'),
(76696, 'https://ror.org/0209sxq95', 'no_lang_code', 1, 'https://ror.org/0209sxq95 Brightwake (United Kingdom)'),
(76697, 'https://ror.org/020a37n11', 'es', 1, 'https://ror.org/020a37n11 Fundación Salvadoreña para el Desarrollo Económico y Social'),
(76698, 'https://ror.org/020ajpe42', 'en', 1, 'https://ror.org/020ajpe42 Togus VA Medical Center'),
(76699, 'https://ror.org/020az4v13', 'en', 1, 'https://ror.org/020az4v13 Animal Quarantine Office ą¤Ŗą¤¶ą„ ą¤•ą„ā€ą¤µą¤¾ą¤°ą„‡ą¤Øą„ą¤Ÿą¤¾ą¤ˆą¤Ø ą¤•ą¤¾ą¤°ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(76700, 'https://ror.org/020cadp55', 'no_lang_code', 1, 'https://ror.org/020cadp55 Urkund (Sweden)'),
(76701, 'https://ror.org/020cha924', 'no_lang_code', 1, 'https://ror.org/020cha924 Universal-Kugellager-Fabrik (Germany)'),
(76702, 'https://ror.org/020dm9j49', 'en', 1, 'https://ror.org/020dm9j49 Armaments Research Board ą¤†ą¤Æą„ą¤§ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤¬ą„‹ą¤°ą„ą¤”'),
(76703, 'https://ror.org/020dpkm20', 'no_lang_code', 1, 'https://ror.org/020dpkm20 Bal Umang Drishya Sanstha बल उमंग ą¤¦ą„ƒą¤·ą„ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(76704, 'https://ror.org/020gc1m38', 'no_lang_code', 1, 'https://ror.org/020gc1m38 Particle Flux Analytics (United States)'),
(76705, 'https://ror.org/020hmha06', 'en', 1, 'https://ror.org/020hmha06 Nordic Laboratory for Luminescence Dating Nordisk Laboratorium for Luminescensdatering'),
(76706, 'https://ror.org/020jfw620', 'en', 1, 'https://ror.org/020jfw620 Hartpury University'),
(76707, 'https://ror.org/020qrc968', 'en', 1, 'https://ror.org/020qrc968 The Shoto Museum of Art ęø‹č°·åŒŗē«‹ę¾ę¶›ē¾Žč”“é¤Ø'),
(76708, 'https://ror.org/020rcsj15', 'en', 1, 'https://ror.org/020rcsj15 Port of Antwerp'),
(76709, 'https://ror.org/020sb4167', 'en', 1, 'https://ror.org/020sb4167 Environmental Construction College åå¤å±‹ē’°å¢ƒå»ŗčØ­å°‚é–€å­¦ę ”'),
(76710, 'https://ror.org/020swhw58', 'en', 1, 'https://ror.org/020swhw58 Insight Healthcare'),
(76711, 'https://ror.org/020tn0052', 'no_lang_code', 1, 'https://ror.org/020tn0052 LeikTec (Slovakia)'),
(76712, 'https://ror.org/020tv9a29', 'no_lang_code', 1, 'https://ror.org/020tv9a29 New Century Pharmaceuticals (United States)'),
(76713, 'https://ror.org/020v2kg51', 'en', 1, 'https://ror.org/020v2kg51 Albuquerque Cat Clinic'),
(76714, 'https://ror.org/020v32r42', 'no_lang_code', 1, 'https://ror.org/020v32r42 Royal HaskoningDHV (Netherlands)'),
(76715, 'https://ror.org/020w9yc61', 'en', 1, 'https://ror.org/020w9yc61 Mianyang City Center for Disease Control and Prevention ē»µé˜³åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(76716, 'https://ror.org/020wmv155', 'no_lang_code', 1, 'https://ror.org/020wmv155 Sinocelltech Group (China) äø­å›½ē»†čƒžęŠ€ęœÆé›†å›¢ęœ‰é™å…¬åø'),
(76717, 'https://ror.org/020wsgn47', 'no_lang_code', 1, 'https://ror.org/020wsgn47 Sangi (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ć‚®'),
(76718, 'https://ror.org/020xhpf63', 'en', 1, 'https://ror.org/020xhpf63 Martinsburg VA Medical Center'),
(76719, 'https://ror.org/020z8x032', 'fr', 1, 'https://ror.org/020z8x032 Regroupement QuƩbƩcois sur les MatƩriaux de Pointe'),
(76720, 'https://ror.org/020zksa59', 'no_lang_code', 1, 'https://ror.org/020zksa59 Informacne Technologie A Konzultacie (Slovakia)'),
(76721, 'https://ror.org/0210tb741', 'de', 1, 'https://ror.org/0210tb741 Forschungsinstitut für biologischen Landbau'),
(76722, 'https://ror.org/0211zwq30', 'en', 1, 'https://ror.org/0211zwq30 Eurasia Institutes'),
(76723, 'https://ror.org/0217dn713', 'no_lang_code', 1, 'https://ror.org/0217dn713 Novanta (United States)'),
(76724, 'https://ror.org/0217hsv85', 'no_lang_code', 1, 'https://ror.org/0217hsv85 Piolax (Japan)'),
(76725, 'https://ror.org/0218d9s98', 'en', 1, 'https://ror.org/0218d9s98 Louis A. Johnson VA Medical Center'),
(76726, 'https://ror.org/0218xmz21', 'en', 1, 'https://ror.org/0218xmz21 Shenzhen Chronic Disease Prevention Center ę·±åœ³åø‚ę…¢ę€§ē—…é˜²ę²»äø­åæƒ');
INSERT INTO `rors` VALUES
(76727, 'https://ror.org/021933p29', 'no_lang_code', 1, 'https://ror.org/021933p29 RUA Life Sciences (United Kingdom)'),
(76728, 'https://ror.org/021a1jy10', 'no_lang_code', 1, 'https://ror.org/021a1jy10 Amicrobe (United States)'),
(76729, 'https://ror.org/021ap3951', 'en', 1, 'https://ror.org/021ap3951 Institute of Business Leadership'),
(76730, 'https://ror.org/021fq8s19', 'en', 1, 'https://ror.org/021fq8s19 The Japanese Society of Gastroenterological Surgery ę—„ęœ¬ę¶ˆåŒ–å™Øå¤–ē§‘å­¦ä¼š'),
(76731, 'https://ror.org/021gh4f04', 'no_lang_code', 1, 'https://ror.org/021gh4f04 Pola Chemical Industries (Japan)'),
(76732, 'https://ror.org/021jpad90', 'en', 1, 'https://ror.org/021jpad90 General Administration of Sport of China 国家体育总局'),
(76733, 'https://ror.org/021n4pk58', 'en', 1, 'https://ror.org/021n4pk58 Hangzhou Women’s Hospital ę­å·žåø‚å¦‡ē§‘åŒ»é™¢'),
(76734, 'https://ror.org/021pfvj84', 'no_lang_code', 1, 'https://ror.org/021pfvj84 Refocus Group (United States)'),
(76735, 'https://ror.org/021pgbe15', 'no_lang_code', 1, 'https://ror.org/021pgbe15 hySolutions (Germany)'),
(76736, 'https://ror.org/021qr1j12', 'no_lang_code', 1, 'https://ror.org/021qr1j12 Institut für Innovative Technologien (Germany)'),
(76737, 'https://ror.org/021rk6547', 'en', 1, 'https://ror.org/021rk6547 Erie VA Medical Center'),
(76738, 'https://ror.org/021svyy15', 'no_lang_code', 1, 'https://ror.org/021svyy15 Yaso Therapeutics (United States)'),
(76739, 'https://ror.org/021t5ek61', 'en', 1, 'https://ror.org/021t5ek61 Kushiro City Museum é‡§č·Æåø‚ē«‹åšē‰©é¤Ø'),
(76740, 'https://ror.org/021xt9947', 'no_lang_code', 1, 'https://ror.org/021xt9947 Polymer Exploration Group (United States)'),
(76741, 'https://ror.org/021yrfn07', 'no_lang_code', 1, 'https://ror.org/021yrfn07 Geothermie Neubrandenburg (Germany)'),
(76742, 'https://ror.org/021zpak95', 'en', 1, 'https://ror.org/021zpak95 Ayurvet Research Foundation'),
(76743, 'https://ror.org/0220ewf20', 'en', 1, 'https://ror.org/0220ewf20 Shandong Coalfield Geological Planning and Investigation Institute'),
(76744, 'https://ror.org/0220pa788', 'de', 1, 'https://ror.org/0220pa788 Verein für Psychosoziale Initiativen'),
(76745, 'https://ror.org/0220w7a74', 'fr', 1, 'https://ror.org/0220w7a74 Centre D''analyse et de Recherche sur les Politiques Economiques et Sociales du Cameroun'),
(76746, 'https://ror.org/02255bn64', 'en', 1, 'https://ror.org/02255bn64 Penang Development Corporation Perbadanan Pembangunan Pulau Pinang'),
(76747, 'https://ror.org/0225a5s12', 'en', 1, 'https://ror.org/0225a5s12 Collaborative Innovation Center of Chemical Science and Engineering Tianjin å¤©ę“„åŒ–å­¦åŒ–å·„ååŒåˆ›ę–°äø­åæƒ'),
(76748, 'https://ror.org/0225qq424', 'no_lang_code', 1, 'https://ror.org/0225qq424 Nippon Suisan Kaisha (Japan) ę—„ęœ¬ę°“ē”£ę Ŗå¼ä¼šē¤¾'),
(76749, 'https://ror.org/0226qmh36', 'en', 1, 'https://ror.org/0226qmh36 Ishigaki City Library ēŸ³åž£åø‚ē«‹å›³ę›øé¤Ø'),
(76750, 'https://ror.org/022869t47', 'no_lang_code', 1, 'https://ror.org/022869t47 Museum of SpiÅ”'),
(76751, 'https://ror.org/02291hh73', 'en', 1, 'https://ror.org/02291hh73 National Supercomputing Center in Shenzhen å›½å®¶č¶…ēŗ§č®”ē®—ę·±åœ³äø­åæƒ'),
(76752, 'https://ror.org/0229amj70', 'no_lang_code', 1, 'https://ror.org/0229amj70 Drive-CarSharing (Germany)'),
(76753, 'https://ror.org/0229jz197', 'en', 1, 'https://ror.org/0229jz197 Technologies for Safe and Efficient Transportation'),
(76754, 'https://ror.org/0229pbn48', 'en', 1, 'https://ror.org/0229pbn48 Guangxi Open University 广脿开放大学'),
(76755, 'https://ror.org/0229w9h56', 'no_lang_code', 1, 'https://ror.org/0229w9h56 Aurum Biosciences (United Kingdom)'),
(76756, 'https://ror.org/022a7nh32', 'en', 1, 'https://ror.org/022a7nh32 Chisholm Institute'),
(76757, 'https://ror.org/022ca9x91', 'en', 1, 'https://ror.org/022ca9x91 Islamic Azad University, Shahr-e-Qods Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓهر قدس'),
(76758, 'https://ror.org/022cmsc90', 'en', 1, 'https://ror.org/022cmsc90 The CART Fund'),
(76759, 'https://ror.org/022ezeq21', 'no_lang_code', 1, 'https://ror.org/022ezeq21 ADMED (Switzerland) Analyses et Diagnostics Medicaux'),
(76760, 'https://ror.org/022fy9g59', 'en', 1, 'https://ror.org/022fy9g59 Hefei Infectious Disease Hospital åˆč‚„åø‚ä¼ ęŸ“ē—…åŒ»é™¢'),
(76761, 'https://ror.org/022kt1284', 'en', 1, 'https://ror.org/022kt1284 West Texas VA Health Care System'),
(76762, 'https://ror.org/022nfrj09', 'no_lang_code', 1, 'https://ror.org/022nfrj09 Aspect Imaging (Israel)'),
(76763, 'https://ror.org/022nx3d63', 'no_lang_code', 1, 'https://ror.org/022nx3d63 Savari (United States)'),
(76764, 'https://ror.org/022pvsb81', 'no_lang_code', 1, 'https://ror.org/022pvsb81 Ascendis Pharma (Denmark)'),
(76765, 'https://ror.org/022pwfx49', 'no_lang_code', 1, 'https://ror.org/022pwfx49 SMART Global Holdings (United States)'),
(76766, 'https://ror.org/022s2hx60', 'no_lang_code', 1, 'https://ror.org/022s2hx60 Kebotix (United States)'),
(76767, 'https://ror.org/022sm0j70', 'en', 1, 'https://ror.org/022sm0j70 Chartered Institute of Arbitrators'),
(76768, 'https://ror.org/022v8s261', 'en', 1, 'https://ror.org/022v8s261 Province of Antwerp Provincie Antwerpen'),
(76769, 'https://ror.org/022vzqd83', 'en', 1, 'https://ror.org/022vzqd83 Elemental Excelerator'),
(76770, 'https://ror.org/022zx1s80', 'en', 1, 'https://ror.org/022zx1s80 DuPage Health Coalition'),
(76771, 'https://ror.org/023098y68', 'no_lang_code', 1, 'https://ror.org/023098y68 Rubicon Technology (United States)'),
(76772, 'https://ror.org/0230dw403', 'no_lang_code', 1, 'https://ror.org/0230dw403 CrossRoads Extremity Systems (United States)'),
(76773, 'https://ror.org/0230s3k26', 'en', 1, 'https://ror.org/0230s3k26 METRANS Transportation Center'),
(76774, 'https://ror.org/0232kgx22', 'en', 1, 'https://ror.org/0232kgx22 Transportation Research Center for Livable Communities'),
(76775, 'https://ror.org/0234p1g56', 'no_lang_code', 1, 'https://ror.org/0234p1g56 Kurz (Germany)'),
(76776, 'https://ror.org/0234ye373', 'no_lang_code', 1, 'https://ror.org/0234ye373 Qubitekk (United States)'),
(76777, 'https://ror.org/0235bes35', 'no_lang_code', 1, 'https://ror.org/0235bes35 Coventry & Warwickshire Local Enterprise Partnership (United Kingdom)'),
(76778, 'https://ror.org/0238awh09', 'no_lang_code', 1, 'https://ror.org/0238awh09 UNE Partnerships (Australia)'),
(76779, 'https://ror.org/0238gcb09', 'en', 1, 'https://ror.org/0238gcb09 Qianjiang Central Hospital ę½œę±Ÿåø‚äø­åæƒåŒ»é™¢'),
(76780, 'https://ror.org/0239xwa13', 'no_lang_code', 1, 'https://ror.org/0239xwa13 Helvetica Exploration Services (Switzerland)'),
(76781, 'https://ror.org/023aqyp35', 'no_lang_code', 1, 'https://ror.org/023aqyp35 SihuanPharm (China)'),
(76782, 'https://ror.org/023aw9j89', 'en', 1, 'https://ror.org/023aw9j89 Agency for Quality Assurance and Accreditation Austria Agentur für Qualitätssicherung und Akkreditierung Austria'),
(76783, 'https://ror.org/023b5wj08', 'no_lang_code', 1, 'https://ror.org/023b5wj08 SeaSpine (United States)'),
(76784, 'https://ror.org/023bt3h76', 'no_lang_code', 1, 'https://ror.org/023bt3h76 Galapagos (France)'),
(76785, 'https://ror.org/023d46310', 'en', 1, 'https://ror.org/023d46310 Institut Input'),
(76786, 'https://ror.org/023dqar74', 'en', 1, 'https://ror.org/023dqar74 Intelligent Synthetic Biology Center ģ§€ėŠ„ķ˜• ė°”ģ“ģ˜¤ģ‹œģŠ¤ķ…œ 설계 ė° 합성 연구단'),
(76787, 'https://ror.org/023ec5d95', 'no_lang_code', 1, 'https://ror.org/023ec5d95 Akademie Überlingen (Germany)'),
(76788, 'https://ror.org/023f8av81', 'en', 1, 'https://ror.org/023f8av81 Gansu Coalfield Geology Bureau ē”˜č‚ƒē…¤ē”°åœ°č“Øå±€'),
(76789, 'https://ror.org/023g9jn96', 'no_lang_code', 1, 'https://ror.org/023g9jn96 Fumakilla (Japan) ćƒ•ćƒžć‚­ćƒ©ćƒ¼'),
(76790, 'https://ror.org/023m36v90', 'no_lang_code', 1, 'https://ror.org/023m36v90 Family Inada (Japan) ćƒ•ć‚”ćƒŸćƒŖćƒ¼ć‚¤ćƒŠćƒ€ę Ŗå¼ä¼šē¤¾'),
(76791, 'https://ror.org/023nd1r80', 'en', 1, 'https://ror.org/023nd1r80 International Council on Education for Teaching'),
(76792, 'https://ror.org/023s2h905', 'no_lang_code', 1, 'https://ror.org/023s2h905 JGC (Japan) ę—„ę®ę Ŗå¼ä¼šē¤¾'),
(76793, 'https://ror.org/023s4zc74', 'no_lang_code', 1, 'https://ror.org/023s4zc74 Mayne Pharma (Australia)'),
(76794, 'https://ror.org/023sm4k53', 'en', 1, 'https://ror.org/023sm4k53 Department of Physics, Mathematics and Informatics ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ фізікі, Š¼Š°Ń‚ŃŠ¼Š°Ń‚Ń‹ŠŗŃ– і інфарматыкі'),
(76795, 'https://ror.org/023teqr16', 'en', 1, 'https://ror.org/023teqr16 Parenting Research Centre'),
(76796, 'https://ror.org/023wh8b50', 'en', 1, 'https://ror.org/023wh8b50 Public Health Scotland'),
(76797, 'https://ror.org/023wtw779', 'no_lang_code', 1, 'https://ror.org/023wtw779 Vektrex (United States)'),
(76798, 'https://ror.org/023y2na82', 'en', 1, 'https://ror.org/023y2na82 Human Fertilisation and Embryology Authority'),
(76799, 'https://ror.org/023yhem40', 'no_lang_code', 1, 'https://ror.org/023yhem40 Materialprüfungsamt NRW (Germany)'),
(76800, 'https://ror.org/0240nmn85', 'en', 1, 'https://ror.org/0240nmn85 Veterinary Biological and Research Institute'),
(76801, 'https://ror.org/0241de231', 'no_lang_code', 1, 'https://ror.org/0241de231 Burcon (Canada)'),
(76802, 'https://ror.org/0241kq529', 'no_lang_code', 1, 'https://ror.org/0241kq529 Aquanova (Germany)'),
(76803, 'https://ror.org/0244stc74', 'no_lang_code', 1, 'https://ror.org/0244stc74 Koh Young Technology (South Korea)'),
(76804, 'https://ror.org/0247phc34', 'en', 1, 'https://ror.org/0247phc34 Rwanda Development Board'),
(76805, 'https://ror.org/02488qf25', 'en', 1, 'https://ror.org/02488qf25 Metropolitan International University'),
(76806, 'https://ror.org/0248a9217', 'no_lang_code', 1, 'https://ror.org/0248a9217 Premier Dental Products (United States)'),
(76807, 'https://ror.org/0249hbq40', 'no_lang_code', 1, 'https://ror.org/0249hbq40 WestMountain Asset Management (United States)'),
(76808, 'https://ror.org/0249xx705', 'en', 1, 'https://ror.org/0249xx705 Reef Ecologic'),
(76809, 'https://ror.org/024e1fw78', 'de', 1, 'https://ror.org/024e1fw78 Institut für Polymerwerkstoffe'),
(76810, 'https://ror.org/024g3yp89', 'no_lang_code', 1, 'https://ror.org/024g3yp89 FGP (Italy)'),
(76811, 'https://ror.org/024gk5m97', 'en', 1, 'https://ror.org/024gk5m97 Institut für nachhaltige Berufsbildung & Management-Services Institute for Sustainable TVET & Management Services'),
(76812, 'https://ror.org/024hp8310', 'no_lang_code', 1, 'https://ror.org/024hp8310 Radix (United States)'),
(76813, 'https://ror.org/024hvm870', 'en', 1, 'https://ror.org/024hvm870 Japan Electronics College ę—„ęœ¬é›»å­å°‚é–€å­¦ę ”'),
(76814, 'https://ror.org/024kjmj54', 'no_lang_code', 1, 'https://ror.org/024kjmj54 Medtrade (United Kingdom)'),
(76815, 'https://ror.org/024kstn81', 'no_lang_code', 1, 'https://ror.org/024kstn81 Bentley Systems (United States)'),
(76816, 'https://ror.org/024pse488', 'en', 1, 'https://ror.org/024pse488 Systems Engineering Society of China äø­å›½ē³»ē»Ÿå·„ēØ‹å­¦ä¼š'),
(76817, 'https://ror.org/024s0ye18', 'no_lang_code', 1, 'https://ror.org/024s0ye18 Conformis (United States)'),
(76818, 'https://ror.org/024we4p93', 'en', 1, 'https://ror.org/024we4p93 Rustaq College of Education ŁƒŁ„ŁŠŲ© Ų§Ł„ŲŖŲ±ŲØŁŠŲ© بالرستاق'),
(76819, 'https://ror.org/024wm7g15', 'no_lang_code', 1, 'https://ror.org/024wm7g15 Zdye (United States)'),
(76820, 'https://ror.org/024xp9k29', 'en', 1, 'https://ror.org/024xp9k29 Fujian Institute of Education ē¦å»ŗę•™č‚²å­¦é™¢'),
(76821, 'https://ror.org/024y05r39', 'no_lang_code', 1, 'https://ror.org/024y05r39 Parabilis Space Technologies (United States)'),
(76822, 'https://ror.org/024zcda42', 'no_lang_code', 1, 'https://ror.org/024zcda42 National Institutes of Pharmaceutical Research and Development (China) äø­å›½åŒ»čÆē ”ē©¶å¼€å‘äø­åæƒęœ‰é™å…¬åø'),
(76823, 'https://ror.org/02502ye72', 'no_lang_code', 1, 'https://ror.org/02502ye72 Kode Biotech (New Zealand)'),
(76824, 'https://ror.org/0251rms11', 'no_lang_code', 1, 'https://ror.org/0251rms11 ScinoPharm Taiwan (Taiwan) å°ē£ē„žéš†č‚”ä»½ęœ‰é™å…¬åø'),
(76825, 'https://ror.org/0252vn140', 'en', 1, 'https://ror.org/0252vn140 Center for Collaborative Interdisciplinary Sciences'),
(76826, 'https://ror.org/02538qk16', 'no_lang_code', 1, 'https://ror.org/02538qk16 Wisdom Health (United States)'),
(76827, 'https://ror.org/0258gkt32', 'en', 1, 'https://ror.org/0258gkt32 Mohamed bin Zayed University of Artificial Intelligence Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ بن زايد Ł„Ł„Ų°ŁƒŲ§Ų” Ų§Ł„Ų§ŲµŲ·Ł†Ų§Ų¹ŁŠ'),
(76828, 'https://ror.org/0259nbs47', 'no_lang_code', 1, 'https://ror.org/0259nbs47 ASYS Group (Germany) Asys Automatisierungssysteme'),
(76829, 'https://ror.org/0259rff80', 'no_lang_code', 1, 'https://ror.org/0259rff80 Manav Vikas Evam Sewa Sansthan'),
(76830, 'https://ror.org/025cs2j58', 'en', 1, 'https://ror.org/025cs2j58 Carl Vinson VA Medical Center'),
(76831, 'https://ror.org/025e41905', 'no_lang_code', 1, 'https://ror.org/025e41905 Diatex (France)'),
(76832, 'https://ror.org/025frdg11', 'en', 1, 'https://ror.org/025frdg11 Institut für sozialwissenschaftliche Beratung Institute for Socio-Scientific Consultancy'),
(76833, 'https://ror.org/025g1ff13', 'no_lang_code', 1, 'https://ror.org/025g1ff13 Shifamed (United States)'),
(76834, 'https://ror.org/025mr0m62', 'en', 1, 'https://ror.org/025mr0m62 NEADS World Class Service Dogs Change'),
(76835, 'https://ror.org/025my6r54', 'de', 1, 'https://ror.org/025my6r54 Landeskriminalamt Niedersachsen'),
(76836, 'https://ror.org/025nbs755', 'de', 1, 'https://ror.org/025nbs755 Gisela Vogel Institut für berufliche Bildung'),
(76837, 'https://ror.org/025qsj431', 'en', 1, 'https://ror.org/025qsj431 Bozhou People''s Hospital äŗ³å·žåø‚äŗŗę°‘åŒ»é™¢'),
(76838, 'https://ror.org/025v27q25', 'no_lang_code', 1, 'https://ror.org/025v27q25 Vegum (Slovakia)'),
(76839, 'https://ror.org/025y41g72', 'no_lang_code', 1, 'https://ror.org/025y41g72 Nagase ChemteX (Japan) ćƒŠć‚¬ć‚»ć‚±ćƒ ćƒ†ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(76840, 'https://ror.org/025zpy585', 'no_lang_code', 1, 'https://ror.org/025zpy585 Chemnitzer Werkstoffmechanik GmbH (Germany)'),
(76841, 'https://ror.org/02626d994', 'no_lang_code', 1, 'https://ror.org/02626d994 Edan (China)'),
(76842, 'https://ror.org/026374683', 'no_lang_code', 1, 'https://ror.org/026374683 Forschungs- und Applikationslabor Plasmatechnik (Germany)'),
(76843, 'https://ror.org/0263fkh30', 'no_lang_code', 1, 'https://ror.org/0263fkh30 Forma Therapeutics (United States)'),
(76844, 'https://ror.org/0263r2546', 'en', 1, 'https://ror.org/0263r2546 Fraunhofer Center for Applied Research on Supply Chain Services Fraunhofer-Arbeitsgruppe für Supply Chain Services'),
(76845, 'https://ror.org/0264gw370', 'en', 1, 'https://ror.org/0264gw370 Guangdong Institute for Drug Control å¹æäøœēœčÆå“ę£€éŖŒę‰€'),
(76846, 'https://ror.org/0264ncd87', 'no_lang_code', 1, 'https://ror.org/0264ncd87 Comeb (Italy)'),
(76847, 'https://ror.org/0268fey62', 'en', 1, 'https://ror.org/0268fey62 Chiba Prefectural Agriculture and Forestry Research Center Forest Research Institute åƒč‘‰ēœŒč¾²ęž—ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼ę£®ęž—ē ”ē©¶ę‰€'),
(76848, 'https://ror.org/02696ac72', 'en', 1, 'https://ror.org/02696ac72 Center for Indonesian Policy Studies'),
(76849, 'https://ror.org/026cbjd11', 'no_lang_code', 1, 'https://ror.org/026cbjd11 Zobele (Spain)'),
(76850, 'https://ror.org/026ck6f55', 'no_lang_code', 1, 'https://ror.org/026ck6f55 Versitech (United States)'),
(76851, 'https://ror.org/026eeyk15', 'no', 1, 'https://ror.org/026eeyk15 Fjellhaug Internasjonale HĆøgskole Fjellhaug International University College'),
(76852, 'https://ror.org/026gp9a94', 'en', 1, 'https://ror.org/026gp9a94 District Heating Research Institute FernwƤrme-Forschungsinstitut'),
(76853, 'https://ror.org/026h4ma68', 'en', 1, 'https://ror.org/026h4ma68 Atlanta University Center Robert W. Woodruff Library'),
(76854, 'https://ror.org/026kzh194', 'no_lang_code', 1, 'https://ror.org/026kzh194 Swallow Solutions (United States)'),
(76855, 'https://ror.org/026q2n359', 'no_lang_code', 1, 'https://ror.org/026q2n359 Molecular Microbiology and Genomics Consultants (Germany)'),
(76856, 'https://ror.org/026stee22', 'en', 1, 'https://ror.org/026stee22 Max Planck Institute of Animal Behavior Max-Planck-Institut für Verhaltensbiologie'),
(76857, 'https://ror.org/026t5rk78', 'en', 1, 'https://ror.org/026t5rk78 National Center for Intermodal Transportation'),
(76858, 'https://ror.org/026znxe07', 'en', 1, 'https://ror.org/026znxe07 Energy Safety Research Institute'),
(76859, 'https://ror.org/026zv7h71', 'de', 1, 'https://ror.org/026zv7h71 TUMAINI-Institut für Präventionsmanagement'),
(76860, 'https://ror.org/02707gg79', 'en', 1, 'https://ror.org/02707gg79 IŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізичної оптики iменi Šž. Š“. Влоха Vlokh Institute of Physical Optics'),
(76861, 'https://ror.org/0272z3408', 'no_lang_code', 1, 'https://ror.org/0272z3408 Relievant Medsystem (United States)'),
(76862, 'https://ror.org/027327e78', 'en', 1, 'https://ror.org/027327e78 Conquer Cancer Foundation'),
(76863, 'https://ror.org/02758ch83', 'en', 1, 'https://ror.org/02758ch83 Alaska Wildlife Alliance'),
(76864, 'https://ror.org/0275t9a95', 'no_lang_code', 1, 'https://ror.org/0275t9a95 Suss Microoptics (Switzerland) SÜSS MicroOptics'),
(76865, 'https://ror.org/0276bkt19', 'en', 1, 'https://ror.org/0276bkt19 National Public Health Laboratory'),
(76866, 'https://ror.org/0277khs39', 'no_lang_code', 1, 'https://ror.org/0277khs39 ElFys (Finland)'),
(76867, 'https://ror.org/0277pjz21', 'en', 1, 'https://ror.org/0277pjz21 Radio, Film & TV Design and Research Institute'),
(76868, 'https://ror.org/0278qhr30', 'en', 1, 'https://ror.org/0278qhr30 Northlake Behavioral Health System'),
(76869, 'https://ror.org/0279hx849', 'no_lang_code', 1, 'https://ror.org/0279hx849 optX Imaging Systems (United States)'),
(76870, 'https://ror.org/027axbt27', 'en', 1, 'https://ror.org/027axbt27 Canadian Quantum Research Center'),
(76871, 'https://ror.org/027b3vh68', 'no_lang_code', 1, 'https://ror.org/027b3vh68 Appili Therapeutics (Canada)'),
(76872, 'https://ror.org/027b5pf36', 'no_lang_code', 1, 'https://ror.org/027b5pf36 True (United States)'),
(76873, 'https://ror.org/027d68d71', 'de', 1, 'https://ror.org/027d68d71 Pestel Institut'),
(76874, 'https://ror.org/027dj9r35', 'no_lang_code', 1, 'https://ror.org/027dj9r35 COLAS Slovakia (Slovakia)'),
(76875, 'https://ror.org/027etx825', 'no_lang_code', 1, 'https://ror.org/027etx825 Imerys (France)'),
(76876, 'https://ror.org/027h3dg90', 'no_lang_code', 1, 'https://ror.org/027h3dg90 InferVision (China)'),
(76877, 'https://ror.org/027h6z252', 'it', 1, 'https://ror.org/027h6z252 Agenzia Regionale Sanitaria della Puglia'),
(76878, 'https://ror.org/027hpkn10', 'no_lang_code', 1, 'https://ror.org/027hpkn10 Apogee Semiconductor (United States)'),
(76879, 'https://ror.org/027jdb025', 'pt', 1, 'https://ror.org/027jdb025 Instituto Argonauta'),
(76880, 'https://ror.org/027jnbj33', 'no_lang_code', 1, 'https://ror.org/027jnbj33 Allwinner Technology (China) å…Øåæ—'),
(76881, 'https://ror.org/027mwd906', 'en', 1, 'https://ror.org/027mwd906 DEUTSCHES ZENTRUM DES INTERNATIONALEN THEATERINSTITUTS German Centre of the International Theatre Institute'),
(76882, 'https://ror.org/027przv47', 'en', 1, 'https://ror.org/027przv47 Flemish Parliament FlƤmisches Parlament Parlement Flamand Vlaams Parlement'),
(76883, 'https://ror.org/027vtzk17', 'no_lang_code', 1, 'https://ror.org/027vtzk17 DeRoyal (United States)'),
(76884, 'https://ror.org/027wbjg72', 'en', 1, 'https://ror.org/027wbjg72 Johann Adam Mƶhler Institute for Ecumenism Johann-Adam-Mƶhler-Institut für Ɩkumenik'),
(76885, 'https://ror.org/027xaw831', 'no_lang_code', 1, 'https://ror.org/027xaw831 SafelyYou (United States)'),
(76886, 'https://ror.org/027ya7x98', 'no_lang_code', 1, 'https://ror.org/027ya7x98 Systemech (United States)'),
(76887, 'https://ror.org/027ya8962', 'en', 1, 'https://ror.org/027ya8962 Anthrologica'),
(76888, 'https://ror.org/027z9pz32', 'en', 1, 'https://ror.org/027z9pz32 The SILVA Ribosomal RNA Database Project'),
(76889, 'https://ror.org/027zp1m72', 'de', 1, 'https://ror.org/027zp1m72 Planetarium Bochum'),
(76890, 'https://ror.org/027zp7q69', 'en', 1, 'https://ror.org/027zp7q69 Kagoshima City Aquarium Foundation å…¬ē›Šč²”å›£ę³•äŗŗ é¹æå…å³¶åø‚ę°“ę—é¤Øå…¬ē¤¾'),
(76891, 'https://ror.org/02807xv41', 'no_lang_code', 1, 'https://ror.org/02807xv41 Scripps Laboratories (United States)'),
(76892, 'https://ror.org/0280bnq76', 'en', 1, 'https://ror.org/0280bnq76 Center for Research in Molecular Medicine and Chronic Diseases Centro singular de investigación de Galicia'),
(76893, 'https://ror.org/0281ff903', 'no_lang_code', 1, 'https://ror.org/0281ff903 Terason (United States)'),
(76894, 'https://ror.org/0281t1271', 'de', 1, 'https://ror.org/0281t1271 Deutscher Energieholz- und Pellet-Verband'),
(76895, 'https://ror.org/0282sdt33', 'fr', 1, 'https://ror.org/0282sdt33 African University For Cooperative Development UniversitƩ Africaine de DƩveloppement CoopƩratif'),
(76896, 'https://ror.org/0284j4180', 'en', 1, 'https://ror.org/0284j4180 Global Antibiotic Research & Development Partnership'),
(76897, 'https://ror.org/0284sm129', 'no_lang_code', 1, 'https://ror.org/0284sm129 SysLogic (United States)'),
(76898, 'https://ror.org/02863ez16', 'en', 1, 'https://ror.org/02863ez16 Toyama Science Museum åÆŒå±±åø‚ē§‘å­¦åšē‰©é¤Ø'),
(76899, 'https://ror.org/0286azq87', 'de', 1, 'https://ror.org/0286azq87 Institut für kybernetisches Planen und Bauen'),
(76900, 'https://ror.org/0286p0f76', 'no_lang_code', 1, 'https://ror.org/0286p0f76 KemPharm (United States)'),
(76901, 'https://ror.org/0288kcc12', 'no_lang_code', 1, 'https://ror.org/0288kcc12 Pixium Vision (France)'),
(76902, 'https://ror.org/0288rsm64', 'no_lang_code', 1, 'https://ror.org/0288rsm64 Materialise (United Kingdom)'),
(76903, 'https://ror.org/02895kk89', 'en', 1, 'https://ror.org/02895kk89 Jiangxi Chest Hospital ę±Ÿč„æēœčƒøē§‘åŒ»é™¢'),
(76904, 'https://ror.org/028ap6052', 'en', 1, 'https://ror.org/028ap6052 Institute of Animal Biology NAAS Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біології тварин ŠŠŠŠ'),
(76905, 'https://ror.org/028c6av56', 'no_lang_code', 1, 'https://ror.org/028c6av56 Aroma Marketing (Slovakia)'),
(76906, 'https://ror.org/028c7mm22', 'no_lang_code', 1, 'https://ror.org/028c7mm22 Delmar (Canada)'),
(76907, 'https://ror.org/028f0h308', 'en', 1, 'https://ror.org/028f0h308 Department of Animal Husbandry and Veterinary'),
(76908, 'https://ror.org/028fy7q25', 'en', 1, 'https://ror.org/028fy7q25 Botanical Society of China äø­å›½ę¤ē‰©å­¦ä¼š'),
(76909, 'https://ror.org/028gkba61', 'no_lang_code', 1, 'https://ror.org/028gkba61 Lyell Immunopharma (United States)'),
(76910, 'https://ror.org/028mbb924', 'en', 1, 'https://ror.org/028mbb924 North American Renderers Association'),
(76911, 'https://ror.org/028nwg363', 'de', 1, 'https://ror.org/028nwg363 Landesforst Mecklenburg‑Vorpommern'),
(76912, 'https://ror.org/028q4wx16', 'en', 1, 'https://ror.org/028q4wx16 Association for Environmental Health and Sciences Foundation'),
(76913, 'https://ror.org/028t9y815', 'en', 1, 'https://ror.org/028t9y815 German Coastal Engineering Research Council Kuratorium für Forschung im Küsteningenieurwesen'),
(76914, 'https://ror.org/028tnj023', 'de', 1, 'https://ror.org/028tnj023 Stiftung Warentest'),
(76915, 'https://ror.org/028vcv574', 'no_lang_code', 1, 'https://ror.org/028vcv574 Seqirus (United Kingdom)'),
(76916, 'https://ror.org/028wbxx26', 'en', 1, 'https://ror.org/028wbxx26 Spinney Vets'),
(76917, 'https://ror.org/028xc6z83', 'no_lang_code', 1, 'https://ror.org/028xc6z83 SpectrumK (Germany)'),
(76918, 'https://ror.org/028xrre51', 'en', 1, 'https://ror.org/028xrre51 Qujiang People''s Hospital ę›²ę±ŸåŽæäŗŗę°‘åŒ»é™¢'),
(76919, 'https://ror.org/0291gez47', 'pt', 1, 'https://ror.org/0291gez47 Clinica De Doencas Renais De Brasilia'),
(76920, 'https://ror.org/0292bqz47', 'en', 1, 'https://ror.org/0292bqz47 World Health Organization - Jordan'),
(76921, 'https://ror.org/02943gv98', 'en', 1, 'https://ror.org/02943gv98 Sheridan VA Medical Center'),
(76922, 'https://ror.org/0294v4s84', 'en', 1, 'https://ror.org/0294v4s84 Ningbo Municipal Bureau of Ecology and Environment'),
(76923, 'https://ror.org/0294vh269', 'no_lang_code', 1, 'https://ror.org/0294vh269 Fertin Pharma (Denmark)'),
(76924, 'https://ror.org/0297zwz89', 'en', 1, 'https://ror.org/0297zwz89 Defence Materials and Stores Research and Development Establishment ą¤°ą¤•ą„ą¤·ą¤¾ ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€ ą¤ą¤‚ą¤µ ą¤­ą¤£ą„ą¤”ą¤¾ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø तऄा विकास ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾'),
(76925, 'https://ror.org/029b4kt29', 'en', 1, 'https://ror.org/029b4kt29 Livestock Breeding and Veterinary Department မွေးမြူရေးနှင့် į€€į€Æį€žį€›į€±į€ø į€¦į€øį€…į€®į€øį€Œį€¬į€”'),
(76926, 'https://ror.org/029cj7p46', 'no_lang_code', 1, 'https://ror.org/029cj7p46 Wetech (Germany)'),
(76927, 'https://ror.org/029djbz77', 'de', 1, 'https://ror.org/029djbz77 Institut für Hygiene und Umwelt'),
(76928, 'https://ror.org/029e02124', 'no_lang_code', 1, 'https://ror.org/029e02124 NoNO (Canada)'),
(76929, 'https://ror.org/029eqtm48', 'no_lang_code', 1, 'https://ror.org/029eqtm48 Cook Biotech (United States)'),
(76930, 'https://ror.org/029g9r930', 'no_lang_code', 1, 'https://ror.org/029g9r930 Adc Therapeutics (Switzerland)'),
(76931, 'https://ror.org/029gmnc79', 'en', 1, 'https://ror.org/029gmnc79 Human Technopole'),
(76932, 'https://ror.org/029hsnk78', 'en', 1, 'https://ror.org/029hsnk78 Chiba-Nishi General Hospital åƒč‘‰č„æē·åˆē—…é™¢'),
(76933, 'https://ror.org/029j07248', 'no_lang_code', 1, 'https://ror.org/029j07248 SpineThera (United States)'),
(76934, 'https://ror.org/029jf8535', 'no_lang_code', 1, 'https://ror.org/029jf8535 Tenet 3 (United States)'),
(76935, 'https://ror.org/029krwz28', 'no_lang_code', 1, 'https://ror.org/029krwz28 OrthAlign (United States)'),
(76936, 'https://ror.org/029mxk035', 'no_lang_code', 1, 'https://ror.org/029mxk035 Wuhan Youfu Hospital ę­¦ę±‰åø‚ä¼˜ęŠšåŒ»é™¢'),
(76937, 'https://ror.org/029p5cv63', 'no_lang_code', 1, 'https://ror.org/029p5cv63 Kazia Therapeutics (Australia)'),
(76938, 'https://ror.org/029pnek19', 'no_lang_code', 1, 'https://ror.org/029pnek19 Institute for Rheumatic Diseases (Japan) ę Ŗå¼ä¼šē¤¾č† åŽŸē—…ē ”ē©¶ę‰€'),
(76939, 'https://ror.org/029q69m70', 'en', 1, 'https://ror.org/029q69m70 Virtual University of Uganda'),
(76940, 'https://ror.org/029tp1n54', 'no_lang_code', 1, 'https://ror.org/029tp1n54 Institut für Arbeitswissenschaft und Unternehmensoptimierung (Germany)'),
(76941, 'https://ror.org/029tw8r50', 'no_lang_code', 1, 'https://ror.org/029tw8r50 Eyesense (Germany)'),
(76942, 'https://ror.org/029v85503', 'en', 1, 'https://ror.org/029v85503 Safer Medicines Trust'),
(76943, 'https://ror.org/029xz9y97', 'en', 1, 'https://ror.org/029xz9y97 State Council of Science Technology & Environment, Meghalaya'),
(76944, 'https://ror.org/029yvzm75', 'en', 1, 'https://ror.org/029yvzm75 Hunan Hydro&Power Design Institute ę¹–å—ę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢'),
(76945, 'https://ror.org/02a0n8d86', 'en', 1, 'https://ror.org/02a0n8d86 Saudi Arabian Monetary Authority Ł…Ų¤Ų³Ų³Ų© النقد Ų§Ł„Ų¹Ų±ŲØŁŠ Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠā€Ž'),
(76946, 'https://ror.org/02a1xcr76', 'de', 1, 'https://ror.org/02a1xcr76 Mathe im Leben'),
(76947, 'https://ror.org/02a46t946', 'en', 1, 'https://ror.org/02a46t946 The Academic Association for Contemporary European Studies'),
(76948, 'https://ror.org/02a539305', 'no_lang_code', 1, 'https://ror.org/02a539305 Shanghai Senyi Medical Technology (China)'),
(76949, 'https://ror.org/02a54nf13', 'fr', 1, 'https://ror.org/02a54nf13 Ɖcole Nationale SupĆ©rieure de Statistique et d''Ɖconomie AppliquĆ©e'),
(76950, 'https://ror.org/02a57s352', 'es', 1, 'https://ror.org/02a57s352 Centro Regional de Hemodonación'),
(76951, 'https://ror.org/02a61vy29', 'en', 1, 'https://ror.org/02a61vy29 Advanced Numerical Research and Analysis Group ą¤‰ą¤Øą„ą¤Øą„ą¤¤ ą¤…ą¤‚ą¤•ą„€ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø तऄा ą¤µą¤æą¤¶ą„ą¤²ą„‡ą¤·ą¤£ ą¤øą¤®ą„‚ą¤¹'),
(76952, 'https://ror.org/02a79n229', 'no_lang_code', 1, 'https://ror.org/02a79n229 Silk Road Medical (United States)'),
(76953, 'https://ror.org/02a82mh07', 'en', 1, 'https://ror.org/02a82mh07 Middle East Institute of Japan å…¬ē›Šč²”å›£ę³•äŗŗ äø­ę±čŖæęŸ»ä¼š'),
(76954, 'https://ror.org/02a8pvy33', 'en', 1, 'https://ror.org/02a8pvy33 Defence Institute of Psychological Research ą¤®ą¤Øą„‹ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ ą¤°ą¤•ą„ą¤·ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(76955, 'https://ror.org/02ad5vq71', 'no_lang_code', 1, 'https://ror.org/02ad5vq71 Winning Health Technology Group (China)'),
(76956, 'https://ror.org/02ae11525', 'no_lang_code', 1, 'https://ror.org/02ae11525 Biozeen (India)'),
(76957, 'https://ror.org/02ag5zv31', 'no_lang_code', 1, 'https://ror.org/02ag5zv31 Zepto (United States)'),
(76958, 'https://ror.org/02ahhqv73', 'es', 1, 'https://ror.org/02ahhqv73 Asociación Colombiana de Facultades de Ingeniería Association of Colombian Faculties of Engineering'),
(76959, 'https://ror.org/02ahp7e62', 'en', 1, 'https://ror.org/02ahp7e62 Boxing People''s Hospital åšå…“åŽæäŗŗę°‘åŒ»é™¢'),
(76960, 'https://ror.org/02aj3k144', 'no_lang_code', 1, 'https://ror.org/02aj3k144 Flight Calibration Services (Germany)'),
(76961, 'https://ror.org/02ammwv45', 'en', 1, 'https://ror.org/02ammwv45 Health Crescendos Foundation'),
(76962, 'https://ror.org/02aqk7720', 'no_lang_code', 1, 'https://ror.org/02aqk7720 Apyx Medical (United States)'),
(76963, 'https://ror.org/02aqrmp51', 'en', 1, 'https://ror.org/02aqrmp51 Austrian Red Cross Ɩsterreichisches Rotes Kreuz'),
(76964, 'https://ror.org/02aqvpe76', 'no_lang_code', 1, 'https://ror.org/02aqvpe76 Inphi (United Kingdom)'),
(76965, 'https://ror.org/02awaab90', 'no_lang_code', 1, 'https://ror.org/02awaab90 Avinger (United States)'),
(76966, 'https://ror.org/02awadj72', 'no_lang_code', 1, 'https://ror.org/02awadj72 Volk (United States)'),
(76967, 'https://ror.org/02az5k716', 'no_lang_code', 1, 'https://ror.org/02az5k716 Insync Technology (United Kingdom)'),
(76968, 'https://ror.org/02azwm483', 'no_lang_code', 1, 'https://ror.org/02azwm483 EControl-Glas (Germany)'),
(76969, 'https://ror.org/02b08tk40', 'no_lang_code', 1, 'https://ror.org/02b08tk40 Fahrenheit (Germany)'),
(76970, 'https://ror.org/02b2enb68', 'no_lang_code', 1, 'https://ror.org/02b2enb68 Ultra Biotech (India)'),
(76971, 'https://ror.org/02b5gjr58', 'en', 1, 'https://ror.org/02b5gjr58 Vivekananda Institute of Biotechnology ą¦¬ą¦æą¦¬ą§‡ą¦•ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦¬ą¦¾ą¦Æą¦¼ą§‹ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(76972, 'https://ror.org/02b66d538', 'de', 1, 'https://ror.org/02b66d538 Institut für Regionalmanagement'),
(76973, 'https://ror.org/02b68c504', 'no_lang_code', 1, 'https://ror.org/02b68c504 Eurostep (United Kingdom)'),
(76974, 'https://ror.org/02b6vt253', 'no_lang_code', 1, 'https://ror.org/02b6vt253 Probus (United States)'),
(76975, 'https://ror.org/02b790a63', 'en', 1, 'https://ror.org/02b790a63 Institute of Computer Vision and Applied Computer Sciences'),
(76976, 'https://ror.org/02b7wb227', 'de', 1, 'https://ror.org/02b7wb227 Feuerwehr Dortmund'),
(76977, 'https://ror.org/02bf7eh36', 'no_lang_code', 1, 'https://ror.org/02bf7eh36 Finnvera (Finland)'),
(76978, 'https://ror.org/02bfx2y10', 'de', 1, 'https://ror.org/02bfx2y10 Innovationstransfer- und Forschungsinstitut Schwerin'),
(76979, 'https://ror.org/02bh52216', 'no_lang_code', 1, 'https://ror.org/02bh52216 SeNA Research (United States)'),
(76980, 'https://ror.org/02bh93636', 'no_lang_code', 1, 'https://ror.org/02bh93636 Holtzbrinck Publishing Group (Germany)'),
(76981, 'https://ror.org/02bhkz014', 'no_lang_code', 1, 'https://ror.org/02bhkz014 Redwood Scientific (United States)'),
(76982, 'https://ror.org/02bjbg379', 'no_lang_code', 1, 'https://ror.org/02bjbg379 Schunk (United Kingdom)'),
(76983, 'https://ror.org/02bjkqr85', 'en', 1, 'https://ror.org/02bjkqr85 Office of Science and Technology Policy'),
(76984, 'https://ror.org/02bjrj215', 'en', 1, 'https://ror.org/02bjrj215 Uganda Petroleum Institute'),
(76985, 'https://ror.org/02bk51c93', 'no_lang_code', 1, 'https://ror.org/02bk51c93 Südzucker (Germany)'),
(76986, 'https://ror.org/02bkncc34', 'en', 1, 'https://ror.org/02bkncc34 The Egyptian Society of Hematology and Research Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© لأمراض الدم ŁˆŲ§Ł„ŲØŲ­ŁˆŲ«'),
(76987, 'https://ror.org/02bkvx667', 'en', 1, 'https://ror.org/02bkvx667 Research ICT Africa'),
(76988, 'https://ror.org/02bm0dv51', 'no_lang_code', 1, 'https://ror.org/02bm0dv51 Way Industries (Slovakia)'),
(76989, 'https://ror.org/02bph6v17', 'no_lang_code', 1, 'https://ror.org/02bph6v17 Deerfield (United States)'),
(76990, 'https://ror.org/02bvn3590', 'no_lang_code', 1, 'https://ror.org/02bvn3590 Soliculture (United States)'),
(76991, 'https://ror.org/02bxpm650', 'en', 1, 'https://ror.org/02bxpm650 South African Institute of International Affairs'),
(76992, 'https://ror.org/02by6tw17', 'no_lang_code', 1, 'https://ror.org/02by6tw17 APC Europe (Spain)'),
(76993, 'https://ror.org/02c05kw86', 'de', 1, 'https://ror.org/02c05kw86 Landwirtschaftlichen Zentrums Baden-Württemberg​'),
(76994, 'https://ror.org/02c0bjd31', 'en', 1, 'https://ror.org/02c0bjd31 scidecode science consulting & research'),
(76995, 'https://ror.org/02c3crq07', 'no_lang_code', 1, 'https://ror.org/02c3crq07 RHK Technology (United States)'),
(76996, 'https://ror.org/02c3keg48', 'sk', 1, 'https://ror.org/02c3keg48 AsociƔcia Doktorandov Slovenska'),
(76997, 'https://ror.org/02c4jmw40', 'no_lang_code', 1, 'https://ror.org/02c4jmw40 Convalife (China)'),
(76998, 'https://ror.org/02c585m74', 'de', 1, 'https://ror.org/02c585m74 Behörde für Wissenschaft, Forschung und Gleichstellung'),
(76999, 'https://ror.org/02c592745', 'en', 1, 'https://ror.org/02c592745 Virginia Department of Veterans Services'),
(77000, 'https://ror.org/02c5r0c23', 'no_lang_code', 1, 'https://ror.org/02c5r0c23 Sedecal Medical Imaging (Spain)'),
(77001, 'https://ror.org/02c7r5h24', 'no_lang_code', 1, 'https://ror.org/02c7r5h24 Sen-oku HakukoKan Museum ę³‰å±‹åšå¤é¤Ø'),
(77002, 'https://ror.org/02c8ew317', 'en', 1, 'https://ror.org/02c8ew317 Chinese Society for Plant Pathology äø­å›½ę¤ē‰©ē—…ē†å­¦ä¼š'),
(77003, 'https://ror.org/02c9ess02', 'no_lang_code', 1, 'https://ror.org/02c9ess02 CTL Amedica (United States)'),
(77004, 'https://ror.org/02c9ets03', 'no_lang_code', 1, 'https://ror.org/02c9ets03 PiDust Quantum Computing (Greece)'),
(77005, 'https://ror.org/02c9fbn32', 'en', 1, 'https://ror.org/02c9fbn32 Hessian Ministry of Economics, Energy, Transport and Housing Hessisches Ministerium für Wirtschaft, Energie, Verkehr und Wohnen'),
(77006, 'https://ror.org/02caa0269', 'en', 1, 'https://ror.org/02caa0269 Infectious Diseases Institute'),
(77007, 'https://ror.org/02cc4y991', 'en', 1, 'https://ror.org/02cc4y991 Foundation for Agricultural Resources Management and Environmental Remediation'),
(77008, 'https://ror.org/02cc5nj87', 'no_lang_code', 1, 'https://ror.org/02cc5nj87 Mainzer Stadtwerke (Germany)'),
(77009, 'https://ror.org/02cd38e76', 'de', 1, 'https://ror.org/02cd38e76 Jüdisches Museum'),
(77010, 'https://ror.org/02ce1xw45', 'fr', 1, 'https://ror.org/02ce1xw45 Groupe de Recherche et d’Analyse AppliquĆ©es pour le DĆ©veloppement'),
(77011, 'https://ror.org/02ce6y193', 'en', 1, 'https://ror.org/02ce6y193 China Editology Society of Science Periodicals äø­å›½ē§‘ęŠ€ęœŸåˆŠē¼–č¾‘å­¦ä¼š'),
(77012, 'https://ror.org/02cemsw67', 'en', 1, 'https://ror.org/02cemsw67 Miyazaki Prefectural Library å®®å“ŽēœŒē«‹å›³ę›øé¤Ø'),
(77013, 'https://ror.org/02cgf6x90', 'no_lang_code', 1, 'https://ror.org/02cgf6x90 Okayama Prefecture å²”å±±ēœŒč¾²ęž—ę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼ē”Ÿē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(77014, 'https://ror.org/02chjw737', 'no_lang_code', 1, 'https://ror.org/02chjw737 Ramdo (United States)'),
(77015, 'https://ror.org/02cmy4j41', 'de', 1, 'https://ror.org/02cmy4j41 Forschungszentrum Ultraschall'),
(77016, 'https://ror.org/02crmrs33', 'en', 1, 'https://ror.org/02crmrs33 Sytenko Institute of Spine and Joint Pathology of the National Academy of Medical Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ патології хребта та ŃŃƒŠ³Š»Š¾Š±Ń–Š² імені Дитенка'),
(77017, 'https://ror.org/02cvw8c86', 'no_lang_code', 1, 'https://ror.org/02cvw8c86 Axsome Therapeutics (United States)'),
(77018, 'https://ror.org/02cytaa95', 'en', 1, 'https://ror.org/02cytaa95 Islamic Azad University of Chalous دانؓگاه Ų¢Ų²Ų§ŲÆ Ś†Ų§Ł„ŁˆŲ³'),
(77019, 'https://ror.org/02d21wr69', 'no_lang_code', 1, 'https://ror.org/02d21wr69 On Time Systems (United States)'),
(77020, 'https://ror.org/02d6wr926', 'no_lang_code', 1, 'https://ror.org/02d6wr926 Radial Analytics (United States)'),
(77021, 'https://ror.org/02d83jn68', 'no_lang_code', 1, 'https://ror.org/02d83jn68 Forms Syntron Information (China) å››ę–¹ē²¾åˆ›'),
(77022, 'https://ror.org/02d87mf22', 'no_lang_code', 1, 'https://ror.org/02d87mf22 Promentis Pharmaceuticals (United States)'),
(77023, 'https://ror.org/02d983k79', 'en', 1, 'https://ror.org/02d983k79 Equine Veterinary Medical Center Ł…Ų±ŁƒŲ² Ų§Ł„Ų®ŁŠŁˆŁ„ Ų§Ł„Ų·ŲØŁŠ Ų§Ł„ŲØŁŠŲ·Ų±ŁŠ'),
(77024, 'https://ror.org/02d9qgc11', 'en', 1, 'https://ror.org/02d9qgc11 Saudi Center for Disease Prevention and Control Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŁˆŁ‚Ų§ŁŠŲ© من الأمراض ŁˆŁ…ŁƒŲ§ŁŲ­ŲŖŁ‡Ų§'),
(77025, 'https://ror.org/02da8wy28', 'no_lang_code', 1, 'https://ror.org/02da8wy28 Energy to Power Solution (United States)'),
(77026, 'https://ror.org/02dbe0m82', 'no_lang_code', 1, 'https://ror.org/02dbe0m82 The Open Group (United States)'),
(77027, 'https://ror.org/02ddsx922', 'fr', 1, 'https://ror.org/02ddsx922 Institut SupƩrieur de l''Informatique et de Gestion'),
(77028, 'https://ror.org/02df3jd82', 'en', 1, 'https://ror.org/02df3jd82 Urolife Stone Hospital'),
(77029, 'https://ror.org/02dgsh587', 'no_lang_code', 1, 'https://ror.org/02dgsh587 SkySentry (United States)'),
(77030, 'https://ror.org/02dk28s26', 'no_lang_code', 1, 'https://ror.org/02dk28s26 Miragen Therapeutics (United States)'),
(77031, 'https://ror.org/02dkg4b27', 'no_lang_code', 1, 'https://ror.org/02dkg4b27 Kayser Automotive (Germany)'),
(77032, 'https://ror.org/02dkhsm53', 'no_lang_code', 1, 'https://ror.org/02dkhsm53 Admedes (Germany)'),
(77033, 'https://ror.org/02dknqs67', 'no_lang_code', 1, 'https://ror.org/02dknqs67 China-US (Henan) Hormel Cancer Institute ę²³å—ēœč‚æē˜¤åŒ»é™¢'),
(77034, 'https://ror.org/02dm92c46', 'de', 1, 'https://ror.org/02dm92c46 Europa-Institut'),
(77035, 'https://ror.org/02dnbq706', 'no_lang_code', 1, 'https://ror.org/02dnbq706 Tristel (United Kingdom)'),
(77036, 'https://ror.org/02dpxza53', 'no_lang_code', 1, 'https://ror.org/02dpxza53 Hefei Everpower Equipment (China)'),
(77037, 'https://ror.org/02dr28080', 'no_lang_code', 1, 'https://ror.org/02dr28080 ContraFect (United States)'),
(77038, 'https://ror.org/02dr3v034', 'en', 1, 'https://ror.org/02dr3v034 Surgo Foundation'),
(77039, 'https://ror.org/02dsdsv34', 'de', 1, 'https://ror.org/02dsdsv34 Hochschule für Polizei und Ɩffentliche Verwaltung Nordrhein-Westfalen University for Police and Public Administration North Rhine-Westphalia'),
(77040, 'https://ror.org/02dt32p51', 'no_lang_code', 1, 'https://ror.org/02dt32p51 Intelesens (United Kingdom)'),
(77041, 'https://ror.org/02dwgrr09', 'no_lang_code', 1, 'https://ror.org/02dwgrr09 Intermodulation Products (Sweden)'),
(77042, 'https://ror.org/02dxdyv61', 'en', 1, 'https://ror.org/02dxdyv61 Deutsche Gesellschaft für Internistische Intensivmedizin und Notfallmedizin German Society of Medical Intensive Care and Emergency Medicine'),
(77043, 'https://ror.org/02dxkcn59', 'de', 1, 'https://ror.org/02dxkcn59 Hochschuldidaktischen Zentrum Sachsen'),
(77044, 'https://ror.org/02dzn2z94', 'de', 1, 'https://ror.org/02dzn2z94 Berufsverband der Deutschen Dermatologen'),
(77045, 'https://ror.org/02e1p7g90', 'en', 1, 'https://ror.org/02e1p7g90 Liu Zhou Center for Disease Prevention and Control ęŸ³å·žē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(77046, 'https://ror.org/02e4at420', 'no_lang_code', 1, 'https://ror.org/02e4at420 Trividia Health (United States)'),
(77047, 'https://ror.org/02e4kkg71', 'en', 1, 'https://ror.org/02e4kkg71 ProMedica Monroe Regional Hospital'),
(77048, 'https://ror.org/02e4p6m45', 'en', 1, 'https://ror.org/02e4p6m45 Forschungsgruppe Soziale Neurowissenschaft Social Neuroscience Lab'),
(77049, 'https://ror.org/02e5d4a33', 'no_lang_code', 1, 'https://ror.org/02e5d4a33 Bafna Group (India)'),
(77050, 'https://ror.org/02e5fdp70', 'no_lang_code', 1, 'https://ror.org/02e5fdp70 Merit Medical (United States)'),
(77051, 'https://ror.org/02e8jz218', 'no_lang_code', 1, 'https://ror.org/02e8jz218 Lhoist (Belgium)'),
(77052, 'https://ror.org/02e8nmk52', 'en', 1, 'https://ror.org/02e8nmk52 Tokyo Medical Examiner''s Office ę±äŗ¬éƒ½ē›£åÆŸåŒ»å‹™é™¢'),
(77053, 'https://ror.org/02eb03q95', 'no_lang_code', 1, 'https://ror.org/02eb03q95 Adhera Therapeutics (United States)'),
(77054, 'https://ror.org/02eg69p81', 'no_lang_code', 1, 'https://ror.org/02eg69p81 Research - Development Application Services (Slovakia)'),
(77055, 'https://ror.org/02emgkf66', 'no_lang_code', 1, 'https://ror.org/02emgkf66 Otter Controls (United Kingdom)'),
(77056, 'https://ror.org/02en3wr74', 'no_lang_code', 1, 'https://ror.org/02en3wr74 MitsukaidoKosei Hospital ę°“ęµ·é“åŽšē”Ÿē—…é™¢'),
(77057, 'https://ror.org/02enk0533', 'en', 1, 'https://ror.org/02enk0533 Association for Awareness on Rural and Tribal Health Institute'),
(77058, 'https://ror.org/02enpq749', 'de', 1, 'https://ror.org/02enpq749 Edith-Stein-Schulstiftung des Bistums Magdeburg'),
(77059, 'https://ror.org/02epb4723', 'de', 1, 'https://ror.org/02epb4723 Klinik St. Irmingard'),
(77060, 'https://ror.org/02eqnz251', 'en', 1, 'https://ror.org/02eqnz251 International Rescue System å›½éš›ćƒ¬ć‚¹ć‚­ćƒ„ćƒ¼ć‚·ć‚¹ćƒ†ćƒ '),
(77061, 'https://ror.org/02eqrzb23', 'en', 1, 'https://ror.org/02eqrzb23 Global Nature Fund'),
(77062, 'https://ror.org/02esj6529', 'no_lang_code', 1, 'https://ror.org/02esj6529 Conagen (United States)'),
(77063, 'https://ror.org/02esp3r97', 'en', 1, 'https://ror.org/02esp3r97 VA Western Colorado Health Care System'),
(77064, 'https://ror.org/02ezs8594', 'en', 1, 'https://ror.org/02ezs8594 Yunnan Population and Family Planning Research Institute äŗ‘å—ēœäŗŗå£å’Œč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(77065, 'https://ror.org/02ezvhm25', 'de', 1, 'https://ror.org/02ezvhm25 Progenius'),
(77066, 'https://ror.org/02f0gnt04', 'no_lang_code', 1, 'https://ror.org/02f0gnt04 Jena Bioscience (Germany)'),
(77067, 'https://ror.org/02f0psx94', 'en', 1, 'https://ror.org/02f0psx94 Polytechnic University č·ę„­čƒ½åŠ›é–‹ē™ŗē·åˆå¤§å­¦ę ”'),
(77068, 'https://ror.org/02f1cet20', 'en', 1, 'https://ror.org/02f1cet20 Institute for Labour and Family Research InŔtitút Pre Výskum PrÔce a Rodiny'),
(77069, 'https://ror.org/02f33m021', 'en', 1, 'https://ror.org/02f33m021 Carnegie Mellon University Africa'),
(77070, 'https://ror.org/02f33pm60', 'en', 1, 'https://ror.org/02f33pm60 Scottish Universities Insight Institute'),
(77071, 'https://ror.org/02f3d5q63', 'no_lang_code', 1, 'https://ror.org/02f3d5q63 SMA Solar Technology (United Kingdom)'),
(77072, 'https://ror.org/02f3vh107', 'en', 1, 'https://ror.org/02f3vh107 The Cambridge Centre for Advanced Research and Education in Singapore'),
(77073, 'https://ror.org/02f65mn87', 'en', 1, 'https://ror.org/02f65mn87 Apollo Institute of Medical Sciences & Research అపోలో ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°øą±ˆą°Øą±ą°øą±†ą°øą± ą°…ą°‚ą°”ą± ą°°ą±€ą°øą±†ą°°ą±ą°šą±'),
(77074, 'https://ror.org/02f6hqb19', 'no_lang_code', 1, 'https://ror.org/02f6hqb19 Evive Biotech (China)'),
(77075, 'https://ror.org/02f71a260', 'en', 1, 'https://ror.org/02f71a260 Motamed Cancer Institute Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ł…Ų¹ŲŖŁ…ŲÆ جهاد ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ'),
(77076, 'https://ror.org/02f8q7239', 'no_lang_code', 1, 'https://ror.org/02f8q7239 Autonomix Medical (United States)'),
(77077, 'https://ror.org/02fafdw13', 'no_lang_code', 1, 'https://ror.org/02fafdw13 W&H (Austria)'),
(77078, 'https://ror.org/02faq6h04', 'no_lang_code', 1, 'https://ror.org/02faq6h04 Air Water (Japan)'),
(77079, 'https://ror.org/02fbcvn06', 'no_lang_code', 1, 'https://ror.org/02fbcvn06 Life Spine (United States)'),
(77080, 'https://ror.org/02fbp2e31', 'no_lang_code', 1, 'https://ror.org/02fbp2e31 Simworx (United Kingdom)'),
(77081, 'https://ror.org/02fcfe885', 'es', 1, 'https://ror.org/02fcfe885 Escuela Superior de Guerra'),
(77082, 'https://ror.org/02fdbrg94', 'no_lang_code', 1, 'https://ror.org/02fdbrg94 Smith & Co (United States)'),
(77083, 'https://ror.org/02fh3mq29', 'no_lang_code', 1, 'https://ror.org/02fh3mq29 Zietchick Research Institute (United States)'),
(77084, 'https://ror.org/02fh8tg22', 'no_lang_code', 1, 'https://ror.org/02fh8tg22 Osaka Soda (Japan) å¤§é˜Ŗć‚½ćƒ¼ćƒ€'),
(77085, 'https://ror.org/02fjjnc15', 'en', 1, 'https://ror.org/02fjjnc15 Interdisciplinary Earth Data Alliance'),
(77086, 'https://ror.org/02fk0da73', 'no_lang_code', 1, 'https://ror.org/02fk0da73 Sciogen (United States)'),
(77087, 'https://ror.org/02fm9ey65', 'de', 1, 'https://ror.org/02fm9ey65 Mainzer Zentrum für Digitalität in den Geistes- und Kulturwissenschaften'),
(77088, 'https://ror.org/02fpaqw26', 'en', 1, 'https://ror.org/02fpaqw26 Nagoya Future Culture College åå¤å±‹ęœŖę„ę–‡åŒ–å°‚é–€å­¦ę ”'),
(77089, 'https://ror.org/02fpqqs63', 'no_lang_code', 1, 'https://ror.org/02fpqqs63 Omni Sciences (United States)'),
(77090, 'https://ror.org/02ft3dk35', 'no_lang_code', 1, 'https://ror.org/02ft3dk35 Minerva Surgical (United States)'),
(77091, 'https://ror.org/02ftcpa68', 'en', 1, 'https://ror.org/02ftcpa68 Büro für Technikfolgen-Abschätzung beim Deutschen Bundestag Office of Technology Assessment at the German Bundestag'),
(77092, 'https://ror.org/02fvx0g44', 'en', 1, 'https://ror.org/02fvx0g44 Banque de dƩveloppement du Canada Business Development Bank of Canada'),
(77093, 'https://ror.org/02fx6bp88', 'no_lang_code', 1, 'https://ror.org/02fx6bp88 Marine Polymer Technologies (United States)'),
(77094, 'https://ror.org/02fxhgq54', 'en', 1, 'https://ror.org/02fxhgq54 East Riding of Yorkshire Council'),
(77095, 'https://ror.org/02fyxhe35', 'no_lang_code', 1, 'https://ror.org/02fyxhe35 LinkedIn (United States)'),
(77096, 'https://ror.org/02fzm7221', 'no_lang_code', 1, 'https://ror.org/02fzm7221 Gestamp (Spain)'),
(77097, 'https://ror.org/02g0f3984', 'en', 1, 'https://ror.org/02g0f3984 Mercy Health Foundation'),
(77098, 'https://ror.org/02g2x8w06', 'no_lang_code', 1, 'https://ror.org/02g2x8w06 Control4 (United States)'),
(77099, 'https://ror.org/02g4h7104', 'no_lang_code', 1, 'https://ror.org/02g4h7104 Synopsys (Belgium)'),
(77100, 'https://ror.org/02g61p297', 'en', 1, 'https://ror.org/02g61p297 Virgo'),
(77101, 'https://ror.org/02g821610', 'en', 1, 'https://ror.org/02g821610 Hochschule für Technik Rapperswil University of Applied Sciences Rapperswil'),
(77102, 'https://ror.org/02g99an58', 'en', 1, 'https://ror.org/02g99an58 TÜBİTAK Marmara Araştırma Merkezi TÜBİTAK Marmara Research Center'),
(77103, 'https://ror.org/02gada206', 'no_lang_code', 1, 'https://ror.org/02gada206 Silicon Works (South Korea) 주)ģ‹¤ė¦¬ģ½˜ģ›ģŠ¤'),
(77104, 'https://ror.org/02gahgd10', 'en', 1, 'https://ror.org/02gahgd10 The Initiative for Equal Rights'),
(77105, 'https://ror.org/02gbdhj19', 'en', 1, 'https://ror.org/02gbdhj19 National Center for Agricultural Utilization Research'),
(77106, 'https://ror.org/02gey2570', 'no_lang_code', 1, 'https://ror.org/02gey2570 FSD Pharma (Canada)'),
(77107, 'https://ror.org/02gfcg256', 'no_lang_code', 1, 'https://ror.org/02gfcg256 Lysando (Liechtenstein)'),
(77108, 'https://ror.org/02gh10772', 'en', 1, 'https://ror.org/02gh10772 Hunan Police Academy ę¹–å—č­¦åÆŸå­¦é™¢'),
(77109, 'https://ror.org/02ghmtw61', 'en', 1, 'https://ror.org/02ghmtw61 Loyola University of Congo UniversitƩ Loyola du Congo'),
(77110, 'https://ror.org/02gkg4976', 'no_lang_code', 1, 'https://ror.org/02gkg4976 Medigus (Israel)'),
(77111, 'https://ror.org/02gn59349', 'no_lang_code', 1, 'https://ror.org/02gn59349 Bau-Institut für Ressourceneffizientes und Nachhaltiges Bauen Birn (Germany)'),
(77112, 'https://ror.org/02gqf9e56', 'en', 1, 'https://ror.org/02gqf9e56 Technology Centre for Offshore and Marine, Singapore'),
(77113, 'https://ror.org/02gqm1y63', 'no_lang_code', 1, 'https://ror.org/02gqm1y63 Minda Hospital ę¹–åŒ—ę°‘ę—å¤§å­¦é™„å±žę°‘å¤§åŒ»é™¢'),
(77114, 'https://ror.org/02gsa9r71', 'en', 1, 'https://ror.org/02gsa9r71 Shenyang Ninth People''s Hospital ę²ˆé˜³åø‚ē¬¬ä¹äŗŗę°‘åŒ»é™¢'),
(77115, 'https://ror.org/02gsb6172', 'en', 1, 'https://ror.org/02gsb6172 Federal Reserve Bank of Philadelphia'),
(77116, 'https://ror.org/02gtftk26', 'no_lang_code', 1, 'https://ror.org/02gtftk26 Institut für Technische Beratung und Produktentwicklung (Germany)'),
(77117, 'https://ror.org/02gv1pt92', 'no_lang_code', 1, 'https://ror.org/02gv1pt92 EVRAZ (United Kingdom)'),
(77118, 'https://ror.org/02gvtkt16', 'en', 1, 'https://ror.org/02gvtkt16 Integrated Test Range'),
(77119, 'https://ror.org/02gx5k306', 'no_lang_code', 1, 'https://ror.org/02gx5k306 Lexion Medical (United States)'),
(77120, 'https://ror.org/02gz1g089', 'de', 1, 'https://ror.org/02gz1g089 Forschungsinstitut für Denkmalpflege und Archäometrie'),
(77121, 'https://ror.org/02gz79h29', 'en', 1, 'https://ror.org/02gz79h29 Shropshire Community Health NHS Trust'),
(77122, 'https://ror.org/02h3fyk31', 'en', 1, 'https://ror.org/02h3fyk31 Xichang University č„æę˜Œå­¦é™¢'),
(77123, 'https://ror.org/02h3t6028', 'no_lang_code', 1, 'https://ror.org/02h3t6028 Dr. Brill + Dr. Steinmann (Germany)'),
(77124, 'https://ror.org/02h74qa12', 'es', 1, 'https://ror.org/02h74qa12 MĆŗtua Terrassa'),
(77125, 'https://ror.org/02h8xbx21', 'de', 1, 'https://ror.org/02h8xbx21 Institut für Site und Facility Management'),
(77126, 'https://ror.org/02h9rwy26', 'es', 1, 'https://ror.org/02h9rwy26 Asociación Colombiana de Dermatología y Cirugía Dermatológica Colombian Association of Dermatology and Dermatological Surgery'),
(77127, 'https://ror.org/02hcxtx58', 'no_lang_code', 1, 'https://ror.org/02hcxtx58 Deinove (Germany)'),
(77128, 'https://ror.org/02hdkm455', 'no_lang_code', 1, 'https://ror.org/02hdkm455 Novartis (Slovakia)'),
(77129, 'https://ror.org/02hew9107', 'no_lang_code', 1, 'https://ror.org/02hew9107 Orasure Technologies (United States)'),
(77130, 'https://ror.org/02hf1dy84', 'no_lang_code', 1, 'https://ror.org/02hf1dy84 Laboratory Catalyst Systems (United States)');
INSERT INTO `rors` VALUES
(77131, 'https://ror.org/02hgagx44', 'no_lang_code', 1, 'https://ror.org/02hgagx44 Bharat Immunologicals and Biologicals Corporation (India)'),
(77132, 'https://ror.org/02hhx7493', 'hu', 1, 'https://ror.org/02hhx7493 Fejér Megyei Szent György Egyetemi Oktató KórhÔz'),
(77133, 'https://ror.org/02hhzwx06', 'en', 1, 'https://ror.org/02hhzwx06 Police Dog Technical School č­¦ēŠ¬ęŠ€ęœÆå­¦ę ”'),
(77134, 'https://ror.org/02hj1n344', 'no_lang_code', 1, 'https://ror.org/02hj1n344 Industriale Chimica (Italy)'),
(77135, 'https://ror.org/02hj60p29', 'es', 1, 'https://ror.org/02hj60p29 Fundación Centro de Gestión Tecnológica e InformÔtica Industrial'),
(77136, 'https://ror.org/02hmsgf06', 'fr', 1, 'https://ror.org/02hmsgf06 Le Laboratoire P4 Inserm Jean MƩrieux'),
(77137, 'https://ror.org/02hnfcm12', 'en', 1, 'https://ror.org/02hnfcm12 International Engineering and Technology Institute'),
(77138, 'https://ror.org/02hrbfc73', 'en', 1, 'https://ror.org/02hrbfc73 The Geneva Association'),
(77139, 'https://ror.org/02hs0x989', 'de', 1, 'https://ror.org/02hs0x989 BDH-Klinik Hessisch Oldendorf'),
(77140, 'https://ror.org/02htdbf38', 'no_lang_code', 1, 'https://ror.org/02htdbf38 Quimba Software (United States)'),
(77141, 'https://ror.org/02hv08979', 'no_lang_code', 1, 'https://ror.org/02hv08979 Consentec (Germany)'),
(77142, 'https://ror.org/02hw5b420', 'de', 1, 'https://ror.org/02hw5b420 Dissens – Institut für Bildung und Forschung'),
(77143, 'https://ror.org/02hynf559', 'no_lang_code', 1, 'https://ror.org/02hynf559 Laser Systems & Solutions of Europe (France)'),
(77144, 'https://ror.org/02hzb7188', 'en', 1, 'https://ror.org/02hzb7188 Directorate of Weed Research खरपतवार ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(77145, 'https://ror.org/02j0at714', 'en', 1, 'https://ror.org/02j0at714 Institutul de Ftiziopneumologie ā€žChiril Draganiucā€ Phthisiopneumology Institute "Chiril Draganiuc"'),
(77146, 'https://ror.org/02j0qe342', 'en', 1, 'https://ror.org/02j0qe342 Dr. Kamakshi Memorial Hospital'),
(77147, 'https://ror.org/02j2j7n26', 'no_lang_code', 1, 'https://ror.org/02j2j7n26 Schmid (Germany)'),
(77148, 'https://ror.org/02j393627', 'en', 1, 'https://ror.org/02j393627 Javna agencija Republike Slovenije za spodbujanje podjetniŔtva, internacionalizacije, tujih investicij in tehnologije SPIRIT Slovenia - Public Agency for Entrepreneurship, Internationalization, Fore­ign Investments and Technology'),
(77149, 'https://ror.org/02j3vjm91', 'no_lang_code', 1, 'https://ror.org/02j3vjm91 Guangxi Longtan Hospital ęŸ³å·žåø‚é¾™ę½­åŒ»é™¢'),
(77150, 'https://ror.org/02j4jqr44', 'no_lang_code', 1, 'https://ror.org/02j4jqr44 Zeria Pharmaceutical (Japan) ć‚¼ćƒŖć‚¢ę–°č–¬å·„ę„­'),
(77151, 'https://ror.org/02j4jwp55', 'en', 1, 'https://ror.org/02j4jwp55 Lung Cancer Initiative of North Carolina'),
(77152, 'https://ror.org/02j6bcm26', 'no_lang_code', 1, 'https://ror.org/02j6bcm26 CoreTech (China)'),
(77153, 'https://ror.org/02j6nge77', 'de', 1, 'https://ror.org/02j6nge77 Stephanus Stiftung'),
(77154, 'https://ror.org/02j7j4v81', 'no_lang_code', 1, 'https://ror.org/02j7j4v81 Paulownia Research Center å›½å®¶ęž—äøšå’Œč‰åŽŸå±€ę³”ę”ē ”ē©¶å¼€å‘äø­åæƒ'),
(77155, 'https://ror.org/02jdwac97', 'no_lang_code', 1, 'https://ror.org/02jdwac97 H.C. Starck (Germany)'),
(77156, 'https://ror.org/02jg20617', 'en', 1, 'https://ror.org/02jg20617 Veterinary Serum and Vaccine Research Institute معهد بحوث الامصال ŁˆŲ§Ł„Ł„Ł‚Ų§Ų­Ų§ŲŖ Ų§Ł„ŲØŁŠŲ·Ų±ŁŠŲ©'),
(77157, 'https://ror.org/02jhay860', 'no_lang_code', 1, 'https://ror.org/02jhay860 Huahai Pharmaceutical (China) ęµ™ę±ŸåŽęµ·čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(77158, 'https://ror.org/02jkgv284', 'no_lang_code', 1, 'https://ror.org/02jkgv284 Weinan Central Hospital ęø­å—åø‚äø­åæƒåŒ»é™¢'),
(77159, 'https://ror.org/02jktx121', 'en', 1, 'https://ror.org/02jktx121 Institut Teknologi Sumatera Sumatera Institute of Technology'),
(77160, 'https://ror.org/02jrz7m81', 'no_lang_code', 1, 'https://ror.org/02jrz7m81 Alber (Germany)'),
(77161, 'https://ror.org/02jskg402', 'de', 1, 'https://ror.org/02jskg402 Naturalienkabinett Waldenburg'),
(77162, 'https://ror.org/02jvh9y58', 'en', 1, 'https://ror.org/02jvh9y58 Moving Academy of Medicine and Biomedicine ą¤®ą„ą¤µą„ą¤¹ą„€ą¤‚ą¤— ą¤…ą„…ą¤•ą„…ą¤”ą¤®ą„€ ą¤…ą„‰ą¤« ą¤®ą„‡ą¤”ą„€ą¤øą¤æą¤Ø अँऔ ą¤¬ą¤¾ą¤Æą„‹ą¤®ą„‡ą¤”ą„€ą¤øą¤æą¤Ø'),
(77163, 'https://ror.org/02jxepd37', 'no_lang_code', 1, 'https://ror.org/02jxepd37 Jamboxx (United States)'),
(77164, 'https://ror.org/02jy4mx12', 'no_lang_code', 1, 'https://ror.org/02jy4mx12 Lead Discovery Center (Germany)'),
(77165, 'https://ror.org/02jze8s95', 'no_lang_code', 1, 'https://ror.org/02jze8s95 AP2E (France)'),
(77166, 'https://ror.org/02k1cbm60', 'no_lang_code', 1, 'https://ror.org/02k1cbm60 PowerHouse Proteomic Systems (United States)'),
(77167, 'https://ror.org/02k1mww18', 'en', 1, 'https://ror.org/02k1mww18 Defence Avionics Research Establishment ą¤°ą¤•ą„ą¤·ą¤¾ ą¤µą„ˆą¤®ą¤¾ą¤Øą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾'),
(77168, 'https://ror.org/02k34sh32', 'en', 1, 'https://ror.org/02k34sh32 Islamic Azad University, Jiroft Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد جیرفت'),
(77169, 'https://ror.org/02k38kx21', 'en', 1, 'https://ror.org/02k38kx21 British Astronomical Association'),
(77170, 'https://ror.org/02k3mav14', 'no_lang_code', 1, 'https://ror.org/02k3mav14 Kamdhenu University કામધેનુ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(77171, 'https://ror.org/02k75d319', 'en', 1, 'https://ror.org/02k75d319 Shandong Police College å±±äøœč­¦åÆŸå­¦é™¢'),
(77172, 'https://ror.org/02k7g3c43', 'en', 1, 'https://ror.org/02k7g3c43 Taiwan Geographic Information Center č²”åœ˜ę³•äŗŗå°ē£åœ°ē†č³‡čØŠäø­åæƒ'),
(77173, 'https://ror.org/02k7stp33', 'en', 1, 'https://ror.org/02k7stp33 National Institute for Education ŠtÔtny Pedagogický ústav'),
(77174, 'https://ror.org/02k7thy32', 'no_lang_code', 1, 'https://ror.org/02k7thy32 Daikyo Seiko (Japan) å¤§å”ē²¾å·„'),
(77175, 'https://ror.org/02k82p965', 'no_lang_code', 1, 'https://ror.org/02k82p965 Oxford Computer Services (United States)'),
(77176, 'https://ror.org/02k9trd04', 'en', 1, 'https://ror.org/02k9trd04 Pan African Institute for Development'),
(77177, 'https://ror.org/02kbr4940', 'no_lang_code', 1, 'https://ror.org/02kbr4940 Progressive Expert Consulting (United States)'),
(77178, 'https://ror.org/02kd0zj59', 'en', 1, 'https://ror.org/02kd0zj59 Government Ayurvedic College and Hospital ą¦šą§°ą¦•ą¦¾ą§°ą§€ ą¦†ą¦Æą¦¼ą§ą§°ą§ą¦¬ą§‡ą¦¦ą¦æą¦• ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(77179, 'https://ror.org/02kd9ve64', 'no_lang_code', 1, 'https://ror.org/02kd9ve64 Kerntechnische Entsorgung Karlsruhe (Germany)'),
(77180, 'https://ror.org/02kgc0f98', 'en', 1, 'https://ror.org/02kgc0f98 Oyama City Museum å°å±±åø‚åšē‰©é¤Ø'),
(77181, 'https://ror.org/02kgjkj09', 'no_lang_code', 1, 'https://ror.org/02kgjkj09 Vividion Therapeutics (United States)'),
(77182, 'https://ror.org/02kh0zv54', 'no_lang_code', 1, 'https://ror.org/02kh0zv54 Akasol (Germany)'),
(77183, 'https://ror.org/02knymj82', 'sk', 1, 'https://ror.org/02knymj82 Kúpele VyŔné Ružbachy'),
(77184, 'https://ror.org/02kq47078', 'no_lang_code', 1, 'https://ror.org/02kq47078 USV (India)'),
(77185, 'https://ror.org/02kqh4879', 'en', 1, 'https://ror.org/02kqh4879 Palmer Soil and Water Conservation District'),
(77186, 'https://ror.org/02ksa0z84', 'en', 1, 'https://ror.org/02ksa0z84 International Centre for Interdisciplinary Science and Education Trung tĆ¢m Quốc tįŗæ Khoa hį»c vĆ  GiĆ”o dỄc liĆŖn ngĆ nh'),
(77187, 'https://ror.org/02kssw685', 'no_lang_code', 1, 'https://ror.org/02kssw685 Olatec (United States)'),
(77188, 'https://ror.org/02ksw7h30', 'no_lang_code', 1, 'https://ror.org/02ksw7h30 ThermoTek (United States)'),
(77189, 'https://ror.org/02ksyke18', 'no_lang_code', 1, 'https://ror.org/02ksyke18 Laserline (Germany)'),
(77190, 'https://ror.org/02kt1pm02', 'sk', 1, 'https://ror.org/02kt1pm02 ŠtÔtne Lesy Tatranského NÔrodního Parku'),
(77191, 'https://ror.org/02kt6vs55', 'pt', 1, 'https://ror.org/02kt6vs55 Unichristus'),
(77192, 'https://ror.org/02ktnrv41', 'de', 1, 'https://ror.org/02ktnrv41 Bundeskunsthalle'),
(77193, 'https://ror.org/02kx7v033', 'en', 1, 'https://ror.org/02kx7v033 ALAI Czech Republic ALAI ČeskÔ republika'),
(77194, 'https://ror.org/02kxdc598', 'no_lang_code', 1, 'https://ror.org/02kxdc598 Forschungszentrum für Verbrennungsmotoren und Thermodynamik Rostock (Germany)'),
(77195, 'https://ror.org/02kxycv91', 'no_lang_code', 1, 'https://ror.org/02kxycv91 NonInvasive Technologies (United States)'),
(77196, 'https://ror.org/02kyd6w77', 'en', 1, 'https://ror.org/02kyd6w77 Izumi Biosciences'),
(77197, 'https://ror.org/02m0dvq27', 'no_lang_code', 1, 'https://ror.org/02m0dvq27 Onai (United States)'),
(77198, 'https://ror.org/02m1qaq93', 'no_lang_code', 1, 'https://ror.org/02m1qaq93 Rotam (China) č½®ä½œä½œē‰©ē§‘å­¦'),
(77199, 'https://ror.org/02m2h7991', 'no_lang_code', 1, 'https://ror.org/02m2h7991 Zhejiang Lab ä¹‹ę±Ÿå®žéŖŒå®¤'),
(77200, 'https://ror.org/02m3s6y46', 'en', 1, 'https://ror.org/02m3s6y46 Explore York'),
(77201, 'https://ror.org/02ma46909', 'en', 1, 'https://ror.org/02ma46909 WA Country Health Service'),
(77202, 'https://ror.org/02mb1sp44', 'no_lang_code', 1, 'https://ror.org/02mb1sp44 Royal Caliber (United States)'),
(77203, 'https://ror.org/02mbz3q09', 'no_lang_code', 1, 'https://ror.org/02mbz3q09 Kaman (United States)'),
(77204, 'https://ror.org/02mc5ry07', 'en', 1, 'https://ror.org/02mc5ry07 Battle Creek VA Medical Center'),
(77205, 'https://ror.org/02mcfj023', 'no_lang_code', 1, 'https://ror.org/02mcfj023 Cendres+MƩtaux (Switzerland)'),
(77206, 'https://ror.org/02mcgxe24', 'en', 1, 'https://ror.org/02mcgxe24 Toyama Prefectural Agricultural, Forestry & Fisheries Research Center åÆŒå±±ēœŒč¾²ęž—ę°“ē”£ē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(77207, 'https://ror.org/02mcz6a08', 'no_lang_code', 1, 'https://ror.org/02mcz6a08 Wƶlfel (Germany)'),
(77208, 'https://ror.org/02me45833', 'no_lang_code', 1, 'https://ror.org/02me45833 Plastal (Sweden)'),
(77209, 'https://ror.org/02mffv097', 'en', 1, 'https://ror.org/02mffv097 Sepsis Trust NZ'),
(77210, 'https://ror.org/02mj3be11', 'en', 1, 'https://ror.org/02mj3be11 Harbin Foresty Machinery Institute å›½å®¶ęž—äøšå±€å“ˆå°”ę»Øęž—äøšęœŗę¢°ē ”ē©¶ę‰€'),
(77211, 'https://ror.org/02mjdk963', 'no_lang_code', 1, 'https://ror.org/02mjdk963 Axelgaard Manufacturing (United States)'),
(77212, 'https://ror.org/02mjrxh13', 'no_lang_code', 1, 'https://ror.org/02mjrxh13 Shenzhen Beauty Star (China) ę·±åœ³åø‚åŠ›åˆē§‘åˆ›č‚”ä»½ęœ‰é™å…¬åø'),
(77213, 'https://ror.org/02mkj1868', 'en', 1, 'https://ror.org/02mkj1868 New Hampshire Space Grant Consortium'),
(77214, 'https://ror.org/02mm76478', 'en', 1, 'https://ror.org/02mm76478 Bam University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŁ…'),
(77215, 'https://ror.org/02mnkyy74', 'no_lang_code', 1, 'https://ror.org/02mnkyy74 Ozark Integrated Circuits (United States)'),
(77216, 'https://ror.org/02mnnbz19', 'no_lang_code', 1, 'https://ror.org/02mnnbz19 LeMaitre Vascular (United States)'),
(77217, 'https://ror.org/02mnrb887', 'no_lang_code', 1, 'https://ror.org/02mnrb887 Cafe Bazaar (Iran) کافه ŲØŲ§Ų²Ų§Ų±'),
(77218, 'https://ror.org/02mpb3323', 'no_lang_code', 1, 'https://ror.org/02mpb3323 Tianjin Zhujin Technology Development (China) å¤©ę“„é“øé‡‘ē§‘ęŠ€å¼€å‘'),
(77219, 'https://ror.org/02mq55t12', 'en', 1, 'https://ror.org/02mq55t12 Rhein-Ruhr Institut für angewandte Systeminnovation Rhine-Ruhr Institute for Applied Systeminnovation'),
(77220, 'https://ror.org/02mqsna37', 'en', 1, 'https://ror.org/02mqsna37 Wuchang University of Technology ę­¦ę˜Œē†å·„å­¦é™¢'),
(77221, 'https://ror.org/02mr1hg77', 'no_lang_code', 1, 'https://ror.org/02mr1hg77 Salts Healthcare (United Kingdom)'),
(77222, 'https://ror.org/02mr3av04', 'en', 1, 'https://ror.org/02mr3av04 Central Bank of Cyprus Kıbrıs Merkez Bankası Kεντρική Τράπεζα της ĪšĻĻ€ĻĪæĻ…'),
(77223, 'https://ror.org/02ms7ap07', 'en', 1, 'https://ror.org/02ms7ap07 Agronomical Institute of Campinas Instituto AgronƓmico de Campinas'),
(77224, 'https://ror.org/02msnw927', 'id', 1, 'https://ror.org/02msnw927 Universitas Ibrahimy'),
(77225, 'https://ror.org/02mswf653', 'no_lang_code', 1, 'https://ror.org/02mswf653 Milestone Scientific (United States)'),
(77226, 'https://ror.org/02mwnke68', 'de', 1, 'https://ror.org/02mwnke68 Brüderkrankenhaus St. Josef Paderborn'),
(77227, 'https://ror.org/02my5pn34', 'no_lang_code', 1, 'https://ror.org/02my5pn34 Renuvix (United States)'),
(77228, 'https://ror.org/02myr1w18', 'no_lang_code', 1, 'https://ror.org/02myr1w18 Pliant (United States)'),
(77229, 'https://ror.org/02mz0pc52', 'no_lang_code', 1, 'https://ror.org/02mz0pc52 Genex Systems (United States)'),
(77230, 'https://ror.org/02n0gpn09', 'no_lang_code', 1, 'https://ror.org/02n0gpn09 Kronos Bios (United Kingdom)'),
(77231, 'https://ror.org/02n2g5x76', 'en', 1, 'https://ror.org/02n2g5x76 Meteorological Bureau of Shenzhen Municipality ę·±åœ³åø‚ę°”č±”å±€'),
(77232, 'https://ror.org/02n2ng334', 'no_lang_code', 1, 'https://ror.org/02n2ng334 Emisphere Technologies (United States)'),
(77233, 'https://ror.org/02n2sdp05', 'no_lang_code', 1, 'https://ror.org/02n2sdp05 Euro Institute for Information and Technology Transfer in Environmental Protection (Germany)'),
(77234, 'https://ror.org/02n5k9x47', 'no_lang_code', 1, 'https://ror.org/02n5k9x47 Guangzhou Jingpai Technology (China) å¹æå·žę™Æę“¾ē§‘ęŠ€ęœ‰é™å…¬åø'),
(77235, 'https://ror.org/02n851422', 'no_lang_code', 1, 'https://ror.org/02n851422 Innovationszentrum für Mobilität und Gesellschaftlichen Wandel (Germany)'),
(77236, 'https://ror.org/02n94hw85', 'en', 1, 'https://ror.org/02n94hw85 Institut für Enterprise Systems Institute for Enterprise Systems'),
(77237, 'https://ror.org/02n9as466', 'en', 1, 'https://ror.org/02n9as466 Gansu Provincial Maternal and Child Health Hospital ē”˜č‚ƒēœå¦‡å¹¼äæå„é™¢'),
(77238, 'https://ror.org/02n9d1732', 'en', 1, 'https://ror.org/02n9d1732 Max Planck University of Twente Center for Complex Fluid Dynamics'),
(77239, 'https://ror.org/02na2p746', 'en', 1, 'https://ror.org/02na2p746 Navy League of the United States'),
(77240, 'https://ror.org/02nanfc50', 'en', 1, 'https://ror.org/02nanfc50 Michigan Works! Macomb/St. Clair'),
(77241, 'https://ror.org/02nb4b562', 'no_lang_code', 1, 'https://ror.org/02nb4b562 Recordati (Ireland)'),
(77242, 'https://ror.org/02nbgxg43', 'en', 1, 'https://ror.org/02nbgxg43 Center for Micro-BioRobotics'),
(77243, 'https://ror.org/02nd16181', 'no_lang_code', 1, 'https://ror.org/02nd16181 Princeton Technology Advisors (United States)'),
(77244, 'https://ror.org/02nf4c779', 'no_lang_code', 1, 'https://ror.org/02nf4c779 Novo Informatics (India) ą¤Øą„‹ą¤µą„‹ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¾ą„¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(77245, 'https://ror.org/02nfc4q85', 'no_lang_code', 1, 'https://ror.org/02nfc4q85 Kunststoff Institut Südwest (Germany)'),
(77246, 'https://ror.org/02nfmpb07', 'no_lang_code', 1, 'https://ror.org/02nfmpb07 ZKxKZ (United States)'),
(77247, 'https://ror.org/02ngq1848', 'en', 1, 'https://ror.org/02ngq1848 DMI-St. John the Baptist University'),
(77248, 'https://ror.org/02nj4qk22', 'en', 1, 'https://ror.org/02nj4qk22 Chinese Soil and Water Conservation Society äø­å›½ę°“åœŸäæęŒå­¦ä¼š'),
(77249, 'https://ror.org/02nkjx490', 'en', 1, 'https://ror.org/02nkjx490 PredictImmune'),
(77250, 'https://ror.org/02nmjzp92', 'de', 1, 'https://ror.org/02nmjzp92 Institut für Wasserwirtschaft Siedlungswasserbau und Ɩkologie'),
(77251, 'https://ror.org/02nmke270', 'no_lang_code', 1, 'https://ror.org/02nmke270 ProtonVDA (United States)'),
(77252, 'https://ror.org/02nmvgz47', 'en', 1, 'https://ror.org/02nmvgz47 Research Institute of Forestry äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ęž—äøšē ”ē©¶ę‰€'),
(77253, 'https://ror.org/02nnezj30', 'no_lang_code', 1, 'https://ror.org/02nnezj30 Tidi (United States)'),
(77254, 'https://ror.org/02ns3vy48', 'en', 1, 'https://ror.org/02ns3vy48 Forest Survey of India ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ वन ą¤øą¤°ą„ą¤µą„‡ą¤•ą„ą¤·ą¤£'),
(77255, 'https://ror.org/02nt9wa64', 'no_lang_code', 1, 'https://ror.org/02nt9wa64 a.i. solutions (United States)'),
(77256, 'https://ror.org/02ntsjr39', 'no_lang_code', 1, 'https://ror.org/02ntsjr39 Prognos (Switzerland)'),
(77257, 'https://ror.org/02nv4cj15', 'no_lang_code', 1, 'https://ror.org/02nv4cj15 JSC R&D Center "Applied Logistics" (Russia) ŠŸŃ€ŠøŠŗŠ»Š°Š“Š½Š°Ń логистика'),
(77258, 'https://ror.org/02nw6hx08', 'no_lang_code', 1, 'https://ror.org/02nw6hx08 Janssen (United Kingdom)'),
(77259, 'https://ror.org/02nw77796', 'no_lang_code', 1, 'https://ror.org/02nw77796 Sest (United States)'),
(77260, 'https://ror.org/02nwwqk69', 'no_lang_code', 1, 'https://ror.org/02nwwqk69 Butamax (United States)'),
(77261, 'https://ror.org/02nx9fz53', 'no_lang_code', 1, 'https://ror.org/02nx9fz53 Tibbar Plasma Technologies (United States)'),
(77262, 'https://ror.org/02nymy567', 'no_lang_code', 1, 'https://ror.org/02nymy567 Sapporo Minami Hospital ęœ­å¹Œå—ē—…é™¢'),
(77263, 'https://ror.org/02nzd5081', 'en', 1, 'https://ror.org/02nzd5081 Arish University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ų±ŁŠŲ“'),
(77264, 'https://ror.org/02nzrsp96', 'sk', 1, 'https://ror.org/02nzrsp96 ŠtÔtny InŔtitút Odborného VzdelÔvania'),
(77265, 'https://ror.org/02nzxcb82', 'en', 1, 'https://ror.org/02nzxcb82 Center for Translational Neurophysiology of Speech and Communication Centro di Neurofisiologia Traslazionale del Linguaggio e della Comunicazione'),
(77266, 'https://ror.org/02p1tz049', 'no_lang_code', 1, 'https://ror.org/02p1tz049 China National Chemical Information Centre (China) äø­å›½åŒ–å·„äæ”ęÆäø­åæƒ'),
(77267, 'https://ror.org/02p1vs657', 'no_lang_code', 1, 'https://ror.org/02p1vs657 Multiverse Computing (Spain)'),
(77268, 'https://ror.org/02p5jez93', 'no_lang_code', 1, 'https://ror.org/02p5jez93 Resolute Marine Energy (United States)'),
(77269, 'https://ror.org/02p6a3b37', 'en', 1, 'https://ror.org/02p6a3b37 Creative Destruction Lab'),
(77270, 'https://ror.org/02p6n7f90', 'no_lang_code', 1, 'https://ror.org/02p6n7f90 DIAL (Germany)'),
(77271, 'https://ror.org/02p6pn278', 'en', 1, 'https://ror.org/02p6pn278 LEAP Science and Maths Schools'),
(77272, 'https://ror.org/02p6vf335', 'no_lang_code', 1, 'https://ror.org/02p6vf335 Frito-Lay (Switzerland)'),
(77273, 'https://ror.org/02p752c24', 'no_lang_code', 1, 'https://ror.org/02p752c24 Pieris Pharmaceuticals (United States)'),
(77274, 'https://ror.org/02paxq720', 'no_lang_code', 1, 'https://ror.org/02paxq720 Midmark (United States)'),
(77275, 'https://ror.org/02pc86x52', 'de', 1, 'https://ror.org/02pc86x52 Leipziger Institut für Angewandte Weiterbildungsforschung'),
(77276, 'https://ror.org/02pd8fm45', 'no_lang_code', 1, 'https://ror.org/02pd8fm45 BET (Germany)'),
(77277, 'https://ror.org/02pdkr951', 'en', 1, 'https://ror.org/02pdkr951 The Tokugawa Institute for the History of Forestry å…¬ē›Šč²”å›£ę³•äŗŗå¾³å·é»Žę˜Žä¼š'),
(77278, 'https://ror.org/02pectn41', 'no_lang_code', 1, 'https://ror.org/02pectn41 RetiVue (United States)'),
(77279, 'https://ror.org/02pf5x519', 'de', 1, 'https://ror.org/02pf5x519 Institut der Wirtschaft Thüringens'),
(77280, 'https://ror.org/02pf7bx90', 'no_lang_code', 1, 'https://ror.org/02pf7bx90 Arrow International (United States)'),
(77281, 'https://ror.org/02pfwxe49', 'en', 1, 'https://ror.org/02pfwxe49 Agricultural Research Service - Southeast Area'),
(77282, 'https://ror.org/02pgv1b52', 'no_lang_code', 1, 'https://ror.org/02pgv1b52 BGT Bischoff Glastechnik (Germany)'),
(77283, 'https://ror.org/02phdp391', 'en', 1, 'https://ror.org/02phdp391 California Fire Science Consortium'),
(77284, 'https://ror.org/02pjjh503', 'no_lang_code', 1, 'https://ror.org/02pjjh503 Euphrates Vascular (United States)'),
(77285, 'https://ror.org/02pn8ev67', 'no_lang_code', 1, 'https://ror.org/02pn8ev67 AGC Interpane (Germany)'),
(77286, 'https://ror.org/02pnmfn82', 'en', 1, 'https://ror.org/02pnmfn82 Kanagawa Archeology Foundation ć‹ćŖćŒć‚č€ƒå¤å­¦č²”å›£'),
(77287, 'https://ror.org/02pqja087', 'no_lang_code', 1, 'https://ror.org/02pqja087 Engeneic (Australia)'),
(77288, 'https://ror.org/02prk5459', 'en', 1, 'https://ror.org/02prk5459 Saga Prefectural Museum ä½č³€ēœŒē«‹åšē‰©é¤Ø'),
(77289, 'https://ror.org/02ps3td80', 'no_lang_code', 1, 'https://ror.org/02ps3td80 Testco (United States)'),
(77290, 'https://ror.org/02psd3416', 'en', 1, 'https://ror.org/02psd3416 Islamic Azad University, Nowshahr Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ś†Ų§Ł„ŁˆŲ³'),
(77291, 'https://ror.org/02pspay39', 'no_lang_code', 1, 'https://ror.org/02pspay39 Eaton (Netherlands)'),
(77292, 'https://ror.org/02pth2p46', 'no_lang_code', 1, 'https://ror.org/02pth2p46 Radiometrics (United States)'),
(77293, 'https://ror.org/02pthay30', 'en', 1, 'https://ror.org/02pthay30 Wuxi Ninth People''s Hospital ę— é””åø‚ē¬¬ä¹äŗŗę°‘åŒ»é™¢'),
(77294, 'https://ror.org/02ptvta38', 'no_lang_code', 1, 'https://ror.org/02ptvta38 Nexstim (Finland)'),
(77295, 'https://ror.org/02pvg9820', 'no_lang_code', 1, 'https://ror.org/02pvg9820 StackFrame (United States)'),
(77296, 'https://ror.org/02pvp9c06', 'en', 1, 'https://ror.org/02pvp9c06 Indian Institute of Millets Research, ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą¤¦ą¤Øą„ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(77297, 'https://ror.org/02pxntn72', 'en', 1, 'https://ror.org/02pxntn72 Hebei Food Inspection and Research Institute ę²³åŒ—ēœé£Ÿå“ę£€éŖŒē ”ē©¶é™¢'),
(77298, 'https://ror.org/02pyb2524', 'no_lang_code', 1, 'https://ror.org/02pyb2524 Poly Medicure (India)'),
(77299, 'https://ror.org/02q0kch71', 'no_lang_code', 1, 'https://ror.org/02q0kch71 GenCat (United Kingdom)'),
(77300, 'https://ror.org/02q1v5813', 'en', 1, 'https://ror.org/02q1v5813 State Enterprise "L.I. Medved''s Research Center of Preventive Toxicology, Food and Chemical Safety" of the Ministry of Health of Ukraine ŠŠ°ŃƒŠŗŠ¾Š²ŠøŠ¹ центр превентивної токсикології, харчової та хімічної безпеки імені акаГеміка Š›.І. ŠœŠµŠ“Š²ŠµŠ“Ń ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š° охорони зГоров''я України'),
(77301, 'https://ror.org/02q2v3574', 'no_lang_code', 1, 'https://ror.org/02q2v3574 Research Applications (United States)'),
(77302, 'https://ror.org/02q4zda14', 'en', 1, 'https://ror.org/02q4zda14 Derby College'),
(77303, 'https://ror.org/02q6q3y87', 'fr', 1, 'https://ror.org/02q6q3y87 CHR Verviers'),
(77304, 'https://ror.org/02q86ra23', 'en', 1, 'https://ror.org/02q86ra23 Administrative Council for Economic Defense Conselho Administrativo de Defesa EconƓmica'),
(77305, 'https://ror.org/02q90qf63', 'no_lang_code', 1, 'https://ror.org/02q90qf63 Molecular Templates (United States)'),
(77306, 'https://ror.org/02q9rgg45', 'no_lang_code', 1, 'https://ror.org/02q9rgg45 Widetronix (United States)'),
(77307, 'https://ror.org/02qatsn60', 'en', 1, 'https://ror.org/02qatsn60 Itami City Museum ä¼Šäø¹åø‚ē«‹åšē‰©é¤Ø'),
(77308, 'https://ror.org/02qb5y674', 'no_lang_code', 1, 'https://ror.org/02qb5y674 SilcsBio (United States)'),
(77309, 'https://ror.org/02qbfgp41', 'en', 1, 'https://ror.org/02qbfgp41 MOA Museum of Art MOAē¾Žč”“é¤Ø'),
(77310, 'https://ror.org/02qbgx346', 'no_lang_code', 1, 'https://ror.org/02qbgx346 Schwan-Stabilo (Germany)'),
(77311, 'https://ror.org/02qchbs48', 'de', 1, 'https://ror.org/02qchbs48 Psychologische Hochschule Berlin'),
(77312, 'https://ror.org/02qdc7q41', 'en', 1, 'https://ror.org/02qdc7q41 Yunnan Center for Disease Control And Prevention äŗ‘å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(77313, 'https://ror.org/02qdhmt11', 'es', 1, 'https://ror.org/02qdhmt11 ClĆ­nica Santa MarĆ­a'),
(77314, 'https://ror.org/02qexn916', 'en', 1, 'https://ror.org/02qexn916 Fondazione Banca degli Occhi del Veneto Onlus Veneto Eye Bank Foundation'),
(77315, 'https://ror.org/02qfef581', 'en', 1, 'https://ror.org/02qfef581 Nordic Optical Telescope Scientific Association'),
(77316, 'https://ror.org/02qfkfg14', 'no_lang_code', 1, 'https://ror.org/02qfkfg14 Cresset (United Kingdom)'),
(77317, 'https://ror.org/02qft9w02', 'en', 1, 'https://ror.org/02qft9w02 Taiwan Electrical and Electronic Manufacturers’ Association å°ē£å€é›»ę©Ÿé›»å­å·„ę„­åŒę„­å…¬ęœƒ'),
(77318, 'https://ror.org/02qh6py59', 'en', 1, 'https://ror.org/02qh6py59 Advocata Institute'),
(77319, 'https://ror.org/02qhvm916', 'en', 1, 'https://ror.org/02qhvm916 Corporación de Fomento de la Producción de Chile Production Development Corporation'),
(77320, 'https://ror.org/02qjwrc97', 'no_lang_code', 1, 'https://ror.org/02qjwrc97 Northrop Grumman (United Kingdom)'),
(77321, 'https://ror.org/02qk0qj12', 'no_lang_code', 1, 'https://ror.org/02qk0qj12 Biedermann Motech (Germany)'),
(77322, 'https://ror.org/02qmk8t53', 'en', 1, 'https://ror.org/02qmk8t53 Mirai Hospital 会 みらい病院'),
(77323, 'https://ror.org/02qn3rx87', 'en', 1, 'https://ror.org/02qn3rx87 Doha Centre for Media Freedom Ł…Ų±ŁƒŲ² Ų§Ł„ŲÆŁˆŲ­Ų© Ł„Ų­Ų±ŁŠŲ© ال؄علام'),
(77324, 'https://ror.org/02qnx8e75', 'en', 1, 'https://ror.org/02qnx8e75 Institute of Marine Engineering Istituto di Ingegneria del Mare'),
(77325, 'https://ror.org/02qp1kv78', 'en', 1, 'https://ror.org/02qp1kv78 Cambridge Hands-On Science'),
(77326, 'https://ror.org/02qpxnp21', 'no_lang_code', 1, 'https://ror.org/02qpxnp21 Fontem Ventures (Netherlands)'),
(77327, 'https://ror.org/02qq0z290', 'no_lang_code', 1, 'https://ror.org/02qq0z290 Polarix (United States)'),
(77328, 'https://ror.org/02qrpm067', 'no_lang_code', 1, 'https://ror.org/02qrpm067 Topcon (United Kingdom)'),
(77329, 'https://ror.org/02qt0fz52', 'no_lang_code', 1, 'https://ror.org/02qt0fz52 Landeswasserversorgung (Germany)'),
(77330, 'https://ror.org/02qwdn481', 'no_lang_code', 1, 'https://ror.org/02qwdn481 Vivor (United States)'),
(77331, 'https://ror.org/02qwqem55', 'no_lang_code', 1, 'https://ror.org/02qwqem55 Hanazono Hospital čŠ±åœ’ē—…é™¢'),
(77332, 'https://ror.org/02qyv4b17', 'no_lang_code', 1, 'https://ror.org/02qyv4b17 ProCom (Germany)'),
(77333, 'https://ror.org/02qzz9528', 'no_lang_code', 1, 'https://ror.org/02qzz9528 BNP Paribas (China)'),
(77334, 'https://ror.org/02r30tp91', 'no_lang_code', 1, 'https://ror.org/02r30tp91 Thermedical (United States)'),
(77335, 'https://ror.org/02r5q4n43', 'de', 1, 'https://ror.org/02r5q4n43 Institut für Finanzdienstleistungen'),
(77336, 'https://ror.org/02r5t1b69', 'no_lang_code', 1, 'https://ror.org/02r5t1b69 X-Ability (Japan)'),
(77337, 'https://ror.org/02r6b5k11', 'no_lang_code', 1, 'https://ror.org/02r6b5k11 Sustainum Institut (Germany)'),
(77338, 'https://ror.org/02r6j5z05', 'no_lang_code', 1, 'https://ror.org/02r6j5z05 Bruin Biometrics (United States)'),
(77339, 'https://ror.org/02r6vby11', 'en', 1, 'https://ror.org/02r6vby11 Beijing Research and Design Institute of Rubber Industry åŒ—äŗ¬ę©”čƒ¶å·„äøšē ”ē©¶č®¾č®”é™¢'),
(77340, 'https://ror.org/02r8vvy38', 'no_lang_code', 1, 'https://ror.org/02r8vvy38 ProLynx (United States)'),
(77341, 'https://ror.org/02rcsxq19', 'no_lang_code', 1, 'https://ror.org/02rcsxq19 Eneos (Japan) ć‚Øćƒć‚Ŗć‚¹'),
(77342, 'https://ror.org/02rdd6b90', 'no_lang_code', 1, 'https://ror.org/02rdd6b90 Johner Institut (Germany)'),
(77343, 'https://ror.org/02rdrw497', 'no_lang_code', 1, 'https://ror.org/02rdrw497 Ebert Ingenieure (Germany)'),
(77344, 'https://ror.org/02rgxac86', 'no_lang_code', 1, 'https://ror.org/02rgxac86 Rayonix (United States)'),
(77345, 'https://ror.org/02rj0fp17', 'en', 1, 'https://ror.org/02rj0fp17 Pollinator Partnership'),
(77346, 'https://ror.org/02rj97169', 'no_lang_code', 1, 'https://ror.org/02rj97169 Drees & Sommer (Germany)'),
(77347, 'https://ror.org/02rjcc270', 'pt', 1, 'https://ror.org/02rjcc270 Australis Environmental Research and Monitoring Institute Instituto Australis, Instituto Australis de Pesquisa e Monitoramento Ambiental'),
(77348, 'https://ror.org/02rkcky47', 'en', 1, 'https://ror.org/02rkcky47 Henan Provincial Institute of Land and Resources Sciences ę²³å—ēœå›½åœŸčµ„ęŗē§‘å­¦ē ”ē©¶é™¢'),
(77349, 'https://ror.org/02rmvby88', 'de', 1, 'https://ror.org/02rmvby88 Institut für Angewandte Trainingswissenschaft'),
(77350, 'https://ror.org/02rnmms39', 'no_lang_code', 1, 'https://ror.org/02rnmms39 Phelps2020 (United States)'),
(77351, 'https://ror.org/02rpzt041', 'en', 1, 'https://ror.org/02rpzt041 Scientific Analysis Group'),
(77352, 'https://ror.org/02rs64x70', 'no_lang_code', 1, 'https://ror.org/02rs64x70 Ingenieurgesellschaft für Zuverlässigkeit und Prozessmodellierung (Germany)'),
(77353, 'https://ror.org/02rt9z237', 'no_lang_code', 1, 'https://ror.org/02rt9z237 Hindawi (United Kingdom)'),
(77354, 'https://ror.org/02rtpt551', 'no_lang_code', 1, 'https://ror.org/02rtpt551 Boehringer Ingelheim (Switzerland)'),
(77355, 'https://ror.org/02rv94a40', 'no_lang_code', 1, 'https://ror.org/02rv94a40 Shal Technologies (United States)'),
(77356, 'https://ror.org/02rvhvg10', 'no_lang_code', 1, 'https://ror.org/02rvhvg10 Ressler & Associates (United States)'),
(77357, 'https://ror.org/02s2g4x03', 'no_lang_code', 1, 'https://ror.org/02s2g4x03 OVM/ECH Consulting Engineers (Germany)'),
(77358, 'https://ror.org/02s2qpg90', 'en', 1, 'https://ror.org/02s2qpg90 Institute of Astronomy and National Astronomical Observatory'),
(77359, 'https://ror.org/02s4vwe47', 'no_lang_code', 1, 'https://ror.org/02s4vwe47 CINOGY Technologies (Germany)'),
(77360, 'https://ror.org/02s6c9b53', 'en', 1, 'https://ror.org/02s6c9b53 Israeli Association for the Study of Religions האגודה ×”×™×©×Ø××œ×™×Ŗ ×œ×—×§×Ø דתות'),
(77361, 'https://ror.org/02s79t061', 'no_lang_code', 1, 'https://ror.org/02s79t061 Odyssey Space Research (United States)'),
(77362, 'https://ror.org/02s7ck732', 'no_lang_code', 1, 'https://ror.org/02s7ck732 Wuhan Hankou Hospital ę­¦ę±‰åø‚ę±‰å£åŒ»é™¢'),
(77363, 'https://ror.org/02s8aez42', 'no_lang_code', 1, 'https://ror.org/02s8aez42 Amann Girrbach (Austria)'),
(77364, 'https://ror.org/02s8g2315', 'no_lang_code', 1, 'https://ror.org/02s8g2315 Photonic Associates (United States)'),
(77365, 'https://ror.org/02sb4r018', 'en', 1, 'https://ror.org/02sb4r018 Social Service Sericulture Project Trust'),
(77366, 'https://ror.org/02sbh2p55', 'no_lang_code', 1, 'https://ror.org/02sbh2p55 Nordex (Germany)'),
(77367, 'https://ror.org/02scwd732', 'no_lang_code', 1, 'https://ror.org/02scwd732 Squadron Capital (China)'),
(77368, 'https://ror.org/02sdxcs63', 'en', 1, 'https://ror.org/02sdxcs63 Flemish Institute for Archives Vlaams Instituut voor Archivering'),
(77369, 'https://ror.org/02se42q89', 'no_lang_code', 1, 'https://ror.org/02se42q89 Kraton (United States)'),
(77370, 'https://ror.org/02set1z89', 'no_lang_code', 1, 'https://ror.org/02set1z89 Sarda (United States)'),
(77371, 'https://ror.org/02sfaqg86', 'en', 1, 'https://ror.org/02sfaqg86 Defence Scientific Information & Documentation Centre'),
(77372, 'https://ror.org/02sfqqf20', 'no_lang_code', 1, 'https://ror.org/02sfqqf20 ACP Japan (Japan) ę—„ęœ¬ć‚Øćƒ¼ć‚·ćƒ¼ćƒ”ćƒ¼'),
(77373, 'https://ror.org/02sgk6s93', 'en', 1, 'https://ror.org/02sgk6s93 Nagano University of Health and Medicine é•·é‡Žäæå„åŒ»ē™‚å¤§å­¦'),
(77374, 'https://ror.org/02sh2va57', 'no_lang_code', 1, 'https://ror.org/02sh2va57 SpeechVive (United States)'),
(77375, 'https://ror.org/02sjajj43', 'no_lang_code', 1, 'https://ror.org/02sjajj43 IGM Group (Greece)'),
(77376, 'https://ror.org/02sjdcn27', 'no_lang_code', 1, 'https://ror.org/02sjdcn27 Huanggang Central Hospital'),
(77377, 'https://ror.org/02sjef513', 'no_lang_code', 1, 'https://ror.org/02sjef513 ScienceTomorrow (United States)'),
(77378, 'https://ror.org/02sjhcw37', 'no_lang_code', 1, 'https://ror.org/02sjhcw37 Accent Therapeutics (United States)'),
(77379, 'https://ror.org/02sjprm39', 'en', 1, 'https://ror.org/02sjprm39 Fuzhou Maternity and Child Health Care Hospital ē¦å·žåø‚å¦‡å¹¼äæå„é™¢'),
(77380, 'https://ror.org/02snjxm78', 'no_lang_code', 1, 'https://ror.org/02snjxm78 Jabil (United States)'),
(77381, 'https://ror.org/02sp9w679', 'sk', 1, 'https://ror.org/02sp9w679 Trojsten'),
(77382, 'https://ror.org/02sqk3z62', 'en', 1, 'https://ror.org/02sqk3z62 Changsha Normal University é•æę²™åøˆčŒƒå­¦é™¢'),
(77383, 'https://ror.org/02sqq3c53', 'no_lang_code', 1, 'https://ror.org/02sqq3c53 Next Energy Technologies (United States)'),
(77384, 'https://ror.org/02srfgm34', 'en', 1, 'https://ror.org/02srfgm34 Gibraltar Health Authority'),
(77385, 'https://ror.org/02srgbx34', 'en', 1, 'https://ror.org/02srgbx34 Chilika Development Authority'),
(77386, 'https://ror.org/02srtzw86', 'fr', 1, 'https://ror.org/02srtzw86 Centre Hospitalier Intercommunal Castres-Mazamet'),
(77387, 'https://ror.org/02sw2gr16', 'no_lang_code', 1, 'https://ror.org/02sw2gr16 Spiber (Japan)'),
(77388, 'https://ror.org/02sykmz69', 'en', 1, 'https://ror.org/02sykmz69 Czech-Moravian Guarantee and Development Bank'),
(77389, 'https://ror.org/02szjr188', 'en', 1, 'https://ror.org/02szjr188 Naval Science & Technological Laboratory'),
(77390, 'https://ror.org/02t061029', 'no_lang_code', 1, 'https://ror.org/02t061029 Fitbase'),
(77391, 'https://ror.org/02t1hg644', 'no_lang_code', 1, 'https://ror.org/02t1hg644 Dantec Dynamics (Denmark)'),
(77392, 'https://ror.org/02t1mbc20', 'no_lang_code', 1, 'https://ror.org/02t1mbc20 Nocturnal Product Development (United States)'),
(77393, 'https://ror.org/02t268r72', 'en', 1, 'https://ror.org/02t268r72 People''s Hospital of Shiyan åå °åø‚äŗŗę°‘åŒ»é™¢'),
(77394, 'https://ror.org/02t4kbq20', 'no_lang_code', 1, 'https://ror.org/02t4kbq20 Fagor Ederlan (Slovakia)'),
(77395, 'https://ror.org/02t7ezd72', 'de', 1, 'https://ror.org/02t7ezd72 Kulturpolitische Gesellschaft'),
(77396, 'https://ror.org/02ta43q50', 'no_lang_code', 1, 'https://ror.org/02ta43q50 Jülicher Entsorgungsgesellschaft für Nuklearanlagen (Germany)'),
(77397, 'https://ror.org/02taynh45', 'no_lang_code', 1, 'https://ror.org/02taynh45 SystƩmy Priemyselnej Informatiky (Slovakia)'),
(77398, 'https://ror.org/02tbgn381', 'en', 1, 'https://ror.org/02tbgn381 Microwave Tube Research & Development Centre'),
(77399, 'https://ror.org/02tbjbv63', 'no_lang_code', 1, 'https://ror.org/02tbjbv63 Sino Biological (China)'),
(77400, 'https://ror.org/02tcss727', 'no_lang_code', 1, 'https://ror.org/02tcss727 Oryn Therapeutics (United States)'),
(77401, 'https://ror.org/02tdxsk76', 'en', 1, 'https://ror.org/02tdxsk76 Fidelco Guide Dog Foundation'),
(77402, 'https://ror.org/02tdz2z81', 'en', 1, 'https://ror.org/02tdz2z81 International Investment Bank Nemzetkƶzi BeruhƔzƔsi Bank'),
(77403, 'https://ror.org/02te38114', 'no_lang_code', 1, 'https://ror.org/02te38114 Global Communication Semiconductors (United States)'),
(77404, 'https://ror.org/02teaer78', 'no_lang_code', 1, 'https://ror.org/02teaer78 BME Bergmann (Germany)'),
(77405, 'https://ror.org/02tejbs37', 'no_lang_code', 1, 'https://ror.org/02tejbs37 Plureon (United States)'),
(77406, 'https://ror.org/02tezkz55', 'no_lang_code', 1, 'https://ror.org/02tezkz55 Nephros (United States)'),
(77407, 'https://ror.org/02tk0sb78', 'no_lang_code', 1, 'https://ror.org/02tk0sb78 Josef Meissner (Germany)'),
(77408, 'https://ror.org/02tk5d259', 'no_lang_code', 1, 'https://ror.org/02tk5d259 Arotop Food & Environmet (Germany)'),
(77409, 'https://ror.org/02tkd3t39', 'de', 1, 'https://ror.org/02tkd3t39 WEK Tierarzt'),
(77410, 'https://ror.org/02tm1xq35', 'en', 1, 'https://ror.org/02tm1xq35 FATA University فاٹا ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ فاټا Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†ā€Ž'),
(77411, 'https://ror.org/02tmeqq57', 'id', 1, 'https://ror.org/02tmeqq57 Universitas Internasional Semen Indonesia'),
(77412, 'https://ror.org/02tnr6p29', 'no_lang_code', 1, 'https://ror.org/02tnr6p29 Roche (Tunisia)'),
(77413, 'https://ror.org/02tt19214', 'de', 1, 'https://ror.org/02tt19214 Steyler Mission'),
(77414, 'https://ror.org/02ttmc049', 'no_lang_code', 1, 'https://ror.org/02ttmc049 Accurate Solar Power (United States)'),
(77415, 'https://ror.org/02twaqp73', 'no_lang_code', 1, 'https://ror.org/02twaqp73 Berg (United States)'),
(77416, 'https://ror.org/02txken21', 'no_lang_code', 1, 'https://ror.org/02txken21 Tesla Laboratories (United States)'),
(77417, 'https://ror.org/02tya7134', 'no_lang_code', 1, 'https://ror.org/02tya7134 Touchstone (China)'),
(77418, 'https://ror.org/02tygfm80', 'en', 1, 'https://ror.org/02tygfm80 Institute of Policy Analysis and Research - Rwanda'),
(77419, 'https://ror.org/02tzsc576', 'no_lang_code', 1, 'https://ror.org/02tzsc576 Translate Bio (United States)'),
(77420, 'https://ror.org/02tzvyq07', 'no_lang_code', 1, 'https://ror.org/02tzvyq07 Perricone MD (United States)'),
(77421, 'https://ror.org/02v07kh10', 'en', 1, 'https://ror.org/02v07kh10 Federal Polytechnic Ede'),
(77422, 'https://ror.org/02v08db54', 'no_lang_code', 1, 'https://ror.org/02v08db54 Constellium (United Kingdom)'),
(77423, 'https://ror.org/02v21h460', 'no_lang_code', 1, 'https://ror.org/02v21h460 Finning (United Kingdom)'),
(77424, 'https://ror.org/02v2egw15', 'de', 1, 'https://ror.org/02v2egw15 Diakonie Deutschland'),
(77425, 'https://ror.org/02v388x60', 'en', 1, 'https://ror.org/02v388x60 Cheshire Image Bank'),
(77426, 'https://ror.org/02v4gph32', 'de', 1, 'https://ror.org/02v4gph32 VKTA'),
(77427, 'https://ror.org/02v5ekm10', 'no_lang_code', 1, 'https://ror.org/02v5ekm10 Probiotical (Italy)'),
(77428, 'https://ror.org/02v8v9r81', 'no_lang_code', 1, 'https://ror.org/02v8v9r81 Ichnos Sciences (United States)'),
(77429, 'https://ror.org/02v93s037', 'no_lang_code', 1, 'https://ror.org/02v93s037 Pressure Profile Systems (United States)'),
(77430, 'https://ror.org/02vact186', 'no_lang_code', 1, 'https://ror.org/02vact186 Tobii (United Kingdom)'),
(77431, 'https://ror.org/02vbwsy79', 'en', 1, 'https://ror.org/02vbwsy79 Australian Securities and Investments Commission'),
(77432, 'https://ror.org/02vf41z82', 'en', 1, 'https://ror.org/02vf41z82 Institute of Taiwan History, Academia Sinica äø­å¤®ē ”ē©¶é™¢č‡ŗē£å²ē ”ē©¶ę‰€ęŖ”ę”ˆé¤Ø'),
(77433, 'https://ror.org/02vfj3j86', 'no_lang_code', 1, 'https://ror.org/02vfj3j86 Shanghai Fudan Microelectronics (China) äøŠęµ·å¤ę—¦å¾®ē”µå­é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(77434, 'https://ror.org/02vg92y09', 'en', 1, 'https://ror.org/02vg92y09 Whittington Health NHS Trust'),
(77435, 'https://ror.org/02vhp3z89', 'no_lang_code', 1, 'https://ror.org/02vhp3z89 Gurulogic Microsystems (Finland)'),
(77436, 'https://ror.org/02vj4kn98', 'no_lang_code', 1, 'https://ror.org/02vj4kn98 Holoeye Photonics (Germany)'),
(77437, 'https://ror.org/02vnj6d40', 'no_lang_code', 1, 'https://ror.org/02vnj6d40 XCell Science (United States)'),
(77438, 'https://ror.org/02vqkgx45', 'no_lang_code', 1, 'https://ror.org/02vqkgx45 Staib Instruments (United States)'),
(77439, 'https://ror.org/02vrpj575', 'en', 1, 'https://ror.org/02vrpj575 Kyiv Academic University ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ АкаГемічний Університет'),
(77440, 'https://ror.org/02vs13w52', 'no_lang_code', 1, 'https://ror.org/02vs13w52 Pride Mobility Products (United States)'),
(77441, 'https://ror.org/02vt89g81', 'no_lang_code', 1, 'https://ror.org/02vt89g81 Norgine (Netherlands)'),
(77442, 'https://ror.org/02vtew340', 'no_lang_code', 1, 'https://ror.org/02vtew340 NextTechnologies (Hungary)'),
(77443, 'https://ror.org/02vtv9k98', 'no_lang_code', 1, 'https://ror.org/02vtv9k98 Muse Technologies (United States)'),
(77444, 'https://ror.org/02vv1hv80', 'no_lang_code', 1, 'https://ror.org/02vv1hv80 HealthpointCapital (United States)'),
(77445, 'https://ror.org/02vvkyr96', 'en', 1, 'https://ror.org/02vvkyr96 World Health Organization - Uganda'),
(77446, 'https://ror.org/02vya1t32', 'fr', 1, 'https://ror.org/02vya1t32 Conseil RƩgional de l''Environnement du Bas-Saint-Laurent'),
(77447, 'https://ror.org/02vygm709', 'en', 1, 'https://ror.org/02vygm709 Incheon Medical Center ģøģ²œź“‘ģ—­ģ‹œģ˜ė£Œģ›'),
(77448, 'https://ror.org/02vz2wq60', 'en', 1, 'https://ror.org/02vz2wq60 Global Alliance to Prevent Prematurity and Stillbirth'),
(77449, 'https://ror.org/02vzcwk04', 'no_lang_code', 1, 'https://ror.org/02vzcwk04 Vesperix (United States)'),
(77450, 'https://ror.org/02w28c661', 'de', 1, 'https://ror.org/02w28c661 Institut für Kunststofftechnologie und -recycling'),
(77451, 'https://ror.org/02w4qet09', 'no_lang_code', 1, 'https://ror.org/02w4qet09 Protean Electric (United Kingdom)'),
(77452, 'https://ror.org/02w5mt348', 'no_lang_code', 1, 'https://ror.org/02w5mt348 Corvia Medical (United States)'),
(77453, 'https://ror.org/02w5xy446', 'en', 1, 'https://ror.org/02w5xy446 CAS Key Laboratory of Urban Pollutant Conversion äø­å›½ē§‘å­¦é™¢åŸŽåø‚ę±”ęŸ“ē‰©č½¬åŒ–é‡ē‚¹å®žéŖŒå®¤'),
(77454, 'https://ror.org/02w6mtg63', 'no_lang_code', 1, 'https://ror.org/02w6mtg63 Cantel Medical (United States)'),
(77455, 'https://ror.org/02w6r3410', 'no_lang_code', 1, 'https://ror.org/02w6r3410 Nymox (Canada)'),
(77456, 'https://ror.org/02w7mbz57', 'no_lang_code', 1, 'https://ror.org/02w7mbz57 Staton (Slovakia)'),
(77457, 'https://ror.org/02wcjva51', 'en', 1, 'https://ror.org/02wcjva51 Institute of Forest Productivity वन ą¤‰ą¤¤ą„ą¤Ŗą¤¾ą¤¦ą¤•ą¤¤ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(77458, 'https://ror.org/02wcq1q49', 'es', 1, 'https://ror.org/02wcq1q49 Fundacio Investigacio Hospital General Universitari De Valencia'),
(77459, 'https://ror.org/02weav903', 'no_lang_code', 1, 'https://ror.org/02weav903 Comet (Switzerland)'),
(77460, 'https://ror.org/02wewap38', 'en', 1, 'https://ror.org/02wewap38 Ngaanyatjarra Health Service'),
(77461, 'https://ror.org/02whnz742', 'no_lang_code', 1, 'https://ror.org/02whnz742 Daio Paper Corporation (Japan)'),
(77462, 'https://ror.org/02wrv8c89', 'en', 1, 'https://ror.org/02wrv8c89 Central Cotton Research Institute'),
(77463, 'https://ror.org/02ws27m94', 'no_lang_code', 1, 'https://ror.org/02ws27m94 Besi (Netherlands)'),
(77464, 'https://ror.org/02wt4s775', 'en', 1, 'https://ror.org/02wt4s775 Naval Air Warfare Center Training Systems Division'),
(77465, 'https://ror.org/02wtsp571', 'en', 1, 'https://ror.org/02wtsp571 Hawke''s Bay Regional Council, Te Kaunihera ā-Rohe o Te Matau-a-Māui'),
(77466, 'https://ror.org/02wvs7998', 'no_lang_code', 1, 'https://ror.org/02wvs7998 SES Group & Associates (United States)'),
(77467, 'https://ror.org/02x0rn474', 'en', 1, 'https://ror.org/02x0rn474 Taiwan External Trade Development Council äø­čÆę°‘åœ‹å°å¤–č²æę˜“ē™¼å±•å”ęœƒ'),
(77468, 'https://ror.org/02x0x2d91', 'en', 1, 'https://ror.org/02x0x2d91 Yancheng Second People''s Hospital ē›åŸŽåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(77469, 'https://ror.org/02x33sm05', 'en', 1, 'https://ror.org/02x33sm05 GoodPlanet Belgium'),
(77470, 'https://ror.org/02x5h6n54', 'no_lang_code', 1, 'https://ror.org/02x5h6n54 Silab (France)'),
(77471, 'https://ror.org/02x5sw589', 'en', 1, 'https://ror.org/02x5sw589 Anyang Hospital of Traditional Chinese Medicine å®‰é˜³åø‚äø­åŒ»é™¢'),
(77472, 'https://ror.org/02x760e19', 'en', 1, 'https://ror.org/02x760e19 Fuyang Maternity and Child Health Care Hospital é˜œé˜³åø‚å¦‡å„³å„æē«„åŒ»é™¢'),
(77473, 'https://ror.org/02x7pye76', 'no_lang_code', 1, 'https://ror.org/02x7pye76 Sulzer (United States)'),
(77474, 'https://ror.org/02x8c2t37', 'no_lang_code', 1, 'https://ror.org/02x8c2t37 Inform (Germany)'),
(77475, 'https://ror.org/02x8kt557', 'no_lang_code', 1, 'https://ror.org/02x8kt557 Impedimed (Australia)'),
(77476, 'https://ror.org/02x8ye509', 'no_lang_code', 1, 'https://ror.org/02x8ye509 Innovation Cluster (Canada)'),
(77477, 'https://ror.org/02xae6c61', 'en', 1, 'https://ror.org/02xae6c61 Wuhu No 1 People''s Hospital čŠœę¹–åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(77478, 'https://ror.org/02xbm4h96', 'no_lang_code', 1, 'https://ror.org/02xbm4h96 Shikoku (Japan) å››å›½åŒ–ęˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(77479, 'https://ror.org/02xe0vx90', 'no_lang_code', 1, 'https://ror.org/02xe0vx90 Energy & Meteo Systems (Germany)'),
(77480, 'https://ror.org/02xf4n450', 'no_lang_code', 1, 'https://ror.org/02xf4n450 IEF-Werner (Germany)'),
(77481, 'https://ror.org/02xg9a459', 'en', 1, 'https://ror.org/02xg9a459 Duchenne UK'),
(77482, 'https://ror.org/02xh1tf34', 'en', 1, 'https://ror.org/02xh1tf34 Global Earthquake Model'),
(77483, 'https://ror.org/02xhgtj20', 'fr', 1, 'https://ror.org/02xhgtj20 HƓpital Marin de Hendaye'),
(77484, 'https://ror.org/02xk7ft96', 'en', 1, 'https://ror.org/02xk7ft96 Department of Humanities and Arts ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½Ń‹Ń… навук і Š¼Š°ŃŃ‚Š°Ń†Ń‚Š²Š°Ńž ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… наук Šø ŠøŃŠŗŃƒŃŃŃ‚Š² ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(77485, 'https://ror.org/02xmm1048', 'nl', 1, 'https://ror.org/02xmm1048 Willem-Alexander Kinderziekenhuis'),
(77486, 'https://ror.org/02xmsdw39', 'en', 1, 'https://ror.org/02xmsdw39 International Centre for Tax and Development'),
(77487, 'https://ror.org/02xnb4v27', 'en', 1, 'https://ror.org/02xnb4v27 National Center for AIDS/STD Control and Prevention,China CDC ę€§ē—…č‰¾ę»‹ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(77488, 'https://ror.org/02xpk4806', 'en', 1, 'https://ror.org/02xpk4806 VA Southern Nevada Healthcare System'),
(77489, 'https://ror.org/02xr5pg48', 'de', 1, 'https://ror.org/02xr5pg48 Stiftung Umweltenergierecht'),
(77490, 'https://ror.org/02xr5ws27', 'en', 1, 'https://ror.org/02xr5ws27 Andhra Pradesh Forest Department ą°†ą°‚ą°§ą±ą°°ą°Ŗą±ą°°ą°¦ą±‡ą°¶ą± ą°…ą°Ÿą°µą±€ శాఖ'),
(77491, 'https://ror.org/02xrvxv47', 'no_lang_code', 1, 'https://ror.org/02xrvxv47 Phoenix Analysis and Design Technologies (United States)'),
(77492, 'https://ror.org/02xs43q30', 'no_lang_code', 1, 'https://ror.org/02xs43q30 American Med Systems (United States)'),
(77493, 'https://ror.org/02xse0222', 'no_lang_code', 1, 'https://ror.org/02xse0222 Rhizen Pharmaceuticals (Switzerland)'),
(77494, 'https://ror.org/02xsn7259', 'en', 1, 'https://ror.org/02xsn7259 Southern California Institute of Architecture'),
(77495, 'https://ror.org/02xv4ae75', 'de', 1, 'https://ror.org/02xv4ae75 LKH Hochsteiermark'),
(77496, 'https://ror.org/02xwh7n36', 'en', 1, 'https://ror.org/02xwh7n36 Conseil International des InfirmiĆØres International Council of Nurses'),
(77497, 'https://ror.org/02xx2e359', 'no_lang_code', 1, 'https://ror.org/02xx2e359 Benvenue Medical (United States)'),
(77498, 'https://ror.org/02xx9xx26', 'de', 1, 'https://ror.org/02xx9xx26 Dresdner Grundwasserforschungszentrum'),
(77499, 'https://ror.org/02xxmzs04', 'en', 1, 'https://ror.org/02xxmzs04 Wildlife Vets International'),
(77500, 'https://ror.org/02xy6bg05', 'en', 1, 'https://ror.org/02xy6bg05 Inner Mongolia Comprehensive Disease Prevention and Control Center å†…č’™å¤ē»¼åˆē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(77501, 'https://ror.org/02xzap828', 'no_lang_code', 1, 'https://ror.org/02xzap828 Afrobarometer'),
(77502, 'https://ror.org/02xzmkb45', 'no_lang_code', 1, 'https://ror.org/02xzmkb45 Infraserv (Germany)'),
(77503, 'https://ror.org/02y05ge92', 'en', 1, 'https://ror.org/02y05ge92 Hessian Agency for Nature Conservation, Environment and Geology Hessisches Landesamt für Naturschutz, Umwelt und Geologie'),
(77504, 'https://ror.org/02y1msw11', 'en', 1, 'https://ror.org/02y1msw11 Nature And Biodiversity Conservation Union Naturschutzbund Deutschland'),
(77505, 'https://ror.org/02y3xky07', 'no_lang_code', 1, 'https://ror.org/02y3xky07 Spectabit Optics (United States)'),
(77506, 'https://ror.org/02y5eka83', 'de', 1, 'https://ror.org/02y5eka83 Industriegewerkschaft Bauen-Agrar-Umwelt'),
(77507, 'https://ror.org/02y5r2j71', 'no_lang_code', 1, 'https://ror.org/02y5r2j71 SpiŔcol (Slovakia)'),
(77508, 'https://ror.org/02y5zge30', 'no_lang_code', 1, 'https://ror.org/02y5zge30 Gene Signal (Switzerland)'),
(77509, 'https://ror.org/02y8ft411', 'no_lang_code', 1, 'https://ror.org/02y8ft411 Rohto Pharmaceutical (Japan) ćƒ­ćƒ¼ćƒˆč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(77510, 'https://ror.org/02y8n9198', 'en', 1, 'https://ror.org/02y8n9198 Renewable Energy Alaska Project'),
(77511, 'https://ror.org/02y8r3w10', 'no_lang_code', 1, 'https://ror.org/02y8r3w10 Terra Quantum (Switzerland)'),
(77512, 'https://ror.org/02y97xx28', 'en', 1, 'https://ror.org/02y97xx28 Ilustre Colegio Nacional de Doctores y Licenciados en Ciencias PolĆ­ticas y SociologĆ­a Professional Association of Sociologists and Political Scientists'),
(77513, 'https://ror.org/02y9rwc40', 'no_lang_code', 1, 'https://ror.org/02y9rwc40 U-blox (Switzerland)'),
(77514, 'https://ror.org/02ycdjn07', 'en', 1, 'https://ror.org/02ycdjn07 Foundation Yamanashi Cultural Property Research Institute å±±ę¢Øę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(77515, 'https://ror.org/02ydkfh68', 'en', 1, 'https://ror.org/02ydkfh68 Defence Institute of Bio-Energy Research'),
(77516, 'https://ror.org/02yfrka70', 'no_lang_code', 1, 'https://ror.org/02yfrka70 SciClone Pharmaceuticals (United States)'),
(77517, 'https://ror.org/02yh27171', 'en', 1, 'https://ror.org/02yh27171 Edexcel University Institut Universitaire Edexcel du BƩnin'),
(77518, 'https://ror.org/02yjj0827', 'en', 1, 'https://ror.org/02yjj0827 Canberra Innovation Network'),
(77519, 'https://ror.org/02ykkkr84', 'no_lang_code', 1, 'https://ror.org/02ykkkr84 Klƶckner (United Kingdom)'),
(77520, 'https://ror.org/02ypd0j53', 'en', 1, 'https://ror.org/02ypd0j53 Independent Institute for Environmental Issues Unabhängiges Institut für Umweltfragen'),
(77521, 'https://ror.org/02yr91f43', 'no_lang_code', 1, 'https://ror.org/02yr91f43 Hainan Center for Disease Control & Prevention ęµ·å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(77522, 'https://ror.org/02yrf1a56', 'en', 1, 'https://ror.org/02yrf1a56 Arctic Borderlands Ecological Knowledge Society'),
(77523, 'https://ror.org/02ystve88', 'no_lang_code', 1, 'https://ror.org/02ystve88 Sugen Life Sciences (India)'),
(77524, 'https://ror.org/02yvvjj13', 'no_lang_code', 1, 'https://ror.org/02yvvjj13 Cornelsen (Germany)'),
(77525, 'https://ror.org/02ywgn354', 'en', 1, 'https://ror.org/02ywgn354 Forschungsinstitut für Arbeit, Technik und Kultur Research Institute for Work, Technology and Culture'),
(77526, 'https://ror.org/02ywmxs27', 'no_lang_code', 1, 'https://ror.org/02ywmxs27 Nousouken (Japan) ę Ŗå¼ä¼šē¤¾č¾²ę„­ē·åˆē ”ē©¶ę‰€'),
(77527, 'https://ror.org/02yxqev59', 'no_lang_code', 1, 'https://ror.org/02yxqev59 Vistec Electron Beam (Germany)'),
(77528, 'https://ror.org/02yyjsa15', 'no_lang_code', 1, 'https://ror.org/02yyjsa15 MicroAire (United States)'),
(77529, 'https://ror.org/02yyy2c79', 'en', 1, 'https://ror.org/02yyy2c79 Kenya Paediatric Research Consortium'),
(77530, 'https://ror.org/02yz89636', 'en', 1, 'https://ror.org/02yz89636 Sį»ž Y Tįŗ¾ THANH HƓA Thanh Hoa Department of Health'),
(77531, 'https://ror.org/02z2wvt20', 'en', 1, 'https://ror.org/02z2wvt20 Heilongjiang Provincial Environmental Science Research Institute é»‘é¾™ę±ŸēœēŽÆå¢ƒäæęŠ¤ē ”ē©¶ę‰€'),
(77532, 'https://ror.org/02z36hk60', 'no_lang_code', 1, 'https://ror.org/02z36hk60 Virent (United States)');
INSERT INTO `rors` VALUES
(77533, 'https://ror.org/02z3t4v81', 'es', 1, 'https://ror.org/02z3t4v81 Programa de Salud Global'),
(77534, 'https://ror.org/02z480994', 'no_lang_code', 1, 'https://ror.org/02z480994 BenevolentAI (United Kingdom)'),
(77535, 'https://ror.org/02z4esg96', 'de', 1, 'https://ror.org/02z4esg96 Landesanstalt für Landwirtschaft und Gartenbau'),
(77536, 'https://ror.org/02z7b0p22', 'de', 1, 'https://ror.org/02z7b0p22 Faktor 10 – Institut für nachhaltiges Wirtschaften gemeinnützige'),
(77537, 'https://ror.org/02z809f45', 'no_lang_code', 1, 'https://ror.org/02z809f45 Novekon (Slovakia)'),
(77538, 'https://ror.org/02z8azv60', 'no_lang_code', 1, 'https://ror.org/02z8azv60 LDI Innovation (Estonia)'),
(77539, 'https://ror.org/02z8fgy02', 'no_lang_code', 1, 'https://ror.org/02z8fgy02 Terumo Aortic (United Kingdom)'),
(77540, 'https://ror.org/02z8nwe60', 'no_lang_code', 1, 'https://ror.org/02z8nwe60 Ushio (Germany)'),
(77541, 'https://ror.org/02z96c921', 'no_lang_code', 1, 'https://ror.org/02z96c921 Institut für Normenmanagement (Germany)'),
(77542, 'https://ror.org/02z9t3v16', 'no_lang_code', 1, 'https://ror.org/02z9t3v16 BioDerm (United States)'),
(77543, 'https://ror.org/02zb58m60', 'no_lang_code', 1, 'https://ror.org/02zb58m60 Flowserve (Germany)'),
(77544, 'https://ror.org/02zb6h937', 'de', 1, 'https://ror.org/02zb6h937 Institut Mensch, Ethik und Wissenschaft'),
(77545, 'https://ror.org/02zcn6j48', 'en', 1, 'https://ror.org/02zcn6j48 World Marrow Donor Association'),
(77546, 'https://ror.org/02zehhs18', 'en', 1, 'https://ror.org/02zehhs18 South African Agency for Science and Technology Advancement'),
(77547, 'https://ror.org/02zek1917', 'no_lang_code', 1, 'https://ror.org/02zek1917 RaQualia Pharma (Japan) ćƒ©ć‚Æć‚ŖćƒŖć‚¢å‰µč–¬'),
(77548, 'https://ror.org/02zf60h18', 'no_lang_code', 1, 'https://ror.org/02zf60h18 United Language Group (United States)'),
(77549, 'https://ror.org/02zfaen51', 'en', 1, 'https://ror.org/02zfaen51 The Medical Foundation'),
(77550, 'https://ror.org/02zftdf95', 'no_lang_code', 1, 'https://ror.org/02zftdf95 Savaria (Canada)'),
(77551, 'https://ror.org/02zjgn863', 'en', 1, 'https://ror.org/02zjgn863 Diabetes in Asia Study Group'),
(77552, 'https://ror.org/02zjks284', 'en', 1, 'https://ror.org/02zjks284 European Federation for the Science and Technology of Lipids'),
(77553, 'https://ror.org/02zm0dd24', 'es', 1, 'https://ror.org/02zm0dd24 Asociación Mexicana de Psicología y Desarrollo Comunitario Mexican Association of Psychology and Community Development'),
(77554, 'https://ror.org/02zmj9y60', 'en', 1, 'https://ror.org/02zmj9y60 South African Medical Association'),
(77555, 'https://ror.org/02zscxx64', 'no_lang_code', 1, 'https://ror.org/02zscxx64 Electrosciences (United Kingdom)'),
(77556, 'https://ror.org/02zsyv822', 'en', 1, 'https://ror.org/02zsyv822 Parliament of Ghana'),
(77557, 'https://ror.org/02ztbx464', 'no_lang_code', 1, 'https://ror.org/02ztbx464 Conventus Orthopaedics (United States)'),
(77558, 'https://ror.org/02ztgqr61', 'en', 1, 'https://ror.org/02ztgqr61 Bhailalbhai and Bhikhabhai Institute of Technology ભાઈલાલભાઈ ąŖąŖØą«ąŖ” ąŖ­ą«€ąŖ–ąŖ¾ąŖ­ąŖ¾ąŖˆ ąŖ‡ąŖØą«ąŖøą«ąŖŸąŖæąŖŸą«ąŖÆą«‚ąŖŸ ąŖ“ąŖ« ąŖŸą«‡ąŖ•ą«ąŖØą«‹ąŖ²ą«‹ąŖœą«€'),
(77559, 'https://ror.org/02zvd3556', 'en', 1, 'https://ror.org/02zvd3556 Okinawa Academy College ę²–ēø„ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼å°‚é–€å­¦ę ”'),
(77560, 'https://ror.org/02zvmwy36', 'no_lang_code', 1, 'https://ror.org/02zvmwy36 NICO (United States)'),
(77561, 'https://ror.org/02zw6k693', 'es', 1, 'https://ror.org/02zw6k693 Parque Explora'),
(77562, 'https://ror.org/02zx0np06', 'no_lang_code', 1, 'https://ror.org/02zx0np06 Indian Ocean Medical Trading (Somalia)'),
(77563, 'https://ror.org/02zxrsc32', 'en', 1, 'https://ror.org/02zxrsc32 Institut zа Jаvnо Zdrаvstvо Rеpublikе Srpskе Public Health Institute of the Republic of Srpska'),
(77564, 'https://ror.org/02zxs5p14', 'no_lang_code', 1, 'https://ror.org/02zxs5p14 VSL Software (Slovakia)'),
(77565, 'https://ror.org/02zyr1680', 'nl', 1, 'https://ror.org/02zyr1680 Beatrix Kinderziekenhuis'),
(77566, 'https://ror.org/02zzdas25', 'no_lang_code', 1, 'https://ror.org/02zzdas25 Precision Spine (United States)'),
(77567, 'https://ror.org/0300c1598', 'en', 1, 'https://ror.org/0300c1598 Gurukul School of Design'),
(77568, 'https://ror.org/0301tkm88', 'no_lang_code', 1, 'https://ror.org/0301tkm88 HeartFlow (United States)'),
(77569, 'https://ror.org/0303cgc60', 'no_lang_code', 1, 'https://ror.org/0303cgc60 Ball Horticultural (United States)'),
(77570, 'https://ror.org/0303j9k30', 'no_lang_code', 1, 'https://ror.org/0303j9k30 Institut für Betriebliche Bildung und Unternehmenskultur (Germany)'),
(77571, 'https://ror.org/0303jkh46', 'de', 1, 'https://ror.org/0303jkh46 Institut für Sozialarbeit und Sozialpädagogik'),
(77572, 'https://ror.org/030503z05', 'no_lang_code', 1, 'https://ror.org/030503z05 ONL Therapeutic (United States)'),
(77573, 'https://ror.org/0305gdg87', 'en', 1, 'https://ror.org/0305gdg87 The First People''s Hospital of Tianmen å¤©é—Øåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(77574, 'https://ror.org/03062bd88', 'en', 1, 'https://ror.org/03062bd88 Academic Bridge Program'),
(77575, 'https://ror.org/0306mex37', 'de', 1, 'https://ror.org/0306mex37 Hochschul Informations System'),
(77576, 'https://ror.org/0308fvb52', 'en', 1, 'https://ror.org/0308fvb52 Science and Development Network'),
(77577, 'https://ror.org/03098r397', 'en', 1, 'https://ror.org/03098r397 Adaptive Physical Education'),
(77578, 'https://ror.org/0309xc572', 'no_lang_code', 1, 'https://ror.org/0309xc572 Frontline Medical Products (United States)'),
(77579, 'https://ror.org/030aq8r67', 'no_lang_code', 1, 'https://ror.org/030aq8r67 Biocartis (Belgium)'),
(77580, 'https://ror.org/030bwht90', 'de', 1, 'https://ror.org/030bwht90 Bayerisches Landeskriminalamt'),
(77581, 'https://ror.org/030d0y072', 'no_lang_code', 1, 'https://ror.org/030d0y072 Fischer Group (Germany)'),
(77582, 'https://ror.org/030jfpr63', 'no_lang_code', 1, 'https://ror.org/030jfpr63 Novalia (United Kingdom)'),
(77583, 'https://ror.org/030p2pd90', 'en', 1, 'https://ror.org/030p2pd90 Scientific Research Institute of Healthcare Organization and Medical Management ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ организации Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø меГицинского менеГжмента'),
(77584, 'https://ror.org/030pq6x19', 'no_lang_code', 1, 'https://ror.org/030pq6x19 Cynora (Germany)'),
(77585, 'https://ror.org/030qw5707', 'no_lang_code', 1, 'https://ror.org/030qw5707 Institut für Experimentelle Psychophysiologie Institute for Experimental Psychophysiology (Germany)'),
(77586, 'https://ror.org/030shh572', 'no_lang_code', 1, 'https://ror.org/030shh572 Future Science Group (United Kingdom)'),
(77587, 'https://ror.org/030t3gw93', 'de', 1, 'https://ror.org/030t3gw93 Institut für Praxisforschung und Projektberatung'),
(77588, 'https://ror.org/030w4f316', 'no_lang_code', 1, 'https://ror.org/030w4f316 Nemera (France)'),
(77589, 'https://ror.org/030wmwa35', 'en', 1, 'https://ror.org/030wmwa35 Agentur für Erneuerbare Energien Renewable Energies Agency'),
(77590, 'https://ror.org/030x88e61', 'no_lang_code', 1, 'https://ror.org/030x88e61 Micron Semiconductor (United Kingdom)'),
(77591, 'https://ror.org/030ygf420', 'no_lang_code', 1, 'https://ror.org/030ygf420 Simphotek (United States)'),
(77592, 'https://ror.org/030z01v61', 'no_lang_code', 1, 'https://ror.org/030z01v61 ISHIFUKU (Japan) ēŸ³ē¦é‡‘å±žčˆˆę„­'),
(77593, 'https://ror.org/030z2kw43', 'en', 1, 'https://ror.org/030z2kw43 Museum of Natural and Environmental History, Shizuoka ćµć˜ć®ćć«åœ°ēƒē’°å¢ƒå²ćƒŸćƒ„ćƒ¼ć‚øć‚¢ćƒ '),
(77594, 'https://ror.org/030zcqn97', 'en', 1, 'https://ror.org/030zcqn97 Ningbo Medical Center Lihuili Hospital å®ę³¢åø‚åŒ»ē–—äø­åæƒęŽęƒ åˆ©åŒ»é™¢'),
(77595, 'https://ror.org/030zkp092', 'pt', 1, 'https://ror.org/030zkp092 Instituto Superior de Ciências de Educação à Distância'),
(77596, 'https://ror.org/0311vkn02', 'no_lang_code', 1, 'https://ror.org/0311vkn02 Qinghai New Energy (China)'),
(77597, 'https://ror.org/0312mdb50', 'no_lang_code', 1, 'https://ror.org/0312mdb50 Hans Raj Mahila Maha Vidyalaya ਹੰਸ ਰਾਜ ਮਹਿਲਾ ਮਹਾ ਵਿਦਿਆਲਾ'),
(77598, 'https://ror.org/0312nky31', 'en', 1, 'https://ror.org/0312nky31 Infection Control Africa Network'),
(77599, 'https://ror.org/03160qy64', 'no_lang_code', 1, 'https://ror.org/03160qy64 Cardiac Dimensions (United States)'),
(77600, 'https://ror.org/03170wz23', 'no_lang_code', 1, 'https://ror.org/03170wz23 Hochbahn (Germany)'),
(77601, 'https://ror.org/0317a1b85', 'no_lang_code', 1, 'https://ror.org/0317a1b85 Onto Innovation (United States)'),
(77602, 'https://ror.org/0317mkd29', 'no_lang_code', 1, 'https://ror.org/0317mkd29 Interfels (Germany)'),
(77603, 'https://ror.org/03191tc24', 'no_lang_code', 1, 'https://ror.org/03191tc24 Sembid'),
(77604, 'https://ror.org/031aa5q21', 'en', 1, 'https://ror.org/031aa5q21 Kabardino-Balkarian Scientific Center ŠšŠŠ‘ŠŠ Š”Š˜ŠŠž-Š‘ŠŠ›ŠšŠŠ Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠ«Š™ Š¦Š•ŠŠ¢Š  Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ ŠŠšŠŠ”Š•ŠœŠ˜Š˜ ŠŠŠ£Šš'),
(77605, 'https://ror.org/031cw6h45', 'no_lang_code', 1, 'https://ror.org/031cw6h45 I.C. Medical (United States)'),
(77606, 'https://ror.org/031cz5x07', 'no_lang_code', 1, 'https://ror.org/031cz5x07 Muehlhan (Germany)'),
(77607, 'https://ror.org/031eap517', 'en', 1, 'https://ror.org/031eap517 Delhi Development Authority ą¤¦ą¤æą¤²ą„ą¤²ą„€ विकास ą¤Ŗą„ą¤°ą¤¾ą¤§ą¤æą¤•ą¤°ą¤£'),
(77608, 'https://ror.org/031g2ra50', 'en', 1, 'https://ror.org/031g2ra50 PLA Air Force Aviation University äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›čˆŖē©ŗå¤§å­¦'),
(77609, 'https://ror.org/031jemm23', 'no_lang_code', 1, 'https://ror.org/031jemm23 Pharnext (France)'),
(77610, 'https://ror.org/031jzas57', 'no_lang_code', 1, 'https://ror.org/031jzas57 Silixa (United Kingdom)'),
(77611, 'https://ror.org/031mqp384', 'no_lang_code', 1, 'https://ror.org/031mqp384 Zhong Ke San Huan (China) äø­ē§‘äø‰ēŽÆ'),
(77612, 'https://ror.org/031pj9222', 'de', 1, 'https://ror.org/031pj9222 Hygiene-Institut des Ruhrgebiets'),
(77613, 'https://ror.org/031q2en94', 'en', 1, 'https://ror.org/031q2en94 Institute for Small Business Economics Volkswirtschaftliches Institut für Mittelstand und Handwerk an der Universität Göttingen'),
(77614, 'https://ror.org/031sbqx87', 'en', 1, 'https://ror.org/031sbqx87 Food, Beverages and Catering Union Gewerkschaft Nahrung-Genuss-GaststƤtten'),
(77615, 'https://ror.org/031sjre66', 'no_lang_code', 1, 'https://ror.org/031sjre66 JIT Labs (United States)'),
(77616, 'https://ror.org/031sr2181', 'en', 1, 'https://ror.org/031sr2181 South African Sugarcane Research Institute'),
(77617, 'https://ror.org/031xq8953', 'no_lang_code', 1, 'https://ror.org/031xq8953 Becker Photonik (Germany)'),
(77618, 'https://ror.org/032133427', 'no_lang_code', 1, 'https://ror.org/032133427 Lumenis (Israel)'),
(77619, 'https://ror.org/0321yg140', 'no_lang_code', 1, 'https://ror.org/0321yg140 Celularity (United States)'),
(77620, 'https://ror.org/03224rx59', 'en', 1, 'https://ror.org/03224rx59 Animal Husbandry and Veterinary Department'),
(77621, 'https://ror.org/03225mv93', 'de', 1, 'https://ror.org/03225mv93 MuseumspƤdagogische Zentrum'),
(77622, 'https://ror.org/032296482', 'no_lang_code', 1, 'https://ror.org/032296482 MAM Babyartikel (Germany)'),
(77623, 'https://ror.org/0322cev20', 'no_lang_code', 1, 'https://ror.org/0322cev20 Affectiva (United States)'),
(77624, 'https://ror.org/03233xn13', 'no_lang_code', 1, 'https://ror.org/03233xn13 Torc Robotics (United States)'),
(77625, 'https://ror.org/0324t6t86', 'en', 1, 'https://ror.org/0324t6t86 Elaine Roberts Foundation'),
(77626, 'https://ror.org/0329af416', 'en', 1, 'https://ror.org/0329af416 Central Institute of Technology Kokrajhar ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą„‹ą¤•ą¤°ą¤¾ą¤ą¤¾ą¤°'),
(77627, 'https://ror.org/032akv382', 'no_lang_code', 1, 'https://ror.org/032akv382 Aurinia (Canada)'),
(77628, 'https://ror.org/032ddhe09', 'sk', 1, 'https://ror.org/032ddhe09 StrednÔ OdbornÔ Skola Lesnícka TvrdoŔín'),
(77629, 'https://ror.org/032dee662', 'en', 1, 'https://ror.org/032dee662 Southern District Health Board'),
(77630, 'https://ror.org/032dz8133', 'no_lang_code', 1, 'https://ror.org/032dz8133 Gurit (United Kingdom)'),
(77631, 'https://ror.org/032e2dp71', 'en', 1, 'https://ror.org/032e2dp71 China Business Executives Academy äø­å›½å¤§čæžé«˜ēŗ§ē»ē†å­¦é™¢'),
(77632, 'https://ror.org/032e3d072', 'en', 1, 'https://ror.org/032e3d072 Institute of Wetland Research äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ę¹æåœ°ē ”ē©¶ę‰€'),
(77633, 'https://ror.org/032fpkt80', 'de', 1, 'https://ror.org/032fpkt80 Institut für Gewässerschutz Mesocosm, Mesocosm'),
(77634, 'https://ror.org/032g5d438', 'no_lang_code', 1, 'https://ror.org/032g5d438 Xona Microfluidics (United States)'),
(77635, 'https://ror.org/032hxhk43', 'no_lang_code', 1, 'https://ror.org/032hxhk43 Polynt (Italy)'),
(77636, 'https://ror.org/032j81x58', 'en', 1, 'https://ror.org/032j81x58 Zoo Outreach Organisation'),
(77637, 'https://ror.org/032kevw42', 'en', 1, 'https://ror.org/032kevw42 Magnetic Resonance Institute for Safety, Technology and Research'),
(77638, 'https://ror.org/032nt3q40', 'no_lang_code', 1, 'https://ror.org/032nt3q40 Nikken Sekkei (Japan) ę—„å»ŗčØ­čØˆ'),
(77639, 'https://ror.org/032pj3t23', 'no_lang_code', 1, 'https://ror.org/032pj3t23 SonarMed (United States)'),
(77640, 'https://ror.org/032stxf15', 'no_lang_code', 1, 'https://ror.org/032stxf15 Aderans (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‡ćƒ©ćƒ³ć‚¹'),
(77641, 'https://ror.org/032syc365', 'en', 1, 'https://ror.org/032syc365 Islamic Azad University, Omidieh Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ł…ŪŒŲÆŪŒŁ‡'),
(77642, 'https://ror.org/032vqbc18', 'en', 1, 'https://ror.org/032vqbc18 Deutsche Umwelthilfe Environmental Action Germany'),
(77643, 'https://ror.org/032w0sp96', 'no_lang_code', 1, 'https://ror.org/032w0sp96 SmarAct (Germany)'),
(77644, 'https://ror.org/032wvzg14', 'no_lang_code', 1, 'https://ror.org/032wvzg14 Volkswohnung (Germany)'),
(77645, 'https://ror.org/032z6r127', 'en', 1, 'https://ror.org/032z6r127 Sichuan Integrative Medicine Hosipital å››å·ēœäø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(77646, 'https://ror.org/0333x0667', 'en', 1, 'https://ror.org/0333x0667 Avantha Centre for Industrial Research & Development ą¤”ą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤•ą„‡ ą¤²ą¤æą¤ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° अवंता'),
(77647, 'https://ror.org/033571q03', 'no_lang_code', 1, 'https://ror.org/033571q03 Asahi Intecc (Japan) ęœę—„ć‚¤ćƒ³ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(77648, 'https://ror.org/033705f12', 'no_lang_code', 1, 'https://ror.org/033705f12 MEDRx (Japan)'),
(77649, 'https://ror.org/0338ntq56', 'no_lang_code', 1, 'https://ror.org/0338ntq56 AVIC Optronics (China) čˆŖē©ŗå·„äøšå…‰ē”µę‰€'),
(77650, 'https://ror.org/033bbb825', 'no_lang_code', 1, 'https://ror.org/033bbb825 WƤrtsilƤ (United Kingdom)'),
(77651, 'https://ror.org/033bv6556', 'no_lang_code', 1, 'https://ror.org/033bv6556 Tracoe Medical (Germany)'),
(77652, 'https://ror.org/033g4nk48', 'en', 1, 'https://ror.org/033g4nk48 Write Inspired'),
(77653, 'https://ror.org/033gwzy17', 'en', 1, 'https://ror.org/033gwzy17 Miyagi Prefectural Research Institute of The Tagajo site å®®åŸŽēœŒå¤šč³€åŸŽč·”čŖæęŸ»ē ”ē©¶ę‰€'),
(77654, 'https://ror.org/033h29277', 'en', 1, 'https://ror.org/033h29277 Participatory Rural Development Foundation'),
(77655, 'https://ror.org/033hs9r68', 'no_lang_code', 1, 'https://ror.org/033hs9r68 Partek (United States)'),
(77656, 'https://ror.org/033j0mq15', 'no_lang_code', 1, 'https://ror.org/033j0mq15 Qualicaps (Japan)'),
(77657, 'https://ror.org/033kdaz63', 'en', 1, 'https://ror.org/033kdaz63 Himi City Library 氷見市立図書館'),
(77658, 'https://ror.org/033m0cw03', 'en', 1, 'https://ror.org/033m0cw03 Hyogo Prefectural Institute for Educational Research and In-Service Training å…µåŗ«ēœŒē«‹ę•™č‚²ē ”äæ®ę‰€'),
(77659, 'https://ror.org/033mch573', 'no_lang_code', 1, 'https://ror.org/033mch573 Carag (Switzerland)'),
(77660, 'https://ror.org/033mdyr61', 'en', 1, 'https://ror.org/033mdyr61 Institute of Taiwan Studies Chinese Academy of Social Sciences äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å°ę¹¾ē ”ē©¶ę‰€'),
(77661, 'https://ror.org/033nee397', 'no_lang_code', 1, 'https://ror.org/033nee397 Theragnostic Technologies (United States)'),
(77662, 'https://ror.org/033qh4x19', 'no_lang_code', 1, 'https://ror.org/033qh4x19 Primaira (United States)'),
(77663, 'https://ror.org/033rxqp12', 'no_lang_code', 1, 'https://ror.org/033rxqp12 Quad-C Management (United States)'),
(77664, 'https://ror.org/033sga382', 'de', 1, 'https://ror.org/033sga382 Pathologie Hamburg-West'),
(77665, 'https://ror.org/033tvvz33', 'no_lang_code', 1, 'https://ror.org/033tvvz33 Cook Research (United States)'),
(77666, 'https://ror.org/033wj0h62', 'en', 1, 'https://ror.org/033wj0h62 DS Smith (United Kingdom)'),
(77667, 'https://ror.org/033x0n485', 'no_lang_code', 1, 'https://ror.org/033x0n485 Arithmer (Japan)'),
(77668, 'https://ror.org/033xktk71', 'en', 1, 'https://ror.org/033xktk71 Electoral Institute for Sustainable Democracy in Africa'),
(77669, 'https://ror.org/033yxp207', 'no_lang_code', 1, 'https://ror.org/033yxp207 Gunze (Japan) ć‚°ćƒ³ć‚¼ę Ŗå¼ä¼šē¤¾'),
(77670, 'https://ror.org/033ztm745', 'fr', 1, 'https://ror.org/033ztm745 Fondation Botnar'),
(77671, 'https://ror.org/0340vv450', 'no_lang_code', 1, 'https://ror.org/0340vv450 Pregistry (United States)'),
(77672, 'https://ror.org/0341fqh65', 'en', 1, 'https://ror.org/0341fqh65 African Refuge'),
(77673, 'https://ror.org/03425cy40', 'no_lang_code', 1, 'https://ror.org/03425cy40 ROM Technik (Germany)'),
(77674, 'https://ror.org/0342c0q79', 'en', 1, 'https://ror.org/0342c0q79 Shiga Prefecture Cultural Property Protection Association å…¬ē›Šč²”å›£ę³•äŗŗę»‹č³€ēœŒę–‡åŒ–č²”äæč­·å”ä¼š'),
(77675, 'https://ror.org/0342n5p84', 'it', 1, 'https://ror.org/0342n5p84 Centro per le Nano-Scienze della Vita'),
(77676, 'https://ror.org/0342pra74', 'no_lang_code', 1, 'https://ror.org/0342pra74 Koei Chemical (Japan) åŗƒę „åŒ–å­¦'),
(77677, 'https://ror.org/03455bm37', 'no_lang_code', 1, 'https://ror.org/03455bm37 Epix Pharmaceuticals (United States)'),
(77678, 'https://ror.org/0345dvk21', 'no_lang_code', 1, 'https://ror.org/0345dvk21 Medtentia (Finland)'),
(77679, 'https://ror.org/0346t2s60', 'no_lang_code', 1, 'https://ror.org/0346t2s60 Trench (Germany)'),
(77680, 'https://ror.org/0347csc19', 'en', 1, 'https://ror.org/0347csc19 East Foundation'),
(77681, 'https://ror.org/0348zy043', 'no_lang_code', 1, 'https://ror.org/0348zy043 Shape Memory Medical (United States)'),
(77682, 'https://ror.org/034c3qw48', 'no_lang_code', 1, 'https://ror.org/034c3qw48 Vivex Biologics (United States)'),
(77683, 'https://ror.org/034msyx24', 'no_lang_code', 1, 'https://ror.org/034msyx24 Fuji Chimera Research Institute (Japan) ę Ŗå¼ä¼šē¤¾ åÆŒå£«ć‚­ćƒ”ćƒ©ē·ē ”'),
(77684, 'https://ror.org/034qmeb64', 'no_lang_code', 1, 'https://ror.org/034qmeb64 Elena International (Germany)'),
(77685, 'https://ror.org/034rrk963', 'no_lang_code', 1, 'https://ror.org/034rrk963 Oledcomm (France)'),
(77686, 'https://ror.org/034wp9329', 'no_lang_code', 1, 'https://ror.org/034wp9329 Sleep Number (United States)'),
(77687, 'https://ror.org/034yc4v31', 'en', 1, 'https://ror.org/034yc4v31 Debark University'),
(77688, 'https://ror.org/034ywws88', 'no_lang_code', 1, 'https://ror.org/034ywws88 Osstem Implant (South Korea) ģ˜¤ģŠ¤ķ…œģž„ķ”Œėž€ķŠø'),
(77689, 'https://ror.org/034zjqs11', 'no_lang_code', 1, 'https://ror.org/034zjqs11 Scorpion Therapeutics (United States)'),
(77690, 'https://ror.org/0350fs434', 'no_lang_code', 1, 'https://ror.org/0350fs434 VitalConnect (United States)'),
(77691, 'https://ror.org/0350qsk51', 'af', 1, 'https://ror.org/0350qsk51 Twende Mbele'),
(77692, 'https://ror.org/035130s04', 'no_lang_code', 1, 'https://ror.org/035130s04 Otepia Kochi Library é«˜ēŸ„åø‚ē«‹é«˜ēŸ„åø‚ę°‘å›³ę›øé¤Ø'),
(77693, 'https://ror.org/0351ywy08', 'en', 1, 'https://ror.org/0351ywy08 General Directorate Combating Organized Crime Главна Š“ŠøŃ€ŠµŠŗŃ†ŠøŃ "Борба с организираната ŠæŃ€ŠµŃŃ‚ŃŠŠæŠ½Š¾ŃŃ‚"'),
(77694, 'https://ror.org/0352b7b72', 'en', 1, 'https://ror.org/0352b7b72 Veterinary & Animal Husbandry'),
(77695, 'https://ror.org/0354ckp94', 'en', 1, 'https://ror.org/0354ckp94 National Institute of High Security Animal Diseases ą¤‰ą¤šą„ą¤š ą¤øą„ą¤°ą¤•ą„ą¤·ą¤¾ ą¤Ŗą¤¶ą„ ą¤°ą„‹ą¤— ą¤•ą„‡ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(77696, 'https://ror.org/03557sx70', 'de', 1, 'https://ror.org/03557sx70 Institut für Angewandte Innovationsforschung'),
(77697, 'https://ror.org/0355tjr07', 'fr', 1, 'https://ror.org/0355tjr07 HƓpital Maritime de Berck'),
(77698, 'https://ror.org/0356fgm10', 'en', 1, 'https://ror.org/0356fgm10 The Carpentries'),
(77699, 'https://ror.org/0358nsq19', 'fr', 1, 'https://ror.org/0358nsq19 UniversitƩ Pelefero Gon Coulibaly'),
(77700, 'https://ror.org/0358p7h51', 'no_lang_code', 1, 'https://ror.org/0358p7h51 PureCircle (Malaysia)'),
(77701, 'https://ror.org/0358t2s53', 'no_lang_code', 1, 'https://ror.org/0358t2s53 Neurelis (United States)'),
(77702, 'https://ror.org/035d70176', 'en', 1, 'https://ror.org/035d70176 Siberian Law University Дибирский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(77703, 'https://ror.org/035dxyg86', 'en', 1, 'https://ror.org/035dxyg86 Environs Kimberley'),
(77704, 'https://ror.org/035evek51', 'no_lang_code', 1, 'https://ror.org/035evek51 Goldfinch Bio (United States)'),
(77705, 'https://ror.org/035g5pd63', 'no_lang_code', 1, 'https://ror.org/035g5pd63 Procomcure Biotech (Austria)'),
(77706, 'https://ror.org/035g8xb75', 'en', 1, 'https://ror.org/035g8xb75 World Health Organization - Lebanon'),
(77707, 'https://ror.org/035gkst87', 'no_lang_code', 1, 'https://ror.org/035gkst87 Sigma Designs (United States)'),
(77708, 'https://ror.org/035hwsz26', 'no_lang_code', 1, 'https://ror.org/035hwsz26 Synecor (United States)'),
(77709, 'https://ror.org/035jnav47', 'nl', 1, 'https://ror.org/035jnav47 J.M. Burgerscentrum'),
(77710, 'https://ror.org/035kwsm70', 'en', 1, 'https://ror.org/035kwsm70 Institut für Neue Medien Institute for New Media'),
(77711, 'https://ror.org/035mc8a13', 'fr', 1, 'https://ror.org/035mc8a13 LabƩo'),
(77712, 'https://ror.org/035mr2h79', 'en', 1, 'https://ror.org/035mr2h79 Centre for Military Airworthiness and Certification ą¤øą„‡ą¤Øą¤¾ ą¤‰ą„œą¤Øą¤Æą„‹ą¤—ą„ą¤Æą¤¤ą¤¾ और ą¤Ŗą„ą¤°ą¤®ą¤¾ą¤£ą„€ą¤•ą¤°ą¤£ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(77713, 'https://ror.org/035pr7340', 'no_lang_code', 1, 'https://ror.org/035pr7340 BioRankings (United States)'),
(77714, 'https://ror.org/035q5ds08', 'no_lang_code', 1, 'https://ror.org/035q5ds08 Simmtec (United States)'),
(77715, 'https://ror.org/035rza675', 'no_lang_code', 1, 'https://ror.org/035rza675 Titan Medical (Canada)'),
(77716, 'https://ror.org/035rzmc67', 'en', 1, 'https://ror.org/035rzmc67 Anhui Academy of Medical Sciences å®‰å¾½ēœåŒ»å­¦ē§‘å­¦ē ”ē©¶é™¢'),
(77717, 'https://ror.org/035smsz08', 'no_lang_code', 1, 'https://ror.org/035smsz08 Evalf Computing (Netherlands)'),
(77718, 'https://ror.org/035sr5g64', 'en', 1, 'https://ror.org/035sr5g64 Bunkyo Furusato History Museum ę–‡äŗ¬ćµć‚‹ć•ćØę­“å²é¤Ø'),
(77719, 'https://ror.org/035tamt43', 'no_lang_code', 1, 'https://ror.org/035tamt43 Teamtechnik (Germany)'),
(77720, 'https://ror.org/035vbzz28', 'en', 1, 'https://ror.org/035vbzz28 El Paso VA Health Care System'),
(77721, 'https://ror.org/035vk6k04', 'en', 1, 'https://ror.org/035vk6k04 International Centre for Trade and Sustainable Development'),
(77722, 'https://ror.org/035wevv89', 'de', 1, 'https://ror.org/035wevv89 Bayerische Landesanstalt für Weinbau und Gartenbau'),
(77723, 'https://ror.org/035ygmd05', 'no_lang_code', 1, 'https://ror.org/035ygmd05 Spiegel Institut (Germany)'),
(77724, 'https://ror.org/035zer135', 'no_lang_code', 1, 'https://ror.org/035zer135 Fukuoka City Museum ē¦å²”åø‚åšē‰©é¤Ø'),
(77725, 'https://ror.org/03616xn26', 'en', 1, 'https://ror.org/03616xn26 Liaoning Meteorological Bureau č¾½å®ēœę°”č±”å±€'),
(77726, 'https://ror.org/0362sfm95', 'no_lang_code', 1, 'https://ror.org/0362sfm95 E4D Technologies (United States)'),
(77727, 'https://ror.org/0363jmm27', 'no_lang_code', 1, 'https://ror.org/0363jmm27 Mineralƶlverbundleitung (Germany)'),
(77728, 'https://ror.org/0364hq403', 'no_lang_code', 1, 'https://ror.org/0364hq403 AXO Dresden (Germany)'),
(77729, 'https://ror.org/0364rgm75', 'en', 1, 'https://ror.org/0364rgm75 Yomiuri Science and Technology College čŖ­å£²ē†å·„åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(77730, 'https://ror.org/0365pmp63', 'no_lang_code', 1, 'https://ror.org/0365pmp63 Maruishi Pharmaceutical (Japan) äøøēŸ³č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(77731, 'https://ror.org/0366hg892', 'en', 1, 'https://ror.org/0366hg892 Zambia Forestry College'),
(77732, 'https://ror.org/0366nrw71', 'de', 1, 'https://ror.org/0366nrw71 Naturstiftung David'),
(77733, 'https://ror.org/0366qxk70', 'en', 1, 'https://ror.org/0366qxk70 Islamic World Educational, Scientific and Cultural Organization منظمة العالم Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ Ł„Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ©'),
(77734, 'https://ror.org/03681th59', 'en', 1, 'https://ror.org/03681th59 Arunachal Pradesh State Council for Science & Technology'),
(77735, 'https://ror.org/03682zy57', 'en', 1, 'https://ror.org/03682zy57 Johannesburg Wildlife Vet'),
(77736, 'https://ror.org/0369a2x50', 'no_lang_code', 1, 'https://ror.org/0369a2x50 Albumedix (United Kingdom)'),
(77737, 'https://ror.org/0369dsh11', 'no_lang_code', 1, 'https://ror.org/0369dsh11 Zuiko (Japan)'),
(77738, 'https://ror.org/036aaf204', 'no_lang_code', 1, 'https://ror.org/036aaf204 Secant Group (United States)'),
(77739, 'https://ror.org/036adbz09', 'en', 1, 'https://ror.org/036adbz09 Perry Point VA Medical Center'),
(77740, 'https://ror.org/036amgv56', 'en', 1, 'https://ror.org/036amgv56 London Borough of Hackney'),
(77741, 'https://ror.org/036b75x65', 'fr', 1, 'https://ror.org/036b75x65 HƓpital Paul-Doumer'),
(77742, 'https://ror.org/036c61m13', 'no_lang_code', 1, 'https://ror.org/036c61m13 BioQ Pharma (United States)'),
(77743, 'https://ror.org/036dvvv65', 'no_lang_code', 1, 'https://ror.org/036dvvv65 Radianse (United States)'),
(77744, 'https://ror.org/036ge5h13', 'es', 1, 'https://ror.org/036ge5h13 Academia Nacional de la Historia de la RepĆŗblica Argentina National Academy of History of Argentina'),
(77745, 'https://ror.org/036hzfm30', 'no_lang_code', 1, 'https://ror.org/036hzfm30 Compass Technology (China)'),
(77746, 'https://ror.org/036j21948', 'no_lang_code', 1, 'https://ror.org/036j21948 Protix (Netherlands)'),
(77747, 'https://ror.org/036j90q35', 'no_lang_code', 1, 'https://ror.org/036j90q35 Rockstep Solutions (United States)'),
(77748, 'https://ror.org/036jn4298', 'en', 1, 'https://ror.org/036jn4298 The San Raffaele Telethon Institute for Gene Therapy'),
(77749, 'https://ror.org/036jqev97', 'en', 1, 'https://ror.org/036jqev97 NDIS Quality and Safeguards Commission'),
(77750, 'https://ror.org/036kzqv28', 'no_lang_code', 1, 'https://ror.org/036kzqv28 Sitronix Technology (Taiwan)'),
(77751, 'https://ror.org/036m1sh27', 'no_lang_code', 1, 'https://ror.org/036m1sh27 Thorleaf Research (United States)'),
(77752, 'https://ror.org/036md6q83', 'de', 1, 'https://ror.org/036md6q83 Inter 3, inter 3 Institut für Ressourcenmanagement'),
(77753, 'https://ror.org/036nedf06', 'no_lang_code', 1, 'https://ror.org/036nedf06 Protection Engineering Consultants (United States)'),
(77754, 'https://ror.org/036nvwz98', 'en', 1, 'https://ror.org/036nvwz98 Gorilla Doctors'),
(77755, 'https://ror.org/036p5fk53', 'es', 1, 'https://ror.org/036p5fk53 Colegio Colombiano de Terapia Ocupacional'),
(77756, 'https://ror.org/036q44x34', 'en', 1, 'https://ror.org/036q44x34 Babylon Health'),
(77757, 'https://ror.org/036rk0748', 'no_lang_code', 1, 'https://ror.org/036rk0748 Xtant Medical (United States)'),
(77758, 'https://ror.org/036s90x07', 'no_lang_code', 1, 'https://ror.org/036s90x07 InCube Labs (United States)'),
(77759, 'https://ror.org/036spp047', 'no_lang_code', 1, 'https://ror.org/036spp047 AcuFocus (United States)'),
(77760, 'https://ror.org/036v1zd35', 'no_lang_code', 1, 'https://ror.org/036v1zd35 Semtech (United Kingdom)'),
(77761, 'https://ror.org/036vfgp53', 'en', 1, 'https://ror.org/036vfgp53 Preusser Research Group'),
(77762, 'https://ror.org/036yna661', 'no_lang_code', 1, 'https://ror.org/036yna661 F-Secure (Finland)'),
(77763, 'https://ror.org/036zxb972', 'no_lang_code', 1, 'https://ror.org/036zxb972 Pursuant Health (United States)'),
(77764, 'https://ror.org/03707rf96', 'en', 1, 'https://ror.org/03707rf96 University of Tripoli Al-ahlia Ų¬Ų§Ł…Ų¹Ų© طرابلس Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(77765, 'https://ror.org/03747hz63', 'en', 1, 'https://ror.org/03747hz63 The Task Force for Global Health'),
(77766, 'https://ror.org/0374y9c72', 'no_lang_code', 1, 'https://ror.org/0374y9c72 DOT (Germany)'),
(77767, 'https://ror.org/03756wp26', 'no_lang_code', 1, 'https://ror.org/03756wp26 Medinol (Israel)'),
(77768, 'https://ror.org/03780jn86', 'en', 1, 'https://ror.org/03780jn86 Kalam Institute of Health Technology'),
(77769, 'https://ror.org/037ap0k13', 'no_lang_code', 1, 'https://ror.org/037ap0k13 PetroIneos (United Kingdom)'),
(77770, 'https://ror.org/037bc8f58', 'no_lang_code', 1, 'https://ror.org/037bc8f58 Institut für Biogas, Kreislaufwirtschaft und Energie Institute of Biogas, Waste Management and Energy (Germany)'),
(77771, 'https://ror.org/037c00h05', 'no_lang_code', 1, 'https://ror.org/037c00h05 Hong Kong Auto Parts Industry Association (China) é¦™ęøÆę±½č»Šé›¶éƒØä»¶å·„ę„­å”ęœƒ'),
(77772, 'https://ror.org/037dety09', 'en', 1, 'https://ror.org/037dety09 Okayama City Library 岔山市図書館'),
(77773, 'https://ror.org/037ec0y70', 'no_lang_code', 1, 'https://ror.org/037ec0y70 KleinwƤchter (Germany)'),
(77774, 'https://ror.org/037f3w245', 'en', 1, 'https://ror.org/037f3w245 ComitƩ National de DƩveloppement des Technologies National Committee for the Development of Technologies'),
(77775, 'https://ror.org/037f7zx95', 'en', 1, 'https://ror.org/037f7zx95 New Hampshire Sea Grant'),
(77776, 'https://ror.org/037fh1278', 'no_lang_code', 1, 'https://ror.org/037fh1278 Cosmo Tech (France)'),
(77777, 'https://ror.org/037fk6k96', 'en', 1, 'https://ror.org/037fk6k96 Guangxi Zhuang Autonomous Region Hydraulic Research Institute å¹æč„æå£®ę—č‡Ŗę²»åŒŗę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(77778, 'https://ror.org/037fm3958', 'en', 1, 'https://ror.org/037fm3958 University of Halabja Ų²Ų§Ł†ŁƒŪ†Ł‰ Ł‡Ł‡ā€ŒŚµŁ‡ā€ŒŲØŲ¬Ł‡'),
(77779, 'https://ror.org/037g1qp67', 'no_lang_code', 1, 'https://ror.org/037g1qp67 ConjuChem (Canada)'),
(77780, 'https://ror.org/037k8mg80', 'en', 1, 'https://ror.org/037k8mg80 Nevada National Security Site'),
(77781, 'https://ror.org/037nrh939', 'en', 1, 'https://ror.org/037nrh939 John J. Pershing VA Medical Center'),
(77782, 'https://ror.org/037pppx71', 'no_lang_code', 1, 'https://ror.org/037pppx71 Alcami (United States)'),
(77783, 'https://ror.org/037qmen77', 'no_lang_code', 1, 'https://ror.org/037qmen77 Graebener Maschinentechnik (Germany)'),
(77784, 'https://ror.org/037rvgb96', 'es', 1, 'https://ror.org/037rvgb96 Ecuatesis'),
(77785, 'https://ror.org/037vpg713', 'en', 1, 'https://ror.org/037vpg713 Stockholm Environment Institute'),
(77786, 'https://ror.org/037wwt484', 'no_lang_code', 1, 'https://ror.org/037wwt484 CosmoCode (Germany)'),
(77787, 'https://ror.org/03800bc44', 'no_lang_code', 1, 'https://ror.org/03800bc44 Emweb (Belgium)'),
(77788, 'https://ror.org/03802zd28', 'en', 1, 'https://ror.org/03802zd28 Global Emerging Pathogens Treatment Consortium'),
(77789, 'https://ror.org/0380dcc73', 'en', 1, 'https://ror.org/0380dcc73 Wuhan No. 7 Hospital ę­¦ę±‰åø‚ē¬¬äøƒåŒ»é™¢'),
(77790, 'https://ror.org/0380n5h16', 'en', 1, 'https://ror.org/0380n5h16 Federal Reserve Bank of Minneapolis'),
(77791, 'https://ror.org/038142d20', 'no_lang_code', 1, 'https://ror.org/038142d20 Mammoth Biosciences (United States)'),
(77792, 'https://ror.org/0382c3j25', 'nl', 1, 'https://ror.org/0382c3j25 Nederlands Instituut Forensische Psychiatrie'),
(77793, 'https://ror.org/0382n1947', 'no_lang_code', 1, 'https://ror.org/0382n1947 Step Tools (United States)'),
(77794, 'https://ror.org/03836m928', 'no_lang_code', 1, 'https://ror.org/03836m928 Roche (Ecuador)'),
(77795, 'https://ror.org/0383czy71', 'no_lang_code', 1, 'https://ror.org/0383czy71 Osmic Enterprises (United States)'),
(77796, 'https://ror.org/03847eh84', 'no_lang_code', 1, 'https://ror.org/03847eh84 Vigilant Cyber Systems (United States)'),
(77797, 'https://ror.org/0385asg54', 'en', 1, 'https://ror.org/0385asg54 James E. Van Zandt VA Medical Center'),
(77798, 'https://ror.org/0388j8115', 'no_lang_code', 1, 'https://ror.org/0388j8115 Kind Consumer (United Kingdom)'),
(77799, 'https://ror.org/038a0vf09', 'no_lang_code', 1, 'https://ror.org/038a0vf09 Synaptive (Canada)'),
(77800, 'https://ror.org/038bemd25', 'en', 1, 'https://ror.org/038bemd25 Islamic Azad University, Khoy Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد خوی'),
(77801, 'https://ror.org/038cy9619', 'no_lang_code', 1, 'https://ror.org/038cy9619 Syncro Medical Innovations (United States)'),
(77802, 'https://ror.org/038dne681', 'fr', 1, 'https://ror.org/038dne681 Centre ParamƩdical Santy'),
(77803, 'https://ror.org/038dte259', 'en', 1, 'https://ror.org/038dte259 China Academy of Information and Communications Technology'),
(77804, 'https://ror.org/038eaw106', 'no_lang_code', 1, 'https://ror.org/038eaw106 Stadtwerke Kƶln (Germany)'),
(77805, 'https://ror.org/038ey3e97', 'en', 1, 'https://ror.org/038ey3e97 State Key Laboratory of Synthetic Chemistry åˆęˆåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(77806, 'https://ror.org/038f3wn67', 'no_lang_code', 1, 'https://ror.org/038f3wn67 Freiberger Compound Materials (Germany)'),
(77807, 'https://ror.org/038ftp957', 'en', 1, 'https://ror.org/038ftp957 German Foreign Trade and Transport Academy'),
(77808, 'https://ror.org/038fxc267', 'en', 1, 'https://ror.org/038fxc267 Department of International Relations and Cooperation'),
(77809, 'https://ror.org/038h0z436', 'no_lang_code', 1, 'https://ror.org/038h0z436 Mitsubishi Corporation (United Kingdom)'),
(77810, 'https://ror.org/038mfrf56', 'no_lang_code', 1, 'https://ror.org/038mfrf56 Agile Therapeutics (United States)'),
(77811, 'https://ror.org/038mj2660', 'de', 1, 'https://ror.org/038mj2660 Eastern Switzerland University of Applied Sciences Ostschweizer Fachhochschule OST'),
(77812, 'https://ror.org/038p1ty61', 'no_lang_code', 1, 'https://ror.org/038p1ty61 Jinyintan Hospital ę­¦ę±‰åø‚é‡‘é“¶ę½­åŒ»é™¢'),
(77813, 'https://ror.org/038pg5d86', 'no_lang_code', 1, 'https://ror.org/038pg5d86 Esteve QuĆ­mica (Spain)'),
(77814, 'https://ror.org/038rzmb16', 'en', 1, 'https://ror.org/038rzmb16 Delaware Sea Grant'),
(77815, 'https://ror.org/038st2x32', 'en', 1, 'https://ror.org/038st2x32 Lifenet Health'),
(77816, 'https://ror.org/038te8s11', 'no_lang_code', 1, 'https://ror.org/038te8s11 Silatronix (United States)'),
(77817, 'https://ror.org/038xt6s70', 'en', 1, 'https://ror.org/038xt6s70 International Medical And Welfare College å›½éš›åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(77818, 'https://ror.org/03905f420', 'en', 1, 'https://ror.org/03905f420 Forschungsinstitut Bioaktive Polymersysteme Research Institute Bioactive Polymer Systems'),
(77819, 'https://ror.org/0390fys98', 'en', 1, 'https://ror.org/0390fys98 Centre for African Wetlands'),
(77820, 'https://ror.org/03911p935', 'en', 1, 'https://ror.org/03911p935 World Health Organization - Afghanistan'),
(77821, 'https://ror.org/0391nfv32', 'no_lang_code', 1, 'https://ror.org/0391nfv32 Neuronetics (United States)'),
(77822, 'https://ror.org/0393vzh87', 'en', 1, 'https://ror.org/0393vzh87 Hearing4all'),
(77823, 'https://ror.org/0397szj42', 'en', 1, 'https://ror.org/0397szj42 Tarsus University Tarsus Üniversitesi'),
(77824, 'https://ror.org/03988gk19', 'no_lang_code', 1, 'https://ror.org/03988gk19 RiboNova (United States)'),
(77825, 'https://ror.org/03993n266', 'no_lang_code', 1, 'https://ror.org/03993n266 TherapeuticsMD (United States)'),
(77826, 'https://ror.org/039ayww40', 'en', 1, 'https://ror.org/039ayww40 The Yellow Tulip Project'),
(77827, 'https://ror.org/039c5c386', 'no_lang_code', 1, 'https://ror.org/039c5c386 Concentrating Solar Power Services (Germany)'),
(77828, 'https://ror.org/039c5k490', 'en', 1, 'https://ror.org/039c5k490 Centre For Wildlife Studies'),
(77829, 'https://ror.org/039f79x37', 'de', 1, 'https://ror.org/039f79x37 M2C Institut für Angewandte Medienforschung'),
(77830, 'https://ror.org/039hf2675', 'no_lang_code', 1, 'https://ror.org/039hf2675 Vestar (United States)'),
(77831, 'https://ror.org/039hfcg55', 'no_lang_code', 1, 'https://ror.org/039hfcg55 Parade Technologies (United States)'),
(77832, 'https://ror.org/039jwf091', 'en', 1, 'https://ror.org/039jwf091 Acatech Deutsche Akademie der Technikwissenschaften'),
(77833, 'https://ror.org/039k6fv39', 'no_lang_code', 1, 'https://ror.org/039k6fv39 Vetservis (Slovakia)'),
(77834, 'https://ror.org/039kcn609', 'en', 1, 'https://ror.org/039kcn609 Direktoratet for StrƄlevern og Atomtryggleik Norwegian Radiation and Nuclear Safety Authority'),
(77835, 'https://ror.org/039kg2d97', 'no_lang_code', 1, 'https://ror.org/039kg2d97 YumaWorks (United States)'),
(77836, 'https://ror.org/039kky066', 'en', 1, 'https://ror.org/039kky066 Mie Chuo Medical Center äø‰é‡äø­å¤®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(77837, 'https://ror.org/039mxz635', 'en', 1, 'https://ror.org/039mxz635 The Australian Prevention Partnership Centre'),
(77838, 'https://ror.org/039n0s143', 'en', 1, 'https://ror.org/039n0s143 Ann Arbor VA Medical Center'),
(77839, 'https://ror.org/039nc2k59', 'en', 1, 'https://ror.org/039nc2k59 Weihai Chest Hospital åØęµ·åø‚čƒøē§‘åŒ»é™¢'),
(77840, 'https://ror.org/039ppzb98', 'de', 1, 'https://ror.org/039ppzb98 Forschungsinstitut Betriebliche Bildung'),
(77841, 'https://ror.org/039q3gj90', 'no_lang_code', 1, 'https://ror.org/039q3gj90 Comecer (Italy)'),
(77842, 'https://ror.org/039xjj562', 'no_lang_code', 1, 'https://ror.org/039xjj562 Rainbow Medical (Israel)'),
(77843, 'https://ror.org/039ywcc21', 'no_lang_code', 1, 'https://ror.org/039ywcc21 Fukuda Denshi (Japan)'),
(77844, 'https://ror.org/039zsrs49', 'es', 1, 'https://ror.org/039zsrs49 Instituto Tecnológico de Pabellón de Arteaga'),
(77845, 'https://ror.org/039zt7w55', 'en', 1, 'https://ror.org/039zt7w55 University Hospital Kyoto Prefectural University of Medicine äŗ¬éƒ½åŗœē«‹åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(77846, 'https://ror.org/03a00yh12', 'no_lang_code', 1, 'https://ror.org/03a00yh12 Editas Medicine (United States)'),
(77847, 'https://ror.org/03a2rz261', 'de', 1, 'https://ror.org/03a2rz261 Bildungsinstitut im Gesundheitswesen'),
(77848, 'https://ror.org/03a6jbw84', 'fr', 1, 'https://ror.org/03a6jbw84 Agence RƩgionale de SantƩ Nouvelle-Aquitaine'),
(77849, 'https://ror.org/03a7e0x93', 'de', 1, 'https://ror.org/03a7e0x93 München Klinik Harlaching'),
(77850, 'https://ror.org/03a7t7c50', 'no_lang_code', 1, 'https://ror.org/03a7t7c50 Entropica Labs (Singapore)'),
(77851, 'https://ror.org/03a8y0358', 'de', 1, 'https://ror.org/03a8y0358 FIVE - Forschungs- und Innovationsverbund an der Evangelischen Hochschule Freiburg'),
(77852, 'https://ror.org/03aa31r16', 'en', 1, 'https://ror.org/03aa31r16 Islamic Azad University, Khorramabad Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų®Ų±Ł…ā€ŒŲ¢ŲØŲ§ŲÆ'),
(77853, 'https://ror.org/03abd2075', 'de', 1, 'https://ror.org/03abd2075 Institut für Angewandte Statistik'),
(77854, 'https://ror.org/03ac0z906', 'no_lang_code', 1, 'https://ror.org/03ac0z906 Helm (Germany)'),
(77855, 'https://ror.org/03ac3bx22', 'en', 1, 'https://ror.org/03ac3bx22 South African Reserve Bank Suid-Afrikaanse Reserwebank'),
(77856, 'https://ror.org/03acsgj85', 'no_lang_code', 1, 'https://ror.org/03acsgj85 Großmann Ingenieur Consult (Germany)'),
(77857, 'https://ror.org/03adsge54', 'en', 1, 'https://ror.org/03adsge54 Institut für Angewandte Bodenbiologie Institute for Applied Soil Biology'),
(77858, 'https://ror.org/03ae4gt79', 'no_lang_code', 1, 'https://ror.org/03ae4gt79 Shimadzu (Slovakia)'),
(77859, 'https://ror.org/03afbsk96', 'no_lang_code', 1, 'https://ror.org/03afbsk96 Sonic Healthcare (Germany)'),
(77860, 'https://ror.org/03agmnc67', 'en', 1, 'https://ror.org/03agmnc67 Shougang Institute of Technology é¦–é’¢å·„å­¦é™¢ęˆē«‹äŗŽ'),
(77861, 'https://ror.org/03aj00617', 'en', 1, 'https://ror.org/03aj00617 German Musicological Society Gesellschaft für Musikforschung'),
(77862, 'https://ror.org/03apm9z31', 'no_lang_code', 1, 'https://ror.org/03apm9z31 NES (Slovakia)'),
(77863, 'https://ror.org/03aqkee12', 'no_lang_code', 1, 'https://ror.org/03aqkee12 Uniqarta (United States)'),
(77864, 'https://ror.org/03aqnr710', 'no_lang_code', 1, 'https://ror.org/03aqnr710 3B the Fiberglass (Belgium)'),
(77865, 'https://ror.org/03av8vw41', 'no_lang_code', 1, 'https://ror.org/03av8vw41 Extremiti3D (United States)'),
(77866, 'https://ror.org/03avk6553', 'no_lang_code', 1, 'https://ror.org/03avk6553 Agnostiq (Canada)'),
(77867, 'https://ror.org/03aw29357', 'no_lang_code', 1, 'https://ror.org/03aw29357 Applied Spectral Imaging (United States)'),
(77868, 'https://ror.org/03awqec28', 'en', 1, 'https://ror.org/03awqec28 Tecres (Italy)'),
(77869, 'https://ror.org/03ax15t06', 'en', 1, 'https://ror.org/03ax15t06 Sheltering Arms Institute'),
(77870, 'https://ror.org/03b08sh51', 'en', 1, 'https://ror.org/03b08sh51 Beltsville Agricultural Research Center'),
(77871, 'https://ror.org/03b0jrb97', 'no_lang_code', 1, 'https://ror.org/03b0jrb97 GhScientific'),
(77872, 'https://ror.org/03b1gtt44', 'en', 1, 'https://ror.org/03b1gtt44 Lipomic Healthcare (India)'),
(77873, 'https://ror.org/03b33b866', 'no_lang_code', 1, 'https://ror.org/03b33b866 KettenbachDental (Germany)'),
(77874, 'https://ror.org/03b368668', 'no_lang_code', 1, 'https://ror.org/03b368668 Intellia Therapeutics (United States)'),
(77875, 'https://ror.org/03b3h3q73', 'no_lang_code', 1, 'https://ror.org/03b3h3q73 Graphcore (United Kingdom)'),
(77876, 'https://ror.org/03b489496', 'en', 1, 'https://ror.org/03b489496 Woodlands Health Campus'),
(77877, 'https://ror.org/03b4jx157', 'en', 1, 'https://ror.org/03b4jx157 Research Institute of Resource Insects äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢čµ„ęŗę˜†č™«ē ”ē©¶ę‰€'),
(77878, 'https://ror.org/03b57r242', 'no_lang_code', 1, 'https://ror.org/03b57r242 Himalayan Biodiversity Network'),
(77879, 'https://ror.org/03b7d3909', 'en', 1, 'https://ror.org/03b7d3909 National Diabetes Obesity and Cholesterol Foundation'),
(77880, 'https://ror.org/03b7hqk30', 'de', 1, 'https://ror.org/03b7hqk30 Berufsforschungs- und Beratungsinstitut für interdisziplinäre Technikgestaltung'),
(77881, 'https://ror.org/03b7zcy46', 'de', 1, 'https://ror.org/03b7zcy46 Fachinstitut für Informatik und Grafikdesign'),
(77882, 'https://ror.org/03b867n98', 'en', 1, 'https://ror.org/03b867n98 Tengzhou Central People''s Hospital ę»•å·žåø‚äø­åæƒäŗŗę°‘åŒ»é™¢'),
(77883, 'https://ror.org/03b9bgv12', 'no_lang_code', 1, 'https://ror.org/03b9bgv12 DemeRx (United States)'),
(77884, 'https://ror.org/03bb5zx34', 'no_lang_code', 1, 'https://ror.org/03bb5zx34 Vactronix Scientific (United States)'),
(77885, 'https://ror.org/03bd22t26', 'en', 1, 'https://ror.org/03bd22t26 Higashihiroshima Medical Center ę±åŗƒå³¶åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(77886, 'https://ror.org/03bd9r350', 'en', 1, 'https://ror.org/03bd9r350 The Salvation Army China 救世军'),
(77887, 'https://ror.org/03bf2s235', 'de', 1, 'https://ror.org/03bf2s235 Institut für Umweltwirtschaftsanalysen Heidelberg'),
(77888, 'https://ror.org/03bh13774', 'en', 1, 'https://ror.org/03bh13774 Wilhelm Löhe Hochschule für angewandte Wissenschaften Wilhelm Löhe University for Applied Sciences'),
(77889, 'https://ror.org/03bh65t82', 'en', 1, 'https://ror.org/03bh65t82 Department of Chemistry and Earth Sciences ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ хіміі і навук аб Š—ŃŠ¼Š»Ń–'),
(77890, 'https://ror.org/03bkvs475', 'no_lang_code', 1, 'https://ror.org/03bkvs475 Sun Valley Technology (United States)'),
(77891, 'https://ror.org/03bm0js68', 'no_lang_code', 1, 'https://ror.org/03bm0js68 Noddle (United States)'),
(77892, 'https://ror.org/03bnhf738', 'no_lang_code', 1, 'https://ror.org/03bnhf738 Ambu (Denmark)'),
(77893, 'https://ror.org/03bq5ar94', 'en', 1, 'https://ror.org/03bq5ar94 Stavanger Museum'),
(77894, 'https://ror.org/03br9cy66', 'no_lang_code', 1, 'https://ror.org/03br9cy66 Cherry Biotech (France)'),
(77895, 'https://ror.org/03brmsq64', 'no_lang_code', 1, 'https://ror.org/03brmsq64 Veriskin (United States)'),
(77896, 'https://ror.org/03bwytd49', 'en', 1, 'https://ror.org/03bwytd49 HFC Hope for Children CRC Policy Center'),
(77897, 'https://ror.org/03bxja712', 'en', 1, 'https://ror.org/03bxja712 University Of Information Technology į€žį€į€„į€ŗį€øį€”į€į€»į€€į€ŗį€”į€œį€€į€ŗį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(77898, 'https://ror.org/03bysw038', 'no_lang_code', 1, 'https://ror.org/03bysw038 SFC Energy (Germany)'),
(77899, 'https://ror.org/03byxpq91', 'en', 1, 'https://ror.org/03byxpq91 Institute for Biomedical Research and Innovation L’istituto per la Ricerca e l’innovazione Biomedica'),
(77900, 'https://ror.org/03c05e753', 'no_lang_code', 1, 'https://ror.org/03c05e753 Misonix (United States)'),
(77901, 'https://ror.org/03c1b7x32', 'no_lang_code', 1, 'https://ror.org/03c1b7x32 Institut für Angewandte Gewässerökologie (Germany)'),
(77902, 'https://ror.org/03c3jbs89', 'en', 1, 'https://ror.org/03c3jbs89 Fraunhofer USA Center for Sustainable Energy Systems'),
(77903, 'https://ror.org/03c46dy37', 'en', 1, 'https://ror.org/03c46dy37 Kerrville VA Medical Center'),
(77904, 'https://ror.org/03c4nqn69', 'en', 1, 'https://ror.org/03c4nqn69 Institute of Earth Sciences, Academia Sinica äø­å¤®ē ”ē©¶é™¢åœ°ēƒē§‘å­øē ”ē©¶ę‰€'),
(77905, 'https://ror.org/03c4qaa56', 'en', 1, 'https://ror.org/03c4qaa56 Institute of Technology Management ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø (ą¤†ą¤ˆ ą¤Ÿą„€ ą¤ą¤®) ą¤”ą„€ आर ą¤”ą„€ ओ, ą¤®ą¤øą„‚ą¤°ą„€'),
(77906, 'https://ror.org/03c55am86', 'no_lang_code', 1, 'https://ror.org/03c55am86 Nitto Boseki (Japan) ę—„ę±ē“”ēø¾ę Ŗå¼ä¼šē¤¾'),
(77907, 'https://ror.org/03c5ds320', 'no_lang_code', 1, 'https://ror.org/03c5ds320 Oticon Medical (Denmark)'),
(77908, 'https://ror.org/03c9s1h69', 'no_lang_code', 1, 'https://ror.org/03c9s1h69 Ortho Tain (United States)'),
(77909, 'https://ror.org/03catpf85', 'de', 1, 'https://ror.org/03catpf85 Landesinstitut für Präventives Handeln'),
(77910, 'https://ror.org/03cfhyx33', 'en', 1, 'https://ror.org/03cfhyx33 Australian Taxation Office'),
(77911, 'https://ror.org/03cfv5b91', 'en', 1, 'https://ror.org/03cfv5b91 Shanghai Public Security Bureau äøŠęµ·åø‚å…¬å®‰å±€'),
(77912, 'https://ror.org/03cfzvy87', 'no_lang_code', 1, 'https://ror.org/03cfzvy87 Memcomputing (United States)'),
(77913, 'https://ror.org/03cgqjh12', 'no_lang_code', 1, 'https://ror.org/03cgqjh12 US Night Vision (United States)'),
(77914, 'https://ror.org/03chegm58', 'no_lang_code', 1, 'https://ror.org/03chegm58 Cetex (Germany)'),
(77915, 'https://ror.org/03cjnda72', 'no_lang_code', 1, 'https://ror.org/03cjnda72 Topia Technology (United States)'),
(77916, 'https://ror.org/03ckjgz67', 'no_lang_code', 1, 'https://ror.org/03ckjgz67 Rayner (United States)'),
(77917, 'https://ror.org/03ckw1950', 'en', 1, 'https://ror.org/03ckw1950 Eastmed'),
(77918, 'https://ror.org/03ckxwf91', 'en', 1, 'https://ror.org/03ckxwf91 RIKEN Center for Advanced Intelligence Project ē‰¹å®šå›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ é©ę–°ēŸ„čƒ½ēµ±åˆē ”ē©¶ć‚»ćƒ³ć‚æ'),
(77919, 'https://ror.org/03cst3c12', 'no_lang_code', 1, 'https://ror.org/03cst3c12 Yidu Central Hospital of Weifang ę½åŠåø‚ē›Šéƒ½äø­åæƒåŒ»é™¢'),
(77920, 'https://ror.org/03cz6ea04', 'no_lang_code', 1, 'https://ror.org/03cz6ea04 Bainbridge Development Corporation (United States)'),
(77921, 'https://ror.org/03d02ry74', 'no_lang_code', 1, 'https://ror.org/03d02ry74 Sol-Gel Technologies (Israel)'),
(77922, 'https://ror.org/03d0gny34', 'en', 1, 'https://ror.org/03d0gny34 Institute of Agricultural Machinery č¾²ę„­ē’°å¢ƒå¤‰å‹•ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(77923, 'https://ror.org/03d0nge43', 'en', 1, 'https://ror.org/03d0nge43 Fargo VA Health Care System'),
(77924, 'https://ror.org/03d23eg52', 'no_lang_code', 1, 'https://ror.org/03d23eg52 Mycronic (Sweden)'),
(77925, 'https://ror.org/03d2atk85', 'no_lang_code', 1, 'https://ror.org/03d2atk85 Oculus OptikgerƤte (Germany)'),
(77926, 'https://ror.org/03d3en416', 'no_lang_code', 1, 'https://ror.org/03d3en416 Rockley Photonics (United States)'),
(77927, 'https://ror.org/03d3nyr92', 'en', 1, 'https://ror.org/03d3nyr92 National Bureau of Animal Genetic Resources ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą¤¶ą„ ą¤†ą¤Øą„ą¤µą¤‚ą¤¶ą¤æą¤• संसाधन ą¤¬ą„ą¤Æą„‚ą¤°ą„‹'),
(77928, 'https://ror.org/03d5fcq90', 'no_lang_code', 1, 'https://ror.org/03d5fcq90 Curt G Joa (United States)'),
(77929, 'https://ror.org/03d66dp54', 'no_lang_code', 1, 'https://ror.org/03d66dp54 ClĆ­nica MEDS (Chile)'),
(77930, 'https://ror.org/03d6nx810', 'no_lang_code', 1, 'https://ror.org/03d6nx810 Qorvo (United Kingdom)'),
(77931, 'https://ror.org/03d76x287', 'no_lang_code', 1, 'https://ror.org/03d76x287 Bau- und Liegenschaftsbetrieb des Landes Nordrhein-Westfalen (Germany)'),
(77932, 'https://ror.org/03d7gms38', 'no_lang_code', 1, 'https://ror.org/03d7gms38 Q2 Solutions (United Kingdom)'),
(77933, 'https://ror.org/03d873a26', 'en', 1, 'https://ror.org/03d873a26 Medical Business College åŒ»ē™‚ćƒ“ć‚øćƒć‚¹å°‚é–€å­¦ę ”'),
(77934, 'https://ror.org/03d908h34', 'no_lang_code', 1, 'https://ror.org/03d908h34 TrueBinding (United States)'),
(77935, 'https://ror.org/03dak6a36', 'no_lang_code', 1, 'https://ror.org/03dak6a36 Asics (Japan) ć‚¢ć‚·ćƒƒć‚Æć‚¹'),
(77936, 'https://ror.org/03de09841', 'no_lang_code', 1, 'https://ror.org/03de09841 SoundPipe Therapeutics (United States)'),
(77937, 'https://ror.org/03dfgbb18', 'en', 1, 'https://ror.org/03dfgbb18 Institut für Sozialinnovation Institute for Social Innovation'),
(77938, 'https://ror.org/03dhfj813', 'no_lang_code', 1, 'https://ror.org/03dhfj813 Omnitech Robotics (United States)'),
(77939, 'https://ror.org/03djv3266', 'no_lang_code', 1, 'https://ror.org/03djv3266 Tesat-Spacecom (Germany)'),
(77940, 'https://ror.org/03djxm153', 'no_lang_code', 1, 'https://ror.org/03djxm153 EDOSEN ę±Ÿęˆøå·å­¦åœ’ćŠćŠćŸć‹ć®ę£®å°‚é–€å­¦ę ”'),
(77941, 'https://ror.org/03dk72h16', 'no_lang_code', 1, 'https://ror.org/03dk72h16 Seven Networks (United States)');
INSERT INTO `rors` VALUES
(77942, 'https://ror.org/03dkwk174', 'en', 1, 'https://ror.org/03dkwk174 Tropical Bioscience and Biotechnology Research Institute ēƒ­åø¦ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(77943, 'https://ror.org/03dpves30', 'no_lang_code', 1, 'https://ror.org/03dpves30 Estech Systems (United States)'),
(77944, 'https://ror.org/03dqajd65', 'de', 1, 'https://ror.org/03dqajd65 Forschungsinstitut für Beschäftigung Arbeit Qualifikation'),
(77945, 'https://ror.org/03dqqhs56', 'no_lang_code', 1, 'https://ror.org/03dqqhs56 Nippon Steel Chemical and Material (Japan) ę—„é‰„ć‚±ćƒŸć‚«ćƒ«&ćƒžćƒ†ćƒŖć‚¢ćƒ«'),
(77946, 'https://ror.org/03dsp4s22', 'en', 1, 'https://ror.org/03dsp4s22 International Thorium Molten-Salt Forum ćƒˆćƒŖć‚¦ćƒ ē†”čžå”©åŽŸå­ē‚‰'),
(77947, 'https://ror.org/03dvxen85', 'no_lang_code', 1, 'https://ror.org/03dvxen85 Syktyvkar Forest Institute Дыктывкарский Лесной Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(77948, 'https://ror.org/03dwh7z09', 'no_lang_code', 1, 'https://ror.org/03dwh7z09 Toyota Motor Corporation (Germany)'),
(77949, 'https://ror.org/03dyq3r35', 'no_lang_code', 1, 'https://ror.org/03dyq3r35 Path BioAnalytics (United States)'),
(77950, 'https://ror.org/03dyvyv84', 'de', 1, 'https://ror.org/03dyvyv84 Felsenweg-Institut'),
(77951, 'https://ror.org/03dzz0y33', 'en', 1, 'https://ror.org/03dzz0y33 Shinshu Medical and Welfare College äæ”å·žåŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(77952, 'https://ror.org/03e04x797', 'fr', 1, 'https://ror.org/03e04x797 HƓpital RenƩ-Muret'),
(77953, 'https://ror.org/03e150v94', 'no_lang_code', 1, 'https://ror.org/03e150v94 Central Alliance (United Kingdom)'),
(77954, 'https://ror.org/03e21p220', 'en', 1, 'https://ror.org/03e21p220 Central Hokkaido Animal Health Center ēœŒå¤®å®¶ē•œäæå„č”›ē”Ÿę‰€'),
(77955, 'https://ror.org/03e28fz53', 'en', 1, 'https://ror.org/03e28fz53 Christus Stehlin Foundation for Cancer Research'),
(77956, 'https://ror.org/03e5fmj95', 'it', 1, 'https://ror.org/03e5fmj95 BresciaMEd'),
(77957, 'https://ror.org/03e5gcq07', 'de', 1, 'https://ror.org/03e5gcq07 Institut für Ausbildung Jugendlicher'),
(77958, 'https://ror.org/03e6g0j64', 'no_lang_code', 1, 'https://ror.org/03e6g0j64 Shuttle Pharmaceuticals (United States)'),
(77959, 'https://ror.org/03e6rtv28', 'no_lang_code', 1, 'https://ror.org/03e6rtv28 University Technical Services (United States)'),
(77960, 'https://ror.org/03e7w2h22', 'en', 1, 'https://ror.org/03e7w2h22 NewClimate Institute'),
(77961, 'https://ror.org/03e8tm275', 'en', 1, 'https://ror.org/03e8tm275 Shriners Hospitals for Children'),
(77962, 'https://ror.org/03ed7ma04', 'en', 1, 'https://ror.org/03ed7ma04 Urban Upbound'),
(77963, 'https://ror.org/03ej9s373', 'de', 1, 'https://ror.org/03ej9s373 Institut für Industrieaerodynamik'),
(77964, 'https://ror.org/03ejr8e18', 'en', 1, 'https://ror.org/03ejr8e18 Samson Institute For Ageing Research'),
(77965, 'https://ror.org/03erhnf31', 'en', 1, 'https://ror.org/03erhnf31 Mattapally Technologies'),
(77966, 'https://ror.org/03ev0dv90', 'no_lang_code', 1, 'https://ror.org/03ev0dv90 Bregau (Germany)'),
(77967, 'https://ror.org/03ex6j864', 'en', 1, 'https://ror.org/03ex6j864 Agence Nationale de Radioprotection National Radiation Protection Agency of Cameroon'),
(77968, 'https://ror.org/03ey2p503', 'no_lang_code', 1, 'https://ror.org/03ey2p503 Linares Medical Devices (United States)'),
(77969, 'https://ror.org/03ez0zf69', 'en', 1, 'https://ror.org/03ez0zf69 Royal Observatory in Greenwich'),
(77970, 'https://ror.org/03ezxy459', 'no_lang_code', 1, 'https://ror.org/03ezxy459 Patz Materials and Technologies (United States)'),
(77971, 'https://ror.org/03f504c84', 'no_lang_code', 1, 'https://ror.org/03f504c84 Dow Chemical (France)'),
(77972, 'https://ror.org/03f6bb727', 'no_lang_code', 1, 'https://ror.org/03f6bb727 IGM Biosciences (United States)'),
(77973, 'https://ror.org/03f84d710', 'en', 1, 'https://ror.org/03f84d710 Islamic Azad University, Malayer Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ł„Ų§ŪŒŲ±'),
(77974, 'https://ror.org/03f8e0241', 'en', 1, 'https://ror.org/03f8e0241 Allensbach Institute Institut für Demoskopie Allensbach'),
(77975, 'https://ror.org/03f9ys929', 'no_lang_code', 1, 'https://ror.org/03f9ys929 Giuliani (Italy)'),
(77976, 'https://ror.org/03fbrdz61', 'no_lang_code', 1, 'https://ror.org/03fbrdz61 Guided Therapy Systems (United States)'),
(77977, 'https://ror.org/03fcb4d35', 'fr', 1, 'https://ror.org/03fcb4d35 Pigier CƓte d''Ivoire'),
(77978, 'https://ror.org/03fg5ns40', 'en', 1, 'https://ror.org/03fg5ns40 MIT Sea Grant'),
(77979, 'https://ror.org/03fk15c97', 'no_lang_code', 1, 'https://ror.org/03fk15c97 Itaconix (United Kingdom)'),
(77980, 'https://ror.org/03fn78r73', 'no_lang_code', 1, 'https://ror.org/03fn78r73 Vista Equity Partners (United States)'),
(77981, 'https://ror.org/03fp59e94', 'en', 1, 'https://ror.org/03fp59e94 Institut für Grundwasserökologie Institute of Groundwater Ecology'),
(77982, 'https://ror.org/03fpcyw06', 'no_lang_code', 1, 'https://ror.org/03fpcyw06 Synetics Systems Engineering Corp (United States)'),
(77983, 'https://ror.org/03fs7fp11', 'no_lang_code', 1, 'https://ror.org/03fs7fp11 SHL Medical (Switzerland)'),
(77984, 'https://ror.org/03fts7x30', 'en', 1, 'https://ror.org/03fts7x30 Yancheng Central Blood Station ē›åŸŽåø‚äø­åæƒč”€ē«™'),
(77985, 'https://ror.org/03fv7j188', 'en', 1, 'https://ror.org/03fv7j188 Central Citrus Research Institute ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤²ą¤æą¤‚ą¤¬ą„‚ą¤µą¤°ą„ą¤—ą„€ą¤Æ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(77986, 'https://ror.org/03fvjsd23', 'no_lang_code', 1, 'https://ror.org/03fvjsd23 Prosthetic Design + Research (United States)'),
(77987, 'https://ror.org/03fw4bm79', 'no_lang_code', 1, 'https://ror.org/03fw4bm79 Halocarbon (United States)'),
(77988, 'https://ror.org/03fwhmm19', 'en', 1, 'https://ror.org/03fwhmm19 Center for Constitutional Governance'),
(77989, 'https://ror.org/03fzgzt45', 'en', 1, 'https://ror.org/03fzgzt45 Saint Regis Mohawk Tribe'),
(77990, 'https://ror.org/03g386s80', 'no_lang_code', 1, 'https://ror.org/03g386s80 Maspoma (Slovakia)'),
(77991, 'https://ror.org/03g3vwd67', 'no_lang_code', 1, 'https://ror.org/03g3vwd67 Bridge Of Nucleic Acids Chemistry (Japan)'),
(77992, 'https://ror.org/03g4xtf80', 'no_lang_code', 1, 'https://ror.org/03g4xtf80 Abilia (United Kingdom)'),
(77993, 'https://ror.org/03g878p38', 'no_lang_code', 1, 'https://ror.org/03g878p38 MicroMega (France)'),
(77994, 'https://ror.org/03g886m74', 'en', 1, 'https://ror.org/03g886m74 Saitama Prefectural Police åŸ¼ēŽ‰ēœŒč­¦åÆŸ'),
(77995, 'https://ror.org/03gd99e09', 'en', 1, 'https://ror.org/03gd99e09 Center of Immunology Pierre Fabre Centre d’Immunologie Pierre Fabre'),
(77996, 'https://ror.org/03gdvgj95', 'en', 1, 'https://ror.org/03gdvgj95 Nanjing Municipal Center for Disease Control And Prevention å—äŗ¬åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(77997, 'https://ror.org/03ge76j81', 'no_lang_code', 1, 'https://ror.org/03ge76j81 Kiio (United States)'),
(77998, 'https://ror.org/03gejkf67', 'no_lang_code', 1, 'https://ror.org/03gejkf67 Eloquence Communications (United States)'),
(77999, 'https://ror.org/03gh4m991', 'en', 1, 'https://ror.org/03gh4m991 Yueyang Second People''s Hospital å²³é˜³åø‚äŗŒäŗŗę°‘åŒ»é™¢'),
(78000, 'https://ror.org/03gjp8j03', 'no_lang_code', 1, 'https://ror.org/03gjp8j03 Pratt & Miller (United States)'),
(78001, 'https://ror.org/03gmwcy77', 'en', 1, 'https://ror.org/03gmwcy77 Centre for International Law Research and Policy'),
(78002, 'https://ror.org/03gmxkp43', 'no_lang_code', 1, 'https://ror.org/03gmxkp43 Vision Technology (United States)'),
(78003, 'https://ror.org/03gnk9609', 'no_lang_code', 1, 'https://ror.org/03gnk9609 Sab Biotherapeutics (United States)'),
(78004, 'https://ror.org/03grn3q81', 'no_lang_code', 1, 'https://ror.org/03grn3q81 Lenzing (United Kingdom)'),
(78005, 'https://ror.org/03gtgkk57', 'no_lang_code', 1, 'https://ror.org/03gtgkk57 Ore Holdings (United States)'),
(78006, 'https://ror.org/03gvee390', 'no_lang_code', 1, 'https://ror.org/03gvee390 Institut für Bahntechnik (Germany)'),
(78007, 'https://ror.org/03gxbhx27', 'no_lang_code', 1, 'https://ror.org/03gxbhx27 Somnics (Taiwan)'),
(78008, 'https://ror.org/03gzhtt54', 'no_lang_code', 1, 'https://ror.org/03gzhtt54 Crystal Consulting (Germany)'),
(78009, 'https://ror.org/03gzxs418', 'en', 1, 'https://ror.org/03gzxs418 Hochschule für öffentliche Verwaltung und Finanzen Ludwigsburg University of Applied Sciences - Public Administration and Finance Ludwigsburg'),
(78010, 'https://ror.org/03h0b2y74', 'en', 1, 'https://ror.org/03h0b2y74 Ninghai First Hospital Medicare and Health Group å®ęµ·åŽæē¬¬äø€åŒ»é™¢'),
(78011, 'https://ror.org/03h2q9n18', 'en', 1, 'https://ror.org/03h2q9n18 Tennessee Space Grant Consortium'),
(78012, 'https://ror.org/03h7jyq46', 'en', 1, 'https://ror.org/03h7jyq46 Foshan Second People''s Hospital ä½›å±±åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(78013, 'https://ror.org/03h9w0610', 'fr', 1, 'https://ror.org/03h9w0610 HƓpital Sainte-PƩrine'),
(78014, 'https://ror.org/03ha8dy44', 'no_lang_code', 1, 'https://ror.org/03ha8dy44 NewAge (United States)'),
(78015, 'https://ror.org/03hakdk41', 'en', 1, 'https://ror.org/03hakdk41 UNC/NCSU Joint Department of Biomedical Engineering'),
(78016, 'https://ror.org/03hbkgr83', 'en', 1, 'https://ror.org/03hbkgr83 Chengdu Center for Disease Control and Prevention ęˆéƒ½åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(78017, 'https://ror.org/03hh80g63', 'no_lang_code', 1, 'https://ror.org/03hh80g63 Lipocine (United States)'),
(78018, 'https://ror.org/03hhrzm12', 'en', 1, 'https://ror.org/03hhrzm12 Islamic Azad University, Bushehr Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد ŲØŁˆŲ“Ł‡Ų±'),
(78019, 'https://ror.org/03hjnde67', 'no_lang_code', 1, 'https://ror.org/03hjnde67 ClearPoint Neuro (United States)'),
(78020, 'https://ror.org/03hm29g42', 'no_lang_code', 1, 'https://ror.org/03hm29g42 KHD Humboldt Wedag (Germany)'),
(78021, 'https://ror.org/03hnh7f92', 'no_lang_code', 1, 'https://ror.org/03hnh7f92 Fürstenberg Institut (Germany)'),
(78022, 'https://ror.org/03hqjqp33', 'no_lang_code', 1, 'https://ror.org/03hqjqp33 Arcadis (Netherlands)'),
(78023, 'https://ror.org/03hsr7383', 'en', 1, 'https://ror.org/03hsr7383 Fukuoka Higashi Medical Center ē¦å²”ę±åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(78024, 'https://ror.org/03htx4q40', 'en', 1, 'https://ror.org/03htx4q40 Carbon Valley Animal Hospital'),
(78025, 'https://ror.org/03hvanq85', 'en', 1, 'https://ror.org/03hvanq85 Fresno VA Medical Center'),
(78026, 'https://ror.org/03hx70e06', 'no_lang_code', 1, 'https://ror.org/03hx70e06 IFU Privates Institut für Analytik (Germany)'),
(78027, 'https://ror.org/03hz7e558', 'en', 1, 'https://ror.org/03hz7e558 Institute of Economic Affairs'),
(78028, 'https://ror.org/03hzyvt65', 'id', 1, 'https://ror.org/03hzyvt65 Universitas Pahlawan Tuanku Tambusai'),
(78029, 'https://ror.org/03j042d77', 'no_lang_code', 1, 'https://ror.org/03j042d77 Osemi (United States)'),
(78030, 'https://ror.org/03j0pv717', 'es', 1, 'https://ror.org/03j0pv717 Consejo Superior De Salud Publica'),
(78031, 'https://ror.org/03j1wg370', 'en', 1, 'https://ror.org/03j1wg370 Leibniz Institute for Jewish History and Culture – Simon Dubnow Leibniz-Institut für jüdische Geschichte und Kultur – Simon Dubnow'),
(78032, 'https://ror.org/03j2gz928', 'no_lang_code', 1, 'https://ror.org/03j2gz928 Semandex Networks (United States)'),
(78033, 'https://ror.org/03j3hnp65', 'de', 1, 'https://ror.org/03j3hnp65 Gouverneur Kinsbergencentrum'),
(78034, 'https://ror.org/03j450x81', 'en', 1, 'https://ror.org/03j450x81 Nanyang Medical College å—é™½é†«å­øé«˜ē­‰å°ˆē§‘å­øę ”'),
(78035, 'https://ror.org/03j4gka24', 'en', 1, 'https://ror.org/03j4gka24 Pingliang People''s Hospital å¹³å‡‰åø‚äŗŗę°‘åŒ»é™¢'),
(78036, 'https://ror.org/03j4q6459', 'no_lang_code', 1, 'https://ror.org/03j4q6459 CryoRay Coolers (United States)'),
(78037, 'https://ror.org/03j5g5d55', 'nl', 1, 'https://ror.org/03j5g5d55 De Kinderkliniek'),
(78038, 'https://ror.org/03j7j4362', 'en', 1, 'https://ror.org/03j7j4362 Kagoshima Prefectural Library é¹æå…å³¶ēœŒē«‹å›³ę›øé¤Ø'),
(78039, 'https://ror.org/03j7qvg12', 'no_lang_code', 1, 'https://ror.org/03j7qvg12 Typs (Canada)'),
(78040, 'https://ror.org/03j87dy80', 'en', 1, 'https://ror.org/03j87dy80 Directorate of Coldwater Fisheries Research, ठंऔा ą¤Ŗą¤¾ą¤Øą„€ ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(78041, 'https://ror.org/03j8xrv28', 'no_lang_code', 1, 'https://ror.org/03j8xrv28 Urtek Water Technologies (Spain)'),
(78042, 'https://ror.org/03j9dwf95', 'en', 1, 'https://ror.org/03j9dwf95 Mackay Junior College of Medicine, Nursing and Management é¦¬å•é†«č­·ē®”ē†å°ˆē§‘å­øę ”'),
(78043, 'https://ror.org/03ja1ng46', 'da', 1, 'https://ror.org/03ja1ng46 Nordisk Fond for MiljĆø og Udvikling'),
(78044, 'https://ror.org/03jc5ts66', 'no_lang_code', 1, 'https://ror.org/03jc5ts66 Tronox (United States)'),
(78045, 'https://ror.org/03jc8h907', 'no_lang_code', 1, 'https://ror.org/03jc8h907 Aurigon (Hungary)'),
(78046, 'https://ror.org/03jddr449', 'en', 1, 'https://ror.org/03jddr449 Thailand Board of Investment ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø„ąø“ąø°ąøąø£ąø£ąø”ąøąø²ąø£ąøŖą¹ˆąø‡ą¹€ąøŖąø£ąø“ąø”ąøąø²ąø£ąø„ąø‡ąø—ąøøąø™'),
(78047, 'https://ror.org/03jg7pr54', 'no_lang_code', 1, 'https://ror.org/03jg7pr54 Roche (Nicaragua)'),
(78048, 'https://ror.org/03jgt3n70', 'en', 1, 'https://ror.org/03jgt3n70 Fraunhofer Project Centre Wolfsburg Fraunhofer-Projektzentrum Wolfsburg'),
(78049, 'https://ror.org/03jmpnx55', 'no_lang_code', 1, 'https://ror.org/03jmpnx55 VOLTARIS (Germany)'),
(78050, 'https://ror.org/03jp18535', 'no_lang_code', 1, 'https://ror.org/03jp18535 gec-co Global Engineering & Consulting (Germany)'),
(78051, 'https://ror.org/03jq3zh43', 'en', 1, 'https://ror.org/03jq3zh43 Institute for Children, Poverty & Homelessness'),
(78052, 'https://ror.org/03jqa1k37', 'no_lang_code', 1, 'https://ror.org/03jqa1k37 Cercacor (United States)'),
(78053, 'https://ror.org/03jqeq923', 'en', 1, 'https://ror.org/03jqeq923 Shonan University of Medical Sciences ę¹˜å—åŒ»ē™‚å¤§å­¦'),
(78054, 'https://ror.org/03jrtp196', 'en', 1, 'https://ror.org/03jrtp196 Miyazaki Welfare Medical College å®®å“Žē¦ē„‰åŒ»ē™‚ć‚«ćƒ¬ćƒƒć‚ø'),
(78055, 'https://ror.org/03jte8779', 'no_lang_code', 1, 'https://ror.org/03jte8779 Oceana Sensor (United States)'),
(78056, 'https://ror.org/03jwhs418', 'no_lang_code', 1, 'https://ror.org/03jwhs418 Grail (United States)'),
(78057, 'https://ror.org/03jy5m525', 'de', 1, 'https://ror.org/03jy5m525 StƤdtisches Museum Schloss Rheydt'),
(78058, 'https://ror.org/03jy6ar87', 'en', 1, 'https://ror.org/03jy6ar87 Instruments Research & Development Establishment'),
(78059, 'https://ror.org/03jyr3j92', 'de', 1, 'https://ror.org/03jyr3j92 Staatliche Lehr- und Versuchsanstalt für Gartenbau'),
(78060, 'https://ror.org/03k0qge96', 'en', 1, 'https://ror.org/03k0qge96 The Ream Foundation'),
(78061, 'https://ror.org/03k30eb14', 'no_lang_code', 1, 'https://ror.org/03k30eb14 ifp Consulting (Germany)'),
(78062, 'https://ror.org/03k3t0n26', 'en', 1, 'https://ror.org/03k3t0n26 KDZ - Centre for Public Administration Research Zentrum für Verwaltungsforschung'),
(78063, 'https://ror.org/03k4zrh82', 'en', 1, 'https://ror.org/03k4zrh82 The People''s Hospital of LinXia äø“å¤å·žäŗŗę°‘åŒ»é™¢'),
(78064, 'https://ror.org/03k5dfv06', 'de', 1, 'https://ror.org/03k5dfv06 Behörde für Gesundheit und Verbraucherschutz'),
(78065, 'https://ror.org/03k8xc952', 'no_lang_code', 1, 'https://ror.org/03k8xc952 NexGen Composites (United States)'),
(78066, 'https://ror.org/03k9mc136', 'no_lang_code', 1, 'https://ror.org/03k9mc136 Nexogen (United States)'),
(78067, 'https://ror.org/03ka0hg89', 'en', 1, 'https://ror.org/03ka0hg89 Nova Laboratories'),
(78068, 'https://ror.org/03kc5dr38', 'no_lang_code', 1, 'https://ror.org/03kc5dr38 Cambridge Mechatronics (United Kingdom)'),
(78069, 'https://ror.org/03kczcb35', 'no_lang_code', 1, 'https://ror.org/03kczcb35 Merus (Netherlands)'),
(78070, 'https://ror.org/03kdbx663', 'en', 1, 'https://ror.org/03kdbx663 Hummingbird Monitoring Network'),
(78071, 'https://ror.org/03kfw6k71', 'no_lang_code', 1, 'https://ror.org/03kfw6k71 Antea Group (France)'),
(78072, 'https://ror.org/03kgwfd55', 'en', 1, 'https://ror.org/03kgwfd55 Chinese Society for Cell Biology äø­å›½ē»†čƒžē”Ÿē‰©å­¦å­¦ä¼š'),
(78073, 'https://ror.org/03kgydk02', 'en', 1, 'https://ror.org/03kgydk02 Harrison International Peace Hospital č””ę°“åø‚äŗŗę°‘åŒ»é™¢'),
(78074, 'https://ror.org/03kk36z33', 'no_lang_code', 1, 'https://ror.org/03kk36z33 Cousin Biotech (France)'),
(78075, 'https://ror.org/03kmaet43', 'no_lang_code', 1, 'https://ror.org/03kmaet43 Stadtwerke Jülich (Germany)'),
(78076, 'https://ror.org/03knb5g53', 'en', 1, 'https://ror.org/03knb5g53 Institute of Environmental Rehabilitation and Conservation ē’°å¢ƒäæ®å¾©äæå…Øę©Ÿę§‹'),
(78077, 'https://ror.org/03knm9781', 'no_lang_code', 1, 'https://ror.org/03knm9781 Verasci (United States)'),
(78078, 'https://ror.org/03kq4dk33', 'no_lang_code', 1, 'https://ror.org/03kq4dk33 Bicycle Therapeutics (United Kingdom)'),
(78079, 'https://ror.org/03kqvwv81', 'en', 1, 'https://ror.org/03kqvwv81 Cooperative Mobility for Competitive Megaregions'),
(78080, 'https://ror.org/03krdwr84', 'en', 1, 'https://ror.org/03krdwr84 Guigang Orthopedic Hospital of Integrated Traditional Chinese and Western Medicine č“µęøÆåø‚äø­č„æåŒ»ē»“åˆéŖØē§‘åŒ»é™¢'),
(78081, 'https://ror.org/03ks20z28', 'en', 1, 'https://ror.org/03ks20z28 Instituto Nacional de Calidad National Institute of Quality'),
(78082, 'https://ror.org/03ks9ad25', 'no_lang_code', 1, 'https://ror.org/03ks9ad25 Hydrogen Slovakia (Slovakia)'),
(78083, 'https://ror.org/03kv24k79', 'no_lang_code', 1, 'https://ror.org/03kv24k79 Platinum Group Coatings (United States)'),
(78084, 'https://ror.org/03kw8ep35', 'no_lang_code', 1, 'https://ror.org/03kw8ep35 Industrial & Marine Service (Germany)'),
(78085, 'https://ror.org/03kwk6445', 'no_lang_code', 1, 'https://ror.org/03kwk6445 Seiren (Japan) ć‚»ćƒ¼ćƒ¬ćƒ³ę Ŗå¼ä¼šē¤¾'),
(78086, 'https://ror.org/03kx02w94', 'en', 1, 'https://ror.org/03kx02w94 Experimental Drug Development Centre'),
(78087, 'https://ror.org/03kxtd827', 'no_lang_code', 1, 'https://ror.org/03kxtd827 Hoyu (Japan) ćƒ›ćƒ¼ćƒ¦ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(78088, 'https://ror.org/03kzpar53', 'en', 1, 'https://ror.org/03kzpar53 Haikou Experimental Station äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢ęµ·å£å®žéŖŒē«™'),
(78089, 'https://ror.org/03m06c639', 'no_lang_code', 1, 'https://ror.org/03m06c639 Immunolight (United States)'),
(78090, 'https://ror.org/03m1xf462', 'no_lang_code', 1, 'https://ror.org/03m1xf462 Sony Olympus Medical Solutions (Japan)'),
(78091, 'https://ror.org/03m2wvf63', 'no_lang_code', 1, 'https://ror.org/03m2wvf63 Nonlinear Control Strategies (United States)'),
(78092, 'https://ror.org/03m691g30', 'en', 1, 'https://ror.org/03m691g30 Sabah Parks Taman-Taman Sabah'),
(78093, 'https://ror.org/03m73t838', 'no_lang_code', 1, 'https://ror.org/03m73t838 RenBio (United States)'),
(78094, 'https://ror.org/03m78yh78', 'no_lang_code', 1, 'https://ror.org/03m78yh78 Raven (United States)'),
(78095, 'https://ror.org/03m8v6t10', 'en', 1, 'https://ror.org/03m8v6t10 Open Data Infrastructure for Social Science and Economic Innovations'),
(78096, 'https://ror.org/03mc14w65', 'no_lang_code', 1, 'https://ror.org/03mc14w65 Cellix Bio (India)'),
(78097, 'https://ror.org/03mf2zr07', 'en', 1, 'https://ror.org/03mf2zr07 Chinese Society of Plant Nutrition and Fertilizer Science äø­å›½ę¤ē‰©č„å…»äøŽč‚„ę–™å­¦ä¼š'),
(78098, 'https://ror.org/03mg0ce08', 'en', 1, 'https://ror.org/03mg0ce08 Interstaatliche Hochschule für Technik NTB Buchs Interstate University of Applied Sciences of Technology Buchs'),
(78099, 'https://ror.org/03mhrjr30', 'en', 1, 'https://ror.org/03mhrjr30 Hiroshima Prefectural Library åŗƒå³¶ēœŒē«‹å›³ę›øé¤Ø'),
(78100, 'https://ror.org/03mhtfp97', 'no_lang_code', 1, 'https://ror.org/03mhtfp97 ECA Medical (United States)'),
(78101, 'https://ror.org/03mhtm362', 'no_lang_code', 1, 'https://ror.org/03mhtm362 Phyre Technologies (United States)'),
(78102, 'https://ror.org/03mk1jb23', 'en', 1, 'https://ror.org/03mk1jb23 Center for Cultural Heritage Technology'),
(78103, 'https://ror.org/03mk77722', 'en', 1, 'https://ror.org/03mk77722 Xinjiang Police College'),
(78104, 'https://ror.org/03mp7ed76', 'no_lang_code', 1, 'https://ror.org/03mp7ed76 Volition (United States)'),
(78105, 'https://ror.org/03mq2gv27', 'no_lang_code', 1, 'https://ror.org/03mq2gv27 Cygnal Therapeutics (United States)'),
(78106, 'https://ror.org/03mvs6080', 'en', 1, 'https://ror.org/03mvs6080 Yangzhou Municipal Meteorological Bureau ę‰¬å·žåø‚ę°”č±”å±€'),
(78107, 'https://ror.org/03mw5zj47', 'en', 1, 'https://ror.org/03mw5zj47 Research Centre Imarat ą°°ą±€ą°øą±†ą°°ą±ą°šą± ą°øą±†ą°‚ą°Ÿą°°ą± ą°‡ą°®ą°¾ą°°ą°¾ą°¤ą±'),
(78108, 'https://ror.org/03mwaf730', 'en', 1, 'https://ror.org/03mwaf730 Center for Nano Science and Technology'),
(78109, 'https://ror.org/03mwwhq75', 'en', 1, 'https://ror.org/03mwwhq75 Higher School of Innovation Management Š’Ń‹ŃŃˆŠ°Ń школа инновационного менеГжмента'),
(78110, 'https://ror.org/03mxp7j39', 'no_lang_code', 1, 'https://ror.org/03mxp7j39 Rocky Mountain Orthodontics (United States)'),
(78111, 'https://ror.org/03mxyqx84', 'en', 1, 'https://ror.org/03mxyqx84 National Center for Climate Change Strategy and International Cooperation å›½å®¶åŗ”åÆ¹ę°”å€™å˜åŒ–ęˆ˜ē•„ē ”ē©¶å’Œå›½é™…åˆä½œäø­åæƒ'),
(78112, 'https://ror.org/03mzw7781', 'en', 1, 'https://ror.org/03mzw7781 Jilin Medical University å‰ęž—åŒ»čÆå­¦é™¢'),
(78113, 'https://ror.org/03n01yk34', 'de', 1, 'https://ror.org/03n01yk34 Institut für Netz- und Anwendungstechnik'),
(78114, 'https://ror.org/03n6j5f16', 'en', 1, 'https://ror.org/03n6j5f16 The Institute of Military History Vojenský historický ústav'),
(78115, 'https://ror.org/03n9hr695', 'no_lang_code', 1, 'https://ror.org/03n9hr695 China National GeneBank å›½å®¶åŸŗå› åŗ“'),
(78116, 'https://ror.org/03n9ycw45', 'no_lang_code', 1, 'https://ror.org/03n9ycw45 Institut für gewerbliche Wasserwirtschaft und Luftreinhaltung (Germany)'),
(78117, 'https://ror.org/03na1cy38', 'no_lang_code', 1, 'https://ror.org/03na1cy38 R-Dex Systems (United States)'),
(78118, 'https://ror.org/03na1e324', 'de', 1, 'https://ror.org/03na1e324 Ostbayerisches Technologie-Transfer-Institut'),
(78119, 'https://ror.org/03na52343', 'en', 1, 'https://ror.org/03na52343 Association for the Development of Douro Viticulture Associação para o Desenvolvimento da Viticultura Duriense'),
(78120, 'https://ror.org/03nag2598', 'no_lang_code', 1, 'https://ror.org/03nag2598 NGK Insulators (United Kingdom)'),
(78121, 'https://ror.org/03nas7697', 'en', 1, 'https://ror.org/03nas7697 Jiang Xi Institute for Drug Control ę±Ÿč„æēœčÆå“ę£€éŖŒę£€ęµ‹ē ”ē©¶é™¢'),
(78122, 'https://ror.org/03ncps145', 'en', 1, 'https://ror.org/03ncps145 University of Torbat Heydarieh دانؓگاه ŲŖŲ±ŲØŲŖ Ų­ŪŒŲÆŲ±ŪŒŁ‡'),
(78123, 'https://ror.org/03nhrqg41', 'no_lang_code', 1, 'https://ror.org/03nhrqg41 ReThink Medical (United States)'),
(78124, 'https://ror.org/03nkb8t76', 'de', 1, 'https://ror.org/03nkb8t76 PƤdea'),
(78125, 'https://ror.org/03nmxrr49', 'en', 1, 'https://ror.org/03nmxrr49 Instituto Universitario de Investigación en Ciencias de la Salud Research Institute of Health Sciences'),
(78126, 'https://ror.org/03nnn1t12', 'no_lang_code', 1, 'https://ror.org/03nnn1t12 Outokumpu (United Kingdom)'),
(78127, 'https://ror.org/03np1sm50', 'no_lang_code', 1, 'https://ror.org/03np1sm50 MSCI (China)'),
(78128, 'https://ror.org/03nrjn370', 'no_lang_code', 1, 'https://ror.org/03nrjn370 Bluefors (Finland)'),
(78129, 'https://ror.org/03nrtjx51', 'en', 1, 'https://ror.org/03nrtjx51 Hainan Meteorological Service ęµ·å—ēœę°”č±”å±€'),
(78130, 'https://ror.org/03nsj9897', 'en', 1, 'https://ror.org/03nsj9897 Islamic Azad University, Sirjan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų³ŪŒŲ±Ų¬Ų§Ł†'),
(78131, 'https://ror.org/03ntya366', 'no_lang_code', 1, 'https://ror.org/03ntya366 Ezaki Glico (Japan) ę±Ÿå“Žć‚°ćƒŖć‚³ę Ŗå¼ä¼šē¤¾'),
(78132, 'https://ror.org/03nw9qk49', 'en', 1, 'https://ror.org/03nw9qk49 Chinese Society for Plant Biology äø­å›½ę¤ē‰©ē”Ÿē‰©å­¦ä¼š'),
(78133, 'https://ror.org/03nwzmg80', 'no_lang_code', 1, 'https://ror.org/03nwzmg80 Oasis Advanced Engineering (United States)'),
(78134, 'https://ror.org/03nx88210', 'en', 1, 'https://ror.org/03nx88210 Institute for Economic Research and Consulting'),
(78135, 'https://ror.org/03nxed310', 'en', 1, 'https://ror.org/03nxed310 China Anti-Doping Agency'),
(78136, 'https://ror.org/03nxzvp26', 'en', 1, 'https://ror.org/03nxzvp26 Hangzhou Botanical Garden ę­å·žę¤ē‰©å›­'),
(78137, 'https://ror.org/03nyrwp51', 'no_lang_code', 1, 'https://ror.org/03nyrwp51 Prioria Robotics (United States)'),
(78138, 'https://ror.org/03nz7py16', 'en', 1, 'https://ror.org/03nz7py16 Italian Society for International Organization SocietĆ  Italiana Organizzazione Internazionale'),
(78139, 'https://ror.org/03p0pmr81', 'no_lang_code', 1, 'https://ror.org/03p0pmr81 Windenergiepark Westküste (Germany)'),
(78140, 'https://ror.org/03p1mkz49', 'no_lang_code', 1, 'https://ror.org/03p1mkz49 SuviCa (United States)'),
(78141, 'https://ror.org/03p3h5q71', 'no_lang_code', 1, 'https://ror.org/03p3h5q71 Datar Cancer Genetics (India)'),
(78142, 'https://ror.org/03p46dh90', 'en', 1, 'https://ror.org/03p46dh90 Aleda E. Lutz VA Medical Center'),
(78143, 'https://ror.org/03p5fy985', 'no_lang_code', 1, 'https://ror.org/03p5fy985 QuantumCTek (China)'),
(78144, 'https://ror.org/03p6znp21', 'no_lang_code', 1, 'https://ror.org/03p6znp21 Microban (United States)'),
(78145, 'https://ror.org/03p8xz723', 'de', 1, 'https://ror.org/03p8xz723 Lausitzer Seenland Klinikum'),
(78146, 'https://ror.org/03p9s5t60', 'no_lang_code', 1, 'https://ror.org/03p9s5t60 Nujira (United Kingdom)'),
(78147, 'https://ror.org/03pcamk69', 'en', 1, 'https://ror.org/03pcamk69 VA Black Hills Health Care System'),
(78148, 'https://ror.org/03pchte23', 'no_lang_code', 1, 'https://ror.org/03pchte23 Infinitus (China) ę— é™ęžäø­åæƒ'),
(78149, 'https://ror.org/03pczck54', 'en', 1, 'https://ror.org/03pczck54 ICAR-National Research Centre on Pig'),
(78150, 'https://ror.org/03pddbz77', 'no_lang_code', 1, 'https://ror.org/03pddbz77 CapsoVision (United States)'),
(78151, 'https://ror.org/03pf1rt23', 'en', 1, 'https://ror.org/03pf1rt23 National Bureau of Agricultural Insect Resources'),
(78152, 'https://ror.org/03pgcsa90', 'no_lang_code', 1, 'https://ror.org/03pgcsa90 Tobishima (Japan) 飛島建設'),
(78153, 'https://ror.org/03pgn2579', 'de', 1, 'https://ror.org/03pgn2579 Deutscher Bundestag'),
(78154, 'https://ror.org/03phj8y65', 'no_lang_code', 1, 'https://ror.org/03phj8y65 Wonik IPS (South Korea) ģ›ģµģ•„ģ“ķ”¼ģ—ģŠ¤'),
(78155, 'https://ror.org/03phr4149', 'no_lang_code', 1, 'https://ror.org/03phr4149 PVA TePla (Germany)'),
(78156, 'https://ror.org/03ps48j85', 'de', 1, 'https://ror.org/03ps48j85 Hochschule für Musik Karlsruhe University of Music Karlsruhe'),
(78157, 'https://ror.org/03pt6v373', 'en', 1, 'https://ror.org/03pt6v373 Cancer Hospital of Huanxing Chaoyang District Beijing åŒ—äŗ¬åø‚ęœé˜³åŒŗę”“å…“č‚æē˜¤åŒ»é™¢'),
(78158, 'https://ror.org/03pz37k82', 'en', 1, 'https://ror.org/03pz37k82 Northwest Institute of Mechanical and Electrical Engineering č„æåŒ—ęœŗē”µå·„ēØ‹å­¦é™¢'),
(78159, 'https://ror.org/03pz4a950', 'en', 1, 'https://ror.org/03pz4a950 University Transportation Research Center'),
(78160, 'https://ror.org/03q129k63', 'en', 1, 'https://ror.org/03q129k63 Kanazawa Medical University Hospital é‡‘ę²¢åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(78161, 'https://ror.org/03q1w5k18', 'en', 1, 'https://ror.org/03q1w5k18 Fins Medical University'),
(78162, 'https://ror.org/03q269m48', 'en', 1, 'https://ror.org/03q269m48 The Thousand'),
(78163, 'https://ror.org/03q2xbs92', 'no_lang_code', 1, 'https://ror.org/03q2xbs92 Ostwestfälisches Institut für Innovative Technologien in der Automatisierungstechnik (Germany)'),
(78164, 'https://ror.org/03q3a0475', 'no_lang_code', 1, 'https://ror.org/03q3a0475 General Electric (Netherlands)'),
(78165, 'https://ror.org/03q3hjg87', 'en', 1, 'https://ror.org/03q3hjg87 Research Institute of Wood Industry äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ ęœØęå·„äøšē ”ē©¶ę‰€'),
(78166, 'https://ror.org/03q46bp55', 'no_lang_code', 1, 'https://ror.org/03q46bp55 Sapper Institut (Germany)'),
(78167, 'https://ror.org/03q5zq793', 'no_lang_code', 1, 'https://ror.org/03q5zq793 Genomix Biotech (India)'),
(78168, 'https://ror.org/03qashd50', 'no_lang_code', 1, 'https://ror.org/03qashd50 Itochu (Japan) ä¼Šč—¤åæ å•†äŗ‹ę Ŗå¼ä¼šē¤¾'),
(78169, 'https://ror.org/03qb80p98', 'fr', 1, 'https://ror.org/03qb80p98 New Dawn University UniversitƩ Aube Nouvelle'),
(78170, 'https://ror.org/03qekz127', 'no_lang_code', 1, 'https://ror.org/03qekz127 Adare Pharma Solutions (United States)'),
(78171, 'https://ror.org/03qfxy306', 'no_lang_code', 1, 'https://ror.org/03qfxy306 Turnkey Design Services (United States)'),
(78172, 'https://ror.org/03qj9zv39', 'no_lang_code', 1, 'https://ror.org/03qj9zv39 Space Information Laboratories (United States)'),
(78173, 'https://ror.org/03qkems54', 'en', 1, 'https://ror.org/03qkems54 Wuhan Red Cross Hospital ę­¦ę±‰åø‚ēŗ¢åå­—ä¼šåŒ»é™¢'),
(78174, 'https://ror.org/03qm54y80', 'no_lang_code', 1, 'https://ror.org/03qm54y80 WƤtas WƤrmetauscher Sachsen (Germany)'),
(78175, 'https://ror.org/03qmxa265', 'no_lang_code', 1, 'https://ror.org/03qmxa265 Serionix (United States)'),
(78176, 'https://ror.org/03qq2mk98', 'no_lang_code', 1, 'https://ror.org/03qq2mk98 KM Biologics (Japan) KMćƒć‚¤ć‚Ŗćƒ­ć‚øć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(78177, 'https://ror.org/03qtzdh23', 'en', 1, 'https://ror.org/03qtzdh23 Bank Ċentrali ta’ Malta Central Bank of Malta'),
(78178, 'https://ror.org/03qvyw596', 'no_lang_code', 1, 'https://ror.org/03qvyw596 Genus (United States)'),
(78179, 'https://ror.org/03qwtkn62', 'de', 1, 'https://ror.org/03qwtkn62 Lebensmittelinstitut KIN'),
(78180, 'https://ror.org/03qxceh63', 'en', 1, 'https://ror.org/03qxceh63 Experimental Factory Magdeburg'),
(78181, 'https://ror.org/03qy3ay77', 'no_lang_code', 1, 'https://ror.org/03qy3ay77 Princeton BioMeditech (United States)'),
(78182, 'https://ror.org/03qyfw860', 'no_lang_code', 1, 'https://ror.org/03qyfw860 Xyleco (United States)'),
(78183, 'https://ror.org/03qz20664', 'de', 1, 'https://ror.org/03qz20664 Brandenburg-Berliner Institut für Sozialwissenschaftliche Studien'),
(78184, 'https://ror.org/03qzgs943', 'no_lang_code', 1, 'https://ror.org/03qzgs943 Radiation Safety Engineering (United States)'),
(78185, 'https://ror.org/03qzxj964', 'en', 1, 'https://ror.org/03qzxj964 China National Institute of Standardization äø­å›½ę ‡å‡†åŒ–äøŽäæ”ęÆåˆ†ē±»ē¼–ē ē ”ē©¶ę‰€'),
(78186, 'https://ror.org/03r2hsf25', 'en', 1, 'https://ror.org/03r2hsf25 Asia Pacific Institute of Research äø€čˆ¬č²”å›£ę³•äŗŗ アジア太平擋研究所'),
(78187, 'https://ror.org/03r5tj610', 'no_lang_code', 1, 'https://ror.org/03r5tj610 Natel Energy (United States)'),
(78188, 'https://ror.org/03r5vgh07', 'no_lang_code', 1, 'https://ror.org/03r5vgh07 Prytime Medical (United States)'),
(78189, 'https://ror.org/03r5za471', 'en', 1, 'https://ror.org/03r5za471 Kiang Wu Hospital é”ę¹–é†«é™¢'),
(78190, 'https://ror.org/03r7aan38', 'de', 1, 'https://ror.org/03r7aan38 Institut für Bauforschung'),
(78191, 'https://ror.org/03r7f5838', 'no_lang_code', 1, 'https://ror.org/03r7f5838 TP Orthodontics (United States)'),
(78192, 'https://ror.org/03r8rb992', 'en', 1, 'https://ror.org/03r8rb992 International Institute of Biotechnology and Toxicology'),
(78193, 'https://ror.org/03r9jkk29', 'no_lang_code', 1, 'https://ror.org/03r9jkk29 Swarco (Austria)'),
(78194, 'https://ror.org/03r9xsc20', 'en', 1, 'https://ror.org/03r9xsc20 Zambia Institute for Policy Analysis and Research'),
(78195, 'https://ror.org/03rahtg67', 'en', 1, 'https://ror.org/03rahtg67 Scientific Research Group in Egypt'),
(78196, 'https://ror.org/03repqx13', 'no_lang_code', 1, 'https://ror.org/03repqx13 Bluejay Mining (United Kingdom)'),
(78197, 'https://ror.org/03rf31e64', 'en', 1, 'https://ror.org/03rf31e64 NEIKER, Instituto Vasco de Investigación y Desarrollo Agrario NEIKER, Nekazaritza Ikerketa eta Garapenerako Euskal Erakundea NEIKER, the Basque Institute for Agricultural Research and Development'),
(78198, 'https://ror.org/03rf5a761', 'es', 1, 'https://ror.org/03rf5a761 Colombian Federation of Obstetrics and Gynecology Federación Colombiana de Obstetricia y Ginecología'),
(78199, 'https://ror.org/03rgkg396', 'en', 1, 'https://ror.org/03rgkg396 Military & Health Research Foundation'),
(78200, 'https://ror.org/03rh67p56', 'no_lang_code', 1, 'https://ror.org/03rh67p56 SanBio (Japan) ć‚µćƒ³ćƒć‚¤ć‚Ŗ'),
(78201, 'https://ror.org/03rqyzt93', 'no_lang_code', 1, 'https://ror.org/03rqyzt93 Beijing Tuofeng Technology Development (China)'),
(78202, 'https://ror.org/03rs32p96', 'en', 1, 'https://ror.org/03rs32p96 Ballad Health'),
(78203, 'https://ror.org/03rs4qr46', 'no_lang_code', 1, 'https://ror.org/03rs4qr46 MIMOT (Germany)'),
(78204, 'https://ror.org/03rtrce80', 'en', 1, 'https://ror.org/03rtrce80 National Centre for Infectious Diseases'),
(78205, 'https://ror.org/03rvjsb61', 'de', 1, 'https://ror.org/03rvjsb61 Landtag Nordrhein-Westfalen, Landtag of North Rhine-Westphalia'),
(78206, 'https://ror.org/03rw8a492', 'en', 1, 'https://ror.org/03rw8a492 German University Association of Advanced Graduate Training UniversitƤtsverband zur Qualifizierung des wissenschaftlichen Nachwuchses in Deutschland'),
(78207, 'https://ror.org/03rwvj817', 'no_lang_code', 1, 'https://ror.org/03rwvj817 Metran (Japan) ピトラン'),
(78208, 'https://ror.org/03rycrh12', 'no_lang_code', 1, 'https://ror.org/03rycrh12 ThermoGenesis (United States)'),
(78209, 'https://ror.org/03ryk3848', 'no_lang_code', 1, 'https://ror.org/03ryk3848 Chacha Nehru Bal Chikitsalaya चाचा ą¤Øą„‡ą¤¹ą¤°ą„ बाल ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ą¤²ą¤Æ'),
(78210, 'https://ror.org/03rzt1w70', 'en', 1, 'https://ror.org/03rzt1w70 Wroclaw University of Applied Informatics "Horizon" Wrocławska Wyższa Szkoła Informatyki Stosowanej ā€žHoryzontā€'),
(78211, 'https://ror.org/03rzz2412', 'en', 1, 'https://ror.org/03rzz2412 Paws Assisting Veterans'),
(78212, 'https://ror.org/03s1n7a78', 'no_lang_code', 1, 'https://ror.org/03s1n7a78 Carbon Block Technology (United States)'),
(78213, 'https://ror.org/03s2sy313', 'no', 1, 'https://ror.org/03s2sy313 Horten Kommune'),
(78214, 'https://ror.org/03s3tpp34', 'no_lang_code', 1, 'https://ror.org/03s3tpp34 Plantex (Slovakia)'),
(78215, 'https://ror.org/03s41ze97', 'en', 1, 'https://ror.org/03s41ze97 Zoo New England'),
(78216, 'https://ror.org/03s4d5r37', 'no_lang_code', 1, 'https://ror.org/03s4d5r37 Zenta Group (Chile)'),
(78217, 'https://ror.org/03s52tj69', 'en', 1, 'https://ror.org/03s52tj69 Saitama Prefectural Kasukabe Special Support School åŸ¼ēŽ‰ēœŒē«‹ę˜„ę—„éƒØé¤Šč­·å­¦ę ”'),
(78218, 'https://ror.org/03s5ddr02', 'no_lang_code', 1, 'https://ror.org/03s5ddr02 EBR Systems (United States)'),
(78219, 'https://ror.org/03s6arh89', 'no_lang_code', 1, 'https://ror.org/03s6arh89 Hexion (United States)'),
(78220, 'https://ror.org/03s936v76', 'en', 1, 'https://ror.org/03s936v76 Children''s Nutrition Research Center at Baylor College of Medicine'),
(78221, 'https://ror.org/03sa1qm07', 'no_lang_code', 1, 'https://ror.org/03sa1qm07 Kyulux (Japan)'),
(78222, 'https://ror.org/03sa4ef12', 'no_lang_code', 1, 'https://ror.org/03sa4ef12 Torque (United States)'),
(78223, 'https://ror.org/03sanww46', 'no_lang_code', 1, 'https://ror.org/03sanww46 Qfix (United States)'),
(78224, 'https://ror.org/03sd2pz70', 'no_lang_code', 1, 'https://ror.org/03sd2pz70 Waterborne Environmental (United States)'),
(78225, 'https://ror.org/03sd2sw82', 'no_lang_code', 1, 'https://ror.org/03sd2sw82 Stella Maris Polytechnic'),
(78226, 'https://ror.org/03sdfca54', 'no_lang_code', 1, 'https://ror.org/03sdfca54 Rhein-Main-Verkehrsverbund'),
(78227, 'https://ror.org/03skc1w23', 'no_lang_code', 1, 'https://ror.org/03skc1w23 Boehringer Ingelheim (Philippines)'),
(78228, 'https://ror.org/03sqqq988', 'no_lang_code', 1, 'https://ror.org/03sqqq988 Sentec (United Kingdom)'),
(78229, 'https://ror.org/03sqy6516', 'en', 1, 'https://ror.org/03sqy6516 Agricultural Research Service - Plains Area'),
(78230, 'https://ror.org/03ss4v007', 'en', 1, 'https://ror.org/03ss4v007 Policy Center for the New South'),
(78231, 'https://ror.org/03strdf60', 'no_lang_code', 1, 'https://ror.org/03strdf60 Velocity Laboratories (United States)'),
(78232, 'https://ror.org/03swddy62', 'en', 1, 'https://ror.org/03swddy62 Institute of Japanese Studies äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ę—„ęœ¬ē ”ē©¶ę‰€'),
(78233, 'https://ror.org/03sxp4873', 'en', 1, 'https://ror.org/03sxp4873 Florida Institute for Conservation Science'),
(78234, 'https://ror.org/03sxw1z96', 'no_lang_code', 1, 'https://ror.org/03sxw1z96 Stellar Exploration (United States)'),
(78235, 'https://ror.org/03t0n2419', 'no_lang_code', 1, 'https://ror.org/03t0n2419 Hamburg Institut (Germany)'),
(78236, 'https://ror.org/03t1ztz45', 'no_lang_code', 1, 'https://ror.org/03t1ztz45 Shibuya (Japan)'),
(78237, 'https://ror.org/03t3qk565', 'no_lang_code', 1, 'https://ror.org/03t3qk565 Nou Systems (United States)'),
(78238, 'https://ror.org/03t65z939', 'no_lang_code', 1, 'https://ror.org/03t65z939 Sanya Central Hospital äø‰äŗšäø­åæƒåŒ»é™¢'),
(78239, 'https://ror.org/03t6w2288', 'en', 1, 'https://ror.org/03t6w2288 Arbeitskreis deutscher BildungsstƤtten Association of German Educational Organizations'),
(78240, 'https://ror.org/03t7gqr04', 'en', 1, 'https://ror.org/03t7gqr04 Alexandria VA Medical Center'),
(78241, 'https://ror.org/03t7jd518', 'de', 1, 'https://ror.org/03t7jd518 Duale Hochschule Gera-Eisenach'),
(78242, 'https://ror.org/03t8x3a11', 'no_lang_code', 1, 'https://ror.org/03t8x3a11 Cosmo Energy (Japan) ć‚³ć‚¹ćƒ¢ć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(78243, 'https://ror.org/03t9hqf74', 'no_lang_code', 1, 'https://ror.org/03t9hqf74 ShockWave Medical (United States)'),
(78244, 'https://ror.org/03t9s6f22', 'en', 1, 'https://ror.org/03t9s6f22 Forest Stewards Guild'),
(78245, 'https://ror.org/03tdar888', 'en', 1, 'https://ror.org/03tdar888 North Eastern Space Applications Centre'),
(78246, 'https://ror.org/03tgvyd09', 'no_lang_code', 1, 'https://ror.org/03tgvyd09 Hi Tech BioSciences India (India)'),
(78247, 'https://ror.org/03tgx7h38', 'no_lang_code', 1, 'https://ror.org/03tgx7h38 EkoWatt (Slovakia)'),
(78248, 'https://ror.org/03th12q46', 'en', 1, 'https://ror.org/03th12q46 Niigata Agro-Food University ę–°ę½Ÿé£Ÿę–™č¾²ę„­å¤§å­¦'),
(78249, 'https://ror.org/03thnsj45', 'no_lang_code', 1, 'https://ror.org/03thnsj45 Schlumberger (Germany)'),
(78250, 'https://ror.org/03tm9zz81', 'en', 1, 'https://ror.org/03tm9zz81 Eastern Oklahoma VA Health Care System'),
(78251, 'https://ror.org/03tn3hy29', 'en', 1, 'https://ror.org/03tn3hy29 Deutsches Rundfunkarchiv German Broadcasting Archive'),
(78252, 'https://ror.org/03tn4px69', 'no_lang_code', 1, 'https://ror.org/03tn4px69 BVI (United States)'),
(78253, 'https://ror.org/03tnkxb28', 'no_lang_code', 1, 'https://ror.org/03tnkxb28 RTS Labs (United States)'),
(78254, 'https://ror.org/03tpfej15', 'no_lang_code', 1, 'https://ror.org/03tpfej15 Viti (United States)'),
(78255, 'https://ror.org/03tpwwd72', 'no_lang_code', 1, 'https://ror.org/03tpwwd72 Spineology (United States)'),
(78256, 'https://ror.org/03tzxa223', 'en', 1, 'https://ror.org/03tzxa223 Grand Junction VA Medical Center'),
(78257, 'https://ror.org/03v2jew50', 'no_lang_code', 1, 'https://ror.org/03v2jew50 Xencor (United States)'),
(78258, 'https://ror.org/03v44jk32', 'no_lang_code', 1, 'https://ror.org/03v44jk32 HZPC (Netherlands)'),
(78259, 'https://ror.org/03v5tv953', 'no_lang_code', 1, 'https://ror.org/03v5tv953 Wista (Germany)'),
(78260, 'https://ror.org/03v842g47', 'en', 1, 'https://ror.org/03v842g47 University of Kigali'),
(78261, 'https://ror.org/03v9vd314', 'no_lang_code', 1, 'https://ror.org/03v9vd314 VitalQuan (United States)'),
(78262, 'https://ror.org/03vay2m05', 'en', 1, 'https://ror.org/03vay2m05 Ioannis A. Lougaris Veterans Affairs Medical Center'),
(78263, 'https://ror.org/03vcp9d79', 'en', 1, 'https://ror.org/03vcp9d79 Botswana Institute for Development Policy Analysis'),
(78264, 'https://ror.org/03vcxzw86', 'no_lang_code', 1, 'https://ror.org/03vcxzw86 DSG Technology (Norway)'),
(78265, 'https://ror.org/03vdkes06', 'no_lang_code', 1, 'https://ror.org/03vdkes06 Archimica (Italy)'),
(78266, 'https://ror.org/03ve2mc46', 'de', 1, 'https://ror.org/03ve2mc46 Gewi-Institut für Gesundheitswirtschaft'),
(78267, 'https://ror.org/03vgx8d33', 'no_lang_code', 1, 'https://ror.org/03vgx8d33 Phoenix Nest (United States)'),
(78268, 'https://ror.org/03vhsyq48', 'no_lang_code', 1, 'https://ror.org/03vhsyq48 Sabre Engineering (United States)'),
(78269, 'https://ror.org/03vjrde80', 'fr', 1, 'https://ror.org/03vjrde80 Institut Universitaire du Golfe de GuinƩe University Institute of the Gulf of Guinea'),
(78270, 'https://ror.org/03vmsb260', 'en', 1, 'https://ror.org/03vmsb260 United Nations University Institute for the Advanced Study of Sustainability å›½é€£å¤§å­¦ć‚µć‚¹ćƒ†ć‚¤ćƒŠćƒ“ćƒŖćƒ†ć‚£é«˜ē­‰ē ”ē©¶ę‰€'),
(78271, 'https://ror.org/03vmxd681', 'no_lang_code', 1, 'https://ror.org/03vmxd681 Scientific Computing Associates (United States)'),
(78272, 'https://ror.org/03vnqze34', 'no_lang_code', 1, 'https://ror.org/03vnqze34 Extend3D (Germany)'),
(78273, 'https://ror.org/03vqd0w40', 'en', 1, 'https://ror.org/03vqd0w40 Institute of Medical Ethics'),
(78274, 'https://ror.org/03vrph192', 'no_lang_code', 1, 'https://ror.org/03vrph192 Cyber Laser (Japan) ć‚µć‚¤ćƒćƒ¼ćƒ¬ćƒ¼ć‚¶'),
(78275, 'https://ror.org/03vsf4009', 'no_lang_code', 1, 'https://ror.org/03vsf4009 SR2 Group (United States)'),
(78276, 'https://ror.org/03vsxz193', 'en', 1, 'https://ror.org/03vsxz193 Advanced Centre for Energetic Materials ą¤Šą¤°ą„ą¤œą¤øą„ą¤µą„€ ą¤Ŗą¤¦ą¤¾ą¤°ą„ą¤„ ą¤‰ą¤Øą„ą¤Øą¤¤ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(78277, 'https://ror.org/03vvhya80', 'en', 1, 'https://ror.org/03vvhya80 Arkansas Children''s Nutrition Center'),
(78278, 'https://ror.org/03vwf8m18', 'en', 1, 'https://ror.org/03vwf8m18 Charles George VA Medical Center'),
(78279, 'https://ror.org/03vx2yp60', 'no_lang_code', 1, 'https://ror.org/03vx2yp60 TeVido BioDevices (United States)'),
(78280, 'https://ror.org/03vxfyf12', 'no_lang_code', 1, 'https://ror.org/03vxfyf12 Max Bƶgl (Germany)'),
(78281, 'https://ror.org/03vyewd38', 'no_lang_code', 1, 'https://ror.org/03vyewd38 Spero Devices (United States)'),
(78282, 'https://ror.org/03vyfg679', 'en', 1, 'https://ror.org/03vyfg679 Matsumoto City Hospital ę¾ęœ¬åø‚ē«‹ē—…é™¢'),
(78283, 'https://ror.org/03vyhtd35', 'no_lang_code', 1, 'https://ror.org/03vyhtd35 Bridgestone (United Kingdom)'),
(78284, 'https://ror.org/03vyrmv17', 'no_lang_code', 1, 'https://ror.org/03vyrmv17 Ochanomizu University Kindergarten ćŠčŒ¶ć®ę°“å„³å­å¤§å­¦é™„å±žå¹¼ēØšåœ’'),
(78285, 'https://ror.org/03vyrq198', 'no_lang_code', 1, 'https://ror.org/03vyrq198 Quantum Opus (United States)'),
(78286, 'https://ror.org/03vz97823', 'de', 1, 'https://ror.org/03vz97823 Institut für Lonenstrahl– und Vakuumverfahrenstechnik'),
(78287, 'https://ror.org/03vzbwz39', 'no_lang_code', 1, 'https://ror.org/03vzbwz39 Verkehrsbetriebe Hamburg-Holstein (Germany)'),
(78288, 'https://ror.org/03w15ax40', 'no_lang_code', 1, 'https://ror.org/03w15ax40 Herrenknecht Vertical (Germany)'),
(78289, 'https://ror.org/03w48ac58', 'no_lang_code', 1, 'https://ror.org/03w48ac58 Novo Nordisk (Mexico)'),
(78290, 'https://ror.org/03w4gz080', 'en', 1, 'https://ror.org/03w4gz080 Advanced Analysis Center é«˜åŗ¦č§£ęžć‚»ćƒ³ć‚æćƒ¼'),
(78291, 'https://ror.org/03w6dw671', 'no_lang_code', 1, 'https://ror.org/03w6dw671 IPM Solutions (Slovakia)'),
(78292, 'https://ror.org/03w8zkt07', 'no_lang_code', 1, 'https://ror.org/03w8zkt07 Hester'),
(78293, 'https://ror.org/03wa5d325', 'en', 1, 'https://ror.org/03wa5d325 Society for Applied Microwave Electronics Engineering & Research'),
(78294, 'https://ror.org/03wa63r81', 'no_lang_code', 1, 'https://ror.org/03wa63r81 Bioness (United States)'),
(78295, 'https://ror.org/03wam2503', 'no_lang_code', 1, 'https://ror.org/03wam2503 P N Lee Statistics and Computing (United Kingdom)'),
(78296, 'https://ror.org/03wbd7629', 'no_lang_code', 1, 'https://ror.org/03wbd7629 Tela Innovations (United States)'),
(78297, 'https://ror.org/03wh5v523', 'no_lang_code', 1, 'https://ror.org/03wh5v523 Machida Endoscope (Japan) ę Ŗå¼ä¼šē¤¾ē”ŗē”°č£½ä½œę‰€'),
(78298, 'https://ror.org/03whb2884', 'no_lang_code', 1, 'https://ror.org/03whb2884 Brasseler (Germany) Gebr. Brasseler'),
(78299, 'https://ror.org/03wj3r219', 'no_lang_code', 1, 'https://ror.org/03wj3r219 Magnolia Medical Technologies (United States)'),
(78300, 'https://ror.org/03wjf5d60', 'en', 1, 'https://ror.org/03wjf5d60 American Speech-Language-Hearing Foundation'),
(78301, 'https://ror.org/03wneb138', 'en', 1, 'https://ror.org/03wneb138 National Institute for Parasitic Diseases'),
(78302, 'https://ror.org/03wrbfs36', 'no_lang_code', 1, 'https://ror.org/03wrbfs36 LafargeHolcim (Canada)'),
(78303, 'https://ror.org/03wrjp633', 'no_lang_code', 1, 'https://ror.org/03wrjp633 Cailabs (France)'),
(78304, 'https://ror.org/03ws8tc44', 'no_lang_code', 1, 'https://ror.org/03ws8tc44 Keiyu Orthopedic Hospital ę…¶å‹ę•“å½¢å¤–ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(78305, 'https://ror.org/03wtmb115', 'en', 1, 'https://ror.org/03wtmb115 VA Butler Healthcare'),
(78306, 'https://ror.org/03wyta813', 'no_lang_code', 1, 'https://ror.org/03wyta813 Konstrukta Defence (Slovakia)'),
(78307, 'https://ror.org/03x1nzy67', 'no_lang_code', 1, 'https://ror.org/03x1nzy67 NHN (South Korea) ģ—”ģ—ģ“ģ¹˜ģ—” ģ£¼ģ‹ķšŒģ‚¬'),
(78308, 'https://ror.org/03x2dsw59', 'no_lang_code', 1, 'https://ror.org/03x2dsw59 Ultrasonic Technologies (United States)'),
(78309, 'https://ror.org/03x2fre67', 'en', 1, 'https://ror.org/03x2fre67 China Science and Technology Museum äø­å›½ē§‘å­¦ęŠ€ęœÆé¦†'),
(78310, 'https://ror.org/03x4xnv96', 'no_lang_code', 1, 'https://ror.org/03x4xnv96 Apax Partners (United Kingdom)'),
(78311, 'https://ror.org/03x5ddc63', 'no_lang_code', 1, 'https://ror.org/03x5ddc63 BABCOCK Industry & Power (Germany)'),
(78312, 'https://ror.org/03x7fn667', 'en', 1, 'https://ror.org/03x7fn667 Western Regional Research Center'),
(78313, 'https://ror.org/03x82b295', 'no_lang_code', 1, 'https://ror.org/03x82b295 Sila Nanotechnologies (United States)'),
(78314, 'https://ror.org/03x95rx80', 'pt', 1, 'https://ror.org/03x95rx80 Fundação de Apoio à Universidade do Rio Grande'),
(78315, 'https://ror.org/03x9v0p05', 'no_lang_code', 1, 'https://ror.org/03x9v0p05 Symbiotix Biotherapies (United States)'),
(78316, 'https://ror.org/03xa7rm31', 'de', 1, 'https://ror.org/03xa7rm31 Institut für Freizeitwissenschaft und Kulturarbeit'),
(78317, 'https://ror.org/03xcp1s96', 'no_lang_code', 1, 'https://ror.org/03xcp1s96 QNu Labs (India)'),
(78318, 'https://ror.org/03xd96m45', 'en', 1, 'https://ror.org/03xd96m45 Shikoku Central Hospital of the Mutual Aid Association of Public School Teachers å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆå››å›½äø­å¤®ē—…é™¢ć€ę„›åŖ›ēœŒć€ę—„ęœ¬'),
(78319, 'https://ror.org/03xexem68', 'en', 1, 'https://ror.org/03xexem68 International Centre for Archival Research'),
(78320, 'https://ror.org/03xfq0m13', 'no_lang_code', 1, 'https://ror.org/03xfq0m13 DATEV (Germany) Datenverarbeitung und Dienstleistung für den steuerberatenden Beruf'),
(78321, 'https://ror.org/03xfq5k21', 'pt', 1, 'https://ror.org/03xfq5k21 Itaipu Binacional'),
(78322, 'https://ror.org/03xj8ec24', 'no_lang_code', 1, 'https://ror.org/03xj8ec24 Nodes & Links (United Kingdom)'),
(78323, 'https://ror.org/03xkxsc82', 'de', 1, 'https://ror.org/03xkxsc82 Institut für Berufs- und Sozialpädagogik'),
(78324, 'https://ror.org/03xp99m49', 'en', 1, 'https://ror.org/03xp99m49 Institute for Integrated Management of Material Fluxes and of Resources'),
(78325, 'https://ror.org/03xptpz88', 'no_lang_code', 1, 'https://ror.org/03xptpz88 Polar (Finland)'),
(78326, 'https://ror.org/03xra4w63', 'de', 1, 'https://ror.org/03xra4w63 Forsa Forsa Institute for Social Research and Statistical Analysis'),
(78327, 'https://ror.org/03xrww068', 'no_lang_code', 1, 'https://ror.org/03xrww068 Poietis (France)'),
(78328, 'https://ror.org/03xt7qs06', 'no_lang_code', 1, 'https://ror.org/03xt7qs06 Institut Raum & Energie (Germany)'),
(78329, 'https://ror.org/03xv0cg46', 'en', 1, 'https://ror.org/03xv0cg46 Qingdao Eighth People''s Hospital é’å²›åø‚ē¬¬å…«äŗŗę°‘åŒ»é™¢'),
(78330, 'https://ror.org/03xv8e740', 'no_lang_code', 1, 'https://ror.org/03xv8e740 ABmerit'),
(78331, 'https://ror.org/03xw8ff71', 'no_lang_code', 1, 'https://ror.org/03xw8ff71 Tokiwa Park ćØćć‚å‹•ē‰©åœ’'),
(78332, 'https://ror.org/03xxp1119', 'no_lang_code', 1, 'https://ror.org/03xxp1119 Alpine Quantum Technologies (Austria)'),
(78333, 'https://ror.org/03xz7zy75', 'no_lang_code', 1, 'https://ror.org/03xz7zy75 Hamburg Wasser (Germany)'),
(78334, 'https://ror.org/03xzfkg70', 'no_lang_code', 1, 'https://ror.org/03xzfkg70 ISB (Germany)'),
(78335, 'https://ror.org/03y0xt433', 'no_lang_code', 1, 'https://ror.org/03y0xt433 Millet Innovation (France)'),
(78336, 'https://ror.org/03y3jby41', 'fr', 1, 'https://ror.org/03y3jby41 Centre National de Recherche et de Formation sur le Paludisme'),
(78337, 'https://ror.org/03y4qb345', 'de', 1, 'https://ror.org/03y4qb345 Institut für Automobilwirtschaft'),
(78338, 'https://ror.org/03y6bke35', 'en', 1, 'https://ror.org/03y6bke35 Osaka Animal Plant & Ocean College å¤§é˜Ŗå‹•ę¤ē‰©ęµ·ę“‹å°‚é–€å­¦ę ”'),
(78339, 'https://ror.org/03y6p7b93', 'en', 1, 'https://ror.org/03y6p7b93 National Institute on Consumer Education ę¶ˆč²»č€…ę•™č‚²ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(78340, 'https://ror.org/03y71kj48', 'no_lang_code', 1, 'https://ror.org/03y71kj48 Tidewater Consulting (United States)'),
(78341, 'https://ror.org/03y7pbb54', 'en', 1, 'https://ror.org/03y7pbb54 Trailfinders Travel Clinic'),
(78342, 'https://ror.org/03yag1532', 'no_lang_code', 1, 'https://ror.org/03yag1532 Raith (Germany)'),
(78343, 'https://ror.org/03ybvq281', 'sk', 1, 'https://ror.org/03ybvq281 Strednej Odbornej Ŕkole Lesníckej BanskÔ Štiavnica'),
(78344, 'https://ror.org/03yc04z38', 'no_lang_code', 1, 'https://ror.org/03yc04z38 Oricula Therapeutics (United States)'),
(78345, 'https://ror.org/03ydbpd31', 'no_lang_code', 1, 'https://ror.org/03ydbpd31 Wellstat Biologics (United States)'),
(78346, 'https://ror.org/03yenn346', 'no_lang_code', 1, 'https://ror.org/03yenn346 Varsha Bioscience and Technology (India)'),
(78347, 'https://ror.org/03ygk8b53', 'no_lang_code', 1, 'https://ror.org/03ygk8b53 Viveve (United States)'),
(78348, 'https://ror.org/03yme5333', 'no_lang_code', 1, 'https://ror.org/03yme5333 Ciena (United Kingdom)');
INSERT INTO `rors` VALUES
(78349, 'https://ror.org/03yqyyy69', 'en', 1, 'https://ror.org/03yqyyy69 United Nations Economic and Social Commission for Western Asia Ų§Ł„Ų„Ų³ŁƒŁˆŲ§ā€Ž'),
(78350, 'https://ror.org/03ytenv10', 'en', 1, 'https://ror.org/03ytenv10 Northern Technical University الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„Ų“Ł…Ų§Ł„ŁŠŲ©'),
(78351, 'https://ror.org/03ytxnh35', 'de', 1, 'https://ror.org/03ytxnh35 Wilhelm-Jost-Institut'),
(78352, 'https://ror.org/03ywzsn05', 'no_lang_code', 1, 'https://ror.org/03ywzsn05 Wen''s Food Group (China) ęø©ę°é£Ÿå“é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(78353, 'https://ror.org/03yx1ht46', 'no_lang_code', 1, 'https://ror.org/03yx1ht46 Savi (United States)'),
(78354, 'https://ror.org/03yxxfa18', 'no_lang_code', 1, 'https://ror.org/03yxxfa18 WELLS BIO (United States)'),
(78355, 'https://ror.org/03yz4hz41', 'no_lang_code', 1, 'https://ror.org/03yz4hz41 Spectra Solutions (United States)'),
(78356, 'https://ror.org/03z02zc05', 'no_lang_code', 1, 'https://ror.org/03z02zc05 Medrobotics (United States)'),
(78357, 'https://ror.org/03z601r05', 'en', 1, 'https://ror.org/03z601r05 Koninklijke Musea voor Schone Kunsten van Belgiƫ MusƩes royaux des Beaux-Arts de Belgique Royal Museums of Fine Arts of Belgium'),
(78358, 'https://ror.org/03z692463', 'en', 1, 'https://ror.org/03z692463 National Tax College ēØŽå‹™å¤§å­¦ę ”'),
(78359, 'https://ror.org/03z6ebp81', 'en', 1, 'https://ror.org/03z6ebp81 Ageo Nursing College äøŠå°¾ēœ‹č­·å°‚é–€å­¦ę ”'),
(78360, 'https://ror.org/03z7fpr75', 'no_lang_code', 1, 'https://ror.org/03z7fpr75 VRC Metal Systems (United States)'),
(78361, 'https://ror.org/03z8hek06', 'en', 1, 'https://ror.org/03z8hek06 Odessa Military Academy Š’Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾Ń— AкаГемії'),
(78362, 'https://ror.org/03z9xj602', 'no_lang_code', 1, 'https://ror.org/03z9xj602 Actigen (United Kingdom)'),
(78363, 'https://ror.org/03zd66h19', 'no_lang_code', 1, 'https://ror.org/03zd66h19 Inprother (Denmark)'),
(78364, 'https://ror.org/03zedkf25', 'no_lang_code', 1, 'https://ror.org/03zedkf25 Penta-Ocean Construction (Japan)'),
(78365, 'https://ror.org/03zf99n20', 'no_lang_code', 1, 'https://ror.org/03zf99n20 Centrient Pharmaceuticals (Netherlands)'),
(78366, 'https://ror.org/03zmk9a61', 'no_lang_code', 1, 'https://ror.org/03zmk9a61 Kerry Group (United Kingdom)'),
(78367, 'https://ror.org/03zmkfy07', 'no_lang_code', 1, 'https://ror.org/03zmkfy07 Quantropi (Canada)'),
(78368, 'https://ror.org/03zna7437', 'en', 1, 'https://ror.org/03zna7437 American College of Veterinary Radiology'),
(78369, 'https://ror.org/03zqmrr34', 'no_lang_code', 1, 'https://ror.org/03zqmrr34 Powerscreen (United Kingdom)'),
(78370, 'https://ror.org/03zr63661', 'en', 1, 'https://ror.org/03zr63661 Slovak Water Management Enterprise Slovenský VodohospodÔrsky Podnik'),
(78371, 'https://ror.org/03zrqt452', 'de', 1, 'https://ror.org/03zrqt452 Medicover'),
(78372, 'https://ror.org/03zry0650', 'fr', 1, 'https://ror.org/03zry0650 HƓpital Georges-Clemenceau'),
(78373, 'https://ror.org/03zryq964', 'no_lang_code', 1, 'https://ror.org/03zryq964 Microsoft (Switzerland)'),
(78374, 'https://ror.org/03zxxbe81', 'no_lang_code', 1, 'https://ror.org/03zxxbe81 Synaptic Research (United States)'),
(78375, 'https://ror.org/04009bk73', 'no_lang_code', 1, 'https://ror.org/04009bk73 Vitalitec International (Germany)'),
(78376, 'https://ror.org/0403afs59', 'no_lang_code', 1, 'https://ror.org/0403afs59 Centinel Spine (United States)'),
(78377, 'https://ror.org/0404kfe46', 'no_lang_code', 1, 'https://ror.org/0404kfe46 Bayer (Mexico)'),
(78378, 'https://ror.org/04052zp33', 'no_lang_code', 1, 'https://ror.org/04052zp33 Polygon Physics (France)'),
(78379, 'https://ror.org/0405ahw63', 'no_lang_code', 1, 'https://ror.org/0405ahw63 DNA Diagnostic (Denmark)'),
(78380, 'https://ror.org/0406r4n88', 'no_lang_code', 1, 'https://ror.org/0406r4n88 AIM Infrarot-Module (Germany)'),
(78381, 'https://ror.org/0407aqe25', 'de', 1, 'https://ror.org/0407aqe25 Märkisches Institut für Technologie- und Innovationsförderung'),
(78382, 'https://ror.org/04084nh70', 'no_lang_code', 1, 'https://ror.org/04084nh70 SpectraDynamics (United States)'),
(78383, 'https://ror.org/04089mn23', 'no_lang_code', 1, 'https://ror.org/04089mn23 Edgewell Personal Care (United States)'),
(78384, 'https://ror.org/0409c3r50', 'en', 1, 'https://ror.org/0409c3r50 Institute for Fundamental Physics of the Universe'),
(78385, 'https://ror.org/0409pat80', 'no_lang_code', 1, 'https://ror.org/0409pat80 DeVilbiss Healthcare (United States)'),
(78386, 'https://ror.org/040ac0g28', 'en', 1, 'https://ror.org/040ac0g28 University of Civil Protection Университет гражГанской защиты МЧД Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(78387, 'https://ror.org/040anr776', 'no_lang_code', 1, 'https://ror.org/040anr776 Toyo Suisan (Japan) ę±ę“‹ę°“ē”£ę Ŗå¼ä¼šē¤¾'),
(78388, 'https://ror.org/040apba86', 'en', 1, 'https://ror.org/040apba86 Global Research and Advocacy Group'),
(78389, 'https://ror.org/040b2zb02', 'no_lang_code', 1, 'https://ror.org/040b2zb02 Riptide Autonomous Solutions (United States)'),
(78390, 'https://ror.org/040bb7493', 'en', 1, 'https://ror.org/040bb7493 Biodiversity Research Center, Academia Sinica 中央研究院 ē”Ÿē‰©å¤šęØ£ę€§ē ”ē©¶äø­åæƒ'),
(78391, 'https://ror.org/040d99j97', 'en', 1, 'https://ror.org/040d99j97 Institut für Wissenschaft und Ethik Institute of Science and Ethics'),
(78392, 'https://ror.org/040dnvn05', 'no_lang_code', 1, 'https://ror.org/040dnvn05 Wave CPC (United States)'),
(78393, 'https://ror.org/040e62975', 'no_lang_code', 1, 'https://ror.org/040e62975 US Biotest (United States)'),
(78394, 'https://ror.org/040egw157', 'id', 1, 'https://ror.org/040egw157 Institut Teknologi dan Sains Nahdlatul Ulama'),
(78395, 'https://ror.org/040ep5714', 'no_lang_code', 1, 'https://ror.org/040ep5714 Therabel (Netherlands)'),
(78396, 'https://ror.org/040gqn094', 'en', 1, 'https://ror.org/040gqn094 HCOV Global'),
(78397, 'https://ror.org/040k92z84', 'no_lang_code', 1, 'https://ror.org/040k92z84 Sanofi (Turkey)'),
(78398, 'https://ror.org/040m02t59', 'no_lang_code', 1, 'https://ror.org/040m02t59 Hip Innovation Technology (United States)'),
(78399, 'https://ror.org/040me2j46', 'es', 1, 'https://ror.org/040me2j46 Centro de Estudios FotosintƩticos y Bioquƭmicos'),
(78400, 'https://ror.org/040n2wh36', 'en', 1, 'https://ror.org/040n2wh36 European Magnetic Field Laboratory'),
(78401, 'https://ror.org/040spfh06', 'en', 1, 'https://ror.org/040spfh06 Wildlife Information Liaison Development'),
(78402, 'https://ror.org/040t4st49', 'de', 1, 'https://ror.org/040t4st49 Ruhr-Forschungsinstitut für Innovations- und Strukturpolitik'),
(78403, 'https://ror.org/040w54343', 'no_lang_code', 1, 'https://ror.org/040w54343 Institut Für Arbeits- und Baubetriebswissenschaft (Germany)'),
(78404, 'https://ror.org/040xmsv41', 'no_lang_code', 1, 'https://ror.org/040xmsv41 Ibarakihigashi National Hospital å›½ē«‹ē—…é™¢ę©Ÿę§‹čŒØåŸŽę±ē—…é™¢'),
(78405, 'https://ror.org/04119yp22', 'no_lang_code', 1, 'https://ror.org/04119yp22 Ingine (United States)'),
(78406, 'https://ror.org/0413rnb52', 'no_lang_code', 1, 'https://ror.org/0413rnb52 Nisshin Scientia (Japan) ę—„é€²ć‚µć‚¤ć‚Øćƒ³ćƒ†ć‚£ć‚¢'),
(78407, 'https://ror.org/04154se97', 'en', 1, 'https://ror.org/04154se97 Bidar Organization for Medicinal and Aromatic plants'),
(78408, 'https://ror.org/0415n4468', 'en', 1, 'https://ror.org/0415n4468 Institut für Ressourceneffizienz und Energiestrategien Institute for Resource Efficiency and Energy Strategies'),
(78409, 'https://ror.org/0419b0d30', 'en', 1, 'https://ror.org/0419b0d30 Abrar University Ų¬Ų§Ł…Ų¹Ų© Ų£ŲØŲ±Ų§Ų±'),
(78410, 'https://ror.org/0419fj215', 'en', 1, 'https://ror.org/0419fj215 Aerospace Information Research Institute äø­å›½ē§‘å­¦é™¢ē©ŗå¤©äæ”ęÆåˆ›ę–°ē ”ē©¶é™¢'),
(78411, 'https://ror.org/041ajqr07', 'en', 1, 'https://ror.org/041ajqr07 Ishikawa Prefectural Library ēŸ³å·ēœŒē«‹å›³ę›øé¤Ø'),
(78412, 'https://ror.org/041aqd617', 'no_lang_code', 1, 'https://ror.org/041aqd617 QVT (United States)'),
(78413, 'https://ror.org/041bygf77', 'en', 1, 'https://ror.org/041bygf77 Ghent University Global Campus ź²ķŠøėŒ€ķ•™źµ'),
(78414, 'https://ror.org/041d5xb89', 'de', 1, 'https://ror.org/041d5xb89 Verein zur Fƶrderung Innovativer Verfahren in der Logistik'),
(78415, 'https://ror.org/041d7hq08', 'no_lang_code', 1, 'https://ror.org/041d7hq08 Advance (Japan)'),
(78416, 'https://ror.org/041eygf45', 'de', 1, 'https://ror.org/041eygf45 Institut für Umweltplanung und Raumentwicklung'),
(78417, 'https://ror.org/041fffy58', 'en', 1, 'https://ror.org/041fffy58 Central Alabama Veterans Health Care System'),
(78418, 'https://ror.org/041j42q70', 'en', 1, 'https://ror.org/041j42q70 South African Environmental Observation Network'),
(78419, 'https://ror.org/041mg2534', 'no_lang_code', 1, 'https://ror.org/041mg2534 Retrotope (United States)'),
(78420, 'https://ror.org/041ms9k93', 'en', 1, 'https://ror.org/041ms9k93 Beijing Foresty Machinery Institute å›½å®¶ęž—äøšå’Œč‰åŽŸå±€åŒ—äŗ¬ęž—äøšęœŗę¢°ē ”ē©¶ę‰€'),
(78421, 'https://ror.org/041n1pp62', 'en', 1, 'https://ror.org/041n1pp62 SouthSouthNorth'),
(78422, 'https://ror.org/041nfer11', 'es', 1, 'https://ror.org/041nfer11 Menescalia Centro Veterinario'),
(78423, 'https://ror.org/041ppys11', 'no_lang_code', 1, 'https://ror.org/041ppys11 Hesse (Germany)'),
(78424, 'https://ror.org/041v1ea26', 'en', 1, 'https://ror.org/041v1ea26 NCMI Information and Data Centre'),
(78425, 'https://ror.org/041v5th48', 'en', 1, 'https://ror.org/041v5th48 Affiliated Hospital of Shaanxi University of Chinese Medicine é™•č„æäø­åŒ»čÆå¤§å­¦é™„å±žåŒ»é™¢'),
(78426, 'https://ror.org/041vwff03', 'no_lang_code', 1, 'https://ror.org/041vwff03 Fuso Pharmaceutical Industries (Japan) ę‰¶ę”‘č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(78427, 'https://ror.org/041w6fe35', 'no_lang_code', 1, 'https://ror.org/041w6fe35 Spetec (Germany)'),
(78428, 'https://ror.org/041y46z19', 'no_lang_code', 1, 'https://ror.org/041y46z19 Richardson Electronics (United Kingdom)'),
(78429, 'https://ror.org/041y61656', 'no_lang_code', 1, 'https://ror.org/041y61656 Heliae (United States)'),
(78430, 'https://ror.org/042031a56', 'de', 1, 'https://ror.org/042031a56 Verband SƤchsischer Bildungsinstitute'),
(78431, 'https://ror.org/0421cc730', 'no_lang_code', 1, 'https://ror.org/0421cc730 Precision Polyolefins (United States)'),
(78432, 'https://ror.org/0421qr997', 'en', 1, 'https://ror.org/0421qr997 National University of Sciences, Technologies, Engineering and Mathematics UniversitƩ Nationale des Sciences, Technologies, IngƩnierie et MathƩmatiques'),
(78433, 'https://ror.org/0422rck44', 'no_lang_code', 1, 'https://ror.org/0422rck44 Allied Healthcare Products (United States)'),
(78434, 'https://ror.org/04236xc45', 'en', 1, 'https://ror.org/04236xc45 Tama County Public Health & Home Care'),
(78435, 'https://ror.org/0423yjj08', 'en', 1, 'https://ror.org/0423yjj08 Borderstep Institut für Innovation und Nachhaltigkeit Borderstep Institute for Innovation and Sustainability'),
(78436, 'https://ror.org/0424wxn97', 'de', 1, 'https://ror.org/0424wxn97 Institut für Postfossile Logistik'),
(78437, 'https://ror.org/0425qnd07', 'no_lang_code', 1, 'https://ror.org/0425qnd07 Institut für Produktionsmanagement und Logistik (Germany)'),
(78438, 'https://ror.org/04265mc69', 'de', 1, 'https://ror.org/04265mc69 Forschungsinstitut für innovative Arbeitsgestaltung und Prävention'),
(78439, 'https://ror.org/0426eeb63', 'no_lang_code', 1, 'https://ror.org/0426eeb63 Pacific Research Group (United States)'),
(78440, 'https://ror.org/0428ha587', 'en', 1, 'https://ror.org/0428ha587 Orlando VA Medical Center'),
(78441, 'https://ror.org/042ag0556', 'en', 1, 'https://ror.org/042ag0556 Ehime Institute of Industrial Technology Paper Technology Center ę„›åŖ›ēœŒē”£ę„­ęŠ€č”“ē ”ē©¶ę‰€ ē“™ē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(78442, 'https://ror.org/042anhx64', 'no_lang_code', 1, 'https://ror.org/042anhx64 UCT Coatings (United States)'),
(78443, 'https://ror.org/042b03f56', 'no_lang_code', 1, 'https://ror.org/042b03f56 Mane (France)'),
(78444, 'https://ror.org/042bvs696', 'en', 1, 'https://ror.org/042bvs696 Startups.be'),
(78445, 'https://ror.org/042cmjn68', 'no_lang_code', 1, 'https://ror.org/042cmjn68 3Shape (Denmark)'),
(78446, 'https://ror.org/042d6f122', 'no_lang_code', 1, 'https://ror.org/042d6f122 Lacer (Spain)'),
(78447, 'https://ror.org/042fkva46', 'no_lang_code', 1, 'https://ror.org/042fkva46 Graphic Science (United Kingdom)'),
(78448, 'https://ror.org/042ft0a49', 'de', 1, 'https://ror.org/042ft0a49 Stiftung Jugend forscht'),
(78449, 'https://ror.org/042mf3776', 'no_lang_code', 1, 'https://ror.org/042mf3776 Ophidion (United States)'),
(78450, 'https://ror.org/042ms5h77', 'en', 1, 'https://ror.org/042ms5h77 UK Council on Deafness'),
(78451, 'https://ror.org/042n88708', 'no_lang_code', 1, 'https://ror.org/042n88708 Nitto RIKEN (Japan) ę—„ę±ē†åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(78452, 'https://ror.org/042qbe045', 'es', 1, 'https://ror.org/042qbe045 Centro de Investigación en Salud Dr. Hugo Mendoza'),
(78453, 'https://ror.org/042r8hg55', 'no_lang_code', 1, 'https://ror.org/042r8hg55 Solid State Ceramics (United States)'),
(78454, 'https://ror.org/042rxfh43', 'no_lang_code', 1, 'https://ror.org/042rxfh43 Seeqc (United States)'),
(78455, 'https://ror.org/042s3g481', 'no_lang_code', 1, 'https://ror.org/042s3g481 Thuringian Institute of Sustainability and Climate Protection (Germany)'),
(78456, 'https://ror.org/042wav684', 'en', 1, 'https://ror.org/042wav684 Bulgarian National Bank Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° нароГна банка'),
(78457, 'https://ror.org/042wb3s35', 'en', 1, 'https://ror.org/042wb3s35 Selangor Business School'),
(78458, 'https://ror.org/042xh2258', 'no_lang_code', 1, 'https://ror.org/042xh2258 Vatech (South Korea)'),
(78459, 'https://ror.org/042xrgf63', 'de', 1, 'https://ror.org/042xrgf63 Lehr- und Versuchsanstalt für Viehhaltung Hofgut Neumühle'),
(78460, 'https://ror.org/042z8zj53', 'en', 1, 'https://ror.org/042z8zj53 Aso Information Business College Fukuoka éŗ»ē”Ÿęƒ…å ±ćƒ“ć‚øćƒć‚¹å°‚é–€å­¦ę ”ē¦å²”ę ”'),
(78461, 'https://ror.org/042zg6d08', 'de', 1, 'https://ror.org/042zg6d08 Max Zƶllner Stiftung'),
(78462, 'https://ror.org/0432avs60', 'no_lang_code', 1, 'https://ror.org/0432avs60 Corium (United States)'),
(78463, 'https://ror.org/0432w2a74', 'no_lang_code', 1, 'https://ror.org/0432w2a74 Bochumer Institut für Technologie (Germany)'),
(78464, 'https://ror.org/0433h3c62', 'en', 1, 'https://ror.org/0433h3c62 Agencija za ZaŔtitu Osobnih Podataka Croatian Personal Data Protection Agency'),
(78465, 'https://ror.org/04340dw19', 'en', 1, 'https://ror.org/04340dw19 euroCRIS'),
(78466, 'https://ror.org/0434zpn71', 'en', 1, 'https://ror.org/0434zpn71 International SƔmi Film Institute'),
(78467, 'https://ror.org/043570368', 'en', 1, 'https://ror.org/043570368 City of Antwerp Stad Antwerpen'),
(78468, 'https://ror.org/0435jsb33', 'no_lang_code', 1, 'https://ror.org/0435jsb33 22nd Century Group (United States)'),
(78469, 'https://ror.org/0438mhy97', 'en', 1, 'https://ror.org/0438mhy97 Egyptian Initiative for Personal Rights المبادرة Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ł„Ł„Ų­Ł‚ŁˆŁ‚ Ų§Ł„Ų“Ų®ŲµŁŠŲ©ā€Ž'),
(78470, 'https://ror.org/043afjr64', 'en', 1, 'https://ror.org/043afjr64 Women''s Brain Project'),
(78471, 'https://ror.org/043ajem71', 'en', 1, 'https://ror.org/043ajem71 Catalytic Longevity'),
(78472, 'https://ror.org/043e44e41', 'en', 1, 'https://ror.org/043e44e41 Center for Regional Economic Competitiveness'),
(78473, 'https://ror.org/043fbs867', 'no_lang_code', 1, 'https://ror.org/043fbs867 Stimwave Technologies (United States)'),
(78474, 'https://ror.org/043fdq347', 'no_lang_code', 1, 'https://ror.org/043fdq347 SUSS MicroTec (Switzerland)'),
(78475, 'https://ror.org/043gj6932', 'en', 1, 'https://ror.org/043gj6932 Tokyo Technical College ę±äŗ¬ćƒ†ć‚Æćƒ‹ć‚«ćƒ«ć‚«ćƒ¬ćƒƒć‚ø'),
(78476, 'https://ror.org/043h59p22', 'no_lang_code', 1, 'https://ror.org/043h59p22 Orbia (Mexico)'),
(78477, 'https://ror.org/043hxea55', 'en', 1, 'https://ror.org/043hxea55 The First People''s Hospital of Guiyang č“µé˜³åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(78478, 'https://ror.org/043kzcw74', 'en', 1, 'https://ror.org/043kzcw74 Center for the Study of Equity and Governance in Health Systems Centro de Estudios para la Equidad y Gobernanza en Sistemas de Salud'),
(78479, 'https://ror.org/043m06r15', 'no_lang_code', 1, 'https://ror.org/043m06r15 Bioquell (United Kingdom)'),
(78480, 'https://ror.org/043mt5433', 'en', 1, 'https://ror.org/043mt5433 Organization for Social Science Research in Eastern and Southern Africa'),
(78481, 'https://ror.org/043nk1744', 'no_lang_code', 1, 'https://ror.org/043nk1744 Kobe Material Testing Laboratory (Japan)'),
(78482, 'https://ror.org/043q1rx18', 'no_lang_code', 1, 'https://ror.org/043q1rx18 Dytron (Slovakia)'),
(78483, 'https://ror.org/043q87b85', 'de', 1, 'https://ror.org/043q87b85 Wissenschaftliche Stadtbibliothek Mainz'),
(78484, 'https://ror.org/043qmsk75', 'no_lang_code', 1, 'https://ror.org/043qmsk75 Spectradyne (United States)'),
(78485, 'https://ror.org/043vdcr39', 'en', 1, 'https://ror.org/043vdcr39 Mental Health Commission'),
(78486, 'https://ror.org/043vk9688', 'no_lang_code', 1, 'https://ror.org/043vk9688 Vanilla Unmanned (United States)'),
(78487, 'https://ror.org/043wq2k30', 'en', 1, 'https://ror.org/043wq2k30 East-Siberian Institute of Economics and Management Восточно-сибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø менеГжмента'),
(78488, 'https://ror.org/0440c3437', 'en', 1, 'https://ror.org/0440c3437 Information Technology Laboratory'),
(78489, 'https://ror.org/0440hsj80', 'no_lang_code', 1, 'https://ror.org/0440hsj80 Perorsaanermik Ilinniarfik / College of Social Education'),
(78490, 'https://ror.org/0441nm020', 'en', 1, 'https://ror.org/0441nm020 Iwate Cultural Promotion agency č²”å›£ę³•äŗŗå²©ę‰‹ēœŒę–‡åŒ–ęŒÆčˆˆäŗ‹ę„­'),
(78491, 'https://ror.org/0441q2c30', 'de', 1, 'https://ror.org/0441q2c30 DVGW - Technologiezentrum Wasser, DVGW - Water Technology Center'),
(78492, 'https://ror.org/0441qqc51', 'no_lang_code', 1, 'https://ror.org/0441qqc51 Scomm (United States)'),
(78493, 'https://ror.org/0441yn115', 'no_lang_code', 1, 'https://ror.org/0441yn115 Deutsche WindGuard (Germany)'),
(78494, 'https://ror.org/0443rmh76', 'en', 1, 'https://ror.org/0443rmh76 Wuhan Blood Center ę­¦ę±‰č”€ę¶²äø­åæƒ'),
(78495, 'https://ror.org/044eskk16', 'en', 1, 'https://ror.org/044eskk16 Team University'),
(78496, 'https://ror.org/044g40g24', 'no_lang_code', 1, 'https://ror.org/044g40g24 Kumiai Chemical Industry (Japan) ć‚ÆćƒŸć‚¢ć‚¤åŒ–å­¦å·„ę„­'),
(78497, 'https://ror.org/044hpwe09', 'en', 1, 'https://ror.org/044hpwe09 IIT@Harvard'),
(78498, 'https://ror.org/044j01f08', 'no_lang_code', 1, 'https://ror.org/044j01f08 Traycer (United States)'),
(78499, 'https://ror.org/044j7ag44', 'no_lang_code', 1, 'https://ror.org/044j7ag44 ForteBio (United States)'),
(78500, 'https://ror.org/044jk0m18', 'no_lang_code', 1, 'https://ror.org/044jk0m18 Cesic (Germany)'),
(78501, 'https://ror.org/044jqqw48', 'de', 1, 'https://ror.org/044jqqw48 Staatliche Kunsthalle Karlsruhe'),
(78502, 'https://ror.org/044jzz105', 'no_lang_code', 1, 'https://ror.org/044jzz105 Clariance (Luxembourg)'),
(78503, 'https://ror.org/044nbg291', 'en', 1, 'https://ror.org/044nbg291 Banca Națională a RomĆ¢niei National Bank of Romania'),
(78504, 'https://ror.org/044pe8918', 'en', 1, 'https://ror.org/044pe8918 Otsu City Museum Of History å¤§ę“„åø‚ę­“å²åšē‰©é¤Ø'),
(78505, 'https://ror.org/044r8dr88', 'no_lang_code', 1, 'https://ror.org/044r8dr88 Pathlab (New Zealand)'),
(78506, 'https://ror.org/044r8r947', 'no_lang_code', 1, 'https://ror.org/044r8r947 Ghana Institute of Languages'),
(78507, 'https://ror.org/044snpb24', 'en', 1, 'https://ror.org/044snpb24 Research Institute of Forestry Policy and Information äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ęž—äøšē ”ē©¶ę‰€'),
(78508, 'https://ror.org/044t1vj04', 'no_lang_code', 1, 'https://ror.org/044t1vj04 ABEnzymes (Germany)'),
(78509, 'https://ror.org/044tnwv36', 'no_lang_code', 1, 'https://ror.org/044tnwv36 ProteinOne (United States)'),
(78510, 'https://ror.org/044tp0a91', 'no_lang_code', 1, 'https://ror.org/044tp0a91 Morishita Jintan (Japan) ę£®äø‹ä»äø¹ę Ŗå¼ä¼šē¤¾'),
(78511, 'https://ror.org/044tqdm09', 'no_lang_code', 1, 'https://ror.org/044tqdm09 Osteomed (United States)'),
(78512, 'https://ror.org/044w5t390', 'en', 1, 'https://ror.org/044w5t390 European Centre for Community Education'),
(78513, 'https://ror.org/044yd5h03', 'fr', 1, 'https://ror.org/044yd5h03 CNR de la RƩsistance aux Antibiotiques'),
(78514, 'https://ror.org/044ydn458', 'en', 1, 'https://ror.org/044ydn458 Brazilian Institute of Neuroscience and Neurotechnology Instituto Brasileiro de NeurociĆŖncia e Neurotecnologia'),
(78515, 'https://ror.org/044ytdk33', 'en', 1, 'https://ror.org/044ytdk33 ForschungsVerbund Erneuerbare Energien Renewable Energy Research Association'),
(78516, 'https://ror.org/0450da943', 'no_lang_code', 1, 'https://ror.org/0450da943 PapGene (United States)'),
(78517, 'https://ror.org/04567sh69', 'en', 1, 'https://ror.org/04567sh69 United Nations Office on Drugs and Crime'),
(78518, 'https://ror.org/0457cab92', 'no_lang_code', 1, 'https://ror.org/0457cab92 Miyoshi Kasei (Japan) äø‰å„½åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(78519, 'https://ror.org/045852a14', 'no_lang_code', 1, 'https://ror.org/045852a14 Yamagata Prefectural Shinjo Hospital å±±å½¢ēœŒē«‹ę–°åŗ„ē—…é™¢'),
(78520, 'https://ror.org/045b7dz91', 'no_lang_code', 1, 'https://ror.org/045b7dz91 Echigo Matsunoyama Forest School Kiroro č¶Šå¾Œę¾ä¹‹å±±ć€Œę£®ć®å­¦ę ”ć€ć‚­ćƒ§ćƒ­ćƒ­'),
(78521, 'https://ror.org/045c7x933', 'no_lang_code', 1, 'https://ror.org/045c7x933 VivaQuant (United States)'),
(78522, 'https://ror.org/045cajz52', 'de', 1, 'https://ror.org/045cajz52 Dommuseum Hildesheim'),
(78523, 'https://ror.org/045dj7z60', 'en', 1, 'https://ror.org/045dj7z60 International Fertilizer Development Center'),
(78524, 'https://ror.org/045g0dr61', 'no_lang_code', 1, 'https://ror.org/045g0dr61 Orient Chemical Industries (Japan) ć‚ŖćƒŖćƒ±ćƒ³ćƒˆåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(78525, 'https://ror.org/045g15j06', 'no_lang_code', 1, 'https://ror.org/045g15j06 Chevron (China) é›Ŗä½›é¾é¦™ęøÆęœ‰é™å…¬åø'),
(78526, 'https://ror.org/045hcdy93', 'no_lang_code', 1, 'https://ror.org/045hcdy93 Wescam (Canada)'),
(78527, 'https://ror.org/045j7j567', 'no_lang_code', 1, 'https://ror.org/045j7j567 Michelin (United Kingdom)'),
(78528, 'https://ror.org/045jj6w47', 'en', 1, 'https://ror.org/045jj6w47 Institute for Building Systems Engineering Dresden Research and Application'),
(78529, 'https://ror.org/045jy1q53', 'de', 1, 'https://ror.org/045jy1q53 Instituts für Strukturpolitik und Wirtschaftsförderung Gemeinnützige Gesellschaft'),
(78530, 'https://ror.org/045ky2r08', 'de', 1, 'https://ror.org/045ky2r08 Erich-Brost-Institut'),
(78531, 'https://ror.org/045pdpn43', 'en', 1, 'https://ror.org/045pdpn43 Flanders Institute for Logistics Vlaams Instituut voor de Logistiek'),
(78532, 'https://ror.org/045qf3j54', 'en', 1, 'https://ror.org/045qf3j54 Center for Security and Emerging Technology'),
(78533, 'https://ror.org/045qk3139', 'no_lang_code', 1, 'https://ror.org/045qk3139 Shock Transients (United States)'),
(78534, 'https://ror.org/045r80614', 'no_lang_code', 1, 'https://ror.org/045r80614 CIP Chemisches Institut Pforzheim GmbH (Germany)'),
(78535, 'https://ror.org/045rr1351', 'en', 1, 'https://ror.org/045rr1351 Alabama Library Association'),
(78536, 'https://ror.org/045smr203', 'en', 1, 'https://ror.org/045smr203 Warm Heart Worldwide'),
(78537, 'https://ror.org/045tbeb23', 'de', 1, 'https://ror.org/045tbeb23 Lehmbruck Museum'),
(78538, 'https://ror.org/045w00s14', 'no_lang_code', 1, 'https://ror.org/045w00s14 Tech 21 (United States)'),
(78539, 'https://ror.org/045wez665', 'no_lang_code', 1, 'https://ror.org/045wez665 Crescita Therapeutics (Canada)'),
(78540, 'https://ror.org/045wyxp42', 'no_lang_code', 1, 'https://ror.org/045wyxp42 Quick-Med Technologies (United States)'),
(78541, 'https://ror.org/045yf0774', 'en', 1, 'https://ror.org/045yf0774 Center for Neuroscience and Cognitive Systems'),
(78542, 'https://ror.org/046575319', 'no_lang_code', 1, 'https://ror.org/046575319 E-T-A Elektrotechnische Apparate (Germany)'),
(78543, 'https://ror.org/0465gqv59', 'en', 1, 'https://ror.org/0465gqv59 Maharashtra Forest Department ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° वन विभाग'),
(78544, 'https://ror.org/0466nq257', 'en', 1, 'https://ror.org/0466nq257 China Academic Degrees and Graduate Education Development Center äø­å›½å­¦ä½äøŽē ”ē©¶ē”Ÿę•™č‚²äæ”ęÆē½‘'),
(78545, 'https://ror.org/0467ep474', 'no_lang_code', 1, 'https://ror.org/0467ep474 Herrenknecht (Germany)'),
(78546, 'https://ror.org/0468x4e75', 'en', 1, 'https://ror.org/0468x4e75 UK Data Service'),
(78547, 'https://ror.org/04693s912', 'no_lang_code', 1, 'https://ror.org/04693s912 NeuroGenetic Pharmaceuticals (United States)'),
(78548, 'https://ror.org/0469c4m52', 'en', 1, 'https://ror.org/0469c4m52 Saitama Prefectural River Museum åŸ¼ēŽ‰ēœŒē«‹å·ć®åšē‰©é¤Ø'),
(78549, 'https://ror.org/046axse10', 'en', 1, 'https://ror.org/046axse10 The Japanese Institute of Fisheries Infrastructure and Communities ę¼ęøÆę¼å “ę¼ę‘ē·åˆē ”ē©¶ę‰€'),
(78550, 'https://ror.org/046eef166', 'no_lang_code', 1, 'https://ror.org/046eef166 Velcro (United Kingdom)'),
(78551, 'https://ror.org/046em8f15', 'en', 1, 'https://ror.org/046em8f15 Wyoming Game and Fish Department'),
(78552, 'https://ror.org/046fxzx47', 'no_lang_code', 1, 'https://ror.org/046fxzx47 France Bed Holdings (Japan) ćƒ•ćƒ©ćƒ³ć‚¹ćƒ™ćƒƒćƒ‰ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(78553, 'https://ror.org/046hrxd41', 'en', 1, 'https://ror.org/046hrxd41 China Society of Plant Protection äø­å›½ę¤ē‰©äæęŠ¤å­¦ä¼š'),
(78554, 'https://ror.org/046j18q84', 'de', 1, 'https://ror.org/046j18q84 Internationales Institut für Nachhaltiges Energiemanagement, Politik, Risiko und Soziale Innovationen'),
(78555, 'https://ror.org/046je4759', 'en', 1, 'https://ror.org/046je4759 Western Returned Scholars AssociationĀ·Overseas-Educated Scholars Association of China ę¬§ē¾ŽåŒå­¦ä¼š'),
(78556, 'https://ror.org/046m3e234', 'en', 1, 'https://ror.org/046m3e234 Public Health Clinical Center of Chengdu ęˆéƒ½åø‚å…¬å…±å«ē”Ÿäø“åŗŠåŒ»ē–—äø­åæƒ'),
(78557, 'https://ror.org/046myzn82', 'no_lang_code', 1, 'https://ror.org/046myzn82 Silk Technologies (United States)'),
(78558, 'https://ror.org/046qe5448', 'no_lang_code', 1, 'https://ror.org/046qe5448 MS-Schramberg (Germany)'),
(78559, 'https://ror.org/046qhgy77', 'no_lang_code', 1, 'https://ror.org/046qhgy77 4D Pharma (United Kingdom)'),
(78560, 'https://ror.org/046v1a544', 'no_lang_code', 1, 'https://ror.org/046v1a544 Bejo Zaden (Netherlands)'),
(78561, 'https://ror.org/046w2n447', 'no_lang_code', 1, 'https://ror.org/046w2n447 Saban Ventures (Israel)'),
(78562, 'https://ror.org/046wcrs16', 'de', 1, 'https://ror.org/046wcrs16 Deutsche Handwerksinstitut'),
(78563, 'https://ror.org/046y50921', 'no_lang_code', 1, 'https://ror.org/046y50921 AB Vista (United Kingdom)'),
(78564, 'https://ror.org/046ycbp23', 'en', 1, 'https://ror.org/046ycbp23 Research Institute of Machinery Industry Economic&Management ęœŗę¢°å·„äøšē»ęµŽäøŽē®”ē†ē ”ē©¶ę‰€'),
(78565, 'https://ror.org/046z2j897', 'no_lang_code', 1, 'https://ror.org/046z2j897 Golden Biotech (Taiwan) åœ‹é¼Žē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(78566, 'https://ror.org/046znv447', 'en', 1, 'https://ror.org/046znv447 The Sixth People''s Hospital of Zhengzhou éƒ‘å·žåø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(78567, 'https://ror.org/0470e9841', 'no_lang_code', 1, 'https://ror.org/0470e9841 Infineon Technologies (Singapore)'),
(78568, 'https://ror.org/04730gw90', 'en', 1, 'https://ror.org/04730gw90 Marine Technical College ęµ·ęŠ€å¤§å­¦ę ”'),
(78569, 'https://ror.org/04753za72', 'no_lang_code', 1, 'https://ror.org/04753za72 Retractable Technologies (United States)'),
(78570, 'https://ror.org/0477qv361', 'no_lang_code', 1, 'https://ror.org/0477qv361 PeopleTec (United States)'),
(78571, 'https://ror.org/047berg44', 'en', 1, 'https://ror.org/047berg44 Telerehabilitation International'),
(78572, 'https://ror.org/047d27s15', 'de', 1, 'https://ror.org/047d27s15 Permakultur Institut'),
(78573, 'https://ror.org/047d2d387', 'en', 1, 'https://ror.org/047d2d387 Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics'),
(78574, 'https://ror.org/047dnad80', 'no_lang_code', 1, 'https://ror.org/047dnad80 Cemex (Mexico)'),
(78575, 'https://ror.org/047dy3w25', 'en', 1, 'https://ror.org/047dy3w25 Likhatchev Russian Research Institute for Cultural and Natural Heritage Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½Š¾Š³Š¾ Šø прироГного Š½Š°ŃŠ»ŠµŠ“ŠøŃ'),
(78576, 'https://ror.org/047e5gf10', 'no_lang_code', 1, 'https://ror.org/047e5gf10 ClassNK äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęµ·äŗ‹å”ä¼š'),
(78577, 'https://ror.org/047ffme03', 'no_lang_code', 1, 'https://ror.org/047ffme03 Urban Institute (Germany)'),
(78578, 'https://ror.org/047hrmf08', 'en', 1, 'https://ror.org/047hrmf08 Islamic Azad University, Larestan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد لارستان'),
(78579, 'https://ror.org/047hw1v81', 'no_lang_code', 1, 'https://ror.org/047hw1v81 BlueDot (Canada)'),
(78580, 'https://ror.org/047j13421', 'no_lang_code', 1, 'https://ror.org/047j13421 SpineWelding (Switzerland)'),
(78581, 'https://ror.org/047jxb064', 'en', 1, 'https://ror.org/047jxb064 Network on Urban Research in the European Union'),
(78582, 'https://ror.org/047krge18', 'no_lang_code', 1, 'https://ror.org/047krge18 Mobileeee (Germany)'),
(78583, 'https://ror.org/047q4fb87', 'en', 1, 'https://ror.org/047q4fb87 Indian Institute of Natural Resins and Gums'),
(78584, 'https://ror.org/047r0b042', 'no_lang_code', 1, 'https://ror.org/047r0b042 New Dimensions Research (United States)'),
(78585, 'https://ror.org/047r47y76', 'en', 1, 'https://ror.org/047r47y76 Beijing Computing Center'),
(78586, 'https://ror.org/047rmsn51', 'en', 1, 'https://ror.org/047rmsn51 Institute for the Science and Technology of Plasmas Istituto per la Scienza e Tecnologia dei Plasmi'),
(78587, 'https://ror.org/047rpw860', 'no_lang_code', 1, 'https://ror.org/047rpw860 Witzenhausen-Institut (Germany)'),
(78588, 'https://ror.org/047sbcx71', 'en', 1, 'https://ror.org/047sbcx71 Institute of Molecular Biology, Academia Sinica äø­å¤®ē ”ē©¶é™¢åˆ†å­ē”Ÿē‰©ē ”ē©¶ę‰€'),
(78589, 'https://ror.org/047sn6763', 'en', 1, 'https://ror.org/047sn6763 Centre for Multidisciplinary Research in Health Science'),
(78590, 'https://ror.org/047wzf575', 'no_lang_code', 1, 'https://ror.org/047wzf575 ICU Medical (United States)'),
(78591, 'https://ror.org/047x5tz06', 'es', 1, 'https://ror.org/047x5tz06 Incubadora Venezolana de la Ciencia'),
(78592, 'https://ror.org/047ycs764', 'en', 1, 'https://ror.org/047ycs764 paws4people'),
(78593, 'https://ror.org/047ynz185', 'en', 1, 'https://ror.org/047ynz185 Sri Konda Laxman Telangana State Horticultural University ą°¶ą±ą°°ą±€ ą°•ą±Šą°‚ą°”ą°¾ ą°²ą°•ą±ą°·ą±ą°®ą°£ą± తెలంగాణ ą°°ą°¾ą°·ą±ą°Ÿą±ą°°ą°‚ ą°¹ą°¾ą°°ą±ą°Ÿą°æą°•ą°²ą±ą°šą°°ą± ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(78594, 'https://ror.org/047zh6a56', 'no_lang_code', 1, 'https://ror.org/047zh6a56 NHanced Semiconductors (United States)'),
(78595, 'https://ror.org/04817hq10', 'en', 1, 'https://ror.org/04817hq10 Okinawa Prefecture ę²–ēø„ēœŒå…¬å®³č”›ē”Ÿē ”ē©¶ę‰€'),
(78596, 'https://ror.org/0482p8a89', 'en', 1, 'https://ror.org/0482p8a89 United Nations Economic and Social Commission for Asia and the Pacific'),
(78597, 'https://ror.org/0483am868', 'en', 1, 'https://ror.org/0483am868 Public interest incorporated foundation Keep Association å…¬ē›Šč²”å›£ę³•äŗŗć‚­ćƒ¼ćƒ—å”ä¼š'),
(78598, 'https://ror.org/0483jfq80', 'no_lang_code', 1, 'https://ror.org/0483jfq80 Atlas Spine (United States)'),
(78599, 'https://ror.org/04845gv95', 'en', 1, 'https://ror.org/04845gv95 The Physical Society of Japan ę—„ęœ¬ē‰©ē†å­¦ä¼š'),
(78600, 'https://ror.org/0484fgk51', 'no_lang_code', 1, 'https://ror.org/0484fgk51 Institut für Pflanzenkultur (Germany)'),
(78601, 'https://ror.org/0486vjb84', 'en', 1, 'https://ror.org/0486vjb84 Himalayan Institute of Alternatives, Ladakh'),
(78602, 'https://ror.org/0487zkp40', 'en', 1, 'https://ror.org/0487zkp40 Chiba Prefecture Cultural Property Center čŖåƒč‘‰ēœŒę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(78603, 'https://ror.org/0488tfs18', 'no_lang_code', 1, 'https://ror.org/0488tfs18 Broncus (United States)'),
(78604, 'https://ror.org/04898td28', 'no_lang_code', 1, 'https://ror.org/04898td28 Compagnie Tunisienne de Forage (Tunisia)'),
(78605, 'https://ror.org/0489rbg31', 'no_lang_code', 1, 'https://ror.org/0489rbg31 Viavi Solutions (United Kingdom)'),
(78606, 'https://ror.org/048adnk25', 'no_lang_code', 1, 'https://ror.org/048adnk25 Acoustic Metamaterials Group (China)'),
(78607, 'https://ror.org/048amag53', 'no_lang_code', 1, 'https://ror.org/048amag53 GTT-Technologies (Germany)'),
(78608, 'https://ror.org/048b89934', 'no_lang_code', 1, 'https://ror.org/048b89934 Sonoran Biosciences (United States)'),
(78609, 'https://ror.org/048evbw70', 'en', 1, 'https://ror.org/048evbw70 Institute of Cellular and Organismic Biology, Academia Sinica ē“°čƒžčˆ‡å€‹é«”ē”Ÿē‰©ē ”ē©¶ę‰€'),
(78610, 'https://ror.org/048f8a181', 'no_lang_code', 1, 'https://ror.org/048f8a181 IDBI Bank'),
(78611, 'https://ror.org/048gb8620', 'es', 1, 'https://ror.org/048gb8620 Centro Tecnológico Avanzado de La Piedra'),
(78612, 'https://ror.org/048j1wp71', 'en', 1, 'https://ror.org/048j1wp71 Saratoga Hospital'),
(78613, 'https://ror.org/048kr8422', 'no_lang_code', 1, 'https://ror.org/048kr8422 Rocky Mountain Scientific Laboratory (United States)'),
(78614, 'https://ror.org/048mkn426', 'no_lang_code', 1, 'https://ror.org/048mkn426 Tusaar (United States)'),
(78615, 'https://ror.org/048nc2z47', 'en', 1, 'https://ror.org/048nc2z47 Xiamen Chang Gung Hospital åŽ¦é—Øé•æåŗšåŒ»é™¢'),
(78616, 'https://ror.org/048qms624', 'en', 1, 'https://ror.org/048qms624 Bank of Slovenia Banka Slovenije'),
(78617, 'https://ror.org/048r7yt92', 'en', 1, 'https://ror.org/048r7yt92 EngineeringUK'),
(78618, 'https://ror.org/048s1x807', 'en', 1, 'https://ror.org/048s1x807 ESEP-LE BERGER University'),
(78619, 'https://ror.org/048stab03', 'en', 1, 'https://ror.org/048stab03 World University Service'),
(78620, 'https://ror.org/048t29e55', 'en', 1, 'https://ror.org/048t29e55 Youth Network for Reform'),
(78621, 'https://ror.org/048xr0t03', 'no_lang_code', 1, 'https://ror.org/048xr0t03 Cancerrop (South Korea)'),
(78622, 'https://ror.org/0493cs919', 'no_lang_code', 1, 'https://ror.org/0493cs919 Jusung Engineering (South Korea) ģ£¼ģ„±ģ—”ģ§€ė‹ˆģ–“ė§'),
(78623, 'https://ror.org/0493jda02', 'no_lang_code', 1, 'https://ror.org/0493jda02 THD (Italy)'),
(78624, 'https://ror.org/04941ww55', 'no_lang_code', 1, 'https://ror.org/04941ww55 Hamari Chemicals (Japan)'),
(78625, 'https://ror.org/04946pg51', 'no_lang_code', 1, 'https://ror.org/04946pg51 Vemac (Germany)'),
(78626, 'https://ror.org/0494ksh79', 'en', 1, 'https://ror.org/0494ksh79 Center of Applied Aeronautical Research Zentrum für Angewandte Luftfahrtforschung'),
(78627, 'https://ror.org/0497txp66', 'en', 1, 'https://ror.org/0497txp66 Great Lakes Maritime Research Institute'),
(78628, 'https://ror.org/04983b693', 'en', 1, 'https://ror.org/04983b693 Instrumentation Technology and Economy Institute ä»Ŗå™Øä»Ŗč”ØęŠ€ęœÆē»ęµŽē ”ē©¶ę‰€'),
(78629, 'https://ror.org/04999hq03', 'de', 1, 'https://ror.org/04999hq03 Klinikum Brandenburg'),
(78630, 'https://ror.org/049asma29', 'en', 1, 'https://ror.org/049asma29 Henan Institute of Geological Survey ę²³å—ēœåœ°č“Øč°ƒęŸ„å±€'),
(78631, 'https://ror.org/049bsvy30', 'en', 1, 'https://ror.org/049bsvy30 Oita Prefectural Hida Forest Engineering High School å¤§åˆ†ēœŒē«‹ę—„ē”°ęž—å·„é«˜'),
(78632, 'https://ror.org/049bwzr51', 'en', 1, 'https://ror.org/049bwzr51 FHS St. Gallen Hochschule für Angewandte Wissenschaften University of Applied Sciences St. Gallen'),
(78633, 'https://ror.org/049c9xv68', 'en', 1, 'https://ror.org/049c9xv68 Department of Medical Sciences ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ меГыцынскіх навук'),
(78634, 'https://ror.org/049cvkb03', 'en', 1, 'https://ror.org/049cvkb03 Reserve Bank of Australia'),
(78635, 'https://ror.org/049d04r12', 'no_lang_code', 1, 'https://ror.org/049d04r12 Arrakis Therapeutics (United States)'),
(78636, 'https://ror.org/049ektt11', 'no_lang_code', 1, 'https://ror.org/049ektt11 Melior Discovery (United States)'),
(78637, 'https://ror.org/049fn9772', 'it', 1, 'https://ror.org/049fn9772 Azienda Regionale Emergenza Urgenza'),
(78638, 'https://ror.org/049fqwf34', 'no_lang_code', 1, 'https://ror.org/049fqwf34 Fermion (Finland)'),
(78639, 'https://ror.org/049g0t365', 'en', 1, 'https://ror.org/049g0t365 Islamic Azad University Dolatabad دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲÆŁˆŁ„ŲŖ Ų¢ŲØŲ§ŲÆ'),
(78640, 'https://ror.org/049h10h83', 'en', 1, 'https://ror.org/049h10h83 Tartu Ülikooli Loodusmuuseum University of Tartu Natural History Museum and Botanical Garden'),
(78641, 'https://ror.org/049kqfg40', 'en', 1, 'https://ror.org/049kqfg40 High Intensity Heavy-ion Accelerator Facility å¼ŗęµé‡ē¦»å­åŠ é€Ÿå™Øč£…ē½®'),
(78642, 'https://ror.org/049n6n725', 'en', 1, 'https://ror.org/049n6n725 National Hansen''s Disease Program'),
(78643, 'https://ror.org/049n7x086', 'en', 1, 'https://ror.org/049n7x086 Government College Kodanchery ą“—ą“µą“£ąµā€ą“®ąµ†ą“Øąµą“±ąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“•ąµ‹ą“Ÿą“žąµą“šąµ‡ą“°ą“æ'),
(78644, 'https://ror.org/049p34y91', 'sk', 1, 'https://ror.org/049p34y91 Slovenský Metrologický Ústav'),
(78645, 'https://ror.org/049pb7d13', 'no_lang_code', 1, 'https://ror.org/049pb7d13 Orbis Health Solutions (United States)'),
(78646, 'https://ror.org/049qy6v50', 'en', 1, 'https://ror.org/049qy6v50 Zimbabwe Council For Higher Education'),
(78647, 'https://ror.org/049rkmq69', 'no_lang_code', 1, 'https://ror.org/049rkmq69 Quside Technologies (Spain)'),
(78648, 'https://ror.org/049s8hy38', 'no_lang_code', 1, 'https://ror.org/049s8hy38 Q4 (United States)'),
(78649, 'https://ror.org/049t4as69', 'fr', 1, 'https://ror.org/049t4as69 RƩseau des Acheteurs Hospitaliers'),
(78650, 'https://ror.org/049wfr424', 'no_lang_code', 1, 'https://ror.org/049wfr424 VAWD (United States)'),
(78651, 'https://ror.org/049wwwm08', 'en', 1, 'https://ror.org/049wwwm08 Environmental Development Centre'),
(78652, 'https://ror.org/049xdy517', 'no_lang_code', 1, 'https://ror.org/049xdy517 VITOK Engineers (United States)'),
(78653, 'https://ror.org/04a0y3b96', 'en', 1, 'https://ror.org/04a0y3b96 Material Measurement Laboratory'),
(78654, 'https://ror.org/04a55zb79', 'es', 1, 'https://ror.org/04a55zb79 SecretarĆ­a de Salud de BogotĆ”'),
(78655, 'https://ror.org/04a6c5752', 'no_lang_code', 1, 'https://ror.org/04a6c5752 Navitas Systems (United States)'),
(78656, 'https://ror.org/04a6evj08', 'no_lang_code', 1, 'https://ror.org/04a6evj08 Phagenesis (United Kingdom)'),
(78657, 'https://ror.org/04aa0ed69', 'en', 1, 'https://ror.org/04aa0ed69 New England University Transportation Center'),
(78658, 'https://ror.org/04abbs137', 'en', 1, 'https://ror.org/04abbs137 Institute of Genetic and Regenerative Medicine of the National Academy of Medical Sciences of Ukraine Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетичної та регенеративної меГицини ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України"'),
(78659, 'https://ror.org/04aczrd15', 'en', 1, 'https://ror.org/04aczrd15 Vietnamese - German Center of Excellence in Medical Research'),
(78660, 'https://ror.org/04ae5ch43', 'no_lang_code', 1, 'https://ror.org/04ae5ch43 Wakunaga (Japan) ę¹§ę°øč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(78661, 'https://ror.org/04aej1r39', 'en', 1, 'https://ror.org/04aej1r39 Deutsche MTM-Vereinigung German MTM Association'),
(78662, 'https://ror.org/04ahrkj41', 'no_lang_code', 1, 'https://ror.org/04ahrkj41 Elementis (United Kingdom)'),
(78663, 'https://ror.org/04ahz6d73', 'en', 1, 'https://ror.org/04ahz6d73 Department of Animal Husbandry ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ ą¤Ŗą¤¶ą„ą¤Ŗą¤¾ą¤²ą¤Ø'),
(78664, 'https://ror.org/04ajzzc58', 'no_lang_code', 1, 'https://ror.org/04ajzzc58 FineSoft (Slovakia)'),
(78665, 'https://ror.org/04am5ns61', 'en', 1, 'https://ror.org/04am5ns61 The Arab Academic College for Education in Israel המכללה ×”××§×“×ž×™×Ŗ הערבית לחינוך ×‘×™×©×Ø××œ Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„ŲŖŲ±ŲØŁŠŲ© في Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„'),
(78666, 'https://ror.org/04ar7w423', 'de', 1, 'https://ror.org/04ar7w423 Matthias-Claudius-Stiftung'),
(78667, 'https://ror.org/04b09jz40', 'en', 1, 'https://ror.org/04b09jz40 Noah''s Light Foundation'),
(78668, 'https://ror.org/04b3hkf22', 'no_lang_code', 1, 'https://ror.org/04b3hkf22 VR Rehab (United States)'),
(78669, 'https://ror.org/04b55a558', 'no_lang_code', 1, 'https://ror.org/04b55a558 Leag (Germany)'),
(78670, 'https://ror.org/04b5cmy23', 'en', 1, 'https://ror.org/04b5cmy23 Chubu University Daiichi High School äø­éƒØå¤§å­¦ē¬¬äø€é«˜ē­‰å­¦ę ”'),
(78671, 'https://ror.org/04b7azg23', 'no_lang_code', 1, 'https://ror.org/04b7azg23 Noack Laboratorien (Germany)'),
(78672, 'https://ror.org/04b7m4c37', 'no_lang_code', 1, 'https://ror.org/04b7m4c37 Tecomet (United States)'),
(78673, 'https://ror.org/04b885n69', 'no_lang_code', 1, 'https://ror.org/04b885n69 KalƩo (United States)'),
(78674, 'https://ror.org/04b8mn532', 'de', 1, 'https://ror.org/04b8mn532 Institut für Sozialpädagogische Forschung Mainz'),
(78675, 'https://ror.org/04b8r4934', 'no_lang_code', 1, 'https://ror.org/04b8r4934 Ipsen (Italy)'),
(78676, 'https://ror.org/04b93g231', 'en', 1, 'https://ror.org/04b93g231 Museum of Islamic Art متحف الفن Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(78677, 'https://ror.org/04b9q9g40', 'en', 1, 'https://ror.org/04b9q9g40 African Rural University'),
(78678, 'https://ror.org/04ba5ke19', 'no_lang_code', 1, 'https://ror.org/04ba5ke19 Sharma & Associates (United States)'),
(78679, 'https://ror.org/04bc6xb81', 'no_lang_code', 1, 'https://ror.org/04bc6xb81 Stadtwerke München (Germany)'),
(78680, 'https://ror.org/04bcypt21', 'en', 1, 'https://ror.org/04bcypt21 Ministry of Agriculture Natural Resources and Rural Development Ministè l''Agrikilti Resous Natirèl ak Devlopman Riral Ministère de l''Agriculture des Ressources Naturelles et du Développement Rural'),
(78681, 'https://ror.org/04bdqcb80', 'no_lang_code', 1, 'https://ror.org/04bdqcb80 Engineering Service Center und Handel (Germany)'),
(78682, 'https://ror.org/04bdtk119', 'en', 1, 'https://ror.org/04bdtk119 MusƩe National des Beaux-Arts du QuƩbec National Museum of Fine Arts of Quebec'),
(78683, 'https://ror.org/04be23e26', 'no_lang_code', 1, 'https://ror.org/04be23e26 Silony Medical (Switzerland)'),
(78684, 'https://ror.org/04bhpte75', 'no_lang_code', 1, 'https://ror.org/04bhpte75 IPS Elektroniklabor (Germany)'),
(78685, 'https://ror.org/04bhvak10', 'de', 1, 'https://ror.org/04bhvak10 Institut für Soziale Arbeit'),
(78686, 'https://ror.org/04bj0y344', 'en', 1, 'https://ror.org/04bj0y344 Dr. S.R. Chandrasekhar Institute of Speech and Hearing'),
(78687, 'https://ror.org/04bjznv82', 'no_lang_code', 1, 'https://ror.org/04bjznv82 3-D Matrix (Japan)'),
(78688, 'https://ror.org/04bnd9a95', 'no_lang_code', 1, 'https://ror.org/04bnd9a95 Shenzhen Goodix Technology (China) ę±‡é”¶ē§‘ęŠ€'),
(78689, 'https://ror.org/04bp8ss57', 'no_lang_code', 1, 'https://ror.org/04bp8ss57 GEF Ingenieur (Germany)'),
(78690, 'https://ror.org/04bpb0r34', 'no_lang_code', 1, 'https://ror.org/04bpb0r34 Aerospace Institut Aerospace Institute (Germany)'),
(78691, 'https://ror.org/04bphxp67', 'en', 1, 'https://ror.org/04bphxp67 Jesuit Centre for Theological Reflection'),
(78692, 'https://ror.org/04bpmn027', 'no_lang_code', 1, 'https://ror.org/04bpmn027 Starix Technology (United States)'),
(78693, 'https://ror.org/04bptvv47', 'en', 1, 'https://ror.org/04bptvv47 Daily Life'),
(78694, 'https://ror.org/04bq1zr90', 'en', 1, 'https://ror.org/04bq1zr90 Institute of Modern History, Academia Sinica äø­å¤®ē ”ē©¶é™¢čæ‘ä»£å²ē ”ē©¶ę‰€ē ”ē©¶å¤§ęØ“'),
(78695, 'https://ror.org/04bq6sg74', 'no_lang_code', 1, 'https://ror.org/04bq6sg74 Trifecta Solutions (United States)'),
(78696, 'https://ror.org/04bqtg656', 'en', 1, 'https://ror.org/04bqtg656 Public Works'),
(78697, 'https://ror.org/04bt02d30', 'en', 1, 'https://ror.org/04bt02d30 Hebei Provincial Center for Disease Control and Prevention ę²³åŒ—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(78698, 'https://ror.org/04btxnx56', 'no_lang_code', 1, 'https://ror.org/04btxnx56 Sensitron Semiconductor (United States)'),
(78699, 'https://ror.org/04bvhr204', 'no_lang_code', 1, 'https://ror.org/04bvhr204 Ɖternelle (United States)'),
(78700, 'https://ror.org/04byng292', 'no_lang_code', 1, 'https://ror.org/04byng292 Syncopated Products (United States)'),
(78701, 'https://ror.org/04bzdmw10', 'no_lang_code', 1, 'https://ror.org/04bzdmw10 Tietronix (United States)'),
(78702, 'https://ror.org/04c0bqx97', 'en', 1, 'https://ror.org/04c0bqx97 Asia Pacific Construction Science and Technology Information Research Institute äŗšå¤Ŗå»ŗč®¾ē§‘ęŠ€äæ”ęÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(78703, 'https://ror.org/04c2v9g63', 'no_lang_code', 1, 'https://ror.org/04c2v9g63 Nutramax Laboratories (United States)'),
(78704, 'https://ror.org/04c3ged70', 'en', 1, 'https://ror.org/04c3ged70 Ministry of Foreign Affairs MinistƩrio das RelaƧƵes Exteriores'),
(78705, 'https://ror.org/04c3mjk87', 'de', 1, 'https://ror.org/04c3mjk87 DRK Landesverband Rheinland-Pfalz'),
(78706, 'https://ror.org/04c4wb253', 'no_lang_code', 1, 'https://ror.org/04c4wb253 Applus+ IDIADA (United Kingdom)'),
(78707, 'https://ror.org/04c6sva57', 'en', 1, 'https://ror.org/04c6sva57 Jiangsu Academy of Safety Science & Technology'),
(78708, 'https://ror.org/04c7hmv88', 'de', 1, 'https://ror.org/04c7hmv88 Franziskus-Krankenhaus Berlin'),
(78709, 'https://ror.org/04c83st90', 'en', 1, 'https://ror.org/04c83st90 Gustav Stresemann Institute Gustav-Stresemann-Institut'),
(78710, 'https://ror.org/04c8tz716', 'en', 1, 'https://ror.org/04c8tz716 University of Global Health Equity'),
(78711, 'https://ror.org/04cap6186', 'en', 1, 'https://ror.org/04cap6186 Phelps Hospital'),
(78712, 'https://ror.org/04cby3g57', 'no_lang_code', 1, 'https://ror.org/04cby3g57 Wasatch Photonics (United States)'),
(78713, 'https://ror.org/04cd0dy46', 'no_lang_code', 1, 'https://ror.org/04cd0dy46 Winchester Technologies (United States)'),
(78714, 'https://ror.org/04cexx940', 'no_lang_code', 1, 'https://ror.org/04cexx940 OsteoVantage (United States)'),
(78715, 'https://ror.org/04cghfw81', 'de', 1, 'https://ror.org/04cghfw81 Institut für Korrosions- und Schadensanalyse Dr.-Ing. Sabine Schultze'),
(78716, 'https://ror.org/04cgxr267', 'no_lang_code', 1, 'https://ror.org/04cgxr267 NeuroMetrix (United States)'),
(78717, 'https://ror.org/04cj8by85', 'en', 1, 'https://ror.org/04cj8by85 International Foundation for Integrated Care'),
(78718, 'https://ror.org/04ckt1019', 'no_lang_code', 1, 'https://ror.org/04ckt1019 Arkion Life Sciences (United States)'),
(78719, 'https://ror.org/04cmbqn37', 'de', 1, 'https://ror.org/04cmbqn37 Institut Berufs- und Innovationsforschung Medien'),
(78720, 'https://ror.org/04cr34a11', 'en', 1, 'https://ror.org/04cr34a11 Yichang Central People''s Hospital å®œę˜Œåø‚äø­åæƒäŗŗę°‘åŒ»é™¢'),
(78721, 'https://ror.org/04csgyf07', 'de', 1, 'https://ror.org/04csgyf07 Deutsches Institut für Tropische und Subtropische Landwirtschaft'),
(78722, 'https://ror.org/04cv89q08', 'en', 1, 'https://ror.org/04cv89q08 Sukraraj Tropical & Infectious Disease Hospital'),
(78723, 'https://ror.org/04cwb1p56', 'de', 1, 'https://ror.org/04cwb1p56 Staats- und UniversitƤtsbibliothek Bremen'),
(78724, 'https://ror.org/04cxrsp65', 'de', 1, 'https://ror.org/04cxrsp65 Frankfurter Stiftung für Blinde und Sehbehinderte'),
(78725, 'https://ror.org/04cxszt91', 'en', 1, 'https://ror.org/04cxszt91 Karamay Central Hospital of Xinjiang å…‹ę‹‰ēŽ›ä¾åø‚äø­åæƒåŒ»é™¢'),
(78726, 'https://ror.org/04cy5nh07', 'en', 1, 'https://ror.org/04cy5nh07 Shanghai Optical Instrument Research Institute äøŠęµ·å…‰å­¦ä»Ŗå™Øē ”ē©¶ę‰€'),
(78727, 'https://ror.org/04cyj7b39', 'no_lang_code', 1, 'https://ror.org/04cyj7b39 Finch Therapeutics (United States)'),
(78728, 'https://ror.org/04d1fsz63', 'no_lang_code', 1, 'https://ror.org/04d1fsz63 Chemko (Slovakia)'),
(78729, 'https://ror.org/04d1tk502', 'en', 1, 'https://ror.org/04d1tk502 Agricultural Research Service - Midwest Area'),
(78730, 'https://ror.org/04d3ma894', 'no_lang_code', 1, 'https://ror.org/04d3ma894 Berliner Wasserbetriebe (Germany)'),
(78731, 'https://ror.org/04d3x5w26', 'en', 1, 'https://ror.org/04d3x5w26 Institute Of Horticulture Technology ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¬ą¤¾ą¤—ą¤µą¤¾ą¤Øą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€'),
(78732, 'https://ror.org/04d5bgh87', 'de', 1, 'https://ror.org/04d5bgh87 Landesanstalt für Kommunikation'),
(78733, 'https://ror.org/04d5hc132', 'no_lang_code', 1, 'https://ror.org/04d5hc132 Noside ē”°äø­ē¾Žéƒ·ę•™č‚²ē ”ē©¶ę‰€'),
(78734, 'https://ror.org/04d5zsn45', 'de', 1, 'https://ror.org/04d5zsn45 Deutsch Amerikanisches Institut Saarland'),
(78735, 'https://ror.org/04d9wma96', 'no_lang_code', 1, 'https://ror.org/04d9wma96 Xian Mechanical & Electric Institute (China) č„æå®‰ęœŗē”µē ”ē©¶ę‰€'),
(78736, 'https://ror.org/04daygj89', 'es', 1, 'https://ror.org/04daygj89 Fundación María Cristina Masaveu Peterson María Cristina Masaveu Peterson Foundation'),
(78737, 'https://ror.org/04dc4tx21', 'de', 1, 'https://ror.org/04dc4tx21 Malteser-Krankenhaus'),
(78738, 'https://ror.org/04dcmpg83', 'en', 1, 'https://ror.org/04dcmpg83 Chongqing Public Health Medical Center é‡åŗ†åø‚å…¬å…±å«ē”ŸåŒ»ē–—ę•‘ę²»äø­åæƒ'),
(78739, 'https://ror.org/04dcrb539', 'no_lang_code', 1, 'https://ror.org/04dcrb539 PVI System Technology (United States)'),
(78740, 'https://ror.org/04de8hn78', 'no_lang_code', 1, 'https://ror.org/04de8hn78 Verus Research (United States)'),
(78741, 'https://ror.org/04df39v43', 'en', 1, 'https://ror.org/04df39v43 State Scientific Institution "Institute of Educational Analytics" Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾ŃŠ²Ń–Ń‚Š½ŃŒŠ¾Ń— аналітики"'),
(78742, 'https://ror.org/04dgene15', 'no_lang_code', 1, 'https://ror.org/04dgene15 Ocuphire Pharma (United States)'),
(78743, 'https://ror.org/04dk55y19', 'en', 1, 'https://ror.org/04dk55y19 Africa Early Childhood Network'),
(78744, 'https://ror.org/04dkfar71', 'en', 1, 'https://ror.org/04dkfar71 Shenzhen Bao''an District People''s Hospital ę·±åœ³åø‚å®å®‰åŒŗäŗŗę°‘åŒ»é™¢'),
(78745, 'https://ror.org/04dkw8s94', 'no_lang_code', 1, 'https://ror.org/04dkw8s94 Tyvak (United States)');
INSERT INTO `rors` VALUES
(78746, 'https://ror.org/04dmgcf89', 'de', 1, 'https://ror.org/04dmgcf89 Institut Für Angewandte Kulturforschung'),
(78747, 'https://ror.org/04dmgvm89', 'en', 1, 'https://ror.org/04dmgvm89 Dhanalakshmi Srinivasan Group of Institutions'),
(78748, 'https://ror.org/04dmvwm54', 'de', 1, 'https://ror.org/04dmvwm54 Medizinische Akademie Erfurt'),
(78749, 'https://ror.org/04dp0f897', 'en', 1, 'https://ror.org/04dp0f897 Cheyenne VA Medical Center'),
(78750, 'https://ror.org/04dp5s194', 'en', 1, 'https://ror.org/04dp5s194 Wakayama Department of Agriculture, Forestry and Fisheries å’Œę­Œå±±ēœŒč¾²ęž—ę°“ē”£éƒØ'),
(78751, 'https://ror.org/04dptbd37', 'no_lang_code', 1, 'https://ror.org/04dptbd37 Kyowa Chemical Industry (Japan) å”å’ŒåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(78752, 'https://ror.org/04dtbmg64', 'en', 1, 'https://ror.org/04dtbmg64 Hengyang Academy of Agricultural Sciences č””é˜³åø‚å†œäøšē§‘å­¦é™¢'),
(78753, 'https://ror.org/04dtzbe22', 'en', 1, 'https://ror.org/04dtzbe22 Shaheed Suhrawardy Medical College শহীদ ą¦øą§‹ą¦¹ą¦°ą¦¾ą¦“ą¦Æą¦¼ą¦¾ą¦°ą§ą¦¦ą§€ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(78754, 'https://ror.org/04dvvw492', 'no_lang_code', 1, 'https://ror.org/04dvvw492 Riparian Pharmaceuticals (United States)'),
(78755, 'https://ror.org/04dx81q90', 'en', 1, 'https://ror.org/04dx81q90 Cleveland Clinic London'),
(78756, 'https://ror.org/04dx8cb40', 'no_lang_code', 1, 'https://ror.org/04dx8cb40 Azotic Technologies (United Kingdom)'),
(78757, 'https://ror.org/04e1a9m96', 'no_lang_code', 1, 'https://ror.org/04e1a9m96 Japan Weather Association (Japan) ę—„ęœ¬ę°—č±”å”ä¼š'),
(78758, 'https://ror.org/04e2r7y81', 'no_lang_code', 1, 'https://ror.org/04e2r7y81 Powerchip (Taiwan) åŠ›ę™¶ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(78759, 'https://ror.org/04e3jvd14', 'en', 1, 'https://ror.org/04e3jvd14 The First People''s Hospital of Wenling ęø©å²­åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(78760, 'https://ror.org/04e8tea51', 'no_lang_code', 1, 'https://ror.org/04e8tea51 Mevion Medical Systems (United States)'),
(78761, 'https://ror.org/04ea3ng91', 'no_lang_code', 1, 'https://ror.org/04ea3ng91 Codon Biosciences (India)'),
(78762, 'https://ror.org/04ea7gf23', 'no_lang_code', 1, 'https://ror.org/04ea7gf23 Kendrick Laboratories (United States)'),
(78763, 'https://ror.org/04ecc9p69', 'no_lang_code', 1, 'https://ror.org/04ecc9p69 Tribologix (United States)'),
(78764, 'https://ror.org/04ed42k63', 'no_lang_code', 1, 'https://ror.org/04ed42k63 Voipac (Slovakia)'),
(78765, 'https://ror.org/04edkgm69', 'en', 1, 'https://ror.org/04edkgm69 Centre for the Study of the Economies of Africa'),
(78766, 'https://ror.org/04ej3c950', 'en', 1, 'https://ror.org/04ej3c950 China Rural Technology Development Center äø­å›½å†œę‘ęŠ€ęœÆå¼€å‘äø­åæƒ'),
(78767, 'https://ror.org/04em1gv44', 'en', 1, 'https://ror.org/04em1gv44 Yamagata Prefectural Institute of Public Health å±±å½¢ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(78768, 'https://ror.org/04em20x54', 'no_lang_code', 1, 'https://ror.org/04em20x54 SVXR (United States)'),
(78769, 'https://ror.org/04enqja79', 'en', 1, 'https://ror.org/04enqja79 Andalusian Centre for Nanomedicine and Biotechnology Centro Andaluz de Nanomedicina y BiotecnologĆ­a'),
(78770, 'https://ror.org/04esmqk80', 'en', 1, 'https://ror.org/04esmqk80 Eucalyptus Research Center å›½å®¶ęž—äøšå’Œč‰åŽŸå±€ę”‰ę ‘ē ”ē©¶å¼€å‘äø­åæƒ'),
(78771, 'https://ror.org/04et42c10', 'en', 1, 'https://ror.org/04et42c10 Toronto Zoo'),
(78772, 'https://ror.org/04ewmsk50', 'no_lang_code', 1, 'https://ror.org/04ewmsk50 CRISPR Therapeutics (Switzerland)'),
(78773, 'https://ror.org/04f1wdm76', 'no_lang_code', 1, 'https://ror.org/04f1wdm76 Gencor (China)'),
(78774, 'https://ror.org/04f6hwk12', 'en', 1, 'https://ror.org/04f6hwk12 Shri A.M.M. Murugappa Chettiar Research Centre'),
(78775, 'https://ror.org/04f7g6845', 'en', 1, 'https://ror.org/04f7g6845 National Institute for Communicable Disease Control and Prevention äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒä¼ ęŸ“ē—…é¢„é˜²ęŽ§åˆ¶ę‰€'),
(78776, 'https://ror.org/04f8j4q19', 'no_lang_code', 1, 'https://ror.org/04f8j4q19 Response Technologies (United States)'),
(78777, 'https://ror.org/04f8qsj21', 'no_lang_code', 1, 'https://ror.org/04f8qsj21 CTFusion (United States)'),
(78778, 'https://ror.org/04fbk4w04', 'no_lang_code', 1, 'https://ror.org/04fbk4w04 Nihon Plast (Japan)'),
(78779, 'https://ror.org/04fcjpg80', 'de', 1, 'https://ror.org/04fcjpg80 Holzbau Deutschland-Institut'),
(78780, 'https://ror.org/04fd8ks75', 'no_lang_code', 1, 'https://ror.org/04fd8ks75 Starfire Systems (United States)'),
(78781, 'https://ror.org/04fewxg30', 'no_lang_code', 1, 'https://ror.org/04fewxg30 Probility Media (United States)'),
(78782, 'https://ror.org/04ff4e804', 'no_lang_code', 1, 'https://ror.org/04ff4e804 Eiken Chemical (Japan) ę „ē ”åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(78783, 'https://ror.org/04ffg1496', 'no_lang_code', 1, 'https://ror.org/04ffg1496 Zts Inmart Atóm (Slovakia)'),
(78784, 'https://ror.org/04ffrxx14', 'no_lang_code', 1, 'https://ror.org/04ffrxx14 Star Vision Technologies (United States)'),
(78785, 'https://ror.org/04fhe5c23', 'no_lang_code', 1, 'https://ror.org/04fhe5c23 Schrack Technik (Slovakia)'),
(78786, 'https://ror.org/04fhteb31', 'en', 1, 'https://ror.org/04fhteb31 National Center of Ocean Standards and Metrology å›½å®¶ęµ·ę“‹ę ‡å‡†č®”é‡äø­åæƒ'),
(78787, 'https://ror.org/04fn6g127', 'en', 1, 'https://ror.org/04fn6g127 The Fusebox'),
(78788, 'https://ror.org/04fne2y85', 'no_lang_code', 1, 'https://ror.org/04fne2y85 KACO New Energy (Germany)'),
(78789, 'https://ror.org/04fnfbg71', 'no_lang_code', 1, 'https://ror.org/04fnfbg71 HLT (United States)'),
(78790, 'https://ror.org/04fnrdj64', 'en', 1, 'https://ror.org/04fnrdj64 Gulf Coast Center for Evacuation and Transportation Resiliency'),
(78791, 'https://ror.org/04fpsr797', 'no_lang_code', 1, 'https://ror.org/04fpsr797 Intergen (Turkey) İntergen Genetik Hastalıklar Tanı Merkezi'),
(78792, 'https://ror.org/04frbf545', 'en', 1, 'https://ror.org/04frbf545 Academy of Emergency Medicine and Care'),
(78793, 'https://ror.org/04ftztx53', 'no_lang_code', 1, 'https://ror.org/04ftztx53 Fels-Werke (Germany)'),
(78794, 'https://ror.org/04fxggt25', 'no_lang_code', 1, 'https://ror.org/04fxggt25 ELCA (Switzerland)'),
(78795, 'https://ror.org/04g0m7w09', 'no_lang_code', 1, 'https://ror.org/04g0m7w09 Transpower (New Zealand)'),
(78796, 'https://ror.org/04g47vg59', 'en', 1, 'https://ror.org/04g47vg59 Belle Chasse Academy'),
(78797, 'https://ror.org/04g732g68', 'en', 1, 'https://ror.org/04g732g68 Southern Plains Transportation Center'),
(78798, 'https://ror.org/04g88st81', 'no_lang_code', 1, 'https://ror.org/04g88st81 Freund (Japan)'),
(78799, 'https://ror.org/04g8qkx61', 'no_lang_code', 1, 'https://ror.org/04g8qkx61 Newport Sensors (United States)'),
(78800, 'https://ror.org/04ga2h843', 'en', 1, 'https://ror.org/04ga2h843 Izumo Science Center 出雲科学館'),
(78801, 'https://ror.org/04gbzz966', 'no_lang_code', 1, 'https://ror.org/04gbzz966 Roche (Bosnia-Herzegovina)'),
(78802, 'https://ror.org/04gcqnd36', 'de', 1, 'https://ror.org/04gcqnd36 Gesteinslabor Dr. Eberhard Jahns'),
(78803, 'https://ror.org/04gek0a04', 'no_lang_code', 1, 'https://ror.org/04gek0a04 Geistlich (Switzerland)'),
(78804, 'https://ror.org/04ger2z06', 'en', 1, 'https://ror.org/04ger2z06 Shandong Maternal and Child Health Hospital å±±äøœēœå¦‡å¹¼äæå„é™¢'),
(78805, 'https://ror.org/04gf5ve13', 'no_lang_code', 1, 'https://ror.org/04gf5ve13 Pandion Laboratories (United States)'),
(78806, 'https://ror.org/04gfkf394', 'en', 1, 'https://ror.org/04gfkf394 National Centre for Clinical Research on Emerging Drugs'),
(78807, 'https://ror.org/04ggx4175', 'es', 1, 'https://ror.org/04ggx4175 Hospital Zonal General De Agudos Descentralizado "Evita Pueblo"'),
(78808, 'https://ror.org/04gmecg65', 'no_lang_code', 1, 'https://ror.org/04gmecg65 Runtime Verification (United States)'),
(78809, 'https://ror.org/04gnh4t80', 'no_lang_code', 1, 'https://ror.org/04gnh4t80 SiO2 Materials Science (United States)'),
(78810, 'https://ror.org/04gp0de23', 'id', 1, 'https://ror.org/04gp0de23 IAIN Palangka Raya'),
(78811, 'https://ror.org/04gp2qg91', 'en', 1, 'https://ror.org/04gp2qg91 Open Book Publishers'),
(78812, 'https://ror.org/04gqb3c37', 'no_lang_code', 1, 'https://ror.org/04gqb3c37 Southern Community Laboratories (New Zealand)'),
(78813, 'https://ror.org/04gqv6f58', 'en', 1, 'https://ror.org/04gqv6f58 Missing Children Europe'),
(78814, 'https://ror.org/04gs0fr60', 'no_lang_code', 1, 'https://ror.org/04gs0fr60 Xenetic Biosciences (United Kingdom)'),
(78815, 'https://ror.org/04gs4wp13', 'en', 1, 'https://ror.org/04gs4wp13 Internet Matters'),
(78816, 'https://ror.org/04gswd735', 'en', 1, 'https://ror.org/04gswd735 Institute of Medical Information - CAMS'),
(78817, 'https://ror.org/04gvffr66', 'no_lang_code', 1, 'https://ror.org/04gvffr66 Olon (Italy)'),
(78818, 'https://ror.org/04gvrvx60', 'no_lang_code', 1, 'https://ror.org/04gvrvx60 Kuehne + Nagel (United Kingdom)'),
(78819, 'https://ror.org/04gwmyf31', 'no_lang_code', 1, 'https://ror.org/04gwmyf31 Katalyst Surgical (United States)'),
(78820, 'https://ror.org/04gwyv878', 'no_lang_code', 1, 'https://ror.org/04gwyv878 CorMatrix (United States)'),
(78821, 'https://ror.org/04gxzna55', 'no_lang_code', 1, 'https://ror.org/04gxzna55 Sippa Solutions (United States)'),
(78822, 'https://ror.org/04gyvnw24', 'es', 1, 'https://ror.org/04gyvnw24 Clƭnica DƔvila'),
(78823, 'https://ror.org/04gzt2g63', 'hi', 1, 'https://ror.org/04gzt2g63 Kendriya Vidyalaya Sangathan, ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ संगठन'),
(78824, 'https://ror.org/04h1ssz20', 'no_lang_code', 1, 'https://ror.org/04h1ssz20 CoDa Therapeutics (United States)'),
(78825, 'https://ror.org/04h3ena29', 'no_lang_code', 1, 'https://ror.org/04h3ena29 Pointwise (United States)'),
(78826, 'https://ror.org/04h4wws08', 'no_lang_code', 1, 'https://ror.org/04h4wws08 Ayurvet (India) ą¤…ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¤'),
(78827, 'https://ror.org/04h50xe73', 'de', 1, 'https://ror.org/04h50xe73 Energie-Anlagen Berlin'),
(78828, 'https://ror.org/04h59ty19', 'en', 1, 'https://ror.org/04h59ty19 Catholic Legal Immigration Network'),
(78829, 'https://ror.org/04h6dxr28', 'no_lang_code', 1, 'https://ror.org/04h6dxr28 Native American Technologies (United States)'),
(78830, 'https://ror.org/04h7g2e84', 'no_lang_code', 1, 'https://ror.org/04h7g2e84 Advanced Technology Systems Company (United States)'),
(78831, 'https://ror.org/04h7sky50', 'no_lang_code', 1, 'https://ror.org/04h7sky50 BFKW (United States)'),
(78832, 'https://ror.org/04h8v0y52', 'en', 1, 'https://ror.org/04h8v0y52 Okayama University of Commerce Attached high School å²”å±±å•†ē§‘å¤§å­¦é™„å±žé«˜ē­‰å­¦ę ”'),
(78833, 'https://ror.org/04h9a4v60', 'no_lang_code', 1, 'https://ror.org/04h9a4v60 New Hope Liuhe (China)'),
(78834, 'https://ror.org/04h9g9s69', 'no_lang_code', 1, 'https://ror.org/04h9g9s69 PreventAGE Health Care (United States)'),
(78835, 'https://ror.org/04ha18t27', 'en', 1, 'https://ror.org/04ha18t27 Chameli Devi Group of Institutions'),
(78836, 'https://ror.org/04hbw4m86', 'de', 1, 'https://ror.org/04hbw4m86 Institut für Energie- und Umwelttechnik'),
(78837, 'https://ror.org/04hdpvy92', 'no_lang_code', 1, 'https://ror.org/04hdpvy92 RetinalGeniX Technologies (United States)'),
(78838, 'https://ror.org/04he9e777', 'no_lang_code', 1, 'https://ror.org/04he9e777 NGK Insulators (Germany)'),
(78839, 'https://ror.org/04hecxj58', 'no_lang_code', 1, 'https://ror.org/04hecxj58 Perlegen (United States)'),
(78840, 'https://ror.org/04het4147', 'en', 1, 'https://ror.org/04het4147 Chinese Neuroscience Society äø­å›½ē„žē»ē§‘å­¦å­¦ä¼š'),
(78841, 'https://ror.org/04hewny41', 'nl', 1, 'https://ror.org/04hewny41 Iridium Cancer Network Iridium Kankernetwerk'),
(78842, 'https://ror.org/04hfg7v94', 'en', 1, 'https://ror.org/04hfg7v94 Center for Theoretical Biological Physics'),
(78843, 'https://ror.org/04hg6v996', 'no_lang_code', 1, 'https://ror.org/04hg6v996 Minerals Technologies (United States)'),
(78844, 'https://ror.org/04hjhj186', 'no_lang_code', 1, 'https://ror.org/04hjhj186 Biocartis (Switzerland)'),
(78845, 'https://ror.org/04hjz3e92', 'no_lang_code', 1, 'https://ror.org/04hjz3e92 Glacigen Materials (United States)'),
(78846, 'https://ror.org/04hmq8q19', 'en', 1, 'https://ror.org/04hmq8q19 Center for Seeds and Seedlings ēØ®č‹—ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(78847, 'https://ror.org/04hphve78', 'en', 1, 'https://ror.org/04hphve78 Fraunhofer Centre for Applied Photonics'),
(78848, 'https://ror.org/04hpyv730', 'en', 1, 'https://ror.org/04hpyv730 Centre for Aromatic Plants'),
(78849, 'https://ror.org/04hsrr018', 'en', 1, 'https://ror.org/04hsrr018 Aichi Mizuho Junior College ę„›ēŸ„ćæćšć»ēŸ­ęœŸå¤§å­¦'),
(78850, 'https://ror.org/04ht09065', 'en', 1, 'https://ror.org/04ht09065 Idemitsu Museum Of Arts å‡ŗå…‰ē¾Žč”“é¤Ø'),
(78851, 'https://ror.org/04hy71c73', 'no_lang_code', 1, 'https://ror.org/04hy71c73 Hangzhou DAC Biotech (China) ę­å·žå¤šē¦§ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(78852, 'https://ror.org/04hyej253', 'de', 1, 'https://ror.org/04hyej253 Margarethe Krupp-Stiftung'),
(78853, 'https://ror.org/04hysr708', 'no_lang_code', 1, 'https://ror.org/04hysr708 Quantum Northwest (United States)'),
(78854, 'https://ror.org/04j0edb32', 'fr', 1, 'https://ror.org/04j0edb32 HƓpital PrivƩ Guillaume de Varye'),
(78855, 'https://ror.org/04j0nks26', 'no_lang_code', 1, 'https://ror.org/04j0nks26 Kindeva Drug Delivery (United States)'),
(78856, 'https://ror.org/04j1sns16', 'no_lang_code', 1, 'https://ror.org/04j1sns16 Intego (Germany)'),
(78857, 'https://ror.org/04j4j9405', 'no_lang_code', 1, 'https://ror.org/04j4j9405 Deargen (South Korea)'),
(78858, 'https://ror.org/04j4tnp25', 'no_lang_code', 1, 'https://ror.org/04j4tnp25 QGLex (Canada)'),
(78859, 'https://ror.org/04j5v1d21', 'no_lang_code', 1, 'https://ror.org/04j5v1d21 Real Prevention (United States)'),
(78860, 'https://ror.org/04j5xmb13', 'no_lang_code', 1, 'https://ror.org/04j5xmb13 Geologischer Dienst Nordrhein-Westfalen (Germany)'),
(78861, 'https://ror.org/04j5ybr94', 'en', 1, 'https://ror.org/04j5ybr94 Henan Bioengineering Technology Research Center ę²³å—ēœē”Ÿē‰©å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(78862, 'https://ror.org/04j65k592', 'no_lang_code', 1, 'https://ror.org/04j65k592 Stress Engineering Services (United States)'),
(78863, 'https://ror.org/04j6d9v78', 'de', 1, 'https://ror.org/04j6d9v78 Institut für Instandhaltung und Korrosionsschutztechnik'),
(78864, 'https://ror.org/04j7dh318', 'no_lang_code', 1, 'https://ror.org/04j7dh318 Skyhaven Systems (United States)'),
(78865, 'https://ror.org/04j7knk69', 'en', 1, 'https://ror.org/04j7knk69 Association for Rural Development'),
(78866, 'https://ror.org/04j7sfe76', 'no_lang_code', 1, 'https://ror.org/04j7sfe76 IBExU Institut für Sicherheitstechnik (Germany)'),
(78867, 'https://ror.org/04j8z7v81', 'no_lang_code', 1, 'https://ror.org/04j8z7v81 Vitronic (Germany)'),
(78868, 'https://ror.org/04j9kzt69', 'no_lang_code', 1, 'https://ror.org/04j9kzt69 Mycovia Pharmaceuticals (United States)'),
(78869, 'https://ror.org/04jafar77', 'en', 1, 'https://ror.org/04jafar77 Independent Administrative Agency National Museum of Art ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē¾Žč”“é¤Ø'),
(78870, 'https://ror.org/04jb5a756', 'no_lang_code', 1, 'https://ror.org/04jb5a756 DJO Global (United States)'),
(78871, 'https://ror.org/04jbbs672', 'en', 1, 'https://ror.org/04jbbs672 Tokyo Metropolitan Foundation for History and Culture å…¬ē›Šč²”å›£ę³•äŗŗ ę±äŗ¬éƒ½ę­“å²ę–‡åŒ–č²”å›£'),
(78872, 'https://ror.org/04jcetk87', 'en', 1, 'https://ror.org/04jcetk87 Einstein Medical Center Montgomery'),
(78873, 'https://ror.org/04jcwf484', 'en', 1, 'https://ror.org/04jcwf484 Nordic e-Infrastructure Collaboration'),
(78874, 'https://ror.org/04jd98e75', 'no_lang_code', 1, 'https://ror.org/04jd98e75 North Star Scientific (United States)'),
(78875, 'https://ror.org/04jdmkw08', 'no_lang_code', 1, 'https://ror.org/04jdmkw08 Kaseda Folklore Museum å—ć•ć¤ć¾åø‚ åŠ äø–ē”°éƒ·åœŸč³‡ę–™é¤Ø'),
(78876, 'https://ror.org/04je4qa93', 'en', 1, 'https://ror.org/04je4qa93 Zambia National Public Health Institute'),
(78877, 'https://ror.org/04jeca075', 'en', 1, 'https://ror.org/04jeca075 South Subtropical Crops Research Institute å¹æäøœēœę¹›ę±Ÿåø‚éŗ»ē« åŒŗę¹–ē§€č·Æäø€å·'),
(78878, 'https://ror.org/04jf69f85', 'en', 1, 'https://ror.org/04jf69f85 Experimental Center of Subtropical Forestry'),
(78879, 'https://ror.org/04jf6jw55', 'en', 1, 'https://ror.org/04jf6jw55 University of Science and Technology of Mazandaran دانؓگاه علم و ŁŁ†Ų§ŁˆŲ±ŪŒ مازندران'),
(78880, 'https://ror.org/04jfar564', 'no_lang_code', 1, 'https://ror.org/04jfar564 Takeda (Australia)'),
(78881, 'https://ror.org/04jfr8f78', 'no_lang_code', 1, 'https://ror.org/04jfr8f78 Hyland Software (United States)'),
(78882, 'https://ror.org/04jkjhn93', 'en', 1, 'https://ror.org/04jkjhn93 Fraunhofer USA Center for Laser Applications'),
(78883, 'https://ror.org/04jma3v53', 'de', 1, 'https://ror.org/04jma3v53 Steinbeis Forschungszentrum Technologie-Management Nordost'),
(78884, 'https://ror.org/04jnzhb65', 'en', 1, 'https://ror.org/04jnzhb65 Artsdatabanken Norwegian Biodiversity Information Centre'),
(78885, 'https://ror.org/04jpd4145', 'no_lang_code', 1, 'https://ror.org/04jpd4145 FormFactor (Germany)'),
(78886, 'https://ror.org/04jqs6e58', 'de', 1, 'https://ror.org/04jqs6e58 RCI Banque Niederlassung Deutschland'),
(78887, 'https://ror.org/04jref587', 'en', 1, 'https://ror.org/04jref587 Loudi Central Hospital åØ„åŗ•åø‚äø­åæƒåŒ»é™¢'),
(78888, 'https://ror.org/04jrxee54', 'de', 1, 'https://ror.org/04jrxee54 Verkehrsinstitut München'),
(78889, 'https://ror.org/04jsnej34', 'no_lang_code', 1, 'https://ror.org/04jsnej34 Optical Coating Solutions (United States)'),
(78890, 'https://ror.org/04jt5e503', 'no_lang_code', 1, 'https://ror.org/04jt5e503 German Association of the Automotive Industry (Germany) Verband der Automobilindustrie'),
(78891, 'https://ror.org/04jvwj909', 'en', 1, 'https://ror.org/04jvwj909 Center for Jewish–Christian Understanding and Cooperation Center for Judeo-Christian Understanding and Cooperation'),
(78892, 'https://ror.org/04jwyfm91', 'en', 1, 'https://ror.org/04jwyfm91 State Library of North Carolina'),
(78893, 'https://ror.org/04jy0t377', 'no_lang_code', 1, 'https://ror.org/04jy0t377 Grintech (Germany)'),
(78894, 'https://ror.org/04jy4bd63', 'no_lang_code', 1, 'https://ror.org/04jy4bd63 Sterix (Philippines)'),
(78895, 'https://ror.org/04k078691', 'it', 1, 'https://ror.org/04k078691 Ospedale D. Cotugno'),
(78896, 'https://ror.org/04k3c1424', 'en', 1, 'https://ror.org/04k3c1424 Hubei Provincial Museum ę¹–åŒ—ēœåšē‰©é¦†'),
(78897, 'https://ror.org/04k3nb528', 'no_lang_code', 1, 'https://ror.org/04k3nb528 Hallstar Beauty (United States)'),
(78898, 'https://ror.org/04k4a1317', 'en', 1, 'https://ror.org/04k4a1317 Coalition Against Childhood Cancer'),
(78899, 'https://ror.org/04k4n5964', 'no_lang_code', 1, 'https://ror.org/04k4n5964 Sibatel Communications (United States)'),
(78900, 'https://ror.org/04k4zw919', 'en', 1, 'https://ror.org/04k4zw919 Sichuan Economic Management Cadre College å››å·ēœē»ęµŽē®”ē†å¹²éƒØå­¦é™¢'),
(78901, 'https://ror.org/04k6f4x16', 'en', 1, 'https://ror.org/04k6f4x16 Sphere Institute'),
(78902, 'https://ror.org/04k6h0163', 'no_lang_code', 1, 'https://ror.org/04k6h0163 Nrgtek (United States)'),
(78903, 'https://ror.org/04k6y8878', 'en', 1, 'https://ror.org/04k6y8878 L''Association Canadienne des BibliothƩcaires en Enseignement SupƩrieur The Canadian Association of Professional Academic Librarians'),
(78904, 'https://ror.org/04k7ptd73', 'no_lang_code', 1, 'https://ror.org/04k7ptd73 Spectral Platforms (United States)'),
(78905, 'https://ror.org/04k8x4m17', 'no_lang_code', 1, 'https://ror.org/04k8x4m17 Zabal Menuiseries (France)'),
(78906, 'https://ror.org/04kbpm904', 'no_lang_code', 1, 'https://ror.org/04kbpm904 Speak Agent (United States)'),
(78907, 'https://ror.org/04kdgxx63', 'no_lang_code', 1, 'https://ror.org/04kdgxx63 Heine Optotechnik (Germany)'),
(78908, 'https://ror.org/04kerv846', 'no_lang_code', 1, 'https://ror.org/04kerv846 Pronghorn Technologies (United States)'),
(78909, 'https://ror.org/04khcsm77', 'no_lang_code', 1, 'https://ror.org/04khcsm77 Thurmelec (France)'),
(78910, 'https://ror.org/04khv4y21', 'no_lang_code', 1, 'https://ror.org/04khv4y21 Made For Retail (United States)'),
(78911, 'https://ror.org/04kkcah82', 'en', 1, 'https://ror.org/04kkcah82 Asphalt Institute'),
(78912, 'https://ror.org/04knb0h51', 'no_lang_code', 1, 'https://ror.org/04knb0h51 Heidenhain (United Kingdom)'),
(78913, 'https://ror.org/04knktv12', 'en', 1, 'https://ror.org/04knktv12 Jiujiang Maternal and Child Care Centres ä¹ę±Ÿåø‚å¦‡å¹¼äæå„é™¢'),
(78914, 'https://ror.org/04kryk212', 'no_lang_code', 1, 'https://ror.org/04kryk212 Spatial Cognition (United States)'),
(78915, 'https://ror.org/04ktbjv18', 'no_lang_code', 1, 'https://ror.org/04ktbjv18 Kulicke & Soffa (Singapore)'),
(78916, 'https://ror.org/04kx66y96', 'en', 1, 'https://ror.org/04kx66y96 NHS Wales Shared Services Partnership'),
(78917, 'https://ror.org/04kybmr51', 'en', 1, 'https://ror.org/04kybmr51 S.I. Vavilov Institute for the History of Science and Technology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории ŠµŃŃ‚ŠµŃŃ‚Š²Š¾Š·Š½Š°Š½ŠøŃ Šø техники имени Š”. И. Вавилова Š ŠŠ'),
(78918, 'https://ror.org/04kz50t81', 'no_lang_code', 1, 'https://ror.org/04kz50t81 SAACKE (Germany)'),
(78919, 'https://ror.org/04kz65y09', 'en', 1, 'https://ror.org/04kz65y09 Japan Society of English for Research ē ”ē©¶č€…ć®ćŸć‚ć®č‹±čŖž'),
(78920, 'https://ror.org/04kzfnz19', 'en', 1, 'https://ror.org/04kzfnz19 China National Democratic Construction Association äø­å›½ę°‘äø»å»ŗå›½ä¼š'),
(78921, 'https://ror.org/04m0qbj67', 'en', 1, 'https://ror.org/04m0qbj67 Yukon Department of Environment'),
(78922, 'https://ror.org/04m128g34', 'en', 1, 'https://ror.org/04m128g34 ECC Kokusai College of Foreign Languages ECCå›½éš›å¤–čŖžå°‚é–€å­¦ę ”'),
(78923, 'https://ror.org/04m2c1f16', 'en', 1, 'https://ror.org/04m2c1f16 Zhe Jiang Institute of Geology and Mineral Resource ęµ™ę±Ÿēœåœ°č“ØēŸæäŗ§ē ”ē©¶ę‰€'),
(78924, 'https://ror.org/04m3mhq27', 'en', 1, 'https://ror.org/04m3mhq27 Centre for Advanced Bioenergy Research'),
(78925, 'https://ror.org/04m4cy683', 'es', 1, 'https://ror.org/04m4cy683 Fundación Centro de Estudios Infectológicos'),
(78926, 'https://ror.org/04m70k935', 'no_lang_code', 1, 'https://ror.org/04m70k935 Roccor (United States)'),
(78927, 'https://ror.org/04m797435', 'no_lang_code', 1, 'https://ror.org/04m797435 Adelphi Consult (Germany)'),
(78928, 'https://ror.org/04m7bm997', 'no_lang_code', 1, 'https://ror.org/04m7bm997 Arca (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ć‚«'),
(78929, 'https://ror.org/04m93x955', 'en', 1, 'https://ror.org/04m93x955 New York State Nurses Association'),
(78930, 'https://ror.org/04mabxa71', 'en', 1, 'https://ror.org/04mabxa71 NPO Net work for Shizuoka Prefecture Museum of Natural History é™å²”ēœŒč‡Ŗē„¶å²åšē‰©é¤ØćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(78931, 'https://ror.org/04mbzh492', 'en', 1, 'https://ror.org/04mbzh492 Nigerian Institute of International Affairs'),
(78932, 'https://ror.org/04md6sf54', 'lt', 1, 'https://ror.org/04md6sf54 State Forest Enterprise Valstybinių MiÅ”kų Urėdija'),
(78933, 'https://ror.org/04mf96963', 'en', 1, 'https://ror.org/04mf96963 Prashanti Cancer Care Mission'),
(78934, 'https://ror.org/04mh6t995', 'en', 1, 'https://ror.org/04mh6t995 CAF – Development Bank of Latin America Corporacion Andina de Fomento– Banco de Desarrollo de AmĆ©rica Latina'),
(78935, 'https://ror.org/04mhsfn74', 'no_lang_code', 1, 'https://ror.org/04mhsfn74 Medlab Central (New Zealand)'),
(78936, 'https://ror.org/04mnn5409', 'no_lang_code', 1, 'https://ror.org/04mnn5409 Institut für Nachhaltige, Innovative und Angewandte Systemtechnik (Germany)'),
(78937, 'https://ror.org/04mnvpk76', 'no_lang_code', 1, 'https://ror.org/04mnvpk76 Diagnostic Photonics (United States)'),
(78938, 'https://ror.org/04mqss956', 'no_lang_code', 1, 'https://ror.org/04mqss956 Spirogen (United Kingdom)'),
(78939, 'https://ror.org/04mrmjg19', 'en', 1, 'https://ror.org/04mrmjg19 Huzhou Women and Children''s Hospital ę¹–å·žåø‚å¦‡å¹¼äæå„é™¢'),
(78940, 'https://ror.org/04mrnx789', 'en', 1, 'https://ror.org/04mrnx789 Charing Cross Cat Clinic'),
(78941, 'https://ror.org/04ms6c540', 'no_lang_code', 1, 'https://ror.org/04ms6c540 Nice Solar Energy (Germany)'),
(78942, 'https://ror.org/04msz5x82', 'en', 1, 'https://ror.org/04msz5x82 Deutsches Zentralinstitut für soziale Fragen German Central Institute for Social Issues'),
(78943, 'https://ror.org/04mxfzz97', 'en', 1, 'https://ror.org/04mxfzz97 The Conservation Fund'),
(78944, 'https://ror.org/04n075a40', 'no_lang_code', 1, 'https://ror.org/04n075a40 LPE (Italy)'),
(78945, 'https://ror.org/04n1n6p22', 'en', 1, 'https://ror.org/04n1n6p22 Assistance Dogs of the West'),
(78946, 'https://ror.org/04n1qr170', 'no_lang_code', 1, 'https://ror.org/04n1qr170 Soft Gel Technologies (United States)'),
(78947, 'https://ror.org/04n3b1453', 'no_lang_code', 1, 'https://ror.org/04n3b1453 BioConsult SH (Germany)'),
(78948, 'https://ror.org/04n3naf58', 'no_lang_code', 1, 'https://ror.org/04n3naf58 Sansure Biotech (China) åœ£ę¹˜ē”Ÿē‰©'),
(78949, 'https://ror.org/04n6dab73', 'no_lang_code', 1, 'https://ror.org/04n6dab73 BioSolutions Halle (Germany)'),
(78950, 'https://ror.org/04n7fat49', 'no_lang_code', 1, 'https://ror.org/04n7fat49 n&k Technology (United States)'),
(78951, 'https://ror.org/04n7n7219', 'no_lang_code', 1, 'https://ror.org/04n7n7219 Eagle Pharmaceuticals (United States)'),
(78952, 'https://ror.org/04n881142', 'en', 1, 'https://ror.org/04n881142 Naval Materials Research Laboratory'),
(78953, 'https://ror.org/04n96q930', 'no_lang_code', 1, 'https://ror.org/04n96q930 Cardno (United Kingdom)'),
(78954, 'https://ror.org/04n9n6c96', 'en', 1, 'https://ror.org/04n9n6c96 Young Africa FOUNDATION'),
(78955, 'https://ror.org/04nagxm86', 'en', 1, 'https://ror.org/04nagxm86 Colombian Institute of Anthropology and History Instituto Colombiano de AntropologĆ­a e Historia'),
(78956, 'https://ror.org/04nbkxt24', 'no_lang_code', 1, 'https://ror.org/04nbkxt24 BearingPoint (United Kingdom)'),
(78957, 'https://ror.org/04ney8y20', 'no_lang_code', 1, 'https://ror.org/04ney8y20 Glidewell (United States)'),
(78958, 'https://ror.org/04nf5v644', 'no_lang_code', 1, 'https://ror.org/04nf5v644 Ampio Pharmaceuticals (United States)'),
(78959, 'https://ror.org/04njzfy81', 'en', 1, 'https://ror.org/04njzfy81 China Electrotechnical Society äø­å›½ē”µå·„ęŠ€ęœÆå­¦ä¼š'),
(78960, 'https://ror.org/04nm3yk20', 'no_lang_code', 1, 'https://ror.org/04nm3yk20 Takeda (Austria)'),
(78961, 'https://ror.org/04nmcca26', 'no_lang_code', 1, 'https://ror.org/04nmcca26 Glykos (Finland)'),
(78962, 'https://ror.org/04nneby83', 'es', 1, 'https://ror.org/04nneby83 Hospital Marina Baixa'),
(78963, 'https://ror.org/04nq8gx07', 'en', 1, 'https://ror.org/04nq8gx07 Unilever Foods Innovation Centre'),
(78964, 'https://ror.org/04nqe0561', 'no_lang_code', 1, 'https://ror.org/04nqe0561 Hochtemperatur-Kernkraftwerk (Germany)'),
(78965, 'https://ror.org/04nt05y93', 'no_lang_code', 1, 'https://ror.org/04nt05y93 Third Pole Therapeutics (United States)'),
(78966, 'https://ror.org/04nydew61', 'en', 1, 'https://ror.org/04nydew61 Clinical Research Associates'),
(78967, 'https://ror.org/04nzxdc92', 'no_lang_code', 1, 'https://ror.org/04nzxdc92 Arioso Systems (Germany)'),
(78968, 'https://ror.org/04nzya351', 'en', 1, 'https://ror.org/04nzya351 R3 Animal'),
(78969, 'https://ror.org/04p0ywm72', 'en', 1, 'https://ror.org/04p0ywm72 Deutscher Gewerkschaftsbund German Trade Union Confederation'),
(78970, 'https://ror.org/04p162q02', 'en', 1, 'https://ror.org/04p162q02 Hershel Woody Williams VA Medical Center'),
(78971, 'https://ror.org/04p2nj039', 'no_lang_code', 1, 'https://ror.org/04p2nj039 Zynga (United Kingdom)'),
(78972, 'https://ror.org/04p52xd50', 'no_lang_code', 1, 'https://ror.org/04p52xd50 Renaissance Services (United States)'),
(78973, 'https://ror.org/04p6f5632', 'no_lang_code', 1, 'https://ror.org/04p6f5632 ViaDerm (United States)'),
(78974, 'https://ror.org/04p6vt455', 'no_lang_code', 1, 'https://ror.org/04p6vt455 Enveda Therapeutics (United States)'),
(78975, 'https://ror.org/04p79q706', 'en', 1, 'https://ror.org/04p79q706 African Centre for the Constructive Resolution of Disputes'),
(78976, 'https://ror.org/04p7c8496', 'en', 1, 'https://ror.org/04p7c8496 Medical Governance Research Institute åŒ»ē™‚ć‚¬ćƒćƒŠćƒ³ć‚¹ē ”ē©¶ę‰€'),
(78977, 'https://ror.org/04p8ncq94', 'en', 1, 'https://ror.org/04p8ncq94 Hainan Agricultural School ęµ·å—ēœå†œäøšå­¦ę ”'),
(78978, 'https://ror.org/04pa8hw67', 'no_lang_code', 1, 'https://ror.org/04pa8hw67 Lubris BioPharma (United States)'),
(78979, 'https://ror.org/04pe43p62', 'no_lang_code', 1, 'https://ror.org/04pe43p62 Stadtwerke Münster (Germany)'),
(78980, 'https://ror.org/04pfpqx12', 'no_lang_code', 1, 'https://ror.org/04pfpqx12 Takeda (Sweden)'),
(78981, 'https://ror.org/04pje9c52', 'de', 1, 'https://ror.org/04pje9c52 Reha-Zentrum Bad Frankenhausen'),
(78982, 'https://ror.org/04pqjcz08', 'no_lang_code', 1, 'https://ror.org/04pqjcz08 Kantar (Germany)'),
(78983, 'https://ror.org/04ps07s38', 'ca', 1, 'https://ror.org/04ps07s38 Consorci Sanitari Garraf'),
(78984, 'https://ror.org/04ptve456', 'de', 1, 'https://ror.org/04ptve456 Dominikanerkloster Prenzlau'),
(78985, 'https://ror.org/04pvzz946', 'en', 1, 'https://ror.org/04pvzz946 The NSF AI Institute for Artificial Intelligence and Fundamental Interactions'),
(78986, 'https://ror.org/04pwkp704', 'en', 1, 'https://ror.org/04pwkp704 Department Of Agriculture and Rural Affairs Of Jiangxi Province ę±Ÿč„æēœå†œäøšåŽ…'),
(78987, 'https://ror.org/04py0zz23', 'nl', 1, 'https://ror.org/04py0zz23 Natural History Museum Brabant Natuurmuseum Brabant'),
(78988, 'https://ror.org/04pyk6020', 'en', 1, 'https://ror.org/04pyk6020 Shanghai Institute of Geological Survey äøŠęµ·åø‚åœ°č“Øč°ƒęŸ„ē ”ē©¶é™¢'),
(78989, 'https://ror.org/04q1ghb64', 'en', 1, 'https://ror.org/04q1ghb64 Aravali Foundation for Education'),
(78990, 'https://ror.org/04q3t9f84', 'no_lang_code', 1, 'https://ror.org/04q3t9f84 Saurer (Switzerland)'),
(78991, 'https://ror.org/04q4pp553', 'en', 1, 'https://ror.org/04q4pp553 Wilmington VA Medical Center'),
(78992, 'https://ror.org/04q6f6q61', 'es', 1, 'https://ror.org/04q6f6q61 BiblioMadSalud'),
(78993, 'https://ror.org/04q731p20', 'no_lang_code', 1, 'https://ror.org/04q731p20 Nuclear Plasma Laboratories (United States)'),
(78994, 'https://ror.org/04q775h70', 'en', 1, 'https://ror.org/04q775h70 Terra Foundation for American Art'),
(78995, 'https://ror.org/04q80hd21', 'no_lang_code', 1, 'https://ror.org/04q80hd21 Innotec (United Kingdom)'),
(78996, 'https://ror.org/04qbg1g88', 'en', 1, 'https://ror.org/04qbg1g88 Saga Prefectural Police ä½č³€ēœŒč­¦åÆŸęœ¬éƒØ'),
(78997, 'https://ror.org/04qbg9n81', 'en', 1, 'https://ror.org/04qbg9n81 VA Northern Indiana Health Care System'),
(78998, 'https://ror.org/04qbqh473', 'en', 1, 'https://ror.org/04qbqh473 Royal Commission Medical Center'),
(78999, 'https://ror.org/04qby6e62', 'en', 1, 'https://ror.org/04qby6e62 Automotive Service Excellence'),
(79000, 'https://ror.org/04qdr2v32', 'no_lang_code', 1, 'https://ror.org/04qdr2v32 Sylex (Slovakia)'),
(79001, 'https://ror.org/04qgwte94', 'en', 1, 'https://ror.org/04qgwte94 Shiun Junior High School é«˜ę¾åø‚ē«‹ē“«é›²äø­'),
(79002, 'https://ror.org/04qk3kg25', 'en', 1, 'https://ror.org/04qk3kg25 Defence Electronics Application Laboratory'),
(79003, 'https://ror.org/04qr9ne10', 'en', 1, 'https://ror.org/04qr9ne10 Agricultural Research Service - Northeast Area'),
(79004, 'https://ror.org/04qv17s63', 'no_lang_code', 1, 'https://ror.org/04qv17s63 Omniphase Defense Systems (United States)'),
(79005, 'https://ror.org/04qv8g759', 'en', 1, 'https://ror.org/04qv8g759 International Baccalaureate'),
(79006, 'https://ror.org/04qwk9b58', 'en', 1, 'https://ror.org/04qwk9b58 Central Bank of the Russian Federation Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ банк Российской ФеГерации'),
(79007, 'https://ror.org/04qwq4796', 'en', 1, 'https://ror.org/04qwq4796 Haffkine Institute ą¤¹ą¤«ą¤¼ą¤•ą„‡ą¤Ø ą¤Ŗą„ą¤°ą¤¶ą¤æą¤•ą„ą¤·ą¤£, ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą¤°ą„€ą¤•ą„ą¤·ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(79008, 'https://ror.org/04qxg2139', 'no_lang_code', 1, 'https://ror.org/04qxg2139 Ultra Safe Nuclear Corporation (United States)'),
(79009, 'https://ror.org/04qxwt159', 'no_lang_code', 1, 'https://ror.org/04qxwt159 Vidatak (United States)'),
(79010, 'https://ror.org/04r008d47', 'no_lang_code', 1, 'https://ror.org/04r008d47 CRG Services (United States)'),
(79011, 'https://ror.org/04r17yy05', 'no_lang_code', 1, 'https://ror.org/04r17yy05 Visus (United States)'),
(79012, 'https://ror.org/04r226n96', 'no_lang_code', 1, 'https://ror.org/04r226n96 Groupe LƩpine (France)'),
(79013, 'https://ror.org/04r425b39', 'en', 1, 'https://ror.org/04r425b39 Slovak Renewable Energy Agency'),
(79014, 'https://ror.org/04r4a0e87', 'no_lang_code', 1, 'https://ror.org/04r4a0e87 Breezing (United States)'),
(79015, 'https://ror.org/04r78f145', 'en', 1, 'https://ror.org/04r78f145 Austrian Physical Society Ɩsterreichische Physikalische Gesellschaft'),
(79016, 'https://ror.org/04r7av415', 'no_lang_code', 1, 'https://ror.org/04r7av415 Silexon AI Technology (China)'),
(79017, 'https://ror.org/04r7sbn40', 'no_lang_code', 1, 'https://ror.org/04r7sbn40 SemQuest (United States)'),
(79018, 'https://ror.org/04r7vw960', 'de', 1, 'https://ror.org/04r7vw960 Institut für Regionale Innovation und Sozialforschung'),
(79019, 'https://ror.org/04r99rr28', 'no_lang_code', 1, 'https://ror.org/04r99rr28 Swift Engineering (United States)'),
(79020, 'https://ror.org/04rcck644', 'no_lang_code', 1, 'https://ror.org/04rcck644 Marcus (United States)'),
(79021, 'https://ror.org/04rdvs602', 'en', 1, 'https://ror.org/04rdvs602 Sullivan Nicolaides Pathology'),
(79022, 'https://ror.org/04rfwez56', 'no_lang_code', 1, 'https://ror.org/04rfwez56 Vigor (United States)'),
(79023, 'https://ror.org/04rfxj670', 'no_lang_code', 1, 'https://ror.org/04rfxj670 Casma Therapeutics (United States)'),
(79024, 'https://ror.org/04rgfx869', 'en', 1, 'https://ror.org/04rgfx869 Beijing Yingwu Conference Center åŒ—äŗ¬åŗ”ē‰©ä¼šč®®äø­åæƒ'),
(79025, 'https://ror.org/04rgtd041', 'en', 1, 'https://ror.org/04rgtd041 Horn Economic and Social Policy Institute'),
(79026, 'https://ror.org/04rj1td02', 'en', 1, 'https://ror.org/04rj1td02 Space Engineering University äø­å›½äŗŗę°‘č§£ę”¾å†›ęˆ˜ē•„ę”Æę“éƒØé˜ŸčˆŖå¤©å·„ēØ‹å¤§å­¦'),
(79027, 'https://ror.org/04rksax81', 'no_lang_code', 1, 'https://ror.org/04rksax81 Valent BioSciences (United States)'),
(79028, 'https://ror.org/04rmh9q90', 'no_lang_code', 1, 'https://ror.org/04rmh9q90 Thornton Tomasetti (United States)'),
(79029, 'https://ror.org/04rmmkk14', 'no_lang_code', 1, 'https://ror.org/04rmmkk14 Fast Biomedical (United States)'),
(79030, 'https://ror.org/04rp35a76', 'no_lang_code', 1, 'https://ror.org/04rp35a76 Yunnan Yingmao Biotechnology (China) äŗ‘å—č‹±čŒ‚ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(79031, 'https://ror.org/04rpfqy30', 'en', 1, 'https://ror.org/04rpfqy30 Caspr Biotech'),
(79032, 'https://ror.org/04rrhkc58', 'en', 1, 'https://ror.org/04rrhkc58 MODUL University Dubai'),
(79033, 'https://ror.org/04rrnb020', 'en', 1, 'https://ror.org/04rrnb020 Al-Razi University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ų§Ų²ŁŠ'),
(79034, 'https://ror.org/04rw28498', 'en', 1, 'https://ror.org/04rw28498 K9 Partners for Patriots'),
(79035, 'https://ror.org/04rw71h18', 'no_lang_code', 1, 'https://ror.org/04rw71h18 UltraCell (United States)'),
(79036, 'https://ror.org/04rwdqv08', 'en', 1, 'https://ror.org/04rwdqv08 Jewish Community Center of Greater Buffalo'),
(79037, 'https://ror.org/04rynnm03', 'en', 1, 'https://ror.org/04rynnm03 American Finance Association'),
(79038, 'https://ror.org/04rz47917', 'no_lang_code', 1, 'https://ror.org/04rz47917 Berger Paints (India)'),
(79039, 'https://ror.org/04s0whm40', 'no_lang_code', 1, 'https://ror.org/04s0whm40 QT Medical (United States)'),
(79040, 'https://ror.org/04s1a2p79', 'it', 1, 'https://ror.org/04s1a2p79 Forestry, Environmental and Agri-Food Units Command Organizzazione per la Tutela Forestale, Ambientale e Agroalimentare'),
(79041, 'https://ror.org/04s3t8g44', 'en', 1, 'https://ror.org/04s3t8g44 Sa''adatu Rimi College of Education'),
(79042, 'https://ror.org/04s40s883', 'no_lang_code', 1, 'https://ror.org/04s40s883 Toshima Hospital ę±äŗ¬éƒ½äæå„åŒ»ē™‚å…¬ē¤¾ č±Šå³¶ē—…é™¢'),
(79043, 'https://ror.org/04s47xe02', 'no_lang_code', 1, 'https://ror.org/04s47xe02 Breg (United States)'),
(79044, 'https://ror.org/04s6fbg51', 'en', 1, 'https://ror.org/04s6fbg51 Osaka Prefecture University College of Technology å¤§é˜Ŗåŗœē«‹å¤§å­¦å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(79045, 'https://ror.org/04s7e3d74', 'en', 1, 'https://ror.org/04s7e3d74 James Paget University Hospitals NHS Foundation Trust'),
(79046, 'https://ror.org/04s87x939', 'no_lang_code', 1, 'https://ror.org/04s87x939 Sonivate Medical (United States)'),
(79047, 'https://ror.org/04satts25', 'de', 1, 'https://ror.org/04satts25 Kreditanstalt für Wiederaufbau'),
(79048, 'https://ror.org/04sbxpy59', 'pt', 1, 'https://ror.org/04sbxpy59 Instituto de Conservação de Animais Silvestres'),
(79049, 'https://ror.org/04scxn105', 'en', 1, 'https://ror.org/04scxn105 Dingxi City People''s Hospital å®šč„æåø‚äŗŗę°‘åŒ»é™¢'),
(79050, 'https://ror.org/04se47j24', 'en', 1, 'https://ror.org/04se47j24 International Council for Open and Distance Education'),
(79051, 'https://ror.org/04sg6r946', 'no_lang_code', 1, 'https://ror.org/04sg6r946 Solarzentrum Stuttgart (Germany)'),
(79052, 'https://ror.org/04shejr14', 'en', 1, 'https://ror.org/04shejr14 The Historical Museum of Jomon Village Oku-Matsushima å„„ę¾å³¶ēø„ę–‡ę‘ę­“å²č³‡ę–™é¤Ø'),
(79053, 'https://ror.org/04sksp841', 'no_lang_code', 1, 'https://ror.org/04sksp841 Troxler (United States)'),
(79054, 'https://ror.org/04sna2e19', 'no_lang_code', 1, 'https://ror.org/04sna2e19 Tuya (China) ę¶‚éø¦'),
(79055, 'https://ror.org/04srm5m98', 'en', 1, 'https://ror.org/04srm5m98 Global Flyway Network'),
(79056, 'https://ror.org/04ssknj45', 'no_lang_code', 1, 'https://ror.org/04ssknj45 Kalusugan + Kalakasan'),
(79057, 'https://ror.org/04svcpx91', 'hi', 1, 'https://ror.org/04svcpx91 Kanya Maha Vidyalaya ਕੰਨਿਆ ਮਹਾਂ ਵਿਦਿਆਲਾ'),
(79058, 'https://ror.org/04sve9e90', 'no_lang_code', 1, 'https://ror.org/04sve9e90 Apollo Proton Cancer Centre'),
(79059, 'https://ror.org/04swxte59', 'it', 1, 'https://ror.org/04swxte59 Scuola Superiore Meridionale'),
(79060, 'https://ror.org/04sy0n440', 'en', 1, 'https://ror.org/04sy0n440 Dangerous Speech Project'),
(79061, 'https://ror.org/04sy0x836', 'de', 1, 'https://ror.org/04sy0x836 Kybernetische Organisation Planung Führung'),
(79062, 'https://ror.org/04sy7nb49', 'en', 1, 'https://ror.org/04sy7nb49 Leibniz-Institut für Lebensmittel-Systembiologie an der Technischen Universität München Leibniz-Institute for Food Systems Biology at the Technical University of Munich'),
(79063, 'https://ror.org/04t10yj72', 'no_lang_code', 1, 'https://ror.org/04t10yj72 Reihoo (France)'),
(79064, 'https://ror.org/04t6sr026', 'de', 1, 'https://ror.org/04t6sr026 Klimaschutz- und Energieagentur Baden-Württemberg'),
(79065, 'https://ror.org/04t8dcc90', 'en', 1, 'https://ror.org/04t8dcc90 Staffin Dinosaur Museum'),
(79066, 'https://ror.org/04taba362', 'no_lang_code', 1, 'https://ror.org/04taba362 Schmalz (Germany)'),
(79067, 'https://ror.org/04tasdp68', 'no_lang_code', 1, 'https://ror.org/04tasdp68 NursIT Institute (Germany)'),
(79068, 'https://ror.org/04taye489', 'no_lang_code', 1, 'https://ror.org/04taye489 Hesco (United States)'),
(79069, 'https://ror.org/04tbt8b85', 'en', 1, 'https://ror.org/04tbt8b85 National Centre for Radio Astrophysics ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą„‡ą¤”ą¤æą¤Æą„‹ ą¤–ą¤—ą„‹ą¤² ą¤­ą„Œą¤¤ą¤æą¤•ą„€ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(79070, 'https://ror.org/04tbvjc27', 'en', 1, 'https://ror.org/04tbvjc27 Badr University in Cairo Ų¬Ų§Ł…Ų¹Ų© ŲØŲÆŲ± بالقاهرة'),
(79071, 'https://ror.org/04tcnqa94', 'no_lang_code', 1, 'https://ror.org/04tcnqa94 Tianshui Huatian Technology (China) åŽå¤©ē§‘ęŠ€'),
(79072, 'https://ror.org/04td8e917', 'en', 1, 'https://ror.org/04td8e917 Uttar Pradesh Pandit Deen Dayal Upadhyaya Pashu Chikitsa Vigyan Vishwavidyalaya Evam Go-Anusandhan Sansthan'),
(79073, 'https://ror.org/04tec8s48', 'no_lang_code', 1, 'https://ror.org/04tec8s48 Raytum Photonics (United States)'),
(79074, 'https://ror.org/04teget82', 'en', 1, 'https://ror.org/04teget82 The Osaka YWCA å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗļ¼¹ļ¼·ļ¼£ļ¼”'),
(79075, 'https://ror.org/04tfcjh39', 'en', 1, 'https://ror.org/04tfcjh39 Child Rights Foundation Hintalovon Alapitvany'),
(79076, 'https://ror.org/04tfspg74', 'no_lang_code', 1, 'https://ror.org/04tfspg74 Information Visualization and Innovative Research'),
(79077, 'https://ror.org/04tgrm918', 'no_lang_code', 1, 'https://ror.org/04tgrm918 nChain (United Kingdom)'),
(79078, 'https://ror.org/04tgzc455', 'no_lang_code', 1, 'https://ror.org/04tgzc455 Natural Process Design (United States)'),
(79079, 'https://ror.org/04th9rm48', 'no_lang_code', 1, 'https://ror.org/04th9rm48 Senseeker Engineering (United States)'),
(79080, 'https://ror.org/04tj88f69', 'en', 1, 'https://ror.org/04tj88f69 National University of Medical Sciences'),
(79081, 'https://ror.org/04tjebs40', 'no_lang_code', 1, 'https://ror.org/04tjebs40 TargaGenix (United States)'),
(79082, 'https://ror.org/04tjwpz93', 'de', 1, 'https://ror.org/04tjwpz93 Institut für Arbeitsmarktforschung und Jugendberufshilfe'),
(79083, 'https://ror.org/04tms6279', 'en', 1, 'https://ror.org/04tms6279 Guangdong Provincial Center for Disease Control and Prevention å¹æäøœēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(79084, 'https://ror.org/04tnhnq23', 'no_lang_code', 1, 'https://ror.org/04tnhnq23 Kite (United States)'),
(79085, 'https://ror.org/04tnv7w23', 'fr', 1, 'https://ror.org/04tnv7w23 Ɖcole SupĆ©rieure Polytechnique d''Antsiranana'),
(79086, 'https://ror.org/04tp7cf63', 'en', 1, 'https://ror.org/04tp7cf63 Başkent University Alanya Hospital Başkent Üniversitesi Alanya Hastanesi'),
(79087, 'https://ror.org/04tpxn918', 'no_lang_code', 1, 'https://ror.org/04tpxn918 Deutsche Bank (United Kingdom)'),
(79088, 'https://ror.org/04tqfmc02', 'en', 1, 'https://ror.org/04tqfmc02 Biodiversity Heritage Library'),
(79089, 'https://ror.org/04trsx227', 'en', 1, 'https://ror.org/04trsx227 Somali Institute for Development Research and Analysis'),
(79090, 'https://ror.org/04ttg5411', 'no_lang_code', 1, 'https://ror.org/04ttg5411 Lucht Probst Associates (Germany)'),
(79091, 'https://ror.org/04ttja383', 'de', 1, 'https://ror.org/04ttja383 Internationale Akademie Berlin'),
(79092, 'https://ror.org/04txnpk14', 'de', 1, 'https://ror.org/04txnpk14 Deutsch-französische Büro für die Energiewende'),
(79093, 'https://ror.org/04tym5d37', 'en', 1, 'https://ror.org/04tym5d37 Leverhulme Centre for Climate Change Mitigation'),
(79094, 'https://ror.org/04v0mdj41', 'en', 1, 'https://ror.org/04v0mdj41 Saveh University of Medical Sciences دانؓکده Ų¹Ł„ŁˆŁ… پزؓکی Ų³Ų§ŁˆŁ‡'),
(79095, 'https://ror.org/04v0xgx08', 'no_lang_code', 1, 'https://ror.org/04v0xgx08 Wilmar International (Singapore)'),
(79096, 'https://ror.org/04v1fvq31', 'no_lang_code', 1, 'https://ror.org/04v1fvq31 Chromocell (United States)'),
(79097, 'https://ror.org/04v23a626', 'no_lang_code', 1, 'https://ror.org/04v23a626 CPH Innovations (United Kingdom)'),
(79098, 'https://ror.org/04v2vj529', 'no_lang_code', 1, 'https://ror.org/04v2vj529 TraskBritt (United States)'),
(79099, 'https://ror.org/04v300186', 'no_lang_code', 1, 'https://ror.org/04v300186 Filtertek (United States)'),
(79100, 'https://ror.org/04v3qgb32', 'no_lang_code', 1, 'https://ror.org/04v3qgb32 Fortis C-DOC Hospital ą¤«ą„‹ą¤°ą„ą¤Ÿą¤æą¤ø C-ą¤”ą„‰ą¤• ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(79101, 'https://ror.org/04v3qs268', 'no_lang_code', 1, 'https://ror.org/04v3qs268 VNG (Germany)'),
(79102, 'https://ror.org/04v4gyq34', 'no_lang_code', 1, 'https://ror.org/04v4gyq34 Yuyao Joywee Electrics (China) ā€ä½™å§šåø‚éŖ„åØē”µå™Ø'),
(79103, 'https://ror.org/04v5c4294', 'en', 1, 'https://ror.org/04v5c4294 FAHRİ KAYAHAN AİLE SAĞLIĞI MERKEZİ Malatya Fahri Kayahan Health Care Center'),
(79104, 'https://ror.org/04v636935', 'no_lang_code', 1, 'https://ror.org/04v636935 NP Medical (United States)'),
(79105, 'https://ror.org/04v78c088', 'de', 1, 'https://ror.org/04v78c088 Institut für Kälte-, Klima- und Energietechnik'),
(79106, 'https://ror.org/04v7v1m43', 'no_lang_code', 1, 'https://ror.org/04v7v1m43 DongKook Pharmaceutical (South Korea)'),
(79107, 'https://ror.org/04v84zc94', 'en', 1, 'https://ror.org/04v84zc94 China Academy of Management Sciences 中国箔理科学研究院'),
(79108, 'https://ror.org/04v85xx73', 'en', 1, 'https://ror.org/04v85xx73 Lester Smith Medical Research Institute'),
(79109, 'https://ror.org/04v8m3j75', 'en', 1, 'https://ror.org/04v8m3j75 Oyster Hospital'),
(79110, 'https://ror.org/04v9f3d81', 'en', 1, 'https://ror.org/04v9f3d81 Jiangsu Province Institute of Quality & Safety Engineering ę±Ÿč‹ēœč“Øé‡å®‰å…Øå·„ēØ‹ē ”ē©¶ę‰€'),
(79111, 'https://ror.org/04va4hg79', 'en', 1, 'https://ror.org/04va4hg79 Australian Institue of Men''s Health and Studies'),
(79112, 'https://ror.org/04va9wj50', 'no_lang_code', 1, 'https://ror.org/04va9wj50 Plasmore (Italy)'),
(79113, 'https://ror.org/04vadv522', 'en', 1, 'https://ror.org/04vadv522 Desert Forestry Experimental Center äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ę²™ę¼ ęž—äøšå®žéŖŒäø­åæƒ'),
(79114, 'https://ror.org/04vcs0j60', 'en', 1, 'https://ror.org/04vcs0j60 Islamic Azad University, Ahvaz Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ł‡ŁˆŲ§Ų²'),
(79115, 'https://ror.org/04vf2n046', 'no_lang_code', 1, 'https://ror.org/04vf2n046 Kobayashi Pharmaceutical (Japan)'),
(79116, 'https://ror.org/04vgqwj46', 'no_lang_code', 1, 'https://ror.org/04vgqwj46 Sigmatech (United States)'),
(79117, 'https://ror.org/04vjzg452', 'no_lang_code', 1, 'https://ror.org/04vjzg452 Luxottica (Italy)'),
(79118, 'https://ror.org/04vmth013', 'no_lang_code', 1, 'https://ror.org/04vmth013 Sensorion (France)'),
(79119, 'https://ror.org/04vnevw94', 'en', 1, 'https://ror.org/04vnevw94 Criminal Investigation Police University of China åˆ‘äŗ‹č°ƒęŸ„äø­å›½č­¦åÆŸå¤§å­¦'),
(79120, 'https://ror.org/04vp1gh45', 'en', 1, 'https://ror.org/04vp1gh45 Services PartagƩs Canada Shared Services Canada'),
(79121, 'https://ror.org/04vpesy43', 'en', 1, 'https://ror.org/04vpesy43 Beijing Glass Research Institute åŒ—äŗ¬ēŽ»ē’ƒē ”ē©¶é™¢'),
(79122, 'https://ror.org/04vpnsj12', 'no_lang_code', 1, 'https://ror.org/04vpnsj12 Quantix (United States)'),
(79123, 'https://ror.org/04vxw9c34', 'en', 1, 'https://ror.org/04vxw9c34 University of Southampton Malaysia'),
(79124, 'https://ror.org/04w2yhr49', 'en', 1, 'https://ror.org/04w2yhr49 Islamic Azad University, Shoushtar Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓوؓتر'),
(79125, 'https://ror.org/04w3v2j10', 'en', 1, 'https://ror.org/04w3v2j10 Croatian Hydrographic Institute Hrvatski Hidrografski Institut'),
(79126, 'https://ror.org/04w441351', 'en', 1, 'https://ror.org/04w441351 Levy Economics Institute of Bard College'),
(79127, 'https://ror.org/04w44zd51', 'no_lang_code', 1, 'https://ror.org/04w44zd51 Ferno (United Kingdom)'),
(79128, 'https://ror.org/04w8dg967', 'no_lang_code', 1, 'https://ror.org/04w8dg967 VerdaSee Solutions (United States)'),
(79129, 'https://ror.org/04w8sxm43', 'en', 1, 'https://ror.org/04w8sxm43 University Hospitals of Derby and Burton NHS Foundation Trust'),
(79130, 'https://ror.org/04w9wz255', 'de', 1, 'https://ror.org/04w9wz255 Zentrum für Erinnerungskultur und Geschichtsforschung'),
(79131, 'https://ror.org/04wam6707', 'no_lang_code', 1, 'https://ror.org/04wam6707 IBM (Spain)'),
(79132, 'https://ror.org/04wcs7k46', 'en', 1, 'https://ror.org/04wcs7k46 Proof & Experimental Establishment ą¤Ŗą„ą¤°ą„‚ą¤« ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¾ą¤¤ą„ą¤®ą¤• संगठन'),
(79133, 'https://ror.org/04wcx2r57', 'en', 1, 'https://ror.org/04wcx2r57 TrinityCare Hospice'),
(79134, 'https://ror.org/04wd9yj02', 'no_lang_code', 1, 'https://ror.org/04wd9yj02 Strategic Analysis Enterprises (United States)'),
(79135, 'https://ror.org/04wea6506', 'no_lang_code', 1, 'https://ror.org/04wea6506 Protekum (Germany)'),
(79136, 'https://ror.org/04wekvh85', 'no_lang_code', 1, 'https://ror.org/04wekvh85 Berlin Heart (Germany)'),
(79137, 'https://ror.org/04wgzww60', 'no_lang_code', 1, 'https://ror.org/04wgzww60 Mangar Health (United Kingdom)'),
(79138, 'https://ror.org/04why9q78', 'no_lang_code', 1, 'https://ror.org/04why9q78 Bentley Systems (United Kingdom)'),
(79139, 'https://ror.org/04wm69k66', 'en', 1, 'https://ror.org/04wm69k66 Deutsches Institut für Katastrophenmedizin German Institute for Disaster Medicine'),
(79140, 'https://ror.org/04wmff902', 'no_lang_code', 1, 'https://ror.org/04wmff902 Marvell (United States)'),
(79141, 'https://ror.org/04wnpe888', 'no_lang_code', 1, 'https://ror.org/04wnpe888 Vascular Flow Technologies (United Kingdom)'),
(79142, 'https://ror.org/04wqwae75', 'no_lang_code', 1, 'https://ror.org/04wqwae75 Tris Pharma (United States)'),
(79143, 'https://ror.org/04wtsrd61', 'es', 1, 'https://ror.org/04wtsrd61 Instituto Universitario de Ciencias MƩdicas y Humanƭsticas de Nayarit'),
(79144, 'https://ror.org/04wxb8m29', 'no_lang_code', 1, 'https://ror.org/04wxb8m29 SIM*VIVO (United States)'),
(79145, 'https://ror.org/04wxq1e36', 'no_lang_code', 1, 'https://ror.org/04wxq1e36 Otherlab'),
(79146, 'https://ror.org/04wy1ab83', 'no_lang_code', 1, 'https://ror.org/04wy1ab83 OptiScan (United States)'),
(79147, 'https://ror.org/04wy4bt38', 'en', 1, 'https://ror.org/04wy4bt38 Bundesinstitut für Bevölkerungsforschung Federal Institute for Population Research'),
(79148, 'https://ror.org/04wysdg63', 'no_lang_code', 1, 'https://ror.org/04wysdg63 Redx Pharma (United Kingdom)'),
(79149, 'https://ror.org/04x0j9s13', 'no_lang_code', 1, 'https://ror.org/04x0j9s13 Crystal Pharmatech (United States)'),
(79150, 'https://ror.org/04x4b2j19', 'no_lang_code', 1, 'https://ror.org/04x4b2j19 Optikron (Germany)'),
(79151, 'https://ror.org/04x60sx56', 'en', 1, 'https://ror.org/04x60sx56 Hokkaido Environment Foundation å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“ē’°å¢ƒč²”å›£'),
(79152, 'https://ror.org/04x67xp14', 'no_lang_code', 1, 'https://ror.org/04x67xp14 Holota Optics (Germany)'),
(79153, 'https://ror.org/04x6bfw13', 'de', 1, 'https://ror.org/04x6bfw13 Gesellschaft für Pädagogik und Information'),
(79154, 'https://ror.org/04x8thz12', 'en', 1, 'https://ror.org/04x8thz12 University Transportation Center for Mobility');
INSERT INTO `rors` VALUES
(79155, 'https://ror.org/04x8zs855', 'no_lang_code', 1, 'https://ror.org/04x8zs855 Ferring Pharmaceuticals (Finland)'),
(79156, 'https://ror.org/04x97rq71', 'en', 1, 'https://ror.org/04x97rq71 National Innovation Foundation નેશનલ ઇનોવેશન ąŖ«ąŖ¾ąŖ‰ąŖØą«ąŖ”ą«‡ąŖ¶ąŖØ ભારત'),
(79157, 'https://ror.org/04x9bj553', 'no_lang_code', 1, 'https://ror.org/04x9bj553 New Japan Chemical (Japan) ę–°ę—„ęœ¬ē†åŒ–ę Ŗå¼ä¼šē¤¾'),
(79158, 'https://ror.org/04xad0v87', 'en', 1, 'https://ror.org/04xad0v87 Hamamatsu Japan Language College'),
(79159, 'https://ror.org/04xar0g84', 'en', 1, 'https://ror.org/04xar0g84 Hainan Provincial Hospital of Traditional Chinese Medicine ęµ·å—ēœäø­åŒ»é™¢'),
(79160, 'https://ror.org/04xbkmk86', 'en', 1, 'https://ror.org/04xbkmk86 Center for Genomic Science'),
(79161, 'https://ror.org/04xc1rd71', 'no_lang_code', 1, 'https://ror.org/04xc1rd71 Yotsuya Medical Cube åŒ»ē™‚ę³•äŗŗē¤¾å›£ć‚ć‚“ć—ć‚“ä¼šå››č°·ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚­ćƒ„ćƒ¼ćƒ–'),
(79162, 'https://ror.org/04xchw238', 'de', 1, 'https://ror.org/04xchw238 Wissenschaftliches Institut für Infrastruktur und Kommunikationsdienste'),
(79163, 'https://ror.org/04xee8d94', 'en', 1, 'https://ror.org/04xee8d94 Pulmonary Hospital of Lanzhou å…°å·žåø‚č‚ŗē§‘åŒ»é™¢'),
(79164, 'https://ror.org/04xezgr31', 'no_lang_code', 1, 'https://ror.org/04xezgr31 CIBBIM-Nanomedicine'),
(79165, 'https://ror.org/04xf4yw96', 'en', 1, 'https://ror.org/04xf4yw96 Tata Institute for Genetics and Society'),
(79166, 'https://ror.org/04xfrsv55', 'no_lang_code', 1, 'https://ror.org/04xfrsv55 QuintessenceLabs (Australia)'),
(79167, 'https://ror.org/04xhxg104', 'no_lang_code', 1, 'https://ror.org/04xhxg104 Microsoft (Canada)'),
(79168, 'https://ror.org/04xjsk421', 'no_lang_code', 1, 'https://ror.org/04xjsk421 Trisa (Switzerland)'),
(79169, 'https://ror.org/04xmn6g49', 'no_lang_code', 1, 'https://ror.org/04xmn6g49 Rapid Flow (United States)'),
(79170, 'https://ror.org/04xpvpa92', 'no_lang_code', 1, 'https://ror.org/04xpvpa92 Opt-E (United States)'),
(79171, 'https://ror.org/04xpwnc20', 'en', 1, 'https://ror.org/04xpwnc20 Transportation Learning Center'),
(79172, 'https://ror.org/04xrw3922', 'no_lang_code', 1, 'https://ror.org/04xrw3922 Trace-Ability (United States)'),
(79173, 'https://ror.org/04xvc2765', 'no_lang_code', 1, 'https://ror.org/04xvc2765 Integra TDS (Slovakia)'),
(79174, 'https://ror.org/04xw4m193', 'en', 1, 'https://ror.org/04xw4m193 Environmental Information Data Centre'),
(79175, 'https://ror.org/04xx77718', 'en', 1, 'https://ror.org/04xx77718 Bosom Buddies of Arizona'),
(79176, 'https://ror.org/04y0f6h17', 'no_lang_code', 1, 'https://ror.org/04y0f6h17 Resis (Italy)'),
(79177, 'https://ror.org/04y10pp77', 'en', 1, 'https://ror.org/04y10pp77 Amersham Vale Practice'),
(79178, 'https://ror.org/04y1ast97', 'en', 1, 'https://ror.org/04y1ast97 Archives de l''Ɖtat Rijksarchief State Archives of Belgium'),
(79179, 'https://ror.org/04y72be90', 'no_lang_code', 1, 'https://ror.org/04y72be90 Leyard (United States)'),
(79180, 'https://ror.org/04y8bah34', 'no_lang_code', 1, 'https://ror.org/04y8bah34 Respec (United States)'),
(79181, 'https://ror.org/04y938269', 'en', 1, 'https://ror.org/04y938269 Latin American Society for Travel Medicine Sociedad Latinoamericana de Medicina del Viajero'),
(79182, 'https://ror.org/04y9apa89', 'no_lang_code', 1, 'https://ror.org/04y9apa89 Sanmina (United States)'),
(79183, 'https://ror.org/04yd0my20', 'nl', 1, 'https://ror.org/04yd0my20 Stichting Jij Speelt de Hoofdrol'),
(79184, 'https://ror.org/04yegz493', 'en', 1, 'https://ror.org/04yegz493 The Cattle Museum ē‰›ć®åšē‰©é¤Ø'),
(79185, 'https://ror.org/04yek5175', 'no_lang_code', 1, 'https://ror.org/04yek5175 Ferrosan Medical Devices (Denmark)'),
(79186, 'https://ror.org/04yhhm579', 'no_lang_code', 1, 'https://ror.org/04yhhm579 Universal Music Group (United States)'),
(79187, 'https://ror.org/04yjbr930', 'en', 1, 'https://ror.org/04yjbr930 Shenzhen University Health Science Center'),
(79188, 'https://ror.org/04ykypa08', 'no_lang_code', 1, 'https://ror.org/04ykypa08 PodbrezovÔ Iron Works (Slovakia) Železiarne PodbrezovÔ'),
(79189, 'https://ror.org/04yne6f58', 'fr', 1, 'https://ror.org/04yne6f58 Clinique GƩnƩrale-Beaulieu, GƩnƩrale-Beaulieu Clinic'),
(79190, 'https://ror.org/04yptqa43', 'no_lang_code', 1, 'https://ror.org/04yptqa43 Thermofluidics (United Kingdom)'),
(79191, 'https://ror.org/04yr2xe56', 'en', 1, 'https://ror.org/04yr2xe56 The British Blockchain Association'),
(79192, 'https://ror.org/04yty3z13', 'en', 1, 'https://ror.org/04yty3z13 Japan Association for Fire Science and Engineering ę—„ęœ¬ē«ē½å­¦ä¼š'),
(79193, 'https://ror.org/04yva9a78', 'en', 1, 'https://ror.org/04yva9a78 Institute of Animal Health and Veterinary Biologicals ಪಶು ą²†ą²°ą³‹ą²—ą³ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²œą³ˆą²µą²æą²• ą²øą²‚ą²øą³ą²„ą³†'),
(79194, 'https://ror.org/04yxrw198', 'no_lang_code', 1, 'https://ror.org/04yxrw198 MediGuide (United States)'),
(79195, 'https://ror.org/04yxsy717', 'no_lang_code', 1, 'https://ror.org/04yxsy717 Institut für Angewandte Verkehrs- und Tourismusforschung (Germany)'),
(79196, 'https://ror.org/04yyf0g82', 'no_lang_code', 1, 'https://ror.org/04yyf0g82 Occlutech (Sweden)'),
(79197, 'https://ror.org/04yzfbe56', 'no_lang_code', 1, 'https://ror.org/04yzfbe56 Management Institut Bochum (Germany)'),
(79198, 'https://ror.org/04yzyf194', 'en', 1, 'https://ror.org/04yzyf194 Mahatma Gandhi University'),
(79199, 'https://ror.org/04z20hw90', 'en', 1, 'https://ror.org/04z20hw90 Tanaka Institute of Education 田中教育研究所'),
(79200, 'https://ror.org/04z3q6371', 'no_lang_code', 1, 'https://ror.org/04z3q6371 Scionix (Netherlands)'),
(79201, 'https://ror.org/04z50tc18', 'no_lang_code', 1, 'https://ror.org/04z50tc18 Woodwelding (Switzerland)'),
(79202, 'https://ror.org/04z5zpe30', 'en', 1, 'https://ror.org/04z5zpe30 United States Agricultural Information Network'),
(79203, 'https://ror.org/04z7mxt48', 'no_lang_code', 1, 'https://ror.org/04z7mxt48 O''Donnell Consulting Engineers (United States)'),
(79204, 'https://ror.org/04z999347', 'sk', 1, 'https://ror.org/04z999347 Centrum Pedagogicko PsychologickƩho Poradenstva a Prevencie'),
(79205, 'https://ror.org/04zae5q03', 'en', 1, 'https://ror.org/04zae5q03 The Dainippon Silk Foundation 貔団法人 å¤§ę—„ęœ¬čš•ē³øä¼š'),
(79206, 'https://ror.org/04zaxn180', 'en', 1, 'https://ror.org/04zaxn180 Sendai Vocational College of Health and Welfare ä»™å°åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(79207, 'https://ror.org/04zdgqb89', 'en', 1, 'https://ror.org/04zdgqb89 Islamic Azad University Islamshahr Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد اسلامؓهر'),
(79208, 'https://ror.org/04zgxt121', 'en', 1, 'https://ror.org/04zgxt121 Bureau of Geology and Mineral Exploration and Development of Guizhou Province'),
(79209, 'https://ror.org/04zj6ee21', 'no_lang_code', 1, 'https://ror.org/04zj6ee21 MeVis Medical Solutions (Germany)'),
(79210, 'https://ror.org/04zjdjw13', 'en', 1, 'https://ror.org/04zjdjw13 State Institution "Ukrainian Research Institute of Medical Rehabilitation and Resort Therapy of Ministry of Health of Ukraine" Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Украинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинской реабилитации Šø ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠø ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Украины" Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГичної реабілітації та ŠŗŃƒŃ€Š¾Ń€Ń‚ології ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š° охорони зГоров''я України"'),
(79211, 'https://ror.org/04zk07r40', 'en', 1, 'https://ror.org/04zk07r40 Brandenburg Institute for Society and Security Brandenburgische Institut für Gesellschaft und Sicherheit'),
(79212, 'https://ror.org/04zkam251', 'en', 1, 'https://ror.org/04zkam251 Marion VA Medical Center'),
(79213, 'https://ror.org/04zkxj954', 'no_lang_code', 1, 'https://ror.org/04zkxj954 Molecular Pathology Laboratory Network (United States)'),
(79214, 'https://ror.org/04zmdqe71', 'en', 1, 'https://ror.org/04zmdqe71 Bank of Japan ę—„ęœ¬éŠ€č”Œ'),
(79215, 'https://ror.org/04znb3x93', 'no_lang_code', 1, 'https://ror.org/04znb3x93 Nobuhara Hospital äæ”åŽŸē—…é™¢'),
(79216, 'https://ror.org/04znq7n20', 'no_lang_code', 1, 'https://ror.org/04znq7n20 HDG Bavaria (Germany)'),
(79217, 'https://ror.org/04zqtqt31', 'no_lang_code', 1, 'https://ror.org/04zqtqt31 CAO Group (United States)'),
(79218, 'https://ror.org/04zr5y856', 'no_lang_code', 1, 'https://ror.org/04zr5y856 Hexima (Australia)'),
(79219, 'https://ror.org/04zrvd864', 'en', 1, 'https://ror.org/04zrvd864 Silvestrum Climate Associates'),
(79220, 'https://ror.org/04zs4f087', 'no_lang_code', 1, 'https://ror.org/04zs4f087 ERT (Germany)'),
(79221, 'https://ror.org/04zs83x19', 'en', 1, 'https://ror.org/04zs83x19 Zhengzhou Railway Vocational & Technical College éƒ‘å·žé“č·ÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(79222, 'https://ror.org/04zs97627', 'no_lang_code', 1, 'https://ror.org/04zs97627 OQ (Oman)'),
(79223, 'https://ror.org/04zt7e430', 'de', 1, 'https://ror.org/04zt7e430 Landesanstalt für Schweinezucht'),
(79224, 'https://ror.org/04zt8gw89', 'en', 1, 'https://ror.org/04zt8gw89 Gold Coast Health'),
(79225, 'https://ror.org/04ztf1t13', 'en', 1, 'https://ror.org/04ztf1t13 Institute Of Psychomedical Education For Children And Adults ćƒšćƒƒć‚Æē ”ē©¶ę‰€'),
(79226, 'https://ror.org/04zwys509', 'no_lang_code', 1, 'https://ror.org/04zwys509 Petkus (Germany)'),
(79227, 'https://ror.org/04zzqcq74', 'no_lang_code', 1, 'https://ror.org/04zzqcq74 United Parcel Service (United Kingdom)'),
(79228, 'https://ror.org/0500v6t47', 'en', 1, 'https://ror.org/0500v6t47 Centre for Fire, Explosive and Environment Safety ą¤…ą¤—ą„ą¤Øą¤æ, ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤°ą¤£ तऄा ą¤µą¤æą¤øą„ą¤«ą„‹ą¤Ÿą¤• ą¤øą„ą¤°ą¤•ą„ą¤·ą¤¾ ą¤•ą„‡ą¤‚ą¤¦'),
(79229, 'https://ror.org/050208923', 'de', 1, 'https://ror.org/050208923 DRK-Blutspendedienst Baden-Württemberg - Hessen'),
(79230, 'https://ror.org/0503xrr06', 'no_lang_code', 1, 'https://ror.org/0503xrr06 Closer Consultoria (Portugal)'),
(79231, 'https://ror.org/05044k006', 'no_lang_code', 1, 'https://ror.org/05044k006 Beijing Zhongchuangwei Quantum Communication Technology (China) äø­åˆ›äøŗé‡å­'),
(79232, 'https://ror.org/0504t8c81', 'no_lang_code', 1, 'https://ror.org/0504t8c81 ERGONOMIC Institut für Arbeits- und Sozialforschung Forschungsgesellschaft (Germany)'),
(79233, 'https://ror.org/0506jd168', 'no_lang_code', 1, 'https://ror.org/0506jd168 Sisu Data (United States)'),
(79234, 'https://ror.org/0509zzg37', 'en', 1, 'https://ror.org/0509zzg37 Scripps MD Anderson Cancer Center'),
(79235, 'https://ror.org/050chtk28', 'no_lang_code', 1, 'https://ror.org/050chtk28 Shine Micro (United States)'),
(79236, 'https://ror.org/050d14s15', 'en', 1, 'https://ror.org/050d14s15 Government Accountability Project'),
(79237, 'https://ror.org/050fs4d54', 'no_lang_code', 1, 'https://ror.org/050fs4d54 247Solar Plant (United States)'),
(79238, 'https://ror.org/050gvvk80', 'es', 1, 'https://ror.org/050gvvk80 Asociación Colombiana de Nefrología e Hipertensión Arterial Colombian Association of Nephrology and Arterial Hypertension'),
(79239, 'https://ror.org/050gyxr66', 'no_lang_code', 1, 'https://ror.org/050gyxr66 Progenity (United States)'),
(79240, 'https://ror.org/050h08n21', 'en', 1, 'https://ror.org/050h08n21 Aquarius Population Health'),
(79241, 'https://ror.org/050j7g273', 'no_lang_code', 1, 'https://ror.org/050j7g273 Jiangnan Industry Group (China) ę±Ÿå—å·„äøšé›†å›¢'),
(79242, 'https://ror.org/050jaqw98', 'no_lang_code', 1, 'https://ror.org/050jaqw98 Normag (Germany)'),
(79243, 'https://ror.org/050n5x481', 'no_lang_code', 1, 'https://ror.org/050n5x481 Openbeds (United States)'),
(79244, 'https://ror.org/050pzta73', 'no_lang_code', 1, 'https://ror.org/050pzta73 Klaus Kuhn Edelstahlgießerei Kuhn Special Steel (Germany)'),
(79245, 'https://ror.org/050q8cm26', 'no_lang_code', 1, 'https://ror.org/050q8cm26 Roche (Chile)'),
(79246, 'https://ror.org/050qpg053', 'en', 1, 'https://ror.org/050qpg053 Research Center for Environmental Changes, Academia Sinica ē’°å¢ƒč®Šé·ē ”ē©¶äø­åæƒ'),
(79247, 'https://ror.org/050qvcs37', 'en', 1, 'https://ror.org/050qvcs37 Nanobiosensorics Laboratory'),
(79248, 'https://ror.org/050rz1283', 'no_lang_code', 1, 'https://ror.org/050rz1283 Currax Pharmaceuticals (United States)'),
(79249, 'https://ror.org/050tt9n79', 'no_lang_code', 1, 'https://ror.org/050tt9n79 Y.K. Bae (United States)'),
(79250, 'https://ror.org/05106mv47', 'en', 1, 'https://ror.org/05106mv47 Department of Animal Husbandry Livestock, Fisheries & Veterinary ą¤Ŗą¤¶ą„ą¤Ŗą¤¾ą¤²ą¤Ø ą¤Ŗą¤¶ą„ą¤§ą¤Ø ą¤®ą¤¤ą„ą¤øą„ą¤Æ र ą¤Ŗą¤¶ą„'),
(79251, 'https://ror.org/0510rka91', 'en', 1, 'https://ror.org/0510rka91 Adwa-Pan African University ዓድዋ į“įŠ• įŠ£įįˆŖįŠ« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(79252, 'https://ror.org/05115zx74', 'no_lang_code', 1, 'https://ror.org/05115zx74 Sample6 (United States)'),
(79253, 'https://ror.org/0511c9v88', 'en', 1, 'https://ror.org/0511c9v88 Churapcha State Institute of Physical Education and Sports Š¤Š“Š‘ŠžŠ£ Š’Šž Š§ŃƒŃ€Š°ŠæŃ‡ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(79254, 'https://ror.org/0515dxk89', 'no_lang_code', 1, 'https://ror.org/0515dxk89 Proton Motor (Germany)'),
(79255, 'https://ror.org/0516gh575', 'no_lang_code', 1, 'https://ror.org/0516gh575 Entwicklungsagentur Region Heide (Germany)'),
(79256, 'https://ror.org/051860q83', 'no_lang_code', 1, 'https://ror.org/051860q83 AspenTech (United Kingdom)'),
(79257, 'https://ror.org/0518mdr56', 'no_lang_code', 1, 'https://ror.org/0518mdr56 Bruker (Austria)'),
(79258, 'https://ror.org/0519hbh33', 'no_lang_code', 1, 'https://ror.org/0519hbh33 Drevar (Slovakia)'),
(79259, 'https://ror.org/051a88j84', 'pt', 1, 'https://ror.org/051a88j84 Centro UniversitƔrio Maurƭcio de Nassau'),
(79260, 'https://ror.org/051c7bh69', 'no_lang_code', 1, 'https://ror.org/051c7bh69 Frequency Therapeutics (United States)'),
(79261, 'https://ror.org/051cj2f30', 'no_lang_code', 1, 'https://ror.org/051cj2f30 Seoul Viosys (South Korea) ģ„œģšøė°”ģ“ģ˜¤ģ‹œģŠ¤ėŠ”'),
(79262, 'https://ror.org/051d31036', 'no_lang_code', 1, 'https://ror.org/051d31036 ELAN Microelectronics (Taiwan) ē¾©éš†é›»å­'),
(79263, 'https://ror.org/051dcnw66', 'no_lang_code', 1, 'https://ror.org/051dcnw66 Drylock Technologies (Belgium)'),
(79264, 'https://ror.org/051gfkj61', 'en', 1, 'https://ror.org/051gfkj61 Experimental Center of Forestry in North China äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢åŽåŒ—ęž—äøšå®žéŖŒäø­åæƒ'),
(79265, 'https://ror.org/051hm2r46', 'no_lang_code', 1, 'https://ror.org/051hm2r46 Cemex (United Kingdom)'),
(79266, 'https://ror.org/051j6j225', 'en', 1, 'https://ror.org/051j6j225 Final International University Uluslararası Final Üniversitesi'),
(79267, 'https://ror.org/051k1tf82', 'en', 1, 'https://ror.org/051k1tf82 Hainan Marine Monitoring and Forecasting Center ęµ·å—ęµ·ę“‹ē›‘ęµ‹é¢„ęŠ„äø­åæƒ'),
(79268, 'https://ror.org/051kay419', 'en', 1, 'https://ror.org/051kay419 Yandex School of Data Analysis Школа анализа Ганных'),
(79269, 'https://ror.org/051kr3840', 'no_lang_code', 1, 'https://ror.org/051kr3840 Steelco (Italy)'),
(79270, 'https://ror.org/051m5br28', 'en', 1, 'https://ror.org/051m5br28 Indian Society of Agribusiness Professionals'),
(79271, 'https://ror.org/051mv2k59', 'en', 1, 'https://ror.org/051mv2k59 Kursk Federal Agrarian Scientific Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŠŠ°ŃƒŃ‡Š½Š¾Šµ УчрежГение'),
(79272, 'https://ror.org/051qqsf31', 'no_lang_code', 1, 'https://ror.org/051qqsf31 CeramTec (United Kingdom)'),
(79273, 'https://ror.org/051r4h193', 'no_lang_code', 1, 'https://ror.org/051r4h193 PPA Controll (Slovakia)'),
(79274, 'https://ror.org/051vfhx38', 'no_lang_code', 1, 'https://ror.org/051vfhx38 vTv Therapeutics (United States)'),
(79275, 'https://ror.org/051wgwg77', 'en', 1, 'https://ror.org/051wgwg77 Institute for Social Research and Project Consultancy'),
(79276, 'https://ror.org/051wthz50', 'no_lang_code', 1, 'https://ror.org/051wthz50 Techulon (United States)'),
(79277, 'https://ror.org/051xjbt51', 'no_lang_code', 1, 'https://ror.org/051xjbt51 Omsktransmash (Russia) ŠžŠ¼ŃŠŗŠøŠ¹ завоГ транспортного Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(79278, 'https://ror.org/051zgzc60', 'de', 1, 'https://ror.org/051zgzc60 Institut für Bodenkultur und Pflanzenbau'),
(79279, 'https://ror.org/051zjfd08', 'no_lang_code', 1, 'https://ror.org/051zjfd08 Somnarus (United States)'),
(79280, 'https://ror.org/0521ccd18', 'no_lang_code', 1, 'https://ror.org/0521ccd18 AlzChem (Germany)'),
(79281, 'https://ror.org/0521m4596', 'no_lang_code', 1, 'https://ror.org/0521m4596 McCarter (Slovakia)'),
(79282, 'https://ror.org/052464b83', 'no_lang_code', 1, 'https://ror.org/052464b83 Doxa (Sweden)'),
(79283, 'https://ror.org/0524fk031', 'no_lang_code', 1, 'https://ror.org/0524fk031 PLC Connections (United States)'),
(79284, 'https://ror.org/0524grj14', 'en', 1, 'https://ror.org/0524grj14 The Sixth People''s Hospital of Shenyang ę²ˆé˜³åø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(79285, 'https://ror.org/0525agk59', 'en', 1, 'https://ror.org/0525agk59 Cyber Campus Consortium TIES'),
(79286, 'https://ror.org/0525dzh79', 'no_lang_code', 1, 'https://ror.org/0525dzh79 Poseida Therapeutics (United States)'),
(79287, 'https://ror.org/0525ff954', 'no_lang_code', 1, 'https://ror.org/0525ff954 Institut Für Prozeßadaptive und Erfahrungsgeleitete Automatisierung (Germany)'),
(79288, 'https://ror.org/0527cde49', 'no_lang_code', 1, 'https://ror.org/0527cde49 Epic Sciences (United States)'),
(79289, 'https://ror.org/0527w8j59', 'no_lang_code', 1, 'https://ror.org/0527w8j59 Institut für technisch-wissenschaftliche Hydrologie Institute for Technical and Scientific Hydrology (Germany)'),
(79290, 'https://ror.org/05288bk55', 'no_lang_code', 1, 'https://ror.org/05288bk55 PatientsVoices (United States)'),
(79291, 'https://ror.org/052bx1y70', 'fr', 1, 'https://ror.org/052bx1y70 Clinique VƩtƩrinaire Benjamin Franklin'),
(79292, 'https://ror.org/052c5hg93', 'no_lang_code', 1, 'https://ror.org/052c5hg93 GTT Communications (United States)'),
(79293, 'https://ror.org/052cfvk26', 'en', 1, 'https://ror.org/052cfvk26 Yunnan Provincial Infectious Disease Hospital äŗ‘å—ēœä¼ ęŸ“ē—…äø“ē§‘åŒ»é™¢'),
(79294, 'https://ror.org/052d0ye06', 'de', 1, 'https://ror.org/052d0ye06 Institut für Internationale Kommunikation'),
(79295, 'https://ror.org/052d8ge54', 'en', 1, 'https://ror.org/052d8ge54 Robert J. Dole VA Medical Center'),
(79296, 'https://ror.org/052djjn64', 'no_lang_code', 1, 'https://ror.org/052djjn64 Factor Bioscience (United States)'),
(79297, 'https://ror.org/052dmdr17', 'no_lang_code', 1, 'https://ror.org/052dmdr17 TrĘ°į»ng ĐẔi hį»c VinUni VinUniversity'),
(79298, 'https://ror.org/052f2mx26', 'en', 1, 'https://ror.org/052f2mx26 Xi''an Chest Hospital č„æå®‰åø‚čƒøē§‘åŒ»é™¢'),
(79299, 'https://ror.org/052fgf944', 'de', 1, 'https://ror.org/052fgf944 Deutsches Jungforscher Netzwerk - juFORUM'),
(79300, 'https://ror.org/052gwma96', 'de', 1, 'https://ror.org/052gwma96 Medizinischer FakultƤtentag'),
(79301, 'https://ror.org/052k2qm78', 'no_lang_code', 1, 'https://ror.org/052k2qm78 Industrial Research & Engineering (Germany)'),
(79302, 'https://ror.org/052n2ew56', 'de', 1, 'https://ror.org/052n2ew56 DRK Bezirksverband Frankfurt'),
(79303, 'https://ror.org/052ne1802', 'no_lang_code', 1, 'https://ror.org/052ne1802 Visonex (United States)'),
(79304, 'https://ror.org/052p82762', 'en', 1, 'https://ror.org/052p82762 Nanchang Center for Disease Control and Prevention å—ę˜Œåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(79305, 'https://ror.org/052r73a33', 'no_lang_code', 1, 'https://ror.org/052r73a33 PPG Industries (United Kingdom)'),
(79306, 'https://ror.org/052rc8810', 'de', 1, 'https://ror.org/052rc8810 Ministerium für Wirtschaft, Arbeit, Energie und Verkehr'),
(79307, 'https://ror.org/052rnf523', 'de', 1, 'https://ror.org/052rnf523 Institut für Assistenzsysteme und Qualifizierung'),
(79308, 'https://ror.org/052s9kd61', 'no_lang_code', 1, 'https://ror.org/052s9kd61 Prognos (Germany)'),
(79309, 'https://ror.org/052scad51', 'no_lang_code', 1, 'https://ror.org/052scad51 Kurayoshi Museum å€‰å‰åšē‰©é¤Ø'),
(79310, 'https://ror.org/052sgg612', 'en', 1, 'https://ror.org/052sgg612 Arthur Rylah Institute for Environmental Research'),
(79311, 'https://ror.org/052v5pn20', 'en', 1, 'https://ror.org/052v5pn20 Eastern Regional Research Center'),
(79312, 'https://ror.org/052yc4b30', 'no_lang_code', 1, 'https://ror.org/052yc4b30 Exsymol (Monaco)'),
(79313, 'https://ror.org/052z98995', 'no_lang_code', 1, 'https://ror.org/052z98995 VƔdium (Slovakia)'),
(79314, 'https://ror.org/0530gr416', 'no_lang_code', 1, 'https://ror.org/0530gr416 Helsana Group (Switzerland)'),
(79315, 'https://ror.org/0532gcg76', 'en', 1, 'https://ror.org/0532gcg76 Institute for Disease Modeling'),
(79316, 'https://ror.org/053344077', 'no_lang_code', 1, 'https://ror.org/053344077 Arsenal Biosciences (United States)'),
(79317, 'https://ror.org/053385a79', 'fr', 1, 'https://ror.org/053385a79 HƓpital Dupuytren'),
(79318, 'https://ror.org/05343ec73', 'en', 1, 'https://ror.org/05343ec73 Islamic Azad University, Azadshahr Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ آزادؓهر'),
(79319, 'https://ror.org/0535jaz61', 'en', 1, 'https://ror.org/0535jaz61 National College Of Nursing å›½ē«‹ēœ‹č­·å¤§å­¦ę ”'),
(79320, 'https://ror.org/053641y49', 'en', 1, 'https://ror.org/053641y49 Japan Coal Energy Center ēŸ³ē‚­ć‚Øćƒćƒ«ć‚®ćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(79321, 'https://ror.org/0537wed62', 'no_lang_code', 1, 'https://ror.org/0537wed62 ROWO Coating (Germany)'),
(79322, 'https://ror.org/05392nj09', 'no_lang_code', 1, 'https://ror.org/05392nj09 Zalgen (United States)'),
(79323, 'https://ror.org/0539tbr70', 'no_lang_code', 1, 'https://ror.org/0539tbr70 Taisei Kako (Japan)'),
(79324, 'https://ror.org/0539w9883', 'en', 1, 'https://ror.org/0539w9883 Eswatini Economic Policy Analysis and Research Centre'),
(79325, 'https://ror.org/053c4y589', 'no_lang_code', 1, 'https://ror.org/053c4y589 J.M. Huber Corporation (United States)'),
(79326, 'https://ror.org/053frp704', 'no_lang_code', 1, 'https://ror.org/053frp704 Yebio Bioengineering (China)'),
(79327, 'https://ror.org/053g4zj73', 'no_lang_code', 1, 'https://ror.org/053g4zj73 Raydium Semiconductor (Taiwan)'),
(79328, 'https://ror.org/053g7ab72', 'en', 1, 'https://ror.org/053g7ab72 Grammar School GymnƔzium v Snine'),
(79329, 'https://ror.org/053htj969', 'no_lang_code', 1, 'https://ror.org/053htj969 Clement Clarke International (United Kingdom)'),
(79330, 'https://ror.org/053j5m838', 'no_lang_code', 1, 'https://ror.org/053j5m838 Bitunova (Slovakia)'),
(79331, 'https://ror.org/053rk7239', 'no_lang_code', 1, 'https://ror.org/053rk7239 ETKM (Slovakia)'),
(79332, 'https://ror.org/053s03b36', 'en', 1, 'https://ror.org/053s03b36 Laudes Foundation'),
(79333, 'https://ror.org/053x1dt55', 'en', 1, 'https://ror.org/053x1dt55 Northeast Gas Association'),
(79334, 'https://ror.org/0544z8b75', 'en', 1, 'https://ror.org/0544z8b75 College Of Certified Psychophysiologists'),
(79335, 'https://ror.org/054767b18', 'en', 1, 'https://ror.org/054767b18 Dawu County People''s Hospital å¤§ę‚ŸåŽæäŗŗę°‘åŒ»é™¢'),
(79336, 'https://ror.org/0547r0f90', 'de', 1, 'https://ror.org/0547r0f90 Landesinstitut für Schule und Medien Berlin-Brandenburg'),
(79337, 'https://ror.org/0547yav62', 'no_lang_code', 1, 'https://ror.org/0547yav62 Institut für Ɩkologie und Politik Ɩkopol (Germany)'),
(79338, 'https://ror.org/054a82660', 'de', 1, 'https://ror.org/054a82660 Institut Psychologie und Bedrohungsmanagement'),
(79339, 'https://ror.org/054d0qa72', 'de', 1, 'https://ror.org/054d0qa72 Kasseler Institut für Ländliche Entwicklung'),
(79340, 'https://ror.org/054dwj411', 'no_lang_code', 1, 'https://ror.org/054dwj411 Geodis (Slovakia)'),
(79341, 'https://ror.org/054fkw726', 'en', 1, 'https://ror.org/054fkw726 Hunan Institute of Microbiology ę¹–å—ēœå¾®ē”Ÿē‰©ē ”ē©¶é™¢'),
(79342, 'https://ror.org/054grzz74', 'no_lang_code', 1, 'https://ror.org/054grzz74 Virtual Technology (United States)'),
(79343, 'https://ror.org/054j2ss72', 'en', 1, 'https://ror.org/054j2ss72 New Insights for Tourism'),
(79344, 'https://ror.org/054kgce12', 'de', 1, 'https://ror.org/054kgce12 An-Institut für Transfer und Weiterbildung'),
(79345, 'https://ror.org/054q94y45', 'en', 1, 'https://ror.org/054q94y45 Centre de Collaboration MiQro Innovation MiQro Innovation Collaborative Centre'),
(79346, 'https://ror.org/054qz6938', 'fr', 1, 'https://ror.org/054qz6938 Ɖcole de Gouvernance et d''Ɖconomie de Rabat'),
(79347, 'https://ror.org/054r9x893', 'en', 1, 'https://ror.org/054r9x893 Kazakh University of Technology and Business ŅšŠ°Š·Š°Ņ› Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ және бизнес ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(79348, 'https://ror.org/054tmk179', 'en', 1, 'https://ror.org/054tmk179 Isaac Newton Group'),
(79349, 'https://ror.org/054tr5c63', 'en', 1, 'https://ror.org/054tr5c63 Center for Inherited Blood Disorders'),
(79350, 'https://ror.org/054tz0d85', 'no_lang_code', 1, 'https://ror.org/054tz0d85 Medomics (China) ę±Ÿč‹ē¾Žå…‹åŒ»å­¦ęŠ€ęœÆęœ‰é™å…¬åø'),
(79351, 'https://ror.org/054we3s04', 'en', 1, 'https://ror.org/054we3s04 Guangzhou Zoo å¹æå·žåŠØē‰©å›­'),
(79352, 'https://ror.org/0550rfz49', 'no_lang_code', 1, 'https://ror.org/0550rfz49 Cytologics (United States)'),
(79353, 'https://ror.org/055298e12', 'no_lang_code', 1, 'https://ror.org/055298e12 PreludeDx (United States)'),
(79354, 'https://ror.org/0553qpy92', 'it', 1, 'https://ror.org/0553qpy92 Istituto Zooprofilattico Sperimentale della Puglia e della Basilicata'),
(79355, 'https://ror.org/0554q9126', 'no_lang_code', 1, 'https://ror.org/0554q9126 DAC Tools (United States)'),
(79356, 'https://ror.org/055560x25', 'en', 1, 'https://ror.org/055560x25 College of Europe, Warsaw'),
(79357, 'https://ror.org/0555yfc83', 'en', 1, 'https://ror.org/0555yfc83 Epson Information Technology College ć‚Øćƒ—ć‚½ćƒ³ęƒ…å ±ē§‘å­¦å°‚é–€å­¦ę ”'),
(79358, 'https://ror.org/05583vn45', 'en', 1, 'https://ror.org/05583vn45 Aerial Delivery Research and Development Establishment हवाई ą¤”ą¤æą¤²ą„€ą¤µą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(79359, 'https://ror.org/0558bev76', 'no_lang_code', 1, 'https://ror.org/0558bev76 IBC Pharmaceuticals (India)'),
(79360, 'https://ror.org/0558r0k17', 'no_lang_code', 1, 'https://ror.org/0558r0k17 Summit Technology Laboratory (United States)'),
(79361, 'https://ror.org/0559db563', 'no_lang_code', 1, 'https://ror.org/0559db563 Xinjiang New Energy Research Institute (China)'),
(79362, 'https://ror.org/055a8sc47', 'no_lang_code', 1, 'https://ror.org/055a8sc47 Spa-ce.net'),
(79363, 'https://ror.org/055bp1561', 'no_lang_code', 1, 'https://ror.org/055bp1561 RaySearch Laboratories (Sweden)'),
(79364, 'https://ror.org/055bszj51', 'no_lang_code', 1, 'https://ror.org/055bszj51 Peptide Institute (Japan) ę Ŗå¼ä¼šē¤¾ćƒšćƒ—ćƒćƒ‰ē ”ē©¶ę‰€'),
(79365, 'https://ror.org/055c63105', 'no_lang_code', 1, 'https://ror.org/055c63105 IBM (Slovakia)'),
(79366, 'https://ror.org/055e56m27', 'no_lang_code', 1, 'https://ror.org/055e56m27 Pacific Research Laboratories (United States)'),
(79367, 'https://ror.org/055e8bt13', 'en', 1, 'https://ror.org/055e8bt13 Banque centrale du Luxembourg Central Bank of Luxembourg'),
(79368, 'https://ror.org/055fwv607', 'en', 1, 'https://ror.org/055fwv607 Combat Vehicles Research and Development Establishment ą¤øą¤‚ą¤—ą„ą¤°ą¤¾ą¤® वाहन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø तऄा विकास ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Ø'),
(79369, 'https://ror.org/055hrh286', 'en', 1, 'https://ror.org/055hrh286 Arctic Data Center'),
(79370, 'https://ror.org/055ppaf52', 'no_lang_code', 1, 'https://ror.org/055ppaf52 Navigant (Germany)'),
(79371, 'https://ror.org/055pxkc03', 'en', 1, 'https://ror.org/055pxkc03 The Korean Institute of Electrical and Electronic Material Engineers ķ•œźµ­ģ „źø°ģ „ģžģž¬ė£Œķ•™ķšŒ'),
(79372, 'https://ror.org/055qcrf91', 'no_lang_code', 1, 'https://ror.org/055qcrf91 Quest Thermal Group (United States)'),
(79373, 'https://ror.org/055qtnk39', 'no_lang_code', 1, 'https://ror.org/055qtnk39 DMG Mori (United Kingdom)'),
(79374, 'https://ror.org/055r2kv75', 'no_lang_code', 1, 'https://ror.org/055r2kv75 Cybersonics (United States)'),
(79375, 'https://ror.org/055txj157', 'no_lang_code', 1, 'https://ror.org/055txj157 Gerresheimer (Germany)'),
(79376, 'https://ror.org/05609xa16', 'en', 1, 'https://ror.org/05609xa16 Wenzhou-Kean University ęø©å·žč‚Æę©å¤§å­¦'),
(79377, 'https://ror.org/05614wx46', 'no_lang_code', 1, 'https://ror.org/05614wx46 Optinav (United States)'),
(79378, 'https://ror.org/0561c4v90', 'en', 1, 'https://ror.org/0561c4v90 DermaTronnier'),
(79379, 'https://ror.org/05621b753', 'no_lang_code', 1, 'https://ror.org/05621b753 Acrux (Australia)'),
(79380, 'https://ror.org/05642yh85', 'pt', 1, 'https://ror.org/05642yh85 CananƩia Research Institute Instituto de Pesquisas CananƩia'),
(79381, 'https://ror.org/0564c1v55', 'no_lang_code', 1, 'https://ror.org/0564c1v55 Technovative Applications (United States)'),
(79382, 'https://ror.org/0565h3a31', 'la', 1, 'https://ror.org/0565h3a31 Institutum Iurisprudentiae, Academia Sinica 中央研究院法律學研究所'),
(79383, 'https://ror.org/0566myk84', 'no_lang_code', 1, 'https://ror.org/0566myk84 Oral Health Solutions (United States)'),
(79384, 'https://ror.org/0568cvb54', 'de', 1, 'https://ror.org/0568cvb54 Cogito Institut für Autonomieforschung'),
(79385, 'https://ror.org/0568fdx82', 'no_lang_code', 1, 'https://ror.org/0568fdx82 Expanse (United States)'),
(79386, 'https://ror.org/0568h1r52', 'no_lang_code', 1, 'https://ror.org/0568h1r52 Haselmeier (Germany)'),
(79387, 'https://ror.org/0569p8y61', 'en', 1, 'https://ror.org/0569p8y61 The Eighth Hospital of Xi''an č„æå®‰åø‚ē¬¬å…«åŒ»é™¢'),
(79388, 'https://ror.org/0569qgz98', 'no_lang_code', 1, 'https://ror.org/0569qgz98 Meiko (Germany)'),
(79389, 'https://ror.org/056andb48', 'no_lang_code', 1, 'https://ror.org/056andb48 Institut für Leichte Elektrische Antriebe und Generatoren (Germany)'),
(79390, 'https://ror.org/056bdp761', 'en', 1, 'https://ror.org/056bdp761 Indonesian Orthopaedic Association Perkumpulan Ahli Bedah Orthopaedi Indonesia'),
(79391, 'https://ror.org/056d2rn68', 'no_lang_code', 1, 'https://ror.org/056d2rn68 Takeda (Canada)'),
(79392, 'https://ror.org/056eeyx03', 'en', 1, 'https://ror.org/056eeyx03 Baden State Museum Badische Landesmuseum'),
(79393, 'https://ror.org/056f5eh80', 'en', 1, 'https://ror.org/056f5eh80 Arctic Research Center of the Yamal-Nenets Autonomous District ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃ Арктики'),
(79394, 'https://ror.org/056ftg126', 'no_lang_code', 1, 'https://ror.org/056ftg126 Owen Mumford (United Kingdom)'),
(79395, 'https://ror.org/056gwgh96', 'no_lang_code', 1, 'https://ror.org/056gwgh96 Alcon (Switzerland)'),
(79396, 'https://ror.org/056h7qt40', 'no_lang_code', 1, 'https://ror.org/056h7qt40 Hotoku Museum č²”å›£ę³•äŗŗå ±å¾³ē¦é‹ē¤¾'),
(79397, 'https://ror.org/056j2ng59', 'no_lang_code', 1, 'https://ror.org/056j2ng59 Techverse (United States)'),
(79398, 'https://ror.org/056jz8j95', 'no_lang_code', 1, 'https://ror.org/056jz8j95 Spinal Elements (United States)'),
(79399, 'https://ror.org/056m22n36', 'no_lang_code', 1, 'https://ror.org/056m22n36 Active Implants (United States)'),
(79400, 'https://ror.org/056mjwa25', 'en', 1, 'https://ror.org/056mjwa25 Senshu University Kitakami welfare education technical school å°‚äæ®å¤§å­¦åŒ—äøŠē¦ē„‰ę•™č‚²å°‚é–€å­¦ę ”'),
(79401, 'https://ror.org/056nqp360', 'de', 1, 'https://ror.org/056nqp360 MedAustron'),
(79402, 'https://ror.org/056pwa368', 'no_lang_code', 1, 'https://ror.org/056pwa368 Vtec Laboratories (United States)'),
(79403, 'https://ror.org/056q25d31', 'no_lang_code', 1, 'https://ror.org/056q25d31 Sheehan Medical (United States)'),
(79404, 'https://ror.org/056qeft95', 'no_lang_code', 1, 'https://ror.org/056qeft95 Salus (United States)'),
(79405, 'https://ror.org/056tqe525', 'no_lang_code', 1, 'https://ror.org/056tqe525 Volition (United Kingdom)'),
(79406, 'https://ror.org/056v6fd94', 'en', 1, 'https://ror.org/056v6fd94 Yamaguchi Prefectural Police å±±å£ēœŒč­¦åÆŸ'),
(79407, 'https://ror.org/056vdh456', 'no_lang_code', 1, 'https://ror.org/056vdh456 APCON (Germany)'),
(79408, 'https://ror.org/056xvq727', 'de', 1, 'https://ror.org/056xvq727 Chemisches und VeterinƤruntersuchungsamt Ostwestfalen-Lippe'),
(79409, 'https://ror.org/057052843', 'no_lang_code', 1, 'https://ror.org/057052843 Nimbic Systems (United States)'),
(79410, 'https://ror.org/057341e57', 'en', 1, 'https://ror.org/057341e57 Museum für Kunst und Gewerbe Hamburg Museum of Art and Design Hamburg'),
(79411, 'https://ror.org/0574dvv95', 'no_lang_code', 1, 'https://ror.org/0574dvv95 Recipharm (France)'),
(79412, 'https://ror.org/0574mcz98', 'en', 1, 'https://ror.org/0574mcz98 National Food Safety and Quality Service Servicio Nacional de Sanidad y Calidad Agroalimentaria'),
(79413, 'https://ror.org/0575r9t98', 'no_lang_code', 1, 'https://ror.org/0575r9t98 Agriculture Victoria Services (Australia)'),
(79414, 'https://ror.org/0576yhz46', 'no_lang_code', 1, 'https://ror.org/0576yhz46 Cengage Learning (United Kingdom)'),
(79415, 'https://ror.org/057aqdv46', 'en', 1, 'https://ror.org/057aqdv46 Center for Reliable Energy Systems'),
(79416, 'https://ror.org/057bmm383', 'no_lang_code', 1, 'https://ror.org/057bmm383 Lb Minerals (Slovakia)'),
(79417, 'https://ror.org/057ez4c69', 'no_lang_code', 1, 'https://ror.org/057ez4c69 Recon Dynamics (United States)'),
(79418, 'https://ror.org/057fnvr81', 'no_lang_code', 1, 'https://ror.org/057fnvr81 Gentian Diagnostics (Sweden)'),
(79419, 'https://ror.org/057g8xr12', 'es', 1, 'https://ror.org/057g8xr12 Colección Ornitológica Phelps'),
(79420, 'https://ror.org/057ht2493', 'no_lang_code', 1, 'https://ror.org/057ht2493 Biolase (United States)'),
(79421, 'https://ror.org/057htkt44', 'en', 1, 'https://ror.org/057htkt44 American Public Transportation Association'),
(79422, 'https://ror.org/057jjmm55', 'en', 1, 'https://ror.org/057jjmm55 Safer Sim'),
(79423, 'https://ror.org/057k96546', 'en', 1, 'https://ror.org/057k96546 Extreme Wellness Institute'),
(79424, 'https://ror.org/057pame33', 'en', 1, 'https://ror.org/057pame33 Commission communautaire commune Common Community Commission Gemeenschappelijke Gemeenschapscommissie'),
(79425, 'https://ror.org/057pf5h72', 'hu', 1, 'https://ror.org/057pf5h72 KiskunsƔg National Park, KiskunsƔgi Nemzeti Park'),
(79426, 'https://ror.org/057pw8j03', 'no_lang_code', 1, 'https://ror.org/057pw8j03 Planmed (Finland)'),
(79427, 'https://ror.org/057qmer80', 'en', 1, 'https://ror.org/057qmer80 Univation Institut für Evaluation Dr. Beywl & Associates'),
(79428, 'https://ror.org/057tsam22', 'de', 1, 'https://ror.org/057tsam22 mmb Institut'),
(79429, 'https://ror.org/057v40812', 'de', 1, 'https://ror.org/057v40812 Deutsches Krankenhaus Institut'),
(79430, 'https://ror.org/057v6df68', 'no_lang_code', 1, 'https://ror.org/057v6df68 Nomura Holdings (Japan) é‡Žę‘ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(79431, 'https://ror.org/057w5q630', 'no_lang_code', 1, 'https://ror.org/057w5q630 Cara Therapeutics (United States)'),
(79432, 'https://ror.org/057zb9e55', 'no_lang_code', 1, 'https://ror.org/057zb9e55 Macopharma (Germany)'),
(79433, 'https://ror.org/0583afz97', 'fr', 1, 'https://ror.org/0583afz97 Ecole SupƩrieure d''Ambulancier et Soins d''Urgence Romande'),
(79434, 'https://ror.org/0583z7951', 'en', 1, 'https://ror.org/0583z7951 Eckert Schools International'),
(79435, 'https://ror.org/058454n10', 'no_lang_code', 1, 'https://ror.org/058454n10 Centrix (United States)'),
(79436, 'https://ror.org/05849hq48', 'no_lang_code', 1, 'https://ror.org/05849hq48 KDS Development (United States)'),
(79437, 'https://ror.org/0584vt120', 'en', 1, 'https://ror.org/0584vt120 Advanced Functional Fabrics of America'),
(79438, 'https://ror.org/05853sr12', 'no_lang_code', 1, 'https://ror.org/05853sr12 Scientific Design Company (United States)'),
(79439, 'https://ror.org/05878p058', 'no_lang_code', 1, 'https://ror.org/05878p058 Silicon Motion (Taiwan) ę…§ę¦®ē§‘ęŠ€'),
(79440, 'https://ror.org/0587q0807', 'en', 1, 'https://ror.org/0587q0807 Sichuan Research Center of New Materials å››å·ēœę–°ęę–™ē ”ē©¶äø­åæƒ'),
(79441, 'https://ror.org/0588m4284', 'en', 1, 'https://ror.org/0588m4284 China Association of Acupuncture-Moxibustion äø­å›½é’ˆēøå­¦ä¼š'),
(79442, 'https://ror.org/058cy9h95', 'no_lang_code', 1, 'https://ror.org/058cy9h95 Origin Quantum Computing Technology Company (China) å›½å†…ē¬¬äø€ę¬¾é‡å­č®”ē®—ęœŗę“ä½œē³»ē»Ÿ'),
(79443, 'https://ror.org/058edxh67', 'en', 1, 'https://ror.org/058edxh67 Jiangxi Institute Of Economic Administraors ę±Ÿč„æē»ęµŽē®”ē†å¹²éƒØå­¦é™¢'),
(79444, 'https://ror.org/058gnjg35', 'no_lang_code', 1, 'https://ror.org/058gnjg35 Veralase (United States)'),
(79445, 'https://ror.org/058j17k65', 'no_lang_code', 1, 'https://ror.org/058j17k65 Magic Leap (United States)'),
(79446, 'https://ror.org/058kq6588', 'no_lang_code', 1, 'https://ror.org/058kq6588 Apeiron Biologics (Austria)'),
(79447, 'https://ror.org/058myeh47', 'no_lang_code', 1, 'https://ror.org/058myeh47 Semefab (United Kingdom)'),
(79448, 'https://ror.org/058n07v74', 'no_lang_code', 1, 'https://ror.org/058n07v74 Curemark (United States)'),
(79449, 'https://ror.org/058phj376', 'de', 1, 'https://ror.org/058phj376 Forschungsanstalt für Waldökologie und Forstwirtschaft'),
(79450, 'https://ror.org/058pmah25', 'en', 1, 'https://ror.org/058pmah25 Federal Reserve Bank of Richmond'),
(79451, 'https://ror.org/058pqk375', 'no_lang_code', 1, 'https://ror.org/058pqk375 Siemens (Slovakia)'),
(79452, 'https://ror.org/058qjc262', 'en', 1, 'https://ror.org/058qjc262 Central Muga Eri Research and Training Institute'),
(79453, 'https://ror.org/058rtc669', 'de', 1, 'https://ror.org/058rtc669 Institut für Diagnostik und Konservierung an Denkmalen in Sachsen und Sachsen-Anhalt'),
(79454, 'https://ror.org/058v0t886', 'en', 1, 'https://ror.org/058v0t886 Sudan Academy of Sciences Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ…'),
(79455, 'https://ror.org/058wv3r60', 'en', 1, 'https://ror.org/058wv3r60 Export–Import Bank of Korea'),
(79456, 'https://ror.org/058wwsg41', 'no_lang_code', 1, 'https://ror.org/058wwsg41 Kinamed (United States)'),
(79457, 'https://ror.org/058xg4r54', 'en', 1, 'https://ror.org/058xg4r54 Citizens Information Board'),
(79458, 'https://ror.org/058ytte92', 'en', 1, 'https://ror.org/058ytte92 Cape Town Science Centre'),
(79459, 'https://ror.org/058yyse25', 'en', 1, 'https://ror.org/058yyse25 China Training Center for Senior Civil Servants äø­å›½é«˜ēŗ§å…¬åŠ”å‘˜åŸ¹č®­äø­åæƒ'),
(79460, 'https://ror.org/058yz2m16', 'en', 1, 'https://ror.org/058yz2m16 Wisconsin Project on Nuclear Arms Control'),
(79461, 'https://ror.org/058zr4t24', 'en', 1, 'https://ror.org/058zr4t24 Center for Migration Studies of New York'),
(79462, 'https://ror.org/058zth179', 'no_lang_code', 1, 'https://ror.org/058zth179 Fiat Chrysler Automobiles (Japan)'),
(79463, 'https://ror.org/05966vw37', 'no_lang_code', 1, 'https://ror.org/05966vw37 Bezwada Biomedical (United States)'),
(79464, 'https://ror.org/0596exr16', 'en', 1, 'https://ror.org/0596exr16 Proyecto Mono Tocón Titi Monkey Project'),
(79465, 'https://ror.org/0596vwe73', 'no_lang_code', 1, 'https://ror.org/0596vwe73 Veroscience (United States)'),
(79466, 'https://ror.org/05997db74', 'en', 1, 'https://ror.org/05997db74 Global Institute for Water Security'),
(79467, 'https://ror.org/059ab3182', 'no_lang_code', 1, 'https://ror.org/059ab3182 Medicomp (United States)'),
(79468, 'https://ror.org/059aer881', 'en', 1, 'https://ror.org/059aer881 Eye Hospital in Bangalore'),
(79469, 'https://ror.org/059c3m342', 'no_lang_code', 1, 'https://ror.org/059c3m342 Patient Knowhow (United States)'),
(79470, 'https://ror.org/059gc9059', 'no_lang_code', 1, 'https://ror.org/059gc9059 Bobst (United Kingdom)'),
(79471, 'https://ror.org/059h8x781', 'no_lang_code', 1, 'https://ror.org/059h8x781 China Central Television äø­å›½äø­å¤®ē”µč§†å°'),
(79472, 'https://ror.org/059k3xc14', 'de', 1, 'https://ror.org/059k3xc14 Landwirtschaftskammer Nordrhein-Westfalen'),
(79473, 'https://ror.org/059kj2n52', 'no_lang_code', 1, 'https://ror.org/059kj2n52 AnaKat (Germany)'),
(79474, 'https://ror.org/059mabc80', 'en', 1, 'https://ror.org/059mabc80 Australian National Wildlife Collection'),
(79475, 'https://ror.org/059nam179', 'en', 1, 'https://ror.org/059nam179 VA Roseburg Healthcare System'),
(79476, 'https://ror.org/059ndnh31', 'no_lang_code', 1, 'https://ror.org/059ndnh31 Turbon (Germany)'),
(79477, 'https://ror.org/059q89q46', 'no_lang_code', 1, 'https://ror.org/059q89q46 Institut für Textiltechnik Augsburg (Germany)'),
(79478, 'https://ror.org/059r55748', 'no_lang_code', 1, 'https://ror.org/059r55748 Triad (United States)'),
(79479, 'https://ror.org/059r91969', 'no_lang_code', 1, 'https://ror.org/059r91969 Starodub (United States)'),
(79480, 'https://ror.org/059s97738', 'en', 1, 'https://ror.org/059s97738 Skyline University Nigeria'),
(79481, 'https://ror.org/059tf1p39', 'nl', 1, 'https://ror.org/059tf1p39 Domus Medica'),
(79482, 'https://ror.org/059v90v79', 'no_lang_code', 1, 'https://ror.org/059v90v79 PowerPhotonic (United States)'),
(79483, 'https://ror.org/059vy2q86', 'no_lang_code', 1, 'https://ror.org/059vy2q86 Nexgenia (United States)'),
(79484, 'https://ror.org/059w8f876', 'en', 1, 'https://ror.org/059w8f876 University of Kisubi'),
(79485, 'https://ror.org/059ytn208', 'no_lang_code', 1, 'https://ror.org/059ytn208 GenomeScan (Netherlands)'),
(79486, 'https://ror.org/059ze4t74', 'en', 1, 'https://ror.org/059ze4t74 German Data Forum Rat für Sozial- und Wirtschaftsdaten'),
(79487, 'https://ror.org/05a0mtz36', 'en', 1, 'https://ror.org/05a0mtz36 Renewable Energy Corporation of India'),
(79488, 'https://ror.org/05a2ass35', 'no_lang_code', 1, 'https://ror.org/05a2ass35 IMRIS (United States)'),
(79489, 'https://ror.org/05a2cfm07', 'en', 1, 'https://ror.org/05a2cfm07 Islamic Azad University, Damghan Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد دامغان'),
(79490, 'https://ror.org/05a4ggb77', 'no_lang_code', 1, 'https://ror.org/05a4ggb77 Regionalverkehr Kƶln (Germany)'),
(79491, 'https://ror.org/05a5x4q14', 'no_lang_code', 1, 'https://ror.org/05a5x4q14 BioAtla (United States)'),
(79492, 'https://ror.org/05a7f9k79', 'en', 1, 'https://ror.org/05a7f9k79 Woldia University į‹ˆįˆį‹µį‹« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(79493, 'https://ror.org/05a8zr135', 'en', 1, 'https://ror.org/05a8zr135 Koto Cultural Community Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ę±Ÿę±åŒŗę–‡åŒ–ć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£č²”å›£'),
(79494, 'https://ror.org/05a960335', 'de', 1, 'https://ror.org/05a960335 Hessische Zentrale für Datenverarbeitung'),
(79495, 'https://ror.org/05aacdd70', 'es', 1, 'https://ror.org/05aacdd70 Hospital PiƱero'),
(79496, 'https://ror.org/05abbvq76', 'no_lang_code', 1, 'https://ror.org/05abbvq76 CD-adapco (United States)'),
(79497, 'https://ror.org/05abxfb94', 'no_lang_code', 1, 'https://ror.org/05abxfb94 Immunovative Therapies (Israel)'),
(79498, 'https://ror.org/05ac30595', 'no_lang_code', 1, 'https://ror.org/05ac30595 Urenco (Germany)'),
(79499, 'https://ror.org/05ac9kx40', 'en', 1, 'https://ror.org/05ac9kx40 National Center for Sustainable Transportation'),
(79500, 'https://ror.org/05afd6695', 'en', 1, 'https://ror.org/05afd6695 Maharaja Bir Bikram University মহারাজা বির ą¦¬ą¦æą¦•ą§ą¦°ą¦® ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(79501, 'https://ror.org/05ahnsa78', 'en', 1, 'https://ror.org/05ahnsa78 Institute of Political Science Instytut Nauki o Polityce'),
(79502, 'https://ror.org/05ak8xb62', 'es', 1, 'https://ror.org/05ak8xb62 Academia Nacional de Medicina Venezuela'),
(79503, 'https://ror.org/05akz4x40', 'no_lang_code', 1, 'https://ror.org/05akz4x40 Windpark Ellhƶft (Germany)'),
(79504, 'https://ror.org/05ama3a60', 'no_lang_code', 1, 'https://ror.org/05ama3a60 Perceptive Innovations (United States)'),
(79505, 'https://ror.org/05anb7a53', 'en', 1, 'https://ror.org/05anb7a53 Beijing Chaoyang Emergency Medical Center åŒ—äŗ¬ęœé˜³ę€„čÆŠęŠ¢ę•‘äø­åæƒ'),
(79506, 'https://ror.org/05apyxs13', 'no_lang_code', 1, 'https://ror.org/05apyxs13 Tobishi (Japan)'),
(79507, 'https://ror.org/05awecr05', 'no_lang_code', 1, 'https://ror.org/05awecr05 Institut für Angewandte Zellkultur (Germany)'),
(79508, 'https://ror.org/05ax1zq53', 'en', 1, 'https://ror.org/05ax1zq53 Kofi Annan International Peacekeeping Training Centre'),
(79509, 'https://ror.org/05b0h7m33', 'en', 1, 'https://ror.org/05b0h7m33 ABC for Health'),
(79510, 'https://ror.org/05b0xak35', 'no_lang_code', 1, 'https://ror.org/05b0xak35 NeuroEM Therapeutics (United States)'),
(79511, 'https://ror.org/05b2qtm61', 'en', 1, 'https://ror.org/05b2qtm61 Centre for Rural Education and Economic Development'),
(79512, 'https://ror.org/05b38ps04', 'de', 1, 'https://ror.org/05b38ps04 Landesinstitut für Lehrerbildung und Schulentwicklung'),
(79513, 'https://ror.org/05b3amq72', 'no_lang_code', 1, 'https://ror.org/05b3amq72 Acesion Pharma (Denmark)'),
(79514, 'https://ror.org/05b46br83', 'no_lang_code', 1, 'https://ror.org/05b46br83 Biokine (Israel)'),
(79515, 'https://ror.org/05b6nrx87', 'no_lang_code', 1, 'https://ror.org/05b6nrx87 CooperSurgical (United States)'),
(79516, 'https://ror.org/05b6t0e74', 'en', 1, 'https://ror.org/05b6t0e74 Hokkaido Prefectual Police åŒ—ęµ·é“č­¦åÆŸ'),
(79517, 'https://ror.org/05b75xp43', 'no_lang_code', 1, 'https://ror.org/05b75xp43 Institut für Geologie und Umwelt (Germany)'),
(79518, 'https://ror.org/05bb7at98', 'no_lang_code', 1, 'https://ror.org/05bb7at98 Techmart Industrial Limited (China) ē§‘ę±‡å·„äøšęœŗę¢°ęœ‰é™å…¬åø'),
(79519, 'https://ror.org/05bdyr549', 'no_lang_code', 1, 'https://ror.org/05bdyr549 VPDiagnostics (United States)'),
(79520, 'https://ror.org/05bh5xp98', 'no_lang_code', 1, 'https://ror.org/05bh5xp98 LimaCorporate (Italy)'),
(79521, 'https://ror.org/05bj13d25', 'no_lang_code', 1, 'https://ror.org/05bj13d25 Pfalzwerke (Germany)'),
(79522, 'https://ror.org/05bjr0894', 'no_lang_code', 1, 'https://ror.org/05bjr0894 Toyo Engineering (Japan) ę±ę“‹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(79523, 'https://ror.org/05bk8br84', 'es', 1, 'https://ror.org/05bk8br84 Para La Tierra'),
(79524, 'https://ror.org/05bmwgs04', 'en', 1, 'https://ror.org/05bmwgs04 Sabzevar University of New Technology دانؓگاه ŁŁ†Ų§ŁˆŲ±ŪŒ Ł‡Ų§ŪŒ Ł†ŁˆŪŒŁ† سبزوار'),
(79525, 'https://ror.org/05bnan144', 'de', 1, 'https://ror.org/05bnan144 Institut für Berufliche Aus- und Fortbildung'),
(79526, 'https://ror.org/05bqwrx65', 'no_lang_code', 1, 'https://ror.org/05bqwrx65 IZI Medical (United States)'),
(79527, 'https://ror.org/05br03w78', 'no_lang_code', 1, 'https://ror.org/05br03w78 Pflüger (Germany)'),
(79528, 'https://ror.org/05bv91d86', 'en', 1, 'https://ror.org/05bv91d86 Mannheim Centre for European Social Research Mannheimer Zentrum für Europäische Sozialforschung'),
(79529, 'https://ror.org/05bvyxw62', 'es', 1, 'https://ror.org/05bvyxw62 Hospital Universitario de Sincelejo'),
(79530, 'https://ror.org/05bvzth27', 'en', 1, 'https://ror.org/05bvzth27 Institut für Europäisches Medienrecht Institute of European Media Law'),
(79531, 'https://ror.org/05bykpb13', 'en', 1, 'https://ror.org/05bykpb13 Center for Biomolecular Nanotechnologies Centro per le Nanotecnologie Biomolecolari'),
(79532, 'https://ror.org/05c1tqh91', 'en', 1, 'https://ror.org/05c1tqh91 Museum am Rothenbaum Museum für Völkerkunde Hamburg'),
(79533, 'https://ror.org/05c2w3k86', 'en', 1, 'https://ror.org/05c2w3k86 Carolina Small Business Development Fund'),
(79534, 'https://ror.org/05c30e379', 'no_lang_code', 1, 'https://ror.org/05c30e379 Siuvo (China)'),
(79535, 'https://ror.org/05c4d7454', 'en', 1, 'https://ror.org/05c4d7454 Spice and Beverage Research Institute 香料鄮料研究所'),
(79536, 'https://ror.org/05c4q7289', 'en', 1, 'https://ror.org/05c4q7289 WHO European Office for the Prevention and Control of NCD'),
(79537, 'https://ror.org/05c66m157', 'no_lang_code', 1, 'https://ror.org/05c66m157 Roche (Bolivia)'),
(79538, 'https://ror.org/05cb4rb43', 'en', 1, 'https://ror.org/05cb4rb43 Morgridge Institute for Research'),
(79539, 'https://ror.org/05ccdc018', 'en', 1, 'https://ror.org/05ccdc018 Asociación Colombiana de Cirugía Colombian Association of Surgery'),
(79540, 'https://ror.org/05ccm7722', 'en', 1, 'https://ror.org/05ccm7722 The TAU Institute'),
(79541, 'https://ror.org/05ccmn542', 'en', 1, 'https://ror.org/05ccmn542 Concrete Reinforcing Steel Institute'),
(79542, 'https://ror.org/05ccx1c95', 'da', 1, 'https://ror.org/05ccx1c95 LVK KvƦgdyrlƦgerne'),
(79543, 'https://ror.org/05cet1628', 'de', 1, 'https://ror.org/05cet1628 Wallraf-Richartz-Museum & Fondation Corboud, Wallraf–Richartz-Museum'),
(79544, 'https://ror.org/05ceyw104', 'en', 1, 'https://ror.org/05ceyw104 Gifu Prefectural Gifu Kita Senior High School å²é˜œēœŒå²é˜œåŒ—é«˜'),
(79545, 'https://ror.org/05cf0ez61', 'en', 1, 'https://ror.org/05cf0ez61 Institute of Petroleum Studies Kampala'),
(79546, 'https://ror.org/05cff1n73', 'es', 1, 'https://ror.org/05cff1n73 Escuela Superior Tecnológica de Artes Débora Arango'),
(79547, 'https://ror.org/05cgahx56', 'en', 1, 'https://ror.org/05cgahx56 Colombian Army Military Academy "General José María Córdova" Escuela Militar de Cadetes General José María Córdova'),
(79548, 'https://ror.org/05cgh0738', 'no_lang_code', 1, 'https://ror.org/05cgh0738 Biocensus (United Kingdom)'),
(79549, 'https://ror.org/05ckan018', 'en', 1, 'https://ror.org/05ckan018 Gas Turbine Research Establishment'),
(79550, 'https://ror.org/05ckxea07', 'no_lang_code', 1, 'https://ror.org/05ckxea07 Xi''an Airborne Electromagnetic Technology (China) č„æå®‰ēˆ±é‚¦ē”µē£ęŠ€ęœÆęœ‰é™č“£ä»»å…¬åø'),
(79551, 'https://ror.org/05cmw3824', 'fr', 1, 'https://ror.org/05cmw3824 HƓpital San Salvadour'),
(79552, 'https://ror.org/05cpg6260', 'no_lang_code', 1, 'https://ror.org/05cpg6260 Roche (Lebanon)'),
(79553, 'https://ror.org/05cpqsp49', 'en', 1, 'https://ror.org/05cpqsp49 Miami Transplant Institute'),
(79554, 'https://ror.org/05cqp3018', 'en', 1, 'https://ror.org/05cqp3018 Hospital Besar Sengkang Sengkang General Hospital ą®šąÆ†ą®™ąÆą®•ą®¾ą®™ąÆ பொது ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ ē››ęøÆē»¼åˆåŒ»é™¢'),
(79555, 'https://ror.org/05crg2f28', 'en', 1, 'https://ror.org/05crg2f28 Niigata Prefectural Library ę–°ę½ŸēœŒē«‹å›³ę›øé¤Ø');
INSERT INTO `rors` VALUES
(79556, 'https://ror.org/05crx6z12', 'en', 1, 'https://ror.org/05crx6z12 National Public Health Organization Ī•ĪøĪ½Ī¹ĪŗĻŒĻ‚ ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ Ī”Ī·Ī¼ĻŒĻƒĪ¹Ī±Ļ‚ ΄γείας'),
(79557, 'https://ror.org/05cs0pa90', 'no_lang_code', 1, 'https://ror.org/05cs0pa90 Alfred E. Tiefenbacher (Germany)'),
(79558, 'https://ror.org/05csx4q88', 'no_lang_code', 1, 'https://ror.org/05csx4q88 Professional Analytical and Consulting Services (United States)'),
(79559, 'https://ror.org/05ctcx759', 'no_lang_code', 1, 'https://ror.org/05ctcx759 Dong-A Pharmaceutical (South Korea)'),
(79560, 'https://ror.org/05ctd7x03', 'en', 1, 'https://ror.org/05ctd7x03 Institut für Angewandte Ɩkosystemforschung Institute for Applied Ecosystem Research'),
(79561, 'https://ror.org/05cteqc05', 'en', 1, 'https://ror.org/05cteqc05 Somali International University'),
(79562, 'https://ror.org/05cx80085', 'no_lang_code', 1, 'https://ror.org/05cx80085 Plasmatreat (Germany)'),
(79563, 'https://ror.org/05czpzc54', 'no_lang_code', 1, 'https://ror.org/05czpzc54 Recursion (United States)'),
(79564, 'https://ror.org/05czqyh70', 'no_lang_code', 1, 'https://ror.org/05czqyh70 Electron (Ukraine) Електрон'),
(79565, 'https://ror.org/05d09jf58', 'no_lang_code', 1, 'https://ror.org/05d09jf58 Fonar (United States)'),
(79566, 'https://ror.org/05d0zs426', 'no_lang_code', 1, 'https://ror.org/05d0zs426 Proteostasis Therapeutics (United States)'),
(79567, 'https://ror.org/05d1vf827', 'de', 1, 'https://ror.org/05d1vf827 Klinikum Passau'),
(79568, 'https://ror.org/05d236h53', 'no_lang_code', 1, 'https://ror.org/05d236h53 KRONOS (United States)'),
(79569, 'https://ror.org/05d2a8p70', 'en', 1, 'https://ror.org/05d2a8p70 Golden West College'),
(79570, 'https://ror.org/05d3b2x32', 'no_lang_code', 1, 'https://ror.org/05d3b2x32 GemerskĆ” NerudnĆ” SpoločnosÅ„ (Slovakia)'),
(79571, 'https://ror.org/05d3bn235', 'no_lang_code', 1, 'https://ror.org/05d3bn235 Theratechnologies (Canada)'),
(79572, 'https://ror.org/05d5xcc98', 'no_lang_code', 1, 'https://ror.org/05d5xcc98 Hannoversche Informationstechnologien (Germany)'),
(79573, 'https://ror.org/05d620q19', 'no_lang_code', 1, 'https://ror.org/05d620q19 Wave Up (Italy)'),
(79574, 'https://ror.org/05d8r3q58', 'en', 1, 'https://ror.org/05d8r3q58 Foundation for Neglected Disease Research ą²Øą²æą²°ą³ą²²ą²•ą³ą²·ą³ą²Æ ರೋಗ ą²°ą²æą²øą²°ą³ą²šą³ ą²«ą³Œą²‚ą²”ą³†ą³•ą²¶ą²Øą³'),
(79575, 'https://ror.org/05d9dsr70', 'en', 1, 'https://ror.org/05d9dsr70 Impact'),
(79576, 'https://ror.org/05dctta12', 'no_lang_code', 1, 'https://ror.org/05dctta12 Eurofarma (Brazil)'),
(79577, 'https://ror.org/05ddbzg58', 'no_lang_code', 1, 'https://ror.org/05ddbzg58 Sarfez (United States)'),
(79578, 'https://ror.org/05def2162', 'no_lang_code', 1, 'https://ror.org/05def2162 Ya-Man (Japan)'),
(79579, 'https://ror.org/05df1km16', 'no_lang_code', 1, 'https://ror.org/05df1km16 Qynergy (United States)'),
(79580, 'https://ror.org/05df8jb72', 'no_lang_code', 1, 'https://ror.org/05df8jb72 Atlas Antibodies (Sweden)'),
(79581, 'https://ror.org/05dfdca35', 'no_lang_code', 1, 'https://ror.org/05dfdca35 Private Machines (United States)'),
(79582, 'https://ror.org/05dfe8p27', 'en', 1, 'https://ror.org/05dfe8p27 Hangzhou Children''s Hospital ę­å·žåø‚å„æē«„åŒ»é™¢'),
(79583, 'https://ror.org/05dgqjt76', 'no_lang_code', 1, 'https://ror.org/05dgqjt76 Mitokinin (United States)'),
(79584, 'https://ror.org/05dj22k02', 'en', 1, 'https://ror.org/05dj22k02 Lukenya University'),
(79585, 'https://ror.org/05ds3hh45', 'no_lang_code', 1, 'https://ror.org/05ds3hh45 Gototags (United States)'),
(79586, 'https://ror.org/05dtatp26', 'de', 1, 'https://ror.org/05dtatp26 Bundesverband Farbe Gestaltung Bautenschutz'),
(79587, 'https://ror.org/05dte6685', 'en', 1, 'https://ror.org/05dte6685 Department of Biological Sciences ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ Š±Ń–ŃŠ»Š°Š³Ń–Ń‡Š½Ń‹Ń… навук'),
(79588, 'https://ror.org/05dxjde67', 'en', 1, 'https://ror.org/05dxjde67 Memorial Medical Center Foundation'),
(79589, 'https://ror.org/05dy5ab02', 'it', 1, 'https://ror.org/05dy5ab02 ASST Fatebenefratelli Sacco'),
(79590, 'https://ror.org/05dy80606', 'no_lang_code', 1, 'https://ror.org/05dy80606 Zacros (Japan)'),
(79591, 'https://ror.org/05dzdtp04', 'no_lang_code', 1, 'https://ror.org/05dzdtp04 Theragenics Corporation (United States)'),
(79592, 'https://ror.org/05e0gpk62', 'no_lang_code', 1, 'https://ror.org/05e0gpk62 Hottinger Baldwin Messtechnik (United Kingdom)'),
(79593, 'https://ror.org/05e1qh004', 'no_lang_code', 1, 'https://ror.org/05e1qh004 3V Sigma (Italy)'),
(79594, 'https://ror.org/05e30np90', 'en', 1, 'https://ror.org/05e30np90 Institut für Gerontologische Forschung Institute for Gerontological Research'),
(79595, 'https://ror.org/05e34z294', 'en', 1, 'https://ror.org/05e34z294 CTOR Press'),
(79596, 'https://ror.org/05e423n96', 'no_lang_code', 1, 'https://ror.org/05e423n96 naviHealth (United States)'),
(79597, 'https://ror.org/05e58kh79', 'en', 1, 'https://ror.org/05e58kh79 Nebraska Public Health Laboratory'),
(79598, 'https://ror.org/05e5sxk45', 'no_lang_code', 1, 'https://ror.org/05e5sxk45 ESWE Transport Company (Germany) ESWE Verkehrsgesellschaft'),
(79599, 'https://ror.org/05e6hyp29', 'no_lang_code', 1, 'https://ror.org/05e6hyp29 Linak (Denmark)'),
(79600, 'https://ror.org/05e7mmt60', 'no_lang_code', 1, 'https://ror.org/05e7mmt60 Recludix Pharma (United States)'),
(79601, 'https://ror.org/05e823q15', 'no_lang_code', 1, 'https://ror.org/05e823q15 Capsum (France)'),
(79602, 'https://ror.org/05e89f902', 'no_lang_code', 1, 'https://ror.org/05e89f902 R3Logic (United States)'),
(79603, 'https://ror.org/05e9vrw02', 'en', 1, 'https://ror.org/05e9vrw02 Caritas Cyprus'),
(79604, 'https://ror.org/05eb58w69', 'en', 1, 'https://ror.org/05eb58w69 Ningxia Center for Diseases Prevention and Control å®å¤å›žę—č‡Ŗę²»åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(79605, 'https://ror.org/05ed09684', 'de', 1, 'https://ror.org/05ed09684 Zentrallaboratorium Deutscher Apotheker'),
(79606, 'https://ror.org/05edmmt93', 'de', 1, 'https://ror.org/05edmmt93 Bayerisches Staatsinstitut für Hochschulforschung und Hochschulplanung'),
(79607, 'https://ror.org/05edt1q81', 'en', 1, 'https://ror.org/05edt1q81 Green Communities Canada'),
(79608, 'https://ror.org/05edycz02', 'no_lang_code', 1, 'https://ror.org/05edycz02 Tec-Masters (United States)'),
(79609, 'https://ror.org/05ee7tr34', 'en', 1, 'https://ror.org/05ee7tr34 Chillicothe VA Medical Center'),
(79610, 'https://ror.org/05eexsd91', 'no_lang_code', 1, 'https://ror.org/05eexsd91 Volition (Belgium)'),
(79611, 'https://ror.org/05efkgw62', 'no_lang_code', 1, 'https://ror.org/05efkgw62 Innoviva (United States)'),
(79612, 'https://ror.org/05ek0ze18', 'en', 1, 'https://ror.org/05ek0ze18 Shanghai Institute of Computing Technology äøŠęµ·åø‚č®”ē®—ęŠ€ęœÆē ”ē©¶ę‰€'),
(79613, 'https://ror.org/05ekw4q84', 'no_lang_code', 1, 'https://ror.org/05ekw4q84 Volition (Singapore)'),
(79614, 'https://ror.org/05ekwg650', 'no_lang_code', 1, 'https://ror.org/05ekwg650 Rani Therapeutics (United States)'),
(79615, 'https://ror.org/05ekwy955', 'de', 1, 'https://ror.org/05ekwy955 Betriebswirtschaftliches Institut für Empirische Gründungs- und Organisationsforschung'),
(79616, 'https://ror.org/05eq3g745', 'no_lang_code', 1, 'https://ror.org/05eq3g745 Balaji Utthan Sansthan ą¤¬ą¤¾ą¤²ą¤¾ą¤œą„€ ą¤‰ą¤¤ą„ą¤„ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(79617, 'https://ror.org/05eqhkk72', 'en', 1, 'https://ror.org/05eqhkk72 Deutscher Volkshochschul-Verband German Adult Education Association'),
(79618, 'https://ror.org/05eqtsr60', 'no_lang_code', 1, 'https://ror.org/05eqtsr60 Energy Fuels (United States)'),
(79619, 'https://ror.org/05err8h54', 'en', 1, 'https://ror.org/05err8h54 Musoon Women''s Clinic ęœØē”Ÿå©¦ē”¢ē§‘čØŗę‰€'),
(79620, 'https://ror.org/05ervg403', 'no_lang_code', 1, 'https://ror.org/05ervg403 Bardy Diagnostics (United States)'),
(79621, 'https://ror.org/05ervsk64', 'en', 1, 'https://ror.org/05ervsk64 Supershine University'),
(79622, 'https://ror.org/05etzat70', 'no_lang_code', 1, 'https://ror.org/05etzat70 AYR (United Kingdom)'),
(79623, 'https://ror.org/05exhz950', 'no_lang_code', 1, 'https://ror.org/05exhz950 Akoya Biosciences (United States)'),
(79624, 'https://ror.org/05f0snp31', 'no_lang_code', 1, 'https://ror.org/05f0snp31 Armscor (South Africa)'),
(79625, 'https://ror.org/05f14j834', 'no_lang_code', 1, 'https://ror.org/05f14j834 R.M. Associates (United States)'),
(79626, 'https://ror.org/05f1h4751', 'es', 1, 'https://ror.org/05f1h4751 Escuela Internacional de Negocios y Desarrollo Empresarial de Colombia'),
(79627, 'https://ror.org/05f3ypk72', 'no_lang_code', 1, 'https://ror.org/05f3ypk72 Nyxoah (Belgium)'),
(79628, 'https://ror.org/05f60e681', 'en', 1, 'https://ror.org/05f60e681 Society For Environment And Development ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤°ą¤£ और विकास ą¤•ą„‡ ą¤²ą¤æą¤ ą¤øą„‹ą¤øą¤¾ą¤Æą¤Ÿą„€'),
(79629, 'https://ror.org/05f7ceg04', 'en', 1, 'https://ror.org/05f7ceg04 Hamburg Commercial Bank'),
(79630, 'https://ror.org/05f8zq626', 'no_lang_code', 1, 'https://ror.org/05f8zq626 Lumtec (Taiwan)'),
(79631, 'https://ror.org/05fcgnx79', 'no_lang_code', 1, 'https://ror.org/05fcgnx79 Juul (United States)'),
(79632, 'https://ror.org/05fdwfk56', 'no_lang_code', 1, 'https://ror.org/05fdwfk56 CK Hutchison (China) é•·ę±Ÿå’ŒčØ˜åÆ¦ę„­ęœ‰é™å…¬åø'),
(79633, 'https://ror.org/05fe0wm97', 'en', 1, 'https://ror.org/05fe0wm97 Rehabilitation College Shimane ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚«ćƒ¬ćƒƒć‚øå³¶ę ¹'),
(79634, 'https://ror.org/05fe9d430', 'no_lang_code', 1, 'https://ror.org/05fe9d430 Z-Terra (United States)'),
(79635, 'https://ror.org/05fenky51', 'no_lang_code', 1, 'https://ror.org/05fenky51 Interface (United Kingdom)'),
(79636, 'https://ror.org/05fh0et33', 'es', 1, 'https://ror.org/05fh0et33 Tierra Verde Naturaleza y Cultura Tierra Verde Nature and Culture'),
(79637, 'https://ror.org/05fj56d84', 'no_lang_code', 1, 'https://ror.org/05fj56d84 Lorem Vascular (Singapore)'),
(79638, 'https://ror.org/05fj65g09', 'no_lang_code', 1, 'https://ror.org/05fj65g09 Incept (United States)'),
(79639, 'https://ror.org/05fk5tr28', 'en', 1, 'https://ror.org/05fk5tr28 Federal Reserve'),
(79640, 'https://ror.org/05fn2nj53', 'no_lang_code', 1, 'https://ror.org/05fn2nj53 Xilio Therapeutics (United States)'),
(79641, 'https://ror.org/05fn4fm08', 'no_lang_code', 1, 'https://ror.org/05fn4fm08 Optitek (United States)'),
(79642, 'https://ror.org/05fqc1f82', 'no_lang_code', 1, 'https://ror.org/05fqc1f82 Vyaire Medical (United States)'),
(79643, 'https://ror.org/05frf1z87', 'de', 1, 'https://ror.org/05frf1z87 Katalyse Institut'),
(79644, 'https://ror.org/05fttpt98', 'no_lang_code', 1, 'https://ror.org/05fttpt98 The Eppley Laboratory (United States)'),
(79645, 'https://ror.org/05g5rgx31', 'no_lang_code', 1, 'https://ror.org/05g5rgx31 Itasca Consultants (United States)'),
(79646, 'https://ror.org/05g5sdw63', 'no_lang_code', 1, 'https://ror.org/05g5sdw63 Institut für Molekularbiologie und Analytik (Germany)'),
(79647, 'https://ror.org/05g8qng11', 'no_lang_code', 1, 'https://ror.org/05g8qng11 Implantica (Switzerland)'),
(79648, 'https://ror.org/05g916f28', 'no_lang_code', 1, 'https://ror.org/05g916f28 Translational Sciences (United States)'),
(79649, 'https://ror.org/05g920a69', 'en', 1, 'https://ror.org/05g920a69 Hachinohe Kodai2 High School å…«ęˆøå·„ę„­å¤§å­¦ē¬¬äŗŒé«˜ē­‰å­¦ę ”'),
(79650, 'https://ror.org/05gaccq28', 'no_lang_code', 1, 'https://ror.org/05gaccq28 Solar Roadways (United States)'),
(79651, 'https://ror.org/05gcs8229', 'en', 1, 'https://ror.org/05gcs8229 Microstructure and Pores'),
(79652, 'https://ror.org/05gde4s46', 'no_lang_code', 1, 'https://ror.org/05gde4s46 Stadtwerke Offenbach (Germany)'),
(79653, 'https://ror.org/05gg5zh68', 'no_lang_code', 1, 'https://ror.org/05gg5zh68 LightTrans (Germany)'),
(79654, 'https://ror.org/05gjrga14', 'no_lang_code', 1, 'https://ror.org/05gjrga14 SACHEM (United States)'),
(79655, 'https://ror.org/05gkrwe68', 'no_lang_code', 1, 'https://ror.org/05gkrwe68 Iasis Molecular Sciences (United States)'),
(79656, 'https://ror.org/05gpas306', 'en', 1, 'https://ror.org/05gpas306 Hangzhou Medical College ę­å·žåŒ»å­¦é™¢'),
(79657, 'https://ror.org/05gre8525', 'no_lang_code', 1, 'https://ror.org/05gre8525 Solutia (Czechia)'),
(79658, 'https://ror.org/05gttbr75', 'de', 1, 'https://ror.org/05gttbr75 Institut für Hochschulforschung'),
(79659, 'https://ror.org/05gxqqz35', 'en', 1, 'https://ror.org/05gxqqz35 Freedom From Diabetes'),
(79660, 'https://ror.org/05gz1cs28', 'en', 1, 'https://ror.org/05gz1cs28 The Talent Development Education Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ę‰čƒ½é–‹ē™ŗę•™č‚²ē ”ē©¶č²”å›£'),
(79661, 'https://ror.org/05h0yx811', 'no_lang_code', 1, 'https://ror.org/05h0yx811 Forte (United States)'),
(79662, 'https://ror.org/05h2r8y34', 'no_lang_code', 1, 'https://ror.org/05h2r8y34 TCG Crest'),
(79663, 'https://ror.org/05h4bm507', 'no_lang_code', 1, 'https://ror.org/05h4bm507 STgenetics (United States)'),
(79664, 'https://ror.org/05h4tg110', 'en', 1, 'https://ror.org/05h4tg110 Providence St. Mary Medical Center'),
(79665, 'https://ror.org/05h5vav12', 'no_lang_code', 1, 'https://ror.org/05h5vav12 Robust Analysis (United States)'),
(79666, 'https://ror.org/05h86nk22', 'no_lang_code', 1, 'https://ror.org/05h86nk22 Zhejiang Medicine (China)'),
(79667, 'https://ror.org/05h990w27', 'de', 1, 'https://ror.org/05h990w27 Forschungsinstitut Geragogik'),
(79668, 'https://ror.org/05h9m3b45', 'no_lang_code', 1, 'https://ror.org/05h9m3b45 Roche (Turkey)'),
(79669, 'https://ror.org/05hbjh330', 'no_lang_code', 1, 'https://ror.org/05hbjh330 Marui Galvanizing (Japan)'),
(79670, 'https://ror.org/05hdbs804', 'en', 1, 'https://ror.org/05hdbs804 Australian National Fish Collection'),
(79671, 'https://ror.org/05he2ce30', 'en', 1, 'https://ror.org/05he2ce30 Social Awareness Through Human Involvement'),
(79672, 'https://ror.org/05hg5tz03', 'no_lang_code', 1, 'https://ror.org/05hg5tz03 PreCyte (United States)'),
(79673, 'https://ror.org/05hhh4g76', 'en', 1, 'https://ror.org/05hhh4g76 The Crop Science Society of China äø­å›½ä½œē‰©å­¦ä¼š'),
(79674, 'https://ror.org/05hj93b82', 'no_lang_code', 1, 'https://ror.org/05hj93b82 HOBAS (Germany)'),
(79675, 'https://ror.org/05hjgq553', 'en', 1, 'https://ror.org/05hjgq553 Children’s Future International'),
(79676, 'https://ror.org/05hkycn11', 'en', 1, 'https://ror.org/05hkycn11 Deutsche Meeresmuseum German Oceanographic Museum'),
(79677, 'https://ror.org/05hmbdg55', 'no_lang_code', 1, 'https://ror.org/05hmbdg55 TerraMetrics (United States)'),
(79678, 'https://ror.org/05hpj1j78', 'en', 1, 'https://ror.org/05hpj1j78 Egyptian Engineers Syndicate نقابة Ų§Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(79679, 'https://ror.org/05hrpz398', 'no_lang_code', 1, 'https://ror.org/05hrpz398 Syntheon (United States)'),
(79680, 'https://ror.org/05hv95t40', 'no_lang_code', 1, 'https://ror.org/05hv95t40 Tetra Research (United States)'),
(79681, 'https://ror.org/05hwakx34', 'en', 1, 'https://ror.org/05hwakx34 Chongqing Academy of Agricultural Sciences é‡åŗ†åø‚å†œäøšē§‘å­¦é™¢'),
(79682, 'https://ror.org/05j4aq945', 'en', 1, 'https://ror.org/05j4aq945 Peermade Development Society'),
(79683, 'https://ror.org/05j4b8r17', 'pl', 1, 'https://ror.org/05j4b8r17 Wojewódzki Szpital Specjalistyczny Nr 2'),
(79684, 'https://ror.org/05j4fc609', 'no_lang_code', 1, 'https://ror.org/05j4fc609 Anges (Japan)'),
(79685, 'https://ror.org/05j5k1t23', 'en', 1, 'https://ror.org/05j5k1t23 Coleridge Initiative'),
(79686, 'https://ror.org/05j855983', 'no_lang_code', 1, 'https://ror.org/05j855983 CEM (United States)'),
(79687, 'https://ror.org/05j97vt75', 'no_lang_code', 1, 'https://ror.org/05j97vt75 Nimbis Services (United States)'),
(79688, 'https://ror.org/05j9gp921', 'en', 1, 'https://ror.org/05j9gp921 China Science Center of International Eurasian Academy of Sciences å›½é™…ę¬§äŗšē§‘å­¦é™¢äø­å›½ē§‘å­¦äø­åæƒ'),
(79689, 'https://ror.org/05ja07v76', 'no_lang_code', 1, 'https://ror.org/05ja07v76 Kinex Bearings (Slovakia)'),
(79690, 'https://ror.org/05jckv214', 'no_lang_code', 1, 'https://ror.org/05jckv214 Spectra Group Limited (United States)'),
(79691, 'https://ror.org/05jcvbb33', 'no_lang_code', 1, 'https://ror.org/05jcvbb33 Kuantum Papers (India)'),
(79692, 'https://ror.org/05jg70019', 'no_lang_code', 1, 'https://ror.org/05jg70019 3D Systems (United Kingdom)'),
(79693, 'https://ror.org/05jj4yb28', 'no_lang_code', 1, 'https://ror.org/05jj4yb28 Institut für Bauwerkserhaltung und Sanierung (Germany)'),
(79694, 'https://ror.org/05jka5961', 'es', 1, 'https://ror.org/05jka5961 Instituto Tecnológico del Salmón Salmon Technology Institute'),
(79695, 'https://ror.org/05jkqfy36', 'no_lang_code', 1, 'https://ror.org/05jkqfy36 Nevada Composites (United States)'),
(79696, 'https://ror.org/05jkvk840', 'en', 1, 'https://ror.org/05jkvk840 London Internet Exchange'),
(79697, 'https://ror.org/05jnx3123', 'no_lang_code', 1, 'https://ror.org/05jnx3123 Dipharma (Italy)'),
(79698, 'https://ror.org/05jtgpc57', 'en', 1, 'https://ror.org/05jtgpc57 Joint Center for Artificial Photosynthesis'),
(79699, 'https://ror.org/05jvx3v75', 'no_lang_code', 1, 'https://ror.org/05jvx3v75 Rebound (United States)'),
(79700, 'https://ror.org/05jwyv945', 'no_lang_code', 1, 'https://ror.org/05jwyv945 Biocrine (Sweden)'),
(79701, 'https://ror.org/05jxaw651', 'en', 1, 'https://ror.org/05jxaw651 Marine Ecology and Telemetry Research'),
(79702, 'https://ror.org/05k0v5b40', 'no_lang_code', 1, 'https://ror.org/05k0v5b40 Nanzhong Zhangzhongjing Hospital å—é˜³å¼ ä»²ę™ÆåŒ»é™¢'),
(79703, 'https://ror.org/05k0x2619', 'en', 1, 'https://ror.org/05k0x2619 Max Planck-Bristol Centre for Minimal Biology'),
(79704, 'https://ror.org/05k45wk36', 'en', 1, 'https://ror.org/05k45wk36 Azerbaijan Medical Association Azərbaycan Tibb Assosiasiyası'),
(79705, 'https://ror.org/05k879m03', 'no_lang_code', 1, 'https://ror.org/05k879m03 Nurix (United States)'),
(79706, 'https://ror.org/05kbysy14', 'no_lang_code', 1, 'https://ror.org/05kbysy14 SlovenskƩ ElektrƔrne (Slovakia)'),
(79707, 'https://ror.org/05kdvbv21', 'no_lang_code', 1, 'https://ror.org/05kdvbv21 Mimedx (United States)'),
(79708, 'https://ror.org/05kg68171', 'no_lang_code', 1, 'https://ror.org/05kg68171 Vascor (United States)'),
(79709, 'https://ror.org/05kg6bp11', 'en', 1, 'https://ror.org/05kg6bp11 Allen Institute for Cell Science'),
(79710, 'https://ror.org/05kh76837', 'no_lang_code', 1, 'https://ror.org/05kh76837 Northern Gas Networks (United Kingdom)'),
(79711, 'https://ror.org/05kjn8d41', 'en', 1, 'https://ror.org/05kjn8d41 The Fourth People''s Hospital of Ningxia Hui Autonomous Region å®å¤å›žę—č‡Ŗę²»åŒŗē¬¬å››äŗŗę°‘åŒ»é™¢'),
(79712, 'https://ror.org/05kjsn706', 'sk', 1, 'https://ror.org/05kjsn706 Nemocnica Malacky'),
(79713, 'https://ror.org/05kkb8h54', 'no_lang_code', 1, 'https://ror.org/05kkb8h54 Qusemde (United States)'),
(79714, 'https://ror.org/05kmgyb17', 'no_lang_code', 1, 'https://ror.org/05kmgyb17 Active Fiber Systems (Germany)'),
(79715, 'https://ror.org/05knvbx59', 'no_lang_code', 1, 'https://ror.org/05knvbx59 Nkmax (South Korea)'),
(79716, 'https://ror.org/05kq1zz28', 'en', 1, 'https://ror.org/05kq1zz28 Ningxia Academy of Social Sciences å®å¤ē¤¾ä¼šē§‘å­¦é™¢'),
(79717, 'https://ror.org/05kq83y33', 'no_lang_code', 1, 'https://ror.org/05kq83y33 Aequor (United States)'),
(79718, 'https://ror.org/05ks2fq79', 'en', 1, 'https://ror.org/05ks2fq79 Federal Reserve Bank of Dallas'),
(79719, 'https://ror.org/05kvda021', 'no_lang_code', 1, 'https://ror.org/05kvda021 PV Crystalox Solar (Germany)'),
(79720, 'https://ror.org/05kwyy930', 'en', 1, 'https://ror.org/05kwyy930 The Hong Kong Council of Social Service é¦™ęøÆē¤¾ęœƒęœå‹™čÆęœƒ'),
(79721, 'https://ror.org/05kyjqm05', 'no_lang_code', 1, 'https://ror.org/05kyjqm05 Cardio Flow (United States)'),
(79722, 'https://ror.org/05m1hk967', 'no_lang_code', 1, 'https://ror.org/05m1hk967 Optical Air Data Systems (United States)'),
(79723, 'https://ror.org/05m43xv28', 'no_lang_code', 1, 'https://ror.org/05m43xv28 Halkey-Roberts (United States)'),
(79724, 'https://ror.org/05m6hq950', 'no_lang_code', 1, 'https://ror.org/05m6hq950 Atrion Medical (United States)'),
(79725, 'https://ror.org/05m7fas76', 'en', 1, 'https://ror.org/05m7fas76 The First People''s Hospital of Xiaoshan District, Hangzhou ę­å·žåø‚č§å±±åŒŗē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(79726, 'https://ror.org/05m87nk97', 'de', 1, 'https://ror.org/05m87nk97 Stiftung SozialpƤdagogisches Institut'),
(79727, 'https://ror.org/05m9rb257', 'no_lang_code', 1, 'https://ror.org/05m9rb257 GEWOS (Germany)'),
(79728, 'https://ror.org/05magwg24', 'id', 1, 'https://ror.org/05magwg24 Simetri Foundation Yayasan Simetri'),
(79729, 'https://ror.org/05mby3840', 'no_lang_code', 1, 'https://ror.org/05mby3840 Technetix (United Kingdom)'),
(79730, 'https://ror.org/05mg74j30', 'it', 1, 'https://ror.org/05mg74j30 Fondazione Piemontese per la Ricerca sul Cancro Onlus'),
(79731, 'https://ror.org/05mh1nj06', 'es', 1, 'https://ror.org/05mh1nj06 Hospital de Emergencias Jose Casimiro Ulloa'),
(79732, 'https://ror.org/05mj78g51', 'no_lang_code', 1, 'https://ror.org/05mj78g51 Institut für Markt- und Werbeforschung (Germany)'),
(79733, 'https://ror.org/05mjt9j72', 'no_lang_code', 1, 'https://ror.org/05mjt9j72 RDMChem (United States)'),
(79734, 'https://ror.org/05mk27574', 'no_lang_code', 1, 'https://ror.org/05mk27574 Adimab (United States)'),
(79735, 'https://ror.org/05mkjwz44', 'no_lang_code', 1, 'https://ror.org/05mkjwz44 Windmill (United States)'),
(79736, 'https://ror.org/05mkmy494', 'no_lang_code', 1, 'https://ror.org/05mkmy494 Pansophia'),
(79737, 'https://ror.org/05mks4240', 'en', 1, 'https://ror.org/05mks4240 Institute of Forest Ecology, Environment and Protection äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ę£®ęž—ē”Ÿę€ēŽÆå¢ƒäøŽäæęŠ¤ē ”ē©¶ę‰€'),
(79738, 'https://ror.org/05mm3em25', 'no_lang_code', 1, 'https://ror.org/05mm3em25 Kunshan SW laser Technology (China)'),
(79739, 'https://ror.org/05mm6v485', 'no_lang_code', 1, 'https://ror.org/05mm6v485 Silicon Micro Display (United States)'),
(79740, 'https://ror.org/05mmb8j87', 'de', 1, 'https://ror.org/05mmb8j87 Gollwitzer-Meier-Klinik'),
(79741, 'https://ror.org/05mmfy776', 'no_lang_code', 1, 'https://ror.org/05mmfy776 Tokushima Municipal Hospital 徳島市民病院'),
(79742, 'https://ror.org/05mp6hg50', 'en', 1, 'https://ror.org/05mp6hg50 Jinan Infectious Disease Hospital ęµŽå—åø‚ä¼ ęŸ“ē—…åŒ»é™¢'),
(79743, 'https://ror.org/05mp6sd67', 'no_lang_code', 1, 'https://ror.org/05mp6sd67 Aap Implantate (Germany)'),
(79744, 'https://ror.org/05mskc574', 'en', 1, 'https://ror.org/05mskc574 Ankara Hacı Bayram Veli University Ankara Hacı Bayram Veli Üniversitesi'),
(79745, 'https://ror.org/05mtdc048', 'no_lang_code', 1, 'https://ror.org/05mtdc048 Zata Pharmaceuticals (United States)'),
(79746, 'https://ror.org/05mxfdw94', 'no_lang_code', 1, 'https://ror.org/05mxfdw94 DHI (Slovakia)'),
(79747, 'https://ror.org/05mz52w65', 'no_lang_code', 1, 'https://ror.org/05mz52w65 Ethris (Germany)'),
(79748, 'https://ror.org/05n0dm186', 'en', 1, 'https://ror.org/05n0dm186 Jack C. Montgomery VA Medical Center'),
(79749, 'https://ror.org/05n0xah55', 'de', 1, 'https://ror.org/05n0xah55 Ev. Diakonissenkrankenhaus Leipzig'),
(79750, 'https://ror.org/05n3kfc14', 'de', 1, 'https://ror.org/05n3kfc14 Zentrum Digitalisierung.Bayern'),
(79751, 'https://ror.org/05n44hh60', 'no_lang_code', 1, 'https://ror.org/05n44hh60 Vetter (Germany) Vetter Pharma-Fertigung'),
(79752, 'https://ror.org/05n4bbw51', 'en', 1, 'https://ror.org/05n4bbw51 National Highway Institute'),
(79753, 'https://ror.org/05n4swm55', 'en', 1, 'https://ror.org/05n4swm55 Research Center for Humanities and Social Sciences, Academia Sinica äø­å¤®ē ”ē©¶é™¢äŗŗę–‡ē¤¾ęœƒē§‘å­øē ”ē©¶äø­åæƒ'),
(79754, 'https://ror.org/05n5mmr26', 'en', 1, 'https://ror.org/05n5mmr26 National Institute for Occupational Health and Poison Control äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒčŒäøšå«ē”ŸäøŽäø­ęÆ’ęŽ§åˆ¶ę‰€'),
(79755, 'https://ror.org/05n682z45', 'no_lang_code', 1, 'https://ror.org/05n682z45 Krishi Vigyan Kendra, Karda ą¤•ą„ƒą¤·ą„€ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° , करऔा'),
(79756, 'https://ror.org/05n6np283', 'no_lang_code', 1, 'https://ror.org/05n6np283 Gesellschaft für Konsumforschung GfK (Germany)'),
(79757, 'https://ror.org/05n85jt88', 'no_lang_code', 1, 'https://ror.org/05n85jt88 OrthoSensor (United States)'),
(79758, 'https://ror.org/05n8wtj80', 'no_lang_code', 1, 'https://ror.org/05n8wtj80 Mapi Pharma (Israel)'),
(79759, 'https://ror.org/05n9nsw73', 'no_lang_code', 1, 'https://ror.org/05n9nsw73 Helixmith (South Korea)'),
(79760, 'https://ror.org/05n9p4847', 'no_lang_code', 1, 'https://ror.org/05n9p4847 SK Capital (United States)'),
(79761, 'https://ror.org/05nbh3n52', 'no_lang_code', 1, 'https://ror.org/05nbh3n52 Teachley (United States)'),
(79762, 'https://ror.org/05ncq9g28', 'no_lang_code', 1, 'https://ror.org/05ncq9g28 Altair Engineering (United Kingdom)'),
(79763, 'https://ror.org/05ncx5x80', 'no_lang_code', 1, 'https://ror.org/05ncx5x80 PurpleSun (United States)'),
(79764, 'https://ror.org/05nd09v89', 'no_lang_code', 1, 'https://ror.org/05nd09v89 ON Semiconductor (Slovakia)'),
(79765, 'https://ror.org/05nf1fg74', 'no_lang_code', 1, 'https://ror.org/05nf1fg74 Phyto-Technologies (United States)'),
(79766, 'https://ror.org/05nfvzf52', 'no_lang_code', 1, 'https://ror.org/05nfvzf52 Isuzu Advanced Engineering Center (Japan) ć„ć™ć‚žäø­å¤®ē ”ē©¶ę‰€'),
(79767, 'https://ror.org/05nj3e153', 'no_lang_code', 1, 'https://ror.org/05nj3e153 Spirax Sarco (United Kingdom)'),
(79768, 'https://ror.org/05nkvqx24', 'no_lang_code', 1, 'https://ror.org/05nkvqx24 Industrie Borla (Italy)'),
(79769, 'https://ror.org/05nnz8429', 'no_lang_code', 1, 'https://ror.org/05nnz8429 Health & Life (Taiwan) åˆäø–ē”Ÿé†«ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(79770, 'https://ror.org/05npkqq45', 'de', 1, 'https://ror.org/05npkqq45 Bundesverband MuseumspƤdagogik'),
(79771, 'https://ror.org/05nq4je29', 'en', 1, 'https://ror.org/05nq4je29 British Athletics'),
(79772, 'https://ror.org/05nsj1513', 'no_lang_code', 1, 'https://ror.org/05nsj1513 Polyhedron Learning Media (United States)'),
(79773, 'https://ror.org/05nt5a548', 'no_lang_code', 1, 'https://ror.org/05nt5a548 Q-Cells (Germany)'),
(79774, 'https://ror.org/05nv8db86', 'no_lang_code', 1, 'https://ror.org/05nv8db86 RxFunction (United States)'),
(79775, 'https://ror.org/05nzfv767', 'no_lang_code', 1, 'https://ror.org/05nzfv767 Entangly (Sweden)'),
(79776, 'https://ror.org/05p0nrm77', 'no_lang_code', 1, 'https://ror.org/05p0nrm77 Shindengen Electric Manufacturing (Japan) ę–°é›»å…ƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(79777, 'https://ror.org/05p1n6x86', 'en', 1, 'https://ror.org/05p1n6x86 MRC London Institute of Medical Sciences'),
(79778, 'https://ror.org/05p26dc09', 'no_lang_code', 1, 'https://ror.org/05p26dc09 Emery Oleochemicals (Malaysia)'),
(79779, 'https://ror.org/05p3fde54', 'en', 1, 'https://ror.org/05p3fde54 Australian Tree Seed Centre'),
(79780, 'https://ror.org/05p3mxk21', 'en', 1, 'https://ror.org/05p3mxk21 Associação Portuguesa para a Diversidade da Videira Portuguese Association for the Conservation of Grapevine Diversity'),
(79781, 'https://ror.org/05p5xsx92', 'en', 1, 'https://ror.org/05p5xsx92 Federal Reserve Bank of San Francisco'),
(79782, 'https://ror.org/05p6jx952', 'en', 1, 'https://ror.org/05p6jx952 Kishokai Medical Corporation åŒ»ē™‚ę³•äŗŗ č‘µé˜ä¼š'),
(79783, 'https://ror.org/05p82s544', 'en', 1, 'https://ror.org/05p82s544 Cemmap'),
(79784, 'https://ror.org/05p9k0244', 'en', 1, 'https://ror.org/05p9k0244 Instytut Północny im. W. Kętrzyńskiego The Wojciech Kętrzyński Northern Institute'),
(79785, 'https://ror.org/05pb19q07', 'en', 1, 'https://ror.org/05pb19q07 Institut für Internationale Stadtforschung Institute for International Urban Research'),
(79786, 'https://ror.org/05pek2z35', 'no_lang_code', 1, 'https://ror.org/05pek2z35 Providence Medical Technology (United States)'),
(79787, 'https://ror.org/05pf9gd31', 'no_lang_code', 1, 'https://ror.org/05pf9gd31 Valtris Specialty Chemicals (United States)'),
(79788, 'https://ror.org/05pjhgh49', 'en', 1, 'https://ror.org/05pjhgh49 Centre for Research and Development'),
(79789, 'https://ror.org/05pjrm134', 'no_lang_code', 1, 'https://ror.org/05pjrm134 Supratek Pharma (Canada)'),
(79790, 'https://ror.org/05pnwae81', 'no_lang_code', 1, 'https://ror.org/05pnwae81 Lorentz Solution (United States)'),
(79791, 'https://ror.org/05pqsb912', 'no_lang_code', 1, 'https://ror.org/05pqsb912 SoftServe (United States)'),
(79792, 'https://ror.org/05pqvqq46', 'en', 1, 'https://ror.org/05pqvqq46 Centre for Health and Social Justice'),
(79793, 'https://ror.org/05pre1r47', 'no_lang_code', 1, 'https://ror.org/05pre1r47 Metacept (United States)'),
(79794, 'https://ror.org/05ps0t235', 'no_lang_code', 1, 'https://ror.org/05ps0t235 NanoVector (United States)'),
(79795, 'https://ror.org/05psp9534', 'en', 1, 'https://ror.org/05psp9534 Hangzhou Cancer Hospital ę­å·žåø‚č‚æē˜¤åŒ»é™¢'),
(79796, 'https://ror.org/05psz3234', 'no_lang_code', 1, 'https://ror.org/05psz3234 Bridge Pharma (United States)'),
(79797, 'https://ror.org/05ptp9d64', 'en', 1, 'https://ror.org/05ptp9d64 Fraunhofer Institute for Energy Economics and Energy System Technology Fraunhofer-Institut für Energiewirtschaft und Energiesystemtechnik'),
(79798, 'https://ror.org/05pwzcb81', 'en', 1, 'https://ror.org/05pwzcb81 Qingdao Women and Children''s Hospital é’å²›åø‚å¦‡å„³å„æē«„åŒ»é™¢'),
(79799, 'https://ror.org/05pzdnj43', 'en', 1, 'https://ror.org/05pzdnj43 Jiangsu Provincial Family Planning Institute of Science and Technology ę±Ÿč‹ēœč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(79800, 'https://ror.org/05pzr2r67', 'no_lang_code', 1, 'https://ror.org/05pzr2r67 Zoetis (Belgium)'),
(79801, 'https://ror.org/05q3h1130', 'no_lang_code', 1, 'https://ror.org/05q3h1130 TIB Molbiol (Germany)'),
(79802, 'https://ror.org/05q4jz828', 'en', 1, 'https://ror.org/05q4jz828 National Zoological Gardens of South Africa'),
(79803, 'https://ror.org/05q5cdt12', 'en', 1, 'https://ror.org/05q5cdt12 Ministry of Law and Justice विधि और ą¤Øą„ą¤Æą¤¾ą¤Æ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(79804, 'https://ror.org/05q5gzy49', 'en', 1, 'https://ror.org/05q5gzy49 Institute of New Technology of Forestry'),
(79805, 'https://ror.org/05q74qt68', 'en', 1, 'https://ror.org/05q74qt68 Hong Kong College of Health Service Executives é¦™ęøÆå«ē”Ÿå­¦é™¢č”Œę”æäŗŗå‘˜'),
(79806, 'https://ror.org/05q8a8a56', 'en', 1, 'https://ror.org/05q8a8a56 Hospice Palliative Care Alliance of China Foundation'),
(79807, 'https://ror.org/05q9ymz20', 'en', 1, 'https://ror.org/05q9ymz20 Xiang Yang No.1 People''s Hospital č„„é˜³åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(79808, 'https://ror.org/05qaj2541', 'no_lang_code', 1, 'https://ror.org/05qaj2541 Senior Flexonics (Germany)'),
(79809, 'https://ror.org/05qakzx30', 'no_lang_code', 1, 'https://ror.org/05qakzx30 IMDS (United States)'),
(79810, 'https://ror.org/05qavgd28', 'no_lang_code', 1, 'https://ror.org/05qavgd28 Philotek (United States)'),
(79811, 'https://ror.org/05qbj3p45', 'en', 1, 'https://ror.org/05qbj3p45 Royal Museums Greenwich'),
(79812, 'https://ror.org/05qczpc79', 'no_lang_code', 1, 'https://ror.org/05qczpc79 Vocalid (United States)'),
(79813, 'https://ror.org/05qd10157', 'no_lang_code', 1, 'https://ror.org/05qd10157 Simplify Medical (United States)'),
(79814, 'https://ror.org/05qg1tz58', 'en', 1, 'https://ror.org/05qg1tz58 Federal Reserve Bank of Atlanta'),
(79815, 'https://ror.org/05qg4my54', 'no_lang_code', 1, 'https://ror.org/05qg4my54 Henkel (United Kingdom)'),
(79816, 'https://ror.org/05qgcra83', 'en', 1, 'https://ror.org/05qgcra83 NIST Center for Neutron Research'),
(79817, 'https://ror.org/05qhjh740', 'en', 1, 'https://ror.org/05qhjh740 Asociación Fundación de Investigación Microbiomas Microbiomas Foundation'),
(79818, 'https://ror.org/05qk04938', 'no_lang_code', 1, 'https://ror.org/05qk04938 Lutronic (South Korea)'),
(79819, 'https://ror.org/05qnccv96', 'en', 1, 'https://ror.org/05qnccv96 British Dental Association'),
(79820, 'https://ror.org/05qp1qg36', 'en', 1, 'https://ror.org/05qp1qg36 Center for Sustainable Future Technologies'),
(79821, 'https://ror.org/05qqw9p49', 'en', 1, 'https://ror.org/05qqw9p49 Academia Nacional de Ciencias National Academy of Sciences'),
(79822, 'https://ror.org/05qrpwx06', 'en', 1, 'https://ror.org/05qrpwx06 Tropical Agricultural Machinery Research Institute å†œäøšęœŗę¢°ē ”ē©¶ę‰€'),
(79823, 'https://ror.org/05qvjtg77', 'no_lang_code', 1, 'https://ror.org/05qvjtg77 Chemi (Italy)'),
(79824, 'https://ror.org/05qxbj292', 'no_lang_code', 1, 'https://ror.org/05qxbj292 PsiKick (United States)'),
(79825, 'https://ror.org/05qxpts92', 'no_lang_code', 1, 'https://ror.org/05qxpts92 Tex Tech Industries (United States)'),
(79826, 'https://ror.org/05qyca855', 'en', 1, 'https://ror.org/05qyca855 Centre of Technology & Entrepreneurship Development'),
(79827, 'https://ror.org/05qz7n275', 'en', 1, 'https://ror.org/05qz7n275 Dazhou Central Hospital č¾¾å·žåø‚äø­åæƒåŒ»é™¢'),
(79828, 'https://ror.org/05qzqkd67', 'no_lang_code', 1, 'https://ror.org/05qzqkd67 Harro Hƶfliger (Germany)'),
(79829, 'https://ror.org/05r01jn71', 'no_lang_code', 1, 'https://ror.org/05r01jn71 HoMedics (United States)'),
(79830, 'https://ror.org/05r0r4s05', 'no_lang_code', 1, 'https://ror.org/05r0r4s05 Glo (Sweden)'),
(79831, 'https://ror.org/05r0xrd27', 'en', 1, 'https://ror.org/05r0xrd27 Center for Nanotechnology Innovation Centro per l''Innovazione delle Nanotecnologie'),
(79832, 'https://ror.org/05r183591', 'en', 1, 'https://ror.org/05r183591 Institute of Linguistics, Academia Sinica äø­å¤®ē ”ē©¶é™¢čŖžčØ€å­øē ”ē©¶ę‰€'),
(79833, 'https://ror.org/05r36sv91', 'es', 1, 'https://ror.org/05r36sv91 Weber'),
(79834, 'https://ror.org/05r4c6c72', 'en', 1, 'https://ror.org/05r4c6c72 Hague Institute of Private International and Foreign Law Stichting Internationaal Juridisch Instituut'),
(79835, 'https://ror.org/05r52vr82', 'no_lang_code', 1, 'https://ror.org/05r52vr82 CACI International (United Kingdom)'),
(79836, 'https://ror.org/05r6qy592', 'en', 1, 'https://ror.org/05r6qy592 Islamic Azad University Ilam Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§ŪŒŁ„Ų§Ł…'),
(79837, 'https://ror.org/05r892e85', 'no_lang_code', 1, 'https://ror.org/05r892e85 r2b Energy Consulting (Germany)'),
(79838, 'https://ror.org/05r8wgv86', 'en', 1, 'https://ror.org/05r8wgv86 Empower Tanzania'),
(79839, 'https://ror.org/05rc2ds55', 'no_lang_code', 1, 'https://ror.org/05rc2ds55 OtoScience Labs (United States)'),
(79840, 'https://ror.org/05rdn4880', 'no_lang_code', 1, 'https://ror.org/05rdn4880 Lamberti (Italy)'),
(79841, 'https://ror.org/05re5gc10', 'en', 1, 'https://ror.org/05re5gc10 ISBAT University'),
(79842, 'https://ror.org/05rfsjn97', 'pt', 1, 'https://ror.org/05rfsjn97 Unidade Hospitalar de BraganƧa'),
(79843, 'https://ror.org/05rg1zz45', 'de', 1, 'https://ror.org/05rg1zz45 Institut für Wildbiologie Göttingen und Dresden'),
(79844, 'https://ror.org/05rgcq579', 'no_lang_code', 1, 'https://ror.org/05rgcq579 Derwen (United States)'),
(79845, 'https://ror.org/05rjxhq89', 'no_lang_code', 1, 'https://ror.org/05rjxhq89 Erregierre (Italy)'),
(79846, 'https://ror.org/05rm2kt05', 'en', 1, 'https://ror.org/05rm2kt05 Slovak Technical Museum Slovenské Technické Múzeum'),
(79847, 'https://ror.org/05rnb7025', 'en', 1, 'https://ror.org/05rnb7025 North Carolina Natural Heritage Program'),
(79848, 'https://ror.org/05rnzt975', 'de', 1, 'https://ror.org/05rnzt975 Landwirtschaftliches Technologiezentrum Augustenberg'),
(79849, 'https://ror.org/05rqzv890', 'no_lang_code', 1, 'https://ror.org/05rqzv890 Kobo Products (United States)'),
(79850, 'https://ror.org/05rvyrg53', 'en', 1, 'https://ror.org/05rvyrg53 Zhanjiang Experimental Station ę¹›ę±Ÿå®žéŖŒē«™'),
(79851, 'https://ror.org/05rwdv390', 'de', 1, 'https://ror.org/05rwdv390 München Klinik Neuperlach'),
(79852, 'https://ror.org/05rxe5g18', 'en', 1, 'https://ror.org/05rxe5g18 Hokkaido Chitose College of Rehabilitation åŒ—ęµ·é“åƒę­³ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å¤§å­¦'),
(79853, 'https://ror.org/05rzgnh09', 'no_lang_code', 1, 'https://ror.org/05rzgnh09 Mycomed (United States)'),
(79854, 'https://ror.org/05s1rbd84', 'en', 1, 'https://ror.org/05s1rbd84 Hong Kong Trade Development Council é¦™ęøÆč²æę˜“ē™¼å±•å±€'),
(79855, 'https://ror.org/05s1yqk76', 'es', 1, 'https://ror.org/05s1yqk76 El Colegio de Veracruz The College of Veracruz'),
(79856, 'https://ror.org/05s21y527', 'en', 1, 'https://ror.org/05s21y527 Sierra Leone Urban Research Centre'),
(79857, 'https://ror.org/05s31q962', 'no_lang_code', 1, 'https://ror.org/05s31q962 West German Broadcasting Cologne Westdeutscher Rundfunk'),
(79858, 'https://ror.org/05s4ahv53', 'no_lang_code', 1, 'https://ror.org/05s4ahv53 Optodot (United States)'),
(79859, 'https://ror.org/05s4v9y95', 'en', 1, 'https://ror.org/05s4v9y95 InterPore'),
(79860, 'https://ror.org/05s7heg81', 'de', 1, 'https://ror.org/05s7heg81 Institut für das Bauen mit Kunststoffen'),
(79861, 'https://ror.org/05s928n76', 'de', 1, 'https://ror.org/05s928n76 Bach Archiv Leipzig'),
(79862, 'https://ror.org/05s9c0w76', 'no_lang_code', 1, 'https://ror.org/05s9c0w76 Semikron (United Kingdom)'),
(79863, 'https://ror.org/05s9qth02', 'en', 1, 'https://ror.org/05s9qth02 Australian Centre for Heart Health'),
(79864, 'https://ror.org/05satps27', 'no_lang_code', 1, 'https://ror.org/05satps27 Modular Bionics (United States)'),
(79865, 'https://ror.org/05sb89p83', 'en', 1, 'https://ror.org/05sb89p83 Greater Manchester Mental Health NHS Foundation Trust'),
(79866, 'https://ror.org/05sbyq382', 'no_lang_code', 1, 'https://ror.org/05sbyq382 China Petrochemical Development Corporation (Taiwan) äø­åœ‹ēŸ³ę²¹åŒ–å­øå·„ę„­é–‹ē™¼č‚”ä»½ęœ‰é™å…¬åø'),
(79867, 'https://ror.org/05sc11068', 'en', 1, 'https://ror.org/05sc11068 Research Institute of Subtropical Foresty äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢äŗšēƒ­åø¦ęž—äøšē ”ē©¶ę‰€'),
(79868, 'https://ror.org/05sd90862', 'en', 1, 'https://ror.org/05sd90862 Centre for Evaluation in Education and Science'),
(79869, 'https://ror.org/05sffjq44', 'en', 1, 'https://ror.org/05sffjq44 Veterinary And Animal Husbandry Services'),
(79870, 'https://ror.org/05sfhjs05', 'en', 1, 'https://ror.org/05sfhjs05 British Neuroscience Association'),
(79871, 'https://ror.org/05sgwkz06', 'en', 1, 'https://ror.org/05sgwkz06 TepatitlƔn''s Institute for Theoretical Studies'),
(79872, 'https://ror.org/05shbkc58', 'pt', 1, 'https://ror.org/05shbkc58 Unifunec - Centro UniversitƔrio de Santa FƩ do Sul'),
(79873, 'https://ror.org/05sjgdh57', 'en', 1, 'https://ror.org/05sjgdh57 Nigeria Centre for Disease Control'),
(79874, 'https://ror.org/05smgv327', 'no_lang_code', 1, 'https://ror.org/05smgv327 SURAGUS (Germany)'),
(79875, 'https://ror.org/05sp89c28', 'en', 1, 'https://ror.org/05sp89c28 University Transportation Center for Alabama'),
(79876, 'https://ror.org/05spgjn72', 'de', 1, 'https://ror.org/05spgjn72 Deutsche Vereinigung für Verbrennungsforschung'),
(79877, 'https://ror.org/05sxtdc16', 'en', 1, 'https://ror.org/05sxtdc16 George H. O''Brien, Jr. VA Medical Center'),
(79878, 'https://ror.org/05sxwnt46', 'en', 1, 'https://ror.org/05sxwnt46 American Institute for Behavioral Research and Technology'),
(79879, 'https://ror.org/05sz2c652', 'no_lang_code', 1, 'https://ror.org/05sz2c652 Spineart (Switzerland)'),
(79880, 'https://ror.org/05sz2c943', 'en', 1, 'https://ror.org/05sz2c943 Chiba Environment Foundation åƒč‘‰ēœŒē’°å¢ƒč²”å›£'),
(79881, 'https://ror.org/05sz4dt57', 'en', 1, 'https://ror.org/05sz4dt57 Aberdeen Science Centre'),
(79882, 'https://ror.org/05szwcv45', 'en', 1, 'https://ror.org/05szwcv45 Hunan Provincial Maternal and Child Health Hospital ę¹–å—ēœå¦‡å¹¼äæå„é™¢'),
(79883, 'https://ror.org/05t0bve94', 'no_lang_code', 1, 'https://ror.org/05t0bve94 Geuder (Germany)'),
(79884, 'https://ror.org/05t1cnz26', 'no_lang_code', 1, 'https://ror.org/05t1cnz26 Optimal Solutions (United States)'),
(79885, 'https://ror.org/05t1nj016', 'no_lang_code', 1, 'https://ror.org/05t1nj016 Institute of Nutrition and Pathology (Japan) ę „é¤Šē—…ē†ē ”ē©¶ę‰€'),
(79886, 'https://ror.org/05t1wae93', 'en', 1, 'https://ror.org/05t1wae93 Puyang Vocational and Technical College ęæ®é˜³čŒäøšęŠ€ęœÆå­¦é™¢'),
(79887, 'https://ror.org/05t20pg33', 'en', 1, 'https://ror.org/05t20pg33 Institute for Natural Resources in Africa'),
(79888, 'https://ror.org/05t45gr77', 'en', 1, 'https://ror.org/05t45gr77 Wuhan Center for Disease Control and Prevention ę­¦ę±‰åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(79889, 'https://ror.org/05t5yjz39', 'no_lang_code', 1, 'https://ror.org/05t5yjz39 SlovenskƩ MagnezitovƩ ZƔvody (Slovakia)'),
(79890, 'https://ror.org/05t826259', 'en', 1, 'https://ror.org/05t826259 Institute for Systems Studies & Analyses'),
(79891, 'https://ror.org/05t99je22', 'fr', 1, 'https://ror.org/05t99je22 Unitaid'),
(79892, 'https://ror.org/05ta2ab47', 'en', 1, 'https://ror.org/05ta2ab47 Sci Paper Edit'),
(79893, 'https://ror.org/05tbc9841', 'en', 1, 'https://ror.org/05tbc9841 Cluster of Excellence "Matters of Activity. Image Space Material"'),
(79894, 'https://ror.org/05tdgz517', 'no_lang_code', 1, 'https://ror.org/05tdgz517 Voci (United States)'),
(79895, 'https://ror.org/05tfnan22', 'en', 1, 'https://ror.org/05tfnan22 Gansu Provincial Center for Disease Control and Prevention ē”˜č‚ƒēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(79896, 'https://ror.org/05tgamw04', 'en', 1, 'https://ror.org/05tgamw04 S.P.E.C.I.E.S.'),
(79897, 'https://ror.org/05tgbdb80', 'en', 1, 'https://ror.org/05tgbdb80 American Trucking Associations'),
(79898, 'https://ror.org/05tk43a11', 'no_lang_code', 1, 'https://ror.org/05tk43a11 Helix Biomedix (United States)'),
(79899, 'https://ror.org/05tp04d37', 'no_lang_code', 1, 'https://ror.org/05tp04d37 Gavekal Intelligence Software (France)'),
(79900, 'https://ror.org/05tq5rp50', 'no_lang_code', 1, 'https://ror.org/05tq5rp50 Focus (Germany)'),
(79901, 'https://ror.org/05ttj6w10', 'en', 1, 'https://ror.org/05ttj6w10 Nishinari Labor Welfare Center č²”å›£ę³•äŗŗč„æęˆåŠ“åƒē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼'),
(79902, 'https://ror.org/05tvnhf16', 'no_lang_code', 1, 'https://ror.org/05tvnhf16 Anthogyr (France)'),
(79903, 'https://ror.org/05tzg1b68', 'no_lang_code', 1, 'https://ror.org/05tzg1b68 Cyclerion (United States)'),
(79904, 'https://ror.org/05v0zt272', 'en', 1, 'https://ror.org/05v0zt272 Al-Saeeda University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³Ų¹ŁŠŲÆŲ©'),
(79905, 'https://ror.org/05v2jtd22', 'no_lang_code', 1, 'https://ror.org/05v2jtd22 SuperSonic Imagine (France)'),
(79906, 'https://ror.org/05v2ry936', 'no_lang_code', 1, 'https://ror.org/05v2ry936 EEW Energy from Waste'),
(79907, 'https://ror.org/05v2shy89', 'no_lang_code', 1, 'https://ror.org/05v2shy89 San-Ei Gen F.F.I (Japan)'),
(79908, 'https://ror.org/05v3hkt95', 'en', 1, 'https://ror.org/05v3hkt95 Indian Institute of Management Visakhapatnam ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤µą¤æą¤¶ą¤¾ą¤–ą¤Ŗą¤Ÿą„ą¤Øą¤®'),
(79909, 'https://ror.org/05v5qdf34', 'fr', 1, 'https://ror.org/05v5qdf34 Groupe de Recherche en Ɖcologie Arctique'),
(79910, 'https://ror.org/05v6s8y05', 'en', 1, 'https://ror.org/05v6s8y05 Peconic Bay Medical Center'),
(79911, 'https://ror.org/05v7bvm48', 'no_lang_code', 1, 'https://ror.org/05v7bvm48 Arthrosurface (United States)'),
(79912, 'https://ror.org/05v7khc27', 'no_lang_code', 1, 'https://ror.org/05v7khc27 Disco (Germany)'),
(79913, 'https://ror.org/05v8nsf47', 'no_lang_code', 1, 'https://ror.org/05v8nsf47 Deutsches Dialog Institut (Germany)'),
(79914, 'https://ror.org/05v9a1255', 'no_lang_code', 1, 'https://ror.org/05v9a1255 SyncScience (United States)'),
(79915, 'https://ror.org/05v9ym429', 'no_lang_code', 1, 'https://ror.org/05v9ym429 Roche (Norway)'),
(79916, 'https://ror.org/05vad5q49', 'en', 1, 'https://ror.org/05vad5q49 Milli Aviasiya Akademiyası National Aviation Academy ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ авиации АзербайГжана'),
(79917, 'https://ror.org/05vba0x81', 'no_lang_code', 1, 'https://ror.org/05vba0x81 Omitron (United States)'),
(79918, 'https://ror.org/05vcg4030', 'no_lang_code', 1, 'https://ror.org/05vcg4030 Stereotaxis (United States)'),
(79919, 'https://ror.org/05vcgwf09', 'no_lang_code', 1, 'https://ror.org/05vcgwf09 SUSS MicroTec (Germany)'),
(79920, 'https://ror.org/05vcz8m66', 'no_lang_code', 1, 'https://ror.org/05vcz8m66 PredictionProbe (United States)'),
(79921, 'https://ror.org/05vddc675', 'no_lang_code', 1, 'https://ror.org/05vddc675 Shared Medical Technology (United States)'),
(79922, 'https://ror.org/05vebts22', 'no_lang_code', 1, 'https://ror.org/05vebts22 Hyprotek (United States)'),
(79923, 'https://ror.org/05vexvt14', 'en', 1, 'https://ror.org/05vexvt14 Koforidua Technical University'),
(79924, 'https://ror.org/05vhgbn50', 'no_lang_code', 1, 'https://ror.org/05vhgbn50 Vidrio (United States)'),
(79925, 'https://ror.org/05vjgy768', 'no_lang_code', 1, 'https://ror.org/05vjgy768 Atos (United Kingdom)'),
(79926, 'https://ror.org/05vk7ky45', 'no_lang_code', 1, 'https://ror.org/05vk7ky45 Steca Elektronik (Germany)'),
(79927, 'https://ror.org/05vm6r550', 'en', 1, 'https://ror.org/05vm6r550 Indian Institute of Soybean Research ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‹ą¤Æą¤¾ą¤¬ą„€ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(79928, 'https://ror.org/05vnfvq50', 'no_lang_code', 1, 'https://ror.org/05vnfvq50 DM3D Technology (United States)'),
(79929, 'https://ror.org/05vs7jg22', 'en', 1, 'https://ror.org/05vs7jg22 World Health Organization - Slovakia'),
(79930, 'https://ror.org/05vt21141', 'no_lang_code', 1, 'https://ror.org/05vt21141 Institut für Technische und Angewandte Physik (Germany)'),
(79931, 'https://ror.org/05vtc2x84', 'en', 1, 'https://ror.org/05vtc2x84 Henan Provincial Institute of Cultural Heritage and Archaeology ę²³å—ēœę–‡ē‰©č€ƒå¤ē ”ē©¶ę‰€'),
(79932, 'https://ror.org/05vvt7a66', 'en', 1, 'https://ror.org/05vvt7a66 Health Protection Research Unit in Emerging and Zoonotic Infections at University of Liverpool'),
(79933, 'https://ror.org/05vxb7888', 'no_lang_code', 1, 'https://ror.org/05vxb7888 Schell Games (United States)'),
(79934, 'https://ror.org/05vxfdm89', 'no_lang_code', 1, 'https://ror.org/05vxfdm89 Atom Computing (United States)'),
(79935, 'https://ror.org/05vyqs083', 'no_lang_code', 1, 'https://ror.org/05vyqs083 Eisenhuth (Germany)'),
(79936, 'https://ror.org/05w0whz56', 'no_lang_code', 1, 'https://ror.org/05w0whz56 Adey (United Kingdom)'),
(79937, 'https://ror.org/05w2yhn64', 'en', 1, 'https://ror.org/05w2yhn64 Farmers Education Association Kashiwa Gakuen Agricultural Nutrition College éÆ‰ę·µå­¦åœ’č¾²ę„­ę „é¤Šå°‚é–€å­¦ę ”'),
(79938, 'https://ror.org/05w3aay26', 'en', 1, 'https://ror.org/05w3aay26 Centre Emys Emys Center'),
(79939, 'https://ror.org/05w4tdf58', 'no_lang_code', 1, 'https://ror.org/05w4tdf58 Ocean Bay (United States)'),
(79940, 'https://ror.org/05w9jj607', 'no_lang_code', 1, 'https://ror.org/05w9jj607 ZeoSys Medical (Germany)'),
(79941, 'https://ror.org/05w9sm057', 'en', 1, 'https://ror.org/05w9sm057 Advocates Coalition for Development and Environment'),
(79942, 'https://ror.org/05wd41k10', 'no_lang_code', 1, 'https://ror.org/05wd41k10 Altergon (Italy)'),
(79943, 'https://ror.org/05wd66v55', 'no_lang_code', 1, 'https://ror.org/05wd66v55 Sanofi (Mexico)'),
(79944, 'https://ror.org/05wfwcv97', 'no_lang_code', 1, 'https://ror.org/05wfwcv97 Oakpont (Australia)'),
(79945, 'https://ror.org/05wg4vz65', 'no_lang_code', 1, 'https://ror.org/05wg4vz65 Phoenix Mecano (Switzerland)'),
(79946, 'https://ror.org/05wg75z42', 'en', 1, 'https://ror.org/05wg75z42 Children’s Hospital of Fudan University Xiamen Branch åŽ¦é—Øåø‚å„æē«„åŒ»é™¢ē®€ä»‹'),
(79947, 'https://ror.org/05wh29r58', 'no_lang_code', 1, 'https://ror.org/05wh29r58 Persyst (United States)'),
(79948, 'https://ror.org/05whjqq05', 'en', 1, 'https://ror.org/05whjqq05 National Institute for Radiological Protection äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒč¾å°„é˜²ęŠ¤äøŽę øå®‰å…ØåŒ»å­¦ę‰€'),
(79949, 'https://ror.org/05wmdnq05', 'no_lang_code', 1, 'https://ror.org/05wmdnq05 Ovid Therapeutics (United States)'),
(79950, 'https://ror.org/05wmmkw18', 'no_lang_code', 1, 'https://ror.org/05wmmkw18 Schleifring (Germany)'),
(79951, 'https://ror.org/05wpf8f91', 'no_lang_code', 1, 'https://ror.org/05wpf8f91 Integra LifeSciences (Switzerland)'),
(79952, 'https://ror.org/05wr0v850', 'no_lang_code', 1, 'https://ror.org/05wr0v850 Deutsche Amphibolin-Werke (Germany)'),
(79953, 'https://ror.org/05wsetc54', 'en', 1, 'https://ror.org/05wsetc54 Institute of Structural and Molecular Biology'),
(79954, 'https://ror.org/05wv5ps25', 'en', 1, 'https://ror.org/05wv5ps25 Noah''s Path'),
(79955, 'https://ror.org/05wvw5722', 'es', 1, 'https://ror.org/05wvw5722 Asociación Colombiana de Gastroenterología Colombian Association of Gastroenterology'),
(79956, 'https://ror.org/05wxywg93', 'en', 1, 'https://ror.org/05wxywg93 Leibniz Institute for Financial Research SAFE, Sustainable Architecture for Finance in Europe Leibniz-Institut für Finanzmarktforschung'),
(79957, 'https://ror.org/05wy2w269', 'no_lang_code', 1, 'https://ror.org/05wy2w269 HighFinesse (Germany)'),
(79958, 'https://ror.org/05x27ng08', 'no_lang_code', 1, 'https://ror.org/05x27ng08 Tsurugi Hospital å…¬ē«‹ć¤ć‚‹ćŽē—…é™¢'),
(79959, 'https://ror.org/05x3e5221', 'no_lang_code', 1, 'https://ror.org/05x3e5221 Synaptics (United Kingdom)'),
(79960, 'https://ror.org/05x4e6955', 'no_lang_code', 1, 'https://ror.org/05x4e6955 CarGurus (United States)'),
(79961, 'https://ror.org/05x4we538', 'no_lang_code', 1, 'https://ror.org/05x4we538 Valepro (United States)'),
(79962, 'https://ror.org/05x4z7p76', 'fr', 1, 'https://ror.org/05x4z7p76 Conservatoire Botanique National MƩditerranƩen de Porquerolles National Mediterranean Botanical Conservatory of Porquerolles'),
(79963, 'https://ror.org/05x8b4491', 'en', 1, 'https://ror.org/05x8b4491 DKFZ-ZMBH Alliance'),
(79964, 'https://ror.org/05xdrcw34', 'no_lang_code', 1, 'https://ror.org/05xdrcw34 Regend Therapeutics (China)'),
(79965, 'https://ror.org/05xeefy56', 'no_lang_code', 1, 'https://ror.org/05xeefy56 Preferred Networks (Japan)'),
(79966, 'https://ror.org/05xfzy080', 'no_lang_code', 1, 'https://ror.org/05xfzy080 Propper Manufacturing (United States)'),
(79967, 'https://ror.org/05xg01v02', 'no_lang_code', 1, 'https://ror.org/05xg01v02 New Amsterdam Sciences (United States)'),
(79968, 'https://ror.org/05xj42126', 'no_lang_code', 1, 'https://ror.org/05xj42126 FujiFilm VisualSonics (Canada)'),
(79969, 'https://ror.org/05xjgsf03', 'no_lang_code', 1, 'https://ror.org/05xjgsf03 Qrono (United States)'),
(79970, 'https://ror.org/05xjjbz05', 'no_lang_code', 1, 'https://ror.org/05xjjbz05 Deutsche Telekom (Slovakia)'),
(79971, 'https://ror.org/05xjtjs92', 'de', 1, 'https://ror.org/05xjtjs92 Museumsverbund Nordfriesland');
INSERT INTO `rors` VALUES
(79972, 'https://ror.org/05xk3sx84', 'no_lang_code', 1, 'https://ror.org/05xk3sx84 Neutrogena (United States)'),
(79973, 'https://ror.org/05xkjsd30', 'no_lang_code', 1, 'https://ror.org/05xkjsd30 Nadogaya Hospital åęˆøćƒ¶č°·ē—…é™¢'),
(79974, 'https://ror.org/05xkqnm68', 'en', 1, 'https://ror.org/05xkqnm68 Centre of Biomedical Research ą¤œą„ˆą¤µ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(79975, 'https://ror.org/05xp03991', 'no_lang_code', 1, 'https://ror.org/05xp03991 Robotic Technology (United States)'),
(79976, 'https://ror.org/05xv2zk35', 'en', 1, 'https://ror.org/05xv2zk35 Policy Research Center for Environment and Economy'),
(79977, 'https://ror.org/05xybd718', 'no_lang_code', 1, 'https://ror.org/05xybd718 Sutro Biopharma (United States)'),
(79978, 'https://ror.org/05xzt2h26', 'no_lang_code', 1, 'https://ror.org/05xzt2h26 Venus Medtech (China)'),
(79979, 'https://ror.org/05xzypt50', 'en', 1, 'https://ror.org/05xzypt50 IDMRC Institut Engineering Design of Mechatronik System und MPLM'),
(79980, 'https://ror.org/05y07gt41', 'no_lang_code', 1, 'https://ror.org/05y07gt41 NxGEN Electronics (United States)'),
(79981, 'https://ror.org/05y33n643', 'no_lang_code', 1, 'https://ror.org/05y33n643 PICO Technologies (United States)'),
(79982, 'https://ror.org/05y5sz883', 'no_lang_code', 1, 'https://ror.org/05y5sz883 Sequoia (United States)'),
(79983, 'https://ror.org/05y6s9s64', 'en', 1, 'https://ror.org/05y6s9s64 Berghof Foundation'),
(79984, 'https://ror.org/05y77as28', 'no_lang_code', 1, 'https://ror.org/05y77as28 University Medical Pharmaceuticals (United States)'),
(79985, 'https://ror.org/05yanja12', 'de', 1, 'https://ror.org/05yanja12 Institut für Wohnungswesen Immobilienwirtschaft Stadt- und Regionalentwicklung'),
(79986, 'https://ror.org/05yawba35', 'en', 1, 'https://ror.org/05yawba35 Secretariat of Housing and Urban Development SecretarĆ­a de Desarrollo Urbano y Vivienda'),
(79987, 'https://ror.org/05yawdh16', 'no_lang_code', 1, 'https://ror.org/05yawdh16 Stein Seal (United States)'),
(79988, 'https://ror.org/05ybgx820', 'no_lang_code', 1, 'https://ror.org/05ybgx820 Shanghai Science and Technical Publishers (China) äøŠęµ·ē§‘å­¦ęŠ€ęœÆå‡ŗē‰ˆē¤¾'),
(79989, 'https://ror.org/05yc9cc15', 'en', 1, 'https://ror.org/05yc9cc15 Hainan Earthquake Administration ęµ·å—ēœåœ°éœ‡å±€'),
(79990, 'https://ror.org/05ycrqt76', 'de', 1, 'https://ror.org/05ycrqt76 Institut für angewandte Forschung im Bauwesen'),
(79991, 'https://ror.org/05ydhxb54', 'no_lang_code', 1, 'https://ror.org/05ydhxb54 Sustainable Business Institute (Germany)'),
(79992, 'https://ror.org/05yey6m86', 'no_lang_code', 1, 'https://ror.org/05yey6m86 Europa Service Autovermietung (Germany)'),
(79993, 'https://ror.org/05yf3p710', 'en', 1, 'https://ror.org/05yf3p710 Egyptian Society of Laboratory Medicine Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© للطب المعملى'),
(79994, 'https://ror.org/05ygbx057', 'no_lang_code', 1, 'https://ror.org/05ygbx057 Renmatix (United States)'),
(79995, 'https://ror.org/05ykc8r61', 'no_lang_code', 1, 'https://ror.org/05ykc8r61 DocBox (United States)'),
(79996, 'https://ror.org/05ymeqj18', 'en', 1, 'https://ror.org/05ymeqj18 IfG.Research - The Institute for eGovernment'),
(79997, 'https://ror.org/05ympq522', 'fr', 1, 'https://ror.org/05ympq522 Ministère de l''Agriculture et de l''Èquipement Rural Senegal Ministry of Agriculture'),
(79998, 'https://ror.org/05ymsje86', 'no_lang_code', 1, 'https://ror.org/05ymsje86 Zeta Economics (United Kingdom)'),
(79999, 'https://ror.org/05ynxbz16', 'no_lang_code', 1, 'https://ror.org/05ynxbz16 Stadtwerke Dinslaken (Germany)'),
(80000, 'https://ror.org/05ypszq83', 'es', 1, 'https://ror.org/05ypszq83 Fundación IRAUy'),
(80001, 'https://ror.org/0000c1w11', 'en', 1, 'https://ror.org/0000c1w11 Kivach Nature Reserve ŠšŠøŠ²Š°Ń‡ заповеГник'),
(80002, 'https://ror.org/0003en535', 'no_lang_code', 1, 'https://ror.org/0003en535 Quark Pharmaceuticals (United States)'),
(80003, 'https://ror.org/0003xeg87', 'en', 1, 'https://ror.org/0003xeg87 James Martin Center for Nonproliferation Studies'),
(80004, 'https://ror.org/000628g58', 'no_lang_code', 1, 'https://ror.org/000628g58 Tata Sons (India)'),
(80005, 'https://ror.org/0006s4z66', 'en', 1, 'https://ror.org/0006s4z66 Bureau of Justice Statistics'),
(80006, 'https://ror.org/000889019', 'en', 1, 'https://ror.org/000889019 Institute of Nephrology of the National Academy of Medical Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефрології ŠŠŠœŠ України'),
(80007, 'https://ror.org/00088z429', 'en', 1, 'https://ror.org/00088z429 Kobe Pharmaceutical University ē„žęˆøč–¬ē§‘å¤§å­¦'),
(80008, 'https://ror.org/0008nva35', 'en', 1, 'https://ror.org/0008nva35 The Urology Center of Colorado'),
(80009, 'https://ror.org/0009b0k06', 'fr', 1, 'https://ror.org/0009b0k06 Clinique des CĆØdres'),
(80010, 'https://ror.org/000b3v524', 'en', 1, 'https://ror.org/000b3v524 Southeastern Fruit and Tree Nut Research Laboratory'),
(80011, 'https://ror.org/000bp7q73', 'en', 1, 'https://ror.org/000bp7q73 Open Targets'),
(80012, 'https://ror.org/000ccd270', 'no_lang_code', 1, 'https://ror.org/000ccd270 Scoular (United States)'),
(80013, 'https://ror.org/000gm9x69', 'en', 1, 'https://ror.org/000gm9x69 National Institute of Technology, Hakodate College å‡½é¤Øå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(80014, 'https://ror.org/000hftw80', 'no_lang_code', 1, 'https://ror.org/000hftw80 Nuclera (United Kingdom)'),
(80015, 'https://ror.org/000j6sc87', 'en', 1, 'https://ror.org/000j6sc87 Innovation Center of NanoMedicine å…¬ē›Šč²”å›£ę³•äŗŗå·å“Žåø‚ē”£ę„­ęŒÆčˆˆč²”å›£'),
(80016, 'https://ror.org/000jqa749', 'en', 1, 'https://ror.org/000jqa749 The Ocean Cleanup'),
(80017, 'https://ror.org/000mza046', 'en', 1, 'https://ror.org/000mza046 European Incoherent Scatter Scientific Association'),
(80018, 'https://ror.org/000neg726', 'en', 1, 'https://ror.org/000neg726 Gillies McIndoe Research Institute'),
(80019, 'https://ror.org/000pb1q18', 'en', 1, 'https://ror.org/000pb1q18 International Theravada Buddhist Missionary University'),
(80020, 'https://ror.org/000pmrk50', 'en', 1, 'https://ror.org/000pmrk50 Islamic University of Indonesia Universitas Islam Indonesia'),
(80021, 'https://ror.org/000q75d75', 'en', 1, 'https://ror.org/000q75d75 JAé•·é‡ŽåŽšē”Ÿé€£é•·é‡Žę¾ä»£ē·åˆē—…é™¢ Nagano Matsushiro General Hospital'),
(80022, 'https://ror.org/000r0q932', 'en', 1, 'https://ror.org/000r0q932 Ministry of Health'),
(80023, 'https://ror.org/000s30768', 'no_lang_code', 1, 'https://ror.org/000s30768 Dr. Friedrich Eberth Arzneimittel (Germany)'),
(80024, 'https://ror.org/000vekr11', 'en', 1, 'https://ror.org/000vekr11 GW4'),
(80025, 'https://ror.org/000w7cv19', 'no_lang_code', 1, 'https://ror.org/000w7cv19 TOTOę Ŗå¼ä¼šē¤¾ Toto (Japan)'),
(80026, 'https://ror.org/000x3c608', 'no_lang_code', 1, 'https://ror.org/000x3c608 Bruce Power (Canada)'),
(80027, 'https://ror.org/000xaj256', 'en', 1, 'https://ror.org/000xaj256 Yukon Department of Tourism and Culture'),
(80028, 'https://ror.org/000znbq58', 'no_lang_code', 1, 'https://ror.org/000znbq58 OncoTherapy Science (Japan) ć‚Ŗćƒ³ć‚³ć‚»ćƒ©ćƒ”ćƒ¼ćƒ»ć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(80029, 'https://ror.org/00105n552', 'en', 1, 'https://ror.org/00105n552 Noda Institute for Scientific Research å…¬ē›Šč²”å›£ę³•äŗŗé‡Žē”°ē”£ę„­ē§‘å­¦ē ”ē©¶ę‰€'),
(80030, 'https://ror.org/0010d1q40', 'no_lang_code', 1, 'https://ror.org/0010d1q40 Grand Ɖquipement National de Calcul Intensif (France)'),
(80031, 'https://ror.org/0010qfz59', 'pt', 1, 'https://ror.org/0010qfz59 Fundo de Defesa da Citricultura'),
(80032, 'https://ror.org/0014a0n68', 'en', 1, 'https://ror.org/0014a0n68 Affiliated Hospital of Southwest Medical University č„æå—åŒ»ē§‘å¤§å­¦é™„å±žäø­åŒ»åŒ»é™¢'),
(80033, 'https://ror.org/00156kt95', 'en', 1, 'https://ror.org/00156kt95 Australian General Practice Accreditation Limited'),
(80034, 'https://ror.org/001641630', 'no_lang_code', 1, 'https://ror.org/001641630 Thames Water (United Kingdom)'),
(80035, 'https://ror.org/00178zy73', 'no_lang_code', 1, 'https://ror.org/00178zy73 JAę„›ēŸ„åŽšē”Ÿé€£ę±Ÿå—åŽšē”Ÿē—…é™¢ Konan Kosei Hospital'),
(80036, 'https://ror.org/0018wmh19', 'no_lang_code', 1, 'https://ror.org/0018wmh19 Molecular Devices'),
(80037, 'https://ror.org/0019cam27', 'en', 1, 'https://ror.org/0019cam27 U SPORTS'),
(80038, 'https://ror.org/0019k3g62', 'en', 1, 'https://ror.org/0019k3g62 Eastern Regional Medical Center'),
(80039, 'https://ror.org/001bx3s75', 'no_lang_code', 1, 'https://ror.org/001bx3s75 Ulvac-Phi (Japan) ć‚¢ćƒ«ćƒćƒƒć‚Æćƒ»ćƒ•ć‚”ć‚¤ę Ŗå¼ä¼šē¤¾'),
(80040, 'https://ror.org/001h2r504', 'no_lang_code', 1, 'https://ror.org/001h2r504 GoodAI (Czechia)'),
(80041, 'https://ror.org/001h41c24', 'no_lang_code', 1, 'https://ror.org/001h41c24 Data Tecnica International (United States)'),
(80042, 'https://ror.org/001h8tm56', 'en', 1, 'https://ror.org/001h8tm56 Canadian Academic Accounting Association'),
(80043, 'https://ror.org/001m9j981', 'no_lang_code', 1, 'https://ror.org/001m9j981 IriSys (United States)'),
(80044, 'https://ror.org/001ms2r47', 'no_lang_code', 1, 'https://ror.org/001ms2r47 Five Prime Therapeutics (United States)'),
(80045, 'https://ror.org/001pj0680', 'en', 1, 'https://ror.org/001pj0680 Kuban State University of Physical Education, Sport and Tourism Кубанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(80046, 'https://ror.org/001q4kn48', 'en', 1, 'https://ror.org/001q4kn48 University of Hassan II Casablanca UniversitĆ© hassan ii de casablanca Ų¬Ų§Ł…Ų¹Ų© الحسن Ų§Ł„Ų«Ų§Ł†ŁŠ'),
(80047, 'https://ror.org/001qb9t53', 'no_lang_code', 1, 'https://ror.org/001qb9t53 Jinergy (China) é‡‘čƒ½ęø…ę“čƒ½ęŗē§‘ęŠ€ęœ‰é™å…¬åø'),
(80048, 'https://ror.org/001qxy049', 'no_lang_code', 1, 'https://ror.org/001qxy049 Haaretz Group (Israel)'),
(80049, 'https://ror.org/001swhm52', 'en', 1, 'https://ror.org/001swhm52 Shimon Peres Negev Nuclear Research Center קריה ×œ×ž×—×§×Ø גרעיני – נגב ×¢"ש שמעון פרה'),
(80050, 'https://ror.org/001t02e86', 'en', 1, 'https://ror.org/001t02e86 Fondation universitaire Universitaire Stichting University Foundation'),
(80051, 'https://ror.org/001t9rv66', 'en', 1, 'https://ror.org/001t9rv66 Biblijski Institut The Biblical Institute'),
(80052, 'https://ror.org/001tw8739', 'en', 1, 'https://ror.org/001tw8739 Association des bibliothĆØques de recherche du canada Canadian Association of Research Libraries'),
(80053, 'https://ror.org/001vw6n49', 'no_lang_code', 1, 'https://ror.org/001vw6n49 Planta'),
(80054, 'https://ror.org/001w50q34', 'de', 1, 'https://ror.org/001w50q34 Barmherzige Schwestern Krankenhaus Wien'),
(80055, 'https://ror.org/001xkv632', 'en', 1, 'https://ror.org/001xkv632 Southern Cross University'),
(80056, 'https://ror.org/001xs0312', 'en', 1, 'https://ror.org/001xs0312 Indian Institute of Management Udaipur ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‰ą¤¦ą¤Æą¤Ŗą„ą¤°'),
(80057, 'https://ror.org/0020pnp42', 'en', 1, 'https://ror.org/0020pnp42 Center of Plant Systems Biology and Biotechnology'),
(80058, 'https://ror.org/0021gtp06', 'ro', 1, 'https://ror.org/0021gtp06 Institutul de Urgenţă pentru Boli Cardiovasculare "Prof.Dr. C.C. Iliescu"'),
(80059, 'https://ror.org/00230yh09', 'en', 1, 'https://ror.org/00230yh09 Worldwise Travellers Health & Vaccination Centres'),
(80060, 'https://ror.org/0026pjn75', 'en', 1, 'https://ror.org/0026pjn75 Amosov National Institute of Cardiovascular Surgery'),
(80061, 'https://ror.org/0028etb62', 'en', 1, 'https://ror.org/0028etb62 Calar Alto Observatory'),
(80062, 'https://ror.org/0028hwj42', 'en', 1, 'https://ror.org/0028hwj42 St. Petersburg Research Center of the Russian Academy of Sciences Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š ŠŠ'),
(80063, 'https://ror.org/00293y771', 'en', 1, 'https://ror.org/00293y771 Sendai National College of Technology ä»™å°é«˜ē­‰å°‚é–€å­¦ę ”'),
(80064, 'https://ror.org/0029f8q94', 'en', 1, 'https://ror.org/0029f8q94 Keyano College'),
(80065, 'https://ror.org/002bpyg81', 'en', 1, 'https://ror.org/002bpyg81 Ark Medical Center'),
(80066, 'https://ror.org/002cfy541', 'en', 1, 'https://ror.org/002cfy541 Japan Diabetes Foundation ę—„ęœ¬ē³–å°æē—…č²”å›£'),
(80067, 'https://ror.org/002dxp647', 'no_lang_code', 1, 'https://ror.org/002dxp647 Bell Resources (Australia)'),
(80068, 'https://ror.org/002e7ss22', 'en', 1, 'https://ror.org/002e7ss22 Lower Saxony State Agency for Water Management, Coastal Protection and Nature Conservation Niedersächsischer Landesbetrieb für Wasserwirtschaft, Küsten- und Naturschutz'),
(80069, 'https://ror.org/002egtp29', 'en', 1, 'https://ror.org/002egtp29 Arctic Research Centre'),
(80070, 'https://ror.org/002fj3m33', 'en', 1, 'https://ror.org/002fj3m33 Tokyo Zoological Park Society å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬å‹•ē‰©åœ’å”ä¼š'),
(80071, 'https://ror.org/002g4nt27', 'en', 1, 'https://ror.org/002g4nt27 British Heart Foundation Centre for Cardiovascular Science'),
(80072, 'https://ror.org/002gr9f09', 'pt', 1, 'https://ror.org/002gr9f09 Instituto AgronƓmico de Pernambuco'),
(80073, 'https://ror.org/002hq8b42', 'en', 1, 'https://ror.org/002hq8b42 Universidad de Ciencias y Artes de AmƩrica Latina University of Sciences and Arts of Latin America'),
(80074, 'https://ror.org/002jmzw69', 'no_lang_code', 1, 'https://ror.org/002jmzw69 Oxford Nanoimaging (United Kingdom)'),
(80075, 'https://ror.org/002kdx757', 'no_lang_code', 1, 'https://ror.org/002kdx757 4C Air (United States)'),
(80076, 'https://ror.org/002mmyt85', 'en', 1, 'https://ror.org/002mmyt85 Genomics Research Center, Academia Sinica äø­å¤®ē ”ē©¶é™¢åŸŗå› é«”ē ”ē©¶äø­åæƒ'),
(80077, 'https://ror.org/002nf6z37', 'en', 1, 'https://ror.org/002nf6z37 Columbus State University'),
(80078, 'https://ror.org/002pvtp37', 'en', 1, 'https://ror.org/002pvtp37 Bulgarian Institute of Metrology Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¼ŠµŃ‚Ń€Š¾Š»Š¾Š³ŠøŃ'),
(80079, 'https://ror.org/002r67t24', 'en', 1, 'https://ror.org/002r67t24 Manukau Institute of Technology'),
(80080, 'https://ror.org/002rc4w13', 'en', 1, 'https://ror.org/002rc4w13 Islamia University of Bahawalpur Ų§Ų³Ł„Ų§Ł…ŪŒŪ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŪŲ§ŁˆŁ„Ł¾ŁˆŲ±'),
(80081, 'https://ror.org/002s65j03', 'no_lang_code', 1, 'https://ror.org/002s65j03 Ulrich Medical (Germany)'),
(80082, 'https://ror.org/002scw660', 'no_lang_code', 1, 'https://ror.org/002scw660 Casio (Japan) ć‚«ć‚·ć‚ŖčØˆē®—ę©Ÿę Ŗå¼ä¼šē¤¾'),
(80083, 'https://ror.org/002tgme16', 'en', 1, 'https://ror.org/002tgme16 Canadians Living with HIV Conseil Canadien de Surveillance et d''AccĆØs aux Traitements'),
(80084, 'https://ror.org/002trms45', 'en', 1, 'https://ror.org/002trms45 Hydrocephalus Association'),
(80085, 'https://ror.org/002v3hs06', 'en', 1, 'https://ror.org/002v3hs06 Ipar Perspective'),
(80086, 'https://ror.org/002v4hw29', 'en', 1, 'https://ror.org/002v4hw29 Sikhote-Alin Nature Reserve Š”ŠøŃ…Š¾Ń‚Ń-Алинский заповеГник'),
(80087, 'https://ror.org/002vpkf64', 'fr', 1, 'https://ror.org/002vpkf64 SociƩtƩ des historiens mƩdiƩvistes de l''enseignement supƩrieur public'),
(80088, 'https://ror.org/002vr4d22', 'en', 1, 'https://ror.org/002vr4d22 Centro Internacional de la Papa International Potato Center'),
(80089, 'https://ror.org/002wfgr58', 'en', 1, 'https://ror.org/002wfgr58 Seoul Metropolitan Government'),
(80090, 'https://ror.org/002x06r10', 'no_lang_code', 1, 'https://ror.org/002x06r10 Agios Pharmaceuticals (United States)'),
(80091, 'https://ror.org/002x1sg85', 'es', 1, 'https://ror.org/002x1sg85 Instituto de Investigación Hospital 12 de Octubre, Research Institute Hospital 12 de Octubre'),
(80092, 'https://ror.org/002x6f380', 'en', 1, 'https://ror.org/002x6f380 Guizhou Education University č“µå·žåøˆčŒƒå­¦é™¢'),
(80093, 'https://ror.org/002xnks13', 'en', 1, 'https://ror.org/002xnks13 Institute for Agriculture and Trade Policy'),
(80094, 'https://ror.org/002y4pe44', 'en', 1, 'https://ror.org/002y4pe44 East Siberia State University of Technology and Management Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Восточно-Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ технологий Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(80095, 'https://ror.org/002ygss10', 'en', 1, 'https://ror.org/002ygss10 Utica College'),
(80096, 'https://ror.org/00306v942', 'no_lang_code', 1, 'https://ror.org/00306v942 Sivantos (Germany)'),
(80097, 'https://ror.org/00314zp94', 'en', 1, 'https://ror.org/00314zp94 Canadian Rheumatology Association SociƩtƩ Canadienne Rheumatologie'),
(80098, 'https://ror.org/0031f9587', 'en', 1, 'https://ror.org/0031f9587 European Society of Biomechanics'),
(80099, 'https://ror.org/0031sqt67', 'de', 1, 'https://ror.org/0031sqt67 Schmerzmedizin Berlin'),
(80100, 'https://ror.org/0032n4537', 'en', 1, 'https://ror.org/0032n4537 Institute of Pharmacology and Toxicology of the National Academy of Medical Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фармакології та токсикології ŠŠŠœŠ України'),
(80101, 'https://ror.org/0033y0972', 'en', 1, 'https://ror.org/0033y0972 Fairview Lakes Medical Center'),
(80102, 'https://ror.org/0034mdn74', 'en', 1, 'https://ror.org/0034mdn74 Adigrat University įŠ į‹²įŒįˆ«į‰µ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(80103, 'https://ror.org/003659f07', 'en', 1, 'https://ror.org/003659f07 Aksum University'),
(80104, 'https://ror.org/0037zb552', 'en', 1, 'https://ror.org/0037zb552 Madras Institute of Orthopaedics and Traumatology'),
(80105, 'https://ror.org/003br8b23', 'no_lang_code', 1, 'https://ror.org/003br8b23 Akebia Therapeutics (United States)'),
(80106, 'https://ror.org/003cbyt26', 'en', 1, 'https://ror.org/003cbyt26 Gansu Academy of Sciences ē”˜č‚ƒēœē§‘å­¦é™¢'),
(80107, 'https://ror.org/003dprh65', 'en', 1, 'https://ror.org/003dprh65 Black Hills Special Services Cooperative'),
(80108, 'https://ror.org/003eaqr04', 'en', 1, 'https://ror.org/003eaqr04 Technological University of the Mixteca Universidad Tecnológica de la Mixteca'),
(80109, 'https://ror.org/003edc064', 'en', 1, 'https://ror.org/003edc064 CorVita Science Foundation'),
(80110, 'https://ror.org/003f21n80', 'en', 1, 'https://ror.org/003f21n80 Institute of Geosciences'),
(80111, 'https://ror.org/003jt2t26', 'fr', 1, 'https://ror.org/003jt2t26 Centre ArchƩologique de la Grotte Scladina Scladina'),
(80112, 'https://ror.org/003jtew32', 'en', 1, 'https://ror.org/003jtew32 Japan Hospital Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē—…é™¢ä¼š'),
(80113, 'https://ror.org/003kqe171', 'en', 1, 'https://ror.org/003kqe171 Dominion University College'),
(80114, 'https://ror.org/003md6g43', 'no_lang_code', 1, 'https://ror.org/003md6g43 CYBO (Japan)'),
(80115, 'https://ror.org/003ngne20', 'en', 1, 'https://ror.org/003ngne20 Ochsner Health System'),
(80116, 'https://ror.org/003pa2681', 'en', 1, 'https://ror.org/003pa2681 Endocrinology Research Center ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½Š“Š¾ŠŗŃ€ŠøŠ½Š¾Š»Š¾Š³ŠøŠø'),
(80117, 'https://ror.org/003py2t79', 'en', 1, 'https://ror.org/003py2t79 Indian Academy of Pediatrics'),
(80118, 'https://ror.org/003pzts41', 'en', 1, 'https://ror.org/003pzts41 Turkish Society of Hematology Türk Hematoloji Derneği'),
(80119, 'https://ror.org/003q4as88', 'en', 1, 'https://ror.org/003q4as88 Kibale Chimpanzee Project'),
(80120, 'https://ror.org/003sgap07', 'en', 1, 'https://ror.org/003sgap07 Canadian Institute for International Peace and Security Centre d''Ʃtudes sur la paix et la sƩcuritƩ internationale'),
(80121, 'https://ror.org/003v97827', 'en', 1, 'https://ror.org/003v97827 Karst Waters Institute'),
(80122, 'https://ror.org/003x6t567', 'no_lang_code', 1, 'https://ror.org/003x6t567 Tango Therapeutics (United States)'),
(80123, 'https://ror.org/003xj6z62', 'es', 1, 'https://ror.org/003xj6z62 Escuela Nacional de Sanidad National School of Public Health'),
(80124, 'https://ror.org/003y2cj37', 'no_lang_code', 1, 'https://ror.org/003y2cj37 Q Chem (United States)'),
(80125, 'https://ror.org/003z0hw02', 'es', 1, 'https://ror.org/003z0hw02 Instituto Tecnológico de la Producción Technological Institute of Production'),
(80126, 'https://ror.org/003z23p70', 'en', 1, 'https://ror.org/003z23p70 Research Institute for Brain and Blood Vessels Akita åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē§‹ē”°ēœŒē«‹ē—…é™¢ę©Ÿę§‹ē§‹ē”°ēœŒē«‹č„³č”€ē®”ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(80127, 'https://ror.org/0042cyg15', 'no_lang_code', 1, 'https://ror.org/0042cyg15 Oiles (japan) ć‚Ŗć‚¤ćƒ¬ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(80128, 'https://ror.org/00453a208', 'en', 1, 'https://ror.org/00453a208 City University of New York Universidad de la Ciudad de Nueva York UniversitƩ de la Ville de New York'),
(80129, 'https://ror.org/0045e2c31', 'en', 1, 'https://ror.org/0045e2c31 National Hospital Organization Kochi National Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹é«˜ēŸ„ē—…é™¢'),
(80130, 'https://ror.org/0047bvr32', 'en', 1, 'https://ror.org/0047bvr32 National Security Agency'),
(80131, 'https://ror.org/004a5x173', 'en', 1, 'https://ror.org/004a5x173 King County Department of Natural Resources and Parks'),
(80132, 'https://ror.org/004cn7092', 'no_lang_code', 1, 'https://ror.org/004cn7092 NTT (United States)'),
(80133, 'https://ror.org/004edqb24', 'en', 1, 'https://ror.org/004edqb24 Health and Wellbeing Queensland'),
(80134, 'https://ror.org/004ehfq11', 'en', 1, 'https://ror.org/004ehfq11 Basir Eye Health Research Center'),
(80135, 'https://ror.org/004gg6s72', 'en', 1, 'https://ror.org/004gg6s72 Children''s Aid Society'),
(80136, 'https://ror.org/004h24333', 'no_lang_code', 1, 'https://ror.org/004h24333 CellFree Sciences (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ćƒ«ćƒ•ćƒŖćƒ¼ć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(80137, 'https://ror.org/004jbx603', 'es', 1, 'https://ror.org/004jbx603 Universidad TƩcnica de Cotopaxi'),
(80138, 'https://ror.org/004jfgt58', 'en', 1, 'https://ror.org/004jfgt58 Mason County District Library'),
(80139, 'https://ror.org/004m0sc28', 'en', 1, 'https://ror.org/004m0sc28 Center for Grain and Animal Health Research'),
(80140, 'https://ror.org/004qeec45', 'en', 1, 'https://ror.org/004qeec45 Dale Bumpers National Rice Research Center'),
(80141, 'https://ror.org/004qfsw40', 'en', 1, 'https://ror.org/004qfsw40 Salve Regina University'),
(80142, 'https://ror.org/004vanv95', 'en', 1, 'https://ror.org/004vanv95 China National Space Administration å›½å®¶čˆŖå¤©å±€'),
(80143, 'https://ror.org/004y4rj95', 'en', 1, 'https://ror.org/004y4rj95 Gordon Center for Medical Imaging'),
(80144, 'https://ror.org/004yeqt02', 'en', 1, 'https://ror.org/004yeqt02 South Atlantic Environmental Research Institute'),
(80145, 'https://ror.org/004ymwd44', 'fr', 1, 'https://ror.org/004ymwd44 Centre Pour le DƩveloppement des Vaccins-Mali'),
(80146, 'https://ror.org/004z16v08', 'en', 1, 'https://ror.org/004z16v08 Saint Louis College La Union'),
(80147, 'https://ror.org/00513r667', 'en', 1, 'https://ror.org/00513r667 Wellington Free Ambulance'),
(80148, 'https://ror.org/0051kfw19', 'en', 1, 'https://ror.org/0051kfw19 Montana Learning Center'),
(80149, 'https://ror.org/0051mnz48', 'en', 1, 'https://ror.org/0051mnz48 Khvalynsky National Park ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ парка «Євалынский»'),
(80150, 'https://ror.org/0051w2v06', 'en', 1, 'https://ror.org/0051w2v06 University of Engineering and Technology Lahore جامعہ ŪŁ†ŲÆŲ³ŪŒŲ§ŲŖ و طرزیات، Ł„Ų§ŪŁˆŲ±'),
(80151, 'https://ror.org/0051xhq65', 'en', 1, 'https://ror.org/0051xhq65 Chinese Academy of Science South America Center for Astronomy äø­å›½ē§‘å­¦é™¢å—ē¾Žå¤©ę–‡äø­åæƒ'),
(80152, 'https://ror.org/0054f1w39', 'en', 1, 'https://ror.org/0054f1w39 Arizona''s Public Universities'),
(80153, 'https://ror.org/00558ww90', 'en', 1, 'https://ror.org/00558ww90 Women in Sport'),
(80154, 'https://ror.org/0055wbw34', 'no_lang_code', 1, 'https://ror.org/0055wbw34 Matsuyama Shimin Hospital ę¾å±±åø‚ę°‘ē—…é™¢'),
(80155, 'https://ror.org/0058wy590', 'pt', 1, 'https://ror.org/0058wy590 Catholic University of Brasília Universidad Católica de Brasilia Universidade Católica de Brasília'),
(80156, 'https://ror.org/0059xpe44', 'no_lang_code', 1, 'https://ror.org/0059xpe44 Kaken Pharmaceutical (Japan) ē§‘ē ”č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(80157, 'https://ror.org/005bx3y85', 'en', 1, 'https://ror.org/005bx3y85 Elman Retina Group'),
(80158, 'https://ror.org/005cjg181', 'en', 1, 'https://ror.org/005cjg181 Global Forum for Health Research'),
(80159, 'https://ror.org/005eaq331', 'no_lang_code', 1, 'https://ror.org/005eaq331 DXC Technology (Denmark)'),
(80160, 'https://ror.org/005ha3085', 'no_lang_code', 1, 'https://ror.org/005ha3085 Atrad (Australia)'),
(80161, 'https://ror.org/005hf4246', 'en', 1, 'https://ror.org/005hf4246 Tohoku University of Community Service and Science ę±åŒ—å…¬ē›Šę–‡ē§‘å¤§å­¦'),
(80162, 'https://ror.org/005k57c98', 'eu', 1, 'https://ror.org/005k57c98 Basque Summer University Udako Euskal Unibertsitatea Universidad Vasca de Verano UniversitƩ basque d''ƩtƩ'),
(80163, 'https://ror.org/005kqqf02', 'en', 1, 'https://ror.org/005kqqf02 Northern Plains Agricultural Research Laboratory'),
(80164, 'https://ror.org/005kw6t15', 'no_lang_code', 1, 'https://ror.org/005kw6t15 Infineon Technologies (Germany)'),
(80165, 'https://ror.org/005msw364', 'en', 1, 'https://ror.org/005msw364 African Studies Association'),
(80166, 'https://ror.org/005n36371', 'en', 1, 'https://ror.org/005n36371 Danish Medical Association LƦgeforeningen'),
(80167, 'https://ror.org/005nbjh06', 'en', 1, 'https://ror.org/005nbjh06 Southwest Minnesota State University'),
(80168, 'https://ror.org/005ns7397', 'en', 1, 'https://ror.org/005ns7397 Nara Prefectural Institute of Public Health Research Center å„ˆč‰ÆēœŒäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(80169, 'https://ror.org/005pdtr14', 'en', 1, 'https://ror.org/005pdtr14 Japan International Research Center for Agricultural Sciences å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½éš›č¾²ęž—ę°“ē”£ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(80170, 'https://ror.org/005pfhc08', 'en', 1, 'https://ror.org/005pfhc08 Senckenberg Centre for Human Evolution and Palaeoenvironment'),
(80171, 'https://ror.org/005pxs112', 'no_lang_code', 1, 'https://ror.org/005pxs112 Veritas (Italy)'),
(80172, 'https://ror.org/005qv5j28', 'en', 1, 'https://ror.org/005qv5j28 Fundación Mundial de Diabetes Fundação Mundial de Diabetes World Diabetes Foundation'),
(80173, 'https://ror.org/005r1rh48', 'en', 1, 'https://ror.org/005r1rh48 New Guinea Highland Wild Dog Foundation'),
(80174, 'https://ror.org/005re7g62', 'sv', 1, 'https://ror.org/005re7g62 Jubileumskliniken Cancerfond'),
(80175, 'https://ror.org/005rvws84', 'en', 1, 'https://ror.org/005rvws84 Chiang Rai Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąøŠąøµąø¢ąø‡ąø£ąø²ąø¢'),
(80176, 'https://ror.org/005t89q56', 'en', 1, 'https://ror.org/005t89q56 Allergy Clinic of Tulsa'),
(80177, 'https://ror.org/005vg3k81', 'en', 1, 'https://ror.org/005vg3k81 North American Society for Pediatric Gastroenterology, Hepatology, and Nutrition'),
(80178, 'https://ror.org/005wzfh51', 'en', 1, 'https://ror.org/005wzfh51 SKiN Health'),
(80179, 'https://ror.org/005x9g035', 'en', 1, 'https://ror.org/005x9g035 Colorado School of Public Health'),
(80180, 'https://ror.org/005xkwy83', 'en', 1, 'https://ror.org/005xkwy83 Tokyo Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ę±äŗ¬åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(80181, 'https://ror.org/005y23t65', 'de', 1, 'https://ror.org/005y23t65 Schƶn Klinik Vogtareuth'),
(80182, 'https://ror.org/00649xp69', 'no_lang_code', 1, 'https://ror.org/00649xp69 Towa Pharmaceutical (Japan) ę±å’Œč–¬å“ę Ŗå¼ä¼šē¤¾'),
(80183, 'https://ror.org/0067vtw10', 'no_lang_code', 1, 'https://ror.org/0067vtw10 Wren Therapeutics (United Kingdom)'),
(80184, 'https://ror.org/00687yy04', 'en', 1, 'https://ror.org/00687yy04 Envoi Specialist Pathologists'),
(80185, 'https://ror.org/006bmx089', 'en', 1, 'https://ror.org/006bmx089 University of Southern Indiana UniversitƩ de l''indiana du sud'),
(80186, 'https://ror.org/006fvbd84', 'en', 1, 'https://ror.org/006fvbd84 Delaware Museum of Nature and Science'),
(80187, 'https://ror.org/006gczr33', 'no_lang_code', 1, 'https://ror.org/006gczr33 ESI Group (Sweden)'),
(80188, 'https://ror.org/006hbbw23', 'en', 1, 'https://ror.org/006hbbw23 Ohio University Eastern'),
(80189, 'https://ror.org/006hzme35', 'no_lang_code', 1, 'https://ror.org/006hzme35 MicroPort (China)'),
(80190, 'https://ror.org/006p1hv79', 'en', 1, 'https://ror.org/006p1hv79 Bay Area Medical Center'),
(80191, 'https://ror.org/006qrck15', 'en', 1, 'https://ror.org/006qrck15 Newport Museum and Art Gallery'),
(80192, 'https://ror.org/006xm7s91', 'en', 1, 'https://ror.org/006xm7s91 Global Environment Facility'),
(80193, 'https://ror.org/0073v0y35', 'en', 1, 'https://ror.org/0073v0y35 London Biofoundry'),
(80194, 'https://ror.org/0073vwb23', 'en', 1, 'https://ror.org/0073vwb23 Home and Community Care Support Services Services de soutien Ć  domicile et en milieu communautaire'),
(80195, 'https://ror.org/0073w0m97', 'en', 1, 'https://ror.org/0073w0m97 Pasvik Nature Reserve Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник "Пасвик"'),
(80196, 'https://ror.org/0075e2n47', 'en', 1, 'https://ror.org/0075e2n47 Hoso Bunka Foundation å…¬ē›Šč²”å›£ę³•äŗŗę”¾é€ę–‡åŒ–åŸŗé‡‘'),
(80197, 'https://ror.org/0075f1c08', 'nl', 1, 'https://ror.org/0075f1c08 Artesis Plantijn Hogeschool Antwerpen'),
(80198, 'https://ror.org/0077rhe26', 'no_lang_code', 1, 'https://ror.org/0077rhe26 Cerecor (United States)'),
(80199, 'https://ror.org/0078bd381', 'en', 1, 'https://ror.org/0078bd381 University College London Qatar'),
(80200, 'https://ror.org/007a14354', 'en', 1, 'https://ror.org/007a14354 Beijing Aerospace Flight Control Center åŒ—äŗ¬čˆŖå¤©é£žč”ŒęŽ§åˆ¶äø­åæƒ'),
(80201, 'https://ror.org/007bdrf88', 'de', 1, 'https://ror.org/007bdrf88 Gesundheitsamt, Gesundheitsamt Frankfurt'),
(80202, 'https://ror.org/007bsba86', 'no_lang_code', 1, 'https://ror.org/007bsba86 UK EPC'),
(80203, 'https://ror.org/007c88108', 'en', 1, 'https://ror.org/007c88108 Tokyo Institute of Psychiatry č²”å›£ę³•äŗŗę±äŗ¬éƒ½åŒ»å­¦ē ”ē©¶ę©Ÿę§‹ę±äŗ¬éƒ½ē²¾ē„žåŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(80204, 'https://ror.org/007ecwd34', 'en', 1, 'https://ror.org/007ecwd34 Tyndall InstitiĆŗid Naisiunta Tyndall National Institute'),
(80205, 'https://ror.org/007ekx298', 'en', 1, 'https://ror.org/007ekx298 Government of Hungary'),
(80206, 'https://ror.org/007f5s288', 'en', 1, 'https://ror.org/007f5s288 Cabinet Office å†…é–£åŗœ'),
(80207, 'https://ror.org/007fea852', 'en', 1, 'https://ror.org/007fea852 Kostomuksha Nature Reserve ŠšŠ¾ŃŃ‚Š¾Š¼ŃƒŠŗŃˆŃŠŗŠøŠ¹ заповеГник'),
(80208, 'https://ror.org/007ge8322', 'en', 1, 'https://ror.org/007ge8322 Kumamoto City Hospital ē†Šęœ¬åø‚ē«‹ē†Šęœ¬åø‚ę°‘ē—…é™¢'),
(80209, 'https://ror.org/007gf6e19', 'en', 1, 'https://ror.org/007gf6e19 Huanggang Normal University é»„å†ˆåøˆčŒƒå­¦é™¢'),
(80210, 'https://ror.org/007h4qe29', 'en', 1, 'https://ror.org/007h4qe29 Tri-Service General Hospital äø‰č»ēø½é†«é™¢'),
(80211, 'https://ror.org/007k0m436', 'es', 1, 'https://ror.org/007k0m436 Corporación Universitaria Comfacauca - Unicomfacauca'),
(80212, 'https://ror.org/007pxvx88', 'en', 1, 'https://ror.org/007pxvx88 Daiwa Securities Health Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¤§å’ŒčØ¼åˆøćƒ˜ćƒ«ć‚¹č²”å›£'),
(80213, 'https://ror.org/007q4yk54', 'no_lang_code', 1, 'https://ror.org/007q4yk54 Gustavus Adolphus College'),
(80214, 'https://ror.org/007qqm030', 'no_lang_code', 1, 'https://ror.org/007qqm030 BioGaia (Sweden)'),
(80215, 'https://ror.org/007rkz355', 'no_lang_code', 1, 'https://ror.org/007rkz355 Open Ephys Production Site (Portugal)'),
(80216, 'https://ror.org/007vvce33', 'en', 1, 'https://ror.org/007vvce33 Aurora West Allis Medical Center'),
(80217, 'https://ror.org/007x72212', 'en', 1, 'https://ror.org/007x72212 First People’s Hospital of Jingmen č†é—Øåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(80218, 'https://ror.org/007xmz366', 'nl', 1, 'https://ror.org/007xmz366 Sint Franciscus Gasthuis'),
(80219, 'https://ror.org/007ygk571', 'en', 1, 'https://ror.org/007ygk571 Dystonia Medical Research Foundation Canada Fondation de Recherche MƩdicale sur la Dystonie'),
(80220, 'https://ror.org/00805am64', 'no_lang_code', 1, 'https://ror.org/00805am64 RTI Surgical (United States)'),
(80221, 'https://ror.org/00805ky43', 'no_lang_code', 1, 'https://ror.org/00805ky43 The Centre for Health (New Zealand)'),
(80222, 'https://ror.org/0085d9t86', 'en', 1, 'https://ror.org/0085d9t86 Xavier University of Louisiana'),
(80223, 'https://ror.org/00863x694', 'en', 1, 'https://ror.org/00863x694 Nepal Academy of Science and Technology'),
(80224, 'https://ror.org/0086bb350', 'en', 1, 'https://ror.org/0086bb350 Einstein Center Digital Future'),
(80225, 'https://ror.org/008971d44', 'en', 1, 'https://ror.org/008971d44 Ibrahim Cardiac Hospital & Research Institute ą¦‡ą¦¬ą§ą¦°ą¦¾ą¦¹ą¦æą¦® ą¦•ą¦¾ą¦°ą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦• হসপিটাল ą¦ą¦Øą§ą¦” ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(80226, 'https://ror.org/0089es913', 'en', 1, 'https://ror.org/0089es913 The Julian Centre'),
(80227, 'https://ror.org/008b1vj68', 'es', 1, 'https://ror.org/008b1vj68 Instituto de Astronomía Teórica y Experimental'),
(80228, 'https://ror.org/008cac740', 'de', 1, 'https://ror.org/008cac740 Rhƶn-Klinikum'),
(80229, 'https://ror.org/008f3q107', 'no_lang_code', 1, 'https://ror.org/008f3q107 ResearchGate'),
(80230, 'https://ror.org/008f5wa49', 'no_lang_code', 1, 'https://ror.org/008f5wa49 Nichias (Japan) ćƒ‹ćƒć‚¢ć‚¹ę Ŗå¼ä¼šē¤¾'),
(80231, 'https://ror.org/008fdbn61', 'fr', 1, 'https://ror.org/008fdbn61 Institut de CancƩrologie Strasbourg'),
(80232, 'https://ror.org/008fp3016', 'en', 1, 'https://ror.org/008fp3016 Potomac Institute for Policy Studies'),
(80233, 'https://ror.org/008gfj249', 'en', 1, 'https://ror.org/008gfj249 London Road Community Hospital'),
(80234, 'https://ror.org/008hagh90', 'en', 1, 'https://ror.org/008hagh90 Association Nationale qui Représente les Intérêts Communs des Services Publics Canadian Water and Wastewater Association'),
(80235, 'https://ror.org/008kt5750', 'no_lang_code', 1, 'https://ror.org/008kt5750 Symphogen (Denmark)'),
(80236, 'https://ror.org/008nhcy02', 'sv', 1, 'https://ror.org/008nhcy02 Upplandsmuseet, Upplandsmuseum متحف Ų£ŁˆŲØŁ„Ų§Ł†ŲÆ'),
(80237, 'https://ror.org/008pp7a77', 'de', 1, 'https://ror.org/008pp7a77 Institut für Zeitgeschichte München–Berlin Institute for Contemporary History München–Berlin, Institute of Contemporary History, Leibniz Institute for Contemporary History (IfZ)'),
(80238, 'https://ror.org/008qvpg94', 'en', 1, 'https://ror.org/008qvpg94 Ural State Academy of Architecture and Arts Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(80239, 'https://ror.org/008s67533', 'no_lang_code', 1, 'https://ror.org/008s67533 Institut MƩrieux (France)'),
(80240, 'https://ror.org/008t1c044', 'en', 1, 'https://ror.org/008t1c044 Gujarat Cancer Society ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤•ą„ˆą¤‚ą¤øą¤° ą¤øą„‹ą¤øą¤¾ą¤‡ą¤Ÿą„€'),
(80241, 'https://ror.org/008xr9260', 'de', 1, 'https://ror.org/008xr9260 Institut für Bewusstseins- und Traumforschung'),
(80242, 'https://ror.org/008zyts17', 'no_lang_code', 1, 'https://ror.org/008zyts17 Mito Saiseikai General Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šę°“ęˆøęøˆē”Ÿä¼šē·åˆē—…é™¢'),
(80243, 'https://ror.org/008zz8m46', 'en', 1, 'https://ror.org/008zz8m46 Nagoya University Hospital åå¤å±‹å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(80244, 'https://ror.org/009026n40', 'en', 1, 'https://ror.org/009026n40 Fatima Jinnah Women University جامعہ فاطمہ جناح ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ†'),
(80245, 'https://ror.org/0091hm651', 'en', 1, 'https://ror.org/0091hm651 Universitas Pattimura University of Pattimura'),
(80246, 'https://ror.org/00924z688', 'en', 1, 'https://ror.org/00924z688 Institute of Arctic and Alpine Research'),
(80247, 'https://ror.org/0093wey45', 'en', 1, 'https://ror.org/0093wey45 Alberta Barley'),
(80248, 'https://ror.org/009436s82', 'en', 1, 'https://ror.org/009436s82 Monash University Prato Centre Palazzo Vai'),
(80249, 'https://ror.org/00971b260', 'no_lang_code', 1, 'https://ror.org/00971b260 DeepMind (United Kingdom)'),
(80250, 'https://ror.org/0098syn68', 'de', 1, 'https://ror.org/0098syn68 Rostocker Zentrum zur Erforschung des Demografischen Wandels'),
(80251, 'https://ror.org/009a03q22', 'en', 1, 'https://ror.org/009a03q22 Main Center of Special Monitoring Головний центр ŃŠæŠµŃ†Ń–Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŽ'),
(80252, 'https://ror.org/009cyv989', 'en', 1, 'https://ror.org/009cyv989 Aga Khan Development Network'),
(80253, 'https://ror.org/009df1343', 'no_lang_code', 1, 'https://ror.org/009df1343 Regenxbio (United States)'),
(80254, 'https://ror.org/009eea568', 'en', 1, 'https://ror.org/009eea568 National Institution for Finance and Development å›½å®¶é‡‘čžäøŽå‘å±•å®žéŖŒå®¤'),
(80255, 'https://ror.org/009ev1878', 'en', 1, 'https://ror.org/009ev1878 KuDos'),
(80256, 'https://ror.org/009fk3b63', 'en', 1, 'https://ror.org/009fk3b63 Portsmouth Hospitals NHS Trust'),
(80257, 'https://ror.org/009jfs928', 'en', 1, 'https://ror.org/009jfs928 Mapi Research Trust'),
(80258, 'https://ror.org/009jy0c86', 'en', 1, 'https://ror.org/009jy0c86 Anshun University'),
(80259, 'https://ror.org/009kqch10', 'en', 1, 'https://ror.org/009kqch10 Norwegian Public Roads Administration'),
(80260, 'https://ror.org/009mwwv16', 'no_lang_code', 1, 'https://ror.org/009mwwv16 AZTERLAN AZTERLAN Centro de Investigación Metalúrgica AZTERLAN Metalurgia Ikerketa Zentroa'),
(80261, 'https://ror.org/009p8zv69', 'en', 1, 'https://ror.org/009p8zv69 King Abdullah International Medical Research Center'),
(80262, 'https://ror.org/009pzqe60', 'no_lang_code', 1, 'https://ror.org/009pzqe60 Cosmote (Greece)'),
(80263, 'https://ror.org/009r7tw40', 'en', 1, 'https://ror.org/009r7tw40 Cyto Labs'),
(80264, 'https://ror.org/009rk8684', 'no_lang_code', 1, 'https://ror.org/009rk8684 Kiwa (Germany)'),
(80265, 'https://ror.org/009tnsj43', 'en', 1, 'https://ror.org/009tnsj43 Newman University'),
(80266, 'https://ror.org/009wx7055', 'en', 1, 'https://ror.org/009wx7055 USA Mitchell Cancer Institute'),
(80267, 'https://ror.org/009x65438', 'en', 1, 'https://ror.org/009x65438 Mukogawa Women''s University ę­¦åŗ«å·å„³å­å¤§å­¦'),
(80268, 'https://ror.org/009xkwz08', 'en', 1, 'https://ror.org/009xkwz08 San Joaquin Valley Agricultural Sciences Center'),
(80269, 'https://ror.org/009yp5907', 'no_lang_code', 1, 'https://ror.org/009yp5907 HiFiBiO Therapeutics (United States)'),
(80270, 'https://ror.org/009z2z347', 'no_lang_code', 1, 'https://ror.org/009z2z347 Kowa (Japan) čˆˆå’Œę Ŗå¼ä¼šē¤¾'),
(80271, 'https://ror.org/00a0n3690', 'en', 1, 'https://ror.org/00a0n3690 Commonweal'),
(80272, 'https://ror.org/00a1e9e96', 'no_lang_code', 1, 'https://ror.org/00a1e9e96 Horiba (Japan) ę Ŗå¼ä¼šē¤¾å €å “č£½ä½œę‰€'),
(80273, 'https://ror.org/00a2x9d51', 'en', 1, 'https://ror.org/00a2x9d51 National Clinical Research Center for Digestive Diseases å›½å®¶ę¶ˆåŒ–ē³»ē»Ÿē–¾ē—…äø“åŗŠåŒ»å­¦ē ”ē©¶äø­åæƒ'),
(80274, 'https://ror.org/00a4fk439', 'en', 1, 'https://ror.org/00a4fk439 Phycological Society of America'),
(80275, 'https://ror.org/00a7kn731', 'en', 1, 'https://ror.org/00a7kn731 Kushiro Junior College é‡§č·ÆēŸ­ęœŸå¤§å­¦'),
(80276, 'https://ror.org/00a7vgh58', 'de', 1, 'https://ror.org/00a7vgh58 Max-Planck-Institut für Kohlenforschung'),
(80277, 'https://ror.org/00abc2c86', 'en', 1, 'https://ror.org/00abc2c86 FƩdƩration Internationale du Vieillissement International Federation on Ageing'),
(80278, 'https://ror.org/00abnnq69', 'no_lang_code', 1, 'https://ror.org/00abnnq69 Hexal (Germany)'),
(80279, 'https://ror.org/00ac63h31', 'en', 1, 'https://ror.org/00ac63h31 International Institute of Tropical Agriculture المعهد Ų§Ł„ŲÆŁˆŁ„ŁŠ للزراعة Ų§Ł„Ų§Ų³ŲŖŁˆŲ§Ų¦ŁŠŲ©'),
(80280, 'https://ror.org/00ads0y69', 'es', 1, 'https://ror.org/00ads0y69 Universidad Autónoma Agraria Antonio Narro'),
(80281, 'https://ror.org/00aggce03', 'en', 1, 'https://ror.org/00aggce03 Indian Institute of Packaging ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ˆą¤•ą„‡ą¤œą¤æą¤‚ą¤— ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(80282, 'https://ror.org/00am3vk94', 'en', 1, 'https://ror.org/00am3vk94 Willis-Knighton Cancer Center'),
(80283, 'https://ror.org/00anb1726', 'no_lang_code', 1, 'https://ror.org/00anb1726 Vertex Pharmaceuticals (United States)'),
(80284, 'https://ror.org/00aqw3z26', 'fr', 1, 'https://ror.org/00aqw3z26 CollĆØge St-Michel Kollegium St. Michael'),
(80285, 'https://ror.org/00as45r68', 'en', 1, 'https://ror.org/00as45r68 Ministerio de Economía, Fomento y Reconstrucción de Chile Ministry of Economy, Development and Tourism'),
(80286, 'https://ror.org/00ax0a039', 'en', 1, 'https://ror.org/00ax0a039 The Hersh Foundation'),
(80287, 'https://ror.org/00axqt112', 'no_lang_code', 1, 'https://ror.org/00axqt112 Hindustan Petroleum Corporation Limited (India) ą¤¹ą¤æą¤Øą„ą¤¦ą„ą¤øą„ą¤¤ą¤¾ą¤Ø ą¤Ŗą„‡ą¤Ÿą„ą¤°ą„‹ą¤²ą¤æą¤Æą¤® निगम ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(80288, 'https://ror.org/00b0fqv31', 'en', 1, 'https://ror.org/00b0fqv31 D-Tree International'),
(80289, 'https://ror.org/00b0m7v78', 'no_lang_code', 1, 'https://ror.org/00b0m7v78 Institute of Reactor Materials (Russia) Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š Š•ŠŠšŠ¢ŠžŠ ŠŠ«Š„ ŠœŠŠ¢Š•Š Š˜ŠŠ›ŠžŠ’'),
(80290, 'https://ror.org/00b0p4j69', 'en', 1, 'https://ror.org/00b0p4j69 Ministry of Land, Infrastructure, Transport and Tourism å›½åœŸäŗ¤é€šēœ'),
(80291, 'https://ror.org/00b1tsa05', 'no_lang_code', 1, 'https://ror.org/00b1tsa05 Tata Motors (India)'),
(80292, 'https://ror.org/00b2nf889', 'en', 1, 'https://ror.org/00b2nf889 Amhara Regional Health Bureau'),
(80293, 'https://ror.org/00b31g692', 'en', 1, 'https://ror.org/00b31g692 Barts Health NHS Trust'),
(80294, 'https://ror.org/00b4ram58', 'no_lang_code', 1, 'https://ror.org/00b4ram58 Mercedes-Benz Research and Development North America (United States)'),
(80295, 'https://ror.org/00b6kjb41', 'en', 1, 'https://ror.org/00b6kjb41 New York State Office for People With Developmental Disabilities'),
(80296, 'https://ror.org/00b6s9f18', 'en', 1, 'https://ror.org/00b6s9f18 Osaka National Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å¤§é˜ŖåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(80297, 'https://ror.org/00b93bs30', 'en', 1, 'https://ror.org/00b93bs30 American Astronomical Society'),
(80298, 'https://ror.org/00b9pg524', 'en', 1, 'https://ror.org/00b9pg524 National Solar Observatory'),
(80299, 'https://ror.org/00baf2h95', 'id', 1, 'https://ror.org/00baf2h95 Universitas ''Aisyiyah Bandung'),
(80300, 'https://ror.org/00bavmx73', 'no_lang_code', 1, 'https://ror.org/00bavmx73 Nippon Flour Mills (Japan) ę—„ęœ¬č£½ē²‰ę Ŗå¼ä¼šē¤¾'),
(80301, 'https://ror.org/00bb55562', 'en', 1, 'https://ror.org/00bb55562 Kobe University Hospital ē„žęˆøå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(80302, 'https://ror.org/00bb88176', 'en', 1, 'https://ror.org/00bb88176 Institute of Public Health'),
(80303, 'https://ror.org/00bb9ch64', 'en', 1, 'https://ror.org/00bb9ch64 Indian Institute of Information Technology Guwahati ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€'),
(80304, 'https://ror.org/00be10k49', 'en', 1, 'https://ror.org/00be10k49 Moscow Academy of the Investigative Committee of the Russian Federation ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ДлеГственного ŠšŠ¾Š¼ŠøŃ‚ета Российской ФеГерации'),
(80305, 'https://ror.org/00be4tw47', 'en', 1, 'https://ror.org/00be4tw47 Vyzhnytsia National Nature Park ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГний парк Ā«Š’ŠøŠ¶Š½ŠøŃ†ŃŒŠŗŠøŠ¹Ā»'),
(80306, 'https://ror.org/00be8mn93', 'en', 1, 'https://ror.org/00be8mn93 Children’s Health Queensland Hospital and Health Service'),
(80307, 'https://ror.org/00besvm65', 'no_lang_code', 1, 'https://ror.org/00besvm65 Technicolor (Germany)'),
(80308, 'https://ror.org/00bgr8r13', 'en', 1, 'https://ror.org/00bgr8r13 Puerto Rico Space Grant Consortium'),
(80309, 'https://ror.org/00bhf8j88', 'en', 1, 'https://ror.org/00bhf8j88 Nara Prefecture General Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå„ˆč‰ÆēœŒē«‹ē—…é™¢ę©Ÿę§‹å„ˆč‰ÆēœŒē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(80310, 'https://ror.org/00bj0r217', 'en', 1, 'https://ror.org/00bj0r217 Max Planck Institute for Security and Privacy Max-Planck-Institut für Sicherheit und Privatsphäre'),
(80311, 'https://ror.org/00bjpkw56', 'en', 1, 'https://ror.org/00bjpkw56 Bangladesh Wheat and Maize Research Institute বাংলাদেশ গম ও ą¦­ą§ą¦Ÿą§ą¦Ÿą¦¾ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(80312, 'https://ror.org/00bke8n58', 'en', 1, 'https://ror.org/00bke8n58 Geoscience BC'),
(80313, 'https://ror.org/00bnq0b88', 'en', 1, 'https://ror.org/00bnq0b88 Oklahoma Department of Wildlife Conservation'),
(80314, 'https://ror.org/00bpkwt94', 'es', 1, 'https://ror.org/00bpkwt94 Centro MƩdico Bustos Fernandez'),
(80315, 'https://ror.org/00bqrh472', 'es', 1, 'https://ror.org/00bqrh472 Autonomous University of Ica Universidad Autónoma de Ica'),
(80316, 'https://ror.org/00brjxm92', 'fr', 1, 'https://ror.org/00brjxm92 Institut Salah-AzaĆÆz'),
(80317, 'https://ror.org/00bt7we59', 'es', 1, 'https://ror.org/00bt7we59 Colegio MƩdico de Chile Medical College of Chile'),
(80318, 'https://ror.org/00bt9we26', 'en', 1, 'https://ror.org/00bt9we26 Ministry of Public Security of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½å…¬å®‰éƒØ'),
(80319, 'https://ror.org/00bv4cx53', 'en', 1, 'https://ror.org/00bv4cx53 Botanic Garden and Botanical Museum Berlin Botanischer Garten und Botanisches Museum Berlin'),
(80320, 'https://ror.org/00bv64a69', 'en', 1, 'https://ror.org/00bv64a69 Japanese Foundation For Cancer Research å…¬ē›Šč²”å›£ę³•äŗŗćŒć‚“ē ”ē©¶ä¼š'),
(80321, 'https://ror.org/00bw2gb04', 'en', 1, 'https://ror.org/00bw2gb04 Institute of Transportation and Logistic Trisakti'),
(80322, 'https://ror.org/00bx04e70', 'no_lang_code', 1, 'https://ror.org/00bx04e70 Dopavision (Germany)'),
(80323, 'https://ror.org/00bypm595', 'en', 1, 'https://ror.org/00bypm595 Cardiovascular Center Bethanien'),
(80324, 'https://ror.org/00c0zxf82', 'en', 1, 'https://ror.org/00c0zxf82 National Wildlife Federation'),
(80325, 'https://ror.org/00c1dt378', 'en', 1, 'https://ror.org/00c1dt378 Queensland Health'),
(80326, 'https://ror.org/00c1h4g48', 'en', 1, 'https://ror.org/00c1h4g48 Rockwool Fonden Rockwool Foundation'),
(80327, 'https://ror.org/00c2h6p86', 'no_lang_code', 1, 'https://ror.org/00c2h6p86 Texas Instruments (Japan) ę—„ęœ¬ćƒ†ć‚­ć‚µć‚¹ćƒ»ć‚¤ćƒ³ć‚¹ćƒ„ćƒ«ćƒ”ćƒ³ćƒ„ę Ŗå¼ä¼šē¤¾'),
(80328, 'https://ror.org/00c32gy34', 'es', 1, 'https://ror.org/00c32gy34 Universidad de Sonora University of Sonora'),
(80329, 'https://ror.org/00c4ncp37', 'en', 1, 'https://ror.org/00c4ncp37 Aichi Human Service Center ę„›ēŸ„ēœŒåæƒčŗ«éšœå®³č€…ć‚³ćƒ­ćƒ‹ćƒ¼'),
(80330, 'https://ror.org/00c5bvm83', 'en', 1, 'https://ror.org/00c5bvm83 Belfast City Council'),
(80331, 'https://ror.org/00c77q313', 'es', 1, 'https://ror.org/00c77q313 Red de Investigación en Sida'),
(80332, 'https://ror.org/00c7x4a95', 'en', 1, 'https://ror.org/00c7x4a95 Dalian Polytechnic University å¤§čæžå·„äøšå¤§å­¦'),
(80333, 'https://ror.org/00c8e6e47', 'en', 1, 'https://ror.org/00c8e6e47 National University of Northwestern Buenos Aires Universidad Nacional del Noroeste de la Provincia de Buenos Aires'),
(80334, 'https://ror.org/00c952d06', 'en', 1, 'https://ror.org/00c952d06 New York Foundation for the Arts'),
(80335, 'https://ror.org/00ca65425', 'fr', 1, 'https://ror.org/00ca65425 ThƩorie et Histoire des Arts et des LittƩratures de la ModernitƩ'),
(80336, 'https://ror.org/00cahhs35', 'en', 1, 'https://ror.org/00cahhs35 Northwest Watershed Research Center'),
(80337, 'https://ror.org/00cbr6959', 'de', 1, 'https://ror.org/00cbr6959 Hirslanden Klinik Im Park'),
(80338, 'https://ror.org/00cgnj660', 'en', 1, 'https://ror.org/00cgnj660 Ted Rogers Centre for Heart Research'),
(80339, 'https://ror.org/00cgxnn80', 'en', 1, 'https://ror.org/00cgxnn80 Society for Mathematical Biology'),
(80340, 'https://ror.org/00ch3t340', 'no_lang_code', 1, 'https://ror.org/00ch3t340 CRB Innovations (Canada)'),
(80341, 'https://ror.org/00cjb8p81', 'nl', 1, 'https://ror.org/00cjb8p81 GGD Brabant-Zuidoost'),
(80342, 'https://ror.org/00cmyqz09', 'en', 1, 'https://ror.org/00cmyqz09 Civicus'),
(80343, 'https://ror.org/00cqhgk75', 'en', 1, 'https://ror.org/00cqhgk75 Surgical Infection Society of Europe'),
(80344, 'https://ror.org/00cqpd580', 'fr', 1, 'https://ror.org/00cqpd580 Institut des MatƩriaux Jean Rouxel Institute of Materials Jean Rouxel'),
(80345, 'https://ror.org/00cqzm681', 'no_lang_code', 1, 'https://ror.org/00cqzm681 MatTek (Slovakia)'),
(80346, 'https://ror.org/00csayb94', 'en', 1, 'https://ror.org/00csayb94 Dallas Plastic Surgery Institute'),
(80347, 'https://ror.org/00ct41p88', 'en', 1, 'https://ror.org/00ct41p88 The Gottman Institute'),
(80348, 'https://ror.org/00ct9cz38', 'en', 1, 'https://ror.org/00ct9cz38 Eastern Institute of Technology'),
(80349, 'https://ror.org/00cv8gc24', 'no_lang_code', 1, 'https://ror.org/00cv8gc24 ENPICOM (Netherlands)'),
(80350, 'https://ror.org/00cvzzg84', 'no_lang_code', 1, 'https://ror.org/00cvzzg84 Incyte (United States)'),
(80351, 'https://ror.org/00cxkrp74', 'en', 1, 'https://ror.org/00cxkrp74 Children’s Minnesota - St. Paul Hospital'),
(80352, 'https://ror.org/00czkns73', 'en', 1, 'https://ror.org/00czkns73 St Mary''s Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé›Ŗć®č–ęÆä¼šč–ćƒžćƒŖć‚¢ē—…é™¢'),
(80353, 'https://ror.org/00d062t77', 'en', 1, 'https://ror.org/00d062t77 Bank for International Settlements Bank für Internationalen Zahlungsausgleich'),
(80354, 'https://ror.org/00d1evr30', 'en', 1, 'https://ror.org/00d1evr30 Central Power Research Institute'),
(80355, 'https://ror.org/00d25af97', 'en', 1, 'https://ror.org/00d25af97 Pontificia y Real Universidad de Santo TomƔs University of Santo Tomas'),
(80356, 'https://ror.org/00d3dc551', 'no_lang_code', 1, 'https://ror.org/00d3dc551 Megaputer Intelligence (United States)'),
(80357, 'https://ror.org/00d3mr981', 'en', 1, 'https://ror.org/00d3mr981 Fukuoka University Hospital ē¦å²”å¤§å­¦ē—…é™¢'),
(80358, 'https://ror.org/00d6bdx78', 'en', 1, 'https://ror.org/00d6bdx78 Ontario Society of Occupational Therapists'),
(80359, 'https://ror.org/00d7z6755', 'es', 1, 'https://ror.org/00d7z6755 Fundación Biodiversidad'),
(80360, 'https://ror.org/00d801g55', 'no_lang_code', 1, 'https://ror.org/00d801g55 Ipsen (France)'),
(80361, 'https://ror.org/00d89k312', 'no_lang_code', 1, 'https://ror.org/00d89k312 Wearifi (United States)');
INSERT INTO `rors` VALUES
(80362, 'https://ror.org/00d9nf164', 'es', 1, 'https://ror.org/00d9nf164 Fundación Grupo para la Investigación, Formación, y Edición Transdisciplinar'),
(80363, 'https://ror.org/00datzr31', 'en', 1, 'https://ror.org/00datzr31 CW+'),
(80364, 'https://ror.org/00dc6rr74', 'en', 1, 'https://ror.org/00dc6rr74 Tri-Service General Hospital Beitou Branch äø‰č»ēø½é†«é™¢åŒ—ęŠ•åˆ†é™¢'),
(80365, 'https://ror.org/00dc87r24', 'en', 1, 'https://ror.org/00dc87r24 Genki Plaza Medical Center for Health Care'),
(80366, 'https://ror.org/00ddgbf74', 'nl', 1, 'https://ror.org/00ddgbf74 Long Fonds'),
(80367, 'https://ror.org/00det5k42', 'no_lang_code', 1, 'https://ror.org/00det5k42 Nepal Institute of Research and Communications (NIRC)'),
(80368, 'https://ror.org/00devjr72', 'pt', 1, 'https://ror.org/00devjr72 Federal University of SĆ£o Francisco Valley Universidade Federal do Vale do SĆ£o Francisco'),
(80369, 'https://ror.org/00dewa944', 'en', 1, 'https://ror.org/00dewa944 Stone Soup Group'),
(80370, 'https://ror.org/00dfvzs39', 'no_lang_code', 1, 'https://ror.org/00dfvzs39 Swiss Re (United States)'),
(80371, 'https://ror.org/00dgmsj78', 'en', 1, 'https://ror.org/00dgmsj78 Clifford Craig Foundation'),
(80372, 'https://ror.org/00dk0pe94', 'en', 1, 'https://ror.org/00dk0pe94 Randall University'),
(80373, 'https://ror.org/00dnats08', 'no_lang_code', 1, 'https://ror.org/00dnats08 Opris Consulting (United States)'),
(80374, 'https://ror.org/00dq0yr94', 'no_lang_code', 1, 'https://ror.org/00dq0yr94 Sound Agriculture (United States)'),
(80375, 'https://ror.org/00dre6z66', 'en', 1, 'https://ror.org/00dre6z66 Guangdong Industry Technical College å¹æäøœč½»å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(80376, 'https://ror.org/00dt6a694', 'fr', 1, 'https://ror.org/00dt6a694 Centre Hospitalier de Perpignan'),
(80377, 'https://ror.org/00dt9qb91', 'en', 1, 'https://ror.org/00dt9qb91 Illawarra Health and Medical Research Institute'),
(80378, 'https://ror.org/00dtsha18', 'no_lang_code', 1, 'https://ror.org/00dtsha18 Neomorph'),
(80379, 'https://ror.org/00dvtcv48', 'en', 1, 'https://ror.org/00dvtcv48 International Institute of Tropical Agriculture'),
(80380, 'https://ror.org/00dw1q752', 'en', 1, 'https://ror.org/00dw1q752 Experimental Psychology Society'),
(80381, 'https://ror.org/00dwmat08', 'no_lang_code', 1, 'https://ror.org/00dwmat08 CellOxess (United States)'),
(80382, 'https://ror.org/00dxzfw25', 'pl', 1, 'https://ror.org/00dxzfw25 Institute of Agricultural and Forest Environment Instytut Środowiska Rolniczego i Leśnego Polskiej Akademii Nauk'),
(80383, 'https://ror.org/00dy5wm60', 'no_lang_code', 1, 'https://ror.org/00dy5wm60 Fidia Farmaceutici (Italy)'),
(80384, 'https://ror.org/00dyhkz14', 'no_lang_code', 1, 'https://ror.org/00dyhkz14 Istanbul Retina Institute (Turkey)'),
(80385, 'https://ror.org/00dyv8n62', 'no_lang_code', 1, 'https://ror.org/00dyv8n62 Sailbri Cooper (United States)'),
(80386, 'https://ror.org/00e0zd560', 'en', 1, 'https://ror.org/00e0zd560 Bulletin canadien d''histoire de la mƩdecine Canadian Bulletin of Medical History'),
(80387, 'https://ror.org/00e18hs98', 'no_lang_code', 1, 'https://ror.org/00e18hs98 Niigata Cancer Center Hospital ę–°ę½ŸēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼ę–°ę½Ÿē—…é™¢'),
(80388, 'https://ror.org/00e1ah625', 'en', 1, 'https://ror.org/00e1ah625 Psihijatrijska Bolnica Sveti Ivan Psychiatric Hospital Sveti Ivan'),
(80389, 'https://ror.org/00e27px16', 'no_lang_code', 1, 'https://ror.org/00e27px16 Meito Sangyo (Japan)'),
(80390, 'https://ror.org/00e2fg256', 'no_lang_code', 1, 'https://ror.org/00e2fg256 Biogemma (France)'),
(80391, 'https://ror.org/00e2m4m53', 'en', 1, 'https://ror.org/00e2m4m53 Individual Development and Adaptive Education'),
(80392, 'https://ror.org/00e372137', 'en', 1, 'https://ror.org/00e372137 International Severe Acute Respiratory and Emerging Infection Consortium'),
(80393, 'https://ror.org/00e55tr36', 'no_lang_code', 1, 'https://ror.org/00e55tr36 Biortus (China)'),
(80394, 'https://ror.org/00e5yzw53', 'en', 1, 'https://ror.org/00e5yzw53 St. Luke''s International University č–č·ÆåŠ å›½éš›å¤§å­¦'),
(80395, 'https://ror.org/00e76kv63', 'en', 1, 'https://ror.org/00e76kv63 Alliance for International Medical Action'),
(80396, 'https://ror.org/00e7apb48', 'en', 1, 'https://ror.org/00e7apb48 ASTRO-3D'),
(80397, 'https://ror.org/00e7cvg05', 'en', 1, 'https://ror.org/00e7cvg05 Rajiv Gandhi Cancer Institute and Research Centre'),
(80398, 'https://ror.org/00e7ec781', 'en', 1, 'https://ror.org/00e7ec781 United States Department of Agriculture Climate Hubs'),
(80399, 'https://ror.org/00e8gtn74', 'en', 1, 'https://ror.org/00e8gtn74 Evolve Restorative Center'),
(80400, 'https://ror.org/00eaa9p67', 'no_lang_code', 1, 'https://ror.org/00eaa9p67 Corin (United Kingdom)'),
(80401, 'https://ror.org/00ecg5g90', 'no_lang_code', 1, 'https://ror.org/00ecg5g90 Seirei Mikatabara General Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£ē·åˆē—…é™¢č–éš·äø‰ę–¹åŽŸē—…é™¢'),
(80402, 'https://ror.org/00edmjc06', 'en', 1, 'https://ror.org/00edmjc06 American Society for Investigative Pathology'),
(80403, 'https://ror.org/00edrn755', 'en', 1, 'https://ror.org/00edrn755 Hvidovre Hospital'),
(80404, 'https://ror.org/00efwap41', 'en', 1, 'https://ror.org/00efwap41 Global Energy Interconnection Research Institute North America'),
(80405, 'https://ror.org/00eg0bk82', 'en', 1, 'https://ror.org/00eg0bk82 Columbia VA Health Care System'),
(80406, 'https://ror.org/00eg2e012', 'en', 1, 'https://ror.org/00eg2e012 American Economic Association'),
(80407, 'https://ror.org/00ehy3272', 'en', 1, 'https://ror.org/00ehy3272 New Hope Fertility Center'),
(80408, 'https://ror.org/00ek68a72', 'en', 1, 'https://ror.org/00ek68a72 Faroe Islands National Museum Tjóðsavn Føroya'),
(80409, 'https://ror.org/00emrpf22', 'no_lang_code', 1, 'https://ror.org/00emrpf22 JenaValve (United States)'),
(80410, 'https://ror.org/00endtw77', 'no_lang_code', 1, 'https://ror.org/00endtw77 Alimera Sciences (United States)'),
(80411, 'https://ror.org/00envj504', 'en', 1, 'https://ror.org/00envj504 Associated Retinal Consultants'),
(80412, 'https://ror.org/00errak20', 'en', 1, 'https://ror.org/00errak20 Biro za metrologija Bureau of Metrology of Macedonia Byroja pĆ«r metrologji Š‘Š˜Š Šž ЗА ŠœŠ•Š¢Š ŠžŠ›ŠžŠ“Š˜ŠˆŠ'),
(80413, 'https://ror.org/00ev3nz67', 'en', 1, 'https://ror.org/00ev3nz67 Guizhou Academy of Agricultural Sciences č“µå·žēœå†œäøšē§‘å­¦é™¢'),
(80414, 'https://ror.org/00evhyq63', 'no_lang_code', 1, 'https://ror.org/00evhyq63 Amine Pharma (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒŸćƒ³ćƒ•ć‚”ćƒ¼ćƒžē ”ē©¶ę‰€'),
(80415, 'https://ror.org/00ew3z127', 'en', 1, 'https://ror.org/00ew3z127 IEDP Developing Leaders'),
(80416, 'https://ror.org/00ew7rg06', 'no_lang_code', 1, 'https://ror.org/00ew7rg06 MorphoSys (Germany)'),
(80417, 'https://ror.org/00ewnj302', 'de', 1, 'https://ror.org/00ewnj302 Deutsches Historisches Institut Rom German Historical Institute in Rome Istituto Storico Germanico di Roma'),
(80418, 'https://ror.org/00eyng893', 'en', 1, 'https://ror.org/00eyng893 VIB-KU Leuven Center for Cancer Biology'),
(80419, 'https://ror.org/00ezf9p03', 'en', 1, 'https://ror.org/00ezf9p03 Cherkasy Medical Academy Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠ° меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(80420, 'https://ror.org/00f06eh80', 'en', 1, 'https://ror.org/00f06eh80 Punjab Medical Center'),
(80421, 'https://ror.org/00f1drj74', 'en', 1, 'https://ror.org/00f1drj74 Seeta Eye Centers'),
(80422, 'https://ror.org/00f2kew86', 'pt', 1, 'https://ror.org/00f2kew86 Hospital de CĆ¢ncer de Barretos'),
(80423, 'https://ror.org/00f6fw078', 'no_lang_code', 1, 'https://ror.org/00f6fw078 Cumberland Research Associates (United States)'),
(80424, 'https://ror.org/00f6g0567', 'en', 1, 'https://ror.org/00f6g0567 Hunter Cancer Research Alliance'),
(80425, 'https://ror.org/00f86gt02', 'no_lang_code', 1, 'https://ror.org/00f86gt02 Nippon Zoki (Japan) ę—„ęœ¬č‡“å™Øč£½č–¬'),
(80426, 'https://ror.org/00f89wy98', 'en', 1, 'https://ror.org/00f89wy98 Magnetics Information Consortium'),
(80427, 'https://ror.org/00f8adc72', 'en', 1, 'https://ror.org/00f8adc72 Cancer Focus Northern Ireland'),
(80428, 'https://ror.org/00f99yp81', 'en', 1, 'https://ror.org/00f99yp81 Royal Australasian College of Medical Administrators'),
(80429, 'https://ror.org/00fczj128', 'no_lang_code', 1, 'https://ror.org/00fczj128 MoTeC (Australia)'),
(80430, 'https://ror.org/00fen6t20', 'en', 1, 'https://ror.org/00fen6t20 Homeopathy Research Institute'),
(80431, 'https://ror.org/00fer7583', 'en', 1, 'https://ror.org/00fer7583 CARE Fertility'),
(80432, 'https://ror.org/00ffxn811', 'is', 1, 'https://ror.org/00ffxn811 Fornleifastofnun ƍslands'),
(80433, 'https://ror.org/00fgrre84', 'no_lang_code', 1, 'https://ror.org/00fgrre84 Micro Systems Engineering (United States)'),
(80434, 'https://ror.org/00fj5zw34', 'en', 1, 'https://ror.org/00fj5zw34 Hong Kong Institute of Steel Construction'),
(80435, 'https://ror.org/00fjjyv64', 'en', 1, 'https://ror.org/00fjjyv64 DƩpistage NƩonatal Ontario Newborn Screening Ontario'),
(80436, 'https://ror.org/00fm1n282', 'no_lang_code', 1, 'https://ror.org/00fm1n282 Inflarx (Germany)'),
(80437, 'https://ror.org/00fn3pa80', 'en', 1, 'https://ror.org/00fn3pa80 Nasional University Universitas Nasional'),
(80438, 'https://ror.org/00fpz4c36', 'en', 1, 'https://ror.org/00fpz4c36 Plymouth State University UniversitĆ© d''Ɖtat de plymouth'),
(80439, 'https://ror.org/00ftg6h50', 'en', 1, 'https://ror.org/00ftg6h50 European Graduate School of Neuroscience'),
(80440, 'https://ror.org/00ftrxq20', 'en', 1, 'https://ror.org/00ftrxq20 Asahikawa Medical College Hospital ę—­å·åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(80441, 'https://ror.org/00fwvs774', 'en', 1, 'https://ror.org/00fwvs774 Dermatology Research and Education Foundation'),
(80442, 'https://ror.org/00g1p6865', 'en', 1, 'https://ror.org/00g1p6865 Brien Holden Vision Institute'),
(80443, 'https://ror.org/00g1x4v36', 'en', 1, 'https://ror.org/00g1x4v36 European Federation of Pharmaceutical Industries and Associations'),
(80444, 'https://ror.org/00g2fk805', 'en', 1, 'https://ror.org/00g2fk805 Washington State University Vancouver'),
(80445, 'https://ror.org/00g2qdz89', 'es', 1, 'https://ror.org/00g2qdz89 Universidad de la Ciudad de Buenos Aires'),
(80446, 'https://ror.org/00g2xk477', 'en', 1, 'https://ror.org/00g2xk477 Hunter College'),
(80447, 'https://ror.org/00g30fc48', 'en', 1, 'https://ror.org/00g30fc48 Magyar BƔnyƔszati Ʃs Fƶldtani SzolgƔlat Mining and Geological Survey of Hungary'),
(80448, 'https://ror.org/00g3ck957', 'en', 1, 'https://ror.org/00g3ck957 American Productivity and Quality Center'),
(80449, 'https://ror.org/00g51j712', 'en', 1, 'https://ror.org/00g51j712 Saga Medical School Hospital ä½č³€å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(80450, 'https://ror.org/00g58ht81', 'no_lang_code', 1, 'https://ror.org/00g58ht81 Triad Interactive Media (United States)'),
(80451, 'https://ror.org/00g6d1w79', 'en', 1, 'https://ror.org/00g6d1w79 Center for Urban Waters'),
(80452, 'https://ror.org/00g86hk06', 'es', 1, 'https://ror.org/00g86hk06 Escuela Nacional de Medicina del Trabajo National School of Occupational Medicine'),
(80453, 'https://ror.org/00g916n77', 'en', 1, 'https://ror.org/00g916n77 Iwate Prefectural Central Hospital å²©ę‰‹ēœŒē«‹äø­å¤®ē—…é™¢'),
(80454, 'https://ror.org/00g9bca48', 'no_lang_code', 1, 'https://ror.org/00g9bca48 Biotronik (Singapore)'),
(80455, 'https://ror.org/00garhy75', 'en', 1, 'https://ror.org/00garhy75 National Epilepsy Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹é™å²”ć¦ć‚“ć‹ć‚“ćƒ»ē„žēµŒåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(80456, 'https://ror.org/00gdxsk50', 'no_lang_code', 1, 'https://ror.org/00gdxsk50 Surgical Innovations (United Kingdom)'),
(80457, 'https://ror.org/00gdzqq03', 'en', 1, 'https://ror.org/00gdzqq03 American Society of Addiction Medicine'),
(80458, 'https://ror.org/00gej0269', 'en', 1, 'https://ror.org/00gej0269 Acupuncture And Massage College'),
(80459, 'https://ror.org/00gez1r32', 'en', 1, 'https://ror.org/00gez1r32 Young Men''s Christian Association'),
(80460, 'https://ror.org/00gfstq19', 'no_lang_code', 1, 'https://ror.org/00gfstq19 Sysmex (Japan) ć‚·ć‚¹ćƒ”ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(80461, 'https://ror.org/00ggm6d20', 'en', 1, 'https://ror.org/00ggm6d20 Faith Regional Health Services'),
(80462, 'https://ror.org/00gnxy738', 'en', 1, 'https://ror.org/00gnxy738 UK Web Archive'),
(80463, 'https://ror.org/00gpqj976', 'no_lang_code', 1, 'https://ror.org/00gpqj976 Pernod Ricard (France)'),
(80464, 'https://ror.org/00gtb4z22', 'en', 1, 'https://ror.org/00gtb4z22 Institute of Pediatrics, Obstetrics, and Gynecology named after acad. O.M. Lukyanova of the National Academy of Medical Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пеГіатрії, Š°ŠŗŃƒŃˆŠµŃ€ŃŃ‚Š²Š° та гінекології ŠŠŠœŠ України'),
(80465, 'https://ror.org/00gwx3e77', 'en', 1, 'https://ror.org/00gwx3e77 Queen Nandi Regional Hospital'),
(80466, 'https://ror.org/00gyn5p04', 'en', 1, 'https://ror.org/00gyn5p04 Ivan Kozhedub Kharkiv National Air Force University Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŠ¾Š²Ń–Ń‚Ń€ŃŠ½ŠøŃ… сил імені Івана КожеГуба'),
(80467, 'https://ror.org/00h211q58', 'no_lang_code', 1, 'https://ror.org/00h211q58 Intelligify (United Kingdom)'),
(80468, 'https://ror.org/00h5ck659', 'en', 1, 'https://ror.org/00h5ck659 Nippon Medical School Musashi Kosugi Hospital ę—„ęœ¬åŒ»ē§‘å¤§å­¦ę­¦č”µå°ę‰ē—…é™¢'),
(80469, 'https://ror.org/00h7gyj76', 'no_lang_code', 1, 'https://ror.org/00h7gyj76 Sumitomo Metal Mining (Japan) ä½å‹é‡‘å±žé‰±å±±ę Ŗå¼ä¼šē¤¾'),
(80470, 'https://ror.org/00h9em455', 'en', 1, 'https://ror.org/00h9em455 Toronto Dementia Research Alliance'),
(80471, 'https://ror.org/00hajxm04', 'fr', 1, 'https://ror.org/00hajxm04 Institut de Statistiques et d’Études Ɖconomiques du Burundi'),
(80472, 'https://ror.org/00hb09z11', 'en', 1, 'https://ror.org/00hb09z11 Royal Saskatchewan Museum'),
(80473, 'https://ror.org/00hgwte81', 'en', 1, 'https://ror.org/00hgwte81 Oregon Nanoscience and Microtechnologies Institute'),
(80474, 'https://ror.org/00hmkqz52', 'es', 1, 'https://ror.org/00hmkqz52 Instituto Nacional de Ciencias Neurológicas National Institute of Neurological Sciences'),
(80475, 'https://ror.org/00hn8pj83', 'en', 1, 'https://ror.org/00hn8pj83 Suzhou Vocational University č‹å·žåø‚čŒäøšå¤§å­¦'),
(80476, 'https://ror.org/00hq8t831', 'no_lang_code', 1, 'https://ror.org/00hq8t831 Ifm Therapeutics (United States)'),
(80477, 'https://ror.org/00hsn1t88', 'no_lang_code', 1, 'https://ror.org/00hsn1t88 Inzen Therapeutics (United States)'),
(80478, 'https://ror.org/00hsvaf31', 'en', 1, 'https://ror.org/00hsvaf31 Anesthesiology and Surgical Oncology Research Group'),
(80479, 'https://ror.org/00ht8je70', 'en', 1, 'https://ror.org/00ht8je70 Inamori Foundation å…¬ē›Šč²”å›£ę³•äŗŗēØ²ē››č²”å›£'),
(80480, 'https://ror.org/00htg6162', 'en', 1, 'https://ror.org/00htg6162 Florida Institute of Oceanography'),
(80481, 'https://ror.org/00hv6g197', 'en', 1, 'https://ror.org/00hv6g197 Pacific Institute for Climate Solutions'),
(80482, 'https://ror.org/00j0emq76', 'en', 1, 'https://ror.org/00j0emq76 Pontifical Biblical Institute Pontificio Istituto Biblico Pontificium Institutum Biblicum'),
(80483, 'https://ror.org/00j15sg62', 'en', 1, 'https://ror.org/00j15sg62 Finnish Cancer Registry Suomen SyƶpƤrekisteri'),
(80484, 'https://ror.org/00j5bwe91', 'es', 1, 'https://ror.org/00j5bwe91 ClĆ­nica Las Condes'),
(80485, 'https://ror.org/00j5mtz35', 'en', 1, 'https://ror.org/00j5mtz35 Ratio'),
(80486, 'https://ror.org/00j6hr569', 'en', 1, 'https://ror.org/00j6hr569 Center for Digital Image Evaluation'),
(80487, 'https://ror.org/00j6pqx59', 'de', 1, 'https://ror.org/00j6pqx59 Bayerisches Landesamt für Umwelt'),
(80488, 'https://ror.org/00jaard37', 'en', 1, 'https://ror.org/00jaard37 Nagaoka National College of Technology é•·å²”å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(80489, 'https://ror.org/00jb67179', 'en', 1, 'https://ror.org/00jb67179 Gasol Foundation'),
(80490, 'https://ror.org/00jdfsf63', 'en', 1, 'https://ror.org/00jdfsf63 Fundación Biomédica Galicia Sur Galicia Sur Biomedical Foundation'),
(80491, 'https://ror.org/00je08e11', 'en', 1, 'https://ror.org/00je08e11 American Community Schools'),
(80492, 'https://ror.org/00jfgrn87', 'en', 1, 'https://ror.org/00jfgrn87 Children''s Investment Fund Foundation'),
(80493, 'https://ror.org/00jfmd461', 'fr', 1, 'https://ror.org/00jfmd461 L’Institut du Cancer Courlancy Reims'),
(80494, 'https://ror.org/00jgbqj86', 'no_lang_code', 1, 'https://ror.org/00jgbqj86 AZTI'),
(80495, 'https://ror.org/00jgcnx83', 'en', 1, 'https://ror.org/00jgcnx83 Nuclear Materials Authority'),
(80496, 'https://ror.org/00jhf1r34', 'en', 1, 'https://ror.org/00jhf1r34 Sieć Badawcza Łukasiewicz - Instytut Chemii Przemysłowej Łukasiewicz Research Network - Industrial Chemistry Institute'),
(80497, 'https://ror.org/00jhqgj32', 'en', 1, 'https://ror.org/00jhqgj32 Nantucket Cottage Hospital'),
(80498, 'https://ror.org/00jjh0n63', 'en', 1, 'https://ror.org/00jjh0n63 Forschungsinstitut für Philosophie Hannover Research Institute for Philosophy Hannover'),
(80499, 'https://ror.org/00jkpa835', 'no_lang_code', 1, 'https://ror.org/00jkpa835 Prothena (United States)'),
(80500, 'https://ror.org/00jpzvz45', 'en', 1, 'https://ror.org/00jpzvz45 Max Planck Institute for Legal History and Legal Theory Max-Planck-Institut für Rechtsgeschichte und Rechtstheorie'),
(80501, 'https://ror.org/00jqn4k83', 'en', 1, 'https://ror.org/00jqn4k83 Society for Neuroscience in Anesthesiology and Critical Care'),
(80502, 'https://ror.org/00jrbwm32', 'no_lang_code', 1, 'https://ror.org/00jrbwm32 Acibadem City Clinic'),
(80503, 'https://ror.org/00jrmky87', 'it', 1, 'https://ror.org/00jrmky87 Puglia Salute'),
(80504, 'https://ror.org/00jsj7d19', 'en', 1, 'https://ror.org/00jsj7d19 The Institute of Legislation and Comparative Law under the Government of the Russian Federation'),
(80505, 'https://ror.org/00jt22t02', 'de', 1, 'https://ror.org/00jt22t02 Deutsche Morbus Crohn/Colitis ulcerosa Vereinigung'),
(80506, 'https://ror.org/00jtmm480', 'en', 1, 'https://ror.org/00jtmm480 Japan Industrial Safety and Health Association ē‰¹åˆ„ę°‘é–“ę³•äŗŗäø­å¤®åŠ“åƒē½å®³é˜²ę­¢å”ä¼š'),
(80507, 'https://ror.org/00jv65847', 'en', 1, 'https://ror.org/00jv65847 Gouvernement wallon Walloon Government'),
(80508, 'https://ror.org/00jw1bg20', 'sv', 1, 'https://ror.org/00jw1bg20 Malmƶ Museer'),
(80509, 'https://ror.org/00jx2dc23', 'en', 1, 'https://ror.org/00jx2dc23 Radiation Research Society'),
(80510, 'https://ror.org/00jxaym78', 'en', 1, 'https://ror.org/00jxaym78 The Land Institute'),
(80511, 'https://ror.org/00jxshx33', 'en', 1, 'https://ror.org/00jxshx33 South Valley University Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł†ŁˆŲØ Ų§Ł„ŁˆŲ§ŲÆŁŠ'),
(80512, 'https://ror.org/00jyds089', 'no_lang_code', 1, 'https://ror.org/00jyds089 NotABook (United States)'),
(80513, 'https://ror.org/00jypd850', 'en', 1, 'https://ror.org/00jypd850 Optica'),
(80514, 'https://ror.org/00jzhf358', 'en', 1, 'https://ror.org/00jzhf358 Kronotsky Reserve ŠšŃ€Š¾Š½Š¾Ń†ŠŗŠøŠ¹ заповеГник'),
(80515, 'https://ror.org/00k0fxx81', 'en', 1, 'https://ror.org/00k0fxx81 Japan Society of Home Economics äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å®¶ę”æå­¦ä¼š'),
(80516, 'https://ror.org/00k1zme04', 'en', 1, 'https://ror.org/00k1zme04 Singapore Cancer Society'),
(80517, 'https://ror.org/00k4dpj65', 'en', 1, 'https://ror.org/00k4dpj65 Privolshky Les Nature Reserve ŠŸŃ€ŠøŠ²Š¾Š»Š¶ŃŠŗŠ°Ń Š»ŠµŃŠ¾ŃŃ‚ŠµŠæŃŒ заповеГник'),
(80518, 'https://ror.org/00k642b80', 'no_lang_code', 1, 'https://ror.org/00k642b80 Alibaba Group (China) é˜æé‡Œå·“å·“é›†å›¢ęŽ§č‚”ęœ‰é™å…¬åø'),
(80519, 'https://ror.org/00k6x7m82', 'it', 1, 'https://ror.org/00k6x7m82 Associazione Calabrese di Epatologia'),
(80520, 'https://ror.org/00kcd6x60', 'en', 1, 'https://ror.org/00kcd6x60 Tohoku University Hospital ę±åŒ—å¤§å­¦ē—…é™¢'),
(80521, 'https://ror.org/00kce5954', 'no_lang_code', 1, 'https://ror.org/00kce5954 L3Harris (United Kingdom)'),
(80522, 'https://ror.org/00kf4vm79', 'en', 1, 'https://ror.org/00kf4vm79 National Institute of Technology, Ichinoseki College äø€é–¢å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(80523, 'https://ror.org/00kfe0n78', 'en', 1, 'https://ror.org/00kfe0n78 Gastroenterology Group of Rochester'),
(80524, 'https://ror.org/00kg7b273', 'en', 1, 'https://ror.org/00kg7b273 Institute of Feed and Agriculture of Podillya of the National Academy of Agrarian Sciences Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кормів та ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠŸŠ¾Š“Ń–Š»Š»Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(80525, 'https://ror.org/00kj82e71', 'en', 1, 'https://ror.org/00kj82e71 Southeast Watershed Research Laboratory'),
(80526, 'https://ror.org/00kk62m43', 'no_lang_code', 1, 'https://ror.org/00kk62m43 MBMed (Argentina)'),
(80527, 'https://ror.org/00km9fk15', 'en', 1, 'https://ror.org/00km9fk15 Medical Defence Union'),
(80528, 'https://ror.org/00kmxt141', 'en', 1, 'https://ror.org/00kmxt141 UniversitĆ© d''Ɖtat de winona Winona State University'),
(80529, 'https://ror.org/00knqp290', 'en', 1, 'https://ror.org/00knqp290 Chinese Academy of Inspection and Quarantine äø­å›½ę£€éŖŒę£€ē–«ē§‘å­¦ē ”ē©¶é™¢'),
(80530, 'https://ror.org/00kpkeq42', 'no_lang_code', 1, 'https://ror.org/00kpkeq42 EPC Natural Products ä¼ŠęÆ”č„æę¤ē‰©čÆē‰©ęŠ€ęœÆęœ‰é™å…¬åø'),
(80531, 'https://ror.org/00kq45e22', 'no_lang_code', 1, 'https://ror.org/00kq45e22 Ocellus (United States)'),
(80532, 'https://ror.org/00kqtef53', 'en', 1, 'https://ror.org/00kqtef53 Beijing Hypertension Prevention Association åŒ—äŗ¬é«˜č”€åŽ‹é˜²ę²»åä¼š'),
(80533, 'https://ror.org/00kr65d46', 'en', 1, 'https://ror.org/00kr65d46 People in Need Člověk v Tƭsni'),
(80534, 'https://ror.org/00krzbm55', 'en', 1, 'https://ror.org/00krzbm55 Luquillo Long Term Ecological Research'),
(80535, 'https://ror.org/00ks90424', 'no_lang_code', 1, 'https://ror.org/00ks90424 Tauri Group (United States)'),
(80536, 'https://ror.org/00kv49k33', 'no_lang_code', 1, 'https://ror.org/00kv49k33 KRI ę Ŗå¼ä¼šē¤¾KRI'),
(80537, 'https://ror.org/00kvcw656', 'en', 1, 'https://ror.org/00kvcw656 Canadian Society for International Health SociƩtƩ Canadienne de SantƩ Internationale'),
(80538, 'https://ror.org/00kvw1g26', 'en', 1, 'https://ror.org/00kvw1g26 American Society for Bone and Mineral Research'),
(80539, 'https://ror.org/00kwbng41', 'en', 1, 'https://ror.org/00kwbng41 Spinal Cord Injury Ontario'),
(80540, 'https://ror.org/00kyj9h67', 'no_lang_code', 1, 'https://ror.org/00kyj9h67 Horizon Therapeutics (United States)'),
(80541, 'https://ror.org/00kz6qq24', 'en', 1, 'https://ror.org/00kz6qq24 S.N. Bose National Centre for Basic Sciences ą¦øą¦¤ą§ą¦Æą§‡ą¦Øą§ą¦¦ą§ą¦°ą¦Øą¦¾ą¦„ বসু ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦®ą§Œą¦²ą¦æą¦• ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦•ą§‡ą¦Øą§ą¦¦ą§ą¦°'),
(80542, 'https://ror.org/00m05k208', 'en', 1, 'https://ror.org/00m05k208 National Soil Dynamics Research Laboratory'),
(80543, 'https://ror.org/00m0k5p91', 'es', 1, 'https://ror.org/00m0k5p91 Centro Científico Tecnológico de Valparaíso'),
(80544, 'https://ror.org/00m2ky193', 'no_lang_code', 1, 'https://ror.org/00m2ky193 Biohaven Pharmaceuticals (United States)'),
(80545, 'https://ror.org/00m43ek07', 'fr', 1, 'https://ror.org/00m43ek07 Laboratoire Interdisciplinaire des Ɖnergies de Demain'),
(80546, 'https://ror.org/00m44rf61', 'en', 1, 'https://ror.org/00m44rf61 New Tokyo Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é¦Øä¼šę–°ę±äŗ¬ē—…é™¢'),
(80547, 'https://ror.org/00m5fe987', 'en', 1, 'https://ror.org/00m5fe987 FoAM'),
(80548, 'https://ror.org/00m5m4846', 'en', 1, 'https://ror.org/00m5m4846 The Swedish Association of Health Professionals VƄrdfƶrbundet'),
(80549, 'https://ror.org/00m7gt169', 'no_lang_code', 1, 'https://ror.org/00m7gt169 Thomson Reuters (United States)'),
(80550, 'https://ror.org/00mbm2c65', 'en', 1, 'https://ror.org/00mbm2c65 Field Projects International'),
(80551, 'https://ror.org/00mc77d93', 'it', 1, 'https://ror.org/00mc77d93 Istituti Clinici Scientifici Maugeri'),
(80552, 'https://ror.org/00mc8r278', 'no_lang_code', 1, 'https://ror.org/00mc8r278 Lee & Man Chemical Company (China) ē†ę–‡åŒ–å·„ęœ‰é™å…¬åø'),
(80553, 'https://ror.org/00mcfe977', 'en', 1, 'https://ror.org/00mcfe977 Academy of Family Physicians of India'),
(80554, 'https://ror.org/00mcmgh21', 'no_lang_code', 1, 'https://ror.org/00mcmgh21 Gene and GreenTK (France)'),
(80555, 'https://ror.org/00mcxye41', 'en', 1, 'https://ror.org/00mcxye41 National Biodiversity Network Trust'),
(80556, 'https://ror.org/00me1fb23', 'en', 1, 'https://ror.org/00me1fb23 Retinal Consultants of Arizona'),
(80557, 'https://ror.org/00mebz780', 'en', 1, 'https://ror.org/00mebz780 Brain Injury Association of America'),
(80558, 'https://ror.org/00men8398', 'no_lang_code', 1, 'https://ror.org/00men8398 Infant'),
(80559, 'https://ror.org/00meyfe69', 'es', 1, 'https://ror.org/00meyfe69 German Peruvian Private University Universidad Privada Peruano Alemana'),
(80560, 'https://ror.org/00mhkcm52', 'no_lang_code', 1, 'https://ror.org/00mhkcm52 Olin Corporation (United States)'),
(80561, 'https://ror.org/00mht5s60', 'no_lang_code', 1, 'https://ror.org/00mht5s60 Joyson Safety Systems (Japan) ć‚øćƒ§ć‚¤ć‚½ćƒ³ ć‚»ć‚¤ćƒ•ćƒ†ć‚£ ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(80562, 'https://ror.org/00mkh7345', 'en', 1, 'https://ror.org/00mkh7345 Hubbard Brook Long Term Ecological Research'),
(80563, 'https://ror.org/00mm1qk40', 'en', 1, 'https://ror.org/00mm1qk40 PLA Information Engineering University 中国人民解放军俔息巄程大学'),
(80564, 'https://ror.org/00mmgx583', 'en', 1, 'https://ror.org/00mmgx583 Suratthani Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąøøąø£ąø²ąø©ąøŽąø£ą¹Œąø˜ąø²ąø™ąøµ'),
(80565, 'https://ror.org/00msd7q84', 'en', 1, 'https://ror.org/00msd7q84 Canadian Orthopaedic Foundation'),
(80566, 'https://ror.org/00mtmnw70', 'no_lang_code', 1, 'https://ror.org/00mtmnw70 Biosyntia (Denmark)'),
(80567, 'https://ror.org/00mtny680', 'en', 1, 'https://ror.org/00mtny680 Riyadh Armed Forces Hospital Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų£Ł…ŁŠŲ± سلطان Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠŲ©'),
(80568, 'https://ror.org/00mwcha69', 'en', 1, 'https://ror.org/00mwcha69 Akademi Keperawatan YKY'),
(80569, 'https://ror.org/00n4k4n97', 'en', 1, 'https://ror.org/00n4k4n97 Providence Health & Services'),
(80570, 'https://ror.org/00n5t8830', 'en', 1, 'https://ror.org/00n5t8830 Noosa Hospital'),
(80571, 'https://ror.org/00n635c12', 'en', 1, 'https://ror.org/00n635c12 Leeds and York Partnership NHS Foundation Trust'),
(80572, 'https://ror.org/00n6b3s33', 'no_lang_code', 1, 'https://ror.org/00n6b3s33 Mission Therapeutics (United Kingdom)'),
(80573, 'https://ror.org/00n9sps80', 'en', 1, 'https://ror.org/00n9sps80 Center for Muscle Health and Neuromuscular Disorders'),
(80574, 'https://ror.org/00naatv40', 'no_lang_code', 1, 'https://ror.org/00naatv40 Cross Compass (Japan)'),
(80575, 'https://ror.org/00nc5f834', 'en', 1, 'https://ror.org/00nc5f834 Regional Centre for Biotechnology ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°ą„€ą¤Æ ą¤œą„ˆą¤µą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(80576, 'https://ror.org/00ndt8971', 'en', 1, 'https://ror.org/00ndt8971 California Botanical Society'),
(80577, 'https://ror.org/00nf3nv81', 'fr', 1, 'https://ror.org/00nf3nv81 ESME - School of Engineering ESME - Ɖcole d’ingĆ©nieurs pluridisciplinaires'),
(80578, 'https://ror.org/00ng7yn96', 'en', 1, 'https://ror.org/00ng7yn96 Catholic Medical Center'),
(80579, 'https://ror.org/00nhc9061', 'no_lang_code', 1, 'https://ror.org/00nhc9061 Plasmionique (Canada)'),
(80580, 'https://ror.org/00nqb1v70', 'en', 1, 'https://ror.org/00nqb1v70 University of Tennessee at Chattanooga UniversitƩ du tennessee Ơ chattanooga'),
(80581, 'https://ror.org/00nr3tg23', 'en', 1, 'https://ror.org/00nr3tg23 BioVale'),
(80582, 'https://ror.org/00ns0qg75', 'en', 1, 'https://ror.org/00ns0qg75 Parkway Cancer Centre'),
(80583, 'https://ror.org/00ns93f55', 'en', 1, 'https://ror.org/00ns93f55 Erwin L. Hahn Institute for Magnetic Resonance Imaging'),
(80584, 'https://ror.org/00nst6k08', 'no_lang_code', 1, 'https://ror.org/00nst6k08 Aaniiih Nakoda College'),
(80585, 'https://ror.org/00nsyd297', 'en', 1, 'https://ror.org/00nsyd297 Widener University'),
(80586, 'https://ror.org/00ntrnw83', 'en', 1, 'https://ror.org/00ntrnw83 CỄc Y tế Dự phòng General Department of Preventive Medicine'),
(80587, 'https://ror.org/00ntzjs22', 'en', 1, 'https://ror.org/00ntzjs22 Chartered Institution of Building Services Engineers'),
(80588, 'https://ror.org/00nvc8n52', 'en', 1, 'https://ror.org/00nvc8n52 Hogg Foundation for Mental Health'),
(80589, 'https://ror.org/00nw4tw41', 'no_lang_code', 1, 'https://ror.org/00nw4tw41 InterGrain'),
(80590, 'https://ror.org/00nwx8810', 'en', 1, 'https://ror.org/00nwx8810 National Council of University Research Administrators'),
(80591, 'https://ror.org/00nzavp26', 'es', 1, 'https://ror.org/00nzavp26 Hospital Infantil de México Federico Gómez'),
(80592, 'https://ror.org/00nzx7971', 'en', 1, 'https://ror.org/00nzx7971 Mycological Society of America'),
(80593, 'https://ror.org/00p23dy23', 'en', 1, 'https://ror.org/00p23dy23 Cherokee Nation'),
(80594, 'https://ror.org/00p3egw50', 'no_lang_code', 1, 'https://ror.org/00p3egw50 The Hyve (Netherlands)'),
(80595, 'https://ror.org/00p4am161', 'no_lang_code', 1, 'https://ror.org/00p4am161 SCREEN (Japan) ę Ŗå¼ä¼šē¤¾SCREENćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(80596, 'https://ror.org/00p5prq49', 'en', 1, 'https://ror.org/00p5prq49 Advanced Institute of Materials Science å…¬ē›Šč²”å›£ę³•äŗŗē‰¹ę®Šē„”ę©Ÿęę–™ē ”ē©¶ę‰€'),
(80597, 'https://ror.org/00p7bse27', 'en', 1, 'https://ror.org/00p7bse27 Bozeman Health Deaconess Hospital'),
(80598, 'https://ror.org/00p81j087', 'en', 1, 'https://ror.org/00p81j087 Eiraght Ashoonagh Vannin Manx National Heritage'),
(80599, 'https://ror.org/00p86m346', 'en', 1, 'https://ror.org/00p86m346 Singapore Maritime Institute'),
(80600, 'https://ror.org/00p8cpg07', 'en', 1, 'https://ror.org/00p8cpg07 American Philosophical Association'),
(80601, 'https://ror.org/00p9kvn81', 'no_lang_code', 1, 'https://ror.org/00p9kvn81 Pacific Radiology (New Zealand)'),
(80602, 'https://ror.org/00paezp73', 'no_lang_code', 1, 'https://ror.org/00paezp73 Ixico (United Kingdom)'),
(80603, 'https://ror.org/00pafka32', 'en', 1, 'https://ror.org/00pafka32 Wayo Women''s University å’Œę“‹å„³å­å¤§å­¦'),
(80604, 'https://ror.org/00pb0ac76', 'en', 1, 'https://ror.org/00pb0ac76 Institute for Marine Biological Resources and Biotechnology Istituto per le Risorse Biologiche e le Biotecnologie Marine'),
(80605, 'https://ror.org/00pbv8f56', 'it', 1, 'https://ror.org/00pbv8f56 SocietĆ  Italiana di Cardiologia'),
(80606, 'https://ror.org/00pfjsb13', 'en', 1, 'https://ror.org/00pfjsb13 International University School of Medicine'),
(80607, 'https://ror.org/00pj63h42', 'en', 1, 'https://ror.org/00pj63h42 Chinese Arctic and Antarctic Administration å›½å®¶ęµ·ę“‹å±€ęžåœ°č€ƒåÆŸåŠžå…¬å®¤'),
(80608, 'https://ror.org/00pjgxh97', 'de', 1, 'https://ror.org/00pjgxh97 Universitätsklinikum Tübingen'),
(80609, 'https://ror.org/00pkx4k51', 'en', 1, 'https://ror.org/00pkx4k51 Tsinghua Sichuan Energy Internet Research Institute'),
(80610, 'https://ror.org/00pm7rm97', 'no_lang_code', 1, 'https://ror.org/00pm7rm97 IBM (Germany)'),
(80611, 'https://ror.org/00pnht824', 'en', 1, 'https://ror.org/00pnht824 Institute of Agricultural Economics Belgrade Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за економику пољопривреГе БеограГ'),
(80612, 'https://ror.org/00pr51480', 'en', 1, 'https://ror.org/00pr51480 Lute Society'),
(80613, 'https://ror.org/00pvs0d78', 'en', 1, 'https://ror.org/00pvs0d78 Interuniversity Institute for Marine Sciences in Eilat המכון ×”×‘×™× ××•× ×™×‘×Ø×”×™×˜××™ למדעי הים ×‘××™×œ×Ŗ'),
(80614, 'https://ror.org/00pwma409', 'en', 1, 'https://ror.org/00pwma409 Advanced Technologies Application Center'),
(80615, 'https://ror.org/00px17r71', 'no_lang_code', 1, 'https://ror.org/00px17r71 Biomica (Israel)'),
(80616, 'https://ror.org/00pykpg61', 'es', 1, 'https://ror.org/00pykpg61 Instituto Interamericano de Derechos Humanos'),
(80617, 'https://ror.org/00pz6pe93', 'de', 1, 'https://ror.org/00pz6pe93 SRH Klinikum Karlsbad-Langensteinbach'),
(80618, 'https://ror.org/00q1zbc26', 'no_lang_code', 1, 'https://ror.org/00q1zbc26 Aclaris Therapeutics (United States)'),
(80619, 'https://ror.org/00q2w1j53', 'en', 1, 'https://ror.org/00q2w1j53 Indian Statistical Institute ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą¤¾ą¤‚ą¤–ą„ą¤Æą¤æą¤•ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(80620, 'https://ror.org/00q5xgh71', 'en', 1, 'https://ror.org/00q5xgh71 Danish Medicines Agency LƦgemiddelstyrelsen'),
(80621, 'https://ror.org/00q7fqf35', 'en', 1, 'https://ror.org/00q7fqf35 California NanoSystems Institute'),
(80622, 'https://ror.org/00q7vcm05', 'es', 1, 'https://ror.org/00q7vcm05 Centro de Investigaciones de Ecosistemas Costeros'),
(80623, 'https://ror.org/00q7wcf52', 'en', 1, 'https://ror.org/00q7wcf52 National Measurement Standards Unit Standar Nasional Satuan Ukuran'),
(80624, 'https://ror.org/00qdtba35', 'en', 1, 'https://ror.org/00qdtba35 Shandong Institute of Automation å±±äøœēœē§‘å­¦é™¢č‡ŖåŠØåŒ–ē ”ē©¶ę‰€ęˆ'),
(80625, 'https://ror.org/00qf0yp70', 'en', 1, 'https://ror.org/00qf0yp70 Toho University Omori Medical Center ę±é‚¦å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼å¤§ę£®ē—…é™¢'),
(80626, 'https://ror.org/00qh9dx40', 'en', 1, 'https://ror.org/00qh9dx40 Shoklo Malaria Research Unit'),
(80627, 'https://ror.org/00qjxh243', 'en', 1, 'https://ror.org/00qjxh243 Brazilian Micro and Small Enterprises Support Service ServiƧo Brasileiro de Apoio Ơs Micro e Pequenas Empresas'),
(80628, 'https://ror.org/00qk2nf71', 'en', 1, 'https://ror.org/00qk2nf71 Fiji National University'),
(80629, 'https://ror.org/00qm1pk82', 'en', 1, 'https://ror.org/00qm1pk82 Kobe Kaisei Hospital åŒ»ē™‚ę³•äŗŗč²”å›£ē„žęˆøęµ·ę˜Ÿē—…é™¢'),
(80630, 'https://ror.org/00qnrsq87', 'en', 1, 'https://ror.org/00qnrsq87 Invest Northern Ireland'),
(80631, 'https://ror.org/00qsmvq80', 'en', 1, 'https://ror.org/00qsmvq80 Edwin Clark University'),
(80632, 'https://ror.org/00qtxjg46', 'en', 1, 'https://ror.org/00qtxjg46 General Practitioners Research Institute'),
(80633, 'https://ror.org/00qvd7w26', 'no_lang_code', 1, 'https://ror.org/00qvd7w26 Pivot'),
(80634, 'https://ror.org/00qvkm315', 'en', 1, 'https://ror.org/00qvkm315 Saint Camillus International University of Health and Medical Sciences'),
(80635, 'https://ror.org/00qvqt255', 'no_lang_code', 1, 'https://ror.org/00qvqt255 Pepsi (United States)'),
(80636, 'https://ror.org/00qw43163', 'no_lang_code', 1, 'https://ror.org/00qw43163 Applied Research (United States)'),
(80637, 'https://ror.org/00qwa8m09', 'no_lang_code', 1, 'https://ror.org/00qwa8m09 Immunitas Therapeutics (United States)'),
(80638, 'https://ror.org/00qxv3c44', 'fr', 1, 'https://ror.org/00qxv3c44 IRT Jules Verne'),
(80639, 'https://ror.org/00qyd2558', 'en', 1, 'https://ror.org/00qyd2558 Chiba Convention Bureau and International Center å…¬ē›Šč²”å›£ę³•äŗŗ ć”ć°å›½éš›ć‚³ćƒ³ćƒ™ćƒ³ć‚·ćƒ§ćƒ³ćƒ“ćƒ„ćƒ¼ćƒ­ćƒ¼'),
(80640, 'https://ror.org/00qzjvm58', 'en', 1, 'https://ror.org/00qzjvm58 Centers for Disease Control and Prevention'),
(80641, 'https://ror.org/00r1f0w19', 'pt', 1, 'https://ror.org/00r1f0w19 Centro UniversitƔrio SATC'),
(80642, 'https://ror.org/00r1w0907', 'en', 1, 'https://ror.org/00r1w0907 Knowledge Network for Biocomplexity'),
(80643, 'https://ror.org/00r2p7t19', 'en', 1, 'https://ror.org/00r2p7t19 Northern Ireland Assembly'),
(80644, 'https://ror.org/00r36fk75', 'en', 1, 'https://ror.org/00r36fk75 Ontario Drug Policy Research Network'),
(80645, 'https://ror.org/00r4h6e02', 'no_lang_code', 1, 'https://ror.org/00r4h6e02 KrioSystem (Poland)'),
(80646, 'https://ror.org/00r6snc96', 'en', 1, 'https://ror.org/00r6snc96 Centre for Arab Unity Studies Ł…Ų±ŁƒŲ² ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„ŁˆŲ­ŲÆŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(80647, 'https://ror.org/00r7apq26', 'en', 1, 'https://ror.org/00r7apq26 ERN Board of Member States'),
(80648, 'https://ror.org/00r86n020', 'en', 1, 'https://ror.org/00r86n020 Egypt Center for Research and Regenerative Medicine Ł…Ų±ŁƒŲ² Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„Ų·ŲØ Ų§Ł„ŲŖŲ¬ŲÆŁŠŲÆŁ‰'),
(80649, 'https://ror.org/00r8a6s58', 'no_lang_code', 1, 'https://ror.org/00r8a6s58 Portola Pharmaceuticals (United States)'),
(80650, 'https://ror.org/00r8w8f84', 'en', 1, 'https://ror.org/00r8w8f84 Mohammed V University UniversitĆ© Mohammed-V de Rabat Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ الخامس'),
(80651, 'https://ror.org/00ramkd50', 'en', 1, 'https://ror.org/00ramkd50 Southern Connecticut State University'),
(80652, 'https://ror.org/00rbyp854', 'en', 1, 'https://ror.org/00rbyp854 Institute of Experimental Botany named after V.F. Kuprevich of the National Academy of Sciences of Belarus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ ботаники им. Š’. Ф. ŠšŃƒŠæŃ€ŠµŠ²ŠøŃ‡Š° ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(80653, 'https://ror.org/00rcqs978', 'en', 1, 'https://ror.org/00rcqs978 Pennsylvania Department of Agriculture'),
(80654, 'https://ror.org/00rd22143', 'fr', 1, 'https://ror.org/00rd22143 Mother and Child Face to Tropical Infections MĆØre et Enfant en Milieu Tropical'),
(80655, 'https://ror.org/00refd139', 'en', 1, 'https://ror.org/00refd139 Association of Nurses in AIDS Care'),
(80656, 'https://ror.org/00rfash91', 'en', 1, 'https://ror.org/00rfash91 Polar Knowledge Canada'),
(80657, 'https://ror.org/00rfd5b88', 'en', 1, 'https://ror.org/00rfd5b88 The Seventh Affiliated Hospital of Sun Yat-sen University äø­å±±å¤§å­¦é™„å±žē¬¬äøƒåŒ»é™¢'),
(80658, 'https://ror.org/00rh36007', 'en', 1, 'https://ror.org/00rh36007 North District Hospital 北區醫院'),
(80659, 'https://ror.org/00rmh8b04', 'en', 1, 'https://ror.org/00rmh8b04 Center for the Socioeconomic Impact of Environmental Policies Centro para el Impacto Socioeconómico de las Políticas Ambientales'),
(80660, 'https://ror.org/00rmqcb06', 'en', 1, 'https://ror.org/00rmqcb06 Meteoceanics Institute for Complex System Science'),
(80661, 'https://ror.org/00rngf163', 'no_lang_code', 1, 'https://ror.org/00rngf163 Karsa (Finland)'),
(80662, 'https://ror.org/00rrrfr24', 'en', 1, 'https://ror.org/00rrrfr24 Hwa Chong Institution ą®¹ąÆą®µą®¾ ą®šą®¾ą®™ąÆ ą®Ŗą®³ąÆą®³ą®æ ę–°åŠ å”åŽä¾Øäø­å­¦'),
(80663, 'https://ror.org/00rs6s651', 'es', 1, 'https://ror.org/00rs6s651 Museo de Historia Natural Museum of Natural History'),
(80664, 'https://ror.org/00rw77p82', 'en', 1, 'https://ror.org/00rw77p82 Visim Nature Reserve Висимский Š³Š¾ŃŃƒŠ“арственный заповеГник'),
(80665, 'https://ror.org/00rx3f567', 'en', 1, 'https://ror.org/00rx3f567 Prison Reform Trust'),
(80666, 'https://ror.org/00rx5mh03', 'no_lang_code', 1, 'https://ror.org/00rx5mh03 DeepBiome Therapeutics (United States)'),
(80667, 'https://ror.org/00rxpqe74', 'en', 1, 'https://ror.org/00rxpqe74 Providence College'),
(80668, 'https://ror.org/00s1sz824', 'en', 1, 'https://ror.org/00s1sz824 Beijing Institute of Big Data Research åŒ—äŗ¬å¤§ę•°ę®ē ”ē©¶é™¢'),
(80669, 'https://ror.org/00s1xm844', 'en', 1, 'https://ror.org/00s1xm844 Kansas Historical Society'),
(80670, 'https://ror.org/00s2ct942', 'no_lang_code', 1, 'https://ror.org/00s2ct942 iDirect Government (United States)'),
(80671, 'https://ror.org/00s37wk05', 'de', 1, 'https://ror.org/00s37wk05 Arbeitsstelle für Kulturwissenschaftliche Forschungen'),
(80672, 'https://ror.org/00s3fdw25', 'no_lang_code', 1, 'https://ror.org/00s3fdw25 Telekom Malaysia Berhad (Malaysia)'),
(80673, 'https://ror.org/00s582952', 'es', 1, 'https://ror.org/00s582952 Instituto Nacional de Salud Mental "Honorio Delgado - Hideyo Noguchi" National Institute of Mental Health "Honorio Delgado - Hideyo Noguchi"'),
(80674, 'https://ror.org/00s5a4h94', 'en', 1, 'https://ror.org/00s5a4h94 University City Science Center'),
(80675, 'https://ror.org/00s614d66', 'no_lang_code', 1, 'https://ror.org/00s614d66 Sanraku Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½ę•™č·å“”äŗ’åŠ©ä¼šäø‰ę„½ē—…é™¢'),
(80676, 'https://ror.org/00s786094', 'en', 1, 'https://ror.org/00s786094 General Medical Council'),
(80677, 'https://ror.org/00s7e4d51', 'no_lang_code', 1, 'https://ror.org/00s7e4d51 Saertex (Germany)'),
(80678, 'https://ror.org/00s8cz980', 'en', 1, 'https://ror.org/00s8cz980 Jubilee Clinical Research'),
(80679, 'https://ror.org/00saq8k02', 'no_lang_code', 1, 'https://ror.org/00saq8k02 Immunai (United States)'),
(80680, 'https://ror.org/00sat4n88', 'en', 1, 'https://ror.org/00sat4n88 Society for Experimental Biology and Medicine'),
(80681, 'https://ror.org/00sb3pk12', 'en', 1, 'https://ror.org/00sb3pk12 Mercy Hospital and Medical Center'),
(80682, 'https://ror.org/00sbfzz78', 'en', 1, 'https://ror.org/00sbfzz78 European Rhinologic Society'),
(80683, 'https://ror.org/00seaxa44', 'en', 1, 'https://ror.org/00seaxa44 Department of Home Affairs'),
(80684, 'https://ror.org/00sekdz59', 'en', 1, 'https://ror.org/00sekdz59 Flatiron Institute'),
(80685, 'https://ror.org/00sesj155', 'en', 1, 'https://ror.org/00sesj155 Wellcome Trust Liverpool Glasgow Centre for Global Health Research'),
(80686, 'https://ror.org/00sgkmj19', 'en', 1, 'https://ror.org/00sgkmj19 Thames Valley Archaeological Services'),
(80687, 'https://ror.org/00sgxyw28', 'no_lang_code', 1, 'https://ror.org/00sgxyw28 Comcast (United States)'),
(80688, 'https://ror.org/00shsf120', 'en', 1, 'https://ror.org/00shsf120 National University of Ireland Ollscoil na hƉireann'),
(80689, 'https://ror.org/00sm25y28', 'en', 1, 'https://ror.org/00sm25y28 Society of Tribologists and Lubrication Engineers'),
(80690, 'https://ror.org/00snfqn58', 'pt', 1, 'https://ror.org/00snfqn58 Foundation for Science and Technology Fundação para a Ciência e Tecnologia, Fundação para a Ciência e a Tecnologia'),
(80691, 'https://ror.org/00sngv739', 'en', 1, 'https://ror.org/00sngv739 Herder Institute Herder-Institut für Historische Ostmitteleuropaforschung – Institut der Leibniz-Gemeinschaft'),
(80692, 'https://ror.org/00srf2p02', 'en', 1, 'https://ror.org/00srf2p02 FORTH Institute of Mediterranean Studies Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„ĪæĻ… ĪœĪµĻƒĪæĪ³ĪµĪ¹Ī±ĪŗĻŽĪ½ Ī£Ļ€ĪæĻ…Ī“ĻŽĪ½'),
(80693, 'https://ror.org/00sryr473', 'en', 1, 'https://ror.org/00sryr473 Malaysian Society of Nephrology'),
(80694, 'https://ror.org/00sscbg84', 'en', 1, 'https://ror.org/00sscbg84 Khabarovsk State University of Economics and Law Š„Š°Š±Š°Ń€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(80695, 'https://ror.org/00swwa029', 'en', 1, 'https://ror.org/00swwa029 American Association of Nurse Practitioners'),
(80696, 'https://ror.org/00szq9g79', 'de', 1, 'https://ror.org/00szq9g79 Sonnenhalde (Switzerland)'),
(80697, 'https://ror.org/00t0q9z88', 'en', 1, 'https://ror.org/00t0q9z88 BioXFEL Science and Technology Center'),
(80698, 'https://ror.org/00t0rcy29', 'en', 1, 'https://ror.org/00t0rcy29 Fraunhofer Institute for Production Technology IPT Fraunhofer-Institut für Produktionstechnologie IPT'),
(80699, 'https://ror.org/00t10qd56', 'en', 1, 'https://ror.org/00t10qd56 Michigan Department of Natural Resources'),
(80700, 'https://ror.org/00t2dw182', 'no_lang_code', 1, 'https://ror.org/00t2dw182 Zora Biosciences (Finland)'),
(80701, 'https://ror.org/00t2n8418', 'en', 1, 'https://ror.org/00t2n8418 The Institute of Conservation'),
(80702, 'https://ror.org/00t2prd39', 'en', 1, 'https://ror.org/00t2prd39 Thaksin University ดหาวณทยาคัยทักษณณ'),
(80703, 'https://ror.org/00t65nv54', 'en', 1, 'https://ror.org/00t65nv54 Faraday Institute for Science and Religion'),
(80704, 'https://ror.org/00t6gsr31', 'en', 1, 'https://ror.org/00t6gsr31 Leeds Cares'),
(80705, 'https://ror.org/00t77bz53', 'en', 1, 'https://ror.org/00t77bz53 Foreign Agricultural Service'),
(80706, 'https://ror.org/00t89kj24', 'en', 1, 'https://ror.org/00t89kj24 Mackay Medical College 馬偕醫學院'),
(80707, 'https://ror.org/00t8bew53', 'no_lang_code', 1, 'https://ror.org/00t8bew53 Ionis Pharmaceuticals (United States)'),
(80708, 'https://ror.org/00ta7av32', 'en', 1, 'https://ror.org/00ta7av32 National Center for Communicable Diseases ЄАЛДВАРТ ÓØŠ’Š§Š˜Š Š”Š£Š”Š›ŠŠ›Š«Š Ņ®ŠŠ”Š­Š”ŠŠ˜Š™ Š¢ÓØŠ’'),
(80709, 'https://ror.org/00tbjqq75', 'en', 1, 'https://ror.org/00tbjqq75 Russian Federal Centre of Forensic Science of the Ministry of Justice of the Russian Federation Российский Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ центр суГебной ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ при ŠœŠøŠ½ŠøŃŃ‚ерстве ŃŽŃŃ‚ŠøŃ†ŠøŠø Российской ФеГерации'),
(80710, 'https://ror.org/00td68a17', 'da', 1, 'https://ror.org/00td68a17 Bispebjerg Hospital'),
(80711, 'https://ror.org/00tfqpy41', 'es', 1, 'https://ror.org/00tfqpy41 National Agrarian Health Service Servicio Nacional de Sanidad Agraria'),
(80712, 'https://ror.org/00tr5rr68', 'pt', 1, 'https://ror.org/00tr5rr68 Laboratório DNA Center'),
(80713, 'https://ror.org/00tr7ny14', 'en', 1, 'https://ror.org/00tr7ny14 Mental Health Research Canada Recherche en SantƩ Mentale Canada'),
(80714, 'https://ror.org/00trkmr27', 'en', 1, 'https://ror.org/00trkmr27 Institute for Diagnostic Imaging and Research of the Skin and Soft Tissues Instituto de Investigacion y Diagnostico por Imagenes en Piel y Tejidos Blandos'),
(80715, 'https://ror.org/00tsqex91', 'en', 1, 'https://ror.org/00tsqex91 Te Pūkenga'),
(80716, 'https://ror.org/00twmyj12', 'it', 1, 'https://ror.org/00twmyj12 Ospedale Vincenzo Cervello'),
(80717, 'https://ror.org/00v053551', 'en', 1, 'https://ror.org/00v053551 Osaka City General Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§é˜Ŗåø‚ę°‘ē—…é™¢ę©Ÿę§‹å¤§é˜Ŗåø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(80718, 'https://ror.org/00v0z9322', 'en', 1, 'https://ror.org/00v0z9322 Moscow Institute of Physics and Technology Московский физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(80719, 'https://ror.org/00v337f26', 'fr', 1, 'https://ror.org/00v337f26 ConfƩrence Universitaire de Suisse Occidentale'),
(80720, 'https://ror.org/00v50wt26', 'no_lang_code', 1, 'https://ror.org/00v50wt26 Single Cell Discoveries (Netherlands)'),
(80721, 'https://ror.org/00v5gqm66', 'en', 1, 'https://ror.org/00v5gqm66 China Institute of Atomic Energy äø­å›½åŽŸå­čƒ½ē§‘å­¦ē ”ē©¶é™¢'),
(80722, 'https://ror.org/00v8p7w89', 'en', 1, 'https://ror.org/00v8p7w89 National Institute of Justice'),
(80723, 'https://ror.org/00vavgj08', 'no_lang_code', 1, 'https://ror.org/00vavgj08 GI Innovation (South Korea) ģ§€ģ•„ģ“ģ“ė…øė² ģ“ģ…˜'),
(80724, 'https://ror.org/00vbdjc22', 'en', 1, 'https://ror.org/00vbdjc22 Institute of Physiology National Academy of Sciences of Belarus Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š˜Š—Š˜ŠžŠ›ŠžŠ“Š˜Š˜ ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠžŠ™ ŠŠšŠŠ”Š•ŠœŠ˜Š˜ ŠŠŠ£Šš Š‘Š•Š›ŠŠ Š£Š”Š˜'),
(80725, 'https://ror.org/00vcj2z66', 'en', 1, 'https://ror.org/00vcj2z66 MusƩe royal de l''Ontario Royal Ontario Museum'),
(80726, 'https://ror.org/00vd8cq28', 'en', 1, 'https://ror.org/00vd8cq28 Tree Fruit Research Laboratory'),
(80727, 'https://ror.org/00vdyrj80', 'en', 1, 'https://ror.org/00vdyrj80 Henan Academy of Agricultural Sciences ę²³å—ēœå†œäøšē§‘å­¦é™¢'),
(80728, 'https://ror.org/00ve2vg23', 'en', 1, 'https://ror.org/00ve2vg23 FORTH Institute of Petroleum Research Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪˆĻĪµĻ…Ī½Ī±Ļ‚ Πετρελαίου'),
(80729, 'https://ror.org/00vez3k45', 'en', 1, 'https://ror.org/00vez3k45 British Pain Society'),
(80730, 'https://ror.org/00vg4zj96', 'no_lang_code', 1, 'https://ror.org/00vg4zj96 Next Interactions (United States)'),
(80731, 'https://ror.org/00vh00724', 'en', 1, 'https://ror.org/00vh00724 International Institute for Molecular Oncology'),
(80732, 'https://ror.org/00vh6hg12', 'de', 1, 'https://ror.org/00vh6hg12 Hirslanden Salem-Spital'),
(80733, 'https://ror.org/00vj4fj91', 'en', 1, 'https://ror.org/00vj4fj91 Kenya Fisheries Service'),
(80734, 'https://ror.org/00vk9xr10', 'en', 1, 'https://ror.org/00vk9xr10 Caucasus Research Resource Centers įƒ™įƒįƒ•įƒ™įƒįƒ”įƒ˜įƒ˜įƒ” įƒ™įƒ•įƒšįƒ”įƒ•įƒ˜įƒ—įƒ˜ įƒ įƒ”įƒ”įƒ£įƒ įƒ”įƒ”įƒ‘įƒ˜įƒ” įƒŖįƒ”įƒœįƒ¢įƒ įƒ”įƒ‘įƒ˜įƒ”'),
(80735, 'https://ror.org/00vn06n10', 'en', 1, 'https://ror.org/00vn06n10 Simula Research Laboratory'),
(80736, 'https://ror.org/00vn9zp29', 'en', 1, 'https://ror.org/00vn9zp29 International Institute for Sustainability Australia'),
(80737, 'https://ror.org/00vp58v14', 'en', 1, 'https://ror.org/00vp58v14 American Society of Agricultural and Biological Engineers'),
(80738, 'https://ror.org/00vp5ry21', 'en', 1, 'https://ror.org/00vp5ry21 Iranshahr University دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų§ŪŒŲ±Ų§Ł†Ų“Ł‡Ų±'),
(80739, 'https://ror.org/00vpxf870', 'en', 1, 'https://ror.org/00vpxf870 Grand Teton National Park'),
(80740, 'https://ror.org/00vq6eh39', 'en', 1, 'https://ror.org/00vq6eh39 American Headache Society'),
(80741, 'https://ror.org/00vqs2b71', 'no_lang_code', 1, 'https://ror.org/00vqs2b71 JCR Pharmaceuticals (Japan) JCRćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(80742, 'https://ror.org/00vqyrr20', 'en', 1, 'https://ror.org/00vqyrr20 Platov South-Russian State Polytechnic University Южно-Российский Š³Š¾ŃŃƒŠ“арственный политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ (ŠŠŸŠ˜) имени М.И. ŠŸŠ»Š°Ń‚Š¾Š²Š°'),
(80743, 'https://ror.org/00vrhtt42', 'no_lang_code', 1, 'https://ror.org/00vrhtt42 Wessling (Hungary)'),
(80744, 'https://ror.org/00vs06289', 'en', 1, 'https://ror.org/00vs06289 European Physical Society'),
(80745, 'https://ror.org/00vs1pz50', 'en', 1, 'https://ror.org/00vs1pz50 Ministry of Internal Affairs and Communications ē·å‹™å¤§č‡£'),
(80746, 'https://ror.org/00vwzq490', 'no_lang_code', 1, 'https://ror.org/00vwzq490 Blazegraph (United States)'),
(80747, 'https://ror.org/00vx54857', 'en', 1, 'https://ror.org/00vx54857 Ezhou Central Hospital é„‚å·žåø‚äø­åæƒåŒ»é™¢'),
(80748, 'https://ror.org/00vxae445', 'en', 1, 'https://ror.org/00vxae445 Canadian Egg Marketing Agency'),
(80749, 'https://ror.org/00vyp4f52', 'no_lang_code', 1, 'https://ror.org/00vyp4f52 Wikov (Czechia)'),
(80750, 'https://ror.org/00vyr7c31', 'nl', 1, 'https://ror.org/00vyr7c31 Rode Kruis Ziekenhuis'),
(80751, 'https://ror.org/00w109h91', 'it', 1, 'https://ror.org/00w109h91 Istituto S.Anna Crotone'),
(80752, 'https://ror.org/00w1xt505', 'en', 1, 'https://ror.org/00w1xt505 Hunter Genetics'),
(80753, 'https://ror.org/00w1zvy92', 'en', 1, 'https://ror.org/00w1zvy92 Tokyo Metropolitan Institute of Public Health ę±äŗ¬éƒ½å„åŗ·å®‰å…Øē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(80754, 'https://ror.org/00w3m6887', 'en', 1, 'https://ror.org/00w3m6887 Luqman Unani Medical College Hospital and Research Center'),
(80755, 'https://ror.org/00w4zv247', 'en', 1, 'https://ror.org/00w4zv247 Southern California Reproductive Center');
INSERT INTO `rors` VALUES
(80756, 'https://ror.org/00w603503', 'es', 1, 'https://ror.org/00w603503 Centro Nacional de Medicina Tropical National Centre of Tropical Medicine'),
(80757, 'https://ror.org/00w9hey63', 'en', 1, 'https://ror.org/00w9hey63 Directorate General for Communications Networks, Content and Technology Kommunikationsnetze, Inhalte und Technologien RƩseaux de communication, contenu et technologies'),
(80758, 'https://ror.org/00wazyk32', 'en', 1, 'https://ror.org/00wazyk32 Centre Max Planck - Université d''Ottawa pour la Photonique Extrême et Quantique Max Planck - University of Ottawa Centre for Extreme and Quantum Photonics'),
(80759, 'https://ror.org/00wb4mk85', 'en', 1, 'https://ror.org/00wb4mk85 OpenCitations'),
(80760, 'https://ror.org/00wbzaf78', 'es', 1, 'https://ror.org/00wbzaf78 Con Vida Foundation Fundación Con Vida'),
(80761, 'https://ror.org/00wcwkf45', 'en', 1, 'https://ror.org/00wcwkf45 Korean Association for the Study of Intestinal Diseases ėŒ€ķ•œģž„ģ—°źµ¬ķ•™ķšŒ'),
(80762, 'https://ror.org/00wdyp114', 'en', 1, 'https://ror.org/00wdyp114 Indian Academy of Sciences'),
(80763, 'https://ror.org/00we5dk78', 'en', 1, 'https://ror.org/00we5dk78 American Society of Ichthyologists and Herpetologists'),
(80764, 'https://ror.org/00wj6x496', 'en', 1, 'https://ror.org/00wj6x496 Institut de Recherche en Immunologie et CancƩrologie Institute for Research in Immunology and Cancer'),
(80765, 'https://ror.org/00wk22n41', 'en', 1, 'https://ror.org/00wk22n41 Nederlandse Vereniging van Hemofilie-Patiƫnten Netherlands Haemophilia Society'),
(80766, 'https://ror.org/00wkwdc38', 'fr', 1, 'https://ror.org/00wkwdc38 Institut de SantĆ© et de SĆ©curitĆ© au Travail معهد الصحة و السلامة Ų§Ł„Ł…Ł‡Ł†ŁŠŲ© ŲØŲŖŁˆŁ†Ų³'),
(80767, 'https://ror.org/00wq1a296', 'en', 1, 'https://ror.org/00wq1a296 American Institute for Contemporary German Studies'),
(80768, 'https://ror.org/00wqjhh20', 'no_lang_code', 1, 'https://ror.org/00wqjhh20 Umicore (United States)'),
(80769, 'https://ror.org/00wrafe19', 'de', 1, 'https://ror.org/00wrafe19 Hirslanden Klinik Aarau'),
(80770, 'https://ror.org/00wthd003', 'no_lang_code', 1, 'https://ror.org/00wthd003 Allergan (Ireland)'),
(80771, 'https://ror.org/00wv18f77', 'en', 1, 'https://ror.org/00wv18f77 Institut Papst Benedikt XVI. Pope Benedict XVI Institute'),
(80772, 'https://ror.org/00wvavs63', 'en', 1, 'https://ror.org/00wvavs63 Association for Science įƒįƒ”įƒįƒŖįƒ˜įƒįƒŖįƒ˜įƒ įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒ˜įƒ”įƒįƒ—įƒ•įƒ˜įƒ”'),
(80773, 'https://ror.org/00wxex667', 'en', 1, 'https://ror.org/00wxex667 Global Fishing Watch'),
(80774, 'https://ror.org/00wykxp39', 'en', 1, 'https://ror.org/00wykxp39 Nelson Marlborough Institute of Technology'),
(80775, 'https://ror.org/00x0t3508', 'en', 1, 'https://ror.org/00x0t3508 American Iron and Steel Institute'),
(80776, 'https://ror.org/00x0z1472', 'en', 1, 'https://ror.org/00x0z1472 Templeton World Charity Foundation'),
(80777, 'https://ror.org/00x143s74', 'en', 1, 'https://ror.org/00x143s74 Homes England'),
(80778, 'https://ror.org/00x2kwy36', 'en', 1, 'https://ror.org/00x2kwy36 Coordinating Research Council'),
(80779, 'https://ror.org/00x69dn41', 'en', 1, 'https://ror.org/00x69dn41 ENEA Centro Ricerche Portici ENEA Portici Research Centre'),
(80780, 'https://ror.org/00x6ysg61', 'nl', 1, 'https://ror.org/00x6ysg61 Stichting Oogfonds Nederland'),
(80781, 'https://ror.org/00xddhq60', 'no_lang_code', 1, 'https://ror.org/00xddhq60 Al-Ahliyya Amman University Ų¬Ų§Ł…Ų¹Ų© عمان Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(80782, 'https://ror.org/00xdnjz02', 'es', 1, 'https://ror.org/00xdnjz02 Fundación Valle del Lili'),
(80783, 'https://ror.org/00xfx4h06', 'pt', 1, 'https://ror.org/00xfx4h06 Hospital Santa Paula'),
(80784, 'https://ror.org/00xfy8b60', 'en', 1, 'https://ror.org/00xfy8b60 Congregation Emanu El of New York'),
(80785, 'https://ror.org/00xj3b267', 'no_lang_code', 1, 'https://ror.org/00xj3b267 GKN (Japan) GKNćƒ‰ćƒ©ć‚¤ćƒ–ćƒ©ć‚¤ćƒ³ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(80786, 'https://ror.org/00xj7pv34', 'en', 1, 'https://ror.org/00xj7pv34 Max Planck - Harvard Research Center for the Archaeoscience of the Ancient Mediterranean'),
(80787, 'https://ror.org/00xjcve44', 'en', 1, 'https://ror.org/00xjcve44 Center for Personalized Cancer Treatment'),
(80788, 'https://ror.org/00xmy4x78', 'en', 1, 'https://ror.org/00xmy4x78 Nagano Prefectural Suzaka Hospital é•·é‡ŽēœŒē«‹äæ”å·žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(80789, 'https://ror.org/00xqzp862', 'en', 1, 'https://ror.org/00xqzp862 Von Hippel Lindau Alliance'),
(80790, 'https://ror.org/00xs4kt25', 'en', 1, 'https://ror.org/00xs4kt25 Gifu City Women''s College å²é˜œåø‚ē«‹å„³å­ēŸ­ęœŸå¤§å­¦'),
(80791, 'https://ror.org/00xsdn005', 'en', 1, 'https://ror.org/00xsdn005 Kanazawa University Hospital é‡‘ę²¢å¤§å­¦é™„å±žē—…é™¢'),
(80792, 'https://ror.org/00xwjya15', 'de', 1, 'https://ror.org/00xwjya15 Stiftung der Deutschen Wirtschaft'),
(80793, 'https://ror.org/00xyb8f56', 'en', 1, 'https://ror.org/00xyb8f56 Massachusetts Medical Society'),
(80794, 'https://ror.org/00xzdzk88', 'no_lang_code', 1, 'https://ror.org/00xzdzk88 Nanostring Technologies (United States)'),
(80795, 'https://ror.org/00y3aq160', 'no_lang_code', 1, 'https://ror.org/00y3aq160 JAę–°ę½ŸåŽšē”Ÿé€£äøŠč¶Šē·åˆē—…é™¢ Jōetsu General Hospital'),
(80796, 'https://ror.org/00y48xj05', 'es', 1, 'https://ror.org/00y48xj05 Hospital Roberto del Rio'),
(80797, 'https://ror.org/00y6v8h24', 'en', 1, 'https://ror.org/00y6v8h24 American Society of Cataract and Refractive Surgery'),
(80798, 'https://ror.org/00ya8kg34', 'en', 1, 'https://ror.org/00ya8kg34 Association Canadienne des ErgothƩrapeutes Canadian Association of Occupational Therapists'),
(80799, 'https://ror.org/00yam4t82', 'no_lang_code', 1, 'https://ror.org/00yam4t82 McKing Consulting (United States)'),
(80800, 'https://ror.org/00yb5c421', 'no_lang_code', 1, 'https://ror.org/00yb5c421 Valio (Finland)'),
(80801, 'https://ror.org/00ybseg45', 'en', 1, 'https://ror.org/00ybseg45 Zoological Institute, State Academy of Sciences 국가과학원 ė™ė¬¼ķ•™ģ—°źµ¬ģ†Œ'),
(80802, 'https://ror.org/00ybtn229', 'es', 1, 'https://ror.org/00ybtn229 Unión de Ornitólogos de Costa Rica'),
(80803, 'https://ror.org/00ydnew86', 'en', 1, 'https://ror.org/00ydnew86 SKA Telescope, Australia'),
(80804, 'https://ror.org/00yfjxy10', 'en', 1, 'https://ror.org/00yfjxy10 Beit Rivka Geriatric Medical Center ×ž×Ø×›×– רפואי ×’×Ø×™××˜×Ø×™ בית רבקה'),
(80805, 'https://ror.org/00yhmjd28', 'en', 1, 'https://ror.org/00yhmjd28 Institut de Recherche pour la Chromatographie Research Institute for Chromatography'),
(80806, 'https://ror.org/00ypgyy34', 'en', 1, 'https://ror.org/00ypgyy34 State University of Malang Universitas Negeri Malang'),
(80807, 'https://ror.org/00yq7f263', 'en', 1, 'https://ror.org/00yq7f263 Cobalt Institute'),
(80808, 'https://ror.org/00yqpgp96', 'sv', 1, 'https://ror.org/00yqpgp96 Drottning Silvias barn- och ungdomssjukhus'),
(80809, 'https://ror.org/00yqvtm78', 'en', 1, 'https://ror.org/00yqvtm78 University of Shahrood دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų“Ų§Ł‡Ų±ŁˆŲÆ'),
(80810, 'https://ror.org/00yss2p92', 'en', 1, 'https://ror.org/00yss2p92 Canadian Institute for Military and Veteran Health Research Institut Canadien de Recherche sur la SantƩ des Militaires et des VƩtƩrans'),
(80811, 'https://ror.org/00yverh79', 'fr', 1, 'https://ror.org/00yverh79 Hirslanden Clinique Bois-Cerf'),
(80812, 'https://ror.org/00yvh2s32', 'en', 1, 'https://ror.org/00yvh2s32 Arrowhead Regional Medical Center'),
(80813, 'https://ror.org/00yvwb080', 'en', 1, 'https://ror.org/00yvwb080 Tropenbos International'),
(80814, 'https://ror.org/00yvz6462', 'en', 1, 'https://ror.org/00yvz6462 Japan Pediatric Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°å…ē§‘å­¦ä¼š'),
(80815, 'https://ror.org/00ywwcv54', 'en', 1, 'https://ror.org/00ywwcv54 European Forest Institute'),
(80816, 'https://ror.org/00yzvve44', 'no_lang_code', 1, 'https://ror.org/00yzvve44 Nippon Paper Industries (Japan) ę—„ęœ¬č£½ē“™ę Ŗå¼ä¼šē¤¾'),
(80817, 'https://ror.org/00yzz2383', 'en', 1, 'https://ror.org/00yzz2383 Hamilton Medical Research Group'),
(80818, 'https://ror.org/00z18yv90', 'en', 1, 'https://ror.org/00z18yv90 Royal Centre for Disease Control'),
(80819, 'https://ror.org/00z59w514', 'en', 1, 'https://ror.org/00z59w514 Huawei German Research Center'),
(80820, 'https://ror.org/00z8brm94', 'en', 1, 'https://ror.org/00z8brm94 Austrian Mathematical Society Ɩsterreichische Mathematische Gesellschaft'),
(80821, 'https://ror.org/00z8x2k69', 'no_lang_code', 1, 'https://ror.org/00z8x2k69 Pfizer (Switzerland)'),
(80822, 'https://ror.org/00zb80875', 'en', 1, 'https://ror.org/00zb80875 National Heart Institute ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤¹ą¤¾ą¤°ą„ą¤Ÿ ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ'),
(80823, 'https://ror.org/00zbcgj92', 'no_lang_code', 1, 'https://ror.org/00zbcgj92 Embraer (Brazil)'),
(80824, 'https://ror.org/00zbfm828', 'no_lang_code', 1, 'https://ror.org/00zbfm828 Cambridge Crystallographic Data Centre'),
(80825, 'https://ror.org/00zbj9525', 'en', 1, 'https://ror.org/00zbj9525 Center for Research and Interdisciplinarity Centre de Recherches Interdisciplinaires'),
(80826, 'https://ror.org/00zc2d847', 'en', 1, 'https://ror.org/00zc2d847 Black Sea Biosphere Reserve'),
(80827, 'https://ror.org/00zca7903', 'en', 1, 'https://ror.org/00zca7903 Biomedical Research Networking Center on Neurodegenerative Diseases Centro de Investigación Biomédica en Red, Enfermedades Neurodegenerativas'),
(80828, 'https://ror.org/00ze7pb24', 'en', 1, 'https://ror.org/00ze7pb24 New England Center for OCD and Anxiety'),
(80829, 'https://ror.org/00zeq0353', 'no_lang_code', 1, 'https://ror.org/00zeq0353 Quansight (United States)'),
(80830, 'https://ror.org/00zfjyx93', 'en', 1, 'https://ror.org/00zfjyx93 Saskatchewan Research Council (Canada)'),
(80831, 'https://ror.org/00zg4za48', 'en', 1, 'https://ror.org/00zg4za48 Eidgenössische Hochschule für Berufsbildung EHB Haute école fédérale en formation professionnelle HEFP Scuola universitaria federale per la formazione professionale SUFFP Swiss Federal University for Vocational Education and Training SFUVET'),
(80832, 'https://ror.org/00zjkgd30', 'en', 1, 'https://ror.org/00zjkgd30 Parkinson’s Disease and Movement Disorder Center of Silicon Valley'),
(80833, 'https://ror.org/00zk5w269', 'id', 1, 'https://ror.org/00zk5w269 Universitas Sari Mutiara Indonesia'),
(80834, 'https://ror.org/00zkxfr79', 'no_lang_code', 1, 'https://ror.org/00zkxfr79 DataJoint NEURO (United States)'),
(80835, 'https://ror.org/00zky6d38', 'en', 1, 'https://ror.org/00zky6d38 Computer Algorithms for Medicine'),
(80836, 'https://ror.org/00znvbk37', 'en', 1, 'https://ror.org/00znvbk37 National Health Laboratory Service'),
(80837, 'https://ror.org/00znwxq75', 'no_lang_code', 1, 'https://ror.org/00znwxq75 NeuroPace (United States)'),
(80838, 'https://ror.org/00zp3kj13', 'en', 1, 'https://ror.org/00zp3kj13 Shanghai Municipal Human Resources and Social Security Bureau äøŠęµ·åø‚äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœå±€'),
(80839, 'https://ror.org/00zpwa373', 'it', 1, 'https://ror.org/00zpwa373 Fondazione Italiana Fegato Italian Liver Foundation'),
(80840, 'https://ror.org/00zqaxa34', 'en', 1, 'https://ror.org/00zqaxa34 Northeast Electric Power University äøœåŒ—ē”µåŠ›å¤§å­¦'),
(80841, 'https://ror.org/00zvx1763', 'en', 1, 'https://ror.org/00zvx1763 Proton Therapy Centre'),
(80842, 'https://ror.org/00zwdnt53', 'no_lang_code', 1, 'https://ror.org/00zwdnt53 Umicore (Belgium)'),
(80843, 'https://ror.org/00zxgrh39', 'en', 1, 'https://ror.org/00zxgrh39 Heilongjiang Provincial Academy of Agricultural Sciences é»‘é¾™ę±Ÿēœå†œäøšē§‘å­¦é™¢'),
(80844, 'https://ror.org/00zy16k74', 'en', 1, 'https://ror.org/00zy16k74 Laboratory Dr. Wisplinghoff'),
(80845, 'https://ror.org/00zyg0w36', 'fr', 1, 'https://ror.org/00zyg0w36 Ministère de la Santé et de l''Hygiène Publique'),
(80846, 'https://ror.org/00zyhqb45', 'no_lang_code', 1, 'https://ror.org/00zyhqb45 Novametrics (United Kingdom)'),
(80847, 'https://ror.org/00zz6h841', 'en', 1, 'https://ror.org/00zz6h841 Research Institute of Emergency Childrens Surgery and Traumatology ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неотложной Гетской Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø Šø травматологии'),
(80848, 'https://ror.org/0101kry21', 'en', 1, 'https://ror.org/0101kry21 Allegheny Health Network'),
(80849, 'https://ror.org/01026pq66', 'en', 1, 'https://ror.org/01026pq66 ENEA Centro Ricerche Frascati ENEA Frascati Research Centre'),
(80850, 'https://ror.org/0102jy333', 'no_lang_code', 1, 'https://ror.org/0102jy333 Nanoscribe (Germany)'),
(80851, 'https://ror.org/01036m381', 'en', 1, 'https://ror.org/01036m381 Scholar Rock (United States)'),
(80852, 'https://ror.org/0104cy831', 'en', 1, 'https://ror.org/0104cy831 Community College of Rhode Island'),
(80853, 'https://ror.org/0105s3595', 'sl', 1, 'https://ror.org/0105s3595 Å KUC Association'),
(80854, 'https://ror.org/0107a5128', 'no_lang_code', 1, 'https://ror.org/0107a5128 IQM (Germany)'),
(80855, 'https://ror.org/010b90792', 'en', 1, 'https://ror.org/010b90792 Samara Federal Research Scientific Center Дамарский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук'),
(80856, 'https://ror.org/010dcp921', 'en', 1, 'https://ror.org/010dcp921 California Current Ecosystem Long Term Ecological Research'),
(80857, 'https://ror.org/010derh63', 'en', 1, 'https://ror.org/010derh63 The VTCT Foundation'),
(80858, 'https://ror.org/010g9bb70', 'no_lang_code', 1, 'https://ror.org/010g9bb70 Quest Diagnostics (United States)'),
(80859, 'https://ror.org/010htnk72', 'no_lang_code', 1, 'https://ror.org/010htnk72 Menarini Group (Luxembourg)'),
(80860, 'https://ror.org/010hz0g26', 'en', 1, 'https://ror.org/010hz0g26 Jichi Medical University č‡Ŗę²»åŒ»ē§‘å¤§å­¦'),
(80861, 'https://ror.org/010n0x685', 'en', 1, 'https://ror.org/010n0x685 Central University of Ecuador Universidad Central del Ecuador'),
(80862, 'https://ror.org/010p19169', 'en', 1, 'https://ror.org/010p19169 Korea Culture & Tourism Institute ķ•œźµ­ė¬øķ™”ź“€ź“‘ģ—°źµ¬ģ›'),
(80863, 'https://ror.org/010p1tc53', 'en', 1, 'https://ror.org/010p1tc53 Phase One Foundation'),
(80864, 'https://ror.org/010pmpe69', 'en', 1, 'https://ror.org/010pmpe69 Lomonosov Moscow State University Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(80865, 'https://ror.org/010qsnr58', 'no_lang_code', 1, 'https://ror.org/010qsnr58 Rentschler Biopharma (Germany)'),
(80866, 'https://ror.org/010s0k503', 'no_lang_code', 1, 'https://ror.org/010s0k503 XING Technologies (Australia)'),
(80867, 'https://ror.org/010s54n03', 'de', 1, 'https://ror.org/010s54n03 Leibniz-Forschungsinstitut für Molekulare Pharmakologie'),
(80868, 'https://ror.org/010sh9e25', 'no_lang_code', 1, 'https://ror.org/010sh9e25 Novana (United States)'),
(80869, 'https://ror.org/010spvh97', 'no_lang_code', 1, 'https://ror.org/010spvh97 Alcon (France)'),
(80870, 'https://ror.org/010vedh32', 'en', 1, 'https://ror.org/010vedh32 New Jersey Urology'),
(80871, 'https://ror.org/010yy8b40', 'en', 1, 'https://ror.org/010yy8b40 NLR India'),
(80872, 'https://ror.org/0112vdv20', 'en', 1, 'https://ror.org/0112vdv20 Illinois Society for the Prevention of Blindness'),
(80873, 'https://ror.org/01141nq92', 'en', 1, 'https://ror.org/01141nq92 New Zealand Brain Research Institute'),
(80874, 'https://ror.org/011619g15', 'en', 1, 'https://ror.org/011619g15 International Institute of Innovation and Technology'),
(80875, 'https://ror.org/0116dk457', 'en', 1, 'https://ror.org/0116dk457 D Y Patil International University ą¤”ą„€ वाय ą¤Ŗą¤¾ą¤Ÿą„€ą¤² ą¤†ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(80876, 'https://ror.org/0116vew40', 'es', 1, 'https://ror.org/0116vew40 Fundación para el Fomento de la Investigación Sanitaria y Biomédica de la Comunitat Valenciana'),
(80877, 'https://ror.org/01173vs27', 'en', 1, 'https://ror.org/01173vs27 University of Chittagong ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(80878, 'https://ror.org/0117s0n37', 'en', 1, 'https://ror.org/0117s0n37 George & Fay Yee Centre for Healthcare Innovation'),
(80879, 'https://ror.org/011803230', 'es', 1, 'https://ror.org/011803230 Fundación Española de la Nutrición Spanish Nutrition Foundation'),
(80880, 'https://ror.org/0118xsm53', 'en', 1, 'https://ror.org/0118xsm53 Fraunhofer Research Institution for Battery Cell Production Fraunhofer-Einrichtung Forschungsfertigung Batteriezelle'),
(80881, 'https://ror.org/0119pby33', 'es', 1, 'https://ror.org/0119pby33 Centro de Investigación Biomédica en Red de Enfermedades Respiratorias'),
(80882, 'https://ror.org/0119q5s74', 'en', 1, 'https://ror.org/0119q5s74 Bangladesh Academy of Sciences'),
(80883, 'https://ror.org/011bh3d24', 'en', 1, 'https://ror.org/011bh3d24 Colombian Family Welfare Institute'),
(80884, 'https://ror.org/011bqgx84', 'en', 1, 'https://ror.org/011bqgx84 Universidad del Tolima University of Tolima'),
(80885, 'https://ror.org/011bss535', 'no_lang_code', 1, 'https://ror.org/011bss535 Victorinox (Switzerland)'),
(80886, 'https://ror.org/011cztj49', 'en', 1, 'https://ror.org/011cztj49 Southampton General Hospital'),
(80887, 'https://ror.org/011em6227', 'en', 1, 'https://ror.org/011em6227 College of Optometrists'),
(80888, 'https://ror.org/011h3r445', 'en', 1, 'https://ror.org/011h3r445 ElƤketurvakeskus Finnish Centre for Pensions'),
(80889, 'https://ror.org/011jsc803', 'en', 1, 'https://ror.org/011jsc803 MRC Human Genetics Unit'),
(80890, 'https://ror.org/011kpjv07', 'en', 1, 'https://ror.org/011kpjv07 Institute for Scientific and Technological Information'),
(80891, 'https://ror.org/011n0hq04', 'no_lang_code', 1, 'https://ror.org/011n0hq04 Emulate (United States)'),
(80892, 'https://ror.org/011n2hy47', 'en', 1, 'https://ror.org/011n2hy47 FƩdƩration Mondiale Des Journalistes Scientifiques World Federation of Science Journalists'),
(80893, 'https://ror.org/011n7v210', 'en', 1, 'https://ror.org/011n7v210 Shimane Prefectural Police 島根県警察'),
(80894, 'https://ror.org/011nkrc70', 'en', 1, 'https://ror.org/011nkrc70 American Indian College Fund'),
(80895, 'https://ror.org/011pmrv14', 'en', 1, 'https://ror.org/011pmrv14 William Angliss Institute'),
(80896, 'https://ror.org/011qexd20', 'en', 1, 'https://ror.org/011qexd20 North Jersey Brain and Spine Center'),
(80897, 'https://ror.org/011rrqf91', 'en', 1, 'https://ror.org/011rrqf91 Open University of Sri Lanka ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®¤ą®æą®±ą®ØąÆą®¤ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ශ් රී ą¶½ą¶‚ą¶šą· ą·€ą·’ą·€ą·˜ą¶­ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(80898, 'https://ror.org/011s44m53', 'en', 1, 'https://ror.org/011s44m53 Directorate of Measures and Precious Metals of the Republic of Serbia Direkcija za mere i dragocene metale Š”ŠøŃ€ŠµŠŗŃ†ŠøŃ˜Šµ за мере Šø Грагоцене метале'),
(80899, 'https://ror.org/011ypgb65', 'en', 1, 'https://ror.org/011ypgb65 Institute for Clinical and Economic Review'),
(80900, 'https://ror.org/011ywze69', 'it', 1, 'https://ror.org/011ywze69 Roman Society of Natural Science SocietĆ  Romana di Scienze Naturali'),
(80901, 'https://ror.org/0120tx153', 'en', 1, 'https://ror.org/0120tx153 Jƶnkƶping County Museum'),
(80902, 'https://ror.org/012322w18', 'en', 1, 'https://ror.org/012322w18 Otsuma Women''s University 大妻儳子大学'),
(80903, 'https://ror.org/012547n22', 'en', 1, 'https://ror.org/012547n22 Jeffrey D. Horn Vision For Life'),
(80904, 'https://ror.org/0125q6d71', 'en', 1, 'https://ror.org/0125q6d71 Consortium for Policy Research in Education'),
(80905, 'https://ror.org/0126xah18', 'en', 1, 'https://ror.org/0126xah18 Chiba University Hospital åƒč‘‰å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(80906, 'https://ror.org/01270hm15', 'en', 1, 'https://ror.org/01270hm15 Instytut Fizjologii i Żywienia Zwierząt im. Jana Kielanowskiego PAN Kielanowski Institute of Animal Physiology and Nutrition'),
(80907, 'https://ror.org/01276vm23', 'en', 1, 'https://ror.org/01276vm23 South Bay Interdisciplinary Science Center'),
(80908, 'https://ror.org/0129hgq75', 'en', 1, 'https://ror.org/0129hgq75 Danesh-e-Tandorosti Iranian Institute of Higher Health'),
(80909, 'https://ror.org/012anat48', 'no_lang_code', 1, 'https://ror.org/012anat48 Cloud Posse (United States)'),
(80910, 'https://ror.org/012ane130', 'en', 1, 'https://ror.org/012ane130 Centre For Sustainable Urban Development Centro de Desarrollo Urbano Sustentable'),
(80911, 'https://ror.org/012bxv356', 'en', 1, 'https://ror.org/012bxv356 University of Mysore UniversitĆ© de mysore ą®®ąÆˆą®šąÆ‚ą®°ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°®ą±ˆą°øą±‚ą°°ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²®ą³ˆą²øą³‚ą²°ą³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą“®ąµˆą“øąµ‚ąµ¼ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(80912, 'https://ror.org/012cqkk56', 'no_lang_code', 1, 'https://ror.org/012cqkk56 Pacific Theological College'),
(80913, 'https://ror.org/012daep68', 'en', 1, 'https://ror.org/012daep68 Japan Anti Tuberculosis Association å…¬ē›Šč²”å›£ę³•äŗŗēµę øäŗˆé˜²ä¼š'),
(80914, 'https://ror.org/012feq088', 'en', 1, 'https://ror.org/012feq088 Kids'' Brain Tumor Cure Foundation'),
(80915, 'https://ror.org/012fqf756', 'de', 1, 'https://ror.org/012fqf756 Hirslanden Klinik Am Rosenberg'),
(80916, 'https://ror.org/012hfdz28', 'fr', 1, 'https://ror.org/012hfdz28 Centre de RƩfƩrence des Maladies Autoinflammatoires et des Amyloses'),
(80917, 'https://ror.org/012j67x85', 'en', 1, 'https://ror.org/012j67x85 Annenberg Foundation'),
(80918, 'https://ror.org/012mmb732', 'en', 1, 'https://ror.org/012mmb732 Southern California Eye Institute'),
(80919, 'https://ror.org/012mvrz03', 'en', 1, 'https://ror.org/012mvrz03 Perm State Humanitarian-Pedagogical University ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(80920, 'https://ror.org/012p54t81', 'no_lang_code', 1, 'https://ror.org/012p54t81 Gemalto (France)'),
(80921, 'https://ror.org/012rtfc41', 'no_lang_code', 1, 'https://ror.org/012rtfc41 Water Technology (Australia)'),
(80922, 'https://ror.org/012sdwt38', 'no_lang_code', 1, 'https://ror.org/012sdwt38 BioBank Japan ćƒć‚¤ć‚Ŗćƒćƒ³ć‚Æ ć‚øćƒ£ćƒ‘ćƒ³'),
(80923, 'https://ror.org/012sfmg27', 'en', 1, 'https://ror.org/012sfmg27 Anhui Sanlian University 安徽三联学院'),
(80924, 'https://ror.org/012tqgb57', 'en', 1, 'https://ror.org/012tqgb57 Ryukoku University é¾č°·å¤§å­¦'),
(80925, 'https://ror.org/012v2c923', 'no_lang_code', 1, 'https://ror.org/012v2c923 BeiGene (China)'),
(80926, 'https://ror.org/012xdha97', 'en', 1, 'https://ror.org/012xdha97 University of Malakand جامعہ Ł…Ų§Ł„Ų§Ś©Ł†Śˆ'),
(80927, 'https://ror.org/012xv5c42', 'it', 1, 'https://ror.org/012xv5c42 Fondazione Querini Stampalia'),
(80928, 'https://ror.org/012y0eh02', 'no_lang_code', 1, 'https://ror.org/012y0eh02 Theolytics (United Kingdom)'),
(80929, 'https://ror.org/012yyz739', 'no_lang_code', 1, 'https://ror.org/012yyz739 Givaudan (Netherlands)'),
(80930, 'https://ror.org/012zjgq34', 'en', 1, 'https://ror.org/012zjgq34 Korea Institute for Animal Products Quality Evaluation ģ¶•ģ‚°ė¬¼ķ’ˆģ§ˆķ‰ź°€ģ›'),
(80931, 'https://ror.org/013314927', 'en', 1, 'https://ror.org/013314927 Universitas Surabaya University of Surabaya'),
(80932, 'https://ror.org/0133gy560', 'no_lang_code', 1, 'https://ror.org/0133gy560 Tishcon (United States)'),
(80933, 'https://ror.org/01357ty92', 'en', 1, 'https://ror.org/01357ty92 National Institute of Metrology (Thailand) ąøŖąø–ąø²ąøšąø±ąø™ąø”ąø²ąø•ąø£ąø§ąø“ąø—ąø¢ąø²ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(80934, 'https://ror.org/0135c5n64', 'en', 1, 'https://ror.org/0135c5n64 Central Intelligence Agency'),
(80935, 'https://ror.org/0135db650', 'en', 1, 'https://ror.org/0135db650 Center for Agricultural Resources Research'),
(80936, 'https://ror.org/0137n4m74', 'en', 1, 'https://ror.org/0137n4m74 Tuskegee University'),
(80937, 'https://ror.org/0139hn422', 'en', 1, 'https://ror.org/0139hn422 Palmer Long Term Ecological Research'),
(80938, 'https://ror.org/0139s2465', 'no_lang_code', 1, 'https://ror.org/0139s2465 Enterome (France)'),
(80939, 'https://ror.org/013aa2c03', 'en', 1, 'https://ror.org/013aa2c03 Institute of Mental Health and Neurosciences'),
(80940, 'https://ror.org/013b36x77', 'en', 1, 'https://ror.org/013b36x77 Advantage West Midlands'),
(80941, 'https://ror.org/013bkjj52', 'en', 1, 'https://ror.org/013bkjj52 Beijing Graphene Institute åŒ—äŗ¬ēŸ³å¢ØēƒÆē ”ē©¶é™¢'),
(80942, 'https://ror.org/013fk0013', 'en', 1, 'https://ror.org/013fk0013 Institute for the Study of Anthropic Impact and Sustainability in the Marine Environment Istituto per lo studio degli impatti Antropici e SostenibilitĆ  in ambiente marino'),
(80943, 'https://ror.org/013j2zh96', 'ca', 1, 'https://ror.org/013j2zh96 Institut Català d''Investigació Química Institute of Chemical Research of Catalonia'),
(80944, 'https://ror.org/013jy7g98', 'en', 1, 'https://ror.org/013jy7g98 Cohen Veterans Bioscience'),
(80945, 'https://ror.org/013k5y296', 'no_lang_code', 1, 'https://ror.org/013k5y296 Otsuka (Japan) å¤§å”šč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(80946, 'https://ror.org/013kx8n09', 'en', 1, 'https://ror.org/013kx8n09 Millennium Initiative for Collaborative Research on Bacterial Resistance'),
(80947, 'https://ror.org/013m0ej23', 'en', 1, 'https://ror.org/013m0ej23 Institut Périmètre de Physique Théorique Perimeter Institute'),
(80948, 'https://ror.org/013mz8190', 'en', 1, 'https://ror.org/013mz8190 Laureate Education'),
(80949, 'https://ror.org/013n55y95', 'en', 1, 'https://ror.org/013n55y95 Cosmetology Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚³ć‚¹ćƒ”ćƒˆćƒ­ć‚øćƒ¼ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(80950, 'https://ror.org/013nat269', 'en', 1, 'https://ror.org/013nat269 Finlands miljƶcentral Finnish Environment Institute Suomen ympƤristƶkeskus'),
(80951, 'https://ror.org/013nbmf56', 'no_lang_code', 1, 'https://ror.org/013nbmf56 Invixium (Canada)'),
(80952, 'https://ror.org/013q1e562', 'en', 1, 'https://ror.org/013q1e562 Arthur B. McDonald-Canadian Astroparticle Physics Research Institute'),
(80953, 'https://ror.org/013rvtk45', 'en', 1, 'https://ror.org/013rvtk45 Kochi Medical School Hospital é«˜ēŸ„å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(80954, 'https://ror.org/013z4s422', 'no_lang_code', 1, 'https://ror.org/013z4s422 Guardant (United States)'),
(80955, 'https://ror.org/013zder45', 'en', 1, 'https://ror.org/013zder45 Virginia Coast Reserve Long Term Ecological Research'),
(80956, 'https://ror.org/014487k66', 'en', 1, 'https://ror.org/014487k66 Canadian Nuclear Laboratories'),
(80957, 'https://ror.org/0149cpy58', 'en', 1, 'https://ror.org/0149cpy58 Countess of Chester Hospital NHS Foundation Trust'),
(80958, 'https://ror.org/0149jvn88', 'en', 1, 'https://ror.org/0149jvn88 King Saud bin Abdulaziz University for Health Sciences Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ سعود بن Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ² Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲµŲ­ŁŠŲ©'),
(80959, 'https://ror.org/0149pv473', 'en', 1, 'https://ror.org/0149pv473 Hamburg Centre for Ultrafast Imaging'),
(80960, 'https://ror.org/014anrn41', 'en', 1, 'https://ror.org/014anrn41 Ateneum Szkoła Wyższa Ateneum University'),
(80961, 'https://ror.org/014b0da27', 'en', 1, 'https://ror.org/014b0da27 Crystal Run Healthcare'),
(80962, 'https://ror.org/014d23c86', 'en', 1, 'https://ror.org/014d23c86 Centre of Registers Vastra Gotaland Registercentrum VƤstra Gƶtaland'),
(80963, 'https://ror.org/014ezsb26', 'en', 1, 'https://ror.org/014ezsb26 United Nations Children''s Fund Niger'),
(80964, 'https://ror.org/014fhvx65', 'en', 1, 'https://ror.org/014fhvx65 Canadian Respiratory Research Network, RƩseau canadien de recherche respiratoire'),
(80965, 'https://ror.org/014hvfk26', 'pt', 1, 'https://ror.org/014hvfk26 UniFG Centro UniversitƔrio'),
(80966, 'https://ror.org/014ja3n03', 'en', 1, 'https://ror.org/014ja3n03 University Hospitals Birmingham NHS Foundation Trust'),
(80967, 'https://ror.org/014n7xm98', 'pt', 1, 'https://ror.org/014n7xm98 Universidade Federal do Delta do ParnaĆ­ba'),
(80968, 'https://ror.org/014napt72', 'en', 1, 'https://ror.org/014napt72 American Academy In Rome'),
(80969, 'https://ror.org/014nmm080', 'de', 1, 'https://ror.org/014nmm080 Gesellschaft zur Fƶrderung Kynologischer Forschung'),
(80970, 'https://ror.org/014nwb521', 'en', 1, 'https://ror.org/014nwb521 Sydney Sexual Health Centre'),
(80971, 'https://ror.org/014nzh720', 'fr', 1, 'https://ror.org/014nzh720 Droit et changement social'),
(80972, 'https://ror.org/014nzt826', 'en', 1, 'https://ror.org/014nzt826 Endeavour College of Natural Health'),
(80973, 'https://ror.org/014qktf20', 'en', 1, 'https://ror.org/014qktf20 Symbiosis Group'),
(80974, 'https://ror.org/014r5ah89', 'no_lang_code', 1, 'https://ror.org/014r5ah89 ZOE (United Kingdom)'),
(80975, 'https://ror.org/014stvx20', 'en', 1, 'https://ror.org/014stvx20 Dutch Institute for Clinical Auditing'),
(80976, 'https://ror.org/014tda213', 'es', 1, 'https://ror.org/014tda213 Hospital Dr Arturo OƱativia'),
(80977, 'https://ror.org/014x2ky39', 'en', 1, 'https://ror.org/014x2ky39 Whyteman’s Brae Hospital'),
(80978, 'https://ror.org/014yn7y10', 'en', 1, 'https://ror.org/014yn7y10 Justiitsministeerium Ministry of Justice'),
(80979, 'https://ror.org/015121715', 'en', 1, 'https://ror.org/015121715 Peterson Institute for International Economics'),
(80980, 'https://ror.org/01529vy56', 'en', 1, 'https://ror.org/01529vy56 Mie University äø‰é‡å¤§å­¦'),
(80981, 'https://ror.org/0152zzg30', 'en', 1, 'https://ror.org/0152zzg30 Anhui University of Finance and Economics å®‰å¾½č“¢ē»å¤§å­¦'),
(80982, 'https://ror.org/0154fps75', 'en', 1, 'https://ror.org/0154fps75 Pinega Nature Reserve Pinezhsky Zapovednik'),
(80983, 'https://ror.org/0155e5d19', 'en', 1, 'https://ror.org/0155e5d19 National Police Academy 警察庁警察大学栔'),
(80984, 'https://ror.org/0155sw530', 'en', 1, 'https://ror.org/0155sw530 Seattle Epidemiologic Information and Research Center'),
(80985, 'https://ror.org/01565p617', 'en', 1, 'https://ror.org/01565p617 Western Connecticut State University'),
(80986, 'https://ror.org/0158pzk57', 'en', 1, 'https://ror.org/0158pzk57 Philippine Social Science Council'),
(80987, 'https://ror.org/015bnwc11', 'no_lang_code', 1, 'https://ror.org/015bnwc11 Xi''an Honghui Hospital č„æå®‰åø‚ēŗ¢ä¼šåŒ»é™¢'),
(80988, 'https://ror.org/015bxyv30', 'en', 1, 'https://ror.org/015bxyv30 Gujarat Cancer & Research Institute'),
(80989, 'https://ror.org/015c54q78', 'pt', 1, 'https://ror.org/015c54q78 Centro UniversitƔrio Unigran Capital'),
(80990, 'https://ror.org/015dkz579', 'en', 1, 'https://ror.org/015dkz579 Bread for the World Institute'),
(80991, 'https://ror.org/015eybs17', 'en', 1, 'https://ror.org/015eybs17 Game & Wildlife Conservation Trust'),
(80992, 'https://ror.org/015hppy16', 'en', 1, 'https://ror.org/015hppy16 Showa General Hospital å…¬ē«‹ę˜­å’Œē—…é™¢'),
(80993, 'https://ror.org/015n4kv50', 'en', 1, 'https://ror.org/015n4kv50 Adobe Gastroenterology'),
(80994, 'https://ror.org/015pm1582', 'no_lang_code', 1, 'https://ror.org/015pm1582 Remit Kenya (Kenya)'),
(80995, 'https://ror.org/015thzh02', 'de', 1, 'https://ror.org/015thzh02 Genetikum'),
(80996, 'https://ror.org/015x1jv94', 'en', 1, 'https://ror.org/015x1jv94 State Institution "Institute for Children and Adolescents Health Care at the National Academy of Medical Sciences of Ukraine" Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ охорони зГоров''я Гітей та піГлітків ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України"'),
(80997, 'https://ror.org/015ypce77', 'en', 1, 'https://ror.org/015ypce77 Burke Museum of Natural History and Culture'),
(80998, 'https://ror.org/015yt8m86', 'en', 1, 'https://ror.org/015yt8m86 Academy of Sciences of the Republic of Sakha ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Республики Даха'),
(80999, 'https://ror.org/0164jks53', 'no_lang_code', 1, 'https://ror.org/0164jks53 Anaconda (United States)'),
(81000, 'https://ror.org/0164vvh82', 'en', 1, 'https://ror.org/0164vvh82 Commissariat Ơ la Protection de la vie PrivƩe du Canada Office of the Privacy Commissioner of Canada'),
(81001, 'https://ror.org/016570d63', 'en', 1, 'https://ror.org/016570d63 Rajabu St Augustine''s, Hospitali Teule'),
(81002, 'https://ror.org/01669gb09', 'en', 1, 'https://ror.org/01669gb09 I.Krypiakevych Institute of Ukrainian Studies National Academy of Sciences of Ukraine І.ŠšŃ€ŠøŠæā€™ŃŠŗŠµŠ²ŠøŃ‡Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(81003, 'https://ror.org/0166x0j30', 'en', 1, 'https://ror.org/0166x0j30 Natural History Museum Aarhus Naturhistorisk Museum Aarhus'),
(81004, 'https://ror.org/01687hb54', 'en', 1, 'https://ror.org/01687hb54 Technological University of Mexico Universidad Tecnológica de México'),
(81005, 'https://ror.org/0169kb131', 'en', 1, 'https://ror.org/0169kb131 Children’s Mercy Research Institute'),
(81006, 'https://ror.org/016a74861', 'en', 1, 'https://ror.org/016a74861 Beijing Academy of Artificial Intelligence åŒ—äŗ¬ę™ŗęŗäŗŗå·„ę™ŗčƒ½ē ”ē©¶é™¢'),
(81007, 'https://ror.org/016bgq349', 'en', 1, 'https://ror.org/016bgq349 National Institute of Information and Communications Technology ęƒ…å ±é€šäæ”ē ”ē©¶ę©Ÿę§‹'),
(81008, 'https://ror.org/016c76a68', 'no_lang_code', 1, 'https://ror.org/016c76a68 ADx NeuroSciences'),
(81009, 'https://ror.org/016drwn73', 'es', 1, 'https://ror.org/016drwn73 Universidad de las Artes'),
(81010, 'https://ror.org/016e3ca54', 'en', 1, 'https://ror.org/016e3ca54 Center of Applied Ecology & Sustainability'),
(81011, 'https://ror.org/016e3th47', 'en', 1, 'https://ror.org/016e3th47 Institute of Genetics and Cytology of the National Academy of Sciences of Belarus Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ генетыкі і цыталогіі'),
(81012, 'https://ror.org/016e5r936', 'en', 1, 'https://ror.org/016e5r936 Japan Real Estate Institute äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬äøå‹•ē”£ē ”ē©¶ę‰€'),
(81013, 'https://ror.org/016ex3g83', 'en', 1, 'https://ror.org/016ex3g83 American Institute of Biological Sciences'),
(81014, 'https://ror.org/016fr7d87', 'en', 1, 'https://ror.org/016fr7d87 The Institute of History of the National Academy of Sciences of Belarus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(81015, 'https://ror.org/016j3vn58', 'de', 1, 'https://ror.org/016j3vn58 Marien Hospital Wesel'),
(81016, 'https://ror.org/016k72860', 'no_lang_code', 1, 'https://ror.org/016k72860 Few Chemicals (Germany)'),
(81017, 'https://ror.org/016kcza49', 'en', 1, 'https://ror.org/016kcza49 ART Reproductive Center'),
(81018, 'https://ror.org/016md1z42', 'en', 1, 'https://ror.org/016md1z42 Samara Law Institute of the Federal Penitentiary Service of Russia Š”ŠŠœŠŠ Š”ŠšŠ˜Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š”Š˜Š Š ŠžŠ”Š”Š˜Š˜'),
(81019, 'https://ror.org/016mgbr72', 'en', 1, 'https://ror.org/016mgbr72 East Siberian University of Economics and Law Восточно-Дибирский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(81020, 'https://ror.org/016mq8947', 'no_lang_code', 1, 'https://ror.org/016mq8947 CSPC Pharmaceutical Group ēŸ³č—„é›†åœ˜'),
(81021, 'https://ror.org/016q5ce10', 'no_lang_code', 1, 'https://ror.org/016q5ce10 Jilian Technology Group (China)'),
(81022, 'https://ror.org/016rf4127', 'en', 1, 'https://ror.org/016rf4127 Institute of Applied Mathematical Research of the Karelian Research Centre of the Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГных математических исслеГований ŠšŠ°Ń€ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(81023, 'https://ror.org/016s36n27', 'no_lang_code', 1, 'https://ror.org/016s36n27 Asia Centre'),
(81024, 'https://ror.org/016sx0y50', 'en', 1, 'https://ror.org/016sx0y50 Academy of Sciences of Albania'),
(81025, 'https://ror.org/016twdg30', 'en', 1, 'https://ror.org/016twdg30 Tri-Institutional PhD Program in Chemical Biology'),
(81026, 'https://ror.org/016w1r206', 'en', 1, 'https://ror.org/016w1r206 Council on Postsecondary Education'),
(81027, 'https://ror.org/016xad343', 'en', 1, 'https://ror.org/016xad343 Senckenberg Natural History Collections Dresden Senckenberg Naturhistorische Sammlungen Dresden'),
(81028, 'https://ror.org/016xje988', 'en', 1, 'https://ror.org/016xje988 University of Namibia UniversitƤt von Namibia'),
(81029, 'https://ror.org/016yezh07', 'en', 1, 'https://ror.org/016yezh07 Longhua Hospital Shanghai University of Traditional Chinese Medicine äøŠęµ·äø­åŒ»čÆå¤§å­¦é™„å±žé¾™åŽåŒ»é™¢'),
(81030, 'https://ror.org/016yy9j09', 'no_lang_code', 1, 'https://ror.org/016yy9j09 LTT Bio-Pharma (Japan) ę Ŗå¼ä¼šē¤¾LTTćƒć‚¤ć‚Ŗćƒ•ć‚”ćƒ¼ćƒž'),
(81031, 'https://ror.org/01715vy32', 'en', 1, 'https://ror.org/01715vy32 North Shore Health Department'),
(81032, 'https://ror.org/01726w403', 'en', 1, 'https://ror.org/01726w403 Shushensky Bor National Park Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк «Шушенский бор'),
(81033, 'https://ror.org/01755xe07', 'en', 1, 'https://ror.org/01755xe07 Grove City College'),
(81034, 'https://ror.org/0175g1p16', 'en', 1, 'https://ror.org/0175g1p16 Quantum University'),
(81035, 'https://ror.org/0178v0z17', 'en', 1, 'https://ror.org/0178v0z17 Coral Reef Research Foundation'),
(81036, 'https://ror.org/017b69w10', 'nl', 1, 'https://ror.org/017b69w10 Martini Ziekenhuis'),
(81037, 'https://ror.org/017bd4h68', 'es', 1, 'https://ror.org/017bd4h68 National University of Frontera Universidad Nacional de Frontera'),
(81038, 'https://ror.org/017bfx208', 'en', 1, 'https://ror.org/017bfx208 Georgia Coastal Ecosystems Long Term Ecological Research'),
(81039, 'https://ror.org/017bk0e71', 'no_lang_code', 1, 'https://ror.org/017bk0e71 CTI BioPharma (United States)'),
(81040, 'https://ror.org/017e99q89', 'it', 1, 'https://ror.org/017e99q89 Provincia Autonoma di Trento'),
(81041, 'https://ror.org/017ehfh78', 'en', 1, 'https://ror.org/017ehfh78 Ministerium für Wirtschaft, Wissenschaft und Digitalisierung des Landes Sachsen-Anhalt Ministry of Economy, Science and Digitalisation'),
(81042, 'https://ror.org/017fdbp82', 'en', 1, 'https://ror.org/017fdbp82 Wereld Kanker Onderzoek Fonds World Cancer Research Fund Netherlands'),
(81043, 'https://ror.org/017g28623', 'no_lang_code', 1, 'https://ror.org/017g28623 Fistulacure'),
(81044, 'https://ror.org/017g85521', 'en', 1, 'https://ror.org/017g85521 Medawar Building for Pathogen Research'),
(81045, 'https://ror.org/017mdtk85', 'en', 1, 'https://ror.org/017mdtk85 Quantified Uncertainty Research Institute'),
(81046, 'https://ror.org/017mv9d49', 'en', 1, 'https://ror.org/017mv9d49 Atlantic States Marine Fisheries Commission'),
(81047, 'https://ror.org/017nq0d63', 'en', 1, 'https://ror.org/017nq0d63 Alexander S Onassis Public Benefit Foundation ĪšĪæĪ¹Ī½Ļ‰Ļ†ĪµĪ»Ī­Ļ‚ ΙΓρυμα ΑλεξανΓρου Ωνάση'),
(81048, 'https://ror.org/017nweb49', 'en', 1, 'https://ror.org/017nweb49 Roger Williams University'),
(81049, 'https://ror.org/017vm7w59', 'en', 1, 'https://ror.org/017vm7w59 Institute of Forestry ŠØŃƒŠ¼Š°Ń€ŃŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(81050, 'https://ror.org/017w5sv42', 'en', 1, 'https://ror.org/017w5sv42 British Columbia Centre on Substance Use'),
(81051, 'https://ror.org/017wx6w12', 'en', 1, 'https://ror.org/017wx6w12 Institute of Blood Pathology and Transfusion Medicine of the National Academy of Medical Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ патології крові та Ń‚Ń€Š°Š½ŃŃ„ŃƒŠ·Ń–Š¹Š½Š¾Ń— меГицини ŠŠŠœŠ України'),
(81052, 'https://ror.org/017xf1n22', 'en', 1, 'https://ror.org/017xf1n22 Railway and Canal Historical Society'),
(81053, 'https://ror.org/017z2hs09', 'pt', 1, 'https://ror.org/017z2hs09 Fundação de Empreendimentos Científicos e Tecnológicos'),
(81054, 'https://ror.org/0180xa122', 'es', 1, 'https://ror.org/0180xa122 National Autonomous University of Alto Amazonas Universidad Nacional Autónoma de Alto Amazonas'),
(81055, 'https://ror.org/018159086', 'en', 1, 'https://ror.org/018159086 Pirogov Russian National Research Medical University Российский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. И. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(81056, 'https://ror.org/01848hk04', 'no_lang_code', 1, 'https://ror.org/01848hk04 Shandong Jiaotong University'),
(81057, 'https://ror.org/01871gq26', 'no_lang_code', 1, 'https://ror.org/01871gq26 Fluxus Technology (United Kingdom)'),
(81058, 'https://ror.org/0187pm092', 'no_lang_code', 1, 'https://ror.org/0187pm092 Sunesis (United States)'),
(81059, 'https://ror.org/0187v3h87', 'en', 1, 'https://ror.org/0187v3h87 Vindolanda Trust'),
(81060, 'https://ror.org/0188rvx33', 'en', 1, 'https://ror.org/0188rvx33 Beijing Satellite Navigation Center åŒ—äŗ¬å«ę˜ŸåÆ¼čˆŖäø­åæƒē‰ˆęƒę‰€ęœ‰'),
(81061, 'https://ror.org/0188vts43', 'no_lang_code', 1, 'https://ror.org/0188vts43 Yu Jun Biotechnology č£•é›‹ē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(81062, 'https://ror.org/0189t1115', 'en', 1, 'https://ror.org/0189t1115 American Contact Dermatitis Society'),
(81063, 'https://ror.org/018etvh69', 'en', 1, 'https://ror.org/018etvh69 Kavli Fondet The Kavli Trust'),
(81064, 'https://ror.org/018extf73', 'no_lang_code', 1, 'https://ror.org/018extf73 Lightmatter (United States)'),
(81065, 'https://ror.org/018g5g612', 'en', 1, 'https://ror.org/018g5g612 American Society for Dermatologic Surgery'),
(81066, 'https://ror.org/018gks972', 'en', 1, 'https://ror.org/018gks972 Jilin Engineering Normal University å‰ęž—å·„ēØ‹ęŠ€ęœÆåøˆčŒƒå­¦é™¢'),
(81067, 'https://ror.org/018gpkq23', 'en', 1, 'https://ror.org/018gpkq23 Amigos Library Services'),
(81068, 'https://ror.org/018hfs607', 'pt', 1, 'https://ror.org/018hfs607 Sobest – Associacao Brasileira de Estomaterapia'),
(81069, 'https://ror.org/018hwpf05', 'no_lang_code', 1, 'https://ror.org/018hwpf05 Hosokawa Micron (Japan) ćƒ›ć‚½ć‚«ćƒÆćƒŸć‚Æćƒ­ćƒ³ę Ŗå¼ä¼šē¤¾'),
(81070, 'https://ror.org/018j1ye79', 'en', 1, 'https://ror.org/018j1ye79 ENEA Centro Ricerche Santa Teresa ENEA Santa Teresa Research Centre'),
(81071, 'https://ror.org/018mx4905', 'en', 1, 'https://ror.org/018mx4905 National Park Meshera ŠœŠµŃ‰Ń‘Ń€Š° (Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк))'),
(81072, 'https://ror.org/018n70f12', 'en', 1, 'https://ror.org/018n70f12 Association New Music'),
(81073, 'https://ror.org/018nb9n34', 'no_lang_code', 1, 'https://ror.org/018nb9n34 IHI Corporation (Japan) ę Ŗå¼ä¼šē¤¾IHI'),
(81074, 'https://ror.org/018qbmv38', 'no_lang_code', 1, 'https://ror.org/018qbmv38 Aurubis (Germany)'),
(81075, 'https://ror.org/018v0zv10', 'no_lang_code', 1, 'https://ror.org/018v0zv10 Kobe Gakuin University ē„žęˆøå­¦é™¢å¤§å­¦'),
(81076, 'https://ror.org/018wg9441', 'en', 1, 'https://ror.org/018wg9441 Hubei University of Science and Technology ę¹–åŒ—ē§‘ęŠ€å­¦é™¢'),
(81077, 'https://ror.org/018wm0v91', 'no_lang_code', 1, 'https://ror.org/018wm0v91 Arvato'),
(81078, 'https://ror.org/018y70h07', 'en', 1, 'https://ror.org/018y70h07 Physicians Committee for Responsible Medicine'),
(81079, 'https://ror.org/0191jdv19', 'de', 1, 'https://ror.org/0191jdv19 Fachhochschule Clara Hoffbauer Potsdam'),
(81080, 'https://ror.org/0192stn37', 'en', 1, 'https://ror.org/0192stn37 Association of Teacher Educators'),
(81081, 'https://ror.org/01963ay88', 'en', 1, 'https://ror.org/01963ay88 Hawaii Pacific University'),
(81082, 'https://ror.org/0196vdc40', 'en', 1, 'https://ror.org/0196vdc40 Nakatomi Foundation å…¬ē›Šč²”å›£ę³•äŗŗäø­å†Øå„åŗ·ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(81083, 'https://ror.org/01982z663', 'en', 1, 'https://ror.org/01982z663 Cropping Systems Research Laboratory'),
(81084, 'https://ror.org/019dkd780', 'en', 1, 'https://ror.org/019dkd780 Al-Hussein Bin Talal University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­Ų³ŁŠŁ† بن طلال'),
(81085, 'https://ror.org/019ekef14', 'no_lang_code', 1, 'https://ror.org/019ekef14 Kasugai Municipal Hospital ę˜„ę—„äŗ•åø‚ę°‘ē—…é™¢'),
(81086, 'https://ror.org/019j78370', 'en', 1, 'https://ror.org/019j78370 Salford Royal NHS Foundation Trust'),
(81087, 'https://ror.org/019jh9f64', 'no_lang_code', 1, 'https://ror.org/019jh9f64 Gojo (United States)'),
(81088, 'https://ror.org/019jr0130', 'en', 1, 'https://ror.org/019jr0130 Mount Sinai Hospital'),
(81089, 'https://ror.org/019kfw312', 'en', 1, 'https://ror.org/019kfw312 Inner Mongolia Academy of Agricultural & Animal Husbandry Sciences å†…č’™å¤å†œē‰§äøšē§‘å­¦é™¢'),
(81090, 'https://ror.org/019pkg396', 'en', 1, 'https://ror.org/019pkg396 Mercy College of Ohio'),
(81091, 'https://ror.org/019qyzj84', 'en', 1, 'https://ror.org/019qyzj84 State Museum of Natural History of the National Academy of Sciences of Ukraine Державний прироГознавчий музей ŠŠŠ України'),
(81092, 'https://ror.org/019sa2256', 'en', 1, 'https://ror.org/019sa2256 Community Care'),
(81093, 'https://ror.org/019syws71', 'en', 1, 'https://ror.org/019syws71 Institute for Matching Person and Technology'),
(81094, 'https://ror.org/019tepx80', 'en', 1, 'https://ror.org/019tepx80 Okayama University Hospital 岔山大学病院'),
(81095, 'https://ror.org/019w00969', 'en', 1, 'https://ror.org/019w00969 Leibniz Centre for Tropical Marine Research Leibniz Zentrum für Marine Tropenforschung'),
(81096, 'https://ror.org/019w2q474', 'en', 1, 'https://ror.org/019w2q474 Kanti Children''s Hospital'),
(81097, 'https://ror.org/019wbnq12', 'hi', 1, 'https://ror.org/019wbnq12 Ramakrishna Mission Vidyamandira ą¦°ą¦¾ą¦®ą¦•ą§ƒą¦·ą§ą¦£ মিশন'),
(81098, 'https://ror.org/019xaj585', 'en', 1, 'https://ror.org/019xaj585 Vaasa Central Hospital'),
(81099, 'https://ror.org/019xckf23', 'no_lang_code', 1, 'https://ror.org/019xckf23 Tencent Healthcare (China)'),
(81100, 'https://ror.org/019xvpc30', 'es', 1, 'https://ror.org/019xvpc30 Catholic University of Uruguay Universidad Católica del Uruguay'),
(81101, 'https://ror.org/019y44724', 'en', 1, 'https://ror.org/019y44724 Society for Sedimentary Geology'),
(81102, 'https://ror.org/019ytz097', 'es', 1, 'https://ror.org/019ytz097 Centro Nacional de Microbiologia National Micobiology Centre'),
(81103, 'https://ror.org/019zjtv03', 'en', 1, 'https://ror.org/019zjtv03 Audubon Society of Greater Denver'),
(81104, 'https://ror.org/019zv8f18', 'en', 1, 'https://ror.org/019zv8f18 National Institute of Occupational Safety and Health ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹åŠ“åƒå®‰å…Øč”›ē”Ÿē·åˆē ”ē©¶ę‰€'),
(81105, 'https://ror.org/01a0pgd23', 'fr', 1, 'https://ror.org/01a0pgd23 Observatoire FranƧais de la SclƩrose en Plaques, SclƩrose en plaques'),
(81106, 'https://ror.org/01a0ymj74', 'en', 1, 'https://ror.org/01a0ymj74 International Institute of Tropical Agriculture'),
(81107, 'https://ror.org/01a3qdh08', 'no_lang_code', 1, 'https://ror.org/01a3qdh08 Synthego (United States)'),
(81108, 'https://ror.org/01a5bnn19', 'en', 1, 'https://ror.org/01a5bnn19 Groundswell Fund'),
(81109, 'https://ror.org/01a5mqy88', 'en', 1, 'https://ror.org/01a5mqy88 Bose Institute ą“¬ąµ‹ą“øąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(81110, 'https://ror.org/01a73vp68', 'en', 1, 'https://ror.org/01a73vp68 Schaumburg Township District Library'),
(81111, 'https://ror.org/01a7r5j51', 'no_lang_code', 1, 'https://ror.org/01a7r5j51 Riemser Pharma (Germany)'),
(81112, 'https://ror.org/01a8nnm19', 'no_lang_code', 1, 'https://ror.org/01a8nnm19 PicoQuant (Germany)'),
(81113, 'https://ror.org/01a9h7w04', 'no_lang_code', 1, 'https://ror.org/01a9h7w04 Furuno (Japan) å¤é‡Žé›»ę°—ę Ŗå¼ä¼šē¤¾'),
(81114, 'https://ror.org/01aa78f69', 'fr', 1, 'https://ror.org/01aa78f69 Centre de Recherche sur les Biotechnologies Marines'),
(81115, 'https://ror.org/01abkkw91', 'nl', 1, 'https://ror.org/01abkkw91 Ikazia Ziekenhuis'),
(81116, 'https://ror.org/01ada5854', 'fr', 1, 'https://ror.org/01ada5854 Ɖcole du Louvre'),
(81117, 'https://ror.org/01adbad76', 'no_lang_code', 1, 'https://ror.org/01adbad76 Lexical Computing CZ'),
(81118, 'https://ror.org/01ae3s995', 'es', 1, 'https://ror.org/01ae3s995 Observatorio Naval Buenos Aires'),
(81119, 'https://ror.org/01ae6h598', 'en', 1, 'https://ror.org/01ae6h598 Ufa State Petroleum Technological University Уфимский Š³Š¾ŃŃƒŠ“арственный Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Өфө Гәүләт Š½ŠµŃ„Ń‚ŃŒ техник ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(81120, 'https://ror.org/01agg0039', 'en', 1, 'https://ror.org/01agg0039 Zurich Heart House'),
(81121, 'https://ror.org/01akz7g58', 'en', 1, 'https://ror.org/01akz7g58 Belarusian State Institute for Metrology Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(81122, 'https://ror.org/01anjrj52', 'no_lang_code', 1, 'https://ror.org/01anjrj52 ScienCell Research Laboratories (United States)'),
(81123, 'https://ror.org/01apbn515', 'en', 1, 'https://ror.org/01apbn515 Vaganova Ballet Academy ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Русского балета имени А. ŠÆ. Вагановой'),
(81124, 'https://ror.org/01apna436', 'en', 1, 'https://ror.org/01apna436 Ohio Supercomputer Center'),
(81125, 'https://ror.org/01arh7995', 'en', 1, 'https://ror.org/01arh7995 Global Development Network'),
(81126, 'https://ror.org/01asj1396', 'en', 1, 'https://ror.org/01asj1396 Huyck Preserve and Biological Research Station'),
(81127, 'https://ror.org/01azr9532', 'no_lang_code', 1, 'https://ror.org/01azr9532 Itoham Foods (Japan) ä¼Šč—¤ćƒćƒ ę Ŗå¼ä¼šē¤¾'),
(81128, 'https://ror.org/01b0pvj98', 'en', 1, 'https://ror.org/01b0pvj98 St. Anne''s Health Centre'),
(81129, 'https://ror.org/01b2f6h61', 'en', 1, 'https://ror.org/01b2f6h61 Novosibirsk State Technical University ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(81130, 'https://ror.org/01b3x4m67', 'no_lang_code', 1, 'https://ror.org/01b3x4m67 ELUTIS Modelling and Consulting (Canada)'),
(81131, 'https://ror.org/01b52zk20', 'en', 1, 'https://ror.org/01b52zk20 National Speleological Society'),
(81132, 'https://ror.org/01b784253', 'en', 1, 'https://ror.org/01b784253 St Vincent’s Private Hospital Sydney'),
(81133, 'https://ror.org/01b9n8m42', 'no_lang_code', 1, 'https://ror.org/01b9n8m42 Tata Consultancy Services (India)'),
(81134, 'https://ror.org/01bawmj47', 'en', 1, 'https://ror.org/01bawmj47 Genesis Research Trust'),
(81135, 'https://ror.org/01bb4h160', 'en', 1, 'https://ror.org/01bb4h160 Graphic Era Hill University'),
(81136, 'https://ror.org/01bb68v37', 'en', 1, 'https://ror.org/01bb68v37 Anan National College of Technology é˜æå—å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(81137, 'https://ror.org/01bcsqk59', 'no_lang_code', 1, 'https://ror.org/01bcsqk59 Nabsys (United States)'),
(81138, 'https://ror.org/01bdgfy75', 'en', 1, 'https://ror.org/01bdgfy75 Banneker Douglass Museum');
INSERT INTO `rors` VALUES
(81139, 'https://ror.org/01bdqmr31', 'en', 1, 'https://ror.org/01bdqmr31 Sutter Solano Medical Center'),
(81140, 'https://ror.org/01bfbvm65', 'no_lang_code', 1, 'https://ror.org/01bfbvm65 Samsung (United States)'),
(81141, 'https://ror.org/01bfgxw09', 'en', 1, 'https://ror.org/01bfgxw09 Child Mind Institute'),
(81142, 'https://ror.org/01bghzb51', 'en', 1, 'https://ror.org/01bghzb51 New York Institute of Technology'),
(81143, 'https://ror.org/01bhrtv82', 'no_lang_code', 1, 'https://ror.org/01bhrtv82 Zapata (United States)'),
(81144, 'https://ror.org/01bhs6g30', 'no_lang_code', 1, 'https://ror.org/01bhs6g30 Novavax (United States)'),
(81145, 'https://ror.org/01bjc6c68', 'en', 1, 'https://ror.org/01bjc6c68 Schweizerische Studienstiftung Swiss Study Foundation'),
(81146, 'https://ror.org/01bkmbx41', 'no_lang_code', 1, 'https://ror.org/01bkmbx41 Regen Network (United States)'),
(81147, 'https://ror.org/01bm7kk08', 'de', 1, 'https://ror.org/01bm7kk08 Bundesdeutsche Arbeitsgemeinschaft für Veränderliche Sterne'),
(81148, 'https://ror.org/01bn0n770', 'en', 1, 'https://ror.org/01bn0n770 Australasian Society for Infectious Diseases'),
(81149, 'https://ror.org/01bq12b82', 'en', 1, 'https://ror.org/01bq12b82 Riverside Community Hospital'),
(81150, 'https://ror.org/01bqnjh41', 'en', 1, 'https://ror.org/01bqnjh41 North Carolina Museum of Natural Sciences'),
(81151, 'https://ror.org/01bqwab81', 'de', 1, 'https://ror.org/01bqwab81 Hirslanden Klinik Beau-Site'),
(81152, 'https://ror.org/01bt8n520', 'no_lang_code', 1, 'https://ror.org/01bt8n520 Lion Corporation (Japan) ćƒ©ć‚¤ć‚Ŗćƒ³ę Ŗå¼ä¼šē¤¾'),
(81153, 'https://ror.org/01bvxvq19', 'en', 1, 'https://ror.org/01bvxvq19 Hong Kong Observatory é¦™ęøÆå¤©ę–‡å°'),
(81154, 'https://ror.org/01bzqs207', 'no_lang_code', 1, 'https://ror.org/01bzqs207 Avidea Technologies (United States)'),
(81155, 'https://ror.org/01c080z51', 'en', 1, 'https://ror.org/01c080z51 Millennium Science Initiative'),
(81156, 'https://ror.org/01c0yey93', 'en', 1, 'https://ror.org/01c0yey93 Finlands Artdatacenter Finnish Biodiversity Information Facility Suomen Lajitietokeskus'),
(81157, 'https://ror.org/01c1p1v81', 'id', 1, 'https://ror.org/01c1p1v81 Universitas PGRI Semarang'),
(81158, 'https://ror.org/01c1qvn60', 'en', 1, 'https://ror.org/01c1qvn60 Human Computation Institute'),
(81159, 'https://ror.org/01c3z9v97', 'en', 1, 'https://ror.org/01c3z9v97 Global Health Drug Discovery Institute å…Øēƒå„åŗ·čÆē‰©ē ”å‘äø­åæƒ'),
(81160, 'https://ror.org/01c3zvj45', 'no_lang_code', 1, 'https://ror.org/01c3zvj45 NanoTemper Technologies (Germany)'),
(81161, 'https://ror.org/01c4jmp52', 'en', 1, 'https://ror.org/01c4jmp52 Chengdu Medical College ęˆéƒ½åŒ»å­¦é™¢'),
(81162, 'https://ror.org/01c577389', 'de', 1, 'https://ror.org/01c577389 Krankenhaus Lübbecke-Rahden, Universitätsklinik für Psychosomatik und Psychotherapie'),
(81163, 'https://ror.org/01c5bsw63', 'en', 1, 'https://ror.org/01c5bsw63 Alliance of Crop, Soil, and Environmental Science Societies'),
(81164, 'https://ror.org/01c82hv29', 'en', 1, 'https://ror.org/01c82hv29 Sigma Theta Tau International'),
(81165, 'https://ror.org/01c8fdr62', 'en', 1, 'https://ror.org/01c8fdr62 Life Quality Research Centre'),
(81166, 'https://ror.org/01ca2by25', 'en', 1, 'https://ror.org/01ca2by25 Great Lakes Bioenergy Research Center'),
(81167, 'https://ror.org/01cbw5x35', 'en', 1, 'https://ror.org/01cbw5x35 Christian Doppler Laboratory for Thermoelectricity'),
(81168, 'https://ror.org/01cdpdn80', 'en', 1, 'https://ror.org/01cdpdn80 Cyrus Tang Foundation'),
(81169, 'https://ror.org/01ce4w121', 'en', 1, 'https://ror.org/01ce4w121 Nebraska Academy of Sciences'),
(81170, 'https://ror.org/01cer8f17', 'no_lang_code', 1, 'https://ror.org/01cer8f17 H2Pro (Israel)'),
(81171, 'https://ror.org/01cfd6w66', 'en', 1, 'https://ror.org/01cfd6w66 Iowa Department of Agriculture and Land Stewardship'),
(81172, 'https://ror.org/01cfmz593', 'no_lang_code', 1, 'https://ror.org/01cfmz593 NOK Corporation (Japan) NOKę Ŗå¼ä¼šē¤¾'),
(81173, 'https://ror.org/01cfpzw88', 'de', 1, 'https://ror.org/01cfpzw88 Deutsches Institut für Japanstudien Tokyo German Institute for Japanese Studies ćƒ‰ć‚¤ćƒ„ę—„ęœ¬ē ”ē©¶ę‰€'),
(81174, 'https://ror.org/01cgvw868', 'en', 1, 'https://ror.org/01cgvw868 Joep Lange Institute'),
(81175, 'https://ror.org/01cjch873', 'no_lang_code', 1, 'https://ror.org/01cjch873 Galecto (Denmark)'),
(81176, 'https://ror.org/01cjnnp32', 'no_lang_code', 1, 'https://ror.org/01cjnnp32 Immunetics (United States)'),
(81177, 'https://ror.org/01ckjz551', 'no_lang_code', 1, 'https://ror.org/01ckjz551 Cardiovascular Systems (United States)'),
(81178, 'https://ror.org/01cpwsn91', 'en', 1, 'https://ror.org/01cpwsn91 American Leprosy Missions'),
(81179, 'https://ror.org/01csn4944', 'en', 1, 'https://ror.org/01csn4944 Northern Gulf of Alaska Long Term Ecological Research'),
(81180, 'https://ror.org/01csrpp22', 'en', 1, 'https://ror.org/01csrpp22 Hospiten Group'),
(81181, 'https://ror.org/01cw0fy64', 'en', 1, 'https://ror.org/01cw0fy64 University of King''s College'),
(81182, 'https://ror.org/01cwhph72', 'no_lang_code', 1, 'https://ror.org/01cwhph72 PQ Corporation (Canada)'),
(81183, 'https://ror.org/01cwrqv73', 'en', 1, 'https://ror.org/01cwrqv73 Minuchin Center for the Family'),
(81184, 'https://ror.org/01cx85066', 'en', 1, 'https://ror.org/01cx85066 John Peter Smith Hospital'),
(81185, 'https://ror.org/01d03cj21', 'en', 1, 'https://ror.org/01d03cj21 Research Foundation of The City University of New York'),
(81186, 'https://ror.org/01d1kv753', 'en', 1, 'https://ror.org/01d1kv753 SPring-8 å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ę”¾å°„å…‰ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(81187, 'https://ror.org/01d1n9n57', 'en', 1, 'https://ror.org/01d1n9n57 Ministry of Agriculture & Farmers Welfare ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ किसान ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(81188, 'https://ror.org/01d1z8s73', 'en', 1, 'https://ror.org/01d1z8s73 Rostov State University of Economics Ростовский Š³Š¾ŃŃƒŠ“арственный ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(81189, 'https://ror.org/01d25af06', 'en', 1, 'https://ror.org/01d25af06 Inter-American Foundation'),
(81190, 'https://ror.org/01d2sez20', 'en', 1, 'https://ror.org/01d2sez20 Missouri State University UniversitĆ© d''Ɖtat du missouri'),
(81191, 'https://ror.org/01d540m14', 'es', 1, 'https://ror.org/01d540m14 Instituto de Medicina Tropical'),
(81192, 'https://ror.org/01d5qpn59', 'en', 1, 'https://ror.org/01d5qpn59 Babraham Institute'),
(81193, 'https://ror.org/01d5ymp84', 'en', 1, 'https://ror.org/01d5ymp84 China National Nuclear Corporation äø­å›½ę øå·„äøšé›†å›¢å…¬åø'),
(81194, 'https://ror.org/01d74sk53', 'no_lang_code', 1, 'https://ror.org/01d74sk53 CatalystNeuro'),
(81195, 'https://ror.org/01d7ffm04', 'en', 1, 'https://ror.org/01d7ffm04 Strang Cancer Prevention Institute'),
(81196, 'https://ror.org/01d7fn555', 'en', 1, 'https://ror.org/01d7fn555 Central Food Technological Research Institute ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤–ą¤¾ą¤¦ą„ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą²•ą³‡ą²‚ą²¦ą³ą²°ą³€ą²Æ ಆಹಾರ ಸಂಶೋಧನಾಲಯ ą“øąµ†ąµ»ą“Ÿąµą“°ąµ½ ą“«ąµą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æą“•ąµą“•ąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(81197, 'https://ror.org/01dak5k93', 'no_lang_code', 1, 'https://ror.org/01dak5k93 Lancet Laboratories'),
(81198, 'https://ror.org/01dbyc951', 'en', 1, 'https://ror.org/01dbyc951 Centre for Bhutan Studies and GNH Research ą½‘ą½”ą½£ą¼‹ą½ ą½–ą¾²ą½“ą½‚ą¼‹ą½žą½²ą½–ą¼‹ą½ ą½‡ą½“ą½‚ą¼‹ą½£ą¾Ÿą½ŗą¼‹ą½–ą¼‹'),
(81199, 'https://ror.org/01dbzsr51', 'en', 1, 'https://ror.org/01dbzsr51 Association Canadienne Des Medecins d''Urgence, Canadian Association of Emergency Physicians'),
(81200, 'https://ror.org/01dc2fq43', 'en', 1, 'https://ror.org/01dc2fq43 New Mexico Academy of Science'),
(81201, 'https://ror.org/01dd3fd62', 'es', 1, 'https://ror.org/01dd3fd62 Centro Nacional de EpidemiologĆ­a National Epidemiology Centre'),
(81202, 'https://ror.org/01dh8xz10', 'pt', 1, 'https://ror.org/01dh8xz10 SĆ£o Germano Oncologia'),
(81203, 'https://ror.org/01dhcyx48', 'en', 1, 'https://ror.org/01dhcyx48 Cary Institute of Ecosystem Studies'),
(81204, 'https://ror.org/01dkacw77', 'it', 1, 'https://ror.org/01dkacw77 Accademia Italiana Medicina Osteopatica'),
(81205, 'https://ror.org/01dm8v457', 'no_lang_code', 1, 'https://ror.org/01dm8v457 Xcel Energy (United States)'),
(81206, 'https://ror.org/01dmz0g51', 'en', 1, 'https://ror.org/01dmz0g51 HeartMath Institute'),
(81207, 'https://ror.org/01dqb0q37', 'en', 1, 'https://ror.org/01dqb0q37 LifeArc'),
(81208, 'https://ror.org/01dr2b756', 'en', 1, 'https://ror.org/01dr2b756 Hubei University of Medicine ę¹–åŒ—åŒ»čÆå­¦é™¢'),
(81209, 'https://ror.org/01dra3713', 'no_lang_code', 1, 'https://ror.org/01dra3713 Promega (United States)'),
(81210, 'https://ror.org/01drp4225', 'en', 1, 'https://ror.org/01drp4225 Multiple System Atrophy Trust'),
(81211, 'https://ror.org/01dtmk575', 'en', 1, 'https://ror.org/01dtmk575 Argentine National Observatory Observatori Astronòmic de Córdoba'),
(81212, 'https://ror.org/01dtp6p75', 'en', 1, 'https://ror.org/01dtp6p75 Wuhan No.9 Hospital ę­¦ę±‰åø‚ē¬¬ä¹åŒ»é™¢'),
(81213, 'https://ror.org/01dv3hq14', 'en', 1, 'https://ror.org/01dv3hq14 Keldysh Institute of Applied Mathematics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной математики им. М.Š’. ŠšŠµŠ»Š“Ń‹ŃˆŠ° Российской акаГемии наук"'),
(81214, 'https://ror.org/01dvbrt74', 'en', 1, 'https://ror.org/01dvbrt74 Institut für Axiologische Forschungen Institute of Axiological Research'),
(81215, 'https://ror.org/01dvgzr53', 'en', 1, 'https://ror.org/01dvgzr53 Natchaug Hospital'),
(81216, 'https://ror.org/01dwyxv59', 'en', 1, 'https://ror.org/01dwyxv59 English Institute of Sport'),
(81217, 'https://ror.org/01dzed356', 'en', 1, 'https://ror.org/01dzed356 Hunan Agricultural University ę¹–å—å†œäøšå¤§å­¦'),
(81218, 'https://ror.org/01e0hcx30', 'no_lang_code', 1, 'https://ror.org/01e0hcx30 ABL Bio (South Korea)'),
(81219, 'https://ror.org/01e1j7z08', 'en', 1, 'https://ror.org/01e1j7z08 Southwestern Educational Society'),
(81220, 'https://ror.org/01e3hnz98', 'en', 1, 'https://ror.org/01e3hnz98 Academia Brasileira de CiĆŖncias Brazilian Academy of Sciences'),
(81221, 'https://ror.org/01e49td52', 'pt', 1, 'https://ror.org/01e49td52 Instituto Benjamin Constant'),
(81222, 'https://ror.org/01e73dz52', 'no_lang_code', 1, 'https://ror.org/01e73dz52 Mira Geoscience (Canada)'),
(81223, 'https://ror.org/01e7h5v19', 'en', 1, 'https://ror.org/01e7h5v19 CRC Robotics'),
(81224, 'https://ror.org/01eaav933', 'en', 1, 'https://ror.org/01eaav933 Metrology Institute of the Republic of Slovenia'),
(81225, 'https://ror.org/01eag6b04', 'no_lang_code', 1, 'https://ror.org/01eag6b04 Oxagen (United Kingdom)'),
(81226, 'https://ror.org/01eav8h49', 'en', 1, 'https://ror.org/01eav8h49 Russian Customs Academy Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Ń‚Š°Š¼Š¾Š¶ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(81227, 'https://ror.org/01ed3w678', 'en', 1, 'https://ror.org/01ed3w678 St. Francis Hospital'),
(81228, 'https://ror.org/01ep09b46', 'no_lang_code', 1, 'https://ror.org/01ep09b46 Firmenich (United States)'),
(81229, 'https://ror.org/01ep6qy98', 'no_lang_code', 1, 'https://ror.org/01ep6qy98 TransCanada (Canada)'),
(81230, 'https://ror.org/01eq10738', 'no_lang_code', 1, 'https://ror.org/01eq10738 Nanfang Hospital'),
(81231, 'https://ror.org/01exahc70', 'en', 1, 'https://ror.org/01exahc70 Security Service of Ukraine Длужба безпеки України'),
(81232, 'https://ror.org/01ez37r05', 'en', 1, 'https://ror.org/01ez37r05 Myanmar Oxford Clinical Research Unit'),
(81233, 'https://ror.org/01f091k66', 'en', 1, 'https://ror.org/01f091k66 National Institute of Menthal Health, Neurology and Neurosurgery - NyĆ­rő Gyula Hospital OrszĆ”gos MentĆ”lis, IdeggyógyĆ”szati Ć©s IdegsebĆ©szeti IntĆ©zet - NyĆ­rő Gyula KórhĆ”z'),
(81234, 'https://ror.org/01f3bhg26', 'no_lang_code', 1, 'https://ror.org/01f3bhg26 Volkswagen Group (Germany)'),
(81235, 'https://ror.org/01f5p8b07', 'en', 1, 'https://ror.org/01f5p8b07 Institute of Ionosphere'),
(81236, 'https://ror.org/01f9cfx50', 'en', 1, 'https://ror.org/01f9cfx50 Paleontological Society'),
(81237, 'https://ror.org/01fc5yc54', 'en', 1, 'https://ror.org/01fc5yc54 Meiji Yasuda Life Foundation of Health and Welfare å…¬ē›Šč²”å›£ę³•äŗŗ ę˜Žę²»å®‰ē”°åŽšē”Ÿäŗ‹ę„­å›£'),
(81238, 'https://ror.org/01fdhrh83', 'en', 1, 'https://ror.org/01fdhrh83 The Carter Center'),
(81239, 'https://ror.org/01fe6f215', 'en', 1, 'https://ror.org/01fe6f215 Ohu University 億羽大学'),
(81240, 'https://ror.org/01ff0t864', 'es', 1, 'https://ror.org/01ff0t864 Instituto Nacional de Investigación en Glaciares y Ecosistemas de Montaña'),
(81241, 'https://ror.org/01ff5td15', 'en', 1, 'https://ror.org/01ff5td15 Donald & Barbara Zucker School of Medicine at Hofstra/Northwell'),
(81242, 'https://ror.org/01fhm1y42', 'en', 1, 'https://ror.org/01fhm1y42 Johns Hopkins Center for Health Security'),
(81243, 'https://ror.org/01fj5gf64', 'en', 1, 'https://ror.org/01fj5gf64 Hunan Academy of Agricultural Sciences ę¹–å—ēœå†œäøšē§‘å­¦é™¢'),
(81244, 'https://ror.org/01fjkp854', 'en', 1, 'https://ror.org/01fjkp854 International University of Beirut'),
(81245, 'https://ror.org/01fk80534', 'pt', 1, 'https://ror.org/01fk80534 Fundação Parque Tecnológico Itaipu'),
(81246, 'https://ror.org/01fm2fv39', 'en', 1, 'https://ror.org/01fm2fv39 Sanquin'),
(81247, 'https://ror.org/01fm5g896', 'no_lang_code', 1, 'https://ror.org/01fm5g896 Olink (United States)'),
(81248, 'https://ror.org/01fmtas32', 'en', 1, 'https://ror.org/01fmtas32 Radiation Effects Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗę”¾å°„ē·šå½±éŸæē ”ē©¶ę‰€'),
(81249, 'https://ror.org/01fnrgf58', 'en', 1, 'https://ror.org/01fnrgf58 Patty Brisben Foundation for Women’s Sexual Health'),
(81250, 'https://ror.org/01fnyyq46', 'es', 1, 'https://ror.org/01fnyyq46 Universidad DomĆ­nico Americana'),
(81251, 'https://ror.org/01ft5vz71', 'en', 1, 'https://ror.org/01ft5vz71 Indian Institute of Technology Patna ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®Ŗą®ŸąÆą®©ą®¾'),
(81252, 'https://ror.org/01ftj9h26', 'no_lang_code', 1, 'https://ror.org/01ftj9h26 Hellenic Atherosclerosis Society'),
(81253, 'https://ror.org/01fx1d378', 'no_lang_code', 1, 'https://ror.org/01fx1d378 Eurofins (Netherlands)'),
(81254, 'https://ror.org/01fx7cm24', 'no_lang_code', 1, 'https://ror.org/01fx7cm24 Digizyme (United States)'),
(81255, 'https://ror.org/01fxrnx65', 'en', 1, 'https://ror.org/01fxrnx65 United Nations Children''s Fund Cameroon'),
(81256, 'https://ror.org/01fy65t21', 'en', 1, 'https://ror.org/01fy65t21 Breast Cancer Society of Canada SociƩtƩ du Cancer du Canada'),
(81257, 'https://ror.org/01fyqq855', 'en', 1, 'https://ror.org/01fyqq855 Seafish'),
(81258, 'https://ror.org/01fzmz530', 'pt', 1, 'https://ror.org/01fzmz530 Observatório da Emigração'),
(81259, 'https://ror.org/01fzw3g31', 'no_lang_code', 1, 'https://ror.org/01fzw3g31 Chikamori Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗčæ‘ę£®ä¼ščæ‘ę£®ē—…é™¢'),
(81260, 'https://ror.org/01g0n8690', 'en', 1, 'https://ror.org/01g0n8690 Amsterdam Institute for Advanced Metropolitan Solutions'),
(81261, 'https://ror.org/01g48s022', 'en', 1, 'https://ror.org/01g48s022 IT Step University Вищий Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ заклаГ'),
(81262, 'https://ror.org/01g4se167', 'no_lang_code', 1, 'https://ror.org/01g4se167 Nippon Seiki (Japan) ę—„ęœ¬ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(81263, 'https://ror.org/01g53qc72', 'no_lang_code', 1, 'https://ror.org/01g53qc72 Yangtze River Delta Physics Research Center (China) é•æäø‰č§’ē‰©ē†ē ”ē©¶äø­åæƒ'),
(81264, 'https://ror.org/01g760v14', 'en', 1, 'https://ror.org/01g760v14 Ekhaga Foundation Ekhagastiftelsen'),
(81265, 'https://ror.org/01g8yfk02', 'en', 1, 'https://ror.org/01g8yfk02 Kobayasi Institute of Physical Research äø€čˆ¬č²”å›£ę³•äŗŗå°ęž—ē†å­¦ē ”ē©¶ę‰€'),
(81266, 'https://ror.org/01g9ayx80', 'no_lang_code', 1, 'https://ror.org/01g9ayx80 HemoSonics (United States)'),
(81267, 'https://ror.org/01g9ekh39', 'en', 1, 'https://ror.org/01g9ekh39 Tokyo International University ę±äŗ¬å›½éš›å¤§å­¦'),
(81268, 'https://ror.org/01g9hkj35', 'en', 1, 'https://ror.org/01g9hkj35 Guangdong Academy of Sciences å¹æäøœēœē§‘å­¦é™¢'),
(81269, 'https://ror.org/01g9vbr38', 'en', 1, 'https://ror.org/01g9vbr38 Oklahoma State University'),
(81270, 'https://ror.org/01gaj0s81', 'en', 1, 'https://ror.org/01gaj0s81 The First People''s Hospital of Changzhou åøøå·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(81271, 'https://ror.org/01gb3y148', 'en', 1, 'https://ror.org/01gb3y148 Guangdong Provincial Hospital of Traditional Chinese Medicine å¹æäøœēœäø­åŒ»é™¢'),
(81272, 'https://ror.org/01gbba190', 'en', 1, 'https://ror.org/01gbba190 Georgia Department of Natural Resources'),
(81273, 'https://ror.org/01gbymr57', 'no_lang_code', 1, 'https://ror.org/01gbymr57 Tempus Labs (United States)'),
(81274, 'https://ror.org/01gce7t65', 'en', 1, 'https://ror.org/01gce7t65 Khazanah Research Institute'),
(81275, 'https://ror.org/01ge67z96', 'en', 1, 'https://ror.org/01ge67z96 The Royal Free Hospital'),
(81276, 'https://ror.org/01ge84q84', 'no_lang_code', 1, 'https://ror.org/01ge84q84 Orlovskoye Polesye National Park ŠžŃ€Š»Š¾Š²ŃŠŗŠ¾Šµ Полесье'),
(81277, 'https://ror.org/01ge8wp14', 'en', 1, 'https://ror.org/01ge8wp14 Climate Modelling Laboratory'),
(81278, 'https://ror.org/01gf00k84', 'en', 1, 'https://ror.org/01gf00k84 Kameda Medical Center äŗ€ē”°ē·åˆē—…é™¢'),
(81279, 'https://ror.org/01gg2ha52', 'en', 1, 'https://ror.org/01gg2ha52 Institute of Legislation and Legal Information of the Republic of Kazakhstan'),
(81280, 'https://ror.org/01ggea168', 'en', 1, 'https://ror.org/01ggea168 Institute for Local Self-Reliance'),
(81281, 'https://ror.org/01gjzex58', 'en', 1, 'https://ror.org/01gjzex58 British Association for Counselling and Psychotherapy'),
(81282, 'https://ror.org/01gk55t56', 'en', 1, 'https://ror.org/01gk55t56 Islamic University of Riau Universitas Islam Riau'),
(81283, 'https://ror.org/01gkbq247', 'no_lang_code', 1, 'https://ror.org/01gkbq247 Honghu People’s Hospital ę“Ŗę¹–åø‚äŗŗę°‘åŒ»é™¢'),
(81284, 'https://ror.org/01gnzp994', 'en', 1, 'https://ror.org/01gnzp994 Chongqing Academy of Science and Technology é‡åŗ†åø‚ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(81285, 'https://ror.org/01gp83d60', 'no_lang_code', 1, 'https://ror.org/01gp83d60 Bavarian Nordic (Denmark)'),
(81286, 'https://ror.org/01gqdjc98', 'en', 1, 'https://ror.org/01gqdjc98 Aba Teachers University é˜æååøˆčŒƒå­¦é™¢'),
(81287, 'https://ror.org/01gv74p78', 'fr', 1, 'https://ror.org/01gv74p78 Centre Hospitalier Universitaire Sainte-Justine'),
(81288, 'https://ror.org/01gvmn480', 'en', 1, 'https://ror.org/01gvmn480 Tokai University Hospital ę±ęµ·å¤§å­¦åŒ»å­¦éƒØä»˜å±žē—…é™¢'),
(81289, 'https://ror.org/01gw91x75', 'en', 1, 'https://ror.org/01gw91x75 Software Training and Development Centre'),
(81290, 'https://ror.org/01gx26191', 'en', 1, 'https://ror.org/01gx26191 Zhangjiagang First People''s Hospital'),
(81291, 'https://ror.org/01gzszr18', 'en', 1, 'https://ror.org/01gzszr18 FORTH Institute of Molecular Biology and Biotechnology Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪœĪæĻĪ¹Ī±ĪŗĪ®Ļ‚ Βιολογίας και Βιοτεχνολογίας'),
(81292, 'https://ror.org/01h20c209', 'en', 1, 'https://ror.org/01h20c209 Ministarstvo Civilnih Poslova Ministry of Civil Affairs'),
(81293, 'https://ror.org/01h2taq97', 'en', 1, 'https://ror.org/01h2taq97 Universidad de Ciencias Aplicadas y Ambientales University of Applied and Environmental Sciences'),
(81294, 'https://ror.org/01h40c705', 'de', 1, 'https://ror.org/01h40c705 Deutsche Gesellschaft für Ernährung'),
(81295, 'https://ror.org/01h48bs12', 'en', 1, 'https://ror.org/01h48bs12 Hiroshima Red Cross Hospital & Atomic-bomb Survivors Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾åŗƒå³¶čµ¤åå­—ćƒ»åŽŸēˆ†ē—…é™¢'),
(81296, 'https://ror.org/01h4fxd96', 'fr', 1, 'https://ror.org/01h4fxd96 Grenoble Ecole de Management'),
(81297, 'https://ror.org/01h55za35', 'en', 1, 'https://ror.org/01h55za35 ARC Centre of Excellence for the Digital Child'),
(81298, 'https://ror.org/01h5xyq84', 'en', 1, 'https://ror.org/01h5xyq84 Historic Environment Scotland ƀrainneachd Eachdraidheil Alba'),
(81299, 'https://ror.org/01h900f45', 'en', 1, 'https://ror.org/01h900f45 Petroleum Technology Alliance Canada'),
(81300, 'https://ror.org/01hbz9j78', 'no_lang_code', 1, 'https://ror.org/01hbz9j78 Pointcloud (United States)'),
(81301, 'https://ror.org/01hcd4187', 'no_lang_code', 1, 'https://ror.org/01hcd4187 MacroGenics (United States)'),
(81302, 'https://ror.org/01hdnty41', 'pt', 1, 'https://ror.org/01hdnty41 Centro Paulista de Investigação Clinica'),
(81303, 'https://ror.org/01he0tp29', 'en', 1, 'https://ror.org/01he0tp29 Bow Valley College'),
(81304, 'https://ror.org/01hhf7w52', 'en', 1, 'https://ror.org/01hhf7w52 Indian Institute of Technology Indore ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‡ą¤‚ą¤¦ą„Œą¤° ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®‡ą®ØąÆą®¤ąÆ‚ą®°ąÆ'),
(81305, 'https://ror.org/01hkztv15', 'en', 1, 'https://ror.org/01hkztv15 Aventura Hospital and Medical Center'),
(81306, 'https://ror.org/01hmrqc81', 'en', 1, 'https://ror.org/01hmrqc81 CiS Forschungsinstitut für Mikrosensorik CiS Research Institute for Micro Sensors and Photovoltaics'),
(81307, 'https://ror.org/01hn8xm90', 'en', 1, 'https://ror.org/01hn8xm90 Spanish Society of Family and Community Medicine'),
(81308, 'https://ror.org/01hnfza55', 'no_lang_code', 1, 'https://ror.org/01hnfza55 Asahi Shimbun Company (Japan) ęœę—„ę–°čžē¤¾'),
(81309, 'https://ror.org/01hnv8x68', 'en', 1, 'https://ror.org/01hnv8x68 Leibniz Institute for Educational Media | Georg Eckert Institute Leibniz-Institut für Bildungsmedien | Georg-Eckert-Institut'),
(81310, 'https://ror.org/01hpz8r71', 'no_lang_code', 1, 'https://ror.org/01hpz8r71 Japan Lifeline (Japan)'),
(81311, 'https://ror.org/01hqsy415', 'en', 1, 'https://ror.org/01hqsy415 HIV Legal Network RƩseau juridique VIH'),
(81312, 'https://ror.org/01ht2b307', 'en', 1, 'https://ror.org/01ht2b307 King Salman Center for Disability Research Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ سلمان لأبحاث ال؄عاقة'),
(81313, 'https://ror.org/01htp5456', 'en', 1, 'https://ror.org/01htp5456 Visitor Studies Association'),
(81314, 'https://ror.org/01hv94n30', 'no_lang_code', 1, 'https://ror.org/01hv94n30 Ruijin Hospital äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žē‘žé‡‘åŒ»é™¢'),
(81315, 'https://ror.org/01hx00y13', 'no_lang_code', 1, 'https://ror.org/01hx00y13 Qatar Airways (Qatar) Ų§Ł„Ł‚Ų·Ų±ŁŠŲ©ā€Ž'),
(81316, 'https://ror.org/01hxc5h53', 'en', 1, 'https://ror.org/01hxc5h53 Far Eastern State Agrarian University Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(81317, 'https://ror.org/01hxzmb15', 'fr', 1, 'https://ror.org/01hxzmb15 Conseil RƩgional de La RƩunion'),
(81318, 'https://ror.org/01hyb7g80', 'en', 1, 'https://ror.org/01hyb7g80 Urology Cancer Center and GU Research Network'),
(81319, 'https://ror.org/01hzjpk73', 'en', 1, 'https://ror.org/01hzjpk73 Grazinglands Research Laboratory'),
(81320, 'https://ror.org/01j00x585', 'en', 1, 'https://ror.org/01j00x585 Regenerative Sciences Institute'),
(81321, 'https://ror.org/01j409m42', 'en', 1, 'https://ror.org/01j409m42 Nurgush Nature Reserve ŠŃƒŃ€Š³ŃƒŃˆ заповеГник'),
(81322, 'https://ror.org/01j4ba358', 'en', 1, 'https://ror.org/01j4ba358 Lahore Garrison University Ł„Ų§ŪŁˆŲ± ŚÆŪŒŲ±ŪŒŚ˜Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒā€Ž'),
(81323, 'https://ror.org/01j4fzm59', 'no_lang_code', 1, 'https://ror.org/01j4fzm59 Kantar Health (Brazil)'),
(81324, 'https://ror.org/01j543957', 'es', 1, 'https://ror.org/01j543957 Fundación Instituto de Inmunología de Colombia'),
(81325, 'https://ror.org/01j5s9s08', 'en', 1, 'https://ror.org/01j5s9s08 Austrian Institute for Sports Medicine'),
(81326, 'https://ror.org/01j6h9w88', 'en', 1, 'https://ror.org/01j6h9w88 Centre for Research in Intensive Care'),
(81327, 'https://ror.org/01j6sxy67', 'no_lang_code', 1, 'https://ror.org/01j6sxy67 GlaxoSmithKline (Japan) ć‚°ćƒ©ć‚Æć‚½ćƒ»ć‚¹ćƒŸć‚¹ć‚Æćƒ©ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(81328, 'https://ror.org/01j8exy17', 'no_lang_code', 1, 'https://ror.org/01j8exy17 Oil and Natural Gas Corporation (India)'),
(81329, 'https://ror.org/01jap5s81', 'en', 1, 'https://ror.org/01jap5s81 North West London Pathology'),
(81330, 'https://ror.org/01jbagx41', 'no_lang_code', 1, 'https://ror.org/01jbagx41 Hydrosolutions (Switzerland)'),
(81331, 'https://ror.org/01jbfvb72', 'en', 1, 'https://ror.org/01jbfvb72 Association Universitaire Canadienne d''Ɖtudes Nordiques Association of Canadian Universities for Northern Studies'),
(81332, 'https://ror.org/01jcmva95', 'no_lang_code', 1, 'https://ror.org/01jcmva95 Juice Plus+ (United States)'),
(81333, 'https://ror.org/01jeedh73', 'en', 1, 'https://ror.org/01jeedh73 Hefei National Center for Physical Sciences at Nanoscale åˆč‚„å¾®å°ŗåŗ¦ē‰©č“Øē§‘å­¦å›½å®¶å®žéŖŒå®¤'),
(81334, 'https://ror.org/01jf72w53', 'en', 1, 'https://ror.org/01jf72w53 Central Scientific Research Institute of Armament and Military Equipment of the Armed Forces of Ukraine Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Š·Š±Ń€Š¾Ń”Š½Š½Ń та Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾Ń— техніки Збройних Дил України'),
(81335, 'https://ror.org/01jfpc433', 'en', 1, 'https://ror.org/01jfpc433 Society for the History of Technology'),
(81336, 'https://ror.org/01jg4aw19', 'en', 1, 'https://ror.org/01jg4aw19 African Union Commission'),
(81337, 'https://ror.org/01jh2g196', 'en', 1, 'https://ror.org/01jh2g196 Region Hovedstadens Apotek The Capital Region Pharmacy'),
(81338, 'https://ror.org/01jhj1k54', 'en', 1, 'https://ror.org/01jhj1k54 Salt Lake Regional Medical Center'),
(81339, 'https://ror.org/01jhpwy79', 'en', 1, 'https://ror.org/01jhpwy79 Ebonyi State University YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ įŗøĢ€bį»ĢnyƬ'),
(81340, 'https://ror.org/01jj57g95', 'no_lang_code', 1, 'https://ror.org/01jj57g95 Naturex (France)'),
(81341, 'https://ror.org/01jkgrc45', 'en', 1, 'https://ror.org/01jkgrc45 Baton Rouge General'),
(81342, 'https://ror.org/01jktjc68', 'no_lang_code', 1, 'https://ror.org/01jktjc68 Omuta hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å¤§ē‰Ÿē”°ē—…é™¢'),
(81343, 'https://ror.org/01jsr8a33', 'en', 1, 'https://ror.org/01jsr8a33 Altai State Agricultural University Алтайский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(81344, 'https://ror.org/01jsr9d25', 'en', 1, 'https://ror.org/01jsr9d25 Community Integrated Development Initiatives'),
(81345, 'https://ror.org/01jtr9n55', 'de', 1, 'https://ror.org/01jtr9n55 Ɩsterreichisches Institut für Berufsbildungsforschung'),
(81346, 'https://ror.org/01jxjwb74', 'en', 1, 'https://ror.org/01jxjwb74 International Livestock Research Institute'),
(81347, 'https://ror.org/01k5gt570', 'en', 1, 'https://ror.org/01k5gt570 Rhode Island College'),
(81348, 'https://ror.org/01k6q3j92', 'en', 1, 'https://ror.org/01k6q3j92 Miami Foundation'),
(81349, 'https://ror.org/01k71jg45', 'en', 1, 'https://ror.org/01k71jg45 Hospice and Palliative Nurses Foundation'),
(81350, 'https://ror.org/01k79ja28', 'pt', 1, 'https://ror.org/01k79ja28 Instituto Estadual do CƩrebro Paulo Niemeyer'),
(81351, 'https://ror.org/01k8vtd75', 'en', 1, 'https://ror.org/01k8vtd75 Mansoura University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŲµŁˆŲ±Ų©'),
(81352, 'https://ror.org/01k974c52', 'en', 1, 'https://ror.org/01k974c52 Tibetan Children’s Village ą¤¹ą„‡ą¤” ऑफिस, ą¤¤ą¤æą¤¬ą„ą¤¬ą¤¤ą„€ ą¤šą¤æą¤²ą„ą¤”ą„ą¤°ą¤Øą„ą¤ø ą¤µą¤æą¤²ą„‡ą¤œ ą¤øą„ą¤•ą„‚ą¤²'),
(81353, 'https://ror.org/01k9rsw84', 'no_lang_code', 1, 'https://ror.org/01k9rsw84 Shell (Canada) Shell Canada LimitƩe'),
(81354, 'https://ror.org/01k9wvk47', 'no_lang_code', 1, 'https://ror.org/01k9wvk47 Marutomo (Japan) ćƒžćƒ«ćƒˆćƒ¢ę Ŗå¼ä¼šē¤¾'),
(81355, 'https://ror.org/01k9xac83', 'en', 1, 'https://ror.org/01k9xac83 Rush University'),
(81356, 'https://ror.org/01kd65564', 'en', 1, 'https://ror.org/01kd65564 The University of Texas at San Antonio UniversitƩ du texas Ơ san antonio'),
(81357, 'https://ror.org/01kdj2848', 'it', 1, 'https://ror.org/01kdj2848 Clinical Physiology Institute Istituto di Fisiologia Clinica'),
(81358, 'https://ror.org/01kh7ng04', 'es', 1, 'https://ror.org/01kh7ng04 Fundación Universitaria Horizonte'),
(81359, 'https://ror.org/01kh7ve16', 'en', 1, 'https://ror.org/01kh7ve16 Bristow Pediatrics'),
(81360, 'https://ror.org/01kk9d604', 'de', 1, 'https://ror.org/01kk9d604 German Association of Professors of Universities of Applied Sciences Hochschullehrerbund'),
(81361, 'https://ror.org/01kkg9921', 'en', 1, 'https://ror.org/01kkg9921 Oregon Department of Environmental Quality'),
(81362, 'https://ror.org/01kmhx639', 'en', 1, 'https://ror.org/01kmhx639 NIHR Imperial Biomedical Research Centre'),
(81363, 'https://ror.org/01kq4t285', 'es', 1, 'https://ror.org/01kq4t285 Instituto GeogrƔfico Nacional National Geographic Institute'),
(81364, 'https://ror.org/01kqdxr19', 'en', 1, 'https://ror.org/01kqdxr19 Gifu University Hospital å²é˜œå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(81365, 'https://ror.org/01ks6fw71', 'en', 1, 'https://ror.org/01ks6fw71 Don Honorio Ventura State University Pamantasang Don Honorio Ventura'),
(81366, 'https://ror.org/01kz55g98', 'no_lang_code', 1, 'https://ror.org/01kz55g98 Toppan (Japan) å‡øē‰ˆå°åˆ·ę Ŗå¼ä¼šē¤¾'),
(81367, 'https://ror.org/01m0qe785', 'en', 1, 'https://ror.org/01m0qe785 Education Development Trust'),
(81368, 'https://ror.org/01m1qsc38', 'en', 1, 'https://ror.org/01m1qsc38 Ministry of Agriculture'),
(81369, 'https://ror.org/01m1s6313', 'en', 1, 'https://ror.org/01m1s6313 St. George''s University'),
(81370, 'https://ror.org/01m1y7668', 'en', 1, 'https://ror.org/01m1y7668 The Ilya Glazunov Russian Academy of Painting, Sculpture and Architecture Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ живописи, Š²Š°ŃŠ½ŠøŃ Šø зоГчества Ильи Š“Š»Š°Š·ŃƒŠ½Š¾Š²Š°'),
(81371, 'https://ror.org/01m2pas06', 'en', 1, 'https://ror.org/01m2pas06 NTT Basic Research Laboratories NTT ē‰©ę€§ē§‘å­¦åŸŗē¤Žē ”ē©¶ę‰€'),
(81372, 'https://ror.org/01m39hd75', 'it', 1, 'https://ror.org/01m39hd75 Azienda Ospedaliero Universitaria di Sassari'),
(81373, 'https://ror.org/01m3cg403', 'en', 1, 'https://ror.org/01m3cg403 Lysosomal and Rare Disorders Research and Treatment Center'),
(81374, 'https://ror.org/01m4jzx92', 'en', 1, 'https://ror.org/01m4jzx92 East Tennessee Clinical Research'),
(81375, 'https://ror.org/01m6zz897', 'en', 1, 'https://ror.org/01m6zz897 Russian Society of Sociologists Российское общество социологов'),
(81376, 'https://ror.org/01m75dz08', 'en', 1, 'https://ror.org/01m75dz08 Himalayan Environment Research Institute हिमालय ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤°ą¤£ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(81377, 'https://ror.org/01m7aex78', 'en', 1, 'https://ror.org/01m7aex78 Istituto Nazionale di Metrologia delle Radiazioni Ionizzanti National Institute of Ionizing Radiation Metrology'),
(81378, 'https://ror.org/01m7v2988', 'en', 1, 'https://ror.org/01m7v2988 New York Proton Center'),
(81379, 'https://ror.org/01m9vv151', 'en', 1, 'https://ror.org/01m9vv151 Institute of Orthopedics Banjica Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¾Ń€Ń‚Š¾ŠæŠµŠ“ŠøŃ˜Ńƒ Š‘Š°ŃšŠøŃ†Š°'),
(81380, 'https://ror.org/01m9z6e22', 'no_lang_code', 1, 'https://ror.org/01m9z6e22 Aarhus GeoSoftware (Denmark)'),
(81381, 'https://ror.org/01mazcp58', 'en', 1, 'https://ror.org/01mazcp58 National Medical Holding ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский холГинг'),
(81382, 'https://ror.org/01mbdhx05', 'no_lang_code', 1, 'https://ror.org/01mbdhx05 Saiseikai Niigata Daini Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šę–°ę½Ÿē¬¬äŗŒē—…é™¢'),
(81383, 'https://ror.org/01mcj6m41', 'en', 1, 'https://ror.org/01mcj6m41 LifeDoc Health'),
(81384, 'https://ror.org/01mfdfm52', 'en', 1, 'https://ror.org/01mfdfm52 Forest Research Institute Malaysia'),
(81385, 'https://ror.org/01mfpjp46', 'en', 1, 'https://ror.org/01mfpjp46 Institute of Oncology NN Petrov ŠŠ˜Š˜ онкологии им. Š.Š. ŠŸŠµŃ‚Ń€Š¾Š²Š°'),
(81386, 'https://ror.org/01mg0yh05', 'en', 1, 'https://ror.org/01mg0yh05 Federal Transit Administration'),
(81387, 'https://ror.org/01mhm7x58', 'en', 1, 'https://ror.org/01mhm7x58 Eye & Retina Surgeons'),
(81388, 'https://ror.org/01mmh4r39', 'no_lang_code', 1, 'https://ror.org/01mmh4r39 Hitachi (Sweden)'),
(81389, 'https://ror.org/01mp52y34', 'en', 1, 'https://ror.org/01mp52y34 Heising-Simons Foundation'),
(81390, 'https://ror.org/01mqnrz37', 'en', 1, 'https://ror.org/01mqnrz37 Federal State Budgetary Institution Russian Scientific Center of Roentgenoradiology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр рентгенораГиологии"'),
(81391, 'https://ror.org/01mqx8q10', 'en', 1, 'https://ror.org/01mqx8q10 Agriculture Victoria'),
(81392, 'https://ror.org/01mqyyq64', 'en', 1, 'https://ror.org/01mqyyq64 Department of National Parks Wildlife and Plant Conservation ąøąø£ąø”ąø­ąøøąø—ąø¢ąø²ąø™ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“ ąøŖąø±ąø•ąø§ą¹Œąø›ą¹ˆąø² ą¹ąø„ąø°ąøžąø±ąø™ąø˜ąøøą¹Œąøžąø·ąøŠ'),
(81393, 'https://ror.org/01mtzfx31', 'de', 1, 'https://ror.org/01mtzfx31 Brustzentrum Klinik St. Anna'),
(81394, 'https://ror.org/01mwx9v75', 'no_lang_code', 1, 'https://ror.org/01mwx9v75 Electrolux (Italy)'),
(81395, 'https://ror.org/01mxnn839', 'en', 1, 'https://ror.org/01mxnn839 St. Elisabeth-Hospital Bochum'),
(81396, 'https://ror.org/01my9vf82', 'en', 1, 'https://ror.org/01my9vf82 New York State Library'),
(81397, 'https://ror.org/01myftv43', 'no_lang_code', 1, 'https://ror.org/01myftv43 Sinto (Japan) ę–°ę±å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(81398, 'https://ror.org/01n0k5m85', 'en', 1, 'https://ror.org/01n0k5m85 King''s College Hospital NHS Foundation Trust'),
(81399, 'https://ror.org/01n179w26', 'en', 1, 'https://ror.org/01n179w26 Guangzhou Regenerative Medicine and Health Guangdong Laboratory å¹æå·žå†ē”ŸåŒ»å­¦äøŽå„åŗ·å¹æäøœēœå®žéŖŒå®¤'),
(81400, 'https://ror.org/01n2k7643', 'no_lang_code', 1, 'https://ror.org/01n2k7643 Etymotic Research (United States)'),
(81401, 'https://ror.org/01n2t3x97', 'en', 1, 'https://ror.org/01n2t3x97 Hanoi Medical University UniversitĆ© de mĆ©decine de hanoĆÆ ĐẔi hį»c Y HĆ  Nį»™i'),
(81402, 'https://ror.org/01nbf4j71', 'en', 1, 'https://ror.org/01nbf4j71 Resuscitation Council'),
(81403, 'https://ror.org/01ncvjw08', 'fr', 1, 'https://ror.org/01ncvjw08 Technopole Maritime du QuƩbec'),
(81404, 'https://ror.org/01nd8nc87', 'no_lang_code', 1, 'https://ror.org/01nd8nc87 Equibreed (New Zealand)'),
(81405, 'https://ror.org/01neh8064', 'en', 1, 'https://ror.org/01neh8064 National Nanotechnology Center ąøØąø¹ąø™ąø¢ą¹Œąø™ąø²ą¹‚ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(81406, 'https://ror.org/01ngg7w55', 'en', 1, 'https://ror.org/01ngg7w55 Whitireia New Zealand'),
(81407, 'https://ror.org/01nh3sx96', 'en', 1, 'https://ror.org/01nh3sx96 Geriatric Research Education and Clinical Center'),
(81408, 'https://ror.org/01nj2n977', 'es', 1, 'https://ror.org/01nj2n977 Gastroenterología Diagnóstica Terapeútica'),
(81409, 'https://ror.org/01nkhmn89', 'en', 1, 'https://ror.org/01nkhmn89 Biruni University Biruni Üniversitesi'),
(81410, 'https://ror.org/01nkphj61', 'en', 1, 'https://ror.org/01nkphj61 Himalayan Institute Hospital Trust ą¤¹ą¤æą¤®ą¤¾ą¤²ą¤Æą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² ą¤Ÿą„ą¤°ą¤øą„ą¤Ÿ'),
(81411, 'https://ror.org/01nmm5m33', 'en', 1, 'https://ror.org/01nmm5m33 Garland VA Medical Center'),
(81412, 'https://ror.org/01nmpj461', 'en', 1, 'https://ror.org/01nmpj461 Sumitomo Foundation å…¬ē›Šč²”å›£ę³•äŗŗä½å‹č²”å›£'),
(81413, 'https://ror.org/01nrpzj54', 'nl', 1, 'https://ror.org/01nrpzj54 Diakonessenhuis hospital'),
(81414, 'https://ror.org/01nst5m10', 'en', 1, 'https://ror.org/01nst5m10 Baptist Memorial Health Care'),
(81415, 'https://ror.org/01nsxs283', 'en', 1, 'https://ror.org/01nsxs283 ARC Centre of Excellence for Enabling Eco-Efficient Beneficiation of Minerals'),
(81416, 'https://ror.org/01nt95841', 'no_lang_code', 1, 'https://ror.org/01nt95841 Tang Shiu Kin Hospital 鄧肇堅醫院'),
(81417, 'https://ror.org/01nvzf736', 'iu', 1, 'https://ror.org/01nvzf736 Pauktuutit'),
(81418, 'https://ror.org/01nw09h32', 'en', 1, 'https://ror.org/01nw09h32 Plant Biosecurity Cooperative Research Centre'),
(81419, 'https://ror.org/01nxdh755', 'en', 1, 'https://ror.org/01nxdh755 Towada City Hospital åå’Œē”°åø‚ē«‹äø­å¤®ē—…é™¢'),
(81420, 'https://ror.org/01nz1p872', 'no_lang_code', 1, 'https://ror.org/01nz1p872 CryoLife (United States)'),
(81421, 'https://ror.org/01nzejr48', 'no_lang_code', 1, 'https://ror.org/01nzejr48 BioBridges (United States)'),
(81422, 'https://ror.org/01nzphv03', 'en', 1, 'https://ror.org/01nzphv03 Pacific Centre for Isotopic and Geochemical Research'),
(81423, 'https://ror.org/01p09d785', 'en', 1, 'https://ror.org/01p09d785 Arnold Regge Center'),
(81424, 'https://ror.org/01p0xth29', 'en', 1, 'https://ror.org/01p0xth29 Covenant Medical Center'),
(81425, 'https://ror.org/01p18bt48', 'en', 1, 'https://ror.org/01p18bt48 Thomas University'),
(81426, 'https://ror.org/01p2zg436', 'en', 1, 'https://ror.org/01p2zg436 ARC Centre of Excellence in Synthetic Biology'),
(81427, 'https://ror.org/01p3c3c27', 'en', 1, 'https://ror.org/01p3c3c27 Gundersen Health System'),
(81428, 'https://ror.org/01p4s0142', 'en', 1, 'https://ror.org/01p4s0142 MRC Population Health Research Unit'),
(81429, 'https://ror.org/01p52dr80', 'en', 1, 'https://ror.org/01p52dr80 Gashaka Primate Project'),
(81430, 'https://ror.org/01p55fp87', 'no_lang_code', 1, 'https://ror.org/01p55fp87 B-Ware (Netherlands)'),
(81431, 'https://ror.org/01pbhra64', 'en', 1, 'https://ror.org/01pbhra64 Morehouse School of Medicine'),
(81432, 'https://ror.org/01pcdsa88', 'en', 1, 'https://ror.org/01pcdsa88 Alaska Historical Society'),
(81433, 'https://ror.org/01pd36p58', 'en', 1, 'https://ror.org/01pd36p58 Russian Research Institute for Integrated Water Management and Protection'),
(81434, 'https://ror.org/01pdrgk70', 'en', 1, 'https://ror.org/01pdrgk70 The Negros Museum'),
(81435, 'https://ror.org/01pgswx52', 'no_lang_code', 1, 'https://ror.org/01pgswx52 Fluidigm (United States)'),
(81436, 'https://ror.org/01pj5v964', 'en', 1, 'https://ror.org/01pj5v964 Madhav Institute of Technology & Science'),
(81437, 'https://ror.org/01pnpvk61', 'en', 1, 'https://ror.org/01pnpvk61 Kyushu Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹ä¹å·žē—…é™¢'),
(81438, 'https://ror.org/01pnybk10', 'en', 1, 'https://ror.org/01pnybk10 Northern Ontario Academic Medicine Association'),
(81439, 'https://ror.org/01ppy6j62', 'en', 1, 'https://ror.org/01ppy6j62 Geophysics GPR International Geophysique GPR International'),
(81440, 'https://ror.org/01prf8716', 'no_lang_code', 1, 'https://ror.org/01prf8716 Apollomics (United States)'),
(81441, 'https://ror.org/01pvx8v81', 'en', 1, 'https://ror.org/01pvx8v81 Federal University of Technology'),
(81442, 'https://ror.org/01pw5qp76', 'en', 1, 'https://ror.org/01pw5qp76 Anhui Academy of Agricultural Sciences å®‰å¾½ēœå†œē§‘é™¢'),
(81443, 'https://ror.org/01pwba224', 'en', 1, 'https://ror.org/01pwba224 Baikal Research Centre'),
(81444, 'https://ror.org/01px1ve30', 'en', 1, 'https://ror.org/01px1ve30 Shangdong Agriculture and Engineering University å±±äøœå†œäøšå·„ēØ‹å­¦é™¢'),
(81445, 'https://ror.org/01px84952', 'en', 1, 'https://ror.org/01px84952 Unitec Institute of Technology'),
(81446, 'https://ror.org/01q1fj824', 'en', 1, 'https://ror.org/01q1fj824 DRDO Young Scientist Laboratory'),
(81447, 'https://ror.org/01q5h5m61', 'no_lang_code', 1, 'https://ror.org/01q5h5m61 JenaBatteries (Germany)'),
(81448, 'https://ror.org/01q6nk123', 'en', 1, 'https://ror.org/01q6nk123 Smart Data Analysis Systems Group'),
(81449, 'https://ror.org/01q6pmm96', 'en', 1, 'https://ror.org/01q6pmm96 University of Portland UniversitƩ de portland'),
(81450, 'https://ror.org/01q6zce06', 'en', 1, 'https://ror.org/01q6zce06 Bundesamt für Kartographie und Geodäsie Federal Agency for Cartography and Geodesy'),
(81451, 'https://ror.org/01q8ytn75', 'en', 1, 'https://ror.org/01q8ytn75 Center for Northern Studies Centre d''Ʃtudes nordiques'),
(81452, 'https://ror.org/01q928n88', 'en', 1, 'https://ror.org/01q928n88 Baltimore City Health Department'),
(81453, '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'),
(81454, 'https://ror.org/01qavk531', 'nl', 1, 'https://ror.org/01qavk531 Catharina Hospital Catharina Ziekenhuis'),
(81455, 'https://ror.org/01qax9t22', 'en', 1, 'https://ror.org/01qax9t22 UK Stem Cell Foundation'),
(81456, 'https://ror.org/01qb1r340', 'en', 1, 'https://ror.org/01qb1r340 Duke Raleigh Hospital'),
(81457, 'https://ror.org/01qbk8d85', 'en', 1, 'https://ror.org/01qbk8d85 Altaiskiy State Nature Biosphere Reserve Алтайский заповеГник'),
(81458, 'https://ror.org/01qbmc548', 'no_lang_code', 1, 'https://ror.org/01qbmc548 Syncrude (Canada)'),
(81459, 'https://ror.org/01qbp6a91', 'en', 1, 'https://ror.org/01qbp6a91 Association Canadienne des Sports en Fauteuil Roulant Wheelchair Rugby Canada'),
(81460, 'https://ror.org/01qc45180', 'no_lang_code', 1, 'https://ror.org/01qc45180 USP Technologies (United Kingdom)'),
(81461, 'https://ror.org/01qcacz92', 'en', 1, 'https://ror.org/01qcacz92 Sevilleta Long Term Ecological Research'),
(81462, 'https://ror.org/01qd25655', 'en', 1, 'https://ror.org/01qd25655 Japanese Red Cross Kobe Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ē„žęˆøčµ¤åå­—ē—…é™¢'),
(81463, 'https://ror.org/01qdqrj31', 'fr', 1, 'https://ror.org/01qdqrj31 Biologie de l''os et du cartilage, Bioscar'),
(81464, 'https://ror.org/01qf95793', 'en', 1, 'https://ror.org/01qf95793 Lindenwood University'),
(81465, 'https://ror.org/01qg56n75', 'en', 1, 'https://ror.org/01qg56n75 State Key Laboratory of Transducer Technology ä¼ ę„ŸęŠ€ęœÆå›½å®¶č”åˆé‡ē‚¹å®žéŖŒå®¤'),
(81466, 'https://ror.org/01qg9v093', 'en', 1, 'https://ror.org/01qg9v093 Mangalore Institute of Oncology ಮಂಗಳೂರು ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²Øą³ą²•ą²¾ą²²ą²œą²æ'),
(81467, 'https://ror.org/01qhy6f74', 'es', 1, 'https://ror.org/01qhy6f74 Red de Investigación en Actividades Preventivas y Promoción de la Salud'),
(81468, 'https://ror.org/01qjckx08', 'en', 1, 'https://ror.org/01qjckx08 Instituto Nacional de Medicina Genómica National Institute of Genomic Medicine'),
(81469, 'https://ror.org/01qkd1z70', 'en', 1, 'https://ror.org/01qkd1z70 Bannari Amman Institute of Technology'),
(81470, 'https://ror.org/01qkvxz61', 'en', 1, 'https://ror.org/01qkvxz61 American Academy of Forensic Sciences'),
(81471, 'https://ror.org/01qnqmc89', 'en', 1, 'https://ror.org/01qnqmc89 VIB-UGent Center for Plant Systems Biology'),
(81472, 'https://ror.org/01qp02p38', 'no_lang_code', 1, 'https://ror.org/01qp02p38 Gossamer Bio (United States)'),
(81473, 'https://ror.org/01qpg9817', 'en', 1, 'https://ror.org/01qpg9817 Beyond Conflict'),
(81474, 'https://ror.org/01qr0q621', 'en', 1, 'https://ror.org/01qr0q621 Political Studies Association'),
(81475, 'https://ror.org/01qstkr73', 'no_lang_code', 1, 'https://ror.org/01qstkr73 EMI (United Kingdom)'),
(81476, 'https://ror.org/01qt4dq02', 'no_lang_code', 1, 'https://ror.org/01qt4dq02 Bruker (China)'),
(81477, 'https://ror.org/01qvcpq30', 'no_lang_code', 1, 'https://ror.org/01qvcpq30 Kallyope (United States)'),
(81478, 'https://ror.org/01qvj2271', 'en', 1, 'https://ror.org/01qvj2271 Otago Polytechnic'),
(81479, 'https://ror.org/01qwa2z73', 'en', 1, 'https://ror.org/01qwa2z73 Osaka Prefectural Institute of Public Health å¤§é˜Ŗåŗœē«‹å…¬č”†č”›ē”Ÿē ”ē©¶ę‰€'),
(81480, 'https://ror.org/01qwvz642', 'fr', 1, 'https://ror.org/01qwvz642 Centre d''Ɖtude et de DĆ©couverte des Tortues Marines'),
(81481, 'https://ror.org/01qx0e979', 'en', 1, 'https://ror.org/01qx0e979 Uniting'),
(81482, 'https://ror.org/01r3dwg36', 'en', 1, 'https://ror.org/01r3dwg36 Mataas na Paaralang Pang-agham ng Pilipinas Philippine Science High School System'),
(81483, 'https://ror.org/01r3rjz42', 'en', 1, 'https://ror.org/01r3rjz42 Bay Area Hospital'),
(81484, 'https://ror.org/01r45yt97', 'en', 1, 'https://ror.org/01r45yt97 Xianyang Normal University å’øé˜³åøˆčŒƒå­¦é™¢'),
(81485, 'https://ror.org/01r4tcq81', 'en', 1, 'https://ror.org/01r4tcq81 Innovative Genomics Institute'),
(81486, 'https://ror.org/01r5ayw14', 'en', 1, 'https://ror.org/01r5ayw14 Chelonia Applied Science'),
(81487, 'https://ror.org/01r88qh41', 'en', 1, 'https://ror.org/01r88qh41 JKA Foundation 貔団法人JKA'),
(81488, 'https://ror.org/01ragyh24', 'en', 1, 'https://ror.org/01ragyh24 Dazhou Academy of Agricultural Sciences'),
(81489, 'https://ror.org/01rb7bk56', 'no_lang_code', 1, 'https://ror.org/01rb7bk56 Xilinx (United States)'),
(81490, 'https://ror.org/01rcg2640', 'en', 1, 'https://ror.org/01rcg2640 Banki College'),
(81491, 'https://ror.org/01rcv7z31', 'en', 1, 'https://ror.org/01rcv7z31 Dermacross'),
(81492, 'https://ror.org/01rd4et50', 'es', 1, 'https://ror.org/01rd4et50 Centro Nacional de Sanidad Ambiental National Environmental Health Centre'),
(81493, 'https://ror.org/01rgbbv42', 'en', 1, 'https://ror.org/01rgbbv42 Osaka Neurological Institute å…¬ē›Šč²”å›£ę³•äŗŗå”ę¾¤čØ˜åæµä¼šå¤§é˜Ŗč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(81494, 'https://ror.org/01rgp0j22', 'no_lang_code', 1, 'https://ror.org/01rgp0j22 Arog Pharmaceuticals (United States)'),
(81495, 'https://ror.org/01rgwy395', 'en', 1, 'https://ror.org/01rgwy395 Northwest Kidney Centers'),
(81496, 'https://ror.org/01rj09n08', 'no_lang_code', 1, 'https://ror.org/01rj09n08 Chemometrix (Germany)'),
(81497, 'https://ror.org/01rkjeh73', 'en', 1, 'https://ror.org/01rkjeh73 Worldwide Laser Institute'),
(81498, 'https://ror.org/01rkqb281', 'en', 1, 'https://ror.org/01rkqb281 Leibniz Institute for Research on Society and Space Leibniz-Institut für Raumbezogene Sozialforschung'),
(81499, 'https://ror.org/01rkwtz72', 'en', 1, 'https://ror.org/01rkwtz72 Guangdong Academy of Agricultural Sciences å¹æäøœēœå†œäøšē§‘å­¦é™¢'),
(81500, 'https://ror.org/01rkxdk30', 'en', 1, 'https://ror.org/01rkxdk30 VA Finger Lakes Healthcare System'),
(81501, 'https://ror.org/01rm6hc52', 'en', 1, 'https://ror.org/01rm6hc52 Royal Aeronautical Society'),
(81502, 'https://ror.org/01rmh6e96', 'en', 1, 'https://ror.org/01rmh6e96 Calvary Riverina Hospital'),
(81503, 'https://ror.org/01rn2d883', 'es', 1, 'https://ror.org/01rn2d883 Fundación Marques de Valdecilla'),
(81504, 'https://ror.org/01rnj6418', 'no_lang_code', 1, 'https://ror.org/01rnj6418 Yumanity Therapeutics (United States)'),
(81505, 'https://ror.org/01rnrha09', 'no_lang_code', 1, 'https://ror.org/01rnrha09 International Wildlife Consultants (United Kingdom)'),
(81506, 'https://ror.org/01rnsap95', 'no_lang_code', 1, 'https://ror.org/01rnsap95 Fusion Genomics (Canada)'),
(81507, 'https://ror.org/01rnt9r23', 'en', 1, 'https://ror.org/01rnt9r23 Orot Israel College ×ž×›×œ×œ×Ŗ אורות ×™×©×Ø××œ'),
(81508, 'https://ror.org/01rpft493', 'es', 1, 'https://ror.org/01rpft493 Laboratorios Ruiz'),
(81509, 'https://ror.org/01rt0fh70', 'en', 1, 'https://ror.org/01rt0fh70 Center for International Forestry Research'),
(81510, 'https://ror.org/01rwqqv19', 'en', 1, 'https://ror.org/01rwqqv19 Melnikov Permafrost Institute of the Siberian Branch of the Russian Academy of Science Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ€Š·Š»Š¾Ń‚Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ имени П. И. Мельникова Š”Šž Š ŠŠ'),
(81511, 'https://ror.org/01rwx7470', 'no_lang_code', 1, 'https://ror.org/01rwx7470 Aichi Gakuin University ę„›ēŸ„å­¦é™¢å¤§å­¦'),
(81512, 'https://ror.org/01s0tbj55', 'en', 1, 'https://ror.org/01s0tbj55 World Vision'),
(81513, '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'),
(81514, 'https://ror.org/01s1hm369', 'en', 1, 'https://ror.org/01s1hm369 Nippon Dental University ę—„ęœ¬ę­Æē§‘å¤§å­¦'),
(81515, 'https://ror.org/01s1q0w69', 'es', 1, 'https://ror.org/01s1q0w69 Hospital Universitario La Paz'),
(81516, 'https://ror.org/01s48e916', 'en', 1, 'https://ror.org/01s48e916 Kamchatka State Technical University ŠšŠ°Š¼Ń‡Š°Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(81517, 'https://ror.org/01s48fc08', 'en', 1, 'https://ror.org/01s48fc08 Division Technique de I''INSU'),
(81518, 'https://ror.org/01s7bn502', 'en', 1, 'https://ror.org/01s7bn502 Glympse Bio'),
(81519, 'https://ror.org/01s8ff678', 'no_lang_code', 1, 'https://ror.org/01s8ff678 Tomita Hospital'),
(81520, 'https://ror.org/01s9dmg43', 'en', 1, 'https://ror.org/01s9dmg43 Peng Huanwu Center for Fundamental Theory'),
(81521, 'https://ror.org/01savtv33', 'it', 1, 'https://ror.org/01savtv33 Ospedale Papa Giovanni XXIII'),
(81522, 'https://ror.org/01savwy26', 'en', 1, 'https://ror.org/01savwy26 University Hospitals Parma Medical Center'),
(81523, 'https://ror.org/01sdg6680', 'en', 1, 'https://ror.org/01sdg6680 WellChild'),
(81524, 'https://ror.org/01sdhz737', 'en', 1, 'https://ror.org/01sdhz737 Institute for Global Environmental Strategies å…¬ē›Šč²”å›£ę³•äŗŗåœ°ēƒē’°å¢ƒęˆ¦ē•„ē ”ē©¶ę©Ÿé–¢'),
(81525, 'https://ror.org/01sdzh977', 'fr', 1, 'https://ror.org/01sdzh977 Hirslanden Clinique La Colline'),
(81526, 'https://ror.org/01sepf450', 'en', 1, 'https://ror.org/01sepf450 Wisconsin State Law Library'),
(81527, '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 Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр биологических систем Šø агротехнологий Российской акаГемии наук»'),
(81528, 'https://ror.org/01sjphy93', 'en', 1, 'https://ror.org/01sjphy93 American Society of Landscape Architects'),
(81529, 'https://ror.org/01sjwtr21', 'no_lang_code', 1, 'https://ror.org/01sjwtr21 PRAXI Network Δίκτυο Ī Ī”Ī‘ĪžĪ—');
INSERT INTO `rors` VALUES
(81530, 'https://ror.org/01skf6196', 'en', 1, 'https://ror.org/01skf6196 Biotherapy Institute of Japan ę Ŗå¼ä¼šē¤¾ę—„ęœ¬ćƒć‚¤ć‚Ŗć‚»ćƒ©ćƒ”ćƒ¼ē ”ē©¶ę‰€'),
(81531, 'https://ror.org/01spm3d88', 'en', 1, 'https://ror.org/01spm3d88 Atrial Fibrillation NETwork Kompetenznetz Vorhofflimmern'),
(81532, 'https://ror.org/01ss14a40', 'en', 1, 'https://ror.org/01ss14a40 Institute of Pharmacology'),
(81533, 'https://ror.org/01stwpk76', 'en', 1, 'https://ror.org/01stwpk76 Mallacoota Medical Centre'),
(81534, 'https://ror.org/01svgpe52', 'en', 1, 'https://ror.org/01svgpe52 Pain in Motion'),
(81535, 'https://ror.org/01sx6jc36', 'no_lang_code', 1, 'https://ror.org/01sx6jc36 Intercept Pharmaceuticals (United States)'),
(81536, 'https://ror.org/01syejz95', 'en', 1, 'https://ror.org/01syejz95 Helmholtz Graduate School for Hadron and Ion Research'),
(81537, 'https://ror.org/01szf1r88', 'no_lang_code', 1, 'https://ror.org/01szf1r88 envibee (Switzerland)'),
(81538, 'https://ror.org/01szjkb47', 'no_lang_code', 1, 'https://ror.org/01szjkb47 Implantcast (Germany)'),
(81539, 'https://ror.org/01t2a8a42', 'no_lang_code', 1, 'https://ror.org/01t2a8a42 Mendeley (United Kingdom)'),
(81540, 'https://ror.org/01t2w0q86', 'en', 1, 'https://ror.org/01t2w0q86 Toi Ohomai Institute of Technology'),
(81541, 'https://ror.org/01t6bjk79', 'en', 1, 'https://ror.org/01t6bjk79 Russian Medical Academy of Continuous Professional Education Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ непрерывного ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(81542, 'https://ror.org/01t6g8w08', 'en', 1, 'https://ror.org/01t6g8w08 Scottish Natural Heritage'),
(81543, 'https://ror.org/01t7act74', 'no_lang_code', 1, 'https://ror.org/01t7act74 Ultra Electronics (United States)'),
(81544, 'https://ror.org/01t80ed43', 'en', 1, 'https://ror.org/01t80ed43 Hamaguchi Foundation for the Advancement of Biochemistry äø€čˆ¬č²”å›£ę³•äŗŗęæ±å£ē”ŸåŒ–å­¦ęŒÆčˆˆč²”å›£'),
(81545, 'https://ror.org/01t9bgr30', 'en', 1, 'https://ror.org/01t9bgr30 Institute for Soldier Nanotechnologies'),
(81546, 'https://ror.org/01ta2g450', 'en', 1, 'https://ror.org/01ta2g450 National Institute of Technology, Kisarazu College ęœØę›“ę“„å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(81547, 'https://ror.org/01taed346', 'no_lang_code', 1, 'https://ror.org/01taed346 MedDay (France)'),
(81548, 'https://ror.org/01tapgj66', 'en', 1, 'https://ror.org/01tapgj66 International Crops Research Institute for the Semi-Arid Tropics'),
(81549, 'https://ror.org/01tapk317', 'en', 1, 'https://ror.org/01tapk317 Zhuhai Fudan Innovation Research Institute ē ęµ·å¤ę—¦åˆ›ę–°ē ”ē©¶é™¢'),
(81550, 'https://ror.org/01tc53f14', 'ro', 1, 'https://ror.org/01tc53f14 Institutul National pentru Sanatatea Mamei si Copilului "Alessandrescu-Rusescu"'),
(81551, 'https://ror.org/01tcs9y33', 'en', 1, 'https://ror.org/01tcs9y33 Canadian Society for Immunology SociƩtƩ Canadienne d''Immunologie'),
(81552, 'https://ror.org/01tdzxm38', 'en', 1, 'https://ror.org/01tdzxm38 India Meteorological Department'),
(81553, 'https://ror.org/01teshw58', 'hr', 1, 'https://ror.org/01teshw58 Klinički Centar Crne Gore'),
(81554, 'https://ror.org/01tfba323', 'no_lang_code', 1, 'https://ror.org/01tfba323 Sumitomo Seika Chemicals (Japan) ä½å‹ē²¾åŒ–ę Ŗå¼ä¼šē¤¾'),
(81555, 'https://ror.org/01tftss64', 'en', 1, 'https://ror.org/01tftss64 Brain Mapping Medical Research Organization & Support Foundation'),
(81556, 'https://ror.org/01tgmhj36', 'en', 1, 'https://ror.org/01tgmhj36 Coventry University'),
(81557, 'https://ror.org/01thjgt98', 'no_lang_code', 1, 'https://ror.org/01thjgt98 Murata (Finland)'),
(81558, 'https://ror.org/01thwj886', 'no_lang_code', 1, 'https://ror.org/01thwj886 Stora Enso (Sweden)'),
(81559, 'https://ror.org/01tj1t569', 'en', 1, 'https://ror.org/01tj1t569 Center for the National Interest'),
(81560, 'https://ror.org/01tj7cz72', 'no_lang_code', 1, 'https://ror.org/01tj7cz72 Science Exchange (United States)'),
(81561, 'https://ror.org/01tjgw469', 'en', 1, 'https://ror.org/01tjgw469 Gannan Medical University čµ£å—åŒ»å­¦é™¢'),
(81562, 'https://ror.org/01tpvdp83', 'no_lang_code', 1, 'https://ror.org/01tpvdp83 Guangxi Medicinal Botanical Garden å¹æč„æčÆē”Øę¤ē‰©å›­'),
(81563, 'https://ror.org/01tpyf635', 'en', 1, 'https://ror.org/01tpyf635 Japan Textbook Research Center å…¬ē›Šč²”å›£ę³•äŗŗę•™ē§‘ę›øē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(81564, 'https://ror.org/01tqdyq91', 'en', 1, 'https://ror.org/01tqdyq91 Institute of General and Inorganic Chemistry of National Academy of Sciences of Belarus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей Šø неорганической химии ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(81565, 'https://ror.org/01tr91x67', 'en', 1, 'https://ror.org/01tr91x67 Newport Restoration Foundation'),
(81566, 'https://ror.org/01tspta37', 'en', 1, 'https://ror.org/01tspta37 Leibniz Institute of Polymer Research Leibniz-Institut für Polymerforschung Dresden'),
(81567, 'https://ror.org/01tt7fe73', 'en', 1, 'https://ror.org/01tt7fe73 Institute for Diagnosis and Animal Health Institutul de Diagnostic şi Sănătate Animală'),
(81568, 'https://ror.org/01tv9ph92', 'en', 1, 'https://ror.org/01tv9ph92 Southern Federal University Южный Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(81569, 'https://ror.org/01tvqd679', 'en', 1, 'https://ror.org/01tvqd679 Osaka Health Science University å¤§é˜Ŗäæå„åŒ»ē™‚å¤§å­¦'),
(81570, 'https://ror.org/01tvrq624', 'en', 1, 'https://ror.org/01tvrq624 Kavli Institute for Systems Neuroscience'),
(81571, 'https://ror.org/01tx1rq25', 'en', 1, 'https://ror.org/01tx1rq25 Japan Sport Council ē‹¬ē«‹č”Œę”æę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(81572, 'https://ror.org/01tx47076', 'fr', 1, 'https://ror.org/01tx47076 Ɖcole des Cadres'),
(81573, 'https://ror.org/01txmfh60', 'no_lang_code', 1, 'https://ror.org/01txmfh60 Seagen (Canada)'),
(81574, 'https://ror.org/01tyh8d23', 'es', 1, 'https://ror.org/01tyh8d23 Ministerio de Salud PĆŗblica'),
(81575, 'https://ror.org/01tz5yb12', 'no_lang_code', 1, 'https://ror.org/01tz5yb12 JEOL (China) ę·ę¬§č·Æ'),
(81576, 'https://ror.org/01v07hj96', 'no_lang_code', 1, 'https://ror.org/01v07hj96 Sanken Electric (Japan) ć‚µćƒ³ć‚±ćƒ³é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(81577, 'https://ror.org/01v10fv91', 'en', 1, 'https://ror.org/01v10fv91 Instituto Tecnológico de Sonora Sonora Institute of Technology'),
(81578, 'https://ror.org/01v1hv534', 'en', 1, 'https://ror.org/01v1hv534 MIRCORE'),
(81579, 'https://ror.org/01v408m73', 'no', 1, 'https://ror.org/01v408m73 Norges Bank'),
(81580, 'https://ror.org/01v5k4d73', 'en', 1, 'https://ror.org/01v5k4d73 Dehradun Institute of Technology University ą¤¦ą„‡ą¤¹ą¤°ą¤¾ą¤¦ą„‚ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(81581, 'https://ror.org/01v637s67', 'en', 1, 'https://ror.org/01v637s67 Prion Alliance'),
(81582, 'https://ror.org/01v676463', 'fr', 1, 'https://ror.org/01v676463 HƓpitaux Universitaires Paris-Ouest'),
(81583, 'https://ror.org/01v67yq30', 'en', 1, 'https://ror.org/01v67yq30 Nephrology Center of Maryland'),
(81584, 'https://ror.org/01v7jw115', 'en', 1, 'https://ror.org/01v7jw115 T''Sou-ke First Nation'),
(81585, 'https://ror.org/01vacm368', 'en', 1, 'https://ror.org/01vacm368 Laerdal Foundation'),
(81586, 'https://ror.org/01vbw1f94', 'en', 1, 'https://ror.org/01vbw1f94 Academy of Medical Sciences of Bosnia and Herzegovina'),
(81587, 'https://ror.org/01vf0ya40', 'en', 1, 'https://ror.org/01vf0ya40 I.S. Lupinovich Belarus Agricultural Library Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń библиотека им. И. Š”. Š›ŃƒŠæŠøŠ½Š¾Š²ŠøŃ‡Š°'),
(81588, 'https://ror.org/01vf7he45', 'en', 1, 'https://ror.org/01vf7he45 Pirkanmaa Hospital District Pirkanmaan Sairaanhoitopiiri'),
(81589, 'https://ror.org/01vgedw83', 'en', 1, 'https://ror.org/01vgedw83 Russian Dialysis Society Российское Гиализное общество'),
(81590, 'https://ror.org/01vj3cz23', 'en', 1, 'https://ror.org/01vj3cz23 Dokkyo University ēØå”å¤§å­¦'),
(81591, 'https://ror.org/01vknre37', 'en', 1, 'https://ror.org/01vknre37 Department of Ecology and Environment of Hainan Province ęµ·å—ēœē”Ÿę€ēŽÆå¢ƒåŽ…'),
(81592, 'https://ror.org/01vmqaq17', 'en', 1, 'https://ror.org/01vmqaq17 Norsk institutt for bƦrekraftsforskning AS Norwegian Institute for Sustainability Research'),
(81593, 'https://ror.org/01vnc0w82', 'en', 1, 'https://ror.org/01vnc0w82 AVA – Academy of Visual Arts AVA – Akademija za Vizualne Umetnosti'),
(81594, 'https://ror.org/01vny5262', 'no_lang_code', 1, 'https://ror.org/01vny5262 Sensory Cloud (United States)'),
(81595, 'https://ror.org/01vpa9c32', 'en', 1, 'https://ror.org/01vpa9c32 Ehime University Hospital ę„›åŖ›å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(81596, 'https://ror.org/01vqm0433', 'en', 1, 'https://ror.org/01vqm0433 Beaufort County Community College'),
(81597, 'https://ror.org/01vs1wb25', 'en', 1, 'https://ror.org/01vs1wb25 Occupational Cancer Research Centre'),
(81598, 'https://ror.org/01vt69253', 'no_lang_code', 1, 'https://ror.org/01vt69253 Reva Medical (United States)'),
(81599, 'https://ror.org/01vv37n49', 'en', 1, 'https://ror.org/01vv37n49 Wuzhou University ę¢§å·žå­¦é™¢'),
(81600, 'https://ror.org/01vvnn702', 'no_lang_code', 1, 'https://ror.org/01vvnn702 Bühler (Switzerland)'),
(81601, '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'),
(81602, 'https://ror.org/01vxqsk45', 'es', 1, 'https://ror.org/01vxqsk45 INDCRAN'),
(81603, 'https://ror.org/01vzcsc16', 'en', 1, 'https://ror.org/01vzcsc16 Sutter Auburn Faith Hospital'),
(81604, 'https://ror.org/01vztzd79', 'en', 1, 'https://ror.org/01vztzd79 Indian Institute of Science Education and Research Mohali'),
(81605, 'https://ror.org/01w08b546', 'en', 1, 'https://ror.org/01w08b546 Lakeside Labs'),
(81606, 'https://ror.org/01w2zd907', 'en', 1, 'https://ror.org/01w2zd907 Nuffield Health'),
(81607, 'https://ror.org/01w32vs69', 'no_lang_code', 1, 'https://ror.org/01w32vs69 10X Genomics (Sweden)'),
(81608, 'https://ror.org/01w3v1s67', 'en', 1, 'https://ror.org/01w3v1s67 Second Affiliated Hospital of Xinjiang Medical University ę–°ē–†åŒ»ē§‘å¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(81609, 'https://ror.org/01w5vp368', 'en', 1, 'https://ror.org/01w5vp368 Social Welfare Organization Saiseikai Imperial Gift Foundation ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼š'),
(81610, 'https://ror.org/01w7kss51', 'no_lang_code', 1, 'https://ror.org/01w7kss51 Willow Biosciences (Canada)'),
(81611, 'https://ror.org/01w7qz648', 'fr', 1, 'https://ror.org/01w7qz648 HƓpital Notre-Dame Notre-Dame Hospital'),
(81612, 'https://ror.org/01w7v5459', 'en', 1, 'https://ror.org/01w7v5459 National Center for Spinal Disorders OrszÔgos GerincgyógyÔszati Központ'),
(81613, 'https://ror.org/01w88hp45', 'en', 1, 'https://ror.org/01w88hp45 Department for Levelling Up, Housing & Communities'),
(81614, 'https://ror.org/01way3b03', 'en', 1, 'https://ror.org/01way3b03 Florida Department of Health in Orange County'),
(81615, 'https://ror.org/01wc0pn13', 'no_lang_code', 1, 'https://ror.org/01wc0pn13 OWL (Spain)'),
(81616, 'https://ror.org/01wc2tq75', 'no_lang_code', 1, 'https://ror.org/01wc2tq75 Kogakuin University 巄学院大学'),
(81617, 'https://ror.org/01wcaw014', 'fr', 1, 'https://ror.org/01wcaw014 Centre de Recherche sur les Liens Sociaux'),
(81618, 'https://ror.org/01wctk517', 'en', 1, 'https://ror.org/01wctk517 Institute of Urology of the National Academy of Medical Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŃ€Š¾Š»Š¾Š³Ń–Ń— ŠŠŠœŠ України'),
(81619, 'https://ror.org/01wdt4y78', 'es', 1, 'https://ror.org/01wdt4y78 Scientific and Technical Central Units Unidades Centrales Cientƭfico-TƩcnicas'),
(81620, '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'),
(81621, 'https://ror.org/01wgn9x88', 'en', 1, 'https://ror.org/01wgn9x88 North Pacific Anadromous Fish Commission'),
(81622, 'https://ror.org/01whwkf30', 'pt', 1, 'https://ror.org/01whwkf30 Instituto Butantan, Instituto Butantã'),
(81623, 'https://ror.org/01wkx4e61', 'en', 1, 'https://ror.org/01wkx4e61 NARD Institute ę Ŗå¼ä¼šē¤¾ćƒŠćƒ¼ćƒ‰ē ”ē©¶ę‰€'),
(81624, 'https://ror.org/01wq2p249', 'en', 1, 'https://ror.org/01wq2p249 Guangdong Polytechnic of Science and Technology å¹æäøœē§‘å­¦ęŠ€ęœÆčŒäøšå­¦é™¢'),
(81625, 'https://ror.org/01wqp5678', 'no_lang_code', 1, 'https://ror.org/01wqp5678 Obstech (Chile)'),
(81626, 'https://ror.org/01wrf3k61', 'en', 1, 'https://ror.org/01wrf3k61 Zhejiang Academy of Social Sciences ęµ™ę±Ÿēœē¤¾ä¼šē§‘å­¦é™¢'),
(81627, 'https://ror.org/01ws75306', 'en', 1, 'https://ror.org/01ws75306 China Automotive Battery Research Institute å›½č”ę±½č½¦åŠØåŠ›ē”µę± ē ”ē©¶é™¢'),
(81628, 'https://ror.org/01wspv808', 'en', 1, 'https://ror.org/01wspv808 Norfolk and Norwich University Hospitals NHS Foundation Trust'),
(81629, 'https://ror.org/01wtczc25', 'es', 1, 'https://ror.org/01wtczc25 Universidad Internacional de Ciencia y TecnologĆ­a - UNICyT'),
(81630, 'https://ror.org/01wwwqd52', 'en', 1, 'https://ror.org/01wwwqd52 National Clonal Germplasm Repository'),
(81631, 'https://ror.org/01wx1q736', 'en', 1, 'https://ror.org/01wx1q736 Kryvyi Rih State Pedagogical University ŠšŃ€ŠøŠ²Š¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(81632, 'https://ror.org/01wxh6v83', 'en', 1, 'https://ror.org/01wxh6v83 Singapore Institute of Management ę–°åŠ å”ē®”ē†å­¦é™¢'),
(81633, 'https://ror.org/01wykjh49', 'sv', 1, 'https://ror.org/01wykjh49 VƤstergƶtlands Museum'),
(81634, 'https://ror.org/01x0e6k76', 'en', 1, 'https://ror.org/01x0e6k76 Montefiore Health System'),
(81635, 'https://ror.org/01x1qyv30', 'en', 1, 'https://ror.org/01x1qyv30 Istituto Tethys ONLUS Tethys Research Institute'),
(81636, 'https://ror.org/01x29j481', 'no_lang_code', 1, 'https://ror.org/01x29j481 Samsung (Japan) ę Ŗå¼ä¼šē¤¾ć‚µćƒ ć‚¹ćƒ³ę—„ęœ¬ē ”ē©¶ę‰€'),
(81637, 'https://ror.org/01x2x1522', 'en', 1, 'https://ror.org/01x2x1522 Forskningsinstitutet fƶr Fysik Fysiikan Tutkimuslaitos Helsinki Institute of Physics'),
(81638, 'https://ror.org/01x3p5p96', 'no_lang_code', 1, 'https://ror.org/01x3p5p96 Rolls-Royce (Canada)'),
(81639, 'https://ror.org/01x3t1868', 'en', 1, 'https://ror.org/01x3t1868 Saint Paul University UniversitƩ Saint-Paul'),
(81640, 'https://ror.org/01x500w59', 'en', 1, 'https://ror.org/01x500w59 Flexible Learning Association of New Zealand'),
(81641, 'https://ror.org/01x53gx71', 'no_lang_code', 1, 'https://ror.org/01x53gx71 StaGen (Japan) ę Ŗå¼ä¼šē¤¾ć‚¹ć‚æćƒ¼ć‚øć‚§ćƒ³'),
(81642, 'https://ror.org/01x5qb890', 'en', 1, 'https://ror.org/01x5qb890 Commonwealth Health Research Board'),
(81643, 'https://ror.org/01x7kw596', 'en', 1, 'https://ror.org/01x7kw596 Royal Australian and New Zealand College of Radiologists'),
(81644, 'https://ror.org/01x81nn04', 'en', 1, 'https://ror.org/01x81nn04 Department of Aerospace Science and Technology'),
(81645, 'https://ror.org/01x8rc503', 'en', 1, 'https://ror.org/01x8rc503 University of Louisiana at Lafayette UniversitƩ de louisiane Ơ lafayette'),
(81646, 'https://ror.org/01x9fwa61', 'en', 1, 'https://ror.org/01x9fwa61 Antibiotic Research UK'),
(81647, 'https://ror.org/01xaj4023', 'no_lang_code', 1, 'https://ror.org/01xaj4023 CDM Smith (Australia)'),
(81648, 'https://ror.org/01xbp4f63', 'en', 1, 'https://ror.org/01xbp4f63 Botkin Hospital Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° имени Š”. П. Боткина'),
(81649, 'https://ror.org/01xbsne82', 'en', 1, 'https://ror.org/01xbsne82 Bakrie University Universitas Bakrie'),
(81650, 'https://ror.org/01xcd2w79', 'en', 1, 'https://ror.org/01xcd2w79 Flathead National Forest'),
(81651, 'https://ror.org/01xcjmy57', 'it', 1, 'https://ror.org/01xcjmy57 Istituto Oncologico Veneto Veneto Institute of Oncology'),
(81652, 'https://ror.org/01xdzh226', 'en', 1, 'https://ror.org/01xdzh226 Beijing Electronic Science and Technology Institute åŒ—äŗ¬ē”µå­ē§‘ęŠ€å­¦é™¢'),
(81653, 'https://ror.org/01xe5fb92', 'en', 1, 'https://ror.org/01xe5fb92 University of Gujrat جامعہ ŚÆŲ¬Ų±Ų§ŲŖ'),
(81654, 'https://ror.org/01xe8ky38', 'en', 1, 'https://ror.org/01xe8ky38 International Performance Research Institute'),
(81655, 'https://ror.org/01xesb955', 'en', 1, 'https://ror.org/01xesb955 BC Children''s Hospital Foundation'),
(81656, 'https://ror.org/01xfrxk65', 'en', 1, 'https://ror.org/01xfrxk65 California Geological Survey'),
(81657, 'https://ror.org/01xgs3376', 'en', 1, 'https://ror.org/01xgs3376 American College of Medical Toxicology'),
(81658, 'https://ror.org/01xm4wg91', 'no_lang_code', 1, 'https://ror.org/01xm4wg91 Moderna Therapeutics (United States)'),
(81659, 'https://ror.org/01xnhsa91', 'en', 1, 'https://ror.org/01xnhsa91 Center for Construction Research and Training'),
(81660, 'https://ror.org/01xnrs054', 'en', 1, 'https://ror.org/01xnrs054 Western Indian Ocean Marine Science Association'),
(81661, 'https://ror.org/01xqjjn94', 'en', 1, 'https://ror.org/01xqjjn94 Software Engineering Institute'),
(81662, 'https://ror.org/01xs36937', 'en', 1, 'https://ror.org/01xs36937 Institute for Protein Innovation'),
(81663, 'https://ror.org/01xv1wj76', 'en', 1, 'https://ror.org/01xv1wj76 Nuclear Waste Management Organization'),
(81664, 'https://ror.org/01xwwg551', 'en', 1, 'https://ror.org/01xwwg551 Altlabs'),
(81665, 'https://ror.org/01xx4fy37', 'en', 1, 'https://ror.org/01xx4fy37 Agricultural Marketing Service'),
(81666, 'https://ror.org/01xze8742', 'en', 1, 'https://ror.org/01xze8742 Toscana Life Sciences'),
(81667, 'https://ror.org/01xzwj424', 'en', 1, 'https://ror.org/01xzwj424 HTW Berlin - University of Applied Sciences Hochschule für Technik und Wirtschaft Berlin'),
(81668, 'https://ror.org/01y1b1844', 'en', 1, 'https://ror.org/01y1b1844 Institute of Artificial Intelligence Problems Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠ‘Š›Š•Šœ ŠØŠ¢Š£Š§ŠŠžŠ“Šž Š†ŠŠ¢Š•Š›Š•ŠšŠ¢Š£'),
(81669, 'https://ror.org/01y20q665', 'no_lang_code', 1, 'https://ror.org/01y20q665 China National Biotechnology (China) äø­å›½ē”Ÿē‰©ęŠ€ęœÆ'),
(81670, 'https://ror.org/01y280z29', 'es', 1, 'https://ror.org/01y280z29 National University of Barranca Universidad Nacional de Barranca'),
(81671, 'https://ror.org/01y3dkx74', 'en', 1, 'https://ror.org/01y3dkx74 International Institute of Molecular and Cell Biology'),
(81672, 'https://ror.org/01y5va805', 'en', 1, 'https://ror.org/01y5va805 Domestic Nuclear Detection Office'),
(81673, 'https://ror.org/01y6jsg53', 'en', 1, 'https://ror.org/01y6jsg53 Tennessee Valley Authority'),
(81674, 'https://ror.org/01y85ge33', 'fr', 1, 'https://ror.org/01y85ge33 Centre de Linguistique Inter-langues, de Lexicologie, de Linguistique Anglaise et de Corpus-Atelier de Recherche sur la Parole'),
(81675, 'https://ror.org/01yb3sb52', 'en', 1, 'https://ror.org/01yb3sb52 Aerospace Center Hospital čˆŖå¤©äø­åæƒåŒ»é™¢'),
(81676, 'https://ror.org/01ybtyf05', 'no_lang_code', 1, 'https://ror.org/01ybtyf05 Ishihara Sangyo Kaisha (Japan) ēŸ³åŽŸē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(81677, 'https://ror.org/01yhex183', 'en', 1, 'https://ror.org/01yhex183 Gothenburg Natural History Museum Gƶteborgs Naturhistoriska Museum'),
(81678, 'https://ror.org/01yhkc229', 'no_lang_code', 1, 'https://ror.org/01yhkc229 Nitric Oxide Services (United States)'),
(81679, 'https://ror.org/01yhp8t49', 'es', 1, 'https://ror.org/01yhp8t49 Fundación Renacer'),
(81680, 'https://ror.org/01yhs3994', 'no_lang_code', 1, 'https://ror.org/01yhs3994 Saaz Genetics (India)'),
(81681, 'https://ror.org/01yj9wj22', 'fr', 1, 'https://ror.org/01yj9wj22 CollĆØge LaflĆØche'),
(81682, 'https://ror.org/01yjhny41', 'en', 1, 'https://ror.org/01yjhny41 Northeast Amyotrophic Lateral Sclerosis Consortium'),
(81683, 'https://ror.org/01ykn4490', 'en', 1, 'https://ror.org/01ykn4490 NIHR Leeds In Vitro Diagnostics Co-operative'),
(81684, 'https://ror.org/01yt2j759', 'en', 1, 'https://ror.org/01yt2j759 De Vlinderstichting Dutch Butterfly Conservation'),
(81685, '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'),
(81686, 'https://ror.org/01ytd2n62', 'no_lang_code', 1, 'https://ror.org/01ytd2n62 California Institute of Behavioral Neurosciences and Psychology (United States)'),
(81687, 'https://ror.org/01ywwb722', 'no_lang_code', 1, 'https://ror.org/01ywwb722 LipidALL Technologies (China) åøøå·žäø­ē§‘č„‚å…øē”Ÿē‰©ęŠ€ęœÆ'),
(81688, 'https://ror.org/01yys9r78', 'fr', 1, 'https://ror.org/01yys9r78 HƓpital Saint- Camille'),
(81689, 'https://ror.org/01z00wd20', 'en', 1, 'https://ror.org/01z00wd20 Victorian Cancer Biobank'),
(81690, 'https://ror.org/01z03am77', 'en', 1, 'https://ror.org/01z03am77 Sichuan Provincial Library å››å·ēœå›¾ä¹¦é¦†'),
(81691, 'https://ror.org/01z0h5j41', 'no_lang_code', 1, 'https://ror.org/01z0h5j41 Sunrise Medical (United States)'),
(81692, 'https://ror.org/01z0wsw92', 'en', 1, 'https://ror.org/01z0wsw92 European Medicines Agency'),
(81693, 'https://ror.org/01z1bz177', 'en', 1, 'https://ror.org/01z1bz177 US Climate Variability and Predictability Program'),
(81694, 'https://ror.org/01z1gye03', 'en', 1, 'https://ror.org/01z1gye03 Institute for Research in Biomedicine'),
(81695, 'https://ror.org/01z2gz488', 'en', 1, 'https://ror.org/01z2gz488 Tibor Rubin VA Medical Center'),
(81696, 'https://ror.org/01z2px678', 'en', 1, 'https://ror.org/01z2px678 International Centre for Theoretical Physics Asia-Pacific å›½é™…ē†č®ŗē‰©ē†äø­åæƒ-亚太地区'),
(81697, 'https://ror.org/01z472y92', 'es', 1, 'https://ror.org/01z472y92 Laboratorio Costarricense de MetrologĆ­a'),
(81698, 'https://ror.org/01z4e5797', 'en', 1, 'https://ror.org/01z4e5797 University of Travnik Univerzitet u Travniku'),
(81699, 'https://ror.org/01z4jpw82', 'no_lang_code', 1, 'https://ror.org/01z4jpw82 Rigaku (Japan) ę Ŗå¼ä¼šē¤¾ćƒŖć‚¬ć‚Æ'),
(81700, 'https://ror.org/01z71je29', 'no_lang_code', 1, 'https://ror.org/01z71je29 Ampel BioSolutions (United States)'),
(81701, 'https://ror.org/01z7s7j95', 'en', 1, 'https://ror.org/01z7s7j95 Japan Prize Foundation å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē§‘å­¦ęŠ€č”“č²”å›£'),
(81702, 'https://ror.org/01zcq6z67', 'en', 1, 'https://ror.org/01zcq6z67 Eastern Finland Laboratory Center ItƤ-Suomen laboratoriokeskuksen liikelaitoskuntayhtymƤ'),
(81703, 'https://ror.org/01zewfb16', 'en', 1, 'https://ror.org/01zewfb16 Environment Agency'),
(81704, 'https://ror.org/01zqrkn57', 'en', 1, 'https://ror.org/01zqrkn57 Municipal Higher Education Institution "Kherson Academy of Continuing Education" of the Kherson Regional Council Комунальний вищий Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ заклаГ "Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń неперервної освіти" Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠ¾Ń— обласної раГи'),
(81705, 'https://ror.org/01zqrxf85', 'en', 1, 'https://ror.org/01zqrxf85 Institut für Molekulare Biotechnologie Institute of Molecular Biotechnology'),
(81706, 'https://ror.org/01zr1we84', 'en', 1, 'https://ror.org/01zr1we84 Military Academy of the Republic of Belarus Š’Š°ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(81707, 'https://ror.org/01zrh0b92', 'no_lang_code', 1, 'https://ror.org/01zrh0b92 QunaSys'),
(81708, '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'),
(81709, 'https://ror.org/01zvdsy94', 'en', 1, 'https://ror.org/01zvdsy94 American Petroleum Institute'),
(81710, 'https://ror.org/01zwfkr30', 'en', 1, 'https://ror.org/01zwfkr30 Sieć Badawczą Łukasiewicz - Instytut Włókiennictwa Łukasiewicz Research Network - Textile Research Institute'),
(81711, 'https://ror.org/01zwphm70', 'no_lang_code', 1, 'https://ror.org/01zwphm70 Yokohama Rubber (Japan) ęØŖęµœć‚“ćƒ ę Ŗå¼ä¼šē¤¾'),
(81712, 'https://ror.org/01zyxxv05', 'en', 1, 'https://ror.org/01zyxxv05 Rippe Health'),
(81713, 'https://ror.org/0201hm243', 'en', 1, 'https://ror.org/0201hm243 Phenomics Australia'),
(81714, 'https://ror.org/0202bj006', 'en', 1, 'https://ror.org/0202bj006 Sheng Jing Hospital äø­å›½åŒ»ē§‘å¤§å­¦é™„å±žē››äŗ¬åŒ»é™¢'),
(81715, 'https://ror.org/0205jhq31', 'en', 1, 'https://ror.org/0205jhq31 North Pacific Marine Science Organization'),
(81716, 'https://ror.org/02077tq87', 'no_lang_code', 1, 'https://ror.org/02077tq87 LinXis Biopharmaceuticals (Netherlands)'),
(81717, 'https://ror.org/0207xnr07', 'de', 1, 'https://ror.org/0207xnr07 Hirslanden Klinik Stephanshorn'),
(81718, 'https://ror.org/020853v42', 'no_lang_code', 1, 'https://ror.org/020853v42 Bureau Waardenburg (Netherlands)'),
(81719, 'https://ror.org/020aczd56', 'en', 1, 'https://ror.org/020aczd56 Flinders Medical Centre'),
(81720, 'https://ror.org/020bbbm37', 'no_lang_code', 1, 'https://ror.org/020bbbm37 Sprint PNS System (United States)'),
(81721, 'https://ror.org/020beq690', 'es', 1, 'https://ror.org/020beq690 Observatorio de la Inmigración de Tenerife'),
(81722, 'https://ror.org/020en6283', 'en', 1, 'https://ror.org/020en6283 NHS Research Scotland'),
(81723, 'https://ror.org/020ff7c13', 'en', 1, 'https://ror.org/020ff7c13 Kurita Water and Environment Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚ÆćƒŖć‚æę°“ćƒ»ē’°å¢ƒē§‘å­¦ęŒÆčˆˆč²”å›£'),
(81724, 'https://ror.org/020fy4d02', 'en', 1, 'https://ror.org/020fy4d02 Hartford Foundation for Public Giving'),
(81725, 'https://ror.org/020jy7109', 'en', 1, 'https://ror.org/020jy7109 CTA Observatory'),
(81726, 'https://ror.org/020jz5y49', 'en', 1, 'https://ror.org/020jz5y49 Ilembula Lutheran Hospital'),
(81727, 'https://ror.org/020kg7297', 'no_lang_code', 1, 'https://ror.org/020kg7297 Kolej Poly-Tech MARA'),
(81728, 'https://ror.org/020mpkg22', 'en', 1, 'https://ror.org/020mpkg22 Kriminalomsorgens hĆøgskole og utdanningssenter KRUS University College of Norwegian Correctional Service'),
(81729, 'https://ror.org/020n3fw10', 'en', 1, 'https://ror.org/020n3fw10 Fraunhofer Institute for Photonic Microsystems Fraunhofer-Institut für Photonische Mikrosysteme'),
(81730, 'https://ror.org/020p3h829', 'en', 1, 'https://ror.org/020p3h829 University of Occupational and Environmental Health Japan ē”£ę„­åŒ»ē§‘å¤§å­¦'),
(81731, 'https://ror.org/020pjpv69', 'en', 1, 'https://ror.org/020pjpv69 Toin University of Yokohama ę”č”­ęØŖęµœå¤§å­¦'),
(81732, 'https://ror.org/020prvv72', 'en', 1, 'https://ror.org/020prvv72 Academic Pediatric Association'),
(81733, 'https://ror.org/020qywr37', 'de', 1, 'https://ror.org/020qywr37 Hirslanden Klinik Permanence'),
(81734, 'https://ror.org/020rkr389', 'en', 1, 'https://ror.org/020rkr389 Guangxi Academy of Agricultural Science å¹æč„æå£®ę—č‡Ŗę²»åŒŗå†œäøšē§‘å­¦é™¢'),
(81735, 'https://ror.org/020tdv696', 'en', 1, 'https://ror.org/020tdv696 World Wildlife Fund Canada'),
(81736, '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'),
(81737, 'https://ror.org/020vtf184', 'en', 1, 'https://ror.org/020vtf184 Songshan Lake Materials Laboratory ę¾å±±ę¹–ęę–™å®žéŖŒå®¤'),
(81738, 'https://ror.org/020wfwe51', 'en', 1, 'https://ror.org/020wfwe51 Convergence Research Center for Diagnosis Treatment and Care System of Dementia'),
(81739, 'https://ror.org/020xg4k98', 'no_lang_code', 1, 'https://ror.org/020xg4k98 Phyzen (South Korea) ķŒŒģ“ģ  '),
(81740, 'https://ror.org/020yb3m85', 'ca', 1, 'https://ror.org/020yb3m85 Biomedical Research Institute of Girona Institut d''Investigació Biomèdica de Girona'),
(81741, 'https://ror.org/020yfz786', 'en', 1, 'https://ror.org/020yfz786 European University Association'),
(81742, 'https://ror.org/020yz7110', 'en', 1, 'https://ror.org/020yz7110 SME'),
(81743, 'https://ror.org/020zjmd13', 'en', 1, 'https://ror.org/020zjmd13 Central Arizona–Phoenix Long Term Ecological Research'),
(81744, 'https://ror.org/0210gge93', 'en', 1, 'https://ror.org/0210gge93 Asociación científica ICONO 14 Scientific Association ICONO 14'),
(81745, 'https://ror.org/0210mc841', 'en', 1, 'https://ror.org/0210mc841 Canada Health Infoway'),
(81746, 'https://ror.org/02124w065', 'es', 1, 'https://ror.org/02124w065 Instituto Oncológico Henry Moore'),
(81747, 'https://ror.org/0212jcf64', 'en', 1, 'https://ror.org/0212jcf64 Hubei University of Arts and Science ę¹–åŒ—ę–‡ē†å­¦é™¢'),
(81748, 'https://ror.org/0213nv371', 'no_lang_code', 1, 'https://ror.org/0213nv371 ViewRay (United States)'),
(81749, 'https://ror.org/02159rn29', 'en', 1, 'https://ror.org/02159rn29 Kenozero National Park ŠšŠµŠ½Š¾Š·ŠµŃ€ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк'),
(81750, 'https://ror.org/02170ek39', 'en', 1, 'https://ror.org/02170ek39 Fairfield Medical Center'),
(81751, 'https://ror.org/0219e9162', 'de', 1, 'https://ror.org/0219e9162 Institut für Forensische Genetik'),
(81752, 'https://ror.org/0219p8s51', 'en', 1, 'https://ror.org/0219p8s51 America''s Essential Hospitals'),
(81753, 'https://ror.org/021a26605', 'en', 1, 'https://ror.org/021a26605 Tokyo University of Technology ę±äŗ¬å·„ē§‘å¤§å­¦'),
(81754, 'https://ror.org/021a3gb32', 'en', 1, 'https://ror.org/021a3gb32 Nizhny Novgorod Academy of the Ministry of Internal Affairs of Russia ŠŠ˜Š–Š•Š“ŠžŠ ŠžŠ”Š”ŠšŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(81755, 'https://ror.org/021gxf250', 'en', 1, 'https://ror.org/021gxf250 Virtual Library of Virginia'),
(81756, 'https://ror.org/021h56y19', 'en', 1, 'https://ror.org/021h56y19 California Air Resources Board Junta de Recursos del Aire de California'),
(81757, 'https://ror.org/021hkf372', 'en', 1, 'https://ror.org/021hkf372 British Cardiovascular Society'),
(81758, 'https://ror.org/021jqe068', 'en', 1, 'https://ror.org/021jqe068 Christian Sarkine Autism Treatment Center'),
(81759, 'https://ror.org/021jt1927', 'en', 1, 'https://ror.org/021jt1927 University of Hafr Al-Batin Ų¬Ų§Ł…Ų¹Ų© حفرالباطن'),
(81760, 'https://ror.org/021m4ta35', 'en', 1, 'https://ror.org/021m4ta35 Koen Gakuen Women''s Junior College å…‰å”©å­¦åœ’å„³å­ēŸ­ęœŸå¤§å­¦'),
(81761, 'https://ror.org/021nszj63', 'en', 1, 'https://ror.org/021nszj63 Research Academic Computer Technology Institute'),
(81762, 'https://ror.org/021p8a188', 'en', 1, 'https://ror.org/021p8a188 Ministry of Economy ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ за економија'),
(81763, 'https://ror.org/021ph5e41', 'en', 1, 'https://ror.org/021ph5e41 Tokushima University Hospital 徳島大学病院'),
(81764, 'https://ror.org/021r6aq66', 'en', 1, 'https://ror.org/021r6aq66 Josai University åŸŽč„æå¤§å­¦'),
(81765, 'https://ror.org/021tq1e57', 'fr', 1, 'https://ror.org/021tq1e57 Office National de la Chasse et de la Faune Sauvage'),
(81766, 'https://ror.org/021ts2b34', 'en', 1, 'https://ror.org/021ts2b34 Brazilian Research in Intensive Care Network Rede Brasileira de Pesquisa em Terapia Intensiva'),
(81767, 'https://ror.org/021vwwp80', 'en', 1, 'https://ror.org/021vwwp80 Russian Foreign Trade Academy Š’ŃŠµŃ€Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ внешней торговли'),
(81768, 'https://ror.org/021wm5f70', 'no_lang_code', 1, 'https://ror.org/021wm5f70 Lundin (Norway)'),
(81769, 'https://ror.org/021wyrx76', 'no_lang_code', 1, 'https://ror.org/021wyrx76 Faraday Technology (Taiwan) ę™ŗåŽŸē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(81770, 'https://ror.org/021xbwv17', 'en', 1, 'https://ror.org/021xbwv17 National Economics University ĐẔi hį»c Kinh tįŗæ Quốc dĆ¢n'),
(81771, 'https://ror.org/021xwy741', 'no_lang_code', 1, 'https://ror.org/021xwy741 Clover Biopharmaceuticals (China)'),
(81772, 'https://ror.org/02211g273', 'no_lang_code', 1, 'https://ror.org/02211g273 Agrisearch (United Kingdom)'),
(81773, 'https://ror.org/02218z997', 'en', 1, 'https://ror.org/02218z997 Royal Brompton & Harefield NHS Foundation Trust'),
(81774, 'https://ror.org/0221sax75', 'en', 1, 'https://ror.org/0221sax75 Diabetesforbundet Norwegian Diabetes Association'),
(81775, 'https://ror.org/02223wv31', 'en', 1, 'https://ror.org/02223wv31 Edward Hines, Jr. VA Hospital'),
(81776, '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'),
(81777, 'https://ror.org/0223bz716', 'fr', 1, 'https://ror.org/0223bz716 Laboratoire de Linguistique Formelle'),
(81778, 'https://ror.org/0226k0909', 'en', 1, 'https://ror.org/0226k0909 Joint Institute for Power and Nuclear Research Аб''ŃŠ“Š½Š°Š½Ń‹ Ń–Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚Ń‹Ń‡Š½Ń‹Ń… і ŃŠ“Š·ŠµŃ€Š½Ń‹Ń… Š“Š°ŃŠ»ŠµŠ“Š°Š²Š°Š½Š½ŃŃž'),
(81779, 'https://ror.org/022715v20', 'en', 1, 'https://ror.org/022715v20 I-Form Advanced Manufacturing Research Centre'),
(81780, 'https://ror.org/0228drn10', 'en', 1, 'https://ror.org/0228drn10 Boston Collaborative Drug Surveillance Program'),
(81781, 'https://ror.org/022ah1092', 'en', 1, 'https://ror.org/022ah1092 Borowiec Astrogeodynamic Observatory Obserwatorium Astrogeodynamiczne w Borówcu'),
(81782, 'https://ror.org/022akpv96', 'en', 1, 'https://ror.org/022akpv96 Delhi Pharmaceutical Science and Research University'),
(81783, 'https://ror.org/022fhzr29', 'en', 1, 'https://ror.org/022fhzr29 Arizona Research Center'),
(81784, 'https://ror.org/022g31s87', 'en', 1, 'https://ror.org/022g31s87 British Society for Heart Failure'),
(81785, 'https://ror.org/022ght635', 'en', 1, 'https://ror.org/022ght635 Forest History Society'),
(81786, 'https://ror.org/022kw3738', 'it', 1, 'https://ror.org/022kw3738 Centro Ricerche Musicali'),
(81787, 'https://ror.org/022mcyh62', 'no_lang_code', 1, 'https://ror.org/022mcyh62 Translational Research Informatics Center (Japan) åŒ»ē™‚ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(81788, 'https://ror.org/022n6je18', 'en', 1, 'https://ror.org/022n6je18 Adolescent Health Clinic'),
(81789, 'https://ror.org/022p86748', 'en', 1, 'https://ror.org/022p86748 GW4 Facility for High-Resolution Electron Cryo-Microscopy'),
(81790, 'https://ror.org/022s42002', 'no_lang_code', 1, 'https://ror.org/022s42002 Elasmo Project'),
(81791, 'https://ror.org/022vba633', 'pt', 1, 'https://ror.org/022vba633 Associação de Assistência à Criança Deficiente'),
(81792, 'https://ror.org/022x6b873', 'fr', 1, 'https://ror.org/022x6b873 SociƩtƩ FranƧaise de MƩdecine d''Urgence'),
(81793, 'https://ror.org/022x94962', 'en', 1, 'https://ror.org/022x94962 Global Campus of Human Rights'),
(81794, 'https://ror.org/022zce303', 'no_lang_code', 1, 'https://ror.org/022zce303 Cordlife (Singapore)'),
(81795, 'https://ror.org/022zhm372', 'de', 1, 'https://ror.org/022zhm372 Paracelsus Medizinische PrivatuniversitƤt'),
(81796, 'https://ror.org/02319f413', 'no_lang_code', 1, 'https://ror.org/02319f413 RayBiotech (United States)'),
(81797, 'https://ror.org/0231f9890', 'no_lang_code', 1, 'https://ror.org/0231f9890 BSH HausgerƤte (Germany)'),
(81798, 'https://ror.org/0231j0n41', 'no_lang_code', 1, 'https://ror.org/0231j0n41 Sibel (United States)'),
(81799, 'https://ror.org/0232dj695', 'en', 1, 'https://ror.org/0232dj695 Rotterdam Stroke Service'),
(81800, 'https://ror.org/0232eqz57', 'en', 1, 'https://ror.org/0232eqz57 Slovenian Forestry Institute'),
(81801, 'https://ror.org/023392c84', 'de', 1, 'https://ror.org/023392c84 Musikwissenschaftliches Seminar Detmold/Paderborn'),
(81802, 'https://ror.org/0233zkc29', 'en', 1, 'https://ror.org/0233zkc29 Mid America Regional Council'),
(81803, 'https://ror.org/023695f46', 'en', 1, 'https://ror.org/023695f46 Broadlawns Medical Center'),
(81804, 'https://ror.org/0236m0438', 'en', 1, 'https://ror.org/0236m0438 Hawaii Academy of Science'),
(81805, 'https://ror.org/023azqp90', 'en', 1, 'https://ror.org/023azqp90 Academy of Management of the Interior Ministry of Russia ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ Š£ŠŸŠ ŠŠ’Š›Š•ŠŠ˜ŠÆ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(81806, 'https://ror.org/023azs158', 'en', 1, 'https://ror.org/023azs158 ICAR Research Complex for NEH Region'),
(81807, 'https://ror.org/023b5wm02', 'no_lang_code', 1, 'https://ror.org/023b5wm02 Kraken Systems (Croatia)'),
(81808, 'https://ror.org/023dg6y22', 'no_lang_code', 1, 'https://ror.org/023dg6y22 Seven Past Nine'),
(81809, 'https://ror.org/023dm3d04', 'en', 1, 'https://ror.org/023dm3d04 Simons Center for Geometry and Physics'),
(81810, 'https://ror.org/023e0em87', 'en', 1, 'https://ror.org/023e0em87 Centre for International Governance Innovation'),
(81811, 'https://ror.org/023ej5c96', 'no_lang_code', 1, 'https://ror.org/023ej5c96 GSI Environmental (United States)'),
(81812, 'https://ror.org/023g38a24', 'no_lang_code', 1, 'https://ror.org/023g38a24 Universal Printing House "Alpha Print" (Russia) Š£Š½ŠøŠ²ŠµŃ€ŃŠ°Š»ŃŒŠ½Š°Ń Š¢ŠøŠæŠ¾Š³Ń€Š°Ń„ŠøŃ Ā«ŠŠ»ŃŒŃ„Š° ŠŸŃ€ŠøŠ½Ń‚Ā»'),
(81813, 'https://ror.org/023g86t37', 'no_lang_code', 1, 'https://ror.org/023g86t37 Toyota Motor Corporation (Belgium)'),
(81814, 'https://ror.org/023g8mz36', 'en', 1, 'https://ror.org/023g8mz36 Wild Chimpanzee Foundation'),
(81815, 'https://ror.org/023kjn321', 'en', 1, 'https://ror.org/023kjn321 Qazvin Islamic Azad University دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł‚Ų²ŁˆŪŒŁ†'),
(81816, 'https://ror.org/023kmfd49', 'en', 1, 'https://ror.org/023kmfd49 Massachusetts Audubon Society'),
(81817, 'https://ror.org/023pvpj39', 'no_lang_code', 1, 'https://ror.org/023pvpj39 Regen Network (Argentina)'),
(81818, 'https://ror.org/023q8n217', 'en', 1, 'https://ror.org/023q8n217 ENEA Centro Ricerche Trisaia ENEA Trisaia Research Centre'),
(81819, 'https://ror.org/023qavy03', 'en', 1, 'https://ror.org/023qavy03 Baruch College'),
(81820, 'https://ror.org/023qc4a07', 'en', 1, 'https://ror.org/023qc4a07 Hubrecht Institute for Developmental Biology and Stem Cell Research Hubrecht-Instituut'),
(81821, 'https://ror.org/023syz457', 'en', 1, 'https://ror.org/023syz457 KidsOR'),
(81822, 'https://ror.org/023tqc074', 'en', 1, 'https://ror.org/023tqc074 Yanet Health College'),
(81823, 'https://ror.org/023vqza20', 'en', 1, 'https://ror.org/023vqza20 Medanta The Medicity'),
(81824, 'https://ror.org/023w5bf45', 'en', 1, 'https://ror.org/023w5bf45 Romodanov Neurosurgery Institute of the National Academy of Medical Sciences of Ukraine РомоГанова Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠµŠ¹Ń€Š¾Ń…Ń–Ń€ŃƒŃ€Š³Ń–Ń— ŠŠŠœŠ України'),
(81825, 'https://ror.org/023x0pn29', 'en', 1, 'https://ror.org/023x0pn29 Kobe Design University ē„žęˆøčŠøč”“å·„ē§‘å¤§å­¦'),
(81826, 'https://ror.org/023yqa482', 'no_lang_code', 1, 'https://ror.org/023yqa482 Symrise (Germany)'),
(81827, 'https://ror.org/02403s062', 'en', 1, 'https://ror.org/02403s062 Zaporizhzhya Institute of Economics and Information Technologies Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Економіки та Інформаційних Технологій'),
(81828, 'https://ror.org/02428c123', 'en', 1, 'https://ror.org/02428c123 American Academy of Addiction Psychiatry'),
(81829, 'https://ror.org/0244cxh34', 'no_lang_code', 1, 'https://ror.org/0244cxh34 Gubra (Denmark)'),
(81830, 'https://ror.org/0244nkc36', 'en', 1, 'https://ror.org/0244nkc36 Institute for Economics and Forecasting of the National Academy of Sciences of Ukraine Š“Š¾ŃŃƒŠ“Š°Ń€Ń твенное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ā€œŠ˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Š½ŠøŃ ŠŠŠ Š£ŠŗŃ€Š°ŠøŠ½Ń‹ā€ Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економіки та ŠæŃ€Š¾Š³Š½Š¾Š·ŃƒŠ²Š°Š½Š½Ń ŠŠŠ Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(81831, 'https://ror.org/0244rem06', 'en', 1, 'https://ror.org/0244rem06 Shinshu University äæ”å·žå¤§å­¦'),
(81832, 'https://ror.org/0244ywv94', 'en', 1, 'https://ror.org/0244ywv94 Secretariat of the Pacific Regional Environment Programme'),
(81833, 'https://ror.org/0246m8g89', 'en', 1, 'https://ror.org/0246m8g89 James H. Quillen VA Medical Center'),
(81834, 'https://ror.org/024a6m208', 'en', 1, 'https://ror.org/024a6m208 The Steven G. AYA Cancer Research Fund'),
(81835, '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'),
(81836, 'https://ror.org/024f43q37', 'de', 1, 'https://ror.org/024f43q37 Hannoversche Kinderheilanstalt'),
(81837, 'https://ror.org/024f7an49', 'en', 1, 'https://ror.org/024f7an49 The Korean Urological Association ėŒ€ķ•œė¹„ė‡Øźø°ź³¼ķ•™ķšŒ'),
(81838, 'https://ror.org/024jgsd53', 'no_lang_code', 1, 'https://ror.org/024jgsd53 Arctic Slope Regional (United States)'),
(81839, 'https://ror.org/024kejf30', 'en', 1, 'https://ror.org/024kejf30 Cancer de l''Ovaire Canada Ovarian Cancer Canada'),
(81840, 'https://ror.org/024pz1v04', 'pt', 1, 'https://ror.org/024pz1v04 Federal University of Catalao Universidade Federal de Catalão'),
(81841, 'https://ror.org/024ygae04', 'en', 1, 'https://ror.org/024ygae04 Borno State University'),
(81842, 'https://ror.org/024ykzk09', 'en', 1, 'https://ror.org/024ykzk09 T.H. Shevchenko National University "Chernihiv Colehium" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ "Š§ŠµŃ€Š½Ń–Š³Ń–Š²ŃŃŒŠŗŃ–Š¹ ŠŗŠ¾Š»ŠµŠ³Ń–ŃƒŠ¼" імені Š¢.Š“. Шевченка'),
(81843, 'https://ror.org/024ymtz97', 'de', 1, 'https://ror.org/024ymtz97 Deutsches Historisches Institut London German Historical Institute London'),
(81844, 'https://ror.org/024z17f57', 'en', 1, 'https://ror.org/024z17f57 Missile Defense Agency'),
(81845, 'https://ror.org/025079t78', 'it', 1, 'https://ror.org/025079t78 Regione Siciliana'),
(81846, 'https://ror.org/0252wp173', 'it', 1, 'https://ror.org/0252wp173 Polo d’Innovazione di Genomica'),
(81847, 'https://ror.org/025397a59', 'en', 1, 'https://ror.org/025397a59 China Academy of Space Technology äø­å›½ē©ŗé—“ęŠ€ęœÆē ”ē©¶é™¢'),
(81848, 'https://ror.org/0254bmq54', 'en', 1, 'https://ror.org/0254bmq54 National Center of Neurology and Psychiatry ē„žēµŒē²¾ē„žåŒ»å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(81849, 'https://ror.org/0255nrb80', 'no_lang_code', 1, 'https://ror.org/0255nrb80 Evon (Austria)'),
(81850, 'https://ror.org/02578cn21', 'no_lang_code', 1, 'https://ror.org/02578cn21 Parallel Quantum Solutions (United States)'),
(81851, 'https://ror.org/0257nzs56', 'en', 1, 'https://ror.org/0257nzs56 Wirral Community Health and Care NHS Foundations Trust'),
(81852, 'https://ror.org/0257qw677', 'en', 1, 'https://ror.org/0257qw677 Moscow Automobile and Road Construction State Technical University Московский Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾-Горожный Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(81853, 'https://ror.org/025bmdq34', 'en', 1, 'https://ror.org/025bmdq34 The Family Centre'),
(81854, 'https://ror.org/025e8ht98', 'en', 1, 'https://ror.org/025e8ht98 Portsmouth Public Library'),
(81855, 'https://ror.org/025et0929', 'en', 1, 'https://ror.org/025et0929 San Francisco Estuary Institute'),
(81856, 'https://ror.org/025fkxt31', 'en', 1, 'https://ror.org/025fkxt31 Migration Institute of Finland Siirtolaisuusinstituutti'),
(81857, 'https://ror.org/025fr4535', 'en', 1, 'https://ror.org/025fr4535 Netherlands Graduate Research School of Science, Technology and Modern Culture'),
(81858, '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'),
(81859, 'https://ror.org/025h79t26', 'no_lang_code', 1, 'https://ror.org/025h79t26 University of Peradeniya ą®ŖąÆ‡ą®°ą®¾ą®¤ą®©ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą¶“ą·šą¶»ą·ą¶Æą·™ą¶«ą·’ą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(81860, 'https://ror.org/025h9kw94', 'en', 1, 'https://ror.org/025h9kw94 Asahikawa Medical University ę—­å·åŒ»ē§‘å¤§å­¦'),
(81861, 'https://ror.org/025j46253', 'en', 1, 'https://ror.org/025j46253 Indiana Department of Transportation'),
(81862, 'https://ror.org/025jqxp42', 'no_lang_code', 1, 'https://ror.org/025jqxp42 Verlab (Bosnia and Herzegovina)'),
(81863, 'https://ror.org/025k44790', 'no_lang_code', 1, 'https://ror.org/025k44790 Human Factors (Norway)'),
(81864, 'https://ror.org/025mg0739', 'en', 1, 'https://ror.org/025mg0739 American Society for Biochemistry and Molecular Biology'),
(81865, 'https://ror.org/025mtxh67', 'no_lang_code', 1, 'https://ror.org/025mtxh67 FrieslandCampina (Netherlands)'),
(81866, 'https://ror.org/025nes754', 'en', 1, 'https://ror.org/025nes754 National Clonal Germplasm Repository for Citrus'),
(81867, 'https://ror.org/025qwfz43', 'en', 1, 'https://ror.org/025qwfz43 Geological Survey of Namibia'),
(81868, 'https://ror.org/025sv2d63', 'en', 1, 'https://ror.org/025sv2d63 Meteorological Service Singapore'),
(81869, 'https://ror.org/025sxka56', 'no_lang_code', 1, 'https://ror.org/025sxka56 IBM (Canada)'),
(81870, 'https://ror.org/025t9c657', 'no_lang_code', 1, 'https://ror.org/025t9c657 SK Life Science (United States)'),
(81871, 'https://ror.org/025twjg59', 'en', 1, 'https://ror.org/025twjg59 Berlin Center for Genomics in Biodiversity Research'),
(81872, 'https://ror.org/025z4wz11', 'en', 1, 'https://ror.org/025z4wz11 Northwest General Hospital and Research Center'),
(81873, 'https://ror.org/02618t920', 'en', 1, 'https://ror.org/02618t920 Aids-Hilfe Schweiz Swiss AIDS Federation'),
(81874, 'https://ror.org/02620c122', 'no_lang_code', 1, 'https://ror.org/02620c122 Electro Scientific Industries (United States)'),
(81875, 'https://ror.org/02623eb90', 'en', 1, 'https://ror.org/02623eb90 Astrogeology Science Center'),
(81876, 'https://ror.org/0263xn725', 'en', 1, 'https://ror.org/0263xn725 Wisconsin Academy of Sciences, Arts & Letters'),
(81877, 'https://ror.org/0265wc016', 'en', 1, 'https://ror.org/0265wc016 Canadian Institute for Theoretical Astrophysics Institut canadien d''astrophysique thƩorique'),
(81878, 'https://ror.org/02664zk40', 'en', 1, 'https://ror.org/02664zk40 Inception Institute of Artificial Intelligence'),
(81879, 'https://ror.org/0266t0867', 'no_lang_code', 1, 'https://ror.org/0266t0867 Ogaki Municipal Hospital å¤§åž£åø‚ę°‘ē—…é™¢'),
(81880, 'https://ror.org/02684yk50', 'en', 1, 'https://ror.org/02684yk50 Mataram College of Health Sciences Sekolah Tinggi Ilmu Kesehatan (STIKES) Mataram'),
(81881, 'https://ror.org/026bdsm07', 'no_lang_code', 1, 'https://ror.org/026bdsm07 Scispace (United States)'),
(81882, 'https://ror.org/026bv4494', 'en', 1, 'https://ror.org/026bv4494 St. Bonaventure University Universidad de San Buenaventura UniversitƩ de st. bonaventure'),
(81883, 'https://ror.org/026dvzy54', 'no_lang_code', 1, 'https://ror.org/026dvzy54 ESI Group (Switzerland)'),
(81884, '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'),
(81885, 'https://ror.org/026gatw61', 'en', 1, 'https://ror.org/026gatw61 International Federation of Library Associations and Institutions'),
(81886, 'https://ror.org/026gg3023', 'en', 1, 'https://ror.org/026gg3023 Bruce Museum'),
(81887, 'https://ror.org/026gmbh11', 'en', 1, 'https://ror.org/026gmbh11 Klima- og miljĆødepartementet Ministry of Climate and Environment'),
(81888, 'https://ror.org/026h6vx82', 'en', 1, 'https://ror.org/026h6vx82 AgrƔrminisztƩrium Ministry of Agriculture'),
(81889, 'https://ror.org/026jqvs13', 'en', 1, 'https://ror.org/026jqvs13 Andrews Forest Long Term Ecological Research'),
(81890, 'https://ror.org/026ma2c10', 'fr', 1, 'https://ror.org/026ma2c10 Center for Scientific and Technical Study of Aquitaine Centre d''Ɖtudes Scientifiques et Techniques d''Aquitaine, Centre d''Ć©tudes Scientifiques et Techniques d''Aquitaine'),
(81891, 'https://ror.org/026mr5885', 'en', 1, 'https://ror.org/026mr5885 Republican Center for Healthcare Development Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š»Ń‹Ņ› Š“ŠµŠ½ŃŠ°ŃƒŠ»Ń‹Ņ› ŃŠ°Ņ›Ń‚Š°Ńƒ орталығы'),
(81892, 'https://ror.org/026n4t805', 'en', 1, 'https://ror.org/026n4t805 Greater Worcester Community Foundation'),
(81893, 'https://ror.org/026rga753', 'en', 1, 'https://ror.org/026rga753 Chiba East Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹åƒč‘‰ę±ē—…é™¢'),
(81894, 'https://ror.org/026sw0405', 'en', 1, 'https://ror.org/026sw0405 National Center for Cool and Cold Water Aquaculture'),
(81895, 'https://ror.org/026vtvm28', 'no_lang_code', 1, 'https://ror.org/026vtvm28 Boehringer Ingelheim (Austria)'),
(81896, 'https://ror.org/026x1ah07', 'en', 1, 'https://ror.org/026x1ah07 Virginia Department of Game and Inland Fisheries'),
(81897, 'https://ror.org/026zpz859', 'en', 1, 'https://ror.org/026zpz859 Kaohsiung Armed Forces General Hospital'),
(81898, 'https://ror.org/0270y6950', 'en', 1, 'https://ror.org/0270y6950 Harbin Normal University å“ˆå°”ę»ØåøˆčŒƒå¤§å­¦'),
(81899, 'https://ror.org/027240w39', 'no_lang_code', 1, 'https://ror.org/027240w39 Motorpharma (Hungary)'),
(81900, 'https://ror.org/02730kb35', 'en', 1, 'https://ror.org/02730kb35 Uro Care Hospital'),
(81901, 'https://ror.org/0273ffp90', 'en', 1, 'https://ror.org/0273ffp90 Defence Materiel Administration Fƶrsvarets materielverk'),
(81902, 'https://ror.org/0273vqz67', 'no_lang_code', 1, 'https://ror.org/0273vqz67 Naruto, Tokushima Prefecture hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¾³å³¶ēœŒé³“é–€ē—…é™¢'),
(81903, 'https://ror.org/02747h926', 'en', 1, 'https://ror.org/02747h926 World Cancer Research Fund International'),
(81904, 'https://ror.org/0275dss38', 'en', 1, 'https://ror.org/0275dss38 Hyderabad Rheumatology Center'),
(81905, 'https://ror.org/0275ebj77', 'en', 1, 'https://ror.org/0275ebj77 Federal Railroad Administration'),
(81906, 'https://ror.org/0276pbv69', 'en', 1, 'https://ror.org/0276pbv69 Neurological Institute of Athens ĪĪµĻ…ĻĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(81907, 'https://ror.org/027790w81', 'en', 1, 'https://ror.org/027790w81 Open Data Commons for Spinal Cord Injury'),
(81908, 'https://ror.org/0277xhz50', 'en', 1, 'https://ror.org/0277xhz50 People''s Government of Guangzhou Municipality å¹æå·žåø‚ę”æåŗœ'),
(81909, 'https://ror.org/027951x59', 'en', 1, 'https://ror.org/027951x59 Janbazan Medical and Engineering Research Center Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ł…Ł‡Ł†ŲÆŲ³ŪŒ و Ų¹Ł„ŁˆŁ… پزؓکی جانبازان'),
(81910, 'https://ror.org/0279d5115', 'en', 1, 'https://ror.org/0279d5115 Centre De Recherche Informatique De MontrƩal Computer Research Institute of MontrƩal'),
(81911, 'https://ror.org/027a61038', 'en', 1, 'https://ror.org/027a61038 Shandong Center for Disease Control and Prevention');
INSERT INTO `rors` VALUES
(81912, 'https://ror.org/027abjr46', 'en', 1, 'https://ror.org/027abjr46 Nizhny Novgorod Research Institute of Traumatology and Orthopedics ŠŸŃ€ŠøŠ²Š¾Š»Š¶ŃŠŗŠøŠ¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр'),
(81913, 'https://ror.org/027bh9e22', 'en', 1, 'https://ror.org/027bh9e22 Leiden University Universiteit Leiden'),
(81914, 'https://ror.org/027bkk623', 'en', 1, 'https://ror.org/027bkk623 St John New Zealand'),
(81915, 'https://ror.org/027de2r94', 'id', 1, 'https://ror.org/027de2r94 Universitas Islam Negeri Raden Intan Lampung'),
(81916, 'https://ror.org/027fer296', 'en', 1, 'https://ror.org/027fer296 Petrozavodsk State Glazunov Conservatory ŠŸŠµŃ‚Ń€Š¾Š·Š°Š²Š¾Š“ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠšŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. А.К. Š“Š»Š°Š·ŃƒŠ½Š¾Š²Š°'),
(81917, 'https://ror.org/027jt8826', 'no_lang_code', 1, 'https://ror.org/027jt8826 WuXi AppTec (United States)'),
(81918, 'https://ror.org/027nzpm35', 'en', 1, 'https://ror.org/027nzpm35 Ellen MacArthur Foundation'),
(81919, 'https://ror.org/027qqek76', 'en', 1, 'https://ror.org/027qqek76 Japanese Society for Dialysis Therapy äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é€ęžåŒ»å­¦ä¼š'),
(81920, 'https://ror.org/027qwc485', 'no_lang_code', 1, 'https://ror.org/027qwc485 Duality (United States)'),
(81921, 'https://ror.org/027ras364', 'pt', 1, 'https://ror.org/027ras364 IPO Porto'),
(81922, 'https://ror.org/027t4kk23', 'en', 1, 'https://ror.org/027t4kk23 Michigan Center for Translational Pathology'),
(81923, 'https://ror.org/027vts844', 'nl', 1, 'https://ror.org/027vts844 Canisius-Wilhelmina Ziekenhuis'),
(81924, 'https://ror.org/027xkck76', 'en', 1, 'https://ror.org/027xkck76 International Water Association'),
(81925, 'https://ror.org/027xtma44', 'no_lang_code', 1, 'https://ror.org/027xtma44 GeneCare Research Institute (Japan) ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ćƒ³ć‚±ć‚¢ē ”ē©¶ę‰€'),
(81926, 'https://ror.org/027y0fw80', 'en', 1, 'https://ror.org/027y0fw80 Institute for Poverty, Land and Agrarian Studies'),
(81927, 'https://ror.org/027yknb66', 'en', 1, 'https://ror.org/027yknb66 Loch Raven VA Medical Center'),
(81928, 'https://ror.org/027z64205', 'en', 1, 'https://ror.org/027z64205 Open University of Israel'),
(81929, 'https://ror.org/027zt9171', 'en', 1, 'https://ror.org/027zt9171 Houston Methodist'),
(81930, 'https://ror.org/0280n9356', 'de', 1, 'https://ror.org/0280n9356 Rheumaliga Schweiz'),
(81931, 'https://ror.org/0282y0p95', 'en', 1, 'https://ror.org/0282y0p95 Science for All'),
(81932, 'https://ror.org/0284m2r73', 'en', 1, 'https://ror.org/0284m2r73 Ngogo Chimpanzee Project'),
(81933, 'https://ror.org/02858hr49', 'en', 1, 'https://ror.org/02858hr49 American Academy of Ophthalmology'),
(81934, 'https://ror.org/028861t28', 'en', 1, 'https://ror.org/028861t28 Texas A&M International University Universidad Internacional de Texas A&M'),
(81935, 'https://ror.org/028a0yj94', 'no_lang_code', 1, 'https://ror.org/028a0yj94 ARAconsult (Austria)'),
(81936, 'https://ror.org/028a36g75', 'it', 1, 'https://ror.org/028a36g75 Institute of International Affairs Istituto Affari Internazionali'),
(81937, 'https://ror.org/028d12s45', 'en', 1, 'https://ror.org/028d12s45 University Canada West'),
(81938, 'https://ror.org/028d79m65', 'en', 1, 'https://ror.org/028d79m65 Stolby Nature Reserve Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник ā€œŠ”Ń‚Š¾Š»Š±Ń‹ā€'),
(81939, 'https://ror.org/028dyak29', 'en', 1, 'https://ror.org/028dyak29 Aja University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų¢Ų¬Ų§'),
(81940, 'https://ror.org/028fz3b89', 'en', 1, 'https://ror.org/028fz3b89 University of Tsukuba Hospital ē­‘ę³¢å¤§å­¦é™„å±žē—…é™¢'),
(81941, 'https://ror.org/028gccq90', 'en', 1, 'https://ror.org/028gccq90 Childhood Eye Cancer Trust'),
(81942, 'https://ror.org/028mhrr87', 'no_lang_code', 1, 'https://ror.org/028mhrr87 SBI Pharmaceuticals (Japan) SBIćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(81943, 'https://ror.org/028mpsh75', 'en', 1, 'https://ror.org/028mpsh75 Aga Khan Development Network'),
(81944, 'https://ror.org/028p2b938', 'no_lang_code', 1, 'https://ror.org/028p2b938 Impulse Dynamics (United States)'),
(81945, 'https://ror.org/028pheb30', 'en', 1, 'https://ror.org/028pheb30 Mahavir Cancer Institute and Research Centre'),
(81946, 'https://ror.org/028qedy27', 'fr', 1, 'https://ror.org/028qedy27 Laboratoire de Chimie et Biochimie Pharmacologiques et Toxicologiques'),
(81947, 'https://ror.org/028qh5302', 'no_lang_code', 1, 'https://ror.org/028qh5302 BioPhorum (United Kingdom)'),
(81948, 'https://ror.org/028rr8292', 'en', 1, 'https://ror.org/028rr8292 Alvin C. York VA Medical Center'),
(81949, 'https://ror.org/028s91538', 'es', 1, 'https://ror.org/028s91538 Instituto Nacional de MetrologĆ­a de Colombia'),
(81950, 'https://ror.org/028sbah75', 'en', 1, 'https://ror.org/028sbah75 European Society of Human Reproduction and Embryology'),
(81951, 'https://ror.org/028t97a83', 'no', 1, 'https://ror.org/028t97a83 Unicare'),
(81952, 'https://ror.org/028x29h02', 'en', 1, 'https://ror.org/028x29h02 National Meteorological Service Servicio Meteorológico Nacional'),
(81953, 'https://ror.org/028xcne52', 'en', 1, 'https://ror.org/028xcne52 Mukachevo State University ŠœŃƒŠŗŠ°Ń‡Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(81954, 'https://ror.org/028xvc953', 'en', 1, 'https://ror.org/028xvc953 Island Conservation Society'),
(81955, 'https://ror.org/028ze1052', 'de', 1, 'https://ror.org/028ze1052 Tirol Kliniken'),
(81956, 'https://ror.org/028zgc806', 'en', 1, 'https://ror.org/028zgc806 Isfahan Fertility and Infertility Center مرکز باروری و Ł†Ų§ŲØŲ§Ų±ŁˆŲ±ŪŒ اصفهان'),
(81957, 'https://ror.org/0291s1e82', 'de', 1, 'https://ror.org/0291s1e82 Landesamt für Bergbau, Energie und Geologie'),
(81958, 'https://ror.org/0292hmy45', 'en', 1, 'https://ror.org/0292hmy45 National Centre for Pharmacoeconomics'),
(81959, 'https://ror.org/0292wpz08', 'no_lang_code', 1, 'https://ror.org/0292wpz08 Castings Technology International'),
(81960, 'https://ror.org/0294epk92', 'en', 1, 'https://ror.org/0294epk92 Japan Chemical Innovation and Inspection Institute äø€čˆ¬č²”å›£ę³•äŗŗåŒ–å­¦ē ”ē©¶č©•ä¾”ę©Ÿę§‹'),
(81961, 'https://ror.org/02967gp58', 'no_lang_code', 1, 'https://ror.org/02967gp58 Aptiv (United States)'),
(81962, 'https://ror.org/0297j2031', 'en', 1, 'https://ror.org/0297j2031 Park Terrace Care Center'),
(81963, 'https://ror.org/029819q61', 'en', 1, 'https://ror.org/029819q61 Chinese Institute for Brain Research åŒ—äŗ¬č„‘ē§‘å­¦äøŽē±»č„‘ē ”ē©¶äø­åæƒ'),
(81964, 'https://ror.org/029ah8167', 'en', 1, 'https://ror.org/029ah8167 Indian Creek Farm'),
(81965, 'https://ror.org/029d3gv02', 'en', 1, 'https://ror.org/029d3gv02 The Jane Goodall Institute'),
(81966, 'https://ror.org/029dwxd81', 'en', 1, 'https://ror.org/029dwxd81 Centre in Green Chemistry and Catalysis'),
(81967, 'https://ror.org/029h2vx94', 'en', 1, 'https://ror.org/029h2vx94 National Tropical Botanical Garden'),
(81968, 'https://ror.org/029jhw134', 'en', 1, 'https://ror.org/029jhw134 JAåŒ—ęµ·é“åŽšē”Ÿé€£ęœ­å¹ŒåŽšē”Ÿē—…é™¢ Sapporo Kosei General Hospital'),
(81969, 'https://ror.org/029kfxt47', 'no_lang_code', 1, 'https://ror.org/029kfxt47 International Water Association Publishing'),
(81970, 'https://ror.org/029kstx64', 'no_lang_code', 1, 'https://ror.org/029kstx64 Kani Tono Hospital åÆå…ćØć†ć®ć†ē—…é™¢'),
(81971, 'https://ror.org/029kvcs29', 'en', 1, 'https://ror.org/029kvcs29 National Institute of Technology, Akashi College ę˜ŽēŸ³å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(81972, 'https://ror.org/029mp9w08', 'no_lang_code', 1, 'https://ror.org/029mp9w08 Opty'),
(81973, 'https://ror.org/029pamw34', 'en', 1, 'https://ror.org/029pamw34 Centre for Southern Hemisphere Oceans Research'),
(81974, 'https://ror.org/029s44460', 'en', 1, 'https://ror.org/029s44460 Forschungsinstitut zur Zukunft der Arbeit GmbH (IZA) IZA - Institute of Labor Economics'),
(81975, 'https://ror.org/029tp8j70', 'en', 1, 'https://ror.org/029tp8j70 Universitas Darussalam Gontor University of Darussalam Gontor'),
(81976, 'https://ror.org/029v5hv47', 'no_lang_code', 1, 'https://ror.org/029v5hv47 Antaros Medical (Sweden)'),
(81977, 'https://ror.org/029vdxt27', 'en', 1, 'https://ror.org/029vdxt27 HCA International Foundation'),
(81978, 'https://ror.org/029ws6035', 'en', 1, 'https://ror.org/029ws6035 Canadian Museum of Nature MusƩe Canadien de la nature'),
(81979, 'https://ror.org/029x85r54', 'fr', 1, 'https://ror.org/029x85r54 Centre National en Ɖlectrochimie et en Technologies Environnementales'),
(81980, 'https://ror.org/029xz3860', 'en', 1, 'https://ror.org/029xz3860 Jeanes Hospital'),
(81981, 'https://ror.org/029y69023', 'en', 1, 'https://ror.org/029y69023 Biomedical Advanced Research and Development Authority'),
(81982, 'https://ror.org/029ypb052', 'en', 1, 'https://ror.org/029ypb052 Society for the Study of Amphibians and Reptiles'),
(81983, 'https://ror.org/02a3mhk13', 'en', 1, 'https://ror.org/02a3mhk13 FORTH Institute of Electronic Structure and Laser Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ηλεκτρονικής Δομής και Λέιζερ'),
(81984, 'https://ror.org/02a4jr261', 'no_lang_code', 1, 'https://ror.org/02a4jr261 Metrohm Dropsens (Spain)'),
(81985, 'https://ror.org/02a6g2089', 'en', 1, 'https://ror.org/02a6g2089 Fortune Institute of International Business'),
(81986, 'https://ror.org/02a8bt934', 'en', 1, 'https://ror.org/02a8bt934 Peter MacCallum Cancer Centre'),
(81987, 'https://ror.org/02a8kfj58', 'no_lang_code', 1, 'https://ror.org/02a8kfj58 Epistem (United Kingdom)'),
(81988, 'https://ror.org/02aab7a23', 'en', 1, 'https://ror.org/02aab7a23 Wits University Donald Gordon Medical Centre'),
(81989, 'https://ror.org/02ac08586', 'no_lang_code', 1, 'https://ror.org/02ac08586 Roivant Sciences (Switzerland)'),
(81990, 'https://ror.org/02ad9mm07', 'no_lang_code', 1, 'https://ror.org/02ad9mm07 Eisbach Bio (Germany)'),
(81991, 'https://ror.org/02ae4je14', 'en', 1, 'https://ror.org/02ae4je14 Craig Newmark Graduate School of Journalism at the City University of New York'),
(81992, 'https://ror.org/02afb0t44', 'en', 1, 'https://ror.org/02afb0t44 Texas Academy of Science'),
(81993, 'https://ror.org/02afm7029', 'en', 1, 'https://ror.org/02afm7029 Cancer Research Institute Ghent'),
(81994, 'https://ror.org/02ah93945', 'no_lang_code', 1, 'https://ror.org/02ah93945 Estonian Environmental Research Center (Estonia)'),
(81995, 'https://ror.org/02ahcqm31', 'en', 1, 'https://ror.org/02ahcqm31 Misawa City Hospital 三沢市立三沢病院'),
(81996, 'https://ror.org/02akb0w60', 'en', 1, 'https://ror.org/02akb0w60 Louisiana State Department of Health and Hospitals'),
(81997, 'https://ror.org/02akdcs48', 'en', 1, 'https://ror.org/02akdcs48 Association for the Development of Earthquake Prediction åœ°éœ‡äŗˆēŸ„ē·åˆē ”ē©¶ęŒÆčˆˆä¼š'),
(81998, 'https://ror.org/02amckb22', 'en', 1, 'https://ror.org/02amckb22 Continental Scientific Drilling Facility'),
(81999, 'https://ror.org/02an13226', 'en', 1, 'https://ror.org/02an13226 International Trade Administration'),
(82000, 'https://ror.org/02an6vg71', 'en', 1, 'https://ror.org/02an6vg71 Bacha Khan University'),
(82001, 'https://ror.org/02aq0m513', 'id', 1, 'https://ror.org/02aq0m513 Balai Arkeologi Sulawesi Selatan'),
(82002, 'https://ror.org/02aq67p44', 'no_lang_code', 1, 'https://ror.org/02aq67p44 Mitsubishi Heavy Industries (Japan) äø‰č±é‡å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(82003, 'https://ror.org/02aqtvv10', 'en', 1, 'https://ror.org/02aqtvv10 European Biomedical Research Institute of Salerno'),
(82004, 'https://ror.org/02arnxw97', 'en', 1, 'https://ror.org/02arnxw97 Universidad de Monterrey University of Monterrey'),
(82005, 'https://ror.org/02artxk90', 'no_lang_code', 1, 'https://ror.org/02artxk90 Resolve Therapeutics (United States)'),
(82006, 'https://ror.org/02at6q094', 'en', 1, 'https://ror.org/02at6q094 WaterAid'),
(82007, 'https://ror.org/02at9hq18', 'en', 1, 'https://ror.org/02at9hq18 National Research Center for Preventive Medicine Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр ŠŸŃ€Š¾Ń„ŠøŠ»Š°ŠŗŃ‚ŠøŃ‡ŠµŃŠŗŠ¾Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½Ń‹'),
(82008, 'https://ror.org/02avpg944', 'no_lang_code', 1, 'https://ror.org/02avpg944 Rydberg (United States)'),
(82009, 'https://ror.org/02awpzy50', 'en', 1, 'https://ror.org/02awpzy50 Mid-America Transportation Center'),
(82010, 'https://ror.org/02axfzt86', 'en', 1, 'https://ror.org/02axfzt86 Hexi University 河脿学院'),
(82011, 'https://ror.org/02ay4fy51', 'no_lang_code', 1, 'https://ror.org/02ay4fy51 Osaka Ekisaikai Hospital å¤§é˜ŖęŽ–ęøˆä¼šē—…é™¢'),
(82012, 'https://ror.org/02b3jn477', 'no_lang_code', 1, 'https://ror.org/02b3jn477 KAN Research Institute ę Ŗå¼ä¼šē¤¾ć‚«ćƒ³ē ”ē©¶ę‰€'),
(82013, 'https://ror.org/02b47v767', 'en', 1, 'https://ror.org/02b47v767 Olyokma Nature Reserve ФГБУ Ā«Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник Ā«ŠžŠ»Ń‘ŠŗŠ¼ŠøŠ½ŃŠŗŠøŠ¹Ā»'),
(82014, 'https://ror.org/02b7tjd34', 'en', 1, 'https://ror.org/02b7tjd34 Wigmore Hall'),
(82015, 'https://ror.org/02b8cgg17', 'en', 1, 'https://ror.org/02b8cgg17 Eternal Hospital'),
(82016, 'https://ror.org/02b9aym09', 'en', 1, 'https://ror.org/02b9aym09 Gallaudet University'),
(82017, 'https://ror.org/02ba9p180', 'en', 1, 'https://ror.org/02ba9p180 Palau International Coral Reef Center'),
(82018, 'https://ror.org/02ba9v476', 'no_lang_code', 1, 'https://ror.org/02ba9v476 Wessex Academic Health Science Network (United Kingdom)'),
(82019, 'https://ror.org/02bagyt43', 'no_lang_code', 1, 'https://ror.org/02bagyt43 Metawater (Japan) ćƒ”ć‚æć‚¦ć‚©ćƒ¼ć‚æ'),
(82020, 'https://ror.org/02bc8tz70', 'en', 1, 'https://ror.org/02bc8tz70 Neijiang Normal University å†…ę±ŸåøˆčŒƒå­¦é™¢'),
(82021, 'https://ror.org/02ben6x95', 'en', 1, 'https://ror.org/02ben6x95 Ministry of Jobs, Economic Recovery and Innovation'),
(82022, 'https://ror.org/02bftm313', 'no_lang_code', 1, 'https://ror.org/02bftm313 Catalyst Biosciences (United States)'),
(82023, 'https://ror.org/02bgfrc80', 'no_lang_code', 1, 'https://ror.org/02bgfrc80 MEI Pharma (United States)'),
(82024, 'https://ror.org/02bjhhm27', 'no_lang_code', 1, 'https://ror.org/02bjhhm27 Betasciencepress Publishing'),
(82025, 'https://ror.org/02bjhj961', 'en', 1, 'https://ror.org/02bjhj961 Waikato Institute of Technology'),
(82026, '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'),
(82027, 'https://ror.org/02bpgfv91', 'en', 1, 'https://ror.org/02bpgfv91 Guangzhou Development Zone Hospital å¹æå·žå¼€å‘åŒŗåŒ»é™¢'),
(82028, 'https://ror.org/02bpp8r91', 'en', 1, 'https://ror.org/02bpp8r91 VIB-KU Leuven Center for Microbiology'),
(82029, 'https://ror.org/02bv3zr67', 'en', 1, 'https://ror.org/02bv3zr67 Homi Bhabha National Institute ą¤¹ą„‹ą¤®ą„€ भाभा ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ஹோமி பாபா ą®Øą®æą®•ą®°ąÆ ą®Øą®æą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(82030, 'https://ror.org/02bw2gt68', 'no_lang_code', 1, 'https://ror.org/02bw2gt68 BioClinicum (Russia)'),
(82031, 'https://ror.org/02bwkwm60', 'en', 1, 'https://ror.org/02bwkwm60 Hiroshima Institute of Technology 広島巄愭大学'),
(82032, 'https://ror.org/02bwytq13', 'en', 1, 'https://ror.org/02bwytq13 Guangzhou First People''s Hospital å¹æå·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(82033, 'https://ror.org/02c1tfz23', 'en', 1, 'https://ror.org/02c1tfz23 Fakultní nemocnice Plzeň University Hospital Plzen'),
(82034, 'https://ror.org/02c20ys54', 'no_lang_code', 1, 'https://ror.org/02c20ys54 Google (Israel)'),
(82035, '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'),
(82036, 'https://ror.org/02c5gc203', 'fr', 1, 'https://ror.org/02c5gc203 Institut Jacques Monod'),
(82037, 'https://ror.org/02c74qd93', 'en', 1, 'https://ror.org/02c74qd93 Museo Nazionale delle Arti del XXI Secolo National Museum of 21st Century Arts'),
(82038, 'https://ror.org/02c7akf81', 'en', 1, 'https://ror.org/02c7akf81 Systems Biology Institute ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗć‚·ć‚¹ćƒ†ćƒ ćƒ»ćƒć‚¤ć‚Ŗćƒ­ć‚øćƒ¼ē ”ē©¶ę©Ÿę§‹'),
(82039, 'https://ror.org/02c7apg81', 'no_lang_code', 1, 'https://ror.org/02c7apg81 Apexigen (United States)'),
(82040, 'https://ror.org/02c8ctc21', 'no_lang_code', 1, 'https://ror.org/02c8ctc21 Beijing Institute of Radio Metrology and Measurement åŒ—äŗ¬ę— ēŗæē”µęµ‹é‡ē ”ē©¶ę‰€'),
(82041, 'https://ror.org/02c8cxy67', 'en', 1, 'https://ror.org/02c8cxy67 Donbas National Academy of Civil Engineering and Architecture - Kramatorsk Š”Š¾Š½Š±Š°ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(82042, 'https://ror.org/02capbb49', 'en', 1, 'https://ror.org/02capbb49 Standards, Productivity and Innovation Board 标新局'),
(82043, 'https://ror.org/02catss52', 'en', 1, 'https://ror.org/02catss52 European Bioinformatics Institute'),
(82044, 'https://ror.org/02cc4d683', 'no_lang_code', 1, 'https://ror.org/02cc4d683 Fluid Gravity Engineering (United Kingdom)'),
(82045, 'https://ror.org/02ccba128', 'en', 1, 'https://ror.org/02ccba128 Adama Science and Technology University įŠ į‹³įˆ› įˆ³į‹­įŠ•įˆµįŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(82046, 'https://ror.org/02cda5v64', 'it', 1, 'https://ror.org/02cda5v64 La Fondazione Ettore Sansavini per la Ricerca Scientifica'),
(82047, 'https://ror.org/02cdcg608', 'en', 1, 'https://ror.org/02cdcg608 University of Sudbury UniversitƩ de Sudbury'),
(82048, 'https://ror.org/02cdwar72', 'no_lang_code', 1, 'https://ror.org/02cdwar72 Bando Chemical Industries (Japan) ćƒćƒ³ćƒ‰ćƒ¼åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(82049, 'https://ror.org/02cedh792', 'no_lang_code', 1, 'https://ror.org/02cedh792 Medela (Switzerland)'),
(82050, 'https://ror.org/02cjszf03', 'en', 1, 'https://ror.org/02cjszf03 Institute of Remote Sensing and Digital Earth äø­å›½ē§‘å­¦é™¢åÆ¹åœ°č§‚ęµ‹äøŽę•°å­—åœ°ēƒē§‘å­¦äø­åæƒ'),
(82051, 'https://ror.org/02cndcd59', 'en', 1, 'https://ror.org/02cndcd59 National Institute of Technology, Kure College å‘‰å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(82052, 'https://ror.org/02cnt7f76', 'en', 1, 'https://ror.org/02cnt7f76 Steel Foundation for Environmental Protection Technology å…¬ē›Šč²”å›£ę³•äŗŗé‰„é‹¼ē’°å¢ƒåŸŗé‡‘'),
(82053, 'https://ror.org/02cph3w90', 'en', 1, 'https://ror.org/02cph3w90 Organisation des Ɖtats de la CaraĆÆbe Orientale Organisation of Eastern Caribbean States منظمة ŲÆŁˆŁ„ ؓرق البحر Ų§Ł„ŁƒŲ§Ų±ŁŠŲØŁŠ'),
(82054, 'https://ror.org/02cq51909', 'en', 1, 'https://ror.org/02cq51909 Sendai Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ä»™å°åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(82055, 'https://ror.org/02cqsbv23', 'en', 1, 'https://ror.org/02cqsbv23 Northland Polytechnic'),
(82056, 'https://ror.org/02cs2sd33', 'en', 1, 'https://ror.org/02cs2sd33 Korea University Medical Center ź³ ė ¤ėŒ€ķ•™źµ ģ˜ė£Œģ›'),
(82057, 'https://ror.org/02csqjc22', 'en', 1, 'https://ror.org/02csqjc22 Riddle Hospital'),
(82058, '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'),
(82059, 'https://ror.org/02cw59y30', 'en', 1, 'https://ror.org/02cw59y30 Genomic and Immunotherapy Medical Institute'),
(82060, 'https://ror.org/02cypar22', 'en', 1, 'https://ror.org/02cypar22 Hopp Children''s Cancer Center Heidelberg'),
(82061, 'https://ror.org/02cyra061', 'en', 1, 'https://ror.org/02cyra061 Shupyk National Healthcare University of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ охорони зГоров''я України імені П. Š›. Шупика'),
(82062, 'https://ror.org/02d06s578', 'en', 1, 'https://ror.org/02d06s578 Chongqing University of Education é‡åŗ†ę•™č‚²å¤§å­¦'),
(82063, 'https://ror.org/02d1d3446', 'en', 1, 'https://ror.org/02d1d3446 Nippon Sheet Glass Foundation for Materials Science and Engineering å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęæē”å­ęę–™å·„å­¦åŠ©ęˆä¼š'),
(82064, 'https://ror.org/02d29d188', 'en', 1, 'https://ror.org/02d29d188 Durham VA Health Care System'),
(82065, 'https://ror.org/02d2m2044', 'en', 1, 'https://ror.org/02d2m2044 Agricultural Research Service'),
(82066, 'https://ror.org/02d32n026', 'no_lang_code', 1, 'https://ror.org/02d32n026 Gastro One (United States)'),
(82067, 'https://ror.org/02d5ks197', 'en', 1, 'https://ror.org/02d5ks197 Chinese University of Hong Kong, Shenzhen 香港中文大學 (深圳)'),
(82068, 'https://ror.org/02d84sx83', 'no_lang_code', 1, 'https://ror.org/02d84sx83 Oroboros Instruments (Austria)'),
(82069, 'https://ror.org/02das4m93', 'no_lang_code', 1, 'https://ror.org/02das4m93 Tiande (China) å¤©å¾·ē§‘ęŠ€'),
(82070, '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'),
(82071, 'https://ror.org/02ddqp560', 'en', 1, 'https://ror.org/02ddqp560 Science and Technology Park of Crete Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĪæĪ½Ī¹ĪŗĻŒ και Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Πάρκο ĪšĻĪ®Ļ„Ī·Ļ‚'),
(82072, 'https://ror.org/02de4ka70', 'en', 1, 'https://ror.org/02de4ka70 International Breast Cancer Research Foundation'),
(82073, 'https://ror.org/02depad46', 'en', 1, 'https://ror.org/02depad46 Belgian Health Care Knowledge Centre Centre fƩdƩral d''expertise des soins de santƩ Federaal Kenniscentrum voor de Gezondheidszorg'),
(82074, 'https://ror.org/02dgmxb18', 'en', 1, 'https://ror.org/02dgmxb18 Yamaguchi University Hospital å±±å£å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(82075, 'https://ror.org/02dgwnb72', 'en', 1, 'https://ror.org/02dgwnb72 Novartis-MIT Center for Continuous Manufacturing'),
(82076, 'https://ror.org/02dhqpj43', 'fr', 1, 'https://ror.org/02dhqpj43 Centre de rƩadaptation Lethbridge-Layton-Mackay Lethbridge-Layton-Mackay Rehabilitation Centre'),
(82077, 'https://ror.org/02djn2x77', 'es', 1, 'https://ror.org/02djn2x77 Fundación Juan March'),
(82078, 'https://ror.org/02djvb753', 'en', 1, 'https://ror.org/02djvb753 Barasat Government College'),
(82079, 'https://ror.org/02dkmhg56', 'en', 1, 'https://ror.org/02dkmhg56 Higashi Osaka City General Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåø‚ē«‹ę±å¤§é˜ŖåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(82080, 'https://ror.org/02dr55561', 'en', 1, 'https://ror.org/02dr55561 Tochigi Prefectural Fisheries Experimental Station ę ƒęœØēœŒę°“ē”£č©¦éØ“å “'),
(82081, 'https://ror.org/02drkkh02', 'es', 1, 'https://ror.org/02drkkh02 Universidad Autónoma de Occidente'),
(82082, 'https://ror.org/02dtaqq02', 'en', 1, 'https://ror.org/02dtaqq02 Plum Island Animal Disease Center'),
(82083, 'https://ror.org/02dtmmn34', 'en', 1, 'https://ror.org/02dtmmn34 Cambodia-Oxford Medical Research Unit'),
(82084, 'https://ror.org/02dv91s93', 'en', 1, 'https://ror.org/02dv91s93 National Children''s Bureau'),
(82085, 'https://ror.org/02dvjfw95', 'en', 1, 'https://ror.org/02dvjfw95 University of Shiga Prefecture ę»‹č³€ēœŒē«‹å¤§å­¦'),
(82086, 'https://ror.org/02dwzmz76', 'en', 1, 'https://ror.org/02dwzmz76 Gunma Astronomical Observatory ē¾¤é¦¬ēœŒē«‹ćć‚“ć¾å¤©ę–‡å°'),
(82087, 'https://ror.org/02dx0nz12', 'en', 1, 'https://ror.org/02dx0nz12 Central Forest Nature Reserve Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Лесной заповеГник'),
(82088, 'https://ror.org/02dxa0f68', 'en', 1, 'https://ror.org/02dxa0f68 Saving the Blue'),
(82089, 'https://ror.org/02dxfxz15', 'en', 1, 'https://ror.org/02dxfxz15 Wild Nature Institute'),
(82090, 'https://ror.org/02dxgk712', 'en', 1, 'https://ror.org/02dxgk712 Search for Extraterrestrial Intelligence'),
(82091, 'https://ror.org/02dxpep57', 'en', 1, 'https://ror.org/02dxpep57 Swedish National Board of Forensic Medicine'),
(82092, 'https://ror.org/02dy0mv77', 'en', 1, 'https://ror.org/02dy0mv77 Challenger Society for Marine Science'),
(82093, 'https://ror.org/02dzkdp68', 'en', 1, 'https://ror.org/02dzkdp68 Mudanjiang Normal University ē‰”äø¹ę±ŸåøˆčŒƒå­¦é™¢'),
(82094, 'https://ror.org/02e0cj066', 'no_lang_code', 1, 'https://ror.org/02e0cj066 Adeka (Japan) ę Ŗå¼ä¼šē¤¾ADEKA'),
(82095, 'https://ror.org/02e16g411', 'en', 1, 'https://ror.org/02e16g411 Lietuvos socialiniu mokslu centras Lithuanian Centre for Social Sciences'),
(82096, 'https://ror.org/02e1hxd58', 'no_lang_code', 1, 'https://ror.org/02e1hxd58 Aquinnah (United States)'),
(82097, 'https://ror.org/02e1w6814', 'en', 1, 'https://ror.org/02e1w6814 LupusChat'),
(82098, 'https://ror.org/02e2kms34', 'no_lang_code', 1, 'https://ror.org/02e2kms34 Harbour BioMed (Netherlands)'),
(82099, 'https://ror.org/02e31nc37', 'en', 1, 'https://ror.org/02e31nc37 American University in Cairo New York Office'),
(82100, 'https://ror.org/02e451q69', 'no_lang_code', 1, 'https://ror.org/02e451q69 Melinta Therapeutics (United States)'),
(82101, 'https://ror.org/02e4h5817', 'en', 1, 'https://ror.org/02e4h5817 Nosivska Breeding And Research Station ŠŠ¾ŃŃ–Š²ŃŃŒŠŗŠ° селекційно-ГосліГна ŃŃ‚Š°Š½Ń†Ń–Ń'),
(82102, 'https://ror.org/02e4qbj88', 'en', 1, 'https://ror.org/02e4qbj88 National Defense Medical College é˜²č”›ēœé˜²č”›åŒ»ē§‘å¤§å­¦ę ”'),
(82103, 'https://ror.org/02e6vkn32', 'en', 1, 'https://ror.org/02e6vkn32 Vikram Hospital'),
(82104, 'https://ror.org/02e838q34', 'es', 1, 'https://ror.org/02e838q34 Instituto Nacional de Estadƭstica e InformƔtica National Institute of Statistics and Informatics'),
(82105, 'https://ror.org/02e8r8872', 'en', 1, 'https://ror.org/02e8r8872 L''Institut indo-canadien Shastri Shastri Indo-Canadian Institute'),
(82106, 'https://ror.org/02eak8n78', 'en', 1, 'https://ror.org/02eak8n78 Indiana University Southeast'),
(82107, 'https://ror.org/02easbz49', 'no_lang_code', 1, 'https://ror.org/02easbz49 Oasen (Netherlands)'),
(82108, 'https://ror.org/02eb9xn27', 'no_lang_code', 1, 'https://ror.org/02eb9xn27 Pandawa Institute'),
(82109, 'https://ror.org/02ecs6h97', 'en', 1, 'https://ror.org/02ecs6h97 Fayette County Public Schools'),
(82110, 'https://ror.org/02ef40e75', 'en', 1, 'https://ror.org/02ef40e75 Royal Australasian College of Surgeons'),
(82111, 'https://ror.org/02ehshm78', 'en', 1, 'https://ror.org/02ehshm78 Eastern Michigan University Universidad de Michigan Oriental'),
(82112, 'https://ror.org/02ej0z861', 'pt', 1, 'https://ror.org/02ej0z861 Instituto PolitƩcnico da Lunda Sul Polytechnic Institute of Lunda Sul'),
(82113, 'https://ror.org/02en8ya84', 'en', 1, 'https://ror.org/02en8ya84 Shifa International Hospital'),
(82114, 'https://ror.org/02ep77d74', 'en', 1, 'https://ror.org/02ep77d74 Niwot Ridge Long Term Ecological Research'),
(82115, 'https://ror.org/02epph894', 'en', 1, 'https://ror.org/02epph894 South African National Space Agency'),
(82116, 'https://ror.org/02eqe7f55', 'en', 1, 'https://ror.org/02eqe7f55 Avon Foundation for Women'),
(82117, 'https://ror.org/02eqvk528', 'no_lang_code', 1, 'https://ror.org/02eqvk528 Sawyer Technical Materials (United States)'),
(82118, 'https://ror.org/02eqw3q87', 'en', 1, 'https://ror.org/02eqw3q87 Taipei City Government'),
(82119, 'https://ror.org/02etmf171', 'fr', 1, 'https://ror.org/02etmf171 PROTEO'),
(82120, 'https://ror.org/02ewp2621', 'en', 1, 'https://ror.org/02ewp2621 National Women''s Education Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹å„³ę€§ę•™č‚²ä¼šé¤Ø'),
(82121, 'https://ror.org/02ewqv775', 'en', 1, 'https://ror.org/02ewqv775 Boulder Community Hospital'),
(82122, 'https://ror.org/02ewzwr87', 'no_lang_code', 1, 'https://ror.org/02ewzwr87 University of Al-Qadisiyah Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ų§ŲÆŲ³ŁŠŲ©'),
(82123, 'https://ror.org/02exxtn84', 'en', 1, 'https://ror.org/02exxtn84 Amity University Ų¬Ų§Ł…Ų¹Ų© Ų£Ł…ŁŠŲŖŁŠ'),
(82124, 'https://ror.org/02ey3ab96', 'en', 1, 'https://ror.org/02ey3ab96 InnovÔciós és Technológiai Minisztérium Ministry for Innovation and Technology'),
(82125, 'https://ror.org/02f1h3d14', 'no_lang_code', 1, 'https://ror.org/02f1h3d14 Denssolutions (Netherlands)'),
(82126, 'https://ror.org/02f1mqt91', 'de', 1, 'https://ror.org/02f1mqt91 Deutsches Historisches Institut Paris German Historical Institute Paris Institut Historique Allemand'),
(82127, 'https://ror.org/02f2nvw78', 'en', 1, 'https://ror.org/02f2nvw78 Australian Institute for Musculoskeletal Science'),
(82128, 'https://ror.org/02f4g9771', 'en', 1, 'https://ror.org/02f4g9771 Blagoveschensk State Pedagogical University Благовещенский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(82129, 'https://ror.org/02f4ks689', 'en', 1, 'https://ror.org/02f4ks689 Axiom Data Science'),
(82130, 'https://ror.org/02f7f9m65', 'no_lang_code', 1, 'https://ror.org/02f7f9m65 Verve Therapeutics (United States)'),
(82131, 'https://ror.org/02f8mda22', 'no_lang_code', 1, 'https://ror.org/02f8mda22 Quality and Reliability (Greece)'),
(82132, 'https://ror.org/02fafrk51', 'en', 1, 'https://ror.org/02fafrk51 Telemark Hospital'),
(82133, 'https://ror.org/02faywq38', 'en', 1, 'https://ror.org/02faywq38 Japanese Red Cross Kumamoto Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ē†Šęœ¬čµ¤åå­—ē—…é™¢'),
(82134, 'https://ror.org/02fb00x56', 'no_lang_code', 1, 'https://ror.org/02fb00x56 Eiffage (France)'),
(82135, 'https://ror.org/02fbb9504', 'no_lang_code', 1, 'https://ror.org/02fbb9504 Evolving Nano Process Infrastructure Development Center (Japan) ę Ŗå¼ä¼šē¤¾å…ˆē«ÆćƒŠćƒŽćƒ—ćƒ­ć‚»ć‚¹åŸŗē›¤é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(82136, 'https://ror.org/02fccce66', 'no_lang_code', 1, 'https://ror.org/02fccce66 Amarin (Ireland)'),
(82137, 'https://ror.org/02fez3815', 'en', 1, 'https://ror.org/02fez3815 Fraunhofer Institute for Cognitive Systems Fraunhofer-Institut für Kognitive Systeme IKS'),
(82138, 'https://ror.org/02ffmpe09', 'en', 1, 'https://ror.org/02ffmpe09 Royal Academy of Cambodia įžšįž¶įž‡įž”įžŽįŸ’įžŒįž·įžįŸ’įž™įžŸįž—įž¶įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(82139, 'https://ror.org/02fgesk53', 'it', 1, 'https://ror.org/02fgesk53 Centri Associati di Allergologia Molecolare'),
(82140, 'https://ror.org/02fha3693', 'en', 1, 'https://ror.org/02fha3693 University Hospitals of Leicester NHS Trust'),
(82141, 'https://ror.org/02fhtg636', 'no_lang_code', 1, 'https://ror.org/02fhtg636 NordLab Pohjois-Suomen laboratoriokeskuksen liikelaitoskuntayhtymƤ'),
(82142, 'https://ror.org/02fm3sv87', 'en', 1, 'https://ror.org/02fm3sv87 Office of the National Coordinator for Health Information Technology'),
(82143, 'https://ror.org/02fnkyh09', 'en', 1, 'https://ror.org/02fnkyh09 Central Scientific Library of the Far Eastern Branch of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ Š¾Š±ŃŠ»ŃƒŠ¶ŠøŠ²Š°Š½ŠøŃ Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń Š½Š°ŃƒŃ‡Š½Š°Ń библиотека Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(82144, 'https://ror.org/02fp2pe05', 'en', 1, 'https://ror.org/02fp2pe05 Key Laboratory for High Strength Lightweight Metallic Materials of Shandong Province å±±äøœēœč½»č“Øé«˜å¼ŗé‡‘å±žęę–™ēœēŗ§é‡ē‚¹å®žéŖŒå®¤'),
(82145, 'https://ror.org/02fq2px14', 'en', 1, 'https://ror.org/02fq2px14 Jawaharlal Institute of Post Graduate Medical Education and Research ą®œą®µą®¹ą®°ąÆą®²ą®¾ą®²ąÆ ą®Ŗą®ŸąÆą®Ÿ ą®®ąÆ‡ą®±ąÆą®Ŗą®Ÿą®æą®ŖąÆą®ŖąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®µą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ ą“œą“æą“Ŗąµą“®ąµ†ąµ¼'),
(82146, 'https://ror.org/02fqg7825', 'en', 1, 'https://ror.org/02fqg7825 Research Society on Marijuana'),
(82147, 'https://ror.org/02fsejp38', 'en', 1, 'https://ror.org/02fsejp38 Lietuvos Respublikos žemės ūkio ministerija Ministry of Agriculture of the Republic of Lithuania'),
(82148, 'https://ror.org/02ft1jb97', 'no_lang_code', 1, 'https://ror.org/02ft1jb97 IonQ (United States)'),
(82149, 'https://ror.org/02fz2r438', 'pt', 1, 'https://ror.org/02fz2r438 Hospital UniversitƔrio Cajuru'),
(82150, 'https://ror.org/02fz54z33', 'en', 1, 'https://ror.org/02fz54z33 Georgetown-Howard Universities Center for Clinical and Translational Science'),
(82151, 'https://ror.org/02fzdct21', 'en', 1, 'https://ror.org/02fzdct21 Kindai University Sakai Hospital čæ‘ē•æå¤§å­¦åŒ»å­¦éƒØå ŗē—…é™¢'),
(82152, 'https://ror.org/02g2syx91', 'no_lang_code', 1, 'https://ror.org/02g2syx91 Eskom (South Africa)'),
(82153, 'https://ror.org/02g4b4t25', 'en', 1, 'https://ror.org/02g4b4t25 New Ulm Medical Center'),
(82154, 'https://ror.org/02g517422', 'no_lang_code', 1, 'https://ror.org/02g517422 CytoDel (United States)'),
(82155, 'https://ror.org/02g5psh91', 'en', 1, 'https://ror.org/02g5psh91 Suzhou Institute of North China Electric Power University åŽåŒ—ē”µåŠ›å¤§å­¦č‹å·žē ”ē©¶é™¢'),
(82156, 'https://ror.org/02g6xee76', 'en', 1, 'https://ror.org/02g6xee76 Future Law'),
(82157, 'https://ror.org/02g7kd627', 'en', 1, 'https://ror.org/02g7kd627 Universidad Villanova Villanova University'),
(82158, 'https://ror.org/02g87qh62', 'es', 1, 'https://ror.org/02g87qh62 Centro de Investigación Biomédica en Red'),
(82159, 'https://ror.org/02g9t7f35', 'en', 1, 'https://ror.org/02g9t7f35 Spinal Injuries Center ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹ē·åˆć›ćęć‚»ćƒ³ć‚æćƒ¼'),
(82160, 'https://ror.org/02g9y9404', 'en', 1, 'https://ror.org/02g9y9404 Institute of Radiotherapy and Nuclear Medicine جوہری طبی اور ؓعاعي علاج کا ادارہ'),
(82161, 'https://ror.org/02gazz415', 'en', 1, 'https://ror.org/02gazz415 Philippine Rice Research Institute'),
(82162, 'https://ror.org/02gb6hj86', 'en', 1, 'https://ror.org/02gb6hj86 North Central Soil Conservation Research Laboratory'),
(82163, 'https://ror.org/02gca0r39', 'no_lang_code', 1, 'https://ror.org/02gca0r39 ILF (Switzerland)'),
(82164, 'https://ror.org/02gck7e73', 'no_lang_code', 1, 'https://ror.org/02gck7e73 Institute for Clinical Pharmacodynamics (United States)'),
(82165, 'https://ror.org/02ge40a94', 'en', 1, 'https://ror.org/02ge40a94 Japan Institute of Plant Maintenance å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ©ćƒ³ćƒˆćƒ”ćƒ³ćƒ†ćƒŠćƒ³ć‚¹å”ä¼š'),
(82166, 'https://ror.org/02gf1cx07', 'en', 1, 'https://ror.org/02gf1cx07 Chinese Mathematical Society äø­å›½ę•°å­¦ä¼š'),
(82167, 'https://ror.org/02gfbg321', 'no_lang_code', 1, 'https://ror.org/02gfbg321 Essity (Germany)'),
(82168, 'https://ror.org/02gfjzb42', 'en', 1, 'https://ror.org/02gfjzb42 Turkana University College'),
(82169, 'https://ror.org/02ggaqt78', 'en', 1, 'https://ror.org/02ggaqt78 Laser Fusion Research Center ęæ€å…‰čšå˜ē ”ē©¶äø­åæƒ'),
(82170, 'https://ror.org/02gk7n802', 'de', 1, 'https://ror.org/02gk7n802 Deutsche Gesellschaft für Muskelkranke'),
(82171, 'https://ror.org/02gnydh35', 'pt', 1, 'https://ror.org/02gnydh35 Instituto de Patologia da Coluna'),
(82172, 'https://ror.org/02gp4e279', 'en', 1, 'https://ror.org/02gp4e279 Chinese Academy of Geological Sciences äø­å›½åœ°č“Øē§‘å­¦é™¢'),
(82173, 'https://ror.org/02gqe1446', 'no_lang_code', 1, 'https://ror.org/02gqe1446 SPL L''Eau des Collines'),
(82174, 'https://ror.org/02gsmy581', 'en', 1, 'https://ror.org/02gsmy581 Bone Cancer Research Trust'),
(82175, 'https://ror.org/02gtrqv93', 'de', 1, 'https://ror.org/02gtrqv93 Physikalisch-Meteorologisches Observatorium Davos'),
(82176, 'https://ror.org/02gv4h649', 'en', 1, 'https://ror.org/02gv4h649 Atomic Weapons Establishment'),
(82177, 'https://ror.org/02gvp4w61', 'en', 1, 'https://ror.org/02gvp4w61 Association for Machine Translation in the Americas'),
(82178, 'https://ror.org/02gwsx029', 'en', 1, 'https://ror.org/02gwsx029 Guangdong-Hongkong-Macau Joint Laboratory of Collaborative Innovation for Environmental Quality ē²¤ęøÆę¾³ēŽÆå¢ƒč“Øé‡ååŒåˆ›ę–°č”åˆå®žéŖŒå®¤'),
(82179, 'https://ror.org/02h0ps145', 'no_lang_code', 1, 'https://ror.org/02h0ps145 GlobalFoundries (United States)'),
(82180, 'https://ror.org/02h1mqb03', 'en', 1, 'https://ror.org/02h1mqb03 Kazakh Institute of Oncology and Radiology ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ онкологии Šø раГиологии'),
(82181, 'https://ror.org/02h1wg091', 'no_lang_code', 1, 'https://ror.org/02h1wg091 Menarini Group (Italy)'),
(82182, 'https://ror.org/02h2jfy25', 'en', 1, 'https://ror.org/02h2jfy25 Federal State Budgetary Scientific Institution Research Institute of Medical Primatology'),
(82183, 'https://ror.org/02h694m69', 'no_lang_code', 1, 'https://ror.org/02h694m69 PharmaMar (Spain)'),
(82184, 'https://ror.org/02h8eme80', 'en', 1, 'https://ror.org/02h8eme80 Campbell Collaboration'),
(82185, 'https://ror.org/02han2n82', 'en', 1, 'https://ror.org/02han2n82 Biola University'),
(82186, 'https://ror.org/02hbcgp53', 'en', 1, 'https://ror.org/02hbcgp53 Arctic State Institute of Culture and Arts Арктический Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(82187, 'https://ror.org/02hcv4z63', 'en', 1, 'https://ror.org/02hcv4z63 Minia University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŁŠŁ€Ų§'),
(82188, 'https://ror.org/02hcx4k66', 'es', 1, 'https://ror.org/02hcx4k66 Kavilando'),
(82189, 'https://ror.org/02hd7j845', 'en', 1, 'https://ror.org/02hd7j845 Institute of Forage Crops Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ по Ń„ŃƒŃ€Š°Š¶Š½ŠøŃ‚Šµ ŠŗŃƒŠ»Ń‚ŃƒŃ€Šø'),
(82190, 'https://ror.org/02hdt9m26', 'en', 1, 'https://ror.org/02hdt9m26 Swiss Data Science Center'),
(82191, 'https://ror.org/02heqdm85', 'ro', 1, 'https://ror.org/02heqdm85 Romanian Ornithological Society Societatea Ornitologică Română'),
(82192, 'https://ror.org/02hf3ga17', 'en', 1, 'https://ror.org/02hf3ga17 Glacier Cave Explorers'),
(82193, 'https://ror.org/02hfbe980', 'de', 1, 'https://ror.org/02hfbe980 Biologische Station Neusiedler See'),
(82194, 'https://ror.org/02hg8ry82', 'en', 1, 'https://ror.org/02hg8ry82 Japanese Red Cross Kochi Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é«˜ēŸ„čµ¤åå­—ē—…é™¢'),
(82195, 'https://ror.org/02hhf2525', 'en', 1, 'https://ror.org/02hhf2525 Academician F. H. Burchak Scientific-Research Institute of Private Law and Entrepreneurship ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГниq Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приватного права і піГприємництва імені акаГеміка Ф. Š“. Š‘ŃƒŃ€Ń‡Š°ŠŗŠ°'),
(82196, 'https://ror.org/02hhwgd43', 'en', 1, 'https://ror.org/02hhwgd43 SveučiliÅ”te u Sarajevu University of Sarajevo Univerzitet u Sarajevu Универзитет у Š”Š°Ń€Š°Ń˜ŠµŠ²Ńƒ'),
(82197, 'https://ror.org/02hhwwz98', 'en', 1, 'https://ror.org/02hhwwz98 Tsinghua–Berkeley Shenzhen Institute ęø…åŽå¤§å­¦ä¼Æå…‹åˆ©åˆ†ę ”ę·±åœ³ē ”ē©¶é™¢'),
(82198, 'https://ror.org/02hjc1385', 'no_lang_code', 1, 'https://ror.org/02hjc1385 Lettis Consultants International (United States)'),
(82199, 'https://ror.org/02hn5m148', 'no_lang_code', 1, 'https://ror.org/02hn5m148 Reaction Biology (Germany)'),
(82200, 'https://ror.org/02hpx5276', 'no_lang_code', 1, 'https://ror.org/02hpx5276 Dr. Shterev Hospital ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø комплекс "Š”-р Щерев"'),
(82201, 'https://ror.org/02hscsw24', 'es', 1, 'https://ror.org/02hscsw24 Instituto Oncológico de Córdoba'),
(82202, 'https://ror.org/02ht65c11', 'de', 1, 'https://ror.org/02ht65c11 SPZ Frankfurt Mitte, SozialpƤdiatrisches Zentrum Frankfurt Mitte'),
(82203, 'https://ror.org/02hv6yw42', 'en', 1, 'https://ror.org/02hv6yw42 Connecticut Department of Energy and Environmental Protection'),
(82204, 'https://ror.org/02hvt5f17', 'en', 1, 'https://ror.org/02hvt5f17 Tampere University Hospital'),
(82205, 'https://ror.org/02hwp6a56', 'en', 1, 'https://ror.org/02hwp6a56 Kanazawa University 金沢大学'),
(82206, 'https://ror.org/02j0rkv07', 'en', 1, 'https://ror.org/02j0rkv07 Pike County Schools'),
(82207, 'https://ror.org/02j136k79', 'no_lang_code', 1, 'https://ror.org/02j136k79 Chifeng Municipal Hospital čµ¤å³°åø‚åŒ»é™¢'),
(82208, 'https://ror.org/02j15s898', 'en', 1, 'https://ror.org/02j15s898 The Wallace H. Coulter Department of Biomedical Engineering'),
(82209, 'https://ror.org/02j172648', 'en', 1, 'https://ror.org/02j172648 Macular Society'),
(82210, 'https://ror.org/02j1ekg65', 'en', 1, 'https://ror.org/02j1ekg65 Metanoia Institute'),
(82211, 'https://ror.org/02j1xhm46', 'en', 1, 'https://ror.org/02j1xhm46 Tokyo Metropolitan Neurological Hospital ę±äŗ¬éƒ½ē«‹ē„žēµŒē—…é™¢'),
(82212, 'https://ror.org/02j5me516', 'en', 1, 'https://ror.org/02j5me516 Foundation for Clinical and Applied Cancer Research'),
(82213, 'https://ror.org/02j5ney70', 'no_lang_code', 1, 'https://ror.org/02j5ney70 Royal GD (Netherlands)'),
(82214, 'https://ror.org/02j7tm046', 'de', 1, 'https://ror.org/02j7tm046 Neue Kantonsschule Aarau'),
(82215, 'https://ror.org/02j85cg51', 'en', 1, 'https://ror.org/02j85cg51 Freshwater Biological Association'),
(82216, 'https://ror.org/02ja8nd79', 'no_lang_code', 1, 'https://ror.org/02ja8nd79 Alcon (China)'),
(82217, 'https://ror.org/02jch6d72', 'en', 1, 'https://ror.org/02jch6d72 Munich Security Conference Münchner Sicherheitskonferenz'),
(82218, 'https://ror.org/02jcvm930', 'it', 1, 'https://ror.org/02jcvm930 Centro Universitario Internazionale'),
(82219, 'https://ror.org/02jfhsn35', 'en', 1, 'https://ror.org/02jfhsn35 CSIRO BioFoundry'),
(82220, 'https://ror.org/02jfsdq79', 'no_lang_code', 1, 'https://ror.org/02jfsdq79 Amplyx Pharmaceuticals (United States)'),
(82221, 'https://ror.org/02jfw4p72', 'no_lang_code', 1, 'https://ror.org/02jfw4p72 CVS Health (United States)'),
(82222, 'https://ror.org/02jg1fa85', 'no_lang_code', 1, 'https://ror.org/02jg1fa85 Suntory (Japan) ć‚µćƒ³ćƒˆćƒŖćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(82223, 'https://ror.org/02jgbpg06', 'fr', 1, 'https://ror.org/02jgbpg06 Railenium'),
(82224, 'https://ror.org/02jgyam08', 'en', 1, 'https://ror.org/02jgyam08 Max Planck Institute for Demographic Research Max-Planck-Institut für Demografische Forschung'),
(82225, 'https://ror.org/02jhs2h97', 'no_lang_code', 1, 'https://ror.org/02jhs2h97 Concert Pharmaceuticals (United States)'),
(82226, 'https://ror.org/02jk0wm04', 'en', 1, 'https://ror.org/02jk0wm04 EUMETNET'),
(82227, 'https://ror.org/02jkbm893', 'sv', 1, 'https://ror.org/02jkbm893 Bank of Sweden Tercentenary Foundation Stiftelsen Riksbankens Jubileumsfond'),
(82228, 'https://ror.org/02jkmyz31', 'en', 1, 'https://ror.org/02jkmyz31 Sickle Cell Institute Chhattisgarh, Raipur सिकल ą¤øą„‡ą¤² ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼, ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(82229, 'https://ror.org/02jmtea33', 'no_lang_code', 1, 'https://ror.org/02jmtea33 PNPE Company (Iran) Ł¾ŪŒŲ“ŚÆŲ§Ł… Ł†Ł‚Ų“Ł‡ā€ŒŁ¾Ų±ŲÆŲ§Ų² Ų§Ų“Ų±Ų§Ł‚'),
(82230, 'https://ror.org/02jn36537', 'en', 1, 'https://ror.org/02jn36537 Southwest Hospital č„æå—åŒ»é™¢'),
(82231, 'https://ror.org/02jn8gs50', 'en', 1, 'https://ror.org/02jn8gs50 Associação Brasileira de Psiquiatria Brazilian Association of Psychiatry'),
(82232, 'https://ror.org/02jnm4206', 'en', 1, 'https://ror.org/02jnm4206 Jewish Community Foundation'),
(82233, 'https://ror.org/02jpqrb52', 'en', 1, 'https://ror.org/02jpqrb52 Orthopaedic Trauma Association'),
(82234, 'https://ror.org/02jqgbr24', 'de', 1, 'https://ror.org/02jqgbr24 Institut für Beschäftigung und Employability'),
(82235, 'https://ror.org/02jqp5961', 'no_lang_code', 1, 'https://ror.org/02jqp5961 Reata Pharmaceuticals (United States)'),
(82236, 'https://ror.org/02jrddb23', 'en', 1, 'https://ror.org/02jrddb23 Liver Institute Northwest'),
(82237, 'https://ror.org/02jsvy381', 'no_lang_code', 1, 'https://ror.org/02jsvy381 Chimerix (United States)'),
(82238, 'https://ror.org/02jv93662', 'en', 1, 'https://ror.org/02jv93662 Qatar National Library Ł…ŁƒŲŖŲØŲ© قطر Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(82239, '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'),
(82240, 'https://ror.org/02jw8vr54', 'en', 1, 'https://ror.org/02jw8vr54 Central Marine Fisheries Research Institute ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„ą¤¦ą„ą¤°ą„€ ą¤®ą¤¾ą¤¤ą„ą¤øą„ą¤Æą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø ą®®ą®¤ąÆą®¤ą®æą®Æ ą®•ą®Ÿą®²ąÆą®®ąÆ€ą®©ąÆą®µą®³ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®²ąÆˆą®Æą®®ąÆ'),
(82241, 'https://ror.org/02jya5567', 'en', 1, 'https://ror.org/02jya5567 Beirut Arab University UniversitĆ© arabe de beyrouth Ų¬Ų§Ł…Ų¹Ų© بيروت Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(82242, 'https://ror.org/02jztf270', 'en', 1, 'https://ror.org/02jztf270 International Society for Laboratory Hematology'),
(82243, 'https://ror.org/02k1cnv49', 'de', 1, 'https://ror.org/02k1cnv49 Deutsche Gesellschaft für Zahn-, Mund- und Kieferheilkunde'),
(82244, 'https://ror.org/02k1fef77', 'en', 1, 'https://ror.org/02k1fef77 Canadian Cardiovascular Society'),
(82245, 'https://ror.org/02k4gk709', 'de', 1, 'https://ror.org/02k4gk709 Christiani'),
(82246, 'https://ror.org/02k4pxv54', 'en', 1, 'https://ror.org/02k4pxv54 Agencia Nacional de Inteligencia-Geoespacial National Geospatial-Intelligence Agency'),
(82247, 'https://ror.org/02k4xm641', 'no_lang_code', 1, 'https://ror.org/02k4xm641 The Clorox (United States)'),
(82248, 'https://ror.org/02k5hnj64', 'en', 1, 'https://ror.org/02k5hnj64 Pinnacle Clinical Research'),
(82249, 'https://ror.org/02k8cbn47', 'en', 1, 'https://ror.org/02k8cbn47 GSI Helmholtz Centre for Heavy Ion Research GSI Helmholtzzentrum für Schwerionenforschung'),
(82250, 'https://ror.org/02k96x766', 'en', 1, 'https://ror.org/02k96x766 Foundation for Promotion of Material Science and Technology of Japan čˆ¬č²”å›£ę³•äŗŗęę–™ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(82251, 'https://ror.org/02kawe830', 'en', 1, 'https://ror.org/02kawe830 Forestry Research Institute O''RMON XO''JALIGI ILMIY-TADQIQOT INSTITUTI'),
(82252, 'https://ror.org/02kc80b57', 'en', 1, 'https://ror.org/02kc80b57 The Dian Fossey Gorilla Fund International'),
(82253, 'https://ror.org/02kcqb193', 'en', 1, 'https://ror.org/02kcqb193 Colt Foundation'),
(82254, 'https://ror.org/02kd4pa08', 'en', 1, 'https://ror.org/02kd4pa08 Oklahoma Department of Transportation'),
(82255, 'https://ror.org/02kdweh68', 'en', 1, 'https://ror.org/02kdweh68 Modern Diet and Physiology Research Center'),
(82256, 'https://ror.org/02kef7f93', 'en', 1, 'https://ror.org/02kef7f93 State Library and Archives of Florida'),
(82257, 'https://ror.org/02kejw255', 'no_lang_code', 1, 'https://ror.org/02kejw255 Tillotts Pharma (Switzerland)'),
(82258, 'https://ror.org/02khfyc93', 'en', 1, 'https://ror.org/02khfyc93 National Engineering Research Center of Human Stem Cells äŗŗē±»å¹²ē»†čƒžå›½å®¶å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(82259, 'https://ror.org/02khqd465', 'it', 1, 'https://ror.org/02khqd465 ENEA Casaccia Research Centre, ENEA Centro Ricerche Casaccia'),
(82260, 'https://ror.org/02kj38n05', 'en', 1, 'https://ror.org/02kj38n05 Anova Health Institute'),
(82261, 'https://ror.org/02kmc2r95', 'en', 1, 'https://ror.org/02kmc2r95 Lueji A''Nkonde University Universidade Lueji A''nkonde'),
(82262, 'https://ror.org/02kn5wf75', 'en', 1, 'https://ror.org/02kn5wf75 Innlandet Hospital Trust'),
(82263, 'https://ror.org/02ksnyp08', 'en', 1, 'https://ror.org/02ksnyp08 Ministerstwo Zdrowia Rzeczypospolitej Polskiej Ministry of Health'),
(82264, 'https://ror.org/02kx9qd54', 'no_lang_code', 1, 'https://ror.org/02kx9qd54 Veterinary Anaesthesia Services (Switzerland)'),
(82265, 'https://ror.org/02kxw8q35', 'no_lang_code', 1, 'https://ror.org/02kxw8q35 Sumitomo Bakelite (Japan) ä½å‹ćƒ™ćƒ¼ć‚Æćƒ©ć‚¤ćƒˆę Ŗå¼ä¼šē¤¾'),
(82266, 'https://ror.org/02kz4tk84', 'en', 1, 'https://ror.org/02kz4tk84 Vorarlberg Institute for Vascular Investigation and Treatment'),
(82267, 'https://ror.org/02m51qp09', 'en', 1, 'https://ror.org/02m51qp09 Southwest Healthcare System'),
(82268, 'https://ror.org/02m8g1k56', 'no_lang_code', 1, 'https://ror.org/02m8g1k56 Ion Technology Center (Japan) ć‚¤ć‚Ŗćƒ³ćƒ†ć‚ÆćƒŽć‚»ćƒ³ć‚æćƒ¼'),
(82269, 'https://ror.org/02m8mqx79', 'no_lang_code', 1, 'https://ror.org/02m8mqx79 Vaccitech (United Kingdom)'),
(82270, 'https://ror.org/02m9tqe79', 'en', 1, 'https://ror.org/02m9tqe79 Tianjin Fourth Central Hospital å¤©ę“„åø‚ē¬¬å››äø­åæƒåŒ»é™¢'),
(82271, 'https://ror.org/02m9vrb24', 'en', 1, 'https://ror.org/02m9vrb24 Hunan University of Science and Technology ę¹–å—ē§‘ęŠ€å¤§å­¦'),
(82272, 'https://ror.org/02mbz1h25', 'no_lang_code', 1, 'https://ror.org/02mbz1h25 Laboratory of Data Discovery for Health é†«č”žå¤§ę•øę“šę·±ęžåÆ¦é©—å®¤ęœ‰é™å…¬åø'),
(82273, 'https://ror.org/02mecht53', 'en', 1, 'https://ror.org/02mecht53 Extreme Weather Expertise'),
(82274, 'https://ror.org/02met5w95', 'de', 1, 'https://ror.org/02met5w95 Praxis für Humangenetik Tübingen'),
(82275, 'https://ror.org/02mg36m74', 'en', 1, 'https://ror.org/02mg36m74 Rajamangala University of Technology Phra Nakhon ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøžąø£ąø°ąø™ąø„ąø£'),
(82276, 'https://ror.org/02mgbdx19', 'en', 1, 'https://ror.org/02mgbdx19 Vishera Nature Reserve Š’ŠøŃˆŠµŃ€ŃŠŗŠøŠ¹ заповеГник'),
(82277, 'https://ror.org/02mh24h06', 'en', 1, 'https://ror.org/02mh24h06 Mastery Charter Schools'),
(82278, 'https://ror.org/02mh8f163', 'fr', 1, 'https://ror.org/02mh8f163 Clinique Cecil, Hirslanden Clinique Cecil'),
(82279, 'https://ror.org/02mjymy60', 'no_lang_code', 1, 'https://ror.org/02mjymy60 Cyano Biotech (Germany)'),
(82280, 'https://ror.org/02mkv8r24', 'en', 1, 'https://ror.org/02mkv8r24 Agence EuropƩenne de DƩfense European Defence Agency Europees Defensieagentschap EuropƤische Verteidigungsagentur'),
(82281, 'https://ror.org/02mn5cm26', 'nl', 1, 'https://ror.org/02mn5cm26 GGD Limburg-Noord, Gemeenschappelijke Gezondheidsdienst Limburg-Noord'),
(82282, 'https://ror.org/02mnbgz92', 'no_lang_code', 1, 'https://ror.org/02mnbgz92 Informulate (United States)'),
(82283, 'https://ror.org/02mnqgw97', 'no_lang_code', 1, 'https://ror.org/02mnqgw97 Rocscience (Canada)'),
(82284, 'https://ror.org/02mp31p96', 'no_lang_code', 1, 'https://ror.org/02mp31p96 Carl Zeiss (Germany)'),
(82285, 'https://ror.org/02mrpaq42', 'en', 1, 'https://ror.org/02mrpaq42 Kansas State University Salina Aerospace and Technology Campus'),
(82286, 'https://ror.org/02ms23a70', 'es', 1, 'https://ror.org/02ms23a70 Universidad del Norte'),
(82287, 'https://ror.org/02mv4jh42', 'en', 1, 'https://ror.org/02mv4jh42 Association Canadienne des InfirmiĆØres en Oncologie Canadian Association of Nurses in Oncology'),
(82288, 'https://ror.org/02mv6r745', 'en', 1, 'https://ror.org/02mv6r745 Utah System of Higher Education'),
(82289, 'https://ror.org/02mwa1a98', 'no_lang_code', 1, 'https://ror.org/02mwa1a98 Hamamatsu Rosai Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹ęµœę¾åŠ“ē½ē—…é™¢'),
(82290, 'https://ror.org/02mwgzr84', 'no_lang_code', 1, 'https://ror.org/02mwgzr84 Toyo Kohan (Japan) ę±ę“‹é‹¼éˆ‘ę Ŗå¼ä¼šē¤¾'),
(82291, 'https://ror.org/02mxc2926', 'en', 1, 'https://ror.org/02mxc2926 Population Health Research Network');
INSERT INTO `rors` VALUES
(82292, 'https://ror.org/02mxd1a54', 'no_lang_code', 1, 'https://ror.org/02mxd1a54 Kulicke & Soffa (United States)'),
(82293, 'https://ror.org/02mzpg398', 'en', 1, 'https://ror.org/02mzpg398 Sharks Pacific'),
(82294, 'https://ror.org/02n25sf77', 'en', 1, 'https://ror.org/02n25sf77 Callaghan Innovation'),
(82295, 'https://ror.org/02n2yp822', 'en', 1, 'https://ror.org/02n2yp822 FORTH Institute of Applied and Computational Mathematics Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ†Ī±ĻĪ¼ĪæĻƒĪ¼Ī­Ī½Ļ‰Ī½ και Ī„Ļ€ĪæĪ»ĪæĪ³Ī¹ĻƒĻ„Ī¹ĪŗĻŽĪ½ ĪœĪ±ĪøĪ·Ī¼Ī±Ļ„Ī¹ĪŗĻŽĪ½'),
(82296, 'https://ror.org/02n455404', 'en', 1, 'https://ror.org/02n455404 University of Central Oklahoma UniversitƩ du centre de l''oklahoma'),
(82297, 'https://ror.org/02n5xmn14', 'en', 1, 'https://ror.org/02n5xmn14 Hunter Water'),
(82298, 'https://ror.org/02n7p8p77', 'en', 1, 'https://ror.org/02n7p8p77 Shandong Institute of Advanced Technology å±±äøœé«˜ē­‰ęŠ€ęœÆē ”ē©¶é™¢'),
(82299, 'https://ror.org/02n8xct56', 'no_lang_code', 1, 'https://ror.org/02n8xct56 Digital Health Cooperative Research Centre'),
(82300, 'https://ror.org/02nen7n37', 'no_lang_code', 1, 'https://ror.org/02nen7n37 River Publishers (Denmark)'),
(82301, 'https://ror.org/02nfcgd30', 'en', 1, 'https://ror.org/02nfcgd30 Carle Foundation Hospital'),
(82302, 'https://ror.org/02ngbsn37', 'no_lang_code', 1, 'https://ror.org/02ngbsn37 Gilson (United States)'),
(82303, 'https://ror.org/02ngnwv51', 'en', 1, 'https://ror.org/02ngnwv51 National Forage Seed Production Research Center'),
(82304, 'https://ror.org/02njymz39', 'en', 1, 'https://ror.org/02njymz39 Large Marine Vertebrates Research Institute Philippines'),
(82305, 'https://ror.org/02njz9p87', 'en', 1, 'https://ror.org/02njz9p87 Fuyang Normal University é˜œé˜³åøˆčŒƒå­¦é™¢'),
(82306, 'https://ror.org/02nph9e73', 'no_lang_code', 1, 'https://ror.org/02nph9e73 Amryt Pharma (Germany)'),
(82307, 'https://ror.org/02npm8404', 'en', 1, 'https://ror.org/02npm8404 Eidgenƶssisches Nuklearsicherheitsinspektorat Swiss Federal Nuclear Safety Inspectorate'),
(82308, 'https://ror.org/02nt7ap43', 'nl', 1, 'https://ror.org/02nt7ap43 Academie Verloskunde Amsterdam Groningen'),
(82309, 'https://ror.org/02nthw835', 'en', 1, 'https://ror.org/02nthw835 Indian Institute of Management Amritsar'),
(82310, 'https://ror.org/02nv6cz40', 'no_lang_code', 1, 'https://ror.org/02nv6cz40 Complete Omics (United States)'),
(82311, 'https://ror.org/02nx3te20', 'no_lang_code', 1, 'https://ror.org/02nx3te20 Curonz (New Zealand)'),
(82312, 'https://ror.org/02nyezm25', 'de', 1, 'https://ror.org/02nyezm25 Mammazentrum Hamburg'),
(82313, 'https://ror.org/02p0p4q62', 'en', 1, 'https://ror.org/02p0p4q62 Physical Research Laboratory'),
(82314, 'https://ror.org/02p49q920', 'en', 1, 'https://ror.org/02p49q920 National Guard Military Academy of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— гварГії України'),
(82315, 'https://ror.org/02p56s395', 'en', 1, 'https://ror.org/02p56s395 Institut za javno zdravlje Vojvodine Institute of Public Health of Vojvodina'),
(82316, 'https://ror.org/02p82xj88', 'en', 1, 'https://ror.org/02p82xj88 Astrakhan Biosphere Nature Reserve'),
(82317, 'https://ror.org/02p9cyn66', 'en', 1, 'https://ror.org/02p9cyn66 Manaaki Whenua – Landcare Research'),
(82318, 'https://ror.org/02pammg90', 'en', 1, 'https://ror.org/02pammg90 Cedars-Sinai Medical Center'),
(82319, 'https://ror.org/02pc48s35', 'no_lang_code', 1, 'https://ror.org/02pc48s35 Printnet (Hungary)'),
(82320, 'https://ror.org/02pcbw160', 'en', 1, 'https://ror.org/02pcbw160 Chihlee Institute of Technology č‡“ē†ē§‘ęŠ€å¤§å­ø'),
(82321, 'https://ror.org/02pd4fk17', 'en', 1, 'https://ror.org/02pd4fk17 Northeast Georgia Medical Center'),
(82322, 'https://ror.org/02pfaex92', 'en', 1, 'https://ror.org/02pfaex92 Orthopaedic Research Group'),
(82323, 'https://ror.org/02pgc5h43', 'no_lang_code', 1, 'https://ror.org/02pgc5h43 AOP Orphan (Austria)'),
(82324, 'https://ror.org/02phq3304', 'en', 1, 'https://ror.org/02phq3304 National Scientific Agricultural Library of the National Academy of Agrarian Sciences of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° наукова ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ŃŠæŠ¾Š“Š°Ń€ŃŃŒŠŗŠ° бібліотека ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(82325, 'https://ror.org/02pkn1m92', 'no_lang_code', 1, 'https://ror.org/02pkn1m92 Aker Arctic (Finland)'),
(82326, 'https://ror.org/02pm1jf23', 'no_lang_code', 1, 'https://ror.org/02pm1jf23 Corteva (United States)'),
(82327, 'https://ror.org/02pqjgd54', 'en', 1, 'https://ror.org/02pqjgd54 Fuzhou General Hospital of Nanjing Military Command äø­å›½äŗŗę°‘č§£ę”¾å†›č”å‹¤äæéšœéƒØé˜Ÿē¬¬ä¹ć€‡ć€‡åŒ»é™¢'),
(82328, 'https://ror.org/02pr0q451', 'en', 1, 'https://ror.org/02pr0q451 Allergy Action'),
(82329, 'https://ror.org/02pr26304', 'en', 1, 'https://ror.org/02pr26304 Park Vale Academy'),
(82330, 'https://ror.org/02psedk13', 'en', 1, 'https://ror.org/02psedk13 Wisconsin Department of Health Services'),
(82331, 'https://ror.org/02ptjtw84', 'en', 1, 'https://ror.org/02ptjtw84 Lewis Gale Medical Center'),
(82332, 'https://ror.org/02pttbd79', 'en', 1, 'https://ror.org/02pttbd79 Sacred Heart College'),
(82333, 'https://ror.org/02pv64t29', 'en', 1, 'https://ror.org/02pv64t29 Woods Hole Coastal and Marine Science Center'),
(82334, 'https://ror.org/02pvrbg60', 'en', 1, 'https://ror.org/02pvrbg60 Cochrane'),
(82335, 'https://ror.org/02px13636', 'en', 1, 'https://ror.org/02px13636 Taiwan Nurses Association'),
(82336, 'https://ror.org/02pxpz754', 'en', 1, 'https://ror.org/02pxpz754 Memphis Zoo'),
(82337, 'https://ror.org/02pzj8129', 'en', 1, 'https://ror.org/02pzj8129 St Philip''s Centre'),
(82338, 'https://ror.org/02q3q8311', 'en', 1, 'https://ror.org/02q3q8311 State University of Infrastructure and Technologies Š”Š•Š Š–ŠŠ’ŠŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢ Š†ŠŠ¤Š ŠŠ”Š¢Š Š£ŠšŠ¢Š£Š Š˜ ТА Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š†Š™'),
(82339, 'https://ror.org/02q4yjc78', 'en', 1, 'https://ror.org/02q4yjc78 International College of Defence Studies äø­å›½äŗŗę°‘č§£ę”¾å†›å›½é˜²å¤§å­¦å›½é™…é˜²åŠ”å­¦é™¢'),
(82340, 'https://ror.org/02q4z9x50', 'de', 1, 'https://ror.org/02q4z9x50 Gesellschaft für Thrombose- und Hämostaseforschung'),
(82341, 'https://ror.org/02q53mk25', 'no_lang_code', 1, 'https://ror.org/02q53mk25 Templeton Religion Trust'),
(82342, 'https://ror.org/02q94t821', 'sv', 1, 'https://ror.org/02q94t821 Sydsvensk Arkeologi'),
(82343, 'https://ror.org/02qa5hr50', 'en', 1, 'https://ror.org/02qa5hr50 Mitsui Memorial Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗäø‰äŗ•čØ˜åæµē—…é™¢'),
(82344, 'https://ror.org/02qb3f692', 'en', 1, 'https://ror.org/02qb3f692 St Anna Children''s Hospital St. Anna Kinderspital'),
(82345, 'https://ror.org/02qb8gh26', 'en', 1, 'https://ror.org/02qb8gh26 Matsumae International Foundation å…¬ē›Šč²”å›£ę³•äŗŗę¾å‰å›½éš›å‹å„½č²”å›£'),
(82346, 'https://ror.org/02qbc3192', 'en', 1, 'https://ror.org/02qbc3192 ZheJiang Academy of Agricultural Sciences ęµ™ę±Ÿēœå†œäøšē§‘å­¦é™¢'),
(82347, 'https://ror.org/02qbrk786', 'en', 1, 'https://ror.org/02qbrk786 Carl von LinnƩ Clinic'),
(82348, 'https://ror.org/02qcscp23', 'en', 1, 'https://ror.org/02qcscp23 Kensington Health'),
(82349, 'https://ror.org/02qczxe62', 'en', 1, 'https://ror.org/02qczxe62 Black Rock Forest Consortium'),
(82350, 'https://ror.org/02qdq4a41', 'en', 1, 'https://ror.org/02qdq4a41 Nippon Institute for Biological Science äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(82351, 'https://ror.org/02qeczg43', 'en', 1, 'https://ror.org/02qeczg43 St. Mary''s Medical Center'),
(82352, 'https://ror.org/02qezmz13', 'en', 1, 'https://ror.org/02qezmz13 Centre commun de recherche Centro Comune di Ricerca Gemeinsame Forschungsstelle Joint Research Centre'),
(82353, 'https://ror.org/02qf2tx24', 'no_lang_code', 1, 'https://ror.org/02qf2tx24 Kwansei Gakuin University 関脿学院大学'),
(82354, 'https://ror.org/02qgbtz69', 'no_lang_code', 1, 'https://ror.org/02qgbtz69 Xtretch (China) ęžå±•ē§‘ęŠ€'),
(82355, 'https://ror.org/02qgpm702', 'en', 1, 'https://ror.org/02qgpm702 Aioi City Board of Education ē›øē”Ÿåø‚ę•™č‚²å§”å“”ä¼š'),
(82356, 'https://ror.org/02qhjtc16', 'en', 1, 'https://ror.org/02qhjtc16 Pelita Harapan University'),
(82357, 'https://ror.org/02qjn6j31', 'id', 1, 'https://ror.org/02qjn6j31 Institut Agama Kristen Negeri Ambon State Institute For Christian Studies Ambon'),
(82358, 'https://ror.org/02qmnbs26', 'en', 1, 'https://ror.org/02qmnbs26 Nopparat Rajathanee Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø™ąøžąø£ąø±ąø•ąø™ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(82359, 'https://ror.org/02qqez544', 'en', 1, 'https://ror.org/02qqez544 Amada Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¤©ē”°č²”å›£'),
(82360, 'https://ror.org/02qqjk369', 'en', 1, 'https://ror.org/02qqjk369 Institute for Digitalisation of Education of the NAES of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цифровізації освіти ŠŠŠŸŠ України'),
(82361, 'https://ror.org/02qqnbq97', 'en', 1, 'https://ror.org/02qqnbq97 Dale Bumpers Small Farms Research Center'),
(82362, 'https://ror.org/02qr7kk14', 'no_lang_code', 1, 'https://ror.org/02qr7kk14 AB Vista (Germany)'),
(82363, 'https://ror.org/02qr8sv28', 'en', 1, 'https://ror.org/02qr8sv28 Sutter Davis Hospital'),
(82364, 'https://ror.org/02qsdbe73', 'pt', 1, 'https://ror.org/02qsdbe73 Instituto Uniemp'),
(82365, 'https://ror.org/02qsepw74', 'en', 1, 'https://ror.org/02qsepw74 Aichi Institute of Technology ę„›ēŸ„å·„ę„­å¤§å­¦'),
(82366, 'https://ror.org/02qtmtk60', 'fi', 1, 'https://ror.org/02qtmtk60 Satakunnan Sairaanhoitopiirin'),
(82367, 'https://ror.org/02qtq4y04', 'en', 1, 'https://ror.org/02qtq4y04 International Slavic University Gavrilo Romanovich Derzhavin ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ā€œŠ“Š°Š²Ń€ŠøŠ»Š¾ Романович Š”ŠµŃ€Š¶Š°Š²ŠøŠ½ā€ ŠœŠµŃ“ŃƒŠ½Š°Ń€Š¾Š“ŠµŠ½ Длавјански Универзитет Гаврило Романович Державин'),
(82368, 'https://ror.org/02qvwkt51', 'no_lang_code', 1, 'https://ror.org/02qvwkt51 Tigireksky Nature Reserve Тигирекский заповеГник'),
(82369, 'https://ror.org/02qx6zf82', 'en', 1, 'https://ror.org/02qx6zf82 Center for Translational Research in Neuroimaging and Data Science'),
(82370, 'https://ror.org/02qxkhm81', 'en', 1, 'https://ror.org/02qxkhm81 Hebei University of Chinese Medicine'),
(82371, 'https://ror.org/02qxryv39', 'en', 1, 'https://ror.org/02qxryv39 International Water Management Institute'),
(82372, 'https://ror.org/02qyzaf42', 'en', 1, 'https://ror.org/02qyzaf42 The Cancer Imaging Archive'),
(82373, 'https://ror.org/02qztda51', 'es', 1, 'https://ror.org/02qztda51 Pontifical Catholic University of Ecuador Pontificia Universidad Católica del Ecuador'),
(82374, 'https://ror.org/02r0ks990', 'no_lang_code', 1, 'https://ror.org/02r0ks990 Banque Canadienne ImpƩriale de Commerce Canadian Imperial Bank of Commerce (Canada)'),
(82375, 'https://ror.org/02r276210', 'en', 1, 'https://ror.org/02r276210 Avondale University'),
(82376, 'https://ror.org/02r2k1c68', 'en', 1, 'https://ror.org/02r2k1c68 National Institute of Science Education and Research ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą“Øąµˆą“øąµ¼'),
(82377, 'https://ror.org/02r2sc792', 'fr', 1, 'https://ror.org/02r2sc792 Laboratoire Recherche Informatique Maisonneuve'),
(82378, 'https://ror.org/02r383j45', 'en', 1, 'https://ror.org/02r383j45 Punjab Remote Sensing Centre'),
(82379, 'https://ror.org/02r3nf527', 'en', 1, 'https://ror.org/02r3nf527 IITB-Monash Research Academy'),
(82380, 'https://ror.org/02r4nmf56', 'en', 1, 'https://ror.org/02r4nmf56 International Technological University'),
(82381, 'https://ror.org/02r5q9a81', 'es', 1, 'https://ror.org/02r5q9a81 National Autonomous University of Chota Universidad Nacional Autónoma de Chota'),
(82382, 'https://ror.org/02r6fpx29', 'en', 1, 'https://ror.org/02r6fpx29 National Health Research Institutes åœ‹å®¶č”›ē”Ÿē ”ē©¶é™¢'),
(82383, 'https://ror.org/02r6x2c23', 'no_lang_code', 1, 'https://ror.org/02r6x2c23 Gobio (Germany)'),
(82384, 'https://ror.org/02r946p38', 'en', 1, 'https://ror.org/02r946p38 Kagoshima City Hospital 鹿児島市立病院'),
(82385, 'https://ror.org/02r9ghz18', 'en', 1, 'https://ror.org/02r9ghz18 Russian Ilizarov Scientific Center for Restorative Traumatology and Orthopaedics Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ā«Š’Š¾ŃŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń Ń‚Ń€Š°Š²Š¼Š°Ń‚Š¾Š»Š¾Š³ŠøŃ Šø Š¾Ń€Ń‚Š¾ŠæŠµŠ“ŠøŃĀ» имени акаГемика Š“. А. Š˜Š»ŠøŠ·Š°Ń€Š¾Š²Š°'),
(82386, 'https://ror.org/02rcfyf15', 'en', 1, 'https://ror.org/02rcfyf15 Golisano Children''s Hospital'),
(82387, 'https://ror.org/02rdmaa30', 'no_lang_code', 1, 'https://ror.org/02rdmaa30 ChemBridge (United States)'),
(82388, 'https://ror.org/02rfcx125', 'no_lang_code', 1, 'https://ror.org/02rfcx125 Maple Leaf Foods'),
(82389, 'https://ror.org/02rgrnk13', 'en', 1, 'https://ror.org/02rgrnk13 Algarve Biomedical Center'),
(82390, 'https://ror.org/02rh3fk68', 'no_lang_code', 1, 'https://ror.org/02rh3fk68 Senzoku Gakuen College of Music ę“—č¶³å­¦åœ’éŸ³ę„½å¤§å­¦'),
(82391, 'https://ror.org/02rjzcj48', 'no_lang_code', 1, 'https://ror.org/02rjzcj48 RedCastle Resources (United States)'),
(82392, 'https://ror.org/02rkjsq72', 'no_lang_code', 1, 'https://ror.org/02rkjsq72 SAS Institute (Ireland)'),
(82393, 'https://ror.org/02rqvrp93', 'en', 1, 'https://ror.org/02rqvrp93 Meiji University ę˜Žę²»å¤§å­¦'),
(82394, 'https://ror.org/02rv5nr81', 'en', 1, 'https://ror.org/02rv5nr81 Canada East Spine Centre'),
(82395, 'https://ror.org/02rx3c188', 'nl', 1, 'https://ror.org/02rx3c188 Leidsche Rijn Julius Gezondheidscentra, Leidsche Rijn Julius Health Centers'),
(82396, 'https://ror.org/02rxmsn03', 'no_lang_code', 1, 'https://ror.org/02rxmsn03 Notal Vision (Israel)'),
(82397, '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'),
(82398, 'https://ror.org/02s06n261', 'no_lang_code', 1, 'https://ror.org/02s06n261 Chugoku Central Hospital 中国中央病院'),
(82399, 'https://ror.org/02s0c9732', 'en', 1, 'https://ror.org/02s0c9732 Hope Funds for Cancer Research'),
(82400, 'https://ror.org/02s3d9n87', 'no_lang_code', 1, 'https://ror.org/02s3d9n87 Nippon Shokubai (Japan) ę Ŗå¼ä¼šē¤¾ę—„ęœ¬č§¦åŖ’'),
(82401, 'https://ror.org/02s3xv195', 'en', 1, 'https://ror.org/02s3xv195 Amundsen Science'),
(82402, 'https://ror.org/02s4nx965', 'en', 1, 'https://ror.org/02s4nx965 Bayan College'),
(82403, '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'),
(82404, 'https://ror.org/02s5x7p23', 'pt', 1, 'https://ror.org/02s5x7p23 Instituto de Tecnologia e Pesquisa'),
(82405, 'https://ror.org/02s6byd36', 'en', 1, 'https://ror.org/02s6byd36 Center for Outcomes Research in Liver Diseases'),
(82406, 'https://ror.org/02s723j51', 'en', 1, 'https://ror.org/02s723j51 Sam Rayburn Memorial Veterans Center'),
(82407, 'https://ror.org/02s7nat60', 'no_lang_code', 1, 'https://ror.org/02s7nat60 Nihon Nohyaku (Japan) ę—„ęœ¬č¾²č–¬ę Ŗå¼ä¼šē¤¾'),
(82408, 'https://ror.org/02s8j2573', 'en', 1, 'https://ror.org/02s8j2573 Montavid Termodinamikai Kutatócsoport Montavid Thermodynamic Research Group'),
(82409, 'https://ror.org/02s971a50', 'no_lang_code', 1, 'https://ror.org/02s971a50 De Beers (Canada)'),
(82410, '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 Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ł‡ŁˆŁŠ لمهن Ų§Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŁƒŁˆŁŠŁ† لجهة الدار Ų§Ł„ŲØŁŠŲ¶Ų§Ų” Ų³Ų·Ų§ŲŖ'),
(82411, 'https://ror.org/02scvmk68', 'en', 1, 'https://ror.org/02scvmk68 Southern Institute of Technology'),
(82412, 'https://ror.org/02sd7jn56', 'en', 1, 'https://ror.org/02sd7jn56 Institute of Chemistry of New Materials of the National Academy of Sciences of Belarus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии новых материалов ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(82413, 'https://ror.org/02sdafq46', 'en', 1, 'https://ror.org/02sdafq46 Centre of Excellence for Advanced Materials äøœčŽžęę–™åŸŗå› é«˜ē­‰ē†å·„ē ”ē©¶é™¢'),
(82414, 'https://ror.org/02skgb336', 'no_lang_code', 1, 'https://ror.org/02skgb336 JAć‹ćæć¤ćŒåŽšē”Ÿé€£äøŠéƒ½č³€ē·åˆē—…é™¢ Kamituga General Hospital'),
(82415, 'https://ror.org/02sm2qm88', 'en', 1, 'https://ror.org/02sm2qm88 Government of Brunei Darussalam'),
(82416, 'https://ror.org/02smvjf25', 'no_lang_code', 1, 'https://ror.org/02smvjf25 1Cellbio (United States)'),
(82417, 'https://ror.org/02sp8bz52', 'en', 1, 'https://ror.org/02sp8bz52 Intermountain St. George Regional Hospital'),
(82418, 'https://ror.org/02sptxp91', 'en', 1, 'https://ror.org/02sptxp91 Ochsner Baptist Medical Center'),
(82419, 'https://ror.org/02sr8bk02', 'no_lang_code', 1, 'https://ror.org/02sr8bk02 Aivok (Russia)'),
(82420, 'https://ror.org/02srvn192', 'en', 1, 'https://ror.org/02srvn192 International Institute for Environment and Development'),
(82421, 'https://ror.org/02ss4n480', 'de', 1, 'https://ror.org/02ss4n480 Hirslanden Klinik St. Anna'),
(82422, 'https://ror.org/02stey378', 'en', 1, 'https://ror.org/02stey378 The University of Notre Dame Australia'),
(82423, 'https://ror.org/02stw2895', 'es', 1, 'https://ror.org/02stw2895 BenemƩrita Escuela Normal "Manuel Ɓvila Camacho"'),
(82424, 'https://ror.org/02swff503', 'en', 1, 'https://ror.org/02swff503 Ahmedabad University અમદાવાદ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(82425, 'https://ror.org/02swnjw32', 'en', 1, 'https://ror.org/02swnjw32 Society of Women Engineers'),
(82426, 'https://ror.org/02sx86615', 'en', 1, 'https://ror.org/02sx86615 Shenzhen Institute of Neuroscience ę·±åœ³åø‚ē„žē»ē§‘å­¦ē ”ē©¶é™¢'),
(82427, 'https://ror.org/02syc1z20', 'no_lang_code', 1, 'https://ror.org/02syc1z20 Iamgold (Canada)'),
(82428, 'https://ror.org/02szhdk88', 'en', 1, 'https://ror.org/02szhdk88 Kazakh University Ways of Communications'),
(82429, 'https://ror.org/02szjhr12', 'en', 1, 'https://ror.org/02szjhr12 Renal Pathology Society'),
(82430, 'https://ror.org/02szmmq82', 'en', 1, 'https://ror.org/02szmmq82 Akita University Hospital ē§‹ē”°å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(82431, 'https://ror.org/02t11pf93', 'no_lang_code', 1, 'https://ror.org/02t11pf93 Veracyte (United States)'),
(82432, 'https://ror.org/02t194v04', 'en', 1, 'https://ror.org/02t194v04 Sri Sathya Sai Institute of Higher Medical Sciences'),
(82433, 'https://ror.org/02t2qwf81', 'en', 1, 'https://ror.org/02t2qwf81 University of Peshawar Ų¬Ų§Ł…Ų¹Ū‚ پؓاور'),
(82434, 'https://ror.org/02t359070', 'en', 1, 'https://ror.org/02t359070 Kazan State Academy of Veterinary Medicine named after N.E. Bauman ŠšŠ°Š·Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ветеринарной меГицины имени Š.Š­. Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(82435, 'https://ror.org/02t378715', 'en', 1, 'https://ror.org/02t378715 Exxon Valdez Oil Spill Trustee Council'),
(82436, 'https://ror.org/02t3f4288', 'es', 1, 'https://ror.org/02t3f4288 Centro de Medicina Avanzada Dr. Abel Gonzalez'),
(82437, 'https://ror.org/02t6fhh24', 'no_lang_code', 1, 'https://ror.org/02t6fhh24 Just Associates (United States)'),
(82438, 'https://ror.org/02t6wt791', 'en', 1, 'https://ror.org/02t6wt791 Al-Ayen University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹ŁŠŁ†'),
(82439, 'https://ror.org/02t7bvx21', 'en', 1, 'https://ror.org/02t7bvx21 UNESCO Institute for Statistics'),
(82440, 'https://ror.org/02t8ts543', 'no_lang_code', 1, 'https://ror.org/02t8ts543 Celescreen (France)'),
(82441, 'https://ror.org/02tb2yp70', 'en', 1, 'https://ror.org/02tb2yp70 CONEM Autism Research'),
(82442, 'https://ror.org/02tc7rm90', 'no_lang_code', 1, 'https://ror.org/02tc7rm90 Petronas (Malaysia)'),
(82443, 'https://ror.org/02td4ph55', 'no_lang_code', 1, 'https://ror.org/02td4ph55 Hologic (United States)'),
(82444, 'https://ror.org/02tebe473', 'en', 1, 'https://ror.org/02tebe473 Medical Plus'),
(82445, 'https://ror.org/02tf48g55', 'en', 1, 'https://ror.org/02tf48g55 FORTH Institute of Computer Science Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ€Ī¹ĻƒĻ„Ī®Ī¼Ī·Ļ‚ Ī„Ļ€ĪæĪ»ĪæĪ³Ī¹ĻƒĻ„ĻŽĪ½'),
(82446, 'https://ror.org/02thd8n48', 'no_lang_code', 1, 'https://ror.org/02thd8n48 Midatech Pharma (United Kingdom)'),
(82447, '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'),
(82448, 'https://ror.org/02thnee40', 'no_lang_code', 1, 'https://ror.org/02thnee40 Keiyukai Sapporo Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęµä½‘ä¼šęœ­å¹Œē—…é™¢'),
(82449, 'https://ror.org/02tjj4k70', 'en', 1, 'https://ror.org/02tjj4k70 St.Amant'),
(82450, 'https://ror.org/02tmhn414', 'en', 1, 'https://ror.org/02tmhn414 Garraithe NÔisiúnta na Lus National Botanic Gardens of Ireland'),
(82451, 'https://ror.org/02tp79578', 'no_lang_code', 1, 'https://ror.org/02tp79578 Ark Therapeutic (United States)'),
(82452, 'https://ror.org/02tqqrq23', 'nl', 1, 'https://ror.org/02tqqrq23 Flevoziekenhuis'),
(82453, 'https://ror.org/02trrjx85', 'en', 1, 'https://ror.org/02trrjx85 Institute of Molecular Pathology and Pathomorphology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ патологии Šø патоморфологии'),
(82454, 'https://ror.org/02ts2sn48', 'en', 1, 'https://ror.org/02ts2sn48 Connecticut Geological Survey'),
(82455, 'https://ror.org/02tsjqn73', 'en', 1, 'https://ror.org/02tsjqn73 Nagaoka Red Cross Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é•·å²”čµ¤åå­—ē—…é™¢'),
(82456, 'https://ror.org/02tspge21', 'no_lang_code', 1, 'https://ror.org/02tspge21 Alcon (Japan)'),
(82457, 'https://ror.org/02tsqtg57', 'en', 1, 'https://ror.org/02tsqtg57 Maxwell Institute for Mathematical Sciences'),
(82458, 'https://ror.org/02tt21044', 'en', 1, 'https://ror.org/02tt21044 RIKEN Center for Quantum Computing å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ é‡å­ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(82459, 'https://ror.org/02ttsvs52', 'en', 1, 'https://ror.org/02ttsvs52 Saint Joseph Hospital'),
(82460, 'https://ror.org/02tvjer66', 'en', 1, 'https://ror.org/02tvjer66 National Quality Inspection and Testing Center for Surveying and Mapping Products å›½å®¶ęµ‹ē»˜äŗ§å“č“Øé‡ę£€éŖŒęµ‹čÆ•äø­åæƒ'),
(82461, 'https://ror.org/02tvzxs09', 'no_lang_code', 1, 'https://ror.org/02tvzxs09 Gryaab (Sweden)'),
(82462, 'https://ror.org/02twwap54', 'no_lang_code', 1, 'https://ror.org/02twwap54 Fanuc (Japan) ćƒ•ć‚”ćƒŠćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(82463, 'https://ror.org/02ty3a980', 'en', 1, 'https://ror.org/02ty3a980 National Institute of Animal Science'),
(82464, 'https://ror.org/02tygyj04', 'en', 1, 'https://ror.org/02tygyj04 State Key Laboratory of Gas Disaster Detecting, Preventing and Emergency Controlling ē“¦ę–Æē¾å®³ē›‘ęŽ§äøŽåŗ”ę€„ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(82465, 'https://ror.org/02v09qm69', 'en', 1, 'https://ror.org/02v09qm69 Jackson State Community College'),
(82466, 'https://ror.org/02v4mmk55', 'en', 1, 'https://ror.org/02v4mmk55 Indonesia Defense University Universitas Pertahanan Indonesia'),
(82467, 'https://ror.org/02v5bck07', 'en', 1, 'https://ror.org/02v5bck07 State Administration of Work Safety å›½å®¶å®‰å…Øē”Ÿäŗ§ē›‘ē£ē®”ē†ę€»å±€'),
(82468, 'https://ror.org/02v5zv622', 'no_lang_code', 1, 'https://ror.org/02v5zv622 PharmaZell (Germany)'),
(82469, 'https://ror.org/02v7v1p25', 'en', 1, 'https://ror.org/02v7v1p25 American Society for Metabolic and Bariatric Surgery'),
(82470, '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" Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр «ВлаГикавказский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук»'),
(82471, 'https://ror.org/02v9xb273', 'pt', 1, 'https://ror.org/02v9xb273 Centro UniversitƔrio UniProcessus'),
(82472, 'https://ror.org/02vaajx27', 'en', 1, 'https://ror.org/02vaajx27 Museums Galleries Scotland'),
(82473, 'https://ror.org/02vck8g64', 'en', 1, 'https://ror.org/02vck8g64 Japan Proton Accelerator Research Complex å¤§å¼·åŗ¦é™½å­åŠ é€Ÿå™Øę–½čØ­'),
(82474, 'https://ror.org/02vcxyt85', 'es', 1, 'https://ror.org/02vcxyt85 Axencia Galega de Innovacion'),
(82475, 'https://ror.org/02vdmpp49', 'en', 1, 'https://ror.org/02vdmpp49 Microscopy Society of America'),
(82476, 'https://ror.org/02vfd3q08', 'en', 1, 'https://ror.org/02vfd3q08 Memorial Regional Medical Center'),
(82477, 'https://ror.org/02vg22c33', 'en', 1, 'https://ror.org/02vg22c33 Desert Research Institute'),
(82478, 'https://ror.org/02vg6t997', 'no_lang_code', 1, 'https://ror.org/02vg6t997 Danubius University VysokÔ Ŕkola Danubius'),
(82479, 'https://ror.org/02vh3sc45', 'en', 1, 'https://ror.org/02vh3sc45 Dart Center for Journalism and Trauma'),
(82480, 'https://ror.org/02vhz6861', 'no_lang_code', 1, 'https://ror.org/02vhz6861 Monohakobi Technology Institute (Japan) ę Ŗå¼ä¼šē¤¾MTI'),
(82481, 'https://ror.org/02vk0sm33', 'en', 1, 'https://ror.org/02vk0sm33 Gas Technology Institute'),
(82482, 'https://ror.org/02vkbzw76', 'no_lang_code', 1, 'https://ror.org/02vkbzw76 PAREXEL International (United States)'),
(82483, 'https://ror.org/02vkce854', 'en', 1, 'https://ror.org/02vkce854 Kellogg Biological Station Long Term Ecological Research'),
(82484, 'https://ror.org/02vkw2772', 'de', 1, 'https://ror.org/02vkw2772 Allgemeiner Deutscher Hochschulsportverband German University Sports Federation'),
(82485, 'https://ror.org/02vmz1g97', 'no_lang_code', 1, 'https://ror.org/02vmz1g97 ESI Group (Germany)'),
(82486, 'https://ror.org/02vndcn56', 'en', 1, 'https://ror.org/02vndcn56 Markfield Institute of Higher Education'),
(82487, 'https://ror.org/02vnjj382', 'en', 1, 'https://ror.org/02vnjj382 Krishna Institute of Medical Sciences Deemed University'),
(82488, 'https://ror.org/02vpyz736', 'en', 1, 'https://ror.org/02vpyz736 Western Regional Hospital'),
(82489, 'https://ror.org/02vqknm77', 'no_lang_code', 1, 'https://ror.org/02vqknm77 Alcon (Canada)'),
(82490, 'https://ror.org/02vqxhy72', 'no_lang_code', 1, 'https://ror.org/02vqxhy72 Renovo Research (United States)'),
(82491, 'https://ror.org/02vr0ne26', 'en', 1, 'https://ror.org/02vr0ne26 European Institute of Oncology Istituto Europeo di Oncologia'),
(82492, 'https://ror.org/02vv9p907', 'en', 1, 'https://ror.org/02vv9p907 Nordic Optical Telescope'),
(82493, 'https://ror.org/02vxbm786', 'en', 1, 'https://ror.org/02vxbm786 The Retina Center'),
(82494, 'https://ror.org/02vyk6z19', 'en', 1, 'https://ror.org/02vyk6z19 Argentine Antarctic Institute Instituto AntƔrtico Argentino'),
(82495, 'https://ror.org/02w0rsp42', 'en', 1, 'https://ror.org/02w0rsp42 Conseil des relations internationales de MontrƩal Montreal Council on Foreign Relations'),
(82496, 'https://ror.org/02w1jan86', 'en', 1, 'https://ror.org/02w1jan86 Japanese Society of Anesthesiologist å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬éŗ»é…”ē§‘å­¦ä¼š'),
(82497, 'https://ror.org/02w2fbz15', 'en', 1, 'https://ror.org/02w2fbz15 McGill Genome Centre'),
(82498, 'https://ror.org/02w2xzg43', 'no_lang_code', 1, 'https://ror.org/02w2xzg43 CRV (Netherlands)'),
(82499, 'https://ror.org/02w3v2f07', 'en', 1, 'https://ror.org/02w3v2f07 Canadian Centre for Electron Microscopy'),
(82500, 'https://ror.org/02w52zt87', 'en', 1, 'https://ror.org/02w52zt87 Ministry of Education and Culture'),
(82501, 'https://ror.org/02w5edw59', 'sv', 1, 'https://ror.org/02w5edw59 VƤrmlands LƤns Landsting'),
(82502, 'https://ror.org/02w6dqa48', 'no_lang_code', 1, 'https://ror.org/02w6dqa48 Cipla (India) ą¤øą¤æą¤Ŗą„ą¤²ą¤¾ ą®šą®æą®ŖąÆą®²ą®¾'),
(82503, 'https://ror.org/02w6k4f12', 'nl', 1, 'https://ror.org/02w6k4f12 Stichting HIV Monitoring'),
(82504, 'https://ror.org/02wat9f69', 'no_lang_code', 1, 'https://ror.org/02wat9f69 IBM (United Kingdom)'),
(82505, 'https://ror.org/02wavzm11', 'en', 1, 'https://ror.org/02wavzm11 Konza Prairie Long Term Ecological Research'),
(82506, 'https://ror.org/02wc05d26', 'en', 1, 'https://ror.org/02wc05d26 Health City Institute'),
(82507, 'https://ror.org/02wcsw791', 'no_lang_code', 1, 'https://ror.org/02wcsw791 Osaka Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹å¤§é˜Ŗē—…é™¢'),
(82508, 'https://ror.org/02weea238', 'en', 1, 'https://ror.org/02weea238 Then Try This'),
(82509, 'https://ror.org/02wgf5858', 'no_lang_code', 1, 'https://ror.org/02wgf5858 Surugadai Nihon University Hospital ę—„ęœ¬å¤§å­¦ē—…é™¢'),
(82510, 'https://ror.org/02wgx3e98', 'en', 1, 'https://ror.org/02wgx3e98 Sohag University Ų¬Ų§Ł…Ų¹Ų© Ų³ŁˆŁ‡Ų§Ų¬'),
(82511, 'https://ror.org/02wm03a77', 'en', 1, 'https://ror.org/02wm03a77 Hanazono University čŠ±åœ’å¤§å­¦'),
(82512, 'https://ror.org/02wn55517', 'en', 1, 'https://ror.org/02wn55517 African Conservation Centre'),
(82513, 'https://ror.org/02wncmm17', 'en', 1, 'https://ror.org/02wncmm17 Hellenic Health Foundation Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ΄γείας'),
(82514, 'https://ror.org/02wnz3c50', 'en', 1, 'https://ror.org/02wnz3c50 International Academy of Business and New Technologies ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ бизнеса Šø новых технологий'),
(82515, 'https://ror.org/02wp9c512', 'en', 1, 'https://ror.org/02wp9c512 Association of Southeast Asian Nations'),
(82516, 'https://ror.org/02wqw8685', 'en', 1, 'https://ror.org/02wqw8685 TeamConnor Childhood Cancer Foundation'),
(82517, 'https://ror.org/02wrf7q59', 'en', 1, 'https://ror.org/02wrf7q59 Palace Museum ę•…å®«åšē‰©é¦†'),
(82518, 'https://ror.org/02wv1rw66', 'no_lang_code', 1, 'https://ror.org/02wv1rw66 Oxurion (Belgium)'),
(82519, 'https://ror.org/02wvcn790', 'no_lang_code', 1, 'https://ror.org/02wvcn790 Carmel (Israel) ×›×Ø×ž×œ בע"מ'),
(82520, 'https://ror.org/02wymx149', 'en', 1, 'https://ror.org/02wymx149 The Mining, Geological & Metallurgical Insititute of India'),
(82521, 'https://ror.org/02wz7nx80', 'no_lang_code', 1, 'https://ror.org/02wz7nx80 Kyoto Biken Laboratories (Japan) ę Ŗå¼ä¼šē¤¾å¾®ē”Ÿē‰©åŒ–å­¦ē ”ē©¶ę‰€'),
(82522, 'https://ror.org/02wz95e76', 'en', 1, 'https://ror.org/02wz95e76 Taiwan Clinical Oncology Research Foundation č²”åœ˜ę³•äŗŗå°ē£ē™Œē—‡č‡ØåŗŠē ”ē©¶ē™¼å±•åŸŗé‡‘ęœƒ'),
(82523, 'https://ror.org/02x011m46', 'en', 1, 'https://ror.org/02x011m46 Baystate Health'),
(82524, 'https://ror.org/02x1cd136', 'no_lang_code', 1, 'https://ror.org/02x1cd136 BG Medicine (United States)'),
(82525, 'https://ror.org/02x3bf117', 'no_lang_code', 1, 'https://ror.org/02x3bf117 Mediprobe Research (Canada)'),
(82526, 'https://ror.org/02x59h163', 'no_lang_code', 1, 'https://ror.org/02x59h163 Arrien Pharmaceuticals (United States)'),
(82527, 'https://ror.org/02x66tk73', 'en', 1, 'https://ror.org/02x66tk73 Egypt-Japan University of Science and Technology الجامعة Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ų§Ł„ŁŠŲ§ŲØŲ§Ł†ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ā€Ž'),
(82528, 'https://ror.org/02x6n9690', 'de', 1, 'https://ror.org/02x6n9690 Landesamt für Geologie, Rohstoffe und Bergbau'),
(82529, 'https://ror.org/02x6rcb77', 'nl', 1, 'https://ror.org/02x6rcb77 Maxima Medical Centre MƔxima Medisch Centrum'),
(82530, 'https://ror.org/02x8mjk39', 'en', 1, 'https://ror.org/02x8mjk39 Tasmanian Land Conservancy'),
(82531, 'https://ror.org/02x96h768', 'en', 1, 'https://ror.org/02x96h768 Kumamoto Prefectural Educaiton Center ē†Šęœ¬ēœŒē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(82532, 'https://ror.org/02xbecd21', 'en', 1, 'https://ror.org/02xbecd21 Oregon Water Resources Department'),
(82533, 'https://ror.org/02xcxe208', 'no_lang_code', 1, 'https://ror.org/02xcxe208 Nevro (United States)'),
(82534, 'https://ror.org/02xjx7622', 'en', 1, 'https://ror.org/02xjx7622 Renown Regional Medical Center'),
(82535, 'https://ror.org/02xk4gn16', 'en', 1, 'https://ror.org/02xk4gn16 Centro Astronómico de Yebes Yebes Observatory'),
(82536, 'https://ror.org/02xm06c56', 'es', 1, 'https://ror.org/02xm06c56 Interamerican Open University Universidad Abierta Interamericana'),
(82537, 'https://ror.org/02xnraw58', 'no_lang_code', 1, 'https://ror.org/02xnraw58 NOF Corporation (Japan) ę—„ę²¹ę Ŗå¼ä¼šē¤¾'),
(82538, 'https://ror.org/02xnwme44', 'no_lang_code', 1, 'https://ror.org/02xnwme44 Ulvac (Japan) ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ćƒćƒƒć‚Æ'),
(82539, 'https://ror.org/02xp2c270', 'en', 1, 'https://ror.org/02xp2c270 Main Astronomical Observatory Головна астрономічна Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€Ń–Ń'),
(82540, 'https://ror.org/02xqrgv78', 'es', 1, 'https://ror.org/02xqrgv78 Ministerio de Ciencia, TecnologĆ­a y Medio Ambiente'),
(82541, 'https://ror.org/02xr0yr66', 'en', 1, 'https://ror.org/02xr0yr66 National Clonal Germplasm Repository for Tree Fruit, Nut Crops, and Grapes'),
(82542, 'https://ror.org/02xsf1j07', 'no_lang_code', 1, 'https://ror.org/02xsf1j07 Systems, Applications, and Products in Data Processing (Russia)'),
(82543, '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'),
(82544, 'https://ror.org/02xwdfp10', 'no_lang_code', 1, 'https://ror.org/02xwdfp10 Genemo (United States)'),
(82545, 'https://ror.org/02xwnwd15', 'en', 1, 'https://ror.org/02xwnwd15 Directorate of Health and Family Welfare Government of Chhattisgarh ą¤øą¤‚ą¤šą¤¾ą¤²ą¤Øą¤¾ą¤²ą¤Æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤ą¤µą¤‚ परिवार ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ विभाग ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą„ शासन'),
(82546, 'https://ror.org/02xwzkh23', 'en', 1, 'https://ror.org/02xwzkh23 American Society of Association Executives'),
(82547, 'https://ror.org/02y2f3e22', 'en', 1, 'https://ror.org/02y2f3e22 Mitsubishi Foundation å…¬ē›Šč²”å›£ę³•äŗŗäø‰č±č²”å›£'),
(82548, 'https://ror.org/02y30tw62', 'en', 1, 'https://ror.org/02y30tw62 Chronic Disease Research Foundation'),
(82549, 'https://ror.org/02y41xn75', 'en', 1, 'https://ror.org/02y41xn75 State Nature Reserve "Bolshaya Kokshaga" Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник Ā«Š‘Š¾Š»ŃŒŃˆŠ°Ń Кокшага»'),
(82550, 'https://ror.org/02y707x62', 'en', 1, 'https://ror.org/02y707x62 Ethiopian Public Health Association'),
(82551, 'https://ror.org/02y750690', 'no_lang_code', 1, 'https://ror.org/02y750690 Saddle Point Science (United Kingdom)'),
(82552, 'https://ror.org/02y7rck89', 'en', 1, 'https://ror.org/02y7rck89 Dali University 大理学院'),
(82553, 'https://ror.org/02y8mb071', 'en', 1, 'https://ror.org/02y8mb071 Sustainable Sciences Institute'),
(82554, 'https://ror.org/02y8nb297', 'en', 1, 'https://ror.org/02y8nb297 University of Alaska Southeast UniversitƩ de l''alaska du sud-est'),
(82555, 'https://ror.org/02y984316', 'en', 1, 'https://ror.org/02y984316 European Society for Clinical Nutrition and Metabolism'),
(82556, 'https://ror.org/02yas1717', 'en', 1, 'https://ror.org/02yas1717 Bat Conservation Trust'),
(82557, 'https://ror.org/02ycyys66', 'it', 1, 'https://ror.org/02ycyys66 Istituto Ortopedico Rizzoli Rizzoli Orthopaedic Institute'),
(82558, 'https://ror.org/02yd50j87', 'en', 1, 'https://ror.org/02yd50j87 Lincoln University College'),
(82559, 'https://ror.org/02yemx219', 'no_lang_code', 1, 'https://ror.org/02yemx219 Ebara (Japan) ę Ŗå¼ä¼šē¤¾čåŽŸč£½ä½œę‰€'),
(82560, 'https://ror.org/02yerkk86', 'en', 1, 'https://ror.org/02yerkk86 Afagh Higher Education Institute مؤسسه Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ آفاق'),
(82561, 'https://ror.org/02ygbbs43', 'en', 1, 'https://ror.org/02ygbbs43 Beijing Municipal Ecological and Environmental Monitoring Center åŒ—äŗ¬åø‚ēŽÆå¢ƒäæęŠ¤ē›‘ęµ‹äø­åæƒ'),
(82562, 'https://ror.org/02ygfdv70', 'en', 1, 'https://ror.org/02ygfdv70 Fulbright University Vietnam ĐẔi hį»c Fulbright Việt Nam'),
(82563, 'https://ror.org/02yhdfk86', 'en', 1, 'https://ror.org/02yhdfk86 Associação Brasileira de Editores Científicos Brazilian Association of Scientific Editors'),
(82564, 'https://ror.org/02yjcxz86', 'en', 1, 'https://ror.org/02yjcxz86 American Institute of Chemical Engineers'),
(82565, 'https://ror.org/02yjwvr35', 'es', 1, 'https://ror.org/02yjwvr35 Centro de Documentación de las Artes Escénicas y de la Música'),
(82566, 'https://ror.org/02yk2p779', 'en', 1, 'https://ror.org/02yk2p779 International Society of Automation'),
(82567, 'https://ror.org/02ynw0r73', 'en', 1, 'https://ror.org/02ynw0r73 Primary HealthCare'),
(82568, 'https://ror.org/02ypbdc20', 'en', 1, 'https://ror.org/02ypbdc20 Betanien Hospital Betanien sykehus'),
(82569, 'https://ror.org/02yqt2385', 'no_lang_code', 1, 'https://ror.org/02yqt2385 China Three Gorges Corporation (China) äø­å›½é•æę±Ÿäø‰å³”é›†å›¢å…¬åø'),
(82570, 'https://ror.org/02yr08r26', 'en', 1, 'https://ror.org/02yr08r26 Climate Analytics'),
(82571, 'https://ror.org/02yxdv803', 'en', 1, 'https://ror.org/02yxdv803 Jain Family Institute'),
(82572, 'https://ror.org/02yxh7f90', 'en', 1, 'https://ror.org/02yxh7f90 Institute of International Politics and Economics Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ЗА ŠœŠ•Š‚Š£ŠŠŠ ŠžŠ”ŠŠ£ ŠŸŠžŠ›Š˜Š¢Š˜ŠšŠ£ И ŠŸŠ Š˜Š’Š Š•Š”Š£'),
(82573, 'https://ror.org/02yxxe041', 'pl', 1, 'https://ror.org/02yxxe041 Institute of Geological Sciences Instytut Nauk Geologicznych'),
(82574, 'https://ror.org/02z0jq636', 'en', 1, 'https://ror.org/02z0jq636 Unit of Functional and Adaptive Biology'),
(82575, 'https://ror.org/02z1n9q24', 'en', 1, 'https://ror.org/02z1n9q24 University of the Ryukyus ē‰ēƒå¤§å­¦'),
(82576, 'https://ror.org/02z1vqm45', 'en', 1, 'https://ror.org/02z1vqm45 Peking University First Hospital'),
(82577, 'https://ror.org/02z296148', 'en', 1, 'https://ror.org/02z296148 Royal Meteorological Society'),
(82578, 'https://ror.org/02z4j5834', 'en', 1, 'https://ror.org/02z4j5834 American Public Gardens Association'),
(82579, 'https://ror.org/02z64pq54', 'en', 1, 'https://ror.org/02z64pq54 Ankara Spine Center'),
(82580, 'https://ror.org/02z7s4a25', 'en', 1, 'https://ror.org/02z7s4a25 American Society for Colposcopy and Cervical Pathology'),
(82581, 'https://ror.org/02zet7a50', 'en', 1, 'https://ror.org/02zet7a50 The Multiple Births Foundation'),
(82582, 'https://ror.org/02zfnv673', 'id', 1, 'https://ror.org/02zfnv673 Institut Agama Islam Negeri Bukittinggi'),
(82583, 'https://ror.org/02zftm050', 'en', 1, 'https://ror.org/02zftm050 National Institute of Standards المعهد Ų§Ł„Ł‚ŁˆŁ…Ł‰ Ł„Ł„Ł‚ŁŠŲ§Ų³ ŁˆŲ§Ł„Ł…Ų¹Ų§ŁŠŲ±Ų©'),
(82584, 'https://ror.org/02zgbc004', 'es', 1, 'https://ror.org/02zgbc004 Technological University of North Tamaulipas Universidad Tecnológica de Tamaulipas Norte'),
(82585, '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'),
(82586, 'https://ror.org/02zhj3b46', 'en', 1, 'https://ror.org/02zhj3b46 American Society for Clinical Pathology'),
(82587, 'https://ror.org/02zht5x56', 'fr', 1, 'https://ror.org/02zht5x56 Centre Hospitalier Sud-Essonne Dourdan-Etampes'),
(82588, 'https://ror.org/02znffm54', 'en', 1, 'https://ror.org/02znffm54 Osaka Institute of Technology 大阪巄愭大学'),
(82589, 'https://ror.org/02znttc53', 'en', 1, 'https://ror.org/02znttc53 International City/County Management Association'),
(82590, 'https://ror.org/02zp2df93', 'en', 1, 'https://ror.org/02zp2df93 Institut für Empirische Gesundheitsökonomie Institute of Empirical Health Economics'),
(82591, 'https://ror.org/02zsyc904', 'en', 1, 'https://ror.org/02zsyc904 Beef Farmers of Ontario'),
(82592, 'https://ror.org/02zz8b038', 'no_lang_code', 1, 'https://ror.org/02zz8b038 Waves Audio (Israel)'),
(82593, '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'),
(82594, 'https://ror.org/0305fjd69', 'en', 1, 'https://ror.org/0305fjd69 Norwegian Food Safety Authority'),
(82595, 'https://ror.org/0307xfv95', 'en', 1, 'https://ror.org/0307xfv95 Ottawa Allergy Research Corporation'),
(82596, 'https://ror.org/030bhbq32', 'no_lang_code', 1, 'https://ror.org/030bhbq32 Acadia Pharmaceuticals (United States)'),
(82597, 'https://ror.org/030dw3650', 'en', 1, 'https://ror.org/030dw3650 Committee on Publication Ethics'),
(82598, 'https://ror.org/030f73571', 'en', 1, 'https://ror.org/030f73571 Virginia Academy of Science'),
(82599, 'https://ror.org/030fs7375', 'en', 1, 'https://ror.org/030fs7375 BreastScreen WA'),
(82600, 'https://ror.org/030gj2p37', 'nl', 1, 'https://ror.org/030gj2p37 Ziekenhuis Nij Smellinghe'),
(82601, 'https://ror.org/030jxf285', 'en', 1, 'https://ror.org/030jxf285 Heilongjiang Bayi Agricultural University'),
(82602, 'https://ror.org/030kw0b65', 'es', 1, 'https://ror.org/030kw0b65 Universidad de MedellĆ­n'),
(82603, 'https://ror.org/030mwrt98', 'en', 1, 'https://ror.org/030mwrt98 Nord University'),
(82604, 'https://ror.org/030nrza79', 'en', 1, 'https://ror.org/030nrza79 Wildlife Conservation Society Uganda'),
(82605, 'https://ror.org/030qbr085', 'en', 1, 'https://ror.org/030qbr085 Shanghai Key Laboratory of Trustworthy Computing äøŠęµ·åø‚é«˜åÆäæ”č®”ē®—é‡ē‚¹å®žéŖŒå®¤'),
(82606, 'https://ror.org/030qtrs05', 'en', 1, 'https://ror.org/030qtrs05 MRC Integrative Epidemiology Unit'),
(82607, 'https://ror.org/030vbmf58', 'en', 1, 'https://ror.org/030vbmf58 RIKEN Advanced Science Institute å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€'),
(82608, 'https://ror.org/030vvs717', 'no_lang_code', 1, 'https://ror.org/030vvs717 Purdue Pharma (United States)'),
(82609, 'https://ror.org/030wzvf80', 'es', 1, 'https://ror.org/030wzvf80 CartogrƔfica de Canarias'),
(82610, 'https://ror.org/030x5z418', 'en', 1, 'https://ror.org/030x5z418 Queen Elisabeth Medical Foundation'),
(82611, 'https://ror.org/030xwyx96', 'en', 1, 'https://ror.org/030xwyx96 Heilongjiang University of Science and Technology é»‘é¾™ę±Ÿå·„ēØ‹å­¦é™¢'),
(82612, 'https://ror.org/030xykx52', 'en', 1, 'https://ror.org/030xykx52 The Northern Ireland Cancer Centre'),
(82613, 'https://ror.org/030ykd126', 'en', 1, 'https://ror.org/030ykd126 Alberta Gambling Research Institute'),
(82614, 'https://ror.org/030ypay32', 'en', 1, 'https://ror.org/030ypay32 Middlesex University'),
(82615, 'https://ror.org/030zxq122', 'en', 1, 'https://ror.org/030zxq122 Wasage Divers'),
(82616, 'https://ror.org/03114jr32', 'en', 1, 'https://ror.org/03114jr32 Sleep Comprehensive Care Clinic Yoyogi ē”ēœ ē·åˆć‚±ć‚¢ć‚ÆćƒŖćƒ‹ćƒƒć‚Æä»£ć€…ęœØćÆ'),
(82617, 'https://ror.org/031200497', 'en', 1, 'https://ror.org/031200497 Nutrifood'),
(82618, 'https://ror.org/03125jv12', 'no_lang_code', 1, 'https://ror.org/03125jv12 Okmetic (Finland)'),
(82619, 'https://ror.org/0312whv68', 'en', 1, 'https://ror.org/0312whv68 Association canadienne de l''ƩlectricitƩ Canadian Electricity Association'),
(82620, 'https://ror.org/031333553', 'en', 1, 'https://ror.org/031333553 Voronezh Institute of the Federal Penitentiary Service of Russia Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¤Š”Š˜Š России'),
(82621, 'https://ror.org/0316d5p98', 'no_lang_code', 1, 'https://ror.org/0316d5p98 Azbil (Japan) ć‚¢ć‚ŗćƒ“ćƒ«ę Ŗå¼ä¼šē¤¾'),
(82622, 'https://ror.org/0316hvk63', 'en', 1, 'https://ror.org/0316hvk63 New York Academy of Sciences'),
(82623, 'https://ror.org/031bshh03', 'no_lang_code', 1, 'https://ror.org/031bshh03 Genome Insight (South Korea) ģ§€ė†ˆģøģ‚¬ģ“ķŠøėŠ”'),
(82624, 'https://ror.org/031dyqa07', 'es', 1, 'https://ror.org/031dyqa07 MarĆ­a Auxiliadora University Universidad MarĆ­a Auxiliadora'),
(82625, 'https://ror.org/031ffw737', 'no_lang_code', 1, 'https://ror.org/031ffw737 Metrica (United States)'),
(82626, 'https://ror.org/031ghq268', 'no_lang_code', 1, 'https://ror.org/031ghq268 Color (United States)'),
(82627, 'https://ror.org/031gkqq69', 'en', 1, 'https://ror.org/031gkqq69 American Society of Agronomy'),
(82628, 'https://ror.org/031jxes94', 'en', 1, 'https://ror.org/031jxes94 Ghana College of Physicians and Surgeons'),
(82629, 'https://ror.org/031k1tq46', 'en', 1, 'https://ror.org/031k1tq46 Carpathian National Nature Park ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГний парк'),
(82630, 'https://ror.org/031nwrz22', 'no_lang_code', 1, 'https://ror.org/031nwrz22 JMS (Japan) ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ»ć‚Øćƒ ćƒ»ć‚Øć‚¹'),
(82631, 'https://ror.org/031nxkd06', 'en', 1, 'https://ror.org/031nxkd06 Church of Ireland Theological Institute'),
(82632, 'https://ror.org/031ts1072', 'no_lang_code', 1, 'https://ror.org/031ts1072 PVD Products (United States)'),
(82633, 'https://ror.org/031wtp233', 'fr', 1, 'https://ror.org/031wtp233 Centre de SantƩ et de Services Sociaux de Chicoutimi'),
(82634, 'https://ror.org/031xx1847', 'en', 1, 'https://ror.org/031xx1847 Dr. Ram Manohar Lohia Institute of Medical Sciences'),
(82635, 'https://ror.org/031y6w871', 'no_lang_code', 1, 'https://ror.org/031y6w871 Fimlab (Finland) Fimlab Laboratoriot'),
(82636, 'https://ror.org/031ynym32', 'en', 1, 'https://ror.org/031ynym32 Children''s Cancer Association of Japan å…¬ē›Šč²”å›£ę³•äŗŗćŒć‚“ć®å­ć©ć‚‚ć‚’å®ˆć‚‹ä¼š'),
(82637, 'https://ror.org/0324fzh77', 'en', 1, 'https://ror.org/0324fzh77 Long Island University UniversitƩ de Long Island'),
(82638, 'https://ror.org/0325pd582', 'en', 1, 'https://ror.org/0325pd582 Fauna and Flora International'),
(82639, 'https://ror.org/0326cbt42', 'no_lang_code', 1, 'https://ror.org/0326cbt42 ESI Group (United States)'),
(82640, 'https://ror.org/0326egx05', 'en', 1, 'https://ror.org/0326egx05 Delta State University'),
(82641, 'https://ror.org/0326knt82', 'en', 1, 'https://ror.org/0326knt82 Adolfo IbƔƱez University Universidad Adolfo IbƔƱez'),
(82642, 'https://ror.org/0326v3v26', 'no_lang_code', 1, 'https://ror.org/0326v3v26 Acide Carbonique Pur (Belgium)'),
(82643, 'https://ror.org/0326v3z14', 'no_lang_code', 1, 'https://ror.org/0326v3z14 Toshiba (Japan) ę±čŠ'),
(82644, 'https://ror.org/0327c2165', 'en', 1, 'https://ror.org/0327c2165 Institute of Radiobiology of NAS of Belarus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиобиологии ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(82645, 'https://ror.org/03294c124', 'en', 1, 'https://ror.org/03294c124 Lakeland University Japan'),
(82646, 'https://ror.org/0329s8h62', 'en', 1, 'https://ror.org/0329s8h62 Oeschger Centre for Climate Change Research'),
(82647, 'https://ror.org/0329vdx95', 'fr', 1, 'https://ror.org/0329vdx95 MƩtƩorage'),
(82648, 'https://ror.org/032b42j71', 'en', 1, 'https://ror.org/032b42j71 Museum of Southwest Jutland Sydvestjyske Museer'),
(82649, 'https://ror.org/032cf8m89', 'no_lang_code', 1, 'https://ror.org/032cf8m89 Centre de Recherche Industrielle du QuƩbec'),
(82650, 'https://ror.org/032cjs650', 'en', 1, 'https://ror.org/032cjs650 European Society of Radiology'),
(82651, 'https://ror.org/032ct1x19', 'no_lang_code', 1, 'https://ror.org/032ct1x19 International Scientific Network'),
(82652, 'https://ror.org/032f13a22', 'en', 1, 'https://ror.org/032f13a22 Busara Center for Behavioral Economics'),
(82653, 'https://ror.org/032hdk172', 'en', 1, 'https://ror.org/032hdk172 University of Mumbai UniversitĆ© de mumbai ą¤®ą„ą¤‚ą¤¬ą¤ˆ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®®ąÆą®®ąÆą®ŖąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ముంబయి ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(82654, 'https://ror.org/032hxaa63', 'no_lang_code', 1, 'https://ror.org/032hxaa63 Otolith Labs (United States)'),
(82655, 'https://ror.org/032q98j12', 'no_lang_code', 1, 'https://ror.org/032q98j12 Wikimedia Foundation'),
(82656, 'https://ror.org/032qqvq76', 'en', 1, 'https://ror.org/032qqvq76 Cardiovascular Institute Hospital å…¬ē›Šč²”å›£ę³•äŗŗåæƒč‡“č”€ē®”ē ”ē©¶ę‰€'),
(82657, 'https://ror.org/032rtvf56', 'no_lang_code', 1, 'https://ror.org/032rtvf56 Fukui-ken Saiseikai Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šē¦äŗ•ēœŒęøˆē”Ÿä¼šē—…é™¢'),
(82658, 'https://ror.org/032t7yz93', 'en', 1, 'https://ror.org/032t7yz93 Louis Pasteur Center for Medical Research å…¬ē›Šč²”å›£ę³•äŗŗćƒ«ć‚¤ćƒ»ćƒ‘ć‚¹ćƒˆć‚„ćƒ¼ćƒ«åŒ»å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(82659, 'https://ror.org/032xa9n69', 'en', 1, 'https://ror.org/032xa9n69 Ukrainian Research Institute of Transport Medicine Украинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицины транспорта'),
(82660, 'https://ror.org/032xdry56', 'en', 1, 'https://ror.org/032xdry56 Agentschap Innoveren & Ondernemen Flanders Innovation and Entrepreneurship'),
(82661, 'https://ror.org/032yym934', 'en', 1, 'https://ror.org/032yym934 Institut für Weltwirtschaft Kiel Institute for the World Economy'),
(82662, 'https://ror.org/032yzjf46', 'no_lang_code', 1, 'https://ror.org/032yzjf46 Isomer Design (Canada)'),
(82663, 'https://ror.org/032ztsj35', 'en', 1, 'https://ror.org/032ztsj35 African Population and Health Research Center'),
(82664, 'https://ror.org/03307tq49', 'no_lang_code', 1, 'https://ror.org/03307tq49 Chemstations (United States)'),
(82665, 'https://ror.org/0331wqp96', 'no_lang_code', 1, 'https://ror.org/0331wqp96 Toyohashi Heart Center åŒ»ē™‚ę³•äŗŗę¾„åæƒä¼šč±Šę©‹ćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(82666, 'https://ror.org/0335tbp42', 'en', 1, 'https://ror.org/0335tbp42 Institute of Policy Studies of Sri Lanka'),
(82667, 'https://ror.org/0336ct020', 'en', 1, 'https://ror.org/0336ct020 Caucasian State Natural Biosphere Reserve named after Kh.G. Shaposhnikov Кавказский Š³Š¾ŃŃƒŠ“арственный прироГный биосферный заповеГник имени Š„.Š“.Шапошникова'),
(82668, 'https://ror.org/0336mm561', 'no_lang_code', 1, 'https://ror.org/0336mm561 Oxford University Press (United Kingdom)'),
(82669, 'https://ror.org/0339x3x34', 'en', 1, 'https://ror.org/0339x3x34 American College Testing'),
(82670, 'https://ror.org/033a9g130', 'no_lang_code', 1, 'https://ror.org/033a9g130 Synthace (United Kingdom)'),
(82671, 'https://ror.org/033abcd54', 'en', 1, 'https://ror.org/033abcd54 Sunshine Hospital'),
(82672, 'https://ror.org/033abd967', 'en', 1, 'https://ror.org/033abd967 Institute of General & Endovascular Neurosurgery'),
(82673, 'https://ror.org/033bc9f34', 'sv', 1, 'https://ror.org/033bc9f34 Kalmar County Council Landstinget i Kalmar lƤn'),
(82674, 'https://ror.org/033d86250', 'no_lang_code', 1, 'https://ror.org/033d86250 Therachem Research Medilab (India)'),
(82675, 'https://ror.org/033dbfk07', 'en', 1, 'https://ror.org/033dbfk07 Great Lakes Adaptive Sports Association'),
(82676, 'https://ror.org/033dmae14', 'en', 1, 'https://ror.org/033dmae14 Royal University of Agriculture, Cambodia įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įž€įžŸįž·įž€įž˜įŸ’įž˜'),
(82677, 'https://ror.org/033pa2k60', 'no_lang_code', 1, 'https://ror.org/033pa2k60 Ceinge Biotecnologie Avanzate (Italy)');
INSERT INTO `rors` VALUES
(82678, 'https://ror.org/033sa9s17', 'no_lang_code', 1, 'https://ror.org/033sa9s17 Myriad (Germany)'),
(82679, 'https://ror.org/033sm5e75', 'no_lang_code', 1, 'https://ror.org/033sm5e75 Chongqing 2D Materials Institute (China)'),
(82680, 'https://ror.org/033ttrk34', 'en', 1, 'https://ror.org/033ttrk34 Armed Forces College of Medicine'),
(82681, 'https://ror.org/033tx3651', 'no_lang_code', 1, 'https://ror.org/033tx3651 KAGRA KAGRA å¤§åž‹ä½Žęø©é‡åŠ›ę³¢ęœ›é é”'),
(82682, 'https://ror.org/033zsb510', 'no_lang_code', 1, 'https://ror.org/033zsb510 NanoPHAB (Netherlands)'),
(82683, 'https://ror.org/03423rs03', 'no_lang_code', 1, 'https://ror.org/03423rs03 PhoenixBio (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ć‚§ćƒ‹ćƒƒć‚Æć‚¹ćƒć‚¤ć‚Ŗ'),
(82684, 'https://ror.org/0342dzm54', 'no_lang_code', 1, 'https://ror.org/0342dzm54 Liberate Science'),
(82685, 'https://ror.org/0344vgv89', 'en', 1, 'https://ror.org/0344vgv89 Prison Advice and Care Trust'),
(82686, 'https://ror.org/0345aqb42', 'no_lang_code', 1, 'https://ror.org/0345aqb42 Atuka (Canada)'),
(82687, 'https://ror.org/03488tg31', 'en', 1, 'https://ror.org/03488tg31 Academic City College University'),
(82688, 'https://ror.org/0349yc338', 'en', 1, 'https://ror.org/0349yc338 Mahatma Gandhi Memorial Hospital'),
(82689, 'https://ror.org/034ahg853', 'no_lang_code', 1, 'https://ror.org/034ahg853 PowerPhotonic (United Kingdom)'),
(82690, 'https://ror.org/034d7ma87', 'en', 1, 'https://ror.org/034d7ma87 Digital Repository of Ireland Taisclann Dhigiteach na hƉireann'),
(82691, 'https://ror.org/034dagj58', 'en', 1, 'https://ror.org/034dagj58 Tamil Virtual Academy ą®¤ą®®ą®æą®“ąÆ ą®‡ą®£ąÆˆą®Æą®•ąÆ ą®•ą®²ąÆą®µą®æą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(82692, 'https://ror.org/034dpjp44', 'no_lang_code', 1, 'https://ror.org/034dpjp44 Matsutani (Japan) ę¾č°·åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(82693, 'https://ror.org/034ebnm46', 'en', 1, 'https://ror.org/034ebnm46 Minnesota Geological Survey'),
(82694, 'https://ror.org/034eyya14', 'no_lang_code', 1, 'https://ror.org/034eyya14 Computable Publishing'),
(82695, 'https://ror.org/034g04n73', 'en', 1, 'https://ror.org/034g04n73 Institute of Biophysics'),
(82696, 'https://ror.org/034mtvk83', 'en', 1, 'https://ror.org/034mtvk83 University of New Orleans UniversitƩ de la nouvelle-orlƩans'),
(82697, 'https://ror.org/034r0b090', 'no_lang_code', 1, 'https://ror.org/034r0b090 Domtar (Canada)'),
(82698, 'https://ror.org/034rqbg02', 'en', 1, 'https://ror.org/034rqbg02 Electronics Testing Center'),
(82699, 'https://ror.org/034tp1f71', 'no_lang_code', 1, 'https://ror.org/034tp1f71 Medizinisch Wissenschaftliche Verlagsgesellschaft (Germany)'),
(82700, 'https://ror.org/034tvnv21', 'en', 1, 'https://ror.org/034tvnv21 Hellenic Parliament'),
(82701, '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'),
(82702, 'https://ror.org/034w9e597', 'en', 1, 'https://ror.org/034w9e597 The Priory Hospital'),
(82703, 'https://ror.org/034wsnn83', 'en', 1, 'https://ror.org/034wsnn83 Soweto CTC'),
(82704, 'https://ror.org/034x5a519', 'en', 1, 'https://ror.org/034x5a519 KuntoutussƤƤtiƶ Rehabilitation Foundation'),
(82705, 'https://ror.org/034xatd74', 'en', 1, 'https://ror.org/034xatd74 Fairchild Tropical Botanic Garden'),
(82706, 'https://ror.org/03534mt64', 'no_lang_code', 1, 'https://ror.org/03534mt64 Centrum Patologii Molekularnej Cellgen Molecular Pathology Centre Cellgen'),
(82707, 'https://ror.org/0355d0s55', 'bs', 1, 'https://ror.org/0355d0s55 Federalno Ministarstvo Obrazovanja i Nauke'),
(82708, 'https://ror.org/03573dx38', 'no_lang_code', 1, 'https://ror.org/03573dx38 ELSA'),
(82709, 'https://ror.org/0358tcd02', 'en', 1, 'https://ror.org/0358tcd02 Northamptonshire Healthcare NHS Foundation Trust'),
(82710, 'https://ror.org/035adwg89', 'en', 1, 'https://ror.org/035adwg89 Peking University People''s Hospital åŒ—äŗ¬å¤§å­¦äŗŗę°‘åŒ»é™¢'),
(82711, 'https://ror.org/035b6vx73', 'no_lang_code', 1, 'https://ror.org/035b6vx73 XBiotech (United States)'),
(82712, 'https://ror.org/035caev54', 'no_lang_code', 1, 'https://ror.org/035caev54 Sinotech Genomics (China) äø­ē§‘ę™®ē‘ž'),
(82713, 'https://ror.org/035d9jb31', 'en', 1, 'https://ror.org/035d9jb31 Busitema University'),
(82714, '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"'),
(82715, 'https://ror.org/035k44f72', 'no_lang_code', 1, 'https://ror.org/035k44f72 Ahava (Israel)'),
(82716, 'https://ror.org/035myfa14', 'no_lang_code', 1, 'https://ror.org/035myfa14 Fixstars Solutions (United States)'),
(82717, 'https://ror.org/035q1h929', 'en', 1, 'https://ror.org/035q1h929 Pryazovskyi National Nature Park ŠŸŃ€ŠøŠ°Š·Š¾Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГний парк'),
(82718, 'https://ror.org/035sqd961', 'en', 1, 'https://ror.org/035sqd961 Stanley Foundation'),
(82719, 'https://ror.org/035trbs97', 'en', 1, 'https://ror.org/035trbs97 Eden Medical Center'),
(82720, 'https://ror.org/035tz7392', 'en', 1, 'https://ror.org/035tz7392 Gothenburg Botanic Garden Gƶteborgs Botaniska TrƤdgƄrd'),
(82721, 'https://ror.org/035vjkd03', 'en', 1, 'https://ror.org/035vjkd03 Heritage Christian College'),
(82722, 'https://ror.org/035xa5s96', 'no_lang_code', 1, 'https://ror.org/035xa5s96 HistoGeneX (Belgium)'),
(82723, 'https://ror.org/035yy6m30', 'no_lang_code', 1, 'https://ror.org/035yy6m30 Iwatani Naoji Foundation å…¬ē›Šč²”å›£ę³•äŗŗå²©č°·ē›“ę²»čØ˜åæµč²”å›£'),
(82724, 'https://ror.org/035ze0n48', 'no_lang_code', 1, 'https://ror.org/035ze0n48 Alcon (India)'),
(82725, 'https://ror.org/0363aed77', 'en', 1, 'https://ror.org/0363aed77 Flone Initiative Trust'),
(82726, 'https://ror.org/0363fzx12', 'en', 1, 'https://ror.org/0363fzx12 Academy of Engineering Sciences of Serbia АкаГемија ŠøŠ½Š¶ŠµŃšŠµŃ€ŃŠŗŠøŃ… наука Š”Ń€Š±ŠøŃ˜Šµ'),
(82727, 'https://ror.org/0364tzz24', 'en', 1, 'https://ror.org/0364tzz24 Pyatigorsk Medical and Pharmaceutical Institute - branch of Volgograd State Medical University ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ меГико-фармацевтический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ – филиал ВолгограГского Š³Š¾ŃŃƒŠ“арственного меГицинского ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(82728, 'https://ror.org/0365jtw20', 'en', 1, 'https://ror.org/0365jtw20 West Coast Fertility Centers'),
(82729, 'https://ror.org/0365mpq95', 'no_lang_code', 1, 'https://ror.org/0365mpq95 Mahonia Na Dari – Guardian of the Sea'),
(82730, 'https://ror.org/036999x25', 'no_lang_code', 1, 'https://ror.org/036999x25 Advanced Engineering Services (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ćƒ»ć‚¤ćƒ¼ćƒ»ć‚Øć‚¹'),
(82731, 'https://ror.org/036agwg70', 'en', 1, 'https://ror.org/036agwg70 Duta Wacana Christian University Universitas Kristen Duta Wacana'),
(82732, 'https://ror.org/036bxpj43', 'fi', 1, 'https://ror.org/036bxpj43 Hospital District of Southwest Finland Varsinais-Suomen Sairaanhoitopiiri'),
(82733, 'https://ror.org/036d5p407', 'no_lang_code', 1, 'https://ror.org/036d5p407 Fuence (Japan) ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ„ćƒ¼ć‚Øćƒ³ć‚¹'),
(82734, 'https://ror.org/036dczj04', 'en', 1, 'https://ror.org/036dczj04 Ministry of Sports'),
(82735, 'https://ror.org/036dre328', 'no_lang_code', 1, 'https://ror.org/036dre328 Hikari Giken (Japan)'),
(82736, 'https://ror.org/036f4sz05', 'en', 1, 'https://ror.org/036f4sz05 Sieć Badawcza Łukasiewicz Łukasiewicz Research Network'),
(82737, 'https://ror.org/036kvxa54', 'en', 1, 'https://ror.org/036kvxa54 Academia "Ștefan cel Mare" a Ministerului Afacerilor Interne Ştefan cel Mare Police Academy'),
(82738, 'https://ror.org/036mhzk54', 'de', 1, 'https://ror.org/036mhzk54 Ɩsterreichische Galerie Belvedere'),
(82739, 'https://ror.org/036mwh061', 'en', 1, 'https://ror.org/036mwh061 Advanced Center for Chronic Diseases'),
(82740, 'https://ror.org/036n53h90', 'no_lang_code', 1, 'https://ror.org/036n53h90 Nihon Unisys (Japan) ę—„ęœ¬ćƒ¦ćƒ‹ć‚·ć‚¹ę Ŗå¼ä¼šē¤¾'),
(82741, 'https://ror.org/036pfyf12', 'no_lang_code', 1, 'https://ror.org/036pfyf12 Seirei Hamamatsu General Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£ē·åˆē—…é™¢č–éš·ęµœę¾ē—…é™¢'),
(82742, 'https://ror.org/036sabf92', 'no_lang_code', 1, 'https://ror.org/036sabf92 Heidelberg Pharma (Germany)'),
(82743, 'https://ror.org/036ttgc90', 'es', 1, 'https://ror.org/036ttgc90 Private University of Huancayo "Franklin Roosevelt" Universidad Privada de Huancayo "Franklin Roosevelt"'),
(82744, 'https://ror.org/036tvvp06', 'en', 1, 'https://ror.org/036tvvp06 University Grants Commission Sri Lanka ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®• ą®®ą®¾ą®©ą®æą®Æą®™ąÆą®•ą®³ąÆ ą®†ą®£ąÆˆą®•ąÆą®•ąÆą®“ąÆ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ ą¶“ą·Šā€ą¶»ą¶­ą·’ą¶“ą·ą¶Æą¶± ą¶šą·œą¶øą·’ą·‚ą¶±ą·Š ą·ƒą¶·ą·ą·€ - ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą·'),
(82745, 'https://ror.org/036v9ey29', 'en', 1, 'https://ror.org/036v9ey29 Association of Community Cancer Centers'),
(82746, 'https://ror.org/036vn8q40', 'pt', 1, 'https://ror.org/036vn8q40 Centro De Medicina VeterinƔria Anjos De Assis'),
(82747, 'https://ror.org/036vtmj33', 'en', 1, 'https://ror.org/036vtmj33 Advocate Illinois Masonic Medical Center'),
(82748, 'https://ror.org/036wrr275', 'no_lang_code', 1, 'https://ror.org/036wrr275 Occidental Petroleum (United States)'),
(82749, 'https://ror.org/036wvs663', 'en', 1, 'https://ror.org/036wvs663 CsillagÔszati és FöldtudomÔnyi Kutatóközpont Research Centre for Astronomy and Earth Sciences'),
(82750, 'https://ror.org/0373ev724', 'en', 1, 'https://ror.org/0373ev724 Chinese National Engineering Research Center for Control and Treatment of Heavy Metal Pollution'),
(82751, 'https://ror.org/0375jbm11', 'en', 1, 'https://ror.org/0375jbm11 National Centre for Earth Observation'),
(82752, 'https://ror.org/03781zn34', 'de', 1, 'https://ror.org/03781zn34 Berlin-Brandenburger Centrum für Regenerative Therapien'),
(82753, 'https://ror.org/03797rt64', 'en', 1, 'https://ror.org/03797rt64 Wham Lab'),
(82754, 'https://ror.org/03799w695', 'en', 1, 'https://ror.org/03799w695 National Research Centre for Georgian Art History and Heritage Preservation įƒ’įƒ˜įƒįƒ įƒ’įƒ˜ įƒ©įƒ£įƒ‘įƒ˜įƒœįƒįƒØįƒ•įƒ˜įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜ įƒ®įƒ”įƒšįƒįƒ•įƒœįƒ”įƒ‘įƒ˜įƒ” įƒ˜įƒ”įƒ¢įƒįƒ įƒ˜įƒ˜įƒ”įƒ įƒ“įƒ įƒ«įƒ”įƒ’įƒšįƒ—įƒ įƒ“įƒįƒŖįƒ•įƒ˜įƒ” įƒ™įƒ•įƒšįƒ”įƒ•įƒ˜įƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜'),
(82755, 'https://ror.org/037b8st11', 'en', 1, 'https://ror.org/037b8st11 The National Databank for Rheumatic Diseases'),
(82756, 'https://ror.org/037bhg174', 'en', 1, 'https://ror.org/037bhg174 Center for Advanced Energy Studies'),
(82757, 'https://ror.org/037cjxp13', 'en', 1, 'https://ror.org/037cjxp13 China-Japan Friendship Hospital äø­ę—„å‹å„½åŒ»é™¢'),
(82758, 'https://ror.org/037dym702', 'en', 1, 'https://ror.org/037dym702 Ningbo University of Technology'),
(82759, 'https://ror.org/037h5rj68', 'en', 1, 'https://ror.org/037h5rj68 Hybrid Rapeseed Research Center of Shaanxi Province é™•č„æēœę‚äŗ¤ę²¹čœē ”ē©¶äø­åæƒ'),
(82760, 'https://ror.org/037jefe25', 'en', 1, 'https://ror.org/037jefe25 Sunagawa City Medical Center ē ‚å·åø‚ē«‹ē—…é™¢'),
(82761, 'https://ror.org/037mj4292', 'no_lang_code', 1, 'https://ror.org/037mj4292 Defence Materials Technology Centre (Australia)'),
(82762, 'https://ror.org/037p13728', 'no_lang_code', 1, 'https://ror.org/037p13728 Tohoku Rosai Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹ę±åŒ—åŠ“ē½ē—…é™¢'),
(82763, 'https://ror.org/037p60497', 'no_lang_code', 1, 'https://ror.org/037p60497 EstƔtikos (Brazil)'),
(82764, 'https://ror.org/037pt1459', 'de', 1, 'https://ror.org/037pt1459 Hirslanden Klinik Birshof'),
(82765, 'https://ror.org/037x16a12', 'no_lang_code', 1, 'https://ror.org/037x16a12 Kaketsuken (Japan) äø€čˆ¬č²”å›£ę³•äŗŗåŒ–å­¦åŠč”€ęø…ē™‚ę³•ē ”ē©¶ę‰€'),
(82766, 'https://ror.org/037y7xs42', 'en', 1, 'https://ror.org/037y7xs42 Sankalchand Patel University'),
(82767, 'https://ror.org/037zkt843', 'en', 1, 'https://ror.org/037zkt843 Flaget Memorial Hospital'),
(82768, 'https://ror.org/037zvxe90', 'en', 1, 'https://ror.org/037zvxe90 Baptist Memorial Hospital for Women'),
(82769, 'https://ror.org/0380m5132', 'no_lang_code', 1, 'https://ror.org/0380m5132 Xiamen Tungsten (China)'),
(82770, 'https://ror.org/038147s86', 'no_lang_code', 1, 'https://ror.org/038147s86 Achieve Life Sciences (Canada)'),
(82771, 'https://ror.org/0381bab64', 'it', 1, 'https://ror.org/0381bab64 Edmund Mach Foundation Fondazione Edmund Mach'),
(82772, 'https://ror.org/0383qdr35', 'en', 1, 'https://ror.org/0383qdr35 Virginia Office of Intergovernmental Affairs'),
(82773, 'https://ror.org/03862t386', 'nl', 1, 'https://ror.org/03862t386 Ziekenhuis Gelderse Vallei'),
(82774, 'https://ror.org/038a3nh93', 'en', 1, 'https://ror.org/038a3nh93 University of Minnesota Health Maple Grove Clinics'),
(82775, 'https://ror.org/038a5qa83', 'en', 1, 'https://ror.org/038a5qa83 International Glaucoma Association'),
(82776, 'https://ror.org/038arpa11', 'en', 1, 'https://ror.org/038arpa11 Contra Costa Regional Medical Center'),
(82777, 'https://ror.org/038avdt50', 'en', 1, 'https://ror.org/038avdt50 Xi''an University of Technology 脿安理巄大学'),
(82778, 'https://ror.org/038axdp29', 'en', 1, 'https://ror.org/038axdp29 Institute for Musculoskeletal Health'),
(82779, 'https://ror.org/038b0hg50', 'en', 1, 'https://ror.org/038b0hg50 Iowa Department of Natural Resources'),
(82780, 'https://ror.org/038bsm707', 'no_lang_code', 1, 'https://ror.org/038bsm707 Digital Preservation Coalition (United Kingdom)'),
(82781, 'https://ror.org/038fqq280', 'en', 1, 'https://ror.org/038fqq280 Botswana Geoscience Institute'),
(82782, 'https://ror.org/038mvjn28', 'en', 1, 'https://ror.org/038mvjn28 Universidad del Magdalena University of Magdalena'),
(82783, 'https://ror.org/038mz4r36', 'en', 1, 'https://ror.org/038mz4r36 Vivekananda Global University'),
(82784, 'https://ror.org/038n2v518', 'ms', 1, 'https://ror.org/038n2v518 Hospital Kemaman'),
(82785, 'https://ror.org/038n5s612', 'en', 1, 'https://ror.org/038n5s612 Canadian Public Health Association'),
(82786, 'https://ror.org/038p8px90', 'en', 1, 'https://ror.org/038p8px90 Pain Management Centers Of America'),
(82787, 'https://ror.org/038rrt316', 'en', 1, 'https://ror.org/038rrt316 Lincoln Public Library'),
(82788, 'https://ror.org/038rwe723', 'en', 1, 'https://ror.org/038rwe723 NanoMedicines Innovation Network'),
(82789, 'https://ror.org/038t2yw28', 'en', 1, 'https://ror.org/038t2yw28 Institut zur QualitƤtsentwicklung im Bildungswesen Institute for Educational Quality Improvement'),
(82790, 'https://ror.org/038tggw74', 'id', 1, 'https://ror.org/038tggw74 Universitas Dharmas Indonesia'),
(82791, 'https://ror.org/038x7ta12', 'en', 1, 'https://ror.org/038x7ta12 Lewis Clark State College, Lewis–Clark State College'),
(82792, 'https://ror.org/038x91r09', 'en', 1, 'https://ror.org/038x91r09 Glycodisplay'),
(82793, 'https://ror.org/038xacd85', 'en', 1, 'https://ror.org/038xacd85 TMG Research'),
(82794, 'https://ror.org/0390g6860', 'en', 1, 'https://ror.org/0390g6860 Vodlozersky National Park ВоГлозерский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк'),
(82795, 'https://ror.org/0391zw446', 'en', 1, 'https://ror.org/0391zw446 China University of Labor Relations äø­å›½åŠ³åŠØå…³ē³»å­¦é™¢'),
(82796, 'https://ror.org/0393rf026', 'en', 1, 'https://ror.org/0393rf026 Pancreatic Cancer Canada Foundation'),
(82797, 'https://ror.org/0393v2x22', 'sv', 1, 'https://ror.org/0393v2x22 Norrbottens lƤns Landsting'),
(82798, 'https://ror.org/039425239', 'no_lang_code', 1, 'https://ror.org/039425239 Blacktrace (United Kingdom)'),
(82799, 'https://ror.org/0394gjn55', 'no_lang_code', 1, 'https://ror.org/0394gjn55 BridgeBio (United States)'),
(82800, 'https://ror.org/0394pt124', 'en', 1, 'https://ror.org/0394pt124 Irish Children''s Arthritis Network'),
(82801, 'https://ror.org/0394w2w14', 'en', 1, 'https://ror.org/0394w2w14 Chettinad Academy of Research and Education ą®šąÆ†ą®ŸąÆą®Ÿą®æą®Øą®¾ą®ŸąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(82802, 'https://ror.org/0396gab88', 'en', 1, 'https://ror.org/0396gab88 LOEWE Centre for Translational Biodiversity Genomics'),
(82803, 'https://ror.org/0397b2492', 'en', 1, 'https://ror.org/0397b2492 North Carolina Department of Agriculture and Consumer Services'),
(82804, 'https://ror.org/0397knh37', 'en', 1, 'https://ror.org/0397knh37 Collegio Carlo Alberto'),
(82805, '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'),
(82806, 'https://ror.org/039cvdc85', 'no_lang_code', 1, 'https://ror.org/039cvdc85 Tianmu Lake Institute of Advanced Energy Storage Technologies (China)'),
(82807, 'https://ror.org/039dabd75', 'en', 1, 'https://ror.org/039dabd75 Huntington Hospital'),
(82808, 'https://ror.org/039ks3037', 'no_lang_code', 1, 'https://ror.org/039ks3037 Nucana (United Kingdom)'),
(82809, 'https://ror.org/039p7nx39', 'en', 1, 'https://ror.org/039p7nx39 ARC Centre of Excellence for Automated Decision-Making and Society'),
(82810, 'https://ror.org/039q3j825', 'no_lang_code', 1, 'https://ror.org/039q3j825 e-Watchdog'),
(82811, 'https://ror.org/039swsa61', 'no_lang_code', 1, 'https://ror.org/039swsa61 ProQuest (United States)'),
(82812, 'https://ror.org/039vbzh95', 'en', 1, 'https://ror.org/039vbzh95 Shri Lakshmi Clinic & Scan Centre'),
(82813, 'https://ror.org/039w8qr24', 'en', 1, 'https://ror.org/039w8qr24 North Bengal University ą¦‰ą¦¤ą§ą¦¤ą¦°ą¦¬ą¦™ą§ą¦— ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(82814, 'https://ror.org/039wjmj68', 'no_lang_code', 1, 'https://ror.org/039wjmj68 Atlas Copco (Germany)'),
(82815, 'https://ror.org/039xbga15', 'es', 1, 'https://ror.org/039xbga15 Asociación Española de Urología'),
(82816, 'https://ror.org/039zxt351', 'it', 1, 'https://ror.org/039zxt351 IRCCS Ospedale San Raffaele'),
(82817, 'https://ror.org/03a0avf44', 'en', 1, 'https://ror.org/03a0avf44 Canberra Aesthetic Plastic Surgery Clinic'),
(82818, 'https://ror.org/03a1nz111', 'es', 1, 'https://ror.org/03a1nz111 CEVAXIN'),
(82819, 'https://ror.org/03a23ph14', 'no_lang_code', 1, 'https://ror.org/03a23ph14 Kureha (Japan) ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ćƒ'),
(82820, 'https://ror.org/03a2hf118', 'en', 1, 'https://ror.org/03a2hf118 Shinshu University Hospital äæ”å·žå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(82821, 'https://ror.org/03a2nwp96', 'no_lang_code', 1, 'https://ror.org/03a2nwp96 Nkarta Therapeutics (United States)'),
(82822, 'https://ror.org/03a4ga868', 'no_lang_code', 1, 'https://ror.org/03a4ga868 Genevention (Germany)'),
(82823, 'https://ror.org/03a5ms192', 'es', 1, 'https://ror.org/03a5ms192 Centro de OrnitologĆ­a y Biodiversidad'),
(82824, 'https://ror.org/03a6s3x06', 'en', 1, 'https://ror.org/03a6s3x06 Biofuel Research Team'),
(82825, 'https://ror.org/03a9hgn46', 'no_lang_code', 1, 'https://ror.org/03a9hgn46 API (Japan) ć‚¢ćƒ”ę Ŗå¼ä¼šē¤¾'),
(82826, 'https://ror.org/03abe5304', 'no_lang_code', 1, 'https://ror.org/03abe5304 Loxo Oncology at Lilly (United States)'),
(82827, 'https://ror.org/03acpnr73', 'en', 1, 'https://ror.org/03acpnr73 Light Metal Educational Foundation å…¬ē›Šč²”å›£ę³•äŗŗč»½é‡‘å±žå„Øå­¦ä¼š'),
(82828, 'https://ror.org/03ad6kn10', 'en', 1, 'https://ror.org/03ad6kn10 Council for Scientific and Industrial Research'),
(82829, '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 Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской ФеГерации – Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский биофизический центр имени А.И. Š‘ŃƒŃ€Š½Š°Š·ŃŠ½Š°'),
(82830, 'https://ror.org/03adh2020', 'no_lang_code', 1, 'https://ror.org/03adh2020 Kure Kyosai Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šå‘‰å…±ęøˆē—…é™¢'),
(82831, 'https://ror.org/03aesme15', 'en', 1, 'https://ror.org/03aesme15 Udmurt Federal Research Center, Ural Branch of the Russian Academy of Sciences Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠøŠ¹ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр'),
(82832, 'https://ror.org/03aevhx31', 'en', 1, 'https://ror.org/03aevhx31 Kamchatka State University named after Vitus Bering ŠšŠ°Š¼Ń‡Š°Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’ŠøŃ‚ŃƒŃŠ° Беринга'),
(82833, 'https://ror.org/03afbx254', 'en', 1, 'https://ror.org/03afbx254 Evangelisches Waldkrankenhaus Spandau Waldkrankenhaus Protestant Hospital'),
(82834, 'https://ror.org/03ahhsr90', 'no_lang_code', 1, 'https://ror.org/03ahhsr90 ESI Group (Czechia)'),
(82835, 'https://ror.org/03ahq3x51', 'en', 1, 'https://ror.org/03ahq3x51 Canadian Foundation for Pharmacy'),
(82836, 'https://ror.org/03ajcy837', 'en', 1, 'https://ror.org/03ajcy837 West Texas Retina Consultants'),
(82837, 'https://ror.org/03am4ny08', 'en', 1, 'https://ror.org/03am4ny08 Maine Community College System'),
(82838, 'https://ror.org/03anxx281', 'no_lang_code', 1, 'https://ror.org/03anxx281 Phenikaa University ĐẔi hį»c PHENIKAA'),
(82839, 'https://ror.org/03arwv312', 'en', 1, 'https://ror.org/03arwv312 Danish Ministry of Environment MiljĆøministeriet'),
(82840, 'https://ror.org/03asbm106', 'en', 1, 'https://ror.org/03asbm106 International Nemrud Foundation'),
(82841, 'https://ror.org/03atapr58', 'fr', 1, 'https://ror.org/03atapr58 Laboratoire d''Electrochimie MolƩculaire'),
(82842, 'https://ror.org/03atsav32', 'en', 1, 'https://ror.org/03atsav32 Crop Science Research Laboratory'),
(82843, 'https://ror.org/03awsb125', 'en', 1, 'https://ror.org/03awsb125 Betsi Cadwaladr University Health Board Bwrdd Iechyd Prifysgol Betsi Cadwaladr'),
(82844, 'https://ror.org/03awxj939', 'en', 1, 'https://ror.org/03awxj939 Shanghai Institute of Planned Parenthood Research äøŠęµ·åø‚č®”åˆ’ē”Ÿč‚²ē§‘å­¦ē ”ē©¶ę‰€'),
(82845, 'https://ror.org/03axg0947', 'en', 1, 'https://ror.org/03axg0947 Yamagata Research Institute Of Technology å±±å½¢ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(82846, 'https://ror.org/03az66838', 'en', 1, 'https://ror.org/03az66838 United Soybean Board'),
(82847, 'https://ror.org/03b0x6j22', 'en', 1, 'https://ror.org/03b0x6j22 Niigata University Medical and Dental Hospital ę–°ę½Ÿå¤§å­¦åŒ»ę­Æå­¦ē·åˆē—…é™¢'),
(82848, 'https://ror.org/03b252479', 'no_lang_code', 1, 'https://ror.org/03b252479 Shenzhen Planck Innovation (China) ę·±åœ³ę‰‘ęµŖåˆ›ę–°ē§‘ęŠ€'),
(82849, 'https://ror.org/03b4ffc11', 'en', 1, 'https://ror.org/03b4ffc11 HELIN Library Consortium'),
(82850, 'https://ror.org/03b55sb49', 'no_lang_code', 1, 'https://ror.org/03b55sb49 Tokai Gakuin University ę±ęµ·å­¦é™¢å¤§å­¦'),
(82851, 'https://ror.org/03b5mky78', 'no_lang_code', 1, 'https://ror.org/03b5mky78 Somahlution (United States)'),
(82852, 'https://ror.org/03b5nmf59', 'en', 1, 'https://ror.org/03b5nmf59 American Association for Laboratory Animal Science'),
(82853, 'https://ror.org/03b6mde77', 'en', 1, 'https://ror.org/03b6mde77 Fawcett Society'),
(82854, 'https://ror.org/03b72t095', 'no_lang_code', 1, 'https://ror.org/03b72t095 Bluefin Biomedicine (United States)'),
(82855, 'https://ror.org/03b8vas82', 'en', 1, 'https://ror.org/03b8vas82 National Atmospheric Deposition Program'),
(82856, 'https://ror.org/03b9h7664', 'no_lang_code', 1, 'https://ror.org/03b9h7664 Notable Labs (United States)'),
(82857, 'https://ror.org/03bd11s93', 'es', 1, 'https://ror.org/03bd11s93 Centro Universitario Anglo Mexicano'),
(82858, 'https://ror.org/03bekaf83', 'de', 1, 'https://ror.org/03bekaf83 Kardiologie Frankfurt-Sachsenhausen'),
(82859, 'https://ror.org/03bf4az94', 'en', 1, 'https://ror.org/03bf4az94 American Society for the Prevention of Cruelty to Animals'),
(82860, 'https://ror.org/03bg52265', 'es', 1, 'https://ror.org/03bg52265 El Colegio Mexiquense'),
(82861, 'https://ror.org/03bjyp708', 'no_lang_code', 1, 'https://ror.org/03bjyp708 Auris Health (United States)'),
(82862, 'https://ror.org/03bp6t645', 'it', 1, 'https://ror.org/03bp6t645 Azienda Socio Sanitaria Territoriale Lariana'),
(82863, 'https://ror.org/03btazg73', 'en', 1, 'https://ror.org/03btazg73 IEEE Industry Applications Society'),
(82864, 'https://ror.org/03bvz5p76', 'en', 1, 'https://ror.org/03bvz5p76 Jilin University of Chemical Technology å‰ęž—åŒ–å·„å­¦é™¢'),
(82865, 'https://ror.org/03bw8s353', 'en', 1, 'https://ror.org/03bw8s353 Southern Urals Biophysics Institute Ûžno-Ural''skij institut biofiziki Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики'),
(82866, 'https://ror.org/03bx5cx17', 'en', 1, 'https://ror.org/03bx5cx17 Provincial Government of Sarangani'),
(82867, 'https://ror.org/03bxq7g45', 'en', 1, 'https://ror.org/03bxq7g45 Southwest Watershed Research Center'),
(82868, 'https://ror.org/03c1etk80', 'en', 1, 'https://ror.org/03c1etk80 NIHR Central Commissioning Facility'),
(82869, 'https://ror.org/03c1fxf30', 'en', 1, 'https://ror.org/03c1fxf30 Taipei Hospital č‡ŗåŒ—é†«é™¢'),
(82870, 'https://ror.org/03c1y0r66', 'en', 1, 'https://ror.org/03c1y0r66 Tane General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗćć¤ć“ć†ä¼šå¤šę ¹ē·åˆē—…é™¢'),
(82871, 'https://ror.org/03c3drj60', 'no_lang_code', 1, 'https://ror.org/03c3drj60 Evides (Netherlands)'),
(82872, 'https://ror.org/03c3zes23', 'es', 1, 'https://ror.org/03c3zes23 Inria Chile'),
(82873, 'https://ror.org/03c4shz64', 'en', 1, 'https://ror.org/03c4shz64 Abdelmalek EssaĆ¢di University UniversitĆ© Abdelmalek EssaĆ¢di Ų¬Ų§Ł…Ų¹Ų© Ų¹ŲØŲÆ Ų§Ł„Ł…Ų§Ł„Łƒ Ų§Ł„Ų³Ų¹ŲÆŁŠ'),
(82874, 'https://ror.org/03c6pbw79', 'en', 1, 'https://ror.org/03c6pbw79 Budapest FővĆ”ros KormĆ”nyhivatala Government Office of the Capital City Budapest'),
(82875, 'https://ror.org/03c75ky76', 'en', 1, 'https://ror.org/03c75ky76 Frimley Park Hospital'),
(82876, 'https://ror.org/03c9hf945', 'no_lang_code', 1, 'https://ror.org/03c9hf945 PamGene (Netherlands)'),
(82877, 'https://ror.org/03ccbtk93', 'en', 1, 'https://ror.org/03ccbtk93 Joint Fire Science Program'),
(82878, 'https://ror.org/03ccx3r49', 'no_lang_code', 1, 'https://ror.org/03ccx3r49 Centogene (Germany)'),
(82879, 'https://ror.org/03cdc4796', 'no_lang_code', 1, 'https://ror.org/03cdc4796 SuVi Eye Institute and Lasik Laser Center'),
(82880, 'https://ror.org/03cfeg204', 'en', 1, 'https://ror.org/03cfeg204 Flight Academy of the National Aviation University Š›Ń‘Ń‚Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ авиационного ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š°'),
(82881, 'https://ror.org/03cfxrj56', 'en', 1, 'https://ror.org/03cfxrj56 Kerzhinski Nature Reserve ŠšŠµŃ€Š¶ŠµŠ½ŃŠŗŠøŠ¹ заповеГник'),
(82882, 'https://ror.org/03cg7cp61', 'en', 1, 'https://ror.org/03cg7cp61 Nile University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„'),
(82883, 'https://ror.org/03ch14951', 'en', 1, 'https://ror.org/03ch14951 Ogasawara Foundation for the Promotion of Science and Engineering å…¬ē›Šč²”å›£ę³•äŗŗ å°ē¬ åŽŸē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(82884, 'https://ror.org/03cjece29', 'en', 1, 'https://ror.org/03cjece29 Pacific National University Тихоокеанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(82885, 'https://ror.org/03ckf5b20', 'en', 1, 'https://ror.org/03ckf5b20 Scientific Institute of Rabat المعهد Ų§Ł„Ų¹Ł„Ł…ŁŠ الرباط'),
(82886, 'https://ror.org/03cnezq86', 'en', 1, 'https://ror.org/03cnezq86 Northern Mine Research Society'),
(82887, 'https://ror.org/03cnmz153', 'en', 1, 'https://ror.org/03cnmz153 Muhammadiyah University of Surakarta univerˈsitas muhamaˈdijah suraˈkarta'),
(82888, 'https://ror.org/03cp5cj42', 'en', 1, 'https://ror.org/03cp5cj42 Sarah Cannon Research Institute'),
(82889, 'https://ror.org/03cpzkh11', 'no_lang_code', 1, 'https://ror.org/03cpzkh11 Siemens (Canada)'),
(82890, 'https://ror.org/03creg496', 'no_lang_code', 1, 'https://ror.org/03creg496 Nipro (Japan) ćƒ‹ćƒ—ćƒ­ę Ŗå¼ä¼šē¤¾'),
(82891, 'https://ror.org/03cys3p26', 'no_lang_code', 1, 'https://ror.org/03cys3p26 Alcon (Italy)'),
(82892, 'https://ror.org/03cz13y64', 'no_lang_code', 1, 'https://ror.org/03cz13y64 British Steel (United Kingdom)'),
(82893, 'https://ror.org/03d0s8302', 'pt', 1, 'https://ror.org/03d0s8302 Universidade Estadual de Alagoas'),
(82894, 'https://ror.org/03d0x9s65', 'no_lang_code', 1, 'https://ror.org/03d0x9s65 Provinn (Sweden)'),
(82895, 'https://ror.org/03d63qr59', 'en', 1, 'https://ror.org/03d63qr59 Alabama Department of Conservation and Natural Resources'),
(82896, 'https://ror.org/03d80m334', 'en', 1, 'https://ror.org/03d80m334 Knox'),
(82897, 'https://ror.org/03d8b1667', 'no_lang_code', 1, 'https://ror.org/03d8b1667 Nama Development (United States)'),
(82898, 'https://ror.org/03d9mz263', 'en', 1, 'https://ror.org/03d9mz263 Zabol University دانؓگاه Ų²Ų§ŲØŁ„'),
(82899, 'https://ror.org/03d9rp576', 'en', 1, 'https://ror.org/03d9rp576 LifeStream'),
(82900, 'https://ror.org/03davk141', 'en', 1, 'https://ror.org/03davk141 Florida Coastal Everglades Long Term Ecological Research'),
(82901, 'https://ror.org/03dc5r714', 'en', 1, 'https://ror.org/03dc5r714 Legal Pathways'),
(82902, 'https://ror.org/03dcrhc18', 'en', 1, 'https://ror.org/03dcrhc18 Central Midlands Council of Governments'),
(82903, 'https://ror.org/03ddvws43', 'no_lang_code', 1, 'https://ror.org/03ddvws43 Unichem Laboratories'),
(82904, 'https://ror.org/03dez2856', 'en', 1, 'https://ror.org/03dez2856 Institute of General Energy of the National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š·Š°Š³Š°Š»ŃŒŠ½Š¾Ń— енергетики ŠŠŠ України Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠžŠ‘Š©Š•Š™ Š­ŠŠ•Š Š“Š•Š¢Š˜ŠšŠ˜ ŠŠŠ Š£ŠšŠ ŠŠ˜ŠŠ«'),
(82905, 'https://ror.org/03dghjn81', 'en', 1, 'https://ror.org/03dghjn81 Orthopaedic Center of New Jersey'),
(82906, 'https://ror.org/03dgk3y06', 'es', 1, 'https://ror.org/03dgk3y06 Centro de Investigación y Proyectos en Ambiente y Desarrollo'),
(82907, 'https://ror.org/03dgmx930', 'en', 1, 'https://ror.org/03dgmx930 Biofuel Research Team'),
(82908, 'https://ror.org/03dgx1q54', 'en', 1, 'https://ror.org/03dgx1q54 MS-Kliniek, Nationaal Multiple Sclerose Centrum National MS Center Melsbroek'),
(82909, 'https://ror.org/03dk2gk58', 'en', 1, 'https://ror.org/03dk2gk58 Guangdong Greater Bay Area Institute of Integrated Circuit and System å¹æäøœēœå¤§ę¹¾åŒŗé›†ęˆē”µč·ÆäøŽē³»ē»Ÿåŗ”ē”Øē ”ē©¶é™¢'),
(82910, 'https://ror.org/03dk6an77', 'en', 1, 'https://ror.org/03dk6an77 Hiroshima International University åŗƒå³¶å›½éš›å¤§å­¦'),
(82911, 'https://ror.org/03dk6td20', 'en', 1, 'https://ror.org/03dk6td20 Tennessee Department of Environment and Conservation'),
(82912, 'https://ror.org/03dktz122', 'en', 1, 'https://ror.org/03dktz122 Helen Keller International'),
(82913, 'https://ror.org/03dkvy735', 'en', 1, 'https://ror.org/03dkvy735 New York Medical College'),
(82914, 'https://ror.org/03dkznf33', 'no_lang_code', 1, 'https://ror.org/03dkznf33 Dempsey (Canada)'),
(82915, 'https://ror.org/03dn6qp98', 'no_lang_code', 1, 'https://ror.org/03dn6qp98 ABB (Poland)'),
(82916, 'https://ror.org/03dp40q62', 'en', 1, 'https://ror.org/03dp40q62 Almeida Memorial Hospital å¤§åˆ†åø‚åŒ»åø«ä¼šē«‹ć‚¢ćƒ«ćƒ”ć‚¤ćƒ€ē—…é™¢'),
(82917, 'https://ror.org/03dr7j353', 'no_lang_code', 1, 'https://ror.org/03dr7j353 Biognosys (Switzerland)'),
(82918, 'https://ror.org/03dtnq041', 'en', 1, 'https://ror.org/03dtnq041 Arab Academy for Management, Banking and Financial Sciences Ų§Ł„Ų£ŁƒŲ§ŲÆŁ…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ© ŁˆŲ§Ł„Ł…Ų§Ł„ŁŠŲ© ŁˆŲ§Ł„Ł…ŲµŲ±ŁŁŠŲ©'),
(82919, 'https://ror.org/03dxajm77', 'en', 1, 'https://ror.org/03dxajm77 Farmington Community Library'),
(82920, 'https://ror.org/03dz0k314', 'en', 1, 'https://ror.org/03dz0k314 Wyss Academy for Nature'),
(82921, 'https://ror.org/03e06qt98', 'no_lang_code', 1, 'https://ror.org/03e06qt98 GE Global Research (United States)'),
(82922, 'https://ror.org/03e1sv842', 'en', 1, 'https://ror.org/03e1sv842 Abdus Salam Centre for Physics عبداسلام ادارہ ŲØŲ±Ų§Ų¦Ū’ طبیعیات'),
(82923, 'https://ror.org/03e2s4679', 'no_lang_code', 1, 'https://ror.org/03e2s4679 Ihara Chemical Industry (Japan) ć‚¤ćƒćƒ©ć‚±ćƒŸć‚«ćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(82924, 'https://ror.org/03e4a0h58', 'en', 1, 'https://ror.org/03e4a0h58 St. John''s School'),
(82925, 'https://ror.org/03e5bsk66', 'en', 1, 'https://ror.org/03e5bsk66 FORTH Institute of Chemical Engineering Sciences Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ Ī§Ī·Ī¼Ī¹ĪŗĻŽĪ½ ĪœĪ·Ļ‡Ī±Ī½Ī¹ĪŗĻŽĪ½'),
(82926, 'https://ror.org/03e7mhc87', 'en', 1, 'https://ror.org/03e7mhc87 Kansas City National Security Campus'),
(82927, 'https://ror.org/03e801006', 'fr', 1, 'https://ror.org/03e801006 Equipe Soutenue par la RƩgion et par l''Inserm'),
(82928, 'https://ror.org/03e84cm85', 'en', 1, 'https://ror.org/03e84cm85 VIB-VUB Center for Structural Biology'),
(82929, 'https://ror.org/03ea38411', 'no_lang_code', 1, 'https://ror.org/03ea38411 Water Corporation of Western Australia (Australia)'),
(82930, 'https://ror.org/03ebhsy64', 'en', 1, 'https://ror.org/03ebhsy64 ISI Foundation'),
(82931, 'https://ror.org/03ec8vy26', 'en', 1, 'https://ror.org/03ec8vy26 Autonomous University of Aguascalientes Universidad Autónoma de Aguascalientes'),
(82932, 'https://ror.org/03ecpp171', 'en', 1, 'https://ror.org/03ecpp171 University of Da Nang UniversitĆ© de danang ĐẔi hį»c ĐƠ Nįŗµng'),
(82933, 'https://ror.org/03edh3t65', 'en', 1, 'https://ror.org/03edh3t65 İLKE Science, Culture and Education Foundation İLKE İlim Kültür Eğitim Vakfı'),
(82934, 'https://ror.org/03edms940', 'fr', 1, 'https://ror.org/03edms940 Interfaces Traitements Organisation et Dynamique des SystĆØmes'),
(82935, 'https://ror.org/03efc2j36', 'no_lang_code', 1, 'https://ror.org/03efc2j36 Gran Telescopio Canarias (Spain)'),
(82936, 'https://ror.org/03egbv816', 'en', 1, 'https://ror.org/03egbv816 Cox Medical Center South'),
(82937, 'https://ror.org/03ej42966', 'en', 1, 'https://ror.org/03ej42966 Hamilton County Coroner'),
(82938, 'https://ror.org/03ek23472', 'en', 1, 'https://ror.org/03ek23472 Huaibei Normal University ę·®åŒ—åøˆčŒƒå¤§å­¦'),
(82939, 'https://ror.org/03ekhbz91', 'en', 1, 'https://ror.org/03ekhbz91 Renmin Hospital of Wuhan University'),
(82940, 'https://ror.org/03eks5p77', 'en', 1, 'https://ror.org/03eks5p77 Bon Secours Mercy Health'),
(82941, 'https://ror.org/03em0vf53', 'no_lang_code', 1, 'https://ror.org/03em0vf53 SyMO-Chem (Netherlands)'),
(82942, 'https://ror.org/03ep9w883', 'en', 1, 'https://ror.org/03ep9w883 Australian College of Optometry'),
(82943, 'https://ror.org/03es66g06', 'en', 1, 'https://ror.org/03es66g06 Leiden Observatory Sterrewacht Leiden'),
(82944, 'https://ror.org/03et6y035', 'no_lang_code', 1, 'https://ror.org/03et6y035 Museo Dabawenyo'),
(82945, 'https://ror.org/03etyjw28', 'es', 1, 'https://ror.org/03etyjw28 Pontifical Xavierian University Pontificia Universidad Javeriana'),
(82946, 'https://ror.org/03evrfb35', 'en', 1, 'https://ror.org/03evrfb35 United Nations Children''s Fund'),
(82947, 'https://ror.org/03exev935', 'en', 1, 'https://ror.org/03exev935 National Ovarian Cancer Coalition'),
(82948, 'https://ror.org/03ey0g045', 'fr', 1, 'https://ror.org/03ey0g045 HĆ“pital du SacrĆ©-Cœur de MontrĆ©al Sacred Heart Hospital of Montreal'),
(82949, 'https://ror.org/03ey0nh96', 'no_lang_code', 1, 'https://ror.org/03ey0nh96 Berry Oncology (China) å’Œē‘žåŸŗå› '),
(82950, 'https://ror.org/03ey7ve44', 'no_lang_code', 1, 'https://ror.org/03ey7ve44 Regulus Therapeutics (United States)'),
(82951, 'https://ror.org/03f0wvt12', 'en', 1, 'https://ror.org/03f0wvt12 University of Wisconsin Foundation'),
(82952, 'https://ror.org/03f2n3n81', 'en', 1, 'https://ror.org/03f2n3n81 State Forestry and Grassland Administration å›½å®¶ęž—äøšå’Œč‰åŽŸå±€'),
(82953, 'https://ror.org/03f37fg05', 'en', 1, 'https://ror.org/03f37fg05 Cooperative Research Centre for Mental Health'),
(82954, 'https://ror.org/03f4b7c94', 'no_lang_code', 1, 'https://ror.org/03f4b7c94 Jiangling Motors Corporation (China) ę±Ÿé“ƒę±½č½¦å…¬åø'),
(82955, 'https://ror.org/03f5sm451', 'en', 1, 'https://ror.org/03f5sm451 Kimberley Hospital'),
(82956, 'https://ror.org/03f69w292', 'no_lang_code', 1, 'https://ror.org/03f69w292 First American (United States)'),
(82957, 'https://ror.org/03f6hbh92', 'en', 1, 'https://ror.org/03f6hbh92 Institute of Natural and Technical Systems'),
(82958, 'https://ror.org/03f754t19', 'en', 1, 'https://ror.org/03f754t19 Gerash University of Medical Sciences'),
(82959, 'https://ror.org/03f7j3221', 'en', 1, 'https://ror.org/03f7j3221 European League Against Rheumatism'),
(82960, 'https://ror.org/03f8xts90', 'no_lang_code', 1, 'https://ror.org/03f8xts90 Yalong Hydro (China) é›…ē »ę±ŸęµåŸŸę°“ē”µå¼€å‘'),
(82961, 'https://ror.org/03f918r09', 'en', 1, 'https://ror.org/03f918r09 Japanese Red Cross Nagoya Daiichi Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾åå¤å±‹ē¬¬äø€čµ¤åå­—ē—…é™¢'),
(82962, 'https://ror.org/03fb3j069', 'en', 1, 'https://ror.org/03fb3j069 Illinois State Academy of Science'),
(82963, 'https://ror.org/03fg03m71', 'en', 1, 'https://ror.org/03fg03m71 Heartland Cancer Research'),
(82964, 'https://ror.org/03fg2km54', 'en', 1, 'https://ror.org/03fg2km54 Institute for Advanced Study in Toulouse'),
(82965, 'https://ror.org/03fgbah51', 'en', 1, 'https://ror.org/03fgbah51 Kohnan Hospital äø€čˆ¬č²”å›£ę³•äŗŗåŗƒå—ä¼šåŗƒå—ē—…é™¢'),
(82966, 'https://ror.org/03fjc3817', 'en', 1, 'https://ror.org/03fjc3817 Shanghai Chest Hospital'),
(82967, 'https://ror.org/03fktew82', 'en', 1, 'https://ror.org/03fktew82 Institute of Social Sciences and Humanities, Skopje Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š¾Ń‚ за Š¾ŠæŃˆŃ‚ествени Šø Ń…ŃƒŠ¼Š°Š½ŠøŃŃ‚ŠøŃ‡ŠŗŠø науки – Дкопје'),
(82968, 'https://ror.org/03fm0ke30', 'no_lang_code', 1, 'https://ror.org/03fm0ke30 GHGSat (Canada)'),
(82969, 'https://ror.org/03fnv7n42', 'en', 1, 'https://ror.org/03fnv7n42 Nanjing Xiaozhuang University å—äŗ¬ę™“åŗ„å­¦é™¢'),
(82970, 'https://ror.org/03fpmk626', 'no_lang_code', 1, 'https://ror.org/03fpmk626 JAę–°ę½ŸåŽšē”Ÿé€£ä½ęø”ē·åˆē—…é™¢ Sado General Hospital'),
(82971, 'https://ror.org/03fqvdm62', 'no_lang_code', 1, 'https://ror.org/03fqvdm62 Cipher Gene (China)'),
(82972, 'https://ror.org/03fzkfr34', 'de', 1, 'https://ror.org/03fzkfr34 Landesinstitut für Pädagogik und Medien'),
(82973, 'https://ror.org/03g10x105', 'en', 1, 'https://ror.org/03g10x105 COmON Stichting Comon Foundation'),
(82974, 'https://ror.org/03g11f026', 'en', 1, 'https://ror.org/03g11f026 Milli Nüvə Tədqiqatları Mərkəzi National Nuclear Research Center ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(82975, 'https://ror.org/03g9ek587', 'en', 1, 'https://ror.org/03g9ek587 National Research Institute of Police Science č­¦åÆŸåŗē§‘å­¦č­¦åÆŸē ”ē©¶ę‰€'),
(82976, 'https://ror.org/03gb41d27', 'en', 1, 'https://ror.org/03gb41d27 Comprehensive Research Organization for Science and Society ē·åˆē§‘å­¦ē ”ē©¶ę©Ÿę§‹'),
(82977, 'https://ror.org/03gc39678', 'en', 1, 'https://ror.org/03gc39678 Antonine University الجامعة Ų§Ł„Ų£Ł†Ų·ŁˆŁ†ŁŠŲ©'),
(82978, 'https://ror.org/03gcgxa17', 'en', 1, 'https://ror.org/03gcgxa17 Interuniversity Cooperation Centre Water & Health InteruniversitƤre Kooperationszentrum Wasser und Gesundheit'),
(82979, 'https://ror.org/03gcx9p86', 'en', 1, 'https://ror.org/03gcx9p86 Equilibrium Research'),
(82980, 'https://ror.org/03gd8w426', 'en', 1, 'https://ror.org/03gd8w426 MacNeal Hospital'),
(82981, 'https://ror.org/03gf8rp76', 'en', 1, 'https://ror.org/03gf8rp76 National Centre for Biological Sciences ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ą²œą³€ą²µ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²•ą³†ą³•ą²‚ą²¦ą³ą²°'),
(82982, 'https://ror.org/03gffmq02', 'en', 1, 'https://ror.org/03gffmq02 Canadian Nutrition Society, SociƩtƩ Canadienne de Nutrition'),
(82983, 'https://ror.org/03gg2z496', 'en', 1, 'https://ror.org/03gg2z496 NEWhub'),
(82984, 'https://ror.org/03ghfnt05', 'en', 1, 'https://ror.org/03ghfnt05 Mykolaiv Observatory ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠ° астрономічна Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€Ń–Ń ŠŠøŠŗŠ¾Š»Š°ŠµŠ²ŃŠŗŠ°Ń Š°ŃŃ‚Ń€Š¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(82985, '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'),
(82986, 'https://ror.org/03gjxds17', 'en', 1, 'https://ror.org/03gjxds17 Ludwig Boltzmann Institute Applied Diagnostics'),
(82987, 'https://ror.org/03gnrk197', 'no_lang_code', 1, 'https://ror.org/03gnrk197 Pantheon Biosciences (Israel)'),
(82988, 'https://ror.org/03gq8sg42', 'no_lang_code', 1, 'https://ror.org/03gq8sg42 Yahoo (Spain)'),
(82989, 'https://ror.org/03gqhbs95', 'en', 1, 'https://ror.org/03gqhbs95 BC Cancer Foundation'),
(82990, 'https://ror.org/03gqsr633', 'en', 1, 'https://ror.org/03gqsr633 Shanghai Sunshine Rehabilitation Center äøŠęµ·åø‚å…»åæ—åŗ·å¤åŒ»é™¢'),
(82991, 'https://ror.org/03gtv5v80', 'es', 1, 'https://ror.org/03gtv5v80 Network of Biological Alerts Laboratories Red de Laboratorios de Alertas Biológicas'),
(82992, 'https://ror.org/03gv2xk61', 'en', 1, 'https://ror.org/03gv2xk61 RIKEN Center for Emergent Matter Science å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€å‰µē™ŗē‰©ę€§ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(82993, 'https://ror.org/03gvnh520', 'en', 1, 'https://ror.org/03gvnh520 Paris Cardiovascular Research Center Paris Centre de Recherche Cardiovasculaire'),
(82994, 'https://ror.org/03gw47g69', 'no_lang_code', 1, 'https://ror.org/03gw47g69 VASP Software (Austria)'),
(82995, 'https://ror.org/03h3tds63', 'no_lang_code', 1, 'https://ror.org/03h3tds63 Toyohashi Municipal Hospital č±Šę©‹åø‚ę°‘ē—…é™¢'),
(82996, 'https://ror.org/03h6erk64', 'en', 1, 'https://ror.org/03h6erk64 Daniel K. Inouye U.S. Pacific Basin Agricultural Research Center'),
(82997, 'https://ror.org/03h7kjd96', 'no_lang_code', 1, 'https://ror.org/03h7kjd96 Shanghai Centennial Scientific (China) äøŠęµ·ē››ē‰¹å°¼åŒ»čÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(82998, 'https://ror.org/03h82yz49', 'de', 1, 'https://ror.org/03h82yz49 KHM-Museumsverband Museum of Art History'),
(82999, 'https://ror.org/03h954b39', 'en', 1, 'https://ror.org/03h954b39 Tsuruga Nursing University ę•¦č³€åø‚ē«‹ēœ‹č­·å¤§å­¦'),
(83000, 'https://ror.org/03hahj039', 'fr', 1, 'https://ror.org/03hahj039 Institut de Readaptation Gingras Lindsay de Montreal'),
(83001, 'https://ror.org/03hbhg091', 'en', 1, 'https://ror.org/03hbhg091 Lviv Academy of Commerce Š›ŃŒŠ²Š¾Š²ŃŠŗŠ°Ń ŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° комерційна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(83002, 'https://ror.org/03hf25883', 'no_lang_code', 1, 'https://ror.org/03hf25883 Prioris.ai (Canada)'),
(83003, 'https://ror.org/03hf69k85', 'no_lang_code', 1, 'https://ror.org/03hf69k85 bioMƩrieux (France)'),
(83004, 'https://ror.org/03hf75752', 'en', 1, 'https://ror.org/03hf75752 Global Health 50/50'),
(83005, 'https://ror.org/03hgkg910', 'en', 1, 'https://ror.org/03hgkg910 Ludwig Boltzmann Institute for Rare and Undiagnosed Diseases'),
(83006, 'https://ror.org/03hgxtg28', 'en', 1, 'https://ror.org/03hgxtg28 Beijing Institute of Fashion Technology åŒ—äŗ¬ęœč£…å­¦é™¢'),
(83007, 'https://ror.org/03hm8w204', 'no_lang_code', 1, 'https://ror.org/03hm8w204 Pharmacyclics (United States)'),
(83008, 'https://ror.org/03hpxd290', 'de', 1, 'https://ror.org/03hpxd290 Nordwestdeutsche Forstliche Versuchsanstalt Northwest German Forest Research Institute'),
(83009, 'https://ror.org/03hq4qb06', 'no_lang_code', 1, 'https://ror.org/03hq4qb06 Senju Pharmaceutical (Japan) åƒåÆæč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(83010, 'https://ror.org/03hqwnx39', 'en', 1, 'https://ror.org/03hqwnx39 Hebei North University ę²³åŒ—åŒ—ę–¹å­¦é™¢'),
(83011, 'https://ror.org/03hre7f61', 'es', 1, 'https://ror.org/03hre7f61 Hospital Regional de Alta Especialidad del BajĆ­o'),
(83012, 'https://ror.org/03hsf0573', 'en', 1, 'https://ror.org/03hsf0573 William & Mary'),
(83013, 'https://ror.org/03hxj3015', 'no', 1, 'https://ror.org/03hxj3015 SpesialistSenteret Pilestredet Park'),
(83014, 'https://ror.org/03hy6ga56', 'en', 1, 'https://ror.org/03hy6ga56 China International Medical Foundation'),
(83015, 'https://ror.org/03hya7h57', 'en', 1, 'https://ror.org/03hya7h57 Roman L. Hruska U.S. Meat Animal Research Center'),
(83016, 'https://ror.org/03hygqf77', 'en', 1, 'https://ror.org/03hygqf77 American Beverage Association'),
(83017, 'https://ror.org/03j1d4266', 'no_lang_code', 1, 'https://ror.org/03j1d4266 Anevo (Greece)'),
(83018, 'https://ror.org/03j32c418', 'en', 1, 'https://ror.org/03j32c418 Muhammadiyah University Purwokerto Universitas Muhammadiyah Purwokerto'),
(83019, 'https://ror.org/03j44cc15', 'en', 1, 'https://ror.org/03j44cc15 Nagano National Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ę±é•·é‡Žē—…é™¢'),
(83020, 'https://ror.org/03j480g22', 'no_lang_code', 1, 'https://ror.org/03j480g22 Sega (Japan) ę Ŗå¼ä¼šē¤¾ć‚»ć‚¬'),
(83021, 'https://ror.org/03j4s9c05', 'no_lang_code', 1, 'https://ror.org/03j4s9c05 Agua y Saneamientos Argentinos Argentine Water and Sanitation (Argentina)'),
(83022, 'https://ror.org/03j50y383', 'en', 1, 'https://ror.org/03j50y383 Monash IVF'),
(83023, 'https://ror.org/03j56s085', 'en', 1, 'https://ror.org/03j56s085 Chukyo Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹äø­äŗ¬ē—…é™¢'),
(83024, 'https://ror.org/03j7rgg33', 'en', 1, 'https://ror.org/03j7rgg33 Natural Resources Conservation Service'),
(83025, 'https://ror.org/03j9hxf30', 'no_lang_code', 1, 'https://ror.org/03j9hxf30 Nissin Kogyo (Japan) ę—„äæ”å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(83026, 'https://ror.org/03jasrp23', 'en', 1, 'https://ror.org/03jasrp23 Phoenix Hospital Chelmsford'),
(83027, 'https://ror.org/03jbn8j42', 'en', 1, 'https://ror.org/03jbn8j42 Council of Local Authorities for International Relations äø€čˆ¬č²”å›£ę³•äŗŗč‡Ŗę²»ä½“å›½éš›åŒ–å”ä¼š'),
(83028, 'https://ror.org/03jdk4039', 'en', 1, 'https://ror.org/03jdk4039 Harry K. Dupree Stuttgart National Aquaculture Research Center'),
(83029, 'https://ror.org/03je9ev90', 'en', 1, 'https://ror.org/03je9ev90 World Health Organization - Malawi'),
(83030, 'https://ror.org/03jex2n57', 'en', 1, 'https://ror.org/03jex2n57 National Boron Research Institute Ulusal Bor Araştırma Enstitüsü'),
(83031, 'https://ror.org/03jf2m686', 'en', 1, 'https://ror.org/03jf2m686 Indian Institute of Tropical Meteorology ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤‰ą¤·ą„ą¤£ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ą„€ą¤Æ ą¤¹ą¤µą¤¾ą¤®ą¤¾ą¤Øą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(83032, 'https://ror.org/03jfqp972', 'en', 1, 'https://ror.org/03jfqp972 Clark County Public Health'),
(83033, 'https://ror.org/03jg1ab83', 'no_lang_code', 1, 'https://ror.org/03jg1ab83 Afflux Consulting (Australia)'),
(83034, 'https://ror.org/03jgmfc14', 'en', 1, 'https://ror.org/03jgmfc14 Postgraduate School of Molecular Medicine Studium Medycyny Molekularnej'),
(83035, 'https://ror.org/03jgmp057', 'en', 1, 'https://ror.org/03jgmp057 Fundação Luso-Americana Para o Desenvolvimento Luso American Development Foundation'),
(83036, 'https://ror.org/03jgp2295', 'en', 1, 'https://ror.org/03jgp2295 Texas Fertility Center'),
(83037, 'https://ror.org/03jgpyv48', 'no_lang_code', 1, 'https://ror.org/03jgpyv48 UZR (Germany)'),
(83038, 'https://ror.org/03jhrww64', 'en', 1, 'https://ror.org/03jhrww64 United Cerebral Palsy'),
(83039, 'https://ror.org/03jhxhg55', 'en', 1, 'https://ror.org/03jhxhg55 Norton Hospital'),
(83040, 'https://ror.org/03jmjy508', 'fr', 1, 'https://ror.org/03jmjy508 HƓtel-Dieu de Paris'),
(83041, 'https://ror.org/03jp1kx71', 'en', 1, 'https://ror.org/03jp1kx71 Vidzeme University of Applied Sciences Vidzemes Augstskola'),
(83042, 'https://ror.org/03jpxze54', 'fr', 1, 'https://ror.org/03jpxze54 Fondation Maladies Rares'),
(83043, 'https://ror.org/03jqa2c59', 'en', 1, 'https://ror.org/03jqa2c59 Institut für Prävention und Arbeitsmedizin Institute for Prevention and Occupational Medicine'),
(83044, 'https://ror.org/03jrxta72', 'en', 1, 'https://ror.org/03jrxta72 Princess Margaret Hospital ē‘Ŗå˜‰ēƒˆé†«é™¢'),
(83045, 'https://ror.org/03js3tm40', 'fr', 1, 'https://ror.org/03js3tm40 Fondation JƩrƓme-Lejeune'),
(83046, 'https://ror.org/03jv9sa78', 'en', 1, 'https://ror.org/03jv9sa78 Japanese Society of Hypertension ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬é«˜č”€åœ§å­¦ä¼š'),
(83047, 'https://ror.org/03jvvjr23', 'en', 1, 'https://ror.org/03jvvjr23 Daiichi University of Pharmacy 第一薬科大学'),
(83048, 'https://ror.org/03jz3bd79', 'en', 1, 'https://ror.org/03jz3bd79 Center for Marine and Oceanographic Research Centre de Recherches OcƩanologiques'),
(83049, 'https://ror.org/03k1e4r14', 'fr', 1, 'https://ror.org/03k1e4r14 UnitƩ de Technologies Chimiques et Biologiques pour la SantƩ'),
(83050, 'https://ror.org/03k3c2t50', 'en', 1, 'https://ror.org/03k3c2t50 Universidad de Alaska Anchorage University of Alaska Anchorage UniversitƩ de l''alaska Ơ anchorage'),
(83051, 'https://ror.org/03k6fqn53', 'en', 1, 'https://ror.org/03k6fqn53 An Roinn SlƔinte Department of Health'),
(83052, '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'),
(83053, 'https://ror.org/03k83z818', 'en', 1, 'https://ror.org/03k83z818 Global Institutes on Addictions'),
(83054, 'https://ror.org/03k95ve17', 'en', 1, 'https://ror.org/03k95ve17 Yokohama City University Medical Center ęØŖęµœåø‚ē«‹å¤§å­¦é™„å±žåø‚ę°‘ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(83055, 'https://ror.org/03ka58c58', 'id', 1, 'https://ror.org/03ka58c58 Universitas PGRI Yogyakarta'),
(83056, 'https://ror.org/03ka66t46', 'en', 1, 'https://ror.org/03ka66t46 Marine Design & Research Institute of China'),
(83057, 'https://ror.org/03kbmhj98', 'en', 1, 'https://ror.org/03kbmhj98 Takoradi Technical University'),
(83058, 'https://ror.org/03kcjz738', 'en', 1, 'https://ror.org/03kcjz738 China National Center for Food Safety Risk Assessment å›½å®¶é£Ÿå“å®‰å…Øé£Žé™©čÆ„ä¼°äø­åæƒ'),
(83059, 'https://ror.org/03kezgr11', 'en', 1, 'https://ror.org/03kezgr11 Stanford Blood Center'),
(83060, 'https://ror.org/03kfmm080', 'en', 1, 'https://ror.org/03kfmm080 Aichi Cancer Center ę„›ēŸ„ēœŒćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(83061, 'https://ror.org/03kgp0q12', 'en', 1, 'https://ror.org/03kgp0q12 Biomedical Research Institute of New Mexico'),
(83062, 'https://ror.org/03kk9k137', 'en', 1, 'https://ror.org/03kk9k137 Nigerian Institute of Medical Research'),
(83063, 'https://ror.org/03krvca73', 'no_lang_code', 1, 'https://ror.org/03krvca73 USGI Medical (United States)'),
(83064, 'https://ror.org/03krwcf90', 'no_lang_code', 1, 'https://ror.org/03krwcf90 Saiseikai Matsuyama Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šę¾å±±ē—…é™¢');
INSERT INTO `rors` VALUES
(83065, 'https://ror.org/03ks0tt05', 'no_lang_code', 1, 'https://ror.org/03ks0tt05 JSR (Japan) JSRę Ŗå¼ä¼šē¤¾'),
(83066, 'https://ror.org/03ksbpa13', 'en', 1, 'https://ror.org/03ksbpa13 Jiangsu Food and Pharmaceutical Science College ę±Ÿč‹é£Ÿå“čÆå“čŒäøšęŠ€ęœÆå­¦é™¢'),
(83067, 'https://ror.org/03kss9p24', 'en', 1, 'https://ror.org/03kss9p24 Institut International d''Agriculture Tropicale International Institute of Tropical Agriculture'),
(83068, 'https://ror.org/03kwyfa97', 'de', 1, 'https://ror.org/03kwyfa97 Centro Suisse du Cancer Swiss Cancer Center LƩman'),
(83069, 'https://ror.org/03kx37d46', 'en', 1, 'https://ror.org/03kx37d46 Latvian State Forest Research Institute "Silava" Latvijas Valsts mežzinātnes institūts "Silava"'),
(83070, 'https://ror.org/03kxagd85', 'de', 1, 'https://ror.org/03kxagd85 Helios Dr. Horst Schmidt Kliniken Wiesbaden'),
(83071, 'https://ror.org/03kyznd40', 'en', 1, 'https://ror.org/03kyznd40 American College of Preventive Medicine'),
(83072, 'https://ror.org/03m0cw265', 'en', 1, 'https://ror.org/03m0cw265 Nizhne-Svirsky State Nature Reserve ŠŠøŠ¶Š½Šµ-Двирский Š³Š¾ŃŃƒŠ“арственный прироГный заповеГник'),
(83073, 'https://ror.org/03m3xkg41', 'en', 1, 'https://ror.org/03m3xkg41 Berhampur University'),
(83074, 'https://ror.org/03m4evp90', 'en', 1, 'https://ror.org/03m4evp90 Michigan Primary Care Association'),
(83075, 'https://ror.org/03m4gcv27', 'en', 1, 'https://ror.org/03m4gcv27 West Virginia Geological & Economic Survey'),
(83076, 'https://ror.org/03m60sb72', 'no_lang_code', 1, 'https://ror.org/03m60sb72 Crozet BioPharma (United States)'),
(83077, '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'),
(83078, 'https://ror.org/03mchdq19', 'da', 1, 'https://ror.org/03mchdq19 Rigshospitalet'),
(83079, 'https://ror.org/03mdbpg08', 'no_lang_code', 1, 'https://ror.org/03mdbpg08 Wren Laboratories (United States)'),
(83080, 'https://ror.org/03mebtg66', 'en', 1, 'https://ror.org/03mebtg66 Newburgh Free Library'),
(83081, 'https://ror.org/03mef7y36', 'no_lang_code', 1, 'https://ror.org/03mef7y36 GeoModelling Solutions (Switzerland)'),
(83082, 'https://ror.org/03mezqr97', 'en', 1, 'https://ror.org/03mezqr97 Shujitsu University 就実大学'),
(83083, 'https://ror.org/03mfyme49', 'en', 1, 'https://ror.org/03mfyme49 Biomedical Research Institute of Lleida Institut de Recerca Biomèdica de Lleida Instituto de Investigación Biomédica de Lleida'),
(83084, 'https://ror.org/03mg0pe18', 'fr', 1, 'https://ror.org/03mg0pe18 Centre Hospitalier de Dax –CĆ“te d’Argent'),
(83085, '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 ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр реабилитации Šø ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠøĀ» ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(83086, 'https://ror.org/03mjcd737', 'en', 1, 'https://ror.org/03mjcd737 Pamantasan ng Silangan University of the East'),
(83087, 'https://ror.org/03mk5b468', 'en', 1, 'https://ror.org/03mk5b468 The Behavioural Insights Team'),
(83088, 'https://ror.org/03mkfqw37', 'en', 1, 'https://ror.org/03mkfqw37 International Potato Center'),
(83089, 'https://ror.org/03mm3ph30', 'no_lang_code', 1, 'https://ror.org/03mm3ph30 Micron (Japan) ćƒžć‚¤ć‚Æćƒ­ćƒ³ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(83090, 'https://ror.org/03mmkpw24', 'en', 1, 'https://ror.org/03mmkpw24 International Shariʽah Research Academy for Islamic Finance'),
(83091, 'https://ror.org/03mnvja93', 'en', 1, 'https://ror.org/03mnvja93 Fukui Prefectural Police ē¦äŗ•ēœŒč­¦åÆŸ'),
(83092, 'https://ror.org/03mp2xd28', 'en', 1, 'https://ror.org/03mp2xd28 Ann Arbor District Library'),
(83093, 'https://ror.org/03mpkb302', 'en', 1, 'https://ror.org/03mpkb302 Pharmaceuticals and Medical Devices Agency ē‹¬ē«‹č”Œę”æę³•äŗŗ åŒ»č–¬å“åŒ»ē™‚ę©Ÿå™Øē·åˆę©Ÿę§‹'),
(83094, 'https://ror.org/03ms1y683', 'fr', 1, 'https://ror.org/03ms1y683 Langues, Textes, Traitements Informatiques, Cognition'),
(83095, 'https://ror.org/03mv39058', 'en', 1, 'https://ror.org/03mv39058 Foundation for Advanced Studies on International Development äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›é–‹ē™ŗę©Ÿę§‹'),
(83096, 'https://ror.org/03mz46a79', 'no_lang_code', 1, 'https://ror.org/03mz46a79 Berurando General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē”Ÿé•·ä¼šćƒ™ćƒ«ćƒ©ćƒ³ćƒ‰ē·åˆē—…é™¢'),
(83097, 'https://ror.org/03n0ara52', 'en', 1, 'https://ror.org/03n0ara52 Possover International Medical Center'),
(83098, 'https://ror.org/03n2mgj60', 'en', 1, 'https://ror.org/03n2mgj60 Persian Gulf University دانؓگاه Ų®Ł„ŪŒŲ¬ فارس'),
(83099, 'https://ror.org/03n3dbn70', 'en', 1, 'https://ror.org/03n3dbn70 National Public Health Institute of Liberia'),
(83100, 'https://ror.org/03n3q9f18', 'en', 1, 'https://ror.org/03n3q9f18 Centre of Excellence for Development Impact and Learning'),
(83101, 'https://ror.org/03n3v6d52', 'en', 1, 'https://ror.org/03n3v6d52 Chongqing University of Science and Technology é‡åŗ†ē§‘ęŠ€å­¦é™¢'),
(83102, 'https://ror.org/03n6et148', 'no_lang_code', 1, 'https://ror.org/03n6et148 Braile BiomƩdica (Brazil)'),
(83103, 'https://ror.org/03n6h1x35', 'it', 1, 'https://ror.org/03n6h1x35 Associazione Meteo Professionisti'),
(83104, 'https://ror.org/03n6qxm88', 'fr', 1, 'https://ror.org/03n6qxm88 HƓpital Saint-Jacques'),
(83105, 'https://ror.org/03nb3ch98', 'no_lang_code', 1, 'https://ror.org/03nb3ch98 New England Biolabs (China)'),
(83106, 'https://ror.org/03nbbc502', 'no_lang_code', 1, 'https://ror.org/03nbbc502 Ricardo AEA (United Kingdom)'),
(83107, 'https://ror.org/03ndm5988', 'en', 1, 'https://ror.org/03ndm5988 The Institution of Engineers Malaysia'),
(83108, 'https://ror.org/03net5943', 'en', 1, 'https://ror.org/03net5943 Northeast Petroleum University äøœåŒ—ēŸ³ę²¹å¤§å­¦'),
(83109, 'https://ror.org/03ng8vp43', 'en', 1, 'https://ror.org/03ng8vp43 Arctic State Agrotechnological University ŠÆŠŗŃƒŃ‚ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(83110, 'https://ror.org/03njn4610', 'es', 1, 'https://ror.org/03njn4610 Instituto de Investigación Sanitaria Aragón'),
(83111, 'https://ror.org/03nk1j814', 'en', 1, 'https://ror.org/03nk1j814 Ventura County Medical Center'),
(83112, 'https://ror.org/03nk2rw89', 'en', 1, 'https://ror.org/03nk2rw89 Atomic Energy Commission of Syria'),
(83113, 'https://ror.org/03nmkqc55', 'en', 1, 'https://ror.org/03nmkqc55 Wisconsin Department of Natural Resources'),
(83114, 'https://ror.org/03nn3w026', 'no_lang_code', 1, 'https://ror.org/03nn3w026 HiFiBiO Therapeutics (France)'),
(83115, 'https://ror.org/03npphx08', 'sq', 1, 'https://ror.org/03npphx08 Akademia e Studimeve Albanologjike'),
(83116, 'https://ror.org/03nrpad60', 'no_lang_code', 1, 'https://ror.org/03nrpad60 WayRay (Russia)'),
(83117, 'https://ror.org/03nrps502', 'no_lang_code', 1, 'https://ror.org/03nrps502 Akvaplan-niva'),
(83118, 'https://ror.org/03nrzqb76', 'en', 1, 'https://ror.org/03nrzqb76 Center of Hubei Cooperative Innovation for Emissions Trading System ē¢³ęŽ’ę”¾ęƒäŗ¤ę˜“ę¹–åŒ—ēœååŒåˆ›ę–°äø­åæƒ'),
(83119, 'https://ror.org/03nv92q59', 'en', 1, 'https://ror.org/03nv92q59 Japan Coast Guard ęµ·äøŠäæå®‰åŗ'),
(83120, 'https://ror.org/03p330m15', 'no_lang_code', 1, 'https://ror.org/03p330m15 Dexerials (Japan) ćƒ‡ć‚Æć‚»ćƒŖć‚¢ćƒ«ć‚ŗę Ŗå¼ä¼šē¤¾'),
(83121, 'https://ror.org/03p3y9p09', 'en', 1, 'https://ror.org/03p3y9p09 Association of European Schools of Planning'),
(83122, 'https://ror.org/03p41j374', 'en', 1, 'https://ror.org/03p41j374 Bomet University College'),
(83123, 'https://ror.org/03p9nrq57', 'no_lang_code', 1, 'https://ror.org/03p9nrq57 Hodogaya Chemical (Japan) äæåœŸč°·åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(83124, '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'),
(83125, 'https://ror.org/03pebmm12', 'en', 1, 'https://ror.org/03pebmm12 1 Military Clinical Hospital with Outpatient Clinic 1 Wojskowy Szpital Kliniczny z Polikliniką'),
(83126, 'https://ror.org/03pekdw43', 'en', 1, 'https://ror.org/03pekdw43 Persistent Systems (India)'),
(83127, 'https://ror.org/03pep4w33', 'en', 1, 'https://ror.org/03pep4w33 The Intergovernmental Committee on Surveying and Mapping'),
(83128, 'https://ror.org/03pffnr86', 'en', 1, 'https://ror.org/03pffnr86 Marine Biomedical Research Institute of Qingdao é’å²›ęµ·ę“‹ē”Ÿē‰©åŒ»čÆē ”ē©¶é™¢'),
(83129, 'https://ror.org/03pfqk412', 'no_lang_code', 1, 'https://ror.org/03pfqk412 Allergan (United States)'),
(83130, 'https://ror.org/03pkp5n34', 'fi', 1, 'https://ror.org/03pkp5n34 Aarne Koskelon SƤƤtiƶ'),
(83131, 'https://ror.org/03pmpje25', 'de', 1, 'https://ror.org/03pmpje25 St. Josef-Krankenhaus Wien'),
(83132, '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'),
(83133, 'https://ror.org/03prcq065', 'en', 1, 'https://ror.org/03prcq065 Key Laboratory of Nuclear Radiation and Nuclear Energy Technology äø­å›½ē§‘å­¦é™¢ę øč¾å°„äøŽę øčƒ½ęŠ€ęœÆé‡ē‚¹å®žéŖŒå®¤'),
(83134, 'https://ror.org/03pv0jn66', 'en', 1, 'https://ror.org/03pv0jn66 Institut za Javno Zdravlje Srbije Institute of Public Health of Serbia'),
(83135, 'https://ror.org/03pw76589', 'en', 1, 'https://ror.org/03pw76589 Sieć Badawcza Łukasiewicz – Instytut Obróbki Plastycznej Łukasiewicz Research Network - Metal Forming Institute'),
(83136, 'https://ror.org/03pzeh695', 'en', 1, 'https://ror.org/03pzeh695 Collaborative Care Systems Finland'),
(83137, 'https://ror.org/03q11y497', 'en', 1, 'https://ror.org/03q11y497 Japan Community Healthcare Organization ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹'),
(83138, 'https://ror.org/03q35y927', 'no_lang_code', 1, 'https://ror.org/03q35y927 Immune Modulatory Therapies (United States)'),
(83139, 'https://ror.org/03q36cn05', 'no_lang_code', 1, 'https://ror.org/03q36cn05 Uks'),
(83140, 'https://ror.org/03q397159', 'en', 1, 'https://ror.org/03q397159 Data61'),
(83141, 'https://ror.org/03q3ecb97', 'no_lang_code', 1, 'https://ror.org/03q3ecb97 Coral Publications'),
(83142, 'https://ror.org/03q4q6w91', 'no_lang_code', 1, 'https://ror.org/03q4q6w91 Carl Zeiss (China)'),
(83143, 'https://ror.org/03q5df791', 'en', 1, 'https://ror.org/03q5df791 Miller Dwan Foundation'),
(83144, 'https://ror.org/03q5f0t83', 'en', 1, 'https://ror.org/03q5f0t83 Datalys Center for Sports Injury Research and Prevention'),
(83145, 'https://ror.org/03q60bw50', 'es', 1, 'https://ror.org/03q60bw50 Centro Nacional de Investigaciones de CafƩ National Coffee Research Center'),
(83146, 'https://ror.org/03q75vf28', 'en', 1, 'https://ror.org/03q75vf28 Toyota Physical and Chemical Research Institute č±Šē”°ē†åŒ–å­¦ē ”ē©¶ę‰€čØ­ē«‹'),
(83147, 'https://ror.org/03q8q6n37', 'no_lang_code', 1, 'https://ror.org/03q8q6n37 Genomic Prediction (United States)'),
(83148, 'https://ror.org/03q9f1475', 'en', 1, 'https://ror.org/03q9f1475 Korean Society of Gastrointestinal Endoscopy ėŒ€ķ•œģ†Œķ™”źø°ė‚“ģ‹œź²½ķ•™ķšŒ'),
(83149, 'https://ror.org/03qa1nk44', 'en', 1, 'https://ror.org/03qa1nk44 Japan Coast Guard Academy ęµ·äøŠäæå®‰å¤§å­¦ę ”'),
(83150, 'https://ror.org/03qb7bg95', 'en', 1, 'https://ror.org/03qb7bg95 Guangzhou University of Chinese Medicine å¹æå·žäø­åŒ»čÆå¤§å­¦'),
(83151, 'https://ror.org/03qb9e113', 'en', 1, 'https://ror.org/03qb9e113 Tomishiro Central Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå‹ę„›ä¼šč±Šč¦‹åŸŽäø­å¤®ē—…é™¢'),
(83152, 'https://ror.org/03qbwe721', 'en', 1, 'https://ror.org/03qbwe721 Osaka Mishima Emergency and Critical Care Center å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗåŗœäø‰å³¶ę•‘ę€„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(83153, 'https://ror.org/03qcx4p52', 'en', 1, 'https://ror.org/03qcx4p52 David Hide Asthma and Allergy Research Centre'),
(83154, 'https://ror.org/03qd55m24', 'en', 1, 'https://ror.org/03qd55m24 Academy Of Finance Hį»c Viện TĆ i ChĆ­nh'),
(83155, 'https://ror.org/03qdcb993', 'en', 1, 'https://ror.org/03qdcb993 Harbin Science and Technology Bureau'),
(83156, 'https://ror.org/03qf09715', 'no_lang_code', 1, 'https://ror.org/03qf09715 FLSmidth (Denmark)'),
(83157, 'https://ror.org/03qfyer56', 'no_lang_code', 1, 'https://ror.org/03qfyer56 Marie Stopes Society'),
(83158, 'https://ror.org/03qgfjh43', 'no_lang_code', 1, 'https://ror.org/03qgfjh43 Medline (United States)'),
(83159, 'https://ror.org/03qh1f279', 'nl', 1, 'https://ror.org/03qh1f279 IJsselland Ziekenhuis'),
(83160, 'https://ror.org/03qh6m929', 'en', 1, 'https://ror.org/03qh6m929 Society of Vertebrate Paleontology'),
(83161, 'https://ror.org/03qmgc142', 'en', 1, 'https://ror.org/03qmgc142 Kemmons Wilson Family Foundation'),
(83162, 'https://ror.org/03qnzrx19', 'en', 1, 'https://ror.org/03qnzrx19 United Kingdom Sport'),
(83163, 'https://ror.org/03qrhd488', 'en', 1, 'https://ror.org/03qrhd488 Edwards Comprehensive Cancer Center'),
(83164, 'https://ror.org/03qx0n513', 'en', 1, 'https://ror.org/03qx0n513 U.S. Arid Land Agricultural Research Center'),
(83165, 'https://ror.org/03r0dqa93', 'no_lang_code', 1, 'https://ror.org/03r0dqa93 Doctor''s Choice (Japan) ćƒ‰ć‚Æć‚æćƒ¼ć‚ŗćƒćƒ§ć‚¤ć‚¹'),
(83166, 'https://ror.org/03r1hk592', 'en', 1, 'https://ror.org/03r1hk592 Baker Foundation'),
(83167, 'https://ror.org/03r1tnz13', 'en', 1, 'https://ror.org/03r1tnz13 Taymyr Nature Reserve Таймырский заповеГник'),
(83168, 'https://ror.org/03r2nz980', 'en', 1, 'https://ror.org/03r2nz980 Heilongjiang University of Technology é»‘é¾™ę±Ÿå·„äøšå­¦é™¢'),
(83169, 'https://ror.org/03r38cy24', 'en', 1, 'https://ror.org/03r38cy24 Osaka Research Institute of Industrial Science and Technology åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§é˜Ŗē”£ę„­ęŠ€č”“ē ”ē©¶ę‰€'),
(83170, 'https://ror.org/03r4m3349', 'en', 1, 'https://ror.org/03r4m3349 Erasmus MC Cancer Institute Erasmus MC Kanker Instituut'),
(83171, 'https://ror.org/03r4rz990', 'no_lang_code', 1, 'https://ror.org/03r4rz990 Vetcare (Finland)'),
(83172, 'https://ror.org/03r519674', 'en', 1, 'https://ror.org/03r519674 RIKEN Center for Computational Science å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€čØˆē®—ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(83173, 'https://ror.org/03r5x2b75', 'en', 1, 'https://ror.org/03r5x2b75 The Metabolomics Innovation Centre'),
(83174, 'https://ror.org/03r6qpe45', 'no_lang_code', 1, 'https://ror.org/03r6qpe45 Emodo (United States)'),
(83175, 'https://ror.org/03r790h08', 'en', 1, 'https://ror.org/03r790h08 Global VetPathology'),
(83176, 'https://ror.org/03r7fm174', 'no_lang_code', 1, 'https://ror.org/03r7fm174 KDDI (Japan) KDDIę Ŗå¼ä¼šē¤¾'),
(83177, 'https://ror.org/03r7vnf29', 'en', 1, 'https://ror.org/03r7vnf29 Golpayegan University of Engineering دانؓکده ŁŁ†ŪŒ و Ł…Ł‡Ł†ŲÆŲ³ŪŒ ŚÆŁ„Ł¾Ų§ŁŠŚÆŲ§Ł†'),
(83178, 'https://ror.org/03r8hgy04', 'en', 1, 'https://ror.org/03r8hgy04 Institute of Marine Research'),
(83179, 'https://ror.org/03r8rqb98', 'en', 1, 'https://ror.org/03r8rqb98 Virtual Reality Medical Institute'),
(83180, 'https://ror.org/03ra42c27', 'no_lang_code', 1, 'https://ror.org/03ra42c27 Dexcom (United States)'),
(83181, 'https://ror.org/03rd0p893', 'en', 1, 'https://ror.org/03rd0p893 Tokyo Metropolitan Institute of Gerontology åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę±äŗ¬éƒ½å„åŗ·é•·åÆæåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(83182, 'https://ror.org/03rdc4968', 'fr', 1, 'https://ror.org/03rdc4968 HƓpital Maisonneuve-Rosemont'),
(83183, 'https://ror.org/03re8tv59', 'en', 1, 'https://ror.org/03re8tv59 Owensboro Health'),
(83184, 'https://ror.org/03rfy1x10', 'no_lang_code', 1, 'https://ror.org/03rfy1x10 Adamas Pharmaceuticals (United States)'),
(83185, 'https://ror.org/03rgqnc08', 'en', 1, 'https://ror.org/03rgqnc08 Kaniv Nature Reserve ŠšŠ°Š½Ń–Š²ŃŃŒŠŗŠøŠ¹ прироГний заповіГник'),
(83186, 'https://ror.org/03rh3e906', 'en', 1, 'https://ror.org/03rh3e906 TERI University'),
(83187, 'https://ror.org/03rj92e31', 'en', 1, 'https://ror.org/03rj92e31 Fayetteville State University UniversitĆ© d''Ɖtat de fayetteville'),
(83188, 'https://ror.org/03rjyp183', 'en', 1, 'https://ror.org/03rjyp183 Llyfrgell Genedlaethol Cymru National Library of Wales'),
(83189, 'https://ror.org/03rjyvk34', 'no_lang_code', 1, 'https://ror.org/03rjyvk34 MSIGHT Technologies (China)'),
(83190, 'https://ror.org/03rnptb60', 'en', 1, 'https://ror.org/03rnptb60 Instituto Milenio de OceanografĆ­a Millennium Institute of Oceanography'),
(83191, 'https://ror.org/03rpes181', 'en', 1, 'https://ror.org/03rpes181 American Association of Nurse Anesthetists'),
(83192, 'https://ror.org/03rppfx49', 'no_lang_code', 1, 'https://ror.org/03rppfx49 HCG Cancer Centre'),
(83193, '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'),
(83194, 'https://ror.org/03rqtqb02', 'en', 1, 'https://ror.org/03rqtqb02 Institute of Biostructure and Bioimaging Istituto di Biostrutture e Bioimmagini'),
(83195, 'https://ror.org/03rrkbt66', 'es', 1, 'https://ror.org/03rrkbt66 Instituto de Investigación Geológico y Energético'),
(83196, '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'),
(83197, 'https://ror.org/03rz4pm90', 'no_lang_code', 1, 'https://ror.org/03rz4pm90 Nortel (Canada)'),
(83198, 'https://ror.org/03s1ptp93', 'en', 1, 'https://ror.org/03s1ptp93 Willows Veterinary Centre and Referral Service'),
(83199, 'https://ror.org/03s20bw89', 'no_lang_code', 1, 'https://ror.org/03s20bw89 Monasterium Laboratory Skin & Hair Research Solutions (Germany)'),
(83200, 'https://ror.org/03s2agk53', 'en', 1, 'https://ror.org/03s2agk53 Norsk barnebokinstitutt The Norwegian Institute for Children’s Books'),
(83201, 'https://ror.org/03s2cx187', 'en', 1, 'https://ror.org/03s2cx187 Blue Resources Trust'),
(83202, 'https://ror.org/03s3m1w94', 'pt', 1, 'https://ror.org/03s3m1w94 Universidade Federal do Agreste de Pernambuco'),
(83203, 'https://ror.org/03s4kfm57', 'en', 1, 'https://ror.org/03s4kfm57 High Tropics Foundation'),
(83204, 'https://ror.org/03s4wsx37', 'en', 1, 'https://ror.org/03s4wsx37 Southern Plains Agricultural Research Center'),
(83205, 'https://ror.org/03s6brr03', 'en', 1, 'https://ror.org/03s6brr03 Sonneberg Observatory Sternwarte Sonneberg'),
(83206, 'https://ror.org/03s74ag37', 'en', 1, 'https://ror.org/03s74ag37 Green Chemistry Zielona Chemia'),
(83207, 'https://ror.org/03savr706', 'en', 1, 'https://ror.org/03savr706 Temple University, Japan ćƒ†ćƒ³ćƒ—ćƒ«å¤§å­¦'),
(83208, 'https://ror.org/03sbvex81', 'no_lang_code', 1, 'https://ror.org/03sbvex81 Geneious (New Zealand)'),
(83209, 'https://ror.org/03sc3bx43', 'en', 1, 'https://ror.org/03sc3bx43 U.S. National Poultry Research Center'),
(83210, 'https://ror.org/03scjwb12', 'nl', 1, 'https://ror.org/03scjwb12 Museon-Omniversum'),
(83211, 'https://ror.org/03se16w85', 'en', 1, 'https://ror.org/03se16w85 RƩseau de Cellules Souches Stem Cell Network'),
(83212, 'https://ror.org/03se72f21', 'no_lang_code', 1, 'https://ror.org/03se72f21 Zinpro (United States)'),
(83213, 'https://ror.org/03sg4m484', 'en', 1, 'https://ror.org/03sg4m484 Public Central Hospital of Matto Ishikawa å…¬ē«‹ę¾ä»»ēŸ³å·äø­å¤®ē—…é™¢'),
(83214, 'https://ror.org/03sg6z947', 'no_lang_code', 1, 'https://ror.org/03sg6z947 Paraza Pharma (Canada)'),
(83215, 'https://ror.org/03sgr7529', 'en', 1, 'https://ror.org/03sgr7529 Growing Spine Foundation'),
(83216, 'https://ror.org/03sj5de90', 'en', 1, 'https://ror.org/03sj5de90 Research Design and Technological Institute of Concrete and Reinforced Concrete ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ Šø технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бетона Šø железобетона'),
(83217, 'https://ror.org/03sjcn752', 'fr', 1, 'https://ror.org/03sjcn752 Conservatoire national supƩrieur de musique et de danse de Lyon'),
(83218, 'https://ror.org/03smt1w40', 'en', 1, 'https://ror.org/03smt1w40 Jiangxi Applied Engineering Vocational Institute ę±Ÿč„æåŗ”ē”Øå·„ēØ‹čŒäøšå­¦é™¢'),
(83219, 'https://ror.org/03sn0j818', 'en', 1, 'https://ror.org/03sn0j818 DeGEval - Gesellschaft für Evaluation DeGEval – Evaluation Society'),
(83220, 'https://ror.org/03snqfa66', 'en', 1, 'https://ror.org/03snqfa66 Zayed University Ų¬Ų§Ł…Ų¹Ų© زايد دانؓگاه زاید'),
(83221, 'https://ror.org/03srysw20', 'en', 1, 'https://ror.org/03srysw20 De MuseumFabriek The MuseumFactory'),
(83222, 'https://ror.org/03ss07w66', 'en', 1, 'https://ror.org/03ss07w66 Centre for Ocean Research and Education'),
(83223, 'https://ror.org/03sxpbt26', 'en', 1, 'https://ror.org/03sxpbt26 Institute of Applied Physics and Computational Mathematics åŒ—äŗ¬åŗ”ē”Øē‰©ē†äøŽč®”ē®—ę•°å­¦ē ”ē©¶ę‰€'),
(83224, 'https://ror.org/03sxzz606', 'nl', 1, 'https://ror.org/03sxzz606 Centrum voor Gynaecologische Oncologie Amsterdam'),
(83225, 'https://ror.org/03t05d403', 'en', 1, 'https://ror.org/03t05d403 Poisonous Plant Research Laboratory'),
(83226, 'https://ror.org/03t17c229', 'no_lang_code', 1, 'https://ror.org/03t17c229 Adamas Pharmaceuticals (India)'),
(83227, 'https://ror.org/03t432d20', 'en', 1, 'https://ror.org/03t432d20 Pediatrics and Genetics'),
(83228, 'https://ror.org/03t518x65', 'en', 1, 'https://ror.org/03t518x65 Norton Women''s and Children''s Hospital'),
(83229, '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'),
(83230, 'https://ror.org/03t9rxt77', 'no_lang_code', 1, 'https://ror.org/03t9rxt77 Sage Therapeutics (United States)'),
(83231, 'https://ror.org/03ta32r20', 'no_lang_code', 1, 'https://ror.org/03ta32r20 SciTech Strategies (United States)'),
(83232, 'https://ror.org/03tghng59', 'en', 1, 'https://ror.org/03tghng59 Instituto de Investigación del Suroeste Southwest Research Institute'),
(83233, 'https://ror.org/03thsxs59', 'no_lang_code', 1, 'https://ror.org/03thsxs59 Heidelberg Engineering (Germany)'),
(83234, 'https://ror.org/03tj1w486', 'no_lang_code', 1, 'https://ror.org/03tj1w486 Haradoi Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŽŸåœŸäŗ•ē—…é™¢'),
(83235, 'https://ror.org/03tm6xb43', 'en', 1, 'https://ror.org/03tm6xb43 Karnali Academy of Health Sciences ą¤•ą¤°ą„ą¤£ą¤¾ą¤²ą„€ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤¬ą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(83236, 'https://ror.org/03tmcds80', 'no_lang_code', 1, 'https://ror.org/03tmcds80 Inergio (Switzerland)'),
(83237, 'https://ror.org/03tme2b78', 'no_lang_code', 1, 'https://ror.org/03tme2b78 Transgenomic (United States)'),
(83238, 'https://ror.org/03tn2wn35', 'de', 1, 'https://ror.org/03tn2wn35 Landesamt für Umwelt, Naturschutz und Geologie'),
(83239, 'https://ror.org/03tte2338', 'en', 1, 'https://ror.org/03tte2338 Mississippi Academy of Sciences'),
(83240, 'https://ror.org/03tv5t613', 'de', 1, 'https://ror.org/03tv5t613 Institut für Managementkompetenz'),
(83241, 'https://ror.org/03tx9ss94', 'no_lang_code', 1, 'https://ror.org/03tx9ss94 Cytokinetics (United States)'),
(83242, 'https://ror.org/03tyb9q08', 'no_lang_code', 1, 'https://ror.org/03tyb9q08 Nippon Chemical Industrial (Japan) ę—„ęœ¬åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(83243, 'https://ror.org/03tzscr25', 'en', 1, 'https://ror.org/03tzscr25 Bureau of Ocean Energy Management'),
(83244, 'https://ror.org/03v00ka07', 'en', 1, 'https://ror.org/03v00ka07 University of Engineering and Technology Taxila'),
(83245, 'https://ror.org/03v0eq295', 'en', 1, 'https://ror.org/03v0eq295 Middle East Liver Disease Center مرکز ŲØŪŒŁ…Ų§Ų±ŪŒŁ‡Ų§ŪŒ کبدی Ų®Ų§ŁˆŲ±Ł…ŪŒŲ§Ł†Ł‡'),
(83246, 'https://ror.org/03v0qmb62', 'hr', 1, 'https://ror.org/03v0qmb62 Institut za javno zdravlje Crne Gore'),
(83247, 'https://ror.org/03v25yt44', 'en', 1, 'https://ror.org/03v25yt44 Spartanburg Regional Healthcare System'),
(83248, 'https://ror.org/03v275937', 'en', 1, 'https://ror.org/03v275937 Philadelphia Water Department'),
(83249, 'https://ror.org/03v3jkw12', 'no_lang_code', 1, 'https://ror.org/03v3jkw12 Active Biotech (Sweden)'),
(83250, 'https://ror.org/03v40yp04', 'en', 1, 'https://ror.org/03v40yp04 Corporation for Production and Research of Laboratory Primates äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗˆé˜²č”›ē”Ÿå”ä¼š'),
(83251, 'https://ror.org/03v4x1p30', 'no_lang_code', 1, 'https://ror.org/03v4x1p30 Nova Measuring Instruments (United States)'),
(83252, 'https://ror.org/03v61g875', 'en', 1, 'https://ror.org/03v61g875 Engineering Laboratory'),
(83253, 'https://ror.org/03v64vs34', 'en', 1, 'https://ror.org/03v64vs34 Epidemic Intelligence Service'),
(83254, 'https://ror.org/03v6e0k54', 'en', 1, 'https://ror.org/03v6e0k54 Institute of Information and Computational Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информационных Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… технологий'),
(83255, 'https://ror.org/03v8jek13', 'en', 1, 'https://ror.org/03v8jek13 Association of Environmental & Engineering Geologists'),
(83256, 'https://ror.org/03v8svs38', 'en', 1, 'https://ror.org/03v8svs38 Institut für Auslandsbeziehungen Institute for Foreign Cultural Relations'),
(83257, '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'),
(83258, 'https://ror.org/03v9cqb05', 'en', 1, 'https://ror.org/03v9cqb05 Wellcome Connecting Science'),
(83259, 'https://ror.org/03vaf0k11', 'en', 1, 'https://ror.org/03vaf0k11 American Orthopaedic Society for Sports Medicine'),
(83260, 'https://ror.org/03vb2cr34', 'no_lang_code', 1, 'https://ror.org/03vb2cr34 4Science'),
(83261, 'https://ror.org/03vepk527', 'en', 1, 'https://ror.org/03vepk527 Carl Hayden Bee Research Center'),
(83262, 'https://ror.org/03vfp4g33', 'en', 1, 'https://ror.org/03vfp4g33 Indraprastha Institute of Information Technology Delhi اندر پرستھ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ آف Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ ą¤‡ą¤‚ą¤¦ą„ą¤°ą¤Ŗą„ą¤°ą¤øą„ą¤„ ą¤®ą¤¾ą¤¹ą¤æą¤¤ą„€ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ -ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą¤‡ą¤‚ą¤¦ą„ą¤°ą¤Ŗą„ą¤°ą¤øą„ą¤„ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą¦‡ą¦Øą§ą¦¦ą§ą¦°ą¦Ŗą§ą¦°ą¦øą§ą¦„ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ ą¦¤ą¦„ą§ą¦Æ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ -ą¦¦ą¦æą¦²ą§ą¦²ą¦æ ąØ‡ą©°ąØ¦ąØ°ąØŖą©ąØ°ąØøąØ„ ąØœąØ¾ąØ£ąØ•ąØ¾ąØ°ą©€ ąØ¤ąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ąØ‡ą©°ąØøąØŸą©€ąØšąØæąØŠąØŸ - ਦਿੱਲੀ '' ąŖˆąŖØą«ąŖ¦ą«ąŖ°ąŖŖą«ąŖ°ąŖøą«ąŖ„ માહિતી ąŖŸą«‡ąŖ•ąŖØą«‹ąŖ²ą«‹ąŖœą«€ ąŖøąŖ‚ąŖøą«ąŖ„ąŖ¾ - ąŖ¦ąŖæąŖ²ą«ąŖ¹ą«€ ą®‡ą®ØąÆą®¤ą®æą®°ą®Ŗą®æą®°ą®øąÆą®¤ą®¾ ą®¤ą®•ą®µą®²ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ ą°‡ą°‚ą°¦ą±ą°°ą°Ŗą±ą°°ą°øą±ą°„ ą°‡ą°Øą±ą°«ą°°ą±ą°®ą±‡ą°·ą°Øą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± - ą°¢ą°æą°²ą±ą°²ą±€ ą²‡ą²‚ą²¦ą³ą²°ą²Ŗą³ą²°ą²øą³ą²„ ಮಾಹಿತಿ ą²¤ą²‚ą²¤ą³ą²°ą²œą³ą²žą²¾ą²Ø ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ - ದೆಹಲಿ ą“‡ą“Øąµą“¦ąµą“°ą“Ŗąµą“°ą“øąµą“„ ą“µą“æą“µą“° ą“øą“¾ą“™ąµą“•ąµ‡ą“¤ą“æą“• ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ - ą“”ąµ†ąµ½ą“¹ą“æ'),
(83263, 'https://ror.org/03vfpjp29', 'en', 1, 'https://ror.org/03vfpjp29 Hope International University'),
(83264, 'https://ror.org/03vfryt93', 'en', 1, 'https://ror.org/03vfryt93 State Institute for Drug Control Å tĆ”tny Ćŗstav pre kontrolu liečiv'),
(83265, 'https://ror.org/03vhnve41', 'en', 1, 'https://ror.org/03vhnve41 Southern California Earthquake Center'),
(83266, 'https://ror.org/03vj6de86', 'no_lang_code', 1, 'https://ror.org/03vj6de86 Advanced Micro-Fabrication Equipment (China) äø­å¾®åŠåÆ¼ä½“č®¾å¤‡'),
(83267, 'https://ror.org/03vjfx044', 'no_lang_code', 1, 'https://ror.org/03vjfx044 Sentieon (United States)'),
(83268, 'https://ror.org/03vjnqy43', 'en', 1, 'https://ror.org/03vjnqy43 Geological Survey of Finland'),
(83269, 'https://ror.org/03vk7h897', 'en', 1, 'https://ror.org/03vk7h897 The California Eye Institute'),
(83270, 'https://ror.org/03vs3wt56', 'no_lang_code', 1, 'https://ror.org/03vs3wt56 Baidu (China) 百度'),
(83271, 'https://ror.org/03vt8j920', 'no_lang_code', 1, 'https://ror.org/03vt8j920 Nanobase (South Korea)'),
(83272, 'https://ror.org/03vtv7935', 'en', 1, 'https://ror.org/03vtv7935 Virginia Department of Energy Geology and Mineral Resources Program'),
(83273, 'https://ror.org/03vwc6a47', 'en', 1, 'https://ror.org/03vwc6a47 International Association for Identification'),
(83274, 'https://ror.org/03vwty161', 'en', 1, 'https://ror.org/03vwty161 Effective Basic Services for Africa'),
(83275, 'https://ror.org/03vwykn21', 'af', 1, 'https://ror.org/03vwykn21 Akademie Reformatoriese Opleiding en Studies'),
(83276, 'https://ror.org/03vxtfp37', 'no_lang_code', 1, 'https://ror.org/03vxtfp37 OmniVision (Germany)'),
(83277, 'https://ror.org/03vzf8p77', 'pl', 1, 'https://ror.org/03vzf8p77 Centrum Onkologii'),
(83278, 'https://ror.org/03w03n990', 'en', 1, 'https://ror.org/03w03n990 Centre for Disability Prevention and Rehabilitation'),
(83279, 'https://ror.org/03w093j43', 'en', 1, 'https://ror.org/03w093j43 Hong Kong Society of Nephrology'),
(83280, 'https://ror.org/03w2cyv53', 'en', 1, 'https://ror.org/03w2cyv53 Johnson & Wales University'),
(83281, 'https://ror.org/03w2xw870', 'en', 1, 'https://ror.org/03w2xw870 Grúpa Cúram SlÔinte Ollscoile Saolta Saolta University Health Care Group'),
(83282, 'https://ror.org/03w448b28', 'en', 1, 'https://ror.org/03w448b28 Research Institute for Applied Sciences åæœē”Øē§‘å­¦ē ”ē©¶ę‰€'),
(83283, 'https://ror.org/03w481t07', 'en', 1, 'https://ror.org/03w481t07 Start International'),
(83284, 'https://ror.org/03w5jxa69', 'no_lang_code', 1, 'https://ror.org/03w5jxa69 Freenome (United States)'),
(83285, 'https://ror.org/03w7hce19', 'pt', 1, 'https://ror.org/03w7hce19 Sociedade Brasileira de Psicologia'),
(83286, 'https://ror.org/03w84vf57', 'no_lang_code', 1, 'https://ror.org/03w84vf57 NestlƩ (Singapore)'),
(83287, 'https://ror.org/03w8k6t95', 'no_lang_code', 1, 'https://ror.org/03w8k6t95 Hanover institute of integrated production Institut fuer Integrierte Produktion Hannover (Germany)'),
(83288, 'https://ror.org/03wa1wy25', 'en', 1, 'https://ror.org/03wa1wy25 Tottori University Hospital é³„å–å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(83289, 'https://ror.org/03wa91e11', 'en', 1, 'https://ror.org/03wa91e11 European Academy of Allergy and Clinical Immunology'),
(83290, 'https://ror.org/03wabx048', 'de', 1, 'https://ror.org/03wabx048 EuropƤische Melanchthon Akademie Bretten'),
(83291, 'https://ror.org/03wb3p227', 'en', 1, 'https://ror.org/03wb3p227 Consolidated Mosquito Abatement District'),
(83292, 'https://ror.org/03wc0ga52', 'en', 1, 'https://ror.org/03wc0ga52 Research Institute of Influenza Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гриппа ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(83293, 'https://ror.org/03wd03705', 'no_lang_code', 1, 'https://ror.org/03wd03705 Orient-Institut Beirut Orient-Institute Beirut لمعهد Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠ للأبحاث Ų§Ł„Ų“Ų±Ł‚ŁŠŲ©'),
(83294, 'https://ror.org/03weam126', 'no_lang_code', 1, 'https://ror.org/03weam126 Toyo Eiwa Jogakuin ę±ę“‹č‹±å’Œå„³å­¦é™¢å¤§å­¦'),
(83295, 'https://ror.org/03wf6h922', 'en', 1, 'https://ror.org/03wf6h922 Government of Nunavut'),
(83296, 'https://ror.org/03wf7ed39', 'en', 1, 'https://ror.org/03wf7ed39 Wexham Park Hospital'),
(83297, 'https://ror.org/03wfagk22', 'en', 1, 'https://ror.org/03wfagk22 Observatoire Global du Saint-Laurent (OGSL) St. Lawrence Global Observatory'),
(83298, 'https://ror.org/03wfck728', 'en', 1, 'https://ror.org/03wfck728 Collaborative Clean Air Policy Centre'),
(83299, 'https://ror.org/03wfx2g43', 'en', 1, 'https://ror.org/03wfx2g43 Central Botanical Garden Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ботанический саГ'),
(83300, 'https://ror.org/03wghsd36', 'no_lang_code', 1, 'https://ror.org/03wghsd36 Norsvin (Norway)'),
(83301, 'https://ror.org/03whvgq80', 'en', 1, 'https://ror.org/03whvgq80 Kake Educational Institution åŠ čØˆå­¦åœ’'),
(83302, 'https://ror.org/03wmxdf36', 'fr', 1, 'https://ror.org/03wmxdf36 Polyclinique de Franche ComtƩ'),
(83303, 'https://ror.org/03wnd8976', 'en', 1, 'https://ror.org/03wnd8976 Shanghai Drug Administration äøŠęµ·åø‚čÆå“ē›‘ē£ē®”ē†å±€'),
(83304, 'https://ror.org/03wneh532', 'no_lang_code', 1, 'https://ror.org/03wneh532 Tezukayama Gakuin University åøå”šå±±å­¦é™¢å¤§å­¦'),
(83305, 'https://ror.org/03wrs2f16', 'no_lang_code', 1, 'https://ror.org/03wrs2f16 Sanyo (Japan) äø‰ę“‹åŒ–ęˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(83306, 'https://ror.org/03wsadn68', 'en', 1, 'https://ror.org/03wsadn68 Association for Computing Machinery'),
(83307, 'https://ror.org/03wtjmk03', 'pl', 1, 'https://ror.org/03wtjmk03 Wyższej Szkoły Kadr Menedżerskich w Koninie'),
(83308, 'https://ror.org/03wvsyq85', 'en', 1, 'https://ror.org/03wvsyq85 University Hospitals Sussex NHS Foundation Trust'),
(83309, 'https://ror.org/03ww91346', 'en', 1, 'https://ror.org/03ww91346 Institute of Water Problems of the North Karelian Research Centre ŠšŠ°Ń€ŠŠ¦ Š ŠŠ в рамках работы ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š Š“Šž в Республике ŠšŠ°Ń€ŠµŠ»ŠøŃ'),
(83310, 'https://ror.org/03wwr4r78', 'en', 1, 'https://ror.org/03wwr4r78 Hunan Provincial People''s Hospital ę¹–å—ēœäŗŗę°‘åŒ»é™¢'),
(83311, 'https://ror.org/03wxv1976', 'no_lang_code', 1, 'https://ror.org/03wxv1976 Timken (United States)'),
(83312, 'https://ror.org/03x4zh819', 'en', 1, 'https://ror.org/03x4zh819 Asian Social Institute'),
(83313, 'https://ror.org/03x5xm327', 'en', 1, 'https://ror.org/03x5xm327 National Sedimentation Laboratory'),
(83314, 'https://ror.org/03x6hbh34', 'en', 1, 'https://ror.org/03x6hbh34 Second Affiliated Hospital of Jilin University'),
(83315, 'https://ror.org/03xaryf14', 'en', 1, 'https://ror.org/03xaryf14 Center for Scientific Collaboration and Community Engagement'),
(83316, 'https://ror.org/03xcerw48', 'en', 1, 'https://ror.org/03xcerw48 U.S. National Arboretum'),
(83317, 'https://ror.org/03xe4tt38', 'en', 1, 'https://ror.org/03xe4tt38 American Center of Oriental Research'),
(83318, 'https://ror.org/03xgxw153', 'no_lang_code', 1, 'https://ror.org/03xgxw153 Subaru (Japan) ę Ŗå¼ä¼šē¤¾SUBARU'),
(83319, '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'),
(83320, 'https://ror.org/03xmgtw61', 'en', 1, 'https://ror.org/03xmgtw61 Mesothelioma Center'),
(83321, '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'),
(83322, 'https://ror.org/03xqveg17', 'en', 1, 'https://ror.org/03xqveg17 Hebei Academy of Sciences ę²³åŒ—ē§‘å­¦é™¢'),
(83323, 'https://ror.org/03xrg8731', 'no_lang_code', 1, 'https://ror.org/03xrg8731 Kansai Electric Power (Japan) é–¢č„æé›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(83324, 'https://ror.org/03xs42a74', 'en', 1, 'https://ror.org/03xs42a74 UNICEF East Asia and Pacific Regional Office ąø­ąø‡ąø„ą¹Œąøąø²ąø£ąø¢ąø¹ąø™ąø“ą¹€ąø‹ąøŸ ประเทศไทย'),
(83325, 'https://ror.org/03xvdbr49', 'en', 1, 'https://ror.org/03xvdbr49 Reiner Lemoine Institut Reiner Lemoine Institute'),
(83326, 'https://ror.org/03xwgfg33', 'nl', 1, 'https://ror.org/03xwgfg33 Ziekenhuis Rivierenland'),
(83327, 'https://ror.org/03xxxrq06', 'en', 1, 'https://ror.org/03xxxrq06 Manchester School of Architecture'),
(83328, 'https://ror.org/03xxy5a58', 'en', 1, 'https://ror.org/03xxy5a58 Fairview Ridges Hospital'),
(83329, 'https://ror.org/03xy0wx88', 'en', 1, 'https://ror.org/03xy0wx88 Biomedical Research Council'),
(83330, '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'),
(83331, 'https://ror.org/03xzcaz17', 'en', 1, 'https://ror.org/03xzcaz17 Urology of Indiana'),
(83332, 'https://ror.org/03xzm3p02', 'en', 1, 'https://ror.org/03xzm3p02 Scientific Foundation SPIROSKI ŠŠ°ŃƒŃ‡Š½Š° Ń„Š¾Š½Š“Š°Ń†ŠøŃ˜Š° Š”ŠŸŠ˜Š ŠžŠ”ŠšŠ˜'),
(83333, 'https://ror.org/03y0dsd75', 'no', 1, 'https://ror.org/03y0dsd75 CatoSenteret'),
(83334, 'https://ror.org/03y50fa25', 'no_lang_code', 1, 'https://ror.org/03y50fa25 Laurel Bank Machines (Japan) ćƒ­ćƒ¼ćƒ¬ćƒ«ćƒćƒ³ć‚Æćƒžć‚·ćƒ³ę Ŗå¼ä¼šē¤¾'),
(83335, 'https://ror.org/03y54e085', 'en', 1, 'https://ror.org/03y54e085 Ecological Society of America'),
(83336, 'https://ror.org/03y5p5264', 'en', 1, 'https://ror.org/03y5p5264 Nur University Universidad Nur'),
(83337, 'https://ror.org/03y81kj05', 'no_lang_code', 1, 'https://ror.org/03y81kj05 Fastbase Solutions (Spain)'),
(83338, 'https://ror.org/03y87s645', 'en', 1, 'https://ror.org/03y87s645 Network for Socioeconomic Research and Advancement'),
(83339, 'https://ror.org/03y8xh662', 'no_lang_code', 1, 'https://ror.org/03y8xh662 Molecular Devices (United Kingdom)'),
(83340, 'https://ror.org/03y9sqg61', 'en', 1, 'https://ror.org/03y9sqg61 Eesti Evangeelne Luterlik Kirik Estonian Evangelical Lutheran Church'),
(83341, 'https://ror.org/03y9v4j03', 'en', 1, 'https://ror.org/03y9v4j03 The National Lottery Heritage Fund'),
(83342, 'https://ror.org/03yb2hp88', 'en', 1, 'https://ror.org/03yb2hp88 University of BĆ©jaĆÆa UniversitĆ© Abderrahmane Mira Ų¬Ų§Ł…Ų¹Ų© بجاية'),
(83343, 'https://ror.org/03ybh5p71', 'en', 1, 'https://ror.org/03ybh5p71 National Archeological Anthropological Memory Management'),
(83344, 'https://ror.org/03ycgmc41', 'en', 1, 'https://ror.org/03ycgmc41 Wellington Institute of Technology'),
(83345, 'https://ror.org/03ycvrj88', 'en', 1, 'https://ror.org/03ycvrj88 Bundesamt für Seeschifffahrt und Hydrographie Federal Maritime and Hydrographic Agency of Germany'),
(83346, '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 Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр имени акаГемика Кулакова" ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(83347, 'https://ror.org/03yg3v757', 'en', 1, 'https://ror.org/03yg3v757 Beijing Institute of Graphic Communication åŒ—äŗ¬å°åˆ·å­¦é™¢'),
(83348, 'https://ror.org/03yhpeg97', 'en', 1, 'https://ror.org/03yhpeg97 Hercules Foundation'),
(83349, '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'),
(83350, 'https://ror.org/03ykm7q16', 'no_lang_code', 1, 'https://ror.org/03ykm7q16 Saitama Prefecture åŸ¼ēŽ‰ēœŒåŗ'),
(83351, 'https://ror.org/03ym65z81', 'en', 1, 'https://ror.org/03ym65z81 Deutsches Zentrum für Integrations- und Migrationsforschung German Center for Integration and Migration Research'),
(83352, 'https://ror.org/03ym6b665', 'no_lang_code', 1, 'https://ror.org/03ym6b665 Veolia (Norway)'),
(83353, 'https://ror.org/03ymqts82', 'es', 1, 'https://ror.org/03ymqts82 Casa del NiƱo Hospital Infantil'),
(83354, 'https://ror.org/03ynh3q24', 'no_lang_code', 1, 'https://ror.org/03ynh3q24 Zogenix (United States)'),
(83355, 'https://ror.org/03yntf296', 'en', 1, 'https://ror.org/03yntf296 Sieć Badawcza Łukasiewicz - Instytut Technologii Eksploatacji Łukasiewicz - Institute for Sustainable Technologies'),
(83356, 'https://ror.org/03yqekx34', 'no_lang_code', 1, 'https://ror.org/03yqekx34 Atossa Therapeutics (United States)'),
(83357, 'https://ror.org/03yqta205', 'en', 1, 'https://ror.org/03yqta205 Reid Health'),
(83358, 'https://ror.org/03yr4aq68', 'en', 1, 'https://ror.org/03yr4aq68 Industrial Research Institute of Ishikawa ēŸ³å·ēœŒå·„ę„­č©¦éØ“å “'),
(83359, 'https://ror.org/03ysf5247', 'es', 1, 'https://ror.org/03ysf5247 Fundación Gustavo Bueno Gustavo Bueno Foundation'),
(83360, 'https://ror.org/03ysfrm12', 'no_lang_code', 1, 'https://ror.org/03ysfrm12 Nference (India)'),
(83361, 'https://ror.org/03yt81x83', 'no_lang_code', 1, 'https://ror.org/03yt81x83 Autovista (Finland)'),
(83362, 'https://ror.org/03yvj0n92', 'no_lang_code', 1, 'https://ror.org/03yvj0n92 Mitsuboshi Belting (Japan) äø‰ćƒ„ę˜Ÿćƒ™ćƒ«ćƒˆę Ŗå¼ä¼šē¤¾'),
(83363, 'https://ror.org/03yxrd274', 'en', 1, 'https://ror.org/03yxrd274 Nucro Technics'),
(83364, 'https://ror.org/03yzv7g36', 'en', 1, 'https://ror.org/03yzv7g36 Protein Research Foundation äø€čˆ¬č²”å›£ę³•äŗŗč›‹ē™½č³Ŗē ”ē©¶å„ØåŠ±ä¼š'),
(83365, 'https://ror.org/03z0jrc25', 'no_lang_code', 1, 'https://ror.org/03z0jrc25 Kracie (Japan) ć‚Æćƒ©ć‚·ć‚Øćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(83366, 'https://ror.org/03z39qd89', 'en', 1, 'https://ror.org/03z39qd89 WiSys'),
(83367, 'https://ror.org/03z3xg179', 'en', 1, 'https://ror.org/03z3xg179 International Academy of Agrarian Education ŠœŠ•Š–Š”Š£ŠŠŠ ŠžŠ”ŠŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ ŠŠ“Š ŠŠ ŠŠžŠ“Šž ŠžŠ‘Š ŠŠ—ŠžŠ’ŠŠŠ˜ŠÆ åœ‹éš›č¾²ę„­ę•™č‚²å­øé™¢'),
(83368, 'https://ror.org/03z41xz33', 'pt', 1, 'https://ror.org/03z41xz33 Centro UniversitÔrio São Lucas'),
(83369, 'https://ror.org/03z4qna16', 'no_lang_code', 1, 'https://ror.org/03z4qna16 Ferespe (Portugal)'),
(83370, 'https://ror.org/03z4zf393', 'en', 1, 'https://ror.org/03z4zf393 United Nations Institute for Disarmament Research'),
(83371, 'https://ror.org/03z8p5796', 'en', 1, 'https://ror.org/03z8p5796 National Engineering Laboratory of Deep Learning Technology and Application ę·±åŗ¦å­¦ä¹ ęŠ€ęœÆåŠåŗ”ē”Øå›½å®¶å·„ēØ‹å®žéŖŒå®¤'),
(83372, 'https://ror.org/03z8y5a52', 'en', 1, 'https://ror.org/03z8y5a52 VASCage'),
(83373, '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'),
(83374, 'https://ror.org/03zcbna64', 'en', 1, 'https://ror.org/03zcbna64 The Korean Society of Hematology ėŒ€ķ•œķ˜ˆģ•”ķ•™ķšŒ'),
(83375, 'https://ror.org/03zcr3a74', 'no_lang_code', 1, 'https://ror.org/03zcr3a74 Transition Technologies (Poland)'),
(83376, 'https://ror.org/03ze5qn46', 'en', 1, 'https://ror.org/03ze5qn46 MUFG Bank (United Kingdom)'),
(83377, 'https://ror.org/03zgbv316', 'en', 1, 'https://ror.org/03zgbv316 Washington School of Psychiatry'),
(83378, 'https://ror.org/03zgc2711', 'en', 1, 'https://ror.org/03zgc2711 Canossa Private Hospital'),
(83379, 'https://ror.org/03zj2rn70', 'en', 1, 'https://ror.org/03zj2rn70 Hunan Institute of Engineering ę¹–å—å·„ēØ‹å­¦é™¢'),
(83380, 'https://ror.org/03zjaj674', 'en', 1, 'https://ror.org/03zjaj674 ENEA Brasimone Research Centre ENEA Centro Ricerche Brasimone'),
(83381, 'https://ror.org/03zjxnp55', 'en', 1, 'https://ror.org/03zjxnp55 European Atherosclerosis Society'),
(83382, 'https://ror.org/03zk15524', 'en', 1, 'https://ror.org/03zk15524 Penza State Pedagogical University'),
(83383, 'https://ror.org/03zmjc935', 'en', 1, 'https://ror.org/03zmjc935 US Forest Service'),
(83384, 'https://ror.org/03zmwf676', 'no_lang_code', 1, 'https://ror.org/03zmwf676 Daifuku (Japan) ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ćƒ•ć‚Æ'),
(83385, 'https://ror.org/03zpd7f57', 'en', 1, 'https://ror.org/03zpd7f57 Al Jalila Foundation'),
(83386, 'https://ror.org/03zqv5j63', 'en', 1, 'https://ror.org/03zqv5j63 APEC Climate Center'),
(83387, 'https://ror.org/03zrvha56', 'en', 1, 'https://ror.org/03zrvha56 Shenzhen Science Museum å·ę·±åœ³ē§‘å­¦é¦†'),
(83388, 'https://ror.org/03zs8ga83', 'tr', 1, 'https://ror.org/03zs8ga83 Oku Okut Association Oku Okut Derneği'),
(83389, 'https://ror.org/03ztw9d82', 'en', 1, 'https://ror.org/03ztw9d82 Department of Statistics Malaysia'),
(83390, 'https://ror.org/040059s22', 'en', 1, 'https://ror.org/040059s22 Oxford Centre for Mission Studies'),
(83391, 'https://ror.org/04022gq47', 'en', 1, 'https://ror.org/04022gq47 Measurement Standards Laboratory of New Zealand'),
(83392, 'https://ror.org/04048e026', 'en', 1, 'https://ror.org/04048e026 International Superconductivity Technology Center å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›č¶…é›»å°Žē”£ę„­ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(83393, 'https://ror.org/0406qcr55', 'en', 1, 'https://ror.org/0406qcr55 Japanese Red Cross Hadano Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ē§¦é‡Žčµ¤åå­—ē—…é™¢'),
(83394, 'https://ror.org/04090g527', 'no_lang_code', 1, 'https://ror.org/04090g527 ImmunityBio (United States)'),
(83395, 'https://ror.org/0409egh51', 'en', 1, 'https://ror.org/0409egh51 Centre for High Performance Computing'),
(83396, 'https://ror.org/040ehaj20', 'no_lang_code', 1, 'https://ror.org/040ehaj20 Akebono (Japan) ę›™ćƒ–ćƒ¬ćƒ¼ć‚­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(83397, 'https://ror.org/040fbda06', 'en', 1, 'https://ror.org/040fbda06 Indian Institute of Public Administration ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤²ą„‹ą¤• ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤øą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(83398, 'https://ror.org/040fv5d16', 'de', 1, 'https://ror.org/040fv5d16 DVGW-Forschungsstelle am Engler-Bunte-Institut des Karlsruher Instituts für Technologie'),
(83399, 'https://ror.org/040gec961', 'en', 1, 'https://ror.org/040gec961 Government College University, Lahore ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ کالج Ł„Ų§ŪŁˆŲ± ąØ—ą©ŒąØ°ąØ®ąØæą©°ąØŸ ąØ•ąØ¾ąØ²ąØœ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(83400, 'https://ror.org/040gsvv83', 'en', 1, 'https://ror.org/040gsvv83 Nizhny Novgorod Federal Research Institute of Pediatric Gastroenterology ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ ŠŠ˜Š˜ Гетской Š³Š°ŃŃ‚Ń€Š¾ŃŠ½Ń‚ŠµŃ€Š¾Š»Š¾Š³ŠøŠø'),
(83401, 'https://ror.org/040qscd03', 'no_lang_code', 1, 'https://ror.org/040qscd03 Lemonex (South Korea) ė ˆėŖØė„„ģŠ¤'),
(83402, 'https://ror.org/040r4cv22', 'en', 1, 'https://ror.org/040r4cv22 Program Systems Institute of RAS Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ программных систем Российской акаГемии наук'),
(83403, 'https://ror.org/040tczt20', 'no_lang_code', 1, 'https://ror.org/040tczt20 Science Groove (Japan) ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚°ćƒ«ćƒ¼ćƒ“'),
(83404, 'https://ror.org/040v7fz77', 'en', 1, 'https://ror.org/040v7fz77 Danish Geotechnical Society Dansk Geoteknisk Forening'),
(83405, 'https://ror.org/040w7d028', 'en', 1, 'https://ror.org/040w7d028 The Micheli Center for Sports Injury Prevention'),
(83406, 'https://ror.org/040y63482', 'it', 1, 'https://ror.org/040y63482 Igenomix'),
(83407, 'https://ror.org/040yys981', 'en', 1, 'https://ror.org/040yys981 Horace Mann School'),
(83408, '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'),
(83409, 'https://ror.org/0410md951', 'en', 1, 'https://ror.org/0410md951 1 CP Place (United States)'),
(83410, 'https://ror.org/04123ky43', 'en', 1, 'https://ror.org/04123ky43 Clark University Universidad Clark'),
(83411, 'https://ror.org/0415tqb32', 'en', 1, 'https://ror.org/0415tqb32 Marine Technology Society'),
(83412, 'https://ror.org/04166ws88', 'en', 1, 'https://ror.org/04166ws88 Shanghai Municipal Commission of Economy and Informatization äøŠęµ·åø‚ē»ęµŽå’Œäæ”ęÆåŒ–å§”å‘˜ä¼š'),
(83413, 'https://ror.org/04181p105', 'fr', 1, 'https://ror.org/04181p105 KƩlonia'),
(83414, 'https://ror.org/0419drx70', 'en', 1, 'https://ror.org/0419drx70 Hokkaido University Hospital åŒ—ęµ·é“å¤§å­¦ē—…é™¢'),
(83415, 'https://ror.org/0419szn97', 'en', 1, 'https://ror.org/0419szn97 International Centre for Research on the Environment and the Economy'),
(83416, 'https://ror.org/041anjn10', 'en', 1, 'https://ror.org/041anjn10 Community of Physics'),
(83417, 'https://ror.org/041bcjv49', 'en', 1, 'https://ror.org/041bcjv49 Age Institute IkƤinstituutin'),
(83418, 'https://ror.org/041c2wa38', 'no_lang_code', 1, 'https://ror.org/041c2wa38 Rusal (Russia) ŠžŠš РУДАЛ'),
(83419, 'https://ror.org/041fcgy60', 'en', 1, 'https://ror.org/041fcgy60 Marien Hospital Witten'),
(83420, 'https://ror.org/041hynd24', 'no_lang_code', 1, 'https://ror.org/041hynd24 Komori (Japan) ę Ŗå¼ä¼šē¤¾å°ę£®ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(83421, 'https://ror.org/041jk4k79', 'en', 1, 'https://ror.org/041jk4k79 Academy for Scientific Investigative Training'),
(83422, 'https://ror.org/041jr6h53', 'no_lang_code', 1, 'https://ror.org/041jr6h53 OSG (Japan) ć‚Ŗćƒ¼ć‚Øć‚¹ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(83423, 'https://ror.org/041mc9510', 'en', 1, 'https://ror.org/041mc9510 Bridgeport Public Library'),
(83424, 'https://ror.org/041mcya16', 'en', 1, 'https://ror.org/041mcya16 Nagano Red Cross Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é•·é‡Žčµ¤åå­—ē—…é™¢'),
(83425, 'https://ror.org/041q2mm12', 'no_lang_code', 1, 'https://ror.org/041q2mm12 Altimmune (United States)'),
(83426, 'https://ror.org/041rx6y13', 'no_lang_code', 1, 'https://ror.org/041rx6y13 Autarcon (Germany)'),
(83427, 'https://ror.org/041swk623', 'en', 1, 'https://ror.org/041swk623 Heatherwood Hospital'),
(83428, 'https://ror.org/041sxnd36', 'en', 1, 'https://ror.org/041sxnd36 VA Northeast Ohio Healthcare System'),
(83429, 'https://ror.org/041th5h66', 'no_lang_code', 1, 'https://ror.org/041th5h66 GI Specialists of Georgia (United States)'),
(83430, 'https://ror.org/041tjsq03', 'en', 1, 'https://ror.org/041tjsq03 Agence mongole de normalisation et de mĆ©trologie Mongolian Agency for Standardization and Metrology ДтанГартчилал, Ń…ŃŠ¼Š¶ŠøŠ» зүйн газар'),
(83431, 'https://ror.org/041vn2102', 'no_lang_code', 1, 'https://ror.org/041vn2102 Cedars-Sinai Smidt Heart Institute'),
(83432, 'https://ror.org/041w69847', 'en', 1, 'https://ror.org/041w69847 Outcomes Research Consortium'),
(83433, 'https://ror.org/041x7eh14', 'en', 1, 'https://ror.org/041x7eh14 VIB-UAntwerp Center for Molecular Neurology'),
(83434, 'https://ror.org/041y80p71', 'no_lang_code', 1, 'https://ror.org/041y80p71 Dow Chemical (Japan) ćƒ€ć‚¦ćƒ»ć‚±ćƒŸć‚«ćƒ«ę—„ęœ¬ę Ŗå¼ä¼šē¤¾'),
(83435, 'https://ror.org/041z6c333', 'en', 1, 'https://ror.org/041z6c333 Polish Agency for Enterprise Development Polska Agencja Rozwoju Przedsiębiorczości'),
(83436, 'https://ror.org/041zje040', 'en', 1, 'https://ror.org/041zje040 Heze University čę³½å¤§å­¦'),
(83437, 'https://ror.org/0423xty45', 'en', 1, 'https://ror.org/0423xty45 National Hospital Organization Miyazaki Higashi Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å®®å“Žę±ē—…é™¢'),
(83438, 'https://ror.org/0426xvw20', 'en', 1, 'https://ror.org/0426xvw20 Proton Collaborative Group');
INSERT INTO `rors` VALUES
(83439, 'https://ror.org/0427ycx88', 'de', 1, 'https://ror.org/0427ycx88 Hector-Stiftung'),
(83440, 'https://ror.org/0428k0n93', 'en', 1, 'https://ror.org/0428k0n93 Hartwig Medical Foundation'),
(83441, 'https://ror.org/042dk0329', 'no_lang_code', 1, 'https://ror.org/042dk0329 Nouscom (Italy)'),
(83442, 'https://ror.org/042fqyp44', 'en', 1, 'https://ror.org/042fqyp44 University College London Hospitals NHS Foundation Trust'),
(83443, 'https://ror.org/042g0n486', 'en', 1, 'https://ror.org/042g0n486 Instituto Internacional para Sustentabilidade International Institute for Sustainability'),
(83444, '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'),
(83445, 'https://ror.org/042jjy888', 'en', 1, 'https://ror.org/042jjy888 European Association for Palliative Care'),
(83446, 'https://ror.org/042k8ng80', 'en', 1, 'https://ror.org/042k8ng80 Research Institute of Human Morphology ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ морфологии человека'),
(83447, 'https://ror.org/042qgw219', 'en', 1, 'https://ror.org/042qgw219 International Innovative University ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ инновационный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(83448, 'https://ror.org/042r9ys73', 'en', 1, 'https://ror.org/042r9ys73 Association des universitƩs indiennes Association of Indian Universities'),
(83449, 'https://ror.org/042ser453', 'en', 1, 'https://ror.org/042ser453 Sendai City Hospital ä»™å°åø‚ē«‹ē—…é™¢'),
(83450, 'https://ror.org/042sgv520', 'no_lang_code', 1, 'https://ror.org/042sgv520 CSD Engineers (Switzerland)'),
(83451, 'https://ror.org/042zsvj11', 'en', 1, 'https://ror.org/042zsvj11 Laboratory Krone'),
(83452, 'https://ror.org/0430zw506', 'en', 1, 'https://ror.org/0430zw506 Canadian Forest Service'),
(83453, 'https://ror.org/0431fz439', 'es', 1, 'https://ror.org/0431fz439 Asociación Colombiana de Infectología'),
(83454, 'https://ror.org/0432sks47', 'en', 1, 'https://ror.org/0432sks47 Knipling-Bushland U.S. Livestock Insects Research Laboratory'),
(83455, 'https://ror.org/0434sbs50', 'en', 1, 'https://ror.org/0434sbs50 British Academy of Management'),
(83456, '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'),
(83457, 'https://ror.org/0436zyg08', 'en', 1, 'https://ror.org/0436zyg08 Ohio Department of Health'),
(83458, 'https://ror.org/0437cyz88', 'en', 1, 'https://ror.org/0437cyz88 Ghana Armed Forces Command and Staff College'),
(83459, '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'),
(83460, 'https://ror.org/043b26x63', 'en', 1, 'https://ror.org/043b26x63 National Research Council Institute for Biodiagnostics'),
(83461, 'https://ror.org/043fecn14', 'en', 1, 'https://ror.org/043fecn14 Kazakh Research Institute of Agriculture and Plant growing ŅšŠ°Š·Š°Ņ› Жер ŠØŠ°Ń€ŃƒŠ°ŃˆŃ‹Š»Ń‹Ņ“Ń‹ Ғылыми Š—ŠµŃ€Ń‚Ń‚ŠµŃƒ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(83462, 'https://ror.org/043fs9135', 'es', 1, 'https://ror.org/043fs9135 Agencia EspaƱola de Medicamentos y Productos Sanitarios'),
(83463, 'https://ror.org/043ft3840', 'en', 1, 'https://ror.org/043ft3840 Centre for Research in Anthropology Centro em Rede de Investigacao em Antropologia'),
(83464, 'https://ror.org/043ncc240', 'es', 1, 'https://ror.org/043ncc240 Escuela de Postgrado Gěrens Gerens Graduate School'),
(83465, 'https://ror.org/043p46c93', 'no_lang_code', 1, 'https://ror.org/043p46c93 SalvageBlue (Saint Vincent and the Grenadines)'),
(83466, 'https://ror.org/043pgqy52', 'en', 1, 'https://ror.org/043pgqy52 Universities Space Research Association'),
(83467, 'https://ror.org/043pgx245', 'en', 1, 'https://ror.org/043pgx245 National Institute of Nuclear Medicine & Allied Sciences ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦Øą¦æą¦‰ą¦•ą§ą¦²ą¦æą¦Æą¦¼ą¦¾ą¦° মেঔিসিন ą¦ą¦Øą§ą¦” ą¦…ą§ą¦Æą¦¾ą¦²ą¦¾ą¦Æą¦¼ą§‡ą¦” ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦øą§‡ą¦ø'),
(83468, 'https://ror.org/043pjwk57', 'no_lang_code', 1, 'https://ror.org/043pjwk57 DNAnexus (United States)'),
(83469, 'https://ror.org/043pqsk20', 'en', 1, 'https://ror.org/043pqsk20 Japanese Red Cross Nagoya Daini Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾åå¤å±‹ē¬¬äŗŒčµ¤åå­—ē—…é™¢'),
(83470, 'https://ror.org/043qqcs43', 'en', 1, 'https://ror.org/043qqcs43 Japan Wildlife Research Center äø€čˆ¬č²”å›£ę³•äŗŗ č‡Ŗē„¶ē’°å¢ƒē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(83471, 'https://ror.org/043rwwa27', 'en', 1, 'https://ror.org/043rwwa27 The First People''s Hospital of Jiangxia District ę±Ÿå¤åŒŗē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(83472, 'https://ror.org/043t53p17', 'no_lang_code', 1, 'https://ror.org/043t53p17 Kitami Information Technology (Japan) åŒ—č¦‹ęƒ…å ±ęŠ€č”“ę Ŗå¼ä¼šē¤¾'),
(83473, 'https://ror.org/043wqnn43', 'en', 1, 'https://ror.org/043wqnn43 Fundación Comunitaria de Puerto Rico Puerto Rico Community Foundation'),
(83474, 'https://ror.org/043zsg715', 'pt', 1, 'https://ror.org/043zsg715 Sociedade Portuguesa de Ciências da Educação'),
(83475, 'https://ror.org/04424w120', 'en', 1, 'https://ror.org/04424w120 Environmental Research Institute Charlotteville'),
(83476, 'https://ror.org/0442pkv24', 'en', 1, 'https://ror.org/0442pkv24 Charotar University of Science and Technology ąŖšąŖ°ą«‹ąŖ¤ąŖ° ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸąŖæ ąŖ“ąŖ« ąŖøąŖ¾ąŖÆąŖØą«ąŖø ąŖąŖØą«ąŖ” ąŖŸą«‡ąŖ•ą«ąŖØą«‰ąŖ²ą«‹ąŖœą«€'),
(83477, 'https://ror.org/04431t173', 'en', 1, 'https://ror.org/04431t173 Bay Area Air Quality Management District'),
(83478, 'https://ror.org/04445fp84', 'en', 1, 'https://ror.org/04445fp84 Center for Advanced Internet Studies'),
(83479, 'https://ror.org/0445phv87', 'en', 1, 'https://ror.org/0445phv87 University of Toyama 富山大学'),
(83480, 'https://ror.org/0447jv934', 'es', 1, 'https://ror.org/0447jv934 Instituto de FilosofĆ­a y Ciencias de la Complejidad'),
(83481, 'https://ror.org/0448sav47', 'no_lang_code', 1, 'https://ror.org/0448sav47 Castor'),
(83482, 'https://ror.org/044b8qb17', 'no_lang_code', 1, 'https://ror.org/044b8qb17 EarthCape (Finland)'),
(83483, 'https://ror.org/044f91d43', 'no_lang_code', 1, 'https://ror.org/044f91d43 Kagami Crystal (Japan) ć‚«ć‚¬ćƒŸć‚ÆćƒŖć‚¹ć‚æćƒ«'),
(83484, 'https://ror.org/044jdke57', 'en', 1, 'https://ror.org/044jdke57 National Institute of Technology and Evaluation ē‹¬ē«‹č”Œę”æę³•äŗŗč£½å“č©•ä¾”ęŠ€č”“åŸŗē›¤ę©Ÿę§‹'),
(83485, 'https://ror.org/044k3e410', 'no_lang_code', 1, 'https://ror.org/044k3e410 Glassomer (Germany)'),
(83486, 'https://ror.org/044npx850', 'en', 1, 'https://ror.org/044npx850 University of Gastronomic Sciences UniversitĆ  degli Studi di Scienze Gastronomiche'),
(83487, 'https://ror.org/044pzhf68', 'no_lang_code', 1, 'https://ror.org/044pzhf68 Tokyo Gas (Japan) ę±äŗ¬ē“¦ę–Æę Ŗå¼ä¼šē¤¾'),
(83488, 'https://ror.org/044r01e44', 'en', 1, 'https://ror.org/044r01e44 Japan Geoscience Union ę—„ęœ¬åœ°ēƒęƒ‘ę˜Ÿē§‘å­¦é€£åˆ'),
(83489, 'https://ror.org/044radm67', 'en', 1, 'https://ror.org/044radm67 Junior College Library Association ē§ē«‹ēŸ­ęœŸå¤§å­¦å›³ę›øé¤Øå”č­°ä¼š'),
(83490, 'https://ror.org/044rgx723', 'en', 1, 'https://ror.org/044rgx723 Inner Mongolia University of Science and Technology å†…č’™å¤ē§‘ęŠ€å¤§å­¦'),
(83491, 'https://ror.org/044snnt75', 'no_lang_code', 1, 'https://ror.org/044snnt75 Grandomics (China)'),
(83492, 'https://ror.org/044tc0x05', 'no_lang_code', 1, 'https://ror.org/044tc0x05 CSL (Australia)'),
(83493, 'https://ror.org/044wv3489', 'en', 1, 'https://ror.org/044wv3489 China Railway Corporation äø­å›½é“č·Æę€»å…¬åø'),
(83494, 'https://ror.org/044z70396', 'en', 1, 'https://ror.org/044z70396 Broome Regional Aboriginal Medical Service'),
(83495, 'https://ror.org/044zwwk69', 'no_lang_code', 1, 'https://ror.org/044zwwk69 AlphaThera (United States)'),
(83496, 'https://ror.org/04545k330', 'en', 1, 'https://ror.org/04545k330 Federal Research Center of Fundamental and Translational Medicine Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ Šø Š¢Ń€Š°Š½ŃŠ»ŃŃ†ŠøŠ¾Š½Š½Š¾Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½Ń‹'),
(83497, 'https://ror.org/04554dw68', 'en', 1, 'https://ror.org/04554dw68 Molecular Diagnostics Services'),
(83498, 'https://ror.org/0457h8c53', 'no_lang_code', 1, 'https://ror.org/0457h8c53 Shizuoka General Hospital é™å²”ēœŒē«‹ē·åˆē—…é™¢'),
(83499, 'https://ror.org/045a7h037', 'no_lang_code', 1, 'https://ror.org/045a7h037 Schiffbau-Versuchsanstalt Potsdam (Germany)'),
(83500, 'https://ror.org/045c7t348', 'en', 1, 'https://ror.org/045c7t348 VIB-KU Leuven Center for Brain & Disease Research'),
(83501, 'https://ror.org/045dz8764', 'it', 1, 'https://ror.org/045dz8764 Astronomical Observatory of Cagliari Osservatorio Astronomico di Cagliari'),
(83502, 'https://ror.org/045f8jj92', 'en', 1, 'https://ror.org/045f8jj92 Oxford Archaeology'),
(83503, 'https://ror.org/045fvx862', 'no_lang_code', 1, 'https://ror.org/045fvx862 Yamato Municipal Hospital å¤§å’Œåø‚ē«‹ē—…é™¢'),
(83504, 'https://ror.org/045gefm38', 'en', 1, 'https://ror.org/045gefm38 Gloucester Marine Genomics Institute'),
(83505, 'https://ror.org/045h8gy65', 'no_lang_code', 1, 'https://ror.org/045h8gy65 Vale (Canada)'),
(83506, 'https://ror.org/045k2ma45', 'en', 1, 'https://ror.org/045k2ma45 Food Safety and Inspection Service'),
(83507, 'https://ror.org/045kf1278', 'en', 1, 'https://ror.org/045kf1278 V. Peskov Voronezhsky State Nature Biosphere Reserve Š’ŠžŠ ŠžŠŠ•Š–Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŸŠ Š˜Š ŠžŠ”ŠŠ«Š™ Š‘Š˜ŠžŠ”Š¤Š•Š ŠŠ«Š™ Š—ŠŠŸŠžŠ’Š•Š”ŠŠ˜Šš Š˜ŠœŠ•ŠŠ˜ Š’.М. ŠŸŠ•Š”ŠšŠžŠ’Š'),
(83508, 'https://ror.org/045kpgw45', 'en', 1, 'https://ror.org/045kpgw45 Guangdong Provincial People''s Hospital å¹æäøœēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(83509, 'https://ror.org/045pvax67', 'de', 1, 'https://ror.org/045pvax67 Zentrum für Pränataldiagnostik'),
(83510, 'https://ror.org/045qred77', 'no_lang_code', 1, 'https://ror.org/045qred77 Iridian Genomes'),
(83511, 'https://ror.org/045r6q476', 'en', 1, 'https://ror.org/045r6q476 Nagoya Heart Center åå¤å±‹ćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(83512, 'https://ror.org/045s8h491', 'en', 1, 'https://ror.org/045s8h491 Boston Sports & Shoulder Center'),
(83513, 'https://ror.org/045s9b323', 'no_lang_code', 1, 'https://ror.org/045s9b323 Engineering (Italy)'),
(83514, 'https://ror.org/045syea95', 'en', 1, 'https://ror.org/045syea95 Taipei Institute of Pathology å°åŒ—ē—…ē†äø­åæƒ'),
(83515, 'https://ror.org/045te9e08', 'en', 1, 'https://ror.org/045te9e08 Lao-Oxford-Mahosot Hospital-Wellcome Trust Research Unit'),
(83516, 'https://ror.org/045tmdc16', 'en', 1, 'https://ror.org/045tmdc16 CODE University of Applied Sciences'),
(83517, 'https://ror.org/045vdnf39', 'en', 1, 'https://ror.org/045vdnf39 Canadian Patient Safety Institute Institut canadien pour la sƩcuritƩ des patients'),
(83518, 'https://ror.org/045wzwx52', 'en', 1, 'https://ror.org/045wzwx52 Fujian Provincial Hospital ē¦å»ŗēœē«‹åŒ»é™¢'),
(83519, 'https://ror.org/045x2ah69', 'en', 1, 'https://ror.org/045x2ah69 Libera UniversitĆ  Carlo Cattaneo University Carlo Cattaneo'),
(83520, 'https://ror.org/045yewh40', 'en', 1, 'https://ror.org/045yewh40 Jiangsu Center for Collaborative Innovation in Geographical Information Resource Development and Application ę±Ÿč‹ēœåœ°ē†äæ”ęÆčµ„ęŗå¼€å‘äøŽåˆ©ē”ØååŒåˆ›ę–°'),
(83521, 'https://ror.org/045ygyt79', 'no_lang_code', 1, 'https://ror.org/045ygyt79 Powertech Labs (Canada)'),
(83522, 'https://ror.org/045yh2d25', 'en', 1, 'https://ror.org/045yh2d25 Ivanovo Research Institute of Motherhood and Childhood named after VN Gorodkov'),
(83523, 'https://ror.org/045ysha14', 'en', 1, 'https://ror.org/045ysha14 Nara Medical University å„ˆč‰ÆēœŒē«‹åŒ»ē§‘å¤§å­¦'),
(83524, 'https://ror.org/045z18t19', 'en', 1, 'https://ror.org/045z18t19 Malawi Epidemiology and Intervention Research Unit'),
(83525, 'https://ror.org/045z90539', 'en', 1, 'https://ror.org/045z90539 Jnana Deepa, Institute of Philosophy and Theology'),
(83526, 'https://ror.org/0461kck49', 'no_lang_code', 1, 'https://ror.org/0461kck49 ABB (India)'),
(83527, 'https://ror.org/0462z9c20', 'en', 1, 'https://ror.org/0462z9c20 Alliance Healthcare Foundation'),
(83528, 'https://ror.org/04636qj46', 'en', 1, 'https://ror.org/04636qj46 Manmohan Memorial Institute of Health Sciences'),
(83529, 'https://ror.org/0465c8g46', 'no_lang_code', 1, 'https://ror.org/0465c8g46 Clariant (Switzerland)'),
(83530, 'https://ror.org/0466jcd14', 'fr', 1, 'https://ror.org/0466jcd14 Conseil RƩgional de Lorraine'),
(83531, 'https://ror.org/0468gx405', 'fr', 1, 'https://ror.org/0468gx405 HƓtel-Dieu de MontrƩal'),
(83532, 'https://ror.org/046c20x57', 'no_lang_code', 1, 'https://ror.org/046c20x57 Integrated Spaceflight Services (United States)'),
(83533, 'https://ror.org/046dwx283', 'no_lang_code', 1, 'https://ror.org/046dwx283 Sangamo BioSciences (United States)'),
(83534, '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"'),
(83535, 'https://ror.org/046ghm278', 'es', 1, 'https://ror.org/046ghm278 Instituto Peruano de Orientación Psicológica'),
(83536, 'https://ror.org/046h2qc13', 'en', 1, 'https://ror.org/046h2qc13 Kabardino-Balkarski Nature Reserve ŠšŠ°Š±Š°Ń€Š“ŠøŠ½Š¾-Балкарский заповеГник'),
(83537, 'https://ror.org/046mjnm79', 'en', 1, 'https://ror.org/046mjnm79 Slovak Organization for Space Activities SlovenskƔ OrganizƔcia pre Vesmƭrne Aktivity'),
(83538, '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 Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠŠ°ŃƒŃ‡Š½Š¾-технологический центр уникального ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ Российской акаГемии наук'),
(83539, 'https://ror.org/046pk3455', 'en', 1, 'https://ror.org/046pk3455 Institut Des Communications Graphiques Du QuƩbec Printability And Graphic Communications Institute'),
(83540, 'https://ror.org/046qgfw50', 'en', 1, 'https://ror.org/046qgfw50 Canadian Mennonite University'),
(83541, 'https://ror.org/046qqda35', 'en', 1, 'https://ror.org/046qqda35 Hungarian School Sport Federation Magyar DiƔksport SzƶvetsƩg'),
(83542, 'https://ror.org/046wdn896', 'de', 1, 'https://ror.org/046wdn896 Verbund Katholischer Kliniken Düsseldorf'),
(83543, 'https://ror.org/046wkw610', 'en', 1, 'https://ror.org/046wkw610 Federal Medical Research Centre for Psychiatry and Narcology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр психиатрии Šø наркологии имени Š’.П. Дербского'),
(83544, 'https://ror.org/046xg2p88', 'en', 1, 'https://ror.org/046xg2p88 Canadian Agricultural Economics Society SociƩtƩ Canadienne d''AgroƩconomie'),
(83545, 'https://ror.org/047225g28', 'en', 1, 'https://ror.org/047225g28 Memorial Hermann–Texas Medical Center'),
(83546, 'https://ror.org/0472a5v57', 'en', 1, 'https://ror.org/0472a5v57 Umkhuseli Innovation and Research Management'),
(83547, 'https://ror.org/0474bqk45', 'en', 1, 'https://ror.org/0474bqk45 California Public Utilities Commission'),
(83548, 'https://ror.org/0474dxd36', 'en', 1, 'https://ror.org/0474dxd36 Northern Great Plains Research Laboratory'),
(83549, 'https://ror.org/04777n328', 'no_lang_code', 1, 'https://ror.org/04777n328 Sahodaran ą®šą®¹ąÆ‹ą®¤ą®°ą®©ąÆ'),
(83550, 'https://ror.org/047933096', 'no_lang_code', 1, 'https://ror.org/047933096 Health Economics and Outcomes Research (United Kingdom)'),
(83551, 'https://ror.org/047afsm11', 'en', 1, 'https://ror.org/047afsm11 Erasmus MC - Sophia Children’s Hospital'),
(83552, 'https://ror.org/047ctny49', 'no_lang_code', 1, 'https://ror.org/047ctny49 Bayern Innovativ (Germany)'),
(83553, 'https://ror.org/047enxx08', 'en', 1, 'https://ror.org/047enxx08 Ethnological Museum Ethnologisches Museum Berlin'),
(83554, 'https://ror.org/047eze012', 'en', 1, 'https://ror.org/047eze012 HƓpital juif de rƩadaptation Jewish Rehabilitation Hospital'),
(83555, 'https://ror.org/047f01g80', 'en', 1, 'https://ror.org/047f01g80 Swiss National Data and Service Center for the Humanities'),
(83556, 'https://ror.org/047h8wb98', 'en', 1, 'https://ror.org/047h8wb98 Centers for Disease Control and Prevention'),
(83557, 'https://ror.org/047k23798', 'no_lang_code', 1, 'https://ror.org/047k23798 AstraZeneca (Japan) ć‚¢ć‚¹ćƒˆćƒ©ć‚¼ćƒć‚«ę Ŗå¼ä¼šē¤¾'),
(83558, 'https://ror.org/047kd7281', 'no_lang_code', 1, 'https://ror.org/047kd7281 BoZo Research Center (Japan) ę Ŗå¼ä¼šē¤¾ćƒœć‚¾ćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(83559, 'https://ror.org/047kf4730', 'en', 1, 'https://ror.org/047kf4730 Doylestown Hospital'),
(83560, 'https://ror.org/047mprv74', 'no_lang_code', 1, 'https://ror.org/047mprv74 Greo'),
(83561, 'https://ror.org/047ngme68', 'en', 1, 'https://ror.org/047ngme68 International Chemical Secretariat'),
(83562, 'https://ror.org/047ravy94', 'en', 1, 'https://ror.org/047ravy94 Universal Academy'),
(83563, 'https://ror.org/047wscg41', 'en', 1, 'https://ror.org/047wscg41 Institute for Animal Husbandry'),
(83564, 'https://ror.org/047y5ne09', 'en', 1, 'https://ror.org/047y5ne09 Economic Research Forum منتدى Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŁŠŲ©'),
(83565, 'https://ror.org/047z4ys07', 'no_lang_code', 1, 'https://ror.org/047z4ys07 Caterpillar (Japan) ć‚­ćƒ£ć‚æćƒ”ćƒ©ćƒ¼ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(83566, 'https://ror.org/047z9d710', 'es', 1, 'https://ror.org/047z9d710 Fundación Hospital San Pedro'),
(83567, 'https://ror.org/047zgkt86', 'en', 1, 'https://ror.org/047zgkt86 National Museum of the Philippines Pambansang Museo ng Pilipinas'),
(83568, 'https://ror.org/0483ewd92', 'no_lang_code', 1, 'https://ror.org/0483ewd92 Inpex (Japan) å›½éš›ēŸ³ę²¹é–‹ē™ŗåøēŸ³ę Ŗå¼ä¼šē¤¾'),
(83569, 'https://ror.org/0484n7582', 'en', 1, 'https://ror.org/0484n7582 Pittsburgh Quantum Institute'),
(83570, 'https://ror.org/048555y32', 'en', 1, 'https://ror.org/048555y32 Biological Museum, Lund University Biologiska Museet, Lunds universitet'),
(83571, 'https://ror.org/04861m839', 'pt', 1, 'https://ror.org/04861m839 Associação Brasileira de Saúde Coletiva'),
(83572, 'https://ror.org/0486fm608', 'no_lang_code', 1, 'https://ror.org/0486fm608 Glory (Japan) ć‚°ćƒ­ćƒ¼ćƒŖćƒ¼ę Ŗå¼ä¼šē¤¾'),
(83573, 'https://ror.org/0486zdp77', 'no_lang_code', 1, 'https://ror.org/0486zdp77 AVL (Turkey)'),
(83574, 'https://ror.org/0488nj033', 'en', 1, 'https://ror.org/0488nj033 Natural History Museum Maastricht Natuurhistorisch Museum Maastricht'),
(83575, 'https://ror.org/048b0cg51', 'en', 1, 'https://ror.org/048b0cg51 IPS Central'),
(83576, 'https://ror.org/048b3qc73', 'en', 1, 'https://ror.org/048b3qc73 BioInnovation Institute'),
(83577, 'https://ror.org/048bdy921', 'en', 1, 'https://ror.org/048bdy921 Wyss Foundation'),
(83578, 'https://ror.org/048d94c63', 'en', 1, 'https://ror.org/048d94c63 National Engineering Research Center for Nanotechnology ēŗ³ē±³ęŠ€ęœÆåŠåŗ”ē”Øå›½å®¶å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(83579, 'https://ror.org/048es2e39', 'en', 1, 'https://ror.org/048es2e39 International Water Management Institute'),
(83580, 'https://ror.org/048gmay44', 'en', 1, 'https://ror.org/048gmay44 University of the Sciences UniversitƩ des sciences Ơ philadelphie'),
(83581, 'https://ror.org/048jgf895', 'no_lang_code', 1, 'https://ror.org/048jgf895 von Hoerner & Sulger (Germany)'),
(83582, 'https://ror.org/048jsd987', 'no_lang_code', 1, 'https://ror.org/048jsd987 AiCuris (Germany)'),
(83583, 'https://ror.org/048knt538', 'pt', 1, 'https://ror.org/048knt538 Centro UniversitƔrio do Distrito Federal'),
(83584, 'https://ror.org/048mjnv22', 'en', 1, 'https://ror.org/048mjnv22 Beijing Research Center for Agricultural and Standards and Testing åŒ—äŗ¬å†œäøšč“Øé‡ę ‡å‡†äøŽę£€ęµ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(83585, 'https://ror.org/048nctr92', 'es', 1, 'https://ror.org/048nctr92 Universidad TƩcnica de Ambato'),
(83586, 'https://ror.org/048ns6x85', 'en', 1, 'https://ror.org/048ns6x85 National Laboratory for Agriculture and the Environment'),
(83587, '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'),
(83588, 'https://ror.org/048t93218', 'en', 1, 'https://ror.org/048t93218 National Trauma Research Institute'),
(83589, 'https://ror.org/048txfb61', 'en', 1, 'https://ror.org/048txfb61 Nagano Children''s Hospital é•·é‡ŽēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(83590, 'https://ror.org/048vche49', 'en', 1, 'https://ror.org/048vche49 Islamic Azad University Sanandaj Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سنندج'),
(83591, 'https://ror.org/048vs0x15', 'en', 1, 'https://ror.org/048vs0x15 National Trust for Historic Preservation'),
(83592, 'https://ror.org/048xnxc75', 'en', 1, 'https://ror.org/048xnxc75 Gunma Prefectural College of Health Sciences ē¾¤é¦¬ēœŒē«‹ēœŒę°‘å„åŗ·ē§‘å­¦å¤§å­¦'),
(83593, 'https://ror.org/048xw7q50', 'en', 1, 'https://ror.org/048xw7q50 SmartCity.institute'),
(83594, 'https://ror.org/048ycfv73', 'de', 1, 'https://ror.org/048ycfv73 Klinikum Kassel'),
(83595, 'https://ror.org/048zqcn09', 'en', 1, 'https://ror.org/048zqcn09 Research Institute of Economy, Trade and Industry ē‹¬ē«‹č”Œę”æę³•äŗŗēµŒęøˆē”£ę„­ē ”ē©¶ę‰€'),
(83596, 'https://ror.org/048zyw409', 'en', 1, 'https://ror.org/048zyw409 U.S. Dairy Forage Research Center'),
(83597, 'https://ror.org/0490yqd31', 'en', 1, 'https://ror.org/0490yqd31 Institute of Paediatric Virology'),
(83598, 'https://ror.org/04915qk43', 'en', 1, 'https://ror.org/04915qk43 IBM Research - Tokyo ę—„ęœ¬ć‚¢ć‚¤ćƒ»ćƒ“ćƒ¼ćƒ»ć‚Øćƒ ę Ŗå¼ä¼šē¤¾'),
(83599, 'https://ror.org/0491dch03', 'en', 1, 'https://ror.org/0491dch03 Jikei University Kashiwa hospital ę±äŗ¬ę…ˆęµä¼šåŒ»ē§‘å¤§å­¦é™„å±žęŸē—…é™¢'),
(83600, 'https://ror.org/049244588', 'no_lang_code', 1, 'https://ror.org/049244588 Sophia Genetics (France)'),
(83601, 'https://ror.org/049317064', 'en', 1, 'https://ror.org/049317064 Scientific Center of Children''s Health ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Š·Š“Š¾Ń€Š¾Š²ŃŒŃ Гетей'),
(83602, 'https://ror.org/04932ms34', 'no_lang_code', 1, 'https://ror.org/04932ms34 Taproot Health (United States)'),
(83603, 'https://ror.org/049444z21', 'no_lang_code', 1, 'https://ror.org/049444z21 Sakakibara Memorial Hospital å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åæƒč‡“č”€åœ§ē ”ē©¶ęŒÆčˆˆä¼šę¦ŠåŽŸčØ˜åæµē—…é™¢'),
(83604, 'https://ror.org/0494d5694', 'de', 1, 'https://ror.org/0494d5694 Neurologisches Rehabilitationszentrum Quellenhof Bad Wildbad'),
(83605, 'https://ror.org/0496k0e74', 'en', 1, 'https://ror.org/0496k0e74 ENEA Bologna Research Centre ENEA Centro Ricerche Bologna'),
(83606, 'https://ror.org/049840617', 'no_lang_code', 1, 'https://ror.org/049840617 Max (Japan) ćƒžćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(83607, 'https://ror.org/0498kr054', 'en', 1, 'https://ror.org/0498kr054 Sapporo City General Hospital åø‚ē«‹ęœ­å¹Œē—…é™¢'),
(83608, 'https://ror.org/0498pcx51', 'en', 1, 'https://ror.org/0498pcx51 Taylor''s University'),
(83609, 'https://ror.org/0498w0n61', 'no_lang_code', 1, 'https://ror.org/0498w0n61 NestlƩ (Brazil)'),
(83610, 'https://ror.org/049913966', 'en', 1, 'https://ror.org/049913966 Kuma Hospital åŒ»ē™‚ę³•äŗŗē„žē”²ä¼šéšˆē—…é™¢'),
(83611, 'https://ror.org/049a9tc02', 'no_lang_code', 1, 'https://ror.org/049a9tc02 Inimex Pharmaceuticals (Canada)'),
(83612, 'https://ror.org/049aac153', 'es', 1, 'https://ror.org/049aac153 Antioquia Research Institute Instituto Antioqueño de Investigación'),
(83613, 'https://ror.org/049d0dt15', 'no_lang_code', 1, 'https://ror.org/049d0dt15 Daido Metal (Japan) å¤§åŒćƒ”ć‚æćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(83614, 'https://ror.org/049jkjr31', 'es', 1, 'https://ror.org/049jkjr31 Complejo Asistencial Sótero del Río'),
(83615, 'https://ror.org/049ktr581', 'en', 1, 'https://ror.org/049ktr581 Inspire Institute'),
(83616, 'https://ror.org/049nwxd40', 'en', 1, 'https://ror.org/049nwxd40 Thai Health Promotion Foundation'),
(83617, 'https://ror.org/049nx2j30', 'en', 1, 'https://ror.org/049nx2j30 AMPATH'),
(83618, 'https://ror.org/049p9j193', 'en', 1, 'https://ror.org/049p9j193 Kent and Medway Medical School'),
(83619, 'https://ror.org/049qtwc86', 'en', 1, 'https://ror.org/049qtwc86 Jesse Brown VA Medical Center'),
(83620, 'https://ror.org/049rt8g11', 'no_lang_code', 1, 'https://ror.org/049rt8g11 Saputo (Canada)'),
(83621, 'https://ror.org/049t8z584', 'en', 1, 'https://ror.org/049t8z584 NorthBay Healthcare'),
(83622, 'https://ror.org/049v69k10', 'en', 1, 'https://ror.org/049v69k10 Rowan University'),
(83623, 'https://ror.org/049vtwv63', 'no_lang_code', 1, 'https://ror.org/049vtwv63 Hauri (Germany)'),
(83624, 'https://ror.org/049x8e923', 'en', 1, 'https://ror.org/049x8e923 Reflex Sympathetic Dystrophy Syndrome Association'),
(83625, 'https://ror.org/049yd2834', 'en', 1, 'https://ror.org/049yd2834 Bank of Cyprus Oncology Center Ογκολογικό ĪšĪ­Ī½Ļ„ĻĪæ Τράπεζας ĪšĻĻ€ĻĪæĻ…'),
(83626, 'https://ror.org/049z73212', 'en', 1, 'https://ror.org/049z73212 Institute of Social and Political Psychology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†Ń–Š°Š»ŃŒŠ½Š¾Ń— та політичної психології ŠŠŠŸŠ України'),
(83627, 'https://ror.org/049zppa02', 'en', 1, 'https://ror.org/049zppa02 Defense Security Cooperation Agency'),
(83628, 'https://ror.org/049zrt876', 'no_lang_code', 1, 'https://ror.org/049zrt876 AgBioData'),
(83629, 'https://ror.org/049zx9d10', 'en', 1, 'https://ror.org/049zx9d10 The Institute of Europe of the Russian Academy of Sciences Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠžŠ• Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• ŠŠŠ£ŠšŠ˜ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š•Š’Š ŠžŠŸŠ« Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ ŠŠšŠŠ”Š•ŠœŠ˜Š˜ ŠŠŠ£Šš'),
(83630, 'https://ror.org/04a1r5z94', 'en', 1, 'https://ror.org/04a1r5z94 Hashemite University الجامعة Ų§Ł„Ł‡Ų§Ų“Ł…ŁŠŲ©'),
(83631, 'https://ror.org/04a2npp96', 'en', 1, 'https://ror.org/04a2npp96 Toyama University Hospital åÆŒå±±å¤§å­¦é™„å±žē—…é™¢'),
(83632, 'https://ror.org/04a3ynd76', 'no_lang_code', 1, 'https://ror.org/04a3ynd76 Donetsk Botanical Garden Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ ботанічний саГ'),
(83633, 'https://ror.org/04a3zwe15', 'en', 1, 'https://ror.org/04a3zwe15 Chung-Hua Institution for Economic Research äø­čÆē¶“ęæŸē ”ē©¶é™¢'),
(83634, 'https://ror.org/04a4m2h70', 'en', 1, 'https://ror.org/04a4m2h70 U.S. Horticultural Research Laboratory'),
(83635, 'https://ror.org/04a5b0p13', 'en', 1, 'https://ror.org/04a5b0p13 Al-Zaytoonah University of Jordan Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų© Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(83636, 'https://ror.org/04a7cz929', 'en', 1, 'https://ror.org/04a7cz929 Kids Saving the Rainforest'),
(83637, 'https://ror.org/04a8k4p47', 'en', 1, 'https://ror.org/04a8k4p47 Institute for Informatics and Automation Problems'),
(83638, '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'),
(83639, 'https://ror.org/04a9s7v87', 'en', 1, 'https://ror.org/04a9s7v87 Association internationale de gƩodƩsie International Association of Geodesy'),
(83640, 'https://ror.org/04aa9rd76', 'en', 1, 'https://ror.org/04aa9rd76 Gastroenterology Center of Connecticut'),
(83641, 'https://ror.org/04aagyf09', 'no_lang_code', 1, 'https://ror.org/04aagyf09 ECOTAS Group Indonesia'),
(83642, 'https://ror.org/04aem8s10', 'en', 1, 'https://ror.org/04aem8s10 COVID-19 Genomics UK Consortium'),
(83643, 'https://ror.org/04afshy24', 'en', 1, 'https://ror.org/04afshy24 Thuyloi University ĐẔi hį»c Thį»§y lợi'),
(83644, 'https://ror.org/04agank23', 'de', 1, 'https://ror.org/04agank23 Klinik Schützen Rheinfelden'),
(83645, 'https://ror.org/04ajrmg05', 'en', 1, 'https://ror.org/04ajrmg05 Chukyo University 中京大学'),
(83646, 'https://ror.org/04akwha08', 'en', 1, 'https://ror.org/04akwha08 Planned Parenthood Toronto'),
(83647, 'https://ror.org/04ars5103', 'en', 1, 'https://ror.org/04ars5103 The White House'),
(83648, 'https://ror.org/04assc746', 'es', 1, 'https://ror.org/04assc746 Asociación por los Derechos Civiles'),
(83649, 'https://ror.org/04asvbz37', 'no_lang_code', 1, 'https://ror.org/04asvbz37 Swedish Orphan Biovitrum (Sweden)'),
(83650, 'https://ror.org/04atsbb87', 'en', 1, 'https://ror.org/04atsbb87 Florida Institute of Technology Institut Technologique de Floride'),
(83651, 'https://ror.org/04avnsc24', 'en', 1, 'https://ror.org/04avnsc24 Wildlife Conservation Society Congo'),
(83652, 'https://ror.org/04avxj309', 'en', 1, 'https://ror.org/04avxj309 Horticultural Crops Research Laboratory'),
(83653, 'https://ror.org/04ayyqz27', 'en', 1, 'https://ror.org/04ayyqz27 AdventHealth Kissimmee'),
(83654, 'https://ror.org/04b12x653', 'no_lang_code', 1, 'https://ror.org/04b12x653 Berlitz (United States)'),
(83655, 'https://ror.org/04b17kf79', 'en', 1, 'https://ror.org/04b17kf79 Centre for Clinical Interventions'),
(83656, 'https://ror.org/04b1np478', 'en', 1, 'https://ror.org/04b1np478 National Institute of Technology, Niihama College ę–°å±…ęµœå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(83657, '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 Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ очних хвороб та тканинної терапії імені Філатова ŠŠŠœŠ України'),
(83658, 'https://ror.org/04b41fd51', 'en', 1, 'https://ror.org/04b41fd51 Kansas Academy of Science'),
(83659, 'https://ror.org/04b4r9r69', 'en', 1, 'https://ror.org/04b4r9r69 OMERACT Patient Research Partner Network'),
(83660, 'https://ror.org/04b4sm863', 'no_lang_code', 1, 'https://ror.org/04b4sm863 Ally Therapeutics (United States)'),
(83661, 'https://ror.org/04b5p3125', 'de', 1, 'https://ror.org/04b5p3125 Hirslanden Clinique des Tilleuls Hirslanden Klinik Linde'),
(83662, 'https://ror.org/04b69g067', 'no_lang_code', 1, 'https://ror.org/04b69g067 Walailak University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø§ąø„ąø±ąø¢ąø„ąø±ąøąø©ąø“ą¹Œ'),
(83663, 'https://ror.org/04b6ahj46', 'es', 1, 'https://ror.org/04b6ahj46 Universidad Independiente'),
(83664, 'https://ror.org/04b8mkk85', 'en', 1, 'https://ror.org/04b8mkk85 Honey Bee Breeding, Genetics, and Physiology Laboratory'),
(83665, 'https://ror.org/04b8x5a95', 'en', 1, 'https://ror.org/04b8x5a95 Cleveland Museum of Natural History'),
(83666, 'https://ror.org/04b98dz04', 'en', 1, 'https://ror.org/04b98dz04 PTEN Research Foundation'),
(83667, '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'),
(83668, 'https://ror.org/04bcrs686', 'en', 1, 'https://ror.org/04bcrs686 Japan Student Services Organization ę—„ęœ¬å­¦ē”Ÿę”Æę“ę©Ÿę§‹'),
(83669, 'https://ror.org/04bct7p84', 'en', 1, 'https://ror.org/04bct7p84 Duke University Hospital'),
(83670, 'https://ror.org/04bgfv325', 'en', 1, 'https://ror.org/04bgfv325 Gifu Heart Center å²é˜œćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(83671, 'https://ror.org/04bh7ck51', 'en', 1, 'https://ror.org/04bh7ck51 New England Plant, Soil and Water Research Laboratory'),
(83672, 'https://ror.org/04bjbb968', 'en', 1, 'https://ror.org/04bjbb968 Centro Interdisciplinario para la Investigación Acuícola Interdisciplinary Center for Aquaculture Research'),
(83673, 'https://ror.org/04bjtj194', 'no_lang_code', 1, 'https://ror.org/04bjtj194 Institut za kukuruz "Zemun Polje" Maize Research Institute Zemun Polje'),
(83674, 'https://ror.org/04bjzcz61', 'en', 1, 'https://ror.org/04bjzcz61 Shandong Provincial Key Laboratory of Renewable Energy Building Application Technology å±±äøœēœåÆå†ē”Ÿčƒ½ęŗå»ŗē­‘åŗ”ē”ØęŠ€ęœÆé‡ē‚¹å®žéŖŒå®¤'),
(83675, 'https://ror.org/04bk2qw80', 'es', 1, 'https://ror.org/04bk2qw80 Instituto Peruano de EnergĆ­a Nuclear Peruvian Institute of Nuclear Energy'),
(83676, 'https://ror.org/04bk7v425', 'en', 1, 'https://ror.org/04bk7v425 Mercer University UniversitƩ de Mercer'),
(83677, 'https://ror.org/04bm3fw61', 'no_lang_code', 1, 'https://ror.org/04bm3fw61 Alcon (Ireland)'),
(83678, 'https://ror.org/04bn1qy53', 'fr', 1, 'https://ror.org/04bn1qy53 MinistĆØre de la Culture'),
(83679, 'https://ror.org/04bpx6z13', 'en', 1, 'https://ror.org/04bpx6z13 The All-Russian State University of Justice Всероссийский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŽŃŃ‚ŠøŃ†ŠøŠø'),
(83680, 'https://ror.org/04bpyvy69', 'en', 1, 'https://ror.org/04bpyvy69 Mekelle University įˆ˜į‰įˆˆ į‹©įŠ’į‰Øįˆ­įˆ²į‰² įˆ˜į‰įˆˆ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(83681, 'https://ror.org/04bqc4a69', 'en', 1, 'https://ror.org/04bqc4a69 Jeonbuk Agricultural Research & Extension Services ģ „ė¼ė¶ė„ė†ģ—…źø°ģˆ ģ›'),
(83682, 'https://ror.org/04bqwt245', 'en', 1, 'https://ror.org/04bqwt245 Geriatric Education and Research Institute'),
(83683, 'https://ror.org/04brn0b16', 'no_lang_code', 1, 'https://ror.org/04brn0b16 Catalent (United States)'),
(83684, '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'),
(83685, 'https://ror.org/04btxg914', 'en', 1, 'https://ror.org/04btxg914 Bioinformatics Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биоинформатики'),
(83686, 'https://ror.org/04btxjt62', 'no_lang_code', 1, 'https://ror.org/04btxjt62 NLR Nepal'),
(83687, 'https://ror.org/04bwzfc79', 'no_lang_code', 1, 'https://ror.org/04bwzfc79 Invisible Software (United States)'),
(83688, 'https://ror.org/04bzz3t90', 'nl', 1, 'https://ror.org/04bzz3t90 Zuidwester'),
(83689, 'https://ror.org/04c00sd86', 'en', 1, 'https://ror.org/04c00sd86 Jacobs Institute'),
(83690, 'https://ror.org/04c1gbz02', 'en', 1, 'https://ror.org/04c1gbz02 Keene State College'),
(83691, 'https://ror.org/04c504j29', 'no_lang_code', 1, 'https://ror.org/04c504j29 Evolved Analytics (United States)'),
(83692, 'https://ror.org/04c5ams53', 'fr', 1, 'https://ror.org/04c5ams53 Agence RƩgionale de SantƩ Ile-de-France'),
(83693, 'https://ror.org/04c6sc363', 'fr', 1, 'https://ror.org/04c6sc363 SociƩtƩ Nationale FranƧaise de Gastro-EntƩrologie'),
(83694, 'https://ror.org/04c7j0c48', 'es', 1, 'https://ror.org/04c7j0c48 Instituto Nacional de Electricidad y EnergĆ­as Limpias'),
(83695, 'https://ror.org/04c8eg608', 'en', 1, 'https://ror.org/04c8eg608 Dalian Medical University å¤§čæžåŒ»ē§‘å¤§å­¦'),
(83696, 'https://ror.org/04c8h1e65', 'en', 1, 'https://ror.org/04c8h1e65 Cereneo'),
(83697, 'https://ror.org/04c8vnp90', 'en', 1, 'https://ror.org/04c8vnp90 Advocate Lutheran General Hospital'),
(83698, 'https://ror.org/04cbsc827', 'no_lang_code', 1, 'https://ror.org/04cbsc827 Terrafix Geosynthetics (Canada)'),
(83699, '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'),
(83700, 'https://ror.org/04ckdkt28', 'en', 1, 'https://ror.org/04ckdkt28 Central European Initiative'),
(83701, 'https://ror.org/04cnk3y09', 'en', 1, 'https://ror.org/04cnk3y09 National Soil Erosion Research Laboratory'),
(83702, 'https://ror.org/04cnscd67', 'fr', 1, 'https://ror.org/04cnscd67 UniversitƩ Moulay Ismail de Meknes'),
(83703, 'https://ror.org/04cqx3k82', 'en', 1, 'https://ror.org/04cqx3k82 Austin Regional Clinic'),
(83704, 'https://ror.org/04crg4b36', 'de', 1, 'https://ror.org/04crg4b36 Academy for Oral Implantology Akademie für orale Implantologie'),
(83705, 'https://ror.org/04cwbar59', 'en', 1, 'https://ror.org/04cwbar59 Interdisciplinary Research Center of Biology and Chemistry äø­ē§‘é™¢ē”Ÿē‰©äøŽåŒ–å­¦äŗ¤å‰ē ”ē©¶äø­åæƒ'),
(83706, 'https://ror.org/04d048897', 'sv', 1, 'https://ror.org/04d048897 Stockholm IVF'),
(83707, '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 ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠ«Š™ Š¦Š•ŠŠ¢Š  ŠžŠ‘Š©Š•Š”Š¢Š’Š•ŠŠŠžŠ“Šž Š—Š”Š ŠŠ’ŠžŠžŠ„Š ŠŠŠ•ŠŠ˜ŠÆ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š—Š”Š ŠŠ’ŠžŠžŠ„Š ŠŠŠ•ŠŠ˜ŠÆ Š Š•Š”ŠŸŠ£Š‘Š›Š˜ŠšŠ˜ ŠšŠŠ—ŠŠ„Š”Š¢ŠŠ'),
(83708, 'https://ror.org/04d713p41', 'en', 1, 'https://ror.org/04d713p41 Tameside Hospital'),
(83709, 'https://ror.org/04d9bp554', 'pt', 1, 'https://ror.org/04d9bp554 Instituto Nacional de EstatĆ­stica, National Statistics Institute'),
(83710, 'https://ror.org/04d9v0a44', 'no_lang_code', 1, 'https://ror.org/04d9v0a44 Firmenich (Switzerland)'),
(83711, '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'),
(83712, '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'),
(83713, 'https://ror.org/04dhxj782', 'de', 1, 'https://ror.org/04dhxj782 Erziehungsdepartement Basel Stadt'),
(83714, 'https://ror.org/04djh6c16', 'no_lang_code', 1, 'https://ror.org/04djh6c16 Logopharm (Germany)'),
(83715, 'https://ror.org/04djymq25', 'en', 1, 'https://ror.org/04djymq25 Kamioka Observatory ē„žå²”å®‡å®™ē“ ē²’å­ē ”ē©¶ę–½čØ­'),
(83716, 'https://ror.org/04dk1kp26', 'en', 1, 'https://ror.org/04dk1kp26 Auburn Hospital'),
(83717, 'https://ror.org/04dnmj419', 'en', 1, 'https://ror.org/04dnmj419 Japan Kidney Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č…Žč‡“č²”å›£'),
(83718, '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'),
(83719, 'https://ror.org/04dpa3g90', 'en', 1, 'https://ror.org/04dpa3g90 Yunnan Agricultural University äŗ‘å—å†œäøšå¤§å­¦'),
(83720, 'https://ror.org/04dpymk59', 'en', 1, 'https://ror.org/04dpymk59 National Agricultural Statistics Service'),
(83721, 'https://ror.org/04dqkr113', 'en', 1, 'https://ror.org/04dqkr113 Nottingham University Samworth Academy'),
(83722, 'https://ror.org/04dqm5e84', 'en', 1, 'https://ror.org/04dqm5e84 Latino Medical Student Association'),
(83723, 'https://ror.org/04dx66682', 'en', 1, 'https://ror.org/04dx66682 Utah Tech University'),
(83724, 'https://ror.org/04dx90b60', 'en', 1, 'https://ror.org/04dx90b60 London Chamber of Commerce and Industry'),
(83725, 'https://ror.org/04e27p903', 'en', 1, 'https://ror.org/04e27p903 Adekunle Ajasin University'),
(83726, 'https://ror.org/04e3bb298', 'en', 1, 'https://ror.org/04e3bb298 The Korean Atopic Dermatitis Association ėŒ€ķ•œģ•„ķ† ķ”¼ķ”¼ė¶€ģ—¼ķ•™ķšŒ'),
(83727, 'https://ror.org/04e6fpr42', 'en', 1, 'https://ror.org/04e6fpr42 Downers Grove Public Library'),
(83728, 'https://ror.org/04e6ngf61', 'en', 1, 'https://ror.org/04e6ngf61 Hood College'),
(83729, 'https://ror.org/04e8cy037', 'en', 1, 'https://ror.org/04e8cy037 The Japanese Data Center for Hematopoietic Cell Transplantation äø€čˆ¬ē¤¾å›£ę³•äŗŗ ę—„ęœ¬é€ č”€ē“°čƒžē§»ę¤ćƒ‡ćƒ¼ć‚æć‚»ćƒ³ć‚æćƒ¼'),
(83730, 'https://ror.org/04e96g855', 'es', 1, 'https://ror.org/04e96g855 Consello da Cultura Galega'),
(83731, 'https://ror.org/04eaec870', 'no_lang_code', 1, 'https://ror.org/04eaec870 Acuitas Therapeutics (Canada)'),
(83732, 'https://ror.org/04ec6rc19', 'en', 1, 'https://ror.org/04ec6rc19 African Institute for Development Policy'),
(83733, 'https://ror.org/04ee58018', 'es', 1, 'https://ror.org/04ee58018 Universidad JuÔrez Autónoma de Tabasco'),
(83734, 'https://ror.org/04eekx875', 'en', 1, 'https://ror.org/04eekx875 Kansai Research Foundation for Technology Promotion å…¬ē›Šč²”å›£ę³•äŗŗé–¢č„æć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ»ćƒŖć‚µć‚¤ć‚Æćƒ«ē§‘å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(83735, 'https://ror.org/04eeqc889', 'en', 1, 'https://ror.org/04eeqc889 Virginia Institute of Marine Science'),
(83736, 'https://ror.org/04efg9a07', 'en', 1, 'https://ror.org/04efg9a07 Sidi Mohamed Ben Abdellah University UniversitĆ© Sidi Mohamed Ben Abdellah Ų¬Ų§Ł…Ų¹Ų© سيدي Ł…Ų­Ł…ŲÆ بن Ų¹ŲØŲÆ الله'),
(83737, 'https://ror.org/04eg5s337', 'en', 1, 'https://ror.org/04eg5s337 Mediterranean Universities Union Unione delle UniversitĆ  del Mediterraneo'),
(83738, 'https://ror.org/04egehb02', 'en', 1, 'https://ror.org/04egehb02 European Corporate Governance Institute'),
(83739, 'https://ror.org/04ehrwx42', 'de', 1, 'https://ror.org/04ehrwx42 Fachkrankenhaus Kloster Grafschaft'),
(83740, 'https://ror.org/04eht1y76', 'en', 1, 'https://ror.org/04eht1y76 Komaki City Hospital å°ē‰§åø‚ę°‘ē—…é™¢'),
(83741, 'https://ror.org/04ejadd69', 'en', 1, 'https://ror.org/04ejadd69 Hagyard Equine Medical Institute'),
(83742, 'https://ror.org/04ejdtr48', 'en', 1, 'https://ror.org/04ejdtr48 Institute of Bioorganic Chemistry, Polish Academy of Sciences Instytut Chemii Bioorganicznej Polskiej Akademii Nauk'),
(83743, 'https://ror.org/04ejpw604', 'no_lang_code', 1, 'https://ror.org/04ejpw604 Acumed (United States)'),
(83744, 'https://ror.org/04en6sc21', 'es', 1, 'https://ror.org/04en6sc21 Fundacion Venezolana de Investigaciones Sismologicas'),
(83745, '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'),
(83746, 'https://ror.org/04eps4h65', 'en', 1, 'https://ror.org/04eps4h65 University of Faisalabad جامعہ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(83747, 'https://ror.org/04eq83d71', 'en', 1, 'https://ror.org/04eq83d71 Henan Agricultural University ę²³å—å†œäøšå¤§å­¦'),
(83748, 'https://ror.org/04eq9g543', 'en', 1, 'https://ror.org/04eq9g543 Pakistan Agricultural Research Council'),
(83749, 'https://ror.org/04eswfz98', 'no_lang_code', 1, 'https://ror.org/04eswfz98 1QBit'),
(83750, 'https://ror.org/04esx4891', 'en', 1, 'https://ror.org/04esx4891 Dorset HealthCare University NHS Foundation Trust'),
(83751, 'https://ror.org/04ev01y75', 'en', 1, 'https://ror.org/04ev01y75 State Space Agency of Ukraine Державне космічне агентство України'),
(83752, 'https://ror.org/04exbp452', 'pt', 1, 'https://ror.org/04exbp452 Hospital Sepaco'),
(83753, 'https://ror.org/04ez6qq41', 'en', 1, 'https://ror.org/04ez6qq41 Austin Medical Research Foundation'),
(83754, 'https://ror.org/04ezd4121', 'no_lang_code', 1, 'https://ror.org/04ezd4121 Environmental Earth Observation Information Technology (Austria)'),
(83755, 'https://ror.org/04f0kxe59', 'no_lang_code', 1, 'https://ror.org/04f0kxe59 Hewlett-Packard (Japan) ę—„ęœ¬ćƒ’ćƒ„ćƒ¼ćƒ¬ćƒƒćƒˆćƒ»ćƒ‘ćƒƒć‚«ćƒ¼ćƒ‰ę Ŗå¼ä¼šē¤¾'),
(83756, 'https://ror.org/04f17cx55', 'en', 1, 'https://ror.org/04f17cx55 National Medical Research Center of Cardiology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠ«Š™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠ˜Š™ Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š¦Š•ŠŠ¢Š  ŠšŠŠ Š”Š˜ŠžŠ›ŠžŠ“Š˜Š˜ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(83757, 'https://ror.org/04f19vj70', 'en', 1, 'https://ror.org/04f19vj70 Patient-Led Research Collaborative'),
(83758, 'https://ror.org/04f1srs73', 'en', 1, 'https://ror.org/04f1srs73 Oxford Institute for Energy Studies'),
(83759, 'https://ror.org/04f2f0537', 'en', 1, 'https://ror.org/04f2f0537 Pawsey Supercomputing Research Centre'),
(83760, 'https://ror.org/04f6dw135', 'en', 1, 'https://ror.org/04f6dw135 Louisiana Cancer Research Center'),
(83761, 'https://ror.org/04f7jc139', 'de', 1, 'https://ror.org/04f7jc139 Bremen University of Applied Sciences Hochschule Bremen'),
(83762, 'https://ror.org/04f9rh541', 'fr', 1, 'https://ror.org/04f9rh541 Pays Germaniques'),
(83763, 'https://ror.org/04fcngg73', 'en', 1, 'https://ror.org/04fcngg73 Sense about Science'),
(83764, 'https://ror.org/04fe7hy80', 'en', 1, 'https://ror.org/04fe7hy80 Xuzhou Medical College 徐州医学院'),
(83765, 'https://ror.org/04fe7xh34', 'no_lang_code', 1, 'https://ror.org/04fe7xh34 DNACARE (South Korea)'),
(83766, 'https://ror.org/04ffjez92', 'en', 1, 'https://ror.org/04ffjez92 Cell Therapy Catapult'),
(83767, 'https://ror.org/04fg8vc90', 'no_lang_code', 1, 'https://ror.org/04fg8vc90 The Cooper Companies (United States)'),
(83768, 'https://ror.org/04fkjep44', 'pl', 1, 'https://ror.org/04fkjep44 Trzy Epoki Pracownia Archeologiczna'),
(83769, 'https://ror.org/04fn52t03', 'en', 1, 'https://ror.org/04fn52t03 Graduate School of Health Care Sciences, Jikei Institute ę»‹ę…¶åŒ»ē™‚ē§‘å­¦å¤§å­¦é™¢å¤§å­¦'),
(83770, 'https://ror.org/04fp9z389', 'no_lang_code', 1, 'https://ror.org/04fp9z389 Cholangiocarcinoma Foundation'),
(83771, 'https://ror.org/04fperw70', 'no_lang_code', 1, 'https://ror.org/04fperw70 Korea Electric Power Corporation (South Korea)'),
(83772, 'https://ror.org/04fqpw856', 'no_lang_code', 1, 'https://ror.org/04fqpw856 Alcon (South Korea)'),
(83773, 'https://ror.org/04fqydq58', 'de', 1, 'https://ror.org/04fqydq58 See-Spital'),
(83774, 'https://ror.org/04ft3z219', 'no_lang_code', 1, 'https://ror.org/04ft3z219 New Iridium (United States)'),
(83775, 'https://ror.org/04ft5hg27', 'en', 1, 'https://ror.org/04ft5hg27 University of Customs and Finance Університет митної справи та фінансів'),
(83776, 'https://ror.org/04ftw3n55', 'en', 1, 'https://ror.org/04ftw3n55 Nagoya Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹åå¤å±‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(83777, 'https://ror.org/04fvmve92', 'no_lang_code', 1, 'https://ror.org/04fvmve92 AlvƩole (France)'),
(83778, 'https://ror.org/04fvpm094', 'no_lang_code', 1, 'https://ror.org/04fvpm094 Carisma Therapeutics (United States)'),
(83779, 'https://ror.org/04fx69j13', 'en', 1, 'https://ror.org/04fx69j13 Cereal Disease Laboratory'),
(83780, 'https://ror.org/04fxsjh51', 'no_lang_code', 1, 'https://ror.org/04fxsjh51 Nabtesco (Japan) ćƒŠćƒ–ćƒ†ć‚¹ć‚³ę Ŗå¼ä¼šē¤¾'),
(83781, 'https://ror.org/04fyc4m54', 'en', 1, 'https://ror.org/04fyc4m54 Japanese Red Cross Kanazawa Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é‡‘ę²¢čµ¤åå­—ē—…é™¢'),
(83782, 'https://ror.org/04g0aqp14', 'en', 1, 'https://ror.org/04g0aqp14 Greater London Authority'),
(83783, 'https://ror.org/04g0m2d49', 'en', 1, 'https://ror.org/04g0m2d49 Juntendo University Hospital é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žé †å¤©å ‚åŒ»é™¢'),
(83784, 'https://ror.org/04g1fwn42', 'en', 1, 'https://ror.org/04g1fwn42 Kyorin University Hospital ęęž—å¤§å­¦åŒ»å­¦éƒØä»˜å±žē—…é™¢'),
(83785, 'https://ror.org/04g1hjn96', 'fr', 1, 'https://ror.org/04g1hjn96 Laboratoire de MathƩmatiques Jean Leray'),
(83786, 'https://ror.org/04g1j1w90', 'no_lang_code', 1, 'https://ror.org/04g1j1w90 DataKind'),
(83787, 'https://ror.org/04g2rbh88', 'en', 1, 'https://ror.org/04g2rbh88 Analytical Services'),
(83788, 'https://ror.org/04g3avw65', 'en', 1, 'https://ror.org/04g3avw65 Kobe Women''s University ē„žęˆøå„³å­å¤§å­¦'),
(83789, 'https://ror.org/04g3k5r52', 'no_lang_code', 1, 'https://ror.org/04g3k5r52 Factual (United States)'),
(83790, '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'),
(83791, 'https://ror.org/04g5g3b04', 'en', 1, 'https://ror.org/04g5g3b04 Papal Seminary'),
(83792, 'https://ror.org/04g5je597', 'de', 1, 'https://ror.org/04g5je597 Institut für Gießereitechnik'),
(83793, 'https://ror.org/04g70yg97', 'en', 1, 'https://ror.org/04g70yg97 Institute of Sociology of the National Academy of Sciences of Belarus Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ социологии ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(83794, 'https://ror.org/04g9wch13', 'en', 1, 'https://ror.org/04g9wch13 Yale-NUS College 耶魯-ę–°åŠ å”åœ‹ē«‹å¤§å­øå­øé™¢'),
(83795, 'https://ror.org/04gaaqn72', 'no_lang_code', 1, 'https://ror.org/04gaaqn72 National Cooperative for the Disposal of Radioactive Waste (Switzerland)'),
(83796, 'https://ror.org/04gbtp312', 'en', 1, 'https://ror.org/04gbtp312 Agencia Insular de la EnergĆ­a de Tenerife Tenerife Island Energy Agency'),
(83797, 'https://ror.org/04gcc2383', 'no_lang_code', 1, 'https://ror.org/04gcc2383 Yakult Central Institute ę Ŗå¼ä¼šē¤¾ćƒ¤ć‚Æćƒ«ćƒˆęœ¬ē¤¾'),
(83798, 'https://ror.org/04gcece27', 'en', 1, 'https://ror.org/04gcece27 Natural History Museum of the Lesvos Petrified Forest ĪœĪæĻ…ĻƒĪµĪÆĪæ Ī¦Ļ…ĻƒĪ¹ĪŗĪ®Ļ‚ Ī™ĻƒĻ„ĪæĻĪÆĪ±Ļ‚ Απολιθωμένου Ī”Ī¬ĻƒĪæĻ…Ļ‚ Ī›Ī­ĻƒĪ²ĪæĻ…'),
(83799, 'https://ror.org/04gcg0n58', 'no_lang_code', 1, 'https://ror.org/04gcg0n58 SRL (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ć‚¢ćƒ¼ćƒ«ć‚Øćƒ«'),
(83800, 'https://ror.org/04gchep04', 'en', 1, 'https://ror.org/04gchep04 Elisha Hospital בית חולים אלישע'),
(83801, '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 Š¢ŠµŃ€Š½Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. ŠÆ. Горбачевского ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Украины Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені І. ŠÆ. Š“Š¾Ń€Š±Š°Ń‡ŠµŠ²ŃŃŒŠŗŠ¾Š³Š¾'),
(83802, 'https://ror.org/04gf9zd51', 'no_lang_code', 1, 'https://ror.org/04gf9zd51 Incisive Genetics (Canada)'),
(83803, 'https://ror.org/04ggd2r74', 'en', 1, 'https://ror.org/04ggd2r74 Office of Marine and Aviation Operations'),
(83804, 'https://ror.org/04gj5px28', 'en', 1, 'https://ror.org/04gj5px28 Inha University Hospital'),
(83805, 'https://ror.org/04gjpsv96', 'no_lang_code', 1, 'https://ror.org/04gjpsv96 Insulet (United States)'),
(83806, 'https://ror.org/04gm1wq32', 'en', 1, 'https://ror.org/04gm1wq32 National Commission for Science and Technology Malawi'),
(83807, 'https://ror.org/04gmgt288', 'no_lang_code', 1, 'https://ror.org/04gmgt288 Tikkurila (Finland)'),
(83808, 'https://ror.org/04gnsqj88', 'no_lang_code', 1, 'https://ror.org/04gnsqj88 KUSUDAMA Therapeutics (Spain)'),
(83809, 'https://ror.org/04gp2vw59', 'no_lang_code', 1, 'https://ror.org/04gp2vw59 GenomiCare (China)'),
(83810, 'https://ror.org/04gp5j812', 'en', 1, 'https://ror.org/04gp5j812 Materials Research Center'),
(83811, 'https://ror.org/04gq8q482', 'en', 1, 'https://ror.org/04gq8q482 North Temperate Lakes Long Term Ecological Research'),
(83812, 'https://ror.org/04gqawm06', 'en', 1, 'https://ror.org/04gqawm06 Institute of the Americas');
INSERT INTO `rors` VALUES
(83813, 'https://ror.org/04gqbd180', 'en', 1, 'https://ror.org/04gqbd180 Campus Bio Medico University Hospital Policlinico Universitario Campus Bio Medico'),
(83814, 'https://ror.org/04gs0eq62', 'en', 1, 'https://ror.org/04gs0eq62 The Childhood Acute Illness and Nutrition Network'),
(83815, 'https://ror.org/04gstme54', 'en', 1, 'https://ror.org/04gstme54 SciGenom Research Foundation'),
(83816, 'https://ror.org/04gw0wg65', 'en', 1, 'https://ror.org/04gw0wg65 Advocate Christ Medical Center'),
(83817, 'https://ror.org/04gxnqr83', 'no_lang_code', 1, 'https://ror.org/04gxnqr83 Humana (United States)'),
(83818, 'https://ror.org/04gy6pv35', 'en', 1, 'https://ror.org/04gy6pv35 Chiayi Chang Gung Memorial Hospital'),
(83819, 'https://ror.org/04h42fc75', 'en', 1, 'https://ror.org/04h42fc75 Meijo University 名城大学'),
(83820, 'https://ror.org/04h4yst66', 'en', 1, 'https://ror.org/04h4yst66 VisMederi Research'),
(83821, 'https://ror.org/04h5v2n16', 'no_lang_code', 1, 'https://ror.org/04h5v2n16 CareEvolution (United States)'),
(83822, 'https://ror.org/04h7e4549', 'en', 1, 'https://ror.org/04h7e4549 American Neurological Association'),
(83823, 'https://ror.org/04h7gmn81', 'no_lang_code', 1, 'https://ror.org/04h7gmn81 OriginWater (China) 碧氓源'),
(83824, 'https://ror.org/04h82h717', 'en', 1, 'https://ror.org/04h82h717 International College for Postgraduate Buddhist Studies å›½éš›ä»ę•™å­¦å¤§å­¦é™¢å¤§å­¦'),
(83825, 'https://ror.org/04h82wq77', 'no_lang_code', 1, 'https://ror.org/04h82wq77 Atara Biotherapeutics (United States)'),
(83826, 'https://ror.org/04hazks31', 'en', 1, 'https://ror.org/04hazks31 International Max Planck Research School for Advanced Methods in Process and Systems Engineering'),
(83827, 'https://ror.org/04hbttm44', 'en', 1, 'https://ror.org/04hbttm44 VIB-UGent Center for Medical Biotechnology'),
(83828, 'https://ror.org/04hja5e04', 'en', 1, 'https://ror.org/04hja5e04 State Key Laboratory of Respiratory Disease å‘¼åøē–¾ē—…å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(83829, 'https://ror.org/04hkpfa76', 'no_lang_code', 1, 'https://ror.org/04hkpfa76 Denso (Japan) ę Ŗå¼ä¼šē¤¾ćƒ‡ćƒ³ć‚½ćƒ¼'),
(83830, '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 Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠžŠ• Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠžŠ• Š‘Š®Š”Š–Š•Š¢ŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• "Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠ«Š™ Š¦Š•ŠŠ¢Š  Š”Š•Š Š”Š•Š§ŠŠž-Š”ŠžŠ”Š£Š”Š˜Š”Š¢ŠžŠ™ Š„Š˜Š Š£Š Š“Š˜Š˜" ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š—Š”Š ŠŠ’ŠžŠžŠ„Š ŠŠŠ•ŠŠ˜ŠÆ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(83831, 'https://ror.org/04hnevr92', 'en', 1, 'https://ror.org/04hnevr92 American Spinal Injury Association'),
(83832, 'https://ror.org/04hqtn844', 'de', 1, 'https://ror.org/04hqtn844 Bundesamt für Bauwesen und Raumordnung'),
(83833, 'https://ror.org/04hr13565', 'en', 1, 'https://ror.org/04hr13565 Department of Public Health'),
(83834, 'https://ror.org/04hrbe508', 'en', 1, 'https://ror.org/04hrbe508 University of Batna 1 UniversitĆ© de Batna 1 Ų¬Ų§Ł…Ų¹Ų© باتنة 1 الحاج لخضر'),
(83835, 'https://ror.org/04hrrh248', 'en', 1, 'https://ror.org/04hrrh248 Institute of Mathematics Instytut Matematyczny Polskiej Akademii Nauk'),
(83836, 'https://ror.org/04hs8t575', 'en', 1, 'https://ror.org/04hs8t575 Study World College of Engineering'),
(83837, 'https://ror.org/04hsbfk21', 'en', 1, 'https://ror.org/04hsbfk21 Iowa Digestive Disease Center'),
(83838, 'https://ror.org/04hy9ef44', 'no_lang_code', 1, 'https://ror.org/04hy9ef44 E-Phy-Science (France)'),
(83839, 'https://ror.org/04hztxs45', 'en', 1, 'https://ror.org/04hztxs45 National Education and Research Network Rede Nacional de Ensino e Pesquisa'),
(83840, 'https://ror.org/04j21nf11', 'de', 1, 'https://ror.org/04j21nf11 Universitäres Zentrum für Zahnmedizin Basel'),
(83841, 'https://ror.org/04j24jq80', 'en', 1, 'https://ror.org/04j24jq80 Magistrates Association'),
(83842, 'https://ror.org/04j270809', 'en', 1, 'https://ror.org/04j270809 Thomas Jefferson Foundation'),
(83843, 'https://ror.org/04j2hh758', 'no_lang_code', 1, 'https://ror.org/04j2hh758 Metrum Research Group (United States)'),
(83844, 'https://ror.org/04j2tkk21', 'de', 1, 'https://ror.org/04j2tkk21 Heinz Nixdorf Stiftung'),
(83845, 'https://ror.org/04j2yny21', 'en', 1, 'https://ror.org/04j2yny21 Glasgow Centre for Population Health'),
(83846, 'https://ror.org/04j3mpm77', 'en', 1, 'https://ror.org/04j3mpm77 Ebina General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć‚øćƒ£ćƒ‘ćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚¢ćƒ©ć‚¤ć‚¢ćƒ³ć‚¹ęµ·č€åē·åˆē—…é™¢'),
(83847, 'https://ror.org/04j3rah08', 'en', 1, 'https://ror.org/04j3rah08 Society for Developmental and Behavioral Pediatrics'),
(83848, 'https://ror.org/04j4kad11', 'en', 1, 'https://ror.org/04j4kad11 Centre for Environmental Data Analysis'),
(83849, 'https://ror.org/04j4nak57', 'en', 1, 'https://ror.org/04j4nak57 Kobe City Medical Center General Hospital ē„žęˆøåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼äø­å¤®åø‚ę°‘ē—…é™¢'),
(83850, 'https://ror.org/04j6b9h44', 'en', 1, 'https://ror.org/04j6b9h44 Foundation for Professional Development'),
(83851, 'https://ror.org/04j81w290', 'en', 1, 'https://ror.org/04j81w290 Association Canadienne des GƩographes Canadian Association of Geographers'),
(83852, 'https://ror.org/04j8wth34', 'en', 1, 'https://ror.org/04j8wth34 Tsurumi University 鶓見大学'),
(83853, 'https://ror.org/04j91ny53', 'en', 1, 'https://ror.org/04j91ny53 Cooperative Institute for Mesoscale Meteorological Studies'),
(83854, 'https://ror.org/04jabhf80', 'en', 1, 'https://ror.org/04jabhf80 Jiangsu University of Technology ę±Ÿč‹ē†å·„å­¦é™¢'),
(83855, 'https://ror.org/04jawh960', 'no_lang_code', 1, 'https://ror.org/04jawh960 Ishida (Japan) ę Ŗå¼ä¼šē¤¾ć‚¤ć‚·ćƒ€'),
(83856, 'https://ror.org/04jb3cn49', 'no_lang_code', 1, 'https://ror.org/04jb3cn49 Alphora Research (Canada)'),
(83857, 'https://ror.org/04jcdfd62', 'no_lang_code', 1, 'https://ror.org/04jcdfd62 HPO Center (Netherlands)'),
(83858, 'https://ror.org/04je98850', 'en', 1, 'https://ror.org/04je98850 Fu Jen Catholic University 辅仁大学'),
(83859, 'https://ror.org/04jep6391', 'es', 1, 'https://ror.org/04jep6391 Hospital Universitario HM Sanchinarro'),
(83860, 'https://ror.org/04jewc589', 'en', 1, 'https://ror.org/04jewc589 Lillebaelt Hospital Sygehus LillebƦlt'),
(83861, 'https://ror.org/04jk0my75', 'no_lang_code', 1, 'https://ror.org/04jk0my75 Quantum Design (United States)'),
(83862, 'https://ror.org/04jmqe852', 'de', 1, 'https://ror.org/04jmqe852 Klinikum Fulda'),
(83863, 'https://ror.org/04jmr7c65', 'en', 1, 'https://ror.org/04jmr7c65 Chestnut Health Systems'),
(83864, 'https://ror.org/04jnpk588', 'en', 1, 'https://ror.org/04jnpk588 South China Institute of Collaborative Innovation åŽå—ååŒåˆ›ę–°ē ”ē©¶é™¢'),
(83865, 'https://ror.org/04jsfy203', 'en', 1, 'https://ror.org/04jsfy203 All-Med'),
(83866, 'https://ror.org/04jskgv42', 'no_lang_code', 1, 'https://ror.org/04jskgv42 OPKO Health (Israel)'),
(83867, 'https://ror.org/04jth1r26', 'en', 1, 'https://ror.org/04jth1r26 Zhejiang University-University of Edinburgh Institute ęµ™ę±Ÿå¤§å­¦ēˆ±äøå ”å¤§å­¦č”åˆå­¦é™¢'),
(83868, 'https://ror.org/04jtjk342', 'no_lang_code', 1, 'https://ror.org/04jtjk342 General Fusion (Canada)'),
(83869, 'https://ror.org/04jtnvj04', 'no_lang_code', 1, 'https://ror.org/04jtnvj04 Pfizer (Austria)'),
(83870, 'https://ror.org/04jtt0w10', 'en', 1, 'https://ror.org/04jtt0w10 University Grants Commission of Bangladesh ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą¦®ą¦žą§ą¦œą§ą¦°ą§€ কমিশন'),
(83871, 'https://ror.org/04jwepe89', 'en', 1, 'https://ror.org/04jwepe89 Council for British Archaeology'),
(83872, 'https://ror.org/04k0ww995', 'en', 1, 'https://ror.org/04k0ww995 Shirak State University Õ‡Õ«Ö€Õ”ÕÆÕ« Õ„Õ«Ö„Õ”ÕµÕ„Õ¬ Õ†Õ”Õ¬Õ¢Õ”Õ¶Õ¤ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(83873, 'https://ror.org/04k1hs403', 'en', 1, 'https://ror.org/04k1hs403 Kap Natirel'),
(83874, 'https://ror.org/04k3aaz82', 'en', 1, 'https://ror.org/04k3aaz82 Universal College of Learning'),
(83875, 'https://ror.org/04k5sn095', 'fr', 1, 'https://ror.org/04k5sn095 Cegep de Thetford, Collège d''Enseignement Général et Professionnel'),
(83876, 'https://ror.org/04k6gr834', 'en', 1, 'https://ror.org/04k6gr834 Kyoto University Hospital äŗ¬éƒ½å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(83877, 'https://ror.org/04k738y75', 'en', 1, 'https://ror.org/04k738y75 Plano Public Library System'),
(83878, 'https://ror.org/04k7qb226', 'no_lang_code', 1, 'https://ror.org/04k7qb226 Kattaikkuttu Sangam'),
(83879, 'https://ror.org/04kbdbb89', 'en', 1, 'https://ror.org/04kbdbb89 Hellenic Institute of Metrology Ελληνικο Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻ…Ļ„Īæ ĪœĪµĻ„ĻĪæĪ»ĪæĪ³Ī¹Ī±Ļ‚'),
(83880, 'https://ror.org/04kdf7678', 'en', 1, 'https://ror.org/04kdf7678 The Geneva Foundation'),
(83881, 'https://ror.org/04kj1hn59', 'en', 1, 'https://ror.org/04kj1hn59 Harvard Stem Cell Institute'),
(83882, 'https://ror.org/04kjcjc51', 'en', 1, 'https://ror.org/04kjcjc51 Brazilian Biosciences National Laboratory Laboratório Nacional de Biociências'),
(83883, 'https://ror.org/04kkb3773', 'en', 1, 'https://ror.org/04kkb3773 National Fisheries University å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗę°“ē”£ē ”ē©¶ćƒ»ę•™č‚²ę©Ÿę§‹ę°“ē”£å¤§å­¦ę ”'),
(83884, 'https://ror.org/04kkgk561', 'no_lang_code', 1, 'https://ror.org/04kkgk561 TScan Therapeutics (United States)'),
(83885, 'https://ror.org/04kkkns02', 'no_lang_code', 1, 'https://ror.org/04kkkns02 PanTheryx (United States)'),
(83886, 'https://ror.org/04kp2z675', 'en', 1, 'https://ror.org/04kp2z675 National Institute of Technology, Gunma College ē¾¤é¦¬å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(83887, 'https://ror.org/04kpgmr70', 'en', 1, 'https://ror.org/04kpgmr70 Little Rock School District'),
(83888, 'https://ror.org/04kq7tf63', 'en', 1, 'https://ror.org/04kq7tf63 Mount Kenya University'),
(83889, 'https://ror.org/04kr8vf53', 'en', 1, 'https://ror.org/04kr8vf53 The Wilson Centre'),
(83890, 'https://ror.org/04kswek43', 'en', 1, 'https://ror.org/04kswek43 ICAR-Indian Institute of Agricultural Biotechnology भा.ą¤•ą„ƒ.ą¤…ą¤Øą„.प. ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤œą„ˆą¤µą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(83891, 'https://ror.org/04ky99h94', 'en', 1, 'https://ror.org/04ky99h94 National Animal Disease Center'),
(83892, 'https://ror.org/04m0y5921', 'en', 1, 'https://ror.org/04m0y5921 Candid'),
(83893, 'https://ror.org/04m2j3740', 'en', 1, 'https://ror.org/04m2j3740 Geological Survey of Ireland SuirbhĆ©ireacht GheolaĆ­ochta Ɖireann'),
(83894, 'https://ror.org/04m4wwh75', 'en', 1, 'https://ror.org/04m4wwh75 Altai State University Алтайский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(83895, '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'),
(83896, 'https://ror.org/04m60en37', 'en', 1, 'https://ror.org/04m60en37 Bernice P. Bishop Museum'),
(83897, 'https://ror.org/04m8gxe14', 'en', 1, 'https://ror.org/04m8gxe14 Institute of Advanced Research in Artificial Intelligence'),
(83898, 'https://ror.org/04mb5jg98', 'fr', 1, 'https://ror.org/04mb5jg98 Communication, Information, MƩdias'),
(83899, 'https://ror.org/04mb6s476', 'en', 1, 'https://ror.org/04mb6s476 RIKEN Center for Integrative Medical Sciences 国立研究開発法人 ē†åŒ–å­¦ē ”ē©¶ę‰€ ē”Ÿå‘½åŒ»ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(83900, 'https://ror.org/04mcqge53', 'en', 1, 'https://ror.org/04mcqge53 Ontario Shores Centre for Mental Health Sciences'),
(83901, 'https://ror.org/04mercy44', 'en', 1, 'https://ror.org/04mercy44 Society For Range Management'),
(83902, 'https://ror.org/04mghma93', 'en', 1, 'https://ror.org/04mghma93 Heriot-Watt University'),
(83903, 'https://ror.org/04mgk5851', 'no_lang_code', 1, 'https://ror.org/04mgk5851 HE Space (Netherlands)'),
(83904, 'https://ror.org/04mgkpz96', 'no_lang_code', 1, 'https://ror.org/04mgkpz96 COPESSA'),
(83905, 'https://ror.org/04mjev045', 'en', 1, 'https://ror.org/04mjev045 Department of Marine and Coastal Resources ąøąø£ąø”ąø—ąø£ąø±ąøžąø¢ąø²ąøąø£ąø—ąø²ąø‡ąø—ąø°ą¹€ąø„ą¹ąø„ąø°ąøŠąø²ąø¢ąøąø±ą¹ˆąø‡'),
(83906, 'https://ror.org/04mmwq306', 'en', 1, 'https://ror.org/04mmwq306 Trabzon University Trabzon Üniversitesi'),
(83907, 'https://ror.org/04mpfkx04', 'en', 1, 'https://ror.org/04mpfkx04 SCQM Foundation'),
(83908, 'https://ror.org/04mpv5r98', 'en', 1, 'https://ror.org/04mpv5r98 International Long Term Ecological Research Network Internationale Gesellschaft für Ɩkologische Langzeitforschung'),
(83909, 'https://ror.org/04mrh0826', 'en', 1, 'https://ror.org/04mrh0826 Australasian College of Dermatologists'),
(83910, 'https://ror.org/04mrrw205', 'en', 1, 'https://ror.org/04mrrw205 Autonomous University of Chihuahua Universidad Autónoma de Chihuahua'),
(83911, 'https://ror.org/04mtdw349', 'no_lang_code', 1, 'https://ror.org/04mtdw349 Renishaw (Russia)'),
(83912, 'https://ror.org/04mte1k06', 'en', 1, 'https://ror.org/04mte1k06 Conseil National de Recherches Canada National Research Council Canada'),
(83913, 'https://ror.org/04mtha847', 'no_lang_code', 1, 'https://ror.org/04mtha847 Aisan (Japan) ę„›äø‰å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(83914, 'https://ror.org/04mvr1r74', 'en', 1, 'https://ror.org/04mvr1r74 Intermountain Healthcare'),
(83915, 'https://ror.org/04mwky069', 'no_lang_code', 1, 'https://ror.org/04mwky069 RapidAIM (Australia)'),
(83916, 'https://ror.org/04mwmyd62', 'en', 1, 'https://ror.org/04mwmyd62 Global Policy Institute'),
(83917, 'https://ror.org/04my0r533', 'en', 1, 'https://ror.org/04my0r533 Sardar Patel University of Police, Security and Criminal Justice, Jodhpur'),
(83918, 'https://ror.org/04n1xa154', 'nl', 1, 'https://ror.org/04n1xa154 Meander Medisch Centrum'),
(83919, 'https://ror.org/04n3z6710', 'de', 1, 'https://ror.org/04n3z6710 Deutsche Alzheimer Gesellschaft'),
(83920, 'https://ror.org/04n4q2213', 'no_lang_code', 1, 'https://ror.org/04n4q2213 Basilea Pharmaceutica (Switzerland)'),
(83921, 'https://ror.org/04n8sc212', 'fr', 1, 'https://ror.org/04n8sc212 Physiopathologie et EpidƩmiologie des Maladies Respiratoires'),
(83922, 'https://ror.org/04n9jx253', 'en', 1, 'https://ror.org/04n9jx253 Medford Radiology Group'),
(83923, 'https://ror.org/04ncvnx26', 'fr', 1, 'https://ror.org/04ncvnx26 L’Agence Nationale pour l’amĆ©lioration des Conditions de Travail'),
(83924, 'https://ror.org/04nd58p63', 'en', 1, 'https://ror.org/04nd58p63 Tel Aviv Sourasky Medical Center'),
(83925, 'https://ror.org/04neks648', 'no_lang_code', 1, 'https://ror.org/04neks648 AlgiPharma (Norway)'),
(83926, 'https://ror.org/04nevn997', 'en', 1, 'https://ror.org/04nevn997 Western Regional Medical Center'),
(83927, 'https://ror.org/04ngphv84', 'es', 1, 'https://ror.org/04ngphv84 Instituto de Investigaciones CientĆ­ficas y Servicios de Alta TecnologĆ­a'),
(83928, 'https://ror.org/04ngysf93', 'en', 1, 'https://ror.org/04ngysf93 Hallym University Sacred Heart Hospital ķ•œė¦¼ėŒ€ķ•™źµģ„±ģ‹¬ė³‘ģ›'),
(83929, 'https://ror.org/04nh35860', 'no_lang_code', 1, 'https://ror.org/04nh35860 Velocity Clinical Research (United States)'),
(83930, 'https://ror.org/04nkkrh90', 'de', 1, 'https://ror.org/04nkkrh90 LWL-UniversitƤtsklinikum Bochum'),
(83931, 'https://ror.org/04npcdn05', 'en', 1, 'https://ror.org/04npcdn05 Centre for Ageing Better'),
(83932, 'https://ror.org/04nrcyx09', 'es', 1, 'https://ror.org/04nrcyx09 Centro Atómico Constituyentes'),
(83933, 'https://ror.org/04nw4se09', 'en', 1, 'https://ror.org/04nw4se09 Right to Care'),
(83934, 'https://ror.org/04p1xtv71', 'no_lang_code', 1, 'https://ror.org/04p1xtv71 Seagate (United States)'),
(83935, 'https://ror.org/04p4gjp18', 'en', 1, 'https://ror.org/04p4gjp18 Center of Excellence on Hazardous Substance Management'),
(83936, 'https://ror.org/04p5vvn48', 'en', 1, 'https://ror.org/04p5vvn48 Momentum Research'),
(83937, 'https://ror.org/04p7aq350', 'en', 1, 'https://ror.org/04p7aq350 Cooperative Research Centre for Water Sensitive Cities'),
(83938, 'https://ror.org/04p7gsa29', 'fr', 1, 'https://ror.org/04p7gsa29 Laboratoire ICT'),
(83939, 'https://ror.org/04p87a392', 'en', 1, 'https://ror.org/04p87a392 Center for Outcomes Research and Clinical Epidemiology'),
(83940, 'https://ror.org/04p8xrf95', 'en', 1, 'https://ror.org/04p8xrf95 Tetiaroa Society'),
(83941, 'https://ror.org/04pc38187', 'no_lang_code', 1, 'https://ror.org/04pc38187 Motac Neuroscience (United Kingdom)'),
(83942, 'https://ror.org/04pdbq803', 'no_lang_code', 1, 'https://ror.org/04pdbq803 Lumiphase (Switzerland)'),
(83943, 'https://ror.org/04phycn98', 'en', 1, 'https://ror.org/04phycn98 San Beda University'),
(83944, 'https://ror.org/04pjv0k50', 'no_lang_code', 1, 'https://ror.org/04pjv0k50 Medpharmgene (Canada)'),
(83945, 'https://ror.org/04pmbtr45', 'no_lang_code', 1, 'https://ror.org/04pmbtr45 Linkster Therapeutics (Switzerland)'),
(83946, 'https://ror.org/04pp5vm71', 'en', 1, 'https://ror.org/04pp5vm71 U.S. Salinity Laboratory'),
(83947, 'https://ror.org/04prxcf74', 'en', 1, 'https://ror.org/04prxcf74 Japanese Red Cross Narita Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ęˆē”°čµ¤åå­—ē—…é™¢'),
(83948, 'https://ror.org/04ps4d441', 'no_lang_code', 1, 'https://ror.org/04ps4d441 Clovis Oncology (United States)'),
(83949, 'https://ror.org/04psbxy09', 'en', 1, 'https://ror.org/04psbxy09 Centre for DNA Fingerprinting and Diagnostics ą¤”ą„€ą¤ą¤Øą¤ ą¤«ą¤æą¤‚ą¤—ą¤°ą¤Ŗą„ą¤°ą¤æą¤‚ą¤Ÿą¤æą¤‚ą¤— ą¤ą¤µą¤‚ निदान ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(83950, 'https://ror.org/04ptv2b23', 'en', 1, 'https://ror.org/04ptv2b23 American Academy of Environmental Engineers and Scientists'),
(83951, 'https://ror.org/04pvsjf17', 'en', 1, 'https://ror.org/04pvsjf17 FENS Kavli Network of Excellence'),
(83952, 'https://ror.org/04pxj3j71', 'en', 1, 'https://ror.org/04pxj3j71 Southeastern Community College - Iowa'),
(83953, 'https://ror.org/04py2rh25', 'en', 1, 'https://ror.org/04py2rh25 Mass General Brigham'),
(83954, 'https://ror.org/04q0b3c27', 'en', 1, 'https://ror.org/04q0b3c27 National Mie Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹äø‰é‡ē—…é™¢'),
(83955, 'https://ror.org/04q0njq38', 'no_lang_code', 1, 'https://ror.org/04q0njq38 Oncovision (Spain)'),
(83956, 'https://ror.org/04q0r6m34', 'es', 1, 'https://ror.org/04q0r6m34 Universidad Autónoma de la Ciudad de México'),
(83957, 'https://ror.org/04q2jes40', 'en', 1, 'https://ror.org/04q2jes40 University of Petroleum and Energy Studies ą¤Ŗą„‡ą¤Ÿą„ą¤°ą„‹ą¤²ą¤æą¤Æą¤® और ą¤Šą¤°ą„ą¤œą¤¾ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(83958, 'https://ror.org/04q44r852', 'en', 1, 'https://ror.org/04q44r852 Fuji Machine (Japan) åÆŒå£«ę©Ÿę¢°ę Ŗå¼ä¼šē¤¾'),
(83959, 'https://ror.org/04q47hj14', 'en', 1, 'https://ror.org/04q47hj14 Association of Environmental Engineering and Science Professors'),
(83960, 'https://ror.org/04q4hbm31', 'en', 1, 'https://ror.org/04q4hbm31 Smoking Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗå–«ē…™ē§‘å­¦ē ”ē©¶č²”å›£'),
(83961, 'https://ror.org/04q4ydz28', 'en', 1, 'https://ror.org/04q4ydz28 VIB-UGent Center for Inflammation Research'),
(83962, 'https://ror.org/04q5sbq41', 'en', 1, 'https://ror.org/04q5sbq41 Jeffrey Modell Foundation'),
(83963, 'https://ror.org/04q6a0352', 'en', 1, 'https://ror.org/04q6a0352 Volgograd State Medical University ВолгограГский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(83964, 'https://ror.org/04q95ej23', 'en', 1, 'https://ror.org/04q95ej23 Quantum Science Center'),
(83965, 'https://ror.org/04q9m7550', 'en', 1, 'https://ror.org/04q9m7550 Association for Supervision and Curriculum Development'),
(83966, 'https://ror.org/04q9qf557', 'en', 1, 'https://ror.org/04q9qf557 Northeast Ohio Medical University'),
(83967, 'https://ror.org/04q9zc034', 'no_lang_code', 1, 'https://ror.org/04q9zc034 Covenant Research and Clinics (United States)'),
(83968, 'https://ror.org/04qca4971', 'en', 1, 'https://ror.org/04qca4971 Indiana Department of Natural Resources'),
(83969, 'https://ror.org/04qdzjg14', 'en', 1, 'https://ror.org/04qdzjg14 Danish Ministry of Culture Kulturministeriet'),
(83970, 'https://ror.org/04qg81z57', 'en', 1, 'https://ror.org/04qg81z57 Hubei Academy of Agricultural Sciences ę¹–åŒ—ēœå†œäøšē§‘å­¦é™¢'),
(83971, 'https://ror.org/04qg9vz18', 'en', 1, 'https://ror.org/04qg9vz18 British Film Institute'),
(83972, 'https://ror.org/04qhpqj38', 'no_lang_code', 1, 'https://ror.org/04qhpqj38 Altran (France)'),
(83973, 'https://ror.org/04qjh2h11', 'en', 1, 'https://ror.org/04qjh2h11 Xinjiang Agricultural University ę–°ē–†å†œäøšå¤§å­¦'),
(83974, 'https://ror.org/04qk6pt94', 'en', 1, 'https://ror.org/04qk6pt94 UniversitĆ© d''Ɖtat wright Wright State University'),
(83975, 'https://ror.org/04qknqs93', 'no_lang_code', 1, 'https://ror.org/04qknqs93 JIMRO (Japan) ę Ŗå¼ä¼šē¤¾JIMRO'),
(83976, 'https://ror.org/04qmxm960', 'en', 1, 'https://ror.org/04qmxm960 Innovative Scientific Information & Services Network'),
(83977, 'https://ror.org/04qnzk495', 'no_lang_code', 1, 'https://ror.org/04qnzk495 Spital Thurgau (Switzerland)'),
(83978, 'https://ror.org/04qrtgy16', 'en', 1, 'https://ror.org/04qrtgy16 MIREA - Russian Technological University Московский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ раГиотехники'),
(83979, 'https://ror.org/04qrv9y41', 'en', 1, 'https://ror.org/04qrv9y41 Episcopal High School'),
(83980, 'https://ror.org/04qskqr65', 'en', 1, 'https://ror.org/04qskqr65 Arecibo Observatory'),
(83981, 'https://ror.org/04qtb5g63', 'no_lang_code', 1, 'https://ror.org/04qtb5g63 Scientific Aviation (United States)'),
(83982, 'https://ror.org/04qvvhf62', 'en', 1, 'https://ror.org/04qvvhf62 Wenner-Gren Foundation'),
(83983, 'https://ror.org/04qw19h46', 'en', 1, 'https://ror.org/04qw19h46 Society for Visual Anthropology'),
(83984, 'https://ror.org/04qw9bn98', 'en', 1, 'https://ror.org/04qw9bn98 Angelus Silesius State University Państwowa Uczelnia Angelusa Silesiusa'),
(83985, 'https://ror.org/04qyar702', 'no_lang_code', 1, 'https://ror.org/04qyar702 Alcon (United Kingdom)'),
(83986, 'https://ror.org/04qypp211', 'es', 1, 'https://ror.org/04qypp211 Estudios Clƭnicos LatinoamƩrica'),
(83987, 'https://ror.org/04qz9jb06', 'en', 1, 'https://ror.org/04qz9jb06 North American Butterfly Association'),
(83988, 'https://ror.org/04qzdz471', 'es', 1, 'https://ror.org/04qzdz471 Centro de diseño, cine y televisión'),
(83989, 'https://ror.org/04r0k8112', 'nl', 1, 'https://ror.org/04r0k8112 Admiraal De Ruyter Ziekenhuis'),
(83990, 'https://ror.org/04r1cxt79', 'en', 1, 'https://ror.org/04r1cxt79 Kenya Medical Research Institute'),
(83991, 'https://ror.org/04r1mej53', 'it', 1, 'https://ror.org/04r1mej53 Europa Donna'),
(83992, 'https://ror.org/04r2bgz73', 'en', 1, 'https://ror.org/04r2bgz73 Indian Council of Forestry Research and Education'),
(83993, 'https://ror.org/04r2x0j90', 'en', 1, 'https://ror.org/04r2x0j90 Middlesex University Dubai Ų¬Ų§Ł…Ų¹Ų© Ł…ŁŠŲÆŁ„Ų³ŁƒŲ³ دبي'),
(83994, 'https://ror.org/04r3w0y76', 'en', 1, 'https://ror.org/04r3w0y76 Parkview Medical Center'),
(83995, 'https://ror.org/04r4pq051', 'en', 1, 'https://ror.org/04r4pq051 Hattori Hokokai Foundation å…¬ē›Šč²”å›£ę³•äŗŗęœéƒØå ±å…¬ä¼š'),
(83996, 'https://ror.org/04r5yzj24', 'no_lang_code', 1, 'https://ror.org/04r5yzj24 Professor Wühr und Simmel Gesundheits MANAGEMENT Systeme (Germany)'),
(83997, 'https://ror.org/04r6hkw08', 'no_lang_code', 1, 'https://ror.org/04r6hkw08 GC Europe (Belgium)'),
(83998, 'https://ror.org/04r703265', 'no_lang_code', 1, 'https://ror.org/04r703265 Sendai Shakai Hoken Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹ä»™å°ē—…é™¢'),
(83999, 'https://ror.org/04r72en83', 'en', 1, 'https://ror.org/04r72en83 University of International Relations 国际关系学院'),
(84000, 'https://ror.org/04r7rxc53', 'en', 1, 'https://ror.org/04r7rxc53 Centre for Environment, Fisheries and Aquaculture Science'),
(84001, 'https://ror.org/04r8kt465', 'en', 1, 'https://ror.org/04r8kt465 HĆøgskolen for yrkesfag, HĆøyskolen for yrkesfag University College of Vocational Education'),
(84002, 'https://ror.org/04r95dm95', 'en', 1, 'https://ror.org/04r95dm95 British Institute at Ankara'),
(84003, 'https://ror.org/04rbazs75', 'en', 1, 'https://ror.org/04rbazs75 P.A. Hertzen Moscow Oncology Research Institute ŠœŠŠ˜ŠžŠ˜ им. П.А. Герцена - филиал ФГБУ Ā«ŠŠœŠ˜Š Š¦Ā» ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России'),
(84004, 'https://ror.org/04rgjq668', 'no_lang_code', 1, 'https://ror.org/04rgjq668 National Center for Advanced Packaging (China)'),
(84005, 'https://ror.org/04rjz5883', 'en', 1, 'https://ror.org/04rjz5883 eLife Sciences Publications'),
(84006, 'https://ror.org/04rp40h82', 'en', 1, 'https://ror.org/04rp40h82 World Association of Theoretical and Computational Chemists'),
(84007, 'https://ror.org/04rpy5t19', 'en', 1, 'https://ror.org/04rpy5t19 African Governance and Development Institute'),
(84008, 'https://ror.org/04rr0m327', 'en', 1, 'https://ror.org/04rr0m327 University of Montana Western'),
(84009, 'https://ror.org/04rr2sr33', 'en', 1, 'https://ror.org/04rr2sr33 Hampton Roads Sanitation District'),
(84010, 'https://ror.org/04rr9xy49', 'en', 1, 'https://ror.org/04rr9xy49 United Nations Relief and Works Agency for Palestine Refugees in the Near East'),
(84011, 'https://ror.org/04rtrpb08', 'en', 1, 'https://ror.org/04rtrpb08 Schweizerische Arbeitsgruppe für klinische Krebsforschung Swiss Group For Clinical Cancer Research'),
(84012, 'https://ror.org/04rtztn12', 'no_lang_code', 1, 'https://ror.org/04rtztn12 Abt Associates (Nepal)'),
(84013, 'https://ror.org/04rw5yk74', 'en', 1, 'https://ror.org/04rw5yk74 Yellowstone National Park'),
(84014, 'https://ror.org/04rwp2162', 'es', 1, 'https://ror.org/04rwp2162 Centro de AstrofĆ­sica y TecnologĆ­as Afines'),
(84015, 'https://ror.org/04rx35w12', 'fr', 1, 'https://ror.org/04rx35w12 Conseil RƩgional de Picardie'),
(84016, 'https://ror.org/04rzagz55', 'no_lang_code', 1, 'https://ror.org/04rzagz55 Utano Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å®‡å¤šé‡Žē—…é™¢'),
(84017, 'https://ror.org/04rzwwg09', 'no_lang_code', 1, 'https://ror.org/04rzwwg09 Arbor Pharmaceuticals (United States)'),
(84018, 'https://ror.org/04s0rxb48', 'es', 1, 'https://ror.org/04s0rxb48 Instituto Volcanológico de Canarias'),
(84019, 'https://ror.org/04s36wq82', 'no_lang_code', 1, 'https://ror.org/04s36wq82 Inatura inatura - Erlebnis Naturschau'),
(84020, 'https://ror.org/04s629c33', 'en', 1, 'https://ror.org/04s629c33 National Institute of Health Sciences åŽšē”ŸåŠ“åƒēœå›½ē«‹åŒ»č–¬å“é£Ÿå“č”›ē”Ÿē ”ē©¶ę‰€'),
(84021, 'https://ror.org/04s6red60', 'en', 1, 'https://ror.org/04s6red60 Centre for Advanced Process Technology for Urban Resource Recovery'),
(84022, 'https://ror.org/04s8hyg48', 'no_lang_code', 1, 'https://ror.org/04s8hyg48 Pancreas Centre (Canada)'),
(84023, 'https://ror.org/04s8x9847', 'en', 1, 'https://ror.org/04s8x9847 Institute of New Materials å±±äøœēœē§‘å­¦é™¢ę–°ęę–™ē ”ē©¶ę‰€'),
(84024, 'https://ror.org/04s92tb21', 'en', 1, 'https://ror.org/04s92tb21 Odessa State Environmental University'),
(84025, 'https://ror.org/04s98d524', 'no_lang_code', 1, 'https://ror.org/04s98d524 Qeios (United Kingdom)'),
(84026, 'https://ror.org/04sb28h93', 'en', 1, 'https://ror.org/04sb28h93 Gromov Flight Research Institute Летно-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени М.М. Громова'),
(84027, 'https://ror.org/04sbe6g90', 'en', 1, 'https://ror.org/04sbe6g90 Animal and Plant Quarantine Agency'),
(84028, 'https://ror.org/04scgfz75', 'en', 1, 'https://ror.org/04scgfz75 OspidƩil na hOllscoile University Hospital Galway'),
(84029, 'https://ror.org/04se3fj97', 'en', 1, 'https://ror.org/04se3fj97 Armed Forces Institute of Pathology'),
(84030, 'https://ror.org/04se57789', 'en', 1, 'https://ror.org/04se57789 Fondazione Museo Civico di Rovereto Rovereto Civic Museum Foundation'),
(84031, 'https://ror.org/04sf43a98', 'en', 1, 'https://ror.org/04sf43a98 Ambrose University'),
(84032, 'https://ror.org/04sg4ka71', 'en', 1, 'https://ror.org/04sg4ka71 Fakultnƭ nemocnice KrƔlovskƩ Vinohrady University Hospital Kralovske Vinohrady'),
(84033, 'https://ror.org/04sg54v37', 'no_lang_code', 1, 'https://ror.org/04sg54v37 Enzen (India)'),
(84034, 'https://ror.org/04sgce546', 'en', 1, 'https://ror.org/04sgce546 Corner House'),
(84035, 'https://ror.org/04shkzd26', 'en', 1, 'https://ror.org/04shkzd26 Kathmandu Cancer Center'),
(84036, 'https://ror.org/04sj20m66', 'en', 1, 'https://ror.org/04sj20m66 Northeast U.S. Shelf Long Term Ecological Research'),
(84037, 'https://ror.org/04sj7e106', 'en', 1, 'https://ror.org/04sj7e106 Tiny Beam Fund'),
(84038, 'https://ror.org/04sk0et52', 'en', 1, 'https://ror.org/04sk0et52 Gump South Pacific Research Station'),
(84039, 'https://ror.org/04sm11c70', 'es', 1, 'https://ror.org/04sm11c70 Instituto de Educación Superior Tecnológico Público "Eleazar GuzmÔn Barrón"'),
(84040, '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"'),
(84041, 'https://ror.org/04sn2hb78', 'sv', 1, 'https://ror.org/04sn2hb78 Centralsjukhuset Kristianstad'),
(84042, 'https://ror.org/04sq63624', 'en', 1, 'https://ror.org/04sq63624 Born Free Foundation'),
(84043, 'https://ror.org/04sqpjb51', 'es', 1, 'https://ror.org/04sqpjb51 Universidad de San Buenaventura, Bogota'),
(84044, 'https://ror.org/04sr5ys16', 'en', 1, 'https://ror.org/04sr5ys16 Duke Kunshan University ę˜†å±±ęœå…‹å¤§å­¦'),
(84045, 'https://ror.org/04srd9d93', 'no_lang_code', 1, 'https://ror.org/04srd9d93 Lenovo (China) č”ęƒ³äø­å›½'),
(84046, 'https://ror.org/04stx0g16', 'pt', 1, 'https://ror.org/04stx0g16 Universidade Federal do Norte do Tocantins'),
(84047, 'https://ror.org/04svesj94', 'en', 1, 'https://ror.org/04svesj94 Chartered Institute of Architectural Technologists'),
(84048, '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'),
(84049, 'https://ror.org/04sx39q13', 'en', 1, 'https://ror.org/04sx39q13 Centre for Palaeogenetics'),
(84050, 'https://ror.org/04sx5hw70', 'de', 1, 'https://ror.org/04sx5hw70 Schilddrüsenpraxis Josefstadt'),
(84051, 'https://ror.org/04szvwj50', 'en', 1, 'https://ror.org/04szvwj50 Military Medical Academy Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠŲ©'),
(84052, 'https://ror.org/04t23sv93', 'no_lang_code', 1, 'https://ror.org/04t23sv93 Mitsubishi Space Software (Japan) äø‰č±ć‚¹ćƒšćƒ¼ć‚¹ćƒ»ć‚½ćƒ•ćƒˆć‚¦ć‚Øć‚¢ę Ŗå¼ä¼šē¤¾'),
(84053, 'https://ror.org/04t32gd51', 'en', 1, 'https://ror.org/04t32gd51 Animal Welfare Institute'),
(84054, 'https://ror.org/04t44qh67', 'en', 1, 'https://ror.org/04t44qh67 Baotou Medical College 包夓医学院'),
(84055, 'https://ror.org/04t667177', 'en', 1, 'https://ror.org/04t667177 Nordre Ƙyeren Bird Observatory Nordre Ƙyeren Fuglestasjon'),
(84056, 'https://ror.org/04t6njz90', 'id', 1, 'https://ror.org/04t6njz90 STIE Kesuma Negara Blitar'),
(84057, 'https://ror.org/04t908e09', 'en', 1, 'https://ror.org/04t908e09 Olivia Newton-John Cancer Wellness & Research Centre'),
(84058, 'https://ror.org/04t9aj866', 'no_lang_code', 1, 'https://ror.org/04t9aj866 DarwinHealth (United States)'),
(84059, 'https://ror.org/04tav7h44', 'en', 1, 'https://ror.org/04tav7h44 Cherepovets State University Череповецкий Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(84060, 'https://ror.org/04td0zn33', 'en', 1, 'https://ror.org/04td0zn33 WellSpan Ephrata Community Hospital'),
(84061, 'https://ror.org/04tdavc85', 'en', 1, 'https://ror.org/04tdavc85 American Podiatric Medical Association'),
(84062, 'https://ror.org/04tdptw32', 'en', 1, 'https://ror.org/04tdptw32 Asser Institute'),
(84063, 'https://ror.org/04tdxpm82', 'fr', 1, 'https://ror.org/04tdxpm82 L’Institut Franco-EuropĆ©en de Chiropraxie'),
(84064, 'https://ror.org/04te82086', 'en', 1, 'https://ror.org/04te82086 Coastal Impact'),
(84065, 'https://ror.org/04tew3n82', 'no_lang_code', 1, 'https://ror.org/04tew3n82 Saiseikai Yokohama Eastern Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šęØŖęµœåø‚ę±éƒØē—…é™¢'),
(84066, 'https://ror.org/04th0dc64', 'en', 1, 'https://ror.org/04th0dc64 Toronto Liver Centre'),
(84067, 'https://ror.org/04thacr56', 'en', 1, 'https://ror.org/04thacr56 Alex Ekwueme Federal University, Ndufu-Alike'),
(84068, 'https://ror.org/04tj1wy14', 'en', 1, 'https://ror.org/04tj1wy14 Anti Leprosy Campaign'),
(84069, 'https://ror.org/04tjvaj88', 'es', 1, 'https://ror.org/04tjvaj88 Instituto Universitario de Innovación Ciencia y Tecnología Inudi Perú'),
(84070, 'https://ror.org/04tm3b065', 'en', 1, 'https://ror.org/04tm3b065 Ministry of Fisheries and Marine Resource Development'),
(84071, 'https://ror.org/04tm6ax73', 'en', 1, 'https://ror.org/04tm6ax73 Northwest Irrigation and Soils Research Laboratory'),
(84072, 'https://ror.org/04tmsfn31', 'en', 1, 'https://ror.org/04tmsfn31 Federal Neurosurgical Center Novosibirsk Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ центр Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(84073, 'https://ror.org/04tmv3q77', 'no_lang_code', 1, 'https://ror.org/04tmv3q77 Toyo Ink (Japan) ę±ę“‹ć‚¤ćƒ³ć‚­ę Ŗå¼ä¼šē¤¾'),
(84074, 'https://ror.org/04trppz31', 'sv', 1, 'https://ror.org/04trppz31 Spine Center Gƶteborg'),
(84075, 'https://ror.org/04ttadj76', 'en', 1, 'https://ror.org/04ttadj76 Collaborative Innovation Center of Advanced Microstructures äŗŗå·„å¾®ē»“ęž„ē§‘å­¦äøŽęŠ€ęœÆååŒåˆ›ę–°äø­åæƒ'),
(84076, 'https://ror.org/04tvshh35', 'en', 1, 'https://ror.org/04tvshh35 Mary M. Gooley Hemophilia Center'),
(84077, '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 Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии биологически активных соеГинений ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(84078, 'https://ror.org/04v0v0306', 'en', 1, 'https://ror.org/04v0v0306 European Association for the Study of Diabetes'),
(84079, 'https://ror.org/04v35sm20', 'en', 1, 'https://ror.org/04v35sm20 Norton Community Hospital'),
(84080, 'https://ror.org/04v7b3f33', 'no_lang_code', 1, 'https://ror.org/04v7b3f33 Helen Keller International Nepal'),
(84081, 'https://ror.org/04v7hvq31', 'en', 1, 'https://ror.org/04v7hvq31 Scripps Institution of Oceanography'),
(84082, 'https://ror.org/04va4vg89', 'en', 1, 'https://ror.org/04va4vg89 British Beekeepers Association'),
(84083, 'https://ror.org/04vaq9436', 'no_lang_code', 1, 'https://ror.org/04vaq9436 Bluebird Bio (United States)'),
(84084, 'https://ror.org/04vav1944', 'en', 1, 'https://ror.org/04vav1944 Yuanmeng Precision Technology Research Institute ę·±åœ³åø‚åœ†ę¢¦ē²¾åÆ†ęŠ€ęœÆē ”ē©¶é™¢'),
(84085, 'https://ror.org/04vbskr07', 'en', 1, 'https://ror.org/04vbskr07 Geos Institute'),
(84086, 'https://ror.org/04vc9z215', 'en', 1, 'https://ror.org/04vc9z215 American Association of Diabetes Educators'),
(84087, 'https://ror.org/04vd28p53', 'it', 1, 'https://ror.org/04vd28p53 UniversitƠ Kore di Enna, UniversitƠ degli Studi di Enna Kore UniversitƩ kore d''enna'),
(84088, 'https://ror.org/04vdctb36', 'de', 1, 'https://ror.org/04vdctb36 Niederer Kraft and Frey'),
(84089, 'https://ror.org/04ve2jr14', 'no_lang_code', 1, 'https://ror.org/04ve2jr14 Atos (Netherlands)'),
(84090, 'https://ror.org/04vg1gh12', 'en', 1, 'https://ror.org/04vg1gh12 Kulkarni reconstructive Urology Center'),
(84091, 'https://ror.org/04vgfdj66', 'no_lang_code', 1, 'https://ror.org/04vgfdj66 EVERSANA (Canada)'),
(84092, 'https://ror.org/04vgq9s06', 'en', 1, 'https://ror.org/04vgq9s06 Norsk senter for Ćøkologisk landbruk Norwegian Centre for Organic Agriculture'),
(84093, 'https://ror.org/04vjc0t41', 'pt', 1, 'https://ror.org/04vjc0t41 Mecila'),
(84094, 'https://ror.org/04vnqkx80', 'no_lang_code', 1, 'https://ror.org/04vnqkx80 Sun Pharma (Japan) ć‚µćƒ³ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(84095, 'https://ror.org/04vprbm88', 'no_lang_code', 1, 'https://ror.org/04vprbm88 Global Seismological Services (United States)'),
(84096, 'https://ror.org/04vpsen23', 'de', 1, 'https://ror.org/04vpsen23 HSD Hochschule Dƶpfer'),
(84097, 'https://ror.org/04vqx8m08', 'no_lang_code', 1, 'https://ror.org/04vqx8m08 GS1 Japan äø€čˆ¬č²”å›£ę³•äŗŗęµé€šć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(84098, 'https://ror.org/04vr3cf25', 'no_lang_code', 1, 'https://ror.org/04vr3cf25 BML (Japan) ę Ŗå¼ä¼šē¤¾ćƒ“ćƒ¼ćƒ»ć‚Øćƒ ćƒ»ć‚Øćƒ«'),
(84099, 'https://ror.org/04vrd1088', 'en', 1, 'https://ror.org/04vrd1088 The Trust for Public Land'),
(84100, 'https://ror.org/04vrjya53', 'en', 1, 'https://ror.org/04vrjya53 The Origins Project Foundation'),
(84101, 'https://ror.org/04vsn7g65', 'en', 1, 'https://ror.org/04vsn7g65 Taian City Central Hospital å±±äøœēœę³°å®‰åø‚äø­åæƒåŒ»é™¢'),
(84102, 'https://ror.org/04vxjth07', 'de', 1, 'https://ror.org/04vxjth07 Museum für Naturkunde Magdeburg Museum of Natural History Magdeburg'),
(84103, 'https://ror.org/04w1pxt36', 'en', 1, 'https://ror.org/04w1pxt36 Chinese Society for Electrical Engineering äø­å›½ē”µęœŗå·„ēØ‹å­¦ä¼š'),
(84104, 'https://ror.org/04w2gya44', 'no_lang_code', 1, 'https://ror.org/04w2gya44 MBC BioLabs (United States)'),
(84105, 'https://ror.org/04w49p241', 'en', 1, 'https://ror.org/04w49p241 The Forestry Commission of Ghana'),
(84106, 'https://ror.org/04w51qd98', 'en', 1, 'https://ror.org/04w51qd98 Academy of Cognitive and Natural Sciences ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń когнітивних та прироГничих наук'),
(84107, 'https://ror.org/04w5etv87', 'en', 1, 'https://ror.org/04w5etv87 Chengdu Institute of Biology äø­å›½ē§‘å­¦é™¢ęˆéƒ½ē”Ÿē‰©ē ”ē©¶ę‰€'),
(84108, 'https://ror.org/04w74e817', 'no_lang_code', 1, 'https://ror.org/04w74e817 Alto Neuroscience (United States)'),
(84109, 'https://ror.org/04wan7j07', 'fr', 1, 'https://ror.org/04wan7j07 RƩseau d''Allergo-Vigilance'),
(84110, 'https://ror.org/04wb1en98', 'de', 1, 'https://ror.org/04wb1en98 Evangelical School of Social Work & Diakonie Evangelische Hochschule für Soziale Arbeit & Diakonie'),
(84111, 'https://ror.org/04wc1v131', 'en', 1, 'https://ror.org/04wc1v131 Renal Associates P. A.'),
(84112, 'https://ror.org/04wcaa208', 'en', 1, 'https://ror.org/04wcaa208 BirdLife international'),
(84113, 'https://ror.org/04wcf8366', 'en', 1, 'https://ror.org/04wcf8366 Georgia Department of Public Health'),
(84114, 'https://ror.org/04wcpjy25', 'en', 1, 'https://ror.org/04wcpjy25 Hokuriku University åŒ—é™øå¤§å­¦'),
(84115, 'https://ror.org/04wd29d63', 'en', 1, 'https://ror.org/04wd29d63 National Research Institute of Brewing ē‹¬ē«‹č”Œę”æę³•äŗŗé…’é”žē·åˆē ”ē©¶ę‰€'),
(84116, 'https://ror.org/04wegfc89', 'en', 1, 'https://ror.org/04wegfc89 Westchester County Department of Health'),
(84117, 'https://ror.org/04whsde46', 'de', 1, 'https://ror.org/04whsde46 Dermatologikum Hamburg'),
(84118, 'https://ror.org/04wkcqd42', 'en', 1, 'https://ror.org/04wkcqd42 Buffalo Bill Center of the West'),
(84119, 'https://ror.org/04wmpkv79', 'es', 1, 'https://ror.org/04wmpkv79 National Intercultural University of Quillabamba Universidad Nacional Intercultural de Quillabamba'),
(84120, 'https://ror.org/04wn7d698', 'en', 1, 'https://ror.org/04wn7d698 Showa University Hospital ę˜­å’Œå¤§å­¦ē—…é™¢'),
(84121, 'https://ror.org/04wn7wc95', 'en', 1, 'https://ror.org/04wn7wc95 Nagoya City University åå¤å±‹åø‚ē«‹å¤§å­¦'),
(84122, 'https://ror.org/04wnheq77', 'en', 1, 'https://ror.org/04wnheq77 Institute for Physics'),
(84123, 'https://ror.org/04wnhwq91', 'no_lang_code', 1, 'https://ror.org/04wnhwq91 Reneco (United Arab Emirates)'),
(84124, 'https://ror.org/04wnwjm54', 'en', 1, 'https://ror.org/04wnwjm54 Oman Dental College ŁƒŁ„ŁŠŲ© عمان لطب الأسنان'),
(84125, 'https://ror.org/04wny3163', 'en', 1, 'https://ror.org/04wny3163 British Society for Geomorphology'),
(84126, 'https://ror.org/04wpebs26', 'en', 1, 'https://ror.org/04wpebs26 Yamagata Prefectural Yonezawa University of Nutrition Sciences å±±å½¢ēœŒē«‹ē±³ę²¢ę „é¤Šå¤§å­¦'),
(84127, 'https://ror.org/04wpndn70', 'en', 1, 'https://ror.org/04wpndn70 Polk County High School'),
(84128, 'https://ror.org/04wr5tk73', 'de', 1, 'https://ror.org/04wr5tk73 Gƶttlicher Heiland Krankenhaus Wien'),
(84129, 'https://ror.org/04wsbgw88', 'no_lang_code', 1, 'https://ror.org/04wsbgw88 Heartfile'),
(84130, 'https://ror.org/04wsgqy55', 'en', 1, 'https://ror.org/04wsgqy55 Nippon Veterinary and Life Science University ę—„ęœ¬ē£åŒ»ē”Ÿå‘½ē§‘å­¦å¤§å­¦'),
(84131, 'https://ror.org/04wt43v05', 'no_lang_code', 1, 'https://ror.org/04wt43v05 Twitter (United States)'),
(84132, 'https://ror.org/04wtvmb30', 'en', 1, 'https://ror.org/04wtvmb30 Levinson Medical Center for Learning Disabilities'),
(84133, 'https://ror.org/04wvm7462', 'en', 1, 'https://ror.org/04wvm7462 Agrotecnio (Fundació UdL-IRTA) Agrotecnio - Centre for Food and Agriculture Research'),
(84134, 'https://ror.org/04wvptk03', 'no_lang_code', 1, 'https://ror.org/04wvptk03 Heineken (Netherlands) Heineken Pilsener'),
(84135, 'https://ror.org/04wvvj212', 'en', 1, 'https://ror.org/04wvvj212 Kementerian Keuangan Ministry of Finance'),
(84136, 'https://ror.org/04ww21r56', 'en', 1, 'https://ror.org/04ww21r56 Niigata University ę–°ę½Ÿå¤§å­¦'),
(84137, 'https://ror.org/04wwmh526', 'en', 1, 'https://ror.org/04wwmh526 Fraunhofer Center for Silicon Photovoltaics Fraunhofer-Center für Silizium-Photovoltaik'),
(84138, 'https://ror.org/04wwqze12', 'en', 1, 'https://ror.org/04wwqze12 Peking University Third Hospital åŒ—äŗ¬å¤§å­¦ē¬¬äø‰åŒ»é™¢'),
(84139, 'https://ror.org/04wx3p623', 'en', 1, 'https://ror.org/04wx3p623 Korean Society of Spine Surgery ėŒ€ķ•œģ²™ģ¶”ģ™øź³¼ķ•™ķšŒ'),
(84140, 'https://ror.org/04wxag453', 'en', 1, 'https://ror.org/04wxag453 Unitary Fund'),
(84141, 'https://ror.org/04wxnsj81', 'no_lang_code', 1, 'https://ror.org/04wxnsj81 DataCite'),
(84142, 'https://ror.org/04wzv3n59', 'no_lang_code', 1, 'https://ror.org/04wzv3n59 Sony (Japan) ć‚½ćƒ‹ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(84143, 'https://ror.org/04x0wrh81', 'no_lang_code', 1, 'https://ror.org/04x0wrh81 Abound Bio (United States)'),
(84144, 'https://ror.org/04x187e69', 'en', 1, 'https://ror.org/04x187e69 Gynecologic Oncology Group'),
(84145, 'https://ror.org/04x24rt73', 'en', 1, 'https://ror.org/04x24rt73 National Association of Psychiatric Intensive Care and Low Secure Unit'),
(84146, 'https://ror.org/04x40m321', 'en', 1, 'https://ror.org/04x40m321 National Cold Water Marine Aquaculture Center'),
(84147, 'https://ror.org/04x48z588', 'en', 1, 'https://ror.org/04x48z588 European Laboratory for Non-Linear Spectroscopy Laboratorio europeo di spettroscopia non lineare'),
(84148, 'https://ror.org/04x545z07', 'en', 1, 'https://ror.org/04x545z07 New Hampshire NeuroSpine Institute'),
(84149, 'https://ror.org/04x68p008', 'en', 1, 'https://ror.org/04x68p008 Edward T. Schafer Agricultural Research Center'),
(84150, 'https://ror.org/04x8acr98', 'en', 1, 'https://ror.org/04x8acr98 Baptist Health Madisonville'),
(84151, 'https://ror.org/04xa4c474', 'en', 1, 'https://ror.org/04xa4c474 Energy Research Centre of the Netherlands'),
(84152, 'https://ror.org/04xc7cw12', 'no_lang_code', 1, 'https://ror.org/04xc7cw12 Dong Wha Pharm (South Korea)'),
(84153, 'https://ror.org/04xe7ws48', 'no_lang_code', 1, 'https://ror.org/04xe7ws48 Advanced Research Center for Nanolithography (Netherlands)'),
(84154, 'https://ror.org/04xesg978', 'en', 1, 'https://ror.org/04xesg978 Japanese Red Cross Society Kyoto Daini Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾äŗ¬éƒ½ē¬¬äŗŒčµ¤åå­—ē—…é™¢'),
(84155, 'https://ror.org/04xj7vk87', 'en', 1, 'https://ror.org/04xj7vk87 SeaWorld San Diego'),
(84156, 'https://ror.org/04xjhyn16', 'en', 1, 'https://ror.org/04xjhyn16 DigitalGlobe Foundation'),
(84157, 'https://ror.org/04xk1b863', 'no_lang_code', 1, 'https://ror.org/04xk1b863 ESI Group (United Kingdom)'),
(84158, 'https://ror.org/04xk8j027', 'fr', 1, 'https://ror.org/04xk8j027 HƓpital Saint-Luc'),
(84159, 'https://ror.org/04xmnv894', 'no_lang_code', 1, 'https://ror.org/04xmnv894 Brewer Science (United States)'),
(84160, 'https://ror.org/04xnyj354', 'no_lang_code', 1, 'https://ror.org/04xnyj354 Atlantic Copper (Spain)'),
(84161, 'https://ror.org/04xpajq87', 'en', 1, 'https://ror.org/04xpajq87 Ocean Medical Center'),
(84162, 'https://ror.org/04xpv0391', 'en', 1, 'https://ror.org/04xpv0391 Lebanon Support'),
(84163, 'https://ror.org/04xq9nz88', 'no_lang_code', 1, 'https://ror.org/04xq9nz88 Nisshin Seifun Group (Japan) ę—„ęø…č£½ē²‰ć‚°ćƒ«ćƒ¼ćƒ—ęœ¬ē¤¾'),
(84164, 'https://ror.org/04xsf1c37', 'no_lang_code', 1, 'https://ror.org/04xsf1c37 Estonian Biocentre'),
(84165, 'https://ror.org/04xtarr15', 'en', 1, 'https://ror.org/04xtarr15 Simula Metropolitan Center for Digital Engineering'),
(84166, 'https://ror.org/04xtdyr20', 'no', 1, 'https://ror.org/04xtdyr20 BƦrum Kommune'),
(84167, 'https://ror.org/04xtv9907', 'en', 1, 'https://ror.org/04xtv9907 FGK Clinical Research'),
(84168, 'https://ror.org/04xx5hr10', 'en', 1, 'https://ror.org/04xx5hr10 Faroese Research Council'),
(84169, 'https://ror.org/04xxayh10', 'en', 1, 'https://ror.org/04xxayh10 Catalan Institute for Cultural Heritage Research Institut CatalĆ  de Recerca En Patrimoni Cultural'),
(84170, 'https://ror.org/04xxyrq44', 'no_lang_code', 1, 'https://ror.org/04xxyrq44 Otonomy (United States)'),
(84171, 'https://ror.org/04y0x0x35', 'en', 1, 'https://ror.org/04y0x0x35 Queen Elizabeth University Hospital'),
(84172, 'https://ror.org/04y1zat75', 'en', 1, 'https://ror.org/04y1zat75 Hungarian Natural History Museum Magyar TermészettudomÔnyi Múzeum'),
(84173, 'https://ror.org/04y2aw426', 'nl', 1, 'https://ror.org/04y2aw426 De Bastei'),
(84174, 'https://ror.org/04y2ayk80', 'no_lang_code', 1, 'https://ror.org/04y2ayk80 ASRO (Finland)'),
(84175, 'https://ror.org/04y5vcf04', 'no_lang_code', 1, 'https://ror.org/04y5vcf04 MantraCare'),
(84176, 'https://ror.org/04y6ges66', 'en', 1, 'https://ror.org/04y6ges66 Nippon Medical School Hospital ę—„ęœ¬åŒ»ē§‘å¤§å­¦ä»˜å±žē—…é™¢'),
(84177, 'https://ror.org/04y89nz36', 'nl', 1, 'https://ror.org/04y89nz36 St. Anna Ziekenhuis'),
(84178, 'https://ror.org/04y8d6y55', 'en', 1, 'https://ror.org/04y8d6y55 Shandong Academy of Sciences å±±äøœēœē§‘å­¦é™¢'),
(84179, 'https://ror.org/04yd1pb14', 'en', 1, 'https://ror.org/04yd1pb14 Constitutional Court of Korea ķ—Œė²•ģž¬ķŒģ†Œ'),
(84180, 'https://ror.org/04yf19a15', 'en', 1, 'https://ror.org/04yf19a15 Koyasan University 高野山大学'),
(84181, 'https://ror.org/04yhf7405', 'en', 1, 'https://ror.org/04yhf7405 Sydney Water'),
(84182, 'https://ror.org/04yjefs69', 'en', 1, 'https://ror.org/04yjefs69 Science Table'),
(84183, 'https://ror.org/04yn2he76', 'no_lang_code', 1, 'https://ror.org/04yn2he76 Kobari General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£åœ­ę˜„ä¼šå°å¼µē·åˆē—…é™¢'),
(84184, 'https://ror.org/04yn5x032', 'no_lang_code', 1, 'https://ror.org/04yn5x032 Three-Speed Logic (Canada)'),
(84185, 'https://ror.org/04ynd9171', 'no_lang_code', 1, 'https://ror.org/04ynd9171 Celsius Therapeutics (United States)'),
(84186, 'https://ror.org/04yr6h117', 'en', 1, 'https://ror.org/04yr6h117 American Academy of Hospice and Palliative Medicine'),
(84187, 'https://ror.org/04ys6zh37', 'en', 1, 'https://ror.org/04ys6zh37 Snolab'),
(84188, 'https://ror.org/04ys9d360', 'fr', 1, 'https://ror.org/04ys9d360 Centre Africain de Recherche en EpidƩmiologie et en SantƩ Publique'),
(84189, 'https://ror.org/04yvd9h56', 'en', 1, 'https://ror.org/04yvd9h56 Kanagawa Academy of Science and Technology å…¬ē›Šč²”å›£ę³•äŗŗē„žå„ˆå·ē§‘å­¦ęŠ€č”“ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(84190, 'https://ror.org/04yw73836', 'en', 1, 'https://ror.org/04yw73836 Nagpur Institute of Technology'),
(84191, 'https://ror.org/04yy4tq26', 'en', 1, 'https://ror.org/04yy4tq26 Institut für Radio- und Informationssysteme – IRIS Institute of Radio and Information Systems (IRIS)'),
(84192, 'https://ror.org/04yymzm67', 'en', 1, 'https://ror.org/04yymzm67 Hassiba Benbouali University of Chlef Ų¬Ų§Ł…Ų¹Ų© حسيبة بن ŲØŁˆŲ¹Ł„ŁŠ -الؓلف'),
(84193, 'https://ror.org/04z08z627', 'en', 1, 'https://ror.org/04z08z627 University of Molise UniversitƠ degli Studi del Molise UniversitƩ du molise'),
(84194, 'https://ror.org/04z20c169', 'en', 1, 'https://ror.org/04z20c169 Moline Public Library'),
(84195, 'https://ror.org/04z2zm587', 'en', 1, 'https://ror.org/04z2zm587 Global Health Research Center of Central Asia Центр Š˜Š·ŃƒŃ‡ŠµŠ½ŠøŃ Š“Š»Š¾Š±Š°Š»ŃŒŠ½Š¾Š³Š¾ Š—Š“Š¾Ń€Š¾Š²ŃŒŃ в Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(84196, 'https://ror.org/04z45pv75', 'fr', 1, 'https://ror.org/04z45pv75 Institut du Savoir Montfort'),
(84197, 'https://ror.org/04z57ga44', 'pl', 1, 'https://ror.org/04z57ga44 Przedszkole Nr 81'),
(84198, 'https://ror.org/04z746g28', 'en', 1, 'https://ror.org/04z746g28 Minnesota Academy of Science'),
(84199, 'https://ror.org/04z7xfj55', 'en', 1, 'https://ror.org/04z7xfj55 Japan Health Sciences Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒ’ćƒ„ćƒ¼ćƒžćƒ³ć‚µć‚¤ć‚Øćƒ³ć‚¹ęŒÆčˆˆč²”å›£'),
(84200, 'https://ror.org/04z82ry91', 'en', 1, 'https://ror.org/04z82ry91 National Electronics and Computer Technology Center'),
(84201, 'https://ror.org/04z941r10', 'en', 1, 'https://ror.org/04z941r10 Remote Sensing Technology Center of Japan ćƒŖćƒ¢ćƒ¼ćƒˆćƒ»ć‚»ćƒ³ć‚·ćƒ³ć‚°ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(84202, 'https://ror.org/04zb31v77', 'en', 1, 'https://ror.org/04zb31v77 Saitama Medical University åŸ¼ēŽ‰åŒ»ē§‘å¤§å­¦'),
(84203, 'https://ror.org/04zc3wd06', 'no_lang_code', 1, 'https://ror.org/04zc3wd06 Public Power Corporation (Greece)'),
(84204, 'https://ror.org/04zcfra07', 'no_lang_code', 1, 'https://ror.org/04zcfra07 FlowJo (United States)'),
(84205, 'https://ror.org/04zd7zv52', 'en', 1, 'https://ror.org/04zd7zv52 Academy of Neuroscience for Architecture'),
(84206, 'https://ror.org/04zdx1r56', 'da', 1, 'https://ror.org/04zdx1r56 Langelands Museum'),
(84207, 'https://ror.org/04zet5t12', 'en', 1, 'https://ror.org/04zet5t12 Bwrdd lechyd Prifysgol Bae Abertawe Swansea Bay University Health Board'),
(84208, 'https://ror.org/04zgj7914', 'en', 1, 'https://ror.org/04zgj7914 State Key Laboratory of Food Science and Technology é£Ÿå“ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(84209, 'https://ror.org/04zke5364', 'en', 1, 'https://ror.org/04zke5364 Feidhmeannacht na Seirbhƭse SlƔinte Health Service Executive'),
(84210, 'https://ror.org/04zkkk344', 'en', 1, 'https://ror.org/04zkkk344 CMT Research Foundation'),
(84211, 'https://ror.org/04zpbyn04', 'fr', 1, 'https://ror.org/04zpbyn04 Institut National de SantƩ Publique'),
(84212, 'https://ror.org/04zqj3g76', 'en', 1, 'https://ror.org/04zqj3g76 First Nations University of Canada'),
(84213, 'https://ror.org/04zrbnc33', 'en', 1, 'https://ror.org/04zrbnc33 Multimedia University ดหาวณทยาคัยดัคตณดีเดีย');
INSERT INTO `rors` VALUES
(84214, '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ığı'),
(84215, 'https://ror.org/04zsv0n66', 'en', 1, 'https://ror.org/04zsv0n66 Hospital and Rehabilitation for Disabled Children'),
(84216, 'https://ror.org/04ztzhc98', 'en', 1, 'https://ror.org/04ztzhc98 Rotary Club of Eureka'),
(84217, 'https://ror.org/04zxvxa53', 'en', 1, 'https://ror.org/04zxvxa53 Society of Hematologic Oncology'),
(84218, 'https://ror.org/04zxw0v05', 'en', 1, 'https://ror.org/04zxw0v05 Center for Pain and the Brain'),
(84219, 'https://ror.org/04zzd2n41', 'de', 1, 'https://ror.org/04zzd2n41 Krankenhaus Lübbecke-Rahden, Universitätsklinik für Psychiatrie und Psychotherapie'),
(84220, 'https://ror.org/05044fm39', 'en', 1, 'https://ror.org/05044fm39 Tambov Military Aviation Engineering Institute Тамбовский военный авиационный инженерный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(84221, 'https://ror.org/0505p9044', 'it', 1, 'https://ror.org/0505p9044 Istituto di Sessuologia Clinica'),
(84222, 'https://ror.org/0506y2b23', 'it', 1, 'https://ror.org/0506y2b23 Istituto Nazionale Tumori IRCCS "Fondazione G. Pascale"'),
(84223, 'https://ror.org/0507fk326', 'en', 1, 'https://ror.org/0507fk326 MTA-SZTE Research Group on Artificial Intelligence'),
(84224, 'https://ror.org/0507wc250', 'no_lang_code', 1, 'https://ror.org/0507wc250 Mavenir (Israel)'),
(84225, 'https://ror.org/050c50s85', 'en', 1, 'https://ror.org/050c50s85 United in Health'),
(84226, 'https://ror.org/050d10n23', 'en', 1, 'https://ror.org/050d10n23 Labour Relations Agency'),
(84227, 'https://ror.org/050kcr883', 'en', 1, 'https://ror.org/050kcr883 Illinois State University Universidad del Estado de Illinois UniversitĆ© d''Ɖtat de l''illinois'),
(84228, 'https://ror.org/050m26017', 'en', 1, 'https://ror.org/050m26017 Farm Service Agency'),
(84229, 'https://ror.org/050ngae93', 'en', 1, 'https://ror.org/050ngae93 European Academy of Dermatology and Venereology'),
(84230, 'https://ror.org/050nsn531', 'no_lang_code', 1, 'https://ror.org/050nsn531 Bio-Rad (Germany)'),
(84231, 'https://ror.org/050p9wj26', 'en', 1, 'https://ror.org/050p9wj26 John F. Kennedy University'),
(84232, 'https://ror.org/050qhwt21', 'en', 1, 'https://ror.org/050qhwt21 Shanghai Academy of Spaceflight Technology äøŠęµ·čˆŖå¤©ęŠ€ęœÆē ”ē©¶é™¢'),
(84233, 'https://ror.org/050sv4x28', 'en', 1, 'https://ror.org/050sv4x28 Buck Institute for Research on Aging'),
(84234, 'https://ror.org/050vh8780', 'en', 1, 'https://ror.org/050vh8780 Kyiv National University of Technologies and Design ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ технологій та Гизайну'),
(84235, 'https://ror.org/050ya8p70', 'en', 1, 'https://ror.org/050ya8p70 Institute of Professional Accountants of Russia Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… Š±ŃƒŃ…Š³Š°Š»Ń‚ŠµŃ€Š¾Š² Šø Š°ŃƒŠ“ŠøŃ‚Š¾Ń€Š¾Š² России'),
(84236, 'https://ror.org/050yb6166', 'en', 1, 'https://ror.org/050yb6166 Choctaw County School District'),
(84237, 'https://ror.org/050z40a57', 'en', 1, 'https://ror.org/050z40a57 Robert W. Holley Center for Agriculture & Health'),
(84238, 'https://ror.org/050z9fj14', 'pt', 1, 'https://ror.org/050z9fj14 Hospital SĆ£o Paulo'),
(84239, 'https://ror.org/0510wt644', 'en', 1, 'https://ror.org/0510wt644 American Society of Parasitologists'),
(84240, 'https://ror.org/0514zf363', 'en', 1, 'https://ror.org/0514zf363 North Carolina Academy of Science'),
(84241, 'https://ror.org/0515hsf31', 'en', 1, 'https://ror.org/0515hsf31 La FƩdƩration maritime du Canada Shipping Federation of Canada'),
(84242, 'https://ror.org/0515r0e39', 'de', 1, 'https://ror.org/0515r0e39 Epilepsiezentrum Kleinwachau Gemeinnützige'),
(84243, 'https://ror.org/05167c961', 'en', 1, 'https://ror.org/05167c961 Western University of Health Sciences'),
(84244, 'https://ror.org/0517jgz17', 'en', 1, 'https://ror.org/0517jgz17 American Holistic Nurses Association'),
(84245, 'https://ror.org/0518yg160', 'no_lang_code', 1, 'https://ror.org/0518yg160 ZTE (United States)'),
(84246, 'https://ror.org/0519ax945', 'en', 1, 'https://ror.org/0519ax945 Argentine Naval Hydrographic Service Servicio de Hidrografia Naval'),
(84247, 'https://ror.org/0519vt613', 'de', 1, 'https://ror.org/0519vt613 Tiroler Zukunftsstiftung'),
(84248, 'https://ror.org/0519z1231', 'en', 1, 'https://ror.org/0519z1231 Resphera Biosciences'),
(84249, 'https://ror.org/051an6p98', 'no_lang_code', 1, 'https://ror.org/051an6p98 Samsung (Russia)'),
(84250, 'https://ror.org/051b3s825', 'fr', 1, 'https://ror.org/051b3s825 Institut de Formation et de Recherche DƩmographiques'),
(84251, 'https://ror.org/051btyw27', 'no_lang_code', 1, 'https://ror.org/051btyw27 Erum Biotechnologies (South Korea)'),
(84252, 'https://ror.org/051etvk19', 'no_lang_code', 1, 'https://ror.org/051etvk19 Selective Catalytic Reduction (United States)'),
(84253, 'https://ror.org/051f75a52', 'en', 1, 'https://ror.org/051f75a52 Loyola University New Orleans Universidad Loyola Nueva Orleans'),
(84254, 'https://ror.org/051fsan18', 'no_lang_code', 1, 'https://ror.org/051fsan18 Zygo (United States)'),
(84255, 'https://ror.org/051j5db58', 'es', 1, 'https://ror.org/051j5db58 IMEK Centro de Investigación en Mercadeo & Desarrollo IMEK Research Center in Marketing & Development'),
(84256, 'https://ror.org/051jgxz75', 'en', 1, 'https://ror.org/051jgxz75 Institute of Radiophysics and Electronics ÕŒÕ”Õ¤Õ«ÕøÖ†Õ«Õ¦Õ«ÕÆÕ”ÕµÕ« և Õ§Õ¬Õ„ÕÆÕæÖ€ÕøÕ¶Õ«ÕÆÕ”ÕµÕ« Õ«Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(84257, 'https://ror.org/051k25d02', 'no_lang_code', 1, 'https://ror.org/051k25d02 Lava Therapeutics (Netherlands)'),
(84258, 'https://ror.org/051mfb226', 'en', 1, 'https://ror.org/051mfb226 Tokai Central Hospital å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆę±ęµ·äø­å¤®ē—…é™¢'),
(84259, 'https://ror.org/051pfzb30', 'no_lang_code', 1, 'https://ror.org/051pfzb30 Acellera (Spain)'),
(84260, 'https://ror.org/051qn8h41', 'en', 1, 'https://ror.org/051qn8h41 Ilia State University Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ильи ილიაე įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(84261, 'https://ror.org/051qqcg15', 'en', 1, 'https://ror.org/051qqcg15 Rajamangala University of Technology ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„'),
(84262, 'https://ror.org/051qy7v07', 'en', 1, 'https://ror.org/051qy7v07 Newcastle Hospitals - Campus for Ageing and Vitality'),
(84263, 'https://ror.org/051re5m53', 'en', 1, 'https://ror.org/051re5m53 Biomedical Research Foundation'),
(84264, 'https://ror.org/051rhng80', 'en', 1, 'https://ror.org/051rhng80 Soreq Nuclear Research Center ×”×ž×Ø×›×– ×œ×ž×—×§×Ø גרעיני שורק'),
(84265, 'https://ror.org/051samc18', 'en', 1, 'https://ror.org/051samc18 Llyfrgell Genedlaethol yr Alban National Library of Scotland'),
(84266, 'https://ror.org/051sev771', 'da', 1, 'https://ror.org/051sev771 Roskilde Museum'),
(84267, 'https://ror.org/051sgbe98', 'en', 1, 'https://ror.org/051sgbe98 United Kingdom Space Agency'),
(84268, 'https://ror.org/051sk4035', 'fr', 1, 'https://ror.org/051sk4035 Institut Cochin'),
(84269, 'https://ror.org/051x4k077', 'en', 1, 'https://ror.org/051x4k077 Higher Institute for Artistic Industries Roma Istituto Superiore per le Industrie Artistiche'),
(84270, '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'),
(84271, 'https://ror.org/051zgrs14', 'es', 1, 'https://ror.org/051zgrs14 National University of JaƩn Universidad Nacional de JaƩn'),
(84272, 'https://ror.org/05201qm87', 'en', 1, 'https://ror.org/05201qm87 Huashan Hospital'),
(84273, 'https://ror.org/0520fx213', 'no_lang_code', 1, 'https://ror.org/0520fx213 Refuge Biotechnologies (United States)'),
(84274, 'https://ror.org/05222ev03', 'en', 1, 'https://ror.org/05222ev03 Risk Management Agency'),
(84275, 'https://ror.org/0523kvm53', 'en', 1, 'https://ror.org/0523kvm53 Innovating Health International'),
(84276, 'https://ror.org/0523vvf33', 'no_lang_code', 1, 'https://ror.org/0523vvf33 China Aerospace Science and Industry Corporation (China) äø­å›½čˆŖå¤©ē§‘å·„é›†å›¢å…¬åø'),
(84277, 'https://ror.org/0524asq02', 'fr', 1, 'https://ror.org/0524asq02 HÓpital Rivière-des-Prairies'),
(84278, 'https://ror.org/052590h17', 'en', 1, 'https://ror.org/052590h17 People''s Trust for Endangered Species'),
(84279, 'https://ror.org/052644257', 'en', 1, 'https://ror.org/052644257 Ngātiwai Trust Board'),
(84280, 'https://ror.org/052874946', 'en', 1, 'https://ror.org/052874946 The Turner Scientific Research Institute for Children''s Orthopedics ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Гетский ортопеГический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š“. И'),
(84281, 'https://ror.org/0528bv030', 'en', 1, 'https://ror.org/0528bv030 Western Institute of Technology at Taranaki'),
(84282, 'https://ror.org/0528c5w53', 'en', 1, 'https://ror.org/0528c5w53 People''s Hospital of Yangzhong ę‰¬äø­åø‚äŗŗę°‘åŒ»é™¢'),
(84283, 'https://ror.org/0528ydh88', 'no_lang_code', 1, 'https://ror.org/0528ydh88 Invizyne Technologies (United States)'),
(84284, 'https://ror.org/05298h560', 'en', 1, 'https://ror.org/05298h560 FORTH Institute of Astrophysics Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī‘ĻƒĻ„ĻĪæĻ†Ļ…ĻƒĪ¹ĪŗĪ®Ļ‚'),
(84285, 'https://ror.org/05299tt38', 'no_lang_code', 1, 'https://ror.org/05299tt38 Fera Science (United Kingdom)'),
(84286, 'https://ror.org/052acn261', 'en', 1, 'https://ror.org/052acn261 Center for Excellence in Tibetan Plateau Earth Sciences'),
(84287, 'https://ror.org/052afx753', 'en', 1, 'https://ror.org/052afx753 Benazir Bhutto Hospital ŲØŪ’ Ł†ŲøŪŒŲ± بھٹو ہسپتال'),
(84288, 'https://ror.org/052bscq71', 'en', 1, 'https://ror.org/052bscq71 American Association of Colleges for Teacher Education'),
(84289, 'https://ror.org/052bx8q98', 'en', 1, 'https://ror.org/052bx8q98 Nazarbayev University ŠŠ°Š·Š°Ń€Š±Š°ŠµŠ² Университет ŠŠ°Š·Š°Ń€Š±Š°ŠµŠ² Университеті'),
(84290, 'https://ror.org/052d0h423', 'en', 1, 'https://ror.org/052d0h423 Max Planck Institute for Nuclear Physics Max-Planck-Institut für Kernphysik'),
(84291, 'https://ror.org/052f2eb74', 'en', 1, 'https://ror.org/052f2eb74 Łukasiewicz Research Network - Institute of Industrial Organic Chemistry, Branch Pszczyna'),
(84292, 'https://ror.org/052f3yd19', 'en', 1, 'https://ror.org/052f3yd19 Austrian Cluster for Tissue Regeneration'),
(84293, 'https://ror.org/052h6a339', 'en', 1, 'https://ror.org/052h6a339 Glaucoma Research Society of Canada SociƩtƩ canadienne de recherche sur le glaucome'),
(84294, 'https://ror.org/052h6se21', 'en', 1, 'https://ror.org/052h6se21 Columbia St. Mary''s Hospital Ozaukee'),
(84295, 'https://ror.org/052htmq47', 'no_lang_code', 1, 'https://ror.org/052htmq47 BioNTech (United States)'),
(84296, 'https://ror.org/052kar395', 'en', 1, 'https://ror.org/052kar395 Appalachian Fruit Research Laboratory'),
(84297, 'https://ror.org/052m2bk26', 'en', 1, 'https://ror.org/052m2bk26 Musculoskeletal Tumor Society'),
(84298, 'https://ror.org/052m6j024', 'en', 1, 'https://ror.org/052m6j024 Icelandic Cancer Society KrabbameinsfƩlagiư'),
(84299, 'https://ror.org/052nhsv65', 'en', 1, 'https://ror.org/052nhsv65 Ugra National Park ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк Угра'),
(84300, 'https://ror.org/052rvxk90', 'en', 1, 'https://ror.org/052rvxk90 National Institute for Minamata Disease ē’°å¢ƒēœå›½ē«‹ę°“äæ£ē—…ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(84301, 'https://ror.org/052s0am34', 'it', 1, 'https://ror.org/052s0am34 Istituto Nazionale della Previdenza Sociale'),
(84302, 'https://ror.org/052svzr34', 'en', 1, 'https://ror.org/052svzr34 Sieć Badawcza Łukasiewicz - Instytut Technologii Drewna Łukasiewicz Research Network - Wood Technology Institute'),
(84303, 'https://ror.org/052ty1420', 'no_lang_code', 1, 'https://ror.org/052ty1420 Docbot (United States)'),
(84304, 'https://ror.org/052y05165', 'en', 1, 'https://ror.org/052y05165 Cape Breton University UniversitƩ du cap-breton'),
(84305, 'https://ror.org/052ysct21', 'no_lang_code', 1, 'https://ror.org/052ysct21 CymaBay Therapeutics (United States)'),
(84306, 'https://ror.org/052ywng59', 'en', 1, 'https://ror.org/052ywng59 Mizutani Foundation for Glycoscience å…¬ē›Šč²”å›£ę³•äŗŗę°“č°·ē³–č³Ŗē§‘å­¦ęŒÆčˆˆč²”å›£'),
(84307, 'https://ror.org/052zd4v68', 'no_lang_code', 1, 'https://ror.org/052zd4v68 Arcadia Science'),
(84308, 'https://ror.org/05309tf52', 'en', 1, 'https://ror.org/05309tf52 Niagara University Universidad de NiƔgara UniversitƩ de niagara'),
(84309, 'https://ror.org/05326dh45', 'en', 1, 'https://ror.org/05326dh45 Norfolk Public Library'),
(84310, 'https://ror.org/05328vv93', 'en', 1, 'https://ror.org/05328vv93 Centre for Policy Studies'),
(84311, 'https://ror.org/0535k0q10', 'en', 1, 'https://ror.org/0535k0q10 Deutscher Wasserstoff und Brennstoffzellen Verband German Hydrogen and Fuel-Cell Association'),
(84312, 'https://ror.org/0535mdh73', 'en', 1, 'https://ror.org/0535mdh73 Gyeongju National Museum 국립경주박물꓀'),
(84313, 'https://ror.org/05374b979', 'en', 1, 'https://ror.org/05374b979 Torbay and South Devon NHS Foundation Trust'),
(84314, 'https://ror.org/0538axx89', 'en', 1, 'https://ror.org/0538axx89 London Film School'),
(84315, 'https://ror.org/053a6xa29', 'no_lang_code', 1, 'https://ror.org/053a6xa29 Genomics (United Kingdom)'),
(84316, 'https://ror.org/053ay1f75', 'no_lang_code', 1, 'https://ror.org/053ay1f75 MorphogƩnie Logiciels (France)'),
(84317, 'https://ror.org/053aznw88', 'no_lang_code', 1, 'https://ror.org/053aznw88 FM Global (United States)'),
(84318, 'https://ror.org/053d7x641', 'en', 1, 'https://ror.org/053d7x641 Anhui Xinhua University'),
(84319, 'https://ror.org/053drm788', 'es', 1, 'https://ror.org/053drm788 National University of CaƱete Universidad Nacional de CaƱete'),
(84320, 'https://ror.org/053e8a708', 'en', 1, 'https://ror.org/053e8a708 Showa Pharmaceutical University ę˜­å’Œč–¬ē§‘å¤§å­¦'),
(84321, 'https://ror.org/053ng1p06', 'no_lang_code', 1, 'https://ror.org/053ng1p06 Eastman Chemical Company (United States)'),
(84322, 'https://ror.org/053njym08', 'nl', 1, 'https://ror.org/053njym08 Laurentius Ziekenhuis'),
(84323, 'https://ror.org/053nkmh39', 'en', 1, 'https://ror.org/053nkmh39 Honghu Hospital of Traditional Chinese Medicine ę“Ŗę¹–äø­åŒ»ę–‡åŒ–'),
(84324, 'https://ror.org/053r20n13', 'en', 1, 'https://ror.org/053r20n13 Ragon Institute of MGH, MIT and Harvard'),
(84325, 'https://ror.org/053rcsq61', 'en', 1, 'https://ror.org/053rcsq61 Academy of Scientific and Innovative Research'),
(84326, 'https://ror.org/053rz5s61', 'no_lang_code', 1, 'https://ror.org/053rz5s61 Bexon Clinical Consulting (United States)'),
(84327, 'https://ror.org/053s3ay82', 'no_lang_code', 1, 'https://ror.org/053s3ay82 Febus Optics (France)'),
(84328, 'https://ror.org/053vc2366', 'en', 1, 'https://ror.org/053vc2366 Veterans Medical Research Foundation of San Diego'),
(84329, 'https://ror.org/053wt0478', 'en', 1, 'https://ror.org/053wt0478 HƓpital de Lachine Lachine Hospital'),
(84330, 'https://ror.org/053yx4c68', 'en', 1, 'https://ror.org/053yx4c68 Department of Industrial Technology'),
(84331, 'https://ror.org/053z9p797', 'en', 1, 'https://ror.org/053z9p797 Tri-Institutional Therapeutics Discovery Institute'),
(84332, 'https://ror.org/0543h9a62', 'en', 1, 'https://ror.org/0543h9a62 KunsthĆøgskolen i Oslo Oslo National Academy of the Arts'),
(84333, 'https://ror.org/0543mcr22', 'no_lang_code', 1, 'https://ror.org/0543mcr22 Showa University Fujigaoka Hospital ę˜­å’Œå¤§å­¦č—¤ćŒäø˜ē—…é™¢'),
(84334, 'https://ror.org/0544srg78', 'es', 1, 'https://ror.org/0544srg78 Fundación Para La Investigación Y Gestión En Servicios de Salud'),
(84335, 'https://ror.org/0544yj280', 'es', 1, 'https://ror.org/0544yj280 Hospital Universitario Nacional de Colombia'),
(84336, 'https://ror.org/0544za304', 'no_lang_code', 1, 'https://ror.org/0544za304 Koito Manufacturing (Japan) ę Ŗå¼ä¼šē¤¾å°ē³øč£½ä½œę‰€'),
(84337, 'https://ror.org/05463eb69', 'en', 1, 'https://ror.org/05463eb69 Hunan Railway Professional Technology College ę¹–å—é“é“čŒäøšęŠ€ęœÆå­¦é™¢'),
(84338, 'https://ror.org/054b5mv70', 'no_lang_code', 1, 'https://ror.org/054b5mv70 Cycle (Germany)'),
(84339, 'https://ror.org/054bsq212', 'en', 1, 'https://ror.org/054bsq212 Institute of Geological Sciences Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологічних наук ŠŠŠ України'),
(84340, 'https://ror.org/054bx8w47', 'en', 1, 'https://ror.org/054bx8w47 Baylor Jack and Jane Hamilton Heart and Vascular Hospital'),
(84341, 'https://ror.org/054fywr36', 'en', 1, 'https://ror.org/054fywr36 Marine Ecology Research Institute å…¬ē›Šč²”å›£ę³•äŗŗęµ·ę“‹ē”Ÿē‰©ē’°å¢ƒē ”ē©¶ę‰€'),
(84342, 'https://ror.org/054gg1x85', 'en', 1, 'https://ror.org/054gg1x85 Sha''ar Menashe Mental Health Center ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש- בית חולים שער מנשה'),
(84343, 'https://ror.org/054gh2b75', 'en', 1, 'https://ror.org/054gh2b75 Chonnam National University Hwasun Hospital ķ™”ģˆœģ „ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(84344, 'https://ror.org/054hg7j81', 'en', 1, 'https://ror.org/054hg7j81 Federal State Budgetary Institution "Center for Expertise and Quality Control of Medical Care" Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ «Центр ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ Šø ŠŗŠ¾Š½Ń‚Ń€Š¾Š»Ń качества меГицинской помощи» ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(84345, 'https://ror.org/054hq4w78', 'no_lang_code', 1, 'https://ror.org/054hq4w78 Fugro (Netherlands)'),
(84346, 'https://ror.org/054n63512', 'en', 1, 'https://ror.org/054n63512 Kato Memorial Bioscience Foundation å…¬ē›Šč²”å›£ę³•äŗŗåŠ č—¤čØ˜åæµćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ęŒÆčˆˆč²”å›£'),
(84347, 'https://ror.org/054p2te31', 'no_lang_code', 1, 'https://ror.org/054p2te31 BDO Unicon (Russia)'),
(84348, 'https://ror.org/054pxse21', 'fr', 1, 'https://ror.org/054pxse21 Conservatoire de Musique et d’art Dramatique du QuĆ©bec'),
(84349, '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'),
(84350, 'https://ror.org/054rvnp37', 'en', 1, 'https://ror.org/054rvnp37 Millenium Nucleus for Planet Formation Núcleo Milenio de Formación Planetaria'),
(84351, 'https://ror.org/054vdfx15', 'no_lang_code', 1, 'https://ror.org/054vdfx15 IDEXX Laboratories (Germany)'),
(84352, 'https://ror.org/054wa3824', 'no_lang_code', 1, 'https://ror.org/054wa3824 SATO (Japan) ć‚µćƒˆćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(84353, 'https://ror.org/05507e858', 'id', 1, 'https://ror.org/05507e858 Universitas Bondowoso'),
(84354, 'https://ror.org/0550k1y72', 'en', 1, 'https://ror.org/0550k1y72 Research4Life'),
(84355, 'https://ror.org/05510vn56', 'en', 1, 'https://ror.org/05510vn56 Federico Santa Marƭa Technical University Universidad TƩcnica Federico Santa Marƭa'),
(84356, 'https://ror.org/0551a0y31', 'en', 1, 'https://ror.org/0551a0y31 Shanghai Center for Brain Science and Brain-Inspired Technology äøŠęµ·č„‘ē§‘å­¦äøŽē±»č„‘ē ”ē©¶äø­åæƒ'),
(84357, 'https://ror.org/0553k7b06', 'en', 1, 'https://ror.org/0553k7b06 National Registry of Exonerations'),
(84358, 'https://ror.org/0555ajd25', 'en', 1, 'https://ror.org/0555ajd25 Kyiv City Clinical Oncology Center'),
(84359, 'https://ror.org/05564wx43', 'nl', 1, 'https://ror.org/05564wx43 Bravis Ziekenhuis'),
(84360, 'https://ror.org/055923009', 'no_lang_code', 1, 'https://ror.org/055923009 Celldex Therapeutics (United States)'),
(84361, 'https://ror.org/055a54548', 'en', 1, 'https://ror.org/055a54548 Beaufort Lagoon Ecosystems Long Term Ecological Research Network'),
(84362, 'https://ror.org/055avk103', 'en', 1, 'https://ror.org/055avk103 Harvard Global Health Institute'),
(84363, 'https://ror.org/055bexb09', 'fr', 1, 'https://ror.org/055bexb09 Association FranƧaise du Syndrome d''Ondine'),
(84364, 'https://ror.org/055bk6w95', 'no_lang_code', 1, 'https://ror.org/055bk6w95 BuiltWith'),
(84365, 'https://ror.org/055f9sm34', 'no_lang_code', 1, 'https://ror.org/055f9sm34 Geistlich Pharma (Switzerland)'),
(84366, 'https://ror.org/055ja0v85', 'en', 1, 'https://ror.org/055ja0v85 Wheaton College - Massachusetts'),
(84367, 'https://ror.org/055jd5n10', 'en', 1, 'https://ror.org/055jd5n10 Wildlife Science Center'),
(84368, 'https://ror.org/055kgg913', 'no_lang_code', 1, 'https://ror.org/055kgg913 ConMed (United States)'),
(84369, 'https://ror.org/055mpn097', 'en', 1, 'https://ror.org/055mpn097 Sanno Medical Center'),
(84370, 'https://ror.org/055qjgz33', 'en', 1, 'https://ror.org/055qjgz33 Statistics New Zealand Tatauranga Aotearoa'),
(84371, 'https://ror.org/055rntz96', 'no_lang_code', 1, 'https://ror.org/055rntz96 Kologrivsky Nature Reserve ŠšŠ¾Š»Š¾Š³Ń€ŠøŠ²ŃŠŗŠøŠ¹ лес заповеГник'),
(84372, 'https://ror.org/055s5r020', 'no_lang_code', 1, 'https://ror.org/055s5r020 PCL Health (United Kingdom)'),
(84373, 'https://ror.org/055s7a943', 'en', 1, 'https://ror.org/055s7a943 ERN GUARD-Heart'),
(84374, 'https://ror.org/055tm7f07', 'en', 1, 'https://ror.org/055tm7f07 Ministry of Economy, Trade and Industry ēµŒęøˆē”£ę„­ēœ'),
(84375, 'https://ror.org/055vvvt78', 'en', 1, 'https://ror.org/055vvvt78 Crop Protection Network'),
(84376, 'https://ror.org/055x5vq73', 'pt', 1, 'https://ror.org/055x5vq73 Fundação Hospitalar de Hematologia e Hemoterapia do Amazonas'),
(84377, 'https://ror.org/055x7np37', 'pl', 1, 'https://ror.org/055x7np37 Polskie Towarzystwo Gastroenterologii'),
(84378, 'https://ror.org/055xn9d15', 'en', 1, 'https://ror.org/055xn9d15 Hawaii Medical Service Association'),
(84379, 'https://ror.org/055ybaf35', 'en', 1, 'https://ror.org/055ybaf35 Urban Emissions Info'),
(84380, 'https://ror.org/055zn5p92', 'es', 1, 'https://ror.org/055zn5p92 Parc Sanitari Pere Virgili Parque Sanitario Pere Virgili'),
(84381, 'https://ror.org/055zxs822', 'no_lang_code', 1, 'https://ror.org/055zxs822 Nference (United States)'),
(84382, 'https://ror.org/055zztt33', 'en', 1, 'https://ror.org/055zztt33 Arkansas Department of Agriculture'),
(84383, 'https://ror.org/0560hrn40', 'en', 1, 'https://ror.org/0560hrn40 Poplar Creek Public Library District'),
(84384, 'https://ror.org/0561ahg72', 'en', 1, 'https://ror.org/0561ahg72 Higher Institute of Engineering and Technology - King Marriott لمعاهد Ų§Ł„Ų¹Ł„ŁŠŲ§ ŲØŁƒŁŠŁ†Ų¬ Ł…Ų±ŁŠŁˆŲ·'),
(84385, 'https://ror.org/05621qy93', 'en', 1, 'https://ror.org/05621qy93 Worldwide Veterinary Service'),
(84386, 'https://ror.org/05626m728', 'en', 1, 'https://ror.org/05626m728 John H. Stroger, Jr. Hospital of Cook County'),
(84387, 'https://ror.org/0562yk913', 'no_lang_code', 1, 'https://ror.org/0562yk913 Verastem (United States)'),
(84388, 'https://ror.org/0563dhn67', 'en', 1, 'https://ror.org/0563dhn67 Harasanshin Hospital åŒ»ē™‚ę³•äŗŗåŽŸäø‰äæ”ē—…é™¢'),
(84389, 'https://ror.org/0567t7073', 'en', 1, 'https://ror.org/0567t7073 Fox Chase Cancer Center'),
(84390, 'https://ror.org/0568kxy29', 'pt', 1, 'https://ror.org/0568kxy29 UniBrasil Centro UniversitƔrio'),
(84391, 'https://ror.org/0569s5x60', 'en', 1, 'https://ror.org/0569s5x60 China Women''s University äø­åŽå„³å­å­¦é™¢'),
(84392, 'https://ror.org/056ajev02', 'en', 1, 'https://ror.org/056ajev02 Birmingham Women’s and Children’s NHS Foundation Trust'),
(84393, 'https://ror.org/056ct4b16', 'en', 1, 'https://ror.org/056ct4b16 Centre for Excellence in Mining Innovation'),
(84394, 'https://ror.org/056cwrs58', 'en', 1, 'https://ror.org/056cwrs58 Japan Link Center ć‚øćƒ£ćƒ‘ćƒ³ćƒŖćƒ³ć‚Æć‚»ćƒ³ć‚æ'),
(84395, 'https://ror.org/056d3gw71', 'en', 1, 'https://ror.org/056d3gw71 Dominican University of California'),
(84396, 'https://ror.org/056e61d57', 'en', 1, 'https://ror.org/056e61d57 National Peanut Research Laboratory'),
(84397, 'https://ror.org/056ef9489', 'en', 1, 'https://ror.org/056ef9489 Qilu Hospital of Shandong University'),
(84398, 'https://ror.org/056gkt063', 'en', 1, 'https://ror.org/056gkt063 Canadian Philosophical Association L''Association Canadienne de Philosophie'),
(84399, 'https://ror.org/056h76p35', 'no_lang_code', 1, 'https://ror.org/056h76p35 Comsol (United Kingdom)'),
(84400, 'https://ror.org/056hsfz11', 'en', 1, 'https://ror.org/056hsfz11 Mortimer Market Centre'),
(84401, 'https://ror.org/056j50v04', 'en', 1, 'https://ror.org/056j50v04 GO FAIR Foundation Stichting GO FAIR'),
(84402, 'https://ror.org/056jgxp12', 'no_lang_code', 1, 'https://ror.org/056jgxp12 Helix (United States)'),
(84403, 'https://ror.org/056jjra10', 'en', 1, 'https://ror.org/056jjra10 HƓpital gƩnƩral juif Jewish General Hospital'),
(84404, 'https://ror.org/056ksgr44', 'no_lang_code', 1, 'https://ror.org/056ksgr44 PTT Public Company Limited (Thailand) ปตท'),
(84405, 'https://ror.org/056mxwx29', 'fr', 1, 'https://ror.org/056mxwx29 CATI'),
(84406, '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'),
(84407, 'https://ror.org/056qhkx89', 'en', 1, 'https://ror.org/056qhkx89 Lake Macquarie Private Hospital'),
(84408, 'https://ror.org/056skxz71', 'en', 1, 'https://ror.org/056skxz71 American Association for Respiratory Care'),
(84409, 'https://ror.org/056sv4492', 'no_lang_code', 1, 'https://ror.org/056sv4492 Volcanic Basin Petroleum Research (Norway)'),
(84410, 'https://ror.org/056t0kd46', 'no_lang_code', 1, 'https://ror.org/056t0kd46 Sandfire (Australia)'),
(84411, 'https://ror.org/056tqzr82', 'en', 1, 'https://ror.org/056tqzr82 Kokura Memorial Hospital äø€čˆ¬č²”å›£ę³•äŗŗå¹³ęˆē“«å·ä¼šå°å€‰čØ˜åæµē—…é™¢'),
(84412, 'https://ror.org/056vyez31', 'en', 1, 'https://ror.org/056vyez31 Naval University of Engineering 中国人民解放军海军巄程大学'),
(84413, 'https://ror.org/056whs452', 'en', 1, 'https://ror.org/056whs452 Institut für Pharmaökonomische Forschung Institute for Pharmaeconomic Research'),
(84414, 'https://ror.org/056yxsn08', 'en', 1, 'https://ror.org/056yxsn08 International Pole and Line Foundation'),
(84415, 'https://ror.org/056zhna95', 'en', 1, 'https://ror.org/056zhna95 ClimateWorks Foundation'),
(84416, 'https://ror.org/056zy9723', 'en', 1, 'https://ror.org/056zy9723 DonorConnect'),
(84417, 'https://ror.org/0573mff95', 'en', 1, 'https://ror.org/0573mff95 American Automatic Control Council'),
(84418, 'https://ror.org/0573xqd09', 'no_lang_code', 1, 'https://ror.org/0573xqd09 Amedes Genetics (Germany)'),
(84419, 'https://ror.org/0574eex11', 'en', 1, 'https://ror.org/0574eex11 Temasek Life Sciences Laboratory'),
(84420, 'https://ror.org/05755j256', 'en', 1, 'https://ror.org/05755j256 Henry Moore Foundation'),
(84421, 'https://ror.org/0577e4z60', 'en', 1, 'https://ror.org/0577e4z60 Grand Council of the Crees'),
(84422, 'https://ror.org/0578f1k82', 'en', 1, 'https://ror.org/0578f1k82 Henan Institute of Science and Technology'),
(84423, 'https://ror.org/0579jh693', 'en', 1, 'https://ror.org/0579jh693 Skin Research Center'),
(84424, 'https://ror.org/057bx9y85', 'en', 1, 'https://ror.org/057bx9y85 Tsukuba University of Technology ē­‘ę³¢ęŠ€č”“å¤§å­¦'),
(84425, 'https://ror.org/057c2xb31', 'no_lang_code', 1, 'https://ror.org/057c2xb31 Shanghai Model Organisms (China) äøŠęµ·å—ę–¹ęØ”å¼ē”Ÿē‰©ē ”ē©¶äø­åæƒ'),
(84426, 'https://ror.org/057fah276', 'en', 1, 'https://ror.org/057fah276 National Eye Centre'),
(84427, 'https://ror.org/057g3at21', 'fr', 1, 'https://ror.org/057g3at21 Fondation VallƩe'),
(84428, 'https://ror.org/057gst528', 'no_lang_code', 1, 'https://ror.org/057gst528 Gen-info'),
(84429, 'https://ror.org/057k8nt63', 'fr', 1, 'https://ror.org/057k8nt63 Centre Culturel du Vanuatu, Vanuatu Cultural Centre Vanuatu Kaljoral Senta'),
(84430, 'https://ror.org/057pha386', 'en', 1, 'https://ror.org/057pha386 Kurume Shin-Ai Women''s College ä¹…ē•™ē±³äæ”ę„›ēŸ­ęœŸå¤§å­¦'),
(84431, 'https://ror.org/057zvdf83', 'en', 1, 'https://ror.org/057zvdf83 Safe Work Australia'),
(84432, 'https://ror.org/0580yp869', 'fr', 1, 'https://ror.org/0580yp869 Groupe de Recherche sur le Psoriasis'),
(84433, 'https://ror.org/0582y1e41', 'nl', 1, 'https://ror.org/0582y1e41 Groene Hart Ziekenhuis'),
(84434, 'https://ror.org/05836pk12', 'en', 1, 'https://ror.org/05836pk12 Assam Agricultural University असम ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ অসম ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(84435, 'https://ror.org/0585v6057', 'en', 1, 'https://ror.org/0585v6057 Erasmus MC Transplant Institute Erasmus MC Transplantatie Instituut'),
(84436, 'https://ror.org/0585yvd38', 'en', 1, 'https://ror.org/0585yvd38 Geisinger Neuroscience Institute'),
(84437, 'https://ror.org/0588n4k65', 'en', 1, 'https://ror.org/0588n4k65 Invest in Open Infrastructure'),
(84438, 'https://ror.org/0589ntt23', 'en', 1, 'https://ror.org/0589ntt23 Icelandic Fisheries Laboratories'),
(84439, 'https://ror.org/058ay3j75', 'no_lang_code', 1, 'https://ror.org/058ay3j75 BML Munjal University'),
(84440, 'https://ror.org/058ccs847', 'es', 1, 'https://ror.org/058ccs847 Observatorio Nacional de las Telecomunicaciones y de la Sociedad de la Información'),
(84441, 'https://ror.org/058e99a37', 'no_lang_code', 1, 'https://ror.org/058e99a37 PIVOT'),
(84442, 'https://ror.org/058eg8775', 'no_lang_code', 1, 'https://ror.org/058eg8775 Statistical Research (United States)'),
(84443, 'https://ror.org/058emmq70', 'en', 1, 'https://ror.org/058emmq70 Kenya Bureau of Standards'),
(84444, 'https://ror.org/058fcc996', 'fr', 1, 'https://ror.org/058fcc996 Agence Wallonne du Patrimoine Walloon Heritage Agency'),
(84445, 'https://ror.org/058fgzk19', 'no_lang_code', 1, 'https://ror.org/058fgzk19 Centrica (United Kingdom)'),
(84446, 'https://ror.org/058h0n244', 'en', 1, 'https://ror.org/058h0n244 Shenzhen Stock Exchange'),
(84447, 'https://ror.org/058kzes98', 'en', 1, 'https://ror.org/058kzes98 Universiteitsmuseum Utrecht University Museum Utrecht'),
(84448, 'https://ror.org/058nbms57', 'en', 1, 'https://ror.org/058nbms57 Florida Department of Agriculture and Consumer Services'),
(84449, 'https://ror.org/058ngfn30', 'en', 1, 'https://ror.org/058ngfn30 Research Institute of Ukrainian Studies ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠŗŃ€Š°Ń—Š½Š¾Š·Š½Š°Š²ŃŃ‚Š²Š° ŠœŠžŠ України'),
(84450, 'https://ror.org/058s63h23', 'en', 1, 'https://ror.org/058s63h23 National Rehabilitation Center for Persons with Disabilities åŽšē”ŸåŠ“åƒēœå›½ē«‹éšœå®³č€…ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(84451, 'https://ror.org/058tz9s83', 'en', 1, 'https://ror.org/058tz9s83 Central Military Commission äø­å¤®å†›äŗ‹å§”å‘˜ä¼š'),
(84452, 'https://ror.org/058wvcm81', 'en', 1, 'https://ror.org/058wvcm81 Bhagwan Mahaveer Jain Hospital'),
(84453, 'https://ror.org/058xkam71', 'en', 1, 'https://ror.org/058xkam71 FHU Neurovasc'),
(84454, 'https://ror.org/05914mm11', 'en', 1, 'https://ror.org/05914mm11 Al-Ihya Islamic University of Kuningan Universitas Islam Al-Ihya Kuningan'),
(84455, 'https://ror.org/0596rmt30', 'en', 1, 'https://ror.org/0596rmt30 Military Technical Institute Vojnotehnički Institut Beograd'),
(84456, 'https://ror.org/0596zec96', 'en', 1, 'https://ror.org/0596zec96 Geochemical Society'),
(84457, 'https://ror.org/05976ta47', 'en', 1, 'https://ror.org/05976ta47 Jornada Basin Long Term Ecological Research'),
(84458, 'https://ror.org/05983b311', 'en', 1, 'https://ror.org/05983b311 National Institute of Technology, Oita College å¤§åˆ†ēœŒē«‹å¤§åˆ†é«˜ē­‰ęŠ€č”“å°‚é–€ę ”'),
(84459, 'https://ror.org/0599mab02', 'en', 1, 'https://ror.org/0599mab02 St Catherine''s Health Centre'),
(84460, 'https://ror.org/059cpzx98', 'en', 1, 'https://ror.org/059cpzx98 Harvard Forest Long Term Ecological Research'),
(84461, 'https://ror.org/059d3zc80', 'en', 1, 'https://ror.org/059d3zc80 Asthma and Allergy Foundation of America'),
(84462, 'https://ror.org/059d6yn51', 'en', 1, 'https://ror.org/059d6yn51 Toyo University ę±ę“‹å¤§å­¦'),
(84463, 'https://ror.org/059dpw236', 'en', 1, 'https://ror.org/059dpw236 Iaso Children’s Hospital ΙΑΣΩ ΠαίΓων'),
(84464, 'https://ror.org/059dtxg26', 'no_lang_code', 1, 'https://ror.org/059dtxg26 Simplex Manufacturing (United States)'),
(84465, 'https://ror.org/059dyrr28', 'en', 1, 'https://ror.org/059dyrr28 Leibniz Institute of European History Leibniz-Institut für Europäische Geschichte'),
(84466, 'https://ror.org/059f0qa90', 'en', 1, 'https://ror.org/059f0qa90 Japan Fine Ceramics Center äø€čˆ¬č²”å›£ę³•äŗŗćƒ•ć‚”ć‚¤ćƒ³ć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(84467, 'https://ror.org/059ffxx34', 'en', 1, 'https://ror.org/059ffxx34 TissuPath'),
(84468, '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 Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економіки ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń та сталого Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України»'),
(84469, 'https://ror.org/059g90c15', 'no_lang_code', 1, 'https://ror.org/059g90c15 Pfizer (Canada)'),
(84470, 'https://ror.org/059gb5g72', 'en', 1, 'https://ror.org/059gb5g72 Chilean Air Force Fuerza AƩrea de Chile'),
(84471, 'https://ror.org/059j2cd05', 'en', 1, 'https://ror.org/059j2cd05 Tenwek Hospital'),
(84472, 'https://ror.org/059m1v232', 'de', 1, 'https://ror.org/059m1v232 Forschungsverbund Berlin'),
(84473, 'https://ror.org/059mp4e63', 'en', 1, 'https://ror.org/059mp4e63 Donbas State Pedagogical University Š”Š¾Š½Š±Š°ŃŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(84474, 'https://ror.org/059mq0909', 'no_lang_code', 1, 'https://ror.org/059mq0909 Siemens (Germany)'),
(84475, 'https://ror.org/059r2qd49', 'no_lang_code', 1, 'https://ror.org/059r2qd49 Genecast (China) č‡»å’Œē§‘ęŠ€'),
(84476, 'https://ror.org/059ryjv25', 'en', 1, 'https://ror.org/059ryjv25 Chung Shan Medical University'),
(84477, 'https://ror.org/059tsb338', 'en', 1, 'https://ror.org/059tsb338 Muscular Dystrophy Foundation Muskelsvindfonden'),
(84478, 'https://ror.org/059w1vn19', 'en', 1, 'https://ror.org/059w1vn19 Little Sosva Nature Reserve ŠœŠ°Š»Š°Ń Досьва заповеГник'),
(84479, 'https://ror.org/059xdv132', 'no_lang_code', 1, 'https://ror.org/059xdv132 Celavie Biosciences (United States)'),
(84480, 'https://ror.org/059z11218', 'en', 1, 'https://ror.org/059z11218 Kawasaki Medical School å·å“ŽåŒ»ē§‘å¤§å­¦'),
(84481, 'https://ror.org/059zxg644', 'en', 1, 'https://ror.org/059zxg644 The Queen''s Medical Research Institute'),
(84482, 'https://ror.org/05a2hgt53', 'no_lang_code', 1, 'https://ror.org/05a2hgt53 Materia Nova'),
(84483, 'https://ror.org/05a70k539', 'en', 1, 'https://ror.org/05a70k539 Institute of Technology and Business VysokĆ” Å”kola technickĆ” a ekonomickĆ” Техническо-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ в г. Чешские Š‘ŃƒŠ“ŠµŠ¹Š¾Š²ŠøŃ†Šµ'),
(84484, 'https://ror.org/05a87zb20', 'it', 1, 'https://ror.org/05a87zb20 Azienda Usl Toscana Centro'),
(84485, 'https://ror.org/05aj5a120', 'en', 1, 'https://ror.org/05aj5a120 Weston A. Price Foundation'),
(84486, 'https://ror.org/05amnwk22', 'en', 1, 'https://ror.org/05amnwk22 Hubei Engineering University ę¹–åŒ—å·„ēØ‹å¤§å­¦'),
(84487, 'https://ror.org/05ap1vt50', 'en', 1, 'https://ror.org/05ap1vt50 VSL Dutch Metrology Institute VSL Nationaal Metrologisch Instituut'),
(84488, 'https://ror.org/05aqbwk58', 'en', 1, 'https://ror.org/05aqbwk58 Nepal Agricultural Research Council ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø परिषद'),
(84489, 'https://ror.org/05aqbyb84', 'en', 1, 'https://ror.org/05aqbyb84 State Agricultural Academy of Velikie Luki Š’ŠµŠ»ŠøŠŗŠ¾Š»ŃƒŠŗŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(84490, 'https://ror.org/05arv2073', 'no_lang_code', 1, 'https://ror.org/05arv2073 Bayer (Japan) ćƒć‚¤ć‚Øćƒ«č–¬å“ę Ŗå¼ä¼šē¤¾'),
(84491, 'https://ror.org/05asf4e91', 'fr', 1, 'https://ror.org/05asf4e91 L''Alliance Boviteq'),
(84492, 'https://ror.org/05asga947', 'en', 1, 'https://ror.org/05asga947 Health and Human Development (2HD) Research Network'),
(84493, 'https://ror.org/05av30w60', 'no_lang_code', 1, 'https://ror.org/05av30w60 Fuji Oil (Japan) äøäŗŒč£½ę²¹ę Ŗå¼ä¼šē¤¾'),
(84494, 'https://ror.org/05av9mn02', 'en', 1, 'https://ror.org/05av9mn02 Plymouth Marine Laboratory'),
(84495, 'https://ror.org/05aw7p057', 'en', 1, 'https://ror.org/05aw7p057 Geological Survey of Slovenia GeoloŔki zavod Slovenije'),
(84496, 'https://ror.org/05b225m47', 'en', 1, 'https://ror.org/05b225m47 Kazan State University of Architecture and Engineering Казанский Š³Š¾ŃŃƒŠ“арственный Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-инженерный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(84497, 'https://ror.org/05b2ww089', 'fr', 1, 'https://ror.org/05b2ww089 MusƩes de la Ville de Strasbourg'),
(84498, 'https://ror.org/05b39cf56', 'en', 1, 'https://ror.org/05b39cf56 Africa Academy for Public Health'),
(84499, 'https://ror.org/05b4m7j60', 'no_lang_code', 1, 'https://ror.org/05b4m7j60 Crown Estate (United Kingdom)'),
(84500, 'https://ror.org/05b4pnz02', 'no_lang_code', 1, 'https://ror.org/05b4pnz02 Ohana Biosciences (United States)'),
(84501, 'https://ror.org/05b5rpz24', 'no_lang_code', 1, 'https://ror.org/05b5rpz24 PRT Growing Services (Canada)'),
(84502, 'https://ror.org/05b5x0e19', 'nl', 1, 'https://ror.org/05b5x0e19 Ziekenhuis Bernhoven'),
(84503, 'https://ror.org/05b6qj426', 'en', 1, 'https://ror.org/05b6qj426 Chemicals Evaluation and Research Institute äø€čˆ¬č²”å›£ę³•äŗŗåŒ–å­¦ē‰©č³Ŗč©•ä¾”ē ”ē©¶ę©Ÿę§‹'),
(84504, 'https://ror.org/05b88n930', 'no_lang_code', 1, 'https://ror.org/05b88n930 CISI IngƩnierie (France)'),
(84505, 'https://ror.org/05baghp60', 'en', 1, 'https://ror.org/05baghp60 CPM Academy of Business ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ бизнеса'),
(84506, 'https://ror.org/05bajqw15', 'no_lang_code', 1, 'https://ror.org/05bajqw15 Olnica (France)'),
(84507, 'https://ror.org/05batzg24', 'en', 1, 'https://ror.org/05batzg24 Doaba College'),
(84508, 'https://ror.org/05bc5bx80', 'en', 1, 'https://ror.org/05bc5bx80 Vel Tech Rangarajan Dr. Sagunthala R&D Institute of Science and Technology'),
(84509, 'https://ror.org/05beaae04', 'en', 1, 'https://ror.org/05beaae04 European Crohn''s and Colitis Organisation'),
(84510, 'https://ror.org/05bfg0961', 'en', 1, 'https://ror.org/05bfg0961 NIHR CRUK Experimental Cancer Medicine Centre'),
(84511, 'https://ror.org/05bg2wc74', 'en', 1, 'https://ror.org/05bg2wc74 Canola Council of Canada'),
(84512, 'https://ror.org/05bgydj64', 'no_lang_code', 1, 'https://ror.org/05bgydj64 Paveprime'),
(84513, 'https://ror.org/05bhesh09', 'no_lang_code', 1, 'https://ror.org/05bhesh09 Masimo (United States)'),
(84514, 'https://ror.org/05bkpyp72', 'en', 1, 'https://ror.org/05bkpyp72 Norjan avaruuskeskus Norwegian Space Agency'),
(84515, 'https://ror.org/05bm1gr16', 'en', 1, 'https://ror.org/05bm1gr16 VIB - International Plant Biotechnology Outreach'),
(84516, 'https://ror.org/05bpd1c44', 'es', 1, 'https://ror.org/05bpd1c44 Universidad de AysƩn'),
(84517, 'https://ror.org/05bpk4v97', 'en', 1, 'https://ror.org/05bpk4v97 Invasive Plant Research Laboratory'),
(84518, 'https://ror.org/05bqfq123', 'no_lang_code', 1, 'https://ror.org/05bqfq123 Wakamoto Pharmaceutical (Japan) ć‚ć‹ć‚‚ćØč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(84519, 'https://ror.org/05btws897', 'en', 1, 'https://ror.org/05btws897 European College of Neuropsychopharmacology'),
(84520, 'https://ror.org/05bvxn785', 'en', 1, 'https://ror.org/05bvxn785 Federal Agency for Scientific Organizations Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ агентство Š½Š°ŃƒŃ‡Š½Ń‹Ń… организаций'),
(84521, 'https://ror.org/05bwp9c82', 'en', 1, 'https://ror.org/05bwp9c82 South Dakota Science and Technology Authority'),
(84522, 'https://ror.org/05bx21r34', 'en', 1, 'https://ror.org/05bx21r34 Frankfurt Cancer Institute'),
(84523, 'https://ror.org/05bxjx840', 'en', 1, 'https://ror.org/05bxjx840 Baylor Genetics'),
(84524, 'https://ror.org/05bz4s011', 'en', 1, 'https://ror.org/05bz4s011 Musashino Red Cross Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ę­¦č”µé‡Žčµ¤åå­—ē—…é™¢'),
(84525, 'https://ror.org/05c3e8627', 'en', 1, 'https://ror.org/05c3e8627 Togolese Ministry of Health'),
(84526, 'https://ror.org/05c4cm338', 'no_lang_code', 1, 'https://ror.org/05c4cm338 NetApp (United States)'),
(84527, 'https://ror.org/05c4vv049', 'en', 1, 'https://ror.org/05c4vv049 British Society of Soil Science'),
(84528, 'https://ror.org/05c691y47', 'no_lang_code', 1, 'https://ror.org/05c691y47 BTG International (United Kingdom)'),
(84529, 'https://ror.org/05c6y9623', 'en', 1, 'https://ror.org/05c6y9623 Virginia Sea Grant'),
(84530, 'https://ror.org/05cam4g78', 'en', 1, 'https://ror.org/05cam4g78 Institut International d''Agriculture Tropicale International Institute of Tropical Agriculture'),
(84531, 'https://ror.org/05cbf4214', 'no_lang_code', 1, 'https://ror.org/05cbf4214 Nippon Kayaku (Japan) ę—„ęœ¬åŒ–č–¬ę Ŗå¼ä¼šē¤¾'),
(84532, 'https://ror.org/05cc1v231', 'en', 1, 'https://ror.org/05cc1v231 Daegu-Gyeongbuk Advanced Medical Industry Promotion Foundation Daegu-Gyeongbuk Medical Innovation Foundation'),
(84533, 'https://ror.org/05cdzx277', 'en', 1, 'https://ror.org/05cdzx277 State Scientific Institution "Institute of Education Content Modernization" Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ моГернізації Š·Š¼Ń–ŃŃ‚Ńƒ освіти'),
(84534, 'https://ror.org/05cf5b117', 'no_lang_code', 1, 'https://ror.org/05cf5b117 Ansys (United States)'),
(84535, 'https://ror.org/05ck1h211', 'en', 1, 'https://ror.org/05ck1h211 Roosevelt Institute for American Studies'),
(84536, 'https://ror.org/05cmp5q80', 'fr', 1, 'https://ror.org/05cmp5q80 Centre Hospitalier Universitaire de Saint-Pierre'),
(84537, 'https://ror.org/05cmvgr54', 'en', 1, 'https://ror.org/05cmvgr54 Burman University'),
(84538, 'https://ror.org/05cspff93', 'en', 1, 'https://ror.org/05cspff93 U.S. Vegetable Laboratory'),
(84539, 'https://ror.org/05ct65x68', 'en', 1, 'https://ror.org/05ct65x68 NextFlex'),
(84540, 'https://ror.org/05ctr9t75', 'en', 1, 'https://ror.org/05ctr9t75 Vancouver Spine Surgery Institute'),
(84541, 'https://ror.org/05cw8ax51', 'no_lang_code', 1, 'https://ror.org/05cw8ax51 Daito Bunka University å¤§ę±ę–‡åŒ–å¤§å­¦'),
(84542, 'https://ror.org/05cww1c54', 'no_lang_code', 1, 'https://ror.org/05cww1c54 GIRD Systems (United States)'),
(84543, 'https://ror.org/05cxwhm03', 'en', 1, 'https://ror.org/05cxwhm03 University Hospitals of Morecambe Bay NHS Foundation Trust'),
(84544, 'https://ror.org/05cxz0w58', 'no_lang_code', 1, 'https://ror.org/05cxz0w58 Tieto (Finland)'),
(84545, 'https://ror.org/05cynqq24', 'de', 1, 'https://ror.org/05cynqq24 Deutsche Gesellschaft für Erziehungswissenschaft'),
(84546, 'https://ror.org/05czq7m38', 'en', 1, 'https://ror.org/05czq7m38 Caspian University Каспий Университеті'),
(84547, 'https://ror.org/05d1z6q04', 'en', 1, 'https://ror.org/05d1z6q04 Middlebury Institute of International Studies at Monterey'),
(84548, 'https://ror.org/05d21fg98', 'en', 1, 'https://ror.org/05d21fg98 American Medical Society for Sports Medicine'),
(84549, 'https://ror.org/05d4dac15', 'en', 1, 'https://ror.org/05d4dac15 Institute of Applied Biochemistry å…¬ē›Šč²”å›£ę³•äŗŗåæœē”Øē”ŸåŒ–å­¦ē ”ē©¶ę‰€'),
(84550, 'https://ror.org/05d7whc82', 'nl', 1, 'https://ror.org/05d7whc82 Spaarne Gasthuis'),
(84551, 'https://ror.org/05d84mm26', 'no_lang_code', 1, 'https://ror.org/05d84mm26 Neurocrine Biosciences (United States)'),
(84552, 'https://ror.org/05d8bee68', 'en', 1, 'https://ror.org/05d8bee68 Global Health Literacy Academy'),
(84553, 'https://ror.org/05d9bwx91', 'no_lang_code', 1, 'https://ror.org/05d9bwx91 Rhodium Group (United States)'),
(84554, 'https://ror.org/05dagmh42', 'no_lang_code', 1, 'https://ror.org/05dagmh42 Antares Pharma (United States)'),
(84555, 'https://ror.org/05db1vq90', 'en', 1, 'https://ror.org/05db1vq90 RIKEN BNL Research Center'),
(84556, 'https://ror.org/05dcd6k34', 'en', 1, 'https://ror.org/05dcd6k34 Population Council Institute'),
(84557, 'https://ror.org/05dd7m743', 'no_lang_code', 1, 'https://ror.org/05dd7m743 Osprey Medical (United States)'),
(84558, 'https://ror.org/05ddbg479', 'en', 1, 'https://ror.org/05ddbg479 Bapuji Institute of Engineering and Technology'),
(84559, 'https://ror.org/05de8dt65', 'en', 1, 'https://ror.org/05de8dt65 Spokane Public Library'),
(84560, 'https://ror.org/05dfnp137', 'en', 1, 'https://ror.org/05dfnp137 American Society for Legal History'),
(84561, 'https://ror.org/05dg8jj08', 'id', 1, 'https://ror.org/05dg8jj08 Institut Kesehatan Medistra Lubuk Pakam'),
(84562, 'https://ror.org/05dge7437', 'no_lang_code', 1, 'https://ror.org/05dge7437 Jupiter (United States)'),
(84563, 'https://ror.org/05drfac92', 'en', 1, 'https://ror.org/05drfac92 BioMed X Institute'),
(84564, 'https://ror.org/05dxr8975', 'en', 1, 'https://ror.org/05dxr8975 Center for Special Minimally Invasive and Robotic Surgery'),
(84565, 'https://ror.org/05dzd9d14', 'nl', 1, 'https://ror.org/05dzd9d14 GGD Hart voor Brabant, Gemeentelijke gezondheidsdienst Hart voor Brabant'),
(84566, 'https://ror.org/05e03wj43', 'no_lang_code', 1, 'https://ror.org/05e03wj43 Austrian Drug Screening Institute (Austria)'),
(84567, 'https://ror.org/05e0sek51', 'no_lang_code', 1, 'https://ror.org/05e0sek51 Hankyu Hanshin Holdings (Japan) é˜Ŗę€„é˜Ŗē„žćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(84568, 'https://ror.org/05e1f3f77', 'en', 1, 'https://ror.org/05e1f3f77 Central Research Institute for Dryland Agriculture ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¶ą„ą¤·ą„ą¤• ą¤­ą„‚ą¤®ą¤æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(84569, 'https://ror.org/05e21fw44', 'en', 1, 'https://ror.org/05e21fw44 National University of Technology'),
(84570, 'https://ror.org/05e2w0w20', 'no_lang_code', 1, 'https://ror.org/05e2w0w20 Middleton Spectral Vision (United States)'),
(84571, 'https://ror.org/05e322h53', 'es', 1, 'https://ror.org/05e322h53 IREC, Institut de Recerques Envers la Cultura'),
(84572, 'https://ror.org/05e34ej29', 'en', 1, 'https://ror.org/05e34ej29 University of Zanjan دانؓگاه زنجان'),
(84573, 'https://ror.org/05e4zna08', 'pl', 1, 'https://ror.org/05e4zna08 Centre of Molecular and Macromolecular Studies Centrum Badań Molekularnych i Makromolekularnych Polskiej Akademii Nauk'),
(84574, 'https://ror.org/05e6n8h53', 'en', 1, 'https://ror.org/05e6n8h53 International Center for Advanced Studies'),
(84575, 'https://ror.org/05e73v668', 'nl', 1, 'https://ror.org/05e73v668 Ziekenhuis Amstelland'),
(84576, 'https://ror.org/05e9eyh13', 'en', 1, 'https://ror.org/05e9eyh13 Woodland Trust'),
(84577, 'https://ror.org/05eaakg28', 'en', 1, 'https://ror.org/05eaakg28 California Energy Commission'),
(84578, 'https://ror.org/05eak0w67', 'en', 1, 'https://ror.org/05eak0w67 Taraclia State University Universitatea de Stat ā€žGrigore Țamblacā€ din Taraclia'),
(84579, 'https://ror.org/05ebx7e05', 'no_lang_code', 1, 'https://ror.org/05ebx7e05 TerraRad Tech (Switzerland)'),
(84580, 'https://ror.org/05ebz1978', 'en', 1, 'https://ror.org/05ebz1978 Autry National Center'),
(84581, 'https://ror.org/05ef4zt88', 'en', 1, 'https://ror.org/05ef4zt88 FX Palo Alto Laboratory'),
(84582, 'https://ror.org/05efnac71', 'en', 1, 'https://ror.org/05efnac71 King Abdullah City for Atomic and Renewable Energy Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ عبدالله للطاقة Ų§Ł„Ų°Ų±ŁŠŲ© ŁˆŲ§Ł„Ł…ŲŖŲ¬ŲÆŲÆŲ©'),
(84583, 'https://ror.org/05efq3455', 'en', 1, 'https://ror.org/05efq3455 Siliwangi University Universitas Siliwangi'),
(84584, 'https://ror.org/05efy4j44', 'no_lang_code', 1, 'https://ror.org/05efy4j44 Tosoh (Japan) ę±ć‚½ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(84585, 'https://ror.org/05egrn753', 'en', 1, 'https://ror.org/05egrn753 Institute for Environment and Human Security'),
(84586, 'https://ror.org/05egt1h67', 'en', 1, 'https://ror.org/05egt1h67 Vascular Institute of New York'),
(84587, 'https://ror.org/05ehdmg18', 'en', 1, 'https://ror.org/05ehdmg18 Leibniz ScienceCampus Primate Cognition Leibniz-WissenschaftsCampus Primatenkognition'),
(84588, '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'),
(84589, 'https://ror.org/05eqcca29', 'en', 1, 'https://ror.org/05eqcca29 ProHealth Oconomowoc Memorial Hospital'),
(84590, 'https://ror.org/05erbjx97', 'en', 1, 'https://ror.org/05erbjx97 V.I. Vernadsky Crimean Federal University ŠšŃ€Ń‹Š¼ŃŠŗŠøŠ¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’.И. ВернаГского'),
(84591, 'https://ror.org/05evdvv47', 'es', 1, 'https://ror.org/05evdvv47 Centro de Investigaciones CientifĆ­cas de las Huastecas ''Aguazarca'''),
(84592, 'https://ror.org/05ey1mh42', 'no_lang_code', 1, 'https://ror.org/05ey1mh42 Riverside Technology (United States)'),
(84593, 'https://ror.org/05eynd241', 'en', 1, 'https://ror.org/05eynd241 Auburn University at Montgomery'),
(84594, 'https://ror.org/05ezss144', 'en', 1, 'https://ror.org/05ezss144 Duy Tan University TrĘ°į»ng ĐẔi hį»c Duy TĆ¢n'),
(84595, 'https://ror.org/05f325a59', 'no_lang_code', 1, 'https://ror.org/05f325a59 Water-link (Belgium)'),
(84596, 'https://ror.org/05f3e6d47', 'en', 1, 'https://ror.org/05f3e6d47 National AIDS Control Organisation ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤ą¤”ą„ą¤ø ą¤Øą¤æą¤Æą¤‚ą¤¤ą„ą¤°ą¤£ संगठन'),
(84597, 'https://ror.org/05f51je39', 'en', 1, 'https://ror.org/05f51je39 National Geological Archives of China å…Øå›½åœ°č“Øčµ„ę–™é¦†'),
(84598, 'https://ror.org/05f6dm909', 'en', 1, 'https://ror.org/05f6dm909 Whittle School & Studios'),
(84599, 'https://ror.org/05f8qcz72', 'fr', 1, 'https://ror.org/05f8qcz72 Institut Agronomique et VƩtƩrinaire Hassan II'),
(84600, 'https://ror.org/05f950310', 'nl', 1, 'https://ror.org/05f950310 KU Leuven, Katholieke Universiteit Leuven'),
(84601, 'https://ror.org/05f9vxd34', 'no_lang_code', 1, 'https://ror.org/05f9vxd34 Enplas (Japan) ę Ŗå¼ä¼šē¤¾ć‚Øćƒ³ćƒ—ćƒ©ć‚¹'),
(84602, 'https://ror.org/05f9zrs24', 'en', 1, 'https://ror.org/05f9zrs24 Showa Inan General Hospital ę˜­å’Œä¼Šå—ē·åˆē—…é™¢'),
(84603, 'https://ror.org/05fa1xs93', 'hr', 1, 'https://ror.org/05fa1xs93 Gradski muzej Vinkovci Vinkovci Municipal Museum'),
(84604, 'https://ror.org/05fb2ej88', 'no_lang_code', 1, 'https://ror.org/05fb2ej88 Nutreco (Netherlands)'),
(84605, 'https://ror.org/05fcqx592', 'en', 1, 'https://ror.org/05fcqx592 Center for Disease Dynamics, Economics and Policy');
INSERT INTO `rors` VALUES
(84606, 'https://ror.org/05fdghr47', 'en', 1, 'https://ror.org/05fdghr47 "Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼Ī¹Ī±ĪŗĪ­Ļ‚ Ī•ĪŗĪ“ĻŒĻƒĪµĪ¹Ļ‚ ĪšĻĪ®Ļ„Ī·Ļ‚ " Crete University Press'),
(84607, 'https://ror.org/05fe96908', 'en', 1, 'https://ror.org/05fe96908 Coalition of Northeastern Governors'),
(84608, 'https://ror.org/05ff3vp46', 'no_lang_code', 1, 'https://ror.org/05ff3vp46 Forschungs- und Entwicklungszentrum Fachhochschule Kiel (Germany)'),
(84609, 'https://ror.org/05ffy6g34', 'en', 1, 'https://ror.org/05ffy6g34 Kyushu Kyoritsu University ä¹å·žå…±ē«‹å¤§å­¦'),
(84610, 'https://ror.org/05fj0h750', 'en', 1, 'https://ror.org/05fj0h750 ILMA University علما ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(84611, 'https://ror.org/05fjt7505', 'en', 1, 'https://ror.org/05fjt7505 Youth Research and Evaluation eXchange'),
(84612, 'https://ror.org/05fmrjg27', 'en', 1, 'https://ror.org/05fmrjg27 Sussex Partnership NHS Foundation Trust'),
(84613, 'https://ror.org/05fr04091', 'no_lang_code', 1, 'https://ror.org/05fr04091 Riso Kagaku (Japan) ē†ęƒ³ē§‘å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(84614, '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'),
(84615, 'https://ror.org/05frpfj73', 'en', 1, 'https://ror.org/05frpfj73 Binzhou University ę»Øå·žå­¦é™¢'),
(84616, 'https://ror.org/05frtgg14', 'no_lang_code', 1, 'https://ror.org/05frtgg14 Axpo (Switzerland)'),
(84617, 'https://ror.org/05fvd6e47', 'en', 1, 'https://ror.org/05fvd6e47 Sanin Rosai Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹å±±é™°åŠ“ē½ē—…é™¢'),
(84618, 'https://ror.org/05fw97k56', 'en', 1, 'https://ror.org/05fw97k56 Siberian Federal University Дибирский Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(84619, 'https://ror.org/05fx1fs38', 'no_lang_code', 1, 'https://ror.org/05fx1fs38 Astex Pharmaceuticals'),
(84620, 'https://ror.org/05fxgkw28', 'no_lang_code', 1, 'https://ror.org/05fxgkw28 Dynamita (France)'),
(84621, 'https://ror.org/05fyave37', 'en', 1, 'https://ror.org/05fyave37 Manchester City Football Club'),
(84622, 'https://ror.org/05fyd4h04', 'en', 1, 'https://ror.org/05fyd4h04 Parks and Wildlife Commission of the Northern Territory'),
(84623, 'https://ror.org/05fz57f05', 'en', 1, 'https://ror.org/05fz57f05 Kawasaki Medical School Hospital å·å“ŽåŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(84624, 'https://ror.org/05g0pkp12', 'es', 1, 'https://ror.org/05g0pkp12 Universidad Nacional De CaaguazĆŗ'),
(84625, 'https://ror.org/05g1mh260', 'en', 1, 'https://ror.org/05g1mh260 Autonomous University of Sinaloa Universidad Autónoma de Sinaloa'),
(84626, 'https://ror.org/05g2yfd11', 'en', 1, 'https://ror.org/05g2yfd11 European Association of Cardiothoracic Anaesthesiology'),
(84627, 'https://ror.org/05g5v3686', 'no_lang_code', 1, 'https://ror.org/05g5v3686 Hanjin Heavy Industries (South Korea) ķ•œģ§„ģ¤‘ź³µģ—…'),
(84628, 'https://ror.org/05g6ben79', 'en', 1, 'https://ror.org/05g6ben79 Changshu Institute of Technology åøøē†Ÿē†å·„å­¦é™¢'),
(84629, 'https://ror.org/05g7qp006', 'it', 1, 'https://ror.org/05g7qp006 Azienda Sanitaria Universitaria Integrata di Trieste'),
(84630, 'https://ror.org/05g8v8t96', 'no_lang_code', 1, 'https://ror.org/05g8v8t96 Dynamic Biosensors (Germany)'),
(84631, 'https://ror.org/05g9af661', 'no_lang_code', 1, 'https://ror.org/05g9af661 OrbusNeich (China)'),
(84632, 'https://ror.org/05g9srn20', 'no_lang_code', 1, 'https://ror.org/05g9srn20 Aker BP (Norway)'),
(84633, 'https://ror.org/05gb9dv72', 'en', 1, 'https://ror.org/05gb9dv72 Pakistan Academy of Sciences پاکستان اكيڈ مى ﺁف سائنسز'),
(84634, 'https://ror.org/05gbjgt75', 'en', 1, 'https://ror.org/05gbjgt75 Amhara National Regional State Public Health Institute į‰ įŠ įˆ›įˆ« į‰„įˆ”įˆ«į‹Š įŠ­įˆįˆ‹į‹Š įˆ˜įŠ•įŒįˆµį‰µ į‹Øįˆ•į‰„įˆØį‰°įˆ°į‰„ įŒ¤įŠ“ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(84635, 'https://ror.org/05gd1cs26', 'en', 1, 'https://ror.org/05gd1cs26 Doha Institute for Graduate Studies معهد Ų§Ł„ŲÆŁˆŲ­Ų© للدراسات Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł…Ų¤Ų³Ų³Ų© Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(84636, 'https://ror.org/05gd76j39', 'no_lang_code', 1, 'https://ror.org/05gd76j39 Tokyo Electron (Japan) ę±äŗ¬ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ³'),
(84637, 'https://ror.org/05gdhxj91', 'fr', 1, 'https://ror.org/05gdhxj91 Société Francophone du Diabète'),
(84638, 'https://ror.org/05gdz0e37', 'en', 1, 'https://ror.org/05gdz0e37 Docrates Cancer Center Docrates Cancersjukhus Docrates SyƶpƤsairaala Дократес'),
(84639, 'https://ror.org/05ge59n23', 'en', 1, 'https://ror.org/05ge59n23 Vladivostok Branch of the Russian Customs Academy ВлаГивостокский филиал Российской таможенной акаГемии'),
(84640, 'https://ror.org/05ggzej07', 'no_lang_code', 1, 'https://ror.org/05ggzej07 Secom (Japan) ć‚»ć‚³ćƒ ę Ŗå¼ä¼šē¤¾'),
(84641, 'https://ror.org/05ghhgs79', 'en', 1, 'https://ror.org/05ghhgs79 Tra Vinh University TrĘ°į»ng ĐẔi Hį»c TrĆ  Vinh'),
(84642, 'https://ror.org/05ght7821', 'en', 1, 'https://ror.org/05ght7821 Allergy Partners of Lynchburg'),
(84643, 'https://ror.org/05ghzpa93', 'no_lang_code', 1, 'https://ror.org/05ghzpa93 Guru Nanak Dev University ਗੁਰੂ ਨਾਨਕ ਦੇਵ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(84644, 'https://ror.org/05gja4j15', 'no_lang_code', 1, 'https://ror.org/05gja4j15 Menarini Group (Germany)'),
(84645, 'https://ror.org/05gkzhv48', 'en', 1, 'https://ror.org/05gkzhv48 Melbourne Bioinformatics'),
(84646, 'https://ror.org/05gmhvw49', 'en', 1, 'https://ror.org/05gmhvw49 Nepalese Army Institute of Health Services ą¤Øą„‡ą¤Ŗą¤¾ą¤²ą„€ ą¤øą„‡ą¤Øą¤¾ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(84647, 'https://ror.org/05gnea559', 'id', 1, 'https://ror.org/05gnea559 Universitas Riau Kepulauan'),
(84648, 'https://ror.org/05gnvg690', 'en', 1, 'https://ror.org/05gnvg690 Deenbandhu Chhotu Ram University of Science and Technology ą¤¦ą„€ą¤Øą¤¬ą¤‚ą¤§ą„ ą¤›ą„‹ą¤Ÿą„‚ राम ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ साइंस ą¤ą¤‚ą¤” ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(84649, 'https://ror.org/05gp53b91', 'no_lang_code', 1, 'https://ror.org/05gp53b91 Omiics (Denmark)'),
(84650, 'https://ror.org/05gpkvs36', 'en', 1, 'https://ror.org/05gpkvs36 Australian Veterinary Association'),
(84651, 'https://ror.org/05gqmbr12', 'es', 1, 'https://ror.org/05gqmbr12 Digital Health Research Unit Unidad de Investigación en Salud Digital'),
(84652, 'https://ror.org/05gt1vc06', 'en', 1, 'https://ror.org/05gt1vc06 Howard University Universidad Howard'),
(84653, 'https://ror.org/05gtb4824', 'en', 1, 'https://ror.org/05gtb4824 Universitas Bangka Belitung University of Bangka Belitung'),
(84654, 'https://ror.org/05gwnz115', 'no_lang_code', 1, 'https://ror.org/05gwnz115 Almayzab Digital Library Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ł…ŁŠŲ²Ų§ŲØ Ų§Ł„Ų±Ł‚Ł…ŁŠŲ©'),
(84655, 'https://ror.org/05h06f126', 'fr', 1, 'https://ror.org/05h06f126 LMI Adaptation des Plantes et Microorganismes Associés aux Stress Environnementaux'),
(84656, 'https://ror.org/05h0ecd49', 'no_lang_code', 1, 'https://ror.org/05h0ecd49 Gpack (France)'),
(84657, 'https://ror.org/05h0rw812', 'en', 1, 'https://ror.org/05h0rw812 National Center for Geriatrics and Gerontology å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹é•·åÆæåŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(84658, 'https://ror.org/05h0wd634', 'en', 1, 'https://ror.org/05h0wd634 CROSS Neutron Science and Technology Center CROSSäø­ę€§å­ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(84659, 'https://ror.org/05h29rm85', 'de', 1, 'https://ror.org/05h29rm85 Muskelzentrum/ALS Clinic'),
(84660, 'https://ror.org/05h3xe829', 'en', 1, 'https://ror.org/05h3xe829 Shenzhen Nanshan Center for Chronic Disease Control ę·±åœ³å—å±±åŒŗę…¢ę€§ē—…é˜²ę²»é™¢'),
(84661, 'https://ror.org/05h4q5j46', 'en', 1, 'https://ror.org/05h4q5j46 Osaka Red Cross Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾å¤§é˜Ŗčµ¤åå­—ē—…é™¢'),
(84662, 'https://ror.org/05h6f5h95', 'en', 1, 'https://ror.org/05h6f5h95 Institute of Biomedical and Genetic Engineering'),
(84663, 'https://ror.org/05h7r9v23', 'no_lang_code', 1, 'https://ror.org/05h7r9v23 Akari Therapeutics (United Kingdom)'),
(84664, 'https://ror.org/05h9mfy97', 'no_lang_code', 1, 'https://ror.org/05h9mfy97 SDS Life Science (Sweden)'),
(84665, 'https://ror.org/05hak3w16', 'en', 1, 'https://ror.org/05hak3w16 National Commission on Indigenous Peoples Pambansang Komisyon sa mga Katutubong Mamamayan'),
(84666, 'https://ror.org/05he67b65', 'no_lang_code', 1, 'https://ror.org/05he67b65 TOA EIYO (Japan) ćƒˆćƒ¼ć‚¢ć‚Øć‚¤ćƒØćƒ¼'),
(84667, 'https://ror.org/05heqa451', 'en', 1, 'https://ror.org/05heqa451 International Center for Research, Education and Training'),
(84668, 'https://ror.org/05hewn428', 'en', 1, 'https://ror.org/05hewn428 Drug Policy Alliance'),
(84669, 'https://ror.org/05hg1ny67', 'en', 1, 'https://ror.org/05hg1ny67 SRCC Children’s Hospital'),
(84670, 'https://ror.org/05hhz4s12', 'en', 1, 'https://ror.org/05hhz4s12 Hanoi University of Industry ĐẔi hį»c CĆ“ng nghiệp HĆ  Nį»™i'),
(84671, 'https://ror.org/05hjk6729', 'no_lang_code', 1, 'https://ror.org/05hjk6729 Ferring Arzneimittel Ferring Pharmaceuticals (Germany)'),
(84672, 'https://ror.org/05hkks026', 'en', 1, 'https://ror.org/05hkks026 Nizhny Tagil State Socio-Pedagogical Institute ŠŠøŠ¶Š½ŠµŃ‚Š°Š³ŠøŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(84673, 'https://ror.org/05hkn5555', 'en', 1, 'https://ror.org/05hkn5555 Dnipro University of Technology ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ горный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украина ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° політехніка»'),
(84674, 'https://ror.org/05hnkta08', 'en', 1, 'https://ror.org/05hnkta08 Santa Barbara Coastal Long Term Ecological Research'),
(84675, 'https://ror.org/05hnphf80', 'no_lang_code', 1, 'https://ror.org/05hnphf80 CommuniCare Family of Companies (United States)'),
(84676, 'https://ror.org/05hp71e29', 'en', 1, 'https://ror.org/05hp71e29 Foundation for Reproductive Medicine'),
(84677, 'https://ror.org/05hpb3c68', 'en', 1, 'https://ror.org/05hpb3c68 British Sociological Association'),
(84678, 'https://ror.org/05hr6q169', 'en', 1, 'https://ror.org/05hr6q169 A.T. Still University'),
(84679, 'https://ror.org/05hre1985', 'no_lang_code', 1, 'https://ror.org/05hre1985 Lux Research (United States)'),
(84680, 'https://ror.org/05hs7zv85', 'en', 1, 'https://ror.org/05hs7zv85 Johns Hopkins Center for Communication Programs'),
(84681, 'https://ror.org/05hsbj572', 'en', 1, 'https://ror.org/05hsbj572 Niramaya Healthcare निरामय ą¤¹ą„‡ą¤²ą„ą¤„ą¤•ą„‡ą¤Æą¤°'),
(84682, 'https://ror.org/05hsgsk03', 'no_lang_code', 1, 'https://ror.org/05hsgsk03 Glaceum (South Korea)'),
(84683, 'https://ror.org/05hv6a803', 'no_lang_code', 1, 'https://ror.org/05hv6a803 Kobelco Eco-Solutions (Japan) ę Ŗå¼ä¼šē¤¾ē„žé‹¼ē’°å¢ƒć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³'),
(84684, 'https://ror.org/05hz4ph43', 'en', 1, 'https://ror.org/05hz4ph43 Alaska Pacific University'),
(84685, 'https://ror.org/05hzn5427', 'en', 1, 'https://ror.org/05hzn5427 Ho Chi Minh City University of Technology and Education TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m Kỹ thuįŗ­t ThĆ nh phố Hồ ChĆ­ Minh'),
(84686, 'https://ror.org/05j1wxv23', 'no_lang_code', 1, 'https://ror.org/05j1wxv23 Bermuda Institute of Ocean Sciences'),
(84687, 'https://ror.org/05j351806', 'en', 1, 'https://ror.org/05j351806 State Healthcare Institution "Regional Clinical Oncological Dispensary"'),
(84688, 'https://ror.org/05j466218', 'en', 1, 'https://ror.org/05j466218 Society for Women''s Health Research'),
(84689, 'https://ror.org/05j5a1a74', 'en', 1, 'https://ror.org/05j5a1a74 Race Forward'),
(84690, 'https://ror.org/05jfz9645', 'en', 1, 'https://ror.org/05jfz9645 Comprehensive Cancer Center Erlangen'),
(84691, 'https://ror.org/05jg5ty85', 'en', 1, 'https://ror.org/05jg5ty85 Dedan Kimathi University of Technology'),
(84692, 'https://ror.org/05jhnwe22', 'en', 1, 'https://ror.org/05jhnwe22 Edith Cowan University'),
(84693, 'https://ror.org/05jj7mn84', 'no_lang_code', 1, 'https://ror.org/05jj7mn84 Lexical Computing'),
(84694, 'https://ror.org/05jm6kj71', 'en', 1, 'https://ror.org/05jm6kj71 Orient Enstitüsü İstanbul Orient-Institut Istanbul, Orient-Institute Istanbul'),
(84695, 'https://ror.org/05jme6y84', 'en', 1, 'https://ror.org/05jme6y84 University of Social Welfare and Rehabilitation Sciences دانؓگاه Ų¹Ł„ŁˆŁ… ŲØŁ‡Ų²ŪŒŲ³ŲŖŪŒ و ŲŖŁˆŲ§Ł†ŲØŲ®Ų“ŪŒ'),
(84696, 'https://ror.org/05jqb8z52', 'en', 1, 'https://ror.org/05jqb8z52 American Society on Aging'),
(84697, 'https://ror.org/05jtv2231', 'en', 1, 'https://ror.org/05jtv2231 Reproductive Biology Associates'),
(84698, 'https://ror.org/05jx29z89', 'en', 1, 'https://ror.org/05jx29z89 London Centre for Neglected Tropical Disease Research'),
(84699, 'https://ror.org/05jxgts87', 'en', 1, 'https://ror.org/05jxgts87 Tan Kah Kee Innovation Laboratory å˜‰åŗšåˆ›ę–°å®žéŖŒå®¤'),
(84700, 'https://ror.org/05jy77b70', 'no_lang_code', 1, 'https://ror.org/05jy77b70 Wuyistar (China) 武夷星'),
(84701, 'https://ror.org/05jygqt38', 'no_lang_code', 1, 'https://ror.org/05jygqt38 Lixil (Japan) ę Ŗå¼ä¼šē¤¾LIXIL'),
(84702, 'https://ror.org/05jyve847', 'en', 1, 'https://ror.org/05jyve847 Wrocław Technology Park Wrocławskim Parku Technologicznym'),
(84703, 'https://ror.org/05jyz3382', 'no_lang_code', 1, 'https://ror.org/05jyz3382 ConvaTec (United Kingdom)'),
(84704, 'https://ror.org/05jzgzx91', 'en', 1, 'https://ror.org/05jzgzx91 University of Glasgow Singapore'),
(84705, 'https://ror.org/05jzt2178', 'en', 1, 'https://ror.org/05jzt2178 Queen Margaret''s'),
(84706, 'https://ror.org/05k0zzt52', 'en', 1, 'https://ror.org/05k0zzt52 State Fund for Fundamental Research of Ukraine'),
(84707, 'https://ror.org/05k11pb55', 'en', 1, 'https://ror.org/05k11pb55 Dana-Farber/Boston Children''s Cancer and Blood Disorders Center'),
(84708, 'https://ror.org/05k1m9s26', 'en', 1, 'https://ror.org/05k1m9s26 ENEA Brindisi Research Centre ENEA Centro Ricerche Brindisi'),
(84709, 'https://ror.org/05k2kkw49', 'en', 1, 'https://ror.org/05k2kkw49 Department of Education - Division of Bataan'),
(84710, 'https://ror.org/05k37ht14', 'en', 1, 'https://ror.org/05k37ht14 Indian Institute of Space Science and Technology ą“‡ą“Øąµą“¤ąµą“Æą“Øąµā€ ą“‡ą“Øąµā€ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“øąµą“Ŗąµ‡ą“øąµ ą“øą“Æąµ»ą“øąµ ą“†ą“Øąµą“±ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ .'),
(84711, 'https://ror.org/05k37v296', 'en', 1, 'https://ror.org/05k37v296 Defence Research and Development Organisation ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास संगठन ą¤øą¤‚ą¤°ą¤•ą„ą¤·ą¤£ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø आणि विकास ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¦Ŗą§ą¦°ą¦¤ą¦æą¦°ą¦•ą§ą¦·ą¦¾ গবেষণা ও ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø সংগঠন ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®³ą®°ąÆą®šąÆą®šą®æ ą®…ą®®ąÆˆą®ŖąÆą®ŖąÆ భారత ą°°ą°•ą±ą°·ą°£ పరిశోధన ą°…ą°­ą°æą°µą±ƒą°¦ą±ą°§ą°æ ą°øą°‚ą°øą±ą°„ ą²°ą²•ą³ą²·ą²£ą²¾ ಸಂಶೋಧನೆ ವಿಕಾಸ ą²øą²‚ą²˜ą²Ÿą²Øą³† ą“”ą“æą“«ąµ»ą“øąµ ą“±ą“æą“øąµ‡ąµ¼ą“šąµą“šąµ ą“†ąµ»ą“”ąµ ą“”ąµ†ą“µą“²ą“Ŗąµą“®ąµ†ą“Øąµą“±ąµ ą““ąµ¼ą“—ą“Øąµˆą“øąµ‡ą“·ąµ»'),
(84712, 'https://ror.org/05k4m9b36', 'en', 1, 'https://ror.org/05k4m9b36 Institute of Food Technologists'),
(84713, 'https://ror.org/05k7rm370', 'no_lang_code', 1, 'https://ror.org/05k7rm370 Cougaar Software (United States)'),
(84714, 'https://ror.org/05k7y1t77', 'en', 1, 'https://ror.org/05k7y1t77 Fairmed'),
(84715, 'https://ror.org/05k87xn20', 'iu', 1, 'https://ror.org/05k87xn20 Inuit Tapiriit Kanatami'),
(84716, 'https://ror.org/05kd3f793', 'en', 1, 'https://ror.org/05kd3f793 Nagasaki University Hospital é•·å“Žå¤§å­¦ē—…é™¢'),
(84717, 'https://ror.org/05kd8e855', 'en', 1, 'https://ror.org/05kd8e855 North Karelia Center for Public Health Pohjois-Karjalan Kansanterveyden Keskus'),
(84718, 'https://ror.org/05ke98p93', 'no_lang_code', 1, 'https://ror.org/05ke98p93 Samil Pharm (South Korea) ģ‚¼ģ¼ģ œģ•½'),
(84719, 'https://ror.org/05kfafn92', 'en', 1, 'https://ror.org/05kfafn92 Institute for International Studies and Training äø€čˆ¬č²”å›£ę³•äŗŗč²æę˜“ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(84720, 'https://ror.org/05kg8j924', 'en', 1, 'https://ror.org/05kg8j924 American College of Foot and Ankle Surgeons'),
(84721, 'https://ror.org/05kgbsy64', 'en', 1, 'https://ror.org/05kgbsy64 Spinoza Centre for Neuroimaging'),
(84722, 'https://ror.org/05kkkes98', 'en', 1, 'https://ror.org/05kkkes98 Beijing Ditan Hospital åŒ—äŗ¬åœ°å›åŒ»é™¢'),
(84723, 'https://ror.org/05kmggt55', 'en', 1, 'https://ror.org/05kmggt55 Simula UiB'),
(84724, 'https://ror.org/05knsbt04', 'no_lang_code', 1, 'https://ror.org/05knsbt04 Sophia Genetics (Switzerland)'),
(84725, 'https://ror.org/05kq1z994', 'en', 1, 'https://ror.org/05kq1z994 Gunma University Hospital ē¾¤é¦¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(84726, 'https://ror.org/05kscqz92', 'no_lang_code', 1, 'https://ror.org/05kscqz92 Tsudakoma (Japan) ę“„ē”°é§’å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(84727, 'https://ror.org/05ktaz183', 'no_lang_code', 1, 'https://ror.org/05ktaz183 Diamond Materials (Germany)'),
(84728, 'https://ror.org/05ktb0281', 'en', 1, 'https://ror.org/05ktb0281 Clifton Hospital'),
(84729, 'https://ror.org/05kw3dt68', 'es', 1, 'https://ror.org/05kw3dt68 Universidad Nacional de Concepción'),
(84730, 'https://ror.org/05kxg4a92', 'en', 1, 'https://ror.org/05kxg4a92 National Institute for Implementation Research on Non-Communicable Diseases'),
(84731, 'https://ror.org/05kz57e33', 'en', 1, 'https://ror.org/05kz57e33 Day Family Medicine'),
(84732, 'https://ror.org/05kzfa883', 'en', 1, 'https://ror.org/05kzfa883 Korea Institute of Science and Technology ķ•œźµ­ź³¼ķ•™źø°ģˆ ģ—°źµ¬ģ›'),
(84733, 'https://ror.org/05m26jn23', 'en', 1, 'https://ror.org/05m26jn23 Allerhand Institute Instytut Allerhanda'),
(84734, 'https://ror.org/05m802881', 'en', 1, 'https://ror.org/05m802881 Bariloche Atomic Centre Centro Atómico Bariloche'),
(84735, 'https://ror.org/05m8dye22', 'en', 1, 'https://ror.org/05m8dye22 Kagawa Prefectural Central Hospital é¦™å·ēœŒē«‹äø­å¤®ē—…é™¢'),
(84736, 'https://ror.org/05m962h09', 'en', 1, 'https://ror.org/05m962h09 Health & Safety in Sports'),
(84737, 'https://ror.org/05m9vrv91', 'no_lang_code', 1, 'https://ror.org/05m9vrv91 Rogers (United States)'),
(84738, 'https://ror.org/05ma3ex40', 'en', 1, 'https://ror.org/05ma3ex40 Specialized Cardiosurgical Clinical Hospital named after Academician B.A. Korolev Š”ŠæŠµŃ†ŠøŠ°Š»ŠøŠ·ŠøŃ€Š¾Š²Š°Š½Š½Š°Ń ŠŗŠ°Ń€Š“ŠøŠ¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(84739, 'https://ror.org/05mb2ak88', 'en', 1, 'https://ror.org/05mb2ak88 Bonneville Power Administration'),
(84740, 'https://ror.org/05mcasn19', 'no_lang_code', 1, 'https://ror.org/05mcasn19 Kuznetsk Alatau Nature Reserve ŠšŃƒŠ·Š½ŠµŃ†ŠŗŠøŠ¹ ŠŠ»Š°Ń‚Š°Ńƒ заповеГник'),
(84741, 'https://ror.org/05me0b438', 'no_lang_code', 1, 'https://ror.org/05me0b438 FAIRMED'),
(84742, 'https://ror.org/05mf3wf75', 'nl', 1, 'https://ror.org/05mf3wf75 ''s Heeren Loo'),
(84743, 'https://ror.org/05mfff588', 'en', 1, 'https://ror.org/05mfff588 Armauer Hansen Research Institute'),
(84744, 'https://ror.org/05mfhxz88', 'es', 1, 'https://ror.org/05mfhxz88 Universidad Latina'),
(84745, 'https://ror.org/05mfs3k63', 'en', 1, 'https://ror.org/05mfs3k63 Grassland, Soil and Water Research Laboratory'),
(84746, 'https://ror.org/05mggs005', 'nl', 1, 'https://ror.org/05mggs005 PAMM'),
(84747, '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'),
(84748, 'https://ror.org/05mhn0t19', 'en', 1, 'https://ror.org/05mhn0t19 Panamanian Association for the Advancement of Science'),
(84749, 'https://ror.org/05mjtbx41', 'no_lang_code', 1, 'https://ror.org/05mjtbx41 Century Therapeutics (United States)'),
(84750, 'https://ror.org/05mmnft02', 'no_lang_code', 1, 'https://ror.org/05mmnft02 Ignyta (United States)'),
(84751, 'https://ror.org/05mny9804', 'en', 1, 'https://ror.org/05mny9804 Asia Pacific League of Associations for Rheumatology'),
(84752, 'https://ror.org/05mpwj415', 'en', 1, 'https://ror.org/05mpwj415 Fort Valley State University'),
(84753, 'https://ror.org/05mqfgg03', 'en', 1, 'https://ror.org/05mqfgg03 Horlivka Institute for Foreign Languages Š“Š¾Ń€Š»Ń–Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ іноземних мов'),
(84754, 'https://ror.org/05mya2w74', 'en', 1, 'https://ror.org/05mya2w74 Combined Military Hospital مؓترکہ فوجی ہسپتال'),
(84755, 'https://ror.org/05myb9s25', 'no_lang_code', 1, 'https://ror.org/05myb9s25 Studsvik (Germany)'),
(84756, 'https://ror.org/05myne231', 'no_lang_code', 1, 'https://ror.org/05myne231 TiDA (New Zealand)'),
(84757, 'https://ror.org/05myv7q56', 'en', 1, 'https://ror.org/05myv7q56 Hochschule Geisenheim Hochschule Geisenheim University'),
(84758, 'https://ror.org/05mz2vf33', 'de', 1, 'https://ror.org/05mz2vf33 Deutsches Historisches Institut Warschau German Historical Institute Warsaw Niemiecki Instytut Historyczny w Warszawie'),
(84759, 'https://ror.org/05mzppf86', 'en', 1, 'https://ror.org/05mzppf86 Arizona Liver Health'),
(84760, 'https://ror.org/05n00ke18', 'en', 1, 'https://ror.org/05n00ke18 Regional Hospital Randers Regionshospitalet Randers'),
(84761, 'https://ror.org/05n116e91', 'en', 1, 'https://ror.org/05n116e91 Idaho State Board of Education'),
(84762, 'https://ror.org/05n16wx34', 'de', 1, 'https://ror.org/05n16wx34 Landesamt für Landwirtschaft, Lebensmittelsicherheit und Fischerei'),
(84763, 'https://ror.org/05n22sa14', 'en', 1, 'https://ror.org/05n22sa14 Regional Technology Strategies'),
(84764, 'https://ror.org/05n43x964', 'de', 1, 'https://ror.org/05n43x964 Deutsches Institut für Urbanistik German Institute of Urban Affairs'),
(84765, 'https://ror.org/05n7t1e46', 'no_lang_code', 1, 'https://ror.org/05n7t1e46 Wako University 和光大学'),
(84766, 'https://ror.org/05n9k9z81', 'no_lang_code', 1, 'https://ror.org/05n9k9z81 Guangzhou Research and Creativity Biotechnology (China) å¹æå·žē ”åˆ›ē”Ÿē‰©'),
(84767, 'https://ror.org/05nczym02', 'en', 1, 'https://ror.org/05nczym02 ENEA Centro Ricerche Saluggia ENEA Saluggia Research Centre'),
(84768, 'https://ror.org/05nfbnp91', 'en', 1, 'https://ror.org/05nfbnp91 Academy of Cryptography Techniques Hį»c viện Kỹ thuįŗ­t Mįŗ­t mĆ£'),
(84769, 'https://ror.org/05nfq3p69', 'en', 1, 'https://ror.org/05nfq3p69 Chamber of Commerce of Metropolitan Montreal Chambre de commerce du MontrƩal mƩtropolitain'),
(84770, 'https://ror.org/05nh0hr31', 'no_lang_code', 1, 'https://ror.org/05nh0hr31 Icon (Australia)'),
(84771, 'https://ror.org/05nhxfs81', 'en', 1, 'https://ror.org/05nhxfs81 New York Historical Society'),
(84772, 'https://ror.org/05nj6z848', 'en', 1, 'https://ror.org/05nj6z848 Novosibirsk Scientific Research Institute of Traumatology and Orthopedics. Ya.L. Tsivyan ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии им. ŠÆ.Š›.Š¦ŠøŠ²ŃŒŃŠ½Š°'),
(84773, 'https://ror.org/05nj7my03', 'en', 1, 'https://ror.org/05nj7my03 Soproni Egyetem University of Sopron'),
(84774, 'https://ror.org/05njdpb60', 'id', 1, 'https://ror.org/05njdpb60 Institut Bisnis dan Teknologi Pelita Indonesia'),
(84775, 'https://ror.org/05njepb92', 'en', 1, 'https://ror.org/05njepb92 International Gorilla Conservation Programme'),
(84776, 'https://ror.org/05nk2np19', 'no_lang_code', 1, 'https://ror.org/05nk2np19 ACS Solutions (United States)'),
(84777, 'https://ror.org/05np4h792', 'no_lang_code', 1, 'https://ror.org/05np4h792 Plastic Omnium (France)'),
(84778, 'https://ror.org/05nqb8479', 'no_lang_code', 1, 'https://ror.org/05nqb8479 Quantify Research (Sweden)'),
(84779, 'https://ror.org/05nr5jj06', 'en', 1, 'https://ror.org/05nr5jj06 Yamada Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗå±±ē”°ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(84780, 'https://ror.org/05nry7t92', 'en', 1, 'https://ror.org/05nry7t92 Association of Public and Land-grant Universities'),
(84781, 'https://ror.org/05nv34q75', 'en', 1, 'https://ror.org/05nv34q75 Royal Statistical Society'),
(84782, 'https://ror.org/05p3a9320', 'en', 1, 'https://ror.org/05p3a9320 ORSI Academy'),
(84783, 'https://ror.org/05p56yz34', 'en', 1, 'https://ror.org/05p56yz34 Society of Chemical Industry'),
(84784, 'https://ror.org/05p5p2029', 'en', 1, 'https://ror.org/05p5p2029 California Perinatal Quality Care Collaborative'),
(84785, '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'),
(84786, 'https://ror.org/05p8v7d26', 'no_lang_code', 1, 'https://ror.org/05p8v7d26 Biostatistical Consulting (United States)'),
(84787, 'https://ror.org/05p93sx58', 'cs', 1, 'https://ror.org/05p93sx58 LĆ©Äebna Dlouhodobě Nemocných'),
(84788, 'https://ror.org/05p9h0d44', 'no_lang_code', 1, 'https://ror.org/05p9h0d44 Toshiba Nanoanalysis Corporation ę±čŠćƒŠćƒŽć‚¢ćƒŠćƒŖć‚·ć‚¹ę Ŗå¼ä¼šē¤¾'),
(84789, 'https://ror.org/05pbd0w76', 'en', 1, 'https://ror.org/05pbd0w76 The Humane League'),
(84790, 'https://ror.org/05pbwbp03', 'en', 1, 'https://ror.org/05pbwbp03 Ukrainian State Research Institute for Carbochemistry Украинский Š³Š¾ŃŃƒŠ“арственный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний науково-ГосліГний Š²ŃƒŠ³Š»ŠµŃ…імічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(84791, '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'),
(84792, 'https://ror.org/05pdc0q70', 'no_lang_code', 1, 'https://ror.org/05pdc0q70 Cajal Neuroscience (United States)'),
(84793, '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'),
(84794, 'https://ror.org/05pj5cg52', 'en', 1, 'https://ror.org/05pj5cg52 Close Up Foundation'),
(84795, 'https://ror.org/05pk92k21', 'en', 1, 'https://ror.org/05pk92k21 International Biometric Society'),
(84796, 'https://ror.org/05pn4yv70', 'en', 1, 'https://ror.org/05pn4yv70 Beni-Suef University Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŁŠ سويف'),
(84797, 'https://ror.org/05pny7s12', 'en', 1, 'https://ror.org/05pny7s12 Khulna University খুলনা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(84798, 'https://ror.org/05pq7y258', 'en', 1, 'https://ror.org/05pq7y258 Police of the Czech Republic Policie České republiky'),
(84799, 'https://ror.org/05psty780', 'id', 1, 'https://ror.org/05psty780 Pusat Penelitian Arkeologi Nasional'),
(84800, 'https://ror.org/05ptpxn60', 'en', 1, 'https://ror.org/05ptpxn60 University of East Asia ę±äŗœå¤§å­¦'),
(84801, 'https://ror.org/05pvfh620', 'en', 1, 'https://ror.org/05pvfh620 Iwokrama International Centre for Rainforest Conservation and Development'),
(84802, 'https://ror.org/05pz4yk52', 'en', 1, 'https://ror.org/05pz4yk52 Instytut Biologii Ssaków Polskiej Akademii Nauk Mammal Research Institute'),
(84803, 'https://ror.org/05pzhab84', 'en', 1, 'https://ror.org/05pzhab84 ENN-Tongji Advanced Institute of Clean Energy ę–°å„„-åŒęµŽęø…ę“čƒ½ęŗé«˜ē­‰ē ”ē©¶é™¢'),
(84804, 'https://ror.org/05pzxer45', 'nl', 1, 'https://ror.org/05pzxer45 AZ Sint-Lucas'),
(84805, 'https://ror.org/05q46an69', 'en', 1, 'https://ror.org/05q46an69 Hawk Mountain Sanctuary'),
(84806, 'https://ror.org/05q51gp63', 'en', 1, 'https://ror.org/05q51gp63 Federal Scientific Research Centre Crystallography and Photonics ŠšŃ€ŠøŃŃ‚Š°Š»Š»Š¾Š³Ń€Š°Ń„ŠøŃ Šø фотоника'),
(84807, 'https://ror.org/05q6wv670', 'no_lang_code', 1, 'https://ror.org/05q6wv670 Trelleborg (Sweden)'),
(84808, 'https://ror.org/05q7ca195', 'no_lang_code', 1, 'https://ror.org/05q7ca195 Wyatt Technology (China) ę€€é›…ē‰¹ęŠ€ęœÆå…¬åø'),
(84809, 'https://ror.org/05q84se63', 'en', 1, 'https://ror.org/05q84se63 Nordic Africa Institute'),
(84810, 'https://ror.org/05qa08h17', 'en', 1, 'https://ror.org/05qa08h17 Testicular Cancer Commons'),
(84811, 'https://ror.org/05qah4n60', 'en', 1, 'https://ror.org/05qah4n60 Research Institute for the Study of Leprosy ā€œŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃŽ Š»ŠµŠæŃ€Ń‹ā€'),
(84812, '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'),
(84813, 'https://ror.org/05qdwtz81', 'en', 1, 'https://ror.org/05qdwtz81 Ludwig Cancer Research'),
(84814, 'https://ror.org/05qj0n416', 'no_lang_code', 1, 'https://ror.org/05qj0n416 Xanadu Quantum Technologies (Canada)'),
(84815, 'https://ror.org/05qjw7v53', 'en', 1, 'https://ror.org/05qjw7v53 Pervasive Artificial Intelligence Research Labs äŗŗå·„ę™ŗę…§ę™®é©ē ”ē©¶äø­åæƒ'),
(84816, 'https://ror.org/05qmhph48', 'no_lang_code', 1, 'https://ror.org/05qmhph48 Solarea Bio (United States)'),
(84817, 'https://ror.org/05qq96959', 'en', 1, 'https://ror.org/05qq96959 Federative Institute of Behavioral Addictions Institut FƩdƩratif des Addictions Comportementales'),
(84818, 'https://ror.org/05qs5k564', 'es', 1, 'https://ror.org/05qs5k564 Agencia de Evaluación de Tecnologías Sanitarias Health Technology Assessment Agency'),
(84819, 'https://ror.org/05qsqt662', 'no_lang_code', 1, 'https://ror.org/05qsqt662 KDDI Research (Japan) ę Ŗå¼ä¼šē¤¾KDDIē·åˆē ”ē©¶ę‰€'),
(84820, 'https://ror.org/05qvatg15', 'no_lang_code', 1, 'https://ror.org/05qvatg15 Oncolys BioPharma (Japan) ć‚Ŗćƒ³ć‚³ćƒŖć‚¹ćƒć‚¤ć‚Ŗćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(84821, 'https://ror.org/05qvhy970', 'en', 1, 'https://ror.org/05qvhy970 National Athletic Trainers Association'),
(84822, 'https://ror.org/05qx3fv49', 'en', 1, 'https://ror.org/05qx3fv49 National Institute of Food and Agriculture'),
(84823, 'https://ror.org/05qx7aj05', 'en', 1, 'https://ror.org/05qx7aj05 Tennessee Higher Education Commission & Student Assistance Corporation'),
(84824, 'https://ror.org/05qx9yv62', 'en', 1, 'https://ror.org/05qx9yv62 Zonta International Foundation'),
(84825, 'https://ror.org/05qxez013', 'en', 1, 'https://ror.org/05qxez013 Redcliffe Hospital'),
(84826, 'https://ror.org/05qzrbt52', 'en', 1, 'https://ror.org/05qzrbt52 Archaeological Museum in Poznań Muzeum Archeologiczne w Poznaniu'),
(84827, 'https://ror.org/05r1gew95', 'no_lang_code', 1, 'https://ror.org/05r1gew95 Abraxis (United States)'),
(84828, 'https://ror.org/05r1mzq61', 'en', 1, 'https://ror.org/05r1mzq61 Zhuhai Institute of Advanced Technology ē ęµ·äø­ē§‘å…ˆčæ›ęŠ€ęœÆē ”ē©¶é™¢'),
(84829, 'https://ror.org/05r2q5n94', 'no_lang_code', 1, 'https://ror.org/05r2q5n94 Flagship Pioneering (United States)'),
(84830, 'https://ror.org/05r7vy677', 'no_lang_code', 1, 'https://ror.org/05r7vy677 Hokuto Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ—ę–—åŒ—ę–—ē—…é™¢'),
(84831, 'https://ror.org/05r9gag74', 'en', 1, 'https://ror.org/05r9gag74 Hubbard Brook Research Foundation'),
(84832, 'https://ror.org/05ra8rv47', 'en', 1, 'https://ror.org/05ra8rv47 Multi-Robot Systems Research Group'),
(84833, 'https://ror.org/05rajhp84', 'no_lang_code', 1, 'https://ror.org/05rajhp84 Vifor Pharma (United States)'),
(84834, 'https://ror.org/05rbz8029', 'no_lang_code', 1, 'https://ror.org/05rbz8029 Dian Diagnostics (China) čæŖå®‰čÆŠę–­'),
(84835, 'https://ror.org/05rc73571', 'en', 1, 'https://ror.org/05rc73571 Daye People''s Hospital å¤§å†¶åø‚äŗŗę°‘åŒ»é™¢'),
(84836, 'https://ror.org/05rd0jh74', 'en', 1, 'https://ror.org/05rd0jh74 Great Lakes Colleges Association'),
(84837, 'https://ror.org/05retmr68', 'en', 1, 'https://ror.org/05retmr68 European Consortium for Political Research'),
(84838, 'https://ror.org/05rgme147', 'en', 1, 'https://ror.org/05rgme147 FitzPatrick Institute of African Ornithology'),
(84839, 'https://ror.org/05rgwws51', 'en', 1, 'https://ror.org/05rgwws51 Institute of Fluid Physics 流体物理研究所'),
(84840, 'https://ror.org/05rmt2h07', 'en', 1, 'https://ror.org/05rmt2h07 The Prostate Centre'),
(84841, 'https://ror.org/05rpz9q70', 'no_lang_code', 1, 'https://ror.org/05rpz9q70 Myriad Genetics'),
(84842, 'https://ror.org/05rq8j339', 'en', 1, 'https://ror.org/05rq8j339 Jichi Medical University Saitama Medical Center č‡Ŗę²»åŒ»ē§‘å¤§å­¦é™„å±žć•ć„ćŸć¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(84843, 'https://ror.org/05rs3pv16', 'en', 1, 'https://ror.org/05rs3pv16 Chongqing Three Gorges University é‡åŗ†äø‰å³”å­¦é™¢'),
(84844, 'https://ror.org/05rvhh551', 'en', 1, 'https://ror.org/05rvhh551 Alliance for Public Health ŠŠ»ŃŒŃŠ½Ń Š³Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ¾Š³Š¾ зГоров''я'),
(84845, 'https://ror.org/05rvzq326', 'no_lang_code', 1, 'https://ror.org/05rvzq326 Ethiopian Biodiversity Institute'),
(84846, 'https://ror.org/05rwzhy90', 'en', 1, 'https://ror.org/05rwzhy90 Melbourne Genomics Health Alliance'),
(84847, 'https://ror.org/05s0j2r87', 'en', 1, 'https://ror.org/05s0j2r87 Canadian Society of Plastic Surgeons'),
(84848, 'https://ror.org/05s0pme69', 'no_lang_code', 1, 'https://ror.org/05s0pme69 AMAG Pharmaceuticals (United States)'),
(84849, 'https://ror.org/05s16e423', 'es', 1, 'https://ror.org/05s16e423 Biblioteca Nacional de Ciencias de la Salud National Library of Health Sciences'),
(84850, 'https://ror.org/05s1jm910', 'pt', 1, 'https://ror.org/05s1jm910 Associação Projecto Vitó'),
(84851, 'https://ror.org/05s23vf58', 'de', 1, 'https://ror.org/05s23vf58 Hirslanden Andreasklinik Cham Zug'),
(84852, 'https://ror.org/05s41sf03', 'en', 1, 'https://ror.org/05s41sf03 Baikal Nature Reserve Š‘Š°Š¹ŠŗŠ°ĢŠ»ŃŒŃŠŗŠøŠ¹ запове́Гник'),
(84853, 'https://ror.org/05s41xv68', 'en', 1, 'https://ror.org/05s41xv68 Dolishniy Institute of Regional Research of NAS of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ім. М. І. Š”Š¾Š»Ń–ŃˆŠ½ŃŒŠ¾Š³Š¾ ŠŠŠ Š£ŠŗŃ€Š°Ń—Š½ŠøŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ім. М. І. Š”Š¾Š»Ń–ŃˆŠ½ŃŒŠ¾Š³Š¾ ŠŠŠ України'),
(84854, 'https://ror.org/05s5xvk70', 'en', 1, 'https://ror.org/05s5xvk70 Einstein Center for Neurosciences Berlin'),
(84855, 'https://ror.org/05s6r7486', 'en', 1, 'https://ror.org/05s6r7486 European Resuscitation Council'),
(84856, 'https://ror.org/05s7cyn19', 'en', 1, 'https://ror.org/05s7cyn19 National Medical Research Center of Dentistry and Maxillofacial Surgery Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стоматологии Šø Ń‡ŠµŠ»ŃŽŃŃ‚Š½Š¾-лицевой Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(84857, 'https://ror.org/05s9cjr09', 'en', 1, 'https://ror.org/05s9cjr09 Wildlife Conservation Society Fiji'),
(84858, 'https://ror.org/05sa44m96', 'no_lang_code', 1, 'https://ror.org/05sa44m96 Alkermes (Ireland)'),
(84859, 'https://ror.org/05scvw539', 'en', 1, 'https://ror.org/05scvw539 United States Trade and Development Agency'),
(84860, 'https://ror.org/05sf7q250', 'no_lang_code', 1, 'https://ror.org/05sf7q250 Emka Technologies (Canada)'),
(84861, 'https://ror.org/05sh7tb37', 'en', 1, 'https://ror.org/05sh7tb37 ARC Centre of Excellence for Transformative Meta-Optical Systems'),
(84862, 'https://ror.org/05sh9vm75', 'no_lang_code', 1, 'https://ror.org/05sh9vm75 Dr Falk Pharma (Germany)'),
(84863, 'https://ror.org/05sj5k538', 'en', 1, 'https://ror.org/05sj5k538 Opole University of Technology Politechnika Opolska'),
(84864, 'https://ror.org/05skgxb48', 'en', 1, 'https://ror.org/05skgxb48 Arab International University Ō±Ö€Õ”Õ¢Õ”ÕÆÕ”Õ¶ Õ“Õ«Õ»Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© الخاصة'),
(84865, 'https://ror.org/05skpc353', 'no_lang_code', 1, 'https://ror.org/05skpc353 TriNetX (United States)'),
(84866, 'https://ror.org/05smbmp94', 'en', 1, 'https://ror.org/05smbmp94 Ministry of Health'),
(84867, 'https://ror.org/05smy5d35', 'en', 1, 'https://ror.org/05smy5d35 The Society for Academic Primary Care'),
(84868, 'https://ror.org/05snbjh64', 'en', 1, 'https://ror.org/05snbjh64 Zoological Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Зоологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Российской акаГемии наук'),
(84869, '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'),
(84870, 'https://ror.org/05sv6xe54', 'no_lang_code', 1, 'https://ror.org/05sv6xe54 VisMederi (Italy)'),
(84871, 'https://ror.org/05sv9g179', 'no_lang_code', 1, 'https://ror.org/05sv9g179 Yunkawasi'),
(84872, 'https://ror.org/05sy2ev34', 'en', 1, 'https://ror.org/05sy2ev34 Centre for Sight'),
(84873, 'https://ror.org/05sy8gb82', 'en', 1, 'https://ror.org/05sy8gb82 W.M. Keck Science Center'),
(84874, 'https://ror.org/05syxk111', 'en', 1, 'https://ror.org/05syxk111 Advocate Heart Institute'),
(84875, '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"'),
(84876, 'https://ror.org/05t5n2z26', 'fr', 1, 'https://ror.org/05t5n2z26 Expression GƩnƩtique Microbienne'),
(84877, 'https://ror.org/05t5p0m89', 'en', 1, 'https://ror.org/05t5p0m89 Turkish Society of Cardiology Türk Kardiyoloji Derneği'),
(84878, 'https://ror.org/05t6q2334', 'en', 1, 'https://ror.org/05t6q2334 Private University of the North Universidad Privada del Norte'),
(84879, 'https://ror.org/05t7fg049', 'en', 1, 'https://ror.org/05t7fg049 Puerto Rico Sea Grant'),
(84880, 'https://ror.org/05tas6715', 'en', 1, 'https://ror.org/05tas6715 Nasjonalt utviklingssenter for barn og unge The Norwegian Center for Child Behavioral Development'),
(84881, 'https://ror.org/05tb15k40', 'en', 1, 'https://ror.org/05tb15k40 Centro ClĆ­nico AcadĆ©mico – Braga Clinical Academic Center of Braga'),
(84882, 'https://ror.org/05th9sq46', 'en', 1, 'https://ror.org/05th9sq46 Salt Science Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚½ćƒ«ćƒˆćƒ»ć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶č²”å›£'),
(84883, 'https://ror.org/05tjeyz47', 'en', 1, 'https://ror.org/05tjeyz47 Energy Technologies Institute'),
(84884, 'https://ror.org/05tk3rm67', 'en', 1, 'https://ror.org/05tk3rm67 Regional Obstetrical Consultants'),
(84885, 'https://ror.org/05tkt0g15', 'no_lang_code', 1, 'https://ror.org/05tkt0g15 Bio4Dreams (Italy)'),
(84886, 'https://ror.org/05tkv2291', 'en', 1, 'https://ror.org/05tkv2291 Institute of Political Studies Instytut Studiów Politycznych'),
(84887, 'https://ror.org/05tkzma19', 'en', 1, 'https://ror.org/05tkzma19 Indira Gandhi Centre for Atomic Research इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤…ą¤£ą„ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤° ą®‡ą®ØąÆą®¤ą®æą®°ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ அணு ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ąÆˆą®Æą®®ąÆ'),
(84888, 'https://ror.org/05tngxm14', 'en', 1, 'https://ror.org/05tngxm14 National Supercomputing Center of Tianjin å›½å®¶č¶…ēŗ§č®”ē®—å¤©ę“„äø­åæƒ'),
(84889, 'https://ror.org/05tqpj460', 'en', 1, 'https://ror.org/05tqpj460 Austrian Institute for SME Research KMU Forschung Austria'),
(84890, 'https://ror.org/05tqx4s13', 'en', 1, 'https://ror.org/05tqx4s13 RIKEN Nishina Center å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ä»ē§‘åŠ é€Ÿå™Øē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(84891, 'https://ror.org/05tr89b24', 'en', 1, 'https://ror.org/05tr89b24 American Society for Environmental History'),
(84892, 'https://ror.org/05tst3487', 'de', 1, 'https://ror.org/05tst3487 ParkinsonFonds Deutschland gGmbH'),
(84893, 'https://ror.org/05twjp994', 'en', 1, 'https://ror.org/05twjp994 Gregor Mendel Institute of Molecular Plant Biology'),
(84894, 'https://ror.org/05tx3bv88', 'en', 1, 'https://ror.org/05tx3bv88 Austin Peay State University Universidad Estatal Austin Peay'),
(84895, 'https://ror.org/05v1qt749', 'en', 1, 'https://ror.org/05v1qt749 Centro Nacional de MetrologĆ­a National Metrology Center'),
(84896, 'https://ror.org/05v2ymc15', 'no_lang_code', 1, 'https://ror.org/05v2ymc15 Nisshin Steel (Japan) ę—„ę–°č£½é‹¼ę Ŗå¼ä¼šē¤¾'),
(84897, 'https://ror.org/05v33vv40', 'no_lang_code', 1, 'https://ror.org/05v33vv40 Cerebrotech Medical Systems (United States)'),
(84898, 'https://ror.org/05v4txf92', 'no', 1, 'https://ror.org/05v4txf92 Sunnaas Hospital Sunnaas sykehus'),
(84899, 'https://ror.org/05v9dz963', 'es', 1, 'https://ror.org/05v9dz963 Instituto MƩdico Rƭo Cuarto'),
(84900, 'https://ror.org/05v9jew52', 'no_lang_code', 1, 'https://ror.org/05v9jew52 National Park Braslavskie Ozera ŠŠ°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Ń‹ парк Š‘Ń€Š°ŃŠ»Š°ŃžŃŠŗŃ–Ń азёры'),
(84901, 'https://ror.org/05vazzh87', 'pt', 1, 'https://ror.org/05vazzh87 Centro de Reprodução Humana Prof. Franco Junior'),
(84902, 'https://ror.org/05vccrs41', 'en', 1, 'https://ror.org/05vccrs41 Adams State University'),
(84903, 'https://ror.org/05veges73', 'en', 1, 'https://ror.org/05veges73 National Museum of Mongolia ŠœŠ¾Š½Š³Š¾Š»Ń‹Š½ ŅÆŠ½Š“ŃŃŠ½ŠøŠ¹ түүхийн музей'),
(84904, 'https://ror.org/05vfhev56', 'en', 1, 'https://ror.org/05vfhev56 Macmillan Cancer Support'),
(84905, 'https://ror.org/05vfxvp80', 'en', 1, 'https://ror.org/05vfxvp80 University of St. Thomas - Minnesota'),
(84906, 'https://ror.org/05vjq0r17', 'en', 1, 'https://ror.org/05vjq0r17 Okayama Foundation for Science and Technology å…¬ē›Šč²”å›£ę³•äŗŗ 岔山巄学振興会'),
(84907, 'https://ror.org/05vjx2089', 'en', 1, 'https://ror.org/05vjx2089 Laboratory of Racing Chemistry å…¬ē›Šč²”å›£ę³•äŗŗē«¶čµ°é¦¬ē†åŒ–å­¦ē ”ē©¶ę‰€'),
(84908, 'https://ror.org/05vjzsz83', 'no_lang_code', 1, 'https://ror.org/05vjzsz83 FinVector (Finland)'),
(84909, 'https://ror.org/05vk2g845', 'en', 1, 'https://ror.org/05vk2g845 Institute for Microelectronics and Microsystems Istituto per la Microelettronica e Microsistemi'),
(84910, 'https://ror.org/05vm0ed18', 'no_lang_code', 1, 'https://ror.org/05vm0ed18 Uber AI (United States)'),
(84911, 'https://ror.org/05vmk8z81', 'en', 1, 'https://ror.org/05vmk8z81 Norsk jernbanemuseum Norwegian Railway Museum'),
(84912, 'https://ror.org/05vna4324', 'en', 1, 'https://ror.org/05vna4324 Science and Technology Development Fund'),
(84913, 'https://ror.org/05vqpm153', 'de', 1, 'https://ror.org/05vqpm153 GastroZentrum Hirslanden Zürich'),
(84914, 'https://ror.org/05vrdt216', 'en', 1, 'https://ror.org/05vrdt216 Hamamatsu Medical Center å…¬ē›Šč²”å›£ę³•äŗŗęµœę¾åø‚åŒ»ē™‚å…¬ē¤¾ęµœę¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(84915, 'https://ror.org/05vs9tj88', 'no_lang_code', 1, 'https://ror.org/05vs9tj88 BMW (Germany) Bayerische Motoren Werke'),
(84916, 'https://ror.org/05vtdph75', 'en', 1, 'https://ror.org/05vtdph75 Chartered Institute of Building'),
(84917, 'https://ror.org/05vv9dr68', 'de', 1, 'https://ror.org/05vv9dr68 Medizinisches Zentrum für Seelische Gesundheit'),
(84918, 'https://ror.org/05vx2e607', 'en', 1, 'https://ror.org/05vx2e607 Blond McIndoe Research Foundation'),
(84919, 'https://ror.org/05vx4by93', 'en', 1, 'https://ror.org/05vx4by93 The Princes Trust'),
(84920, 'https://ror.org/05vxxvp60', 'no_lang_code', 1, 'https://ror.org/05vxxvp60 Deutsche Flugsicherung (Germany)'),
(84921, 'https://ror.org/05vzagq31', 'no_lang_code', 1, 'https://ror.org/05vzagq31 Prolepsis Institute Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Προληπτικής Περιβαλλοντικής & Ī•ĻĪ³Ī±ĻƒĪ¹Ī±ĪŗĪ®Ļ‚ Ιατρικής'),
(84922, 'https://ror.org/05w06bw34', 'en', 1, 'https://ror.org/05w06bw34 Society for Research in Child Development'),
(84923, 'https://ror.org/05w13qg40', 'en', 1, 'https://ror.org/05w13qg40 D. Mendeleyev University of Chemical Technology of Russia Российский химико-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. И. МенГелеева'),
(84924, 'https://ror.org/05w1kdn42', 'de', 1, 'https://ror.org/05w1kdn42 LWL-UniversitƤtsklinik Hamm'),
(84925, 'https://ror.org/05w3wze89', 'it', 1, 'https://ror.org/05w3wze89 Centro di Terapia Metacognitiva Interpersonale'),
(84926, 'https://ror.org/05w4yhe96', 'de', 1, 'https://ror.org/05w4yhe96 Auschwitz Birkenau Państwowe Muzeum Auschwitz-Birkenau w Oświęcimiu'),
(84927, 'https://ror.org/05w88pj86', 'en', 1, 'https://ror.org/05w88pj86 Institute for Biological Systems Istituto per i Sistemi Biologici'),
(84928, 'https://ror.org/05w8df681', 'nl', 1, 'https://ror.org/05w8df681 Deventer Ziekenhuis'),
(84929, 'https://ror.org/05w8njj13', 'no_lang_code', 1, 'https://ror.org/05w8njj13 Cooley (United States)'),
(84930, 'https://ror.org/05wctbc12', 'en', 1, 'https://ror.org/05wctbc12 Chemical Genomics Centre Zentrum für Chemische Genomik'),
(84931, 'https://ror.org/05wdbfp45', 'en', 1, 'https://ror.org/05wdbfp45 North South University ą¦Øą¦°ą§ą¦„ সাউ঄ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(84932, 'https://ror.org/05wf2rt56', 'en', 1, 'https://ror.org/05wf2rt56 State Scientific Institution "Ukrainian Institute of Scientific and Technical Expertise and Information" Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ науково-технічної експертизи та інформації»'),
(84933, 'https://ror.org/05wfvmd18', 'fr', 1, 'https://ror.org/05wfvmd18 Institut SupƩrieur de Technologie MƩdicale'),
(84934, 'https://ror.org/05wgnjg63', 'en', 1, 'https://ror.org/05wgnjg63 Japan Brain Foundation'),
(84935, 'https://ror.org/05wgt8358', 'en', 1, 'https://ror.org/05wgt8358 Karelian Research Centre ŠšŠ°Ń€ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(84936, 'https://ror.org/05wks2t16', 'en', 1, 'https://ror.org/05wks2t16 Kitami Institute of Technology åŒ—č¦‹å·„ę„­å¤§å­¦'),
(84937, 'https://ror.org/05wmhj005', 'en', 1, 'https://ror.org/05wmhj005 Finlands SamhƤllsvetenskapliga Dataarkiv Finnish Social Science Data Archive Yhteiskuntatieteellinen tietoarkisto'),
(84938, 'https://ror.org/05wq1qf03', 'en', 1, 'https://ror.org/05wq1qf03 Irkutsk Regional Museum of Local History Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ областной краевеГческий музей'),
(84939, 'https://ror.org/05wq7hj83', 'no_lang_code', 1, 'https://ror.org/05wq7hj83 XeUS Technologies (Cyprus)'),
(84940, 'https://ror.org/05wr4m486', 'no_lang_code', 1, 'https://ror.org/05wr4m486 Frontier Geosciences (Canada)'),
(84941, 'https://ror.org/05wrggx03', 'no_lang_code', 1, 'https://ror.org/05wrggx03 Dentsply Sirona (United States)'),
(84942, 'https://ror.org/05wry3r65', 'no_lang_code', 1, 'https://ror.org/05wry3r65 Analytical Biosciences (China)'),
(84943, 'https://ror.org/05wtz9f44', 'en', 1, 'https://ror.org/05wtz9f44 Lampung University Universitas Lampung'),
(84944, 'https://ror.org/05ww4z228', 'no_lang_code', 1, 'https://ror.org/05ww4z228 ESI Group (France)'),
(84945, 'https://ror.org/05ww61844', 'en', 1, 'https://ror.org/05ww61844 Tai Poutini Polytechnic'),
(84946, 'https://ror.org/05wwqmm86', 'no_lang_code', 1, 'https://ror.org/05wwqmm86 P2i (United Kingdom)'),
(84947, 'https://ror.org/05wxfpw56', 'en', 1, 'https://ror.org/05wxfpw56 Orthopaedic Research Foundation'),
(84948, 'https://ror.org/05wyfzv25', 'no_lang_code', 1, 'https://ror.org/05wyfzv25 Tissue Dynamics (Israel)'),
(84949, 'https://ror.org/05wyn3p10', 'no_lang_code', 1, 'https://ror.org/05wyn3p10 Nippon Shinyaku (Japan) ę—„ęœ¬ę–°č–¬ę Ŗå¼ä¼šē¤¾'),
(84950, 'https://ror.org/05wzb4s27', 'en', 1, 'https://ror.org/05wzb4s27 Zhengzhou Institute of Emerging Industrial Technology éƒ‘å·žäø­ē§‘ę–°å…“äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(84951, 'https://ror.org/05x0by667', 'no_lang_code', 1, 'https://ror.org/05x0by667 Fuji Kiko (Japan) åÆŒå£«ę©Ÿå·„ę Ŗå¼ä¼šē¤¾'),
(84952, 'https://ror.org/05x21tp94', 'en', 1, 'https://ror.org/05x21tp94 Zaozhuang University'),
(84953, 'https://ror.org/05x23rx38', 'en', 1, 'https://ror.org/05x23rx38 Shizuoka Children''s Hospital é™å²”ēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(84954, 'https://ror.org/05x3jck08', 'en', 1, 'https://ror.org/05x3jck08 University Hospitals Plymouth NHS Trust'),
(84955, 'https://ror.org/05x4p3529', 'en', 1, 'https://ror.org/05x4p3529 Conservation and Production Research Laboratory'),
(84956, 'https://ror.org/05x510r30', 'en', 1, 'https://ror.org/05x510r30 Guizhou Institute of Technology č“µå·žē†å·„å­¦é™¢'),
(84957, 'https://ror.org/05x56xv16', 'en', 1, 'https://ror.org/05x56xv16 Skin Health Institute'),
(84958, 'https://ror.org/05x7v6y85', 'en', 1, 'https://ror.org/05x7v6y85 Framsenteret The FRAM Centre'),
(84959, 'https://ror.org/05x83ep82', 'en', 1, 'https://ror.org/05x83ep82 Lviv University of Business and Law Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±Ń–Š·Š½ŠµŃŃƒ та права'),
(84960, 'https://ror.org/05x85k702', 'en', 1, 'https://ror.org/05x85k702 Qingdao Center of Resource Chemistry and New Materials é’å²›åø‚čµ„ęŗåŒ–å­¦äøŽę–°ęę–™ē ”ē©¶äø­åæƒ'),
(84961, 'https://ror.org/05xaz7757', 'en', 1, 'https://ror.org/05xaz7757 Ministerie van Sociale Zaken en Werkgelegenheid Ministry of Social Affairs and Employment'),
(84962, 'https://ror.org/05xbc7p40', 'fr', 1, 'https://ror.org/05xbc7p40 MĆ©decins Sans FrontiĆØres Ų£Ų·ŲØŲ§Ų” بلا حدود'),
(84963, 'https://ror.org/05xcmte05', 'en', 1, 'https://ror.org/05xcmte05 Instituto Milenio de BiologĆ­a Integrativa Millennium Institute for Integrative Biology'),
(84964, 'https://ror.org/05xe40a72', 'en', 1, 'https://ror.org/05xe40a72 Foundation for Biomedical Research and Innovation å…ˆē«ÆåŒ»ē™‚ęŒÆčˆˆč²”å›£'),
(84965, 'https://ror.org/05xfjtp79', 'en', 1, 'https://ror.org/05xfjtp79 Physico-Chemical Institute of Environmental and Human Protection Фізико-хімічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ охорони навколишнього сереГовища та Š»ŃŽŠ“ини'),
(84966, 'https://ror.org/05xh28b78', 'en', 1, 'https://ror.org/05xh28b78 American Laryngological Association'),
(84967, 'https://ror.org/05xqthq76', 'en', 1, 'https://ror.org/05xqthq76 Biological Control of Insects Research Laboratory'),
(84968, 'https://ror.org/05xrcj819', 'it', 1, 'https://ror.org/05xrcj819 Azienda Ospedaliera Universitaria Pisana University Hospital of Pisa'),
(84969, 'https://ror.org/05xrvq528', 'en', 1, 'https://ror.org/05xrvq528 Adventist Hinsdale Hospital'),
(84970, 'https://ror.org/05xsppr58', 'no_lang_code', 1, 'https://ror.org/05xsppr58 Italfarmaco (Italy)'),
(84971, 'https://ror.org/05xsxgs79', 'en', 1, 'https://ror.org/05xsxgs79 Arnold Arboretum'),
(84972, 'https://ror.org/05xt5sj74', 'no_lang_code', 1, 'https://ror.org/05xt5sj74 S&B Christ Consulting (United States)'),
(84973, 'https://ror.org/05xvyz406', 'en', 1, 'https://ror.org/05xvyz406 Genetics Society of America');
INSERT INTO `rors` VALUES
(84974, 'https://ror.org/05xwd1c44', 'no_lang_code', 1, 'https://ror.org/05xwd1c44 Transcend Vivoscope (China) åŒ—äŗ¬č¶…ē»“ę™Æē”Ÿē‰©ē§‘ęŠ€'),
(84975, 'https://ror.org/05xy09e29', 'en', 1, 'https://ror.org/05xy09e29 Fort Keogh Livestock and Range Research Laboratory'),
(84976, 'https://ror.org/05xy1nn52', 'en', 1, 'https://ror.org/05xy1nn52 Multiscale Bioimaging'),
(84977, 'https://ror.org/05xz2k587', 'fr', 1, 'https://ror.org/05xz2k587 Paris AƩroport'),
(84978, 'https://ror.org/05xz2nh53', 'no_lang_code', 1, 'https://ror.org/05xz2nh53 Life Nepal जिवन ą¤Øą„‡ą¤Ŗą¤¾ą¤²'),
(84979, 'https://ror.org/05y122w12', 'en', 1, 'https://ror.org/05y122w12 Lehmann Eye Center'),
(84980, 'https://ror.org/05y2jpg52', 'en', 1, 'https://ror.org/05y2jpg52 Joint Attosecond Science Laboratory'),
(84981, 'https://ror.org/05y2kwf93', 'en', 1, 'https://ror.org/05y2kwf93 First United Methodist Church'),
(84982, 'https://ror.org/05y3ezc96', 'no_lang_code', 1, 'https://ror.org/05y3ezc96 Loblaw Companies (Canada)'),
(84983, 'https://ror.org/05y3qh794', 'en', 1, 'https://ror.org/05y3qh794 Nottingham University Hospitals NHS Trust'),
(84984, 'https://ror.org/05y44as61', 'en', 1, 'https://ror.org/05y44as61 Semnan University of Medical Sciences'),
(84985, 'https://ror.org/05y4fay10', 'en', 1, 'https://ror.org/05y4fay10 VIB-VUB Laboratory Myeloid Cell Immunology'),
(84986, 'https://ror.org/05y632398', 'en', 1, 'https://ror.org/05y632398 Institute for Animal Reproduction äø€čˆ¬č²”å›£ę³•äŗŗå‹•ē‰©ē¹ę®–ē ”ē©¶ę‰€'),
(84987, 'https://ror.org/05y9abj60', 'en', 1, 'https://ror.org/05y9abj60 Comunidades Latinas Unidas En Servicio'),
(84988, 'https://ror.org/05yaa9j15', 'en', 1, 'https://ror.org/05yaa9j15 Hubei Provincial Department of Education'),
(84989, 'https://ror.org/05yadcm11', 'en', 1, 'https://ror.org/05yadcm11 Institution of Occupational Safety and Health'),
(84990, 'https://ror.org/05yb2qd36', 'en', 1, 'https://ror.org/05yb2qd36 Global Wildlife Conservation'),
(84991, 'https://ror.org/05yb6xa82', 'en', 1, 'https://ror.org/05yb6xa82 Myelin Repair Foundation'),
(84992, 'https://ror.org/05ycxzd89', 'en', 1, 'https://ror.org/05ycxzd89 Economic Research Service'),
(84993, 'https://ror.org/05ydjnb78', 'en', 1, 'https://ror.org/05ydjnb78 University of Passau UniversitƤt Passau'),
(84994, 'https://ror.org/05yekbx03', 'en', 1, 'https://ror.org/05yekbx03 Badan Standardisasi Nasional National Standardization Agency of Indonesia'),
(84995, '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'),
(84996, 'https://ror.org/05ygr1m94', 'no_lang_code', 1, 'https://ror.org/05ygr1m94 Kone (Finland)'),
(84997, 'https://ror.org/05yk2ee68', 'en', 1, 'https://ror.org/05yk2ee68 Olympic Medical Center'),
(84998, 'https://ror.org/05yk8hs36', 'no_lang_code', 1, 'https://ror.org/05yk8hs36 ID Pharma (Japan) ę Ŗå¼ä¼šē¤¾IDćƒ•ć‚”ćƒ¼ćƒž'),
(84999, 'https://ror.org/05ykb3m36', 'en', 1, 'https://ror.org/05ykb3m36 Helse- og omsorgsministeren Ministry of Health and Care Services'),
(85000, 'https://ror.org/05ykg3d23', 'no_lang_code', 1, 'https://ror.org/05ykg3d23 WƤrtsilƤ (Finland)'),
(85001, 'https://ror.org/0000p0n60', 'no_lang_code', 1, 'https://ror.org/0000p0n60 Otis (United States)'),
(85002, 'https://ror.org/00013q465', 'en', 1, 'https://ror.org/00013q465 Pontifical Catholic University of Peru Pontificia Universidad Católica del Perú'),
(85003, 'https://ror.org/00048tr39', 'en', 1, 'https://ror.org/00048tr39 Demos'),
(85004, 'https://ror.org/00073tb80', 'en', 1, 'https://ror.org/00073tb80 State Key Laboratory of Pollution Control and Resource Reuse ę±”ęŸ“ęŽ§åˆ¶äøŽčµ„ęŗåŒ–ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(85005, 'https://ror.org/0008hf507', 'en', 0, 'https://ror.org/0008hf507 Family Health Council Of Central Pennsylvania'),
(85006, 'https://ror.org/0008wzh48', 'en', 1, 'https://ror.org/0008wzh48 Royal Marsden NHS Foundation Trust'),
(85007, 'https://ror.org/0009ezc57', 'en', 1, 'https://ror.org/0009ezc57 Mach-Gaensslen Foundation'),
(85008, 'https://ror.org/000c7nc82', 'no_lang_code', 0, 'https://ror.org/000c7nc82 Counsyl (United States)'),
(85009, 'https://ror.org/000cww991', 'no_lang_code', 0, 'https://ror.org/000cww991 Potentia Pharmaceuticals (United States)'),
(85010, 'https://ror.org/000d53575', 'en', 0, 'https://ror.org/000d53575 Okazaki National Research Institutes å²”å“Žå›½ē«‹å…±åŒē ”ē©¶ę©Ÿę§‹'),
(85011, 'https://ror.org/000dbcc61', 'fr', 1, 'https://ror.org/000dbcc61 CEA LIST'),
(85012, 'https://ror.org/000epg022', 'en', 1, 'https://ror.org/000epg022 Regional Centre for Training in Aerospace Surveys'),
(85013, 'https://ror.org/000fxgx19', 'en', 1, 'https://ror.org/000fxgx19 SUNY Polytechnic Institute'),
(85014, 'https://ror.org/000h7d865', 'en', 0, 'https://ror.org/000h7d865 University of New Mexico Gallup'),
(85015, 'https://ror.org/000k40t10', 'en', 1, 'https://ror.org/000k40t10 Heiwa Nakajima Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¹³å’Œäø­å³¶č²”å›£'),
(85016, 'https://ror.org/000kedf85', 'no_lang_code', 1, 'https://ror.org/000kedf85 Labrida (Norway)'),
(85017, 'https://ror.org/000nes056', 'en', 1, 'https://ror.org/000nes056 Swedish Transport Administration'),
(85018, 'https://ror.org/000nhq538', 'fr', 1, 'https://ror.org/000nhq538 Institut Necker Enfants Malades'),
(85019, 'https://ror.org/000pdyj29', 'en', 0, 'https://ror.org/000pdyj29 Madison University'),
(85020, 'https://ror.org/000qsm026', 'no_lang_code', 0, 'https://ror.org/000qsm026 Rete Ventures S.C.R.L.'),
(85021, 'https://ror.org/000r5ge73', 'en', 1, 'https://ror.org/000r5ge73 Hypertension Canada'),
(85022, 'https://ror.org/000vby968', 'no_lang_code', 1, 'https://ror.org/000vby968 Pear Therapeutics (United States)'),
(85023, 'https://ror.org/000wh6t45', 'en', 1, 'https://ror.org/000wh6t45 Llywodraeth Cymru Welsh Government'),
(85024, 'https://ror.org/000wp7187', 'en', 0, 'https://ror.org/000wp7187 Broward County Division of Libraries'),
(85025, 'https://ror.org/000y25914', 'no_lang_code', 1, 'https://ror.org/000y25914 Tine (Norway)'),
(85026, 'https://ror.org/000z9nb11', 'en', 0, 'https://ror.org/000z9nb11 Chengdu Branch, Chinese Academy of Sciences äø­å›½ē§‘å­¦é™¢ęˆéƒ½åˆ†é™¢'),
(85027, 'https://ror.org/000zsjk11', 'no_lang_code', 1, 'https://ror.org/000zsjk11 Dr. F.P. Fischer-Stichting (Netherlands)'),
(85028, 'https://ror.org/0010b6s72', 'en', 1, 'https://ror.org/0010b6s72 Tianjin Agricultural University å¤©ę“„å†œå­¦é™¢'),
(85029, 'https://ror.org/0010rmz96', 'en', 0, 'https://ror.org/0010rmz96 Yokkaichi University Junior College å››ę—„åø‚å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(85030, 'https://ror.org/0011f2t53', 'nl', 1, 'https://ror.org/0011f2t53 Prinses Beatrix Spierfonds'),
(85031, 'https://ror.org/0016r1x19', 'en', 0, 'https://ror.org/0016r1x19 Women''s and Children''s Hospital'),
(85032, 'https://ror.org/0016t4p10', 'en', 1, 'https://ror.org/0016t4p10 Osaka Kidney Foundation'),
(85033, 'https://ror.org/0018qct18', 'en', 1, 'https://ror.org/0018qct18 National Library of the Philippines'),
(85034, 'https://ror.org/001ajjs72', 'en', 1, 'https://ror.org/001ajjs72 Cambridge Philosophical Society'),
(85035, 'https://ror.org/001amd982', 'en', 1, 'https://ror.org/001amd982 Noida International University ą¤Øą„‹ą¤ą¤”ą¤¾ ą¤‡ą¤‚ą¤Ÿą¤°ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(85036, 'https://ror.org/001cj5727', 'en', 1, 'https://ror.org/001cj5727 Society for Maternal-Fetal Medicine'),
(85037, 'https://ror.org/001fsh058', 'en', 1, 'https://ror.org/001fsh058 Irirangi te Motu NZ on Air'),
(85038, 'https://ror.org/001fszg24', 'en', 1, 'https://ror.org/001fszg24 Punxsutawney Area Hospital'),
(85039, 'https://ror.org/001gmya32', 'en', 1, 'https://ror.org/001gmya32 John Carroll University'),
(85040, 'https://ror.org/001hz7s79', 'en', 0, 'https://ror.org/001hz7s79 Emory University School of Medicine'),
(85041, 'https://ror.org/001jdw720', 'en', 1, 'https://ror.org/001jdw720 Arc of the Piedmont'),
(85042, 'https://ror.org/001kwz384', 'en', 1, 'https://ror.org/001kwz384 Histiocytosis Association'),
(85043, 'https://ror.org/001mv3k30', 'en', 1, 'https://ror.org/001mv3k30 National Rosacea Society'),
(85044, 'https://ror.org/001n0xs04', 'en', 0, 'https://ror.org/001n0xs04 Northland Community and Technical College'),
(85045, 'https://ror.org/001q8cd96', 'en', 1, 'https://ror.org/001q8cd96 New Hampshire College & University Council'),
(85046, 'https://ror.org/001rf1g63', 'en', 0, 'https://ror.org/001rf1g63 Bashkir Academy of Public Administration and Management Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при Главе Республики Š‘Š°ŃˆŠŗŠ¾Ń€Ń‚Š¾ŃŃ‚Š°Š½'),
(85047, 'https://ror.org/001s7m607', 'en', 0, 'https://ror.org/001s7m607 Organisation for Economic Co-operation and Development'),
(85048, 'https://ror.org/001ssbw23', 'en', 0, 'https://ror.org/001ssbw23 King Stanisław Leszczyński Higher School of Humanities'),
(85049, 'https://ror.org/001ws2a36', 'en', 1, 'https://ror.org/001ws2a36 National Institute Of Technology Silchar ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø, শিলচর, অাসাম'),
(85050, 'https://ror.org/001xj8m36', 'en', 1, 'https://ror.org/001xj8m36 Institut za antropologiju Institute for Anthropological Research'),
(85051, 'https://ror.org/001xnr984', 'en', 0, 'https://ror.org/001xnr984 Northern Virginia Community College'),
(85052, 'https://ror.org/001zbj766', 'en', 1, 'https://ror.org/001zbj766 Mathematical Research Institute of Oberwolfach Mathematisches Forschungsinstitut Oberwolfach'),
(85053, 'https://ror.org/0022h3p69', 'en', 1, 'https://ror.org/0022h3p69 Canadian Orthopaedic Trauma Society'),
(85054, 'https://ror.org/00247dh76', 'en', 1, 'https://ror.org/00247dh76 National Computer Network Emergency Response Technical Team/Coordination Center of Chinar å›½å®¶č®”ē®—ęœŗē½‘ē»œåŗ”ę€„ęŠ€ęœÆå¤„ē†åč°ƒäø­åæƒ'),
(85055, 'https://ror.org/00259ge12', 'en', 1, 'https://ror.org/00259ge12 Children Living with Inherited Metabolic Diseases'),
(85056, 'https://ror.org/00265c946', 'en', 1, 'https://ror.org/00265c946 Public Health Wales'),
(85057, 'https://ror.org/00274wg63', 'en', 1, 'https://ror.org/00274wg63 VƤinƶ and Laina Kivi Foundation VƤinƶ ja Laina Kiven SƤƤtiƶ'),
(85058, 'https://ror.org/0027frf26', 'en', 1, 'https://ror.org/0027frf26 Kaiser Permanente Washington Health Research Institute'),
(85059, 'https://ror.org/0027yp743', 'en', 1, 'https://ror.org/0027yp743 Okinawa Churashima Foundation ę²–ēø„ē¾Žć‚‰å³¶č²”å›£'),
(85060, 'https://ror.org/0028q1g19', 'en', 1, 'https://ror.org/0028q1g19 Gunadarma University Universitas Gunadarma'),
(85061, 'https://ror.org/00292rj97', 'en', 1, 'https://ror.org/00292rj97 Gunnar Nilsson Cancer Foundation'),
(85062, 'https://ror.org/002c7gt96', 'en', 0, 'https://ror.org/002c7gt96 Daniel Webster College'),
(85063, 'https://ror.org/002eht127', 'en', 1, 'https://ror.org/002eht127 A. Lindsay & Olive B. O''Connor Foundation'),
(85064, 'https://ror.org/002hk8a14', 'en', 1, 'https://ror.org/002hk8a14 Samuel Neaman Institute for National Policy Research'),
(85065, 'https://ror.org/002j7gt32', 'en', 0, 'https://ror.org/002j7gt32 Penn State Shenango'),
(85066, 'https://ror.org/002j7n988', 'en', 1, 'https://ror.org/002j7n988 Atlas Network'),
(85067, 'https://ror.org/002jy7w74', 'en', 1, 'https://ror.org/002jy7w74 Zhejiang Research Institute of Chemical Industry ęµ™ę±ŸēœåŒ–å·„ē ”ē©¶é™¢'),
(85068, 'https://ror.org/002m7kv43', 'no_lang_code', 1, 'https://ror.org/002m7kv43 Peoples Gas (United States)'),
(85069, 'https://ror.org/002pd6e78', 'en', 1, 'https://ror.org/002pd6e78 Hospital General de Massachusetts Massachusetts General Hospital'),
(85070, 'https://ror.org/002wx1m18', 'en', 1, 'https://ror.org/002wx1m18 Centre of Excellence for Biosensors, Instrumentation and Process Control'),
(85071, 'https://ror.org/00326y568', 'es', 1, 'https://ror.org/00326y568 Universidad Juan Pablo II'),
(85072, 'https://ror.org/0034qmh92', 'en', 0, 'https://ror.org/0034qmh92 Svey Rieng University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžŸįŸ’įžœįž¶įž™įžšįŸ€įž„'),
(85073, 'https://ror.org/0036wpk65', 'en', 1, 'https://ror.org/0036wpk65 Institute for Transfusion Medicine'),
(85074, 'https://ror.org/003cs9s68', 'en', 1, 'https://ror.org/003cs9s68 Society for Social Studies of Science'),
(85075, 'https://ror.org/003e2jn43', 'pt', 1, 'https://ror.org/003e2jn43 Sociedade Brasileira de NeurociĆŖncias e Comportamento'),
(85076, 'https://ror.org/003e62v40', 'no_lang_code', 0, 'https://ror.org/003e62v40 GE Healthcare (Netherlands)'),
(85077, 'https://ror.org/003eyb898', 'en', 1, 'https://ror.org/003eyb898 National University of Computer and Emerging Sciences فاسٹ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ Ł†ŁŠŲ“Ł†Ł„ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ آف ŚŖŁ…Ł¾ŁŠŁˆŁ½Ų± Ų§ŁŠŁ†ŚŠ امرجنگ Ų³Ų§Ų¦Ł†Ų³Ų²ā€Ž'),
(85078, 'https://ror.org/003ghvj67', 'en', 1, 'https://ror.org/003ghvj67 McKnight Foundation'),
(85079, 'https://ror.org/003gkfx86', 'en', 1, 'https://ror.org/003gkfx86 North Denmark Region Region Nordjylland'),
(85080, 'https://ror.org/003gp7r92', 'no_lang_code', 0, 'https://ror.org/003gp7r92 Seoul Boramae Hospital ģ„œģšø ė³“ė¼ė§¤ 병원'),
(85081, 'https://ror.org/003gt3k37', 'en', 1, 'https://ror.org/003gt3k37 Vermont Oxford Network'),
(85082, 'https://ror.org/003q1s858', 'la', 1, 'https://ror.org/003q1s858 Caritas Roma'),
(85083, 'https://ror.org/003q4qk22', 'en', 1, 'https://ror.org/003q4qk22 Rainwater Charitable Foundation'),
(85084, 'https://ror.org/003qybm63', 'en', 1, 'https://ror.org/003qybm63 Black Belt Community Foundation'),
(85085, 'https://ror.org/003r3cg42', 'en', 1, 'https://ror.org/003r3cg42 National University الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© - Ų§Ł„Ų³ŁˆŲÆŲ§Ł†'),
(85086, 'https://ror.org/003s20294', 'es', 1, 'https://ror.org/003s20294 Centro Internacional de Entrenamiento e Investigaciones Medicas'),
(85087, 'https://ror.org/003sg7r95', 'no_lang_code', 1, 'https://ror.org/003sg7r95 X-wave Innovations (United States)'),
(85088, 'https://ror.org/003t7v050', 'en', 0, 'https://ror.org/003t7v050 Penn State Hazleton'),
(85089, 'https://ror.org/003tr6n25', 'en', 1, 'https://ror.org/003tr6n25 National Academy for Theatre and Film Arts ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ за театрално Šø филмово ŠøŠ·ŠŗŃƒŃŃ‚во ā€žŠšŃ€ŃŠŃŃ‚ŃŒŠ¾ Дарафов'),
(85090, 'https://ror.org/003v0n359', 'en', 0, 'https://ror.org/003v0n359 Saint Luke''s Hospita'),
(85091, 'https://ror.org/003wqpe41', 'fr', 1, 'https://ror.org/003wqpe41 Centre Technologique des RƩsidus Industriels'),
(85092, 'https://ror.org/003x8vn84', 'en', 1, 'https://ror.org/003x8vn84 The SUDD Institute'),
(85093, 'https://ror.org/003zqrx63', 'en', 1, 'https://ror.org/003zqrx63 Denver Museum of Nature and Science'),
(85094, 'https://ror.org/0040x4m25', 'en', 1, 'https://ror.org/0040x4m25 Vitreous Retina Macula Consultants of New York'),
(85095, 'https://ror.org/00412cg11', 'fi', 1, 'https://ror.org/00412cg11 Vatsatautien TutkimussƤƤtiƶ'),
(85096, 'https://ror.org/0041rwe58', 'en', 0, 'https://ror.org/0041rwe58 Utrecht Life Sciences'),
(85097, 'https://ror.org/0042f2034', 'pt', 1, 'https://ror.org/0042f2034 Faculdade Frassinetti do Recife'),
(85098, 'https://ror.org/00439sg65', 'en', 0, 'https://ror.org/00439sg65 European Screening Port'),
(85099, 'https://ror.org/0043ezw98', 'en', 1, 'https://ror.org/0043ezw98 Malek Ashtar University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ مالک Ų§Ų“ŲŖŲ±'),
(85100, 'https://ror.org/0043f3h38', 'en', 1, 'https://ror.org/0043f3h38 Association for Career and Technical Education'),
(85101, 'https://ror.org/0043mh554', 'en', 1, 'https://ror.org/0043mh554 John S. Latsis Public Benefit Foundation'),
(85102, 'https://ror.org/0043zdj72', 'no_lang_code', 1, 'https://ror.org/0043zdj72 Theraclion (France)'),
(85103, 'https://ror.org/00445hv47', 'en', 1, 'https://ror.org/00445hv47 Yulin Normal University ēŽ‰ęž—åøˆčŒƒå­¦é™¢'),
(85104, 'https://ror.org/00458qn27', 'en', 1, 'https://ror.org/00458qn27 National Institute of Policy and Strategic Studies'),
(85105, 'https://ror.org/0045wj822', 'sv', 0, 'https://ror.org/0045wj822 KƤrnsjukhuset i Skƶvde'),
(85106, 'https://ror.org/0047fvq66', 'en', 1, 'https://ror.org/0047fvq66 Your Community Foundation'),
(85107, 'https://ror.org/0048mxk03', 'en', 1, 'https://ror.org/0048mxk03 Sturge Weber Foundation'),
(85108, 'https://ror.org/00490gx53', 'no_lang_code', 0, 'https://ror.org/00490gx53 Raufoss Fuel Systems (Norway)'),
(85109, 'https://ror.org/00492z510', 'en', 1, 'https://ror.org/00492z510 Massachusetts Association for Mental Health'),
(85110, 'https://ror.org/0049d4r84', 'es', 0, 'https://ror.org/0049d4r84 Hospital Infantil La Paz'),
(85111, 'https://ror.org/004aspv46', 'en', 1, 'https://ror.org/004aspv46 Bay Area Community Foundation'),
(85112, 'https://ror.org/004d1k391', 'en', 1, 'https://ror.org/004d1k391 Open Philanthropy Project'),
(85113, 'https://ror.org/004d82k56', 'en', 1, 'https://ror.org/004d82k56 Canadian Society for the Study of Education'),
(85114, 'https://ror.org/004ew2q59', 'en', 0, 'https://ror.org/004ew2q59 University of Wisconsin–Whitewater at Rock County'),
(85115, 'https://ror.org/004hydx84', 'en', 1, 'https://ror.org/004hydx84 NIHR Moorfields Biomedical Research Centre'),
(85116, 'https://ror.org/004hzzk67', 'en', 1, 'https://ror.org/004hzzk67 Knut and Alice Wallenberg Foundation'),
(85117, 'https://ror.org/004kbgh11', 'en', 1, 'https://ror.org/004kbgh11 Association Canadienne de l’Enseignement Cooperatif Canadian Association for Co-operative Education'),
(85118, 'https://ror.org/004m3q352', 'no_lang_code', 0, 'https://ror.org/004m3q352 e2v (United Kingdom)'),
(85119, 'https://ror.org/004qcer42', 'en', 1, 'https://ror.org/004qcer42 Klarman Family Foundation'),
(85120, 'https://ror.org/004r2j822', 'en', 0, 'https://ror.org/004r2j822 RIKEN Center for Developmental Biology ē†åŒ–å­¦ē ”ē©¶ę‰€ å¤šē“°čƒžć‚·ć‚¹ćƒ†ćƒ å½¢ęˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(85121, 'https://ror.org/004w1f033', 'no_lang_code', 0, 'https://ror.org/004w1f033 Aptiv (United States)'),
(85122, 'https://ror.org/004wha928', 'en', 1, 'https://ror.org/004wha928 San Francisco Bay Area Planning and Urban Research Association'),
(85123, 'https://ror.org/004wk3x25', 'no_lang_code', 1, 'https://ror.org/004wk3x25 Yamaguchi Gakugei University å±±å£å­¦čŠøå¤§å­¦'),
(85124, 'https://ror.org/00521fv82', 'no_lang_code', 1, 'https://ror.org/00521fv82 Azim Premji University ą¤…ą¤œą¤¼ą„€ą¤® ą¤Ŗą„ą¤°ą„‡ą¤®ą¤œą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(85125, 'https://ror.org/00522p687', 'en', 1, 'https://ror.org/00522p687 Dutch Institute for Advanced Logistics'),
(85126, 'https://ror.org/0052qq196', 'en', 1, 'https://ror.org/0052qq196 Beatrice Hunter Cancer Research Institute'),
(85127, 'https://ror.org/0052t3h27', 'no_lang_code', 1, 'https://ror.org/0052t3h27 Roi et Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø£ą¹‰ąø­ąø¢ą¹€ąø­ą¹‡ąø”'),
(85128, 'https://ror.org/0053n5071', 'en', 1, 'https://ror.org/0053n5071 UniversitƩ west chester de pennsylvanie West Chester University'),
(85129, 'https://ror.org/0057xr271', 'de', 0, 'https://ror.org/0057xr271 Kantonsspital Bruderholz'),
(85130, 'https://ror.org/00586cg14', 'no_lang_code', 0, 'https://ror.org/00586cg14 S&B Minerals (Greece)'),
(85131, 'https://ror.org/005a08r96', 'en', 1, 'https://ror.org/005a08r96 Glycemic Index Laboratories'),
(85132, 'https://ror.org/005bs2a16', 'en', 0, 'https://ror.org/005bs2a16 NSW Office of Environment & Heritage'),
(85133, 'https://ror.org/005e8tf31', 'pt', 1, 'https://ror.org/005e8tf31 Centro de Desenvolvimento da Tecnologia Nuclear'),
(85134, 'https://ror.org/005ex6728', 'de', 1, 'https://ror.org/005ex6728 Herz-Jesu Krankenhaus'),
(85135, 'https://ror.org/005g8c558', 'no_lang_code', 0, 'https://ror.org/005g8c558 NPS Pharmaceuticals (United States)'),
(85136, 'https://ror.org/005m60g68', 'en', 0, 'https://ror.org/005m60g68 Direktorat Jenderal Pendidikan Tinggi Ministry of Research, Technology and Higher Education'),
(85137, 'https://ror.org/005mpbw70', 'pt', 1, 'https://ror.org/005mpbw70 Universidade Nove de Julho'),
(85138, 'https://ror.org/005vs4g88', 'en', 0, 'https://ror.org/005vs4g88 University Alliance Ruhr UniversitƤtsallianz Ruhr'),
(85139, 'https://ror.org/005xs3e07', 'en', 1, 'https://ror.org/005xs3e07 CO2CRC'),
(85140, 'https://ror.org/005zda847', 'fr', 1, 'https://ror.org/005zda847 FƩdƩration pour la Recherche sur le Cerveau'),
(85141, 'https://ror.org/0060avh92', 'en', 1, 'https://ror.org/0060avh92 Sutter Health'),
(85142, 'https://ror.org/0060jg679', 'no_lang_code', 1, 'https://ror.org/0060jg679 CyberAgent (Japan)'),
(85143, 'https://ror.org/006408d78', 'en', 0, 'https://ror.org/006408d78 PinnacleHealth System'),
(85144, 'https://ror.org/00644k838', 'no_lang_code', 0, 'https://ror.org/00644k838 British Steel, Swinden Technology Centre (United Kingdom)'),
(85145, 'https://ror.org/0064zg438', 'en', 1, 'https://ror.org/0064zg438 Izaak Walton Killam Health Centre'),
(85146, 'https://ror.org/00655qp86', 'en', 1, 'https://ror.org/00655qp86 National Time Service Center äø­å›½ē§‘å­¦é™¢å›½å®¶ęŽˆę—¶äø­åæƒ'),
(85147, 'https://ror.org/0068yc133', 'no_lang_code', 0, 'https://ror.org/0068yc133 RainDance Technologies (United States)'),
(85148, 'https://ror.org/006ak0b38', 'en', 1, 'https://ror.org/006ak0b38 Quanzhou Normal University ę³‰å·žåøˆčŒƒå­¦é™¢'),
(85149, 'https://ror.org/006aydy55', 'en', 1, 'https://ror.org/006aydy55 Ji Hua Laboratory å­£åŽå®žéŖŒå®¤'),
(85150, 'https://ror.org/006hksj32', 'en', 0, 'https://ror.org/006hksj32 North China Coal Medical University'),
(85151, 'https://ror.org/006nh9v44', 'no_lang_code', 0, 'https://ror.org/006nh9v44 Fresenius Kabi (India)'),
(85152, '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'),
(85153, 'https://ror.org/006strx72', 'en', 1, 'https://ror.org/006strx72 Yugra State University Югорский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(85154, 'https://ror.org/006t2mw36', 'no_lang_code', 1, 'https://ror.org/006t2mw36 Shanxi Coal Transportation and Sales Group (China) å±±č„æē…¤ē‚­čæé”€é›†å›¢ęœ‰é™å…¬åø ęŠ€ęœÆę”ÆęŒ'),
(85155, 'https://ror.org/006vs7897', 'en', 1, 'https://ror.org/006vs7897 National University of San Marcos Universidad Nacional Mayor de San Marcos'),
(85156, 'https://ror.org/006wxqw41', 'en', 1, 'https://ror.org/006wxqw41 Gordon and Betty Moore Foundation'),
(85157, 'https://ror.org/006z1y950', 'it', 1, 'https://ror.org/006z1y950 Associazione Italiana Sclerosi Multipla'),
(85158, 'https://ror.org/006zwjq84', 'no_lang_code', 1, 'https://ror.org/006zwjq84 Mellanox Technologies (United States)'),
(85159, 'https://ror.org/006zzcw62', 'no_lang_code', 0, 'https://ror.org/006zzcw62 Kongsberg Maritime (Norway)'),
(85160, 'https://ror.org/00701k896', 'en', 1, 'https://ror.org/00701k896 Mathematical Association of America'),
(85161, 'https://ror.org/0073t6196', 'en', 0, 'https://ror.org/0073t6196 Kawasaki Medical University'),
(85162, 'https://ror.org/00749za89', 'en', 1, 'https://ror.org/00749za89 Alberto Hurtado University Universidad Alberto Hurtado'),
(85163, 'https://ror.org/0077ga387', 'no_lang_code', 0, 'https://ror.org/0077ga387 Plastsveis (Norway)'),
(85164, 'https://ror.org/0077k1j32', 'en', 1, 'https://ror.org/0077k1j32 Malaviya National Institute of Technology Jaipur ą¤®ą¤¾ą¤²ą¤µą„€ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(85165, 'https://ror.org/0077sb385', 'en', 1, 'https://ror.org/0077sb385 Water Research Institute'),
(85166, 'https://ror.org/0079wqf71', 'en', 1, 'https://ror.org/0079wqf71 Pound Civil Justice Institute'),
(85167, 'https://ror.org/007a35n65', 'en', 1, 'https://ror.org/007a35n65 Te Whare Wānanga o Awanuiārangi'),
(85168, 'https://ror.org/007a62q55', 'en', 1, 'https://ror.org/007a62q55 Japan Construction Information Center ę—„ęœ¬å»ŗčØ­ęƒ…å ±ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(85169, 'https://ror.org/007amwr41', 'en', 1, 'https://ror.org/007amwr41 Guy Harvey Ocean Foundation'),
(85170, 'https://ror.org/007bpwb04', 'es', 1, 'https://ror.org/007bpwb04 Fundacion Agencia Aragonesa para la Investigacion y el Desarrollo'),
(85171, 'https://ror.org/007cr8911', 'en', 1, 'https://ror.org/007cr8911 Council of Science Editors'),
(85172, 'https://ror.org/007gcc553', 'no_lang_code', 1, 'https://ror.org/007gcc553 Eyegaze (United States)'),
(85173, 'https://ror.org/007gswz19', 'en', 0, 'https://ror.org/007gswz19 University of Sumatera'),
(85174, 'https://ror.org/007jy0643', 'en', 1, 'https://ror.org/007jy0643 PharmAccess Group'),
(85175, 'https://ror.org/007kz3b20', 'en', 1, 'https://ror.org/007kz3b20 Infrastructure Canada'),
(85176, 'https://ror.org/007mrxy13', 'en', 1, 'https://ror.org/007mrxy13 West China Hospital of Sichuan University'),
(85177, 'https://ror.org/007mz4884', 'en', 1, 'https://ror.org/007mz4884 Institute for Operations Research and the Management Sciences'),
(85178, 'https://ror.org/007p5ps06', 'en', 0, 'https://ror.org/007p5ps06 University of the Potomac'),
(85179, 'https://ror.org/007qe0s35', 'en', 1, 'https://ror.org/007qe0s35 Walter S. Johnson Foundation'),
(85180, 'https://ror.org/007r8rq24', 'en', 1, 'https://ror.org/007r8rq24 Churchill Northern Studies Centre'),
(85181, 'https://ror.org/007rbph39', 'no_lang_code', 0, 'https://ror.org/007rbph39 Willis Towers Watson (United Kingdom)'),
(85182, 'https://ror.org/007x3v691', 'en', 1, 'https://ror.org/007x3v691 Ross Foundation'),
(85183, 'https://ror.org/007ywhm20', 'en', 1, 'https://ror.org/007ywhm20 Jinzhong University 晋中学院'),
(85184, 'https://ror.org/00800dw77', 'en', 1, 'https://ror.org/00800dw77 University of the Philippines Visayas'),
(85185, 'https://ror.org/0082yr561', 'en', 1, 'https://ror.org/0082yr561 Gubkin Russian State University of Oil and Gas Российский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ нефти Šø газа имени И. М. Š“ŃƒŠ±ŠŗŠøŠ½Š°'),
(85186, 'https://ror.org/0084rfk23', 'en', 1, 'https://ror.org/0084rfk23 Blanton Peale Institute and Counseling Center'),
(85187, 'https://ror.org/00852zb92', 'en', 0, 'https://ror.org/00852zb92 Primorsky State Agricultural Academy ŠŸŃ€ŠøŠ¼Š¾ĢŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃĢŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµĢŠ¼ŠøŃ'),
(85188, 'https://ror.org/0086v0m15', 'en', 1, 'https://ror.org/0086v0m15 Consumer Healthcare Products Association'),
(85189, 'https://ror.org/0087nx645', 'en', 1, 'https://ror.org/0087nx645 Belarusian State Academy of Arts Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š¼Š°ŃŃ‚Š°Ń†Ń‚Š²Š°Ńž Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(85190, 'https://ror.org/0089swk47', 'no_lang_code', 1, 'https://ror.org/0089swk47 Canfor (Canada)'),
(85191, 'https://ror.org/008ace698', 'en', 0, 'https://ror.org/008ace698 Aqua Terra'),
(85192, 'https://ror.org/008appn90', 'en', 0, 'https://ror.org/008appn90 University College Maastricht'),
(85193, 'https://ror.org/008aybb74', 'en', 1, 'https://ror.org/008aybb74 Hispanics in Philanthropy'),
(85194, 'https://ror.org/008b3br98', 'en', 1, 'https://ror.org/008b3br98 Basil Hetzel Institute'),
(85195, 'https://ror.org/008c2qm47', 'de', 1, 'https://ror.org/008c2qm47 Federal Joint Committee Gemeinsamer Bundesausschuss'),
(85196, 'https://ror.org/008cfxd05', 'en', 1, 'https://ror.org/008cfxd05 Sax Institute'),
(85197, 'https://ror.org/008cyq615', 'no_lang_code', 0, 'https://ror.org/008cyq615 Interoute (Norway)'),
(85198, 'https://ror.org/008ehd394', 'nl', 1, 'https://ror.org/008ehd394 Mobiel 21'),
(85199, 'https://ror.org/008hf2578', 'no_lang_code', 1, 'https://ror.org/008hf2578 AMS (Singapore)'),
(85200, 'https://ror.org/008m8sh03', 'en', 1, 'https://ror.org/008m8sh03 Shangqiu Normal University å•†äø˜åøˆčŒƒå­¦é™¢'),
(85201, 'https://ror.org/008qgm855', 'en', 1, 'https://ror.org/008qgm855 Japan Heart Foundation ę—„ęœ¬åæƒč‡“č²”å›£'),
(85202, 'https://ror.org/008vsyy18', 'fr', 1, 'https://ror.org/008vsyy18 Wallonie-Bruxelles International'),
(85203, 'https://ror.org/008xmrm87', 'en', 1, 'https://ror.org/008xmrm87 American Cryonics Society'),
(85204, 'https://ror.org/008y5ve70', 'en', 0, 'https://ror.org/008y5ve70 Department of Drug and Alcohol Programs'),
(85205, 'https://ror.org/008zkt807', 'fr', 1, 'https://ror.org/008zkt807 Banque publique d''investissement, Bpifrance'),
(85206, 'https://ror.org/00919v790', 'no_lang_code', 1, 'https://ror.org/00919v790 Arrowhead Pharmaceuticals (United States)'),
(85207, 'https://ror.org/0092gmc55', 'no_lang_code', 1, 'https://ror.org/0092gmc55 Minophagen Pharmaceutical (Japan)'),
(85208, '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'),
(85209, 'https://ror.org/00951b249', 'en', 1, 'https://ror.org/00951b249 Max and Minnie Tomerlin Voelcker Fund'),
(85210, 'https://ror.org/0096a1193', 'no_lang_code', 1, 'https://ror.org/0096a1193 Mirada Medical (United Kingdom)'),
(85211, 'https://ror.org/0097kbr85', 'no_lang_code', 1, 'https://ror.org/0097kbr85 ASKA Pharmaceutical (Japan) ć‚ć™ć‹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(85212, 'https://ror.org/00986jy03', 'en', 1, 'https://ror.org/00986jy03 Kirkhouse Trust'),
(85213, 'https://ror.org/0099tem44', 'en', 1, 'https://ror.org/0099tem44 Crop Science Society of America'),
(85214, 'https://ror.org/009asv333', 'en', 1, 'https://ror.org/009asv333 Maria Fertility Hospital'),
(85215, 'https://ror.org/009b0nf21', 'no_lang_code', 0, 'https://ror.org/009b0nf21 Alexander Street Press (United States)'),
(85216, 'https://ror.org/009dpay98', 'es', 0, 'https://ror.org/009dpay98 Hospital Virgen de la Torre'),
(85217, 'https://ror.org/009g8f974', 'en', 1, 'https://ror.org/009g8f974 Far East Geological Institute Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(85218, 'https://ror.org/009ggvy85', 'en', 1, 'https://ror.org/009ggvy85 Deutsche Kniegesellschaft e.V. German Knee Society'),
(85219, 'https://ror.org/009gmpg56', 'en', 0, 'https://ror.org/009gmpg56 Greater Manchester West Mental Health NHS Foundation Trust'),
(85220, 'https://ror.org/009h1nj77', 'en', 1, 'https://ror.org/009h1nj77 National Bureau of Fish Genetic Resources'),
(85221, 'https://ror.org/009h5ks85', 'en', 0, 'https://ror.org/009h5ks85 National Yang Ming University'),
(85222, 'https://ror.org/009knm296', 'en', 1, 'https://ror.org/009knm296 Chang Gung University of Science and Technology'),
(85223, 'https://ror.org/009msm672', 'en', 1, 'https://ror.org/009msm672 Wolkite University'),
(85224, 'https://ror.org/009nawz64', 'en', 1, 'https://ror.org/009nawz64 Ministry of Transportation of Ontario MinistĆØre des Transports'),
(85225, 'https://ror.org/009p3kc39', 'en', 0, 'https://ror.org/009p3kc39 Art Institute of Tampa'),
(85226, 'https://ror.org/009qxag31', 'en', 1, 'https://ror.org/009qxag31 Kohno Clinical Medicine Research Institute å…¬ē›Šč²”å›£ę³•äŗŗę²³é‡Žč‡Øē‰€åŒ»å­¦ē ”ē©¶ę‰€'),
(85227, 'https://ror.org/009rhnd12', 'en', 1, 'https://ror.org/009rhnd12 National Institute of Technology, Asahikawa College ę—­å·å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(85228, 'https://ror.org/009rrgv92', 'en', 1, 'https://ror.org/009rrgv92 Egg Industry Center'),
(85229, 'https://ror.org/009s53a61', 'en', 1, 'https://ror.org/009s53a61 IMDEA Materials Instituto IMDEA Materiales'),
(85230, 'https://ror.org/009s80w03', 'no_lang_code', 0, 'https://ror.org/009s80w03 Vjatka State Humanitarian University'),
(85231, 'https://ror.org/009ynjf67', 'en', 1, 'https://ror.org/009ynjf67 Cass Foundation'),
(85232, 'https://ror.org/009yr1d55', 'en', 1, 'https://ror.org/009yr1d55 Beloit College'),
(85233, 'https://ror.org/009z04x72', 'pl', 0, 'https://ror.org/009z04x72 Akademia Pomorska w Słupsku'),
(85234, 'https://ror.org/009z15m35', 'en', 0, 'https://ror.org/009z15m35 South University Savannah'),
(85235, 'https://ror.org/00a1c5n07', 'en', 1, 'https://ror.org/00a1c5n07 VA Western New York Healthcare System'),
(85236, 'https://ror.org/00a1z4k38', 'no_lang_code', 1, 'https://ror.org/00a1z4k38 Nordic Nanovector (Norway)'),
(85237, 'https://ror.org/00a3raj28', 'en', 1, 'https://ror.org/00a3raj28 Medicines Discovery Catapult'),
(85238, 'https://ror.org/00a44dx91', 'en', 0, 'https://ror.org/00a44dx91 Swedish Cancer Institute'),
(85239, 'https://ror.org/00a5t5d16', 'en', 1, 'https://ror.org/00a5t5d16 Senghor University UniversitĆ© Senghor d''Alexandrie Ų¬Ų§Ł…Ų¹Ų© Ų³Ł†Ų¬ŁˆŲ±'),
(85240, 'https://ror.org/00a6s1q04', 'no_lang_code', 0, 'https://ror.org/00a6s1q04 Excel Technology (United States)'),
(85241, 'https://ror.org/00a991t33', 'no_lang_code', 1, 'https://ror.org/00a991t33 Truphatek (Israel)'),
(85242, 'https://ror.org/00adax290', 'en', 1, 'https://ror.org/00adax290 Nanjing Forest Police College å—äŗ¬ę£®ęž—č­¦åÆŸå­¦é™¢'),
(85243, 'https://ror.org/00ae97y06', 'no_lang_code', 1, 'https://ror.org/00ae97y06 BillerudKorsnƤs (Sweden)'),
(85244, 'https://ror.org/00af1rw21', 'no_lang_code', 1, 'https://ror.org/00af1rw21 Shodor'),
(85245, 'https://ror.org/00afkkv13', 'no_lang_code', 0, 'https://ror.org/00afkkv13 Iveco (Italy)'),
(85246, 'https://ror.org/00ah3ma49', 'en', 1, 'https://ror.org/00ah3ma49 Japan Association for Chemical Innovation å…¬ē›Šē¤¾å›£ę³•äŗŗę–°åŒ–å­¦ęŠ€č”“ęŽØé€²å”ä¼š'),
(85247, 'https://ror.org/00ahw4087', 'no_lang_code', 0, 'https://ror.org/00ahw4087 Abt SRBI'),
(85248, 'https://ror.org/00anr4p12', 'no_lang_code', 1, 'https://ror.org/00anr4p12 The Wine Monopoly Vinmonopolet (Norway)'),
(85249, 'https://ror.org/00ap24592', 'en', 1, 'https://ror.org/00ap24592 National Institute of Ecology źµ­ė¦½ģƒķƒœģ›'),
(85250, 'https://ror.org/00avfj807', 'en', 1, 'https://ror.org/00avfj807 Nanchang Institute of Technology å—ę˜Œå·„ēØ‹å­¦é™¢'),
(85251, 'https://ror.org/00azwrb54', 'en', 1, 'https://ror.org/00azwrb54 Kenneth T. and Eileen L. Norris Foundation'),
(85252, 'https://ror.org/00b0j0379', 'en', 1, 'https://ror.org/00b0j0379 Center for Adoption Support and Education'),
(85253, 'https://ror.org/00b3gns35', 'no_lang_code', 1, 'https://ror.org/00b3gns35 Nui (Norway)'),
(85254, 'https://ror.org/00b47n070', 'no_lang_code', 0, 'https://ror.org/00b47n070 Computer Sciences Corporation (Australia)'),
(85255, 'https://ror.org/00b5y5d29', 'no_lang_code', 0, 'https://ror.org/00b5y5d29 T Mobile (Germany)'),
(85256, 'https://ror.org/00b8p9q06', 'en', 1, 'https://ror.org/00b8p9q06 American University of Bahrain الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© ŲØŲ§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(85257, 'https://ror.org/00bejq188', 'de', 0, 'https://ror.org/00bejq188 Fraunhofer Institute Centre Schloss Birlinghoven Institutszentrum Schloss Birlinghoven'),
(85258, 'https://ror.org/00bekwh77', 'en', 1, 'https://ror.org/00bekwh77 StemCyte'),
(85259, 'https://ror.org/00bexh340', 'en', 1, 'https://ror.org/00bexh340 National Cowboy & Western Heritage Museum'),
(85260, 'https://ror.org/00bfgxv06', 'en', 1, 'https://ror.org/00bfgxv06 South African Institute for Aquatic Biodiversity'),
(85261, 'https://ror.org/00bjmtg35', 'en', 1, 'https://ror.org/00bjmtg35 Nilamber Pitamber University ą¤Øą„€ą¤²ą¤¾ą¤®ą„ą¤¬ą¤° ą¤Ŗą„€ą¤¤ą¤¾ą¤®ą„ą¤¬ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(85262, 'https://ror.org/00bknc349', 'en', 1, 'https://ror.org/00bknc349 Hosokawa Powder Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ćƒ›ć‚½ć‚«ćƒÆē²‰ä½“å·„å­¦ęŒÆčˆˆč²”å›£'),
(85263, 'https://ror.org/00bmxes04', 'en', 1, 'https://ror.org/00bmxes04 Alexandria Technical and Community College'),
(85264, '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'),
(85265, 'https://ror.org/00bq9ww16', 'en', 1, 'https://ror.org/00bq9ww16 Bear Necessities Pediatric Cancer Foundation'),
(85266, 'https://ror.org/00br6vq85', 'en', 1, 'https://ror.org/00br6vq85 Larry L. Hillblom Foundation'),
(85267, 'https://ror.org/00brrdb04', 'fr', 1, 'https://ror.org/00brrdb04 Conseil rƩgional du Centre-Val de Loire'),
(85268, 'https://ror.org/00bsf2b50', 'en', 0, 'https://ror.org/00bsf2b50 Northern Seminary'),
(85269, 'https://ror.org/00bsj2955', 'en', 1, 'https://ror.org/00bsj2955 Punjab Engineering College ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ ą¤‡ą¤‚ą¤œą¤æą¤Øą¤æą¤Æą¤°ą¤æą¤‚ą¤— ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(85270, 'https://ror.org/00bt2cr47', 'en', 1, 'https://ror.org/00bt2cr47 Wichita Medical Research and Education Foundation'),
(85271, 'https://ror.org/00bv1jr75', 'no_lang_code', 1, 'https://ror.org/00bv1jr75 Yuhan (South Korea) ģœ ķ•œģ–‘ķ–‰'),
(85272, 'https://ror.org/00bv9bq36', 'en', 1, 'https://ror.org/00bv9bq36 Anusandhan Trust'),
(85273, 'https://ror.org/00bvrdy12', 'no_lang_code', 1, 'https://ror.org/00bvrdy12 Medicon'),
(85274, 'https://ror.org/00bvysh61', 'en', 1, 'https://ror.org/00bvysh61 Islamic Azad University, Mashhad دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد مؓهد'),
(85275, 'https://ror.org/00bw4x405', 'en', 1, 'https://ror.org/00bw4x405 Academy of Korean Studies ķ•œźµ­ķ•™ģ¤‘ģ•™ģ—°źµ¬ģ›'),
(85276, 'https://ror.org/00bywv891', 'no_lang_code', 1, 'https://ror.org/00bywv891 Roquette FrĆØres (France)'),
(85277, 'https://ror.org/00c06mw10', 'no_lang_code', 1, 'https://ror.org/00c06mw10 Tomey (Japan)'),
(85278, 'https://ror.org/00c072981', 'en', 1, 'https://ror.org/00c072981 Palestinian American Research Council'),
(85279, 'https://ror.org/00c29a773', 'en', 1, 'https://ror.org/00c29a773 Society for the Study of Reproduction'),
(85280, 'https://ror.org/00c2fes21', 'en', 1, 'https://ror.org/00c2fes21 Lighthouse Academies'),
(85281, 'https://ror.org/00c2je580', 'en', 1, 'https://ror.org/00c2je580 International Fibrodysplasia Ossificans Progressiva Association'),
(85282, 'https://ror.org/00c2tyx86', 'no_lang_code', 1, 'https://ror.org/00c2tyx86 ARUP Laboratories (United States)'),
(85283, 'https://ror.org/00c402j46', 'no_lang_code', 1, 'https://ror.org/00c402j46 Dansk Selskab for AnƦstesiologi og Intensiv Medicin (Denmark)'),
(85284, 'https://ror.org/00c55ce88', 'en', 1, 'https://ror.org/00c55ce88 Ta Hwa University of Science and Technology å¤§čÆē§‘ęŠ€å¤§å­ø'),
(85285, 'https://ror.org/00c69fd82', 'en', 1, 'https://ror.org/00c69fd82 American Society of Head and Neck Radiology'),
(85286, 'https://ror.org/00c7fav87', 'en', 1, 'https://ror.org/00c7fav87 Syarif Hidayatullah State Islamic University Jakarta Universitas Islam Negeri Syarif Hidayatullah Jakarta'),
(85287, 'https://ror.org/00c959925', 'en', 1, 'https://ror.org/00c959925 Latin American and Caribbean Consortium of Engineering Institutions'),
(85288, 'https://ror.org/00c9xeh95', 'en', 0, 'https://ror.org/00c9xeh95 National Agricultural Research Center for Tohoku Region'),
(85289, 'https://ror.org/00ca0ms76', 'es', 0, 'https://ror.org/00ca0ms76 Universidad Andina Simón Bolívar'),
(85290, 'https://ror.org/00cb3km46', 'en', 1, 'https://ror.org/00cb3km46 Seoul National University Bundang Hospital 분당 ģ„œģšøėŒ€ė³‘ģ›'),
(85291, 'https://ror.org/00cc48y91', 'en', 1, 'https://ror.org/00cc48y91 Sacred Heart Hospital'),
(85292, 'https://ror.org/00ccrcy56', 'en', 1, 'https://ror.org/00ccrcy56 Physician Assistant Education Association'),
(85293, 'https://ror.org/00cdy6v14', 'en', 1, 'https://ror.org/00cdy6v14 Honolulu University'),
(85294, 'https://ror.org/00cfgrb31', 'no_lang_code', 1, 'https://ror.org/00cfgrb31 Cermavein (France)'),
(85295, 'https://ror.org/00ch6kh87', 'en', 0, 'https://ror.org/00ch6kh87 American University for Humanities'),
(85296, 'https://ror.org/00chym228', 'en', 1, 'https://ror.org/00chym228 Hilda and Preston Davis Foundation'),
(85297, 'https://ror.org/00cj7p033', 'no_lang_code', 1, 'https://ror.org/00cj7p033 Mateon Therapeutics (United States)'),
(85298, 'https://ror.org/00cjqbk89', 'no_lang_code', 1, 'https://ror.org/00cjqbk89 OSGeo'),
(85299, 'https://ror.org/00ckxt310', 'en', 1, 'https://ror.org/00ckxt310 Synchrotron Light Research Institute'),
(85300, 'https://ror.org/00cpjch55', 'en', 1, 'https://ror.org/00cpjch55 The Medical Oncology Centre of Rosebank'),
(85301, 'https://ror.org/00cqsab58', 'en', 1, 'https://ror.org/00cqsab58 Mid Atlantic Fishery Management Council'),
(85302, 'https://ror.org/00cqv5s75', 'en', 1, 'https://ror.org/00cqv5s75 Sri Venkateswara Medical College and Ruia Hospital ą°¶ą±ą°°ą±€ ą°µą±†ą°‚ą°•ą°Ÿą±‡ą°¶ą±ą°µą°° ą°µą±ˆą°¦ą±ą°Æ కళాశాల మరియు రుయా ą°†ą°øą±ą°Ŗą°¤ą±ą°°ą°æ'),
(85303, 'https://ror.org/00csccw89', 'no_lang_code', 1, 'https://ror.org/00csccw89 Boston Biomedical (United States)'),
(85304, 'https://ror.org/00csd1970', 'en', 1, 'https://ror.org/00csd1970 The Salvation Army'),
(85305, 'https://ror.org/00csfmq14', 'no_lang_code', 0, 'https://ror.org/00csfmq14 Sematech (United States)'),
(85306, 'https://ror.org/00cwsbc35', 'no_lang_code', 1, 'https://ror.org/00cwsbc35 CapeSym (United States)'),
(85307, 'https://ror.org/00cwtp696', 'no_lang_code', 0, 'https://ror.org/00cwtp696 Bard (France)'),
(85308, 'https://ror.org/00d2w9g53', 'en', 1, 'https://ror.org/00d2w9g53 Shenzhen Polytechnic ę·±åœ³čŒäøšęŠ€ęœÆå­¦é™¢'),
(85309, 'https://ror.org/00d3km654', 'en', 1, 'https://ror.org/00d3km654 ECOG-ACRIN Cancer Research Group'),
(85310, 'https://ror.org/00d403277', 'no_lang_code', 1, 'https://ror.org/00d403277 Frontier Scientific (United States)'),
(85311, 'https://ror.org/00d4phf77', 'en', 1, 'https://ror.org/00d4phf77 Great Barrier Reef Foundation'),
(85312, 'https://ror.org/00d503m77', 'en', 1, 'https://ror.org/00d503m77 Lorentz Center'),
(85313, 'https://ror.org/00d5rxh07', 'fr', 1, 'https://ror.org/00d5rxh07 CancĆ©ropĆ“le Ǝle-de-France'),
(85314, 'https://ror.org/00d85b855', 'en', 1, 'https://ror.org/00d85b855 Amazon Conservation Association'),
(85315, 'https://ror.org/00d8gp927', 'en', 1, 'https://ror.org/00d8gp927 Shiga University of Medical Science ę»‹č³€åŒ»ē§‘å¤§å­¦'),
(85316, 'https://ror.org/00dc6k529', 'de', 1, 'https://ror.org/00dc6k529 Helmut Horten Stiftung'),
(85317, 'https://ror.org/00dfkd907', 'no_lang_code', 1, 'https://ror.org/00dfkd907 Molecular Vista (United States)'),
(85318, 'https://ror.org/00dfyer24', 'en', 1, 'https://ror.org/00dfyer24'),
(85319, 'https://ror.org/00dfyw498', 'en', 1, 'https://ror.org/00dfyw498 Fondation du cancer du sein du QuƩbec Quebec Breast Cancer Foundation'),
(85320, 'https://ror.org/00dn9nb13', 'en', 1, 'https://ror.org/00dn9nb13 Western Grains Research Foundation'),
(85321, 'https://ror.org/00dq2kk65', 'en', 0, 'https://ror.org/00dq2kk65 Research Councils UK'),
(85322, 'https://ror.org/00dsxfs45', 'no_lang_code', 0, 'https://ror.org/00dsxfs45 Seiko Epson (Japan) ć‚»ć‚¤ć‚³ćƒ¼ć‚Øćƒ—ć‚½ćƒ³ę Ŗå¼ä¼šē¤¾'),
(85323, 'https://ror.org/00dvgej48', 'en', 1, 'https://ror.org/00dvgej48 The Australasian Institute of Judicial Administration'),
(85324, 'https://ror.org/00dw1pp06', 'no_lang_code', 0, 'https://ror.org/00dw1pp06 Iveco (United Kingdom)'),
(85325, 'https://ror.org/00dwgct76', 'es', 1, 'https://ror.org/00dwgct76 Centro de Investigación Biomédica en Red Diabetes y Enfermedades Metabólicas Asociadas'),
(85326, 'https://ror.org/00dwsfp88', 'en', 1, 'https://ror.org/00dwsfp88 Tennessee Department of Education'),
(85327, 'https://ror.org/00dxqqk95', 'en', 1, 'https://ror.org/00dxqqk95 Philanthropic Educational Organization'),
(85328, 'https://ror.org/00e1nmf62', 'en', 1, 'https://ror.org/00e1nmf62 Saskatchewan Cancer Agency'),
(85329, 'https://ror.org/00e5w5x57', 'no_lang_code', 1, 'https://ror.org/00e5w5x57 Simpson Strong-Tie (United States)'),
(85330, 'https://ror.org/00e63r193', 'en', 0, 'https://ror.org/00e63r193 Les Roches GruyĆØre University of Applied Sciences'),
(85331, 'https://ror.org/00e6ehb20', 'en', 1, 'https://ror.org/00e6ehb20 Association canadienne d''Ʃconomique Canadian Economics Association'),
(85332, 'https://ror.org/00e6ytg41', 'en', 1, 'https://ror.org/00e6ytg41 Jiangsu Second Normal University ę±Ÿč‹ē¬¬äŗŒåøˆčŒƒå­¦é™¢'),
(85333, 'https://ror.org/00e769425', 'en', 1, 'https://ror.org/00e769425 New Zealand Law Foundation'),
(85334, 'https://ror.org/00e7dfm13', 'en', 1, 'https://ror.org/00e7dfm13 Centre for Medical Systems Biology'),
(85335, 'https://ror.org/00e8bt462', 'es', 1, 'https://ror.org/00e8bt462 Universidad SalvadoreƱa Alberto Masferrer'),
(85336, 'https://ror.org/00e99w454', 'en', 1, 'https://ror.org/00e99w454 Scotland and Northern Ireland Forum for Environmental Research'),
(85337, 'https://ror.org/00e9zam13', 'no_lang_code', 1, 'https://ror.org/00e9zam13 Koch Industries (United States)'),
(85338, 'https://ror.org/00ec27p14', 'en', 0, 'https://ror.org/00ec27p14 Argosy University'),
(85339, 'https://ror.org/00ed5g627', 'de', 1, 'https://ror.org/00ed5g627 Heinz Maier-Leibnitz Zentrum'),
(85340, 'https://ror.org/00ed94f19', 'en', 1, 'https://ror.org/00ed94f19 Easton & Otley College'),
(85341, 'https://ror.org/00efw3q31', 'no_lang_code', 0, 'https://ror.org/00efw3q31 Retroscreen Virology (United Kingdom)'),
(85342, 'https://ror.org/00ej9bc14', 'pt', 1, 'https://ror.org/00ej9bc14 Sociedade Brasileira de Endoscopia Digestiva'),
(85343, 'https://ror.org/00em52312', 'en', 0, 'https://ror.org/00em52312 Canadian Polar Commission'),
(85344, 'https://ror.org/00enb8s04', 'de', 0, 'https://ror.org/00enb8s04 Rhoen-Klinikum AG'),
(85345, 'https://ror.org/00epe0j70', 'en', 1, 'https://ror.org/00epe0j70 Shanghai Municipal Agricultural Commission äøŠęµ·åø‚å†œäøšå§”å‘˜ä¼š'),
(85346, 'https://ror.org/00esm8r26', 'no_lang_code', 0, 'https://ror.org/00esm8r26 Controls and Data Services (United Kingdom)'),
(85347, 'https://ror.org/00et6q107', 'en', 1, 'https://ror.org/00et6q107 Lovely Professional University ਲਵਲੀ ąØŖą©ąØ°ą©‹ąØ«ą©ˆąØøąØ¼ąØØąØ² ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(85348, 'https://ror.org/00ew8c753', 'en', 1, 'https://ror.org/00ew8c753 St. Mary''s Hospital Lacor'),
(85349, 'https://ror.org/00exes624', 'en', 1, 'https://ror.org/00exes624 Institute for Water of the Republic of Slovenia'),
(85350, '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'),
(85351, 'https://ror.org/00ezb6p66', 'de', 1, 'https://ror.org/00ezb6p66 Marga und Walter Boll - Stiftung'),
(85352, 'https://ror.org/00f07b645', 'en', 1, 'https://ror.org/00f07b645 West London Research Network'),
(85353, 'https://ror.org/00f11af73', 'en', 1, 'https://ror.org/00f11af73 Politecnica Salesiana University Universidad PolitƩcnica Salesiana'),
(85354, 'https://ror.org/00f1h3n75', 'no_lang_code', 1, 'https://ror.org/00f1h3n75 Satavahana University'),
(85355, 'https://ror.org/00f2vj333', 'en', 1, 'https://ror.org/00f2vj333 Scottish Alliance for Geoscience, Environment and Society'),
(85356, 'https://ror.org/00f6kbf47', 'ca', 1, 'https://ror.org/00f6kbf47 Hospital San Juan de Alicante Hospital Universitari Sant Joan D''Alacant'),
(85357, 'https://ror.org/00f7paw60', 'no_lang_code', 1, 'https://ror.org/00f7paw60 Space Systems Research Corporation (United States)'),
(85358, 'https://ror.org/00f7y2s26', 'en', 1, 'https://ror.org/00f7y2s26 Lung Cancer Research Foundation'),
(85359, 'https://ror.org/00f9xjd57', 'no_lang_code', 0, 'https://ror.org/00f9xjd57 Cray (United Kingdom)'),
(85360, 'https://ror.org/00fadqs53', 'en', 1, 'https://ror.org/00fadqs53 Mogadishu Somali Turkish Training and Research Hospital'),
(85361, 'https://ror.org/00fb14f25', 'no_lang_code', 0, 'https://ror.org/00fb14f25 Provexis Limited'),
(85362, 'https://ror.org/00fddr776', 'no_lang_code', 0, 'https://ror.org/00fddr776 Imanova (United Kingdom)'),
(85363, 'https://ror.org/00fevpc76', 'en', 1, 'https://ror.org/00fevpc76 HIV Research Trust'),
(85364, 'https://ror.org/00ffgq494', 'en', 1, 'https://ror.org/00ffgq494 Southeast Asian Fisheries Development Center'),
(85365, 'https://ror.org/00fgnre85', 'no_lang_code', 0, 'https://ror.org/00fgnre85 Eurofins (Netherlands)'),
(85366, 'https://ror.org/00fh1ea83', 'en', 1, 'https://ror.org/00fh1ea83 Bone and Joint Canada'),
(85367, 'https://ror.org/00fjvmz39', 'no_lang_code', 1, 'https://ror.org/00fjvmz39 Palmetto Pharmaceuticals (United States)'),
(85368, 'https://ror.org/00fmnpw63', 'fr', 1, 'https://ror.org/00fmnpw63 French School of Asian Studies Ɖcole FranƧaise d''ExtrĆŖme-Orient'),
(85369, 'https://ror.org/00fnkrf94', 'en', 1, 'https://ror.org/00fnkrf94 National Agency for Social Insurance'),
(85370, 'https://ror.org/00fpx3104', 'en', 1, 'https://ror.org/00fpx3104 Colorado Office of Economic Development and International Trade'),
(85371, 'https://ror.org/00fq07k50', 'en', 1, 'https://ror.org/00fq07k50 Universitas Mataram University of Mataram'),
(85372, 'https://ror.org/00fq0d986', 'en', 1, 'https://ror.org/00fq0d986 Kothiwal Dental College and Research Centre'),
(85373, 'https://ror.org/00fs4mj11', 'en', 0, 'https://ror.org/00fs4mj11 Argosy University'),
(85374, 'https://ror.org/00fsrd019', 'en', 1, 'https://ror.org/00fsrd019 Illawarra Shoalhaven Local Health District'),
(85375, 'https://ror.org/00fswa532', 'no_lang_code', 0, 'https://ror.org/00fswa532 SK Chemicals (South Korea)'),
(85376, 'https://ror.org/00ftbmy59', 'en', 1, 'https://ror.org/00ftbmy59 State Key Laboratory of Oil and Gas Reservoir Geology and Exploitation ę²¹ę°”č—åœ°č“ØåŠå¼€å‘å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(85377, 'https://ror.org/00fv1ny85', 'en', 1, 'https://ror.org/00fv1ny85 Scottish Rite Freemasonry'),
(85378, 'https://ror.org/00fx9ye21', 'no_lang_code', 0, 'https://ror.org/00fx9ye21 Nara Gakuen University'),
(85379, 'https://ror.org/00fxtkg63', 'en', 1, 'https://ror.org/00fxtkg63 Washington Drug and Alcohol Commission'),
(85380, 'https://ror.org/00fyemf28', 'en', 1, 'https://ror.org/00fyemf28 Materials innovation institute'),
(85381, 'https://ror.org/00g0aq541', 'en', 1, 'https://ror.org/00g0aq541 Cancer Research Malaysia'),
(85382, 'https://ror.org/00g0d8m77', 'en', 1, 'https://ror.org/00g0d8m77 The Sherwood Institute'),
(85383, 'https://ror.org/00g102351', 'en', 1, 'https://ror.org/00g102351 State Key Laboratory on Integrated Optoelectronics é›†ęˆå…‰ē”µå­å­¦å›½å®¶é‡ē‚¹č”åˆå®žéŖŒå®¤'),
(85384, 'https://ror.org/00g1egx47', 'no_lang_code', 0, 'https://ror.org/00g1egx47 Fisabio'),
(85385, 'https://ror.org/00g1za575', 'en', 0, 'https://ror.org/00g1za575 Ryazan State Radiotechnical University'),
(85386, 'https://ror.org/00g2pnp92', 'en', 1, 'https://ror.org/00g2pnp92 Zunyi Normal College éµä¹‰åøˆčŒƒå­¦é™¢');
INSERT INTO `rors` VALUES
(85387, 'https://ror.org/00g5hz655', 'en', 0, 'https://ror.org/00g5hz655 Bunka Womens University Muroran Junior College ę–‡åŒ–å„³å­å¤§å­¦å®¤č˜­ēŸ­ęœŸå¤§å­¦'),
(85388, 'https://ror.org/00g8d1q08', 'en', 1, 'https://ror.org/00g8d1q08 State Key Laboratory of Building Safety and Built Environment'),
(85389, 'https://ror.org/00gayfz68', 'en', 0, 'https://ror.org/00gayfz68 Yugra State University Югорский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(85390, 'https://ror.org/00gcc2a38', 'de', 1, 'https://ror.org/00gcc2a38 RenƩ und Susanne Braginsky Stiftung'),
(85391, 'https://ror.org/00gcd8h55', 'en', 0, 'https://ror.org/00gcd8h55 The Nature Conservancy'),
(85392, 'https://ror.org/00gea6v35', 'no_lang_code', 0, 'https://ror.org/00gea6v35 Apotex (Hungary)'),
(85393, 'https://ror.org/00gef2a48', 'no_lang_code', 0, 'https://ror.org/00gef2a48 CH2M Hill (United Kingdom)'),
(85394, 'https://ror.org/00gesa309', 'fr', 1, 'https://ror.org/00gesa309 Centre EuropĆ©en d’Etudes de SĆ©curitĆ© et d’Analyse des Risques'),
(85395, 'https://ror.org/00gg4qv65', 'no_lang_code', 0, 'https://ror.org/00gg4qv65 Cytec (Austria)'),
(85396, 'https://ror.org/00ggmjy78', 'en', 1, 'https://ror.org/00ggmjy78 Hualien Armed Forces General Hospital åœ‹č»čŠ±č“®ēø½é†«é™¢'),
(85397, 'https://ror.org/00ghy1a10', 'en', 1, 'https://ror.org/00ghy1a10 Morgan Adams Foundation'),
(85398, 'https://ror.org/00gj2a565', 'en', 0, 'https://ror.org/00gj2a565 Tsukuba College of Technology'),
(85399, 'https://ror.org/00gm85e42', 'no_lang_code', 0, 'https://ror.org/00gm85e42 ChanTest (United States)'),
(85400, 'https://ror.org/00gmryg88', 'en', 1, 'https://ror.org/00gmryg88 National Radio Research Agency'),
(85401, 'https://ror.org/00gn1c018', 'no_lang_code', 0, 'https://ror.org/00gn1c018 Alcatel-Lucent (Germany)'),
(85402, 'https://ror.org/00gqmdy63', 'en', 1, 'https://ror.org/00gqmdy63 District of Columbia Space Grant Consortium'),
(85403, 'https://ror.org/00gryma19', 'en', 1, 'https://ror.org/00gryma19 New Zealand Association of Scientists'),
(85404, 'https://ror.org/00gs5mz83', 'en', 0, 'https://ror.org/00gs5mz83 Easter Seals Delaware & Marylands Eastern Shore'),
(85405, 'https://ror.org/00gs9jv27', 'no_lang_code', 1, 'https://ror.org/00gs9jv27 Avid Bioservices (United States)'),
(85406, 'https://ror.org/00gsa4126', 'en', 0, 'https://ror.org/00gsa4126 Texas Tech University'),
(85407, 'https://ror.org/00gt8s428', 'sv', 1, 'https://ror.org/00gt8s428 Svenska Rovdjursfƶreningen Swedish Carnivore Association'),
(85408, 'https://ror.org/00gtexm79', 'en', 0, 'https://ror.org/00gtexm79 Ashridge Business School'),
(85409, 'https://ror.org/00gtyr743', 'no_lang_code', 1, 'https://ror.org/00gtyr743 Tempronics (United States)'),
(85410, 'https://ror.org/00gw7ky20', 'en', 1, 'https://ror.org/00gw7ky20 Military Technical Institute'),
(85411, 'https://ror.org/00gx5vq39', 'en', 1, 'https://ror.org/00gx5vq39 Botanical Survey of India'),
(85412, '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'),
(85413, 'https://ror.org/00gyag505', 'en', 1, 'https://ror.org/00gyag505 Macula and Retina Institute'),
(85414, 'https://ror.org/00gz9xf10', 'en', 1, 'https://ror.org/00gz9xf10 Society for the Study of School Psychology'),
(85415, 'https://ror.org/00h14e570', 'en', 1, 'https://ror.org/00h14e570 Massachusetts Clean Energy Center'),
(85416, 'https://ror.org/00h14jd50', 'en', 1, 'https://ror.org/00h14jd50 Cystic Fibrosis Australia'),
(85417, 'https://ror.org/00h3kxy16', 'en', 1, 'https://ror.org/00h3kxy16 University Hospital Foundation'),
(85418, 'https://ror.org/00h4dcd09', 'no_lang_code', 0, 'https://ror.org/00h4dcd09 Shire (Canada)'),
(85419, 'https://ror.org/00h5sa678', 'en', 1, 'https://ror.org/00h5sa678 American Health Quality Association'),
(85420, 'https://ror.org/00h63g907', 'en', 1, 'https://ror.org/00h63g907 National Alliance of State and Territorial AIDS Directors'),
(85421, 'https://ror.org/00h7vg856', 'en', 1, 'https://ror.org/00h7vg856 Colorado Springs Neurological Associates'),
(85422, 'https://ror.org/00h8ebz08', 'en', 1, 'https://ror.org/00h8ebz08 Southern African Centre for Infectious Disease Surveillance'),
(85423, 'https://ror.org/00h9jb865', 'fr', 1, 'https://ror.org/00h9jb865 Centre Hospitalier de Saint-Quentin'),
(85424, 'https://ror.org/00hdaxs89', 'en', 1, 'https://ror.org/00hdaxs89 Donetsk National Medical University Донецкий Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. Š“Š¾Ń€ŃŒŠŗŠ¾Š³Š¾ Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Максима Š“Š¾Ń€ŃŒŠŗŠ¾Š³Š¾'),
(85425, 'https://ror.org/00hdydj55', 'en', 1, 'https://ror.org/00hdydj55 Al Andalus University Ų¬Ų§Ł…Ų¹Ų© الأندلس Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ©'),
(85426, 'https://ror.org/00he9fz79', 'en', 1, 'https://ror.org/00he9fz79 Jining Normal University'),
(85427, 'https://ror.org/00her7k05', 'en', 1, 'https://ror.org/00her7k05 Whitehall Foundation'),
(85428, 'https://ror.org/00hg4tf86', 'en', 1, 'https://ror.org/00hg4tf86 New Brunswick Health Research Foundation'),
(85429, 'https://ror.org/00hghab13', 'no_lang_code', 1, 'https://ror.org/00hghab13 Recombinetics (United States)'),
(85430, 'https://ror.org/00hhjss72', 'no_lang_code', 1, 'https://ror.org/00hhjss72 Tencent (China) č…¾č®ÆęŽ§č‚”ęœ‰é™å…¬åø'),
(85431, 'https://ror.org/00hhtwx28', 'en', 1, 'https://ror.org/00hhtwx28 Npistanbul Beyin Hastanesi Npistanbul Brain Hospital'),
(85432, 'https://ror.org/00hjjjh46', 'no_lang_code', 0, 'https://ror.org/00hjjjh46 Rubicon Genomics (United States)'),
(85433, 'https://ror.org/00hkmzk74', 'lv', 0, 'https://ror.org/00hkmzk74 Banku Augstskola'),
(85434, 'https://ror.org/00hp3t035', 'en', 0, 'https://ror.org/00hp3t035 Texas Tech University Health Sciences Center'),
(85435, 'https://ror.org/00hpryt51', 'no_lang_code', 0, 'https://ror.org/00hpryt51 Adventium Enterprises (United States)'),
(85436, 'https://ror.org/00hqvzh35', 'en', 1, 'https://ror.org/00hqvzh35 Caplan Foundation for Early Childhood'),
(85437, 'https://ror.org/00hr1eg19', 'en', 0, 'https://ror.org/00hr1eg19 Kangnam Sacred Heart Hospital'),
(85438, 'https://ror.org/00hr2a580', 'en', 0, 'https://ror.org/00hr2a580 San Leandro Medical Center'),
(85439, 'https://ror.org/00hrg0j91', 'en', 0, 'https://ror.org/00hrg0j91 The Chicago School of Professional Psychology'),
(85440, 'https://ror.org/00hrhpx15', 'no_lang_code', 0, 'https://ror.org/00hrhpx15 United Technologies (Germany)'),
(85441, 'https://ror.org/00hrxq972', 'no_lang_code', 1, 'https://ror.org/00hrxq972 oekom'),
(85442, 'https://ror.org/00hv7e130', 'en', 1, 'https://ror.org/00hv7e130 The Alzheimer Society of Ireland'),
(85443, 'https://ror.org/00hwfqh10', 'en', 0, 'https://ror.org/00hwfqh10 Harbin Institute of Technology Shenzhen Graduate School å“ˆå°”ę»Øå·„äøšå¤§å­¦ę·±åœ³ē ”ē©¶ē”Ÿé™¢'),
(85444, 'https://ror.org/00hyjzt98', 'en', 1, 'https://ror.org/00hyjzt98 Endangered Language Fund'),
(85445, 'https://ror.org/00hz58r10', 'no_lang_code', 1, 'https://ror.org/00hz58r10 Duchossois Group (United States)'),
(85446, 'https://ror.org/00j0krs40', 'en', 1, 'https://ror.org/00j0krs40 Buraydah Colleges بريدة ŁƒŁ„ŁŠŲ§ŲŖ'),
(85447, 'https://ror.org/00j1rdm64', 'en', 0, 'https://ror.org/00j1rdm64 Slavonic State Pedagogical University'),
(85448, 'https://ror.org/00j1sp553', 'en', 1, 'https://ror.org/00j1sp553 Islamic Azad University, Shahrood دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“Ų§Ł‡Ų±ŁˆŲÆ'),
(85449, 'https://ror.org/00j4a3b86', 'en', 1, 'https://ror.org/00j4a3b86 National Museum of Australia'),
(85450, 'https://ror.org/00j4d3v37', 'en', 1, 'https://ror.org/00j4d3v37 Eurasian Humanities Institute Š•ŃƒŃ€Š°Š·ŠøŃ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š»Ń‹Ņ› ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(85451, 'https://ror.org/00j6ywe74', 'en', 1, 'https://ror.org/00j6ywe74 Kelliher Charitable Trust'),
(85452, 'https://ror.org/00j9jer02', 'en', 1, 'https://ror.org/00j9jer02 Foundation for Alcohol Research and Education'),
(85453, 'https://ror.org/00jbcck28', 'en', 1, 'https://ror.org/00jbcck28 Erie Community Foundation'),
(85454, 'https://ror.org/00jbpxw47', 'en', 1, 'https://ror.org/00jbpxw47 Guilin University ę”‚ęž—å­¦é™¢'),
(85455, 'https://ror.org/00jcx1769', 'en', 1, 'https://ror.org/00jcx1769 Konkuk University Medical Center'),
(85456, 'https://ror.org/00jg41573', 'en', 1, 'https://ror.org/00jg41573 Norsk Fysioterapeutforbund Norwegian Physiotherapist Association'),
(85457, 'https://ror.org/00jhzfv66', 'en', 1, 'https://ror.org/00jhzfv66 Washington Academy of Sciences'),
(85458, 'https://ror.org/00jjeja18', 'en', 1, 'https://ror.org/00jjeja18 Estonian Research Council'),
(85459, 'https://ror.org/00jmbnv79', 'en', 0, 'https://ror.org/00jmbnv79 Council for the Central Laboratory of the Research Councils'),
(85460, 'https://ror.org/00jmefg08', 'en', 1, 'https://ror.org/00jmefg08 Future Forests Research'),
(85461, 'https://ror.org/00jn6g049', 'en', 1, 'https://ror.org/00jn6g049 Japan Institute of the Moving Image ę—„ęœ¬ę˜ ē”»å¤§å­¦'),
(85462, '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'),
(85463, 'https://ror.org/00jnzhe32', 'en', 1, 'https://ror.org/00jnzhe32 Forces in Mind Trust'),
(85464, 'https://ror.org/00jrmpf38', 'en', 1, 'https://ror.org/00jrmpf38 Beijing Planning Office of Philosophy and Social Science åŒ—äŗ¬åø‚å“²å­¦ē¤¾ä¼šē§‘å­¦č§„åˆ’åŠžå…¬å®¤'),
(85465, 'https://ror.org/00jstgs54', 'fr', 1, 'https://ror.org/00jstgs54 UniversitƩ de Saint-Boniface'),
(85466, 'https://ror.org/00jv35z76', 'en', 1, 'https://ror.org/00jv35z76 Freshwater Future'),
(85467, 'https://ror.org/00jvfh371', 'en', 1, 'https://ror.org/00jvfh371 European Society for Paediatric Infectious Diseases'),
(85468, 'https://ror.org/00jxpy231', 'en', 1, 'https://ror.org/00jxpy231 Midwest University'),
(85469, 'https://ror.org/00jypw962', 'en', 0, 'https://ror.org/00jypw962 Naval Medical Research Institute äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›åŒ»å­¦ē ”ē©¶ę‰€'),
(85470, 'https://ror.org/00jzpj618', 'es', 1, 'https://ror.org/00jzpj618 Ariadna Ediciones Ariadna Publishing'),
(85471, 'https://ror.org/00k0a6x92', 'en', 1, 'https://ror.org/00k0a6x92 Craig H Neilsen Foundation'),
(85472, 'https://ror.org/00k17f049', 'no_lang_code', 1, 'https://ror.org/00k17f049 MKS Instruments (United States)'),
(85473, 'https://ror.org/00k194y12', 'en', 1, 'https://ror.org/00k194y12 Kaohsiung Chang Gung Memorial Hospital'),
(85474, 'https://ror.org/00k289v48', 'en', 1, 'https://ror.org/00k289v48 Mama Cash'),
(85475, 'https://ror.org/00k3q8x90', 'en', 1, 'https://ror.org/00k3q8x90 Unibersidad ng Pilipinas Mindanao University of the Philippines Mindanao'),
(85476, 'https://ror.org/00k58qq42', 'en', 1, 'https://ror.org/00k58qq42 National Center for Health Research'),
(85477, 'https://ror.org/00k63dq23', 'en', 1, 'https://ror.org/00k63dq23 Meharry Medical College'),
(85478, 'https://ror.org/00k6c4h29', 'en', 1, 'https://ror.org/00k6c4h29 Liaoning Shihua University č¾½å®ēŸ³ę²¹åŒ–å·„å¤§å­¦'),
(85479, 'https://ror.org/00k6e3143', 'en', 1, 'https://ror.org/00k6e3143 Andrew McDonough B+ Foundation'),
(85480, 'https://ror.org/00k74t288', 'no_lang_code', 1, 'https://ror.org/00k74t288 Papula-Nevinpat (Finland)'),
(85481, 'https://ror.org/00k8zt527', 'en', 1, 'https://ror.org/00k8zt527 KIIT University'),
(85482, 'https://ror.org/00ka6rp58', 'en', 1, 'https://ror.org/00ka6rp58 Sir Run Run Shaw Hospital ęµ™ę±Ÿå¤§å­¦åŒ»å­¦é™¢é™„å±žé‚µé€øå¤«åŒ»é™¢'),
(85483, 'https://ror.org/00kavjh60', 'en', 1, 'https://ror.org/00kavjh60 Columbia Medical Practice'),
(85484, 'https://ror.org/00kb3m272', 'en', 1, 'https://ror.org/00kb3m272 Schweizerische Anorexia Nervosa Stiftung Swiss Anorexia Nervosa Foundation'),
(85485, 'https://ror.org/00kbjsx88', 'en', 1, 'https://ror.org/00kbjsx88 National Institute of Science and Technology Policy ē§‘å­¦ęŠ€č”“ćƒ»å­¦č”“ę”æē­–ē ”ē©¶ę‰€'),
(85486, 'https://ror.org/00kd5se19', 'en', 1, 'https://ror.org/00kd5se19 National Institute of Technology, Nagano College é•·é‡Žå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(85487, 'https://ror.org/00kgeb982', 'de', 1, 'https://ror.org/00kgeb982 Zentrum für Qualität in der Pflege'),
(85488, 'https://ror.org/00kgf1c95', 'de', 1, 'https://ror.org/00kgf1c95 Velux Stiftung'),
(85489, 'https://ror.org/00kmpab62', 'en', 1, 'https://ror.org/00kmpab62 San Diego Natural History Museum'),
(85490, 'https://ror.org/00kn38412', 'en', 1, 'https://ror.org/00kn38412 Tourettes Action'),
(85491, 'https://ror.org/00knr6c76', 'en', 0, 'https://ror.org/00knr6c76 Food and Agriculture Organization of the United Nations'),
(85492, 'https://ror.org/00krmsh17', 'no_lang_code', 0, 'https://ror.org/00krmsh17 asteur Institute of Iran'),
(85493, 'https://ror.org/00kxfe361', 'fr', 0, 'https://ror.org/00kxfe361 Laboratoire de Neurobiologie & DƩveloppement'),
(85494, 'https://ror.org/00kzaga87', 'no_lang_code', 1, 'https://ror.org/00kzaga87 Agro-Kanesho (Japan)'),
(85495, 'https://ror.org/00kzf3943', 'en', 0, 'https://ror.org/00kzf3943 Institute of Physical Chemistry'),
(85496, 'https://ror.org/00m007a06', 'no_lang_code', 1, 'https://ror.org/00m007a06 Shitennoji University å››å¤©ēŽ‹åÆŗå¤§å­¦'),
(85497, 'https://ror.org/00m04y575', 'en', 1, 'https://ror.org/00m04y575 Güneydoğu Avrupa Üniversitesi South East European University Universiteti i EvropĆ«s Juglindore Универзитет на ŠˆŃƒŠ³Š¾ŠøŃŃ‚очна Европа'),
(85498, 'https://ror.org/00m1jrq32', 'no_lang_code', 1, 'https://ror.org/00m1jrq32 Methuselah Foundation'),
(85499, 'https://ror.org/00m265722', 'en', 0, 'https://ror.org/00m265722 Benefis Hospital'),
(85500, 'https://ror.org/00m2x3q29', 'no_lang_code', 1, 'https://ror.org/00m2x3q29 Radius Health (United States)'),
(85501, 'https://ror.org/00m41dd57', 'en', 1, 'https://ror.org/00m41dd57 Alopecia UK'),
(85502, 'https://ror.org/00m5rzv47', 'en', 1, 'https://ror.org/00m5rzv47 Austrian Center for Medical Innovation and Technology'),
(85503, 'https://ror.org/00m7jk905', 'fr', 0, 'https://ror.org/00m7jk905 Ɖcole d''Architecture de la Ville et des Territoires Ć  Marne-la-VallĆ©e'),
(85504, 'https://ror.org/00m813a78', 'en', 1, 'https://ror.org/00m813a78 Sulaiman Al Rajhi Colleges'),
(85505, 'https://ror.org/00m8wy805', 'en', 0, 'https://ror.org/00m8wy805 Oregon Health Policy and Research'),
(85506, 'https://ror.org/00m9f2x37', 'en', 1, 'https://ror.org/00m9f2x37 Center for Children'),
(85507, 'https://ror.org/00m9xjt25', 'en', 0, 'https://ror.org/00m9xjt25 Virtua'),
(85508, 'https://ror.org/00ma7c320', 'en', 1, 'https://ror.org/00ma7c320 Nakatani Foundation å…¬ē›Šč²”å›£ę³•äŗŗ äø­č°·åŒ»å·„čØˆęø¬ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(85509, 'https://ror.org/00mabsw86', 'en', 0, 'https://ror.org/00mabsw86 University of Professional Studies'),
(85510, 'https://ror.org/00mdxnh77', 'en', 1, 'https://ror.org/00mdxnh77 Taizhou Second People''s Hospital'),
(85511, 'https://ror.org/00mea5h89', 'en', 1, 'https://ror.org/00mea5h89 Fukushima National College of Technology ē¦å³¶å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(85512, 'https://ror.org/00mff5m03', 'en', 1, 'https://ror.org/00mff5m03 VeleučiliŔte VERN'' Vern University of Applied Sciences'),
(85513, 'https://ror.org/00mgfdc89', 'en', 1, 'https://ror.org/00mgfdc89 Klinička Bolnica Dubrava University Hospital Dubrava'),
(85514, 'https://ror.org/00mhe6140', 'en', 0, 'https://ror.org/00mhe6140 International University of Business and New Technologies Ярославский Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ бизнеса Šø новых технологий'),
(85515, 'https://ror.org/00mhyn861', 'no_lang_code', 1, 'https://ror.org/00mhyn861 Flexterra (United States)'),
(85516, 'https://ror.org/00mjfew53', 'en', 0, 'https://ror.org/00mjfew53 David Geffen School of Medicine at UCLA'),
(85517, 'https://ror.org/00mjrkf94', 'no_lang_code', 1, 'https://ror.org/00mjrkf94 Biosense Webster (United States)'),
(85518, 'https://ror.org/00mmfdg02', 'en', 1, 'https://ror.org/00mmfdg02 Clore Israel Foundation קרן ×§×œ×•×Ø ×œ×™×©×Ø××œ'),
(85519, 'https://ror.org/00mng9617', 'en', 1, 'https://ror.org/00mng9617 National Dong Hwa University åœ‹ē«‹ę±čÆå¤§å­ø'),
(85520, 'https://ror.org/00mny1y94', 'no_lang_code', 1, 'https://ror.org/00mny1y94 Revolution Medicines (United States)'),
(85521, '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'),
(85522, 'https://ror.org/00mrjbj15', 'no_lang_code', 1, 'https://ror.org/00mrjbj15 Fukuyama University ē¦å±±å¤§å­¦'),
(85523, 'https://ror.org/00mtf6c40', 'en', 1, 'https://ror.org/00mtf6c40 L''Institut de recherche Terry Fox Terry Fox Research Institute'),
(85524, 'https://ror.org/00my0hg66', 'en', 1, 'https://ror.org/00my0hg66 Barwon Health'),
(85525, 'https://ror.org/00n4jr633', 'en', 0, 'https://ror.org/00n4jr633 Western Sussex Hospitals NHS Foundation Trust'),
(85526, 'https://ror.org/00n4vb132', 'en', 1, 'https://ror.org/00n4vb132 Ophthalmic Research Institute of Australia'),
(85527, 'https://ror.org/00n5swf94', 'no_lang_code', 1, 'https://ror.org/00n5swf94 Azure Summit Technology (United States)'),
(85528, 'https://ror.org/00nbs1824', 'en', 0, 'https://ror.org/00nbs1824 St. Anne’s University Hospital Brno'),
(85529, 'https://ror.org/00nd85a71', 'en', 1, 'https://ror.org/00nd85a71 Sir Ross and Sir Keith Smith Fund'),
(85530, 'https://ror.org/00ndqxq51', 'no_lang_code', 0, 'https://ror.org/00ndqxq51 Kobe Shukugawa Gakuin University ē„žęˆøå¤™å·å­¦é™¢å¤§å­¦'),
(85531, 'https://ror.org/00nfe1k49', 'no_lang_code', 1, 'https://ror.org/00nfe1k49 Intelligent Fingerprinting (United Kingdom)'),
(85532, 'https://ror.org/00ngcjt35', 'en', 1, 'https://ror.org/00ngcjt35 Findlay Hancock County Public Library'),
(85533, 'https://ror.org/00ngpkv62', 'en', 0, 'https://ror.org/00ngpkv62 School of Management and Engineering Vaud'),
(85534, 'https://ror.org/00ngv8j44', 'en', 1, 'https://ror.org/00ngv8j44 Information Technology University'),
(85535, 'https://ror.org/00nj22y86', 'en', 1, 'https://ror.org/00nj22y86 Institute for Problems in Mechanics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем механики им.А.Š®.Ишлинского Российской акаГемии наук'),
(85536, 'https://ror.org/00nn7pc94', 'no_lang_code', 0, 'https://ror.org/00nn7pc94 Interoute (Italy)'),
(85537, 'https://ror.org/00np1ar05', 'en', 1, 'https://ror.org/00np1ar05 Asia Pacific Observatory on Health Systems and Policies'),
(85538, 'https://ror.org/00npz5r87', 'en', 1, 'https://ror.org/00npz5r87 Office for Students'),
(85539, 'https://ror.org/00nqz4988', 'es', 1, 'https://ror.org/00nqz4988 Centro Universitario de la Defensa'),
(85540, 'https://ror.org/00ns6x030', 'en', 1, 'https://ror.org/00ns6x030 Workers Compensation Board of Alberta'),
(85541, 'https://ror.org/00nsb1162', 'en', 1, 'https://ror.org/00nsb1162 Dutch Colorectal Cancer Group'),
(85542, 'https://ror.org/00nwypn17', 'en', 1, 'https://ror.org/00nwypn17 Amen Clinics'),
(85543, 'https://ror.org/00nxgpf29', 'en', 1, 'https://ror.org/00nxgpf29 National Disability Insurance Agency'),
(85544, 'https://ror.org/00p5z3m34', 'en', 1, 'https://ror.org/00p5z3m34 Barth Syndrome Foundation'),
(85545, 'https://ror.org/00p6mmq35', 'en', 0, 'https://ror.org/00p6mmq35 Federal Research Centre For Fisheries Fiskesekretariatet'),
(85546, 'https://ror.org/00p954x71', 'en', 1, 'https://ror.org/00p954x71 Society for Conservation Biology'),
(85547, 'https://ror.org/00pb2ch30', 'no_lang_code', 1, 'https://ror.org/00pb2ch30 Taawon'),
(85548, 'https://ror.org/00pb7dz52', 'en', 0, 'https://ror.org/00pb7dz52 Strayer University'),
(85549, 'https://ror.org/00pdj0786', 'fr', 0, 'https://ror.org/00pdj0786 Thunken'),
(85550, 'https://ror.org/00pevny89', 'en', 1, 'https://ror.org/00pevny89 John P. Hussman Foundation'),
(85551, 'https://ror.org/00pjnm784', 'en', 1, 'https://ror.org/00pjnm784 Immune Tolerance Network'),
(85552, 'https://ror.org/00pm1e925', 'en', 1, 'https://ror.org/00pm1e925 Society for Healthcare Epidemiology of America'),
(85553, 'https://ror.org/00pm8fq14', 'en', 1, 'https://ror.org/00pm8fq14 Australian Education Research Organisation'),
(85554, 'https://ror.org/00pn1pd75', 'en', 1, 'https://ror.org/00pn1pd75 The Taylor Matthews Foundation'),
(85555, 'https://ror.org/00ppbz497', 'en', 1, 'https://ror.org/00ppbz497 German Rectors'' Conference Hochschulrektorenkonferenz'),
(85556, 'https://ror.org/00ppfcz28', 'en', 1, 'https://ror.org/00ppfcz28 National University of Water and Environmental Engineering ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного госпоГарства та ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń'),
(85557, 'https://ror.org/00pprn321', 'no_lang_code', 1, 'https://ror.org/00pprn321 Denali Therapeutics (United States)'),
(85558, 'https://ror.org/00przpv88', 'en', 1, 'https://ror.org/00przpv88 Maori Education Trust'),
(85559, 'https://ror.org/00pv8f849', 'no_lang_code', 1, 'https://ror.org/00pv8f849 Genome and Company (South Korea) ģ§€ė†ˆģ•¤ģ»“ķ¼ė‹ˆ'),
(85560, 'https://ror.org/00pxn1389', 'en', 0, 'https://ror.org/00pxn1389 Angiogenesis and Cancer Microenvironment Laboratory AngiogenĆØse et laboratoire sur le microenvironnement du cancer'),
(85561, 'https://ror.org/00pyr0344', 'en', 1, 'https://ror.org/00pyr0344 Toronto Arts Council'),
(85562, 'https://ror.org/00q08t645', 'de', 1, 'https://ror.org/00q08t645 Deutsche Gesellschaft für Internationale Zusammenarbeit German Corporation for International Cooperation'),
(85563, 'https://ror.org/00q0w1h45', 'no_lang_code', 1, 'https://ror.org/00q0w1h45 Omron (Japan) ć‚Ŗćƒ ćƒ­ćƒ³ę Ŗå¼ä¼šē¤¾'),
(85564, 'https://ror.org/00q16t150', 'en', 1, 'https://ror.org/00q16t150 University of Texas Health Science Center at Dallas'),
(85565, 'https://ror.org/00q1df169', 'no_lang_code', 0, 'https://ror.org/00q1df169 Orbotech (Israel)'),
(85566, 'https://ror.org/00q1y5994', 'en', 1, 'https://ror.org/00q1y5994 Worldwide Universities Network'),
(85567, 'https://ror.org/00q2dta10', 'en', 1, 'https://ror.org/00q2dta10 Research Center for Ecology and Environment of Central Asia äø­å›½ē§‘å­¦é™¢äø­äŗšē”Ÿę€äøŽēŽÆå¢ƒē ”ē©¶äø­åæƒ'),
(85568, 'https://ror.org/00q2w1592', 'no_lang_code', 1, 'https://ror.org/00q2w1592 Mountain Equipment Co-op (Canada)'),
(85569, 'https://ror.org/00q3m9b74', 'en', 1, 'https://ror.org/00q3m9b74 James Madison Memorial Fellowship Foundation'),
(85570, 'https://ror.org/00q3q5393', 'en', 1, 'https://ror.org/00q3q5393 Princess Takamatsu Cancer Research Fund é«˜ę¾ēŽ‹å„³ćŒć‚“ē ”ē©¶åŸŗé‡‘'),
(85571, 'https://ror.org/00q4ajz48', 'fr', 1, 'https://ror.org/00q4ajz48 Centre QuƩbƩcois de Recherche et de DƩveloppement de l''Aluminium'),
(85572, 'https://ror.org/00q6ynx29', 'de', 1, 'https://ror.org/00q6ynx29 Stiftung Mercator'),
(85573, 'https://ror.org/00q8qjx07', 'no_lang_code', 1, 'https://ror.org/00q8qjx07 IEE (Luxembourg)'),
(85574, 'https://ror.org/00q9e8141', 'en', 1, 'https://ror.org/00q9e8141 Alberta Crop Industry Development Fund'),
(85575, 'https://ror.org/00qaa6j11', 'en', 1, 'https://ror.org/00qaa6j11 Hue University ĐẔi hį»c Huįŗæ'),
(85576, 'https://ror.org/00qb92h32', 'en', 1, 'https://ror.org/00qb92h32 Fund for Astrophysical Research'),
(85577, 'https://ror.org/00qc3ww81', 'en', 1, 'https://ror.org/00qc3ww81 Nova Scotia Health Research Foundation'),
(85578, 'https://ror.org/00qcv1n67', 'no_lang_code', 1, 'https://ror.org/00qcv1n67 InfoUse'),
(85579, 'https://ror.org/00qdqkj20', 'en', 1, 'https://ror.org/00qdqkj20 Association of Ontario Midwives'),
(85580, 'https://ror.org/00qeet526', 'nl', 1, 'https://ror.org/00qeet526 Stichting MS Research'),
(85581, 'https://ror.org/00qejpg20', 'en', 1, 'https://ror.org/00qejpg20 Anesthesia Quality Institute'),
(85582, 'https://ror.org/00qejsx81', 'en', 1, 'https://ror.org/00qejsx81 Seattle Reproductive Medicine'),
(85583, 'https://ror.org/00qf07q44', 'en', 1, 'https://ror.org/00qf07q44 Nanjing Institute of Industry Technology å—äŗ¬å·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(85584, 'https://ror.org/00qffz908', 'de', 1, 'https://ror.org/00qffz908 Landeszentrum Gesundheit Nordrhein-Westfalen'),
(85585, 'https://ror.org/00qg0kr10', 'en', 1, 'https://ror.org/00qg0kr10 Tokyo University of Agriculture and Technology ę±äŗ¬č¾²å·„å¤§å­¦'),
(85586, 'https://ror.org/00qghd717', 'en', 1, 'https://ror.org/00qghd717 Norwegian Labour and Welfare Administration'),
(85587, 'https://ror.org/00qh1df20', 'no_lang_code', 1, 'https://ror.org/00qh1df20 Vygon (France)'),
(85588, 'https://ror.org/00qhta086', 'no_lang_code', 0, 'https://ror.org/00qhta086 Mondragon Assembly (Spain)'),
(85589, 'https://ror.org/00qj2j544', 'en', 1, 'https://ror.org/00qj2j544 Korea Occupational Safety and Health Agency ģ•ˆģ „ė³“ź±“ź³µė‹Ø'),
(85590, 'https://ror.org/00qk36618', 'en', 0, 'https://ror.org/00qk36618 American Sentinel University'),
(85591, 'https://ror.org/00qm4t918', 'en', 1, 'https://ror.org/00qm4t918 Guizhou Minzu University č“µå·žę°‘ę—å¤§å­¦'),
(85592, 'https://ror.org/00qnect36', 'en', 1, 'https://ror.org/00qnect36 Health & Medicine Policy Research Group'),
(85593, 'https://ror.org/00qx9g681', 'sv', 1, 'https://ror.org/00qx9g681 Medicinska Understƶdsfƶreningen Liv och HƤlsa'),
(85594, 'https://ror.org/00qy3dp86', 'en', 1, 'https://ror.org/00qy3dp86 Wuhan Institute of Bioengineering ę­¦ę±‰ē”Ÿē‰©å·„ēØ‹ē ”ē©¶ę‰€'),
(85595, 'https://ror.org/00r09jm09', 'en', 1, 'https://ror.org/00r09jm09 Noguchi Thyroid Clinic and Hospital Foundation äæé™ŗåŒ»ē™‚ę©Ÿé–¢ åŒ»ē™‚ę³•äŗŗ é‡Žå£ē—…é™¢'),
(85596, 'https://ror.org/00r1j9q42', 'en', 1, 'https://ror.org/00r1j9q42 City University সিটি ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(85597, 'https://ror.org/00r1xj860', 'en', 1, 'https://ror.org/00r1xj860 Advance HE'),
(85598, 'https://ror.org/00r35g004', 'no_lang_code', 0, 'https://ror.org/00r35g004 Calsonic Kansei (United Kingdom)'),
(85599, 'https://ror.org/00r3np134', 'no_lang_code', 1, 'https://ror.org/00r3np134 STI Optronics (United States)'),
(85600, 'https://ror.org/00r57r863', 'en', 1, 'https://ror.org/00r57r863 Wallops Flight Facility'),
(85601, 'https://ror.org/00r59k631', 'no_lang_code', 0, 'https://ror.org/00r59k631 Mentor Graphics (United States)'),
(85602, 'https://ror.org/00r5c2613', 'no_lang_code', 1, 'https://ror.org/00r5c2613 CCD Design & Ergonomics (United Kingdom)'),
(85603, 'https://ror.org/00r5czc24', 'en', 0, 'https://ror.org/00r5czc24 Long Island University Hudson'),
(85604, 'https://ror.org/00r5tc683', 'en', 1, 'https://ror.org/00r5tc683 Korea Health Promotion Institute ķ•œźµ­ź±“ź°•ģ¦ģ§„ź°œė°œģ›'),
(85605, 'https://ror.org/00r7myp66', 'nl', 1, 'https://ror.org/00r7myp66 Nederlandse CF Registratie, Nederlandse Cystic Fibrosis Stichting'),
(85606, 'https://ror.org/00r7q8k52', 'en', 1, 'https://ror.org/00r7q8k52 Capability Scotland'),
(85607, 'https://ror.org/00r80b982', 'en', 1, 'https://ror.org/00r80b982 Stand Among Friends'),
(85608, 'https://ror.org/00r8h6r91', 'en', 1, 'https://ror.org/00r8h6r91 Macaulay Development Trust'),
(85609, 'https://ror.org/00rbcsd48', 'no_lang_code', 1, 'https://ror.org/00rbcsd48 Intra Cellular Therapies (United States)'),
(85610, 'https://ror.org/00retz024', 'en', 1, 'https://ror.org/00retz024 Cerebral Palsy Alliance'),
(85611, 'https://ror.org/00rfv7q17', 'en', 0, 'https://ror.org/00rfv7q17 Alliant International University'),
(85612, 'https://ror.org/00rnw4e09', 'en', 1, 'https://ror.org/00rnw4e09 Magee-Womens Research Institute'),
(85613, 'https://ror.org/00rpqyj14', 'no_lang_code', 1, 'https://ror.org/00rpqyj14 ARCA Biopharma (United States)'),
(85614, 'https://ror.org/00rqs0x69', 'en', 1, 'https://ror.org/00rqs0x69 New Jersey Space Grant Consortium'),
(85615, 'https://ror.org/00rrhf939', 'fr', 1, 'https://ror.org/00rrhf939 Fondation FondaMental'),
(85616, 'https://ror.org/00rrhnr97', 'en', 1, 'https://ror.org/00rrhnr97 CPA Australia'),
(85617, 'https://ror.org/00ryx8j34', 'pt', 1, 'https://ror.org/00ryx8j34 Associação Brasileira de Avaliação de Impacto'),
(85618, 'https://ror.org/00rz5wn10', 'de', 1, 'https://ror.org/00rz5wn10 Deutsche Stiftung für Chronisch Kranke'),
(85619, 'https://ror.org/00s0pgz81', 'no_lang_code', 1, 'https://ror.org/00s0pgz81 Intarcia Therapeutics (United States)'),
(85620, 'https://ror.org/00s338690', 'en', 1, 'https://ror.org/00s338690 Lampang Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø„ąø³ąø›ąø²ąø‡'),
(85621, 'https://ror.org/00s3e5069', 'en', 1, 'https://ror.org/00s3e5069 Lahore General Hospital Ł„Ų§ŪŁˆŲ± جنرل ہسپتال'),
(85622, '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'),
(85623, 'https://ror.org/00s3w5517', 'en', 1, 'https://ror.org/00s3w5517 Centre for Energy Advancement through Technological Innovation'),
(85624, 'https://ror.org/00s3z8519', 'en', 1, 'https://ror.org/00s3z8519 Johnson C. Smith University'),
(85625, 'https://ror.org/00s4xd708', 'en', 0, 'https://ror.org/00s4xd708 Insight'),
(85626, 'https://ror.org/00s5q8v96', 'fr', 0, 'https://ror.org/00s5q8v96 El-Oued University UniversitĆ© d''El-Oued Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁŠ'),
(85627, 'https://ror.org/00s6tnr74', 'en', 0, 'https://ror.org/00s6tnr74 Lipeck State Technical University'),
(85628, 'https://ror.org/00s7pd064', 'no_lang_code', 0, 'https://ror.org/00s7pd064 Etnoteam S.p.A'),
(85629, 'https://ror.org/00s81bq54', 'no_lang_code', 1, 'https://ror.org/00s81bq54 Jawbone (United States)'),
(85630, 'https://ror.org/00s93j442', 'no_lang_code', 1, 'https://ror.org/00s93j442 Spark Therapeutics (United States)'),
(85631, 'https://ror.org/00s97k668', 'en', 1, 'https://ror.org/00s97k668 National Center for Mathematics and Interdisciplinary Sciences äø­å›½ē§‘å­¦é™¢å›½å®¶ę•°å­¦äøŽäŗ¤å‰ē§‘å­¦äø­åæƒ'),
(85632, 'https://ror.org/00sb7hc59', 'en', 1, 'https://ror.org/00sb7hc59 Max Planck Institute for Polymer Research Max-Planck-Institut für Polymerforschung'),
(85633, 'https://ror.org/00scb2f23', 'no_lang_code', 1, 'https://ror.org/00scb2f23 ImmunoGen (United States)'),
(85634, 'https://ror.org/00seraz22', 'en', 1, 'https://ror.org/00seraz22 Air Force Engineering University 中国人民解放军空军巄程大学'),
(85635, 'https://ror.org/00sfe1713', 'en', 1, 'https://ror.org/00sfe1713 Veer Chandra Singh Garhwali Uttarakhand University of Horticulture & Forestry ą¤¬ą¤¾ą¤—ą¤µą¤¾ą¤Øą„€ और ą¤µą¤¾ą¤Øą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤‚ą¤”'),
(85636, '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'),
(85637, 'https://ror.org/00sfs5584', 'en', 0, 'https://ror.org/00sfs5584 Academy of Labor and Social Relations Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ филиал АкаГемии Ń‚Ń€ŃƒŠ“Š° Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(85638, 'https://ror.org/00shc0s02', 'en', 1, 'https://ror.org/00shc0s02 Sobolev Institute of Mathematics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики им. Š”. Š›. Доболева Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(85639, 'https://ror.org/00sk4kx55', 'en', 1, 'https://ror.org/00sk4kx55 Russian-Tajik Slavonic University Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø ŃŠ»Š°Š²ŃŠ½ŠøŠø Тоҷикистон-Š ŃƒŃŠøŃ Российско-таГжикский ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(85640, 'https://ror.org/00sk5e460', 'en', 0, 'https://ror.org/00sk5e460 Penn State Schuylkill'),
(85641, 'https://ror.org/00sk7bj79', 'en', 1, 'https://ror.org/00sk7bj79 Energy Policy and Planning Office ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø™ą¹‚ąø¢ąøšąø²ąø¢ą¹ąø„ąø°ą¹ąøœąø™ąøžąø„ąø±ąø‡ąø‡ąø²ąø™'),
(85642, 'https://ror.org/00snx7262', 'en', 0, 'https://ror.org/00snx7262 Indian Institute for Human Settlemnts'),
(85643, 'https://ror.org/00srzz415', 'no_lang_code', 1, 'https://ror.org/00srzz415 HeiTech Services (United States)'),
(85644, 'https://ror.org/00sv75074', 'en', 1, 'https://ror.org/00sv75074 Aerospace Medical Association'),
(85645, 'https://ror.org/00sv97b10', 'en', 1, 'https://ror.org/00sv97b10 ARK Foundation'),
(85646, 'https://ror.org/00sxp6h30', 'no_lang_code', 1, 'https://ror.org/00sxp6h30 Jinchuan (China) 金川集团'),
(85647, 'https://ror.org/00sxy8533', 'es', 1, 'https://ror.org/00sxy8533 La Salle University Universidad La Salle'),
(85648, 'https://ror.org/00sz76c61', 'no_lang_code', 0, 'https://ror.org/00sz76c61 Centro Elettrotecnico Sperimentale Italiano (Germany)'),
(85649, 'https://ror.org/00t1dhh66', 'en', 1, 'https://ror.org/00t1dhh66 State Audit Office of Hungary'),
(85650, 'https://ror.org/00t28mr39', 'en', 1, 'https://ror.org/00t28mr39 Crown Research Institutes'),
(85651, 'https://ror.org/00t38a349', 'en', 1, 'https://ror.org/00t38a349 Cancer Research Society SociƩtƩ de Recherche sur le Cancer'),
(85652, 'https://ror.org/00t3ez756', 'de', 1, 'https://ror.org/00t3ez756 Deutsche Gesellschaft für Traditionelle Chinesische Medizin'),
(85653, 'https://ror.org/00t6wbg37', 'en', 0, 'https://ror.org/00t6wbg37 University of Phoenix'),
(85654, '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'),
(85655, 'https://ror.org/00t9de449', 'no_lang_code', 0, 'https://ror.org/00t9de449 St. Jude Medical (United States)'),
(85656, 'https://ror.org/00ta5r839', 'en', 1, 'https://ror.org/00ta5r839 Federal Bureau of Investigation'),
(85657, 'https://ror.org/00tbgre39', 'nl', 1, 'https://ror.org/00tbgre39 WoonZorgcentra Haaglanden'),
(85658, 'https://ror.org/00tc3hj46', 'en', 1, 'https://ror.org/00tc3hj46 Association des infirmiĆØres et infirmiers du Canada Canadian Nurses Association'),
(85659, 'https://ror.org/00te2x188', 'en', 1, 'https://ror.org/00te2x188 Institute for Scientific Interchange Istituto per l''Interscambio Scientifico'),
(85660, 'https://ror.org/00tf10278', 'no_lang_code', 1, 'https://ror.org/00tf10278 Betta Pharmaceuticals (China) č“č¾¾čÆäøš'),
(85661, 'https://ror.org/00tjd7r80', 'en', 1, 'https://ror.org/00tjd7r80 Work + Family Researchers Network'),
(85662, 'https://ror.org/00tk6s776', 'en', 1, 'https://ror.org/00tk6s776 Institute of Biomedical Sciences, Academia Sinica äø­å¤®ē ”ē©¶é™¢ē”Ÿē‰©é†«å­øē§‘å­øē ”ē©¶ę‰€'),
(85663, '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'),
(85664, 'https://ror.org/00ts7br76', 'en', 1, 'https://ror.org/00ts7br76 Cerebral Palsy Alliance Research Foundation'),
(85665, 'https://ror.org/00tzq6e64', 'en', 0, 'https://ror.org/00tzq6e64 Long Island University Hudson at Westchester'),
(85666, 'https://ror.org/00v2fj703', 'en', 0, 'https://ror.org/00v2fj703 International Livestock Research Institute'),
(85667, 'https://ror.org/00v344w16', 'sv', 1, 'https://ror.org/00v344w16 Fredrik och Ingrid Thurings Stiftelse'),
(85668, 'https://ror.org/00v3cq569', 'en', 1, 'https://ror.org/00v3cq569 Okazaki Institute for Integrative Bioscience å²”å“Žēµ±åˆćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(85669, 'https://ror.org/00v5fmc55', 'no_lang_code', 1, 'https://ror.org/00v5fmc55 Wad Medani Ahlia University ŁƒŁ„ŁŠŲ© ود Ł…ŲÆŁ†ŁŠ Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(85670, 'https://ror.org/00v64s089', 'no_lang_code', 1, 'https://ror.org/00v64s089 Lexicon Pharmaceuticals (United States)'),
(85671, 'https://ror.org/00v807439', 'en', 1, 'https://ror.org/00v807439 Translational Research Institute'),
(85672, 'https://ror.org/00v8w0b34', 'en', 1, 'https://ror.org/00v8w0b34 Japan Racing Association ē‰¹ę®Šę³•äŗŗę—„ęœ¬äø­å¤®ē«¶é¦¬ä¼š'),
(85673, 'https://ror.org/00v9qp856', 'en', 1, 'https://ror.org/00v9qp856 Middletown Thrall Library'),
(85674, 'https://ror.org/00v9rqv32', 'en', 1, 'https://ror.org/00v9rqv32 Water Research Australia'),
(85675, 'https://ror.org/00va6b064', 'en', 1, 'https://ror.org/00va6b064 Canadian Academy of Sport and Exercise Medicine'),
(85676, 'https://ror.org/00vawn972', 'de', 1, 'https://ror.org/00vawn972 Infrafrontier'),
(85677, 'https://ror.org/00vaxnn68', 'es', 1, 'https://ror.org/00vaxnn68 Universidad de la Sierra JuƔrez'),
(85678, 'https://ror.org/00vbrae69', 'no_lang_code', 1, 'https://ror.org/00vbrae69 Oakdene Hollins (United Kingdom)'),
(85679, 'https://ror.org/00vcb6036', 'en', 1, 'https://ror.org/00vcb6036 Osaka Prefectural Medical Center å¤§é˜Ŗę€„ę€§ęœŸ'),
(85680, 'https://ror.org/00vdff906', 'fi', 1, 'https://ror.org/00vdff906 Walter Ahlstrƶmin sƤƤtiƶ'),
(85681, 'https://ror.org/00vn23s59', 'es', 1, 'https://ror.org/00vn23s59 Instituto de Estudios de Ciencias de la Salud de Castilla y León'),
(85682, 'https://ror.org/00vnaf984', 'en', 1, 'https://ror.org/00vnaf984 Sumy National Agrarian University Думский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Думський Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(85683, 'https://ror.org/00vng1j41', 'no_lang_code', 0, 'https://ror.org/00vng1j41 Crucell (Sweden)'),
(85684, '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'),
(85685, 'https://ror.org/00vqczs30', 'en', 1, 'https://ror.org/00vqczs30 Community Relations Council'),
(85686, 'https://ror.org/00vttj605', 'no_lang_code', 1, 'https://ror.org/00vttj605 ROHM ćƒ­ćƒ¼ćƒ ę Ŗå¼ä¼šē¤¾'),
(85687, 'https://ror.org/00vwc8w74', 'en', 1, 'https://ror.org/00vwc8w74 International Women''s Media Foundation'),
(85688, 'https://ror.org/00vz56m34', 'no_lang_code', 0, 'https://ror.org/00vz56m34 Esterline (United States)'),
(85689, 'https://ror.org/00vzax568', 'no_lang_code', 1, 'https://ror.org/00vzax568 Symplectic (UK)'),
(85690, 'https://ror.org/00w0f8567', 'en', 0, 'https://ror.org/00w0f8567 Kyushu Tokai University ä¹å·žę±ęµ·å¤§å­¦'),
(85691, 'https://ror.org/00w0k4e67', 'en', 1, 'https://ror.org/00w0k4e67 Texas A&M University at Galveston Universidad de Texas A&M en Galveston'),
(85692, 'https://ror.org/00w0nv972', 'en', 1, 'https://ror.org/00w0nv972 Tallinn University of Applied Sciences Tallinna TehnikakƵrgkool'),
(85693, 'https://ror.org/00w37da60', 'en', 0, 'https://ror.org/00w37da60 National Information Infrastructure Development Institute'),
(85694, 'https://ror.org/00w3rj542', 'en', 1, 'https://ror.org/00w3rj542 California Community Foundation'),
(85695, 'https://ror.org/00w8vmf89', 'no_lang_code', 1, 'https://ror.org/00w8vmf89 Innoplexus'),
(85696, 'https://ror.org/00w9a2z18', 'no_lang_code', 1, 'https://ror.org/00w9a2z18 Jiwaji University ą¤œą„€ą¤µą¤¾ą¤œą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤—ą„ą¤µą¤¾ą¤²ą¤æą¤Æą¤°'),
(85697, '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 Ų§Ł„Ł…Ł…Ł„ŁƒŲ© Ų§Ł„Ł…ŲŗŲ±ŲØŁŠŲ© - وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© و Ų§Ł„ŲŖŁƒŁˆŁŠŁ† Ų§Ł„Ł…Ł‡Ł†ŁŠ و Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ و البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(85698, 'https://ror.org/00wa5ga86', 'de', 1, 'https://ror.org/00wa5ga86 Austrian Diabetes Association Ɩsterreichische Diabetes Gesellschaft'),
(85699, 'https://ror.org/00wadqy95', 'no_lang_code', 0, 'https://ror.org/00wadqy95 MVV Energie'),
(85700, 'https://ror.org/00wapyh41', 'en', 1, 'https://ror.org/00wapyh41 Islamic Azad University, Bojnourd Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲØŲ¬Ł†ŁˆŲ±ŲÆ'),
(85701, 'https://ror.org/00wdk8w52', 'en', 1, 'https://ror.org/00wdk8w52 South African Association for Marine Biological Research'),
(85702, 'https://ror.org/00wf6bs47', 'en', 1, 'https://ror.org/00wf6bs47 Jean Shanks Foundation'),
(85703, 'https://ror.org/00whh7p27', 'en', 0, 'https://ror.org/00whh7p27 Bevill State Community College'),
(85704, 'https://ror.org/00wjb4146', 'en', 1, 'https://ror.org/00wjb4146 National CFIDS Foundation'),
(85705, 'https://ror.org/00wkygr69', 'en', 1, 'https://ror.org/00wkygr69 Maine Department of Marine Resources'),
(85706, 'https://ror.org/00wm1xy63', 'en', 1, 'https://ror.org/00wm1xy63 Handel Institute'),
(85707, 'https://ror.org/00wmr0278', 'en', 0, 'https://ror.org/00wmr0278 Zaporizhzhya State Medical University'),
(85708, 'https://ror.org/00wnb9798', 'en', 1, 'https://ror.org/00wnb9798 National Science and Technology Council'),
(85709, 'https://ror.org/00wse9j86', 'en', 1, 'https://ror.org/00wse9j86 Kitakyushu Foundation for the Advancement of Industry, Science and Technology å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ä¹å·žē”£ę„­å­¦č”“ęŽØé€²ę©Ÿę§‹'),
(85710, 'https://ror.org/00wtpj265', 'no_lang_code', 1, 'https://ror.org/00wtpj265 Northwest Biotherapeutics (United States)'),
(85711, 'https://ror.org/00wvvxx15', 'no_lang_code', 1, 'https://ror.org/00wvvxx15 GemVax & KAEL (South Korea) 젬백스 & ģ¹“ģ—˜'),
(85712, 'https://ror.org/00wyk1t96', 'en', 1, 'https://ror.org/00wyk1t96 Melanoma Research Foundation'),
(85713, 'https://ror.org/00wz65j53', 'no_lang_code', 0, 'https://ror.org/00wz65j53 JDSU (Switzerland)'),
(85714, 'https://ror.org/00wzjq897', 'en', 1, 'https://ror.org/00wzjq897 Azabu University 麻布大学'),
(85715, 'https://ror.org/00x1gs846', 'pt', 1, 'https://ror.org/00x1gs846 Associação Viver a Ciência'),
(85716, 'https://ror.org/00x20kz95', 'fr', 1, 'https://ror.org/00x20kz95 Association Laurette Fugain'),
(85717, 'https://ror.org/00x2a8982', 'en', 1, 'https://ror.org/00x2a8982 Rural Sociological Society'),
(85718, 'https://ror.org/00x44h034', 'en', 1, 'https://ror.org/00x44h034 Xinjiang Technical Institute of Physics & Chemistry äø­å›½ē§‘å­¦é™¢ę–°ē–†ē†åŒ–ęŠ€ęœÆē ”ē©¶ę‰€'),
(85719, 'https://ror.org/00x5cwj10', 'en', 1, 'https://ror.org/00x5cwj10 V.Ye. Tairov Institute of Viticulture and Winemaking Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ винограГарства і виноробства імені Š’.Š„. Таїрова'),
(85720, 'https://ror.org/00x6hme34', 'no_lang_code', 0, 'https://ror.org/00x6hme34 MƩrieux NutriSciences (France)'),
(85721, 'https://ror.org/00x6vsv29', 'en', 1, 'https://ror.org/00x6vsv29 Qatar Orthopaedic and Sports Medicine Hospital سبيتار'),
(85722, 'https://ror.org/00x7vzk16', 'en', 1, 'https://ror.org/00x7vzk16 Suan Dusit University ดหาวณทยาคัยสวนดุสณต'),
(85723, 'https://ror.org/00x817z51', 'en', 1, 'https://ror.org/00x817z51 Society for Applied Studies'),
(85724, 'https://ror.org/00xacpf89', 'no_lang_code', 1, 'https://ror.org/00xacpf89 Aerie Pharmaceuticals (United States)'),
(85725, 'https://ror.org/00xc0ma20', 'en', 1, 'https://ror.org/00xc0ma20 City University of Hong Kong, Shenzhen Research Institute é¦™ęøÆåŸŽåø‚å¤§å­¦ę·±åœ³ē ”ē©¶é™¢'),
(85726, 'https://ror.org/00xc1d948', 'en', 1, 'https://ror.org/00xc1d948 Industrial University of Santander Universidad Industrial de Santander'),
(85727, 'https://ror.org/00xcb0s16', 'en', 1, 'https://ror.org/00xcb0s16 International Business School ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾ висше бизнес ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ'),
(85728, 'https://ror.org/00xd2r463', 'en', 0, 'https://ror.org/00xd2r463 Africa Centre for Health and Population Studies'),
(85729, 'https://ror.org/00xg12k29', 'en', 1, 'https://ror.org/00xg12k29 Environmental Leadership Program'),
(85730, 'https://ror.org/00xh62v25', 'en', 1, 'https://ror.org/00xh62v25 Consortium for Plant Biotechnology Research'),
(85731, 'https://ror.org/00xhffh65', 'no_lang_code', 1, 'https://ror.org/00xhffh65 Nirma (India)'),
(85732, 'https://ror.org/00xhj8c72', 'en', 1, 'https://ror.org/00xhj8c72 Loyola Marymount University'),
(85733, 'https://ror.org/00xjwyj62', 'en', 1, 'https://ror.org/00xjwyj62 Eighth Affiliated Hospital of Sun Yat-sen University äø­å±±å¤§å­¦é™„å±žē¬¬å…«åŒ»é™¢'),
(85734, 'https://ror.org/00xkj2889', 'en', 1, 'https://ror.org/00xkj2889 Guarantors of Brain'),
(85735, 'https://ror.org/00xkv4888', 'en', 0, 'https://ror.org/00xkv4888 Penn State DuBois'),
(85736, 'https://ror.org/00xn28y13', 'en', 1, 'https://ror.org/00xn28y13 Chinese Society of Endocrinology äø­å›½å†…åˆ†ę³Œå­¦ä¼š'),
(85737, 'https://ror.org/00xnn6j73', 'no_lang_code', 1, 'https://ror.org/00xnn6j73 Nikkiso (Japan)'),
(85738, 'https://ror.org/00xpnyt30', 'fr', 1, 'https://ror.org/00xpnyt30 Institut National des Recherches Agricoles du BƩnin'),
(85739, 'https://ror.org/00xq3k060', 'en', 1, 'https://ror.org/00xq3k060 Catholic University of Cameroon UniversitƩ catholique du Cameroun'),
(85740, 'https://ror.org/00xs3qr03', 'en', 1, 'https://ror.org/00xs3qr03 Sichuan Youth Science & Technology Foundation'),
(85741, 'https://ror.org/00xsc8q85', 'en', 1, 'https://ror.org/00xsc8q85 Cocoa Research Institute of Nigeria'),
(85742, 'https://ror.org/00xv4ev28', 'en', 1, 'https://ror.org/00xv4ev28 International Agency for the Prevention of Blindness'),
(85743, 'https://ror.org/00xx8sn02', 'en', 0, 'https://ror.org/00xx8sn02 Art Institute of Colorado'),
(85744, 'https://ror.org/00xzyx493', 'en', 1, 'https://ror.org/00xzyx493 Ethics and Excellence in Journalism Foundation'),
(85745, 'https://ror.org/00y006049', 'en', 1, 'https://ror.org/00y006049 British Society for Research on Ageing'),
(85746, 'https://ror.org/00y27w112', 'en', 1, 'https://ror.org/00y27w112 Children’s Leukemia Research Association'),
(85747, 'https://ror.org/00y35qw13', 'no_lang_code', 1, 'https://ror.org/00y35qw13 Celon Pharma (Poland)'),
(85748, 'https://ror.org/00y4qmx55', 'en', 1, 'https://ror.org/00y4qmx55 Shanghai Urban Construction Design and Research Institute (Group) äøŠęµ·åŸŽåø‚å»ŗč®¾č®¾č®”ē ”ē©¶é™¢'),
(85749, 'https://ror.org/00y5f4k61', 'en', 1, 'https://ror.org/00y5f4k61 Massachusetts Historical Society'),
(85750, 'https://ror.org/00y81cn68', 'no_lang_code', 1, 'https://ror.org/00y81cn68 Oligomerix (United States)'),
(85751, 'https://ror.org/00y86q787', 'no_lang_code', 0, 'https://ror.org/00y86q787 Ceramatec (United States)'),
(85752, 'https://ror.org/00y8ab321', 'en', 1, 'https://ror.org/00y8ab321 Federation for the Humanities and Social Sciences FƩdƩration des Sciences Humaines'),
(85753, 'https://ror.org/00y9sdk24', 'en', 1, 'https://ror.org/00y9sdk24 Institute for Environmental Sciences ē’°å¢ƒē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(85754, 'https://ror.org/00ya1zd25', 'en', 1, 'https://ror.org/00ya1zd25 Virtual University of Pakistan جامعہ Ł…Ų¬Ų§Ų²ŪŒ پاکستان'),
(85755, 'https://ror.org/00yad9135', 'en', 1, 'https://ror.org/00yad9135 Sonoran Joint Venture'),
(85756, 'https://ror.org/00ydera23', 'en', 1, 'https://ror.org/00ydera23 California Health Care Safety Net Institute'),
(85757, 'https://ror.org/00yg6a139', 'en', 1, 'https://ror.org/00yg6a139 Chinese Nutrition Society äø­å›½č„å…»å­¦ä¼š'),
(85758, 'https://ror.org/00ygpk854', 'en', 0, 'https://ror.org/00ygpk854 Antiquities, Monuments and Museums Corporation'),
(85759, 'https://ror.org/00ypzd005', 'en', 1, 'https://ror.org/00ypzd005 Australian Trade and Investment Commission'),
(85760, 'https://ror.org/00yqxd286', 'en', 1, 'https://ror.org/00yqxd286 Sichuan College of Architectural Technology å››å·å»ŗē­‘čŒäøšęŠ€ęœÆå­¦é™¢'),
(85761, 'https://ror.org/00yr30950', 'en', 0, 'https://ror.org/00yr30950 Caritas Junior College ć‚«ćƒŖć‚æć‚¹å„³å­ēŸ­ęœŸå¤§å­¦'),
(85762, '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'),
(85763, 'https://ror.org/00yrvez87', 'no_lang_code', 1, 'https://ror.org/00yrvez87 Media and Process Technology (United States)'),
(85764, 'https://ror.org/00ysrwn89', 'en', 1, 'https://ror.org/00ysrwn89 Horace Smith Fund'),
(85765, 'https://ror.org/00yvbk320', 'en', 1, 'https://ror.org/00yvbk320 Independent Television Service'),
(85766, 'https://ror.org/00yvfbm89', 'de', 1, 'https://ror.org/00yvfbm89 Fachhochschule der Diakonie'),
(85767, 'https://ror.org/00yx5cw48', 'en', 1, 'https://ror.org/00yx5cw48 EMBL Australia'),
(85768, 'https://ror.org/00yxwnd62', 'no_lang_code', 0, 'https://ror.org/00yxwnd62 Bull (United Kingdom)'),
(85769, 'https://ror.org/00yy3sa08', 'no_lang_code', 0, 'https://ror.org/00yy3sa08 VBM Laboratoriet (Denmark)'),
(85770, 'https://ror.org/00yy5aq18', 'en', 1, 'https://ror.org/00yy5aq18 Danish Society of Nephrology Dansk Nefrologisk Selskab'),
(85771, 'https://ror.org/00yyjm707', 'no_lang_code', 1, 'https://ror.org/00yyjm707 Tongfu Microelectronics (China)'),
(85772, 'https://ror.org/00yzykq08', 'nl', 1, 'https://ror.org/00yzykq08 Nationale vereniging voor LUPUS, APS, Sclerodermie en MCTD'),
(85773, 'https://ror.org/00z1gn612', 'no_lang_code', 1, 'https://ror.org/00z1gn612 Bio Food Tech (Canada)'),
(85774, 'https://ror.org/00z1gwf89', 'en', 1, 'https://ror.org/00z1gwf89 Shenzhen Research Institute of Big Data ę·±åœ³åø‚å¤§ę•°ę®ē ”ē©¶é™¢'),
(85775, 'https://ror.org/00z1mf734', 'en', 0, 'https://ror.org/00z1mf734 Okayama Institute for Quantum Physics å²”å±±å…‰é‡å­ē§‘å­¦ē ”ē©¶ę‰€'),
(85776, 'https://ror.org/00z1y3s94', 'no_lang_code', 1, 'https://ror.org/00z1y3s94 Nanshan Group (China) å—å±±ęŽ§č‚”'),
(85777, 'https://ror.org/00z2jqs75', 'en', 1, 'https://ror.org/00z2jqs75 African American Museum in Philadelphia'),
(85778, 'https://ror.org/00z2vfv58', 'en', 1, 'https://ror.org/00z2vfv58 HÔskóli Vestfjarða University Centre of the Westfjords'),
(85779, 'https://ror.org/00z3yke57', 'en', 1, 'https://ror.org/00z3yke57 Chinese Academy of Engineering 中国巄程院'),
(85780, 'https://ror.org/00z8rf270', 'sv', 1, 'https://ror.org/00z8rf270 Insamlingsstiftelsen Cancer- och Allergifonden'),
(85781, 'https://ror.org/00z9ev113', 'en', 1, 'https://ror.org/00z9ev113 Shinjuku College of Information Technology ę–°å®æęƒ…å ±ćƒ“ć‚øćƒć‚¹å°‚é–€å­¦ę ”'),
(85782, 'https://ror.org/00zamzy79', 'en', 1, 'https://ror.org/00zamzy79 Society for Experimental Mechanics'),
(85783, 'https://ror.org/00zaskn60', 'en', 1, 'https://ror.org/00zaskn60 College of Tourism and Hotel Management Κολλέγιο Ī¤ĪæĻ…ĻĪ¹ĻƒĪ¼ĪæĻ και Ī”Ī¹ĪæĪÆĪŗĪ·ĻƒĪ·Ļ‚ ĪžĪµĪ½ĪæĪ“ĪæĻ‡ĪµĪÆĻ‰Ī½'),
(85784, 'https://ror.org/00zbz2c25', 'no_lang_code', 1, 'https://ror.org/00zbz2c25 Ultragenyx Pharmaceutical (United States)');
INSERT INTO `rors` VALUES
(85785, 'https://ror.org/00zc03z98', 'en', 1, 'https://ror.org/00zc03z98 Propionic Acidemia Foundation'),
(85786, 'https://ror.org/00zcpyv65', 'no_lang_code', 0, 'https://ror.org/00zcpyv65 NeRRe Therapeutics (United Kingdom)'),
(85787, 'https://ror.org/00zcwgt52', 'en', 0, 'https://ror.org/00zcwgt52 Pierce College'),
(85788, 'https://ror.org/00zg0xv61', 'en', 0, 'https://ror.org/00zg0xv61 Midwestern University'),
(85789, 'https://ror.org/00zj6kn78', 'no', 0, 'https://ror.org/00zj6kn78 Sykehuset Ƙstfold'),
(85790, 'https://ror.org/00zkxe732', 'no_lang_code', 0, 'https://ror.org/00zkxe732 Silicon Graphics International (United Kingdom)'),
(85791, 'https://ror.org/00zm8bs36', 'fr', 0, 'https://ror.org/00zm8bs36 Laboratoire de Physique Statistique'),
(85792, 'https://ror.org/00znz6a90', 'en', 1, 'https://ror.org/00znz6a90 National Institute of Technology Akita College ē§‹ē”°å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(85793, 'https://ror.org/00zpmfv41', 'no_lang_code', 1, 'https://ror.org/00zpmfv41 CellCentric (United Kingdom)'),
(85794, 'https://ror.org/00zpnkr86', 'no', 1, 'https://ror.org/00zpnkr86 Landsforeningen for hjerte- og lungesyke'),
(85795, 'https://ror.org/00zq3nn60', 'en', 1, 'https://ror.org/00zq3nn60 Institute of Ecology and Biodiversity'),
(85796, 'https://ror.org/00zq3v614', 'en', 1, 'https://ror.org/00zq3v614 Dr Marnie Rose Foundation'),
(85797, 'https://ror.org/00zs1y079', 'en', 1, 'https://ror.org/00zs1y079 Iowa Pork Producers Association'),
(85798, 'https://ror.org/00zs80j25', 'no_lang_code', 0, 'https://ror.org/00zs80j25 Polaris Industries (United States)'),
(85799, 'https://ror.org/00ztck474', 'ro', 0, 'https://ror.org/00ztck474 Institutului de Biologie Bucureşti'),
(85800, 'https://ror.org/00zx3bc13', 'en', 1, 'https://ror.org/00zx3bc13 South Gloucestershire Council'),
(85801, 'https://ror.org/00zxd0649', 'no_lang_code', 1, 'https://ror.org/00zxd0649 Hazen and Sawyer (United States)'),
(85802, 'https://ror.org/00zzzgw04', 'en', 1, 'https://ror.org/00zzzgw04 Southern Nations, Nationalities, and Peoples'' Region የደቔቄ į‰„įˆ”įˆ­ į‰„įˆ”įˆØįˆ°į‰¦į‰½įŠ“ įˆ…į‹į‰¦į‰½ įŠ­įˆįˆ'),
(85803, 'https://ror.org/0101rsn15', 'en', 1, 'https://ror.org/0101rsn15 Peanut Institute'),
(85804, 'https://ror.org/0102d5245', 'en', 0, 'https://ror.org/0102d5245 Art Institute of Washington'),
(85805, 'https://ror.org/0102p7z54', 'en', 1, 'https://ror.org/0102p7z54 European Society of Anaesthesiology'),
(85806, 'https://ror.org/010387529', 'en', 1, 'https://ror.org/010387529 China Primary Health Care Foundation äø­å›½åˆēŗ§å«ē”Ÿäæå„åŸŗé‡‘ä¼š'),
(85807, 'https://ror.org/0103gnm60', 'de', 1, 'https://ror.org/0103gnm60 Stiftung Lindenhof Bern'),
(85808, 'https://ror.org/01054tt62', 'fr', 1, 'https://ror.org/01054tt62 Luc Hoffmann Institute'),
(85809, 'https://ror.org/0105syj83', 'en', 1, 'https://ror.org/0105syj83 Calcutta Research Group'),
(85810, 'https://ror.org/0106aa564', 'en', 1, 'https://ror.org/0106aa564 Dent Neurologic Institute'),
(85811, 'https://ror.org/0106zn277', 'en', 1, 'https://ror.org/0106zn277 Tioga County Historical Society'),
(85812, 'https://ror.org/010842375', 'en', 1, 'https://ror.org/010842375 Tata Memorial Hospital टाटा ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤øą„‡ą¤‚ą¤Ÿą¤° ą®Ÿą®¾ą®ŸąÆą®Ÿą®¾ நினைவு ą®®ąÆˆą®Æą®®ąÆ'),
(85813, 'https://ror.org/0108mj224', 'en', 1, 'https://ror.org/0108mj224 TomKat Foundation'),
(85814, 'https://ror.org/0109p9r67', 'en', 1, 'https://ror.org/0109p9r67 Joint United Nations Programme on HIV/AIDS'),
(85815, 'https://ror.org/010cnye54', 'no_lang_code', 1, 'https://ror.org/010cnye54 Voyager Therapeutics (United States)'),
(85816, 'https://ror.org/010fkza68', 'en', 1, 'https://ror.org/010fkza68 Harry and Jeanette Weinberg Foundation'),
(85817, 'https://ror.org/010g30191', 'en', 1, 'https://ror.org/010g30191 National Institute of Development Administration ąøŖąø–ąø²ąøšąø±ąø™ąøšąø±ąø“ąø‘ąø“ąø•ąøžąø±ąø’ąø™ąøšąø£ąø“ąø«ąø²ąø£ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(85818, 'https://ror.org/010hy0139', 'no_lang_code', 0, 'https://ror.org/010hy0139 Aerpio Pharmaceuticals (United States)'),
(85819, 'https://ror.org/010k79j48', 'no_lang_code', 1, 'https://ror.org/010k79j48 The Nisshin OilliO Group (Japan) ę—„ęø…ć‚Ŗć‚¤ćƒŖć‚Ŗć‚°ćƒ«ćƒ¼ćƒ— 名古屋巄堓'),
(85820, 'https://ror.org/010mznj09', 'no_lang_code', 0, 'https://ror.org/010mznj09 Black & Decker (United Kingdom)'),
(85821, 'https://ror.org/010pn0509', 'no_lang_code', 1, 'https://ror.org/010pn0509 Research and Production Center "Fox and Co" ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный Центр "Š¤ŠžŠšŠ” Šø Ко"'),
(85822, 'https://ror.org/010prmy50', 'en', 1, 'https://ror.org/010prmy50 Virginia–Maryland College of Veterinary Medicine'),
(85823, 'https://ror.org/010pwb356', 'sv', 1, 'https://ror.org/010pwb356 Anna och Edwin Bergers Stiftelse'),
(85824, 'https://ror.org/010r6xh18', 'en', 1, 'https://ror.org/010r6xh18 Churchill School and Center'),
(85825, 'https://ror.org/010rf2m76', 'en', 1, 'https://ror.org/010rf2m76 RIKEN Center for Sustainable Resource Science ē’°å¢ƒč³‡ęŗē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(85826, 'https://ror.org/010spe038', 'en', 1, 'https://ror.org/010spe038 National Film Preservation Foundation'),
(85827, 'https://ror.org/010t7zx27', 'en', 1, 'https://ror.org/010t7zx27 Chartered Institution of Wastes Management'),
(85828, 'https://ror.org/010tfrq03', 'en', 1, 'https://ror.org/010tfrq03 Logan City Council'),
(85829, 'https://ror.org/0111z2552', 'pl', 1, 'https://ror.org/0111z2552 Elbląska Uczelnia Humanistyczno-Ekonomiczna'),
(85830, 'https://ror.org/0113yba25', 'en', 1, 'https://ror.org/0113yba25 Waitemata District Health Board'),
(85831, 'https://ror.org/0114b6272', 'en', 0, 'https://ror.org/0114b6272 Forest Park'),
(85832, 'https://ror.org/0114f6s34', 'en', 0, 'https://ror.org/0114f6s34 College of Allied Medical Science Akita University ē§‹ē”°å¤§å­¦åŒ»ē™‚ęŠ€č”“ēŸ­ęœŸå¤§å­¦éƒØ'),
(85833, 'https://ror.org/011637r53', 'en', 1, 'https://ror.org/011637r53 The Battlefields Trust'),
(85834, 'https://ror.org/01167a838', 'en', 1, 'https://ror.org/01167a838 Earth Observatory of Singapore'),
(85835, 'https://ror.org/01175g155', 'en', 1, 'https://ror.org/01175g155 Xinzhou Teachers University åæ»å·žåøˆčŒƒå­¦é™¢'),
(85836, 'https://ror.org/0118z9937', 'en', 0, 'https://ror.org/0118z9937 Man Adult Hospital äø‡ęˆē—…é™¢'),
(85837, 'https://ror.org/011apn769', 'en', 0, 'https://ror.org/011apn769 Penn State Greater Allegheny'),
(85838, 'https://ror.org/011asxc61', 'no_lang_code', 1, 'https://ror.org/011asxc61 Liander (Netherlands)'),
(85839, 'https://ror.org/011b4qg07', 'no_lang_code', 0, 'https://ror.org/011b4qg07 Fluorinov Pharma (Canada)'),
(85840, 'https://ror.org/011bahz51', 'no_lang_code', 1, 'https://ror.org/011bahz51 Baldacci (Italy) Laboratori Baldacci'),
(85841, 'https://ror.org/011dvr318', 'en', 1, 'https://ror.org/011dvr318 Spaulding Rehabilitation Hospital'),
(85842, 'https://ror.org/011eb8m75', 'en', 0, 'https://ror.org/011eb8m75 Nagoya Keizai University Junior College'),
(85843, 'https://ror.org/011j4zc17', 'en', 1, 'https://ror.org/011j4zc17 National Gallery of Australia'),
(85844, 'https://ror.org/011kh9f68', 'en', 1, 'https://ror.org/011kh9f68 EuroScience'),
(85845, 'https://ror.org/011mrre73', 'en', 0, 'https://ror.org/011mrre73 SmithKline Beecham Animal Health'),
(85846, 'https://ror.org/011p1an89', 'no_lang_code', 1, 'https://ror.org/011p1an89 Accretech (Japan) ę±äŗ¬ē²¾åÆ†'),
(85847, 'https://ror.org/011pbwt24', 'no_lang_code', 1, 'https://ror.org/011pbwt24 Eileen Fisher (United States)'),
(85848, 'https://ror.org/011pcwc98', 'en', 0, 'https://ror.org/011pcwc98 Stanford University School of Medicine'),
(85849, 'https://ror.org/011pd5k86', 'en', 1, 'https://ror.org/011pd5k86 Institute of Materials Science Viện Khoa hį»c Vįŗ­t liệu'),
(85850, 'https://ror.org/011sb7w62', 'en', 1, 'https://ror.org/011sb7w62 InterMedia'),
(85851, 'https://ror.org/011v5mm15', 'no_lang_code', 1, 'https://ror.org/011v5mm15 Esgee Technologies (United States)'),
(85852, 'https://ror.org/011vffx12', 'en', 0, 'https://ror.org/011vffx12 University of Wisconsin–Washington County'),
(85853, 'https://ror.org/011vh9z64', 'en', 0, 'https://ror.org/011vh9z64 Rutgers University–Newark'),
(85854, 'https://ror.org/011xqkf34', 'en', 1, 'https://ror.org/011xqkf34 Miscarriage Association'),
(85855, 'https://ror.org/0120czk38', 'en', 1, 'https://ror.org/0120czk38 Royal Forest Department ąøąø£ąø”ąø›ą¹ˆąø²ą¹„ąø”ą¹‰'),
(85856, 'https://ror.org/0122fj965', 'en', 1, 'https://ror.org/0122fj965 Wenzhou Vocational College of Science and Technology'),
(85857, 'https://ror.org/0123yy056', 'nl', 1, 'https://ror.org/0123yy056 Nederlandse Vereniging voor Tropische Geneeskunde'),
(85858, 'https://ror.org/0126z4b94', 'en', 1, 'https://ror.org/0126z4b94 Academic Center for Education, Culture and Research جهاد ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ'),
(85859, 'https://ror.org/0127qs140', 'en', 1, 'https://ror.org/0127qs140 Saint Luke''s Health System'),
(85860, 'https://ror.org/0127tex41', 'en', 1, 'https://ror.org/0127tex41 Cluster University Srinagar'),
(85861, 'https://ror.org/01289n712', 'en', 1, 'https://ror.org/01289n712 Rennie Center for Education Research & Policy'),
(85862, 'https://ror.org/0129gkf70', 'no_lang_code', 1, 'https://ror.org/0129gkf70 Accuray (United States)'),
(85863, 'https://ror.org/0129p3388', 'en', 0, 'https://ror.org/0129p3388 United Nations Educational Scientific and Cultural Organization'),
(85864, 'https://ror.org/0129rwb56', 'no_lang_code', 0, 'https://ror.org/0129rwb56 Pure Technologies (Canada)'),
(85865, 'https://ror.org/0129t8w49', 'en', 1, 'https://ror.org/0129t8w49 Innovative Medicines Canada'),
(85866, 'https://ror.org/012ak5d18', 'en', 1, 'https://ror.org/012ak5d18 Mauritius Research Council'),
(85867, 'https://ror.org/012b9mf52', 'en', 1, 'https://ror.org/012b9mf52 Kijowski Narodowy Uniwersytet Kultury i Sztuki Kyiv National University of Culture and Arts Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š² ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø і мистецтв'),
(85868, 'https://ror.org/012bd1j55', 'en', 0, 'https://ror.org/012bd1j55 Nkrumah University'),
(85869, 'https://ror.org/012bdm419', 'en', 1, 'https://ror.org/012bdm419 Japan Primary Care Association'),
(85870, 'https://ror.org/012bx6m81', 'en', 0, 'https://ror.org/012bx6m81 Rostov State University of Railways'),
(85871, 'https://ror.org/012czwk30', 'no_lang_code', 1, 'https://ror.org/012czwk30 Cassava Sciences (United States)'),
(85872, 'https://ror.org/012d2pf35', 'en', 0, 'https://ror.org/012d2pf35 University of Alabama School of Medicine'),
(85873, 'https://ror.org/012dadn70', 'no_lang_code', 1, 'https://ror.org/012dadn70 IBI Group (Canada)'),
(85874, 'https://ror.org/012jfdt97', 'no_lang_code', 1, 'https://ror.org/012jfdt97 Marks and Spencer (United Kingdom)'),
(85875, 'https://ror.org/012nfwd22', 'en', 1, 'https://ror.org/012nfwd22 Kaifeng University 开封大学'),
(85876, 'https://ror.org/012q11j28', 'no_lang_code', 1, 'https://ror.org/012q11j28 ProQR Therapeutics (Netherlands)'),
(85877, 'https://ror.org/012qd1w91', 'en', 1, 'https://ror.org/012qd1w91 Faruk Sarac Vocational School of Design Faruk Saraç Tasarım Meslek Yüksekokulu'),
(85878, 'https://ror.org/012qh3c75', 'en', 0, 'https://ror.org/012qh3c75 Benedictine University'),
(85879, 'https://ror.org/012qxnm65', 'en', 0, 'https://ror.org/012qxnm65 Cork Institute of Technology InstitiĆŗd TeicneolaĆ­ochta ChorcaĆ­'),
(85880, 'https://ror.org/012rb2c33', 'en', 1, 'https://ror.org/012rb2c33 U.S. President''s Malaria Initiative'),
(85881, 'https://ror.org/012rp6f89', 'en', 1, 'https://ror.org/012rp6f89 Leuven Institute for Fertility and Embryology Leuvens Instituut voor Fertiliteit en Embryologie'),
(85882, 'https://ror.org/012sz4c50', 'en', 1, 'https://ror.org/012sz4c50 Fourth Affiliated Hospital of China Medical University äø­å›½åŒ»ē§‘å¤§å­¦é™„å±žē¬¬å››åŒ»é™¢'),
(85883, 'https://ror.org/012tq4a48', 'de', 1, 'https://ror.org/012tq4a48 Manfred LautenschlƤger-Stiftung'),
(85884, 'https://ror.org/012wm5r19', 'en', 1, 'https://ror.org/012wm5r19 National Institute of Advanced Studies'),
(85885, 'https://ror.org/012y43946', 'en', 0, 'https://ror.org/012y43946 University of Phoenix'),
(85886, 'https://ror.org/012y58k53', 'fr', 0, 'https://ror.org/012y58k53 UniversitƩ Lille 2 Droit et SantƩ'),
(85887, 'https://ror.org/01351mb48', 'en', 1, 'https://ror.org/01351mb48 National University of Civil Engineering TrĘ°į»ng ĐẔi hį»c XĆ¢y dį»±ng'),
(85888, 'https://ror.org/013a0r905', 'en', 1, 'https://ror.org/013a0r905 Henry Royce Institute'),
(85889, 'https://ror.org/013av7j49', 'no', 1, 'https://ror.org/013av7j49 Larvik kommune'),
(85890, 'https://ror.org/013czdx64', 'en', 1, 'https://ror.org/013czdx64 University Hospital Heidelberg UniversitƤtsklinikum Heidelberg'),
(85891, 'https://ror.org/013eq5k35', 'es', 1, 'https://ror.org/013eq5k35 Universidad Metropolitana Castro Carazo'),
(85892, 'https://ror.org/013ery440', 'en', 1, 'https://ror.org/013ery440 Kenya Industrial Research and Development Institute'),
(85893, 'https://ror.org/013hpgj82', 'en', 0, 'https://ror.org/013hpgj82 Broadview University'),
(85894, 'https://ror.org/013jjp941', 'no_lang_code', 1, 'https://ror.org/013jjp941 Beihua University 北华大学'),
(85895, 'https://ror.org/013ma1t15', 'no_lang_code', 0, 'https://ror.org/013ma1t15 Leica Microsystems (United Kingdom)'),
(85896, 'https://ror.org/013mj5m02', 'de', 1, 'https://ror.org/013mj5m02 Deutsche Nierenstiftung'),
(85897, 'https://ror.org/013rtse27', 'en', 1, 'https://ror.org/013rtse27 Harris and Eliza Kempner Fund'),
(85898, 'https://ror.org/013s3gf12', 'en', 1, 'https://ror.org/013s3gf12 Genome Prairie'),
(85899, 'https://ror.org/013s3zh21', 'en', 1, 'https://ror.org/013s3zh21 Necmettin Erbakan University Necmettin Erbakan Üniversitesi'),
(85900, 'https://ror.org/013v2pg91', 'en', 1, 'https://ror.org/013v2pg91 Chinese Physical Society äø­å›½ē‰©ē†å­¦ä¼š'),
(85901, 'https://ror.org/013v42668', 'no', 1, 'https://ror.org/013v42668 Sogn og Fjordane Fylkeskommune'),
(85902, 'https://ror.org/013vy7y57', 'no_lang_code', 0, 'https://ror.org/013vy7y57 Shiseikan University 至誠館大学'),
(85903, 'https://ror.org/013w6g994', 'no_lang_code', 1, 'https://ror.org/013w6g994 Crain Communications (United States)'),
(85904, 'https://ror.org/013x33b33', 'sv', 1, 'https://ror.org/013x33b33 Demensfƶrbundet'),
(85905, 'https://ror.org/013xg2384', 'no_lang_code', 0, 'https://ror.org/013xg2384 Aker BioMarine (Norway)'),
(85906, 'https://ror.org/013z6gc53', 'no_lang_code', 0, 'https://ror.org/013z6gc53 BMT Hi-Q Sigma'),
(85907, 'https://ror.org/013zcv680', 'no_lang_code', 0, 'https://ror.org/013zcv680 Oxford Medical Diagnostics (United Kingdom)'),
(85908, 'https://ror.org/01419bf49', 'en', 1, 'https://ror.org/01419bf49 Pacific International Center for High Technology Research'),
(85909, 'https://ror.org/014208j94', 'en', 1, 'https://ror.org/014208j94 Fund for the Replacement of Animals in Medical Experiments'),
(85910, 'https://ror.org/0142qzn68', 'es', 0, 'https://ror.org/0142qzn68 Universidad Iberoamericana del Norte'),
(85911, 'https://ror.org/014579w63', 'en', 1, 'https://ror.org/014579w63 Fraser Health'),
(85912, 'https://ror.org/0146tx053', 'no_lang_code', 1, 'https://ror.org/0146tx053 Second Sight Medical Products'),
(85913, 'https://ror.org/014arsg56', 'no_lang_code', 1, 'https://ror.org/014arsg56 Kuvempu University ą¤•ą„ą¤µą„‡ą¤‚ą¤Ŗą„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤•ą„ą¤µą„‡ą¤‚ą¤Ŗą„‚ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą®•ąÆą®µąÆ‡ą®®ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ కువెంపు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ಕುವೆಂಪು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(85914, 'https://ror.org/014btj409', 'sv', 1, 'https://ror.org/014btj409 HjƤrnfonden'),
(85915, 'https://ror.org/014cfdh55', 'en', 1, 'https://ror.org/014cfdh55 National Collegiate Athletic Association'),
(85916, 'https://ror.org/014cpn338', 'en', 1, 'https://ror.org/014cpn338 Vienna Center for Quantum Science and Technology'),
(85917, 'https://ror.org/014j06p71', 'no_lang_code', 1, 'https://ror.org/014j06p71 Synergy Farm Health (United Kingdom)'),
(85918, 'https://ror.org/014pykh14', 'no_lang_code', 0, 'https://ror.org/014pykh14 Zettlex (United Kingdom)'),
(85919, 'https://ror.org/014qm6e35', 'en', 1, 'https://ror.org/014qm6e35 Sion College'),
(85920, 'https://ror.org/014rqt829', 'no_lang_code', 1, 'https://ror.org/014rqt829 Rakuno Gakuen University é…Ŗč¾²å­¦åœ’å¤§å­¦'),
(85921, 'https://ror.org/014w0fd65', 'en', 1, 'https://ror.org/014w0fd65 European Centre for Medium-Range Weather Forecasts'),
(85922, 'https://ror.org/014w49905', 'no_lang_code', 1, 'https://ror.org/014w49905 Aileron (United States)'),
(85923, 'https://ror.org/014w4jz45', 'no_lang_code', 1, 'https://ror.org/014w4jz45 Audax Medical (United States)'),
(85924, 'https://ror.org/014x7mf51', 'en', 1, 'https://ror.org/014x7mf51 Botanic Gardens Conservation International'),
(85925, 'https://ror.org/014y90z04', 'no_lang_code', 1, 'https://ror.org/014y90z04 Utlendingsdirektoratet'),
(85926, 'https://ror.org/015152t55', 'de', 1, 'https://ror.org/015152t55 Werner Otto Stiftung'),
(85927, 'https://ror.org/0151bmh98', 'en', 1, 'https://ror.org/0151bmh98 University of Hyogo å…µåŗ«ēœŒē«‹å¤§å­¦'),
(85928, 'https://ror.org/0151rzq22', 'nl', 1, 'https://ror.org/0151rzq22 Gratama Stichting'),
(85929, 'https://ror.org/01521js97', 'en', 1, 'https://ror.org/01521js97 CureSearch for Children''s Cancer'),
(85930, 'https://ror.org/01523w440', 'en', 0, 'https://ror.org/01523w440 Bodo Regional University'),
(85931, 'https://ror.org/0152rnz42', 'no_lang_code', 0, 'https://ror.org/0152rnz42 Exa Corporation (United States)'),
(85932, 'https://ror.org/0154kn471', 'en', 1, 'https://ror.org/0154kn471 Allen Institute for Immunology'),
(85933, 'https://ror.org/0156h1p41', 'en', 1, 'https://ror.org/0156h1p41 Legal Aid New South Wales'),
(85934, 'https://ror.org/01577qj03', 'en', 1, 'https://ror.org/01577qj03 Educational Advancement Foundation'),
(85935, 'https://ror.org/0157ce014', 'fr', 1, 'https://ror.org/0157ce014 Association pour l''Utilisation du Rein Artificiel dans la rƩgion Lyonnaise'),
(85936, 'https://ror.org/0158fxz86', 'en', 0, 'https://ror.org/0158fxz86 Association canadienne de l’énergie Ć©olienne Canadian Wind Energy Association'),
(85937, 'https://ror.org/0158rsm15', 'en', 1, 'https://ror.org/0158rsm15 Horses and Humans Research Foundation'),
(85938, 'https://ror.org/015a24040', 'en', 0, 'https://ror.org/015a24040 St. Paul Medical Center'),
(85939, 'https://ror.org/015b0dz43', 'en', 1, 'https://ror.org/015b0dz43 Rhode Island Department of Health'),
(85940, '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'),
(85941, 'https://ror.org/015frs841', 'no_lang_code', 1, 'https://ror.org/015frs841 TauRx Pharmaceuticals (Singapore)'),
(85942, 'https://ror.org/015g99884', 'es', 1, 'https://ror.org/015g99884 Instituto Tecnológico y de Energías Renovables'),
(85943, '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'),
(85944, 'https://ror.org/015j3e126', 'no_lang_code', 0, 'https://ror.org/015j3e126 COMAT Composite Materials (Germany)'),
(85945, 'https://ror.org/015jqby91', 'no_lang_code', 0, 'https://ror.org/015jqby91 SK Telecom (South Korea) ķ…”ė ˆģ½¤ or ģ—ģŠ¤ģ¼€ģ“ķ…”ė ˆģ½¤'),
(85946, 'https://ror.org/015kdfj59', 'en', 1, 'https://ror.org/015kdfj59 North China University of Science and Technology Affiliated Hospital åŽåŒ—ē†å·„å¤§å­¦é™„å±žåŒ»é™¢'),
(85947, 'https://ror.org/015mg4834', 'no_lang_code', 1, 'https://ror.org/015mg4834 Dimagi (United States)'),
(85948, 'https://ror.org/015p3g344', 'en', 1, 'https://ror.org/015p3g344 Nationale Versorgungskonferenz Hautkrebs Skin Cancer Council Germany'),
(85949, 'https://ror.org/015qzxt65', 'en', 1, 'https://ror.org/015qzxt65 British Exploring Society'),
(85950, 'https://ror.org/015r29q53', 'en', 0, 'https://ror.org/015r29q53 Shoe and Allied Trades Research Association'),
(85951, 'https://ror.org/015sksk97', 'en', 1, 'https://ror.org/015sksk97 City & Guilds Group'),
(85952, 'https://ror.org/015t7hs32', 'en', 1, 'https://ror.org/015t7hs32 Association of American Colleges and Universities'),
(85953, 'https://ror.org/015wndh26', 'en', 1, 'https://ror.org/015wndh26 European Association for Endoscopic Surgery'),
(85954, 'https://ror.org/015xj5w40', 'en', 1, 'https://ror.org/015xj5w40 China Computer Federation äø­å›½č®”ē®—ęœŗå­¦ä¼š'),
(85955, 'https://ror.org/015xjsg96', 'pt', 1, 'https://ror.org/015xjsg96 Universidade Tiradentes'),
(85956, 'https://ror.org/015yd1014', 'en', 0, 'https://ror.org/015yd1014 South Carolina Educational Television Commission'),
(85957, 'https://ror.org/015yt6k87', 'en', 1, 'https://ror.org/015yt6k87 Scottish Enterprise'),
(85958, 'https://ror.org/015z41c35', 'en', 1, 'https://ror.org/015z41c35 Dementia Collaborative Research Centres'),
(85959, 'https://ror.org/015zx6n37', 'en', 1, 'https://ror.org/015zx6n37 Perth Children''s Hospital'),
(85960, 'https://ror.org/01619x561', 'en', 1, 'https://ror.org/01619x561 American Speech Language Hearing Association'),
(85961, 'https://ror.org/0162qn279', 'no_lang_code', 0, 'https://ror.org/0162qn279 Qamcom Research & Technology (Sweden)'),
(85962, 'https://ror.org/01655nh08', 'en', 1, 'https://ror.org/01655nh08 New England Research Institutes'),
(85963, 'https://ror.org/0167n6v98', 'fr', 0, 'https://ror.org/0167n6v98 Théâtre de la Tempête'),
(85964, 'https://ror.org/01680tt85', 'en', 1, 'https://ror.org/01680tt85 International Society of Travel Medicine'),
(85965, 'https://ror.org/0169rv113', 'no_lang_code', 1, 'https://ror.org/0169rv113 Venus Remedies (India)'),
(85966, 'https://ror.org/016a7mx14', 'en', 1, 'https://ror.org/016a7mx14 Leuka'),
(85967, 'https://ror.org/016as8p17', 'en', 1, 'https://ror.org/016as8p17 South Carolina Universities Research and Education Foundation'),
(85968, 'https://ror.org/016b0fq51', 'en', 1, 'https://ror.org/016b0fq51 Jane Bradley Pettit Foundation'),
(85969, 'https://ror.org/016bv0s21', 'fr', 1, 'https://ror.org/016bv0s21 Association pour l’Assistance et la RĆ©habilitation Ć  Domicile'),
(85970, 'https://ror.org/016czhx14', 'en', 1, 'https://ror.org/016czhx14 St. Cloud State University UniversitĆ© d''Ɖtat de Saint Cloud'),
(85971, 'https://ror.org/016e4fb86', 'pt', 1, 'https://ror.org/016e4fb86 Hospital Socor'),
(85972, 'https://ror.org/016jxdz70', 'en', 1, 'https://ror.org/016jxdz70 Sungsan Hyo University ģ„±ģ‚°ķšØėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(85973, 'https://ror.org/016jz8p59', 'no_lang_code', 0, 'https://ror.org/016jz8p59 Axio Research (United States)'),
(85974, 'https://ror.org/016keqt57', 'en', 1, 'https://ror.org/016keqt57 Center For Advanced Meta-Materials'),
(85975, 'https://ror.org/016kfpn06', 'en', 1, 'https://ror.org/016kfpn06 Psychology Beyond Borders'),
(85976, 'https://ror.org/016kx0v26', 'no_lang_code', 0, 'https://ror.org/016kx0v26 GCell (United Kingdom)'),
(85977, 'https://ror.org/016m7g249', 'en', 1, 'https://ror.org/016m7g249 Center For Produce Safety'),
(85978, 'https://ror.org/016np2f45', 'en', 1, 'https://ror.org/016np2f45 Association of Fish and Wildlife Agencies'),
(85979, 'https://ror.org/016nrk268', 'en', 1, 'https://ror.org/016nrk268 Lipedema Foundation'),
(85980, 'https://ror.org/016pfkh80', 'en', 1, 'https://ror.org/016pfkh80 Marine Research Foundation'),
(85981, 'https://ror.org/016qpct33', 'en', 0, 'https://ror.org/016qpct33 Shanghai Information Center for Life Sciences äø­å›½ē§‘å­¦é™¢äøŠęµ·ē”Ÿå‘½ē§‘å­¦äæ”ęÆäø­åæƒå­¦ä¼šå·„ä½œéƒØ'),
(85982, 'https://ror.org/016qzqe77', 'en', 1, 'https://ror.org/016qzqe77 Danish Football Association Dansk Boldspil-Union'),
(85983, 'https://ror.org/016rjax45', 'no_lang_code', 1, 'https://ror.org/016rjax45 Polymun (Austria)'),
(85984, 'https://ror.org/016thzj78', 'pl', 0, 'https://ror.org/016thzj78 Wyższa Szkoła Turystyki i Hotelarstwa w Gdańsku'),
(85985, 'https://ror.org/016z2bp30', 'en', 1, 'https://ror.org/016z2bp30 National Jewish Health'),
(85986, 'https://ror.org/016zn0y21', 'it', 1, 'https://ror.org/016zn0y21 Fondazione IRCCS Ca'' Granda Ospedale Maggiore Policlinico, Ospedale Maggiore'),
(85987, 'https://ror.org/01725xw94', 'en', 1, 'https://ror.org/01725xw94 Saint-Petersburg State Agrarian University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(85988, 'https://ror.org/0172cjd61', 'no_lang_code', 0, 'https://ror.org/0172cjd61 Chemtura (Germany)'),
(85989, 'https://ror.org/01742ys19', 'no_lang_code', 1, 'https://ror.org/01742ys19 Fukada Geological Institute ę·±ē”°åœ°č³Ŗē ”ē©¶ę‰€'),
(85990, 'https://ror.org/0174b8m09', 'en', 1, 'https://ror.org/0174b8m09 SRI'),
(85991, 'https://ror.org/0176yqn58', 'en', 1, 'https://ror.org/0176yqn58 American University in Cairo UniversitĆ© AmĆ©ricaine du Caire الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© بالقاهرة'),
(85992, 'https://ror.org/0178qr782', 'en', 1, 'https://ror.org/0178qr782 Oral Reconstruction Foundation'),
(85993, 'https://ror.org/0178ysk77', 'en', 1, 'https://ror.org/0178ysk77 University of Holy Cross'),
(85994, 'https://ror.org/01790dx02', 'en', 1, 'https://ror.org/01790dx02 Shanxi Provincial Cancer Hospital å±±č„æēœč‚æē˜¤åŒ»é™¢'),
(85995, 'https://ror.org/0179s5z12', 'en', 1, 'https://ror.org/0179s5z12 School Based Health Alliance'),
(85996, 'https://ror.org/017a59b72', 'en', 1, 'https://ror.org/017a59b72 National Development and Reform Commission äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶å‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(85997, 'https://ror.org/017abdw23', 'en', 1, 'https://ror.org/017abdw23 Jiangsu Agri-animal Husbandry Vocational College ę±Ÿč‹ē‰§åŒ»å­¦é™¢'),
(85998, 'https://ror.org/017c44661', 'en', 1, 'https://ror.org/017c44661 Dental Innovation Foundation Under Royal Patronage ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ąø—ąø±ąø™ąø•ąø™ąø§ąø±ąø•ąøąø£ąø£ąø” ą¹ƒąø™ąøžąø£ąø°ąøšąø£ąø”ąø£ąø²ąøŠąø¹ąø›ąø–ąø±ąø”ąø ą¹Œ ąø«ąø™ą¹ˆąø§ąø¢ąø—ąø±ąø™ąø•'),
(85999, 'https://ror.org/017cba891', 'en', 0, 'https://ror.org/017cba891 University of Wisconsin-Baraboo-Sauk County'),
(86000, 'https://ror.org/017gq1v43', 'en', 1, 'https://ror.org/017gq1v43 Nurses Organization of Veterans Affairs'),
(86001, 'https://ror.org/017h5q109', 'fr', 1, 'https://ror.org/017h5q109 Centre Hospitalier Universitaire de Toulouse'),
(86002, 'https://ror.org/017hm5p20', 'en', 1, 'https://ror.org/017hm5p20 Moorfields Eye Charity'),
(86003, 'https://ror.org/017jwe502', 'en', 1, 'https://ror.org/017jwe502 Japanese Geotechnical Society å…¬ē›Šē¤¾å›£ę³•äŗŗåœ°ē›¤å·„å­¦ä¼š'),
(86004, 'https://ror.org/017ph0q89', 'en', 1, 'https://ror.org/017ph0q89 The Wright Center for Graduate Medical Education'),
(86005, 'https://ror.org/017pw6807', 'no_lang_code', 1, 'https://ror.org/017pw6807 Air France KLM (France)'),
(86006, 'https://ror.org/017q0zk30', 'no_lang_code', 0, 'https://ror.org/017q0zk30 Holcim (Belgium)'),
(86007, 'https://ror.org/017qpw206', 'en', 1, 'https://ror.org/017qpw206 Welsh Ambulance Services NHS Trust'),
(86008, 'https://ror.org/017r77c14', 'no_lang_code', 1, 'https://ror.org/017r77c14 Omnipol (Czechia)'),
(86009, 'https://ror.org/017stnw60', 'en', 1, 'https://ror.org/017stnw60 Korea Institute of Brain Science'),
(86010, 'https://ror.org/017w27591', 'no_lang_code', 1, 'https://ror.org/017w27591 WPL (United States)'),
(86011, 'https://ror.org/017w2jg69', 'en', 0, 'https://ror.org/017w2jg69 TB HIV Care Association'),
(86012, 'https://ror.org/017xkrk82', 'en', 1, 'https://ror.org/017xkrk82 Colorado Association of School Executives'),
(86013, 'https://ror.org/017xv2t04', 'en', 1, 'https://ror.org/017xv2t04 Lumbini Medical College ą¤²ą„ą¤®ą„ą¤¬ą¤æą¤Øą¤æ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤²ą„‡ą¤œ'),
(86014, 'https://ror.org/017xw6w34', 'en', 1, 'https://ror.org/017xw6w34 Abingdon and Witney College'),
(86015, 'https://ror.org/017za0d90', 'no_lang_code', 1, 'https://ror.org/017za0d90 Lake Capital'),
(86016, 'https://ror.org/017zsa716', 'en', 0, 'https://ror.org/017zsa716 Department of Industry, Skills and Regional Development'),
(86017, 'https://ror.org/017zx9g19', 'en', 1, 'https://ror.org/017zx9g19 Iranian Research Organization for Science and Technology'),
(86018, 'https://ror.org/0181nwf87', 'no_lang_code', 1, 'https://ror.org/0181nwf87 Plextek (United Kingdom)'),
(86019, 'https://ror.org/0182aph68', 'en', 1, 'https://ror.org/0182aph68 Cape Leopard Trust'),
(86020, 'https://ror.org/0183crf97', 'en', 1, 'https://ror.org/0183crf97 British Orthopaedic Research Society'),
(86021, 'https://ror.org/0183g0e10', 'en', 1, 'https://ror.org/0183g0e10 Al-Nisour University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ł†Ų³ŁˆŲ± الجامعة'),
(86022, 'https://ror.org/0184qbg02', 'en', 1, 'https://ror.org/0184qbg02 Parker Institute for Cancer Immunotherapy'),
(86023, 'https://ror.org/01870m649', 'no_lang_code', 1, 'https://ror.org/01870m649 C-Com Satellite Systems (Canada)'),
(86024, 'https://ror.org/018cmv596', 'en', 1, 'https://ror.org/018cmv596 Lefkofsky Family Foundation'),
(86025, 'https://ror.org/018ec2p66', 'no_lang_code', 1, 'https://ror.org/018ec2p66 Novocure (Jersey)'),
(86026, 'https://ror.org/018es5w79', 'no_lang_code', 1, 'https://ror.org/018es5w79 Kairos (United States)'),
(86027, 'https://ror.org/018ezh270', 'de', 1, 'https://ror.org/018ezh270 Deutsche Gesellschaft für Parkinson und Bewegungsstörungen'),
(86028, 'https://ror.org/018f8pa48', 'no_lang_code', 1, 'https://ror.org/018f8pa48 Abon Pharmaceuticals'),
(86029, 'https://ror.org/018fbmg27', 'en', 1, 'https://ror.org/018fbmg27 Parkinson''s and Movement Disorder Institute'),
(86030, 'https://ror.org/018graf05', 'en', 1, 'https://ror.org/018graf05 National Development Agency Nemzeti Fejlesztési Ügynökség'),
(86031, 'https://ror.org/018grnj07', 'en', 1, 'https://ror.org/018grnj07 Center for Transportation and the Environment'),
(86032, 'https://ror.org/018kpa439', 'nl', 1, 'https://ror.org/018kpa439 Innovatiefonds Zorgverzekeraars'),
(86033, 'https://ror.org/018kx8h28', 'en', 1, 'https://ror.org/018kx8h28 Brain Tumour Research'),
(86034, 'https://ror.org/018m8jj96', 'de', 0, 'https://ror.org/018m8jj96 Klinik für Kinder- und Jugendmedizin'),
(86035, 'https://ror.org/018rbev86', 'en', 1, 'https://ror.org/018rbev86 Emory and Henry College'),
(86036, 'https://ror.org/018shgd85', 'en', 0, 'https://ror.org/018shgd85 Art Institute of San Antonio'),
(86037, 'https://ror.org/018x6py98', 'en', 1, 'https://ror.org/018x6py98 American Institute of Chemists'),
(86038, 'https://ror.org/0190x2a66', 'en', 1, 'https://ror.org/0190x2a66 Xinyang Normal University äæ”é˜³åøˆčŒƒå­¦é™¢'),
(86039, 'https://ror.org/0191zmb05', 'no_lang_code', 1, 'https://ror.org/0191zmb05 Yoshino Kogyosho (Japan)'),
(86040, 'https://ror.org/01925vb10', 'en', 1, 'https://ror.org/01925vb10 Norwegian Cancer Society'),
(86041, 'https://ror.org/0192aca61', 'en', 1, 'https://ror.org/0192aca61 Psoriasis and Psoriatic Arthritis Alliance'),
(86042, 'https://ror.org/0192cpe26', 'en', 1, 'https://ror.org/0192cpe26 Iranian Legal Medicine Organization سازمان پزؓکی Ł‚Ų§Ł†ŁˆŁ†ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(86043, 'https://ror.org/01952nm43', 'en', 0, 'https://ror.org/01952nm43 New England Institute of Art'),
(86044, 'https://ror.org/0195dxj21', 'en', 1, 'https://ror.org/0195dxj21 Life Sciences Research Foundation'),
(86045, 'https://ror.org/0195fnr59', 'no_lang_code', 1, 'https://ror.org/0195fnr59 Rila Solutions (Bulgaria) Рила Š”Š¾Š»ŃŽŃˆŃŠŠ½Ń'),
(86046, 'https://ror.org/0196jzw13', 'no_lang_code', 1, 'https://ror.org/0196jzw13 Kruger (Canada)'),
(86047, 'https://ror.org/01971z286', 'en', 1, 'https://ror.org/01971z286 Ministry for Foreign Affairs of Finland Ulkoasiainministeriƶ'),
(86048, 'https://ror.org/0197vzs73', 'en', 1, 'https://ror.org/0197vzs73 Center of Biotechnogy of Borj CƩdria'),
(86049, 'https://ror.org/0199bv516', 'en', 0, 'https://ror.org/0199bv516 Architectural Design and Research Institute of Guangdong Province å¹æäøœēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(86050, 'https://ror.org/019ags049', 'no_lang_code', 1, 'https://ror.org/019ags049 (주)미넓기술 Mirtec (South Korea)'),
(86051, 'https://ror.org/019bedz31', 'en', 1, 'https://ror.org/019bedz31 Triological Society'),
(86052, 'https://ror.org/019c4md20', 'en', 1, 'https://ror.org/019c4md20 Mississippi State Department of Health'),
(86053, 'https://ror.org/019c5tn34', 'en', 1, 'https://ror.org/019c5tn34 William Harvey Research Foundation'),
(86054, 'https://ror.org/019cc4r33', 'en', 1, 'https://ror.org/019cc4r33 Society for French Historical Studies'),
(86055, 'https://ror.org/019dpjf60', 'en', 1, 'https://ror.org/019dpjf60 John Douglas French Alzheimers Foundation'),
(86056, 'https://ror.org/019egy464', 'en', 0, 'https://ror.org/019egy464 Far Eastern University Institute of Law'),
(86057, 'https://ror.org/019f2k932', 'no_lang_code', 1, 'https://ror.org/019f2k932 Esperion Therapeutics (United States)'),
(86058, 'https://ror.org/019hezp12', 'no_lang_code', 1, 'https://ror.org/019hezp12 Synlogic (United States)'),
(86059, 'https://ror.org/019hmhw75', 'en', 1, 'https://ror.org/019hmhw75 Couch Family Foundation'),
(86060, 'https://ror.org/019mv8a21', 'no_lang_code', 1, 'https://ror.org/019mv8a21 Diamond V (United States)'),
(86061, 'https://ror.org/019p4xb90', 'en', 0, 'https://ror.org/019p4xb90 National Police University of China äø­å›½åˆ‘äŗ‹č­¦åÆŸå­¦é™¢'),
(86062, 'https://ror.org/019pxzh98', 'fi', 1, 'https://ror.org/019pxzh98 Maa- ja Vesitekniikan Tuki Ry'),
(86063, 'https://ror.org/019r8b147', 'no_lang_code', 1, 'https://ror.org/019r8b147 Noritake (Japan) ę Ŗå¼ä¼šē¤¾ćƒŽćƒŖć‚æć‚±ć‚«ćƒ³ćƒ‘ćƒ‹ćƒ¼ćƒŖćƒŸćƒ†ćƒ‰'),
(86064, 'https://ror.org/019sbgd69', 'en', 1, 'https://ror.org/019sbgd69 Gdańsk Medical University, Medical University of Gdansk Gdański Uniwersytet Medyczny'),
(86065, 'https://ror.org/019sg3t80', 'en', 1, 'https://ror.org/019sg3t80 Near and Far Aid'),
(86066, 'https://ror.org/019t02f42', 'da', 1, 'https://ror.org/019t02f42 Spar Nord Fonden Spar Nord Foundation'),
(86067, 'https://ror.org/019v69p80', 'en', 0, 'https://ror.org/019v69p80 World Agroforestry Centre'),
(86068, 'https://ror.org/019vsm959', 'en', 1, 'https://ror.org/019vsm959 National University of Science and Technology ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ МИДиД'),
(86069, 'https://ror.org/019w4mg02', 'en', 1, 'https://ror.org/019w4mg02 European Organisation for Rare Diseases'),
(86070, 'https://ror.org/019ypv256', 'en', 1, 'https://ror.org/019ypv256 CDA College'),
(86071, 'https://ror.org/019zjrs07', 'en', 1, 'https://ror.org/019zjrs07 Tampa Bay Estuary Program'),
(86072, 'https://ror.org/01a05a579', 'en', 1, 'https://ror.org/01a05a579 Pomona Valley Hospital Medical Center'),
(86073, 'https://ror.org/01a21pk29', 'no_lang_code', 1, 'https://ror.org/01a21pk29 Corvid Technologies (United States)'),
(86074, 'https://ror.org/01a2gv571', 'no_lang_code', 0, 'https://ror.org/01a2gv571 Balfour Beatty Rail (United Kingdom)'),
(86075, 'https://ror.org/01a2v2e80', 'en', 1, 'https://ror.org/01a2v2e80 Barking and Dagenham College'),
(86076, 'https://ror.org/01a3g5118', 'no_lang_code', 1, 'https://ror.org/01a3g5118 Teisei Gakuen Junior College č²žé™å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(86077, 'https://ror.org/01a47wy11', 'en', 1, 'https://ror.org/01a47wy11 George A. Ramlose Foundation'),
(86078, 'https://ror.org/01a4hbq44', 'en', 1, 'https://ror.org/01a4hbq44 St Olav''s University Hospital'),
(86079, 'https://ror.org/01a4x6x17', 'da', 1, 'https://ror.org/01a4x6x17 Helen og Ejnar BjĆørnows Fond'),
(86080, 'https://ror.org/01a5v8x09', 'no_lang_code', 0, 'https://ror.org/01a5v8x09 JDSU (United States)'),
(86081, 'https://ror.org/01a6rnx77', 'en', 1, 'https://ror.org/01a6rnx77 Nebraska Environmental Trust'),
(86082, 'https://ror.org/01a79sw46', 'en', 1, 'https://ror.org/01a79sw46 Iran Polymer and Petrochemical Institute'),
(86083, 'https://ror.org/01a9tn778', 'en', 1, 'https://ror.org/01a9tn778 National Centre for Earth Science Studies ą“¦ąµ‡ą“¶ą“æą“Æ ą“­ąµ‚ą“®ą“æ ą“¶ą“¾ą“øąµą“¤ąµą“° ą“Ŗą“ ą“Ø ą“•ąµ‡'),
(86084, 'https://ror.org/01adm6690', 'en', 1, 'https://ror.org/01adm6690 Canadian Climate Forum'),
(86085, 'https://ror.org/01ae3dk53', 'en', 1, 'https://ror.org/01ae3dk53 National Parks and Wildlife Service'),
(86086, 'https://ror.org/01aewn724', 'de', 0, 'https://ror.org/01aewn724 AKh Linz'),
(86087, 'https://ror.org/01ag3hp59', 'no_lang_code', 0, 'https://ror.org/01ag3hp59 DompƩ (Italy)'),
(86088, 'https://ror.org/01agk4b09', 'en', 1, 'https://ror.org/01agk4b09 Konrad Lorenz Institute for Evolution and Cognition Research'),
(86089, 'https://ror.org/01agsw646', 'no_lang_code', 1, 'https://ror.org/01agsw646 H&R Block (United States)'),
(86090, 'https://ror.org/01ah2ch91', 'en', 1, 'https://ror.org/01ah2ch91 Roy J. Carver Charitable Trust'),
(86091, 'https://ror.org/01ah7ky25', 'en', 1, 'https://ror.org/01ah7ky25 Banff Centre'),
(86092, 'https://ror.org/01ahfyn28', 'en', 0, 'https://ror.org/01ahfyn28 Hull Maternity Hospital'),
(86093, 'https://ror.org/01akc7468', 'en', 1, 'https://ror.org/01akc7468 University Hospital St. Ivan Rilski'),
(86094, 'https://ror.org/01akefp86', 'en', 0, 'https://ror.org/01akefp86 Miami University’s Voice of America Learning Center'),
(86095, 'https://ror.org/01amp2a31', 'en', 1, 'https://ror.org/01amp2a31 Senckenberg Biodiversity and Climate Research Centre Senckenberg BiodiversitƤt und Klima Forschungszentrum'),
(86096, 'https://ror.org/01amqg398', 'pt', 1, 'https://ror.org/01amqg398 Fundação de Apoio ao Instituto de Pesquisas Tecnológicas'),
(86097, 'https://ror.org/01aqwfr65', 'en', 0, 'https://ror.org/01aqwfr65 Trine University'),
(86098, 'https://ror.org/01ar3bk09', 'en', 0, 'https://ror.org/01ar3bk09 Art Institute of Tennessee'),
(86099, 'https://ror.org/01aravg64', 'no_lang_code', 0, 'https://ror.org/01aravg64 Bard (Germany)'),
(86100, 'https://ror.org/01at1x128', 'en', 1, 'https://ror.org/01at1x128 Ministerie van Binnenlandse Zaken en Koninkrijksrelaties Ministry of the Interior and Kingdom Relations'),
(86101, 'https://ror.org/01atfk372', 'en', 0, 'https://ror.org/01atfk372 College of Occupational Therapists'),
(86102, 'https://ror.org/01av28581', 'en', 0, 'https://ror.org/01av28581 United States Agency for International Development'),
(86103, 'https://ror.org/01aw9fv09', 'en', 1, 'https://ror.org/01aw9fv09 Rhode Island Hospital'),
(86104, 'https://ror.org/01b3wxx33', 'no_lang_code', 1, 'https://ror.org/01b3wxx33 UPM (Finland)'),
(86105, 'https://ror.org/01b8dqz05', 'no_lang_code', 1, 'https://ror.org/01b8dqz05 Bellerophon Therapeutics (United States)'),
(86106, 'https://ror.org/01b8rza40', 'en', 1, 'https://ror.org/01b8rza40 Louisiana State University Agricultural Center'),
(86107, 'https://ror.org/01bb1zm18', 'en', 1, 'https://ror.org/01bb1zm18 N. I. Lobachevsky State University of Nizhny Novgorod ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. И. Лобачевского'),
(86108, 'https://ror.org/01bbbnc61', 'no_lang_code', 1, 'https://ror.org/01bbbnc61 On Target Laboratories (United States)'),
(86109, 'https://ror.org/01bc2nz61', 'en', 1, 'https://ror.org/01bc2nz61 Jaseng Medical Foundation ģžģƒģ˜ė£Œģž¬ė‹Ø'),
(86110, 'https://ror.org/01bcdmq48', 'en', 1, 'https://ror.org/01bcdmq48 Hamline University'),
(86111, 'https://ror.org/01bd9y732', 'en', 1, 'https://ror.org/01bd9y732 Conjuring Arts Research Center'),
(86112, 'https://ror.org/01bdy4311', 'es', 0, 'https://ror.org/01bdy4311 Fundacion Para La Investigacion Del Hospital Universitario La Fe De La Comunidad Valenciana'),
(86113, 'https://ror.org/01bh2s525', 'en', 1, 'https://ror.org/01bh2s525 Einstein Healthcare Network'),
(86114, 'https://ror.org/01bkj6835', 'en', 1, 'https://ror.org/01bkj6835 Tele & Radio Research Institute'),
(86115, 'https://ror.org/01bkk2v06', 'en', 1, 'https://ror.org/01bkk2v06 Herbert Scoville Jr. Peace Fellowship'),
(86116, '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'),
(86117, 'https://ror.org/01bp81r18', 'en', 1, 'https://ror.org/01bp81r18 National Centre for Cell Science ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤•ą„‹ą¤¶ą¤æą¤•ą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°, ą¤Ŗą„ą¤£ą„‡'),
(86118, 'https://ror.org/01bqs3h57', 'en', 1, 'https://ror.org/01bqs3h57 State Academic University of Humanities Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ акаГемический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… наук'),
(86119, 'https://ror.org/01br3aa17', 'en', 0, 'https://ror.org/01br3aa17 Biophysics Center of Armenian'),
(86120, 'https://ror.org/01brr3227', 'en', 0, 'https://ror.org/01brr3227 Swedish e-Science Research Center'),
(86121, 'https://ror.org/01bsn4x02', 'en', 1, 'https://ror.org/01bsn4x02 Shivaji University சிவாஜி ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(86122, 'https://ror.org/01bsyz889', 'nl', 1, 'https://ror.org/01bsyz889 Nederlandse Vereniging voor Kindergeneeskunde'),
(86123, 'https://ror.org/01bwa4v12', 'no_lang_code', 0, 'https://ror.org/01bwa4v12 GE Healthcare (United States)'),
(86124, 'https://ror.org/01by01460', 'no_lang_code', 1, 'https://ror.org/01by01460 Mirati Therapeutics (United States)'),
(86125, 'https://ror.org/01bye6331', 'en', 1, 'https://ror.org/01bye6331 Egyptian Society of Ear, Nose, Throat and Allied Sciences'),
(86126, 'https://ror.org/01byttc20', 'en', 1, 'https://ror.org/01byttc20 International Peace Maternity & Child Health Hospital'),
(86127, 'https://ror.org/01c4f5y14', 'en', 0, 'https://ror.org/01c4f5y14 Ohio History Connection'),
(86128, 'https://ror.org/01c4rxk68', 'en', 1, 'https://ror.org/01c4rxk68 Advanced Materials and BioEngineering Research'),
(86129, 'https://ror.org/01c5ysa46', 'en', 1, 'https://ror.org/01c5ysa46 Montessori Education Institute of the Pacific Northwest'),
(86130, 'https://ror.org/01c86x832', 'no_lang_code', 1, 'https://ror.org/01c86x832 Precision Acoustics (United Kingdom)'),
(86131, 'https://ror.org/01c8pqm17', 'no_lang_code', 1, 'https://ror.org/01c8pqm17 Tingvoll Kommune'),
(86132, 'https://ror.org/01c9wwf89', 'en', 1, 'https://ror.org/01c9wwf89 Ecumenical Project for International Cooperation'),
(86133, 'https://ror.org/01caf1f88', 'no_lang_code', 1, 'https://ror.org/01caf1f88 Marvel Fusion'),
(86134, 'https://ror.org/01carsf12', 'en', 1, 'https://ror.org/01carsf12 Helen Keller Foundation'),
(86135, 'https://ror.org/01cb0jg64', 'en', 0, 'https://ror.org/01cb0jg64 Art Institute of Portland'),
(86136, 'https://ror.org/01cb6vs44', 'sv', 0, 'https://ror.org/01cb6vs44 Malmƶ AllmƤnna Sjukhus'),
(86137, 'https://ror.org/01cb78y42', 'es', 0, 'https://ror.org/01cb78y42 Universidad Simón Bolívar'),
(86138, 'https://ror.org/01cb8vz90', 'no_lang_code', 1, 'https://ror.org/01cb8vz90 AIM Photonics (United States)'),
(86139, 'https://ror.org/01cc5m134', 'en', 1, 'https://ror.org/01cc5m134 Soil and Water Conservation Society'),
(86140, 'https://ror.org/01cc8fr56', 'en', 1, 'https://ror.org/01cc8fr56 Pulmonary Fibrosis Foundation'),
(86141, 'https://ror.org/01cevhq98', 'en', 1, 'https://ror.org/01cevhq98 Vermont Community Foundation'),
(86142, 'https://ror.org/01cg0k189', 'en', 1, 'https://ror.org/01cg0k189 International Christian University å›½éš›åŸŗē£ę•™å¤§å­¦'),
(86143, 'https://ror.org/01ch3a039', 'fr', 0, 'https://ror.org/01ch3a039 Ecole Nationale SupƩrieure d''Hydraulique Abdellah Arbaoui'),
(86144, 'https://ror.org/01ckx3t21', 'en', 1, 'https://ror.org/01ckx3t21 American Academy of Cosmetic Surgery'),
(86145, 'https://ror.org/01cmcvq49', 'en', 1, 'https://ror.org/01cmcvq49 Alliance for a Green Revolution in Africa'),
(86146, 'https://ror.org/01cntdd82', 'en', 1, 'https://ror.org/01cntdd82 Santa Monica College'),
(86147, 'https://ror.org/01cp21a44', 'en', 1, 'https://ror.org/01cp21a44 Institute of Translational Health Sciences'),
(86148, 'https://ror.org/01cpxhg33', 'en', 1, 'https://ror.org/01cpxhg33 Nagoya University of Arts and Sciences åå¤å±‹å­¦čŠøå¤§å­¦'),
(86149, 'https://ror.org/01cv6j974', 'en', 0, 'https://ror.org/01cv6j974 Bryansk State Academy of Agriculture'),
(86150, 'https://ror.org/01cwc0f90', 'en', 1, 'https://ror.org/01cwc0f90 The Waterloo Foundation'),
(86151, 'https://ror.org/01czpyx75', 'no_lang_code', 0, 'https://ror.org/01czpyx75 Computational Industry Technologies (Norway)'),
(86152, 'https://ror.org/01czt1t86', 'en', 1, 'https://ror.org/01czt1t86 Nunavut Research Institute'),
(86153, 'https://ror.org/01d2cn965', 'en', 1, 'https://ror.org/01d2cn965 Norwegian Directorate of Health'),
(86154, 'https://ror.org/01d34a364', 'en', 1, 'https://ror.org/01d34a364 Taiwan Forestry Research Institute ꞗꄭ試驗ꉀ'),
(86155, 'https://ror.org/01d3m1d52', 'en', 1, 'https://ror.org/01d3m1d52 Saskatchewan Canola Development Commission'),
(86156, 'https://ror.org/01d3ncs59', 'no_lang_code', 0, 'https://ror.org/01d3ncs59 JDSU (China)'),
(86157, 'https://ror.org/01d5pah27', 'fr', 0, 'https://ror.org/01d5pah27 Direction des Applications Militaires'),
(86158, 'https://ror.org/01d6qxv05', 'en', 1, 'https://ror.org/01d6qxv05 Monmouth University Universidad de Monmouth'),
(86159, 'https://ror.org/01d82ys30', 'en', 1, 'https://ror.org/01d82ys30 Christian Medical Association of India'),
(86160, 'https://ror.org/01d8kr740', 'en', 1, 'https://ror.org/01d8kr740 Institute for Information Industry č³‡čØŠå·„ę„­ē­–é€²ęœƒ'),
(86161, 'https://ror.org/01daz5k89', 'no_lang_code', 0, 'https://ror.org/01daz5k89 Kockums Computer Systems (Sweden)'),
(86162, 'https://ror.org/01dbwa206', 'fr', 1, 'https://ror.org/01dbwa206 ENOES'),
(86163, '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 Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систем информатики им. А.П. Š•Ń€ŃˆŠ¾Š²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(86164, 'https://ror.org/01dcq4v13', 'no_lang_code', 0, 'https://ror.org/01dcq4v13 Leica (Singapore)'),
(86165, 'https://ror.org/01degd278', 'en', 1, 'https://ror.org/01degd278 Paul G. Allen Family Foundation'),
(86166, 'https://ror.org/01dej0523', 'en', 1, 'https://ror.org/01dej0523 International Renewable Energy Agency'),
(86167, 'https://ror.org/01dgq1c77', 'en', 0, 'https://ror.org/01dgq1c77 University of Wisconsin–Marinette'),
(86168, 'https://ror.org/01dgqsa10', 'no_lang_code', 0, 'https://ror.org/01dgqsa10 Esterline (United Kingdom)'),
(86169, 'https://ror.org/01dh2d768', 'no_lang_code', 0, 'https://ror.org/01dh2d768 Solulink (United States)'),
(86170, 'https://ror.org/01dha7q76', 'no_lang_code', 1, 'https://ror.org/01dha7q76 DornerWorks (United States)'),
(86171, 'https://ror.org/01dkryv61', 'no_lang_code', 0, 'https://ror.org/01dkryv61 Anite (United Kingdom)'),
(86172, 'https://ror.org/01dp70603', 'en', 1, 'https://ror.org/01dp70603 Society of Urologic Oncology'),
(86173, 'https://ror.org/01dsa5866', 'no_lang_code', 1, 'https://ror.org/01dsa5866 Dongguk University WISE ė™źµ­ėŒ€ķ•™źµ WISEģŗ ķ¼ģŠ¤'),
(86174, 'https://ror.org/01dt10w58', 'en', 1, 'https://ror.org/01dt10w58 National Palliative Care Research Center'),
(86175, 'https://ror.org/01dtkgy62', 'pl', 0, 'https://ror.org/01dtkgy62 Prywatna Wyższa Szkoła Ochrony Środowiska w Radomiu'),
(86176, 'https://ror.org/01dw0ab98', 'en', 1, 'https://ror.org/01dw0ab98 Foshan Hospital of TCM ä½›å±±åø‚äø­åŒ»é™¢'),
(86177, 'https://ror.org/01dwtyk53', 'no_lang_code', 0, 'https://ror.org/01dwtyk53 ARIAD Pharmaceuticals (United States)'),
(86178, 'https://ror.org/01dysnd41', 'en', 1, 'https://ror.org/01dysnd41 Diabetes Québec Diabète Québecs'),
(86179, 'https://ror.org/01e0hb698', 'en', 1, 'https://ror.org/01e0hb698 Islamic Azad University of Falavarjan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ ŁŁ„Ų§ŁˆŲ±Ų¬Ų§Ł†'),
(86180, 'https://ror.org/01e3qq579', 'en', 1, 'https://ror.org/01e3qq579 American Institute of Iranian Studies'),
(86181, 'https://ror.org/01e402w83', 'no_lang_code', 1, 'https://ror.org/01e402w83 Great Lakes NeuroTechnologies (United States)'),
(86182, 'https://ror.org/01e59yk92', 'en', 1, 'https://ror.org/01e59yk92 Swedish e-Science Research Centre'),
(86183, 'https://ror.org/01e5mdj42', 'en', 1, 'https://ror.org/01e5mdj42 Florida Polytechnic University'),
(86184, 'https://ror.org/01e69j385', 'en', 1, 'https://ror.org/01e69j385 All-Russian Institute of Plant Protection Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ защиты растений'),
(86185, 'https://ror.org/01e7csr82', 'en', 1, 'https://ror.org/01e7csr82 Qinghai University for Nationalities é’ęµ·ę°‘ę—å¤§å­¦'),
(86186, 'https://ror.org/01e7e7r31', 'en', 1, 'https://ror.org/01e7e7r31 Kosar University of Bojnord دانؓگاه کوثر ŲØŲ¬Ł†ŁˆŲ±ŲÆ'),
(86187, 'https://ror.org/01e8ff003', 'en', 1, 'https://ror.org/01e8ff003 Shahed University دانؓگاه ؓاهد'),
(86188, 'https://ror.org/01e9qsx42', 'no_lang_code', 1, 'https://ror.org/01e9qsx42 ATEC (United States)'),
(86189, 'https://ror.org/01eaw8r60', 'no_lang_code', 0, 'https://ror.org/01eaw8r60 Amec Foster Wheeler (Italy)'),
(86190, 'https://ror.org/01ec5nx12', 'en', 0, 'https://ror.org/01ec5nx12 Cellular Biology and Neurobiology Institute Istituto di Biologia Cellulare e Neurobiologia'),
(86191, 'https://ror.org/01edb2h81', 'no_lang_code', 0, 'https://ror.org/01edb2h81 Leica (United Kingdom)'),
(86192, 'https://ror.org/01efk9988', 'en', 0, 'https://ror.org/01efk9988 Exploit Technologies Pte Ltd'),
(86193, 'https://ror.org/01ehzyn80', 'en', 0, 'https://ror.org/01ehzyn80 Combined Military Hospital Rawalpindi'),
(86194, 'https://ror.org/01em2mv62', 'en', 1, 'https://ror.org/01em2mv62 Chia-Yi Christian Hospital'),
(86195, 'https://ror.org/01emrxe38', 'en', 0, 'https://ror.org/01emrxe38 Moscow Institute of Transport ŠœŠžŠ”ŠšŠžŠ’Š”ŠšŠ˜Š™ ŠŠ’Š¢ŠžŠœŠžŠ‘Š˜Š›Š¬ŠŠž-Š”ŠžŠ ŠžŠ–ŠŠ«Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ Š¢Š•Š„ŠŠ˜Š§Š•Š”ŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(86196, 'https://ror.org/01eqxe096', 'no_lang_code', 0, 'https://ror.org/01eqxe096 Mast Therapeutics (United States)');
INSERT INTO `rors` VALUES
(86197, 'https://ror.org/01esr7813', 'en', 1, 'https://ror.org/01esr7813 Turner Foundation'),
(86198, 'https://ror.org/01ev0z371', 'en', 1, 'https://ror.org/01ev0z371 The Salah Foundation'),
(86199, 'https://ror.org/01ew38b77', 'en', 1, 'https://ror.org/01ew38b77 Akademia Techniczno-Humanistyczna w Bielsku-Białej University of Bielsko-Biała'),
(86200, 'https://ror.org/01exfvh31', 'en', 0, 'https://ror.org/01exfvh31 National Coalition of Hispanic Health and Human Services Organizations'),
(86201, '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'),
(86202, 'https://ror.org/01ey0me92', 'pt', 1, 'https://ror.org/01ey0me92 Sociedade Portuguesa de Cardiologia'),
(86203, 'https://ror.org/01eywvb34', 'en', 1, 'https://ror.org/01eywvb34 Ahmanson Foundation'),
(86204, 'https://ror.org/01f0v9p59', 'no_lang_code', 1, 'https://ror.org/01f0v9p59 CIMA+ (Canada)'),
(86205, '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'),
(86206, 'https://ror.org/01f4fjg15', 'fr', 0, 'https://ror.org/01f4fjg15 Institut International d’IngĆ©nierie de l’Eau et de l’Environnement'),
(86207, 'https://ror.org/01f5cp510', 'no_lang_code', 1, 'https://ror.org/01f5cp510 Conetec Investigations'),
(86208, 'https://ror.org/01f734v37', 'en', 1, 'https://ror.org/01f734v37 Heffter Research Institute'),
(86209, 'https://ror.org/01f77gp95', 'en', 1, 'https://ror.org/01f77gp95 Third Affiliated Hospital of Harbin Medical University å“ˆå°”ę»ØåŒ»ē§‘å¤§å­¦ē¬¬äø‰äø“åŗŠåŒ»å­¦é™¢'),
(86210, 'https://ror.org/01f7ent21', 'de', 1, 'https://ror.org/01f7ent21 Hermann und Lilly Schilling-Stiftung'),
(86211, 'https://ror.org/01f84s613', 'pt', 1, 'https://ror.org/01f84s613 Sociedade Brasileira de Anatomia'),
(86212, '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'),
(86213, 'https://ror.org/01fczmh85', 'en', 1, 'https://ror.org/01fczmh85 Netaji Subhas University of Technology ą¤Øą„‡ą¤¤ą¤¾ą¤œą„€ ą¤øą„ą¤­ą¤¾ą¤· ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(86214, 'https://ror.org/01fkt0w56', 'en', 1, 'https://ror.org/01fkt0w56 Genesee Country Village and Museum'),
(86215, 'https://ror.org/01fkvbf41', 'no_lang_code', 1, 'https://ror.org/01fkvbf41 VistaGen Therapeutics (United States)'),
(86216, 'https://ror.org/01fkw3y20', 'en', 1, 'https://ror.org/01fkw3y20 Ara Institute of Canterbury'),
(86217, 'https://ror.org/01fm69p79', 'es', 1, 'https://ror.org/01fm69p79 Sociedad EspaƱola de Reumatologƭa'),
(86218, 'https://ror.org/01fq70c03', 'en', 1, 'https://ror.org/01fq70c03 Foundation for Ichthyosis and Related Skin Types'),
(86219, 'https://ror.org/01fqjf794', 'en', 1, 'https://ror.org/01fqjf794 Pediatric Cancer Foundation'),
(86220, 'https://ror.org/01ftbgh03', 'no_lang_code', 1, 'https://ror.org/01ftbgh03 McCormick (United States)'),
(86221, 'https://ror.org/01fvvv243', 'en', 1, 'https://ror.org/01fvvv243 Research Foundation for Opto-Science and Technology å…¬ē›Šč²”å›£ę³•äŗŗå…‰ē§‘å­¦ęŠ€č”“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(86222, 'https://ror.org/01fwd1405', 'en', 1, 'https://ror.org/01fwd1405 Lewis and Clark Library'),
(86223, 'https://ror.org/01fwt2b13', 'en', 1, 'https://ror.org/01fwt2b13 Borlaug Institute for South Asia'),
(86224, 'https://ror.org/01fxsh762', 'no_lang_code', 0, 'https://ror.org/01fxsh762 Sharp (United States)'),
(86225, 'https://ror.org/01fy9e204', 'en', 1, 'https://ror.org/01fy9e204 The Neurosciences Foundation'),
(86226, 'https://ror.org/01fyvd003', 'no_lang_code', 0, 'https://ror.org/01fyvd003 Compureg (Czechia)'),
(86227, 'https://ror.org/01fyy8e52', 'en', 1, 'https://ror.org/01fyy8e52 Pennsylvania Athletic Trainers'' Society'),
(86228, 'https://ror.org/01fzzqb65', 'en', 1, 'https://ror.org/01fzzqb65 Unity Worldwide Ministries'),
(86229, 'https://ror.org/01g0ac827', 'en', 0, 'https://ror.org/01g0ac827 Kobe University of Welfare ē„žęˆøåŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(86230, 'https://ror.org/01g1ykj19', 'en', 1, 'https://ror.org/01g1ykj19 eThekwini Municipality'),
(86231, 'https://ror.org/01g3gcw30', 'no_lang_code', 0, 'https://ror.org/01g3gcw30 Exiqon (Denmark)'),
(86232, 'https://ror.org/01g46yn94', 'en', 1, 'https://ror.org/01g46yn94 Hyogo Earthquake Memorial 21st Century Research Institute å…¬ē›Šč²”å›£ę³•äŗŗ ć²ć‚‡ć†ć”éœ‡ē½čØ˜åæµ21äø–ē“€ē ”ē©¶ę©Ÿę§‹'),
(86233, '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'),
(86234, 'https://ror.org/01g6b4y18', 'en', 1, 'https://ror.org/01g6b4y18 Osteology Foundation'),
(86235, 'https://ror.org/01g9tvw10', 'en', 0, 'https://ror.org/01g9tvw10 Concordia International University Estonia Concordia Rahvusvaheline Ülikool Eestis'),
(86236, 'https://ror.org/01gb99w41', 'en', 1, 'https://ror.org/01gb99w41 Escuela PolitƩcnica Nacional National Polytechnic School'),
(86237, 'https://ror.org/01gbt6a54', 'no_lang_code', 1, 'https://ror.org/01gbt6a54 Adaptive Biotechnologies (United States)'),
(86238, 'https://ror.org/01gce3t61', 'en', 1, 'https://ror.org/01gce3t61 Letten Foundation'),
(86239, 'https://ror.org/01gcwk603', 'en', 1, 'https://ror.org/01gcwk603 Jinzhong College of Information 晋中俔息学院'),
(86240, 'https://ror.org/01gd1jq14', 'no_lang_code', 1, 'https://ror.org/01gd1jq14 Neurim Pharmaceuticals (Israel)'),
(86241, 'https://ror.org/01geeh261', 'en', 0, 'https://ror.org/01geeh261 Shanghai Finance University äøŠęµ·é‡‘čžå­¦é™¢'),
(86242, 'https://ror.org/01ggenr10', 'no_lang_code', 1, 'https://ror.org/01ggenr10 Phoenix (United States)'),
(86243, 'https://ror.org/01ggf6w15', 'pt', 1, 'https://ror.org/01ggf6w15 Centre for Social Intervention Studies Centro de Estudos para a Intervencao Social'),
(86244, 'https://ror.org/01ggtn466', 'fr', 0, 'https://ror.org/01ggtn466 Laboratoire de Physique ThƩorique Ecole Normale SupƩrieure'),
(86245, 'https://ror.org/01gh7xv33', 'en', 1, 'https://ror.org/01gh7xv33 National Performance Network'),
(86246, 'https://ror.org/01gpbfk53', 'en', 1, 'https://ror.org/01gpbfk53 Biofuels Center of North Carolina'),
(86247, 'https://ror.org/01gpq1g44', 'en', 0, 'https://ror.org/01gpq1g44 Wuhan Institute of Tuberculosis Control ę­¦ę±‰ē»“ę øē—…é˜²ę²»ē ”ē©¶ę‰€'),
(86248, 'https://ror.org/01gqqqf26', 'no_lang_code', 0, 'https://ror.org/01gqqqf26 Mylan (South Africa)'),
(86249, 'https://ror.org/01gr7hw08', 'no_lang_code', 1, 'https://ror.org/01gr7hw08 SOS OxygĆØne (France)'),
(86250, 'https://ror.org/01grkhd49', 'en', 1, 'https://ror.org/01grkhd49 A. James & Alice B. Clark Foundation'),
(86251, 'https://ror.org/01gzy0g74', 'en', 1, 'https://ror.org/01gzy0g74 Petroleum Technology Research Centre'),
(86252, 'https://ror.org/01h1bc022', 'en', 1, 'https://ror.org/01h1bc022 National University of the West Universidad Nacional del Oeste'),
(86253, 'https://ror.org/01h2ykt31', 'en', 1, 'https://ror.org/01h2ykt31 Hong Kong Research Institute of Textiles and Apparel'),
(86254, 'https://ror.org/01h39c842', 'en', 1, 'https://ror.org/01h39c842 Helen Macpherson Smith Trust'),
(86255, 'https://ror.org/01h3fm945', 'en', 1, 'https://ror.org/01h3fm945 University College of Medical Sciences'),
(86256, 'https://ror.org/01h409w36', 'en', 0, 'https://ror.org/01h409w36 United Nations Development Programme'),
(86257, 'https://ror.org/01h4ass90', 'en', 1, 'https://ror.org/01h4ass90 Machine Intelligence Research Institute'),
(86258, 'https://ror.org/01h4gpk06', 'de', 0, 'https://ror.org/01h4gpk06 St.Anna Kinderspital'),
(86259, 'https://ror.org/01h50kv06', 'no_lang_code', 0, 'https://ror.org/01h50kv06 Harrisvaccines (United States)'),
(86260, 'https://ror.org/01h7cca57', 'en', 1, 'https://ror.org/01h7cca57 Sapporo Medical University ęœ­å¹ŒåŒ»ē§‘å¤§å­¦'),
(86261, 'https://ror.org/01h85hm56', 'en', 1, 'https://ror.org/01h85hm56 Dow University of Health Sciences ڈاؤ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŪŪŒŁ„ŲŖŚ¾ سائنسز'),
(86262, 'https://ror.org/01h8ejk57', 'en', 1, 'https://ror.org/01h8ejk57 National Library of Nigeria'),
(86263, 'https://ror.org/01h8z7f20', 'en', 1, 'https://ror.org/01h8z7f20 James Merrill House'),
(86264, 'https://ror.org/01h9g5w38', 'en', 1, 'https://ror.org/01h9g5w38 Charles Darwin Foundation'),
(86265, 'https://ror.org/01hayk347', 'en', 1, 'https://ror.org/01hayk347 Maine Technology Institute'),
(86266, 'https://ror.org/01hb0wj75', 'no_lang_code', 0, 'https://ror.org/01hb0wj75 Triune Systems (United States)'),
(86267, 'https://ror.org/01hb2ne47', 'en', 1, 'https://ror.org/01hb2ne47 Kieikai Research Foundation'),
(86268, 'https://ror.org/01hcmnv56', 'no_lang_code', 0, 'https://ror.org/01hcmnv56 Medicines Company (United Kingdom)'),
(86269, 'https://ror.org/01hd0ng85', 'en', 1, 'https://ror.org/01hd0ng85 American Neurogastroenterology and Motility Society'),
(86270, 'https://ror.org/01hgdcb87', 'no_lang_code', 1, 'https://ror.org/01hgdcb87 China Architecture Design & Research Group (China) 中国建筑设讔研究院'),
(86271, 'https://ror.org/01hgg7b81', 'en', 1, 'https://ror.org/01hgg7b81 State University of Jakarta Universitas Negeri Jakarta'),
(86272, 'https://ror.org/01hjy8d50', 'no_lang_code', 0, 'https://ror.org/01hjy8d50 Teledyne RD Instruments (United States)'),
(86273, 'https://ror.org/01hm85r97', 'en', 1, 'https://ror.org/01hm85r97 Chorley and South Ribble Hospital'),
(86274, 'https://ror.org/01hnzmd62', 'no_lang_code', 1, 'https://ror.org/01hnzmd62 Smart Information Flow Technologies (United States)'),
(86275, 'https://ror.org/01hqn7w83', 'en', 1, 'https://ror.org/01hqn7w83 Health and Disability Commissioner'),
(86276, 'https://ror.org/01hrxxx24', 'en', 1, 'https://ror.org/01hrxxx24 Arturo Prat University Universidad Arturo Prat'),
(86277, 'https://ror.org/01hvx5h04', 'no_lang_code', 1, 'https://ror.org/01hvx5h04 Osaka Metropolitan University å¤§é˜Ŗå…¬ē«‹å¤§å­¦'),
(86278, 'https://ror.org/01hw93t68', 'en', 1, 'https://ror.org/01hw93t68 St. Norbert College'),
(86279, 'https://ror.org/01hxnkc79', 'no_lang_code', 0, 'https://ror.org/01hxnkc79 Molecular NeuroImaging (United States)'),
(86280, 'https://ror.org/01j378a47', 'en', 1, 'https://ror.org/01j378a47 Fight for Sight'),
(86281, 'https://ror.org/01j5yx942', 'en', 1, 'https://ror.org/01j5yx942 Finnish Coeliac Society Keliakialiitto'),
(86282, 'https://ror.org/01j818n92', 'en', 1, 'https://ror.org/01j818n92 Institute for Bee Research Länderinstitut für Bienenkunde'),
(86283, 'https://ror.org/01j90k964', 'no_lang_code', 0, 'https://ror.org/01j90k964 Luxcel Biosciences (Ireland)'),
(86284, 'https://ror.org/01j99nc54', 'en', 1, 'https://ror.org/01j99nc54 Irkutsk State University Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(86285, 'https://ror.org/01jbjy689', 'en', 1, 'https://ror.org/01jbjy689 Wihuri Research Institute'),
(86286, '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'),
(86287, 'https://ror.org/01jccpq86', 'no_lang_code', 1, 'https://ror.org/01jccpq86 Scalable Network Technologies (United States)'),
(86288, 'https://ror.org/01jgv6w72', 'en', 1, 'https://ror.org/01jgv6w72 National Institute for Theoretical Physics'),
(86289, 'https://ror.org/01jgzvw27', 'en', 1, 'https://ror.org/01jgzvw27 The Lowy Medical Research Institute'),
(86290, 'https://ror.org/01jhgd738', 'en', 1, 'https://ror.org/01jhgd738 International Specialised Skills Institute'),
(86291, 'https://ror.org/01jjkzv49', 'en', 1, 'https://ror.org/01jjkzv49 Neurological Foundation of New Zealand'),
(86292, 'https://ror.org/01jkd3546', 'en', 1, 'https://ror.org/01jkd3546 P.N. Lebedev Physical Institute of the Russian Academy of Sciences Физический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. П. Š. ЛебеГева'),
(86293, 'https://ror.org/01jmj5g35', 'es', 0, 'https://ror.org/01jmj5g35 Instituto Profesional Virginio Gómez'),
(86294, 'https://ror.org/01jrsq444', 'en', 0, 'https://ror.org/01jrsq444 Carlos Albizu University'),
(86295, 'https://ror.org/01jxa2z23', 'en', 1, 'https://ror.org/01jxa2z23 Anhui Development and Reform Commission å®‰å¾½ēœå‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(86296, 'https://ror.org/01jxef645', 'es', 1, 'https://ror.org/01jxef645 Hospital Privado de Comunidad'),
(86297, 'https://ror.org/01k00f941', 'en', 1, 'https://ror.org/01k00f941 Natural Hazards Research Platform'),
(86298, 'https://ror.org/01k2cxc53', 'en', 1, 'https://ror.org/01k2cxc53 Virginia Marine Resources Commission'),
(86299, 'https://ror.org/01k6aj812', 'no_lang_code', 1, 'https://ror.org/01k6aj812 KIK Custom Products (Canada)'),
(86300, 'https://ror.org/01k6z4z19', 'en', 1, 'https://ror.org/01k6z4z19 Bremen Institute for Applied Beam Technology Bremer Institut für angewandte Strahltechnik'),
(86301, 'https://ror.org/01k7e4s32', 'en', 1, 'https://ror.org/01k7e4s32 Prince Sultan Military College of Health Sciences ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£Ł…ŁŠŲ± سلطان Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲµŲ­ŁŠŲ©'),
(86302, 'https://ror.org/01k81gt67', 'en', 1, 'https://ror.org/01k81gt67 Alfred University'),
(86303, 'https://ror.org/01ka3aq48', 'no', 1, 'https://ror.org/01ka3aq48 Vinje Kommune'),
(86304, 'https://ror.org/01kabe474', 'en', 1, 'https://ror.org/01kabe474 Institute of Molecular Sciences and Bioinformatics'),
(86305, 'https://ror.org/01kb3t575', 'en', 1, 'https://ror.org/01kb3t575 Administración de Servicios Generales Administration des services généraux General Services Administration'),
(86306, 'https://ror.org/01kbsct23', 'no_lang_code', 1, 'https://ror.org/01kbsct23 B&W Tek (United States)'),
(86307, 'https://ror.org/01kdbsa35', 'en', 1, 'https://ror.org/01kdbsa35 National Imaging Facility'),
(86308, 'https://ror.org/01kf5tm19', 'no_lang_code', 1, 'https://ror.org/01kf5tm19 Sanovel (Turkey)'),
(86309, 'https://ror.org/01kfc9965', 'en', 1, 'https://ror.org/01kfc9965 National Association of Orthopaedic Nurses'),
(86310, 'https://ror.org/01kga0z77', 'en', 1, 'https://ror.org/01kga0z77 Institute of Solid State Chemistry Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии тверГого тела Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(86311, 'https://ror.org/01khf5d59', 'en', 1, 'https://ror.org/01khf5d59 Qiqihar University 齐齐哈尔大学'),
(86312, 'https://ror.org/01kjc7m95', 'en', 1, 'https://ror.org/01kjc7m95 Institute of Dendrology Instytut Dendrologii PAN'),
(86313, 'https://ror.org/01kjjpm11', 'no_lang_code', 0, 'https://ror.org/01kjjpm11 Osaka Meijo Women''s College å¤§é˜Ŗę˜Žęµ„å„³å­ēŸ­ęœŸå¤§å­¦'),
(86314, 'https://ror.org/01kknzt55', 'no_lang_code', 0, 'https://ror.org/01kknzt55 Toyota Boshoku (Japan) ćƒˆćƒØć‚æē“”ē¹”ę Ŗå¼ä¼šē¤¾'),
(86315, 'https://ror.org/01krpyz50', 'en', 0, 'https://ror.org/01krpyz50 Yamazaki College of Animal Health Technology ćƒ¤ćƒžć‚¶ć‚­å‹•ē‰©ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(86316, 'https://ror.org/01kx1an46', 'en', 1, 'https://ror.org/01kx1an46 Batken State University Баткенский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(86317, 'https://ror.org/01ky0w731', 'en', 1, 'https://ror.org/01ky0w731 Academic Hospital Paramaribo Academisch Ziekenhuis Paramaribo'),
(86318, 'https://ror.org/01ky71w68', 'en', 0, 'https://ror.org/01ky71w68 Penn State Behrend'),
(86319, 'https://ror.org/01m8a5113', 'no_lang_code', 0, 'https://ror.org/01m8a5113 InterMune (Canada)'),
(86320, 'https://ror.org/01m9vnj91', 'no_lang_code', 0, 'https://ror.org/01m9vnj91 UTC Aerospace Systems (United Kingdom)'),
(86321, 'https://ror.org/01mae9353', 'en', 1, 'https://ror.org/01mae9353 Marine National Facility'),
(86322, 'https://ror.org/01mcqhs03', 'no_lang_code', 0, 'https://ror.org/01mcqhs03 BPE (Germany)'),
(86323, 'https://ror.org/01mdfdm06', 'en', 1, 'https://ror.org/01mdfdm06 Monell Chemical Senses Center'),
(86324, 'https://ror.org/01mgpsx86', 'en', 1, 'https://ror.org/01mgpsx86 SouthCoast Health'),
(86325, 'https://ror.org/01mhgwt57', 'en', 1, 'https://ror.org/01mhgwt57 Eastern Connecticut State University'),
(86326, 'https://ror.org/01mhkcn55', 'en', 0, 'https://ror.org/01mhkcn55 Thuyloi University'),
(86327, 'https://ror.org/01mjqhh60', 'no_lang_code', 0, 'https://ror.org/01mjqhh60 Thomson Csf (France)'),
(86328, 'https://ror.org/01mmx3p40', 'no_lang_code', 1, 'https://ror.org/01mmx3p40 Intravacc (Netherlands)'),
(86329, 'https://ror.org/01mmz5j21', 'en', 1, 'https://ror.org/01mmz5j21 Victorian Clinical Genetics Services'),
(86330, 'https://ror.org/01mqgp065', 'no_lang_code', 1, 'https://ror.org/01mqgp065 Acacia Research Corporation (United States)'),
(86331, 'https://ror.org/01mrvbd33', 'en', 1, 'https://ror.org/01mrvbd33 Hoshi University ę˜Ÿč–¬ē§‘å¤§å­¦'),
(86332, 'https://ror.org/01mshqq40', 'no_lang_code', 0, 'https://ror.org/01mshqq40 MAN (Germany)'),
(86333, 'https://ror.org/01mt4sd98', 'no_lang_code', 0, 'https://ror.org/01mt4sd98 Foster Wheeler (Finland)'),
(86334, 'https://ror.org/01mwe3155', 'no_lang_code', 1, 'https://ror.org/01mwe3155 Domainex (United Kingdom)'),
(86335, 'https://ror.org/01mwvah42', 'fr', 1, 'https://ror.org/01mwvah42 CancƩropƓle PACA'),
(86336, 'https://ror.org/01mzk5576', 'en', 1, 'https://ror.org/01mzk5576 Leibniz Institute of Plant Biochemistry Leibniz-Institut für Pflanzenbiochemie'),
(86337, 'https://ror.org/01mzmgj80', 'en', 0, 'https://ror.org/01mzmgj80 CSIRO Marine and Atmospheric Research'),
(86338, 'https://ror.org/01mzspr34', 'no_lang_code', 1, 'https://ror.org/01mzspr34 Tandem Diabetes Care (United States)'),
(86339, 'https://ror.org/01n92vv28', 'en', 1, 'https://ror.org/01n92vv28 Oncode Institute'),
(86340, 'https://ror.org/01n9kga30', 'en', 0, 'https://ror.org/01n9kga30 Duke University School of Medicine'),
(86341, 'https://ror.org/01ncezw90', 'en', 0, 'https://ror.org/01ncezw90 MRC Medical Sociology Unit'),
(86342, 'https://ror.org/01nckkm68', 'en', 1, 'https://ror.org/01nckkm68 Sophia University äøŠę™ŗå¤§å­¦'),
(86343, 'https://ror.org/01ng0hs47', 'en', 1, 'https://ror.org/01ng0hs47 American Institute of Bisexuality'),
(86344, 'https://ror.org/01ng2wp34', 'en', 1, 'https://ror.org/01ng2wp34 D A Pandu Memorial RV Dental College and Hospital'),
(86345, 'https://ror.org/01ngrza98', 'en', 0, 'https://ror.org/01ngrza98 International Maize and Wheat Improvement Center'),
(86346, 'https://ror.org/01nprxv78', 'no_lang_code', 1, 'https://ror.org/01nprxv78 Sema4 (United States)'),
(86347, 'https://ror.org/01ns7sr89', 'no_lang_code', 1, 'https://ror.org/01ns7sr89 Quintessa (United Kingdom)'),
(86348, 'https://ror.org/01nsn0t21', 'pt', 1, 'https://ror.org/01nsn0t21 Universidade Regional de Blumenau'),
(86349, 'https://ror.org/01ntmn724', 'en', 1, 'https://ror.org/01ntmn724 Consortium For Research and Innovation In Aerospace In Quebec'),
(86350, 'https://ror.org/01ntx4j68', 'en', 1, 'https://ror.org/01ntx4j68 Kurdistan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲÆŲ±Ł…Ų§Ł†ŪŒ کردستان'),
(86351, 'https://ror.org/01nv7by68', 'de', 1, 'https://ror.org/01nv7by68 Hamburger Krebsgesellschaft'),
(86352, 'https://ror.org/01nvdnb36', 'en', 0, 'https://ror.org/01nvdnb36 Central European Institute of Technology'),
(86353, 'https://ror.org/01nw6eh35', 'en', 1, 'https://ror.org/01nw6eh35 Arkansas Soybean Promotion Board'),
(86354, 'https://ror.org/01nwfnh39', 'en', 1, 'https://ror.org/01nwfnh39 Uganda Technology and Management University'),
(86355, 'https://ror.org/01nxen694', 'es', 1, 'https://ror.org/01nxen694 Escuela Colombiana de Ingenieria Julio Garavito, Escuela Colombiana de IngenierĆ­a'),
(86356, 'https://ror.org/01nzm5q36', 'en', 1, 'https://ror.org/01nzm5q36 ARC Centre of Excellence in Future Low-Energy Electronics Technologies'),
(86357, 'https://ror.org/01p0kh042', 'en', 1, 'https://ror.org/01p0kh042 Age Endeavour Fellowship'),
(86358, 'https://ror.org/01p2ej961', 'en', 1, 'https://ror.org/01p2ej961 The Art Institutes'),
(86359, 'https://ror.org/01p2v9z14', 'fr', 1, 'https://ror.org/01p2v9z14 Fondation Hopale'),
(86360, 'https://ror.org/01p3k4288', 'en', 1, 'https://ror.org/01p3k4288 South Metropolitan Technical and Further Education'),
(86361, 'https://ror.org/01p4rys65', 'no_lang_code', 1, 'https://ror.org/01p4rys65 Inmos'),
(86362, 'https://ror.org/01p53ys29', 'no_lang_code', 0, 'https://ror.org/01p53ys29 Scientific Systems Company (United States)'),
(86363, 'https://ror.org/01p6z3b24', 'en', 1, 'https://ror.org/01p6z3b24 University of Medicine and Health Sciences'),
(86364, 'https://ror.org/01p8d4t94', 'en', 1, 'https://ror.org/01p8d4t94 Union University'),
(86365, 'https://ror.org/01p9g6b97', 'en', 1, 'https://ror.org/01p9g6b97 State Ethnic Affairs Commission'),
(86366, 'https://ror.org/01pahbn61', 'en', 1, 'https://ror.org/01pahbn61 Sichuan Animal Science Academy å››å·ēœē•œē‰§ē§‘å­¦ē ”ē©¶é™¢'),
(86367, 'https://ror.org/01pc3rk31', 'no_lang_code', 1, 'https://ror.org/01pc3rk31 Ito Hospital ä¼Šč—¤ē—…é™¢'),
(86368, 'https://ror.org/01pdex402', 'en', 0, 'https://ror.org/01pdex402 Bhagwan Mahavir Medical Research Centre'),
(86369, 'https://ror.org/01pdwm065', 'it', 1, 'https://ror.org/01pdwm065 Conservatorio di Musica "Luisa D''Annunzio"'),
(86370, 'https://ror.org/01pe8xs92', 'no_lang_code', 1, 'https://ror.org/01pe8xs92 Oracle (United Kingdom)'),
(86371, 'https://ror.org/01pj30291', 'en', 1, 'https://ror.org/01pj30291 Center for Cancer and Blood Disorders'),
(86372, 'https://ror.org/01pj8yd54', 'en', 1, 'https://ror.org/01pj8yd54 Beni American University'),
(86373, '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'),
(86374, 'https://ror.org/01pmdrn98', 'id', 1, 'https://ror.org/01pmdrn98 Universitas Muhammadiyah Aceh'),
(86375, 'https://ror.org/01pnctq19', 'en', 1, 'https://ror.org/01pnctq19 Indian Institute of Teacher Education'),
(86376, 'https://ror.org/01pp5tt34', 'en', 1, 'https://ror.org/01pp5tt34 Science Council of Japan ę—„ęœ¬å­¦č”“ä¼šč­°'),
(86377, 'https://ror.org/01pqdvy42', 'en', 1, 'https://ror.org/01pqdvy42 Bournemouth and Poole College'),
(86378, 'https://ror.org/01pr7q572', 'en', 0, 'https://ror.org/01pr7q572 Financialist'),
(86379, 'https://ror.org/01pshtn13', 'no_lang_code', 0, 'https://ror.org/01pshtn13 Berner & Mattner (Germany)'),
(86380, 'https://ror.org/01pvdd334', 'en', 1, 'https://ror.org/01pvdd334 Izhevsk State Technical University Ижевский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. Š¢. Калашникова'),
(86381, 'https://ror.org/01pwdjb69', 'no_lang_code', 1, 'https://ror.org/01pwdjb69 Ulrich Creative Simulations (Switzerland)'),
(86382, 'https://ror.org/01pxe3r04', 'en', 1, 'https://ror.org/01pxe3r04 University of Nizwa Ų¬Ų§Ł…Ų¹Ų© Ł†Ų²ŁˆŁ‰'),
(86383, 'https://ror.org/01pxfxj80', 'en', 1, 'https://ror.org/01pxfxj80 GreyNet International'),
(86384, 'https://ror.org/01pxhsx10', 'en', 1, 'https://ror.org/01pxhsx10 Council of Professional Geropsychology Training Programs'),
(86385, 'https://ror.org/01pxka825', 'en', 1, 'https://ror.org/01pxka825 United States Bone and Joint Initiative'),
(86386, 'https://ror.org/01pxxsm33', 'en', 1, 'https://ror.org/01pxxsm33 PADI Foundation'),
(86387, 'https://ror.org/01pzzxg27', 'no_lang_code', 0, 'https://ror.org/01pzzxg27 Dyax (United States)'),
(86388, 'https://ror.org/01q0eat70', 'en', 1, 'https://ror.org/01q0eat70 National Institute of Health Sciences'),
(86389, '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'),
(86390, 'https://ror.org/01q300p77', 'no_lang_code', 0, 'https://ror.org/01q300p77 Faxitron (United States)'),
(86391, 'https://ror.org/01q3yym06', 'no_lang_code', 1, 'https://ror.org/01q3yym06 Latour (Sweden)'),
(86392, 'https://ror.org/01q496a73', 'en', 1, 'https://ror.org/01q496a73 MRC Weatherall Institute of Molecular Medicine'),
(86393, 'https://ror.org/01q9sj412', 'en', 1, 'https://ror.org/01q9sj412 University Hospital of Bern'),
(86394, 'https://ror.org/01qb09m39', 'no_lang_code', 1, 'https://ror.org/01qb09m39 Lincoln Agritech (New Zealand)'),
(86395, 'https://ror.org/01qb1sw63', 'en', 1, 'https://ror.org/01qb1sw63 Enrico Fermi Center for Study and Research Museo Storico della Fisica e Centro Studi e Ricerche Enrico Fermi'),
(86396, 'https://ror.org/01qbysn42', 'en', 1, 'https://ror.org/01qbysn42 Triple Negative Breast Cancer Foundation'),
(86397, 'https://ror.org/01qc17q17', 'en', 1, 'https://ror.org/01qc17q17 St. Luke''s University Health Network'),
(86398, 'https://ror.org/01qc2fa96', 'en', 1, 'https://ror.org/01qc2fa96 Glaucoma Foundation'),
(86399, 'https://ror.org/01qcc6q77', 'en', 1, 'https://ror.org/01qcc6q77 Social Welfare Department ē¤¾ęœƒē¦åˆ©ē½²'),
(86400, 'https://ror.org/01qcqnr53', 'en', 1, 'https://ror.org/01qcqnr53 Asian Pacific American Institute for Congressional Studies'),
(86401, 'https://ror.org/01qfab443', 'fr', 1, 'https://ror.org/01qfab443 Institut Jean Nicod'),
(86402, 'https://ror.org/01qfx0j16', 'en', 1, 'https://ror.org/01qfx0j16 Center for Technology & Innovation Management'),
(86403, 'https://ror.org/01qjqvr92', 'en', 1, 'https://ror.org/01qjqvr92 Translational Health Science and Technology Institute'),
(86404, 'https://ror.org/01qmg4n59', 'en', 0, 'https://ror.org/01qmg4n59 Swedish Cement and Concrete Research Institute'),
(86405, 'https://ror.org/01qmysq37', 'en', 0, 'https://ror.org/01qmysq37 Kaiser Foundation Health Plan'),
(86406, 'https://ror.org/01qqfw276', 'no_lang_code', 1, 'https://ror.org/01qqfw276 SQZ Biotech (United States)'),
(86407, 'https://ror.org/01qqpzg67', 'en', 1, 'https://ror.org/01qqpzg67 NIHR Southampton Biomedical Research Centre'),
(86408, 'https://ror.org/01qv0t980', 'no', 1, 'https://ror.org/01qv0t980 Vestfold fylkeskommune'),
(86409, 'https://ror.org/01qzc0f54', 'en', 1, 'https://ror.org/01qzc0f54 Qingdao University of Technology é’å²›ē†å·„å¤§å­¦'),
(86410, 'https://ror.org/01r01qe73', 'en', 0, 'https://ror.org/01r01qe73 Ethiopian Health and Nutrition Research Institute'),
(86411, 'https://ror.org/01r1pse25', 'da', 1, 'https://ror.org/01r1pse25 VUC Aarhus'),
(86412, 'https://ror.org/01r2r1452', 'no_lang_code', 1, 'https://ror.org/01r2r1452 Chicken Farmers of Saskatchewan (Canada)'),
(86413, 'https://ror.org/01r5gad37', 'en', 1, 'https://ror.org/01r5gad37 Marine Corps University'),
(86414, 'https://ror.org/01r5k6556', 'no_lang_code', 1, 'https://ror.org/01r5k6556 Omeros Corporation (United States)'),
(86415, 'https://ror.org/01r729g75', 'en', 1, 'https://ror.org/01r729g75 Russian State University for Physical Education Sport Youth and Tourism Российский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта, молоГёжи Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(86416, 'https://ror.org/01r9n7c25', 'no_lang_code', 0, 'https://ror.org/01r9n7c25 Alta (Italy)'),
(86417, 'https://ror.org/01rcpar89', 'en', 0, 'https://ror.org/01rcpar89 Campus Benjamin Franklin'),
(86418, 'https://ror.org/01redxw13', 'en', 1, 'https://ror.org/01redxw13 Norwegian Aviation Museum'),
(86419, 'https://ror.org/01rgfwb41', 'no_lang_code', 0, 'https://ror.org/01rgfwb41 Dell (Ireland)'),
(86420, 'https://ror.org/01rhx3w79', 'en', 1, 'https://ror.org/01rhx3w79 Cancer Hospital and Research Institute'),
(86421, 'https://ror.org/01rj99y75', 'en', 1, 'https://ror.org/01rj99y75 Arthritis New Zealand'),
(86422, 'https://ror.org/01rjx3896', 'fr', 1, 'https://ror.org/01rjx3896 Bipea'),
(86423, 'https://ror.org/01rmrr768', 'no_lang_code', 1, 'https://ror.org/01rmrr768 Focaltech Systems (Taiwan)'),
(86424, 'https://ror.org/01rncwg06', 'en', 1, 'https://ror.org/01rncwg06 The Korean Society of Nephrology ėŒ€ķ•œģ‹ ģž„ķ•™ķšŒ'),
(86425, 'https://ror.org/01rps2j56', 'en', 1, 'https://ror.org/01rps2j56 Koning Willem I College'),
(86426, 'https://ror.org/01rr7ev58', 'nl', 0, 'https://ror.org/01rr7ev58 Pharmo Instituut'),
(86427, 'https://ror.org/01rrwkv56', 'en', 1, 'https://ror.org/01rrwkv56 Society of Family Planning'),
(86428, '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 ą¤øą¤‚ą¤œą¤Æ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(86429, 'https://ror.org/01rsp8958', 'pl', 0, 'https://ror.org/01rsp8958 Akademia Wychowania Fizycznego we Wrocławiu'),
(86430, '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'),
(86431, 'https://ror.org/01rvxw146', 'en', 1, 'https://ror.org/01rvxw146 Duchenne Parent Project'),
(86432, 'https://ror.org/01rw86c52', 'no_lang_code', 0, 'https://ror.org/01rw86c52 NPS Allelix (Canada)'),
(86433, 'https://ror.org/01rxg5p40', 'en', 1, 'https://ror.org/01rxg5p40 Institute of Mathematics and its Applications'),
(86434, 'https://ror.org/01rxhds71', 'no_lang_code', 1, 'https://ror.org/01rxhds71 IQuity (United States)'),
(86435, 'https://ror.org/01ry38620', 'en', 1, 'https://ror.org/01ry38620 Yashima Gakuen University å…«ę“²å­¦åœ’å¤§å­¦'),
(86436, 'https://ror.org/01s12p182', 'no_lang_code', 0, 'https://ror.org/01s12p182 Silicon Graphics International (Canada)'),
(86437, 'https://ror.org/01s13vs47', 'en', 1, 'https://ror.org/01s13vs47 Joanna M. Nicolay Melanoma Foundation'),
(86438, 'https://ror.org/01s1hsq14', 'en', 1, 'https://ror.org/01s1hsq14 Yale New Haven Health System'),
(86439, 'https://ror.org/01sfh2b07', 'en', 0, 'https://ror.org/01sfh2b07 National Agency for New Technologies Energy and Sustainable Economic Development'),
(86440, 'https://ror.org/01shmb059', 'en', 1, 'https://ror.org/01shmb059 Devon History Society'),
(86441, 'https://ror.org/01sj5ez28', 'en', 1, 'https://ror.org/01sj5ez28 Suan Sunandha Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąø§ąø™ąøŖąøøąø™ąø±ąø™ąø—ąø²'),
(86442, 'https://ror.org/01sj5ye95', 'no_lang_code', 0, 'https://ror.org/01sj5ye95 Gen9 (United States)'),
(86443, 'https://ror.org/01smy6g03', 'en', 1, 'https://ror.org/01smy6g03 Gen Foundation'),
(86444, 'https://ror.org/01sn10141', 'en', 1, 'https://ror.org/01sn10141 Australasian Society of Clinical and Experimental Pharmacologists and Toxicologists'),
(86445, 'https://ror.org/01spcca44', 'en', 0, 'https://ror.org/01spcca44 University of Phoenix'),
(86446, 'https://ror.org/01sqjdr55', 'no_lang_code', 1, 'https://ror.org/01sqjdr55 Kancera (Sweden)'),
(86447, 'https://ror.org/01ss3mr78', 'de', 1, 'https://ror.org/01ss3mr78 Ias-Gruppe'),
(86448, 'https://ror.org/01stfz405', 'en', 0, 'https://ror.org/01stfz405 Salvation Army'),
(86449, 'https://ror.org/01styv105', 'en', 0, 'https://ror.org/01styv105 United Nations Educational, Scientific and Cultural Organization'),
(86450, 'https://ror.org/01sv5vd96', 'en', 1, 'https://ror.org/01sv5vd96 Bloomberg Philanthropies'),
(86451, 'https://ror.org/01svejt45', 'it', 0, 'https://ror.org/01svejt45 Institute of Neuroscience Istituto di Neuroscienze'),
(86452, 'https://ror.org/01swgvg08', 'no_lang_code', 0, 'https://ror.org/01swgvg08 GeneSys Research'),
(86453, 'https://ror.org/01sxfwq10', 'en', 0, 'https://ror.org/01sxfwq10 Institute of Cellular Biology and Pathology'),
(86454, 'https://ror.org/01sz1js42', 'pt', 1, 'https://ror.org/01sz1js42 Universidade Estadual da Região Tocantina do Maranhão'),
(86455, 'https://ror.org/01t20sn94', 'en', 1, 'https://ror.org/01t20sn94 University of the West Indies System'),
(86456, 'https://ror.org/01t3zke88', 'en', 1, 'https://ror.org/01t3zke88 German Institute of Development and Sustainability'),
(86457, 'https://ror.org/01t650v39', 'en', 1, 'https://ror.org/01t650v39 Australian Prawn Farmers Association'),
(86458, 'https://ror.org/01t6bd616', 'no_lang_code', 1, 'https://ror.org/01t6bd616 Endeavor Global (United States)'),
(86459, 'https://ror.org/01t6qw336', 'en', 1, 'https://ror.org/01t6qw336 William V. S. Tubman University'),
(86460, 'https://ror.org/01t70kc94', 'en', 1, 'https://ror.org/01t70kc94 Ministry of Environmental Protection ×”×ž×©×Ø×“ ×œ×”×’× ×Ŗ ההביבה'),
(86461, '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'),
(86462, 'https://ror.org/01t9r8c86', 'en', 1, 'https://ror.org/01t9r8c86 Prince Albert II of Monaco Foundation'),
(86463, 'https://ror.org/01t9rwr70', 'en', 1, 'https://ror.org/01t9rwr70 Association Canadienne de GastroentƩrologie Canadian Association of Gastroenterology'),
(86464, 'https://ror.org/01tca3t44', 'en', 1, 'https://ror.org/01tca3t44 ArcticNet'),
(86465, 'https://ror.org/01td4p294', 'en', 1, 'https://ror.org/01td4p294 Thailand Center of Excellence in Physics'),
(86466, 'https://ror.org/01thb7525', 'en', 1, 'https://ror.org/01thb7525 Institute of Applied Ecology äø­å›½ē§‘å­¦é™¢ę²ˆé˜³åŗ”ē”Øē”Ÿę€ē ”ē©¶ę‰€'),
(86467, 'https://ror.org/01thp7c65', 'en', 1, 'https://ror.org/01thp7c65 Cure CMD'),
(86468, 'https://ror.org/01tj2ez11', 'no_lang_code', 1, 'https://ror.org/01tj2ez11 Clough (Australia)'),
(86469, 'https://ror.org/01tkfnd57', 'no_lang_code', 0, 'https://ror.org/01tkfnd57 PhosphorTech Corporation (United States)'),
(86470, 'https://ror.org/01tkyan17', 'en', 1, 'https://ror.org/01tkyan17 I Care I Cure Childhood Cancer Foundation'),
(86471, 'https://ror.org/01tpwmh40', 'fr', 0, 'https://ror.org/01tpwmh40 Haute Ɖcole de SantĆ© de GenĆØve'),
(86472, 'https://ror.org/01trfvq12', 'en', 1, 'https://ror.org/01trfvq12 NASA Exoplanet Science Institute'),
(86473, 'https://ror.org/01trqz050', 'en', 0, 'https://ror.org/01trqz050 United Nations Population Fund'),
(86474, 'https://ror.org/01trzn684', 'no_lang_code', 0, 'https://ror.org/01trzn684 World Agroforestry Centre'),
(86475, 'https://ror.org/01tw4qq66', 'en', 1, 'https://ror.org/01tw4qq66 The Rothschild Archive'),
(86476, 'https://ror.org/01tzmft44', 'no_lang_code', 1, 'https://ror.org/01tzmft44 Advanced Targeting Systems (United States)'),
(86477, 'https://ror.org/01v0c1y10', 'en', 1, 'https://ror.org/01v0c1y10 EBZ Business School'),
(86478, 'https://ror.org/01v0kyj08', 'en', 1, 'https://ror.org/01v0kyj08 Islamic Azad University, Jahrom Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد جهرم'),
(86479, 'https://ror.org/01v2y6110', 'en', 0, 'https://ror.org/01v2y6110 Easter Seals Iowa'),
(86480, 'https://ror.org/01v42ys47', 'en', 1, 'https://ror.org/01v42ys47 Tokyo Metropolitan Government ę±äŗ¬éƒ½åŗ'),
(86481, 'https://ror.org/01v4e7289', 'en', 1, 'https://ror.org/01v4e7289 Russian-Armenian University Õ€Õ”Õµ-Õ¼ÕøÖ‚Õ½Õ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(86482, 'https://ror.org/01v4ej106', 'en', 1, 'https://ror.org/01v4ej106 Network for Business Sustainability RĆ©seau Entreprise et DĆ©veloppement Durable​'),
(86483, 'https://ror.org/01v542j61', 'en', 1, 'https://ror.org/01v542j61 Polish-Japanese Academy of Information Technology Polsko-Japońska Akademia Technik Komputerowych'),
(86484, 'https://ror.org/01v55qb38', 'en', 1, 'https://ror.org/01v55qb38 National Cerebral and Cardiovascular Center å›½ē«‹å¾Ŗē’°å™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(86485, 'https://ror.org/01v5mqw79', 'en', 1, 'https://ror.org/01v5mqw79 Zhongnan Hospital of Wuhan University'),
(86486, 'https://ror.org/01v8x0f60', 'en', 1, 'https://ror.org/01v8x0f60 Rafsanjan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکي رفسنجان'),
(86487, 'https://ror.org/01v9p7c03', 'en', 1, 'https://ror.org/01v9p7c03 National University of Santiago del Estero Universidad Nacional de Santiago del Estero'),
(86488, 'https://ror.org/01vaj9161', 'no_lang_code', 1, 'https://ror.org/01vaj9161 Church & Dwight (United States)'),
(86489, 'https://ror.org/01vasff55', 'no_lang_code', 1, 'https://ror.org/01vasff55 Jiamusi University ä½³ęœØę–Æå¤§å­¦'),
(86490, 'https://ror.org/01vbxzt26', 'en', 1, 'https://ror.org/01vbxzt26 Centre for Research in Early Childhood'),
(86491, 'https://ror.org/01vd7vb53', 'en', 1, 'https://ror.org/01vd7vb53 Hunan City University ę¹–å—åŸŽåø‚å­¦é™¢'),
(86492, 'https://ror.org/01vekys64', 'en', 1, 'https://ror.org/01vekys64 Max Planck Institute of Quantum Optics Max-Planck-Institut für Quantenoptik'),
(86493, 'https://ror.org/01vep7794', 'es', 1, 'https://ror.org/01vep7794 Instituto Nacional de Investigaciones Agropecuarias'),
(86494, 'https://ror.org/01vf2ak57', 'en', 1, 'https://ror.org/01vf2ak57 Korean Society of Hypertension'),
(86495, 'https://ror.org/01vh3ed25', 'no_lang_code', 0, 'https://ror.org/01vh3ed25 Cameron (United States)'),
(86496, 'https://ror.org/01vj3ps51', 'no_lang_code', 0, 'https://ror.org/01vj3ps51 Kolyada Theater ŠšŠ¾Š»ŃŠ“Š°-театр'),
(86497, 'https://ror.org/01vjvsj67', 'en', 1, 'https://ror.org/01vjvsj67 Kuwait College of Science and Technology ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁˆŁŠŲŖ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(86498, 'https://ror.org/01vs6se76', 'en', 1, 'https://ror.org/01vs6se76 Helmholtz Institute Erlangen-Nürnberg Helmholtz-Institut Erlangen-Nürnberg für Erneuerbare Energien'),
(86499, 'https://ror.org/01vsjtq46', 'en', 1, 'https://ror.org/01vsjtq46 Dalhousie Medical Research Foundation'),
(86500, 'https://ror.org/01vsww631', 'en', 1, 'https://ror.org/01vsww631 Microbial Institute for Fermentation Industry 발효 ėÆøģƒė¬¼ ģ‚°ģ—… ģ§„ķ„ 기금'),
(86501, 'https://ror.org/01vvhy971', 'en', 1, 'https://ror.org/01vvhy971 Shiga University 滋賀大学'),
(86502, 'https://ror.org/01vwsps34', 'en', 0, 'https://ror.org/01vwsps34 Schüttler Waske Tennis-University'),
(86503, 'https://ror.org/01vxfm326', 'en', 1, 'https://ror.org/01vxfm326 Budapesti Corvinus Egyetem Corvinus University of Budapest'),
(86504, 'https://ror.org/01vzaca42', 'pt', 1, 'https://ror.org/01vzaca42 Sociedade Brasileira de Retina e VĆ­treo'),
(86505, 'https://ror.org/01vzxjs29', 'en', 1, 'https://ror.org/01vzxjs29 All Saints Educational Trust'),
(86506, 'https://ror.org/01w2r7p29', 'en', 1, 'https://ror.org/01w2r7p29 The Korean Society of International Law ķ•œźµ­ źµ­ģ œė²• ķ•™ķšŒ'),
(86507, 'https://ror.org/01w58xz62', 'en', 0, 'https://ror.org/01w58xz62 Qatar Computing Research Institute معهد قطر Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų­ŁˆŲ³ŲØŲ©'),
(86508, 'https://ror.org/01w7dq902', 'no_lang_code', 0, 'https://ror.org/01w7dq902 Vyzkumny Ustav Kovu (Czechia)'),
(86509, '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'),
(86510, 'https://ror.org/01wdk9725', 'en', 0, 'https://ror.org/01wdk9725 Argosy University'),
(86511, 'https://ror.org/01wdtjg37', 'en', 1, 'https://ror.org/01wdtjg37 Lepage Research Institute'),
(86512, 'https://ror.org/01wftfc57', 'fr', 1, 'https://ror.org/01wftfc57 Inserm Transfert'),
(86513, 'https://ror.org/01wj9hk44', 'de', 1, 'https://ror.org/01wj9hk44 Bertelsmann Stiftung'),
(86514, 'https://ror.org/01wnp5861', 'en', 1, 'https://ror.org/01wnp5861 Psychoanalytic Institute of Northern California'),
(86515, 'https://ror.org/01wr1w859', 'en', 0, 'https://ror.org/01wr1w859 World Bank'),
(86516, 'https://ror.org/01wry0y20', 'en', 1, 'https://ror.org/01wry0y20 African Bible University'),
(86517, 'https://ror.org/01wtn4904', 'en', 0, 'https://ror.org/01wtn4904 Osaka Women''s Junior College 大阪儳子短期大学'),
(86518, 'https://ror.org/01ww9bv69', 'no_lang_code', 0, 'https://ror.org/01ww9bv69 Bard (United States)'),
(86519, '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'),
(86520, 'https://ror.org/01wy46p27', 'no_lang_code', 1, 'https://ror.org/01wy46p27 Biolab Pharma (Brazil)'),
(86521, 'https://ror.org/01wy67m98', 'es', 1, 'https://ror.org/01wy67m98 Fundación Banco Santander'),
(86522, 'https://ror.org/01wzvb985', 'en', 0, 'https://ror.org/01wzvb985 Kijowski Narodowy Uniwersytet Ekonomiczny im. Wadyma Hetmana Kyiv National Economic University Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВаГима Š“ŠµŃ‚ŃŒŠ¼Š°Š½Š°'),
(86523, 'https://ror.org/01x0h1806', 'en', 1, 'https://ror.org/01x0h1806 Australian National Maritime Museum'),
(86524, 'https://ror.org/01x1s0k88', 'no_lang_code', 0, 'https://ror.org/01x1s0k88 Terumo BCT (United States)'),
(86525, 'https://ror.org/01x7wtx19', 'no_lang_code', 0, 'https://ror.org/01x7wtx19 Regienov Groupement D Interet Economique'),
(86526, 'https://ror.org/01x8fkj71', 'no_lang_code', 1, 'https://ror.org/01x8fkj71 NGM Biopharmaceuticals (United States)'),
(86527, 'https://ror.org/01xcgh759', 'id', 1, 'https://ror.org/01xcgh759 Institut Teknologi Kalimantan'),
(86528, 'https://ror.org/01xcwz090', 'en', 0, 'https://ror.org/01xcwz090 Department of Communications and the Arts'),
(86529, 'https://ror.org/01xd04y04', 'no_lang_code', 0, 'https://ror.org/01xd04y04 Gammex (United States)'),
(86530, 'https://ror.org/01xdgf035', 'no_lang_code', 1, 'https://ror.org/01xdgf035 AxoGen (United States)'),
(86531, 'https://ror.org/01xdkk717', 'no_lang_code', 1, 'https://ror.org/01xdkk717 Momenta Pharmaceuticals (United States)'),
(86532, 'https://ror.org/01xe9ga30', 'no_lang_code', 0, 'https://ror.org/01xe9ga30 Saurer Schlafhorst (Czechia)'),
(86533, 'https://ror.org/01xg2j237', 'en', 1, 'https://ror.org/01xg2j237 National Institute of Traumatology & Orthopaedic Rehabilitation'),
(86534, 'https://ror.org/01xht6a47', 'it', 1, 'https://ror.org/01xht6a47 Centro Clinico Nemo'),
(86535, 'https://ror.org/01xjczb63', 'en', 0, 'https://ror.org/01xjczb63 Texas A&M Health Science Center'),
(86536, 'https://ror.org/01xkyj228', 'no_lang_code', 0, 'https://ror.org/01xkyj228 Martindale Pharma (United Kingdom)'),
(86537, 'https://ror.org/01xm29g08', 'en', 0, 'https://ror.org/01xm29g08 Escola Guignard Guignard University of Art of Minas Gerais'),
(86538, 'https://ror.org/01xnpbm13', 'en', 0, 'https://ror.org/01xnpbm13 Living Classrooms Foundation'),
(86539, 'https://ror.org/01xtcza13', 'pl', 1, 'https://ror.org/01xtcza13 Military Institute of Aviation Medicine Wojskowy Instytut Medycyny Lotniczej'),
(86540, 'https://ror.org/01xxp6985', 'no_lang_code', 1, 'https://ror.org/01xxp6985 Kōchi University 高矄大学'),
(86541, 'https://ror.org/01y2dtv33', 'es', 1, 'https://ror.org/01y2dtv33 Universidad Tecnológica de Tula-Tepeji'),
(86542, 'https://ror.org/01y2paj41', 'en', 0, 'https://ror.org/01y2paj41 United Nations Development Programme'),
(86543, 'https://ror.org/01y39ha98', 'en', 1, 'https://ror.org/01y39ha98 Institutului National de Metrologie National Institute of Metrology'),
(86544, 'https://ror.org/01y65xm17', 'en', 0, 'https://ror.org/01y65xm17 La Source'),
(86545, 'https://ror.org/01y6ccj36', 'en', 1, 'https://ror.org/01y6ccj36 National Pingtung University of Science and Technology'),
(86546, 'https://ror.org/01y7m0485', 'en', 1, 'https://ror.org/01y7m0485 Saginaw Valley State University'),
(86547, 'https://ror.org/01y8r3379', 'en', 1, 'https://ror.org/01y8r3379 Mozilla Foundation'),
(86548, 'https://ror.org/01y9f7d13', 'no_lang_code', 1, 'https://ror.org/01y9f7d13 Council of Grain Grower Organisations (Australia)'),
(86549, 'https://ror.org/01y9snp29', 'en', 0, 'https://ror.org/01y9snp29 ICSU Regional Office for Africa'),
(86550, 'https://ror.org/01yaers16', 'en', 1, 'https://ror.org/01yaers16 West Virginia Higher Education Policy Commission'),
(86551, 'https://ror.org/01ycbnv19', 'en', 1, 'https://ror.org/01ycbnv19 Grammy Foundation'),
(86552, 'https://ror.org/01ycecr18', 'en', 1, 'https://ror.org/01ycecr18 Information Technology Industry Development Agency'),
(86553, 'https://ror.org/01yebge64', 'en', 0, 'https://ror.org/01yebge64 Alliant International University'),
(86554, 'https://ror.org/01yfqp259', 'en', 0, 'https://ror.org/01yfqp259 Physicians Committee'),
(86555, 'https://ror.org/01yjd8r15', 'pt', 1, 'https://ror.org/01yjd8r15 Hospital de CĆ¢ncer de Pernambuco'),
(86556, 'https://ror.org/01yk47434', 'no_lang_code', 1, 'https://ror.org/01yk47434 Charlotte''s Web (United States)'),
(86557, 'https://ror.org/01yq27586', 'no_lang_code', 0, 'https://ror.org/01yq27586 Luciad (Belgium)'),
(86558, 'https://ror.org/01yqx2960', 'en', 1, 'https://ror.org/01yqx2960 Ashland Bellefonte Cancer Center'),
(86559, 'https://ror.org/01yrfvw22', 'no_lang_code', 0, 'https://ror.org/01yrfvw22 GigOptix (Switzerland)'),
(86560, 'https://ror.org/01ytgve10', 'en', 1, 'https://ror.org/01ytgve10 Kyoto Pharmaceutical University äŗ¬éƒ½č–¬ē§‘å¤§å­¦'),
(86561, 'https://ror.org/01yv62k92', 'en', 1, 'https://ror.org/01yv62k92 Aid for Cancer Research'),
(86562, 'https://ror.org/01ywejq18', 'en', 1, 'https://ror.org/01ywejq18 Psychiatry Research Trust'),
(86563, 'https://ror.org/01yxtb033', 'en', 1, 'https://ror.org/01yxtb033 Spondylitis Association of America'),
(86564, 'https://ror.org/01yxvpn13', 'en', 1, 'https://ror.org/01yxvpn13 Jahrom University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی جهرم'),
(86565, 'https://ror.org/01z3bp082', 'en', 1, 'https://ror.org/01z3bp082 Royal Norwegian Society of Sciences and Letters'),
(86566, 'https://ror.org/01z47g681', 'en', 1, 'https://ror.org/01z47g681 Institut für Rechts- und Kriminalsoziologie Institute for the Sociology of Law and Criminology'),
(86567, 'https://ror.org/01z4pqw17', 'en', 1, 'https://ror.org/01z4pqw17 Stone Age Institute'),
(86568, 'https://ror.org/01z6zjq35', 'en', 0, 'https://ror.org/01z6zjq35 Far Eastern State Academy of Art'),
(86569, 'https://ror.org/01z78ch44', 'no_lang_code', 0, 'https://ror.org/01z78ch44 INSIA'),
(86570, 'https://ror.org/01z7qjn33', 'en', 1, 'https://ror.org/01z7qjn33 Daegu University of Foreign Studies ėŒ€źµ¬ģ™øźµ­ģ–“ėŒ€ķ•™źµ'),
(86571, 'https://ror.org/01z86wn38', 'no_lang_code', 1, 'https://ror.org/01z86wn38 Vision Medicals (China) å¾®čæœåŸŗå› '),
(86572, 'https://ror.org/01zadmh83', 'no_lang_code', 1, 'https://ror.org/01zadmh83 Forest Protection Limited (Canada)'),
(86573, 'https://ror.org/01zbg3a43', 'en', 1, 'https://ror.org/01zbg3a43 WIP - Renewable Energies'),
(86574, 'https://ror.org/01zc8t088', 'en', 1, 'https://ror.org/01zc8t088 National Fire Protection Association'),
(86575, 'https://ror.org/01zcp1a93', 'en', 1, 'https://ror.org/01zcp1a93 National Institute for Health Care Management'),
(86576, 'https://ror.org/01zfzax10', 'en', 1, 'https://ror.org/01zfzax10 University of Tikrit Ų¬Ų§Ł…Ų¹Ų© تكريت'),
(86577, 'https://ror.org/01zgdd257', 'no_lang_code', 1, 'https://ror.org/01zgdd257 Medytox ė©”ė””ķ†”ģŠ¤'),
(86578, 'https://ror.org/01zq5k385', 'en', 1, 'https://ror.org/01zq5k385 General Insurance Association of Japan ę—„ęœ¬ęå®³äæé™ŗå”ä¼š'),
(86579, 'https://ror.org/01zq89n20', 'id', 1, 'https://ror.org/01zq89n20 Universitas Stikubank'),
(86580, 'https://ror.org/01zr73v18', 'no_lang_code', 1, 'https://ror.org/01zr73v18 Shenyang Jianzhu University ę²ˆé˜³å»ŗē­‘å¤§å­¦'),
(86581, 'https://ror.org/01ztwst47', 'en', 0, 'https://ror.org/01ztwst47 University of California - San Francisco School of Medicine'),
(86582, 'https://ror.org/01zvn2k69', 'en', 0, 'https://ror.org/01zvn2k69 International Social Science Council'),
(86583, 'https://ror.org/01zxd4j23', 'de', 1, 'https://ror.org/01zxd4j23 Christina Barz-Stiftung'),
(86584, 'https://ror.org/01zyrq211', 'en', 0, 'https://ror.org/01zyrq211 Providence Health and Services'),
(86585, 'https://ror.org/01zz06256', 'no_lang_code', 0, 'https://ror.org/01zz06256 Shire (Switzerland)'),
(86586, 'https://ror.org/01zza8h42', 'en', 1, 'https://ror.org/01zza8h42 ALS Recovery Fund'),
(86587, 'https://ror.org/02005ks20', 'en', 1, 'https://ror.org/02005ks20 Hemophilia Center of Western Pennsylvania'),
(86588, 'https://ror.org/0203tey58', 'nl', 1, 'https://ror.org/0203tey58 Nederlandse Vereniging voor Gastroenterologie'),
(86589, 'https://ror.org/02059cb65', 'no_lang_code', 0, 'https://ror.org/02059cb65 Cytec (United Kingdom)'),
(86590, 'https://ror.org/0208px693', 'no_lang_code', 1, 'https://ror.org/0208px693 Dacco Sci (United States)'),
(86591, 'https://ror.org/020a33943', 'no_lang_code', 1, 'https://ror.org/020a33943 Toyobo (Japan) ę±ę“‹ē“”ēø¾ę Ŗå¼ä¼šē¤¾'),
(86592, 'https://ror.org/020a42j47', 'en', 1, 'https://ror.org/020a42j47 American Macular Degeneration Foundation'),
(86593, 'https://ror.org/020bgft86', 'no_lang_code', 0, 'https://ror.org/020bgft86 Bohdan Khmelnytsky National University of Cherkasy Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(86594, 'https://ror.org/020ekrq71', 'en', 1, 'https://ror.org/020ekrq71 Kuratini Tuwhera Open Polytechnic'),
(86595, 'https://ror.org/020fr6y52', 'en', 1, 'https://ror.org/020fr6y52 Administration of Ocean and Fisheries of Guangdong Province'),
(86596, 'https://ror.org/020g3wn65', 'en', 1, 'https://ror.org/020g3wn65 ARC Centre of Excellence for Electromaterials Science'),
(86597, 'https://ror.org/020hhyq78', 'en', 1, 'https://ror.org/020hhyq78 British Renal Society'),
(86598, 'https://ror.org/020jjrx43', 'en', 1, 'https://ror.org/020jjrx43 Law and Society Association'),
(86599, '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'),
(86600, 'https://ror.org/020ktwj02', 'en', 1, 'https://ror.org/020ktwj02 African Union'),
(86601, 'https://ror.org/020mcpt63', 'en', 1, 'https://ror.org/020mcpt63 Ben May Charitable Trust'),
(86602, 'https://ror.org/020tb2413', 'en', 0, 'https://ror.org/020tb2413 Texas Epilepsy Group'),
(86603, 'https://ror.org/020tv1e09', 'no_lang_code', 1, 'https://ror.org/020tv1e09 BioLife Solutions (United States)'),
(86604, 'https://ror.org/020vv1e63', 'en', 1, 'https://ror.org/020vv1e63 Minnesota Eye Consultants'),
(86605, 'https://ror.org/020ye1821', 'no_lang_code', 1, 'https://ror.org/020ye1821 Meta (United Kingdom)'),
(86606, 'https://ror.org/0210ag428', 'nl', 1, 'https://ror.org/0210ag428 Algemene Nederlandse Vereniging ter Voorkoming van Blindheid'),
(86607, 'https://ror.org/0210rpx19', 'en', 0, 'https://ror.org/0210rpx19 Campden and Chorleywood Food Research Association');
INSERT INTO `rors` VALUES
(86608, 'https://ror.org/0211bs523', 'en', 1, 'https://ror.org/0211bs523 Haldia Institute of Technology'),
(86609, 'https://ror.org/02122at02', 'sr', 1, 'https://ror.org/02122at02 Univerzitetski Klinički Centar Srbije, Универзитетски клинички центар Š”Ń€Š±ŠøŃ˜Šµ'),
(86610, 'https://ror.org/02124dd11', 'en', 1, 'https://ror.org/02124dd11 Salahaddin University-Erbil Ų¬Ų§Ł…Ų¹Ų© صلاح Ų§Ł„ŲÆŁŠŁ†'),
(86611, 'https://ror.org/02182rz34', 'no_lang_code', 1, 'https://ror.org/02182rz34 State Power Investment Corporation (China) å›½å®¶ē”µåŠ›ęŠ•čµ„é›†å›¢'),
(86612, 'https://ror.org/0218tqp52', 'no_lang_code', 1, 'https://ror.org/0218tqp52 Institut für Umweltstudien Institute for Environmental Studies Weibel & Ness (Germany)'),
(86613, 'https://ror.org/0219bnd39', 'no_lang_code', 0, 'https://ror.org/0219bnd39 Lorillard (United States)'),
(86614, 'https://ror.org/0219dvt70', 'no_lang_code', 1, 'https://ror.org/0219dvt70 Specifica (United States)'),
(86615, 'https://ror.org/021bbn477', 'en', 1, 'https://ror.org/021bbn477 Society of Australasian Social Psychologists'),
(86616, 'https://ror.org/021cbtn85', 'en', 1, 'https://ror.org/021cbtn85 Killam Trusts'),
(86617, 'https://ror.org/021fhft25', 'en', 1, 'https://ror.org/021fhft25 Office for National Statistics Swyddfa Ystadegau Gwladol'),
(86618, 'https://ror.org/021g6tq38', 'en', 1, 'https://ror.org/021g6tq38 Kristian Gerhard Jebsen Foundation Stiftelsen Kristian Gerhard Jebsen'),
(86619, 'https://ror.org/021j5pp16', 'en', 1, 'https://ror.org/021j5pp16 Indian Institute of Rice Research'),
(86620, 'https://ror.org/021k6d838', 'no_lang_code', 1, 'https://ror.org/021k6d838 Psychogenics (United States)'),
(86621, 'https://ror.org/021nv2831', 'en', 0, 'https://ror.org/021nv2831 University of Connecticut'),
(86622, 'https://ror.org/021p5yk55', 'no_lang_code', 0, 'https://ror.org/021p5yk55 Cameron (United Kingdom)'),
(86623, 'https://ror.org/021qg3d64', 'no_lang_code', 1, 'https://ror.org/021qg3d64 Florence (Netherlands)'),
(86624, 'https://ror.org/021ty3131', 'en', 1, 'https://ror.org/021ty3131 Wuhan No.1 Hospital ę­¦ę±‰åø‚ē¬¬äø€åŒ»é™¢'),
(86625, 'https://ror.org/021vavd15', 'it', 0, 'https://ror.org/021vavd15 Ospedale San Giovanni Calibita Fatebenefratelli'),
(86626, 'https://ror.org/021xwcd05', 'en', 1, 'https://ror.org/021xwcd05 Xinyu University 新余大学'),
(86627, 'https://ror.org/021zk1532', 'en', 0, 'https://ror.org/021zk1532 Florida Cancer Specialists & Research Institute'),
(86628, 'https://ror.org/021zqhw10', 'en', 1, 'https://ror.org/021zqhw10 Townsville Hospital'),
(86629, 'https://ror.org/021zvq422', 'en', 1, 'https://ror.org/021zvq422 De Haagse Hogeschool The Hague University of Applied Sciences'),
(86630, 'https://ror.org/0221f0x36', 'no_lang_code', 1, 'https://ror.org/0221f0x36 Nanōmix (United States)'),
(86631, 'https://ror.org/0227c4549', 'nl', 1, 'https://ror.org/0227c4549 Stichting De Weijerhorst'),
(86632, 'https://ror.org/0228xk580', 'no_lang_code', 1, 'https://ror.org/0228xk580 Israel Dairy Board (Israel) ×ž×•×¢×¦×Ŗ החלב'),
(86633, 'https://ror.org/022a2kb82', 'en', 1, 'https://ror.org/022a2kb82 Korea Institute of S&T Evaluation and Planning éŸ“åœ‹ē§‘å­øęŠ€č”“ä¼åŠƒč©•åƒ¹é™¢,'),
(86634, 'https://ror.org/022b9d096', 'no', 1, 'https://ror.org/022b9d096 Bergen Kommune'),
(86635, 'https://ror.org/022bt2d08', 'en', 1, 'https://ror.org/022bt2d08 Energy Foundation'),
(86636, 'https://ror.org/022c7g962', 'no_lang_code', 1, 'https://ror.org/022c7g962 Exicure (United States)'),
(86637, 'https://ror.org/022chd503', 'en', 1, 'https://ror.org/022chd503 Dhaka National Medical College ঢাকা ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(86638, 'https://ror.org/022dvrf67', 'en', 1, 'https://ror.org/022dvrf67 Australian Respiratory Council'),
(86639, 'https://ror.org/022faa535', 'en', 1, 'https://ror.org/022faa535 Child and Family Agency of Southeastern Connecticut'),
(86640, 'https://ror.org/022gs0c53', 'es', 1, 'https://ror.org/022gs0c53 Instituto AntƔrtico Chileno'),
(86641, 'https://ror.org/022gvg072', 'en', 1, 'https://ror.org/022gvg072 State University of Medan Universitas Negeri Medan'),
(86642, 'https://ror.org/022hrs427', 'en', 1, 'https://ror.org/022hrs427 Institute for Neurodegenerative Disorders'),
(86643, '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'),
(86644, 'https://ror.org/022jefx64', 'no_lang_code', 1, 'https://ror.org/022jefx64 Ono Pharmaceutical (Japan) å°é‡Žč–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(86645, 'https://ror.org/022m05189', 'en', 0, 'https://ror.org/022m05189 United Nations Educational, Scientific and Cultural Organization'),
(86646, 'https://ror.org/022mc7478', 'en', 0, 'https://ror.org/022mc7478 St. Thomas University č–ćƒˆćƒžć‚¹å¤§å­¦'),
(86647, 'https://ror.org/022ptjf30', 'en', 0, 'https://ror.org/022ptjf30 International Center for Agricultural Research in the Dry Areas'),
(86648, 'https://ror.org/022q3vw94', 'no_lang_code', 1, 'https://ror.org/022q3vw94 The Metropolitan Opera (United States)'),
(86649, 'https://ror.org/022q96t77', 'en', 1, 'https://ror.org/022q96t77 JFE 21st Century Foundation JFE21世瓀貔団'),
(86650, 'https://ror.org/022r1q746', 'en', 1, 'https://ror.org/022r1q746 Korea Environmental Industry and Technology Institute'),
(86651, 'https://ror.org/022r2a959', 'en', 1, 'https://ror.org/022r2a959 Dayton Foundation'),
(86652, 'https://ror.org/022rdc149', 'da', 1, 'https://ror.org/022rdc149 Colitis-Crohn Foreningen'),
(86653, 'https://ror.org/022tv3h63', 'en', 1, 'https://ror.org/022tv3h63 Sarcoma Foundation of America'),
(86654, 'https://ror.org/022vq4j84', 'en', 1, 'https://ror.org/022vq4j84 West Georgia Regional Library'),
(86655, 'https://ror.org/022vrvk39', 'no_lang_code', 0, 'https://ror.org/022vrvk39 Reis Robotics (Germany)'),
(86656, 'https://ror.org/022w3f533', 'en', 1, 'https://ror.org/022w3f533 Swedish Institute'),
(86657, 'https://ror.org/022wnsy59', 'de', 1, 'https://ror.org/022wnsy59 Krebsforschung Schweiz'),
(86658, 'https://ror.org/022yhjq53', 'en', 1, 'https://ror.org/022yhjq53 Meisei University ę˜Žę˜Ÿå¤§å­¦'),
(86659, 'https://ror.org/022zknp80', 'en', 1, 'https://ror.org/022zknp80 Texas Department of State Health Services'),
(86660, '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'),
(86661, 'https://ror.org/0231n7e68', 'no_lang_code', 1, 'https://ror.org/0231n7e68 Apellis Pharmaceuticals (United States)'),
(86662, 'https://ror.org/02339jp70', 'en', 0, 'https://ror.org/02339jp70 Nair Hospital Dental College नायर दंत ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ आणि ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(86663, 'https://ror.org/0233jz243', 'no_lang_code', 1, 'https://ror.org/0233jz243 Guerbet (United States)'),
(86664, 'https://ror.org/023480b10', 'fr', 0, 'https://ror.org/023480b10 Groupe Ɖcole Polyvalente SupĆ©rieure d''Informatique & Ɖlectronique'),
(86665, 'https://ror.org/02388em19', 'no_lang_code', 1, 'https://ror.org/02388em19 Meta (Israel)'),
(86666, 'https://ror.org/0238k6k75', 'tr', 1, 'https://ror.org/0238k6k75 Bağcılar Eğitim ve Araştırma Hastanesi'),
(86667, 'https://ror.org/0238rs311', 'en', 1, 'https://ror.org/0238rs311 Transport Canada Transports Canada'),
(86668, 'https://ror.org/0238t7y73', 'no_lang_code', 0, 'https://ror.org/0238t7y73 Sustainable Innovations (United States)'),
(86669, 'https://ror.org/023afqp63', 'en', 0, 'https://ror.org/023afqp63 Research Campus Golm'),
(86670, 'https://ror.org/023annq56', 'no_lang_code', 1, 'https://ror.org/023annq56 Acceleron Pharma (United States)'),
(86671, 'https://ror.org/023bj9w84', 'en', 1, 'https://ror.org/023bj9w84 Resource Development Institute'),
(86672, 'https://ror.org/023cbka75', 'en', 1, 'https://ror.org/023cbka75 Xinjiang Academy of Agricultural Sciences ę–°ē–†å†œäøšē§‘å­¦é™¢'),
(86673, 'https://ror.org/023dmz362', 'en', 1, 'https://ror.org/023dmz362 Finnish Literature Society'),
(86674, 'https://ror.org/023e4df35', 'en', 0, 'https://ror.org/023e4df35 Brookwood Medical Center'),
(86675, 'https://ror.org/023enrs75', 'en', 0, 'https://ror.org/023enrs75 Art Institute of York - Pennsylvania'),
(86676, 'https://ror.org/023f76417', 'en', 1, 'https://ror.org/023f76417 National University of Austral Patagonia Universidad Nacional de la Patagonia Austral'),
(86677, 'https://ror.org/023hf9v24', 'en', 1, 'https://ror.org/023hf9v24 Daphne Jackson Trust'),
(86678, 'https://ror.org/023jbpn78', 'en', 1, 'https://ror.org/023jbpn78 Grain Research Centre'),
(86679, 'https://ror.org/023jta124', 'en', 1, 'https://ror.org/023jta124 Norwegian Environment Agency'),
(86680, 'https://ror.org/023ka9926', 'no_lang_code', 1, 'https://ror.org/023ka9926 Progenics Pharmaceuticals (United States)'),
(86681, 'https://ror.org/023narr07', 'no_lang_code', 0, 'https://ror.org/023narr07 Princeton Technology Corporation (United States)'),
(86682, 'https://ror.org/023pys871', 'en', 1, 'https://ror.org/023pys871 The Winnipeg Foundation'),
(86683, 'https://ror.org/023s8ys65', 'en', 1, 'https://ror.org/023s8ys65 National Water and Sewerage Corporation'),
(86684, 'https://ror.org/023tfyg79', 'en', 1, 'https://ror.org/023tfyg79 Grain Farmers of Ontario'),
(86685, 'https://ror.org/023tzw928', 'es', 1, 'https://ror.org/023tzw928 Universidad del Golfo de MƩxico'),
(86686, 'https://ror.org/023y94y35', 'no_lang_code', 1, 'https://ror.org/023y94y35 Sabre (United States)'),
(86687, 'https://ror.org/023z3dm33', 'en', 1, 'https://ror.org/023z3dm33 State Scholarships Foundation'),
(86688, 'https://ror.org/024022n41', 'no_lang_code', 0, 'https://ror.org/024022n41 American Science and Engineering (United States)'),
(86689, 'https://ror.org/02403qw73', 'en', 1, 'https://ror.org/02403qw73 Nanjing Hydraulic Research Institute ę°“åˆ©éƒØäŗ¤é€ščæč¾“éƒØå›½å®¶čƒ½ęŗå±€å—äŗ¬ę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(86690, 'https://ror.org/0240g3n05', 'en', 0, 'https://ror.org/0240g3n05 Foundation for Scientific and Industrial Research'),
(86691, 'https://ror.org/02427qx15', 'en', 1, 'https://ror.org/02427qx15 International Society of Arthroscopy, Knee Surgery and Orthopaedic Sports Medicine'),
(86692, 'https://ror.org/0243m8266', 'en', 1, 'https://ror.org/0243m8266 Mind and Life Institute'),
(86693, 'https://ror.org/0246mbd04', 'fr', 1, 'https://ror.org/0246mbd04 Centre Hospitalier Sud Francilien'),
(86694, 'https://ror.org/0247ay475', 'en', 1, 'https://ror.org/0247ay475 Central Denmark Region Region Midtjylland'),
(86695, 'https://ror.org/024850w61', 'no_lang_code', 0, 'https://ror.org/024850w61 Alcatel-Lucent (France)'),
(86696, 'https://ror.org/0249s5d29', 'en', 1, 'https://ror.org/0249s5d29 West of Scotland Regional Equality Council'),
(86697, 'https://ror.org/0249yv056', 'en', 1, 'https://ror.org/0249yv056 Joseph William Gottstein Memorial Trust'),
(86698, 'https://ror.org/024atcf19', 'en', 0, 'https://ror.org/024atcf19 UCL Australia'),
(86699, 'https://ror.org/024esq841', 'en', 1, 'https://ror.org/024esq841 Innopharma Education'),
(86700, 'https://ror.org/024ew1n76', 'en', 1, 'https://ror.org/024ew1n76 Richmond, The American International University in London'),
(86701, 'https://ror.org/024f3s581', 'en', 1, 'https://ror.org/024f3s581 Marcus and Amalia Wallenberg Foundation'),
(86702, 'https://ror.org/024h8a058', 'no_lang_code', 0, 'https://ror.org/024h8a058 AO (Germany)'),
(86703, 'https://ror.org/024j9sx72', 'en', 0, 'https://ror.org/024j9sx72 Galway-Mayo Institute of Technology InstitiĆŗid TeicneolaĆ­ochta na Gaillimhe-Maigh Eo'),
(86704, 'https://ror.org/024nsea16', 'no_lang_code', 1, 'https://ror.org/024nsea16 Electro Medical Systems (Switzerland)'),
(86705, 'https://ror.org/024q4z275', 'no_lang_code', 1, 'https://ror.org/024q4z275 PopTech'),
(86706, 'https://ror.org/024sg1d19', 'en', 1, 'https://ror.org/024sg1d19 Great Lakes Protection Fund'),
(86707, 'https://ror.org/024t5tt95', 'en', 1, 'https://ror.org/024t5tt95 Korea Institute of Ceramic Engineering and Technology'),
(86708, 'https://ror.org/024tt5x58', 'en', 1, 'https://ror.org/024tt5x58 Bay Area Environmental Research Institute'),
(86709, 'https://ror.org/024whdm10', 'en', 1, 'https://ror.org/024whdm10 Edinburgh & Lothians Health Foundation'),
(86710, 'https://ror.org/024yfzm72', 'en', 1, 'https://ror.org/024yfzm72 National University of Jujuy Universidad Nacional de Jujuy'),
(86711, 'https://ror.org/024z2zn95', 'en', 1, 'https://ror.org/024z2zn95 Hong Kong Anti-Cancer Society'),
(86712, 'https://ror.org/024za3n32', 'pl', 0, 'https://ror.org/024za3n32 Instytut Biotechnologii i Antybiotyków'),
(86713, 'https://ror.org/0251nbz82', 'de', 1, 'https://ror.org/0251nbz82 Bayerisches Staatsministerium für Ernährung, Landwirtschaft und Forsten'),
(86714, 'https://ror.org/0252btq49', 'en', 1, 'https://ror.org/0252btq49 Dutch CAA Foundation'),
(86715, 'https://ror.org/02530bn33', 'en', 1, 'https://ror.org/02530bn33 National Academy of Education'),
(86716, 'https://ror.org/0254sa076', 'en', 1, 'https://ror.org/0254sa076 Iqra National University اقراؔ Ł†ŪŒŲ“Ł†Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(86717, 'https://ror.org/02571vb36', 'no_lang_code', 1, 'https://ror.org/02571vb36 Levi Strauss (United States)'),
(86718, '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'),
(86719, 'https://ror.org/0258gsg68', 'no_lang_code', 0, 'https://ror.org/0258gsg68 Shire (France)'),
(86720, 'https://ror.org/02599rs64', 'en', 1, 'https://ror.org/02599rs64 The Institute of Moralogy ćƒ¢ćƒ©ćƒ­ć‚øćƒ¼ē ”ē©¶ę‰€'),
(86721, 'https://ror.org/025bx1864', 'en', 0, 'https://ror.org/025bx1864 United Nations Population Fund'),
(86722, 'https://ror.org/025cj6e44', 'en', 1, 'https://ror.org/025cj6e44 Poznan Supercomputing and Networking Center'),
(86723, 'https://ror.org/025ck6r46', 'en', 1, 'https://ror.org/025ck6r46 Melanoma Research Alliance'),
(86724, 'https://ror.org/025dqz810', 'fr', 0, 'https://ror.org/025dqz810 HƓpital des Cadolles'),
(86725, 'https://ror.org/025edj240', 'no_lang_code', 1, 'https://ror.org/025edj240 Guiyang University č“µé˜³å­¦é™¢'),
(86726, 'https://ror.org/025g67p47', 'no_lang_code', 0, 'https://ror.org/025g67p47 Primity (United States)'),
(86727, 'https://ror.org/025gq5q04', 'en', 1, 'https://ror.org/025gq5q04 Institute of Urban Environment äø­å›½ē§‘å­¦é™¢åŸŽåø‚ēŽÆå¢ƒē ”ē©¶ę‰€'),
(86728, 'https://ror.org/025gxrt12', 'es', 1, 'https://ror.org/025gxrt12 Instituto de Investigación Marqués de Valdecilla'),
(86729, 'https://ror.org/025j82f41', 'no_lang_code', 0, 'https://ror.org/025j82f41 JDSU (Canada)'),
(86730, 'https://ror.org/025kprq56', 'en', 1, 'https://ror.org/025kprq56 Harold Hyam Wingate Foundation'),
(86731, 'https://ror.org/025n38288', 'en', 1, 'https://ror.org/025n38288 University Hospitals Coventry and Warwickshire NHS Trust'),
(86732, 'https://ror.org/025qtp564', 'en', 1, 'https://ror.org/025qtp564 National Institute of Pharmaceutical Education and Research'),
(86733, 'https://ror.org/025vr9a91', 'en', 1, 'https://ror.org/025vr9a91 Coastal Education and Research Foundation'),
(86734, 'https://ror.org/025vt1p14', 'en', 1, 'https://ror.org/025vt1p14 Oregon Lions Sight & Hearing Foundation'),
(86735, 'https://ror.org/025vwbe15', 'no_lang_code', 0, 'https://ror.org/025vwbe15 Rockwell Collins (United States)'),
(86736, 'https://ror.org/025w6c475', 'en', 1, 'https://ror.org/025w6c475 Seattle Foundation'),
(86737, 'https://ror.org/025wqj346', 'en', 1, 'https://ror.org/025wqj346 Santa Barbara and Ventura Colleges of Law'),
(86738, 'https://ror.org/025z7mw11', 'en', 1, 'https://ror.org/025z7mw11 International Society on Aging and Disease'),
(86739, 'https://ror.org/025zbpk71', 'en', 1, 'https://ror.org/025zbpk71 Jaamacada Muqdisho Mogadishu University Ų¬Ų§Ł…Ų¹Ų© Ł…Ł‚ŲÆŁŠŲ“Łˆ'),
(86740, 'https://ror.org/025zjjr82', 'no_lang_code', 1, 'https://ror.org/025zjjr82 Sandpiper Technologies (United States)'),
(86741, 'https://ror.org/02601yx74', 'en', 1, 'https://ror.org/02601yx74 Beijing National Laboratory for Molecular Sciences åŒ—äŗ¬åˆ†å­ē§‘å­¦å›½å®¶å®žéŖŒå®¤'),
(86742, 'https://ror.org/0260anr77', 'en', 0, 'https://ror.org/0260anr77 Western Michigan University Homer Stryker M.D. School of Medicine'),
(86743, 'https://ror.org/0260feh57', 'en', 1, 'https://ror.org/0260feh57 Clinks (United Kingdom)'),
(86744, 'https://ror.org/02615b809', 'no_lang_code', 0, 'https://ror.org/02615b809 Intelligent Bio-Systems (United States)'),
(86745, 'https://ror.org/0261fbt81', 'no_lang_code', 0, 'https://ror.org/0261fbt81 Fugro (United Kingdom)'),
(86746, 'https://ror.org/0261qja04', 'pt', 1, 'https://ror.org/0261qja04 Universidade Estadual do Norte do ParanĆ”'),
(86747, 'https://ror.org/0267sz241', 'en', 1, 'https://ror.org/0267sz241 Bill of Rights Institute'),
(86748, 'https://ror.org/02684h094', 'en', 1, 'https://ror.org/02684h094 Institute for Health Metrics and Evaluation'),
(86749, 'https://ror.org/02698kt06', 'pt', 1, 'https://ror.org/02698kt06 Faculdades Oswaldo Cruz'),
(86750, 'https://ror.org/0269ncv24', 'en', 0, 'https://ror.org/0269ncv24 InstitiĆŗid TeicneolaĆ­ochta Luimneach Limerick Institute of Technology'),
(86751, 'https://ror.org/026axqv54', 'en', 1, 'https://ror.org/026axqv54 Nanjing Drum Tower Hospital'),
(86752, 'https://ror.org/026dbgg54', 'ro', 0, 'https://ror.org/026dbgg54 Radio România Cluj'),
(86753, 'https://ror.org/026dnzb16', 'no_lang_code', 1, 'https://ror.org/026dnzb16 AFC Technologies (Israel)'),
(86754, 'https://ror.org/026g6m108', 'no', 1, 'https://ror.org/026g6m108 Ski kommune'),
(86755, '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'),
(86756, 'https://ror.org/026hk5s03', 'en', 1, 'https://ror.org/026hk5s03 Astronomical Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗ ę—„ęœ¬å¤©ę–‡å­¦ä¼š'),
(86757, 'https://ror.org/026hpxe59', 'en', 1, 'https://ror.org/026hpxe59 Filamer Christian University'),
(86758, 'https://ror.org/026mwcd11', 'en', 0, 'https://ror.org/026mwcd11 Squibb Institute for Medical Research'),
(86759, 'https://ror.org/026pjkt58', 'no_lang_code', 0, 'https://ror.org/026pjkt58 JPK Instruments (Germany)'),
(86760, 'https://ror.org/026r21296', 'en', 0, 'https://ror.org/026r21296 United Nations Population Fund'),
(86761, 'https://ror.org/026rw3q91', 'en', 1, 'https://ror.org/026rw3q91 National Atmospheric Research Laboratory'),
(86762, 'https://ror.org/026t2bs48', 'no_lang_code', 1, 'https://ror.org/026t2bs48 LKC Technologies (United States)'),
(86763, 'https://ror.org/026tem613', 'en', 1, 'https://ror.org/026tem613 Lyrasis'),
(86764, 'https://ror.org/026vtd268', 'en', 1, 'https://ror.org/026vtd268 Maulana Azad National Institute of Technology'),
(86765, 'https://ror.org/026y2cn83', 'de', 1, 'https://ror.org/026y2cn83 Ministerium für Wirtschaft, Innovation, Digitalisierung und Energie des Landes Nordrhein-Westfalen'),
(86766, 'https://ror.org/026zgc260', 'en', 0, 'https://ror.org/026zgc260 North Cumbria University Hospitals NHS Trust'),
(86767, 'https://ror.org/026zmgd62', 'en', 1, 'https://ror.org/026zmgd62 Navsari Agricultural University ąŖ•ą«ƒąŖ·ąŖæ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, નવસારી నవసరి ą°µą±ą°Æą°µą°øą°¾ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°‚'),
(86768, 'https://ror.org/0270bqq96', 'nl', 1, 'https://ror.org/0270bqq96 SBOH'),
(86769, 'https://ror.org/0272pb807', 'en', 0, 'https://ror.org/0272pb807 Edgware Community Hospital'),
(86770, 'https://ror.org/027385r44', 'en', 1, 'https://ror.org/027385r44 East China University of Technology äøœåŽē†å·„å¤§å­¦'),
(86771, 'https://ror.org/0276bwh55', 'en', 1, 'https://ror.org/0276bwh55 Eastern and Southern African Management Institute'),
(86772, 'https://ror.org/027786x52', 'en', 1, 'https://ror.org/027786x52 Forestry Research Institute of Ghana'),
(86773, 'https://ror.org/0279ehd23', 'en', 1, 'https://ror.org/0279ehd23 Chongqing Vocational Institute of Engineering é‡åŗ†å·„ēØ‹čŒäøšęŠ€ęœÆå­¦é™¢'),
(86774, 'https://ror.org/027agqe47', 'no_lang_code', 1, 'https://ror.org/027agqe47 Pristop (Slovenia)'),
(86775, 'https://ror.org/027ahry32', 'en', 1, 'https://ror.org/027ahry32 International Society for Autism Research'),
(86776, 'https://ror.org/027bpvr73', 'sv', 1, 'https://ror.org/027bpvr73 Riksfƶrbundet Cystisk Fibros'),
(86777, 'https://ror.org/027c1kk44', 'en', 0, 'https://ror.org/027c1kk44 Kharkov State Zooveterinary Academy'),
(86778, 'https://ror.org/027fn9x30', 'en', 1, 'https://ror.org/027fn9x30 Polar Research Institute of China äø­å›½ęžåœ°ē ”ē©¶äø­åæƒ'),
(86779, 'https://ror.org/027g0ys27', 'no_lang_code', 1, 'https://ror.org/027g0ys27 Evince Technology (United Kingdom)'),
(86780, 'https://ror.org/027g1r322', 'no_lang_code', 1, 'https://ror.org/027g1r322 Innocrin Pharmaceuticals (United States)'),
(86781, 'https://ror.org/027g2ne18', 'no_lang_code', 1, 'https://ror.org/027g2ne18 Abasaheb Garware College ą¤†ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤—ą¤°ą¤µą¤¾ą¤°ą„‡ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(86782, 'https://ror.org/027hd7646', 'en', 1, 'https://ror.org/027hd7646 International Society for Computer Aided Surgery'),
(86783, 'https://ror.org/027hh4w08', 'pt', 1, 'https://ror.org/027hh4w08 Santa Casa de Misericórdia de Passos'),
(86784, 'https://ror.org/027jgnd92', 'en', 0, 'https://ror.org/027jgnd92 RIKEN Quantitative Biology Center'),
(86785, 'https://ror.org/027n5mm74', 'en', 1, 'https://ror.org/027n5mm74 Dr Emilio B Espinosa Sr Memorial State College of Agriculture and Technology'),
(86786, 'https://ror.org/027p4qx72', 'en', 0, 'https://ror.org/027p4qx72 Indonesian National Institute of Aeronautics and Space Lembaga Penerbangan dan Antariksa Nasional'),
(86787, 'https://ror.org/027pq4845', 'en', 1, 'https://ror.org/027pq4845 Cheju Halla General Hospital ģ œģ£¼ķ•œė¼ė³‘ģ›'),
(86788, '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'),
(86789, 'https://ror.org/027qzq010', 'no_lang_code', 0, 'https://ror.org/027qzq010 Sogeti (France)'),
(86790, 'https://ror.org/027v6rz13', 'en', 1, 'https://ror.org/027v6rz13 Global Foundation for Eating Disorders'),
(86791, 'https://ror.org/027yrjm02', 'en', 1, 'https://ror.org/027yrjm02 BIOCAP Canada Foundation'),
(86792, 'https://ror.org/027zr9y17', 'en', 1, 'https://ror.org/027zr9y17 Management and Science University'),
(86793, 'https://ror.org/0281s4b15', 'da', 1, 'https://ror.org/0281s4b15 Bloddonorerne i Danmark Danish Blood Donor Association'),
(86794, 'https://ror.org/0282vem19', 'en', 1, 'https://ror.org/0282vem19 Women and Memory Forum Ł…Ų¤Ų³Ų³Ų© المرأة ŁˆŲ§Ł„Ų°Ų§ŁƒŲ±Ų©'),
(86795, 'https://ror.org/0282ypk29', 'en', 1, 'https://ror.org/0282ypk29 Childhood Arthritis and RheumatolĀ­ogy Research Alliance'),
(86796, 'https://ror.org/0283g3v77', 'en', 1, 'https://ror.org/0283g3v77 Qom Islamic Azad University دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ قم'),
(86797, 'https://ror.org/02856yd31', 'en', 1, 'https://ror.org/02856yd31 Yorkshire Forward'),
(86798, 'https://ror.org/02884dc18', 'en', 1, 'https://ror.org/02884dc18 Council of American Overseas Research Centers'),
(86799, 'https://ror.org/028885271', 'en', 1, 'https://ror.org/028885271 Kyoto Technoscience Center å…¬ē›Šč²”å›£ę³•äŗŗ äŗ¬éƒ½ęŠ€č”“ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(86800, 'https://ror.org/02888mx05', 'es', 1, 'https://ror.org/02888mx05 Fundación CajaCanarias'),
(86801, 'https://ror.org/0289s0476', 'en', 1, 'https://ror.org/0289s0476 Woolf Fisher Trust'),
(86802, 'https://ror.org/028ahgk39', 'en', 1, 'https://ror.org/028ahgk39 SƔmi University of Applied Sciences SƔmi allaskuvla'),
(86803, 'https://ror.org/028c4g079', 'en', 1, 'https://ror.org/028c4g079 New Zealand Association of Counsellors Te Ropu Kaiwhiriwhiri o Aotearoa)'),
(86804, 'https://ror.org/028c4z094', 'es', 1, 'https://ror.org/028c4z094 Fundación Carolina'),
(86805, 'https://ror.org/028cdc266', 'en', 1, 'https://ror.org/028cdc266 ARC Centre of Excellence for Coral Reef Studies'),
(86806, 'https://ror.org/028ddsd03', 'no_lang_code', 0, 'https://ror.org/028ddsd03 Urs Dames & Moore S.R.L.'),
(86807, 'https://ror.org/028dt5z54', 'no_lang_code', 0, 'https://ror.org/028dt5z54 Computer Sciences Corporation (Belgium)'),
(86808, 'https://ror.org/028dy4662', 'no_lang_code', 0, 'https://ror.org/028dy4662 Shire (United States)'),
(86809, 'https://ror.org/028ebs129', 'no_lang_code', 1, 'https://ror.org/028ebs129 Sempra Praha (Czechia)'),
(86810, 'https://ror.org/028f3st43', 'de', 1, 'https://ror.org/028f3st43 Rostocker Institut für Sozialforschung und gesellschaftliche Praxis e.V.'),
(86811, 'https://ror.org/028gkfr23', 'no_lang_code', 1, 'https://ror.org/028gkfr23 Kissei Pharmaceutical (Japan) ć‚­ćƒƒć‚»ć‚¤č–¬å“å·„ę„­'),
(86812, 'https://ror.org/028h0pd91', 'en', 1, 'https://ror.org/028h0pd91 University of Information Technology and Communications'),
(86813, 'https://ror.org/028hk1v54', 'en', 1, 'https://ror.org/028hk1v54 Granulosa Cell Tumor of the Ovary Foundation'),
(86814, 'https://ror.org/028j6em17', 'en', 1, 'https://ror.org/028j6em17 Royal Economic Society'),
(86815, 'https://ror.org/028jkr018', 'da', 1, 'https://ror.org/028jkr018 Nordisk Institut for Kiropraktik og Klinisk Biomekanik'),
(86816, 'https://ror.org/028jnma48', 'en', 1, 'https://ror.org/028jnma48 Metakids'),
(86817, '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'),
(86818, 'https://ror.org/028p1nc07', 'en', 0, 'https://ror.org/028p1nc07 University of Michigan Medical School'),
(86819, 'https://ror.org/028pbhy75', 'en', 1, 'https://ror.org/028pbhy75 Graduate Institute for Entrepreneurial Studies 事愭創造大学院大学'),
(86820, 'https://ror.org/028q01336', 'en', 1, 'https://ror.org/028q01336 Strategic Management Society'),
(86821, 'https://ror.org/028rzxs74', 'no_lang_code', 0, 'https://ror.org/028rzxs74 Mylan (United Kingdom)'),
(86822, 'https://ror.org/028tfmf79', 'en', 1, 'https://ror.org/028tfmf79 British Association of Dermatologists'),
(86823, 'https://ror.org/028vg3q27', 'en', 1, 'https://ror.org/028vg3q27 Maudsley Charity'),
(86824, 'https://ror.org/028yz2737', 'en', 1, 'https://ror.org/028yz2737 Lishui City People''s Hospital'),
(86825, 'https://ror.org/028z8cb32', 'no_lang_code', 0, 'https://ror.org/028z8cb32 Biocatalytics, Inc.'),
(86826, 'https://ror.org/028zryx23', 'en', 1, 'https://ror.org/028zryx23 Institute of Legal Practice and Development'),
(86827, 'https://ror.org/0292ym357', 'en', 0, 'https://ror.org/0292ym357 Association of Super-Advanced Electronics ęŠ€č”“ē ”ē©¶ēµ„åˆ č¶…å…ˆē«Æé›»å­ęŠ€č”“é–‹ē™ŗę©Ÿę§‹'),
(86828, 'https://ror.org/0294che38', 'nl', 1, 'https://ror.org/0294che38 Stichting Coolsingel'),
(86829, 'https://ror.org/0299fsa36', 'en', 1, 'https://ror.org/0299fsa36 Korea Breast Cancer Foundation ķ•œźµ­ģœ ė°©ź±“ź°•ģž¬ė‹Ø'),
(86830, 'https://ror.org/0299hgx34', 'en', 1, 'https://ror.org/0299hgx34 London Borough of Camden'),
(86831, 'https://ror.org/029a2gx93', 'en', 1, 'https://ror.org/029a2gx93 International Society for Research in Human Milk and Lactation'),
(86832, 'https://ror.org/029btg905', 'no_lang_code', 0, 'https://ror.org/029btg905 General Cable (Germany)'),
(86833, 'https://ror.org/029d45z11', 'es', 1, 'https://ror.org/029d45z11 ClĆ­nica Somer'),
(86834, 'https://ror.org/029dswp54', 'en', 1, 'https://ror.org/029dswp54 Central Land Council'),
(86835, 'https://ror.org/029f9qw15', 'no', 1, 'https://ror.org/029f9qw15 Rehabiliteringssenteret Nord-Norges Kurbad'),
(86836, 'https://ror.org/029gjyp91', 'en', 1, 'https://ror.org/029gjyp91 Offshore Energy Research Association of Nova Scotia'),
(86837, 'https://ror.org/029gt5q28', 'no_lang_code', 1, 'https://ror.org/029gt5q28 Calithera (United States)'),
(86838, 'https://ror.org/029hv3472', 'en', 1, 'https://ror.org/029hv3472 American Glaucoma Society'),
(86839, 'https://ror.org/029jhne85', 'no_lang_code', 0, 'https://ror.org/029jhne85 MSD Animal Health (Norway)'),
(86840, 'https://ror.org/029jmm319', 'no_lang_code', 1, 'https://ror.org/029jmm319 SEAKR Engineering (United States)'),
(86841, 'https://ror.org/029man787', 'en', 1, 'https://ror.org/029man787 Luoyang Normal University ę“›é˜³åøˆčŒƒå­¦é™¢'),
(86842, 'https://ror.org/029mfr659', 'no_lang_code', 1, 'https://ror.org/029mfr659 Dairy Farmers of Ontario'),
(86843, 'https://ror.org/029p3kk30', 'en', 1, 'https://ror.org/029p3kk30 Louisiana Christian University'),
(86844, 'https://ror.org/029pwdz12', 'en', 1, 'https://ror.org/029pwdz12 Barrow Cadbury Trust'),
(86845, 'https://ror.org/029qzyn15', 'en', 1, 'https://ror.org/029qzyn15 Trichy SRM Medical College Hospital and Research Centre ą®¤ą®æą®°ąÆą®šąÆą®šą®æ ą®Žą®øąÆą®†ą®°ąÆą®Žą®®ąÆ ą®®ąÆ†ą®Ÿą®æą®•ąÆą®•ą®²ąÆ ą®•ą®¾ą®²ąÆ‡ą®œąÆ ą®¹ą®¾ą®øąÆą®Ŗą®æą®Ÿą®²ąÆ & ą®°ą®æą®šą®°ąÆą®šąÆ ą®šąÆ†ą®©ąÆą®Ÿą®°ąÆ'),
(86846, 'https://ror.org/029rt7q74', 'en', 1, 'https://ror.org/029rt7q74 Islamic Azad University of Nishapur دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł†ŪŒŲ“Ų§ŲØŁˆŲ±'),
(86847, 'https://ror.org/029tnqt29', 'fr', 1, 'https://ror.org/029tnqt29 University of Moncton UniversitƩ de Moncton'),
(86848, 'https://ror.org/029vq7597', 'en', 0, 'https://ror.org/029vq7597 Enterprise Cape Breton Corporation'),
(86849, 'https://ror.org/02a1x2t60', 'en', 1, 'https://ror.org/02a1x2t60 Northshore Psychological Associates'),
(86850, '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'),
(86851, 'https://ror.org/02a5t5746', 'no_lang_code', 1, 'https://ror.org/02a5t5746 Emera (Canada)'),
(86852, 'https://ror.org/02a7qmj40', 'en', 1, 'https://ror.org/02a7qmj40 Osteoporosis Canada'),
(86853, 'https://ror.org/02a8qtz61', 'no_lang_code', 1, 'https://ror.org/02a8qtz61 Montimage (France)'),
(86854, 'https://ror.org/02a8yh854', 'da', 0, 'https://ror.org/02a8yh854 Sygehus Vendsyssel'),
(86855, 'https://ror.org/02ac14420', 'no_lang_code', 1, 'https://ror.org/02ac14420 Dermira (United States)'),
(86856, 'https://ror.org/02adwf864', 'no_lang_code', 0, 'https://ror.org/02adwf864 The Italian Ship Research Centre'),
(86857, 'https://ror.org/02aej5879', 'en', 0, 'https://ror.org/02aej5879 University of Pennsylvania Museum of Archaeology and Anthropology'),
(86858, 'https://ror.org/02ag8cq23', 'fi', 0, 'https://ror.org/02ag8cq23 Tekes'),
(86859, 'https://ror.org/02agbxf63', 'en', 0, 'https://ror.org/02agbxf63 Astronomical Association'),
(86860, 'https://ror.org/02ah7nn60', 'no_lang_code', 0, 'https://ror.org/02ah7nn60 Dynamet Technology (United States)'),
(86861, 'https://ror.org/02ahnr186', 'en', 0, 'https://ror.org/02ahnr186 Sapporo Otani Junior College 札幌大谷大学短期大学部'),
(86862, 'https://ror.org/02ahscd69', 'no_lang_code', 0, 'https://ror.org/02ahscd69 SGL Group (Germany)'),
(86863, 'https://ror.org/02aj61m65', 'no_lang_code', 1, 'https://ror.org/02aj61m65 Medichem (Spain)'),
(86864, 'https://ror.org/02aj8qz21', 'en', 1, 'https://ror.org/02aj8qz21 Fujian Academy of Agricultural Sciences'),
(86865, 'https://ror.org/02aj9j626', 'en', 1, 'https://ror.org/02aj9j626 Foundation for Neurologic Diseases'),
(86866, 'https://ror.org/02ap3s657', 'en', 1, 'https://ror.org/02ap3s657 Stupski Foundation'),
(86867, 'https://ror.org/02apq7b82', 'en', 1, 'https://ror.org/02apq7b82 National Museum of Marine Biology and Aquarium'),
(86868, 'https://ror.org/02asjkw45', 'en', 0, 'https://ror.org/02asjkw45 MATI-Russian State Technological University'),
(86869, 'https://ror.org/02asztc31', 'en', 1, 'https://ror.org/02asztc31 Australian Film, Television and Radio School'),
(86870, 'https://ror.org/02awacs50', 'no_lang_code', 0, 'https://ror.org/02awacs50 Holcim (Switzerland)'),
(86871, 'https://ror.org/02awhq166', 'en', 1, 'https://ror.org/02awhq166 Judicial Council of California'),
(86872, 'https://ror.org/02axfcj91', 'no_lang_code', 1, 'https://ror.org/02axfcj91 Desitin Arzneimittel (Germany)'),
(86873, 'https://ror.org/02axrxp93', 'en', 1, 'https://ror.org/02axrxp93 Utah Academy of Sciences and Arts and Letters'),
(86874, 'https://ror.org/02axzdf31', 'en', 1, 'https://ror.org/02axzdf31 American Center for Mongolian Studies'),
(86875, 'https://ror.org/02ay6fd69', 'en', 0, 'https://ror.org/02ay6fd69 Academia de Muzică Gheorghe Dima Gheorghe Dima Music Academy'),
(86876, 'https://ror.org/02az3ec29', 'en', 0, 'https://ror.org/02az3ec29 Velikolukskaya State Agricultural Academy Š’ŠµŠ»ŠøŠŗŠ¾Š»ŃƒŠŗŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(86877, 'https://ror.org/02az7s592', 'no_lang_code', 0, 'https://ror.org/02az7s592 Sand9 (United States)'),
(86878, 'https://ror.org/02b0qwc58', 'no_lang_code', 1, 'https://ror.org/02b0qwc58 Circle Cardiovascular Imaging'),
(86879, 'https://ror.org/02b0vny28', 'en', 1, 'https://ror.org/02b0vny28 Geoffrey Beene Foundation'),
(86880, 'https://ror.org/02b1aeg58', 'en', 0, 'https://ror.org/02b1aeg58 Research for Better Schools'),
(86881, 'https://ror.org/02b1bn727', 'en', 1, 'https://ror.org/02b1bn727 Chittaranjan National Cancer Institute'),
(86882, 'https://ror.org/02b26z922', 'no_lang_code', 1, 'https://ror.org/02b26z922 Patrys (Australia)'),
(86883, 'https://ror.org/02b3e2815', 'en', 1, 'https://ror.org/02b3e2815 Kitasato University Hospital åŒ—é‡Œå¤§å­¦ē—…é™¢'),
(86884, 'https://ror.org/02b4haj46', 'en', 0, 'https://ror.org/02b4haj46 University of Louisville Foundation'),
(86885, 'https://ror.org/02b52th27', 'en', 1, 'https://ror.org/02b52th27 Federal Urdu University ŁˆŁŲ§Ł‚ŪŒ Ų¬Ų§Ł…Ų¹Ū‚ اردو'),
(86886, 'https://ror.org/02b9jjd80', 'en', 1, 'https://ror.org/02b9jjd80 Opportunity Alliance'),
(86887, 'https://ror.org/02b9t1940', 'no_lang_code', 1, 'https://ror.org/02b9t1940 Graco (United States)'),
(86888, 'https://ror.org/02bbved84', 'en', 0, 'https://ror.org/02bbved84 wanage Community Hospital'),
(86889, 'https://ror.org/02bf6br77', 'en', 1, 'https://ror.org/02bf6br77 Lahore College for Women University Ł„Ų§ŪŁˆŲ± کالج ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(86890, 'https://ror.org/02bf8p515', 'pt', 1, 'https://ror.org/02bf8p515 Fundação de Desenvolvimento de Tecnópolis'),
(86891, 'https://ror.org/02bfh2q35', 'no_lang_code', 1, 'https://ror.org/02bfh2q35 Analysys Mason (United Kingdom)'),
(86892, 'https://ror.org/02bgrmk52', 'en', 0, 'https://ror.org/02bgrmk52 Libertas Business School'),
(86893, 'https://ror.org/02bj0at40', 'en', 0, 'https://ror.org/02bj0at40 General Jerzy Ziętek Silesian School of Management'),
(86894, 'https://ror.org/02bjs0p66', 'en', 1, 'https://ror.org/02bjs0p66 Changhai Hospital'),
(86895, 'https://ror.org/02bkgrs41', 'no_lang_code', 0, 'https://ror.org/02bkgrs41 5T (Italy)'),
(86896, 'https://ror.org/02bkgy413', 'no_lang_code', 1, 'https://ror.org/02bkgy413 Relay Therapeutics (United States)'),
(86897, 'https://ror.org/02bkp9390', 'en', 1, 'https://ror.org/02bkp9390 South African Veterinary Foundation Suid-Afrikaanse Veterinere Stigting'),
(86898, 'https://ror.org/02bkvsd42', 'en', 1, 'https://ror.org/02bkvsd42 Moscow State Institute of Music named after A.G. Schnittke Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(86899, 'https://ror.org/02bkxyz57', 'en', 1, 'https://ror.org/02bkxyz57 Schmidt Ocean Institute'),
(86900, 'https://ror.org/02bmvm421', 'fr', 0, 'https://ror.org/02bmvm421 Laboratoire de Photonique et de Nanostructures Laboratory for Photonics and Nanostructures'),
(86901, 'https://ror.org/02bn3v102', 'en', 1, 'https://ror.org/02bn3v102 GW Medical Faculty Associates'),
(86902, 'https://ror.org/02bn4n710', 'en', 1, 'https://ror.org/02bn4n710 Society for Underwater Technology'),
(86903, 'https://ror.org/02bpap860', 'en', 1, 'https://ror.org/02bpap860 State Key Laboratory of Information Engineering in Surveying Mapping and Remote Sensing'),
(86904, 'https://ror.org/02bpwh655', 'no_lang_code', 0, 'https://ror.org/02bpwh655 Patriot (Czechia)'),
(86905, 'https://ror.org/02bq4xp81', 'en', 1, 'https://ror.org/02bq4xp81 Turing Foundation'),
(86906, 'https://ror.org/02bq60y92', 'en', 1, 'https://ror.org/02bq60y92 Islamic Azad University of Zanjan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد زنجان'),
(86907, 'https://ror.org/02bqs1209', 'es', 1, 'https://ror.org/02bqs1209 Fundación Seimc-Gesida'),
(86908, 'https://ror.org/02btfvn14', 'en', 0, 'https://ror.org/02btfvn14 Vologda State Pedagogical University'),
(86909, 'https://ror.org/02bv2z495', 'en', 1, 'https://ror.org/02bv2z495 Dr. Y.S.R Horticultural University ą°†ą°‚ą°§ą±ą°°ą°Ŗą±ą°°ą°¦ą±‡ą°¶ą± ą°‰ą°¦ą±ą°Æą°¾ą°Øą°µą°Ø ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(86910, 'https://ror.org/02bvbqy06', 'en', 1, 'https://ror.org/02bvbqy06 British Infection Association'),
(86911, 'https://ror.org/02bx95b89', 'en', 1, 'https://ror.org/02bx95b89 National Training Foundation'),
(86912, 'https://ror.org/02bxrrf91', 'en', 1, 'https://ror.org/02bxrrf91 Rufford Foundation'),
(86913, 'https://ror.org/02bxsr265', 'no_lang_code', 1, 'https://ror.org/02bxsr265 Cleveland BioLabs (United States)'),
(86914, 'https://ror.org/02byc4a47', 'en', 0, 'https://ror.org/02byc4a47 Lahden ammattikorkeakoulu Lahti University of Applied Sciences'),
(86915, 'https://ror.org/02bykax26', 'en', 1, 'https://ror.org/02bykax26 Geological Survey of Iran'),
(86916, 'https://ror.org/02bzfxf13', 'en', 1, 'https://ror.org/02bzfxf13 Debre Tabor University į‹Øį‹°į‰„įˆØ į‰³į‰¦įˆ­ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(86917, 'https://ror.org/02bzp3s84', 'de', 1, 'https://ror.org/02bzp3s84 Deutsche Stiftung Sklerodermie'),
(86918, 'https://ror.org/02c0fa093', 'en', 1, 'https://ror.org/02c0fa093 Hyogo Science and Technology Association å…¬ē›Šč²”å›£ę³•äŗŗ ć²ć‚‡ć†ć”ē§‘å­¦ęŠ€č”“å”ä¼š'),
(86919, 'https://ror.org/02c2gwm94', 'en', 1, 'https://ror.org/02c2gwm94 Cardiovascular Institute of the South'),
(86920, 'https://ror.org/02c4cbt39', 'en', 1, 'https://ror.org/02c4cbt39 Louisiana State University in Shreveport UniversitĆ© d''Ɖtat de louisiane Ć  shreveport'),
(86921, 'https://ror.org/02c4z7527', 'en', 1, 'https://ror.org/02c4z7527 Jagannath University ą¦œą¦—ą¦Øą§ą¦Øą¦¾ą¦„ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(86922, 'https://ror.org/02c4zkr79', 'en', 1, 'https://ror.org/02c4zkr79 Ekiti State University'),
(86923, 'https://ror.org/02c6kaq88', 'en', 0, 'https://ror.org/02c6kaq88 United Library'),
(86924, 'https://ror.org/02c8z2835', 'en', 0, 'https://ror.org/02c8z2835 Aichi Kiwami College of Nursing ę„›ēŸ„ćć‚ćæēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(86925, 'https://ror.org/02ca75c45', 'en', 1, 'https://ror.org/02ca75c45 Pulmonary Vascular Research Institute'),
(86926, 'https://ror.org/02cdjts56', 'en', 0, 'https://ror.org/02cdjts56 DCE - Danish Centre for Environment and Energy Nationalt Center for MiljĆø og Energi'),
(86927, 'https://ror.org/02cf1je33', 'en', 0, 'https://ror.org/02cf1je33 Osaka Prefecture University å¤§é˜Ŗåŗœē«‹å¤§å­¦'),
(86928, 'https://ror.org/02cgn2a44', 'en', 1, 'https://ror.org/02cgn2a44 Swiss Finance Institute'),
(86929, 'https://ror.org/02chymc10', 'en', 1, 'https://ror.org/02chymc10 Oklahoma State Department of Health'),
(86930, 'https://ror.org/02cmd6814', 'en', 1, 'https://ror.org/02cmd6814 Stroud Water Research Center'),
(86931, 'https://ror.org/02cmp6f87', 'en', 1, 'https://ror.org/02cmp6f87 Ministry of Environment and Energy ΄πουργείο Παραγωγικής Ī‘Ī½Ī±ĻƒĻ…Ī³ĪŗĻĻŒĻ„Ī·ĻƒĪ·Ļ‚, Περιβάλλοντος και Ενέργειας'),
(86932, 'https://ror.org/02cmtcb39', 'fr', 1, 'https://ror.org/02cmtcb39 Action LIONS Vaincre le Cancer'),
(86933, 'https://ror.org/02cnh8416', 'en', 1, 'https://ror.org/02cnh8416 Methodist Hospital Foundation'),
(86934, 'https://ror.org/02cpjkp59', 'en', 1, 'https://ror.org/02cpjkp59 Beth Israel Deaconess Hospital'),
(86935, 'https://ror.org/02csmb731', 'en', 1, 'https://ror.org/02csmb731 Institute for the Promotion of Teaching Science and Technology ąøŖąø–ąø²ąøšąø±ąø™ąøŖą¹ˆąø‡ą¹€ąøŖąø£ąø“ąø”ąøąø²ąø£ąøŖąø­ąø™ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œą¹ąø„ąø°ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµ'),
(86936, 'https://ror.org/02ctr5v50', 'en', 0, 'https://ror.org/02ctr5v50 KwaZulu-Natal Research Institute for Tuberculosis and HIV'),
(86937, 'https://ror.org/02cvx7z60', 'no_lang_code', 1, 'https://ror.org/02cvx7z60 Aqualinc (New Zealand)'),
(86938, 'https://ror.org/02d4f9f51', 'en', 1, 'https://ror.org/02d4f9f51 National Center for Cancer Care and Research'),
(86939, 'https://ror.org/02d57dn29', 'no_lang_code', 0, 'https://ror.org/02d57dn29 Affymetrix (United Kingdom)'),
(86940, 'https://ror.org/02d7mxj93', 'pt', 1, 'https://ror.org/02d7mxj93 BeneficĆŖncia Portuguesa de SĆ£o Paulo'),
(86941, 'https://ror.org/02d9v9944', 'fr', 1, 'https://ror.org/02d9v9944 CHU Ambroise ParƩ'),
(86942, 'https://ror.org/02dc3yz72', 'en', 0, 'https://ror.org/02dc3yz72 Penn State Worthington Scranton'),
(86943, 'https://ror.org/02dc9g052', 'no_lang_code', 0, 'https://ror.org/02dc9g052 Kleinwanzlebener Saatzucht (United Kingdom)'),
(86944, 'https://ror.org/02dddmh90', 'fr', 1, 'https://ror.org/02dddmh90 Fondation de l''Avenir'),
(86945, 'https://ror.org/02dernx73', 'en', 1, 'https://ror.org/02dernx73 International Institute of Information Technology ą¤…ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤Ŗą„ą¤£ą„‡'),
(86946, 'https://ror.org/02df7gw66', 'en', 1, 'https://ror.org/02df7gw66 Centre of Excellence in Mathematics'),
(86947, 'https://ror.org/02dfhev96', 'en', 1, 'https://ror.org/02dfhev96 Myalgic Encephalomyelitis Research Group'),
(86948, 'https://ror.org/02dh3nw51', 'no_lang_code', 1, 'https://ror.org/02dh3nw51 AutoNation (United States)'),
(86949, 'https://ror.org/02dh8ja68', 'en', 1, 'https://ror.org/02dh8ja68 Max Planck Institute for Mathematics Max-Planck-Institut für Mathematik'),
(86950, 'https://ror.org/02dm2pb39', 'en', 1, 'https://ror.org/02dm2pb39 Nederlandse Federatie van Universitair Medische Centra Netherlands Federation of University Medical Centres'),
(86951, 'https://ror.org/02dnd4c36', 'en', 1, 'https://ror.org/02dnd4c36 Van Lodenstein College'),
(86952, 'https://ror.org/02dq7z403', 'en', 1, 'https://ror.org/02dq7z403 European Centre for Training and Research in Earthquake Engineering'),
(86953, 'https://ror.org/02dwn3e81', 'fr', 1, 'https://ror.org/02dwn3e81 Centre LƩa-Roback'),
(86954, 'https://ror.org/02dwrdh81', 'en', 1, 'https://ror.org/02dwrdh81 University of Kufa Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁˆŁŲ©'),
(86955, 'https://ror.org/02dyxwz31', 'en', 0, 'https://ror.org/02dyxwz31 Athlone Institute of Technology Institiúid Teicneolaíochta Bhaile Átha Luain'),
(86956, 'https://ror.org/02e08kw49', 'en', 1, 'https://ror.org/02e08kw49 Dwight Englewood School'),
(86957, 'https://ror.org/02e1waz46', 'no_lang_code', 1, 'https://ror.org/02e1waz46 Allied Insurance (United States)'),
(86958, 'https://ror.org/02e21yv44', 'en', 1, 'https://ror.org/02e21yv44 Society of Anesthesia and Sleep Medicine'),
(86959, 'https://ror.org/02e250j72', 'en', 1, 'https://ror.org/02e250j72 Industrial Biotechnology Innovation Centre'),
(86960, 'https://ror.org/02e271b61', 'en', 1, 'https://ror.org/02e271b61 Huntington Hospital'),
(86961, 'https://ror.org/02e2xqg93', 'no_lang_code', 0, 'https://ror.org/02e2xqg93 Alcatel-Lucent (United States)'),
(86962, 'https://ror.org/02e36yp79', 'en', 1, 'https://ror.org/02e36yp79 Blum & Grob Attorneys at Law Blum & Grob RechtsanwƤlte'),
(86963, 'https://ror.org/02e3mnv18', 'no_lang_code', 0, 'https://ror.org/02e3mnv18 Quantel (France)'),
(86964, 'https://ror.org/02e49q288', 'en', 0, 'https://ror.org/02e49q288 Penn State York'),
(86965, 'https://ror.org/02e4e5139', 'en', 1, 'https://ror.org/02e4e5139 Koriyama Institute of Health Sciences éƒ”å±±å„åŗ·ē§‘å­¦å°‚é–€å­¦ę ”'),
(86966, 'https://ror.org/02e5yg619', 'en', 1, 'https://ror.org/02e5yg619 Infection Prevention Society'),
(86967, 'https://ror.org/02e6sh902', 'en', 1, 'https://ror.org/02e6sh902 Uganda Cancer Institute'),
(86968, 'https://ror.org/02e6z0y17', 'en', 1, 'https://ror.org/02e6z0y17 Ambo University Yunivarsiitii Amboo įŠ įˆį‰¦ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(86969, 'https://ror.org/02e7jer75', 'en', 1, 'https://ror.org/02e7jer75 General Hospital of Athens Elpis Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ελπίς'),
(86970, 'https://ror.org/02e8pmt63', 'en', 1, 'https://ror.org/02e8pmt63 John Randolph Haynes and Dora Haynes Foundation'),
(86971, 'https://ror.org/02e9yx751', 'no_lang_code', 1, 'https://ror.org/02e9yx751 Alphabet (United States)'),
(86972, 'https://ror.org/02eba4w13', 'en', 1, 'https://ror.org/02eba4w13 LeadingAge New York'),
(86973, 'https://ror.org/02ebkdp37', 'en', 1, 'https://ror.org/02ebkdp37 Usona Institute'),
(86974, 'https://ror.org/02ecaj844', 'no_lang_code', 1, 'https://ror.org/02ecaj844 Windtree Therapeutics (United States)'),
(86975, 'https://ror.org/02egtkj64', 'en', 1, 'https://ror.org/02egtkj64 Palmerston North City Council'),
(86976, 'https://ror.org/02eh2pe44', 'en', 0, 'https://ror.org/02eh2pe44 Art Institute of Pittsburgh'),
(86977, 'https://ror.org/02ekf0r31', 'no_lang_code', 0, 'https://ror.org/02ekf0r31 WorldFish'),
(86978, 'https://ror.org/02erzj806', 'en', 0, 'https://ror.org/02erzj806 Epsom Hospital'),
(86979, 'https://ror.org/02esmmc86', 'no', 1, 'https://ror.org/02esmmc86 Stiftelsen Dam'),
(86980, 'https://ror.org/02etnpc77', 'en', 0, 'https://ror.org/02etnpc77 Irkutsk State Academy of Agriculture'),
(86981, 'https://ror.org/02ev4ry20', 'en', 1, 'https://ror.org/02ev4ry20 Rana University رنا Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(86982, 'https://ror.org/02evnh647', 'en', 1, 'https://ror.org/02evnh647 Saitama University åŸ¼ēŽ‰å¤§å­¦'),
(86983, 'https://ror.org/02exfk080', 'en', 1, 'https://ror.org/02exfk080 Zoucheng People''s Hospital é‚¹åŸŽåø‚äŗŗę°‘åŒ»é™¢'),
(86984, 'https://ror.org/02f26yq04', 'en', 1, 'https://ror.org/02f26yq04 Banco de EspaƱa Bank of Spain'),
(86985, 'https://ror.org/02f5b7n18', 'en', 1, 'https://ror.org/02f5b7n18 Max Planck Institut für Chemie - Otto Hahn Institut Max Planck Institute for Chemistry'),
(86986, 'https://ror.org/02f5hys27', 'en', 1, 'https://ror.org/02f5hys27 Ernst Schering Foundation Schering Stiftung'),
(86987, 'https://ror.org/02f60yb64', 'no_lang_code', 1, 'https://ror.org/02f60yb64 Qinetiq (United Kingdom)'),
(86988, 'https://ror.org/02f99cq72', 'en', 1, 'https://ror.org/02f99cq72 Ohio Lions Eye Research Foundation'),
(86989, 'https://ror.org/02fchmd43', 'no_lang_code', 0, 'https://ror.org/02fchmd43 Atmel (Germany)'),
(86990, 'https://ror.org/02fcxa359', 'fr', 0, 'https://ror.org/02fcxa359 MinistĆØre de l''Education Nationale and de la Formation Professionnelle'),
(86991, 'https://ror.org/02fhgbp51', 'en', 1, 'https://ror.org/02fhgbp51 National Institute of Education'),
(86992, 'https://ror.org/02fj74y77', 'en', 1, 'https://ror.org/02fj74y77 Joe Niekro Foundation'),
(86993, 'https://ror.org/02fjjp634', 'en', 1, 'https://ror.org/02fjjp634 Society of American Archivists'),
(86994, 'https://ror.org/02fn4qf13', 'en', 1, 'https://ror.org/02fn4qf13 Benedictine College'),
(86995, 'https://ror.org/02fndbp74', 'en', 1, 'https://ror.org/02fndbp74 British Society for Haematology'),
(86996, 'https://ror.org/02fne8r97', 'pl', 0, 'https://ror.org/02fne8r97 Akademia Marynarki Wojennej im. Bohaterów Westerplatte'),
(86997, 'https://ror.org/02fppqh55', 'en', 1, 'https://ror.org/02fppqh55 Association canadienne des physiciens et physiciennes Canadian Association of Physicists'),
(86998, 'https://ror.org/02fq0hm69', 'en', 1, 'https://ror.org/02fq0hm69 Friesland College'),
(86999, 'https://ror.org/02fsk7e17', 'en', 1, 'https://ror.org/02fsk7e17 State University of Semarang Universitas Negeri Semarang'),
(87000, 'https://ror.org/02fvkg758', 'en', 1, 'https://ror.org/02fvkg758 Middle Technical University الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„ŁˆŲ³Ų·Ł‰'),
(87001, 'https://ror.org/02fvwvk30', 'en', 0, 'https://ror.org/02fvwvk30 Memorial University Medical Center'),
(87002, 'https://ror.org/02fwgk331', 'en', 1, 'https://ror.org/02fwgk331 Soil Science Society of America'),
(87003, 'https://ror.org/02fxnw554', 'no_lang_code', 1, 'https://ror.org/02fxnw554 Santeon (Netherlands)'),
(87004, 'https://ror.org/02fzqqm79', 'fr', 0, 'https://ror.org/02fzqqm79 Pharmacie des HƓpitaux de l''Est LƩmanique'),
(87005, 'https://ror.org/02g01cb27', 'en', 1, 'https://ror.org/02g01cb27 Deutsches Historisches Institut Washington, German Historical Institute'),
(87006, 'https://ror.org/02g0rnd87', 'no_lang_code', 1, 'https://ror.org/02g0rnd87 Nexans (France)'),
(87007, 'https://ror.org/02g22s989', 'no_lang_code', 1, 'https://ror.org/02g22s989 Stanimex (Poland)'),
(87008, 'https://ror.org/02g2sh456', 'en', 1, 'https://ror.org/02g2sh456 Pädagogische Hochschule Schwäbisch Gmünd University of Education Schwaebisch Gmuend'),
(87009, 'https://ror.org/02g48kk62', 'no_lang_code', 0, 'https://ror.org/02g48kk62 Enzymatics (United States)'),
(87010, 'https://ror.org/02g57tw64', 'en', 1, 'https://ror.org/02g57tw64 Walter & Elise Haas Fund'),
(87011, 'https://ror.org/02g8r8t79', 'en', 1, 'https://ror.org/02g8r8t79 Housing Engineering Design and Research Association'),
(87012, 'https://ror.org/02g98d189', 'no_lang_code', 0, 'https://ror.org/02g98d189 ARIAD Pharmaceuticals (United Kingdom)'),
(87013, 'https://ror.org/02g9jg318', 'en', 1, 'https://ror.org/02g9jg318 Third Affiliated Hospital of Nanchang University å—ę˜Œå¤§å­¦ē¬¬äø‰é™„å±žåŒ»é™¢'),
(87014, 'https://ror.org/02ga8fs73', 'fi', 1, 'https://ror.org/02ga8fs73 Maire Taposen SƤƤtiƶ'),
(87015, 'https://ror.org/02gbscg16', 'it', 1, 'https://ror.org/02gbscg16 Fondazione Tercas'),
(87016, 'https://ror.org/02gc8z272', 'no_lang_code', 0, 'https://ror.org/02gc8z272 Smiths Detection (United Kingdom)'),
(87017, 'https://ror.org/02gd2pm65', 'en', 1, 'https://ror.org/02gd2pm65 Grand Slam Club/Ovis'),
(87018, 'https://ror.org/02gg2r095', 'en', 0, 'https://ror.org/02gg2r095 Institute of Critical Care Medicine'),
(87019, 'https://ror.org/02ghpjv23', 'no_lang_code', 1, 'https://ror.org/02ghpjv23 Cochrane'),
(87020, 'https://ror.org/02gjqpv16', 'en', 1, 'https://ror.org/02gjqpv16 Moroccan Foundation for Advanced Science, Innovation and Research'),
(87021, 'https://ror.org/02gk5sj09', 'no_lang_code', 0, 'https://ror.org/02gk5sj09 Clarus Ventures'),
(87022, 'https://ror.org/02gmbxa89', 'no_lang_code', 1, 'https://ror.org/02gmbxa89 ASE Holdings (United States)');
INSERT INTO `rors` VALUES
(87023, 'https://ror.org/02gnyy588', 'es', 1, 'https://ror.org/02gnyy588 Comisión México-Estados Unidos para el Intercambio Educativo y Cultural'),
(87024, 'https://ror.org/02gp9p447', 'no_lang_code', 1, 'https://ror.org/02gp9p447 AccuVein (United States)'),
(87025, 'https://ror.org/02gqgne03', 'en', 1, 'https://ror.org/02gqgne03 American University of the Middle East الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في الؓرق Ų§Ł„Ų£ŁˆŲ³Ų·'),
(87026, 'https://ror.org/02grspc61', 'no_lang_code', 1, 'https://ror.org/02grspc61 Hugging Face'),
(87027, 'https://ror.org/02gs5sz03', 'en', 1, 'https://ror.org/02gs5sz03 Ichinomiya Kenshin College 一宮研伸大学 ēœ‹č­·å­¦éƒØ'),
(87028, 'https://ror.org/02gtkm787', 'en', 0, 'https://ror.org/02gtkm787 Argosy University'),
(87029, 'https://ror.org/02gv4xy86', 'en', 1, 'https://ror.org/02gv4xy86 Northern Counties Kidney Research Fund'),
(87030, 'https://ror.org/02gvqsb68', 'en', 1, 'https://ror.org/02gvqsb68 Walter and Duncan Gordon Foundation'),
(87031, 'https://ror.org/02gw00g25', 'no_lang_code', 1, 'https://ror.org/02gw00g25 Ocean Optics (United States)'),
(87032, 'https://ror.org/02gwszx41', 'en', 1, 'https://ror.org/02gwszx41 New Earth Foundation'),
(87033, 'https://ror.org/02gxych78', 'en', 1, 'https://ror.org/02gxych78 Shantou University Medical College'),
(87034, 'https://ror.org/02gyhy076', 'en', 1, 'https://ror.org/02gyhy076 Helgeland Museum'),
(87035, 'https://ror.org/02gynf383', 'no_lang_code', 0, 'https://ror.org/02gynf383 CSR (United States)'),
(87036, 'https://ror.org/02h1qsm74', 'no_lang_code', 1, 'https://ror.org/02h1qsm74 Psyadon Pharmaceuticals (United States)'),
(87037, 'https://ror.org/02h1t6f69', 'nl', 1, 'https://ror.org/02h1t6f69 Waddenfonds'),
(87038, 'https://ror.org/02h28kk33', 'en', 1, 'https://ror.org/02h28kk33 Vietnam Military Medical University'),
(87039, 'https://ror.org/02h4asg26', 'en', 1, 'https://ror.org/02h4asg26 International Copper Association'),
(87040, 'https://ror.org/02h4kvn10', 'en', 0, 'https://ror.org/02h4kvn10 Organisation for Economic Co-operation and Development'),
(87041, 'https://ror.org/02h60r346', 'en', 0, 'https://ror.org/02h60r346 Kobe University of Fashion and Design ē„žęˆøćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³é€ å½¢å¤§å­¦'),
(87042, 'https://ror.org/02h9pt147', 'en', 1, 'https://ror.org/02h9pt147 PGP College of Engineering and Technology'),
(87043, 'https://ror.org/02hbdvq93', 'en', 1, 'https://ror.org/02hbdvq93 Directorate of Onion and Garlic Research ą¤Ŗą„ą¤Æą¤¾ą¤œ ą¤ą¤µą¤‚ ą¤²ą¤¹ą¤øą„ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(87044, 'https://ror.org/02hbhk282', 'en', 1, 'https://ror.org/02hbhk282 Lowell Community Health Center'),
(87045, 'https://ror.org/02hc1xg77', 'de', 1, 'https://ror.org/02hc1xg77 Abwasserverband Achental-Inntal-Zillertal'),
(87046, 'https://ror.org/02hcraz70', 'da', 1, 'https://ror.org/02hcraz70 Aase og Ejnar Danielsens Fond'),
(87047, 'https://ror.org/02hd6pp72', 'no_lang_code', 1, 'https://ror.org/02hd6pp72 HydroCision (United States)'),
(87048, 'https://ror.org/02hf48750', 'en', 1, 'https://ror.org/02hf48750 Universal Spa Training Academy'),
(87049, 'https://ror.org/02hfpnk21', 'en', 1, 'https://ror.org/02hfpnk21 Translational Genomics Research Institute'),
(87050, 'https://ror.org/02hgc7r17', 'no_lang_code', 1, 'https://ror.org/02hgc7r17 Allen-Vanguard (Canada)'),
(87051, 'https://ror.org/02hgwhq57', 'en', 1, 'https://ror.org/02hgwhq57 New Horizons for Women Trust'),
(87052, 'https://ror.org/02hp39418', 'en', 0, 'https://ror.org/02hp39418 Fuyang City People''s Hospital'),
(87053, 'https://ror.org/02hpd7j03', 'no_lang_code', 1, 'https://ror.org/02hpd7j03 Angiocrine Bioscience (United States)'),
(87054, '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'),
(87055, 'https://ror.org/02hshs559', 'en', 1, 'https://ror.org/02hshs559 Building Changes'),
(87056, 'https://ror.org/02hweh132', 'no_lang_code', 1, 'https://ror.org/02hweh132 Gannett (United States)'),
(87057, 'https://ror.org/02hwwbr17', 'en', 1, 'https://ror.org/02hwwbr17 Crafoord Foundation'),
(87058, 'https://ror.org/02hxgd925', 'en', 1, 'https://ror.org/02hxgd925 M J Murdock Charitable Trust'),
(87059, 'https://ror.org/02j01mp63', 'en', 1, 'https://ror.org/02j01mp63 National Metrology Institute of South Africa'),
(87060, 'https://ror.org/02j17mb51', 'en', 0, 'https://ror.org/02j17mb51 Presence Health'),
(87061, 'https://ror.org/02j23c293', 'no_lang_code', 0, 'https://ror.org/02j23c293 Cardio3 BioSciences (Belgium)'),
(87062, 'https://ror.org/02j3bag68', 'en', 1, 'https://ror.org/02j3bag68 Kurnool Medical College ą°•ą°°ą±ą°Øą±‚ą°²ą± ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(87063, 'https://ror.org/02j3vp543', 'en', 0, 'https://ror.org/02j3vp543 Cumbria Institute of the Arts'),
(87064, 'https://ror.org/02j4dvk97', 'en', 1, 'https://ror.org/02j4dvk97 British and Foreign School Society'),
(87065, 'https://ror.org/02j4j8p35', 'fr', 1, 'https://ror.org/02j4j8p35 EconomiX'),
(87066, 'https://ror.org/02j55tf03', 'no_lang_code', 0, 'https://ror.org/02j55tf03 Stratatech Corporation'),
(87067, 'https://ror.org/02j5qn328', 'en', 1, 'https://ror.org/02j5qn328 Fujian Polytechnic of Information Technology ē¦å»ŗäæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(87068, 'https://ror.org/02j9wvt50', 'en', 1, 'https://ror.org/02j9wvt50 Coalition for Epidemic Preparedness Innovations'),
(87069, 'https://ror.org/02jakbh21', 'en', 1, 'https://ror.org/02jakbh21 United States Army War College'),
(87070, 'https://ror.org/02jam4v16', 'en', 1, 'https://ror.org/02jam4v16 EuroSpine'),
(87071, 'https://ror.org/02jamnw30', 'en', 1, 'https://ror.org/02jamnw30 Nizhnevartovsk State University ŠŠøŠ¶Š½ŠµŠ²Š°Ń€Ń‚Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(87072, 'https://ror.org/02jaraq65', 'en', 1, 'https://ror.org/02jaraq65 Northwest Samar State University'),
(87073, 'https://ror.org/02jcte795', 'en', 1, 'https://ror.org/02jcte795 Association of Canadian Archivists'),
(87074, 'https://ror.org/02jecxg34', 'en', 1, 'https://ror.org/02jecxg34 Eye Center'),
(87075, 'https://ror.org/02jfbm483', 'en', 1, 'https://ror.org/02jfbm483 BioTechMed-Graz'),
(87076, 'https://ror.org/02jfpwg19', 'en', 1, 'https://ror.org/02jfpwg19 Cardea Services'),
(87077, 'https://ror.org/02jg74102', 'no_lang_code', 1, 'https://ror.org/02jg74102 Elanco (United States)'),
(87078, 'https://ror.org/02jhjfr59', 'en', 1, 'https://ror.org/02jhjfr59 Koninklijke Nederlandse Lawn Tennis Bond Royal Dutch Lawn Tennis Federation'),
(87079, 'https://ror.org/02jm4z734', 'en', 1, 'https://ror.org/02jm4z734 Philbrook Museum of Art'),
(87080, 'https://ror.org/02jq72y97', 'en', 1, 'https://ror.org/02jq72y97 Czechoslovak Documentation Centre'),
(87081, 'https://ror.org/02jsp2z03', 'no_lang_code', 1, 'https://ror.org/02jsp2z03 Telenor (Norway)'),
(87082, 'https://ror.org/02jtzez66', 'en', 1, 'https://ror.org/02jtzez66 Ukrainian Institute of Public Health Policy'),
(87083, 'https://ror.org/02jwb5s28', 'en', 1, 'https://ror.org/02jwb5s28 Beijing Hospital'),
(87084, 'https://ror.org/02jxgpt62', 'en', 1, 'https://ror.org/02jxgpt62 Folke Bernadotte Academy Folke Bernadotteakademin'),
(87085, 'https://ror.org/02jxrhq31', 'en', 1, 'https://ror.org/02jxrhq31 Melanoma Institute Australia'),
(87086, 'https://ror.org/02jz38b76', 'en', 1, 'https://ror.org/02jz38b76 University of Human Development Ų²Ų§Ł†Ś©Ū†ŪŒ ŚÆŪ•Ų“Ū•Ł¾ŪŽŲÆŲ§Ł†ŪŒ Ł…Ų±Ū†ŪŒŪŒ'),
(87087, 'https://ror.org/02k22h248', 'sl', 1, 'https://ror.org/02k22h248 Ekonomska Å ola Novo Mesto'),
(87088, 'https://ror.org/02k4h1r69', 'no_lang_code', 0, 'https://ror.org/02k4h1r69 IQE Silicon Compounds (United Kingdom)'),
(87089, 'https://ror.org/02k51ms15', 'en', 1, 'https://ror.org/02k51ms15 Society of the Cincinnati'),
(87090, 'https://ror.org/02k5t7d62', 'en', 1, 'https://ror.org/02k5t7d62 Zhengzhou Preschool Education College éƒ‘å·žå¹¼å„æåøˆčŒƒé«˜ē­‰äø“ē§‘å­¦ę ”'),
(87091, 'https://ror.org/02k7qtf87', 'en', 1, 'https://ror.org/02k7qtf87 Pueblo of Isleta'),
(87092, 'https://ror.org/02k8zdn75', 'no_lang_code', 1, 'https://ror.org/02k8zdn75 Aptevo Therapeutics (United states)'),
(87093, 'https://ror.org/02k9x1e74', 'no_lang_code', 1, 'https://ror.org/02k9x1e74 Sound Approach (United Kingdom)'),
(87094, 'https://ror.org/02kat9e40', 'en', 0, 'https://ror.org/02kat9e40 Art Institute of Wisconsin'),
(87095, 'https://ror.org/02kbr0451', 'en', 0, 'https://ror.org/02kbr0451 Liberators University'),
(87096, 'https://ror.org/02khxwt12', 'en', 1, 'https://ror.org/02khxwt12 MRC Molecular Haematology Unit'),
(87097, 'https://ror.org/02khz2m68', 'en', 1, 'https://ror.org/02khz2m68 American College of Veterinary Pathologists'),
(87098, 'https://ror.org/02kj7kt32', 'no_lang_code', 0, 'https://ror.org/02kj7kt32 UES (United States)'),
(87099, 'https://ror.org/02kj8ch84', 'no_lang_code', 1, 'https://ror.org/02kj8ch84 Maeumsarang Hospital ė§ˆģŒģ‚¬ėž‘ė³‘ģ›'),
(87100, 'https://ror.org/02kjyst95', 'en', 1, 'https://ror.org/02kjyst95 South Asian University'),
(87101, 'https://ror.org/02kkmhw09', 'it', 1, 'https://ror.org/02kkmhw09 Fondazione Progetto Ematologia'),
(87102, 'https://ror.org/02kmk9y17', 'en', 1, 'https://ror.org/02kmk9y17 First Congregational Church'),
(87103, 'https://ror.org/02kn1zm32', 'en', 1, 'https://ror.org/02kn1zm32 Southeastern Transportation Research, Innovation, Development and Education Center'),
(87104, 'https://ror.org/02kng7w76', 'no_lang_code', 0, 'https://ror.org/02kng7w76 TransDerm (United States)'),
(87105, 'https://ror.org/02knhje64', 'en', 1, 'https://ror.org/02knhje64 Rajamangala University of Technology Srivijaya ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøØąø£ąøµąø§ąø“ąøŠąø±ąø¢'),
(87106, 'https://ror.org/02kpnd089', 'en', 1, 'https://ror.org/02kpnd089 Ontario Historical Society'),
(87107, 'https://ror.org/02kqzqe43', 'en', 0, 'https://ror.org/02kqzqe43 Adygei State University'),
(87108, 'https://ror.org/02ktavf19', 'en', 1, 'https://ror.org/02ktavf19 Stoke-on-Trent City Council'),
(87109, 'https://ror.org/02m2n5c14', 'en', 1, 'https://ror.org/02m2n5c14 New Brunswick Arts Board'),
(87110, 'https://ror.org/02m3w2z38', 'en', 1, 'https://ror.org/02m3w2z38 Office for Health Improvement and Disparities'),
(87111, 'https://ror.org/02m6g7c72', 'en', 1, 'https://ror.org/02m6g7c72 Latvian Institute of Aquatic Ecology Latvijas Hidroekoloģijas institūts'),
(87112, 'https://ror.org/02m8tb249', 'fr', 1, 'https://ror.org/02m8tb249 UniversitƩ Sultan Moulay Slimane'),
(87113, 'https://ror.org/02md8hv62', 'en', 1, 'https://ror.org/02md8hv62 Sheffield Children''s NHS Foundation Trust'),
(87114, 'https://ror.org/02mfamy34', 'en', 0, 'https://ror.org/02mfamy34 Agriculture Research Center'),
(87115, 'https://ror.org/02mfxdp77', 'en', 1, 'https://ror.org/02mfxdp77 Oklahoma State University Center for Health Sciences'),
(87116, 'https://ror.org/02mhbk457', 'en', 1, 'https://ror.org/02mhbk457 Scioto Foundation'),
(87117, 'https://ror.org/02mm59s51', 'no_lang_code', 0, 'https://ror.org/02mm59s51 Arcam (Sweden)'),
(87118, 'https://ror.org/02mmp8p21', 'en', 0, 'https://ror.org/02mmp8p21 Tsinghua-UC Berkeley Shenzhen Institute'),
(87119, 'https://ror.org/02mr3ar13', 'en', 1, 'https://ror.org/02mr3ar13 Shandong University of Technology å±±äøœē†å·„å¤§å­¦'),
(87120, 'https://ror.org/02mvkbz85', 'en', 1, 'https://ror.org/02mvkbz85 Donaghue Foundation'),
(87121, 'https://ror.org/02mw4qt74', 'en', 1, 'https://ror.org/02mw4qt74 Polymer Research Center'),
(87122, 'https://ror.org/02mz9pg37', 'no_lang_code', 1, 'https://ror.org/02mz9pg37 Titan Pharmaceuticals (United States)'),
(87123, 'https://ror.org/02n0bts35', 'en', 1, 'https://ror.org/02n0bts35 Medical University of Graz Medizinische UniversitƤt Graz'),
(87124, 'https://ror.org/02n0sa445', 'en', 1, 'https://ror.org/02n0sa445 Royal Australian and New Zealand College of Psychiatrists'),
(87125, 'https://ror.org/02n2n9a06', 'en', 1, 'https://ror.org/02n2n9a06 Glenrose Rehabilitation Hospital'),
(87126, 'https://ror.org/02n3d5e79', 'en', 1, 'https://ror.org/02n3d5e79 Rosemere Cancer Foundation'),
(87127, 'https://ror.org/02n47ja63', 'no_lang_code', 0, 'https://ror.org/02n47ja63 Sirrix (Germany)'),
(87128, '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'),
(87129, 'https://ror.org/02n6dj587', 'en', 1, 'https://ror.org/02n6dj587 Breast Cancer Alliance'),
(87130, 'https://ror.org/02n6q7023', 'en', 1, 'https://ror.org/02n6q7023 National Pancreas Foundation'),
(87131, 'https://ror.org/02n8rnw93', 'en', 1, 'https://ror.org/02n8rnw93 Centre for Nano and Soft Matter Sciences'),
(87132, 'https://ror.org/02nakt033', 'en', 0, 'https://ror.org/02nakt033 Nagoya University Museum 名古屋大学 åšē‰©é¤Ø'),
(87133, 'https://ror.org/02nb3aq72', 'en', 1, 'https://ror.org/02nb3aq72 Monterey Bay Aquarium Research Institute'),
(87134, 'https://ror.org/02ncb2k95', 'en', 1, 'https://ror.org/02ncb2k95 MVJ Medical College and Research Hospital'),
(87135, 'https://ror.org/02ncchd63', 'en', 0, 'https://ror.org/02ncchd63 Hebrew Union College - Jewish Institute of Religion'),
(87136, 'https://ror.org/02nd66j93', 'no_lang_code', 1, 'https://ror.org/02nd66j93 Yung Shin Pharmaceutical Industrial (Taiwan)'),
(87137, 'https://ror.org/02nddbr13', 'en', 1, 'https://ror.org/02nddbr13 Xi''an Siyuan University č„æå®‰ę€ęŗå­¦é™¢'),
(87138, 'https://ror.org/02ne3sf79', 'en', 0, 'https://ror.org/02ne3sf79 Elabuga State Pedagogical University'),
(87139, 'https://ror.org/02ne8pd48', 'es', 0, 'https://ror.org/02ne8pd48 Hospital Xeral'),
(87140, 'https://ror.org/02nftnt56', 'no_lang_code', 1, 'https://ror.org/02nftnt56 Arqule (United States)'),
(87141, 'https://ror.org/02ng9tz41', 'en', 1, 'https://ror.org/02ng9tz41 Hermon Slade Foundation'),
(87142, 'https://ror.org/02nkp4593', 'en', 1, 'https://ror.org/02nkp4593 JPS Health Network'),
(87143, 'https://ror.org/02nkr4j21', 'no_lang_code', 0, 'https://ror.org/02nkr4j21 Akastor (Norway)'),
(87144, 'https://ror.org/02nmnpn85', 'en', 1, 'https://ror.org/02nmnpn85 Susquehanna University UniversitƩ de Susquehanna'),
(87145, 'https://ror.org/02nnhm363', 'en', 1, 'https://ror.org/02nnhm363 Takahashi Industrial and Economic Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗ é«˜ę©‹ē”£ę„­ēµŒęøˆē ”ē©¶č²”å›£'),
(87146, 'https://ror.org/02nqgka20', 'en', 1, 'https://ror.org/02nqgka20 North Pacific Research Board'),
(87147, 'https://ror.org/02nqgxe18', 'en', 1, 'https://ror.org/02nqgxe18 Ophthalmic Consultants of Boston'),
(87148, 'https://ror.org/02ns86471', 'no_lang_code', 1, 'https://ror.org/02ns86471 Indumetal Recycling (Spain)'),
(87149, 'https://ror.org/02nt00p03', 'fr', 1, 'https://ror.org/02nt00p03 Epi-Phare'),
(87150, 'https://ror.org/02nt0wk40', 'no_lang_code', 0, 'https://ror.org/02nt0wk40 Target (United Kingdom)'),
(87151, 'https://ror.org/02ntc9t93', 'en', 1, 'https://ror.org/02ntc9t93 Chang Bing Show Chwan Memorial Hospital'),
(87152, 'https://ror.org/02nvhz213', 'en', 1, 'https://ror.org/02nvhz213 The International Research Foundation for English Language Education'),
(87153, 'https://ror.org/02nw97x94', 'en', 1, 'https://ror.org/02nw97x94 Swami Rama Himalayan University ą¤øą„ą¤µą¤¾ą¤®ą„€ राम हिमालयन ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(87154, 'https://ror.org/02nwcn776', 'en', 1, 'https://ror.org/02nwcn776 British Burn Association'),
(87155, 'https://ror.org/02nxg5d30', 'en', 1, 'https://ror.org/02nxg5d30 Seva Foundation'),
(87156, 'https://ror.org/02nxzya59', 'en', 1, 'https://ror.org/02nxzya59 Princeton Public Library'),
(87157, 'https://ror.org/02nzadc54', 'de', 1, 'https://ror.org/02nzadc54 Hochschule für öffentliche Verwaltung Rheinland-Pfalz'),
(87158, 'https://ror.org/02p0mee35', 'no_lang_code', 1, 'https://ror.org/02p0mee35 Risk & Policy Analysts (United Kingdom)'),
(87159, 'https://ror.org/02p179j44', 'en', 1, 'https://ror.org/02p179j44 College of Staten Island'),
(87160, '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'),
(87161, 'https://ror.org/02p22ad51', 'en', 1, 'https://ror.org/02p22ad51 Deutsche Gesellschaft für Kardiologie – Herz- und Kreislaufforschung e.V. German Cardiac Society'),
(87162, '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'),
(87163, 'https://ror.org/02p3y5t84', 'en', 1, 'https://ror.org/02p3y5t84 Materials and Energy Research Center Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł…ŁˆŲ§ŲÆ و Ų§Ł†Ų±Ś˜ŪŒ'),
(87164, 'https://ror.org/02p4mwa83', 'en', 1, 'https://ror.org/02p4mwa83 Western Health'),
(87165, 'https://ror.org/02p521049', 'en', 1, 'https://ror.org/02p521049 MedTech CoRE'),
(87166, 'https://ror.org/02p5va373', 'en', 0, 'https://ror.org/02p5va373 Perm State Pedagogical University'),
(87167, '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'),
(87168, 'https://ror.org/02p7ynq34', 'en', 1, 'https://ror.org/02p7ynq34 National MPS Society'),
(87169, 'https://ror.org/02p80s268', 'en', 0, 'https://ror.org/02p80s268 Argosy University'),
(87170, 'https://ror.org/02p9mk956', 'en', 1, 'https://ror.org/02p9mk956 Agensi Nuklear Malaysia Malaysian Nuclear Agency'),
(87171, 'https://ror.org/02pbat654', 'en', 1, 'https://ror.org/02pbat654 American Institute of Steel Construction'),
(87172, 'https://ror.org/02pe2kf23', 'en', 1, 'https://ror.org/02pe2kf23 Max Planck Institute for Software Systems Max-Planck-Institut für Softwaresysteme'),
(87173, 'https://ror.org/02peq7p80', 'tr', 1, 'https://ror.org/02peq7p80 Beyoglu Goz Egitim ve Arastirma Hastanesi'),
(87174, 'https://ror.org/02pfzq569', 'no_lang_code', 0, 'https://ror.org/02pfzq569 Exiqon (United States)'),
(87175, 'https://ror.org/02pgnjz11', 'it', 1, 'https://ror.org/02pgnjz11 Fondazione Caritro, Fondazione Cassa di Risparmio di Trento e Rovereto'),
(87176, 'https://ror.org/02pkrn365', 'en', 1, 'https://ror.org/02pkrn365 University College Hospital at Westmoreland Street'),
(87177, 'https://ror.org/02pkrz957', 'en', 1, 'https://ror.org/02pkrz957 Suntory Foundation for Life Sciences ć‚µćƒ³ćƒˆćƒŖćƒ¼ē”Ÿå‘½ē§‘å­¦č²”å›£'),
(87178, 'https://ror.org/02pnr4h17', 'en', 1, 'https://ror.org/02pnr4h17 Phospholipid Forschungszentrum Phospholipid Research Center'),
(87179, 'https://ror.org/02pp7px91', 'en', 1, 'https://ror.org/02pp7px91 Max Planck Institute for Human Development Max-Planck-Institut für Bildungsforschung'),
(87180, 'https://ror.org/02pr1mr20', 'no_lang_code', 1, 'https://ror.org/02pr1mr20 Angion (United States)'),
(87181, 'https://ror.org/02pt3tp10', 'no_lang_code', 0, 'https://ror.org/02pt3tp10 United Technologies (Canada)'),
(87182, 'https://ror.org/02pwbvs75', 'en', 1, 'https://ror.org/02pwbvs75 Ontario Lung Association'),
(87183, 'https://ror.org/02px88477', 'en', 1, 'https://ror.org/02px88477 Sieć Badawczą Łukasiewicz - Instytut Pojazdów Szynowych "TABORā€ Łukasiewicz Research Network - Rail Vehicles Institute'),
(87184, 'https://ror.org/02py32171', 'nl', 1, 'https://ror.org/02py32171 Trombosestichting Nederland'),
(87185, 'https://ror.org/02q077p55', 'fr', 1, 'https://ror.org/02q077p55 Fondation Neurodis'),
(87186, 'https://ror.org/02q094x95', 'en', 1, 'https://ror.org/02q094x95 Northshore Technical Community College'),
(87187, 'https://ror.org/02q0gne90', 'no_lang_code', 1, 'https://ror.org/02q0gne90 Nanowave Technologies (Canada)'),
(87188, 'https://ror.org/02q2zj329', 'no_lang_code', 1, 'https://ror.org/02q2zj329 Neuromorphometrics (United States)'),
(87189, 'https://ror.org/02q854y08', 'en', 1, 'https://ror.org/02q854y08 Changi General Hospital'),
(87190, 'https://ror.org/02qbzdk74', 'en', 1, 'https://ror.org/02qbzdk74 Punjab Agricultural University ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਪੰਜਾਬ ąØąØ—ąØ°ą©€ąØ•ąØ²ąØšąØ°ąØ² ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(87191, 'https://ror.org/02qcqwf93', 'de', 1, 'https://ror.org/02qcqwf93 Institut für Arbeitsmarkt und Berufsforschung Institute for Employment Research'),
(87192, 'https://ror.org/02qd6xe92', 'no_lang_code', 0, 'https://ror.org/02qd6xe92 Shire (Belgium)'),
(87193, 'https://ror.org/02qdq9z80', 'en', 1, 'https://ror.org/02qdq9z80 International Professional University of Technology in Nagoya åå¤å±‹å›½éš›å·„ē§‘å°‚é–€č·å¤§å­¦'),
(87194, 'https://ror.org/02qdtd855', 'en', 0, 'https://ror.org/02qdtd855 Penn State Abington'),
(87195, 'https://ror.org/02qhd3x73', 'en', 1, 'https://ror.org/02qhd3x73 TechnoServe'),
(87196, 'https://ror.org/02qjcgs23', 'no_lang_code', 0, 'https://ror.org/02qjcgs23 MSD Animal Health (Germany)'),
(87197, 'https://ror.org/02qm18h86', 'en', 1, 'https://ror.org/02qm18h86 VA Pittsburgh Healthcare System'),
(87198, 'https://ror.org/02qma2225', 'en', 1, 'https://ror.org/02qma2225 Lincoln Memorial University'),
(87199, 'https://ror.org/02qp25s05', 'en', 1, 'https://ror.org/02qp25s05 Hope Against Cancer'),
(87200, 'https://ror.org/02qqgz317', 'en', 1, 'https://ror.org/02qqgz317 Canadian Association of Petroleum Producers'),
(87201, 'https://ror.org/02qqw3j37', 'es', 1, 'https://ror.org/02qqw3j37 Institute for Economic Liberty Instituto de Libertad Económica'),
(87202, 'https://ror.org/02qrpey68', 'en', 0, 'https://ror.org/02qrpey68 Iraqi Institute of Ancient Culture ć‚¤ćƒ©ć‚Æå¤ä»£ę–‡åŒ–ē ”ē©¶ę‰€'),
(87203, 'https://ror.org/02qsb4r69', 'en', 1, 'https://ror.org/02qsb4r69 Mastercard Foundation'),
(87204, 'https://ror.org/02qst6p72', 'en', 1, 'https://ror.org/02qst6p72 Japan Chemical Industry Association ę—„ęœ¬åŒ–å­¦å·„ę„­å”ä¼š'),
(87205, 'https://ror.org/02qtynj87', 'en', 0, 'https://ror.org/02qtynj87 WEGEMT Organisation'),
(87206, 'https://ror.org/02qztxx10', 'no_lang_code', 1, 'https://ror.org/02qztxx10 BioMedPress'),
(87207, 'https://ror.org/02r19bt50', 'no_lang_code', 1, 'https://ror.org/02r19bt50 Tsumura (Japan)'),
(87208, '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'),
(87209, 'https://ror.org/02r3ym141', 'en', 1, 'https://ror.org/02r3ym141 SUNY Oneonta UniversitĆ© d''Ɖtat de new york Ć  oneonta'),
(87210, 'https://ror.org/02r4fg487', 'no_lang_code', 0, 'https://ror.org/02r4fg487 Casmed (United States)'),
(87211, 'https://ror.org/02r52cf76', 'en', 1, 'https://ror.org/02r52cf76 Baltic International Academy Baltijas Starptautiskā akadēmija Tarptautinė Baltijos akademija Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(87212, 'https://ror.org/02r60jf72', 'it', 1, 'https://ror.org/02r60jf72 Associazione Comuni Terremotati e Sindaci della Ricostruzione del Friuli'),
(87213, 'https://ror.org/02r625m11', 'en', 1, 'https://ror.org/02r625m11 Frankfurt University of Applied Sciences'),
(87214, 'https://ror.org/02r6kb330', 'en', 1, 'https://ror.org/02r6kb330 Freemasons New Zealand'),
(87215, 'https://ror.org/02r860p42', 'en', 0, 'https://ror.org/02r860p42 Hawaii Loa College'),
(87216, 'https://ror.org/02rbgnh75', 'en', 1, 'https://ror.org/02rbgnh75 New Brunswick Innovation Foundation'),
(87217, 'https://ror.org/02rfb1841', 'no_lang_code', 0, 'https://ror.org/02rfb1841 Steinbichler (Germany)'),
(87218, 'https://ror.org/02rka3n91', 'en', 1, 'https://ror.org/02rka3n91 Mianyang Normal University ē»µé˜³åøˆčŒƒå­¦é™¢'),
(87219, 'https://ror.org/02rkks755', 'ca', 1, 'https://ror.org/02rkks755 i2CAT'),
(87220, 'https://ror.org/02rkt9d51', 'en', 1, 'https://ror.org/02rkt9d51 Balti Kaitsekolledž Baltic Defence College Baltijas Aizsardzības koledža Baltijos gynybos koledžas'),
(87221, 'https://ror.org/02rkwqj17', 'en', 1, 'https://ror.org/02rkwqj17 Flora Family Foundation'),
(87222, 'https://ror.org/02rkzhe22', 'en', 1, 'https://ror.org/02rkzhe22 Mote Marine Laboratory'),
(87223, 'https://ror.org/02rmwfb84', 'en', 1, 'https://ror.org/02rmwfb84 Food and Drug Safety Center äø€čˆ¬č²”å›£ę³•äŗŗé£Ÿå“č–¬å“å®‰å…Øć‚»ćƒ³ć‚æćƒ¼'),
(87224, 'https://ror.org/02rv8vx71', 'de', 1, 'https://ror.org/02rv8vx71 Stiftung Mainzer Herz'),
(87225, 'https://ror.org/02rvyhw89', 'en', 1, 'https://ror.org/02rvyhw89 Bangladesh Jute Mills Corporation বাংলাদেশ ą¦Ŗą¦¾ą¦Ÿą¦•ą¦² করপোরেশন'),
(87226, 'https://ror.org/02rxa1r38', 'en', 1, 'https://ror.org/02rxa1r38 Islamic Azad University, UAE Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ł…Ų§Ų±Ų§ŲŖ متحده'),
(87227, 'https://ror.org/02rz8v083', 'en', 0, 'https://ror.org/02rz8v083 United Nations Development Programme'),
(87228, 'https://ror.org/02s071079', 'no_lang_code', 1, 'https://ror.org/02s071079 Trex (United States)'),
(87229, 'https://ror.org/02s09gf16', 'no_lang_code', 1, 'https://ror.org/02s09gf16 SystemsX.ch'),
(87230, 'https://ror.org/02s0g2v93', 'no_lang_code', 1, 'https://ror.org/02s0g2v93 Polytec (Germany)'),
(87231, 'https://ror.org/02s2kh393', 'en', 1, 'https://ror.org/02s2kh393 New Zealand Freshwater Sciences Society'),
(87232, 'https://ror.org/02s4m5j79', 'en', 1, 'https://ror.org/02s4m5j79 Council of Economic Advisers'),
(87233, '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'),
(87234, 'https://ror.org/02s6gs133', 'en', 1, 'https://ror.org/02s6gs133 Institute of Microelectronics 中国科学院微电子研究所'),
(87235, 'https://ror.org/02s6w6207', 'en', 1, 'https://ror.org/02s6w6207 Budge Budge Institute of Technology'),
(87236, 'https://ror.org/02s78w031', 'no_lang_code', 1, 'https://ror.org/02s78w031 Selgen (Czechia)'),
(87237, 'https://ror.org/02s8ye387', 'en', 0, 'https://ror.org/02s8ye387 Penn State New Kensington'),
(87238, 'https://ror.org/02sdahq48', 'no_lang_code', 1, 'https://ror.org/02sdahq48 Guangzhou Metro Design & Research Institute å¹æå·žåœ°é“č®¾č®”ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(87239, 'https://ror.org/02sfc7c49', 'en', 1, 'https://ror.org/02sfc7c49 Andrews Institute for Orthopaedics & Sports Medicine'),
(87240, 'https://ror.org/02sghn022', 'en', 0, 'https://ror.org/02sghn022 Texas Tech University Health Sciences Center'),
(87241, 'https://ror.org/02sgpe757', 'en', 1, 'https://ror.org/02sgpe757 SUNY Cobleskill'),
(87242, 'https://ror.org/02sgqxr53', 'en', 1, 'https://ror.org/02sgqxr53 Global Cancer Institute'),
(87243, 'https://ror.org/02sjnrx77', 'no_lang_code', 1, 'https://ror.org/02sjnrx77 Zynerba Pharmaceuticals (United States)'),
(87244, 'https://ror.org/02skbsp27', 'en', 1, 'https://ror.org/02skbsp27 Leibniz Institute of Plant Genetics and Crop Plant Research Leibniz-Institut für Pflanzengenetik und Kulturpflanzenforschung'),
(87245, 'https://ror.org/02skfsw40', 'en', 0, 'https://ror.org/02skfsw40 Osaka City University å¤§é˜Ŗåø‚ē«‹å¤§å­¦'),
(87246, 'https://ror.org/02spzyy34', 'en', 0, 'https://ror.org/02spzyy34 Universidad de Oregón University of Oregon'),
(87247, 'https://ror.org/02std5y37', 'no_lang_code', 1, 'https://ror.org/02std5y37 Shukutoku University 淑徳大学'),
(87248, 'https://ror.org/02sxz8h41', 'en', 1, 'https://ror.org/02sxz8h41 Tokyo Metropolitan Hiroo Hospital ę±äŗ¬éƒ½ē«‹åŗƒå°¾ē—…é™¢'),
(87249, 'https://ror.org/02sybec58', 'no', 1, 'https://ror.org/02sybec58 Unifor'),
(87250, 'https://ror.org/02sz1qq59', 'en', 1, 'https://ror.org/02sz1qq59 Gill Foundation'),
(87251, 'https://ror.org/02szqqf11', 'en', 0, 'https://ror.org/02szqqf11 Stavropol State Medical University'),
(87252, 'https://ror.org/02t19fx09', 'no_lang_code', 1, 'https://ror.org/02t19fx09 Kinokuniya ē“€ä¼Šåœ‹å±‹ę›øåŗ—'),
(87253, 'https://ror.org/02t1x9x61', 'id', 1, 'https://ror.org/02t1x9x61 Universitas 17 Agustus 1945 Cirebon'),
(87254, 'https://ror.org/02t3j7969', 'fr', 0, 'https://ror.org/02t3j7969 Institut d''Electronique Fondamentale'),
(87255, 'https://ror.org/02t401344', 'en', 1, 'https://ror.org/02t401344 Historic Hudson Valley'),
(87256, 'https://ror.org/02t6zky14', 'no_lang_code', 1, 'https://ror.org/02t6zky14 Enamine (Ukraine)'),
(87257, 'https://ror.org/02t72hc65', 'en', 1, 'https://ror.org/02t72hc65 Indian Institute of Oil Palm Research'),
(87258, 'https://ror.org/02t8xn829', 'en', 1, 'https://ror.org/02t8xn829 Boca Raton Community High School'),
(87259, 'https://ror.org/02t8zvv42', 'en', 1, 'https://ror.org/02t8zvv42 South African History Archive'),
(87260, 'https://ror.org/02t9qnc73', 'en', 1, 'https://ror.org/02t9qnc73 Matrix Biology Institute'),
(87261, 'https://ror.org/02tdyw459', 'en', 1, 'https://ror.org/02tdyw459 Archives School Marburg Archivschule Marburg'),
(87262, 'https://ror.org/02tj7r959', 'en', 1, 'https://ror.org/02tj7r959 Environmental Defense Fund'),
(87263, 'https://ror.org/02tjxem41', 'en', 1, 'https://ror.org/02tjxem41 Steacie Institute for Molecular Sciences'),
(87264, 'https://ror.org/02tmb4981', 'en', 0, 'https://ror.org/02tmb4981 Postgraduate Institute of Medical Education and Research ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤šą¤‚ą¤”ą„€ą¤—ą¤¢ą¤¼'),
(87265, 'https://ror.org/02tn5vs15', 'en', 1, 'https://ror.org/02tn5vs15 Max Kade Foundation'),
(87266, 'https://ror.org/02tq69115', 'pt', 1, 'https://ror.org/02tq69115 Grupo Anchieta'),
(87267, 'https://ror.org/02trh1t47', 'en', 1, 'https://ror.org/02trh1t47 Allied Services'),
(87268, 'https://ror.org/02ts8v790', 'en', 1, 'https://ror.org/02ts8v790 Scottish Rite Charitable Foundation of Canada'),
(87269, 'https://ror.org/02ttb5s67', 'en', 1, 'https://ror.org/02ttb5s67 Collurania Teramo Observatory Osservatorio Astronomico di Collurania "Vincenzo Cerulli"'),
(87270, 'https://ror.org/02tv28881', 'de', 1, 'https://ror.org/02tv28881 Diabeteszentrum Bad Lauterberg'),
(87271, 'https://ror.org/02twggb97', 'en', 1, 'https://ror.org/02twggb97 Amol University of Special Modern Technologies دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ł…ŁˆŁ„ آمل'),
(87272, 'https://ror.org/02twz3112', 'no_lang_code', 0, 'https://ror.org/02twz3112 Integromics (Spain)'),
(87273, 'https://ror.org/02tx34m84', 'en', 1, 'https://ror.org/02tx34m84 Nantong Science and Technology Bureau å—é€šåø‚ē§‘ęŠ€å±€'),
(87274, 'https://ror.org/02tx4na66', 'en', 1, 'https://ror.org/02tx4na66 Cheongju University ģ²­ģ£¼ėŒ€ķ•™źµ'),
(87275, 'https://ror.org/02tx5t327', 'nl', 1, 'https://ror.org/02tx5t327 Instituut Gak'),
(87276, 'https://ror.org/02tx9ak91', 'en', 1, 'https://ror.org/02tx9ak91 Epilepsy Society of Australia'),
(87277, 'https://ror.org/02txbkt46', 'cs', 0, 'https://ror.org/02txbkt46 VysokĆ” Skola Ekonomie a Managementu'),
(87278, 'https://ror.org/02ty3nz25', 'en', 0, 'https://ror.org/02ty3nz25 Indepth Network'),
(87279, 'https://ror.org/02tzez922', 'en', 1, 'https://ror.org/02tzez922 Knox County Health Department'),
(87280, 'https://ror.org/02v046k89', 'en', 1, 'https://ror.org/02v046k89 Finnish Work Environment Fund'),
(87281, 'https://ror.org/02v16jm22', 'en', 1, 'https://ror.org/02v16jm22 Native Arts and Cultures Foundation'),
(87282, 'https://ror.org/02v27yb50', 'no_lang_code', 1, 'https://ror.org/02v27yb50 Blue Ridge Research and Consulting (United States)'),
(87283, 'https://ror.org/02v2svk17', 'fr', 1, 'https://ror.org/02v2svk17 Laboratoire HƩtƩrochimie Fondamentale et AppliquƩe'),
(87284, 'https://ror.org/02v2va994', 'no_lang_code', 1, 'https://ror.org/02v2va994 Insight Equity (United States)'),
(87285, 'https://ror.org/02v37gb90', 'en', 1, 'https://ror.org/02v37gb90 Pennsylvania College of Health Sciences'),
(87286, 'https://ror.org/02v3j1y79', 'no_lang_code', 1, 'https://ror.org/02v3j1y79 Renishaw (United Kingdom)'),
(87287, 'https://ror.org/02v6fyw83', 'en', 1, 'https://ror.org/02v6fyw83 Daiichi Institute of Technology 第一巄愭大学'),
(87288, 'https://ror.org/02v73qa91', 'en', 1, 'https://ror.org/02v73qa91 Coordinating Council for Women in History'),
(87289, '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'),
(87290, 'https://ror.org/02v7thk18', 'en', 1, 'https://ror.org/02v7thk18 Korea Golf University ķ•œźµ­ź³Øķ”„ėŒ€ķ•™źµ'),
(87291, 'https://ror.org/02v8d7770', 'en', 1, 'https://ror.org/02v8d7770 Bahria University Ų¬Ų§Ł…Ų¹Ū‚ بحریہ'),
(87292, 'https://ror.org/02v91xy81', 'en', 1, 'https://ror.org/02v91xy81 Stockholm Municipality'),
(87293, 'https://ror.org/02va56h85', 'en', 1, 'https://ror.org/02va56h85 Georgia Association of Educational Leaders'),
(87294, 'https://ror.org/02vbfm330', 'no_lang_code', 1, 'https://ror.org/02vbfm330 MannKind Corporation (United States)'),
(87295, 'https://ror.org/02vekd613', 'no_lang_code', 1, 'https://ror.org/02vekd613 OAI Consulting (United States)'),
(87296, 'https://ror.org/02vfaya75', 'en', 0, 'https://ror.org/02vfaya75 Art Institute of Seattle'),
(87297, 'https://ror.org/02vj4rn06', 'en', 1, 'https://ror.org/02vj4rn06 Zhejiang A & F University ęµ™ę±Ÿå†œęž—å¤§å­¦'),
(87298, 'https://ror.org/02vkssr45', 'en', 1, 'https://ror.org/02vkssr45 European Society of Clinical Microbiology and Infectious Diseases'),
(87299, 'https://ror.org/02vp2wp62', 'en', 1, 'https://ror.org/02vp2wp62 RGK Foundation'),
(87300, 'https://ror.org/02vpnw348', 'no_lang_code', 1, 'https://ror.org/02vpnw348 SS&C Technologies (United States)'),
(87301, 'https://ror.org/02vpyd330', 'en', 0, 'https://ror.org/02vpyd330 Saken Seifullin Kazakh Agro Technical University Š”. Š”ŠµŠ¹Ń„ŃƒŠ»Š»ŠøŠ½ атынГағы қазақ агротехникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(87302, 'https://ror.org/02vvrq321', 'en', 0, 'https://ror.org/02vvrq321 Texas A&M Health Science Center'),
(87303, 'https://ror.org/02vx0y638', 'no_lang_code', 1, 'https://ror.org/02vx0y638 Technik und Forschung im Betonbau (Switzerland)'),
(87304, 'https://ror.org/02vy3ff49', 'pt', 1, 'https://ror.org/02vy3ff49 Instituto Maria e Joao Aleixo'),
(87305, 'https://ror.org/02vzx8197', 'no_lang_code', 1, 'https://ror.org/02vzx8197 SIRIS Academic'),
(87306, 'https://ror.org/02w04sh96', 'en', 1, 'https://ror.org/02w04sh96 Ethel And James Flinn Foundation'),
(87307, 'https://ror.org/02w0cdv19', 'en', 0, 'https://ror.org/02w0cdv19 China Academy of Telecommunication Research å·„äøšå’Œäæ”ęÆåŒ–éƒØē”µäæ”ē ”ē©¶é™¢'),
(87308, 'https://ror.org/02w2j4197', 'it', 0, 'https://ror.org/02w2j4197 Istituto Nazionale della Nutrizione'),
(87309, 'https://ror.org/02w2rmb81', 'no_lang_code', 1, 'https://ror.org/02w2rmb81 EMS (United Kingdom)'),
(87310, 'https://ror.org/02w2wps72', 'en', 1, 'https://ror.org/02w2wps72 Institute for Computational Science and Technology'),
(87311, 'https://ror.org/02w4h2853', 'en', 1, 'https://ror.org/02w4h2853 American Association of Colleges of Nursing'),
(87312, 'https://ror.org/02w4tny03', 'en', 1, 'https://ror.org/02w4tny03 Shanghai University of Electric Power äøŠęµ·ē”µåŠ›å­¦é™¢'),
(87313, 'https://ror.org/02wckks30', 'pt', 1, 'https://ror.org/02wckks30 Instituto de Urologia e Nefrologia'),
(87314, 'https://ror.org/02wedp412', 'en', 1, 'https://ror.org/02wedp412 UK Dementia Research Institute'),
(87315, 'https://ror.org/02wf58e57', 'en', 1, 'https://ror.org/02wf58e57 Center for Health and Gender Equity'),
(87316, 'https://ror.org/02wg5z273', 'en', 0, 'https://ror.org/02wg5z273 Parkside School'),
(87317, 'https://ror.org/02wj29p03', 'en', 1, 'https://ror.org/02wj29p03 Southern Regional Education Board'),
(87318, 'https://ror.org/02wjbax77', 'en', 1, 'https://ror.org/02wjbax77 Korea Foundation for the Advancement of Science and Creativity'),
(87319, 'https://ror.org/02wpjhe84', 'en', 1, 'https://ror.org/02wpjhe84 Maryland Stem Cell Research Fund'),
(87320, 'https://ror.org/02wr3h045', 'en', 0, 'https://ror.org/02wr3h045 Minnesota Food Association'),
(87321, 'https://ror.org/02ws33e43', 'en', 1, 'https://ror.org/02ws33e43 Kanazawa Institute of Technology 金沢巄愭大学'),
(87322, 'https://ror.org/02wwgzr37', 'en', 0, 'https://ror.org/02wwgzr37 Sonoma County Museum'),
(87323, 'https://ror.org/02wwrf931', 'en', 1, 'https://ror.org/02wwrf931 Crotched Mountain'),
(87324, 'https://ror.org/02wxk3231', 'en', 0, 'https://ror.org/02wxk3231 Susan G Komen Utah'),
(87325, 'https://ror.org/02wxks544', 'en', 1, 'https://ror.org/02wxks544 Gray Foundation'),
(87326, 'https://ror.org/02x13r926', 'en', 0, 'https://ror.org/02x13r926 Jining Medical College'),
(87327, 'https://ror.org/02x35ep52', 'en', 1, 'https://ror.org/02x35ep52 NIIT University'),
(87328, 'https://ror.org/02x715f55', 'fr', 1, 'https://ror.org/02x715f55 Hochalpines Institut Ftan'),
(87329, 'https://ror.org/02x889y98', 'no_lang_code', 0, 'https://ror.org/02x889y98 Glidden (United States)'),
(87330, 'https://ror.org/02x89jc96', 'en', 1, 'https://ror.org/02x89jc96 Austria Institut für Europa- und Sicherheitspolitik Austrian Institute for European and Security Policy'),
(87331, 'https://ror.org/02x99ac45', 'en', 1, 'https://ror.org/02x99ac45 Yazd University دانؓگاه یزد'),
(87332, 'https://ror.org/02xa34907', 'en', 1, 'https://ror.org/02xa34907 Southern Nursing Research Society'),
(87333, 'https://ror.org/02xa8s021', 'en', 1, 'https://ror.org/02xa8s021 The Economic Research Institute for Northeast Asia å…¬ē›Šč²”å›£ę³•äŗŗē’°ę—„ęœ¬ęµ·ēµŒęøˆē ”ē©¶ę‰€'),
(87334, 'https://ror.org/02xfg4z45', 'en', 1, 'https://ror.org/02xfg4z45 Association of Community Health Nursing Educators'),
(87335, 'https://ror.org/02xhaj844', 'no_lang_code', 0, 'https://ror.org/02xhaj844 Chunichi Shimbun'),
(87336, 'https://ror.org/02xhgwv92', 'en', 1, 'https://ror.org/02xhgwv92 Epilepsy Ireland'),
(87337, 'https://ror.org/02xhmzq41', 'en', 1, 'https://ror.org/02xhmzq41 National Institute of Environmental Research'),
(87338, 'https://ror.org/02xhrye98', 'en', 1, 'https://ror.org/02xhrye98 Norwegian Institute for Cultural Heritage Research'),
(87339, 'https://ror.org/02xhx4j26', 'en', 1, 'https://ror.org/02xhx4j26 Centre for Marine Socioecology'),
(87340, 'https://ror.org/02xjrkt08', 'en', 1, 'https://ror.org/02xjrkt08 Second Affiliated Hospital of Soochow University'),
(87341, 'https://ror.org/02xkg9c32', 'en', 1, 'https://ror.org/02xkg9c32 Korean Association of Shipping and Logistics ķ•œźµ­ķ•“ģš“ė¬¼ė„˜ķ•™ķšŒ'),
(87342, 'https://ror.org/02xmkec90', 'en', 1, 'https://ror.org/02xmkec90 Kaohsiung Medical University Chung-Ho Memorial Hospital'),
(87343, 'https://ror.org/02xp3f208', 'en', 0, 'https://ror.org/02xp3f208 United Nations Office for Project Services'),
(87344, 'https://ror.org/02xp8v962', 'en', 1, 'https://ror.org/02xp8v962 Vineland Research and Innovation Centre'),
(87345, 'https://ror.org/02xqbj812', 'en', 0, 'https://ror.org/02xqbj812 Pacific State Medical University'),
(87346, 'https://ror.org/02xqyv944', 'en', 1, 'https://ror.org/02xqyv944 Mapiau Arolwg Ordnans Ordnance Survey'),
(87347, 'https://ror.org/02xr0t522', 'it', 1, 'https://ror.org/02xr0t522 Associazione Italiana di Tecnologia Meccanica'),
(87348, 'https://ror.org/02xven060', 'en', 1, 'https://ror.org/02xven060 Institut de la santƩ des Autochtones Institute of Indigenous Peoples'' Health'),
(87349, 'https://ror.org/02xwe7x13', 'en', 1, 'https://ror.org/02xwe7x13 Resource Center for Parents and Children'),
(87350, 'https://ror.org/02xx36a62', 'en', 1, 'https://ror.org/02xx36a62 Dove Cottage & the Wordsworth Museum'),
(87351, 'https://ror.org/02xz7aa11', 'no_lang_code', 1, 'https://ror.org/02xz7aa11 ReShape Lifesciences (United States)'),
(87352, 'https://ror.org/02xzkc718', 'en', 0, 'https://ror.org/02xzkc718 Alliant International University'),
(87353, 'https://ror.org/02y18ts25', 'en', 1, 'https://ror.org/02y18ts25 Bushehr University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŁˆŲ“Ł‡Ų±'),
(87354, 'https://ror.org/02y36cy40', 'no_lang_code', 1, 'https://ror.org/02y36cy40 Top Hat (Canada)'),
(87355, 'https://ror.org/02y9c4832', 'fr', 0, 'https://ror.org/02y9c4832 Ɖcole des Hautes Etudes Commerciales du Maroc'),
(87356, 'https://ror.org/02y9qjz38', 'en', 1, 'https://ror.org/02y9qjz38 Cancer Genomics Centre'),
(87357, 'https://ror.org/02yasb727', 'en', 1, 'https://ror.org/02yasb727 ARC Centre of Excellence for Integrative Brain Function'),
(87358, 'https://ror.org/02ybfkh30', 'en', 1, 'https://ror.org/02ybfkh30 Regional Research Council in Uppsala-Ɩrebro Region'),
(87359, 'https://ror.org/02ybsyy31', 'en', 1, 'https://ror.org/02ybsyy31 Jack Brockhoff Foundation'),
(87360, 'https://ror.org/02ybsz607', 'es', 1, 'https://ror.org/02ybsz607 Hospital General Universitario de Alicante Doctor Balmis'),
(87361, 'https://ror.org/02yfqyv95', 'en', 1, 'https://ror.org/02yfqyv95 Global Health Innovative Technology Fund'),
(87362, 'https://ror.org/02yfz4y25', 'no_lang_code', 1, 'https://ror.org/02yfz4y25 BioVentrix (United States)'),
(87363, 'https://ror.org/02yhcgx25', 'en', 1, 'https://ror.org/02yhcgx25 Manitoba Lung Association'),
(87364, 'https://ror.org/02ykn5012', 'nl', 1, 'https://ror.org/02ykn5012 Nederlandse Vereniging voor Anesthesiologie'),
(87365, 'https://ror.org/02ymd0q27', 'pt', 1, 'https://ror.org/02ymd0q27 Santa Casa de Misericórdia de Marília'),
(87366, 'https://ror.org/02ynbzc81', 'pt', 1, 'https://ror.org/02ynbzc81 Universidade de Fortaleza'),
(87367, 'https://ror.org/02yns5j97', 'en', 1, 'https://ror.org/02yns5j97 Society of Antiquaries'),
(87368, 'https://ror.org/02yntm683', 'en', 1, 'https://ror.org/02yntm683 Alex C. Walker Educational and Charitable Foundation'),
(87369, 'https://ror.org/02yp1ar49', 'en', 1, 'https://ror.org/02yp1ar49 Institutes for Journalism and Natural Resources'),
(87370, 'https://ror.org/02yqqv993', 'en', 1, 'https://ror.org/02yqqv993 Sechenov University ŠŸŠµŃ€Š²Ń‹Š¹ московский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. М. Деченова'),
(87371, 'https://ror.org/02yrq0923', 'en', 1, 'https://ror.org/02yrq0923 Memorial Sloan Kettering Cancer Center'),
(87372, 'https://ror.org/02ysyhv70', 'en', 1, 'https://ror.org/02ysyhv70 Pan African University Institute for Governance, Humanities and Social Sciences'),
(87373, 'https://ror.org/02yt0ry35', 'en', 1, 'https://ror.org/02yt0ry35 Odessa State Academy of Civil Engineering and Architecture ŠžŠ“ŠµŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° та Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(87374, 'https://ror.org/02yvsmh51', 'en', 1, 'https://ror.org/02yvsmh51 Helmholtz Alberta Initiative'),
(87375, 'https://ror.org/02yw1f353', 'fr', 1, 'https://ror.org/02yw1f353 Institut BergoniƩ'),
(87376, 'https://ror.org/02yw97t38', 'no_lang_code', 0, 'https://ror.org/02yw97t38 Search Technologies (United States)'),
(87377, 'https://ror.org/02ywmqv15', 'fr', 1, 'https://ror.org/02ywmqv15'),
(87378, 'https://ror.org/02yxs9t24', 'no_lang_code', 1, 'https://ror.org/02yxs9t24 Analytical Biological Services (United States)'),
(87379, 'https://ror.org/02yz2ed22', 'de', 1, 'https://ror.org/02yz2ed22 Institut für Psychologische Psychotherapie'),
(87380, 'https://ror.org/02z0c8z45', 'no_lang_code', 1, 'https://ror.org/02z0c8z45 PharmaResearch Products (South Korea)'),
(87381, 'https://ror.org/02z28nb98', 'no_lang_code', 1, 'https://ror.org/02z28nb98 Avanir Pharmaceuticals (United States)'),
(87382, 'https://ror.org/02z31g829', 'en', 1, 'https://ror.org/02z31g829 SkƄne University Hospital SkƄnes universitetssjukhus'),
(87383, 'https://ror.org/02z37qb25', 'en', 1, 'https://ror.org/02z37qb25 NIHR Exeter Clinical Research Facility'),
(87384, 'https://ror.org/02z3q8x80', 'es', 1, 'https://ror.org/02z3q8x80 Instituto Nacional de Formación Técnica Profesional'),
(87385, 'https://ror.org/02z3t5745', 'es', 1, 'https://ror.org/02z3t5745 Fundación para la Investigación, Docencia y Prevención del CÔncer'),
(87386, 'https://ror.org/02z67yh79', 'no_lang_code', 0, 'https://ror.org/02z67yh79 Ansys (France)'),
(87387, 'https://ror.org/02z8z1589', 'en', 1, 'https://ror.org/02z8z1589 Indian Institute of Information Technology Una ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ऊना'),
(87388, 'https://ror.org/02z9ca723', 'en', 1, 'https://ror.org/02z9ca723 Swiss Polar Institute'),
(87389, 'https://ror.org/02z9sft96', 'en', 1, 'https://ror.org/02z9sft96 Departamento de Transporte del Distrito de Columbia District Department of Transportation'),
(87390, 'https://ror.org/02zc7ec14', 'no_lang_code', 1, 'https://ror.org/02zc7ec14 Universal Display Corporation'),
(87391, 'https://ror.org/02zcab046', 'en', 1, 'https://ror.org/02zcab046 Industrial and Commercial Bank of China äø­å›½å·„å•†é“¶č”Œč‚”ä»½ęœ‰é™å…¬åø'),
(87392, 'https://ror.org/02zcjdk53', 'en', 1, 'https://ror.org/02zcjdk53 Tübitak National Metrology Institute Ulusal Metroloji Enstitüsü'),
(87393, 'https://ror.org/02zdkmf61', 'en', 0, 'https://ror.org/02zdkmf61 Purdue University Calumet'),
(87394, 'https://ror.org/02zdpmw21', 'en', 1, 'https://ror.org/02zdpmw21 Prek Leap National College of Agriculture įžŸįž¶įž›įž¶įž‡įž¶įžįž·įž€įžŸįž·įž€įž˜įŸ’įž˜įž–įŸ’įžšįŸ‚įž€įž›įŸ€įž”'),
(87395, 'https://ror.org/02zekek97', 'fr', 1, 'https://ror.org/02zekek97 Centre Hospitalier Universitaire de Tivoli'),
(87396, 'https://ror.org/02zfbxd25', 'pl', 0, 'https://ror.org/02zfbxd25 Akademia Wychowania Fizycznego Józefa Piłsudskiego w Warszawie'),
(87397, 'https://ror.org/02zgetr42', 'hu', 1, 'https://ror.org/02zgetr42 Egri HittudomĆ”nyi Főiskola'),
(87398, 'https://ror.org/02zkjpt31', 'en', 1, 'https://ror.org/02zkjpt31 Virginia G Piper Charitable Trust'),
(87399, 'https://ror.org/02zncn897', 'en', 1, 'https://ror.org/02zncn897 Adolf Messer Foundation Adolf Messer Stiftung'),
(87400, 'https://ror.org/02zpxgh81', 'en', 1, 'https://ror.org/02zpxgh81 Guru Jambheshwar University of Science and Technology ą¤—ą„ą¤°ą„ ą¤œą¤‚ą¤­ą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ குரு ą®œą®®ąÆą®ŖąÆ‡ą®šąÆą®µą®°ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(87401, 'https://ror.org/02zrtpp84', 'en', 1, 'https://ror.org/02zrtpp84 Visvesvaraya National Institute of Technology ą¤µą¤æą¤¶ą„ą¤µą„‡ą¤¶ą„ą¤µą¤°ą„ˆą¤Æą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(87402, 'https://ror.org/02zt8q459', 'de', 0, 'https://ror.org/02zt8q459 Institut für Angewandte Geodäsie'),
(87403, 'https://ror.org/02zv3m156', 'en', 1, 'https://ror.org/02zv3m156 EcoHealth Alliance'),
(87404, 'https://ror.org/02zv9xv82', 'en', 1, 'https://ror.org/02zv9xv82 Australian Centre for Robotic Vision'),
(87405, 'https://ror.org/02zxd7j32', 'da', 1, 'https://ror.org/02zxd7j32 Fonden af 17-12-1981'),
(87406, 'https://ror.org/02zyged10', 'pt', 1, 'https://ror.org/02zyged10 Biomass Centre for Energy Centro da Biomassa para a Energia'),
(87407, 'https://ror.org/02zynam48', 'no_lang_code', 1, 'https://ror.org/02zynam48 MBF Bioscience (United States)'),
(87408, 'https://ror.org/02zyqwj39', 'no_lang_code', 1, 'https://ror.org/02zyqwj39 Da Volterra (France)'),
(87409, 'https://ror.org/02zzdgk49', 'en', 1, 'https://ror.org/02zzdgk49 Bliss'),
(87410, 'https://ror.org/0300m5276', 'no_lang_code', 1, 'https://ror.org/0300m5276 Microsoft Research Asia (China)'),
(87411, 'https://ror.org/030111688', 'en', 1, 'https://ror.org/030111688 University of Technology, Mauritius'),
(87412, 'https://ror.org/0301ypw98', 'no_lang_code', 0, 'https://ror.org/0301ypw98 MDA Corporation'),
(87413, 'https://ror.org/03037ae82', 'en', 1, 'https://ror.org/03037ae82 Linda Hall Library'),
(87414, 'https://ror.org/03078b858', 'en', 1, 'https://ror.org/03078b858 Idea Wild'),
(87415, 'https://ror.org/0307fa790', 'en', 1, 'https://ror.org/0307fa790 Egyptian Society of Cardiology'),
(87416, 'https://ror.org/0307rp314', 'no_lang_code', 1, 'https://ror.org/0307rp314 AT&S (Austria)'),
(87417, 'https://ror.org/0308pcp34', 'en', 1, 'https://ror.org/0308pcp34 National Academy of Music Prof. Pancho Vladigerov ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° музикална Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ā€žŠŸŠ°Š½Ń‡Š¾ ВлаГигеров'),
(87418, 'https://ror.org/0308s4091', 'en', 0, 'https://ror.org/0308s4091 Eijkman Institute for Molecular Biology'),
(87419, 'https://ror.org/03097jc32', 'en', 0, 'https://ror.org/03097jc32 United Nations Population Fund'),
(87420, 'https://ror.org/030a08k25', 'en', 1, 'https://ror.org/030a08k25 Jishan County People''s Hospital ēØ·å±±åŽæäŗŗę°‘åŒ»é™¢'),
(87421, 'https://ror.org/030atj633', 'en', 1, 'https://ror.org/030atj633 Ministry of Health'),
(87422, 'https://ror.org/030cztq64', 'en', 1, 'https://ror.org/030cztq64 European Association of Nuclear Medicine'),
(87423, 'https://ror.org/030ejb683', 'en', 1, 'https://ror.org/030ejb683 Perth and Kinross Council'),
(87424, 'https://ror.org/030evqs35', 'no_lang_code', 0, 'https://ror.org/030evqs35 DB Schenker Rail Automotive (Germany)'),
(87425, 'https://ror.org/030fg5085', 'en', 0, 'https://ror.org/030fg5085 Aberystwyth University'),
(87426, 'https://ror.org/030n6z794', 'en', 1, 'https://ror.org/030n6z794 Aerospace Technology Institute'),
(87427, 'https://ror.org/030pjfg04', 'no_lang_code', 1, 'https://ror.org/030pjfg04 VIR Biotechnology (United States)'),
(87428, 'https://ror.org/030r5af82', 'de', 1, 'https://ror.org/030r5af82 Stadtarchiv Krems'),
(87429, 'https://ror.org/030rh2891', 'en', 1, 'https://ror.org/030rh2891 New Music USA'),
(87430, 'https://ror.org/030rhf128', 'no_lang_code', 1, 'https://ror.org/030rhf128 Bunge (United States)'),
(87431, 'https://ror.org/030sdfc18', 'no_lang_code', 1, 'https://ror.org/030sdfc18 Maze (United States)'),
(87432, 'https://ror.org/030v5kp38', 'en', 1, 'https://ror.org/030v5kp38 University Hospital of North Norway'),
(87433, 'https://ror.org/030ve2c48', 'es', 1, 'https://ror.org/030ve2c48 Technological University of Panama Universidad Tecnológica de PanamÔ'),
(87434, 'https://ror.org/030wfqt16', 'en', 1, 'https://ror.org/030wfqt16 International Nut and Dried Fruit Council'),
(87435, 'https://ror.org/030y57545', 'en', 0, 'https://ror.org/030y57545 Argosy University'),
(87436, 'https://ror.org/03108sf43', 'en', 1, 'https://ror.org/03108sf43 Jiangsu Cancer Hospital ę±Ÿč‹ēœč‚æē˜¤é˜²ę²»ē ”ē©¶ę‰€'),
(87437, 'https://ror.org/0310rqm53', 'da', 0, 'https://ror.org/0310rqm53 Teres Hospitalet Parken'),
(87438, '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');
INSERT INTO `rors` VALUES
(87439, 'https://ror.org/0312ed861', 'no_lang_code', 0, 'https://ror.org/0312ed861 UKK Institute'),
(87440, 'https://ror.org/031362551', 'no_lang_code', 1, 'https://ror.org/031362551 KIC InnoEnergy (Netherlands)'),
(87441, 'https://ror.org/0314d3054', 'no_lang_code', 0, 'https://ror.org/0314d3054 The University Press Universitetsforlaget (Norway)'),
(87442, 'https://ror.org/03151rh82', 'en', 1, 'https://ror.org/03151rh82 Louisiana State University Health Sciences Center Shreveport'),
(87443, 'https://ror.org/0316s5q91', 'en', 1, 'https://ror.org/0316s5q91 McPin Foundation'),
(87444, 'https://ror.org/031847v02', 'en', 1, 'https://ror.org/031847v02 Cleen Foundation'),
(87445, 'https://ror.org/031a97q88', 'pt', 1, 'https://ror.org/031a97q88 Instituto Pró-Carnívoros'),
(87446, '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'),
(87447, 'https://ror.org/031bqzx14', 'no_lang_code', 0, 'https://ror.org/031bqzx14 Selexys Pharmaceuticals (United States)'),
(87448, 'https://ror.org/031ck0t15', 'en', 1, 'https://ror.org/031ck0t15 Kirov State Medical Academy ŠšŠøŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(87449, 'https://ror.org/031cpdm45', 'no_lang_code', 1, 'https://ror.org/031cpdm45 HyTest (Finland)'),
(87450, 'https://ror.org/031d5vw30', 'en', 1, 'https://ror.org/031d5vw30 Universitatea de Medicină și Farmacie din Craiova University of Medicine and Pharmacy of Craiova'),
(87451, 'https://ror.org/031e3a572', 'en', 1, 'https://ror.org/031e3a572 North Eastern Polytechnic Vocational College'),
(87452, 'https://ror.org/031f26978', 'no_lang_code', 0, 'https://ror.org/031f26978 Leica Biosystems (United States)'),
(87453, 'https://ror.org/031grv205', 'en', 1, 'https://ror.org/031grv205 Framingham Heart Study'),
(87454, 'https://ror.org/031j63392', 'en', 0, 'https://ror.org/031j63392 CAS-MPG Partner Institute for Computational Biology 中国科学院-é©¬ę™®å­¦ä¼šč®”ē®—ē”Ÿē‰©å­¦ä¼™ä¼“ē ”ē©¶ę‰€'),
(87455, 'https://ror.org/031jv9v19', 'en', 1, 'https://ror.org/031jv9v19 European & Developing Countries Clinical Trials Partnership'),
(87456, 'https://ror.org/031kbv921', 'en', 0, 'https://ror.org/031kbv921 GBF German Research Centre for Biotechnology Helmholtz-Gemeinschaft Deutscher Forschungszentren'),
(87457, 'https://ror.org/031kn1t70', 'en', 1, 'https://ror.org/031kn1t70 Illinois Coalition Against Sexual Assault'),
(87458, 'https://ror.org/031mf4x23', 'de', 0, 'https://ror.org/031mf4x23 Landesnervenklinik Wagner-Jauregg'),
(87459, 'https://ror.org/031mgj447', 'no_lang_code', 1, 'https://ror.org/031mgj447 BioCryst Pharmaceuticals (United States)'),
(87460, 'https://ror.org/031n1rn61', 'en', 1, 'https://ror.org/031n1rn61 Duke Institute for Health Innovation'),
(87461, 'https://ror.org/031npqv35', 'en', 1, 'https://ror.org/031npqv35 Chongqing Institute of Green and Intelligent Technology é‡åŗ†ē»æč‰²ę™ŗčƒ½ęŠ€ęœÆē ”ē©¶é™¢'),
(87462, 'https://ror.org/031p65n62', 'no_lang_code', 1, 'https://ror.org/031p65n62 Amorepacific (South Korea)'),
(87463, 'https://ror.org/031pjfg83', 'no_lang_code', 0, 'https://ror.org/031pjfg83 Bard (United Kingdom)'),
(87464, 'https://ror.org/031t3ke23', 'no_lang_code', 1, 'https://ror.org/031t3ke23 Rothband (United Kingdom)'),
(87465, 'https://ror.org/031vc2293', 'de', 1, 'https://ror.org/031vc2293 TU Bergakademie Freiberg, Technische UniversitƤt Bergakademie Freiberg'),
(87466, 'https://ror.org/031vwce94', 'en', 1, 'https://ror.org/031vwce94 Casper Líbero Foundation Fundação CÔsper Líbero'),
(87467, 'https://ror.org/0320x4r67', 'no_lang_code', 1, 'https://ror.org/0320x4r67 Canfor Pulp Products (Canada)'),
(87468, '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'),
(87469, 'https://ror.org/0325z9a60', 'no_lang_code', 1, 'https://ror.org/0325z9a60 ZBC Multicare (Netherlands)'),
(87470, 'https://ror.org/0327gbb75', 'no_lang_code', 1, 'https://ror.org/0327gbb75 BioDelivery Sciences International (United States)'),
(87471, 'https://ror.org/0327hg630', 'en', 0, 'https://ror.org/0327hg630 University of California Museum of Paleontology'),
(87472, 'https://ror.org/0327mmx61', 'en', 1, 'https://ror.org/0327mmx61 Maurice Wilkins Centre'),
(87473, 'https://ror.org/032atxq54', 'en', 1, 'https://ror.org/032atxq54 David and Lucile Packard Foundation'),
(87474, 'https://ror.org/032b60f45', 'en', 1, 'https://ror.org/032b60f45 University of Samarra Ų¬Ų§Ł…Ų¹Ų© Ų³Ų§Ł…Ų±Ų§Ų”'),
(87475, 'https://ror.org/032m3tm58', 'en', 1, 'https://ror.org/032m3tm58 Medical Foundation of North Carolina'),
(87476, 'https://ror.org/032mgcs57', 'en', 1, 'https://ror.org/032mgcs57 Public Safety Canada SƩcuritƩ publique Canada'),
(87477, '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'),
(87478, 'https://ror.org/032q5ym94', 'en', 1, 'https://ror.org/032q5ym94 Athinoula A. Martinos Center for Biomedical Imaging'),
(87479, 'https://ror.org/032sd0c64', 'en', 1, 'https://ror.org/032sd0c64 Southern Oregon Orthopedics'),
(87480, 'https://ror.org/032td6a33', 'no_lang_code', 0, 'https://ror.org/032td6a33 SK Innovation (South Korea)'),
(87481, 'https://ror.org/032v9er22', 'en', 1, 'https://ror.org/032v9er22 Norwegian Armed Forces'),
(87482, 'https://ror.org/032w5j703', 'en', 1, 'https://ror.org/032w5j703 Museum of Applied Arts & Sciences'),
(87483, 'https://ror.org/032wnys85', 'en', 0, 'https://ror.org/032wnys85 Penn State Fayette'),
(87484, 'https://ror.org/032y0n460', 'es', 1, 'https://ror.org/032y0n460 Instituto Nacional de Salud PĆŗblica National Institute of Public Health of Mexico'),
(87485, 'https://ror.org/032ydsv23', 'en', 1, 'https://ror.org/032ydsv23 Understanding Society'),
(87486, 'https://ror.org/0331wat71', 'en', 1, 'https://ror.org/0331wat71 Akershus University Hospital Akershus universitetssykehus'),
(87487, 'https://ror.org/0331zs648', 'no_lang_code', 1, 'https://ror.org/0331zs648 Siriraj Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøØąø“ąø£ąø“ąø£ąø²ąøŠ'),
(87488, 'https://ror.org/0332bbh94', 'en', 1, 'https://ror.org/0332bbh94 Juvenile Diabetes Research Foundation'),
(87489, 'https://ror.org/0333e3w09', 'fr', 1, 'https://ror.org/0333e3w09 Recherches Scientifiques Luxembourg'),
(87490, 'https://ror.org/0334n3565', 'en', 1, 'https://ror.org/0334n3565 Howard and Georgeanna Jones Foundation for Reproductive Medicine'),
(87491, 'https://ror.org/0334vj093', 'no_lang_code', 1, 'https://ror.org/0334vj093 C-Motion (United States)'),
(87492, 'https://ror.org/03378gm70', 'en', 1, 'https://ror.org/03378gm70 Dimitrie Cantemir Christian University Universitatea Creștină Dimitrie Cantemir'),
(87493, 'https://ror.org/03389ap47', 'en', 1, 'https://ror.org/03389ap47 California Academy of Family Physicians'),
(87494, 'https://ror.org/03390n084', 'no_lang_code', 0, 'https://ror.org/03390n084 RWE npower (United Kingdom)'),
(87495, 'https://ror.org/033bc0070', 'no_lang_code', 0, 'https://ror.org/033bc0070 Cepheid (United States)'),
(87496, 'https://ror.org/033c08p70', 'en', 1, 'https://ror.org/033c08p70 Thurgood Marshall College Fund'),
(87497, 'https://ror.org/033f9e204', 'de', 1, 'https://ror.org/033f9e204 Katholischer Akademischer AuslƤnder-Dienst'),
(87498, 'https://ror.org/033f9yy33', 'en', 1, 'https://ror.org/033f9yy33 NCCR Chemical Biology - Visualisation and Control of Biological Processes Using Chemistry'),
(87499, 'https://ror.org/033janr42', 'en', 1, 'https://ror.org/033janr42 Quebec Rehabilitation Research Network RƩseau Provincial de Recherche en Adaptation RƩadaptation'),
(87500, 'https://ror.org/033jftm25', 'en', 1, 'https://ror.org/033jftm25 Australian Access Federation'),
(87501, 'https://ror.org/033k6n428', 'en', 0, 'https://ror.org/033k6n428 General Hospital Nice Piraeus Saint Panteleimon'),
(87502, 'https://ror.org/033nbnf69', 'en', 1, 'https://ror.org/033nbnf69 Shanghai Pulmonary Hospital'),
(87503, 'https://ror.org/033nwpd38', 'en', 0, 'https://ror.org/033nwpd38 Tokyo Women''s Junior College of Physical Education ę±äŗ¬å„³å­ä½“č‚²ēŸ­ęœŸå¤§å­¦'),
(87504, 'https://ror.org/033p30a55', 'fr', 0, 'https://ror.org/033p30a55 Zéfiro Théâtre'),
(87505, 'https://ror.org/033p51247', 'no_lang_code', 1, 'https://ror.org/033p51247 MindSpec'),
(87506, 'https://ror.org/033r0hh63', 'fi', 1, 'https://ror.org/033r0hh63 SilmƤsƤƤtiƶ'),
(87507, 'https://ror.org/033x3yk48', 'no_lang_code', 0, 'https://ror.org/033x3yk48 Dow Agrosciences (United Kingdom)'),
(87508, 'https://ror.org/033xeem90', 'en', 0, 'https://ror.org/033xeem90 Argosy University'),
(87509, 'https://ror.org/033xvax87', 'nl', 1, 'https://ror.org/033xvax87 Medisch Spectrum Twente'),
(87510, 'https://ror.org/033ypzd50', 'no_lang_code', 1, 'https://ror.org/033ypzd50 Medical & Biological Laboratories (Japan)'),
(87511, 'https://ror.org/033z2gt89', 'fr', 1, 'https://ror.org/033z2gt89 Association FranƧaise de PƩdiatrie Ambulatoire'),
(87512, 'https://ror.org/033z60d46', 'no_lang_code', 0, 'https://ror.org/033z60d46 Shire (Sweden)'),
(87513, 'https://ror.org/033ztpr93', 'en', 1, 'https://ror.org/033ztpr93 Texas Tech University Health Sciences Center'),
(87514, 'https://ror.org/034179816', 'en', 1, 'https://ror.org/034179816 Government of Hong Kong äø­åŽäŗŗę°‘å…±å’Œå›½é¦™ęøÆē‰¹åˆ«č”Œę”æåŒŗę”æåŗœ'),
(87515, 'https://ror.org/0342vy561', 'en', 0, 'https://ror.org/0342vy561 Penn State Brandywine'),
(87516, 'https://ror.org/0343jym73', 'no_lang_code', 1, 'https://ror.org/0343jym73 University of al-Qarawiyyin UniversitĆ© Al Quaraouiyine Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ų±ŁˆŁŠŁŠŁ†'),
(87517, 'https://ror.org/0344hmj91', 'en', 1, 'https://ror.org/0344hmj91 Royal Town Planning Institute'),
(87518, 'https://ror.org/034603r08', 'fi', 1, 'https://ror.org/034603r08 Finnish Cardiac Society Suomen Kardiologinen Seura'),
(87519, 'https://ror.org/0348vjd58', 'en', 1, 'https://ror.org/0348vjd58 Society for Leukocyte Biology'),
(87520, 'https://ror.org/034aqab36', 'en', 0, 'https://ror.org/034aqab36 Texas Tech University'),
(87521, 'https://ror.org/034e7c066', 'no_lang_code', 1, 'https://ror.org/034e7c066 Laboratoires Servier Servier (France)'),
(87522, 'https://ror.org/034erzg96', 'de', 1, 'https://ror.org/034erzg96 DGPro, Deutsche Gesellschaft für Prothetische Zahnmedizin und Biomaterialien'),
(87523, 'https://ror.org/034gkfh25', 'no_lang_code', 1, 'https://ror.org/034gkfh25 Intas Pharmaceuticals (India)'),
(87524, 'https://ror.org/034gm6584', 'en', 1, 'https://ror.org/034gm6584 Royal New Zealand College of General Practitioners'),
(87525, 'https://ror.org/034haf133', 'en', 1, 'https://ror.org/034haf133 First Hospital of Jilin University å‰ęž—å¤§å­¦ē¬¬äø€åŒ»é™¢'),
(87526, 'https://ror.org/034jx4s30', 'en', 1, 'https://ror.org/034jx4s30 Fundación INFANT Infant Foundation'),
(87527, 'https://ror.org/034m6ke32', 'en', 1, 'https://ror.org/034m6ke32 Africa Health Research Institute'),
(87528, 'https://ror.org/034me3y30', 'es', 1, 'https://ror.org/034me3y30 Universidad del Valle'),
(87529, 'https://ror.org/034nb0f30', 'en', 1, 'https://ror.org/034nb0f30 Digestive Health Research Institute Institut de Recherche en SantƩ Digestive'),
(87530, 'https://ror.org/034paap41', 'no_lang_code', 0, 'https://ror.org/034paap41 Selex ES (Germany)'),
(87531, 'https://ror.org/034qq8x03', 'no_lang_code', 1, 'https://ror.org/034qq8x03 Madrigal Pharmaceuticals (United States)'),
(87532, 'https://ror.org/034rhsb33', 'en', 1, 'https://ror.org/034rhsb33 Helmholtz-Institut Ulm Helmholtz-Institute Ulm'),
(87533, 'https://ror.org/034t1zf11', 'fr', 1, 'https://ror.org/034t1zf11 Plan Bleu'),
(87534, 'https://ror.org/034vnkd20', 'en', 1, 'https://ror.org/034vnkd20 Chatham House'),
(87535, 'https://ror.org/034w4b143', 'en', 0, 'https://ror.org/034w4b143 University Hospital'),
(87536, 'https://ror.org/034w85g23', 'en', 0, 'https://ror.org/034w85g23 George Washington University Museum'),
(87537, 'https://ror.org/034wtnz85', 'de', 0, 'https://ror.org/034wtnz85 LehrkrankenhƤuser'),
(87538, 'https://ror.org/034xhb710', 'no_lang_code', 1, 'https://ror.org/034xhb710 Matenadaran Õ„Õ„Õ½Ö€ÕøÕŗ ՄՔշտոցի Õ”Õ¶Õ¾Õ”Õ¶ Õ°Õ«Õ¶ Õ±Õ„Õ¼Õ”Õ£Ö€Õ„Ö€Õ« Õ«Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(87539, 'https://ror.org/034ymz395', 'en', 0, 'https://ror.org/034ymz395 Art Institute of New York'),
(87540, 'https://ror.org/034ys6045', 'en', 0, 'https://ror.org/034ys6045 MRC Anatomical Neuropharmacology Unit'),
(87541, 'https://ror.org/034zn5b34', 'fr', 1, 'https://ror.org/034zn5b34 HƓpital Rangueil'),
(87542, 'https://ror.org/0350gdh15', 'no_lang_code', 0, 'https://ror.org/0350gdh15 Kinetics Technology (Italy)'),
(87543, 'https://ror.org/0355d9b09', 'de', 1, 'https://ror.org/0355d9b09 Hochschule für Angewandte Sprachen, Sprachen & Dolmetscher Institut München'),
(87544, 'https://ror.org/0355ntm61', 'en', 0, 'https://ror.org/0355ntm61 Avila College'),
(87545, 'https://ror.org/035713c15', 'en', 0, 'https://ror.org/035713c15 Koryo International College å…‰é™µå„³å­ēŸ­ęœŸå¤§å­¦'),
(87546, 'https://ror.org/035a9pe58', 'en', 0, 'https://ror.org/035a9pe58 International Institute of Tropical Agriculture'),
(87547, 'https://ror.org/035h3r191', 'en', 1, 'https://ror.org/035h3r191 Damietta University Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ…ŁŠŲ§Ų·'),
(87548, 'https://ror.org/035hxad97', 'en', 1, 'https://ror.org/035hxad97 Tongren University 铜仁大学'),
(87549, 'https://ror.org/035jwz470', 'en', 1, 'https://ror.org/035jwz470 Nordic Energy Research'),
(87550, 'https://ror.org/035khj741', 'no_lang_code', 0, 'https://ror.org/035khj741 Seibo Jogakuin Junior College č–ęÆå„³å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(87551, 'https://ror.org/035kpke84', 'en', 1, 'https://ror.org/035kpke84 Tokyo Polytechnic University ę±äŗ¬å·„čŠøå¤§å­¦'),
(87552, 'https://ror.org/035n7q728', 'no_lang_code', 1, 'https://ror.org/035n7q728 Saudi Aramco (United States)'),
(87553, 'https://ror.org/035q6k606', 'no_lang_code', 0, 'https://ror.org/035q6k606 Acoustic MedSystems'),
(87554, 'https://ror.org/035qbs093', 'no_lang_code', 1, 'https://ror.org/035qbs093 Evercyte (Austria)'),
(87555, 'https://ror.org/035r0vx98', 'en', 0, 'https://ror.org/035r0vx98 Texas Tech University'),
(87556, 'https://ror.org/035rzkx15', 'en', 1, 'https://ror.org/035rzkx15 Jena University Hospital UniversitƤtsklinikum Jena'),
(87557, 'https://ror.org/035yf7a66', 'en', 1, 'https://ror.org/035yf7a66 Edward Mallinckrodt Jr. Foundation'),
(87558, 'https://ror.org/035ywh910', 'en', 1, 'https://ror.org/035ywh910 Acquired Brain Injury Ireland'),
(87559, 'https://ror.org/035z7nm42', 'en', 0, 'https://ror.org/035z7nm42 Shionogi Institute For Medical Science'),
(87560, 'https://ror.org/035z7sv25', 'en', 1, 'https://ror.org/035z7sv25 Housing Research Foundation äø€čˆ¬č²”å›£ę³•äŗŗä½ē·ē ”'),
(87561, 'https://ror.org/03604d246', 'en', 1, 'https://ror.org/03604d246 Japan Surgical Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å¤–ē§‘å­¦ä¼š'),
(87562, 'https://ror.org/0360ybs31', 'en', 1, 'https://ror.org/0360ybs31 Brightlands Materials Center'),
(87563, 'https://ror.org/0361c8163', 'en', 1, 'https://ror.org/0361c8163 Ruppin Academic Center ×”×ž×Ø×›×– האקדמי ×Ø×•×¤×™×Ÿ'),
(87564, 'https://ror.org/0366mhr44', 'en', 1, 'https://ror.org/0366mhr44 Gnanamani College of Technology'),
(87565, 'https://ror.org/0367ekx87', 'en', 1, 'https://ror.org/0367ekx87 James N. Kirby Foundation'),
(87566, 'https://ror.org/0367xsy85', 'no_lang_code', 1, 'https://ror.org/0367xsy85 Novarex (South Korea)'),
(87567, 'https://ror.org/03695pz98', 'no_lang_code', 0, 'https://ror.org/03695pz98 Scientific Systems (United States)'),
(87568, 'https://ror.org/03696td91', 'no_lang_code', 1, 'https://ror.org/03696td91 SK Group (South Korea) ģ—ģŠ¤ģ¼€ģ“ź·øė£¹'),
(87569, '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'),
(87570, 'https://ror.org/0369q9269', 'no_lang_code', 0, 'https://ror.org/0369q9269 Cambridge Energy Research Associates'),
(87571, 'https://ror.org/036abw928', 'no_lang_code', 1, 'https://ror.org/036abw928 Ferd (Norway)'),
(87572, 'https://ror.org/036brtn72', 'en', 1, 'https://ror.org/036brtn72 Foundation of Hope'),
(87573, 'https://ror.org/036dyz052', 'en', 1, 'https://ror.org/036dyz052 PLA Navy General Hospital'),
(87574, 'https://ror.org/036e5c451', 'en', 1, 'https://ror.org/036e5c451 Bundesministerium für Arbeit und Soziales Federal Ministry of Labour and Social Affairs'),
(87575, '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'),
(87576, 'https://ror.org/036f4qq27', 'en', 1, 'https://ror.org/036f4qq27 The Arrhythmia Institute'),
(87577, 'https://ror.org/036f91331', 'en', 1, 'https://ror.org/036f91331 Dioraphte Foundation Stichting Dioraphte'),
(87578, 'https://ror.org/036gxz473', 'no_lang_code', 0, 'https://ror.org/036gxz473 Eurovia (Czechia)'),
(87579, 'https://ror.org/036hgj583', 'no_lang_code', 1, 'https://ror.org/036hgj583 Alberta Pacific Forest Industries'),
(87580, 'https://ror.org/036jb8273', 'en', 1, 'https://ror.org/036jb8273 Foundation for the Promotion of Ion Engineering'),
(87581, 'https://ror.org/036ma1a21', 'en', 0, 'https://ror.org/036ma1a21 Webster University'),
(87582, 'https://ror.org/036nnve53', 'en', 0, 'https://ror.org/036nnve53 Argosy University'),
(87583, 'https://ror.org/036nr5945', 'no_lang_code', 1, 'https://ror.org/036nr5945 Applied Biomathematics (United States)'),
(87584, 'https://ror.org/036pfyg09', 'en', 1, 'https://ror.org/036pfyg09 Society for Adolescent Health and Medicine'),
(87585, 'https://ror.org/036q92x95', 'no_lang_code', 1, 'https://ror.org/036q92x95 Shigakkan University 至学館大学'),
(87586, 'https://ror.org/036qk3s40', 'no_lang_code', 1, 'https://ror.org/036qk3s40 Isles'),
(87587, 'https://ror.org/036rdqh43', 'pt', 1, 'https://ror.org/036rdqh43 Fundação Escola de Sociologia e Política de São Paulo'),
(87588, 'https://ror.org/036rmcm53', 'en', 0, 'https://ror.org/036rmcm53 Centre for Applied Science and Technology'),
(87589, 'https://ror.org/036rzqn25', 'en', 1, 'https://ror.org/036rzqn25 China Academy of Building Research 中国建筑科学研究院'),
(87590, 'https://ror.org/036s3gz19', 'en', 1, 'https://ror.org/036s3gz19 Analysis & Policy Observatory'),
(87591, 'https://ror.org/036wvdb36', 'en', 0, 'https://ror.org/036wvdb36 Darwin College'),
(87592, 'https://ror.org/036xnae80', 'en', 1, 'https://ror.org/036xnae80 Kathmandu University ą¤•ą¤¾ą¤ ą¤®ą¤¾ą¤”ą„Œą¤‚ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(87593, 'https://ror.org/036xxdj36', 'en', 1, 'https://ror.org/036xxdj36 International University of Professional Studies'),
(87594, 'https://ror.org/0370v7d46', 'en', 1, 'https://ror.org/0370v7d46 National Quemoy University åœ‹ē«‹é‡‘é–€å¤§å­ø'),
(87595, 'https://ror.org/0371fqr87', 'en', 1, 'https://ror.org/0371fqr87 Wuhan Union Hospital ę­¦ę±‰åå’ŒåŒ»é™¢'),
(87596, 'https://ror.org/0373pbp25', 'en', 1, 'https://ror.org/0373pbp25 Covenant HealthCare'),
(87597, 'https://ror.org/03752z258', 'en', 1, 'https://ror.org/03752z258 DOEN Foundation Stichting DOEN'),
(87598, 'https://ror.org/0375ste74', 'en', 1, 'https://ror.org/0375ste74 POSCO TJ Park Foundation'),
(87599, 'https://ror.org/0376kfa34', 'fr', 1, 'https://ror.org/0376kfa34 Centre Hospitalier Universitaire de Martinique'),
(87600, 'https://ror.org/037a0yt94', 'en', 0, 'https://ror.org/037a0yt94 Texas Tech University'),
(87601, 'https://ror.org/037adk771', 'en', 1, 'https://ror.org/037adk771 South African National Parks'),
(87602, 'https://ror.org/037c01n91', 'en', 1, 'https://ror.org/037c01n91 Southern Medical University Shenzhen Hospital å—ę–¹åŒ»ē§‘å¤§å­¦ę·±åœ³åŒ»é™¢'),
(87603, 'https://ror.org/037fhg487', 'no_lang_code', 1, 'https://ror.org/037fhg487 Glenmark Pharmaceuticals (India)'),
(87604, 'https://ror.org/037hqgd69', 'en', 1, 'https://ror.org/037hqgd69 Asia School of Business'),
(87605, 'https://ror.org/037k29e77', 'en', 1, 'https://ror.org/037k29e77 Iranian National Institute for Oceanography and Atmospheric Science Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł…Ł„ŪŒ Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų“Ł†Ų§Ų³ŪŒ و Ų¹Ł„ŁˆŁ… جوی'),
(87606, 'https://ror.org/037kf1624', 'en', 0, 'https://ror.org/037kf1624 Art Institute of Fort Worth'),
(87607, 'https://ror.org/037kvhq82', 'en', 1, 'https://ror.org/037kvhq82 Jingchu University of Technology'),
(87608, 'https://ror.org/037n1zn57', 'en', 1, 'https://ror.org/037n1zn57 Conservation Science Partners'),
(87609, 'https://ror.org/037n2rm85', 'en', 1, 'https://ror.org/037n2rm85 Amsterdam Institute for Global Health and Development'),
(87610, 'https://ror.org/037nf7e17', 'en', 1, 'https://ror.org/037nf7e17 Wayside Youth And Family Support Network'),
(87611, 'https://ror.org/037p8y688', 'en', 0, 'https://ror.org/037p8y688 University Heights, Newark'),
(87612, 'https://ror.org/037px4461', 'no_lang_code', 1, 'https://ror.org/037px4461 Japan Petroleum Institute å…¬ē›Šē¤¾å›£ę³•äŗŗēŸ³ę²¹å­¦ä¼š'),
(87613, 'https://ror.org/037qnwq20', 'en', 1, 'https://ror.org/037qnwq20 Canadian Paediatric Society SociƩtƩ Canadienne de PƩdiatrie'),
(87614, 'https://ror.org/037s2db26', 'no_lang_code', 1, 'https://ror.org/037s2db26 Gakushuin University 学習院大学'),
(87615, 'https://ror.org/037skf023', 'en', 1, 'https://ror.org/037skf023 SRM University'),
(87616, 'https://ror.org/037te6005', 'en', 1, 'https://ror.org/037te6005 Friends Together'),
(87617, 'https://ror.org/037tfve16', 'en', 0, 'https://ror.org/037tfve16 Lamar State College–Orange'),
(87618, 'https://ror.org/037tr0b92', 'en', 1, 'https://ror.org/037tr0b92 Zabol University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų²Ų§ŲØŁ„'),
(87619, 'https://ror.org/037xfp797', 'no_lang_code', 0, 'https://ror.org/037xfp797 3D Reid (United Kingdom)'),
(87620, 'https://ror.org/037xzfa11', 'en', 1, 'https://ror.org/037xzfa11 Organization for Autism Research'),
(87621, 'https://ror.org/037z28087', 'en', 1, 'https://ror.org/037z28087 Yangon School of Political Science'),
(87622, 'https://ror.org/0380e4z40', 'en', 1, 'https://ror.org/0380e4z40 Center for Humans and Nature'),
(87623, 'https://ror.org/0384yev14', 'en', 1, 'https://ror.org/0384yev14 Otterbein University'),
(87624, 'https://ror.org/0385yzn06', 'en', 1, 'https://ror.org/0385yzn06 Physicians'' Services Incorporated Foundation'),
(87625, 'https://ror.org/0386hmc48', 'no_lang_code', 1, 'https://ror.org/0386hmc48 Otto Fuchs (Germany)'),
(87626, 'https://ror.org/03877wr45', 'en', 1, 'https://ror.org/03877wr45 Al-Muthanna University Ų¬Ų§Ł…Ų¹Ų© المثنى'),
(87627, 'https://ror.org/038b3cg44', 'no_lang_code', 1, 'https://ror.org/038b3cg44 Bennett Aerospace (United States)'),
(87628, 'https://ror.org/038b85827', 'de', 1, 'https://ror.org/038b85827 Deutsche MigrƤne- und Kopfschmerzgesellschaft'),
(87629, 'https://ror.org/038d7ve10', 'en', 1, 'https://ror.org/038d7ve10 Liupanshui Normal University'),
(87630, 'https://ror.org/038dhnb42', 'no_lang_code', 1, 'https://ror.org/038dhnb42 Lero'),
(87631, 'https://ror.org/038h2eb62', 'en', 1, 'https://ror.org/038h2eb62 SzƔzadvƩg Foundation'),
(87632, 'https://ror.org/038hbfs18', 'no_lang_code', 1, 'https://ror.org/038hbfs18 Deciphera Pharmaceuticals (United States)'),
(87633, 'https://ror.org/038kqcv16', 'no_lang_code', 0, 'https://ror.org/038kqcv16 Nishinippon Shimbun'),
(87634, 'https://ror.org/038kxvq41', 'en', 1, 'https://ror.org/038kxvq41 IBAIS University ইবাইস ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(87635, 'https://ror.org/038m76n55', 'en', 1, 'https://ror.org/038m76n55 ALS Therapy Alliance'),
(87636, 'https://ror.org/038mte443', 'en', 1, 'https://ror.org/038mte443 Rebecca L. Cooper Medical Research Foundation'),
(87637, 'https://ror.org/038n85y16', 'no_lang_code', 1, 'https://ror.org/038n85y16 Pharmadrome (United Kingdom)'),
(87638, 'https://ror.org/038q4zz19', 'no_lang_code', 1, 'https://ror.org/038q4zz19 Wanhua Chemical (China) äø‡åŽåŒ–å­¦'),
(87639, 'https://ror.org/038q98v71', 'no_lang_code', 1, 'https://ror.org/038q98v71 Dominion (United States)'),
(87640, 'https://ror.org/038tk1e03', 'en', 0, 'https://ror.org/038tk1e03 Miami University Hamilton'),
(87641, 'https://ror.org/038v75980', 'en', 1, 'https://ror.org/038v75980 Southwestern Medical Foundation'),
(87642, 'https://ror.org/038wdy960', 'en', 1, 'https://ror.org/038wdy960 International Society for Magnetic Resonance in Medicine'),
(87643, 'https://ror.org/038ws8740', 'no_lang_code', 1, 'https://ror.org/038ws8740 EnergyNest (Norway)'),
(87644, 'https://ror.org/038ybsx39', 'en', 0, 'https://ror.org/038ybsx39 Art Institute of Charleston'),
(87645, 'https://ror.org/038yc5y48', 'en', 1, 'https://ror.org/038yc5y48 Australian Society for Antimicrobials'),
(87646, 'https://ror.org/0390abe49', 'no_lang_code', 0, 'https://ror.org/0390abe49 Wiener Linien'),
(87647, 'https://ror.org/0390vdb22', 'en', 1, 'https://ror.org/0390vdb22 Institute on Aging'),
(87648, 'https://ror.org/0391k0z38', 'en', 1, 'https://ror.org/0391k0z38 Association for Japanese-Language Teaching å…¬ē›Šē¤¾å›£ę³•äŗŗ å›½éš›ę—„ęœ¬čŖžę™®åŠå”ä¼š'),
(87649, 'https://ror.org/039310w64', 'hu', 1, 'https://ror.org/039310w64 Kőrƶsi Csoma TĆ”rsasĆ”g'),
(87650, 'https://ror.org/039417z19', 'no_lang_code', 1, 'https://ror.org/039417z19 Overseas Shipholding Group (United States)'),
(87651, 'https://ror.org/0394kh504', 'no_lang_code', 0, 'https://ror.org/0394kh504 Geno Global (Norway)'),
(87652, 'https://ror.org/0394qmm90', 'no_lang_code', 1, 'https://ror.org/0394qmm90 Vanda Pharmaceuticals (United States)'),
(87653, 'https://ror.org/0395ve714', 'en', 1, 'https://ror.org/0395ve714 China Institute Of Communications äø­å›½é€šäæ”å­¦ä¼š'),
(87654, 'https://ror.org/03960jw18', 'en', 1, 'https://ror.org/03960jw18 Genesis Oncology Trust'),
(87655, 'https://ror.org/0398vrq41', 'fi', 1, 'https://ror.org/0398vrq41 SeinƤjoen Keskussairaala'),
(87656, 'https://ror.org/03991n008', 'en', 0, 'https://ror.org/03991n008 University of Wisconsin–Stevens Point at Wausau'),
(87657, 'https://ror.org/039b65w79', 'en', 1, 'https://ror.org/039b65w79 Mineral Resources'),
(87658, 'https://ror.org/039fy0s97', 'it', 1, 'https://ror.org/039fy0s97 Associazione Genitori Contro le Leucemie e Tumori Infantili'),
(87659, 'https://ror.org/039hdbz42', 'no_lang_code', 1, 'https://ror.org/039hdbz42 Orbus Therapeutics (United States)'),
(87660, 'https://ror.org/039jjcy66', 'no_lang_code', 0, 'https://ror.org/039jjcy66 Mylan (India)'),
(87661, 'https://ror.org/039k0q809', 'no_lang_code', 0, 'https://ror.org/039k0q809 Nanosphere (United States)'),
(87662, 'https://ror.org/039k11f95', 'it', 1, 'https://ror.org/039k11f95 Regione Puglia'),
(87663, 'https://ror.org/039mtgc03', 'en', 0, 'https://ror.org/039mtgc03 Finnish Geodetic Institute'),
(87664, 'https://ror.org/039nkbn92', 'no_lang_code', 0, 'https://ror.org/039nkbn92 Mitsumi Electric (Japan) ćƒŸćƒ„ćƒŸé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(87665, 'https://ror.org/039q79s93', 'no_lang_code', 1, 'https://ror.org/039q79s93 MedicaSafe (United States)'),
(87666, 'https://ror.org/039qf8r60', 'en', 0, 'https://ror.org/039qf8r60 International Food Policy Research Institute'),
(87667, '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'),
(87668, 'https://ror.org/039sbtn67', 'en', 0, 'https://ror.org/039sbtn67 Connecticut State University System'),
(87669, 'https://ror.org/039wkaa17', 'en', 1, 'https://ror.org/039wkaa17 Japan Food Chemical Research Foundation ę—„ęœ¬é£Ÿå“åŒ–å­¦ē ”ē©¶č²”å›£'),
(87670, 'https://ror.org/039xcs474', 'en', 1, 'https://ror.org/039xcs474 Informatics and Business Institute Darmajaya Institut Informatika Dan Bisnis Darmajaya'),
(87671, 'https://ror.org/03a01de36', 'no_lang_code', 0, 'https://ror.org/03a01de36 Topsoe Fuel Cell (Denmark)'),
(87672, 'https://ror.org/03a0mw410', 'en', 0, 'https://ror.org/03a0mw410 Art Institutes International Minnesota'),
(87673, 'https://ror.org/03a3c3b64', 'en', 1, 'https://ror.org/03a3c3b64 British Mass Spectrometry Society'),
(87674, 'https://ror.org/03a54va40', 'en', 1, 'https://ror.org/03a54va40 Corporación Tecnológica de Andalucía Technological Corporation of Andalusia'),
(87675, 'https://ror.org/03a5y5d65', 'en', 1, 'https://ror.org/03a5y5d65 Foundation for European Progressive Studies'),
(87676, 'https://ror.org/03a63f080', 'en', 1, 'https://ror.org/03a63f080 Brain & Behavior Research Foundation'),
(87677, 'https://ror.org/03a6z4w08', 'no_lang_code', 1, 'https://ror.org/03a6z4w08 Theravance Biopharma (United States)'),
(87678, 'https://ror.org/03a7c7317', 'en', 1, 'https://ror.org/03a7c7317 Elton John AIDS Foundation'),
(87679, 'https://ror.org/03a7q4a54', 'en', 0, 'https://ror.org/03a7q4a54 Far Eastern State University of Humanities'),
(87680, 'https://ror.org/03a877g66', 'en', 1, 'https://ror.org/03a877g66 Asian Eye Institute'),
(87681, 'https://ror.org/03a9gd656', 'fr', 1, 'https://ror.org/03a9gd656 Institut des MolƩcules et MatƩriaux du Mans'),
(87682, 'https://ror.org/03a9mf398', 'en', 1, 'https://ror.org/03a9mf398 Moscow State Pedagogical University Московский пеГагогический Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(87683, 'https://ror.org/03aay6c48', 'en', 1, 'https://ror.org/03aay6c48 Biocenter Finland'),
(87684, 'https://ror.org/03abbex33', 'en', 1, 'https://ror.org/03abbex33 Arthritis National Research Foundation'),
(87685, 'https://ror.org/03acdk243', 'en', 1, 'https://ror.org/03acdk243 Sidra Medical and Research Center'),
(87686, 'https://ror.org/03achyh40', 'no_lang_code', 1, 'https://ror.org/03achyh40 Fiskevegn (Norway)'),
(87687, 'https://ror.org/03acmk758', 'no_lang_code', 0, 'https://ror.org/03acmk758 Reinnervate (United Kingdom)'),
(87688, 'https://ror.org/03ad2ge94', 'en', 0, 'https://ror.org/03ad2ge94 John Wesley Community Health Institute'),
(87689, 'https://ror.org/03ae6qy41', 'en', 1, 'https://ror.org/03ae6qy41 Phoenix Children''s Hospital'),
(87690, 'https://ror.org/03aebk093', 'en', 1, 'https://ror.org/03aebk093 Danang Architecture University ĐẔi hį»c Kiįŗæn trĆŗc ĐƠ Nįŗµng'),
(87691, 'https://ror.org/03aft2f80', 'en', 1, 'https://ror.org/03aft2f80 Braunschweig University of Art Hochschule für Bildende Künste Braunschweig'),
(87692, 'https://ror.org/03ah74403', 'de', 1, 'https://ror.org/03ah74403 Krankenhaus der Barmherzigen Schwestern Ried'),
(87693, 'https://ror.org/03aj82390', 'en', 0, 'https://ror.org/03aj82390 Embry–Riddle Aeronautical University'),
(87694, 'https://ror.org/03amynm94', 'en', 1, 'https://ror.org/03amynm94 Long Island Community Foundation'),
(87695, 'https://ror.org/03arvq761', 'en', 1, 'https://ror.org/03arvq761 Volodymyr Dahl East Ukrainian National University Wschodnioukraiński Uniwersytet Narodowy im. Wołodymyra Dala Š’Š¾ŃŃ‚Š¾Ń‡Š½Š¾ŃƒŠŗŃ€Š°ŠøŠ½ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ВлаГимира Š”Š°Š»Ń Š”Ń…Ń–Š“Š½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВолоГимира Š”Š°Š»Ń'),
(87696, 'https://ror.org/03arxxe13', 'sv', 1, 'https://ror.org/03arxxe13 K. Albin Johanssons stiftelse'),
(87697, 'https://ror.org/03av75f26', 'en', 1, 'https://ror.org/03av75f26 Max Planck Institut für Multidisziplinäre Naturwissenschaften Max Planck Institute for Multidisciplinary Sciences'),
(87698, 'https://ror.org/03ayaqr81', 'no_lang_code', 1, 'https://ror.org/03ayaqr81 SCImago Research Group'),
(87699, 'https://ror.org/03azvtz79', 'es', 1, 'https://ror.org/03azvtz79 Corporacion Biotec'),
(87700, 'https://ror.org/03b1hdw57', 'en', 1, 'https://ror.org/03b1hdw57 Ministerie van Landbouw, Natuur en Voedselkwaliteit Ministry of Agriculture, Nature and Food Quality'),
(87701, 'https://ror.org/03b1qgn79', 'no_lang_code', 1, 'https://ror.org/03b1qgn79 Silicon Austria Labs (Austria)'),
(87702, 'https://ror.org/03b1zv991', 'en', 1, 'https://ror.org/03b1zv991 Association miniĆØre du Canada Mining Association of Canada'),
(87703, 'https://ror.org/03b66v461', 'no_lang_code', 1, 'https://ror.org/03b66v461 Jaguar Land Rover (United Kingdom)'),
(87704, 'https://ror.org/03b8ydc26', 'no_lang_code', 1, 'https://ror.org/03b8ydc26 Ciro'),
(87705, 'https://ror.org/03b98ms23', 'en', 1, 'https://ror.org/03b98ms23 International Crane Foundation'),
(87706, 'https://ror.org/03baec336', 'nl', 0, 'https://ror.org/03baec336 Interdisciplinary Institute for BroadBand Technology iMinds'),
(87707, 'https://ror.org/03bc44j62', 'en', 1, 'https://ror.org/03bc44j62 Department for Education and Child Development'),
(87708, 'https://ror.org/03bdvdc06', 'en', 0, 'https://ror.org/03bdvdc06 Public Library of Science'),
(87709, 'https://ror.org/03be63z97', 'en', 1, 'https://ror.org/03be63z97 National Library of Israel ההפרייה ×”×œ××•×ž×™×Ŗ Ų§Ł„Ł…ŁƒŲŖŲØŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© في Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„ā€Ž'),
(87710, 'https://ror.org/03bf4tw22', 'no_lang_code', 1, 'https://ror.org/03bf4tw22 Inventiva (France)'),
(87711, 'https://ror.org/03bgr9b71', 'en', 1, 'https://ror.org/03bgr9b71 Finnish Dental Association Suomen HammaslƤƤkƤriliitto'),
(87712, 'https://ror.org/03bgrdf63', 'en', 1, 'https://ror.org/03bgrdf63 Surfrider Foundation'),
(87713, 'https://ror.org/03bgzs247', 'no_lang_code', 0, 'https://ror.org/03bgzs247 Displaytech Incorporated'),
(87714, 'https://ror.org/03bhd6288', 'en', 1, 'https://ror.org/03bhd6288 Education Endowment Foundation'),
(87715, 'https://ror.org/03bhrre34', 'en', 0, 'https://ror.org/03bhrre34 Ministry of Rural Development'),
(87716, 'https://ror.org/03bjqb473', 'en', 1, 'https://ror.org/03bjqb473 Sonoran Spine Research and Education Foundation'),
(87717, 'https://ror.org/03bm0c622', 'en', 0, 'https://ror.org/03bm0c622 Council for the Central Laboratory of the Research Councils'),
(87718, 'https://ror.org/03bnb7926', 'en', 0, 'https://ror.org/03bnb7926 Johns Hopkins Center for Communication Programs'),
(87719, 'https://ror.org/03bnhqc31', 'no_lang_code', 0, 'https://ror.org/03bnhqc31 OM Group (Germany)'),
(87720, 'https://ror.org/03bq46k73', 'en', 0, 'https://ror.org/03bq46k73 National University'),
(87721, 'https://ror.org/03bqa4029', 'en', 1, 'https://ror.org/03bqa4029 Centre For Cold Ocean Resources Engineering'),
(87722, 'https://ror.org/03bqc1g42', 'no_lang_code', 0, 'https://ror.org/03bqc1g42 Turbomeca (France)'),
(87723, 'https://ror.org/03bqdt826', 'no_lang_code', 0, 'https://ror.org/03bqdt826 Beckman Coulter (United Kingdom)'),
(87724, 'https://ror.org/03bqf3w07', 'en', 1, 'https://ror.org/03bqf3w07 Batumi State Maritime Academy įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒįƒ–įƒ¦įƒ•įƒįƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(87725, 'https://ror.org/03brv5m83', 'no_lang_code', 0, 'https://ror.org/03brv5m83 Dow Wolff Cellulosics (United States)'),
(87726, 'https://ror.org/03bs7gs75', 'en', 1, 'https://ror.org/03bs7gs75 George S. and Dolores Dore Eccles Foundation'),
(87727, 'https://ror.org/03bsy3776', 'no_lang_code', 1, 'https://ror.org/03bsy3776 Andromed (Netherlands)'),
(87728, 'https://ror.org/03bvbrw19', 'en', 1, 'https://ror.org/03bvbrw19 Wild Blueberry Producers Association of Nova Scotia'),
(87729, 'https://ror.org/03c06gm48', 'no_lang_code', 1, 'https://ror.org/03c06gm48 CytomX Therapeutics (United States)'),
(87730, 'https://ror.org/03c0ts369', 'no_lang_code', 1, 'https://ror.org/03c0ts369 GeneTex (United States)'),
(87731, 'https://ror.org/03c11g875', 'en', 1, 'https://ror.org/03c11g875 Papua New Guinea University of Natural Resources and Environment'),
(87732, 'https://ror.org/03c1tt715', 'no_lang_code', 0, 'https://ror.org/03c1tt715 Strafica (Finland)'),
(87733, 'https://ror.org/03c2jp606', 'en', 1, 'https://ror.org/03c2jp606 Academia Mexicana de Ciencias Mexican Academy of Sciences'),
(87734, 'https://ror.org/03c2k6525', 'en', 0, 'https://ror.org/03c2k6525 National Computer Facilities Stichting Nationale Computerfaciliteiten'),
(87735, 'https://ror.org/03c31cf61', 'en', 1, 'https://ror.org/03c31cf61 Akrofi-Christaller Institute of Theology, Mission and Culture'),
(87736, 'https://ror.org/03c336h16', 'en', 1, 'https://ror.org/03c336h16 Isabela State University'),
(87737, 'https://ror.org/03c3ads29', 'en', 1, 'https://ror.org/03c3ads29 Maritime Museum of San Diego'),
(87738, 'https://ror.org/03c4fdd85', 'en', 0, 'https://ror.org/03c4fdd85 Saint Petersburg Art and Industry Academy Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š¾-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени А.Š›. Штиглица'),
(87739, 'https://ror.org/03c596w89', 'en', 1, 'https://ror.org/03c596w89 Brittle Bone Society'),
(87740, 'https://ror.org/03c6bf397', 'en', 1, 'https://ror.org/03c6bf397 Institute of Behavioral Sciences č”Œå‹•ē§‘å­¦ē ”ē©¶ę‰€'),
(87741, 'https://ror.org/03c6k9p96', 'no_lang_code', 1, 'https://ror.org/03c6k9p96 Haldor Topsoe (Denmark)'),
(87742, 'https://ror.org/03c6r6d86', 'es', 1, 'https://ror.org/03c6r6d86 Escuela Campo Alegre'),
(87743, 'https://ror.org/03c8jqn92', 'en', 1, 'https://ror.org/03c8jqn92 Shaanxi Polytechnic Institute 陕脿理巄学院'),
(87744, 'https://ror.org/03c8k9q07', 'en', 1, 'https://ror.org/03c8k9q07 National Health Insurance Service Ilsan Hospital źµ­ėÆ¼ź±“ź°•ė³“ķ—˜ ģ¼ģ‚°ė³‘ģ›'),
(87745, 'https://ror.org/03c9dyj02', 'no_lang_code', 0, 'https://ror.org/03c9dyj02 Airgas (United States)'),
(87746, 'https://ror.org/03cdvht47', 'fr', 1, 'https://ror.org/03cdvht47 UniversitĆ© Hassan 1er Ų¬Ų§Ł…Ų¹Ų© الحسن Ų§Ł„Ų£ŁˆŁ„ Ų³Ų·Ų§ŲŖ'),
(87747, 'https://ror.org/03ce2gm94', 'en', 0, 'https://ror.org/03ce2gm94 Hebrew Union College - Jewish Institute of Religion'),
(87748, 'https://ror.org/03cey6t89', 'en', 1, 'https://ror.org/03cey6t89 Bennett College'),
(87749, 'https://ror.org/03cjfe202', 'en', 0, 'https://ror.org/03cjfe202 Hokkaido Red Cross Blood Center åŒ—ęµ·é“čµ¤åå­—č”€ę¶²ć‚»ćƒ³ć‚æćƒ¼'),
(87750, 'https://ror.org/03ckrg061', 'en', 1, 'https://ror.org/03ckrg061 International Collaboration On Repair Discoveries'),
(87751, 'https://ror.org/03cmvza02', 'no_lang_code', 1, 'https://ror.org/03cmvza02 CRM Group (Belgium)'),
(87752, 'https://ror.org/03cn4mv34', 'en', 1, 'https://ror.org/03cn4mv34 Threepenny Review'),
(87753, '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'),
(87754, 'https://ror.org/03cpdvx86', 'no_lang_code', 0, 'https://ror.org/03cpdvx86 Chatten Associates (United States)'),
(87755, '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'),
(87756, 'https://ror.org/03cq4gr50', 'en', 1, 'https://ror.org/03cq4gr50 Khon Kaen University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø‚ąø­ąø™ą¹ąøą¹ˆąø™'),
(87757, 'https://ror.org/03cqty937', 'en', 1, 'https://ror.org/03cqty937 Wilson Ornithological Society'),
(87758, 'https://ror.org/03cqzsb89', 'en', 1, 'https://ror.org/03cqzsb89 Psychonomic Society'),
(87759, 'https://ror.org/03cssjc92', 'en', 1, 'https://ror.org/03cssjc92 Scottish Aquaculture Innovation Centre'),
(87760, 'https://ror.org/03ct9xc33', 'en', 1, 'https://ror.org/03ct9xc33 World Congress of Science and Factual Producers'),
(87761, 'https://ror.org/03cv2n667', 'en', 1, 'https://ror.org/03cv2n667 BlueCrest University College'),
(87762, 'https://ror.org/03cxwg632', 'en', 1, 'https://ror.org/03cxwg632 Pegaso University UniversitĆ  degli Studi Pegaso'),
(87763, 'https://ror.org/03cxys317', 'en', 1, 'https://ror.org/03cxys317 Yamaguchi University 山口大学'),
(87764, 'https://ror.org/03czd4830', 'en', 1, 'https://ror.org/03czd4830 American Mosquito Control Association'),
(87765, 'https://ror.org/03d04qg82', 'en', 1, 'https://ror.org/03d04qg82 Croatian Academy of Sciences and Arts Hrvatska akademija znanosti i umjetnosti'),
(87766, 'https://ror.org/03d0yjb51', 'de', 1, 'https://ror.org/03d0yjb51 IST-Hochschule für Management'),
(87767, 'https://ror.org/03d23gv21', 'no_lang_code', 0, 'https://ror.org/03d23gv21 Nortel (United Kingdom)'),
(87768, 'https://ror.org/03d2wm227', 'en', 0, 'https://ror.org/03d2wm227 University of Wisconsin–Platteville Richland UniversitĆ© du wisconsin Ć  richland center'),
(87769, 'https://ror.org/03d4e8748', 'en', 1, 'https://ror.org/03d4e8748 Brighton and Hove City Council'),
(87770, 'https://ror.org/03d4fzd85', 'no_lang_code', 1, 'https://ror.org/03d4fzd85 Quanta Computer (Taiwan) 廣達電腦'),
(87771, 'https://ror.org/03d543283', 'en', 1, 'https://ror.org/03d543283 Children''s Minnesota'),
(87772, 'https://ror.org/03d56t467', 'en', 1, 'https://ror.org/03d56t467 The Sumners Foundation'),
(87773, 'https://ror.org/03d64na34', 'en', 1, 'https://ror.org/03d64na34 Prince Mohammad bin Fahd University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± Ł…Ų­Ł…ŲÆ بن فهد'),
(87774, 'https://ror.org/03d68c571', 'en', 0, 'https://ror.org/03d68c571 Penn State Altoona'),
(87775, 'https://ror.org/03d6fb891', 'en', 1, 'https://ror.org/03d6fb891 Florida Education Fund'),
(87776, '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'),
(87777, 'https://ror.org/03d7c1451', 'en', 1, 'https://ror.org/03d7c1451 Indonesian Institute of Sciences Lembaga Ilmu Pengetahuan Indonesia'),
(87778, 'https://ror.org/03d7vz670', 'en', 1, 'https://ror.org/03d7vz670 College of Mount Saint Vincent'),
(87779, 'https://ror.org/03d7wen40', 'en', 1, 'https://ror.org/03d7wen40 Animal Cancer Foundation'),
(87780, 'https://ror.org/03d8xgs19', 'pl', 0, 'https://ror.org/03d8xgs19 Szkoła Wyższa Prawa i Dyplomacji w Gdyni'),
(87781, 'https://ror.org/03dagtm27', 'en', 0, 'https://ror.org/03dagtm27 Bournemouth Hospital'),
(87782, 'https://ror.org/03db90279', 'en', 1, 'https://ror.org/03db90279 Kaohsiung Municipal Ta-Tung Hospital é«˜é›„åø‚ē«‹å¤§åŒé†«é™¢'),
(87783, 'https://ror.org/03dbb0t71', 'en', 1, 'https://ror.org/03dbb0t71 Anderson County Library System'),
(87784, 'https://ror.org/03dbx2z52', 'en', 1, 'https://ror.org/03dbx2z52 Michael & Associates'),
(87785, 'https://ror.org/03dfa9f06', 'en', 1, 'https://ror.org/03dfa9f06 Southwest Forestry University č„æå—ęž—äøšå¤§å­¦'),
(87786, 'https://ror.org/03dhk1t70', 'en', 1, 'https://ror.org/03dhk1t70 JMIR Publications'),
(87787, 'https://ror.org/03dhz6d13', 'en', 1, 'https://ror.org/03dhz6d13 All Ways Up Foundation'),
(87788, 'https://ror.org/03dj6sp35', 'en', 1, 'https://ror.org/03dj6sp35 American Society for Photobiology'),
(87789, 'https://ror.org/03djt5w55', 'no_lang_code', 0, 'https://ror.org/03djt5w55 Ahold (Netherlands)'),
(87790, 'https://ror.org/03dkg9x81', 'no_lang_code', 0, 'https://ror.org/03dkg9x81 Leica Microsystems (Switzerland)'),
(87791, 'https://ror.org/03dkzqy87', 'no_lang_code', 0, 'https://ror.org/03dkzqy87 The Medicines Company (Switzerland)'),
(87792, 'https://ror.org/03dnb3013', 'en', 1, 'https://ror.org/03dnb3013 Washington Department of Fish and Wildlife'),
(87793, 'https://ror.org/03dnbdf75', 'no_lang_code', 0, 'https://ror.org/03dnbdf75 Areva (United Kingdom)'),
(87794, 'https://ror.org/03dp01974', 'no_lang_code', 1, 'https://ror.org/03dp01974 Modular Genetics (United States)'),
(87795, 'https://ror.org/03dq5g621', 'no', 1, 'https://ror.org/03dq5g621 Nasjonalforeningen for Folkehelsen'),
(87796, 'https://ror.org/03dqcb840', 'en', 1, 'https://ror.org/03dqcb840 Luther College'),
(87797, 'https://ror.org/03drnns50', 'no_lang_code', 1, 'https://ror.org/03drnns50 OvaScience (United States)'),
(87798, 'https://ror.org/03dt4cd29', 'en', 0, 'https://ror.org/03dt4cd29 Republic of Turkey Ministry of Health'),
(87799, 'https://ror.org/03dtp6w69', 'en', 1, 'https://ror.org/03dtp6w69 Ministry of Defense وزارة الدفاع'),
(87800, 'https://ror.org/03dv9mn33', 'en', 1, 'https://ror.org/03dv9mn33 Swedish Species Information Centre'),
(87801, 'https://ror.org/03dy5xj85', 'en', 0, 'https://ror.org/03dy5xj85 Centre for Clinical Research in Neuropsychiatry'),
(87802, 'https://ror.org/03e2ek051', 'en', 1, 'https://ror.org/03e2ek051 Association for Science Education'),
(87803, 'https://ror.org/03e4ys677', 'en', 0, 'https://ror.org/03e4ys677 Tenth People''s Hospital of Tongji University'),
(87804, 'https://ror.org/03e5y0y34', 'en', 1, 'https://ror.org/03e5y0y34 Institute for Health Economics and Policy'),
(87805, 'https://ror.org/03e62d071', 'en', 0, 'https://ror.org/03e62d071 Oregon Health & Science University School of Medicine'),
(87806, 'https://ror.org/03e6bkn11', 'no_lang_code', 0, 'https://ror.org/03e6bkn11 Tomegavax (United States)'),
(87807, 'https://ror.org/03e6bna46', 'en', 1, 'https://ror.org/03e6bna46 Bruegel'),
(87808, 'https://ror.org/03e76ya46', 'en', 0, 'https://ror.org/03e76ya46 Max Planck Institute for Biophysical Chemistry Max-Planck-Institut für Biophysikalische Chemie'),
(87809, 'https://ror.org/03e81x648', 'en', 1, 'https://ror.org/03e81x648 Institute of Health Economics'),
(87810, 'https://ror.org/03e876s63', 'en', 1, 'https://ror.org/03e876s63 Southern Education Foundation'),
(87811, 'https://ror.org/03e8n7p36', 'no_lang_code', 0, 'https://ror.org/03e8n7p36 Mocon (United States)'),
(87812, 'https://ror.org/03eecf728', 'en', 1, 'https://ror.org/03eecf728 Loras College'),
(87813, 'https://ror.org/03eegxe52', 'en', 1, 'https://ror.org/03eegxe52 Metastatic Breast Cancer Network'),
(87814, 'https://ror.org/03efc1574', 'en', 1, 'https://ror.org/03efc1574 Arthritis Health Professions Association'),
(87815, 'https://ror.org/03ep3hs23', 'en', 1, 'https://ror.org/03ep3hs23 National Institute of Animal Nutrition and Physiology'),
(87816, 'https://ror.org/03eqef987', 'es', 1, 'https://ror.org/03eqef987 Sociedad Andaluza de Medicina Familiar y Comunitaria'),
(87817, 'https://ror.org/03eqf3910', 'no_lang_code', 1, 'https://ror.org/03eqf3910 Scientific Methods (United States)'),
(87818, 'https://ror.org/03esfes81', 'en', 1, 'https://ror.org/03esfes81 International Union of Radio Science Union Radio-Scientifique Internationale'),
(87819, 'https://ror.org/03esj4g97', 'en', 1, 'https://ror.org/03esj4g97 FPT University TrĘ°į»ng ĐẔi hį»c FPT'),
(87820, 'https://ror.org/03evats41', 'no_lang_code', 1, 'https://ror.org/03evats41 Stepan (United States)'),
(87821, 'https://ror.org/03ew5kf55', 'fr', 0, 'https://ror.org/03ew5kf55 Haute Ɖcole de Travail Social et de la SantĆ©'),
(87822, 'https://ror.org/03exg0778', 'en', 1, 'https://ror.org/03exg0778 National Socio-Environmental Synthesis Center'),
(87823, 'https://ror.org/03eyhgw20', 'de', 1, 'https://ror.org/03eyhgw20 AIO Studien gGmbH'),
(87824, 'https://ror.org/03eyq4y97', 'en', 1, 'https://ror.org/03eyq4y97 Hamad bin Khalifa University'),
(87825, 'https://ror.org/03eytzb83', 'en', 0, 'https://ror.org/03eytzb83 Claremont University Consortium'),
(87826, 'https://ror.org/03ezqnp95', 'en', 1, 'https://ror.org/03ezqnp95 Torbat Heydarieh University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲŖŲ±ŲØŲŖ Ų­ŪŒŲÆŲ±ŪŒŁ‡'),
(87827, 'https://ror.org/03f0nw643', 'en', 1, 'https://ror.org/03f0nw643 Saastamoinen Foundation'),
(87828, 'https://ror.org/03f13ma83', 'en', 1, 'https://ror.org/03f13ma83 Finnish Dental Society Apollonia Suomen HammaslƤƤkƤriseura Apollonia'),
(87829, 'https://ror.org/03f1y7c55', 'no_lang_code', 1, 'https://ror.org/03f1y7c55 Fisher & Paykel Healthcare (New Zealand)'),
(87830, 'https://ror.org/03f1za223', 'fr', 1, 'https://ror.org/03f1za223 MinistĆØre des Relations Internationales et de la Francophonie'),
(87831, 'https://ror.org/03f2ct267', 'en', 1, 'https://ror.org/03f2ct267 APC Microbiome Institute'),
(87832, 'https://ror.org/03f3rne76', 'en', 1, 'https://ror.org/03f3rne76 Baise University 百色学院'),
(87833, 'https://ror.org/03f72zw41', 'en', 1, 'https://ror.org/03f72zw41 Henan Provincial People''s Hospital ę²³å—ēœäŗŗę°‘åŒ»é™¢'),
(87834, 'https://ror.org/03fbgfy04', 'en', 1, 'https://ror.org/03fbgfy04 National Treasury'),
(87835, 'https://ror.org/03fexp388', 'no_lang_code', 1, 'https://ror.org/03fexp388 Separation Systems (United States)'),
(87836, 'https://ror.org/03fgcf430', 'en', 1, 'https://ror.org/03fgcf430 Energy Institute'),
(87837, 'https://ror.org/03fhdst60', 'en', 1, 'https://ror.org/03fhdst60 Ghana Education Trust Fund'),
(87838, 'https://ror.org/03fkpw052', 'no_lang_code', 1, 'https://ror.org/03fkpw052 Handan College é‚Æéƒøå­¦é™¢'),
(87839, 'https://ror.org/03fkzwj92', 'pt', 1, 'https://ror.org/03fkzwj92 Hospital Oftalmologico de BrasĆ­lia'),
(87840, 'https://ror.org/03fm7r592', 'no_lang_code', 1, 'https://ror.org/03fm7r592 Dendreon (United States)'),
(87841, 'https://ror.org/03fp5k922', 'en', 1, 'https://ror.org/03fp5k922 Vincent Wildlife Trust'),
(87842, 'https://ror.org/03fq9xt66', 'nl', 1, 'https://ror.org/03fq9xt66 Nationaal Fonds Geestelijke Volksgezondheid'),
(87843, 'https://ror.org/03fr60v89', 'no_lang_code', 0, 'https://ror.org/03fr60v89 Maney Publishing (United Kingdom)'),
(87844, 'https://ror.org/03fry2j13', 'de', 1, 'https://ror.org/03fry2j13 Museum für Naturkunde Chemnitz'),
(87845, 'https://ror.org/03fyd9f03', 'no_lang_code', 0, 'https://ror.org/03fyd9f03 Alcatel-Lucent (United Kingdom)'),
(87846, 'https://ror.org/03fz1tt45', 'en', 1, 'https://ror.org/03fz1tt45 History of Science Society'),
(87847, 'https://ror.org/03g2hz705', 'en', 1, 'https://ror.org/03g2hz705 Watson-Brown Foundation'),
(87848, 'https://ror.org/03g2whv89', 'en', 1, 'https://ror.org/03g2whv89 Beckley Foundation'),
(87849, 'https://ror.org/03g3kfn65', 'en', 1, 'https://ror.org/03g3kfn65 American Society of Anesthesiologists'),
(87850, 'https://ror.org/03g4sde39', 'no_lang_code', 1, 'https://ror.org/03g4sde39 Scania (Sweden)'),
(87851, 'https://ror.org/03g8swq49', 'en', 1, 'https://ror.org/03g8swq49 Tennessee Department of Transportation'),
(87852, 'https://ror.org/03gbp0d20', 'en', 0, 'https://ror.org/03gbp0d20 University of Wisconsin–Marshfield Wood County'),
(87853, 'https://ror.org/03gbzhd34', 'en', 1, 'https://ror.org/03gbzhd34 CVPath Institute'),
(87854, 'https://ror.org/03gc71b86', 'en', 1, 'https://ror.org/03gc71b86 Swedish Collegium for Advanced Study'),
(87855, 'https://ror.org/03gf7z214', 'fr', 1, 'https://ror.org/03gf7z214 Institut Universitaire de Cardiologie et de Pneumologie de QuƩbec');
INSERT INTO `rors` VALUES
(87856, 'https://ror.org/03gfhhj78', 'en', 1, 'https://ror.org/03gfhhj78 Southeast Asian Ministers of Education Organization'),
(87857, 'https://ror.org/03ggcx620', 'en', 1, 'https://ror.org/03ggcx620 Gerber Foundation'),
(87858, 'https://ror.org/03gh96r95', 'en', 1, 'https://ror.org/03gh96r95 Bowdoin College'),
(87859, 'https://ror.org/03gjccz36', 'no_lang_code', 1, 'https://ror.org/03gjccz36 Ansell (Australia)'),
(87860, 'https://ror.org/03gmaqz91', 'en', 0, 'https://ror.org/03gmaqz91 International Crops Research Institute for the Semi-Arid Tropics'),
(87861, 'https://ror.org/03gmcft65', 'no_lang_code', 1, 'https://ror.org/03gmcft65 Muons (United States)'),
(87862, 'https://ror.org/03gsev974', 'pt', 1, 'https://ror.org/03gsev974 Sociedade Brasileira Infectologia'),
(87863, 'https://ror.org/03gw7aq50', 'de', 1, 'https://ror.org/03gw7aq50 Landesamt für Natur, Umwelt und Verbraucherschutz Nordrhein-Westfalen'),
(87864, 'https://ror.org/03gwnfe45', 'en', 1, 'https://ror.org/03gwnfe45 Innovate Washington Foundation'),
(87865, 'https://ror.org/03gxj8t57', 'en', 1, 'https://ror.org/03gxj8t57 Central American Technological University Universidad Tecnológica Centroamericana'),
(87866, 'https://ror.org/03gxqy123', 'en', 1, 'https://ror.org/03gxqy123 Faculdade Paulo PicanƧo Paulo PicanƧo School of Dentistry'),
(87867, 'https://ror.org/03gz5xp73', 'en', 1, 'https://ror.org/03gz5xp73 National Graduate Institute for Policy Studies 政策研究大学院大学'),
(87868, 'https://ror.org/03gzbrs57', 'en', 1, 'https://ror.org/03gzbrs57 NewYork–Presbyterian Hospital'),
(87869, 'https://ror.org/03h1b6v44', 'en', 1, 'https://ror.org/03h1b6v44 Gunnison Valley Hospital'),
(87870, 'https://ror.org/03h7xwt96', 'no_lang_code', 1, 'https://ror.org/03h7xwt96 Lenterra (United States)'),
(87871, 'https://ror.org/03h7y8q20', 'en', 1, 'https://ror.org/03h7y8q20 NoVo Foundation'),
(87872, 'https://ror.org/03ha87v47', 'en', 1, 'https://ror.org/03ha87v47 The Myositis Association'),
(87873, 'https://ror.org/03hbxaa51', 'en', 0, 'https://ror.org/03hbxaa51 Chemical Heritage Foundation'),
(87874, 'https://ror.org/03hc33848', 'en', 1, 'https://ror.org/03hc33848 FH Foundation'),
(87875, 'https://ror.org/03hcmxw73', 'en', 1, 'https://ror.org/03hcmxw73 Xinjiang Production and Construction Corps ę–°ē–†ē”Ÿäŗ§å»ŗč®¾å…µå›¢'),
(87876, 'https://ror.org/03hdrgy42', 'en', 1, 'https://ror.org/03hdrgy42 Thomas Young Centre'),
(87877, 'https://ror.org/03he3dk36', 'de', 0, 'https://ror.org/03he3dk36 Klinik für Hautkrankheiten'),
(87878, 'https://ror.org/03hegz430', 'en', 0, 'https://ror.org/03hegz430 All Talent Agency'),
(87879, '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'),
(87880, 'https://ror.org/03hgmmt92', 'en', 1, 'https://ror.org/03hgmmt92 Michael & Susan Dell Foundation'),
(87881, 'https://ror.org/03hgnwx26', 'en', 1, 'https://ror.org/03hgnwx26 Banque Royale du Canada Royal Bank of Canada'),
(87882, 'https://ror.org/03hhwkj37', 'en', 1, 'https://ror.org/03hhwkj37 QuƩbec Consortium for Drug Discovery'),
(87883, 'https://ror.org/03hjav547', 'en', 1, 'https://ror.org/03hjav547 Hemophilia Foundation of Michigan'),
(87884, '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'),
(87885, 'https://ror.org/03hnrwx04', 'en', 1, 'https://ror.org/03hnrwx04 Thrasher Research Fund'),
(87886, 'https://ror.org/03hr7y002', 'en', 0, 'https://ror.org/03hr7y002 MRC Centre'),
(87887, 'https://ror.org/03hrf8236', 'en', 1, 'https://ror.org/03hrf8236 Norwegian Institute for Water Research'),
(87888, 'https://ror.org/03hrtm988', 'en', 0, 'https://ror.org/03hrtm988 University of St. Augustine for Health Sciences'),
(87889, 'https://ror.org/03htvw360', 'no_lang_code', 1, 'https://ror.org/03htvw360 Sonalysts (United States)'),
(87890, 'https://ror.org/03htw5563', 'en', 0, 'https://ror.org/03htw5563 University of Tennessee Institute of Agriculture'),
(87891, 'https://ror.org/03hv1ad10', 'en', 1, 'https://ror.org/03hv1ad10 Akita University 秋田大学'),
(87892, 'https://ror.org/03hvzdf94', 'en', 1, 'https://ror.org/03hvzdf94 Kongelige Danske Videnskabernes Selskab The Royal Danish Academy of Sciences and Letters'),
(87893, 'https://ror.org/03hxvmc90', 'en', 1, 'https://ror.org/03hxvmc90 Evolving Earth Foundation'),
(87894, 'https://ror.org/03hy9rs18', 'en', 0, 'https://ror.org/03hy9rs18 State Agency for Consumer and Health Protection'),
(87895, 'https://ror.org/03j0pmr56', 'en', 1, 'https://ror.org/03j0pmr56 National Water Research Institute'),
(87896, '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'),
(87897, 'https://ror.org/03j2wfg84', 'en', 1, 'https://ror.org/03j2wfg84 Kay Kendall Leukaemia Fund'),
(87898, 'https://ror.org/03j42jj36', 'en', 1, 'https://ror.org/03j42jj36 Issues Research'),
(87899, 'https://ror.org/03j69jg83', 'en', 1, 'https://ror.org/03j69jg83 Society for Imaging Science and Technology'),
(87900, 'https://ror.org/03j7v5j15', 'en', 1, 'https://ror.org/03j7v5j15 Institute of Psychology, Chinese Academy of Sciences äø­å›½ē§‘å­¦é™¢åæƒē†ē ”ē©¶ę‰€'),
(87901, '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'),
(87902, 'https://ror.org/03j9ayz50', 'no_lang_code', 1, 'https://ror.org/03j9ayz50 Marine Acoustics (United States)'),
(87903, 'https://ror.org/03jbt3445', 'en', 1, 'https://ror.org/03jbt3445 Foundation for Economic Education Liikesivistysrahasto'),
(87904, 'https://ror.org/03jdg7625', 'fr', 1, 'https://ror.org/03jdg7625 Institut des Sciences Sociales du Politique'),
(87905, 'https://ror.org/03jerjg25', 'en', 1, 'https://ror.org/03jerjg25 Loulou Foundation'),
(87906, 'https://ror.org/03jggqf79', 'en', 1, 'https://ror.org/03jggqf79 Rwanda Biomedical Center'),
(87907, 'https://ror.org/03jmg4515', 'en', 1, 'https://ror.org/03jmg4515 Shenzhen Municipal Development and Reform Commission ę·±åœ³åø‚å‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(87908, 'https://ror.org/03jn6n945', 'en', 1, 'https://ror.org/03jn6n945 Nellie Mae Education Foundation'),
(87909, 'https://ror.org/03jp1vv85', 'no_lang_code', 0, 'https://ror.org/03jp1vv85 FEI (Netherlands)'),
(87910, 'https://ror.org/03jq8sq82', 'no_lang_code', 0, 'https://ror.org/03jq8sq82 Mylan (Sweden)'),
(87911, 'https://ror.org/03jsp0e58', 'en', 1, 'https://ror.org/03jsp0e58 The Long Island Museum'),
(87912, 'https://ror.org/03jwgbj27', 'en', 1, 'https://ror.org/03jwgbj27 Hawaii Community Foundation'),
(87913, 'https://ror.org/03jx0fx25', 'en', 1, 'https://ror.org/03jx0fx25 Tri College University'),
(87914, 'https://ror.org/03jyskd58', 'en', 1, 'https://ror.org/03jyskd58 South East Physics Network'),
(87915, 'https://ror.org/03jzya593', 'en', 1, 'https://ror.org/03jzya593 Leopardstown Park Hospital'),
(87916, 'https://ror.org/03k037750', 'no_lang_code', 0, 'https://ror.org/03k037750 Myriad Rules-Based Medicine (United States)'),
(87917, 'https://ror.org/03k0md330', 'en', 1, 'https://ror.org/03k0md330 Taipei Medical University Hospital č‡ŗåŒ—é†«å­øå¤§å­øé™„čØ­é†«é™¢)'),
(87918, 'https://ror.org/03k1afa36', 'no_lang_code', 0, 'https://ror.org/03k1afa36 K.C. Associates (United States)'),
(87919, 'https://ror.org/03k2bxj15', 'en', 1, 'https://ror.org/03k2bxj15 Ethiopian Environment and Forest Research Institute'),
(87920, 'https://ror.org/03k3ky186', 'en', 1, 'https://ror.org/03k3ky186 Bundesinstitut für Risikobewertung Federal Institute for Risk Assessment'),
(87921, 'https://ror.org/03k43kf60', 'en', 0, 'https://ror.org/03k43kf60 Capital Institute of Physical Education and Sports'),
(87922, 'https://ror.org/03k4xgp92', 'en', 1, 'https://ror.org/03k4xgp92 Guangzhou Psychiatric Hospital'),
(87923, 'https://ror.org/03k70ea39', 'no_lang_code', 1, 'https://ror.org/03k70ea39 CMC Microsystems (Canada)'),
(87924, 'https://ror.org/03k8der79', 'no_lang_code', 1, 'https://ror.org/03k8der79 Shimadzu (Japan) ę Ŗå¼ä¼šē¤¾ å³¶ę“„č£½ä½œę‰€'),
(87925, 'https://ror.org/03k9ter64', 'en', 1, 'https://ror.org/03k9ter64 National Fragile X Foundation'),
(87926, 'https://ror.org/03ka4h071', 'it', 1, 'https://ror.org/03ka4h071 Consorzio Interuniversitario per le Biotecnologie'),
(87927, 'https://ror.org/03kb86j91', 'en', 1, 'https://ror.org/03kb86j91 Danish Institute for Study Abroad'),
(87928, 'https://ror.org/03kbe9m86', 'en', 1, 'https://ror.org/03kbe9m86 Shri Vishwakarma Skill University'),
(87929, 'https://ror.org/03kdb6a28', 'en', 1, 'https://ror.org/03kdb6a28 WavEC Offshore Renewables'),
(87930, 'https://ror.org/03ke3rf23', 'en', 1, 'https://ror.org/03ke3rf23 Humane Research Trust'),
(87931, 'https://ror.org/03kfr2z97', 'en', 1, 'https://ror.org/03kfr2z97 Skyrail Rainforest Foundation'),
(87932, 'https://ror.org/03kfvmt32', 'en', 0, 'https://ror.org/03kfvmt32 Hospital HƩdi Chaker of Sfax'),
(87933, 'https://ror.org/03khcdd80', 'en', 1, 'https://ror.org/03khcdd80 Japan Organization of Occupational Health and Safety ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹'),
(87934, 'https://ror.org/03kjax416', 'es', 0, 'https://ror.org/03kjax416 Cidemco'),
(87935, 'https://ror.org/03km47c80', 'en', 0, 'https://ror.org/03km47c80 Future Generations Graduate School'),
(87936, 'https://ror.org/03kqdja62', 'en', 1, 'https://ror.org/03kqdja62 Institut de Vector Vector Institute'),
(87937, 'https://ror.org/03kr5gd43', 'en', 1, 'https://ror.org/03kr5gd43 Center for Public Policy Alternatives'),
(87938, 'https://ror.org/03kr8x191', 'en', 1, 'https://ror.org/03kr8x191 National University of Misiones Universidad Nacional de Misiones'),
(87939, 'https://ror.org/03krx0543', 'en', 1, 'https://ror.org/03krx0543 Yunnan Institute of Environmental Sciences äŗ‘å—ēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(87940, 'https://ror.org/03kshwk87', 'en', 1, 'https://ror.org/03kshwk87 Equal Measure'),
(87941, 'https://ror.org/03kvm0223', 'no_lang_code', 1, 'https://ror.org/03kvm0223 Novalait (Canada)'),
(87942, 'https://ror.org/03kw7j946', 'en', 0, 'https://ror.org/03kw7j946 Yamawaki Gakuen Junior College å±±č„‡å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(87943, 'https://ror.org/03kxgb311', 'no_lang_code', 0, 'https://ror.org/03kxgb311 Xhale (United States)'),
(87944, 'https://ror.org/03kzp5v39', 'no_lang_code', 1, 'https://ror.org/03kzp5v39 Johnson & Johnson (Israel)'),
(87945, 'https://ror.org/03m2s7186', 'no_lang_code', 0, 'https://ror.org/03m2s7186 Alcatel-Lucent (China)'),
(87946, 'https://ror.org/03m343922', 'en', 1, 'https://ror.org/03m343922 CollĆØge de l’Arctique du Nunavut Nunavut Arctic College į“„į“‡į•—į’»į’„į“Æį“šį‘¦į‘į–…į““į•į••į’ƒ'),
(87947, 'https://ror.org/03m49wm34', 'no_lang_code', 0, 'https://ror.org/03m49wm34 Crucell (Switzerland)'),
(87948, 'https://ror.org/03m5cqr70', 'pl', 0, 'https://ror.org/03m5cqr70 Akademia Wychowania Fizycznego im. Bronisława Czecha w Krakowie'),
(87949, 'https://ror.org/03m629g08', 'de', 1, 'https://ror.org/03m629g08 Roland Ernst Stiftung'),
(87950, 'https://ror.org/03m9js843', 'no_lang_code', 1, 'https://ror.org/03m9js843 WilliamsRDM (United States)'),
(87951, 'https://ror.org/03maknm89', 'en', 1, 'https://ror.org/03maknm89 National Institute of Ocean Technology ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„ą¤¦ą„ą¤° ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø'),
(87952, 'https://ror.org/03mcefb58', 'no_lang_code', 1, 'https://ror.org/03mcefb58 Powerchina Huadong Engineering Corporation (China)'),
(87953, 'https://ror.org/03mfxe732', 'en', 0, 'https://ror.org/03mfxe732 North County Serenity House'),
(87954, 'https://ror.org/03mg3ec15', 'en', 1, 'https://ror.org/03mg3ec15 European Hospital'),
(87955, 'https://ror.org/03mkzcg89', 'en', 1, 'https://ror.org/03mkzcg89 Hamdard University Bangladesh ą¦¹ą¦¾ą¦®ą¦¦ą¦°ą§ą¦¦ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ বাংলাদেশ'),
(87956, 'https://ror.org/03mm67z69', 'it', 1, 'https://ror.org/03mm67z69 Regione del Veneto'),
(87957, 'https://ror.org/03mn4jv82', 'en', 1, 'https://ror.org/03mn4jv82 Institute for Law and Justice'),
(87958, 'https://ror.org/03mn6ww56', 'en', 1, 'https://ror.org/03mn6ww56 The Scar Free Foundation'),
(87959, 'https://ror.org/03mnpq162', 'no_lang_code', 1, 'https://ror.org/03mnpq162 Second Genome (United States)'),
(87960, 'https://ror.org/03mpv7q97', 'en', 0, 'https://ror.org/03mpv7q97 Jiangxi Provincial Cancer Hospital ę±Ÿč„æēœč‚æē˜¤åŒ»é™¢'),
(87961, 'https://ror.org/03mq2kf66', 'tr', 1, 'https://ror.org/03mq2kf66 Dr. Suat Seren Göğüs Hastalıkları Hastanesi'),
(87962, 'https://ror.org/03mq5pg65', 'en', 1, 'https://ror.org/03mq5pg65 Knights Templar Eye Foundation'),
(87963, 'https://ror.org/03mrbr458', 'en', 1, 'https://ror.org/03mrbr458 Leibniz Institute for Astrophysics Potsdam Leibniz-Institut für Astrophysik Potsdam'),
(87964, 'https://ror.org/03mxhzf09', 'en', 1, 'https://ror.org/03mxhzf09 Antarctic Climate and Ecosystems Cooperative Research Centre'),
(87965, 'https://ror.org/03mxw8t14', 'en', 1, 'https://ror.org/03mxw8t14 LIXIL JS Foundation å…¬ē›Šč²”å›£ę³•äŗŗLIXILä½ē”Ÿę“»č²”å›£'),
(87966, 'https://ror.org/03my53j30', 'no_lang_code', 0, 'https://ror.org/03my53j30 GE Healthcare (India)'),
(87967, 'https://ror.org/03myjph80', 'en', 1, 'https://ror.org/03myjph80 Wellcome Centre for Mitochondrial Research'),
(87968, 'https://ror.org/03n5b6y82', 'en', 1, 'https://ror.org/03n5b6y82 British Society for Matrix Biology'),
(87969, 'https://ror.org/03n5rw513', 'en', 1, 'https://ror.org/03n5rw513 Milwaukee Metropolitan Sewerage District'),
(87970, 'https://ror.org/03n60ep10', 'en', 1, 'https://ror.org/03n60ep10 University of Miyazaki Hospital å®®å“Žå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(87971, 'https://ror.org/03n60vp23', 'en', 1, 'https://ror.org/03n60vp23 International Institute of Islamic Thought'),
(87972, 'https://ror.org/03n77bh09', 'en', 0, 'https://ror.org/03n77bh09 University of Wisconsin Colleges'),
(87973, 'https://ror.org/03n7fsy46', 'no_lang_code', 1, 'https://ror.org/03n7fsy46 LGL (Canada)'),
(87974, 'https://ror.org/03n7gaq84', 'en', 0, 'https://ror.org/03n7gaq84 Illawarra Area Health Service'),
(87975, 'https://ror.org/03n7vd314', 'en', 1, 'https://ror.org/03n7vd314 Prisma Health'),
(87976, 'https://ror.org/03n9qzd79', 'no_lang_code', 1, 'https://ror.org/03n9qzd79 John von Neumann University Neumann JƔnos Egyetem'),
(87977, 'https://ror.org/03n9scz70', 'en', 1, 'https://ror.org/03n9scz70 University of Pittsburgh at Johnstown'),
(87978, 'https://ror.org/03nd63441', 'en', 1, 'https://ror.org/03nd63441 The Christie Hospital'),
(87979, 'https://ror.org/03neq2068', 'en', 1, 'https://ror.org/03neq2068 Institute of Marine Engineering Science and Technology'),
(87980, 'https://ror.org/03nfk8582', 'no_lang_code', 1, 'https://ror.org/03nfk8582 ADMA Biologics (United States)'),
(87981, 'https://ror.org/03nfnrd41', 'en', 1, 'https://ror.org/03nfnrd41 Dogs Trust'),
(87982, 'https://ror.org/03ngjs524', 'en', 1, 'https://ror.org/03ngjs524 Bowel Cancer UK'),
(87983, 'https://ror.org/03njmw214', 'no_lang_code', 0, 'https://ror.org/03njmw214 Rockwell (United States)'),
(87984, 'https://ror.org/03nk9pp38', 'en', 1, 'https://ror.org/03nk9pp38 ARC Centre of Excellence for Core to Crust Fluid Systems'),
(87985, 'https://ror.org/03nkz8212', 'en', 1, 'https://ror.org/03nkz8212 Consortium of Universities for Global Health'),
(87986, 'https://ror.org/03np0rt96', 'en', 1, 'https://ror.org/03np0rt96 Ministry of Agriculture and Cooperatives ąøąø£ąø°ąø—ąø£ąø§ąø‡ą¹€ąøąø©ąø•ąø£ą¹ąø„ąø°ąøŖąø«ąøąø£ąø“ą¹Œ'),
(87987, 'https://ror.org/03np4e098', 'en', 1, 'https://ror.org/03np4e098 Haukeland University Hospital'),
(87988, 'https://ror.org/03np9ae18', 'no_lang_code', 0, 'https://ror.org/03np9ae18 Lasergen (United States)'),
(87989, 'https://ror.org/03nrbzf14', 'no_lang_code', 1, 'https://ror.org/03nrbzf14 Orthofix (United States)'),
(87990, 'https://ror.org/03nsgj842', 'en', 1, 'https://ror.org/03nsgj842 Alexander & Margaret Stewart Trust'),
(87991, 'https://ror.org/03nvtgg56', 'en', 1, 'https://ror.org/03nvtgg56 Arthur Ashe Institute for Urban Health'),
(87992, 'https://ror.org/03nxex423', 'en', 1, 'https://ror.org/03nxex423 King Center'),
(87993, 'https://ror.org/03nxfhe13', 'en', 1, 'https://ror.org/03nxfhe13 Baylor University Medical Center'),
(87994, 'https://ror.org/03ny8r668', 'en', 1, 'https://ror.org/03ny8r668 Chinesisch-Deutsche Zentrum für Wissenschaftsförderung Sino-German Center for Research Promotion'),
(87995, 'https://ror.org/03nyext11', 'en', 1, 'https://ror.org/03nyext11 Pacific Eye Associates'),
(87996, 'https://ror.org/03nyn4g46', 'en', 1, 'https://ror.org/03nyn4g46 National Academy of Governance УГирГлагын АкаГемийн'),
(87997, 'https://ror.org/03nypmk85', 'no_lang_code', 1, 'https://ror.org/03nypmk85 Lac Hong University TrĘ°į»ng ĐẔi hį»c Lįŗ”c Hồng'),
(87998, 'https://ror.org/03p05h867', 'no_lang_code', 0, 'https://ror.org/03p05h867 Italdesign Giugiaro (Italy)'),
(87999, 'https://ror.org/03p3sm411', 'no_lang_code', 1, 'https://ror.org/03p3sm411 Marine Biodiversity Institute of Korea'),
(88000, 'https://ror.org/03p4ncr63', 'en', 1, 'https://ror.org/03p4ncr63 Iranian Center for Quantum Technologies'),
(88001, 'https://ror.org/03p6cns83', 'en', 1, 'https://ror.org/03p6cns83 D Y पाटिल ą¤ą¤œą„‚ą¤•ą„‡ą¤¶ą¤Ø ą¤øą„‹ą¤øą¤¾ą¤‡ą¤Ÿą„€ D.Y. Patil Education Society'),
(88002, 'https://ror.org/03p767394', 'en', 1, 'https://ror.org/03p767394 Spices Board India मसाला ą¤¬ą„‹ą¤°ą„ą¤” भारत ą“øąµą“Ŗąµˆą“øą“øąµ ą“¬ąµ‡ą“¾ąµ¼ą“”ąµ ą“‡ą“Øąµą“¤ąµą“Æ'),
(88003, 'https://ror.org/03p79mb82', 'no_lang_code', 0, 'https://ror.org/03p79mb82 Dow Agrosciences (Canada)'),
(88004, 'https://ror.org/03p7xrr08', 'fr', 1, 'https://ror.org/03p7xrr08 Pharmacochimie et Pharmacologie pour le DƩveloppement'),
(88005, 'https://ror.org/03p8xy431', 'no_lang_code', 0, 'https://ror.org/03p8xy431 FEI (Germany)'),
(88006, 'https://ror.org/03p9gxz72', 'en', 0, 'https://ror.org/03p9gxz72 Texas Tech University'),
(88007, 'https://ror.org/03p9npm64', 'fr', 1, 'https://ror.org/03p9npm64 Institut Francilien de Recherche sur les Atomes Froids'),
(88008, 'https://ror.org/03p9y1j46', 'sv', 1, 'https://ror.org/03p9y1j46 Torsten Sƶderbergs Stiftelse'),
(88009, 'https://ror.org/03pbhe678', 'en', 1, 'https://ror.org/03pbhe678 Saint Joseph''s Seminary, St. Joseph’s Seminary and College'),
(88010, 'https://ror.org/03pc6j481', 'no_lang_code', 0, 'https://ror.org/03pc6j481 Medicines Company (India)'),
(88011, 'https://ror.org/03pcahg75', 'no_lang_code', 0, 'https://ror.org/03pcahg75 Sapa (Norway)'),
(88012, 'https://ror.org/03pd82777', 'no_lang_code', 1, 'https://ror.org/03pd82777 Cardinal Health (United States)'),
(88013, 'https://ror.org/03pem7638', 'no_lang_code', 1, 'https://ror.org/03pem7638 EnGlobe (Canada)'),
(88014, 'https://ror.org/03pery595', 'en', 0, 'https://ror.org/03pery595 Structural Genomics Consortium'),
(88015, 'https://ror.org/03petxm16', 'en', 1, 'https://ror.org/03petxm16 The Central Hospital of Shaoyang é‚µé˜³åø‚äø­åæƒåŒ»é™¢'),
(88016, 'https://ror.org/03phg1t06', 'en', 1, 'https://ror.org/03phg1t06 National University of Lomas de Zamora Universidad Nacional de Lomas de Zamora'),
(88017, 'https://ror.org/03pj47d12', 'no_lang_code', 1, 'https://ror.org/03pj47d12 Graymont (Canada)'),
(88018, 'https://ror.org/03pjjj122', 'no_lang_code', 0, 'https://ror.org/03pjjj122 Genome Explorations (United States)'),
(88019, 'https://ror.org/03pm0a810', 'en', 1, 'https://ror.org/03pm0a810 National Institute for Testing and Evaluation ×ž×Ø×›×– ארצי ×œ×‘×—×™× ×•×Ŗ ×•×œ×”×¢×Ø×›×”'),
(88020, 'https://ror.org/03pm18j10', 'en', 1, 'https://ror.org/03pm18j10 Hofstra University'),
(88021, 'https://ror.org/03pmbva82', 'no_lang_code', 1, 'https://ror.org/03pmbva82 Ebelle D''ebelle Pharmaceutical (United States)'),
(88022, 'https://ror.org/03pnmqc26', 'en', 0, 'https://ror.org/03pnmqc26 Yale School of Medicine'),
(88023, 'https://ror.org/03pptns37', 'en', 1, 'https://ror.org/03pptns37 Maine Department of Agriculture Conservation and Forestry'),
(88024, 'https://ror.org/03prap097', 'en', 1, 'https://ror.org/03prap097 Jemez Pueblo Community Library'),
(88025, 'https://ror.org/03ps5d564', 'en', 0, 'https://ror.org/03ps5d564 Boston University School of Medicine'),
(88026, 'https://ror.org/03pt86f80', 'en', 1, 'https://ror.org/03pt86f80 Innsbruck Medical University Medizinische UniversitƤt Innsbruck'),
(88027, 'https://ror.org/03ptaj492', 'en', 1, 'https://ror.org/03ptaj492 Seikei University 成蹊大学'),
(88028, 'https://ror.org/03ptf5b24', 'en', 1, 'https://ror.org/03ptf5b24 British Society for Surgery of the Hand'),
(88029, 'https://ror.org/03pwwck46', 'en', 1, 'https://ror.org/03pwwck46 International Foundation for Science'),
(88030, 'https://ror.org/03pza9p08', 'en', 1, 'https://ror.org/03pza9p08 Changzhou Vocational Institute of Engineering åøøå·žå·„ēØ‹čŒäøšęŠ€ęœÆå­¦é™¢'),
(88031, 'https://ror.org/03q0p7c86', 'en', 0, 'https://ror.org/03q0p7c86 Center of Regenerative Medicine in Barcelona'),
(88032, 'https://ror.org/03q0rwf65', 'no_lang_code', 0, 'https://ror.org/03q0rwf65 Applied Nanotech Holdings (United States)'),
(88033, 'https://ror.org/03q11wp41', 'en', 0, 'https://ror.org/03q11wp41 Pan Asian Repertory Theatre'),
(88034, 'https://ror.org/03q3q2q48', 'en', 0, 'https://ror.org/03q3q2q48 Cancer Patient Care'),
(88035, 'https://ror.org/03q4y6d69', 'en', 1, 'https://ror.org/03q4y6d69 Canadian Association on Gerontology'),
(88036, 'https://ror.org/03q5hbn76', 'en', 1, 'https://ror.org/03q5hbn76 First Hospital of Jiaxing å˜‰å…“åø‚ē¬¬äø€åŒ»é™¢'),
(88037, 'https://ror.org/03q5xa910', 'en', 1, 'https://ror.org/03q5xa910 Earth Science Information Partners'),
(88038, 'https://ror.org/03q9rqs31', 'en', 1, 'https://ror.org/03q9rqs31 Midwest Nursing Research Society'),
(88039, 'https://ror.org/03qb1q739', 'en', 1, 'https://ror.org/03qb1q739 Familjen Kamprads Stiftelse Kamprad Family Foundation'),
(88040, 'https://ror.org/03qdqbt06', 'en', 1, 'https://ror.org/03qdqbt06 Peng Cheng Laboratory é¹åŸŽå®žéŖŒå®¤'),
(88041, 'https://ror.org/03qe0eg36', 'en', 1, 'https://ror.org/03qe0eg36 History of Advertising Trust'),
(88042, 'https://ror.org/03qendm16', 'en', 1, 'https://ror.org/03qendm16 Cancer Foundation of China äø­å›½ē™Œē—‡åŸŗé‡‘ä¼š'),
(88043, 'https://ror.org/03qf4s180', 'en', 1, 'https://ror.org/03qf4s180 A.O. Kovalevsky Institute of Biology of the Southern Seas Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ біології півГенних морів ім. Šž.Šž. Ковалевського'),
(88044, 'https://ror.org/03qg59g08', 'no_lang_code', 0, 'https://ror.org/03qg59g08 Consulintel (Spain)'),
(88045, 'https://ror.org/03qg5ja35', 'en', 1, 'https://ror.org/03qg5ja35 National Children''s Advocacy Center'),
(88046, 'https://ror.org/03qgg4v31', 'fr', 1, 'https://ror.org/03qgg4v31 Le Studium'),
(88047, 'https://ror.org/03qgvya72', 'en', 1, 'https://ror.org/03qgvya72 Wagner Free Institute of Science'),
(88048, 'https://ror.org/03qhad759', 'en', 1, 'https://ror.org/03qhad759 LivingStone International University'),
(88049, 'https://ror.org/03qhf8m78', 'no_lang_code', 0, 'https://ror.org/03qhf8m78 United Technologies (United Kingdom)'),
(88050, 'https://ror.org/03qjb5r86', 'en', 1, 'https://ror.org/03qjb5r86 Friends Research Institute'),
(88051, 'https://ror.org/03qjn3379', 'no_lang_code', 1, 'https://ror.org/03qjn3379 SpheriTech (United Kingdom)'),
(88052, 'https://ror.org/03qmn5877', 'no_lang_code', 1, 'https://ror.org/03qmn5877 Magnitogorsk Iron and Steel Works (Russia) ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠøŠ¹ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ комбинат'),
(88053, 'https://ror.org/03qrdjy81', 'no_lang_code', 1, 'https://ror.org/03qrdjy81 Bombardier Produits Recreatifs Bombardier Recreational Products (Canada)'),
(88054, 'https://ror.org/03qt1g669', 'en', 1, 'https://ror.org/03qt1g669 Yuncheng University čæåŸŽå­¦é™¢'),
(88055, 'https://ror.org/03qt2gs44', 'en', 1, 'https://ror.org/03qt2gs44 Fraunhofer Institute for Secure Information Technology Fraunhofer-Institut für Sichere Informationstechnologie'),
(88056, 'https://ror.org/03qx7vw77', 'en', 1, 'https://ror.org/03qx7vw77 Gwynedd Mercy University'),
(88057, 'https://ror.org/03qxge436', 'no_lang_code', 1, 'https://ror.org/03qxge436 Mary Kay (United States)'),
(88058, 'https://ror.org/03qygnx22', 'en', 1, 'https://ror.org/03qygnx22 Wills Eye Hospital'),
(88059, 'https://ror.org/03qyr1v70', 'en', 1, 'https://ror.org/03qyr1v70 Wadia Institute of Himalayan Geology वाऔिया ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø हिमालय ą¤­ą„‚ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø'),
(88060, 'https://ror.org/03r2bjn02', 'en', 1, 'https://ror.org/03r2bjn02 The Japan Society of Mechanical Engineers äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę©Ÿę¢°å­¦ä¼š'),
(88061, 'https://ror.org/03r42r570', 'en', 1, 'https://ror.org/03r42r570 Wellcome / EPSRC Centre for Interventional and Surgical Sciences'),
(88062, 'https://ror.org/03r4jm593', 'en', 1, 'https://ror.org/03r4jm593 Stephen Lewis Foundation'),
(88063, 'https://ror.org/03r4ss628', 'en', 1, 'https://ror.org/03r4ss628 Society for American Archaeology'),
(88064, 'https://ror.org/03r4vfr28', 'en', 1, 'https://ror.org/03r4vfr28 Society of Petroleum Engineers'),
(88065, 'https://ror.org/03r5zvp34', 'en', 1, 'https://ror.org/03r5zvp34 Pan African University Institute of Life and Earth Sciences'),
(88066, 'https://ror.org/03r6vqn56', 'en', 1, 'https://ror.org/03r6vqn56 Nationaal Regieorgaan Praktijkgericht Onderzoek SIA Taskforce for Applied Research'),
(88067, 'https://ror.org/03r8gxr03', 'en', 0, 'https://ror.org/03r8gxr03 United Nations Educational, Scientific and Cultural Organization'),
(88068, 'https://ror.org/03r9k1585', 'en', 1, 'https://ror.org/03r9k1585 Iowa City VA Medical Center'),
(88069, 'https://ror.org/03rc91c03', 'en', 1, 'https://ror.org/03rc91c03 Froebel Trust'),
(88070, 'https://ror.org/03rc99w60', 'en', 1, 'https://ror.org/03rc99w60 Second Hospital of Tianjin Medical University'),
(88071, 'https://ror.org/03rd7w929', 'en', 1, 'https://ror.org/03rd7w929 National Marine Sanctuary Foundation'),
(88072, 'https://ror.org/03ref8j98', 'en', 1, 'https://ror.org/03ref8j98 Centre for Development and Enterprise'),
(88073, 'https://ror.org/03rgj1v74', 'en', 1, 'https://ror.org/03rgj1v74 Sbarro Health Research Organization'),
(88074, 'https://ror.org/03rjhjc18', 'en', 0, 'https://ror.org/03rjhjc18 NERC Environmental Bioinformatics Centre'),
(88075, 'https://ror.org/03rjyqh36', 'no_lang_code', 1, 'https://ror.org/03rjyqh36 Communication Disorders Technology (United States)'),
(88076, 'https://ror.org/03rjzpz25', 'en', 0, 'https://ror.org/03rjzpz25 Community Service Society of New York'),
(88077, 'https://ror.org/03rkdmq10', 'en', 1, 'https://ror.org/03rkdmq10 Society for Industrial Microbiology and Biotechnology'),
(88078, 'https://ror.org/03rks9355', 'no_lang_code', 1, 'https://ror.org/03rks9355 Naval Group (France)'),
(88079, 'https://ror.org/03rqh4h65', 'no_lang_code', 1, 'https://ror.org/03rqh4h65 Kawasumi Laboratories (Japan)'),
(88080, 'https://ror.org/03rs2w544', 'en', 1, 'https://ror.org/03rs2w544 Central Agricultural University ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(88081, 'https://ror.org/03rvhec15', 'en', 1, 'https://ror.org/03rvhec15 Clore Duffield Foundation'),
(88082, 'https://ror.org/03rx2tr07', 'en', 1, 'https://ror.org/03rx2tr07 National Synchrotron Radiation Laboratory å›½å®¶åŒę­„č¾å°„å®žéŖŒå®¤'),
(88083, 'https://ror.org/03rxbvw90', 'en', 1, 'https://ror.org/03rxbvw90 Society For Investigative Dermatology'),
(88084, 'https://ror.org/03rxyzb74', 'en', 1, 'https://ror.org/03rxyzb74 Institute for Democracy and Mediation'),
(88085, 'https://ror.org/03rz18g89', 'en', 1, 'https://ror.org/03rz18g89 Faith Baptist Bible College and Theological Seminary'),
(88086, 'https://ror.org/03rzkxc19', 'en', 1, 'https://ror.org/03rzkxc19 Chaozhou Central Hospital ę½®å·žåø‚äø­åæƒåŒ»é™¢'),
(88087, 'https://ror.org/03s04p689', 'fr', 1, 'https://ror.org/03s04p689 Association Neuro-Bretagne'),
(88088, 'https://ror.org/03s0c9350', 'en', 1, 'https://ror.org/03s0c9350 University of America'),
(88089, 'https://ror.org/03s23ay81', 'no_lang_code', 1, 'https://ror.org/03s23ay81 Komatsu (Japan) ę Ŗå¼ä¼šē¤¾å°ę¾č£½ä½œę‰€'),
(88090, 'https://ror.org/03s3hf581', 'en', 1, 'https://ror.org/03s3hf581 Mazandaran University of Science and Technology دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† مازندران'),
(88091, 'https://ror.org/03s455144', 'en', 1, 'https://ror.org/03s455144 Rett Syndrome Research Trust'),
(88092, 'https://ror.org/03s7b0a75', 'en', 1, 'https://ror.org/03s7b0a75 Osteo Science Foundation'),
(88093, 'https://ror.org/03s8wm141', 'en', 1, 'https://ror.org/03s8wm141 Wuxi Institute of Arts & Technology ę— é””č‰ŗęœÆå­¦é™¢'),
(88094, 'https://ror.org/03s9nzc43', 'en', 1, 'https://ror.org/03s9nzc43 Reva and David Logan Foundation'),
(88095, 'https://ror.org/03sab2a45', 'en', 1, 'https://ror.org/03sab2a45 Ulsan University Hospital ģšøģ‚°ėŒ€ķ•™źµė³‘ģ›'),
(88096, 'https://ror.org/03sabpy05', 'en', 1, 'https://ror.org/03sabpy05 Riley Children''s Foundation'),
(88097, 'https://ror.org/03sagfk94', 'en', 1, 'https://ror.org/03sagfk94 Asociación Catalana de Universidades Públicas Catalan Association of Public Universities'),
(88098, 'https://ror.org/03savc306', 'en', 1, 'https://ror.org/03savc306 Mississippi Department of Wildlife Fisheries and Parks'),
(88099, 'https://ror.org/03saxfv98', 'en', 1, 'https://ror.org/03saxfv98 Ningxia Normal University'),
(88100, 'https://ror.org/03sayg697', 'no_lang_code', 1, 'https://ror.org/03sayg697 ATCO (Canada)'),
(88101, 'https://ror.org/03sc84089', 'en', 1, 'https://ror.org/03sc84089 Schwartz/Reisman Emergency Medicine Institute'),
(88102, 'https://ror.org/03sd43014', 'en', 1, 'https://ror.org/03sd43014 Queensland Cyber Infrastructure Foundation'),
(88103, 'https://ror.org/03sd6kg46', 'no_lang_code', 1, 'https://ror.org/03sd6kg46 Supernus Pharmaceuticals (United States)'),
(88104, 'https://ror.org/03sd9v004', 'en', 1, 'https://ror.org/03sd9v004 Umma University'),
(88105, 'https://ror.org/03sdytw09', 'no_lang_code', 1, 'https://ror.org/03sdytw09 Imricor (United States)'),
(88106, 'https://ror.org/03sfv7b53', 'en', 1, 'https://ror.org/03sfv7b53 Mt. Ascutney Hospital and Health Center'),
(88107, 'https://ror.org/03sfwvw54', 'en', 1, 'https://ror.org/03sfwvw54 National Institute of Technology Srinagar ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¶ą„ą¤°ą„€ą¤Øą¤—ą¤°'),
(88108, 'https://ror.org/03sgk3c38', 'en', 1, 'https://ror.org/03sgk3c38 National University of Food Technologies ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ пищевых технологий ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ харчових технологій'),
(88109, 'https://ror.org/03shhrx95', 'no_lang_code', 1, 'https://ror.org/03shhrx95 Daqing Oilfield of CNPC äø­å›½ēŸ³ę²¹å¤§åŗ†ę²¹ē”°'),
(88110, 'https://ror.org/03sm30m06', 'en', 1, 'https://ror.org/03sm30m06 Raincoast Conservation Foundation'),
(88111, 'https://ror.org/03snntx53', 'en', 1, 'https://ror.org/03snntx53 Finnish Concordia Fund Suomalainen Konkordia-liitto'),
(88112, 'https://ror.org/03sps3687', 'en', 1, 'https://ror.org/03sps3687 Chesapeake Bay Trust'),
(88113, 'https://ror.org/03sq7pd48', 'en', 1, 'https://ror.org/03sq7pd48 BRACE'),
(88114, 'https://ror.org/03sr1ma14', 'en', 1, 'https://ror.org/03sr1ma14 Iran National Science Foundation'),
(88115, 'https://ror.org/03srxkh15', 'no_lang_code', 0, 'https://ror.org/03srxkh15 Renishaw Diagnostics (United Kingdom)'),
(88116, 'https://ror.org/03sscxa41', 'en', 1, 'https://ror.org/03sscxa41 NSCAD University'),
(88117, 'https://ror.org/03st4v061', 'en', 0, 'https://ror.org/03st4v061 Fukuoka International University ē¦å²”å›½éš›å¤§å­¦'),
(88118, 'https://ror.org/03sva2t10', 'en', 1, 'https://ror.org/03sva2t10 Forefront of Dermatology'),
(88119, 'https://ror.org/03sw0n811', 'en', 1, 'https://ror.org/03sw0n811 Global Fund for Women'),
(88120, 'https://ror.org/03sw64e71', 'en', 1, 'https://ror.org/03sw64e71 Indo-US Science and Technology Forum'),
(88121, 'https://ror.org/03szxk541', 'no_lang_code', 0, 'https://ror.org/03szxk541 Mentor Graphics (United Kingdom)'),
(88122, 'https://ror.org/03t015f28', 'en', 1, 'https://ror.org/03t015f28 Foundation for Individual Rights in Education'),
(88123, 'https://ror.org/03t0t6y08', 'en', 1, 'https://ror.org/03t0t6y08 University of California Division of Agriculture and Natural Resources'),
(88124, 'https://ror.org/03t5h1366', 'nl', 1, 'https://ror.org/03t5h1366 Freek en Hella de Jonge Stichting'),
(88125, 'https://ror.org/03t7epq39', 'en', 1, 'https://ror.org/03t7epq39 Lion Foundation'),
(88126, 'https://ror.org/03t8gwj81', 'en', 1, 'https://ror.org/03t8gwj81 JECS Trust'),
(88127, 'https://ror.org/03t8x2c04', 'en', 1, 'https://ror.org/03t8x2c04 Aga Khan Foundation'),
(88128, 'https://ror.org/03t955590', 'en', 0, 'https://ror.org/03t955590 Crimean State Humanitarian University'),
(88129, 'https://ror.org/03tb37539', 'en', 1, 'https://ror.org/03tb37539 Moorfields Eye Hospital'),
(88130, 'https://ror.org/03tbkt876', 'en', 1, 'https://ror.org/03tbkt876 Shanghai Meteorological Bureau äøŠęµ·åø‚ę°”č±”å±€'),
(88131, 'https://ror.org/03tbtgq51', 'en', 1, 'https://ror.org/03tbtgq51 Tokyo Environmental Public Service Corporation ę±äŗ¬éƒ½ē’°å¢ƒå…¬ē¤¾'),
(88132, 'https://ror.org/03td4yf75', 'no_lang_code', 1, 'https://ror.org/03td4yf75 Weatherford (United States)'),
(88133, 'https://ror.org/03te6dp58', 'no_lang_code', 0, 'https://ror.org/03te6dp58 Blindsight (United States)'),
(88134, 'https://ror.org/03tex3d35', 'en', 1, 'https://ror.org/03tex3d35 Foster Foundation'),
(88135, 'https://ror.org/03tfst120', 'en', 1, 'https://ror.org/03tfst120 Armenian National Institute'),
(88136, 'https://ror.org/03tfypj28', 'en', 1, 'https://ror.org/03tfypj28 Rudd Foundation'),
(88137, 'https://ror.org/03tgsfw79', 'en', 1, 'https://ror.org/03tgsfw79 Kobe University ē„žęˆøå¤§å­¦'),
(88138, 'https://ror.org/03tjm1a67', 'en', 1, 'https://ror.org/03tjm1a67 Osato Research Institute ć‚Ŗć‚µćƒˆē ”ē©¶ę‰€'),
(88139, 'https://ror.org/03tk0zs48', 'en', 1, 'https://ror.org/03tk0zs48 Mississippi Department of Marine Resources'),
(88140, 'https://ror.org/03tmpzb72', 'en', 1, 'https://ror.org/03tmpzb72 State Library of Victoria'),
(88141, 'https://ror.org/03tqe0950', 'nl', 1, 'https://ror.org/03tqe0950 Expertisecentrum Nederlands'),
(88142, 'https://ror.org/03tr0kn27', 'en', 0, 'https://ror.org/03tr0kn27 Smolensk University for Humanities Дмоленский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88143, 'https://ror.org/03ts3j724', 'en', 0, 'https://ror.org/03ts3j724 ISMA University Informācijas sistēmu menedžmenta augstskola Š’Ń‹ŃŃˆŠ°Ń школа менеГжмента Šø информационных систем'),
(88144, 'https://ror.org/03tsam659', 'fr', 0, 'https://ror.org/03tsam659 Ɖcole nationale vĆ©tĆ©rinaire de Lyon'),
(88145, 'https://ror.org/03ttxzr96', 'en', 1, 'https://ror.org/03ttxzr96 City of Portland'),
(88146, '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'),
(88147, 'https://ror.org/03twcgp39', 'en', 1, 'https://ror.org/03twcgp39 Ministerul Educației, Culturii și Cercetării Ministry of Education, Culture and Research'),
(88148, 'https://ror.org/03twpsy53', 'en', 0, 'https://ror.org/03twpsy53 Shepherd University Research Corporation'),
(88149, 'https://ror.org/03twxam98', 'no_lang_code', 1, 'https://ror.org/03twxam98 Combe (United States)'),
(88150, 'https://ror.org/03tx9h743', 'no_lang_code', 1, 'https://ror.org/03tx9h743 Atlantic Healthcare (United Kingdom)'),
(88151, 'https://ror.org/03v0k6341', 'en', 1, 'https://ror.org/03v0k6341 German National Academy of Sciences Leopoldina Nationale Akademie der Wissenschaften Leopoldina'),
(88152, 'https://ror.org/03v3xp839', 'no_lang_code', 1, 'https://ror.org/03v3xp839 Medin (Czechia)'),
(88153, 'https://ror.org/03v4j0e89', 'en', 1, 'https://ror.org/03v4j0e89 Dublin Dental University Hospital'),
(88154, 'https://ror.org/03v67de52', 'no_lang_code', 1, 'https://ror.org/03v67de52 Duchesnay (Canada)'),
(88155, 'https://ror.org/03v7rwj71', 'de', 1, 'https://ror.org/03v7rwj71 Dr. Rolf M. Schwiete Stiftung'),
(88156, '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'),
(88157, 'https://ror.org/03v8t4025', 'en', 1, 'https://ror.org/03v8t4025 Russian Quantum Center ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ центр квантовой оптики Šø квантовых технологий'),
(88158, 'https://ror.org/03vb53h45', 'en', 1, 'https://ror.org/03vb53h45 Guru Nanak Institutions'),
(88159, 'https://ror.org/03vbj2a93', 'no_lang_code', 1, 'https://ror.org/03vbj2a93 High Value Manufacturing Catapult'),
(88160, 'https://ror.org/03vbz5k97', 'en', 1, 'https://ror.org/03vbz5k97 Associated Universities, Inc.'),
(88161, 'https://ror.org/03vcw8q46', 'en', 1, 'https://ror.org/03vcw8q46 Myanmar Maritime University į€™į€¼į€”į€ŗį€™į€¬į€”į€­į€Æį€„į€ŗį€„į€¶į€›į€±į€€į€¼į€±į€¬į€„į€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(88162, 'https://ror.org/03vcx3f97', 'fr', 1, 'https://ror.org/03vcx3f97 HƓpital Purpan'),
(88163, 'https://ror.org/03vj5kk45', 'en', 0, 'https://ror.org/03vj5kk45 Office of Public and Intergovernmental Affairs'),
(88164, 'https://ror.org/03vjq7x94', 'en', 1, 'https://ror.org/03vjq7x94 Great Ormond Street Hospital Children''s Charity'),
(88165, 'https://ror.org/03vn1xq77', 'fr', 1, 'https://ror.org/03vn1xq77 Centre Hospitalier Saint-Joseph Saint-Luc'),
(88166, 'https://ror.org/03vnb1535', 'en', 1, 'https://ror.org/03vnb1535 Liaoning Academy of Agricultural Sciences č¾½å®ēœå†œäøšē§‘å­¦é™¢'),
(88167, 'https://ror.org/03vp1z202', 'en', 1, 'https://ror.org/03vp1z202 Graham and Carolyn Holloway Family Foundation'),
(88168, 'https://ror.org/03vqbqd44', 'en', 1, 'https://ror.org/03vqbqd44 Manchester and Lancashire Family History Society'),
(88169, 'https://ror.org/03vsz6k78', 'no_lang_code', 1, 'https://ror.org/03vsz6k78 Corlife (Germany)'),
(88170, 'https://ror.org/03vy1bn66', 'no_lang_code', 1, 'https://ror.org/03vy1bn66 Woodside (Australia)'),
(88171, 'https://ror.org/03vykar50', 'no_lang_code', 0, 'https://ror.org/03vykar50 Invivo (United States)'),
(88172, 'https://ror.org/03vzats23', 'en', 1, 'https://ror.org/03vzats23 Jaap Schouten Foundation'),
(88173, 'https://ror.org/03w03d982', 'en', 0, 'https://ror.org/03w03d982 Urals State Medical University Š£Š ŠŠ›Š¬Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(88174, 'https://ror.org/03w1e7t43', 'en', 0, 'https://ror.org/03w1e7t43 Cold Laser Therapy Center'),
(88175, 'https://ror.org/03w2e8s04', 'no_lang_code', 1, 'https://ror.org/03w2e8s04 AfaSci (United States)'),
(88176, 'https://ror.org/03w4phb31', 'no_lang_code', 0, 'https://ror.org/03w4phb31 EMC (United States)'),
(88177, 'https://ror.org/03w5df895', 'en', 1, 'https://ror.org/03w5df895 Sixteenth Century Society and Conference'),
(88178, 'https://ror.org/03w8atn36', 'en', 0, 'https://ror.org/03w8atn36 Bamboo Research Center å›½å®¶ęž—äøšå’Œč‰åŽŸå±€ē«¹å­ē ”ē©¶å¼€å‘äø­åæƒ'),
(88179, 'https://ror.org/03w8qrn62', 'no_lang_code', 1, 'https://ror.org/03w8qrn62 Baosteel (China)'),
(88180, 'https://ror.org/03w9qta54', 'en', 0, 'https://ror.org/03w9qta54 Purdue University North Central'),
(88181, 'https://ror.org/03wax9c83', 'en', 1, 'https://ror.org/03wax9c83 Weil Foot & Ankle Institute'),
(88182, 'https://ror.org/03wb0d413', 'no_lang_code', 0, 'https://ror.org/03wb0d413 Alere Wellbeing'),
(88183, 'https://ror.org/03wbg5y51', 'no_lang_code', 1, 'https://ror.org/03wbg5y51 ipIQ'),
(88184, 'https://ror.org/03wcn4h12', 'en', 1, 'https://ror.org/03wcn4h12 Longdong University é™‡äøœå­¦é™¢'),
(88185, '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'),
(88186, 'https://ror.org/03wcqr438', 'en', 0, 'https://ror.org/03wcqr438 South West Public Health Observatory'),
(88187, 'https://ror.org/03wdrmh81', 'en', 1, 'https://ror.org/03wdrmh81 Sahand University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ سهند'),
(88188, 'https://ror.org/03wdwyn13', 'en', 0, 'https://ror.org/03wdwyn13 South Australian Health'),
(88189, 'https://ror.org/03wev7075', 'en', 1, 'https://ror.org/03wev7075 National Bureau of Asian Research'),
(88190, 'https://ror.org/03wfm3b62', 'en', 1, 'https://ror.org/03wfm3b62 Foundation for Circulatory Health'),
(88191, 'https://ror.org/03wh7p582', 'no_lang_code', 0, 'https://ror.org/03wh7p582 GlobalStem (United States)'),
(88192, 'https://ror.org/03wkk5p21', 'en', 1, 'https://ror.org/03wkk5p21 Association for Frontotemporal Degeneration'),
(88193, 'https://ror.org/03wkq5991', 'ca', 0, 'https://ror.org/03wkq5991 USP Institut Universitari Dexeus'),
(88194, 'https://ror.org/03wnhdg91', 'no_lang_code', 0, 'https://ror.org/03wnhdg91 Takata (United States)'),
(88195, 'https://ror.org/03wpb7480', 'pl', 0, 'https://ror.org/03wpb7480 Państwowy Instytut Badawczy'),
(88196, 'https://ror.org/03wpxq490', 'en', 0, 'https://ror.org/03wpxq490 Centres of Excellence'),
(88197, 'https://ror.org/03wq30m17', 'en', 1, 'https://ror.org/03wq30m17 InterAcademy Partnership'),
(88198, 'https://ror.org/03wr71s88', 'no_lang_code', 0, 'https://ror.org/03wr71s88 Illumina Digital (United Kingdom)'),
(88199, 'https://ror.org/03wtxje77', 'en', 1, 'https://ror.org/03wtxje77 European Leukodystrophy Association L’Association EuropĆ©enne contre les Leucodystrophies'),
(88200, 'https://ror.org/03wvgzg13', 'no_lang_code', 0, 'https://ror.org/03wvgzg13 Novion Technologies (United States)'),
(88201, 'https://ror.org/03wx2rr30', 'en', 1, 'https://ror.org/03wx2rr30 University of Ibadan YunifÔsítì ìlú Ìbàdàn'),
(88202, 'https://ror.org/03wy6tp26', 'en', 1, 'https://ror.org/03wy6tp26 Helmholtz Alliance for Astroparticle Physics'),
(88203, 'https://ror.org/03wzt2e41', 'en', 1, 'https://ror.org/03wzt2e41 International Foundation for Sonography Education and Research'),
(88204, 'https://ror.org/03x6a1n79', 'fr', 1, 'https://ror.org/03x6a1n79 ModĆØles Dynamiques Corpus'),
(88205, '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'),
(88206, 'https://ror.org/03x8vck69', 'no_lang_code', 1, 'https://ror.org/03x8vck69 Sinochem Group (China) äø­å›½äø­åŒ–é›†å›¢å…¬åø'),
(88207, 'https://ror.org/03xa45x83', 'en', 0, 'https://ror.org/03xa45x83 National American University'),
(88208, 'https://ror.org/03xafbp74', 'en', 0, 'https://ror.org/03xafbp74 AndrĆ”s Pető College Š¤Š°ŠŗŃƒŠ»ŃŒŃ‚ŠµŃ‚ ŠŠ½Š“Ń€Š°Ńˆ ŠŸŠµŃ‚Ń‘'),
(88209, 'https://ror.org/03xasj370', 'en', 1, 'https://ror.org/03xasj370 Centre for Global Health Research'),
(88210, 'https://ror.org/03xb6vv35', 'en', 1, 'https://ror.org/03xb6vv35 Peacock Foundation'),
(88211, 'https://ror.org/03xbv1180', 'no_lang_code', 0, 'https://ror.org/03xbv1180 Kvaerner (Norway)'),
(88212, 'https://ror.org/03xcfma33', 'en', 1, 'https://ror.org/03xcfma33 National Council for Air and Stream Improvement'),
(88213, 'https://ror.org/03xez1567', 'en', 1, 'https://ror.org/03xez1567 Salk Institute for Biological Studies'),
(88214, 'https://ror.org/03xfjns53', 'en', 1, 'https://ror.org/03xfjns53 Cutaneous Lymphoma Foundation'),
(88215, 'https://ror.org/03xh6aq63', 'en', 1, 'https://ror.org/03xh6aq63 Astronomy Australia'),
(88216, 'https://ror.org/03xh9nq73', 'en', 1, 'https://ror.org/03xh9nq73 Leibniz Institute for Baltic Sea Research Leibniz-Institut für Ostseeforschung Warnemünde'),
(88217, 'https://ror.org/03xj6g968', 'en', 1, 'https://ror.org/03xj6g968 Batumi Navigation Teaching University įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒœįƒįƒ•įƒ˜įƒ’įƒįƒŖįƒ˜įƒ˜įƒ” įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(88218, 'https://ror.org/03xmk2w36', 'en', 1, 'https://ror.org/03xmk2w36 Universidad de Arte y Ciencias Sociales University of Art and Social Sciences'),
(88219, 'https://ror.org/03xp1yc32', 'en', 0, 'https://ror.org/03xp1yc32 Golden Opportunities Foundation'),
(88220, 'https://ror.org/03xphts16', 'en', 1, 'https://ror.org/03xphts16 European Geosciences Union'),
(88221, 'https://ror.org/03xrapp02', 'en', 0, 'https://ror.org/03xrapp02 Texas A&M Health Science Center'),
(88222, 'https://ror.org/03xrdnh15', 'no_lang_code', 0, 'https://ror.org/03xrdnh15 MSC Software (Germany)'),
(88223, 'https://ror.org/03xwbsw41', 'no_lang_code', 1, 'https://ror.org/03xwbsw41 Cascade Technologies (United States)'),
(88224, 'https://ror.org/03xxd7g80', 'en', 0, 'https://ror.org/03xxd7g80 United States Army Public Health Command'),
(88225, 'https://ror.org/03xxhjp07', 'no_lang_code', 1, 'https://ror.org/03xxhjp07 Electro Optical Systems (Germany)'),
(88226, 'https://ror.org/03xxsgr61', 'sv', 1, 'https://ror.org/03xxsgr61 Diabetesfƶrbundet, Svenska Diabetesfƶrbundet'),
(88227, 'https://ror.org/03xyf3h94', 'en', 1, 'https://ror.org/03xyf3h94 European Venous Forum'),
(88228, 'https://ror.org/03xzf6x18', 'en', 1, 'https://ror.org/03xzf6x18 Korean Breast Cancer Society'),
(88229, 'https://ror.org/03xzhx774', 'en', 1, 'https://ror.org/03xzhx774 Business and Hotel Management School'),
(88230, 'https://ror.org/03xzjnp53', 'en', 1, 'https://ror.org/03xzjnp53 Iziko Museums of South Africa'),
(88231, 'https://ror.org/03y191s38', 'en', 1, 'https://ror.org/03y191s38 Yan Chai Hospital ä»ęæŸé†«é™¢'),
(88232, 'https://ror.org/03y2x8717', 'en', 1, 'https://ror.org/03y2x8717 Universiteti i Mjekƫsisƫ, Tiranƫ University of Medicine Tirana'),
(88233, 'https://ror.org/03y3dt762', 'en', 1, 'https://ror.org/03y3dt762 Louisiana Delta Community College'),
(88234, 'https://ror.org/03y4g9k62', 'es', 1, 'https://ror.org/03y4g9k62 Fundación Instituto para la Mejora de la Asistencia Sanitaria'),
(88235, 'https://ror.org/03y4rnb63', 'en', 1, 'https://ror.org/03y4rnb63 Ingham Institute'),
(88236, 'https://ror.org/03y8p5m75', 'no_lang_code', 1, 'https://ror.org/03y8p5m75 Ushio (Japan) ć‚¦ć‚·ć‚Ŗé›»ę©Ÿ'),
(88237, 'https://ror.org/03y90jx90', 'no_lang_code', 1, 'https://ror.org/03y90jx90 Manitoba Hydro'),
(88238, 'https://ror.org/03y974j42', 'nl', 1, 'https://ror.org/03y974j42 Nefrovisie'),
(88239, 'https://ror.org/03ybx0x41', 'en', 0, 'https://ror.org/03ybx0x41 Department of Biomedicine Basel'),
(88240, 'https://ror.org/03yc0k631', 'en', 1, 'https://ror.org/03yc0k631 Milagro Foundation'),
(88241, 'https://ror.org/03yeht902', 'en', 1, 'https://ror.org/03yeht902 Ministerstvo FinanciĆ­ Slovenskej Republiky Ministry of Finance of the Slovak Republic'),
(88242, 'https://ror.org/03yfxw954', 'en', 0, 'https://ror.org/03yfxw954 Suzugamine Women''s College 鈓峯儳子短期大学'),
(88243, 'https://ror.org/03ygf8v71', 'en', 1, 'https://ror.org/03ygf8v71 New York State Economic Development Council'),
(88244, 'https://ror.org/03yjk4m33', 'no_lang_code', 1, 'https://ror.org/03yjk4m33 Aftenposten (Norway)'),
(88245, 'https://ror.org/03ykge061', 'en', 1, 'https://ror.org/03ykge061 Rochester Museum and Science Center'),
(88246, 'https://ror.org/03ymk3103', 'en', 0, 'https://ror.org/03ymk3103 University of Washington School of Medicine'),
(88247, 'https://ror.org/03ymvkx94', 'en', 0, 'https://ror.org/03ymvkx94 Texas Tech University Health Sciences Center'),
(88248, 'https://ror.org/03ymy8z76', 'en', 1, 'https://ror.org/03ymy8z76 Taipei Veterans General Hospital å°åŒ—ę¦®ę°‘ēø½é†«é™¢'),
(88249, 'https://ror.org/03ynvqh91', 'en', 1, 'https://ror.org/03ynvqh91 Palaeontological Scientific Trust'),
(88250, 'https://ror.org/03ypvde47', 'en', 0, 'https://ror.org/03ypvde47 Ipswich Hospital NHS Trust'),
(88251, 'https://ror.org/03ypwcv39', 'no_lang_code', 0, 'https://ror.org/03ypwcv39 Flowmetrics (United States)'),
(88252, 'https://ror.org/03yqtkg69', 'en', 1, 'https://ror.org/03yqtkg69 International Union of Toxicology'),
(88253, 'https://ror.org/03yr98e59', 'en', 0, 'https://ror.org/03yr98e59 The Russian Presidential Academy of National Economy and Public Administration Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ нароГного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ при ŠŸŃ€ŠµŠ·ŠøŠ“енте Российской ФеГерации'),
(88254, 'https://ror.org/03ys8dr56', 'en', 1, 'https://ror.org/03ys8dr56 Hislop College'),
(88255, 'https://ror.org/03yv4n892', 'en', 0, 'https://ror.org/03yv4n892 Vanderbilt University School of Medicine'),
(88256, 'https://ror.org/03yyg2352', 'en', 1, 'https://ror.org/03yyg2352 Children''s Oncology Group'),
(88257, 'https://ror.org/03yzt0q73', 'en', 0, 'https://ror.org/03yzt0q73 Penn State Beaver'),
(88258, 'https://ror.org/03z013854', 'en', 0, 'https://ror.org/03z013854 Underwood Memorial Hospital'),
(88259, 'https://ror.org/03z01w103', 'en', 1, 'https://ror.org/03z01w103 Reno Sparks Indian Colony'),
(88260, 'https://ror.org/03z324m19', 'en', 1, 'https://ror.org/03z324m19 Colorectal Surgical Society of Australia and New Zealand'),
(88261, 'https://ror.org/03z3mg085', 'en', 1, 'https://ror.org/03z3mg085 Paracelsus Medical University Paracelsus Medizinische PrivatuniversitƤt'),
(88262, 'https://ror.org/03z5b5h37', 'sv', 1, 'https://ror.org/03z5b5h37'),
(88263, 'https://ror.org/03z6hnk02', 'de', 1, 'https://ror.org/03z6hnk02 Bundesanstalt für Wasserbau Federal Waterways Engineering and Research Institute'),
(88264, 'https://ror.org/03z77mq14', 'en', 1, 'https://ror.org/03z77mq14 Jay and Rose Phillips Family Foundation of Minnesota'),
(88265, 'https://ror.org/03z98aa86', 'en', 1, 'https://ror.org/03z98aa86 Russian State Social University Российский Š³Š¾ŃŃƒŠ“арственный ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88266, 'https://ror.org/03zb5p722', 'es', 1, 'https://ror.org/03zb5p722 Instituto Tecnológico Metropolitano'),
(88267, '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'),
(88268, 'https://ror.org/03zd5ej89', 'en', 1, 'https://ror.org/03zd5ej89 Liver Foundation West Bengal'),
(88269, 'https://ror.org/03zdwsf69', 'en', 1, 'https://ror.org/03zdwsf69 University of Rostock UniversitƤt Rostock');
INSERT INTO `rors` VALUES
(88270, 'https://ror.org/03zfph507', 'en', 1, 'https://ror.org/03zfph507 Mary Reynolds Babcock Foundation'),
(88271, 'https://ror.org/03zjqec80', 'en', 1, 'https://ror.org/03zjqec80 Hospital for Special Surgery'),
(88272, 'https://ror.org/03zktn661', 'en', 0, 'https://ror.org/03zktn661 Chicago School of Professional Psychology'),
(88273, 'https://ror.org/03zmbgt55', 'no_lang_code', 1, 'https://ror.org/03zmbgt55 Cognitive Technologies (United States)'),
(88274, 'https://ror.org/03zmy5a21', 'it', 1, 'https://ror.org/03zmy5a21 Finpiemonte'),
(88275, 'https://ror.org/03zp9rn25', 'no_lang_code', 0, 'https://ror.org/03zp9rn25 Regenxbio (United States)'),
(88276, 'https://ror.org/03zr1tg88', 'en', 0, 'https://ror.org/03zr1tg88 Ministry of Research, Innovation and Science'),
(88277, 'https://ror.org/03zs9ke09', 'en', 0, 'https://ror.org/03zs9ke09 St. Mary''s Hospital č–ćƒžćƒŖć‚¢ē—…é™¢'),
(88278, 'https://ror.org/03zv4m970', 'en', 1, 'https://ror.org/03zv4m970 Federal Social Insurance Office'),
(88279, 'https://ror.org/03zvgda56', 'no_lang_code', 1, 'https://ror.org/03zvgda56 Abeona Therapeutics (United States)'),
(88280, 'https://ror.org/03zxmqt60', 'en', 1, 'https://ror.org/03zxmqt60 Alaska Council of School Administrators'),
(88281, 'https://ror.org/03zz78009', 'en', 1, 'https://ror.org/03zz78009 International Studies Association'),
(88282, 'https://ror.org/0400g8r85', 'en', 1, 'https://ror.org/0400g8r85 Sun Yat-sen University Cancer Center äø­å±±å¤§å­¦č‚æē˜¤é˜²ę²»äø­åæƒ'),
(88283, 'https://ror.org/0403jak37', 'en', 1, 'https://ror.org/0403jak37 Al Baha University Ų¬Ų§Ł…Ų¹Ų© الباحة'),
(88284, 'https://ror.org/040452n49', 'no_lang_code', 0, 'https://ror.org/040452n49 Rio Tinto Alcan (Canada)'),
(88285, 'https://ror.org/040548g92', 'en', 1, 'https://ror.org/040548g92 University of Bisha Ų¬Ų§Ł…Ų¹Ų© بيؓة'),
(88286, 'https://ror.org/0405eh275', 'en', 0, 'https://ror.org/0405eh275 Kamenets Podolsky National University'),
(88287, 'https://ror.org/0405n5e57', 'en', 1, 'https://ror.org/0405n5e57 National Institute of Mental Health and Neurosciences ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ मानसिक जाँच ą¤ą¤µą¤‚ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ಮಾನಸಿಕ ą²†ą²°ą³‹ą²—ą³ą²Æ ಹಾಗೂ ą²Øą²°ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³† ą“Øą“æą“‚ą“¹ą“¾ąµ»ą“øąµ'),
(88288, 'https://ror.org/040a2r459', 'en', 1, 'https://ror.org/040a2r459 Belarusian National Technical University Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š½Š°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Ń‹ Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88289, 'https://ror.org/040dvh347', 'no_lang_code', 1, 'https://ror.org/040dvh347 Karus Therapeutics (United Kingdom)'),
(88290, 'https://ror.org/040h35947', 'en', 1, 'https://ror.org/040h35947 Fondation Partager le Savoir Sharing Knowledge Foundation'),
(88291, 'https://ror.org/040kfrw16', 'en', 1, 'https://ror.org/040kfrw16 SUNY Upstate Medical University'),
(88292, 'https://ror.org/040may582', 'en', 1, 'https://ror.org/040may582 New Jersey Health Foundation'),
(88293, 'https://ror.org/040nac133', 'en', 0, 'https://ror.org/040nac133 Art Institute of Austin'),
(88294, 'https://ror.org/040pj3n80', 'no_lang_code', 1, 'https://ror.org/040pj3n80 GRA (United States)'),
(88295, 'https://ror.org/040tqsb23', 'en', 1, 'https://ror.org/040tqsb23 Hospital for Tropical Diseases'),
(88296, 'https://ror.org/040v3rp82', 'no_lang_code', 1, 'https://ror.org/040v3rp82 Pohl Boskamp (Germany)'),
(88297, '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'),
(88298, 'https://ror.org/040ys5a92', 'en', 1, 'https://ror.org/040ys5a92 MOA Health Science Foundation MOA偄康科学貔団'),
(88299, 'https://ror.org/0410a6k82', 'no_lang_code', 1, 'https://ror.org/0410a6k82 GenMont Biotech (Taiwan)'),
(88300, 'https://ror.org/0410k9915', 'no_lang_code', 1, 'https://ror.org/0410k9915 China Shipbuilding Industry Corporation (China) äø­å›½čˆ¹čˆ¶é‡å·„é›†å›¢å…¬åø'),
(88301, 'https://ror.org/0410v2r25', 'en', 1, 'https://ror.org/0410v2r25 Institute for Research, Education and Training in Addictions'),
(88302, 'https://ror.org/0412y9z21', 'en', 1, 'https://ror.org/0412y9z21 Far Eastern Federal University Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88303, 'https://ror.org/0415v5370', 'en', 1, 'https://ror.org/0415v5370 Child & Family Service'),
(88304, 'https://ror.org/0416jmr79', 'en', 1, 'https://ror.org/0416jmr79 Huron Mountain Wildlife Foundation'),
(88305, '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'),
(88306, 'https://ror.org/041b9ak66', 'en', 0, 'https://ror.org/041b9ak66 Shenzhen Bao''an Maternal And Child Health Hospital'),
(88307, 'https://ror.org/041bz9r75', 'en', 1, 'https://ror.org/041bz9r75 Fulda University of Applied Sciences Hochschule Fulda'),
(88308, 'https://ror.org/041edny43', 'en', 1, 'https://ror.org/041edny43 Lianyungang Technical College čæžäŗ‘ęøÆčŒé™¢'),
(88309, 'https://ror.org/041fs4c33', 'en', 1, 'https://ror.org/041fs4c33 Far-western University ą¤øą„ą¤¦ą„‚ą¤°ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(88310, 'https://ror.org/041gvrq41', 'en', 1, 'https://ror.org/041gvrq41 Dundee Science Centre'),
(88311, 'https://ror.org/041n8nd21', 'en', 1, 'https://ror.org/041n8nd21 National Hospice and Palliative Care Organization'),
(88312, 'https://ror.org/041ndzj79', 'en', 0, 'https://ror.org/041ndzj79 University of New Mexico'),
(88313, 'https://ror.org/041nggf72', 'en', 1, 'https://ror.org/041nggf72 Tree Research and Education Endowment Fund'),
(88314, 'https://ror.org/041nhzq95', 'en', 0, 'https://ror.org/041nhzq95 Penn State Berks'),
(88315, 'https://ror.org/041phzg73', 'en', 0, 'https://ror.org/041phzg73 Raymond and Ruth Perelman School of Medicine at the University of Pennsylvania'),
(88316, 'https://ror.org/041pjwa23', 'pt', 1, 'https://ror.org/041pjwa23 Universidade do Vale do ItajaĆ­'),
(88317, 'https://ror.org/041pvn916', 'de', 1, 'https://ror.org/041pvn916 KfH-Stiftung PrƤventivmedizin'),
(88318, 'https://ror.org/041qkag73', 'en', 1, 'https://ror.org/041qkag73 Missouri Department of Health and Senior Services'),
(88319, 'https://ror.org/041qt9m90', 'en', 0, 'https://ror.org/041qt9m90 California College of the Arts'),
(88320, 'https://ror.org/041r75465', 'en', 1, 'https://ror.org/041r75465 Zhengzhou Central Hospital'),
(88321, 'https://ror.org/041rdq190', 'en', 1, 'https://ror.org/041rdq190 National Institutes for Food and Drug Control äø­å›½é£Ÿå“čÆå“ę£€å®šē ”ē©¶é™¢'),
(88322, 'https://ror.org/041vyzr56', 'en', 1, 'https://ror.org/041vyzr56 National Museum of Play'),
(88323, 'https://ror.org/041w2qd15', 'en', 1, 'https://ror.org/041w2qd15 Sri Rajiv Gandhi College of Dental Sciences and Hospital'),
(88324, 'https://ror.org/0421w8947', 'en', 1, 'https://ror.org/0421w8947 Immanuel Kant Baltic Federal University Балтийский Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Иммануила ŠšŠ°Š½Ń‚а'),
(88325, 'https://ror.org/0423z3467', 'en', 1, 'https://ror.org/0423z3467 Central Coast Local Health District'),
(88326, 'https://ror.org/0425cyr19', 'es', 0, 'https://ror.org/0425cyr19 Instituto de Estudios de la Inmunidad Humoral Prof. Ricardo A. Margni'),
(88327, 'https://ror.org/0425rjj21', 'en', 1, 'https://ror.org/0425rjj21 Academia Fortelor Aeriene "Henri Coandă" Henri Coanda Air Force Academy'),
(88328, 'https://ror.org/0428ac656', 'en', 1, 'https://ror.org/0428ac656 Primate Society of Great Britain'),
(88329, 'https://ror.org/042b6j696', 'en', 1, 'https://ror.org/042b6j696 Nanzan University 南山大学'),
(88330, 'https://ror.org/042cc7155', 'no', 0, 'https://ror.org/042cc7155 Iku Petroleumsforskning As SINTEF Petroleum Research'),
(88331, 'https://ror.org/042ew0574', 'en', 1, 'https://ror.org/042ew0574 Trinity House'),
(88332, 'https://ror.org/042ha6j15', 'en', 1, 'https://ror.org/042ha6j15 Astma och Allergi Fƶrbundet Swedish Asthma and Allergy Association'),
(88333, 'https://ror.org/042j8gb36', 'en', 1, 'https://ror.org/042j8gb36 National Czech and Slovak Museum & Library'),
(88334, 'https://ror.org/042ksc857', 'en', 1, 'https://ror.org/042ksc857 Lazarex Cancer Foundation'),
(88335, 'https://ror.org/042mrbn39', 'en', 1, 'https://ror.org/042mrbn39 Canadian Poultry Research Council Le Conseil de recherches avicoles du Canada'),
(88336, 'https://ror.org/042na4v08', 'it', 0, 'https://ror.org/042na4v08 Centro di Risonanze Magnetiche'),
(88337, 'https://ror.org/042pbz202', 'en', 1, 'https://ror.org/042pbz202 Thailand Institute of Scientific and Technological Research'),
(88338, 'https://ror.org/042qb3325', 'en', 1, 'https://ror.org/042qb3325 Owl Research Institute'),
(88339, 'https://ror.org/042re3x97', 'en', 1, 'https://ror.org/042re3x97 International Institute of Tropical Forestry'),
(88340, 'https://ror.org/042s6y882', 'no_lang_code', 1, 'https://ror.org/042s6y882 Inovio Pharmaceuticals (United States)'),
(88341, 'https://ror.org/042t93s57', 'en', 1, 'https://ror.org/042t93s57 Istituto Italiano di Tecnologia Italian Institute of Technology'),
(88342, 'https://ror.org/042tph174', 'en', 1, 'https://ror.org/042tph174 Pan African University Institute for Basic Sciences, Technology and Innovation'),
(88343, 'https://ror.org/042w6tv86', 'en', 1, 'https://ror.org/042w6tv86 Agricultural and Marketing Research and Development Trust'),
(88344, 'https://ror.org/042wjyc34', 'en', 1, 'https://ror.org/042wjyc34 Garnett Passe and Rodney Williams Memorial Foundation'),
(88345, 'https://ror.org/042wrtw77', 'en', 1, 'https://ror.org/042wrtw77 Department of Finance'),
(88346, 'https://ror.org/042znmb91', 'en', 0, 'https://ror.org/042znmb91 Stetson University'),
(88347, 'https://ror.org/0431afq97', 'en', 0, 'https://ror.org/0431afq97 Penn State Great Valley'),
(88348, 'https://ror.org/0431gsx87', 'en', 0, 'https://ror.org/0431gsx87 University of Phoenix'),
(88349, 'https://ror.org/043291659', 'en', 1, 'https://ror.org/043291659 Joe W. and Dorothy Dorsett Brown Foundation'),
(88350, 'https://ror.org/0433fd238', 'en', 1, 'https://ror.org/0433fd238 Swedish Society for Medical Research'),
(88351, 'https://ror.org/04347cr60', 'en', 1, 'https://ror.org/04347cr60 Rocky Mountain Research Station'),
(88352, 'https://ror.org/0434ws235', 'en', 0, 'https://ror.org/0434ws235 United Nations Educational, Scientific and Cultural Organization'),
(88353, 'https://ror.org/043am3669', 'en', 1, 'https://ror.org/043am3669 Rajarajeswari Dental College and Hospital'),
(88354, 'https://ror.org/043fjvg75', 'en', 0, 'https://ror.org/043fjvg75 International Winter University Kassel'),
(88355, 'https://ror.org/043fmpd46', 'en', 1, 'https://ror.org/043fmpd46 Shandong Province Health and Family Planning Commission å±±äøœēœå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(88356, 'https://ror.org/043h1dd22', 'en', 1, 'https://ror.org/043h1dd22 Hervey Foundation'),
(88357, 'https://ror.org/043jtz642', 'no_lang_code', 1, 'https://ror.org/043jtz642 TISICS (United Kingdom)'),
(88358, 'https://ror.org/043kmeg51', 'no_lang_code', 0, 'https://ror.org/043kmeg51 Tadiran Batteries (Israel)'),
(88359, 'https://ror.org/043m7r232', 'de', 0, 'https://ror.org/043m7r232 Eiblmayr Frank Architekten'),
(88360, 'https://ror.org/043n4tt17', 'no_lang_code', 1, 'https://ror.org/043n4tt17 Korea Telecom (South Korea) ģ¼€ģ“ķ‹° ģ£¼ģ‹ķšŒģ‚¬'),
(88361, 'https://ror.org/043raxx74', 'en', 0, 'https://ror.org/043raxx74 University of Houston Sugar Land'),
(88362, 'https://ror.org/043v64z77', 'en', 0, 'https://ror.org/043v64z77 Mary Bird Perkins Cancer Center'),
(88363, 'https://ror.org/043ys3745', 'en', 0, 'https://ror.org/043ys3745 Paris Grand Ouest University'),
(88364, 'https://ror.org/04402f517', 'en', 0, 'https://ror.org/04402f517 University of Nevada, Reno School of Medicine'),
(88365, 'https://ror.org/0441cz810', 'en', 1, 'https://ror.org/0441cz810 Turkish Cultural Foundation'),
(88366, 'https://ror.org/0441jdk54', 'en', 1, 'https://ror.org/0441jdk54 Stamford University Bangladesh ą¦øą§ą¦Ÿą§ą¦Æą¦¾ą¦®ą¦«ą§‹ą¦°ą§ą¦” ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ, বাংলাদেশ'),
(88367, 'https://ror.org/0441pfj90', 'en', 1, 'https://ror.org/0441pfj90 The Second Affiliated Hospital of Bengbu Medical College čšŒåŸ åŒ»å­¦é™¢ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(88368, 'https://ror.org/04425ns70', 'en', 1, 'https://ror.org/04425ns70 Catholic University of Kabgayi Institut Catholique de Kabgayi'),
(88369, 'https://ror.org/044356j33', 'no_lang_code', 1, 'https://ror.org/044356j33 The Mofet Institute מכון מופ"×Ŗ'),
(88370, 'https://ror.org/0445wmv88', 'en', 1, 'https://ror.org/0445wmv88 National Center for Science and Engineering Statistics'),
(88371, 'https://ror.org/04489kh59', 'en', 1, 'https://ror.org/04489kh59 Tischner European University Wyższa Szkoła Europejska'),
(88372, 'https://ror.org/0448wcz36', 'en', 1, 'https://ror.org/0448wcz36 athenahealth'),
(88373, 'https://ror.org/04498wq72', 'en', 1, 'https://ror.org/04498wq72 Korean College of Helicobacter and Upper Gastrointestinal Research ėŒ€ķ•œģƒė¶€ģœ„ģž„ź“€Ā·ķ—¬ė¦¬ģ½”ė°•ķ„°ķ•™ķšŒģ§€'),
(88374, 'https://ror.org/044asbp74', 'en', 1, 'https://ror.org/044asbp74 San Antonio Area Foundation'),
(88375, 'https://ror.org/044avja84', 'es', 1, 'https://ror.org/044avja84 Universidad de Ciencias Pedagógicas Enrique José Varona'),
(88376, 'https://ror.org/044bma518', 'en', 1, 'https://ror.org/044bma518 Forestry and Forest Products Research Institute å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗę£®ęž—ē ”ē©¶ćƒ»ę•“å‚™ę©Ÿę§‹'),
(88377, 'https://ror.org/044br6v76', 'en', 1, 'https://ror.org/044br6v76 Beaver County Library System'),
(88378, 'https://ror.org/044cqdj35', 'en', 0, 'https://ror.org/044cqdj35 Mie Chukyo University äø‰é‡äø­äŗ¬å¤§å­¦'),
(88379, 'https://ror.org/044ctd767', 'en', 0, 'https://ror.org/044ctd767 Art Institute of California'),
(88380, 'https://ror.org/044fdhr57', 'en', 1, 'https://ror.org/044fdhr57 Kanagawa Prefectural Hospital Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē„žå„ˆå·ēœŒē«‹ē—…é™¢ę©Ÿę§‹'),
(88381, 'https://ror.org/044ff5a54', 'en', 0, 'https://ror.org/044ff5a54 Riverland Community College'),
(88382, 'https://ror.org/044frnr25', 'no_lang_code', 1, 'https://ror.org/044frnr25 BioForce Nanosciences (United States)'),
(88383, 'https://ror.org/044hrt695', 'en', 1, 'https://ror.org/044hrt695 Dynasty Foundation'),
(88384, 'https://ror.org/044jd6p20', 'no_lang_code', 1, 'https://ror.org/044jd6p20 Argumentum Kiadó (Hungary)'),
(88385, 'https://ror.org/044m9mw93', 'en', 1, 'https://ror.org/044m9mw93 NIHR Newcastle Biomedical Research Centre'),
(88386, 'https://ror.org/044m9y381', 'en', 1, 'https://ror.org/044m9y381 Brain Aneurysm Foundation'),
(88387, 'https://ror.org/044n2fv18', 'en', 1, 'https://ror.org/044n2fv18 Slovak Academic Information Agency'),
(88388, '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'),
(88389, 'https://ror.org/044nwwd32', 'en', 1, 'https://ror.org/044nwwd32 Rostov Research Institute of Microbiology and Parasitology Ростовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ микробиологии Šø паразитологии'),
(88390, 'https://ror.org/044qwdk10', 'no_lang_code', 1, 'https://ror.org/044qwdk10 Guru Performance (United Kingdom)'),
(88391, 'https://ror.org/044r1dj76', 'en', 0, 'https://ror.org/044r1dj76 Food and Agriculture Organization of the United Nations'),
(88392, 'https://ror.org/044r7zq77', 'en', 1, 'https://ror.org/044r7zq77 American College of Healthcare Architects'),
(88393, 'https://ror.org/044rcds19', 'en', 0, 'https://ror.org/044rcds19 Argosy University'),
(88394, 'https://ror.org/044s94625', 'en', 1, 'https://ror.org/044s94625 The Association of Child and Adolescent Mental Health'),
(88395, 'https://ror.org/044tecp05', 'ro', 1, 'https://ror.org/044tecp05 Institute of Atomic Physics Institutul de Fizică Atomică'),
(88396, 'https://ror.org/044xj5x73', 'en', 1, 'https://ror.org/044xj5x73 The Ogden Trust'),
(88397, 'https://ror.org/044xqzp86', 'no_lang_code', 0, 'https://ror.org/044xqzp86 FLEx (United States)'),
(88398, 'https://ror.org/0450ebe61', 'en', 1, 'https://ror.org/0450ebe61 Cures Within Reach'),
(88399, 'https://ror.org/04514dx43', 'en', 1, 'https://ror.org/04514dx43 The New Press'),
(88400, 'https://ror.org/0451qtk15', 'en', 1, 'https://ror.org/0451qtk15 Royal College of Physicians of Edinburgh'),
(88401, 'https://ror.org/0451xdy64', 'en', 1, 'https://ror.org/0451xdy64 Graduate University of Advanced Technology دانؓگاه ŲŖŲ­ŲµŪŒŁ„Ų§ŲŖ ŲŖŚ©Ł…ŪŒŁ„ŪŒ ŲµŁ†Ų¹ŲŖŪŒ و ŁŁ†Ų§ŁˆŲ±ŪŒ Ł¾ŪŒŲ“Ų±ŁŲŖŁ‡'),
(88402, 'https://ror.org/0452h9305', 'en', 1, 'https://ror.org/0452h9305 Ministrstvo za Visoko Solstvo, Znanost in Tehnologijo Ministry of Higher Education Science, and Technology'),
(88403, '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'),
(88404, 'https://ror.org/0452wjp18', 'en', 1, 'https://ror.org/0452wjp18 Academy of Spinal Cord Injury Professionals'),
(88405, 'https://ror.org/04533wk67', 'en', 1, 'https://ror.org/04533wk67 Kearney Agricultural Research and Extension Center'),
(88406, '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'),
(88407, 'https://ror.org/04550kp61', 'nl', 1, 'https://ror.org/04550kp61 Stichting ParkinsonFonds'),
(88408, 'https://ror.org/0455awd29', 'en', 1, 'https://ror.org/0455awd29 Software Sustainability Institute'),
(88409, 'https://ror.org/0455st449', 'no_lang_code', 1, 'https://ror.org/0455st449 Biological Mimetics (United States)'),
(88410, 'https://ror.org/0455x6v88', 'en', 1, 'https://ror.org/0455x6v88 Tribeca Film Institute'),
(88411, 'https://ror.org/0456wj203', 'en', 1, 'https://ror.org/0456wj203 Cured Foundation'),
(88412, 'https://ror.org/04577y567', 'en', 1, 'https://ror.org/04577y567 Vermont Department of Health'),
(88413, 'https://ror.org/0457prt90', 'en', 1, 'https://ror.org/0457prt90 Institut za Migracije i Narodnosti Institute for Migration and Ethnic Studies'),
(88414, 'https://ror.org/0459rb715', 'it', 1, 'https://ror.org/0459rb715 Accademia di Belle Arti di Catanzaro'),
(88415, 'https://ror.org/045ady436', 'no', 1, 'https://ror.org/045ady436 Norwegian Air Ambulance Foundation Stiftelsen Norsk Luftambulanse'),
(88416, 'https://ror.org/045bk1944', 'nl', 0, 'https://ror.org/045bk1944 Amersfoort Total Office B.V.'),
(88417, 'https://ror.org/045d9gj14', 'no_lang_code', 1, 'https://ror.org/045d9gj14 China Coal Technology and Engineering Group Corp (China) äø­å›½ē…¤ē‚­ē§‘å·„é›†å›¢ęœ‰é™å…¬åø'),
(88418, 'https://ror.org/045gqp102', 'da', 0, 'https://ror.org/045gqp102 Fredericia Sygehus'),
(88419, 'https://ror.org/045qvhf73', 'es', 1, 'https://ror.org/045qvhf73 Universidad Privada Juan MejĆ­a Baca'),
(88420, 'https://ror.org/045qzah91', 'en', 1, 'https://ror.org/045qzah91 Fisheries Agency č”Œę”æé™¢č¾²ę„­å§”å“”ęœƒę¼ę„­ē½²'),
(88421, 'https://ror.org/045r9wn29', 'en', 1, 'https://ror.org/045r9wn29 Benedict College'),
(88422, 'https://ror.org/045sjkt56', 'no_lang_code', 0, 'https://ror.org/045sjkt56 Mylan (Switzerland)'),
(88423, 'https://ror.org/045sst074', 'en', 1, 'https://ror.org/045sst074 French Infrastructure for Integrated Structural Biology'),
(88424, 'https://ror.org/045t4nj76', 'no_lang_code', 1, 'https://ror.org/045t4nj76 BioMonde (United Kingdom)'),
(88425, 'https://ror.org/04622jx20', 'en', 1, 'https://ror.org/04622jx20 National PKU Alliance'),
(88426, 'https://ror.org/0464edf64', 'en', 1, 'https://ror.org/0464edf64 Hunan Vocational Institute of Technology ę¹–å—ē†å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(88427, 'https://ror.org/0465sg033', 'no_lang_code', 0, 'https://ror.org/0465sg033 Celgene (Germany)'),
(88428, 'https://ror.org/0468vd838', 'en', 1, 'https://ror.org/0468vd838 Statistical Society of Australia'),
(88429, 'https://ror.org/0469ckb94', 'en', 1, 'https://ror.org/0469ckb94 Danish Astronautical Society Dansk Selskab for Rumfartsforskning'),
(88430, 'https://ror.org/0469x1750', 'no_lang_code', 1, 'https://ror.org/0469x1750 Eisai (United States) ć‚Øćƒ¼ć‚¶ć‚¤ę Ŗå¼ä¼šē¤¾'),
(88431, 'https://ror.org/0469yk703', 'en', 1, 'https://ror.org/0469yk703 Florida Department of State'),
(88432, 'https://ror.org/046bsww91', 'en', 1, 'https://ror.org/046bsww91 Associated Colleges of the Midwest'),
(88433, 'https://ror.org/046c44v34', 'en', 1, 'https://ror.org/046c44v34 Biotechnology Innovation Organization'),
(88434, 'https://ror.org/046c4jc93', 'no_lang_code', 0, 'https://ror.org/046c4jc93 CooperVision (United States)'),
(88435, 'https://ror.org/046c4qa07', 'no_lang_code', 1, 'https://ror.org/046c4qa07 Forestia (Norway)'),
(88436, 'https://ror.org/046cr9566', 'en', 1, 'https://ror.org/046cr9566 Nottingham Biomedical Research Centre'),
(88437, 'https://ror.org/046jgev73', 'en', 1, 'https://ror.org/046jgev73 Bath Royal Literary and Scientific Institution'),
(88438, 'https://ror.org/046jmy298', 'en', 1, 'https://ror.org/046jmy298 Institute of Refrigeration'),
(88439, 'https://ror.org/046k47690', 'de', 1, 'https://ror.org/046k47690 Kantonsschule Rychenberg'),
(88440, 'https://ror.org/046kpcm47', 'en', 1, 'https://ror.org/046kpcm47 The Abbeyfield Research Foundation'),
(88441, 'https://ror.org/046ksv218', 'en', 1, 'https://ror.org/046ksv218 Obour Institutes'),
(88442, 'https://ror.org/046pf6524', 'en', 1, 'https://ror.org/046pf6524 Daimler and Benz Foundation Daimler und Benz Stiftung'),
(88443, 'https://ror.org/046r2bw40', 'en', 0, 'https://ror.org/046r2bw40 Argosy University, Twin Cities'),
(88444, 'https://ror.org/046rtjc87', 'en', 1, 'https://ror.org/046rtjc87 Singapore Bioimaging Consortium'),
(88445, 'https://ror.org/046tej914', 'en', 1, 'https://ror.org/046tej914 Technological University Hmawbi'),
(88446, 'https://ror.org/046vpvn06', 'no_lang_code', 1, 'https://ror.org/046vpvn06 Dignify Therapeutics (United States)'),
(88447, 'https://ror.org/046vqww18', 'en', 1, 'https://ror.org/046vqww18 Dr. Somervell Memorial CSI Medical College and Hospital'),
(88448, 'https://ror.org/046wtt638', 'no_lang_code', 0, 'https://ror.org/046wtt638 Ineos (United Kingdom)'),
(88449, 'https://ror.org/046yatd98', 'en', 1, 'https://ror.org/046yatd98 Midwestern University'),
(88450, 'https://ror.org/046z4vn34', 'no_lang_code', 1, 'https://ror.org/046z4vn34 Fios Genomics (United Kingdom)'),
(88451, 'https://ror.org/0471ejv47', 'en', 1, 'https://ror.org/0471ejv47 Diakonhjemmet Foundation'),
(88452, 'https://ror.org/0472ppj97', 'en', 1, 'https://ror.org/0472ppj97 Austrian Development Agency'),
(88453, 'https://ror.org/0475d2878', 'no_lang_code', 0, 'https://ror.org/0475d2878 Blue Belt Technologies (United States)'),
(88454, 'https://ror.org/0476thd63', 'en', 0, 'https://ror.org/0476thd63 Chamberlain College of Nursing'),
(88455, 'https://ror.org/047988g19', 'en', 1, 'https://ror.org/047988g19 West Ukrainian National University Š—Š°Ń…Ń–Š“Š½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88456, '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 Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пеГагогічної освіти і освіти Горослих імені Івана Š—ŃŠ·ŃŽŠ½Š° ŠŠŠŸŠ України'),
(88457, 'https://ror.org/047aswc67', 'en', 1, 'https://ror.org/047aswc67 National Center for Genetic Engineering and Biotechnology'),
(88458, 'https://ror.org/047bc5j52', 'en', 1, 'https://ror.org/047bc5j52 Union Institute & University'),
(88459, 'https://ror.org/047bekw03', 'en', 1, 'https://ror.org/047bekw03 The Fertilizer Institute'),
(88460, 'https://ror.org/047ck1j35', 'en', 1, 'https://ror.org/047ck1j35 Moredun Research Institute'),
(88461, 'https://ror.org/047d8yx24', 'en', 1, 'https://ror.org/047d8yx24 Chongqing Cancer Hospital é‡åŗ†åø‚č‚æē˜¤ē ”ē©¶ę‰€'),
(88462, 'https://ror.org/047fx6t13', 'en', 1, 'https://ror.org/047fx6t13 Smell & Taste Treatment and Research Foundation'),
(88463, 'https://ror.org/047fzcc28', 'en', 1, 'https://ror.org/047fzcc28 Evelyn Trust'),
(88464, 'https://ror.org/047g10r44', 'en', 1, 'https://ror.org/047g10r44 Life & Peace Institute'),
(88465, 'https://ror.org/047hfdv65', 'en', 1, 'https://ror.org/047hfdv65 Planetary Society'),
(88466, 'https://ror.org/047hkmt09', 'en', 1, 'https://ror.org/047hkmt09 Manufacturing Academy of Denmark'),
(88467, 'https://ror.org/047hznt06', 'en', 1, 'https://ror.org/047hznt06 National Marine Environmental Forecasting Center ēš„å›½å®¶ęµ·ę“‹ēŽÆå¢ƒé¢„ęŠ„äø­åæƒ'),
(88468, 'https://ror.org/047ktk903', 'en', 1, 'https://ror.org/047ktk903 World Resources Institute'),
(88469, 'https://ror.org/047mnkd79', 'en', 0, 'https://ror.org/047mnkd79 Guangzhou Hospital of Traditional Chinese Medicine'),
(88470, 'https://ror.org/047qgg117', 'en', 1, 'https://ror.org/047qgg117 Guangzhou Institute of Energy Conversion å¹æå·žčƒ½ęŗē ”ē©¶ę‰€'),
(88471, 'https://ror.org/047qha240', 'en', 0, 'https://ror.org/047qha240 KFAI'),
(88472, 'https://ror.org/047van922', 'en', 1, 'https://ror.org/047van922 Nha Trang University TrĘ°į»ng ĐẔi hį»c Nha Trang'),
(88473, 'https://ror.org/047w7d678', 'en', 1, 'https://ror.org/047w7d678 University of Hong Kong - Shenzhen Hospital é¦™ęøÆå¤§å­¦ę·±åœ³åŒ»é™¢'),
(88474, 'https://ror.org/047y9qy91', 'en', 1, 'https://ror.org/047y9qy91 MNR Dental College and Hospital'),
(88475, 'https://ror.org/047z5as19', 'fr', 1, 'https://ror.org/047z5as19 Laboratoire de Recherche en Sciences VƩgƩtales'),
(88476, 'https://ror.org/0482xmh13', 'en', 1, 'https://ror.org/0482xmh13 PATH To Reading'),
(88477, 'https://ror.org/048389405', 'no_lang_code', 1, 'https://ror.org/048389405 G1 Therapeutics (United States)'),
(88478, 'https://ror.org/0486bt777', 'en', 1, 'https://ror.org/0486bt777 Spirit Mountain Community Fund'),
(88479, 'https://ror.org/048768v87', 'en', 1, 'https://ror.org/048768v87 USF Health Byrd Alzheimer''s Institute'),
(88480, 'https://ror.org/0488bnd65', 'en', 1, 'https://ror.org/0488bnd65 Oregon Health and Science University Hospital'),
(88481, 'https://ror.org/0488pxx86', 'en', 1, 'https://ror.org/0488pxx86 Universidad de Granma University of Granma'),
(88482, 'https://ror.org/0488wxv90', 'en', 1, 'https://ror.org/0488wxv90 Canadian Partnership Against Cancer'),
(88483, 'https://ror.org/0489bj931', 'no', 1, 'https://ror.org/0489bj931 Lyngdal kommune'),
(88484, 'https://ror.org/0489p2588', 'en', 1, 'https://ror.org/0489p2588 African Federation for Emergency Medicine'),
(88485, 'https://ror.org/0489rf374', 'en', 1, 'https://ror.org/0489rf374 Psoriasis Association'),
(88486, 'https://ror.org/048a3wm97', 'en', 1, 'https://ror.org/048a3wm97 Australian Communications and Media Authority'),
(88487, 'https://ror.org/048byek34', 'en', 1, 'https://ror.org/048byek34 National Institute of Food Technology Entrepreneurship and Management ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤–ą¤¾ą¤¦ą„ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤‰ą¤§ą¤®ą¤¶ą„€ą¤²ą¤¤ą¤¾ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(88488, 'https://ror.org/048dn1a62', 'en', 1, 'https://ror.org/048dn1a62 University of Computer Engineering and Telecommunications'),
(88489, 'https://ror.org/048e31249', 'nl', 1, 'https://ror.org/048e31249 Fonds Psychische Gezondheid'),
(88490, 'https://ror.org/048e7gn38', 'en', 1, 'https://ror.org/048e7gn38 Paulo Foundation Paulon SƤƤtiƶ'),
(88491, 'https://ror.org/048e91n87', 'en', 1, 'https://ror.org/048e91n87 Chulabhorn Graduate Institute ąøŖąø–ąø²ąøšąø±ąø™ąøšąø±ąø“ąø‘ąø“ąø•ąøØąø¶ąøąø©ąø²ąøˆąøøąø¬ąø²ąø ąø£ąø“ą¹Œ'),
(88492, 'https://ror.org/048emj907', 'en', 1, 'https://ror.org/048emj907 Queen Elizabeth Hospital Birmingham'),
(88493, 'https://ror.org/048f7th17', 'no_lang_code', 1, 'https://ror.org/048f7th17 Cristalia (Brazil)'),
(88494, 'https://ror.org/048gb8814', 'en', 1, 'https://ror.org/048gb8814 Fachhochschule für Rechtspflege Schwetzingen Schwetzingen Technical Institute & Graduate Court Registrars'' College'),
(88495, 'https://ror.org/048gbw446', 'en', 1, 'https://ror.org/048gbw446 Milton and Tamar Maltz Family Foundation'),
(88496, 'https://ror.org/048hrc512', 'no_lang_code', 1, 'https://ror.org/048hrc512 Scottish Power (United Kingdom)'),
(88497, 'https://ror.org/048ja2n45', 'fr', 0, 'https://ror.org/048ja2n45 Haute Ɖcole de SantĆ© Vaud'),
(88498, 'https://ror.org/048macv48', 'en', 1, 'https://ror.org/048macv48 Pharmac'),
(88499, 'https://ror.org/048mc3281', 'no_lang_code', 1, 'https://ror.org/048mc3281 Bhaikaka University'),
(88500, 'https://ror.org/048nwav94', 'en', 1, 'https://ror.org/048nwav94 Covenant Hospice'),
(88501, 'https://ror.org/048nxq511', 'en', 1, 'https://ror.org/048nxq511 Tokyo University of Marine Science and Technology ę±äŗ¬ęµ·ę“‹å¤§å­¦'),
(88502, 'https://ror.org/048p4fn82', 'sv', 1, 'https://ror.org/048p4fn82 Carl Tryggers stiftelse fƶr vetenskaplig forskning'),
(88503, 'https://ror.org/048qnr849', 'en', 1, 'https://ror.org/048qnr849 Aswan University Ų¬Ų§Ł…Ų¹Ų© Ų£Ų³ŁˆŲ§Ł†'),
(88504, 'https://ror.org/048rgv164', 'en', 1, 'https://ror.org/048rgv164 Robert and Joan Dircks Foundation'),
(88505, 'https://ror.org/048rmbb49', 'en', 1, 'https://ror.org/048rmbb49 EEG & Clinical Neuroscience Society'),
(88506, 'https://ror.org/048sabw23', 'en', 1, 'https://ror.org/048sabw23 Nuclear Threat Initiative'),
(88507, 'https://ror.org/048zf6f56', 'no_lang_code', 1, 'https://ror.org/048zf6f56 British Association of Plastic, Reconstructive and Aesthetic Surgeons'),
(88508, 'https://ror.org/04901nj56', 'en', 1, 'https://ror.org/04901nj56 Pacific Salmon Foundation'),
(88509, 'https://ror.org/0491y3t26', 'en', 1, 'https://ror.org/0491y3t26 National Remote Sensing Centre ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„ą¤¦ą„‚ą¤° ą¤øą¤‚ą¤µą„‡ą¤¦ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤° ą°Øą±‡ą°·ą°Øą°²ą± ą°°ą°æą°®ą±‹ą°Ÿą± ą°øą±†ą°Øą±ą°øą°æą°‚ą°—ą± ą°øą±†ą°‚ą°Ÿą°°ą±'),
(88510, 'https://ror.org/0493xsw21', 'en', 1, 'https://ror.org/0493xsw21 Berlin Institute of Health at Charité - Universitätsmedizin Berlin Berliner Institut für Gesundheitsforschung'),
(88511, 'https://ror.org/04946nn35', 'nl', 1, 'https://ror.org/04946nn35 Koninklijk Nederlands Genootschap voor Fysiotherapie'),
(88512, 'https://ror.org/0494tsn97', 'no_lang_code', 1, 'https://ror.org/0494tsn97 Amneal (United States)'),
(88513, 'https://ror.org/04989d402', 'en', 1, 'https://ror.org/04989d402 Bone Health and Osteoporosis Foundation'),
(88514, 'https://ror.org/049922318', 'no_lang_code', 0, 'https://ror.org/049922318 SuperGen (United States)'),
(88515, 'https://ror.org/0499mmb06', 'en', 0, 'https://ror.org/0499mmb06 Monroe Center'),
(88516, 'https://ror.org/049b4n024', 'en', 1, 'https://ror.org/049b4n024 The Little Foundation'),
(88517, 'https://ror.org/049bff176', 'de', 1, 'https://ror.org/049bff176 Höhere Bundeslehranstalt und Bundesamt für Wein- und Obstbau'),
(88518, 'https://ror.org/049cxhs23', 'en', 0, 'https://ror.org/049cxhs23 University of Wisconsin-Green Bay, Manitowoc UniversitƩ du wisconsin Ơ manitowoc'),
(88519, 'https://ror.org/049ezvq17', 'en', 1, 'https://ror.org/049ezvq17 NEWTON University VysokÔ Ŕkola NEWTON'),
(88520, 'https://ror.org/049faca05', 'no_lang_code', 0, 'https://ror.org/049faca05 Garrad Hassan and Partners'),
(88521, 'https://ror.org/049gn7z52', 'en', 1, 'https://ror.org/049gn7z52 Beijing Institute of Genomics åŒ—äŗ¬åŸŗå› ē»„ē ”ē©¶ę‰€'),
(88522, 'https://ror.org/049h99302', 'en', 0, 'https://ror.org/049h99302 Wassit University'),
(88523, 'https://ror.org/049j1tf72', 'en', 1, 'https://ror.org/049j1tf72 Badan Tenaga Nuklir Nasional National Nuclear Energy Agency of Indonesia'),
(88524, 'https://ror.org/049jv1y58', 'en', 1, 'https://ror.org/049jv1y58 Alice Kleberg Reynolds Foundation'),
(88525, 'https://ror.org/049ph2k85', 'en', 0, 'https://ror.org/049ph2k85 University of Creation Art, Music & Social Work 創造学園大学'),
(88526, 'https://ror.org/049s31d10', 'en', 1, 'https://ror.org/049s31d10 National CMV Foundation'),
(88527, 'https://ror.org/049te4f25', 'en', 1, 'https://ror.org/049te4f25 Arkansas Department of Education'),
(88528, 'https://ror.org/049w63018', 'no_lang_code', 0, 'https://ror.org/049w63018 Northern Telecom (Ireland)'),
(88529, 'https://ror.org/049y19z73', 'en', 0, 'https://ror.org/049y19z73 Japanese Red Cross Musashino Junior College Of Nursing ę—„ęœ¬čµ¤åå­—ę­¦č”µé‡ŽēŸ­ęœŸå¤§å­¦'),
(88530, 'https://ror.org/049z3cb60', 'en', 1, 'https://ror.org/049z3cb60 First Affiliated Hospital of University of South China'),
(88531, 'https://ror.org/04a09tp93', 'no_lang_code', 1, 'https://ror.org/04a09tp93 Chromasun (United States)'),
(88532, 'https://ror.org/04a0wfy84', 'no_lang_code', 1, 'https://ror.org/04a0wfy84 Spheryx (United States)'),
(88533, 'https://ror.org/04a1nf004', 'en', 1, 'https://ror.org/04a1nf004 Gonbad Kavous University'),
(88534, 'https://ror.org/04a31e344', 'en', 1, 'https://ror.org/04a31e344 Helmholtz International Center for FAIR'),
(88535, 'https://ror.org/04a3gpp87', 'en', 1, 'https://ror.org/04a3gpp87 Doerenkamp-Zbinden Foundation'),
(88536, 'https://ror.org/04a41pr43', 'en', 1, 'https://ror.org/04a41pr43 National School of Mineral Industry Ɖcole nationale de l''industrie minĆ©rale المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للصناعات Ų§Ł„Ł…Ų¹ŲÆŁ†ŁŠŲ© (المغرب)'),
(88537, 'https://ror.org/04a46mh28', 'en', 1, 'https://ror.org/04a46mh28 Shanghai First People''s Hospital'),
(88538, 'https://ror.org/04a4xxs70', 'sv', 1, 'https://ror.org/04a4xxs70 BesƶksnƤringens Forsknings- Och Utvecklingsfond'),
(88539, 'https://ror.org/04a5qyn42', 'en', 1, 'https://ror.org/04a5qyn42 State Historical Society of Missouri'),
(88540, 'https://ror.org/04a7f6w43', 'en', 0, 'https://ror.org/04a7f6w43 Max Planck Institute of Experimental Medicine Max-Planck-Institut für Experimentelle Medizin'),
(88541, 'https://ror.org/04a7ns920', 'en', 1, 'https://ror.org/04a7ns920 Don Mariano Marcos Memorial State University'),
(88542, 'https://ror.org/04a8rt780', 'no_lang_code', 1, 'https://ror.org/04a8rt780 UnitedHealth Group (United States)'),
(88543, 'https://ror.org/04a8vas09', 'en', 1, 'https://ror.org/04a8vas09 Southwest Scoliosis Institute'),
(88544, 'https://ror.org/04a97mm30', 'no_lang_code', 1, 'https://ror.org/04a97mm30 Kafrelsheikh University Ų¬Ų§Ł…Ų¹Ų© كفر Ų§Ł„Ų“ŁŠŲ®'),
(88545, 'https://ror.org/04aat6738', 'no_lang_code', 1, 'https://ror.org/04aat6738 Japan IDDM network ę—„ęœ¬IDDMćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(88546, 'https://ror.org/04abhhf82', 'it', 0, 'https://ror.org/04abhhf82 Centro Interuniversitario ABITA'),
(88547, 'https://ror.org/04af7ga89', 'no_lang_code', 1, 'https://ror.org/04af7ga89 Nanyang Polytechnic'),
(88548, 'https://ror.org/04ajp4v86', 'no_lang_code', 0, 'https://ror.org/04ajp4v86 Universitas Istropolitana'),
(88549, 'https://ror.org/04akw0j64', 'en', 1, 'https://ror.org/04akw0j64 Institute of General and Physical Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¾ŠæŃˆŃ‚Ńƒ Šø Ń„ŠøŠ·ŠøŃ‡ŠŗŃƒ Ń…ŠµŠ¼ŠøŃ˜Ńƒ'),
(88550, 'https://ror.org/04amrty77', 'no_lang_code', 1, 'https://ror.org/04amrty77 F-star (United Kingdom)'),
(88551, 'https://ror.org/04asna713', 'en', 1, 'https://ror.org/04asna713 European Meteorological Society'),
(88552, 'https://ror.org/04atb5t73', 'en', 0, 'https://ror.org/04atb5t73 Danish Data Archives'),
(88553, 'https://ror.org/04ayvvz32', 'no_lang_code', 1, 'https://ror.org/04ayvvz32 Jiangsu Hengrui Medicine (China) ę±Ÿč‹ę’ē‘žåŒ»čÆ'),
(88554, 'https://ror.org/04b4eps50', 'en', 1, 'https://ror.org/04b4eps50 Silicon Valley Education Foundation'),
(88555, 'https://ror.org/04b7h4365', 'en', 1, 'https://ror.org/04b7h4365 Society for Cardiovascular Magnetic Resonance'),
(88556, 'https://ror.org/04b7wbe03', 'en', 1, 'https://ror.org/04b7wbe03 Dalian National Laboratory for Clean Energy'),
(88557, 'https://ror.org/04b9hej41', 'en', 1, 'https://ror.org/04b9hej41 Sadjad University of Technology دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų³Ų¬Ų§ŲÆ'),
(88558, 'https://ror.org/04babsy72', 'en', 1, 'https://ror.org/04babsy72 Indigenous Services Canada Services aux Autochtones Canada'),
(88559, 'https://ror.org/04bagk413', 'en', 1, 'https://ror.org/04bagk413 Connecticut Breast Health Initiative'),
(88560, 'https://ror.org/04bamh830', 'en', 0, 'https://ror.org/04bamh830 Levine Children''s Hospita'),
(88561, 'https://ror.org/04bc1ke96', 'en', 1, 'https://ror.org/04bc1ke96 Roberts Enterprise Development Fund'),
(88562, 'https://ror.org/04bewwb19', 'en', 0, 'https://ror.org/04bewwb19 Bassett Medical Center'),
(88563, 'https://ror.org/04bfs6764', 'en', 1, 'https://ror.org/04bfs6764 Central Scientific Instruments Organisation ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• उपकरण संगठन'),
(88564, 'https://ror.org/04bgbsx11', 'en', 1, 'https://ror.org/04bgbsx11 Jinan University جـامعة الجنان'),
(88565, 'https://ror.org/04bgq3072', 'en', 0, 'https://ror.org/04bgq3072 Kostroma State Technological University Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ¾Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88566, 'https://ror.org/04bksfs41', 'no_lang_code', 1, 'https://ror.org/04bksfs41 HAL Allergy (Netherlands)'),
(88567, 'https://ror.org/04bmhc978', 'no_lang_code', 1, 'https://ror.org/04bmhc978 Inrad Optics (United States)'),
(88568, 'https://ror.org/04bn04092', 'en', 1, 'https://ror.org/04bn04092 SuperSTEM'),
(88569, 'https://ror.org/04bpd2v91', 'en', 1, 'https://ror.org/04bpd2v91 International Society for Stem Cell Research'),
(88570, 'https://ror.org/04bpn0t57', 'no_lang_code', 0, 'https://ror.org/04bpn0t57 WorldFish'),
(88571, 'https://ror.org/04bqrfs31', 'en', 1, 'https://ror.org/04bqrfs31 Augustana College'),
(88572, 'https://ror.org/04br0rs05', 'en', 1, 'https://ror.org/04br0rs05 Health Sciences North'),
(88573, 'https://ror.org/04brc8545', 'no_lang_code', 1, 'https://ror.org/04brc8545 Innovia Films (United Kingdom)'),
(88574, 'https://ror.org/04bswr545', 'en', 1, 'https://ror.org/04bswr545 Hospital of Stomatology, Sun Yat-sen University äø­å±±å¤§å­¦é™„å±žå£č…”åŒ»é™¢'),
(88575, 'https://ror.org/04bvfww60', 'no', 1, 'https://ror.org/04bvfww60 Norsk Revmatikerforbund'),
(88576, 'https://ror.org/04bwajd86', 'en', 1, 'https://ror.org/04bwajd86 Huizhou Central People''s Hospital ęƒ å·žåø‚äø­åæƒäŗŗę°‘åŒ»é™¢'),
(88577, 'https://ror.org/04bwcxw19', 'en', 1, 'https://ror.org/04bwcxw19 Connecticut Bar Foundation'),
(88578, 'https://ror.org/04bxrzx68', 'en', 1, 'https://ror.org/04bxrzx68 Tokyo Biochemical Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ę±äŗ¬ē”ŸåŒ–å­¦ē ”ē©¶ä¼š'),
(88579, 'https://ror.org/04bygdz36', 'no_lang_code', 0, 'https://ror.org/04bygdz36 Bayer CropScience (Netherlands)'),
(88580, 'https://ror.org/04byzmq62', 'en', 0, 'https://ror.org/04byzmq62 United Nations Population Fund'),
(88581, 'https://ror.org/04c14rw28', 'en', 1, 'https://ror.org/04c14rw28 Leibniz Institute for Educational Trajectories Leibniz-Institut für Bildungsverläufe e.V.'),
(88582, 'https://ror.org/04c1h6p56', 'no_lang_code', 0, 'https://ror.org/04c1h6p56 Amphenol (United Kingdom)'),
(88583, 'https://ror.org/04c4e2y94', 'en', 1, 'https://ror.org/04c4e2y94 Swedish Water & Wastewater Association'),
(88584, 'https://ror.org/04c525d12', 'en', 1, 'https://ror.org/04c525d12 Citrus Research International'),
(88585, 'https://ror.org/04c6p2s85', 'en', 1, 'https://ror.org/04c6p2s85 People''s Government of Yunnan Province äŗ‘å—ēœäŗŗę°‘ę”æåŗœ'),
(88586, 'https://ror.org/04c8bjx39', 'en', 1, 'https://ror.org/04c8bjx39 Oxford Health NHS Foundation Trust'),
(88587, 'https://ror.org/04c8e2d70', 'en', 1, 'https://ror.org/04c8e2d70 Haematology Society of Australia and New Zealand'),
(88588, 'https://ror.org/04cb3ds49', 'en', 1, 'https://ror.org/04cb3ds49 Chartered Institute of Ecology and Environmental Management'),
(88589, 'https://ror.org/04cbe1f31', 'en', 1, 'https://ror.org/04cbe1f31 Chersoński Uniwersytet Państwowy Kherson State University Єерсонский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠøŠ¹ Гержавний унiверситет'),
(88590, 'https://ror.org/04cbweh98', 'en', 1, 'https://ror.org/04cbweh98 Central Institute of Fisheries Technology'),
(88591, 'https://ror.org/04cc2md17', 'no_lang_code', 1, 'https://ror.org/04cc2md17 Nihon Medi-Physics (Japan) ę—„ęœ¬ćƒ”ć‚øćƒ•ć‚£ć‚øćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(88592, 'https://ror.org/04ccf7p05', 'en', 0, 'https://ror.org/04ccf7p05 National University of Civil Protection of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń†ŠøŠ²Ń–Š»ŃŒŠ½Š¾Š³Š¾ Š·Š°Ń…ŠøŃŃ‚Ńƒ України'),
(88593, 'https://ror.org/04cdsn556', 'en', 1, 'https://ror.org/04cdsn556 Nakhon Si Thammarat Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąøØąø£ąøµąø˜ąø£ąø£ąø”ąø£ąø²ąøŠ'),
(88594, 'https://ror.org/04ch2g225', 'en', 1, 'https://ror.org/04ch2g225 Dutch Diabetes Research Foundation'),
(88595, 'https://ror.org/04cjrna85', 'no_lang_code', 1, 'https://ror.org/04cjrna85 EA Pharma (Japan)'),
(88596, 'https://ror.org/04ckfrk21', 'no_lang_code', 1, 'https://ror.org/04ckfrk21 Mistras Group (United States)'),
(88597, 'https://ror.org/04ckn3152', 'en', 1, 'https://ror.org/04ckn3152 Independent Age'),
(88598, 'https://ror.org/04cm8m874', 'en', 1, 'https://ror.org/04cm8m874 Marianne and Marcus Wallenberg Foundation'),
(88599, 'https://ror.org/04cmvh994', 'en', 1, 'https://ror.org/04cmvh994 Oregon Watershed Enhancement Board'),
(88600, 'https://ror.org/04cnw7m40', 'en', 1, 'https://ror.org/04cnw7m40 Lung Cancer Online Foundation'),
(88601, 'https://ror.org/04cqj5759', 'en', 0, 'https://ror.org/04cqj5759 Rutgers University–Camden'),
(88602, 'https://ror.org/04csczr47', 'en', 1, 'https://ror.org/04csczr47 Sarnoff Cardiovascular Research Foundation'),
(88603, 'https://ror.org/04cwzbt15', 'en', 0, 'https://ror.org/04cwzbt15 St Louis Community College'),
(88604, 'https://ror.org/04cx06q51', 'en', 1, 'https://ror.org/04cx06q51 National Association of Chronic Disease Directors'),
(88605, 'https://ror.org/04cxcey34', 'no_lang_code', 0, 'https://ror.org/04cxcey34 FEI (Norway)'),
(88606, 'https://ror.org/04cybtr86', 'en', 1, 'https://ror.org/04cybtr86 Iwate Medical University å²©ę‰‹åŒ»ē§‘å¤§å­¦'),
(88607, 'https://ror.org/04cyhfr73', 'no_lang_code', 1, 'https://ror.org/04cyhfr73 Australian Centre for Advanced Computing and Communications (Australia)'),
(88608, 'https://ror.org/04cz2sw33', 'en', 1, 'https://ror.org/04cz2sw33 Geocenter Denmark'),
(88609, 'https://ror.org/04cz7vv04', 'en', 1, 'https://ror.org/04cz7vv04 Mend a Heart Foundation'),
(88610, 'https://ror.org/04d0vc473', 'en', 1, 'https://ror.org/04d0vc473 State Administration of Cultural Heritage 国家文物局'),
(88611, 'https://ror.org/04d16a047', 'en', 1, 'https://ror.org/04d16a047 Foundation for Anesthesia Education and Research'),
(88612, 'https://ror.org/04d170j15', 'no_lang_code', 1, 'https://ror.org/04d170j15 Cook Group (United States)'),
(88613, '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'),
(88614, 'https://ror.org/04d6b6d46', 'en', 1, 'https://ror.org/04d6b6d46 Cooper Institute'),
(88615, 'https://ror.org/04d8yvw59', 'en', 1, 'https://ror.org/04d8yvw59 Royal College of Physicians and Surgeons of Glasgow'),
(88616, 'https://ror.org/04d8ztx87', 'en', 1, 'https://ror.org/04d8ztx87 Agroscope'),
(88617, 'https://ror.org/04dam5e61', 'en', 1, 'https://ror.org/04dam5e61 Power Systems Engineering Research Center'),
(88618, 'https://ror.org/04dbakj88', 'en', 0, 'https://ror.org/04dbakj88 University of Colorado Museum of Natural History'),
(88619, 'https://ror.org/04dckkc60', 'no_lang_code', 1, 'https://ror.org/04dckkc60 Crystal Technology and Industries (United States)'),
(88620, 'https://ror.org/04dcvdp86', 'no_lang_code', 0, 'https://ror.org/04dcvdp86 Cray (United States)'),
(88621, 'https://ror.org/04dg5b632', 'en', 1, 'https://ror.org/04dg5b632 Zhejiang University of Water Resource and Electric Power ęµ™ę±Ÿę°“åˆ©ę°“ē”µå­¦é™¢'),
(88622, 'https://ror.org/04dhf0316', 'nl', 1, 'https://ror.org/04dhf0316 G.Ph. Verhagen-Stichting'),
(88623, 'https://ror.org/04dhvqz48', 'en', 1, 'https://ror.org/04dhvqz48 Independent Colleges and Universities of Florida'),
(88624, 'https://ror.org/04dmgsx60', 'en', 1, 'https://ror.org/04dmgsx60 Center for Neuroscience and Regenerative Medicine'),
(88625, 'https://ror.org/04dmy8675', 'de', 1, 'https://ror.org/04dmy8675 Deutsche Gesellschaft für Kieferorthopädie e.V'),
(88626, 'https://ror.org/04dn5pv56', 'en', 1, 'https://ror.org/04dn5pv56 New Venture Fund'),
(88627, 'https://ror.org/04dq07652', 'en', 1, 'https://ror.org/04dq07652 All-Russian Scientific Research Institute of Medicinal and Aromatic Plants Всероссийский ŠŠ˜Š˜ лекарственных Šø ароматических растений'),
(88628, 'https://ror.org/04dstfg97', 'en', 0, 'https://ror.org/04dstfg97 Sholokhov Moscow State University for Humanities Московский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. А. Шолохова'),
(88629, 'https://ror.org/04dt6bw53', 'en', 1, 'https://ror.org/04dt6bw53 Tokyo City University ę±äŗ¬éƒ½åø‚å¤§å­¦'),
(88630, 'https://ror.org/04dv5rj21', 'no_lang_code', 1, 'https://ror.org/04dv5rj21 GeneFluidics (United States)'),
(88631, 'https://ror.org/04dvxx266', 'en', 1, 'https://ror.org/04dvxx266 Amadeu Antonio Foundation'),
(88632, 'https://ror.org/04dxbz091', 'no_lang_code', 1, 'https://ror.org/04dxbz091 Constellation Pharmaceuticals (United States)'),
(88633, 'https://ror.org/04dxwt824', 'sv', 1, 'https://ror.org/04dxwt824 Studiefƶrbundet NƤringsliv och SamhƤlle'),
(88634, 'https://ror.org/04dxzc906', 'no_lang_code', 0, 'https://ror.org/04dxzc906 CSR (United Kingdom)'),
(88635, 'https://ror.org/04dy1nt28', 'en', 0, 'https://ror.org/04dy1nt28 Narabunka Women''s College å„ˆč‰Æę–‡åŒ–å„³å­ēŸ­ęœŸå¤§å­¦'),
(88636, 'https://ror.org/04e0pwy27', 'en', 1, 'https://ror.org/04e0pwy27 National Agricultural Research Foundation'),
(88637, 'https://ror.org/04e19s431', 'en', 1, 'https://ror.org/04e19s431 American Hearing Research Foundation'),
(88638, 'https://ror.org/04e3ssz85', 'en', 1, 'https://ror.org/04e3ssz85 International Visegrad Fund'),
(88639, 'https://ror.org/04e4y4a50', 'no_lang_code', 0, 'https://ror.org/04e4y4a50 Celsis (United States)'),
(88640, 'https://ror.org/04e65y578', 'nl', 1, 'https://ror.org/04e65y578 Janivo Stichting'),
(88641, 'https://ror.org/04e6h1p91', 'en', 1, 'https://ror.org/04e6h1p91 State Key Laboratory of Vehicle NVH and Safety Technology'),
(88642, 'https://ror.org/04eb7gy32', 'en', 1, 'https://ror.org/04eb7gy32 Lewis and Clark Community College'),
(88643, 'https://ror.org/04eb9e087', 'en', 1, 'https://ror.org/04eb9e087 Finnish Foundation for Alcohol Studies'),
(88644, 'https://ror.org/04ec98z42', 'en', 0, 'https://ror.org/04ec98z42 Princess Margaret Hospital for Children'),
(88645, 'https://ror.org/04ee4nv15', 'en', 1, 'https://ror.org/04ee4nv15 Helicopter Association International'),
(88646, 'https://ror.org/04efeqx94', 'ro', 0, 'https://ror.org/04efeqx94 Universitatea Petrol Si Gaze Ploiesti'),
(88647, 'https://ror.org/04ejav607', 'en', 1, 'https://ror.org/04ejav607 Luke Neuhedel Foundation'),
(88648, 'https://ror.org/04em8c151', 'en', 1, 'https://ror.org/04em8c151 Irrua Specialist Teaching Hospital'),
(88649, 'https://ror.org/04en8na87', 'es', 1, 'https://ror.org/04en8na87 Centro Universitario JosƩ Vasconcelos'),
(88650, 'https://ror.org/04erk7g84', 'en', 1, 'https://ror.org/04erk7g84 Kirtland Air Force Base'),
(88651, 'https://ror.org/04et4d930', 'pl', 1, 'https://ror.org/04et4d930 Lasy Państwowe'),
(88652, 'https://ror.org/04ev7sy32', 'nl', 1, 'https://ror.org/04ev7sy32 Fonds NutsOhra, Stichting Fonds NutsOhra'),
(88653, 'https://ror.org/04evq0v43', 'no_lang_code', 1, 'https://ror.org/04evq0v43 Aegerion Pharmaceuticals (United States)'),
(88654, 'https://ror.org/04ex4n033', 'en', 0, 'https://ror.org/04ex4n033 Gaston College'),
(88655, 'https://ror.org/04exjw682', 'no_lang_code', 1, 'https://ror.org/04exjw682 ArboraNano'),
(88656, 'https://ror.org/04ez5d068', 'no_lang_code', 0, 'https://ror.org/04ez5d068 Teledyne Technologies (United Kingdom)'),
(88657, 'https://ror.org/04ezjnq35', 'en', 1, 'https://ror.org/04ezjnq35 Jaeb Center for Health Research'),
(88658, 'https://ror.org/04f3cbh67', 'en', 1, 'https://ror.org/04f3cbh67 International OCD Foundation'),
(88659, 'https://ror.org/04f4wg107', 'en', 1, 'https://ror.org/04f4wg107 Saga University 佐賀大学'),
(88660, 'https://ror.org/04f6sph74', 'en', 1, 'https://ror.org/04f6sph74 Alberta Milk'),
(88661, 'https://ror.org/04f7aqa58', 'de', 1, 'https://ror.org/04f7aqa58 Bundessortenamt Federal Plant Variety Office'),
(88662, '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'),
(88663, 'https://ror.org/04f8k9513', 'en', 1, 'https://ror.org/04f8k9513 National Heart Centre Singapore'),
(88664, 'https://ror.org/04fbh1w34', 'en', 1, 'https://ror.org/04fbh1w34 Gombe State University'),
(88665, 'https://ror.org/04fcpzp05', 'en', 1, 'https://ror.org/04fcpzp05 Pok Oi Hospital åšę„›é†«é™¢'),
(88666, 'https://ror.org/04fegvg32', 'en', 1, 'https://ror.org/04fegvg32 Rosalind Franklin University of Medicine and Science'),
(88667, 'https://ror.org/04ffxt064', 'en', 0, 'https://ror.org/04ffxt064 Russian State University of Trade and Economics'),
(88668, 'https://ror.org/04fgrzc24', 'en', 1, 'https://ror.org/04fgrzc24 Council for At-Risk Academics'),
(88669, 'https://ror.org/04fhee747', 'en', 1, 'https://ror.org/04fhee747 National Institute of Immunology'),
(88670, 'https://ror.org/04fhxp168', 'en', 1, 'https://ror.org/04fhxp168 VA Healthcare-VISN 4');
INSERT INTO `rors` VALUES
(88671, 'https://ror.org/04fhxwq08', 'it', 1, 'https://ror.org/04fhxwq08 Consorzio per la Ricerca Sanitaria'),
(88672, 'https://ror.org/04fm87419', 'en', 1, 'https://ror.org/04fm87419 Carol Davila University of Medicine and Pharmacy Universitatea de Medicină și Farmacie Carol Davila'),
(88673, 'https://ror.org/04fmf8z66', 'no_lang_code', 0, 'https://ror.org/04fmf8z66 Mylan (Germany)'),
(88674, 'https://ror.org/04fmgc680', 'en', 1, 'https://ror.org/04fmgc680 Al-Qalam University Katsina'),
(88675, 'https://ror.org/04fnb9f41', 'en', 1, 'https://ror.org/04fnb9f41 Sarcoma Alliance for Research through Collaboration'),
(88676, 'https://ror.org/04fp9ma57', 'en', 1, 'https://ror.org/04fp9ma57 Neurosurgery Research & Education Foundation'),
(88677, 'https://ror.org/04fqe9p30', 'en', 1, 'https://ror.org/04fqe9p30 San Diego Zoo Institute for Conservation Research'),
(88678, 'https://ror.org/04frgh028', 'en', 1, 'https://ror.org/04frgh028 North American University'),
(88679, 'https://ror.org/04fsd0842', 'en', 1, 'https://ror.org/04fsd0842 Solent NHS Trust'),
(88680, 'https://ror.org/04fw0fr46', 'en', 1, 'https://ror.org/04fw0fr46 The Kinghorn Cancer Centre'),
(88681, 'https://ror.org/04fxadq33', 'en', 1, 'https://ror.org/04fxadq33 American Australian Association'),
(88682, 'https://ror.org/04fz26w57', 'en', 1, 'https://ror.org/04fz26w57 Arctic Yukon Kuskokwim Sustainable Salmon Initiative'),
(88683, 'https://ror.org/04fz3x390', 'no_lang_code', 0, 'https://ror.org/04fz3x390 Foster Wheeler (United Kingdom)'),
(88684, 'https://ror.org/04fzdb789', 'en', 1, 'https://ror.org/04fzdb789 New Mongol Institute of Technology ŠØŠøŠ½Ń Монгол Технологийн Š“ŃŃŠ“ ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(88685, 'https://ror.org/04g0mqe67', 'en', 1, 'https://ror.org/04g0mqe67 University of Central Punjab جامعہ وسطی پنجاب'),
(88686, 'https://ror.org/04g2thr40', 'en', 1, 'https://ror.org/04g2thr40 Bệnh viện thĆ nh phố Thį»§ Đức Thu Duc City Hospital'),
(88687, 'https://ror.org/04g4f7x62', 'en', 0, 'https://ror.org/04g4f7x62 Wolfsonian Florida International University'),
(88688, 'https://ror.org/04g4rsk10', 'no_lang_code', 1, 'https://ror.org/04g4rsk10 Petromat ąøØąø¹ąø™ąø¢ą¹Œąø„ąø§ąø²ąø”ą¹€ąø›ą¹‡ąø™ą¹€ąø„ąø“ąøØąø”ą¹‰ąø²ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø›ąø“ą¹‚ąø•ąø£ą¹€ąø„ąø”ąøµą¹ąø„ąø°ąø§ąø±ąøŖąø”ąøø'),
(88689, 'https://ror.org/04g7y4303', 'en', 0, 'https://ror.org/04g7y4303 Ernest Gallo Clinic and Research Center'),
(88690, 'https://ror.org/04g8np281', 'fr', 1, 'https://ror.org/04g8np281 La Coop FƩdƩrƩe'),
(88691, 'https://ror.org/04g8ype42', 'en', 1, 'https://ror.org/04g8ype42 Austrian Society of Cardiology Ɩsterreichische Kardiologische Gesellschaft'),
(88692, 'https://ror.org/04gavx394', 'en', 1, 'https://ror.org/04gavx394 Indian Institute of Petroleum'),
(88693, 'https://ror.org/04gcp7g78', 'en', 1, 'https://ror.org/04gcp7g78 All - Russian Scientific Research Institute of Tobacco, Makhorka and Tobacco Products ŠŠŠ£Š§ŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢ŠŠ‘ŠŠšŠ, ŠœŠŠ„ŠžŠ ŠšŠ˜ И Š¢ŠŠ‘ŠŠ§ŠŠ«Š„ Š˜Š—Š”Š•Š›Š˜Š™'),
(88694, 'https://ror.org/04gdy7m85', 'en', 0, 'https://ror.org/04gdy7m85 Duke University Center for International Studies'),
(88695, 'https://ror.org/04geqe079', 'en', 1, 'https://ror.org/04geqe079 Iacocca Family Foundation'),
(88696, 'https://ror.org/04gffpy86', 'nl', 1, 'https://ror.org/04gffpy86 Stichting ALS Nederland'),
(88697, 'https://ror.org/04ghzyn62', 'en', 1, 'https://ror.org/04ghzyn62 Cancer Nurses Society of Australia'),
(88698, 'https://ror.org/04gjfdj81', 'en', 1, 'https://ror.org/04gjfdj81 MacDiarmid Institute for Advanced Materials and Nanotechnology'),
(88699, 'https://ror.org/04gm00j84', 'no_lang_code', 1, 'https://ror.org/04gm00j84 Custom Manufacturing & Engineering (United States)'),
(88700, 'https://ror.org/04gmab760', 'en', 1, 'https://ror.org/04gmab760 Lung Foundation Netherlands'),
(88701, 'https://ror.org/04gn22j10', 'en', 1, 'https://ror.org/04gn22j10 Kaohsiung Municipal Hsiao-Kang Hospital'),
(88702, 'https://ror.org/04gnp7x40', 'en', 1, 'https://ror.org/04gnp7x40 West Texas A&M University'),
(88703, 'https://ror.org/04gnq1e14', 'no_lang_code', 1, 'https://ror.org/04gnq1e14 Hager Sharp (United States)'),
(88704, 'https://ror.org/04gnyy212', 'en', 1, 'https://ror.org/04gnyy212 Tellus Institute'),
(88705, 'https://ror.org/04gps3y86', 'en', 1, 'https://ror.org/04gps3y86 Mid-America Arts Alliance'),
(88706, 'https://ror.org/04gr92547', 'en', 1, 'https://ror.org/04gr92547 International University Of Health And Welfare Atami Hospital å›½éš›åŒ»ē™‚ē¦ē„‰å¤§å­¦ē†±ęµ·ē—…é™¢'),
(88707, 'https://ror.org/04grds989', 'no_lang_code', 1, 'https://ror.org/04grds989 AngioDynamics (United States)'),
(88708, 'https://ror.org/04grmx538', 'en', 1, 'https://ror.org/04grmx538 National Bureau of Economic Research'),
(88709, 'https://ror.org/04gtdp803', 'en', 1, 'https://ror.org/04gtdp803 Central Inland Fisheries Research Institute'),
(88710, 'https://ror.org/04gwz1s33', 'en', 1, 'https://ror.org/04gwz1s33 Danish Diabetes Association Diabetesforeningen'),
(88711, 'https://ror.org/04h1jqe39', 'no_lang_code', 0, 'https://ror.org/04h1jqe39 Alcatel-Lucent (Canada)'),
(88712, 'https://ror.org/04h2x1077', 'en', 1, 'https://ror.org/04h2x1077 Robertson Foundation'),
(88713, 'https://ror.org/04h31f025', 'en', 1, 'https://ror.org/04h31f025 Hellenic Ministry of Rural Development and Food ΄πουργείο Αγροτικής Ανάπτυξης και Τροφίμων'),
(88714, 'https://ror.org/04h35ft75', 'it', 1, 'https://ror.org/04h35ft75 Fondazione Cassa di Risparmio di Lucca'),
(88715, 'https://ror.org/04h3kqy34', 'en', 1, 'https://ror.org/04h3kqy34 Yunnan Provincial Department of Transportation äŗ‘å—ēœäŗ¤é€ščæč¾“åŽ…'),
(88716, 'https://ror.org/04h48pe74', 'en', 1, 'https://ror.org/04h48pe74 Montana Academy of Sciences'),
(88717, 'https://ror.org/04h785s89', 'en', 0, 'https://ror.org/04h785s89 Scottsdale Lincoln Health Network'),
(88718, 'https://ror.org/04h7gk919', 'no_lang_code', 1, 'https://ror.org/04h7gk919 Alverno College'),
(88719, 'https://ror.org/04h9qdh30', 'no_lang_code', 0, 'https://ror.org/04h9qdh30 Rottapharm (Germany)'),
(88720, 'https://ror.org/04ha2bb10', 'en', 1, 'https://ror.org/04ha2bb10 Weifang University of Science and Technology'),
(88721, 'https://ror.org/04he42b87', 'es', 1, 'https://ror.org/04he42b87 Centro Tecnológico de la Industria CÔrnica de La Rioja'),
(88722, 'https://ror.org/04heaf422', 'en', 1, 'https://ror.org/04heaf422 European Academy of Neurology'),
(88723, 'https://ror.org/04hfkdb50', 'en', 1, 'https://ror.org/04hfkdb50 Knox College'),
(88724, 'https://ror.org/04hhneb29', 'en', 1, 'https://ror.org/04hhneb29 Autonomous University of Tamaulipas Universidad Autónoma de Tamaulipas'),
(88725, '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'),
(88726, 'https://ror.org/04hnf9a51', 'en', 1, 'https://ror.org/04hnf9a51 Islamic Azad University of Tabriz دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تبریز'),
(88727, 'https://ror.org/04hqpta12', 'en', 1, 'https://ror.org/04hqpta12 Williams Syndrome Foundation'),
(88728, 'https://ror.org/04hrnch96', 'en', 1, 'https://ror.org/04hrnch96 Indiana Wesleyan University'),
(88729, 'https://ror.org/04hsvhf62', 'en', 1, 'https://ror.org/04hsvhf62 Al-Furat Al-Awsat Technical University Ų¬Ų§Ł…Ų¹Ų© الفرات Ų§Ł„Ų§ŁˆŲ³Ų· Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(88730, 'https://ror.org/04ht6yt06', 'en', 1, 'https://ror.org/04ht6yt06 J. Armand Bombardier Foundation'),
(88731, 'https://ror.org/04htrme26', 'en', 1, 'https://ror.org/04htrme26 International Union for the Scientific Study of Population'),
(88732, 'https://ror.org/04hwy3h09', 'en', 1, 'https://ror.org/04hwy3h09 keiyu Hospital äø€čˆ¬č²”å›£ę³•äŗŗē„žå„ˆå·ēœŒč­¦å‹ä¼šć‘ć„ć‚†ć†ē—…é™¢'),
(88733, 'https://ror.org/04hzejq44', 'en', 1, 'https://ror.org/04hzejq44 Foundation for Liver and Gastrointestinal Research Stichting voor Lever- en Maag-Darm Onderzoek'),
(88734, 'https://ror.org/04j0sev46', 'es', 1, 'https://ror.org/04j0sev46 Centro de Investigación Biomédica en Red de Fragilidad y Envejecimiento Saludable'),
(88735, 'https://ror.org/04j3r8z61', 'en', 1, 'https://ror.org/04j3r8z61 Bank of Finland Finlands Bank Suomen Pankki'),
(88736, 'https://ror.org/04j4mc084', 'no_lang_code', 1, 'https://ror.org/04j4mc084 Centraal Instituut voor Toetsontwikkeling Cito (Netherlands)'),
(88737, 'https://ror.org/04j4psb31', 'en', 1, 'https://ror.org/04j4psb31 Australia Council for the Arts'),
(88738, 'https://ror.org/04j7mzp05', 'en', 1, 'https://ror.org/04j7mzp05 Kagawa University 香川大学'),
(88739, 'https://ror.org/04j8p5551', 'no_lang_code', 0, 'https://ror.org/04j8p5551 Deutsches Windenergie Institut'),
(88740, 'https://ror.org/04j9g3e78', 'en', 1, 'https://ror.org/04j9g3e78 American Dairy Science Association'),
(88741, 'https://ror.org/04ja5n907', 'pt', 1, 'https://ror.org/04ja5n907 State University of Maranhão Universidade Estadual do Maranhão'),
(88742, 'https://ror.org/04ja89y28', 'pt', 1, 'https://ror.org/04ja89y28 Sociedade Portuguesa de Vida Selvagem'),
(88743, 'https://ror.org/04ja8dc86', 'en', 1, 'https://ror.org/04ja8dc86 Institute for European Environmental Policy'),
(88744, 'https://ror.org/04jbp8w50', 'id', 1, 'https://ror.org/04jbp8w50 Universitas Teknologi Yogyakarta'),
(88745, 'https://ror.org/04jdfdv39', 'en', 1, 'https://ror.org/04jdfdv39 Institution of Structural Engineers'),
(88746, 'https://ror.org/04jdqdr13', 'es', 1, 'https://ror.org/04jdqdr13 Instituto de BiologĆ­a Subtropical'),
(88747, 'https://ror.org/04jeqzs82', 'en', 0, 'https://ror.org/04jeqzs82 Holt Radium Institute'),
(88748, 'https://ror.org/04jg8an89', 'en', 1, 'https://ror.org/04jg8an89 Materials Research Society'),
(88749, 'https://ror.org/04jgeq066', 'en', 1, 'https://ror.org/04jgeq066 Korea Disease Control and Prevention Agency ģ§ˆė³‘ź“€ė¦¬ģ²­'),
(88750, 'https://ror.org/04jhza748', 'nl', 1, 'https://ror.org/04jhza748 Tekke Huizinga Fonds'),
(88751, 'https://ror.org/04jjxmt88', 'no_lang_code', 1, 'https://ror.org/04jjxmt88 Tenaga Nasional Berhad (Malaysia) تناݢ Ł†Ų§Ų³ŁŠŁˆŁ†Ł„ ŲØŲ±Ų­ŲÆ'),
(88752, 'https://ror.org/04jme7072', 'en', 1, 'https://ror.org/04jme7072 CancerFree KIDS'),
(88753, 'https://ror.org/04jmjfm51', 'en', 0, 'https://ror.org/04jmjfm51 Stanislaw Staszic College of Public Administration'),
(88754, 'https://ror.org/04jmkm342', 'no_lang_code', 1, 'https://ror.org/04jmkm342 Vanguard International Semiconductor (Taiwan) äø–ē•Œå…ˆé€²ē©é«”é›»č·Æč‚”ä»½ęœ‰é™å…¬åø'),
(88755, 'https://ror.org/04jmrra88', 'en', 1, 'https://ror.org/04jmrra88 Shantou Central Hospital ę±•å¤“åø‚äø­åæƒåŒ»é™¢'),
(88756, 'https://ror.org/04jnmn720', 'fr', 1, 'https://ror.org/04jnmn720 Centre d’études et de Recherches sur l’espace Germanophone'),
(88757, 'https://ror.org/04jnprq39', 'en', 0, 'https://ror.org/04jnprq39 University of Minnesota Medical School'),
(88758, 'https://ror.org/04jr9fq67', 'no_lang_code', 0, 'https://ror.org/04jr9fq67 Rockwell Collins (United Kingdom)'),
(88759, 'https://ror.org/04jsh0z47', 'en', 0, 'https://ror.org/04jsh0z47 Fukuoka Social Medical Welfare University ē¦å²”åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(88760, 'https://ror.org/04jtseq07', 'no_lang_code', 1, 'https://ror.org/04jtseq07 Brennan & Company (Ireland)'),
(88761, 'https://ror.org/04jvemc39', 'en', 1, 'https://ror.org/04jvemc39 Max Planck Institute for Radio Astronomy Max-Planck-Institut für Radioastronomie'),
(88762, 'https://ror.org/04jw1eg47', 'en', 1, 'https://ror.org/04jw1eg47 National Center for Victims of Crime'),
(88763, 'https://ror.org/04jy7w797', 'en', 0, 'https://ror.org/04jy7w797 Saint Joseph Hospital'),
(88764, 'https://ror.org/04k0yvf43', 'no_lang_code', 0, 'https://ror.org/04k0yvf43 Catacel (United States)'),
(88765, 'https://ror.org/04k2w7985', 'en', 1, 'https://ror.org/04k2w7985 Whitman Hospital & Medical Center'),
(88766, 'https://ror.org/04k41b912', 'en', 1, 'https://ror.org/04k41b912 SENS Research Foundation'),
(88767, 'https://ror.org/04k443h76', 'no_lang_code', 0, 'https://ror.org/04k443h76 Guanghua Hospital'),
(88768, 'https://ror.org/04k443z34', 'no_lang_code', 0, 'https://ror.org/04k443z34 Mylan (Italy)'),
(88769, 'https://ror.org/04k4ejz78', 'no_lang_code', 1, 'https://ror.org/04k4ejz78 BioFire Diagnostics (United States)'),
(88770, 'https://ror.org/04k5gs878', 'en', 1, 'https://ror.org/04k5gs878 Lincoln Institute of Land Policy'),
(88771, 'https://ror.org/04k7cwk28', 'sl', 1, 'https://ror.org/04k7cwk28 Univerzitetno SrediŔče Novo mesto'),
(88772, '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'),
(88773, 'https://ror.org/04k8a6441', 'en', 1, 'https://ror.org/04k8a6441 Charcot-Marie-Tooth Association'),
(88774, 'https://ror.org/04k9dce70', 'en', 1, 'https://ror.org/04k9dce70 Taipei Medical University-Shuang Ho Hospital'),
(88775, 'https://ror.org/04kb28349', 'en', 1, 'https://ror.org/04kb28349 American Geographical Society'),
(88776, 'https://ror.org/04kdb0j04', 'en', 1, 'https://ror.org/04kdb0j04 Helmholtz Institute Freiberg for Resource Technology Helmholtz-Institut Freiberg für Ressourcentechnologie'),
(88777, 'https://ror.org/04kdqzg37', 'en', 1, 'https://ror.org/04kdqzg37 The William Buckland Foundation'),
(88778, 'https://ror.org/04kf5kc54', 'en', 1, 'https://ror.org/04kf5kc54 Nederlands Interdisciplinair Demografisch Instituut Netherlands Interdisciplinary Demographic Institute'),
(88779, 'https://ror.org/04khcv915', 'fr', 1, 'https://ror.org/04khcv915 Association Philippe Jabre'),
(88780, 'https://ror.org/04khs3e04', 'en', 1, 'https://ror.org/04khs3e04 Zigong First People''s Hospital č‡Ŗč“”åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(88781, 'https://ror.org/04kk6qr76', 'sv', 1, 'https://ror.org/04kk6qr76 Ella and Georg Ehrnrooth Foundation'),
(88782, 'https://ror.org/04kkpqb45', 'en', 1, 'https://ror.org/04kkpqb45 Society for Agriculture and Arid Ecology Research ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤¶ą„ą¤·ą„ą¤• ą¤Ŗą¤¾ą¤°ą¤æą¤øą„ą¤„ą¤æą¤¤ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą„‹ą¤øą¤¾ą¤‡ą¤Ÿą„€'),
(88783, 'https://ror.org/04kmpyd03', 'en', 1, 'https://ror.org/04kmpyd03 Nanjing General Hospital of Nanjing Military Command äø­å›½äŗŗę°‘č§£ę”¾å†›å—äŗ¬å†›åŒŗå—äŗ¬ę€»åŒ»é™¢'),
(88784, 'https://ror.org/04knez035', 'no_lang_code', 1, 'https://ror.org/04knez035 Dominica State College'),
(88785, 'https://ror.org/04ks0bn11', 'no_lang_code', 1, 'https://ror.org/04ks0bn11 Advatech Pacific (United States)'),
(88786, 'https://ror.org/04ksqpz49', 'en', 1, 'https://ror.org/04ksqpz49 Cardinal Tien Hospital č€•čŽ˜åŒ»é™¢'),
(88787, 'https://ror.org/04kxhtm13', 'en', 1, 'https://ror.org/04kxhtm13 Fondazione Nando ed Elsa Peretti Nando Peretti Foundation'),
(88788, 'https://ror.org/04kxvp486', 'en', 1, 'https://ror.org/04kxvp486 CHAS Health'),
(88789, 'https://ror.org/04kytbz16', 'en', 1, 'https://ror.org/04kytbz16 Genesis Research Institute'),
(88790, 'https://ror.org/04m0yag05', 'en', 1, 'https://ror.org/04m0yag05 Cap Digital'),
(88791, 'https://ror.org/04m1p5n74', 'en', 0, 'https://ror.org/04m1p5n74 University of Wisconsin Green Bay – Sheboygan'),
(88792, 'https://ror.org/04m2hj141', 'en', 1, 'https://ror.org/04m2hj141 National Institute of Meteorological Sciences źµ­ė¦½źø°ģƒź³¼ķ•™ģ›'),
(88793, 'https://ror.org/04m61gs59', 'no_lang_code', 0, 'https://ror.org/04m61gs59 General Cable (United States)'),
(88794, 'https://ror.org/04m6dqx50', 'en', 1, 'https://ror.org/04m6dqx50 University of South Carolina Salkehatchie'),
(88795, 'https://ror.org/04m9hsz45', 'en', 1, 'https://ror.org/04m9hsz45 Saint Francis de Sales Seminary'),
(88796, 'https://ror.org/04m9wnx11', 'en', 1, 'https://ror.org/04m9wnx11 Brain Research New Zealand'),
(88797, 'https://ror.org/04mcppw82', 'no_lang_code', 1, 'https://ror.org/04mcppw82 AKL (United Kingdom)'),
(88798, 'https://ror.org/04mcvt136', 'en', 1, 'https://ror.org/04mcvt136 Interactive Media Institute'),
(88799, 'https://ror.org/04md3y396', 'en', 0, 'https://ror.org/04md3y396 University of Phoenix'),
(88800, 'https://ror.org/04meffx53', 'no_lang_code', 0, 'https://ror.org/04meffx53 Neurocomp Systems (United States)'),
(88801, 'https://ror.org/04meft248', 'en', 1, 'https://ror.org/04meft248 Life Sciences Research Board'),
(88802, 'https://ror.org/04mjvsy78', 'en', 1, 'https://ror.org/04mjvsy78 Igenomix'),
(88803, 'https://ror.org/04mknkb88', 'en', 1, 'https://ror.org/04mknkb88 Canadian Medical Hall of Fame'),
(88804, 'https://ror.org/04mmhzs81', 'no_lang_code', 1, 'https://ror.org/04mmhzs81 ARM (United Kingdom)'),
(88805, 'https://ror.org/04mrcwk55', 'no_lang_code', 1, 'https://ror.org/04mrcwk55 Metamagnetics (United States)'),
(88806, 'https://ror.org/04mrg3p52', 'it', 1, 'https://ror.org/04mrg3p52 Istituto Oncologico Romagnolo'),
(88807, 'https://ror.org/04ms16277', 'en', 1, 'https://ror.org/04ms16277 Harvard Club of Australia'),
(88808, 'https://ror.org/04msaxc67', 'en', 1, 'https://ror.org/04msaxc67 Indian Institute of Art & Design'),
(88809, 'https://ror.org/04mvpxy20', 'en', 1, 'https://ror.org/04mvpxy20 Huzhou University'),
(88810, 'https://ror.org/04mvrfp94', 'no_lang_code', 0, 'https://ror.org/04mvrfp94 Oncor Electric Delivery (United States)'),
(88811, 'https://ror.org/04mw38f72', 'en', 1, 'https://ror.org/04mw38f72 Mast Cell Disease Society'),
(88812, 'https://ror.org/04mw59b52', 'en', 1, 'https://ror.org/04mw59b52 Montessori Education Center of the Rockies'),
(88813, 'https://ror.org/04mwjpk69', 'en', 1, 'https://ror.org/04mwjpk69 National Taiwan University of Sport åœ‹ē«‹č‡ŗē£é«”č‚²é‹å‹•å¤§å­ø'),
(88814, 'https://ror.org/04mx4hp49', 'no_lang_code', 0, 'https://ror.org/04mx4hp49 Acreo (Sweden)'),
(88815, 'https://ror.org/04mxp4k39', 'en', 1, 'https://ror.org/04mxp4k39 AOSpine'),
(88816, 'https://ror.org/04mxx1k66', 'en', 1, 'https://ror.org/04mxx1k66 Hearing Loss Association of America'),
(88817, 'https://ror.org/04my4q272', 'en', 1, 'https://ror.org/04my4q272 Texas General Land Office'),
(88818, 'https://ror.org/04mz0gg46', 'en', 1, 'https://ror.org/04mz0gg46 Washington Tree Fruit Research Commission'),
(88819, 'https://ror.org/04n0vf235', 'en', 0, 'https://ror.org/04n0vf235 Canadian Breast Cancer Foundation Fondation canadienne du cancer du sein'),
(88820, 'https://ror.org/04n1h1g04', 'en', 1, 'https://ror.org/04n1h1g04 Brain Mapping Foundation'),
(88821, 'https://ror.org/04n1mwm18', 'it', 1, 'https://ror.org/04n1mwm18 Istituto Zooprofilattico Sperimentale delle Venezie'),
(88822, 'https://ror.org/04n3c2195', 'en', 1, 'https://ror.org/04n3c2195 Directorate of Medicinal and Aromatic Plants Research ઔષધીય ąŖ”ąŖæąŖ°ą«‡ąŖ•ą«ąŖŸą«‹ąŖ°ą«‡ąŖŸ અને ąŖ–ą«ąŖ¶ą«ąŖ¬ą«‹ąŖ¦ąŖ¾ąŖ° છોઔ ąŖøąŖ‚ąŖ¶ą«‹ąŖ§ąŖØ'),
(88823, 'https://ror.org/04n3dya31', 'en', 1, 'https://ror.org/04n3dya31 1675 Foundation'),
(88824, 'https://ror.org/04n5yc113', 'en', 1, 'https://ror.org/04n5yc113 The Robertson Trust'),
(88825, 'https://ror.org/04n6sse75', 'en', 1, 'https://ror.org/04n6sse75 Navrongo Health Research Centre'),
(88826, 'https://ror.org/04n901w50', 'en', 1, 'https://ror.org/04n901w50 British Columbia Children''s Hospital'),
(88827, 'https://ror.org/04n98ay18', 'en', 0, 'https://ror.org/04n98ay18 Mountain States Health Alliance'),
(88828, 'https://ror.org/04n9k1k06', 'en', 1, 'https://ror.org/04n9k1k06 Keaton Raphael Memorial'),
(88829, 'https://ror.org/04n9sc266', 'en', 0, 'https://ror.org/04n9sc266 State University of New York Polytechnic Institute'),
(88830, 'https://ror.org/04n9w1739', 'en', 1, 'https://ror.org/04n9w1739 Alcohol and Drug Foundation'),
(88831, 'https://ror.org/04na04870', 'en', 1, 'https://ror.org/04na04870 Fondation De La RƩtine Du Canada The Retina Foundation of Canada'),
(88832, 'https://ror.org/04nbx4a76', 'en', 1, 'https://ror.org/04nbx4a76 Society of Cardiovascular Anesthesiologists'),
(88833, 'https://ror.org/04ncjj210', 'no_lang_code', 1, 'https://ror.org/04ncjj210 STARmed (South Korea)'),
(88834, 'https://ror.org/04ncqyx04', 'en', 1, 'https://ror.org/04ncqyx04 Open Source Hardware Association'),
(88835, 'https://ror.org/04njech58', 'es', 1, 'https://ror.org/04njech58 Universidad Tecnológica La Salle'),
(88836, 'https://ror.org/04njz3m02', 'en', 1, 'https://ror.org/04njz3m02 Michigan State University Foundation'),
(88837, 'https://ror.org/04nm2mq63', 'en', 1, 'https://ror.org/04nm2mq63 CRUK Lung Cancer Centre of Excellence'),
(88838, 'https://ror.org/04nm92h93', 'no_lang_code', 1, 'https://ror.org/04nm92h93 Vascular Biogenics (Israel)'),
(88839, 'https://ror.org/04nm9ed20', 'en', 1, 'https://ror.org/04nm9ed20 Hezhou University č“ŗå·žå­¦é™¢'),
(88840, 'https://ror.org/04npmfz39', 'no_lang_code', 1, 'https://ror.org/04npmfz39 Ortho Clinical Diagnostics (United States)'),
(88841, 'https://ror.org/04npz1276', 'no_lang_code', 1, 'https://ror.org/04npz1276 Windlift (United States)'),
(88842, 'https://ror.org/04nqvpx39', 'en', 0, 'https://ror.org/04nqvpx39 Alpha Hospital Bury'),
(88843, 'https://ror.org/04nshjv23', 'no_lang_code', 1, 'https://ror.org/04nshjv23 OpenAlgae (United States)'),
(88844, 'https://ror.org/04nsw4151', 'no_lang_code', 0, 'https://ror.org/04nsw4151 Mylan (United States)'),
(88845, 'https://ror.org/04nv2ya05', 'en', 1, 'https://ror.org/04nv2ya05 W. W. Smith Charitable Trust'),
(88846, 'https://ror.org/04nv6z940', 'en', 1, 'https://ror.org/04nv6z940 Greenville College'),
(88847, 'https://ror.org/04nv7tt16', 'en', 1, 'https://ror.org/04nv7tt16 Center for Dielectrics & Piezoelectrics'),
(88848, 'https://ror.org/04nv8vw43', 'no_lang_code', 1, 'https://ror.org/04nv8vw43 Advanced Technologies and Laboratories International (United States)'),
(88849, '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'),
(88850, 'https://ror.org/04p017s78', 'en', 1, 'https://ror.org/04p017s78 Autonomous State Medical College, Fatehpur ą¤‘ą¤Ÿą„‹ą¤Øą„‰ą¤®ą¤ø ą¤øą„ą¤Ÿą„‡ą¤Ÿ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ, ą¤«ą¤¤ą„‡ą¤¹ą¤Ŗą„ą¤°'),
(88851, 'https://ror.org/04p0gv653', 'en', 1, 'https://ror.org/04p0gv653 Korean Nurses Association ėŒ€ķ•œź°„ķ˜øķ˜‘ķšŒ'),
(88852, 'https://ror.org/04p2cym91', 'en', 1, 'https://ror.org/04p2cym91 Trakia University Тракийски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88853, 'https://ror.org/04p2sbk06', 'en', 1, 'https://ror.org/04p2sbk06 Panjab University ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਪੰਜਾਬ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€, ąØšą©°ąØ”ą©€ąØ—ą©œą©ąØ¹ ą®Ŗą®žąÆą®šą®¾ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®šą®£ąÆą®Ÿą®æą®•ą®°ąÆ'),
(88854, 'https://ror.org/04p4y6r60', 'en', 0, 'https://ror.org/04p4y6r60 LIU Post'),
(88855, 'https://ror.org/04p5vbd56', 'fi', 1, 'https://ror.org/04p5vbd56 Turun KauppaopetussƤƤtiƶ'),
(88856, 'https://ror.org/04p5zd128', 'en', 1, 'https://ror.org/04p5zd128 Hackensack Meridian Health'),
(88857, 'https://ror.org/04p68fv46', 'en', 1, 'https://ror.org/04p68fv46 Baird Institute'),
(88858, 'https://ror.org/04p6eac84', 'en', 1, 'https://ror.org/04p6eac84 Chuo Kikuu cha Moi Moi University'),
(88859, 'https://ror.org/04p6zfy94', 'en', 1, 'https://ror.org/04p6zfy94 Northeast-Midwest Institute'),
(88860, 'https://ror.org/04p7g7c05', 'en', 1, 'https://ror.org/04p7g7c05 Earthquake Commission'),
(88861, 'https://ror.org/04pb1a459', 'en', 1, 'https://ror.org/04pb1a459 Centre of Natural Hazards and Disaster Science'),
(88862, 'https://ror.org/04pchzt95', 'no_lang_code', 0, 'https://ror.org/04pchzt95 Bayer CropScience (Belgium)'),
(88863, 'https://ror.org/04pcmyb41', 'it', 1, 'https://ror.org/04pcmyb41 Conservatorio di Musica Bruno Maderna'),
(88864, 'https://ror.org/04pedtg03', 'en', 0, 'https://ror.org/04pedtg03 Department of Justice'),
(88865, 'https://ror.org/04pemvb49', 'no_lang_code', 0, 'https://ror.org/04pemvb49 Multiplicom (Belgium)'),
(88866, 'https://ror.org/04pgkxg15', 'no_lang_code', 0, 'https://ror.org/04pgkxg15 TEI Biosciences (United States)'),
(88867, 'https://ror.org/04pnjx786', 'en', 1, 'https://ror.org/04pnjx786 Kazusa DNA Research Institute å…¬ē›Šč²”å›£ę³•äŗŗć‹ćšć•DNA研究所'),
(88868, 'https://ror.org/04pq5x672', 'en', 1, 'https://ror.org/04pq5x672 Nicholls State University UniversitĆ© d''Ɖtat nicholls'),
(88869, 'https://ror.org/04pr7ha69', 'en', 1, 'https://ror.org/04pr7ha69 The Sanskrit College and University'),
(88870, 'https://ror.org/04prjvw86', 'en', 1, 'https://ror.org/04prjvw86 SIR Institute for Pharmacy Practice and Policy'),
(88871, 'https://ror.org/04ps1tq95', 'en', 0, 'https://ror.org/04ps1tq95 InstitiĆŗid TeicneolaĆ­ochta Leitir Ceanainn Letterkenny Institute of Technology'),
(88872, 'https://ror.org/04ptwdm39', 'en', 1, 'https://ror.org/04ptwdm39 Virginia Museum of Fine Arts'),
(88873, 'https://ror.org/04q0ys014', 'en', 0, 'https://ror.org/04q0ys014 Information and Communications University'),
(88874, 'https://ror.org/04q350418', 'en', 1, 'https://ror.org/04q350418 The Leon Lowenstein Foundation'),
(88875, 'https://ror.org/04q36wn27', 'en', 1, 'https://ror.org/04q36wn27 Lieber Institute for Brain Development'),
(88876, 'https://ror.org/04q4bdj41', 'en', 1, 'https://ror.org/04q4bdj41 Citrus Research Board'),
(88877, 'https://ror.org/04q4nwv58', 'en', 1, 'https://ror.org/04q4nwv58 Oracle Cancer Trust'),
(88878, 'https://ror.org/04q5w0t20', 'en', 1, 'https://ror.org/04q5w0t20 Milford on Sea War Memorial Hospital'),
(88879, 'https://ror.org/04q7bxp13', 'no_lang_code', 1, 'https://ror.org/04q7bxp13 Thor Industries (United States)'),
(88880, 'https://ror.org/04q9mdf26', 'fr', 1, 'https://ror.org/04q9mdf26 Institut Sainte Catherine'),
(88881, 'https://ror.org/04qawwn42', 'en', 1, 'https://ror.org/04qawwn42 Central Council for Research in Homoeopathy'),
(88882, 'https://ror.org/04qbvw321', 'en', 1, 'https://ror.org/04qbvw321 Walloon Excellence in Lifesciences and Biotechnology'),
(88883, 'https://ror.org/04qc03j14', 'en', 1, 'https://ror.org/04qc03j14 TromsĆø forskningsstiftelse TromsĆø research foundation'),
(88884, 'https://ror.org/04qc5fv62', 'en', 1, 'https://ror.org/04qc5fv62 American International Medical University'),
(88885, 'https://ror.org/04qe65e37', 'en', 1, 'https://ror.org/04qe65e37 Pan African University Institute of Water and Energy Science'),
(88886, 'https://ror.org/04qfbfc73', 'de', 1, 'https://ror.org/04qfbfc73 Berufskolleg Am Wasserturm'),
(88887, 'https://ror.org/04qfdcf28', 'no_lang_code', 0, 'https://ror.org/04qfdcf28 Shire (Germany)'),
(88888, 'https://ror.org/04qfh2k37', 'en', 1, 'https://ror.org/04qfh2k37 Mongolian Academy of Sciences Монгол ŃƒŠ»ŃŃ‹Š½ ŠØŠøŠ½Š¶Š»ŃŃ… ŃƒŃ…Š°Š°Š½Ń‹ АкаГеми'),
(88889, 'https://ror.org/04qj1xq90', 'en', 1, 'https://ror.org/04qj1xq90 Canadian Animal Health Institute Institut Canadien de la SantƩ Animale'),
(88890, 'https://ror.org/04qm1zm15', 'en', 1, 'https://ror.org/04qm1zm15 Huntsville Bible College'),
(88891, 'https://ror.org/04qmmjx98', 'en', 1, 'https://ror.org/04qmmjx98 Osnabrück University Universität Osnabrück'),
(88892, 'https://ror.org/04qn5a624', 'en', 1, 'https://ror.org/04qn5a624 Fƶrsvarsmakten Swedish Armed Forces'),
(88893, 'https://ror.org/04qp5sq42', 'en', 0, 'https://ror.org/04qp5sq42 Russian State University named after AN Kosygin'),
(88894, 'https://ror.org/04qt75m20', 'en', 0, 'https://ror.org/04qt75m20 Art Institute of Virginia Beach'),
(88895, 'https://ror.org/04qwwj097', 'de', 1, 'https://ror.org/04qwwj097 Deutsche Zƶliakie-Gesellschaft e.V.'),
(88896, 'https://ror.org/04qz65d85', 'en', 1, 'https://ror.org/04qz65d85 Ann and Bill Swindells Charitable Trust'),
(88897, 'https://ror.org/04qzx1v96', 'en', 0, 'https://ror.org/04qzx1v96 Gunma Shorei Junior College of Welfare ē¾¤é¦¬ę¾å¶ŗē¦ē„‰ēŸ­ęœŸå¤§å­¦'),
(88898, 'https://ror.org/04r15fz20', 'no_lang_code', 1, 'https://ror.org/04r15fz20 Hawassa University įˆ€į‹‹įˆ³ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(88899, 'https://ror.org/04r1f5z39', 'de', 1, 'https://ror.org/04r1f5z39 Krankenhaus St. Joseph-Stift Bremen'),
(88900, 'https://ror.org/04r1zkp10', 'en', 1, 'https://ror.org/04r1zkp10 Jiangxi Science and Technology Normal University ę±Ÿč„æē§‘ęŠ€åøˆčŒƒå¤§å­¦'),
(88901, 'https://ror.org/04r3fxe28', 'no_lang_code', 0, 'https://ror.org/04r3fxe28 ProSyst Software (Germany)'),
(88902, 'https://ror.org/04r41ae03', 'de', 1, 'https://ror.org/04r41ae03 Reiner Lemoine Stiftung'),
(88903, 'https://ror.org/04r51hs31', 'en', 1, 'https://ror.org/04r51hs31 Australia and Pacific Science Foundation'),
(88904, 'https://ror.org/04r5tg226', 'en', 1, 'https://ror.org/04r5tg226 Hall Family Foundation'),
(88905, 'https://ror.org/04r83e717', 'en', 1, 'https://ror.org/04r83e717 Trudeau Institute'),
(88906, 'https://ror.org/04r8tsy16', 'en', 1, 'https://ror.org/04r8tsy16 National Museum of Nature and Science å›½ē«‹ē§‘å­¦åšē‰©é¤Ø'),
(88907, 'https://ror.org/04r9e1a13', 'nl', 1, 'https://ror.org/04r9e1a13 OnderzoeksCentrum voor de Aanwending van Staal'),
(88908, 'https://ror.org/04r9gvy43', 'en', 1, 'https://ror.org/04r9gvy43 Pan-African University'),
(88909, 'https://ror.org/04ra49e34', 'en', 1, 'https://ror.org/04ra49e34 University of the Philippines Baguio'),
(88910, 'https://ror.org/04raa0n02', 'en', 1, 'https://ror.org/04raa0n02 Minerals Metals and Materials Society'),
(88911, 'https://ror.org/04rbpat47', 'en', 1, 'https://ror.org/04rbpat47 Mercator Research Center Ruhr'),
(88912, 'https://ror.org/04rbvc675', 'en', 1, 'https://ror.org/04rbvc675 Buddhist Tzu Chi Medical Foundation'),
(88913, 'https://ror.org/04rdw0c88', 'en', 1, 'https://ror.org/04rdw0c88 The Neuro Well'),
(88914, 'https://ror.org/04reqzt68', 'en', 1, 'https://ror.org/04reqzt68 Wellcome Trust/DBT India Alliance'),
(88915, 'https://ror.org/04rp21r95', 'en', 0, 'https://ror.org/04rp21r95 Long Island University at Riverhead'),
(88916, 'https://ror.org/04rpbvd54', 'no_lang_code', 0, 'https://ror.org/04rpbvd54 Oclaro Technology (United Kingdom)'),
(88917, 'https://ror.org/04rpe5h19', 'en', 1, 'https://ror.org/04rpe5h19 Harte Research Institute for Gulf of Mexico Studies'),
(88918, 'https://ror.org/04rrj3a80', 'fr', 1, 'https://ror.org/04rrj3a80 Laboratoire de Microbiologie et GƩnƩtique MolƩculaires'),
(88919, 'https://ror.org/04rsrxr19', 'en', 1, 'https://ror.org/04rsrxr19 Fondation des Ʃtoiles Foundation of Stars'),
(88920, 'https://ror.org/04rtdp853', 'en', 1, 'https://ror.org/04rtdp853 Royal Free London NHS Foundation Trust'),
(88921, 'https://ror.org/04rvwsw45', 'en', 1, 'https://ror.org/04rvwsw45 Center of Medical Genetics and Primary Health Care'),
(88922, 'https://ror.org/04rw64z44', 'en', 1, 'https://ror.org/04rw64z44 National Foundation for Science and Technology Development'),
(88923, 'https://ror.org/04rx5nw92', 'en', 1, 'https://ror.org/04rx5nw92 Monterey Bay Aquarium Foundation'),
(88924, 'https://ror.org/04rxm5737', 'no_lang_code', 1, 'https://ror.org/04rxm5737 Alberta Newsprint Company (Canada)'),
(88925, 'https://ror.org/04ryaz303', 'en', 0, 'https://ror.org/04ryaz303 South Ural State Humanitarian Pedagogical University Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88926, 'https://ror.org/04rz2mx03', 'en', 1, 'https://ror.org/04rz2mx03 Ontario Medical Association'),
(88927, 'https://ror.org/04s11gh14', 'id', 1, 'https://ror.org/04s11gh14 Universitas Muhammadiyah Pontianak'),
(88928, 'https://ror.org/04s2bx355', 'en', 1, 'https://ror.org/04s2bx355 Consortium of Universities for the Advancement of Hydrologic Science'),
(88929, 'https://ror.org/04s3g5933', 'no_lang_code', 1, 'https://ror.org/04s3g5933 Delta Electronics (China)'),
(88930, 'https://ror.org/04s498a57', 'en', 1, 'https://ror.org/04s498a57 National Cattlemen''s Beef Association'),
(88931, 'https://ror.org/04s4kmz35', 'no_lang_code', 0, 'https://ror.org/04s4kmz35 Preactor (United Kingdom)'),
(88932, 'https://ror.org/04s9vpv90', 'no_lang_code', 0, 'https://ror.org/04s9vpv90 InterMune (Switzerland)'),
(88933, 'https://ror.org/04sbsx707', 'no_lang_code', 1, 'https://ror.org/04sbsx707 Debre Markos University'),
(88934, 'https://ror.org/04sc82966', 'no_lang_code', 0, 'https://ror.org/04sc82966 Siradel (France)'),
(88935, 'https://ror.org/04sex8v22', 'en', 1, 'https://ror.org/04sex8v22 Russian Christian Humanitarian Academy Š ŃƒŃŃŠŗŠ°Ń Ń…Ń€ŠøŃŃ‚ŠøŠ°Š½ŃŠŗŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(88936, 'https://ror.org/04sfsy924', 'sv', 1, 'https://ror.org/04sfsy924 Familjen Erling-Perssons Stiftelse'),
(88937, 'https://ror.org/04sggs879', 'en', 1, 'https://ror.org/04sggs879 Goshen Health'),
(88938, 'https://ror.org/04sk80178', 'en', 1, 'https://ror.org/04sk80178 Nanjing Jiangning Hospital'),
(88939, 'https://ror.org/04skmn292', 'en', 1, 'https://ror.org/04skmn292 Beijing Children’s Hospital åŒ—äŗ¬å„æē«„åŒ»é™¢'),
(88940, 'https://ror.org/04smsfy22', 'en', 1, 'https://ror.org/04smsfy22 Saint Francis University UniversitƩ saint francis'),
(88941, 'https://ror.org/04sn78z72', 'en', 1, 'https://ror.org/04sn78z72 Chartered Society of Physiotherapy'),
(88942, 'https://ror.org/04sq3js80', 'no_lang_code', 0, 'https://ror.org/04sq3js80 Kraft (Canada)'),
(88943, 'https://ror.org/04srq1z60', 'en', 1, 'https://ror.org/04srq1z60 World Heart Federation'),
(88944, 'https://ror.org/04ssn9s76', 'no_lang_code', 1, 'https://ror.org/04ssn9s76 Shangluo Central Hospital å•†ę“›åø‚äø­åæƒåŒ»é™¢'),
(88945, 'https://ror.org/04sxg3977', 'no_lang_code', 1, 'https://ror.org/04sxg3977 Moroccan Agency For Solar Energy (Morocco)'),
(88946, 'https://ror.org/04sy8yh72', 'en', 0, 'https://ror.org/04sy8yh72 Illinois Institute of Art'),
(88947, 'https://ror.org/04syzjx81', 'en', 1, 'https://ror.org/04syzjx81 Research Institute for Aging'),
(88948, 'https://ror.org/04t0qr802', 'en', 1, 'https://ror.org/04t0qr802 Hill Stead Museum'),
(88949, 'https://ror.org/04t31bx63', 'en', 1, 'https://ror.org/04t31bx63 Alpha-1 Foundation'),
(88950, 'https://ror.org/04t34tv83', 'en', 1, 'https://ror.org/04t34tv83 International Diabetes Federation'),
(88951, 'https://ror.org/04t35nt16', 'en', 1, 'https://ror.org/04t35nt16 Durrell Wildlife Conservation Trust'),
(88952, 'https://ror.org/04t3r5s29', 'no_lang_code', 0, 'https://ror.org/04t3r5s29 Vaxin (United States)'),
(88953, 'https://ror.org/04t4gxd81', 'en', 1, 'https://ror.org/04t4gxd81 Kanazawa Technical College é‡‘ę²¢å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(88954, 'https://ror.org/04t67vr60', 'en', 1, 'https://ror.org/04t67vr60 National Institute of Pharmaceutical Education and Research'),
(88955, 'https://ror.org/04t7jhw56', 'no_lang_code', 0, 'https://ror.org/04t7jhw56 Sucampo (United States)'),
(88956, 'https://ror.org/04t853d16', 'no_lang_code', 1, 'https://ror.org/04t853d16 O''Neal Steel (United States)'),
(88957, 'https://ror.org/04t99en88', 'en', 1, 'https://ror.org/04t99en88 Crowder College'),
(88958, 'https://ror.org/04t9bwz39', 'fr', 1, 'https://ror.org/04t9bwz39 Conseil RƩgional de Bourgogne'),
(88959, 'https://ror.org/04td15k45', 'es', 1, 'https://ror.org/04td15k45 Cooperative University of Colombia Universidad Cooperativa de Colombia'),
(88960, 'https://ror.org/04td6r087', 'no_lang_code', 0, 'https://ror.org/04td6r087 CareFusion'),
(88961, 'https://ror.org/04tdfgn13', 'en', 1, 'https://ror.org/04tdfgn13 Pro-Implant Foundation'),
(88962, 'https://ror.org/04tdkxq51', 'no_lang_code', 1, 'https://ror.org/04tdkxq51 ToolGen (South Korea) 툓젠'),
(88963, 'https://ror.org/04tehk585', 'en', 1, 'https://ror.org/04tehk585 United African University of Tanzania'),
(88964, 'https://ror.org/04tetvb72', 'en', 1, 'https://ror.org/04tetvb72 Archstone Foundation'),
(88965, 'https://ror.org/04tghch53', 'en', 1, 'https://ror.org/04tghch53 Otago Medical Research Foundation'),
(88966, 'https://ror.org/04tj5he82', 'en', 0, 'https://ror.org/04tj5he82 National Children’s’ Cardiac Hospital'),
(88967, '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)'),
(88968, 'https://ror.org/04tkhxj35', 'en', 1, 'https://ror.org/04tkhxj35 Shingyeong University ģ‹ ź²½ėŒ€ķ•™źµ'),
(88969, 'https://ror.org/04tm9hq97', 'no_lang_code', 1, 'https://ror.org/04tm9hq97 Bigfoot Biomedical (United States)'),
(88970, 'https://ror.org/04tmabm35', 'no_lang_code', 0, 'https://ror.org/04tmabm35 The Medicines Company (Canada)'),
(88971, 'https://ror.org/04tmdjm41', 'en', 0, 'https://ror.org/04tmdjm41 Geochemistry of Soil Evolution Geochimie des sols et des eaux'),
(88972, 'https://ror.org/04tnbvm40', 'en', 0, 'https://ror.org/04tnbvm40 Salvation Army'),
(88973, 'https://ror.org/04tpp9d61', 'en', 1, 'https://ror.org/04tpp9d61 NorthShore University HealthSystem'),
(88974, 'https://ror.org/04tqgqh22', 'no_lang_code', 1, 'https://ror.org/04tqgqh22 Biosense Webster (Israel)'),
(88975, 'https://ror.org/04trj1363', 'fr', 1, 'https://ror.org/04trj1363 Fondation Pierre-Gilles de Gennes pour la Recherche'),
(88976, 'https://ror.org/04ts2h794', 'en', 1, 'https://ror.org/04ts2h794 Darwin Center for Biogeosciences'),
(88977, 'https://ror.org/04tsbkh63', 'en', 1, 'https://ror.org/04tsbkh63 Thamar University Ų¬Ų§Ł…Ų¹Ų© Ų°Ł…Ų§Ų±'),
(88978, 'https://ror.org/04tsmra86', 'en', 1, 'https://ror.org/04tsmra86 National Board of Medical Examiners'),
(88979, 'https://ror.org/04tv9mc26', 'en', 1, 'https://ror.org/04tv9mc26 Gzhel State University Š“Š¶ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(88980, 'https://ror.org/04tvfnj07', 'en', 1, 'https://ror.org/04tvfnj07 Wettenhall Environment Trust'),
(88981, 'https://ror.org/04ty4v362', 'en', 1, 'https://ror.org/04ty4v362 Les Turner ALS Foundation'),
(88982, 'https://ror.org/04v043n92', 'en', 1, 'https://ror.org/04v043n92 First Affiliated Hospital of Bengbu Medical College čšŒåŸ åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(88983, 'https://ror.org/04v27b270', 'en', 0, 'https://ror.org/04v27b270 Health Economics Bergen'),
(88984, 'https://ror.org/04v48nr57', 'en', 1, 'https://ror.org/04v48nr57 Rhodes Trust'),
(88985, 'https://ror.org/04v612t13', 'no_lang_code', 0, 'https://ror.org/04v612t13 Swederail Ab'),
(88986, 'https://ror.org/04v6cz278', 'en', 1, 'https://ror.org/04v6cz278 St. Philip''s College'),
(88987, 'https://ror.org/04v95hh54', 'no_lang_code', 1, 'https://ror.org/04v95hh54 Adelphi Technology (United States)'),
(88988, 'https://ror.org/04vaqfq82', 'es', 1, 'https://ror.org/04vaqfq82 Asociación Española de Psicología Conductual'),
(88989, 'https://ror.org/04vcn6p23', 'en', 1, 'https://ror.org/04vcn6p23 Polish Geological Institute'),
(88990, 'https://ror.org/04vd6qx78', 'no_lang_code', 1, 'https://ror.org/04vd6qx78 General Motors (Canada) General Motors du Canada LimitƩe'),
(88991, 'https://ror.org/04vddtt23', 'en', 0, 'https://ror.org/04vddtt23 Fukuoka Junior College of Social Work and Child Education ē¦å²”ēœŒē¤¾ä¼šäæč‚²ēŸ­ęœŸå¤§å­¦'),
(88992, 'https://ror.org/04vdmbk59', 'en', 1, 'https://ror.org/04vdmbk59 Pedagogical and Technological University of Colombia Universidad Pedagógica y Tecnológica de Colombia'),
(88993, 'https://ror.org/04vgd1s66', 'no_lang_code', 1, 'https://ror.org/04vgd1s66 Allergy Therapeutics (United Kingdom)'),
(88994, 'https://ror.org/04vh4q802', 'no_lang_code', 1, 'https://ror.org/04vh4q802 Manzanita Pharmaceuticals (United States)'),
(88995, 'https://ror.org/04vh8f825', 'en', 1, 'https://ror.org/04vh8f825 Academy of Fine Arts of Bari Accademia di Belle Arti di Bari'),
(88996, 'https://ror.org/04vhygz79', 'en', 0, 'https://ror.org/04vhygz79 World Bank'),
(88997, 'https://ror.org/04vnygp31', 'en', 1, 'https://ror.org/04vnygp31 Swisselectric'),
(88998, 'https://ror.org/04vq5jh35', 'en', 1, 'https://ror.org/04vq5jh35 Paochien Hospital 寶建醫院'),
(88999, 'https://ror.org/04vqm6w82', 'en', 1, 'https://ror.org/04vqm6w82 Whitehead Institute for Biomedical Research'),
(89000, 'https://ror.org/04vs72b15', 'en', 1, 'https://ror.org/04vs72b15 Institute of Cardiology Instituto de CardiologĆ­a'),
(89001, 'https://ror.org/04vs7c252', 'no_lang_code', 0, 'https://ror.org/04vs7c252 Anasys Instruments (United States)'),
(89002, 'https://ror.org/04vvjs337', 'no_lang_code', 0, 'https://ror.org/04vvjs337 Photon Machines (United States)'),
(89003, 'https://ror.org/04vvzp265', 'en', 1, 'https://ror.org/04vvzp265 Mava Foundation'),
(89004, 'https://ror.org/04w1hax42', 'en', 1, 'https://ror.org/04w1hax42 American Association for the History of Medicine'),
(89005, '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'),
(89006, 'https://ror.org/04w36j572', 'fr', 1, 'https://ror.org/04w36j572 Mission InterministƩrielle de Lutte contre les Drogues Et les Conduites Addictives'),
(89007, 'https://ror.org/04w5f4y88', 'en', 1, 'https://ror.org/04w5f4y88 Zewail City of Science and Technology Ł…ŲÆŁŠŁ†Ų© Ų²ŁˆŁŠŁ„ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(89008, 'https://ror.org/04w5zb891', 'en', 1, 'https://ror.org/04w5zb891 Jilin Agricultural Science and Technology University å‰ęž—å†œäøšē§‘ęŠ€å­¦é™¢'),
(89009, 'https://ror.org/04w9bz196', 'en', 1, 'https://ror.org/04w9bz196 Canadian Institute of Steel Construction'),
(89010, 'https://ror.org/04wc56h90', 'no_lang_code', 1, 'https://ror.org/04wc56h90 Nakanishi (Japan) ę Ŗå¼ä¼šē¤¾ćƒŠć‚«ćƒ‹ć‚·'),
(89011, 'https://ror.org/04wd8np46', 'en', 0, 'https://ror.org/04wd8np46 Yaroslav Mudryi National Law University ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Ярослава ŠœŃƒŠ“рого'),
(89012, 'https://ror.org/04wdc4w42', 'en', 1, 'https://ror.org/04wdc4w42 National GEM Consortium'),
(89013, 'https://ror.org/04we7d902', 'en', 1, 'https://ror.org/04we7d902 Norwich University UniversitƩ de norwich'),
(89014, 'https://ror.org/04wfcg440', 'en', 0, 'https://ror.org/04wfcg440 Art Institute of Phoenix'),
(89015, 'https://ror.org/04wg6sh66', 'en', 0, 'https://ror.org/04wg6sh66 Kyoto Sosei University äŗ¬éƒ½å‰µęˆå¤§å­¦'),
(89016, 'https://ror.org/04wgk6417', 'en', 0, 'https://ror.org/04wgk6417 Art Institute of Las Vegas'),
(89017, 'https://ror.org/04wgs1895', 'en', 1, 'https://ror.org/04wgs1895 Dan David Prize'),
(89018, 'https://ror.org/04whb3988', 'en', 1, 'https://ror.org/04whb3988 Institute of Physics'),
(89019, 'https://ror.org/04wjfz810', 'no_lang_code', 1, 'https://ror.org/04wjfz810 Thermal Wave Imaging (United States)'),
(89020, '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'),
(89021, 'https://ror.org/04wn98951', 'pt', 1, 'https://ror.org/04wn98951 Confederação Geral dos Trabalhadores Portugueses General Confederation of the Portuguese Workers'),
(89022, 'https://ror.org/04wnpnz26', 'no_lang_code', 1, 'https://ror.org/04wnpnz26 Energiforsk (Sweden)'),
(89023, 'https://ror.org/04wpcnj90', 'es', 1, 'https://ror.org/04wpcnj90 Corporación de Lucha Contra el Sida'),
(89024, 'https://ror.org/04wpcxa25', 'en', 1, 'https://ror.org/04wpcxa25 Sykehuset Ƙstfold Ƙstfold Hospital Trust'),
(89025, 'https://ror.org/04wsmmg28', 'fr', 1, 'https://ror.org/04wsmmg28 Institut pour la Recherche sur la Moelle EpiniĆØre et l’EncĆ©phale'),
(89026, 'https://ror.org/04wtfvh23', 'sk', 0, 'https://ror.org/04wtfvh23 Univerzita Sv. Cyrila A Metoda V Trnave'),
(89027, 'https://ror.org/04wvm3361', 'en', 1, 'https://ror.org/04wvm3361 Ed Evans Foundation'),
(89028, 'https://ror.org/04wvygn49', 'es', 1, 'https://ror.org/04wvygn49 Fundación Copec UC'),
(89029, 'https://ror.org/04wwggg58', 'no_lang_code', 0, 'https://ror.org/04wwggg58 Nisshin Pharma (Japan) ę—„ęø…ćƒ•ć‚”ćƒ«ćƒž'),
(89030, 'https://ror.org/04wy7hp55', 'en', 1, 'https://ror.org/04wy7hp55 George F. and Sybil H. Fuller Foundation'),
(89031, 'https://ror.org/04wymav61', 'en', 1, 'https://ror.org/04wymav61 College of Law and Business'),
(89032, 'https://ror.org/04x1dwm38', 'no_lang_code', 1, 'https://ror.org/04x1dwm38 Seikagaku Corporation (Japan) ē”ŸåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(89033, 'https://ror.org/04x222a35', 'en', 1, 'https://ror.org/04x222a35 Institute of Ismaili Studies'),
(89034, 'https://ror.org/04x29g303', 'en', 0, 'https://ror.org/04x29g303 Institute for Hydrological Research'),
(89035, 'https://ror.org/04x2nj883', 'pt', 1, 'https://ror.org/04x2nj883 Instituto do Coração'),
(89036, 'https://ror.org/04x2tv955', 'en', 1, 'https://ror.org/04x2tv955 All-Russian Scientific Research Veterinary Institute of Pathology, Pharmacology and Therapy Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарной патологии, фармакологии Šø терапии'),
(89037, 'https://ror.org/04x45f476', 'en', 1, 'https://ror.org/04x45f476 Fraunhofer Institute for Cell Therapy and Immunology Fraunhofer-Institut für Zelltherapie und Immunologie'),
(89038, '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'),
(89039, 'https://ror.org/04xbn6x09', 'en', 1, 'https://ror.org/04xbn6x09 Instituto Nacional de Pesquisas Espaciais National Institute for Space Research'),
(89040, 'https://ror.org/04xbpez43', 'en', 1, 'https://ror.org/04xbpez43 National Institute for International Education źµ­ė¦½źµ­ģ œźµģœ”ģ›'),
(89041, 'https://ror.org/04xe0vz96', 'en', 1, 'https://ror.org/04xe0vz96 Association for Behavioral and Cognitive Therapies'),
(89042, 'https://ror.org/04xg0r294', 'en', 1, 'https://ror.org/04xg0r294 Lumbini Buddhist University ą¤²ą„ą¤®ą„ą¤¬ą¤æą¤Øą„€ ą¤¬ą„Œą¤¦ą„ą¤§ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(89043, 'https://ror.org/04xgh4d03', 'en', 1, 'https://ror.org/04xgh4d03 Ming Chi University of Technology ę˜Žåæ—ē§‘ęŠ€å¤§å­ø'),
(89044, 'https://ror.org/04xhcbj83', 'en', 0, 'https://ror.org/04xhcbj83 Department of the Environment and Energy'),
(89045, 'https://ror.org/04xk4mv14', 'en', 0, 'https://ror.org/04xk4mv14 Institute of Agro Environmental and Forest Biology'),
(89046, 'https://ror.org/04xmhss10', 'no_lang_code', 0, 'https://ror.org/04xmhss10 FMC Technologies (Norway)'),
(89047, 'https://ror.org/04xnm9a92', 'en', 1, 'https://ror.org/04xnm9a92 The Russian Presidential Academy of National Economy and Public Administration Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ нароГного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ при ŠŸŃ€ŠµŠ·ŠøŠ“енте Российской ФеГерации'),
(89048, 'https://ror.org/04xr9a612', 'en', 1, 'https://ror.org/04xr9a612 Pennsylvania Academy of Science'),
(89049, 'https://ror.org/04xsz1294', 'en', 1, 'https://ror.org/04xsz1294 International Retinal Research Foundation'),
(89050, 'https://ror.org/04xtbyj71', 'en', 1, 'https://ror.org/04xtbyj71 Madhya Pradesh Council of Science and Technology'),
(89051, 'https://ror.org/04xw2rs58', 'en', 0, 'https://ror.org/04xw2rs58 Shaanxi Tumor Hospital'),
(89052, 'https://ror.org/04xy45965', 'no_lang_code', 1, 'https://ror.org/04xy45965 Tongji Hospital'),
(89053, 'https://ror.org/04xz38214', 'en', 1, 'https://ror.org/04xz38214 Joint Quantum Institute'),
(89054, 'https://ror.org/04y34yk39', 'en', 1, 'https://ror.org/04y34yk39 Ryazan State Radio Engineering University Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ раГиотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(89055, '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'),
(89056, 'https://ror.org/04y7ajp38', 'en', 1, 'https://ror.org/04y7ajp38 St. Paul''s Hospital ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ„œģšøģ„±ėŖØė³‘ģ›'),
(89057, 'https://ror.org/04y8met08', 'nl', 1, 'https://ror.org/04y8met08 Dutch Brain Foundation Hersenstichting'),
(89058, 'https://ror.org/04y9v0932', 'en', 0, 'https://ror.org/04y9v0932 Argosy University'),
(89059, 'https://ror.org/04ya7ky81', 'no_lang_code', 0, 'https://ror.org/04ya7ky81 Anacor Pharmaceuticals (United States)'),
(89060, 'https://ror.org/04yadhf25', 'en', 0, 'https://ror.org/04yadhf25 United Nations Environment Programme'),
(89061, 'https://ror.org/04ybc6178', 'no_lang_code', 0, 'https://ror.org/04ybc6178 CGIAR'),
(89062, 'https://ror.org/04ycngs67', 'en', 1, 'https://ror.org/04ycngs67 Pueblo of Laguna'),
(89063, 'https://ror.org/04ydrgv17', 'en', 0, 'https://ror.org/04ydrgv17 American Society for Bone and Mineral Research'),
(89064, 'https://ror.org/04ydzn715', 'en', 1, 'https://ror.org/04ydzn715 Pharmacy Research UK'),
(89065, 'https://ror.org/04yfckj62', 'en', 1, 'https://ror.org/04yfckj62 Operation Wallacea'),
(89066, 'https://ror.org/04yj19q41', 'no_lang_code', 1, 'https://ror.org/04yj19q41 Huadong Sanatorium åŽäøœē–—å…»é™¢'),
(89067, 'https://ror.org/04yjy8y74', 'en', 1, 'https://ror.org/04yjy8y74 GCE Lab School'),
(89068, 'https://ror.org/04ym5ed21', 'pt', 1, 'https://ror.org/04ym5ed21 CĆ¢mara Municipal de Almada'),
(89069, 'https://ror.org/04ymy2f27', 'no_lang_code', 1, 'https://ror.org/04ymy2f27 Mathematical Sciences Publishers (United States)'),
(89070, 'https://ror.org/04ymz0q33', 'en', 1, 'https://ror.org/04ymz0q33 Hunan University of Science and Engineering ę¹–å—ē§‘ęŠ€å­¦é™¢'),
(89071, 'https://ror.org/04yn6kj97', 'en', 1, 'https://ror.org/04yn6kj97 Imam Khomeini Marine Science University دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† دریایی Ų§Ł…Ų§Ł… Ų®Ł…ŪŒŁ†ŪŒ'),
(89072, 'https://ror.org/04yn72m09', 'en', 1, 'https://ror.org/04yn72m09 Perron Institute for Neurological and Translational Science'),
(89073, 'https://ror.org/04yns5a36', 'no_lang_code', 1, 'https://ror.org/04yns5a36 Esteve (Spain)'),
(89074, 'https://ror.org/04ypnrn45', 'en', 1, 'https://ror.org/04ypnrn45 Australian National Fabrication Facility'),
(89075, 'https://ror.org/04ypx4p84', 'fr', 1, 'https://ror.org/04ypx4p84 Institut SupƩrieur des Biotechnologies de Paris'),
(89076, 'https://ror.org/04yrfkb83', 'no_lang_code', 1, 'https://ror.org/04yrfkb83 Staples (United States)'),
(89077, 'https://ror.org/04yrmhg32', 'en', 1, 'https://ror.org/04yrmhg32 National Centre for the Performing Arts 国家大剧院'),
(89078, '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'),
(89079, 'https://ror.org/04ysqja07', 'en', 1, 'https://ror.org/04ysqja07 Random Walk Imaging');
INSERT INTO `rors` VALUES
(89080, 'https://ror.org/04yv4ct35', 'en', 1, 'https://ror.org/04yv4ct35 British Society of Prosthodontics'),
(89081, 'https://ror.org/04yvjg468', 'en', 1, 'https://ror.org/04yvjg468 National Library of Australia'),
(89082, 'https://ror.org/04yw47259', 'en', 0, 'https://ror.org/04yw47259 Macmurray College'),
(89083, 'https://ror.org/04yxemn98', 'en', 1, 'https://ror.org/04yxemn98 Calouste Gulbenkian Foundation Fundação Calouste Gulbenkian'),
(89084, 'https://ror.org/04yyy0z32', 'pl', 1, 'https://ror.org/04yyy0z32 Międzyleski Szpital Specjalistyczny w Warszawie'),
(89085, 'https://ror.org/04yz0nm53', 'en', 1, 'https://ror.org/04yz0nm53 Health Systems Research Institute'),
(89086, 'https://ror.org/04yzh9160', 'en', 1, 'https://ror.org/04yzh9160 Kids'' Cancer Project'),
(89087, 'https://ror.org/04z02dz33', 'en', 1, 'https://ror.org/04z02dz33 Giles W. and Elise G. Mead Foundation'),
(89088, 'https://ror.org/04z0s0n10', 'de', 1, 'https://ror.org/04z0s0n10 Ministerium für Soziales, Integration und Gleichstellung des Landes Mecklenburg-Vorpommern'),
(89089, 'https://ror.org/04z2gtc77', 'en', 1, 'https://ror.org/04z2gtc77 United States India Educational Foundation'),
(89090, 'https://ror.org/04z3map19', 'en', 1, 'https://ror.org/04z3map19 National Administration of Surveying, Mapping and Geoinformation of China å›½å®¶ęµ‹ē»˜åœ°ē†äæ”ęÆå±€äø»ē«™'),
(89091, 'https://ror.org/04z43eq15', 'no_lang_code', 1, 'https://ror.org/04z43eq15 Calabazas Creek Research (United States)'),
(89092, 'https://ror.org/04z4wmb81', 'en', 1, 'https://ror.org/04z4wmb81 North China University of Science and Technology åŽåŒ—ē†å·„å¤§å­¦'),
(89093, 'https://ror.org/04z50eg91', 'en', 1, 'https://ror.org/04z50eg91 European Stroke Organisation'),
(89094, 'https://ror.org/04z55f009', 'no_lang_code', 1, 'https://ror.org/04z55f009 Combustion Science & Engineering (United States)'),
(89095, 'https://ror.org/04z5hhb71', 'fr', 1, 'https://ror.org/04z5hhb71 Institut des Corps Gras'),
(89096, 'https://ror.org/04z8v6e48', 'en', 0, 'https://ror.org/04z8v6e48 Sheffield Teaching Hospital'),
(89097, 'https://ror.org/04z9rrc30', 'no_lang_code', 1, 'https://ror.org/04z9rrc30 Cerus (United States)'),
(89098, 'https://ror.org/04zcbk583', 'en', 1, 'https://ror.org/04zcbk583 Purple Mountain Laboratories ē½‘ē»œé€šäæ”äøŽå®‰å…Øē“«é‡‘å±±å®žéŖŒå®¤'),
(89099, 'https://ror.org/04zdpf597', 'en', 1, 'https://ror.org/04zdpf597 Investigative Reporters and Editors'),
(89100, 'https://ror.org/04zepk655', 'en', 1, 'https://ror.org/04zepk655 Qom University of Technology'),
(89101, 'https://ror.org/04zkdcw61', 'en', 1, 'https://ror.org/04zkdcw61 Agricultural Biotechnology Research Center, Academia Sinica äø­å¤®ē ”ē©¶é™¢č¾²ę„­ē”Ÿē‰©ē§‘ęŠ€ē ”ē©¶äø­åæƒ'),
(89102, 'https://ror.org/04zn6xq74', 'en', 1, 'https://ror.org/04zn6xq74 Huaihua University ę€€åŒ–å­¦é™¢'),
(89103, 'https://ror.org/04zn72g03', 'en', 1, 'https://ror.org/04zn72g03 Stavanger University Hospital'),
(89104, 'https://ror.org/04znkdb25', 'en', 1, 'https://ror.org/04znkdb25 Flax Council Of Canada'),
(89105, 'https://ror.org/04zp96367', 'en', 1, 'https://ror.org/04zp96367 Bethlehem Griffiths Research Foundation'),
(89106, 'https://ror.org/04zr4fy40', 'no_lang_code', 1, 'https://ror.org/04zr4fy40 GreenLight Biosciences (United States)'),
(89107, 'https://ror.org/04zs36046', 'en', 1, 'https://ror.org/04zs36046 Sardar Swaran Singh National Institute of Bio-Energy'),
(89108, 'https://ror.org/04zsc7626', 'no_lang_code', 0, 'https://ror.org/04zsc7626 SP Processum (Sweden)'),
(89109, 'https://ror.org/04zv9g259', 'en', 1, 'https://ror.org/04zv9g259 Marine Alliance for Science and Technology for Scotland'),
(89110, 'https://ror.org/04zvqhj72', 'pl', 1, 'https://ror.org/04zvqhj72 Wojskowy Instytut Medyczny'),
(89111, 'https://ror.org/04zvr0529', 'en', 0, 'https://ror.org/04zvr0529 University of Pittsburgh School of Medicine'),
(89112, 'https://ror.org/04zyakw81', 'en', 1, 'https://ror.org/04zyakw81 Mineralogical Society of America'),
(89113, 'https://ror.org/050103r16', 'en', 1, 'https://ror.org/050103r16 CDC Foundation'),
(89114, 'https://ror.org/05035d657', 'no_lang_code', 1, 'https://ror.org/05035d657 Zafgen (United States)'),
(89115, 'https://ror.org/0504fet81', 'no_lang_code', 1, 'https://ror.org/0504fet81 KM-RoBoTa'),
(89116, 'https://ror.org/050519n85', 'en', 1, 'https://ror.org/050519n85 Postharvest Technology Innovation Center ąøØąø¹ąø™ąø¢ą¹Œąø™ąø§ąø±ąø•ąøąø£ąø£ąø”ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø«ąø„ąø±ąø‡ąøąø²ąø£ą¹€ąøą¹‡ąøšą¹€ąøąøµą¹ˆąø¢ąø§'),
(89117, 'https://ror.org/0505pmp86', 'en', 1, 'https://ror.org/0505pmp86 Osteoarthritis Research Society International'),
(89118, 'https://ror.org/05067kh62', 'no_lang_code', 0, 'https://ror.org/05067kh62 Iveco (Switzerland)'),
(89119, 'https://ror.org/050723s13', 'no_lang_code', 0, 'https://ror.org/050723s13 YD Global Life Science (South Korea) ģ™€ģ“ė””ģƒėŖ…ź³¼ķ•™'),
(89120, 'https://ror.org/0507dv852', 'en', 0, 'https://ror.org/0507dv852 Long Island University Brooklyn'),
(89121, 'https://ror.org/05084ev39', 'no_lang_code', 0, 'https://ror.org/05084ev39 Linde Material Handling (Germany)'),
(89122, 'https://ror.org/0508ez360', 'no_lang_code', 0, 'https://ror.org/0508ez360 MSC Software (United Kingdom)'),
(89123, 'https://ror.org/0508jbe38', 'no_lang_code', 1, 'https://ror.org/0508jbe38 Prayon (Belgium)'),
(89124, 'https://ror.org/0508jvq27', 'en', 1, 'https://ror.org/0508jvq27 Nano-Convergence Foundation'),
(89125, 'https://ror.org/0508kjn56', 'en', 1, 'https://ror.org/0508kjn56 Society for Archaeological Sciences'),
(89126, 'https://ror.org/0508vn378', 'en', 1, 'https://ror.org/0508vn378 Center for Climate and Resilience Research Centro de Ciencia del Clima y la Resiliencia'),
(89127, 'https://ror.org/050927w19', 'en', 0, 'https://ror.org/050927w19 Mercer University'),
(89128, 'https://ror.org/050agvb10', 'en', 1, 'https://ror.org/050agvb10 Yuncheng Central Hospital ē‰ˆęƒę‰€ęœ‰ čæåŸŽåø‚äø­åæƒåŒ»é™¢'),
(89129, 'https://ror.org/050awhq57', 'en', 1, 'https://ror.org/050awhq57 Maine Department of Inland Fisheries and Wildlife'),
(89130, 'https://ror.org/050dcex74', 'en', 1, 'https://ror.org/050dcex74 Scranton Area Foundation'),
(89131, 'https://ror.org/050draa26', 'no_lang_code', 1, 'https://ror.org/050draa26 NRG Oncology'),
(89132, 'https://ror.org/050fhx250', 'en', 1, 'https://ror.org/050fhx250 Children''s Healthcare of Atlanta'),
(89133, 'https://ror.org/050hygt04', 'en', 1, 'https://ror.org/050hygt04 University Network of Excellence in Nuclear Engineering'),
(89134, 'https://ror.org/050kded90', 'en', 1, 'https://ror.org/050kded90 Ministry of Minority Affairs'),
(89135, 'https://ror.org/050m4q971', 'en', 1, 'https://ror.org/050m4q971 Liberty Mutual Research Institute for Safety'),
(89136, 'https://ror.org/050p9zb50', 'en', 1, 'https://ror.org/050p9zb50 Ministry of Social Affairs and Health Social- och hƤlsovƄrdsministeriet sosiaali- ja terveysministeriƶ'),
(89137, 'https://ror.org/050q60w23', 'en', 1, 'https://ror.org/050q60w23 Povolzhskiy State University of Telecommunications and Informatics'),
(89138, 'https://ror.org/050r9n375', 'no_lang_code', 0, 'https://ror.org/050r9n375 OriGene Technologies (United States)'),
(89139, 'https://ror.org/050rx4p59', 'en', 1, 'https://ror.org/050rx4p59 South African National AIDS Council'),
(89140, 'https://ror.org/050ssa348', 'no_lang_code', 0, 'https://ror.org/050ssa348 Cavendish University Zambi'),
(89141, 'https://ror.org/050tqnp89', 'no_lang_code', 1, 'https://ror.org/050tqnp89 Kaggle'),
(89142, 'https://ror.org/050v4jr11', 'de', 1, 'https://ror.org/050v4jr11 Head Genuit Stiftung'),
(89143, 'https://ror.org/050vetk63', 'en', 1, 'https://ror.org/050vetk63 New Zealand Federation of Graduate Women'),
(89144, 'https://ror.org/050wmgs87', 'en', 1, 'https://ror.org/050wmgs87 National Book Foundation'),
(89145, 'https://ror.org/050xp5d36', 'it', 1, 'https://ror.org/050xp5d36 Civil Protection Department Dipartimento della Protezione Civile'),
(89146, 'https://ror.org/0510grb31', 'en', 0, 'https://ror.org/0510grb31 Miryang National University'),
(89147, 'https://ror.org/0510j8x25', 'de', 1, 'https://ror.org/0510j8x25 Bundesministerium für Nachhaltigkeit und Tourismus, Federal Ministry of Sustainability and Tourism'),
(89148, 'https://ror.org/0513pp416', 'en', 1, 'https://ror.org/0513pp416 Barts Charity'),
(89149, 'https://ror.org/05188mw55', 'en', 1, 'https://ror.org/05188mw55 Japan Medical Association ę—„ęœ¬åŒ»åø«ä¼š'),
(89150, 'https://ror.org/0519pkb25', 'en', 0, 'https://ror.org/0519pkb25 Kaiser Permanente Division of Research'),
(89151, 'https://ror.org/051ax8v50', 'en', 1, 'https://ror.org/051ax8v50 Rambhai Barni Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø£ąø³ą¹„ąøžąøžąø£ąø£ąø“ąøµ'),
(89152, 'https://ror.org/051bjph87', 'en', 1, 'https://ror.org/051bjph87 Dr. Jeffrey Thomas Stroke Shield Foundation'),
(89153, 'https://ror.org/051c2tp06', 'en', 1, 'https://ror.org/051c2tp06 Bryant & Stratton College'),
(89154, 'https://ror.org/051d90518', 'en', 1, 'https://ror.org/051d90518 Wine and Food Foundation of Texas'),
(89155, 'https://ror.org/051fmzw52', 'en', 0, 'https://ror.org/051fmzw52 Argosy University'),
(89156, 'https://ror.org/051hckb40', 'fr', 1, 'https://ror.org/051hckb40 Ɖcole Nationale d''Agriculture de MeknĆØs المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للفلاحة ŲØŁ…ŁƒŁ†Ų§Ų³'),
(89157, 'https://ror.org/051j2nd61', 'en', 0, 'https://ror.org/051j2nd61 Head of The Unit of Foodborne Zoonoses and Veterinary Epidemiology'),
(89158, 'https://ror.org/051k00p03', 'en', 1, 'https://ror.org/051k00p03 Taiyuan Normal University å¤ŖåŽŸåøˆčŒƒå­¦é™¢'),
(89159, 'https://ror.org/051mkm072', 'en', 0, 'https://ror.org/051mkm072 St. Nicholas Hospital'),
(89160, 'https://ror.org/051mkwn17', 'en', 1, 'https://ror.org/051mkwn17 World Islamic Sciences and Education University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(89161, 'https://ror.org/051n2dc24', 'en', 1, 'https://ror.org/051n2dc24 National Nuclear Laboratory'),
(89162, 'https://ror.org/051pbs608', 'en', 1, 'https://ror.org/051pbs608 Ministry of Environment and Tourism'),
(89163, 'https://ror.org/051pzdg24', 'es', 1, 'https://ror.org/051pzdg24 Sanatorio Otamendi y Miroli'),
(89164, 'https://ror.org/051q24644', 'no_lang_code', 0, 'https://ror.org/051q24644 Terumo Medical (United States)'),
(89165, 'https://ror.org/051qrk490', 'en', 0, 'https://ror.org/051qrk490 Oxford University Museum of Natural History'),
(89166, 'https://ror.org/051qwcj72', 'en', 1, 'https://ror.org/051qwcj72 Qingdao Agricultural University é’å²›å†œäøšå¤§å­¦'),
(89167, 'https://ror.org/051snsd81', 'en', 1, 'https://ror.org/051snsd81 Icelandic Heart Association'),
(89168, 'https://ror.org/051w29240', 'en', 0, 'https://ror.org/051w29240 Nh State Department of Health and Human Sers'),
(89169, 'https://ror.org/051wksk64', 'en', 0, 'https://ror.org/051wksk64 Novosibirsk State Academy of Architecture and Art'),
(89170, 'https://ror.org/051wvvb55', 'en', 1, 'https://ror.org/051wvvb55 Federal Institute of Industrial Research Oshodi'),
(89171, 'https://ror.org/051xbsb80', 'en', 1, 'https://ror.org/051xbsb80 Gulf of Mexico Alliance'),
(89172, 'https://ror.org/051xvcg79', 'en', 1, 'https://ror.org/051xvcg79 Danish Maritime Fund Den Danske Maritime Fond'),
(89173, 'https://ror.org/051ztas29', 'en', 0, 'https://ror.org/051ztas29 Film University'),
(89174, 'https://ror.org/0521ydf07', 'no_lang_code', 0, 'https://ror.org/0521ydf07 Esko (Germany)'),
(89175, 'https://ror.org/0523w6477', 'en', 1, 'https://ror.org/0523w6477 Veer Surendra Sai Medical College and Hospital'),
(89176, 'https://ror.org/0524wfr80', 'en', 0, 'https://ror.org/0524wfr80 Iwate College of Nursing å²©ę‰‹ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(89177, 'https://ror.org/05267d168', 'en', 1, 'https://ror.org/05267d168 Max-Planck-POSTECH Center for Complex Phase Material ė§‰ģŠ¤ķ”Œėž‘ķ¬ ķ•œźµ­ / ķ¬ģŠ¤ķ… ģ—°źµ¬ģ†Œ'),
(89178, 'https://ror.org/0527yg379', 'no_lang_code', 0, 'https://ror.org/0527yg379 Celgene (United States)'),
(89179, 'https://ror.org/05291fa13', 'en', 1, 'https://ror.org/05291fa13 SpinalCure Australia'),
(89180, 'https://ror.org/052a29317', 'en', 1, 'https://ror.org/052a29317 Maine Cancer Foundation'),
(89181, 'https://ror.org/052a85g69', 'en', 0, 'https://ror.org/052a85g69 St. John''s College'),
(89182, 'https://ror.org/052ajzp09', 'en', 1, 'https://ror.org/052ajzp09 Breast Cancer Research Trust'),
(89183, 'https://ror.org/052b8a564', 'en', 1, 'https://ror.org/052b8a564 Amsterdam health & technology institute'),
(89184, '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'),
(89185, 'https://ror.org/052cyyv97', 'en', 0, 'https://ror.org/052cyyv97 Institute of Health Sciences 偄康科学研究所'),
(89186, 'https://ror.org/052gw5984', 'en', 1, 'https://ror.org/052gw5984 Devon & Exeter Institution'),
(89187, 'https://ror.org/052hp3s90', 'en', 1, 'https://ror.org/052hp3s90 Economic History Association'),
(89188, 'https://ror.org/052mq0r90', 'en', 1, 'https://ror.org/052mq0r90 Government Communications Headquarters'),
(89189, 'https://ror.org/052ndvg69', 'en', 1, 'https://ror.org/052ndvg69 Indian Institute of Information Technology Senapati, Manipur'),
(89190, 'https://ror.org/052nj8f19', 'en', 1, 'https://ror.org/052nj8f19 Institute of Medicinal Plant Development čÆē”Øę¤ē‰©ē ”ē©¶ę‰€'),
(89191, 'https://ror.org/052p8vb75', 'en', 1, 'https://ror.org/052p8vb75 Policy Innovation and Co-ordination Office'),
(89192, 'https://ror.org/052prhs50', 'en', 1, 'https://ror.org/052prhs50 Sofya Teknik Üniversitesi Technical University of Sofia Технически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Š”Š¾Ń„ŠøŃ'),
(89193, 'https://ror.org/052r2q311', 'en', 0, 'https://ror.org/052r2q311 Texas Tech University Health Sciences Center'),
(89194, 'https://ror.org/052r67908', 'en', 0, 'https://ror.org/052r67908 Experimental Therapeutics Centre'),
(89195, 'https://ror.org/052sd7022', 'en', 1, 'https://ror.org/052sd7022 Society for Music Theory'),
(89196, 'https://ror.org/052smz949', 'en', 1, 'https://ror.org/052smz949 Cocoa Research Institute of Ghana'),
(89197, 'https://ror.org/052y0j663', 'en', 1, 'https://ror.org/052y0j663 Society for Industrial and Applied Mathematics'),
(89198, 'https://ror.org/052z2q786', 'pt', 1, 'https://ror.org/052z2q786 Universidade do Extremo Sul Catarinense Université de l''extrême sud de santa catarina'),
(89199, 'https://ror.org/053061267', 'en', 1, 'https://ror.org/053061267 Primary Health Care Institute'),
(89200, 'https://ror.org/053151j41', 'no_lang_code', 1, 'https://ror.org/053151j41 Aptose Biosciences (United States)'),
(89201, 'https://ror.org/0531xpr36', 'no_lang_code', 1, 'https://ror.org/0531xpr36 Computas (Norway)'),
(89202, 'https://ror.org/0531yb032', 'no_lang_code', 1, 'https://ror.org/0531yb032 Bulgarian Biodiversity Foundation Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š¤Š¾Š½Š“Š°Ń†ŠøŃ Биоразнообразие'),
(89203, 'https://ror.org/0532s5p48', 'en', 1, 'https://ror.org/0532s5p48 Spanish Society of Hematology and Hemotherapy'),
(89204, 'https://ror.org/0532wke85', 'no_lang_code', 0, 'https://ror.org/0532wke85 Chemtura (Canada)'),
(89205, 'https://ror.org/053336823', 'en', 1, 'https://ror.org/053336823 Riddet Institute'),
(89206, 'https://ror.org/0533nh149', 'en', 1, 'https://ror.org/0533nh149 The Foundling Museum'),
(89207, 'https://ror.org/0533xhs39', 'en', 1, 'https://ror.org/0533xhs39 European Underground Research Infrastructure for Disposal of nuclear waste in a Clay Environment'),
(89208, 'https://ror.org/05350h943', 'en', 0, 'https://ror.org/05350h943 Center of Advanced European Studies and Research Forschungszentrum caesar'),
(89209, 'https://ror.org/0535brc05', 'en', 1, 'https://ror.org/0535brc05 Kentucky Valley Educational Cooperative'),
(89210, 'https://ror.org/0535hbe81', 'en', 1, 'https://ror.org/0535hbe81 Ishibashi Foundation ēŸ³ę©‹č²”å›£'),
(89211, 'https://ror.org/053896994', 'en', 1, 'https://ror.org/053896994 Artsadmin'),
(89212, 'https://ror.org/053ax8j41', 'en', 1, 'https://ror.org/053ax8j41 Ankang University 安康学院'),
(89213, 'https://ror.org/053bcgk41', 'en', 1, 'https://ror.org/053bcgk41 Advanced Mental Health Care'),
(89214, 'https://ror.org/053e7we70', 'en', 1, 'https://ror.org/053e7we70 International Zinc Association'),
(89215, 'https://ror.org/053ee9k66', 'en', 1, 'https://ror.org/053ee9k66 Japan Epilepsy Research Foundation ć¦ć‚“ć‹ć‚“ę²»ē™‚ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(89216, 'https://ror.org/053ejc545', 'en', 1, 'https://ror.org/053ejc545 Douglas Foundation'),
(89217, 'https://ror.org/053j18m56', 'en', 1, 'https://ror.org/053j18m56 Honor Frost Foundation'),
(89218, 'https://ror.org/053kr4v45', 'no_lang_code', 1, 'https://ror.org/053kr4v45 Puma Biotechnology (United States)'),
(89219, 'https://ror.org/053m0aq28', 'en', 1, 'https://ror.org/053m0aq28 Swedish Association of Local Authorities and Regions'),
(89220, 'https://ror.org/053mh5539', 'no_lang_code', 0, 'https://ror.org/053mh5539 Humigen'),
(89221, 'https://ror.org/053mvwx19', 'en', 1, 'https://ror.org/053mvwx19 Tempus Public Foundation'),
(89222, 'https://ror.org/053n2g124', 'no_lang_code', 1, 'https://ror.org/053n2g124 BG Consulting Engineers (Switzerland) BG Ingenieure und Berater BG IngƩnieurs Conseils'),
(89223, 'https://ror.org/053ne5n46', 'no_lang_code', 0, 'https://ror.org/053ne5n46 Dow Corning (United States)'),
(89224, 'https://ror.org/053p3yv46', 'en', 1, 'https://ror.org/053p3yv46 Salman Farsi University of Kazerun دانؓگاه سلمان فارسی Ś©Ų§Ų²Ų±ŁˆŁ†'),
(89225, 'https://ror.org/053pqtj30', 'en', 1, 'https://ror.org/053pqtj30 MIB Agents'),
(89226, 'https://ror.org/053pwty57', 'en', 0, 'https://ror.org/053pwty57 Voronezh State University of Architecture and Civil Engineering'),
(89227, 'https://ror.org/053q19p30', 'en', 1, 'https://ror.org/053q19p30 Canadian Sphagnum Peat Moss Association'),
(89228, 'https://ror.org/053qy4437', 'en', 1, 'https://ror.org/053qy4437 Beijing Friendship Hospital åŒ—äŗ¬å‹č°ŠåŒ»é™¢'),
(89229, 'https://ror.org/053tmcn30', 'en', 1, 'https://ror.org/053tmcn30 MIT-Harvard Center for Ultracold Atoms'),
(89230, 'https://ror.org/053v53919', 'en', 1, 'https://ror.org/053v53919 Australian Genome Research Facility'),
(89231, 'https://ror.org/053vdtz38', 'en', 1, 'https://ror.org/053vdtz38 Virginia Transportation Research Council'),
(89232, 'https://ror.org/054089030', 'en', 1, 'https://ror.org/054089030 Access Alliance Multicultural Health and Community Services'),
(89233, 'https://ror.org/05422p832', 'no_lang_code', 0, 'https://ror.org/05422p832 Seagen (United States)'),
(89234, 'https://ror.org/0542et832', 'en', 1, 'https://ror.org/0542et832 British Horseracing Authority'),
(89235, 'https://ror.org/0543j5e78', 'en', 1, 'https://ror.org/0543j5e78 Voronezh State University Воронежский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(89236, 'https://ror.org/0543q7s13', 'en', 1, 'https://ror.org/0543q7s13 Science and Technology on Surface Physics and Chemistry Laboratory č”Øé¢ē‰©ē†äøŽåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(89237, 'https://ror.org/0544gqy38', 'en', 0, 'https://ror.org/0544gqy38 Department of Natural Resources'),
(89238, 'https://ror.org/0546cwv32', 'en', 1, 'https://ror.org/0546cwv32 Society for Cardiothoracic Surgery in Great Britain & Ireland'),
(89239, 'https://ror.org/0546v5182', 'fr', 0, 'https://ror.org/0546v5182'),
(89240, 'https://ror.org/0547dck29', 'no_lang_code', 0, 'https://ror.org/0547dck29 Shire (United Kingdom)'),
(89241, 'https://ror.org/0548gnr76', 'en', 1, 'https://ror.org/0548gnr76 Cardiac Children''s Foundation Taiwan'),
(89242, 'https://ror.org/0549qrd02', 'en', 1, 'https://ror.org/0549qrd02 Pakistan Association of Cognitive Therapists'),
(89243, 'https://ror.org/054bwgf62', 'no_lang_code', 1, 'https://ror.org/054bwgf62 PDI (United States)'),
(89244, 'https://ror.org/054etdq36', 'en', 1, 'https://ror.org/054etdq36 EGU HV Laboratory'),
(89245, 'https://ror.org/054f2wp19', 'no_lang_code', 1, 'https://ror.org/054f2wp19 Sarepta Therapeutics (United States)'),
(89246, 'https://ror.org/054g76q14', 'en', 1, 'https://ror.org/054g76q14 Pacific Disaster Center'),
(89247, 'https://ror.org/054gnsn02', 'en', 1, 'https://ror.org/054gnsn02 Zambia Catholic University'),
(89248, 'https://ror.org/054gqc795', 'no_lang_code', 1, 'https://ror.org/054gqc795 Cybernetica (Estonia)'),
(89249, 'https://ror.org/054j4ex16', 'no_lang_code', 1, 'https://ror.org/054j4ex16 Satellite Healthcare (United States)'),
(89250, 'https://ror.org/054jyh162', 'en', 1, 'https://ror.org/054jyh162 Richard and Ethel Herzfeld Foundation'),
(89251, 'https://ror.org/054nr9p58', 'no_lang_code', 1, 'https://ror.org/054nr9p58 Snap-on (United States)'),
(89252, 'https://ror.org/054pkye94', 'en', 1, 'https://ror.org/054pkye94 Ministry of Health, Nutrition and Indigenous Medicine'),
(89253, 'https://ror.org/054psm803', 'en', 1, 'https://ror.org/054psm803 Sri Sivasubramaniya Nadar College of Engineering ą¤¶ą„ą¤°ą„€ ą¤¶ą¤æą¤µą¤øą„ą¤¬ą„ą¤°ą¤®ą¤£ą„ą¤Æ नादर ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą¤æą¤‚ą¤—'),
(89254, 'https://ror.org/054qsv864', 'en', 1, 'https://ror.org/054qsv864 British Society of Colposcopy and Cervical Pathology'),
(89255, 'https://ror.org/054stgg72', 'en', 1, 'https://ror.org/054stgg72 Czech Society for Ornithology'),
(89256, 'https://ror.org/054t10v53', 'en', 1, 'https://ror.org/054t10v53 Divine Word University'),
(89257, 'https://ror.org/054tfvs49', 'en', 1, 'https://ror.org/054tfvs49 University of Health and Allied Sciences'),
(89258, 'https://ror.org/054tsxk98', 'en', 1, 'https://ror.org/054tsxk98 Bonneagar Iompair Ɖireann Transport Infrastructure Ireland'),
(89259, 'https://ror.org/054twjr71', 'en', 0, 'https://ror.org/054twjr71 Midwest Palliative and Hospice Care Center'),
(89260, 'https://ror.org/054vvj456', 'en', 1, 'https://ror.org/054vvj456 Saint Augustine''s University'),
(89261, 'https://ror.org/054x1kd82', 'en', 1, 'https://ror.org/054x1kd82 Guangxi Academy of Sciences 广脿科学院'),
(89262, 'https://ror.org/054yt8091', 'en', 1, 'https://ror.org/054yt8091 Nanjing Science and Technology Commission å—äŗ¬åø‚ē§‘ęŠ€å±€'),
(89263, 'https://ror.org/0550cfw62', 'no_lang_code', 1, 'https://ror.org/0550cfw62 Kimball International (United States)'),
(89264, 'https://ror.org/0550zmx90', 'de', 1, 'https://ror.org/0550zmx90 Deutsche Telekom Stiftung'),
(89265, 'https://ror.org/05524hb64', 'en', 0, 'https://ror.org/05524hb64 Extreme Science and Engineering Discovery Environment'),
(89266, 'https://ror.org/0552r4b12', 'en', 1, 'https://ror.org/0552r4b12 Sylvester Comprehensive Cancer Center'),
(89267, 'https://ror.org/05532r870', 'en', 0, 'https://ror.org/05532r870 CongrĆØs National Luso Canadien Portuguese Canadian National Congress'),
(89268, 'https://ror.org/0554dyz25', 'en', 1, 'https://ror.org/0554dyz25 Wildlife Institute of India ą“µąµˆąµ½ą“”ąµą“²ąµˆą“«ąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“‡ą“Øąµą“¤ąµą“Æ'),
(89269, 'https://ror.org/0555q8a52', 'no_lang_code', 1, 'https://ror.org/0555q8a52 Advanced Cell Diagnostics (United States)'),
(89270, 'https://ror.org/0556gk990', 'en', 1, 'https://ror.org/0556gk990 Touro University California'),
(89271, 'https://ror.org/0556qrc19', 'en', 1, 'https://ror.org/0556qrc19 Carnegie Museum of Natural History Museo Carnegie de Historia Natural'),
(89272, 'https://ror.org/055a4nj91', 'en', 1, 'https://ror.org/055a4nj91 Mystic Seaport'),
(89273, 'https://ror.org/055bn0x53', 'es', 1, 'https://ror.org/055bn0x53 Servicio Murciano de Salud'),
(89274, 'https://ror.org/055eqn678', 'en', 1, 'https://ror.org/055eqn678 Mt. Sinai Health Care Foundation'),
(89275, 'https://ror.org/055fzrq49', 'en', 1, 'https://ror.org/055fzrq49 Sardar Patel Renewable Energy Research Institute ąŖøą«ąŖŖą«ąŖ°ą«‡ąŖ°ą«€'),
(89276, 'https://ror.org/055hae320', 'en', 1, 'https://ror.org/055hae320 United States Maritime Administration'),
(89277, 'https://ror.org/055he9s77', 'no_lang_code', 1, 'https://ror.org/055he9s77 Systems and Technology Research (United States)'),
(89278, 'https://ror.org/055hxf735', 'no_lang_code', 0, 'https://ror.org/055hxf735 Bull (Germany)'),
(89279, 'https://ror.org/055mhsv54', 'no_lang_code', 1, 'https://ror.org/055mhsv54 Jazz Pharmaceuticals (Ireland)'),
(89280, 'https://ror.org/055mqk127', 'en', 1, 'https://ror.org/055mqk127 Foundation for Baltic and East European Studies'),
(89281, 'https://ror.org/055n68305', 'pt', 1, 'https://ror.org/055n68305 Instituto Nacional do CĆ¢ncer'),
(89282, 'https://ror.org/055p8z543', 'en', 1, 'https://ror.org/055p8z543 African Mathematics Millennium Science Initiative'),
(89283, 'https://ror.org/055rjs771', 'en', 1, 'https://ror.org/055rjs771 Institute of Microbial Technology ą¤øą„‚ą¤•ą„ą¤·ą„ą¤®ą¤œą„€ą¤µ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(89284, 'https://ror.org/055rxf725', 'en', 1, 'https://ror.org/055rxf725 South Florida Water Management District'),
(89285, 'https://ror.org/055rxtm94', 'en', 1, 'https://ror.org/055rxtm94 Yongcheng Vocational College ę°øåŸŽčŒäøšå­¦é™¢'),
(89286, 'https://ror.org/055sz1p84', 'en', 1, 'https://ror.org/055sz1p84 Society for Pediatric Urology'),
(89287, 'https://ror.org/055zd7d59', 'en', 1, 'https://ror.org/055zd7d59 Korea Brain Research Institute ķ•œźµ­ė‡Œģ—°źµ¬ģ›'),
(89288, 'https://ror.org/0560grr96', 'no_lang_code', 0, 'https://ror.org/0560grr96 Sigma-Aldrich (Canada)'),
(89289, 'https://ror.org/0560vbt41', 'en', 1, 'https://ror.org/0560vbt41 Ariake College of Education and the Arts ęœ‰ę˜Žę•™č‚²čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(89290, 'https://ror.org/056206b04', 'en', 1, 'https://ror.org/056206b04 Human Sciences Research Council'),
(89291, 'https://ror.org/05630j976', 'en', 1, 'https://ror.org/05630j976 Bay Area Black United Fund'),
(89292, 'https://ror.org/0563w1497', 'en', 1, 'https://ror.org/0563w1497 The Nature Conservancy'),
(89293, 'https://ror.org/0565bwx98', 'no_lang_code', 1, 'https://ror.org/0565bwx98 Nion (United States)'),
(89294, 'https://ror.org/0567j1v21', 'no_lang_code', 1, 'https://ror.org/0567j1v21 Ivantis (United States)'),
(89295, 'https://ror.org/0569k1630', 'en', 1, 'https://ror.org/0569k1630 Beijing Shijitan Hospital åŒ—äŗ¬äø–ēŗŖå›åŒ»é™¢'),
(89296, 'https://ror.org/056bn1c87', 'en', 0, 'https://ror.org/056bn1c87 Art Institute of Indianapolis'),
(89297, 'https://ror.org/056cwr036', 'en', 1, 'https://ror.org/056cwr036 Health Holland'),
(89298, 'https://ror.org/056dchh05', 'no_lang_code', 0, 'https://ror.org/056dchh05 SOFCpower (Italy)'),
(89299, 'https://ror.org/056eg3t49', 'en', 1, 'https://ror.org/056eg3t49 Otsuka Toshimi Scholarship Foundation'),
(89300, 'https://ror.org/056h71x09', 'en', 1, 'https://ror.org/056h71x09 Institute for Bioengineering of Catalonia L’Institut de Bioenginyeria de Catalunya'),
(89301, 'https://ror.org/056htkj86', 'en', 1, 'https://ror.org/056htkj86 Health Foundation for Western & Central New York'),
(89302, 'https://ror.org/056hzt889', 'en', 1, 'https://ror.org/056hzt889 Institut für Quantenoptik und Quanteninformation Institute for Quantum Optics and Quantum Information Innsbruck'),
(89303, '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'),
(89304, 'https://ror.org/056mrsz54', 'en', 1, 'https://ror.org/056mrsz54 Schmidt Institute of Physics of the Earth Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики Земли им. Šž.Š®. ШмиГта Российской акаГемии наук'),
(89305, 'https://ror.org/056pard58', 'no_lang_code', 0, 'https://ror.org/056pard58 Pratt & Whitney Canada (Canada)'),
(89306, 'https://ror.org/056pdk382', 'no_lang_code', 1, 'https://ror.org/056pdk382 Integral Molecular (United States)'),
(89307, 'https://ror.org/056qngw23', 'en', 1, 'https://ror.org/056qngw23 Imagination Institute'),
(89308, 'https://ror.org/056s65p46', 'pt', 1, 'https://ror.org/056s65p46 Federal University of Ouro Preto Universidade Federal de Ouro Preto'),
(89309, 'https://ror.org/056swcy54', 'fr', 1, 'https://ror.org/056swcy54 Centre for Ethnology and Comparative Sociology Laboratoire d''ethnologie et de sociologie comparative'),
(89310, 'https://ror.org/056szk247', 'en', 1, 'https://ror.org/056szk247 Jishou University 吉首大学'),
(89311, 'https://ror.org/056v0a906', 'en', 1, 'https://ror.org/056v0a906 Islamic Azad University, Bonab Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد بناب'),
(89312, 'https://ror.org/056v6wn83', 'no_lang_code', 1, 'https://ror.org/056v6wn83 Asana Biosciences (United States)'),
(89313, 'https://ror.org/056w0wx18', 'pt', 0, 'https://ror.org/056w0wx18 Escola Superior ArtĆ­stica do Porto'),
(89314, 'https://ror.org/056w8wj16', 'no_lang_code', 0, 'https://ror.org/056w8wj16 Nextel (Spain)'),
(89315, 'https://ror.org/056yyyw24', 'en', 1, 'https://ror.org/056yyyw24 King Edward Memorial Hospital Research Centre'),
(89316, 'https://ror.org/056znrx72', 'en', 1, 'https://ror.org/056znrx72 Institute of Microchemical Technology'),
(89317, 'https://ror.org/0570naj48', 'en', 1, 'https://ror.org/0570naj48 Concord Consortium'),
(89318, 'https://ror.org/0571zhe53', 'en', 1, 'https://ror.org/0571zhe53 Lean Enterprise Institute Polska'),
(89319, 'https://ror.org/0572q5a45', 'no_lang_code', 1, 'https://ror.org/0572q5a45 Karger Publishers (Switzerland)'),
(89320, 'https://ror.org/057315g56', 'no_lang_code', 1, 'https://ror.org/057315g56 Salesforce (United States)'),
(89321, 'https://ror.org/0574der91', 'en', 1, 'https://ror.org/0574der91 Guangdong University of Education å¹æäøœē¬¬äŗŒåøˆčŒƒå­¦é™¢'),
(89322, 'https://ror.org/0575pmh72', 'no_lang_code', 1, 'https://ror.org/0575pmh72 Orkuveita ReykjavĆ­kur ReykjavĆ­k Energy (Iceland)'),
(89323, 'https://ror.org/05787my06', 'en', 1, 'https://ror.org/05787my06 Beijing Obstetrics and Gynecology Hospital'),
(89324, 'https://ror.org/0578de476', 'en', 0, 'https://ror.org/0578de476 Christchurch Hospital'),
(89325, 'https://ror.org/057bp1234', 'en', 0, 'https://ror.org/057bp1234 Massachusetts College of Pharmacy and Health Sciences'),
(89326, 'https://ror.org/057dhjp36', 'en', 1, 'https://ror.org/057dhjp36 International Association for Psychoanalytic Self Psychology'),
(89327, 'https://ror.org/057exk444', 'en', 0, 'https://ror.org/057exk444 St. James''s Laundry Centre'),
(89328, 'https://ror.org/057f25d66', 'no_lang_code', 1, 'https://ror.org/057f25d66 Sinovac Biotech åŒ—äŗ¬ē§‘å…“ē”Ÿē‰©åˆ¶å“ęœ‰é™å…¬åø'),
(89329, 'https://ror.org/057g9bh47', 'en', 1, 'https://ror.org/057g9bh47 Lviv State University of Life Safety Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Державний Університет Безпеки Š–ŠøŃ‚Ń‚Ń”Š“Ń–ŃŠ»ŃŒŠ½Š¾ŃŃ‚Ń–'),
(89330, 'https://ror.org/057h5sf90', 'en', 1, 'https://ror.org/057h5sf90 Children''s Cancer and Leukaemia Group'),
(89331, 'https://ror.org/057mn3690', 'en', 1, 'https://ror.org/057mn3690 National Chemical Laboratory ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ रासायनिक ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤³ą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą¤¾ą¤øą¤¾ą¤Æą¤Øą¤æą¤•ą„€ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾ ą“Øą“¾ą“·ą“£ąµ½ ą“•ąµ†ą“®ą“æą“•ąµą“•ąµ½ ą“²ą“¾ą“¬ą“±ą“Ÿąµą“Ÿą“±ą“æ'),
(89332, 'https://ror.org/057q6n778', 'no_lang_code', 1, 'https://ror.org/057q6n778 Dongguk University ė™źµ­ėŒ€ķ•™źµ'),
(89333, 'https://ror.org/057tkkm33', 'en', 1, 'https://ror.org/057tkkm33 Shanghai Clinical Research Center'),
(89334, 'https://ror.org/057w6my84', 'no_lang_code', 0, 'https://ror.org/057w6my84 FEI Company (United States)'),
(89335, 'https://ror.org/057x6za15', 'en', 1, 'https://ror.org/057x6za15 University of Carthage UniversitĆ© de carthage Ų¬Ų§Ł…Ų¹Ų© قرطاج'),
(89336, 'https://ror.org/057xtrt18', 'en', 1, 'https://ror.org/057xtrt18 Kurume University 久留米大学'),
(89337, 'https://ror.org/05803vc71', 'en', 1, 'https://ror.org/05803vc71 State Key Laboratory of Chemical Engineering åŒ–å­¦å·„ēØ‹č”åˆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(89338, 'https://ror.org/0580rm578', 'en', 1, 'https://ror.org/0580rm578 Polytechnic University of Queretaro Universidad PolitƩcnica de QuerƩtaro'),
(89339, 'https://ror.org/0583r7t67', 'en', 1, 'https://ror.org/0583r7t67 Public Risk Management Association'),
(89340, 'https://ror.org/0585bz443', 'en', 1, 'https://ror.org/0585bz443 PLA Navy Submarine Academy ęµ·å†›ę½œč‰‡å­¦é™¢'),
(89341, 'https://ror.org/0585fsj26', 'en', 1, 'https://ror.org/0585fsj26 Gauss Centre for Supercomputing'),
(89342, 'https://ror.org/0588cre06', 'en', 1, 'https://ror.org/0588cre06 Chirurgie Plastique Erni Erni Plastic Surgery'),
(89343, 'https://ror.org/058b5q664', 'en', 1, 'https://ror.org/058b5q664 Arts & Health Alliance'),
(89344, 'https://ror.org/058by8c55', 'en', 1, 'https://ror.org/058by8c55 Construction Industry Institute'),
(89345, 'https://ror.org/058fa4536', 'en', 0, 'https://ror.org/058fa4536 MGIMO University'),
(89346, 'https://ror.org/058gp5587', 'en', 1, 'https://ror.org/058gp5587 State Council of Higher Education for Virginia'),
(89347, 'https://ror.org/058h0c235', 'en', 1, 'https://ror.org/058h0c235 John & Marcia Goldman Foundation'),
(89348, 'https://ror.org/058h74p94', 'en', 1, 'https://ror.org/058h74p94 Nagasaki University 長哎大学'),
(89349, 'https://ror.org/058hp2r81', 'no_lang_code', 0, 'https://ror.org/058hp2r81 Advanced Marine Systems (United States)'),
(89350, 'https://ror.org/058kq2778', 'en', 0, 'https://ror.org/058kq2778 South University'),
(89351, 'https://ror.org/058kzsd48', 'en', 1, 'https://ror.org/058kzsd48 Paderborn University UniversitƤt Paderborn'),
(89352, 'https://ror.org/058m0h984', 'en', 0, 'https://ror.org/058m0h984 Shanghai Pudong New Area Public Interest Hospital äøŠęµ·åø‚ęµ¦äøœę–°åŒŗå…¬åˆ©åŒ»é™¢'),
(89353, 'https://ror.org/058mdpy54', 'en', 1, 'https://ror.org/058mdpy54 Conchologists of America'),
(89354, 'https://ror.org/058mseb02', 'en', 0, 'https://ror.org/058mseb02 China National Centre for Food Safety Risk Assessment'),
(89355, 'https://ror.org/058nrs650', 'en', 1, 'https://ror.org/058nrs650 Institute on Membrane Technology Istituto per la Tecnologia delle Membrane'),
(89356, 'https://ror.org/058q8kz50', 'no_lang_code', 1, 'https://ror.org/058q8kz50 CTI Engineering (Japan) ę Ŗå¼ä¼šē¤¾å»ŗčØ­ęŠ€č”“ē ”ē©¶ę‰€'),
(89357, 'https://ror.org/058sw7g55', 'no_lang_code', 1, 'https://ror.org/058sw7g55 Marinus Pharmaceuticals (United States)'),
(89358, 'https://ror.org/058thb585', 'id', 0, 'https://ror.org/058thb585 Agency for Assessment and Implementation Technology Badan Pengkajian dan Penerapan Teknologi'),
(89359, 'https://ror.org/058trsp78', 'en', 1, 'https://ror.org/058trsp78 Canadian Aeronautics and Space Institute'),
(89360, 'https://ror.org/058y0nn10', 'en', 1, 'https://ror.org/058y0nn10 Wan Fang Hospital č‡ŗåŒ—åø‚ē«‹č¬čŠ³é†«é™¢'),
(89361, 'https://ror.org/0590dnz19', 'en', 1, 'https://ror.org/0590dnz19 Fu Wai Hospital äø­å›½åŒ»å­¦ē§‘å­¦é™¢é˜œå¤–åæƒč”€ē®”ē—…åŒ»é™¢'),
(89362, 'https://ror.org/0591pcw70', 'en', 1, 'https://ror.org/0591pcw70 Montana Institute on Ecosystems'),
(89363, 'https://ror.org/0594wn226', 'en', 1, 'https://ror.org/0594wn226 Denver Foundation'),
(89364, 'https://ror.org/05969hq41', 'no_lang_code', 0, 'https://ror.org/05969hq41 Bard (Ireland)'),
(89365, 'https://ror.org/0597re059', 'en', 1, 'https://ror.org/0597re059 Jewish National Fund'),
(89366, 'https://ror.org/0599kt698', 'en', 1, 'https://ror.org/0599kt698 Association of Professors of Gynecology and Obstetrics'),
(89367, 'https://ror.org/059a9e323', 'no_lang_code', 1, 'https://ror.org/059a9e323 Viavi Solutions (United States)'),
(89368, 'https://ror.org/059a9nj82', 'en', 1, 'https://ror.org/059a9nj82 National Council for Behavioral Health'),
(89369, 'https://ror.org/059c0tw71', 'en', 1, 'https://ror.org/059c0tw71 MB Research Laboratories'),
(89370, 'https://ror.org/059e0mb30', 'no_lang_code', 1, 'https://ror.org/059e0mb30 Cameco (Germany)'),
(89371, 'https://ror.org/059g7w694', 'no_lang_code', 1, 'https://ror.org/059g7w694 Indlas VIMHANS Hospital'),
(89372, 'https://ror.org/059mkb986', 'en', 1, 'https://ror.org/059mkb986 The Lucy Faithfull Foundation'),
(89373, 'https://ror.org/059pch876', 'no_lang_code', 1, 'https://ror.org/059pch876 Aureo (Japan)'),
(89374, 'https://ror.org/059pwer52', 'en', 1, 'https://ror.org/059pwer52 Chronic Liver Disease Foundation'),
(89375, 'https://ror.org/059qned12', 'no_lang_code', 0, 'https://ror.org/059qned12 Promedior (United States)'),
(89376, 'https://ror.org/059qzrv09', 'no_lang_code', 0, 'https://ror.org/059qzrv09 Hologic Gen-Probe Incorporated (United States)'),
(89377, 'https://ror.org/059r6hg65', 'no_lang_code', 1, 'https://ror.org/059r6hg65 Agnitron Technology (United States)'),
(89378, 'https://ror.org/059rs3f80', 'en', 1, 'https://ror.org/059rs3f80 Carnegie Dunfermline Trust'),
(89379, 'https://ror.org/059saq786', 'no_lang_code', 1, 'https://ror.org/059saq786 Teikoku Pharma (United States)'),
(89380, 'https://ror.org/059tzjg04', 'en', 0, 'https://ror.org/059tzjg04 Brain Plasticity Institute'),
(89381, 'https://ror.org/059zzdv42', 'en', 1, 'https://ror.org/059zzdv42 African Society for Laboratory Medicine'),
(89382, 'https://ror.org/05a1ky058', 'en', 1, 'https://ror.org/05a1ky058 Facility Guidelines Institute'),
(89383, 'https://ror.org/05a2bhn71', 'en', 1, 'https://ror.org/05a2bhn71 Innosuisse - Schweizerische Agentur für Innovationsfƶrderung Innosuisse – Swiss Innovation Agency'),
(89384, 'https://ror.org/05a33s425', 'en', 1, 'https://ror.org/05a33s425 Kentucky Department for Public Health'),
(89385, 'https://ror.org/05a5s1z53', 'no_lang_code', 1, 'https://ror.org/05a5s1z53 Alimentary Health (Ireland)'),
(89386, 'https://ror.org/05a6fcq16', 'en', 0, 'https://ror.org/05a6fcq16 Gauhati Medical College and Hospital ą¦—ą§Œą¦¹ą¦¾ą¦Ÿą§€ ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(89387, 'https://ror.org/05ab5dj79', 'en', 1, 'https://ror.org/05ab5dj79 College of Agriculture, Food and Rural Enterprise'),
(89388, 'https://ror.org/05abewn82', 'en', 1, 'https://ror.org/05abewn82 Tumori Foundation'),
(89389, 'https://ror.org/05adj5455', 'es', 1, 'https://ror.org/05adj5455 Instituto Nacional de Pediatria'),
(89390, 'https://ror.org/05adkta90', 'en', 1, 'https://ror.org/05adkta90 Arthur L. and Elaine V. Johnson Foundation'),
(89391, 'https://ror.org/05ae5js31', 'en', 1, 'https://ror.org/05ae5js31 Arolsen Archives - International Center on Nazi Persecution'),
(89392, 'https://ror.org/05ag50972', 'en', 1, 'https://ror.org/05ag50972 Dowager Countess Eleanor Peel Trust'),
(89393, 'https://ror.org/05ahavf04', 'en', 1, 'https://ror.org/05ahavf04 GHR Foundation'),
(89394, 'https://ror.org/05ar38p21', 'en', 1, 'https://ror.org/05ar38p21 Amur State University of Humanities and Pedagogy ŠŠ¼ŃƒŃ€ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(89395, 'https://ror.org/05ardyr66', 'en', 1, 'https://ror.org/05ardyr66 Canadian Council on International Law Conseil canadien de droit international'),
(89396, 'https://ror.org/05ascfq76', 'en', 1, 'https://ror.org/05ascfq76 Tides Foundation'),
(89397, 'https://ror.org/05aspc753', 'en', 1, 'https://ror.org/05aspc753 Instituto di Ricerche Farmacologiche Mario Negri Mario Negri Institute for Pharmacological Research'),
(89398, 'https://ror.org/05asvgp75', 'en', 1, 'https://ror.org/05asvgp75 Centro Internacional de la Papa International Potato Center'),
(89399, '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" Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ інформації, безпеки і права ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії правових наук Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(89400, 'https://ror.org/05atez085', 'en', 1, 'https://ror.org/05atez085 Israel Institute for Biological Research معهد Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„ للابحاث Ų§Ł„ŲØŁŠŁˆŁ„ŁˆŲ¬ŁŠŲ©'),
(89401, 'https://ror.org/05av6m066', 'en', 1, 'https://ror.org/05av6m066 United States Marine Corps'),
(89402, 'https://ror.org/05avgjx06', 'en', 1, 'https://ror.org/05avgjx06 Black AIDS Institute'),
(89403, 'https://ror.org/05avjmd23', 'en', 1, 'https://ror.org/05avjmd23 Cornelia de Lange Syndrome Foundation'),
(89404, 'https://ror.org/05avqph76', 'en', 1, 'https://ror.org/05avqph76 Children''s Hospital Association'),
(89405, 'https://ror.org/05awt9555', 'en', 0, 'https://ror.org/05awt9555 Riga Teacher Training and Educational Management Academy'),
(89406, 'https://ror.org/05ayy0v22', 'no_lang_code', 1, 'https://ror.org/05ayy0v22 Boston Fusion (United States)'),
(89407, 'https://ror.org/05azc9n12', 'no_lang_code', 1, 'https://ror.org/05azc9n12 Ribon Therapeutics (United States)'),
(89408, 'https://ror.org/05azpw996', 'es', 1, 'https://ror.org/05azpw996 Universidad Privada del Este'),
(89409, 'https://ror.org/05b170984', 'en', 1, 'https://ror.org/05b170984 Institut für Biomedizinische und Pharmazeutische Forschung Institute for Biomedical and Pharmaceutical Research'),
(89410, 'https://ror.org/05b1nw684', 'en', 1, 'https://ror.org/05b1nw684 Burdett Trust for Nursing'),
(89411, 'https://ror.org/05b2wbh21', 'en', 1, 'https://ror.org/05b2wbh21 National Beef Cattle Industrial Technology System'),
(89412, 'https://ror.org/05b3hqn14', 'en', 1, 'https://ror.org/05b3hqn14 North York General Hospital'),
(89413, 'https://ror.org/05b3yy015', 'en', 1, 'https://ror.org/05b3yy015 Social Change and Development'),
(89414, 'https://ror.org/05b50et39', 'en', 0, 'https://ror.org/05b50et39 Argosy University'),
(89415, 'https://ror.org/05b5kg436', 'pt', 1, 'https://ror.org/05b5kg436 University Alto Vale do Rio do Peixe'),
(89416, 'https://ror.org/05b6cq467', 'en', 1, 'https://ror.org/05b6cq467 Baily Thomas Charitable Fund'),
(89417, 'https://ror.org/05bcm4543', 'no_lang_code', 1, 'https://ror.org/05bcm4543 TransDigm Group (United States)'),
(89418, 'https://ror.org/05bdaxb75', 'en', 1, 'https://ror.org/05bdaxb75 Philadelphia Area Center for History of Science'),
(89419, 'https://ror.org/05bdz9q12', 'en', 1, 'https://ror.org/05bdz9q12 Fama College Kolegji Fama'),
(89420, 'https://ror.org/05bfhsy55', 'en', 0, 'https://ror.org/05bfhsy55 Apor Vilmos Catholic College Apor Vilmos Katolikus Főiskola'),
(89421, 'https://ror.org/05bgf9v38', 'en', 1, 'https://ror.org/05bgf9v38 Business Finland'),
(89422, 'https://ror.org/05bgr8018', 'fr', 1, 'https://ror.org/05bgr8018 Gymnase de Nyon'),
(89423, 'https://ror.org/05bnz7c87', 'en', 1, 'https://ror.org/05bnz7c87 Tall Timbers Research Station and Land Conservancy'),
(89424, 'https://ror.org/05bsp4630', 'no_lang_code', 1, 'https://ror.org/05bsp4630 Unison (United Kingdom)'),
(89425, 'https://ror.org/05bvxq496', 'no_lang_code', 1, 'https://ror.org/05bvxq496 Guru Ghasidas Vishwavidyalaya ą¤—ą„ą¤°ą„‚ ą¤˜ą¤¾ą¤øą„€ą¤¦ą¤¾ą¤ø ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(89426, 'https://ror.org/05bwv7f37', 'en', 1, 'https://ror.org/05bwv7f37 Istituto Italiano di Telemedicina Italian Institute of Telemedicine'),
(89427, 'https://ror.org/05bxpks10', 'en', 0, 'https://ror.org/05bxpks10 European University of Applied Sciences EuropƤische Fachhochschule'),
(89428, 'https://ror.org/05by9mg64', 'en', 1, 'https://ror.org/05by9mg64 Xiangnan University ę¹˜å—å­¦é™¢'),
(89429, 'https://ror.org/05c0g2426', 'en', 1, 'https://ror.org/05c0g2426 National Institute for Nanotechnology'),
(89430, 'https://ror.org/05c5y5q11', 'en', 1, 'https://ror.org/05c5y5q11 Agri Food and Biosciences Institute'),
(89431, 'https://ror.org/05c5ybx96', 'en', 0, 'https://ror.org/05c5ybx96 Ivanovo State Textile Academy'),
(89432, 'https://ror.org/05c71z159', 'en', 0, 'https://ror.org/05c71z159 Texas A&M Health Science Center'),
(89433, 'https://ror.org/05c74bq69', 'en', 1, 'https://ror.org/05c74bq69 Shenzhen Second People''s Hospital'),
(89434, 'https://ror.org/05c7bzd52', 'en', 1, 'https://ror.org/05c7bzd52 Australian Pain Society'),
(89435, 'https://ror.org/05c7q3x69', 'en', 1, 'https://ror.org/05c7q3x69 Judith and Jean Pape Adams Charitable Foundation'),
(89436, 'https://ror.org/05cb1k848', 'en', 1, 'https://ror.org/05cb1k848 HƓpital Johns-Hopkins Johns Hopkins Hospital'),
(89437, 'https://ror.org/05cb4b451', 'no_lang_code', 0, 'https://ror.org/05cb4b451 ACEA Biosciences (United States)'),
(89438, 'https://ror.org/05cbf1t36', 'en', 1, 'https://ror.org/05cbf1t36 Korean Diabetes Association'),
(89439, 'https://ror.org/05ccjkv07', 'no_lang_code', 0, 'https://ror.org/05ccjkv07 CeraMem Corporation (United States)'),
(89440, 'https://ror.org/05ccjmp23', 'en', 1, 'https://ror.org/05ccjmp23 NIHR Birmingham Biomedical Research Centre'),
(89441, 'https://ror.org/05cdfgm80', 'no_lang_code', 1, 'https://ror.org/05cdfgm80 Shenyang Normal University 沈阳师范大学'),
(89442, 'https://ror.org/05cea9318', 'en', 1, 'https://ror.org/05cea9318 Randolph County School System'),
(89443, 'https://ror.org/05cekg904', 'en', 1, 'https://ror.org/05cekg904 Yunnan Environmental Protection Bureau äŗ‘å—ēœēŽÆå¢ƒäæęŠ¤åŽ…'),
(89444, 'https://ror.org/05cf2bt40', 'en', 1, 'https://ror.org/05cf2bt40 International Fine Particle Research Institute'),
(89445, 'https://ror.org/05cg4nt71', 'fr', 1, 'https://ror.org/05cg4nt71 Tour du Valat'),
(89446, 'https://ror.org/05ch0aw77', 'en', 1, 'https://ror.org/05ch0aw77 Texas Southern University'),
(89447, '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'),
(89448, 'https://ror.org/05cp39n75', 'no_lang_code', 1, 'https://ror.org/05cp39n75 Oxford Frozen Foods (Canada)'),
(89449, 'https://ror.org/05crnp253', 'nl', 1, 'https://ror.org/05crnp253 JKF Kinderfonds'),
(89450, 'https://ror.org/05csn2x06', 'en', 1, 'https://ror.org/05csn2x06 Nederlands Herseninstituut Netherlands Institute for Neuroscience'),
(89451, 'https://ror.org/05ctmmy43', 'pt', 1, 'https://ror.org/05ctmmy43 Universidade do Vale do Rio dos Sinos'),
(89452, 'https://ror.org/05cvqmv08', 'fr', 1, 'https://ror.org/05cvqmv08 BiodivERsA'),
(89453, 'https://ror.org/05cw39e32', 'en', 1, 'https://ror.org/05cw39e32 Museum of Chinese in America'),
(89454, 'https://ror.org/05cz76a40', 'en', 1, 'https://ror.org/05cz76a40 Association Canadienne d''Administrateurs de Recherche Universitaire Canadian Association of University Research Administrators'),
(89455, 'https://ror.org/05d2pc330', 'en', 1, 'https://ror.org/05d2pc330 Attorney-General''s Department Australia'),
(89456, 'https://ror.org/05d58hs71', 'es', 1, 'https://ror.org/05d58hs71 Universidad Tangamanga'),
(89457, 'https://ror.org/05d618r89', 'en', 1, 'https://ror.org/05d618r89 Epic Care'),
(89458, 'https://ror.org/05d88z031', 'en', 1, 'https://ror.org/05d88z031 Systemic Risk Centre'),
(89459, 'https://ror.org/05d8ft347', 'en', 1, 'https://ror.org/05d8ft347 Swim Across America'),
(89460, 'https://ror.org/05d907387', 'es', 1, 'https://ror.org/05d907387 Universidad Mundo Maya'),
(89461, 'https://ror.org/05dc72c53', 'en', 0, 'https://ror.org/05dc72c53 United Nations Office for Project Services'),
(89462, 'https://ror.org/05ddz3y46', 'en', 1, 'https://ror.org/05ddz3y46 Spina Bifida Association'),
(89463, 'https://ror.org/05dek7a71', 'en', 1, 'https://ror.org/05dek7a71 Santiago Library System'),
(89464, 'https://ror.org/05dgwj702', 'en', 1, 'https://ror.org/05dgwj702 Wu Jieping Medical Foundation'),
(89465, 'https://ror.org/05dkdaa55', 'en', 1, 'https://ror.org/05dkdaa55 Ioffe Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. А.Ф. Š˜Š¾Ń„Ń„Šµ Российской акаГемии наук'),
(89466, 'https://ror.org/05dmr4w13', 'en', 1, 'https://ror.org/05dmr4w13 Sultan Ageng Tirtayasa University Universitas Sultan Ageng Tirtayasa'),
(89467, 'https://ror.org/05dn3py86', 'en', 0, 'https://ror.org/05dn3py86 Texas Tech University Health Sciences Center'),
(89468, 'https://ror.org/05dn5a810', 'en', 1, 'https://ror.org/05dn5a810 International Plant Nutrition Institute'),
(89469, 'https://ror.org/05dncws07', 'en', 0, 'https://ror.org/05dncws07 South Dakota Agricultural Heritage Museum'),
(89470, 'https://ror.org/05dnene97', 'en', 1, 'https://ror.org/05dnene97 Feinstein Institute for Medical Research'),
(89471, 'https://ror.org/05dphnt17', 'en', 1, 'https://ror.org/05dphnt17 Hidradenitis Suppurativa Foundation'),
(89472, 'https://ror.org/05dt4bt98', 'en', 1, 'https://ror.org/05dt4bt98 The Faraday Institution'),
(89473, 'https://ror.org/05dv2tv03', 'no_lang_code', 1, 'https://ror.org/05dv2tv03 Genetic Alliance UK (United Kingdom)'),
(89474, 'https://ror.org/05dv7fn73', 'en', 1, 'https://ror.org/05dv7fn73 Portland VA Research Foundation'),
(89475, 'https://ror.org/05dw0p167', 'en', 1, 'https://ror.org/05dw0p167 National Institute of Metrology äø­å›½č®”é‡ē§‘å­¦ē ”ē©¶é™¢'),
(89476, 'https://ror.org/05dwmjc88', 'en', 0, 'https://ror.org/05dwmjc88 Sungsan Hyodo Graduate School č–å±±å­å¤§å­øé™¢å¤§å­øę•Ž'),
(89477, 'https://ror.org/05dwv6530', 'no_lang_code', 1, 'https://ror.org/05dwv6530 Linz Center of Mechatronics (Austria)'),
(89478, 'https://ror.org/05dxwnm86', 'en', 1, 'https://ror.org/05dxwnm86 Foundation for Prader-Willi Research'),
(89479, 'https://ror.org/05dz27378', 'en', 1, 'https://ror.org/05dz27378 Norwegian Mapping Authority'),
(89480, 'https://ror.org/05dz6we97', 'en', 1, 'https://ror.org/05dz6we97 Artquest'),
(89481, 'https://ror.org/05e1ymz41', 'en', 0, 'https://ror.org/05e1ymz41 West Pomeranian Business School Zachodniopomorska Szkoła Biznesu w Szczecinie'),
(89482, 'https://ror.org/05e276m57', 'en', 1, 'https://ror.org/05e276m57 Paul M. Angell Family Foundation'),
(89483, 'https://ror.org/05e2f9085', 'en', 1, 'https://ror.org/05e2f9085 NSABP Foundation'),
(89484, 'https://ror.org/05e325b74', 'en', 1, 'https://ror.org/05e325b74 Manav Bharti University'),
(89485, 'https://ror.org/05e34ra63', 'no_lang_code', 1, 'https://ror.org/05e34ra63 Mizuho (Japan) ę Ŗå¼ä¼šē¤¾ćæćšć»ćƒ•ć‚£ćƒŠćƒ³ć‚·ćƒ£ćƒ«ć‚°ćƒ«ćƒ¼ćƒ—'),
(89486, 'https://ror.org/05e3seg28', 'no_lang_code', 1, 'https://ror.org/05e3seg28 Geomembrane Technologies (Canada)'),
(89487, 'https://ror.org/05e41x347', 'no_lang_code', 1, 'https://ror.org/05e41x347 MED-EL (Austria)'),
(89488, 'https://ror.org/05e4ge715', 'en', 0, 'https://ror.org/05e4ge715 Maimonides State Classical Academy Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ»Š°ŃŃŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени МаймониГа');
INSERT INTO `rors` VALUES
(89489, 'https://ror.org/05e6pjy56', 'en', 1, 'https://ror.org/05e6pjy56 Laureate Institute for Brain Research'),
(89490, 'https://ror.org/05e80bb92', 'en', 1, 'https://ror.org/05e80bb92 Institute of Mental Health and Hospital'),
(89491, 'https://ror.org/05e830h62', 'en', 1, 'https://ror.org/05e830h62 Institute of Physical Chemistry Instytut Chemii Fizycznej Polskiej Akademii Nauk'),
(89492, 'https://ror.org/05e9bbe04', 'no_lang_code', 1, 'https://ror.org/05e9bbe04 GEI Consultants'),
(89493, 'https://ror.org/05e9f5362', 'en', 1, 'https://ror.org/05e9f5362 Shanxi Agricultural University å±±č„æå†œäøšå¤§å­¦'),
(89494, 'https://ror.org/05eagxp18', 'es', 1, 'https://ror.org/05eagxp18 Unidad Nacional para la Gestión del Riesgo de Desastres'),
(89495, 'https://ror.org/05eatzc79', 'en', 1, 'https://ror.org/05eatzc79 Blue Cross and Blue Shield of Kansas City'),
(89496, 'https://ror.org/05ecdew94', 'en', 1, 'https://ror.org/05ecdew94 Institut Ontarien Ontario Brain Institute'),
(89497, 'https://ror.org/05ed6gd68', 'no_lang_code', 1, 'https://ror.org/05ed6gd68 Cerevel Therapeutics (United States)'),
(89498, 'https://ror.org/05edt5833', 'no_lang_code', 1, 'https://ror.org/05edt5833 aTyr Pharma (United States)'),
(89499, 'https://ror.org/05ee0rx84', 'en', 0, 'https://ror.org/05ee0rx84 Argosy University'),
(89500, 'https://ror.org/05ee7k487', 'en', 1, 'https://ror.org/05ee7k487 Coventry City Council'),
(89501, 'https://ror.org/05eebgw43', 'en', 1, 'https://ror.org/05eebgw43 Aromatic Plant Research Center'),
(89502, 'https://ror.org/05eerek96', 'en', 1, 'https://ror.org/05eerek96 Bureau Canadien de l''Ʃducation Internationale Canadian Bureau for International Education'),
(89503, 'https://ror.org/05efxhp13', 'no_lang_code', 1, 'https://ror.org/05efxhp13 TRM (United Kingdom)'),
(89504, 'https://ror.org/05ekp1k95', 'no_lang_code', 1, 'https://ror.org/05ekp1k95 Wƶrwag Pharma (Germany)'),
(89505, 'https://ror.org/05ep0vm61', 'en', 0, 'https://ror.org/05ep0vm61 National Center for Genome Resources'),
(89506, 'https://ror.org/05eq5fr57', 'en', 1, 'https://ror.org/05eq5fr57 International Educational Foundation'),
(89507, 'https://ror.org/05es8as59', 'en', 1, 'https://ror.org/05es8as59 Zhengzhou University of Industrial Technology éƒ‘å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(89508, 'https://ror.org/05esh5w42', 'en', 1, 'https://ror.org/05esh5w42 Central Salt and Marine Chemicals Research Institute'),
(89509, 'https://ror.org/05esm3b90', 'en', 0, 'https://ror.org/05esm3b90 Association Canadienne de l''Industrie des Plastiques Canadian Plastics Industry Association'),
(89510, 'https://ror.org/05esrfe27', 'tr', 1, 'https://ror.org/05esrfe27 İstanbul Kalkınma Ajansı'),
(89511, 'https://ror.org/05etm5g34', 'en', 1, 'https://ror.org/05etm5g34 Alberta Glycomics Centre'),
(89512, 'https://ror.org/05ewfm045', 'no_lang_code', 0, 'https://ror.org/05ewfm045 Farfield Group (United Kingdom)'),
(89513, 'https://ror.org/05ex5rg26', 'no_lang_code', 1, 'https://ror.org/05ex5rg26 Bang & Olufsen (Denmark)'),
(89514, 'https://ror.org/05exmmw78', 'no_lang_code', 1, 'https://ror.org/05exmmw78 Abiomed (United States)'),
(89515, 'https://ror.org/05ez53b31', 'en', 1, 'https://ror.org/05ez53b31 Glaucoma Research Foundation'),
(89516, 'https://ror.org/05ezsn819', 'en', 1, 'https://ror.org/05ezsn819 Shared Hierarchical Academic Research Computing Network'),
(89517, 'https://ror.org/05f1ftz34', 'en', 1, 'https://ror.org/05f1ftz34 Sandler Foundation'),
(89518, 'https://ror.org/05f23gs03', 'fr', 1, 'https://ror.org/05f23gs03 UniversitƩ franco-allemande'),
(89519, 'https://ror.org/05f24qn54', 'en', 0, 'https://ror.org/05f24qn54 United Nations Organization for Education, Science and Culture'),
(89520, 'https://ror.org/05f26j564', 'no_lang_code', 0, 'https://ror.org/05f26j564 PFI (Germany)'),
(89521, 'https://ror.org/05f28cg89', 'no_lang_code', 1, 'https://ror.org/05f28cg89 Ionic Liquids Technologies (Germany)'),
(89522, 'https://ror.org/05f2age66', 'en', 1, 'https://ror.org/05f2age66 National Research Institute of Animal Production'),
(89523, 'https://ror.org/05f2c9c32', 'no_lang_code', 0, 'https://ror.org/05f2c9c32 Gwent Electronic Materials (United Kingdom)'),
(89524, 'https://ror.org/05f48kz62', 'en', 0, 'https://ror.org/05f48kz62 Laval University Cancer Research Center'),
(89525, 'https://ror.org/05f5aj854', 'en', 1, 'https://ror.org/05f5aj854 International Union of Nutritional Sciences'),
(89526, 'https://ror.org/05f5dq276', 'en', 1, 'https://ror.org/05f5dq276 The Postal Museum'),
(89527, 'https://ror.org/05f5tv017', 'en', 0, 'https://ror.org/05f5tv017 Art Institute of California'),
(89528, 'https://ror.org/05f5zxm22', 'en', 1, 'https://ror.org/05f5zxm22 Florence Nightingale Foundation'),
(89529, 'https://ror.org/05f75kg76', 'en', 1, 'https://ror.org/05f75kg76 Canadian Water Network RĆ©seau canadien de l’eau'),
(89530, 'https://ror.org/05f8a4p63', 'en', 1, 'https://ror.org/05f8a4p63 Tamagawa University ēŽ‰å·å¤§å­¦'),
(89531, 'https://ror.org/05f9hgh77', 'no_lang_code', 1, 'https://ror.org/05f9hgh77 Entasis Therapeutics (United States)'),
(89532, 'https://ror.org/05fb60c26', 'en', 1, 'https://ror.org/05fb60c26 Farrell Family Foundation'),
(89533, 'https://ror.org/05fd4d895', 'en', 1, 'https://ror.org/05fd4d895 Tsimbazaza Zoo'),
(89534, 'https://ror.org/05fdb2817', 'en', 1, 'https://ror.org/05fdb2817 Royal Commission for the Exhibition of 1851'),
(89535, 'https://ror.org/05fdfws23', 'no_lang_code', 0, 'https://ror.org/05fdfws23 Swedish ICT Research (Sweden)'),
(89536, 'https://ror.org/05fdv7d34', 'en', 1, 'https://ror.org/05fdv7d34 Collaborative Innovation Center of Chemistry for Energy Materials'),
(89537, 'https://ror.org/05fdvx677', 'en', 1, 'https://ror.org/05fdvx677 Firland Foundation'),
(89538, 'https://ror.org/05fe3mw64', 'no_lang_code', 1, 'https://ror.org/05fe3mw64 Algaecytes (United Kingdom)'),
(89539, 'https://ror.org/05fep3933', 'en', 1, 'https://ror.org/05fep3933 Mangalore University ą¤®ą¤‚ą¤—ą¤²ą„Œą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤®ą¤‚ą¤—ą¤³ą„‚ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ಮಂಗಳೂರು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(89540, 'https://ror.org/05ff35k33', 'en', 1, 'https://ror.org/05ff35k33 Saskatchewan Pulse Growers'),
(89541, 'https://ror.org/05fgn4m77', 'en', 1, 'https://ror.org/05fgn4m77 Alpro Foundation'),
(89542, 'https://ror.org/05fhcgm49', 'en', 0, 'https://ror.org/05fhcgm49 Foundation Institute of Materials Science Stiftung Institut für Werkstofftechnik'),
(89543, 'https://ror.org/05fj6by70', 'en', 1, 'https://ror.org/05fj6by70 Hanse-Wissenschaftskolleg Institute for Advanced Study'),
(89544, 'https://ror.org/05fjs7w98', 'en', 1, 'https://ror.org/05fjs7w98 National Institute for Medical Research'),
(89545, 'https://ror.org/05fjyn938', 'en', 1, 'https://ror.org/05fjyn938 Global Biodiversity Information Facility'),
(89546, 'https://ror.org/05fkxeh29', 'en', 0, 'https://ror.org/05fkxeh29 HƓpital rƩgional de Sudbury Sudbury Regional Hospital'),
(89547, 'https://ror.org/05fn8qw23', 'no_lang_code', 1, 'https://ror.org/05fn8qw23 Seres Therapeutics (United States)'),
(89548, 'https://ror.org/05fnm6571', 'no_lang_code', 0, 'https://ror.org/05fnm6571 Femtolasers Produktions (Austria)'),
(89549, 'https://ror.org/05fnxgv12', 'en', 1, 'https://ror.org/05fnxgv12 GLA University'),
(89550, 'https://ror.org/05fqypv61', 'en', 1, 'https://ror.org/05fqypv61 Wilhelmina Children''s Hospital Wilhelmina Kinderziekenhuis'),
(89551, 'https://ror.org/05fr2p949', 'en', 1, 'https://ror.org/05fr2p949 Hinkley Center for Solid and Hazardous Waste Management'),
(89552, 'https://ror.org/05fsa3j22', 'nl', 1, 'https://ror.org/05fsa3j22 Vlaamse Liga tegen Kanker'),
(89553, 'https://ror.org/05fsym151', 'en', 1, 'https://ror.org/05fsym151 Tear Film & Ocular Surface Society'),
(89554, 'https://ror.org/05fxg9b69', 'en', 1, 'https://ror.org/05fxg9b69 African Economic Research Consortium'),
(89555, 'https://ror.org/05fzetd27', 'no_lang_code', 0, 'https://ror.org/05fzetd27 Ultra Electronics Holdings (United States)'),
(89556, 'https://ror.org/05g06bh89', 'en', 1, 'https://ror.org/05g06bh89 Holy Spirit University of Kaslik UniversitĆ© saint-esprit de kaslik Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ł‘ŁˆŲ­ القدس - Ų§Ł„ŁƒŲ³Ł„ŁŠŁƒ'),
(89557, 'https://ror.org/05g20h159', 'en', 1, 'https://ror.org/05g20h159 Tropical Biology Association'),
(89558, 'https://ror.org/05g2jq450', 'no_lang_code', 1, 'https://ror.org/05g2jq450 ČeskÔ Zbrojovka (Czechia)'),
(89559, 'https://ror.org/05g4bfa05', 'en', 1, 'https://ror.org/05g4bfa05 The Catholic University of Malawi'),
(89560, 'https://ror.org/05g4pdk37', 'en', 0, 'https://ror.org/05g4pdk37 Intermountain Health Care'),
(89561, 'https://ror.org/05g6n4k07', 'en', 1, 'https://ror.org/05g6n4k07 Odesa National University of Technology ŠžŠ“ŠµŃŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ пищевых технологий ŠžŠ“ŠµŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń харчових технологій, ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(89562, 'https://ror.org/05g8baj95', 'en', 1, 'https://ror.org/05g8baj95 Institute for Student Achievement'),
(89563, 'https://ror.org/05g99ca14', 'en', 0, 'https://ror.org/05g99ca14 Cook For Your Life'),
(89564, 'https://ror.org/05g9snv96', 'en', 1, 'https://ror.org/05g9snv96 Conrad N. Hilton Foundation'),
(89565, 'https://ror.org/05ge9vb05', 'en', 0, 'https://ror.org/05ge9vb05 Consultative Group on International Agricultural Research'),
(89566, 'https://ror.org/05gggje28', 'en', 1, 'https://ror.org/05gggje28 Archives and Records Association'),
(89567, 'https://ror.org/05ghs6f64', 'en', 1, 'https://ror.org/05ghs6f64 Institut et hƓpital neurologiques de montrƩal Montreal Neurological Institute and Hospital'),
(89568, 'https://ror.org/05ghxfg04', 'fr', 0, 'https://ror.org/05ghxfg04 HƓpital Tarnier-Cochin'),
(89569, 'https://ror.org/05gj07w56', 'en', 1, 'https://ror.org/05gj07w56 Department of Education of Zhejiang Province'),
(89570, 'https://ror.org/05gj50p33', 'en', 1, 'https://ror.org/05gj50p33 Rowland Foundation'),
(89571, 'https://ror.org/05gmfwq98', 'en', 0, 'https://ror.org/05gmfwq98 Samara State University of Architecture and Civil Engineering'),
(89572, 'https://ror.org/05grbyt82', 'en', 1, 'https://ror.org/05grbyt82 American Surgical Association'),
(89573, 'https://ror.org/05grey547', 'no_lang_code', 0, 'https://ror.org/05grey547 Hartmann & Braun (Germany)'),
(89574, 'https://ror.org/05gt72306', 'nl', 1, 'https://ror.org/05gt72306 Vereniging Samenwerkende Ouder- en Patiƫntenorganisaties'),
(89575, 'https://ror.org/05gt90n14', 'no_lang_code', 1, 'https://ror.org/05gt90n14 Sirtex (Australia)'),
(89576, 'https://ror.org/05gvzzm30', 'en', 1, 'https://ror.org/05gvzzm30 The Lane Libraries'),
(89577, 'https://ror.org/05gw2s374', 'no_lang_code', 0, 'https://ror.org/05gw2s374 Thalmic Labs (Canada)'),
(89578, 'https://ror.org/05gwbwn20', 'en', 0, 'https://ror.org/05gwbwn20 Kyoto University Museum äŗ¬éƒ½å¤§å­¦ē·åˆåšē‰©é¤Ø'),
(89579, 'https://ror.org/05gxnjj05', 'en', 1, 'https://ror.org/05gxnjj05 Council for Grants of the President of the Russian Federation Довет по грантам ŠŸŃ€ŠµŠ·ŠøŠ“ента Российской ФеГерации'),
(89580, 'https://ror.org/05gxzef39', 'en', 1, 'https://ror.org/05gxzef39 Foundation KiKa Stichting Kinderen Kankervrij'),
(89581, 'https://ror.org/05gy44g89', 'en', 0, 'https://ror.org/05gy44g89 Prevention Research Center'),
(89582, 'https://ror.org/05gyngk54', 'en', 1, 'https://ror.org/05gyngk54 Alberta Advanced Education'),
(89583, 'https://ror.org/05h2t6865', 'en', 1, 'https://ror.org/05h2t6865 Promotion and Mutual Aid Corporation for Private Schools of Japan ę—„ęœ¬ē§ē«‹å­¦ę ”ęŒÆčˆˆćƒ»å…±ęøˆäŗ‹ę„­å›£'),
(89584, 'https://ror.org/05h3p4983', 'en', 0, 'https://ror.org/05h3p4983 Iowa Western Foundation'),
(89585, 'https://ror.org/05h54z930', 'no_lang_code', 1, 'https://ror.org/05h54z930 AeroDynamic Solutions (United States)'),
(89586, 'https://ror.org/05h6np937', 'nl', 1, 'https://ror.org/05h6np937 OCON Orthopedische kliniek'),
(89587, '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'),
(89588, 'https://ror.org/05h9vj608', 'no_lang_code', 1, 'https://ror.org/05h9vj608 Imperial Brands (United Kingdom)'),
(89589, 'https://ror.org/05hag2y10', 'pt', 1, 'https://ror.org/05hag2y10 Federal University of Acre Universidade Federal do Acre'),
(89590, 'https://ror.org/05hd8nc86', 'en', 1, 'https://ror.org/05hd8nc86 Rick Hansen Foundation'),
(89591, 'https://ror.org/05hde1z07', 'en', 0, 'https://ror.org/05hde1z07 Wellcome Library'),
(89592, 'https://ror.org/05he43612', 'no_lang_code', 1, 'https://ror.org/05he43612 TE Connectivity (Switzerland)'),
(89593, 'https://ror.org/05hee4x70', 'en', 1, 'https://ror.org/05hee4x70 Veterinary Research Institute'),
(89594, 'https://ror.org/05hesyx60', 'fr', 1, 'https://ror.org/05hesyx60 Fondation Vaincre Alzheimer'),
(89595, 'https://ror.org/05hffq650', 'en', 1, 'https://ror.org/05hffq650 Massachusetts Lions Eye Research Fund'),
(89596, 'https://ror.org/05hgt1a34', 'en', 1, 'https://ror.org/05hgt1a34 Rockefeller Family Fund'),
(89597, 'https://ror.org/05hgy3t19', 'en', 1, 'https://ror.org/05hgy3t19 North London College'),
(89598, 'https://ror.org/05hhb3804', 'no_lang_code', 0, 'https://ror.org/05hhb3804 KCETLink'),
(89599, 'https://ror.org/05hhpdx12', 'en', 1, 'https://ror.org/05hhpdx12 Oxford Academic Health Science Network'),
(89600, 'https://ror.org/05hj3gh79', 'no_lang_code', 1, 'https://ror.org/05hj3gh79 Maruho (Japan) ćƒžćƒ«ćƒ›ę Ŗå¼ä¼šē¤¾'),
(89601, 'https://ror.org/05hjd9j98', 'no_lang_code', 0, 'https://ror.org/05hjd9j98 Protein Sciences (United States)'),
(89602, 'https://ror.org/05hkxne09', 'en', 1, 'https://ror.org/05hkxne09 Kermanshah University of Technology'),
(89603, 'https://ror.org/05hm9f429', 'en', 1, 'https://ror.org/05hm9f429 National Centre for Disease Informatics and Research ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą„‹ą¤— ą¤øą„‚ą¤šą¤Øą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ಕಾಯಿಲೆ ą²®ą²¾ą²¹ą²æą²¤ą²æą²Æą³ą²•ą³ą²¤ ą²®ą²¤ą³ą²¤ą³ ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(89604, 'https://ror.org/05hn3g777', 'no_lang_code', 1, 'https://ror.org/05hn3g777 Anhui Jiyuan Software å®‰å¾½ē»§čæœč½Æä»¶ęœ‰é™å…¬åø'),
(89605, 'https://ror.org/05hphhy26', 'en', 0, 'https://ror.org/05hphhy26 University of Central Asia'),
(89606, 'https://ror.org/05hpj3k77', 'en', 1, 'https://ror.org/05hpj3k77 Institute of Pesticides and Environmental Protection'),
(89607, 'https://ror.org/05hqpps66', 'en', 1, 'https://ror.org/05hqpps66 Screen Australia'),
(89608, 'https://ror.org/05hrp0b43', 'en', 1, 'https://ror.org/05hrp0b43 Northwest Louisiana Technical Community College'),
(89609, 'https://ror.org/05ht4p406', 'en', 0, 'https://ror.org/05ht4p406 Indiana University School of Medicine - Lafayette'),
(89610, 'https://ror.org/05hvw0333', 'en', 1, 'https://ror.org/05hvw0333 Mohammed Bin Rashid School of Government Ł„ŁƒŁ„ŁŠŲ© Ł…Ų­Ł…ŲÆ بن Ų±Ų§Ų“ŲÆ لل؄دارة Ų§Ł„Ų­ŁƒŁˆŁ…ŁŠŲ©'),
(89611, 'https://ror.org/05hw40m44', 'en', 1, 'https://ror.org/05hw40m44 Washington Center for Equitable Growth'),
(89612, 'https://ror.org/05hxv9903', 'en', 0, 'https://ror.org/05hxv9903 Carson Newman College'),
(89613, 'https://ror.org/05hy2kb37', 'no_lang_code', 1, 'https://ror.org/05hy2kb37 Organ Recovery Systems (United States)'),
(89614, 'https://ror.org/05hz4mv11', 'en', 1, 'https://ror.org/05hz4mv11 Banco de Portugal, Bank of Portugal'),
(89615, 'https://ror.org/05j4rd316', 'en', 1, 'https://ror.org/05j4rd316 Alaska Eskimo Whaling Commission'),
(89616, 'https://ror.org/05j5de504', 'en', 1, 'https://ror.org/05j5de504 Pingxiang University čä¹”å­¦é™¢'),
(89617, 'https://ror.org/05j5jkn24', 'no_lang_code', 1, 'https://ror.org/05j5jkn24 Knology'),
(89618, 'https://ror.org/05j5rbv93', 'no_lang_code', 1, 'https://ror.org/05j5rbv93 Foghorn Therapeutics (United States)'),
(89619, 'https://ror.org/05j6ybs54', 'en', 1, 'https://ror.org/05j6ybs54 Millennium Institute on Immunology and Immunotherapy'),
(89620, 'https://ror.org/05j8qnr48', 'en', 1, 'https://ror.org/05j8qnr48 Bundesamt für Naturschutz Federal Agency for Nature Conservation'),
(89621, 'https://ror.org/05j95n956', 'en', 1, 'https://ror.org/05j95n956 Richard and Susan Smith Family Foundation'),
(89622, 'https://ror.org/05j9tr079', 'en', 1, 'https://ror.org/05j9tr079 Barrett Hospital & HealthCare'),
(89623, 'https://ror.org/05ja08h10', 'en', 1, 'https://ror.org/05ja08h10 College of the Sequoias'),
(89624, 'https://ror.org/05jakwq38', 'no_lang_code', 0, 'https://ror.org/05jakwq38 EMD Millipore (United States)'),
(89625, 'https://ror.org/05janne25', 'en', 1, 'https://ror.org/05janne25 Society for Translational Oncology'),
(89626, 'https://ror.org/05jd5jm42', 'no_lang_code', 0, 'https://ror.org/05jd5jm42 Beckman Coulter (Australia)'),
(89627, 'https://ror.org/05jd9zn83', 'en', 0, 'https://ror.org/05jd9zn83 Crozer Chester Medical Center'),
(89628, 'https://ror.org/05jdd7q84', 'en', 1, 'https://ror.org/05jdd7q84 Metropolitan College ĪœĪ—Ī¤Ī”ĪŸĪ ĪŸĪ›Ī™Ī¤Ī™ĪšĪŸ ĪšĪŸĪ›Ī›Ī•Ī“Ī™ĪŸ'),
(89629, 'https://ror.org/05jfb3f51', 'de', 0, 'https://ror.org/05jfb3f51 Poliklinik für Kieferorthopädie'),
(89630, 'https://ror.org/05jfp8s87', 'en', 1, 'https://ror.org/05jfp8s87 Pediatric Dermatology Research Alliance'),
(89631, 'https://ror.org/05jh42p10', 'en', 1, 'https://ror.org/05jh42p10 Institute of Sports Medicine and Science å…¬ē›Šč²”å›£ę³•äŗŗć‚¹ćƒćƒ¼ćƒ„åŒ»ćƒ»ē§‘å­¦ē ”ē©¶ę‰€'),
(89632, 'https://ror.org/05jkk6v05', 'en', 1, 'https://ror.org/05jkk6v05 European Brain Council'),
(89633, 'https://ror.org/05jkpd189', 'nl', 1, 'https://ror.org/05jkpd189 Maag Lever Darm Stichting'),
(89634, 'https://ror.org/05jm14p78', 'en', 0, 'https://ror.org/05jm14p78 Zhejiang University Libraries System ęµ™ę±Ÿå¤§å­¦å›¾ä¹¦é¦†'),
(89635, 'https://ror.org/05jnms536', 'en', 1, 'https://ror.org/05jnms536 Social and Health Research Center'),
(89636, 'https://ror.org/05jnq7w45', 'no_lang_code', 1, 'https://ror.org/05jnq7w45 Heron Therapeutics (United States)'),
(89637, 'https://ror.org/05jqagv40', 'en', 1, 'https://ror.org/05jqagv40 L.E. Fletcher Technical Community College'),
(89638, 'https://ror.org/05jqhfh02', 'no_lang_code', 1, 'https://ror.org/05jqhfh02 Beam Therapeutics (United States)'),
(89639, 'https://ror.org/05jra8p04', 'en', 0, 'https://ror.org/05jra8p04 Mihail Kogălniceanu University of Iași'),
(89640, 'https://ror.org/05jraf368', 'en', 1, 'https://ror.org/05jraf368 Tatematsu Foundation å…¬ē›Šč²”å›£ę³•äŗŗē«‹ę¾č²”å›£'),
(89641, 'https://ror.org/05jrjgd04', 'en', 1, 'https://ror.org/05jrjgd04 Bavarian Research Alliance Bayerische Forschungsallianz'),
(89642, 'https://ror.org/05js82y61', 'no_lang_code', 1, 'https://ror.org/05js82y61 Kitasato Institute Hospital åŒ—é‡Œå¤§å­¦åŒ—é‡Œē ”ē©¶ę‰€ē—…é™¢'),
(89643, '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'),
(89644, 'https://ror.org/05jsqgv79', 'en', 1, 'https://ror.org/05jsqgv79 Water Institute of the Gulf'),
(89645, 'https://ror.org/05jte2q37', 'en', 1, 'https://ror.org/05jte2q37 Tata Institute of Social Sciences टाटा ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤øą„‹ą¤¶ą¤² ą¤øą¤¾ą¤Æą¤Øą„ą¤øą„‡ą¤ø टाटा ą¤øą¤¾ą¤®ą¤¾ą¤œą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą“Ÿą“¾ą“±ąµą“± ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“øąµ‹ą“·ąµą“Æąµ½ ą“øą“Æąµ»ą“øą“øąµ'),
(89646, 'https://ror.org/05jtex909', 'en', 1, 'https://ror.org/05jtex909 Australian and New Zealand Urogenital and Prostate Cancer Trials Group'),
(89647, 'https://ror.org/05jtnfm89', 'en', 1, 'https://ror.org/05jtnfm89 Newmarket Equine Hospital'),
(89648, 'https://ror.org/05jv1pq83', 'en', 1, 'https://ror.org/05jv1pq83 Uganda National Council for Science and Technology'),
(89649, 'https://ror.org/05jvg6713', 'no_lang_code', 1, 'https://ror.org/05jvg6713 Hollister (United States)'),
(89650, 'https://ror.org/05jxf0p38', 'en', 1, 'https://ror.org/05jxf0p38 University of Papua New Guinea'),
(89651, 'https://ror.org/05jyg6z06', 'no_lang_code', 1, 'https://ror.org/05jyg6z06 Mersana Therapeutics (United States)'),
(89652, 'https://ror.org/05jytz541', 'en', 1, 'https://ror.org/05jytz541 Lambda Alpha International'),
(89653, 'https://ror.org/05jyw4675', 'en', 1, 'https://ror.org/05jyw4675 Marfan Foundation'),
(89654, 'https://ror.org/05jyz4092', 'de', 1, 'https://ror.org/05jyz4092 Thüringer Landessternwarte Tautenburg'),
(89655, 'https://ror.org/05jz51y94', 'en', 1, 'https://ror.org/05jz51y94 MEF University'),
(89656, 'https://ror.org/05jzhr591', 'en', 1, 'https://ror.org/05jzhr591 Medical Oncology Group of Australia'),
(89657, 'https://ror.org/05jzwe545', 'no_lang_code', 1, 'https://ror.org/05jzwe545 AgStar Financial Services, ACA (United States)'),
(89658, 'https://ror.org/05k0qmv73', 'fr', 1, 'https://ror.org/05k0qmv73 GƩosciences Environnement Toulouse'),
(89659, 'https://ror.org/05k1y3v43', 'no_lang_code', 1, 'https://ror.org/05k1y3v43 Aurigene Discovery Technologies (India)'),
(89660, 'https://ror.org/05k3dc376', 'en', 1, 'https://ror.org/05k3dc376 Washington and Jefferson College'),
(89661, 'https://ror.org/05k94fs49', 'en', 0, 'https://ror.org/05k94fs49 Fraunhofer Center for Molecular Biotechnology'),
(89662, 'https://ror.org/05ka9pc18', 'en', 1, 'https://ror.org/05ka9pc18 Against Breast Cancer'),
(89663, 'https://ror.org/05kae4293', 'en', 0, 'https://ror.org/05kae4293 Moscow State University of Applied Biotechnology'),
(89664, 'https://ror.org/05kb1rb15', 'en', 1, 'https://ror.org/05kb1rb15 International Society of Ultrasound in Obstetrics and Gynecology'),
(89665, 'https://ror.org/05ke6qe36', 'en', 0, 'https://ror.org/05ke6qe36 Thad Cochran National Warmwater Aquaculture Center'),
(89666, 'https://ror.org/05kfkw941', 'en', 0, 'https://ror.org/05kfkw941 Esophageal Cancer Hospital'),
(89667, 'https://ror.org/05kg9ev95', 'en', 1, 'https://ror.org/05kg9ev95 The Swifty Foundation'),
(89668, 'https://ror.org/05khtr396', 'no_lang_code', 1, 'https://ror.org/05khtr396 First Quantum Minerals (Canada)'),
(89669, 'https://ror.org/05kje8j93', 'en', 1, 'https://ror.org/05kje8j93 Center for Life Sciences ē”Ÿå‘½ē§‘å­¦č”åˆäø­åæƒ'),
(89670, 'https://ror.org/05kjhj835', 'en', 1, 'https://ror.org/05kjhj835 Science Foundation Arizona'),
(89671, 'https://ror.org/05kkbgp47', 'en', 1, 'https://ror.org/05kkbgp47 Hill Museum and Manuscript Library'),
(89672, 'https://ror.org/05kmcre68', 'en', 1, 'https://ror.org/05kmcre68 Berea College'),
(89673, 'https://ror.org/05kpxmp13', 'en', 1, 'https://ror.org/05kpxmp13 Environment and Development Action Third World'),
(89674, 'https://ror.org/05krpfr80', 'no_lang_code', 1, 'https://ror.org/05krpfr80 Tenax Therapeutics (United States)'),
(89675, 'https://ror.org/05krtjb56', 'en', 0, 'https://ror.org/05krtjb56 Argosy University'),
(89676, 'https://ror.org/05kv1cc88', 'no_lang_code', 1, 'https://ror.org/05kv1cc88 Keeling & Walker (United Kingdom)'),
(89677, 'https://ror.org/05kwhph67', 'en', 1, 'https://ror.org/05kwhph67 Jenner Institute'),
(89678, 'https://ror.org/05kyq2m47', 'no_lang_code', 1, 'https://ror.org/05kyq2m47 Langfang Normal University å»ŠåŠåøˆčŒƒå­¦é™¢'),
(89679, 'https://ror.org/05kzrmv33', 'en', 0, 'https://ror.org/05kzrmv33 Aichi Prefectural Cardiovascular Respiratory Disease Center ę„›ēŸ„ēœŒē«‹å¾Ŗē’°å™Øå‘¼åøå™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(89680, 'https://ror.org/05m0kbg48', 'en', 1, 'https://ror.org/05m0kbg48 Anita Borg Institute'),
(89681, 'https://ror.org/05m14sk15', 'en', 0, 'https://ror.org/05m14sk15 Leningrad State University named after AS Pushkin ЛенинграГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š”. Пушкина'),
(89682, 'https://ror.org/05m1htz08', 'en', 1, 'https://ror.org/05m1htz08 Jurassic Foundation'),
(89683, 'https://ror.org/05m22kb23', 'en', 0, 'https://ror.org/05m22kb23 University of Gilan'),
(89684, 'https://ror.org/05m2ge014', 'en', 0, 'https://ror.org/05m2ge014 Cancer Research Initiatives Foundation'),
(89685, 'https://ror.org/05m2pwn60', 'pl', 1, 'https://ror.org/05m2pwn60 Narodowy Instytut Leków National Medicines Institute'),
(89686, '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'),
(89687, 'https://ror.org/05m5t2b63', 'en', 1, 'https://ror.org/05m5t2b63 Office of the Higher Education Commission สำนักงานคณะกรรดการการอุดดศึกษา'),
(89688, 'https://ror.org/05m62xk31', 'en', 1, 'https://ror.org/05m62xk31 Japan Pancreatic Disease Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č†µč‡“ē—…ē ”ē©¶č²”å›£'),
(89689, 'https://ror.org/05m6hcf21', 'en', 0, 'https://ror.org/05m6hcf21 Susan G Komen Southern Arizona'),
(89690, 'https://ror.org/05m91fp41', 'en', 1, 'https://ror.org/05m91fp41 United Nations Foundation'),
(89691, 'https://ror.org/05m9v4v71', 'no_lang_code', 1, 'https://ror.org/05m9v4v71 Edimer Pharmaceuticals (United States)'),
(89692, 'https://ror.org/05ma41w62', 'en', 1, 'https://ror.org/05ma41w62 Grand Charleroi Hospital Grand HƓpital de Charleroi'),
(89693, 'https://ror.org/05maa9n89', 'no_lang_code', 1, 'https://ror.org/05maa9n89 Virbac (France)'),
(89694, 'https://ror.org/05may5z16', 'no_lang_code', 0, 'https://ror.org/05may5z16 Mallinckrodt (Czechia)'),
(89695, 'https://ror.org/05md7ag74', 'fr', 1, 'https://ror.org/05md7ag74 Ɖcole SupĆ©rieure de Commerce'),
(89696, 'https://ror.org/05mdyn772', 'no_lang_code', 1, 'https://ror.org/05mdyn772 Vital Strategies'),
(89697, 'https://ror.org/05mgp8x93', 'en', 1, 'https://ror.org/05mgp8x93 PLA Army Engineering University 中国人民解放军陆军巄程大学'),
(89698, 'https://ror.org/05mgw0849', 'en', 1, 'https://ror.org/05mgw0849 The Historical Society of Israel החברה ×”×”×™×”×˜×•×Ø×™×Ŗ ×”×™×©×Ø××œ×™×Ŗ'),
(89699, 'https://ror.org/05mh8rb60', 'en', 1, 'https://ror.org/05mh8rb60 Clinical Nutrition Research Centre'),
(89700, 'https://ror.org/05mjm5p58', 'no_lang_code', 0, 'https://ror.org/05mjm5p58 Praxair Surface Technologies (Italy)'),
(89701, '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'),
(89702, 'https://ror.org/05mks7e07', 'en', 1, 'https://ror.org/05mks7e07 Alliance College-Ready Public Schools'),
(89703, 'https://ror.org/05mktfw05', 'en', 1, 'https://ror.org/05mktfw05 Agence Nationale de RĆ©glementation des TĆ©lĆ©communications National Telecommunications Regulatory Agency Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„ŲŖŁ‚Ł†ŁŠŁ† Ų§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ'),
(89704, 'https://ror.org/05mm1w714', 'en', 1, 'https://ror.org/05mm1w714 Universidad del AtlƔntico University of AtlƔntico'),
(89705, 'https://ror.org/05mmhfh95', 'no_lang_code', 1, 'https://ror.org/05mmhfh95 NCI Information Systems (United States)'),
(89706, 'https://ror.org/05mmma237', 'no_lang_code', 1, 'https://ror.org/05mmma237 International Geosynthetics Society (United States)'),
(89707, 'https://ror.org/05mndst04', 'en', 1, 'https://ror.org/05mndst04 Fernbank Museum of Natural History'),
(89708, 'https://ror.org/05mra7z37', 'en', 1, 'https://ror.org/05mra7z37 Beaux-arts de minneapolis Minneapolis College of Art and Design'),
(89709, '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'),
(89710, 'https://ror.org/05msy9z54', 'pt', 1, 'https://ror.org/05msy9z54 Federal University of Pelotas Universidade Federal de Pelotas'),
(89711, 'https://ror.org/05mt01203', 'en', 1, 'https://ror.org/05mt01203 Japanese Foundation for Research and Promotion of Endoscopy å…¬ē›Šč²”å›£ę³•äŗŗ å†…č¦–é”åŒ»å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(89712, 'https://ror.org/05mt8kt11', 'no_lang_code', 1, 'https://ror.org/05mt8kt11 Investigen (United States)'),
(89713, 'https://ror.org/05mxean80', 'en', 1, 'https://ror.org/05mxean80 Osaka City University Hospital å¤§é˜Ŗåø‚ē«‹å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(89714, 'https://ror.org/05mxhda18', 'en', 1, 'https://ror.org/05mxhda18 University Hospital Cologne UniversitƤtsklinikum Kƶln'),
(89715, 'https://ror.org/05mxzfp44', 'en', 0, 'https://ror.org/05mxzfp44 Argosy University'),
(89716, 'https://ror.org/05mzf3276', 'en', 1, 'https://ror.org/05mzf3276 Sandwell & West Birmingham Hospitals NHS Trust'),
(89717, 'https://ror.org/05mzh9z59', 'en', 1, 'https://ror.org/05mzh9z59 Affiliated Hospital of Zunyi Medical College 遵义医学院附属医院'),
(89718, 'https://ror.org/05mzp4d74', 'en', 1, 'https://ror.org/05mzp4d74 Shanxi Cardiovascular Hospital å±±č„æēœåæƒč”€ē®”åŒ»é™¢'),
(89719, 'https://ror.org/05n0gsn30', 'en', 1, 'https://ror.org/05n0gsn30 Military University Nueva Granada Universidad Militar Nueva Granada'),
(89720, 'https://ror.org/05n2ytn05', 'en', 1, 'https://ror.org/05n2ytn05 Retina Research Foundation'),
(89721, 'https://ror.org/05n3s1g83', 'en', 1, 'https://ror.org/05n3s1g83 American Academy for Cerebral Palsy and Developmental Medicine'),
(89722, 'https://ror.org/05n4kr695', 'en', 1, 'https://ror.org/05n4kr695 Science made simple'),
(89723, 'https://ror.org/05n6zma86', 'no_lang_code', 1, 'https://ror.org/05n6zma86 Societas pro Fauna et Flora Fennica'),
(89724, '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'),
(89725, 'https://ror.org/05ndx7902', 'en', 1, 'https://ror.org/05ndx7902 Jiangxi Academy of Agricultural Sciences ę±Ÿč„æēœå†œäøšē§‘å­¦é™¢'),
(89726, 'https://ror.org/05nfe2x50', 'en', 1, 'https://ror.org/05nfe2x50 Canadian Child Health Clinician Scientist Program'),
(89727, 'https://ror.org/05nkgk822', 'en', 1, 'https://ror.org/05nkgk822 Jiangxi Normal University 江脿师范大学'),
(89728, 'https://ror.org/05nnk3913', 'en', 1, 'https://ror.org/05nnk3913 Albion College'),
(89729, 'https://ror.org/05nnsek89', 'en', 1, 'https://ror.org/05nnsek89 National Agri-Food Biotechnology Institute'),
(89730, 'https://ror.org/05nny6x17', 'en', 1, 'https://ror.org/05nny6x17 SBA Research'),
(89731, 'https://ror.org/05nnyr510', 'en', 1, 'https://ror.org/05nnyr510 University of Rajshahi ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(89732, 'https://ror.org/05nqg3g04', 'en', 1, 'https://ror.org/05nqg3g04 Ningbo Institute of Industrial Technology äø­å›½ē§‘å­¦é™¢å®ę³¢ęę–™ęŠ€ęœÆäøŽå·„ēØ‹ē ”ē©¶ę‰€'),
(89733, 'https://ror.org/05nrm9e04', 'en', 1, 'https://ror.org/05nrm9e04 Oceanography Society'),
(89734, 'https://ror.org/05nsmzt44', 'en', 1, 'https://ror.org/05nsmzt44 Ontario Federation of Anglers and Hunters'),
(89735, 'https://ror.org/05nv1pa68', 'en', 1, 'https://ror.org/05nv1pa68 Louisiana Universities Marine Consortium'),
(89736, 'https://ror.org/05nvmvs54', 'en', 1, 'https://ror.org/05nvmvs54 Robert and Patricia Switzer Foundation'),
(89737, 'https://ror.org/05nywn832', 'en', 1, 'https://ror.org/05nywn832 Leibniz Institute for Zoo and Wildlife Research Leibniz-Institut für Zoo- und Wildtierforschung'),
(89738, 'https://ror.org/05nz0zp31', 'en', 1, 'https://ror.org/05nz0zp31 Wellcome/MRC Cambridge Stem Cell Institute'),
(89739, 'https://ror.org/05p1pn123', 'en', 1, 'https://ror.org/05p1pn123 Władysław Szafer Institute of Botany'),
(89740, 'https://ror.org/05p21nq18', 'en', 1, 'https://ror.org/05p21nq18 Dementias Platform UK'),
(89741, 'https://ror.org/05p2jqt70', 'en', 1, 'https://ror.org/05p2jqt70 Association for the Sciences of Limnology and Oceanography'),
(89742, 'https://ror.org/05p30s598', 'no_lang_code', 0, 'https://ror.org/05p30s598 Sogeti (United Kingdom)'),
(89743, 'https://ror.org/05p336k36', 'en', 1, 'https://ror.org/05p336k36 American Hip Institute'),
(89744, 'https://ror.org/05p61mv27', 'en', 1, 'https://ror.org/05p61mv27 The Dodd-Walls Centre for Photonic and Quantum Technologies'),
(89745, 'https://ror.org/05p64mb74', 'en', 1, 'https://ror.org/05p64mb74 Jeju National University Hospital 제주 ėŒ€ķ•™źµ 병원'),
(89746, 'https://ror.org/05p67dv18', 'no_lang_code', 1, 'https://ror.org/05p67dv18 China Telecom äø­å›½ē”µäæ”č‚”ä»½ęœ‰é™å…¬åø'),
(89747, 'https://ror.org/05p6rhy72', 'en', 1, 'https://ror.org/05p6rhy72 Institute for Clinical Evaluative Sciences'),
(89748, 'https://ror.org/05p6xj614', 'es', 1, 'https://ror.org/05p6xj614 Agencia Catalana de L''Aigua Catalan Water Agency'),
(89749, 'https://ror.org/05p94t760', 'de', 0, 'https://ror.org/05p94t760 Klinik für Hals-, Nasen- und Ohrenheilkunde'),
(89750, 'https://ror.org/05p9p2a21', 'no_lang_code', 0, 'https://ror.org/05p9p2a21 Skulpt (United States)'),
(89751, 'https://ror.org/05p9yxg92', 'no_lang_code', 1, 'https://ror.org/05p9yxg92 Manufacturing Advocacy & Growth Network (United States)'),
(89752, 'https://ror.org/05pa1yr68', 'es', 0, 'https://ror.org/05pa1yr68 Centro Universitario Une'),
(89753, 'https://ror.org/05par7p11', 'en', 1, 'https://ror.org/05par7p11 Massachusetts Green High Performance Computing Center'),
(89754, 'https://ror.org/05pd2ed85', 'en', 1, 'https://ror.org/05pd2ed85 Maranatha Christian University Universitas Kristen Maranatha'),
(89755, 'https://ror.org/05pd6sh18', 'es', 1, 'https://ror.org/05pd6sh18 Universidad Panamericana'),
(89756, 'https://ror.org/05pdpaa51', 'en', 1, 'https://ror.org/05pdpaa51 Disability Rights Fund'),
(89757, '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'),
(89758, 'https://ror.org/05pebnr13', 'en', 1, 'https://ror.org/05pebnr13 Baring Foundation'),
(89759, 'https://ror.org/05pet9r93', 'no_lang_code', 1, 'https://ror.org/05pet9r93 ARVYS Proteins (United States)'),
(89760, 'https://ror.org/05pgxdd43', 'en', 0, 'https://ror.org/05pgxdd43 Aboriginal Affairs Northern Dev Canada Affaires autochtones et du dƩveloppement du Nord canadien'),
(89761, 'https://ror.org/05pjsqp06', 'en', 1, 'https://ror.org/05pjsqp06 Shanghai Planning Office of Philosophy and Social Science äøŠęµ·åø‚å“²å­¦ē¤¾ä¼šē§‘å­¦č§„åˆ’åŠžå…¬å®¤'),
(89762, 'https://ror.org/05ppaxj51', 'en', 1, 'https://ror.org/05ppaxj51 Institute for Clinical Acupuncture and Oriental Medicine'),
(89763, 'https://ror.org/05pqnfp43', 'en', 1, 'https://ror.org/05pqnfp43 Maccabi Institute for Health Services Research'),
(89764, 'https://ror.org/05pr9eq97', 'en', 1, 'https://ror.org/05pr9eq97 Center for China and Globalization äø­å›½äøŽå…ØēƒåŒ–ę™ŗåŗ“'),
(89765, 'https://ror.org/05pt5a239', 'en', 0, 'https://ror.org/05pt5a239 New College Nottingham'),
(89766, 'https://ror.org/05pwe5727', 'en', 1, 'https://ror.org/05pwe5727 Iredell Statesville Schools'),
(89767, 'https://ror.org/05pwg4790', 'en', 1, 'https://ror.org/05pwg4790 Ranken Jordan Pediatric Bridge Hospital'),
(89768, 'https://ror.org/05px9k635', 'en', 1, 'https://ror.org/05px9k635 African Academy of Sciences'),
(89769, 'https://ror.org/05pyxbe18', 'en', 1, 'https://ror.org/05pyxbe18 Quaternary Research Association'),
(89770, 'https://ror.org/05q32wc29', 'no_lang_code', 0, 'https://ror.org/05q32wc29 UTC Aerospace Systems (France)'),
(89771, 'https://ror.org/05q650k44', 'en', 1, 'https://ror.org/05q650k44 Heinz Endowments'),
(89772, 'https://ror.org/05qa5rt69', 'en', 1, 'https://ror.org/05qa5rt69 Wildlife Management Institute'),
(89773, 'https://ror.org/05qbbf772', 'en', 1, 'https://ror.org/05qbbf772 Independent University ą¦‡ą¦Øą§ą¦”ą¦æą¦Ŗą§‡ą¦Øą§ą¦”ą§‡ą¦Øą§ą¦Ÿ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ বাংলাদেশ'),
(89774, 'https://ror.org/05qc80f88', 'no_lang_code', 1, 'https://ror.org/05qc80f88 Elopak (Norway)'),
(89775, 'https://ror.org/05qebwp08', 'en', 1, 'https://ror.org/05qebwp08 Mahanakorn University of Technology ดหาวณทยาคัยเทคโนโคยีดหานคร'),
(89776, 'https://ror.org/05qeh2v62', 'en', 1, 'https://ror.org/05qeh2v62 Sakon Nakhon Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąøąø„ąø™ąø„ąø£'),
(89777, 'https://ror.org/05qehc735', 'en', 1, 'https://ror.org/05qehc735 Canadian Society of Nephrology'),
(89778, 'https://ror.org/05qfktv10', 'no_lang_code', 1, 'https://ror.org/05qfktv10 Aminex Therapeutics (United States)'),
(89779, 'https://ror.org/05qg0fx21', 'nl', 1, 'https://ror.org/05qg0fx21 Stichting Stoffels-Hornstra'),
(89780, 'https://ror.org/05qgpp431', 'no_lang_code', 1, 'https://ror.org/05qgpp431 Alcen (France)'),
(89781, 'https://ror.org/05qhdax98', 'en', 0, 'https://ror.org/05qhdax98 University of Wisconsin–Waukesha UniversitĆ© du wisconsin Ć  waukesha'),
(89782, 'https://ror.org/05qj99v29', 'en', 1, 'https://ror.org/05qj99v29 Skolkovo Foundation'),
(89783, 'https://ror.org/05qjm2261', 'es', 1, 'https://ror.org/05qjm2261 Instituto Nacional de Psiquiatría National Institute of Psychiatry Ramón de la Fuente Muñiz'),
(89784, 'https://ror.org/05qkfsj27', 'en', 1, 'https://ror.org/05qkfsj27 Economic Research Institute Экономикалық Š·ŠµŃ€Ń‚Ń‚ŠµŃƒŠ»ŠµŃ€ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(89785, 'https://ror.org/05qp63j73', 'en', 1, 'https://ror.org/05qp63j73 Mary S. and David C. Corbin Foundation'),
(89786, 'https://ror.org/05qp89973', 'no_lang_code', 1, 'https://ror.org/05qp89973 DAK-Gesundheit (Germany)'),
(89787, 'https://ror.org/05qqvbf40', 'en', 0, 'https://ror.org/05qqvbf40 Santa Barbara and Ventura Colleges of Law'),
(89788, 'https://ror.org/05qr7ed45', 'en', 1, 'https://ror.org/05qr7ed45 Biotechnology Industry Research Assistance Council'),
(89789, 'https://ror.org/05qssq044', 'en', 1, 'https://ror.org/05qssq044 Reading & Writing Foundation'),
(89790, 'https://ror.org/05qsz8q55', 'no_lang_code', 0, 'https://ror.org/05qsz8q55 OM Group (United States)'),
(89791, 'https://ror.org/05qz4r376', 'en', 1, 'https://ror.org/05qz4r376 Immune Deficiency Foundation'),
(89792, 'https://ror.org/05r0z8p48', 'en', 0, 'https://ror.org/05r0z8p48 South Ural State Medical University'),
(89793, 'https://ror.org/05r125v29', 'no_lang_code', 1, 'https://ror.org/05r125v29 Nexgenix Pharmaceuticals (United States)'),
(89794, 'https://ror.org/05r34a481', 'en', 1, 'https://ror.org/05r34a481 National Association for Research in Science Teaching'),
(89795, 'https://ror.org/05r35r527', 'no_lang_code', 0, 'https://ror.org/05r35r527 Mylan (Australia)'),
(89796, 'https://ror.org/05r48bj28', 'en', 1, 'https://ror.org/05r48bj28 Agenţia Spaţială Română Romanian Space Agency'),
(89797, 'https://ror.org/05r5zfp34', 'en', 1, 'https://ror.org/05r5zfp34 Robert J Kleberg Jr and Helen C Kleberg Foundation'),
(89798, 'https://ror.org/05r792a43', 'en', 1, 'https://ror.org/05r792a43 British Columbia Lung Association'),
(89799, 'https://ror.org/05r7bye26', 'en', 1, 'https://ror.org/05r7bye26 Zhebei Mingzhou Hospital'),
(89800, 'https://ror.org/05r7n9c40', 'en', 1, 'https://ror.org/05r7n9c40 Max Planck Institute for Terrestrial Microbiology Max-Planck-Institut für Terrestrische Mikrobiologie'),
(89801, 'https://ror.org/05r9xgf14', 'en', 1, 'https://ror.org/05r9xgf14 Universidad Washington y Lee Washington and Lee University'),
(89802, 'https://ror.org/05raz7j17', 'no_lang_code', 0, 'https://ror.org/05raz7j17 GE Renewable Energy (Germany)'),
(89803, 'https://ror.org/05rb1cp74', 'fr', 1, 'https://ror.org/05rb1cp74 Association FranƧois Aupetit'),
(89804, 'https://ror.org/05rbm8n02', 'en', 0, 'https://ror.org/05rbm8n02 Ogun State University Teaching Hospital'),
(89805, 'https://ror.org/05rd1at71', 'en', 1, 'https://ror.org/05rd1at71 The Wende Museum'),
(89806, 'https://ror.org/05ref2x71', 'en', 1, 'https://ror.org/05ref2x71 Dutch Dairymen Board'),
(89807, 'https://ror.org/05ret9323', 'en', 1, 'https://ror.org/05ret9323 Fondation Lucie et AndrƩ Chagnon Lucie and AndrƩ Chagnon Foundation'),
(89808, 'https://ror.org/05rh56x14', 'en', 1, 'https://ror.org/05rh56x14 Bread & Roses Community Fund'),
(89809, 'https://ror.org/05rhej692', 'en', 1, 'https://ror.org/05rhej692 Commonwealth Foundation'),
(89810, 'https://ror.org/05rhnav51', 'en', 1, 'https://ror.org/05rhnav51 The Kubert School'),
(89811, 'https://ror.org/05rj6ky13', 'en', 0, 'https://ror.org/05rj6ky13 Central Bible College'),
(89812, 'https://ror.org/05rkwe274', 'en', 1, 'https://ror.org/05rkwe274 Pipeline Research Council International'),
(89813, 'https://ror.org/05rmdzg11', 'no_lang_code', 0, 'https://ror.org/05rmdzg11 MEL Chemicals (United Kingdom)'),
(89814, 'https://ror.org/05rnkb382', 'no_lang_code', 1, 'https://ror.org/05rnkb382 Sumitomo Electric Industries (Japan) ä½å‹é›»ę°—å·„ę„­'),
(89815, 'https://ror.org/05rpnj507', 'no_lang_code', 1, 'https://ror.org/05rpnj507 UES (United States)'),
(89816, 'https://ror.org/05rteaz10', 'no_lang_code', 1, 'https://ror.org/05rteaz10 Razi Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† رازی Ų±Ų“ŲŖ'),
(89817, 'https://ror.org/05rtq3v12', 'en', 1, 'https://ror.org/05rtq3v12 Chita State Academy of Medicine Š§ŠøŃ‚ŠøŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(89818, 'https://ror.org/05rv4p237', 'en', 1, 'https://ror.org/05rv4p237 Asian Pacific Development Center'),
(89819, 'https://ror.org/05rvb4x65', 'en', 0, 'https://ror.org/05rvb4x65 American Coastline University'),
(89820, 'https://ror.org/05rvkrc04', 'no_lang_code', 0, 'https://ror.org/05rvkrc04 Chemtura (United States)'),
(89821, 'https://ror.org/05rw53r38', 'en', 1, 'https://ror.org/05rw53r38 Royal Zoological Society of Scotland'),
(89822, 'https://ror.org/05rx1xe20', 'no_lang_code', 0, 'https://ror.org/05rx1xe20 Conexant (United States)'),
(89823, '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'),
(89824, 'https://ror.org/05rzdej97', 'en', 1, 'https://ror.org/05rzdej97 Moravian Archives'),
(89825, 'https://ror.org/05s04wy35', 'no_lang_code', 1, 'https://ror.org/05s04wy35 Mustansiriyah University الجامعة Ų§Ł„Ł…Ų³ŲŖŁ†ŲµŲ±ŁŠŲ©'),
(89826, 'https://ror.org/05s0b7f89', 'en', 1, 'https://ror.org/05s0b7f89 Airey Neave Trust'),
(89827, 'https://ror.org/05s2em157', 'en', 1, 'https://ror.org/05s2em157 International Sociological Association'),
(89828, 'https://ror.org/05s31v772', 'en', 1, 'https://ror.org/05s31v772 Startup Foundation'),
(89829, 'https://ror.org/05s570m15', 'en', 1, 'https://ror.org/05s570m15 SRI International'),
(89830, 'https://ror.org/05s5ffk95', 'nl', 1, 'https://ror.org/05s5ffk95 Sporten voor Sophia'),
(89831, 'https://ror.org/05s5hey28', 'en', 0, 'https://ror.org/05s5hey28 Samara State Pedagogical University Дамарский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(89832, 'https://ror.org/05s723e81', 'en', 1, 'https://ror.org/05s723e81 Women''s & Children''s Hospital Foundation'),
(89833, 'https://ror.org/05s768n96', 'pt', 1, 'https://ror.org/05s768n96 Fundação do ABC'),
(89834, 'https://ror.org/05sajeb96', 'no_lang_code', 0, 'https://ror.org/05sajeb96 Raydiance (United States)'),
(89835, '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'),
(89836, 'https://ror.org/05sew3266', 'en', 1, 'https://ror.org/05sew3266 Borchard Foundation Center on Law and Aging'),
(89837, 'https://ror.org/05sewvy06', 'en', 1, 'https://ror.org/05sewvy06 CatWalk Spinal Cord Injury Trust'),
(89838, 'https://ror.org/05sfcd303', 'it', 1, 'https://ror.org/05sfcd303 Istituto Euro Mediterraneo di Scienza e Tecnologia'),
(89839, 'https://ror.org/05shr3z13', 'en', 1, 'https://ror.org/05shr3z13 Tula State University Тульский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(89840, 'https://ror.org/05sjrb944', 'en', 1, 'https://ror.org/05sjrb944 Menoufia University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŁˆŁŁŠŲ©ā€Ž'),
(89841, 'https://ror.org/05smycf36', 'pt', 1, 'https://ror.org/05smycf36 Instituto Brasileiro de Controle do CĆ¢ncer'),
(89842, 'https://ror.org/05snmp989', 'en', 1, 'https://ror.org/05snmp989 Japan Association for Diabetes Education and Care ę—„ęœ¬ē³–å°æē—…å”ä¼š'),
(89843, 'https://ror.org/05sr4vg14', 'es', 1, 'https://ror.org/05sr4vg14 Universidad La Salle'),
(89844, 'https://ror.org/05srazs86', 'en', 1, 'https://ror.org/05srazs86 Otto A. Malm Foundation Otto A. Malms Donationsfond'),
(89845, 'https://ror.org/05st8bk31', 'en', 1, 'https://ror.org/05st8bk31 Detroit Baptist Theological Seminary'),
(89846, 'https://ror.org/05stzyr92', 'en', 1, 'https://ror.org/05stzyr92 Campbell Collaboration'),
(89847, 'https://ror.org/05svnqy92', 'en', 1, 'https://ror.org/05svnqy92 Lown Institute'),
(89848, 'https://ror.org/05swbwy25', 'en', 1, 'https://ror.org/05swbwy25 Saint Petersburg State Institute of Psychology and Social Work Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологии Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ работы'),
(89849, 'https://ror.org/05sxdtc98', 'en', 1, 'https://ror.org/05sxdtc98 North Carolina Cotton Producers Association'),
(89850, 'https://ror.org/05sxf4h28', 'pt', 1, 'https://ror.org/05sxf4h28 Federal University of EspĆ­rito Santo Universidade Federal do EspĆ­rito Santo'),
(89851, 'https://ror.org/05sxqw262', 'no_lang_code', 0, 'https://ror.org/05sxqw262 LaVision BioTec (Germany)'),
(89852, 'https://ror.org/05sy5hm57', 'en', 1, 'https://ror.org/05sy5hm57 Yasouj University'),
(89853, 'https://ror.org/05t022114', 'en', 1, 'https://ror.org/05t022114 Prize4Life'),
(89854, 'https://ror.org/05t1y0b59', 'no_lang_code', 1, 'https://ror.org/05t1y0b59 Visa (United States)'),
(89855, 'https://ror.org/05t26ep05', 'no_lang_code', 1, 'https://ror.org/05t26ep05 Gƶteborg Energi (Sweden)'),
(89856, 'https://ror.org/05t2kwz20', 'no_lang_code', 0, 'https://ror.org/05t2kwz20 Tokyo Jogakkan College ę±äŗ¬å„³å­¦é¤Øå¤§å­¦'),
(89857, 'https://ror.org/05t3edc53', 'no_lang_code', 0, 'https://ror.org/05t3edc53 Blue Ocean Mariculture (United States)'),
(89858, 'https://ror.org/05t3ett24', 'en', 1, 'https://ror.org/05t3ett24 St. Christopher''s Hospital for Children'),
(89859, 'https://ror.org/05t3r3e66', 'pt', 1, 'https://ror.org/05t3r3e66 Faculdade de Pato Branco'),
(89860, 'https://ror.org/05t3tea56', 'en', 0, 'https://ror.org/05t3tea56 Higher Administrative School of St.Peterburg''s Administration'),
(89861, 'https://ror.org/05t3vnt47', 'en', 1, 'https://ror.org/05t3vnt47 Kenya Marine and Fisheries Research Institute'),
(89862, 'https://ror.org/05t41vc93', 'no_lang_code', 1, 'https://ror.org/05t41vc93 Augmenix (United States)'),
(89863, 'https://ror.org/05t4pvx35', 'en', 1, 'https://ror.org/05t4pvx35 Chandigarh University'),
(89864, 'https://ror.org/05t4zky21', 'de', 1, 'https://ror.org/05t4zky21 Kantonsschule Zürcher Oberland'),
(89865, 'https://ror.org/05t6jph46', 'en', 1, 'https://ror.org/05t6jph46 Carl and Ruth Shapiro Family Foundation'),
(89866, 'https://ror.org/05t797721', 'es', 1, 'https://ror.org/05t797721 Centro de Aplicaciones Tecnológicas y Desarrollo Nuclear'),
(89867, 'https://ror.org/05t7bek56', 'en', 1, 'https://ror.org/05t7bek56 China Foundation for Hepatitis Prevention and Control'),
(89868, 'https://ror.org/05t831771', 'en', 1, 'https://ror.org/05t831771 Lauri Strauss Leukemia Foundation'),
(89869, 'https://ror.org/05t8s3y29', 'en', 1, 'https://ror.org/05t8s3y29 Discovery Institute'),
(89870, 'https://ror.org/05t91sk49', 'en', 1, 'https://ror.org/05t91sk49 Sampoerna University Universitas Siswa Bangsa Internasional'),
(89871, 'https://ror.org/05tbrga38', 'en', 1, 'https://ror.org/05tbrga38 Iranian Research Institute of Plant Protection'),
(89872, 'https://ror.org/05tcdrk12', 'en', 1, 'https://ror.org/05tcdrk12 Indrashil University ąŖ‡ąŖØą«ąŖ¦ą«ąŖ°ąŖ¶ą«€ąŖ² ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(89873, 'https://ror.org/05tcvzc03', 'no_lang_code', 1, 'https://ror.org/05tcvzc03 Cytori Therapeutics (United States)'),
(89874, 'https://ror.org/05tdna171', 'en', 1, 'https://ror.org/05tdna171 Helsingin Sanomain SƤƤtiƶ Helsingin Sanomat Foundation'),
(89875, 'https://ror.org/05te7m660', 'pt', 1, 'https://ror.org/05te7m660 ServiƧo Nacional de Aprendizagem Comercial'),
(89876, 'https://ror.org/05tg4dc47', 'en', 1, 'https://ror.org/05tg4dc47 Wyss Center for Bio and Neuroengineering'),
(89877, 'https://ror.org/05tgz4m05', 'en', 1, 'https://ror.org/05tgz4m05 European Foundation for the Study of Diabetes'),
(89878, 'https://ror.org/05tjfpm07', 'en', 1, 'https://ror.org/05tjfpm07 American Society for Mass Spectrometry'),
(89879, 'https://ror.org/05tkqcq07', 'en', 1, 'https://ror.org/05tkqcq07 Hanyang Cyber University ķ•œģ–‘ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(89880, 'https://ror.org/05tr69e48', 'no_lang_code', 0, 'https://ror.org/05tr69e48 Rapiscan Systems (United States)'),
(89881, 'https://ror.org/05tszed37', 'en', 1, 'https://ror.org/05tszed37 Yale New Haven Hospital'),
(89882, 'https://ror.org/05tte0y64', 'en', 1, 'https://ror.org/05tte0y64 Golfers Against Cancer'),
(89883, 'https://ror.org/05tvg6d45', 'no_lang_code', 1, 'https://ror.org/05tvg6d45 Condor Petroleum (Canada)'),
(89884, 'https://ror.org/05tvqac82', 'en', 1, 'https://ror.org/05tvqac82 Japan Association for the Advancement of Medical Equipment å…¬ē›Šč²”å›£ę³•äŗŗåŒ»ē™‚ę©Ÿå™Øć‚»ćƒ³ć‚æćƒ¼'),
(89885, 'https://ror.org/05tw3m124', 'en', 1, 'https://ror.org/05tw3m124 Network for Studies on Pensions, Aging and Retirement'),
(89886, 'https://ror.org/05twya590', 'en', 1, 'https://ror.org/05twya590 China People''s Public Security University 中国人民公安大学'),
(89887, 'https://ror.org/05tx4n890', 'no_lang_code', 0, 'https://ror.org/05tx4n890 Freescale Semiconductor (United Kingdom)'),
(89888, 'https://ror.org/05tx8f430', 'en', 1, 'https://ror.org/05tx8f430 Foundation for the Education and Research in Neurological Emergencies'),
(89889, 'https://ror.org/05tx9pa51', 'en', 1, 'https://ror.org/05tx9pa51 Maurice and Phyllis Paykel Trust'),
(89890, 'https://ror.org/05txgeh52', 'no_lang_code', 0, 'https://ror.org/05txgeh52 Ondax (United States)'),
(89891, 'https://ror.org/05tzgpn59', 'en', 1, 'https://ror.org/05tzgpn59 American Civil War Museum'),
(89892, 'https://ror.org/05tzrqq19', 'en', 1, 'https://ror.org/05tzrqq19 Global Lyme Alliance'),
(89893, 'https://ror.org/05v0bzq53', 'no_lang_code', 1, 'https://ror.org/05v0bzq53 Foster + Freeman (United Kingdom)');
INSERT INTO `rors` VALUES
(89894, 'https://ror.org/05v0wcb32', 'en', 1, 'https://ror.org/05v0wcb32 Ukrainian National Tchaikovsky Academy of Music ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŃƒŠ·ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України імені ŠŸŠµŃ‚Ń€Š° Чайковського'),
(89895, 'https://ror.org/05v1h9t74', 'en', 0, 'https://ror.org/05v1h9t74 Sint Anna Hospital'),
(89896, 'https://ror.org/05v258791', 'en', 1, 'https://ror.org/05v258791 International Academy of Oral Medicine and Toxicology'),
(89897, 'https://ror.org/05v27w196', 'id', 1, 'https://ror.org/05v27w196 Universitas Widyatama'),
(89898, 'https://ror.org/05v2p9075', 'en', 1, 'https://ror.org/05v2p9075 Nahrain University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†Ł‡Ų±ŁŠŁ†'),
(89899, 'https://ror.org/05v3dr438', 'en', 1, 'https://ror.org/05v3dr438 Nur International University'),
(89900, 'https://ror.org/05v4jan90', 'en', 1, 'https://ror.org/05v4jan90 Gustavus And Louise Pfeiffer Research Foundation'),
(89901, 'https://ror.org/05v5hg569', 'en', 1, 'https://ror.org/05v5hg569 Weill Cornell Medical College in Qatar ŁƒŁ„ŁŠŲ© Ų·ŲØ ŁˆŲ§ŁŠŁ„ ŁƒŁˆŲ±Ł†ŁŠŁ„'),
(89902, 'https://ror.org/05v642w12', 'en', 1, 'https://ror.org/05v642w12 Korean Society of Ginseng'),
(89903, 'https://ror.org/05v6a8j46', 'en', 1, 'https://ror.org/05v6a8j46 National Niemann-Pick Disease Foundation'),
(89904, 'https://ror.org/05v6jzw04', 'en', 1, 'https://ror.org/05v6jzw04 Taronga Conservation Society Australia'),
(89905, 'https://ror.org/05v72wb79', 'en', 0, 'https://ror.org/05v72wb79 Northwest–Shoals Community College'),
(89906, 'https://ror.org/05v76zz53', 'en', 1, 'https://ror.org/05v76zz53 Howard G. Buffett Foundation'),
(89907, 'https://ror.org/05v78jy10', 'en', 0, 'https://ror.org/05v78jy10 Qatar Environment and Energy Research Institute'),
(89908, 'https://ror.org/05v9w7y68', 'en', 1, 'https://ror.org/05v9w7y68 Military Child Education Coalition'),
(89909, 'https://ror.org/05v9zc647', 'en', 0, 'https://ror.org/05v9zc647 Barrackpore Rastraguru Surendranath College'),
(89910, 'https://ror.org/05va25t76', 'en', 1, 'https://ror.org/05va25t76 Yiddish Book Center'),
(89911, 'https://ror.org/05vb5av34', 'no_lang_code', 1, 'https://ror.org/05vb5av34 Australian Broadcasting Corporation (Australia)'),
(89912, 'https://ror.org/05vc9jn48', 'en', 1, 'https://ror.org/05vc9jn48 Japan Cancer Society å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åÆ¾ćŒć‚“å”ä¼š'),
(89913, 'https://ror.org/05vc9ys48', 'en', 1, 'https://ror.org/05vc9ys48 Association of American Indian Physicians'),
(89914, 'https://ror.org/05vd6ad22', 'en', 1, 'https://ror.org/05vd6ad22 Rockford University'),
(89915, 'https://ror.org/05vdj5s74', 'en', 1, 'https://ror.org/05vdj5s74 The Borrow Foundation'),
(89916, 'https://ror.org/05vg74d16', 'en', 1, 'https://ror.org/05vg74d16 Norwegian Institute of Marine Research'),
(89917, 'https://ror.org/05vh49697', 'en', 1, 'https://ror.org/05vh49697 Morrison Child and Family Services'),
(89918, 'https://ror.org/05vh67662', 'pt', 1, 'https://ror.org/05vh67662 Aeronautics Institute of Technology Instituto Tecnológico de AeronÔutica'),
(89919, 'https://ror.org/05vkkzf98', 'en', 1, 'https://ror.org/05vkkzf98 Traditional Chinese Medicine Bureau of Guangdong Province å¹æäøœēœäø­åŒ»čÆå±€'),
(89920, 'https://ror.org/05vmjks78', 'en', 1, 'https://ror.org/05vmjks78 RIKEN Center for Advanced Photonics å…‰é‡å­å·„å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(89921, 'https://ror.org/05vmwhp17', 'en', 1, 'https://ror.org/05vmwhp17 Agouron Institute'),
(89922, 'https://ror.org/05vp0v372', 'en', 1, 'https://ror.org/05vp0v372 Taiwan Kansei Information Association å°ē£ę„Ÿę€§č³‡čØŠå­øęœƒ'),
(89923, 'https://ror.org/05vs3jk79', 'en', 0, 'https://ror.org/05vs3jk79 Qatar Biomedical Research Institute'),
(89924, 'https://ror.org/05vsmsp39', 'en', 1, 'https://ror.org/05vsmsp39 Spalding Trust'),
(89925, 'https://ror.org/05vtwzg82', 'en', 0, 'https://ror.org/05vtwzg82 Penn State Wilkes-Barre'),
(89926, 'https://ror.org/05vtzry32', 'en', 1, 'https://ror.org/05vtzry32 Western Australian Marine Science Institution'),
(89927, 'https://ror.org/05vvxtt36', 'no_lang_code', 1, 'https://ror.org/05vvxtt36 Shofu (Japan) ę Ŗå¼ä¼šē¤¾ę¾é¢Ø'),
(89928, 'https://ror.org/05vy7se14', 'en', 1, 'https://ror.org/05vy7se14 State Key Laboratory of Polymer Physics and Chemistry äø­ē§‘é™¢é«˜åˆ†å­ē‰©ē†äøŽåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(89929, 'https://ror.org/05vzs1274', 'en', 0, 'https://ror.org/05vzs1274 Vallo Sadovsky Architects'),
(89930, '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'),
(89931, 'https://ror.org/05w5bmv88', 'no_lang_code', 1, 'https://ror.org/05w5bmv88 Central Research Institute of Electronics (Russia) Š¦ŠŠ˜Š˜ Электроника'),
(89932, 'https://ror.org/05w7raw17', 'en', 1, 'https://ror.org/05w7raw17 Heineman Foundation'),
(89933, 'https://ror.org/05w8p5s11', 'en', 1, 'https://ror.org/05w8p5s11 Partnership for Clean Competition'),
(89934, 'https://ror.org/05w9xct02', 'de', 1, 'https://ror.org/05w9xct02 Deutsche Multiple Sklerose Gesellschaft'),
(89935, 'https://ror.org/05wav0c22', 'en', 1, 'https://ror.org/05wav0c22 The Leprosy Mission International'),
(89936, 'https://ror.org/05wawjf63', 'en', 1, 'https://ror.org/05wawjf63 Baku Engineering University'),
(89937, 'https://ror.org/05wevan27', 'en', 1, 'https://ror.org/05wevan27 Baylor Scott & White Health'),
(89938, 'https://ror.org/05whrz662', 'no_lang_code', 1, 'https://ror.org/05whrz662 Biostats (United States)'),
(89939, 'https://ror.org/05wj1n164', 'no_lang_code', 1, 'https://ror.org/05wj1n164 Cambridge Polymer Group (United States)'),
(89940, 'https://ror.org/05wk4rc87', 'en', 1, 'https://ror.org/05wk4rc87 Uganda Industrial Research Institute'),
(89941, 'https://ror.org/05wmbw405', 'en', 0, 'https://ror.org/05wmbw405 Catholic University of Malawi'),
(89942, 'https://ror.org/05wpaeg31', 'en', 1, 'https://ror.org/05wpaeg31 Canadian Centre for Applied Research in Cancer Control'),
(89943, 'https://ror.org/05wq6xa87', 'en', 0, 'https://ror.org/05wq6xa87 United Nations Educational, Scientific and Cultural Organization'),
(89944, 'https://ror.org/05wrnqx73', 'en', 0, 'https://ror.org/05wrnqx73 Ross University School of Medicine'),
(89945, 'https://ror.org/05wrsmg43', 'fr', 1, 'https://ror.org/05wrsmg43 Retina France'),
(89946, 'https://ror.org/05wsqdk17', 'en', 0, 'https://ror.org/05wsqdk17 University of New Mexico'),
(89947, 'https://ror.org/05wsx4f18', 'en', 1, 'https://ror.org/05wsx4f18 Supergrid Institute'),
(89948, 'https://ror.org/05wszs827', 'en', 1, 'https://ror.org/05wszs827 Nippon Foundation ę—„ęœ¬č²”å›£'),
(89949, 'https://ror.org/05wtegv53', 'en', 1, 'https://ror.org/05wtegv53 Auckland Medical Research Foundation'),
(89950, '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'),
(89951, 'https://ror.org/05wtrjf23', 'no_lang_code', 1, 'https://ror.org/05wtrjf23 BioAxone BioSciences (United States)'),
(89952, 'https://ror.org/05wzjqa24', 'en', 1, 'https://ror.org/05wzjqa24 State Key Laboratory of Remote Sensing Science é„ę„Ÿē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(89953, 'https://ror.org/05x0tw854', 'en', 0, 'https://ror.org/05x0tw854 Adygeya State University АГыгейский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(89954, 'https://ror.org/05x2f1m38', 'en', 1, 'https://ror.org/05x2f1m38 East China Jiaotong University åŽäøœäŗ¤é€šå¤§å­¦'),
(89955, 'https://ror.org/05x2svh05', 'pt', 1, 'https://ror.org/05x2svh05 Federal Rural University of Semi-Ɓrido Universidade Federal Rural do Semi-Ɓrido'),
(89956, 'https://ror.org/05x358x43', 'en', 1, 'https://ror.org/05x358x43 Sofia University'),
(89957, 'https://ror.org/05x702m23', 'no_lang_code', 0, 'https://ror.org/05x702m23 Dharmacon (United States)'),
(89958, 'https://ror.org/05xbkrn90', 'en', 1, 'https://ror.org/05xbkrn90 Danish Diabetes Academy'),
(89959, 'https://ror.org/05xcarb80', 'en', 1, 'https://ror.org/05xcarb80 VA Greater Los Angeles Healthcare System'),
(89960, 'https://ror.org/05xd6yn79', 'en', 1, 'https://ror.org/05xd6yn79 Wayne and Gladys Valley Foundation'),
(89961, 'https://ror.org/05xd7yf32', 'no_lang_code', 1, 'https://ror.org/05xd7yf32 HŽ Passenger Transport (Croatia) HŽ Putnički Prijevoz'),
(89962, 'https://ror.org/05xerfz82', 'no_lang_code', 0, 'https://ror.org/05xerfz82 Selcia (United Kingdom)'),
(89963, 'https://ror.org/05xh8jn56', 'en', 1, 'https://ror.org/05xh8jn56 Kentucky State University UniversitĆ© d''Ɖtat du kentucky'),
(89964, 'https://ror.org/05xjqrq08', 'no_lang_code', 0, 'https://ror.org/05xjqrq08 Carlo Gavazzi (Italy)'),
(89965, 'https://ror.org/05xm0ec82', 'en', 1, 'https://ror.org/05xm0ec82 Catholic Relief Services'),
(89966, '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'),
(89967, 'https://ror.org/05xp2yp46', 'en', 1, 'https://ror.org/05xp2yp46 Shanghai Municipal People''s Government'),
(89968, 'https://ror.org/05xqpda80', 'en', 1, 'https://ror.org/05xqpda80 Office of Ocean Exploration and Research'),
(89969, 'https://ror.org/05xqsek53', 'en', 1, 'https://ror.org/05xqsek53 International Research Institute for Advanced Systems ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(89970, 'https://ror.org/05xqxa525', 'en', 1, 'https://ror.org/05xqxa525 NIHR Leicester Biomedical Research Centre'),
(89971, 'https://ror.org/05xrb4a64', 'en', 1, 'https://ror.org/05xrb4a64 Foundation for a Cure for Mitochondrial Disease'),
(89972, 'https://ror.org/05xrx2w02', 'en', 1, 'https://ror.org/05xrx2w02 Bernice Barbour Foundation'),
(89973, 'https://ror.org/05xs68x02', 'en', 1, 'https://ror.org/05xs68x02 Anticancer Fund Antikankerfonds Fonds Anticancer'),
(89974, 'https://ror.org/05xt5ra97', 'en', 1, 'https://ror.org/05xt5ra97 Mathile Institute For The Advancement of Human Nutrition'),
(89975, 'https://ror.org/05xte6x19', 'en', 1, 'https://ror.org/05xte6x19 Center for Surveillance, Epidemiology, and Laboratory Services'),
(89976, 'https://ror.org/05xz6wm82', 'en', 1, 'https://ror.org/05xz6wm82 The Kelvin and Eleanor Smith Foundation'),
(89977, 'https://ror.org/05xz9bg76', 'en', 1, 'https://ror.org/05xz9bg76 Kala Art Institute'),
(89978, 'https://ror.org/05xzb7x97', 'es', 1, 'https://ror.org/05xzb7x97 Instituto de Investigación Sanitaria del Principado de Asturias'),
(89979, 'https://ror.org/05y2g7215', 'no_lang_code', 1, 'https://ror.org/05y2g7215 Zeon (Japan) ę—„ęœ¬ć‚¼ć‚Ŗćƒ³ę Ŗå¼ä¼šē¤¾'),
(89980, 'https://ror.org/05y4mds91', 'no_lang_code', 1, 'https://ror.org/05y4mds91 Flanders'' Food (Belgium)'),
(89981, 'https://ror.org/05y4mf750', 'it', 1, 'https://ror.org/05y4mf750 Alleanza Contro il Cancro Alliance Against Cancer'),
(89982, 'https://ror.org/05y6jfx28', 'it', 1, 'https://ror.org/05y6jfx28 Istituto Superiore Mario Boella'),
(89983, 'https://ror.org/05y770z97', 'en', 1, 'https://ror.org/05y770z97 Rasmuson Foundation'),
(89984, 'https://ror.org/05y77zf79', 'en', 1, 'https://ror.org/05y77zf79 Telecommunications Advancement Foundation é›»ę°—é€šäæ”ęŽØé€²č²”å›£'),
(89985, 'https://ror.org/05y99gz91', 'es', 0, 'https://ror.org/05y99gz91 Instituto Nacional de Formacion Tecnica Profesional'),
(89986, 'https://ror.org/05y9csv14', 'en', 1, 'https://ror.org/05y9csv14 Austrian Agency for International Cooperation in Education and Research Ɩsterreichische Austauschdienst GmbH'),
(89987, 'https://ror.org/05y9pr996', 'en', 1, 'https://ror.org/05y9pr996 Metastasis Research Society'),
(89988, 'https://ror.org/05ybzg123', 'en', 0, 'https://ror.org/05ybzg123 Cancer Research UK Cambridge Institute'),
(89989, 'https://ror.org/05yc5h025', 'en', 1, 'https://ror.org/05yc5h025 Hillsong International Leadership College'),
(89990, 'https://ror.org/05yctyn65', 'en', 1, 'https://ror.org/05yctyn65 Japan Institute of Country-ology and Engineering č²”ļ¼‰å›½åœŸęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(89991, 'https://ror.org/05ye86j67', 'no_lang_code', 1, 'https://ror.org/05ye86j67 Carmot Therapeutics (United States)'),
(89992, 'https://ror.org/05yfskh02', 'no_lang_code', 1, 'https://ror.org/05yfskh02 Freeport-McMoRan (United States)'),
(89993, 'https://ror.org/05yh1yv02', 'uz', 0, 'https://ror.org/05yh1yv02 Toshkent Davlat Pedagogika Universiteti'),
(89994, 'https://ror.org/05yjc9b47', 'pl', 0, 'https://ror.org/05yjc9b47 Wyższa Szkoła Humanistyczno-Ekonomiczna we Włocławku'),
(89995, 'https://ror.org/05yk4yy03', 'en', 1, 'https://ror.org/05yk4yy03 Iowa Soybean Association'),
(89996, 'https://ror.org/05yk8d495', 'en', 1, 'https://ror.org/05yk8d495 Orthopedic Institute'),
(89997, 'https://ror.org/05ymca674', 'en', 1, 'https://ror.org/05ymca674 McGovern Institute for Brain Research'),
(89998, 'https://ror.org/05yndxy10', 'en', 1, 'https://ror.org/05yndxy10 UCSF Helen Diller Family Comprehensive Cancer Center'),
(89999, 'https://ror.org/05ypbsn23', 'en', 1, 'https://ror.org/05ypbsn23 Schizophrenia Research Institute'),
(90000, 'https://ror.org/05ypjr115', 'en', 1, 'https://ror.org/05ypjr115 HKBK College of Engineering'),
(90001, 'https://ror.org/000025p04', 'en', 1, 'https://ror.org/000025p04 Thailand Science Research and Innovation ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø„ąø“ąø°ąøąø£ąø£ąø”ąøąø²ąø£ąøŖą¹ˆąø‡ą¹€ąøŖąø£ąø“ąø”ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œ ąø§ąø“ąøˆąø±ąø¢ą¹ąø„ąø°ąø™ąø§ąø±ąø•ąøąø£ąø£ąø”'),
(90002, 'https://ror.org/0001paf45', 'fr', 1, 'https://ror.org/0001paf45 Fondation SegrƩ'),
(90003, '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'),
(90004, 'https://ror.org/0006jh821', 'en', 0, 'https://ror.org/0006jh821 Preventative Health'),
(90005, 'https://ror.org/00085m516', 'no_lang_code', 1, 'https://ror.org/00085m516 Temasek Foundation'),
(90006, 'https://ror.org/0008rqs82', 'en', 1, 'https://ror.org/0008rqs82 Genome Alberta'),
(90007, 'https://ror.org/00098gt02', 'de', 1, 'https://ror.org/00098gt02 Fachagentur Windenergie an Land'),
(90008, 'https://ror.org/000be6g31', 'en', 0, 'https://ror.org/000be6g31 Academic College at Wingate המכללה ×”××§×“×ž×™×Ŗ בוינגייט'),
(90009, 'https://ror.org/000byjn55', 'en', 1, 'https://ror.org/000byjn55 Michigan Botanical Foundation'),
(90010, 'https://ror.org/000epyr61', 'en', 1, 'https://ror.org/000epyr61 High Meadows Foundation'),
(90011, 'https://ror.org/000gpe516', 'en', 1, 'https://ror.org/000gpe516 Universidad American College'),
(90012, 'https://ror.org/000gyeq24', 'en', 1, 'https://ror.org/000gyeq24 State Institution National Antarctic Scientific Center ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ антарктичний науковий центр'),
(90013, 'https://ror.org/000p86k36', 'de', 1, 'https://ror.org/000p86k36 Oel-Waerme-Institut'),
(90014, 'https://ror.org/000psgr90', 'en', 1, 'https://ror.org/000psgr90 Volodymyr Vynnychenko Central Ukrainian State University Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВолоГимира Винниченка'),
(90015, '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'),
(90016, 'https://ror.org/000rse656', 'es', 1, 'https://ror.org/000rse656 Reef Check - Dominican Republic Reef Check - RepĆŗblica Dominicana'),
(90017, 'https://ror.org/000sxmx78', 'en', 1, 'https://ror.org/000sxmx78 Affiliated Eye Hospital of Wenzhou Medical College ęø©å·žåŒ»ē§‘å¤§å­¦é™„å±žēœ¼č§†å…‰åŒ»é™¢'),
(90018, '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'),
(90019, 'https://ror.org/000t8h611', 'en', 1, 'https://ror.org/000t8h611 Al Rayyan International University College'),
(90020, 'https://ror.org/000w32s81', 'en', 1, 'https://ror.org/000w32s81 Australian Disorders of the Corpus Callosum'),
(90021, 'https://ror.org/000wej815', 'no_lang_code', 1, 'https://ror.org/000wej815 Kyowa Kirin (Japan) å”å’Œć‚­ćƒŖćƒ³ę Ŗå¼ä¼šē¤¾'),
(90022, 'https://ror.org/000z46s85', 'en', 1, 'https://ror.org/000z46s85 HĆ“pital Cardiologique Lille’s Cardiology Hospital'),
(90023, 'https://ror.org/0013ks972', 'en', 0, 'https://ror.org/0013ks972 Dudley and Walsall Mental Health Partnership NHS Trust'),
(90024, 'https://ror.org/00178eg98', 'en', 0, 'https://ror.org/00178eg98 Max Planck Institute for Ornithology Max-Planck-Institut für Ornithologie'),
(90025, 'https://ror.org/0017d4a72', 'en', 1, 'https://ror.org/0017d4a72 Albuquerque Museum Foundation'),
(90026, 'https://ror.org/0017jqh36', 'en', 1, 'https://ror.org/0017jqh36 Giraffe Conservation Foundation'),
(90027, 'https://ror.org/001a7je44', 'no_lang_code', 1, 'https://ror.org/001a7je44 Scienion (United States)'),
(90028, 'https://ror.org/001bzc417', 'en', 1, 'https://ror.org/001bzc417 Fujian Women and Children Hospital'),
(90029, 'https://ror.org/001d2bp15', 'en', 1, 'https://ror.org/001d2bp15 Community Mercy Health Partners'),
(90030, 'https://ror.org/001e43z98', 'de', 1, 'https://ror.org/001e43z98 Free University of Stuttgart Freie Hochschule Stuttgart'),
(90031, 'https://ror.org/001e78g50', 'es', 1, 'https://ror.org/001e78g50 Junta de Beneficencia de Guayaquil'),
(90032, 'https://ror.org/001ecav82', 'en', 1, 'https://ror.org/001ecav82 Bernardino Rivadavia Natural Sciences Museum Museo Argentino de Ciencias Naturales Bernardino Rivadavia'),
(90033, 'https://ror.org/001g2x261', 'de', 1, 'https://ror.org/001g2x261 Institut für Unternehmenskybernetik'),
(90034, 'https://ror.org/001ggbx22', 'en', 1, 'https://ror.org/001ggbx22 National Institute of Infectious Diseases åŽšē”ŸåŠ“åƒēœå›½ē«‹ę„ŸęŸ“ē—‡ē ”ē©¶ę‰€'),
(90035, 'https://ror.org/001j5ag10', 'fr', 1, 'https://ror.org/001j5ag10 Agence wallonne Ơ l''Exportation et aux Investissements Ʃtrangers'),
(90036, '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'),
(90037, 'https://ror.org/001mj0863', 'en', 1, 'https://ror.org/001mj0863 Ankole Western University'),
(90038, 'https://ror.org/001n0zm21', 'en', 0, 'https://ror.org/001n0zm21 Edinboro University'),
(90039, 'https://ror.org/001n36p86', 'en', 1, 'https://ror.org/001n36p86 Meteorologisk institutt Norwegian Meteorological Institute'),
(90040, 'https://ror.org/001qntc44', 'en', 1, 'https://ror.org/001qntc44 Kalihi Palama Health Center'),
(90041, 'https://ror.org/001r1xj25', 'fr', 1, 'https://ror.org/001r1xj25 Investigations sur l’histoire et l’actualitĆ© des mutations architecturales et urbaines'),
(90042, 'https://ror.org/001rdaz60', 'en', 1, 'https://ror.org/001rdaz60 Bavarian Academy of Sciences and Humanities Bayerische Akademie der Wissenschaften'),
(90043, 'https://ror.org/001rzrn98', 'es', 1, 'https://ror.org/001rzrn98 Sociedad MatemƔtica Mexicana'),
(90044, 'https://ror.org/0020rgm10', 'en', 1, 'https://ror.org/0020rgm10 State Horticultural Association of Pennsylvania'),
(90045, 'https://ror.org/0021fvv57', 'en', 1, 'https://ror.org/0021fvv57 ICTP South American Institute for Fundamental Research'),
(90046, 'https://ror.org/0025ww868', 'en', 1, 'https://ror.org/0025ww868 National Cancer Centre Japan å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹ćŒć‚“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(90047, 'https://ror.org/00268wk31', 'en', 1, 'https://ror.org/00268wk31 University of Kurdistan Hewler Zankoy Kurdistan – HewlĆŖr Ų¬Ų§Ł…Ų¹Ų© ŁƒŲ±ŲÆŲ³ŲŖŲ§Ł†'),
(90048, 'https://ror.org/0028v3876', 'en', 1, 'https://ror.org/0028v3876 National Chung Cheng University åœ‹ē«‹äø­ę­£å¤§å­ø'),
(90049, 'https://ror.org/002a29y03', 'en', 1, 'https://ror.org/002a29y03 Open University of Libya'),
(90050, 'https://ror.org/002ak8r79', 'no_lang_code', 0, 'https://ror.org/002ak8r79 BMT Fluid Mechanics (United Kingdom)'),
(90051, 'https://ror.org/002c9p632', 'de', 1, 'https://ror.org/002c9p632 Institut für Geschichtliche Landeskunde Rheinland-Pfalz e.V.'),
(90052, 'https://ror.org/002cx2f43', 'en', 1, 'https://ror.org/002cx2f43 IVC Evidensia'),
(90053, 'https://ror.org/002eh7j54', 'en', 1, 'https://ror.org/002eh7j54 Aulavik National Park Parc national Aulavik'),
(90054, 'https://ror.org/002fjc781', 'en', 1, 'https://ror.org/002fjc781 Peter Sowerby Foundation'),
(90055, 'https://ror.org/002g3kz75', 'no_lang_code', 1, 'https://ror.org/002g3kz75 Flughafen Zürich Zürich Airport (Switzerland)'),
(90056, 'https://ror.org/002g4yr42', 'en', 1, 'https://ror.org/002g4yr42 Gamal Abdel Nasser University of Conakry UniversitƩ gamal abdel nasser de conakry'),
(90057, 'https://ror.org/002hc6y19', 'it', 0, 'https://ror.org/002hc6y19 Bologna Astronomical Observatory Osservatorio astronomico di Bologna'),
(90058, 'https://ror.org/002jjge32', 'en', 1, 'https://ror.org/002jjge32 Fundy National Park Parc national de Fundy'),
(90059, 'https://ror.org/002jrdr94', 'en', 1, 'https://ror.org/002jrdr94 Centre for Transport and Energy Centrum pro dopravu a energetiku'),
(90060, 'https://ror.org/002kenh51', 'en', 1, 'https://ror.org/002kenh51 Jerusalem College of Technology ×”×ž×Ø×›×– האקדמי לב'),
(90061, 'https://ror.org/002kn6n54', 'en', 1, 'https://ror.org/002kn6n54 Brussels School of International Studies'),
(90062, 'https://ror.org/002nhnx25', 'en', 0, 'https://ror.org/002nhnx25 Saimaa University of Applied Sciences Saimaan ammattikorkeakoulu'),
(90063, 'https://ror.org/002njmw59', 'en', 1, 'https://ror.org/002njmw59 Department of Tourism, Culture, Arts and Recreation'),
(90064, 'https://ror.org/002pscq53', 'en', 1, 'https://ror.org/002pscq53 NOAA National Weather Service Southern Region'),
(90065, 'https://ror.org/002rm9455', 'en', 0, 'https://ror.org/002rm9455 Colchester Hospital University NHS Foundation Trust'),
(90066, 'https://ror.org/002rr8291', 'en', 1, 'https://ror.org/002rr8291 O''zbekiston Milliy Metrologiya Instituti Uzbek National Institute of Metrology Узбекский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(90067, 'https://ror.org/002shdh75', 'en', 1, 'https://ror.org/002shdh75 NOAA Office of Habitat Conservation'),
(90068, 'https://ror.org/002skex07', 'en', 1, 'https://ror.org/002skex07 Mohamed Bin Zayed Species Conservation Fund'),
(90069, 'https://ror.org/002ttqg42', 'en', 1, 'https://ror.org/002ttqg42 Australian Institute of Music'),
(90070, 'https://ror.org/002v5yw74', 'de', 1, 'https://ror.org/002v5yw74 Wasserstraßen- und Schifffahrtsamt Rhein'),
(90071, 'https://ror.org/002wh3v03', 'nl', 1, 'https://ror.org/002wh3v03 Parnassia Groep'),
(90072, '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'),
(90073, 'https://ror.org/002ye0093', 'es', 1, 'https://ror.org/002ye0093 ELLIS Alicante'),
(90074, 'https://ror.org/002ysmy84', 'no_lang_code', 1, 'https://ror.org/002ysmy84 Takeda (Switzerland)'),
(90075, 'https://ror.org/002yxfz10', 'no_lang_code', 1, 'https://ror.org/002yxfz10 ASM International (Netherlands)'),
(90076, 'https://ror.org/00309wp03', 'en', 1, 'https://ror.org/00309wp03 Davee Foundation'),
(90077, 'https://ror.org/00319zh75', 'en', 1, 'https://ror.org/00319zh75 Advanced Light Source'),
(90078, 'https://ror.org/0031khd05', 'en', 1, 'https://ror.org/0031khd05 Ministry of Science and Technology ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(90079, 'https://ror.org/00337jt79', 'en', 1, 'https://ror.org/00337jt79 Upper Great Plains Transportation Institute'),
(90080, 'https://ror.org/0033tr965', 'en', 1, 'https://ror.org/0033tr965 University of Bandundu UniversitƩ de bandundu'),
(90081, 'https://ror.org/0033v8v27', 'no_lang_code', 0, 'https://ror.org/0033v8v27 Freescale Semiconductor (Germany)'),
(90082, 'https://ror.org/00363z010', 'en', 1, 'https://ror.org/00363z010 SjƦllands Universitetshospital Zealand University Hospital'),
(90083, 'https://ror.org/00376bg92', 'en', 1, 'https://ror.org/00376bg92 University of Guam'),
(90084, 'https://ror.org/0038t2c13', 'en', 1, 'https://ror.org/0038t2c13 Biblioteca nazionale svizzera BibliothĆØque nationale suisse Schweizerische Nationalbibliothek Swiss National Library'),
(90085, 'https://ror.org/0039d5757', 'pt', 1, 'https://ror.org/0039d5757 Federal University of GoiƔs Universidade Federal de GoiƔs'),
(90086, 'https://ror.org/0039pzg53', 'no_lang_code', 1, 'https://ror.org/0039pzg53 Globeride (Japan)'),
(90087, 'https://ror.org/0039sga55', 'no_lang_code', 1, 'https://ror.org/0039sga55 Mahle (Austria)'),
(90088, 'https://ror.org/003bst688', 'en', 1, 'https://ror.org/003bst688 Florida Academy of Science'),
(90089, 'https://ror.org/003ckn545', 'fr', 1, 'https://ror.org/003ckn545 Laboratoire d''Ɖconomie MathĆ©matique et de MicroĆ©conomie AppliquĆ©e'),
(90090, 'https://ror.org/003dfhs04', 'fr', 0, 'https://ror.org/003dfhs04 Institut de Physique NuclĆ©aire d’Orsay'),
(90091, 'https://ror.org/003hg6k65', 'no_lang_code', 1, 'https://ror.org/003hg6k65 China Railway Eryuan Engineering Group Co. äø­é“äŗŒé™¢å·„ēØ‹é›†å›¢ęœ‰é™č“£ä»»å…¬åø'),
(90092, 'https://ror.org/003hmh164', 'pt', 1, 'https://ror.org/003hmh164 Instituto Estadual do Ambiente do Rio de Janeiro'),
(90093, 'https://ror.org/003mr9q86', 'no_lang_code', 1, 'https://ror.org/003mr9q86 Horizon Therapeutics (United Kingdom)'),
(90094, 'https://ror.org/003n6yt61', 'no_lang_code', 0, 'https://ror.org/003n6yt61 Derma Sciences (United States)'),
(90095, 'https://ror.org/003njxk77', 'en', 1, 'https://ror.org/003njxk77 Partido State University'),
(90096, 'https://ror.org/003regz62', 'en', 1, 'https://ror.org/003regz62 Beijing Tian Tan Hospital åŒ—äŗ¬åø‚ē„žē»å¤–ē§‘ē ”ē©¶ę‰€'),
(90097, 'https://ror.org/003rrzw18', 'en', 1, 'https://ror.org/003rrzw18 Gaston Memorial Hospital'),
(90098, 'https://ror.org/003sdgd41', 'es', 1, 'https://ror.org/003sdgd41 Universidad San Marcos'),
(90099, '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'),
(90100, 'https://ror.org/003vet424', 'es', 1, 'https://ror.org/003vet424 Centro Científico Tecnológico - Santa Fe'),
(90101, 'https://ror.org/003wdqw68', 'en', 1, 'https://ror.org/003wdqw68 Kyiv Medical University ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(90102, 'https://ror.org/003x31543', 'es', 1, 'https://ror.org/003x31543 Instituto Dominicano de Evaluación e Investigación de la Calidad Educativa'),
(90103, 'https://ror.org/0040zx077', 'en', 1, 'https://ror.org/0040zx077 Istituto di Ricerca per la Protezione Idrogeologica Research Institute for Geo-Hydrological Protection'),
(90104, 'https://ror.org/0042fhg98', 'no_lang_code', 1, 'https://ror.org/0042fhg98 FogPharma (United States)'),
(90105, 'https://ror.org/0046t1019', 'en', 1, 'https://ror.org/0046t1019 Eskenazi Health'),
(90106, 'https://ror.org/004c11w41', 'nl', 1, 'https://ror.org/004c11w41 Erasmus MC Cardiovascular Institute Erasmus MC Hart en Vaat Instituut'),
(90107, 'https://ror.org/004ezwb23', 'en', 1, 'https://ror.org/004ezwb23 State Tax University Державний поГатковий ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(90108, 'https://ror.org/004h40g54', 'no_lang_code', 1, 'https://ror.org/004h40g54 Mehr Alborz University دانؓگاه مهرالبرز'),
(90109, 'https://ror.org/004jrp527', 'no_lang_code', 1, 'https://ror.org/004jrp527 Monguz Information Technology Ltd. (Hungary) Monguz InformÔciótechnológiai Kft.'),
(90110, 'https://ror.org/004mbaj56', 'en', 1, 'https://ror.org/004mbaj56 Yarmouk University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŲ±Ł…ŁˆŁƒ'),
(90111, 'https://ror.org/004mzjh28', 'en', 1, 'https://ror.org/004mzjh28 Daughters of Charity Health System'),
(90112, 'https://ror.org/004n3ms37', 'en', 1, 'https://ror.org/004n3ms37 European Society for Paediatric Research'),
(90113, 'https://ror.org/004p33j95', 'en', 1, 'https://ror.org/004p33j95 Sudanese Universities Information Network'),
(90114, '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 ГАУЗ "Республиканский клинический онкологический Гиспансер ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Республики Татарстан имени профессора М.Š—. Дигала"'),
(90115, 'https://ror.org/004pwee45', 'fr', 1, 'https://ror.org/004pwee45 Fondation Schlumberger pour l’Education et la Recherche'),
(90116, 'https://ror.org/004q7ve22', 'ca', 1, 'https://ror.org/004q7ve22 Museu de Prehistòria de València'),
(90117, 'https://ror.org/004sbqf57', 'en', 1, 'https://ror.org/004sbqf57 International Society for Prosthetics and Orthotics'),
(90118, 'https://ror.org/004t5s645', 'de', 1, 'https://ror.org/004t5s645 FOSSGIS'),
(90119, 'https://ror.org/004wre089', 'en', 1, 'https://ror.org/004wre089 SINTEF Ocean'),
(90120, 'https://ror.org/004y1jf02', 'en', 1, 'https://ror.org/004y1jf02 Annai Velankanni College ą®…ą®©ąÆą®©ąÆˆ ą®µąÆ‡ą®³ą®¾ą®™ąÆą®•ą®£ąÆą®£ą®æ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(90121, 'https://ror.org/004ydw344', 'fr', 1, 'https://ror.org/004ydw344 Archives nationales'),
(90122, 'https://ror.org/004yh2r83', 'no_lang_code', 1, 'https://ror.org/004yh2r83 Inqaba Biotechnical Industries Inqaba Biotegniese Nywerhede'),
(90123, 'https://ror.org/004z5jb02', 'en', 1, 'https://ror.org/004z5jb02 Brain Tumor Awareness Organization'),
(90124, 'https://ror.org/004zhf707', 'en', 1, 'https://ror.org/004zhf707 Korea Foundation'),
(90125, 'https://ror.org/0050bke46', 'pl', 0, 'https://ror.org/0050bke46 Wyższa Szkoła Ekonomiczno-Humanistyczna im.prof. Szczepana A. Pieniążka'),
(90126, 'https://ror.org/0050pwh10', 'es', 1, 'https://ror.org/0050pwh10 Asociación TEDIC'),
(90127, 'https://ror.org/0051k4p26', 'en', 1, 'https://ror.org/0051k4p26 Sanaag University of Science and Technology'),
(90128, 'https://ror.org/0051wzj62', 'sv', 1, 'https://ror.org/0051wzj62 Henning and Johan Throne-Holst''s Foundation Henning och Johan Throne-Holst stiftelse'),
(90129, 'https://ror.org/0056r6621', 'es', 1, 'https://ror.org/0056r6621 Constitutional Court of Spain Tribunal Constitucional de EspaƱa'),
(90130, 'https://ror.org/0058xky36', 'en', 1, 'https://ror.org/0058xky36 Wachemo University'),
(90131, 'https://ror.org/005azck40', 'en', 1, 'https://ror.org/005azck40 Villa College'),
(90132, 'https://ror.org/005b4k264', 'en', 1, 'https://ror.org/005b4k264 Center for Scientific Integrity'),
(90133, 'https://ror.org/005c9q773', 'en', 1, 'https://ror.org/005c9q773 City College Southampton'),
(90134, 'https://ror.org/005cqnj98', 'no_lang_code', 0, 'https://ror.org/005cqnj98 Testia (France)'),
(90135, 'https://ror.org/005e63s11', 'id', 1, 'https://ror.org/005e63s11 Sekolah Tinggi Ilmu Ekonomi Stan Im'),
(90136, 'https://ror.org/005e8fd26', 'en', 0, 'https://ror.org/005e8fd26 Neurophotonics Laboratory'),
(90137, 'https://ror.org/005g07p37', 'en', 1, 'https://ror.org/005g07p37 Iberoamerican University of Science and Technology Universidad Iberoamericana de Ciencias y TecnologĆ­a'),
(90138, 'https://ror.org/005hq2w28', 'de', 1, 'https://ror.org/005hq2w28 Wehrtechnische Dienststelle für Schiffe und Marinewaffen, Maritime Technologie und Forschung'),
(90139, 'https://ror.org/005jv5x16', 'id', 1, 'https://ror.org/005jv5x16 Universitas Mayjen Sungkono'),
(90140, 'https://ror.org/005k30451', 'en', 1, 'https://ror.org/005k30451 Kapiolani Medical Center for Women and Children'),
(90141, 'https://ror.org/005k9c849', 'de', 1, 'https://ror.org/005k9c849 Evangelische Stiftung Volmarstein'),
(90142, 'https://ror.org/005m9ez36', 'en', 1, 'https://ror.org/005m9ez36 Aegean College'),
(90143, 'https://ror.org/005n5zv88', 'no_lang_code', 1, 'https://ror.org/005n5zv88 Volvo Cars (Sweden)'),
(90144, 'https://ror.org/005nqtf16', 'en', 1, 'https://ror.org/005nqtf16 Fondazione Giorgio Cini Giorgio Cini Foundation'),
(90145, 'https://ror.org/005nzs995', 'no_lang_code', 1, 'https://ror.org/005nzs995 GLE'),
(90146, 'https://ror.org/005qv2b46', 'no_lang_code', 1, 'https://ror.org/005qv2b46 Sarawak Energy (Malaysia)'),
(90147, 'https://ror.org/005sm0w71', 'en', 1, 'https://ror.org/005sm0w71 NOAA Geostationary Extended Observations'),
(90148, 'https://ror.org/005vhrs19', 'en', 0, 'https://ror.org/005vhrs19 International Council for Science'),
(90149, 'https://ror.org/005xmsp39', 'en', 1, 'https://ror.org/005xmsp39 Leibniz-Centre for Contemporary History Leibniz-Zentrum für Zeithistorische Forschung'),
(90150, 'https://ror.org/005yj4753', 'en', 1, 'https://ror.org/005yj4753 Associazione per la Promozione della Geoetica International Association for Promoting Geoethics'),
(90151, 'https://ror.org/0061q5f61', 'en', 1, 'https://ror.org/0061q5f61 NOAA Air Resources Laboratory'),
(90152, 'https://ror.org/0061vr059', 'de', 1, 'https://ror.org/0061vr059 Zentrum für Militärgeschichte und Sozialwissenschaften der Bundeswehr'),
(90153, 'https://ror.org/0064a4q73', 'no_lang_code', 0, 'https://ror.org/0064a4q73 Oncothyreon (United States)'),
(90154, 'https://ror.org/0066xvx18', 'en', 1, 'https://ror.org/0066xvx18 Lucile Packard Foundation for Childrens Health'),
(90155, 'https://ror.org/006806c04', 'no_lang_code', 1, 'https://ror.org/006806c04 BioMar (Denmark)'),
(90156, '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'),
(90157, 'https://ror.org/0068r0y33', 'en', 0, 'https://ror.org/0068r0y33 University of Wisconsin–Eau Claire – Barron County'),
(90158, 'https://ror.org/0069s6n55', 'sv', 1, 'https://ror.org/0069s6n55 Sveriges Riksdag Swedish Parliament'),
(90159, 'https://ror.org/006ddyp05', 'en', 1, 'https://ror.org/006ddyp05 NOAA Global Systems Laboratory'),
(90160, 'https://ror.org/006e48x19', 'en', 1, 'https://ror.org/006e48x19 Five Colleges'),
(90161, 'https://ror.org/006edv995', 'de', 1, 'https://ror.org/006edv995 G2W'),
(90162, 'https://ror.org/006ehed04', 'en', 0, 'https://ror.org/006ehed04 Interactive Institute'),
(90163, 'https://ror.org/006evg656', 'fr', 1, 'https://ror.org/006evg656 HƓpital de la Croix-Rousse'),
(90164, 'https://ror.org/006f2dx14', 'en', 1, 'https://ror.org/006f2dx14 (ISC)²'),
(90165, 'https://ror.org/006gc9859', 'no_lang_code', 0, 'https://ror.org/006gc9859 Cyberstar (France)'),
(90166, 'https://ror.org/006gdh705', 'en', 1, 'https://ror.org/006gdh705 Electric Vehicle Challenge'),
(90167, 'https://ror.org/006h66z43', 'no_lang_code', 1, 'https://ror.org/006h66z43 Exploro Geoservices'),
(90168, 'https://ror.org/006ha1k08', 'en', 1, 'https://ror.org/006ha1k08 NOAA Aviation Weather Center'),
(90169, 'https://ror.org/006hc7f90', 'en', 1, 'https://ror.org/006hc7f90 Foundation for Food and Agriculture Research'),
(90170, 'https://ror.org/006k1jy06', 'en', 1, 'https://ror.org/006k1jy06 Syed Jamaluddin Afghan University دانؓگاه سید جمال Ų§Ł„ŲÆŪŒŁ† افغان'),
(90171, 'https://ror.org/006knb923', 'en', 1, 'https://ror.org/006knb923 Khushal Khan Khattak University Karak ŲÆ Ų®ŁˆŲ“Ų­Ų§Ł„ خان خټک Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† کرک'),
(90172, 'https://ror.org/006kr7r70', 'no_lang_code', 1, 'https://ror.org/006kr7r70 Okavango Research Institute'),
(90173, 'https://ror.org/006p4kh13', 'en', 1, 'https://ror.org/006p4kh13 NOAA Joint Polar Satellite System Program Office'),
(90174, 'https://ror.org/006shqv80', 'fr', 1, 'https://ror.org/006shqv80 Centre d''Ɖconomie de la Sorbonne'),
(90175, 'https://ror.org/006v63s16', 'en', 1, 'https://ror.org/006v63s16 National University of Engineering Universidad Nacional de IngenierĆ­a'),
(90176, 'https://ror.org/006vx3924', 'en', 1, 'https://ror.org/006vx3924 St. Vincent''s Medical Center'),
(90177, 'https://ror.org/006vxbq87', 'en', 1, 'https://ror.org/006vxbq87 HUN-REN Atommagkutató Intézet HUN-REN Institute for Nuclear Research'),
(90178, 'https://ror.org/006x48140', 'it', 1, 'https://ror.org/006x48140 Istituto di Ricovero e Cura a Carattere Scientifico San Raffaele'),
(90179, 'https://ror.org/006x8s867', 'en', 1, 'https://ror.org/006x8s867 International Life Sciences Institute'),
(90180, 'https://ror.org/006yjsn14', 'en', 1, 'https://ror.org/006yjsn14 Brighton Hospital'),
(90181, 'https://ror.org/006yspz11', 'fr', 1, 'https://ror.org/006yspz11 HÓpital Femme Mère Enfant'),
(90182, 'https://ror.org/006z80t96', 'en', 1, 'https://ror.org/006z80t96 Trinity Health'),
(90183, 'https://ror.org/006zy7j55', 'eu', 1, 'https://ror.org/006zy7j55 HABE Liburutegia'),
(90184, 'https://ror.org/0071qz696', 'en', 1, 'https://ror.org/0071qz696 Can Tho University TrĘ°į»ng ĐẔi hį»c Cįŗ§n ThĘ”'),
(90185, 'https://ror.org/0075rng13', 'fr', 1, 'https://ror.org/0075rng13 Institut d’HĆ©matologie et d’Oncologie PĆ©diatrique'),
(90186, 'https://ror.org/0076mt865', 'no_lang_code', 1, 'https://ror.org/0076mt865 Cohu (United States)'),
(90187, 'https://ror.org/0077rd258', 'en', 1, 'https://ror.org/0077rd258 Trinity Health Livingston Hospital'),
(90188, 'https://ror.org/00789fa95', 'it', 1, 'https://ror.org/00789fa95 Ministero della Salute Ministry of Health'),
(90189, 'https://ror.org/0079deh61', 'en', 1, 'https://ror.org/0079deh61 Ministerie van Defensie Ministry of Defence'),
(90190, 'https://ror.org/007ef4t67', 'en', 0, 'https://ror.org/007ef4t67 Department of Mines and Petroleum'),
(90191, 'https://ror.org/007fpb915', 'es', 1, 'https://ror.org/007fpb915 Andrés Bello Catholic University Universidad Católica Andrés Bello'),
(90192, 'https://ror.org/007h69x34', 'no_lang_code', 1, 'https://ror.org/007h69x34 Fibabanka'),
(90193, 'https://ror.org/007hfn712', 'de', 1, 'https://ror.org/007hfn712 Wasserstraßen- und Schifffahrtsamt Main'),
(90194, 'https://ror.org/007jb8237', 'no_lang_code', 1, 'https://ror.org/007jb8237 ATAF (Italy)'),
(90195, 'https://ror.org/007kp6q87', 'en', 1, 'https://ror.org/007kp6q87 Family Health International 360'),
(90196, 'https://ror.org/007nqxr53', 'no_lang_code', 1, 'https://ror.org/007nqxr53 Kairos Power (United States)'),
(90197, 'https://ror.org/007p95871', 'no_lang_code', 0, 'https://ror.org/007p95871 Rohwedder (Germany)'),
(90198, 'https://ror.org/007peeq98', 'en', 0, 'https://ror.org/007peeq98 Dallas Personal Injury Lawyer'),
(90199, 'https://ror.org/007pvy114', 'en', 1, 'https://ror.org/007pvy114 OspidƩal na hOllscoile, Port LƔirge University Hospital Waterford'),
(90200, 'https://ror.org/007scx377', 'en', 1, 'https://ror.org/007scx377 Kouchibouguac National Park Parc national de Kouchibouguac'),
(90201, 'https://ror.org/007tjaq50', 'en', 1, 'https://ror.org/007tjaq50 Council for Science, Technology and Innovation ē·åˆē§‘å­¦ęŠ€č”“ćƒ»ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ä¼šč­°'),
(90202, 'https://ror.org/007vkej58', 'en', 1, 'https://ror.org/007vkej58 Isaac Newton Institute for Mathematical Sciences'),
(90203, 'https://ror.org/007wh4e50', 'fr', 0, 'https://ror.org/007wh4e50 Centre de SpectromƩtrie NuclƩaire et de SpectromƩtrie de Masse'),
(90204, 'https://ror.org/007wwmx82', 'en', 1, 'https://ror.org/007wwmx82 Nasionale Instituut vir Oordraagbare Siektes National Institute for Communicable Diseases'),
(90205, 'https://ror.org/007ysvs16', 'en', 1, 'https://ror.org/007ysvs16 Institute for Citizens & Scholars'),
(90206, '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'),
(90207, 'https://ror.org/0081b9a48', 'en', 1, 'https://ror.org/0081b9a48 Coypu Foundation'),
(90208, 'https://ror.org/0081myy06', 'en', 1, 'https://ror.org/0081myy06 Delta Research and Educational Foundation'),
(90209, 'https://ror.org/00821s992', 'es', 1, 'https://ror.org/00821s992 Ministerio de Educación y Ciencias'),
(90210, 'https://ror.org/00822yn93', 'es', 1, 'https://ror.org/00822yn93 Institute of Physics of Buenos Aires Instituto de FĆ­sica de Buenos Aires'),
(90211, 'https://ror.org/0082wq496', 'es', 1, 'https://ror.org/0082wq496 Secretaria de Salud'),
(90212, 'https://ror.org/0083hz885', 'en', 1, 'https://ror.org/0083hz885 Health Services Research & Development'),
(90213, 'https://ror.org/0083yee78', 'en', 1, 'https://ror.org/0083yee78 Shota Meskhia State Teaching University of Zugdidi'),
(90214, 'https://ror.org/0084fbz83', 'en', 1, 'https://ror.org/0084fbz83 Ghana Standards Authority'),
(90215, 'https://ror.org/008599w49', 'en', 1, 'https://ror.org/008599w49 National Library and Archives Ų§Ł„Ų£Ų±Ų“ŁŠŁ ŁˆŲ§Ł„Ł…ŁƒŲŖŲØŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(90216, 'https://ror.org/0085j8z36', 'en', 1, 'https://ror.org/0085j8z36 Sacred Heart University'),
(90217, 'https://ror.org/00867fn66', 'en', 1, 'https://ror.org/00867fn66 Azerbaijan Institute of Metrology Azerbaycan Metrologiya Institutu'),
(90218, 'https://ror.org/008891s18', 'fi', 1, 'https://ror.org/008891s18 Suomen Biologian Seura Vanamo ry'),
(90219, 'https://ror.org/008a1t746', 'en', 0, 'https://ror.org/008a1t746 South Russian State Technical University Южно-Российский Š³Š¾ŃŃƒŠ“арственный политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(90220, 'https://ror.org/008aa2j83', 'en', 1, 'https://ror.org/008aa2j83 Tilak Dhari Post Graduate College'),
(90221, '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)'),
(90222, 'https://ror.org/008cfmj78', 'en', 1, 'https://ror.org/008cfmj78 Wyss Institute for Biologically Inspired Engineering'),
(90223, 'https://ror.org/008d6q968', 'es', 1, 'https://ror.org/008d6q968 Universidad Nacional del Centro del PerĆŗ'),
(90224, 'https://ror.org/008dewj11', 'en', 1, 'https://ror.org/008dewj11 Estonian National Defense College KaitsevƤe Ɯhendatud ƕppeasutused'),
(90225, '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'),
(90226, 'https://ror.org/008ec8r60', 'en', 1, 'https://ror.org/008ec8r60 Canmet Mining'),
(90227, 'https://ror.org/008hssd09', 'it', 1, 'https://ror.org/008hssd09 Lazio Region Regione Lazio'),
(90228, 'https://ror.org/008kdr741', 'pt', 1, 'https://ror.org/008kdr741 Hospital UniversitƔrio GaffrƩe e Guinle'),
(90229, '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'),
(90230, 'https://ror.org/008ptfs71', 'no_lang_code', 1, 'https://ror.org/008ptfs71 Cocrystal Pharma'),
(90231, 'https://ror.org/008r9vm50', 'no_lang_code', 1, 'https://ror.org/008r9vm50 Sinnar University Ų¬Ų§Ł…Ų¹Ų© سنار'),
(90232, 'https://ror.org/008rtte29', 'en', 1, 'https://ror.org/008rtte29 Griffin Hospital'),
(90233, 'https://ror.org/008sy4716', 'en', 1, 'https://ror.org/008sy4716 Parcs Canada Parks Canada'),
(90234, 'https://ror.org/008t9c882', 'en', 1, 'https://ror.org/008t9c882 Thornbury Hospital'),
(90235, 'https://ror.org/008tj9y10', 'en', 1, 'https://ror.org/008tj9y10 Badan Penelitian dan Pengembangan Kota Pekanbaru Research and Development Agency of Pekanbaru City'),
(90236, 'https://ror.org/008vm1c77', 'en', 1, 'https://ror.org/008vm1c77 Health Foundation Limburg'),
(90237, 'https://ror.org/008wrw613', 'de', 1, 'https://ror.org/008wrw613 Behörde für Schule und Berufsbildung'),
(90238, 'https://ror.org/00949d647', 'en', 1, 'https://ror.org/00949d647 Ministerium für Bildung, Wissenschaft und Kultur Ministry of Education, Science and Culture'),
(90239, 'https://ror.org/0094aqg59', 'de', 1, 'https://ror.org/0094aqg59 Wasserstraßen- und Schifffahrtsamt Nord-Ostsee-Kanal'),
(90240, 'https://ror.org/0094hc805', 'en', 1, 'https://ror.org/0094hc805 Center for Advanced Preclinical Imaging Centrum pokročilĆ©ho preklinickĆ©ho zobrazovĆ”nĆ­'),
(90241, 'https://ror.org/0094nqb38', 'en', 1, 'https://ror.org/0094nqb38 Academe of Grassland And Animal Science äŗ‘å—ēœč‰åœ°åŠØē‰©ē§‘å­¦ē ”ē©¶é™¢'),
(90242, 'https://ror.org/0095bnv13', 'en', 1, 'https://ror.org/0095bnv13 Sir Edward ''Weary'' Dunlop Medical Research Foundation'),
(90243, 'https://ror.org/0095rxa03', 'de', 1, 'https://ror.org/0095rxa03 Wasserstraßen-Neubauamt Helmstedt'),
(90244, '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'),
(90245, 'https://ror.org/0098hst83', 'no_lang_code', 1, 'https://ror.org/0098hst83 China Electronics Technology Group Corporation äø­å›½ē”µå­ē§‘ęŠ€é›†å›¢å…¬åø'),
(90246, 'https://ror.org/0098sx518', 'fr', 0, 'https://ror.org/0098sx518 Laboratoire de Cristallographie et RMN Biologiques'),
(90247, 'https://ror.org/00991e274', 'fr', 0, 'https://ror.org/00991e274 DiffƩrenciation et Communication Neuronale et Neuroendocrine'),
(90248, 'https://ror.org/009aftg61', 'de', 1, 'https://ror.org/009aftg61 Dienstleistungszentrum LƤndlicher Raum Rheinpfalz'),
(90249, 'https://ror.org/009axtj18', 'en', 1, 'https://ror.org/009axtj18 Western Crop Genetics Alliance'),
(90250, 'https://ror.org/009ay5m23', 'fr', 0, 'https://ror.org/009ay5m23 Institut d''Imagerie BiomƩdicale'),
(90251, 'https://ror.org/009cc1d57', 'id', 1, 'https://ror.org/009cc1d57 UIN Sunan Ampel Surabaya, Universitas Islam Negeri Sunan Ampel Surabaya'),
(90252, 'https://ror.org/009daqn45', 'en', 1, 'https://ror.org/009daqn45 Nile University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„'),
(90253, 'https://ror.org/009djdq91', 'en', 1, 'https://ror.org/009djdq91 Universities Research Association'),
(90254, 'https://ror.org/009dm8p56', 'en', 1, 'https://ror.org/009dm8p56 European Climate Foundation'),
(90255, 'https://ror.org/009e9xr64', 'cs', 1, 'https://ror.org/009e9xr64 Bulovka Hospital FakultnĆ­ nemocnice Bulovka'),
(90256, 'https://ror.org/009ey6w22', 'en', 1, 'https://ror.org/009ey6w22 Texas State University System'),
(90257, 'https://ror.org/009g6xd12', 'en', 1, 'https://ror.org/009g6xd12 Taichung Municipal Taichung First Senior High School č‡ŗäø­åø‚ē«‹č‡ŗäø­ē¬¬äø€é«˜ē“šäø­ē­‰å­øę ”'),
(90258, 'https://ror.org/009gavr08', 'no_lang_code', 1, 'https://ror.org/009gavr08 Empresa Nacional de AeronƔutica'),
(90259, 'https://ror.org/009hdbz24', 'no_lang_code', 1, 'https://ror.org/009hdbz24 Vodafone (Italy)'),
(90260, 'https://ror.org/009hmnr85', 'en', 1, 'https://ror.org/009hmnr85 Southeast Climate Adaptation Science Center'),
(90261, 'https://ror.org/009j6zj10', 'en', 1, 'https://ror.org/009j6zj10 International Cytokine & Interferon Society'),
(90262, 'https://ror.org/009jear33', 'en', 1, 'https://ror.org/009jear33 Malaria Consortium'),
(90263, 'https://ror.org/009jksw02', 'id', 1, 'https://ror.org/009jksw02 Universitas Ubudiyah Indonesia'),
(90264, 'https://ror.org/009kabt51', 'en', 0, 'https://ror.org/009kabt51 Miami University Middletown'),
(90265, 'https://ror.org/009nfym65', 'en', 1, 'https://ror.org/009nfym65 Post Graduate Institute of Medical Education and Research ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤šą¤£ą„ą¤”ą„€ą¤—ą¤¢ą¤¼ ਪੀ. ąØœą©€. ąØ†ąØˆ.'),
(90266, 'https://ror.org/009nnre75', 'en', 1, 'https://ror.org/009nnre75 Satya Wacana Christian University Universitas Kristen Satya Wacana'),
(90267, 'https://ror.org/009nz6031', 'en', 1, 'https://ror.org/009nz6031 Central European Institute of Technology – Masaryk University Středoevropský technologický institut – Masarykova univerzita'),
(90268, 'https://ror.org/009q8er18', 'no_lang_code', 1, 'https://ror.org/009q8er18 Shenzhen Urban Transport Planning Center Co. ę·±åœ³åŸŽåø‚äŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶äø­åæƒč‚”ä»½ęœ‰é™å…¬åø'),
(90269, 'https://ror.org/009qfn612', 'en', 1, 'https://ror.org/009qfn612 Banner McKee Medical Center'),
(90270, 'https://ror.org/009shwh61', 'en', 1, 'https://ror.org/009shwh61 Center for Hydrometeorology and Remote Sensing'),
(90271, 'https://ror.org/009t1k130', 'en', 1, 'https://ror.org/009t1k130 Technological University Dawei'),
(90272, 'https://ror.org/009t37k28', 'ca', 1, 'https://ror.org/009t37k28 Departament d''Acció Climàtica, Alimentació i Agenda Rural'),
(90273, 'https://ror.org/009tqys91', 'en', 1, 'https://ror.org/009tqys91 Cancer Consortium'),
(90274, 'https://ror.org/00a18kc17', 'en', 1, 'https://ror.org/00a18kc17 Al-Furqan Islamic Heritage Foundation'),
(90275, 'https://ror.org/00a208s56', 'en', 1, 'https://ror.org/00a208s56 Chemnitz University of Technology Technische UniversitƤt Chemnitz'),
(90276, 'https://ror.org/00a4x6777', 'sv', 1, 'https://ror.org/00a4x6777 Region VƤstra Gƶtaland'),
(90277, 'https://ror.org/00a50j303', 'en', 1, 'https://ror.org/00a50j303 Department of Environment, Parks and Water Security'),
(90278, 'https://ror.org/00a787753', 'en', 0, 'https://ror.org/00a787753 Penn State Mont Alto'),
(90279, 'https://ror.org/00a8zdv13', 'en', 1, 'https://ror.org/00a8zdv13 Institut für Experimentelle und Klinische Traumatologie Ludwig Boltzmann Institute for Experimental and Clinical Traumatology'),
(90280, 'https://ror.org/00a9yg798', 'en', 1, 'https://ror.org/00a9yg798 Bristol Zoological Society'),
(90281, 'https://ror.org/00aack182', 'es', 1, 'https://ror.org/00aack182 Consejo Nacional de Rectores'),
(90282, 'https://ror.org/00aamts79', 'en', 1, 'https://ror.org/00aamts79 A Breath of Hope Lung Foundation'),
(90283, 'https://ror.org/00aapa202', 'en', 1, 'https://ror.org/00aapa202 Kanagawa Cancer Center ē„žå„ˆå·ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(90284, 'https://ror.org/00abbnt31', 'en', 1, 'https://ror.org/00abbnt31 Graham A. Barden Elementary School'),
(90285, 'https://ror.org/00acv8d41', 'sv', 1, 'https://ror.org/00acv8d41 Chalmers Industriteknik'),
(90286, 'https://ror.org/00adjwa30', 'en', 1, 'https://ror.org/00adjwa30 Joint Institute of the Dalian University of Technology and Belarusian State University å¤§čæžē†å·„å¤§å­¦ē™½äæ„ē½—ę–Æå›½ē«‹å¤§å­¦č”åˆå­¦é™¢ ē”µčÆ'),
(90287, 'https://ror.org/00adw3v80', 'no_lang_code', 1, 'https://ror.org/00adw3v80 Ɖditions L''Harmattan (France)');
INSERT INTO `rors` VALUES
(90288, 'https://ror.org/00afqrg82', 'fr', 1, 'https://ror.org/00afqrg82 ISART Digital'),
(90289, 'https://ror.org/00ag3tg80', 'fr', 1, 'https://ror.org/00ag3tg80 Centre de droit civil des affaires et du contentieux Ʃconomique'),
(90290, 'https://ror.org/00agc0t21', 'en', 1, 'https://ror.org/00agc0t21 Helping Others in a Positive Environment'),
(90291, 'https://ror.org/00ajw8c12', 'en', 0, 'https://ror.org/00ajw8c12 The Institute of Geotechnical Mechanics named by N. Polyakov NAS of Ukraine Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геотехнической механики им. Š.Š”. ŠŸŠ¾Š»ŃŠŗŠ¾Š²Š° ŠŠŠ Украины'),
(90292, 'https://ror.org/00ak1t323', 'en', 1, 'https://ror.org/00ak1t323 Australian National Low Emissions Coal Research and Development'),
(90293, 'https://ror.org/00akhyy70', 'en', 1, 'https://ror.org/00akhyy70 Central Committee of the Communist Party of China'),
(90294, 'https://ror.org/00amapy86', 'es', 1, 'https://ror.org/00amapy86 Universidad Galilea'),
(90295, 'https://ror.org/00aps1a34', 'en', 1, 'https://ror.org/00aps1a34 NIHR Oxford Musculoskeletal Biomedical Research Centre'),
(90296, 'https://ror.org/00apymp80', 'no_lang_code', 1, 'https://ror.org/00apymp80 Paulo Freire University'),
(90297, 'https://ror.org/00arvcr78', 'en', 1, 'https://ror.org/00arvcr78 Association Canadienne du DiabĆØte Diabetes Canada'),
(90298, 'https://ror.org/00at47r27', 'en', 1, 'https://ror.org/00at47r27 Wisconsin Society for Cardiovascular and Pulmonary Health & Rehabilitation'),
(90299, 'https://ror.org/00ay44a88', 'no_lang_code', 1, 'https://ror.org/00ay44a88 PLASMASCIENCE'),
(90300, 'https://ror.org/00ay50243', 'en', 1, 'https://ror.org/00ay50243 Anhembi Morumbi University Universidade Anhembi Morumbi'),
(90301, 'https://ror.org/00b1crx81', 'fr', 1, 'https://ror.org/00b1crx81 Centre de Recherche en Ɖducation de Nantes'),
(90302, 'https://ror.org/00b2x9z76', 'no_lang_code', 1, 'https://ror.org/00b2x9z76 4D Technology (United States)'),
(90303, 'https://ror.org/00b3wxb81', 'en', 1, 'https://ror.org/00b3wxb81 South Dakota Public Universities and Research Center'),
(90304, 'https://ror.org/00b4mx203', 'en', 1, 'https://ror.org/00b4mx203 Institute of Hydrobiology ę­¦ę±‰ę°“ē”Ÿē”Ÿē‰©ē ”ē©¶ę‰€'),
(90305, 'https://ror.org/00b61dk18', 'it', 1, 'https://ror.org/00b61dk18 Provincia autonoma di Bolzano - Alto Adige'),
(90306, 'https://ror.org/00b9jhh55', 'en', 1, 'https://ror.org/00b9jhh55 Department of Health and Human Services'),
(90307, 'https://ror.org/00basmr24', 'en', 1, 'https://ror.org/00basmr24 Aljazeera University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬Ų²ŁŠŲ±Ų© الخاصة'),
(90308, 'https://ror.org/00bc6bw85', 'en', 1, 'https://ror.org/00bc6bw85 Ministerie van Economische Zaken en Klimaat Ministry of Economic Affairs and Climate Policy'),
(90309, 'https://ror.org/00bcmnq73', 'en', 1, 'https://ror.org/00bcmnq73 Washington State Department of Agriculture'),
(90310, 'https://ror.org/00bf9ms70', 'de', 1, 'https://ror.org/00bf9ms70 Bundesverband Druck und Medien'),
(90311, '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'),
(90312, 'https://ror.org/00bk3dc29', 'en', 1, 'https://ror.org/00bk3dc29 London Borough Of Lewisham'),
(90313, 'https://ror.org/00bky6e07', 'en', 1, 'https://ror.org/00bky6e07 Kohnodai Hospital, National Center for Global Health and Medicine å›½ē«‹å›½éš›åŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼å›½åŗœå°ē—…é™¢'),
(90314, 'https://ror.org/00bp7kt89', 'no_lang_code', 1, 'https://ror.org/00bp7kt89 Protagonist Therapeutics (United States)'),
(90315, 'https://ror.org/00bqnfa53', 'en', 1, 'https://ror.org/00bqnfa53 Government College Women University Sialkot ŚÆŁˆŲ±Ł†Ł…Ł¹ کالج ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒŲŒ Ų³ŪŒŲ§Ł„Ś©ŁˆŁ¹'),
(90316, 'https://ror.org/00bqpz325', 'no_lang_code', 1, 'https://ror.org/00bqpz325 Tamkeen ŲŖŁ…ŁƒŁŠŁ†'),
(90317, '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'),
(90318, 'https://ror.org/00brmfv24', 'sv', 1, 'https://ror.org/00brmfv24 ForskningsrƄdet i Sydƶstra Sverige'),
(90319, 'https://ror.org/00btzwk36', 'en', 1, 'https://ror.org/00btzwk36 Josep Carreras Leukaemia Research Institute'),
(90320, 'https://ror.org/00bve7358', 'no_lang_code', 1, 'https://ror.org/00bve7358 Imperial Oil (Canada) La Pétrolière Impériale'),
(90321, 'https://ror.org/00bvvpy20', 'no_lang_code', 1, 'https://ror.org/00bvvpy20 Dittel Avionik (Germany)'),
(90322, 'https://ror.org/00bx3rb98', 'en', 1, 'https://ror.org/00bx3rb98 China Meteorological Administration 中国气豔局'),
(90323, 'https://ror.org/00bx52076', 'en', 1, 'https://ror.org/00bx52076 Australian National Botanic Gardens'),
(90324, 'https://ror.org/00bxchw37', 'en', 1, 'https://ror.org/00bxchw37 Hydropower Foundation'),
(90325, 'https://ror.org/00bxym797', 'en', 1, 'https://ror.org/00bxym797 United States Army Medical Research Directorate - Africa'),
(90326, 'https://ror.org/00c1q9b66', 'es', 1, 'https://ror.org/00c1q9b66 Instituto Nacional de Normalización'),
(90327, 'https://ror.org/00c25dn03', 'en', 1, 'https://ror.org/00c25dn03 Korea Institute of Planning and Evaluation for Technology in Food, Agriculture, Forestry and Fisheries'),
(90328, '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'),
(90329, 'https://ror.org/00c33a344', 'en', 1, 'https://ror.org/00c33a344 American Friends of the Alexander von Humboldt Foundation'),
(90330, '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'),
(90331, 'https://ror.org/00c5kmy11', 'es', 1, 'https://ror.org/00c5kmy11 Fundación IE IE Foundation'),
(90332, 'https://ror.org/00c5mwp75', 'no_lang_code', 0, 'https://ror.org/00c5mwp75 Alcatel Lucent (Germany)'),
(90333, 'https://ror.org/00c5s4a53', 'en', 1, 'https://ror.org/00c5s4a53 Ministry of Oceans and Fisheries ėŒ€ķ•œėÆ¼źµ­ ķ•“ģ–‘ģˆ˜ģ‚°ė¶€'),
(90334, 'https://ror.org/00c68jz96', 'en', 1, 'https://ror.org/00c68jz96 Ontario Genomics'),
(90335, '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Ā» Š”Š•Š Š–ŠŠ’ŠŠ• ŠŸŠ†Š”ŠŸŠ Š˜Š„ŠœŠ”Š¢Š’Šž Ā«Š’Š”Š•Š£ŠšŠ ŠŠ‡ŠŠ”Š¬ŠšŠ˜Š™ Š”Š•Š Š–ŠŠ’ŠŠ˜Š™ ŠŠŠ£ŠšŠžŠ’Šž-Š’Š˜Š ŠžŠ‘ŠŠ˜Š§Š˜Š™ Š¦Š•ŠŠ¢Š  Š”Š¢ŠŠŠ”ŠŠ Š¢Š˜Š—ŠŠ¦Š†Š‡, ŠœŠ•Š¢Š ŠžŠ›ŠžŠ“Š†Š‡, Š”Š•Š Š¢Š˜Š¤Š†ŠšŠŠ¦Š†Š‡ ТА Š—ŠŠ„Š˜Š”Š¢Š£ ŠŸŠ ŠŠ’ Š”ŠŸŠžŠ–Š˜Š’ŠŠ§Š†Š’Ā»'),
(90336, 'https://ror.org/00ca6fy54', 'en', 0, 'https://ror.org/00ca6fy54 National Kaohsiung Marine University åœ‹ē«‹é«˜é›„ęµ·ę“‹ē§‘ęŠ€å¤§å­ø'),
(90337, 'https://ror.org/00ca8r120', 'es', 1, 'https://ror.org/00ca8r120 Universidad de Postgrado para la Investigación Estratégica en Bolivia'),
(90338, 'https://ror.org/00cd2bj23', 'en', 1, 'https://ror.org/00cd2bj23 Shanghai Academy of Educational Sciences äøŠęµ·åø‚ę•™č‚²ē§‘å­¦ē ”ē©¶é™¢'),
(90339, 'https://ror.org/00cjjmc56', 'fr', 1, 'https://ror.org/00cjjmc56 ModƩlisation alƩatoire de Paris Nanterre'),
(90340, 'https://ror.org/00cknwj02', 'no_lang_code', 1, 'https://ror.org/00cknwj02 Symtavision (Germany)'),
(90341, 'https://ror.org/00csb7d97', 'en', 1, 'https://ror.org/00csb7d97 Korea Youth Association ķ•œźµ­ ģ²­ģ†Œė…„ ķ˜‘ķšŒ'),
(90342, 'https://ror.org/00csdcr36', 'en', 1, 'https://ror.org/00csdcr36 Czech Paraplegics Association ČeskÔ asociace paraplegiků'),
(90343, 'https://ror.org/00ctsa544', 'en', 1, 'https://ror.org/00ctsa544 Princess Margaret Cancer Foundation'),
(90344, 'https://ror.org/00cv9q002', 'en', 1, 'https://ror.org/00cv9q002 Department of Jobs, Tourism, Science and Innovation'),
(90345, 'https://ror.org/00cvnc278', 'en', 1, 'https://ror.org/00cvnc278 Arizona Alzheimer’s Consortium'),
(90346, 'https://ror.org/00cvp0686', 'fr', 1, 'https://ror.org/00cvp0686 Higher Institue of Technological Studies Institut SupĆ©rieur des Ɖtudes Technologiques de Gafsa المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© بقفصة'),
(90347, 'https://ror.org/00cw10t87', 'no_lang_code', 1, 'https://ror.org/00cw10t87 Monal Group (France)'),
(90348, 'https://ror.org/00cwc2519', 'no_lang_code', 1, 'https://ror.org/00cwc2519 Interx'),
(90349, 'https://ror.org/00cwqg982', 'en', 1, 'https://ror.org/00cwqg982 Biotechnology and Biological Sciences Research Council'),
(90350, 'https://ror.org/00czh4843', 'en', 1, 'https://ror.org/00czh4843 National Biotechnology Development Agency'),
(90351, 'https://ror.org/00czsbf91', 'en', 0, 'https://ror.org/00czsbf91 Federal Ministry of Health'),
(90352, 'https://ror.org/00d260p98', 'en', 1, 'https://ror.org/00d260p98 Arab Open University الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(90353, 'https://ror.org/00d5ng337', 'en', 1, 'https://ror.org/00d5ng337 Broadmoor Hospital'),
(90354, 'https://ror.org/00d7t1v24', 'de', 1, 'https://ror.org/00d7t1v24 Dienstleistungszentrum LƤndlicher Raum Eifel'),
(90355, 'https://ror.org/00d7wvm38', 'en', 1, 'https://ror.org/00d7wvm38 NIA IMPACT Collaboratory'),
(90356, 'https://ror.org/00d8qv962', 'en', 1, 'https://ror.org/00d8qv962 St Andrew''s Healthcare'),
(90357, 'https://ror.org/00daf1s34', 'en', 1, 'https://ror.org/00daf1s34 European Distance and E-Learning Network'),
(90358, 'https://ror.org/00dawnv76', 'de', 1, 'https://ror.org/00dawnv76 Evangelisches Krankenhaus Bethesda'),
(90359, 'https://ror.org/00db08w91', 'es', 1, 'https://ror.org/00db08w91 Universidad de Cartago'),
(90360, 'https://ror.org/00dbkrq51', 'en', 1, 'https://ror.org/00dbkrq51 Cochrane'),
(90361, 'https://ror.org/00dbxb330', 'en', 1, 'https://ror.org/00dbxb330 Antigua and Barbuda Bureau of Standards'),
(90362, 'https://ror.org/00dd37d48', 'en', 1, 'https://ror.org/00dd37d48 South African Society for Microbiology Suid-Afrikaanse Vereeniging vir Mikrobiologie'),
(90363, 'https://ror.org/00degky91', 'en', 0, 'https://ror.org/00degky91 United Nations Office on Drugs and Crime'),
(90364, 'https://ror.org/00dez5550', 'en', 1, 'https://ror.org/00dez5550 University Medical Center Brackenridge'),
(90365, 'https://ror.org/00dfwgz38', 'fr', 0, 'https://ror.org/00dfwgz38 Centre d’études d’agents PathogĆØnes et Biotechnologies Pour la SantĆ©'),
(90366, 'https://ror.org/00dgdgj39', 'fr', 1, 'https://ror.org/00dgdgj39 Institut de Recherche bio-MƩdicale et d''EpidƩmiologie du Sport'),
(90367, 'https://ror.org/00dgqhm63', 'en', 1, 'https://ror.org/00dgqhm63 Center for Innovative Medicine Centrum fƶr Innovativ Medicin'),
(90368, 'https://ror.org/00dgzrp29', 'et', 1, 'https://ror.org/00dgzrp29 Eksperimentaalse ja Kliinilise Meditsiini Instituut'),
(90369, 'https://ror.org/00dn75839', 'id', 1, 'https://ror.org/00dn75839 Universitas Batam'),
(90370, 'https://ror.org/00dnfnh90', 'en', 1, 'https://ror.org/00dnfnh90 Elrha'),
(90371, 'https://ror.org/00dqdz389', 'en', 1, 'https://ror.org/00dqdz389 University College of Aviation and Technology'),
(90372, 'https://ror.org/00dywyn19', 'en', 1, 'https://ror.org/00dywyn19 Forest Resource Improvement Association of Alberta'),
(90373, 'https://ror.org/00dzfmv17', 'en', 1, 'https://ror.org/00dzfmv17 Training Centre in Communication'),
(90374, 'https://ror.org/00e0bf989', 'en', 1, 'https://ror.org/00e0bf989 Professor Jayashankar Telangana State Agricultural University ą°†ą°šą°¾ą°°ą±ą°Æ ą°Žą°Øą±.ą°œą±€.ą°°ą°‚ą°—ą°¾ ą°µą±ą°Æą°µą°øą°¾ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(90375, 'https://ror.org/00e2khh43', 'en', 1, 'https://ror.org/00e2khh43 Career Point University करिअर ą¤Ŗą„‰ą¤‡ą¤‚ą¤Ÿ ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(90376, 'https://ror.org/00e2sbp20', 'no_lang_code', 1, 'https://ror.org/00e2sbp20 Zhejiang Haikang Zhilian Science and Technology Co. ęµ™ę±Ÿęµ·åŗ·ę™ŗč”ē§‘ęŠ€ęœ‰é™å…¬åø'),
(90377, 'https://ror.org/00e3ns026', 'en', 1, 'https://ror.org/00e3ns026 Bundesministerium für Verkehr und digitale Infrastruktur Federal Ministry of Transport and Digital Infrastructure'),
(90378, 'https://ror.org/00e4fz088', 'fr', 1, 'https://ror.org/00e4fz088 Institut de recherches philosophiques'),
(90379, 'https://ror.org/00e87hq62', 'en', 1, 'https://ror.org/00e87hq62 Taichung Veterans General Hospital 臺中榮民總醫院'),
(90380, 'https://ror.org/00e9d4655', 'no_lang_code', 1, 'https://ror.org/00e9d4655 Icon Process Systems (United Kingdom)'),
(90381, 'https://ror.org/00ecztp88', 'en', 1, 'https://ror.org/00ecztp88 Karnataka State Open University ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ą²®ą³ą²•ą³ą²¤ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(90382, 'https://ror.org/00ed4yt46', 'no_lang_code', 0, 'https://ror.org/00ed4yt46 Esterline (France)'),
(90383, 'https://ror.org/00effsg46', 'en', 1, 'https://ror.org/00effsg46 Mountain Top University'),
(90384, 'https://ror.org/00ejhmf76', 'en', 1, 'https://ror.org/00ejhmf76 Kansas Health Sciences Center'),
(90385, 'https://ror.org/00ejqxs53', 'en', 1, 'https://ror.org/00ejqxs53 NOAA Ocean Prediction Center'),
(90386, 'https://ror.org/00ejtw805', 'en', 1, 'https://ror.org/00ejtw805 International Mammalian Genome Society'),
(90387, 'https://ror.org/00emjrx81', 'no_lang_code', 1, 'https://ror.org/00emjrx81 State Grid Nanjing Power Supply Company (China) å›½ē½‘ę±Ÿč‹ēœē”µåŠ›ęœ‰é™å…¬åø'),
(90388, 'https://ror.org/00emw6082', 'en', 1, 'https://ror.org/00emw6082 Henry L. and Grace Doherty Charitable Foundation'),
(90389, 'https://ror.org/00epbns71', 'es', 1, 'https://ror.org/00epbns71 Universidad Internacional Iberoamericana'),
(90390, 'https://ror.org/00epkwd79', 'en', 1, 'https://ror.org/00epkwd79 Parc national Wapusk Wapusk National Park'),
(90391, 'https://ror.org/00epmtw64', 'en', 1, 'https://ror.org/00epmtw64 Government of Ukraine ŠšŠ°Š±Ń–Š½ŠµŃ‚ ŠœŃ–Š½Ń–ŃŃ‚Ń€Ń–Š² України'),
(90392, 'https://ror.org/00eq41n87', 'en', 1, 'https://ror.org/00eq41n87 InLeaVe'),
(90393, 'https://ror.org/00er56532', 'en', 1, 'https://ror.org/00er56532 Trinity Health Ann Arbor Hospital'),
(90394, 'https://ror.org/00es6pb19', 'en', 1, 'https://ror.org/00es6pb19 Office of Multicultural Interests'),
(90395, 'https://ror.org/00ex2fc97', 'en', 1, 'https://ror.org/00ex2fc97 Kyushu University Hospital ä¹å·žå¤§å­¦ē—…é™¢'),
(90396, 'https://ror.org/00ezjw960', 'de', 1, 'https://ror.org/00ezjw960 Wasserstraßen- und Schifffahrtsamt Elbe'),
(90397, 'https://ror.org/00ezrrm21', 'en', 1, 'https://ror.org/00ezrrm21 United States Bureau of Reclamation'),
(90398, 'https://ror.org/00f1qr933', 'en', 1, 'https://ror.org/00f1qr933 Noguchi Memorial Institute for Medical Research'),
(90399, 'https://ror.org/00f4frq91', 'en', 1, 'https://ror.org/00f4frq91 Hector Fellow Academy'),
(90400, 'https://ror.org/00f5hjx88', 'pl', 1, 'https://ror.org/00f5hjx88 Górnośląskie Centrum Zdrowia Dziecka w Katowicach'),
(90401, 'https://ror.org/00f5kdg89', 'no_lang_code', 1, 'https://ror.org/00f5kdg89 Hyundai Kefico (South Korea) ķ˜„ėŒ€ģ¼€ķ”¼ģ½”'),
(90402, 'https://ror.org/00f65kq68', 'en', 1, 'https://ror.org/00f65kq68 Knud HĆøjgaards Foundation'),
(90403, 'https://ror.org/00f7rb209', 'en', 1, 'https://ror.org/00f7rb209 NOAA Weather Prediction Center'),
(90404, 'https://ror.org/00f98bm36', 'en', 1, 'https://ror.org/00f98bm36 Women University Swabi'),
(90405, 'https://ror.org/00fbx7096', 'no_lang_code', 1, 'https://ror.org/00fbx7096 LGC'),
(90406, 'https://ror.org/00fc1dp67', 'en', 1, 'https://ror.org/00fc1dp67 Hiroshima Prefectural Art Museum åŗƒå³¶ēœŒē«‹ē¾Žč”“é¤Ø'),
(90407, 'https://ror.org/00fe3cc74', 'en', 1, 'https://ror.org/00fe3cc74 Iowa Space Grant Consortium'),
(90408, 'https://ror.org/00ff5f522', 'en', 1, 'https://ror.org/00ff5f522 Toulouse School of Economics'),
(90409, 'https://ror.org/00fhn5k08', 'pt', 1, 'https://ror.org/00fhn5k08 Instituto Nacional de CiĆŖncia e Tecnologia em Biodiversidade e Produtos Naturais'),
(90410, 'https://ror.org/00fkm8n81', 'en', 1, 'https://ror.org/00fkm8n81 European University of Armenia Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶ÕøÖ‚Õ“ ŌµÕ¾Ö€ÕøÕŗÕ”ÕÆÕ”Õ¶ Õ€Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(90411, 'https://ror.org/00fkqvh14', 'en', 1, 'https://ror.org/00fkqvh14 Utah Division of Wildlife Resources'),
(90412, 'https://ror.org/00fkqwx76', 'de', 1, 'https://ror.org/00fkqwx76 HAW Hamburg, Hochschule für Angewandte Wissenschaften Hamburg'),
(90413, 'https://ror.org/00fn6h977', 'no_lang_code', 1, 'https://ror.org/00fn6h977 Yunnan Botanee Biotechnology Group Co. äŗ‘å—č“ę³°å¦®ē”Ÿē‰©ē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(90414, 'https://ror.org/00fq58w87', 'en', 1, 'https://ror.org/00fq58w87 Huichon University of Telecommunications ķ¬ģ²œ 공업 ėŒ€ķ•™'),
(90415, 'https://ror.org/00fsdxs93', 'en', 1, 'https://ror.org/00fsdxs93 Open Geospatial Consortium'),
(90416, 'https://ror.org/00ftxzd18', 'en', 0, 'https://ror.org/00ftxzd18 Penn State Harrisburg'),
(90417, 'https://ror.org/00fvxaj36', 'en', 1, 'https://ror.org/00fvxaj36 Wenlock District Hospital'),
(90418, 'https://ror.org/00fycgp36', 'en', 1, 'https://ror.org/00fycgp36 Ural State Medical University Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(90419, 'https://ror.org/00g169550', 'en', 1, 'https://ror.org/00g169550 Caswell County Schools'),
(90420, 'https://ror.org/00g30e956', 'de', 1, 'https://ror.org/00g30e956 Hamburg University UniversitƤt Hamburg'),
(90421, 'https://ror.org/00g41ma48', 'en', 1, 'https://ror.org/00g41ma48 Hasheminejad Kidney Center ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ Ł‡Ų§Ų“Ł…ŪŒ Ł†Ś˜Ų§ŲÆ Ł…Ų³ŲŖŲ“ŁŪŒ Ų§Ł„Ų“Ł‡ŪŒŲÆ Ł‡Ų§Ų“Ł…ŪŒ نجاد'),
(90422, 'https://ror.org/00g5pdd79', 'en', 1, 'https://ror.org/00g5pdd79 British Phycological Society'),
(90423, 'https://ror.org/00g5x2h86', 'en', 1, 'https://ror.org/00g5x2h86 Eduskunta Finlands riksdag Parliament of Finland'),
(90424, 'https://ror.org/00gag9968', 'no_lang_code', 1, 'https://ror.org/00gag9968 MFKK Invention and Research Center Services (Hungary)'),
(90425, 'https://ror.org/00gcrwx03', 'en', 1, 'https://ror.org/00gcrwx03 Fred C. Gloeckner Foundation, Inc.'),
(90426, 'https://ror.org/00gd1f947', 'en', 1, 'https://ror.org/00gd1f947 NOAA National Severe Storms Laboratory'),
(90427, 'https://ror.org/00gde9v15', 'en', 1, 'https://ror.org/00gde9v15 Lomi School Foundation and Psychotherapy Clinic'),
(90428, 'https://ror.org/00gdv5j66', 'en', 1, 'https://ror.org/00gdv5j66 National Metrology Center of Cambodia įž˜įž‡įŸ’įžˆįž˜įžŽįŸ’įžŒįž›įž˜įž¶įžįŸ’įžšįž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšįž‡įž¶įžįž·'),
(90429, 'https://ror.org/00gezkv41', 'en', 0, 'https://ror.org/00gezkv41 Dublin Dental Hospital'),
(90430, 'https://ror.org/00ggpsq73', 'en', 1, 'https://ror.org/00ggpsq73 Otto-von-Guericke University Magdeburg Otto-von-Guericke-UniversitƤt Magdeburg'),
(90431, 'https://ror.org/00ghqgy32', 'en', 1, 'https://ror.org/00ghqgy32 The Ministry of Education and Science of the Russian Federation ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки Российской ФеГерации'),
(90432, 'https://ror.org/00gj19047', 'en', 1, 'https://ror.org/00gj19047 Ohio Department of Higher Education'),
(90433, 'https://ror.org/00gj61d63', 'en', 1, 'https://ror.org/00gj61d63 Livingston Public Schools'),
(90434, 'https://ror.org/00gjhgh30', 'de', 1, 'https://ror.org/00gjhgh30 Verband Forschender Arzneimittelhersteller'),
(90435, 'https://ror.org/00gjnk018', 'fr', 1, 'https://ror.org/00gjnk018 Pathogenesis of vascular infections PathogenĆØse des infections vasculaires'),
(90436, 'https://ror.org/00gkzs980', 'en', 1, 'https://ror.org/00gkzs980 Institute of Archaeology InŔtitut za arheologijo'),
(90437, 'https://ror.org/00gmd0m82', 'en', 1, 'https://ror.org/00gmd0m82 Wellness Pointe'),
(90438, 'https://ror.org/00gnrs088', 'en', 1, 'https://ror.org/00gnrs088 Banner North Colorado Medical Center'),
(90439, 'https://ror.org/00gpbdx15', 'en', 1, 'https://ror.org/00gpbdx15 Fujita Health University Okazaki Medical Center č—¤ē”°åŒ»ē§‘å¤§å­¦å²”å“ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(90440, 'https://ror.org/00gpq1s11', 'en', 1, 'https://ror.org/00gpq1s11 Center of New Drugs for Hypertension'),
(90441, 'https://ror.org/00gqqed17', 'en', 1, 'https://ror.org/00gqqed17 State Key Laboratory of Urban and Regional Ecology åŸŽåø‚äøŽåŒŗåŸŸē”Ÿę€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(90442, 'https://ror.org/00gqsp710', 'it', 1, 'https://ror.org/00gqsp710 Osservatorio di Astrofisica e Scienza dello Spazio'),
(90443, 'https://ror.org/00gsmf457', 'en', 1, 'https://ror.org/00gsmf457 Fuel Cell Institute Institut Sel Fuel'),
(90444, 'https://ror.org/00gvw5y42', 'no_lang_code', 1, 'https://ror.org/00gvw5y42 Amgen (Canada)'),
(90445, 'https://ror.org/00gzkpd38', 'no_lang_code', 1, 'https://ror.org/00gzkpd38 Custom Interconnect Limited (United Kingdom)'),
(90446, 'https://ror.org/00gzyyt68', 'en', 1, 'https://ror.org/00gzyyt68 Child Care And Youth Empowerment Foundation'),
(90447, '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'),
(90448, 'https://ror.org/00h2zy437', 'en', 1, 'https://ror.org/00h2zy437 British Occupational Hygiene Society'),
(90449, 'https://ror.org/00h3qhh74', 'en', 1, 'https://ror.org/00h3qhh74 Advanced Light Microscopy Italian Node'),
(90450, 'https://ror.org/00h4ewj42', 'en', 1, 'https://ror.org/00h4ewj42 Association of Black Women Historians'),
(90451, 'https://ror.org/00h4kdn81', 'en', 1, 'https://ror.org/00h4kdn81 New York State Education Department'),
(90452, 'https://ror.org/00h62h294', 'no_lang_code', 1, 'https://ror.org/00h62h294 Mondragon Corporation (New Zealand)'),
(90453, 'https://ror.org/00h739y88', 'en', 1, 'https://ror.org/00h739y88 Rhode Island Agricultural Experiment Station'),
(90454, 'https://ror.org/00hayyk04', 'en', 1, 'https://ror.org/00hayyk04 Levinsky-Wingate Academic College ×”×ž×Ø×›×– האקדמי לוינהקי-וינגייט'),
(90455, 'https://ror.org/00hdf4w21', 'en', 1, 'https://ror.org/00hdf4w21 Indiana State Department of Health'),
(90456, 'https://ror.org/00hdncs36', 'en', 0, 'https://ror.org/00hdncs36 Brain Physiology Lab Laboratoire Physiologie CƩrƩbrale'),
(90457, 'https://ror.org/00hevc163', 'no_lang_code', 1, 'https://ror.org/00hevc163 Manz (Italy)'),
(90458, 'https://ror.org/00hfj7g70', 'en', 1, 'https://ror.org/00hfj7g70 National Kaohsiung University of Science and Technology åœ‹ē«‹é«˜é›„ē§‘ęŠ€å¤§å­ø'),
(90459, 'https://ror.org/00hg3n482', 'en', 1, 'https://ror.org/00hg3n482 Parc national Vuntut Vuntut National Park'),
(90460, 'https://ror.org/00hhe7195', 'en', 1, 'https://ror.org/00hhe7195 Ez-Zitouna University UniversitĆ© Ez-Zitouna Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų©'),
(90461, 'https://ror.org/00hhhdj49', 'en', 0, 'https://ror.org/00hhhdj49 Media Development Authority åŖ’ä½“å‘å±•ē®”ē†å±€'),
(90462, 'https://ror.org/00hhn0315', 'no_lang_code', 1, 'https://ror.org/00hhn0315 PVH (United States)'),
(90463, 'https://ror.org/00hhrbd92', 'en', 1, 'https://ror.org/00hhrbd92 Government Medical College and Hospital'),
(90464, 'https://ror.org/00hjpwn75', 'en', 1, 'https://ror.org/00hjpwn75 Erasmus Optical Imaging Centre'),
(90465, 'https://ror.org/00hkj1v53', 'en', 1, 'https://ror.org/00hkj1v53 National Defense University åœ‹é˜²å¤§å­ø'),
(90466, 'https://ror.org/00hnk2d42', 'no_lang_code', 0, 'https://ror.org/00hnk2d42 B/E Aerospace (United States)'),
(90467, 'https://ror.org/00hq0e369', 'en', 1, 'https://ror.org/00hq0e369 Stephen F. Austin State University'),
(90468, 'https://ror.org/00hqaq407', 'en', 1, 'https://ror.org/00hqaq407 United States Army Medical Research Directorate - Georgia'),
(90469, 'https://ror.org/00hqcx089', 'no_lang_code', 1, 'https://ror.org/00hqcx089 New Technologies and Services (Russia) ŠŠ¾Š²Ń‹Šµ Технологии'),
(90470, 'https://ror.org/00hr5y405', 'no_lang_code', 1, 'https://ror.org/00hr5y405 DataONE'),
(90471, 'https://ror.org/00ht10937', 'en', 1, 'https://ror.org/00ht10937 C17 Council'),
(90472, 'https://ror.org/00hxrkj54', 'en', 0, 'https://ror.org/00hxrkj54 University of the Rockies'),
(90473, 'https://ror.org/00j0xy635', 'de', 1, 'https://ror.org/00j0xy635 Institut für Radiobiologie der Bundeswehr'),
(90474, 'https://ror.org/00j1vsg87', 'en', 1, 'https://ror.org/00j1vsg87 Breast Cancer Trials'),
(90475, 'https://ror.org/00j50jx72', 'fr', 1, 'https://ror.org/00j50jx72 Laboratoire des 2 Infinis Toulouse'),
(90476, 'https://ror.org/00j5we857', 'de', 1, 'https://ror.org/00j5we857 Bremer Institut für Produktion und Logistik GmbH'),
(90477, 'https://ror.org/00j6szp87', 'fr', 0, 'https://ror.org/00j6szp87 Centre de Recherche d''Histoire Quantitative'),
(90478, 'https://ror.org/00j80js52', 'en', 1, 'https://ror.org/00j80js52 West Virginia Department of Arts, Culture and History'),
(90479, 'https://ror.org/00j9yrx90', 'en', 1, 'https://ror.org/00j9yrx90 Jihomoravský kraj South Moravian Region'),
(90480, 'https://ror.org/00jb7xy46', 'en', 1, 'https://ror.org/00jb7xy46 Education Department of Shaanxi Province'),
(90481, 'https://ror.org/00jd71216', 'en', 1, 'https://ror.org/00jd71216 Islamic Azad University of Majlesi دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد علامه Ł…Ų¬Ł„Ų³ŪŒ'),
(90482, 'https://ror.org/00jg7hp37', 'de', 1, 'https://ror.org/00jg7hp37 Amt der SteiermƤrkischen Landesregierung'),
(90483, 'https://ror.org/00jk2b778', 'no_lang_code', 1, 'https://ror.org/00jk2b778 Institut Mihajlo Pupin Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŃ…Š°Ń˜Š»Š¾ Пупин'),
(90484, 'https://ror.org/00jmtdy57', 'en', 1, 'https://ror.org/00jmtdy57 Atomic Energy Council'),
(90485, 'https://ror.org/00jmxvy70', 'fr', 1, 'https://ror.org/00jmxvy70 DƩlƩgation RƩgionale Nord Ouest'),
(90486, 'https://ror.org/00jn17w87', 'en', 1, 'https://ror.org/00jn17w87 Showa University Dental Hospital ę˜­å’Œå¤§å­¦ę­Æē§‘ē—…é™¢'),
(90487, 'https://ror.org/00js75b59', 'en', 1, 'https://ror.org/00js75b59 Max Planck Institute of Geoanthropology Max-Planck-Institut für Geoanthropologie'),
(90488, 'https://ror.org/00jsjm362', 'en', 1, 'https://ror.org/00jsjm362 University of Abou Bekr BelkaĆÆd Ų¬Ų§Ł…Ų¹Ų© أبي بكر ŲØŁ„Ł‚Ų§ŁŠŲÆ'),
(90489, 'https://ror.org/00jv97a42', 'en', 1, 'https://ror.org/00jv97a42 University of Gedo'),
(90490, 'https://ror.org/00jwxmn37', 'en', 1, 'https://ror.org/00jwxmn37 Calleva Foundation'),
(90491, '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'),
(90492, 'https://ror.org/00jxr5c40', 'en', 1, 'https://ror.org/00jxr5c40 Tashkent State Transport University Toshkent temir yoŹ»l muhandislari instituti Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инженеров железноГорожного транспорта'),
(90493, 'https://ror.org/00jyt4d57', 'fr', 1, 'https://ror.org/00jyt4d57 L’Inserm dans Paris et lā€™ĆŽle-de-France Centre Nord'),
(90494, 'https://ror.org/00k01kt20', 'no_lang_code', 1, 'https://ror.org/00k01kt20 DSM (Netherlands)'),
(90495, 'https://ror.org/00k0g5176', 'en', 1, 'https://ror.org/00k0g5176 Jasper National Park Parc national Jasper'),
(90496, 'https://ror.org/00k3smk02', 'es', 1, 'https://ror.org/00k3smk02 Instituto de FisiologĆ­a Vegetal'),
(90497, 'https://ror.org/00k4cwq24', 'en', 1, 'https://ror.org/00k4cwq24 Ministry of Higher Education and Scientific Research وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(90498, 'https://ror.org/00k575643', 'en', 1, 'https://ror.org/00k575643 National Synchrotron Radiation Research Center åœ‹å®¶åŒę­„č¼»å°„ē ”ē©¶äø­åæƒ'),
(90499, 'https://ror.org/00k5j5c86', 'en', 1, 'https://ror.org/00k5j5c86 Tokyo Medical University ę±äŗ¬åŒ»ē§‘å¤§å­¦'),
(90500, 'https://ror.org/00k7kt283', 'en', 1, 'https://ror.org/00k7kt283 B. K. Mody Government Pharmacy College'),
(90501, 'https://ror.org/00k86w020', 'en', 1, 'https://ror.org/00k86w020 Cornell Lab of Ornithology'),
(90502, 'https://ror.org/00kab6t91', 'en', 1, 'https://ror.org/00kab6t91 Ministry of Higher Education and Scientific Research وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(90503, 'https://ror.org/00kc94n51', 'en', 1, 'https://ror.org/00kc94n51 Kazakh National Women''s Teacher Training University ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ женский пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŅšŠ°Š·Š°Ņ› ұлттық қызГар пеГагогикалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(90504, 'https://ror.org/00kcgm063', 'de', 1, 'https://ror.org/00kcgm063 ESAB Fachhochschule für Sport und Management Potsdam'),
(90505, 'https://ror.org/00kck3n79', 'de', 1, 'https://ror.org/00kck3n79 Hochschule für Gesellschaftsgestaltung'),
(90506, 'https://ror.org/00kct2d35', 'en', 1, 'https://ror.org/00kct2d35 NOAA Climate Prediction Center'),
(90507, 'https://ror.org/00kd6h279', 'en', 1, 'https://ror.org/00kd6h279 Webster University Utah'),
(90508, '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'),
(90509, 'https://ror.org/00kdgfn49', 'tr', 1, 'https://ror.org/00kdgfn49 Bahçeşehir Cyprus University'),
(90510, 'https://ror.org/00kh41v43', 'es', 1, 'https://ror.org/00kh41v43 Universidad Tecnológica de Nogales'),
(90511, 'https://ror.org/00khsxp79', 'it', 1, 'https://ror.org/00khsxp79 INGV Osservatorio Nazionale Terremoti'),
(90512, 'https://ror.org/00kj76376', 'en', 1, 'https://ror.org/00kj76376 Anton Melik Geographical Institute Geografski inŔtitut Antona Melika'),
(90513, 'https://ror.org/00kkxv282', 'en', 1, 'https://ror.org/00kkxv282 Kasturba Medical College Hospital'),
(90514, 'https://ror.org/00kmhsh93', 'en', 1, 'https://ror.org/00kmhsh93 Connective Tissue Oncology Society'),
(90515, 'https://ror.org/00kn2t107', 'en', 1, 'https://ror.org/00kn2t107 International National Trusts Organisation'),
(90516, 'https://ror.org/00kpq4k75', 'en', 1, 'https://ror.org/00kpq4k75 C.K. Tedam University of Technology and Applied Sciences'),
(90517, 'https://ror.org/00kqmhn40', 'de', 1, 'https://ror.org/00kqmhn40 Verband der deutschen Lack- und Druckfarbenindustrie'),
(90518, 'https://ror.org/00kr4dx39', 'fr', 1, 'https://ror.org/00kr4dx39 Fondation Alzheimer'),
(90519, 'https://ror.org/00ks26d70', 'en', 0, 'https://ror.org/00ks26d70 Hamilton Psychiatric Hospital'),
(90520, 'https://ror.org/00ksv6230', 'fr', 1, 'https://ror.org/00ksv6230 Centre des Sciences des LittƩratures en langue FranƧaise'),
(90521, 'https://ror.org/00kt3gv27', 'en', 1, 'https://ror.org/00kt3gv27 NourDanesh Institute of Higher Education Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ł†ŁˆŲ±ŲÆŲ§Ł†Ų“'),
(90522, 'https://ror.org/00ktcxb85', 'en', 1, 'https://ror.org/00ktcxb85 Russian International Academy of Tourism Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(90523, 'https://ror.org/00kts8c89', 'en', 0, 'https://ror.org/00kts8c89 MRC Clinical Sciences Centre'),
(90524, 'https://ror.org/00kwm3d29', 'es', 1, 'https://ror.org/00kwm3d29 Centro Científico Tecnológico - San Juan'),
(90525, 'https://ror.org/00kwnh405', 'en', 1, 'https://ror.org/00kwnh405 Guizhou Provincial Science and Technology Department'),
(90526, 'https://ror.org/00kx48s25', 'en', 1, 'https://ror.org/00kx48s25 Guangxi Zhuang Autonomous Region Department of Education å¹æč„æå£®ę—č‡Ŗę²»åŒŗę•™č‚²åŽ…'),
(90527, 'https://ror.org/00kx6j950', 'en', 1, 'https://ror.org/00kx6j950 Health and Family Planning Commission of Sichuan Province å››å·ēœå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(90528, 'https://ror.org/00kygh256', 'no_lang_code', 1, 'https://ror.org/00kygh256 WOODEXPERT'),
(90529, 'https://ror.org/00kz42k48', 'en', 1, 'https://ror.org/00kz42k48 The Achieve Foundation'),
(90530, 'https://ror.org/00kztt736', 'en', 1, 'https://ror.org/00kztt736 The Kavli Foundation'),
(90531, 'https://ror.org/00m2bs514', 'no_lang_code', 0, 'https://ror.org/00m2bs514 BTG (United States)'),
(90532, 'https://ror.org/00m6fsq13', 'en', 1, 'https://ror.org/00m6fsq13 Vaagdevi College of Engineering'),
(90533, 'https://ror.org/00m8d6786', 'en', 1, 'https://ror.org/00m8d6786 Karoliininen yliopistosairaala Karolinska Universitetssjukhuset Karolinska University Hospital'),
(90534, 'https://ror.org/00ma6s786', 'de', 1, 'https://ror.org/00ma6s786 Westpfalz Klinikum'),
(90535, 'https://ror.org/00maqj547', 'en', 1, 'https://ror.org/00maqj547 Ɩrebro County Council Ɩrebro lƤns landsting'),
(90536, 'https://ror.org/00mbysk96', 'en', 1, 'https://ror.org/00mbysk96 Al-Mustafa International University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŲµŲ·ŁŪŒ Ų§Ł„Ų¹Ų§Ł„Ł…ŪŒŲ©'),
(90537, 'https://ror.org/00mc0t412', 'no_lang_code', 1, 'https://ror.org/00mc0t412 Excelitas Technologies (United Kingdom)'),
(90538, 'https://ror.org/00mc3wk65', 'id', 1, 'https://ror.org/00mc3wk65 Sekola Tinggi Agama Islam Islamic Centre Demak'),
(90539, 'https://ror.org/00mdktv23', 'en', 1, 'https://ror.org/00mdktv23 Culham Science Centre'),
(90540, 'https://ror.org/00me37y22', 'pt', 1, 'https://ror.org/00me37y22 Algarve Centre of Marine Sciences Centro de CiĆŖncias do Mar do Algarve'),
(90541, 'https://ror.org/00mgdps92', 'es', 1, 'https://ror.org/00mgdps92 Hospital del Gran Chaco Fray Quebracho'),
(90542, 'https://ror.org/00mmjwb31', 'no_lang_code', 1, 'https://ror.org/00mmjwb31 Rovedar'),
(90543, 'https://ror.org/00mmmy130', 'en', 1, 'https://ror.org/00mmmy130 NOAA Climate Program Office'),
(90544, 'https://ror.org/00mnan534', 'fr', 1, 'https://ror.org/00mnan534 Ɖcole nationale supĆ©rieure de la Police'),
(90545, 'https://ror.org/00mny5z95', 'fr', 1, 'https://ror.org/00mny5z95 LittƩratures, Imaginaire, SociƩtƩs'),
(90546, 'https://ror.org/00mqmdj27', 'no_lang_code', 1, 'https://ror.org/00mqmdj27 Solaris Bus & Coach (Poland)'),
(90547, 'https://ror.org/00mrq3p58', 'en', 1, 'https://ror.org/00mrq3p58 Frimley Health NHS Foundation Trust'),
(90548, 'https://ror.org/00msgs752', 'fr', 1, 'https://ror.org/00msgs752 Groupement des Industries de Construction and ActivitƩs Navales'),
(90549, 'https://ror.org/00msqp585', 'en', 1, 'https://ror.org/00msqp585 University of Fukui ē¦äŗ•å¤§å­¦'),
(90550, 'https://ror.org/00mstfs17', 'en', 1, 'https://ror.org/00mstfs17 North Lochs Historical Society'),
(90551, 'https://ror.org/00mv0bm80', 'en', 1, 'https://ror.org/00mv0bm80 OAPEN Foundation'),
(90552, 'https://ror.org/00mv2dn46', 'no_lang_code', 1, 'https://ror.org/00mv2dn46 China Railway 18th Bureau Group Corporation äø­é“åå…«å±€é›†å›¢ęœ‰é™å…¬åø'),
(90553, 'https://ror.org/00mv4xe50', 'no_lang_code', 1, 'https://ror.org/00mv4xe50 Rio Tinto (Canada)'),
(90554, 'https://ror.org/00mvd2t81', 'en', 1, 'https://ror.org/00mvd2t81 Netherlands Enterprise Agency Ondersteunt ondernemend Nederland'),
(90555, 'https://ror.org/00mvffx52', 'en', 1, 'https://ror.org/00mvffx52 Stationers'' Company'),
(90556, 'https://ror.org/00mxe0976', 'en', 1, 'https://ror.org/00mxe0976 Toronto Rehabilitation Institute'),
(90557, 'https://ror.org/00mxk6y82', 'en', 1, 'https://ror.org/00mxk6y82 Lettie Pate Whitehead Foundation'),
(90558, 'https://ror.org/00mxv3x47', 'no_lang_code', 1, 'https://ror.org/00mxv3x47 Solutions for Tomorrow (Sweden)'),
(90559, 'https://ror.org/00mxvjp83', 'fr', 0, 'https://ror.org/00mxvjp83 Laboratoire Francis Perrin'),
(90560, 'https://ror.org/00my8w381', 'no_lang_code', 1, 'https://ror.org/00my8w381 Carrier (United States)'),
(90561, 'https://ror.org/00mzymc28', 'en', 1, 'https://ror.org/00mzymc28 Agenția Națională Arheologică National Agency for Archaeology'),
(90562, 'https://ror.org/00mzz1w90', 'en', 1, 'https://ror.org/00mzz1w90 Alexandria University UniversitĆ© d''Alexandrie Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(90563, 'https://ror.org/00n2kc060', 'en', 1, 'https://ror.org/00n2kc060 Weinan Normal University ęø­å—åøˆčŒƒå­¦é™¢'),
(90564, 'https://ror.org/00n7gwn90', 'fr', 0, 'https://ror.org/00n7gwn90 SupĆ©lec, Ɖcole supĆ©rieure d''Ć©lectricitĆ©'),
(90565, 'https://ror.org/00n7q1156', 'fr', 1, 'https://ror.org/00n7q1156 Gefluc Languedoc Roussillon, Groupement des Entreprises FranƧaises dans la Lutte contre le Cancer'),
(90566, 'https://ror.org/00n82gt57', 'en', 1, 'https://ror.org/00n82gt57 Centre for Australian National Biodiversity Research'),
(90567, 'https://ror.org/00n9p1n72', 'en', 1, 'https://ror.org/00n9p1n72 Institute of Mountain Emergency Medicine'),
(90568, 'https://ror.org/00na1g793', 'en', 1, 'https://ror.org/00na1g793 AF Jochnick Foundation'),
(90569, 'https://ror.org/00ndhrx30', 'en', 1, 'https://ror.org/00ndhrx30 Suez University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŁŠŲ³'),
(90570, 'https://ror.org/00ne0z119', 'no_lang_code', 1, 'https://ror.org/00ne0z119 Lanxess (Germany)'),
(90571, 'https://ror.org/00nfs8853', 'en', 0, 'https://ror.org/00nfs8853 AVRDC - The World Vegetable Center'),
(90572, 'https://ror.org/00nhngx75', 'de', 1, 'https://ror.org/00nhngx75 Planetarium Stuttgart'),
(90573, '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'),
(90574, 'https://ror.org/00njsck89', 'en', 1, 'https://ror.org/00njsck89 China Health Promotion Foundation äø­å›½å„åŗ·äæƒčæ›åŸŗé‡‘ä¼š'),
(90575, 'https://ror.org/00njt2653', 'en', 1, 'https://ror.org/00njt2653 Hallym University Kangnam Sacred Heart Hospital'),
(90576, 'https://ror.org/00nmm3f40', 'en', 1, 'https://ror.org/00nmm3f40 Bhatkhande Music Institute University'),
(90577, 'https://ror.org/00np0b046', 'no', 1, 'https://ror.org/00np0b046 Kautokeino Kommune'),
(90578, 'https://ror.org/00nqgfj77', 'pt', 1, 'https://ror.org/00nqgfj77 Escola UniversitƔria das Artes de Coimbra'),
(90579, 'https://ror.org/00nqjr204', 'en', 1, 'https://ror.org/00nqjr204 Ministry of Science, Technology and Research ą·€ą·’ą¶Æą·Šą¶ŗą·, ą¶­ą·ą¶šą·Šą·‚ą¶« ą·„ą· ą¶“ą¶»ą·Šą¶ŗą·šą·‚ą¶« ą¶…ą¶øą·ą¶­ą·Šą¶ŗą·ą¶‚ą·ą¶ŗ'),
(90580, 'https://ror.org/00nr2vg89', 'en', 1, 'https://ror.org/00nr2vg89 New Mexico Space Grant Consortium'),
(90581, 'https://ror.org/00nsf1h45', 'fr', 1, 'https://ror.org/00nsf1h45 Institut Mines-TƩlƩcom Business School'),
(90582, 'https://ror.org/00nsjbm45', 'no_lang_code', 1, 'https://ror.org/00nsjbm45 Hansoh Bio (United States)'),
(90583, 'https://ror.org/00nv2s006', 'no_lang_code', 1, 'https://ror.org/00nv2s006 NICE America Research'),
(90584, 'https://ror.org/00nvaaq81', 'en', 1, 'https://ror.org/00nvaaq81 Sydney University Musical Society'),
(90585, 'https://ror.org/00nvgrx75', 'en', 1, 'https://ror.org/00nvgrx75 RƩserve de parc national Thaidene Nene Thaidene NƫnƩ National Park Reserve'),
(90586, 'https://ror.org/00nx96f80', 'pl', 1, 'https://ror.org/00nx96f80 Instytut Historii Nauki im. Ludwika i Aleksandra Birkenmajerów Polskiej Akademii Nauk'),
(90587, 'https://ror.org/00nxspy78', 'en', 1, 'https://ror.org/00nxspy78 Marisla Foundation'),
(90588, 'https://ror.org/00nydej67', 'en', 0, 'https://ror.org/00nydej67 Levinsky College of Education ×ž×›×œ×œ×Ŗ לוינהקי לחינוך'),
(90589, 'https://ror.org/00nz0j151', 'en', 0, 'https://ror.org/00nz0j151 Open Geospatial Consortium'),
(90590, 'https://ror.org/00p17p196', 'en', 1, 'https://ror.org/00p17p196 American Society of Overseas Research'),
(90591, 'https://ror.org/00p2fsr49', 'en', 1, 'https://ror.org/00p2fsr49 Charles E. Kaufman Foundation'),
(90592, 'https://ror.org/00p2s5e88', 'no_lang_code', 1, 'https://ror.org/00p2s5e88 (주) źø°ģˆ ź³¼ź°€ģ¹˜ TechnoValue'),
(90593, 'https://ror.org/00p30gg26', 'no_lang_code', 0, 'https://ror.org/00p30gg26 Rockwell Collins (France)'),
(90594, 'https://ror.org/00p45d091', 'en', 1, 'https://ror.org/00p45d091 Korea Post ģš°ģ •ģ‚¬ģ—…ė³øė¶€'),
(90595, 'https://ror.org/00p4k0j84', 'en', 1, 'https://ror.org/00p4k0j84 Kyushu University 九州大学'),
(90596, 'https://ror.org/00p89cc10', 'en', 1, 'https://ror.org/00p89cc10 ESIC Model Hospital & PGIMSR'),
(90597, 'https://ror.org/00p8rjs69', 'en', 1, 'https://ror.org/00p8rjs69 AmeriCorps'),
(90598, 'https://ror.org/00p9by667', 'en', 1, 'https://ror.org/00p9by667 NOAA National Marine Fisheries Service Office of International Affairs and Seafood Inspection'),
(90599, 'https://ror.org/00p9rpe63', 'en', 1, 'https://ror.org/00p9rpe63 Showa University Northern Yokohama Hospital ę˜­å’Œå¤§å­¦ ęØŖęµœåø‚åŒ—éƒØē—…é™¢'),
(90600, 'https://ror.org/00paqx037', 'no_lang_code', 1, 'https://ror.org/00paqx037 Alcorix (United States)'),
(90601, 'https://ror.org/00pcrxq11', 'en', 1, 'https://ror.org/00pcrxq11 National Nanotechnology Research Center Ulusal Nanoteknoloji Araştırma Merkezi'),
(90602, 'https://ror.org/00pd2er22', 'no_lang_code', 1, 'https://ror.org/00pd2er22 International Diamond Services (United States)'),
(90603, 'https://ror.org/00pfevw30', 'en', 1, 'https://ror.org/00pfevw30 Great Barrier Reef Marine Park Authority'),
(90604, 'https://ror.org/00ph04139', 'en', 1, 'https://ror.org/00ph04139 Poole Hospital'),
(90605, 'https://ror.org/00pjcpb77', 'it', 1, 'https://ror.org/00pjcpb77 Ente Regionale per i Servizi all''Agricoltura e alle Foreste'),
(90606, 'https://ror.org/00pjqzf38', 'fr', 1, 'https://ror.org/00pjqzf38 Centre Georges FranƧois Leclerc'),
(90607, 'https://ror.org/00pp5xc73', 'no_lang_code', 1, 'https://ror.org/00pp5xc73 Jeppensen'),
(90608, 'https://ror.org/00ppzen87', 'en', 1, 'https://ror.org/00ppzen87 Empire State Development'),
(90609, 'https://ror.org/00pqdc111', 'en', 1, 'https://ror.org/00pqdc111 Wyoming Department of Transportation'),
(90610, 'https://ror.org/00psb5b18', 'no_lang_code', 1, 'https://ror.org/00psb5b18 Advantech (Taiwan)'),
(90611, 'https://ror.org/00pspca89', 'en', 1, 'https://ror.org/00pspca89 University Hospital Bratislava'),
(90612, 'https://ror.org/00pvepa48', 'no_lang_code', 1, 'https://ror.org/00pvepa48 BioGene (United Kingdom)'),
(90613, 'https://ror.org/00pvw7511', 'no_lang_code', 1, 'https://ror.org/00pvw7511 Unidost (Austria)'),
(90614, 'https://ror.org/00pvwv628', 'en', 0, 'https://ror.org/00pvwv628 Long Island University Brentwood'),
(90615, 'https://ror.org/00pw05h04', 'en', 1, 'https://ror.org/00pw05h04 Parc national Terra-Nova Terra Nova National Park'),
(90616, 'https://ror.org/00pwhet45', 'en', 1, 'https://ror.org/00pwhet45 Georgian National University SEU įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ įƒ”įƒ”įƒ£'),
(90617, 'https://ror.org/00pwy5433', 'de', 0, 'https://ror.org/00pwy5433 artec Forschungszentrum Nachhailtigkeit'),
(90618, 'https://ror.org/00pydep37', 'en', 1, 'https://ror.org/00pydep37 PolicyWise for Children & Families'),
(90619, 'https://ror.org/00pykk203', 'fr', 0, 'https://ror.org/00pykk203 Laboratoire IngƩnierie, ProcƩdƩs, Aliments'),
(90620, 'https://ror.org/00pytyc14', 'de', 1, 'https://ror.org/00pytyc14 GZO Hospital Wetzikon/Zurich GZO Spital Wetzikon'),
(90621, 'https://ror.org/00q0edr73', 'de', 1, 'https://ror.org/00q0edr73 Schƶpflin Foundation Schƶpflin Stiftung'),
(90622, 'https://ror.org/00q3h2974', 'nl', 1, 'https://ror.org/00q3h2974 Vlaamse Interuniversitaire Raad'),
(90623, 'https://ror.org/00q4sx826', 'en', 1, 'https://ror.org/00q4sx826 Office of the Secretary of Defense'),
(90624, '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'),
(90625, 'https://ror.org/00q74jp45', 'tr', 1, 'https://ror.org/00q74jp45 Canakkale Onsekiz Mart Universitesi Tip Fakultesi Hastanesi Ƈanakkale University Hospital'),
(90626, 'https://ror.org/00q7dn693', 'en', 1, 'https://ror.org/00q7dn693 American University of Europe Š¤ŠžŠ Универзитет'),
(90627, 'https://ror.org/00q7xcm69', 'es', 1, 'https://ror.org/00q7xcm69 Instituto Boliviano de Metrologia'),
(90628, 'https://ror.org/00q8bgq27', 'en', 1, 'https://ror.org/00q8bgq27 Shkollat ushtarake tƫ Shqipƫrisƫ Skanderbeg Military University'),
(90629, 'https://ror.org/00q976b76', 'en', 1, 'https://ror.org/00q976b76 V. B. Sochava Institute of Geography Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географии им. Š’.Š‘. Дочавы Š”Šž Š ŠŠ'),
(90630, 'https://ror.org/00qay8a95', 'en', 1, 'https://ror.org/00qay8a95 Bundeswehr Joint Medical Service SanitƤtsdienst der Bundeswehr'),
(90631, 'https://ror.org/00qedmt22', 'en', 1, 'https://ror.org/00qedmt22 Al-Balqa Applied University Ų¬Ų§Ł…Ų¹Ų© البلقاؔ Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(90632, 'https://ror.org/00qemyc07', 'en', 1, 'https://ror.org/00qemyc07 Mindanao State University – Iligan Institute of Technology'),
(90633, 'https://ror.org/00qen7t71', 'en', 1, 'https://ror.org/00qen7t71 Sarawak Multimedia Authority'),
(90634, 'https://ror.org/00qgpp207', 'en', 1, 'https://ror.org/00qgpp207 Kumasi Technical University'),
(90635, 'https://ror.org/00qh8ef51', 'de', 1, 'https://ror.org/00qh8ef51 Zentrum für Luft- und Raumfahrtmedizin der Luftwaffe'),
(90636, '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 Днипровский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ŠøŠ¼ŠµŠ½Šø ŠžŠ»ŠµŃŃ Гончара Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠžŠ»ŠµŃŃ Гончара'),
(90637, 'https://ror.org/00qp5gr06', 'no_lang_code', 1, 'https://ror.org/00qp5gr06 Sandvik (Sweden)'),
(90638, 'https://ror.org/00qps9a02', 'it', 1, 'https://ror.org/00qps9a02 Istituto Nazionale di Geofisica e Vulcanologia'),
(90639, 'https://ror.org/00qq77n27', 'en', 1, 'https://ror.org/00qq77n27 Consortium for Ocean-Sea Ice Modelling in Australia'),
(90640, 'https://ror.org/00qr1pe22', 'fr', 1, 'https://ror.org/00qr1pe22 Centre de Recherches Anglophones'),
(90641, 'https://ror.org/00qtfgg81', 'en', 1, 'https://ror.org/00qtfgg81 Australian Data Archive'),
(90642, 'https://ror.org/00qv5rb32', 'en', 1, 'https://ror.org/00qv5rb32 Maharishi International University'),
(90643, 'https://ror.org/00qvt4f90', 'en', 1, 'https://ror.org/00qvt4f90 Forestmoon'),
(90644, 'https://ror.org/00qxqkw78', 'en', 1, 'https://ror.org/00qxqkw78 European Plate Observing System'),
(90645, 'https://ror.org/00qyh5r35', 'es', 1, 'https://ror.org/00qyh5r35 Hospital Universitario 12 De Octubre'),
(90646, 'https://ror.org/00qyhsw43', 'no_lang_code', 0, 'https://ror.org/00qyhsw43 EADS Innovation Works (Germany)'),
(90647, 'https://ror.org/00qzqdm10', 'en', 1, 'https://ror.org/00qzqdm10 Czech Council of Children and Youth ČeskĆ” rada dětĆ­ a mlĆ”deže'),
(90648, 'https://ror.org/00r2eaj81', 'de', 1, 'https://ror.org/00r2eaj81 Krankenhaus Mara'),
(90649, 'https://ror.org/00r348449', 'en', 1, 'https://ror.org/00r348449 Office of the Assistant Secretary for Health'),
(90650, 'https://ror.org/00r49yt25', 'fr', 1, 'https://ror.org/00r49yt25 Agence de l''eau Loire-Bretagne'),
(90651, 'https://ror.org/00r5vqy54', 'es', 1, 'https://ror.org/00r5vqy54 Universidad Católica del Este'),
(90652, 'https://ror.org/00r6xxj20', 'en', 1, 'https://ror.org/00r6xxj20 Kebri Dehar University'),
(90653, 'https://ror.org/00r71zw23', 'en', 1, 'https://ror.org/00r71zw23 Anyag- Ʃs KƶrnyezetkƩmiai IntƩzet Institute of Materials and Environmental Chemistry'),
(90654, 'https://ror.org/00r8r0m30', 'en', 1, 'https://ror.org/00r8r0m30 Državni arhiv u Pazinu State Archives in Pazin'),
(90655, 'https://ror.org/00r9w3j27', 'en', 1, 'https://ror.org/00r9w3j27 National Center for Global Health and Medicine å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹å›½éš›åŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(90656, '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'),
(90657, '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'),
(90658, 'https://ror.org/00rds8m49', 'no_lang_code', 0, 'https://ror.org/00rds8m49 SK Hynix (South Korea)'),
(90659, 'https://ror.org/00rev1511', 'en', 1, 'https://ror.org/00rev1511 Australian Bureau of Agricultural and Resource Economics'),
(90660, 'https://ror.org/00rg70c39', 'en', 1, 'https://ror.org/00rg70c39 Agostino Gemelli University Polyclinic Fondazione Policlinico Universitario Agostino Gemelli'),
(90661, 'https://ror.org/00rh0mt41', 'en', 1, 'https://ror.org/00rh0mt41 Deutsche Stiftung Friedensforschung German Foundation for Peace Research'),
(90662, 'https://ror.org/00rhzk043', 'en', 1, 'https://ror.org/00rhzk043 Institute of Biosciences & Applications Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī’Ī¹ĪæĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ & Ī•Ļ†Ī±ĻĪ¼ĪæĪ³ĻŽĪ½'),
(90663, 'https://ror.org/00rkqp577', 'en', 0, 'https://ror.org/00rkqp577 LCPL Pathan'),
(90664, 'https://ror.org/00rkrv905', 'fr', 1, 'https://ror.org/00rkrv905 La Ligue Contre le Cancer'),
(90665, 'https://ror.org/00rm5fa18', 'en', 1, 'https://ror.org/00rm5fa18 Garfield Weston Foundation'),
(90666, 'https://ror.org/00rqdn375', 'en', 1, 'https://ror.org/00rqdn375 PƤdagogische Hochschule Schwyz Schwyz University of Teacher Education'),
(90667, 'https://ror.org/00rrv1d42', 'nl', 1, 'https://ror.org/00rrv1d42 Alberta Mennega Stichting'),
(90668, 'https://ror.org/00rt8gn18', 'en', 0, 'https://ror.org/00rt8gn18 InstitiĆŗid TeicneolaĆ­ochta ThrĆ” LĆ­ Institute of Technology Tralee'),
(90669, 'https://ror.org/00ry7rd40', 'es', 1, 'https://ror.org/00ry7rd40 Colombiana de Trasplantes'),
(90670, 'https://ror.org/00s18gt90', 'en', 1, 'https://ror.org/00s18gt90 Spinal Cord Injury Network'),
(90671, 'https://ror.org/00s2gmc58', 'en', 0, 'https://ror.org/00s2gmc58 Central College Nottingham'),
(90672, 'https://ror.org/00s3p9v54', 'en', 1, 'https://ror.org/00s3p9v54 Japan Electric Meters Inspection Corporation ę—„ęœ¬é›»ę°—čØˆå™Øę¤œå®šę‰€'),
(90673, 'https://ror.org/00s425b94', 'no_lang_code', 1, 'https://ror.org/00s425b94 Messer (Germany)'),
(90674, 'https://ror.org/00s8xgq82', 'en', 1, 'https://ror.org/00s8xgq82 Chamroeun University of Poly-Technology'),
(90675, 'https://ror.org/00s9d1a36', 'en', 1, 'https://ror.org/00s9d1a36 Hunan First Normal University ę¹–å—ē¬¬äø€åøˆčŒƒå­¦é™¢'),
(90676, 'https://ror.org/00sa58r90', 'en', 1, 'https://ror.org/00sa58r90 IgarapƩ Institute Instituto IgarapƩ'),
(90677, 'https://ror.org/00sdb8f83', 'en', 1, 'https://ror.org/00sdb8f83 Office of Readiness and Response');
INSERT INTO `rors` VALUES
(90678, 'https://ror.org/00sdj7q88', 'en', 1, 'https://ror.org/00sdj7q88 Showa University Fujigaoka Rehabilitation Hospital ę˜­å’Œå¤§å­¦č—¤ćŒäø˜ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(90679, 'https://ror.org/00se21e39', 'en', 1, 'https://ror.org/00se21e39 Nick Simons Foundation'),
(90680, 'https://ror.org/00se3yr70', 'en', 0, 'https://ror.org/00se3yr70 Guangdong Association of STD and AIDS Prevention and Control å¹æäøœēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(90681, 'https://ror.org/00sjnnb19', 'fr', 1, 'https://ror.org/00sjnnb19 Ɖcole Nationale d''Administration et de Magistrature'),
(90682, 'https://ror.org/00skc2q21', 'en', 1, 'https://ror.org/00skc2q21 Baptist Cancer Center'),
(90683, 'https://ror.org/00sn9ab77', 'en', 0, 'https://ror.org/00sn9ab77 Samara State University Дамарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(90684, 'https://ror.org/00sp4g786', 'en', 1, 'https://ror.org/00sp4g786 Aichi Health Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗę„›ēŸ„ēœŒå„åŗ·ć„ćć‚ŠęŒÆčˆˆäŗ‹ę„­å›£'),
(90685, 'https://ror.org/00sqvqq59', 'no_lang_code', 1, 'https://ror.org/00sqvqq59 Areta International (Italy)'),
(90686, 'https://ror.org/00sr2h055', 'en', 1, 'https://ror.org/00sr2h055 Banner Del E Webb Medical Center'),
(90687, 'https://ror.org/00sxqh512', 'fr', 0, 'https://ror.org/00sxqh512 Laboratoire Psychologie de la Perception'),
(90688, 'https://ror.org/00t2xrj54', 'de', 1, 'https://ror.org/00t2xrj54 Wasserstraßen- und Schifffahrtsamt Oder-Havel'),
(90689, 'https://ror.org/00t30yz20', 'en', 1, 'https://ror.org/00t30yz20 Jiangxi Provincial Department of Science and Technology'),
(90690, 'https://ror.org/00t541f81', 'en', 1, 'https://ror.org/00t541f81 Korean Operations Research and Management Science Society ķ•œźµ­ź²½ģ˜ź³¼ķ•™ķšŒ'),
(90691, 'https://ror.org/00t5xc355', 'ca', 1, 'https://ror.org/00t5xc355 Corporació Catalana de Mitjans Audiovisuals'),
(90692, 'https://ror.org/00t9khr87', 'en', 1, 'https://ror.org/00t9khr87 Food and Nutrition Service'),
(90693, 'https://ror.org/00tbh0t11', 'en', 1, 'https://ror.org/00tbh0t11 Science and Technology Department of Hubei Province ę¹–åŒ—ēœē§‘ęŠ€åŽ…'),
(90694, 'https://ror.org/00te8p082', 'fr', 1, 'https://ror.org/00te8p082 Mechanisms of epigenetic inheritance MƩcanismes de l''HƩrƩditƩ ƩpigƩnƩtique'),
(90695, 'https://ror.org/00tfsm290', 'en', 1, 'https://ror.org/00tfsm290 Toronto General & Western Hospital Foundation'),
(90696, 'https://ror.org/00tgqzw13', 'en', 1, 'https://ror.org/00tgqzw13 NOAA National Weather Service Servicio Meteorológico Nacional'),
(90697, 'https://ror.org/00tgy9105', 'en', 1, 'https://ror.org/00tgy9105 Royal Zoological Society of New South Wales'),
(90698, 'https://ror.org/00tjzq647', 'fr', 1, 'https://ror.org/00tjzq647 Joint Research Unit in Environmental Acoustics UnitƩ Mixte de Recherche en Acoustique Environnementale'),
(90699, 'https://ror.org/00tn5z179', 'no_lang_code', 1, 'https://ror.org/00tn5z179 Bolt Threads'),
(90700, 'https://ror.org/00tprt448', 'en', 1, 'https://ror.org/00tprt448 Mount Revelstoke National Park Parc national du Mont-Revelstoke'),
(90701, 'https://ror.org/00tq5n859', 'en', 1, 'https://ror.org/00tq5n859 Institute of Nuclear & Radiological Sciences and Technology, Energy & Safety Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī Ļ…ĻĪ·Ī½Ī¹ĪŗĻŽĪ½ & Ī”Ī±Ī“Ī¹ĪæĪ»ĪæĪ³Ī¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ & Τεχνολογίας, Ενέργειας & Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī±Ļ‚'),
(90702, 'https://ror.org/00tvtvq35', 'es', 1, 'https://ror.org/00tvtvq35 Universidad Privada de Irapuato'),
(90703, 'https://ror.org/00twhfc16', 'de', 1, 'https://ror.org/00twhfc16 Besucherzentrum Welterbe Grube Messel'),
(90704, 'https://ror.org/00txhkt32', 'en', 1, 'https://ror.org/00txhkt32 Handong Global University ķ•œė™ėŒ€ķ•™źµ'),
(90705, 'https://ror.org/00tybxn16', 'en', 0, 'https://ror.org/00tybxn16 Ivanovo State Academy of Agriculture'),
(90706, 'https://ror.org/00tz4k675', 'en', 1, 'https://ror.org/00tz4k675 Harlem Hospital Center'),
(90707, 'https://ror.org/00v0y5771', 'fr', 0, 'https://ror.org/00v0y5771 Ɖcole Centrale Paris'),
(90708, 'https://ror.org/00v27bc16', 'no_lang_code', 1, 'https://ror.org/00v27bc16 Functional Coating Technology (United States)'),
(90709, 'https://ror.org/00v2tx290', 'nl', 1, 'https://ror.org/00v2tx290 Medisch Centrum Haaglanden'),
(90710, 'https://ror.org/00v349e63', 'en', 0, 'https://ror.org/00v349e63 Hungarian Scientific Research Fund'),
(90711, 'https://ror.org/00v34f693', 'en', 1, 'https://ror.org/00v34f693 Quantitative Biology Center Zentrum für Quantitative Biologie'),
(90712, 'https://ror.org/00v408z34', 'en', 1, 'https://ror.org/00v408z34 China Medical University äø­åœ‹é†«č—„å¤§å­ø'),
(90713, 'https://ror.org/00v64w771', 'en', 1, 'https://ror.org/00v64w771 National Scientific Centre ā€œInstitute of Agrarian Economicsā€ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрної економіки»'),
(90714, 'https://ror.org/00v670451', 'de', 1, 'https://ror.org/00v670451 Dienstleistungszentrum Ländlicher Raum Rheinhessen-Nahe-Hunsrück'),
(90715, 'https://ror.org/00v757448', 'no_lang_code', 1, 'https://ror.org/00v757448 Iris Light Technologies (United States)'),
(90716, 'https://ror.org/00v8hqs51', 'en', 1, 'https://ror.org/00v8hqs51 NewSchool'),
(90717, 'https://ror.org/00v8s1x79', 'no_lang_code', 1, 'https://ror.org/00v8s1x79 Airbus (Italy)'),
(90718, 'https://ror.org/00v99wx36', 'fr', 1, 'https://ror.org/00v99wx36 UnitƩ de Recherche Interdisplinaire Octogone'),
(90719, 'https://ror.org/00v9vte73', 'en', 1, 'https://ror.org/00v9vte73 Ruotsin sƤteilyturvavirasto StrƄlsƤkerhetsmyndigheten Swedish Radiation Safety Authority'),
(90720, 'https://ror.org/00va88c89', 'en', 1, 'https://ror.org/00va88c89 International Institute of Tropical Agriculture'),
(90721, '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'),
(90722, 'https://ror.org/00vbvha87', 'en', 0, 'https://ror.org/00vbvha87 Public Health England'),
(90723, 'https://ror.org/00vbzva31', 'en', 1, 'https://ror.org/00vbzva31 MRC Centre for Medical Mycology'),
(90724, 'https://ror.org/00vf4jm23', 'en', 1, 'https://ror.org/00vf4jm23 Administration for Community Living'),
(90725, 'https://ror.org/00vfbgd72', 'it', 1, 'https://ror.org/00vfbgd72 INGV Sezione di Milano'),
(90726, 'https://ror.org/00vfm5970', 'it', 1, 'https://ror.org/00vfm5970 INGV Sezione di Pisa'),
(90727, 'https://ror.org/00vh3r553', 'id', 1, 'https://ror.org/00vh3r553 Institut Teknologi Tangerang Selatan'),
(90728, 'https://ror.org/00vhg4k19', 'en', 1, 'https://ror.org/00vhg4k19 The Royal Society of Queensland'),
(90729, 'https://ror.org/00vhgwv19', 'ga', 1, 'https://ror.org/00vhgwv19 Met Ɖireann'),
(90730, 'https://ror.org/00vkmnx48', 'sv', 1, 'https://ror.org/00vkmnx48 Sveaskog'),
(90731, 'https://ror.org/00vng3v16', 'no_lang_code', 1, 'https://ror.org/00vng3v16 EDF Renouvelables'),
(90732, 'https://ror.org/00vp82b55', 'da', 1, 'https://ror.org/00vp82b55 15. Juni Fonden'),
(90733, 'https://ror.org/00vpwhm04', 'en', 1, 'https://ror.org/00vpwhm04 Center for Excellence in Brain Science and Intelligence Technology å­¦é™¢č„‘ē§‘å­¦äøŽę™ŗčƒ½ęŠ€ęœÆå“č¶Šåˆ›ę–°äø­åæƒ'),
(90734, 'https://ror.org/00vrm7197', 'de', 1, 'https://ror.org/00vrm7197 Hessen Forest HessenForst'),
(90735, 'https://ror.org/00vsnbn30', 'es', 1, 'https://ror.org/00vsnbn30 Instituto de Investigaciones en Ciencias de la Salud'),
(90736, 'https://ror.org/00vsvph51', 'fr', 1, 'https://ror.org/00vsvph51 Physiopathologie et imagerie des troubles neurologiques Physiopathology and Imaging of Neurological Disorders'),
(90737, 'https://ror.org/00vtya531', 'pl', 1, 'https://ror.org/00vtya531 Akademia Bialska im. Jana Pawła II'),
(90738, 'https://ror.org/00vwfb160', 'en', 1, 'https://ror.org/00vwfb160 Darlington Memorial Hospital'),
(90739, 'https://ror.org/00vwq0k57', 'en', 1, 'https://ror.org/00vwq0k57 Ministry of the Environment MinistƩrio do Meio Ambiente'),
(90740, 'https://ror.org/00vzyt138', 'en', 1, 'https://ror.org/00vzyt138 Huadong Medical Institute of Biotechniques åŽäøœåŒ»å­¦ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(90741, 'https://ror.org/00w0nde43', 'de', 1, 'https://ror.org/00w0nde43 Heubergstiftung'),
(90742, 'https://ror.org/00w1qvp54', 'fr', 1, 'https://ror.org/00w1qvp54 Laboratoire des MatƩriaux AvancƩs'),
(90743, 'https://ror.org/00w20ev23', 'pt', 1, 'https://ror.org/00w20ev23 Faculdade Ceres'),
(90744, 'https://ror.org/00w3qhf76', 'fr', 1, 'https://ror.org/00w3qhf76 Fonds de recherche du QuƩbec'),
(90745, 'https://ror.org/00w571a59', 'fr', 1, 'https://ror.org/00w571a59 Centre national interprofessionnel de l''économie laitière'),
(90746, 'https://ror.org/00w6g5w60', 'en', 1, 'https://ror.org/00w6g5w60 City Of Hope National Medical Center'),
(90747, 'https://ror.org/00wa08m82', 'it', 1, 'https://ror.org/00wa08m82 Fondazione Memofonte Memofonte Foundation'),
(90748, 'https://ror.org/00wa40650', 'en', 1, 'https://ror.org/00wa40650 Defense Forensics and Biometrics Agency'),
(90749, 'https://ror.org/00waz9262', 'fr', 1, 'https://ror.org/00waz9262 UMR DƩveloppement et SociƩtƩs'),
(90750, 'https://ror.org/00wbskb04', 'en', 1, 'https://ror.org/00wbskb04 Texas Biomedical Research Institute'),
(90751, 'https://ror.org/00wc35a22', 'no_lang_code', 1, 'https://ror.org/00wc35a22 EurActiv'),
(90752, 'https://ror.org/00wcv5432', 'de', 1, 'https://ror.org/00wcv5432 Bundesverfassungsggericht'),
(90753, 'https://ror.org/00wdsp051', 'en', 1, 'https://ror.org/00wdsp051 Cape Town HVTN Immunology Laboratory / Hutchinson Centre Research Institute of South Africa'),
(90754, 'https://ror.org/00wdspp82', 'en', 1, 'https://ror.org/00wdspp82 Sidney Kimmel Foundation'),
(90755, 'https://ror.org/00wekhx15', 'en', 1, 'https://ror.org/00wekhx15 Institute of General and Inorganic Chemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по обща Šø неорганична Ń…ŠøŠ¼ŠøŃ'),
(90756, 'https://ror.org/00wevt173', 'no_lang_code', 1, 'https://ror.org/00wevt173 Sjƶgren’s Foundation'),
(90757, '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'),
(90758, 'https://ror.org/00wg3s094', 'pt', 0, 'https://ror.org/00wg3s094 Instituto Superior de Contabilidade e Administracao do Porto'),
(90759, 'https://ror.org/00whhby07', 'fr', 1, 'https://ror.org/00whhby07 Centre Henri Becquerel'),
(90760, 'https://ror.org/00whkrf32', 'en', 1, 'https://ror.org/00whkrf32 Division of Graduate Education'),
(90761, 'https://ror.org/00wj0f678', 'en', 0, 'https://ror.org/00wj0f678 Centre for International Mobility'),
(90762, 'https://ror.org/00wjmdk95', 'en', 0, 'https://ror.org/00wjmdk95 Dutch Institute for Alcohol Policy STAP Nederlands Instituut voor Alcoholbeleid STAP'),
(90763, 'https://ror.org/00wks2x74', 'en', 1, 'https://ror.org/00wks2x74 Indiana Space Grant Consortium'),
(90764, 'https://ror.org/00wm7p047', 'en', 1, 'https://ror.org/00wm7p047 Meiji Pharmaceutical University ę˜Žę²»č–¬ē§‘å¤§å­¦'),
(90765, 'https://ror.org/00wmmfp02', 'en', 1, 'https://ror.org/00wmmfp02 Royal Society of Biology'),
(90766, 'https://ror.org/00wqdbc63', 'en', 1, 'https://ror.org/00wqdbc63 Government of Western Australia'),
(90767, 'https://ror.org/00wryzy45', 'id', 1, 'https://ror.org/00wryzy45 Sekolah Tinggi Agama Kristen Teruna Bhakti'),
(90768, 'https://ror.org/00ws7fy26', 'da', 1, 'https://ror.org/00ws7fy26 Frode V. Nyegaard og Hustru’s Fond'),
(90769, 'https://ror.org/00wtgbr91', 'mi', 1, 'https://ror.org/00wtgbr91 Te Pūnaha Matatini'),
(90770, 'https://ror.org/00wtjmd03', 'en', 1, 'https://ror.org/00wtjmd03 Western Wildland Environmental Threat Assessment Center'),
(90771, 'https://ror.org/00wtvt142', 'en', 1, 'https://ror.org/00wtvt142 Koryo Songgyungwan University 고려성균꓀'),
(90772, 'https://ror.org/00wtxb773', 'en', 0, 'https://ror.org/00wtxb773 University Sakartvelo'),
(90773, 'https://ror.org/00wvvcy92', 'de', 1, 'https://ror.org/00wvvcy92 Landesamt für Umwelt'),
(90774, 'https://ror.org/00ww23688', 'no_lang_code', 0, 'https://ror.org/00ww23688 Crystal Research (United States)'),
(90775, 'https://ror.org/00wx2xr17', 'en', 1, 'https://ror.org/00wx2xr17 Neuroblastoma UK'),
(90776, 'https://ror.org/00wyh7698', 'fr', 1, 'https://ror.org/00wyh7698 MƩtabiot'),
(90777, 'https://ror.org/00wz4b049', 'en', 1, 'https://ror.org/00wz4b049 Zoological Research Museum Alexander Koenig Zoologisches Forschungsmuseum Alexander Koenig'),
(90778, 'https://ror.org/00x0xhn70', 'es', 1, 'https://ror.org/00x0xhn70 Universidad Bernardo O''Higgins'),
(90779, 'https://ror.org/00x514t95', 'en', 1, 'https://ror.org/00x514t95 Hanbat National University ķ•œė°­ėŒ€ķ•™źµ'),
(90780, 'https://ror.org/00x5ftp92', 'en', 1, 'https://ror.org/00x5ftp92 Research Nova Scotia'),
(90781, 'https://ror.org/00x64e042', 'en', 1, 'https://ror.org/00x64e042 Standards and Calibration Laboratory ę ‡å‡†åŠę ”ę­£å®žéŖŒę‰€'),
(90782, 'https://ror.org/00x7aga66', 'en', 0, 'https://ror.org/00x7aga66 Canadian Journal of Community Mental Health'),
(90783, 'https://ror.org/00xaej097', 'de', 1, 'https://ror.org/00xaej097 Stammzellnetzwerk.NRW Stem Cell Network North Rhine-Westphalia'),
(90784, 'https://ror.org/00xbre758', 'pt', 1, 'https://ror.org/00xbre758 Unimed Belo Horizonte'),
(90785, 'https://ror.org/00xc48n06', 'en', 1, 'https://ror.org/00xc48n06 MedicalOne Market Research'),
(90786, 'https://ror.org/00xcmeq33', 'en', 1, 'https://ror.org/00xcmeq33 Tahoe Environmental Research Center'),
(90787, 'https://ror.org/00xcwps97', 'en', 1, 'https://ror.org/00xcwps97 SingHealth Duke-NUS Academic Medical Centre'),
(90788, 'https://ror.org/00xcz8739', 'en', 1, 'https://ror.org/00xcz8739 Orenburg Municipal Higher College of Humanities and Natural Sciences'),
(90789, 'https://ror.org/00xe85x21', 'no_lang_code', 1, 'https://ror.org/00xe85x21 Lactomason ė½ķ† ė©”ģ“ģŠØ'),
(90790, 'https://ror.org/00xfea068', 'en', 1, 'https://ror.org/00xfea068 Chengdu Science and Technology Bureau ęˆéƒ½åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(90791, 'https://ror.org/00xngy573', 'fr', 1, 'https://ror.org/00xngy573 Centre de Recherche Universitaire Lorrain d’Histoire'),
(90792, 'https://ror.org/00xqf8t64', 'en', 1, 'https://ror.org/00xqf8t64 Padjadjaran University Universitas Padjadjaran'),
(90793, 'https://ror.org/00xrkf913', 'no_lang_code', 1, 'https://ror.org/00xrkf913 Pacira (United States)'),
(90794, 'https://ror.org/00xtszd26', 'en', 1, 'https://ror.org/00xtszd26 Thomas Adewumi University'),
(90795, 'https://ror.org/00xw9d516', 'en', 1, 'https://ror.org/00xw9d516 Kantipur Engineering College'),
(90796, 'https://ror.org/00xwg5y60', 'en', 1, 'https://ror.org/00xwg5y60 Shiga University of Medical Science Hospital ę»‹č³€åŒ»ē§‘å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(90797, 'https://ror.org/00xx8vr92', 'en', 1, 'https://ror.org/00xx8vr92 Sarajevo School of Science and Technology Sarajevska Ŕkola za nauku i tehnologiju'),
(90798, 'https://ror.org/00xxxe629', 'en', 1, 'https://ror.org/00xxxe629 American Brain Foundation'),
(90799, 'https://ror.org/00y084206', 'en', 1, 'https://ror.org/00y084206 Ministry of Education'),
(90800, 'https://ror.org/00y0dmr19', 'en', 1, 'https://ror.org/00y0dmr19 Clif Family Foundation'),
(90801, 'https://ror.org/00y0p0f23', 'en', 1, 'https://ror.org/00y0p0f23 Wuxi Vocational College of Science and Technology ę— é””ē§‘ęŠ€čŒäøšå­¦é™¢'),
(90802, 'https://ror.org/00y0yff03', 'en', 1, 'https://ror.org/00y0yff03 SollefteƄ Hospital SollefteƄ sjukhus'),
(90803, 'https://ror.org/00y1v7386', 'no_lang_code', 1, 'https://ror.org/00y1v7386 University of Kolwezi UniversitƩ de kolwezi'),
(90804, 'https://ror.org/00y2dy597', 'en', 1, 'https://ror.org/00y2dy597 Qom University of Medical Science and Health Services دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی قم'),
(90805, 'https://ror.org/00y2ek133', 'en', 1, 'https://ror.org/00y2ek133 Naval Oceanography Office'),
(90806, 'https://ror.org/00y2f9m95', 'en', 1, 'https://ror.org/00y2f9m95 Benghazi Military University Academy'),
(90807, 'https://ror.org/00y2q5g68', 'en', 1, 'https://ror.org/00y2q5g68 Association for Integration and Migration Sdružení pro integraci a migraci'),
(90808, 'https://ror.org/00y30p033', 'en', 1, 'https://ror.org/00y30p033 Zambia Metrology Agency'),
(90809, 'https://ror.org/00y951z15', 'fr', 1, 'https://ror.org/00y951z15 Institut SupƩrieur PƩdagogique de Bukavu'),
(90810, 'https://ror.org/00y9yvy68', 'en', 1, 'https://ror.org/00y9yvy68 State Key Laboratory of Food Nutrition and Safety é£Ÿå“č„å…»äøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(90811, 'https://ror.org/00ya5k859', 'no_lang_code', 1, 'https://ror.org/00ya5k859 Cargill (United Kingdom)'),
(90812, 'https://ror.org/00yafkq43', 'no_lang_code', 1, 'https://ror.org/00yafkq43 Copernicus.org (Germany)'),
(90813, 'https://ror.org/00ybqta11', 'en', 1, 'https://ror.org/00ybqta11 Nemours Wildlife Foundation'),
(90814, 'https://ror.org/00yebwb79', 'es', 1, 'https://ror.org/00yebwb79 Universidad Privada Sergio Bernales'),
(90815, 'https://ror.org/00yfg2203', 'no_lang_code', 1, 'https://ror.org/00yfg2203 Intelligent Prosthetic Systems (United States)'),
(90816, 'https://ror.org/00yga0160', 'en', 1, 'https://ror.org/00yga0160 Delta College of Science and Technology ŁƒŁ„ŁŠŲ© دلتا Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(90817, 'https://ror.org/00ygt2y02', 'en', 1, 'https://ror.org/00ygt2y02 Ernst Strüngmann Institut Ernst Strüngmann Institute for Neuroscience'),
(90818, 'https://ror.org/00ygxqz19', 'fr', 1, 'https://ror.org/00ygxqz19 Acta les instituts techniques agricoles'),
(90819, 'https://ror.org/00yk2cv94', 'en', 1, 'https://ror.org/00yk2cv94 Saint John of God Hospital'),
(90820, 'https://ror.org/00yn8ya75', 'en', 1, 'https://ror.org/00yn8ya75 Chuluncayani Adventist University'),
(90821, 'https://ror.org/00ynafe15', 'en', 1, 'https://ror.org/00ynafe15 Alberta Innovates'),
(90822, 'https://ror.org/00yp80c93', 'en', 1, 'https://ror.org/00yp80c93 Moore College, Moore Theological College'),
(90823, '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'),
(90824, 'https://ror.org/00yqqb480', 'en', 1, 'https://ror.org/00yqqb480 Nationaal Regieorgaan Onderwijsonderzoek National Initiative for Education Research'),
(90825, 'https://ror.org/00yr5bt74', 'en', 1, 'https://ror.org/00yr5bt74 Fulbright Austria'),
(90826, 'https://ror.org/00yr7db88', 'en', 1, 'https://ror.org/00yr7db88 Chartered Institute of Ergonomics and Human Factors'),
(90827, 'https://ror.org/00ys8p410', 'es', 1, 'https://ror.org/00ys8p410 Instituto Nacional de Innovación Agropecuaria y Forestal'),
(90828, 'https://ror.org/00yt9w502', 'en', 1, 'https://ror.org/00yt9w502 Uczelnia WSB Merito Warszawa WSB Merito University in Warsaw'),
(90829, 'https://ror.org/00yx04352', 'en', 1, 'https://ror.org/00yx04352 Buda Health Center Budai EgƩszsƩgkƶzpont'),
(90830, 'https://ror.org/00yzwtk60', 'de', 1, 'https://ror.org/00yzwtk60 Dienstleistungszentrum LƤndlicher Raum'),
(90831, 'https://ror.org/00z0akp07', 'pt', 1, 'https://ror.org/00z0akp07 ABRAN - Associação Brasileira de Nutrologia ABRAN - Brazilian Association of Nutrology'),
(90832, 'https://ror.org/00z0dab30', 'pt', 1, 'https://ror.org/00z0dab30 Universidade da Paz'),
(90833, 'https://ror.org/00z27jk27', 'en', 1, 'https://ror.org/00z27jk27 Shanghai University of Traditional Chinese Medicine äøŠęµ·äø­åŒ»čÆå¤§å­¦'),
(90834, 'https://ror.org/00z2m5n36', 'en', 1, 'https://ror.org/00z2m5n36 Thoracic Oncology Group of Australasia'),
(90835, 'https://ror.org/00z2tp793', 'en', 1, 'https://ror.org/00z2tp793 Center for Neuro-Oncology'),
(90836, 'https://ror.org/00z443178', 'no_lang_code', 1, 'https://ror.org/00z443178 Environmental Analysis and Remote Sensing (Netherlands)'),
(90837, 'https://ror.org/00z5fvd84', 'en', 1, 'https://ror.org/00z5fvd84 Centre for the Governance of AI'),
(90838, 'https://ror.org/00z7gk255', 'no_lang_code', 1, 'https://ror.org/00z7gk255 Lasec (South Africa)'),
(90839, 'https://ror.org/00z9tq784', 'en', 1, 'https://ror.org/00z9tq784 International Cancer Alternative Network'),
(90840, 'https://ror.org/00zahx847', 'en', 1, 'https://ror.org/00zahx847 ParlamentnĆ­ institut Parliamentary Institute'),
(90841, 'https://ror.org/00zbnzw74', 'en', 1, 'https://ror.org/00zbnzw74 Stratford University'),
(90842, 'https://ror.org/00zbzej19', 'fr', 1, 'https://ror.org/00zbzej19 Centre FranƧais des Ɖtudes Ɖthiopiennes'),
(90843, 'https://ror.org/00zd77s10', 'es', 1, 'https://ror.org/00zd77s10 Ministerio de Educación del Perú Ministry of Education of Peru'),
(90844, 'https://ror.org/00zdzzf56', 'en', 1, 'https://ror.org/00zdzzf56 Chamber of Labour Kammer für Arbeiter und Angestellte'),
(90845, 'https://ror.org/00zfsm297', 'no_lang_code', 1, 'https://ror.org/00zfsm297 Ollo group (Lithuania)'),
(90846, 'https://ror.org/00zgt9663', 'en', 1, 'https://ror.org/00zgt9663 Alikhan Bokeikhan University'),
(90847, 'https://ror.org/00zh72k45', 'no_lang_code', 1, 'https://ror.org/00zh72k45 Celtic Molecular Diagnostics (South Africa) Keltiese MolekulĆŖre Diagnostiek'),
(90848, 'https://ror.org/00zn2c847', 'en', 1, 'https://ror.org/00zn2c847 Great Ormond Street Hospital'),
(90849, 'https://ror.org/00zp1hf53', 'en', 1, 'https://ror.org/00zp1hf53 Hellenic Complex Systems Laboratory Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Ī•ĻĪ³Ī±ĻƒĻ„Ī®ĻĪ¹Īæ Ī£ĻĪ¼Ļ€Ī»ĪæĪŗĻ‰Ī½ Ī£Ļ…ĻƒĻ„Ī·Ī¼Ī¬Ļ„Ļ‰Ī½'),
(90850, 'https://ror.org/00zqqv187', 'en', 1, 'https://ror.org/00zqqv187 Kharkiv Medical Academy of Postgraduate Education Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ¾Ń— меГичної акаГемії ŠæŃ–ŃŠ»ŃŠ“ŠøŠæŠ»Š¾Š¼Š½Š¾Ń— освіти'),
(90851, 'https://ror.org/00zqz4d90', 'no_lang_code', 1, 'https://ror.org/00zqz4d90 Millor Battery (Spain)'),
(90852, 'https://ror.org/00zskr649', 'en', 1, 'https://ror.org/00zskr649 Marion County Public Health Department'),
(90853, 'https://ror.org/00ztzxf77', 'en', 1, 'https://ror.org/00ztzxf77 Academy of Fine Arts Münster Kunstakademie Münster'),
(90854, 'https://ror.org/00zv6rh96', 'en', 1, 'https://ror.org/00zv6rh96 Mevlana University Mevlana Üniversitesi'),
(90855, 'https://ror.org/00zv9q339', 'en', 1, 'https://ror.org/00zv9q339 American Bureau of Shipping'),
(90856, 'https://ror.org/00zvn8514', 'en', 1, 'https://ror.org/00zvn8514 Dambi Dollo University Yuunivasitii Dambii Dolloo į‹°įˆį‰¢ į‹¶įˆŽ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(90857, 'https://ror.org/00zw9nc64', 'en', 1, 'https://ror.org/00zw9nc64 University of Miami Health System'),
(90858, 'https://ror.org/00zynmr34', 'no_lang_code', 1, 'https://ror.org/00zynmr34 Baba Guru Nanak University ਬਾਬਾ ਗੁਰੂ ਨਾਨਕ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(90859, 'https://ror.org/0103we012', 'en', 1, 'https://ror.org/0103we012 United Bank of Carbon'),
(90860, 'https://ror.org/0105bk454', 'en', 1, 'https://ror.org/0105bk454 American Hotel & Lodging Association'),
(90861, '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'),
(90862, 'https://ror.org/0107ygt22', 'en', 1, 'https://ror.org/0107ygt22 Bronx-Lebanon Hospital Center'),
(90863, 'https://ror.org/0108z6p13', 'en', 1, 'https://ror.org/0108z6p13 RRF Foundation for Aging'),
(90864, 'https://ror.org/0109kg923', 'en', 1, 'https://ror.org/0109kg923 Social Program Evaluators & Consultants, Inc.'),
(90865, 'https://ror.org/0109m8c38', 'en', 1, 'https://ror.org/0109m8c38 Wessex Medical Research'),
(90866, 'https://ror.org/010b96m59', 'en', 1, 'https://ror.org/010b96m59 Taguig City University'),
(90867, 'https://ror.org/010bg5245', 'en', 1, 'https://ror.org/010bg5245 EC-Earth Consortium'),
(90868, 'https://ror.org/010d6pr75', 'en', 1, 'https://ror.org/010d6pr75 Shree Medical and Technical College'),
(90869, 'https://ror.org/010fydm81', 'en', 1, 'https://ror.org/010fydm81 Forsvarets Sanitetskommando The Danish Armed Forces Medical Command'),
(90870, 'https://ror.org/010gf3m33', 'en', 1, 'https://ror.org/010gf3m33 China Industrial Control Systems Cyber Emergency Response Team å›½å®¶å·„äøšäæ”ęÆå®‰å…Øå‘å±•ē ”ē©¶äø­åæƒ'),
(90871, 'https://ror.org/010gxg263', 'fr', 1, 'https://ror.org/010gxg263 University of Quebec UniversitƩ du QuƩbec'),
(90872, 'https://ror.org/010h6g454', 'en', 1, 'https://ror.org/010h6g454 Sidney Kimmel Cancer Center'),
(90873, 'https://ror.org/010hfy465', 'en', 1, 'https://ror.org/010hfy465 Yokohama City University Hospital ęØŖęµœåø‚ē«‹å¤§å­¦é™„å±žē—…é™¢'),
(90874, 'https://ror.org/010na6b76', 'en', 1, 'https://ror.org/010na6b76 Auckland War Memorial Museum Tāmaki Paenga Hira'),
(90875, 'https://ror.org/010qdt721', 'en', 1, 'https://ror.org/010qdt721 Zhejiang Provincial Health and Family Planning Commission'),
(90876, 'https://ror.org/010swb518', 'en', 0, 'https://ror.org/010swb518 Don Law Institute Донской ЮриГический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(90877, 'https://ror.org/010ww9x09', 'en', 1, 'https://ror.org/010ww9x09 Virginia Space Grant Consortium'),
(90878, 'https://ror.org/01101ex45', 'en', 1, 'https://ror.org/01101ex45 Institut za uporedno pravo Institute of Comparative Law'),
(90879, 'https://ror.org/0110d9x36', 'en', 1, 'https://ror.org/0110d9x36 Kabardino-Balkarian State University ŠšŠ°Š±Š°Ń€Š“ŠøŠ½Š¾-Балкарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(90880, 'https://ror.org/0111wxt17', 'en', 0, 'https://ror.org/0111wxt17 National Radiological Protection Board'),
(90881, 'https://ror.org/0112b4s87', 'en', 1, 'https://ror.org/0112b4s87 Canadian Literacy and Learning Network'),
(90882, 'https://ror.org/011398447', 'en', 1, 'https://ror.org/011398447 Musculoskeletal Transplant Foundation'),
(90883, 'https://ror.org/0113zvv22', 'en', 0, 'https://ror.org/0113zvv22 Catholic University College of Bruges–Ostend'),
(90884, 'https://ror.org/0114gzh18', 'en', 1, 'https://ror.org/0114gzh18 NBS Northern Business School'),
(90885, 'https://ror.org/0115n5160', 'en', 1, 'https://ror.org/0115n5160 California Natural Resources Agency'),
(90886, 'https://ror.org/0116z8r77', 'de', 1, 'https://ror.org/0116z8r77 Niedersächsisches Ministerium für Wissenschaft und Kultur'),
(90887, 'https://ror.org/0117z7d66', 'es', 1, 'https://ror.org/0117z7d66 Centro de Investigaciones en Tecnologia de Pinturas'),
(90888, 'https://ror.org/01180st77', 'fr', 1, 'https://ror.org/01180st77 ENCPB - LycƩe Pierre-Gilles-de-Gennes'),
(90889, 'https://ror.org/011907q25', 'fr', 0, 'https://ror.org/011907q25 Laboratoire de GƩnie des ProcƩdƩs Catalytiques'),
(90890, 'https://ror.org/011bwkg92', 'en', 0, 'https://ror.org/011bwkg92 Industrial Research Limited'),
(90891, 'https://ror.org/011e3e176', 'en', 1, 'https://ror.org/011e3e176 Government of British Columbia'),
(90892, 'https://ror.org/011e9bt93', 'en', 1, 'https://ror.org/011e9bt93 United States Air Force Office of Scientific Research'),
(90893, 'https://ror.org/011ewyt41', 'pt', 1, 'https://ror.org/011ewyt41 Instituto de Tecnologias Interativas Interactive Technologies Institute'),
(90894, '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'),
(90895, 'https://ror.org/011frrw52', 'es', 1, 'https://ror.org/011frrw52 Universidad Odontológica Dominicana'),
(90896, 'https://ror.org/011gev843', 'de', 1, 'https://ror.org/011gev843 Popakademie Baden-Württemberg'),
(90897, 'https://ror.org/011gzwz34', 'no_lang_code', 1, 'https://ror.org/011gzwz34 MiniSun (United States)'),
(90898, 'https://ror.org/011hgkj26', 'fr', 1, 'https://ror.org/011hgkj26 BibliothĆØque de GenĆØve'),
(90899, 'https://ror.org/011jhfp96', 'de', 1, 'https://ror.org/011jhfp96 Klinikum Darmstadt'),
(90900, 'https://ror.org/011kdvn37', 'en', 1, 'https://ror.org/011kdvn37 Kohn Foundation'),
(90901, 'https://ror.org/011n96f14', 'en', 1, 'https://ror.org/011n96f14 Bjerknes Centre for Climate Research Bjerknessenteret for klimaforskning'),
(90902, 'https://ror.org/011p7eg09', 'sv', 1, 'https://ror.org/011p7eg09 Tore Nilsons Stiftelse fƶr Medicinsk Forskning'),
(90903, 'https://ror.org/011qdnn53', 'en', 1, 'https://ror.org/011qdnn53 Eastern Visayas State University Pamantasang Pambansa ng Silangang Kabisayaan'),
(90904, 'https://ror.org/011qkaj49', 'no_lang_code', 1, 'https://ror.org/011qkaj49 Roche (United States)'),
(90905, 'https://ror.org/011qzf880', 'en', 0, 'https://ror.org/011qzf880 Austrian Excellence Center for Tribology Ɩsterreichisches Exzellenzzentrum für Tribologie'),
(90906, 'https://ror.org/011rpdz66', 'en', 1, 'https://ror.org/011rpdz66 Australian Institute of Aboriginal and Torres Strait Islander Studies'),
(90907, 'https://ror.org/011s5rx78', 'en', 1, 'https://ror.org/011s5rx78 Minu-Sepehr Aerospace University'),
(90908, 'https://ror.org/011s5vb38', 'en', 1, 'https://ror.org/011s5vb38 Ricola Foundation'),
(90909, 'https://ror.org/011sqtf19', 'en', 1, 'https://ror.org/011sqtf19 Guilin Science and Technology Bureau ę”‚ęž—åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(90910, 'https://ror.org/011ta8654', 'fr', 1, 'https://ror.org/011ta8654 Conseil RƩgional des Hauts-de-France'),
(90911, 'https://ror.org/011tj4033', 'pt', 1, 'https://ror.org/011tj4033 Universidade Candido Mendes'),
(90912, 'https://ror.org/011xkm146', 'es', 1, 'https://ror.org/011xkm146 Centro Universitario De Integracion Humanistico'),
(90913, 'https://ror.org/012019z16', 'no_lang_code', 1, 'https://ror.org/012019z16 Cognitive Radio Technologies'),
(90914, 'https://ror.org/01202fx60', 'en', 1, 'https://ror.org/01202fx60 National Centre for Photovoltaic Research and Education'),
(90915, 'https://ror.org/0120y0t77', 'en', 1, 'https://ror.org/0120y0t77 UKOLN'),
(90916, 'https://ror.org/01226dv09', 'en', 1, 'https://ror.org/01226dv09 University Hospital Regensburg UniversitƤtsklinikum Regensburg'),
(90917, 'https://ror.org/0123meh57', 'en', 1, 'https://ror.org/0123meh57 Providence Hospital'),
(90918, 'https://ror.org/0124n7b57', 'da', 1, 'https://ror.org/0124n7b57 Anti Doping Danmark'),
(90919, 'https://ror.org/0128gh156', 'en', 1, 'https://ror.org/0128gh156 Central Institute For Subtropical Horticulture ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤‰ą¤Ŗą„‹ą¤·ą„ą¤£ ą¤¬ą¤¾ą¤—ą¤µą¤¾ą¤Øą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(90920, 'https://ror.org/0129z1n29', 'es', 1, 'https://ror.org/0129z1n29 Sociedad Venezolana de Ecologia Venezuelan Society of Ecology'),
(90921, 'https://ror.org/012b3v785', 'de', 1, 'https://ror.org/012b3v785 Cusanuswerk'),
(90922, 'https://ror.org/012cw8553', 'en', 1, 'https://ror.org/012cw8553 Probation Board for Northern Ireland'),
(90923, 'https://ror.org/012d0ge65', 'no_lang_code', 1, 'https://ror.org/012d0ge65 AC2T Research (Austria) Ɩsterreichisches Kompetenzzentrum für Tribologie'),
(90924, 'https://ror.org/012e6rh19', 'en', 1, 'https://ror.org/012e6rh19 Tokyo Medical University Hospital ę±äŗ¬åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(90925, 'https://ror.org/012f2ag31', 'en', 1, 'https://ror.org/012f2ag31 Ethical Consumer Research Association'),
(90926, 'https://ror.org/012k96e85', 'en', 1, 'https://ror.org/012k96e85 Norlannin yliopistollinen sairaala Norrlands universitetssjukhus University Hospital of UmeƄ'),
(90927, 'https://ror.org/012kjw534', 'no_lang_code', 0, 'https://ror.org/012kjw534 Affymetrix (United States)'),
(90928, 'https://ror.org/012kq6w06', 'no_lang_code', 1, 'https://ror.org/012kq6w06 Finnish Research and Engineering (Finland)'),
(90929, 'https://ror.org/012mzc697', 'en', 1, 'https://ror.org/012mzc697 Institute for Safety Problems of Nuclear Power Plants Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ проблем безпеки атомних електростанцій'),
(90930, 'https://ror.org/012n4km28', 'en', 1, 'https://ror.org/012n4km28 American Academy of Optometry'),
(90931, 'https://ror.org/012npkr10', 'en', 1, 'https://ror.org/012npkr10 St. Joseph''s Institute of Technology'),
(90932, 'https://ror.org/012prn105', 'en', 1, 'https://ror.org/012prn105 Python in Heliophysics Community'),
(90933, 'https://ror.org/012q9wx84', 'en', 1, 'https://ror.org/012q9wx84 Stellwagen Bank National Marine Sanctuary'),
(90934, 'https://ror.org/012s4fy16', 'it', 1, 'https://ror.org/012s4fy16 INGV Sezione di Palermo'),
(90935, 'https://ror.org/012sz6c52', 'en', 1, 'https://ror.org/012sz6c52 NOAA Uncrewed Systems Research Transition Office'),
(90936, 'https://ror.org/012t2f387', 'en', 1, 'https://ror.org/012t2f387 Jihočeský kraj South Bohemian Region'),
(90937, 'https://ror.org/012v5a532', 'en', 1, 'https://ror.org/012v5a532 Kalinga State University'),
(90938, 'https://ror.org/012w3pv65', 'es', 1, 'https://ror.org/012w3pv65 Instituto Catequístico Universidad Católica'),
(90939, 'https://ror.org/012wsxz85', 'en', 1, 'https://ror.org/012wsxz85 State Key Laboratory of Hydrology-Water Resources and Hydraulic Engineering ę°“ę–‡ę°“čµ„ęŗäøŽę°“åˆ©å·„ēØ‹ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(90940, 'https://ror.org/012y8h312', 'en', 1, 'https://ror.org/012y8h312 David Center for the American Revolution'),
(90941, 'https://ror.org/012zp9903', 'en', 1, 'https://ror.org/012zp9903 National Research Council for Economics Humanities and Social Science'),
(90942, 'https://ror.org/0131vfw26', 'es', 1, 'https://ror.org/0131vfw26 Complejo Hospitalario de Salamanca'),
(90943, 'https://ror.org/0134qm052', 'no_lang_code', 1, 'https://ror.org/0134qm052 BioSyntha Technology (United Kingdom)'),
(90944, 'https://ror.org/0135b1w07', 'en', 1, 'https://ror.org/0135b1w07 Alexian Brothers Health System'),
(90945, 'https://ror.org/0135d1r83', 'en', 1, 'https://ror.org/0135d1r83 Yokohama City University ęØŖęµœåø‚ē«‹å¤§å­¦'),
(90946, 'https://ror.org/0135fch82', 'en', 1, 'https://ror.org/0135fch82 Kitt Peak National Observatory Observatoire de Kitt Peak'),
(90947, 'https://ror.org/0136m5z53', 'en', 1, 'https://ror.org/0136m5z53 University of Florida Cancer Hospital'),
(90948, 'https://ror.org/0137dsz97', 'de', 1, 'https://ror.org/0137dsz97 Fachagentur Nachwachsende Rohstoffe'),
(90949, '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'),
(90950, 'https://ror.org/01392hb02', 'pt', 1, 'https://ror.org/01392hb02 Instituto Superior Monitor'),
(90951, 'https://ror.org/0139j4p80', 'en', 1, 'https://ror.org/0139j4p80 Anhui University of Traditional Chinese Medicine å®‰å¾½äø­åŒ»å­¦é™¢'),
(90952, 'https://ror.org/013agg827', 'en', 1, 'https://ror.org/013agg827 Andes Amazon Fund'),
(90953, 'https://ror.org/013appg07', 'en', 1, 'https://ror.org/013appg07 United States Research Software Engineer Association'),
(90954, 'https://ror.org/013aysd81', 'en', 1, 'https://ror.org/013aysd81 National Research Foundation of Korea'),
(90955, 'https://ror.org/013cdqc34', 'en', 1, 'https://ror.org/013cdqc34 Alzahra University دانؓگاه الزهرا'),
(90956, 'https://ror.org/013ew2c19', 'en', 1, 'https://ror.org/013ew2c19 NOAA Office of Water Prediction'),
(90957, 'https://ror.org/013gkdy87', 'es', 1, 'https://ror.org/013gkdy87 Instituto de Investigaciones Psicológicas'),
(90958, 'https://ror.org/013gpqv08', 'en', 1, 'https://ror.org/013gpqv08 University of N''Djamena UniversitƩ de N''Djamena'),
(90959, 'https://ror.org/013kjyp64', 'en', 1, 'https://ror.org/013kjyp64 American Heart Association'),
(90960, 'https://ror.org/013m0ac37', 'no_lang_code', 1, 'https://ror.org/013m0ac37 IIE MSA'),
(90961, 'https://ror.org/013n0gz40', 'en', 1, 'https://ror.org/013n0gz40 Indiana Christian University'),
(90962, 'https://ror.org/013nxtf56', 'en', 0, 'https://ror.org/013nxtf56 Istituto di Ricerca sui Sistemi Giudiziari The Research Institute on Judicial Systems'),
(90963, 'https://ror.org/013rxeb24', 'en', 1, 'https://ror.org/013rxeb24 Scarring Alopecia Foundation'),
(90964, 'https://ror.org/013x7x220', 'en', 1, 'https://ror.org/013x7x220 Earl H. and Ethel M. Myers Oceanographic and Marine Biology Trust'),
(90965, 'https://ror.org/014077m09', 'en', 1, 'https://ror.org/014077m09 Margaret Q. Landenberger Research Foundation'),
(90966, 'https://ror.org/0140fyd18', 'en', 1, 'https://ror.org/0140fyd18 Science and Information Organization'),
(90967, 'https://ror.org/01413r497', 'en', 1, 'https://ror.org/01413r497 Shandong Tumor Hospital å±±äøœēœč‚æē˜¤åŒ»é™¢'),
(90968, 'https://ror.org/0141j1w94', 'en', 1, 'https://ror.org/0141j1w94 Gemini North Observatory'),
(90969, 'https://ror.org/0143pk141', 'en', 1, 'https://ror.org/0143pk141 Foundation for Liver Research'),
(90970, 'https://ror.org/0143q4j07', 'en', 0, 'https://ror.org/0143q4j07 Center for Power Electronics Systems'),
(90971, 'https://ror.org/0143qz379', 'fr', 1, 'https://ror.org/0143qz379 University of French Ontario UniversitƩ de l''Ontario franƧais'),
(90972, 'https://ror.org/0145f3g58', 'en', 1, 'https://ror.org/0145f3g58 Showa University East Hospital ę˜­å’Œå¤§å­¦ē—…é™¢é™„å±žę±ē—…é™¢'),
(90973, 'https://ror.org/0145rpw38', 'en', 1, 'https://ror.org/0145rpw38 Stockholm Resilience Centre'),
(90974, 'https://ror.org/0145x2c32', 'en', 1, 'https://ror.org/0145x2c32 Banco Nacional de Desenvolvimento EconƓmico e Social Brazilian Development Bank'),
(90975, 'https://ror.org/0145znz58', 'en', 1, 'https://ror.org/0145znz58 Walter Reed Army Institute of Research'),
(90976, 'https://ror.org/0146z4r19', 'en', 1, 'https://ror.org/0146z4r19 National Center for Ecological Analysis and Synthesis'),
(90977, 'https://ror.org/0149e7294', 'en', 1, 'https://ror.org/0149e7294 University of Kikwit UniversitƩ de kikwit'),
(90978, 'https://ror.org/014ahdf17', 'en', 1, 'https://ror.org/014ahdf17 Georgian Bay Islands National Park Parc national des Ǝles-de-la-Baie-Georgienne'),
(90979, 'https://ror.org/014cdjz51', 'no_lang_code', 1, 'https://ror.org/014cdjz51 Lallemand (France)'),
(90980, 'https://ror.org/014dbdq60', 'en', 1, 'https://ror.org/014dbdq60 Neuromatch'),
(90981, 'https://ror.org/014dr4051', 'no', 1, 'https://ror.org/014dr4051 FHF – Fiskeri- og havbruksnƦringens forskningsfinansiering FHF – Norwegian Seafood Research Fund'),
(90982, 'https://ror.org/014eqcp15', 'no_lang_code', 1, 'https://ror.org/014eqcp15 Cyrus Biotechnology'),
(90983, 'https://ror.org/014etd178', 'es', 1, 'https://ror.org/014etd178 Instituto de BiologĆ­a Marina y Pesquera Almirante Storni'),
(90984, 'https://ror.org/014gnqa09', 'en', 1, 'https://ror.org/014gnqa09 Taungoo Technological University'),
(90985, 'https://ror.org/014gyb994', 'en', 1, 'https://ror.org/014gyb994 Wine Australia'),
(90986, 'https://ror.org/014jrg624', 'en', 1, 'https://ror.org/014jrg624 Catholic Big Sisters & Big Brothers'),
(90987, 'https://ror.org/014kkjk75', 'en', 1, 'https://ror.org/014kkjk75 Lviv Medical University Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(90988, 'https://ror.org/014kxm163', 'en', 1, 'https://ror.org/014kxm163 NOAA National Weather Service Pacific Region'),
(90989, 'https://ror.org/014kyp779', 'en', 0, 'https://ror.org/014kyp779 M. Kh Dulati Taraz State University М.Š„. Š”ŃƒŠ»Š°Ń‚Šø атынГағы Тараз мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(90990, 'https://ror.org/014ndnr76', 'fr', 1, 'https://ror.org/014ndnr76 NeuroDiderot'),
(90991, 'https://ror.org/014pmyt66', 'es', 1, 'https://ror.org/014pmyt66 Caja Rural de JaƩn'),
(90992, 'https://ror.org/014pzm971', 'es', 1, 'https://ror.org/014pzm971 Instituto de Geocronología y Geología Isotópica'),
(90993, 'https://ror.org/014q5mw12', 'en', 1, 'https://ror.org/014q5mw12 Surakarta Christian University'),
(90994, 'https://ror.org/014r1my29', 'en', 1, 'https://ror.org/014r1my29 Rocky Mountain Conservancy'),
(90995, 'https://ror.org/014vdsh37', 'en', 1, 'https://ror.org/014vdsh37 Advanced Grid Institute'),
(90996, 'https://ror.org/014vqg108', 'en', 1, 'https://ror.org/014vqg108 IP Australia'),
(90997, 'https://ror.org/014wjf777', 'fr', 1, 'https://ror.org/014wjf777 Association Neurofibromatoses et Recklinghausen'),
(90998, 'https://ror.org/014xjce10', 'es', 1, 'https://ror.org/014xjce10 Universidad Tecnológica del Sur'),
(90999, 'https://ror.org/01526pb12', 'en', 1, 'https://ror.org/01526pb12 Bundesanstalt für Landwirtschaft und Ernährung Federal Office for Food and Agriculture'),
(91000, 'https://ror.org/0152shq94', 'en', 1, 'https://ror.org/0152shq94 Cooperative Research Centre for Developing Northern Australia'),
(91001, 'https://ror.org/0154y7z37', 'no_lang_code', 1, 'https://ror.org/0154y7z37 Miyama Composites Materials (Greece)'),
(91002, 'https://ror.org/0155ctq43', 'no_lang_code', 1, 'https://ror.org/0155ctq43 BGI Genomics åŽå¤§åŸŗå› č‚”ä»½ęœ‰é™å…¬åø'),
(91003, 'https://ror.org/0156gk772', 'fr', 0, 'https://ror.org/0156gk772 Laboratoire de MƩcanique des Sols, Structures et MatƩriaux'),
(91004, 'https://ror.org/01590nj79', 'en', 1, 'https://ror.org/01590nj79 Pusat Perubatan Universiti Kebangsaan Malaysia University Kebangsaan Malaysia Medical Centre'),
(91005, 'https://ror.org/0159sjw70', 'en', 0, 'https://ror.org/0159sjw70 Gateway Technical College'),
(91006, 'https://ror.org/015bmra78', 'en', 1, 'https://ror.org/015bmra78 Institute of Geosciences and Earth Resources Istituto di Geoscienze e Georisorse'),
(91007, 'https://ror.org/015dcpw68', 'no_lang_code', 1, 'https://ror.org/015dcpw68 Anatech'),
(91008, 'https://ror.org/015dvgv60', 'no_lang_code', 1, 'https://ror.org/015dvgv60 Juris (Germany)'),
(91009, 'https://ror.org/015e2vx95', 'en', 1, 'https://ror.org/015e2vx95 Italian Cultural Institute, Tokyo ć‚¤ć‚æćƒŖć‚¢ę–‡åŒ–ä¼šé¤Ø'),
(91010, 'https://ror.org/015e5sp16', 'en', 1, 'https://ror.org/015e5sp16 Highways England'),
(91011, 'https://ror.org/015fvc051', 'en', 1, 'https://ror.org/015fvc051 De Lisa Waller Hayes Stichting Living With Hope'),
(91012, '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'),
(91013, 'https://ror.org/015g0sa97', 'en', 1, 'https://ror.org/015g0sa97 Malden Grade School'),
(91014, 'https://ror.org/015h57w45', 'no_lang_code', 1, 'https://ror.org/015h57w45 Whitehead Scientific (South Africa)'),
(91015, 'https://ror.org/015hfw664', 'en', 1, 'https://ror.org/015hfw664 Good Hope Hospital'),
(91016, 'https://ror.org/015hh0z25', 'en', 1, 'https://ror.org/015hh0z25 Texas A&M University – Central Texas'),
(91017, 'https://ror.org/015kk2x11', 'en', 1, 'https://ror.org/015kk2x11 Galapagos Conservancy'),
(91018, 'https://ror.org/015q23935', 'fr', 1, 'https://ror.org/015q23935 French Research Institute for Development Institut de Recherche pour le DƩveloppement'),
(91019, 'https://ror.org/015ter047', 'no_lang_code', 1, 'https://ror.org/015ter047 IS3D (United States)'),
(91020, 'https://ror.org/015th0q50', 'en', 1, 'https://ror.org/015th0q50 Nansen International Environmental and Remote Sensing Center'),
(91021, 'https://ror.org/015w1pn62', 'en', 1, 'https://ror.org/015w1pn62 Worldwide Book Services (United Kingdom)'),
(91022, 'https://ror.org/015wb9p75', 'en', 1, 'https://ror.org/015wb9p75 Foundation for Physical Therapy Research'),
(91023, 'https://ror.org/015xfeg86', 'en', 1, 'https://ror.org/015xfeg86 Action for AT'),
(91024, 'https://ror.org/015yf2b46', 'en', 1, 'https://ror.org/015yf2b46 Dell Children''s Medical Center of Central Texas'),
(91025, 'https://ror.org/015zdqm30', 'en', 1, 'https://ror.org/015zdqm30 Federal Technical and Vocational Education and Training Institute'),
(91026, 'https://ror.org/015zq0969', 'en', 1, 'https://ror.org/015zq0969 Fiona Wood Foundation'),
(91027, 'https://ror.org/0160prf97', 'no_lang_code', 1, 'https://ror.org/0160prf97 Edge Foundation'),
(91028, 'https://ror.org/0163qa322', 'en', 1, 'https://ror.org/0163qa322 National Peanut Board'),
(91029, 'https://ror.org/016459f45', 'en', 0, 'https://ror.org/016459f45 Cumbria Partnership NHS Foundation Trust'),
(91030, 'https://ror.org/0164cy529', 'fr', 1, 'https://ror.org/0164cy529 AndrƩ Losch Fondation'),
(91031, 'https://ror.org/0165ax130', 'fr', 1, 'https://ror.org/0165ax130 HƓpital Roger Salengro'),
(91032, 'https://ror.org/016701m24', 'en', 1, 'https://ror.org/016701m24 Solamalai College of Engineering'),
(91033, 'https://ror.org/01687me48', 'fr', 0, 'https://ror.org/01687me48 Ɖcole Internationale des Sciences du Traitement de l''Information'),
(91034, 'https://ror.org/0168fvh11', 'en', 1, 'https://ror.org/0168fvh11 Chengdu Research Base of Giant Panda Breeding ęˆéƒ½å¤§ē†ŠēŒ«ē¹č‚²ē ”ē©¶åŸŗåœ°'),
(91035, 'https://ror.org/0169che65', 'de', 1, 'https://ror.org/0169che65 Andrologicum München'),
(91036, 'https://ror.org/0169gd037', 'en', 1, 'https://ror.org/0169gd037 Ruralis - Institute for Rural and Regional Research'),
(91037, 'https://ror.org/016b66y19', 'es', 1, 'https://ror.org/016b66y19 Hospital Christus Muguerza Alta Especialidad'),
(91038, 'https://ror.org/016bped08', 'en', 1, 'https://ror.org/016bped08 Guangzhou Liwan District Traditional Chinese Medicine Hospital'),
(91039, 'https://ror.org/016brqk63', 'en', 1, 'https://ror.org/016brqk63 University of Applied Management'),
(91040, 'https://ror.org/016c4a879', 'en', 1, 'https://ror.org/016c4a879 Berkshire Medical Center'),
(91041, 'https://ror.org/016eff762', 'en', 1, 'https://ror.org/016eff762 Menelik II Medical and Health Science College į‹³įŒįˆ›į‹Š įˆįŠ’įˆŠįŠ­ įˆ…įŠ­įˆįŠ“įŠ“ įŒ¤įŠ“ įˆ³į‹­įŠ•įˆµ įŠ®įˆŒįŒ…'),
(91042, 'https://ror.org/016esgf68', 'en', 1, 'https://ror.org/016esgf68 PsychoTropical Research'),
(91043, 'https://ror.org/016fwax73', 'sv', 0, 'https://ror.org/016fwax73 LantmƤnnen'),
(91044, 'https://ror.org/016gb9e15', 'en', 1, 'https://ror.org/016gb9e15 University of the Sunshine Coast'),
(91045, 'https://ror.org/016gbn942', 'en', 1, 'https://ror.org/016gbn942 Queen''s Medical Center'),
(91046, 'https://ror.org/016gvpq28', 'fr', 0, 'https://ror.org/016gvpq28 Alimentation et Sciences Sociales'),
(91047, 'https://ror.org/016h08r74', 'en', 1, 'https://ror.org/016h08r74 Microbiology Society'),
(91048, 'https://ror.org/016kfyg29', 'en', 1, 'https://ror.org/016kfyg29 International Institute of Information Technology'),
(91049, 'https://ror.org/016m1q064', 'no_lang_code', 1, 'https://ror.org/016m1q064 Science-Metrix (Canada)'),
(91050, 'https://ror.org/016n0q862', 'en', 1, 'https://ror.org/016n0q862 Israel Ministry of Health ×žÖ“×©Ö°×‚×ØÖ·×“ הַבְּר֓יאוּת'),
(91051, 'https://ror.org/016n8g626', 'en', 1, 'https://ror.org/016n8g626 Shanghai National Accounting Institute äøŠęµ·å›½å®¶ä¼šč®”å­¦é™¢'),
(91052, 'https://ror.org/016nge880', 'da', 1, 'https://ror.org/016nge880 NordsjƦllands Hospital'),
(91053, 'https://ror.org/016nv8j08', 'fr', 1, 'https://ror.org/016nv8j08 GƩnomique fonctionnelle comparative'),
(91054, 'https://ror.org/016p3a611', 'de', 1, 'https://ror.org/016p3a611 VWA Hochschule'),
(91055, 'https://ror.org/016p83279', 'es', 1, 'https://ror.org/016p83279 Hospital Universitario Virgen Macarena'),
(91056, 'https://ror.org/016pfse95', 'fr', 0, 'https://ror.org/016pfse95 Neurobiologie de l''Olfaction et ModƩlisation en Imagerie'),
(91057, 'https://ror.org/016r5vm61', 'en', 1, 'https://ror.org/016r5vm61 Academician Stepan Demianchuk International University Of Economics and Humanities ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ економіко-Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Дтепана Š”ŠµŠ¼ā€™ŃŠ½Ń‡ŃƒŠŗŠ°'),
(91058, 'https://ror.org/016t1kc57', 'no_lang_code', 1, 'https://ror.org/016t1kc57 Kao Corporation (Japan) čŠ±ēŽ‹ę Ŗå¼ä¼šē¤¾'),
(91059, 'https://ror.org/016t6nf16', 'no_lang_code', 1, 'https://ror.org/016t6nf16 Vianode (Norway)'),
(91060, 'https://ror.org/016v2t089', 'en', 1, 'https://ror.org/016v2t089 ADEN University PanamĆ”'),
(91061, 'https://ror.org/016yqb229', 'it', 1, 'https://ror.org/016yqb229 Confederazione Generale Italiana del Lavoro'),
(91062, 'https://ror.org/0171m6n33', 'de', 1, 'https://ror.org/0171m6n33 Schifffahrtmedizinisches Institut der Marine'),
(91063, 'https://ror.org/0173bhk64', 'no_lang_code', 1, 'https://ror.org/0173bhk64 Elsheikh Abdallah Elbadri University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų“ŁŠŲ® عبدالله Ų§Ł„ŲØŲÆŲ±ŁŠ'),
(91064, 'https://ror.org/01767d733', 'en', 1, 'https://ror.org/01767d733 Erasmus University College Brussels Erasmushogeschool Brussel Erasmushogeschool brussel'),
(91065, 'https://ror.org/01769zz43', 'en', 1, 'https://ror.org/01769zz43 South Johnston High School'),
(91066, 'https://ror.org/017aqg979', 'en', 1, 'https://ror.org/017aqg979 Hungarian Science and Technology Foundation'),
(91067, 'https://ror.org/017bbxn17', 'fr', 0, 'https://ror.org/017bbxn17 Centre de Biologie du DƩveloppement'),
(91068, 'https://ror.org/017f19q81', 'nl', 1, 'https://ror.org/017f19q81 Nederlands Olympisch ComitƩ Nederlandse Sport Federatie'),
(91069, 'https://ror.org/017gh2t49', 'es', 1, 'https://ror.org/017gh2t49 Centro de Estudios Tecnológicos y Universitarios del Golfo'),
(91070, 'https://ror.org/017gx5z33', 'en', 1, 'https://ror.org/017gx5z33 Cambridge Information Group'),
(91071, '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'),
(91072, 'https://ror.org/017k80q27', 'en', 1, 'https://ror.org/017k80q27 Birmingham Children''s Hospital'),
(91073, 'https://ror.org/017kr6b96', 'en', 1, 'https://ror.org/017kr6b96 Southeastern Ontario Academic Medical Organization'),
(91074, 'https://ror.org/017qzdd52', 'es', 1, 'https://ror.org/017qzdd52 Hospital Maciel'),
(91075, 'https://ror.org/017sfvb56', 'en', 1, 'https://ror.org/017sfvb56 American Society for Bioethics and Humanities'),
(91076, 'https://ror.org/017t6vc13', 'fr', 1, 'https://ror.org/017t6vc13 CEPN'),
(91077, 'https://ror.org/017vxse19', 'en', 1, 'https://ror.org/017vxse19 World Animal Protection'),
(91078, 'https://ror.org/017vyhs10', 'en', 1, 'https://ror.org/017vyhs10 Moorea Coral Reef Long Term Ecological Research'),
(91079, 'https://ror.org/017x4hj83', 'en', 1, 'https://ror.org/017x4hj83 American Psychiatric Foundation'),
(91080, 'https://ror.org/017xf2h35', 'de', 1, 'https://ror.org/017xf2h35 Forschungsstelle für Zeitgeschichte in Hamburg'),
(91081, 'https://ror.org/018959f85', 'de', 1, 'https://ror.org/018959f85 DECHEMA Research Institute DECHEMA-Forschungsinstitut'),
(91082, 'https://ror.org/018c4gh22', 'en', 1, 'https://ror.org/018c4gh22 Instituto Marangoni'),
(91083, 'https://ror.org/018d4rr63', 'fr', 1, 'https://ror.org/018d4rr63 Psychologie Ergonomique et Sociale pour l''ExpƩrience Utilisateurs');
INSERT INTO `rors` VALUES
(91084, 'https://ror.org/018d9zk51', 'en', 1, 'https://ror.org/018d9zk51 ESCP Business School'),
(91085, 'https://ror.org/018f2hw88', 'en', 1, 'https://ror.org/018f2hw88 Hutchinson Centre Research Institute in Uganda'),
(91086, 'https://ror.org/018fvk877', 'sv', 1, 'https://ror.org/018fvk877 Stiftelsen fƶr ƅbo Akademi'),
(91087, 'https://ror.org/018gb4016', 'en', 1, 'https://ror.org/018gb4016 Biochemistry Research Institute of La Plata'),
(91088, 'https://ror.org/018gn0t60', 'en', 1, 'https://ror.org/018gn0t60 Indian Institute of Management Rohtak'),
(91089, 'https://ror.org/018k53h31', 'fr', 1, 'https://ror.org/018k53h31 MinistĆØre du travail, de l''emploi et de l''insertion'),
(91090, 'https://ror.org/018kjvj80', 'en', 1, 'https://ror.org/018kjvj80 Barbados National Standards Institution'),
(91091, 'https://ror.org/018nbd877', 'no_lang_code', 0, 'https://ror.org/018nbd877 Silicon Graphics International (United States)'),
(91092, 'https://ror.org/018r78t52', 'no_lang_code', 1, 'https://ror.org/018r78t52 Rumbek University'),
(91093, 'https://ror.org/018rwb805', 'en', 1, 'https://ror.org/018rwb805 Sichuan Tourism University å››å·ę—…ęøøå¤§å­¦'),
(91094, 'https://ror.org/018sxpn63', 'pt', 1, 'https://ror.org/018sxpn63 Centro Nacional de Primatas'),
(91095, 'https://ror.org/018t4w162', 'en', 1, 'https://ror.org/018t4w162 An Roinn EalaĆ­on, Oidhreachta agus Gaeltachta Department of Culture, Heritage and the Gaeltacht'),
(91096, 'https://ror.org/018wb2371', 'no_lang_code', 1, 'https://ror.org/018wb2371 FluxSense AB (Sweden)'),
(91097, 'https://ror.org/018x00f26', 'no_lang_code', 1, 'https://ror.org/018x00f26 FutureMeds (United Kingdom)'),
(91098, 'https://ror.org/018ypnc38', 'en', 1, 'https://ror.org/018ypnc38 Human Vaccines Project Europe Stichting Human Vaccines Project Europe'),
(91099, 'https://ror.org/018yw5541', 'en', 1, 'https://ror.org/018yw5541 Institute of Oceanology 中国科学院海擋研究所'),
(91100, 'https://ror.org/018zc6p18', 'id', 1, 'https://ror.org/018zc6p18 Institut Teknologi Telkom Purwokerto Purwokerto Telkom Institute of Technology'),
(91101, 'https://ror.org/018zra666', 'en', 1, 'https://ror.org/018zra666 Health and Family Planning Commission of Hubei Province ę¹–åŒ—ēœå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(91102, 'https://ror.org/0192qrt53', 'en', 1, 'https://ror.org/0192qrt53 Pushchino Scientific Center for Biological Research Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Ā«ŠŸŃƒŃ‰ŠøŠ½ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр биологических исслеГований Российской АкаГемии наук»'),
(91103, 'https://ror.org/0193mtn28', 'en', 1, 'https://ror.org/0193mtn28 Toxicology Society of South Africa'),
(91104, 'https://ror.org/01949tn21', 'id', 1, 'https://ror.org/01949tn21 Universitas Veteran Republik Indonesia Makassar'),
(91105, 'https://ror.org/0198t0w55', 'en', 1, 'https://ror.org/0198t0w55 Institute of Reflective Investigation and Specialization Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Рефлексивних Š”Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ & Дпеціалізації Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рефлексивных исслеГований Šø специализаций'),
(91106, 'https://ror.org/0198xy071', 'en', 1, 'https://ror.org/0198xy071 Milano University Press'),
(91107, 'https://ror.org/019af4n30', 'en', 1, 'https://ror.org/019af4n30 Innovative Medicines Initiative'),
(91108, 'https://ror.org/019av8481', 'en', 1, 'https://ror.org/019av8481 Nanjing Institute of Geology and Paleontology äø­å›½ē§‘å­¦é™¢å—äŗ¬åœ°č“Øå¤ē”Ÿē‰©ē ”ē©¶ę‰€'),
(91109, 'https://ror.org/019cpth08', 'en', 1, 'https://ror.org/019cpth08 Technological University Sittwe'),
(91110, 'https://ror.org/019dmpq73', 'es', 1, 'https://ror.org/019dmpq73 Fundación Cellex'),
(91111, 'https://ror.org/019hph417', 'de', 1, 'https://ror.org/019hph417 Zentrum für Mechatronik und Automatisierungstechnik'),
(91112, 'https://ror.org/019jdc178', 'en', 1, 'https://ror.org/019jdc178 Northern Research Station'),
(91113, 'https://ror.org/019kf3481', 'en', 1, 'https://ror.org/019kf3481 OpenAIRE Non-Profit Civil Partnership'),
(91114, 'https://ror.org/019mqw137', 'no_lang_code', 1, 'https://ror.org/019mqw137 White arkitekter (Sweden)'),
(91115, 'https://ror.org/019p70n30', 'en', 1, 'https://ror.org/019p70n30 Gros Morne National Park Parc national du Gros-Morne'),
(91116, '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'),
(91117, 'https://ror.org/019v6dw66', 'no_lang_code', 1, 'https://ror.org/019v6dw66 Zylem Biosciences'),
(91118, 'https://ror.org/019vfke14', 'en', 1, 'https://ror.org/019vfke14 Abubakar Tafawa Balewa University'),
(91119, '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 Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГных Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… проблем Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(91120, 'https://ror.org/019w4f821', 'en', 1, 'https://ror.org/019w4f821 European Union'),
(91121, 'https://ror.org/019xm3p48', 'en', 1, 'https://ror.org/019xm3p48 Government of the Republic of Korea'),
(91122, 'https://ror.org/019ya6433', 'en', 1, 'https://ror.org/019ya6433 Department for Business, Energy and Industrial Strategy'),
(91123, '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) äø­å›½ēŸ³ę²¹č„æå—ę²¹ę°”ē”°å…¬åøå‹˜ęŽ¢å¼€å‘ē ”ē©¶é™¢'),
(91124, 'https://ror.org/01a4es322', 'en', 1, 'https://ror.org/01a4es322 Tiny Blue Dot Foundation'),
(91125, 'https://ror.org/01a5y6f48', 'de', 1, 'https://ror.org/01a5y6f48 Bibliothek für Bildungsgeschichtliche Forschung des DIPF'),
(91126, 'https://ror.org/01a67ma74', 'en', 1, 'https://ror.org/01a67ma74 The Federal State Budget Scientific Institution "Institute of Special Education" Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коррекционной пеГагогики»'),
(91127, 'https://ror.org/01a6wy980', 'de', 1, 'https://ror.org/01a6wy980 Hugo Grotius'),
(91128, 'https://ror.org/01a9z1q73', 'en', 1, 'https://ror.org/01a9z1q73 Northeast Institute of Geography and Agroecology äø­å›½ē§‘å­¦é™¢äøœåŒ—åœ°ē†äøŽå†œäøšē”Ÿę€ē ”ē©¶ę‰€'),
(91129, 'https://ror.org/01aa1m516', 'no_lang_code', 1, 'https://ror.org/01aa1m516 Covalence Research'),
(91130, 'https://ror.org/01aaztb91', 'de', 1, 'https://ror.org/01aaztb91 Staatliches Institut für Musikforschung'),
(91131, 'https://ror.org/01ag9w134', 'en', 1, 'https://ror.org/01ag9w134 Malta Competition and Consumer Affairs Authority'),
(91132, 'https://ror.org/01ajt3179', 'en', 1, 'https://ror.org/01ajt3179 Hutchison/MRC Research Centre'),
(91133, 'https://ror.org/01ajv0n48', 'en', 1, 'https://ror.org/01ajv0n48 Cumbria Northumberland Tyne and Wear NHS Foundation Trust'),
(91134, 'https://ror.org/01ak5cj98', 'en', 1, 'https://ror.org/01ak5cj98 Simón Bolívar University Universidad Simón Bolívar'),
(91135, 'https://ror.org/01akcbx94', 'pl', 1, 'https://ror.org/01akcbx94 Szpital Morski im. PCK'),
(91136, 'https://ror.org/01akman82', 'no_lang_code', 1, 'https://ror.org/01akman82 Mallinckrodt (United States)'),
(91137, 'https://ror.org/01amqts42', 'no_lang_code', 0, 'https://ror.org/01amqts42 European Association of the Machine Tool Industries'),
(91138, 'https://ror.org/01an7kf92', 'en', 1, 'https://ror.org/01an7kf92 Anti-Slavery'),
(91139, 'https://ror.org/01antkr91', 'nl', 0, 'https://ror.org/01antkr91 Agency for Innovation by Science and Technology Agentschap voor Innovatie door Wetenschap en Technologie'),
(91140, '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'),
(91141, 'https://ror.org/01arx1p46', 'en', 1, 'https://ror.org/01arx1p46 Uniwersytet WSB Merito Gdańsk WSB Merito University in Gdańsk'),
(91142, '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'),
(91143, 'https://ror.org/01at0r091', 'no_lang_code', 1, 'https://ror.org/01at0r091 AvidBiotics (United States)'),
(91144, 'https://ror.org/01at6dg30', 'fr', 1, 'https://ror.org/01at6dg30 PĆ“le d’Expertise de la RĆ©gulation NumĆ©rique'),
(91145, 'https://ror.org/01atvfx83', 'en', 1, 'https://ror.org/01atvfx83 Hung Vuong University of Ho Chi Minh City'),
(91146, 'https://ror.org/01awebs74', 'no_lang_code', 1, 'https://ror.org/01awebs74 Fiat Lux'),
(91147, 'https://ror.org/01awp2978', 'en', 1, 'https://ror.org/01awp2978 Department of Primary Industries and Regional Development'),
(91148, 'https://ror.org/01ayrdf49', 'en', 1, 'https://ror.org/01ayrdf49 Euroopan kemikaalivirasto European Chemicals Agency'),
(91149, 'https://ror.org/01b1j4e13', 'en', 1, 'https://ror.org/01b1j4e13 Institute for High Pressure Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики высоких Гавлений имени'),
(91150, 'https://ror.org/01b1wzf66', 'en', 1, 'https://ror.org/01b1wzf66 Winifred Violet Scott Charitable Trust'),
(91151, 'https://ror.org/01b1y2d10', 'en', 1, 'https://ror.org/01b1y2d10 Continuous Plankton Recorder Survey'),
(91152, 'https://ror.org/01b36kf40', 'en', 0, 'https://ror.org/01b36kf40 International Center for Agricultural Research in the Dry Areas'),
(91153, 'https://ror.org/01b39y289', 'no_lang_code', 1, 'https://ror.org/01b39y289 Apintech (Greece)'),
(91154, 'https://ror.org/01b42ky18', 'en', 1, 'https://ror.org/01b42ky18 American University of Leadership'),
(91155, 'https://ror.org/01b44s469', 'no_lang_code', 1, 'https://ror.org/01b44s469 Covestro (Germany)'),
(91156, 'https://ror.org/01b4nv045', 'de', 1, 'https://ror.org/01b4nv045 Institut Jugend Film Fernsehen'),
(91157, 'https://ror.org/01b4w2923', 'en', 1, 'https://ror.org/01b4w2923 Universidad de San Carlos de Guatemala University of San Carlos of Guatemala'),
(91158, 'https://ror.org/01b811k23', 'en', 1, 'https://ror.org/01b811k23 New American Colleges and Universities'),
(91159, 'https://ror.org/01b8qmd85', 'en', 1, 'https://ror.org/01b8qmd85 Indonesia Research Institute for Tea and Cinchona Pusat Penelitian Teh dan Kina'),
(91160, 'https://ror.org/01ba4x603', 'id', 1, 'https://ror.org/01ba4x603 STIKes Wira Medika Bali'),
(91161, 'https://ror.org/01bc2bh93', 'no_lang_code', 0, 'https://ror.org/01bc2bh93 SGL Group (Poland)'),
(91162, 'https://ror.org/01bc76c69', 'en', 1, 'https://ror.org/01bc76c69 Hochschule Emden / Leer University of Applied Sciences Emden Leer'),
(91163, 'https://ror.org/01bcxc427', 'en', 1, 'https://ror.org/01bcxc427 North Dakota Department of Agriculture'),
(91164, 'https://ror.org/01bd5gh54', 'en', 1, 'https://ror.org/01bd5gh54 Heartlands Hospital'),
(91165, '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'),
(91166, 'https://ror.org/01bdta868', 'en', 1, 'https://ror.org/01bdta868 Temerty Family Foundation'),
(91167, 'https://ror.org/01be19w37', 'de', 1, 'https://ror.org/01be19w37 Helios Klinikum Krefeld'),
(91168, 'https://ror.org/01bedhb92', 'no_lang_code', 1, 'https://ror.org/01bedhb92 GCP Applied Technologies (United States)'),
(91169, 'https://ror.org/01bh2qr63', 'en', 1, 'https://ror.org/01bh2qr63 Israel Atomic Energy Commission הוועדה ×œ×× ×Ø×’×™×” ××˜×•×ž×™×Ŗ'),
(91170, 'https://ror.org/01bhg0q06', 'id', 1, 'https://ror.org/01bhg0q06 Universitas Islam Madura'),
(91171, 'https://ror.org/01bhwqa64', 'en', 1, 'https://ror.org/01bhwqa64 University of Arts from TĆ¢rgu-Mureș'),
(91172, 'https://ror.org/01bkr9r85', 'no_lang_code', 1, 'https://ror.org/01bkr9r85 ET Techtonics (United States)'),
(91173, 'https://ror.org/01bn93e28', 'fr', 1, 'https://ror.org/01bn93e28 Ɖcole Nationale de la MĆ©tĆ©orologie'),
(91174, 'https://ror.org/01bnkr993', 'en', 1, 'https://ror.org/01bnkr993 Tashkent Medical Academy Urgench Branch Toshkent tibbiyot akademiyasi Urganch filiali Ургенчский филиал Š¢Š°ŃˆŠŗŠµŠ½Ń‚ской меГицинской акаГемии'),
(91175, 'https://ror.org/01bp8jn44', 'en', 0, 'https://ror.org/01bp8jn44 Langley Memorial Aeronautical Laboratory'),
(91176, 'https://ror.org/01bs3p986', 'sv', 1, 'https://ror.org/01bs3p986 Sven och Lilly Lawskis fond fƶr naturvetenskaplig forskning'),
(91177, 'https://ror.org/01btj3e04', 'no_lang_code', 0, 'https://ror.org/01btj3e04 Rank Hovis McDougall (United Kingdom)'),
(91178, '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'),
(91179, 'https://ror.org/01bvz2w43', 'en', 1, 'https://ror.org/01bvz2w43 Museo Paleontológico Egidio Feruglio Museum of Paleontology Egidio Feruglio'),
(91180, 'https://ror.org/01bwv1z56', 'en', 1, 'https://ror.org/01bwv1z56 North Asheboro Middle School'),
(91181, 'https://ror.org/01bxfc994', 'fr', 1, 'https://ror.org/01bxfc994 Laboratoire d''Ɖtudes et de Recherches AppliquĆ©es en Sciences Sociales'),
(91182, 'https://ror.org/01bzw6057', 'pt', 1, 'https://ror.org/01bzw6057 Escola de SaĆŗde PĆŗblica do CearĆ”'),
(91183, 'https://ror.org/01c0kpy40', 'fr', 1, 'https://ror.org/01c0kpy40 ComitƩ National de Coordination de la Recherche'),
(91184, 'https://ror.org/01c1kpg39', 'en', 1, 'https://ror.org/01c1kpg39 Tajik Technical University named after academic M.S.Osimi Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø техникии Тоҷикистон ба номи акаГемик М.Š”.ŠžŃŠøŠ¼Ó£'),
(91185, 'https://ror.org/01c1p7750', 'fr', 1, 'https://ror.org/01c1p7750 Centre d''Investigation Clinique de Vaccinologie Cochin-Pasteur'),
(91186, 'https://ror.org/01c284h11', 'en', 1, 'https://ror.org/01c284h11 Departementenes sikkerhets- og serviceorganisasjon Norwegian Government Security and Service Organisation'),
(91187, 'https://ror.org/01c2sx728', 'en', 1, 'https://ror.org/01c2sx728 Shaanxi Science and Technology Department'),
(91188, 'https://ror.org/01c64e160', 'no_lang_code', 1, 'https://ror.org/01c64e160 Calibraciones Industriales S.A. (Chile)'),
(91189, 'https://ror.org/01c78y067', 'en', 1, 'https://ror.org/01c78y067 Clinical Hospital No. 8 ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–8'),
(91190, 'https://ror.org/01c7e7j85', 'en', 1, 'https://ror.org/01c7e7j85 Schlinger Foundation'),
(91191, 'https://ror.org/01c9agy38', 'en', 1, 'https://ror.org/01c9agy38 Environmental Restoration and Conservation Agency ē‹¬ē«‹č”Œę”æę³•äŗŗē’°å¢ƒå†ē”Ÿäæå…Øę©Ÿę§‹'),
(91192, 'https://ror.org/01ca54t29', 'es', 1, 'https://ror.org/01ca54t29 Hospital Obispo Polanco'),
(91193, 'https://ror.org/01car3s57', 'en', 1, 'https://ror.org/01car3s57 Milko Kos Historical Institute Zgodovinski inŔtitut Milka Kosa'),
(91194, 'https://ror.org/01cb2rv04', 'en', 1, 'https://ror.org/01cb2rv04 National Research Institute of Astronomy and Geophysics'),
(91195, 'https://ror.org/01ceg4t15', 'fr', 0, 'https://ror.org/01ceg4t15 Biologie VƩgƩtale et de Microbiologie Environnementales'),
(91196, 'https://ror.org/01cgrd369', 'no_lang_code', 1, 'https://ror.org/01cgrd369 Kodiak Sciences'),
(91197, 'https://ror.org/01cht3g41', 'fr', 1, 'https://ror.org/01cht3g41 UnitƩ de Recherche en BiomatƩriaux Innovant et Interfaces'),
(91198, 'https://ror.org/01cjhww87', 'no_lang_code', 1, 'https://ror.org/01cjhww87 CATX (United States)'),
(91199, 'https://ror.org/01cjjjf51', 'en', 1, 'https://ror.org/01cjjjf51 Banner - University Medical Center Phoenix'),
(91200, 'https://ror.org/01cjzj124', 'no_lang_code', 1, 'https://ror.org/01cjzj124 Anatrace'),
(91201, 'https://ror.org/01cmst727', 'en', 1, 'https://ror.org/01cmst727 Simons Foundation'),
(91202, 'https://ror.org/01cn8y823', 'de', 1, 'https://ror.org/01cn8y823 Institut für Pharmakologie und Toxikologie der Bundeswehr'),
(91203, 'https://ror.org/01cncp846', 'en', 1, 'https://ror.org/01cncp846 Italian Cultural Institute, London'),
(91204, 'https://ror.org/01cr5t497', 'en', 1, 'https://ror.org/01cr5t497 Volgograd State University of Architecture and Civil Engineering ВолгограГский Š³Š¾ŃŃƒŠ“арственный Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(91205, 'https://ror.org/01cx46d94', 'en', 1, 'https://ror.org/01cx46d94 Državni zavod za mjeriteljstvo State Office for Metrology'),
(91206, 'https://ror.org/01cy28c89', 'en', 1, 'https://ror.org/01cy28c89 Farmer Family Foundation'),
(91207, 'https://ror.org/01cyfxe35', 'en', 1, 'https://ror.org/01cyfxe35 Goddard Institute for Space Studies'),
(91208, 'https://ror.org/01cz3wf89', 'nl', 1, 'https://ror.org/01cz3wf89 AZ Groeninge'),
(91209, 'https://ror.org/01d100w34', 'en', 1, 'https://ror.org/01d100w34 Semyung University'),
(91210, 'https://ror.org/01d29cd45', 'en', 1, 'https://ror.org/01d29cd45 Northern Ireland Environment Agency'),
(91211, 'https://ror.org/01d3r6z34', 'en', 1, 'https://ror.org/01d3r6z34 Brain Imaging Network'),
(91212, 'https://ror.org/01d4n5957', 'id', 1, 'https://ror.org/01d4n5957 Institut Seni Indonesia Denpasar'),
(91213, 'https://ror.org/01d5jce07', 'en', 1, 'https://ror.org/01d5jce07 University of Maribor Univerza v Mariboru'),
(91214, 'https://ror.org/01d67x059', 'es', 1, 'https://ror.org/01d67x059 Centro de Investigación y Extensión Forestal Andino Patagónico'),
(91215, 'https://ror.org/01d6ka036', 'tr', 1, 'https://ror.org/01d6ka036 Türkiye Sağlık Enstitüleri Başkanlığı'),
(91216, 'https://ror.org/01d6ss728', 'en', 1, 'https://ror.org/01d6ss728 Office of Atoms for Peace ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø›ąø£ąø”ąø²ąø“ąø¹ą¹€ąøžąø·ą¹ˆąø­ąøŖąø±ąø™ąø•ąø“'),
(91217, 'https://ror.org/01dbm1232', 'en', 1, 'https://ror.org/01dbm1232 Canadian Hydrographic Service Service hydrographique du Canada'),
(91218, 'https://ror.org/01dcefd69', 'en', 1, 'https://ror.org/01dcefd69 World Institute of Kimchi ģ„øź³„ź¹€ģ¹˜ģ—°źµ¬ģ†Œ'),
(91219, 'https://ror.org/01dcpdv87', 'no_lang_code', 1, 'https://ror.org/01dcpdv87 South China Biological Medicine (China) å¹æå·žåø‚åŽå—å†œå¤§ē”Ÿē‰©čÆå“ęœ‰é™å…¬åø'),
(91220, 'https://ror.org/01ddq0t66', 'ro', 1, 'https://ror.org/01ddq0t66 Universitatea Romano-Germana din Sibiu'),
(91221, 'https://ror.org/01ddqfh11', 'fr', 1, 'https://ror.org/01ddqfh11 Institut Droit et SantƩ'),
(91222, 'https://ror.org/01ddvtt26', 'en', 0, 'https://ror.org/01ddvtt26 Department of Sport and Recreation'),
(91223, 'https://ror.org/01ddxaa25', 'en', 1, 'https://ror.org/01ddxaa25 Carondelet Health Network'),
(91224, 'https://ror.org/01de7dx97', 'fr', 1, 'https://ror.org/01de7dx97 Institut SupĆ©rieur des Sciences AppliquĆ©es et de Technologies de Gafsa المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© بقفصة'),
(91225, 'https://ror.org/01de9k933', 'en', 0, 'https://ror.org/01de9k933 Texas A&M Health Science Center'),
(91226, 'https://ror.org/01dgtbr50', 'no_lang_code', 1, 'https://ror.org/01dgtbr50 Labotec (South Africa)'),
(91227, 'https://ror.org/01djvck12', 'en', 1, 'https://ror.org/01djvck12 Lutheran Theological University'),
(91228, 'https://ror.org/01dknfq59', 'en', 1, 'https://ror.org/01dknfq59 El Mastaba Center for Egyptian Folk Music'),
(91229, 'https://ror.org/01dp2pa47', 'en', 0, 'https://ror.org/01dp2pa47 Unit of Virus Host Cell Interactions'),
(91230, 'https://ror.org/01dp97092', 'en', 1, 'https://ror.org/01dp97092 Lemelson Foundation'),
(91231, 'https://ror.org/01dpbzg35', 'en', 1, 'https://ror.org/01dpbzg35 Kejimkujik National Park Parc national de Kejimkujik'),
(91232, 'https://ror.org/01dq06w64', 'en', 1, 'https://ror.org/01dq06w64 Manton Foundation'),
(91233, 'https://ror.org/01dq60k83', 'en', 1, 'https://ror.org/01dq60k83 Tohoku University ę±åŒ—å¤§å­¦'),
(91234, 'https://ror.org/01drq0835', 'en', 1, 'https://ror.org/01drq0835 Ton Duc Thang University TrĘ°į»ng ĐẔi hį»c TĆ“n Đức ThįŗÆng'),
(91235, 'https://ror.org/01drzr533', 'en', 0, 'https://ror.org/01drzr533 Department of Land Resource Management'),
(91236, 'https://ror.org/01dta2x54', 'fr', 1, 'https://ror.org/01dta2x54 Etudes romanes'),
(91237, 'https://ror.org/01dv86r63', 'sv', 1, 'https://ror.org/01dv86r63 Landstinget i Uppsala lƤn'),
(91238, 'https://ror.org/01dwpbz64', 'en', 1, 'https://ror.org/01dwpbz64 Max Planck Institute for the Study of Societies Max-Planck-Institut für Gesellschaftsforschung'),
(91239, 'https://ror.org/01dxxkx65', 'no_lang_code', 1, 'https://ror.org/01dxxkx65 Confluent Medical Technologies'),
(91240, 'https://ror.org/01dzgwk87', 'en', 1, 'https://ror.org/01dzgwk87 Everglades Foundation'),
(91241, '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'),
(91242, 'https://ror.org/01e1f1387', 'no_lang_code', 1, 'https://ror.org/01e1f1387 BioMar (United Kingdom)'),
(91243, 'https://ror.org/01e399z24', 'en', 1, 'https://ror.org/01e399z24 Cancer Council SA'),
(91244, 'https://ror.org/01e5pnf26', 'en', 1, 'https://ror.org/01e5pnf26 College of Accounting'),
(91245, 'https://ror.org/01e6msy72', 'fr', 1, 'https://ror.org/01e6msy72 Centre Hospitalier De Pau'),
(91246, 'https://ror.org/01e8kn913', 'fr', 1, 'https://ror.org/01e8kn913 HƓpital Jeanne de Flandre'),
(91247, 'https://ror.org/01e923890', 'en', 1, 'https://ror.org/01e923890 Sustainable Forestry Initiative'),
(91248, 'https://ror.org/01e9d9c48', 'en', 1, 'https://ror.org/01e9d9c48 Bangladesh Standards and Testing Institution'),
(91249, 'https://ror.org/01e9rwk10', 'en', 1, 'https://ror.org/01e9rwk10 Penitentiary Academy of Ukraine ŠŸŠµŠ½Ń–Ń‚ŠµŠ½Ń†Ń–Š°Ń€Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України'),
(91250, 'https://ror.org/01ec0jk73', 'fr', 1, 'https://ror.org/01ec0jk73 Ecole SupƩrieure de Technologie de Safi'),
(91251, 'https://ror.org/01ee7vw96', 'en', 1, 'https://ror.org/01ee7vw96 Villa Maria School'),
(91252, 'https://ror.org/01eea1w69', 'no_lang_code', 1, 'https://ror.org/01eea1w69 Southern Water (United Kingdom)'),
(91253, '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'),
(91254, 'https://ror.org/01ef2d351', 'en', 1, 'https://ror.org/01ef2d351 Lebanese International University of Mauritania UniversitƩ libanaise internationale en mauritanie'),
(91255, 'https://ror.org/01efpdp52', 'en', 1, 'https://ror.org/01efpdp52 University of the Commonwealth Caribbean'),
(91256, 'https://ror.org/01efwd504', 'no_lang_code', 1, 'https://ror.org/01efwd504 Saiseikai Kanagawa Hospital ęøˆē”Ÿä¼šē„žå„ˆå·ēœŒē—…é™¢'),
(91257, 'https://ror.org/01ejfnk07', 'no_lang_code', 1, 'https://ror.org/01ejfnk07 Separation Scientific (South Africa) Separation Wetenskaplik'),
(91258, 'https://ror.org/01ek73717', 'no_lang_code', 1, 'https://ror.org/01ek73717 Intel (United States)'),
(91259, 'https://ror.org/01epcny94', 'en', 1, 'https://ror.org/01epcny94 Government of Western Australia Department of Health'),
(91260, 'https://ror.org/01epym565', 'fr', 0, 'https://ror.org/01epym565 Laboratoire de Chimie MolƩculaire'),
(91261, 'https://ror.org/01es1wk41', 'en', 1, 'https://ror.org/01es1wk41 Foundation Fighting Blindness'),
(91262, 'https://ror.org/01evwfd48', 'en', 1, 'https://ror.org/01evwfd48 Bernhard Nocht Institute for Tropical Medicine Bernhard-Nocht-Institut für Tropenmedizin'),
(91263, 'https://ror.org/01ezjqh37', 'en', 1, 'https://ror.org/01ezjqh37 Delta Waterfowl Foundation'),
(91264, 'https://ror.org/01ezq2j76', 'en', 1, 'https://ror.org/01ezq2j76 Imec the Netherlands'),
(91265, 'https://ror.org/01f0nvc12', 'no_lang_code', 1, 'https://ror.org/01f0nvc12 Vidropol (Portugal)'),
(91266, 'https://ror.org/01f0vkh84', 'en', 1, 'https://ror.org/01f0vkh84 ICAP Global Health'),
(91267, 'https://ror.org/01f61vq51', 'en', 0, 'https://ror.org/01f61vq51 Foundation For Fundamental Research On Matter'),
(91268, 'https://ror.org/01f677e56', 'no', 1, 'https://ror.org/01f677e56 SINTEF, Stiftelsen for Industriell og Teknisk Forskning'),
(91269, 'https://ror.org/01f8qf629', 'en', 0, 'https://ror.org/01f8qf629 National Water Commission'),
(91270, 'https://ror.org/01faqv652', 'en', 1, 'https://ror.org/01faqv652 Government of Lower Austria Land Niederosterreich'),
(91271, 'https://ror.org/01fdhpk75', 'en', 1, 'https://ror.org/01fdhpk75 Molecular Foundry'),
(91272, 'https://ror.org/01ffqaw45', 'en', 1, 'https://ror.org/01ffqaw45 InŔtitut za raziskovanje krasa Karst Research Institute'),
(91273, 'https://ror.org/01fjcgc06', 'pt', 1, 'https://ror.org/01fjcgc06 Instituto Nacional de Cardiologia'),
(91274, 'https://ror.org/01fjw1d15', 'en', 1, 'https://ror.org/01fjw1d15 Radiation and Nuclear Safety Authority StrƄlsƤkerhetscentralen SƤteilyturvakeskus'),
(91275, 'https://ror.org/01fmhrb91', 'en', 1, 'https://ror.org/01fmhrb91 NOAA Office of Chief Operating Officer'),
(91276, 'https://ror.org/01fpdvr35', 'en', 1, 'https://ror.org/01fpdvr35 National Integrated Drought Information System'),
(91277, 'https://ror.org/01fqx5d30', 'es', 1, 'https://ror.org/01fqx5d30 Universidad Ateneo de Monterrey'),
(91278, 'https://ror.org/01fs4c742', 'en', 1, 'https://ror.org/01fs4c742 BioTherapeutics, Education and Research Foundation'),
(91279, 'https://ror.org/01ftxmw65', 'de', 1, 'https://ror.org/01ftxmw65 Wasserstraßen- und Schifffahrtsamt Oberrhein'),
(91280, 'https://ror.org/01fwrsq33', 'en', 1, 'https://ror.org/01fwrsq33 Barrow Neurological Institute'),
(91281, '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'),
(91282, 'https://ror.org/01g0hqq23', 'en', 1, 'https://ror.org/01g0hqq23 Institute for Information and Communications Technology Promotion ģ •ė³“ķ†µģ‹ źø°ģˆ ģ§„ķ„ģ„¼ķ„°'),
(91283, '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 Š’Ń‹ŃŃˆŠ°Ń школа бизнеса Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° при ŠšŠ°Š±ŠøŠ½ŠµŃ‚е ŠœŠøŠ½ŠøŃŃ‚ров Республики Узбекистан'),
(91284, 'https://ror.org/01g25jp36', 'en', 1, 'https://ror.org/01g25jp36 Nederlands Instituut voor Ecologie Netherlands Institute of Ecology'),
(91285, 'https://ror.org/01g4rg913', 'en', 1, 'https://ror.org/01g4rg913 Rajabhat University System ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąø'),
(91286, 'https://ror.org/01g53at17', 'en', 1, 'https://ror.org/01g53at17 Guangzhou Women and Children Medical Center å¹æå·žåø‚å¦‡å„³å„æē«„åŒ»ē–—äø­åæƒ'),
(91287, 'https://ror.org/01g7yfj48', 'es', 1, 'https://ror.org/01g7yfj48 Liga AtlƩtica Interuniversitaria de Puerto Rico'),
(91288, 'https://ror.org/01g80gk13', 'fr', 1, 'https://ror.org/01g80gk13 Agence Nationale de SƩcuritƩ du MƩdicament et des Produits de SantƩ'),
(91289, 'https://ror.org/01g87hr29', 'no_lang_code', 1, 'https://ror.org/01g87hr29 Reckitt Benckiser (United Kingdom)'),
(91290, 'https://ror.org/01g9pm929', 'en', 1, 'https://ror.org/01g9pm929 International Iguana Foundation'),
(91291, 'https://ror.org/01g9ty582', 'no_lang_code', 1, 'https://ror.org/01g9ty582 Semmelweis Egyetem Semmelweis University'),
(91292, 'https://ror.org/01gbmsc69', 'en', 1, 'https://ror.org/01gbmsc69 Ulyanovsk State Pedagogical University'),
(91293, 'https://ror.org/01gc0n970', 'en', 1, 'https://ror.org/01gc0n970 Kaishi Professional University 開志専門職大学'),
(91294, 'https://ror.org/01gea1v36', 'en', 1, 'https://ror.org/01gea1v36 Popular University of Nicaragua'),
(91295, 'https://ror.org/01gek1696', 'en', 1, 'https://ror.org/01gek1696 Sistema Universitario de Texas The University of Texas System UniversitƩ du Texas'),
(91296, 'https://ror.org/01ggzh816', 'en', 1, 'https://ror.org/01ggzh816 Yerevan State Linguistic University ŌµÖ€Ö‡Õ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ¬Õ„Õ¦Õ¾Õ”Õ°Õ”Õ½Õ”Ö€Õ”ÕÆÕ”Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(91297, 'https://ror.org/01ghs6t07', 'en', 1, 'https://ror.org/01ghs6t07 Buncombe County Early College'),
(91298, 'https://ror.org/01gn73t32', 'tr', 1, 'https://ror.org/01gn73t32 ASBU Kuzey Kibris Yerleşkesi̇'),
(91299, 'https://ror.org/01gng0007', 'en', 1, 'https://ror.org/01gng0007 Henan College of Transportation ę²³å—äŗ¤é€ščŒäøšęŠ€ęœÆå­¦é™¢'),
(91300, 'https://ror.org/01gtph098', 'no_lang_code', 1, 'https://ror.org/01gtph098 Tonan Hospital ę–—å—ē—…é™¢'),
(91301, 'https://ror.org/01gtzn293', 'no_lang_code', 1, 'https://ror.org/01gtzn293 Cemat (Italy)'),
(91302, 'https://ror.org/01gv51w90', 'pt', 1, 'https://ror.org/01gv51w90 Instituto CTEM+'),
(91303, 'https://ror.org/01gwfq279', 'fr', 1, 'https://ror.org/01gwfq279 Agence Nationale de MĆ©trologie Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…ŲŖŲ±ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(91304, 'https://ror.org/01gxxpv20', 'en', 0, 'https://ror.org/01gxxpv20 California Postsecondary Education Commission'),
(91305, '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'),
(91306, 'https://ror.org/01h6c8126', 'en', 0, 'https://ror.org/01h6c8126 Environmental Science Services Administration'),
(91307, 'https://ror.org/01h6ezd77', 'en', 1, 'https://ror.org/01h6ezd77 Centro de Investigaciones en Ciencias de la Tierra Research Center on Earth Sciences'),
(91308, 'https://ror.org/01h6x4375', 'en', 1, 'https://ror.org/01h6x4375 Saint Lucia Bureau of Standards'),
(91309, 'https://ror.org/01h7fye62', 'en', 1, 'https://ror.org/01h7fye62 NOAA National Marine Fisheries Service Alaska Fisheries Science Center'),
(91310, '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'),
(91311, 'https://ror.org/01h8zk368', 'en', 0, 'https://ror.org/01h8zk368 Hamilton Psychiatric Hospital'),
(91312, 'https://ror.org/01hf1t666', 'en', 1, 'https://ror.org/01hf1t666 Moscow Open Social University'),
(91313, 'https://ror.org/01hg1m326', 'en', 1, 'https://ror.org/01hg1m326 Parkside Hospital'),
(91314, 'https://ror.org/01hgwcx28', 'en', 1, 'https://ror.org/01hgwcx28 Brazilian Biodiversity Fund Fundo Brasileiro para a Biodiversidade'),
(91315, 'https://ror.org/01hh21296', 'en', 1, 'https://ror.org/01hh21296 ILS Research'),
(91316, 'https://ror.org/01hj4y249', 'en', 1, 'https://ror.org/01hj4y249 Via Christi Regional Medical Center'),
(91317, 'https://ror.org/01hky8m83', 'en', 1, 'https://ror.org/01hky8m83 Kyushu Rosai Hospital ä¹å·žåŠ“ē½ē—…é™¢'),
(91318, 'https://ror.org/01hpwkg10', 'en', 1, 'https://ror.org/01hpwkg10 Austrian Electrotechnical Association Ɩsterreichischer Verband für Elektrotechnik'),
(91319, 'https://ror.org/01hq2jk95', 'en', 1, 'https://ror.org/01hq2jk95 Bavarian State Archives Staatlichen Archive Bayerns'),
(91320, 'https://ror.org/01hq89f96', 'fr', 1, 'https://ror.org/01hq89f96 Centre Hospitalier Universitaire de Bordeaux'),
(91321, 'https://ror.org/01hyb4h74', 'en', 1, 'https://ror.org/01hyb4h74 National Institute of Forestry Science 국립산림과학원'),
(91322, 'https://ror.org/01hza1144', 'en', 1, 'https://ror.org/01hza1144 Department of Primary Industries and Regions South Australia'),
(91323, 'https://ror.org/01j0p3681', 'en', 1, 'https://ror.org/01j0p3681 Endeavour Foundation'),
(91324, 'https://ror.org/01j0vck17', 'no_lang_code', 1, 'https://ror.org/01j0vck17 KJKP Sarajevogas (Bosnia-Herzegovina)'),
(91325, 'https://ror.org/01j1np431', 'en', 1, 'https://ror.org/01j1np431 Rajamangala University of Technology Suvarnabhumi ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøŖąøøąø§ąø£ąø£ąø“ąø ąø¹ąø”ąø“'),
(91326, 'https://ror.org/01j1t7z95', 'en', 0, 'https://ror.org/01j1t7z95 Bayfront Health'),
(91327, 'https://ror.org/01j369f98', 'nl', 1, 'https://ror.org/01j369f98 Fries Historisch en Letterkundig Centrum, Tresoar Frysk Histoarysk en Letterkundich Sintrum'),
(91328, 'https://ror.org/01j3tkf69', 'en', 1, 'https://ror.org/01j3tkf69 Aalborg Zoo'),
(91329, 'https://ror.org/01j5aph50', 'en', 1, 'https://ror.org/01j5aph50 Ministry of Communications and Information ę–°åŠ å”é€šč®ÆåŠę–°é—»éƒØ'),
(91330, 'https://ror.org/01j6j9107', 'en', 1, 'https://ror.org/01j6j9107 NOAA Space Weather Prediction Center'),
(91331, 'https://ror.org/01j6qvh40', 'en', 1, 'https://ror.org/01j6qvh40 Theological University of Northern Italy'),
(91332, 'https://ror.org/01j84fh13', 'no_lang_code', 1, 'https://ror.org/01j84fh13 Synthekine'),
(91333, 'https://ror.org/01j9p1x11', 'en', 1, 'https://ror.org/01j9p1x11 The International Center for Supporting Rights and Freedoms Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŲÆŁˆŁ„ŁŠ لدعم Ų§Ł„Ų­Ł‚ŁˆŁ‚ ŁˆŲ§Ł„Ų­Ų±ŁŠŲ§ŲŖ'),
(91334, 'https://ror.org/01jat6m31', 'en', 1, 'https://ror.org/01jat6m31 Urology Foundation'),
(91335, 'https://ror.org/01jbzz330', 'en', 1, 'https://ror.org/01jbzz330 Center for International Forestry Research'),
(91336, 'https://ror.org/01jcjpa26', 'en', 1, 'https://ror.org/01jcjpa26 Reinwardt Academie, Reinwardt Academy'),
(91337, 'https://ror.org/01jcvk244', 'en', 1, 'https://ror.org/01jcvk244 Institute of Fish Resources - Varna (Agricultural Academy) Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ по рибни Ń€ŠµŃŃƒŃ€ŃŠø, ИРР – Варна, към Делскостопанска ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ (ДДА)'),
(91338, 'https://ror.org/01jdgyj97', 'no_lang_code', 0, 'https://ror.org/01jdgyj97 ECI Telecom (United States)'),
(91339, 'https://ror.org/01jdyfj45', 'en', 1, 'https://ror.org/01jdyfj45 Office of Research Infrastructure Programs'),
(91340, 'https://ror.org/01jet5b79', 'en', 1, 'https://ror.org/01jet5b79 Government of Newfoundland and Labrador'),
(91341, 'https://ror.org/01jkhfm44', 'en', 1, 'https://ror.org/01jkhfm44 Parc national Quttinirpaaq Quttinirpaaq National Park'),
(91342, 'https://ror.org/01jmh2048', 'no_lang_code', 1, 'https://ror.org/01jmh2048 Hanmin University ķ•œėÆ¼ķ•™źµ'),
(91343, 'https://ror.org/01jmhvd34', 'es', 1, 'https://ror.org/01jmhvd34 Universidad Peruana de Las AmƩricas'),
(91344, 'https://ror.org/01jmjwt28', 'en', 0, 'https://ror.org/01jmjwt28 Ballarat Health Services'),
(91345, 'https://ror.org/01jp0qq49', 'pl', 1, 'https://ror.org/01jp0qq49 Szpital Specjalistyczny im. F. Ceynowy'),
(91346, 'https://ror.org/01jr3y717', 'en', 1, 'https://ror.org/01jr3y717 Ohio University Universidad de Ohio UniversitƩ de l''ohio'),
(91347, 'https://ror.org/01jrt3n05', 'en', 1, 'https://ror.org/01jrt3n05 University "Haxhi Zeka"'),
(91348, 'https://ror.org/01jsjgv89', 'en', 1, 'https://ror.org/01jsjgv89 Chongqing Vocational and Technical University of Mechatronics é‡åŗ†ęœŗē”µčŒäøšęŠ€ęœÆå¤§å­¦'),
(91349, 'https://ror.org/01jw2p796', 'en', 1, 'https://ror.org/01jw2p796 Iran University of Science and Technology دانؓگاه علم و صنعت Ų§ŪŒŲ±Ų§Ł†'),
(91350, 'https://ror.org/01jy46q10', 'en', 1, 'https://ror.org/01jy46q10 Princess Sumaya University for Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ±Ų© Ų³Ł…ŁŠŲ© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(91351, 'https://ror.org/01jyjfb18', 'no_lang_code', 1, 'https://ror.org/01jyjfb18 C-Link Micro Imaging'),
(91352, 'https://ror.org/01jz1cr68', 'tr', 1, 'https://ror.org/01jz1cr68 Cyprus Science University Kıbrıs İlim Üniversitesi'),
(91353, 'https://ror.org/01k2c9s91', 'sv', 1, 'https://ror.org/01k2c9s91 Wienerbageriet'),
(91354, 'https://ror.org/01k2yk558', 'pt', 1, 'https://ror.org/01k2yk558 Centro UniversitÔrio Católica de Santa Catarina'),
(91355, 'https://ror.org/01k3c1d76', 'no_lang_code', 0, 'https://ror.org/01k3c1d76 SK holdings (South Korea)'),
(91356, 'https://ror.org/01k410495', 'es', 1, 'https://ror.org/01k410495 Universidad Estatal PenĆ­nsula de Santa Elena'),
(91357, 'https://ror.org/01k5h5v15', 'en', 1, 'https://ror.org/01k5h5v15 Technical University of Applied Sciences Würzburg-Schweinfurt Technische Hochschule Würzburg-Schweinfurt'),
(91358, 'https://ror.org/01k6vaf42', 'en', 1, 'https://ror.org/01k6vaf42 Mount Zion College of Engineering and Technology ą®®ą®µąÆą®£ąÆą®ŸąÆ ą®šą®æą®ÆąÆ‹ą®©ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(91359, 'https://ror.org/01k86s411', 'en', 1, 'https://ror.org/01k86s411 Showa University Karasuyama Hospital ę˜­å’Œå¤§å­¦é™„å±žēƒå±±ē—…é™¢'),
(91360, 'https://ror.org/01k8df140', 'de', 1, 'https://ror.org/01k8df140 PƤdagogisches Landesinstitut Rheinland-Pfalz'),
(91361, 'https://ror.org/01k9ww978', 'es', 1, 'https://ror.org/01k9ww978 Universidad Continental Justo Sierra'),
(91362, 'https://ror.org/01kdszv50', 'es', 1, 'https://ror.org/01kdszv50 Centro de Estudios Universitarios Adolfo López Mateos'),
(91363, 'https://ror.org/01kdv5654', 'en', 1, 'https://ror.org/01kdv5654 Ducks Unlimited'),
(91364, 'https://ror.org/01kf3ys41', 'en', 1, 'https://ror.org/01kf3ys41 Transcultural Psychosocial Educational Foundation Transkulturna psihosocijalna obrazovna fondacija'),
(91365, 'https://ror.org/01kh5gc44', 'en', 1, 'https://ror.org/01kh5gc44 Indian Institute of Technology BHU, ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø(का.हि.वि.),ą¤µą¤¾ą¤°ą¤¾ą¤£ą¤øą„€'),
(91366, 'https://ror.org/01kjfnp05', 'de', 1, 'https://ror.org/01kjfnp05 Arbeitsgemeinschaft GynƤkologische Onkologie Studiengruppe'),
(91367, 'https://ror.org/01kjvq748', 'no_lang_code', 1, 'https://ror.org/01kjvq748 Sol-Tech'),
(91368, 'https://ror.org/01kkkw551', 'de', 1, 'https://ror.org/01kkkw551 Zentrum für Datenverarbeitung'),
(91369, 'https://ror.org/01kmg3290', 'en', 1, 'https://ror.org/01kmg3290 University of Fukui Hospital ē¦äŗ•å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(91370, 'https://ror.org/01kmz4383', 'en', 1, 'https://ror.org/01kmz4383 World Agroforestry Centre'),
(91371, 'https://ror.org/01kpsvc92', 'no_lang_code', 1, 'https://ror.org/01kpsvc92 Apigenex (Czechia)'),
(91372, 'https://ror.org/01krvag41', 'en', 1, 'https://ror.org/01krvag41 Fujita Health University Bantane Hospital č—¤ē”°åŒ»ē§‘å¤§å­¦ć°ć‚“ćŸć­ē—…é™¢'),
(91373, 'https://ror.org/01ktqem13', 'es', 1, 'https://ror.org/01ktqem13 Centro Científico Tecnológico - Nordeste'),
(91374, 'https://ror.org/01ktt8y73', 'en', 1, 'https://ror.org/01ktt8y73 Wollo University'),
(91375, 'https://ror.org/01kw6bd80', 'en', 1, 'https://ror.org/01kw6bd80 Indian Institute of Information Technology Design and Manufacturing, Kurnool ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€, ą¤…ą¤­ą¤æą¤•ą¤²ą„ą¤Ŗą¤Øą¤¾ ą¤ą¤µą¤‚ ą¤µą¤æą¤Øą¤æą¤°ą„ą¤®ą¤¾ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą¤°ą„ą¤Øą„‚ą¤² ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°‡ą°Øą±ą°«ą°°ą±ą°®ą±‡ą°·ą°Øą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€, ą°”ą°æą°œą±ˆą°Øą± ą°…ą°‚ą°”ą± ą°®ą°¾ą°Øą±ą°Æą±ą°«ą±ą°Æą°¾ą°•ą±ą°šą°°ą°æą°‚ą°—ą±, ą°•ą°°ą±ą°Øą±‚ą°²ą±'),
(91376, 'https://ror.org/01kxesq83', 'fr', 1, 'https://ror.org/01kxesq83 Laboratoire de Physique Subatomique et des Technologies AssociƩes'),
(91377, 'https://ror.org/01kxjy285', 'en', 1, 'https://ror.org/01kxjy285 Buidheann DƬon ƀrainneachd na h-Alba Scottish Environment Protection Agency'),
(91378, 'https://ror.org/01ky8b097', 'en', 0, 'https://ror.org/01ky8b097 Food Process Engineering and Microbiology GƩnie et Microbiologie des ProcƩdƩs Alimentaires'),
(91379, 'https://ror.org/01kz10v29', 'no_lang_code', 0, 'https://ror.org/01kz10v29 ABS Materials (United States)'),
(91380, 'https://ror.org/01kz1bj67', 'fr', 0, 'https://ror.org/01kz1bj67 Laboratoire SpƩcification et VƩrification'),
(91381, 'https://ror.org/01kzjzn40', 'en', 1, 'https://ror.org/01kzjzn40 University of Gafsa UniversitĆ© de gafsa Ų¬Ų§Ł…Ų¹Ų© قفصة'),
(91382, 'https://ror.org/01m0j3711', 'no_lang_code', 1, 'https://ror.org/01m0j3711 Mishima Kaiun Memorial Foundation äø‰å³¶ęµ·é›²čØ˜åæµč²”å›£ćƒ›'),
(91383, 'https://ror.org/01m1c9z98', 'en', 0, 'https://ror.org/01m1c9z98 Vermont Center for the Book'),
(91384, 'https://ror.org/01m3qaz74', 'en', 1, 'https://ror.org/01m3qaz74 Polish Grid Infrastructure'),
(91385, 'https://ror.org/01m444286', 'es', 1, 'https://ror.org/01m444286 Instituto de Investigaciones BiomƩdicas en Retrovirus y Sida'),
(91386, 'https://ror.org/01m6as704', 'fr', 1, 'https://ror.org/01m6as704 Institut de CancƩrologie de l''Ouest Institute of Cancer Research'),
(91387, 'https://ror.org/01m74k366', 'no_lang_code', 1, 'https://ror.org/01m74k366 CapeBio (South Africa)'),
(91388, 'https://ror.org/01m800e37', 'en', 1, 'https://ror.org/01m800e37 University Grants Commission Nepal'),
(91389, 'https://ror.org/01ma17032', 'en', 1, 'https://ror.org/01ma17032 Saint Petersburg Mining University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(91390, 'https://ror.org/01mab3e15', 'es', 1, 'https://ror.org/01mab3e15 Organismo Autónomo Parques Nacionales'),
(91391, 'https://ror.org/01me6gb93', 'en', 1, 'https://ror.org/01me6gb93 Kaunas University of Technology Kauno technologijos universitetas Uniwersytet Techniczny w Kownie Каунасский технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(91392, 'https://ror.org/01megcb21', 'en', 1, 'https://ror.org/01megcb21 Republic of China Naval Academy äø­čÆę°‘åœ‹ęµ·č»č»å®˜å­øę ”'),
(91393, 'https://ror.org/01mg9t146', 'en', 1, 'https://ror.org/01mg9t146 Hasso Plattner Foundation'),
(91394, 'https://ror.org/01mh6b283', 'en', 1, 'https://ror.org/01mh6b283 Interuniversitair Cardiologisch Instituut Nederland Netherlands Heart Institute'),
(91395, 'https://ror.org/01mhj8761', 'en', 1, 'https://ror.org/01mhj8761 fRI Research'),
(91396, 'https://ror.org/01mpwwe68', 'id', 1, 'https://ror.org/01mpwwe68 Universitas Tri Tunggal'),
(91397, 'https://ror.org/01mq2eh43', 'en', 1, 'https://ror.org/01mq2eh43 National Microscopy Infrastructure'),
(91398, 'https://ror.org/01mqz4s64', 'no_lang_code', 1, 'https://ror.org/01mqz4s64 CodeX Discovery (Ireland)'),
(91399, 'https://ror.org/01mrcse49', 'en', 1, 'https://ror.org/01mrcse49 SINTEF Manufacturing'),
(91400, 'https://ror.org/01mrkb883', 'en', 1, 'https://ror.org/01mrkb883 Daugavpils University Daugavpils Universitāte Daugpilio universitetas Š”Š°ŃƒŠ³Š°Š²ŠæŠøŠ»ŃŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(91401, 'https://ror.org/01mtgj902', 'en', 1, 'https://ror.org/01mtgj902 City of Prague Hlavnƭ město Praha'),
(91402, 'https://ror.org/01mtkd993', 'en', 1, 'https://ror.org/01mtkd993 Sistema de la Universidad de Alaska University of Alaska System'),
(91403, 'https://ror.org/01mv1ez88', 'en', 1, 'https://ror.org/01mv1ez88 Health and Family Planning Commission of Hunan Province ę¹–å—å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(91404, 'https://ror.org/01mvkrv07', 'en', 1, 'https://ror.org/01mvkrv07 Institute of Chinese Literature and Philosophy, Academia Sinica äø­å¤®ē ”ē©¶é™¢äø­åœ‹ę–‡å“²ē ”ē©¶ę‰€'),
(91405, 'https://ror.org/01mzw6m29', 'en', 1, 'https://ror.org/01mzw6m29 Nemours Children''s Health System'),
(91406, 'https://ror.org/01mzxgm71', 'fr', 1, 'https://ror.org/01mzxgm71 Dauphine Recherches en Management'),
(91407, 'https://ror.org/01mzzkz08', 'es', 1, 'https://ror.org/01mzzkz08 Fundación Tatiana Pérez de GuzmÔn el Bueno'),
(91408, 'https://ror.org/01n18pd19', 'en', 1, 'https://ror.org/01n18pd19 International Charter School'),
(91409, 'https://ror.org/01n1q0h77', 'es', 1, 'https://ror.org/01n1q0h77 Panamerican University Universidad Panamericana'),
(91410, 'https://ror.org/01n4q9493', 'en', 1, 'https://ror.org/01n4q9493 Mabalacat City College'),
(91411, 'https://ror.org/01n54ed02', 'no_lang_code', 1, 'https://ror.org/01n54ed02 Adidas (Germany)'),
(91412, 'https://ror.org/01n5jbb65', 'es', 1, 'https://ror.org/01n5jbb65 Laboratorio Nacional de Materiales y Modelos Estructurales'),
(91413, 'https://ror.org/01n5r7s17', 'en', 1, 'https://ror.org/01n5r7s17 Native Forward Scholars Fund'),
(91414, 'https://ror.org/01n8qtk87', 'no_lang_code', 1, 'https://ror.org/01n8qtk87 MathWorks (United States)'),
(91415, 'https://ror.org/01n9aef16', 'no_lang_code', 1, 'https://ror.org/01n9aef16 Sikorsky Aircraft Corporation (United States)'),
(91416, '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'),
(91417, 'https://ror.org/01nbfnq73', 'en', 1, 'https://ror.org/01nbfnq73 Idaho Academy of Science'),
(91418, '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'),
(91419, 'https://ror.org/01ngf4s29', 'no_lang_code', 0, 'https://ror.org/01ngf4s29 OM Group (Canada)'),
(91420, 'https://ror.org/01ngt5263', 'en', 1, 'https://ror.org/01ngt5263 Amir Oncology Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¢Ł…ŁˆŲ²Ų“ŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų¢Ł†Ś©ŁˆŁ„ŁˆŚ˜ŪŒ Ų§Ł…ŪŒŲ±'),
(91421, 'https://ror.org/01nh64743', 'en', 1, 'https://ror.org/01nh64743 Fraunhofer Institute for Industrial Engineering Fraunhofer-Institut für Arbeitswirtschaft und Organisation IAO'),
(91422, 'https://ror.org/01nnak423', 'pt', 1, 'https://ror.org/01nnak423 Centro UniversitƔrio Luterano de Palmas'),
(91423, 'https://ror.org/01nnrec54', 'no_lang_code', 1, 'https://ror.org/01nnrec54 Biotec (United Kingdom)'),
(91424, 'https://ror.org/01npa3a43', 'en', 1, 'https://ror.org/01npa3a43 National Metrology Institute of Ethiopia'),
(91425, 'https://ror.org/01nr4vy20', 'en', 1, 'https://ror.org/01nr4vy20 Fairtrade Czech Republic & Slovakia Fairtrade Česko a Slovensko'),
(91426, 'https://ror.org/01nr6ek07', 'fr', 1, 'https://ror.org/01nr6ek07 Institut SupĆ©rieur d''Informatique et de MathĆ©matiques de Monastir المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ© ŁˆŲ§Ł„Ų±ŁŠŲ§Ų¶ŁŠŲ§ŲŖ ŲØŲ§Ł„Ł…Ł†Ų³ŲŖŁŠŲ±'),
(91427, 'https://ror.org/01nrcgn98', 'en', 1, 'https://ror.org/01nrcgn98 Nara University of Education å„ˆč‰Æę•™č‚²å¤§å­¦'),
(91428, 'https://ror.org/01nxkx765', 'no_lang_code', 1, 'https://ror.org/01nxkx765 S21sec (Spain)'),
(91429, 'https://ror.org/01nysf027', 'en', 1, 'https://ror.org/01nysf027 Bonanza Creek Long Term Ecological Research'),
(91430, 'https://ror.org/01p1fe256', 'en', 1, 'https://ror.org/01p1fe256 Organización Panamericana de la Salud (Cuba) Pan American Health Organization (Cuba)'),
(91431, 'https://ror.org/01p262204', 'en', 1, 'https://ror.org/01p262204 Ministry of Education ėŒ€ķ•œėÆ¼źµ­ źµģœ”ė¶€'),
(91432, 'https://ror.org/01p36j662', 'en', 1, 'https://ror.org/01p36j662 Royal Thai Army ąøąø­ąø‡ąø—ąø±ąøžąøšąøą¹„ąø—ąø¢'),
(91433, 'https://ror.org/01p3x3413', 'en', 1, 'https://ror.org/01p3x3413 Seerave Foundation'),
(91434, 'https://ror.org/01p7gwa14', 'en', 1, 'https://ror.org/01p7gwa14 NASA Shared Services Center'),
(91435, 'https://ror.org/01p7k1986', 'en', 1, 'https://ror.org/01p7k1986 Central European Institute of Technology'),
(91436, 'https://ror.org/01p9jjh58', 'es', 1, 'https://ror.org/01p9jjh58 Universidad del Valle de Matatipac'),
(91437, 'https://ror.org/01p9nak43', 'id', 1, 'https://ror.org/01p9nak43 Universitas Indo Global Mandiri'),
(91438, 'https://ror.org/01pamva12', 'bs', 1, 'https://ror.org/01pamva12 Institut za vode doo Bijeljina'),
(91439, 'https://ror.org/01pan8346', 'en', 1, 'https://ror.org/01pan8346 J.W. & H.M. Goodman Foundation'),
(91440, 'https://ror.org/01pay1g94', 'en', 1, 'https://ror.org/01pay1g94 Fred Hollows Foundation'),
(91441, 'https://ror.org/01pbdzh19', 'en', 1, 'https://ror.org/01pbdzh19 University of Toledo UniversitƩ de toledo'),
(91442, 'https://ror.org/01pctw149', 'en', 1, 'https://ror.org/01pctw149 NOAA National Marine Fisheries Service Southeast Regional Office'),
(91443, 'https://ror.org/01pczmy17', 'fr', 1, 'https://ror.org/01pczmy17 ISblue'),
(91444, 'https://ror.org/01pe95b45', 'en', 0, 'https://ror.org/01pe95b45 Shiga Medical Center for Adults ę»‹č³€ēœŒē«‹ęˆäŗŗē—…ć‚»ćƒ³ć‚æćƒ¼'),
(91445, 'https://ror.org/01pen7a46', 'en', 1, 'https://ror.org/01pen7a46 Sirindhorn College of Public Health'),
(91446, 'https://ror.org/01peqkm92', 'fr', 0, 'https://ror.org/01peqkm92 Institut Universitaire International Luxembourg'),
(91447, 'https://ror.org/01pgex273', 'en', 1, 'https://ror.org/01pgex273 Integrated Cardio Metabolic Centre'),
(91448, 'https://ror.org/01phkkj35', 'en', 1, 'https://ror.org/01phkkj35 Banner Wyoming Medical Center'),
(91449, 'https://ror.org/01php1d31', 'es', 1, 'https://ror.org/01php1d31 Hospital General de MƩxico'),
(91450, 'https://ror.org/01pj9dg60', 'sv', 1, 'https://ror.org/01pj9dg60 VƤrnamo Sjukhus'),
(91451, 'https://ror.org/01pk67a30', 'tr', 1, 'https://ror.org/01pk67a30 American University of Cyprus Kıbrıs Amerikan Üniversitesi'),
(91452, 'https://ror.org/01pm5qg50', 'en', 1, 'https://ror.org/01pm5qg50 Alrefak University Ų¬Ų§Ł…Ų¹Ų© الرفاق'),
(91453, 'https://ror.org/01pmj6109', 'en', 1, 'https://ror.org/01pmj6109 Foundation for the Development of Ophthalmology Fundacja Wspierania Rozwoju Okulistyki "Okulistyka 21"'),
(91454, 'https://ror.org/01pmtm379', 'es', 1, 'https://ror.org/01pmtm379 Instituto de FĆ­sica La Plata'),
(91455, 'https://ror.org/01pnej532', 'en', 1, 'https://ror.org/01pnej532 Szegedi TudomƔnyegyetem University of Szeged'),
(91456, 'https://ror.org/01pnwgf60', 'de', 1, 'https://ror.org/01pnwgf60 Historische Kommission zu Berlin e.V.'),
(91457, 'https://ror.org/01pqen061', 'de', 1, 'https://ror.org/01pqen061 Deutsche Gesellschaft für Gefäßchirurgie und Gefäßmedizin'),
(91458, 'https://ror.org/01psaa030', 'en', 1, 'https://ror.org/01psaa030 Hava Harp Okulu Turkish Air Force Academy'),
(91459, 'https://ror.org/01px5cv07', 'en', 1, 'https://ror.org/01px5cv07 Reichman University ××•× ×™×‘×Ø×”×™×˜×Ŗ ×Ø×™×™×›×ž×Ÿ'),
(91460, 'https://ror.org/01pxptg16', 'en', 1, 'https://ror.org/01pxptg16 Mandela Institute for Development Studies'),
(91461, 'https://ror.org/01pyqxp87', 'en', 1, 'https://ror.org/01pyqxp87 Talas State University Талас ŠœŠ°Š¼Š»ŠµŠŗŠµŃ‚Ń‚ŠøŠŗ Университети'),
(91462, 'https://ror.org/01q0bmy69', 'en', 1, 'https://ror.org/01q0bmy69 Directory of Open Access Books'),
(91463, 'https://ror.org/01q2qvt95', 'en', 0, 'https://ror.org/01q2qvt95 Institute of Hospitality Management in Prague VysokÔ Ŕkola HotelovÔ v Praze'),
(91464, 'https://ror.org/01q36h934', 'en', 1, 'https://ror.org/01q36h934 Sorsogon State University');
INSERT INTO `rors` VALUES
(91465, 'https://ror.org/01q3qwp65', 'fr', 1, 'https://ror.org/01q3qwp65 UniversitƩ de Notre-Dame du Kasai'),
(91466, 'https://ror.org/01q47ea17', 'en', 1, 'https://ror.org/01q47ea17 National Synchrotron Light Source II'),
(91467, 'https://ror.org/01q6mhb56', 'tr', 1, 'https://ror.org/01q6mhb56 Bilim Akademisi'),
(91468, 'https://ror.org/01q70bz83', 'en', 1, 'https://ror.org/01q70bz83 NOAA Weather Program Office'),
(91469, 'https://ror.org/01q8b6q23', 'it', 1, 'https://ror.org/01q8b6q23 Libera UniversitĆ  Internazionale degli Studi Sociali Guido Carli'),
(91470, 'https://ror.org/01qanyf14', 'en', 1, 'https://ror.org/01qanyf14 Directorate-General for Employment, Social Affairs and Inclusion'),
(91471, 'https://ror.org/01qcq9d74', 'en', 1, 'https://ror.org/01qcq9d74 Korea Institute of Machinery and Materials'),
(91472, 'https://ror.org/01qdz9132', 'fr', 1, 'https://ror.org/01qdz9132 Institut d''Histoire de la RƩvolution franƧaise'),
(91473, 'https://ror.org/01qfer487', 'en', 1, 'https://ror.org/01qfer487 Kungl. Skogs- och Lantbruksakademien Royal Swedish Academy of Agriculture and Forestry'),
(91474, 'https://ror.org/01qh7se39', 'en', 1, 'https://ror.org/01qh7se39 The First Affiliated Hospital of Guangxi University of Traditional Chinese Medicine å¹æč„æäø­åŒ»čÆå¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(91475, 'https://ror.org/01qk25a76', 'id', 1, 'https://ror.org/01qk25a76 Sekolah Tinggi Agama Islam Ma''had Ali Cirebon'),
(91476, 'https://ror.org/01qkhz224', 'en', 1, 'https://ror.org/01qkhz224 A G Leventis Foundation'),
(91477, 'https://ror.org/01qkxb782', 'es', 1, 'https://ror.org/01qkxb782 Centro Científico Tecnólogico - Rosario'),
(91478, '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)'),
(91479, 'https://ror.org/01qpd8v57', 'no_lang_code', 1, 'https://ror.org/01qpd8v57 Precision Castparts (United Kingdom)'),
(91480, 'https://ror.org/01qpm0v79', 'pt', 1, 'https://ror.org/01qpm0v79 Fundação Amparo e Desenvolvimento da Pesquisa'),
(91481, 'https://ror.org/01qq57711', 'es', 1, 'https://ror.org/01qq57711 AndrƩs Bello University Universidad AndrƩs Bello'),
(91482, 'https://ror.org/01qrbys32', 'en', 1, 'https://ror.org/01qrbys32 California Water Science Center'),
(91483, 'https://ror.org/01qrjns53', 'en', 1, 'https://ror.org/01qrjns53 Glacier National Park Parc national des Glaciers'),
(91484, 'https://ror.org/01qt8w311', 'es', 1, 'https://ror.org/01qt8w311 Ministerio de Educación Superior, Ciencia y Tecnología'),
(91485, 'https://ror.org/01qvpeq51', 'en', 1, 'https://ror.org/01qvpeq51 Venezuelan Adventist University'),
(91486, 'https://ror.org/01qxmdg18', 'no_lang_code', 0, 'https://ror.org/01qxmdg18 NASA Astrobiology Institute'),
(91487, 'https://ror.org/01r09qt02', 'en', 1, 'https://ror.org/01r09qt02 International Society of Nephrology'),
(91488, 'https://ror.org/01r13mt55', 'es', 1, 'https://ror.org/01r13mt55 Hospital Universitario Miguel Servet'),
(91489, 'https://ror.org/01r277z15', 'en', 1, 'https://ror.org/01r277z15 Ilam University'),
(91490, 'https://ror.org/01r2ecp77', 'en', 1, 'https://ror.org/01r2ecp77 Det kgl. Forsvarsdepartement Ministry of Defence'),
(91491, 'https://ror.org/01r2sv316', 'no_lang_code', 0, 'https://ror.org/01r2sv316 Rhodia (France)'),
(91492, 'https://ror.org/01r2xg724', 'pt', 1, 'https://ror.org/01r2xg724 Fundação SOS Mata Atlântica, SOS Mata Atlântica Foundation'),
(91493, 'https://ror.org/01r3vad87', 'no_lang_code', 1, 'https://ror.org/01r3vad87 Laboratori Guglielmo Marconi (Italy)'),
(91494, 'https://ror.org/01r4ryc68', 'no_lang_code', 1, 'https://ror.org/01r4ryc68 McGraw Hill Financial (United States)'),
(91495, 'https://ror.org/01r5a4654', 'en', 1, 'https://ror.org/01r5a4654 The Stanton Foundation'),
(91496, 'https://ror.org/01r8xsy94', 'en', 1, 'https://ror.org/01r8xsy94 ESCP Business School'),
(91497, 'https://ror.org/01rab0x89', 'no_lang_code', 1, 'https://ror.org/01rab0x89 Empresa de Manutenção de Equipamento FerroviÔrio (Portugal)'),
(91498, 'https://ror.org/01raq2v93', 'es', 1, 'https://ror.org/01raq2v93 SubsecretarĆ­a de Control y Aplicaciones Nucleares'),
(91499, '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'),
(91500, 'https://ror.org/01re79z83', 'fr', 1, 'https://ror.org/01re79z83 Fondation des Sciences du Patrimoine'),
(91501, 'https://ror.org/01rfjcw16', 'en', 0, 'https://ror.org/01rfjcw16 Asian University'),
(91502, 'https://ror.org/01rg5mm74', 'en', 1, 'https://ror.org/01rg5mm74 National Security Research Institute źµ­ź°€ė³“ģ•ˆźø°ģˆ ģ—°źµ¬ģ†Œ'),
(91503, 'https://ror.org/01rgfv364', 'en', 1, 'https://ror.org/01rgfv364 Thiagarajar College of Engineering'),
(91504, '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'),
(91505, 'https://ror.org/01rjk0n25', 'en', 0, 'https://ror.org/01rjk0n25 Trans-European Research and Education Networking Association'),
(91506, 'https://ror.org/01rmh9n78', 'en', 1, 'https://ror.org/01rmh9n78 University of New Hampshire UniversitƩ du New Hampshire'),
(91507, 'https://ror.org/01rmxff98', 'en', 1, 'https://ror.org/01rmxff98 Institute of Water Problems Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГных проблем Š ŠŠ'),
(91508, 'https://ror.org/01rngv472', 'hu', 1, 'https://ror.org/01rngv472 Agricultural Economics Nonprofit Kft. AgrƔrkƶzgazdasƔgi IntƩzet'),
(91509, 'https://ror.org/01rr3tg72', 'en', 1, 'https://ror.org/01rr3tg72 Jiangsu Provincial Commission of Health and Family Planning'),
(91510, 'https://ror.org/01rrczv41', 'en', 1, 'https://ror.org/01rrczv41 University of the Philippines Manila'),
(91511, 'https://ror.org/01rs9wc41', 'en', 0, 'https://ror.org/01rs9wc41 Deutsche Forschungsanstalt für Lebensmittelchemie, Leibniz Institut German Research Centre for Food Chemistry'),
(91512, 'https://ror.org/01rtzw447', 'fr', 1, 'https://ror.org/01rtzw447 Laboratoire de Chimie de Coordination'),
(91513, 'https://ror.org/01rvge007', 'en', 1, 'https://ror.org/01rvge007 Pennsylvania Elks Home Service Program'),
(91514, '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'),
(91515, 'https://ror.org/01rx5dh02', 'no_lang_code', 1, 'https://ror.org/01rx5dh02 RUAG (Switzerland)'),
(91516, 'https://ror.org/01ry5pb83', 'en', 1, 'https://ror.org/01ry5pb83 Ashley IB Elementary Magnet School'),
(91517, 'https://ror.org/01rzjwy17', 'es', 1, 'https://ror.org/01rzjwy17 Universidad Eugenio MarĆ­a de Hostos'),
(91518, 'https://ror.org/01s0wxr22', 'en', 1, 'https://ror.org/01s0wxr22 New Mexico Economic Development Department'),
(91519, 'https://ror.org/01s165k42', 'no_lang_code', 1, 'https://ror.org/01s165k42 Herff Jones (United States)'),
(91520, 'https://ror.org/01s1cx509', 'no_lang_code', 1, 'https://ror.org/01s1cx509 NanoPattern Technologies (United States)'),
(91521, 'https://ror.org/01s2mxg92', 'en', 1, 'https://ror.org/01s2mxg92 European Association for the Study of the Liver'),
(91522, 'https://ror.org/01s344n79', 'no_lang_code', 1, 'https://ror.org/01s344n79 Poltava State Agrarian University ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Гержавний аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(91523, 'https://ror.org/01s3dpm97', 'en', 1, 'https://ror.org/01s3dpm97 National Space Science and Technology Center'),
(91524, 'https://ror.org/01s578f14', 'de', 1, 'https://ror.org/01s578f14 Arnold-Bergstraesser-Institut'),
(91525, 'https://ror.org/01s5gyw91', 'en', 1, 'https://ror.org/01s5gyw91 Department of Education of Guangdong Province'),
(91526, 'https://ror.org/01s682d03', 'no_lang_code', 1, 'https://ror.org/01s682d03 Dragonfly Therapeutics (United States)'),
(91527, 'https://ror.org/01s6q2813', 'fr', 1, 'https://ror.org/01s6q2813 Laboratoire Quartz'),
(91528, 'https://ror.org/01s7fps71', 'en', 1, 'https://ror.org/01s7fps71 Child Neurology Associates'),
(91529, 'https://ror.org/01s8z1w25', 'en', 1, 'https://ror.org/01s8z1w25 Australian Radiation Protection and Nuclear Safety Agency'),
(91530, 'https://ror.org/01sc1ca25', 'en', 1, 'https://ror.org/01sc1ca25 European Institute for Health Records'),
(91531, 'https://ror.org/01sd35748', 'en', 1, 'https://ror.org/01sd35748 TYTO - Association for the Management and Conservation of Biodiversity in Agricultural Ecosystems ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ για τη Ī”Ī¹Ī±Ļ‡ĪµĪÆĻĪ¹ĻƒĪ· και Ī”Ī¹Ī±Ļ„Ī®ĻĪ·ĻƒĪ· της Ī’Ī¹ĪæĻ€ĪæĪ¹ĪŗĪ¹Ī»ĻŒĻ„Ī·Ļ„Ī±Ļ‚ ĻƒĻ„Ī± Αγροτικά ĪŸĪ¹ĪŗĪæĻƒĻ…ĻƒĻ„Ī®Ī¼Ī±Ļ„Ī± «Τ΄ΤΩ»'),
(91532, 'https://ror.org/01sdn5x73', 'en', 1, 'https://ror.org/01sdn5x73 Providence Park Hospital'),
(91533, 'https://ror.org/01se4f844', 'en', 1, 'https://ror.org/01se4f844 Prifysgol Cymru University of Wales'),
(91534, 'https://ror.org/01sgzrz83', 'no_lang_code', 1, 'https://ror.org/01sgzrz83 TEPCO (Japan) ę±äŗ¬é›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(91535, 'https://ror.org/01sh1xg03', 'fr', 1, 'https://ror.org/01sh1xg03 HƓpital RenƩe Sabran'),
(91536, 'https://ror.org/01sp9jb48', 'fr', 1, 'https://ror.org/01sp9jb48 Laboratoire d''Etude et de Recherche sur le MatƩriau Bois'),
(91537, 'https://ror.org/01spssf70', 'en', 1, 'https://ror.org/01spssf70 California University of Pennsylvania'),
(91538, 'https://ror.org/01srarb97', 'en', 1, 'https://ror.org/01srarb97 Olympic Coast Discovery Center'),
(91539, 'https://ror.org/01ss82r26', 'en', 0, 'https://ror.org/01ss82r26 International Food Policy Research Institute'),
(91540, 'https://ror.org/01stkz436', 'en', 1, 'https://ror.org/01stkz436 Parkwood Hospital'),
(91541, 'https://ror.org/01stnk488', 'en', 1, 'https://ror.org/01stnk488 National Science and Technology Center for Disaster Reduction åœ‹å®¶ē½å®³é˜²ę•‘ē§‘ęŠ€äø­åæƒ'),
(91542, 'https://ror.org/01sv7f575', 'no_lang_code', 1, 'https://ror.org/01sv7f575 Eli Lilly (Japan) ę—„ęœ¬ć‚¤ćƒ¼ćƒ©ć‚¤ćƒŖćƒŖćƒ¼ę Ŗå¼ä¼šē¤¾'),
(91543, 'https://ror.org/01svc3820', 'en', 1, 'https://ror.org/01svc3820 Financial Services Commission źøˆģœµģœ„ģ›ķšŒ'),
(91544, 'https://ror.org/01svqwd91', 'no_lang_code', 1, 'https://ror.org/01svqwd91 ExOne (United States)'),
(91545, 'https://ror.org/01sxj8p89', 'en', 0, 'https://ror.org/01sxj8p89 Queensland Climate Change Centre of Excellence'),
(91546, 'https://ror.org/01szwa973', 'en', 1, 'https://ror.org/01szwa973 Nadačnƭ fond Neuron Neuron Endowment Fund'),
(91547, 'https://ror.org/01t14bp54', 'en', 1, 'https://ror.org/01t14bp54 Environmental System Science Data Infrastructure for a Virtual Ecosystem'),
(91548, 'https://ror.org/01t21ag29', 'no_lang_code', 1, 'https://ror.org/01t21ag29 Zintan University Ų¬Ų§Ł…Ų¹Ų© الزنتان'),
(91549, 'https://ror.org/01t3dsz49', 'es', 1, 'https://ror.org/01t3dsz49 Centro de Investigación y Desarrollo de medicamentos'),
(91550, 'https://ror.org/01t3kc709', 'sv', 1, 'https://ror.org/01t3kc709 P. O. Zetterlings stiftelse'),
(91551, 'https://ror.org/01t3w3794', 'en', 1, 'https://ror.org/01t3w3794 Dayton School District'),
(91552, 'https://ror.org/01t56tx37', 'no_lang_code', 1, 'https://ror.org/01t56tx37 Luceat (Italy)'),
(91553, 'https://ror.org/01t6c7448', 'es', 1, 'https://ror.org/01t6c7448 Vidarium - Centro de Investigación en Nutrición Salud y Bienestar'),
(91554, 'https://ror.org/01t6xjw46', 'fr', 1, 'https://ror.org/01t6xjw46 CommunautƩ urbaine de Strasbourg, EuromƩtropole de Strasbourg'),
(91555, 'https://ror.org/01t8fg661', 'en', 1, 'https://ror.org/01t8fg661 ISIS Neutron and Muon Source'),
(91556, 'https://ror.org/01t8nk565', 'en', 1, 'https://ror.org/01t8nk565 Ontario Centre of Innovation'),
(91557, 'https://ror.org/01t8pd591', 'es', 1, 'https://ror.org/01t8pd591 Academia Nacional de Ciencias Exactas FĆ­sicas y Naturales'),
(91558, 'https://ror.org/01t8prc81', 'en', 1, 'https://ror.org/01t8prc81 Xi''an Technological University č„æå®‰å·„äøšå¤§å­¦'),
(91559, 'https://ror.org/01ta8y947', 'en', 1, 'https://ror.org/01ta8y947 Uttar Pradesh Rajarshi Tandon Open University ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ ą¤°ą¤¾ą¤œą¤°ą„ą¤·ą¤æ ą¤Ÿą¤‚ą¤”ą¤Ø ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(91560, 'https://ror.org/01tc10z29', 'en', 1, 'https://ror.org/01tc10z29 Cancer Institute (WIA)'),
(91561, 'https://ror.org/01tc2d264', 'fr', 1, 'https://ror.org/01tc2d264 CHU de Limoges, Centre Hospitalier Universitaire de Limoges'),
(91562, 'https://ror.org/01tdv5x53', 'de', 1, 'https://ror.org/01tdv5x53 Internationale Innovative Ophthalmochirurgie'),
(91563, 'https://ror.org/01tfk3v06', 'de', 1, 'https://ror.org/01tfk3v06 Wasserstraßen- und Schifffahrtsamt Donau MDK'),
(91564, 'https://ror.org/01tfttw56', 'no_lang_code', 0, 'https://ror.org/01tfttw56 StromaLab'),
(91565, 'https://ror.org/01tg4ja34', 'es', 1, 'https://ror.org/01tg4ja34 Estación Experimental de Pastos y Forrajes Indio Hatuey'),
(91566, 'https://ror.org/01tkekz66', 'en', 1, 'https://ror.org/01tkekz66 Rainforest Trust'),
(91567, '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'),
(91568, 'https://ror.org/01ttmqc18', 'en', 1, 'https://ror.org/01ttmqc18 Agenzia Italiana del Farmaco Italian Medicines Agency'),
(91569, 'https://ror.org/01tv7v957', 'en', 1, 'https://ror.org/01tv7v957 John H. Tietze Foundation Trust'),
(91570, 'https://ror.org/01txtk792', 'en', 1, 'https://ror.org/01txtk792 The Danish Veteran Centre Veterancentret'),
(91571, 'https://ror.org/01txv0n63', 'no_lang_code', 0, 'https://ror.org/01txv0n63 Hstar Technologies Corporation (United States)'),
(91572, 'https://ror.org/01tytrg27', 'fr', 1, 'https://ror.org/01tytrg27 Centre National de la Recherche Scientifique et Technologique'),
(91573, 'https://ror.org/01tzp8w95', 'no_lang_code', 1, 'https://ror.org/01tzp8w95 Best Biotech'),
(91574, 'https://ror.org/01v14jr37', 'en', 1, 'https://ror.org/01v14jr37 Royal Bournemouth Hospital'),
(91575, 'https://ror.org/01v2aa541', 'pl', 1, 'https://ror.org/01v2aa541 Szpital św. Wincentego a Paulo'),
(91576, 'https://ror.org/01v2b1j25', 'en', 1, 'https://ror.org/01v2b1j25 Eunice Kennedy Shriver Center'),
(91577, 'https://ror.org/01v2m4n16', 'en', 1, 'https://ror.org/01v2m4n16 Erasmus+'),
(91578, 'https://ror.org/01v3fsc55', 'en', 1, 'https://ror.org/01v3fsc55 Office of the Director of National Intelligence'),
(91579, 'https://ror.org/01v7ra871', 'en', 1, 'https://ror.org/01v7ra871 Hortgro Science'),
(91580, 'https://ror.org/01v8kbt09', 'en', 1, 'https://ror.org/01v8kbt09 Straub Medical Center'),
(91581, 'https://ror.org/01vbd1435', 'de', 1, 'https://ror.org/01vbd1435 Fachhochschule Dresden'),
(91582, 'https://ror.org/01vbnqb98', 'de', 1, 'https://ror.org/01vbnqb98 Deutscher Ethikrat'),
(91583, 'https://ror.org/01vf2g217', 'en', 0, 'https://ror.org/01vf2g217 University of California - San Diego School of Medicine'),
(91584, 'https://ror.org/01vffmg07', 'en', 1, 'https://ror.org/01vffmg07 Hans Hoheisen Charitable Trust'),
(91585, 'https://ror.org/01vgvj394', 'es', 1, 'https://ror.org/01vgvj394 Fundacion Allende'),
(91586, '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'),
(91587, 'https://ror.org/01vk3ab38', 'hu', 1, 'https://ror.org/01vk3ab38 Mathias Corvinus Collegium'),
(91588, 'https://ror.org/01vm25y95', 'en', 1, 'https://ror.org/01vm25y95 Research Institute of Technical Glass ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технического стекла'),
(91589, 'https://ror.org/01vneh441', 'de', 1, 'https://ror.org/01vneh441 Heinrich Bƶll Stiftung'),
(91590, 'https://ror.org/01vnk2d62', 'en', 1, 'https://ror.org/01vnk2d62 America Nepal Medical Foundation'),
(91591, 'https://ror.org/01vpwxn19', 'en', 1, 'https://ror.org/01vpwxn19 Eastern Savings Bank'),
(91592, 'https://ror.org/01vta4r13', 'en', 1, 'https://ror.org/01vta4r13 Environmental and Occupational Health Sciences Institute'),
(91593, 'https://ror.org/01vtjgg14', 'en', 1, 'https://ror.org/01vtjgg14 The Institute for Education Research'),
(91594, 'https://ror.org/01vvb2v88', 'no_lang_code', 1, 'https://ror.org/01vvb2v88 Ningxia Road and Bridge Construction Company å®å¤č·Æę”„å»ŗč®¾ęœ‰é™å…¬åø'),
(91595, 'https://ror.org/01vvn9w24', 'de', 1, 'https://ror.org/01vvn9w24 Kriminologische Zentralstelle'),
(91596, 'https://ror.org/01vwesc15', 'no_lang_code', 1, 'https://ror.org/01vwesc15 Seagen (United States)'),
(91597, 'https://ror.org/01vz09525', 'no_lang_code', 1, 'https://ror.org/01vz09525 Davies Diagnostics (South Africa) Davies Diagnostiek'),
(91598, 'https://ror.org/01vzsje31', 'en', 1, 'https://ror.org/01vzsje31 University John of the Cross'),
(91599, 'https://ror.org/01w0hda30', 'fr', 1, 'https://ror.org/01w0hda30 Laboratoire de Physique ThƩorique'),
(91600, 'https://ror.org/01w1q7x19', 'en', 1, 'https://ror.org/01w1q7x19 Oregon Space Grant Consortium'),
(91601, 'https://ror.org/01w4yqf75', 'es', 1, 'https://ror.org/01w4yqf75 Hospital Universitario MarquƩs de Valdecilla, MarquƩs de Valdecilla University Hospital'),
(91602, 'https://ror.org/01w50jw95', 'en', 1, 'https://ror.org/01w50jw95 New England Baptist Hospital'),
(91603, 'https://ror.org/01w56mz86', 'sr', 0, 'https://ror.org/01w56mz86 Faculty of Mechanical Engineering - University in Nis Masinski Fakultet - Univerziteta U Nisu'),
(91604, 'https://ror.org/01w6gjq94', 'no_lang_code', 1, 'https://ror.org/01w6gjq94 Samsung (United Kingdom)'),
(91605, 'https://ror.org/01w89ke06', 'en', 1, 'https://ror.org/01w89ke06 Trinidad and Tobago Bureau of Standards'),
(91606, 'https://ror.org/01w8eym62', 'en', 1, 'https://ror.org/01w8eym62 Trinity Health Michigan'),
(91607, 'https://ror.org/01w953x65', 'en', 1, 'https://ror.org/01w953x65 Ngee Ann Polytechnic 義安理巄學院'),
(91608, 'https://ror.org/01w9crx19', 'fr', 1, 'https://ror.org/01w9crx19 Cecos, FƩdƩration FranƧaise des CECOS'),
(91609, 'https://ror.org/01wajxa36', 'en', 1, 'https://ror.org/01wajxa36 Bangladesh University of Health Sciences'),
(91610, 'https://ror.org/01wby8r23', 'en', 1, 'https://ror.org/01wby8r23 Hara University'),
(91611, 'https://ror.org/01wept116', 'de', 1, 'https://ror.org/01wept116 Bundeswehr Hospital Bundeswehrkrankenhaus'),
(91612, 'https://ror.org/01wes1575', 'en', 1, 'https://ror.org/01wes1575 Myeloma UK'),
(91613, 'https://ror.org/01wfhdb61', 'en', 1, 'https://ror.org/01wfhdb61 Congo Research Papers'),
(91614, 'https://ror.org/01wg1af73', 'en', 0, 'https://ror.org/01wg1af73 Shirayuri Women''s University'),
(91615, 'https://ror.org/01wh3jw63', 'en', 1, 'https://ror.org/01wh3jw63 Shanghai Technical Institute of Electronics & Information äøŠęµ·ē”µå­äæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(91616, 'https://ror.org/01whmzn59', 'en', 1, 'https://ror.org/01whmzn59 Shanghai Xuhui Central Hospital äøŠęµ·å¾ę±‡äø­åæƒåŒ»é™¢'),
(91617, 'https://ror.org/01wk3d929', 'en', 1, 'https://ror.org/01wk3d929 Universitas Brawijaya University of Brawijaya'),
(91618, 'https://ror.org/01wkk5m15', 'es', 1, 'https://ror.org/01wkk5m15 Centro Universitario Haller'),
(91619, 'https://ror.org/01wmcm405', 'en', 0, 'https://ror.org/01wmcm405 Muroc Army Air Base'),
(91620, 'https://ror.org/01wmqvz89', 'en', 1, 'https://ror.org/01wmqvz89 Danish National Metrology Institute Dansk Fundamental Metrologi'),
(91621, 'https://ror.org/01wn0y376', 'en', 1, 'https://ror.org/01wn0y376 American Malting Barley Association'),
(91622, 'https://ror.org/01wn80b84', 'en', 1, 'https://ror.org/01wn80b84 Consortium For Ocean Leadership'),
(91623, 'https://ror.org/01wpjm123', 'en', 1, 'https://ror.org/01wpjm123 Ministry of Science and ICT ź³¼ķ•™źø°ģˆ ģ •ė³“ķ†µģ‹ ė¶€'),
(91624, 'https://ror.org/01wqpd686', 'en', 1, 'https://ror.org/01wqpd686 European Huntington''s Disease Network'),
(91625, 'https://ror.org/01wspgy28', 'en', 1, 'https://ror.org/01wspgy28 University of Hawaiʻi at Mānoa Université d''hawaï à mānoa'),
(91626, 'https://ror.org/01wttbg53', 'en', 1, 'https://ror.org/01wttbg53 Hult International Business School'),
(91627, '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'),
(91628, 'https://ror.org/01wwfqj09', 'en', 1, 'https://ror.org/01wwfqj09 Nancy Yeary Women''s Cancer Research Foundation'),
(91629, 'https://ror.org/01wx88t91', 'en', 1, 'https://ror.org/01wx88t91 Aichi University of Technology ę„›ēŸ„å·„ē§‘å¤§å­¦'),
(91630, 'https://ror.org/01wywrx16', 'no_lang_code', 1, 'https://ror.org/01wywrx16 Voxtel (United States)'),
(91631, 'https://ror.org/01x1hjy11', 'en', 1, 'https://ror.org/01x1hjy11 The Women in Medicine Legacy Foundation'),
(91632, 'https://ror.org/01x3sy962', 'en', 1, 'https://ror.org/01x3sy962 Southern Middle School'),
(91633, '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'),
(91634, 'https://ror.org/01x5ywr89', 'no_lang_code', 1, 'https://ror.org/01x5ywr89 Vivendi (France)'),
(91635, 'https://ror.org/01x706n97', 'de', 1, 'https://ror.org/01x706n97 Zentrum für Geoinformationswesen der Bundeswehr'),
(91636, 'https://ror.org/01x7j0342', 'en', 1, 'https://ror.org/01x7j0342 Local Government Training Institute'),
(91637, 'https://ror.org/01x9dd012', 'en', 1, 'https://ror.org/01x9dd012 Bovey Tracey Hospital'),
(91638, 'https://ror.org/01x9n3j10', 'en', 1, 'https://ror.org/01x9n3j10 Prague City University'),
(91639, 'https://ror.org/01x9q3k71', 'en', 0, 'https://ror.org/01x9q3k71 United States Coast and Geodetic Survey'),
(91640, 'https://ror.org/01xaqx887', 'en', 1, 'https://ror.org/01xaqx887 Advanced Digital Sciences Center'),
(91641, 'https://ror.org/01xcepn55', 'no_lang_code', 1, 'https://ror.org/01xcepn55 ExxonMobil (United States)'),
(91642, 'https://ror.org/01xdnwc75', 'en', 1, 'https://ror.org/01xdnwc75 Ministry of Justice'),
(91643, 'https://ror.org/01xeb1c73', 'en', 1, 'https://ror.org/01xeb1c73 Almaty Technological University Алматы Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃŠ»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(91644, 'https://ror.org/01xhrax27', 'hr', 1, 'https://ror.org/01xhrax27 Naklada Slap'),
(91645, 'https://ror.org/01xn6em86', 'en', 1, 'https://ror.org/01xn6em86 Xing Wei College äøŠęµ·å…“ä¼Ÿå­¦é™¢'),
(91646, 'https://ror.org/01xp57w77', 'en', 1, 'https://ror.org/01xp57w77 Beijing Municipal Government åŒ—äŗ¬åø‚ę”æåŗœ'),
(91647, 'https://ror.org/01xpa3123', 'en', 1, 'https://ror.org/01xpa3123 National Research Foundation Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(91648, 'https://ror.org/01xpgs822', 'en', 0, 'https://ror.org/01xpgs822 Vilentum University of applied sciences'),
(91649, 'https://ror.org/01xqwbk25', 'en', 1, 'https://ror.org/01xqwbk25 United States Securities and Exchange Commission'),
(91650, 'https://ror.org/01xr1s547', 'no_lang_code', 1, 'https://ror.org/01xr1s547 Xenocs (France)'),
(91651, 'https://ror.org/01xtpxr95', 'no_lang_code', 1, 'https://ror.org/01xtpxr95 Agilent Technologies (Japan) ć‚¢ć‚øćƒ¬ćƒ³ćƒˆćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(91652, 'https://ror.org/01xwxw692', 'es', 1, 'https://ror.org/01xwxw692 Instituto Tecnológico de Cancún'),
(91653, 'https://ror.org/01xxhz462', 'no_lang_code', 1, 'https://ror.org/01xxhz462 Frontier Medicines (United States)'),
(91654, 'https://ror.org/01xyp9n09', 'en', 1, 'https://ror.org/01xyp9n09 Department of Health Services'),
(91655, 'https://ror.org/01y0ef124', 'no', 1, 'https://ror.org/01y0ef124 Patentstyret'),
(91656, 'https://ror.org/01y2yb643', 'no_lang_code', 1, 'https://ror.org/01y2yb643 Ivan Rakovec Institute of Palaeontology PaleontoloŔki inŔtitut Ivana Rakovca'),
(91657, 'https://ror.org/01y5gea39', 'no_lang_code', 0, 'https://ror.org/01y5gea39 Catalana de Gas (Spain)'),
(91658, 'https://ror.org/01y68k842', 'en', 1, 'https://ror.org/01y68k842 American Physiological Society'),
(91659, 'https://ror.org/01y7vt929', 'en', 1, 'https://ror.org/01y7vt929 France-BioImaging'),
(91660, 'https://ror.org/01y9h3t34', 'de', 1, 'https://ror.org/01y9h3t34 Wasserstraßen- und Schifffahrtsamt Mosel-Saar-Lahn'),
(91661, 'https://ror.org/01y9s4r06', 'en', 1, 'https://ror.org/01y9s4r06 Our Lady of the Lake Regional Medical Center'),
(91662, 'https://ror.org/01yab1r94', 'en', 1, 'https://ror.org/01yab1r94 International Maize and Wheat Improvement Center'),
(91663, 'https://ror.org/01yc93g67', 'en', 1, 'https://ror.org/01yc93g67 Doncaster and Bassetlaw Teaching Hospitals NHS Foundation Trust'),
(91664, 'https://ror.org/01ycfpe90', 'es', 1, 'https://ror.org/01ycfpe90 Universidad Americana'),
(91665, 'https://ror.org/01ycnqr59', 'en', 1, 'https://ror.org/01ycnqr59 Dinosaur Research Institute'),
(91666, 'https://ror.org/01ycya212', 'en', 1, 'https://ror.org/01ycya212 Louis and Harold Price Foundation'),
(91667, 'https://ror.org/01ygbkk63', 'no_lang_code', 1, 'https://ror.org/01ygbkk63 GlobalWafers (Singapore)'),
(91668, 'https://ror.org/01ykr4004', 'pt', 1, 'https://ror.org/01ykr4004 Escola Superior de Saúde Atlântica'),
(91669, 'https://ror.org/01ymejj86', 'en', 1, 'https://ror.org/01ymejj86 Indonesian Adventist University Universitas Advent Indonesia'),
(91670, 'https://ror.org/01ypf6171', 'no_lang_code', 0, 'https://ror.org/01ypf6171 XRpro (United States)'),
(91671, 'https://ror.org/01yshzf86', 'en', 0, 'https://ror.org/01yshzf86 Department of Family and Community Services'),
(91672, 'https://ror.org/01yve5h66', 'en', 1, 'https://ror.org/01yve5h66 Zegar Family Foundation'),
(91673, 'https://ror.org/01yw0yc03', 'no_lang_code', 0, 'https://ror.org/01yw0yc03 Icagen (United States)'),
(91674, 'https://ror.org/01yxw2t10', 'en', 1, 'https://ror.org/01yxw2t10 Florida Ornithological Society'),
(91675, 'https://ror.org/01z3hs762', 'no_lang_code', 1, 'https://ror.org/01z3hs762 Hansoh Pharma (China) ę±‰ē“¢åˆ¶čÆ'),
(91676, 'https://ror.org/01z3j2f47', 'no_lang_code', 1, 'https://ror.org/01z3j2f47 Rio Tinto (Switzerland)'),
(91677, 'https://ror.org/01z6gk692', 'de', 0, 'https://ror.org/01z6gk692 Landesamt für Landwirtschaft, Umwelt und ländliche Räume'),
(91678, 'https://ror.org/01z72wf68', 'de', 1, 'https://ror.org/01z72wf68 Wasserstraßen-Neubauamt Nord-Ostsee-Kanal'),
(91679, 'https://ror.org/01z7y3r39', 'en', 1, 'https://ror.org/01z7y3r39 Tianjin Municipal Education Commission'),
(91680, 'https://ror.org/01z818z22', 'en', 1, 'https://ror.org/01z818z22 Aichi Medical University Medical Center ę„›ēŸ„åŒ»ē§‘å¤§å­¦ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(91681, 'https://ror.org/01z8h0e92', 'en', 1, 'https://ror.org/01z8h0e92 Four Winds Foundation'),
(91682, 'https://ror.org/01zayq778', 'no_lang_code', 1, 'https://ror.org/01zayq778 Pūrangakura'),
(91683, 'https://ror.org/01zbnvs85', 'no_lang_code', 1, 'https://ror.org/01zbnvs85 Meta (United States)'),
(91684, 'https://ror.org/01zbp0650', 'en', 1, 'https://ror.org/01zbp0650 European Society for Evolutionary Biology'),
(91685, 'https://ror.org/01zby9g91', 'en', 1, 'https://ror.org/01zby9g91 Shahid Sadoughi University of Medical Sciences and Health Services دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų“Ł‡ŪŒŲÆ ŲµŲÆŁˆŁ‚ŪŒ یزد'),
(91686, 'https://ror.org/01zgpn844', 'no_lang_code', 1, 'https://ror.org/01zgpn844 Bausch Health (Canada)'),
(91687, 'https://ror.org/01zgy1s35', 'en', 1, 'https://ror.org/01zgy1s35 University Medical Center Hamburg-Eppendorf UniversitƤtsklinikum Hamburg-Eppendorf'),
(91688, 'https://ror.org/01zh3r972', 'en', 0, 'https://ror.org/01zh3r972 Tyumen State Architectural University'),
(91689, 'https://ror.org/01zhg1x17', 'pt', 1, 'https://ror.org/01zhg1x17 Instituto Profissional de Canossa - IPDC'),
(91690, 'https://ror.org/01zj15q98', 'en', 1, 'https://ror.org/01zj15q98 SINTEF Community'),
(91691, 'https://ror.org/01zj87490', 'id', 1, 'https://ror.org/01zj87490 Institut Ilmu Kesehatan STRADA Indonesia'),
(91692, 'https://ror.org/01zjc6908', 'en', 1, 'https://ror.org/01zjc6908 European Molecular Biology Laboratory Laboratoire EuropƩen de Biologie MolƩculaire'),
(91693, 'https://ror.org/01zmp8b44', 'en', 0, 'https://ror.org/01zmp8b44 Finnish Food Safety Authority Evira'),
(91694, 'https://ror.org/01zn7ya31', 'en', 1, 'https://ror.org/01zn7ya31 Bell Museum of Natural History'),
(91695, 'https://ror.org/01zntxg38', 'no_lang_code', 1, 'https://ror.org/01zntxg38 DisChem (United States)'),
(91696, 'https://ror.org/01zq5hd53', 'no_lang_code', 1, 'https://ror.org/01zq5hd53 Biocom Africa (South Africa)'),
(91697, 'https://ror.org/01zr8ek85', 'en', 1, 'https://ror.org/01zr8ek85 Anchor University Lagos'),
(91698, 'https://ror.org/01zs03f78', 'en', 1, 'https://ror.org/01zs03f78 International Society of Biomechanics'),
(91699, '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'),
(91700, 'https://ror.org/01ztdb698', 'no_lang_code', 1, 'https://ror.org/01ztdb698 Nautilus Environmental'),
(91701, 'https://ror.org/01zvgd947', 'en', 0, 'https://ror.org/01zvgd947 Irkutsk State Linguistic University Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(91702, 'https://ror.org/01zwmgk08', 'en', 1, 'https://ror.org/01zwmgk08 Leibniz Institute for Neurobiology Leibniz-Institut für Neurobiologie'),
(91703, 'https://ror.org/01zx3qf22', 'en', 1, 'https://ror.org/01zx3qf22 Ministry of Treasury and Finance T.C. Hazine ve Maliye Bakanlığı'),
(91704, 'https://ror.org/01zxeqp62', 'no_lang_code', 1, 'https://ror.org/01zxeqp62 Aurobay (Sweden)'),
(91705, 'https://ror.org/01zxpj864', 'en', 1, 'https://ror.org/01zxpj864 Kim Il-Sung Military University ź¹€ģ¼ģ„±źµ°ģ‚¬ģ¢…ķ•©ėŒ€ķ•™'),
(91706, 'https://ror.org/01zzcvm19', 'en', 1, 'https://ror.org/01zzcvm19 Kurdistan Technical Institute Ł¾Ū•ŪŒŁ…Ų§Ł†ŚÆŪ•ŪŒ ŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ Ś©ŁˆŲ±ŲÆŲ³ŲŖŲ§Ł†'),
(91707, 'https://ror.org/020120f86', 'fr', 1, 'https://ror.org/020120f86 Institut supƩrieur de l''automobile et des transports'),
(91708, 'https://ror.org/0202cv241', 'en', 1, 'https://ror.org/0202cv241 Alberta Environment and Protected Areas'),
(91709, 'https://ror.org/0202tst27', 'no_lang_code', 1, 'https://ror.org/0202tst27 NIKIMT-Atomstroy ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ монтажной технологии — Атомстрой'),
(91710, 'https://ror.org/0204z0d18', 'no_lang_code', 1, 'https://ror.org/0204z0d18 Alrafidain University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ų±Ų§ŁŲÆŁŠŁ† الجامعة'),
(91711, 'https://ror.org/0207smp78', 'en', 1, 'https://ror.org/0207smp78 Ascension Providence Hospital'),
(91712, 'https://ror.org/0208m0s40', 'en', 1, 'https://ror.org/0208m0s40 Association of Physician Associates in Obstetrics and Gynecology'),
(91713, 'https://ror.org/0208tyb13', 'es', 1, 'https://ror.org/0208tyb13 Universidad Peruana Simón Bolívar'),
(91714, 'https://ror.org/020axev56', 'en', 1, 'https://ror.org/020axev56 Harris foundation'),
(91715, 'https://ror.org/020bngz38', 'en', 1, 'https://ror.org/020bngz38 Japan Foundation'),
(91716, 'https://ror.org/020ddy191', 'en', 1, 'https://ror.org/020ddy191 Istanbul Şehir University İstanbul Şehir Üniversitesi'),
(91717, 'https://ror.org/020dw9k11', 'it', 1, 'https://ror.org/020dw9k11 Regione Lombardia'),
(91718, 'https://ror.org/020f9s554', 'pt', 1, 'https://ror.org/020f9s554 Instituto de Pesquisa Ambiental da AmazƓnia'),
(91719, 'https://ror.org/020fbfd84', 'es', 1, 'https://ror.org/020fbfd84 Colegio de Etnólogos y Antropólogos Sociales'),
(91720, 'https://ror.org/020g50164', 'en', 0, 'https://ror.org/020g50164 St John''s Innovation Centre'),
(91721, 'https://ror.org/020gbzh45', 'no_lang_code', 0, 'https://ror.org/020gbzh45 Grupo Antolin (Spain)'),
(91722, 'https://ror.org/020gmng35', 'id', 1, 'https://ror.org/020gmng35 Universitas Karo'),
(91723, 'https://ror.org/020h0qv97', 'en', 1, 'https://ror.org/020h0qv97 Kremenchuk University of Economics Information Technology and Management'),
(91724, 'https://ror.org/020hcrc42', 'en', 1, 'https://ror.org/020hcrc42 Spiria Medical'),
(91725, 'https://ror.org/020hftj25', 'fr', 1, 'https://ror.org/020hftj25 Centre IntƩgrƩ de SantƩ et Services Sociaux de la GaspƩsie'),
(91726, 'https://ror.org/020hx9j68', 'en', 1, 'https://ror.org/020hx9j68 Bibliosan'),
(91727, 'https://ror.org/020m47m04', 'en', 1, 'https://ror.org/020m47m04 Chica and Heinz Schaller Foundation'),
(91728, 'https://ror.org/020ns9z20', 'no_lang_code', 1, 'https://ror.org/020ns9z20 Hitachi Astemo (Japan) ę—„ē«‹Astemo'),
(91729, 'https://ror.org/020pqc882', 'en', 1, 'https://ror.org/020pqc882 National University of Tainan åœ‹ē«‹č‡ŗå—å¤§å­ø'),
(91730, 'https://ror.org/020r4p198', 'en', 1, 'https://ror.org/020r4p198 Korea Education and Research Information Service ķ•œźµ­źµģœ”ķ•™ģˆ ģ •ė³“ģ›'),
(91731, 'https://ror.org/020vp0d02', 'no_lang_code', 0, 'https://ror.org/020vp0d02 Ambion Diagnostics'),
(91732, 'https://ror.org/020wg5393', 'no_lang_code', 1, 'https://ror.org/020wg5393 Eesti metroloogia keskasutus Metrosert'),
(91733, 'https://ror.org/020wtkd09', 'en', 1, 'https://ror.org/020wtkd09 South African Council for Natural Scientific Professions Suid-Afrikaanse Raad vir Natuur Wetenskaplike Professies'),
(91734, 'https://ror.org/021088259', 'en', 1, 'https://ror.org/021088259 SEO Amsterdam Economics SEO Economisch Onderzoek'),
(91735, 'https://ror.org/0213qq237', 'fr', 0, 'https://ror.org/0213qq237 Laboratoire Adaptations Travail-Individu'),
(91736, 'https://ror.org/02141gz69', 'en', 1, 'https://ror.org/02141gz69 ESC Clermont Business School'),
(91737, 'https://ror.org/02145de51', 'no_lang_code', 1, 'https://ror.org/02145de51 Dairy Australia (Australia)'),
(91738, 'https://ror.org/0215gxf82', 'fr', 1, 'https://ror.org/0215gxf82 Service Public de Wallonie'),
(91739, 'https://ror.org/0217jep24', 'en', 1, 'https://ror.org/0217jep24 Islamic American University'),
(91740, 'https://ror.org/0217r7k24', 'en', 1, 'https://ror.org/0217r7k24 Technological University Loikaw'),
(91741, 'https://ror.org/0218fnh04', 'en', 1, 'https://ror.org/0218fnh04 Pediatric Epilepsy Surgery Alliance'),
(91742, 'https://ror.org/021abm713', 'en', 1, 'https://ror.org/021abm713 Mamlaka ya Usimamizi wa Wanyamapori Tanzania Wildlife Management Authority'),
(91743, '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'),
(91744, 'https://ror.org/021atz428', 'en', 1, 'https://ror.org/021atz428 National Institute of Clean and Low-Carbon Energy åŒ—äŗ¬ä½Žē¢³ęø…ę“čƒ½ęŗē ”ē©¶ę‰€'),
(91745, 'https://ror.org/021b1zt89', 'es', 1, 'https://ror.org/021b1zt89 Ministerio de Desarrollo Rural y Tierras Ministry of Rural Development and Lands'),
(91746, 'https://ror.org/021bqge38', 'en', 1, 'https://ror.org/021bqge38 St. Mary''s University in Juba'),
(91747, 'https://ror.org/021f6nx58', 'fr', 0, 'https://ror.org/021f6nx58 Laboratoire de Neurosciences IntƩgratives et Adaptatives'),
(91748, 'https://ror.org/021gat914', 'en', 1, 'https://ror.org/021gat914 South African Association of Botanists Suid-Afrikaanse Vereeniging van Plantkundiges'),
(91749, 'https://ror.org/021h2hc85', 'en', 1, 'https://ror.org/021h2hc85 Colorado Water Center'),
(91750, 'https://ror.org/021hb4c69', 'fr', 1, 'https://ror.org/021hb4c69 Centre de Recherche et d''Ɖtudes Germaniques'),
(91751, 'https://ror.org/021hxpr45', 'ro', 1, 'https://ror.org/021hxpr45 Institute of Agricultural Economics Institutul de Economie Agrara'),
(91752, 'https://ror.org/021k8f904', 'es', 1, 'https://ror.org/021k8f904 Universidad Paccioli de Córdoba'),
(91753, 'https://ror.org/021kbpv53', 'en', 1, 'https://ror.org/021kbpv53 New Zealand’s Biological Heritage Ngā Koiora Tuku Iho'),
(91754, 'https://ror.org/021mnqw37', 'en', 1, 'https://ror.org/021mnqw37 The Linnean Society of New South Wales'),
(91755, 'https://ror.org/021pnpq62', 'no_lang_code', 0, 'https://ror.org/021pnpq62 Kvaerner (United Kingdom)'),
(91756, 'https://ror.org/021rr7t48', 'es', 1, 'https://ror.org/021rr7t48 Instituto de Investigaciones BioquĆ­micas de BahĆ­a Blanca, CONICET-UNS'),
(91757, 'https://ror.org/021sjst25', 'no_lang_code', 1, 'https://ror.org/021sjst25 Legrand (France)'),
(91758, 'https://ror.org/021vtsa49', 'en', 1, 'https://ror.org/021vtsa49 Aero Institute'),
(91759, 'https://ror.org/021wm7p51', 'en', 1, 'https://ror.org/021wm7p51 Council of Scientific and Industrial Research ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤ą¤µą¤‚ ą¤”ą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø परिषद ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ą®• ą®†ą®ÆąÆą®µąÆ ą®®ą®©ąÆą®±ą®®ąÆ ą°¶ą°¾ą°øą±ą°¤ą±ą°°ą±€ą°Æ మరియు ą°Ŗą°¾ą°°ą°æą°¶ą±ą°°ą°¾ą°®ą°æą°• పరిశోధనా ą°Ŗą°°ą°æą°·ą°¤ą±ą°¤ą± ą“•ąµ—ąµŗą“øą“æąµ½ ą““ą“«ąµ ą“øą“Æą“Øąµą“±ą“æą“«ą“æą“•ąµ ą“†ąµ»ą“”ąµ ą“‡ąµ»ą“”ą“øąµą“Ÿąµą“°ą“æą“Æąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ'),
(91760, 'https://ror.org/021ydgj53', 'de', 1, 'https://ror.org/021ydgj53 Zentrum für Sportmedizin der Bundeswehr'),
(91761, 'https://ror.org/021zxbz90', 'no_lang_code', 0, 'https://ror.org/021zxbz90 Filter Sensing Technologies (United States)'),
(91762, 'https://ror.org/02260en58', 'tr', 1, 'https://ror.org/02260en58 Antalya Belek University Antalya Belek Üni̇versi̇tesi̇'),
(91763, 'https://ror.org/0227txs74', 'en', 1, 'https://ror.org/0227txs74 Ivvavik National Park Parc national Ivvavik'),
(91764, 'https://ror.org/0228cyp78', 'fr', 1, 'https://ror.org/0228cyp78 Institut de MƩdecine et d''EpidƩmiologie Africaines'),
(91765, 'https://ror.org/02295tc31', 'en', 1, 'https://ror.org/02295tc31 NOAA Geostationary Operation Environmental Satellite-R Series'),
(91766, 'https://ror.org/022abst40', 'en', 1, 'https://ror.org/022abst40 Centre for Development of Advanced Computing ą¤øą„€-ą¤”ą„…ą¤• ą¤øą„€-ą¤”ą„ˆą¤• ą®šą®æą®Ÿą®¾ą®•ąÆ ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“”ąµ†ą“µą“²ą“Ŗąµą“®ąµ†ą“Øąµą“±ąµ ą““ą“«ąµ ą“…ą“”ąµą“µą“¾ąµ»ą“øąµą“”ąµ ą“•ą“®ąµą“Ŗąµą“Æąµ‚ą“Ÿąµą“Ÿą“æą“™ąµą“™ąµ'),
(91767, 'https://ror.org/022adkr07', 'no_lang_code', 1, 'https://ror.org/022adkr07 Yacimientos PetrolĆ­feros Fiscales'),
(91768, 'https://ror.org/022b8mr96', 'pt', 1, 'https://ror.org/022b8mr96 Fundação para o Desenvolvimento da UNESP'),
(91769, 'https://ror.org/022bk5x30', 'no_lang_code', 1, 'https://ror.org/022bk5x30 IMBIC (United States)'),
(91770, 'https://ror.org/022cvpj02', 'en', 1, 'https://ror.org/022cvpj02 University of Tokyo Hospital ę±äŗ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(91771, 'https://ror.org/022d03y10', 'en', 1, 'https://ror.org/022d03y10 P.M.N.M. Dental College and Hospital'),
(91772, 'https://ror.org/022d75229', 'en', 1, 'https://ror.org/022d75229 NOAA National Marine Fisheries Service Southwest Fisheries Science Center'),
(91773, 'https://ror.org/022dv3188', 'de', 1, 'https://ror.org/022dv3188 Berlin-Institut für Bevölkerung und Entwicklung'),
(91774, 'https://ror.org/022ethc91', 'en', 1, 'https://ror.org/022ethc91 Southern Research Station'),
(91775, 'https://ror.org/022h0kb08', 'de', 1, 'https://ror.org/022h0kb08 Ozeaneum Stralsund'),
(91776, 'https://ror.org/022hhqs29', 'en', 1, 'https://ror.org/022hhqs29 Utah Department of Transportation'),
(91777, 'https://ror.org/022j9ve58', 'en', 1, 'https://ror.org/022j9ve58 Institute of Nanoscience and Nanotechnology'),
(91778, 'https://ror.org/022jjvb64', 'en', 1, 'https://ror.org/022jjvb64 Biomedical Research Foundation'),
(91779, 'https://ror.org/022jz8688', 'en', 1, 'https://ror.org/022jz8688 York University'),
(91780, 'https://ror.org/022kmmb78', 'es', 1, 'https://ror.org/022kmmb78 Universidad San Marcos'),
(91781, 'https://ror.org/022mm5v69', 'en', 1, 'https://ror.org/022mm5v69 Northwestern University Settlement Association'),
(91782, 'https://ror.org/022mwqy43', 'en', 1, 'https://ror.org/022mwqy43 Jilin Academy of Agricultural Sciences å‰ęž—ēœå†œäøšē§‘å­¦é™¢'),
(91783, 'https://ror.org/022my8t07', 'fr', 0, 'https://ror.org/022my8t07 Laboratoire d’Informatique Fondamentale de Marseille'),
(91784, 'https://ror.org/022nvaw58', 'en', 1, 'https://ror.org/022nvaw58 Baoding No.1 Central Hospital äæå®šåø‚ē¬¬äø€äø­åæƒåŒ»é™¢'),
(91785, 'https://ror.org/022nw7z78', 'en', 1, 'https://ror.org/022nw7z78 Northwestern Polytechnic'),
(91786, 'https://ror.org/022pm7h15', 'en', 0, 'https://ror.org/022pm7h15 Health Protection Agency'),
(91787, 'https://ror.org/022qcpx83', 'no_lang_code', 1, 'https://ror.org/022qcpx83 AKHAN Semiconductor (United States)'),
(91788, 'https://ror.org/022qmyy53', 'en', 1, 'https://ror.org/022qmyy53 Research Institute for Advanced Computer Science'),
(91789, 'https://ror.org/022rdnn95', 'pt', 1, 'https://ror.org/022rdnn95 Programa Operacional TemƔtico Factores de Competitividade'),
(91790, 'https://ror.org/022rwzq94', 'en', 1, 'https://ror.org/022rwzq94 Climate Service Center'),
(91791, 'https://ror.org/022scmy89', 'fr', 1, 'https://ror.org/022scmy89 Sciences Po Toulouse'),
(91792, 'https://ror.org/022sw4578', 'en', 1, 'https://ror.org/022sw4578 Nationaal Lucht- en Ruimtevaartlaboratorium Netherlands Aerospace Centre'),
(91793, 'https://ror.org/022v2jn96', 'no_lang_code', 1, 'https://ror.org/022v2jn96 J2 Light (United States)'),
(91794, 'https://ror.org/022xyn875', 'en', 1, 'https://ror.org/022xyn875 Institute of Bioengineering and Nanotechnology'),
(91795, 'https://ror.org/0235zh559', 'en', 1, 'https://ror.org/0235zh559 NOAA National Ice Center'),
(91796, 'https://ror.org/023744w94', 'no_lang_code', 1, 'https://ror.org/023744w94 Cogent Biosciences (United States)'),
(91797, 'https://ror.org/0238pcf92', 'en', 1, 'https://ror.org/0238pcf92 Worcester County Public Schools'),
(91798, 'https://ror.org/023a3sx48', 'ro', 1, 'https://ror.org/023a3sx48 Universitatea Mihae Eminescu Timisoara'),
(91799, 'https://ror.org/023adpj10', 'en', 1, 'https://ror.org/023adpj10 P S Jones Middle School'),
(91800, 'https://ror.org/023bvkf33', 'en', 1, 'https://ror.org/023bvkf33 Schweizerische ZahnƤrzte Gesellschaft Swiss Dental Association'),
(91801, 'https://ror.org/023cthn35', 'es', 1, 'https://ror.org/023cthn35 Universidad IndĆ­gena de Venezuela'),
(91802, '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'),
(91803, 'https://ror.org/023esdc37', 'en', 1, 'https://ror.org/023esdc37 African Wildlife Foundation'),
(91804, 'https://ror.org/023f5cj14', 'en', 1, 'https://ror.org/023f5cj14 Finnish Advanced Microscopy Node'),
(91805, 'https://ror.org/023fjv693', 'en', 1, 'https://ror.org/023fjv693 Center for Architecture Foundation'),
(91806, 'https://ror.org/023j60p87', 'es', 1, 'https://ror.org/023j60p87 Academia Joven de EspaƱa'),
(91807, 'https://ror.org/023jwkg52', 'en', 1, 'https://ror.org/023jwkg52 Banner Alzheimer’s Institute'),
(91808, 'https://ror.org/023k8z302', 'fr', 1, 'https://ror.org/023k8z302 Fondation du CollĆØge de France'),
(91809, 'https://ror.org/023n3xx64', 'en', 0, 'https://ror.org/023n3xx64 Office of the Assistant Secretary for Health'),
(91810, 'https://ror.org/023nx7r16', 'en', 1, 'https://ror.org/023nx7r16 Carolina University of Theology'),
(91811, 'https://ror.org/023qdcg29', 'no_lang_code', 1, 'https://ror.org/023qdcg29 Airbus (France)'),
(91812, 'https://ror.org/023rffy11', 'en', 1, 'https://ror.org/023rffy11 RIKEN Center for Biosystems Dynamics Research å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ē”Ÿå‘½ę©Ÿčƒ½ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(91813, 'https://ror.org/023rr0h32', 'fr', 1, 'https://ror.org/023rr0h32 Ecole SupƩrieure en GƩnie Electrique et EnergƩtique d''Oran'),
(91814, 'https://ror.org/023sgdn25', 'en', 1, 'https://ror.org/023sgdn25 NOAA Near Earth Orbit Network'),
(91815, 'https://ror.org/023swxh49', 'en', 1, 'https://ror.org/023swxh49 Armed Forces Research Institute of Medical Science ąøŖąø–ąø²ąøšąø±ąø™ąø§ąø“ąøˆąø±ąø¢ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąøąø²ąø£ą¹ąøžąø—ąø¢ą¹Œąø—ąø«ąø²ąø£'),
(91816, 'https://ror.org/023t1e924', 'en', 1, 'https://ror.org/023t1e924 Institute of Philosophy and Sociology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŃŠ¾Ń†ŠøŠ¾Š»Š¾Š³ŠøŃ'),
(91817, 'https://ror.org/023xp4j45', 'no_lang_code', 0, 'https://ror.org/023xp4j45 Ingeniería Energética y de Contaminación (Spain)'),
(91818, 'https://ror.org/023z9s103', 'no_lang_code', 1, 'https://ror.org/023z9s103 Dynasol Group (Spain)'),
(91819, 'https://ror.org/023zp7889', 'en', 0, 'https://ror.org/023zp7889 Arab Open University'),
(91820, 'https://ror.org/024264v67', 'no_lang_code', 1, 'https://ror.org/024264v67 Kyowa Kirin (United States)'),
(91821, 'https://ror.org/02459py43', 'en', 1, 'https://ror.org/02459py43 St Michaels Hospital'),
(91822, 'https://ror.org/0245cg223', 'en', 1, 'https://ror.org/0245cg223 Albert-Ludwigs-UniversitƤt Freiburg University of Freiburg'),
(91823, 'https://ror.org/024828251', 'no_lang_code', 0, 'https://ror.org/024828251 Holcim (Canada)'),
(91824, 'https://ror.org/0248n9g36', 'en', 1, 'https://ror.org/0248n9g36 New Mexico Department of Game and Fish'),
(91825, 'https://ror.org/0248pa505', 'en', 1, 'https://ror.org/0248pa505 AMAQUEN Foundation'),
(91826, 'https://ror.org/0249g7f28', 'en', 1, 'https://ror.org/0249g7f28 Genome Atlantic'),
(91827, 'https://ror.org/0249rpb20', 'en', 1, 'https://ror.org/0249rpb20 Mississippi Space Grant Consortium'),
(91828, 'https://ror.org/024b57v39', 'en', 1, 'https://ror.org/024b57v39 Kosin University ź³ ģ‹ ėŒ€ķ•™źµ'),
(91829, 'https://ror.org/024crf014', 'en', 1, 'https://ror.org/024crf014 NOAA Office of Aquaculture'),
(91830, 'https://ror.org/024czvm93', 'no_lang_code', 1, 'https://ror.org/024czvm93 Sapporo Hokuyu Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ—ę„”ä¼š'),
(91831, 'https://ror.org/024e1pj18', 'no_lang_code', 1, 'https://ror.org/024e1pj18 OmniActive Health Technologies (United States)'),
(91832, 'https://ror.org/024e3wj88', 'no_lang_code', 1, 'https://ror.org/024e3wj88 Shaanxi Provincial Land Engineering Construction Group é™•č„æēœåœŸåœ°å·„ēØ‹å»ŗč®¾é›†å›¢ęœ‰é™č“£ä»»å…¬åø'),
(91833, 'https://ror.org/024fb7528', 'de', 1, 'https://ror.org/024fb7528 Max-Reger-Institut'),
(91834, 'https://ror.org/024hyk965', 'en', 1, 'https://ror.org/024hyk965 Darwin Initiative'),
(91835, 'https://ror.org/024jrkp82', 'en', 1, 'https://ror.org/024jrkp82 The HDF Group'),
(91836, 'https://ror.org/024mh1n48', 'es', 1, 'https://ror.org/024mh1n48 Universidad de Ciencias MƩdicas de Pinar del Rƭo'),
(91837, 'https://ror.org/024pbfj84', 'es', 1, 'https://ror.org/024pbfj84 LA Referencia'),
(91838, 'https://ror.org/024qczd07', 'en', 1, 'https://ror.org/024qczd07 New York State Foundation for Science, Technology and Innovation'),
(91839, 'https://ror.org/024tqtx80', 'en', 1, 'https://ror.org/024tqtx80 Edna Bailey Sussman Foundation'),
(91840, 'https://ror.org/024tyzp39', 'no_lang_code', 1, 'https://ror.org/024tyzp39 Gedeon Programmes (France)'),
(91841, 'https://ror.org/024v0gx67', 'en', 1, 'https://ror.org/024v0gx67 Guangxi University of Chinese Medicine å¹æč„æäø­åŒ»čÆå¤§å­¦'),
(91842, 'https://ror.org/024x69p90', 'en', 1, 'https://ror.org/024x69p90 Kala-Azar Medical Research Centre'),
(91843, 'https://ror.org/024yn9x21', 'no_lang_code', 1, 'https://ror.org/024yn9x21 E-Lyte Innovations GmbH (Germany)'),
(91844, 'https://ror.org/024yvgp47', 'en', 1, 'https://ror.org/024yvgp47 Vardhaman College of Engineering'),
(91845, 'https://ror.org/0250t7374', 'es', 1, 'https://ror.org/0250t7374 Universidad Federico HenrĆ­quez y Carvajal'),
(91846, 'https://ror.org/0251p9z15', 'en', 0, 'https://ror.org/0251p9z15 Gediz University Gediz Üniversitesi'),
(91847, 'https://ror.org/02555ta58', 'en', 1, 'https://ror.org/02555ta58 Childhood Cancer Canada Foundation'),
(91848, 'https://ror.org/02558xx03', 'id', 1, 'https://ror.org/02558xx03 Universitas Dhyana Pura'),
(91849, 'https://ror.org/0256kw398', 'en', 1, 'https://ror.org/0256kw398 Birzeit University Ų¬Ų§Ł…Ų¹Ų© بيرزيت'),
(91850, 'https://ror.org/0257v3m41', 'en', 1, 'https://ror.org/0257v3m41 Catholic University in Erbil الجامعة Ų§Ł„ŁƒŲ§Ų«ŁˆŁ„ŁŠŁƒŁŠŲ© في Ų§Ų±ŲØŁŠŁ„'),
(91851, 'https://ror.org/0258zp205', 'de', 1, 'https://ror.org/0258zp205 Anton Bruckner Institut Linz'),
(91852, 'https://ror.org/02598xw28', 'en', 1, 'https://ror.org/02598xw28 Malacological Society of London'),
(91853, 'https://ror.org/0259erg57', 'en', 1, 'https://ror.org/0259erg57 American Sheep Industry Association'),
(91854, 'https://ror.org/025ae7a15', 'es', 1, 'https://ror.org/025ae7a15 Instituto de Estudios Sociales'),
(91855, 'https://ror.org/025e8aw85', 'de', 1, 'https://ror.org/025e8aw85 Comenius-Institut'),
(91856, 'https://ror.org/025e8m761', 'en', 1, 'https://ror.org/025e8m761 Minnesota State University Student Association'),
(91857, 'https://ror.org/025f1e779', 'no_lang_code', 1, 'https://ror.org/025f1e779 Merz (Germany)'),
(91858, 'https://ror.org/025h3d465', 'no_lang_code', 1, 'https://ror.org/025h3d465 PPG Industries (United States)'),
(91859, 'https://ror.org/025kncj27', 'en', 1, 'https://ror.org/025kncj27 National Save the Sea Turtle Foundation'),
(91860, 'https://ror.org/025q0f986', 'en', 0, 'https://ror.org/025q0f986 Unmanned Aerial Vehicle Collaborative'),
(91861, 'https://ror.org/025s2k192', 'no_lang_code', 1, 'https://ror.org/025s2k192 Scientific Center of Innovative Research'),
(91862, 'https://ror.org/025sbr097', 'en', 1, 'https://ror.org/025sbr097 Royal Society of Chemistry'),
(91863, 'https://ror.org/025t4nz25', 'ro', 1, 'https://ror.org/025t4nz25 Universitatea de Stat ā€žBogdan Petriceicu Hasdeu" din Cahul Кагульский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени БогГана ŠŸŠµŃ‚Ń€ŠøŃ‡ŠµŠ¹ŠŗŃƒ ЄашГеу'),
(91864, 'https://ror.org/025xxgk48', 'cs', 1, 'https://ror.org/025xxgk48 Sdružení Pro Rozvoj Moravskoslezského Kraje'),
(91865, 'https://ror.org/025yypj46', 'en', 1, 'https://ror.org/025yypj46 National University Cancer Institute, Singapore'),
(91866, 'https://ror.org/025zgmc56', 'en', 1, 'https://ror.org/025zgmc56 Gray''s Inn'),
(91867, 'https://ror.org/0260j1g46', 'en', 1, 'https://ror.org/0260j1g46 Universidad de Massachusetts University of Massachusetts System UniversitƩ du massachusetts'),
(91868, 'https://ror.org/026252h27', 'en', 1, 'https://ror.org/026252h27 Georgia Ornithological Society'),
(91869, 'https://ror.org/0262ezr32', 'no_lang_code', 1, 'https://ror.org/0262ezr32 Accenture (Germany)');
INSERT INTO `rors` VALUES
(91870, '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 Универзитет за информатички науки Šø технологии Дв. Апостол Павле'),
(91871, 'https://ror.org/0264zxa45', 'en', 1, 'https://ror.org/0264zxa45 Tohoku Medical and Pharmaceutical University ę±åŒ—č–¬ē§‘å¤§å­¦'),
(91872, 'https://ror.org/0265ntg49', 'en', 1, 'https://ror.org/0265ntg49 Association of Universities and Colleges of Canada UniversitƩs Canada'),
(91873, 'https://ror.org/0265xav62', 'en', 1, 'https://ror.org/0265xav62 Dutch postgraduate School for Art History'),
(91874, 'https://ror.org/0266nxj03', 'es', 1, 'https://ror.org/0266nxj03 Hospital Universitario Mayor, Mederi'),
(91875, 'https://ror.org/0266sez77', 'id', 1, 'https://ror.org/0266sez77 Pertamina University Universitas Pertamina'),
(91876, 'https://ror.org/0267f2q17', 'en', 0, 'https://ror.org/0267f2q17 National University of Water and Environmental Engineering ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного госпоГарства та ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń'),
(91877, 'https://ror.org/0267htk20', 'en', 0, 'https://ror.org/0267htk20 Arts South Australia'),
(91878, 'https://ror.org/026873d40', 'en', 1, 'https://ror.org/026873d40 Indian Institute of Information Technology Sri City ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¶ą„ą¤°ą„€ ą¤øą¤æą¤Ÿą„€'),
(91879, 'https://ror.org/0269ne204', 'en', 1, 'https://ror.org/0269ne204 Miami University Dolibois European Center'),
(91880, 'https://ror.org/026b7jq90', 'no_lang_code', 1, 'https://ror.org/026b7jq90 b.geos'),
(91881, 'https://ror.org/026egkx38', 'id', 1, 'https://ror.org/026egkx38 Institut Agama Islam Negeri Sorong'),
(91882, 'https://ror.org/026exgg05', 'fr', 1, 'https://ror.org/026exgg05 Laboratoire d’Economie de Dauphine'),
(91883, 'https://ror.org/026f3t255', 'en', 1, 'https://ror.org/026f3t255 Delaware General Assembly'),
(91884, 'https://ror.org/026fcde03', 'en', 0, 'https://ror.org/026fcde03 Institute of Commerce and Business'),
(91885, 'https://ror.org/026g3h106', 'en', 1, 'https://ror.org/026g3h106 UCH Macmillan Cancer Centre, University College Hospital Macmillan Cancer Centre'),
(91886, 'https://ror.org/026j6fv33', 'en', 1, 'https://ror.org/026j6fv33 Cixian People''s Hospital'),
(91887, 'https://ror.org/026m7hh11', 'no_lang_code', 1, 'https://ror.org/026m7hh11 Consensus Pharmaceuticals (United States)'),
(91888, 'https://ror.org/026pg9j08', 'en', 1, 'https://ror.org/026pg9j08 Toronto General Hospital'),
(91889, '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'),
(91890, 'https://ror.org/026sv7t11', 'en', 1, 'https://ror.org/026sv7t11 Qingdao National Laboratory for Marine Science and Technology é’å²›ęµ·ę“‹ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶å®žéŖŒå®¤'),
(91891, 'https://ror.org/026t0fx73', 'en', 1, 'https://ror.org/026t0fx73 Veterinary Medical Teaching Hospital'),
(91892, 'https://ror.org/026t7ep26', 'no_lang_code', 1, 'https://ror.org/026t7ep26 Curium (France)'),
(91893, 'https://ror.org/026t9hg14', 'en', 1, 'https://ror.org/026t9hg14 International Higher School of Medicine ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š’Ń‹ŃŃˆŠ°Ń Школа ŠœŠµŠ“ицины Š­Š» аралык Š–Š¾Š³Š¾Ń€ŠŗŃƒ ŠœŠµŠ“ŠøŃ†ŠøŠ½Š°Š»Ń‹Šŗ ŠœŠµŠŗŃ‚ŠµŠ±Šø'),
(91894, 'https://ror.org/026tjcs76', 'en', 0, 'https://ror.org/026tjcs76 National Metallurgical Academy of Ukraine ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Украины ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³Ń–Š¹Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України'),
(91895, 'https://ror.org/026v1ze26', 'en', 1, 'https://ror.org/026v1ze26 National Institute for Materials Science å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē‰©č³Ŗćƒ»ęę–™ē ”ē©¶ę©Ÿę§‹'),
(91896, 'https://ror.org/026xbkx09', 'en', 0, 'https://ror.org/026xbkx09 Stenden Hogeschool Stenden University of Applied Sciences'),
(91897, 'https://ror.org/026xyd213', 'en', 0, 'https://ror.org/026xyd213 Department of State Development'),
(91898, 'https://ror.org/0271njn83', 'en', 1, 'https://ror.org/0271njn83 Banff National Park Parc national Banff'),
(91899, 'https://ror.org/0271rds65', 'no_lang_code', 1, 'https://ror.org/0271rds65 Invigos'),
(91900, 'https://ror.org/0271st670', 'fr', 1, 'https://ror.org/0271st670 Quebec Bio-Imaging Network RƩseau en Bio-Imagerie du Quebec'),
(91901, 'https://ror.org/0273vkt78', 'en', 1, 'https://ror.org/0273vkt78 Epicentre Uganda'),
(91902, 'https://ror.org/0274qx383', 'fr', 1, 'https://ror.org/0274qx383 Centre SĆØvres'),
(91903, 'https://ror.org/0275a3771', 'en', 1, 'https://ror.org/0275a3771 Wyoming Wildlife and Natural Resource Trust'),
(91904, 'https://ror.org/0275hyc16', 'en', 1, 'https://ror.org/0275hyc16 Apex Foundation'),
(91905, 'https://ror.org/02772kk97', 'en', 1, 'https://ror.org/02772kk97 Japan Meteorological Agency 気豔庁'),
(91906, 'https://ror.org/0277krk64', 'en', 1, 'https://ror.org/0277krk64 Lukuru Foundation'),
(91907, 'https://ror.org/0278hns33', 'en', 1, 'https://ror.org/0278hns33 Institut für Diabetesforschung Institute of Diabetes Research'),
(91908, 'https://ror.org/027arfy53', 'no', 1, 'https://ror.org/027arfy53 GenƘk'),
(91909, 'https://ror.org/027b1sp84', 'en', 1, 'https://ror.org/027b1sp84 TEPCO Memorial Foundation ę±é›»čØ˜åæµē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(91910, 'https://ror.org/027bk6125', 'no_lang_code', 1, 'https://ror.org/027bk6125 Instrumentation Technologies (Slovenia)'),
(91911, 'https://ror.org/027fvn224', 'en', 1, 'https://ror.org/027fvn224 The Kidney Fund'),
(91912, 'https://ror.org/027hbqy23', 'es', 1, 'https://ror.org/027hbqy23 Fundación Universitaria Internacional de Colombia'),
(91913, 'https://ror.org/027k65916', 'en', 1, 'https://ror.org/027k65916 Jet Propulsion Laboratory Laboratorio de Propulsión a Chorro'),
(91914, 'https://ror.org/027mhsx91', 'en', 1, 'https://ror.org/027mhsx91 American Society of Safety Professionals'),
(91915, 'https://ror.org/027n40j28', 'en', 0, 'https://ror.org/027n40j28 Clarion University'),
(91916, 'https://ror.org/027nqv620', 'no_lang_code', 1, 'https://ror.org/027nqv620 Advanced hCMOS Systems'),
(91917, 'https://ror.org/027q9sx94', 'fr', 1, 'https://ror.org/027q9sx94 Universite des Sciences AppliquƩe et Management'),
(91918, 'https://ror.org/027snw288', 'es', 1, 'https://ror.org/027snw288 Universidad Pedagógica de Pinar del Río Rafael María de Mendive'),
(91919, 'https://ror.org/027vj4x92', 'no_lang_code', 1, 'https://ror.org/027vj4x92 Sanofi (United States)'),
(91920, 'https://ror.org/027wfea20', 'en', 1, 'https://ror.org/027wfea20 Ambassade de France Ć  Washington, D.C. Embassy of France in Washington, D.C'),
(91921, 'https://ror.org/027ybr913', 'en', 1, 'https://ror.org/027ybr913 Shore Memorial Hospital'),
(91922, 'https://ror.org/027ymyq71', 'en', 1, 'https://ror.org/027ymyq71 Finnish Transport Safety Agency Liikenteen turvallisuusvirasto Trafi'),
(91923, 'https://ror.org/028171j94', 'pt', 1, 'https://ror.org/028171j94 Unimed Curitiba'),
(91924, 'https://ror.org/0287mpm73', 'nl', 1, 'https://ror.org/0287mpm73 Koninklijke Nederlandse Chemische Vereniging'),
(91925, 'https://ror.org/02881dh04', 'en', 1, 'https://ror.org/02881dh04 Neotropical Bird Club'),
(91926, 'https://ror.org/02885vs25', 'no_lang_code', 1, 'https://ror.org/02885vs25 Fluor (United States)'),
(91927, 'https://ror.org/0288wcg94', 'en', 0, 'https://ror.org/0288wcg94 ARC Centre of Excellence for Climate System Science'),
(91928, 'https://ror.org/0288z4m73', 'no_lang_code', 1, 'https://ror.org/0288z4m73 Newron Pharmaceuticals (Sweden)'),
(91929, 'https://ror.org/02891nv36', 'en', 1, 'https://ror.org/02891nv36 NOAA Office of Observations'),
(91930, 'https://ror.org/028979q34', 'no_lang_code', 1, 'https://ror.org/028979q34 EMD Group (Canada)'),
(91931, 'https://ror.org/0289t9g81', 'en', 1, 'https://ror.org/0289t9g81 Minderoo Foundation'),
(91932, 'https://ror.org/028aqvb72', 'no_lang_code', 1, 'https://ror.org/028aqvb72 ConocoPhillips (Canada)'),
(91933, 'https://ror.org/028atc283', 'fr', 0, 'https://ror.org/028atc283 Management et Ɖconomie Lyon Saint-Ɖtienne'),
(91934, 'https://ror.org/028cac364', 'no_lang_code', 0, 'https://ror.org/028cac364 MSL Group (Spain)'),
(91935, 'https://ror.org/028cc2127', 'en', 0, 'https://ror.org/028cc2127 Honda Research Institute Europe'),
(91936, 'https://ror.org/028cw6449', 'en', 1, 'https://ror.org/028cw6449 Forillon National Park Parc national de Forillon'),
(91937, 'https://ror.org/028dpnn69', 'no_lang_code', 1, 'https://ror.org/028dpnn69 Al Invest (Czechia)'),
(91938, 'https://ror.org/028e6rb32', 'en', 1, 'https://ror.org/028e6rb32 Ministry of Antiquities بوابة وزارة الاثار Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(91939, 'https://ror.org/028eykw65', 'no_lang_code', 0, 'https://ror.org/028eykw65 Integrated Photonics (United States)'),
(91940, 'https://ror.org/028gnmj13', 'fr', 1, 'https://ror.org/028gnmj13 LittƩrature et poƩtique comparƩes'),
(91941, 'https://ror.org/028jcy673', 'en', 1, 'https://ror.org/028jcy673 Romanian-American University Universitatea Româno-Americană'),
(91942, 'https://ror.org/028jp5z02', 'en', 1, 'https://ror.org/028jp5z02 Korea Food Research Institute ķ•œźµ­ģ‹ķ’ˆģ—°źµ¬ģ›'),
(91943, 'https://ror.org/028k5tf66', 'en', 1, 'https://ror.org/028k5tf66 Nebraska State Office of the Governor'),
(91944, 'https://ror.org/028ka0n85', 'pt', 1, 'https://ror.org/028ka0n85 Federal University of Sergipe Universidade Federal de Sergipe'),
(91945, 'https://ror.org/028m52w57', 'en', 1, 'https://ror.org/028m52w57 SINTEF Digital'),
(91946, 'https://ror.org/028p42702', 'no_lang_code', 1, 'https://ror.org/028p42702 BioOne'),
(91947, 'https://ror.org/028qka468', 'no_lang_code', 1, 'https://ror.org/028qka468 UCB Pharma (United States)'),
(91948, 'https://ror.org/028rasm92', 'fr', 1, 'https://ror.org/028rasm92'),
(91949, 'https://ror.org/028svp844', 'fr', 1, 'https://ror.org/028svp844 UniversitƩ de Kisangani'),
(91950, 'https://ror.org/028vtqb15', 'en', 1, 'https://ror.org/028vtqb15 Birla Institute of Technology, Mesra बिरला ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(91951, 'https://ror.org/028x3cg40', 'en', 1, 'https://ror.org/028x3cg40 Isabel Gotzkowsky and Friends'),
(91952, 'https://ror.org/028yaa073', 'en', 1, 'https://ror.org/028yaa073 Carlos Hilado Memorial State University'),
(91953, 'https://ror.org/028ynny55', 'es', 1, 'https://ror.org/028ynny55 ClĆ­nica Alemana The German Hospital of Santiago'),
(91954, 'https://ror.org/028z9kw20', 'en', 1, 'https://ror.org/028z9kw20 Hogeschool Utrecht University of Applied Sciences Utrecht'),
(91955, 'https://ror.org/028zcv790', 'en', 1, 'https://ror.org/028zcv790 Nora Eccles Treadwell Foundation'),
(91956, 'https://ror.org/028zdr819', 'no_lang_code', 1, 'https://ror.org/028zdr819 SandboxAQ'),
(91957, 'https://ror.org/028znnm42', 'en', 1, 'https://ror.org/028znnm42 DASSI - Data Archive for Social Sciences in Italy'),
(91958, 'https://ror.org/028zspe92', 'en', 1, 'https://ror.org/028zspe92 VA Pacific Islands Health Care System'),
(91959, 'https://ror.org/0290yjn87', 'fr', 1, 'https://ror.org/0290yjn87 Centre de Recherche sur les IdentitƩs, les Nations et l''InterculturalitƩ'),
(91960, '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'),
(91961, 'https://ror.org/0293c0n43', 'en', 1, 'https://ror.org/0293c0n43 Prairie Biotic Research'),
(91962, 'https://ror.org/02953vp81', 'en', 1, 'https://ror.org/02953vp81 York District Hospital'),
(91963, 'https://ror.org/0295ry046', 'en', 1, 'https://ror.org/0295ry046 St Grigol Peradze Tbilisi Teaching University'),
(91964, 'https://ror.org/0296s7206', 'en', 1, 'https://ror.org/0296s7206 Vietnam Metrology Institute Viện Đo lĘ°į»ng Việt Nam'),
(91965, 'https://ror.org/0298y8x97', 'es', 1, 'https://ror.org/0298y8x97 Hospital Infantil Dr. Robert Reid Cabral'),
(91966, 'https://ror.org/029c86w95', 'en', 0, 'https://ror.org/029c86w95 Saint-Petersburg State University Information Technologies, Mechanic and Optics'),
(91967, 'https://ror.org/029e5ny19', 'no_lang_code', 1, 'https://ror.org/029e5ny19 Levvel'),
(91968, 'https://ror.org/029g42942', 'en', 1, 'https://ror.org/029g42942 Institute of Nuclear Medicine & Allied Sciences ą¤Øą¤¾ą¤®ą¤æą¤•ą„€ą¤Æ औषिध तऄा ą¤øą¤‚ą¤¬ą¤¦ą„ą¤§ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(91969, 'https://ror.org/029gp4d26', 'en', 1, 'https://ror.org/029gp4d26 Ankara 29 Mayis State Hospital Ankara 29 Mayıs Devlet Hastanesi'),
(91970, 'https://ror.org/029jh9a85', 'id', 1, 'https://ror.org/029jh9a85 Mimika District General Hospital Rumah Sakit Umum Daerah Kabupaten Mimika'),
(91971, 'https://ror.org/029n6xw55', 'en', 1, 'https://ror.org/029n6xw55 Cancer Care Ontario'),
(91972, 'https://ror.org/029pp9z10', 'en', 1, 'https://ror.org/029pp9z10 Johns Hopkins University Applied Physics Laboratory'),
(91973, 'https://ror.org/029pyqp16', 'nl', 1, 'https://ror.org/029pyqp16 Parnassia Groep Academie'),
(91974, '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'),
(91975, 'https://ror.org/029rr4k19', 'it', 1, 'https://ror.org/029rr4k19 INGV Amministrazione Centrale'),
(91976, 'https://ror.org/029st3z03', 'it', 1, 'https://ror.org/029st3z03 Istituto di Radioastronomia di Bologna'),
(91977, 'https://ror.org/029w2re51', 'it', 1, 'https://ror.org/029w2re51 INGV Sezione di Bologna'),
(91978, 'https://ror.org/029ys9z53', 'en', 1, 'https://ror.org/029ys9z53 Changshu No. 2 People''s Hospital åøøē†Ÿåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(91979, 'https://ror.org/029yy6d70', 'en', 1, 'https://ror.org/029yy6d70 Alzheimer Europe'),
(91980, 'https://ror.org/029zvkg32', 'en', 1, 'https://ror.org/029zvkg32 Scientific Education and Research Foundation'),
(91981, 'https://ror.org/02a00xk96', 'no_lang_code', 0, 'https://ror.org/02a00xk96 Kosan Biosciences (United States)'),
(91982, 'https://ror.org/02a0gq659', 'sv', 1, 'https://ror.org/02a0gq659 Svenska MƤssan Swedish Exhibition & Congress Centre'),
(91983, 'https://ror.org/02a0qqh56', 'no_lang_code', 1, 'https://ror.org/02a0qqh56 aixACCT Systems (United States)'),
(91984, 'https://ror.org/02a2cjw65', 'en', 1, 'https://ror.org/02a2cjw65 Australian Plague Locust Commission'),
(91985, 'https://ror.org/02a4f2s68', 'no_lang_code', 1, 'https://ror.org/02a4f2s68 Kentucky Science and Technology Corporation (United States)'),
(91986, 'https://ror.org/02a63xw04', 'fr', 1, 'https://ror.org/02a63xw04 Centre Technique Interprofessionnel des Fruits et LƩgumes'),
(91987, 'https://ror.org/02a7ga636', 'en', 1, 'https://ror.org/02a7ga636 Alexander S. Onassis Foundation'),
(91988, 'https://ror.org/02a7hjv13', 'en', 1, 'https://ror.org/02a7hjv13 G. Harold & Leila Y. Mathers Foundation'),
(91989, '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'),
(91990, 'https://ror.org/02aaqv166', 'en', 1, 'https://ror.org/02aaqv166 Kijevi Egyetem Taras Shevchenko National University of Kyiv Uniwersytet Kijowski Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Тараса Шевченко ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Тараса Шевченка'),
(91991, 'https://ror.org/02acart68', 'en', 1, 'https://ror.org/02acart68 Ames Research Center Centro de Investigación Ames'),
(91992, 'https://ror.org/02af0qw97', 'no_lang_code', 1, 'https://ror.org/02af0qw97 Cisco Systems (Canada)'),
(91993, 'https://ror.org/02af3th35', 'en', 0, 'https://ror.org/02af3th35 Manchester Mental Health and Social Care Trust'),
(91994, 'https://ror.org/02ajbht29', 'en', 1, 'https://ror.org/02ajbht29 NASA Engineering and Safety Center'),
(91995, 'https://ror.org/02ajgy086', 'en', 1, 'https://ror.org/02ajgy086 Henry J. Predolin Foundation for Research in Leukemia'),
(91996, 'https://ror.org/02ak51s72', 'en', 1, 'https://ror.org/02ak51s72 Oakley Mental Health Research Foundation'),
(91997, 'https://ror.org/02ak8fm03', 'de', 1, 'https://ror.org/02ak8fm03 Friedrich-Ebert-Stiftung e.V.'),
(91998, 'https://ror.org/02akmdw70', 'en', 1, 'https://ror.org/02akmdw70 Deccan College of Medical Sciences'),
(91999, 'https://ror.org/02akpm128', 'es', 1, 'https://ror.org/02akpm128 Catholic University of the North Universidad Católica del Norte'),
(92000, 'https://ror.org/02anvmh54', 'es', 1, 'https://ror.org/02anvmh54 Escuela Nacional de Salud PĆŗblica'),
(92001, 'https://ror.org/02apffz65', 'en', 1, 'https://ror.org/02apffz65 NOAA National Marine Fisheries Service Pacific Islands Fisheries Science Center'),
(92002, 'https://ror.org/02apzkd53', 'es', 1, 'https://ror.org/02apzkd53 Instituto Ecuatoriano de Normalización'),
(92003, 'https://ror.org/02aq81f26', 'en', 0, 'https://ror.org/02aq81f26 Power and Water University of Technology دانؓگاه صنعت Ų¢ŲØ و برق'),
(92004, 'https://ror.org/02aqr8687', 'fr', 0, 'https://ror.org/02aqr8687 Laboratoire de Biologie Cellulaire et MolƩculaire du ContrƓle de la ProlifƩration'),
(92005, 'https://ror.org/02asmqs25', 'no_lang_code', 1, 'https://ror.org/02asmqs25 Odyssey Therapeutics (United States)'),
(92006, 'https://ror.org/02atd1296', 'es', 1, 'https://ror.org/02atd1296 Fundación Salud, Ciencia y Tecnologia'),
(92007, 'https://ror.org/02awp8a87', 'tr', 1, 'https://ror.org/02awp8a87 Türkiye Büyük Millet Meclisi'),
(92008, 'https://ror.org/02b06aj60', 'en', 1, 'https://ror.org/02b06aj60 World Association for Disaster and Emergency Medicine'),
(92009, 'https://ror.org/02b1vt080', 'en', 1, 'https://ror.org/02b1vt080 Government College of Engineering, Keonjhar'),
(92010, 'https://ror.org/02b1w6965', 'es', 1, 'https://ror.org/02b1w6965 Escuela Nacional de Administración y Hacienda Pública-Instituto Universitario de Tecnología'),
(92011, 'https://ror.org/02b3hht72', 'en', 1, 'https://ror.org/02b3hht72 Director of National Parks'),
(92012, 'https://ror.org/02b69zv86', 'en', 1, 'https://ror.org/02b69zv86 National University of Arts and Culture Yangon į€šį€‰į€ŗį€€į€»į€±į€øį€™į€¾į€Æ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ ရန်ကုန်'),
(92013, 'https://ror.org/02b82hk77', 'en', 1, 'https://ror.org/02b82hk77 Technical University of Moldova Universitatea Tehnică a Moldovei Технический Университет ŠœŠ¾Š»Š“Š¾Š²Ń‹'),
(92014, 'https://ror.org/02b988t02', 'en', 1, 'https://ror.org/02b988t02 Emek Medical Center ×ž×Ø×›×– רפואי העמק'),
(92015, 'https://ror.org/02ba3pt07', 'en', 0, 'https://ror.org/02ba3pt07 Tammerfors tekniska universitet Tampere University of Technology Tampereen teknillinen yliopisto'),
(92016, 'https://ror.org/02bchch95', 'en', 1, 'https://ror.org/02bchch95 Plant & Food Research'),
(92017, 'https://ror.org/02bddg852', 'en', 1, 'https://ror.org/02bddg852 Mycoplasmoses animales'),
(92018, 'https://ror.org/02be7kf90', 'en', 1, 'https://ror.org/02be7kf90 Technological University Magway'),
(92019, 'https://ror.org/02bezch69', 'fr', 1, 'https://ror.org/02bezch69 Histoire des arts et des reprƩsentations'),
(92020, 'https://ror.org/02bfn4816', 'en', 1, 'https://ror.org/02bfn4816 NOAA Ocean Acidification Program'),
(92021, 'https://ror.org/02bjj9p45', 'en', 1, 'https://ror.org/02bjj9p45 Australian Tropical Herbarium'),
(92022, 'https://ror.org/02bkz8z02', 'no_lang_code', 1, 'https://ror.org/02bkz8z02 Jj X-Ray'),
(92023, 'https://ror.org/02bpnkx55', 'en', 1, 'https://ror.org/02bpnkx55 Taishan University 泰山学院'),
(92024, 'https://ror.org/02bqtvr98', 'en', 1, 'https://ror.org/02bqtvr98 Knowles Teacher Initiative'),
(92025, 'https://ror.org/02brqpg75', 'en', 1, 'https://ror.org/02brqpg75 Jaamacadda Zamzam Zamzam University of Science and Technology'),
(92026, 'https://ror.org/02bs2pe45', 'no_lang_code', 0, 'https://ror.org/02bs2pe45 BIOVIA (United Kingdom)'),
(92027, 'https://ror.org/02bszj235', 'no_lang_code', 1, 'https://ror.org/02bszj235 Korean Drug Co. ź³ ė ¤ģ œģ•½'),
(92028, 'https://ror.org/02btw1564', 'en', 1, 'https://ror.org/02btw1564 China Railway Construction Investment Group Corporation äø­å›½é“å»ŗęŠ•čµ„é›†å›¢ęœ‰é™å…¬åø'),
(92029, 'https://ror.org/02bwk9n38', 'en', 1, 'https://ror.org/02bwk9n38 Chinese Academy of Fishery Sciences äø­å›½ę°“äŗ§ē§‘å­¦ē ”ē©¶é™¢äøœęµ·ę°“äŗ§ē ”ē©¶ę‰€'),
(92030, 'https://ror.org/02bwxev54', 'de', 1, 'https://ror.org/02bwxev54 Theologische Hochschule Elstal'),
(92031, 'https://ror.org/02bypky31', 'en', 1, 'https://ror.org/02bypky31 NOAA National Marine Fisheries Service Pacific Islands Regional Office'),
(92032, 'https://ror.org/02bze9d64', 'en', 0, 'https://ror.org/02bze9d64 Easter Seals North Texas'),
(92033, 'https://ror.org/02c1can85', 'en', 1, 'https://ror.org/02c1can85 Bureau of Standards Jamaica'),
(92034, 'https://ror.org/02c1gbw96', 'en', 0, 'https://ror.org/02c1gbw96 Blue Mountains International Hotel Management School'),
(92035, 'https://ror.org/02c1jcc15', 'en', 1, 'https://ror.org/02c1jcc15 CK-CARE Centre de Recherche Christine Kühne sur l''Allergie et l’Education'),
(92036, 'https://ror.org/02c2v6k39', 'nl', 1, 'https://ror.org/02c2v6k39 Hendrik Conscience Erfgoedbibliotheek Hendrik Conscience Heritage Library'),
(92037, 'https://ror.org/02c2ytc79', 'fr', 1, 'https://ror.org/02c2ytc79 Centre de Recherches Pluridisciplinaires Multilingues'),
(92038, 'https://ror.org/02c4wkv71', 'es', 1, 'https://ror.org/02c4wkv71 Universidad Cristiana del Sur'),
(92039, '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'),
(92040, 'https://ror.org/02caqw325', 'en', 1, 'https://ror.org/02caqw325 Hanjiang Normal University ę±‰ę±ŸåøˆčŒƒå­¦é™¢'),
(92041, 'https://ror.org/02car4a12', 'en', 1, 'https://ror.org/02car4a12 Institute of Musicology MuzikoloŔki inŔtitut'),
(92042, 'https://ror.org/02cbftw37', 'en', 1, 'https://ror.org/02cbftw37 Private Institution ā€œKaraganda University of Kazpotrebsoyuzā€ ŅšŠ°Š·Ń‚Ņ±Ń‚Ń‹Š½ŃƒŠ¾Š“Š°Ņ“Ń‹ ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ°Š»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(92043, 'https://ror.org/02cbj3q28', 'en', 1, 'https://ror.org/02cbj3q28 David Suzuki Foundation Fondation David Suzuki'),
(92044, 'https://ror.org/02cbq7e25', 'en', 1, 'https://ror.org/02cbq7e25 KK-stiftelsen Knowledge Foundation'),
(92045, 'https://ror.org/02cd28j32', 'de', 1, 'https://ror.org/02cd28j32 Wasserstraßen- und Schifffahrtsamt Elbe-Nordsee'),
(92046, 'https://ror.org/02cd4tp05', 'fr', 1, 'https://ror.org/02cd4tp05 BibliothĆØque municipale de Lyon Lyon Public Library'),
(92047, 'https://ror.org/02cddnn97', 'en', 1, 'https://ror.org/02cddnn97 Yorkshire Cancer Research'),
(92048, 'https://ror.org/02ch71m07', 'en', 1, 'https://ror.org/02ch71m07 California State Transportation Agency'),
(92049, 'https://ror.org/02chpvy95', 'en', 1, 'https://ror.org/02chpvy95 Virgin Islands Housing Finance Authority'),
(92050, 'https://ror.org/02ckj1z46', 'en', 1, 'https://ror.org/02ckj1z46 North Advancement Center for Science and Technology åŒ—ęµ·é“ē§‘å­¦ęŠ€č”“ē·åˆęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(92051, 'https://ror.org/02cmjsn57', 'en', 1, 'https://ror.org/02cmjsn57 State Key Laboratory of Freshwater Ecology and Biotechnology ę·”ę°“ē”Ÿę€äøŽē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92052, 'https://ror.org/02crtj003', 'no_lang_code', 1, 'https://ror.org/02crtj003 Eden’s Bowl (United States)'),
(92053, 'https://ror.org/02csmpe21', 'en', 1, 'https://ror.org/02csmpe21 Camp Fire Conservation Fund'),
(92054, 'https://ror.org/02ct41845', 'fr', 0, 'https://ror.org/02ct41845 Centre d''Investigation Clinique de Nantes'),
(92055, 'https://ror.org/02ctmwv42', 'id', 1, 'https://ror.org/02ctmwv42 Universitas Islam Ogan Komering Ilir'),
(92056, 'https://ror.org/02cvqxe38', 'en', 1, 'https://ror.org/02cvqxe38 Race to Erase MS'),
(92057, 'https://ror.org/02cvyrs30', 'no_lang_code', 0, 'https://ror.org/02cvyrs30 Nottingham Scientific (United Kingdom)'),
(92058, 'https://ror.org/02cy0y186', 'en', 1, 'https://ror.org/02cy0y186 Zhoushan Science and Technology Bureau čˆŸå±±åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(92059, 'https://ror.org/02cyskn39', 'en', 1, 'https://ror.org/02cyskn39 ILS – Research Institute for Regional and Urban Development Institut für Landes- und Stadtentwicklungsforschung'),
(92060, 'https://ror.org/02czgmn97', 'en', 1, 'https://ror.org/02czgmn97 O’Loughlin Elementary School'),
(92061, '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'),
(92062, 'https://ror.org/02d1rkr63', 'de', 1, 'https://ror.org/02d1rkr63 Klinikum Coburg'),
(92063, 'https://ror.org/02d217z27', 'en', 1, 'https://ror.org/02d217z27 Xinqiao Hospital ę–°ę”„åŒ»é™¢'),
(92064, 'https://ror.org/02d229b24', 'en', 1, 'https://ror.org/02d229b24 Bundesministerium für Wissenschaft, Forschung und Wirtschaft Federal Ministry of Science, Research and Economics'),
(92065, 'https://ror.org/02d3b2n38', 'en', 1, 'https://ror.org/02d3b2n38 Fujita Health University Nanakuri Memorial Hospital č—¤ē”°åŒ»ē§‘å¤§å­¦äøƒę —čØ˜åæµē—…é™¢'),
(92066, 'https://ror.org/02d3h3h49', 'en', 1, 'https://ror.org/02d3h3h49 Belnet'),
(92067, 'https://ror.org/02d4te065', 'en', 1, 'https://ror.org/02d4te065 Sri Lanka Technological Campus'),
(92068, 'https://ror.org/02dcm1f53', 'en', 1, 'https://ror.org/02dcm1f53 Cour PƩnale Internationale International Criminal Court'),
(92069, 'https://ror.org/02dcqxm65', 'de', 1, 'https://ror.org/02dcqxm65 University Library Johann Christian Senckenberg UniversitƤtsbibliothek Johann Christian Senckenberg'),
(92070, 'https://ror.org/02de03b20', 'en', 1, 'https://ror.org/02de03b20 Auyuittuq National Park Parc national Auyuittuq'),
(92071, 'https://ror.org/02de4yt33', 'en', 1, 'https://ror.org/02de4yt33 Kiyv Municipal Medical College'),
(92072, 'https://ror.org/02dfpb916', 'en', 1, 'https://ror.org/02dfpb916 Instituto Mexicano del Petróleo Mexican Institute of Petroleum'),
(92073, 'https://ror.org/02dfxg175', 'en', 1, 'https://ror.org/02dfxg175 EEA and Norway Grants'),
(92074, 'https://ror.org/02dge1w38', 'no_lang_code', 0, 'https://ror.org/02dge1w38 LumaSense Technologies (United States)'),
(92075, 'https://ror.org/02djppw35', 'no_lang_code', 1, 'https://ror.org/02djppw35 China Steel (Taiwan) äø­åœ‹é‹¼éµč‚”ä»½ęœ‰é™å…¬åø'),
(92076, 'https://ror.org/02dkpwz86', 'no_lang_code', 1, 'https://ror.org/02dkpwz86 Trans Tech Publications (Switzerland)'),
(92077, 'https://ror.org/02dnn6q67', 'en', 1, 'https://ror.org/02dnn6q67 Linkou Chang Gung Memorial Hospital'),
(92078, 'https://ror.org/02dq2t044', 'en', 1, 'https://ror.org/02dq2t044 Target Ovarian Cancer'),
(92079, 'https://ror.org/02dqdxm48', 'en', 1, 'https://ror.org/02dqdxm48 Hamilton Health Sciences'),
(92080, 'https://ror.org/02dqrks84', 'en', 0, 'https://ror.org/02dqrks84 Brighton and Sussex University Hospitals NHS Trust'),
(92081, 'https://ror.org/02dra4h87', 'en', 1, 'https://ror.org/02dra4h87 Oldfield Surgery'),
(92082, 'https://ror.org/02drtdq08', 'en', 1, 'https://ror.org/02drtdq08 Dean Martin Neuromuscular Clinic'),
(92083, 'https://ror.org/02dwymq68', 'no_lang_code', 1, 'https://ror.org/02dwymq68 Rivian'),
(92084, 'https://ror.org/02dx51s73', 'en', 1, 'https://ror.org/02dx51s73 Shonan Oiso Hospital åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼š ę¹˜å—å¤§ē£Æē—…é™¢'),
(92085, 'https://ror.org/02dxnxj52', 'en', 1, 'https://ror.org/02dxnxj52 Pacific States Marine Fisheries Commission'),
(92086, 'https://ror.org/02dxx6824', 'en', 1, 'https://ror.org/02dxx6824 Institut de Recherche Scripps Scripps Research Institute'),
(92087, 'https://ror.org/02dye2z10', 'es', 1, 'https://ror.org/02dye2z10 Secretaria de Salud'),
(92088, 'https://ror.org/02dzbc556', 'fr', 1, 'https://ror.org/02dzbc556 Centre EuropƩen de Recherche et de Formation AvancƩe en Calcul Scientifique'),
(92089, 'https://ror.org/02e0vm063', 'en', 1, 'https://ror.org/02e0vm063 Public Authority for Industry Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة للصناعة'),
(92090, 'https://ror.org/02e43d571', 'fr', 1, 'https://ror.org/02e43d571 ExpƩdition MED'),
(92091, 'https://ror.org/02e46j381', 'en', 1, 'https://ror.org/02e46j381 State Key Laboratory of Genetic Resources and Evolution é—ä¼ čµ„ęŗäøŽčæ›åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92092, 'https://ror.org/02e63r690', 'en', 1, 'https://ror.org/02e63r690 The Mary E. Groff Charitable Trust'),
(92093, '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'),
(92094, 'https://ror.org/02ea7cc16', 'en', 1, 'https://ror.org/02ea7cc16 Open International University of Human Development Ukraine ВіГкритий міжнароГний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ Š»ŃŽŠ“ŠøŠ½Šø Україна ŠžŃ‚крытый Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ человека Украина'),
(92095, 'https://ror.org/02ech3277', 'pt', 1, 'https://ror.org/02ech3277 Batalha Monastery Mosteiro da Batalha'),
(92096, 'https://ror.org/02edexj13', 'en', 1, 'https://ror.org/02edexj13 Networks of Centres of Excellence RƩseaux de centres d''excellence'),
(92097, 'https://ror.org/02eee3289', 'en', 1, 'https://ror.org/02eee3289 Xuzhou Kuangshan Hospital å¾å·žåø‚ēŸæå±±åŒ»é™¢'),
(92098, 'https://ror.org/02efc3n22', 'no_lang_code', 1, 'https://ror.org/02efc3n22 Qlab Analytical Laboratory (Greece)'),
(92099, 'https://ror.org/02efy9n22', 'en', 1, 'https://ror.org/02efy9n22 Swedish Institute for Health Services Development'),
(92100, 'https://ror.org/02ehsb520', 'en', 1, 'https://ror.org/02ehsb520 The Sackler Trust'),
(92101, 'https://ror.org/02en7nd34', 'en', 1, 'https://ror.org/02en7nd34 Tokyo Metropolitan Tama-Hokubu Medical Center ę±äŗ¬éƒ½ē«‹å¤šę‘©åŒ—éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(92102, 'https://ror.org/02epjsz02', 'en', 1, 'https://ror.org/02epjsz02 Fitzsimons Army Medical Center'),
(92103, 'https://ror.org/02epydz83', 'en', 1, 'https://ror.org/02epydz83 Centre de Vol Spatial Marshall Centro Marshall de Vuelos Espaciales Marshall Space Flight Center'),
(92104, 'https://ror.org/02eq2w707', 'en', 1, 'https://ror.org/02eq2w707 National Academies of Sciences, Engineering, and Medicine'),
(92105, 'https://ror.org/02eqrsj93', 'fr', 1, 'https://ror.org/02eqrsj93 Fonds de Recherche du QuƩbec - SantƩ'),
(92106, 'https://ror.org/02etsyv71', 'en', 1, 'https://ror.org/02etsyv71 Russian Economic University after G.V. Plekhanov Российский ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š“.Š’. ŠŸŠ»ŠµŃ…Š°Š½Š¾Š²Š°'),
(92107, 'https://ror.org/02ex29a12', 'en', 1, 'https://ror.org/02ex29a12 RoZetta Institute'),
(92108, 'https://ror.org/02exqgm79', 'no_lang_code', 1, 'https://ror.org/02exqgm79 Hitachi (Japan) ę—„ē«‹č£½ä½œę‰€'),
(92109, 'https://ror.org/02ey6qs66', 'en', 1, 'https://ror.org/02ey6qs66 Jiangsu Provincial Center for Disease Control and Prevention ę±Ÿč‹ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(92110, 'https://ror.org/02eyeq397', 'no_lang_code', 1, 'https://ror.org/02eyeq397 EDF Renewables'),
(92111, 'https://ror.org/02f0cra24', 'en', 1, 'https://ror.org/02f0cra24 Geological Institute Š“Š•ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(92112, 'https://ror.org/02f0z8n98', 'en', 1, 'https://ror.org/02f0z8n98 National Library of Malaysia Perpustakaan Negara Malaysia'),
(92113, 'https://ror.org/02f1kft51', 'en', 1, 'https://ror.org/02f1kft51 University of Juba'),
(92114, 'https://ror.org/02f2g4464', 'en', 1, 'https://ror.org/02f2g4464 Jordan Research and Training Reactor مفاعل الأبحاث ŁˆŲ§Ł„ŲŖŲÆŲ±ŁŠŲØ Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ'),
(92115, 'https://ror.org/02f4ya153', 'en', 1, 'https://ror.org/02f4ya153 Barro Colorado Island Isla Barro Colorado'),
(92116, 'https://ror.org/02f5a3t64', 'en', 1, 'https://ror.org/02f5a3t64 Black Country Healthcare NHS Foundation Trust'),
(92117, 'https://ror.org/02f762h70', 'en', 1, 'https://ror.org/02f762h70 NOAA National Geodetic Survey'),
(92118, 'https://ror.org/02f76hw52', 'en', 1, 'https://ror.org/02f76hw52 Human Resources University'),
(92119, 'https://ror.org/02f7d6n92', 'en', 1, 'https://ror.org/02f7d6n92 Utah Department of Natural Resources'),
(92120, 'https://ror.org/02fabae21', 'tr', 1, 'https://ror.org/02fabae21 Sağlık Hizmetleri Uygulama ve Araştırma Hastanesi'),
(92121, 'https://ror.org/02fbdhm31', 'no_lang_code', 1, 'https://ror.org/02fbdhm31 OncoDetect (United States)'),
(92122, 'https://ror.org/02fcsjn79', 'fr', 1, 'https://ror.org/02fcsjn79 Fondation de l''Ecole Normale Superieure'),
(92123, 'https://ror.org/02fd11n27', 'en', 1, 'https://ror.org/02fd11n27 European Health Psychology Society'),
(92124, 'https://ror.org/02fdb8q57', 'no_lang_code', 1, 'https://ror.org/02fdb8q57 Saint-Gobain (France)'),
(92125, 'https://ror.org/02fdd6s16', 'no_lang_code', 0, 'https://ror.org/02fdd6s16 Ashiya College čŠ¦å±‹å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(92126, 'https://ror.org/02fek2d03', 'fr', 1, 'https://ror.org/02fek2d03 GERFLINT'),
(92127, 'https://ror.org/02ffp5292', 'en', 1, 'https://ror.org/02ffp5292 William Hill Manor'),
(92128, 'https://ror.org/02fhvxj45', 'en', 1, 'https://ror.org/02fhvxj45 Temple University Health System'),
(92129, 'https://ror.org/02fj1x097', 'en', 1, 'https://ror.org/02fj1x097 Sidney & Lois Eskenazi Hospital'),
(92130, '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'),
(92131, 'https://ror.org/02fn5kf41', 'en', 1, 'https://ror.org/02fn5kf41 Bonefish and Tarpon Trust'),
(92132, 'https://ror.org/02fnq0s83', 'no_lang_code', 1, 'https://ror.org/02fnq0s83 DMG Mori (Japan) DMGę£®ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(92133, 'https://ror.org/02fp10z94', 'es', 1, 'https://ror.org/02fp10z94 Universidad Autónoma de Encarnación'),
(92134, 'https://ror.org/02fqy5689', 'id', 1, 'https://ror.org/02fqy5689 Institut Agama Islam Negeri Fattahul Muluk Papua'),
(92135, 'https://ror.org/02frf8h21', 'en', 1, 'https://ror.org/02frf8h21 St. John Medical Center'),
(92136, 'https://ror.org/02frnkp15', 'en', 1, 'https://ror.org/02frnkp15 Institute of International Relations of Moldova Institutul de Relații Internaționale din Moldova'),
(92137, 'https://ror.org/02frtqf06', 'de', 1, 'https://ror.org/02frtqf06 Wasserstraßen-Neubauamt Aschaffenburg'),
(92138, 'https://ror.org/02frwys47', 'en', 0, 'https://ror.org/02frwys47 InstitiĆŗid TeicneolaĆ­ochta Ceatharlach Institute of Technology Carlow'),
(92139, 'https://ror.org/02fv47851', 'en', 1, 'https://ror.org/02fv47851 Koulutuskeskus Salpaus Salpaus Further Education'),
(92140, 'https://ror.org/02fv52296', 'no_lang_code', 1, 'https://ror.org/02fv52296 Micron (United States)'),
(92141, 'https://ror.org/02fvybm75', 'en', 1, 'https://ror.org/02fvybm75 Office for Product Safety and Standards'),
(92142, 'https://ror.org/02fvyy542', 'en', 1, 'https://ror.org/02fvyy542 Global Health and Education Projects'),
(92143, 'https://ror.org/02fx91a16', 'fr', 1, 'https://ror.org/02fx91a16 UniversitƩ de Sarh'),
(92144, 'https://ror.org/02fzqav45', 'en', 1, 'https://ror.org/02fzqav45 State Council of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½å›½åŠ”é™¢'),
(92145, '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'),
(92146, 'https://ror.org/02g130845', 'de', 1, 'https://ror.org/02g130845 Faserinstitut Bremen'),
(92147, 'https://ror.org/02g2b5578', 'en', 1, 'https://ror.org/02g2b5578 Technological University Hinthada'),
(92148, 'https://ror.org/02g3h9440', 'it', 1, 'https://ror.org/02g3h9440 Centro Alti Studi per la Difesa (CASD)'),
(92149, 'https://ror.org/02g3yb373', 'en', 1, 'https://ror.org/02g3yb373 Dominica Bureau of Standards'),
(92150, 'https://ror.org/02g5w9d85', 'es', 1, 'https://ror.org/02g5w9d85 Consejo Económico y Social'),
(92151, 'https://ror.org/02g73ch63', 'en', 1, 'https://ror.org/02g73ch63 Winslow Foundation'),
(92152, 'https://ror.org/02gdbm217', 'en', 1, 'https://ror.org/02gdbm217 Creative Victoria'),
(92153, 'https://ror.org/02ge6fe64', 'no_lang_code', 1, 'https://ror.org/02ge6fe64 Daiwa Pharmaceutical Co. (Japan) å¤§å’Œč–¬å“ę Ŗå¼ä¼šē¤¾'),
(92154, 'https://ror.org/02gegq725', 'en', 1, 'https://ror.org/02gegq725 TSC Alliance'),
(92155, 'https://ror.org/02gekzd14', 'no_lang_code', 0, 'https://ror.org/02gekzd14 Biosurface Engineering Technologies (United States)'),
(92156, 'https://ror.org/02gexj360', 'pt', 1, 'https://ror.org/02gexj360 Editora JRG'),
(92157, 'https://ror.org/02gfar685', 'de', 1, 'https://ror.org/02gfar685 Wehrwissenschaftliche Institut für Schutztechnologien'),
(92158, 'https://ror.org/02gj7dq89', 'fr', 1, 'https://ror.org/02gj7dq89 Centre de droit international de Nanterre'),
(92159, 'https://ror.org/02gkh1e90', 'en', 1, 'https://ror.org/02gkh1e90 Australian National Herbarium'),
(92160, 'https://ror.org/02gkqqp86', 'en', 1, 'https://ror.org/02gkqqp86 Agencia de Protección Ambiental de California California Environmental Protection Agency'),
(92161, 'https://ror.org/02gm5zw39', 'de', 1, 'https://ror.org/02gm5zw39 University Hospital Aachen UniversitƤtsklinikum Aachen'),
(92162, 'https://ror.org/02gmzy566', 'no_lang_code', 1, 'https://ror.org/02gmzy566 Forum (United States)'),
(92163, 'https://ror.org/02gn1ar53', 'de', 0, 'https://ror.org/02gn1ar53 Marum, Zentrum für Marine Umweltwissenschaften'),
(92164, 'https://ror.org/02gn38d51', 'en', 1, 'https://ror.org/02gn38d51 Hokkaido University of Education åŒ—ęµ·é“ę•™č‚²å¤§å­¦'),
(92165, 'https://ror.org/02gntzb40', 'en', 1, 'https://ror.org/02gntzb40 Pohang Accelerator Laboratory ķ¬ķ•­ź°€ģ†źø°ģ—°źµ¬ģ†Œė”œź³ '),
(92166, 'https://ror.org/02gp9c631', 'en', 1, 'https://ror.org/02gp9c631 American Indonesian Exchange Foundation'),
(92167, 'https://ror.org/02gpp3c32', 'en', 1, 'https://ror.org/02gpp3c32 Progressive Foundation'),
(92168, 'https://ror.org/02gqkey44', 'en', 1, 'https://ror.org/02gqkey44 Church of Saint Abuseridze State University'),
(92169, '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'),
(92170, 'https://ror.org/02gsny710', 'it', 1, 'https://ror.org/02gsny710 INGV Sezione Irpinia'),
(92171, 'https://ror.org/02gwe8432', 'en', 1, 'https://ror.org/02gwe8432 Access'),
(92172, 'https://ror.org/02gxafv90', 'en', 1, 'https://ror.org/02gxafv90 European Lead Factory'),
(92173, 'https://ror.org/02h12bg79', 'en', 1, 'https://ror.org/02h12bg79 Fraunhofer Institute for Electronic Nano Systems Fraunhofer-Institut für Elektronische Nanosysteme'),
(92174, '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'),
(92175, 'https://ror.org/02h21fh05', 'es', 1, 'https://ror.org/02h21fh05 Cooperación Latino Americana de Redes Avanzadas, RedCLARA'),
(92176, 'https://ror.org/02h41sr05', 'en', 1, 'https://ror.org/02h41sr05 Earth and Planets Laboratory'),
(92177, 'https://ror.org/02h503d38', 'es', 1, 'https://ror.org/02h503d38 Ministerio de Ciencia, Tecnología e Innovación'),
(92178, 'https://ror.org/02h5sfg65', 'en', 1, 'https://ror.org/02h5sfg65 International Bamboo and Rattan Organization å›½é™…ē«¹č—¤äø­åæƒ'),
(92179, 'https://ror.org/02h65ph65', 'id', 1, 'https://ror.org/02h65ph65 Institut Bisnis dan Informatika Kesatuan'),
(92180, 'https://ror.org/02h6cs343', 'en', 1, 'https://ror.org/02h6cs343 Aichi Medical University ę„›ēŸ„åŒ»ē§‘å¤§å­¦'),
(92181, 'https://ror.org/02hb3t423', 'no_lang_code', 0, 'https://ror.org/02hb3t423 Shire (Ireland)'),
(92182, 'https://ror.org/02hbzmb19', 'fr', 1, 'https://ror.org/02hbzmb19 Centre d''Ɖtude et de Recherche Travail Organisation Pouvoir'),
(92183, 'https://ror.org/02hdgdd22', 'fr', 1, 'https://ror.org/02hdgdd22 Laboratoire AssociƩ de DƩbitmƩtrie Gazeuse'),
(92184, 'https://ror.org/02hdxwp38', 'no_lang_code', 1, 'https://ror.org/02hdxwp38 IniXium (Canada)'),
(92185, 'https://ror.org/02hf1nv04', 'en', 1, 'https://ror.org/02hf1nv04 CoreTrustSeal'),
(92186, 'https://ror.org/02hhy3909', 'no_lang_code', 1, 'https://ror.org/02hhy3909 Research Institute of Bast Fibres (Czechia)'),
(92187, 'https://ror.org/02hkvsj16', 'en', 1, 'https://ror.org/02hkvsj16 Lupus Research Alliance'),
(92188, 'https://ror.org/02hn5ny59', 'de', 1, 'https://ror.org/02hn5ny59 Landwirtschaftliche Rentenbank'),
(92189, 'https://ror.org/02hn7j889', 'en', 1, 'https://ror.org/02hn7j889 Malaria Consortium'),
(92190, 'https://ror.org/02hqka403', 'en', 1, 'https://ror.org/02hqka403 Guizhou Provincial Education Department č“µå·žēœę•™č‚²åŽ… 编辑'),
(92191, 'https://ror.org/02hr3zx73', 'fr', 0, 'https://ror.org/02hr3zx73 Biologie des Plantes et Innovation'),
(92192, 'https://ror.org/02hr4zq26', 'no_lang_code', 0, 'https://ror.org/02hr4zq26 Beckman Coulter (United States)'),
(92193, 'https://ror.org/02hsggv49', 'en', 1, 'https://ror.org/02hsggv49 Institute for Biomedicine Istituto di Biomedicina'),
(92194, 'https://ror.org/02hw13769', 'no_lang_code', 0, 'https://ror.org/02hw13769 Aker Solutions (United Kingdom)'),
(92195, 'https://ror.org/02hwvk356', 'no_lang_code', 1, 'https://ror.org/02hwvk356 Centro de Desarrollo Tecnológico del Cesar'),
(92196, 'https://ror.org/02hww1d40', 'en', 1, 'https://ror.org/02hww1d40 North-American Interfraternity Conference'),
(92197, 'https://ror.org/02hx3mp62', 'tr', 1, 'https://ror.org/02hx3mp62 Anka Teknoloji Üniversitesi'),
(92198, 'https://ror.org/02j016891', 'en', 1, 'https://ror.org/02j016891 Australian Marine Mammal Centre'),
(92199, 'https://ror.org/02j1m6098', 'en', 1, 'https://ror.org/02j1m6098 Duke-NUS Medical School'),
(92200, 'https://ror.org/02j2d2g70', 'en', 1, 'https://ror.org/02j2d2g70 Ministry of Trade, Industry and Fisheries'),
(92201, 'https://ror.org/02j2fth58', 'en', 1, 'https://ror.org/02j2fth58 Victorian Health Promotion Foundation'),
(92202, 'https://ror.org/02j4qdw85', 'en', 1, 'https://ror.org/02j4qdw85 Qasyoun Private University Ų¬Ų§Ł…Ų¹Ų© Ł‚Ų§Ų³ŁŠŁˆŁ† الخاصة'),
(92203, 'https://ror.org/02j50kc39', 'en', 1, 'https://ror.org/02j50kc39 Eliette and Herbert von Karajan Institute'),
(92204, 'https://ror.org/02j5n9e16', 'en', 1, 'https://ror.org/02j5n9e16 The Second Affiliated Hospital of Xiamen Medical College åŽ¦é—Øåø‚ē¬¬äŗŒåŒ»é™¢'),
(92205, 'https://ror.org/02j652854', 'id', 1, 'https://ror.org/02j652854 Universitas Komputer Indonesia'),
(92206, 'https://ror.org/02j8k6t75', 'en', 1, 'https://ror.org/02j8k6t75 Işık University Işık Üniversitesi İşıq Universiteti'),
(92207, 'https://ror.org/02ja3st78', 'en', 1, 'https://ror.org/02ja3st78 Bina Bangsa Getsempena University'),
(92208, 'https://ror.org/02jcfzc36', 'en', 1, 'https://ror.org/02jcfzc36 Indian Veterinary Research Institute Institut indien de recherche vĆ©tĆ©rinaire ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą¤¶ą„ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(92209, 'https://ror.org/02jcggd50', 'es', 1, 'https://ror.org/02jcggd50 Universidad de Ciencias MƩdicas de GuantƔnamo'),
(92210, 'https://ror.org/02jdaj147', 'no_lang_code', 1, 'https://ror.org/02jdaj147 Redivis'),
(92211, 'https://ror.org/02jf81j23', 'pl', 1, 'https://ror.org/02jf81j23 Narodowa Agencja Wymiany Akademickiej'),
(92212, 'https://ror.org/02jhg8z64', 'en', 1, 'https://ror.org/02jhg8z64 Department of Measurement Units, Standards & Services ą®…ą®³ą®•ąÆą®•ąÆą®®ąÆ ą®…ą®²ą®•ąÆą®•ą®³ąÆ, ą®¤ą®°ą®™ąÆą®•ą®³ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®šąÆ‡ą®µąÆˆą®•ą®³ąÆ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ ą¶±ą·”ą¶øą·Š ą¶’ą¶šą¶š, ą¶“ą·Šą¶»ą¶øą·’ą¶­ą·’ ą·„ą· ą·ƒą·šą·€ą· ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(92213, 'https://ror.org/02jj4jf83', 'fr', 1, 'https://ror.org/02jj4jf83 Institut Catholique d''Arts et MƩtiers'),
(92214, 'https://ror.org/02jj62p13', 'en', 1, 'https://ror.org/02jj62p13 Neanderthal Museum'),
(92215, 'https://ror.org/02jkfsz60', 'no_lang_code', 0, 'https://ror.org/02jkfsz60 Smart Fibres (United Kingdom)'),
(92216, 'https://ror.org/02jkp0740', 'en', 1, 'https://ror.org/02jkp0740 Human Immunome Project'),
(92217, 'https://ror.org/02jkz3g13', 'en', 1, 'https://ror.org/02jkz3g13 Organização Pan-Americana da Saúde (Brazil) Pan American Health Organization (Brasil)'),
(92218, 'https://ror.org/02jp0cd74', 'fr', 1, 'https://ror.org/02jp0cd74 Innovations ThƩrapeutiques en HƩmostase'),
(92219, 'https://ror.org/02jqpph54', 'en', 1, 'https://ror.org/02jqpph54 One World University'),
(92220, 'https://ror.org/02jrgcx64', 'en', 1, 'https://ror.org/02jrgcx64 University of New Caledonia UniversitƩ de la Nouvelle-CalƩdonie'),
(92221, 'https://ror.org/02js45493', 'no_lang_code', 1, 'https://ror.org/02js45493 Trelleborg (Norway)'),
(92222, 'https://ror.org/02jsxsw65', 'es', 1, 'https://ror.org/02jsxsw65 Instituto Tecnológico de Puebla Puebla Technologic Institute'),
(92223, 'https://ror.org/02jtq1b51', 'en', 1, 'https://ror.org/02jtq1b51 Hīkina Whakatutuki Ministry of Business, Innovation and Employment'),
(92224, 'https://ror.org/02jwb0b65', 'en', 1, 'https://ror.org/02jwb0b65 NOAA National Marine Fisheries Service West Coast Region'),
(92225, 'https://ror.org/02jwef888', 'no_lang_code', 1, 'https://ror.org/02jwef888 Voestalpine (Germany)'),
(92226, 'https://ror.org/02jxxbt79', 'id', 1, 'https://ror.org/02jxxbt79 Universitas Mulia'),
(92227, 'https://ror.org/02jyzsn32', 'id', 1, 'https://ror.org/02jyzsn32 Sekolah Tinggi Ilmu Ekonomi Port Numbay Jayapura'),
(92228, 'https://ror.org/02k57f568', 'it', 1, 'https://ror.org/02k57f568 Emilia-Romagna Region Regione Emilia-Romagna'),
(92229, 'https://ror.org/02kbe5v55', 'no_lang_code', 1, 'https://ror.org/02kbe5v55 Terumo (Japan) ćƒ†ćƒ«ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(92230, 'https://ror.org/02kcbn207', 'en', 1, 'https://ror.org/02kcbn207 IMEC'),
(92231, 'https://ror.org/02kd4km72', 'en', 1, 'https://ror.org/02kd4km72 Division of Undergraduate Education'),
(92232, 'https://ror.org/02kehyq59', 'en', 1, 'https://ror.org/02kehyq59 Standard Norge Standards Norway'),
(92233, 'https://ror.org/02kezd753', 'en', 1, 'https://ror.org/02kezd753 The Systematics Association'),
(92234, 'https://ror.org/02kfc0089', 'en', 1, 'https://ror.org/02kfc0089 Institut za KriminoloŔka i SocioloŔka Istraživanja Institute of Criminological & Sociological Research'),
(92235, 'https://ror.org/02kjggt26', 'fi', 1, 'https://ror.org/02kjggt26 Turku University Foundation Turun YliopistosƤƤtiƶ'),
(92236, 'https://ror.org/02kjnbn02', 'no_lang_code', 1, 'https://ror.org/02kjnbn02 Energy Power Resources (United Kingdom)'),
(92237, 'https://ror.org/02kkzc246', 'en', 1, 'https://ror.org/02kkzc246 Shri Dharmasthala Manjunatheshwara University'),
(92238, 'https://ror.org/02km7mb89', 'en', 1, 'https://ror.org/02km7mb89 Cancer Care Centers of Brevard'),
(92239, 'https://ror.org/02knte584', 'en', 1, 'https://ror.org/02knte584 West Suffolk NHS Foundation Trust'),
(92240, 'https://ror.org/02kpaqs60', 'en', 1, 'https://ror.org/02kpaqs60 Zhejiang Radio and Television University ęµ™ę±Ÿå¹æę’­ē”µč§†å¤§å­¦'),
(92241, 'https://ror.org/02kpjab54', 'no_lang_code', 0, 'https://ror.org/02kpjab54 Innventia (Sweden)'),
(92242, 'https://ror.org/02kpw7e71', 'fi', 1, 'https://ror.org/02kpw7e71 Puolustusvoimien tutkimuslaitos'),
(92243, 'https://ror.org/02kqbjv38', 'en', 1, 'https://ror.org/02kqbjv38 University College of Nabi Akram Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ł†ŲØŪŒ اکرم'),
(92244, 'https://ror.org/02krhe361', 'en', 1, 'https://ror.org/02krhe361 Eluna'),
(92245, 'https://ror.org/02ktfxs54', 'no_lang_code', 1, 'https://ror.org/02ktfxs54 Nallamuthu Gounder Mahalingam College'),
(92246, 'https://ror.org/02ktgt837', 'en', 1, 'https://ror.org/02ktgt837 Parc national Tuktut Nogait Tuktut Nogait National Park'),
(92247, 'https://ror.org/02kv0wv09', 'en', 1, 'https://ror.org/02kv0wv09 Department of Human Resources and Social Security of Jiangsu Province ę±Ÿč‹ēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(92248, 'https://ror.org/02kv4zf79', 'en', 1, 'https://ror.org/02kv4zf79 National Science and Technology Council åœ‹ē§‘ęœƒ'),
(92249, 'https://ror.org/02kwf6k60', 'en', 1, 'https://ror.org/02kwf6k60 Moscow Art Theatre School'),
(92250, 'https://ror.org/02kwnkm68', 'en', 1, 'https://ror.org/02kwnkm68 Henry Ford Health System'),
(92251, 'https://ror.org/02kx8pc24', 'en', 0, 'https://ror.org/02kx8pc24 University of Wisconsin–Fox Valley'),
(92252, 'https://ror.org/02kxbqc24', 'en', 1, 'https://ror.org/02kxbqc24 Kerman University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی کرمان'),
(92253, 'https://ror.org/02m1z0a87', 'de', 1, 'https://ror.org/02m1z0a87 Medizinische FakultƤt Mannheim'),
(92254, 'https://ror.org/02m23mg23', 'en', 1, 'https://ror.org/02m23mg23 Wet Tropics Management Authority'),
(92255, 'https://ror.org/02m2j9v71', 'en', 1, 'https://ror.org/02m2j9v71 Woodcock-MuƱoz Foundation'),
(92256, 'https://ror.org/02m62qy71', 'en', 1, 'https://ror.org/02m62qy71 Universitetssjukhuset Ɩrebro Ɩrebro University Hospital'),
(92257, 'https://ror.org/02m74w963', 'en', 1, 'https://ror.org/02m74w963 Escuela Latinoamericana de Medicina Latin American School of Medicine'),
(92258, 'https://ror.org/02m7mps36', 'de', 1, 'https://ror.org/02m7mps36 Orff-Zentrum München'),
(92259, 'https://ror.org/02m8tt458', 'fr', 1, 'https://ror.org/02m8tt458 Laboratoire de GƩographie Urbaine'),
(92260, 'https://ror.org/02ma6j015', 'fr', 1, 'https://ror.org/02ma6j015 Centre d''Excellence en Technologies de l''Information et de la Communication'),
(92261, 'https://ror.org/02me97413', 'en', 1, 'https://ror.org/02me97413 Northeast Iowa Community College'),
(92262, 'https://ror.org/02mg3as63', 'en', 1, 'https://ror.org/02mg3as63 Shanghai Academy of Science & Technology äøŠęµ·ē§‘å­¦é™¢'),
(92263, 'https://ror.org/02mgk0s80', 'en', 1, 'https://ror.org/02mgk0s80 Namibian Standards Institution'),
(92264, 'https://ror.org/02mh1ke95', 'en', 1, 'https://ror.org/02mh1ke95 Russian Foundation for Basic Research Российский фонГ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Ń… исслеГований');
INSERT INTO `rors` VALUES
(92265, 'https://ror.org/02mh2cd26', 'en', 1, 'https://ror.org/02mh2cd26 Koltzov Institute of Developmental Biology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Ń€Š°Š·Š²ŠøŃ‚ŠøŃ им. Š.К. ŠšŠ¾Š»ŃŒŃ†Š¾Š²Š° Š ŠŠ'),
(92266, 'https://ror.org/02mhav045', 'no_lang_code', 1, 'https://ror.org/02mhav045 Covalent Associates (United States)'),
(92267, 'https://ror.org/02mhn1j26', 'en', 1, 'https://ror.org/02mhn1j26 National Maritime Museums'),
(92268, 'https://ror.org/02mj54r38', 'pt', 1, 'https://ror.org/02mj54r38 Observatório Oceânico da Madeira'),
(92269, 'https://ror.org/02mkqta53', 'en', 1, 'https://ror.org/02mkqta53 Jiangsu Province Science and Technology Department'),
(92270, 'https://ror.org/02mnd0039', 'en', 1, 'https://ror.org/02mnd0039 NOAA Technology Partnerships Office'),
(92271, 'https://ror.org/02mpjaz73', 'en', 1, 'https://ror.org/02mpjaz73 Public University "Kadri Zeka" Universiteti Publik "Kadri Zeka"'),
(92272, 'https://ror.org/02mrd0686', 'en', 1, 'https://ror.org/02mrd0686 Swiss Nanoscience Institute'),
(92273, 'https://ror.org/02mre5m81', 'fr', 1, 'https://ror.org/02mre5m81 Conseil RƩgional de Nouvelle-Aquitaine'),
(92274, 'https://ror.org/02mrxfm86', 'fi', 1, 'https://ror.org/02mrxfm86 Nordenskiƶld-samfundet'),
(92275, 'https://ror.org/02mtpz628', 'fr', 1, 'https://ror.org/02mtpz628 Hypoxie et Poumon'),
(92276, 'https://ror.org/02n006v45', 'en', 1, 'https://ror.org/02n006v45 Chinese National Academy of Arts äø­å›½č‰ŗęœÆē ”ē©¶é™¢'),
(92277, 'https://ror.org/02n0ejh50', 'en', 1, 'https://ror.org/02n0ejh50 Institute of High Performance Computing'),
(92278, 'https://ror.org/02n1jcr11', 'en', 1, 'https://ror.org/02n1jcr11 Tomori PƔl College'),
(92279, 'https://ror.org/02n2b8x16', 'en', 1, 'https://ror.org/02n2b8x16 Korean History Research Society ķ•œźµ­ģ‚¬ģ—°źµ¬ķšŒ'),
(92280, 'https://ror.org/02n2s1h08', 'en', 1, 'https://ror.org/02n2s1h08 Bangladesh Sugarcrop Research Institute বাংলাদেশ ą¦øą§ą¦—ą¦¾ą¦°ą¦•ą§ą¦°ą¦Ŗ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(92281, 'https://ror.org/02n43xw86', 'en', 1, 'https://ror.org/02n43xw86 University of Sistan and Baluchestan دانؓگاه Ų³ŪŒŲ³ŲŖŲ§Ł† و ŲØŁ„ŁˆŚ†Ų³ŲŖŲ§Ł†'),
(92282, 'https://ror.org/02n5r1g44', 'en', 1, 'https://ror.org/02n5r1g44 Forschungsinstitut für Nutztierbiologie (FBN) Research Institute for Farm Animal Biology (FBN)'),
(92283, 'https://ror.org/02n9cps64', 'fr', 0, 'https://ror.org/02n9cps64 Mondes Iranien et Indien'),
(92284, 'https://ror.org/02ndzm185', 'sv', 1, 'https://ror.org/02ndzm185 Ɩstersjƶcentrum'),
(92285, 'https://ror.org/02nf3tv98', 'en', 1, 'https://ror.org/02nf3tv98 Colorado Native Plant Society'),
(92286, 'https://ror.org/02nhe4p66', 'de', 1, 'https://ror.org/02nhe4p66 Private PƤdagogische Hochschule Augustinum Private University College of Teacher Education Augustinum'),
(92287, 'https://ror.org/02nhfkk25', 'fr', 1, 'https://ror.org/02nhfkk25 Laboratoire National de MƩtrologie'),
(92288, 'https://ror.org/02nhj8555', 'en', 1, 'https://ror.org/02nhj8555 Alberta Ministry of Agriculture and Forestry'),
(92289, 'https://ror.org/02njcts69', 'no_lang_code', 0, 'https://ror.org/02njcts69 Therapeutics Systems Research Laboratories (United States)'),
(92290, 'https://ror.org/02njgxr09', 'en', 1, 'https://ror.org/02njgxr09 Helmholtz Center for Information Security Helmholtz-Zentrum für Informationssicherheit'),
(92291, 'https://ror.org/02nkb2y52', 'en', 1, 'https://ror.org/02nkb2y52 Rozgan University دانؓگاه ارزگان'),
(92292, 'https://ror.org/02nmehy23', 'fr', 0, 'https://ror.org/02nmehy23 Fondation MƩrieux'),
(92293, 'https://ror.org/02npznr18', 'en', 1, 'https://ror.org/02npznr18 Grenada Bureau of Standards'),
(92294, 'https://ror.org/02nr0ka47', 'en', 1, 'https://ror.org/02nr0ka47 OurResearch'),
(92295, 'https://ror.org/02ns9vb06', 'fr', 1, 'https://ror.org/02ns9vb06 Centre Integre de Sante et de Services Sociaux de Laval'),
(92296, 'https://ror.org/02nst4e33', 'en', 1, 'https://ror.org/02nst4e33 Education, Formation, Travail, Savoirs'),
(92297, 'https://ror.org/02ntpet30', 'es', 1, 'https://ror.org/02ntpet30 Hospital Italiano de Montevideo, Ospedale italiano Umberto I Italian Hospital of Montevideo'),
(92298, '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'),
(92299, 'https://ror.org/02ntw5v16', 'en', 1, 'https://ror.org/02ntw5v16 Korea Information & Communication Contractors Association ķ•œźµ­ģ •ė³“ķ†µģ‹ ź³µģ‚¬ķ˜‘ķšŒ'),
(92300, 'https://ror.org/02nv8wk59', 'es', 1, 'https://ror.org/02nv8wk59 Antonio Ruiz de Montoya University, Universidad Antonio Ruiz de Montoya'),
(92301, 'https://ror.org/02nx9ts82', 'en', 1, 'https://ror.org/02nx9ts82 China National Textile and Apparel Council äø­å›½ēŗŗē»‡å·„äøšč”åˆä¼š'),
(92302, 'https://ror.org/02nzfdt75', 'no_lang_code', 1, 'https://ror.org/02nzfdt75 Fort Wayne Metals (United States)'),
(92303, 'https://ror.org/02p0d0j76', 'en', 1, 'https://ror.org/02p0d0j76 Tyndale House'),
(92304, 'https://ror.org/02p2cc606', 'es', 1, 'https://ror.org/02p2cc606 Hospital Infanta Margarita'),
(92305, 'https://ror.org/02p3esj04', 'en', 1, 'https://ror.org/02p3esj04 Pittsburgh Foundation'),
(92306, 'https://ror.org/02p435225', 'pt', 1, 'https://ror.org/02p435225 Universidade de DĆ­li'),
(92307, 'https://ror.org/02p5amq61', 'en', 1, 'https://ror.org/02p5amq61 Everett Company Stage School'),
(92308, 'https://ror.org/02p5aye98', 'en', 1, 'https://ror.org/02p5aye98 WITH Foundation'),
(92309, 'https://ror.org/02p7bfx81', 'no_lang_code', 1, 'https://ror.org/02p7bfx81 Donaldson (United States)'),
(92310, 'https://ror.org/02p852y24', 'en', 1, 'https://ror.org/02p852y24 Gulf of Sidra University Ų¬Ų§Ł…Ų¹Ų© Ų®Ł„ŁŠŲ¬ السدرة'),
(92311, 'https://ror.org/02pa0cy79', 'en', 1, 'https://ror.org/02pa0cy79 University Hospitals Dorset NHS Foundation Trust'),
(92312, 'https://ror.org/02pc6pc55', 'en', 1, 'https://ror.org/02pc6pc55 Okayama University 岔山大学'),
(92313, 'https://ror.org/02pdq4q20', 'en', 1, 'https://ror.org/02pdq4q20 Deep Ocean Observing Strategy'),
(92314, 'https://ror.org/02pe09j37', 'it', 1, 'https://ror.org/02pe09j37 Institute of Legal Informatics and Judicial Systems Istituto di Informatica Giuridica e Sistemi Giudiziari'),
(92315, 'https://ror.org/02pe3qa74', 'no_lang_code', 1, 'https://ror.org/02pe3qa74 Mountain Vista Medical Center'),
(92316, 'https://ror.org/02pe71j59', 'en', 1, 'https://ror.org/02pe71j59 Ecole Nationale SupƩrieure d''Intelligence Artificielle National Higher School of Artificial Intelligence'),
(92317, 'https://ror.org/02pecpe58', 'en', 1, 'https://ror.org/02pecpe58 National Guard Health Affairs Ų§Ł„Ų“Ų¤ŁˆŁ† Ų§Ł„ŲµŲ­ŁŠŲ© بالحرس Ų§Ł„ŁˆŲ·Ł†ŁŠ'),
(92318, 'https://ror.org/02pfy0v45', 'en', 1, 'https://ror.org/02pfy0v45 American Arachnological Society'),
(92319, 'https://ror.org/02pg36486', 'en', 1, 'https://ror.org/02pg36486 Korean Institute of Architects ķ•œźµ­ 걓축가 ķ˜‘ķšŒ'),
(92320, 'https://ror.org/02pkvpx84', 'en', 1, 'https://ror.org/02pkvpx84 Group for Research in Decision Analysis'),
(92321, 'https://ror.org/02ps3ca75', 'en', 1, 'https://ror.org/02ps3ca75 Ara Parseghian Medical Research Fund'),
(92322, 'https://ror.org/02ps9at23', 'no_lang_code', 1, 'https://ror.org/02ps9at23 The Coatinc Company (Netherlands)'),
(92323, 'https://ror.org/02ptchg16', 'en', 0, 'https://ror.org/02ptchg16 Instituto Smithsonian de Investigaciones Tropicales Smithsonian Tropical Research Institute'),
(92324, 'https://ror.org/02pwa4b62', 'en', 1, 'https://ror.org/02pwa4b62 Al Azhar University Ų¬Ų§Ł…Ų¹Ų© الأزهر'),
(92325, 'https://ror.org/02pxc9m61', 'no_lang_code', 1, 'https://ror.org/02pxc9m61 Artep'),
(92326, 'https://ror.org/02pys4392', 'en', 1, 'https://ror.org/02pys4392 Cascadia College, Cascadia Community College'),
(92327, 'https://ror.org/02pzme005', 'es', 1, 'https://ror.org/02pzme005 Laboratorio de Tecnogestión'),
(92328, 'https://ror.org/02q34ka72', 'en', 0, 'https://ror.org/02q34ka72 International Institute of Tropical Agriculture'),
(92329, 'https://ror.org/02q36cq90', 'en', 1, 'https://ror.org/02q36cq90 Community Health Alliance'),
(92330, 'https://ror.org/02q3cpg22', 'en', 1, 'https://ror.org/02q3cpg22 Pillar College, Somerset Christian College'),
(92331, 'https://ror.org/02q3j1823', 'en', 1, 'https://ror.org/02q3j1823 Korea National Arboretum źµ­ė¦½ģˆ˜ėŖ©ģ›'),
(92332, 'https://ror.org/02q7vgb48', 'de', 1, 'https://ror.org/02q7vgb48 Zentrum für Telematik'),
(92333, 'https://ror.org/02q83se13', 'no_lang_code', 1, 'https://ror.org/02q83se13 Instituttet for Anvendt Datateknik (Denmark)'),
(92334, 'https://ror.org/02q8sqx88', 'de', 1, 'https://ror.org/02q8sqx88 Deutsche Verkehrswissenschaftliche Gesellschaft'),
(92335, 'https://ror.org/02qa85691', 'no_lang_code', 0, 'https://ror.org/02qa85691 Esterline (Canada)'),
(92336, 'https://ror.org/02qaymn86', 'no_lang_code', 1, 'https://ror.org/02qaymn86 Dolby (Canada)'),
(92337, 'https://ror.org/02qbyex13', 'no_lang_code', 1, 'https://ror.org/02qbyex13 Alabama Audubon'),
(92338, 'https://ror.org/02qc43v06', 'en', 1, 'https://ror.org/02qc43v06 Directorate-General for Migration and Home Affairs'),
(92339, 'https://ror.org/02qcnva43', 'en', 1, 'https://ror.org/02qcnva43 Autism Consortium'),
(92340, 'https://ror.org/02qeb2d88', 'en', 1, 'https://ror.org/02qeb2d88 Kentucky Department of Fish and Wildlife Resources'),
(92341, 'https://ror.org/02qeepn83', 'en', 1, 'https://ror.org/02qeepn83 Mining Engineering Bandung Islamic University'),
(92342, 'https://ror.org/02qer1j03', 'en', 1, 'https://ror.org/02qer1j03 Ministry of Oil وزارة النفط - ŲÆŁˆŁ„Ų© Ų§Ł„ŁƒŁˆŁŠŲŖ'),
(92343, 'https://ror.org/02qj02q19', 'en', 1, 'https://ror.org/02qj02q19 EIS AFRICA'),
(92344, 'https://ror.org/02qn6jw83', 'id', 1, 'https://ror.org/02qn6jw83 Institut Agama Kristen Negeri Manado'),
(92345, 'https://ror.org/02qr0r046', 'en', 1, 'https://ror.org/02qr0r046 France Stele Institute of Art History Umetnostnozgodovinski inŔtitut Franceta Steleta'),
(92346, 'https://ror.org/02qsm8v61', 'en', 0, 'https://ror.org/02qsm8v61 Institute of Health ZdravotnĆ­ Ćŗstav se sĆ­dlem v Ostravě'),
(92347, 'https://ror.org/02qt1p572', 'fr', 1, 'https://ror.org/02qt1p572 HƓpital Edouard Herriot'),
(92348, 'https://ror.org/02qvmee20', 'pt', 0, 'https://ror.org/02qvmee20 Faculdades Integradas do Vale do IvaĆ­'),
(92349, 'https://ror.org/02qx3jt37', 'en', 1, 'https://ror.org/02qx3jt37 European Bureau of Library, Information and Documentation Associations'),
(92350, 'https://ror.org/02qy3wv98', 'en', 1, 'https://ror.org/02qy3wv98 NOAA National Data Buoy Center'),
(92351, 'https://ror.org/02r0e4r58', 'de', 1, 'https://ror.org/02r0e4r58 Jülich Aachen Research Alliance'),
(92352, 'https://ror.org/02r21n227', 'en', 1, 'https://ror.org/02r21n227 Rauf Denktas University Rauf Denktas Üniversitesi'),
(92353, 'https://ror.org/02r2q1d96', 'en', 1, 'https://ror.org/02r2q1d96 Leibniz Institute of Virology (LIV) Leibniz-Institut für Virologie (LIV)'),
(92354, 'https://ror.org/02r3e0967', 'en', 1, 'https://ror.org/02r3e0967 St. Jude Children''s Research Hospital'),
(92355, 'https://ror.org/02r3zks97', 'en', 1, 'https://ror.org/02r3zks97 Fujita Health University Hospital č—¤ē”°äæå„č”›ē”Ÿå¤§å­¦ē—…é™¢'),
(92356, 'https://ror.org/02r5r0c98', 'es', 1, 'https://ror.org/02r5r0c98 Instituto Universitario Centro de Docencia, Investigación e Información en Aprendizaje'),
(92357, 'https://ror.org/02r67s833', 'de', 1, 'https://ror.org/02r67s833 Wasserstraßen-Neubauamt Hannover'),
(92358, 'https://ror.org/02r6c6d62', 'it', 1, 'https://ror.org/02r6c6d62 Regione Toscana'),
(92359, 'https://ror.org/02r6p3x40', 'id', 1, 'https://ror.org/02r6p3x40 Badan Pengelola Dana Perkebunan Kelapa Sawit'),
(92360, 'https://ror.org/02r6sy638', 'en', 1, 'https://ror.org/02r6sy638 European Association of Zoos and Aquaria'),
(92361, 'https://ror.org/02r89bf73', 'en', 1, 'https://ror.org/02r89bf73 Howard Brain Sciences Foundation'),
(92362, 'https://ror.org/02r8b4p12', 'es', 1, 'https://ror.org/02r8b4p12 Centro Científico Tecnológico - San Luis'),
(92363, 'https://ror.org/02r8qsp29', 'es', 1, 'https://ror.org/02r8qsp29 Hospital de QuipuƩ'),
(92364, 'https://ror.org/02ra57676', 'en', 1, 'https://ror.org/02ra57676 Packet Clearing House'),
(92365, 'https://ror.org/02rae8q23', 'id', 1, 'https://ror.org/02rae8q23 Sekolah Tinggi Ilmu Ekonomi Mulia Pratama'),
(92366, 'https://ror.org/02rbemf16', 'es', 1, 'https://ror.org/02rbemf16 Universidad de Ciencias MƩdicas de Villa Clara'),
(92367, 'https://ror.org/02rdthx75', 'en', 1, 'https://ror.org/02rdthx75 Institute of Higher Education of NAES of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вищої освіти ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії пеГагогічних наук Україн'),
(92368, 'https://ror.org/02rec2820', 'no', 1, 'https://ror.org/02rec2820 L. Meltzers HĆøyskolefond'),
(92369, 'https://ror.org/02rg88k70', 'en', 0, 'https://ror.org/02rg88k70 Ministry of Fisheries and Coastal Affairs'),
(92370, 'https://ror.org/02rj8cx55', 'en', 1, 'https://ror.org/02rj8cx55 Alabama Space Grant Consortium'),
(92371, 'https://ror.org/02rn2an47', 'en', 1, 'https://ror.org/02rn2an47 Launceston General Hospital'),
(92372, 'https://ror.org/02rrh0b30', 'de', 1, 'https://ror.org/02rrh0b30 Landesarchiv Baden Württemberg'),
(92373, 'https://ror.org/02rs6vz87', 'cs', 1, 'https://ror.org/02rs6vz87 Karel KomĆ”rek Proměny Foundation, Nadace Proměny Karla KomĆ”rka'),
(92374, 'https://ror.org/02rv1bf67', 'fr', 1, 'https://ror.org/02rv1bf67 Centre de Recherche de l''Institut de DƩmographie de l''UniversitƩ Paris 1'),
(92375, 'https://ror.org/02rxnmn30', 'en', 1, 'https://ror.org/02rxnmn30 Minnesota Department of Agriculture'),
(92376, 'https://ror.org/02s0rxx79', 'de', 1, 'https://ror.org/02s0rxx79 Deutsche Diabetes Gesellschaft'),
(92377, 'https://ror.org/02s31tk17', 'en', 1, 'https://ror.org/02s31tk17 Marine Environmental Observation Prediction and Response Network'),
(92378, 'https://ror.org/02s3xwp33', 'en', 1, 'https://ror.org/02s3xwp33 Central European University - Budapest Campus'),
(92379, 'https://ror.org/02s42x260', 'en', 1, 'https://ror.org/02s42x260 International Space Station'),
(92380, 'https://ror.org/02s42ys89', 'en', 1, 'https://ror.org/02s42ys89 Pacific Northwest Research Station'),
(92381, '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'),
(92382, 'https://ror.org/02s99ck98', 'en', 1, 'https://ror.org/02s99ck98 Mercy University'),
(92383, 'https://ror.org/02saske07', 'en', 1, 'https://ror.org/02saske07 Kootenay National Park Parc national Kootenay'),
(92384, 'https://ror.org/02sbbq532', 'no_lang_code', 1, 'https://ror.org/02sbbq532 Australian Pork (Australia)'),
(92385, 'https://ror.org/02sck9v68', 'en', 1, 'https://ror.org/02sck9v68 ISEAS - Yusof Ishak Institute, Institute of Southeast Asian Studies ę±å—äŗžē ”ē©¶ę‰€'),
(92386, 'https://ror.org/02scpdz59', 'en', 1, 'https://ror.org/02scpdz59 Thanh Do University ĐẔi hį»c ThĆ nh ĐƓ'),
(92387, 'https://ror.org/02se4yf44', 'no_lang_code', 1, 'https://ror.org/02se4yf44 Trescal'),
(92388, 'https://ror.org/02sf5td35', 'en', 1, 'https://ror.org/02sf5td35 Macao Polytechnic University Universidade PolitĆ©cnica de Macau 澳門理巄大學'),
(92389, 'https://ror.org/02sjhqg84', 'id', 1, 'https://ror.org/02sjhqg84 Politeknik Kesehatan Kemenkes Kendari, Poltekkes Kemenkes Kendari'),
(92390, 'https://ror.org/02skrr217', 'es', 1, 'https://ror.org/02skrr217 Centro de Recursos Naturales Renovables de la Zona SemiƔrida'),
(92391, 'https://ror.org/02sqgkj21', 'es', 1, 'https://ror.org/02sqgkj21 Universidad de La Sabana University of La Sabana'),
(92392, 'https://ror.org/02srjwa75', 'en', 1, 'https://ror.org/02srjwa75 Parkview Mirro Center for Research and Innovation'),
(92393, 'https://ror.org/02srqfw71', 'fr', 1, 'https://ror.org/02srqfw71 Centre MƩdical de La Teppe'),
(92394, 'https://ror.org/02sryfh37', 'it', 1, 'https://ror.org/02sryfh37 Fondazione di Sardegna'),
(92395, 'https://ror.org/02sshz518', 'en', 1, 'https://ror.org/02sshz518 Western Illinois University'),
(92396, 'https://ror.org/02stxms94', 'de', 1, 'https://ror.org/02stxms94 Zentrum für Konstruktive Erziehungswissenschaft'),
(92397, 'https://ror.org/02sv7b189', 'en', 1, 'https://ror.org/02sv7b189 Arizona Department of Libraries, Archives and Public Records'),
(92398, 'https://ror.org/02swb7a46', 'en', 1, 'https://ror.org/02swb7a46 High School of Music of Sakha'),
(92399, 'https://ror.org/02sxnp368', 'en', 1, 'https://ror.org/02sxnp368 Forest Economic Research Institute ęž—ę„­ēµŒęøˆē ”ē©¶ę‰€'),
(92400, 'https://ror.org/02sz60b38', 'no_lang_code', 0, 'https://ror.org/02sz60b38 Sigma Technologies International (United States)'),
(92401, 'https://ror.org/02t19h583', 'en', 1, 'https://ror.org/02t19h583 Jaamacada Lafoole Lafoole University'),
(92402, 'https://ror.org/02t1bej08', 'en', 1, 'https://ror.org/02t1bej08 Monash Health'),
(92403, 'https://ror.org/02t26g637', 'en', 1, 'https://ror.org/02t26g637 Leibniz Institute of Ecological Urban and Regional Development Leibniz-Institut für ökologische Raumentwicklung'),
(92404, 'https://ror.org/02t4ckn04', 'no_lang_code', 1, 'https://ror.org/02t4ckn04 Phase 3D (United States)'),
(92405, 'https://ror.org/02t6gq889', 'es', 1, 'https://ror.org/02t6gq889 Instituto de Investigaciones Fisicoquímicas Teóricas y Aplicadas'),
(92406, 'https://ror.org/02t73gn69', 'en', 1, 'https://ror.org/02t73gn69 African Bird Club'),
(92407, 'https://ror.org/02tc2qe44', 'en', 1, 'https://ror.org/02tc2qe44 General Hospital of Rhodes Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī”ĻŒĪ“ĪæĻ…'),
(92408, 'https://ror.org/02td1nn43', 'en', 1, 'https://ror.org/02td1nn43 Parc national Ukkusiksalik Ukkusiksalik National Park'),
(92409, 'https://ror.org/02td2bv47', 'no_lang_code', 1, 'https://ror.org/02td2bv47 Vermaat Technics (Netherlands)'),
(92410, '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'),
(92411, 'https://ror.org/02thjp576', 'no_lang_code', 1, 'https://ror.org/02thjp576 eScire'),
(92412, 'https://ror.org/02tkjx303', 'es', 1, 'https://ror.org/02tkjx303 Centro Nacional de Alta TecnologĆ­a National Center for High Technology'),
(92413, 'https://ror.org/02tm07923', 'de', 1, 'https://ror.org/02tm07923 Deutschen Ornithologen-Gesellschaft e.V. German Ornithologists’ Society'),
(92414, 'https://ror.org/02tphfq59', 'en', 1, 'https://ror.org/02tphfq59 National University of Rosario Universidad Nacional de Rosario'),
(92415, 'https://ror.org/02tppqb69', 'en', 1, 'https://ror.org/02tppqb69 Indiana Health Information Exchange'),
(92416, 'https://ror.org/02twcfp32', 'en', 1, 'https://ror.org/02twcfp32 Crossref'),
(92417, 'https://ror.org/02txa8h30', 'en', 1, 'https://ror.org/02txa8h30 NOAA National Weather Service Eastern Region'),
(92418, 'https://ror.org/02txrtk05', 'en', 0, 'https://ror.org/02txrtk05 Minerals and Energy Research Institute of Western Australia'),
(92419, 'https://ror.org/02tzcfr91', 'en', 1, 'https://ror.org/02tzcfr91 Theoretical Physics and Mathematics Advancement Foundation ā€œBASISā€ ФонГ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ теоретической физики Šø математики Ā«Š‘ŠŠ—Š˜Š”Ā»'),
(92420, 'https://ror.org/02v2g5f10', 'en', 1, 'https://ror.org/02v2g5f10 Russian State Academy of Intellectual Property Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŠ½Ń‚ŠµŠ»Š»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Š¾Š¹ собственности'),
(92421, 'https://ror.org/02v39xy13', 'es', 0, 'https://ror.org/02v39xy13 Hospital de Sabadell'),
(92422, 'https://ror.org/02v4wmf32', 'en', 1, 'https://ror.org/02v4wmf32 NOAA National Marine Fisheries Service Greater Atlantic Regional Fisheries Office'),
(92423, 'https://ror.org/02v4yxp84', 'no_lang_code', 1, 'https://ror.org/02v4yxp84 State Grid Hebei Electric Power Company å›½ē½‘ę²³åŒ—ēœē”µåŠ›ęœ‰é™å…¬åø'),
(92424, 'https://ror.org/02v51az37', 'en', 1, 'https://ror.org/02v51az37 Saint-Petersburg Humanitarian University of Trade Unions'),
(92425, 'https://ror.org/02v69n451', 'en', 1, 'https://ror.org/02v69n451 Gulf Islands National Park Reserve RĆ©serve de parc national des Ǝles-Gulf'),
(92426, 'https://ror.org/02v8f6d18', 'en', 1, 'https://ror.org/02v8f6d18 KROK University KROK Üni̇versi̇tesi̇ Universidad de ā€œKROKā€ UniversitĆ© Ā«KROKĀ» Університет Ā«ŠšŠ ŠžŠšĀ» įƒ”įƒ™įƒįƒœįƒįƒ›įƒ˜įƒ™įƒ˜įƒ”įƒ įƒ“įƒ įƒ”įƒįƒ›įƒįƒ įƒ—įƒšįƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ ā€œKROKā€ ā€œKROKā€ Universitet'),
(92427, 'https://ror.org/02v970d04', 'en', 1, 'https://ror.org/02v970d04 Information Processing Society of Japan ęƒ…å ±å‡¦ē†å­¦ä¼š'),
(92428, 'https://ror.org/02vabsf11', 'no_lang_code', 1, 'https://ror.org/02vabsf11 3i (United Kingdom)'),
(92429, 'https://ror.org/02vdhzt47', 'no_lang_code', 1, 'https://ror.org/02vdhzt47 OmniVision Technologies (Norway)'),
(92430, 'https://ror.org/02venad53', 'no_lang_code', 1, 'https://ror.org/02venad53 Robert Bosch (United States)'),
(92431, 'https://ror.org/02vkaa689', 'en', 1, 'https://ror.org/02vkaa689 Linac Coherent Light Source'),
(92432, 'https://ror.org/02vkhpx62', 'no_lang_code', 0, 'https://ror.org/02vkhpx62 Elektrobit (Germany)'),
(92433, 'https://ror.org/02vkzd588', 'es', 1, 'https://ror.org/02vkzd588 Instituto Nacional del CƔncer National Cancer Institute'),
(92434, 'https://ror.org/02vnwa888', 'fr', 0, 'https://ror.org/02vnwa888 Sciences Techniques Ɖducation Formation'),
(92435, 'https://ror.org/02vpd1162', 'en', 1, 'https://ror.org/02vpd1162 Specialist People Foundation'),
(92436, 'https://ror.org/02vpsdb40', 'en', 1, 'https://ror.org/02vpsdb40 New York University Shanghai 上海纽约大学'),
(92437, 'https://ror.org/02vrpve57', 'es', 1, 'https://ror.org/02vrpve57 Instituto Geológico Minero y Metalúrgico'),
(92438, 'https://ror.org/02vsmry93', 'tr', 1, 'https://ror.org/02vsmry93 Türk Tarih Kurumu'),
(92439, 'https://ror.org/02vt2xa24', 'es', 1, 'https://ror.org/02vt2xa24 Institute of Cognitive and Behavioural Neurology Instituto de NeurologĆ­a Cognitiva'),
(92440, 'https://ror.org/02vt3a358', 'en', 1, 'https://ror.org/02vt3a358 Filozofski inŔtitut Institute of Philosophy'),
(92441, 'https://ror.org/02vtjfj13', 'en', 1, 'https://ror.org/02vtjfj13 Shanghai Theatre Academy äøŠęµ·ęˆå‰§å­¦é™¢'),
(92442, 'https://ror.org/02vwykf33', 'fr', 1, 'https://ror.org/02vwykf33 ISEN MƩditerranƩe'),
(92443, 'https://ror.org/02vxa7b29', 'en', 1, 'https://ror.org/02vxa7b29 Canadian University Society for Intercollegiate Debate'),
(92444, 'https://ror.org/02vzfsx67', 'fr', 1, 'https://ror.org/02vzfsx67 AcadƩmie de recherche et d''enseignement supƩrieur'),
(92445, 'https://ror.org/02w030k33', 'en', 1, 'https://ror.org/02w030k33 Ministry of Education وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ…'),
(92446, 'https://ror.org/02w0kg036', 'en', 1, 'https://ror.org/02w0kg036 National Centre for the Replacement Refinement and Reduction of Animals in Research'),
(92447, 'https://ror.org/02w1e0787', 'no_lang_code', 1, 'https://ror.org/02w1e0787 Advantech (United States)'),
(92448, 'https://ror.org/02w23ky30', 'en', 1, 'https://ror.org/02w23ky30 Beijing Municipal Ecology and Environment Bureau åŒ—äŗ¬åø‚ē”Ÿę€ēŽÆå¢ƒå±€'),
(92449, 'https://ror.org/02w3v0826', 'fr', 0, 'https://ror.org/02w3v0826 Institut Nanosciences et CryogƩnie'),
(92450, 'https://ror.org/02w459h37', 'no_lang_code', 1, 'https://ror.org/02w459h37 Sovremennyi Gomunitarnyi University'),
(92451, 'https://ror.org/02w7n8v98', 'no_lang_code', 1, 'https://ror.org/02w7n8v98 Osakakita Teishin Hospital å¤§é˜ŖåŒ—é€“äæ”ē—…é™¢'),
(92452, 'https://ror.org/02w86e729', 'en', 1, 'https://ror.org/02w86e729 American Studies Association'),
(92453, 'https://ror.org/02wapf283', 'es', 1, 'https://ror.org/02wapf283 Centro de Investigación Epidemiológica en Salud Sexual y Reproductiva'),
(92454, 'https://ror.org/02wcaw311', 'en', 1, 'https://ror.org/02wcaw311 Experimental Security University'),
(92455, 'https://ror.org/02wd6rd97', 'en', 1, 'https://ror.org/02wd6rd97 Družbenomedicinski inŔtitut Sociomedical Institute'),
(92456, 'https://ror.org/02wdczb11', 'en', 0, 'https://ror.org/02wdczb11 Serlin Maternity Hospital'),
(92457, 'https://ror.org/02wfaf751', 'es', 1, 'https://ror.org/02wfaf751 Universidad Privada Del Chaco'),
(92458, 'https://ror.org/02wgnr390', 'en', 1, 'https://ror.org/02wgnr390 Italian University Line UniversitĆ  telematica'),
(92459, 'https://ror.org/02wgt3820', 'en', 1, 'https://ror.org/02wgt3820 Dayton Children''s Hospital'),
(92460, 'https://ror.org/02whvdc07', 'az', 1, 'https://ror.org/02whvdc07 Bakı Asiya Universiteti'),
(92461, 'https://ror.org/02wnaj108', 'en', 1, 'https://ror.org/02wnaj108 Ufa University of Science and Technology Уфимский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ науки Šø технологий'),
(92462, 'https://ror.org/02wqsss46', 'en', 1, 'https://ror.org/02wqsss46 National Sugar Institute'),
(92463, 'https://ror.org/02wrw6058', 'it', 1, 'https://ror.org/02wrw6058 Biblioteca di Storia Moderna e Contemporanea'),
(92464, 'https://ror.org/02ws49r51', 'en', 1, 'https://ror.org/02ws49r51 Nuclear Energy Research Institute'),
(92465, 'https://ror.org/02wtj7z45', 'en', 1, 'https://ror.org/02wtj7z45 Gemini South Observatory'),
(92466, 'https://ror.org/02wvar244', 'en', 1, 'https://ror.org/02wvar244 EMERGENCY'),
(92467, 'https://ror.org/02wwfdn93', 'en', 1, 'https://ror.org/02wwfdn93 National Metrology Laboratory of the Philippines'),
(92468, 'https://ror.org/02wxr8x18', 'en', 1, 'https://ror.org/02wxr8x18 Research England'),
(92469, 'https://ror.org/02wzabb26', 'fr', 1, 'https://ror.org/02wzabb26 UniversitƩ William Booth'),
(92470, 'https://ror.org/02x0wxr53', 'en', 1, 'https://ror.org/02x0wxr53 NOAA National Weather Service Office of Science and Technology Integration'),
(92471, 'https://ror.org/02x0y0j09', 'fr', 1, 'https://ror.org/02x0y0j09 Ɖcole Nationale d''Administration'),
(92472, 'https://ror.org/02x3xhs38', 'da', 1, 'https://ror.org/02x3xhs38 Oticon Foundation William Demant Fonden'),
(92473, 'https://ror.org/02x412q60', 'fi', 1, 'https://ror.org/02x412q60 Naturskyddsstiftelsen i Finland Suomen Luonnonsuojelun SƤƤtiƶ The Finnish Foundation for Nature Conservation'),
(92474, 'https://ror.org/02x4dn920', 'es', 1, 'https://ror.org/02x4dn920 Real Sociedad EspaƱola de Quƭmica'),
(92475, 'https://ror.org/02x59s656', 'en', 1, 'https://ror.org/02x59s656 Alagappa Chettiar Government College of Engineering and Technology'),
(92476, 'https://ror.org/02x5a4z89', 'en', 0, 'https://ror.org/02x5a4z89 Argosy University'),
(92477, 'https://ror.org/02x8svs93', 'en', 1, 'https://ror.org/02x8svs93 Near East University Yakın Doğu Üniversitesi'),
(92478, 'https://ror.org/02x8t8q15', 'en', 1, 'https://ror.org/02x8t8q15 Badan Standardisasi Instrumen Pertanian Indonesian Agency for Agricultural Instruments Standardization'),
(92479, 'https://ror.org/02xa99s59', 'en', 1, 'https://ror.org/02xa99s59 Maine Space Grant Consortium'),
(92480, 'https://ror.org/02xawj363', 'no_lang_code', 1, 'https://ror.org/02xawj363 Research Institute of Measuring Devices (Russia) ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŠ·Š¼ŠµŃ€ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… приборов — ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ завоГ имени ŠšŠ¾Š¼ŠøŠ½Ń‚ерна'),
(92481, 'https://ror.org/02xbk5j62', 'en', 1, 'https://ror.org/02xbk5j62 Banner - University Medical Center Tucson Centro mƩdico de la Universidad de Arizona'),
(92482, 'https://ror.org/02xbr5r10', 'en', 1, 'https://ror.org/02xbr5r10 HM Prison Service'),
(92483, 'https://ror.org/02xccmw71', 'en', 0, 'https://ror.org/02xccmw71 The Courtald Institute of Art'),
(92484, 'https://ror.org/02xcybn77', 'en', 1, 'https://ror.org/02xcybn77 Hitachi Global Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ē«‹č²”å›£'),
(92485, 'https://ror.org/02xe1zz23', 'no_lang_code', 1, 'https://ror.org/02xe1zz23 Humanitarian Institute Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(92486, 'https://ror.org/02xe89706', 'no_lang_code', 1, 'https://ror.org/02xe89706 John Wiley & Sons (United States)'),
(92487, 'https://ror.org/02xfkgs74', 'en', 1, 'https://ror.org/02xfkgs74 Supreme Court of the United States'),
(92488, 'https://ror.org/02xh0jw52', 'en', 1, 'https://ror.org/02xh0jw52 National Consensus Project for Quality Palliative Care'),
(92489, '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'),
(92490, 'https://ror.org/02xqc6638', 'no_lang_code', 1, 'https://ror.org/02xqc6638 Bristol-Myers Squibb (Switzerland)'),
(92491, 'https://ror.org/02xqjct79', 'id', 1, 'https://ror.org/02xqjct79 Universitas Indonesia Membangun'),
(92492, 'https://ror.org/02xredb51', 'fr', 1, 'https://ror.org/02xredb51 Ɖcole Nationale SupĆ©rieure d''Architecture et de Paysage de Lille'),
(92493, 'https://ror.org/02xt4jj17', 'en', 1, 'https://ror.org/02xt4jj17 Showa University Koto Toyosu Hospital ę˜­å’Œå¤§å­¦ę±Ÿę±č±Šę“²ē—…é™¢'),
(92494, 'https://ror.org/02xtnzw59', 'de', 1, 'https://ror.org/02xtnzw59 Doerner Institut'),
(92495, 'https://ror.org/02xw19753', 'no_lang_code', 1, 'https://ror.org/02xw19753 BioReka (United States)'),
(92496, 'https://ror.org/02xwr1996', 'en', 1, 'https://ror.org/02xwr1996 Grains Research and Development Corporation'),
(92497, 'https://ror.org/02y123g31', 'en', 1, 'https://ror.org/02y123g31 Takeda Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗę­¦ē”°ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(92498, 'https://ror.org/02y1rjh68', 'en', 1, 'https://ror.org/02y1rjh68 Virginia Innovation Partnership Corporation'),
(92499, 'https://ror.org/02y2bp537', 'no_lang_code', 1, 'https://ror.org/02y2bp537 Sustainable Innovations Europe (Spain)'),
(92500, 'https://ror.org/02y485920', 'en', 1, 'https://ror.org/02y485920 U.S. Coastal Research Program'),
(92501, 'https://ror.org/02y5f7c97', 'en', 1, 'https://ror.org/02y5f7c97 Association of Universities For Research In Astronomy'),
(92502, 'https://ror.org/02y5m7j45', 'en', 1, 'https://ror.org/02y5m7j45 Laikipia University'),
(92503, 'https://ror.org/02y5mkh60', 'en', 1, 'https://ror.org/02y5mkh60 Herzog August Bibliothek Herzog August Library'),
(92504, 'https://ror.org/02y6cph55', 'en', 1, 'https://ror.org/02y6cph55 Rhode Island Foundation'),
(92505, 'https://ror.org/02y7nf053', 'en', 1, 'https://ror.org/02y7nf053 NaturvƄrdsverket Ruotsin luonnonsuojeluvirasto Swedish Environmental Protection Agency'),
(92506, 'https://ror.org/02ybcvv09', 'en', 1, 'https://ror.org/02ybcvv09 Technological University Lashio'),
(92507, 'https://ror.org/02yc50c51', 'en', 1, 'https://ror.org/02yc50c51 Bulgarian Water Association Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š°ŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ по воГите'),
(92508, 'https://ror.org/02yewpr08', 'en', 1, 'https://ror.org/02yewpr08 Eesti Kirjandusmuuseum Estonian Literary Museum'),
(92509, 'https://ror.org/02yg0nm07', 'en', 1, 'https://ror.org/02yg0nm07 Universidad de Puerto Rico University of Puerto Rico System'),
(92510, 'https://ror.org/02yh39302', 'en', 1, 'https://ror.org/02yh39302 Delphi University'),
(92511, 'https://ror.org/02yhmtm27', 'en', 0, 'https://ror.org/02yhmtm27 Ames Aeronautical Laboratory'),
(92512, 'https://ror.org/02yjqwr70', 'en', 1, 'https://ror.org/02yjqwr70 Triangle Center for Evolutionary Medicine'),
(92513, 'https://ror.org/02yjy0144', 'en', 1, 'https://ror.org/02yjy0144 Health & Hospital Corporation of Marion County'),
(92514, 'https://ror.org/02ypac508', 'en', 1, 'https://ror.org/02ypac508 HCR Manor Care'),
(92515, 'https://ror.org/02ypxbp79', 'es', 1, 'https://ror.org/02ypxbp79 Costa Rican Institute of Electricity Instituto Costarricense de Electricidad'),
(92516, 'https://ror.org/02yq59v27', 'en', 1, 'https://ror.org/02yq59v27 International Psychogeriatric Association'),
(92517, 'https://ror.org/02yqjxa29', 'en', 0, 'https://ror.org/02yqjxa29 University Hospital of North Staffordshire NHS Trust'),
(92518, 'https://ror.org/02yrqby68', 'no_lang_code', 1, 'https://ror.org/02yrqby68 MGI åŽå¤§ę™ŗé€ '),
(92519, 'https://ror.org/02yrxdp92', 'en', 1, 'https://ror.org/02yrxdp92 Yunnan Provincial Department of Education äŗ‘å—ēœę•™č‚²åŽ…'),
(92520, 'https://ror.org/02yskj382', 'en', 1, 'https://ror.org/02yskj382 South Carolina Department of Alcohol and Other Drug Abuse Services'),
(92521, 'https://ror.org/02yt3b208', 'no_lang_code', 1, 'https://ror.org/02yt3b208 Sicambeni Rural University'),
(92522, 'https://ror.org/02ywxzr29', 'en', 1, 'https://ror.org/02ywxzr29 Brighton International University'),
(92523, 'https://ror.org/02yy35806', 'no_lang_code', 1, 'https://ror.org/02yy35806 AmƩlie - Ʃtudes environnementales et archƩologiques (France)'),
(92524, 'https://ror.org/02z0mvz29', 'en', 1, 'https://ror.org/02z0mvz29 NASA Safety Center'),
(92525, 'https://ror.org/02z0qe787', 'en', 1, 'https://ror.org/02z0qe787 Hawaii Space Grant Consortium'),
(92526, 'https://ror.org/02z31cn83', 'en', 1, 'https://ror.org/02z31cn83 Ministry of Electronics and Information Technology ą¤‡ą¤²ą„‡ą¤•ą„ą¤Ÿą„ą¤°ą„‰ą¤Øą¤æą¤•ą„€ और ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(92527, 'https://ror.org/02z3f5j48', 'fr', 1, 'https://ror.org/02z3f5j48 Diabète athérothrombose et thérapies Réunion Océan Indien'),
(92528, 'https://ror.org/02z5nms51', 'en', 1, 'https://ror.org/02z5nms51 Murayama Medical Center å›½ē«‹ē—…é™¢ę©Ÿę§‹ ę‘å±±åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(92529, 'https://ror.org/02z88n164', 'en', 1, 'https://ror.org/02z88n164 Manipal University College Malaysia'),
(92530, 'https://ror.org/02z8ech05', 'no_lang_code', 0, 'https://ror.org/02z8ech05 Shire (Australia)'),
(92531, 'https://ror.org/02z8j1p10', 'en', 1, 'https://ror.org/02z8j1p10 Meat & Livestock Australia'),
(92532, 'https://ror.org/02z8wa502', 'en', 1, 'https://ror.org/02z8wa502 Judith Jane Mason and Harold Stannett Williams Memorial Foundation'),
(92533, 'https://ror.org/02z9cxd24', 'en', 0, 'https://ror.org/02z9cxd24 Center for Social Inclusion'),
(92534, 'https://ror.org/02zaw3f73', 'no_lang_code', 0, 'https://ror.org/02zaw3f73 Fidelity Comtech (United States)'),
(92535, 'https://ror.org/02zb4t009', 'en', 1, 'https://ror.org/02zb4t009 Chinese People''s Liberation Army Navy Hospital of Guangzhou'),
(92536, 'https://ror.org/02zbht716', 'en', 1, 'https://ror.org/02zbht716 Austrian Neuroscience Association Ɩsterreichische Gesellschaft für Neurowissenschaften'),
(92537, 'https://ror.org/02zbz4g27', 'en', 0, 'https://ror.org/02zbz4g27 International Federation of Library Associations and Institutions'),
(92538, 'https://ror.org/02zcamj98', 'en', 1, 'https://ror.org/02zcamj98 Muscular Dystrophy UK'),
(92539, 'https://ror.org/02zfbyq93', 'no_lang_code', 1, 'https://ror.org/02zfbyq93 Shino-Test Corporation ć‚·ćƒŽćƒ†ć‚¹ćƒˆ'),
(92540, 'https://ror.org/02zg03225', 'en', 1, 'https://ror.org/02zg03225 Korea Hydrographic and Oceanographic Agency åœ‹ē«‹ęµ·ę“‹čŖæęŸ»é™¢ 국립핓양씰사원'),
(92541, 'https://ror.org/02zhqgq86', 'en', 1, 'https://ror.org/02zhqgq86 University of Hong Kong'),
(92542, 'https://ror.org/02zphgp70', 'fr', 0, 'https://ror.org/02zphgp70 REseau NAtional de Rpe interDisciplinaire'),
(92543, 'https://ror.org/02zrae794', 'en', 1, 'https://ror.org/02zrae794 Stockholm County Council Stockholms lƤns landsting Tukholman lƤƤnin maakƤrƤjƤkunta'),
(92544, 'https://ror.org/02zrtve16', 'en', 1, 'https://ror.org/02zrtve16 Shanghai Hospital Development Center äøŠęµ·ē”³åŗ·åŒ»é™¢å‘å±•äø­åæƒ'),
(92545, 'https://ror.org/02zta5505', 'en', 1, 'https://ror.org/02zta5505 Noble Research Institute'),
(92546, 'https://ror.org/02zttza43', 'es', 1, 'https://ror.org/02zttza43 Ministerio de Salud PĆŗblica'),
(92547, 'https://ror.org/02zvw6748', 'en', 1, 'https://ror.org/02zvw6748 Center for the Advancement of Science in Space'),
(92548, 'https://ror.org/02zyjt610', 'en', 1, 'https://ror.org/02zyjt610 Veterinary Research Institute'),
(92549, 'https://ror.org/0301hkr79', 'cs', 1, 'https://ror.org/0301hkr79 Ekodomov'),
(92550, 'https://ror.org/030251k37', 'en', 1, 'https://ror.org/030251k37 Minnesota Soybean Research and Promotion Council'),
(92551, 'https://ror.org/03037cz33', 'en', 1, 'https://ror.org/03037cz33 SRH Berlin School of Design and Communication'),
(92552, 'https://ror.org/03053v606', 'en', 1, 'https://ror.org/03053v606 National Institute of Telecommunications'),
(92553, 'https://ror.org/0307k1x46', 'en', 1, 'https://ror.org/0307k1x46 CSIR National Physical Laboratory of India ą¤øą„€ą¤ą¤øą¤†ą¤ˆą¤†ą¤°-ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤­ą„Œą¤¤ą¤æą¤• ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(92554, 'https://ror.org/0307vw222', 'es', 1, 'https://ror.org/0307vw222 Universidad Nacional Experimental Sur del Lago "JesĆŗs MarĆ­a Semprum"'),
(92555, 'https://ror.org/0308crw96', 'en', 1, 'https://ror.org/0308crw96 Divine Mercy University'),
(92556, 'https://ror.org/0308j5838', 'en', 1, 'https://ror.org/0308j5838 Nordic Cancer Union'),
(92557, 'https://ror.org/03098p783', 'no_lang_code', 0, 'https://ror.org/03098p783 Librede (United States)'),
(92558, 'https://ror.org/030a5r161', 'en', 1, 'https://ror.org/030a5r161 Westerdijk Fungal Biodiversity Institute'),
(92559, 'https://ror.org/030br0314', 'en', 1, 'https://ror.org/030br0314 Notre Dame University – Louaize Ų¬Ų§Ł…Ų¹Ų© سيدة Ų§Ł„Ł„ŁˆŁŠŲ²Ų©'),
(92560, 'https://ror.org/030c7mj81', 'en', 1, 'https://ror.org/030c7mj81 Offield Family Foundation'),
(92561, 'https://ror.org/030cw3k54', 'en', 1, 'https://ror.org/030cw3k54 Moscow Psycho-Social University Московский психолого-ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(92562, 'https://ror.org/030ea6w47', 'en', 1, 'https://ror.org/030ea6w47 NOAA Physical Sciences Laboratory'),
(92563, 'https://ror.org/030enq015', 'en', 1, 'https://ror.org/030enq015 Shanghai Science and Technology Development Foundation äøŠęµ·ē§‘ęŠ€å‘å±•åŸŗé‡‘ä¼š'),
(92564, 'https://ror.org/030g1n548', 'en', 1, 'https://ror.org/030g1n548 Canada’s Oil Sands Innovation Alliance'),
(92565, 'https://ror.org/030h91v78', 'no_lang_code', 1, 'https://ror.org/030h91v78 Yuracko and Hewitt Sustainable Global Solutions (United States)'),
(92566, 'https://ror.org/030h97456', 'es', 1, 'https://ror.org/030h97456 Universidad Pedagógica Veracruzana'),
(92567, 'https://ror.org/030hp3092', 'de', 1, 'https://ror.org/030hp3092 Fritz Bauer Institut'),
(92568, 'https://ror.org/030kz4198', 'en', 1, 'https://ror.org/030kz4198 Scientific Advanced Learning Technologies ą¤øą¤¾ą¤‡ą¤‚ą¤Ÿą¤æą¤«ą¤æą¤• ą¤ą¤”ą¤µą¤¾ą¤‚ą¤ø ą¤²ą¤°ą„ą¤Øą¤æą¤‚ą¤— ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€ą¤œ (ą¤ą¤øą¤ą¤ą¤²ą¤Ÿą„€) ą¤Ÿą„ą¤°ą¤øą„ą¤Ÿ'),
(92569, 'https://ror.org/030p9nw74', 'en', 1, 'https://ror.org/030p9nw74 Department of Local Government, Sport and Cultural Industries'),
(92570, 'https://ror.org/030pf1a09', 'en', 1, 'https://ror.org/030pf1a09 Webster University Orlando'),
(92571, 'https://ror.org/030q96973', 'no_lang_code', 1, 'https://ror.org/030q96973 Helix Biostructures (United States)'),
(92572, 'https://ror.org/030qxdf23', 'es', 1, 'https://ror.org/030qxdf23 Instituto de Fisica de Liquidos y Sistemas Biologicos'),
(92573, 'https://ror.org/030sa8630', 'en', 1, 'https://ror.org/030sa8630 Jinja District Health Directorate'),
(92574, 'https://ror.org/030wr4654', 'en', 1, 'https://ror.org/030wr4654 Graduate Fellowships for STEM Diversity'),
(92575, 'https://ror.org/030xrgd02', 'no', 1, 'https://ror.org/030xrgd02 Oslo Nye HĆøyskole'),
(92576, 'https://ror.org/030yben02', 'sv', 1, 'https://ror.org/030yben02 Waldemar von Frenckells Stiftelse'),
(92577, 'https://ror.org/0310sdb05', 'no_lang_code', 1, 'https://ror.org/0310sdb05 Syngenta (France)'),
(92578, 'https://ror.org/031141b54', 'en', 1, 'https://ror.org/031141b54 Youth Innovation Promotion Association é™¢é’å¹“åˆ›ę–°äæƒčæ›ä¼š'),
(92579, 'https://ror.org/0311h6702', 'no_lang_code', 1, 'https://ror.org/0311h6702 Nuance Communications (United States)'),
(92580, 'https://ror.org/0312hfy93', 'en', 1, 'https://ror.org/0312hfy93 Biochemical Society'),
(92581, 'https://ror.org/03135ed07', 'de', 1, 'https://ror.org/03135ed07 Wasserstraßen- und Schifffahrtsamt Weser'),
(92582, 'https://ror.org/0313jb750', 'en', 1, 'https://ror.org/0313jb750 Chinese Academy of Agricultural Sciences äø­å›½å†œäøšē§‘å­¦é™¢'),
(92583, 'https://ror.org/03141x181', 'en', 0, 'https://ror.org/03141x181 Krasnoyarsk State Agrarian University ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(92584, 'https://ror.org/031478740', 'en', 1, 'https://ror.org/031478740 Office of Scientific and Technical Information'),
(92585, 'https://ror.org/0315saa81', 'en', 1, 'https://ror.org/0315saa81 Peer Community In'),
(92586, 'https://ror.org/03161d176', 'es', 1, 'https://ror.org/03161d176 Instituto de GeografĆ­a Tropical'),
(92587, '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'),
(92588, 'https://ror.org/0318da180', 'en', 1, 'https://ror.org/0318da180 Guyana National Bureau of Standards'),
(92589, 'https://ror.org/0318hx909', 'en', 1, 'https://ror.org/0318hx909 Northern Ireland Chest Heart and Stroke'),
(92590, 'https://ror.org/031aae972', 'en', 1, 'https://ror.org/031aae972 Bangladesh Reference Institute for Chemical Measurements'),
(92591, 'https://ror.org/031bsz941', 'en', 1, 'https://ror.org/031bsz941 Hospital Adventist Penang Adventist Hospital ę§Ÿå®‰åŒ»é™¢'),
(92592, 'https://ror.org/031d6d035', 'en', 1, 'https://ror.org/031d6d035 Institute of Slovenian Ethnology InŔtitut za slovensko narodopisje'),
(92593, 'https://ror.org/031dk8f13', 'en', 1, 'https://ror.org/031dk8f13 International University of Batam Universitas Internasional Batam'),
(92594, 'https://ror.org/031dp5151', 'en', 1, 'https://ror.org/031dp5151 Earth-Life Science Institute'),
(92595, 'https://ror.org/031e8e542', 'en', 1, 'https://ror.org/031e8e542 CODELCO'),
(92596, 'https://ror.org/031fdgn16', 'en', 1, 'https://ror.org/031fdgn16 Institute of Sustainable Halophyte Utilization'),
(92597, 'https://ror.org/031gqrq04', 'en', 1, 'https://ror.org/031gqrq04 Meteorological Research Institute 気豔庁気豔研究所'),
(92598, 'https://ror.org/031h41563', 'en', 1, 'https://ror.org/031h41563 Jeppiaar Engineering College ą®œąÆ†ą®ŖąÆą®Ŗą®æą®Æą®¾ą®°ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(92599, 'https://ror.org/031npzc88', 'no_lang_code', 1, 'https://ror.org/031npzc88 Mahle (Germany)'),
(92600, 'https://ror.org/031p18647', 'no_lang_code', 1, 'https://ror.org/031p18647 Sylvatex (United States)'),
(92601, 'https://ror.org/031q21x57', 'en', 1, 'https://ror.org/031q21x57 Universidad de Wisconsin–Milwaukee University of Wisconsin–Milwaukee UniversitĆ© du Wisconsin–Milwaukee'),
(92602, 'https://ror.org/031q76697', 'en', 1, 'https://ror.org/031q76697 The Dulverton Trust'),
(92603, 'https://ror.org/031sp1p50', 'en', 1, 'https://ror.org/031sp1p50 Forest Products Laboratory'),
(92604, 'https://ror.org/031t68441', 'en', 1, 'https://ror.org/031t68441 Shanghai University of International Business and Economics äøŠęµ·åÆ¹å¤–ē»č“øå¤§å­¦'),
(92605, 'https://ror.org/031tfbz57', 'en', 1, 'https://ror.org/031tfbz57 Worldwide Cancer Research'),
(92606, 'https://ror.org/031tfsa37', 'no_lang_code', 1, 'https://ror.org/031tfsa37 Medtronic (Japan) ęœ¬ćƒ”ćƒ‰ćƒˆćƒ­ćƒ‹ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(92607, 'https://ror.org/031wk8e50', 'no_lang_code', 1, 'https://ror.org/031wk8e50 AlphaPortfolio (United States)'),
(92608, 'https://ror.org/031xcxv56', 'no_lang_code', 1, 'https://ror.org/031xcxv56 Protagonist Therapeutics (Australia)'),
(92609, 'https://ror.org/031xfkk69', 'en', 1, 'https://ror.org/031xfkk69 European Values EvropskƩ hodnoty'),
(92610, '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'),
(92611, 'https://ror.org/031zh6285', 'en', 1, 'https://ror.org/031zh6285 Illinois Arts Council Agency'),
(92612, 'https://ror.org/031zhc582', 'id', 1, 'https://ror.org/031zhc582 Institut Teknologi dan Bisnis Palcomtech'),
(92613, 'https://ror.org/031zps173', 'en', 1, 'https://ror.org/031zps173 Jiangsu Ocean University ę±Ÿč‹ęµ·ę“‹å¤§å­¦'),
(92614, 'https://ror.org/03200rt26', 'en', 1, 'https://ror.org/03200rt26 Portland Press'),
(92615, 'https://ror.org/0321dtg43', 'en', 1, 'https://ror.org/0321dtg43 Environmental Smoke Institute'),
(92616, 'https://ror.org/0323hgh72', 'no_lang_code', 1, 'https://ror.org/0323hgh72 Ion Beam Applications (France)'),
(92617, 'https://ror.org/032778302', 'no_lang_code', 1, 'https://ror.org/032778302 First Consulting Group (United States)'),
(92618, 'https://ror.org/032837421', 'en', 1, 'https://ror.org/032837421 Kaloji Narayana Rao University of Health Sciences ą°•ą°¾ą°³ą±‹ą°œą°æ నారాయణ రావు ą°†ą°°ą±‹ą°—ą±ą°Æ ą°µą°æą°œą±ą°žą°¾ą°Ø ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(92619, 'https://ror.org/032900178', 'no_lang_code', 1, 'https://ror.org/032900178 EVER Neuro Pharma (Austria)'),
(92620, 'https://ror.org/032agg760', 'en', 1, 'https://ror.org/032agg760 University of Tennessee Southern'),
(92621, 'https://ror.org/032bgnz47', 'en', 1, 'https://ror.org/032bgnz47 Cornell High Energy Synchrotron Source'),
(92622, 'https://ror.org/032ckra69', 'en', 1, 'https://ror.org/032ckra69 Minerals Research Institute of Western Australia'),
(92623, 'https://ror.org/032crvm08', 'de', 1, 'https://ror.org/032crvm08 Ernst Gƶhner Stiftung'),
(92624, 'https://ror.org/032e49973', 'en', 0, 'https://ror.org/032e49973 Ministry of Science ICT and Future Planning ėŒ€ķ•œėÆ¼źµ­ ėÆøėž˜ģ°½ģ”°ź³¼ķ•™ė¶€'),
(92625, 'https://ror.org/032ebdh83', 'de', 1, 'https://ror.org/032ebdh83 Diözesanbibliothek Münster'),
(92626, 'https://ror.org/032exky44', 'es', 1, 'https://ror.org/032exky44 MAR Health Park Parc de Salut'),
(92627, 'https://ror.org/032fvf508', 'en', 0, 'https://ror.org/032fvf508 InstitiĆŗid TeicneolaĆ­ochta Sligeach Institute of Technology Sligo'),
(92628, 'https://ror.org/032hzqh22', 'no_lang_code', 1, 'https://ror.org/032hzqh22 RECETOX'),
(92629, 'https://ror.org/032m55064', 'en', 1, 'https://ror.org/032m55064 Korea Institute of Ocean Science and Technology'),
(92630, 'https://ror.org/032mwd808', 'fr', 1, 'https://ror.org/032mwd808 Doctors Without Borders Médecins Sans Frontières'),
(92631, 'https://ror.org/032n3b254', 'de', 0, 'https://ror.org/032n3b254 Fachhochschule Oldenburg/Ostfriesland/Wilhelmshaven'),
(92632, 'https://ror.org/032nknw13', 'en', 1, 'https://ror.org/032nknw13 Casey Hospital'),
(92633, 'https://ror.org/032p1n739', 'en', 1, 'https://ror.org/032p1n739 Autonomous University of YucatÔn Universidad Autónoma de YucatÔn'),
(92634, 'https://ror.org/032rffb92', 'en', 1, 'https://ror.org/032rffb92 Niemann Pick Research Foundation'),
(92635, 'https://ror.org/032rnm225', 'no_lang_code', 1, 'https://ror.org/032rnm225 Zymtronix (United States)'),
(92636, 'https://ror.org/032sf2845', 'en', 1, 'https://ror.org/032sf2845 Lyda Hill Philanthropies'),
(92637, 'https://ror.org/032sj7v89', 'no_lang_code', 1, 'https://ror.org/032sj7v89 Enject (United States)'),
(92638, 'https://ror.org/032x9hy18', 'en', 1, 'https://ror.org/032x9hy18 United States Science Support Program'),
(92639, 'https://ror.org/032zxkx92', 'en', 1, 'https://ror.org/032zxkx92 Interactive Advertising Bureau (United States)'),
(92640, 'https://ror.org/033024615', 'en', 0, 'https://ror.org/033024615 St.Vincent Health'),
(92641, 'https://ror.org/0330gay09', 'fr', 1, 'https://ror.org/0330gay09 MorphogenĆØse du coeur'),
(92642, 'https://ror.org/0330wp883', 'en', 1, 'https://ror.org/0330wp883 Batumi Independent University'),
(92643, 'https://ror.org/03314b546', 'en', 1, 'https://ror.org/03314b546 Theresian Military Academy Theresianische MilitƤrakademie'),
(92644, 'https://ror.org/0331mqm40', 'en', 1, 'https://ror.org/0331mqm40 Jilin Province Development and Reform Commission'),
(92645, 'https://ror.org/0337ppb66', 'de', 1, 'https://ror.org/0337ppb66 Technologie-Institut für Metall und Engineering (TIME)'),
(92646, 'https://ror.org/03391z320', 'en', 1, 'https://ror.org/03391z320 Ukrainian Museum'),
(92647, 'https://ror.org/033952e86', 'no_lang_code', 0, 'https://ror.org/033952e86 Danube Integrated Circuit Engineering (Austria)'),
(92648, 'https://ror.org/033a1rv92', 'no_lang_code', 1, 'https://ror.org/033a1rv92 Hitachi High-Tech (Japan) ę—„ē«‹ćƒć‚¤ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(92649, 'https://ror.org/033a24x98', 'en', 1, 'https://ror.org/033a24x98 Banner Poison and Drug Information Center'),
(92650, 'https://ror.org/033arwq68', 'no_lang_code', 1, 'https://ror.org/033arwq68 Conagra Brands (United States)'),
(92651, 'https://ror.org/033b0a569', 'en', 1, 'https://ror.org/033b0a569 AgriFutures Australia'),
(92652, 'https://ror.org/033b0v780', 'en', 1, 'https://ror.org/033b0v780 Wenner-Gren Foundations'),
(92653, 'https://ror.org/033bb5z47', 'de', 1, 'https://ror.org/033bb5z47 Bauhaus-UniversitƤt Weimar'),
(92654, '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'),
(92655, 'https://ror.org/033k8y986', 'es', 1, 'https://ror.org/033k8y986 Centro de Estudios Tecnológicos y Universitarios'),
(92656, 'https://ror.org/033kds850', 'en', 1, 'https://ror.org/033kds850 Philomathia Foundation'),
(92657, 'https://ror.org/033kg2g02', 'en', 1, 'https://ror.org/033kg2g02 Sheppard and Lapsley Presbyterian University of Congo'),
(92658, 'https://ror.org/033mqx355', 'en', 1, 'https://ror.org/033mqx355 NOAA National Marine Fisheries Service'),
(92659, 'https://ror.org/033npx474', 'en', 1, 'https://ror.org/033npx474 GambleAware'),
(92660, 'https://ror.org/033ntwq47', 'en', 1, 'https://ror.org/033ntwq47 Khmelnytskyi Humanitarian-Pedagogical Academy Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ° Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½Š¾-пеГагогічна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(92661, 'https://ror.org/033rx1153', 'en', 1, 'https://ror.org/033rx1153 NIHR Great Ormond Street Hospital Biomedical Research Centre'),
(92662, 'https://ror.org/033x7ew36', 'no_lang_code', 0, 'https://ror.org/033x7ew36 Advanced Accelerator Applications (Italy)'),
(92663, 'https://ror.org/033xbhk97', 'en', 1, 'https://ror.org/033xbhk97 Pears Foundation');
INSERT INTO `rors` VALUES
(92664, 'https://ror.org/033yb0967', 'fr', 1, 'https://ror.org/033yb0967 Henri-Mondor University Hospital HƓpitaux Universitaires Henri-Mondor'),
(92665, 'https://ror.org/033z3kr33', 'de', 1, 'https://ror.org/033z3kr33 Alemannisches Institut'),
(92666, 'https://ror.org/033z83z59', 'fr', 1, 'https://ror.org/033z83z59 Centre d’Investigation Clinique 1436'),
(92667, 'https://ror.org/03428qp74', 'no_lang_code', 1, 'https://ror.org/03428qp74 UCB Pharma (United Kingdom)'),
(92668, 'https://ror.org/0342q2017', 'no_lang_code', 1, 'https://ror.org/0342q2017 Lucid Motors (United States)'),
(92669, 'https://ror.org/0343nmw38', 'en', 1, 'https://ror.org/0343nmw38 Nobel Foundation Nobelin sƤƤtiƶ Nobelstiftelsen'),
(92670, 'https://ror.org/03441jy26', 'en', 1, 'https://ror.org/03441jy26 Institute for Condensed Matter Physics of the National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізики конГенсованих систем'),
(92671, 'https://ror.org/0344t9m71', 'de', 1, 'https://ror.org/0344t9m71 Foundation for Data Protection Stiftung Datenschutz'),
(92672, 'https://ror.org/03460ag39', 'es', 1, 'https://ror.org/03460ag39 Instituto Superior Pedro Francisco Bono'),
(92673, 'https://ror.org/03471h083', 'no_lang_code', 0, 'https://ror.org/03471h083 Aker Solutions (Norway)'),
(92674, 'https://ror.org/03482ps02', 'en', 1, 'https://ror.org/03482ps02 National Institute of Airborne Acoustic Metrology'),
(92675, 'https://ror.org/0348f6e47', 'es', 1, 'https://ror.org/0348f6e47 Instituto de Historia Argentina y Americana "Dr. Emilio Ravignani"'),
(92676, 'https://ror.org/034900433', 'en', 0, 'https://ror.org/034900433 Ministerio de EconomĆ­a, Industria y Competitividad Ministry of Economy, Industry and Competitiveness'),
(92677, 'https://ror.org/0349vgr77', 'no_lang_code', 1, 'https://ror.org/0349vgr77 R.B. Toth Associates'),
(92678, 'https://ror.org/034bak880', 'de', 1, 'https://ror.org/034bak880 Bauer-Hollmann Stiftung'),
(92679, 'https://ror.org/034dwy508', 'en', 1, 'https://ror.org/034dwy508 Ascension St. Clare''s Hospital'),
(92680, 'https://ror.org/034evqj81', 'no_lang_code', 1, 'https://ror.org/034evqj81 Cryopep (France)'),
(92681, 'https://ror.org/034ezjs86', 'en', 1, 'https://ror.org/034ezjs86 Shushrusha Citizens'' Co-operative Hospital'),
(92682, 'https://ror.org/034ffbg36', 'no_lang_code', 1, 'https://ror.org/034ffbg36 Bayer (United States)'),
(92683, 'https://ror.org/034hnt981', 'en', 1, 'https://ror.org/034hnt981 Kingston Centre'),
(92684, 'https://ror.org/034kd8j82', 'en', 1, 'https://ror.org/034kd8j82 Tokai University Tokyo Hospital ę±ęµ·å¤§å­¦åŒ»å­¦éƒØä»˜å±žę±äŗ¬ē—…é™¢'),
(92685, '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'),
(92686, 'https://ror.org/034twpg87', 'en', 1, 'https://ror.org/034twpg87 International Union for Circumpolar Health'),
(92687, 'https://ror.org/034w22c34', 'fr', 1, 'https://ror.org/034w22c34 Epicentre'),
(92688, 'https://ror.org/034y0z725', 'en', 1, 'https://ror.org/034y0z725 Hai phong University Of Medicine and Pharmacy'),
(92689, 'https://ror.org/034y7w267', 'es', 1, 'https://ror.org/034y7w267 Universidad Tecnológico de Baja California'),
(92690, 'https://ror.org/034zsgp43', 'no_lang_code', 1, 'https://ror.org/034zsgp43 Fenris Technologies (United States)'),
(92691, 'https://ror.org/03501hp09', 'es', 1, 'https://ror.org/03501hp09 Universidad de Ecatepec'),
(92692, 'https://ror.org/0352wb750', 'en', 1, 'https://ror.org/0352wb750 Manash Kozybayev North Kazakhstan University М.ŅšŠ¾Š·Ń‹Š±Š°ŠµŠ² атынГағы Долтүстік ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– Деверо-ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М.ŠšŠ¾Š·Ń‹Š±Š°ŠµŠ²Š°'),
(92693, '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'),
(92694, 'https://ror.org/0354nax61', 'es', 1, 'https://ror.org/0354nax61 Escriba. Escuela de Escritores'),
(92695, 'https://ror.org/0356fh556', 'no_lang_code', 1, 'https://ror.org/0356fh556 Deloitte (Czechia)'),
(92696, 'https://ror.org/03583sy04', 'en', 1, 'https://ror.org/03583sy04 Federal Center of Brain Research and Neurotechnologies Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ центр мозга Šø нейротехнологий» Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(92697, 'https://ror.org/0358td721', 'en', 0, 'https://ror.org/0358td721 Lake Erie College of Osteopathic Medicine'),
(92698, 'https://ror.org/0358yps07', 'en', 1, 'https://ror.org/0358yps07 Council of Agriculture'),
(92699, 'https://ror.org/0359vrr67', 'en', 1, 'https://ror.org/0359vrr67 Gatot Soebroto Army Hospital Rumah Sakit Pusat Angkatan Darat Gatot Soebroto'),
(92700, 'https://ror.org/035ezew55', 'no_lang_code', 1, 'https://ror.org/035ezew55 PreClinOmics (United States)'),
(92701, 'https://ror.org/035g9cv42', 'en', 1, 'https://ror.org/035g9cv42 Technological University Pathein'),
(92702, 'https://ror.org/035gfy236', 'en', 1, 'https://ror.org/035gfy236 Lietuvos mokslų akademija Litewska Akademia Nauk Lithuanian Academy of Sciences ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Литвы'),
(92703, 'https://ror.org/035gvza09', 'no_lang_code', 1, 'https://ror.org/035gvza09 Axion Therapeutics (United States)'),
(92704, 'https://ror.org/035h06756', 'en', 1, 'https://ror.org/035h06756 Magtymguly Turkmen State University Magtymguly adyndaky Türkmen döwlet uniwersiteti'),
(92705, 'https://ror.org/035k1ke91', 'en', 1, 'https://ror.org/035k1ke91 JƩrƓme Lejeune Foundation'),
(92706, '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'),
(92707, 'https://ror.org/035qes868', 'en', 1, 'https://ror.org/035qes868 Global Environment Fund'),
(92708, 'https://ror.org/035qqss14', 'no_lang_code', 1, 'https://ror.org/035qqss14 BlueGreen Labs (bv) (Belgium)'),
(92709, 'https://ror.org/035rcqz84', 'fr', 1, 'https://ror.org/035rcqz84 L''HƓpital Universitaire Justinien'),
(92710, 'https://ror.org/035v3d332', 'no_lang_code', 1, 'https://ror.org/035v3d332 BIOVIA'),
(92711, 'https://ror.org/035v3tr79', 'en', 1, 'https://ror.org/035v3tr79 New Uzbekistan University Yangi O''zbekiston Universiteti'),
(92712, 'https://ror.org/036054d36', 'en', 1, 'https://ror.org/036054d36 Italian institute for Genomic Medicine'),
(92713, 'https://ror.org/03606hw36', 'en', 1, 'https://ror.org/03606hw36 University of Erfurt UniversitƤt Erfurt'),
(92714, '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'),
(92715, 'https://ror.org/03638wk09', 'en', 1, 'https://ror.org/03638wk09 American School of Classical Studies at Athens'),
(92716, 'https://ror.org/03647wj34', 'en', 1, 'https://ror.org/03647wj34 Instituto Nacional de EstadĆ­stica y GeografĆ­a National Institute of Statistics and Geography'),
(92717, 'https://ror.org/0364aqm22', 'pt', 1, 'https://ror.org/0364aqm22 Autoridade de Supervisão de Seguros e Fundos de Pensões'),
(92718, 'https://ror.org/036568k33', 'en', 1, 'https://ror.org/036568k33 National Botanical Research Institute'),
(92719, 'https://ror.org/0366j1r61', 'en', 1, 'https://ror.org/0366j1r61 Christian Museum'),
(92720, 'https://ror.org/036951752', 'es', 1, 'https://ror.org/036951752 Universidad Cristiana Latinoamericana'),
(92721, 'https://ror.org/0369pca16', 'no_lang_code', 1, 'https://ror.org/0369pca16 Formulate (Sweden)'),
(92722, 'https://ror.org/036a0fn15', 'en', 1, 'https://ror.org/036a0fn15 Pacific Southwest Research Station'),
(92723, 'https://ror.org/036a3f271', 'en', 1, 'https://ror.org/036a3f271 Institute for Medical Research Instituto de Investigaciones MƩdicas'),
(92724, 'https://ror.org/036c7vy41', 'en', 1, 'https://ror.org/036c7vy41 Central Organization for Standardization and Quality Control الجهاز Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ Ł„Ł„ŲŖŁ‚ŁŠŁŠŲ³ ŁˆŲ§Ł„Ų³ŁŠŲ·Ų±Ų© Ų§Ł„Ł†ŁˆŲ¹ŁŠŲ©'),
(92725, 'https://ror.org/036cr7267', 'en', 1, 'https://ror.org/036cr7267 California Ocean Protection Council'),
(92726, 'https://ror.org/036d5c397', 'en', 1, 'https://ror.org/036d5c397 ESCP Business School'),
(92727, 'https://ror.org/036eftk49', 'en', 1, 'https://ror.org/036eftk49 Institute for Soil Sciences Talajtani IntƩzet'),
(92728, 'https://ror.org/036gts662', 'en', 1, 'https://ror.org/036gts662 Autistica'),
(92729, 'https://ror.org/036gzhj81', 'en', 1, 'https://ror.org/036gzhj81 University of Tuzla Univerzitet u Tuzli Универзитет у Тузли'),
(92730, 'https://ror.org/036h2t531', 'fr', 1, 'https://ror.org/036h2t531 UniversitƩ PrivƩe d''Enseignement SupƩrieur El Amel'),
(92731, 'https://ror.org/036h9st94', 'en', 1, 'https://ror.org/036h9st94 St Savas Hospital'),
(92732, 'https://ror.org/036j6sg82', 'en', 1, 'https://ror.org/036j6sg82 Hospital Besar Singapura Singapore General Hospital ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®¤ąÆ‡ą®šą®æą®Æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(92733, 'https://ror.org/036jakz62', 'en', 1, 'https://ror.org/036jakz62 Clinical Research Unit Nanoro'),
(92734, 'https://ror.org/036jeby88', 'en', 0, 'https://ror.org/036jeby88 Waiariki Institute of Technology Whare Takiura o Waiariki'),
(92735, 'https://ror.org/036njap13', 'en', 1, 'https://ror.org/036njap13 Conservation Action Research Network'),
(92736, 'https://ror.org/036ragn25', 'en', 1, 'https://ror.org/036ragn25 Forschungszentrum Borstel - Leibniz Lungenzentrum Research Center Borstel - Leibniz Lung Center'),
(92737, 'https://ror.org/036segs98', 'es', 1, 'https://ror.org/036segs98 Instituto Tecnológico de las Américas'),
(92738, 'https://ror.org/036tn3p81', 'id', 1, 'https://ror.org/036tn3p81 Politeknik Negeri Tanah Laut'),
(92739, 'https://ror.org/036w7n407', 'no_lang_code', 1, 'https://ror.org/036w7n407 Best Theratronics (Canada)'),
(92740, 'https://ror.org/036wkxc84', 'no_lang_code', 1, 'https://ror.org/036wkxc84 AbbVie (Japan) ć‚¢ćƒƒćƒ“ć‚£åˆåŒä¼šē¤¾'),
(92741, 'https://ror.org/036x6gt55', 'en', 1, 'https://ror.org/036x6gt55 North Bristol NHS Trust'),
(92742, 'https://ror.org/036x93b86', 'no_lang_code', 1, 'https://ror.org/036x93b86 Fluor Marine Propulsion (United States)'),
(92743, 'https://ror.org/036z4mp18', 'en', 1, 'https://ror.org/036z4mp18 Usman Institute of Technology'),
(92744, 'https://ror.org/03711y882', 'pt', 1, 'https://ror.org/03711y882 Instituto Histórico da Ilha Terceira'),
(92745, 'https://ror.org/0377apf83', 'no_lang_code', 1, 'https://ror.org/0377apf83 Swiss Re (Switzerland)'),
(92746, 'https://ror.org/03799m784', 'es', 1, 'https://ror.org/03799m784 Fundación Williams'),
(92747, 'https://ror.org/037a8w620', 'en', 1, 'https://ror.org/037a8w620 MRC Metabolic Diseases Unit'),
(92748, 'https://ror.org/037bamf06', 'en', 1, 'https://ror.org/037bamf06 NOAA Global Ocean Monitoring and Observing Program'),
(92749, 'https://ror.org/037d2vm44', 'es', 1, 'https://ror.org/037d2vm44 Sociedad de NeurologĆ­a, PsiquiatrĆ­a y NeurocirugĆ­a'),
(92750, 'https://ror.org/037gaxk79', 'en', 1, 'https://ror.org/037gaxk79 Muley Fanatic Foundation'),
(92751, 'https://ror.org/037hcdr69', 'fr', 1, 'https://ror.org/037hcdr69 Institut SupĆ©rieur d''Informatique de Mahdia المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ© ŲØŲ§Ł„Ł…Ł‡ŲÆŁŠŲ©'),
(92752, 'https://ror.org/037hqka81', 'no_lang_code', 1, 'https://ror.org/037hqka81 Andrei Sakharov Center Centre d''AndreĆÆ Sakharov Да́харовский центр'),
(92753, 'https://ror.org/037jbhy77', 'en', 1, 'https://ror.org/037jbhy77 Association of Geographic Information Laboratories Europe'),
(92754, 'https://ror.org/037pgnn96', 'no', 1, 'https://ror.org/037pgnn96 Norges Astma- og Allergiforbund'),
(92755, 'https://ror.org/037qxb619', 'en', 0, 'https://ror.org/037qxb619 InstitiĆŗid TeicneolaĆ­ochta Tamhlacht Institute of Technology Tallaght'),
(92756, 'https://ror.org/037s0ch40', 'de', 1, 'https://ror.org/037s0ch40 Triaplus AG'),
(92757, 'https://ror.org/037styt87', 'en', 1, 'https://ror.org/037styt87 Petersburg Nuclear Physics Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ физики им.Š‘.П.ŠšŠ¾Š½ŃŃ‚Š°Š½Ń‚ŠøŠ½Š¾Š²Š°'),
(92758, 'https://ror.org/037vhb936', 'en', 1, 'https://ror.org/037vhb936 Educons University Educons Univerzitet'),
(92759, 'https://ror.org/037wqsr57', 'en', 1, 'https://ror.org/037wqsr57 Hormozgan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی هرمزگان'),
(92760, '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'),
(92761, 'https://ror.org/037xna783', 'en', 1, 'https://ror.org/037xna783 Endourological Society'),
(92762, 'https://ror.org/037y17y07', 'de', 0, 'https://ror.org/037y17y07 Rheinische Fachhochschule Neuss'),
(92763, 'https://ror.org/037zk5p77', 'en', 1, 'https://ror.org/037zk5p77 University of Houston System at Cinco Ranch'),
(92764, 'https://ror.org/0381ha386', 'no_lang_code', 1, 'https://ror.org/0381ha386 Enterprise Holdings'),
(92765, 'https://ror.org/0381t6379', 'en', 1, 'https://ror.org/0381t6379 Department of the Premier and Cabinet'),
(92766, 'https://ror.org/03837fc46', 'fr', 1, 'https://ror.org/03837fc46 Adaptateurs de Signalisation en HƩmatologie'),
(92767, 'https://ror.org/0383bnk62', 'en', 1, 'https://ror.org/0383bnk62 Fox Valley Technical College'),
(92768, 'https://ror.org/0384ea937', 'en', 1, 'https://ror.org/0384ea937 Weihai Maternal and Child Health Hospital åØęµ·åø‚å¦‡å¹¼äæå„é™¢'),
(92769, 'https://ror.org/0384rzm54', 'de', 1, 'https://ror.org/0384rzm54 Staatsinstitut für Familienforschung an der Universität Bamberg'),
(92770, 'https://ror.org/03858r716', 'en', 0, 'https://ror.org/03858r716 National Kaohsiung First University of Science and Technology'),
(92771, 'https://ror.org/0387q4e78', 'en', 1, 'https://ror.org/0387q4e78 International Community Foundation'),
(92772, 'https://ror.org/03893we55', 'en', 1, 'https://ror.org/03893we55 Zhejiang Sci-Tech University ęµ™ę±Ÿē†å·„å¤§å­¦'),
(92773, 'https://ror.org/0389z1v12', 'en', 1, 'https://ror.org/0389z1v12 Office of the Goverment ĆšÅ™ad vlĆ”dy'),
(92774, 'https://ror.org/038ajz246', 'en', 1, 'https://ror.org/038ajz246 Lambda, London Academy of Music and Dramatic Art'),
(92775, 'https://ror.org/038b8e254', 'en', 1, 'https://ror.org/038b8e254 Addis Ababa University'),
(92776, 'https://ror.org/038cbgv34', 'no_lang_code', 0, 'https://ror.org/038cbgv34 Visual Awareness Research (United States)'),
(92777, 'https://ror.org/038cnrz59', 'en', 1, 'https://ror.org/038cnrz59 The Independent Institute of Education'),
(92778, 'https://ror.org/038cy8j79', 'no_lang_code', 1, 'https://ror.org/038cy8j79 Imam Abdulrahman Bin Faisal University Ų¬Ų§Ł…Ų¹Ų© ال؄مام عبدالرحمن بن ŁŁŠŲµŁ„'),
(92779, 'https://ror.org/038drb871', 'en', 1, 'https://ror.org/038drb871 Philippe Foundation'),
(92780, 'https://ror.org/038ehsm73', 'no_lang_code', 1, 'https://ror.org/038ehsm73 Mitsubishi Tanabe Pharma Corporation ē”°č¾ŗäø‰č±č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(92781, 'https://ror.org/038g0mr08', 'tr', 1, 'https://ror.org/038g0mr08 Serik Devlet Hastanesi'),
(92782, 'https://ror.org/038g41092', 'en', 1, 'https://ror.org/038g41092 Bruce Peninsula National Park Parc national de la PƩninsule-Bruce'),
(92783, 'https://ror.org/038g7dk46', 'en', 1, 'https://ror.org/038g7dk46 Miskolci Egyetem University of Miskolc'),
(92784, 'https://ror.org/038hf8q48', 'en', 1, 'https://ror.org/038hf8q48 NOAA National Weather Service Alaska Region'),
(92785, 'https://ror.org/038jaf309', 'en', 1, 'https://ror.org/038jaf309 Bibliotheek van het Vredespaleis BibliothĆØque du Palais de la Paix Peace Palace Library'),
(92786, 'https://ror.org/038n0qb29', 'es', 1, 'https://ror.org/038n0qb29 Centro Científico Tecnológico - Patagonia Norte'),
(92787, 'https://ror.org/038qye345', 'no_lang_code', 1, 'https://ror.org/038qye345 Recordati (Spain)'),
(92788, 'https://ror.org/038rzwt76', 'en', 1, 'https://ror.org/038rzwt76 The Jones Center at Ichauway'),
(92789, 'https://ror.org/038s3xg41', 'en', 1, 'https://ror.org/038s3xg41 Tokyo Women''s Medical University Yachiyo Medical Center ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦å…«åƒä»£åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(92790, 'https://ror.org/038sf5j07', 'no_lang_code', 0, 'https://ror.org/038sf5j07 Deutsche Telekom (Germany)'),
(92791, 'https://ror.org/038sjwq14', 'en', 1, 'https://ror.org/038sjwq14 Australian Research Data Commons'),
(92792, 'https://ror.org/038v7xb98', 'en', 0, 'https://ror.org/038v7xb98 International Institute for Geo-Information Science and Earth Observation'),
(92793, 'https://ror.org/038v7z909', 'en', 0, 'https://ror.org/038v7z909 Badan Penelitian dan Pengembangan Indonesian Agency for Agricultural Research and Development'),
(92794, 'https://ror.org/038vd2393', 'en', 1, 'https://ror.org/038vd2393 Aichi Synchrotron Radiation Center ć‚ć„ć”ć‚·ćƒ³ć‚Æćƒ­ćƒˆćƒ­ćƒ³å…‰ć‚»ćƒ³ć‚æćƒ¼'),
(92795, 'https://ror.org/038vdm896', 'es', 1, 'https://ror.org/038vdm896 Universidad CLAEH'),
(92796, 'https://ror.org/038wwg650', 'en', 1, 'https://ror.org/038wwg650 Department of Agriculture'),
(92797, 'https://ror.org/038y3sz68', 'en', 1, 'https://ror.org/038y3sz68 Higher Education Commission Ł„ŁŲ¬Ł†Ū‚ Ų§Ų¹Ł„ŪŒŁ° ŲŖŲ¹Ł„ŪŒŁ…'),
(92798, 'https://ror.org/038zpvz53', 'fr', 1, 'https://ror.org/038zpvz53 Centre Hospitalier Ibn Sina'),
(92799, 'https://ror.org/0391bdf37', 'no_lang_code', 0, 'https://ror.org/0391bdf37 Kadmon Corporation (United States)'),
(92800, 'https://ror.org/0391w8d97', 'en', 1, 'https://ror.org/0391w8d97 Eskenazi Health Foundation'),
(92801, 'https://ror.org/0393cer54', 'fr', 1, 'https://ror.org/0393cer54 Centre de Recherches sur le Droit Public'),
(92802, 'https://ror.org/0394f3t90', 'no_lang_code', 1, 'https://ror.org/0394f3t90 Chemours (United States)'),
(92803, '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'),
(92804, 'https://ror.org/0395f2d85', 'pt', 1, 'https://ror.org/0395f2d85 Instituto Nacional da Mata Atlântica'),
(92805, 'https://ror.org/03961p817', 'en', 1, 'https://ror.org/03961p817 Dorothy Pattison Hospital'),
(92806, 'https://ror.org/0396t6k89', 'en', 1, 'https://ror.org/0396t6k89 Institute of Informatics & Telecommunications Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Πληροφορικής & Ī¤Ī·Ī»ĪµĻ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½'),
(92807, 'https://ror.org/0396y0w87', 'en', 1, 'https://ror.org/0396y0w87 NOAA National Marine Fisheries Service Southeast Fisheries Science Center'),
(92808, 'https://ror.org/0399mhs52', 'en', 1, 'https://ror.org/0399mhs52 Langley Research Center'),
(92809, 'https://ror.org/039bjqg32', 'en', 1, 'https://ror.org/039bjqg32 University of Warsaw Uniwersytet Warszawski'),
(92810, 'https://ror.org/039cajp98', 'en', 1, 'https://ror.org/039cajp98 Touro University Rome'),
(92811, 'https://ror.org/039eaqm23', 'en', 1, 'https://ror.org/039eaqm23 Ohio University Southern'),
(92812, 'https://ror.org/039fsvq67', 'no_lang_code', 1, 'https://ror.org/039fsvq67 Hyperion Materials & Technologies (United States)'),
(92813, 'https://ror.org/039fx6g98', 'en', 1, 'https://ror.org/039fx6g98 Nuclear Science and Technology Institute'),
(92814, 'https://ror.org/039hegs97', 'no_lang_code', 1, 'https://ror.org/039hegs97 Yara (Germany)'),
(92815, 'https://ror.org/039jjgf18', 'no_lang_code', 1, 'https://ror.org/039jjgf18 Mosadex CV (Netherlands)'),
(92816, 'https://ror.org/039pj5e32', 'en', 1, 'https://ror.org/039pj5e32 Franciscan University Rugby'),
(92817, 'https://ror.org/039qyzw66', 'en', 0, 'https://ror.org/039qyzw66 Laboratory of Chemistry, Catalysis, Polymers and Process'),
(92818, 'https://ror.org/039rrhm35', 'no_lang_code', 1, 'https://ror.org/039rrhm35 Carling Point (United Kingdom)'),
(92819, 'https://ror.org/039twdk76', 'en', 1, 'https://ror.org/039twdk76 Disability Practice Institute'),
(92820, 'https://ror.org/039vj6345', 'en', 1, 'https://ror.org/039vj6345 Ichimura Foundation of New Technology åø‚ę‘ęø…ę–°ęŠ€č”“č²”å›£'),
(92821, 'https://ror.org/039w1jh10', 'fr', 1, 'https://ror.org/039w1jh10 FƩdƩration franƧaise de cardiologie'),
(92822, 'https://ror.org/039xg1m33', 'en', 1, 'https://ror.org/039xg1m33 The Japan Society of Applied Physics åæœē”Øē‰©ē†å­¦ä¼š'),
(92823, 'https://ror.org/039yfgp64', 'en', 1, 'https://ror.org/039yfgp64 Greater Lawrence Family Health Center'),
(92824, 'https://ror.org/039ymf386', 'en', 1, 'https://ror.org/039ymf386 Charles Koch Foundation'),
(92825, 'https://ror.org/039z5ca24', 'en', 1, 'https://ror.org/039z5ca24 Salem Methodist Preschool'),
(92826, 'https://ror.org/039zhhm92', 'en', 1, 'https://ror.org/039zhhm92 Islamic Azad University, Isfahan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų®ŁˆŲ±Ų§Ų³ŚÆŲ§Ł†'),
(92827, 'https://ror.org/03a1hhg18', 'en', 1, 'https://ror.org/03a1hhg18 Government of Kenya'),
(92828, 'https://ror.org/03a4jx660', 'no_lang_code', 1, 'https://ror.org/03a4jx660 Chement (United States)'),
(92829, 'https://ror.org/03a7gbr86', 'en', 0, 'https://ror.org/03a7gbr86 Penn State Lehigh Valley'),
(92830, 'https://ror.org/03a7kkc32', 'en', 1, 'https://ror.org/03a7kkc32 Parc national des Lacs-Waterton Waterton Lakes National Park'),
(92831, 'https://ror.org/03aaa6v42', 'en', 0, 'https://ror.org/03aaa6v42 V-Continent Beijing Parkview Wuzhou Hotel'),
(92832, 'https://ror.org/03ab0at74', 'en', 1, 'https://ror.org/03ab0at74 State Key Laboratory of Digital Medical Engineering'),
(92833, 'https://ror.org/03ad32c21', 'no_lang_code', 1, 'https://ror.org/03ad32c21 Husch Blackwell LLP (United States)'),
(92834, 'https://ror.org/03adnqh21', 'no_lang_code', 1, 'https://ror.org/03adnqh21 SIRIRI'),
(92835, 'https://ror.org/03aev4v24', 'no_lang_code', 0, 'https://ror.org/03aev4v24 LymphoSign Journal (Canada)'),
(92836, 'https://ror.org/03aj2mv38', 'en', 1, 'https://ror.org/03aj2mv38 American Association of Petroleum Geologists'),
(92837, 'https://ror.org/03aj9rj02', 'en', 1, 'https://ror.org/03aj9rj02 King Saud Medical City Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ سعود Ų§Ł„Ų·ŲØŁŠŲ©'),
(92838, 'https://ror.org/03akk0h64', 'no_lang_code', 1, 'https://ror.org/03akk0h64 K&L Gates (United States)'),
(92839, 'https://ror.org/03ap2av50', 'en', 0, 'https://ror.org/03ap2av50 Max Planck Institute of Neurobiology Max-Planck-Institut für Neurobiologie'),
(92840, 'https://ror.org/03ar4fe72', 'no_lang_code', 1, 'https://ror.org/03ar4fe72 TED Conferences (United States)'),
(92841, 'https://ror.org/03arq3225', 'en', 1, 'https://ror.org/03arq3225 Michael J. Fox Foundation'),
(92842, 'https://ror.org/03ash3475', 'en', 1, 'https://ror.org/03ash3475 European AIDS Treatment Network'),
(92843, 'https://ror.org/03at7w331', 'en', 1, 'https://ror.org/03at7w331 Shanghai Municipal Commission of Health and Family Planning'),
(92844, 'https://ror.org/03av6yz68', 'no_lang_code', 1, 'https://ror.org/03av6yz68 Ichor Life Sciences (United States)'),
(92845, 'https://ror.org/03avh3680', 'en', 1, 'https://ror.org/03avh3680 Ernest Kleinwort Charitable Trust'),
(92846, 'https://ror.org/03avsjd39', 'en', 1, 'https://ror.org/03avsjd39 Amruta Sinchana Spiritual University'),
(92847, 'https://ror.org/03awpw822', 'en', 1, 'https://ror.org/03awpw822 Kutaisi Musical College'),
(92848, 'https://ror.org/03ax04633', 'de', 1, 'https://ror.org/03ax04633 Kölner Forum für Internationale Beziehungen und Sicherheitspolitik'),
(92849, 'https://ror.org/03ayjn504', 'es', 1, 'https://ror.org/03ayjn504 Instituto Tecnológico y de Estudios Superiores de Monterrey, Tecnológico de Monterrey'),
(92850, 'https://ror.org/03aym6q96', 'de', 1, 'https://ror.org/03aym6q96 Nordrhein-Westfälische Akademie der Wissenschaften und der Künste'),
(92851, 'https://ror.org/03az8b907', 'da', 1, 'https://ror.org/03az8b907 MedicinrƄdet'),
(92852, 'https://ror.org/03azy3k91', 'fr', 1, 'https://ror.org/03azy3k91 Maison des Sciences de l’Homme et de la SociĆ©tĆ© de Toulouse'),
(92853, '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'),
(92854, 'https://ror.org/03b38v557', 'en', 1, 'https://ror.org/03b38v557 Colorado Department of Natural Resources'),
(92855, 'https://ror.org/03b3tk155', 'en', 1, 'https://ror.org/03b3tk155 Cordoba Private University Ų¬Ų§Ł…Ų¹Ų© قرطبة الخاصة'),
(92856, 'https://ror.org/03b3zvp63', 'en', 1, 'https://ror.org/03b3zvp63 Kolej Universiti Tunku Abdul Rahman Tunku Abdul Rahman University of Management and Technology 拉曼大學學院'),
(92857, 'https://ror.org/03b4d6f26', 'fr', 1, 'https://ror.org/03b4d6f26 Université Paris Lumières'),
(92858, 'https://ror.org/03b5zc319', 'no_lang_code', 0, 'https://ror.org/03b5zc319 Nortel (United States)'),
(92859, 'https://ror.org/03b8ksw26', 'es', 1, 'https://ror.org/03b8ksw26 Instituto Nacional de Diabetes, Endocrinología y Nutrición'),
(92860, 'https://ror.org/03bckkk69', 'no_lang_code', 1, 'https://ror.org/03bckkk69 Pajarito Powder (United States)'),
(92861, 'https://ror.org/03bd77560', 'en', 0, 'https://ror.org/03bd77560 Institiúid Teicneolaíochta Baile Bhlainséir Institute of Technology, Blanchardstown'),
(92862, 'https://ror.org/03be3fb73', 'en', 1, 'https://ror.org/03be3fb73 National Measurement Institute'),
(92863, 'https://ror.org/03bh1kf66', 'en', 1, 'https://ror.org/03bh1kf66 Korea Association of Literature for Children and Young Adults ķ•œźµ­ģ•„ė™ģ²­ģ†Œė…„ė¬øķ•™ķ•™ķšŒ ź¶Œķ˜ģ¤€ 올림'),
(92864, 'https://ror.org/03bj0k618', 'sv', 1, 'https://ror.org/03bj0k618 RĆ„dman och Fru Ernst Collianders Stiftelse fƶr VƤlgƶrande ƄndamĆ„l'),
(92865, 'https://ror.org/03bjcbf76', 'en', 1, 'https://ror.org/03bjcbf76 ICAR - National Meat Research Institute ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ- ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ मांस ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(92866, 'https://ror.org/03bjsge15', 'en', 1, 'https://ror.org/03bjsge15 National Institute of Technology, Kochi College é«˜ēŸ„å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(92867, 'https://ror.org/03bk73w20', 'en', 1, 'https://ror.org/03bk73w20 Research Institute of Vaccines and Sera. Mechnikov of the Russian Academy of Medical Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вакцин Šø сывороток им. И.И. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(92868, 'https://ror.org/03bmq2475', 'no_lang_code', 1, 'https://ror.org/03bmq2475 Mettler-Toledo (Switzerland)'),
(92869, 'https://ror.org/03bmy7510', 'no_lang_code', 0, 'https://ror.org/03bmy7510 Cameron (Norway)'),
(92870, 'https://ror.org/03bpayg50', 'nl', 0, 'https://ror.org/03bpayg50 De Bascule'),
(92871, 'https://ror.org/03bqk3e80', 'en', 1, 'https://ror.org/03bqk3e80 National Cancer Centre Singapore'),
(92872, 'https://ror.org/03bra4w96', 'en', 1, 'https://ror.org/03bra4w96 Ministry of Education and Science ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки, молоГёжи Šø спорта Украины ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ освіти і науки України'),
(92873, 'https://ror.org/03bwkvb92', 'es', 1, 'https://ror.org/03bwkvb92 Universidad Americana'),
(92874, 'https://ror.org/03bzb3783', 'cs', 1, 'https://ror.org/03bzb3783 Karlovarský kraj, Karlovy Vary Region'),
(92875, 'https://ror.org/03c0hn950', 'en', 0, 'https://ror.org/03c0hn950 Mundelein College'),
(92876, 'https://ror.org/03c1bnn70', 'no_lang_code', 1, 'https://ror.org/03c1bnn70 Thirst-Aid (United States)'),
(92877, 'https://ror.org/03c240v55', 'en', 1, 'https://ror.org/03c240v55 American Malacological Society'),
(92878, 'https://ror.org/03c2nxn64', 'fr', 1, 'https://ror.org/03c2nxn64 Institut national du patrimoine'),
(92879, 'https://ror.org/03c52a632', 'en', 1, 'https://ror.org/03c52a632 Asia Pacific University of Technology & Innovation Universiti Teknologi dan Inovasi Asia Pasifik'),
(92880, 'https://ror.org/03c598e36', 'no_lang_code', 1, 'https://ror.org/03c598e36 European Framework Program Consulting (Israel)'),
(92881, 'https://ror.org/03c6k3q87', 'en', 1, 'https://ror.org/03c6k3q87 National Research Center for Rehabilitation Technical Aids å›½å®¶åŗ·å¤č¾…å…·ē ”ē©¶äø­åæƒ'),
(92882, 'https://ror.org/03c8pfs06', 'es', 1, 'https://ror.org/03c8pfs06 Refinadora Costarricense de Petróleo'),
(92883, 'https://ror.org/03cax2885', 'no_lang_code', 1, 'https://ror.org/03cax2885 Aptiv (Luxembourg)'),
(92884, 'https://ror.org/03cbpc337', 'en', 0, 'https://ror.org/03cbpc337 National Advisory Committee for Aeronautics'),
(92885, 'https://ror.org/03cd4ja39', 'en', 1, 'https://ror.org/03cd4ja39 Lanzhou City University å…°å·žåŸŽåø‚å­¦é™¢ę˜Æ'),
(92886, 'https://ror.org/03cg0em39', 'en', 1, 'https://ror.org/03cg0em39 Directorate General for Specifications and Measurements'),
(92887, 'https://ror.org/03cjntr43', 'no_lang_code', 1, 'https://ror.org/03cjntr43 Bio-Rad (United States)'),
(92888, 'https://ror.org/03ck9wz82', 'fr', 0, 'https://ror.org/03ck9wz82 Laboratoire Sciences de l''Univers au Cerfacs'),
(92889, 'https://ror.org/03cpe7c52', 'en', 1, 'https://ror.org/03cpe7c52 Allen Institute'),
(92890, 'https://ror.org/03cq89j92', 'fr', 1, 'https://ror.org/03cq89j92 Normandy Region RƩgion Normandie'),
(92891, 'https://ror.org/03crd9v85', 'en', 1, 'https://ror.org/03crd9v85 Palm Beach Museum of Natural History'),
(92892, 'https://ror.org/03crn0n59', 'en', 1, 'https://ror.org/03crn0n59 NOAA Pacific Marine Environmental Laboratory'),
(92893, 'https://ror.org/03cskqs60', 'en', 1, 'https://ror.org/03cskqs60 NOAA National Marine Fisheries Office of Law Enforcement'),
(92894, 'https://ror.org/03ct0te27', 'fr', 0, 'https://ror.org/03ct0te27 Phosphorylation de protƩines et Pathologies Humaines'),
(92895, 'https://ror.org/03cw2h814', 'nl', 1, 'https://ror.org/03cw2h814 Alzheimer Nederland'),
(92896, 'https://ror.org/03cwpte63', 'en', 1, 'https://ror.org/03cwpte63 Murray Darling Basin Authority'),
(92897, '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'),
(92898, 'https://ror.org/03cx3d993', 'en', 1, 'https://ror.org/03cx3d993 Ministry of Forests'),
(92899, 'https://ror.org/03cz18e20', 'en', 1, 'https://ror.org/03cz18e20 State Key Laboratory of Palaeobiology and Stratigraphy ēŽ°ä»£å¤ē”Ÿē‰©å­¦å’Œåœ°å±‚å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(92900, 'https://ror.org/03d0tpz61', 'en', 1, 'https://ror.org/03d0tpz61 Evangelical Church of Westphalia Evangelische Kirche von Westfalen'),
(92901, 'https://ror.org/03d1csj97', 'it', 1, 'https://ror.org/03d1csj97 Associazione Italiana per la Ricerca Industriale'),
(92902, 'https://ror.org/03d1mcd64', 'de', 1, 'https://ror.org/03d1mcd64 Deutsches Polen-Institut'),
(92903, 'https://ror.org/03d1zwe41', 'en', 1, 'https://ror.org/03d1zwe41 Center for Behavioral Brain Sciences'),
(92904, 'https://ror.org/03d21k332', 'en', 1, 'https://ror.org/03d21k332 Genetics Society'),
(92905, 'https://ror.org/03d2s9h69', 'no_lang_code', 1, 'https://ror.org/03d2s9h69 SYSTRA (France)'),
(92906, 'https://ror.org/03d68r583', 'es', 1, 'https://ror.org/03d68r583 Jardƭn BotƔnico de BogotƔ JosƩ Celestino Mutis'),
(92907, 'https://ror.org/03d6rdf69', 'fr', 0, 'https://ror.org/03d6rdf69 Laboratoire de MathƩmatiques Analyse, ProbabilitƩs, ModƩlisation OrlƩans'),
(92908, 'https://ror.org/03db51w68', 'en', 1, 'https://ror.org/03db51w68 Maryland Sea Grant'),
(92909, 'https://ror.org/03db5ay71', 'en', 1, 'https://ror.org/03db5ay71 Yale Peabody Museum'),
(92910, 'https://ror.org/03ddekf36', 'en', 1, 'https://ror.org/03ddekf36 Al-Khair University'),
(92911, 'https://ror.org/03dga7879', 'es', 1, 'https://ror.org/03dga7879 Instituto Tecnológico de Tijuana'),
(92912, 'https://ror.org/03dh5yq48', 'en', 1, 'https://ror.org/03dh5yq48 Falling Walls Foundation'),
(92913, 'https://ror.org/03dpaea16', 'no_lang_code', 0, 'https://ror.org/03dpaea16 SK Techx (South Korea)'),
(92914, 'https://ror.org/03draxz76', 'no_lang_code', 1, 'https://ror.org/03draxz76 Lush (United Kingdom)'),
(92915, 'https://ror.org/03drevg53', 'fr', 0, 'https://ror.org/03drevg53 HES-SO GenĆØve'),
(92916, 'https://ror.org/03dtdvk23', 'it', 0, 'https://ror.org/03dtdvk23 Consorzio Interuniversitario Risonanze Magnetiche di Metallo Proteine'),
(92917, 'https://ror.org/03dye1h57', 'en', 1, 'https://ror.org/03dye1h57 Science Hub ą¤øą¤¾ą¤‡ą¤Øą„ą¤ø हव'),
(92918, 'https://ror.org/03e1n9x27', 'es', 1, 'https://ror.org/03e1n9x27 Fundación Josep Carreras Contra la Leucemia'),
(92919, 'https://ror.org/03e2r1r87', 'fr', 1, 'https://ror.org/03e2r1r87 Ɖcole Nationale SupĆ©rieure d''Architecture de Paris-La Villette'),
(92920, 'https://ror.org/03e3xkh49', 'it', 0, 'https://ror.org/03e3xkh49 Museo tridentino di scienze naturali'),
(92921, 'https://ror.org/03e40h485', 'de', 1, 'https://ror.org/03e40h485 BIO Deutschland'),
(92922, 'https://ror.org/03e55jv37', 'en', 1, 'https://ror.org/03e55jv37 Ceipa University Foundation Fundacion Universitaria Ceipa'),
(92923, 'https://ror.org/03e5xvd80', 'en', 1, 'https://ror.org/03e5xvd80 HM Prison and Probation Service'),
(92924, 'https://ror.org/03e6tc838', 'en', 1, 'https://ror.org/03e6tc838 Kiwifruit Breeding Centre'),
(92925, 'https://ror.org/03e7f7438', 'en', 0, 'https://ror.org/03e7f7438 Haderslev Hospital Haderslev Sygehus'),
(92926, 'https://ror.org/03e86d016', 'en', 1, 'https://ror.org/03e86d016 Vakhushti Bagrationi Institute of Geography įƒ•įƒįƒ®įƒ£įƒØįƒ¢įƒ˜ įƒ‘įƒįƒ’įƒ įƒįƒ¢įƒ˜įƒįƒœįƒ˜įƒ” įƒ’įƒ”įƒįƒ’įƒ įƒįƒ¤įƒ˜įƒ˜įƒ” ინეტიტუტი'),
(92927, 'https://ror.org/03e8mf369', 'es', 1, 'https://ror.org/03e8mf369 Ministerio de Industria, EnergĆ­a y MinerĆ­a'),
(92928, 'https://ror.org/03eanvk76', 'en', 1, 'https://ror.org/03eanvk76 Glenbrook North High School'),
(92929, 'https://ror.org/03eat3z79', 'no_lang_code', 1, 'https://ror.org/03eat3z79 Agrivet Research and Advisory Pvt Ltd (India)'),
(92930, 'https://ror.org/03eavg217', 'no_lang_code', 1, 'https://ror.org/03eavg217 PulseRay (United States)'),
(92931, 'https://ror.org/03ed4e029', 'en', 1, 'https://ror.org/03ed4e029 Technological University Maubin'),
(92932, 'https://ror.org/03efe6r86', 'no_lang_code', 1, 'https://ror.org/03efe6r86 MyoKardia (United States)'),
(92933, 'https://ror.org/03efxbk04', 'no_lang_code', 1, 'https://ror.org/03efxbk04 Sigma Genosys (United States)'),
(92934, 'https://ror.org/03efzvv60', 'es', 1, 'https://ror.org/03efzvv60 Centro Científico Tecnológico - Bahía Blanca'),
(92935, 'https://ror.org/03eg88604', 'en', 1, 'https://ror.org/03eg88604 National Marine Environmental Monitoring Center'),
(92936, 'https://ror.org/03egq2t30', 'en', 1, 'https://ror.org/03egq2t30 San Bernardino County Library'),
(92937, 'https://ror.org/03ehxnz86', 'en', 1, 'https://ror.org/03ehxnz86 Community Welfare Society Hospital'),
(92938, 'https://ror.org/03ejz0s07', 'no_lang_code', 1, 'https://ror.org/03ejz0s07 Novozymes (Denmark)'),
(92939, 'https://ror.org/03ekm7858', 'en', 1, 'https://ror.org/03ekm7858 United States Army Medical Directorate - Armed Forces Research Institute of Medical Sciences'),
(92940, 'https://ror.org/03em27e03', 'en', 0, 'https://ror.org/03em27e03 Geological Survey of Austria Geologische Bundesanstalt'),
(92941, 'https://ror.org/03em45j53', 'en', 1, 'https://ror.org/03em45j53 Armstrong Flight Research Center Centro Dryden de Investigaciones de Vuelo'),
(92942, 'https://ror.org/03em6xj44', 'es', 1, 'https://ror.org/03em6xj44 Instituto de Investigación Biomédica de Salamanca'),
(92943, 'https://ror.org/03emsts46', 'fr', 0, 'https://ror.org/03emsts46 Centre MƩdical de l''Institut Pasteur'),
(92944, 'https://ror.org/03engbs88', 'en', 1, 'https://ror.org/03engbs88 National Health Fund'),
(92945, 'https://ror.org/03ep5me26', 'en', 0, 'https://ror.org/03ep5me26 Journal of Medical Insight'),
(92946, 'https://ror.org/03ep8d157', 'en', 1, 'https://ror.org/03ep8d157 Northwest Institute of Plateau Biology äø­å›½ē§‘å­¦é™¢č„æåŒ—é«˜åŽŸē”Ÿē‰©ē ”ē©¶ę‰€'),
(92947, 'https://ror.org/03erw8v43', 'no_lang_code', 0, 'https://ror.org/03erw8v43 Interoute (United Kingdom)'),
(92948, 'https://ror.org/03eta9142', 'en', 0, 'https://ror.org/03eta9142 Rowland Institute at Harvard'),
(92949, 'https://ror.org/03etaa337', 'no_lang_code', 1, 'https://ror.org/03etaa337 Sparta Systems (United States)'),
(92950, 'https://ror.org/03f20jx79', 'en', 1, 'https://ror.org/03f20jx79 Ecological Society of Australia'),
(92951, 'https://ror.org/03f2n4533', 'pl', 1, 'https://ror.org/03f2n4533 Wojewódzki Fundusz Ochrony Środowiska i Gospodarki Wodnej w Gdańsku'),
(92952, 'https://ror.org/03f3hzw14', 'en', 1, 'https://ror.org/03f3hzw14 HealthSouth Rehabilitation Hospital of Tinton Falls'),
(92953, 'https://ror.org/03f4jbs89', 'en', 1, 'https://ror.org/03f4jbs89 NOAA Chemical Sciences Laboratory'),
(92954, 'https://ror.org/03f502y28', 'en', 1, 'https://ror.org/03f502y28 Wuhan Ship Communication Research Institute ę­¦ę±‰čˆ¹čˆ¶é€šäæ”ē ”ē©¶ę‰€'),
(92955, 'https://ror.org/03f546a26', 'en', 1, 'https://ror.org/03f546a26 People''s Government of Shaanxi Province é™•č„æēœäŗŗę°‘ę”æåŗœ'),
(92956, 'https://ror.org/03fc7m932', 'en', 1, 'https://ror.org/03fc7m932 Science Media Center Germany'),
(92957, 'https://ror.org/03fcabp80', 'en', 1, 'https://ror.org/03fcabp80 European Climate, Infrastructure and Environment Executive Agency'),
(92958, 'https://ror.org/03fe2kq34', 'en', 1, 'https://ror.org/03fe2kq34 Office of Tribal Affairs and Strategic Alliances'),
(92959, 'https://ror.org/03ffgcv32', 'en', 1, 'https://ror.org/03ffgcv32 International Elephant Foundation'),
(92960, 'https://ror.org/03fgt5a62', 'fr', 0, 'https://ror.org/03fgt5a62 Laboratoire de Glaciologie et GĆ©ophysique de l’Environnement'),
(92961, 'https://ror.org/03fh5gt86', 'en', 1, 'https://ror.org/03fh5gt86 Orthophonie et Audiologie Canada Speech-Language and Audiology Canada'),
(92962, 'https://ror.org/03fkg8131', 'de', 0, 'https://ror.org/03fkg8131 Max Planck Institut für Zellbiologie Max Planck Institute for Cell Biology'),
(92963, 'https://ror.org/03fkxys09', 'en', 0, 'https://ror.org/03fkxys09 Taraz State Pedagogical University ТАРАЗ ŠœŠ•ŠœŠ›Š•ŠšŠ•Š¢Š¢Š†Šš ŠŸŠ•Š”ŠŠ“ŠžŠ“Š˜ŠšŠŠ›Š«Ņš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š†'),
(92964, 'https://ror.org/03fnfwd91', 'en', 1, 'https://ror.org/03fnfwd91 Mauritius Standards Bureau'),
(92965, 'https://ror.org/03fsqvg68', 'en', 1, 'https://ror.org/03fsqvg68 Target ALS'),
(92966, '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'),
(92967, 'https://ror.org/03fy33a80', 'en', 1, 'https://ror.org/03fy33a80 NOAA Office of Protected Resources'),
(92968, 'https://ror.org/03fy4k061', 'en', 1, 'https://ror.org/03fy4k061 Swedish Association of Public Housing'),
(92969, 'https://ror.org/03fy7b149', 'en', 1, 'https://ror.org/03fy7b149 ACT Government'),
(92970, 'https://ror.org/03fyv3102', 'es', 1, 'https://ror.org/03fyv3102 Hospital ClĆ­nico Universitario Lozano Blesa'),
(92971, 'https://ror.org/03g03ge92', 'no_lang_code', 1, 'https://ror.org/03g03ge92 Amgen (United States)'),
(92972, 'https://ror.org/03g09wg96', 'en', 0, 'https://ror.org/03g09wg96 National Measurement and Regulation Office'),
(92973, 'https://ror.org/03g267s60', 'en', 1, 'https://ror.org/03g267s60 Max Planck Institute for Biological Intelligence Max-Planck-Institut für biologische Intelligenz'),
(92974, 'https://ror.org/03g2c2k71', 'fr', 0, 'https://ror.org/03g2c2k71 Laboratoire de MathƩmatiques et Physique ThƩorique'),
(92975, 'https://ror.org/03g2cyv75', 'en', 1, 'https://ror.org/03g2cyv75 Centralkriminalpolisen Keskusrikospoliisi National Bureau of Investigation'),
(92976, 'https://ror.org/03g3m1w62', 'no_lang_code', 1, 'https://ror.org/03g3m1w62 DuPont (United States)'),
(92977, 'https://ror.org/03g5tqa50', 'en', 1, 'https://ror.org/03g5tqa50 NOAA Office of Response and Restoration'),
(92978, 'https://ror.org/03g6yjn97', 'no_lang_code', 1, 'https://ror.org/03g6yjn97 Form Energy (United States)'),
(92979, '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'),
(92980, 'https://ror.org/03g7nb016', 'en', 1, 'https://ror.org/03g7nb016 Sant Joan de DƩu Research Foundation'),
(92981, 'https://ror.org/03g8dtk63', 'no_lang_code', 1, 'https://ror.org/03g8dtk63 Synapse (Netherlands)'),
(92982, 'https://ror.org/03g9kfn98', 'en', 1, 'https://ror.org/03g9kfn98 Israa University- Palestine Ų¬Ų§Ł…Ų¹Ų© الاسراؔ-ŁŁ„Ų³Ų·ŁŠŁ†'),
(92983, 'https://ror.org/03g9t4w96', 'en', 1, 'https://ror.org/03g9t4w96 Pennsylvania Game Commission'),
(92984, 'https://ror.org/03ga8q162', 'no_lang_code', 1, 'https://ror.org/03ga8q162 Festo (Germany)'),
(92985, 'https://ror.org/03gaka986', 'en', 0, 'https://ror.org/03gaka986 Stenden University Qatar'),
(92986, 'https://ror.org/03gat5t60', 'es', 1, 'https://ror.org/03gat5t60 Secretaría Nacional de Ciencia, Tecnología e Innovación'),
(92987, 'https://ror.org/03gc8we39', 'en', 1, 'https://ror.org/03gc8we39 Spectrum-Sustainable Development Knowledge Network'),
(92988, 'https://ror.org/03gd1bh37', 'en', 0, 'https://ror.org/03gd1bh37 Thailand Research Fund'),
(92989, 'https://ror.org/03gdpyq31', 'no_lang_code', 1, 'https://ror.org/03gdpyq31 Boehringer Ingelheim (France)'),
(92990, 'https://ror.org/03gdq6t30', 'en', 1, 'https://ror.org/03gdq6t30 Iran National Standards Organization سازمان Ł…Ł„ŪŒ استاندارد'),
(92991, 'https://ror.org/03ghc4a37', 'en', 1, 'https://ror.org/03ghc4a37 Shendi University Ų¬Ų§Ł…Ų¹Ų© Ų“Ł†ŲÆŁŠ'),
(92992, 'https://ror.org/03gkj8x90', 'tr', 1, 'https://ror.org/03gkj8x90 T.C. Cumhurbaşkanlığı Külliyesi'),
(92993, 'https://ror.org/03gnn5r15', 'it', 1, 'https://ror.org/03gnn5r15 Scuola Superiore Internazionale di Studi Universitari di Ricerca e Formazione'),
(92994, 'https://ror.org/03gpapx10', 'en', 1, 'https://ror.org/03gpapx10 Instituto Rio Branco Rio Branco Institute'),
(92995, 'https://ror.org/03grk0f38', 'en', 1, 'https://ror.org/03grk0f38 University of Lynchburg'),
(92996, 'https://ror.org/03gssyp02', 'id', 1, 'https://ror.org/03gssyp02 Universitas Kejuangan 45 Jakarta'),
(92997, 'https://ror.org/03gtnmh30', 'en', 1, 'https://ror.org/03gtnmh30 Elk Island National Park Parc national Elk Island'),
(92998, 'https://ror.org/03gxjcz46', 'es', 1, 'https://ror.org/03gxjcz46 Centro Universitario Promedac'),
(92999, 'https://ror.org/03gxnrw66', 'en', 1, 'https://ror.org/03gxnrw66 The Tim and Karen Hixon Foundation'),
(93000, 'https://ror.org/03h0c3197', 'en', 1, 'https://ror.org/03h0c3197 Woman''s Cancer Foundation'),
(93001, 'https://ror.org/03h0e2s88', 'en', 1, 'https://ror.org/03h0e2s88 Institute of Marine and Coastal Research Instituto de Investigaciones Marinas y Costeras'),
(93002, 'https://ror.org/03h14v698', 'no_lang_code', 1, 'https://ror.org/03h14v698 Boston De Novo Design (United States)'),
(93003, 'https://ror.org/03h1az021', 'es', 1, 'https://ror.org/03h1az021 Universidad Metropolitana'),
(93004, 'https://ror.org/03h1she57', 'en', 1, 'https://ror.org/03h1she57 The Wolfson Family Charitable Trust'),
(93005, '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'),
(93006, 'https://ror.org/03h706g49', 'fr', 1, 'https://ror.org/03h706g49 MusƩe de l''Air et de l''Espace'),
(93007, 'https://ror.org/03h7eyw97', 'en', 0, 'https://ror.org/03h7eyw97 Shanghai Universities E-Institute for Chemical Biology'),
(93008, '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'),
(93009, 'https://ror.org/03h7x1x60', 'en', 1, 'https://ror.org/03h7x1x60 Grasslands National Park Parc national des Prairies'),
(93010, 'https://ror.org/03h800j91', 'es', 1, 'https://ror.org/03h800j91 Universidad Adventista Dominicana'),
(93011, 'https://ror.org/03h8kez92', 'no_lang_code', 1, 'https://ror.org/03h8kez92 Shoei Chemical (Japan) ę˜­ę „åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(93012, 'https://ror.org/03h954e30', 'es', 1, 'https://ror.org/03h954e30 Centro de Investigación en Materiales Avanzados'),
(93013, 'https://ror.org/03h9agz54', 'en', 0, 'https://ror.org/03h9agz54 St. Luke''s Hospital and Health Network'),
(93014, 'https://ror.org/03ha6v181', 'en', 1, 'https://ror.org/03ha6v181 National Chi Nan University åœ‹ē«‹ęšØå—åœ‹éš›å¤§å­ø'),
(93015, 'https://ror.org/03hass884', 'en', 1, 'https://ror.org/03hass884 Ernst Ruska Centre Ernst Ruska-Centrum'),
(93016, 'https://ror.org/03hcqp925', 'en', 1, 'https://ror.org/03hcqp925 Entreprenƶrskapsforum Swedish Entrepreneurship Forum'),
(93017, 'https://ror.org/03hda5c25', 'tr', 1, 'https://ror.org/03hda5c25 Gaziosmanpaşa Eğitim Ve Araştırma Hastanesi'),
(93018, 'https://ror.org/03hgfqr38', 'en', 1, 'https://ror.org/03hgfqr38 Royal Entomological Society'),
(93019, 'https://ror.org/03hh69c20', 'en', 1, 'https://ror.org/03hh69c20 Alborz University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی البرز'),
(93020, 'https://ror.org/03hhwe765', 'fr', 1, 'https://ror.org/03hhwe765 Centre de Recherche sur les Cultures et les LittƩratures EuropƩennes'),
(93021, 'https://ror.org/03hj50651', 'de', 1, 'https://ror.org/03hj50651 Hochschule Fresenius'),
(93022, 'https://ror.org/03hkqr723', 'no_lang_code', 1, 'https://ror.org/03hkqr723 HathiTrust'),
(93023, 'https://ror.org/03hkswm52', 'en', 1, 'https://ror.org/03hkswm52 Forestry Commission England'),
(93024, 'https://ror.org/03hmhdm29', 'en', 1, 'https://ror.org/03hmhdm29 NOAA Office of Climate, Water, and Weather Services'),
(93025, '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 Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ техники Šø Š½ŠµŃ„Ń‚ŠµŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š² в сельском Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Šµ'),
(93026, 'https://ror.org/03hnwy706', 'en', 1, 'https://ror.org/03hnwy706 Experimental Medicine and Biology Institute Instituto de BiologĆ­a y Medicina Experimental'),
(93027, 'https://ror.org/03hqap715', 'nl', 1, 'https://ror.org/03hqap715 Stichting Lucie Burgers'),
(93028, 'https://ror.org/03hqfa087', 'no_lang_code', 1, 'https://ror.org/03hqfa087 Pacmar Technologies (United States)'),
(93029, 'https://ror.org/03hrwak15', 'es', 1, 'https://ror.org/03hrwak15 Universidad Francisco MarroquĆ­n'),
(93030, 'https://ror.org/03hspt047', 'en', 1, 'https://ror.org/03hspt047 Melbourne Free University'),
(93031, 'https://ror.org/03ht1xw27', 'en', 1, 'https://ror.org/03ht1xw27 Tata Institute of Fundamental Research टाटा ą¤®ą„‚ą¤²ą¤­ą„‚ą¤¤ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą“Ÿą“¾ą“±ąµą“±ą“¾ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“«ą“£ąµą“Ÿą“®ąµ†ą“Øąµą“±ąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ'),
(93032, 'https://ror.org/03htexr67', 'no_lang_code', 1, 'https://ror.org/03htexr67 SociƩtƩ d''Economie Mixte (France)'),
(93033, 'https://ror.org/03j0jxk49', 'en', 1, 'https://ror.org/03j0jxk49 Ming Wai Lau Centre for Reparative Medicine'),
(93034, 'https://ror.org/03j1c4d98', 'de', 1, 'https://ror.org/03j1c4d98 Deutsche Diabetes Stiftung'),
(93035, 'https://ror.org/03j2grq76', 'no_lang_code', 1, 'https://ror.org/03j2grq76 L''Harmattan Publishing House, Budapest (Hungary) L’Harmattan Kƶnyvkiadó Kft.'),
(93036, 'https://ror.org/03j3gvk48', 'en', 1, 'https://ror.org/03j3gvk48 Karnataka Folklore University, Haveri'),
(93037, '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'),
(93038, 'https://ror.org/03j51tb87', 'no_lang_code', 1, 'https://ror.org/03j51tb87 Tįŗ­p đoĆ n Vingroup Vingroup (Vietnam)'),
(93039, 'https://ror.org/03j5qz247', 'en', 1, 'https://ror.org/03j5qz247 IU Health Foundation'),
(93040, 'https://ror.org/03j7jb078', 'en', 1, 'https://ror.org/03j7jb078 Asian Women’s Leadership University'),
(93041, 'https://ror.org/03j83x834', 'en', 1, 'https://ror.org/03j83x834 Healthy Communities Foundation'),
(93042, 'https://ror.org/03j8zte36', 'en', 0, 'https://ror.org/03j8zte36 Journal of Bone & Joint Surgery'),
(93043, 'https://ror.org/03j96nc67', 'en', 1, 'https://ror.org/03j96nc67 Central Metallurgical Research and Development Institute Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ Ų§Ł„Ł…Ų¹ŲÆŁ†ŁŠŲ© معهد Ų§Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(93044, 'https://ror.org/03j9e2j92', 'en', 1, 'https://ror.org/03j9e2j92 Stennis Space Center'),
(93045, 'https://ror.org/03j9tzj20', 'en', 1, 'https://ror.org/03j9tzj20 Northern Border University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŲÆŁˆŲÆ Ų§Ł„Ų“Ł…Ų§Ł„ŁŠŲ©'),
(93046, 'https://ror.org/03jbkky50', 'id', 1, 'https://ror.org/03jbkky50 Institut Sains dan Teknologi Terpadu Surabaya'),
(93047, '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'),
(93048, 'https://ror.org/03jd6q418', 'id', 1, 'https://ror.org/03jd6q418 Universitas Islam Nahdlatul Ulama Jepara'),
(93049, 'https://ror.org/03jk08729', 'no_lang_code', 0, 'https://ror.org/03jk08729 Tokushima Shimbun å¾³å³¶ę–°čž'),
(93050, 'https://ror.org/03jk56111', 'en', 1, 'https://ror.org/03jk56111 African Organisation for Research and Training in Cancer'),
(93051, 'https://ror.org/03js09m24', 'en', 1, 'https://ror.org/03js09m24 Chicago Botanic Garden'),
(93052, 'https://ror.org/03jttth63', 'en', 0, 'https://ror.org/03jttth63 Let People Know'),
(93053, 'https://ror.org/03jxpjf95', 'no_lang_code', 1, 'https://ror.org/03jxpjf95 DECTRIS (Switzerland)');
INSERT INTO `rors` VALUES
(93054, 'https://ror.org/03jyeb125', 'no_lang_code', 1, 'https://ror.org/03jyeb125 Deloitte (United Kingdom)'),
(93055, 'https://ror.org/03jyx2r39', 'no_lang_code', 1, 'https://ror.org/03jyx2r39 TDL Sensors (United Kingdom)'),
(93056, 'https://ror.org/03k0pmz17', 'en', 1, 'https://ror.org/03k0pmz17 International Center for Jefferson Studies at Monticello'),
(93057, 'https://ror.org/03k127966', 'en', 1, 'https://ror.org/03k127966 Orel Regional Academy of Public Administration'),
(93058, 'https://ror.org/03k2dnh74', 'no_lang_code', 1, 'https://ror.org/03k2dnh74 Zoetis (United States)'),
(93059, 'https://ror.org/03k33gq76', 'en', 1, 'https://ror.org/03k33gq76 His Majesty''s Treasury'),
(93060, 'https://ror.org/03k3vst68', 'en', 1, 'https://ror.org/03k3vst68 Foundation for Healthcare Advancement'),
(93061, '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'),
(93062, 'https://ror.org/03k6sff92', 'is', 1, 'https://ror.org/03k6sff92 Landsbókasavnið National Library of the Faroe Islands'),
(93063, 'https://ror.org/03k7cjr94', 'de', 1, 'https://ror.org/03k7cjr94 Deutsches Bergbau-Museum Bochum'),
(93064, 'https://ror.org/03k7z1z82', 'es', 1, 'https://ror.org/03k7z1z82 Museo Histórico Municipal de Ecija'),
(93065, 'https://ror.org/03k8xem21', 'en', 0, 'https://ror.org/03k8xem21 St Mark''s Hospital'),
(93066, 'https://ror.org/03k93wc57', 'en', 1, 'https://ror.org/03k93wc57 Department of Science and Technology'),
(93067, 'https://ror.org/03k9a4n36', 'en', 1, 'https://ror.org/03k9a4n36 American University of Barbados'),
(93068, 'https://ror.org/03ka3sq75', 'en', 1, 'https://ror.org/03ka3sq75 Ukrainian Centre for European Policy Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ центр Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠ¾Ń— політики'),
(93069, 'https://ror.org/03kagjz72', 'en', 1, 'https://ror.org/03kagjz72 South African Society of Haematology Suid-Afrikaanse Vereeniging vir Hematologie'),
(93070, 'https://ror.org/03kam7s13', 'de', 1, 'https://ror.org/03kam7s13 Institut für Baustoff-Forschung'),
(93071, 'https://ror.org/03kasac21', 'fr', 0, 'https://ror.org/03kasac21 Groupe de Recherche en FertilitƩ Humaine'),
(93072, 'https://ror.org/03kb2jw75', 'en', 1, 'https://ror.org/03kb2jw75 Beijing Climate Center å›½å®¶ę°”å€™äø­åæƒ'),
(93073, 'https://ror.org/03kdm3q80', 'en', 0, 'https://ror.org/03kdm3q80 Poole Hospital NHS Foundation Trust'),
(93074, 'https://ror.org/03ke5zk82', 'en', 1, 'https://ror.org/03ke5zk82 OspidƩal Ollscoile Shligigh Sligo University Hospital'),
(93075, 'https://ror.org/03kf4rc21', 'en', 1, 'https://ror.org/03kf4rc21 Ohio University Lancaster'),
(93076, 'https://ror.org/03kf77330', 'sv', 1, 'https://ror.org/03kf77330 Stiftelsen Stig och Gunborg Westman'),
(93077, 'https://ror.org/03kj6ny93', 'en', 0, 'https://ror.org/03kj6ny93 National Optical Astronomy Observatory'),
(93078, 'https://ror.org/03kkbqm48', 'en', 1, 'https://ror.org/03kkbqm48 FH JOANNEUM University of Applied Sciences FH Joanneum'),
(93079, 'https://ror.org/03kkh3m26', 'en', 1, 'https://ror.org/03kkh3m26 Shanghai Civil Aviation College äøŠęµ·ę°‘čˆŖčŒäøšęŠ€ęœÆå­¦é™¢'),
(93080, 'https://ror.org/03kmrkx02', 'de', 1, 'https://ror.org/03kmrkx02 Institut dal Dicziunari Rumantsch Grischun'),
(93081, 'https://ror.org/03kp2qt98', 'en', 1, 'https://ror.org/03kp2qt98 Ramakrishna Mission Vivekananda Educational and Research Institute ą¤°ą¤¾ą¤®ą¤•ą„ƒą¤·ą„ą¤£ मिशन ą¤µą¤æą¤µą„‡ą¤•ą¤¾ą¤Øą¤‚ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦°ą¦¾ą¦®ą¦•ą§ƒą¦·ą§ą¦£ মিশন ą¦¬ą¦æą¦¬ą§‡ą¦•ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(93082, 'https://ror.org/03kt3v622', 'it', 1, 'https://ror.org/03kt3v622 Fondazione Poliambulanza Istituto Ospedaliero'),
(93083, 'https://ror.org/03ktafk98', 'en', 1, 'https://ror.org/03ktafk98 Qatar General Organization for Standards and Metrology Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ų§Ł„Ł‚Ų·Ų±ŁŠŲ© Ł„Ł„Ł…ŁˆŲ§ŲµŁŲ§ŲŖ و Ų§Ł„Ł…Ł‚Ų§ŁŠŁŠŲ³'),
(93084, 'https://ror.org/03ktdv554', 'en', 1, 'https://ror.org/03ktdv554 Saint Vincent and the Grenadines Bureau of Standards'),
(93085, 'https://ror.org/03kv8xc26', 'en', 1, 'https://ror.org/03kv8xc26 Peterborough and Stamford Hospitals NHS Foundation Trust'),
(93086, 'https://ror.org/03kw6wr76', 'no_lang_code', 1, 'https://ror.org/03kw6wr76 Philips (United States)'),
(93087, 'https://ror.org/03kwaeq96', 'en', 1, 'https://ror.org/03kwaeq96 Population Health Research Institute'),
(93088, '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'),
(93089, 'https://ror.org/03ky85k46', 'en', 1, 'https://ror.org/03ky85k46 Cheshire and Wirral Partnership NHS Foundation Trust'),
(93090, 'https://ror.org/03m098d13', 'en', 1, 'https://ror.org/03m098d13 Damascus University Université de damas ԓՔՓՔսկոսի հՔՓՔլսՔրՔն جامعة دمؓق'),
(93091, 'https://ror.org/03m0vk445', 'en', 1, 'https://ror.org/03m0vk445 Kunming Institute of Zoology äø­å›½ē§‘å­¦é™¢ę˜†ę˜ŽåŠØē‰©ē ”ē©¶ę‰€'),
(93092, 'https://ror.org/03m109w26', 'es', 1, 'https://ror.org/03m109w26 AD&D 4D'),
(93093, 'https://ror.org/03m558m37', 'en', 1, 'https://ror.org/03m558m37 University of Pedagogical Sciences'),
(93094, 'https://ror.org/03m5qkb69', 'en', 1, 'https://ror.org/03m5qkb69 Cancer Council Australia'),
(93095, 'https://ror.org/03m6hya42', 'en', 1, 'https://ror.org/03m6hya42 Liaoning University of International Business and Economics č¾½å®åÆ¹å¤–ē»č“øå­¦é™¢'),
(93096, 'https://ror.org/03m95az28', 'en', 1, 'https://ror.org/03m95az28 Wolf Creek Charitable Foundation'),
(93097, 'https://ror.org/03mag3520', 'en', 0, 'https://ror.org/03mag3520 Catholic University of Portugals Institute for Political Studies'),
(93098, 'https://ror.org/03mamvh39', 'en', 1, 'https://ror.org/03mamvh39 Division of Equity for Excellence in STEM (EES)'),
(93099, 'https://ror.org/03man8j49', 'en', 1, 'https://ror.org/03man8j49 Carl Vogel Center'),
(93100, 'https://ror.org/03me2hz15', 'en', 1, 'https://ror.org/03me2hz15 Tamil Nadu Horticulture University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®¤ąÆ‹ą®ŸąÆą®Ÿą®•ąÆą®•ą®²ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(93101, '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'),
(93102, 'https://ror.org/03mh7j916', 'en', 1, 'https://ror.org/03mh7j916 Department of Conservation'),
(93103, 'https://ror.org/03mjwap16', 'no_lang_code', 1, 'https://ror.org/03mjwap16 Biomerica (United States)'),
(93104, 'https://ror.org/03mpa3n40', 'de', 1, 'https://ror.org/03mpa3n40 Generaldirektion Kulturelles Erbe Rheinland-Pfalz'),
(93105, 'https://ror.org/03mtk3r50', 'en', 1, 'https://ror.org/03mtk3r50 Cape Breton Highlands National Park Parc national des Hautes-Terres-du-Cap-Breton'),
(93106, 'https://ror.org/03mvawd68', 'en', 1, 'https://ror.org/03mvawd68 North Dakota University System'),
(93107, 'https://ror.org/03mx5z252', 'en', 0, 'https://ror.org/03mx5z252 University of Natural Resources and Applied Life Sciences'),
(93108, 'https://ror.org/03mxy1b19', 'en', 1, 'https://ror.org/03mxy1b19 Fonds Peregrin The Peregrine Fund'),
(93109, 'https://ror.org/03myq6178', 'no_lang_code', 1, 'https://ror.org/03myq6178 Oritain (New Zealand)'),
(93110, 'https://ror.org/03mz8ps81', 'en', 1, 'https://ror.org/03mz8ps81 International Association for Plant Taxonomy'),
(93111, 'https://ror.org/03n0ht308', 'en', 1, 'https://ror.org/03n0ht308 Economic and Social Research Council'),
(93112, 'https://ror.org/03n1avf94', 'de', 1, 'https://ror.org/03n1avf94 Konstanzer Arbeitskreis für Mittelalterliche Geschichte e.V.'),
(93113, 'https://ror.org/03n1ntw18', 'en', 1, 'https://ror.org/03n1ntw18 Foundation S'),
(93114, 'https://ror.org/03n1zj511', 'en', 0, 'https://ror.org/03n1zj511 Vienna Vaccine Safety Initiative'),
(93115, 'https://ror.org/03n320c25', 'fi', 1, 'https://ror.org/03n320c25 Niemi-sƤƤtiƶ'),
(93116, 'https://ror.org/03n39rz22', 'es', 1, 'https://ror.org/03n39rz22 Universidad de la Tercera Edad'),
(93117, 'https://ror.org/03n63vc52', 'en', 1, 'https://ror.org/03n63vc52 The Institute for Regional Conservation'),
(93118, 'https://ror.org/03n6tmk81', 'en', 1, 'https://ror.org/03n6tmk81 Ministry of Education'),
(93119, 'https://ror.org/03n6z5186', 'es', 1, 'https://ror.org/03n6z5186 CEDUC UCN'),
(93120, 'https://ror.org/03n7t0366', 'no_lang_code', 0, 'https://ror.org/03n7t0366 Calsonic Kansei (Japan) ć‚«ćƒ«ć‚½ćƒ‹ćƒƒć‚Æć‚«ćƒ³ć‚»ć‚¤'),
(93121, 'https://ror.org/03n7yzv56', 'en', 1, 'https://ror.org/03n7yzv56 Adnan Menderes University Adnan Menderes Üniversitesi'),
(93122, 'https://ror.org/03natb733', 'no_lang_code', 1, 'https://ror.org/03natb733 Hamamatsu Photonics (Japan) ęµœę¾ćƒ›ćƒˆćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(93123, 'https://ror.org/03nbxaq37', 'en', 1, 'https://ror.org/03nbxaq37 Pyongyang University of Music and Dance ź¹€ģ›ź· ķ‰ģ–‘ģŒģ•…ėŒ€ķ•™'),
(93124, 'https://ror.org/03nc1mn84', 'cs', 1, 'https://ror.org/03nc1mn84 Muzeum Brněnska'),
(93125, 'https://ror.org/03nc27g21', 'es', 0, 'https://ror.org/03nc27g21 Ministerio de Educación Cultura y Deporte Ministry of Education, Culture and Sport'),
(93126, 'https://ror.org/03ngbts32', 'no_lang_code', 1, 'https://ror.org/03ngbts32 BPS Bioscience (United States)'),
(93127, 'https://ror.org/03ngjpk76', 'no_lang_code', 1, 'https://ror.org/03ngjpk76 General Atomics (United States)'),
(93128, 'https://ror.org/03nh7vj77', 'no_lang_code', 1, 'https://ror.org/03nh7vj77 aixACCT Systems (Germany)'),
(93129, 'https://ror.org/03nhq5b06', 'en', 1, 'https://ror.org/03nhq5b06 Euphrosyne Polotskaya State University ŠŸŠ¾Š»Š°Ń†Šŗi Š“Š·ŃŃ€Š¶Š°Ć½Š½Ń‹ ýнiверсiтэт ŠŸŠ¾Š»Š¾Ń†ŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(93130, 'https://ror.org/03nj0b139', 'en', 1, 'https://ror.org/03nj0b139 Fundação Serralves Serralves, Serralves Foundation'),
(93131, 'https://ror.org/03nj29395', 'en', 1, 'https://ror.org/03nj29395 Institute of Biology of Inland Waters named Ivan Dmitrievich Papanin Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Š²Š½ŃƒŃ‚ренних воГ им. И.Š”.Папанина Российской акаГемии наук'),
(93132, 'https://ror.org/03njeds29', 'da', 1, 'https://ror.org/03njeds29 Familien Erichsens Mindefond'),
(93133, 'https://ror.org/03nkv4177', 'en', 1, 'https://ror.org/03nkv4177 Advocacy Unified Network'),
(93134, 'https://ror.org/03nm7c278', 'en', 1, 'https://ror.org/03nm7c278 Orthopterists'' Society'),
(93135, 'https://ror.org/03nm8n513', 'no_lang_code', 1, 'https://ror.org/03nm8n513 Oxford Photovoltaics (United Kingdom)'),
(93136, 'https://ror.org/03nr4p796', 'en', 1, 'https://ror.org/03nr4p796 Cariam Health'),
(93137, 'https://ror.org/03nrtgs61', 'no_lang_code', 1, 'https://ror.org/03nrtgs61 KME (Germany)'),
(93138, 'https://ror.org/03ns6aq57', 'en', 1, 'https://ror.org/03ns6aq57 Shanghai University of Medicine and Health Sciences äøŠęµ·å„åŗ·åŒ»å­¦é™¢'),
(93139, 'https://ror.org/03nv0z257', 'en', 1, 'https://ror.org/03nv0z257 Clean Aviation'),
(93140, 'https://ror.org/03nv7aj18', 'en', 1, 'https://ror.org/03nv7aj18 Tusk Trust'),
(93141, 'https://ror.org/03nvhfa76', 'no_lang_code', 1, 'https://ror.org/03nvhfa76 Metron (Greece)'),
(93142, 'https://ror.org/03p2z7827', 'es', 1, 'https://ror.org/03p2z7827 Benemérita Universidad Autónoma de Puebla Meritorious Autonomous University of Puebla'),
(93143, 'https://ror.org/03p6gt485', 'en', 1, 'https://ror.org/03p6gt485 American Medical Association'),
(93144, 'https://ror.org/03p7jen43', 'fr', 0, 'https://ror.org/03p7jen43 Direction des Sciences du Vivant Life Sciences Division'),
(93145, 'https://ror.org/03pa16y14', 'no_lang_code', 1, 'https://ror.org/03pa16y14 Elements Biosciences (United States)'),
(93146, 'https://ror.org/03pabrb21', 'en', 1, 'https://ror.org/03pabrb21 Malaria Consortium'),
(93147, 'https://ror.org/03pbhyy22', 'en', 1, 'https://ror.org/03pbhyy22 Tishk International University Ų¬Ų§Ł…Ų¹Ų© ؄يؓك'),
(93148, 'https://ror.org/03phcd550', 'no_lang_code', 1, 'https://ror.org/03phcd550 Edgewise Therapeutics (United States)'),
(93149, 'https://ror.org/03phf2w66', 'en', 0, 'https://ror.org/03phf2w66 Arthritis Research UK'),
(93150, 'https://ror.org/03phnwz81', 'fr', 1, 'https://ror.org/03phnwz81 MinistĆØre des Outre-mer'),
(93151, 'https://ror.org/03pmser87', 'en', 1, 'https://ror.org/03pmser87 Buncombe County Schools'),
(93152, 'https://ror.org/03pmw0n81', 'en', 1, 'https://ror.org/03pmw0n81 NOAA Office of Research, Transition, & Application'),
(93153, 'https://ror.org/03pn9bd47', 'no_lang_code', 1, 'https://ror.org/03pn9bd47 Sanofi (China) čµ›čÆŗč²'),
(93154, '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'),
(93155, 'https://ror.org/03pnrep18', 'de', 1, 'https://ror.org/03pnrep18 Bernd Thies-Stiftung'),
(93156, 'https://ror.org/03pnrt678', 'no_lang_code', 1, 'https://ror.org/03pnrt678 Itron (France)'),
(93157, 'https://ror.org/03ppdqr14', 'no_lang_code', 0, 'https://ror.org/03ppdqr14 Lafarge (Canada)'),
(93158, 'https://ror.org/03ppt4w11', 'en', 1, 'https://ror.org/03ppt4w11 BioloŔki inŔtitut Jovana Hadžija Jovan Hadži Institute of Biology'),
(93159, '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'),
(93160, 'https://ror.org/03pq4g524', 'en', 1, 'https://ror.org/03pq4g524 Louisiana Space Grant Consortium'),
(93161, 'https://ror.org/03pr08s76', 'es', 1, 'https://ror.org/03pr08s76 Consejo Nacional de Ciencia y TecnologĆ­a'),
(93162, 'https://ror.org/03ps0yk73', 'en', 1, 'https://ror.org/03ps0yk73 Florida International University Tianjin Center'),
(93163, 'https://ror.org/03pwy6z68', 'en', 1, 'https://ror.org/03pwy6z68 European Institute for Medical Studies'),
(93164, 'https://ror.org/03py4wj84', 'fr', 1, 'https://ror.org/03py4wj84 Institut Universitaire du BƩnin'),
(93165, 'https://ror.org/03pz4q672', 'fr', 1, 'https://ror.org/03pz4q672 Centre de Recherche en GƩographie'),
(93166, 'https://ror.org/03q020w70', 'fr', 0, 'https://ror.org/03q020w70 Biologie Structurale des Processus Cellulaires et des Agents Infectieux'),
(93167, 'https://ror.org/03q36qm19', 'pt', 1, 'https://ror.org/03q36qm19 Center for Environmental and Marine Studies Centro de Estudos Ambientais e Marinhos'),
(93168, '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 Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки "ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр морской биологии им. А.Š’. Š–ŠøŃ€Š¼ŃƒŠ½ŃŠŗŠ¾Š³Š¾" Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(93169, 'https://ror.org/03q7kf412', 'fr', 1, 'https://ror.org/03q7kf412 SantƩ MontƩrƩgie'),
(93170, 'https://ror.org/03q961f45', 'no_lang_code', 1, 'https://ror.org/03q961f45 Safran Ceramics (France)'),
(93171, 'https://ror.org/03q9apk85', 'en', 1, 'https://ror.org/03q9apk85 Victorian Heart Hospital'),
(93172, 'https://ror.org/03q9wyq75', 'en', 1, 'https://ror.org/03q9wyq75 Kherson State Agrarian and Economic University Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠøŠ¹ Гержавний аграрно-економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(93173, 'https://ror.org/03qdjzt60', 'en', 1, 'https://ror.org/03qdjzt60 Islamic Azad University, Sepidan دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų³Ł¾ŪŒŲÆŲ§Ł†'),
(93174, 'https://ror.org/03qef0j11', 'no_lang_code', 1, 'https://ror.org/03qef0j11 Citrix (United States)'),
(93175, 'https://ror.org/03qfmjv22', 'no_lang_code', 1, 'https://ror.org/03qfmjv22 IHS Markit (United Kingdom)'),
(93176, 'https://ror.org/03qh13r98', 'en', 1, 'https://ror.org/03qh13r98 Endocrine Fellows Foundation'),
(93177, 'https://ror.org/03qhfrv73', 'en', 1, 'https://ror.org/03qhfrv73 Federal College of Education, Iwo'),
(93178, 'https://ror.org/03qjp1d79', 'de', 1, 'https://ror.org/03qjp1d79 Helmholtz-Zentrum Hereon'),
(93179, 'https://ror.org/03qjq6543', 'no_lang_code', 1, 'https://ror.org/03qjq6543 CESAME-EXADEBIT (France)'),
(93180, 'https://ror.org/03qrwy954', 'en', 1, 'https://ror.org/03qrwy954 OSF Saint Francis Medical Center'),
(93181, 'https://ror.org/03qryrx52', 'en', 1, 'https://ror.org/03qryrx52 Argentine Atlantis University'),
(93182, 'https://ror.org/03qv8yq19', 'en', 1, 'https://ror.org/03qv8yq19 Toronto Western Hospital'),
(93183, 'https://ror.org/03qvyj198', 'en', 1, 'https://ror.org/03qvyj198 Higher Education Complex of Bam Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ ŲØŁ…'),
(93184, 'https://ror.org/03qzyer47', 'pt', 1, 'https://ror.org/03qzyer47 Fatec Jahu'),
(93185, 'https://ror.org/03r7d4g46', 'en', 1, 'https://ror.org/03r7d4g46 Ohsumi Frontier Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¤§éš…åŸŗē¤Žē§‘å­¦å‰µęˆč²”å›£'),
(93186, 'https://ror.org/03rbr3273', 'no_lang_code', 1, 'https://ror.org/03rbr3273 Rolex SA (Switzerland)'),
(93187, 'https://ror.org/03rbw2w25', 'en', 1, 'https://ror.org/03rbw2w25 Hainan Provincial Department of Science and Technology ęµ·å—ēœē§‘ęŠ€åŽ…'),
(93188, 'https://ror.org/03rd8mf35', 'en', 1, 'https://ror.org/03rd8mf35 AECC University College'),
(93189, 'https://ror.org/03redkt21', 'de', 1, 'https://ror.org/03redkt21 Hochschule der bildenden Künste Essen University of Fine Arts Essen'),
(93190, 'https://ror.org/03rfg1a07', 'no_lang_code', 0, 'https://ror.org/03rfg1a07 TTP (United Kingdom)'),
(93191, 'https://ror.org/03rgygs91', 'de', 1, 'https://ror.org/03rgygs91 Deutsche Allianz Meeresforschung'),
(93192, 'https://ror.org/03rhf7m59', 'en', 1, 'https://ror.org/03rhf7m59 Ocean Data Factory Sweden'),
(93193, 'https://ror.org/03rhhdt14', 'en', 1, 'https://ror.org/03rhhdt14 Flanders Hydraulics Waterbouwkundig Laboratorium'),
(93194, 'https://ror.org/03rkhb780', 'no_lang_code', 1, 'https://ror.org/03rkhb780 Bernhardt Laboratories'),
(93195, 'https://ror.org/03rmkkx43', 'es', 1, 'https://ror.org/03rmkkx43 Universidad Nacional Tecnológica'),
(93196, 'https://ror.org/03rp0mv35', 'en', 1, 'https://ror.org/03rp0mv35 Kharkiv International Medical University ŠŸŃ€ŠøŠ²Š°Ń‚Š½ŠøŠ¹ вищий Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ заклаГ "Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ міжнароГний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚"'),
(93197, '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'),
(93198, 'https://ror.org/03rqk8h36', 'en', 1, 'https://ror.org/03rqk8h36 National Chengchi University'),
(93199, 'https://ror.org/03rtq6c48', 'en', 1, 'https://ror.org/03rtq6c48 Ministry of the Environment'),
(93200, '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 Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геотехнічної механіки ім. М.Š”. ŠŸŠ¾Š»ŃŠŗŠ¾Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(93201, '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'),
(93202, 'https://ror.org/03rx10x31', 'en', 1, 'https://ror.org/03rx10x31 American Lebanese Syrian Associated Charities'),
(93203, 'https://ror.org/03rxts749', 'en', 1, 'https://ror.org/03rxts749 Institut za književnost i umetnost Institute for Literature and Art Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠŗŃšŠøŠ¶ŠµŠ²Š½Š¾ŃŃ‚ Šø ŃƒŠ¼ŠµŃ‚Š½Š¾ŃŃ‚'),
(93204, 'https://ror.org/03rzy3090', 'en', 1, 'https://ror.org/03rzy3090 American Chemistry Council'),
(93205, 'https://ror.org/03rzyb874', 'en', 1, 'https://ror.org/03rzyb874 Nahanni National Park Reserve RƩserve de parc national de Nahanni'),
(93206, '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'),
(93207, 'https://ror.org/03s1qdk24', 'en', 1, 'https://ror.org/03s1qdk24 Japan Healthcare University ę—„ęœ¬åŒ»ē™‚å¤§å­¦'),
(93208, 'https://ror.org/03s251g81', 'en', 1, 'https://ror.org/03s251g81 Universitatea din Craiova University of Craiova'),
(93209, 'https://ror.org/03s6n4r12', 'no_lang_code', 1, 'https://ror.org/03s6n4r12 Croatian Biospeleological Society Hrvatsko biospeleoloŔko druŔtvo'),
(93210, 'https://ror.org/03s7fvd27', 'no_lang_code', 1, 'https://ror.org/03s7fvd27 Sakakibara Hospital ę¦ŠåŽŸē—…é™¢'),
(93211, 'https://ror.org/03s7w3c34', 'en', 1, 'https://ror.org/03s7w3c34 State Key Laboratory of Geohazard Prevention and Geoenvironment Protection åœ°č“Øē¾å®³é˜²ę²»äøŽåœ°č“ØēŽÆå¢ƒäæęŠ¤å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93212, 'https://ror.org/03s8vf977', 'en', 0, 'https://ror.org/03s8vf977 Delivery of Advanced Network Technology to Europe (United Kingdom)'),
(93213, 'https://ror.org/03sc6wx59', 'en', 1, 'https://ror.org/03sc6wx59 Ventspils University of Applied Sciences'),
(93214, 'https://ror.org/03sf6n204', 'en', 1, 'https://ror.org/03sf6n204 Society of Urodynamics, Female Pelvic Medicine & Urogenital Reconstruction'),
(93215, 'https://ror.org/03smh8813', 'en', 1, 'https://ror.org/03smh8813 Luhansk State Medical University Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(93216, 'https://ror.org/03spkcf71', 'en', 1, 'https://ror.org/03spkcf71 Western Fire Chiefs Association'),
(93217, 'https://ror.org/03srneg48', 'en', 1, 'https://ror.org/03srneg48 Rannsóknamiưstƶư ƍslands The Icelandic Centre for Research'),
(93218, 'https://ror.org/03swjxf89', 'en', 1, 'https://ror.org/03swjxf89 Directorate-General of Antiquities and Museums Ų§Ł„Ł…ŲÆŁŠŲ±ŁŠŲ© العامة للآثار ŁˆŲ§Ł„Ł…ŲŖŲ§Ų­Łā€Ž'),
(93219, 'https://ror.org/03sxjf271', 'en', 1, 'https://ror.org/03sxjf271 Uniwersytet WSB Merito Toruń WSB Merito University in Torun'),
(93220, 'https://ror.org/03sxmek83', 'en', 1, 'https://ror.org/03sxmek83 National Open Air Museum NĆ”rodnĆ­ muzeum v přírodě'),
(93221, 'https://ror.org/03sxt1c89', 'en', 1, 'https://ror.org/03sxt1c89 Kementerian Pendidikan dan Kebudayaan Ministry of Education and Culture'),
(93222, 'https://ror.org/03szcgb58', 'fr', 0, 'https://ror.org/03szcgb58 Imagerie et ModƩlisation en Neurobiologie et CancƩrologie'),
(93223, '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. П. Григор’єва ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України»'),
(93224, 'https://ror.org/03t0qhg62', 'en', 1, 'https://ror.org/03t0qhg62 Bệnh viện Việt Nam-ThỄy Điển Vietnam Sweden hospital'),
(93225, 'https://ror.org/03t1asa17', 'en', 1, 'https://ror.org/03t1asa17 Harry Crossley Foundation'),
(93226, 'https://ror.org/03t1j6e48', 'de', 1, 'https://ror.org/03t1j6e48 Schader-Stiftung'),
(93227, 'https://ror.org/03t25rb04', 'no_lang_code', 1, 'https://ror.org/03t25rb04 Acorda Therapeutics (Finland)'),
(93228, 'https://ror.org/03t4t2e74', 'en', 0, 'https://ror.org/03t4t2e74 Kyushu Art Institute of Technology ä¹å·žčŠøč”“å·„ē§‘å¤§å­¦'),
(93229, 'https://ror.org/03tb4gf50', 'en', 1, 'https://ror.org/03tb4gf50 New South Wales Department of Health'),
(93230, 'https://ror.org/03tcpz740', 'en', 1, 'https://ror.org/03tcpz740 Parc national de Pukaskwa Pukaskwa National Park'),
(93231, 'https://ror.org/03tcq6k11', 'de', 1, 'https://ror.org/03tcq6k11 Führungsakademie der Bundeswehr'),
(93232, 'https://ror.org/03tczky53', 'en', 1, 'https://ror.org/03tczky53 Southern Alamance Middle School'),
(93233, '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'),
(93234, 'https://ror.org/03tfy8747', 'en', 1, 'https://ror.org/03tfy8747 Critical Ecosystem Partnership Fund'),
(93235, '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'),
(93236, 'https://ror.org/03tjeg502', 'en', 1, 'https://ror.org/03tjeg502 Center for Advanced Soft Electronics ģ†Œķ”„ķŠøģ¼ė ‰ķŠøė”œė‹‰ģŠ¤ģ—°źµ¬ė‹Ø'),
(93237, 'https://ror.org/03tme9506', 'de', 1, 'https://ror.org/03tme9506 Wasserstraßen- und Schifffahrtsamt Mittellandkanal / Elbe-Seitenkanal'),
(93238, 'https://ror.org/03tms4174', 'en', 1, 'https://ror.org/03tms4174 Australian Academy of Health and Medical Sciences'),
(93239, 'https://ror.org/03tpq9v45', 'en', 1, 'https://ror.org/03tpq9v45 Sapporo Shiroishi Memorial Hospital ęœ­å¹Œē™½ēŸ³čØ˜åæµē—…é™¢'),
(93240, 'https://ror.org/03tpxcy37', 'en', 0, 'https://ror.org/03tpxcy37 Regional Institute of Ophthalmology Kolkata ą¦°ą¦æą¦œą¦æą¦“ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦…ą¦Ŗą¦„ą§ą¦Æą¦¾ą¦²ą¦®ą§‹ą¦²ą¦œą¦æ'),
(93241, 'https://ror.org/03tqx2a44', 'en', 1, 'https://ror.org/03tqx2a44 Yellowstone to Yukon Conservation Initiative'),
(93242, 'https://ror.org/03tsmnr35', 'en', 1, 'https://ror.org/03tsmnr35 Seoul Graduate School of Counseling Psychology ģ„œģšøģƒė‹“ģ‹¬ė¦¬ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(93243, 'https://ror.org/03tyznx60', 'en', 0, 'https://ror.org/03tyznx60 Neuroimaging and Psychiatry'),
(93244, 'https://ror.org/03tzank54', 'en', 1, 'https://ror.org/03tzank54 Ohio Educational Technology Conference'),
(93245, 'https://ror.org/03v3py332', 'no_lang_code', 1, 'https://ror.org/03v3py332 IncellDx (United States)'),
(93246, 'https://ror.org/03v3t1916', 'es', 1, 'https://ror.org/03v3t1916 Universidad Internacional Para el Desarrollo Sostenible'),
(93247, 'https://ror.org/03v6aw108', 'no_lang_code', 0, 'https://ror.org/03v6aw108 Zodiac Aerospace (France)'),
(93248, 'https://ror.org/03v8ter60', 'en', 1, 'https://ror.org/03v8ter60 University of Zululand'),
(93249, 'https://ror.org/03va7tm69', 'en', 1, 'https://ror.org/03va7tm69 State Key Laboratory of Plateau Ecology and Agriculture ēœéƒØå…±å»ŗäø‰ę±Ÿęŗē”Ÿę€äøŽé«˜åŽŸå†œē‰§äøšå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93250, 'https://ror.org/03vaz2582', 'en', 1, 'https://ror.org/03vaz2582 Veterinary Medical Center ę±äŗ¬å¤§å­¦ å‹•ē‰©åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(93251, 'https://ror.org/03vd0cp84', 'fr', 1, 'https://ror.org/03vd0cp84 Laboratoire de sociologie, philosophie et anthropologie politiques'),
(93252, 'https://ror.org/03vd9m155', 'no_lang_code', 1, 'https://ror.org/03vd9m155 Biocon (United States)'),
(93253, 'https://ror.org/03vdjbj89', 'fr', 1, 'https://ror.org/03vdjbj89 Ɖcole Nationale SupĆ©rieure d''Architecture Paris-Val de Seine'),
(93254, 'https://ror.org/03vews725', 'en', 1, 'https://ror.org/03vews725 Rajkiya Engineering College Azamgarh'),
(93255, 'https://ror.org/03vgrpt42', 'es', 1, 'https://ror.org/03vgrpt42 Universidad St. John''s'),
(93256, 'https://ror.org/03vhx9d88', 'es', 1, 'https://ror.org/03vhx9d88 Fundación Canaria de Investigación Sanitaria'),
(93257, 'https://ror.org/03vjhzm50', 'en', 1, 'https://ror.org/03vjhzm50 Miami University Glee Club'),
(93258, 'https://ror.org/03vmn1898', 'en', 1, 'https://ror.org/03vmn1898 NOAA Geophysical Fluid Dynamics Laboratory'),
(93259, 'https://ror.org/03vnp8h67', 'en', 0, 'https://ror.org/03vnp8h67 Benenden Hospital Trust'),
(93260, 'https://ror.org/03vpdge44', 'en', 1, 'https://ror.org/03vpdge44 Lalor Foundation'),
(93261, 'https://ror.org/03vpf5j85', 'it', 1, 'https://ror.org/03vpf5j85 InLaser'),
(93262, 'https://ror.org/03vq5n859', 'en', 1, 'https://ror.org/03vq5n859 Banner Heart Hospital'),
(93263, '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'),
(93264, 'https://ror.org/03vrtgf80', 'it', 1, 'https://ror.org/03vrtgf80 INGV Osservatorio Etneo'),
(93265, 'https://ror.org/03vx94b97', 'fr', 1, 'https://ror.org/03vx94b97 CancƩropƓle Grand Ouest'),
(93266, 'https://ror.org/03vxkne37', 'es', 1, 'https://ror.org/03vxkne37 Centro Científico Tecnológico - Córdoba'),
(93267, 'https://ror.org/03vxy9y38', 'en', 1, 'https://ror.org/03vxy9y38 Jane and Aatos Erkko Foundation Jane ja Aatos Erkon sƤƤtiƶ'),
(93268, 'https://ror.org/03vz7b375', 'en', 1, 'https://ror.org/03vz7b375 Science and Technology Department of Qinghai Province é’ęµ·ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(93269, 'https://ror.org/03w04rv71', 'en', 1, 'https://ror.org/03w04rv71 Iran University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§ŪŒŲ±Ų§Ł†'),
(93270, 'https://ror.org/03w1ffx74', 'en', 0, 'https://ror.org/03w1ffx74 Unit of Neuroscience Information and Complexity UnitƩ de Neurosciences Information et ComplexitƩ'),
(93271, 'https://ror.org/03w24fg09', 'pt', 1, 'https://ror.org/03w24fg09 Fundo Nacional de Desenvolvimento da Educação'),
(93272, 'https://ror.org/03w2z6524', 'en', 1, 'https://ror.org/03w2z6524 Gansu Education Department ē”˜č‚ƒēœę•™č‚²åŽ…'),
(93273, 'https://ror.org/03w3jjj23', 'en', 1, 'https://ror.org/03w3jjj23 Peachtree Orthopaedic Clinic'),
(93274, 'https://ror.org/03w6nzd18', 'en', 1, 'https://ror.org/03w6nzd18 Cerro Tololo Inter-American Observatory'),
(93275, 'https://ror.org/03w7wc995', 'es', 1, 'https://ror.org/03w7wc995 Institución Educativa Félix Henao Botero'),
(93276, 'https://ror.org/03w8cva37', 'es', 1, 'https://ror.org/03w8cva37 Centro Científico Tecnológico - TucumÔn'),
(93277, 'https://ror.org/03w8mg215', 'no_lang_code', 1, 'https://ror.org/03w8mg215 Buddhasravaka Bhiksu University'),
(93278, 'https://ror.org/03w9d2b95', 'en', 1, 'https://ror.org/03w9d2b95 Luisenhospital Aachen'),
(93279, 'https://ror.org/03w9d5h80', 'no_lang_code', 1, 'https://ror.org/03w9d5h80 AC Diagnostics (United States)'),
(93280, 'https://ror.org/03wa9cd25', 'fr', 1, 'https://ror.org/03wa9cd25 TƩlescope Bernard Lyot'),
(93281, 'https://ror.org/03we0h094', 'no_lang_code', 1, 'https://ror.org/03we0h094 Foresight Science & Technology (United States)'),
(93282, 'https://ror.org/03wevmz92', 'en', 0, 'https://ror.org/03wevmz92 Harvard Medical School'),
(93283, 'https://ror.org/03wfqwh68', 'en', 1, 'https://ror.org/03wfqwh68 Duke University Health System'),
(93284, 'https://ror.org/03wg2yp19', 'en', 1, 'https://ror.org/03wg2yp19 Florida Center for Advanced Aero Propulsion'),
(93285, 'https://ror.org/03whmxv51', 'es', 1, 'https://ror.org/03whmxv51 Universidad Panamericana de Nuevo Laredo'),
(93286, 'https://ror.org/03whqdf70', 'en', 1, 'https://ror.org/03whqdf70 Yunnan Provincial Science and Technology Department'),
(93287, 'https://ror.org/03wjf7p35', 'en', 1, 'https://ror.org/03wjf7p35 American Society of Colon and Rectal Surgeons'),
(93288, 'https://ror.org/03wjptj96', 'no_lang_code', 1, 'https://ror.org/03wjptj96 Bracco (Italy)'),
(93289, 'https://ror.org/03wpv8896', 'en', 1, 'https://ror.org/03wpv8896 Bioproducts Institute'),
(93290, 'https://ror.org/03wr82v18', 'no_lang_code', 0, 'https://ror.org/03wr82v18 Zabala (Spain)'),
(93291, 'https://ror.org/03wx3r522', 'de', 1, 'https://ror.org/03wx3r522 Cochrane Deutschland Stiftung'),
(93292, 'https://ror.org/03wx9te92', 'no_lang_code', 1, 'https://ror.org/03wx9te92 Prevent Safety (Austria)'),
(93293, 'https://ror.org/03wxgdq82', 'pt', 1, 'https://ror.org/03wxgdq82 Campo Arqueologico de Mertola'),
(93294, 'https://ror.org/03wy7n216', 'en', 1, 'https://ror.org/03wy7n216 American Ornithological Society'),
(93295, 'https://ror.org/03wysya92', 'en', 1, 'https://ror.org/03wysya92 InfectoGnostics Research Campus Jena'),
(93296, 'https://ror.org/03x1ewr52', 'no_lang_code', 1, 'https://ror.org/03x1ewr52 Thermo Fisher Scientific (United States)'),
(93297, 'https://ror.org/03x55yk94', 'no_lang_code', 0, 'https://ror.org/03x55yk94 Sir Ratan Tata Trust and Navajbai Ratan Tata Trust'),
(93298, 'https://ror.org/03x9p2b74', 'en', 1, 'https://ror.org/03x9p2b74 Arab Private University for Science and Technology الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© الخاصة Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(93299, 'https://ror.org/03xc23y25', 'no_lang_code', 1, 'https://ror.org/03xc23y25 Geohabitat (Spain)'),
(93300, 'https://ror.org/03xdvfc72', 'no_lang_code', 1, 'https://ror.org/03xdvfc72 Waves in Solids (United States)'),
(93301, 'https://ror.org/03xedy893', 'en', 1, 'https://ror.org/03xedy893 Auckland Council Te Kaunihera o Tāmaki Makaurau'),
(93302, 'https://ror.org/03xeqqt61', 'en', 1, 'https://ror.org/03xeqqt61 International Center for Responsible Gaming'),
(93303, 'https://ror.org/03xf80p12', 'en', 1, 'https://ror.org/03xf80p12 New England Botanical Club'),
(93304, 'https://ror.org/03xfq7a50', 'fr', 1, 'https://ror.org/03xfq7a50 Centre Oscar Lambret'),
(93305, 'https://ror.org/03xgsk889', 'en', 1, 'https://ror.org/03xgsk889 Pamir University'),
(93306, 'https://ror.org/03xgxkk87', 'es', 1, 'https://ror.org/03xgxkk87 Fundación Mamíferos y Conservación'),
(93307, 'https://ror.org/03xh8px24', 'en', 1, 'https://ror.org/03xh8px24 Finnish Biomedical Imaging Node'),
(93308, 'https://ror.org/03xj0x983', 'en', 1, 'https://ror.org/03xj0x983 Colorado State University System'),
(93309, 'https://ror.org/03xkdy484', 'de', 1, 'https://ror.org/03xkdy484 Wasserstraßen- und Schifffahrtsamt Neckar'),
(93310, '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'),
(93311, 'https://ror.org/03xkm6e60', 'no_lang_code', 1, 'https://ror.org/03xkm6e60 Deloitte (United States)'),
(93312, 'https://ror.org/03xknvg10', 'en', 1, 'https://ror.org/03xknvg10 Wisconsin Potato and Vegetable Growers Association'),
(93313, 'https://ror.org/03xkyqb18', 'en', 1, 'https://ror.org/03xkyqb18 Sherman Fairchild Foundation'),
(93314, 'https://ror.org/03xpgm538', 'es', 1, 'https://ror.org/03xpgm538 Hospital de Montilla'),
(93315, 'https://ror.org/03xqffv86', 'en', 0, 'https://ror.org/03xqffv86 Royal Bournemouth and Christchurch Hospitals NHS Foundation Trust'),
(93316, 'https://ror.org/03xwwgw91', 'de', 1, 'https://ror.org/03xwwgw91 Theologische Hochschule Reutlingen'),
(93317, 'https://ror.org/03xx88d27', 'en', 1, 'https://ror.org/03xx88d27 Kaiser Permanente Moanalua Medical Center'),
(93318, 'https://ror.org/03xx98n35', 'fr', 1, 'https://ror.org/03xx98n35 Institut de Recherche pour le DƩveloppement'),
(93319, 'https://ror.org/03xy0kn06', 'fr', 1, 'https://ror.org/03xy0kn06 Universite Adventiste de Lukanga'),
(93320, 'https://ror.org/03xy3ra43', 'en', 1, 'https://ror.org/03xy3ra43 Parc national de Prince Albert Prince Albert National Park'),
(93321, 'https://ror.org/03xygw105', 'es', 1, 'https://ror.org/03xygw105 Universidad de Oriente'),
(93322, 'https://ror.org/03xz2hx98', 'en', 1, 'https://ror.org/03xz2hx98 Gansu Provincial Science and Technology Department'),
(93323, 'https://ror.org/03xzda142', 'en', 1, 'https://ror.org/03xzda142 Shanghai American School äøŠęµ·ē¾Žå›½å­¦ę ”'),
(93324, 'https://ror.org/03xzxnc47', 'es', 1, 'https://ror.org/03xzxnc47 Ministerio de Educación y Formación Profesional'),
(93325, 'https://ror.org/03y0qc033', 'fr', 1, 'https://ror.org/03y0qc033 Institut National des Sciences AppliquƩes Centre Val de Loire'),
(93326, 'https://ror.org/03y3y9v44', 'es', 1, 'https://ror.org/03y3y9v44 Universidad EAFIT'),
(93327, 'https://ror.org/03y409c56', 'es', 1, 'https://ror.org/03y409c56 Centro Universitario Integral de ZacatlƔn'),
(93328, 'https://ror.org/03y4t9m88', 'da', 1, 'https://ror.org/03y4t9m88 Beckett-Fonden'),
(93329, 'https://ror.org/03y6ba359', 'no_lang_code', 1, 'https://ror.org/03y6ba359 Australian Carbon Innovation'),
(93330, 'https://ror.org/03y6k2j68', 'es', 1, 'https://ror.org/03y6k2j68 Universidad Católica de la Santísima Concepción'),
(93331, 'https://ror.org/03y8mtb59', 'en', 1, 'https://ror.org/03y8mtb59 Jordan University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(93332, 'https://ror.org/03y9tg134', 'en', 1, 'https://ror.org/03y9tg134 Foundation for Advanced Research ФонГ перспективных исслеГований'),
(93333, 'https://ror.org/03y9yrp10', 'pt', 1, 'https://ror.org/03y9yrp10 Centro de Estudos e Pesquisas em Educação, Cultura e Ação ComunitÔria'),
(93334, 'https://ror.org/03yc0ew57', 'fr', 0, 'https://ror.org/03yc0ew57 GƩnomique Fonctionnelle des Tumeurs Solides'),
(93335, 'https://ror.org/03ycms792', 'en', 1, 'https://ror.org/03ycms792 Comissão Nacional de Energia Nuclear National Nuclear Energy Commission'),
(93336, 'https://ror.org/03yczjf25', 'es', 1, 'https://ror.org/03yczjf25 Universidad Peruana Cayetano Heredia'),
(93337, 'https://ror.org/03yj19r32', 'en', 1, 'https://ror.org/03yj19r32 Izumi City General Hospital å’Œę³‰åø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(93338, 'https://ror.org/03yk8xt33', 'no_lang_code', 1, 'https://ror.org/03yk8xt33 Shikoku Cancer Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å››å›½ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(93339, 'https://ror.org/03yn06t56', 'en', 1, 'https://ror.org/03yn06t56 NOAA Center for Satellite Applications and Research'),
(93340, 'https://ror.org/03ypqw073', 'no_lang_code', 1, 'https://ror.org/03ypqw073 Australian Eggs'),
(93341, 'https://ror.org/03ypxwh20', 'en', 0, 'https://ror.org/03ypxwh20 Institiúid Teicneolaíochta Phort LÔirge Waterford Institute of Technology'),
(93342, 'https://ror.org/03yty8687', 'no_lang_code', 1, 'https://ror.org/03yty8687 GigaScience Press'),
(93343, 'https://ror.org/03ywrrr62', 'en', 1, 'https://ror.org/03ywrrr62 Tohoku Medical and Pharmaceutical University Hospital ę±åŒ—åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(93344, 'https://ror.org/03yzavx55', 'fr', 1, 'https://ror.org/03yzavx55 Centre Hospitalier VƩtƩrinaire FrƩgis'),
(93345, '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'),
(93346, 'https://ror.org/03z1jqd75', 'no_lang_code', 1, 'https://ror.org/03z1jqd75 Quantum Detectors'),
(93347, 'https://ror.org/03z1mhq06', 'no_lang_code', 1, 'https://ror.org/03z1mhq06 Atypon (United States)'),
(93348, 'https://ror.org/03z2zbf42', 'en', 0, 'https://ror.org/03z2zbf42 African Development Bank Group'),
(93349, 'https://ror.org/03z4c6358', 'en', 0, 'https://ror.org/03z4c6358 Institut de Physique Nucleaire de Lyon Institute of Nuclear Physics of Lyon'),
(93350, 'https://ror.org/03z6ceq17', 'en', 1, 'https://ror.org/03z6ceq17 National Nanotechnology Initiative'),
(93351, 'https://ror.org/03z6p6204', 'en', 1, 'https://ror.org/03z6p6204 Christian University of the Americas'),
(93352, 'https://ror.org/03z6t2w50', 'no_lang_code', 1, 'https://ror.org/03z6t2w50 Clothing Textile & Fibre Technology Development (Greece)'),
(93353, 'https://ror.org/03z6znw35', 'en', 1, 'https://ror.org/03z6znw35 Gerstner Philanthropies'),
(93354, 'https://ror.org/03z7adb42', 'cs', 1, 'https://ror.org/03z7adb42 Forests of the Czech Republic Lesy České republiky'),
(93355, 'https://ror.org/03z8vj775', 'en', 1, 'https://ror.org/03z8vj775 BF/M-Bayreuth'),
(93356, 'https://ror.org/03z92nm69', 'it', 1, 'https://ror.org/03z92nm69 INGV Sezione di Roma 2'),
(93357, 'https://ror.org/03za3eq42', 'no_lang_code', 1, 'https://ror.org/03za3eq42 China Railway Group (China) äø­åœ‹äø­éµč‚”ä»½ęœ‰é™å…¬åø'),
(93358, 'https://ror.org/03zcny908', 'es', 0, 'https://ror.org/03zcny908 Ministerio de Universidades'),
(93359, 'https://ror.org/03zdc1b30', 'en', 1, 'https://ror.org/03zdc1b30 Society for Electronic Transactions and Security'),
(93360, 'https://ror.org/03ze4yx94', 'en', 1, 'https://ror.org/03ze4yx94 Biblioteca Apostolica Vaticana Vatican Apostolic Library'),
(93361, 'https://ror.org/03zee5r16', 'en', 1, 'https://ror.org/03zee5r16 Sikt – Kunnskapssektorens tenesteleverandĆør Sikt – Norwegian Agency for Shared Services in Education and Research'),
(93362, 'https://ror.org/03zeg8w71', 'no_lang_code', 1, 'https://ror.org/03zeg8w71 Steklov Mathematical Institute ŠœŠ°Ń‚ŠµŠ¼Š°Ń‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’. А. Дтеклова'),
(93363, 'https://ror.org/03zekj455', 'en', 1, 'https://ror.org/03zekj455 Berlin Mathematical School'),
(93364, 'https://ror.org/03zexf287', 'en', 1, 'https://ror.org/03zexf287 Institute of Cultural History InŔtitut za kulturno zgodovino'),
(93365, 'https://ror.org/03zffa955', 'fr', 1, 'https://ror.org/03zffa955 Laboratoire Interdisciplinaire d''Ʃtude du Politique Hannah Arendt'),
(93366, 'https://ror.org/03zgm5t19', 'en', 1, 'https://ror.org/03zgm5t19 Femmes et ƉgalitĆ© des genres Canada Women and Gender Equality Canada'),
(93367, 'https://ror.org/03zj4c476', 'en', 1, 'https://ror.org/03zj4c476 Aligning Science Across Parkinson''s'),
(93368, 'https://ror.org/03zj57g67', 'en', 1, 'https://ror.org/03zj57g67 Petroleum Technology Development Fund'),
(93369, 'https://ror.org/03zm2br59', 'pl', 1, 'https://ror.org/03zm2br59 Centrum Badań Kosmicznych Space Research Centre'),
(93370, 'https://ror.org/03zmqc707', 'en', 1, 'https://ror.org/03zmqc707 Assumption University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø­ąø±ąøŖąøŖąø±ąø”ąøŠąø±ąø'),
(93371, 'https://ror.org/03zmrx174', 'en', 1, 'https://ror.org/03zmrx174 Italian Cultural Institute, Tunis المعهد Ų§Ł„Ų„ŁŠŲ·Ų§Ł„ŁŠ للثقافة'),
(93372, 'https://ror.org/03zn16x61', 'no_lang_code', 1, 'https://ror.org/03zn16x61 Myongji Hospital 명지병원'),
(93373, 'https://ror.org/03znpfq81', 'en', 1, 'https://ror.org/03znpfq81 Institute of Nuclear and Particle Physics'),
(93374, 'https://ror.org/03zp01h17', 'en', 1, 'https://ror.org/03zp01h17 Innovation, Science and Economic Development Canada Innovation, Sciences et DƩveloppement Ʃconomique Canada'),
(93375, 'https://ror.org/03zp8kp82', 'en', 1, 'https://ror.org/03zp8kp82 American Microscopical Society'),
(93376, 'https://ror.org/03zp9mq15', 'en', 1, 'https://ror.org/03zp9mq15 International Oil and Gas University Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефти Šø газа'),
(93377, 'https://ror.org/03zs3r155', 'no_lang_code', 1, 'https://ror.org/03zs3r155 Vivli'),
(93378, 'https://ror.org/03zsnyg10', 'fr', 1, 'https://ror.org/03zsnyg10 Centre d’Investigation Clinique des HĆ“pitaux Universitaires de Strasbourg'),
(93379, '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 Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр меГицинских технологий, информатизации, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(93380, 'https://ror.org/03zxw5p19', 'en', 1, 'https://ror.org/03zxw5p19 Korean Academy of International Business Management ķ•œźµ­źµ­ģ œź²½ģ˜ź“€ė¦¬ķ•™ķšŒ ķ™ˆķŽ˜'),
(93381, 'https://ror.org/03zxy2q77', 'en', 1, 'https://ror.org/03zxy2q77 Marshfield Clinic'),
(93382, 'https://ror.org/04041kj44', 'en', 1, 'https://ror.org/04041kj44 Financial Stability Board'),
(93383, 'https://ror.org/0404psf52', 'no_lang_code', 1, 'https://ror.org/0404psf52 Quantitative Genomics Medicine Laboratories (qGenomics)'),
(93384, 'https://ror.org/0406m4x33', 'fr', 1, 'https://ror.org/0406m4x33 Sciences Po Aix'),
(93385, 'https://ror.org/0407tnq23', 'en', 1, 'https://ror.org/0407tnq23 John Simon Guggenheim Memorial Foundation'),
(93386, 'https://ror.org/040933v44', 'en', 1, 'https://ror.org/040933v44 NOAA Environmental Modeling Center'),
(93387, 'https://ror.org/040b34t59', 'no_lang_code', 1, 'https://ror.org/040b34t59 Desktop Metal (United States)'),
(93388, 'https://ror.org/040ck2b86', 'en', 1, 'https://ror.org/040ck2b86 Natural History Museum of Denmark Statens Naturhistoriske Museum'),
(93389, 'https://ror.org/040ed7622', 'en', 1, 'https://ror.org/040ed7622 Cancer Council Northern Territory'),
(93390, 'https://ror.org/040erbe63', 'de', 1, 'https://ror.org/040erbe63 Fachhochschule für Interkulturelle Theologie Hermannsburg'),
(93391, 'https://ror.org/040hhjv66', 'en', 1, 'https://ror.org/040hhjv66 ESCP Business School'),
(93392, 'https://ror.org/040hqpc16', 'en', 1, 'https://ror.org/040hqpc16 Mater Misericordiae University Hospital OspidƩal an Mater Misercordiae'),
(93393, 'https://ror.org/040jyv820', 'en', 1, 'https://ror.org/040jyv820 Al-Ahgaff University Ų¬Ų§Ł…Ų¹Ų© الأحقاف'),
(93394, 'https://ror.org/040k5fq90', 'fi', 1, 'https://ror.org/040k5fq90 OLVI-SƤƤtiƶ'),
(93395, 'https://ror.org/040pxfk62', 'de', 1, 'https://ror.org/040pxfk62 Soziologisches Forschungsinstitut Gƶttingen'),
(93396, 'https://ror.org/040ss6920', 'en', 0, 'https://ror.org/040ss6920 Beaumont Hospital'),
(93397, 'https://ror.org/040sw6c10', 'en', 1, 'https://ror.org/040sw6c10 Eqrem Ƈabej University Universiteti Eqrem Ƈabej'),
(93398, 'https://ror.org/040tp8686', 'fr', 1, 'https://ror.org/040tp8686 Conseil RƩgional Midi-PyrƩnƩes'),
(93399, 'https://ror.org/040x6j734', 'de', 1, 'https://ror.org/040x6j734 DRK Krankenhaus Alzey'),
(93400, 'https://ror.org/04102x488', 'no_lang_code', 1, 'https://ror.org/04102x488 Rominster (Cyprus)'),
(93401, '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'),
(93402, 'https://ror.org/0412j5e72', 'en', 1, 'https://ror.org/0412j5e72 Pazy Foundation'),
(93403, 'https://ror.org/04131zp69', 'en', 1, 'https://ror.org/04131zp69 L''Ospedale Coloniale di Vittorio Emanuele III Tripoli Central Hospital مستؓفى طرابلس Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(93404, 'https://ror.org/04140y156', 'fr', 1, 'https://ror.org/04140y156 CEA Marcoule'),
(93405, 'https://ror.org/0414fab98', 'fr', 1, 'https://ror.org/0414fab98 Laboratoire d’Ethologie ExpĆ©rimentale et ComparĆ©e'),
(93406, 'https://ror.org/04155vc40', 'fr', 1, 'https://ror.org/04155vc40 Institut Catholique d''Arts et MƩtiers'),
(93407, 'https://ror.org/0416g8z79', 'fr', 1, 'https://ror.org/0416g8z79 Laboratoire Collisions AgrƩgats RƩactivitƩ'),
(93408, 'https://ror.org/0419cgw33', 'no_lang_code', 1, 'https://ror.org/0419cgw33 ISAGEN EnergĆ­a Productiva (Colombia)'),
(93409, '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'),
(93410, 'https://ror.org/041bvb021', 'en', 1, 'https://ror.org/041bvb021 Technological University Monywa မုံရွာ į€”į€Šį€ŗį€øį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(93411, 'https://ror.org/041c01c38', 'en', 1, 'https://ror.org/041c01c38 Okayama Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å²”å±±åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(93412, 'https://ror.org/041d0cg91', 'en', 1, 'https://ror.org/041d0cg91 Neurocritical Care Society'),
(93413, 'https://ror.org/041efdz96', 'it', 1, 'https://ror.org/041efdz96 Fondazione per le Scienze Religiose Giovanni XXIII'),
(93414, 'https://ror.org/041evnj42', 'en', 1, 'https://ror.org/041evnj42 Ministerie van Volksgezondheid Welzijn en Sport Ministry of Health Welfare and Sport'),
(93415, 'https://ror.org/041fzeq08', 'en', 1, 'https://ror.org/041fzeq08 Taizhou Municipal Science and Technology Bureau ę ¹ę®å°å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(93416, 'https://ror.org/041kwj007', 'en', 1, 'https://ror.org/041kwj007 Healing Foundation'),
(93417, 'https://ror.org/041pfpb15', 'en', 1, 'https://ror.org/041pfpb15 RiksantikvarieƤmbetet Swedish National Heritage Board Valtion antikviteettivirasto'),
(93418, 'https://ror.org/041qv0h25', 'de', 1, 'https://ror.org/041qv0h25 Deutsches ArchƤologisches Institut, Zentrale German Archaeological Institute, Head Office'),
(93419, 'https://ror.org/041rme308', 'en', 0, 'https://ror.org/041rme308 Heart of England NHS Foundation Trust'),
(93420, 'https://ror.org/041ttmq60', 'es', 1, 'https://ror.org/041ttmq60 Instituto de MatemƔtica de Bahƭa Blanca'),
(93421, 'https://ror.org/041vn3m43', 'en', 1, 'https://ror.org/041vn3m43 Peninsula Open Space Trust'),
(93422, 'https://ror.org/041vwqc20', 'tr', 1, 'https://ror.org/041vwqc20 Ankara Bilim Üniversitesi Ankara Science University'),
(93423, 'https://ror.org/041w2m342', 'fr', 1, 'https://ror.org/041w2m342 Clinique, psychanalyse, dƩveloppement'),
(93424, 'https://ror.org/041w4x997', 'en', 1, 'https://ror.org/041w4x997 Chelsea Hospital'),
(93425, 'https://ror.org/041w95745', 'en', 1, 'https://ror.org/041w95745 Abbott Fund'),
(93426, 'https://ror.org/041whkq73', 'en', 1, 'https://ror.org/041whkq73 OpenResearch (United States)'),
(93427, 'https://ror.org/041xs8a23', 'en', 0, 'https://ror.org/041xs8a23 University of North Carolina School of Medicine'),
(93428, 'https://ror.org/041xya991', 'en', 0, 'https://ror.org/041xya991 University of Wisconsin School of Medicine and Public Health'),
(93429, 'https://ror.org/041y07v98', 'de', 1, 'https://ror.org/041y07v98 StƤdtische Kliniken Mƶnchengladbach'),
(93430, 'https://ror.org/041yk0b68', 'fr', 1, 'https://ror.org/041yk0b68 Interaction HÓtes Agents Pathogènes'),
(93431, 'https://ror.org/041zepm54', 'no_lang_code', 1, 'https://ror.org/041zepm54 Applied Genetic Technologies (United States)'),
(93432, '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'),
(93433, 'https://ror.org/0422tvz87', 'en', 1, 'https://ror.org/0422tvz87 SINTEF Industry'),
(93434, 'https://ror.org/0422zmn76', 'en', 0, 'https://ror.org/0422zmn76 University of New Mexico - Taos'),
(93435, 'https://ror.org/0423a8m31', 'en', 1, 'https://ror.org/0423a8m31 Foundation for Equity and Research New Zealand'),
(93436, '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'),
(93437, 'https://ror.org/0424bsv16', 'nl', 1, 'https://ror.org/0424bsv16 Universitair Ziekenhuis Leuven'),
(93438, 'https://ror.org/0424m5v90', 'en', 1, 'https://ror.org/0424m5v90 Association of Avian Veterinarians');
INSERT INTO `rors` VALUES
(93439, 'https://ror.org/0425pg203', 'es', 1, 'https://ror.org/0425pg203 Gobierno de Aragón'),
(93440, 'https://ror.org/042607708', 'en', 1, 'https://ror.org/042607708 Earth System Science Interdisciplinary Center'),
(93441, 'https://ror.org/0426zh255', 'en', 1, 'https://ror.org/0426zh255 China Postdoctoral Science Foundation äø­å›½åšå£«åŽē§‘å­¦åŸŗé‡‘ä¼š'),
(93442, 'https://ror.org/0429x9p85', 'en', 1, 'https://ror.org/0429x9p85 Children''s Hospital of Michigan'),
(93443, 'https://ror.org/042b69396', 'en', 1, 'https://ror.org/042b69396 Center for Advanced Systems Understanding'),
(93444, 'https://ror.org/042c7zs41', 'no_lang_code', 1, 'https://ror.org/042c7zs41 Barr and Stroud (United Kingdom)'),
(93445, 'https://ror.org/042dnf796', 'en', 1, 'https://ror.org/042dnf796 National Academy of Medical Sciences of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń меГичних наук України'),
(93446, 'https://ror.org/042e6sa59', 'no_lang_code', 1, 'https://ror.org/042e6sa59 Novartis (Spain)'),
(93447, 'https://ror.org/042gmmd19', 'en', 1, 'https://ror.org/042gmmd19 South Australian Research and Development Institute'),
(93448, 'https://ror.org/042hm6e56', 'no_lang_code', 0, 'https://ror.org/042hm6e56 LM Wind Power (Netherlands)'),
(93449, 'https://ror.org/042k2q423', 'pt', 1, 'https://ror.org/042k2q423 Catholic University of Salvador Universidade Católica de Salvador Universidade Católica do Salvador'),
(93450, 'https://ror.org/042mgzj06', 'es', 1, 'https://ror.org/042mgzj06 Centro de Estudios Universitarios de Periodismo y Arte en Radio y Televisión'),
(93451, 'https://ror.org/042n1wm56', 'no_lang_code', 1, 'https://ror.org/042n1wm56 Aeron LifeCycles (United States)'),
(93452, 'https://ror.org/042n9zn21', 'en', 1, 'https://ror.org/042n9zn21 International Commission on Missing Persons'),
(93453, 'https://ror.org/042njnk14', 'no_lang_code', 1, 'https://ror.org/042njnk14 Nasertic (Spain)'),
(93454, 'https://ror.org/042pm2v89', 'hu', 1, 'https://ror.org/042pm2v89 Magyar MadÔrtani és Természetvédelmi Egyesület'),
(93455, 'https://ror.org/042r9xb17', 'en', 1, 'https://ror.org/042r9xb17 NOAA Atlantic Oceanographic and Meteorological Laboratories'),
(93456, 'https://ror.org/042rb7y02', 'no_lang_code', 1, 'https://ror.org/042rb7y02 Plug Power (United States)'),
(93457, 'https://ror.org/042rh9p26', 'fr', 1, 'https://ror.org/042rh9p26 IMT Nord Europe'),
(93458, 'https://ror.org/042sk0r32', 'en', 1, 'https://ror.org/042sk0r32 Lloyd Carr-Harris Foundation'),
(93459, 'https://ror.org/042veyr10', 'sv', 1, 'https://ror.org/042veyr10 LƤnsstyrelsen Hallands LƤn'),
(93460, 'https://ror.org/042xxdh20', 'en', 1, 'https://ror.org/042xxdh20 Hochschule für Wirtschaft und Gesellschaft Ludwigshafen Ludwigshafen University of Business and Society'),
(93461, 'https://ror.org/042ywsw21', 'es', 1, 'https://ror.org/042ywsw21 Ministerio de Medio Ambiente y Recursos Naturales'),
(93462, 'https://ror.org/0431vax36', 'de', 1, 'https://ror.org/0431vax36 Wasserstraßen-Neubauamt Datteln'),
(93463, 'https://ror.org/0433bf015', 'no_lang_code', 1, 'https://ror.org/0433bf015 Inanovate (United Kingdom)'),
(93464, 'https://ror.org/04349ry21', 'en', 1, 'https://ror.org/04349ry21 New Valley University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁ‰ Ų§Ł„Ų¬ŲÆŁŠŲÆ'),
(93465, 'https://ror.org/04357k290', 'en', 1, 'https://ror.org/04357k290 Saint Mary''s Academy and College'),
(93466, 'https://ror.org/0436nnc79', 'en', 1, 'https://ror.org/0436nnc79 Parc national des Monts-Torngat Torngat Mountains National Park'),
(93467, 'https://ror.org/043749971', 'fr', 1, 'https://ror.org/043749971 GREYC'),
(93468, 'https://ror.org/043798m03', 'sv', 1, 'https://ror.org/043798m03 Stiftelsen VƤrldsnaturfonden WWF'),
(93469, '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'),
(93470, 'https://ror.org/0437ph973', 'en', 1, 'https://ror.org/0437ph973 Wildlife Management International'),
(93471, 'https://ror.org/0439fte48', 'en', 1, 'https://ror.org/0439fte48 Federal Authority for Nuclear Regulation Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų§ŲŖŲ­Ų§ŲÆŁŠŲ© للرقابة Ų§Ł„Ł†ŁˆŁˆŁŠŲ©'),
(93472, 'https://ror.org/0439y7842', 'en', 1, 'https://ror.org/0439y7842 Engineering and Physical Sciences Research Council'),
(93473, 'https://ror.org/043bd2013', 'en', 1, 'https://ror.org/043bd2013 American Academy in Rome'),
(93474, 'https://ror.org/043d4x248', 'en', 1, 'https://ror.org/043d4x248 Quincy University'),
(93475, 'https://ror.org/043gcm269', 'en', 1, 'https://ror.org/043gcm269 Caldwell County Schools'),
(93476, 'https://ror.org/043rbr770', 'en', 1, 'https://ror.org/043rbr770 Department of Infrastructure, Transport, Regional Development, Communications and the Arts'),
(93477, 'https://ror.org/043xbcd19', 'no_lang_code', 1, 'https://ror.org/043xbcd19 Namazi Hospital Ł…Ų¹Ų±ŁŪŒ ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł†Ł…Ų§Ų²ŪŒ'),
(93478, 'https://ror.org/043z4tv69', 'en', 1, 'https://ror.org/043z4tv69 National Institute of Allergy and Infectious Diseases'),
(93479, 'https://ror.org/043zam433', 'en', 1, 'https://ror.org/043zam433 Wings for Life'),
(93480, 'https://ror.org/043zw2312', 'en', 1, 'https://ror.org/043zw2312 Ministry of the Brussels-Capital Region'),
(93481, 'https://ror.org/0440p1d37', 'no_lang_code', 1, 'https://ror.org/0440p1d37 GITAM University'),
(93482, 'https://ror.org/04416dp49', 'en', 1, 'https://ror.org/04416dp49 National Physical and Standards Laboratory'),
(93483, 'https://ror.org/0441mgk24', 'en', 0, 'https://ror.org/0441mgk24 Fachhochschule Ostschweiz University of Applied Sciences of Eastern Switzerland'),
(93484, 'https://ror.org/044267y73', 'no_lang_code', 1, 'https://ror.org/044267y73 Voestalpine (Sweden)'),
(93485, 'https://ror.org/0442m3a92', 'en', 1, 'https://ror.org/0442m3a92 Society of Professional Journalists'),
(93486, 'https://ror.org/0442n1j98', 'en', 1, 'https://ror.org/0442n1j98 Stockton University'),
(93487, 'https://ror.org/0445d5g14', 'no_lang_code', 1, 'https://ror.org/0445d5g14 Hachinohe Gakuin University å…«ęˆøå­¦é™¢å¤§å­¦'),
(93488, 'https://ror.org/0446d5v35', 'no_lang_code', 1, 'https://ror.org/0446d5v35 Geely (China) 吉利'),
(93489, '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'),
(93490, 'https://ror.org/044844x42', 'en', 1, 'https://ror.org/044844x42 Government Laboratory ę”æåŗœåŒ–é©—ę‰€'),
(93491, 'https://ror.org/04484bb06', 'en', 1, 'https://ror.org/04484bb06 International Research Universities Network'),
(93492, 'https://ror.org/0449c4c15', 'no_lang_code', 1, 'https://ror.org/0449c4c15 Siemens Healthcare (Germany)'),
(93493, 'https://ror.org/044b7p696', 'en', 1, 'https://ror.org/044b7p696 ARC Centre of Excellence in Cognition and its Disorders'),
(93494, 'https://ror.org/044dq8y48', 'fr', 1, 'https://ror.org/044dq8y48 Centre de recherches Ʃducation et formation'),
(93495, 'https://ror.org/044e62w43', 'en', 1, 'https://ror.org/044e62w43 Newport News Public Library System'),
(93496, 'https://ror.org/044enjr66', 'en', 1, 'https://ror.org/044enjr66 Eqbal Lahoori Institute of Higher Education Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ اقبال Ł„Ų§Ł‡ŁˆŲ±ŪŒ'),
(93497, 'https://ror.org/044eye907', 'fr', 1, 'https://ror.org/044eye907 Ɖcole nationale supĆ©rieure d''arts de Paris-Cergy'),
(93498, 'https://ror.org/044f6tt30', 'en', 1, 'https://ror.org/044f6tt30 Sandhills Theatre Arts Renaissance School'),
(93499, 'https://ror.org/044gxcb75', 'es', 1, 'https://ror.org/044gxcb75 Hospital Central de las Fuerzas Armadas'),
(93500, 'https://ror.org/044hkny52', 'no_lang_code', 0, 'https://ror.org/044hkny52 Symantec (Ireland)'),
(93501, 'https://ror.org/044p0s778', 'no_lang_code', 1, 'https://ror.org/044p0s778 Environmental Energy & Engineering'),
(93502, 'https://ror.org/044qes116', 'no_lang_code', 1, 'https://ror.org/044qes116 Pedrini (Italy)'),
(93503, 'https://ror.org/044tay155', 'en', 1, 'https://ror.org/044tay155 Polissia National University ŠŸŠ¾Š»Ń–ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(93504, 'https://ror.org/044w3nw43', 'en', 1, 'https://ror.org/044w3nw43 Bioinformatics Institute'),
(93505, 'https://ror.org/044wb9t02', 'en', 1, 'https://ror.org/044wb9t02 School of Clinical Research'),
(93506, 'https://ror.org/044wr7g58', 'en', 1, 'https://ror.org/044wr7g58 Swedish Foundation for Strategic Research'),
(93507, 'https://ror.org/044xf8y74', 'en', 1, 'https://ror.org/044xf8y74 A Shelter for Cancer Families'),
(93508, 'https://ror.org/044ze3t60', 'no_lang_code', 1, 'https://ror.org/044ze3t60 Resonance (United States)'),
(93509, 'https://ror.org/0451d4r46', 'en', 1, 'https://ror.org/0451d4r46 Society of Labor Law Theory and Profession ģ‚¬ė‹Øė²•ģø ė…øė™ė²•ģ“ė” ģ‹¤ė¬“ķ•™ķšŒ'),
(93510, 'https://ror.org/04537p149', 'no_lang_code', 1, 'https://ror.org/04537p149 Emerson Collective (United States)'),
(93511, 'https://ror.org/0454k6g38', 'en', 1, 'https://ror.org/0454k6g38 California Waterfowl Association'),
(93512, 'https://ror.org/0454mmy42', 'en', 1, 'https://ror.org/0454mmy42 Kenneth M. Molson Foundation'),
(93513, 'https://ror.org/0454wth52', 'en', 1, 'https://ror.org/0454wth52 NOAA Storm Prediction Center'),
(93514, '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'),
(93515, 'https://ror.org/04587ry40', 'es', 1, 'https://ror.org/04587ry40 Universidad Internacional Iberoamericana'),
(93516, 'https://ror.org/045aa8e82', 'en', 0, 'https://ror.org/045aa8e82 K.G. Razumovsky Moscow State University of Technologies and Management Моско́вский Š³Š¾ŃŃƒŠ“а́рственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ техноло́гий Šø ŃƒŠæŃ€Š°Š²Š»ŠµĢŠ½ŠøŃ имени К. Š“. Разумовского'),
(93517, 'https://ror.org/045arbm30', 'en', 1, 'https://ror.org/045arbm30 University of Poonch Rawalakot'),
(93518, 'https://ror.org/045bzvb60', 'fr', 0, 'https://ror.org/045bzvb60 Sciences en SociƩtƩ'),
(93519, 'https://ror.org/045c11422', 'en', 0, 'https://ror.org/045c11422 Advanced Electromagnetics Journal'),
(93520, 'https://ror.org/045grz143', 'en', 1, 'https://ror.org/045grz143 Encephalitis Society'),
(93521, 'https://ror.org/045kz4b81', 'en', 0, 'https://ror.org/045kz4b81 International Center for Tropical Agriculture'),
(93522, 'https://ror.org/045n0ms44', 'en', 1, 'https://ror.org/045n0ms44 Universitas Palangka Raya University of Palangka Raya'),
(93523, 'https://ror.org/045nd5z39', 'en', 1, 'https://ror.org/045nd5z39 UPHLS'),
(93524, 'https://ror.org/045ney286', 'en', 1, 'https://ror.org/045ney286 Oulu University Hospital Oulun yliopistollinen sairaala'),
(93525, 'https://ror.org/045pn2j94', 'no_lang_code', 1, 'https://ror.org/045pn2j94 BGI Group (China) åŽå¤§åŸŗå› '),
(93526, 'https://ror.org/045s62606', 'fr', 1, 'https://ror.org/045s62606 GIP CEI'),
(93527, 'https://ror.org/045thxk12', 'en', 1, 'https://ror.org/045thxk12 Flinders Foundation'),
(93528, 'https://ror.org/045vhys49', 'id', 1, 'https://ror.org/045vhys49 Universitas Muhammadiyah Cirebon'),
(93529, 'https://ror.org/045yf3k41', 'en', 1, 'https://ror.org/045yf3k41 Changcheng Institute of Metrology & Measurement čˆŖē©ŗå·„äøšåŒ—äŗ¬é•æåŸŽč®”é‡ęµ‹čÆ•ęŠ€ęœÆē ”ē©¶ę‰€'),
(93530, 'https://ror.org/04664mr26', 'en', 1, 'https://ror.org/04664mr26 Institute for Materials Research, Tohoku University ę±åŒ—å¤§å­¦é‡‘å±žęę–™ē ”ē©¶ę‰€'),
(93531, 'https://ror.org/0466y6p74', 'fr', 0, 'https://ror.org/0466y6p74 Le Laboratoire d''IngƩnierie OstƩo-Articulaire et Dentaire'),
(93532, 'https://ror.org/04674kj97', 'no_lang_code', 1, 'https://ror.org/04674kj97 BHP (Australia)'),
(93533, 'https://ror.org/0467wah83', 'en', 1, 'https://ror.org/0467wah83 Dubai Judicial Institute معهد دبي Ų§Ł„Ł‚Ų¶Ų§Ų¦ŁŠ'),
(93534, 'https://ror.org/04691az61', 'fr', 1, 'https://ror.org/04691az61 Fondation SantƩ et DƩveloppement Durable'),
(93535, 'https://ror.org/0469ejq24', 'es', 1, 'https://ror.org/0469ejq24 Instituto de Química y Fisicoquímica Biológicas'),
(93536, 'https://ror.org/046as0869', 'de', 1, 'https://ror.org/046as0869 Deutsche Geophysikalische Gesellschaft e.V. German Geophysical Society'),
(93537, 'https://ror.org/046c3d771', 'en', 1, 'https://ror.org/046c3d771 Australasian Society for the Study of Animal Behaviour'),
(93538, 'https://ror.org/046f6cx68', 'en', 1, 'https://ror.org/046f6cx68 Fujita Health University č—¤ē”°äæå„č”›ē”Ÿå¤§å­¦'),
(93539, 'https://ror.org/046g6xj75', 'en', 1, 'https://ror.org/046g6xj75 South Carolina Ovarian Cancer Foundation'),
(93540, 'https://ror.org/046ggxs83', 'pt', 1, 'https://ror.org/046ggxs83 Instituto Dom Luiz'),
(93541, 'https://ror.org/046gpnb18', 'en', 0, 'https://ror.org/046gpnb18 Ufa State Aviation Technical University Уфимский Š³Š¾ŃŃƒŠ“арственный авиационный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Өфө Гәүләт Š°Š²ŠøŠ°Ń†ŠøŃ техник ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(93542, 'https://ror.org/046hez538', 'en', 1, 'https://ror.org/046hez538 Northwest Territories Department of Environment and Natural Resources'),
(93543, 'https://ror.org/046j4rs93', 'en', 1, 'https://ror.org/046j4rs93 Amateur Chamber Music Players'),
(93544, 'https://ror.org/046jtwe58', 'no_lang_code', 0, 'https://ror.org/046jtwe58 Eramet (Belgium)'),
(93545, 'https://ror.org/046k81c97', 'en', 1, 'https://ror.org/046k81c97 National Institute for Medical Research Development مؤسسه Ł…Ł„ŪŒ ŲŖŁˆŲ³Ų¹Ł‡ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų¹Ł„ŁˆŁ… پزؓکی'),
(93546, 'https://ror.org/046khng05', 'tr', 0, 'https://ror.org/046khng05 Gaziosmanpaşa Taksim Eğitim ve Araştırma Hastanesi'),
(93547, 'https://ror.org/046mr5703', 'no_lang_code', 1, 'https://ror.org/046mr5703 Wirsam Scientific (South Africa) Wirsam Wetenskaplik'),
(93548, 'https://ror.org/046w3ze59', 'fr', 0, 'https://ror.org/046w3ze59 Laboratoire de l''AccƩlƩrateur LinƩaire'),
(93549, 'https://ror.org/046zg3t88', 'no_lang_code', 1, 'https://ror.org/046zg3t88 Drug Hunter'),
(93550, 'https://ror.org/04724v550', 'en', 1, 'https://ror.org/04724v550 Feni University ফেনী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(93551, 'https://ror.org/0472cxd90', 'en', 1, 'https://ror.org/0472cxd90 Conseil europƩen de la recherche European Research Council EuropƤischer Forschungsrat'),
(93552, 'https://ror.org/0472gwq90', 'en', 1, 'https://ror.org/0472gwq90 Alzheimer''s Society'),
(93553, 'https://ror.org/0473ary24', 'en', 1, 'https://ror.org/0473ary24 Hangzhou Institute of Applied Acoustics äø­å›½čˆ¹čˆ¶é‡å·„é›†å›¢å…¬åøē¬¬äøƒäø€äŗ”ē ”ē©¶ę‰€'),
(93554, 'https://ror.org/04742pk47', 'en', 1, 'https://ror.org/04742pk47 Baghlan University دانؓگاه بغلان'),
(93555, 'https://ror.org/0474ddm96', 'pt', 1, 'https://ror.org/0474ddm96 Fundação Centro de Estudos do Universo'),
(93556, 'https://ror.org/04753zn39', 'cs', 1, 'https://ror.org/04753zn39 State Regional Archive in Plzeň, StÔtní oblastní archiv v Plzni'),
(93557, 'https://ror.org/0476bn305', 'no_lang_code', 1, 'https://ror.org/0476bn305 Samsung SDS (South Korea) 삼성SDS'),
(93558, 'https://ror.org/0476q9d56', 'fr', 1, 'https://ror.org/0476q9d56 SociƩtƩ MathƩmatique de France'),
(93559, 'https://ror.org/0477eg838', 'fr', 1, 'https://ror.org/0477eg838 Laboratoire de thermique interfaces environnement'),
(93560, 'https://ror.org/04795e365', 'fr', 1, 'https://ror.org/04795e365 Institut d''Histoire Moderne et Contemporaine'),
(93561, 'https://ror.org/0479fds27', 'en', 1, 'https://ror.org/0479fds27 Shanghai Police College äøŠęµ·å…¬å®‰å­¦é™¢'),
(93562, 'https://ror.org/0479zfq62', 'en', 1, 'https://ror.org/0479zfq62 Portuguese Platform of BioImaging'),
(93563, 'https://ror.org/047a06h06', 'de', 1, 'https://ror.org/047a06h06 Arzneimittelkommission der deutschen Ƅrzteschaft'),
(93564, 'https://ror.org/047cttg96', 'en', 1, 'https://ror.org/047cttg96 British Institute in Eastern Africa'),
(93565, 'https://ror.org/047hgjz90', 'no_lang_code', 1, 'https://ror.org/047hgjz90 Lumenari'),
(93566, 'https://ror.org/047htnr46', 'es', 1, 'https://ror.org/047htnr46 Universidad de Estudios Profesionales de Ciencias y Artes'),
(93567, 'https://ror.org/047jt1w68', 'no_lang_code', 0, 'https://ror.org/047jt1w68 Iveco (Germany)'),
(93568, 'https://ror.org/047sq9m91', 'no_lang_code', 1, 'https://ror.org/047sq9m91 Improved Pharma (United States)'),
(93569, 'https://ror.org/047st1n79', 'es', 1, 'https://ror.org/047st1n79 Instituto Tecnológico de Santo Domingo'),
(93570, 'https://ror.org/047v1x836', 'en', 1, 'https://ror.org/047v1x836 Korea Carbon Capture & Sequestration R&D Center ķ•œźµ­ ķƒ„ģ†Œ ķ¬ģ§‘ ė° 격리 R & D 센터'),
(93571, 'https://ror.org/047vggb09', 'no_lang_code', 1, 'https://ror.org/047vggb09 InfoEd Global (United States)'),
(93572, 'https://ror.org/047w8z534', 'en', 1, 'https://ror.org/047w8z534 Middle East Studies Association of North America'),
(93573, 'https://ror.org/047yt6z33', 'fr', 1, 'https://ror.org/047yt6z33 Ecole supƩrieure d''art | Dunkerque - Tourcoing'),
(93574, 'https://ror.org/047zr9s44', 'en', 1, 'https://ror.org/047zr9s44 University of the Assumption'),
(93575, 'https://ror.org/0480wgs39', 'en', 1, 'https://ror.org/0480wgs39 International Coral Reef Society'),
(93576, 'https://ror.org/0481e5k40', 'en', 1, 'https://ror.org/0481e5k40 Williamson County Conservation Foundation'),
(93577, 'https://ror.org/04829x985', 'en', 1, 'https://ror.org/04829x985 Catholic University of West Africa UniversitƩ Catholique de l''Afrique de l''Ouest'),
(93578, 'https://ror.org/0483qx226', 'de', 1, 'https://ror.org/0483qx226 LEIZA - Leibniz-Zentrum für Archäologie'),
(93579, 'https://ror.org/0484t2d19', 'no_lang_code', 0, 'https://ror.org/0484t2d19 Alticor (United States)'),
(93580, 'https://ror.org/04855hn71', 'en', 1, 'https://ror.org/04855hn71 Montgomery County Public Libraries'),
(93581, 'https://ror.org/0487kvf73', 'en', 1, 'https://ror.org/0487kvf73 Xinjiang Uygur Autonomous Region Education Department ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗę•™č‚²åŽ…'),
(93582, 'https://ror.org/04884sy85', 'en', 1, 'https://ror.org/04884sy85 Ramathibodi Hospital ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø£ąø²ąø”ąø²ąø˜ąø“ąøšąø”ąøµ'),
(93583, 'https://ror.org/048agjg30', 'en', 1, 'https://ror.org/048agjg30 Centro Cochrane Iberoamericano Iberoamerican Cochrane Centre'),
(93584, 'https://ror.org/048b0n981', 'en', 1, 'https://ror.org/048b0n981 Rotary International'),
(93585, 'https://ror.org/048dqgk17', 'en', 0, 'https://ror.org/048dqgk17 Central Institution for Meteorology and Geodynamics Zentralanstalt für Meteorologie und Geodynamik'),
(93586, 'https://ror.org/048f36m54', 'es', 1, 'https://ror.org/048f36m54 Instituto de Tecnologías en Detección y Astropartículas'),
(93587, 'https://ror.org/048g3cy84', 'en', 1, 'https://ror.org/048g3cy84 Vera C. Rubin Observatory'),
(93588, 'https://ror.org/048gqac97', 'en', 1, 'https://ror.org/048gqac97 Izeh Islamic Azad University دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ°Ł‡'),
(93589, 'https://ror.org/048j2ty77', 'no_lang_code', 1, 'https://ror.org/048j2ty77 Groupe Lactalis (France)'),
(93590, 'https://ror.org/048kh7197', 'en', 1, 'https://ror.org/048kh7197 Department of Science and Innovation'),
(93591, 'https://ror.org/048kn1p59', 'no_lang_code', 1, 'https://ror.org/048kn1p59 Gebro Pharma (Spain)'),
(93592, 'https://ror.org/048kvyv71', 'it', 0, 'https://ror.org/048kvyv71 Politecnico di Milano - Department of Design'),
(93593, 'https://ror.org/048m16q57', 'no_lang_code', 1, 'https://ror.org/048m16q57 Carestream (United States)'),
(93594, 'https://ror.org/048mcz794', 'en', 1, 'https://ror.org/048mcz794 Chernihiv Polytechnic National University ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š§ŠµŃ€Š½Ń–Š³Ń–Š²ŃŃŒŠŗŠ° політехніка»'),
(93595, 'https://ror.org/048py7387', 'en', 1, 'https://ror.org/048py7387 Ocean Frontier Institute'),
(93596, 'https://ror.org/048rjxx46', 'no_lang_code', 1, 'https://ror.org/048rjxx46 Escrypt (Germany)'),
(93597, 'https://ror.org/048sk3r24', 'en', 1, 'https://ror.org/048sk3r24 Canadian Virtual University'),
(93598, 'https://ror.org/048svt763', 'id', 1, 'https://ror.org/048svt763 Politeknik Pertanian Negeri Kupang State Agricultural Polytechnic of Kupang'),
(93599, 'https://ror.org/048swmy20', 'en', 1, 'https://ror.org/048swmy20 Tokyo Women''s Medical University Adachi Medical Center ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦é™„å±žč¶³ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(93600, 'https://ror.org/048x9m688', 'en', 1, 'https://ror.org/048x9m688 Juvenile Diabetes Research Foundation in Israel האגודה ×œ×”×•×›×Ø×Ŗ × ×¢×•×Ø×™× (הוג 1) ×‘×™×©×Ø××œ'),
(93601, 'https://ror.org/048yzb176', 'no_lang_code', 1, 'https://ror.org/048yzb176 DAASI International (Germany)'),
(93602, 'https://ror.org/048zssa22', 'en', 1, 'https://ror.org/048zssa22 G. K. Skryabin Institute of Biochemistry and Physiology of Microorganisms Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø физиологии микроорганизмов им. Š“.К.Š”ŠŗŃ€ŃŠ±ŠøŠ½Š° Š ŠŠ'),
(93603, 'https://ror.org/0491xby87', 'no_lang_code', 1, 'https://ror.org/0491xby87 Sweco (Czechia)'),
(93604, 'https://ror.org/04921rg76', 'no_lang_code', 1, 'https://ror.org/04921rg76 Opcondys (United States)'),
(93605, 'https://ror.org/0492g1k39', 'en', 1, 'https://ror.org/0492g1k39 Community Science and Data Center'),
(93606, 'https://ror.org/0494fs390', 'en', 1, 'https://ror.org/0494fs390 Adlerbertska Foundations'),
(93607, 'https://ror.org/0495mpa86', 'en', 1, 'https://ror.org/0495mpa86 Afghan Defense University'),
(93608, 'https://ror.org/0496dtf02', 'pt', 1, 'https://ror.org/0496dtf02 Universidade Lusófona da Guiné'),
(93609, 'https://ror.org/0498jc398', 'en', 1, 'https://ror.org/0498jc398 Clarkton School of Discovery'),
(93610, 'https://ror.org/049a1qr95', 'es', 0, 'https://ror.org/049a1qr95 Consultores De Automatización Y Robótica'),
(93611, 'https://ror.org/049ba1e57', 'no_lang_code', 1, 'https://ror.org/049ba1e57 Rho (United States)'),
(93612, 'https://ror.org/049byzx03', 'fr', 0, 'https://ror.org/049byzx03 Hospital Ibn Sina HƓpital Ibn Sina-Rabat'),
(93613, 'https://ror.org/049c9q337', 'en', 1, 'https://ror.org/049c9q337 Banner MD Anderson Cancer Center'),
(93614, 'https://ror.org/049dch481', 'en', 1, 'https://ror.org/049dch481 Parc national Qausuittuq Qausuittuq National Park'),
(93615, 'https://ror.org/049enq829', 'nl', 1, 'https://ror.org/049enq829 Province of Noord-Brabant Provincie Noord-Brabant'),
(93616, 'https://ror.org/049er6k75', 'fr', 0, 'https://ror.org/049er6k75 Centre de Recherche sur l’Action Locale'),
(93617, 'https://ror.org/049fqhq96', 'de', 1, 'https://ror.org/049fqhq96 Dienstleistungszentrum LƤndlicher Raum Westpfalz'),
(93618, 'https://ror.org/049g44471', 'en', 1, 'https://ror.org/049g44471 Koninklike Vereeniging van Suid-Africa Royal Society of South Africa'),
(93619, 'https://ror.org/049hmt962', 'en', 1, 'https://ror.org/049hmt962 Blavatnik Family Foundation'),
(93620, 'https://ror.org/049kbyp41', 'la', 1, 'https://ror.org/049kbyp41 Iuridicum Remedium'),
(93621, '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'),
(93622, 'https://ror.org/049kqjg43', 'es', 1, 'https://ror.org/049kqjg43 Comisión Nacional de Prevención de Riesgos y Atención de Emergencias'),
(93623, 'https://ror.org/049ncjx51', 'en', 1, 'https://ror.org/049ncjx51 Sage Bionetworks'),
(93624, 'https://ror.org/049nnjd96', 'no_lang_code', 1, 'https://ror.org/049nnjd96 GlaxoSmithKline (Spain)'),
(93625, 'https://ror.org/049r1ts75', 'en', 1, 'https://ror.org/049r1ts75 J. Craig Venter Institute'),
(93626, 'https://ror.org/049rn4865', 'en', 0, 'https://ror.org/049rn4865 Chinese Journal of Integrated Traditional and Western Medicine'),
(93627, 'https://ror.org/049v75w11', 'en', 1, 'https://ror.org/049v75w11 National Institute on Aging'),
(93628, 'https://ror.org/049x38272', 'en', 1, 'https://ror.org/049x38272 Jilin Province Science and Technology Department'),
(93629, 'https://ror.org/049xnr573', 'es', 1, 'https://ror.org/049xnr573 Centro Científico Tecnológico Patagónico'),
(93630, 'https://ror.org/049xt3t52', 'de', 1, 'https://ror.org/049xt3t52 Archiv der Deutschen Frauenbewegung'),
(93631, 'https://ror.org/049yyjd94', 'en', 1, 'https://ror.org/049yyjd94 American Farmland Trust'),
(93632, 'https://ror.org/04a1j9d57', 'no_lang_code', 1, 'https://ror.org/04a1j9d57 Global Thermostat (United States)'),
(93633, 'https://ror.org/04a224m58', 'en', 1, 'https://ror.org/04a224m58 Brackley Community Hospital'),
(93634, 'https://ror.org/04a2yhg09', 'no_lang_code', 1, 'https://ror.org/04a2yhg09 Intesa Sanpaolo (Italy)'),
(93635, 'https://ror.org/04a4p3671', 'en', 1, 'https://ror.org/04a4p3671 Brno House of Arts DÅÆm uměnĆ­ města Brna'),
(93636, 'https://ror.org/04a6wa396', 'en', 1, 'https://ror.org/04a6wa396 Swedish Institute for Children''s Books'),
(93637, 'https://ror.org/04a7vn235', 'tr', 1, 'https://ror.org/04a7vn235 İzmir Tınaztepe University İzmir Tınaztepe Üniversitesi'),
(93638, 'https://ror.org/04acw6x47', 'en', 0, 'https://ror.org/04acw6x47 Panhandle Plains Historical Society'),
(93639, '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'),
(93640, 'https://ror.org/04afqts81', 'en', 1, 'https://ror.org/04afqts81 Innovative Health Initiative'),
(93641, 'https://ror.org/04agmb972', 'en', 1, 'https://ror.org/04agmb972 Georgia Southern University'),
(93642, 'https://ror.org/04ah4mt57', 'en', 1, 'https://ror.org/04ah4mt57 South African School of Motion Picture Medium and Live Performance'),
(93643, 'https://ror.org/04ahe1r73', 'en', 1, 'https://ror.org/04ahe1r73 National Standards and Calibration Laboratory المخبر Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„Ł…Ų¹Ų§ŁŠŁŠŲ± ŁˆŲ§Ł„Ł…Ų¹Ų§ŁŠŲ±Ų© Ų¢Ų±.Ų„Ų³.Ų„Ų³'),
(93644, 'https://ror.org/04ahh4d11', 'en', 1, 'https://ror.org/04ahh4d11 Sapientia ErdƩlyi Magyar TudomƔnyegyetem Sapientia Hungarian University of Transylvania Universitatea Sapientia'),
(93645, 'https://ror.org/04ahz4692', 'en', 1, 'https://ror.org/04ahz4692 Dilla University į‹²įˆ‹ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(93646, 'https://ror.org/04akaak77', 'en', 1, 'https://ror.org/04akaak77 Technical Institute of Physics and Chemistry äø­å›½ē§‘å­¦é™¢ē†åŒ–ęŠ€ęœÆē ”ē©¶ę‰€'),
(93647, 'https://ror.org/04am0hx79', 'no_lang_code', 1, 'https://ror.org/04am0hx79 United Business Media (Canada)'),
(93648, 'https://ror.org/04amfk357', 'en', 1, 'https://ror.org/04amfk357 Parkinson Canada SociƩtƩ Parkinson Canada'),
(93649, 'https://ror.org/04amr5534', 'no_lang_code', 0, 'https://ror.org/04amr5534 GE Global Research (Germany)'),
(93650, 'https://ror.org/04amwz106', 'en', 1, 'https://ror.org/04amwz106 Indus Hospital'),
(93651, 'https://ror.org/04apdjp43', 'id', 1, 'https://ror.org/04apdjp43 Universitas Labuhanbatu'),
(93652, 'https://ror.org/04apff558', 'es', 1, 'https://ror.org/04apff558 Universidad Benavente'),
(93653, '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'),
(93654, 'https://ror.org/04asyez39', 'es', 1, 'https://ror.org/04asyez39 Universidad Estatal de Sonora'),
(93655, 'https://ror.org/04asyj427', 'en', 1, 'https://ror.org/04asyj427 National Defence Medical Centre'),
(93656, 'https://ror.org/04at8nn08', 'en', 1, 'https://ror.org/04at8nn08 Dr. TMA Pai Hospital'),
(93657, 'https://ror.org/04avfj734', 'es', 1, 'https://ror.org/04avfj734 Cabildo de Tenerife'),
(93658, 'https://ror.org/04avm2781', 'en', 1, 'https://ror.org/04avm2781 Finnish Defence Forces'),
(93659, 'https://ror.org/04awsyj96', 'en', 1, 'https://ror.org/04awsyj96 Canteen'),
(93660, 'https://ror.org/04ax47y98', 'en', 1, 'https://ror.org/04ax47y98 St. Paul''s Hospital Millennium Medical College'),
(93661, '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ığı'),
(93662, 'https://ror.org/04ayaw261', 'en', 1, 'https://ror.org/04ayaw261 Australian Centre for Advanced Photovoltaics'),
(93663, 'https://ror.org/04b1hsx72', 'no_lang_code', 1, 'https://ror.org/04b1hsx72 Shenzhen Chipscreen Biosciences Co. ę·±åœ³å¾®čŠÆē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(93664, 'https://ror.org/04b222d59', 'en', 1, 'https://ror.org/04b222d59 NOAA National Water Center'),
(93665, 'https://ror.org/04b5zca04', 'en', 0, 'https://ror.org/04b5zca04 Dnipro National University of Railway Transport named after Academician V. Lazaryan Днепровский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ железноГорожного транспорта имени акаГемика Š’. Š›Š°Š·Š°Ń€ŃŠ½Š° Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ залізничного Ń‚Ń€Š°Š½ŃŠæŠ¾Ń€Ń‚Ńƒ імені акаГеміка Š’. Š›Š°Š·Š°Ń€ŃŠ½Š°'),
(93666, 'https://ror.org/04b786w92', 'en', 1, 'https://ror.org/04b786w92 Bilawal Medical College'),
(93667, 'https://ror.org/04b7c5303', 'en', 1, 'https://ror.org/04b7c5303 Kharkiv State Academy of Physical Culture Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø'),
(93668, 'https://ror.org/04b8eax48', 'no_lang_code', 1, 'https://ror.org/04b8eax48 Accelero Biostructures'),
(93669, 'https://ror.org/04baakq55', 'en', 1, 'https://ror.org/04baakq55 Beijing Municipal Administration of Hospitals'),
(93670, 'https://ror.org/04banag31', 'en', 1, 'https://ror.org/04banag31 Korean Association for Science Education'),
(93671, 'https://ror.org/04bcx2629', 'nl', 1, 'https://ror.org/04bcx2629 Vogelbescherming Nederland'),
(93672, 'https://ror.org/04bd5p711', 'en', 1, 'https://ror.org/04bd5p711 March of Dimes'),
(93673, 'https://ror.org/04bfyrw82', 'en', 1, 'https://ror.org/04bfyrw82 National Scientific Centre "Institute of Metrology" ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрології»'),
(93674, 'https://ror.org/04bg5j190', 'fr', 1, 'https://ror.org/04bg5j190 Centre de ThƩorie et Analyse du Droit'),
(93675, 'https://ror.org/04bgwn153', 'en', 1, 'https://ror.org/04bgwn153 NOAA Office of National Marine Sanctuaries'),
(93676, 'https://ror.org/04bhxdg86', 'no_lang_code', 0, 'https://ror.org/04bhxdg86 Altec (Greece)'),
(93677, 'https://ror.org/04bjbc484', 'en', 1, 'https://ror.org/04bjbc484 Paralyzed Veterans of America, Buckeye Chapter'),
(93678, 'https://ror.org/04bkfz588', 'de', 1, 'https://ror.org/04bkfz588 Stiftung des ƶffentlichen Rechts an der Martin-Luther-UniversitƤt Halle-Wittenberg'),
(93679, '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'),
(93680, 'https://ror.org/04bms6d25', 'en', 1, 'https://ror.org/04bms6d25 College Track'),
(93681, 'https://ror.org/04bqkh239', 'en', 1, 'https://ror.org/04bqkh239 Zagreb School of Economics and Management Zagrebačka Ŕkola ekonomije i managementa'),
(93682, 'https://ror.org/04bqs3e84', 'en', 1, 'https://ror.org/04bqs3e84 Health and Environmental Sciences Institute'),
(93683, 'https://ror.org/04br41767', 'en', 1, 'https://ror.org/04br41767 Life Science Center for Survival Dynamics, Tsukuba Advanced Research Alliance (TARA) 筑波大学 ē”Ÿå­˜ćƒ€ć‚¤ćƒŠćƒŸć‚Æć‚¹ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(93684, 'https://ror.org/04brnrj19', 'it', 1, 'https://ror.org/04brnrj19 Istituto Nazionale di Studi sul Rinascimento'),
(93685, 'https://ror.org/04brp8f44', 'en', 1, 'https://ror.org/04brp8f44 Runajambi Institute for the Study of Quichua Culture and Health'),
(93686, 'https://ror.org/04bvg0c15', 'en', 1, 'https://ror.org/04bvg0c15 Parc national Yoho Yoho National Park'),
(93687, 'https://ror.org/04bz60n78', 'en', 1, 'https://ror.org/04bz60n78 Institutul Național de Metrologie National Metrology Institute of the Republic of Moldova'),
(93688, 'https://ror.org/04c1vp749', 'en', 1, 'https://ror.org/04c1vp749 Nepal Open University ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤–ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(93689, 'https://ror.org/04c3ebg91', 'en', 1, 'https://ror.org/04c3ebg91 Tokyo Metropolitan Tama Medical Center ę±äŗ¬éƒ½ē«‹å¤šę‘©ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(93690, 'https://ror.org/04c3xh334', 'en', 1, 'https://ror.org/04c3xh334 College of Karlovy Vary VysokÔ Ŕkola Karlovy Vary'),
(93691, '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'),
(93692, 'https://ror.org/04c97m830', 'en', 0, 'https://ror.org/04c97m830 Australian National Data Service'),
(93693, 'https://ror.org/04c9sd914', 'en', 1, 'https://ror.org/04c9sd914 Griggs International Academy'),
(93694, 'https://ror.org/04cbxmn27', 'en', 1, 'https://ror.org/04cbxmn27 TransCanada Calibrations'),
(93695, 'https://ror.org/04ccf0j10', 'en', 1, 'https://ror.org/04ccf0j10 Centre for Safe Air'),
(93696, 'https://ror.org/04cdn6p56', 'en', 1, 'https://ror.org/04cdn6p56 ICT University'),
(93697, 'https://ror.org/04ce5fg13', 'en', 1, 'https://ror.org/04ce5fg13 Chongqing Municipal Health Commission é‡åŗ†åø‚å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(93698, 'https://ror.org/04cefae43', 'en', 1, 'https://ror.org/04cefae43 Federal Department of Justice'),
(93699, 'https://ror.org/04cevv292', 'de', 1, 'https://ror.org/04cevv292 Landesamt für Landwirtschaft und nachhaltige Landentwicklung'),
(93700, 'https://ror.org/04cfmv025', 'en', 1, 'https://ror.org/04cfmv025 Institute of Taoist Education and Acupuncture'),
(93701, 'https://ror.org/04cfxct26', 'en', 1, 'https://ror.org/04cfxct26 Crest Middle School'),
(93702, 'https://ror.org/04cfzns05', 'no_lang_code', 1, 'https://ror.org/04cfzns05 Sound Vaccine ģ‚¬ģš“ė“œė°±ģ‹  ģ£¼ģ‹ķšŒģ‚¬'),
(93703, 'https://ror.org/04cgz2t37', 'no_lang_code', 1, 'https://ror.org/04cgz2t37 AT Sciences (United States)'),
(93704, 'https://ror.org/04chg7g34', 'en', 1, 'https://ror.org/04chg7g34 Canadian Operational Research Society SociƩtƩ Canadienne de Recherche OpƩrationnelle'),
(93705, 'https://ror.org/04cm1q459', 'en', 1, 'https://ror.org/04cm1q459 Minnesota Veterans Medical Research and Education Foundation'),
(93706, 'https://ror.org/04cm2y595', 'en', 1, 'https://ror.org/04cm2y595 Toronto General Hospital Research Institute'),
(93707, 'https://ror.org/04cm3mz39', 'fi', 1, 'https://ror.org/04cm3mz39 Tiina ja Antti Herlinin sƤƤtiƶ'),
(93708, 'https://ror.org/04cm4mp98', 'fr', 1, 'https://ror.org/04cm4mp98 Laboratoire interdisciplinaire en neurosciences, physiologie et psychologie'),
(93709, 'https://ror.org/04cm78a24', 'nl', 1, 'https://ror.org/04cm78a24 Maaslandziekenhuis'),
(93710, 'https://ror.org/04cq90n15', 'en', 1, 'https://ror.org/04cq90n15 Nazi Boni University UniversitƩ Nazi Boni'),
(93711, 'https://ror.org/04cqyfy93', 'en', 1, 'https://ror.org/04cqyfy93 Korea Institute of Marine Science and Technology Promotion ķ•“ģ–‘ģˆ˜ģ‚°ź³¼ķ•™źø°ģˆ ģ§„ķ„ģ›'),
(93712, 'https://ror.org/04crnd335', 'nl', 1, 'https://ror.org/04crnd335 Rathenau Instituut'),
(93713, 'https://ror.org/04cvvej54', 'en', 1, 'https://ror.org/04cvvej54 Woodwell Climate Research Center'),
(93714, 'https://ror.org/04cvxk565', 'en', 1, 'https://ror.org/04cvxk565 McEwen Stem Cell Institute'),
(93715, 'https://ror.org/04cw0h271', 'no_lang_code', 1, 'https://ror.org/04cw0h271 Recovered (United States)'),
(93716, 'https://ror.org/04cw2wq83', 'pl', 1, 'https://ror.org/04cw2wq83 Centrum Medyczne Smoluchowskiego - Gdańsk'),
(93717, 'https://ror.org/04cxjpx43', 'no_lang_code', 1, 'https://ror.org/04cxjpx43 Vijaya College'),
(93718, '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'),
(93719, 'https://ror.org/04cxs7048', 'es', 1, 'https://ror.org/04cxs7048 Hospital Universitario de Valme'),
(93720, 'https://ror.org/04cyg3w17', 'en', 1, 'https://ror.org/04cyg3w17 Finnish Heritage Agency Museiverket Museovirasto'),
(93721, 'https://ror.org/04cyg7v24', 'es', 1, 'https://ror.org/04cyg7v24 Universidad Hispanoamericana'),
(93722, 'https://ror.org/04cz3rb18', 'en', 1, 'https://ror.org/04cz3rb18 Western Metropolitan Area University Association é¦–éƒ½åœč„æéƒØå¤§å­¦å˜ä½äŗ’ę›å”å®šä¼š'),
(93723, 'https://ror.org/04d0ybj29', 'es', 1, 'https://ror.org/04d0ybj29 Hospital ClĆ­nico San Carlos'),
(93724, 'https://ror.org/04d2nkq36', 'en', 1, 'https://ror.org/04d2nkq36 Kazakhstan Institute of Standardization and Metrology ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ станГартизации Šø метрологии ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ ŃŃ‚Š°Š½Š“Š°Ń€Ń‚Ń‚Š°Ńƒ және Š¼ŠµŃ‚Ń€Š¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(93725, 'https://ror.org/04d3gaq18', 'en', 1, 'https://ror.org/04d3gaq18 Stay in the Shade'),
(93726, 'https://ror.org/04d4dr544', 'no_lang_code', 1, 'https://ror.org/04d4dr544 Theodor Bilharz Research Institute'),
(93727, 'https://ror.org/04d4vcg59', 'en', 1, 'https://ror.org/04d4vcg59 International Maize and Wheat Improvement Center'),
(93728, 'https://ror.org/04d4wjw61', 'en', 1, 'https://ror.org/04d4wjw61 International Medical University Universiti Perubatan Antarabangsa'),
(93729, 'https://ror.org/04d5m0m59', 'en', 1, 'https://ror.org/04d5m0m59 Pat Tillman Foundation'),
(93730, 'https://ror.org/04d5vd162', 'en', 1, 'https://ror.org/04d5vd162 AI Sweden'),
(93731, 'https://ror.org/04d77de73', 'en', 1, 'https://ror.org/04d77de73 Bundesanstalt für Geowissenschaften und Rohstoffe Federal Institute for Geosciences and Natural Resources'),
(93732, 'https://ror.org/04d7hfa19', 'en', 1, 'https://ror.org/04d7hfa19 Virginia Society of Ornithology'),
(93733, '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ığı'),
(93734, 'https://ror.org/04d8xwh61', 'en', 1, 'https://ror.org/04d8xwh61 Education Department of Jiangxi Province'),
(93735, 'https://ror.org/04dcagg48', 'en', 1, 'https://ror.org/04dcagg48 Bloxwich Hospital'),
(93736, 'https://ror.org/04ded0672', 'en', 1, 'https://ror.org/04ded0672 Andalas University Universitas Andalas'),
(93737, 'https://ror.org/04dj8jn04', 'no_lang_code', 1, 'https://ror.org/04dj8jn04 KWS Momont (France)'),
(93738, 'https://ror.org/04dj8ng22', 'en', 1, 'https://ror.org/04dj8ng22 Ufuk University Ufuk Üniversitesi'),
(93739, 'https://ror.org/04djvs197', 'en', 1, 'https://ror.org/04djvs197 Government Polytechnic College, Rajkot'),
(93740, 'https://ror.org/04dk1ra67', 'es', 1, 'https://ror.org/04dk1ra67 Secretariat of Energy SecretarĆ­a de EnergĆ­a'),
(93741, 'https://ror.org/04dmgak75', 'en', 1, 'https://ror.org/04dmgak75 NIHR BioResource'),
(93742, 'https://ror.org/04dmhbw81', 'en', 1, 'https://ror.org/04dmhbw81 Forrest Research Foundation'),
(93743, 'https://ror.org/04dqaqw31', 'fr', 1, 'https://ror.org/04dqaqw31 Unité transversale de recherche en psychogénèse et psychopathologie'),
(93744, 'https://ror.org/04ds5nc25', 'en', 1, 'https://ror.org/04ds5nc25 Arthritis Research Centre of Canada'),
(93745, 'https://ror.org/04dshyk09', 'no_lang_code', 1, 'https://ror.org/04dshyk09 Georex (France)'),
(93746, 'https://ror.org/04dsp3d63', 'en', 1, 'https://ror.org/04dsp3d63 Universal Healthwatch'),
(93747, 'https://ror.org/04dtfyh05', 'en', 0, 'https://ror.org/04dtfyh05 Peninsula College of Medicine and Dentistry'),
(93748, 'https://ror.org/04dwpyh46', 'pt', 1, 'https://ror.org/04dwpyh46 Centro Hospitalar do Porto'),
(93749, 'https://ror.org/04dxnaz06', 'en', 1, 'https://ror.org/04dxnaz06 Key Laboratory of Zoological Systematics and Evolution åŠØē‰©čæ›åŒ–äøŽē³»ē»Ÿå­¦é™¢é‡ē‚¹å®žéŖŒå®¤'),
(93750, 'https://ror.org/04dytjf82', 'en', 1, 'https://ror.org/04dytjf82 South African Immunology Society Suid-Afrikaanse Immunologie Vereeniging'),
(93751, 'https://ror.org/04dzb7272', 'no_lang_code', 1, 'https://ror.org/04dzb7272 Cengage Learning (United States)'),
(93752, 'https://ror.org/04e0v3f13', 'en', 1, 'https://ror.org/04e0v3f13 Narodowe Centrum Promieniowania Synchrotronowego SOLARIS SOLARIS National Synchrotron Radiation Centre'),
(93753, 'https://ror.org/04e4b7b24', 'en', 1, 'https://ror.org/04e4b7b24 Tropical Institute Of Community Health And Development'),
(93754, 'https://ror.org/04e4sh030', 'en', 1, 'https://ror.org/04e4sh030 Sussex Community NHS Foundation Trust'),
(93755, 'https://ror.org/04e5mhx31', 'no_lang_code', 1, 'https://ror.org/04e5mhx31 Vonova (United States)'),
(93756, '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'),
(93757, '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'),
(93758, 'https://ror.org/04e96zf49', 'en', 1, 'https://ror.org/04e96zf49 Nagase Science Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗé•·ē€¬ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(93759, 'https://ror.org/04ea3yn85', 'en', 1, 'https://ror.org/04ea3yn85 World Prevention Alliance'),
(93760, 'https://ror.org/04ebzxq58', 'es', 1, 'https://ror.org/04ebzxq58 Centro de Investigaciones Cardiovasculares'),
(93761, 'https://ror.org/04ecvhe96', 'en', 1, 'https://ror.org/04ecvhe96 National Museum of Natural History of the National Academy of Sciences of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науково-прироГничий музей ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(93762, 'https://ror.org/04eejsy70', 'de', 1, 'https://ror.org/04eejsy70 Faculty of Theology Fulda Theologische FakultƤt Fulda'),
(93763, 'https://ror.org/04ef2za66', 'en', 1, 'https://ror.org/04ef2za66 Pancreatic Cancer Research Fund'),
(93764, 'https://ror.org/04efb0644', 'no_lang_code', 1, 'https://ror.org/04efb0644 Isos Housing (United Kingdom)'),
(93765, 'https://ror.org/04egvf158', 'en', 1, 'https://ror.org/04egvf158 American Philosophical Society'),
(93766, 'https://ror.org/04ehecz88', 'en', 1, 'https://ror.org/04ehecz88 University of Pittsburgh Medical Center'),
(93767, 'https://ror.org/04emg8k55', 'en', 1, 'https://ror.org/04emg8k55 National Science and Technology Library å›½å®¶ē§‘ęŠ€å›¾ä¹¦ę–‡ēŒ®äø­åæƒ'),
(93768, 'https://ror.org/04enqng64', 'en', 1, 'https://ror.org/04enqng64 Guilin Municipal People''s Government ę”‚ęž—åø‚äŗŗę°‘ę”æåŗœ'),
(93769, 'https://ror.org/04envvc16', 'en', 1, 'https://ror.org/04envvc16 Paget Foundation'),
(93770, 'https://ror.org/04epn6t09', 'en', 1, 'https://ror.org/04epn6t09 Korean Society For The Study Of Physical Education ķ•œźµ­ģ²“ģœ”źµģœ”ķ•™ķšŒ'),
(93771, 'https://ror.org/04eqd2f30', 'no_lang_code', 1, 'https://ror.org/04eqd2f30 Tokyo Metropolitan Komagome Hospital ę„ŸęŸ“ē—‡ć‚»ćƒ³ć‚æćƒ¼éƒ½ē«‹é§’č¾¼ē—…é™¢'),
(93772, 'https://ror.org/04eqd3f31', 'id', 1, 'https://ror.org/04eqd3f31 Universitas Teknologi Indonesia'),
(93773, 'https://ror.org/04er69203', 'en', 1, 'https://ror.org/04er69203 Regional Health Administration of Thessaly'),
(93774, 'https://ror.org/04ergcq69', 'no_lang_code', 1, 'https://ror.org/04ergcq69 Kantar TNS (France)'),
(93775, 'https://ror.org/04es2gg88', 'en', 1, 'https://ror.org/04es2gg88 Motor Neurone Disease Research Australia'),
(93776, 'https://ror.org/04etfjw39', 'en', 1, 'https://ror.org/04etfjw39 Oriental Bird Club'),
(93777, 'https://ror.org/04ev1zs55', 'fr', 1, 'https://ror.org/04ev1zs55 Centre de Recherche sur les MƩdiations'),
(93778, 'https://ror.org/04evj0n95', 'en', 1, 'https://ror.org/04evj0n95 Slovenian Academy of Sciences and Arts Slovenska Akademija Znanosti in Umetnosti'),
(93779, 'https://ror.org/04ew43640', 'en', 1, 'https://ror.org/04ew43640 Center for Excellence in Molecular Plant Sciences å‘½ē§‘å­¦ē ”ē©¶é™¢åˆ†å­ę¤ē‰©ē§‘å­¦å“č¶Šåˆ›ę–°äø­åæƒ'),
(93780, 'https://ror.org/04ex1sj81', 'de', 1, 'https://ror.org/04ex1sj81 Kommission für Archäologische Landesforschung in Hessen e.V.'),
(93781, 'https://ror.org/04ezbda36', 'no_lang_code', 1, 'https://ror.org/04ezbda36 leadXpro'),
(93782, 'https://ror.org/04f0vbp79', 'no_lang_code', 1, 'https://ror.org/04f0vbp79 Mindgardens Neuroscience Network'),
(93783, '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'),
(93784, 'https://ror.org/04f1rr989', 'es', 1, 'https://ror.org/04f1rr989 Centro de Estudios, Medición y Certificación de Calidad'),
(93785, 'https://ror.org/04f5ctv63', 'fr', 1, 'https://ror.org/04f5ctv63 Office FranƧais de la BiodiversitƩ'),
(93786, 'https://ror.org/04f5g2442', 'en', 1, 'https://ror.org/04f5g2442 Rajasthan University of Health Sciences ą¤°ą¤¾ą¤œą¤øą„ā€ą¤„ą¤¾ą¤Ø ą¤øą„ā€ą¤µą¤¾ą¤øą„ā€ą¤„ą„ā€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(93787, 'https://ror.org/04f7q6293', 'en', 1, 'https://ror.org/04f7q6293 Teaching University European Academy'),
(93788, 'https://ror.org/04f7sbz75', 'no_lang_code', 1, 'https://ror.org/04f7sbz75 Cirtec Medical (United States)'),
(93789, 'https://ror.org/04f927797', 'en', 1, 'https://ror.org/04f927797 European Institute for Systems Biology and Medicine'),
(93790, 'https://ror.org/04facnr46', 'en', 1, 'https://ror.org/04facnr46 EU Business School'),
(93791, 'https://ror.org/04fbf9935', 'it', 1, 'https://ror.org/04fbf9935 Piedmont Region Regione Piemonte'),
(93792, 'https://ror.org/04fegx276', 'de', 1, 'https://ror.org/04fegx276 Janggen-Pƶhn-Stiftung'),
(93793, 'https://ror.org/04ff2nx78', 'en', 1, 'https://ror.org/04ff2nx78 Tajikistan–Russian Modern University'),
(93794, 'https://ror.org/04ffbf641', 'en', 1, 'https://ror.org/04ffbf641 Divine Word Missionaries Societas Verbi Divini'),
(93795, 'https://ror.org/04fgpet95', 'en', 1, 'https://ror.org/04fgpet95 University Hospital of Wales Ysbyty Athrofaol Cymru'),
(93796, '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'),
(93797, 'https://ror.org/04fme8709', 'en', 1, 'https://ror.org/04fme8709 Center for Free-Electron Laser Science'),
(93798, 'https://ror.org/04fnrj705', 'en', 1, 'https://ror.org/04fnrj705 South African Genetics Society Suid-Afrikaanse Genetiese Vereeniging'),
(93799, 'https://ror.org/04fpm9z44', 'no_lang_code', 1, 'https://ror.org/04fpm9z44 Sugar Research Australia (Australia)'),
(93800, 'https://ror.org/04fptm728', 'no_lang_code', 1, 'https://ror.org/04fptm728 European Framework Program Consulting (United Kingdom)'),
(93801, 'https://ror.org/04ftcn206', 'no_lang_code', 1, 'https://ror.org/04ftcn206 First Light Fusion'),
(93802, 'https://ror.org/04ftsv531', 'de', 1, 'https://ror.org/04ftsv531 Neue Materialien Bayreuth GmbH'),
(93803, 'https://ror.org/04fx88130', 'sv', 1, 'https://ror.org/04fx88130 Stiftelsen fƶr Gamla TjƤnarinnor'),
(93804, 'https://ror.org/04fyf7n53', 'pt', 1, 'https://ror.org/04fyf7n53 Escola Superior Pedagógica do Bengo'),
(93805, 'https://ror.org/04fzaxn66', 'en', 1, 'https://ror.org/04fzaxn66 Precious Cornerstone University'),
(93806, 'https://ror.org/04g08bx14', 'en', 1, 'https://ror.org/04g08bx14 European University įƒ”įƒ•įƒ įƒįƒžįƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(93807, 'https://ror.org/04g1c5a53', 'fr', 1, 'https://ror.org/04g1c5a53 Ecole Centrale Casablanca المدرسة Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠŲ© للدار Ų§Ł„ŲØŁŠŲ¶Ų§Ų”'),
(93808, 'https://ror.org/04g1zbq46', 'en', 1, 'https://ror.org/04g1zbq46 Department of Chemistry Malaysia Jabatan Kimia Malaysia'),
(93809, 'https://ror.org/04g479c53', 'no_lang_code', 1, 'https://ror.org/04g479c53 OpSaniTx (United States)'),
(93810, 'https://ror.org/04g4sf283', 'en', 1, 'https://ror.org/04g4sf283 Office of Data Science Strategy'),
(93811, 'https://ror.org/04g6r1b21', 'en', 1, 'https://ror.org/04g6r1b21'),
(93812, 'https://ror.org/04g9wva49', 'es', 1, 'https://ror.org/04g9wva49 Corporación Universitaria de Ciencias Empresariales, Educación y Salud como proyecto Institucional'),
(93813, 'https://ror.org/04gd0tn14', 'no_lang_code', 1, 'https://ror.org/04gd0tn14 Separations (South Africa)'),
(93814, 'https://ror.org/04gecpj69', 'en', 1, 'https://ror.org/04gecpj69 Lake Forest Academy'),
(93815, 'https://ror.org/04gedeb17', 'en', 1, 'https://ror.org/04gedeb17 Solihull Hospital'),
(93816, 'https://ror.org/04gen2f55', 'es', 1, 'https://ror.org/04gen2f55 Colegio Nacional de Monserrat'),
(93817, 'https://ror.org/04gfcm466', 'no_lang_code', 1, 'https://ror.org/04gfcm466 Clear Hat Consulting (United States)'),
(93818, 'https://ror.org/04ggh4w95', 'no_lang_code', 1, 'https://ror.org/04ggh4w95 Pilsen Region Plzeňský kraj'),
(93819, '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'),
(93820, 'https://ror.org/04gh4er46', 'en', 1, 'https://ror.org/04gh4er46 Shenzhen Institutes of Advanced Technology äø­å›½ē§‘å­¦é™¢ę·±åœ³å…ˆčæ›ęŠ€ęœÆē ”ē©¶é™¢'),
(93821, 'https://ror.org/04gjyrn78', 'fr', 1, 'https://ror.org/04gjyrn78 Laboratoire Public d''Essais et d''Etudes'),
(93822, 'https://ror.org/04gkkrw50', 'en', 1, 'https://ror.org/04gkkrw50 Al-Saeed University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³Ų¹ŁŠŲÆ'),
(93823, 'https://ror.org/04gktak93', 'en', 1, 'https://ror.org/04gktak93 Conservation Biology Institute'),
(93824, 'https://ror.org/04gm9mk98', 'en', 1, 'https://ror.org/04gm9mk98 Hutton Parker Foundation'),
(93825, 'https://ror.org/04gmrh438', 'fr', 1, 'https://ror.org/04gmrh438 Institut de recherches sur l''Ć©volution de la nation et de l''Ɖtat'),
(93826, 'https://ror.org/04gqegw98', 'en', 1, 'https://ror.org/04gqegw98 Higher School of Privatization and Entrepreneurship'),
(93827, 'https://ror.org/04gr31p94', 'en', 0, 'https://ror.org/04gr31p94 Bashkir State University Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚');
INSERT INTO `rors` VALUES
(93828, 'https://ror.org/04gsgxx86', 'en', 1, 'https://ror.org/04gsgxx86 NOAA Office of Sustainable Fisheries'),
(93829, 'https://ror.org/04gsp2c11', 'en', 1, 'https://ror.org/04gsp2c11 James Cook University'),
(93830, 'https://ror.org/04gt6fy94', 'de', 1, 'https://ror.org/04gt6fy94 Wissenschaftspressekonferenz'),
(93831, 'https://ror.org/04gw0z407', 'de', 1, 'https://ror.org/04gw0z407 Aachener Centrum für Technologietransfer in der Ophthalmologie'),
(93832, 'https://ror.org/04gw4zv66', 'en', 1, 'https://ror.org/04gw4zv66 Landmark University'),
(93833, 'https://ror.org/04gycm791', 'en', 1, 'https://ror.org/04gycm791 MRC Institute of Hearing Research'),
(93834, 'https://ror.org/04h03k610', 'no_lang_code', 1, 'https://ror.org/04h03k610 Scienion (Germany)'),
(93835, 'https://ror.org/04h1wg685', 'de', 1, 'https://ror.org/04h1wg685 Wasserstraßen- und Schifffahrtsamt Ems-Nordsee'),
(93836, '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'),
(93837, 'https://ror.org/04h4c6x44', 'de', 1, 'https://ror.org/04h4c6x44 Japanese-German Center Berlin Japanisch-Deutsches Zentrum Berlin ćƒ™ćƒ«ćƒŖćƒ³ę—„ē‹¬ć‚»ćƒ³ć‚æćƒ¼'),
(93838, 'https://ror.org/04h9nhc82', 'en', 0, 'https://ror.org/04h9nhc82 Illinois Clean Coal Institute'),
(93839, 'https://ror.org/04hawj979', 'en', 0, 'https://ror.org/04hawj979 Department of Terrestrial Magnetism'),
(93840, 'https://ror.org/04hazwa85', 'en', 1, 'https://ror.org/04hazwa85 Galerie výtvarnĆ©ho uměnĆ­ v Ostravě Gallery of Fine Arts in Ostrava'),
(93841, 'https://ror.org/04hccab49', 'en', 1, 'https://ror.org/04hccab49 NASA Research Park'),
(93842, 'https://ror.org/04hcdse87', 'es', 1, 'https://ror.org/04hcdse87 Instituto Universitario Internacional de Toluca'),
(93843, 'https://ror.org/04hf5kq57', 'en', 1, 'https://ror.org/04hf5kq57 New York State Department of Health'),
(93844, 'https://ror.org/04hhwm583', 'no_lang_code', 0, 'https://ror.org/04hhwm583 Computer Sciences Corporation (United States)'),
(93845, 'https://ror.org/04hj4ye31', 'en', 1, 'https://ror.org/04hj4ye31 Khorugh State University Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии Š„Š¾Ń€ŃƒŅ“ ба номи М. ŠŠ°Š·Š°Ń€ŃˆŠ¾ŠµŠ²'),
(93846, 'https://ror.org/04hj58z87', 'no_lang_code', 1, 'https://ror.org/04hj58z87 Hanita Coatings (Israel)'),
(93847, 'https://ror.org/04hj67y24', 'en', 1, 'https://ror.org/04hj67y24 Centro Internazionale Scienze Meccaniche International Centre for Mechanical Sciences'),
(93848, 'https://ror.org/04hjr4202', 'en', 1, 'https://ror.org/04hjr4202 İzmir Ekonomi Üniversitesi İzmir University of Economics İzmir İqtisadiyyat Universiteti'),
(93849, 'https://ror.org/04hkmct58', 'en', 1, 'https://ror.org/04hkmct58 Coastal and Estuarine Research Federation'),
(93850, 'https://ror.org/04hkn3159', 'en', 1, 'https://ror.org/04hkn3159 Avatar Alliance Foundation'),
(93851, 'https://ror.org/04hm8eb66', 'en', 1, 'https://ror.org/04hm8eb66 Fraunhofer Institute for Mechanics of Materials Fraunhofer-Institut für Werkstoffmechanik'),
(93852, 'https://ror.org/04hmsv365', 'en', 1, 'https://ror.org/04hmsv365 Technological University Myeik'),
(93853, 'https://ror.org/04hmt0j25', 'en', 1, 'https://ror.org/04hmt0j25 Korea Foundation for Max Planck POSTECH ė§‰ģŠ¤ ķ”Œėž‘ķ¬ ķ¬ģŠ¤ķ… ķ•œźµ­ ģž¬ė‹Ø'),
(93854, 'https://ror.org/04hn3c767', 'es', 1, 'https://ror.org/04hn3c767 Universidad Humanitas'),
(93855, 'https://ror.org/04hnckd53', 'en', 1, 'https://ror.org/04hnckd53 Alberta Prion Research Institute'),
(93856, 'https://ror.org/04hqxh742', 'en', 1, 'https://ror.org/04hqxh742 Arnold Ventures'),
(93857, 'https://ror.org/04hr9rp97', 'es', 1, 'https://ror.org/04hr9rp97 Universidad de Turismo y Ciencias Administrativas'),
(93858, 'https://ror.org/04hsbr766', 'de', 1, 'https://ror.org/04hsbr766 Dienstleistungszentrum LƤndlicher Raum Mosel'),
(93859, 'https://ror.org/04hwsg107', 'fr', 1, 'https://ror.org/04hwsg107 Caisse nationale de l''assurance vieillesse'),
(93860, 'https://ror.org/04hzbg791', 'pt', 1, 'https://ror.org/04hzbg791 Instituto Superior de Tecnologias AvanƧadas'),
(93861, 'https://ror.org/04j1n1c04', 'en', 1, 'https://ror.org/04j1n1c04 RIKEN Center for Brain Science å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€č„³ē„žēµŒē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(93862, 'https://ror.org/04j2dcn77', 'id', 1, 'https://ror.org/04j2dcn77 Universitas Timbul Nusantara'),
(93863, 'https://ror.org/04j69fe92', 'en', 1, 'https://ror.org/04j69fe92 Boscombe Community Hospital'),
(93864, 'https://ror.org/04ja8je85', 'en', 1, 'https://ror.org/04ja8je85 State of Maryland'),
(93865, 'https://ror.org/04jbf9x18', 'en', 1, 'https://ror.org/04jbf9x18 Southwest China Institute of Electronic Technology č„æå—ē”µå­ęŠ€ęœÆē ”ē©¶ę‰€'),
(93866, 'https://ror.org/04jc9bc30', 'es', 1, 'https://ror.org/04jc9bc30 Instituto de Innovación Agropecuaria de PanamÔ'),
(93867, 'https://ror.org/04jddh448', 'en', 1, 'https://ror.org/04jddh448 Tropical Resources Institute'),
(93868, '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'),
(93869, 'https://ror.org/04jfmb677', 'en', 0, 'https://ror.org/04jfmb677 Art Institute of Fort Lauderdale'),
(93870, 'https://ror.org/04jhb1n36', 'id', 1, 'https://ror.org/04jhb1n36 Universitas Budi Luhur'),
(93871, 'https://ror.org/04jjb9549', 'en', 1, 'https://ror.org/04jjb9549 Groupe Banque TD TD Bank Group'),
(93872, 'https://ror.org/04jjn5s14', 'en', 1, 'https://ror.org/04jjn5s14 Wuhan Municipal Health Commission ę­¦ę±‰åø‚å«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(93873, 'https://ror.org/04jjna482', 'es', 1, 'https://ror.org/04jjna482 Universidad Católica Nuestra Señora de la Asunción'),
(93874, 'https://ror.org/04jmpmc14', 'en', 1, 'https://ror.org/04jmpmc14 Jefferson Scholars Foundation'),
(93875, 'https://ror.org/04jndar25', 'no_lang_code', 1, 'https://ror.org/04jndar25 NEC (Japan) ę—„ęœ¬é›»ę°—'),
(93876, 'https://ror.org/04jpr8986', 'es', 1, 'https://ror.org/04jpr8986 Universidad Latinoamericana de Comercio Exterior'),
(93877, 'https://ror.org/04jt7y777', 'en', 1, 'https://ror.org/04jt7y777 Technological University, Taunggyi'),
(93878, 'https://ror.org/04jv0aa72', 'no_lang_code', 0, 'https://ror.org/04jv0aa72 Kvaerner (Finland)'),
(93879, 'https://ror.org/04jva0k64', 'no_lang_code', 1, 'https://ror.org/04jva0k64 Sinton Instruments'),
(93880, 'https://ror.org/04jvqda35', 'no_lang_code', 1, 'https://ror.org/04jvqda35 Curium (United Kingdom)'),
(93881, 'https://ror.org/04k0s2970', 'en', 1, 'https://ror.org/04k0s2970 Tasmanian Government'),
(93882, 'https://ror.org/04k4bmf32', 'en', 0, 'https://ror.org/04k4bmf32 Naval Medical Research Institute'),
(93883, 'https://ror.org/04k51q396', 'en', 1, 'https://ror.org/04k51q396 HÓpital universitaire de Bâle University Hospital of Basel Universitätsspital Basel'),
(93884, 'https://ror.org/04k59bg10', 'en', 0, 'https://ror.org/04k59bg10 Department of Jobs and Small Business'),
(93885, 'https://ror.org/04k90qk38', 'en', 1, 'https://ror.org/04k90qk38 Science Media Center Taiwan å°ē£ē§‘ęŠ€åŖ’é«”äø­åæƒ'),
(93886, 'https://ror.org/04k9b1910', 'en', 1, 'https://ror.org/04k9b1910 School for Compassionate Action'),
(93887, 'https://ror.org/04ka8rx28', 'en', 1, 'https://ror.org/04ka8rx28 Bu-Ali Sina University دانؓگاه ŲØŁˆŲ¹Ł„ŪŒ Ų³ŪŒŁ†Ų§'),
(93888, 'https://ror.org/04kakt857', 'en', 1, 'https://ror.org/04kakt857 Institute of Normal Physiology named after P.K. Anokhin ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š¾Ń€Š¼Š°Š»ŃŒŠ½Š¾Š¹ физиологии имени П. К. Анохина'),
(93889, 'https://ror.org/04kbz1397', 'en', 1, 'https://ror.org/04kbz1397 Calvary Mater Newcastle Hospital'),
(93890, 'https://ror.org/04kd26r92', 'en', 1, 'https://ror.org/04kd26r92 Grampians Health'),
(93891, 'https://ror.org/04kd28k12', 'en', 1, 'https://ror.org/04kd28k12 Providence Hospital'),
(93892, 'https://ror.org/04kddtt70', 'ro', 1, 'https://ror.org/04kddtt70 Institutul National de Cercetari Economice "Costin C. Kiritescu"'),
(93893, 'https://ror.org/04kfq3e26', 'en', 1, 'https://ror.org/04kfq3e26 NOAA National Weather Service Central Region'),
(93894, 'https://ror.org/04kk6v249', 'en', 0, 'https://ror.org/04kk6v249 Black Country Partnership NHS Foundation Trust'),
(93895, 'https://ror.org/04knzwb58', 'de', 0, 'https://ror.org/04knzwb58 Virchow Klinikum'),
(93896, 'https://ror.org/04kqgqa72', 'en', 1, 'https://ror.org/04kqgqa72 Mississippi Institutions of Higher Learning'),
(93897, 'https://ror.org/04ksz1n23', 'en', 1, 'https://ror.org/04ksz1n23 LabourƩ College'),
(93898, 'https://ror.org/04kt19158', 'en', 1, 'https://ror.org/04kt19158 Justice for Magdalenes Research'),
(93899, 'https://ror.org/04kxf1r09', 'es', 1, 'https://ror.org/04kxf1r09 Agencia Estatal de Meteorología, Instituto Central Meteorológico Agència Estatal de Meteorologia Meteorologiako Estatu Agentzia State Meteorological Agency'),
(93900, 'https://ror.org/04kyfd050', 'no_lang_code', 1, 'https://ror.org/04kyfd050 Astellas Pharma (Netherlands)'),
(93901, 'https://ror.org/04kyt9204', 'en', 1, 'https://ror.org/04kyt9204 Dr. NTR University of Health Sciences NTR ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤ą¤Øą¤Ÿą„€ą¤†ą¤° ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą°Žą°Øą±.టి.ą°†ą°°ą±. ą°†ą°°ą±‹ą°—ą±ą°Æą°¶ą°¾ą°øą±ą°¤ą±ą°° ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(93902, 'https://ror.org/04kyvky59', 'en', 1, 'https://ror.org/04kyvky59 Graduate Women in Science'),
(93903, 'https://ror.org/04kz0c205', 'en', 1, 'https://ror.org/04kz0c205 Rocky Mountain Elk Foundation'),
(93904, 'https://ror.org/04kz5ba43', 'en', 1, 'https://ror.org/04kz5ba43 Uniwersytet WSB Merito Poznań WSB Merito University in Poznan'),
(93905, 'https://ror.org/04m0ms912', 'en', 1, 'https://ror.org/04m0ms912 National Office of Philosophy and Social Sciences å…Øå›½å“²å­¦ē¤¾ä¼šē§‘å­¦å·„ä½œåŠžå…¬å®¤'),
(93906, 'https://ror.org/04m5bjk54', 'nl', 1, 'https://ror.org/04m5bjk54 Dutch Language Institute Instituut voor de Nederlandse Taal'),
(93907, 'https://ror.org/04m6tvf27', 'en', 1, 'https://ror.org/04m6tvf27 Kansas Wheat Commission'),
(93908, 'https://ror.org/04m72am57', 'es', 1, 'https://ror.org/04m72am57 Universidad Autonoma de Chinandega'),
(93909, 'https://ror.org/04mc00f74', 'en', 0, 'https://ror.org/04mc00f74 United Nations Department of Peacekeeping Operations'),
(93910, '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'),
(93911, 'https://ror.org/04mgfev69', 'it', 1, 'https://ror.org/04mgfev69 Instituto Nazionale Tumori Regina Elena'),
(93912, 'https://ror.org/04mgxhr44', 'en', 1, 'https://ror.org/04mgxhr44 Mugda Medical College মুগদা মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(93913, 'https://ror.org/04mh3wq56', 'no_lang_code', 1, 'https://ror.org/04mh3wq56 Altakitin (Portugal)'),
(93914, 'https://ror.org/04mhg2c91', 'en', 1, 'https://ror.org/04mhg2c91 Best Buddies International'),
(93915, 'https://ror.org/04mk29570', 'en', 1, 'https://ror.org/04mk29570 Bundesamt für Landwirtschaft Federal Office for Agriculture'),
(93916, 'https://ror.org/04mknbs38', 'en', 0, 'https://ror.org/04mknbs38 State Key Laboratory of Hydrology Water Resources and Hydraulic Engineering ę°“ę–‡ę°“čµ„ęŗäøŽę°“åˆ©å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93917, 'https://ror.org/04mm5g824', 'en', 1, 'https://ror.org/04mm5g824 Royal Osteoporosis Society'),
(93918, 'https://ror.org/04mm88136', 'en', 1, 'https://ror.org/04mm88136 Grantham Foundation'),
(93919, 'https://ror.org/04mndkp04', 'en', 1, 'https://ror.org/04mndkp04 International University & Polytechnic of Benin'),
(93920, 'https://ror.org/04mnmrh54', 'fr', 1, 'https://ror.org/04mnmrh54 Saint-Gobain Recherche Paris'),
(93921, 'https://ror.org/04mr78v45', 'en', 1, 'https://ror.org/04mr78v45 Department of Mines, Industry Regulation and Safety'),
(93922, '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'),
(93923, 'https://ror.org/04mvgap27', 'en', 1, 'https://ror.org/04mvgap27 Banner Children''s at Desert'),
(93924, 'https://ror.org/04mvjgw79', 'no_lang_code', 0, 'https://ror.org/04mvjgw79 Amec Foster Wheeler (United Kingdom)'),
(93925, 'https://ror.org/04mwxpa60', 'en', 0, 'https://ror.org/04mwxpa60 Canadian Journal of Administrative Sciences Revue Canadienne des Sciences de l''Administration'),
(93926, 'https://ror.org/04mx1wt49', 'en', 1, 'https://ror.org/04mx1wt49 Netherlands Research School for Literary Studies'),
(93927, 'https://ror.org/04mynmf89', 'en', 1, 'https://ror.org/04mynmf89 St Vincent Hospital'),
(93928, 'https://ror.org/04mynmy44', 'en', 1, 'https://ror.org/04mynmy44 Alzahra Medical and Education Center'),
(93929, 'https://ror.org/04mz2ft79', 'en', 1, 'https://ror.org/04mz2ft79 Bayan University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁŠŲ§Ł†'),
(93930, 'https://ror.org/04mz79w33', 'en', 1, 'https://ror.org/04mz79w33 Thoracic Society of Australia and New Zealand'),
(93931, 'https://ror.org/04mzk4q39', 'en', 1, 'https://ror.org/04mzk4q39 Showa University ę˜­å’Œå¤§å­¦'),
(93932, 'https://ror.org/04mznrw11', 'en', 1, 'https://ror.org/04mznrw11 University of Benin YunifÔsítì ìlú Benin'),
(93933, 'https://ror.org/04n143x36', 'es', 1, 'https://ror.org/04n143x36 Unidad Ejecutora Lillo'),
(93934, 'https://ror.org/04n1n3n22', 'no_lang_code', 1, 'https://ror.org/04n1n3n22 QB3'),
(93935, 'https://ror.org/04n3mpk26', 'it', 1, 'https://ror.org/04n3mpk26 Istituto Marangoni London'),
(93936, 'https://ror.org/04n4phh48', 'no_lang_code', 1, 'https://ror.org/04n4phh48 Process NMR Associates'),
(93937, 'https://ror.org/04n4xt623', 'fr', 1, 'https://ror.org/04n4xt623 Ɖcole nationale supĆ©rieure de la photographie'),
(93938, 'https://ror.org/04n8zmx34', 'en', 1, 'https://ror.org/04n8zmx34 Virginia Department of Transportation'),
(93939, 'https://ror.org/04ng81283', 'en', 1, 'https://ror.org/04ng81283 Science History Institute'),
(93940, 'https://ror.org/04ngyrz44', 'en', 1, 'https://ror.org/04ngyrz44 JCT College Of Engineering And Technology ą®œąÆ‡. சி. டி. ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(93941, 'https://ror.org/04nh79216', 'es', 1, 'https://ror.org/04nh79216 Instituto de Investigación Médica Mercedes y Martín Ferreyra'),
(93942, 'https://ror.org/04nhg3e68', 'en', 0, 'https://ror.org/04nhg3e68 Lindenwood University – Belleville'),
(93943, 'https://ror.org/04nkhwh30', 'en', 1, 'https://ror.org/04nkhwh30 University of Hull'),
(93944, 'https://ror.org/04nmj5x57', 'en', 1, 'https://ror.org/04nmj5x57 Sigma Xi'),
(93945, 'https://ror.org/04nmjep87', 'en', 1, 'https://ror.org/04nmjep87 University of California Natural Reserve System'),
(93946, 'https://ror.org/04nn36f62', 'en', 0, 'https://ror.org/04nn36f62 Skills'),
(93947, 'https://ror.org/04nnnz708', 'en', 1, 'https://ror.org/04nnnz708 Booz Allen Foundation'),
(93948, 'https://ror.org/04nps9965', 'en', 1, 'https://ror.org/04nps9965 Institute of Earth Environment äø­å›½ē§‘å­¦é™¢åœ°ēƒēŽÆå¢ƒē ”ē©¶ę‰€'),
(93949, 'https://ror.org/04nrmhz52', 'de', 1, 'https://ror.org/04nrmhz52 Linden-Museum Stuttgart'),
(93950, 'https://ror.org/04nt6ra73', 'no_lang_code', 1, 'https://ror.org/04nt6ra73 GEO Group (Czechia)'),
(93951, 'https://ror.org/04nvnkt69', 'en', 1, 'https://ror.org/04nvnkt69 Academy of Fine Arts Prague Akademie výtvarných uměnĆ­ v Praze'),
(93952, 'https://ror.org/04nw9e879', 'id', 1, 'https://ror.org/04nw9e879 Sekolah Tinggi Pastoral Don Bosco Tomohon'),
(93953, 'https://ror.org/04nx14k28', 'es', 1, 'https://ror.org/04nx14k28 Instituto Dermatológico y Cirugía de Piel "Dr. Huberto Bogaert Díaz"'),
(93954, 'https://ror.org/04nx3xw90', 'en', 1, 'https://ror.org/04nx3xw90 Adventist La Grange Memorial Hospital'),
(93955, 'https://ror.org/04nx9ps90', 'fr', 1, 'https://ror.org/04nx9ps90 Ɖcole SupĆ©rieure d''Ɖlectronique de l''Ouest'),
(93956, 'https://ror.org/04nxv4b11', 'no_lang_code', 1, 'https://ror.org/04nxv4b11 Shepherd Chemicals (United States)'),
(93957, 'https://ror.org/04nxw7p13', 'en', 1, 'https://ror.org/04nxw7p13 Ascension Via Christi'),
(93958, 'https://ror.org/04p22jz17', 'en', 1, 'https://ror.org/04p22jz17 Adithya Institute of Technology'),
(93959, 'https://ror.org/04p8tdq61', 'no_lang_code', 1, 'https://ror.org/04p8tdq61 Prototype Productions (United States)'),
(93960, 'https://ror.org/04p8yac25', 'en', 1, 'https://ror.org/04p8yac25 Malopolska Association For Agricultural Extension At The Agricultural University of Cracow'),
(93961, 'https://ror.org/04patj340', 'fr', 1, 'https://ror.org/04patj340 Laboratoire Ethologie Cognition DƩveloppement'),
(93962, 'https://ror.org/04pbb0381', 'pl', 1, 'https://ror.org/04pbb0381 WSHIU Akademia Nauk Stosowanych'),
(93963, 'https://ror.org/04pd5sn65', 'en', 1, 'https://ror.org/04pd5sn65 Scottish Storytelling Centre'),
(93964, 'https://ror.org/04pdst769', 'en', 1, 'https://ror.org/04pdst769 Credible Arts Therapies'),
(93965, 'https://ror.org/04pfac868', 'en', 0, 'https://ror.org/04pfac868 Bear Fight Institute'),
(93966, 'https://ror.org/04pg1df08', 'no_lang_code', 1, 'https://ror.org/04pg1df08 Biogen (Belgium)'),
(93967, 'https://ror.org/04pgfae68', 'no_lang_code', 1, 'https://ror.org/04pgfae68 BuroHappold (United Kingdom)'),
(93968, 'https://ror.org/04phmsq76', 'fr', 0, 'https://ror.org/04phmsq76 Imagerie par RƩsonance MagnƩtique MƩdicale et Multi-ModalitƩs'),
(93969, 'https://ror.org/04pk7mf78', 'en', 1, 'https://ror.org/04pk7mf78 Einstein Forum'),
(93970, 'https://ror.org/04pmvpd04', 'en', 1, 'https://ror.org/04pmvpd04 Kenya Library and Information Services Consortium'),
(93971, 'https://ror.org/04ppn8q70', 'de', 1, 'https://ror.org/04ppn8q70 Verband der UniversitƤtsklinika Deutschlands'),
(93972, 'https://ror.org/04pq5sx96', 'no_lang_code', 1, 'https://ror.org/04pq5sx96 EDF Energy North America ƉlectricitĆ© de France'),
(93973, 'https://ror.org/04pqny312', 'en', 1, 'https://ror.org/04pqny312 Institute of the Pacific United, International Pacific College'),
(93974, 'https://ror.org/04pvg6f08', 'no_lang_code', 1, 'https://ror.org/04pvg6f08 Bio-protocol (United States)'),
(93975, 'https://ror.org/04pyhyx87', 'en', 1, 'https://ror.org/04pyhyx87 Brand University of Applied Science Hamburg'),
(93976, 'https://ror.org/04pyne868', 'en', 0, 'https://ror.org/04pyne868 Infocomm Development Authority of Singapore'),
(93977, 'https://ror.org/04q062s21', 'en', 1, 'https://ror.org/04q062s21 Marshall Aid Commemoration Commission'),
(93978, 'https://ror.org/04q107642', 'en', 1, 'https://ror.org/04q107642 Cork University Hospital OspidƩal Ollscoil Chorcaƭ'),
(93979, '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'),
(93980, 'https://ror.org/04q4ck618', 'en', 1, 'https://ror.org/04q4ck618 Brain Research UK'),
(93981, 'https://ror.org/04q5j9b45', 'fr', 1, 'https://ror.org/04q5j9b45 Institut de Veille Sanitaire Institute of Health Surveillance'),
(93982, 'https://ror.org/04q6c7p66', 'en', 1, 'https://ror.org/04q6c7p66 China University of Geosciences (Beijing) äø­å›½åœ°č“Øå¤§å­¦ (åŒ—äŗ¬)'),
(93983, 'https://ror.org/04q6sm464', 'en', 1, 'https://ror.org/04q6sm464 International Society of Bipolar Disorders'),
(93984, 'https://ror.org/04q6x6x06', 'en', 1, 'https://ror.org/04q6x6x06 Kutaisi University įƒ„įƒ£įƒ—įƒįƒ˜įƒ”įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(93985, 'https://ror.org/04q7emk12', 'no_lang_code', 1, 'https://ror.org/04q7emk12 C12 Quantum Electronics (France)'),
(93986, 'https://ror.org/04q881785', 'en', 1, 'https://ror.org/04q881785 Ministerstvo životného prostredia SR Ministry of the Environment of the Slovak Republic'),
(93987, 'https://ror.org/04qaf2y58', 'en', 1, 'https://ror.org/04qaf2y58 NOAA International & Interagency Affairs Division'),
(93988, 'https://ror.org/04qb0m613', 'en', 1, 'https://ror.org/04qb0m613 Ontario Turtle Conservation Centre'),
(93989, 'https://ror.org/04qbgyy75', 'en', 1, 'https://ror.org/04qbgyy75 Mid-Atlantic Association of Museums'),
(93990, 'https://ror.org/04qbxr381', 'en', 1, 'https://ror.org/04qbxr381 International Research and Training Center ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ науково Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ центр інформаційних технологій і систем ŠŠŠ України та ŠœŠžŠ України'),
(93991, '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'),
(93992, 'https://ror.org/04qct7s53', 'en', 1, 'https://ror.org/04qct7s53 Excelsia College, Wesley Institute'),
(93993, 'https://ror.org/04qcyxv03', 'en', 1, 'https://ror.org/04qcyxv03 Sri Shankara Cancer Hospital and Research Center ą²¶ą³ą²°ą³€ ಶಂಕರ ą²•ą³ą²Æą²¾ą²Øą³ą²øą²°ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³† ą²®ą²¤ą³ą²¤ą³ ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(93994, 'https://ror.org/04qdbg778', 'en', 1, 'https://ror.org/04qdbg778 Kyushu University Beppu Hospital ä¹å·žå¤§å­¦ē—…é™¢åˆ„åŗœē—…é™¢'),
(93995, 'https://ror.org/04qfm3385', 'en', 0, 'https://ror.org/04qfm3385 University Press of Mississippi'),
(93996, 'https://ror.org/04qgr7x96', 'en', 1, 'https://ror.org/04qgr7x96 Hunan Provincial Science and Technology Department'),
(93997, 'https://ror.org/04qgstt59', 'de', 1, 'https://ror.org/04qgstt59 Schweizerische Stiftung für die Erforschung der Muskelkrankheiten'),
(93998, 'https://ror.org/04qjmsq15', 'pt', 1, 'https://ror.org/04qjmsq15 Escola Superior de CiĆŖncias da SaĆŗde'),
(93999, 'https://ror.org/04qjrz315', 'no_lang_code', 1, 'https://ror.org/04qjrz315 Universitet Kajnar'),
(94000, 'https://ror.org/04qkb5e79', 'en', 1, 'https://ror.org/04qkb5e79 Manipal-Tata Medical College, Jamshedpur'),
(94001, 'https://ror.org/04qp96f78', 'no_lang_code', 1, 'https://ror.org/04qp96f78 Polypico'),
(94002, 'https://ror.org/04qtnm446', 'en', 0, 'https://ror.org/04qtnm446 Republican Clinical Oncology Center Республиканский клинический онкологический Гиспансер'),
(94003, 'https://ror.org/04qtr9c10', 'es', 1, 'https://ror.org/04qtr9c10 Hospital Privado'),
(94004, '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'),
(94005, 'https://ror.org/04qxks937', 'no_lang_code', 1, 'https://ror.org/04qxks937 Kemira (Finland)'),
(94006, 'https://ror.org/04qxsr837', 'en', 1, 'https://ror.org/04qxsr837 Advanced Photon Source'),
(94007, 'https://ror.org/04qy5ef02', 'en', 1, 'https://ror.org/04qy5ef02 Heritage Baptist College and Heritage Theological Seminary, Heritage College and Seminary'),
(94008, 'https://ror.org/04qz58w11', 'en', 1, 'https://ror.org/04qz58w11 Quahog Bay Conservancy'),
(94009, 'https://ror.org/04qzr9r50', 'es', 1, 'https://ror.org/04qzr9r50 Instituto Tecnológico de Chascomús'),
(94010, 'https://ror.org/04r4vm305', 'id', 1, 'https://ror.org/04r4vm305 Universitas Purwakarta'),
(94011, 'https://ror.org/04r54nf64', 'no_lang_code', 1, 'https://ror.org/04r54nf64 Knowledge Networking Solutions (Greece)'),
(94012, 'https://ror.org/04r60ve96', 'en', 1, 'https://ror.org/04r60ve96 Gottsegen Gyƶrgy OrszƔgos KardiovaszkulƔris IntƩzet Gottsegen National Cardiovascular Center'),
(94013, 'https://ror.org/04r66gb92', 'fr', 1, 'https://ror.org/04r66gb92 Ɖcole supĆ©rieure d''art et design Le Havre-Rouen'),
(94014, 'https://ror.org/04r6shn89', 'en', 1, 'https://ror.org/04r6shn89 Central Radio Management Service'),
(94015, 'https://ror.org/04r8a1r80', 'en', 1, 'https://ror.org/04r8a1r80 Chmielnicki Uniwersytet Narodowy Khmelnytskyi National University Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(94016, 'https://ror.org/04rf18d16', 'en', 1, 'https://ror.org/04rf18d16 Parc national des Mille-Ǝles Thousand Islands National Park'),
(94017, 'https://ror.org/04rfr1008', 'en', 1, 'https://ror.org/04rfr1008 Black Dog Institute'),
(94018, 'https://ror.org/04rg5tz65', 'en', 1, 'https://ror.org/04rg5tz65 Mulago School of Nursing and Midwifery'),
(94019, 'https://ror.org/04rg6e566', 'en', 1, 'https://ror.org/04rg6e566 Palo Alto Medical Foundation'),
(94020, 'https://ror.org/04rg8xw76', 'en', 1, 'https://ror.org/04rg8xw76 Academic Data Science Alliance'),
(94021, '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'),
(94022, 'https://ror.org/04rjyry04', 'no_lang_code', 0, 'https://ror.org/04rjyry04 Oldham (France)'),
(94023, 'https://ror.org/04rm7h526', 'en', 1, 'https://ror.org/04rm7h526 Global Water Futures'),
(94024, 'https://ror.org/04rpeeg31', 'pt', 1, 'https://ror.org/04rpeeg31 Escola Superior de Tecnologias e Artes de Lisboa'),
(94025, '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'),
(94026, '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Ę”'),
(94027, 'https://ror.org/04rs9pg41', 'en', 1, 'https://ror.org/04rs9pg41 International Society of Hematology SociƩtƩ Internationale d''HƩmatologie'),
(94028, 'https://ror.org/04rsexw75', 'en', 1, 'https://ror.org/04rsexw75 Madan Bhandari Academy of Health Sciences'),
(94029, 'https://ror.org/04rsgp216', 'en', 1, 'https://ror.org/04rsgp216 James Graham Brown Foundation'),
(94030, 'https://ror.org/04s0r4q84', 'fr', 0, 'https://ror.org/04s0r4q84 Metaleurop'),
(94031, 'https://ror.org/04s9kfd63', 'en', 1, 'https://ror.org/04s9kfd63 Wellcome EPSRC Centre for Medical Engineering'),
(94032, 'https://ror.org/04saamx77', 'en', 1, 'https://ror.org/04saamx77 Reliant Medical Group'),
(94033, 'https://ror.org/04sac7215', 'en', 1, 'https://ror.org/04sac7215 St. John Hospital & Medical Center'),
(94034, 'https://ror.org/04sbqq249', 'de', 1, 'https://ror.org/04sbqq249 E+E Elektronik'),
(94035, 'https://ror.org/04sc67422', 'en', 1, 'https://ror.org/04sc67422 Neuroelectronics Research Flanders'),
(94036, 'https://ror.org/04se1ts23', 'en', 1, 'https://ror.org/04se1ts23 FIT to be a MOM'),
(94037, 'https://ror.org/04sf6j110', 'es', 1, 'https://ror.org/04sf6j110 Hospital El Cruce'),
(94038, 'https://ror.org/04sfka033', 'en', 1, 'https://ror.org/04sfka033 Mashhad University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی مؓهد'),
(94039, 'https://ror.org/04sfxgz72', 'no_lang_code', 1, 'https://ror.org/04sfxgz72 Novo Holdings (Denmark)'),
(94040, 'https://ror.org/04sgk7z88', 'no_lang_code', 1, 'https://ror.org/04sgk7z88 Immersion (France)'),
(94041, 'https://ror.org/04shjje75', 'id', 1, 'https://ror.org/04shjje75 Universitas Satria Makassar'),
(94042, 'https://ror.org/04sk34n56', 'no_lang_code', 1, 'https://ror.org/04sk34n56 Total (France)'),
(94043, 'https://ror.org/04smkqg74', 'en', 0, 'https://ror.org/04smkqg74 Drug Development and Discovery'),
(94044, 'https://ror.org/04snr8v46', 'ms', 1, 'https://ror.org/04snr8v46 Majlis Amanah Rakyat'),
(94045, 'https://ror.org/04sqkw483', 'en', 1, 'https://ror.org/04sqkw483 University of Georgia Research Foundation'),
(94046, 'https://ror.org/04sqqf404', 'en', 1, 'https://ror.org/04sqqf404 Ministry of Commerce, Industry and Investment Promotion وزارة التجارة و الصناعة وترويج الاستثما'),
(94047, 'https://ror.org/04ssjv946', 'es', 1, 'https://ror.org/04ssjv946 Instituto de Investigación y Desarrollo en Bioingeniería y BioinformÔtica'),
(94048, 'https://ror.org/04sv9xq20', 'en', 1, 'https://ror.org/04sv9xq20 TCS Education System'),
(94049, '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'),
(94050, 'https://ror.org/04sxme922', 'es', 1, 'https://ror.org/04sxme922 Torcuato Di Tella University Universidad Torcuato Di Tella'),
(94051, 'https://ror.org/04szwah67', 'en', 1, 'https://ror.org/04szwah67 Allen Institute for Neural Dynamics'),
(94052, 'https://ror.org/04t12kd43', 'es', 1, 'https://ror.org/04t12kd43 Centro de Investigación Educativa'),
(94053, 'https://ror.org/04t45q150', 'pt', 1, 'https://ror.org/04t45q150 Universidade Internacional do Cuanza'),
(94054, 'https://ror.org/04t57zm22', 'de', 1, 'https://ror.org/04t57zm22 Institut für Steinkonservierung e.V. Institute for Stone Conservation'),
(94055, 'https://ror.org/04tah3159', 'tr', 1, 'https://ror.org/04tah3159 Nişantaşı Üniversitesi, İstanbul Nişantaşı Üniversitesi'),
(94056, 'https://ror.org/04tdsr307', 'en', 1, 'https://ror.org/04tdsr307 Chamberlain University'),
(94057, 'https://ror.org/04tegn361', 'en', 1, 'https://ror.org/04tegn361 Independent University Banja Luka Nezavisni univerzitet Banja Luka'),
(94058, 'https://ror.org/04tjx1w16', 'en', 1, 'https://ror.org/04tjx1w16 Narodna in univerzitetna knjižnica National and University Library of Slovenia'),
(94059, 'https://ror.org/04tmban63', 'de', 1, 'https://ror.org/04tmban63 DEval – Deutsches Evaluierungsinstitut der Entwicklungszusammenarbeit DEval – German Institute for Development Evaluation'),
(94060, 'https://ror.org/04tmjzh29', 'de', 1, 'https://ror.org/04tmjzh29 Wasserstraßen- und Schifffahrtsamt Weser-Jade-Nordsee'),
(94061, 'https://ror.org/04tpd3r25', 'no_lang_code', 0, 'https://ror.org/04tpd3r25 Tohwa University'),
(94062, 'https://ror.org/04tpd8v21', 'en', 1, 'https://ror.org/04tpd8v21 Myelopathy.org'),
(94063, 'https://ror.org/04tpkqz22', 'es', 1, 'https://ror.org/04tpkqz22 Centro Científico Tecnológico Salta - Jujuy'),
(94064, 'https://ror.org/04tqae260', 'en', 1, 'https://ror.org/04tqae260 Colorado Scientific Society'),
(94065, 'https://ror.org/04tr4t037', 'en', 1, 'https://ror.org/04tr4t037 Technological University Meiktila'),
(94066, 'https://ror.org/04trrf763', 'es', 1, 'https://ror.org/04trrf763 Universidad Tecnológica de Sinaloa'),
(94067, 'https://ror.org/04tsc8g87', 'en', 1, 'https://ror.org/04tsc8g87 National Kaohsiung Normal University åœ‹ē«‹é«˜é›„åø«ēÆ„å¤§å­ø'),
(94068, 'https://ror.org/04tw1mp85', 'en', 1, 'https://ror.org/04tw1mp85 A-T Society'),
(94069, 'https://ror.org/04tw4j633', 'en', 1, 'https://ror.org/04tw4j633 James B. Pendleton Charitable Trust'),
(94070, 'https://ror.org/04twen471', 'fr', 1, 'https://ror.org/04twen471 Builders Ɖcole d''ingĆ©nieurs'),
(94071, 'https://ror.org/04txgxn49', 'en', 1, 'https://ror.org/04txgxn49 ITMO University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ информационных технологий, механики Šø оптики'),
(94072, 'https://ror.org/04v00hx51', 'es', 1, 'https://ror.org/04v00hx51 Centro Universitario de Dirección Empresarial y de Negocios'),
(94073, 'https://ror.org/04v1bf639', 'fr', 1, 'https://ror.org/04v1bf639 BibliothĆØque Nationale de France Frantziako Liburutegi Nazionala National Library of France'),
(94074, 'https://ror.org/04v1psm68', 'en', 1, 'https://ror.org/04v1psm68 American Association for Anatomy'),
(94075, 'https://ror.org/04v21mm27', 'es', 1, 'https://ror.org/04v21mm27 Universidad Quetzalcóatl'),
(94076, 'https://ror.org/04v2bwx37', 'en', 1, 'https://ror.org/04v2bwx37 Direct Health Media'),
(94077, 'https://ror.org/04v30e006', 'es', 1, 'https://ror.org/04v30e006 Centro de Investigación y Desarrollo en Criotecnología de Alimentos'),
(94078, 'https://ror.org/04v3jxv31', 'en', 1, 'https://ror.org/04v3jxv31 Government of New Zealand Te Kāwanatanga o Aotearoa'),
(94079, 'https://ror.org/04v3xej07', 'ms', 1, 'https://ror.org/04v3xej07 Zoo Negara'),
(94080, 'https://ror.org/04v55xt17', 'no_lang_code', 0, 'https://ror.org/04v55xt17 WorldFish'),
(94081, 'https://ror.org/04v5nnm54', 'en', 1, 'https://ror.org/04v5nnm54 National Institute of Science Communication and Information Resources ą¤Øą¤æą¤øą„ą¤•ą„‡ą¤Æą¤°'),
(94082, 'https://ror.org/04v5yn984', 'no_lang_code', 1, 'https://ror.org/04v5yn984 Jeans for Genes (United Kingdom)'),
(94083, 'https://ror.org/04v6tba94', 'es', 1, 'https://ror.org/04v6tba94 Universidad PsicologĆ­a Industrial Dominicana'),
(94084, 'https://ror.org/04v76ef78', 'en', 1, 'https://ror.org/04v76ef78 Christian-Albrechts-UniversitƤt zu Kiel Kiel University'),
(94085, 'https://ror.org/04v7vb598', 'en', 1, 'https://ror.org/04v7vb598 AO Foundation'),
(94086, 'https://ror.org/04v837171', 'fr', 1, 'https://ror.org/04v837171 Centre Nantais de Sociologie'),
(94087, 'https://ror.org/04v8apc83', 'fr', 1, 'https://ror.org/04v8apc83 INSA Euro-MƩditerranƩe'),
(94088, 'https://ror.org/04v8djg66', 'en', 1, 'https://ror.org/04v8djg66 Atrium Health Wake Forest Baptist'),
(94089, 'https://ror.org/04v9gtz82', 'en', 1, 'https://ror.org/04v9gtz82 Office of the Royal Society ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø£ąø²ąøŠąøšąø±ąø“ąø‘ąø“ąø•ąø¢ąøŖąø ąø²'),
(94090, 'https://ror.org/04vbzm272', 'sv', 1, 'https://ror.org/04vbzm272 Finska LƤkaresƤllskapet'),
(94091, 'https://ror.org/04vdtsw44', 'no_lang_code', 1, 'https://ror.org/04vdtsw44 IVC Evidensia France'),
(94092, 'https://ror.org/04vecb011', 'no_lang_code', 1, 'https://ror.org/04vecb011 Erasca (United States)'),
(94093, 'https://ror.org/04vekey51', 'fr', 0, 'https://ror.org/04vekey51 Institut de Linguistique FranƧaise'),
(94094, 'https://ror.org/04vf9tr09', 'en', 1, 'https://ror.org/04vf9tr09 Innovation and Technology Commission å‰µę–°ē§‘ęŠ€ē½²'),
(94095, 'https://ror.org/04vfhnm78', 'es', 1, 'https://ror.org/04vfhnm78 Hospital Universitario Virgen del RocĆ­o Virgen del RocĆ­o University Hospital'),
(94096, 'https://ror.org/04vgsa049', 'no_lang_code', 1, 'https://ror.org/04vgsa049 Semantico (United Kingdom)'),
(94097, 'https://ror.org/04vh4pp56', 'no_lang_code', 1, 'https://ror.org/04vh4pp56 Pinney Associates (United States)'),
(94098, 'https://ror.org/04vhgtv41', 'en', 1, 'https://ror.org/04vhgtv41 UniCancer Group'),
(94099, 'https://ror.org/04vhk9f59', 'en', 1, 'https://ror.org/04vhk9f59 Armagh Observatory & Planetarium'),
(94100, 'https://ror.org/04vhn6x78', 'es', 1, 'https://ror.org/04vhn6x78 Instituto Multidisciplinario de BiologĆ­a Vegetal Multidisciplinary Institute of Plant Biology'),
(94101, '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'),
(94102, 'https://ror.org/04vjs1b18', 'en', 1, 'https://ror.org/04vjs1b18 Houghton University'),
(94103, 'https://ror.org/04vkcpy08', 'en', 1, 'https://ror.org/04vkcpy08 Swedish Association of Graduate Engineers'),
(94104, 'https://ror.org/04vkn3s98', 'it', 1, 'https://ror.org/04vkn3s98 Centro Universale del Bel Canto'),
(94105, 'https://ror.org/04vmbkv36', 'de', 1, 'https://ror.org/04vmbkv36 Lutheran Academy of Theology Oberursel Lutherische Theologische Hochschule Oberursel'),
(94106, '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"'),
(94107, 'https://ror.org/04vnq7t77', 'en', 1, 'https://ror.org/04vnq7t77 University of Stuttgart UniversitƤt Stuttgart'),
(94108, 'https://ror.org/04vpmmn63', 'en', 1, 'https://ror.org/04vpmmn63 Texas Board of Professional Engineers and Land Surveyors'),
(94109, 'https://ror.org/04vr07e24', 'fr', 1, 'https://ror.org/04vr07e24 Centre de droit pƩnal et de criminologie'),
(94110, 'https://ror.org/04vt2s547', 'en', 1, 'https://ror.org/04vt2s547 Yemen Academy for Graduate Studies Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„ŁŠŁ…Ł†ŁŠŲ© للدراسات Ų§Ł„Ų¹Ł„ŁŠŲ§'),
(94111, 'https://ror.org/04vvwwg30', 'id', 1, 'https://ror.org/04vvwwg30 Sekolah Tinggi Agama Islam Negeri Teungku Dirundeng Meulaboh'),
(94112, 'https://ror.org/04vwbmb32', 'no_lang_code', 1, 'https://ror.org/04vwbmb32 Sumitomo Dainippon Pharma (United States)'),
(94113, 'https://ror.org/04vwnq582', 'en', 1, 'https://ror.org/04vwnq582 Admiral Nevelskoy Maritime State University ŠœŠ¾Ń€ŃŠŗŠ¾Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(94114, 'https://ror.org/04vy95b61', 'en', 1, 'https://ror.org/04vy95b61 National Science and Technology Development Agency'),
(94115, 'https://ror.org/04vzby140', 'no_lang_code', 1, 'https://ror.org/04vzby140 Capsida Biotherapeutics (United States)'),
(94116, 'https://ror.org/04w1khd64', 'en', 1, 'https://ror.org/04w1khd64 Archaeology Data Service'),
(94117, 'https://ror.org/04w2d5e08', 'en', 1, 'https://ror.org/04w2d5e08 Textbook and Academic Authors Association'),
(94118, 'https://ror.org/04w32gf09', 'en', 1, 'https://ror.org/04w32gf09 Korea Spatial Information Society ėŒ€ķ•œź³µź°„ģ •ė³“ķ•™ķšŒ'),
(94119, 'https://ror.org/04w66e730', 'de', 1, 'https://ror.org/04w66e730 Institut für Bildungsmonitoring und Qualitätsentwicklung Institute for Educational Monitoring and Quality Development'),
(94120, 'https://ror.org/04w838r82', 'no_lang_code', 1, 'https://ror.org/04w838r82 Kupat Holim Meuchedet קופת חולים ושירותי בריאות'),
(94121, 'https://ror.org/04wajgf26', 'en', 1, 'https://ror.org/04wajgf26 Korea Animal Medical Center ź³ ė ¤ė™ė¬¼ė©”ė””ģ»¬ģ„¼ķ„°'),
(94122, 'https://ror.org/04waqzz56', 'en', 1, 'https://ror.org/04waqzz56 Isfahan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی اصفهان'),
(94123, 'https://ror.org/04wcznf70', 'nl', 1, 'https://ror.org/04wcznf70 Agentschap voor Natuur en Bos'),
(94124, 'https://ror.org/04wfsry95', 'no_lang_code', 1, 'https://ror.org/04wfsry95 VistaMotif (United States)'),
(94125, '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'),
(94126, 'https://ror.org/04wjghj95', 'en', 1, 'https://ror.org/04wjghj95 First Hospital of China Medical University äø­å›½åŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(94127, 'https://ror.org/04wnc7270', 'en', 1, 'https://ror.org/04wnc7270 Complex Engineering System Institute Instituto Sistemas Complejos de IngenierĆ­a'),
(94128, 'https://ror.org/04wt90243', 'en', 1, 'https://ror.org/04wt90243 A.N. Bukeikhan Kazakh Research Institute of Forestry and Agroforestry Ә.Š. Бөкейхан атынГағы ŅšŠ°Š·Š°Ņ› орман ŃˆŠ°Ń€ŃƒŠ°ŃˆŃ‹Š»Ń‹Ņ“Ń‹ және Š°Š³Ń€Š¾Š¾Ń€Š¼Š°Š½Š¼ŠµŠ»ŠøŠ¾Ń€Š°Ń†ŠøŃ ғылыми-Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(94129, 'https://ror.org/04wv8j283', 'sv', 1, 'https://ror.org/04wv8j283 Fru Berta Kamprads stiftelse Mrs. Berta Kamprad''s Cancer Foundation'),
(94130, 'https://ror.org/04wvp5q67', 'en', 1, 'https://ror.org/04wvp5q67 Southern California Academy of Sciences'),
(94131, 'https://ror.org/04wydzr61', 'en', 0, 'https://ror.org/04wydzr61 National Kaohsiung University of Applied Sciences'),
(94132, 'https://ror.org/04x0n1b46', 'en', 1, 'https://ror.org/04x0n1b46 Global Young Academy'),
(94133, 'https://ror.org/04x17yn39', 'es', 1, 'https://ror.org/04x17yn39 Universidad Dominicana Organización & Métodos'),
(94134, 'https://ror.org/04x3fyv94', 'es', 1, 'https://ror.org/04x3fyv94 Consorcio MadroƱo'),
(94135, 'https://ror.org/04x58c235', 'fr', 1, 'https://ror.org/04x58c235 Franche-ComtƩ Regional Council'),
(94136, 'https://ror.org/04x6jg419', 'fr', 1, 'https://ror.org/04x6jg419 Laboratoire de Conception, Optimisation et Modélisation des Systèmes'),
(94137, 'https://ror.org/04x775f65', 'en', 1, 'https://ror.org/04x775f65 International Platform of Registered Systematic Review and Meta-analysis Protocols'),
(94138, 'https://ror.org/04x99xv31', 'en', 0, 'https://ror.org/04x99xv31 Stoas Hogeschool Stoas University of Applied Sciences'),
(94139, 'https://ror.org/04xa2jy35', 'en', 1, 'https://ror.org/04xa2jy35 Maa- ja metsƤtalousministeriƶ Ministry of Agriculture and Forestry'),
(94140, 'https://ror.org/04xb0g792', 'en', 1, 'https://ror.org/04xb0g792 Australian Food Allergy Foundation'),
(94141, 'https://ror.org/04xewk010', 'en', 0, 'https://ror.org/04xewk010 Thornbury Hospital'),
(94142, 'https://ror.org/04xf6nm78', 'en', 1, 'https://ror.org/04xf6nm78 Cadi Ayyad University UniversitĆ© Cadi Ayyad Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ų§Ų¶ŁŠ عياض'),
(94143, 'https://ror.org/04xg8kp91', 'en', 1, 'https://ror.org/04xg8kp91 Sorenson Legacy Foundation'),
(94144, 'https://ror.org/04xge9533', 'en', 1, 'https://ror.org/04xge9533 Belize Bureau of Standards'),
(94145, 'https://ror.org/04xgpdk57', 'no_lang_code', 1, 'https://ror.org/04xgpdk57 Vattenfall (Denmark)'),
(94146, 'https://ror.org/04xhre718', 'en', 1, 'https://ror.org/04xhre718 Guangdong Food and Drug Vocational College å¹æäøœé£Ÿå“čÆå“čŒäøšå­¦é™¢'),
(94147, 'https://ror.org/04xpsrn94', 'en', 1, 'https://ror.org/04xpsrn94 Institute of Molecular and Cell Biology åˆ†å­å’Œē”Ÿē‰©ē“°čƒžå­¦ē ”ē©¶é™¢'),
(94148, 'https://ror.org/04xr3m042', 'en', 1, 'https://ror.org/04xr3m042 Katherine Johnson Independent Verification and Validation Facility'),
(94149, 'https://ror.org/04xrb7c55', 'en', 1, 'https://ror.org/04xrb7c55 Swiss Light Source'),
(94150, 'https://ror.org/04xsjvn35', 'de', 1, 'https://ror.org/04xsjvn35 Quadriga Hochschule Berlin'),
(94151, 'https://ror.org/04xsmx455', 'en', 1, 'https://ror.org/04xsmx455 NHTI - Concord''s Community College, New Hampshire Technical Institute'),
(94152, 'https://ror.org/04xvmv949', 'sv', 1, 'https://ror.org/04xvmv949 Stiftelsen Anna och Gunnar Vidfelts Fond fƶr Biologisk Forskning'),
(94153, 'https://ror.org/04xvp2z22', 'en', 1, 'https://ror.org/04xvp2z22 Lord Buddha Education Foundation'),
(94154, 'https://ror.org/04xx4z452', 'en', 1, 'https://ror.org/04xx4z452 Centro Espacial Lyndon B. Johnson Johnson Space Center'),
(94155, 'https://ror.org/04xydmh53', 'de', 1, 'https://ror.org/04xydmh53 Museum Wiesbaden'),
(94156, 'https://ror.org/04xykxd72', 'fr', 1, 'https://ror.org/04xykxd72 Laboratoire de GƩnie Informatique, de Production et de Maintenance'),
(94157, 'https://ror.org/04xywqt24', 'en', 1, 'https://ror.org/04xywqt24 Rembrandt Institute of Cardiovascular Science'),
(94158, 'https://ror.org/04xz59c49', 'en', 1, 'https://ror.org/04xz59c49 Parc national Wood Buffalo Wood Buffalo National Park'),
(94159, 'https://ror.org/04y14h557', 'en', 1, 'https://ror.org/04y14h557 Educational University Interpharma Plus'),
(94160, 'https://ror.org/04y1vcj70', 'es', 1, 'https://ror.org/04y1vcj70 Instituto de Investigaciones y Control del EjƩrcito de Chile'),
(94161, 'https://ror.org/04y3kre43', 'en', 0, 'https://ror.org/04y3kre43 Norsk senter for forskningsdata Norwegian Centre for Research Data'),
(94162, 'https://ror.org/04y40x506', 'en', 1, 'https://ror.org/04y40x506 Saint Thomas Health'),
(94163, 'https://ror.org/04y8pvp97', 'en', 1, 'https://ror.org/04y8pvp97 University of Veterinary Science'),
(94164, 'https://ror.org/04y98b529', 'no_lang_code', 1, 'https://ror.org/04y98b529 Pax Press (Rwanda)'),
(94165, 'https://ror.org/04y9zrf69', 'en', 1, 'https://ror.org/04y9zrf69 Bundeswehr Medical Service Academy SanitƤtsakademie der Bundeswehr'),
(94166, 'https://ror.org/04yb6z205', 'es', 1, 'https://ror.org/04yb6z205 Universidad Michoacana de Oriente'),
(94167, 'https://ror.org/04ybswa04', 'en', 1, 'https://ror.org/04ybswa04 Glasbenonarodopisni inŔtitut Institute of Ethnomusicology'),
(94168, 'https://ror.org/04yg2r825', 'en', 1, 'https://ror.org/04yg2r825 Migrant Assistance Program Foundation'),
(94169, 'https://ror.org/04yka3j04', 'en', 1, 'https://ror.org/04yka3j04 CHA University ģ°Øģ˜ź³¼ķ•™ėŒ€ķ•™źµ'),
(94170, 'https://ror.org/04ykbz021', 'en', 1, 'https://ror.org/04ykbz021 Indian Medical Association'),
(94171, 'https://ror.org/04yn8rk66', 'no_lang_code', 1, 'https://ror.org/04yn8rk66 UHC'),
(94172, 'https://ror.org/04yqs7e37', 'en', 1, 'https://ror.org/04yqs7e37 Barne-, ungdoms- og familiedirektoratet Norwegian Directorate for Children, Youth and Family Affairs'),
(94173, 'https://ror.org/04ys00n93', 'en', 1, 'https://ror.org/04ys00n93 Institute for Geometry and Physics'),
(94174, 'https://ror.org/04ys6yn24', 'no_lang_code', 0, 'https://ror.org/04ys6yn24 Praxair (United States)'),
(94175, 'https://ror.org/04ysp0h33', 'en', 1, 'https://ror.org/04ysp0h33 North Gate University'),
(94176, 'https://ror.org/04ytq6y86', 'es', 1, 'https://ror.org/04ytq6y86 Universidad Católica Santo Domingo'),
(94177, 'https://ror.org/04yx6dh41', 'en', 1, 'https://ror.org/04yx6dh41 National Computational Infrastructure'),
(94178, 'https://ror.org/04yy0hz59', 'en', 1, 'https://ror.org/04yy0hz59 Japan Technical Association of the Pulp and Paper Industry'),
(94179, 'https://ror.org/04yyths36', 'en', 1, 'https://ror.org/04yyths36 Allen Whitehill Clowes Charitable Foundation'),
(94180, 'https://ror.org/04z2hhf91', 'fr', 0, 'https://ror.org/04z2hhf91 Centre de Recherches sur le Sport et le Mouvement'),
(94181, 'https://ror.org/04z3afh10', 'es', 1, 'https://ror.org/04z3afh10 Instituto Nacional de CancerologĆ­a'),
(94182, 'https://ror.org/04z3y3f62', 'it', 1, 'https://ror.org/04z3y3f62 Astronomical Observatory of Padova Osservatorio Astronomico di Padova'),
(94183, 'https://ror.org/04z4n1a35', 'en', 1, 'https://ror.org/04z4n1a35 Ctl Eurocollege'),
(94184, 'https://ror.org/04z6ak809', 'no_lang_code', 1, 'https://ror.org/04z6ak809 Studio CEVAS'),
(94185, 'https://ror.org/04zck7a21', 'en', 1, 'https://ror.org/04zck7a21 Institute of Culture and Memory Studies InŔtitut za kulturne in spominske Ŕtudije'),
(94186, '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'),
(94187, 'https://ror.org/04zfk0m49', 'en', 1, 'https://ror.org/04zfk0m49 Sociedad de Aves MarĆ­timas The Waterbird Society'),
(94188, 'https://ror.org/04zgm9b74', 'es', 1, 'https://ror.org/04zgm9b74 Universidad de San Isidro "Dr. PlƔcido Marƭn"'),
(94189, 'https://ror.org/04zjb4t38', 'fr', 1, 'https://ror.org/04zjb4t38 Centre d’histoire sociale des mondes contemporains'),
(94190, 'https://ror.org/04zp6eb52', 'en', 1, 'https://ror.org/04zp6eb52 Foundation for Chemistry Research and Initiatives'),
(94191, 'https://ror.org/04zrf7b53', 'en', 0, 'https://ror.org/04zrf7b53 Technische UniversitƤt Kaiserslautern University of Kaiserslautern'),
(94192, 'https://ror.org/04zte5g15', 'no_lang_code', 1, 'https://ror.org/04zte5g15 Madda Walabu University Yuniversiitii Madda Walaabuu įˆ˜į‹³ į‹ˆįˆ‹į‰” į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(94193, 'https://ror.org/04zv0pf29', 'en', 1, 'https://ror.org/04zv0pf29 Private University of Science and Arts Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŁŁ†ŁˆŁ†'),
(94194, 'https://ror.org/04zz5fc19', 'en', 1, 'https://ror.org/04zz5fc19 Jiangsu Province Development and Reform Commission ę±Ÿč‹ēœå‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(94195, 'https://ror.org/04zza3s31', 'fr', 0, 'https://ror.org/04zza3s31 Risques Travail MarchƩs Etat'),
(94196, 'https://ror.org/0500xr498', 'de', 1, 'https://ror.org/0500xr498 Braunschweigische Wissenschaftliche Gesellschaft'),
(94197, 'https://ror.org/0500xzf72', 'en', 1, 'https://ror.org/0500xzf72 Sungshin Women''s University ģ„±ģ‹ ģ—¬ģžėŒ€ķ•™źµ'),
(94198, 'https://ror.org/0501fq006', 'fr', 1, 'https://ror.org/0501fq006 UniversitƩ d''ƩtƩ de Boulogne-sur-Mer'),
(94199, 'https://ror.org/0502nz745', 'en', 1, 'https://ror.org/0502nz745 Independent Living Resources'),
(94200, 'https://ror.org/0503qew83', 'en', 1, 'https://ror.org/0503qew83 InŔtitut za slovensko izseljenstvo in migracije Slovenian Migration Institute'),
(94201, 'https://ror.org/050589e39', 'en', 1, 'https://ror.org/050589e39 European Molecular Biology Laboratory Europäisches Laboratorium für Molekularbiologie'),
(94202, 'https://ror.org/0505m1554', 'en', 1, 'https://ror.org/0505m1554 Arts and Humanities Research Council'),
(94203, 'https://ror.org/05066y189', 'en', 1, 'https://ror.org/05066y189 South Central Climate Adaptation Science Center'),
(94204, 'https://ror.org/050755v08', 'en', 1, 'https://ror.org/050755v08 Faculdade JesuĆ­ta de Filosofia e Teologia Jesuit School of Philosophy and Theology'),
(94205, 'https://ror.org/0507etz14', 'en', 1, 'https://ror.org/0507etz14 Ministarstvo znanosti, obrazovanja i sporta Ministry of Science, Education and Sports'),
(94206, 'https://ror.org/050asrz41', 'de', 1, 'https://ror.org/050asrz41 Bundesgesellschaft für Endlagerung'),
(94207, 'https://ror.org/050b84r37', 'no_lang_code', 1, 'https://ror.org/050b84r37 X-Spectrum (Germany)'),
(94208, 'https://ror.org/050bww094', 'en', 1, 'https://ror.org/050bww094 Iran Nanotechnology Initiative Council'),
(94209, 'https://ror.org/050g0ay39', 'no_lang_code', 1, 'https://ror.org/050g0ay39 Interactive Motion Technologies (United States)'),
(94210, 'https://ror.org/050k1mp73', 'en', 1, 'https://ror.org/050k1mp73 Khurasan University دانؓگاه خراسان'),
(94211, 'https://ror.org/050kf9c55', 'en', 1, 'https://ror.org/050kf9c55 Wadsworth Center'),
(94212, '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'),
(94213, 'https://ror.org/050mqhj64', 'es', 1, 'https://ror.org/050mqhj64 Centro Universitario de Chihuahua'),
(94214, 'https://ror.org/050q5pk40', 'pt', 1, 'https://ror.org/050q5pk40 Instituto Serrapilheira'),
(94215, 'https://ror.org/050qmg959', 'en', 1, 'https://ror.org/050qmg959 Singapore Management University Universiti Pengurusan Singapura'),
(94216, 'https://ror.org/050qydw28', 'pl', 1, 'https://ror.org/050qydw28 Pomorska Szkoła Wyższa w Starogardzie Gdańskim'),
(94217, 'https://ror.org/050regf97', 'no_lang_code', 1, 'https://ror.org/050regf97 Science and Technology Corporation (Netherlands)'),
(94218, 'https://ror.org/050rg6t21', 'en', 1, 'https://ror.org/050rg6t21 Prokhorov General Physics Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей физики им. А.М. ŠŸŃ€Š¾Ń…Š¾Ń€Š¾Š²Š° Российской акаГемии наук'),
(94219, 'https://ror.org/050s1zm26', 'en', 1, 'https://ror.org/050s1zm26 Federal University of Agriculture');
INSERT INTO `rors` VALUES
(94220, 'https://ror.org/050t2pq94', 'en', 1, 'https://ror.org/050t2pq94 Key Laboratory of Drilling and Production Engineering for Oil and Gas, Hubei Province ę²¹ę°”é’»é‡‡å·„ēØ‹ę¹–åŒ—ēœé‡ē‚¹å®žéŖŒå®¤'),
(94221, 'https://ror.org/050xdz686', 'en', 1, 'https://ror.org/050xdz686 Doncaster Royal Infirmary'),
(94222, 'https://ror.org/050yczr54', 'no_lang_code', 1, 'https://ror.org/050yczr54 Garmin (Germany)'),
(94223, 'https://ror.org/050yv1382', 'no_lang_code', 1, 'https://ror.org/050yv1382 JTEC Corporation (Japan) ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ†ćƒƒć‚Æć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(94224, 'https://ror.org/050z03n93', 'en', 1, 'https://ror.org/050z03n93 Kharkiv National Kotlyarevsky University of Arts'),
(94225, 'https://ror.org/050z7zv36', 'en', 1, 'https://ror.org/050z7zv36 Universal College of Medical Sciences'),
(94226, 'https://ror.org/050zdfe57', 'en', 1, 'https://ror.org/050zdfe57 United States Army Medical Research Directorate - West'),
(94227, 'https://ror.org/0512bh102', 'en', 1, 'https://ror.org/0512bh102 Ministry of Higher Education وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł…ŲµŲ±'),
(94228, 'https://ror.org/0512csj88', 'en', 1, 'https://ror.org/0512csj88 Wake Forest Baptist Comprehensive Cancer Center'),
(94229, 'https://ror.org/0512kbj07', 'en', 1, 'https://ror.org/0512kbj07 Project Apis m.'),
(94230, 'https://ror.org/05131dq54', 'de', 1, 'https://ror.org/05131dq54 Theologische Hochschule Ewersbach'),
(94231, 'https://ror.org/0513px229', 'en', 1, 'https://ror.org/0513px229 Central Bohemia Region Středočeský kraj'),
(94232, 'https://ror.org/0513rwv17', 'fr', 0, 'https://ror.org/0513rwv17 Triangle de la Physique'),
(94233, 'https://ror.org/0514nj725', 'en', 1, 'https://ror.org/0514nj725 Kawano Masanori Memorial Public Interest Incorporated Foundation for Promotion of Pediatrics å·é‡Žå°å…åŒ»å­¦å„Øå­¦č²”å›£'),
(94234, 'https://ror.org/05164ka66', 'es', 1, 'https://ror.org/05164ka66 Universidad de Especialidades TurĆ­sticas'),
(94235, 'https://ror.org/05169vt89', 'no_lang_code', 1, 'https://ror.org/05169vt89 Pro-Metrics (Estonia)'),
(94236, 'https://ror.org/0516b6a83', 'en', 1, 'https://ror.org/0516b6a83 Minnesota Agricultural Experiment Station'),
(94237, 'https://ror.org/0516thm59', 'pt', 1, 'https://ror.org/0516thm59 Associação Brasileira de Linguística Brazilian Linguistics Association'),
(94238, 'https://ror.org/0517h6h17', 'en', 1, 'https://ror.org/0517h6h17 Canada Research Chairs Chaires de recherche du Canada'),
(94239, 'https://ror.org/05183v471', 'en', 0, 'https://ror.org/05183v471 ACT'),
(94240, 'https://ror.org/051a5bv61', 'no_lang_code', 1, 'https://ror.org/051a5bv61 Carlson Caspers (United States)'),
(94241, 'https://ror.org/051abs833', 'en', 1, 'https://ror.org/051abs833 Institute of Crop Sciences äø­å›½å†œäøšē§‘å­¦é™¢ä½œē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(94242, 'https://ror.org/051dz3837', 'fr', 0, 'https://ror.org/051dz3837 Laboratoire d''Etude de et ContrƓle de l''Environnement SidƩrurgique'),
(94243, 'https://ror.org/051e84q87', 'en', 1, 'https://ror.org/051e84q87 Citi University ДИТИ ИЄ ДУРГУУЛЬ'),
(94244, 'https://ror.org/051g31x14', 'en', 1, 'https://ror.org/051g31x14 Western Ecological Research Center'),
(94245, 'https://ror.org/051kyr277', 'en', 1, 'https://ror.org/051kyr277 EveryCat Health Foundation'),
(94246, 'https://ror.org/051nxew65', 'en', 1, 'https://ror.org/051nxew65 Virginia Museum of History & Culture'),
(94247, 'https://ror.org/051q6ga75', 'en', 1, 'https://ror.org/051q6ga75 Community Clinic Health Network'),
(94248, 'https://ror.org/051qeyr12', 'en', 1, 'https://ror.org/051qeyr12 National Institute for Psychobiology המכון הלאומי לפהיכוביולוגיה ×‘×™×©×Ø××œ'),
(94249, 'https://ror.org/051rcp357', 'no_lang_code', 1, 'https://ror.org/051rcp357 Booz Allen Hamilton (United States)'),
(94250, 'https://ror.org/051sx7649', 'es', 1, 'https://ror.org/051sx7649 Centro de Estudios Universitarios del Norte'),
(94251, 'https://ror.org/051wcyx09', 'en', 1, 'https://ror.org/051wcyx09 Mongolian State University of Culture and Art'),
(94252, 'https://ror.org/051wenh03', 'no_lang_code', 1, 'https://ror.org/051wenh03 Akademia'),
(94253, 'https://ror.org/0520msa48', 'en', 1, 'https://ror.org/0520msa48 University of Science and Technology, Sanaa Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§-صنعاؔ'),
(94254, 'https://ror.org/0522mv576', 'no_lang_code', 0, 'https://ror.org/0522mv576 Swerea (Sweden)'),
(94255, 'https://ror.org/0523b6g79', 'en', 1, 'https://ror.org/0523b6g79 Dalian Ocean University å¤§čæžęµ·ę“‹å¤§å­¦'),
(94256, 'https://ror.org/05269d038', 'no_lang_code', 1, 'https://ror.org/05269d038 China National Petroleum Corporation (China) å¤§åŗ†ę²¹ē”°ęœ‰é™č“£ä»»å…¬åøę²¹ē”°å»ŗč®¾č®¾č®”ē ”ē©¶é™¢'),
(94257, 'https://ror.org/0526ebq30', 'no_lang_code', 1, 'https://ror.org/0526ebq30 Digital Infuzion (United States)'),
(94258, 'https://ror.org/0527hfq87', 'en', 1, 'https://ror.org/0527hfq87 Kombolcha Institute of Technology'),
(94259, 'https://ror.org/0527jb766', 'en', 1, 'https://ror.org/0527jb766 Swedish Cancer Society'),
(94260, 'https://ror.org/052b58660', 'no_lang_code', 1, 'https://ror.org/052b58660 Shandong Electric Power Engineering Consulting Institute Corp å±±äøœē”µåŠ›å·„ēØ‹å’ØčÆ¢é™¢ęœ‰é™å…¬åø'),
(94261, 'https://ror.org/052c3jb45', 'es', 1, 'https://ror.org/052c3jb45 Centro Universitario de Bienestar Rural'),
(94262, 'https://ror.org/052c5rz55', 'en', 1, 'https://ror.org/052c5rz55 Indian Ocean University'),
(94263, 'https://ror.org/052d2nr31', 'en', 1, 'https://ror.org/052d2nr31 North Carolina Land and Water Fund'),
(94264, 'https://ror.org/052detg56', 'en', 1, 'https://ror.org/052detg56 Ministry of New and Renewable Energy'),
(94265, 'https://ror.org/052em3f88', 'en', 1, 'https://ror.org/052em3f88 Kansas City University'),
(94266, 'https://ror.org/052fjv050', 'en', 1, 'https://ror.org/052fjv050 Komi Republican Academy of State Service and Administration'),
(94267, 'https://ror.org/052hvz838', 'en', 1, 'https://ror.org/052hvz838 Ocean Park Conservation Foundation é¦™ęøÆęµ·ę“‹å…¬åœ’äæč‚²åŸŗé‡‘'),
(94268, 'https://ror.org/052jw0990', 'no_lang_code', 1, 'https://ror.org/052jw0990 Georgia-Pacific (United States)'),
(94269, 'https://ror.org/052jx3443', 'en', 1, 'https://ror.org/052jx3443 Institute of Nuclear Energy Research ę øčƒ½ē ”ē©¶ę‰€'),
(94270, 'https://ror.org/052jxdr90', 'fr', 1, 'https://ror.org/052jxdr90 Institut PhotovoltaĆÆque dā€™ĆŽle-de-France'),
(94271, 'https://ror.org/052k52s41', 'fr', 1, 'https://ror.org/052k52s41 Interdisciplinarity in English Studies InterdisciplinaritƩ dans les Etudes Anglophones'),
(94272, 'https://ror.org/052kcks88', 'pt', 0, 'https://ror.org/052kcks88 Lusófona University of Porto Universidade Lusófona do Porto'),
(94273, 'https://ror.org/052kcye35', 'no_lang_code', 1, 'https://ror.org/052kcye35 NeuRho Farmaceutica (United States)'),
(94274, 'https://ror.org/052m3x230', 'en', 1, 'https://ror.org/052m3x230 Louisiana Community and Technical College System'),
(94275, 'https://ror.org/052mm9560', 'fr', 1, 'https://ror.org/052mm9560 SociƩtƩ FranƧaise de SantƩ Publique'),
(94276, 'https://ror.org/052n1g304', 'en', 0, 'https://ror.org/052n1g304 Social Insurance Central General Hospital ę±äŗ¬å±±ę‰‹ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(94277, 'https://ror.org/052nwcv16', 'en', 1, 'https://ror.org/052nwcv16 Knobloch Family Foundation'),
(94278, 'https://ror.org/052pe2w94', 'en', 1, 'https://ror.org/052pe2w94 Ukrainian State University of Science and Technologies Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ науки і технологій'),
(94279, 'https://ror.org/052pywd95', 'en', 1, 'https://ror.org/052pywd95 NOAA Office of Science Support'),
(94280, 'https://ror.org/052q0wb68', 'it', 1, 'https://ror.org/052q0wb68 Istruzione Tecnica Superiore'),
(94281, 'https://ror.org/052rn6611', 'no_lang_code', 1, 'https://ror.org/052rn6611 Biostar (United States)'),
(94282, 'https://ror.org/052rpwb50', 'en', 1, 'https://ror.org/052rpwb50 Yamashita Thyroid Hospital ć‚„ć¾ć—ćŸē”²ēŠ¶č…ŗē—…é™¢'),
(94283, 'https://ror.org/052sw9d77', 'en', 1, 'https://ror.org/052sw9d77 Seton Medical Center Austin'),
(94284, 'https://ror.org/052tfzs89', 'en', 1, 'https://ror.org/052tfzs89 Plum Island Ecosystems Long Term Ecological Research'),
(94285, 'https://ror.org/052v3nb82', 'en', 1, 'https://ror.org/052v3nb82 Australian Alzheimer’s Research Foundation'),
(94286, 'https://ror.org/052w21a87', 'en', 1, 'https://ror.org/052w21a87 Friday Harbor Laboratories'),
(94287, 'https://ror.org/052wyby60', 'no_lang_code', 1, 'https://ror.org/052wyby60 Bionnovation (Brazil)'),
(94288, 'https://ror.org/052x4m448', 'no_lang_code', 1, 'https://ror.org/052x4m448 Hydro-Air (Germany)'),
(94289, 'https://ror.org/052xe5r02', 'no_lang_code', 1, 'https://ror.org/052xe5r02 Forest and Wood Products (Australia)'),
(94290, 'https://ror.org/052yhxz58', 'no_lang_code', 1, 'https://ror.org/052yhxz58 Innovation Center Iceland Nýskƶpunarmiưstƶư ƍslands'),
(94291, 'https://ror.org/053194h78', 'en', 0, 'https://ror.org/053194h78 Association for the Conservation of Energy'),
(94292, 'https://ror.org/0532dea97', 'en', 1, 'https://ror.org/0532dea97 Fairland University'),
(94293, 'https://ror.org/0532wcf75', 'en', 1, 'https://ror.org/0532wcf75 Electronics Research Institute'),
(94294, 'https://ror.org/0534re684', 'en', 1, 'https://ror.org/0534re684 Max Planck Institute for Evolutionary Biology Max-Planck-Institut für Evolutionsbiologie'),
(94295, 'https://ror.org/053598c22', 'en', 1, 'https://ror.org/053598c22 University of Hawaiʻi Sea Grant'),
(94296, 'https://ror.org/05359f550', 'en', 1, 'https://ror.org/05359f550 Ild Care Foundation'),
(94297, 'https://ror.org/05361e638', 'no_lang_code', 1, 'https://ror.org/05361e638 Aggreko (United Kingdom)'),
(94298, 'https://ror.org/053694011', 'fr', 1, 'https://ror.org/053694011 Institut de Chirurgie GuidƩe par l''Image Institute of Image-Guided Surgery'),
(94299, 'https://ror.org/0537pxd79', 'no_lang_code', 1, 'https://ror.org/0537pxd79 Adventium Labs (United States)'),
(94300, 'https://ror.org/05385qm47', 'no_lang_code', 1, 'https://ror.org/05385qm47 Axalta Coating Systems (United States)'),
(94301, 'https://ror.org/053940494', 'en', 1, 'https://ror.org/053940494 Parc national du Mont-Riding Riding Mountain National Park'),
(94302, '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'),
(94303, 'https://ror.org/053d4n634', 'ca', 1, 'https://ror.org/053d4n634 Banc de Sang i Teixits Banco de Sangre y Tejidos Blood and Tissue Bank'),
(94304, 'https://ror.org/053fyjq47', 'es', 1, 'https://ror.org/053fyjq47 Consejo Nacional de Innovación, Ciencia y Tecnología'),
(94305, 'https://ror.org/053g4km55', 'en', 1, 'https://ror.org/053g4km55 Wildlife Reserves Singapore Conservation Fund'),
(94306, 'https://ror.org/053sq3902', 'en', 1, 'https://ror.org/053sq3902 Arizona Experiment Station'),
(94307, 'https://ror.org/053v00853', 'en', 1, 'https://ror.org/053v00853 UMass Memorial Medical Center'),
(94308, 'https://ror.org/053xj0761', 'hi', 1, 'https://ror.org/053xj0761 Gurukul Kangri Vishwavidyalaya, ą¤—ą„ą¤°ą„ą¤•ą„ą¤² ą¤•ą¤¾ą¤‚ą¤—ą¤”ą¤¼ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(94309, 'https://ror.org/053xn4v04', 'en', 1, 'https://ror.org/053xn4v04 International Center for Quantum-field Measurement Systems for Studies of the Universe and Particles é‡å­å “čØˆęø¬ć‚·ć‚¹ćƒ†ćƒ å›½éš›ę‹ ē‚¹'),
(94310, 'https://ror.org/05402ng93', 'en', 1, 'https://ror.org/05402ng93 Kinneret College on the Sea of Galilee המכללה ×”××§×“×ž×™×Ŗ כנרת בעמק ×”×™×Ø×“×Ÿ ŁƒŁ„ŁŠŲ© ŁƒŁŠŁ†ŁŠŲ±ŁŠŲŖ Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(94311, 'https://ror.org/0540g1c48', 'en', 1, 'https://ror.org/0540g1c48 Radiation Biophysics Laboratory'),
(94312, 'https://ror.org/0540s3083', 'fr', 1, 'https://ror.org/0540s3083 Laboratoire sur les interactions cognition, action, Ʃmotion'),
(94313, 'https://ror.org/05414cz60', 'en', 1, 'https://ror.org/05414cz60 Cincinnati Foundation for Biomedical Research and Education'),
(94314, 'https://ror.org/05450xf19', 'en', 1, 'https://ror.org/05450xf19 South Osaka Neurosurgical Hospital'),
(94315, 'https://ror.org/0546daj73', 'fr', 1, 'https://ror.org/0546daj73 Institut de Recherche en Gestion'),
(94316, 'https://ror.org/05487pd16', 'fr', 0, 'https://ror.org/05487pd16 Laboratoire d''informatique de Nantes Atlantique'),
(94317, 'https://ror.org/0549jh941', 'en', 1, 'https://ror.org/0549jh941 The Hegel Society of Korea ķ•œźµ­ķ—¤ź²”ķ•™ķšŒ'),
(94318, 'https://ror.org/054a9s036', 'en', 1, 'https://ror.org/054a9s036 College of Industrial Technology ē”£ę„­ęŠ€č”“ēŸ­ęœŸå¤§å­¦'),
(94319, 'https://ror.org/054e86395', 'en', 1, 'https://ror.org/054e86395 Airline Training Program Flight School'),
(94320, 'https://ror.org/054ewwr15', 'es', 1, 'https://ror.org/054ewwr15 Universidad Alfonso X el Sabio'),
(94321, 'https://ror.org/054f0d685', 'en', 1, 'https://ror.org/054f0d685 St. John Medical Center'),
(94322, 'https://ror.org/054fwx336', 'en', 1, 'https://ror.org/054fwx336 Tohoku Medical and Pharmaceutical University Wakabayashi Hospital ę±åŒ—åŒ»ē§‘č–¬ē§‘å¤§å­¦ č‹„ęž—ē—…é™¢'),
(94323, 'https://ror.org/054gaqk42', 'en', 0, 'https://ror.org/054gaqk42 Moscow International University of Business and Information Technology'),
(94324, 'https://ror.org/054gw3b40', 'en', 1, 'https://ror.org/054gw3b40 Baku State University Bakı Dƶvlət Universiteti Бакинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ō²Õ”Ö„Õ¾Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(94325, 'https://ror.org/054hq3y71', 'en', 1, 'https://ror.org/054hq3y71 Maharashtra Institute of Medical Education and Research'),
(94326, 'https://ror.org/054j5yq82', 'en', 1, 'https://ror.org/054j5yq82 Office of AIDS Research'),
(94327, 'https://ror.org/054vpsz16', 'no_lang_code', 1, 'https://ror.org/054vpsz16 Mott MacDonald (United Kingdom)'),
(94328, 'https://ror.org/054wg2r70', 'no_lang_code', 1, 'https://ror.org/054wg2r70 Quantumscape'),
(94329, 'https://ror.org/054xkpr46', 'en', 1, 'https://ror.org/054xkpr46 Gazi University Gazi Üniversitesi Qazi Universiteti'),
(94330, 'https://ror.org/054y3ya26', 'en', 1, 'https://ror.org/054y3ya26 NOAA National Weather Service Western Region'),
(94331, 'https://ror.org/054ydxh33', 'en', 1, 'https://ror.org/054ydxh33 Division of Elementary, Secondary, and Informal Education'),
(94332, 'https://ror.org/054zhq066', 'en', 1, 'https://ror.org/054zhq066 Bonn Aachen International Center for Information Technology'),
(94333, 'https://ror.org/0552tvm72', 'de', 1, 'https://ror.org/0552tvm72 Austrian Parliament Parlament Ɩsterreich'),
(94334, 'https://ror.org/0553ksw70', 'en', 1, 'https://ror.org/0553ksw70 Clean Cooking Alliance'),
(94335, 'https://ror.org/055503602', 'no_lang_code', 0, 'https://ror.org/055503602 Celgene (Switzerland)'),
(94336, 'https://ror.org/0555nvm74', 'en', 0, 'https://ror.org/0555nvm74 City Hospitals Sunderland NHS Foundation Trust'),
(94337, 'https://ror.org/05576mm83', 'fr', 1, 'https://ror.org/05576mm83 Ɖcole Nationale SupĆ©rieure d''Architecture et de Paysage de Bordeaux'),
(94338, 'https://ror.org/0558kn420', 'en', 1, 'https://ror.org/0558kn420 Kohsar University Murree'),
(94339, 'https://ror.org/0558r1s97', 'es', 1, 'https://ror.org/0558r1s97 Instituto Tecnológico de Ciudad JuÔrez Technological Institute of Ciudad JuÔrez'),
(94340, 'https://ror.org/055a50447', 'fr', 1, 'https://ror.org/055a50447 ISIPCA'),
(94341, 'https://ror.org/055bgss27', 'en', 1, 'https://ror.org/055bgss27 National Library of Vietnam'),
(94342, 'https://ror.org/055dy9060', 'en', 1, 'https://ror.org/055dy9060 Indian National Defence University ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą¤•ą„ą¤·ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(94343, 'https://ror.org/055f5q449', 'en', 1, 'https://ror.org/055f5q449 Hiroshima Bunkyo University åŗƒå³¶ę–‡ę•™å¤§å­¦'),
(94344, 'https://ror.org/055fhtb27', 'en', 1, 'https://ror.org/055fhtb27 ChaLearn'),
(94345, 'https://ror.org/055gynz44', 'en', 1, 'https://ror.org/055gynz44 Galapagos Conservation Trust'),
(94346, 'https://ror.org/055jnwc25', 'en', 1, 'https://ror.org/055jnwc25 Mongolian Foundation for Science and Technology ŠØŠøŠ½Š¶Š»ŃŃ… ŃƒŃ…Š°Š°Š½, технологийн сан č’™å¤ē§‘å­øęšØęŠ€č”“åŸŗé‡‘ęœƒ'),
(94347, 'https://ror.org/055jwev93', 'en', 1, 'https://ror.org/055jwev93 Sri Venkatesa Perumal College of Engineering and Technology'),
(94348, 'https://ror.org/055k7j239', 'en', 1, 'https://ror.org/055k7j239 Grantham Centre for Sustainable Futures'),
(94349, 'https://ror.org/055nd7x53', 'en', 1, 'https://ror.org/055nd7x53 National Informatics Centre'),
(94350, 'https://ror.org/055smf976', 'en', 1, 'https://ror.org/055smf976 Ecole Nationale Supérieure des Forêts Higher National School of Forests'),
(94351, 'https://ror.org/055swm364', 'fr', 1, 'https://ror.org/055swm364 Laboratoire Matériaux Optiques, Photonique et Systèmes'),
(94352, 'https://ror.org/055vn7m78', 'it', 1, 'https://ror.org/055vn7m78 INGV Osservatorio Vesuviano'),
(94353, 'https://ror.org/055w89263', 'en', 1, 'https://ror.org/055w89263 International Maize and Wheat Improvement Center'),
(94354, 'https://ror.org/055wjj883', 'fr', 0, 'https://ror.org/055wjj883 Institut de Biosciences et Biotechnologies'),
(94355, 'https://ror.org/055ww1410', 'en', 1, 'https://ror.org/055ww1410 Casa GuaĀ­naĀ­juĀ­ato Quad Cities'),
(94356, 'https://ror.org/055y2t972', 'en', 1, 'https://ror.org/055y2t972 Amran University Ų¬Ų§Ł…Ų¹Ų© عمران'),
(94357, 'https://ror.org/055y4y749', 'en', 1, 'https://ror.org/055y4y749 Manatū Ahu Matua Ministry for Primary Industries'),
(94358, 'https://ror.org/055yrx709', 'fr', 1, 'https://ror.org/055yrx709 Centre d''Etudes Germaniques Interculturelles de Lorraine'),
(94359, 'https://ror.org/0560q5470', 'no_lang_code', 1, 'https://ror.org/0560q5470 Rosatom (Russia) Росатом'),
(94360, 'https://ror.org/05629dh87', 'en', 1, 'https://ror.org/05629dh87 Iran''s National Elites Foundation ŲØŁ†ŁŠŲ§ŲÆ Ł…Ł„ŁŠ Ł†Ų®ŲØŚÆŲ§Ł†ā€Ž'),
(94361, 'https://ror.org/056480298', 'en', 1, 'https://ror.org/056480298 Azerbaijan Cooperation University Azərbaycan Kooperasiya Universiteti'),
(94362, 'https://ror.org/0564nbm83', 'no_lang_code', 1, 'https://ror.org/0564nbm83 Smd Informatic (Portugal)'),
(94363, 'https://ror.org/0564rh245', 'no_lang_code', 0, 'https://ror.org/0564rh245 Medicines Company (United States)'),
(94364, 'https://ror.org/05661nc70', 'no_lang_code', 1, 'https://ror.org/05661nc70 Sumeru Hospital'),
(94365, 'https://ror.org/05667zq45', 'en', 1, 'https://ror.org/05667zq45 Parc national Sirmilik Sirmilik National Park'),
(94366, 'https://ror.org/0568cr375', 'de', 1, 'https://ror.org/0568cr375 Gips-Schüle-Stiftung'),
(94367, 'https://ror.org/0568s5a63', 'es', 1, 'https://ror.org/0568s5a63 Confederación HidrogrÔfica del Duero'),
(94368, 'https://ror.org/0568ttb16', 'en', 1, 'https://ror.org/0568ttb16 University of Technology and Applied Sciences - Al Mussanah Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚Ų© بالمصنعة'),
(94369, 'https://ror.org/056a3pe54', 'en', 1, 'https://ror.org/056a3pe54 La Mauricie National Park Parc national de la Mauricie'),
(94370, 'https://ror.org/056afm769', 'en', 1, 'https://ror.org/056afm769 Carteret General Hospital'),
(94371, 'https://ror.org/056an2h19', 'pt', 0, 'https://ror.org/056an2h19 Formedia'),
(94372, 'https://ror.org/056b2ve81', 'de', 1, 'https://ror.org/056b2ve81 Debra'),
(94373, 'https://ror.org/056bjta22', 'en', 1, 'https://ror.org/056bjta22 Diponegoro University Universitas Diponegoro'),
(94374, 'https://ror.org/056d9c052', 'en', 0, 'https://ror.org/056d9c052 Hyogo University of Health Sciences å…µåŗ«åŒ»ē™‚å¤§å­¦'),
(94375, 'https://ror.org/056da5v93', 'en', 1, 'https://ror.org/056da5v93 Digital Scholar (United States)'),
(94376, 'https://ror.org/056e97x14', 'sv', 1, 'https://ror.org/056e97x14 Gyllenstiernska Krapperupsstiftelsen'),
(94377, 'https://ror.org/056efzf78', 'fr', 1, 'https://ror.org/056efzf78 Conseil RƩgional Provence-Alpes-CƓte d''Azur'),
(94378, 'https://ror.org/056g7f250', 'fr', 1, 'https://ror.org/056g7f250 Laboratoire de Chimie et Physique Quantiques'),
(94379, 'https://ror.org/056hcgc41', 'en', 1, 'https://ror.org/056hcgc41 Mustafa Kemal University Mustafa Kemal Üniversitesi'),
(94380, 'https://ror.org/056hed623', 'en', 1, 'https://ror.org/056hed623 One Door Mental Health'),
(94381, 'https://ror.org/056mbsx32', 'no_lang_code', 1, 'https://ror.org/056mbsx32 TerraPower (United States)'),
(94382, 'https://ror.org/056mgfb42', 'en', 1, 'https://ror.org/056mgfb42 Arak University of Medical Sciences Ł¾ŁˆŲ±ŲŖŲ§Ł„ دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§Ų±Ų§Ś©'),
(94383, 'https://ror.org/056ms9a36', 'fr', 1, 'https://ror.org/056ms9a36 GEVES'),
(94384, 'https://ror.org/056naah75', 'en', 1, 'https://ror.org/056naah75 Dierkundige Vereeniging van Suidelike Afrika Zoological Society of Southern Africa'),
(94385, 'https://ror.org/056naxb15', 'en', 0, 'https://ror.org/056naxb15 Department of Industry, Science, Energy and Resources'),
(94386, 'https://ror.org/056nhq557', 'no_lang_code', 1, 'https://ror.org/056nhq557 ImpactMedia (Spain)'),
(94387, 'https://ror.org/056nhze38', 'en', 1, 'https://ror.org/056nhze38 University of August 17, 1945 Banyuwangi'),
(94388, 'https://ror.org/056pa7468', 'en', 1, 'https://ror.org/056pa7468 International Association for Bear Research and Management'),
(94389, 'https://ror.org/056pdzs28', 'en', 1, 'https://ror.org/056pdzs28 The Herbert Wertheim UF Scripps Institute for Biomedical Innovation & Technology'),
(94390, 'https://ror.org/056pp6k18', 'en', 1, 'https://ror.org/056pp6k18 EIFL'),
(94391, 'https://ror.org/056q6p894', 'en', 1, 'https://ror.org/056q6p894 Jagadguru Ramanandacharya Rajasthan Sanskrit University ą¤œą¤—ą¤¦ą„ą¤—ą„ą¤°ą„ ą¤°ą¤¾ą¤®ą¤¾ą¤Øą¤Øą„ą¤¦ą¤¾ą¤šą¤¾ą¤°ą„ą¤Æ ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(94392, 'https://ror.org/056reh520', 'en', 1, 'https://ror.org/056reh520 University of Educational Management Університет Š¼ŠµŠ½ŠµŠ“Š¶Š¼ŠµŠ½Ń‚Ńƒ освіти'),
(94393, 'https://ror.org/056sfsm69', 'en', 1, 'https://ror.org/056sfsm69 Departamento de Recursos Naturales y Ambientales Department of Natural and Environmental Resources'),
(94394, 'https://ror.org/056swr059', 'en', 1, 'https://ror.org/056swr059 First Affiliated Hospital of Zhengzhou University'),
(94395, 'https://ror.org/056wz7x19', 'en', 1, 'https://ror.org/056wz7x19 Health Commission of Shaanxi Province é™•č„æēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(94396, 'https://ror.org/056y0v115', 'no_lang_code', 1, 'https://ror.org/056y0v115 Anthropic (United States)'),
(94397, 'https://ror.org/056yav047', 'sk', 0, 'https://ror.org/056yav047 Spoločnosń Pro Historia'),
(94398, 'https://ror.org/056ybqa45', 'de', 1, 'https://ror.org/056ybqa45 Dienstleistungszentrum LƤndlicher Raum Westerwald-Osteifel'),
(94399, 'https://ror.org/0570kre10', 'fr', 1, 'https://ror.org/0570kre10 Institut de recherche Juridique sur l''entreprise et les relations professionnelles'),
(94400, 'https://ror.org/05716x568', 'en', 1, 'https://ror.org/05716x568 Latvijas nacionālais metroloģijas centrs Metrology Bureau'),
(94401, 'https://ror.org/0571arb76', 'en', 1, 'https://ror.org/0571arb76 Informa Healthcare'),
(94402, 'https://ror.org/0572pak88', 'fr', 1, 'https://ror.org/0572pak88 Laboratoire de Psychologie et d’Ergonomie AppliquĆ©es'),
(94403, 'https://ror.org/0573ty638', 'en', 1, 'https://ror.org/0573ty638 Multi-Modal Molecular Imaging Italian Node'),
(94404, 'https://ror.org/0575w8109', 'en', 1, 'https://ror.org/0575w8109 British Institute at Ankara'),
(94405, 'https://ror.org/0577avk88', 'es', 1, 'https://ror.org/0577avk88 Central University of Chile Universidad Central de Chile'),
(94406, 'https://ror.org/05782e512', 'en', 1, 'https://ror.org/05782e512 Department of Education of Jilin Province å‰ęž—ēœę•™č‚²åŽ…'),
(94407, 'https://ror.org/0578qbf69', 'en', 1, 'https://ror.org/0578qbf69 Pancreatic Cancer Action'),
(94408, 'https://ror.org/057aq1y25', 'it', 1, 'https://ror.org/057aq1y25 Istituto Nazionale di Riposo e Cura per Anziani'),
(94409, 'https://ror.org/057gp6121', 'no_lang_code', 1, 'https://ror.org/057gp6121 Scientific Analysis Of Fine Art'),
(94410, 'https://ror.org/057ha1659', 'en', 1, 'https://ror.org/057ha1659 Okura Institute for the Study of Spiritual Culture ē²¾ē„žę–‡åŒ–ć®ćŸć‚ć®å¤§å€‰ē ”ē©¶ę‰€'),
(94411, 'https://ror.org/057hdmq26', 'en', 1, 'https://ror.org/057hdmq26 Tianjin Foreign Studies University 天擄外国语大学'),
(94412, 'https://ror.org/057hhqd90', 'en', 1, 'https://ror.org/057hhqd90 Sacred Heart Health System'),
(94413, 'https://ror.org/057kjcb31', 'no_lang_code', 1, 'https://ror.org/057kjcb31 Tata Trusts'),
(94414, 'https://ror.org/057kqtj87', 'no_lang_code', 1, 'https://ror.org/057kqtj87 Avon (United States)'),
(94415, 'https://ror.org/057mqf960', 'en', 1, 'https://ror.org/057mqf960 Nkumba University'),
(94416, 'https://ror.org/057n33556', 'no_lang_code', 1, 'https://ror.org/057n33556 Solution Engineering (United States)'),
(94417, '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'),
(94418, 'https://ror.org/057sema44', 'no_lang_code', 1, 'https://ror.org/057sema44 Elea'),
(94419, 'https://ror.org/057sq8156', 'en', 0, 'https://ror.org/057sq8156 International Institute of Tropical Agriculture'),
(94420, 'https://ror.org/057trhh06', 'fr', 1, 'https://ror.org/057trhh06 Dynamique des CapacitƩs Humaines et des Conduites de SantƩ'),
(94421, 'https://ror.org/057vgp054', 'en', 1, 'https://ror.org/057vgp054 Institute for Research in Language Teaching čŖžå­¦ę•™č‚²ē ”ē©¶ę‰€'),
(94422, 'https://ror.org/057vq1a33', 'es', 1, 'https://ror.org/057vq1a33 Centro Universitario del Oriente de Hidalgo'),
(94423, 'https://ror.org/057x2fe53', 'en', 1, 'https://ror.org/057x2fe53 Kappa Omicron Nu Honor Society'),
(94424, 'https://ror.org/057xcp713', 'en', 1, 'https://ror.org/057xcp713 Neil A. Armstrong Test Facility'),
(94425, 'https://ror.org/057xyvv49', 'id', 1, 'https://ror.org/057xyvv49 Muhammadiyah University of Magelang Universitas Muhammadiyah Magelang'),
(94426, 'https://ror.org/057zmmf60', 'es', 1, 'https://ror.org/057zmmf60 Instituto de BiotecnologĆ­a y BiologĆ­a Molecular'),
(94427, 'https://ror.org/057zq8s17', 'en', 1, 'https://ror.org/057zq8s17 American Academy of Sleep Medicine Foundation'),
(94428, 'https://ror.org/0580ba928', 'en', 1, 'https://ror.org/0580ba928 Paddy Pallin Foundation'),
(94429, 'https://ror.org/0581em797', 'de', 1, 'https://ror.org/0581em797 Generaldirektion Wasserstraßen und Schifffahrt'),
(94430, 'https://ror.org/0581esp57', 'fr', 1, 'https://ror.org/0581esp57 Fondation Maison des Sciences de l''Homme'),
(94431, 'https://ror.org/05833yb45', 'en', 1, 'https://ror.org/05833yb45 Centre for Ecotoxicological Research'),
(94432, 'https://ror.org/0584fw805', 'no_lang_code', 1, 'https://ror.org/0584fw805 Mowi (Canada)'),
(94433, 'https://ror.org/0584zvc19', 'no_lang_code', 1, 'https://ror.org/0584zvc19 Proteovista (United States)'),
(94434, 'https://ror.org/058548196', 'en', 1, 'https://ror.org/058548196 Tokyo Medical and Dental University Hospital ę±äŗ¬åŒ»ē§‘ę­Æē§‘å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(94435, 'https://ror.org/058arh533', 'en', 1, 'https://ror.org/058arh533 Mazaya University College ŁƒŁ„ŁŠŲ© Ł…Ų²Ų§ŁŠŲ§ الجامعة'),
(94436, 'https://ror.org/058aw2d25', 'en', 1, 'https://ror.org/058aw2d25 Mississippi Department of Environmental Quality'),
(94437, 'https://ror.org/058cmte92', 'en', 1, 'https://ror.org/058cmte92 Manara University UniversitĆ© Manara Ų¬Ų§Ł…Ų¹Ų© المنارة'),
(94438, 'https://ror.org/058cn0t62', 'no_lang_code', 1, 'https://ror.org/058cn0t62 Cerene Biomedics'),
(94439, 'https://ror.org/058dg6525', 'en', 1, 'https://ror.org/058dg6525 Carpathian Biosphere Reserve ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ біосферний заповіГник'),
(94440, 'https://ror.org/058erz278', 'en', 1, 'https://ror.org/058erz278 Savanna Institute'),
(94441, 'https://ror.org/058ex1x30', 'en', 1, 'https://ror.org/058ex1x30 Kostroma State University named after N A Nekrasov Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ¾Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. А. ŠŠµŠŗŃ€Š°ŃŠ¾Š²Š°'),
(94442, 'https://ror.org/058fw2b10', 'no_lang_code', 1, 'https://ror.org/058fw2b10 Bartenbach - The Lighting Innovators (Austria)'),
(94443, 'https://ror.org/058gnfy87', 'fr', 1, 'https://ror.org/058gnfy87 UniversitƩ Hassan II Mohammedia'),
(94444, 'https://ror.org/058hkqk21', 'en', 1, 'https://ror.org/058hkqk21 Muzeul Național de Istorie a Moldovei National Museum of History of Moldova'),
(94445, 'https://ror.org/058hv4b88', 'en', 1, 'https://ror.org/058hv4b88 Federation of European Microbiological Societies'),
(94446, 'https://ror.org/058k8t807', 'en', 1, 'https://ror.org/058k8t807 Industrial Technology Development Institute'),
(94447, 'https://ror.org/058karh42', 'no_lang_code', 1, 'https://ror.org/058karh42 Molecular Dimensions'),
(94448, 'https://ror.org/058m2zy02', 'it', 1, 'https://ror.org/058m2zy02 Biblioteca Universitaria di Napoli'),
(94449, 'https://ror.org/058mjg007', 'en', 1, 'https://ror.org/058mjg007 Siberian Research Institute of Animal Husbandry Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ животновоГства Дибирского Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра агробиотехнологий Российской акаГемии наук'),
(94450, 'https://ror.org/058pagg05', 'en', 1, 'https://ror.org/058pagg05 Global Brain Health Institute'),
(94451, 'https://ror.org/058rn5r42', 'en', 1, 'https://ror.org/058rn5r42 Hasso Plattner Institute Hasso-Plattner-Institut'),
(94452, 'https://ror.org/058rymf81', 'en', 1, 'https://ror.org/058rymf81 National Research Council of Science and Technology źµ­ź°€ź³¼ķ•™źø°ģˆ ģ—°źµ¬ķšŒ'),
(94453, 'https://ror.org/058ya6669', 'en', 1, 'https://ror.org/058ya6669 Kara Harp Okulu Turkish Military Academy'),
(94454, 'https://ror.org/058yr9c17', 'no_lang_code', 0, 'https://ror.org/058yr9c17 Atego (United Kingdom)'),
(94455, 'https://ror.org/058zxsr17', 'en', 1, 'https://ror.org/058zxsr17 Bolin Centre for Climate Research'),
(94456, 'https://ror.org/0590bqn84', 'en', 1, 'https://ror.org/0590bqn84 Africa First'),
(94457, 'https://ror.org/0590dbq33', 'en', 1, 'https://ror.org/0590dbq33 SINTEF Energy Research'),
(94458, 'https://ror.org/0591qfp26', 'en', 1, 'https://ror.org/0591qfp26 Fisheries Research and Development Corporation'),
(94459, 'https://ror.org/05920yd65', 'en', 1, 'https://ror.org/05920yd65 Institut International d''Agriculture Tropicale International Center for Tropical Agriculture'),
(94460, 'https://ror.org/0594de127', 'es', 1, 'https://ror.org/0594de127 Instituto de Botanica Darwinion'),
(94461, 'https://ror.org/05953j253', 'en', 1, 'https://ror.org/05953j253 Virginia Tech Transportation Institute'),
(94462, 'https://ror.org/05980js50', 'en', 1, 'https://ror.org/05980js50 Dublin Metropolitan University'),
(94463, 'https://ror.org/0599cab37', 'en', 1, 'https://ror.org/0599cab37 Henry Ford Health + Michigan State University Health Sciences'),
(94464, 'https://ror.org/0599wfz09', 'en', 1, 'https://ror.org/0599wfz09 Animal and Plant Health Inspection Service'),
(94465, 'https://ror.org/059bgk218', 'en', 0, 'https://ror.org/059bgk218 John Marshall Law School'),
(94466, 'https://ror.org/059c60c91', 'en', 0, 'https://ror.org/059c60c91 Derby Hospitals NHS Foundation Trust'),
(94467, 'https://ror.org/059fqnc42', 'en', 1, 'https://ror.org/059fqnc42 Glenn Research Center'),
(94468, 'https://ror.org/059gve835', 'en', 1, 'https://ror.org/059gve835 Agency of Rural Development and Soil and Water Conservation č¾²ę„­éƒØč¾²ę‘ē™¼å±•åŠę°“åœŸäæęŒē½² ē‰ˆę¬Šę‰€ęœ‰'),
(94469, 'https://ror.org/059h63k52', 'no_lang_code', 1, 'https://ror.org/059h63k52 Schreiner Group (Germany)'),
(94470, 'https://ror.org/059hta174', 'en', 1, 'https://ror.org/059hta174 Robert E. Webber Institute for Worship Studies'),
(94471, 'https://ror.org/059jjv571', 'it', 1, 'https://ror.org/059jjv571 Centro Polispecialistico Mediterraneo'),
(94472, 'https://ror.org/059m0aj32', 'en', 1, 'https://ror.org/059m0aj32 Lady Tata Memorial Trust'),
(94473, 'https://ror.org/059mr5v89', 'pt', 1, 'https://ror.org/059mr5v89 Centro UniversitÔrio União Dinâmica das Cataratas'),
(94474, 'https://ror.org/059n1d175', 'ca', 1, 'https://ror.org/059n1d175 Hospital de Sant Pau Hospital of the Holy Cross and Saint Paul'),
(94475, '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'),
(94476, 'https://ror.org/059qhjc85', 'no_lang_code', 1, 'https://ror.org/059qhjc85 John Crane (United States)'),
(94477, 'https://ror.org/059qwgz87', 'es', 1, 'https://ror.org/059qwgz87 Centro de Metrologƭa del EjƩrcito Ecuatoriano'),
(94478, 'https://ror.org/059qx7e64', 'tr', 1, 'https://ror.org/059qx7e64 Kıbrıs Ada Kent Üniversitesi'),
(94479, 'https://ror.org/059sa4e46', 'es', 1, 'https://ror.org/059sa4e46 Centro Universitario en Lenguas, Turismo y Empresas de Servicios'),
(94480, 'https://ror.org/059v3b755', 'en', 1, 'https://ror.org/059v3b755 Ministry of Health'),
(94481, 'https://ror.org/059wbyv33', 'en', 1, 'https://ror.org/059wbyv33 El Instituto de Investigación Sanitaria INCLIVA INCLIVA Health Research Institute'),
(94482, 'https://ror.org/059ycz158', 'id', 1, 'https://ror.org/059ycz158 Universitas Islam Balitar'),
(94483, 'https://ror.org/059ytf396', 'en', 1, 'https://ror.org/059ytf396 The Crustacean Society'),
(94484, 'https://ror.org/059z28h12', 'fr', 1, 'https://ror.org/059z28h12 Centre de recherches et d’études sur les droits fondamentaux'),
(94485, 'https://ror.org/059zhgd27', 'en', 0, 'https://ror.org/059zhgd27 National Latino Cosmetology Association'),
(94486, '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'),
(94487, 'https://ror.org/05a2xtt59', 'en', 1, 'https://ror.org/05a2xtt59 International Maize and Wheat Improvement Center'),
(94488, 'https://ror.org/05a4cm665', 'en', 1, 'https://ror.org/05a4cm665 Government of Norway'),
(94489, 'https://ror.org/05a55ea71', 'es', 1, 'https://ror.org/05a55ea71 Red de Investigadores De la Transcomplejidad'),
(94490, 'https://ror.org/05a57r951', 'en', 1, 'https://ror.org/05a57r951 Parc national de la Pointe-PelƩe Point Pelee National Park'),
(94491, 'https://ror.org/05a5cbz35', 'en', 1, 'https://ror.org/05a5cbz35 South Dakota Game, Fish and Parks'),
(94492, 'https://ror.org/05a5v7410', 'en', 1, 'https://ror.org/05a5v7410 Tanzania Bureau of Standards'),
(94493, 'https://ror.org/05a7t9b67', 'en', 1, 'https://ror.org/05a7t9b67 Edinburgh Cancer Research'),
(94494, 'https://ror.org/05aah2q92', 'en', 1, 'https://ror.org/05aah2q92 Fraunhofer USA'),
(94495, 'https://ror.org/05aav2h42', 'en', 1, 'https://ror.org/05aav2h42 Georgian National Academy of Sciences ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Š“Ń€ŃƒŠ·ŠøŠø ÕŽÖ€Õ”Õ½ÕæÕ”Õ¶Õ« Ō³Õ«ÕæÕøÖ‚Õ©ÕµÕøÖ‚Õ¶Õ¶Õ„Ö€Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ”ÕÆÕ”Õ¤Õ„Õ“Õ«Õ” įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒįƒ—įƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(94496, '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'),
(94497, 'https://ror.org/05abs3w97', 'en', 1, 'https://ror.org/05abs3w97 Texas A&M University – Kingsville'),
(94498, 'https://ror.org/05adajg67', 'fr', 1, 'https://ror.org/05adajg67 Cibles thƩrapeutiques, formulation et expertise prƩclinique du mƩdicament'),
(94499, 'https://ror.org/05aec4025', 'en', 1, 'https://ror.org/05aec4025 Polytechnic University of Tirana Universiteti Politeknik i Tiranƫs'),
(94500, 'https://ror.org/05aen6q52', 'no_lang_code', 1, 'https://ror.org/05aen6q52 Garage Brain Science'),
(94501, 'https://ror.org/05af1fm66', 'en', 1, 'https://ror.org/05af1fm66 National Centre for Antarctic and Ocean Research ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤•ą¤Ÿą¤æą¤• ą¤ą¤µą¤‚ ą¤øą¤®ą„ą¤¦ą„ą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(94502, 'https://ror.org/05ah35j40', 'en', 1, 'https://ror.org/05ah35j40 Annenberg Foundation Trust at Sunnylands'),
(94503, 'https://ror.org/05ahkm330', 'en', 1, 'https://ror.org/05ahkm330 Fondation TD des Amis de l''Environnement TD Friends of the Environment Foundation'),
(94504, 'https://ror.org/05akpmt68', 'en', 1, 'https://ror.org/05akpmt68 National Gear Metrology Laboratory'),
(94505, 'https://ror.org/05akvb491', 'en', 1, 'https://ror.org/05akvb491 Third Xiangya Hospital äø­å—å¤§å­¦ę¹˜é›…äø‰åŒ»é™¢-é—Øę€„čÆŠę„¼'),
(94506, 'https://ror.org/05ama8095', 'en', 1, 'https://ror.org/05ama8095 PÔpa Reformed Theological Seminary PÔpai ReformÔtus Teológiai Akadémia'),
(94507, 'https://ror.org/05amyt365', 'en', 1, 'https://ror.org/05amyt365 Directory of Open Access Journals'),
(94508, 'https://ror.org/05ap9ze55', 'en', 1, 'https://ror.org/05ap9ze55 Queensland Self-Management Alliance'),
(94509, 'https://ror.org/05aqazf41', 'en', 1, 'https://ror.org/05aqazf41 Child Neurology Society'),
(94510, 'https://ror.org/05aqxbm32', 'es', 1, 'https://ror.org/05aqxbm32 Universidad de Comunicación Avanzada'),
(94511, 'https://ror.org/05ar5fy68', 'en', 1, 'https://ror.org/05ar5fy68 Innovate UK'),
(94512, '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'),
(94513, 'https://ror.org/05atyvn45', 'no_lang_code', 0, 'https://ror.org/05atyvn45 Dow Agrosciences (United States)'),
(94514, 'https://ror.org/05awj8b71', 'en', 1, 'https://ror.org/05awj8b71 Maharishi Vedic Research Institute'),
(94515, 'https://ror.org/05ax0z866', 'id', 1, 'https://ror.org/05ax0z866 Universitas Darma Agung'),
(94516, 'https://ror.org/05axzq880', 'en', 1, 'https://ror.org/05axzq880 Ehlers-Danlos Society'),
(94517, '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'),
(94518, 'https://ror.org/05b1jpg49', 'en', 1, 'https://ror.org/05b1jpg49 Idaho Space Grant Consortium'),
(94519, 'https://ror.org/05b2tmp48', 'de', 1, 'https://ror.org/05b2tmp48 StƤdelschule'),
(94520, 'https://ror.org/05b2ycy47', 'en', 1, 'https://ror.org/05b2ycy47 Jinan City People''s Hospital ęµŽå—åø‚äŗŗę°‘åŒ»é™¢'),
(94521, 'https://ror.org/05b4kax95', 'en', 1, 'https://ror.org/05b4kax95 Saint Petersburg University of Management and Economics'),
(94522, 'https://ror.org/05b5wvf11', 'en', 0, 'https://ror.org/05b5wvf11 Aircraft Engine Research Laboratory'),
(94523, 'https://ror.org/05b6tm718', 'en', 0, 'https://ror.org/05b6tm718 The Automobile Association'),
(94524, 'https://ror.org/05b7fdx35', 'no_lang_code', 1, 'https://ror.org/05b7fdx35 AES (United States)'),
(94525, 'https://ror.org/05b8d1c64', 'en', 1, 'https://ror.org/05b8d1c64 Ann and Gordon Getty Foundation'),
(94526, 'https://ror.org/05b8hjk91', 'en', 1, 'https://ror.org/05b8hjk91 21 September University of Medical and Applied Sciences Ų¬Ų§Ł…Ų¹Ų© 21 Ų³ŲØŲŖŁ…ŲØŲ± Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(94527, 'https://ror.org/05b8kzx41', 'cs', 1, 'https://ror.org/05b8kzx41 Olomouc Region, Olomoucký kraj'),
(94528, 'https://ror.org/05b9py859', 'en', 1, 'https://ror.org/05b9py859 University of Makeni'),
(94529, 'https://ror.org/05ba1x822', 'en', 1, 'https://ror.org/05ba1x822 Golden Key International Honour Society'),
(94530, 'https://ror.org/05bcgfn72', 'en', 1, 'https://ror.org/05bcgfn72 Dementia Australia'),
(94531, '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'),
(94532, 'https://ror.org/05bhh0g83', 'en', 1, 'https://ror.org/05bhh0g83 Gouvernement du Yukon Government of Yukon'),
(94533, 'https://ror.org/05bhmhz54', 'en', 1, 'https://ror.org/05bhmhz54 Yangtze University é•æę±Ÿå¤§å­¦'),
(94534, 'https://ror.org/05bj7sh33', 'en', 1, 'https://ror.org/05bj7sh33 University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… و Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(94535, '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'),
(94536, 'https://ror.org/05bnqnk18', 'no_lang_code', 1, 'https://ror.org/05bnqnk18 Cybernetics Technology (Belgium)'),
(94537, 'https://ror.org/05bnyh780', 'no', 1, 'https://ror.org/05bnyh780 Ƙstfold Fylkeskommune'),
(94538, 'https://ror.org/05bp8ka05', 'no_lang_code', 1, 'https://ror.org/05bp8ka05 Metadata Game Changers (United States)'),
(94539, 'https://ror.org/05bphc025', 'no_lang_code', 1, 'https://ror.org/05bphc025 Customcells Itzehoe GmbH (Germany)'),
(94540, 'https://ror.org/05bq59x90', 'en', 1, 'https://ror.org/05bq59x90 University of Batangas Western Philippine College'),
(94541, 'https://ror.org/05bqtky90', 'sv', 1, 'https://ror.org/05bqtky90 C.F. Lundstrƶms Stiftelse'),
(94542, 'https://ror.org/05bt3je48', 'no_lang_code', 1, 'https://ror.org/05bt3je48 SAXSLAB (Denmark)'),
(94543, 'https://ror.org/05c11k793', 'en', 1, 'https://ror.org/05c11k793 Bucerius Law School'),
(94544, 'https://ror.org/05c1yfj14', 'en', 1, 'https://ror.org/05c1yfj14 Xiangya Hospital Central South University äø­å—å¤§å­¦ę¹˜é›…åŒ»é™¢'),
(94545, 'https://ror.org/05c2btq38', 'en', 1, 'https://ror.org/05c2btq38 Al-Zahraa University for Women Ų¬Ų§Ł…Ų¹Ų© الزهراؔ Ų¹Ł„ŁŠŁ‡Ų§ السلام للبنات'),
(94546, 'https://ror.org/05c40ar66', 'en', 1, 'https://ror.org/05c40ar66 Sutton Trust'),
(94547, 'https://ror.org/05c4bsk60', 'no_lang_code', 1, 'https://ror.org/05c4bsk60 Internet Initiative Japan ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆć‚¤ćƒ‹ć‚·ć‚¢ćƒ†ć‚£ćƒ–'),
(94548, 'https://ror.org/05c4crv67', 'en', 1, 'https://ror.org/05c4crv67 Moscow State University of Technologies and Management named after K.G. Razumovskiy Московский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет Технологий Šø Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ им. К.Š“. Разумовского'),
(94549, 'https://ror.org/05c7j7r25', 'es', 1, 'https://ror.org/05c7j7r25 Consejo Nacional de Ciencia, Tecnología e Innovación Tecnológica'),
(94550, 'https://ror.org/05c8wa765', 'en', 1, 'https://ror.org/05c8wa765 Japan Society of Civil Engineers å…¬ē›Šē¤¾å›£ę³•äŗŗåœŸęœØå­¦ä¼š'),
(94551, 'https://ror.org/05c9ks061', 'fr', 1, 'https://ror.org/05c9ks061 Sciences, Philosophie, Histoire'),
(94552, 'https://ror.org/05cas4c56', 'no_lang_code', 1, 'https://ror.org/05cas4c56 SofTech (Italy)'),
(94553, 'https://ror.org/05cavnv92', 'es', 1, 'https://ror.org/05cavnv92 Academia Mexicana de Investigación y Docencia en Innovación'),
(94554, 'https://ror.org/05cezsp67', 'en', 1, 'https://ror.org/05cezsp67 Love Your Breasts'),
(94555, 'https://ror.org/05cfhm219', 'en', 0, 'https://ror.org/05cfhm219 Texas Woman''s University'),
(94556, 'https://ror.org/05chny950', 'en', 1, 'https://ror.org/05chny950 Institute of Encyclopedic Research Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ енциклопеГичних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України"'),
(94557, 'https://ror.org/05cjrrq55', 'en', 1, 'https://ror.org/05cjrrq55 Izumi Science and Technology Promotion Foundation ę³‰ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(94558, 'https://ror.org/05ckh8811', 'en', 1, 'https://ror.org/05ckh8811 Alfred Friendly Foundation'),
(94559, 'https://ror.org/05cpg3d24', 'no_lang_code', 1, 'https://ror.org/05cpg3d24 Nur-Mubarak University ŠŅ±Ń€-ŠœŅÆŠ±Š°Ń€Š°Šŗ Египет ислам мәГениеті ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(94560, 'https://ror.org/05cpv3t46', 'fr', 1, 'https://ror.org/05cpv3t46 HƓpital Claude Huriez'),
(94561, 'https://ror.org/05ct91r78', 'en', 1, 'https://ror.org/05ct91r78 Chongqing Municipal Government'),
(94562, 'https://ror.org/05cv56b48', 'no_lang_code', 1, 'https://ror.org/05cv56b48 Arkema (France)'),
(94563, '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'),
(94564, 'https://ror.org/05cwbxa29', 'en', 0, 'https://ror.org/05cwbxa29 The University of Texas Health Science Center'),
(94565, 'https://ror.org/05cwrg559', 'no_lang_code', 1, 'https://ror.org/05cwrg559 WSP Civils (United Kingdom)'),
(94566, 'https://ror.org/05cxcv046', 'en', 1, 'https://ror.org/05cxcv046 Montenegrin Bureau of Metrology'),
(94567, 'https://ror.org/05d3gn492', 'fr', 0, 'https://ror.org/05d3gn492 Acta - les Instituts Techniques Agricoles'),
(94568, 'https://ror.org/05d3yke23', 'fr', 1, 'https://ror.org/05d3yke23 Ɖcole nationale supĆ©rieure de paysage de Versailles'),
(94569, 'https://ror.org/05d538656', 'it', 1, 'https://ror.org/05d538656 IRCCS Humanitas Research Hospital, Istituto Clinico Humanitas IRCCS'),
(94570, 'https://ror.org/05d5rcv87', 'no_lang_code', 0, 'https://ror.org/05d5rcv87 MSC Software (United States)'),
(94571, 'https://ror.org/05d7h6x56', 'en', 1, 'https://ror.org/05d7h6x56 Emirates Metrology Institute معهد الامارات Ł„Ł„Ł…ŲŖŲ±ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(94572, 'https://ror.org/05d8avs16', 'no_lang_code', 1, 'https://ror.org/05d8avs16 Mitsubishi Chemical (Japan) äø‰č±ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(94573, 'https://ror.org/05dbzj528', 'en', 1, 'https://ror.org/05dbzj528 Turku University Hospital Turun yliopistollinen keskussairaala'),
(94574, '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'),
(94575, 'https://ror.org/05dedze85', 'fr', 0, 'https://ror.org/05dedze85 Laboratoire Stress Oxydant et Pathologies MƩtaboliques'),
(94576, 'https://ror.org/05dfxpw18', 'no_lang_code', 1, 'https://ror.org/05dfxpw18 TWT GmbH Science & Innovation (Germany)'),
(94577, 'https://ror.org/05dg6v104', 'es', 1, 'https://ror.org/05dg6v104 Instituto de Acuacultura del Estado de Sonora'),
(94578, 'https://ror.org/05dj9eh50', 'en', 1, 'https://ror.org/05dj9eh50 Net Zero Technology Centre'),
(94579, 'https://ror.org/05dm31p35', 'fr', 1, 'https://ror.org/05dm31p35 Sciences Po Lille'),
(94580, 'https://ror.org/05dq9ay83', 'tr', 1, 'https://ror.org/05dq9ay83 Seferihisar Belediyesi'),
(94581, 'https://ror.org/05dqqj338', 'en', 1, 'https://ror.org/05dqqj338 Martin Health System'),
(94582, 'https://ror.org/05ds44a85', 'en', 1, 'https://ror.org/05ds44a85 IBS Center for Climate Physics'),
(94583, 'https://ror.org/05dv1j335', 'en', 1, 'https://ror.org/05dv1j335 BibliothĆØque huntington The Huntington Library, Art Museum, and Botanical Gardens'),
(94584, 'https://ror.org/05dvgav47', 'de', 0, 'https://ror.org/05dvgav47 Generaldirektion Wasserstraßen und Schifffahrt'),
(94585, 'https://ror.org/05dvmy761', 'en', 1, 'https://ror.org/05dvmy761 World Vegetable Center'),
(94586, 'https://ror.org/05dwvd537', 'en', 1, 'https://ror.org/05dwvd537 Ministerstwo Nauki i Szkolnictwa Wyższego Ministry of Science and Higher Education'),
(94587, 'https://ror.org/05dxd7816', 'no_lang_code', 1, 'https://ror.org/05dxd7816 Arnika'),
(94588, 'https://ror.org/05dxwqx61', 'en', 1, 'https://ror.org/05dxwqx61 St. John Macomb Oakland Hospital'),
(94589, 'https://ror.org/05dzkw846', 'no_lang_code', 1, 'https://ror.org/05dzkw846 Triangle Research and Development Corporation (United States)'),
(94590, 'https://ror.org/05e08c338', 'es', 1, 'https://ror.org/05e08c338 Hospital General San Jorge'),
(94591, 'https://ror.org/05e0dm506', 'en', 1, 'https://ror.org/05e0dm506 IIJ Research Laboratory IIJęŠ€č”“ē ”ē©¶ę‰€'),
(94592, 'https://ror.org/05e33tw76', 'en', 1, 'https://ror.org/05e33tw76 TOCA at Banner Health'),
(94593, 'https://ror.org/05e44rx60', 'en', 1, 'https://ror.org/05e44rx60 WAPCOS Limited ą¤µą¤¾ą¤Ŗą„ą¤•ą„‹ą¤ø ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(94594, 'https://ror.org/05e761p90', 'en', 1, 'https://ror.org/05e761p90 Baha''i World Centre'),
(94595, 'https://ror.org/05e7jee26', 'en', 1, 'https://ror.org/05e7jee26 Pandian Educational Trust ą®Ŗą®¾ą®£ąÆą®Ÿą®æą®Æą®©ąÆ ą®•ą®²ąÆą®µą®æ ą®…ą®±ą®•ąÆą®•ą®ŸąÆą®Ÿą®³ąÆˆ'),
(94596, 'https://ror.org/05e87zb45', 'en', 1, 'https://ror.org/05e87zb45 American Psychosocial Oncology Society'),
(94597, 'https://ror.org/05e89k615', 'en', 1, 'https://ror.org/05e89k615 Australian Antarctic Division'),
(94598, 'https://ror.org/05ecjav59', 'fr', 1, 'https://ror.org/05ecjav59 UniversitƩ Professionnelle d''Afrique'),
(94599, 'https://ror.org/05ee7se63', 'en', 0, 'https://ror.org/05ee7se63 Moscow State University of Economics Statistics and Informatics Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, статистики Šø информатики'),
(94600, 'https://ror.org/05eghha10', 'es', 1, 'https://ror.org/05eghha10 Los Molinos Observatory Observatorio Astronómico Los Molinos'),
(94601, 'https://ror.org/05ej0vv18', 'es', 1, 'https://ror.org/05ej0vv18 Hospital Domingo Funes'),
(94602, 'https://ror.org/05ek4tb53', 'en', 1, 'https://ror.org/05ek4tb53 Public Knowledge Project'),
(94603, 'https://ror.org/05ekffz43', 'en', 1, 'https://ror.org/05ekffz43 National Center on Complex Processing of Mineral Raw Materials of the Republic of Kazakhstan ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр по комплексной переработке Š¼ŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ сырья Республики ŠšŠ°Š·Š°Ń…стан ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ минералГық ŃˆŠøŠŗŃ–Š·Š°Ń‚Ń‚Ń‹ ŠŗŠµŃˆŠµŠ½Š“Ń– қайта өңГеу жөнінГегі ұлттық орталығы'),
(94604, 'https://ror.org/05emrqw14', 'no_lang_code', 1, 'https://ror.org/05emrqw14 Bayer (United Kingdom)'),
(94605, 'https://ror.org/05en1rc60', 'id', 1, 'https://ror.org/05en1rc60 Universitas Kristen Palangkaraya'),
(94606, 'https://ror.org/05epdh915', 'en', 1, 'https://ror.org/05epdh915 United States Army Research Office');
INSERT INTO `rors` VALUES
(94607, 'https://ror.org/05eq5hr59', 'en', 1, 'https://ror.org/05eq5hr59 Zhetysu University named after Ilyas Zhansugurov Š†Š»ŠøŃŃ Жансүгіров атынГағы Š–ŠµŃ‚Ń–ŃŃƒ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– Š–ŠµŃ‚Ń‹ŃŃƒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š˜Š»ŃŒŃŃŠ° Š–Š°Š½ŃŃƒŠ³ŃƒŃ€Š¾Š²Š°'),
(94608, 'https://ror.org/05ese7s54', 'de', 1, 'https://ror.org/05ese7s54 Wasserstraßen- und Schifffahrtsamt Ostsee'),
(94609, 'https://ror.org/05et1xd41', 'es', 1, 'https://ror.org/05et1xd41 Instituto de Ciencia y TecnologĆ­a de los Alimentos de Entre RĆ­os'),
(94610, 'https://ror.org/05etxbz89', 'en', 1, 'https://ror.org/05etxbz89 Comprehensive Cancer Centers of Nevada'),
(94611, 'https://ror.org/05ev88143', 'fr', 1, 'https://ror.org/05ev88143 HƓpitaux de Saint Maurice'),
(94612, 'https://ror.org/05evek152', 'en', 1, 'https://ror.org/05evek152 NOAA Office of Coast Survey'),
(94613, 'https://ror.org/05evp6y14', 'fr', 1, 'https://ror.org/05evp6y14 GƩnƩrale de SantƩ'),
(94614, 'https://ror.org/05ewg0g09', 'es', 1, 'https://ror.org/05ewg0g09 Tecnológico Sudamericano'),
(94615, 'https://ror.org/05ey8rd88', 'en', 1, 'https://ror.org/05ey8rd88 Society for Academic Facilitation and Extension'),
(94616, 'https://ror.org/05ezvck41', 'it', 0, 'https://ror.org/05ezvck41 INGV Amministrazione Centrale'),
(94617, 'https://ror.org/05f0rzm15', 'en', 1, 'https://ror.org/05f0rzm15 Transnational University Limburg Transnationale Universiteit Limburg'),
(94618, 'https://ror.org/05f1vtb90', 'fr', 1, 'https://ror.org/05f1vtb90 Institut Universitaire Polytechnique de Mongo'),
(94619, 'https://ror.org/05f1zzd23', 'en', 1, 'https://ror.org/05f1zzd23 Dharmsinh Desai University'),
(94620, 'https://ror.org/05f262r88', 'en', 1, 'https://ror.org/05f262r88 University System of Maryland at Hagerstown'),
(94621, 'https://ror.org/05f5b3h44', 'en', 1, 'https://ror.org/05f5b3h44 Hawaii Pacific Health'),
(94622, 'https://ror.org/05f6mer85', 'en', 1, 'https://ror.org/05f6mer85 Innovation Academy for Microsatellites of Chinese Academy of Sciences äø­å›½ē§‘å­¦é™¢å¾®å°å«ę˜Ÿåˆ›ę–°ē ”ē©¶é™¢å¤‡ę”ˆ'),
(94623, 'https://ror.org/05f8sby41', 'en', 1, 'https://ror.org/05f8sby41 Gans Collections and Charitable Fund'),
(94624, 'https://ror.org/05fazth07', 'en', 1, 'https://ror.org/05fazth07 Beckman Research Institute'),
(94625, 'https://ror.org/05fczbb21', 'no_lang_code', 1, 'https://ror.org/05fczbb21 Appco Pharma (United States)'),
(94626, 'https://ror.org/05fd1hd85', 'en', 1, 'https://ror.org/05fd1hd85 Tbilisi Dƶvlət Universiteti Tbilisi State University Тбилисский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ō¹Õ¢Õ«Õ¬Õ«Õ½Õ«Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(94627, 'https://ror.org/05fexf102', 'no_lang_code', 0, 'https://ror.org/05fexf102 Canadian Journal of Communication (Canada)'),
(94628, 'https://ror.org/05fj3ns96', 'en', 1, 'https://ror.org/05fj3ns96 Australian Medical Council'),
(94629, 'https://ror.org/05fjfdm02', 'en', 1, 'https://ror.org/05fjfdm02 Results for Development Institute'),
(94630, 'https://ror.org/05fk67q44', 'en', 1, 'https://ror.org/05fk67q44 Social Protection Institute of the Republic of Slovenia'),
(94631, 'https://ror.org/05fq5nw33', 'no_lang_code', 1, 'https://ror.org/05fq5nw33 Parachute Health (United States)'),
(94632, 'https://ror.org/05fqg8t87', 'no_lang_code', 1, 'https://ror.org/05fqg8t87 Syngenta (Switzerland)'),
(94633, 'https://ror.org/05ft9wv42', 'fr', 1, 'https://ror.org/05ft9wv42 Acute and Chronic Cardiovascular Deficiency DƩfaillance Cardiovasculaire Aiguƫ et Chronique'),
(94634, 'https://ror.org/05fvjwq08', 'en', 1, 'https://ror.org/05fvjwq08 Center for Islamic Studies (ISAM) İslam Araştırmaları Merkezi (İSAM)'),
(94635, 'https://ror.org/05fvszr38', 'es', 1, 'https://ror.org/05fvszr38 Instituto de GenƩtica Veterinaria'),
(94636, 'https://ror.org/05fvy0w58', 'en', 1, 'https://ror.org/05fvy0w58 Dorrance Family Foundation'),
(94637, 'https://ror.org/05fwpym07', 'no_lang_code', 0, 'https://ror.org/05fwpym07 Crystal Bioscience (United States)'),
(94638, 'https://ror.org/05fxjqz87', 'en', 1, 'https://ror.org/05fxjqz87 Touching Tiny Lives'),
(94639, 'https://ror.org/05fxqx152', 'en', 1, 'https://ror.org/05fxqx152 Ohio University Chillicothe'),
(94640, 'https://ror.org/05fy2ba68', 'no_lang_code', 1, 'https://ror.org/05fy2ba68 SKF (Sweden) Svenska Kullagerfabriken'),
(94641, 'https://ror.org/05g06mk92', 'en', 1, 'https://ror.org/05g06mk92 Hasselblad Foundation'),
(94642, 'https://ror.org/05g1nvk51', 'en', 1, 'https://ror.org/05g1nvk51 Health Professionals Advancing LGBT Equality'),
(94643, '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'),
(94644, 'https://ror.org/05g2axc67', 'no_lang_code', 1, 'https://ror.org/05g2axc67 Tenri Hospital å¤©ē†ć‚ˆć‚ć„ē›øč«‡ę‰€ē—…é™¢'),
(94645, 'https://ror.org/05g2cmx71', 'en', 1, 'https://ror.org/05g2cmx71 Maharshi Vishwamitra College, Buxar'),
(94646, 'https://ror.org/05g2egb88', 'en', 1, 'https://ror.org/05g2egb88 Shanghai Jinyuan Senior High School äøŠęµ·åø‚ę™‹å…ƒé«˜ēŗ§äø­å­¦'),
(94647, 'https://ror.org/05g467k04', 'en', 1, 'https://ror.org/05g467k04 Mechnikov Institute of Microbiology and Immunology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŃ–ŠŗŃ€Š¾Š±Ń–Š¾Š»Š¾Š³Ń–Ń— та Š†Š¼ŃƒŠ½Š¾Š»Š¾Š³Ń–Ń— ім. І. І. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(94648, 'https://ror.org/05g6b4f87', 'no_lang_code', 1, 'https://ror.org/05g6b4f87 Rayonier Advanced Materials (United States)'),
(94649, 'https://ror.org/05g7ez988', 'en', 1, 'https://ror.org/05g7ez988 Jaamacadda Salaam Salaam University Ų¬Ų§Ł…Ų¹Ų© السلام'),
(94650, 'https://ror.org/05g95eg64', 'en', 1, 'https://ror.org/05g95eg64 Institute of Biological and Medical Imaging'),
(94651, 'https://ror.org/05gaped89', 'es', 1, 'https://ror.org/05gaped89 Laboratorio Tecnológico del Uruguay'),
(94652, 'https://ror.org/05gfbdk85', 'en', 1, 'https://ror.org/05gfbdk85 Banner Gateway Medical Center'),
(94653, 'https://ror.org/05ggtew11', 'no_lang_code', 1, 'https://ror.org/05ggtew11 PharmAgra Labs (United States)'),
(94654, 'https://ror.org/05ghce186', 'id', 1, 'https://ror.org/05ghce186 STIKOM Tunas Bangsa'),
(94655, 'https://ror.org/05gkzcc88', 'en', 1, 'https://ror.org/05gkzcc88 Prifysgol Cymru Y Drindod Dewi Sant University of Wales Trinity Saint David'),
(94656, 'https://ror.org/05gnv4a66', 'en', 1, 'https://ror.org/05gnv4a66 Fraunhofer Institute for Silicate Research Fraunhofer-Institut für Silicatforschung'),
(94657, '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'),
(94658, 'https://ror.org/05gsdj460', 'en', 1, 'https://ror.org/05gsdj460 Pudong New Area Health and Family Planning Commission ęµ¦äøœę–°åŒŗå«ē”Ÿå±€'),
(94659, 'https://ror.org/05gxje444', 'en', 1, 'https://ror.org/05gxje444 NOAA National Marine Fisheries Service Alaska Regional Office'),
(94660, 'https://ror.org/05gxjyb39', 'en', 1, 'https://ror.org/05gxjyb39 Imam Mohammad ibn Saud Islamic University Ų¬Ų§Ł…Ų¹Ų© ال؄مام Ł…Ų­Ł…ŲÆ بن سعود Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(94661, 'https://ror.org/05gypvt76', 'en', 1, 'https://ror.org/05gypvt76 Veer Kunwar Singh University ą¤µą„€ą¤° ą¤•ą„ą¤‚ą¤µą¤° सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(94662, 'https://ror.org/05h1e3230', 'id', 1, 'https://ror.org/05h1e3230 Politeknik Teknologi Nuklir Indonesia'),
(94663, 'https://ror.org/05h1ry383', 'en', 1, 'https://ror.org/05h1ry383 Wenzhou Polytechnic ęø©å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(94664, 'https://ror.org/05h2dda38', 'en', 1, 'https://ror.org/05h2dda38 Geological Survey of Western Australia'),
(94665, 'https://ror.org/05h5x3r78', 'en', 1, 'https://ror.org/05h5x3r78 Institute of Anthropological and Spatial Studies InŔtitut za antropoloŔke in prostorske Ŕtudije'),
(94666, 'https://ror.org/05h6gbr15', 'en', 1, 'https://ror.org/05h6gbr15 University of Mianwali'),
(94667, 'https://ror.org/05h7s9y46', 'en', 1, 'https://ror.org/05h7s9y46 Padmashri Dr. V. B. Kolte College of Engineering, Malkapur ą¤Ŗą¤¦ą„ą¤®ą¤¶ą„ą¤°ą„€ ą¤”ą„‰ ą¤µą„ą¤¹ą„€ ą¤¬ą„€ ą¤•ą„‹ą¤²ą¤¤ą„‡ ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ ą¤‡ą¤‚ą¤œą¤æą¤Øą„€ą¤…ą¤°ą¤æą¤‚ą¤—, ą¤®ą¤²ą¤•ą¤¾ą¤Ŗą„‚ą¤°'),
(94668, 'https://ror.org/05h8t4993', 'fr', 1, 'https://ror.org/05h8t4993 Semae'),
(94669, 'https://ror.org/05h99r523', 'en', 0, 'https://ror.org/05h99r523 United Nations High Commissioner for Refugees'),
(94670, 'https://ror.org/05h9f2z18', 'en', 1, 'https://ror.org/05h9f2z18 I Believe'),
(94671, 'https://ror.org/05h9gyn11', 'en', 1, 'https://ror.org/05h9gyn11 Paris Biotech SantƩ'),
(94672, 'https://ror.org/05h9t7759', 'en', 1, 'https://ror.org/05h9t7759 University of Isfahan دانؓگاه اصفهان'),
(94673, 'https://ror.org/05h9t7c44', 'en', 1, 'https://ror.org/05h9t7c44 National Institute of Abiotic Stress Management ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤…ą¤œą„ˆą¤µą¤æą¤• तनाव ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(94674, 'https://ror.org/05hcp8p49', 'en', 1, 'https://ror.org/05hcp8p49 Vologda State University ВологоГский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(94675, 'https://ror.org/05hepy730', 'en', 1, 'https://ror.org/05hepy730 Natural Resources Canada'),
(94676, 'https://ror.org/05hf69e15', 'en', 1, 'https://ror.org/05hf69e15 JRS Biodiversity Foundation'),
(94677, 'https://ror.org/05hg0rk71', 'en', 1, 'https://ror.org/05hg0rk71 Donetsk State University of Internal Affairs Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(94678, 'https://ror.org/05hg48t65', 'en', 1, 'https://ror.org/05hg48t65 Kasturba Medical College, Manipal'),
(94679, 'https://ror.org/05hne2921', 'fr', 1, 'https://ror.org/05hne2921 Institut ACTE - Arts CrƩations ThƩories EsthƩtiques'),
(94680, 'https://ror.org/05hp77p11', 'en', 1, 'https://ror.org/05hp77p11 Turkish Atomic Energy Authority Türkiye Atom Enerjisi Kurumu'),
(94681, 'https://ror.org/05hppb561', 'en', 1, 'https://ror.org/05hppb561 Finnish Meteorological Institute Ilmatieteen Laitos Meteorologiska Institutet'),
(94682, 'https://ror.org/05hq0zw41', 'en', 1, 'https://ror.org/05hq0zw41 The Oppenheimer Memorial Trust'),
(94683, 'https://ror.org/05hqmp950', 'no_lang_code', 1, 'https://ror.org/05hqmp950 Indivior (United Kingdom)'),
(94684, 'https://ror.org/05hqtre35', 'es', 1, 'https://ror.org/05hqtre35 Loro Parque Fundación Loro-Parque-Stiftung'),
(94685, 'https://ror.org/05ht9bp04', 'no_lang_code', 1, 'https://ror.org/05ht9bp04 DASA (Brazil)'),
(94686, 'https://ror.org/05hvaje24', 'en', 1, 'https://ror.org/05hvaje24 The Athenaeum Club'),
(94687, 'https://ror.org/05hvqzx20', 'fr', 1, 'https://ror.org/05hvqzx20 Microfluidique Physique et Bio-ingƩnierie Physical Microfluidics and Bioengineering'),
(94688, 'https://ror.org/05j131828', 'en', 1, 'https://ror.org/05j131828 Duke Regional Hospital'),
(94689, 'https://ror.org/05j1qpr59', 'en', 1, 'https://ror.org/05j1qpr59 Istanbul Medeniyet University İstanbul Medeniyet Üniversitesi'),
(94690, 'https://ror.org/05j1qss59', 'no_lang_code', 1, 'https://ror.org/05j1qss59 Acta Digital Services (France)'),
(94691, 'https://ror.org/05j2xx287', 'en', 1, 'https://ror.org/05j2xx287 Brenner Children''s Hospital'),
(94692, 'https://ror.org/05j3hgd02', 'en', 1, 'https://ror.org/05j3hgd02 Danish Ministry of Food, Agriculture and Fisheries Ministeriet for FĆødevarer, Landbrug og Fiskeri'),
(94693, 'https://ror.org/05j6vfd95', 'id', 1, 'https://ror.org/05j6vfd95 STKIP PGRI Bangkalan'),
(94694, 'https://ror.org/05j8kzh48', 'no_lang_code', 1, 'https://ror.org/05j8kzh48 Federatie van Nederlandse Trombosediensten'),
(94695, 'https://ror.org/05j9kq242', 'de', 1, 'https://ror.org/05j9kq242 Wasserstraßen- und Schifffahrtsamt Spree-Havel'),
(94696, 'https://ror.org/05jadkj46', 'en', 1, 'https://ror.org/05jadkj46 University of Missouri Hospital'),
(94697, 'https://ror.org/05jar4049', 'en', 0, 'https://ror.org/05jar4049 Advanced Biotechnology Center Centro Biotecnologie Avanzate'),
(94698, 'https://ror.org/05jcas118', 'es', 1, 'https://ror.org/05jcas118 Museo de Arte Popular'),
(94699, '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'),
(94700, 'https://ror.org/05jg5hy76', 'en', 1, 'https://ror.org/05jg5hy76 RVNAhealth'),
(94701, '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'),
(94702, 'https://ror.org/05jkb5508', 'de', 1, 'https://ror.org/05jkb5508 Wasserstraßen-Neubauamt Berlin'),
(94703, 'https://ror.org/05jmc0783', 'it', 1, 'https://ror.org/05jmc0783 Ausl 4 Piazza Ospedale'),
(94704, 'https://ror.org/05jmd4043', 'es', 1, 'https://ror.org/05jmd4043 Hospital Universitario Son Espases'),
(94705, 'https://ror.org/05jmp0y43', 'en', 1, 'https://ror.org/05jmp0y43 PSP Association'),
(94706, 'https://ror.org/05jmtyh46', 'es', 1, 'https://ror.org/05jmtyh46 Hospital Provincial Universitario Cardiocentro "Ernesto Che Guevara"'),
(94707, 'https://ror.org/05jv39n43', 'fr', 1, 'https://ror.org/05jv39n43 ComitƩ National des Interprofessions des Vins Ơ Appellation d''Origine'),
(94708, 'https://ror.org/05jvhyf45', 'no_lang_code', 0, 'https://ror.org/05jvhyf45 Blue Marble Game (United States)'),
(94709, 'https://ror.org/05jw4wg66', 'en', 1, 'https://ror.org/05jw4wg66 Cerebral Palsy Research Network'),
(94710, 'https://ror.org/05jx58n20', 'en', 1, 'https://ror.org/05jx58n20 Indonesian Bakti University of Banyuwangi Universitas Bakti Indonesia'),
(94711, 'https://ror.org/05k07f122', 'es', 1, 'https://ror.org/05k07f122 Instituto Franco-Argentino sobre Estudios de Clima y sus Impactos'),
(94712, 'https://ror.org/05k0bd539', 'es', 1, 'https://ror.org/05k0bd539 Universidad Nacional de la PolicĆ­a de Honduras'),
(94713, 'https://ror.org/05k17x772', 'de', 1, 'https://ror.org/05k17x772 Hochschule der Polizei des Landes Brandenburg'),
(94714, 'https://ror.org/05k1kjv94', 'no_lang_code', 0, 'https://ror.org/05k1kjv94 MDA Information Systems (United States)'),
(94715, 'https://ror.org/05k34t975', 'no_lang_code', 1, 'https://ror.org/05k34t975 Illumina (United States)'),
(94716, 'https://ror.org/05k6h9r09', 'no_lang_code', 1, 'https://ror.org/05k6h9r09 Samsung Medison (South Korea) 삼성 ė©”ė””ģŠØ'),
(94717, 'https://ror.org/05k89ew48', 'en', 1, 'https://ror.org/05k89ew48 University of Jordan الجامعة Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(94718, 'https://ror.org/05k8wg936', 'en', 1, 'https://ror.org/05k8wg936 Genome Institute of Singapore'),
(94719, 'https://ror.org/05kacnm89', 'en', 1, 'https://ror.org/05kacnm89 Central University of Venezuela Universidad Central de Venezuela'),
(94720, 'https://ror.org/05kajrf08', 'no_lang_code', 1, 'https://ror.org/05kajrf08 Aircraft Industries (Czechia)'),
(94721, 'https://ror.org/05kams409', 'no_lang_code', 1, 'https://ror.org/05kams409 Novalex Therapeutics (United States)'),
(94722, 'https://ror.org/05kb98h43', 'en', 1, 'https://ror.org/05kb98h43 EcoNexus'),
(94723, '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'),
(94724, 'https://ror.org/05khk0h97', 'tr', 1, 'https://ror.org/05khk0h97 Mudanya University Mudanya Üniversitesi'),
(94725, 'https://ror.org/05kjchg44', 'en', 0, 'https://ror.org/05kjchg44 Ara Parseghian Medical Research Foundation'),
(94726, 'https://ror.org/05km1xm91', 'es', 1, 'https://ror.org/05km1xm91 Mayagüez Medical Center'),
(94727, 'https://ror.org/05knsc956', 'en', 1, 'https://ror.org/05knsc956 Parc national de l''Ǝle-du-Prince-Ɖdouard Prince Edward Island National Park'),
(94728, 'https://ror.org/05kpy7q29', 'en', 1, 'https://ror.org/05kpy7q29 Shiga Medical Center ę»‹č³€åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(94729, 'https://ror.org/05kt43w73', 'fr', 0, 'https://ror.org/05kt43w73 Chimie Organique, MƩdicinale et Extractive et Toxicologie ExpƩrimentale'),
(94730, 'https://ror.org/05kx3hd68', 'en', 1, 'https://ror.org/05kx3hd68 Group Health Cooperative'),
(94731, 'https://ror.org/05kxxr655', 'en', 1, 'https://ror.org/05kxxr655 Cotton Research and Development Corporation'),
(94732, 'https://ror.org/05m0xgf85', 'en', 1, 'https://ror.org/05m0xgf85 European Parkinsons Disease Association'),
(94733, '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 Ī”Ī¹ĪŗĪ±ĻƒĻ„Ī®ĻĪ¹Īæ της Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĪ®Ļ‚ ĪˆĪ½Ļ‰ĻƒĪ·Ļ‚ ДъГ на Š•Š²Ń€Š¾ŠæŠµŠ¹ŃŠŗŠøŃ ŃŃŠŃŽŠ·'),
(94734, 'https://ror.org/05m2ea140', 'en', 1, 'https://ror.org/05m2ea140 Saint Kitts and Nevis Bureau of Standards'),
(94735, 'https://ror.org/05m4jv490', 'en', 0, 'https://ror.org/05m4jv490 NHL Hogeschool NHL University of Applied Sciences'),
(94736, 'https://ror.org/05m8qn763', 'en', 1, 'https://ror.org/05m8qn763 Uniwersytet WSB Merito Wrocław WSB Merito University in Wroclaw'),
(94737, 'https://ror.org/05m8t8e28', 'cs', 1, 'https://ror.org/05m8t8e28 Agentura Pro Zdravotnický Výzkum České Republiky'),
(94738, 'https://ror.org/05mgwem27', 'de', 1, 'https://ror.org/05mgwem27 Botanische Staatssammlung München'),
(94739, 'https://ror.org/05mh85j20', 'fr', 1, 'https://ror.org/05mh85j20 Institut Universitaire Quisqueya-AmƩrique'),
(94740, 'https://ror.org/05mmjvv12', 'fr', 1, 'https://ror.org/05mmjvv12 Institut de Recherche Interdisciplinaire en Sciences Sociales'),
(94741, '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зербайГжанский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет ŠŠµŃ„Ń‚Šø Šø ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(94742, 'https://ror.org/05mrff007', 'en', 1, 'https://ror.org/05mrff007 Institut za javnu upravu Institute of Public Administration'),
(94743, 'https://ror.org/05mtjss49', 'en', 0, 'https://ror.org/05mtjss49 Ecology and Ecosystem Health Ɖcologie et santĆ© de l''Ć©cosystĆØme'),
(94744, 'https://ror.org/05mv4rb84', 'en', 1, 'https://ror.org/05mv4rb84 College ter Beoordeling van Geneesmiddelen Medicines Evaluation Board'),
(94745, 'https://ror.org/05n09v162', 'en', 1, 'https://ror.org/05n09v162 Digital Research Infrastructure for the Arts and Humanities'),
(94746, 'https://ror.org/05n0dzw16', 'es', 1, 'https://ror.org/05n0dzw16 Instituto Nacional de Tecnología, Normalización y Metrología'),
(94747, 'https://ror.org/05n0meg65', 'de', 1, 'https://ror.org/05n0meg65 Neue Materialien Fürth GmbH'),
(94748, 'https://ror.org/05n1ym881', 'de', 1, 'https://ror.org/05n1ym881 Kirchliche Hochschule Wuppertal'),
(94749, 'https://ror.org/05n25nw52', 'fr', 1, 'https://ror.org/05n25nw52 RƩseau QuƩbec maritime'),
(94750, 'https://ror.org/05n2c8735', 'en', 1, 'https://ror.org/05n2c8735 European Genomic Institute for Diabetes'),
(94751, 'https://ror.org/05n486907', 'en', 1, 'https://ror.org/05n486907 Catholic Kwandong University ź°€ķ†Øė¦­ź“€ė™ėŒ€ķ•™źµ'),
(94752, 'https://ror.org/05n6g4g57', 'en', 1, 'https://ror.org/05n6g4g57 South Campus Community School'),
(94753, 'https://ror.org/05n6xve17', 'en', 1, 'https://ror.org/05n6xve17 Edward Waters University'),
(94754, 'https://ror.org/05nahnj25', 'en', 1, 'https://ror.org/05nahnj25 University of Timbuktu'),
(94755, 'https://ror.org/05nak5030', 'no', 1, 'https://ror.org/05nak5030 Stortinget'),
(94756, 'https://ror.org/05nb5x242', 'no_lang_code', 1, 'https://ror.org/05nb5x242 ProbaYes (France)'),
(94757, 'https://ror.org/05nc65f65', 'no_lang_code', 1, 'https://ror.org/05nc65f65 Team HF'),
(94758, 'https://ror.org/05nf9by90', 'en', 1, 'https://ror.org/05nf9by90 Hutton''s Shearwater Charitable Trust'),
(94759, 'https://ror.org/05ngpb650', 'en', 1, 'https://ror.org/05ngpb650 Aljanad University for Science and Technology Ų¬Ų§Ł…Ų¹Ų© الجند Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(94760, 'https://ror.org/05njb9z20', 'en', 1, 'https://ror.org/05njb9z20 University of Ljubljana Univerza v Ljubljani'),
(94761, 'https://ror.org/05njkjr15', 'en', 1, 'https://ror.org/05njkjr15 NIHR Manchester Biomedical Research Centre'),
(94762, 'https://ror.org/05nkper64', 'en', 1, 'https://ror.org/05nkper64 State Committee for Standardization of the Republic of Belarus Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ комитет по станГартизации Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ Š”Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŠŗŠ°Š¼Ń–Ń‚ŃŃ‚ па станГартызацыі Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(94763, 'https://ror.org/05nmttp70', 'en', 1, 'https://ror.org/05nmttp70 Comisión Nacional de Actividades Espaciales National Space Activities Commission'),
(94764, 'https://ror.org/05nnv1197', 'en', 1, 'https://ror.org/05nnv1197 Institute of Applied Physics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной физики Российской акаГемии наук'),
(94765, 'https://ror.org/05nswdr94', 'de', 1, 'https://ror.org/05nswdr94 Wasserstraßen-Neubauamt Magdeburg'),
(94766, 'https://ror.org/05ntpq911', 'en', 0, 'https://ror.org/05ntpq911 Carlos III Hospital'),
(94767, 'https://ror.org/05nx3r660', 'en', 1, 'https://ror.org/05nx3r660 Franciscan Missionaries of Our Lady University'),
(94768, 'https://ror.org/05p17m418', 'en', 1, 'https://ror.org/05p17m418 Babel University Professional School of Translation'),
(94769, 'https://ror.org/05p2jnd10', 'en', 1, 'https://ror.org/05p2jnd10 Hibernia College'),
(94770, 'https://ror.org/05p3n6281', 'en', 1, 'https://ror.org/05p3n6281 Department for Infrastructure'),
(94771, 'https://ror.org/05p3z3a83', 'en', 1, 'https://ror.org/05p3z3a83 Sohail University'),
(94772, 'https://ror.org/05p48mp61', 'de', 1, 'https://ror.org/05p48mp61 Sachverständigenrat für Umweltfragen'),
(94773, 'https://ror.org/05p4bpw44', 'en', 1, 'https://ror.org/05p4bpw44 Pfeiffer University at Charlotte'),
(94774, 'https://ror.org/05p5eax82', 'no_lang_code', 1, 'https://ror.org/05p5eax82 ArianeGroup (France)'),
(94775, 'https://ror.org/05p6qqk79', 'en', 0, 'https://ror.org/05p6qqk79 Tammerfors universitet Tampereen yliopisto University of Tampere'),
(94776, 'https://ror.org/05p6vdy67', 'es', 1, 'https://ror.org/05p6vdy67 Instituto Multidisciplinario de BiologĆ­a Celular'),
(94777, 'https://ror.org/05p9py079', 'en', 1, 'https://ror.org/05p9py079 Botswana Bureau of Standards'),
(94778, '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'),
(94779, 'https://ror.org/05pb5be67', 'no_lang_code', 1, 'https://ror.org/05pb5be67 Tunnell Consulting'),
(94780, 'https://ror.org/05pbd2t84', 'de', 1, 'https://ror.org/05pbd2t84 Wasserstraßen- und Schifffahrtsamt Westdeutsche Kanäle'),
(94781, 'https://ror.org/05pcmvg29', 'de', 1, 'https://ror.org/05pcmvg29 Federation of German Scientists Verantwortung in der Wissenschaft'),
(94782, 'https://ror.org/05pczfw42', 'en', 1, 'https://ror.org/05pczfw42 Mandai Wildlife Group'),
(94783, 'https://ror.org/05pczjj75', 'pt', 1, 'https://ror.org/05pczjj75 Infarmed'),
(94784, 'https://ror.org/05phwew21', 'en', 1, 'https://ror.org/05phwew21 Scott Christian University'),
(94785, 'https://ror.org/05pjxvx20', 'en', 1, 'https://ror.org/05pjxvx20 American College of Rheumatology'),
(94786, 'https://ror.org/05pk8mf19', 'en', 1, 'https://ror.org/05pk8mf19 Department of Agriculture and Rural Development'),
(94787, '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'),
(94788, 'https://ror.org/05ppk0267', 'es', 1, 'https://ror.org/05ppk0267 Universidad Autónoma de Guadalajara'),
(94789, 'https://ror.org/05pqp2e86', 'no_lang_code', 1, 'https://ror.org/05pqp2e86 Vrana GmbH (Germany)'),
(94790, 'https://ror.org/05pt1d114', 'en', 1, 'https://ror.org/05pt1d114 Kinship Conservation Fellows'),
(94791, 'https://ror.org/05pwhmm02', 'en', 1, 'https://ror.org/05pwhmm02 National Research Fund Kenya'),
(94792, 'https://ror.org/05pxfr638', 'en', 0, 'https://ror.org/05pxfr638 State Oceanic Administration 国家海擋局'),
(94793, 'https://ror.org/05pyeem08', 'id', 1, 'https://ror.org/05pyeem08 Garut Institute of Technology Institut Teknologi Garut'),
(94794, 'https://ror.org/05pyptk85', 'en', 1, 'https://ror.org/05pyptk85 Linda Vista University Universidad Linda Vista'),
(94795, 'https://ror.org/05pyptt64', 'no_lang_code', 1, 'https://ror.org/05pyptt64 Tbilisi University Metekhi'),
(94796, 'https://ror.org/05q23fv46', 'en', 1, 'https://ror.org/05q23fv46 American Graduate University'),
(94797, 'https://ror.org/05q2pmx71', 'no_lang_code', 1, 'https://ror.org/05q2pmx71 Bioron'),
(94798, 'https://ror.org/05q2q3076', 'en', 1, 'https://ror.org/05q2q3076 Medical Research Foundation'),
(94799, 'https://ror.org/05q3scx19', 'en', 1, 'https://ror.org/05q3scx19 Dyersburg State Community College'),
(94800, 'https://ror.org/05q54d222', 'en', 1, 'https://ror.org/05q54d222 The National Brain Appeal'),
(94801, 'https://ror.org/05q5t9h95', 'en', 1, 'https://ror.org/05q5t9h95 Shebin Teaching Hospital'),
(94802, 'https://ror.org/05q5zzn71', 'en', 1, 'https://ror.org/05q5zzn71 White Sands Test Facility'),
(94803, 'https://ror.org/05q79g396', 'en', 1, 'https://ror.org/05q79g396 Infrared Processing and Analysis Center'),
(94804, 'https://ror.org/05q8d3662', 'fr', 1, 'https://ror.org/05q8d3662 Nuclear Organization and Oncogenesis Organisation Nucléaire et Oncogenèse'),
(94805, 'https://ror.org/05q92br09', 'en', 1, 'https://ror.org/05q92br09 Jeonbuk National University ģ „ė¶ėŒ€ķ•™źµ'),
(94806, 'https://ror.org/05qc18f66', 'en', 1, 'https://ror.org/05qc18f66 V.I. Il''ichev Pacific Oceanological Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Тихоокеанский океанологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.И.Š˜Š»ŃŒŠøŃ‡ŠµŠ²Š° Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(94807, 'https://ror.org/05qc49402', 'en', 1, 'https://ror.org/05qc49402 Central Louisiana Community College'),
(94808, 'https://ror.org/05qetrn02', 'it', 1, 'https://ror.org/05qetrn02 Fondazione Ri.MED, Ri.MED'),
(94809, 'https://ror.org/05qfq0x09', 'en', 1, 'https://ror.org/05qfq0x09 Hunan University of Traditional Chinese Medicine ę¹–å—äø­åŒ»čÆå¤§å­¦'),
(94810, 'https://ror.org/05qha6z89', 'en', 1, 'https://ror.org/05qha6z89 Infocomm Media Development Authority Penguasa Pembangunan Infokom Media č³‡čØŠé€šäæ”åŖ’é«”ē™¼å±•å±€'),
(94811, 'https://ror.org/05qjftn62', 'en', 1, 'https://ror.org/05qjftn62 Pacific Rim National Park Reserve RƩserve de parc national Pacific Rim'),
(94812, 'https://ror.org/05qjnd304', 'es', 0, 'https://ror.org/05qjnd304 Universidad Interamericana de Costa Rica'),
(94813, 'https://ror.org/05qkcsb49', 'en', 1, 'https://ror.org/05qkcsb49 Mayekawa Houonkai Foundation å…¬ē›Šč²”å›£ę³•äŗŗ å‰å·å ±ę©ä¼š'),
(94814, 'https://ror.org/05qkjwz87', 'de', 1, 'https://ror.org/05qkjwz87 Evangelisches Klinikum Niederrhei'),
(94815, 'https://ror.org/05qkzsf63', 'no_lang_code', 1, 'https://ror.org/05qkzsf63 Arcadis (Czechia)'),
(94816, 'https://ror.org/05qm04q50', 'no_lang_code', 1, 'https://ror.org/05qm04q50 Aptiv (France)'),
(94817, 'https://ror.org/05qnkj795', 'fr', 1, 'https://ror.org/05qnkj795 UniversitƩ Cardinal Malula'),
(94818, 'https://ror.org/05qqsw426', 'en', 0, 'https://ror.org/05qqsw426 Aoyama Hospital Tokyo Women’s Medical University ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦é™„å±žé’å±±ē—…é™¢'),
(94819, 'https://ror.org/05qs2vf43', 'no_lang_code', 0, 'https://ror.org/05qs2vf43 SC IPA SA (Romania)'),
(94820, 'https://ror.org/05qtmqh81', 'es', 1, 'https://ror.org/05qtmqh81 Universidad Loyola de AmƩrica'),
(94821, 'https://ror.org/05qtybq80', 'en', 1, 'https://ror.org/05qtybq80 U.S. Geological Survey, Wetland and Aquatic Research Center'),
(94822, 'https://ror.org/05qvd2e93', 'tr', 1, 'https://ror.org/05qvd2e93 Taksim Eğitim ve Araştırma Hastanesi'),
(94823, 'https://ror.org/05qvm1p98', 'en', 1, 'https://ror.org/05qvm1p98 Polish Air Force Academy Wyższa Szkoła Oficerska Sił Powietrznych'),
(94824, 'https://ror.org/05qx54k29', 'en', 1, 'https://ror.org/05qx54k29 Colorado Water Conservation Board'),
(94825, 'https://ror.org/05qyye271', 'en', 0, 'https://ror.org/05qyye271 Geophysical Laboratory'),
(94826, 'https://ror.org/05qze6v15', 'en', 1, 'https://ror.org/05qze6v15 Odessa National Maritime University ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Š¼Š¾Ń€ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(94827, 'https://ror.org/05r11v294', 'en', 1, 'https://ror.org/05r11v294 Arizona Game and Fish Department'),
(94828, 'https://ror.org/05r1zgk22', 'es', 1, 'https://ror.org/05r1zgk22 Sociedad EspaƱola de Oncologƭa MƩdica'),
(94829, 'https://ror.org/05r3a8v08', 'en', 0, 'https://ror.org/05r3a8v08 Texas Tech University'),
(94830, 'https://ror.org/05r3yzw86', 'es', 1, 'https://ror.org/05r3yzw86 Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona'),
(94831, 'https://ror.org/05r4nm410', 'en', 1, 'https://ror.org/05r4nm410 Tibet Autonomous Region Science and Technology Agency č„æč—č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(94832, 'https://ror.org/05r4t3s90', 'de', 1, 'https://ror.org/05r4t3s90 Canton d''Argovie Canton of Argau Kanton Aargau'),
(94833, 'https://ror.org/05r5c7c30', 'en', 1, 'https://ror.org/05r5c7c30 National Institute on Disability, Independent Living, and Rehabilitation Research'),
(94834, 'https://ror.org/05r6j0v30', 'en', 1, 'https://ror.org/05r6j0v30 Savonlinna Central Hospital Savonlinnan keskussairaala'),
(94835, 'https://ror.org/05r7c5x85', 'en', 1, 'https://ror.org/05r7c5x85 European University of Tirana Universiteti Europian i Tiranƫs'),
(94836, 'https://ror.org/05r8ceg90', 'en', 1, 'https://ror.org/05r8ceg90 University of Islamic Studies'),
(94837, 'https://ror.org/05r9c7f43', 'en', 1, 'https://ror.org/05r9c7f43 Berkeley Public Health Division'),
(94838, 'https://ror.org/05r9vkr23', 'en', 1, 'https://ror.org/05r9vkr23 Fondation Richard-Lounsbery Richard Lounsbery Foundation'),
(94839, 'https://ror.org/05rbd6k73', 'en', 1, 'https://ror.org/05rbd6k73 Regional Research Centres Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Šµ Š½Š°ŃƒŃ‡Š½Ń‹Šµ центры Российской акаГемии наук'),
(94840, 'https://ror.org/05rcjak97', 'en', 1, 'https://ror.org/05rcjak97 Biblioteka Narodowa National Library of Poland'),
(94841, 'https://ror.org/05rf37997', 'fr', 1, 'https://ror.org/05rf37997 IPC – FacultĆ©s Libres de Philosophie et de Psychologie'),
(94842, 'https://ror.org/05rgrbr06', 'en', 1, 'https://ror.org/05rgrbr06 Dana-Farber Brigham Cancer Center'),
(94843, 'https://ror.org/05rjdm522', 'en', 0, 'https://ror.org/05rjdm522 Research & Development Corporation'),
(94844, 'https://ror.org/05rkv2e91', 'fr', 1, 'https://ror.org/05rkv2e91 Philosophie, Histoire et Analyse des ReprĆ©sentations Ɖconomiques'),
(94845, 'https://ror.org/05rpdjf12', 'en', 1, 'https://ror.org/05rpdjf12 Kluane National Park and Reserve Parc national et rƩserve de parc national Kluane'),
(94846, 'https://ror.org/05rs59t70', 'en', 1, 'https://ror.org/05rs59t70 Gulf Coast Ecosystem Restoration Council'),
(94847, 'https://ror.org/05rsyz291', 'es', 1, 'https://ror.org/05rsyz291 Universidad Potosina'),
(94848, 'https://ror.org/05rt1m861', 'no_lang_code', 0, 'https://ror.org/05rt1m861 Repros Therapeutics (United States)'),
(94849, 'https://ror.org/05rth8x13', 'fr', 1, 'https://ror.org/05rth8x13 Agence de la transition Ʃcologique French Agency for Ecological Transition'),
(94850, 'https://ror.org/05rvdw046', 'en', 1, 'https://ror.org/05rvdw046 Ministry of Energy ×ž×©×Ø×“ התשתיות ×”×œ××•×ž×™×•×Ŗ, האנרגיה והמים'),
(94851, 'https://ror.org/05rw01c09', 'de', 1, 'https://ror.org/05rw01c09 Institut für Oberflächen- und Schichtanalytik GmbH'),
(94852, 'https://ror.org/05rxnta87', 'en', 1, 'https://ror.org/05rxnta87 Institut für Angewandte Sprachforschung Institute for Applied Linguistics Istituto di linguistica applicata'),
(94853, 'https://ror.org/05s0s0h39', 'no_lang_code', 1, 'https://ror.org/05s0s0h39 Boehringer Ingelheim (Spain)'),
(94854, 'https://ror.org/05s10bc95', 'de', 1, 'https://ror.org/05s10bc95 Institut für Ostrecht Institute for East European Law'),
(94855, 'https://ror.org/05s501w59', 'en', 1, 'https://ror.org/05s501w59 Westpac Scholars Trust'),
(94856, 'https://ror.org/05s5h0e62', 'en', 1, 'https://ror.org/05s5h0e62 Gƶran Gustafsson Foundation'),
(94857, 'https://ror.org/05s6t3255', 'en', 1, 'https://ror.org/05s6t3255 Food Packaging Forum Foundation'),
(94858, 'https://ror.org/05s7cqk18', 'en', 1, 'https://ror.org/05s7cqk18 Division of Research on Learning in Formal and Informal Settings'),
(94859, 'https://ror.org/05s7dz794', 'en', 0, 'https://ror.org/05s7dz794 International Union Against Tuberculosis and Lung Disease'),
(94860, 'https://ror.org/05s89mm67', 'es', 1, 'https://ror.org/05s89mm67 Universidad de Ciencias MƩdicas de Cienfuegos'),
(94861, 'https://ror.org/05s8p6g93', 'en', 1, 'https://ror.org/05s8p6g93 Sant Gadge Baba Amravati University ą¤…ą¤®ą¤°ą¤¾ą¤µą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(94862, 'https://ror.org/05sb0mt20', 'no_lang_code', 1, 'https://ror.org/05sb0mt20 Berkeley Systems (United States)'),
(94863, 'https://ror.org/05scd7d31', 'en', 1, 'https://ror.org/05scd7d31 Swedish American Hospital'),
(94864, 'https://ror.org/05sdhta47', 'en', 1, 'https://ror.org/05sdhta47 Australasian Lung Cancer Trials Group'),
(94865, 'https://ror.org/05sfnze82', 'en', 1, 'https://ror.org/05sfnze82 Chinese Society of Clinical Oncology äø­å›½äø“åŗŠč‚æē˜¤å­¦ä¼š'),
(94866, 'https://ror.org/05sfxp371', 'es', 1, 'https://ror.org/05sfxp371 Centro de Investigación de Polímeros Avanzados'),
(94867, 'https://ror.org/05sgw3s08', 'en', 1, 'https://ror.org/05sgw3s08 Tashkent Medical Academy Toshkent Tibbiyot Akademiyasi'),
(94868, 'https://ror.org/05sjeet64', 'en', 1, 'https://ror.org/05sjeet64 City of Liverpool College, Liverpool Community College'),
(94869, 'https://ror.org/05sqvvk08', 'en', 1, 'https://ror.org/05sqvvk08 Museum of Bagpipes in Strakonice Muzeum střednĆ­ho PootavĆ­ Strakonice'),
(94870, 'https://ror.org/05srt5c29', 'en', 1, 'https://ror.org/05srt5c29 Australian Society of Herpetologists'),
(94871, 'https://ror.org/05syjm342', 'en', 1, 'https://ror.org/05syjm342 Edmonton Community Foundation'),
(94872, 'https://ror.org/05syjtj03', 'en', 0, 'https://ror.org/05syjtj03 North York General Hospital'),
(94873, 'https://ror.org/05syseh24', 'en', 1, 'https://ror.org/05syseh24 Deniz Harp Okulu Naval Academy'),
(94874, 'https://ror.org/05sz4ta21', 'en', 1, 'https://ror.org/05sz4ta21 Quitman County School District'),
(94875, 'https://ror.org/05sz9gw20', 'en', 1, 'https://ror.org/05sz9gw20 Fraunhofer USA Center Mid-Atlantic CMA'),
(94876, 'https://ror.org/05szd5318', 'en', 1, 'https://ror.org/05szd5318 Colorado Mountain Club Foundation'),
(94877, 'https://ror.org/05szqz470', 'en', 0, 'https://ror.org/05szqz470 National Institute of Radiological Sciences ę”¾å°„ē·šåŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(94878, 'https://ror.org/05t0v7d07', 'en', 1, 'https://ror.org/05t0v7d07 Iowa Department of Transportation'),
(94879, 'https://ror.org/05t1dtb26', 'no_lang_code', 1, 'https://ror.org/05t1dtb26 Nexans (United States)'),
(94880, 'https://ror.org/05t1q2n98', 'en', 1, 'https://ror.org/05t1q2n98 European College of Economics and Management Европейско висше ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ по икономика Šø Š¼ŠµŠ½ŠøŠ“Š¶Š¼ŃŠŠ½Ń‚'),
(94881, 'https://ror.org/05t374r75', 'en', 1, 'https://ror.org/05t374r75 Durst Group AG (Italy)'),
(94882, 'https://ror.org/05t3dfy66', 'da', 1, 'https://ror.org/05t3dfy66 Hartmann Fonden'),
(94883, 'https://ror.org/05t43a661', 'en', 1, 'https://ror.org/05t43a661 Czech Association of Occupational Therapists ČeskÔ asociace ergoterapeutů'),
(94884, 'https://ror.org/05t5n0v36', 'no_lang_code', 1, 'https://ror.org/05t5n0v36 HREA'),
(94885, 'https://ror.org/05t6bvd33', 'en', 1, 'https://ror.org/05t6bvd33 Vancouver Film School'),
(94886, 'https://ror.org/05t7j3v51', 'en', 1, 'https://ror.org/05t7j3v51 Tajikistan Humanitarian International University'),
(94887, 'https://ror.org/05tbp1g38', 'de', 1, 'https://ror.org/05tbp1g38 Zeppelin Universität, Zeppelin Universität gemeinnützige GmbH'),
(94888, 'https://ror.org/05tcasm11', 'no_lang_code', 1, 'https://ror.org/05tcasm11 National Infrastructures for Research and Technology -  GRNET S.A Ī•ĪøĪ½Ī¹ĪŗĻŒ Δίκτυο Ī„Ļ€ĪæĪ“ĪæĪ¼ĻŽĪ½ Τεχνολογίας και ĪˆĻĪµĻ…Ī½Ī±Ļ‚ Ī‘.Ī•. – GRNET'),
(94889, '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 المعهد Ų§Ł„ŲØŲ§ŲØŁˆŁŠ للدراسات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© ŁˆŲ§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠ'),
(94890, 'https://ror.org/05tdc8560', 'id', 1, 'https://ror.org/05tdc8560 Institut Teknologi PLN'),
(94891, 'https://ror.org/05tegpz81', 'fr', 1, 'https://ror.org/05tegpz81 ISTOM - Ɖcole supĆ©rieure d''agro-dĆ©veloppement international'),
(94892, 'https://ror.org/05tew9254', 'en', 1, 'https://ror.org/05tew9254 Center for Policy Analysis'),
(94893, 'https://ror.org/05tfzsp63', 'no_lang_code', 1, 'https://ror.org/05tfzsp63 Clinical Gene Networks (Sweden)'),
(94894, 'https://ror.org/05tg3y165', 'en', 1, 'https://ror.org/05tg3y165 Eastern Shore Community College'),
(94895, 'https://ror.org/05th1v540', 'en', 1, 'https://ror.org/05th1v540 Bavarian Natural History Collections Staatliche Naturwissenschaftliche Sammlungen Bayerns'),
(94896, 'https://ror.org/05thfhs30', 'pt', 1, 'https://ror.org/05thfhs30 CETESB - Companhia Ambiental do Estado de SĆ£o Paulo'),
(94897, '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'),
(94898, 'https://ror.org/05tjhqa05', 'en', 1, 'https://ror.org/05tjhqa05 Administration for Strategic Preparedness and Response'),
(94899, 'https://ror.org/05tjjsh18', 'en', 1, 'https://ror.org/05tjjsh18 National University Health System å›½ē«‹å¤§å­¦åŒ»å­¦ē»„ē»‡'),
(94900, 'https://ror.org/05tkmkr12', 'en', 1, 'https://ror.org/05tkmkr12 Negaunee Foundation'),
(94901, 'https://ror.org/05tkycb73', 'fi', 1, 'https://ror.org/05tkycb73 Maanmittauslaitos'),
(94902, 'https://ror.org/05tmhg912', 'en', 1, 'https://ror.org/05tmhg912 Artha Wacana Christian University Universitas Kristen Artha Wacana'),
(94903, 'https://ror.org/05tn5kf55', 'en', 1, 'https://ror.org/05tn5kf55 Peter G. Peterson Foundation'),
(94904, 'https://ror.org/05tn8z305', 'en', 1, 'https://ror.org/05tn8z305 National Institute Of Blood Disease and Bone Marrow Transplantation'),
(94905, 'https://ror.org/05tp92v87', 'en', 1, 'https://ror.org/05tp92v87 Industrial Property Office ĆšÅ™ad prÅÆmyslovĆ©ho vlastnictvĆ­'),
(94906, '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'),
(94907, 'https://ror.org/05tqs2r80', 'no_lang_code', 0, 'https://ror.org/05tqs2r80 Bioptigen (United States)'),
(94908, 'https://ror.org/05tqsdp97', 'fr', 1, 'https://ror.org/05tqsdp97 Bureau des Longitudes'),
(94909, 'https://ror.org/05tr94j30', 'en', 1, 'https://ror.org/05tr94j30 Kunming Municipal Hospital of Traditional Chinese Medicine'),
(94910, 'https://ror.org/05trnbe45', 'fr', 1, 'https://ror.org/05trnbe45 Terres Australes et Antarctiques FranƧaises'),
(94911, 'https://ror.org/05ts9tv79', 'en', 1, 'https://ror.org/05ts9tv79 Manatū Aorere Ministry of Foreign Affairs and Trade'),
(94912, 'https://ror.org/05txczf44', 'en', 1, 'https://ror.org/05txczf44 Leibniz Institute for Applied Geophysics Leibniz-Institut für Angewandte Geophysik'),
(94913, 'https://ror.org/05tz9r773', 'en', 1, 'https://ror.org/05tz9r773 Drejtoria e Pƫrgjithshme e Metrologjisƫ General Directorate of Metrology and Calibration'),
(94914, 'https://ror.org/05v0pa259', 'en', 1, 'https://ror.org/05v0pa259 Periféria Közpolitikai és Kutatóközpont Periféria Policy and Research Center'),
(94915, 'https://ror.org/05v0sks95', 'en', 1, 'https://ror.org/05v0sks95 UT Health Austin'),
(94916, 'https://ror.org/05v0y3m60', 'en', 1, 'https://ror.org/05v0y3m60 Maine Department of Transportation'),
(94917, 'https://ror.org/05v14bq57', 'en', 1, 'https://ror.org/05v14bq57 NOAA Office for Coastal Management'),
(94918, 'https://ror.org/05v2yzm02', 'no_lang_code', 1, 'https://ror.org/05v2yzm02 Anax Laboratories (India)'),
(94919, 'https://ror.org/05v30a202', 'en', 1, 'https://ror.org/05v30a202 American Institute of Architecture Students'),
(94920, 'https://ror.org/05v40k847', 'es', 1, 'https://ror.org/05v40k847 Ministerio de Cultura y Deporte'),
(94921, 'https://ror.org/05v6nhz77', 'no_lang_code', 0, 'https://ror.org/05v6nhz77 Osram Opto Semiconductors'),
(94922, 'https://ror.org/05v75r592', 'en', 1, 'https://ror.org/05v75r592 Hellenic Foundation for Research and Innovation Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪˆĻĪµĻ…Ī½Ī±Ļ‚ & ĪšĪ±Ī¹Ī½ĪæĻ„ĪæĪ¼ĪÆĪ±Ļ‚'),
(94923, 'https://ror.org/05v8qr640', 'en', 1, 'https://ror.org/05v8qr640 International Communication Association'),
(94924, 'https://ror.org/05varta73', 'en', 1, 'https://ror.org/05varta73 Cystinosis Ireland'),
(94925, 'https://ror.org/05vas4792', 'es', 1, 'https://ror.org/05vas4792 Fundación de Historia Natural Félix de Azara'),
(94926, 'https://ror.org/05vbwqf43', 'en', 1, 'https://ror.org/05vbwqf43 The Kempe Foundation'),
(94927, 'https://ror.org/05ve9ya07', 'no_lang_code', 1, 'https://ror.org/05ve9ya07 Onex (United States)'),
(94928, 'https://ror.org/05vkxf738', 'pt', 1, 'https://ror.org/05vkxf738 Conselho Nacional das FundaƧƵes Estaduais de Amparo Ơ Pesquisa'),
(94929, 'https://ror.org/05vp4an32', 'en', 1, 'https://ror.org/05vp4an32 Shanxi Science and Technology Department'),
(94930, 'https://ror.org/05vqkgf08', 'fr', 1, 'https://ror.org/05vqkgf08 Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde'),
(94931, 'https://ror.org/05vt4py39', 'en', 1, 'https://ror.org/05vt4py39 Merle Chambers Fund'),
(94932, 'https://ror.org/05vv3j050', 'en', 1, 'https://ror.org/05vv3j050 South African Society for Animal Science Suid-Afrikaanse Vereeniging vir Dierkunde'),
(94933, 'https://ror.org/05vw05p26', 'en', 1, 'https://ror.org/05vw05p26 National Wildlife Research Center'),
(94934, 'https://ror.org/05vx6cn88', 'en', 0, 'https://ror.org/05vx6cn88 Uniting Against Lung Cancer'),
(94935, 'https://ror.org/05vydvf11', 'en', 1, 'https://ror.org/05vydvf11 Statistical Service İstatistiki Servis'),
(94936, 'https://ror.org/05w2mtm47', 'ro', 1, 'https://ror.org/05w2mtm47 Universitatea Europeană Drăgan'),
(94937, 'https://ror.org/05w4k0v76', 'es', 1, 'https://ror.org/05w4k0v76 Instituto Cubano de Oftalmología "Ramón Pando Ferrer"'),
(94938, 'https://ror.org/05w4vzs78', 'fr', 1, 'https://ror.org/05w4vzs78 LAMO - LittƩratures Antiques et Modernes'),
(94939, 'https://ror.org/05w520734', 'en', 1, 'https://ror.org/05w520734 Allen Institute for Artificial Intelligence'),
(94940, 'https://ror.org/05w626e73', 'es', 1, 'https://ror.org/05w626e73 Universidad de Montevideo University of Montevideo'),
(94941, 'https://ror.org/05w8avb79', 'de', 1, 'https://ror.org/05w8avb79 Deutsche Gesellschaft für Psychologie e.V. (DGPs)'),
(94942, 'https://ror.org/05w9cdf74', 'no_lang_code', 1, 'https://ror.org/05w9cdf74 Bodycote (United Kingdom)'),
(94943, 'https://ror.org/05weh0w64', 'no_lang_code', 1, 'https://ror.org/05weh0w64 Vita Nuova (United Kingdom)'),
(94944, 'https://ror.org/05wjmdd46', 'en', 1, 'https://ror.org/05wjmdd46 Bureau of Standards, Metrology and Inspection ē¶“ęæŸéƒØęØ™ęŗ–ęŖ¢é©—å±€'),
(94945, 'https://ror.org/05wmchm75', 'fi', 1, 'https://ror.org/05wmchm75 TYKS-sƤƤtiƶ'),
(94946, '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'),
(94947, 'https://ror.org/05wpjpp83', 'en', 1, 'https://ror.org/05wpjpp83 Minnesota Department of Labor and Industry'),
(94948, 'https://ror.org/05wr3m454', 'en', 1, 'https://ror.org/05wr3m454 BAND foundation'),
(94949, 'https://ror.org/05wtz7m27', 'no_lang_code', 1, 'https://ror.org/05wtz7m27 Moravian-Silesian Region Moravskoslezský kraj'),
(94950, 'https://ror.org/05wvz0b04', 'no_lang_code', 1, 'https://ror.org/05wvz0b04 Amgen (China)'),
(94951, 'https://ror.org/05wwwfn44', 'id', 1, 'https://ror.org/05wwwfn44 Rumah Sakit Umum Pusat Dr. Sardjito'),
(94952, 'https://ror.org/05wzabs02', 'fr', 1, 'https://ror.org/05wzabs02 Optimisation ThƩrapeutique en Neuropsychopharmacologie'),
(94953, 'https://ror.org/05x022254', 'en', 0, 'https://ror.org/05x022254 Seton Healthcare Family'),
(94954, 'https://ror.org/05x1fgy66', 'en', 1, 'https://ror.org/05x1fgy66 Hope Africa University UniversitƩ Espoir d''Afrique'),
(94955, 'https://ror.org/05x31w119', 'en', 1, 'https://ror.org/05x31w119 Georgian National Agency for Standards and Metrology įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ¢įƒįƒœįƒ“įƒįƒ įƒ¢įƒ”įƒ‘įƒ˜ įƒ“įƒ įƒ›įƒ”įƒ¢įƒ įƒįƒšįƒįƒ’įƒ˜įƒ'),
(94956, 'https://ror.org/05x3ja451', 'no_lang_code', 0, 'https://ror.org/05x3ja451 RƩseau FerrƩ de France (France)'),
(94957, 'https://ror.org/05x5hj147', 'en', 1, 'https://ror.org/05x5hj147 Technological University Bhamo'),
(94958, 'https://ror.org/05x6abf22', 'de', 1, 'https://ror.org/05x6abf22 Freistaat Thüringen'),
(94959, 'https://ror.org/05xc20j70', 'en', 1, 'https://ror.org/05xc20j70 The US Oncology Network'),
(94960, 'https://ror.org/05xcgsy22', 'en', 1, 'https://ror.org/05xcgsy22 Animal Health Research Institute'),
(94961, 'https://ror.org/05xfjq530', 'de', 1, 'https://ror.org/05xfjq530 Wasserstraßen-Neubauamt Heidelberg'),
(94962, 'https://ror.org/05xgcry12', 'no_lang_code', 1, 'https://ror.org/05xgcry12 Inprentus (United States)'),
(94963, 'https://ror.org/05xh8yr59', 'en', 1, 'https://ror.org/05xh8yr59 University Physicians'),
(94964, 'https://ror.org/05xhkkt06', 'fr', 1, 'https://ror.org/05xhkkt06 Centre Technique Industriel de la Plasturgie et des Composites'),
(94965, 'https://ror.org/05xhmzx41', 'no_lang_code', 1, 'https://ror.org/05xhmzx41 Ube (Japan) å®‡éƒØčˆˆē”£ę Ŗå¼ä¼šē¤¾'),
(94966, 'https://ror.org/05xjsrf96', 'en', 1, 'https://ror.org/05xjsrf96 Society for Science at User Research Facilities'),
(94967, 'https://ror.org/05xkke381', 'en', 1, 'https://ror.org/05xkke381 Keck Institute for Space Studies'),
(94968, 'https://ror.org/05xktrc94', 'no_lang_code', 1, 'https://ror.org/05xktrc94 Amcor (Germany)'),
(94969, 'https://ror.org/05xkxz718', 'en', 1, 'https://ror.org/05xkxz718 Soroti University'),
(94970, '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'),
(94971, 'https://ror.org/05xpbkj44', 'no_lang_code', 1, 'https://ror.org/05xpbkj44 Khemarak University'),
(94972, 'https://ror.org/05xrh8193', 'it', 1, 'https://ror.org/05xrh8193 Fondazione Cassa di Risparmio di Puglia, Fondazione Puglia'),
(94973, 'https://ror.org/05xs0ct17', 'de', 1, 'https://ror.org/05xs0ct17 Fondation Vinetum Stiftung Vinetum'),
(94974, 'https://ror.org/05xvhpk21', 'en', 1, 'https://ror.org/05xvhpk21 Centre for Conservation and Research'),
(94975, 'https://ror.org/05xvk4r52', 'fr', 1, 'https://ror.org/05xvk4r52 Telecom SudParis'),
(94976, 'https://ror.org/05xxbv096', 'es', 1, 'https://ror.org/05xxbv096 Voces de la educación'),
(94977, 'https://ror.org/05xxs2z38', 'es', 1, 'https://ror.org/05xxs2z38 Hospital ClĆ­nico Universitario Virgen de la Victoria'),
(94978, 'https://ror.org/05y07xr60', 'no_lang_code', 1, 'https://ror.org/05y07xr60 Latécoère (Czechia)'),
(94979, 'https://ror.org/05y0y3z70', 'no_lang_code', 1, 'https://ror.org/05y0y3z70 Interventi Geo Ambientali (Italy)'),
(94980, 'https://ror.org/05y3vqm92', 'it', 0, 'https://ror.org/05y3vqm92 Rassegna Sindacale'),
(94981, 'https://ror.org/05y3xcx21', 'no_lang_code', 1, 'https://ror.org/05y3xcx21 Tonami General Hospital åø‚ē«‹ē ŗę³¢ē·åˆē—…é™¢'),
(94982, 'https://ror.org/05y46wh70', 'fr', 1, 'https://ror.org/05y46wh70 Fondation SantƩ des Ʃtudiants de France'),
(94983, 'https://ror.org/05y6c7y19', 'en', 1, 'https://ror.org/05y6c7y19 St. Mary''s University'),
(94984, 'https://ror.org/05y87jv84', 'no_lang_code', 1, 'https://ror.org/05y87jv84 Berkenhoff (Germany)'),
(94985, 'https://ror.org/05y8hw592', 'en', 1, 'https://ror.org/05y8hw592 Ansgar University College Ansgar hĆøyskole'),
(94986, 'https://ror.org/05y9zc593', 'es', 1, 'https://ror.org/05y9zc593 Universidad San Anselmo de Canterbury'),
(94987, 'https://ror.org/05yc49b49', 'fr', 1, 'https://ror.org/05yc49b49 Laboratoire de Chimie et Physique - Approche Multi-Ʃchelle des Milieux Complexes'),
(94988, 'https://ror.org/05ych8012', 'en', 1, 'https://ror.org/05ych8012 Massachusetts Office of Coastal Zone Management'),
(94989, 'https://ror.org/05ycqmp53', 'en', 1, 'https://ror.org/05ycqmp53 Australasian Systematic Botany Society'),
(94990, 'https://ror.org/05yfjjn56', 'es', 1, 'https://ror.org/05yfjjn56 Escuela Superior de Comercio Manuel Belgrano'),
(94991, 'https://ror.org/05yfwpr80', 'es', 1, 'https://ror.org/05yfwpr80 Provincial University of Cordoba Universidad Provincial de Córdoba'),
(94992, 'https://ror.org/05ygyfy76', 'no_lang_code', 1, 'https://ror.org/05ygyfy76 Hill''s Pet Nutrition (United States)'),
(94993, 'https://ror.org/05yhzgv75', 'en', 1, 'https://ror.org/05yhzgv75 Maulana Mukhtar Ahmad Nadvi Technical Campus');
INSERT INTO `rors` VALUES
(94994, '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'),
(94995, 'https://ror.org/05yk4sz92', 'en', 0, 'https://ror.org/05yk4sz92 Western Macedonia University Of Applied Science'),
(94996, 'https://ror.org/05ym69k36', 'en', 1, 'https://ror.org/05ym69k36 Max Planck Graduate Center'),
(94997, 'https://ror.org/05ymr3m21', 'de', 1, 'https://ror.org/05ymr3m21 Vector Stiftung'),
(94998, 'https://ror.org/05yp7vw70', 'fr', 1, 'https://ror.org/05yp7vw70 AcadƩmie de Grenoble'),
(94999, 'https://ror.org/05ypw0993', 'no_lang_code', 1, 'https://ror.org/05ypw0993 JSC Viorica-Cosmetic (Moldova) S.A. ā€žVIORICA-COSMETICā€ А.Šž. Ā«VIORICA-COSMETICĀ»'),
(95000, 'https://ror.org/05yqfsf29', 'es', 1, 'https://ror.org/05yqfsf29 Centro Científico Tecnológico Mar del Plata'),
(95001, 'https://ror.org/000050t83', 'en', 1, 'https://ror.org/000050t83 Electronic Navigation Research Institute é›»å­čˆŖę³•ē ”ē©¶ę‰€'),
(95002, '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'),
(95003, 'https://ror.org/000190731', 'en', 1, 'https://ror.org/000190731 State Key Laboratory of Wireless Communication Access Technology ę— ēŗæé€šäæ”ęŽ„å…„ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95004, 'https://ror.org/0001d8q22', 'fr', 1, 'https://ror.org/0001d8q22 Centre d''Etudes sur le DƩveloppement des Territoires et Environnement'),
(95005, 'https://ror.org/0001h1y25', 'en', 1, 'https://ror.org/0001h1y25 Mary Lyon Centre at MRC Harwell'),
(95006, 'https://ror.org/0001w1758', 'nl', 1, 'https://ror.org/0001w1758 Alliade'),
(95007, 'https://ror.org/0001w5c47', 'no_lang_code', 1, 'https://ror.org/0001w5c47 GMV Innovating Solutions (Spain)'),
(95008, 'https://ror.org/0001zgs18', 'de', 1, 'https://ror.org/0001zgs18 Niedersächsisches Ministerium für Umwelt, Energie und Klimaschutz'),
(95009, 'https://ror.org/00067tc54', 'en', 0, 'https://ror.org/00067tc54 NSW Department of Planning and Environment'),
(95010, 'https://ror.org/000830238', 'en', 1, 'https://ror.org/000830238 Department of Science and Technology, Government of Rajasthan'),
(95011, 'https://ror.org/0008xqs48', 'es', 1, 'https://ror.org/0008xqs48 Bellvitge Biomedical Research Institute Institut d''Investigació Biomédica de Bellvitge'),
(95012, 'https://ror.org/00097mb19', 'en', 1, 'https://ror.org/00097mb19 Japan Science and Technology Agency ē§‘å­¦ęŠ€č”“ęŒÆčˆˆę©Ÿę§‹'),
(95013, 'https://ror.org/0009eea46', 'en', 1, 'https://ror.org/0009eea46 State Key Laboratory of Virtual Reality Technology and Systems č™šę‹ŸēŽ°å®žęŠ€ęœÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95014, 'https://ror.org/0009eec40', 'fr', 1, 'https://ror.org/0009eec40 Laboratoire de Linguistique de Nantes'),
(95015, 'https://ror.org/0009xxz90', 'en', 0, 'https://ror.org/0009xxz90 Technological Educational Institute of Eastern Macedonia and Thrace Ī‘Ī½ĻŽĻ„Ī±Ļ„Īæ Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ανατολικής ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚ και Ī˜ĻĪ¬ĪŗĪ·Ļ‚'),
(95016, 'https://ror.org/000asyx23', 'no_lang_code', 1, 'https://ror.org/000asyx23 DIESSE Diagnostica Senese S.p.A. SocietĆ  Benefit (Italy)'),
(95017, 'https://ror.org/000bbyx17', 'fr', 1, 'https://ror.org/000bbyx17 Bordeaux Plurithematic Clinical Research Center Centre d''Investigation Clinique PlurithƩmatique de Bordeaux'),
(95018, 'https://ror.org/000chmh95', 'en', 1, 'https://ror.org/000chmh95 Nagao Natural Environment Foundation'),
(95019, 'https://ror.org/000f0z454', 'es', 1, 'https://ror.org/000f0z454 Universidad Laboral de Córdoba Universitat Laboral de Còrdova'),
(95020, 'https://ror.org/000fg4e24', 'en', 1, 'https://ror.org/000fg4e24 WCRP-CMIP International Project Office'),
(95021, 'https://ror.org/000jewp25', 'no_lang_code', 0, 'https://ror.org/000jewp25 GEOMAR Technologie GmbH - GTG'),
(95022, 'https://ror.org/000kng648', 'en', 0, 'https://ror.org/000kng648 National Health Care Institute Zorginstituut Nederland'),
(95023, 'https://ror.org/000n9zg48', 'fr', 1, 'https://ror.org/000n9zg48 Groupe de Recherche sur le Handicap Ventilatoire et Neurologique'),
(95024, 'https://ror.org/000nbq540', 'en', 1, 'https://ror.org/000nbq540 State Key Laboratory of Surface Physics åŗ”ē”Øč”Øé¢ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95025, 'https://ror.org/000nhpy59', 'es', 1, 'https://ror.org/000nhpy59 Instituto de Neurociencias'),
(95026, 'https://ror.org/000ph9k36', 'de', 1, 'https://ror.org/000ph9k36 Universitäts-Kinderklinik Würzburg'),
(95027, 'https://ror.org/000q0mx12', 'en', 1, 'https://ror.org/000q0mx12 Jawzjan University Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų¬ŁˆŲ²Ų¬Ų§Ł†'),
(95028, 'https://ror.org/000r80389', 'no_lang_code', 1, 'https://ror.org/000r80389 Fuwai Yunnan Cardiovascular Hospital äŗ‘å—ēœé˜œå¤–åæƒč”€ē®”ē—…åŒ»é™¢'),
(95029, 'https://ror.org/000s8jb40', 'no_lang_code', 1, 'https://ror.org/000s8jb40 Alcon (United States)'),
(95030, 'https://ror.org/000t0f062', 'en', 1, 'https://ror.org/000t0f062 Education University of Hong Kong 香港教育大學'),
(95031, 'https://ror.org/000tdrn36', 'fr', 1, 'https://ror.org/000tdrn36 Centre Interuniversitaire de MicroElectronique et Nanotechnologies'),
(95032, 'https://ror.org/000tetj79', 'en', 1, 'https://ror.org/000tetj79 52°North Spatial Information Research'),
(95033, 'https://ror.org/000vz5322', 'es', 1, 'https://ror.org/000vz5322 SUR Escuela de Artes y Profesiones ArtĆ­sticas'),
(95034, 'https://ror.org/000zhpw23', 'fr', 1, 'https://ror.org/000zhpw23 Institut de la Vision Vision Institute'),
(95035, 'https://ror.org/0010c4a50', 'en', 0, 'https://ror.org/0010c4a50 NOAA National Hurricane Center'),
(95036, 'https://ror.org/0012c7r22', 'en', 1, 'https://ror.org/0012c7r22 Office of Advanced Scientific Computing Research'),
(95037, 'https://ror.org/00136g547', 'en', 1, 'https://ror.org/00136g547 Fractionnation of AgroResources and Environment Fractionnement des AgroRessources et Environnement'),
(95038, 'https://ror.org/0013qa018', 'en', 1, 'https://ror.org/0013qa018 Catanduanes State University'),
(95039, 'https://ror.org/0013wyn38', 'es', 1, 'https://ror.org/0013wyn38 Innovatec (Spain), Sociedad Para El Fomento De La Innovacion Tecnologica Sl'),
(95040, 'https://ror.org/0015pkk46', 'en', 1, 'https://ror.org/0015pkk46 Cooperative Programs for the Advancement of Earth system science'),
(95041, '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'),
(95042, 'https://ror.org/001695n52', 'fr', 1, 'https://ror.org/001695n52 Institut des Maladies NeurodƩgƩnƩratives Neurodegeneratives Diseases Institute'),
(95043, 'https://ror.org/0017qt444', 'en', 1, 'https://ror.org/0017qt444 State Key Laboratory of Energy Conservation for Air Conditioning Equipment and System Operation ē©ŗč°ƒč®¾å¤‡åŠē³»ē»Ÿčæč”ŒčŠ‚čƒ½å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95044, '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'),
(95045, 'https://ror.org/001aqnf71', 'en', 1, 'https://ror.org/001aqnf71 UK Research and Innovation'),
(95046, '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'),
(95047, 'https://ror.org/001cwea56', 'ca', 1, 'https://ror.org/001cwea56 Centre Tecnologic de Telecomunicacions de Catalunya'),
(95048, 'https://ror.org/001d55x84', 'en', 1, 'https://ror.org/001d55x84 NIH Common Fund'),
(95049, 'https://ror.org/001mm6w73', 'en', 1, 'https://ror.org/001mm6w73 MRC Clinical Trials Unit at UCL'),
(95050, 'https://ror.org/001mse034', 'en', 1, 'https://ror.org/001mse034 Survey of Pakistan مساحتِ پاکستان'),
(95051, 'https://ror.org/001nb5b83', 'en', 1, 'https://ror.org/001nb5b83 Undersea Warfighting Development Center'),
(95052, 'https://ror.org/001p3jz28', 'en', 1, 'https://ror.org/001p3jz28 Birla Institute of Technology and Science, Pilani बिरला ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¬ą¤æą¤°ą„ą¤²ą¤¾ ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€ अँऔ ą¤øą¤¾ą¤Æą¤Øą„ą¤ø ਬਿਰਲਾ ąØ¤ąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ਅਤੇ ਵਿਗਿਆਨ ਸੰਸ਄ਾ ą®Ŗą®æą®°ąÆą®²ą®¾ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®®ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ ą°¬ą°æą°Ÿą±ą°øą± పిలానీ ą“¬ą“æąµ¼ą“³ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“†ą“Øąµą“±ąµ ą“øą“Æąµ»ą“øąµ'),
(95053, 'https://ror.org/001pprn90', 'en', 1, 'https://ror.org/001pprn90 WWF Tanzania'),
(95054, 'https://ror.org/001r32c80', 'fr', 1, 'https://ror.org/001r32c80 Biologie du chloroplaste et perception de la lumiĆØre chez les micro-algues'),
(95055, 'https://ror.org/001sezm06', 'no_lang_code', 1, 'https://ror.org/001sezm06 Parsons (United States)'),
(95056, 'https://ror.org/001synm23', 'ca', 1, 'https://ror.org/001synm23 IrsiCaixa'),
(95057, 'https://ror.org/001vjqx13', 'en', 1, 'https://ror.org/001vjqx13 MSB Medical School Berlin'),
(95058, 'https://ror.org/001y7kd61', 'en', 1, 'https://ror.org/001y7kd61 State Key Laboratory of Industrial Automation Systems and Process Equipment Technology ę··åˆęµēØ‹å·„äøšč‡ŖåŠØåŒ–ē³»ē»ŸåŠč£…å¤‡ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95059, 'https://ror.org/001ycj259', 'en', 1, 'https://ror.org/001ycj259 China Astronaut Research and Training Center äø­å›½čˆŖå¤©å‘˜ē§‘ē ”č®­ē»ƒäø­åæƒ'),
(95060, '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Ć©'),
(95061, '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'),
(95062, 'https://ror.org/00235nr42', 'pt', 1, 'https://ror.org/00235nr42 Federal University of ItajubĆ” Universidade Federal de ItajubĆ”'),
(95063, 'https://ror.org/0023sah13', 'no_lang_code', 1, 'https://ror.org/0023sah13 Vicomtech'),
(95064, 'https://ror.org/00264zf15', 'en', 1, 'https://ror.org/00264zf15 Zhaotong University ę˜­é€šå­¦é™¢'),
(95065, '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'),
(95066, 'https://ror.org/00289aa83', 'en', 1, 'https://ror.org/00289aa83 Australian Biological Resources Study'),
(95067, 'https://ror.org/0029jxk29', 'en', 1, 'https://ror.org/0029jxk29 Tula Foundation'),
(95068, 'https://ror.org/002c90p59', 'no_lang_code', 1, 'https://ror.org/002c90p59 Ningxia Forestry Research Institute Co., Ltd. (China) å®å¤ęž—äøšē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(95069, 'https://ror.org/002cfhw56', 'en', 1, 'https://ror.org/002cfhw56 Institute of Robotics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по роботика'),
(95070, 'https://ror.org/002fxfq97', 'fr', 1, 'https://ror.org/002fxfq97 Genomes and Cell Biology Diseases GƩnomes, biologie cellulaire et thƩrapeutiques'),
(95071, 'https://ror.org/002g3cb31', 'en', 1, 'https://ror.org/002g3cb31 Queen Margaret University'),
(95072, 'https://ror.org/002kcsx52', 'en', 1, 'https://ror.org/002kcsx52 Guts UK'),
(95073, 'https://ror.org/002kg1049', 'es', 1, 'https://ror.org/002kg1049 Universidad de las AmƩricas'),
(95074, 'https://ror.org/002n09z45', 'en', 1, 'https://ror.org/002n09z45 SIB Swiss Institute of Bioinformatics'),
(95075, 'https://ror.org/002shna07', 'en', 1, 'https://ror.org/002shna07 OHSU Knight Cancer Institute'),
(95076, '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'),
(95077, 'https://ror.org/002thpc56', 'no_lang_code', 1, 'https://ror.org/002thpc56 Kuang-Chi (China) 光志'),
(95078, 'https://ror.org/002v2kq79', 'pt', 1, 'https://ror.org/002v2kq79 Federal University of Technology of ParanÔ Universidade Tecnológica Federal do ParanÔ'),
(95079, 'https://ror.org/002zef647', 'es', 1, 'https://ror.org/002zef647 Institute of Optics "Daza de ValdĆ©s" Instituto de Ɠptica "Daza de ValdĆ©s"'),
(95080, 'https://ror.org/0030f2a11', 'de', 1, 'https://ror.org/0030f2a11 University Hospital Erlangen UniversitƤtsklinikum Erlangen'),
(95081, 'https://ror.org/0031x3y66', 'en', 1, 'https://ror.org/0031x3y66 Dai Nam University'),
(95082, 'https://ror.org/00325dg83', 'en', 1, 'https://ror.org/00325dg83 State Key Laboratory of Diagnosis and Treatment of Infectious Diseases ä¼ ęŸ“ē—…čÆŠę²»å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95083, 'https://ror.org/0036jb858', 'en', 1, 'https://ror.org/0036jb858 Legislative-Citizen Commission on Minnesota Resources'),
(95084, 'https://ror.org/0036vvb62', 'no_lang_code', 1, 'https://ror.org/0036vvb62 Zama (France)'),
(95085, 'https://ror.org/003b43187', 'en', 1, 'https://ror.org/003b43187 National Gulf War Resource Center'),
(95086, 'https://ror.org/003dr2d22', 'en', 1, 'https://ror.org/003dr2d22 North Pacific International University of Bangladesh'),
(95087, 'https://ror.org/003dt3029', 'nl', 1, 'https://ror.org/003dt3029 Gieskes-Strijbis Fonds'),
(95088, 'https://ror.org/003gecb74', 'en', 1, 'https://ror.org/003gecb74 Central European Society for Anticancer Drug Research'),
(95089, 'https://ror.org/003hwx626', 'en', 1, 'https://ror.org/003hwx626 State Key Laboratory of Agricultural Microbiology å†œäøšå¾®ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95090, 'https://ror.org/003hyqr30', 'fr', 1, 'https://ror.org/003hyqr30 Ɖcole nationale supĆ©rieure Louis-LumiĆØre'),
(95091, 'https://ror.org/003mfbe21', 'en', 1, 'https://ror.org/003mfbe21 State Key Laboratory of Ophthalmology ēœ¼ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95092, 'https://ror.org/003ncxf91', 'en', 1, 'https://ror.org/003ncxf91 China University of Mining and Technology - Beijing äø­å›½ēŸæäøšå¤§å­¦ļ¼ˆåŒ—äŗ¬ļ¼‰'),
(95093, 'https://ror.org/003p40584', 'en', 1, 'https://ror.org/003p40584 German Science and Humanities Council Wissenschaftsrat'),
(95094, 'https://ror.org/003qeh975', 'en', 1, 'https://ror.org/003qeh975 Chinese Academy of Tropical Agricultural Sciences äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢'),
(95095, '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'),
(95096, 'https://ror.org/003tsz145', 'de', 0, 'https://ror.org/003tsz145 Frauenklinik der Technischen Universität München'),
(95097, 'https://ror.org/003v6nj12', 'en', 1, 'https://ror.org/003v6nj12 State Key Laboratory of Environmental Chemistry and Ecotoxicology ēŽÆå¢ƒåŒ–å­¦äøŽē”Ÿę€ęÆ’ē†å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95098, 'https://ror.org/003vpd085', 'no_lang_code', 1, 'https://ror.org/003vpd085 Calvagone (France)'),
(95099, 'https://ror.org/003x0zc53', 'es', 1, 'https://ror.org/003x0zc53 Agencia Estatal de Investigación'),
(95100, 'https://ror.org/003xpy695', 'en', 1, 'https://ror.org/003xpy695 Mayo Clinic Comprehensive Cancer Center (Arizona)'),
(95101, 'https://ror.org/003yb7p17', 'no_lang_code', 1, 'https://ror.org/003yb7p17 Alcoa (United States)'),
(95102, 'https://ror.org/0040z4m89', 'no_lang_code', 0, 'https://ror.org/0040z4m89 Geocisa (Spain)'),
(95103, 'https://ror.org/00412ts95', 'en', 1, 'https://ror.org/00412ts95 Children''s Hospital of Los Angeles'),
(95104, 'https://ror.org/0041nq193', 'en', 1, 'https://ror.org/0041nq193 Huertas College'),
(95105, 'https://ror.org/0042y9w49', 'en', 1, 'https://ror.org/0042y9w49 Canadian Research Data Centre Network'),
(95106, 'https://ror.org/004315x41', 'en', 1, 'https://ror.org/004315x41 Allegheny-Singer Research Institute'),
(95107, 'https://ror.org/004595x17', 'no_lang_code', 1, 'https://ror.org/004595x17 Tafuna High School'),
(95108, 'https://ror.org/0045a4523', 'de', 0, 'https://ror.org/0045a4523 Universitätsklinik für Hals-, Nasen- und Ohrenkrankheiten'),
(95109, 'https://ror.org/0046rt562', 'en', 1, 'https://ror.org/0046rt562 Farm Credit Canada Financement agricole Canada'),
(95110, 'https://ror.org/0047z8a16', 'es', 1, 'https://ror.org/0047z8a16 Instituto de Ciencias Antropológicas'),
(95111, 'https://ror.org/0048t7e91', 'es', 1, 'https://ror.org/0048t7e91 Fundación Progreso y Salud'),
(95112, 'https://ror.org/00490n048', 'en', 1, 'https://ror.org/00490n048 American Institutes for Research'),
(95113, 'https://ror.org/004eyxv41', 'en', 1, 'https://ror.org/004eyxv41 NumFOCUS'),
(95114, 'https://ror.org/004g03602', 'es', 1, 'https://ror.org/004g03602 CIC biomaGUNE Centre for Cooperative Research in Biomaterials'),
(95115, 'https://ror.org/004gfgx38', 'en', 1, 'https://ror.org/004gfgx38 Eszterhazy Karoly Catholic University EszterhƔzy KƔroly Katolikus Egyetem'),
(95116, 'https://ror.org/004gzqz66', 'fr', 1, 'https://ror.org/004gzqz66 Institut de physique du globe de Paris Paris Institute of Earth Physics'),
(95117, 'https://ror.org/004h88r69', 'fr', 1, 'https://ror.org/004h88r69 Fondation Leenaards'),
(95118, 'https://ror.org/004j3q729', 'fi', 1, 'https://ror.org/004j3q729 Diabetes Research Foundation Diabetes Tutkimussaatio'),
(95119, 'https://ror.org/004j8pp46', 'en', 1, 'https://ror.org/004j8pp46 Salim Habib University'),
(95120, 'https://ror.org/004majf41', 'en', 1, 'https://ror.org/004majf41 Hobart and William Smith Colleges'),
(95121, 'https://ror.org/004nzga04', 'en', 1, 'https://ror.org/004nzga04 Office of Materials and Chemical Technologies'),
(95122, 'https://ror.org/004r4ve77', 'no_lang_code', 1, 'https://ror.org/004r4ve77 DNV (Netherlands)'),
(95123, 'https://ror.org/004swtw80', 'es', 1, 'https://ror.org/004swtw80 Institute of Catalysis and Petrochemistry Instituto de CatƔlisis y Petroleoquƭmica'),
(95124, 'https://ror.org/004v5tb85', 'en', 1, 'https://ror.org/004v5tb85 Ministry of Science, Research and Technology وزارت Ų¹Ł„ŁˆŁ…ŲŒ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ و ŁŁ†Ų§ŁˆŲ±ŪŒ'),
(95125, 'https://ror.org/004v92r53', 'en', 1, 'https://ror.org/004v92r53 State Key Laboratory of Plant Molecular Genetics ę¤ē‰©åˆ†å­é—ä¼ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95126, 'https://ror.org/004vxz697', 'pt', 1, 'https://ror.org/004vxz697 Faculdade Católica de VÔrzea Grande'),
(95127, 'https://ror.org/004wf8x96', 'en', 1, 'https://ror.org/004wf8x96 Deen Dayal Upadhyaya Gorakhpur University ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤‰ą¤Ŗą¤¾ą¤§ą„ą¤Æą¤¾ą¤Æ ą¤—ą„‹ą¤°ą¤–ą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®¤ąÆ€ą®©ąÆ ą®¤ą®Æą®¾ą®³ąÆ ą®‰ą®Ŗą®¾ą®¤ąÆą®Æą®¾ą®ÆąÆ ą®•ąÆ‹ą®°ą®•ąÆą®ŖąÆ‚ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(95128, 'https://ror.org/004z1wz18', 'en', 1, 'https://ror.org/004z1wz18 State Key Laboratory of Digital Manufacturing Equipment and Technology ę•°å­—åˆ¶é€ č£…å¤‡äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95129, 'https://ror.org/0050s9w54', 'no_lang_code', 1, 'https://ror.org/0050s9w54 Philips (Italy)'),
(95130, 'https://ror.org/0051rme32', 'en', 1, 'https://ror.org/0051rme32 Northwest A&F University č„æåŒ—å†œęž—ē§‘ęŠ€å¤§å­¦'),
(95131, 'https://ror.org/00536t873', 'en', 1, 'https://ror.org/00536t873 Artificial Intelligence & Technology Office'),
(95132, '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'),
(95133, 'https://ror.org/0054t4769', 'en', 1, 'https://ror.org/0054t4769 Office of the General Counsel'),
(95134, 'https://ror.org/00559m198', 'es', 1, 'https://ror.org/00559m198 Fundación Ciudad de la Energía'),
(95135, 'https://ror.org/0055b3j94', 'en', 1, 'https://ror.org/0055b3j94 KITE Research Institute'),
(95136, 'https://ror.org/0057rcj45', 'en', 1, 'https://ror.org/0057rcj45 Institute for Theoretical Physics and Modeling ÕÕ„Õ½Õ”ÕÆÕ”Õ¶ Õ–Õ«Õ¦Õ«ÕÆÕ”ÕµÕ« և Õ„ÕøÕ¤Õ„Õ¬Õ”Õ¾ÕøÖ€Õ“Õ”Õ¶ Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(95137, 'https://ror.org/005914142', 'en', 1, 'https://ror.org/005914142 KDDI Foundation'),
(95138, 'https://ror.org/0059b1q02', 'en', 1, 'https://ror.org/0059b1q02 Ministry of Communications, Knowledge and Technology'),
(95139, 'https://ror.org/0059vr703', 'en', 1, 'https://ror.org/0059vr703 Laboratory for Integrated Micro-Mechatronic Systems'),
(95140, 'https://ror.org/0059w0420', 'en', 1, 'https://ror.org/0059w0420 Heriot-Watt University Malaysia'),
(95141, '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'),
(95142, 'https://ror.org/005ba5y61', 'fr', 1, 'https://ror.org/005ba5y61 Laboratoire d''Ingénierie des Systèmes'),
(95143, 'https://ror.org/005cybj21', 'en', 1, 'https://ror.org/005cybj21 Observatório do Valongo Valongo Observatory'),
(95144, 'https://ror.org/005dkht93', 'pt', 1, 'https://ror.org/005dkht93 Institute for Molecular and Cell Biology Instituto de Biologia Molecular e Celular'),
(95145, 'https://ror.org/005dknr06', 'es', 1, 'https://ror.org/005dknr06 Servicio Navarro de Salud'),
(95146, 'https://ror.org/005dvqh91', 'en', 1, 'https://ror.org/005dvqh91 NYU Langone Health'),
(95147, 'https://ror.org/005eqmw78', 'en', 1, 'https://ror.org/005eqmw78 Asian Theological Seminary'),
(95148, 'https://ror.org/005f4y685', 'no_lang_code', 1, 'https://ror.org/005f4y685 Chinhoyi University of Technology'),
(95149, 'https://ror.org/005fmqz30', 'es', 1, 'https://ror.org/005fmqz30 Banco Central de Chile'),
(95150, 'https://ror.org/005jmje44', 'en', 1, 'https://ror.org/005jmje44 Office of Energy Analysis'),
(95151, 'https://ror.org/005ma5a25', 'no_lang_code', 1, 'https://ror.org/005ma5a25 DB Engineering & Consulting (Germany)'),
(95152, 'https://ror.org/005rxfw29', 'no_lang_code', 1, 'https://ror.org/005rxfw29 Philip Morris International (United States)'),
(95153, 'https://ror.org/005wcnh31', 'no_lang_code', 1, 'https://ror.org/005wcnh31 Confederação Nacional da Indústria (Brazil)'),
(95154, 'https://ror.org/005y45s37', 'en', 1, 'https://ror.org/005y45s37 Earthwatch Europe'),
(95155, 'https://ror.org/0060x3y55', 'en', 1, 'https://ror.org/0060x3y55 Rutgers Cancer Institute of New Jersey'),
(95156, 'https://ror.org/0061s4v88', 'en', 1, 'https://ror.org/0061s4v88 BioCruces Health research Institute'),
(95157, 'https://ror.org/00621wh10', 'de', 1, 'https://ror.org/00621wh10 Klinik Hietzing'),
(95158, 'https://ror.org/0064crs54', 'en', 0, 'https://ror.org/0064crs54 National Center of Competence in Research Quantum Science and Technology'),
(95159, 'https://ror.org/0064e3s97', 'en', 1, 'https://ror.org/0064e3s97 Alba Graduate Business School, The American College of Greece'),
(95160, 'https://ror.org/0064esw13', 'en', 1, 'https://ror.org/0064esw13 LearningSpring Elementary School'),
(95161, 'https://ror.org/0065v9d27', 'en', 1, 'https://ror.org/0065v9d27 International Clinical Epidemiology Network'),
(95162, 'https://ror.org/006e5kg04', 'nl', 1, 'https://ror.org/006e5kg04 Vrije Universiteit Brussel'),
(95163, 'https://ror.org/006g7ta07', 'en', 1, 'https://ror.org/006g7ta07 eHope Foundation'),
(95164, 'https://ror.org/006gw6z14', 'es', 1, 'https://ror.org/006gw6z14 Doñana Biological Station Estación Biológica de Doñana'),
(95165, 'https://ror.org/006h16267', 'fr', 1, 'https://ror.org/006h16267 Control and Robotics Laboratory Laboratoire de commande et de robotique'),
(95166, 'https://ror.org/006jjam33', 'en', 1, 'https://ror.org/006jjam33 Applied Research Laboratory for Intelligence and Security'),
(95167, 'https://ror.org/006jv0w93', 'fr', 1, 'https://ror.org/006jv0w93 Centre de Recherches Interdisciplinaires sur les Mondes IbƩro-amƩricains Contemporains'),
(95168, 'https://ror.org/006m74d95', 'en', 1, 'https://ror.org/006m74d95 Northwestern University in Qatar Universidad del noroeste'),
(95169, 'https://ror.org/006pyvd89', 'en', 1, 'https://ror.org/006pyvd89 Arkansas State University UniversitĆ© d''Ɖtat de l''arkansas'),
(95170, 'https://ror.org/006q8y354', 'en', 0, 'https://ror.org/006q8y354 Center for Advanced Security Research Darmstadt'),
(95171, 'https://ror.org/006qmn341', 'en', 1, 'https://ror.org/006qmn341 Society for Integrative and Comparative Biology'),
(95172, 'https://ror.org/006qymt97', 'no_lang_code', 1, 'https://ror.org/006qymt97 ZIN Technologies (United States)'),
(95173, 'https://ror.org/006rwj939', 'en', 1, 'https://ror.org/006rwj939 State Key Laboratory of Heavy Oil é‡č“Øę²¹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95174, 'https://ror.org/006thab72', 'en', 1, 'https://ror.org/006thab72 MSH Medical School Hamburg – University of Applied Sciences and Medical University'),
(95175, 'https://ror.org/006xfsx34', 'en', 1, 'https://ror.org/006xfsx34 Geology, Geophysics, and Geochemistry Science Center'),
(95176, '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'),
(95177, 'https://ror.org/00708jp83', 'en', 1, 'https://ror.org/00708jp83 International Hellenic University UniversitĆ© internationale hellĆ©nique Διεθνές Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ΕλλάΓος'),
(95178, 'https://ror.org/0070z0z95', 'de', 1, 'https://ror.org/0070z0z95 Thüringisches Landesamt für Denkmalpflege und Archäologie'),
(95179, 'https://ror.org/00725gb29', 'en', 1, 'https://ror.org/00725gb29 State Key Laboratory of Coal Mine Disaster Dynamics and Control ē…¤ēŸæē¾å®³åŠØåŠ›å­¦äøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95180, 'https://ror.org/00729wd66', 'en', 1, 'https://ror.org/00729wd66 State Key Laboratory of Civil Aircraft Flight Simulation ę°‘ē”Øé£žęœŗęØ”ę‹Ÿé£žč”Œå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95181, 'https://ror.org/0073ny545', 'fr', 1, 'https://ror.org/0073ny545 Centre universitaire Salhi Ahmed - Naama Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ ŲµŲ§Ł„Ų­ŁŠ Ų£Ų­Ł…ŲÆ النعامة'),
(95182, 'https://ror.org/0073tn017', 'en', 1, 'https://ror.org/0073tn017 Virginia Agricultural Experiment Station'),
(95183, 'https://ror.org/00744wk93', 'en', 1, 'https://ror.org/00744wk93 Department of Public Health'),
(95184, 'https://ror.org/0075gfd51', 'es', 1, 'https://ror.org/0075gfd51 Loyola University Andalusia Universidad Loyola AndalucĆ­a'),
(95185, 'https://ror.org/0076kfe04', 'en', 1, 'https://ror.org/0076kfe04 University of Chicago Medical Center'),
(95186, 'https://ror.org/007bjx395', 'en', 1, 'https://ror.org/007bjx395 Cereal Research Centre'),
(95187, 'https://ror.org/007bytg49', 'ro', 1, 'https://ror.org/007bytg49 Institute for South-East European Studies Institutul de Studii Sud-Est Europene'),
(95188, 'https://ror.org/007ffzr57', 'en', 1, 'https://ror.org/007ffzr57 Lanzhou Institute of Chemical Physics äø­å›½ē§‘å­¦é™¢å…°å·žåŒ–å­¦ē‰©ē†ē ”ē©¶ę‰€'),
(95189, 'https://ror.org/007g3r374', 'no_lang_code', 1, 'https://ror.org/007g3r374 Albion Technologies (United Kingdom)'),
(95190, 'https://ror.org/007g5gk82', 'en', 1, 'https://ror.org/007g5gk82 University of Belgrade – Faculty of Orthodox Theology Univerzitet u Beogradu – Pravoslavni bogoslovski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠŸŃ€Š°Š²Š¾ŃŠ»Š°Š²Š½Šø богословски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(95191, 'https://ror.org/007gerq75', 'en', 1, 'https://ror.org/007gerq75 AIMST University'),
(95192, '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'),
(95193, 'https://ror.org/007hrfm61', 'fr', 1, 'https://ror.org/007hrfm61 Laboratoire de Psychologie des Pays de la Loire'),
(95194, 'https://ror.org/007hv9f69', 'fr', 1, 'https://ror.org/007hv9f69 Laboratoire d''Ʃconomie Rouen Normandie'),
(95195, 'https://ror.org/007j2dm88', 'pt', 1, 'https://ror.org/007j2dm88 Brain Institute of Rio Grande do Sul Instituto do CƩrebro'),
(95196, 'https://ror.org/007kf2g74', 'no_lang_code', 0, 'https://ror.org/007kf2g74 Gamesa (Spain)'),
(95197, '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'),
(95198, 'https://ror.org/007nf8q70', 'en', 1, 'https://ror.org/007nf8q70 State Key Laboratory of Artificial Microstructure and Mesoscopic Physics äŗŗå·„å¾®ē»“ęž„å’Œä»‹č§‚ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95199, 'https://ror.org/007ps6h72', 'en', 1, 'https://ror.org/007ps6h72 Fred Hutch Cancer Center'),
(95200, 'https://ror.org/007q04248', 'en', 1, 'https://ror.org/007q04248 Mayo Clinic Comprehensive Cancer Center (Florida)'),
(95201, 'https://ror.org/007qwym43', 'en', 1, 'https://ror.org/007qwym43 NOAA National Environmental Satellite Data and Information Service'),
(95202, 'https://ror.org/007rxxd52', 'en', 1, 'https://ror.org/007rxxd52 Brest State Technical University Брестский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š‘Ń€ŃŃŃ†ŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(95203, 'https://ror.org/007sc9r91', 'fr', 1, 'https://ror.org/007sc9r91 Chimie MolƩculaire, MacromolƩculaire, MatƩriaux'),
(95204, 'https://ror.org/007sqpb10', 'en', 1, 'https://ror.org/007sqpb10 Herat Regional Hospital'),
(95205, 'https://ror.org/007sts724', 'en', 1, 'https://ror.org/007sts724 New Mexico State University Alamogordo'),
(95206, 'https://ror.org/007ww2d15', 'en', 1, 'https://ror.org/007ww2d15 The Velux Foundations'),
(95207, 'https://ror.org/007x3c094', 'fr', 1, 'https://ror.org/007x3c094 DƩlƩgation Paris-Villejuif-03'),
(95208, 'https://ror.org/007xgfy35', 'no_lang_code', 1, 'https://ror.org/007xgfy35 TrinaSolar Co., Ltd. (China) å¤©åˆå…‰čƒ½č‚”ä»½ęœ‰é™å…¬åø'),
(95209, 'https://ror.org/007xj0t96', 'eu', 1, 'https://ror.org/007xj0t96 Departamento de Desarrollo Económico, Sostenibilidad y Medio Ambiente Ekonomiaren Garapen eta Lehiakortasun Saila'),
(95210, 'https://ror.org/007xr2v93', 'en', 1, 'https://ror.org/007xr2v93 Partnership for Observation of the Global Ocean'),
(95211, 'https://ror.org/007zyap28', 'en', 1, 'https://ror.org/007zyap28 Queensland Department of Natural Resources, Mines and Energy'),
(95212, 'https://ror.org/00801j392', 'fr', 0, 'https://ror.org/00801j392 Institut des sciences de la communication Institute for Communication Sciences'),
(95213, 'https://ror.org/00835yh61', 'en', 1, 'https://ror.org/00835yh61 Perfect Harmony Health'),
(95214, 'https://ror.org/0083c5602', 'de', 1, 'https://ror.org/0083c5602 Damp Stiftung'),
(95215, 'https://ror.org/0085hfg56', 'en', 1, 'https://ror.org/0085hfg56 Systems Engineering Research Center'),
(95216, 'https://ror.org/00862pt92', 'en', 1, 'https://ror.org/00862pt92 State Key Laboratory of Advanced Stainless Steel Materials å…ˆčæ›äøé”ˆé’¢ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95217, 'https://ror.org/008bf9746', 'fr', 1, 'https://ror.org/008bf9746 Centre d''Ɖtudes et de Documentation Ɖconomiques, Juridiques et sociales'),
(95218, 'https://ror.org/008bp5f48', 'en', 1, 'https://ror.org/008bp5f48 ICMR National Institute for Research in Environmental Health'),
(95219, 'https://ror.org/008fa9s48', 'en', 1, 'https://ror.org/008fa9s48 Office of Security'),
(95220, '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'),
(95221, 'https://ror.org/008fyn775', 'en', 1, 'https://ror.org/008fyn775 Politechnika Wrocławska Wrocław University of Science and Technology'),
(95222, 'https://ror.org/008gjgb19', 'en', 1, 'https://ror.org/008gjgb19 Department of Agriculture Food and the Marine'),
(95223, 'https://ror.org/008h1f725', 'fr', 1, 'https://ror.org/008h1f725 Interfaces, Confinement, MatƩriaux et Nanostructures'),
(95224, 'https://ror.org/008j47576', 'en', 1, 'https://ror.org/008j47576 Mount Kigali University'),
(95225, 'https://ror.org/008jep717', 'pt', 1, 'https://ror.org/008jep717 Instituto AgrƔrio de Chimoio'),
(95226, 'https://ror.org/008kz9r66', 'ro', 1, 'https://ror.org/008kz9r66 Universitatea Slavonă din Moldova'),
(95227, 'https://ror.org/008qsjm14', 'fr', 1, 'https://ror.org/008qsjm14 Centre de Droit Maritime et OcƩanique Maritime And Oceanic Law Centre'),
(95228, 'https://ror.org/008syg534', 'es', 1, 'https://ror.org/008syg534 Universidad del Caribe'),
(95229, 'https://ror.org/008w8py05', 'en', 1, 'https://ror.org/008w8py05 University of the People'),
(95230, 'https://ror.org/008yfsh88', 'en', 1, 'https://ror.org/008yfsh88 National Museum of Japanese History å›½ē«‹ę­“å²ę°‘äæ—åšē‰©é¤Ø'),
(95231, 'https://ror.org/0090gef29', 'es', 1, 'https://ror.org/0090gef29 Asociación Española de Linfedema'),
(95232, 'https://ror.org/0090r4d87', 'en', 1, 'https://ror.org/0090r4d87 Institute of Computing Technology äø­å›½ē§‘å­¦é™¢č®”ē®—ęŠ€ęœÆē ”ē©¶ę‰€'),
(95233, 'https://ror.org/0090zs177', 'en', 1, 'https://ror.org/0090zs177 London School of Economics and Political Science Ysgol Economeg a Gwyddor Gwleidyddiaeth Llundain'),
(95234, 'https://ror.org/00938we49', 'es', 1, 'https://ror.org/00938we49 Instituto de Estudios DemocrƔticos'),
(95235, 'https://ror.org/0093mkr06', 'en', 0, 'https://ror.org/0093mkr06 State Key Laboratory of Experimental Hematology å®žéŖŒč”€ę¶²å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95236, 'https://ror.org/0095e2947', 'en', 1, 'https://ror.org/0095e2947 U.S. Army Electronic Proving Ground'),
(95237, 'https://ror.org/0096stf71', 'en', 1, 'https://ror.org/0096stf71 The Bronx Defenders'),
(95238, 'https://ror.org/0099d6q96', 'en', 1, 'https://ror.org/0099d6q96 Beijing Institute of Optoelectronic Technology åŒ—äŗ¬å…‰ē”µęŠ€ęœÆē ”ē©¶ę‰€'),
(95239, 'https://ror.org/009b9n257', 'en', 1, 'https://ror.org/009b9n257 Swedish Infrastructure for Ecosystem Science'),
(95240, 'https://ror.org/009frb846', 'fr', 1, 'https://ror.org/009frb846 EntrepƓts, ReprƩsentation et IngƩnierie des Connaissances'),
(95241, 'https://ror.org/009gcq722', 'no_lang_code', 1, 'https://ror.org/009gcq722 Kensei Hospital, Tokushima å¾³å³¶å„ē”Ÿē—…é™¢'),
(95242, 'https://ror.org/009h6m484', 'en', 1, 'https://ror.org/009h6m484 State Key Laboratory of Shipping Technology and Safety čˆŖčæęŠ€ęœÆäøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95243, 'https://ror.org/009kb8w74', 'fr', 1, 'https://ror.org/009kb8w74 HƓpital Rothschild'),
(95244, 'https://ror.org/009kz8119', 'en', 1, 'https://ror.org/009kz8119 Edenton Chowan School District'),
(95245, '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ş'),
(95246, 'https://ror.org/009pn2s74', 'en', 1, 'https://ror.org/009pn2s74 Office of Nuclear Facilities Management'),
(95247, 'https://ror.org/009q0jm69', 'en', 1, 'https://ror.org/009q0jm69 Agricultural Experiment Station'),
(95248, 'https://ror.org/009rwsd77', 'fr', 1, 'https://ror.org/009rwsd77 Laboratoire de MathƩmatiques de l''INSA de Rouen'),
(95249, 'https://ror.org/009wseg80', 'es', 1, 'https://ror.org/009wseg80 Institute of Fundamental Physics Instituto de FĆ­sica Fundamental'),
(95250, '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'),
(95251, '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'),
(95252, 'https://ror.org/00a3p4g61', 'fr', 0, 'https://ror.org/00a3p4g61 Mécanismes de Tumorigenèse et Thérapies Ciblées'),
(95253, 'https://ror.org/00a5z9122', 'fr', 1, 'https://ror.org/00a5z9122 Institut Interdisciplinaire d’Anthropologie du Contemporain'),
(95254, 'https://ror.org/00a6cxf28', 'en', 1, 'https://ror.org/00a6cxf28 OU Health'),
(95255, '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'),
(95256, 'https://ror.org/00a78nr16', 'fr', 1, 'https://ror.org/00a78nr16 Laboratoire de la Mer'),
(95257, 'https://ror.org/00a7bnr15', 'es', 1, 'https://ror.org/00a7bnr15 Fundación Tripartita para la Formación en el Empleo'),
(95258, 'https://ror.org/00a7sva26', 'no_lang_code', 1, 'https://ror.org/00a7sva26 Renfe Operadora (Spain)'),
(95259, 'https://ror.org/00a7xgz80', 'en', 1, 'https://ror.org/00a7xgz80 NSW Department of Planning, Housing and Infrastructure'),
(95260, 'https://ror.org/00a8q8z31', 'fr', 1, 'https://ror.org/00a8q8z31'),
(95261, 'https://ror.org/00acpf703', 'fr', 1, 'https://ror.org/00acpf703 Commission de l''Ethique en Science et en Technologie'),
(95262, 'https://ror.org/00ade4393', 'de', 1, 'https://ror.org/00ade4393 Deutsche Film- und Fernsehakademie Berlin'),
(95263, 'https://ror.org/00adh9b73', 'en', 1, 'https://ror.org/00adh9b73 National Institute of Diabetes and Digestive and Kidney Diseases'),
(95264, 'https://ror.org/00adn8q67', 'de', 0, 'https://ror.org/00adn8q67 Universitätsklinik für Neurologie'),
(95265, 'https://ror.org/00ae13b94', 'es', 1, 'https://ror.org/00ae13b94 Institute of studies gallegos Padre Sarmiento Instituto de Estudios Gallegos Padre Sarmiento'),
(95266, 'https://ror.org/00ae7jd04', 'en', 1, 'https://ror.org/00ae7jd04 Banque Mondiale World Bank'),
(95267, 'https://ror.org/00af12v02', 'es', 1, 'https://ror.org/00af12v02 Universidad Católica Redemptoris Mater'),
(95268, 'https://ror.org/00ag0rb94', 'en', 1, 'https://ror.org/00ag0rb94 Children''s Hospital Research Institute of Manitoba'),
(95269, 'https://ror.org/00ah32k04', 'fr', 1, 'https://ror.org/00ah32k04 Laboratoire d''Ɖlectronique, Antennes et TĆ©lĆ©communications'),
(95270, 'https://ror.org/00ajrgb89', 'en', 1, 'https://ror.org/00ajrgb89 Alpha Foundation'),
(95271, 'https://ror.org/00ancw882', 'en', 1, 'https://ror.org/00ancw882 Svensk nationell datatjƤnst Swedish National Data Service'),
(95272, 'https://ror.org/00apj8t60', 'en', 1, 'https://ror.org/00apj8t60 Bandung Institute of Technology Institut Teknologi Bandung Institut TĆØknologi Bandung Technische Hogeschool Bandoeng'),
(95273, 'https://ror.org/00aqh0734', 'no_lang_code', 1, 'https://ror.org/00aqh0734 Tullow Oil (United Kingdom)'),
(95274, 'https://ror.org/00arpt780', 'en', 1, 'https://ror.org/00arpt780 Institute for Marine and Antarctic Studies'),
(95275, 'https://ror.org/00awbw743', 'en', 1, 'https://ror.org/00awbw743 Swedish Veterinary Agency'),
(95276, 'https://ror.org/00awq8a10', 'no_lang_code', 1, 'https://ror.org/00awq8a10 Immuneering (United States)'),
(95277, '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'),
(95278, 'https://ror.org/00axme198', 'sv', 1, 'https://ror.org/00axme198 Nordregio'),
(95279, 'https://ror.org/00b1hj613', 'no_lang_code', 1, 'https://ror.org/00b1hj613 Zoomlion (China) äø­č”é‡ē§‘'),
(95280, 'https://ror.org/00b2whf03', 'en', 0, 'https://ror.org/00b2whf03 Institute for Surface Chemistry Ytkemiska Institutet'),
(95281, 'https://ror.org/00b4yme84', 'fr', 1, 'https://ror.org/00b4yme84 Groupe de REcherche en Cardio Oncologie'),
(95282, 'https://ror.org/00b5m4j81', 'no_lang_code', 1, 'https://ror.org/00b5m4j81 Shell (Netherlands)'),
(95283, 'https://ror.org/00b67z867', 'en', 1, 'https://ror.org/00b67z867 State Key Laboratory of Automotive Simulation and Control ę±½č½¦ä»æēœŸäøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95284, 'https://ror.org/00b6h0x02', 'en', 1, 'https://ror.org/00b6h0x02 State Key Laboratory of Structural Analysis for Industrial Equipment å·„äøšč£…å¤‡ē»“ęž„åˆ†ęžå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95285, 'https://ror.org/00b88za07', 'fr', 1, 'https://ror.org/00b88za07 Institut de recherche et d’informations socioĆ©conomiques'),
(95286, 'https://ror.org/00b9ahn78', 'en', 1, 'https://ror.org/00b9ahn78 Sir Charles Gairdner Osborne Park Health Care Group'),
(95287, 'https://ror.org/00bardy64', 'en', 1, 'https://ror.org/00bardy64 Leidos Biomedical Research Inc., Leidos Biomedical Research Inc. (United States)'),
(95288, 'https://ror.org/00bb4nn95', 'de', 1, 'https://ror.org/00bb4nn95 NFDI4DS'),
(95289, 'https://ror.org/00bdqav06', 'en', 1, 'https://ror.org/00bdqav06 Cooperative Institute for Research in Environmental Sciences'),
(95290, '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'),
(95291, 'https://ror.org/00bh4be42', 'ca', 1, 'https://ror.org/00bh4be42 Catalan Transplant Foundation Fundació Catalana de Trasplantament'),
(95292, 'https://ror.org/00bjskz46', 'en', 0, 'https://ror.org/00bjskz46 InnovaWood'),
(95293, 'https://ror.org/00bmp7042', 'en', 1, 'https://ror.org/00bmp7042 Janaki Medical College ą¤œą¤¾ą¤Øą¤•ą„€ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤²ą„‡ą¤œ'),
(95294, 'https://ror.org/00bn0wv11', 'en', 1, 'https://ror.org/00bn0wv11 Xuzhou College of Industrial Technology å¾å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(95295, 'https://ror.org/00bnagp43', 'es', 1, 'https://ror.org/00bnagp43 Dairy Institute of Asturias Instituto de Productos LƔcteos de Asturias'),
(95296, 'https://ror.org/00brnhb09', 'fr', 1, 'https://ror.org/00brnhb09 Centre intƩgrƩ de santƩ et de services sociaux de la CƓte-Nord'),
(95297, 'https://ror.org/00brpm077', 'en', 1, 'https://ror.org/00brpm077 Geology, Minerals, Energy, and Geophysics Science Center'),
(95298, 'https://ror.org/00bsxeq86', 'no_lang_code', 1, 'https://ror.org/00bsxeq86 Syreon Research Institute Syreon Research Institute (Hungary)'),
(95299, 'https://ror.org/00bv2aa44', 'no_lang_code', 1, 'https://ror.org/00bv2aa44 STCube (United States)'),
(95300, 'https://ror.org/00bxr0z07', 'en', 1, 'https://ror.org/00bxr0z07 National Snow and Ice Data Center'),
(95301, 'https://ror.org/00by1q217', 'no_lang_code', 1, 'https://ror.org/00by1q217 Roche (Switzerland)'),
(95302, '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'),
(95303, 'https://ror.org/00c639s42', 'en', 1, 'https://ror.org/00c639s42 Second People''s Hospital of Yunnan Province äŗ‘å—ēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(95304, 'https://ror.org/00c746491', 'en', 1, 'https://ror.org/00c746491 National Research Council of the Philippines'),
(95305, 'https://ror.org/00c7kp696', 'en', 1, 'https://ror.org/00c7kp696 Qaiwan International University Ų¬Ų§Ł…Ų¹Ų© Ł‚ŁŠŁˆŲ§Ł† Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ų²Ų§Ł†Ś©Ū†ŪŒ Ł†ŪŽŁˆŲÆŪ•ŁˆŚµŪ•ŲŖŪŒ Ł‚Ū•ŪŒŁˆŲ§Ł†'),
(95306, 'https://ror.org/00c7rx184', 'no_lang_code', 1, 'https://ror.org/00c7rx184 Routledge (United Kingdom)'),
(95307, 'https://ror.org/00c9gh315', 'no_lang_code', 1, 'https://ror.org/00c9gh315 Solusi University'),
(95308, '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'),
(95309, 'https://ror.org/00cagf561', 'en', 1, 'https://ror.org/00cagf561 State Key Laboratory of Reproductive Medicine ē”Ÿę®–åŒ»å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95310, 'https://ror.org/00caq9197', 'eu', 1, 'https://ror.org/00caq9197 Euskadiko Parke Teknologicoak Bizkaia, Euskadiko Parke Teknologikoa'),
(95311, 'https://ror.org/00cea8r21', 'en', 1, 'https://ror.org/00cea8r21 Montefiore Einstein Comprehensive Cancer Center'),
(95312, 'https://ror.org/00cfa1c07', 'en', 1, 'https://ror.org/00cfa1c07 Palestine Technical University - Kadoorie Ų¬Ų§Ł…Ų¹Ų© ŁŁ„Ų³Ų·ŁŠŁ† Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© - خضوري'),
(95313, 'https://ror.org/00ch7yk27', 'en', 1, 'https://ror.org/00ch7yk27 South Dakota School of Mines and Technology'),
(95314, 'https://ror.org/00cj35179', 'en', 1, 'https://ror.org/00cj35179 The University of Kansas Cancer Center'),
(95315, 'https://ror.org/00cjfww17', 'en', 1, 'https://ror.org/00cjfww17 State Key Laboratory of Solid Waste Resource Utilization and Energy-Saving Building Materials å›ŗåŗŸčµ„ęŗåŒ–åˆ©ē”ØäøŽčŠ‚čƒ½å»ŗęå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95316, 'https://ror.org/00cm2cb35', 'en', 1, 'https://ror.org/00cm2cb35 Virginia Mason Medical Center'),
(95317, 'https://ror.org/00cv16a87', 'sv', 1, 'https://ror.org/00cv16a87 Gun and Bertil Stohne''s Foundation Gun och Bertil Stohnes Stiftelse'),
(95318, 'https://ror.org/00cvv0r95', 'en', 1, 'https://ror.org/00cvv0r95 State Key Laboratory of Oil and Gas Resources and Exploration ę²¹ę°”čµ„ęŗäøŽęŽ¢ęµ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95319, 'https://ror.org/00cw4qm30', 'fr', 1, 'https://ror.org/00cw4qm30 Dynamiques patrimoniales et culturelles'),
(95320, 'https://ror.org/00cx9er29', 'en', 1, 'https://ror.org/00cx9er29 Acquisition and Project Management'),
(95321, 'https://ror.org/00cxy0s05', 'fr', 1, 'https://ror.org/00cxy0s05 HƓpital Charles-Nicolle'),
(95322, 'https://ror.org/00cy6xh23', 'es', 1, 'https://ror.org/00cy6xh23 Conservatori Superior de Música de Castelló'),
(95323, 'https://ror.org/00d1dhh09', 'en', 1, 'https://ror.org/00d1dhh09 Dartmouth–Hitchcock Medical Center'),
(95324, 'https://ror.org/00d21gf72', 'en', 1, 'https://ror.org/00d21gf72 International Oceanographic Data and Information Exchange (IODE)'),
(95325, 'https://ror.org/00d496d44', 'no_lang_code', 1, 'https://ror.org/00d496d44 PREreview'),
(95326, 'https://ror.org/00d4pqn65', 'en', 1, 'https://ror.org/00d4pqn65 Vaccine and Gene Therapy Institute'),
(95327, 'https://ror.org/00d5dd272', 'en', 1, 'https://ror.org/00d5dd272 Barcelona Graduate School of Mathematics'),
(95328, 'https://ror.org/00d810y44', 'no_lang_code', 1, 'https://ror.org/00d810y44 Sequoia Sciences (United States)'),
(95329, 'https://ror.org/00d9ah105', 'en', 1, 'https://ror.org/00d9ah105 Universidad de California en Merced University of California, Merced UniversitƩ de Californie Ơ Merced'),
(95330, 'https://ror.org/00dc8gj51', 'es', 1, 'https://ror.org/00dc8gj51 Fundación Universidad Empresa de la Región de Murcia'),
(95331, 'https://ror.org/00dcq6866', 'en', 1, 'https://ror.org/00dcq6866 Earthquake Science Center'),
(95332, 'https://ror.org/00dcrfk74', 'fr', 1, 'https://ror.org/00dcrfk74 ARMINES'),
(95333, 'https://ror.org/00deq0f50', 'id', 1, 'https://ror.org/00deq0f50 Universitas Pelita Bangsa'),
(95334, 'https://ror.org/00df3z122', 'en', 1, 'https://ror.org/00df3z122 Comprehensive Cancer Center Vienna'),
(95335, 'https://ror.org/00dfrf681', 'en', 1, 'https://ror.org/00dfrf681 Oil Spill Recovery Institute'),
(95336, 'https://ror.org/00dg3j745', 'en', 1, 'https://ror.org/00dg3j745 Lanzhou Veterinary Research Institute äø­å›½å†œäøšē§‘å­¦é™¢å…°å·žå…½åŒ»ē ”ē©¶ę‰€'),
(95337, 'https://ror.org/00dgcm453', 'en', 1, 'https://ror.org/00dgcm453 Red Española de Esclerosis Múltiple Spanish Multiple Sclerosis Network'),
(95338, 'https://ror.org/00dh5gw98', 'en', 1, 'https://ror.org/00dh5gw98 Ministerul Educației și Cercetării Științifice Ministry of Education'),
(95339, 'https://ror.org/00djwmt25', 'en', 1, 'https://ror.org/00djwmt25 University Grants Committee å¤§å­øę•™č‚²č³‡åŠ©å§”å“”ęœƒ'),
(95340, 'https://ror.org/00dmm3k75', 'en', 1, 'https://ror.org/00dmm3k75 State Key Laboratory of Veterinary Biotechnology å…½åŒ»ē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95341, 'https://ror.org/00dmms154', 'fr', 1, 'https://ror.org/00dmms154 Centre de Recherche des Cordeliers Cordeliers Research Centre'),
(95342, 'https://ror.org/00dna7t83', 'pt', 1, 'https://ror.org/00dna7t83 Federal University of Alagoas Universidade Federal de Alagoas'),
(95343, 'https://ror.org/00dnaz088', 'en', 1, 'https://ror.org/00dnaz088 Shanghai Posts & Telecommunications Designing Consulting Institute äøŠęµ·é‚®ē”µč®¾č®”å’ØčÆ¢ē ”ē©¶é™¢ęœ‰é™å…¬åøåˆ›'),
(95344, 'https://ror.org/00dnz3q81', 'es', 1, 'https://ror.org/00dnz3q81 Biobanco del Sistema Sanitario PĆŗblico de AndalucĆ­a'),
(95345, 'https://ror.org/00dq20h52', 'en', 1, 'https://ror.org/00dq20h52 Department of Lands and Natural Resources'),
(95346, 'https://ror.org/00dqsq280', 'en', 1, 'https://ror.org/00dqsq280 Pipeline and Hazardous Materials Safety Administration'),
(95347, 'https://ror.org/00drcz023', 'es', 1, 'https://ror.org/00drcz023 Estación Experimental del Zaidín'),
(95348, 'https://ror.org/00dvg7y05', 'en', 1, 'https://ror.org/00dvg7y05 Boston Children''s Hospital'),
(95349, 'https://ror.org/00dwpjz65', 'en', 1, 'https://ror.org/00dwpjz65 Afrischolar Discovery Initiative'),
(95350, 'https://ror.org/00dy23r24', 'en', 1, 'https://ror.org/00dy23r24 Bagadhar Brahma Kishan College'),
(95351, 'https://ror.org/00dy3ee97', 'fr', 0, 'https://ror.org/00dy3ee97 Diplomatique'),
(95352, 'https://ror.org/00dy6h529', 'de', 1, 'https://ror.org/00dy6h529 Paracelsus-Kliniken'),
(95353, 'https://ror.org/00e0yz255', 'no_lang_code', 1, 'https://ror.org/00e0yz255 Certis Europe (The Netherlands)'),
(95354, 'https://ror.org/00e17m144', 'no_lang_code', 1, 'https://ror.org/00e17m144 State Grid Hunan Electric Power Company Limited å›½ē½‘ę¹–å—ēœē”µåŠ›ęœ‰é™å…¬åø'),
(95355, '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'),
(95356, 'https://ror.org/00e50mf91', 'en', 1, 'https://ror.org/00e50mf91 International Network of Nuclear Reaction Data Centres'),
(95357, 'https://ror.org/00e72by15', 'en', 1, 'https://ror.org/00e72by15 U.S. Army Combat Capabilities Development Command Aviation & Missile Center'),
(95358, 'https://ror.org/00e7vz537', 'en', 1, 'https://ror.org/00e7vz537 International Rett syndrome Foundation'),
(95359, 'https://ror.org/00ebd0j26', 'id', 1, 'https://ror.org/00ebd0j26 Institut Agama Islam Almuslim Aceh'),
(95360, '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'),
(95361, 'https://ror.org/00ee40h97', 'en', 1, 'https://ror.org/00ee40h97 The Barbara Ann Karmanos Cancer Institute'),
(95362, 'https://ror.org/00eeef580', 'en', 1, 'https://ror.org/00eeef580 State Key Laboratory of Stem Cell and Reproductive Biology å¹²ē»†čƒžäøŽē”Ÿę®–ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95363, 'https://ror.org/00eftnx64', 'pt', 1, 'https://ror.org/00eftnx64 Federal University of Campina Grande Universidade Federal de Campina Grande'),
(95364, 'https://ror.org/00ek90y03', 'id', 1, 'https://ror.org/00ek90y03 Universitas Karya Husada Semarang');
INSERT INTO `rors` VALUES
(95365, 'https://ror.org/00en9ce74', 'en', 1, 'https://ror.org/00en9ce74 Research and Innovation Foundation ĪŠĪ“ĻĻ…Ī¼Ī± ĪˆĻĪµĻ…Ī½Ī±Ļ‚ και ĪšĪ±Ī¹Ī½ĪæĻ„ĪæĪ¼ĪÆĪ±Ļ‚'),
(95366, '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'),
(95367, 'https://ror.org/00ep91e20', 'en', 1, 'https://ror.org/00ep91e20 New Mexico Water Science Center'),
(95368, 'https://ror.org/00epner96', 'en', 1, 'https://ror.org/00epner96 Bellvitge University Hospital Hospital Universitari de Bellvitge'),
(95369, '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'),
(95370, 'https://ror.org/00erq5j83', 'es', 1, 'https://ror.org/00erq5j83 Laboratorio Central de Sanitas Sanitas Central Laboratory'),
(95371, 'https://ror.org/00etaks59', 'en', 1, 'https://ror.org/00etaks59 University of Health Sciences'),
(95372, 'https://ror.org/00evhj411', 'en', 1, 'https://ror.org/00evhj411 Franciscan Health Mooresville'),
(95373, 'https://ror.org/00ew61678', 'en', 1, 'https://ror.org/00ew61678 Strategic Environmental Research and Development Program'),
(95374, 'https://ror.org/00ex3dr91', 'en', 1, 'https://ror.org/00ex3dr91 Shanghai Research Institute of Chemical Industry'),
(95375, 'https://ror.org/00ezt2m63', 'no_lang_code', 1, 'https://ror.org/00ezt2m63 ThermoAnalytics (United States)'),
(95376, 'https://ror.org/00f2pe266', 'en', 1, 'https://ror.org/00f2pe266 Institut Agama Islam Tafaqquh Fiddin Dumai'),
(95377, 'https://ror.org/00f3x4340', 'es', 1, 'https://ror.org/00f3x4340 Instituto EspaƱol de Oceanografƭa'),
(95378, 'https://ror.org/00f4b9c78', 'en', 1, 'https://ror.org/00f4b9c78 Aequitas Victoria Foundation'),
(95379, 'https://ror.org/00f5trr09', 'en', 1, 'https://ror.org/00f5trr09 National Center for Public Health Informatics'),
(95380, 'https://ror.org/00f7n9887', 'en', 1, 'https://ror.org/00f7n9887 Special Pathogens Research Network Ltd.'),
(95381, 'https://ror.org/00f7srh09', 'fr', 1, 'https://ror.org/00f7srh09 XLIM'),
(95382, 'https://ror.org/00f8man71', 'en', 1, 'https://ror.org/00f8man71 Indiana State University'),
(95383, 'https://ror.org/00f93gc02', 'en', 1, 'https://ror.org/00f93gc02 Vehicle Technologies Office'),
(95384, 'https://ror.org/00fac2s97', 'it', 1, 'https://ror.org/00fac2s97 Istituto Avventista Villa Aurora'),
(95385, 'https://ror.org/00ferh011', 'it', 0, 'https://ror.org/00ferh011 Istituti Clinici di Perfezionamento'),
(95386, 'https://ror.org/00ff7m882', 'en', 1, 'https://ror.org/00ff7m882 State Key Laboratory of Biogenic Fiber Manufacturing Technology ē”Ÿē‰©ęŗēŗ¤ē»“åˆ¶é€ ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95387, 'https://ror.org/00ffkqt27', 'en', 1, 'https://ror.org/00ffkqt27 Collaborative Innovation Centre for Advanced Ship and Deep-Sea Exploration é«˜ę–°čˆ¹čˆ¶äøŽę·±ęµ·å¼€å‘č£…å¤‡ååŒåˆ›ę–°äø­åæƒ'),
(95388, 'https://ror.org/00ffy1726', 'en', 1, 'https://ror.org/00ffy1726 Earth Resources Observation and Science Center'),
(95389, 'https://ror.org/00fg6nx42', 'no_lang_code', 1, 'https://ror.org/00fg6nx42 Raytheon Technologies (Italy)'),
(95390, 'https://ror.org/00fgdrw78', 'en', 1, 'https://ror.org/00fgdrw78 Ural Scientific Research Institute for Metrology Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(95391, 'https://ror.org/00fj8a872', 'en', 1, 'https://ror.org/00fj8a872 Office of the Director'),
(95392, 'https://ror.org/00fkwx227', 'es', 1, 'https://ror.org/00fkwx227 Instituto de la Grasa'),
(95393, 'https://ror.org/00fna1f74', 'no_lang_code', 1, 'https://ror.org/00fna1f74 Toray (Thailand)'),
(95394, 'https://ror.org/00fp4q488', 'en', 1, 'https://ror.org/00fp4q488 European Orthodontic Society Europäische Gesellschaft für Orthodontie'),
(95395, 'https://ror.org/00fp8jg78', 'id', 1, 'https://ror.org/00fp8jg78 Universitas Mega Buana Palopo'),
(95396, 'https://ror.org/00fpjq451', 'en', 1, 'https://ror.org/00fpjq451 Case Comprehensive Cancer Center'),
(95397, 'https://ror.org/00fpvte21', 'en', 1, 'https://ror.org/00fpvte21 Arts University Plymouth'),
(95398, 'https://ror.org/00ft4te83', 'en', 1, 'https://ror.org/00ft4te83 Naučni institut za veterinarstvo Srbije, ŠŠ°ŃƒŃ‡Š½Šø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ветеринарство Š”Ń€Š±ŠøŃ˜Šµ Scientific Institute for Veterinary Medicine of Serbia'),
(95399, 'https://ror.org/00ft6nj33', 'en', 1, 'https://ror.org/00ft6nj33 Shenyang Institute of Automation äø­å›½ē§‘å­¦é™¢ę²ˆé˜³č‡ŖåŠØåŒ–ē ”ē©¶ę‰€'),
(95400, 'https://ror.org/00fta5x15', 'es', 1, 'https://ror.org/00fta5x15 Centro MƩdico Sanitas Artaza Sanitas Artaza Medical Centre'),
(95401, 'https://ror.org/00ftncg25', 'no_lang_code', 0, 'https://ror.org/00ftncg25 Bunker Ramo (United States)'),
(95402, 'https://ror.org/00fwjkb59', 'fr', 1, 'https://ror.org/00fwjkb59 Grenoble Applied Economics Lab Laboratoire d''Economie AppliquƩe de Grenoble'),
(95403, 'https://ror.org/00fxh9j50', 'en', 1, 'https://ror.org/00fxh9j50 Shanghai Yangpu Senior High School äøŠęµ·åø‚ęØęµ¦é«˜ēŗ§äø­å­¦'),
(95404, 'https://ror.org/00fxnmt68', 'no_lang_code', 1, 'https://ror.org/00fxnmt68 Boeing (Spain)'),
(95405, 'https://ror.org/00fyvtf62', 'en', 1, 'https://ror.org/00fyvtf62 American Samoa Department of Homeland Security'),
(95406, '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'),
(95407, 'https://ror.org/00fzg0656', 'en', 1, 'https://ror.org/00fzg0656 Crystal Impact, Crystal Impact (Germany)'),
(95408, 'https://ror.org/00fzhcx31', 'en', 1, 'https://ror.org/00fzhcx31 The Darwin Trust of Edinburgh'),
(95409, 'https://ror.org/00g1jn849', 'en', 0, 'https://ror.org/00g1jn849 Centre on Innovation and Energy Demand'),
(95410, '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'),
(95411, 'https://ror.org/00g3xxn90', 'en', 1, 'https://ror.org/00g3xxn90 Departamento de Salud de Puerto Rico Puerto Rico Department of Health'),
(95412, 'https://ror.org/00g51hv48', 'en', 1, 'https://ror.org/00g51hv48 State Key Laboratory of Metastable Materials Science and Technology äŗšēØ³ęę–™åˆ¶å¤‡ęŠ€ęœÆäøŽē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95413, 'https://ror.org/00g76w893', 'en', 1, 'https://ror.org/00g76w893 ARC Centre for Nanoscale BioPhotonics'),
(95414, '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'),
(95415, 'https://ror.org/00g8ggv10', 'fr', 1, 'https://ror.org/00g8ggv10 CƩgep GƩrald-Godin'),
(95416, 'https://ror.org/00g8hms52', 'en', 1, 'https://ror.org/00g8hms52 Administration for Children and Families'),
(95417, 'https://ror.org/00g8nr938', 'en', 1, 'https://ror.org/00g8nr938 Barnes-Jewish West County Hospital'),
(95418, 'https://ror.org/00g9zze16', 'en', 1, 'https://ror.org/00g9zze16 Tashenev University Жұмабек Š¢Ó™ŃˆŠµŠ½ŠµŠ² атынГағы Университеті'),
(95419, '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'),
(95420, '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'),
(95421, 'https://ror.org/00gjj5n39', 'en', 1, 'https://ror.org/00gjj5n39 Universidad Internacional Valenciana Valencian International University'),
(95422, 'https://ror.org/00gjmje40', 'en', 1, 'https://ror.org/00gjmje40 Samsung Science and Technology Foundation (South Korea) ģ‚¼ģ„±ėÆøėž˜źø°ģˆ ģœ”ģ„±ģž¬ė‹Ø'),
(95423, 'https://ror.org/00gjnn020', 'es', 1, 'https://ror.org/00gjnn020 Instituto Universitario de Integración en la Comunidad'),
(95424, 'https://ror.org/00gm7ct78', 'fr', 1, 'https://ror.org/00gm7ct78 Centre d''Ʃtudes internationales et europƩennes'),
(95425, 'https://ror.org/00gm8tg57', 'en', 1, 'https://ror.org/00gm8tg57 Ministry of Steel'),
(95426, 'https://ror.org/00gmyaa84', 'no_lang_code', 1, 'https://ror.org/00gmyaa84 Jilin Jiangji Special Industries Co., Ltd (China) å‰ęž—ę±Ÿęœŗē‰¹ē§å·„äøšęœ‰é™å…¬åø'),
(95427, 'https://ror.org/00gmyvv50', 'en', 1, 'https://ror.org/00gmyvv50 Alberta Children''s Hospital Research Institute'),
(95428, 'https://ror.org/00grd1h17', 'no_lang_code', 1, 'https://ror.org/00grd1h17 Medtronic (United States)'),
(95429, 'https://ror.org/00gstww93', 'ca', 1, 'https://ror.org/00gstww93 AQU Catalunya AgĆØncia per a la Qualitat del Sistema Universitari de Catalunya'),
(95430, 'https://ror.org/00gy2ar74', 'ca', 1, 'https://ror.org/00gy2ar74 Institut de Recerca Sant Joan de DƩu'),
(95431, 'https://ror.org/00gyb4719', 'fr', 1, 'https://ror.org/00gyb4719 Labex ARBRE'),
(95432, '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'),
(95433, 'https://ror.org/00h3hwc05', 'en', 1, 'https://ror.org/00h3hwc05 Bristol General Hospital'),
(95434, 'https://ror.org/00h3w1m15', 'en', 1, 'https://ror.org/00h3w1m15 King Fahad National Library Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(95435, 'https://ror.org/00h40a794', 'en', 1, 'https://ror.org/00h40a794 International Ice Hockey Federation'),
(95436, 'https://ror.org/00h52n341', 'en', 1, 'https://ror.org/00h52n341 Changchun Institute of Applied Chemistry äø­å›½ē§‘å­¦é™¢é•æę˜„åŗ”ē”ØåŒ–å­¦ē ”ē©¶ę‰€'),
(95437, 'https://ror.org/00h7j7268', 'nl', 1, 'https://ror.org/00h7j7268 Missiemuseum Mission Museum'),
(95438, 'https://ror.org/00h88tf73', 'en', 1, 'https://ror.org/00h88tf73 IGRAC'),
(95439, 'https://ror.org/00ha14p11', 'en', 1, 'https://ror.org/00ha14p11 Visvesvaraya Technological University ą¤µą¤æą¤¶ą„ą¤µą„‡ą¤¶ą„ą¤µą¤°ą¤Æą„ą¤Æą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¬ą¦æą¦¶ą§ą¦¬ą§‡ą¦¶ą§ą¦¬ą¦°ą¦¾ą¦Æą¦¼ą¦¾ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą®µą®æą®øąÆą®µąÆ‡ą®øąÆą®µą®°ą®ÆąÆą®Æą®¾ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą²µą²æą²¶ą³ą²µą³‡ą²¶ą³ą²µą²°ą²Æą³ą²Æ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(95440, 'https://ror.org/00habjq51', 'no_lang_code', 1, 'https://ror.org/00habjq51 Aptar (United States)'),
(95441, 'https://ror.org/00heb4d89', 'en', 1, 'https://ror.org/00heb4d89 Geothermal Technologies Office'),
(95442, 'https://ror.org/00heqy247', 'en', 1, 'https://ror.org/00heqy247 New Jersey Water Science Center'),
(95443, 'https://ror.org/00hrmgq26', 'pt', 1, 'https://ror.org/00hrmgq26 Hospital UniversitƔrio Pedro Ernesto'),
(95444, 'https://ror.org/00hs7dr46', 'en', 1, 'https://ror.org/00hs7dr46 Ural Federal University Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(95445, 'https://ror.org/00hsc2364', 'es', 1, 'https://ror.org/00hsc2364 Institute of Plant Biochemistry and Photosynthesis Instituto de BioquĆ­mica Vegetal y FotosĆ­ntesis'),
(95446, 'https://ror.org/00htph268', 'en', 1, 'https://ror.org/00htph268 Office of Under Secretary for Science and Innovation'),
(95447, 'https://ror.org/00hvbwp12', 'en', 1, 'https://ror.org/00hvbwp12 Office of the Chief Information Officer'),
(95448, 'https://ror.org/00hwp9n14', 'en', 1, 'https://ror.org/00hwp9n14 Real Orquesta Sinfónica de Sevilla Royal Seville Symphony Orchestra'),
(95449, 'https://ror.org/00j35ca78', 'fr', 0, 'https://ror.org/00j35ca78 Nutrition et Alimentation des Populations aux Suds'),
(95450, 'https://ror.org/00j39jc12', 'no_lang_code', 1, 'https://ror.org/00j39jc12 Syreon Corporation Syreon Corporation (Canada)'),
(95451, 'https://ror.org/00j4pev45', 'en', 1, 'https://ror.org/00j4pev45 Mercy''s Wing Foundation'),
(95452, 'https://ror.org/00j5kgp20', 'en', 1, 'https://ror.org/00j5kgp20 Faculty of Mechanical Engineering and Naval Architecture in Zagreb Fakultet strojarstva i brodogradnje'),
(95453, 'https://ror.org/00j7bab93', 'en', 1, 'https://ror.org/00j7bab93 Ho Technical University'),
(95454, 'https://ror.org/00j7dz696', 'da', 1, 'https://ror.org/00j7dz696 Landbrugsstyrelsen'),
(95455, 'https://ror.org/00j9bjx58', 'en', 1, 'https://ror.org/00j9bjx58 Clinical Research Network Thames Valley and South Midlands'),
(95456, 'https://ror.org/00j9qzp88', 'en', 1, 'https://ror.org/00j9qzp88 Nordic International University Xalqaro Nordik universiteti ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет ŠŠ¾Ń€Š“ŠøŠŗ'),
(95457, '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'),
(95458, 'https://ror.org/00jb20a14', 'fr', 1, 'https://ror.org/00jb20a14 Laboratoire Interfaces et SystĆØmes Ɖlectrochimiques'),
(95459, 'https://ror.org/00jb9vg53', 'es', 1, 'https://ror.org/00jb9vg53 Universidad del Valle University of Valle'),
(95460, 'https://ror.org/00jc20583', 'en', 1, 'https://ror.org/00jc20583 Universidad de Colorado University of Colorado System UniversitƩ du Colorado'),
(95461, 'https://ror.org/00jc3bm81', 'no_lang_code', 1, 'https://ror.org/00jc3bm81 CDI Laboratories (United States)'),
(95462, 'https://ror.org/00jdxsj17', 'pt', 1, 'https://ror.org/00jdxsj17 Governo do Estado do Rio Grande do Sul'),
(95463, 'https://ror.org/00jerb145', 'en', 1, 'https://ror.org/00jerb145 Washington Hospital'),
(95464, 'https://ror.org/00jhf9987', 'en', 1, 'https://ror.org/00jhf9987 State Key Laboratory of Soil and Sustainable Agriculture åœŸå£¤äøŽå†œäøšåÆęŒē»­å‘å±•å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95465, 'https://ror.org/00jhvev34', 'de', 1, 'https://ror.org/00jhvev34 AiF Projekt GmbH'),
(95466, 'https://ror.org/00jks2h96', 'en', 1, 'https://ror.org/00jks2h96 Department of Agriculture, Fisheries and Forestry'),
(95467, 'https://ror.org/00jkz9152', 'es', 1, 'https://ror.org/00jkz9152 Hospital Universitario de Guadalajara'),
(95468, 'https://ror.org/00jqszb68', 'en', 1, 'https://ror.org/00jqszb68 Beijing Huajia University'),
(95469, 'https://ror.org/00jtpba20', 'en', 1, 'https://ror.org/00jtpba20 Breast Cancer Action'),
(95470, 'https://ror.org/00jvtsq80', 'en', 1, 'https://ror.org/00jvtsq80 St. Francis Hospital in Federal Way'),
(95471, 'https://ror.org/00jxb4047', 'en', 1, 'https://ror.org/00jxb4047 State Key Laboratory of Microwave and Digital Communication Technology å¾®ę³¢äøŽę•°å­—é€šäæ”ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95472, 'https://ror.org/00jydkt05', 'en', 1, 'https://ror.org/00jydkt05 Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ УчрежГение Š’Ń‹ŃŃˆŠµŠ³Š¾ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ā«Š·Š°ŠæŠ¾Š»ŃŃ€Š½Ń‹Š¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет Им. Š.М. ФеГоровского»'),
(95473, 'https://ror.org/00k0e5n49', 'no_lang_code', 1, 'https://ror.org/00k0e5n49 China Railway Bridge and Tunnel Technologies Co. Ltd. (China) äø­é“ę”„éš§ęŠ€ęœÆęœ‰é™å…¬åø'),
(95474, 'https://ror.org/00k44np55', 'en', 1, 'https://ror.org/00k44np55 U.S. Army Redstone Test Center'),
(95475, 'https://ror.org/00k4n9847', 'en', 1, 'https://ror.org/00k4n9847 National Autism Association'),
(95476, 'https://ror.org/00k597r55', 'es', 1, 'https://ror.org/00k597r55 Fundación Ignacio Larramendi'),
(95477, 'https://ror.org/00k5x3m24', 'no_lang_code', 1, 'https://ror.org/00k5x3m24 Altice Portugal (Portugal)'),
(95478, 'https://ror.org/00k8xcc25', 'en', 1, 'https://ror.org/00k8xcc25 Saudi Arabia Cultural Bureau in London'),
(95479, 'https://ror.org/00kapac04', 'fr', 0, 'https://ror.org/00kapac04 Des Maladies RƩnales Rares aux Maladies FrƩquentes, Remodelage et RƩparation'),
(95480, 'https://ror.org/00kb8e717', 'en', 1, 'https://ror.org/00kb8e717 Samarkand branch of Tashkent State University of Economics Toshkent davlat iqtisodiyot universiteti samarqand filiali Филиал Š¢Š°ŃˆŠŗŠµŠ½Ń‚ского Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Экономического Университета'),
(95481, 'https://ror.org/00kgb4w19', 'pt', 1, 'https://ror.org/00kgb4w19 Prefeitura da Cidade do Recife'),
(95482, 'https://ror.org/00kjkc475', 'no_lang_code', 1, 'https://ror.org/00kjkc475 Regatron (Switzerland)'),
(95483, 'https://ror.org/00kk8cj26', 'fr', 1, 'https://ror.org/00kk8cj26 Laboratoire de psychologie Caen Normandie'),
(95484, 'https://ror.org/00km40770', 'en', 1, 'https://ror.org/00km40770 Office of Environmental Management'),
(95485, 'https://ror.org/00kneq391', 'en', 1, 'https://ror.org/00kneq391 Laboratory Orofacial Pathologies, Imaging and Biotherapies Pathologie, Imagerie et BiothƩrapies orofaciales'),
(95486, 'https://ror.org/00knt4f32', 'en', 1, 'https://ror.org/00knt4f32 Chan Zuckerberg Biohub San Francisco'),
(95487, 'https://ror.org/00knwwq96', 'en', 1, 'https://ror.org/00knwwq96 Hunan Provincial Expressway Group Co., Ltd, Hunan Provincial Expressway Group Co., Ltd (China) ę¹–å—é«˜é€Ÿå…¬č·Æé›†å›¢ęœ‰é™å…¬åø'),
(95488, 'https://ror.org/00kr24y60', 'fr', 1, 'https://ror.org/00kr24y60 Institut Langevin Langevin Institute'),
(95489, 'https://ror.org/00kr9ba60', 'en', 1, 'https://ror.org/00kr9ba60 Jannat Iraq College ŁƒŁ„ŁŠŲ© جنات العراق'),
(95490, 'https://ror.org/00krdxg91', 'en', 1, 'https://ror.org/00krdxg91 Ono Medical Research Foundation'),
(95491, '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'),
(95492, 'https://ror.org/00krsne85', 'en', 1, 'https://ror.org/00krsne85 Mindanao State University - Maguindanao'),
(95493, 'https://ror.org/00kt3nk56', 'en', 1, 'https://ror.org/00kt3nk56 University of Hawaii Cancer Center'),
(95494, 'https://ror.org/00kvk1853', 'de', 1, 'https://ror.org/00kvk1853 Verband der Chemischen Industrie'),
(95495, 'https://ror.org/00kwnx126', 'pt', 1, 'https://ror.org/00kwnx126 Federal University of PiauĆ­ Universidade Federal do PiauĆ­'),
(95496, 'https://ror.org/00kxqbw45', 'es', 1, 'https://ror.org/00kxqbw45 Hospital Virgen del Valle'),
(95497, 'https://ror.org/00kysqk08', 'en', 1, 'https://ror.org/00kysqk08 State Key Laboratory of Integrated Service Network Theory and Key Technology ē»¼åˆäøšåŠ”ē½‘ē†č®ŗåŠå…³é”®ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95498, 'https://ror.org/00kzsxx38', 'fr', 1, 'https://ror.org/00kzsxx38 Groupe d''Ɖtude des MĆ©thodes de l''Analyse Sociologique de la Sorbonne'),
(95499, 'https://ror.org/00m00xg10', 'en', 1, 'https://ror.org/00m00xg10 Scientific Research WorkS Peer Support Group'),
(95500, 'https://ror.org/00m4czf33', 'en', 1, 'https://ror.org/00m4czf33 China Institute of Water Resources and Hydropower Research äø­å›½ę°“åˆ©ę°“ē”µē§‘å­¦ē ”ē©¶é™¢'),
(95501, 'https://ror.org/00m4dh193', 'en', 1, 'https://ror.org/00m4dh193 Amphibian Ark'),
(95502, 'https://ror.org/00m6gtd76', 'fr', 1, 'https://ror.org/00m6gtd76 Laboratoire de Glycobiologie et Matrice Extracellulaire VƩgƩtale'),
(95503, 'https://ror.org/00m98kt33', 'en', 1, 'https://ror.org/00m98kt33 Agricultural Research Institute'),
(95504, 'https://ror.org/00mabkc31', 'en', 1, 'https://ror.org/00mabkc31 CHORUS'),
(95505, 'https://ror.org/00mccb878', 'no_lang_code', 0, 'https://ror.org/00mccb878 IberEspacio (Spain)'),
(95506, 'https://ror.org/00md3qm14', 'fr', 1, 'https://ror.org/00md3qm14 Ecole Mohammadia d''IngĆ©nieurs المدرسة Ų§Ł„Ł…Ų­Ł…ŲÆŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ†'),
(95507, 'https://ror.org/00mdx2x22', 'fr', 1, 'https://ror.org/00mdx2x22 Laboratoire Printemps'),
(95508, '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'),
(95509, 'https://ror.org/00mexna55', 'en', 1, 'https://ror.org/00mexna55 U.S. Army Space and Missile Defense Command Technical Center'),
(95510, 'https://ror.org/00mj5vx34', 'ms', 1, 'https://ror.org/00mj5vx34 UTP Foundation Yayasan UTP'),
(95511, 'https://ror.org/00mkz4t33', 'en', 1, 'https://ror.org/00mkz4t33 BIMM University'),
(95512, 'https://ror.org/00mmn6b08', 'en', 1, 'https://ror.org/00mmn6b08 Office of Science'),
(95513, 'https://ror.org/00mmnz357', 'pt', 1, 'https://ror.org/00mmnz357 Hospital UniversitƔrio Onofre Lopes'),
(95514, 'https://ror.org/00mmpjq16', 'en', 1, 'https://ror.org/00mmpjq16 Suzhou Yongding Hospital ęµ·å‰äŗšč‹å·žę°øé¼ŽåŒ»é™¢'),
(95515, 'https://ror.org/00mpdg388', 'es', 1, 'https://ror.org/00mpdg388 Complejo Hospitalario Universitario de Santiago USC University Hospital Complex'),
(95516, 'https://ror.org/00mryrd39', 'fr', 1, 'https://ror.org/00mryrd39 Patrimoines locaux, Environnement et Globalisation'),
(95517, 'https://ror.org/00ms48f15', 'en', 1, 'https://ror.org/00ms48f15 Air Force Medical University ē©ŗå†›å†›åŒ»å¤§å­¦'),
(95518, 'https://ror.org/00msgsf28', 'ca', 1, 'https://ror.org/00msgsf28 Fundació Bosch i Gimpera'),
(95519, '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'),
(95520, 'https://ror.org/00mv6sv71', 'en', 1, 'https://ror.org/00mv6sv71 SveučiliŔte u Zagrebu University of Zagreb'),
(95521, 'https://ror.org/00mw1dx44', 'en', 1, 'https://ror.org/00mw1dx44 Office of Public Affairs'),
(95522, 'https://ror.org/00mwew271', 'en', 1, 'https://ror.org/00mwew271 State Key Laboratory of Semiconductor Superlattice åŠåÆ¼ä½“č¶…ę™¶ę ¼å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95523, 'https://ror.org/00my5c754', 'es', 1, 'https://ror.org/00my5c754 Centro MƩdico Sanitas A CoruƱa Sanitas A CoruƱa Medical Centre'),
(95524, 'https://ror.org/00myw9y39', 'en', 1, 'https://ror.org/00myw9y39 Achucarro Basque Center for Neuroscience Centro Vasco de Investigación en Neurociencia'),
(95525, 'https://ror.org/00n1nz186', 'no_lang_code', 1, 'https://ror.org/00n1nz186 Kurchatov Institute ŠšŃƒŃ€Ń‡Š°Ń‚Š¾Š²ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(95526, 'https://ror.org/00n4kg172', 'en', 1, 'https://ror.org/00n4kg172 Grid Deployment Office'),
(95527, 'https://ror.org/00n6rde07', 'en', 1, 'https://ror.org/00n6rde07 Institute of Haematology and Blood Transfusion Ústav hematologie a krevní transfuze'),
(95528, 'https://ror.org/00n6tay20', 'fr', 1, 'https://ror.org/00n6tay20 National Engineering School of Sfax Ɖcole nationale d''IngĆ©nieurs de Sfax المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† بصفاقس'),
(95529, 'https://ror.org/00n9f0r32', 'de', 1, 'https://ror.org/00n9f0r32 Thüringer Ministerium für Wirtschaft, Wissenschaft und Digitale Gesellschaft'),
(95530, 'https://ror.org/00na1dz18', 'en', 1, 'https://ror.org/00na1dz18 American Bird Conservancy'),
(95531, 'https://ror.org/00nc7q809', 'en', 1, 'https://ror.org/00nc7q809 Patrick Berthoud Charitable Trust'),
(95532, 'https://ror.org/00ndyev54', 'en', 1, 'https://ror.org/00ndyev54 NOAA National Centers for Environmental Prediction'),
(95533, 'https://ror.org/00nffqq91', 'en', 1, 'https://ror.org/00nffqq91 Johnson Cancer Research Center'),
(95534, 'https://ror.org/00nhtcg76', 'en', 1, 'https://ror.org/00nhtcg76 University of Monastir UniversitĆ© de monastir Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†Ų³ŲŖŁŠŲ±'),
(95535, 'https://ror.org/00njafa27', 'fr', 1, 'https://ror.org/00njafa27 Complications Cardiovasculaires et MƩtaboliques chez les patients vivant avec le VIH'),
(95536, 'https://ror.org/00nm7mw87', 'en', 1, 'https://ror.org/00nm7mw87 Forestry and Agricultural Biotechnology Institute'),
(95537, 'https://ror.org/00nn53y54', 'en', 1, 'https://ror.org/00nn53y54 State Key Laboratory of Medical Neurobiology åŒ»å­¦ē„žē»ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95538, 'https://ror.org/00nqpc320', 'en', 1, 'https://ror.org/00nqpc320 Cooperative Research Units'),
(95539, 'https://ror.org/00nr72m18', 'en', 1, 'https://ror.org/00nr72m18 Action to Cure Kidney Cancer'),
(95540, 'https://ror.org/00ntbvq76', 'en', 1, 'https://ror.org/00ntbvq76 CHU Dinant Godinne UCL Namur'),
(95541, 'https://ror.org/00nwp9g54', 'en', 1, 'https://ror.org/00nwp9g54 Institute of Particle and Nuclear Studies ē“ ē²’å­åŽŸå­ę øē ”ē©¶ę‰€'),
(95542, 'https://ror.org/00nwtj239', 'fr', 1, 'https://ror.org/00nwtj239 Laboratoire de MinƩralogie & Cosmochimie du MusƩum'),
(95543, 'https://ror.org/00nxewv32', 'no_lang_code', 1, 'https://ror.org/00nxewv32 Modul-Bio (France)'),
(95544, 'https://ror.org/00nxtdr22', 'en', 1, 'https://ror.org/00nxtdr22 The Royal Children''s Hospital Foundation'),
(95545, 'https://ror.org/00nycge49', 'en', 1, 'https://ror.org/00nycge49 State Key Laboratory of Isotope Geochemistry åŒä½ē“ åœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95546, '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'),
(95547, 'https://ror.org/00nzsxq20', 'en', 1, 'https://ror.org/00nzsxq20 National Centre for Nuclear Research'),
(95548, 'https://ror.org/00nzxdq35', 'en', 1, 'https://ror.org/00nzxdq35 Naval Research Laboratory Ocean Sciences Division'),
(95549, 'https://ror.org/00p094v10', 'es', 1, 'https://ror.org/00p094v10 Universidad Nacional de Hurlingham'),
(95550, 'https://ror.org/00p0app75', 'es', 1, 'https://ror.org/00p0app75 Observatorio CientĆ­fico Comercio Interior'),
(95551, 'https://ror.org/00p1tkb89', 'en', 0, 'https://ror.org/00p1tkb89 Rubin'),
(95552, 'https://ror.org/00p2ftz29', 'en', 1, 'https://ror.org/00p2ftz29 Atlas of Variant Effects Alliance'),
(95553, 'https://ror.org/00p2m7w82', 'en', 1, 'https://ror.org/00p2m7w82 Academy of Neonatal Nursing'),
(95554, 'https://ror.org/00p4n8p47', 'en', 1, 'https://ror.org/00p4n8p47 Presbyterian College of Education'),
(95555, 'https://ror.org/00p4y7r37', 'en', 1, 'https://ror.org/00p4y7r37 IARIA'),
(95556, 'https://ror.org/00p6app11', 'en', 1, 'https://ror.org/00p6app11 Office of Renewable Energy'),
(95557, 'https://ror.org/00p7f7z86', 'en', 1, 'https://ror.org/00p7f7z86 Waltham Centre for Pet Nutrition'),
(95558, 'https://ror.org/00p991c53', 'en', 1, 'https://ror.org/00p991c53 Huazhong University of Science and Technology åŽäø­ē§‘ęŠ€å¤§å­¦'),
(95559, 'https://ror.org/00p99t114', 'no_lang_code', 1, 'https://ror.org/00p99t114 Abbott Nutrition (United States)'),
(95560, 'https://ror.org/00p9vpz11', 'pt', 1, 'https://ror.org/00p9vpz11 Federal University of ParaĆ­ba Universidade Federal da ParaĆ­ba'),
(95561, 'https://ror.org/00pa9y269', 'en', 1, 'https://ror.org/00pa9y269 South Bristol Community Hospital'),
(95562, 'https://ror.org/00pafhn94', 'en', 1, 'https://ror.org/00pafhn94 China Chemical Safety Association äø­å›½åŒ–å­¦å“å®‰å…Øåä¼š'),
(95563, 'https://ror.org/00pb7yd26', 'en', 1, 'https://ror.org/00pb7yd26 Women University of Azad Jammu & Kashmir Bagh'),
(95564, 'https://ror.org/00pbqgm18', 'fr', 0, 'https://ror.org/00pbqgm18'),
(95565, 'https://ror.org/00pcwya82', 'en', 1, 'https://ror.org/00pcwya82 CamEd Business School'),
(95566, 'https://ror.org/00pd5rv22', 'en', 1, 'https://ror.org/00pd5rv22 Illinois Department of Agriculture'),
(95567, 'https://ror.org/00pdd0432', 'fr', 1, 'https://ror.org/00pdd0432 Centre de Recherche en Neurosciences de Lyon Lyon Neuroscience Research Center'),
(95568, 'https://ror.org/00pdx2849', 'ca', 1, 'https://ror.org/00pdx2849 Consejeria de Sanidad Conselleria de Sanitat Universal i Salut PĆŗblica'),
(95569, 'https://ror.org/00pebsc23', 'en', 1, 'https://ror.org/00pebsc23 RPH Research Foundation'),
(95570, 'https://ror.org/00pewg788', 'en', 1, 'https://ror.org/00pewg788 Belügyminisztérium Ministry of Interior'),
(95571, 'https://ror.org/00pffe521', 'en', 1, 'https://ror.org/00pffe521 Arrupe Jesuit University'),
(95572, 'https://ror.org/00pfv5508', 'es', 1, 'https://ror.org/00pfv5508 Escuela Militar de IngenierĆ­a'),
(95573, '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'),
(95574, 'https://ror.org/00pgg9c81', 'no_lang_code', 1, 'https://ror.org/00pgg9c81 Chunghwa Picture Tubes (Taiwan) äø­čÆę˜ ē®”č‚”ä»½ęœ‰é™å…¬åø'),
(95575, 'https://ror.org/00pn44t17', 'es', 1, 'https://ror.org/00pn44t17 Universidad Mayor'),
(95576, 'https://ror.org/00pnmw534', 'en', 1, 'https://ror.org/00pnmw534 Pacific Marine Resources Institute'),
(95577, 'https://ror.org/00pnp4y96', 'en', 1, 'https://ror.org/00pnp4y96 Government of Pakistan Ų­Ś©ŁˆŁ…ŲŖŁ پاکستان'),
(95578, 'https://ror.org/00pptgy96', 'es', 1, 'https://ror.org/00pptgy96 ConsejerĆ­a de EconomĆ­a, Conocimiento, Empresas y Universidad'),
(95579, 'https://ror.org/00ppxvb66', 'en', 1, 'https://ror.org/00ppxvb66 Office of Energy Policy'),
(95580, 'https://ror.org/00prkya54', 'en', 1, 'https://ror.org/00prkya54 Dalian Institute of Chemical Physics å¤§čæžåŒ–å­¦ē‰©ē†ē ”ē©¶ę‰€'),
(95581, 'https://ror.org/00pvqk557', 'en', 1, 'https://ror.org/00pvqk557 State Key Laboratory of Oral Diseases å£č…”ē–¾ē—…ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95582, 'https://ror.org/00pvy2x95', 'en', 1, 'https://ror.org/00pvy2x95 Wesley Research Institute'),
(95583, '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'),
(95584, 'https://ror.org/00px80p03', 'en', 1, 'https://ror.org/00px80p03 Fraunhofer Institute for Open Communication Systems Fraunhofer-Institut für Offene Kommunikationssysteme'),
(95585, 'https://ror.org/00pyxrd04', 'en', 1, 'https://ror.org/00pyxrd04 Foundation for Strategic Environmental Research'),
(95586, 'https://ror.org/00pz29t13', 'fr', 1, 'https://ror.org/00pz29t13 GESTE - Gestion Territoriale de l''Eau et de l''Environnement'),
(95587, 'https://ror.org/00pz2fp31', 'en', 1, 'https://ror.org/00pz2fp31 Basque Government Eusko Jaurlaritza Goberno Vasco Gobierno Vasco Govern Basc'),
(95588, 'https://ror.org/00q0mwy68', 'en', 1, 'https://ror.org/00q0mwy68 New Zealand Defence Force'),
(95589, 'https://ror.org/00q1brk57', 'en', 1, 'https://ror.org/00q1brk57 Michigan Center for Urban African American Aging Research'),
(95590, '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'),
(95591, 'https://ror.org/00q283y58', 'pt', 1, 'https://ror.org/00q283y58 Fundação Catarinense de Educação Especial'),
(95592, 'https://ror.org/00q2gt621', 'id', 1, 'https://ror.org/00q2gt621 STKIP Paris Barantai'),
(95593, 'https://ror.org/00q3xz126', 'en', 0, 'https://ror.org/00q3xz126 Roswell Park Comprehensive Cancer Center'),
(95594, 'https://ror.org/00q4mnn13', 'en', 1, 'https://ror.org/00q4mnn13 International Economic Association'),
(95595, 'https://ror.org/00q6v6102', 'en', 1, 'https://ror.org/00q6v6102 Spallation Neutron Source'),
(95596, 'https://ror.org/00q919b81', 'en', 1, 'https://ror.org/00q919b81 Ministry of Education'),
(95597, 'https://ror.org/00qa8mx25', 'en', 1, 'https://ror.org/00qa8mx25 Departamento de Educación de Puerto Rico Puerto Rico Department of Education'),
(95598, 'https://ror.org/00qa9vw67', 'en', 1, 'https://ror.org/00qa9vw67 Combat Capabilities Development Command Soldier Center'),
(95599, 'https://ror.org/00qaqj396', 'no_lang_code', 1, 'https://ror.org/00qaqj396 FluxMagic, Inc. FluxMagic, Inc. (United States)'),
(95600, 'https://ror.org/00qbajd92', 'en', 1, 'https://ror.org/00qbajd92 Eurographics'),
(95601, 'https://ror.org/00qdphm77', 'fr', 1, 'https://ror.org/00qdphm77'),
(95602, 'https://ror.org/00qf5qe53', 'en', 1, 'https://ror.org/00qf5qe53 Marie Curie Alumni Association'),
(95603, 'https://ror.org/00qfvpr47', 'es', 1, 'https://ror.org/00qfvpr47 Conservatorio Superior de Música de MÔlaga MÔlaga Superior Conservatory of Music'),
(95604, 'https://ror.org/00qjepm96', 'en', 1, 'https://ror.org/00qjepm96 Trion Tec Radion, Trion Tec Radion (Brazil)'),
(95605, 'https://ror.org/00qk1xk35', 'no_lang_code', 1, 'https://ror.org/00qk1xk35 Plexxikon (United States)'),
(95606, 'https://ror.org/00qkgfc37', 'en', 1, 'https://ror.org/00qkgfc37 South Dakota Agricultural Experiment Station'),
(95607, 'https://ror.org/00qs2pz57', 'ca', 1, 'https://ror.org/00qs2pz57 Gabinet d''Estudis Socials'),
(95608, 'https://ror.org/00qsr9g17', 'en', 1, 'https://ror.org/00qsr9g17 Grace College & Seminary'),
(95609, 'https://ror.org/00qtv5q45', 'en', 1, 'https://ror.org/00qtv5q45 State Key Laboratory of Networking and Switching Technology ē½‘ē»œäøŽäŗ¤ę¢ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95610, 'https://ror.org/00qvx9r67', 'no_lang_code', 1, 'https://ror.org/00qvx9r67 Jiangsu Provincial Academy of Building Research (China) ę±Ÿč‹ēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(95611, 'https://ror.org/00qw1qw03', 'en', 1, 'https://ror.org/00qw1qw03 St. Louis Children''s Hospital'),
(95612, 'https://ror.org/00qwt4a62', 'no_lang_code', 1, 'https://ror.org/00qwt4a62 Accentus Medical (United Kingdom)'),
(95613, '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'),
(95614, 'https://ror.org/00qxcft19', 'de', 1, 'https://ror.org/00qxcft19 Werner Siemens Foundation Werner Siemens-Stiftung'),
(95615, 'https://ror.org/00qxmfv78', 'it', 1, 'https://ror.org/00qxmfv78 Museo delle Scienze'),
(95616, 'https://ror.org/00qy68j92', 'en', 1, 'https://ror.org/00qy68j92 Corewell Health Blodgett Hospital'),
(95617, 'https://ror.org/00qy6se24', 'es', 1, 'https://ror.org/00qy6se24 Asociación de Amigos de la Universidad de Navarra'),
(95618, 'https://ror.org/00qybfa89', 'en', 0, 'https://ror.org/00qybfa89 Donetsk State University'),
(95619, 'https://ror.org/00qyswv14', 'fr', 1, 'https://ror.org/00qyswv14 Laboratoire d’informatique ParallĆ©lisme RĆ©seaux Algorithmes DistribuĆ©s'),
(95620, 'https://ror.org/00qywr187', 'en', 1, 'https://ror.org/00qywr187 Nuclear Energy University Program'),
(95621, 'https://ror.org/00r0jjp97', 'es', 1, 'https://ror.org/00r0jjp97 Confederacion EspaƱola de Organizaciones Empresariales del Metal'),
(95622, 'https://ror.org/00r0qcs48', 'no_lang_code', 1, 'https://ror.org/00r0qcs48 Palobiofarma (Spain)'),
(95623, 'https://ror.org/00r1f3009', 'en', 1, 'https://ror.org/00r1f3009 Western Geographic Science Center'),
(95624, 'https://ror.org/00r1wwd23', 'es', 1, 'https://ror.org/00r1wwd23 Centro Nacional de Aceleradores National Center of Accelerators'),
(95625, 'https://ror.org/00r38f875', 'no_lang_code', 1, 'https://ror.org/00r38f875 i-Sense (South Korea) ćˆœģ•„ģ“ģ„¼ģŠ¤ėŠ”'),
(95626, 'https://ror.org/00r4bna31', 'en', 1, 'https://ror.org/00r4bna31 Anatomical Society'),
(95627, 'https://ror.org/00r4vsg44', 'en', 1, 'https://ror.org/00r4vsg44 Texas Heart Institute'),
(95628, 'https://ror.org/00r6fph53', 'en', 1, 'https://ror.org/00r6fph53 Liwa College ŁƒŁ„ŁŠŲ© Ł„ŁŠŁˆŲ§'),
(95629, 'https://ror.org/00r7raa16', 'en', 1, 'https://ror.org/00r7raa16 Ministry of Defence'),
(95630, 'https://ror.org/00r8cxf78', 'en', 1, 'https://ror.org/00r8cxf78 Lions Clubs International Foundation'),
(95631, 'https://ror.org/00rafd796', 'es', 1, 'https://ror.org/00rafd796 Instituto de Ciencia de Materiales de Sevilla'),
(95632, 'https://ror.org/00rdzhq47', 'no_lang_code', 1, 'https://ror.org/00rdzhq47 Robotnik (Spain)'),
(95633, 'https://ror.org/00rfexj26', 'no_lang_code', 1, 'https://ror.org/00rfexj26 OPERAS'),
(95634, 'https://ror.org/00rffka72', 'no_lang_code', 1, 'https://ror.org/00rffka72 Alstom (Spain)'),
(95635, 'https://ror.org/00rg6nz68', 'no_lang_code', 1, 'https://ror.org/00rg6nz68 Telnet Redes Inteligentes (Spain)'),
(95636, 'https://ror.org/00rjhhq63', 'no_lang_code', 1, 'https://ror.org/00rjhhq63 ZTE (China) äø­å…“é€šč®Æč‚”ä»½ęœ‰é™å…¬åø'),
(95637, 'https://ror.org/00rmv5n97', 'fr', 0, 'https://ror.org/00rmv5n97 Direction des Sciences de la MatiĆØre'),
(95638, 'https://ror.org/00rn0n724', 'no_lang_code', 1, 'https://ror.org/00rn0n724 Kanion Pharmaceutical (China) ę±Ÿč‹åŗ·ē¼˜čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(95639, 'https://ror.org/00rncr820', 'en', 1, 'https://ror.org/00rncr820 International Institute for Nanotechnology'),
(95640, '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'),
(95641, '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'),
(95642, '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'),
(95643, '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'),
(95644, 'https://ror.org/00rwpbm87', 'de', 1, 'https://ror.org/00rwpbm87 Augenklinik Universitätsklinikum Würzburg'),
(95645, 'https://ror.org/00rwwx648', 'no_lang_code', 1, 'https://ror.org/00rwwx648 Thales (Italy)'),
(95646, 'https://ror.org/00rypeq92', 'en', 1, 'https://ror.org/00rypeq92 Prostate Cancer Support Association of New Mexico'),
(95647, 'https://ror.org/00rz8kx73', 'en', 1, 'https://ror.org/00rz8kx73 Society for the Study of Addiction'),
(95648, 'https://ror.org/00s0m4j44', 'fr', 1, 'https://ror.org/00s0m4j44 Centre Expert en EndomƩtriose'),
(95649, 'https://ror.org/00s0nnj93', 'en', 1, 'https://ror.org/00s0nnj93 Centre de Visió per Computador Computer Vision Center'),
(95650, 'https://ror.org/00s0wpd42', 'en', 1, 'https://ror.org/00s0wpd42 State Key Laboratory of Materials-Oriented Chemical Engineering ęę–™åŒ–å­¦å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95651, 'https://ror.org/00s1ckt27', 'en', 1, 'https://ror.org/00s1ckt27 Hochschule Wismar Wismar University of Applied Sciences'),
(95652, 'https://ror.org/00s1szh94', 'en', 1, 'https://ror.org/00s1szh94 Ascension'),
(95653, 'https://ror.org/00s29fn93', 'es', 1, 'https://ror.org/00s29fn93 Centro de Investigación en Red en Enfermedades Cardiovasculares'),
(95654, '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'),
(95655, 'https://ror.org/00s3s5518', 'no_lang_code', 1, 'https://ror.org/00s3s5518 Almaarefa University Ų¬Ų§Ł…Ų¹Ų© المعرفة'),
(95656, 'https://ror.org/00s409261', 'en', 1, 'https://ror.org/00s409261 University of Insubria UniversitƠ degli Studi dell''Insubria UniversitƩ de l''insubrie'),
(95657, 'https://ror.org/00s426w44', 'en', 1, 'https://ror.org/00s426w44 St Joseph''s Health Centre'),
(95658, 'https://ror.org/00s44s987', 'en', 1, 'https://ror.org/00s44s987 FREYR Battery, FREYR Battery (Norway)'),
(95659, 'https://ror.org/00s4fex77', 'fr', 1, 'https://ror.org/00s4fex77 Laboratoire de recherche en Management'),
(95660, 'https://ror.org/00s4mzv66', 'en', 1, 'https://ror.org/00s4mzv66 Johns Hopkins University Press'),
(95661, 'https://ror.org/00s577731', 'en', 1, 'https://ror.org/00s577731 State Key Laboratory of Kidney Diseases č‚¾č„ē–¾ē—…å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95662, 'https://ror.org/00s8ft489', 'en', 1, 'https://ror.org/00s8ft489 Guangzhou Zengcheng District Traditional Chinese Medicine Hospital å¹æå·žåø‚å¢žåŸŽåŒŗäø­åŒ»åŒ»é™¢'),
(95663, 'https://ror.org/00sa8g751', 'en', 1, 'https://ror.org/00sa8g751 NYU Langone’s Laura and Isaac Perlmutter Cancer Center'),
(95664, 'https://ror.org/00sad8321', 'fr', 1, 'https://ror.org/00sad8321 Centre d''Ɖcologie et des Sciences de la Conservation'),
(95665, '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'),
(95666, 'https://ror.org/00se2k293', 'en', 1, 'https://ror.org/00se2k293 National Yang Ming Chiao Tung University'),
(95667, 'https://ror.org/00se7bf12', 'fr', 1, 'https://ror.org/00se7bf12 Institut de Chimie de Strasbourg'),
(95668, 'https://ror.org/00sec1m50', 'pt', 1, 'https://ror.org/00sec1m50 State University of CearĆ” Universidade Estadual do CearĆ”'),
(95669, 'https://ror.org/00sef7t37', 'en', 1, 'https://ror.org/00sef7t37 Center for Alcohol Studies'),
(95670, 'https://ror.org/00sefv038', 'en', 1, 'https://ror.org/00sefv038 Multimedia Nusantara University Universitas Multimedia Nusantara'),
(95671, 'https://ror.org/00sg8gh54', 'fr', 1, 'https://ror.org/00sg8gh54 Laboratoire Babel'),
(95672, 'https://ror.org/00sh68184', 'no_lang_code', 1, 'https://ror.org/00sh68184 Roche Pharma AG Roche Pharma AG (Germany)'),
(95673, 'https://ror.org/00snbrd52', 'en', 1, 'https://ror.org/00snbrd52 National Transportation Library'),
(95674, 'https://ror.org/00sps5y96', 'es', 1, 'https://ror.org/00sps5y96 Fundación para la innovación tecnológica'),
(95675, 'https://ror.org/00sqxrc60', 'en', 1, 'https://ror.org/00sqxrc60 Team Survivor Northwest'),
(95676, 'https://ror.org/00ssvzv66', 'en', 1, 'https://ror.org/00ssvzv66 Karpagam Academy of Higher Education'),
(95677, 'https://ror.org/00sx29x36', 'en', 1, 'https://ror.org/00sx29x36 Alberta Children''s Hospital'),
(95678, 'https://ror.org/00sxf8635', 'en', 1, 'https://ror.org/00sxf8635 NSWC Port Hueneme Division'),
(95679, 'https://ror.org/00sxq4h60', 'en', 1, 'https://ror.org/00sxq4h60 State Key Laboratory of Hybrid Rice ę‚äŗ¤ę°“ēØ»å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95680, 'https://ror.org/00syfc790', 'fr', 1, 'https://ror.org/00syfc790 BioingƩnierie, Tissus et NeuroplasticitƩ'),
(95681, 'https://ror.org/00sz8gn76', 'es', 1, 'https://ror.org/00sz8gn76 Centro de Rehabilitación Avanzada Sanitas Fortuny Sanitas Fortuny Advanced Rehabilitation Centre'),
(95682, 'https://ror.org/00szax507', 'no_lang_code', 1, 'https://ror.org/00szax507 Avid Radiopharmaceuticals (United States)'),
(95683, 'https://ror.org/00t12va36', 'de', 1, 'https://ror.org/00t12va36 Energieinstitut an der Johannes Kepler UniversitƤt Linz'),
(95684, 'https://ror.org/00t3r8h32', 'en', 1, 'https://ror.org/00t3r8h32 University of Lübeck Universität zu Lübeck'),
(95685, 'https://ror.org/00t46pq88', 'en', 1, 'https://ror.org/00t46pq88 Marathwada Mitra Mandal''s College of Pharmacy'),
(95686, 'https://ror.org/00t4db855', 'no_lang_code', 1, 'https://ror.org/00t4db855 Alstom (France)'),
(95687, 'https://ror.org/00t64mp36', 'en', 1, 'https://ror.org/00t64mp36 Beaumont Eye Institute'),
(95688, 'https://ror.org/00t7sjs72', 'en', 1, 'https://ror.org/00t7sjs72 State Key Laboratory of Cardiovascular Disease åæƒč”€ē®”ē–¾ē—…å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95689, 'https://ror.org/00t864161', 'es', 1, 'https://ror.org/00t864161 Consejería de Educación de la Junta de Castilla y León'),
(95690, 'https://ror.org/00t9vx427', 'en', 0, 'https://ror.org/00t9vx427 Southwestern Medical Center'),
(95691, 'https://ror.org/00tb6q730', 'no_lang_code', 1, 'https://ror.org/00tb6q730 Laboratoire Dielen (France)'),
(95692, 'https://ror.org/00tc4ja06', 'no_lang_code', 1, 'https://ror.org/00tc4ja06 Economia (Czechia)'),
(95693, 'https://ror.org/00tdqgq45', 'fr', 1, 'https://ror.org/00tdqgq45 CƩgep de Saint-FƩlicien'),
(95694, 'https://ror.org/00tea5y39', 'en', 1, 'https://ror.org/00tea5y39 Helmholtz Institute for Functional Marine Biodiversity Helmholtz-Institut für Funktionelle Marine Biodiversität'),
(95695, 'https://ror.org/00tfmma03', 'en', 1, 'https://ror.org/00tfmma03 Australian Centre for Research on Separation Science'),
(95696, 'https://ror.org/00tfmv040', 'en', 1, 'https://ror.org/00tfmv040 State Key Laboratory of Special Cable Technology ē‰¹ē§ē”µē¼†ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95697, 'https://ror.org/00tkt3j79', 'en', 1, 'https://ror.org/00tkt3j79 Western Canada Research Grid'),
(95698, 'https://ror.org/00tmb7y09', 'fr', 1, 'https://ror.org/00tmb7y09 Laboratoire de Chimie ThƩorique'),
(95699, 'https://ror.org/00tncsy16', 'es', 1, 'https://ror.org/00tncsy16 Universidad EAN'),
(95700, 'https://ror.org/00tnqka34', 'en', 1, 'https://ror.org/00tnqka34 State Key Laboratory of Solid Lubrication å›ŗä½“ę¶¦ę»‘å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95701, 'https://ror.org/00tnycw03', 'en', 1, 'https://ror.org/00tnycw03 Cancer Support Community'),
(95702, 'https://ror.org/00tp4wm41', 'en', 1, 'https://ror.org/00tp4wm41 Institute for Tropical Technology Viện Kỹ thuįŗ­t nhiệt đới'),
(95703, 'https://ror.org/00tp8bz22', 'en', 1, 'https://ror.org/00tp8bz22 State Key Laboratory of Nuclear Physics and Technology ę øē‰©ē†äøŽę øęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95704, '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'),
(95705, 'https://ror.org/00tpn9z48', 'es', 1, 'https://ror.org/00tpn9z48 Galicia Biological Mission Misión Biológica de Galicia'),
(95706, 'https://ror.org/00tq6rn55', 'de', 1, 'https://ror.org/00tq6rn55 KRH Klinikum Nordstadt Nordstadt Hospital'),
(95707, 'https://ror.org/00trjac21', 'en', 1, 'https://ror.org/00trjac21 Academy of Science St. Louis'),
(95708, 'https://ror.org/00ts9pr54', 'fr', 1, 'https://ror.org/00ts9pr54 Montpellier GenomiX'),
(95709, 'https://ror.org/00tzzfp14', 'en', 1, 'https://ror.org/00tzzfp14 National Museum of Ethnology å›½ē«‹ę°‘ę—å­¦åšē‰©é¤Ø'),
(95710, 'https://ror.org/00v0mdx81', 'en', 1, 'https://ror.org/00v0mdx81 Forest City People''s Hospital'),
(95711, 'https://ror.org/00v0nyw36', 'no_lang_code', 1, 'https://ror.org/00v0nyw36 Pioneers Research and Consulting Group (Switzerland)'),
(95712, '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'),
(95713, 'https://ror.org/00v3dp115', 'en', 1, 'https://ror.org/00v3dp115 Citizens Specialty Hospitals'),
(95714, 'https://ror.org/00v4p4h97', 'en', 1, 'https://ror.org/00v4p4h97 State Key Laboratory of Advanced Brazing Filler Metals and Technology ę–°åž‹é’Žē„Šęę–™äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95715, 'https://ror.org/00v4yjm67', 'no_lang_code', 1, 'https://ror.org/00v4yjm67 Cihan University Sulaimaniya Ų²Ų§Ł†Ś©Ū†ŪŒ Ų¬ŪŒŁ‡Ų§Ł† Ų³Ł„ŪŽŁ…Ų§Ł†ŪŒ'),
(95716, 'https://ror.org/00v79jn39', 'hu', 1, 'https://ror.org/00v79jn39 Egészségügyi TudomÔnyos TanÔcs Medical Research Council of Hungary'),
(95717, 'https://ror.org/00v89p354', 'en', 1, 'https://ror.org/00v89p354 SveučiliÅ”te u Mostaru University of Mostar Univerzitet u Mostaru Универзитет у ŠœŠ¾ŃŃ‚Š°Ń€Ńƒ'),
(95718, 'https://ror.org/00v8rqv75', 'en', 1, 'https://ror.org/00v8rqv75 Institute of Acoustics 中国科学院声学研究所'),
(95719, 'https://ror.org/00v9a4y41', 'fr', 1, 'https://ror.org/00v9a4y41 CREA Mont-Blanc'),
(95720, 'https://ror.org/00va0sd41', 'en', 1, 'https://ror.org/00va0sd41 Bosom Buddies Charities'),
(95721, 'https://ror.org/00vb8fc53', 'fr', 1, 'https://ror.org/00vb8fc53 Centre d''Analyse et de MathƩmatique Sociales'),
(95722, 'https://ror.org/00vcbg240', 'en', 1, 'https://ror.org/00vcbg240 Commonwealth of Learning'),
(95723, 'https://ror.org/00vcrsw96', 'fr', 0, 'https://ror.org/00vcrsw96 GƩnƩtique et Immunologie des Maladies Parasitaires'),
(95724, 'https://ror.org/00veegj02', 'es', 1, 'https://ror.org/00veegj02 Centro Científico Tecnológico - Tandil'),
(95725, 'https://ror.org/00vf17b40', 'no_lang_code', 1, 'https://ror.org/00vf17b40 Ethnographic Museum'),
(95726, 'https://ror.org/00vgp1308', 'en', 1, 'https://ror.org/00vgp1308 Banner MD Anderson Cancer Center at Banner McKee Medical Center'),
(95727, 'https://ror.org/00vgwmr59', 'en', 1, 'https://ror.org/00vgwmr59 Elrazi University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ų§Ų²ŁŠ'),
(95728, 'https://ror.org/00vhfyp04', 'es', 1, 'https://ror.org/00vhfyp04 Cabildo de La Palma'),
(95729, 'https://ror.org/00vjqt667', 'en', 1, 'https://ror.org/00vjqt667 State Key Laboratory of High-Speed Railway Track Technology é«˜é€Ÿé“č·Æč½Øé“ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95730, 'https://ror.org/00vkwep27', 'en', 1, 'https://ror.org/00vkwep27 Division of Cancer Epidemiology and Genetics'),
(95731, 'https://ror.org/00vmaka31', 'en', 1, 'https://ror.org/00vmaka31 California Department of Conservation'),
(95732, 'https://ror.org/00vsr3s09', 'en', 1, 'https://ror.org/00vsr3s09 State Key Laboratory of Lithospheric Evolution å²©ēŸ³åœˆę¼”åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95733, 'https://ror.org/00vt8p712', 'de', 1, 'https://ror.org/00vt8p712 Ministerium für Kultus, Jugend und Sport Baden-Württemberg'),
(95734, 'https://ror.org/00vte0591', 'en', 1, 'https://ror.org/00vte0591 Encompass Health, Encompass Health (United States)'),
(95735, 'https://ror.org/00vvxbe27', 'en', 1, 'https://ror.org/00vvxbe27'),
(95736, 'https://ror.org/00vvz3k68', 'en', 1, 'https://ror.org/00vvz3k68 Elite School of Optometry'),
(95737, 'https://ror.org/00vwmj521', 'en', 1, 'https://ror.org/00vwmj521 Oceanum Ltd, Oceanum Ltd (New Zealand)'),
(95738, 'https://ror.org/00w0hef10', 'fr', 1, 'https://ror.org/00w0hef10 Laboratoire Images, signaux et systĆØmes intelligents Laboratory of Images, Signals and Intelligent Systems'),
(95739, 'https://ror.org/00w52vt71', 'en', 1, 'https://ror.org/00w52vt71 MUSC Hollings Cancer Center'),
(95740, 'https://ror.org/00w8v1794', 'fr', 1, 'https://ror.org/00w8v1794 Ecole SupƩrieure d''Agronomie Mostaganem'),
(95741, 'https://ror.org/00wbge811', 'pt', 1, 'https://ror.org/00wbge811 Centro Universitario Franciscano Universidade Franciscana'),
(95742, 'https://ror.org/00wc22h63', 'en', 1, 'https://ror.org/00wc22h63 Altoosi University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ų·ŁˆŲ³ŁŠ الجامعة'),
(95743, 'https://ror.org/00wcvf151', 'fr', 1, 'https://ror.org/00wcvf151 Centre Paul Albert-FƩvrier'),
(95744, 'https://ror.org/00wd0xj77', 'no_lang_code', 1, 'https://ror.org/00wd0xj77 Andijan State Pedagogical Institute Andijon Davlat Pedagogika instituti'),
(95745, 'https://ror.org/00wdpp052', 'fr', 1, 'https://ror.org/00wdpp052 Laboratoire de SƩcuritƩ des ProcƩdƩs Chimiques');
INSERT INTO `rors` VALUES
(95746, 'https://ror.org/00wek6x04', 'en', 1, 'https://ror.org/00wek6x04 Recinto Universitario de Mayagüez University of Puerto Rico-Mayaguez'),
(95747, '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'),
(95748, 'https://ror.org/00wes5t10', 'no_lang_code', 0, 'https://ror.org/00wes5t10 TRW (United States)'),
(95749, 'https://ror.org/00wk3s644', 'en', 1, 'https://ror.org/00wk3s644 Kedge Business School'),
(95750, 'https://ror.org/00wq3fc38', 'ca', 1, 'https://ror.org/00wq3fc38 Institut BotƠnic de Barcelona Instituto BotƔnico de Barcelona'),
(95751, 'https://ror.org/00wq6p759', 'es', 1, 'https://ror.org/00wq6p759 Ayuntamiento de Sevilla City Council of Seville'),
(95752, 'https://ror.org/00wra1b14', 'en', 1, 'https://ror.org/00wra1b14 Arc Research Institute'),
(95753, 'https://ror.org/00wrec671', 'en', 1, 'https://ror.org/00wrec671 State Key Laboratory of Mobile Communications ē§»åŠØé€šäæ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95754, 'https://ror.org/00ws85526', 'es', 1, 'https://ror.org/00ws85526 Bilboko metroa Metro Bilbao, Metro de Bilbao'),
(95755, 'https://ror.org/00wsjvg44', 'en', 1, 'https://ror.org/00wsjvg44 U.S. Army Corp of Engineers Waterways Experiment Station'),
(95756, 'https://ror.org/00wtrxf04', 'en', 1, 'https://ror.org/00wtrxf04 Osher Center for Integrative Medicine'),
(95757, 'https://ror.org/00wv14x31', 'en', 1, 'https://ror.org/00wv14x31 State Key Laboratory of Pulsed Power Laser Technology č„‰å†²åŠŸēŽ‡ęæ€å…‰ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95758, 'https://ror.org/00wxgxz56', 'es', 1, 'https://ror.org/00wxgxz56 Hospital Universitario de Toledo'),
(95759, 'https://ror.org/00x1d4q78', 'fr', 1, 'https://ror.org/00x1d4q78 Institut des Textes et Manuscrits Modernes'),
(95760, 'https://ror.org/00x1rrc95', 'en', 1, 'https://ror.org/00x1rrc95 Institut Sciences du vivant Institute of Life Sciences Instituts für Life Sciences'),
(95761, 'https://ror.org/00x362k69', 'en', 1, 'https://ror.org/00x362k69 Queen Elizabeth Hospital'),
(95762, 'https://ror.org/00x43yy22', 'en', 1, 'https://ror.org/00x43yy22 State Key Laboratory of Biotherapy ē”Ÿē‰©ę²»ē–—å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95763, 'https://ror.org/00x54vt20', 'en', 1, 'https://ror.org/00x54vt20 BGMEA University of Fashion & Technology'),
(95764, 'https://ror.org/00x677422', 'fr', 1, 'https://ror.org/00x677422'),
(95765, 'https://ror.org/00x6wnm78', 'en', 1, 'https://ror.org/00x6wnm78 Central Asian University'),
(95766, 'https://ror.org/00x76wb44', 'fr', 0, 'https://ror.org/00x76wb44 Centre de Recherche Jean Pierre Aubert Jean-Pierre Aubert Research Center'),
(95767, 'https://ror.org/00x9ewr78', 'en', 1, 'https://ror.org/00x9ewr78 National Council for Scientific Research'),
(95768, 'https://ror.org/00x9tpk83', 'en', 1, 'https://ror.org/00x9tpk83 State Key Laboratory of Organic Geochemistry ęœ‰ęœŗåœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95769, 'https://ror.org/00xagyq07', 'fr', 1, 'https://ror.org/00xagyq07 Institut des Sciences de la Terre de Paris'),
(95770, 'https://ror.org/00xcgnn15', 'en', 1, 'https://ror.org/00xcgnn15 InterAmerican University of Puerto Rico Universidad Interamericana de Puerto Rico'),
(95771, 'https://ror.org/00xdg8m59', 'no_lang_code', 1, 'https://ror.org/00xdg8m59 Bell Bell (Canada)'),
(95772, 'https://ror.org/00xe97z49', 'fr', 1, 'https://ror.org/00xe97z49 Physiologie, Ecologie et Environnement Physiology, Ecology, Environment'),
(95773, 'https://ror.org/00xexfj57', 'en', 1, 'https://ror.org/00xexfj57 Iranian Research Institute for Information Science and Technology Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų¹Ł„ŁˆŁ… و ŁŁ†Ų§ŁˆŲ±ŪŒ اطلاعات Ų§ŪŒŲ±Ų§Ł†'),
(95774, 'https://ror.org/00xfkzq83', 'en', 1, 'https://ror.org/00xfkzq83 Israel Institute'),
(95775, 'https://ror.org/00xg4bh43', 'en', 1, 'https://ror.org/00xg4bh43 Texas Advanced Computing Center'),
(95776, 'https://ror.org/00xhn6z12', 'en', 1, 'https://ror.org/00xhn6z12 Debbie''s Dream Foundation'),
(95777, 'https://ror.org/00xhtr962', 'fr', 1, 'https://ror.org/00xhtr962 GƩnome QuƩbec'),
(95778, 'https://ror.org/00xk8t981', 'es', 1, 'https://ror.org/00xk8t981 Instituto de Acuicultura Torre de la Sal'),
(95779, 'https://ror.org/00xkhc673', 'en', 1, 'https://ror.org/00xkhc673 Canadian Lyme Disease Foundation Fondation canadienne de la maladie de Lyme'),
(95780, 'https://ror.org/00xm3h672', 'en', 1, 'https://ror.org/00xm3h672 NHS Commissioning Board, NHS England'),
(95781, 'https://ror.org/00xn0ew58', 'en', 1, 'https://ror.org/00xn0ew58 Suzhou Hongyuan Biotech Inc., Suzhou Hongyuan Biotech Inc. (China) č‹å·žå®å…ƒē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(95782, 'https://ror.org/00xn1pr13', 'en', 1, 'https://ror.org/00xn1pr13 Leibniz Institute for Immunotherapy Leibniz-Institut für Immuntherapie'),
(95783, 'https://ror.org/00xnj6419', 'es', 1, 'https://ror.org/00xnj6419 Instituto Universitario de Ciencias de la Educación'),
(95784, 'https://ror.org/00xp1b128', 'en', 1, 'https://ror.org/00xp1b128 Kids Brain Health Network RƩseau pour la SantƩ du Cerveau des Enfants'),
(95785, 'https://ror.org/00xqkj280', 'it', 1, 'https://ror.org/00xqkj280 Governo Italiano'),
(95786, 'https://ror.org/00xrp2v42', 'en', 1, 'https://ror.org/00xrp2v42 State Key Laboratory of Nonlinear Mechanics éžēŗæę€§åŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95787, 'https://ror.org/00xsz4758', 'en', 1, 'https://ror.org/00xsz4758 Leukaemia UK'),
(95788, 'https://ror.org/00xvjv861', 'en', 1, 'https://ror.org/00xvjv861 JSS Dental College and Hospital'),
(95789, 'https://ror.org/00xxrr382', 'en', 1, 'https://ror.org/00xxrr382 Tamale Technical University'),
(95790, 'https://ror.org/00xzacp61', 'en', 1, 'https://ror.org/00xzacp61 NCCR SwissMAP'),
(95791, 'https://ror.org/00y0aj963', 'no_lang_code', 0, 'https://ror.org/00y0aj963 Going Green (Spain)'),
(95792, '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'),
(95793, 'https://ror.org/00y1k7p64', 'no_lang_code', 1, 'https://ror.org/00y1k7p64 Scapa Healthcare (United Kingdom)'),
(95794, 'https://ror.org/00y2mbn60', 'en', 1, 'https://ror.org/00y2mbn60 Starr King School for the Ministry'),
(95795, 'https://ror.org/00y3jmn59', 'fr', 1, 'https://ror.org/00y3jmn59 Institut de Recherche en Systèmes Electroniques Embarqués'),
(95796, 'https://ror.org/00y4zmh56', 'en', 1, 'https://ror.org/00y4zmh56 Alaska Climate Adaptation Science Center'),
(95797, 'https://ror.org/00y518s84', 'es', 1, 'https://ror.org/00y518s84 Instituto de Fermentaciones Industriales'),
(95798, 'https://ror.org/00y6q9n79', 'en', 1, 'https://ror.org/00y6q9n79 Ministerio de Sanidad Servicios Sociales e Igualdad Ministry of Health'),
(95799, 'https://ror.org/00y7mag53', 'en', 1, 'https://ror.org/00y7mag53 Southern Marine Science and Engineering Guangdong Laboratory (Guangzhou) å—ę–¹ęµ·ę“‹ē§‘å­¦äøŽå·„ēØ‹å¹æäøœēœå®žéŖŒå®¤ (å¹æå·ž)'),
(95800, 'https://ror.org/00yab6d29', 'en', 1, 'https://ror.org/00yab6d29 Bulgarian Academy of Sciences and Arts Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ на Š½Š°ŃƒŠŗŠøŃ‚е Šø ŠøŠ·ŠŗŃƒŃŃ‚Š²Š°Ń‚Š°'),
(95801, 'https://ror.org/00ybwtz11', 'en', 1, 'https://ror.org/00ybwtz11 Centro Nacional de Datos Polares Spanish Polar Data Centre'),
(95802, 'https://ror.org/00yfbr841', 'fr', 1, 'https://ror.org/00yfbr841 HƓpital Armand-Trousseau'),
(95803, 'https://ror.org/00yksxf10', 'en', 1, 'https://ror.org/00yksxf10 Emory Healthcare'),
(95804, 'https://ror.org/00ynbyf59', 'no_lang_code', 1, 'https://ror.org/00ynbyf59 Alcare (Japan) ć‚¢ćƒ«ć‚±ć‚¢ę Ŗå¼ä¼šē¤¾'),
(95805, 'https://ror.org/00ynnr806', 'en', 1, 'https://ror.org/00ynnr806 Royal Botanic Gardens, Kew'),
(95806, 'https://ror.org/00ysy1705', 'es', 1, 'https://ror.org/00ysy1705 Ministerio de Educación y Cultura'),
(95807, 'https://ror.org/00yt0ea73', 'en', 1, 'https://ror.org/00yt0ea73 Stanford Maternal and Child Health Research Institute'),
(95808, 'https://ror.org/00yx3dv85', 'es', 1, 'https://ror.org/00yx3dv85 Ayuntamiento de Vitoria-Gasteiz Vitoria-Gasteiz City Council Vitoria-Gasteizko Udala'),
(95809, 'https://ror.org/00yxqn620', 'en', 1, 'https://ror.org/00yxqn620 University of Puerto Rico at Cayey'),
(95810, 'https://ror.org/00yyvv226', 'no_lang_code', 1, 'https://ror.org/00yyvv226 Weichai Power (China) ę½ęŸ“åŠØåŠ›'),
(95811, 'https://ror.org/00z0y4310', 'en', 1, 'https://ror.org/00z0y4310 California Department of Alcohol and Drug Programs'),
(95812, 'https://ror.org/00z1bsd29', 'en', 1, 'https://ror.org/00z1bsd29 State Key Laboratory of New Technology of Pharmaceutical Preparations čÆē‰©åˆ¶å‰‚ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95813, 'https://ror.org/00z29pe13', 'no_lang_code', 1, 'https://ror.org/00z29pe13 John Benjamins Publishing Company (Netherlands)'),
(95814, 'https://ror.org/00z2bca79', 'fr', 1, 'https://ror.org/00z2bca79 Institut de Recherche en Energie Electrique de Nantes Atlantique'),
(95815, 'https://ror.org/00z3td547', 'en', 1, 'https://ror.org/00z3td547 Northwest University č„æåŒ—å¤§å­¦'),
(95816, 'https://ror.org/00z4cj158', 'no_lang_code', 1, 'https://ror.org/00z4cj158 Santen (France) å‚å¤©č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(95817, 'https://ror.org/00z58xw11', 'en', 1, 'https://ror.org/00z58xw11 St. John''s College, Palayamkottai தூய ą®ÆąÆ‹ą®µą®¾ą®©ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ, ą®Ŗą®¾ą®³ąÆˆą®Æą®™ąÆą®•ąÆ‹ą®ŸąÆą®ŸąÆˆ'),
(95818, 'https://ror.org/00z5dw933', 'en', 1, 'https://ror.org/00z5dw933 Breakthrough Discoveries for thriving with Bipolar Disorder'),
(95819, 'https://ror.org/00z5s8133', 'es', 1, 'https://ror.org/00z5s8133 Instituto Forestal'),
(95820, 'https://ror.org/00z6kst31', 'it', 1, 'https://ror.org/00z6kst31 Centro di Ricerca per l’Orticoltura'),
(95821, 'https://ror.org/00z72fs19', 'en', 1, 'https://ror.org/00z72fs19 Department of Health Research ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø विभाग'),
(95822, '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'),
(95823, 'https://ror.org/00z9npm78', 'en', 1, 'https://ror.org/00z9npm78 Shanghai Ship and Shipping Research Institute äøŠęµ·čˆ¹čˆ¶čæč¾“ē§‘å­¦ē ”ē©¶ę‰€ęˆ'),
(95824, 'https://ror.org/00zf0nh29', 'en', 1, 'https://ror.org/00zf0nh29 Fort Collins Science Center'),
(95825, 'https://ror.org/00zfe7z33', 'en', 1, 'https://ror.org/00zfe7z33 Rabindra Maitree University ą¦°ą¦¬ą§€ą¦Øą§ą¦¦ą§ą¦° ą¦®ą§ˆą¦¤ą§ą¦°ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(95826, 'https://ror.org/00zfr6d18', 'fr', 1, 'https://ror.org/00zfr6d18 Cognition, SantƩ, SociƩtƩ'),
(95827, 'https://ror.org/00zg6q231', 'ca', 1, 'https://ror.org/00zg6q231 Ajuntament de Barcelona Ayuntamiento de Barcelona Barcelona City Council'),
(95828, 'https://ror.org/00zh20c98', 'en', 1, 'https://ror.org/00zh20c98 Ministry of Agrarian Policy and Food ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ аграрної політики та ŠæŃ€Š¾Š“Š¾Š²Š¾Š»ŃŒŃŃ‚Š²Š°'),
(95829, 'https://ror.org/00zky9d41', 'en', 1, 'https://ror.org/00zky9d41 Wuhan Institute of Physics and Mathematics äø­å›½ē§‘å­¦é™¢ę­¦ę±‰ē‰©ē†äøŽę•°å­¦ē ”ē©¶ę‰€'),
(95830, 'https://ror.org/00zmdjj30', 'fr', 1, 'https://ror.org/00zmdjj30 Centre d''Ć©tudes franco-russe de Moscou Центр франко-российских исслеГований'),
(95831, 'https://ror.org/00zmg2m07', 'en', 1, 'https://ror.org/00zmg2m07 Georgian International University įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒ”įƒ įƒ—įƒįƒØįƒįƒ įƒ˜įƒ”įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(95832, 'https://ror.org/00znk2w36', 'en', 1, 'https://ror.org/00znk2w36 CHI Health St. Francis'),
(95833, 'https://ror.org/00zq16723', 'es', 1, 'https://ror.org/00zq16723 Ministerio de la Presidencia, Relaciones con las Cortes y Memoria DemocrƔtica'),
(95834, 'https://ror.org/00zrq4606', 'en', 1, 'https://ror.org/00zrq4606 Southwest Biological Science Center'),
(95835, '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ā€'),
(95836, 'https://ror.org/00zt09565', 'en', 1, 'https://ror.org/00zt09565 National Academy of Psychology'),
(95837, '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'),
(95838, 'https://ror.org/00zvfs242', 'en', 1, 'https://ror.org/00zvfs242 National Academy of Neuropsychology'),
(95839, 'https://ror.org/00zynpc72', 'no_lang_code', 1, 'https://ror.org/00zynpc72 AMES Group (Spain)'),
(95840, 'https://ror.org/00zywfh80', 'en', 1, 'https://ror.org/00zywfh80 Centre de recherche et de dƩveloppement de Sherbrooke Sherbrooke Research and Development Centre'),
(95841, 'https://ror.org/0101ppd69', 'en', 1, 'https://ror.org/0101ppd69 William & Ella Owens Medical Research Foundation'),
(95842, 'https://ror.org/01040r538', 'en', 1, 'https://ror.org/01040r538 Telford College'),
(95843, 'https://ror.org/0104rcc94', 'en', 1, 'https://ror.org/0104rcc94 University of Silesia in Katowice'),
(95844, 'https://ror.org/0105dn617', 'en', 1, 'https://ror.org/0105dn617 National Science Library'),
(95845, 'https://ror.org/0105w2p42', 'en', 1, 'https://ror.org/0105w2p42 Bibliothèque Royale de Belgique Koninklijke Bibliotheek België Royal Library of Belgium'),
(95846, 'https://ror.org/0108gqn38', 'en', 1, 'https://ror.org/0108gqn38 Orlando College of Osteopathic Medicine'),
(95847, 'https://ror.org/010b9wj87', 'en', 1, 'https://ror.org/010b9wj87 Boston Medical Center'),
(95848, 'https://ror.org/010d98035', 'en', 1, 'https://ror.org/010d98035 Azərbaycan Texnologiya Universiteti University of Technology of Azerbaijan АзербайГжанский Технологический Университет'),
(95849, 'https://ror.org/010e7zh94', 'de', 1, 'https://ror.org/010e7zh94 Deutsches Rettungsrobotik-Zentrum'),
(95850, 'https://ror.org/010fszt18', 'en', 1, 'https://ror.org/010fszt18 State Key Laboratory of Optoelectronic Materials and Technology å…‰ē”µęę–™äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95851, 'https://ror.org/010gha940', 'en', 1, 'https://ror.org/010gha940 Swiss Vaccine Research Institute'),
(95852, 'https://ror.org/010gtx568', 'en', 1, 'https://ror.org/010gtx568 Ministry of the Interior and Safety ķ–‰ģ •ģ•ˆģ „ė¶€'),
(95853, 'https://ror.org/010j4w165', 'en', 1, 'https://ror.org/010j4w165 Gulf College ŁƒŁ„ŁŠŲ© Ų§Ł„Ų®Ł„ŁŠŲ¬'),
(95854, 'https://ror.org/010ja5431', 'en', 1, 'https://ror.org/010ja5431 MusƩe du Nouveau-Brunswick New Brunswick Museum'),
(95855, 'https://ror.org/010mx9v03', 'no_lang_code', 1, 'https://ror.org/010mx9v03 New Infrared Technologies (Spain)'),
(95856, 'https://ror.org/010pmyd80', 'en', 1, 'https://ror.org/010pmyd80 Jinnah Sindh Medical University جناح سندھ Ł…ŪŒŚˆ ŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(95857, 'https://ror.org/010r3z169', 'en', 1, 'https://ror.org/010r3z169 State Key Laboratory of Drug Creation and Pharmaceutical Process åˆ›ę–°čÆē‰©äøŽåˆ¶čÆå·„č‰ŗå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95858, 'https://ror.org/010s7yy66', 'en', 0, 'https://ror.org/010s7yy66 UK Brain Tumour Society'),
(95859, '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'),
(95860, 'https://ror.org/010x3gp67', 'en', 1, 'https://ror.org/010x3gp67 Integrated Marine Observing System'),
(95861, 'https://ror.org/010xaa060', 'en', 1, 'https://ror.org/010xaa060 National Science Foundation of Sri Lanka ą¶¢ą·ą¶­ą·’ą¶š ą·€ą·’ą¶Æą·Šā€ą¶ŗą· ඓදනම, ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą·ą·€'),
(95862, 'https://ror.org/010y5b925', 'en', 1, 'https://ror.org/010y5b925 Thu Dau Mot University TrĘ°į»ng ĐẔi hį»c Thį»§ Dįŗ§u Mį»™t'),
(95863, 'https://ror.org/010ywy128', 'es', 1, 'https://ror.org/010ywy128 Instituto de Investigaciones de la AmazonĆ­a Peruana'),
(95864, 'https://ror.org/0111f7045', 'en', 1, 'https://ror.org/0111f7045 Institute of Plant Protection äø­å›½å†œäøšē§‘å­¦é™¢ę¤ē‰©äæęŠ¤ē ”ē©¶ę‰€'),
(95865, 'https://ror.org/0113k5861', 'fi', 1, 'https://ror.org/0113k5861 Cancer Foundation Finland Cancerstiftelsen SyƶpƤsƤƤtiƶ'),
(95866, 'https://ror.org/0114b2m14', 'en', 1, 'https://ror.org/0114b2m14 Office of Biological and Environmental Research'),
(95867, 'https://ror.org/011590k05', 'en', 1, 'https://ror.org/011590k05 World Wildlife Fund'),
(95868, 'https://ror.org/0115d8s26', 'no_lang_code', 1, 'https://ror.org/0115d8s26 Loral Space & Communications (United States)'),
(95869, 'https://ror.org/0115fxs14', 'en', 1, 'https://ror.org/0115fxs14 Medical College of Wisconsin Cancer Center'),
(95870, 'https://ror.org/011647w73', 'en', 1, 'https://ror.org/011647w73 National University of Uzbekistan OŹ»zbekiston Milliy Universiteti ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Узбекистана'),
(95871, 'https://ror.org/0116zj450', 'en', 1, 'https://ror.org/0116zj450 Universitas Indonesia University of Indonesia'),
(95872, 'https://ror.org/011787436', 'es', 1, 'https://ror.org/011787436 Complejo Hospitalario de Navarra'),
(95873, 'https://ror.org/0118thf61', 'en', 1, 'https://ror.org/0118thf61 Engineers Australia'),
(95874, 'https://ror.org/011cav305', 'en', 1, 'https://ror.org/011cav305 Schweizerische Akademie der Medizinischen Wissenschaften Swiss Academy of Medical Sciences'),
(95875, 'https://ror.org/011cc8156', 'en', 1, 'https://ror.org/011cc8156 California Department of Public Health Departamento de Salud PĆŗblica de California'),
(95876, 'https://ror.org/011dagb24', 'da', 1, 'https://ror.org/011dagb24 NƦstved Hospital NƦstved Sygehus'),
(95877, 'https://ror.org/011gh0524', 'en', 1, 'https://ror.org/011gh0524 Chinese People''s Armed Police Force äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜Ÿ'),
(95878, 'https://ror.org/011ghy651', 'en', 1, 'https://ror.org/011ghy651 U.S. Army Combat Capabilities Development Command Armaments Center'),
(95879, 'https://ror.org/011gnc761', 'en', 1, 'https://ror.org/011gnc761 Epidemiology in dermatology and evaluation of therapeutics'),
(95880, 'https://ror.org/011gr5n11', 'fr', 1, 'https://ror.org/011gr5n11 Handicap moteur et cognitif et rƩadaptation'),
(95881, 'https://ror.org/011hc8f90', 'en', 1, 'https://ror.org/011hc8f90 DEVCOM Army Research Laboratory'),
(95882, 'https://ror.org/011jtr847', 'ca', 0, 'https://ror.org/011jtr847 Centre de Recerca en Sanitat Animal'),
(95883, 'https://ror.org/011kd6273', 'en', 1, 'https://ror.org/011kd6273 Catholic Health Initiatives'),
(95884, 'https://ror.org/011mac819', 'fr', 1, 'https://ror.org/011mac819 Histoire et ArchƩologie Maritimes'),
(95885, 'https://ror.org/011n4tk56', 'en', 1, 'https://ror.org/011n4tk56 Agricultural Research Institute of Ontario Institut de Recherche Agricole de l''Ontario'),
(95886, 'https://ror.org/011pjwf87', 'en', 1, 'https://ror.org/011pjwf87 Organisation météorologique mondiale Organización Meteorológica Mundial World Meteorological Organization'),
(95887, 'https://ror.org/011rf9d86', 'en', 1, 'https://ror.org/011rf9d86 Shanghai Institutes for Biological Sciences äøŠęµ·ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(95888, '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'),
(95889, 'https://ror.org/011s40y19', 'fr', 1, 'https://ror.org/011s40y19 Fondation OCP OCP Foundation'),
(95890, 'https://ror.org/011shej97', 'es', 1, 'https://ror.org/011shej97 Universidad Nacional PolitƩcnica'),
(95891, 'https://ror.org/011sn6j23', 'en', 1, 'https://ror.org/011sn6j23 Corvus Energy, Corvus Energy (Norway)'),
(95892, 'https://ror.org/011y8cj77', 'es', 1, 'https://ror.org/011y8cj77 Prisma'),
(95893, 'https://ror.org/011zm6c42', 'pt', 1, 'https://ror.org/011zm6c42 ACATE - Associação Catarinense de Tecnologia'),
(95894, 'https://ror.org/0120w0n28', 'es', 1, 'https://ror.org/0120w0n28 Centro MƩdico Sanitas Montecarmelo Sanitas Montecarmelo Medical Centre'),
(95895, 'https://ror.org/0124x7055', 'en', 1, 'https://ror.org/0124x7055 Centre for Industrial Technological Development Centro para el Desarrollo Tecnologico Industrial'),
(95896, 'https://ror.org/0125wpx05', 'en', 1, 'https://ror.org/0125wpx05 UNSW Canberra'),
(95897, 'https://ror.org/0128par75', 'en', 1, 'https://ror.org/0128par75 Northwest Institute of Rare Metal Materials č„æåŒ—ēØ€ęœ‰é‡‘å±žęę–™ē ”ē©¶ę‰€'),
(95898, 'https://ror.org/012946785', 'en', 1, 'https://ror.org/012946785 The Human Diagnosis Project'),
(95899, 'https://ror.org/01297db79', 'es', 1, 'https://ror.org/01297db79 Centro de Investigación y Desarrollo'),
(95900, 'https://ror.org/012ajw921', 'en', 1, 'https://ror.org/012ajw921 State Key Laboratory of Complex Electromagnetic Environment Effects on Electronics and Information System ē”µå­äæ”ęÆē³»ē»Ÿå¤ę‚ē”µē£ēŽÆå¢ƒę•ˆåŗ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95901, 'https://ror.org/012cr4033', 'en', 1, 'https://ror.org/012cr4033 State Key Laboratory of Information Security äæ”ęÆå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95902, 'https://ror.org/012cshy85', 'en', 1, 'https://ror.org/012cshy85 Intelligent Transportation Systems Joint Program Office'),
(95903, 'https://ror.org/012cvds63', 'no_lang_code', 1, 'https://ror.org/012cvds63 Leidos (United States)'),
(95904, 'https://ror.org/012f6xc93', 'en', 1, 'https://ror.org/012f6xc93 Shanghai Conservatory of Music äøŠęµ·éŸ³ä¹å­¦é™¢'),
(95905, 'https://ror.org/012fftw39', 'no_lang_code', 1, 'https://ror.org/012fftw39 SCOAP3'),
(95906, 'https://ror.org/012gedv51', 'en', 1, 'https://ror.org/012gedv51 Santander Universities'),
(95907, 'https://ror.org/012gnk944', 'en', 1, 'https://ror.org/012gnk944 Dinghushan National Nature Reserve é¼Žę¹–å±±å›½å®¶ēŗ§č‡Ŗē„¶äæęŠ¤åŒŗ'),
(95908, 'https://ror.org/012gwbh42', 'es', 1, 'https://ror.org/012gwbh42 Cajal Institute Instituto Cajal'),
(95909, 'https://ror.org/012jsqx30', 'fr', 1, 'https://ror.org/012jsqx30 Centre d''Etudes et de Recherche sur le MƩdicament de Normandie'),
(95910, 'https://ror.org/012mkjy35', 'en', 1, 'https://ror.org/012mkjy35 Bath Clinic'),
(95911, 'https://ror.org/012mp1p41', 'en', 1, 'https://ror.org/012mp1p41 Montana Wheat and Barley Committee'),
(95912, 'https://ror.org/012n0t549', 'en', 1, 'https://ror.org/012n0t549 Cullinan Oncology, Cullinan Oncology (United States)'),
(95913, 'https://ror.org/012ngjb50', 'es', 1, 'https://ror.org/012ngjb50 Universidad de Moa'),
(95914, 'https://ror.org/012pb6c26', 'en', 1, 'https://ror.org/012pb6c26 National Heart Lung and Blood Institute'),
(95915, 'https://ror.org/012prxm53', 'en', 1, 'https://ror.org/012prxm53 International Arctic Research Center'),
(95916, 'https://ror.org/012qsrr25', 'en', 1, 'https://ror.org/012qsrr25 Cornell University Agricultural Experiment Station'),
(95917, 'https://ror.org/012r7ez54', 'id', 1, 'https://ror.org/012r7ez54 STAI Miftahul Huda Al-Azhar Kota Banjar'),
(95918, 'https://ror.org/012s7h980', 'no_lang_code', 1, 'https://ror.org/012s7h980 Acerinox (Spain)'),
(95919, 'https://ror.org/012tb2g32', 'en', 1, 'https://ror.org/012tb2g32 Tianjin University 天擄大学'),
(95920, 'https://ror.org/012vk3585', 'en', 1, 'https://ror.org/012vk3585 Rift Valley Technical Training Institute'),
(95921, 'https://ror.org/012wp4251', 'en', 0, 'https://ror.org/012wp4251 Blueprint for Neuroscience Research'),
(95922, 'https://ror.org/012wxv498', 'en', 1, 'https://ror.org/012wxv498 Mayo Clinic Comprehensive Cancer Center (Minnesota)'),
(95923, 'https://ror.org/012x47023', 'fr', 1, 'https://ror.org/012x47023 Centre de GƩnie Industriel'),
(95924, 'https://ror.org/012x5xb44', 'en', 1, 'https://ror.org/012x5xb44 Unity Health Toronto'),
(95925, 'https://ror.org/012xks909', 'en', 1, 'https://ror.org/012xks909 Eastern Kentucky University'),
(95926, 'https://ror.org/012xv2c39', 'de', 1, 'https://ror.org/012xv2c39 Paracelsus-Harz-Klinik Bad Suderode'),
(95927, 'https://ror.org/0131kfw61', 'en', 1, 'https://ror.org/0131kfw61 Khesar Gyalpo University of Medical Sciences of Bhutan གེ་སར་རྒྱལ་པོ་གསོ་རིག་གཙནག་ལག་སློབ་སྔེའི'),
(95928, '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'),
(95929, 'https://ror.org/0133f6116', 'es', 1, 'https://ror.org/0133f6116 Universidad Tecnológica del Centro de Veracruz'),
(95930, 'https://ror.org/01359dk79', 'en', 1, 'https://ror.org/01359dk79 Neurofibromatosis Therapeutic Acceleration Program'),
(95931, 'https://ror.org/0135q5q22', 'en', 1, 'https://ror.org/0135q5q22 Northern Prairie Wildlife Research Center'),
(95932, 'https://ror.org/0138eq662', 'fr', 1, 'https://ror.org/0138eq662 Onco-Urologie PrƩdictive'),
(95933, 'https://ror.org/0139c4536', 'en', 1, 'https://ror.org/0139c4536 Oxford University Clinical Research Unit Indonesia'),
(95934, 'https://ror.org/013a79z51', 'en', 1, 'https://ror.org/013a79z51 Guilin Tourism University ę”‚ęž—ę—…ęøøå­¦é™¢'),
(95935, 'https://ror.org/013dgcw28', 'fr', 1, 'https://ror.org/013dgcw28 Engarouines Observatory Observatoire des Engarouines'),
(95936, 'https://ror.org/013dqwz65', 'de', 1, 'https://ror.org/013dqwz65 Gertrude von Meissner-Stiftung, in Erinnerung an Annette und Clas Richter'),
(95937, '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'),
(95938, 'https://ror.org/013kv6j49', 'no_lang_code', 1, 'https://ror.org/013kv6j49 Bureau Veritas (France)'),
(95939, 'https://ror.org/013m8h627', 'en', 1, 'https://ror.org/013m8h627 methodS in Patient-centered outcomes and HEalth ResEarch'),
(95940, 'https://ror.org/013rctf62', 'en', 1, 'https://ror.org/013rctf62 Van Leeuwenhoek Centre for Advanced Microscopy'),
(95941, 'https://ror.org/013s2ts57', 'fr', 1, 'https://ror.org/013s2ts57 Groupe d’Étude sur l’HyperTension Intra CrĆ¢nienne idiopathique'),
(95942, 'https://ror.org/013sgyn36', 'en', 1, 'https://ror.org/013sgyn36 State Key Laboratory of Electromagnetic Metamaterials Modulation Technology č¶…ęę–™ē”µē£č°ƒåˆ¶ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95943, 'https://ror.org/013sk6x84', 'en', 1, 'https://ror.org/013sk6x84 Janelia Research Campus'),
(95944, 'https://ror.org/013t3qe76', 'en', 1, 'https://ror.org/013t3qe76 Mwanza University'),
(95945, 'https://ror.org/013tmk464', 'en', 1, 'https://ror.org/013tmk464 Comprehensive Cancer Center Mainfranken'),
(95946, 'https://ror.org/013wv8d67', 'en', 1, 'https://ror.org/013wv8d67 Institute of Soil and Water Conservation äø­å›½ē§‘å­¦é™¢ę°“åˆ©éƒØę°“åœŸäæęŒē ”ē©¶ę‰€'),
(95947, 'https://ror.org/013x79k46', 'en', 1, 'https://ror.org/013x79k46 State Key Laboratory of Coastal and Offshore Engineering ęµ·å²øå’Œčæ‘ęµ·å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95948, 'https://ror.org/013xphc70', 'en', 1, 'https://ror.org/013xphc70 Iloilo State University of Fisheries Science and Technology'),
(95949, 'https://ror.org/013xpqh61', 'en', 1, 'https://ror.org/013xpqh61 Munster Technological University Ollscoil TeicneolaĆ­ochta na Mumhan'),
(95950, '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'),
(95951, 'https://ror.org/0140hpe71', 'es', 1, 'https://ror.org/0140hpe71 Institute for Game and Wildlife Research Instituto de Investigación en Recursos Cinegéticos'),
(95952, 'https://ror.org/01428y038', 'en', 1, 'https://ror.org/01428y038 Kibi Presbyterian College of Education'),
(95953, 'https://ror.org/01464wm64', 'en', 1, 'https://ror.org/01464wm64 National Institute of Japanese Literature 国文学研究資料館'),
(95954, 'https://ror.org/014a87f14', 'en', 1, 'https://ror.org/014a87f14 AIRI - Artificial Intelligence Research Institute AIRI - Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ интеллекта'),
(95955, 'https://ror.org/014bhwj77', 'en', 1, 'https://ror.org/014bhwj77 Naval Research Laboratory Acoustics Division'),
(95956, 'https://ror.org/014fbxn93', 'pt', 1, 'https://ror.org/014fbxn93 Plataforma Internacional para Ciência, Tecnologia e Inovação em Saúde'),
(95957, 'https://ror.org/014fcf271', 'no_lang_code', 1, 'https://ror.org/014fcf271 Misurata University Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ±Ų§ŲŖŲ©'),
(95958, 'https://ror.org/014geb094', 'en', 1, 'https://ror.org/014geb094 Fulbright Program'),
(95959, 'https://ror.org/014gmtw23', 'en', 1, 'https://ror.org/014gmtw23 State Key Laboratory of Molecular Oncology åˆ†å­č‚æē˜¤å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95960, 'https://ror.org/014hre374', 'en', 1, 'https://ror.org/014hre374 Centre de recherche et de dƩveloppement de Kentville Kentville Research and Development Centre'),
(95961, 'https://ror.org/014kqcf15', 'en', 1, 'https://ror.org/014kqcf15 Infrastructure Management and Disposition Policy'),
(95962, 'https://ror.org/014ktry78', 'en', 1, 'https://ror.org/014ktry78 NIHR Biomedical Research Centre at The Royal Marsden and the ICR'),
(95963, 'https://ror.org/014msj669', 'no_lang_code', 1, 'https://ror.org/014msj669 Boluda División Industrial (Spain)'),
(95964, 'https://ror.org/014mvmf11', 'en', 1, 'https://ror.org/014mvmf11 Neurofibromatosis Network'),
(95965, 'https://ror.org/014nxkk19', 'en', 1, 'https://ror.org/014nxkk19 Chan Zuckerberg Biohub Chicago'),
(95966, 'https://ror.org/014sr0307', 'en', 1, 'https://ror.org/014sr0307 terraPulse, Inc., terraPulse, Inc. (United States)'),
(95967, 'https://ror.org/014wa1410', 'no_lang_code', 1, 'https://ror.org/014wa1410 BWI Group (Luxembourg)'),
(95968, 'https://ror.org/014x5gh74', 'en', 1, 'https://ror.org/014x5gh74 Academy of Marketing'),
(95969, 'https://ror.org/014ybqb54', 'en', 1, 'https://ror.org/014ybqb54 Hessian Center for Artificial Intelligence Hessische Zentrum für Künstliche Intelligenz hessian.AI'),
(95970, 'https://ror.org/0150hkx05', 'en', 1, 'https://ror.org/0150hkx05 Office of the Assistant Secretary for Research and Technology'),
(95971, 'https://ror.org/0155edt85', 'fr', 1, 'https://ror.org/0155edt85 fabriqueREL'),
(95972, 'https://ror.org/0156y9725', 'en', 1, 'https://ror.org/0156y9725 Virgin Islands Territorial Emergency Management Agency'),
(95973, 'https://ror.org/0157h5t87', 'fr', 1, 'https://ror.org/0157h5t87 Langages, LittĆ©ratures, SociĆ©tĆ©s. Ɖtudes TransfrontaliĆØres et Internationales'),
(95974, 'https://ror.org/01585b035', 'pt', 1, 'https://ror.org/01585b035 Londrina State University Universidade Estadual de Londrina'),
(95975, 'https://ror.org/01597g643', 'en', 1, 'https://ror.org/01597g643 State University of New York at Oswego Universidad Estatal de Nueva York en Oswego'),
(95976, 'https://ror.org/01597w461', 'en', 1, 'https://ror.org/01597w461 East-West University įƒįƒ¦įƒ›įƒįƒ”įƒįƒ•įƒšįƒ”įƒ—-įƒ“įƒįƒ”įƒįƒ•įƒšįƒ”įƒ— įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(95977, 'https://ror.org/0159eq874', 'no_lang_code', 0, 'https://ror.org/0159eq874 Magnum Semiconductor (Canada)'),
(95978, 'https://ror.org/0159z1911', 'es', 1, 'https://ror.org/0159z1911 Escuela Oficial de Idiomas de Granada'),
(95979, 'https://ror.org/015awcr32', 'no_lang_code', 1, 'https://ror.org/015awcr32 Euroortodoncia (Spain)'),
(95980, 'https://ror.org/015cf0x85', 'fr', 1, 'https://ror.org/015cf0x85 Edition, InterprƩtation et traduction des textes anciens'),
(95981, 'https://ror.org/015ecwv34', 'no_lang_code', 1, 'https://ror.org/015ecwv34 Curium (United States)'),
(95982, 'https://ror.org/015g1jn89', 'pt', 1, 'https://ror.org/015g1jn89 Universidade Estadual da Zona Oeste'),
(95983, 'https://ror.org/015gaxx73', 'fr', 1, 'https://ror.org/015gaxx73 Laboratoire Optimisation de la Conception et IngƩnierie de l''Environnement'),
(95984, 'https://ror.org/015k93458', 'en', 1, 'https://ror.org/015k93458 Naval Research Laboratory Spacecraft Engineering Division'),
(95985, 'https://ror.org/015m77g16', 'en', 1, 'https://ror.org/015m77g16 State Key Laboratory of Robotics and Systems ęœŗå™ØäŗŗęŠ€ęœÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(95986, 'https://ror.org/015n1m812', 'pt', 1, 'https://ror.org/015n1m812 Bahia State University Universidade do Estado da Bahia'),
(95987, 'https://ror.org/015p17h26', 'en', 1, 'https://ror.org/015p17h26 CHI Health Plainview'),
(95988, 'https://ror.org/015pzp858', 'en', 1, 'https://ror.org/015pzp858 Gouvernement de l''Ontario Government of Ontario'),
(95989, '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'),
(95990, 'https://ror.org/015tg7676', 'fr', 1, 'https://ror.org/015tg7676'),
(95991, 'https://ror.org/015th7t48', 'fr', 1, 'https://ror.org/015th7t48 Centre de Recherche en LittƩrature ComparƩe'),
(95992, 'https://ror.org/015vt1f29', 'fr', 1, 'https://ror.org/015vt1f29 CƩgep de Drummondville'),
(95993, 'https://ror.org/015vtcw98', 'fr', 1, 'https://ror.org/015vtcw98 Laboratoire de Tribologie et Dynamique des SystĆØmes'),
(95994, 'https://ror.org/015w4v032', 'es', 1, 'https://ror.org/015w4v032 Centro Nacional de BiotecnologĆ­a'),
(95995, 'https://ror.org/015wtqn87', 'en', 1, 'https://ror.org/015wtqn87 CRC183 - Entangled States of Matter'),
(95996, 'https://ror.org/015y1mx47', 'en', 1, 'https://ror.org/015y1mx47 United Nations University World Institute for Development Economics Research'),
(95997, 'https://ror.org/015zds189', 'en', 1, 'https://ror.org/015zds189 Alaska Department of Transportation and Public Facilities'),
(95998, 'https://ror.org/01603fg59', 'es', 1, 'https://ror.org/01603fg59 Institute of Marine Research Instituto de Investigacións Mariñas'),
(95999, 'https://ror.org/01614jm39', 'en', 1, 'https://ror.org/01614jm39 Lottery Health Research'),
(96000, 'https://ror.org/0161q6d74', 'no_lang_code', 1, 'https://ror.org/0161q6d74 Sinopec (China) äø­å›½ēŸ³ę²¹åŒ–å·„č‚”ä»½ęœ‰é™å…¬åøēŸ³ę²¹å‹˜ęŽ¢å¼€å‘ē ”ē©¶é™¢'),
(96001, 'https://ror.org/01653xx13', 'de', 1, 'https://ror.org/01653xx13 Data Futures GmbH'),
(96002, 'https://ror.org/0165m9527', 'no_lang_code', 1, 'https://ror.org/0165m9527 ORTEC (Netherlands)'),
(96003, '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'),
(96004, 'https://ror.org/016782g02', 'en', 1, 'https://ror.org/016782g02 European Association for Education Law and Policy'),
(96005, 'https://ror.org/016apz495', 'no_lang_code', 1, 'https://ror.org/016apz495 Reig Jofre (Spain)'),
(96006, 'https://ror.org/016cke005', 'en', 1, 'https://ror.org/016cke005 National Marrow Donor Program'),
(96007, 'https://ror.org/016fa9e26', 'en', 1, 'https://ror.org/016fa9e26 Fondazione Centro Nazionale di Adroterapia Oncologica National Center for Oncological Hadrontherapy'),
(96008, 'https://ror.org/016g9tg59', 'en', 1, 'https://ror.org/016g9tg59 State Key Laboratory of Low-Dimensional Quantum Physics ä½Žē»“é‡å­ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96009, 'https://ror.org/016gy9w96', 'en', 0, 'https://ror.org/016gy9w96 Ministry of Education'),
(96010, 'https://ror.org/016k9d838', 'es', 1, 'https://ror.org/016k9d838 Automotive Technology Centre of Galicia Centro Tecnológico de Automoción de Galicia'),
(96011, 'https://ror.org/016ks4x90', 'en', 1, 'https://ror.org/016ks4x90 Swedish Society of Medicine'),
(96012, 'https://ror.org/016mx3x77', 'no_lang_code', 1, 'https://ror.org/016mx3x77 Acorde (Spain)'),
(96013, 'https://ror.org/016nafs32', 'es', 1, 'https://ror.org/016nafs32 Fondo Nacional de Desarrollo Científico y Tecnológico'),
(96014, 'https://ror.org/016nwev19', 'fr', 1, 'https://ror.org/016nwev19 Sciences pour l''Environnement'),
(96015, 'https://ror.org/016padj08', 'no_lang_code', 1, 'https://ror.org/016padj08 Sumitomo Mitsui Trust Holdings (Japan) äø‰äŗ•ä½å‹ćƒˆćƒ©ć‚¹ćƒˆćƒ»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(96016, 'https://ror.org/016rf0n60', 'de', 1, 'https://ror.org/016rf0n60 Stiftung CharitƩ'),
(96017, 'https://ror.org/016tmz810', 'de', 1, 'https://ror.org/016tmz810 Innovent'),
(96018, 'https://ror.org/016vxbe23', 'fr', 1, 'https://ror.org/016vxbe23 Zone Atelier Moselle'),
(96019, 'https://ror.org/016xsfp80', 'en', 1, 'https://ror.org/016xsfp80 Radboud Universiteit Nijmegen Radboud University Nijmegen Université Radboud de Nimègue'),
(96020, 'https://ror.org/016zvc994', 'fr', 1, 'https://ror.org/016zvc994 Institut de Pharmacologie et de Biologie Structurale Institute of Pharmacology and Structural Biology'),
(96021, 'https://ror.org/0170ecg02', 'it', 1, 'https://ror.org/0170ecg02 Aziende Socio Sanitarie Territoriale della Valcamonica Regional Health Care and Social Agency Valcamonica'),
(96022, 'https://ror.org/0170yz872', 'es', 1, 'https://ror.org/0170yz872 Centro Médico Sanitas Córdoba Sanitas Cordoba Medical Centre'),
(96023, 'https://ror.org/0171mae58', 'fr', 1, 'https://ror.org/0171mae58 Softmat - Chimie des colloĆÆdes, polymĆØres & assemblages complexes'),
(96024, '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Ć”'),
(96025, 'https://ror.org/0173y3036', 'en', 1, 'https://ror.org/0173y3036 VCU Massey Comprehensive Cancer Center'),
(96026, 'https://ror.org/01741jv66', 'en', 1, 'https://ror.org/01741jv66 Institute of Physics, Bhubaneshwar'),
(96027, 'https://ror.org/0177jvw02', 'en', 1, 'https://ror.org/0177jvw02 WWF Senegal'),
(96028, 'https://ror.org/0177kw895', 'en', 1, 'https://ror.org/0177kw895 Beatrice and Samuel A. Seaver Foundation'),
(96029, 'https://ror.org/017bbsh25', 'no_lang_code', 1, 'https://ror.org/017bbsh25 BSP Business & Law School – Hochschule für Management und Recht'),
(96030, 'https://ror.org/017cjzj15', 'en', 1, 'https://ror.org/017cjzj15 Yasuda Memorial Medical Foundation'),
(96031, 'https://ror.org/017d4c820', 'en', 1, 'https://ror.org/017d4c820 Lund Trust'),
(96032, 'https://ror.org/017ed2k28', 'fr', 1, 'https://ror.org/017ed2k28 EndothƩlium, valvulopathies et insuffisance cardiaque'),
(96033, 'https://ror.org/017ewzp43', 'en', 1, 'https://ror.org/017ewzp43 Association Of Research Organizations'),
(96034, 'https://ror.org/017gnes95', 'en', 1, 'https://ror.org/017gnes95 The Virgin Islands Public Library System'),
(96035, 'https://ror.org/017kjzz63', 'no_lang_code', 0, 'https://ror.org/017kjzz63 GEC (United Kingdom)'),
(96036, 'https://ror.org/017madv49', 'en', 0, 'https://ror.org/017madv49 Air Force Space Technology Center'),
(96037, 'https://ror.org/017mte255', 'no_lang_code', 1, 'https://ror.org/017mte255 Equinor (Norway)'),
(96038, 'https://ror.org/017pvbj47', 'no_lang_code', 1, 'https://ror.org/017pvbj47 Societatea Națională de Gaze Naturale Romgaz SA (Romania)'),
(96039, 'https://ror.org/017r4dj03', 'en', 1, 'https://ror.org/017r4dj03 State Key Laboratory of Software Development Environment č½Æä»¶å¼€å‘ēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96040, 'https://ror.org/017t2xn54', 'en', 1, 'https://ror.org/017t2xn54 Chalermkarnchana University'),
(96041, 'https://ror.org/017vnhv07', 'fr', 1, 'https://ror.org/017vnhv07 Laboratoire de MathƩmatiques AppliquƩes du Havre'),
(96042, 'https://ror.org/017wkmv97', 'fr', 1, 'https://ror.org/017wkmv97 Centre universitaire rouennais d’études juridiques'),
(96043, 'https://ror.org/017wrhq72', 'en', 0, 'https://ror.org/017wrhq72 Department of Water'),
(96044, 'https://ror.org/017x69387', 'fr', 1, 'https://ror.org/017x69387 Laboratoire d''Urbanisme'),
(96045, 'https://ror.org/017xch102', 'es', 1, 'https://ror.org/017xch102 Instituto de FĆ­sica Corpuscular'),
(96046, 'https://ror.org/017xqsb41', 'en', 1, 'https://ror.org/017xqsb41 Africa Renewal University'),
(96047, 'https://ror.org/017ysyq31', 'en', 1, 'https://ror.org/017ysyq31 San Juan City Hospital'),
(96048, 'https://ror.org/017z1j344', 'en', 1, 'https://ror.org/017z1j344 Kentucky Academy of Science'),
(96049, 'https://ror.org/017zjpk59', 'en', 1, 'https://ror.org/017zjpk59 Clinical Research Puerto Rico'),
(96050, 'https://ror.org/0181xnw06', 'gl', 1, 'https://ror.org/0181xnw06 Xunta de Galicia'),
(96051, 'https://ror.org/0182gym65', 'es', 1, 'https://ror.org/0182gym65 Centro de Estudios PolĆ­ticos y Constitucionales'),
(96052, 'https://ror.org/0184n5y84', 'en', 1, 'https://ror.org/0184n5y84 University of Iowa Stead Family Children’s Hospital'),
(96053, 'https://ror.org/0184qmt78', 'en', 1, 'https://ror.org/0184qmt78 Cancer Council Western Australia'),
(96054, 'https://ror.org/01851wa66', 'en', 1, 'https://ror.org/01851wa66 Frances and Augustus Newman Foundation'),
(96055, 'https://ror.org/01862bd29', 'en', 1, 'https://ror.org/01862bd29 Julian Schwinger Foundation for Physics Research'),
(96056, 'https://ror.org/01875pg84', 'fr', 1, 'https://ror.org/01875pg84 HƓpital Saint-Antoine'),
(96057, 'https://ror.org/0188qm081', 'en', 1, 'https://ror.org/0188qm081 Lilongwe University of Agriculture and Natural Resources'),
(96058, 'https://ror.org/0188x7939', 'en', 1, 'https://ror.org/0188x7939 Wuhan Myhalic Biotechnological Co., Ltd (China) ę­¦ę±‰åŽč”ē§‘ē”Ÿē‰©ęŠ€ęœÆęœ‰é™å…¬åø'),
(96059, 'https://ror.org/018a8yy17', 'no_lang_code', 1, 'https://ror.org/018a8yy17 ENN (China) 新億集团'),
(96060, 'https://ror.org/018b0x874', 'fr', 1, 'https://ror.org/018b0x874 Laboratoire d''Hydrodynamique'),
(96061, 'https://ror.org/018bh0m68', 'fi', 1, 'https://ror.org/018bh0m68 HiLIFE - Helsinki Institute of Life Science HiLIFE – ElƤmƤntieteiden Instituutti'),
(96062, 'https://ror.org/018da3y22', 'en', 1, 'https://ror.org/018da3y22 Fred Hutchinson/University of Washington/Seattle Children’s Cancer Consortium'),
(96063, 'https://ror.org/018e6qb25', 'en', 1, 'https://ror.org/018e6qb25 Agence canadienne du pari mutuel Canadian Pari-Mutuel Agency'),
(96064, 'https://ror.org/018et4y07', 'en', 1, 'https://ror.org/018et4y07 American Society for Transplantation and Cellular Therapy'),
(96065, 'https://ror.org/018f7hf93', 'en', 1, 'https://ror.org/018f7hf93 Ministerio de Educación Ministry of Education'),
(96066, 'https://ror.org/018fpas51', 'en', 1, 'https://ror.org/018fpas51 State Key Laboratory of Modern Optical Instruments ēŽ°ä»£å…‰å­¦ä»Ŗå™Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96067, 'https://ror.org/018kp7s70', 'en', 1, 'https://ror.org/018kp7s70 Tasmania Law Reform Institute'),
(96068, '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'),
(96069, 'https://ror.org/018n13n96', 'fr', 1, 'https://ror.org/018n13n96 Histoire et critique des arts'),
(96070, 'https://ror.org/018nc6029', 'no_lang_code', 1, 'https://ror.org/018nc6029 Solutions Inc. (Japan) ć‚½ćƒ«ćƒ¼ć‚·ćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(96071, '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'),
(96072, 'https://ror.org/018sz1a42', 'fr', 1, 'https://ror.org/018sz1a42 Centre d''Innovation des Technologies sans Contact Centre of Innovations in Contactless Technologies'),
(96073, 'https://ror.org/018wp0236', 'no_lang_code', 1, 'https://ror.org/018wp0236 Asahi Kasei (Japan) ę—­åŒ–ęˆ'),
(96074, 'https://ror.org/018yzr753', 'pt', 1, 'https://ror.org/018yzr753 Hospital UniversitƔrio Regional do Norte do ParanƔ'),
(96075, 'https://ror.org/018zj6955', 'no', 1, 'https://ror.org/018zj6955 Trond Mohn Foundation Trond Mohn stiftelse'),
(96076, 'https://ror.org/0190e1q31', 'en', 1, 'https://ror.org/0190e1q31 Antarctica New Zealand'),
(96077, 'https://ror.org/0190k2z71', 'id', 1, 'https://ror.org/0190k2z71 Politeknik Energi dan Mineral Akamigas'),
(96078, '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'),
(96079, 'https://ror.org/0192b6408', 'es', 1, 'https://ror.org/0192b6408 Centro MƩdico Sanitas Boreal Sanitas Boreal Medical Centre'),
(96080, 'https://ror.org/0192yc246', 'cs', 1, 'https://ror.org/0192yc246 Liberec Region, Liberecký kraj'),
(96081, 'https://ror.org/0192yj155', 'en', 1, 'https://ror.org/0192yj155 South China Sea Institute Of Oceanology äø­å›½ē§‘å­¦é™¢å—ęµ·ęµ·ę“‹ē ”ē©¶ę‰€'),
(96082, 'https://ror.org/0193wdc07', 'es', 1, 'https://ror.org/0193wdc07 Consejeria de EconomĆ­a Hacienda y empleo de la Comunidad de Madrid'),
(96083, 'https://ror.org/01948cb05', 'en', 1, 'https://ror.org/01948cb05 KEK Applied Research Laboratory å…±é€šåŸŗē›¤ē ”ē©¶ę–½čØ­'),
(96084, 'https://ror.org/0197nmd03', 'no_lang_code', 1, 'https://ror.org/0197nmd03 Ritsumeikan University 立命館大学'),
(96085, 'https://ror.org/0198v2949', 'pt', 1, 'https://ror.org/0198v2949 Rio de Janeiro State University Universidade do Estado do Rio de Janeiro'),
(96086, 'https://ror.org/0199zx576', 'es', 1, 'https://ror.org/0199zx576 Instituto Nacional del Carbón'),
(96087, 'https://ror.org/019bev041', 'en', 1, 'https://ror.org/019bev041 State Key Laboratory of Proteomics č›‹ē™½č“Øē»„å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96088, 'https://ror.org/019btt327', 'no_lang_code', 1, 'https://ror.org/019btt327 Raytheon Technologies (United Kingdom)'),
(96089, 'https://ror.org/019bz5n15', 'en', 1, 'https://ror.org/019bz5n15 Radiation Oncology Institute'),
(96090, 'https://ror.org/019fnr381', 'id', 1, 'https://ror.org/019fnr381 Trisakti University Universitas Trisakti'),
(96091, 'https://ror.org/019gta678', 'en', 1, 'https://ror.org/019gta678 InnovaWood'),
(96092, 'https://ror.org/019jywm96', 'en', 1, 'https://ror.org/019jywm96 rOpenSci'),
(96093, 'https://ror.org/019mh5c80', 'de', 1, 'https://ror.org/019mh5c80 Ministerium für Wissenschaft, Energie, Klimaschutz und Umwelt des Landes Sachsen-Anhalt'),
(96094, 'https://ror.org/019phe233', 'en', 1, 'https://ror.org/019phe233 The Bryden Centre'),
(96095, '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'),
(96096, 'https://ror.org/019q26a60', 'en', 1, 'https://ror.org/019q26a60 Oklahoma-Texas Water Science Center'),
(96097, 'https://ror.org/019rf7x86', 'en', 1, 'https://ror.org/019rf7x86 NIHR Bristol Nutrition Biomedical Research Unit'),
(96098, 'https://ror.org/019s68r62', 'en', 1, 'https://ror.org/019s68r62 Western Fisheries Research Center'),
(96099, 'https://ror.org/019vd4365', 'en', 1, 'https://ror.org/019vd4365 Al-Turath University Ų¬Ų§Ł…Ų¹Ų© التراث'),
(96100, 'https://ror.org/019vw0b32', 'no_lang_code', 1, 'https://ror.org/019vw0b32 QPS Taiwan QPS Taiwan (Taiwan)'),
(96101, 'https://ror.org/019wm1d19', 'en', 1, 'https://ror.org/019wm1d19 Ersilia Open Source Initiative'),
(96102, 'https://ror.org/019yx3c32', 'en', 1, 'https://ror.org/019yx3c32 Great Lakes Science Center'),
(96103, 'https://ror.org/019z76p34', 'it', 1, 'https://ror.org/019z76p34 WWF Italia'),
(96104, 'https://ror.org/019ze4c92', 'es', 1, 'https://ror.org/019ze4c92 Universidad PolitƩcnica de Zacatecas'),
(96105, 'https://ror.org/01a44gd51', 'en', 1, 'https://ror.org/01a44gd51 Bavarian State Ministry for Science and Art Bayerisches Staatsministerium für Wissenschaft und Kunst'),
(96106, 'https://ror.org/01a631g06', 'ca', 1, 'https://ror.org/01a631g06 Centre d''Investigacions sobre Desertificació Desertification Research Centre'),
(96107, 'https://ror.org/01a67y017', 'en', 1, 'https://ror.org/01a67y017 Health Commission of Jilin Province å‰ęž—ēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(96108, 'https://ror.org/01a6c6c20', 'fr', 1, 'https://ror.org/01a6c6c20 Dynamique Microbienne associƩe aux Infections Urinaires et Respiratoires'),
(96109, 'https://ror.org/01a8ev928', 'en', 1, 'https://ror.org/01a8ev928 Xinjiang Institute of Ecology and Geography äø­å›½ē§‘å­¦é™¢ę–°ē–†ē”Ÿę€äøŽåœ°ē†ē ”ē©¶ę‰€'),
(96110, 'https://ror.org/01achz565', 'no_lang_code', 1, 'https://ror.org/01achz565 Windey Energy Technology Group Co., Ltd. (China) ęµ™ę±Ÿčæč¾¾é£Žē”µč‚”ä»½ęœ‰é™å…¬åø'),
(96111, 'https://ror.org/01acw3598', 'fr', 1, 'https://ror.org/01acw3598 Centre d''Ɖtudes MĆ©diĆ©vales Anglaises'),
(96112, 'https://ror.org/01adr0w49', 'en', 1, 'https://ror.org/01adr0w49 University of Maine'),
(96113, 'https://ror.org/01afdc871', 'en', 1, 'https://ror.org/01afdc871 Breast Cancer Options'),
(96114, 'https://ror.org/01agkhd16', 'es', 1, 'https://ror.org/01agkhd16 Universidad Del Este'),
(96115, 'https://ror.org/01anzhw43', 'en', 1, 'https://ror.org/01anzhw43 State Key Laboratory of Intelligent Manufacturing of High-end Construction Machinery é«˜ē«Æå·„ēØ‹ęœŗę¢°ę™ŗčƒ½åˆ¶é€ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96116, 'https://ror.org/01apwpt12', 'en', 1, 'https://ror.org/01apwpt12 Sandia National Laboratories'),
(96117, 'https://ror.org/01aq5nn23', 'no_lang_code', 1, 'https://ror.org/01aq5nn23 Tenaris (United States)'),
(96118, 'https://ror.org/01aqw9j77', 'en', 1, 'https://ror.org/01aqw9j77 Hintze Family Charitable Foundation'),
(96119, 'https://ror.org/01ar0xf40', 'en', 1, 'https://ror.org/01ar0xf40 SINOPEC Research Institute of Safety Engineering Co., Ltd. äø­ēŸ³åŒ–å®‰å…Øå·„ēØ‹ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(96120, 'https://ror.org/01ar4p885', 'no_lang_code', 1, 'https://ror.org/01ar4p885 OnCyte (United States)'),
(96121, 'https://ror.org/01as92r37', 'en', 1, 'https://ror.org/01as92r37 State Key Laboratory of Natural Medicine å¤©ē„¶čÆē‰©ę“»ę€§ē»„åˆ†äøŽčÆę•ˆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96122, 'https://ror.org/01av3m334', 'pt', 1, 'https://ror.org/01av3m334 Federal University of Triângulo Mineiro Universidade Federal do Triângulo Mineiro'),
(96123, 'https://ror.org/01awp1783', 'es', 1, 'https://ror.org/01awp1783 Centro de Rehabilitación Avanzada Sanitas Dr. Esquerdo Sanitas Dr. Esquerdo Advanced Rehabilitation Centre'),
(96124, 'https://ror.org/01az3ay62', 'es', 1, 'https://ror.org/01az3ay62 EuroBasque - Basque Council of the European Movement EuroBasque - Consejo Vasco del Movimiento Europeo'),
(96125, 'https://ror.org/01az6dv73', 'es', 1, 'https://ror.org/01az6dv73 Hospital Universitario PrĆ­ncipe de Asturias'),
(96126, 'https://ror.org/01b009v28', 'en', 1, 'https://ror.org/01b009v28 The University of Chenab, Gujrat'),
(96127, 'https://ror.org/01b1b8a96', 'fr', 1, 'https://ror.org/01b1b8a96 Conseil dƩpartemental de la Marne'),
(96128, 'https://ror.org/01b280561', 'en', 1, 'https://ror.org/01b280561 State Key Laboratory of Cancer Biology č‚æē˜¤ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤');
INSERT INTO `rors` VALUES
(96129, 'https://ror.org/01b38s834', 'en', 1, 'https://ror.org/01b38s834 CCTEG Shenyang Research Institute ē…¤ē§‘é›†å›¢ę²ˆé˜³ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(96130, 'https://ror.org/01b4hqa77', 'no_lang_code', 1, 'https://ror.org/01b4hqa77 Changsha Mining and Metallurgy Research Institute (China) é•æę²™ēŸæå†¶ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬'),
(96131, 'https://ror.org/01b4vw335', 'en', 1, 'https://ror.org/01b4vw335 Swiss Competence Center for Energy Research – Supply of Electricity'),
(96132, 'https://ror.org/01b8jmq89', 'en', 1, 'https://ror.org/01b8jmq89 La Poly Polytechnic University of Puerto Rico'),
(96133, 'https://ror.org/01bdqmg55', 'no_lang_code', 1, 'https://ror.org/01bdqmg55 Guangxi Communication Design Group Co., LTD (China) å¹æč„æäŗ¤é€šč®¾č®”é›†å›¢ęœ‰é™å…¬åø'),
(96134, 'https://ror.org/01bdx3k27', 'no_lang_code', 1, 'https://ror.org/01bdx3k27 Augmanity Nano Ltd. Augmanity Nano Ltd. (Israel)'),
(96135, 'https://ror.org/01beje961', 'it', 1, 'https://ror.org/01beje961 Galleria Borghese'),
(96136, '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'),
(96137, 'https://ror.org/01bmj8t37', 'es', 1, 'https://ror.org/01bmj8t37 National University of La Matanza Universidad Nacional de La Matanza'),
(96138, 'https://ror.org/01bpa4157', 'ca', 0, 'https://ror.org/01bpa4157 Catalan Institute of Climate Sciences Institut CatalĆ  de CiĆØncies del Clima'),
(96139, 'https://ror.org/01bpnem71', 'es', 1, 'https://ror.org/01bpnem71 DiploCientƭfica, Red de Diplomacia cientƭfica para AmƩrica Latina y el Caribe'),
(96140, 'https://ror.org/01bs5br94', 'en', 1, 'https://ror.org/01bs5br94 State Key Laboratory of Pest Control and Resource Utilization ęœ‰å®³ē”Ÿē‰©ęŽ§åˆ¶äøŽčµ„ęŗåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96141, 'https://ror.org/01bskzg04', 'en', 1, 'https://ror.org/01bskzg04 State Key Laboratory of Theoretical Chemical Computing ē†č®ŗåŒ–å­¦č®”ē®—å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96142, 'https://ror.org/01bv37j55', 'fr', 1, 'https://ror.org/01bv37j55 Biomedical Information Processing Laboratory Laboratoire de traitement de l''information en santƩ'),
(96143, 'https://ror.org/01bv3hs44', 'no_lang_code', 1, 'https://ror.org/01bv3hs44 HRS Heat Exchangers (Spain)'),
(96144, 'https://ror.org/01bvxzn29', 'en', 1, 'https://ror.org/01bvxzn29 Ministry of Defence'),
(96145, 'https://ror.org/01bw7zm61', 'en', 1, 'https://ror.org/01bw7zm61 Scottish Government Health and Social Care Directorates'),
(96146, 'https://ror.org/01bwma613', 'en', 1, 'https://ror.org/01bwma613 Max Planck School Matter to Life'),
(96147, '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'),
(96148, 'https://ror.org/01c17pa61', 'en', 1, 'https://ror.org/01c17pa61 Rockingham General Hospital'),
(96149, 'https://ror.org/01c2cjg59', 'fr', 1, 'https://ror.org/01c2cjg59 Institut de Biologie Paris-Seine'),
(96150, 'https://ror.org/01c62av11', 'fr', 1, 'https://ror.org/01c62av11 Groupe de Recherche sur l''Alcool et les PharmacodƩpendances'),
(96151, 'https://ror.org/01c8ccc98', 'en', 1, 'https://ror.org/01c8ccc98 California Strategic Growth Council'),
(96152, 'https://ror.org/01c9ay627', 'en', 1, 'https://ror.org/01c9ay627 Office of Environmental Protection, Sustainability Support and Corporate Safety Analysis'),
(96153, 'https://ror.org/01cabt515', 'fr', 1, 'https://ror.org/01cabt515 UniversitƩ Publique du Sud''Est'),
(96154, 'https://ror.org/01caehj63', 'en', 1, 'https://ror.org/01caehj63 State Key Laboratory of Medical Immunology åŒ»å­¦å…ē–«å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96155, 'https://ror.org/01cams608', 'no_lang_code', 1, 'https://ror.org/01cams608 Napata College ŁƒŁ„ŁŠŲ© نبتة'),
(96156, 'https://ror.org/01cbd4k69', 'cs', 1, 'https://ror.org/01cbd4k69 Kraj Vysočina, Vysočina Region'),
(96157, 'https://ror.org/01cc25b87', 'en', 1, 'https://ror.org/01cc25b87 Colorado Agricultural Experiment Station'),
(96158, 'https://ror.org/01cc3fy72', 'eu', 1, 'https://ror.org/01cc3fy72 Basque Foundation for Science Ikerbasque'),
(96159, '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'),
(96160, 'https://ror.org/01cdrde68', 'en', 1, 'https://ror.org/01cdrde68 United Nations University 国際連合大学'),
(96161, 'https://ror.org/01cf2sz15', 'fr', 1, 'https://ror.org/01cf2sz15 Institut des Sciences de la Terre Institute of Earth Science'),
(96162, 'https://ror.org/01cfnbk63', 'en', 1, 'https://ror.org/01cfnbk63 Colorado Water Science Center'),
(96163, 'https://ror.org/01ckt9009', 'en', 1, 'https://ror.org/01ckt9009 State Key Laboratory of Applied Optics åŗ”ē”Øå…‰å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96164, 'https://ror.org/01cm9aw18', 'no_lang_code', 0, 'https://ror.org/01cm9aw18 Martin Marietta (United States)'),
(96165, 'https://ror.org/01cmdpn82', 'fr', 0, 'https://ror.org/01cmdpn82 Signalisation, Neurobiologie et Cancer'),
(96166, 'https://ror.org/01cqayg74', 'en', 1, 'https://ror.org/01cqayg74 European Future Innovation System (EFIS) Centre'),
(96167, 'https://ror.org/01cwqze88', 'en', 1, 'https://ror.org/01cwqze88 National Institutes of Health'),
(96168, 'https://ror.org/01cxn9s23', 'en', 1, 'https://ror.org/01cxn9s23 State Key Laboratory of Spectroscopy and Atomic and Molecular Physics ę³¢č°±äøŽåŽŸå­åˆ†å­ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96169, 'https://ror.org/01cyr5g02', 'en', 1, 'https://ror.org/01cyr5g02 Office of Environment, Safety, and Health'),
(96170, 'https://ror.org/01cyz3n15', 'en', 1, 'https://ror.org/01cyz3n15 DTU Space'),
(96171, 'https://ror.org/01czqbr06', 'en', 1, 'https://ror.org/01czqbr06 Swiss School of Public Health'),
(96172, 'https://ror.org/01d002842', 'en', 1, 'https://ror.org/01d002842 Jozac Publishers'),
(96173, 'https://ror.org/01d02sf11', 'nl', 1, 'https://ror.org/01d02sf11 OLVG'),
(96174, 'https://ror.org/01d02zv78', 'en', 1, 'https://ror.org/01d02zv78 Australian Institute of Botanical Science'),
(96175, 'https://ror.org/01d4y0s98', 'es', 1, 'https://ror.org/01d4y0s98 Instituto de Investigaciones para el Desarrollo Territorial y el HƔbitat Humano'),
(96176, 'https://ror.org/01d516y88', 'en', 1, 'https://ror.org/01d516y88 Kyoto Min-iren Asukai Hospital äŗ¬éƒ½ę°‘åŒ»é€£ć‚ć™ć‹ć„ē—…é™¢'),
(96177, 'https://ror.org/01d5qkg71', 'en', 1, 'https://ror.org/01d5qkg71 Ghana Academy of Arts and Sciences'),
(96178, 'https://ror.org/01d6bq278', 'it', 1, 'https://ror.org/01d6bq278 Gruppo Nazionale per la Fisica Matematica National Group for Mathematical Physics'),
(96179, 'https://ror.org/01d7n9638', 'no_lang_code', 1, 'https://ror.org/01d7n9638 ITER'),
(96180, 'https://ror.org/01d7pgx08', 'it', 1, 'https://ror.org/01d7pgx08 Museo Civico Alpino "Arnaldo Tazzetti"'),
(96181, 'https://ror.org/01d947q34', 'en', 1, 'https://ror.org/01d947q34 Water Power Technologies Office'),
(96182, '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'),
(96183, 'https://ror.org/01dadvw90', 'fr', 1, 'https://ror.org/01dadvw90 Institut de SystĆ©matique, Ɖvolution, BiodiversitĆ©'),
(96184, 'https://ror.org/01db6pq27', 'en', 1, 'https://ror.org/01db6pq27 California Department of Parks and Recreation'),
(96185, 'https://ror.org/01ddjva78', 'sv', 1, 'https://ror.org/01ddjva78 Mary and Georg C. Ehrnrooth Foundation Mary och Georg C. Ehrnrooths Stiftelse'),
(96186, 'https://ror.org/01df3an44', 'no_lang_code', 1, 'https://ror.org/01df3an44 Genertec Shenyang Machine Tool Co., Ltd. (China) é€šē”ØęŠ€ęœÆę²ˆé˜³ęœŗåŗŠč‚”ä»½ęœ‰é™å…¬åøå®˜ē½‘'),
(96187, 'https://ror.org/01df4mv68', 'en', 1, 'https://ror.org/01df4mv68 Gobierno de Extremadura Government of Extremadura'),
(96188, 'https://ror.org/01djqcd96', 'es', 1, 'https://ror.org/01djqcd96 Ayuntamiento de Santander'),
(96189, 'https://ror.org/01dkem006', 'en', 1, 'https://ror.org/01dkem006 ITI International Team for Implantology'),
(96190, 'https://ror.org/01dmavx46', 'en', 1, 'https://ror.org/01dmavx46 Code for Science & Society'),
(96191, 'https://ror.org/01dmjrf50', 'es', 1, 'https://ror.org/01dmjrf50 Ajuntament de ValĆØncia Ayuntamiento de Valencia'),
(96192, 'https://ror.org/01dt8cc51', 'en', 0, 'https://ror.org/01dt8cc51 Institut für Forschungsinformation und Qualitätssicherung Institute for Research Information and Quality Assurance'),
(96193, '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'),
(96194, 'https://ror.org/01dvabv26', 'en', 1, 'https://ror.org/01dvabv26 Bülent Ecevit University Bülent Ecevit Üniversitesi'),
(96195, 'https://ror.org/01dvj3d25', 'en', 1, 'https://ror.org/01dvj3d25 Atmospheric Radiation Measurement User Facility'),
(96196, 'https://ror.org/01dw2vm55', 'en', 1, 'https://ror.org/01dw2vm55 Rajalakshmi Engineering College'),
(96197, 'https://ror.org/01dwp8348', 'en', 1, 'https://ror.org/01dwp8348 Arctic Submarine Laboratory'),
(96198, 'https://ror.org/01dzdyp81', 'en', 1, 'https://ror.org/01dzdyp81 Department of Public Health and Social Services Dipattamenton Salut Pupbleko Yan Setbision Susiat'),
(96199, 'https://ror.org/01e41cf67', 'en', 1, 'https://ror.org/01e41cf67 Laboratoire national de los alamos Laboratorio Nacional de Los Ɓlamos Los Alamos National Laboratory'),
(96200, 'https://ror.org/01e4byj08', 'en', 1, 'https://ror.org/01e4byj08 University of Wisconsin Carbone Cancer Center'),
(96201, 'https://ror.org/01e6mcq80', 'id', 1, 'https://ror.org/01e6mcq80 Universitas Bosowa'),
(96202, 'https://ror.org/01e7m5196', 'en', 1, 'https://ror.org/01e7m5196 Disaster Prevention & Water Environment Research Center é˜²ē½čˆ‡ę°“ē’°å¢ƒē ”ē©¶äø­åæƒ'),
(96203, 'https://ror.org/01e8w0016', 'fr', 1, 'https://ror.org/01e8w0016 Laboratoire de Neurosciences Cognitives et Computationnelles'),
(96204, 'https://ror.org/01e9y7529', 'fr', 1, 'https://ror.org/01e9y7529 UniversitƩ des Sciences Sociales et de Gestion de Bamako'),
(96205, 'https://ror.org/01ea4na26', 'fr', 1, 'https://ror.org/01ea4na26 Centre d''Ɖtudes et de Recherche en Thermique, Environnement et SystĆØmes'),
(96206, 'https://ror.org/01ebfg457', 'en', 1, 'https://ror.org/01ebfg457 State Key Laboratory of Light Alloy Casting Technology for High-end Equipment é«˜ē«Æč£…å¤‡č½»åˆé‡‘é“øé€ ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96207, 'https://ror.org/01edhwb26', 'en', 1, 'https://ror.org/01edhwb26 Inter-university Institute for Data Intensive Astronomy'),
(96208, 'https://ror.org/01edrm178', 'en', 1, 'https://ror.org/01edrm178 Cotton Research Institute äø­å›½å†œäøšē§‘å­¦é™¢ę£‰čŠ±ē ”ē©¶ę‰€'),
(96209, 'https://ror.org/01edzc976', 'en', 1, 'https://ror.org/01edzc976 Office of Defense Nuclear Nonproliferation'),
(96210, 'https://ror.org/01eef7f80', 'no_lang_code', 1, 'https://ror.org/01eef7f80 Scapa Group (United Kingdom)'),
(96211, 'https://ror.org/01ehyh486', 'it', 1, 'https://ror.org/01ehyh486 Ministero dell''Istruzione e del Merito Ministry of Education and Merit'),
(96212, 'https://ror.org/01ejwte55', 'en', 1, 'https://ror.org/01ejwte55 OSG Consortium'),
(96213, 'https://ror.org/01ek5g375', 'no_lang_code', 1, 'https://ror.org/01ek5g375 Anı Yayıncılık (Turkey)'),
(96214, 'https://ror.org/01ekf5a72', 'en', 1, 'https://ror.org/01ekf5a72 State Key Laboratory of Water and Sediment Science and Water Conservancy and Hydropower Engineering ę°“ę²™ē§‘å­¦äøŽę°“åˆ©ę°“ē”µå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96215, 'https://ror.org/01ekk8h85', 'en', 1, 'https://ror.org/01ekk8h85 Union Bank of Switzerland'),
(96216, 'https://ror.org/01emdsc76', 'en', 0, 'https://ror.org/01emdsc76 Prostate Action'),
(96217, 'https://ror.org/01enszw84', 'en', 1, 'https://ror.org/01enszw84 West Coast University – Panama'),
(96218, 'https://ror.org/01epydt92', 'en', 1, 'https://ror.org/01epydt92 Open Science NL'),
(96219, 'https://ror.org/01eqwx273', 'en', 1, 'https://ror.org/01eqwx273 Hazrat-e Masoumeh University دانؓگاه Ų­Ų¶Ų±ŲŖ Ł…Ų¹ŲµŁˆŁ…Ł‡'),
(96220, 'https://ror.org/01erm0d03', 'en', 1, 'https://ror.org/01erm0d03 Wuhan Research Institute of Materials Protection ę­¦ę±‰ęę–™äæęŠ¤ē ”ē©¶ę‰€'),
(96221, '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'),
(96222, 'https://ror.org/01etg5g76', 'es', 1, 'https://ror.org/01etg5g76 Escuela Interdisciplinaria de Altos Estudios Sociales'),
(96223, 'https://ror.org/01ewh7m12', 'en', 1, 'https://ror.org/01ewh7m12 International Computer Science Institute'),
(96224, 'https://ror.org/01ex21125', 'en', 1, 'https://ror.org/01ex21125 Tasmanian Institute of Agriculture'),
(96225, 'https://ror.org/01exas502', 'fr', 1, 'https://ror.org/01exas502 Centre d''investigation clinique Quinze-Vingts'),
(96226, 'https://ror.org/01ez1vb97', 'en', 1, 'https://ror.org/01ez1vb97 Reactor Fleet and Advanced Reactor Deployment'),
(96227, 'https://ror.org/01f1vfy95', 'fr', 1, 'https://ror.org/01f1vfy95 Laboratoire d''Informatique, du Traitement de l''Information et des SystĆØmes'),
(96228, 'https://ror.org/01f29ny64', 'en', 1, 'https://ror.org/01f29ny64 State Key Laboratory for Advanced Metals and Materials ę–°é‡‘å±žęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96229, 'https://ror.org/01f36yb88', 'no_lang_code', 1, 'https://ror.org/01f36yb88 Exedy (Japan)'),
(96230, 'https://ror.org/01f5p1809', 'en', 1, 'https://ror.org/01f5p1809 Osol Aldeen University College ŁƒŁ„ŁŠŲ© Ų£ŲµŁˆŁ„ Ų§Ł„ŲÆŁŠŁ† الجامعة'),
(96231, 'https://ror.org/01f6ay605', 'es', 1, 'https://ror.org/01f6ay605 Centro Tecnológico Lurederra Technological Center Lurederra'),
(96232, 'https://ror.org/01f6jys10', 'en', 1, 'https://ror.org/01f6jys10 Krembil Research Institute'),
(96233, 'https://ror.org/01f6ney75', 'en', 1, 'https://ror.org/01f6ney75 St. Anthony Hospital in Gig Harbor'),
(96234, 'https://ror.org/01f7saf07', 'en', 1, 'https://ror.org/01f7saf07 Medtronic Foundation'),
(96235, 'https://ror.org/01fah6g03', 'es', 1, 'https://ror.org/01fah6g03 Centro de EdafologĆ­a y BiologĆ­a Aplicada del Segura'),
(96236, 'https://ror.org/01fapfv42', 'en', 1, 'https://ror.org/01fapfv42 Belgian Federal Science Policy Office Federaal Wetenschapsbeleid Politique scientifique fƩdƩrale'),
(96237, 'https://ror.org/01fdvj254', 'fr', 1, 'https://ror.org/01fdvj254 Ɖcole Nationale d''IngĆ©nieurs de Tarbes'),
(96238, 'https://ror.org/01ff1ff64', 'en', 1, 'https://ror.org/01ff1ff64 Centre for Ore Deposit and Earth Sciences'),
(96239, 'https://ror.org/01ffvgk12', 'es', 1, 'https://ror.org/01ffvgk12 Hospital Metropolitano Dr. Pila'),
(96240, 'https://ror.org/01fgmnw14', 'de', 1, 'https://ror.org/01fgmnw14 Berufsgenossenschaftliche Unfallklinik Murnau'),
(96241, 'https://ror.org/01fhm2133', 'en', 0, 'https://ror.org/01fhm2133 Consortia Advancing Standards in Research Administration Information'),
(96242, 'https://ror.org/01fk80922', 'en', 1, 'https://ror.org/01fk80922 Dr. B. R. Ambedkar School of Economics University'),
(96243, 'https://ror.org/01fp9aw72', 'it', 1, 'https://ror.org/01fp9aw72 Agency for the Protection of Health of Garda Azienda Socio Sanitaria Territoriale del Garda'),
(96244, 'https://ror.org/01fpz6759', 'no_lang_code', 1, 'https://ror.org/01fpz6759 IRIS Technology Solutions (Spain)'),
(96245, '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'),
(96246, 'https://ror.org/01fqayw81', 'de', 1, 'https://ror.org/01fqayw81 Deutsches ArchƤologisches Institut, Rƶmisch-Germanische Kommission German Archaeological Institute, Romano Germanic Commission'),
(96247, 'https://ror.org/01fqm1c32', 'es', 1, 'https://ror.org/01fqm1c32 ConsejerĆ­a de PolĆ­ticas Sociales, Familias, Igualdad y Natalidad'),
(96248, 'https://ror.org/01fr19c68', 'en', 1, 'https://ror.org/01fr19c68 Jinan Central Hospital ęµŽå—åø‚äø­åæƒåŒ»é™¢'),
(96249, 'https://ror.org/01ftg8r37', 'en', 1, 'https://ror.org/01ftg8r37 North Carolina Department of Environmental Quality'),
(96250, 'https://ror.org/01fv5sp53', 'en', 1, 'https://ror.org/01fv5sp53 Institute of Advanced Science Facilities, Shenzhen ę·±åœ³ē»¼åˆē²’å­č®¾ę–½ē ”ē©¶é™¢'),
(96251, 'https://ror.org/01fw5n266', 'no_lang_code', 1, 'https://ror.org/01fw5n266 Nouricia (France)'),
(96252, 'https://ror.org/01fxs2165', 'en', 1, 'https://ror.org/01fxs2165 International Commission for the Conservation of Atlantic Tunas'),
(96253, 'https://ror.org/01fykh430', 'en', 1, 'https://ror.org/01fykh430 Indian Health Service'),
(96254, 'https://ror.org/01g0b5g28', 'en', 1, 'https://ror.org/01g0b5g28 Trinity Health Oakland Hospital'),
(96255, 'https://ror.org/01g0gmx67', 'en', 1, 'https://ror.org/01g0gmx67 Northwest Institute For Non-Ferrous Metal Research č„æåŒ—ęœ‰č‰²é‡‘å±žē ”ē©¶é™¢'),
(96256, 'https://ror.org/01g0jwx42', 'pt', 1, 'https://ror.org/01g0jwx42 Instituto PolitƩcnico do Rio de Janeiro'),
(96257, 'https://ror.org/01g2fkx45', 'es', 1, 'https://ror.org/01g2fkx45 Ajuntament de Castelló, Ayuntamiento de Castellón de la Plana'),
(96258, 'https://ror.org/01g5pq328', 'fr', 1, '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'),
(96259, 'https://ror.org/01g5y5k24', 'en', 1, 'https://ror.org/01g5y5k24 High Energy Accelerator Research Organization é«˜ć‚Øćƒćƒ«ć‚®ćƒ¼åŠ é€Ÿå™Øē ”ē©¶ę©Ÿę§‹'),
(96260, 'https://ror.org/01g79t217', 'en', 1, 'https://ror.org/01g79t217 Topos Institute'),
(96261, 'https://ror.org/01g7fa878', 'en', 0, 'https://ror.org/01g7fa878 State Agrarian University of Moldova Universitatea Agrară de Stat din Moldova'),
(96262, 'https://ror.org/01g94x362', 'nl', 1, 'https://ror.org/01g94x362 Departement Economie, Wetenschap & Innovatie Department of Economy, Sciency & Innovation'),
(96263, 'https://ror.org/01g9y2x13', 'no_lang_code', 1, 'https://ror.org/01g9y2x13 Tianjin Institute of Pharmaceutical Research (China) å¤©ę“„čÆē‰©ē ”ē©¶ę‰€'),
(96264, 'https://ror.org/01gan4k05', 'fr', 1, 'https://ror.org/01gan4k05 Catalysis and Spectrochemistry Laboratory Laboratoire Catalyse et Spectrochimie'),
(96265, 'https://ror.org/01gas4q24', 'en', 1, 'https://ror.org/01gas4q24 Office of Defense Nuclear Security'),
(96266, 'https://ror.org/01gdqm013', 'en', 1, 'https://ror.org/01gdqm013 State Key Laboratory of Agricultural Biotechnology å†œäøšē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96267, 'https://ror.org/01gdv4d86', 'en', 1, 'https://ror.org/01gdv4d86 Center for Hierarchical Materials Design'),
(96268, 'https://ror.org/01gedh423', 'id', 1, 'https://ror.org/01gedh423 Sekolah Tinggi Keguruan dan Ilmu Pendidikan PGRI Situbondo'),
(96269, 'https://ror.org/01gf4rc63', 'es', 1, 'https://ror.org/01gf4rc63 Fundación Prodintec Prodintec Foundation'),
(96270, 'https://ror.org/01gg3z807', 'en', 1, 'https://ror.org/01gg3z807 State Key Laboratory of Life Organic Chemistry ē”Ÿå‘½ęœ‰ęœŗåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96271, 'https://ror.org/01gghaa40', 'en', 1, 'https://ror.org/01gghaa40 Simons Initiative for the Developing Brain'),
(96272, 'https://ror.org/01ghvgs84', 'fr', 1, 'https://ror.org/01ghvgs84 Laboratoire Jean Perrin'),
(96273, 'https://ror.org/01gkn6j11', 'en', 1, 'https://ror.org/01gkn6j11 Institute of Geodesy and Geophysics äø­å›½ē§‘å­¦é™¢ęµ‹é‡äøŽåœ°ēƒē‰©ē†ē ”ē©¶ę‰€'),
(96274, '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'),
(96275, 'https://ror.org/01gmrmd93', 'en', 1, 'https://ror.org/01gmrmd93 Anderson University - South Carolina'),
(96276, 'https://ror.org/01gmtnk43', 'en', 1, 'https://ror.org/01gmtnk43 Bundeskanzleramt Federal Chancellery Republic of Austria'),
(96277, 'https://ror.org/01gnh5n78', 'es', 1, 'https://ror.org/01gnh5n78 Centro MƩdico Sanitas Sevilla Los Remedios Sanitas Sevilla Los Remedios Medical Centre'),
(96278, 'https://ror.org/01gs1cg95', 'en', 1, 'https://ror.org/01gs1cg95 Naval Information Warfare Center Pacific'),
(96279, 'https://ror.org/01gsy1c54', 'en', 1, 'https://ror.org/01gsy1c54 Naval Aerospace Medical Research Laboratory'),
(96280, 'https://ror.org/01gt4tt35', 'en', 1, 'https://ror.org/01gt4tt35 Prostate Cancer Research Institute'),
(96281, 'https://ror.org/01gtvm746', 'en', 1, 'https://ror.org/01gtvm746 State Key Laboratory of Deep Sea Mineral Resources Development and Utilization of Technology ę·±ęµ·ēŸæäŗ§čµ„ęŗå¼€å‘åˆ©ē”ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96282, 'https://ror.org/01gxzrh19', 'pt', 1, 'https://ror.org/01gxzrh19 Government of Santa Catarina Governo de Santa Catarina'),
(96283, 'https://ror.org/01gy51q73', 'en', 1, 'https://ror.org/01gy51q73 Philippine Association of Institutions for Research, Inc.'),
(96284, 'https://ror.org/01gynph42', 'en', 1, 'https://ror.org/01gynph42 State Key Laboratory of Trauma, Burns and Compound Injury Research åˆ›ä¼¤ć€ēƒ§ä¼¤äøŽå¤åˆä¼¤ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96285, 'https://ror.org/01h04ms65', 'en', 1, 'https://ror.org/01h04ms65 U.S. Energy Information Administration'),
(96286, 'https://ror.org/01h0g5x34', 'en', 1, 'https://ror.org/01h0g5x34 State Key Laboratory Fluid Power and Mechatronic Systems ęµä½“åŠØåŠ›äøŽęœŗē”µē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96287, 'https://ror.org/01h0ycp25', 'nl', 0, 'https://ror.org/01h0ycp25 Internationale Stichting Alzheimer Onderzoek'),
(96288, 'https://ror.org/01h14ww21', 'fr', 1, 'https://ror.org/01h14ww21 Kastler Brossel Laboratory Laboratoire Kastler Brossel'),
(96289, 'https://ror.org/01h3km103', 'en', 1, 'https://ror.org/01h3km103 State Key Laboratory of Rolling Technology and Continuous Rolling Automation č½§åˆ¶ęŠ€ęœÆåŠčæžč½§č‡ŖåŠØåŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96290, 'https://ror.org/01h4ne021', 'no_lang_code', 1, 'https://ror.org/01h4ne021 NEAL (Algeria)'),
(96291, 'https://ror.org/01h4nv616', 'no_lang_code', 1, 'https://ror.org/01h4nv616 Da Vinci Labs (France)'),
(96292, 'https://ror.org/01h4pzb37', 'de', 1, 'https://ror.org/01h4pzb37 Hochschulinstitut Schaffhausen'),
(96293, 'https://ror.org/01h5tnr73', 'en', 1, 'https://ror.org/01h5tnr73 Battelle'),
(96294, 'https://ror.org/01h6dtw92', 'en', 1, 'https://ror.org/01h6dtw92 TAV College'),
(96295, 'https://ror.org/01h6pze39', 'en', 1, 'https://ror.org/01h6pze39 Universidad de Saint Francis University of Saint Francis'),
(96296, 'https://ror.org/01h7qhd17', 'en', 0, 'https://ror.org/01h7qhd17 Honolulu Star Advertiser'),
(96297, 'https://ror.org/01h90qz20', 'en', 1, 'https://ror.org/01h90qz20 Humanology Sdn Bhd, Humanology Sdn Bhd (Malaysia)'),
(96298, 'https://ror.org/01hbn6876', 'no_lang_code', 0, 'https://ror.org/01hbn6876 Kerneos (France)'),
(96299, 'https://ror.org/01hc18p32', 'de', 1, 'https://ror.org/01hc18p32 Ministerium für Wissenschaft, Forschung und Kunst Baden-Württemberg'),
(96300, 'https://ror.org/01hcc6p91', 'fr', 1, 'https://ror.org/01hcc6p91 Laboratoire d''Ingénierie des Systèmes de Versailles'),
(96301, 'https://ror.org/01hd0xp75', 'sv', 0, 'https://ror.org/01hd0xp75 Skogs- och Jordbrukets ForskningsrƄd Swedish Council for Forestry and Agricultural Research'),
(96302, 'https://ror.org/01hdgge16', 'en', 1, 'https://ror.org/01hdgge16 Great Bay University 大湾区大学'),
(96303, 'https://ror.org/01hfgpz79', 'de', 1, 'https://ror.org/01hfgpz79 Paracelsus-Klinik Golzheim Düsseldorf'),
(96304, 'https://ror.org/01hg74696', 'en', 1, 'https://ror.org/01hg74696 Sankofa Healing Studio'),
(96305, 'https://ror.org/01hg8p552', 'fr', 1, 'https://ror.org/01hg8p552 Laboratoire de Physique NuclĆ©aire et de Hautes Ɖnergies'),
(96306, 'https://ror.org/01hkc5g98', 'en', 1, 'https://ror.org/01hkc5g98 Good Samaritan Medical Center'),
(96307, 'https://ror.org/01hmrs507', 'en', 1, 'https://ror.org/01hmrs507 State Key Laboratory of Coal Conversion ē…¤ē‚­é«˜ę•ˆä½Žē¢³åˆ©ē”Øå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(96308, 'https://ror.org/01hn2pk88', 'no_lang_code', 1, 'https://ror.org/01hn2pk88 Panskura Banamali College'),
(96309, 'https://ror.org/01hp6xm80', 'en', 1, 'https://ror.org/01hp6xm80 NCCOS Hollings Marine Laboratory'),
(96310, 'https://ror.org/01hq59z49', 'es', 1, 'https://ror.org/01hq59z49 Estacion Experimental de Zonas Aridas, Estación Experimental de Zonas Áridas'),
(96311, 'https://ror.org/01hs0de52', 'en', 1, 'https://ror.org/01hs0de52 Pacific Fishery Management Council'),
(96312, 'https://ror.org/01hsx4r68', 'en', 1, 'https://ror.org/01hsx4r68 State Key Laboratory of Computer Science č®”ē®—ęœŗē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96313, 'https://ror.org/01httwk65', 'en', 1, 'https://ror.org/01httwk65 Cerebra'),
(96314, 'https://ror.org/01htygx54', 'en', 1, 'https://ror.org/01htygx54 DYNAMYC MYCOLOGY'),
(96315, 'https://ror.org/01hvpjq66', 'en', 1, 'https://ror.org/01hvpjq66 Abramson Cancer Center'),
(96316, 'https://ror.org/01hwc7828', 'fr', 1, 'https://ror.org/01hwc7828 Arid Regions Institute Institut des RĆ©gions Arides معهد المناطق القاحلة'),
(96317, 'https://ror.org/01hx2yw16', 'no_lang_code', 1, 'https://ror.org/01hx2yw16 Medicover Genetics Medicover Genetics (Cyprus)'),
(96318, 'https://ror.org/01j0mn732', 'no_lang_code', 1, 'https://ror.org/01j0mn732 Biophy Research (France)'),
(96319, 'https://ror.org/01j1eb875', 'ca', 1, 'https://ror.org/01j1eb875 Catalan Institute of Oncology Institut CatalƠ d''Oncologia Instituto CatalƔn de Oncologƭa'),
(96320, 'https://ror.org/01j20wc74', 'en', 1, 'https://ror.org/01j20wc74 Alzheimer’s Disease Neuroimaging Initiative'),
(96321, 'https://ror.org/01j56e062', 'pt', 1, 'https://ror.org/01j56e062 Catholic University of Petrópolis Universidade Católica de Petrópolis'),
(96322, 'https://ror.org/01j628m19', 'no_lang_code', 1, 'https://ror.org/01j628m19 OICC Press (United Kingdom)'),
(96323, 'https://ror.org/01j67h539', 'en', 1, 'https://ror.org/01j67h539 Office of Advanced Fuels Technologies'),
(96324, 'https://ror.org/01j8n5986', 'en', 1, 'https://ror.org/01j8n5986 Hong Kong Institute of Certified Public Accountants é¦™ęøÆęœƒčØˆåø«å…¬ęœƒ'),
(96325, 'https://ror.org/01j8y9p48', 'no_lang_code', 1, 'https://ror.org/01j8y9p48 C.P.Q. IbƩrica (Spain)'),
(96326, 'https://ror.org/01j98sy69', 'es', 1, 'https://ror.org/01j98sy69 Asociación Española de Industriales de PlÔsticos'),
(96327, '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'),
(96328, 'https://ror.org/01jcmjd77', 'it', 1, 'https://ror.org/01jcmjd77 Aziende Socio Sanitarie Territoriale di Crema Regional Health Care and Social Agency of Crema'),
(96329, 'https://ror.org/01jf74q70', 'id', 1, 'https://ror.org/01jf74q70 Universitas Negeri Surabaya'),
(96330, 'https://ror.org/01jf9jv39', 'pt', 1, 'https://ror.org/01jf9jv39 Centro de Recursos Naturais e Ambiente'),
(96331, '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'),
(96332, 'https://ror.org/01jhe7086', 'en', 1, 'https://ror.org/01jhe7086 University of Iowa Holden Comprehensive Cancer Center'),
(96333, 'https://ror.org/01jjraa45', 'en', 1, 'https://ror.org/01jjraa45 State Key Laboratory of Crystal Materials ę™¶ä½“ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96334, 'https://ror.org/01jksdf22', 'en', 1, 'https://ror.org/01jksdf22 Department of Agriculture, Environment and Rural Affairs of Northern Ireland'),
(96335, 'https://ror.org/01jn0j059', 'en', 1, 'https://ror.org/01jn0j059 Bohdan Khmelnytskyi National Academy of the State Border Guard Service of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Державної прикорГонної служби України імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(96336, 'https://ror.org/01jnrzt83', 'fr', 1, 'https://ror.org/01jnrzt83 Biomarqueurs d’urgence et de rĆ©animation'),
(96337, 'https://ror.org/01jq57122', 'fr', 1, 'https://ror.org/01jq57122 Ɖcole Nationale SupĆ©rieure d''Architecture de Nantes'),
(96338, 'https://ror.org/01jr1v359', 'fr', 1, 'https://ror.org/01jr1v359 Laboratoire d''Informatique MƩdicale et d''IngƩnierie des Connaissances en e-SantƩ'),
(96339, 'https://ror.org/01jsenc11', 'es', 1, 'https://ror.org/01jsenc11 Institute of History Instituto de Historia'),
(96340, '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'),
(96341, 'https://ror.org/01jt5mq34', 'en', 1, 'https://ror.org/01jt5mq34 Federal Motor Carrier Safety Administration'),
(96342, 'https://ror.org/01jtcg420', 'en', 1, 'https://ror.org/01jtcg420 Woodhull Medical and Mental Health Center'),
(96343, 'https://ror.org/01jvv7h21', 'en', 1, 'https://ror.org/01jvv7h21 Merchants Chongqing Communications Research and Design Institute ę‹›å•†å±€é‡åŗ†äŗ¤é€šē§‘ē ”č®¾č®”é™¢ęœ‰é™å…¬åø'),
(96344, 'https://ror.org/01jwe7h47', 'es', 1, 'https://ror.org/01jwe7h47 Centro OceanogrƔfico de Santander Oceanographic Center of Santander'),
(96345, 'https://ror.org/01jxjav08', 'en', 1, 'https://ror.org/01jxjav08 Wuhan Institute of Virology 中国科学院武汉病毒研究所'),
(96346, 'https://ror.org/01jyv8a11', 'en', 1, 'https://ror.org/01jyv8a11 Massachusetts Breast Cancer Coalition'),
(96347, 'https://ror.org/01jz8ma51', 'en', 1, 'https://ror.org/01jz8ma51 State Key Laboratory of Basin Water Cycle Simulation and Regulation ęµåŸŸę°“å¾ŖēŽÆęØ”ę‹ŸäøŽč°ƒęŽ§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96348, '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'),
(96349, 'https://ror.org/01jzs3b90', 'es', 1, 'https://ror.org/01jzs3b90 Fundación BBVA'),
(96350, 'https://ror.org/01k1ngp50', 'fr', 1, 'https://ror.org/01k1ngp50 Complexe de Recherche Interprofessionnel en AƩrothermochimie'),
(96351, 'https://ror.org/01k1v7590', 'fr', 1, 'https://ror.org/01k1v7590 Laboratoire de MathƩmatiques Raphaƫl Salem'),
(96352, 'https://ror.org/01k1y4586', 'it', 1, 'https://ror.org/01k1y4586 Istituto Sperimentale per la Zootecnia'),
(96353, 'https://ror.org/01k32vr40', 'en', 1, 'https://ror.org/01k32vr40 Bureau of International Narcotics and Law Enforcement Affairs'),
(96354, 'https://ror.org/01k33dw46', 'en', 1, 'https://ror.org/01k33dw46 Brain Tumour Charity'),
(96355, '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'),
(96356, 'https://ror.org/01k40cz91', 'fr', 1, 'https://ror.org/01k40cz91 Normandie UniversitƩ'),
(96357, 'https://ror.org/01k46bc48', 'no_lang_code', 1, 'https://ror.org/01k46bc48 Semmtech (Netherlands)'),
(96358, 'https://ror.org/01k476402', 'en', 1, 'https://ror.org/01k476402 Ahmed Draia University الجامعة Ų§Ł„Ų£ŁŲ±ŁŠŁ‚ŁŠŲ©'),
(96359, 'https://ror.org/01k4ynh35', 'en', 0, 'https://ror.org/01k4ynh35 Kyiv Academy of Arts ŠšŠøŃ—Š²ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń мистецтв'),
(96360, 'https://ror.org/01k5d9263', 'es', 1, 'https://ror.org/01k5d9263 Centro OceanogrƔfico de CƔdiz Oceanographic Center of CƔdiz'),
(96361, 'https://ror.org/01k800776', 'en', 1, 'https://ror.org/01k800776 ProMedica'),
(96362, 'https://ror.org/01k94e681', 'no_lang_code', 1, 'https://ror.org/01k94e681 MIMOS (Malaysia)'),
(96363, 'https://ror.org/01kbfgm16', 'en', 1, 'https://ror.org/01kbfgm16 UC San Diego Health System'),
(96364, 'https://ror.org/01kc9ap60', 'ca', 1, 'https://ror.org/01kc9ap60 Museo de Arqueologƭa de CataluƱa Museu d''Arqueologia de Catalunya'),
(96365, 'https://ror.org/01kde4v59', 'en', 1, 'https://ror.org/01kde4v59 EIT Food'),
(96366, 'https://ror.org/01kevcn70', 'en', 1, 'https://ror.org/01kevcn70 Arab Academy For E-Business'),
(96367, 'https://ror.org/01kg1t878', 'en', 1, 'https://ror.org/01kg1t878 Naval Research Laboratory Plasma Physics Division'),
(96368, 'https://ror.org/01khfdf61', 'es', 1, 'https://ror.org/01khfdf61 Fundación Flores'),
(96369, 'https://ror.org/01khfgv28', 'en', 1, 'https://ror.org/01khfgv28 State Key Laboratory of Advanced Steel Processing and Products å…ˆčæ›é’¢é“ęµēØ‹åŠęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96370, 'https://ror.org/01khhjy85', 'no_lang_code', 1, 'https://ror.org/01khhjy85 ATI Inc. ATI Inc. (United States)'),
(96371, 'https://ror.org/01kjamd65', 'no_lang_code', 1, 'https://ror.org/01kjamd65 ELCOGAS (Spain)'),
(96372, 'https://ror.org/01kk86953', 'no_lang_code', 1, 'https://ror.org/01kk86953 Climate Resource (Australia)'),
(96373, 'https://ror.org/01kk9yv55', 'en', 1, 'https://ror.org/01kk9yv55 Naval Nuclear Propulsion Program (Naval Reactors)'),
(96374, 'https://ror.org/01km8f434', 'fr', 1, 'https://ror.org/01km8f434 UnitƩ de Recherche en Chimie Organique et MacromolƩculaire'),
(96375, 'https://ror.org/01kn3j525', 'en', 1, 'https://ror.org/01kn3j525 Delaware INBRE'),
(96376, 'https://ror.org/01ktx4s83', 'en', 1, 'https://ror.org/01ktx4s83 Canada First Research Excellence Fund Fonds d’excellence en recherche ApogĆ©e Canada'),
(96377, 'https://ror.org/01ktyz217', 'en', 1, 'https://ror.org/01ktyz217 Factum Foundation Fundación Factum'),
(96378, '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'),
(96379, 'https://ror.org/01ky34z31', 'en', 1, 'https://ror.org/01ky34z31 Bellevue Hospital Center'),
(96380, 'https://ror.org/01ky5n302', 'en', 1, 'https://ror.org/01ky5n302 State Key Laboratory of Bridge Engineering Structural Dynamics ę”„ę¢å·„ēØ‹ē»“ęž„åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96381, 'https://ror.org/01kz6he51', 'id', 1, 'https://ror.org/01kz6he51 Politeknik Siber Cerdika Internasional'),
(96382, 'https://ror.org/01kzbqm05', 'ca', 1, 'https://ror.org/01kzbqm05 Centre d''Esclerosi MĆŗltiple de Catalunya'),
(96383, 'https://ror.org/01m0pag22', 'es', 1, 'https://ror.org/01m0pag22 Real Sociedad EspaƱola de Fƭsica'),
(96384, 'https://ror.org/01m0z6m03', 'fr', 0, 'https://ror.org/01m0z6m03 Ɖcole normale supĆ©rieure de Fontenay-Saint-Cloud'),
(96385, 'https://ror.org/01m10e879', 'en', 1, 'https://ror.org/01m10e879 OpenTopography'),
(96386, 'https://ror.org/01m1pjq63', 'no_lang_code', 1, 'https://ror.org/01m1pjq63 Aplitec (Spain)'),
(96387, 'https://ror.org/01m2qwb98', 'es', 1, 'https://ror.org/01m2qwb98 Centro Médico Sanitas Alcorcón Sanitas Alcorcón Medical Centre'),
(96388, 'https://ror.org/01m34mw67', 'en', 1, 'https://ror.org/01m34mw67 Guangzhou Research Institute of Non-ferrous Metals å¹æå·žęœ‰č‰²é‡‘å±žē ”ē©¶é™¢'),
(96389, 'https://ror.org/01m3vks35', 'en', 1, 'https://ror.org/01m3vks35 State Key Laboratory of Ocean Engineering ęµ·ę“‹å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96390, 'https://ror.org/01mamgv83', 'en', 1, 'https://ror.org/01mamgv83 State Key Laboratory of ASIC and System äø“ē”Øé›†ęˆē”µč·ÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96391, 'https://ror.org/01mc9wk69', 'en', 1, 'https://ror.org/01mc9wk69 State Key Laboratory of Earthquake Dynamics åœ°éœ‡åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96392, 'https://ror.org/01mccny28', 'en', 1, 'https://ror.org/01mccny28 Early detection of Colon Cancer using Molecular Markers and Microbiota'),
(96393, 'https://ror.org/01me1hv80', 'en', 1, 'https://ror.org/01me1hv80 METAvivor'),
(96394, 'https://ror.org/01me7wg25', 'en', 1, 'https://ror.org/01me7wg25 Center for Risk-Based Community Resilience Planning'),
(96395, 'https://ror.org/01mhban88', 'es', 1, 'https://ror.org/01mhban88 Fundación Bancaja'),
(96396, 'https://ror.org/01mhxe537', 'no_lang_code', 1, 'https://ror.org/01mhxe537 Geolica Innovations (Spain)'),
(96397, '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'),
(96398, 'https://ror.org/01mkym489', 'en', 1, 'https://ror.org/01mkym489 Rally Foundation for Childhood Cancer Research'),
(96399, 'https://ror.org/01mmady97', 'de', 1, 'https://ror.org/01mmady97 Deutsches Herzzentrum der CharitƩ German Heart Center Berlin'),
(96400, 'https://ror.org/01mqjeb88', 'sv', 1, 'https://ror.org/01mqjeb88 SprƄkbanken Sam'),
(96401, 'https://ror.org/01mqtzm43', 'es', 1, 'https://ror.org/01mqtzm43 Instituto de Microelectrónica de Sevilla'),
(96402, 'https://ror.org/01mr5b726', 'en', 1, 'https://ror.org/01mr5b726 State Key Laboratory of Advanced Electromagnetic Engineering and Technology å¼ŗē”µē£å·„ēØ‹äøŽę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96403, 'https://ror.org/01ms6wc17', 'no_lang_code', 1, 'https://ror.org/01ms6wc17 Colectica (United States)'),
(96404, 'https://ror.org/01mwmh458', 'no_lang_code', 1, 'https://ror.org/01mwmh458 VMware (United States)'),
(96405, 'https://ror.org/01mx22g67', 'en', 1, 'https://ror.org/01mx22g67 State Key Laboratory of Clean Energy Utilization čƒ½ęŗęø…ę“åˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96406, 'https://ror.org/01mywhy53', 'en', 1, 'https://ror.org/01mywhy53 Vietnamese Academy of Forest Sciences'),
(96407, 'https://ror.org/01mz2pn83', 'de', 1, 'https://ror.org/01mz2pn83 Vereinigung Ɩsterreichischer Bibliothekarinnen und Bibliothekare'),
(96408, 'https://ror.org/01n0fwh86', 'es', 1, 'https://ror.org/01n0fwh86 Sociedad Latinoamericana de Nutrición'),
(96409, 'https://ror.org/01n0j2c74', 'en', 1, 'https://ror.org/01n0j2c74 Modern Specialized University الجامعة Ų§Ł„ŲŖŲ®ŲµŲµŁŠŲ© Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(96410, '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'),
(96411, 'https://ror.org/01n3rg866', 'en', 1, 'https://ror.org/01n3rg866 State Key Laboratory of Genetic Engineering é—ä¼ å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96412, 'https://ror.org/01n57zj03', 'en', 0, 'https://ror.org/01n57zj03 State Key Laboratory of Medical Genomics åŒ»å­¦é—ä¼ å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96413, 'https://ror.org/01n66aj04', 'en', 1, 'https://ror.org/01n66aj04 Sisters Network Inc.'),
(96414, 'https://ror.org/01nbmrk54', 'en', 1, 'https://ror.org/01nbmrk54 Bureau of Educational and Cultural Affairs'),
(96415, 'https://ror.org/01ncz5595', 'en', 1, 'https://ror.org/01ncz5595 Methodist College'),
(96416, 'https://ror.org/01nebar93', 'en', 1, 'https://ror.org/01nebar93 Rose Hills Foundation'),
(96417, 'https://ror.org/01nehnf32', 'es', 1, 'https://ror.org/01nehnf32 Centro MƩdico Sanitas Valdebebas Sanitas Valdebebas Medical Centre'),
(96418, 'https://ror.org/01nejhz12', 'en', 0, 'https://ror.org/01nejhz12 Naval Electronics Laboratory Center'),
(96419, 'https://ror.org/01ngpvg12', 'de', 1, 'https://ror.org/01ngpvg12 Max Planck Institute for Sustainable Materials Max-Planck-Institut für Nachhaltige Materialien'),
(96420, 'https://ror.org/01njes783', 'en', 1, 'https://ror.org/01njes783 Seattle Children''s Hospital'),
(96421, 'https://ror.org/01nkdyf86', 'en', 1, 'https://ror.org/01nkdyf86 Armadale Health Service'),
(96422, 'https://ror.org/01nmyfr60', 'en', 1, 'https://ror.org/01nmyfr60 USC Norris Comprehensive Cancer Center'),
(96423, 'https://ror.org/01npab275', 'es', 1, 'https://ror.org/01npab275 Universidad Autónoma del Carmen'),
(96424, 'https://ror.org/01nqb1v76', 'no_lang_code', 0, 'https://ror.org/01nqb1v76 Goodyear Aerospace (United States)'),
(96425, 'https://ror.org/01nr3td38', 'fr', 1, 'https://ror.org/01nr3td38 Laboratoire d''Informatique Fondamentale d''OrlƩans'),
(96426, 'https://ror.org/01nry9c15', 'en', 1, 'https://ror.org/01nry9c15 Fundació Pasqual Maragall Pasqual Maragall Foundation'),
(96427, 'https://ror.org/01nsd7y51', 'es', 1, 'https://ror.org/01nsd7y51 Geociencias Barcelona'),
(96428, 'https://ror.org/01nv2xf68', 'ca', 1, 'https://ror.org/01nv2xf68 Ajuntament de L’Hospitalet Hospitalet de Llobregat City Council'),
(96429, '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'),
(96430, 'https://ror.org/01nxm2y98', 'en', 1, 'https://ror.org/01nxm2y98 Gilchrist Educational Trust'),
(96431, 'https://ror.org/01nywkf82', 'fr', 1, 'https://ror.org/01nywkf82 CƩgep de Sherbrooke'),
(96432, 'https://ror.org/01p07y544', 'no_lang_code', 1, 'https://ror.org/01p07y544 Hryhorii Skovoroda University in Pereiaslav Університет Š“Ń€ŠøŠ³Š¾Ń€Ń–Ń ДковороГи в ŠŸŠµŃ€ŠµŃŃŠ»Š°Š²Ń–'),
(96433, 'https://ror.org/01p2gfs74', 'es', 1, 'https://ror.org/01p2gfs74 Fundación Sancho el Sabio Fundazioa Sancho el Sabio Foundation'),
(96434, 'https://ror.org/01p3wva84', 'no_lang_code', 0, 'https://ror.org/01p3wva84 Forest Laboratories (United States)'),
(96435, 'https://ror.org/01p4g5p84', 'fr', 1, 'https://ror.org/01p4g5p84 GƩographie de l''environnement'),
(96436, 'https://ror.org/01p6yxw64', 'fr', 1, 'https://ror.org/01p6yxw64 Groupe des Ɖcoles Nationales d''Ɖconomie et Statistique'),
(96437, 'https://ror.org/01p7jjy08', 'en', 1, 'https://ror.org/01p7jjy08 Saint Louis University Universidad de San Luis UniversitƩ de saint-louis'),
(96438, 'https://ror.org/01p9kjs66', 'no_lang_code', 1, 'https://ror.org/01p9kjs66 Industrial Galvanizadora (Spain)'),
(96439, 'https://ror.org/01pa9ed26', 'en', 1, 'https://ror.org/01pa9ed26 Dartmouth Health'),
(96440, 'https://ror.org/01pb8rp31', 'en', 1, 'https://ror.org/01pb8rp31 Issyk-Kul State University Š˜ŃŃŃ‹Šŗ-Кульский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(96441, 'https://ror.org/01pct2123', 'fr', 1, 'https://ror.org/01pct2123 Laboratoire de thermofluide pour le transport Thermo-Fluids for Transport Laboratory'),
(96442, 'https://ror.org/01pd2sz18', 'fr', 1, 'https://ror.org/01pd2sz18 MathƩmatiques, Informatique et Statistique pour l''Environnement et l''Agronomie'),
(96443, 'https://ror.org/01pe22k85', 'pt', 1, 'https://ror.org/01pe22k85 Instituto PortuguĆŖs Da Qualidade'),
(96444, 'https://ror.org/01ph0t361', 'fr', 1, 'https://ror.org/01ph0t361 Fondation Voir & Entendre'),
(96445, 'https://ror.org/01pj15135', 'no_lang_code', 1, 'https://ror.org/01pj15135 Diater (Spain)'),
(96446, 'https://ror.org/01pjw7y38', 'fr', 1, 'https://ror.org/01pjw7y38 Laboratoire de Droit PrivƩ'),
(96447, 'https://ror.org/01pmcea89', 'es', 1, 'https://ror.org/01pmcea89 Centro MƩdico Sanitas BS Boadilla Sanitas BS Boadilla Medical Centre'),
(96448, 'https://ror.org/01pnsd879', 'no_lang_code', 1, 'https://ror.org/01pnsd879 Sulkhan-Saba Orbeliani University ეულხან-įƒ”įƒįƒ‘įƒ įƒįƒ įƒ‘įƒ”įƒšįƒ˜įƒįƒœįƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(96449, 'https://ror.org/01pnxy345', 'id', 1, 'https://ror.org/01pnxy345 Universitas Trinita'),
(96450, 'https://ror.org/01prrh334', 'en', 1, 'https://ror.org/01prrh334 State Key Laboratory of Acoustics å£°åœŗå£°äæ”ęÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96451, 'https://ror.org/01prxdf57', 'en', 1, 'https://ror.org/01prxdf57 Georges Friedel Laboratory Laboratoire George Friedel'),
(96452, 'https://ror.org/01pshgb33', 'no_lang_code', 1, 'https://ror.org/01pshgb33 Resonac (Japan) ę Ŗå¼ä¼šē¤¾ćƒ¬ć‚¾ćƒŠćƒƒć‚Æ'),
(96453, 'https://ror.org/01pvjzw40', 'en', 1, 'https://ror.org/01pvjzw40 State Key Laboratory of New Technology of Iron and Steel Metallurgy é’¢é“å†¶é‡‘ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96454, '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'),
(96455, 'https://ror.org/01pxcyx49', 'fr', 1, 'https://ror.org/01pxcyx49 PƓle de Recherche Francophonies, Interculturel, Communication, Sociolinguistique'),
(96456, 'https://ror.org/01q2bn656', 'fr', 1, 'https://ror.org/01q2bn656 Laboratoire Instrumentation, Simulation et Informatique Scientifique'),
(96457, 'https://ror.org/01q2s4214', 'de', 1, 'https://ror.org/01q2s4214 Addisca'),
(96458, 'https://ror.org/01q5hrg92', 'en', 1, 'https://ror.org/01q5hrg92 Virgin Islands Department of Human Services'),
(96459, 'https://ror.org/01q6sg345', 'id', 1, 'https://ror.org/01q6sg345 Universitas Islam Internasional Indonesia'),
(96460, 'https://ror.org/01q7cq281', 'es', 1, 'https://ror.org/01q7cq281 Wikimedia EspaƱa'),
(96461, 'https://ror.org/01q9drc95', 'es', 1, 'https://ror.org/01q9drc95 Institute of Agricultural Sciences Instituto de Ciencias Agrarias'),
(96462, 'https://ror.org/01qbsyz51', 'en', 1, 'https://ror.org/01qbsyz51 Ayub Agriculture Research Institute'),
(96463, 'https://ror.org/01qew1n19', 'fr', 1, 'https://ror.org/01qew1n19 IRT Saint ExupƩry'),
(96464, 'https://ror.org/01qew8q20', 'es', 1, 'https://ror.org/01qew8q20 Fundación para la Investigación Médica Aplicada'),
(96465, 'https://ror.org/01qfjp710', 'fr', 1, 'https://ror.org/01qfjp710 Lasers, Plasmas et ProcƩdƩs Photoniques'),
(96466, 'https://ror.org/01qgecw57', 'en', 1, 'https://ror.org/01qgecw57 Bristol Royal Hospital for Children'),
(96467, 'https://ror.org/01qgn1839', 'en', 1, 'https://ror.org/01qgn1839 NIHR Applied Research Collaboration South West Peninsula'),
(96468, 'https://ror.org/01qh08519', 'es', 1, 'https://ror.org/01qh08519 Ministerio para la Transformación Digital y de la Función Pública'),
(96469, 'https://ror.org/01qjd1497', 'fr', 1, 'https://ror.org/01qjd1497 Centre de recherche bretonne et celtique'),
(96470, 'https://ror.org/01qkmtm61', 'en', 1, 'https://ror.org/01qkmtm61 Moores Cancer Center'),
(96471, 'https://ror.org/01qm2pj26', 'es', 1, 'https://ror.org/01qm2pj26 Fundación Agustín de Betancourt'),
(96472, 'https://ror.org/01qp82651', 'pt', 1, 'https://ror.org/01qp82651 Academia de CiĆŖncias da Bahia'),
(96473, 'https://ror.org/01qpswk97', 'en', 1, 'https://ror.org/01qpswk97 Canon Medical Systems Corporation (Japan) ć‚­ćƒ¤ćƒŽćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚·ć‚¹ćƒ†ćƒ ć‚ŗę Ŗå¼ä¼šē¤¾'),
(96474, 'https://ror.org/01qradn92', 'en', 1, 'https://ror.org/01qradn92 KEK Accelerator Laboratory åŠ é€Ÿå™Øē ”ē©¶ę–½čØ­'),
(96475, 'https://ror.org/01qrpsa36', 'en', 1, 'https://ror.org/01qrpsa36 Bioenergy Technologies Office'),
(96476, 'https://ror.org/01qv3ez98', 'en', 1, 'https://ror.org/01qv3ez98 Australian National Algae Culture Collection'),
(96477, 'https://ror.org/01qvmna33', 'en', 1, 'https://ror.org/01qvmna33 Wind Energy Technologies Office'),
(96478, 'https://ror.org/01qymej67', 'de', 1, 'https://ror.org/01qymej67 Landesanstalt für Umwelt Baden-Württemberg'),
(96479, 'https://ror.org/01r0c1p88', 'en', 1, 'https://ror.org/01r0c1p88 University System of Maryland'),
(96480, 'https://ror.org/01r8vp990', 'ro', 1, 'https://ror.org/01r8vp990 Anelis Plus Association of Universities Research Centres and Central University Libraries in Romania'),
(96481, 'https://ror.org/01r96cc35', 'fr', 1, 'https://ror.org/01r96cc35 Laboratoire Universitaire des Sciences AppliquƩes de Cherbourg'),
(96482, 'https://ror.org/01raz2h88', 'fr', 1, 'https://ror.org/01raz2h88 UniversitƩ Thomas SANKARA'),
(96483, 'https://ror.org/01rde0531', 'en', 1, 'https://ror.org/01rde0531 Therapeutic Innovation Australia'),
(96484, 'https://ror.org/01rfadg88', 'en', 1, 'https://ror.org/01rfadg88 St. Petersburg Christian University Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ христианский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(96485, 'https://ror.org/01rg4e096', 'en', 1, 'https://ror.org/01rg4e096 Virginia and West Virginia Water Science Center'),
(96486, 'https://ror.org/01rhba952', 'no_lang_code', 0, 'https://ror.org/01rhba952 BAE Systems Electronic Systems (United States)'),
(96487, 'https://ror.org/01rjbvz57', 'en', 1, 'https://ror.org/01rjbvz57 American Civil Liberties Union'),
(96488, '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'),
(96489, 'https://ror.org/01rp06j36', 'en', 1, 'https://ror.org/01rp06j36 Escuela de Negocios IESIDE IESIDE Business School'),
(96490, 'https://ror.org/01rq8ck58', 'en', 1, 'https://ror.org/01rq8ck58 Keck Hospital of USC'),
(96491, 'https://ror.org/01rqwqr15', 'en', 1, 'https://ror.org/01rqwqr15 Point Pedro Institute of Development'),
(96492, 'https://ror.org/01rtar838', 'en', 1, 'https://ror.org/01rtar838 Iowa Academy of Science'),
(96493, 'https://ror.org/01rvhet58', 'en', 1, 'https://ror.org/01rvhet58 Farhangian University دانؓگاه ŁŲ±Ł‡Ł†ŚÆŪŒŲ§Ł†'),
(96494, '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'),
(96495, 'https://ror.org/01rx64j22', 'en', 1, 'https://ror.org/01rx64j22 Simon Diedong Dombo University of Business and Integrated Development Studies'),
(96496, 'https://ror.org/01s0rab11', 'es', 1, 'https://ror.org/01s0rab11 Ministerio de Telecomunicaciones y de la Sociedad de la Información'),
(96497, 'https://ror.org/01s12ye51', 'en', 1, 'https://ror.org/01s12ye51 The Central Hospital of Enshi Tujia and Miao Autonomous Prefecture ę©ę–½åœŸå®¶ę—č‹—ę—č‡Ŗę²»å·žäø­åæƒåŒ»é™¢'),
(96498, 'https://ror.org/01s1a1r54', 'en', 1, 'https://ror.org/01s1a1r54 "Ion Ionescu de la Brad" Iasi University of Life Sciences'),
(96499, 'https://ror.org/01s3y9g58', 'en', 1, 'https://ror.org/01s3y9g58 Children''s Hospital Central California'),
(96500, 'https://ror.org/01s5nhm68', 'no_lang_code', 1, 'https://ror.org/01s5nhm68 Gipsi (France)'),
(96501, 'https://ror.org/01s5nqv53', 'en', 1, 'https://ror.org/01s5nqv53 Centre for Advanced Microscopy'),
(96502, 'https://ror.org/01s5v9a88', 'no_lang_code', 1, 'https://ror.org/01s5v9a88 China Energy Science and Technology Research Institute Co., Ltd. (China) å›½å®¶čƒ½ęŗé›†å›¢ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(96503, 'https://ror.org/01s6vvw09', 'en', 1, 'https://ror.org/01s6vvw09 The Red Door Community'),
(96504, 'https://ror.org/01s9db082', 'no_lang_code', 0, 'https://ror.org/01s9db082 CA Technologies (United States)');
INSERT INTO `rors` VALUES
(96505, 'https://ror.org/01sejnw50', 'en', 1, 'https://ror.org/01sejnw50 School of Management Fribourg'),
(96506, 'https://ror.org/01sks0025', 'en', 1, 'https://ror.org/01sks0025 Kharkiv National Medical University Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(96507, 'https://ror.org/01skzfp69', 'en', 1, 'https://ror.org/01skzfp69 City and Guilds College Association'),
(96508, 'https://ror.org/01sqena74', 'en', 1, 'https://ror.org/01sqena74 SSN Educational and Charitable Trust'),
(96509, 'https://ror.org/01sra1980', 'fr', 1, 'https://ror.org/01sra1980 Remodelage et Reparation du Tissu Renal, Remodelage et rƩparation du tissu rƩnal'),
(96510, 'https://ror.org/01srwze89', 'en', 1, 'https://ror.org/01srwze89 CHI Health Nebraska Heart'),
(96511, 'https://ror.org/01ss8rw36', 'en', 1, 'https://ror.org/01ss8rw36 State Key Laboratory of Space Medicine Fundamentals and Application čˆŖå¤©åŒ»å­¦åŸŗē”€äøŽåŗ”ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96512, 'https://ror.org/01svbkm65', 'en', 1, 'https://ror.org/01svbkm65 HSNC University'),
(96513, 'https://ror.org/01svjdw65', 'en', 1, 'https://ror.org/01svjdw65 Argonne Leadership Computing Facility'),
(96514, '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'),
(96515, 'https://ror.org/01t01fd32', 'en', 1, 'https://ror.org/01t01fd32 Synergy America, Synergy America (United States)'),
(96516, 'https://ror.org/01t2m0x06', 'en', 1, 'https://ror.org/01t2m0x06 State Key Laboratory of Continental Dynamics å¤§é™†åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96517, 'https://ror.org/01t3fbq26', 'id', 1, 'https://ror.org/01t3fbq26 Sekolah Tinggi Ilmu Kepolisian'),
(96518, 'https://ror.org/01t3n1r11', 'fr', 1, 'https://ror.org/01t3n1r11 Analyses et Expérimentations pour les Ecosystèmes'),
(96519, 'https://ror.org/01t5vdw20', 'fr', 0, 'https://ror.org/01t5vdw20 Neuropsychologie Cognitive et Physiopathologie de la SchizophrƩnie'),
(96520, 'https://ror.org/01t8xrx60', 'en', 1, 'https://ror.org/01t8xrx60 State Key Laboratory of New Ceramics and Fine Processing ę–°åž‹é™¶ē“·äøŽē²¾ē»†å·„č‰ŗå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96521, 'https://ror.org/01t9mhf55', 'en', 1, 'https://ror.org/01t9mhf55 Market Harborough Hospital'),
(96522, 'https://ror.org/01t9yse95', 'en', 1, 'https://ror.org/01t9yse95 State Key Laboratory of Electronic Thin Films and Integrated Devices ē”µå­č–„č†œäøŽé›†ęˆå™Øä»¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96523, 'https://ror.org/01tdxw809', 'nl', 1, 'https://ror.org/01tdxw809 Rotterdam Foundation for Blind People Rotterdamse Stichting Blindenbelangen'),
(96524, 'https://ror.org/01tjgrk20', 'en', 1, 'https://ror.org/01tjgrk20 BezpečnostnĆ­ informačnĆ­ služba Security Information Service'),
(96525, 'https://ror.org/01tjrd904', 'it', 1, 'https://ror.org/01tjrd904 Autonomous Region of Friuli Venezia Giulia Regione Autonoma Friuli Venezia Giulia'),
(96526, 'https://ror.org/01tkb7c15', 'en', 1, 'https://ror.org/01tkb7c15 Second Institute of Oceanography å›½å®¶ęµ·ę“‹å±€ē¬¬äŗŒęµ·ę“‹ē ”ē©¶ę‰€åˆ›å»ŗäŗŽ'),
(96527, 'https://ror.org/01tm9b530', 'en', 1, 'https://ror.org/01tm9b530 Stanley Center for Psychiatric Research'),
(96528, 'https://ror.org/01tqga721', 'en', 1, 'https://ror.org/01tqga721 Baltijas jÅ«ras aizsardzÄ«bas fonds The Baltic Sea Conservation Foundation ФонГ охраны Балтийского Š¼Š¾Ń€Ń'),
(96529, 'https://ror.org/01trhq723', 'en', 1, 'https://ror.org/01trhq723 Radical Data, Radical Data (Netherlands)'),
(96530, 'https://ror.org/01tsr2j53', 'no_lang_code', 1, 'https://ror.org/01tsr2j53 Bureau Veritas (Australia)'),
(96531, 'https://ror.org/01twche52', 'es', 1, 'https://ror.org/01twche52 Centro MƩdico Sanitas Valencia Sanitas Valencia Medical Centre'),
(96532, 'https://ror.org/01txfgz53', 'en', 1, 'https://ror.org/01txfgz53 Center for Statistics and Applications in Forensic Evidence'),
(96533, 'https://ror.org/01txpcz79', 'en', 0, 'https://ror.org/01txpcz79 State Key Laboratory of Text Information Processing ę–‡å­—äæ”ęÆå¤„ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96534, 'https://ror.org/01tyv8576', 'en', 1, 'https://ror.org/01tyv8576 Institute of Biophysics äø­å›½ē§‘å­¦é™¢ē”Ÿē‰©ē‰©ē†ē ”ē©¶ę‰€'),
(96535, 'https://ror.org/01tz1zp46', 'fr', 1, 'https://ror.org/01tz1zp46 DƩlƩgation Centre-Est'),
(96536, 'https://ror.org/01tzdej37', 'pt', 1, 'https://ror.org/01tzdej37 Federal Institute of Bahia Ɖcole polytechnique fĆ©dĆ©rale de bahia'),
(96537, 'https://ror.org/01v0pgv63', 'no_lang_code', 1, 'https://ror.org/01v0pgv63 Olympus (Japan) ć‚ŖćƒŖćƒ³ćƒ‘ć‚¹ę Ŗå¼ä¼šē¤¾'),
(96538, 'https://ror.org/01v1m2411', 'no_lang_code', 1, 'https://ror.org/01v1m2411 The Ritsumeikan Trust 学栔法人立命館'),
(96539, 'https://ror.org/01v2rax29', 'en', 1, 'https://ror.org/01v2rax29 Design for All Foundation'),
(96540, 'https://ror.org/01v3c6w86', 'en', 1, 'https://ror.org/01v3c6w86 State Key Laboratory of Modern Coordination Chemistry ēŽ°ä»£é…ä½åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96541, 'https://ror.org/01v4gk171', 'id', 1, 'https://ror.org/01v4gk171 Politeknik Negeri Sriwijaya'),
(96542, 'https://ror.org/01v5e3436', 'es', 1, 'https://ror.org/01v5e3436 Andalusian Center for Developmental Biology Centro Andaluz de BiologĆ­a del Desarrollo'),
(96543, 'https://ror.org/01v7jrq42', 'no_lang_code', 1, 'https://ror.org/01v7jrq42 Vodafone (United Kingdom)'),
(96544, 'https://ror.org/01v9qfq10', 'en', 1, 'https://ror.org/01v9qfq10 Harbin Institute of Large Electric Machinery å“ˆå°”ę»Øå¤§ē”µęœŗē ”ē©¶ę‰€'),
(96545, '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'),
(96546, 'https://ror.org/01vf7p965', 'en', 0, 'https://ror.org/01vf7p965 Swedish Institute of Computer Science'),
(96547, 'https://ror.org/01vft3j45', 'en', 1, 'https://ror.org/01vft3j45 University of Maryland Marlene and Stewart Greenebaum Comprehensive Cancer Center'),
(96548, 'https://ror.org/01vgdbb03', 'en', 1, 'https://ror.org/01vgdbb03 Colorectal Cancer Alliance'),
(96549, 'https://ror.org/01vgenm18', 'no_lang_code', 0, 'https://ror.org/01vgenm18 Showa Denko Materials Co., Ltd. (Japan) ę˜­å’Œé›»å·„ćƒžćƒ†ćƒŖć‚¢ćƒ«ć‚ŗę Ŗå¼ä¼šē¤¾'),
(96550, 'https://ror.org/01vkz3960', 'en', 1, 'https://ror.org/01vkz3960 University of Lethbridge Faculty Association'),
(96551, 'https://ror.org/01vnn4t89', 'fr', 0, 'https://ror.org/01vnn4t89 Laboratoire de Statistique ThƩorique et AppliquƩe'),
(96552, 'https://ror.org/01vq13895', 'en', 1, 'https://ror.org/01vq13895 State Key Laboratory of Fire Science ē«ē¾ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96553, 'https://ror.org/01vt80e72', 'en', 1, 'https://ror.org/01vt80e72 Office of Resource Sustainability'),
(96554, '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'),
(96555, 'https://ror.org/01vvxdp11', 'en', 1, 'https://ror.org/01vvxdp11 CHI Health Lakeside'),
(96556, 'https://ror.org/01vw4c203', 'en', 1, 'https://ror.org/01vw4c203 MRC Centre for Environment and Health'),
(96557, 'https://ror.org/01vxptj17', 'fr', 1, 'https://ror.org/01vxptj17 Centre d''Ɖtude des Pathologies Respiratoires'),
(96558, 'https://ror.org/01vyjqw07', 'en', 1, 'https://ror.org/01vyjqw07 Centre for Astrophysics of the University of Porto Centro de AstrofĆ­sica da Universidade do Porto'),
(96559, 'https://ror.org/01vyq8e97', 'no_lang_code', 1, 'https://ror.org/01vyq8e97 CompaƱƭa EspaƱola de Sistemas AeronƔuticos (Spain)'),
(96560, 'https://ror.org/01w104f98', 'ca', 1, 'https://ror.org/01w104f98 Conselleria d''Educació, Universitats i Ocupació Conselleria de Educación, Universidades y Empleo'),
(96561, 'https://ror.org/01w108f05', 'en', 1, 'https://ror.org/01w108f05 Building Blocks for Future Electronics Laboratory'),
(96562, 'https://ror.org/01w151e64', 'en', 1, 'https://ror.org/01w151e64 Bristol Eye Hospital'),
(96563, 'https://ror.org/01w15bh65', 'en', 1, 'https://ror.org/01w15bh65 St. Petersburg Research Institute of Radiation Hygiene Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиационной гигиены имени профессора П.Š’.Рамзаева'),
(96564, 'https://ror.org/01w1ehb86', 'en', 1, 'https://ror.org/01w1ehb86 University of Technology - Iraq الجامعة Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ©'),
(96565, 'https://ror.org/01w4ss835', 'en', 1, 'https://ror.org/01w4ss835 Ateneo de Davao University Pamantasang Ateneo de Davao'),
(96566, 'https://ror.org/01w6z0f95', 'en', 1, 'https://ror.org/01w6z0f95 Menorah Medical Center'),
(96567, 'https://ror.org/01w8r0j67', 'no_lang_code', 1, 'https://ror.org/01w8r0j67 Abbott (Spain)'),
(96568, 'https://ror.org/01w9dr041', 'es', 1, 'https://ror.org/01w9dr041 Laboratorio Central Oficial de Electrotecnica'),
(96569, 'https://ror.org/01wa3dz59', 'en', 1, 'https://ror.org/01wa3dz59 Saudi Arabian Cultural Mission'),
(96570, 'https://ror.org/01wass480', 'en', 1, 'https://ror.org/01wass480 Center for Nanophase Materials Sciences'),
(96571, 'https://ror.org/01wc6sh26', 'fr', 1, 'https://ror.org/01wc6sh26 Risques cliniques et sƩcuritƩ en santƩ des femmes et en santƩ pƩrinatale'),
(96572, 'https://ror.org/01wcz2f33', 'en', 1, 'https://ror.org/01wcz2f33 Saint Francis University ę˜Žę„›å°ˆäøŠå­øé™¢'),
(96573, 'https://ror.org/01wdf5p42', 'en', 1, 'https://ror.org/01wdf5p42 Independent Authority for Public Revenue'),
(96574, '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'),
(96575, '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'),
(96576, 'https://ror.org/01wjx4d10', 'en', 1, 'https://ror.org/01wjx4d10 Liaocheng Fifth People''s Hospital čŠåŸŽåø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(96577, 'https://ror.org/01wjyqy10', 'en', 0, 'https://ror.org/01wjyqy10 Queen Elizabeth Diamond Jubilee Trust'),
(96578, 'https://ror.org/01wkb9987', 'en', 1, 'https://ror.org/01wkb9987 University of Siedlce Uniwersytet w Siedlcach'),
(96579, 'https://ror.org/01wm7hd09', 'en', 1, 'https://ror.org/01wm7hd09 Ajou University in Tashkent Toshkent shahridagi Adju Universiteti Университет АГжу в гороГе Š¢Š°ŃˆŠŗŠµŠ½Ń‚'),
(96580, 'https://ror.org/01wn4rj56', 'id', 1, 'https://ror.org/01wn4rj56 Institut Teknologi Dan Bisnis STIKOM Bali'),
(96581, 'https://ror.org/01wnzxq37', 'en', 1, 'https://ror.org/01wnzxq37 St. Joseph Regional Medical Center'),
(96582, 'https://ror.org/01wpxe954', 'no_lang_code', 1, 'https://ror.org/01wpxe954 GenoSafe'),
(96583, 'https://ror.org/01wqtde93', 'en', 1, 'https://ror.org/01wqtde93 Building Technologies Office'),
(96584, 'https://ror.org/01wrkgt84', 'en', 1, 'https://ror.org/01wrkgt84 Barcelona Provincial Council Diputació de Barcelona'),
(96585, 'https://ror.org/01wrng808', 'fr', 1, 'https://ror.org/01wrng808 Groupe d’Étude de la MatiĆØre CondensĆ©e'),
(96586, 'https://ror.org/01wwcfa26', 'fr', 1, 'https://ror.org/01wwcfa26 Institut des GƩosciences de l''Environnement Institute of Environmental Geosciences'),
(96587, 'https://ror.org/01wz1s943', 'en', 1, 'https://ror.org/01wz1s943 Bhailal Amin General Hospital'),
(96588, 'https://ror.org/01x1mwt32', 'fr', 1, 'https://ror.org/01x1mwt32 Centre de recherche interdisciplinaire sur les modèles esthétiques et littéraires'),
(96589, 'https://ror.org/01x26mz03', 'en', 1, 'https://ror.org/01x26mz03 National Energy Technology Laboratory'),
(96590, 'https://ror.org/01x3dve48', 'es', 1, 'https://ror.org/01x3dve48 Centro de Rehabilitación Avanzada Sanitas Serrano Sanitas Serrano Advanced Rehabilitation Centre'),
(96591, 'https://ror.org/01x48pk19', 'es', 1, 'https://ror.org/01x48pk19 Consellería de Economía, Industria e Innovación'),
(96592, 'https://ror.org/01x4cvr40', 'no_lang_code', 1, 'https://ror.org/01x4cvr40 Military Electronic Works (Poland)'),
(96593, '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'),
(96594, 'https://ror.org/01x8cht46', 'en', 1, 'https://ror.org/01x8cht46 Geology, Energy and Minerals Science Center'),
(96595, 'https://ror.org/01x8j4206', 'en', 1, 'https://ror.org/01x8j4206 UniversitƩ de webster Webster University'),
(96596, 'https://ror.org/01xc6bj88', 'de', 1, 'https://ror.org/01xc6bj88 Leibniz-Institut für Werkstofforientierte Technologien, Leibniz-Institut für Werkstofforientierte Technologien - IWT'),
(96597, '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'),
(96598, 'https://ror.org/01xenw941', 'en', 1, 'https://ror.org/01xenw941 Office of International Nuclear Safety'),
(96599, 'https://ror.org/01xf75524', 'en', 1, 'https://ror.org/01xf75524 Moffitt Cancer Center'),
(96600, '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'),
(96601, 'https://ror.org/01xkymb03', 'en', 1, 'https://ror.org/01xkymb03 St. Louis Ovarian Cancer Awareness'),
(96602, 'https://ror.org/01xnsst08', 'en', 1, 'https://ror.org/01xnsst08 Wildlife Conservation Society'),
(96603, 'https://ror.org/01xnz3256', 'en', 1, 'https://ror.org/01xnz3256 State Key Laboratory of Analytical Chemistry for Life Science ē”Ÿå‘½åˆ†ęžåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96604, 'https://ror.org/01xqdxh54', 'en', 1, 'https://ror.org/01xqdxh54 South China Botanical Garden äø­å›½ē§‘å­¦é™¢åŽå—ę¤ē‰©å›­'),
(96605, 'https://ror.org/01xs7ed64', 'es', 1, 'https://ror.org/01xs7ed64 Universidad Evangelica de El Salvador'),
(96606, 'https://ror.org/01xspp494', 'en', 1, 'https://ror.org/01xspp494 Bilim, Sanayi ve Teknoloji Bakanlığı Ministry of Science, Industry and Technology'),
(96607, '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'),
(96608, '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'),
(96609, 'https://ror.org/01xtfh998', 'en', 1, 'https://ror.org/01xtfh998 California Department of Pesticide Regulation'),
(96610, 'https://ror.org/01xvsjf67', 'es', 1, 'https://ror.org/01xvsjf67 Centro de Rehabilitación Avanzada Sanitas Las Tablas Sanitas Las Tablas Advanced Rehabilitation Centre'),
(96611, 'https://ror.org/01xytvd82', 'en', 1, 'https://ror.org/01xytvd82 Liaquat National Hospital'),
(96612, 'https://ror.org/01y04h970', 'es', 1, 'https://ror.org/01y04h970 Fundación para el Fomento de la Innovación Industrial'),
(96613, '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'),
(96614, 'https://ror.org/01y25zv73', 'en', 1, 'https://ror.org/01y25zv73 Council of Science and Technology, Uttar Pradesh'),
(96615, 'https://ror.org/01y2qtb13', 'no_lang_code', 1, 'https://ror.org/01y2qtb13 Janssen (Switzerland) Janssen Schweiz Janssen Suisse'),
(96616, 'https://ror.org/01y343k91', 'en', 1, 'https://ror.org/01y343k91 University of Belgrade - Faculty of Agriculture Univerzitet u Beogradu - Poljoprivredni fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - ŠŸŠ¾Ń™Š¾ŠæŃ€ŠøŠ²Ń€ŠµŠ“Š½Šø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(96617, 'https://ror.org/01y3hvq34', 'en', 1, 'https://ror.org/01y3hvq34 Shanghai Institute of Organic Chemistry äø­å›½ē§‘å­¦é™¢äøŠęµ·ęœ‰ęœŗåŒ–å­¦ē ”ē©¶ę‰€'),
(96618, 'https://ror.org/01y434850', 'en', 1, 'https://ror.org/01y434850 Abetifi Presbyterian College of Education'),
(96619, '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'),
(96620, 'https://ror.org/01y4fs673', 'en', 1, 'https://ror.org/01y4fs673 Soft Imaging LLC, Soft Imaging LLC (United States)'),
(96621, 'https://ror.org/01y6swy44', 'en', 1, 'https://ror.org/01y6swy44 Prussian Cultural Heritage Foundation Stiftung Preußischer Kulturbesitz'),
(96622, 'https://ror.org/01y6zzq66', 'es', 1, 'https://ror.org/01y6zzq66 Centro de Rehabilitación Avanzada Sanitas Barcelona Sanitas Barcelona Advanced Rehabilitation Centre'),
(96623, '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'),
(96624, 'https://ror.org/01y7p7f26', 'nl', 1, 'https://ror.org/01y7p7f26 Stichting OpenAccess'),
(96625, 'https://ror.org/01y8j9r24', 'fr', 1, 'https://ror.org/01y8j9r24 DƩlƩgation Ile-de-France Sud'),
(96626, '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'),
(96627, 'https://ror.org/01yaqvf46', 'en', 1, 'https://ror.org/01yaqvf46 Irma T. Hirschl Trust'),
(96628, 'https://ror.org/01yb10j39', 'en', 1, 'https://ror.org/01yb10j39 Radboud Institute for Molecular Life Sciences'),
(96629, 'https://ror.org/01yc7td35', 'fr', 1, 'https://ror.org/01yc7td35 Centre de recherche Inter-langues sur la Signification en contexte'),
(96630, 'https://ror.org/01yd28726', 'es', 1, 'https://ror.org/01yd28726 Instituto de Investigaciones GeogrƔficas de la Patagonia'),
(96631, 'https://ror.org/01yg1g961', 'es', 1, 'https://ror.org/01yg1g961 Universidad Nacional de Educación'),
(96632, 'https://ror.org/01ygnsd19', 'en', 1, 'https://ror.org/01ygnsd19 State Key Laboratory of Medical Molecular Biology åŒ»å­¦åˆ†å­ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96633, 'https://ror.org/01yh3na84', 'no_lang_code', 1, 'https://ror.org/01yh3na84 Indonesian Journal Publisher Indonesian Journal Publisher (Indonesia) Penerbit Jurnal Indonesia'),
(96634, 'https://ror.org/01yhh4s82', 'en', 1, 'https://ror.org/01yhh4s82 Cascadia Seaweed, Cascadia Seaweed (Canada)'),
(96635, 'https://ror.org/01yj56c84', 'en', 1, 'https://ror.org/01yj56c84 Beijing Jiaotong University åŒ—äŗ¬äŗ¤é€šå¤§å­¦'),
(96636, 'https://ror.org/01yj5ad85', 'de', 1, 'https://ror.org/01yj5ad85 Bundesministerium für Umwelt, Naturschutz, nukleare Sicherheit und Verbraucherschutz'),
(96637, 'https://ror.org/01ym3w380', 'fr', 1, 'https://ror.org/01ym3w380 Globus et Locus'),
(96638, '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 ŠˆŠŠ£ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š·Š°ŃˆŃ‚ŠøŃ‚Ńƒ Šø екологију Републике Дрпске, Š‘Š°ŃšŠ° Š›ŃƒŠŗŠ°'),
(96639, 'https://ror.org/01ypcm768', 'en', 1, 'https://ror.org/01ypcm768 New Zealand Antarctic Research Institute'),
(96640, 'https://ror.org/01yqes018', 'fr', 1, 'https://ror.org/01yqes018 Equipe d’Economie Le Havre Normandie'),
(96641, 'https://ror.org/01yr0r787', 'fr', 1, 'https://ror.org/01yr0r787 Laboratoire des Sciences des ProcƩdƩs et des MatƩriaux'),
(96642, 'https://ror.org/01yzfjx97', 'de', 1, 'https://ror.org/01yzfjx97 Donors Association for the Promotion of Humanities and Sciences in Germany Stifterverband'),
(96643, 'https://ror.org/01z0xsq42', 'en', 1, 'https://ror.org/01z0xsq42 Genomics and Biotechnology of the Fruits Laboratory Genomique et Biotechnologie des Fruits'),
(96644, 'https://ror.org/01z3gk918', 'en', 1, 'https://ror.org/01z3gk918 Beijing General Research Institute of Mining and Metallurgy åŒ—äŗ¬ēŸæå†¶ē ”ē©¶ę€»é™¢'),
(96645, 'https://ror.org/01z3jn402', 'en', 1, 'https://ror.org/01z3jn402 State Key Laboratory of Software Engineering č½Æä»¶å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96646, 'https://ror.org/01z5ygt35', 'de', 1, 'https://ror.org/01z5ygt35 Institut für Rechtspolitik an der Universität Trier'),
(96647, 'https://ror.org/01z60hv97', 'no_lang_code', 0, 'https://ror.org/01z60hv97 Lockheed Missiles and Space Company (United States)'),
(96648, 'https://ror.org/01z6fgx85', 'no_lang_code', 1, 'https://ror.org/01z6fgx85 CHN Energy (China) å›½å®¶čƒ½ęŗęŠ•čµ„é›†å›¢'),
(96649, 'https://ror.org/01z7eb286', 'en', 1, 'https://ror.org/01z7eb286 Dirección General de TrÔfico Directorate General of Traffic'),
(96650, 'https://ror.org/01z80p194', 'en', 1, 'https://ror.org/01z80p194 UL Standards & Engagement'),
(96651, 'https://ror.org/01z88k350', 'en', 1, 'https://ror.org/01z88k350 Pharmaceutical Research and Manufacturers of America'),
(96652, 'https://ror.org/01z8yfp14', 'en', 1, 'https://ror.org/01z8yfp14 ISRIC - World Soil Information'),
(96653, 'https://ror.org/01za2jq02', 'es', 1, 'https://ror.org/01za2jq02 Centro OceanogrƔfico de A CoruƱa Oceanographic Center of A CoruƱa'),
(96654, 'https://ror.org/01zb8p127', 'no_lang_code', 0, 'https://ror.org/01zb8p127 Allied Corporation (United States)'),
(96655, 'https://ror.org/01zc4nk92', 'fr', 0, 'https://ror.org/01zc4nk92 DiversitƩ, adaptation, dƩveloppement des plantes'),
(96656, 'https://ror.org/01zfc7m08', 'en', 1, 'https://ror.org/01zfc7m08 State Key Laboratory of Mycology ēœŸčŒå­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96657, 'https://ror.org/01zgm7d48', 'en', 1, 'https://ror.org/01zgm7d48 International Growth Centre'),
(96658, 'https://ror.org/01zgxn874', 'de', 1, 'https://ror.org/01zgxn874 Culinary Medicine Deutschland e.V.'),
(96659, 'https://ror.org/01zhx8042', 'no_lang_code', 0, 'https://ror.org/01zhx8042 Lockheed (United States)'),
(96660, 'https://ror.org/01zj39k81', 'en', 1, 'https://ror.org/01zj39k81 Naval Air Warfare Center Aircraft Division'),
(96661, 'https://ror.org/01zj4g759', 'id', 1, 'https://ror.org/01zj4g759 Universitas Ciputra'),
(96662, 'https://ror.org/01zmyz259', 'en', 1, 'https://ror.org/01zmyz259 ARUP Institute for Clinical and Experimental Pathology'),
(96663, 'https://ror.org/01znn6x10', 'en', 1, 'https://ror.org/01znn6x10 KBase'),
(96664, 'https://ror.org/01zntxs11', 'en', 1, 'https://ror.org/01zntxs11 Shanghai Medical College of Fudan University å¤ę—¦å¤§å­¦äøŠęµ·åŒ»å­¦é™¢'),
(96665, 'https://ror.org/01zprx076', 'en', 1, 'https://ror.org/01zprx076 Office of Federal Energy Management Programs'),
(96666, 'https://ror.org/01zpxh127', 'fr', 1, 'https://ror.org/01zpxh127 Groupe de recherche clinique Amylose AA Sorbonne UniversitƩ'),
(96667, 'https://ror.org/01zshhn36', 'no_lang_code', 1, 'https://ror.org/01zshhn36 StƤubli (France)'),
(96668, 'https://ror.org/01zssnf23', 'en', 0, 'https://ror.org/01zssnf23 Canadian Policy Research Networks'),
(96669, 'https://ror.org/01zv3gf04', 'en', 1, 'https://ror.org/01zv3gf04 Finnish Geospatial Research Institute'),
(96670, 'https://ror.org/01zvnr827', 'en', 1, 'https://ror.org/01zvnr827 Dubai Police Academy Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų“Ų±Ų·Ų© دبي'),
(96671, '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'),
(96672, 'https://ror.org/01zwq4y59', 'pt', 1, 'https://ror.org/01zwq4y59 State University of Santa Cruz Universidade Estadual de Santa Cruz'),
(96673, 'https://ror.org/01zwq9p88', 'es', 1, 'https://ror.org/01zwq9p88 Universidad de Ixtlahuaca CUI'),
(96674, 'https://ror.org/01zy2cs03', 'de', 1, 'https://ror.org/01zy2cs03 Helmholtz-Zentrum Dresden-Rossendorf'),
(96675, 'https://ror.org/01zy9tc86', 'en', 1, 'https://ror.org/01zy9tc86 Independent Schools of New Zealand'),
(96676, 'https://ror.org/01zytxw03', 'es', 1, 'https://ror.org/01zytxw03 Aragon Chemistry and Materials Center Centro de Química y Materiales de Aragón'),
(96677, 'https://ror.org/01zzkcm34', 'en', 1, 'https://ror.org/01zzkcm34 Irkutsk National Research Technical University Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(96678, 'https://ror.org/01zzvcj05', 'en', 1, 'https://ror.org/01zzvcj05 General Chemical State Laboratory Ī“ĪµĪ½Ī¹ĪŗĪæĻ Χημείου του ĪšĻĪ¬Ļ„ĪæĻ…Ļ‚'),
(96679, 'https://ror.org/02010jg37', 'en', 1, 'https://ror.org/02010jg37 Irish Centre for Research in Applied Geosciences'),
(96680, 'https://ror.org/0203qcs72', 'fr', 1, 'https://ror.org/0203qcs72 La Maison de la RiviĆØre'),
(96681, 'https://ror.org/0209kfm92', 'en', 1, 'https://ror.org/0209kfm92 Samangan Higher Education Institute Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† سمنگان'),
(96682, 'https://ror.org/020bm8k34', 'en', 1, 'https://ror.org/020bm8k34 Reformed Church University'),
(96683, 'https://ror.org/020bzb737', 'en', 1, 'https://ror.org/020bzb737 State Key Laboratory of Subtropical Building Science äŗšēƒ­åø¦å»ŗē­‘ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96684, 'https://ror.org/020cbcj98', 'en', 1, 'https://ror.org/020cbcj98 Arctic Athabaskan Council'),
(96685, 'https://ror.org/020fjxj16', 'en', 1, 'https://ror.org/020fjxj16 Western National Parks Association'),
(96686, 'https://ror.org/020fnnz65', 'en', 1, 'https://ror.org/020fnnz65 Royal College of Chiropractors'),
(96687, 'https://ror.org/020m7gh21', 'es', 1, 'https://ror.org/020m7gh21 Centro de Rehabilitación Avanzada Sanitas Hortaleza Sanitas Hortaleza Advanced Rehabilitation Centre'),
(96688, 'https://ror.org/020mn7317', 'en', 1, 'https://ror.org/020mn7317 Miva Open University'),
(96689, 'https://ror.org/020nqey61', 'en', 1, 'https://ror.org/020nqey61 University of Wales, Romania'),
(96690, 'https://ror.org/020nxmz62', 'en', 0, 'https://ror.org/020nxmz62 State Key Laboratory of Collateral Disease Research and Innovative Traditional Chinese Medicine ē»œē—…ē ”ē©¶äøŽåˆ›ę–°äø­čÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96691, 'https://ror.org/020pf2e89', 'en', 1, 'https://ror.org/020pf2e89 Fuller Laboratories, Fuller Laboratories (United States)'),
(96692, 'https://ror.org/020pkqq17', 'en', 1, 'https://ror.org/020pkqq17 Manchester Community College - New Hampshire'),
(96693, 'https://ror.org/020ps3a34', 'en', 1, 'https://ror.org/020ps3a34 University of Central Lancashire Cyprus'),
(96694, 'https://ror.org/020r6j743', 'en', 1, 'https://ror.org/020r6j743 National Strategic Research Institute'),
(96695, 'https://ror.org/020rfvw83', 'pt', 1, 'https://ror.org/020rfvw83 Instituto de CiĆŖncias Sociais'),
(96696, 'https://ror.org/020s51w82', 'ca', 1, 'https://ror.org/020s51w82 Centre de Recerca MatemĆ tica'),
(96697, 'https://ror.org/020tnht88', 'en', 1, 'https://ror.org/020tnht88 Western Association of Fish and Wildlife Agencies'),
(96698, 'https://ror.org/020wm8g88', 'en', 1, 'https://ror.org/020wm8g88 University of Puerto Rico at Humacao'),
(96699, 'https://ror.org/020wtpg03', 'fr', 1, 'https://ror.org/020wtpg03 CIGRE'),
(96700, 'https://ror.org/020x39229', 'en', 1, 'https://ror.org/020x39229 Michael Smith Health Research BC'),
(96701, 'https://ror.org/021203s31', 'pt', 1, 'https://ror.org/021203s31 MapBiomas'),
(96702, 'https://ror.org/021354321', 'fr', 1, 'https://ror.org/021354321 Fondation Saint-Luc Saint-Luc Foundation'),
(96703, 'https://ror.org/0213cre38', 'es', 1, 'https://ror.org/0213cre38 Universidad Tecnológica de la Selva'),
(96704, 'https://ror.org/0213ypr97', 'fr', 1, 'https://ror.org/0213ypr97 Arbres et RƩponses aux Contraintes Hydriques et Environnementales'),
(96705, 'https://ror.org/0215y9j16', 'da', 1, 'https://ror.org/0215y9j16 Dagmar Marshall Fund Dagmar Marshalls Fond'),
(96706, 'https://ror.org/02169wb20', 'en', 1, 'https://ror.org/02169wb20 State Key Laboratory of Hydraulics and Mountain River Engineering ę°“åŠ›å­¦äøŽå±±åŒŗę²³ęµå¼€å‘äæęŠ¤å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96707, 'https://ror.org/0216pay70', 'en', 1, 'https://ror.org/0216pay70 State Key Laboratory of New Technology of Traditional Chinese Medicine Pharmaceutical Process äø­čÆåˆ¶čÆčæ‡ēØ‹ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96708, 'https://ror.org/02177hd90', 'en', 1, 'https://ror.org/02177hd90 Moinhos de Vento Agroecology Research Centre'),
(96709, 'https://ror.org/021954z67', 'en', 1, 'https://ror.org/021954z67 NIHR Applied Research Collaboration Greater Manchester'),
(96710, 'https://ror.org/021bmwb60', 'es', 1, 'https://ror.org/021bmwb60 Complejo Gerontológico "La Milagrosa", Gerontologic Complex La Milagrosa'),
(96711, 'https://ror.org/021cphd64', 'en', 1, 'https://ror.org/021cphd64 East Burke High School'),
(96712, 'https://ror.org/021d9wv59', 'en', 1, 'https://ror.org/021d9wv59 Institute of Puerto Rican Culture Instituto de Cultura PuertorriqueƱa'),
(96713, 'https://ror.org/021fdyt09', 'fr', 1, 'https://ror.org/021fdyt09 Heat Transfer and Energy Laboratory at Nantes Laboratoire de Thermique et Energie de Nantes'),
(96714, 'https://ror.org/021gztm71', 'en', 1, 'https://ror.org/021gztm71 NUS High School of Mathematics and Science'),
(96715, 'https://ror.org/021jr9c59', 'en', 1, 'https://ror.org/021jr9c59 National Cooperative Geologic Mapping Program'),
(96716, 'https://ror.org/021m46s67', 'en', 1, 'https://ror.org/021m46s67 Naval Research Laboratory Center for Bio/Molecular Science and Engineering'),
(96717, 'https://ror.org/021n14p32', 'en', 0, 'https://ror.org/021n14p32 Texas State University'),
(96718, 'https://ror.org/021p32893', 'id', 1, 'https://ror.org/021p32893 Universitas Muhammadiyah Jember'),
(96719, 'https://ror.org/021s6g098', 'en', 1, 'https://ror.org/021s6g098 State Key Laboratory of Digital Publishing Technology ę•°å­—å‡ŗē‰ˆęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96720, 'https://ror.org/021sh3243', 'fr', 1, 'https://ror.org/021sh3243 Infection et inflammation'),
(96721, 'https://ror.org/021sy4w91', 'en', 1, 'https://ror.org/021sy4w91 Jackson Laboratory'),
(96722, 'https://ror.org/021v18q66', 'en', 1, 'https://ror.org/021v18q66 Annapoorana Medical College and Hospitals'),
(96723, 'https://ror.org/021wda575', 'de', 1, 'https://ror.org/021wda575 Chemisches und VeterinƤruntersuchungsamt Sigmaringen'),
(96724, 'https://ror.org/021xhya68', 'en', 1, 'https://ror.org/021xhya68 Madan Bhandari University of Science and Technology मदन ą¤­ą¤£ą„ą¤”ą¤¾ą¤°ą„€ ą¤¬ą¤æą¤œą„ą¤žą¤¾ą¤Ø तऄा ą¤Ŗą„ą¤°ą¤¬ą¤æą¤§ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤¬ą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(96725, 'https://ror.org/021z3p720', 'no_lang_code', 1, 'https://ror.org/021z3p720 Aiju Instituto Tecnológico de Producto Infantil y Ocio'),
(96726, 'https://ror.org/021z9m619', 'en', 1, 'https://ror.org/021z9m619 Department of Industry, Science and Resources'),
(96727, 'https://ror.org/0221pcv84', 'en', 1, 'https://ror.org/0221pcv84 Svensk biodiversitetsinfrastruktur Swedish Biodiversity Data Infrastructure'),
(96728, '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Ô'),
(96729, 'https://ror.org/02250mf28', 'es', 1, 'https://ror.org/02250mf28 Centro MƩdico Sanitas Imperial Tarraco Sanitas Imperial Tarraco Medical Centre'),
(96730, 'https://ror.org/0225kjd58', 'fr', 1, 'https://ror.org/0225kjd58 Ɖquipe de Recherche Contextes et Acteurs de l''Ɖducation'),
(96731, 'https://ror.org/0225xqg83', 'en', 1, 'https://ror.org/0225xqg83 Sarala Birla University'),
(96732, 'https://ror.org/02263ky35', 'pt', 1, 'https://ror.org/02263ky35 Federal University of Amazonas Universidade Federal do Amazonas'),
(96733, 'https://ror.org/0226mqz95', 'es', 1, 'https://ror.org/0226mqz95 Fundación Universitaria de Navarra'),
(96734, 'https://ror.org/0229z0679', 'fr', 1, 'https://ror.org/0229z0679 Milieux environnementaux, transferts et interactions dans les hydrosystĆØmes et les sols'),
(96735, 'https://ror.org/022c3hy66', 'en', 1, 'https://ror.org/022c3hy66 Institute of Automation č‡ŖåŠØåŒ–ē ”ē©¶ę‰€'),
(96736, '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'),
(96737, 'https://ror.org/022fjwc94', 'en', 1, 'https://ror.org/022fjwc94 Concordia Theological Seminary'),
(96738, 'https://ror.org/022j0mn33', 'en', 1, 'https://ror.org/022j0mn33 U.S. Army Combat Capabilities Development Command Chemical Biological Center'),
(96739, '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'),
(96740, 'https://ror.org/022patd17', 'en', 1, 'https://ror.org/022patd17 Basrah University College of Science and Technology ŁƒŁ„ŁŠŲ© البصرة الجامعة Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(96741, 'https://ror.org/022rydv31', 'en', 1, 'https://ror.org/022rydv31 Iascach Intƭre Ɖireann Inland Fisheries Ireland'),
(96742, 'https://ror.org/022syn853', 'en', 1, 'https://ror.org/022syn853 Shanghai Institute of Materia Medica äø­å›½ē§‘å­¦é™¢äøŠęµ·čÆē‰©ē ”ē©¶ę‰€'),
(96743, 'https://ror.org/022zdgq74', 'fr', 1, 'https://ror.org/022zdgq74 Ɖcole Nationale de l’Aviation Civile'),
(96744, 'https://ror.org/0231bqc61', 'fr', 1, 'https://ror.org/0231bqc61 Laboratoire de communications multimƩdias en tƩlƩprƩsence Multimedia Communication in Telepresence'),
(96745, 'https://ror.org/023331s46', 'en', 1, 'https://ror.org/023331s46 The George Institute for Global Health'),
(96746, 'https://ror.org/0233t0j26', 'es', 1, 'https://ror.org/0233t0j26 Proyecto EspaƱol'),
(96747, 'https://ror.org/02369cb65', 'en', 1, 'https://ror.org/02369cb65 Presbyterian University, Ghana'),
(96748, 'https://ror.org/0237c2m81', 'en', 1, 'https://ror.org/0237c2m81 HCA Healthcare'),
(96749, 'https://ror.org/0237da472', 'es', 1, 'https://ror.org/0237da472 Ayuntamiento de Zaragoza'),
(96750, 'https://ror.org/023881d27', 'en', 0, 'https://ror.org/023881d27 State Key Laboratory of Internal Combustion Engine Reliability å†…ē‡ƒęœŗåÆé ę€§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96751, 'https://ror.org/0238zyh04', 'fr', 1, 'https://ror.org/0238zyh04 Institut des MatƩriaux, de MicroƩlectronique et des Nanosciences de Provence'),
(96752, 'https://ror.org/02391ds27', 'en', 1, 'https://ror.org/02391ds27 Lung Cancer Foundation of America'),
(96753, 'https://ror.org/023a2er20', 'en', 1, 'https://ror.org/023a2er20 Cancer Imaging Centre'),
(96754, 'https://ror.org/023as1815', 'en', 1, 'https://ror.org/023as1815 State Key Laboratory of Traction Power ē‰µå¼•åŠØåŠ›å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96755, 'https://ror.org/023b5a626', 'es', 1, 'https://ror.org/023b5a626 Ɠrgano Judicial de la RepĆŗblica de PanamĆ”'),
(96756, 'https://ror.org/023btq632', 'no_lang_code', 0, 'https://ror.org/023btq632 GigPeak (United States)'),
(96757, 'https://ror.org/023bw3q25', 'en', 1, 'https://ror.org/023bw3q25 Robert M. Fisher Memorial Foundation'),
(96758, 'https://ror.org/023ckd258', 'fr', 1, 'https://ror.org/023ckd258 BibliothĆØque interuniversitaire de la Sorbonne'),
(96759, 'https://ror.org/023czga33', 'en', 1, 'https://ror.org/023czga33 Climate Adaptation Science Centers'),
(96760, 'https://ror.org/023d5h353', 'en', 1, 'https://ror.org/023d5h353 Instituto de Investigación Sanitaria de Navarra Navarre Institute of Health Research'),
(96761, 'https://ror.org/023drta67', 'en', 1, 'https://ror.org/023drta67 BIO5 Institute'),
(96762, 'https://ror.org/023dz9m50', 'en', 1, 'https://ror.org/023dz9m50 Complexity Science Hub Vienna Verein zur Fƶrderung wissenschaftlicher Forschung im Bereich komplexer Systeme'),
(96763, 'https://ror.org/023fpv336', 'en', 1, 'https://ror.org/023fpv336 State Key Laboratory of Structural Chemistry ē»“ęž„åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96764, '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'),
(96765, 'https://ror.org/023h4a821', 'fr', 1, 'https://ror.org/023h4a821 Institut d’EpidĆ©miologie et de Neurologie Tropicale'),
(96766, 'https://ror.org/023hj4e57', 'en', 0, 'https://ror.org/023hj4e57 Barcelonaβeta Brain Research Center'),
(96767, 'https://ror.org/023ht6a36', 'en', 1, 'https://ror.org/023ht6a36 State Key Laboratory of Automobile Safety and Energy Conservation ę±½č½¦å®‰å…ØäøŽčŠ‚čƒ½å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96768, 'https://ror.org/023kaz366', 'es', 1, 'https://ror.org/023kaz366 Provita'),
(96769, 'https://ror.org/023md1f53', 'de', 1, 'https://ror.org/023md1f53 Deutsches ArchƤologisches Institut, Abteilung Rom German Archaeological Institute, Rome Department'),
(96770, 'https://ror.org/023ny1p48', 'en', 1, 'https://ror.org/023ny1p48 National Heart, Lung, and Blood Institute Division of Intramural Research'),
(96771, 'https://ror.org/023pce284', 'en', 1, 'https://ror.org/023pce284 Korea Transportation Safety Authority ķ•œźµ­źµķ†µģ•ˆģ „ź³µė‹Ø'),
(96772, 'https://ror.org/023py8175', 'en', 1, 'https://ror.org/023py8175 Facility for Advanced Accelerator Experimental Tests-II'),
(96773, 'https://ror.org/023rvnb70', 'en', 1, 'https://ror.org/023rvnb70 T.K.M. College of Arts and Science'),
(96774, 'https://ror.org/023xf2a37', 'en', 1, 'https://ror.org/023xf2a37 Agence de la santƩ publique du Canada Public Health Agency of Canada'),
(96775, 'https://ror.org/023xw4w13', 'en', 1, 'https://ror.org/023xw4w13 HJR Reefscaping'),
(96776, 'https://ror.org/0240tjc76', 'en', 1, 'https://ror.org/0240tjc76 Royal Society of South Australia'),
(96777, 'https://ror.org/024779x77', 'no_lang_code', 0, 'https://ror.org/024779x77 Cambridge Quantum Computing (United Kingdom)'),
(96778, 'https://ror.org/024b23796', 'en', 1, 'https://ror.org/024b23796 NAVWAR Space Field Activity'),
(96779, 'https://ror.org/024bb4f70', 'de', 1, 'https://ror.org/024bb4f70 Klinikum Fichtelgebirge'),
(96780, 'https://ror.org/024btyy46', 'en', 1, 'https://ror.org/024btyy46 State Key Laboratory of Cell Biology ē»†čƒžē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96781, 'https://ror.org/024cz2s53', 'en', 1, 'https://ror.org/024cz2s53 Karaganda Medical University ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Университет ŠšŠ°Ń€Š°Š³Š°Š½Š“Ń‹ ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(96782, 'https://ror.org/024dcqa50', 'en', 1, 'https://ror.org/024dcqa50 State Key Laboratory of Solidification Processing å‡å›ŗęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96783, 'https://ror.org/024emf091', 'en', 1, 'https://ror.org/024emf091 Canada Agricultural Review Tribunal Commission de rƩvision agricole du Canada'),
(96784, 'https://ror.org/024emf479', 'sv', 1, 'https://ror.org/024emf479 Region Ɩstergƶtland Ɩstergƶtland County Council'),
(96785, 'https://ror.org/024exxj48', 'en', 1, 'https://ror.org/024exxj48 Gifu University 岐阜大学'),
(96786, 'https://ror.org/024ms8859', 'en', 1, 'https://ror.org/024ms8859 U.S. Army Aberdeen Test Center'),
(96787, 'https://ror.org/024nvrc84', 'en', 1, 'https://ror.org/024nvrc84 State Key Laboratory of Digital Multimedia Chip Technology ę•°å­—å¤šåŖ’ä½“čŠÆē‰‡ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96788, 'https://ror.org/024pk8k39', 'nl', 1, 'https://ror.org/024pk8k39 Amalia Kinderziekenhuis'),
(96789, 'https://ror.org/024pmbp65', 'es', 1, 'https://ror.org/024pmbp65 Instituto Consorcio Clavijero'),
(96790, 'https://ror.org/024t2fn03', 'es', 1, 'https://ror.org/024t2fn03 Centro MƩdico Sanitas Balmes Sanitas Balmes Medical Centre'),
(96791, 'https://ror.org/024v1ns19', 'fr', 1, 'https://ror.org/024v1ns19 Centre hospitalier national d''ophtalmologie des Quinze-Vingts'),
(96792, 'https://ror.org/024v1wz08', 'fr', 1, 'https://ror.org/024v1wz08 Lettres, arts du spectacle, langues romanes'),
(96793, 'https://ror.org/024ws6f80', 'en', 1, 'https://ror.org/024ws6f80 Queensland Department of Transport and Main Roads'),
(96794, 'https://ror.org/024z2rq82', 'en', 1, 'https://ror.org/024z2rq82 Heinrich Heine University Düsseldorf Heinrich-Heine-Universität Düsseldorf'),
(96795, 'https://ror.org/024zv6448', 'no_lang_code', 1, 'https://ror.org/024zv6448 Biomar Microbial Technologies (Spain)'),
(96796, 'https://ror.org/0250bhj44', 'en', 1, 'https://ror.org/0250bhj44 The Federal Polytechnic, Ado-Ekiti'),
(96797, 'https://ror.org/02519km30', 'no_lang_code', 1, 'https://ror.org/02519km30 Infotec (United Kingdom)'),
(96798, 'https://ror.org/0251vfx90', 'no_lang_code', 0, 'https://ror.org/0251vfx90 Showa Denko (Japan) ę˜­å’Œé›»å·„ę Ŗå¼ä¼šē¤¾'),
(96799, 'https://ror.org/02525b202', 'no_lang_code', 1, 'https://ror.org/02525b202 Beijing Renchuang Technology Group Co., Ltd. (China) åŒ—äŗ¬ä»åˆ›ē§‘ęŠ€é›†å›¢ęœ‰é™å…¬åø'),
(96800, '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'),
(96801, 'https://ror.org/0258qhn75', 'en', 1, 'https://ror.org/0258qhn75 State Enterprise "Scientific and Research Institute for Metrology of Measurement and Control Systems"'),
(96802, 'https://ror.org/0259fwx54', 'en', 1, 'https://ror.org/0259fwx54 ZB MED - Information Centre for Life Sciences ZBMED - Informationszentrum Lebenswissenschaften'),
(96803, 'https://ror.org/025aqk442', 'en', 1, 'https://ror.org/025aqk442 Lung Cancer Connection'),
(96804, 'https://ror.org/025atd435', 'no_lang_code', 1, 'https://ror.org/025atd435 Chiaro Technologies (United States)'),
(96805, 'https://ror.org/025bzyx94', 'fr', 1, 'https://ror.org/025bzyx94 Centre de Recherches sur les Arts et le Langage'),
(96806, 'https://ror.org/025cbjw81', 'en', 1, 'https://ror.org/025cbjw81 State of Illinois'),
(96807, 'https://ror.org/025dmzr60', 'en', 1, 'https://ror.org/025dmzr60 American Genetic Association'),
(96808, 'https://ror.org/025ecp212', 'en', 1, 'https://ror.org/025ecp212 United Kingdom Clinical Research Collaboration'),
(96809, 'https://ror.org/025esck76', 'fr', 1, 'https://ror.org/025esck76 Langues et Civilisations Ć  Tradition Orale'),
(96810, 'https://ror.org/025f3dm06', 'en', 1, 'https://ror.org/025f3dm06 European Network of Logistics Competence Centres'),
(96811, 'https://ror.org/025gvpt43', 'no_lang_code', 1, 'https://ror.org/025gvpt43 I-Five (South Korea) ģ•„ģ“ķŒŒģ“ėøŒ'),
(96812, 'https://ror.org/025hkeg57', 'en', 1, 'https://ror.org/025hkeg57 State Key Laboratory of Transient Optics and Photonics ēž¬ę€å…‰å­¦äøŽå…‰å­ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96813, 'https://ror.org/025mhd687', 'fr', 1, 'https://ror.org/025mhd687 Institut des Neurosciences Cellulaires et IntƩgratives Institute of Cellular and Integrative Neurosciences'),
(96814, 'https://ror.org/025qq4838', 'es', 1, 'https://ror.org/025qq4838 Gobierno de Navarra'),
(96815, 'https://ror.org/025qrzc85', 'en', 1, 'https://ror.org/025qrzc85 Queen Elizabeth II Health Sciences Centre'),
(96816, 'https://ror.org/025sfbe73', 'en', 1, 'https://ror.org/025sfbe73 Theories and Approaches of Genomic Complexity'),
(96817, 'https://ror.org/025t8vx68', 'en', 1, 'https://ror.org/025t8vx68 Institut für Ɩkonomische Bildung Institute for Economic Education'),
(96818, 'https://ror.org/025tyf168', 'en', 1, 'https://ror.org/025tyf168 Sohn Conference Foundation'),
(96819, 'https://ror.org/025vw1435', 'en', 1, 'https://ror.org/025vw1435 Naval Research Laboratory Chemistry Division'),
(96820, 'https://ror.org/025xd2w77', 'en', 1, 'https://ror.org/025xd2w77 FD/MAS Alliance'),
(96821, 'https://ror.org/025yj9w07', 'en', 1, 'https://ror.org/025yj9w07 Department of Health Osasun Saila'),
(96822, 'https://ror.org/0262j1008', 'pl', 1, 'https://ror.org/0262j1008 Wojewódzki Szpital Specjalistyczny im. J. Gromkowskiego we Wrocławiu'),
(96823, 'https://ror.org/0262sec15', 'en', 1, 'https://ror.org/0262sec15 The Valentine'),
(96824, 'https://ror.org/0262vjy29', 'en', 1, 'https://ror.org/0262vjy29 Government of Punjab'),
(96825, 'https://ror.org/0263t7p64', 'en', 1, 'https://ror.org/0263t7p64 Chan Zuckerberg Biohub New York'),
(96826, 'https://ror.org/0263vc361', 'no_lang_code', 1, 'https://ror.org/0263vc361 Geiser Pharma (Spain)'),
(96827, 'https://ror.org/0265m3333', 'en', 1, 'https://ror.org/0265m3333 Australian and New Zealand College of Anaesthetists'),
(96828, 'https://ror.org/02663r349', 'en', 1, 'https://ror.org/02663r349 TRANSITIONS'),
(96829, 'https://ror.org/0269h3m05', 'es', 1, 'https://ror.org/0269h3m05 ConsejerĆ­a de Agricultura, Pesca, Agua y Desarrollo Rural'),
(96830, 'https://ror.org/0269yh980', 'fr', 1, 'https://ror.org/0269yh980 Institut de recherche en droit privƩ'),
(96831, 'https://ror.org/026a27k71', 'no_lang_code', 1, 'https://ror.org/026a27k71 VetStrong'),
(96832, 'https://ror.org/026d32d84', 'es', 1, 'https://ror.org/026d32d84 Ayuntamiento de Vigo Concello de Vigo'),
(96833, 'https://ror.org/026er9r08', 'no_lang_code', 1, 'https://ror.org/026er9r08 Lockheed Martin (United States)'),
(96834, 'https://ror.org/026f1w290', 'en', 1, 'https://ror.org/026f1w290 Washington Water Science Center'),
(96835, '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 ДУ ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ отоларингології ім. проф. Šž.Š”.ŠšŠ¾Š»Š¾Š¼Ń–Š¹Ń‡ŠµŠ½ŠŗŠ° ŠŠŠœŠ Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(96836, 'https://ror.org/026jccz16', 'fr', 1, 'https://ror.org/026jccz16 Laboratoire des dynamiques sociales'),
(96837, 'https://ror.org/026k11n28', 'en', 1, 'https://ror.org/026k11n28 DST-NRF Centre of Excellence for Invasion Biology'),
(96838, 'https://ror.org/026pjf520', 'fr', 0, 'https://ror.org/026pjf520 Centre de Neurophysique Physiologie et Pathologie'),
(96839, 'https://ror.org/026q4jp63', 'en', 1, 'https://ror.org/026q4jp63 Fathom, Fathom (United Kingdom)'),
(96840, 'https://ror.org/026svqy15', 'en', 1, 'https://ror.org/026svqy15 VERSES, VERSES (United States)'),
(96841, 'https://ror.org/026vm4649', 'en', 1, 'https://ror.org/026vm4649 Agricultural Research Institute Kromeriz Zemědělský Výzkumný Ustav Kroměříž'),
(96842, 'https://ror.org/026wyz662', 'en', 1, 'https://ror.org/026wyz662 Samarkand Institute of Veterinary Medicine Samarqand veterinariya meditsinasi instituti ДамарканГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарной меГицины'),
(96843, 'https://ror.org/026xefd52', 'en', 1, 'https://ror.org/026xefd52 Jiangxi Transportation Research Institute ę±Ÿč„æēœäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(96844, 'https://ror.org/026xeq875', 'en', 1, 'https://ror.org/026xeq875 Tasmanian Behavioural Lab'),
(96845, 'https://ror.org/026y7mp54', 'no_lang_code', 1, 'https://ror.org/026y7mp54 Verona Pharma (United Kingdom)'),
(96846, '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'),
(96847, 'https://ror.org/026ynmk26', 'en', 1, 'https://ror.org/026ynmk26 Institute of Molecular Genetics and Genetic Engineering'),
(96848, 'https://ror.org/026yy9j15', 'es', 1, 'https://ror.org/026yy9j15 Instituto de Investigación Biosanitaria de Granada'),
(96849, 'https://ror.org/026z37f85', 'es', 1, 'https://ror.org/026z37f85 Sistema Nacional de Salud'),
(96850, 'https://ror.org/026zsn751', 'de', 1, 'https://ror.org/026zsn751 Jürgen Manchot Foundation Jürgen Manchot Stiftung'),
(96851, 'https://ror.org/0270sxy44', 'de', 1, 'https://ror.org/0270sxy44 Paracelsus Elena Klinik Kassel'),
(96852, 'https://ror.org/0273t3w24', 'es', 1, 'https://ror.org/0273t3w24 Universidad Tecnológica del Cibao Oriental'),
(96853, 'https://ror.org/0273xz717', 'en', 1, 'https://ror.org/0273xz717 Puerto Rico Community Network for Clinical Research on AIDS'),
(96854, 'https://ror.org/0274qxk35', 'en', 1, 'https://ror.org/0274qxk35 Bluecoat'),
(96855, 'https://ror.org/027620g33', 'it', 1, 'https://ror.org/027620g33 Fondazione Giannino Bassetti'),
(96856, 'https://ror.org/0276mnx09', 'en', 1, 'https://ror.org/0276mnx09 State Key Laboratory of Soil-Plant System Technology Machines åœŸå£¤ę¤ē‰©ęœŗå™Øē³»ē»ŸęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96857, 'https://ror.org/0276vcd78', 'no_lang_code', 1, 'https://ror.org/0276vcd78 Hisense (China) 海俔集团'),
(96858, 'https://ror.org/02778hg05', 'de', 1, 'https://ror.org/02778hg05 Trier University UniversitƤt Trier'),
(96859, 'https://ror.org/027a33v57', 'en', 1, 'https://ror.org/027a33v57 University Of Bristol Dental Hospital'),
(96860, 'https://ror.org/027afk247', 'fr', 0, 'https://ror.org/027afk247 Laboratoire MontpelliĆ©rain d’Economie ThĆ©orique et AppliquĆ©e'),
(96861, 'https://ror.org/027atwb90', 'fr', 1, 'https://ror.org/027atwb90 Genes, Synapses, and Cognition GĆØnes, synapses et cognition'),
(96862, 'https://ror.org/027bk5v43', 'en', 1, 'https://ror.org/027bk5v43 Illinois Department of Public Health'),
(96863, 'https://ror.org/027de0q95', 'it', 1, 'https://ror.org/027de0q95 Aziende Socio Sanitarie Territoriale Ovest Milanese Regional Health Care and Social Agency West Milan'),
(96864, 'https://ror.org/027g55y50', 'en', 1, 'https://ror.org/027g55y50 Yunnan Engineering Research Center of Green Planting and Processing of Gastrodia Elata å¤©éŗ»ē»æč‰²ē§ę¤äøŽåŠ å·„å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(96865, 'https://ror.org/027j6ra75', 'en', 1, 'https://ror.org/027j6ra75 State Key Laboratory of Elemental Organic Chemistry å…ƒē“ ęœ‰ęœŗåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96866, 'https://ror.org/027jrtw17', 'fr', 1, 'https://ror.org/027jrtw17 UMI MajuLab'),
(96867, 'https://ror.org/027mnq498', 'fr', 1, 'https://ror.org/027mnq498'),
(96868, 'https://ror.org/027p0bm56', 'en', 1, 'https://ror.org/027p0bm56 Fiona Stanley Hospital'),
(96869, 'https://ror.org/027r7gj11', 'en', 1, 'https://ror.org/027r7gj11 Shanghai Open University äøŠęµ·å¼€ę”¾å¤§å­¦'),
(96870, 'https://ror.org/027rkeh08', 'en', 1, 'https://ror.org/027rkeh08 The Japanese Society of Toxicology ę—„ęœ¬ęÆ’ę€§å­¦ä¼š'),
(96871, 'https://ror.org/027s08w94', 'pt', 1, 'https://ror.org/027s08w94 State University of Ponta Grossa Universidade Estadual de Ponta Grossa'),
(96872, 'https://ror.org/027t90e82', 'en', 1, 'https://ror.org/027t90e82 Vitebsk State Academy of Veterinary Medicine Š’Ń–Ń†ŠµŠ±ŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š²ŠµŃ‚ŃŃ€Ń‹Š½Š°Ń€Š½Š°Š¹ меГыцыны'),
(96873, 'https://ror.org/027yspv17', 'no_lang_code', 0, 'https://ror.org/027yspv17 Tinamenor (Spain)');
INSERT INTO `rors` VALUES
(96874, 'https://ror.org/027zrs220', 'no_lang_code', 1, 'https://ror.org/027zrs220 EMD Group (United States)'),
(96875, 'https://ror.org/02805zw73', 'fr', 1, 'https://ror.org/02805zw73 HƓpital d''Youville de Sherbrooke'),
(96876, 'https://ror.org/0280a3n32', 'en', 1, 'https://ror.org/0280a3n32 Joslin Diabetes Center'),
(96877, 'https://ror.org/02813sv60', 'no_lang_code', 1, 'https://ror.org/02813sv60 British Power International (United Kingdom)'),
(96878, 'https://ror.org/0281pgk04', 'en', 1, 'https://ror.org/0281pgk04 AAA College of Engineering and Technology'),
(96879, 'https://ror.org/028402669', 'pl', 1, 'https://ror.org/028402669 Powiślańska Szkoła Wyższa'),
(96880, 'https://ror.org/02842cb31', 'pt', 1, 'https://ror.org/02842cb31 Federal University of RondƓnia Universidade Federal de RondƓnia'),
(96881, 'https://ror.org/0286my572', 'id', 1, 'https://ror.org/0286my572 Sekolah Tinggi Pembangunan Masyarakat Desa APMD'),
(96882, 'https://ror.org/0287ptp38', 'en', 0, 'https://ror.org/0287ptp38 France Business School'),
(96883, 'https://ror.org/02887w456', 'en', 1, 'https://ror.org/02887w456 China National Hybrid Rice R&D Central Hunan Hybrid Rice Reserch Center å›½å®¶ę‚äŗ¤ę°“ēØ»å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(96884, 'https://ror.org/0288vpa90', 'en', 1, 'https://ror.org/0288vpa90 Breast Cancer Solutions'),
(96885, 'https://ror.org/0288vxa97', 'es', 1, 'https://ror.org/0288vxa97 Residencia de Investigadores y Biblioteca de Sevilla Seville Residence for Researchers and Library'),
(96886, 'https://ror.org/02899vv07', 'en', 0, 'https://ror.org/02899vv07 La Policlinique mƩdicale universitaire Polyclinic Medical University'),
(96887, 'https://ror.org/0289cxp23', 'es', 0, 'https://ror.org/0289cxp23 Hospital Virgen de la Salud'),
(96888, 'https://ror.org/028ev2d94', 'es', 1, 'https://ror.org/028ev2d94 Instituto de Productos Naturales y AgrobiologĆ­a'),
(96889, 'https://ror.org/028fhxy95', 'no_lang_code', 1, 'https://ror.org/028fhxy95 Novartis (United States)'),
(96890, 'https://ror.org/028nbcm46', 'en', 1, 'https://ror.org/028nbcm46 Schweizerisches Institut für Kunstwissenschaft Swiss Institute for Art Research'),
(96891, 'https://ror.org/028nd8457', 'fr', 1, 'https://ror.org/028nd8457 Laboratoire de recherche en gestion et Ʃconomie'),
(96892, 'https://ror.org/028pnqf58', 'fr', 1, 'https://ror.org/028pnqf58 Genoscope'),
(96893, 'https://ror.org/028rfb880', 'en', 1, 'https://ror.org/028rfb880 Office of Secretary of Energy'),
(96894, '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'),
(96895, 'https://ror.org/028ta1f94', 'fr', 1, 'https://ror.org/028ta1f94 Chimie de la Matière Condensée de Paris'),
(96896, 'https://ror.org/028tpe536', 'en', 1, 'https://ror.org/028tpe536 Institute of Public Health Zadar Zavod za javno zdravstvo Zadar'),
(96897, 'https://ror.org/028vrr082', 'no_lang_code', 1, 'https://ror.org/028vrr082 Mars (United States)'),
(96898, 'https://ror.org/028ydjm20', 'en', 0, 'https://ror.org/028ydjm20 Argosy University'),
(96899, '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'),
(96900, 'https://ror.org/028z8qe34', 'no_lang_code', 1, 'https://ror.org/028z8qe34 Astrobiology Center č‡Ŗē„¶ē§‘å­¦ē ”ē©¶ę©Ÿę§‹ć‚¢ć‚¹ćƒˆćƒ­ćƒć‚¤ć‚Ŗćƒ­ć‚øćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(96901, 'https://ror.org/0290eg024', 'cs', 1, 'https://ror.org/0290eg024 Hradec KrÔlové Region, KrÔlovéhradecký kraj'),
(96902, 'https://ror.org/0291jv411', 'en', 1, 'https://ror.org/0291jv411 Children''s Hospital Foundation'),
(96903, 'https://ror.org/029242j35', 'no_lang_code', 1, 'https://ror.org/029242j35 Sport-Elec (France)'),
(96904, 'https://ror.org/0294j1w75', 'no_lang_code', 0, 'https://ror.org/0294j1w75 Bendix Field Engineering Corporation (United States)'),
(96905, 'https://ror.org/029519s87', 'en', 1, 'https://ror.org/029519s87 NUWC Keyport Division'),
(96906, 'https://ror.org/0295z7538', 'no_lang_code', 1, 'https://ror.org/0295z7538 DNV (United Kingdom)'),
(96907, 'https://ror.org/0296ebz56', 'de', 1, 'https://ror.org/0296ebz56 inspire research Beratungsgesellschaft m.b.H. (Austria)'),
(96908, 'https://ror.org/029bcfw81', 'en', 1, 'https://ror.org/029bcfw81 Gillson Longenbaugh Foundation'),
(96909, 'https://ror.org/029bxbh72', 'en', 1, 'https://ror.org/029bxbh72 British Columbia Scholarship Society'),
(96910, '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'),
(96911, 'https://ror.org/029ewy563', 'ca', 1, 'https://ror.org/029ewy563 Asociación de ParÔlisis Cerebral Associació de la Paràlisi Cerebral'),
(96912, 'https://ror.org/029ez4v67', 'pt', 1, 'https://ror.org/029ez4v67 Instituto Federal de Educação, Ciência e Tecnologia de Sergipe'),
(96913, '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 Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики Šø механики'),
(96914, 'https://ror.org/029fsp028', 'en', 1, 'https://ror.org/029fsp028 Oak Spring Garden Foundation'),
(96915, 'https://ror.org/029grsj96', 'en', 1, 'https://ror.org/029grsj96 Volcano Science Center'),
(96916, 'https://ror.org/029gxzx35', 'fr', 1, 'https://ror.org/029gxzx35 Centre Chirurgical Marie Lannelongue'),
(96917, 'https://ror.org/029hdt144', 'fr', 1, 'https://ror.org/029hdt144 Centre d''Investigation Clinique Antilles Guyane'),
(96918, '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'),
(96919, 'https://ror.org/029nmgq20', 'en', 0, 'https://ror.org/029nmgq20 Dublin Institute of Technology Institiúid Teicneolaíochta Bhaile Átha Cliath'),
(96920, 'https://ror.org/029p62z73', 'it', 1, 'https://ror.org/029p62z73 Centro di Ricerca per la Patologia Vegetale'),
(96921, 'https://ror.org/029qa8t82', 'fr', 1, 'https://ror.org/029qa8t82 Groupe de recherche Rouennais en Informatique Fondamentale'),
(96922, 'https://ror.org/029r0z014', 'ca', 1, 'https://ror.org/029r0z014 Consorci Administració Oberta de Catalunya Open Administration Consortium of Catalonia'),
(96923, 'https://ror.org/029sjzg14', 'en', 1, 'https://ror.org/029sjzg14 PhRMA Foundation'),
(96924, 'https://ror.org/029t9db68', 'en', 1, 'https://ror.org/029t9db68 Tashkent State University of Economics Toshkent Davlat Iqtisodiyot Universiteti Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(96925, 'https://ror.org/029xb4124', 'en', 1, 'https://ror.org/029xb4124 Go2 for Lung Cancer'),
(96926, 'https://ror.org/029zp7d63', 'no_lang_code', 1, 'https://ror.org/029zp7d63 Shanghai Liangyou (China) äøŠęµ·č‰Æå‹'),
(96927, 'https://ror.org/02a194470', 'es', 1, 'https://ror.org/02a194470 Hospital Oncológico Docente "Conrado Benítez García"'),
(96928, 'https://ror.org/02a2fqx66', 'en', 1, 'https://ror.org/02a2fqx66 Forest and Range Management Research Institute'),
(96929, 'https://ror.org/02a2pkk25', 'de', 1, 'https://ror.org/02a2pkk25 Forum transregionale Studien e.V.'),
(96930, 'https://ror.org/02a2x5r26', 'en', 1, 'https://ror.org/02a2x5r26 Forestry Research Centre'),
(96931, 'https://ror.org/02a37a132', 'en', 1, 'https://ror.org/02a37a132 International College of Business and Technology'),
(96932, 'https://ror.org/02a76a219', 'es', 1, 'https://ror.org/02a76a219 Fundación Almanaque Azul'),
(96933, 'https://ror.org/02a773244', 'no_lang_code', 0, 'https://ror.org/02a773244 NGIS (China)'),
(96934, 'https://ror.org/02a8cdx90', 'fr', 1, 'https://ror.org/02a8cdx90 Alsace Regional Council Conseil RƩgional d''Alsace'),
(96935, 'https://ror.org/02a9gte39', 'de', 1, 'https://ror.org/02a9gte39 Deutsche Gesellschaft für Soziale Arbeit e. V. The German Association of Social Work'),
(96936, 'https://ror.org/02a9key75', 'en', 1, 'https://ror.org/02a9key75 State Key Laboratory of Advanced Optical Communication Systems and Networks å…‰ēŗ¤é€šäæ”ęŠ€ęœÆå’Œē½‘ē»œå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96937, 'https://ror.org/02aazqb94', 'en', 1, 'https://ror.org/02aazqb94 State Key Laboratory of Efficient Mining and Clean Utilization of Coal Resources ē…¤ē‚­čµ„ęŗé«˜ę•ˆå¼€é‡‡äøŽę“å‡€åˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96938, 'https://ror.org/02ac58f22', 'en', 1, 'https://ror.org/02ac58f22 Rotterdam Study'),
(96939, 'https://ror.org/02ackr434', 'no_lang_code', 1, 'https://ror.org/02ackr434 Foundation Medicine Foundation Medicine (United States)'),
(96940, 'https://ror.org/02acvhq32', 'id', 1, 'https://ror.org/02acvhq32 Universitas KH Abdul Chalim'),
(96941, 'https://ror.org/02aee5m12', 'en', 1, 'https://ror.org/02aee5m12 Institute of Genetics and Developmental Biology äø­å›½ē§‘å­¦é™¢é—ä¼ äøŽå‘č‚²ē”Ÿē‰©å­¦ē ”ē©¶ę‰€å†œäøščµ„ęŗē ”ē©¶äø­åæƒ'),
(96942, 'https://ror.org/02aez6s57', 'en', 1, 'https://ror.org/02aez6s57 State Key Laboratory of Lake Science and Environment ę¹–ę³ŠäøŽēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96943, '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'),
(96944, 'https://ror.org/02ahxdd04', 'en', 0, 'https://ror.org/02ahxdd04 Spectrum Health'),
(96945, 'https://ror.org/02aj13c28', 'de', 1, 'https://ror.org/02aj13c28 Helmholtz-Zentrum Berlin für Materialien und Energie'),
(96946, 'https://ror.org/02aja8v82', 'en', 1, 'https://ror.org/02aja8v82 OpenEdition Center'),
(96947, 'https://ror.org/02ap3w078', 'es', 1, 'https://ror.org/02ap3w078 Agencia Nacional de Investigación y Desarrollo National Agency for Research and Development'),
(96948, 'https://ror.org/02aqatz67', 'no_lang_code', 1, 'https://ror.org/02aqatz67 Xiangtan Electric Manufacturing Group (China) ę¹˜ę½­ē”µęœŗč‚”ä»½ęœ‰é™å…¬åø'),
(96949, 'https://ror.org/02aswte26', 'en', 1, 'https://ror.org/02aswte26 Manchester University'),
(96950, 'https://ror.org/02atag894', 'en', 1, 'https://ror.org/02atag894 Office of Nuclear Physics'),
(96951, 'https://ror.org/02avhnb77', 'no_lang_code', 1, 'https://ror.org/02avhnb77 Emerald Group Publishing (United Kingdom)'),
(96952, 'https://ror.org/02avx9m34', 'en', 1, 'https://ror.org/02avx9m34 Macau University of Science and Technology Foundation ę¾³é—Øē§‘ęŠ€å¤§å­¦åŸŗé‡‘ä¼š, ē§‘å¤§åŸŗé‡‘ęœƒ'),
(96953, 'https://ror.org/02awe6g05', 'en', 1, 'https://ror.org/02awe6g05 Research Institute of Petroleum Exploration and Development äø­å›½ēŸ³ę²¹å¤©ē„¶ę°”č‚”ä»½ęœ‰é™å…¬åøå‹˜ęŽ¢å¼€å‘ē ”ē©¶é™¢'),
(96954, 'https://ror.org/02awzbn54', 'en', 1, 'https://ror.org/02awzbn54 Brown Institute for Media Innovation'),
(96955, 'https://ror.org/02ax7q288', 'en', 1, 'https://ror.org/02ax7q288 Conservation Trust of Puerto Rico'),
(96956, 'https://ror.org/02ayba360', 'en', 1, 'https://ror.org/02ayba360 Safety, Security, and Quality Assurance'),
(96957, 'https://ror.org/02az5b805', 'fr', 1, 'https://ror.org/02az5b805 Ɖcole SupĆ©rieure des Techniques AĆ©ronautiques et de Construction Automobile'),
(96958, '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'),
(96959, 'https://ror.org/02aztsv52', 'en', 1, 'https://ror.org/02aztsv52 State Key Laboratory of Pattern Recognition ęØ”å¼čÆ†åˆ«å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96960, 'https://ror.org/02b1r3q86', 'en', 1, 'https://ror.org/02b1r3q86 Centre International de Hautes Etudes Agronomiques MƩditerranƩennes International Centre for Advanced Mediterranean Agronomic Studies'),
(96961, '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'),
(96962, '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 Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø агротехнологий ŠšŠ°Ń€Š°ŠŗŠ°Š»ŠæŠ°ŠŗŃŃ‚ана'),
(96963, 'https://ror.org/02b58zy88', 'en', 1, 'https://ror.org/02b58zy88 Department of Administration'),
(96964, 'https://ror.org/02b5d8509', 'en', 1, 'https://ror.org/02b5d8509 Natural Environment Research Council'),
(96965, 'https://ror.org/02b5xr067', 'en', 1, 'https://ror.org/02b5xr067 State Key Laboratory of Tropical Oceanography ēƒ­åø¦ęµ·ę“‹ēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96966, 'https://ror.org/02b7jh107', 'en', 1, 'https://ror.org/02b7jh107 Innopolis University ŠŠ²Ń‚Š¾Š½Š¾Š¼Š½Š°Ń Š½ŠµŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Университет Иннополис'),
(96967, 'https://ror.org/02b8e6n56', 'en', 1, 'https://ror.org/02b8e6n56 Central States Center for Agricultural Safety and Health'),
(96968, 'https://ror.org/02b948n83', 'no_lang_code', 1, 'https://ror.org/02b948n83 LG (United States)'),
(96969, 'https://ror.org/02b9aee11', 'no_lang_code', 1, 'https://ror.org/02b9aee11 Sermasa (Spain)'),
(96970, 'https://ror.org/02b9yqg72', 'no_lang_code', 1, 'https://ror.org/02b9yqg72 Meiji Pharma Spain'),
(96971, 'https://ror.org/02b9znm90', 'fr', 1, 'https://ror.org/02b9znm90 Laboratoire d’Imagerie BiomĆ©dicale'),
(96972, 'https://ror.org/02bc1qd91', 'en', 1, 'https://ror.org/02bc1qd91 State Key Laboratory of Mechanical Structure Strength and Vibration ęœŗę¢°ē»“ęž„å¼ŗåŗ¦äøŽęŒÆåŠØå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96973, 'https://ror.org/02bcmdm86', 'en', 0, 'https://ror.org/02bcmdm86 Franciscan University'),
(96974, 'https://ror.org/02bcp0f55', 'fr', 1, 'https://ror.org/02bcp0f55 Equipe de recherche sur les littƩratures, les imaginaires et les sociƩtƩs'),
(96975, 'https://ror.org/02bddmq11', 'es', 1, 'https://ror.org/02bddmq11 Escuela Normal de Atlacomulco'),
(96976, 'https://ror.org/02bf68437', 'no_lang_code', 1, 'https://ror.org/02bf68437 Automation Research and Design Institute of Metallurgical Industry (China) å†¶é‡‘č‡ŖåŠØåŒ–ē ”ē©¶č®¾č®”é™¢'),
(96977, 'https://ror.org/02bf8e216', 'no_lang_code', 1, 'https://ror.org/02bf8e216 Teseo Teseo (Argentina)'),
(96978, 'https://ror.org/02bgdk629', 'es', 1, 'https://ror.org/02bgdk629 Institute of Language, Literature and Anthropology Instituto de Lengua Literatura y AntropologĆ­a'),
(96979, 'https://ror.org/02bhbx726', 'en', 1, 'https://ror.org/02bhbx726 Office of Indian Energy Policy and Programs'),
(96980, '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'),
(96981, 'https://ror.org/02bj1fd19', 'it', 1, 'https://ror.org/02bj1fd19 Aziende Socio Sanitarie Territoriale Nord Milano Regional Health Care and Social Agency North Milan'),
(96982, 'https://ror.org/02bjh0167', 'en', 1, 'https://ror.org/02bjh0167 California Pacific Medical Center'),
(96983, 'https://ror.org/02bjrmf75', 'de', 1, 'https://ror.org/02bjrmf75 Deutsche Institut für angewandte Pflegeforschung e.V.'),
(96984, 'https://ror.org/02bmcqd02', 'en', 1, 'https://ror.org/02bmcqd02 OU Health Stephenson Cancer Center'),
(96985, 'https://ror.org/02bnkt322', 'en', 1, 'https://ror.org/02bnkt322 Bern University of Applied Sciences Berner Fachhochschule Haute Ʃcole spƩcialisƩe bernoise'),
(96986, 'https://ror.org/02bt3t274', 'es', 1, 'https://ror.org/02bt3t274 Fundación Madrimasd Para el Conocimiento'),
(96987, 'https://ror.org/02bv3c993', 'en', 1, 'https://ror.org/02bv3c993 Academy of Military Medical Sciences äø­å›½äŗŗę°‘č§£ę”¾å†›å†›äŗ‹åŒ»å­¦ē§‘å­¦é™¢'),
(96988, 'https://ror.org/02bxj9z30', 'en', 1, 'https://ror.org/02bxj9z30 State Key Laboratory of Marine Geology ęµ·ę“‹åœ°č“Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(96989, 'https://ror.org/02by8jy67', 'es', 1, 'https://ror.org/02by8jy67 Fundación TyPA TyPA Foundation'),
(96990, 'https://ror.org/02bykxq63', 'fr', 1, 'https://ror.org/02bykxq63 Centre Hospitalier de Saint-Malo'),
(96991, 'https://ror.org/02bzf1224', 'no_lang_code', 1, 'https://ror.org/02bzf1224 Pfizer (Netherlands)'),
(96992, 'https://ror.org/02bzz5643', 'en', 0, 'https://ror.org/02bzz5643 U.S. Army Ballistic Research Laboratory'),
(96993, 'https://ror.org/02c21vy68', 'es', 1, 'https://ror.org/02c21vy68 Universidad Nacional de La Pampa'),
(96994, 'https://ror.org/02c37bg49', 'en', 1, 'https://ror.org/02c37bg49 Naval History and Heritage Command'),
(96995, 'https://ror.org/02c73qr28', 'ca', 1, 'https://ror.org/02c73qr28 Institute CerdĆ '),
(96996, 'https://ror.org/02c8q2v13', 'en', 1, 'https://ror.org/02c8q2v13 Bayer Fund'),
(96997, 'https://ror.org/02c8w8j12', 'en', 1, 'https://ror.org/02c8w8j12 Prince Bernhard Nature Fund'),
(96998, 'https://ror.org/02cafbr77', 'es', 1, 'https://ror.org/02cafbr77 Pontifical Catholic University of Valparaíso Pontificia Universidad Católica de Valparaíso'),
(96999, 'https://ror.org/02caqc891', 'en', 1, 'https://ror.org/02caqc891 National Institute for Japanese Language and Linguistics å›½ē«‹å›½čŖžē ”ē©¶ę‰€'),
(97000, 'https://ror.org/02cbapb21', 'fr', 1, 'https://ror.org/02cbapb21 Centre Ǝle-de-France - Versailles-Grignon'),
(97001, 'https://ror.org/02cc1pn48', 'en', 1, 'https://ror.org/02cc1pn48 Connected Farms Pty Ltd., Connected Farms Pty Ltd. (Australia)'),
(97002, 'https://ror.org/02cc3ss06', 'en', 1, 'https://ror.org/02cc3ss06 Huo Family Foundation'),
(97003, 'https://ror.org/02cjm2b20', 'en', 1, 'https://ror.org/02cjm2b20 International Society for the Advancement of Spine Surgery'),
(97004, 'https://ror.org/02cm65z11', 'pt', 1, 'https://ror.org/02cm65z11 State University of ParaĆ­ba Universidade Estadual da ParaĆ­ba'),
(97005, 'https://ror.org/02cn0mn15', 'en', 1, 'https://ror.org/02cn0mn15 Amal Jyothi College of Engineering'),
(97006, 'https://ror.org/02cnrsw88', 'en', 1, 'https://ror.org/02cnrsw88 Slagelse Hospital Slagelse Sygehus'),
(97007, 'https://ror.org/02cp22d42', 'es', 1, 'https://ror.org/02cp22d42 Biodiversity Research Institute Instituto Mixto de Investigación en Biodiversidad'),
(97008, 'https://ror.org/02cq2e244', 'en', 1, 'https://ror.org/02cq2e244 Pacific Earthquake Engineering Research Center'),
(97009, 'https://ror.org/02ctqqq48', 'fr', 1, 'https://ror.org/02ctqqq48 Laboratoire d’ArchĆ©ologie MolĆ©culaire et Structurale'),
(97010, 'https://ror.org/02cwcxm13', 'tr', 1, 'https://ror.org/02cwcxm13 Seyhan Devlet Hastanesi'),
(97011, 'https://ror.org/02cwv3a12', 'en', 1, 'https://ror.org/02cwv3a12 Pink Ribbon Foundation'),
(97012, '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'),
(97013, 'https://ror.org/02cz4ny75', 'en', 1, 'https://ror.org/02cz4ny75 Atlantic White Shark Conservancy'),
(97014, 'https://ror.org/02d0qf239', 'en', 1, 'https://ror.org/02d0qf239 Centre de la lutte antiparasitaire Pest Management Centre'),
(97015, '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'),
(97016, 'https://ror.org/02d887280', 'en', 1, 'https://ror.org/02d887280 4TU.ResearchData'),
(97017, 'https://ror.org/02dcv6909', 'en', 0, 'https://ror.org/02dcv6909 Astrophysics Science Division'),
(97018, 'https://ror.org/02dd40221', 'no_lang_code', 1, 'https://ror.org/02dd40221 Shell (Brazil)'),
(97019, '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'),
(97020, 'https://ror.org/02ddybj40', 'en', 1, 'https://ror.org/02ddybj40 G. Venkataswamy Naidu College ஜி. ą®µąÆ†ą®™ąÆą®•ą®Ÿą®šą®¾ą®®ą®æ நாயுடு ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(97021, 'https://ror.org/02dg0pv02', 'en', 1, 'https://ror.org/02dg0pv02 Fonds des Nations Unies pour l''Enfance United Nations Children''s Fund'),
(97022, 'https://ror.org/02dg3n954', 'fr', 0, 'https://ror.org/02dg3n954 Laboratoire de Neurosciences Cognitives'),
(97023, 'https://ror.org/02dj4ny34', 'en', 1, 'https://ror.org/02dj4ny34 Rottnest Island Nursing Post'),
(97024, 'https://ror.org/02dm87055', 'en', 1, 'https://ror.org/02dm87055 Centre d’Estudis DemogrĆ fics Centre for Demographic Studies'),
(97025, 'https://ror.org/02dmj8v04', 'en', 1, 'https://ror.org/02dmj8v04 Modern Academy for Engineering and Technology Ų§Ł„Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų­ŲÆŁŠŲ«Ų© للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(97026, 'https://ror.org/02dmmay61', 'en', 1, 'https://ror.org/02dmmay61 State Key Laboratory of Silicon Materials ē”…ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97027, 'https://ror.org/02dpmge29', 'en', 1, 'https://ror.org/02dpmge29 International Centre for Climate Change and Development'),
(97028, 'https://ror.org/02dpqcy73', 'fr', 1, 'https://ror.org/02dpqcy73 Center for Molecular Biophysics Centre de Biophysique MolƩculaire'),
(97029, 'https://ror.org/02dq7b674', 'no_lang_code', 1, 'https://ror.org/02dq7b674 Interscience (France)'),
(97030, 'https://ror.org/02drdmm93', 'en', 1, 'https://ror.org/02drdmm93 Chinese Academy of Medical Sciences & Peking Union Medical College äø­å›½åŒ»å­¦ē§‘å­¦é™¢åŒ—äŗ¬åå’ŒåŒ»å­¦é™¢'),
(97031, 'https://ror.org/02drm9a45', 'no_lang_code', 1, 'https://ror.org/02drm9a45 Hedgefog Research (United States)'),
(97032, 'https://ror.org/02dxm8k93', 'es', 1, 'https://ror.org/02dxm8k93 Pontifical Bolivarian University Universidad Pontificia Bolivariana'),
(97033, 'https://ror.org/02dyp7q04', 'ca', 1, 'https://ror.org/02dyp7q04 Catalan Ornithological Institute Institut CatalƠ d''Ornitologia Instituto CatalƔn de Ornitologƭa'),
(97034, 'https://ror.org/02dyts510', 'no_lang_code', 1, 'https://ror.org/02dyts510 Tennet (Netherlands)'),
(97035, 'https://ror.org/02dzk0c85', 'en', 1, 'https://ror.org/02dzk0c85 Shenyang Research Institute of Foundry ę²ˆé˜³é“øé€ ē ”ē©¶ę‰€'),
(97036, 'https://ror.org/02e0bg420', 'en', 1, 'https://ror.org/02e0bg420 Centre de recherche et de dƩveloppement de Guelph Guelph Research and Development Centre'),
(97037, 'https://ror.org/02e0efw43', 'en', 1, 'https://ror.org/02e0efw43 Institute for Foundations of Machine Learning'),
(97038, 'https://ror.org/02e1yp118', 'en', 1, 'https://ror.org/02e1yp118 Neighborhood Cancer Connection'),
(97039, 'https://ror.org/02e3eqz10', 'fr', 1, 'https://ror.org/02e3eqz10 Center of Research in Myology Centre de Recherche en Myologie'),
(97040, 'https://ror.org/02e3pdk98', 'en', 1, 'https://ror.org/02e3pdk98 Survivors on Purpose Inc.'),
(97041, 'https://ror.org/02e3wq066', 'en', 1, 'https://ror.org/02e3wq066 Division of Program Coordination Planning and Strategic Initiatives'),
(97042, 'https://ror.org/02e42hc22', 'en', 1, 'https://ror.org/02e42hc22 China Iron and Steel Research Institute Group 钢铁研究总院'),
(97043, 'https://ror.org/02e5hx313', 'en', 1, 'https://ror.org/02e5hx313 Kunming Institute of Botany äø­å›½ē§‘å­¦é™¢ę˜†ę˜Žę¤ē‰©ē ”ē©¶ę‰€'),
(97044, 'https://ror.org/02e76w165', 'en', 1, 'https://ror.org/02e76w165 R. R. Lalan College'),
(97045, 'https://ror.org/02e9dby02', 'en', 1, 'https://ror.org/02e9dby02 Instituto MediterrƔneo de Estudios Avanzados Mediterranean Institute for Advanced Studies'),
(97046, 'https://ror.org/02e9w7q14', 'en', 1, 'https://ror.org/02e9w7q14 Centre de recherche et de dƩveloppement de London London Research and Development Centre'),
(97047, 'https://ror.org/02eaafc18', 'en', 1, 'https://ror.org/02eaafc18 Ege Universiteti Ege University Ege Üniversitesi'),
(97048, 'https://ror.org/02ecxgj38', 'es', 1, 'https://ror.org/02ecxgj38 Complejo Hospitalario de JaƩn'),
(97049, 'https://ror.org/02ed2th17', 'en', 1, 'https://ror.org/02ed2th17 Hopkins Extreme Materials Institute'),
(97050, 'https://ror.org/02edjvw12', 'en', 1, 'https://ror.org/02edjvw12 State Key Laboratory of Mineral Processing ēŸæē‰©åŠ å·„ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97051, 'https://ror.org/02eegq373', 'es', 1, 'https://ror.org/02eegq373 Fundación de los Ferrocarriles Españoles Spanish Railway Foundation'),
(97052, 'https://ror.org/02egw6w85', 'de', 1, 'https://ror.org/02egw6w85 Vienna Hospital Association Wiener Krankenanstaltenverbund'),
(97053, 'https://ror.org/02ehqwq16', 'en', 1, 'https://ror.org/02ehqwq16 Al-Rashid International Private University for Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ų“ŁŠŲÆ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© الخاصة Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(97054, 'https://ror.org/02em6e271', 'no_lang_code', 1, 'https://ror.org/02em6e271 Knorr-Bremse (France)'),
(97055, 'https://ror.org/02emy3543', 'es', 1, 'https://ror.org/02emy3543 Fundación PROINPA'),
(97056, 'https://ror.org/02eptjh02', 'fr', 1, 'https://ror.org/02eptjh02 Laboratoire d’études spatiales et d’instrumentation en astrophysique'),
(97057, 'https://ror.org/02eq60031', 'en', 1, 'https://ror.org/02eq60031 Piri Reis University Pîrî Reis Üniversitesi'),
(97058, 'https://ror.org/02et65004', 'en', 1, 'https://ror.org/02et65004 White River Junction VA Medical Center'),
(97059, 'https://ror.org/02etk2p60', 'no_lang_code', 1, 'https://ror.org/02etk2p60 Vimicro (China) äø­ę˜Ÿå¾®ē”µå­ęœ‰é™å…¬åø'),
(97060, 'https://ror.org/02ets8c94', 'en', 1, 'https://ror.org/02ets8c94 Indiana University School of Medicine'),
(97061, 'https://ror.org/02exrkh26', 'en', 1, 'https://ror.org/02exrkh26 Virginia Mason Institute'),
(97062, 'https://ror.org/02f01mz90', 'es', 1, 'https://ror.org/02f01mz90 Hospital Universitario Virgen de las Nieves'),
(97063, 'https://ror.org/02f2wk572', 'en', 1, 'https://ror.org/02f2wk572 Institut tehničkih nauka SANU, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ техничких наука Š”ŠŠŠ£ Institute of Technical Sciences of SASA'),
(97064, 'https://ror.org/02f3v7194', 'en', 1, 'https://ror.org/02f3v7194 Constructor Institute'),
(97065, 'https://ror.org/02f4cyy89', 'es', 1, 'https://ror.org/02f4cyy89 Hospital General Docente de Calderón'),
(97066, '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'),
(97067, 'https://ror.org/02fanfn34', 'en', 1, 'https://ror.org/02fanfn34 National Metrology Institute'),
(97068, 'https://ror.org/02fctgp09', 'no_lang_code', 1, 'https://ror.org/02fctgp09 BAE Systems (United States)'),
(97069, 'https://ror.org/02fd9re36', 'no_lang_code', 0, 'https://ror.org/02fd9re36 Loral (United States)'),
(97070, 'https://ror.org/02fdw0g32', 'no_lang_code', 1, 'https://ror.org/02fdw0g32 Affimed Therapeutics (Germany)'),
(97071, 'https://ror.org/02fe4h741', 'no_lang_code', 1, 'https://ror.org/02fe4h741 Cilag (Switzerland)'),
(97072, 'https://ror.org/02fgakj19', 'fr', 1, 'https://ror.org/02fgakj19 Centre Neurosciences intƩgratives et Cognition Integrative Neuroscience and Cognition Center'),
(97073, 'https://ror.org/02fkq9g11', 'en', 1, 'https://ror.org/02fkq9g11 Affiliated Hospital of Changzhi Institute of Traditional Chinese Medicine é•æę²»åø‚äø­åŒ»ē ”ē©¶ę‰€é™„å±žåŒ»é™¢'),
(97074, 'https://ror.org/02fp7dp35', 'en', 1, 'https://ror.org/02fp7dp35 State Key Laboratory of Scientific and Engineering Computing ē§‘å­¦äøŽå·„ēØ‹č®”ē®—å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97075, 'https://ror.org/02fs0cd96', 'es', 1, 'https://ror.org/02fs0cd96 Red de Investigación de Conocimiento, Software y Hardware Libre'),
(97076, 'https://ror.org/02ft5tp06', 'fr', 1, 'https://ror.org/02ft5tp06 DƩlƩgation Ile-de-France Ouest et Nord'),
(97077, 'https://ror.org/02ftfma65', 'en', 1, 'https://ror.org/02ftfma65 Ontario Agri-Food Innovation Alliance'),
(97078, 'https://ror.org/02fv42846', 'fr', 1, 'https://ror.org/02fv42846 Laboratoire de chimie des processus biologiques'),
(97079, 'https://ror.org/02fy17q72', 'es', 1, 'https://ror.org/02fy17q72 Fundación Aula Virtual'),
(97080, 'https://ror.org/02fynbf61', 'en', 1, 'https://ror.org/02fynbf61 Tennessee Academy of Science'),
(97081, 'https://ror.org/02g0s3c07', 'fr', 1, 'https://ror.org/02g0s3c07 Transplantation et ThƩrapies Innovantes de la CornƩe'),
(97082, 'https://ror.org/02g5zab91', 'en', 0, 'https://ror.org/02g5zab91 Fisheries Research Services'),
(97083, 'https://ror.org/02g6ksr28', 'en', 1, 'https://ror.org/02g6ksr28 ResearchConcepts io GmbH, ResearchConcepts io GmbH (Germany)'),
(97084, 'https://ror.org/02g98ya79', 'en', 1, 'https://ror.org/02g98ya79 Hellman Foundation'),
(97085, 'https://ror.org/02gam0808', 'fr', 1, 'https://ror.org/02gam0808 Centre d''Etudes et de Recherche en Gestion d''Aix-Marseille'),
(97086, 'https://ror.org/02gars961', 'en', 1, 'https://ror.org/02gars961 Winship Cancer Institute'),
(97087, 'https://ror.org/02gd4zp35', 'no_lang_code', 1, 'https://ror.org/02gd4zp35 Novartis Gene Therapies, Inc. (United States)'),
(97088, 'https://ror.org/02gg8z294', 'fr', 1, 'https://ror.org/02gg8z294 Ɖcologie des ForĆŖts MĆ©diterranĆ©ennes'),
(97089, 'https://ror.org/02ggg9a13', 'no_lang_code', 1, 'https://ror.org/02ggg9a13 RestorGenex (United States)'),
(97090, 'https://ror.org/02ggt9460', 'pt', 1, 'https://ror.org/02ggt9460 Mato Grosso do Sul State University Universidade Estadual de Mato Grosso do Sul'),
(97091, 'https://ror.org/02gkddr41', 'en', 1, 'https://ror.org/02gkddr41 Tisch Hospital'),
(97092, 'https://ror.org/02gky3n02', 'en', 1, 'https://ror.org/02gky3n02 Vermont Law and Graduate School'),
(97093, 'https://ror.org/02gmp5156', 'en', 1, 'https://ror.org/02gmp5156 National Research Foundation of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ фонГ Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ України'),
(97094, 'https://ror.org/02gp35s66', 'pt', 1, 'https://ror.org/02gp35s66 Federal University for Latin American Integration Universidade Federal da Integração Latino-Americana'),
(97095, 'https://ror.org/02gp92p70', 'it', 1, 'https://ror.org/02gp92p70 Azienda Ospedaliero Universitaria Maggiore della Carita'),
(97096, 'https://ror.org/02gqg2511', 'en', 1, 'https://ror.org/02gqg2511 NIHR Collaboration for Leadership in Applied Health Research and Care South London'),
(97097, 'https://ror.org/02gr2sy50', 'en', 1, 'https://ror.org/02gr2sy50 Office of Accelerator R&D and Production'),
(97098, 'https://ror.org/02gt27w49', 'pt', 1, 'https://ror.org/02gt27w49 Universidade do Vale do ParaĆ­ba University of ParaĆ­ba Valley'),
(97099, 'https://ror.org/02gtb1r52', 'fr', 1, 'https://ror.org/02gtb1r52 Conseil rƩgional du Grand Est Grand Est Regional Council'),
(97100, 'https://ror.org/02gv1gw80', 'en', 1, 'https://ror.org/02gv1gw80 Midlands State University'),
(97101, 'https://ror.org/02gwx4035', 'no_lang_code', 1, 'https://ror.org/02gwx4035 Thea Energy, Inc. (United States)'),
(97102, 'https://ror.org/02gxm3r19', 'en', 1, 'https://ror.org/02gxm3r19 State Key Laboratory of Pulp and Paper Engineering åˆ¶ęµ†é€ ēŗøå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97103, 'https://ror.org/02gy5dj09', 'en', 1, 'https://ror.org/02gy5dj09 Office of Nuclear Materials Production, Management, and Protection'),
(97104, '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'),
(97105, 'https://ror.org/02gypyp73', 'en', 1, 'https://ror.org/02gypyp73 State Key Laboratory of Optical Fiber Communication and Network Technology å…‰ēŗ¤é€šäæ”ęŠ€ęœÆäøŽē½‘ē»œå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97106, 'https://ror.org/02gz3b342', 'fr', 1, 'https://ror.org/02gz3b342 Ɖcole nationale supĆ©rieure de chimie de Mulhouse'),
(97107, 'https://ror.org/02h0cdt26', 'no_lang_code', 0, 'https://ror.org/02h0cdt26 BDM International (United States)'),
(97108, 'https://ror.org/02h1jtt91', 'en', 0, 'https://ror.org/02h1jtt91 Japan Private School Promotion Foundation ę—„ęœ¬ē§ē«‹å­¦ę ”ęŒÆčˆˆč²”å›£'),
(97109, 'https://ror.org/02h1y5y54', 'no_lang_code', 0, 'https://ror.org/02h1y5y54 Biomax Informatics (Germany)'),
(97110, 'https://ror.org/02h25yj48', 'no_lang_code', 1, 'https://ror.org/02h25yj48 Electronics Design (Estonia)'),
(97111, 'https://ror.org/02h6t3w06', 'it', 1, 'https://ror.org/02h6t3w06 Azienda Socio Sanitaria Territoriale di Cremona Regional Health Care and Social Agency of Cremona'),
(97112, 'https://ror.org/02h7vfp25', 'es', 1, 'https://ror.org/02h7vfp25 Institute of Ceramics and Glass Instituto de CerƔmica y Vidrio'),
(97113, 'https://ror.org/02h8m2a72', 'es', 1, 'https://ror.org/02h8m2a72 Instituto de Investigación sobre Sociedades, Territorios y Culturas'),
(97114, 'https://ror.org/02h8sev96', 'en', 1, 'https://ror.org/02h8sev96 European Association for Forwarding, Transport, Logistics and Customs Services'),
(97115, 'https://ror.org/02h9td068', 'no_lang_code', 1, 'https://ror.org/02h9td068 BD Biosciences BD Biosciences (United States)'),
(97116, 'https://ror.org/02haar591', 'fr', 1, 'https://ror.org/02haar591 Institut Pierre-Simon Laplace'),
(97117, 'https://ror.org/02hb07017', 'it', 1, 'https://ror.org/02hb07017 Istituto Sperimentale per la Frutticoltura'),
(97118, 'https://ror.org/02hb5yj49', 'en', 1, 'https://ror.org/02hb5yj49 Corewell Health'),
(97119, 'https://ror.org/02hb7bm88', 'en', 1, 'https://ror.org/02hb7bm88 Natural Resources Institute Finland'),
(97120, 'https://ror.org/02hcx7n63', 'en', 1, 'https://ror.org/02hcx7n63 Toho University ę±é‚¦å¤§å­¦'),
(97121, 'https://ror.org/02hdmed54', 'en', 1, 'https://ror.org/02hdmed54 Regulatory Intergovernmental, and Stakeholder Engagement'),
(97122, 'https://ror.org/02hdnbe80', 'es', 1, 'https://ror.org/02hdnbe80 Instituto Nacional de CancerologĆ­a'),
(97123, 'https://ror.org/02he4yf91', 'en', 1, 'https://ror.org/02he4yf91 B.P. Eye Foundation'),
(97124, 'https://ror.org/02hj2xr21', 'es', 1, 'https://ror.org/02hj2xr21 Salvadoran Lutheran University Universidad Luterana SalvadoreƱa'),
(97125, 'https://ror.org/02hkzh190', 'en', 1, 'https://ror.org/02hkzh190 VNU Science and Technology Development Fund'),
(97126, 'https://ror.org/02hn9hc43', 'no_lang_code', 1, 'https://ror.org/02hn9hc43 SwissLumix (Switzerland)'),
(97127, 'https://ror.org/02hpa6m94', 'en', 1, 'https://ror.org/02hpa6m94 Centro de FĆ­sica de Materiales Material Physics Center Materialen Fisika Zentroa'),
(97128, 'https://ror.org/02hphne60', 'en', 1, 'https://ror.org/02hphne60 State Key Laboratory of Mechanical System and Vibration ęœŗę¢°ē³»ē»ŸäøŽęŒÆåŠØå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97129, 'https://ror.org/02hpna219', 'en', 1, 'https://ror.org/02hpna219 Fifth Hospital In Wuhan ę­¦ę±‰åø‚ē¬¬äŗ”åŒ»é™¢'),
(97130, 'https://ror.org/02hq5p840', 'no_lang_code', 1, 'https://ror.org/02hq5p840 Genetrix (Spain)'),
(97131, 'https://ror.org/02hqczw19', 'en', 1, 'https://ror.org/02hqczw19 State Key Laboratory of Bioreactor Engineering ē”Ÿē‰©ååŗ”å™Øå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97132, 'https://ror.org/02hqqna27', 'en', 1, 'https://ror.org/02hqqna27 St Michael''s Hospital'),
(97133, 'https://ror.org/02hrqhj53', 'en', 1, 'https://ror.org/02hrqhj53 Rural and Environment Science and Analytical Services'),
(97134, 'https://ror.org/02hrqje66', 'en', 1, 'https://ror.org/02hrqje66 University of Koudougou UniversitƩ Norbert Zongo'),
(97135, 'https://ror.org/02hs8e066', 'en', 1, 'https://ror.org/02hs8e066 National University College'),
(97136, 'https://ror.org/02ht4fk33', 'pt', 1, 'https://ror.org/02ht4fk33 Instituto de TelecomunicaƧƵes'),
(97137, 'https://ror.org/02hwc1z56', 'fr', 1, 'https://ror.org/02hwc1z56 Laboratoire d''Ingénierie des Systèmes Macromoléculaires'),
(97138, 'https://ror.org/02hwjhx76', 'en', 1, 'https://ror.org/02hwjhx76 Universitets- og høgskolerÄdet Universities Norway'),
(97139, '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'),
(97140, 'https://ror.org/02hyyn853', 'de', 1, 'https://ror.org/02hyyn853 Free State of Saxony Freistaat Sachsen'),
(97141, 'https://ror.org/02hzqme58', 'en', 0, 'https://ror.org/02hzqme58 State Key Laboratory of Intelligent Technology and Systems ę™ŗčƒ½ęŠ€ęœÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97142, 'https://ror.org/02j078x28', 'es', 1, 'https://ror.org/02j078x28 Asociacion Industrial de Optica Color e Imagen'),
(97143, 'https://ror.org/02j0x4n73', 'en', 1, 'https://ror.org/02j0x4n73 Pacific Coastal and Marine Science Center'),
(97144, 'https://ror.org/02j2cf778', 'no_lang_code', 1, 'https://ror.org/02j2cf778 Elekta (Sweden)'),
(97145, 'https://ror.org/02j44zw77', 'no_lang_code', 1, 'https://ror.org/02j44zw77 Arianespace (France)'),
(97146, 'https://ror.org/02j52de91', 'en', 0, 'https://ror.org/02j52de91 Naval Air Warfare Center Warminster'),
(97147, 'https://ror.org/02j58f715', 'en', 1, 'https://ror.org/02j58f715 Fermi Research Alliance'),
(97148, 'https://ror.org/02j5s7g39', 'en', 1, 'https://ror.org/02j5s7g39 Australian Defence Force Academy'),
(97149, 'https://ror.org/02j71c790', 'pt', 1, 'https://ror.org/02j71c790 Federal Rural University of Amazonia Universidade Federal Rural da AmazƓnia'),
(97150, 'https://ror.org/02j79dc41', 'en', 1, 'https://ror.org/02j79dc41 State Key Laboratory of Wireless Mobile Communications ę— ēŗæē§»åŠØé€šäæ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97151, 'https://ror.org/02j7zpn48', 'fr', 1, 'https://ror.org/02j7zpn48 BibliothĆØques sans frontiĆØres Libraries without Borders'),
(97152, 'https://ror.org/02j89k719', 'en', 1, 'https://ror.org/02j89k719 Fujian Institute of Research on the Structure of Matter äø­å›½ē§‘å­¦é™¢ē¦å»ŗē‰©č“Øē»“ęž„ē ”ē©¶ę‰€'),
(97153, 'https://ror.org/02ja0m249', 'en', 1, 'https://ror.org/02ja0m249 Shirley Ryan AbilityLab'),
(97154, 'https://ror.org/02jcrnk02', 'es', 1, 'https://ror.org/02jcrnk02 Miranza'),
(97155, 'https://ror.org/02jdrs602', 'en', 1, 'https://ror.org/02jdrs602 Agusan del Sur State College of Agriculture and Technology'),
(97156, 'https://ror.org/02je1hv25', 'en', 1, 'https://ror.org/02je1hv25 California Department of Education Departamento de Educación de California'),
(97157, 'https://ror.org/02jf59s11', 'en', 1, 'https://ror.org/02jf59s11 University Transportation Centers Program'),
(97158, 'https://ror.org/02jfvys57', 'en', 1, 'https://ror.org/02jfvys57 Siemens Gamesa Renewable Energy, Siemens Gamesa Renewable Energy (Spain)'),
(97159, 'https://ror.org/02jheyr43', 'no_lang_code', 1, 'https://ror.org/02jheyr43 Hefei General Machinery Research Institute (China) åˆč‚„é€šē”Øęœŗę¢°ē ”ē©¶é™¢'),
(97160, 'https://ror.org/02jj0ar17', 'pt', 1, 'https://ror.org/02jj0ar17 União das Faculdades Católicas de Mato Grosso'),
(97161, 'https://ror.org/02jjdbb85', 'en', 1, 'https://ror.org/02jjdbb85 State Key Laboratory of Electroanalytical Chemistry ē”µåˆ†ęžåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97162, 'https://ror.org/02jk0bp78', 'es', 1, 'https://ror.org/02jk0bp78 Clínica Planificación Familiar y Terminación de Embarazo'),
(97163, 'https://ror.org/02jkg8m11', 'fr', 1, 'https://ror.org/02jkg8m11'),
(97164, 'https://ror.org/02jkmyk67', 'en', 1, 'https://ror.org/02jkmyk67 Academy of Mathematics and Systems Science äø­å›½ē§‘å­¦é™¢ę•°å­¦äøŽē³»ē»Ÿē§‘å­¦ē ”ē©¶é™¢'),
(97165, 'https://ror.org/02jkpm469', 'en', 1, 'https://ror.org/02jkpm469 Versus Arthritis'),
(97166, '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 河内国家大学'),
(97167, 'https://ror.org/02jnwwg50', 'en', 1, 'https://ror.org/02jnwwg50 Department of Human and Social Services'),
(97168, 'https://ror.org/02jv0j195', 'en', 1, 'https://ror.org/02jv0j195 Ignatius Ajuru University of Education'),
(97169, 'https://ror.org/02jv3k292', 'en', 1, 'https://ror.org/02jv3k292 Sofia University "St. Kliment Ohridski" Дофийски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ "Дв. ŠšŠ»ŠøŠ¼ŠµŠ½Ń‚ ŠžŃ…Ń€ŠøŠ“ŃŠŗŠø"'),
(97170, 'https://ror.org/02jv91m18', 'en', 1, 'https://ror.org/02jv91m18 Junta de Comunidades de Castilla-La Mancha Regional Government of Castile-La Mancha'),
(97171, 'https://ror.org/02jxk1021', 'en', 1, 'https://ror.org/02jxk1021 Mathematical Institute of the Serbian Academy of Sciences and Arts'),
(97172, 'https://ror.org/02jzgtq86', 'en', 1, 'https://ror.org/02jzgtq86 Dana-Farber Cancer Institute'),
(97173, 'https://ror.org/02k0z7185', 'en', 0, 'https://ror.org/02k0z7185 Polytechnic University of Nicaragua Universidad PolitƩcnica de Nicaragua'),
(97174, 'https://ror.org/02k239e36', 'es', 1, 'https://ror.org/02k239e36 Universidad del Gran Rosario'),
(97175, 'https://ror.org/02k243t26', 'fr', 1, 'https://ror.org/02k243t26 Laboratoire physiopathologie et pharmacologie clinique de la douleur'),
(97176, 'https://ror.org/02k3b8775', 'de', 1, 'https://ror.org/02k3b8775 Berlin State Museums Staatliche Museen zu Berlin'),
(97177, 'https://ror.org/02k3baz05', 'it', 1, 'https://ror.org/02k3baz05 FacoltĆ  di Teologia di Lugano'),
(97178, 'https://ror.org/02k59vc26', 'en', 1, 'https://ror.org/02k59vc26 State Key Laboratory of Metallogenic Mechanism of Endogenous Metal Deposits å†…ē”Ÿé‡‘å±žēŸæåŗŠęˆēŸæęœŗåˆ¶ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97179, 'https://ror.org/02k65yv07', 'en', 1, 'https://ror.org/02k65yv07 Eachtra Archaeological Projects, Eachtra Archaeological Projects (Ireland)'),
(97180, 'https://ror.org/02k6qnd34', 'id', 1, 'https://ror.org/02k6qnd34 Politeknik Negeri Jember'),
(97181, 'https://ror.org/02k949197', 'en', 1, 'https://ror.org/02k949197 Koneru Lakshmaiah Education Foundation'),
(97182, 'https://ror.org/02kbeme12', 'en', 1, 'https://ror.org/02kbeme12 State Key Laboratory of Oxo Synthesis and Selective Oxidation ē¾°åŸŗåˆęˆäøŽé€‰ę‹©ę°§åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97183, 'https://ror.org/02kcc1z29', 'en', 1, 'https://ror.org/02kcc1z29 UC Davis Comprehensive Cancer Center'),
(97184, 'https://ror.org/02kdgk225', 'en', 1, 'https://ror.org/02kdgk225 State Key Laboratory of Pathogenic Microorganism Biosafety ē—…åŽŸå¾®ē”Ÿē‰©ē”Ÿē‰©å®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97185, 'https://ror.org/02kedcz83', 'es', 1, 'https://ror.org/02kedcz83 Centro MƩdico Sanitas Robresa Sanitas Robresa Medical Centre'),
(97186, 'https://ror.org/02kf0qx29', 'es', 1, 'https://ror.org/02kf0qx29 Centro OceanogrƔfico de Vigo Oceanographic Center of Vigo'),
(97187, 'https://ror.org/02kgve346', 'en', 1, 'https://ror.org/02kgve346 NOAA Oceanic and Atmospheric Research'),
(97188, 'https://ror.org/02kjy2z57', 'en', 1, 'https://ror.org/02kjy2z57 Relativistic Heavy Ion Collider'),
(97189, 'https://ror.org/02kjy3s76', 'en', 1, 'https://ror.org/02kjy3s76 Daiko Foundation'),
(97190, 'https://ror.org/02kk0b805', 'en', 1, 'https://ror.org/02kk0b805 Venter Pharma (Spain)'),
(97191, 'https://ror.org/02km70587', 'no_lang_code', 1, 'https://ror.org/02km70587 Centre d''Ʃtudes Alexandrines'),
(97192, 'https://ror.org/02kms8a74', 'en', 1, 'https://ror.org/02kms8a74 CHI Health Good Samaritan'),
(97193, 'https://ror.org/02kpw3v28', 'en', 0, 'https://ror.org/02kpw3v28 Naval Ordnance Laboratory'),
(97194, 'https://ror.org/02krdtz55', 'fr', 1, 'https://ror.org/02krdtz55 Institut de Recherche en Informatique Fondamentale Research Institute on the Foundations of Computer Science'),
(97195, 'https://ror.org/02ksmb993', 'pt', 1, 'https://ror.org/02ksmb993 Federal Rural University of Pernambuco Universidade Federal Rural de Pernambuco'),
(97196, 'https://ror.org/02ktfmz27', 'pt', 1, 'https://ror.org/02ktfmz27 Catholic University of Pernambuco Universidade Católica de Pernambuco'),
(97197, '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'),
(97198, 'https://ror.org/02kvgs502', 'no_lang_code', 1, 'https://ror.org/02kvgs502 Yingli Energy Technology Group (China) č‹±åˆ©čƒ½ęŗē§‘ęŠ€é›†å›¢'),
(97199, 'https://ror.org/02kw1ws04', 'en', 1, 'https://ror.org/02kw1ws04 Beijing Institute for General Artificial Intelligence åŒ—äŗ¬é€šē”Øäŗŗå·„ę™ŗčƒ½ē ”ē©¶é™¢'),
(97200, 'https://ror.org/02m26fm05', 'fr', 1, 'https://ror.org/02m26fm05'),
(97201, 'https://ror.org/02m9dsv14', 'no_lang_code', 1, 'https://ror.org/02m9dsv14 Euler Technology (China) åŒ—äŗ¬ä¼˜ä¹å¤ē”Ÿē§‘ęŠ€ęœ‰é™č“£ä»»å…¬åø'),
(97202, 'https://ror.org/02manjm47', 'no_lang_code', 0, 'https://ror.org/02manjm47 Sigma-Aldrich (United States)'),
(97203, 'https://ror.org/02mb2dn67', 'no_lang_code', 1, 'https://ror.org/02mb2dn67 State Grid Shanxi Electric Power Company (China) å›½ē½‘å±±č„æēœē”µåŠ›å…¬åø'),
(97204, 'https://ror.org/02mcpvv78', 'es', 1, 'https://ror.org/02mcpvv78 Hospital Universitario Sanitas Virgen del Mar Sanitas Virgen del Mar University Hospital'),
(97205, 'https://ror.org/02mdznj53', 'en', 1, 'https://ror.org/02mdznj53 Nigerian National Petroleum Company Limited'),
(97206, 'https://ror.org/02mfrg180', 'no_lang_code', 0, 'https://ror.org/02mfrg180 United Technologies (United States)'),
(97207, 'https://ror.org/02mhxg157', 'fr', 1, 'https://ror.org/02mhxg157 Groupement LigƩrien pour le Calcul Intensif DistribuƩ'),
(97208, 'https://ror.org/02mkz3e80', 'en', 1, 'https://ror.org/02mkz3e80 International Audio Laboratories Erlangen'),
(97209, 'https://ror.org/02mph9k76', 'fr', 1, 'https://ror.org/02mph9k76 Laboratoire de Physique ThƩorique et Hautes Energies'),
(97210, 'https://ror.org/02mq91505', 'en', 1, 'https://ror.org/02mq91505 Academy of Social Sciences'),
(97211, 'https://ror.org/02mqqhj42', 'en', 1, 'https://ror.org/02mqqhj42 UW Health University Hospital'),
(97212, 'https://ror.org/02mtckd63', 'fr', 1, 'https://ror.org/02mtckd63 Centre de Recherche Risques et VulnƩrabilitƩs'),
(97213, 'https://ror.org/02mtt1z51', 'en', 1, 'https://ror.org/02mtt1z51 NIHR Bristol Biomedical Research Centre'),
(97214, 'https://ror.org/02mvzme44', 'cs', 1, 'https://ror.org/02mvzme44 Výzkumný Ústav MlékÔrenský'),
(97215, 'https://ror.org/02mx98f15', 'en', 1, 'https://ror.org/02mx98f15 Mandurah Community Health Centre'),
(97216, 'https://ror.org/02mz39b41', 'fr', 1, 'https://ror.org/02mz39b41 Biologie, GƩnƩtique et ThƩrapies ostƩoArticulaires et Respiratoires'),
(97217, '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'),
(97218, 'https://ror.org/02n3j8t12', 'en', 1, 'https://ror.org/02n3j8t12 Office of Fusion Energy Sciences'),
(97219, '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'),
(97220, 'https://ror.org/02n744x58', 'en', 1, 'https://ror.org/02n744x58 Yerevan Haybusak University ŌµÖ€Ö‡Õ”Õ¶Õ« «ՀՔյբուսՔկ» Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶Õ«'),
(97221, 'https://ror.org/02n7t3w85', 'en', 1, 'https://ror.org/02n7t3w85 State Key Laboratory of Strength of Metallic Materials é‡‘å±žęę–™å¼ŗåŗ¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97222, 'https://ror.org/02n89n861', 'es', 1, 'https://ror.org/02n89n861 Centro MƩdico Sanitas Sevilla La Buhaira Sanitas Sevilla La Buhaira Medical Centre'),
(97223, 'https://ror.org/02n8rtn22', 'en', 1, 'https://ror.org/02n8rtn22 Naval Research Laboratory Materials Science and Technology Division'),
(97224, 'https://ror.org/02n9fag78', 'en', 1, 'https://ror.org/02n9fag78 International Lyme and Associated Diseases Society'),
(97225, 'https://ror.org/02nadej66', 'en', 1, 'https://ror.org/02nadej66 Cooperative Research Centre for Contamination Assessment and Remediation of the Environment'),
(97226, 'https://ror.org/02nak7d72', 'no_lang_code', 1, 'https://ror.org/02nak7d72 Shandong Sinder Technology Co., Ltd. å±±äøœäæ”å¾—ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(97227, 'https://ror.org/02nazt902', 'en', 1, 'https://ror.org/02nazt902 State Key Laboratory of Infrared Physics ēŗ¢å¤–ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97228, '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'),
(97229, 'https://ror.org/02nc0ck44', 'en', 1, 'https://ror.org/02nc0ck44 NOAA National Marine Fisheries Service Northeast Fisheries Science Center'),
(97230, 'https://ror.org/02nckqd02', 'en', 1, 'https://ror.org/02nckqd02 Johns Hopkins University SAIS Bologna Center'),
(97231, 'https://ror.org/02ndgyq34', 'no_lang_code', 0, 'https://ror.org/02ndgyq34 Integrated Device Technology (South Korea)'),
(97232, 'https://ror.org/02ndr3r66', 'fr', 1, 'https://ror.org/02ndr3r66 HƓpital Marie Lannelongue'),
(97233, 'https://ror.org/02nfzhn33', 'en', 0, 'https://ror.org/02nfzhn33 Johns Hopkins University School of Medicine'),
(97234, 'https://ror.org/02njytm78', 'en', 1, 'https://ror.org/02njytm78 Auxilio Mutuo Hospital'),
(97235, 'https://ror.org/02nkg1w23', 'es', 1, 'https://ror.org/02nkg1w23 Consejería de Universidad, Investigación e Innovación'),
(97236, 'https://ror.org/02nmd8z76', 'en', 1, 'https://ror.org/02nmd8z76 Krea University'),
(97237, 'https://ror.org/02nmt1x06', 'no_lang_code', 0, 'https://ror.org/02nmt1x06 MEDAV (Germany)'),
(97238, 'https://ror.org/02nnjtm50', 'en', 1, 'https://ror.org/02nnjtm50 National Space Science Center å›½å®¶ē©ŗé—“ē§‘å­¦äø­åæƒ'),
(97239, 'https://ror.org/02nre0x31', 'en', 1, 'https://ror.org/02nre0x31 Dan L Duncan Comprehensive Cancer Center'),
(97240, 'https://ror.org/02nt5es71', 'en', 1, 'https://ror.org/02nt5es71 Alberta Health Services'),
(97241, 'https://ror.org/02ntcfz84', 'en', 1, 'https://ror.org/02ntcfz84 Faces and Voices of Recovery'),
(97242, 'https://ror.org/02nxes898', 'es', 1, 'https://ror.org/02nxes898 Centro de Investigación Forestal Instituto de Ciencias Forestales'),
(97243, 'https://ror.org/02nxezb95', 'fr', 1, 'https://ror.org/02nxezb95'),
(97244, 'https://ror.org/02p4far57', 'en', 1, 'https://ror.org/02p4far57 Robert H. Lurie Comprehensive Cancer Center of Northwestern University'),
(97245, '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'),
(97246, 'https://ror.org/02p65sy36', 'en', 1, 'https://ror.org/02p65sy36 Cyprus West University Kıbrıs Batı Üniversitesi'),
(97247, 'https://ror.org/02p6wqg36', 'en', 1, 'https://ror.org/02p6wqg36 Uncle Kory Foundation'),
(97248, 'https://ror.org/02p8pw781', 'no_lang_code', 1, 'https://ror.org/02p8pw781 Treelogic (Spain)');
INSERT INTO `rors` VALUES
(97249, 'https://ror.org/02p9waa09', 'en', 1, 'https://ror.org/02p9waa09 State Key Laboratory of Neuroscience ē„žē»ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97250, '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'),
(97251, 'https://ror.org/02pfn0w45', 'en', 1, 'https://ror.org/02pfn0w45 Scout Association of Hong Kong é¦™ęøÆē«„č»ēø½ęœƒ'),
(97252, 'https://ror.org/02pg81z63', 'ca', 1, 'https://ror.org/02pg81z63 Corporació Sanitària Parc Taulí Corporación Sanitaria y Universitaria Parc Taulí'),
(97253, 'https://ror.org/02phbwg91', 'fr', 1, 'https://ror.org/02phbwg91 Laboratoire de psychologie des cognitions'),
(97254, 'https://ror.org/02pjsf822', 'en', 1, 'https://ror.org/02pjsf822 Caribbean-Florida Water Science Center'),
(97255, 'https://ror.org/02pjt4q95', 'en', 1, 'https://ror.org/02pjt4q95 Hypothesis Fund'),
(97256, 'https://ror.org/02pk2er67', 'en', 1, 'https://ror.org/02pk2er67 Oceana'),
(97257, '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'),
(97258, 'https://ror.org/02pkshz09', 'en', 1, 'https://ror.org/02pkshz09 Kharkiv National University of Internal Affairs Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(97259, 'https://ror.org/02pkvbe21', 'en', 1, 'https://ror.org/02pkvbe21 Southern New Hampshire Medical Center'),
(97260, 'https://ror.org/02pnm9721', 'es', 1, 'https://ror.org/02pnm9721 Complejo Hospitalario Universitario de Granada'),
(97261, 'https://ror.org/02pq9w205', 'en', 1, 'https://ror.org/02pq9w205 State Key Laboratory of Computer Architecture č®”ē®—ęœŗä½“ē³»ē»“ęž„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97262, 'https://ror.org/02pr3qd23', 'en', 1, 'https://ror.org/02pr3qd23 CHI Health St. Mary’s'),
(97263, 'https://ror.org/02pry0c91', 'en', 1, 'https://ror.org/02pry0c91 Hakai Institute'),
(97264, 'https://ror.org/02psmjc37', 'en', 1, 'https://ror.org/02psmjc37 Office of Infrastructure'),
(97265, 'https://ror.org/02pt8g129', 'en', 1, 'https://ror.org/02pt8g129 MakeWay'),
(97266, 'https://ror.org/02pv9et38', 'de', 1, 'https://ror.org/02pv9et38 Ostfriesische Landschaft'),
(97267, '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'),
(97268, 'https://ror.org/02q070r42', 'pt', 1, 'https://ror.org/02q070r42 Dom Bosco Catholic University Universidade Católica Dom Bosco'),
(97269, 'https://ror.org/02q1jkh03', 'en', 1, 'https://ror.org/02q1jkh03 State Key Laboratory of Biogeology and Environmental Geology ē”Ÿē‰©åœ°č“ØäøŽēŽÆå¢ƒåœ°č“Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97270, 'https://ror.org/02q1v5910', 'en', 1, 'https://ror.org/02q1v5910 State Key Laboratory of Millimeter Waves ęÆ«ē±³ę³¢å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97271, 'https://ror.org/02q1yqq82', 'en', 1, 'https://ror.org/02q1yqq82 Wisconsin Breast Cancer Coalition'),
(97272, 'https://ror.org/02q40pc92', 'en', 1, 'https://ror.org/02q40pc92 Fusion for Energy Fusión para la Energía'),
(97273, '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 Комунальний заклаГ вищої освіти Ā«Š„Š¾Ń€Ń‚ŠøŃ†ŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š½Š°Š²Ń‡Š°Š»ŃŒŠ½Š¾-реабілітаційна Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ» Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ¾Ń— обласної раГи'),
(97274, 'https://ror.org/02q5emw59', 'fr', 1, 'https://ror.org/02q5emw59 Sens, Texte, Informatique, Histoire'),
(97275, 'https://ror.org/02q70n095', 'en', 1, 'https://ror.org/02q70n095 California Department of Health Care Services'),
(97276, 'https://ror.org/02q8ctk93', 'es', 1, 'https://ror.org/02q8ctk93 Centro MƩdico Sanitas Reina Victoria Sanitas Reina Victoria Medical Centre'),
(97277, 'https://ror.org/02q963474', 'en', 1, 'https://ror.org/02q963474 Shenzhen MSU-BIT University Университет ŠœŠ“Š£-ППИ в ŠØŃŠ½ŃŒŃ‡Š¶ŃŠ½Šµ ę·±åœ³åŒ—ē†čŽ«ę–Æē§‘å¤§å­¦'),
(97278, 'https://ror.org/02q9ddr54', 'en', 1, 'https://ror.org/02q9ddr54 State Key Laboratory of Satellite Ocean Environment Dynamics å«ę˜Ÿęµ·ę“‹ēŽÆå¢ƒåŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97279, 'https://ror.org/02q9pw720', 'en', 0, 'https://ror.org/02q9pw720 Rome Laboratory'),
(97280, 'https://ror.org/02qe0rk31', 'fr', 1, 'https://ror.org/02qe0rk31'),
(97281, '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'),
(97282, 'https://ror.org/02qfscv73', 'en', 1, 'https://ror.org/02qfscv73 RTI Press'),
(97283, 'https://ror.org/02qha4q93', 'no_lang_code', 0, 'https://ror.org/02qha4q93 Finmeccanica (United Kingdom)'),
(97284, 'https://ror.org/02qjttz75', 'en', 1, 'https://ror.org/02qjttz75 Control Adaptativo Predictivo Experto Optimized Adaptive Control Systems'),
(97285, 'https://ror.org/02qm5wh40', 'en', 1, 'https://ror.org/02qm5wh40 American Samoa Community Cancer Coalition'),
(97286, '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'),
(97287, 'https://ror.org/02qqy8j09', 'es', 1, 'https://ror.org/02qqy8j09 Instituto de Ciencia de Materiales de Madrid Materials Science Institute of Madrid'),
(97288, 'https://ror.org/02qrm2a52', 'en', 1, 'https://ror.org/02qrm2a52 Ministry of Agriculture'),
(97289, 'https://ror.org/02qvhgb32', 'fr', 1, 'https://ror.org/02qvhgb32 Réanimation et soins intensifs du patient en Insuffisance respiratoire aigüe'),
(97290, 'https://ror.org/02qw7gq21', 'en', 1, 'https://ror.org/02qw7gq21 Upgrad (India)'),
(97291, 'https://ror.org/02qynyz82', 'en', 1, 'https://ror.org/02qynyz82 Asia Pacific College'),
(97292, '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'),
(97293, 'https://ror.org/02qz8b764', 'en', 1, 'https://ror.org/02qz8b764 Cold Spring Harbor Laboratory'),
(97294, 'https://ror.org/02r11y182', 'en', 1, 'https://ror.org/02r11y182 Adam Smith University'),
(97295, 'https://ror.org/02r1wpw81', 'en', 1, 'https://ror.org/02r1wpw81 Virginia Mason Franciscan Health'),
(97296, 'https://ror.org/02r25sw81', 'fr', 1, 'https://ror.org/02r25sw81 HƓpital Pontchaillou Pontchaillou Hospital'),
(97297, 'https://ror.org/02r29r389', 'fr', 1, 'https://ror.org/02r29r389 HƓpital AndrƩ Mignot'),
(97298, 'https://ror.org/02r40rn49', 'en', 1, 'https://ror.org/02r40rn49 Central Adelaide Local Health Network'),
(97299, 'https://ror.org/02r4fqa76', 'en', 1, 'https://ror.org/02r4fqa76 National Centre for Energy Systems Integration'),
(97300, 'https://ror.org/02r531a15', 'en', 1, 'https://ror.org/02r531a15 Fond za nauku Republike Srbije, ФонГ за науку Републике Š”Ń€Š±ŠøŃ˜Šµ Science Fund of the Republic of Serbia'),
(97301, 'https://ror.org/02r6n2967', 'en', 1, 'https://ror.org/02r6n2967 Faculty SantĆ­ssima Trindade'),
(97302, 'https://ror.org/02r839n55', 'en', 1, 'https://ror.org/02r839n55 Saint Mary''s College'),
(97303, 'https://ror.org/02r92js74', 'en', 1, 'https://ror.org/02r92js74 State Key Laboratory of Civil Engineering Disaster Prevention åœŸęœØå·„ēØ‹é˜²ē¾å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97304, 'https://ror.org/02rcakp17', 'en', 1, 'https://ror.org/02rcakp17 NOAA Geostationary Operational Environmental Satellites'),
(97305, 'https://ror.org/02rdd8804', 'en', 1, 'https://ror.org/02rdd8804 National Centre of Competence in Research Robotics'),
(97306, 'https://ror.org/02rdkx920', 'en', 1, 'https://ror.org/02rdkx920 United States Army Combat Capabilities Development Command'),
(97307, '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'),
(97308, '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'),
(97309, 'https://ror.org/02rjhbb08', 'pt', 1, 'https://ror.org/02rjhbb08 Fluminense Federal University Universidade Federal Fluminense'),
(97310, 'https://ror.org/02rjj2m04', 'en', 1, 'https://ror.org/02rjj2m04 Vanderbilt-Ingram Cancer Center'),
(97311, 'https://ror.org/02rnys730', 'it', 1, 'https://ror.org/02rnys730 Gruppo Nazionale per il Calcolo Scientifico National Group for Scientific Computation'),
(97312, 'https://ror.org/02rrdvm96', 'en', 1, 'https://ror.org/02rrdvm96 Center for Excellence in Molecular Cell Science äø­ē§‘é™¢åˆ†å­ē»†čƒžå“č¶Šåˆ›ę–°äø­åæƒ'),
(97313, 'https://ror.org/02rse7p59', 'no_lang_code', 1, 'https://ror.org/02rse7p59 Sandoz Group AG (Switzerland)'),
(97314, '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'),
(97315, 'https://ror.org/02rvbpq83', 'en', 1, 'https://ror.org/02rvbpq83 Takhar University دانؓگاه ŲŖŲ®Ų§Ų±'),
(97316, 'https://ror.org/02rvv6x76', 'fr', 1, 'https://ror.org/02rvv6x76 Institut d''Etudes AvancƩes Paris Paris Institute for Advanced Study'),
(97317, 'https://ror.org/02ry60714', 'en', 1, 'https://ror.org/02ry60714 Minneapolis VA Health Care System'),
(97318, 'https://ror.org/02rycsd19', 'en', 0, 'https://ror.org/02rycsd19 Institute for Work and Health'),
(97319, 'https://ror.org/02rytd882', 'da', 1, 'https://ror.org/02rytd882 Aage Bang Fund Aage Bangs Fond'),
(97320, 'https://ror.org/02rz5qj26', 'en', 1, 'https://ror.org/02rz5qj26 Douglas Bomford Trust'),
(97321, 'https://ror.org/02rzvwr38', 'es', 1, 'https://ror.org/02rzvwr38 Centro MƩdico Sanitas Nicasio Gallego Sanitas Nicasio Gallego Medical Centre'),
(97322, 'https://ror.org/02s2kph56', 'en', 1, 'https://ror.org/02s2kph56 Wyoming-Montana Water Science Center'),
(97323, 'https://ror.org/02s32fb62', 'en', 1, 'https://ror.org/02s32fb62 Novo Nordisk Foundation Center for Basic Metabolic Research'),
(97324, 'https://ror.org/02s47w807', 'en', 1, 'https://ror.org/02s47w807 WinnMed'),
(97325, 'https://ror.org/02s4vyx04', 'es', 1, 'https://ror.org/02s4vyx04 Fundación Estatal, Salud, Infancia y Bienestar Social, F.S.P.'),
(97326, 'https://ror.org/02s5cdn70', 'en', 1, 'https://ror.org/02s5cdn70 Gwanda State University'),
(97327, '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)'),
(97328, 'https://ror.org/02s6m8n84', 'fr', 1, 'https://ror.org/02s6m8n84 Institut de Recherche de Chimie Paris'),
(97329, 'https://ror.org/02s89bg52', 'es', 1, 'https://ror.org/02s89bg52 Asociación Colombiana de Hematología y Oncología'),
(97330, 'https://ror.org/02s8dab97', 'es', 1, 'https://ror.org/02s8dab97 Junta de Castilla y León Junta of Castile and León'),
(97331, 'https://ror.org/02sb3b652', 'fr', 1, 'https://ror.org/02sb3b652 Laboratoire Ondes et Milieux Complexes'),
(97332, 'https://ror.org/02setav13', 'fr', 1, 'https://ror.org/02setav13 PƓle Universitaire LƩonard de Vinci'),
(97333, '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'),
(97334, 'https://ror.org/02shxwk22', 'en', 1, 'https://ror.org/02shxwk22 Institut za kozmologiju i filozofiju prirode Institute for Cosmology and Philosophy of Nature'),
(97335, 'https://ror.org/02sjzjp24', 'fr', 1, 'https://ror.org/02sjzjp24 Vertige ExtrĆŖme'),
(97336, 'https://ror.org/02skfv902', 'no_lang_code', 1, 'https://ror.org/02skfv902 Deltex Medical (Spain)'),
(97337, 'https://ror.org/02skqwf47', 'en', 1, 'https://ror.org/02skqwf47 Pacific Islands Water Science Center'),
(97338, 'https://ror.org/02smd3j38', 'en', 1, 'https://ror.org/02smd3j38 Universidad del Turabo University of Turabo'),
(97339, 'https://ror.org/02spbd534', 'no_lang_code', 1, 'https://ror.org/02spbd534 Thales Alenia Space Thales Alenia Space (Italy)'),
(97340, 'https://ror.org/02sptwz63', 'en', 1, 'https://ror.org/02sptwz63 Danish Agency for Science and Higher Education'),
(97341, 'https://ror.org/02sr2ee22', 'no_lang_code', 1, 'https://ror.org/02sr2ee22 PRG S&Tech (South Korea) ķ”¼ģ•Œģ§€ģ—ģŠ¤ģ•¤ķ…'),
(97342, 'https://ror.org/02ssawd58', 'en', 1, 'https://ror.org/02ssawd58 Office of Sustainable Transportation and Fuels'),
(97343, 'https://ror.org/02sspdz82', 'es', 1, 'https://ror.org/02sspdz82 Instituto Nacional de Investigación Agropecuaria'),
(97344, 'https://ror.org/02ssw1840', 'no_lang_code', 1, 'https://ror.org/02ssw1840 GV20 Therapeutics (United States)'),
(97345, 'https://ror.org/02stdqb15', 'en', 1, 'https://ror.org/02stdqb15 OVC Pet Trust'),
(97346, 'https://ror.org/02sysn258', 'en', 1, 'https://ror.org/02sysn258 Third People''s Hospital of Hangzhou ę­å·žåø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(97347, 'https://ror.org/02szc9j24', 'sv', 1, 'https://ror.org/02szc9j24 The King Gustaf V Foundation''s 80-year fund'),
(97348, 'https://ror.org/02t1cke57', 'fr', 1, 'https://ror.org/02t1cke57 Laboratoire de Photochimie et d''IngƩnierie MacromolƩculaire'),
(97349, 'https://ror.org/02t1eqa40', 'en', 1, 'https://ror.org/02t1eqa40 State Key Laboratory of Safety and Health of Long Bridges in Service åœØå½¹é•æå¤§ę”„ę¢å®‰å…ØäøŽå„åŗ·å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97350, 'https://ror.org/02t1k2015', 'no_lang_code', 1, 'https://ror.org/02t1k2015 Egis (France)'),
(97351, 'https://ror.org/02t1zz428', 'fr', 1, 'https://ror.org/02t1zz428 HƓpital de la Roche-Guyon'),
(97352, 'https://ror.org/02t46gq94', 'es', 1, 'https://ror.org/02t46gq94 Ministerio de Salud PĆŗblica'),
(97353, 'https://ror.org/02t71h845', 'no_lang_code', 1, 'https://ror.org/02t71h845 Honeywell (United States)'),
(97354, 'https://ror.org/02t78x693', 'en', 1, 'https://ror.org/02t78x693 Naval Research Laboratory Laboratories for Computational Physics & Fluid Dynamics'),
(97355, 'https://ror.org/02tbkgn21', 'en', 1, 'https://ror.org/02tbkgn21 Maryland-Delaware-D.C. Water Science Center'),
(97356, 'https://ror.org/02tbx7g56', 'en', 1, 'https://ror.org/02tbx7g56 Swine Innovation Porc'),
(97357, 'https://ror.org/02tdxcj66', 'en', 1, 'https://ror.org/02tdxcj66 Central Midwest Water Science Center'),
(97358, 'https://ror.org/02teymm57', 'en', 1, 'https://ror.org/02teymm57 St. Anne Hospital in Burien'),
(97359, 'https://ror.org/02tfmen73', 'fr', 1, 'https://ror.org/02tfmen73 Grenoble Alpes MƩtropole'),
(97360, 'https://ror.org/02tg88m31', 'en', 1, 'https://ror.org/02tg88m31 Translational Research in Gene Therapy'),
(97361, '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'),
(97362, 'https://ror.org/02tk7t045', 'en', 1, 'https://ror.org/02tk7t045 Namur Institute of Language, Text and Transmediality'),
(97363, 'https://ror.org/02tmabg35', 'no_lang_code', 1, 'https://ror.org/02tmabg35 Triad National Security (United States)'),
(97364, 'https://ror.org/02tnxpn14', 'no_lang_code', 0, 'https://ror.org/02tnxpn14 Advanced Digital Imaging Research'),
(97365, 'https://ror.org/02trddg58', 'en', 1, 'https://ror.org/02trddg58 Arctic Sciences'),
(97366, 'https://ror.org/02trgdk48', 'en', 1, 'https://ror.org/02trgdk48 Asociación Cluster de Telecomunicaciones Association of Electronic and Information Technologies'),
(97367, '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'),
(97368, 'https://ror.org/02txedb84', 'en', 1, 'https://ror.org/02txedb84 Shanghai Institute of Technical Physics äø­å›½ē§‘å­¦é™¢äøŠęµ·ęŠ€ęœÆē‰©ē†ē ”ē©¶ę‰€'),
(97369, 'https://ror.org/02tycxw39', 'en', 1, 'https://ror.org/02tycxw39 State Key Laboratory of Tropical Crop Biotechnology ēƒ­åø¦ä½œē‰©ē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97370, 'https://ror.org/02typaz40', 'en', 1, 'https://ror.org/02typaz40 National Children’s Research Centre'),
(97371, 'https://ror.org/02v423v20', 'en', 1, 'https://ror.org/02v423v20 State Key Laboratory of Rare Metal Separation and Comprehensive Utilization ēØ€ęœ‰é‡‘å±žåˆ†ē¦»äøŽē»¼åˆåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97372, 'https://ror.org/02v6w2r95', 'en', 1, 'https://ror.org/02v6w2r95 California Department of Fish and Wildlife'),
(97373, 'https://ror.org/02v6zg374', 'es', 1, 'https://ror.org/02v6zg374 Museo Nacional de Ciencias Naturales National Museum of Natural Sciences'),
(97374, 'https://ror.org/02v9wg343', 'en', 1, 'https://ror.org/02v9wg343 State Key Laboratory of Information Photonics and Optical Communications äæ”ęÆå…‰å­å­¦äøŽå…‰é€šäæ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97375, 'https://ror.org/02v9xd857', 'es', 1, 'https://ror.org/02v9xd857 Hospital Universitario Sanitas La Zarzuela Sanitas La Zarzuela University Hospital'),
(97376, 'https://ror.org/02vas3094', 'no_lang_code', 1, 'https://ror.org/02vas3094 NXP (France)'),
(97377, 'https://ror.org/02vb70n88', 'en', 1, 'https://ror.org/02vb70n88 U.S. Army White Sands Test Center'),
(97378, 'https://ror.org/02vbab064', 'en', 1, 'https://ror.org/02vbab064 Institute for Stem Cell Biology and Regenerative Medicine'),
(97379, 'https://ror.org/02vc2hv78', 'sv', 1, 'https://ror.org/02vc2hv78 Stiftelsen Zoologisk Forskning'),
(97380, 'https://ror.org/02vg64e60', 'en', 1, 'https://ror.org/02vg64e60 Office of Technology Transitions'),
(97381, 'https://ror.org/02vgg2808', 'en', 1, 'https://ror.org/02vgg2808 Bundesministerium für Wirtschaft und Klimaschutz Federal Ministry for Economic Affairs and Climate Action'),
(97382, 'https://ror.org/02vgzrk89', 'en', 1, 'https://ror.org/02vgzrk89 Illinois Department of Transportation'),
(97383, 'https://ror.org/02vrchf15', 'en', 1, 'https://ror.org/02vrchf15 Ʃklore-ed School of Management'),
(97384, 'https://ror.org/02vtq1a86', 'fi', 1, 'https://ror.org/02vtq1a86 RƄdet fƶr Strategisk Forskning Strategic Research Council Strategisen Tutkimuksen Neuvosto'),
(97385, 'https://ror.org/02vvmw586', 'en', 1, 'https://ror.org/02vvmw586 State University of Economics and Technology Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ економіки і технологій'),
(97386, 'https://ror.org/02vw56c05', 'en', 1, 'https://ror.org/02vw56c05 State Key Laboratory of Construction Machinery Key Technology å»ŗč®¾ęœŗę¢°å…³é”®ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97387, 'https://ror.org/02vzbm991', 'en', 1, 'https://ror.org/02vzbm991 Stanford Synchrotron Radiation Lightsource'),
(97388, 'https://ror.org/02vzjz256', 'en', 0, 'https://ror.org/02vzjz256 Particle Physics and Astronomy Research Council'),
(97389, 'https://ror.org/02vzm3e56', 'en', 1, 'https://ror.org/02vzm3e56 South Carolina Spinal Cord Injury Association'),
(97390, 'https://ror.org/02vznxv75', 'es', 1, 'https://ror.org/02vznxv75 Institute of Medicinal Chemistry Instituto de Quƭmica MƩdica'),
(97391, 'https://ror.org/02vzxfs32', 'en', 1, 'https://ror.org/02vzxfs32 California Department of Forestry and Fire Protection'),
(97392, 'https://ror.org/02w0bzb53', 'no_lang_code', 1, 'https://ror.org/02w0bzb53 Amsterdam Scientific Instruments (Netherlands)'),
(97393, 'https://ror.org/02w0dps66', 'no_lang_code', 1, 'https://ror.org/02w0dps66 Triad Interactive (United States)'),
(97394, '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'),
(97395, 'https://ror.org/02w2qg272', 'en', 1, 'https://ror.org/02w2qg272 metaBUS'),
(97396, 'https://ror.org/02w3bnx54', 'fr', 1, 'https://ror.org/02w3bnx54 Institut de tourisme et d''hƓtellerie du QuƩbec'),
(97397, 'https://ror.org/02w3h2896', 'es', 1, 'https://ror.org/02w3h2896 Civil Guard Guardia Civil'),
(97398, 'https://ror.org/02w3nfa37', 'en', 1, 'https://ror.org/02w3nfa37 Idaho Water Science Center'),
(97399, 'https://ror.org/02w403h65', 'en', 1, 'https://ror.org/02w403h65 Utah State University Space Dynamics Laboratory'),
(97400, 'https://ror.org/02w5ava96', 'fr', 1, 'https://ror.org/02w5ava96 Conseil dƩpartemental de la Dordogne'),
(97401, 'https://ror.org/02w65pw28', 'es', 1, 'https://ror.org/02w65pw28 Real Conservatorio Superior de MĆŗsica de Madrid The Royal Conservatory of Madrid'),
(97402, 'https://ror.org/02w69ra18', 'en', 1, 'https://ror.org/02w69ra18 Multimedia Nusantara Polytechnic'),
(97403, 'https://ror.org/02w7ezv91', 'fr', 1, 'https://ror.org/02w7ezv91 Pathologies Pulmonaires et PlasticitƩ Cellulaire'),
(97404, 'https://ror.org/02wa0fq92', 'en', 1, 'https://ror.org/02wa0fq92 Department of Employment and Workplace Relations'),
(97405, 'https://ror.org/02wgpwk78', 'fr', 1, 'https://ror.org/02wgpwk78 Agence Nationale des Titres SƩcurisƩs National Safe Securities Agency'),
(97406, 'https://ror.org/02wh02235', 'en', 1, 'https://ror.org/02wh02235 Centre for Automation and Robotics Centro de Automatización y Robótica'),
(97407, 'https://ror.org/02wjh7838', 'en', 1, 'https://ror.org/02wjh7838 National Transportation Center'),
(97408, 'https://ror.org/02wjqm946', 'no_lang_code', 0, 'https://ror.org/02wjqm946 McDonnel Douglas (United States)'),
(97409, 'https://ror.org/02wk2vx54', 'en', 1, 'https://ror.org/02wk2vx54 Saints Cyril and Methodius University of Skopje Universiteti Kiril dhe Metodij Универзитет Дв. ŠšŠøŃ€ŠøŠ» Šø ŠœŠµŃ‚Š¾Š“ŠøŃ˜ Универзитет у Š”ŠŗŠ¾ŠæŃ™Ńƒ'),
(97410, 'https://ror.org/02wnb5903', 'en', 1, 'https://ror.org/02wnb5903 KMAN Research Institute'),
(97411, 'https://ror.org/02wrb0e48', 'es', 1, 'https://ror.org/02wrb0e48 Biofisika Bizkaia Fundazioa Fundación Biofísica Bizkaia'),
(97412, 'https://ror.org/02wt5sv47', 'en', 1, 'https://ror.org/02wt5sv47 Johns Hopkins University School of Advanced International Studies'),
(97413, 'https://ror.org/02wvztg94', 'en', 1, 'https://ror.org/02wvztg94 African Union Development Agency-New Partnership for Africa''s Development'),
(97414, 'https://ror.org/02wwpj676', 'en', 1, 'https://ror.org/02wwpj676 The State Institution Ā«Public Health Center of the Ministry of Health of UkraineĀ» Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° «Центр Š³Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ¾Š³Š¾ Š·Š“Š¾Ń€Š¾Š²ā€™Ń ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š° охорони Š·Š“Š¾Ń€Š¾Š²ā€™Ń України»'),
(97415, 'https://ror.org/02wxm3f24', 'en', 1, 'https://ror.org/02wxm3f24 Institute of Science and Technology ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø तऄा ą¤Ŗą„ą¤°ą¤µą¤æą¤§ą¤æ ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(97416, 'https://ror.org/02wxs2325', 'es', 1, 'https://ror.org/02wxs2325 Escuela de Estudios Hispano-Americanos'),
(97417, 'https://ror.org/02wy8nb15', 'es', 1, 'https://ror.org/02wy8nb15 Centro MƩdico Sanitas Conde Duque Sanitas Conde Duque Medical Centre'),
(97418, 'https://ror.org/02wyf1c22', 'en', 1, 'https://ror.org/02wyf1c22 St. Joseph Medical Center in Tacoma'),
(97419, 'https://ror.org/02x1xke62', 'en', 1, 'https://ror.org/02x1xke62 State Key Laboratory of Cell Stress Biology ē»†čƒžåŗ”ęæ€ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97420, 'https://ror.org/02x2eem98', 'id', 1, 'https://ror.org/02x2eem98 IAIN Syekh Nurjati Cirebon'),
(97421, 'https://ror.org/02x2gbe80', 'pt', 1, 'https://ror.org/02x2gbe80 Hospital UniversitƔrio de Brasƭlia'),
(97422, 'https://ror.org/02x2py139', 'en', 1, 'https://ror.org/02x2py139 Thonburi University'),
(97423, 'https://ror.org/02x2vs391', 'en', 1, 'https://ror.org/02x2vs391 Solar Technologies go Hybrid'),
(97424, 'https://ror.org/02x3f7722', 'en', 0, 'https://ror.org/02x3f7722 Lakeland Health'),
(97425, 'https://ror.org/02x402970', 'no_lang_code', 1, 'https://ror.org/02x402970 iPronics Programmable Photonics (Spain)'),
(97426, 'https://ror.org/02x5wtf56', 'en', 1, 'https://ror.org/02x5wtf56 Abu Dhabi Department of Education and Knowledge ŲÆŲ§Ų¦Ų±Ų© Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… ŁˆŲ§Ł„Ł…Ų¹Ų±ŁŲ©'),
(97427, 'https://ror.org/02x6r5976', 'fi', 1, 'https://ror.org/02x6r5976 Hengityssairauksien TutkimussƤƤtiƶ'),
(97428, 'https://ror.org/02x9gn510', 'fr', 1, 'https://ror.org/02x9gn510 Ɖcole nationale de police du QuĆ©bec'),
(97429, 'https://ror.org/02x9y0j10', 'fr', 1, 'https://ror.org/02x9y0j10 Centre FranƧois Baclesse'),
(97430, 'https://ror.org/02xav4q54', 'es', 1, 'https://ror.org/02xav4q54 Institute of Archaeology of Merida Instituto de Arqueologƭa-MƩrida'),
(97431, 'https://ror.org/02xbz6x26', 'en', 1, 'https://ror.org/02xbz6x26 State Key Laboratory of Space Weather ē©ŗé—“å¤©ę°”å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97432, '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) ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ міжнароГний суГово-експертний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологічної експертизи і Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ на поліграфі'),
(97433, 'https://ror.org/02xdk6z35', 'es', 1, 'https://ror.org/02xdk6z35 AMETIC'),
(97434, 'https://ror.org/02xf8rf51', 'en', 1, 'https://ror.org/02xf8rf51 State Key Laboratory of Supramolecular Structure and Materials č¶…åˆ†å­ē»“ęž„äøŽęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97435, 'https://ror.org/02xfp8v59', 'pt', 1, 'https://ror.org/02xfp8v59 Universidade de BrasĆ­lia University of BrasĆ­lia'),
(97436, 'https://ror.org/02xfw2e90', 'en', 1, 'https://ror.org/02xfw2e90 United States Department of Transportation'),
(97437, 'https://ror.org/02xg1m795', 'en', 1, 'https://ror.org/02xg1m795 National Institute of Genetics å›½ē«‹éŗä¼å­¦ē ”ē©¶ę‰€'),
(97438, 'https://ror.org/02xj61x84', 'fr', 1, 'https://ror.org/02xj61x84 Center for Research in Microelectronics and Nanotechnology Centre de Recherche en Microelectronique et Nanotechnologie'),
(97439, 'https://ror.org/02xkdev90', 'en', 1, 'https://ror.org/02xkdev90 Department of Mathematical Sciences'),
(97440, 'https://ror.org/02xkjwb21', 'es', 1, 'https://ror.org/02xkjwb21 Fundación Confemetal'),
(97441, 'https://ror.org/02xkqnf65', 'en', 1, 'https://ror.org/02xkqnf65 CHI Franciscan Rehabilitation Hospital'),
(97442, 'https://ror.org/02xm1d907', 'pt', 1, 'https://ror.org/02xm1d907 Escola Nacional de SaĆŗde PĆŗblica'),
(97443, 'https://ror.org/02xmd8q53', 'en', 1, 'https://ror.org/02xmd8q53 North Carolina Department of Transportation'),
(97444, 'https://ror.org/02xn1ny06', 'en', 1, 'https://ror.org/02xn1ny06 High Flux Isotope Reactor'),
(97445, 'https://ror.org/02xrb7c43', 'en', 1, 'https://ror.org/02xrb7c43 State Key Laboratory of Advanced Design and Manufacturing of Automobile Body ę±½č½¦č½¦čŗ«å…ˆčæ›č®¾č®”åˆ¶é€ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97446, 'https://ror.org/02xs6gm19', 'en', 1, 'https://ror.org/02xs6gm19 American Military Academy'),
(97447, 'https://ror.org/02xs6yw09', 'da', 1, 'https://ror.org/02xs6yw09 Torben and Alice Frimodts Foundation Torben og Alice Frimodts Fond'),
(97448, 'https://ror.org/02xstm723', 'en', 1, 'https://ror.org/02xstm723 HMU Potsdam – Health and Medical University Potsdam'),
(97449, 'https://ror.org/02xvkz230', 'fr', 1, 'https://ror.org/02xvkz230 Dynamique du langage in situ'),
(97450, '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'),
(97451, 'https://ror.org/02xza3v49', 'en', 1, 'https://ror.org/02xza3v49 Texas Neurofibromatosis Foundation'),
(97452, 'https://ror.org/02y0cs367', 'en', 1, 'https://ror.org/02y0cs367 Family Planning NSW'),
(97453, 'https://ror.org/02y0vze35', 'no_lang_code', 1, 'https://ror.org/02y0vze35 Xiyuan Hospital äø­å›½äø­åŒ»ē§‘å­¦é™¢č„æč‹‘åŒ»é™¢'),
(97454, 'https://ror.org/02y1g7e04', 'en', 1, 'https://ror.org/02y1g7e04 Government Polytechnic, Chhatrapati Sambhaji Nagar ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤Øą¤æą¤•ą„‡ą¤¤ą¤Ø,ą¤›ą¤¤ą„ą¤°ą¤Ŗą¤¤ą„€ ą¤øą¤‚ą¤­ą¤¾ą¤œą„€ą¤Øą¤—ą¤°'),
(97455, 'https://ror.org/02y3tc479', 'no_lang_code', 1, 'https://ror.org/02y3tc479 Salvat (Spain)'),
(97456, 'https://ror.org/02y5rmj89', 'no_lang_code', 1, 'https://ror.org/02y5rmj89 Xuzhou Construction Machinery Group (China) 徐巄集团'),
(97457, 'https://ror.org/02y5sbr94', 'en', 1, 'https://ror.org/02y5sbr94 CAB International'),
(97458, 'https://ror.org/02y6dp041', 'en', 1, 'https://ror.org/02y6dp041 Office of Electricity'),
(97459, 'https://ror.org/02y7bdg71', 'en', 1, 'https://ror.org/02y7bdg71 Lymphoma Research Foundation'),
(97460, 'https://ror.org/02y7zaj23', 'pt', 1, 'https://ror.org/02y7zaj23 Instituto Federal de Educação, Ciência e Tecnologia de Pernambuco Pernambuco Federal Institute'),
(97461, 'https://ror.org/02y9asx23', 'en', 1, 'https://ror.org/02y9asx23 International Isocyanate Institute, Inc.'),
(97462, 'https://ror.org/02yh6j310', 'en', 1, 'https://ror.org/02yh6j310 Norwegian Board of Technology TeknologirƄdet'),
(97463, 'https://ror.org/02yjhrp74', 'en', 1, 'https://ror.org/02yjhrp74 State Key Laboratory of Plant Physiology and Biochemistry ę¤ē‰©ē”Ÿē†å­¦äøŽē”Ÿē‰©åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97464, 'https://ror.org/02yjyfs84', 'en', 1, 'https://ror.org/02yjyfs84 Max Planck Institute for Neurobiology of Behavior – caesar'),
(97465, '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'),
(97466, 'https://ror.org/02yqfcy50', 'es', 1, 'https://ror.org/02yqfcy50 Asociación de Estudios Históricos de Tacna'),
(97467, 'https://ror.org/02yqt1d54', 'ro', 1, 'https://ror.org/02yqt1d54 Institutul Naţional de Cercetare-Dezvoltare pentru Securitate Minieră şi Protecţie Antiexplozivă - INSEMEX'),
(97468, 'https://ror.org/02yryhg49', 'en', 1, 'https://ror.org/02yryhg49 Geophysical Detection of Nuclear Proliferation'),
(97469, 'https://ror.org/02ys41z83', 'en', 1, 'https://ror.org/02ys41z83 Shanghai Synchrotron Radiation Facility äøŠęµ·åŒę­„č¾å°„å…‰ęŗ'),
(97470, 'https://ror.org/02ysayy16', 'ca', 1, 'https://ror.org/02ysayy16 Institut d''Investigacions BiomĆØdiques de Barcelona Instituto de Investigaciones Biomedicas de Barcelona'),
(97471, 'https://ror.org/02ysgg478', 'en', 1, 'https://ror.org/02ysgg478 Berlin State Library Staatsbibliothek zu Berlin'),
(97472, 'https://ror.org/02ysx7m49', 'tr', 0, 'https://ror.org/02ysx7m49 Kalkinma Bakanliği Ministry of Development (Turkey)'),
(97473, 'https://ror.org/02ytd8525', 'en', 1, 'https://ror.org/02ytd8525 Missouri Foundation for Health'),
(97474, 'https://ror.org/02yvdat18', 'en', 1, 'https://ror.org/02yvdat18 Neuroendocrine, Endocrine and Germinal Differentiation Communication'),
(97475, 'https://ror.org/02ywpz459', 'en', 1, 'https://ror.org/02ywpz459 State Key Laboratory of Coal Resources and Safe Mining ē…¤ē‚­čµ„ęŗäøŽå®‰å…Øå¼€é‡‡å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97476, 'https://ror.org/02ywy0q33', 'en', 1, 'https://ror.org/02ywy0q33 Academy of Pharmaceutical Sciences'),
(97477, 'https://ror.org/02yy8x990', 'en', 1, 'https://ror.org/02yy8x990 Ruotsin maatalousyliopisto Sveriges lantbruksuniversitet Swedish University of Agricultural Sciences'),
(97478, 'https://ror.org/02z1qvq09', 'en', 1, 'https://ror.org/02z1qvq09 Office of Intelligence and Counterintelligence'),
(97479, 'https://ror.org/02z4yka38', 'en', 1, 'https://ror.org/02z4yka38 State Key Laboratory of Pathogenic Biology of Livestock Diseases å®¶ē•œē–«ē—…ē—…åŽŸē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97480, 'https://ror.org/02z57sg23', 'es', 1, 'https://ror.org/02z57sg23 SecretarĆ­a de la Defensa Nacional'),
(97481, 'https://ror.org/02z7b8p30', 'en', 1, 'https://ror.org/02z7b8p30 State Key Laboratory of Nano-Fabrication and Micro-Fabrication å¾®ē»†åŠ å·„å…‰å­¦ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97482, 'https://ror.org/02z81jf86', 'en', 1, 'https://ror.org/02z81jf86 Akhmet Baitursynuly Kostanay Regional University Ахмет Байтұрсынұлы атынГағы ŅšŠ¾ŃŃ‚Š°Š½Š°Š¹ өңірлік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ахмет Байтұрсынұлы'),
(97483, 'https://ror.org/02z87sy46', 'fr', 1, 'https://ror.org/02z87sy46 Institut SupƩrieur des Beaux Arts de BesanƧon'),
(97484, 'https://ror.org/02z899n24', 'no_lang_code', 1, 'https://ror.org/02z899n24 Novartis Gene Therapies Switzerland GmbH'),
(97485, 'https://ror.org/02z8bdw71', 'en', 1, 'https://ror.org/02z8bdw71 AMBIS vysokÔ Ŕkola, a.s. College of Regional Development and Banking Institute - AMBIS'),
(97486, 'https://ror.org/02zap0h66', 'fr', 1, 'https://ror.org/02zap0h66 Centre intégré de santé et de services sociaux de Lanaudière'),
(97487, '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'),
(97488, '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'),
(97489, 'https://ror.org/02zhbhm03', 'pt', 1, 'https://ror.org/02zhbhm03 Centro Latino-Americano de Estudos em Cultura'),
(97490, 'https://ror.org/02zhe7k92', 'en', 1, 'https://ror.org/02zhe7k92 Pershing Square Sohn Cancer Research Alliance'),
(97491, 'https://ror.org/02zjp8848', 'en', 1, 'https://ror.org/02zjp8848 Lesya Ukrainka Volyn National University Š’Š¾Š»ŠøŠ½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Лесі Українки Волынский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Леси Украинки'),
(97492, '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'),
(97493, 'https://ror.org/02zn90974', 'fr', 1, 'https://ror.org/02zn90974 Groupe de recherche clinique en anesthƩsie rƩanimation mƩdecine pƩriopƩratoire'),
(97494, 'https://ror.org/02zpvhb36', 'es', 1, 'https://ror.org/02zpvhb36 Universidad Tecnológica de Jalisco'),
(97495, 'https://ror.org/02zr5p933', 'en', 1, 'https://ror.org/02zr5p933 Karaganda State Industrial University ŠšŠ°Ń€Š°Š³Š°Š½Š“ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(97496, 'https://ror.org/02zrmae98', 'no_lang_code', 1, 'https://ror.org/02zrmae98 China Guodian Corporation (China) äø­å›½å›½ē”µé›†å›¢å…¬åø'),
(97497, 'https://ror.org/02zs3hb12', 'en', 1, 'https://ror.org/02zs3hb12 Institute for Bioscience and Biotechnology Research'),
(97498, 'https://ror.org/02zteat75', 'en', 1, 'https://ror.org/02zteat75 Federal Government of Nigeria'),
(97499, 'https://ror.org/02zv3kp89', 'de', 1, 'https://ror.org/02zv3kp89 Ministerium für Umwelt, Landwirtschaft und Energie des Landes Sachsen-Anhalt'),
(97500, 'https://ror.org/02zwf7d57', 'fr', 0, 'https://ror.org/02zwf7d57 Neuropsychologie Cognitive et Physiopathologie de la SchizophrƩnie'),
(97501, 'https://ror.org/02zwg8g81', 'en', 1, 'https://ror.org/02zwg8g81 State Key Laboratory of Visual and Auditory Information Processing č§†č§‰äøŽå¬č§‰äæ”ęÆå¤„ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97502, 'https://ror.org/02zyw2q61', 'es', 1, 'https://ror.org/02zyw2q61 Escuela Superior PolitƩcnica del Chimborazo'),
(97503, 'https://ror.org/02zzf0m94', 'fr', 1, 'https://ror.org/02zzf0m94 Centre de linguistique en Sorbonne Sorbonne Centre for Linguistics'),
(97504, 'https://ror.org/0300g2m85', 'en', 1, 'https://ror.org/0300g2m85 NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber'),
(97505, 'https://ror.org/0301ftq25', 'es', 1, 'https://ror.org/0301ftq25 Instituto Municipal de Gestión Medioambiental'),
(97506, 'https://ror.org/0301gv806', 'id', 1, 'https://ror.org/0301gv806 Balai Besar Pengujian Standar Instrumen Mekanisasi Pertanian Indonesian Center for Agricultural Mechanization Standard Testing'),
(97507, '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'),
(97508, 'https://ror.org/0303gny42', 'en', 1, 'https://ror.org/0303gny42 State Key Laboratory of Nuclear Detection and Nuclear Electronics ę øęŽ¢ęµ‹äøŽę øē”µå­å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97509, 'https://ror.org/0306aeb62', 'en', 1, 'https://ror.org/0306aeb62 SUNY Brockport'),
(97510, 'https://ror.org/03078mv10', 'fr', 1, 'https://ror.org/03078mv10 Centre Universitaire Jean-FranƧois-Champollion National University Institute Jean-Francois Champollion'),
(97511, 'https://ror.org/0307bxz06', 'no_lang_code', 1, 'https://ror.org/0307bxz06 Toyota Group (Japan) ćƒˆćƒØć‚æć‚°ćƒ«ćƒ¼ćƒ—'),
(97512, 'https://ror.org/0307c8498', 'en', 1, 'https://ror.org/0307c8498 Science and Decisions Center'),
(97513, 'https://ror.org/0307crw42', 'en', 1, 'https://ror.org/0307crw42 Albany Medical Center Hospital, Albany Medical College'),
(97514, 'https://ror.org/0308wzx30', 'en', 1, 'https://ror.org/0308wzx30 State Key Laboratory of Molecular Biology åˆ†å­ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97515, 'https://ror.org/030c92375', 'en', 0, 'https://ror.org/030c92375 Department of Agriculture, Water and the Environment'),
(97516, 'https://ror.org/030d6wr93', 'fr', 1, 'https://ror.org/030d6wr93 Laboratoire d''innovation molƩculaire et applications'),
(97517, 'https://ror.org/030emg558', 'en', 1, 'https://ror.org/030emg558 Amputee Coalition of America'),
(97518, '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'),
(97519, 'https://ror.org/030gd0911', 'en', 0, 'https://ror.org/030gd0911 AIDIMA - Instituto Tecnológico del Mueble AIDIMA Technology Institute'),
(97520, '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'),
(97521, 'https://ror.org/030jvtg87', 'en', 1, 'https://ror.org/030jvtg87 Mike and Josie Harper Cancer Research Institute'),
(97522, 'https://ror.org/030mz2444', 'pl', 1, 'https://ror.org/030mz2444 University of the National Education Commission, Krakow Uniwersytet Komisji Edukacji Narodowej w Krakowie'),
(97523, 'https://ror.org/030p0rb34', 'en', 1, 'https://ror.org/030p0rb34 Andrology Gerontechnology Inflammation Modelisation'),
(97524, 'https://ror.org/030pnaq74', 'en', 1, 'https://ror.org/030pnaq74 Open Library Foundation'),
(97525, 'https://ror.org/030sa3819', 'en', 1, 'https://ror.org/030sa3819 State of California'),
(97526, 'https://ror.org/030sykb84', 'en', 1, 'https://ror.org/030sykb84 People''s Hospital of Wangcheng District Changsha é•æę²™åø‚ęœ›åŸŽåŒŗäŗŗę°‘åŒ»é™¢'),
(97527, 'https://ror.org/030tc8e27', 'es', 1, 'https://ror.org/030tc8e27 Universidad Estatal de Estudios Pedagógicos'),
(97528, 'https://ror.org/030vmwa78', 'en', 1, 'https://ror.org/030vmwa78 Institute of Geology and Geophysics äø­å›½ē§‘å­¦é™¢åœ°č“ØäøŽåœ°ēƒē‰©ē†ē ”ē©¶ę‰€'),
(97529, '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'),
(97530, 'https://ror.org/030x2rk64', 'en', 1, 'https://ror.org/030x2rk64 United States Virgin Islands Department of Health'),
(97531, 'https://ror.org/030ykm618', 'en', 1, 'https://ror.org/030ykm618 Lobular Breast Cancer Alliance'),
(97532, 'https://ror.org/030ym6p85', 'fr', 0, 'https://ror.org/030ym6p85 Laboratoire de Physique ThĆ©orique d’Orsay Laboratory of Theoretical Physics'),
(97533, 'https://ror.org/030yxvx82', 'en', 1, 'https://ror.org/030yxvx82 International Society of Hypertension'),
(97534, 'https://ror.org/03102fn17', 'en', 1, 'https://ror.org/03102fn17 British Oceanographic Data Centre'),
(97535, 'https://ror.org/0311ezn83', 'en', 1, 'https://ror.org/0311ezn83 State Key Laboratory of Virus Genetic Engineering ē—…ęÆ’åŸŗå› å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97536, 'https://ror.org/03131x321', 'es', 1, 'https://ror.org/03131x321 Ayuntamiento de Bilbao Bilbao Council Bilboko Udala'),
(97537, 'https://ror.org/031382m70', 'en', 1, 'https://ror.org/031382m70 Royal Hobart Hospital'),
(97538, 'https://ror.org/0313ftn24', 'en', 1, 'https://ror.org/0313ftn24 Nickan Research Institute'),
(97539, 'https://ror.org/0313ta617', 'fr', 1, 'https://ror.org/0313ta617 Fonds National de la Recherche et de L''Innovation pour le DƩveloppement'),
(97540, 'https://ror.org/031689s30', 'en', 1, 'https://ror.org/031689s30 Adult Congenital Heart Association'),
(97541, 'https://ror.org/0317dzj93', 'en', 1, 'https://ror.org/0317dzj93 Tisch Cancer Institute'),
(97542, 'https://ror.org/031ah7413', 'fr', 1, 'https://ror.org/031ah7413 Astrophysique Relativiste, ThƩories, ExpƩriences, MƩtrologie, Instrumentation, Signaux'),
(97543, 'https://ror.org/031b7p356', 'cs', 1, 'https://ror.org/031b7p356 Alzheimer Nadačnƭ Fond Czech Alzheimer''s Foundation'),
(97544, 'https://ror.org/031g3zk62', 'en', 1, 'https://ror.org/031g3zk62 State Key Laboratory of Advanced Materials for Smart Sensing ę™ŗčƒ½ä¼ ę„ŸåŠŸčƒ½ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97545, 'https://ror.org/031gdae85', 'en', 1, 'https://ror.org/031gdae85 Kungliga Krigsvetenskapsakademien The Royal Swedish Academy of War Sciences'),
(97546, 'https://ror.org/031gjxb79', 'en', 1, 'https://ror.org/031gjxb79 Det Kongelige Akademi Royal Danish Academy – Architecture, Design, Conservation'),
(97547, 'https://ror.org/031gsxa15', 'en', 1, 'https://ror.org/031gsxa15 OASIS International Hospital åŒ—äŗ¬ę˜Žå¾·åŒ»é™¢'),
(97548, 'https://ror.org/031jcsp55', 'en', 1, 'https://ror.org/031jcsp55 Czech Aerospace Research Centre Výzkumný a zkuŔební letecký ústav, a. s.'),
(97549, 'https://ror.org/031jjng67', 'id', 1, 'https://ror.org/031jjng67 Universitas Borneo Tarakan'),
(97550, 'https://ror.org/031jrmw28', 'en', 1, 'https://ror.org/031jrmw28 State Enterprise ā€œDnipropetrovsk Regional State Research and Technical Center for Standardization, Metrology and Certificationā€ Державне піГприємство Ā«Š”Š½Ń–ŠæŃ€Š¾ŠæŠµŃ‚Ń€Š¾Š²ŃŃŒŠŗŠøŠ¹ Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Гержавний науково-технічний центр станГартизації, метрології та сертифікації»'),
(97551, 'https://ror.org/031mgma31', 'en', 1, 'https://ror.org/031mgma31 Laserlab Europe'),
(97552, 'https://ror.org/031mgyp05', 'en', 1, 'https://ror.org/031mgyp05 Office of Integrated Waste Management'),
(97553, 'https://ror.org/031p4kj21', 'en', 1, 'https://ror.org/031p4kj21 Bristol Royal Infirmary'),
(97554, 'https://ror.org/031rekg67', 'en', 1, 'https://ror.org/031rekg67 Swinburne University of Technology'),
(97555, 'https://ror.org/031sj3f42', 'en', 1, 'https://ror.org/031sj3f42 Ann''s Place'),
(97556, 'https://ror.org/031t90335', 'fr', 1, 'https://ror.org/031t90335 Flotte OcƩanographique FranƧaise French Oceanographic Fleet'),
(97557, 'https://ror.org/031tb8x29', 'en', 1, 'https://ror.org/031tb8x29 The Emerald Foundation'),
(97558, 'https://ror.org/031va9m79', 'pt', 1, 'https://ror.org/031va9m79 Federal University of AmapĆ” Universidade Federal do AmapĆ”'),
(97559, 'https://ror.org/031ve0e22', 'fr', 0, 'https://ror.org/031ve0e22 Systematics, Adaptation, Evolution SystƩmatique, adaptation, Ʃvolution'),
(97560, 'https://ror.org/031wg9z98', 'en', 1, 'https://ror.org/031wg9z98 American Research Institute of the South Caucasus'),
(97561, 'https://ror.org/031y0e568', 'es', 1, 'https://ror.org/031y0e568 Instituto de FilosofĆ­a'),
(97562, 'https://ror.org/031yh0y38', 'en', 1, 'https://ror.org/031yh0y38 Center for Integrated Nanotechnologies'),
(97563, 'https://ror.org/031yjqj32', 'fr', 1, 'https://ror.org/031yjqj32 CƩgep Saint-Jean-sur-Richelieu'),
(97564, 'https://ror.org/031z5jh56', 'en', 1, 'https://ror.org/031z5jh56 State Key Laboratory of Metal Matrix Composites é‡‘å±žåŸŗå¤åˆęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97565, 'https://ror.org/031zwx660', 'es', 1, 'https://ror.org/031zwx660 Institute of Biomedicine of Seville Instituto de Biomedicina de Sevilla'),
(97566, 'https://ror.org/03218pf76', 'en', 1, 'https://ror.org/03218pf76 Presidency University'),
(97567, 'https://ror.org/0323snh42', 'en', 1, 'https://ror.org/0323snh42 Institute for Environmental Futures'),
(97568, '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'),
(97569, 'https://ror.org/0327y7e25', 'en', 1, 'https://ror.org/0327y7e25 Institute of Materials Structure Science 物質構造科学研究所'),
(97570, 'https://ror.org/0328e2671', 'es', 1, 'https://ror.org/0328e2671 Centro Universitario Allende'),
(97571, 'https://ror.org/0328tc677', 'fr', 1, 'https://ror.org/0328tc677 Centre Interdisciplinaire de Recherche Normand en Education et Formation'),
(97572, 'https://ror.org/0329bcd18', 'it', 1, 'https://ror.org/0329bcd18 Regione Umbria Umbria Region'),
(97573, 'https://ror.org/0329fj191', 'fr', 1, 'https://ror.org/0329fj191 Conseil dƩpartemental de l''Essonne'),
(97574, 'https://ror.org/032a28f65', 'en', 1, 'https://ror.org/032a28f65 European Research Center for Information Systems'),
(97575, 'https://ror.org/032aw4s87', 'en', 1, 'https://ror.org/032aw4s87 Swiss UMEF'),
(97576, 'https://ror.org/032cnwa40', 'fr', 1, 'https://ror.org/032cnwa40 Institut de Recherches en Didactiques et Ɖducation de l’UNamur'),
(97577, 'https://ror.org/032d0e990', 'en', 1, 'https://ror.org/032d0e990 Indian Institute of Science Education and Research, Tirupati'),
(97578, 'https://ror.org/032dr6n38', 'fr', 1, 'https://ror.org/032dr6n38 UniversitƩ MƩditerranƩenne Libre de Tunis'),
(97579, 'https://ror.org/032efk559', 'en', 1, 'https://ror.org/032efk559 State Key Laboratory of Co-mining of Coal and Coal-Bed Methane ē…¤äøŽē…¤å±‚ę°”å…±é‡‡å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97580, 'https://ror.org/032egq013', 'ca', 1, 'https://ror.org/032egq013 Fundació Jesuïtes Educació Fundación de Educación Jesuíta Jesuit Education Foundation'),
(97581, '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'),
(97582, 'https://ror.org/032hx4q18', 'no_lang_code', 1, 'https://ror.org/032hx4q18 Dow Chemical (United States)'),
(97583, 'https://ror.org/032jk8892', 'en', 1, 'https://ror.org/032jk8892 SASTRA University ą®šą®£ąÆą®®ąÆą®•ą®¾ ą®•ą®²ąÆˆ, ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ, ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®®ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ அகாதமி'),
(97584, 'https://ror.org/032mthd30', 'en', 0, 'https://ror.org/032mthd30 Association for Research and Industrial Development of Natural Resources'),
(97585, 'https://ror.org/032mx9b27', 'en', 1, 'https://ror.org/032mx9b27 The Greater Harlem Chamber of Commerce'),
(97586, 'https://ror.org/032nytr91', 'en', 1, 'https://ror.org/032nytr91 State Key Laboratory of Multiphase Complex Systems å¤šē›øå¤ę‚ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97587, 'https://ror.org/032p70522', 'en', 1, 'https://ror.org/032p70522 State Key Laboratory of Medicinal Chemical Biology čÆē‰©åŒ–å­¦ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97588, 'https://ror.org/032q0qd45', 'fr', 1, 'https://ror.org/032q0qd45 La FƩmis'),
(97589, 'https://ror.org/032qgrc76', 'en', 1, 'https://ror.org/032qgrc76 State University of New York at Potsdam'),
(97590, 'https://ror.org/032v7rj83', 'en', 1, 'https://ror.org/032v7rj83 Robotiker'),
(97591, 'https://ror.org/032vsjs50', 'en', 1, 'https://ror.org/032vsjs50 Mitsui Sumitomo Insurance Welfare Foundation'),
(97592, 'https://ror.org/032w6q449', 'fr', 1, 'https://ror.org/032w6q449 Laboratoire MatiĆØre et SystĆØmes Complexes'),
(97593, 'https://ror.org/032wfpw70', 'no_lang_code', 1, 'https://ror.org/032wfpw70 LIDSEN Publishing Inc. (United States)'),
(97594, 'https://ror.org/032xmxh33', 'en', 0, 'https://ror.org/032xmxh33 Harry Diamond Laboratories'),
(97595, 'https://ror.org/03308db07', 'en', 1, 'https://ror.org/03308db07 BT Research'),
(97596, 'https://ror.org/0330h6m67', 'pt', 1, 'https://ror.org/0330h6m67 Casa de Hiram'),
(97597, 'https://ror.org/0332cwe55', 'pt', 1, 'https://ror.org/0332cwe55 Academia Itapecuruense de CiĆŖncias, Letras e Artes'),
(97598, 'https://ror.org/0336w4p56', 'fr', 1, 'https://ror.org/0336w4p56 UniversitƩ numƩrique Cheikh Hamidou KANE'),
(97599, 'https://ror.org/0336zpb09', 'en', 1, 'https://ror.org/0336zpb09 The Liverpool Blue Coat School'),
(97600, 'https://ror.org/033911096', 'no_lang_code', 1, 'https://ror.org/033911096 Eli Lilly (Spain)'),
(97601, 'https://ror.org/033cvvt68', 'en', 1, 'https://ror.org/033cvvt68 Kazakh National Agrarian Research University ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ аграрный ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŅšŠ°Š·Š°Ņ› ұлттық аграрлық Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(97602, 'https://ror.org/033d34573', 'en', 1, 'https://ror.org/033d34573 John Wesley Powell Center for Analysis and Synthesis'),
(97603, 'https://ror.org/033d95m27', 'fr', 1, 'https://ror.org/033d95m27 Centre d''Ʃtudes sur la sƩcuritƩ internationale et les coopƩrations europƩennes'),
(97604, 'https://ror.org/033dfsn42', 'en', 1, 'https://ror.org/033dfsn42 Institute of Software 中国科学院软件研究所'),
(97605, 'https://ror.org/033fqnp11', 'en', 1, 'https://ror.org/033fqnp11 Ankara Bilkent City Hospital Ankara Bilkent Şehir Hastanesi ŠŠ½ŠŗŠ°Ń€ŃŠŗŠ°Ń Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š‘Š¾Š»ŃŒŠ½ŠøŃ†Š° مستؓفى محافظة انقرة');
INSERT INTO `rors` VALUES
(97606, 'https://ror.org/033frs404', 'en', 1, 'https://ror.org/033frs404 Society for Education, Music and Psychology Research'),
(97607, 'https://ror.org/033g21894', 'no_lang_code', 1, 'https://ror.org/033g21894 CRRC (China) äø­å›½äø­č½¦č‚”ä»½ęœ‰é™å…¬åø'),
(97608, 'https://ror.org/033jerz55', 'en', 1, 'https://ror.org/033jerz55 American University of Iraq Baghdad الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في ŲØŲŗŲÆŲ§ŲÆ'),
(97609, 'https://ror.org/033jmdj81', 'en', 1, 'https://ror.org/033jmdj81 Solar Energy Technologies Office'),
(97610, 'https://ror.org/033jnv181', 'en', 1, 'https://ror.org/033jnv181 United States Department of Health and Human Services'),
(97611, 'https://ror.org/033km2469', 'en', 1, 'https://ror.org/033km2469 Massachusetts Life Sciences Center'),
(97612, 'https://ror.org/033qpss18', 'it', 1, 'https://ror.org/033qpss18 IRCCS Istituto Auxologico Italiano Italian Institute for Auxology'),
(97613, 'https://ror.org/033svsm10', 'en', 1, 'https://ror.org/033svsm10 Cancer Research UK Manchester Centre'),
(97614, 'https://ror.org/033vc6k10', 'en', 1, 'https://ror.org/033vc6k10 Neurological Institute of Thailand ąøŖąø–ąø²ąøšąø±ąø™ąø›ąø£ąø°ąøŖąø²ąø—ąø§ąø“ąø—ąø¢ąø²'),
(97615, 'https://ror.org/033wxpt21', 'en', 1, 'https://ror.org/033wxpt21 Continuous Electron Beam Accelerator Facility'),
(97616, 'https://ror.org/033xgn512', 'es', 1, 'https://ror.org/033xgn512 Instituto de Investigaciones Económicas y Sociales del Sur'),
(97617, 'https://ror.org/033y4aw87', 'en', 1, 'https://ror.org/033y4aw87 Centre for Sustainable Architecture with Wood'),
(97618, 'https://ror.org/0340mea86', 'ro', 1, 'https://ror.org/0340mea86 Institutul de Chimie Macromoleculară Petru Poni Petru Poni Institute of Macromolecular Chemistry'),
(97619, 'https://ror.org/03423gs92', 'en', 1, 'https://ror.org/03423gs92 Namur Digital Institute'),
(97620, 'https://ror.org/03426vf35', 'en', 1, 'https://ror.org/03426vf35 Centro Nacional de EnergĆ­as Renovables National Renewable Energy Centre'),
(97621, 'https://ror.org/0342y5q78', 'da', 1, 'https://ror.org/0342y5q78 Greenland Institute of Natural Resources GrĆønlands Naturinstitut, Pinngortitaleriffik'),
(97622, 'https://ror.org/0342yn648', 'es', 1, 'https://ror.org/0342yn648 All World Certificación'),
(97623, 'https://ror.org/0344xsj92', 'de', 1, 'https://ror.org/0344xsj92 Promedica Foundation Promedica Stiftung'),
(97624, 'https://ror.org/0348b7w72', 'en', 1, 'https://ror.org/0348b7w72 Great Lakes Water Authority'),
(97625, 'https://ror.org/0348bpk17', 'es', 1, 'https://ror.org/0348bpk17 Federación Española de Enfermedades Raras Spanish Federation for Rare Diseases'),
(97626, 'https://ror.org/03490as77', 'pt', 1, 'https://ror.org/03490as77 Federal University of Rio de Janeiro Universidade Federal do Rio de Janeiro'),
(97627, 'https://ror.org/03493zm15', 'id', 1, 'https://ror.org/03493zm15 Universitas DIPA Makassar'),
(97628, 'https://ror.org/0349bbg69', 'en', 1, 'https://ror.org/0349bbg69 Kyoto University Institute for Chemical Research äŗ¬éƒ½å¤§å­¦åŒ–å­¦ē ”ē©¶ę‰€'),
(97629, 'https://ror.org/034a0rc87', 'en', 1, 'https://ror.org/034a0rc87 Humanities in the European Research Area'),
(97630, 'https://ror.org/034amfs97', 'en', 1, 'https://ror.org/034amfs97 University of the Virgin Islands'),
(97631, 'https://ror.org/034b53w38', 'en', 1, 'https://ror.org/034b53w38 Chinese Academy of Meteorological Sciences 中国气豔科学研究院'),
(97632, 'https://ror.org/034bena10', 'fr', 1, 'https://ror.org/034bena10 Centre d''ImmunophƩnomique'),
(97633, 'https://ror.org/034bhv918', 'en', 1, 'https://ror.org/034bhv918 Cancer Resource Center of the Finger Lakes'),
(97634, 'https://ror.org/034c5s198', 'no_lang_code', 1, 'https://ror.org/034c5s198 NG Biotech (France)'),
(97635, 'https://ror.org/034d74a71', 'pt', 1, 'https://ror.org/034d74a71 FCiências.ID - Associação para a Investigação e Desenvolvimento de Ciências'),
(97636, 'https://ror.org/034dfs572', 'en', 1, 'https://ror.org/034dfs572 Ecopath International Initiative'),
(97637, 'https://ror.org/034e92n57', 'en', 1, 'https://ror.org/034e92n57 Harbin Veterinary Research Institute äø­å›½å†œäøšē§‘å­¦é™¢å“ˆå°”ę»Øå…½åŒ»ē ”ē©¶ę‰€'),
(97638, 'https://ror.org/034feyf26', 'fr', 1, 'https://ror.org/034feyf26 Physiopathologie, autoimmunitƩ, maladies neuromusculaire et thƩrapie rƩgƩnƩratrice'),
(97639, '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'),
(97640, 'https://ror.org/034hw7m59', 'en', 1, 'https://ror.org/034hw7m59 Georgia Clinical and Translational Science Alliance'),
(97641, 'https://ror.org/034jn5z48', 'en', 1, 'https://ror.org/034jn5z48 Indira Gandhi Institute of Development Research'),
(97642, 'https://ror.org/034mn7m94', 'en', 1, 'https://ror.org/034mn7m94 Rawalpindi Women University'),
(97643, 'https://ror.org/034np8920', 'fr', 1, 'https://ror.org/034np8920 UniversitƩ de Ouahigouya'),
(97644, 'https://ror.org/034nz8723', 'en', 1, 'https://ror.org/034nz8723 Bayreuth Medical Center Klinikum Bayreuth'),
(97645, 'https://ror.org/034p80033', 'fr', 1, 'https://ror.org/034p80033 Institut Caennais de Recherche Juridique'),
(97646, 'https://ror.org/034rhks82', 'no_lang_code', 1, 'https://ror.org/034rhks82 AstraZeneca (Switzerland)'),
(97647, 'https://ror.org/034t0c490', 'en', 1, 'https://ror.org/034t0c490 Centre de recherche et de dƩveloppement de Saskatoon Saskatoon Research and Development Centre'),
(97648, 'https://ror.org/034vb5t35', 'en', 1, 'https://ror.org/034vb5t35 Royal Marsden Hospital'),
(97649, 'https://ror.org/034vpja60', 'pt', 1, 'https://ror.org/034vpja60 Federal University of Alfenas Universidade Federal de Alfenas'),
(97650, 'https://ror.org/034waa237', 'en', 1, 'https://ror.org/034waa237 Cluster of Excellence on Plant Sciences Exzellenzcluster für Pflanzenwissenschaften'),
(97651, 'https://ror.org/034x1af55', 'en', 0, 'https://ror.org/034x1af55 University of Nordland'),
(97652, 'https://ror.org/0353fey10', 'en', 1, 'https://ror.org/0353fey10 Institute of Gastroenterology of the National Academy of Medical Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гастроентерології ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України'),
(97653, 'https://ror.org/0353n6963', 'pt', 1, 'https://ror.org/0353n6963 Hospital SĆ£o Lucas da PUCRS'),
(97654, 'https://ror.org/0355ahf06', 'nl', 1, 'https://ror.org/0355ahf06 Rijkswaterstaat'),
(97655, 'https://ror.org/0356cst02', 'en', 1, 'https://ror.org/0356cst02 Guangzhou Institute of Geochemistry äø­å›½ē§‘å­¦é™¢å¹æå·žåœ°ēƒåŒ–å­¦ē ”ē©¶ę‰€'),
(97656, 'https://ror.org/0358r4163', 'en', 1, 'https://ror.org/0358r4163 Bentham-Moxon Trust'),
(97657, 'https://ror.org/035914451', 'es', 1, 'https://ror.org/035914451 Centro Tecnológico Agroalimentario de Extremadura Extremadura Agricultural and Food Technological Centre'),
(97658, 'https://ror.org/035927h47', 'es', 1, 'https://ror.org/035927h47 El Colegio de Morelos'),
(97659, 'https://ror.org/035cj2961', 'en', 1, 'https://ror.org/035cj2961 National Ignition Facility'),
(97660, 'https://ror.org/035epx642', 'es', 1, 'https://ror.org/035epx642 San Damaso Ecclesiastical University Universidad EclesiƔstica San DƔmaso'),
(97661, 'https://ror.org/035fxjt55', 'en', 1, 'https://ror.org/035fxjt55 Office of Enterprise Assessments'),
(97662, 'https://ror.org/035gna214', 'en', 1, 'https://ror.org/035gna214 Nova Scotia Health Authority'),
(97663, 'https://ror.org/035gt5s03', 'no_lang_code', 1, 'https://ror.org/035gt5s03 Broadcom (United States)'),
(97664, 'https://ror.org/035jpr562', 'en', 1, 'https://ror.org/035jpr562 National Geospatial Program'),
(97665, 'https://ror.org/035m6g344', 'en', 1, 'https://ror.org/035m6g344 Office of High Energy Physics'),
(97666, 'https://ror.org/035mqrn57', 'fr', 1, 'https://ror.org/035mqrn57 Center for the Sociology of Organizations Centre de Sociologie des Organisations'),
(97667, 'https://ror.org/035nzyk88', 'en', 1, 'https://ror.org/035nzyk88 Hope Center for Neurological Disorders'),
(97668, 'https://ror.org/035qedt02', 'it', 1, 'https://ror.org/035qedt02 Ministero dei Beni e delle AttivitĆ  Culturali e del Turismo, Ministero della cultura'),
(97669, 'https://ror.org/035qf0p33', 'pl', 1, 'https://ror.org/035qf0p33 Akademia Łomżyńska University of Lomza'),
(97670, 'https://ror.org/035sc8895', 'en', 1, 'https://ror.org/035sc8895 Office of State and Community Energy Programs'),
(97671, 'https://ror.org/035sts487', 'en', 1, 'https://ror.org/035sts487 Charles Harwood Memorial Hospital'),
(97672, 'https://ror.org/035xqz322', 'en', 1, 'https://ror.org/035xqz322 Center for Functional Nanomaterials'),
(97673, 'https://ror.org/035z18f46', 'en', 1, 'https://ror.org/035z18f46 State Key Laboratory of Quantum Optics and Quantum Optics Devices é‡å­å…‰å­¦äøŽå…‰é‡å­å™Øä»¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97674, 'https://ror.org/035zrb927', 'en', 1, 'https://ror.org/035zrb927 Georgetown Lombardi Comprehensive Cancer Center'),
(97675, 'https://ror.org/0360dkv71', 'en', 1, 'https://ror.org/0360dkv71 Chinese Academy of Forestry äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(97676, 'https://ror.org/0363axb98', 'es', 1, 'https://ror.org/0363axb98 Universidad Tecnológica de La Paz'),
(97677, 'https://ror.org/0364rd617', 'es', 1, 'https://ror.org/0364rd617 Instituto Sindical de Trabajo Ambiente y Salud'),
(97678, 'https://ror.org/036554539', 'en', 1, 'https://ror.org/036554539 UAB Medicine'),
(97679, 'https://ror.org/0365gvr66', 'en', 1, 'https://ror.org/0365gvr66 Office of Emergency Operations'),
(97680, 'https://ror.org/03660jn93', 'en', 1, 'https://ror.org/03660jn93 Mayo Clinic Hospital'),
(97681, 'https://ror.org/0366b1491', 'en', 1, 'https://ror.org/0366b1491 Metabolism and Renal Physiology MƩtabolisme et Physiologie RƩnale'),
(97682, 'https://ror.org/0366c6s65', 'en', 1, 'https://ror.org/0366c6s65 Institute of Rock and Soil Mechanics äø­å›½ē§‘å­¦é™¢ę­¦ę±‰å²©åœŸåŠ›å­¦ē ”ē©¶ę‰€'),
(97683, 'https://ror.org/0366d2847', 'pt', 1, 'https://ror.org/0366d2847 Federal University of Mato Grosso do Sul Universidade Federal de Mato Grosso do Sul'),
(97684, 'https://ror.org/0366nbj88', 'eu', 1, 'https://ror.org/0366nbj88 Bizkaiko Foru Aldundia Diputación Foral de Vizcaya'),
(97685, 'https://ror.org/0366raz47', 'en', 1, 'https://ror.org/0366raz47 Naval Research Laboratory Remote Sensing Division'),
(97686, 'https://ror.org/0366spj33', 'ca', 1, 'https://ror.org/0366spj33 Fundacio Privada Universitat I Tecnologia'),
(97687, 'https://ror.org/0367eej18', 'en', 1, 'https://ror.org/0367eej18 State Key Laboratory of Mechanical Manufacturing System Engineering ęœŗę¢°åˆ¶é€ ē³»ē»Ÿå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97688, 'https://ror.org/0367py538', 'en', 1, 'https://ror.org/0367py538 White Rose College of the Arts and Humanities'),
(97689, 'https://ror.org/0367ybf51', 'no_lang_code', 0, 'https://ror.org/0367ybf51 Orbital Sciences (United States)'),
(97690, 'https://ror.org/036ccg086', 'en', 0, 'https://ror.org/036ccg086 Department of Agriculture and Water Resources'),
(97691, 'https://ror.org/036dgtc48', 'id', 1, 'https://ror.org/036dgtc48 Universitas Hang Tuah Pekanbaru'),
(97692, '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'),
(97693, 'https://ror.org/036f2ks50', 'pt', 1, 'https://ror.org/036f2ks50 Ciências e Cognição'),
(97694, 'https://ror.org/036g3b009', 'en', 1, 'https://ror.org/036g3b009 NERC Environmental Omics Facility'),
(97695, 'https://ror.org/036hxbg71', 'en', 1, 'https://ror.org/036hxbg71 American Burn Association'),
(97696, 'https://ror.org/036j0y719', 'fr', 1, 'https://ror.org/036j0y719 Laboratoire Angevin de Recherche en MathƩmatiques'),
(97697, 'https://ror.org/036k0fg31', 'en', 1, 'https://ror.org/036k0fg31 Usti Region Ústecký kraj'),
(97698, 'https://ror.org/036mbz113', 'en', 1, 'https://ror.org/036mbz113 Eastern Institute of Technology, Ningbo å®ę³¢äøœę–¹ē†å·„å¤§å­¦'),
(97699, 'https://ror.org/036mqp197', 'en', 1, 'https://ror.org/036mqp197 Council for Higher Education המועצה להשכלה גבוהה مجلس Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ'),
(97700, 'https://ror.org/036qb3a23', 'en', 1, 'https://ror.org/036qb3a23 Europe Regional Chapter of the International Society of Exposure Science'),
(97701, 'https://ror.org/036qrqq32', 'en', 1, 'https://ror.org/036qrqq32 ARS University'),
(97702, 'https://ror.org/036s6ct29', 'en', 1, 'https://ror.org/036s6ct29 Motor Accident Insurance Commission'),
(97703, 'https://ror.org/036smcz74', 'en', 1, 'https://ror.org/036smcz74 Vinzenz Pallotti University'),
(97704, 'https://ror.org/036ttjw44', 'ca', 1, 'https://ror.org/036ttjw44 Museo Nacional de Arte de CataluƱa Museu Nacional d''Art de Catalunya'),
(97705, 'https://ror.org/036wkjd70', 'no_lang_code', 1, 'https://ror.org/036wkjd70 ZOLL Medical Corporation ZOLL Medical Corporation (United States)'),
(97706, 'https://ror.org/036wvzt09', 'en', 1, 'https://ror.org/036wvzt09 Agency for Science, Technology and Research ę–°åŠ å”ē§‘ęŠ€ē ”ē©¶å±€'),
(97707, 'https://ror.org/036wxwe09', 'es', 1, 'https://ror.org/036wxwe09 Escuela Normal de Jilotepec'),
(97708, 'https://ror.org/036xfaa94', 'en', 1, 'https://ror.org/036xfaa94 State Key Laboratory of Herbage Improvement and Grassland Agro-ecosystems č‰ē§åˆ›ę–°äøŽč‰åœ°å†œäøšē”Ÿę€ē³»ē»Ÿå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(97709, 'https://ror.org/036xsg644', 'en', 1, 'https://ror.org/036xsg644 Hung Vuong University TrĘ°į»ng ĐẔi hį»c Hùng Vʰʔng'),
(97710, 'https://ror.org/036xwe059', 'de', 1, 'https://ror.org/036xwe059 Ministerium für Landwirtschaft und Verbraucherschutz des Landes Nordrhein-Westfalen'),
(97711, 'https://ror.org/0370sk906', 'es', 1, 'https://ror.org/0370sk906 Escuela de Estudios Ɓrabes School of Arabic Studies'),
(97712, 'https://ror.org/0371gg960', 'en', 1, 'https://ror.org/0371gg960 Purdue University Institute for Cancer Research'),
(97713, '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'),
(97714, 'https://ror.org/0372q6t83', 'az', 1, 'https://ror.org/0372q6t83 Elmin Inkişafı Fondu Science Development Foundation'),
(97715, 'https://ror.org/0375b8f90', 'fr', 1, 'https://ror.org/0375b8f90 Centre d''Immunologie et des Maladies Infectieuses Centre of Immunology and Microbial Infections'),
(97716, 'https://ror.org/0377qcz53', 'no_lang_code', 1, 'https://ror.org/0377qcz53 Ayatollah Boroujerdi University دانؓگاه آیت الله Ų§Ł„Ų¹ŲøŁ…ŪŒ بروجردی'),
(97717, 'https://ror.org/037897814', 'en', 1, 'https://ror.org/037897814 Office of Fossil Energy and Carbon Management'),
(97718, 'https://ror.org/0378v2g76', 'en', 1, 'https://ror.org/0378v2g76 National Research Center for Applied Cybersecurity ATHENE Nationales Forschungszentrum für angewandte Cybersicherheit ATHENE'),
(97719, 'https://ror.org/03792qf33', 'en', 1, 'https://ror.org/03792qf33 Chinese Academy of Agricultural Mechanization Sciences äø­å›½å†œäøšęœŗę¢°åŒ–ē§‘å­¦ē ”ē©¶é™¢'),
(97720, 'https://ror.org/0379xnz71', 'pt', 1, 'https://ror.org/0379xnz71 Hospital UniversitƔrio AntƓnio Pedro'),
(97721, 'https://ror.org/0379ysz10', 'en', 1, 'https://ror.org/0379ysz10 CCT College Dublin'),
(97722, 'https://ror.org/037am2x18', 'en', 1, 'https://ror.org/037am2x18 State Key Laboratory of Water Resources and Hydropower Engineering Science ę°“čµ„ęŗäøŽę°“ē”µå·„ēØ‹ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97723, 'https://ror.org/037d55q12', 'en', 1, 'https://ror.org/037d55q12 United Nations Children''s Fund Ecuador'),
(97724, 'https://ror.org/037dt7852', 'en', 1, 'https://ror.org/037dt7852 AGE-WELL'),
(97725, 'https://ror.org/037eda396', 'fr', 1, 'https://ror.org/037eda396 PatriNat'),
(97726, 'https://ror.org/037gty358', 'es', 1, 'https://ror.org/037gty358 Metropolitan University Universidad Metropolitana'),
(97727, 'https://ror.org/037n5ae88', 'es', 1, 'https://ror.org/037n5ae88 Hospital General Universitario Reina SofĆ­a Hospital Reina SofĆ­a de Murcia'),
(97728, 'https://ror.org/037p24858', 'en', 1, 'https://ror.org/037p24858 The First Affiliated Hospital, Sun Yat-sen University äø­å±±å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(97729, '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'),
(97730, 'https://ror.org/037ptrs19', 'fr', 1, 'https://ror.org/037ptrs19 Ɖtude et Ɖdition de Textes MĆ©diĆ©vaux'),
(97731, '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Ʃ'),
(97732, 'https://ror.org/037t6sq87', 'no_lang_code', 1, 'https://ror.org/037t6sq87 Alpenglow Instruments (United States)'),
(97733, 'https://ror.org/037tt6b65', 'de', 1, 'https://ror.org/037tt6b65 Cusanus Institut Cusanus Institute'),
(97734, 'https://ror.org/037zh7469', 'es', 1, 'https://ror.org/037zh7469 Departamento Universitario Obrero Campesino'),
(97735, 'https://ror.org/0380k9k47', 'no_lang_code', 1, 'https://ror.org/0380k9k47 Genopole (France)'),
(97736, 'https://ror.org/0380ng272', 'en', 1, 'https://ror.org/0380ng272 State Key Laboratory of Synthetical Automation for Process Industries ęµēØ‹å·„äøšē»¼åˆč‡ŖåŠØåŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97737, 'https://ror.org/03817xr13', 'no_lang_code', 1, 'https://ror.org/03817xr13 Sabancı Holding (Turkey)'),
(97738, 'https://ror.org/038761a28', 'en', 1, 'https://ror.org/038761a28 Tamil Nadu State Council for Higher Education'),
(97739, 'https://ror.org/038792a28', 'es', 1, 'https://ror.org/038792a28 Institute of Chemical Technology Instituto de TecnologĆ­a QuĆ­mica'),
(97740, 'https://ror.org/038a1tp19', 'en', 1, 'https://ror.org/038a1tp19 Asia University äŗžę“²å¤§å­ø'),
(97741, 'https://ror.org/038a20b58', 'fr', 1, 'https://ror.org/038a20b58 Institut de MathƩmatiques de Toulon'),
(97742, 'https://ror.org/038b4c997', 'nl', 1, 'https://ror.org/038b4c997 National Health Care Institute Zorginstituut Nederland'),
(97743, 'https://ror.org/038bmak92', 'en', 1, 'https://ror.org/038bmak92 Namur Research Institute for Life Sciences'),
(97744, 'https://ror.org/038bzvr58', 'es', 1, 'https://ror.org/038bzvr58 Instituto Nacional de Seguridad y Salud en el Trabajo'),
(97745, '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í'),
(97746, 'https://ror.org/038e0dv78', 'en', 1, 'https://ror.org/038e0dv78 Trine University'),
(97747, 'https://ror.org/038esz880', 'en', 0, 'https://ror.org/038esz880 Institute of Social and Preventive Medicine'),
(97748, 'https://ror.org/038jjxj40', 'en', 1, 'https://ror.org/038jjxj40 Gobierno de EspaƱa Government of Spain'),
(97749, 'https://ror.org/038kr2d80', 'en', 1, 'https://ror.org/038kr2d80 Emory National Primate Research Center'),
(97750, 'https://ror.org/038n03236', 'en', 1, 'https://ror.org/038n03236 Idlib University Ų¬Ų§Ł…Ų¹Ų© ؄دلب'),
(97751, 'https://ror.org/038nwvj35', 'en', 1, 'https://ror.org/038nwvj35 Office of Small Business Innovation Research and Small Business Technology Transfer Programs'),
(97752, 'https://ror.org/038pwz535', 'en', 1, 'https://ror.org/038pwz535 NSW Department of Climate Change, Energy, the Environment and Water'),
(97753, 'https://ror.org/038rjvd86', 'en', 1, 'https://ror.org/038rjvd86 Department of Biological Sciences'),
(97754, 'https://ror.org/038sc5x72', 'no_lang_code', 1, 'https://ror.org/038sc5x72 Dassault SystĆØmes (France)'),
(97755, 'https://ror.org/038synb39', 'en', 1, 'https://ror.org/038synb39 Biofizikai Intézet Szegedi Biológiai Kutatóközpont Institute of Biophysics'),
(97756, 'https://ror.org/038szmr31', 'es', 1, 'https://ror.org/038szmr31 Centro de AstrobiologĆ­a'),
(97757, 'https://ror.org/038t8ze69', 'en', 1, 'https://ror.org/038t8ze69 Upper Midwest Environmental Sciences Center'),
(97758, 'https://ror.org/038taf935', 'de', 1, 'https://ror.org/038taf935 Chemisches und VeterinƤruntersuchungsamt Freiburg'),
(97759, 'https://ror.org/038tahs86', 'es', 1, 'https://ror.org/038tahs86 Consejería de Educación, Universidades, Ciencia y Portavocía'),
(97760, 'https://ror.org/038x5dh11', 'en', 1, 'https://ror.org/038x5dh11 Geologic Hazards Science Center'),
(97761, 'https://ror.org/038xqyz77', 'no_lang_code', 1, 'https://ror.org/038xqyz77 Research Space (United Kingdom)'),
(97762, 'https://ror.org/038z2eg27', 'en', 1, 'https://ror.org/038z2eg27 Universidad de Puerto Rico en Arecibo University of Puerto Rico at Arecibo'),
(97763, 'https://ror.org/0391a8v61', 'en', 1, 'https://ror.org/0391a8v61 University of Belgrade - Faculty of Civil Engineering'),
(97764, 'https://ror.org/0391pvr85', 'en', 1, 'https://ror.org/0391pvr85 Wildlife Conservation Society Vietnam'),
(97765, 'https://ror.org/0391qz193', 'es', 1, 'https://ror.org/0391qz193 Centro de Ciencias Humanas y Sociales'),
(97766, 'https://ror.org/0394bpd20', 'no_lang_code', 1, 'https://ror.org/0394bpd20 IQVIA (France)'),
(97767, 'https://ror.org/0395ngr64', 'es', 1, 'https://ror.org/0395ngr64 Instituto AntƔrtico Uruguayo Uruguayan Antarctic Institute'),
(97768, 'https://ror.org/03971n288', 'es', 1, 'https://ror.org/03971n288 Hospital Universitario Doctor Peset'),
(97769, 'https://ror.org/0398a1r53', 'en', 1, 'https://ror.org/0398a1r53 Mittatekniikan keskus National metrology institute VTT MIKES'),
(97770, 'https://ror.org/0398xj847', 'en', 1, 'https://ror.org/0398xj847 Montana Fish, Wildlife & Parks'),
(97771, 'https://ror.org/039928415', 'en', 1, 'https://ror.org/039928415 Office of Environmental Protection and ES&H Reporting'),
(97772, 'https://ror.org/0399wt198', 'en', 1, 'https://ror.org/0399wt198 Centre de recherche et de dƩveloppement de Summerland Summerland Research and Development Centre'),
(97773, 'https://ror.org/039d47y22', 'en', 0, 'https://ror.org/039d47y22 The Federal Polytechnic, Ado-Ekiti'),
(97774, 'https://ror.org/039djdh30', 'en', 1, 'https://ror.org/039djdh30 Deutscher Akademischer Austauschdienst German Academic Exchange Service'),
(97775, 'https://ror.org/039ffyr38', 'es', 1, 'https://ror.org/039ffyr38 Universidad Nacional Francisco Luis Espinoza Pineda'),
(97776, 'https://ror.org/039fjjj43', 'cs', 1, 'https://ror.org/039fjjj43 Zlín Region, Zlínský kraj'),
(97777, 'https://ror.org/039gq4j49', 'en', 1, 'https://ror.org/039gq4j49 Dakota Water Science Center'),
(97778, 'https://ror.org/039gscz82', 'fr', 1, 'https://ror.org/039gscz82 MetaboHUB'),
(97779, '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'),
(97780, 'https://ror.org/039mr5546', 'en', 1, 'https://ror.org/039mr5546 Knihovna ÚsteckĆ©ho kraje, příspěvkovĆ” organizace ÚstĆ­ Regional Library'),
(97781, 'https://ror.org/039mtkw55', 'en', 1, 'https://ror.org/039mtkw55 Wrexham Maelor Hospital'),
(97782, 'https://ror.org/039nk8734', 'en', 1, 'https://ror.org/039nk8734 Ada College of Education'),
(97783, 'https://ror.org/039p01270', 'fr', 1, 'https://ror.org/039p01270 Laboratoire de BiodiversitƩ et Biotechnologies Microbiennes Laboratory of Microbial Biodiversity and Biotechnology'),
(97784, 'https://ror.org/039qgw281', 'en', 1, 'https://ror.org/039qgw281 Revive & Restore'),
(97785, 'https://ror.org/039qvmf95', 'en', 1, 'https://ror.org/039qvmf95 Wallenberg Wood Science Center'),
(97786, 'https://ror.org/039ssy097', 'es', 1, 'https://ror.org/039ssy097 Instituto Pirenaico de EcologĆ­a'),
(97787, 'https://ror.org/039vw4178', 'es', 1, 'https://ror.org/039vw4178 Instituto de Agricultura Sostenible Sustainable Agriculture Institute'),
(97788, 'https://ror.org/039w2vw18', 'en', 1, 'https://ror.org/039w2vw18 Caribbean University'),
(97789, 'https://ror.org/039yyx623', 'fr', 1, 'https://ror.org/039yyx623 Institut des Sciences et Technologies MolƩculaires d''Angers'),
(97790, 'https://ror.org/03a1zvg88', 'en', 1, 'https://ror.org/03a1zvg88 State Key Laboratory of Tree Genetics and Breeding ęž—ęœØé—ä¼ č‚²ē§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97791, 'https://ror.org/03a205534', 'en', 1, 'https://ror.org/03a205534 State Key Laboratory of Geomechanics and Geotechnical Engineering å²©åœŸåŠ›å­¦äøŽå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97792, 'https://ror.org/03a2pqz96', 'en', 1, 'https://ror.org/03a2pqz96 Departamento de Educación Department of Education Hezkuntza Saila'),
(97793, 'https://ror.org/03a33a786', 'en', 1, 'https://ror.org/03a33a786 State Key Laboratory of Industrial Control Technology å·„äøšęŽ§åˆ¶ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97794, 'https://ror.org/03a3nj982', 'ca', 0, 'https://ror.org/03a3nj982 Ecoinstitut'),
(97795, 'https://ror.org/03a470182', 'en', 1, 'https://ror.org/03a470182 Nebraska Water Science Center'),
(97796, 'https://ror.org/03a502s36', 'no_lang_code', 0, 'https://ror.org/03a502s36 Orbital ATK (United States)'),
(97797, 'https://ror.org/03a6fgn14', 'en', 1, 'https://ror.org/03a6fgn14 Mindanao State University - Tawi-Tawi College of Technology and Oceanography'),
(97798, 'https://ror.org/03a7m8962', 'en', 1, 'https://ror.org/03a7m8962 Tokyo Ohka Foundation for The Promotion of Science and Technology'),
(97799, 'https://ror.org/03a9ssm23', 'en', 1, 'https://ror.org/03a9ssm23 Utah Water Science Center'),
(97800, 'https://ror.org/03aabbc27', 'en', 1, 'https://ror.org/03aabbc27 University of Eastern Philippines'),
(97801, 'https://ror.org/03ad9bh13', 'es', 1, 'https://ror.org/03ad9bh13 Centro OceanogrÔfico de Gijón Oceanographic Center of Gijón'),
(97802, 'https://ror.org/03ae8w006', 'fr', 1, 'https://ror.org/03ae8w006 Sorbonne - IdentitĆ©s, Relations Internationales et Civilisations de l’Europe'),
(97803, 'https://ror.org/03af71h47', 'no_lang_code', 1, 'https://ror.org/03af71h47 Raytheon Technologies (Singapore)'),
(97804, 'https://ror.org/03agg3g06', 'en', 1, 'https://ror.org/03agg3g06 Fujian Academy of Environmental Sciences ē¦å»ŗēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(97805, 'https://ror.org/03am10p12', 'no_lang_code', 1, 'https://ror.org/03am10p12 Amrita Vishwa Vidyapeetham ą“…ą“®ąµƒą“¤ ą“µą“æą“¶ąµą“µą“µą“æą“¦ąµą“Æą“¾ą“Ŗąµ€ą“ ą“‚'),
(97806, 'https://ror.org/03apwp296', 'nl', 1, 'https://ror.org/03apwp296 Landelijke Stichting voor Blinden en Slechtzienden National Society for the Blind and Visually Impaired'),
(97807, 'https://ror.org/03artm726', 'en', 1, 'https://ror.org/03artm726 Beaumont Hospital, Royal Oak'),
(97808, 'https://ror.org/03asszp14', 'en', 1, 'https://ror.org/03asszp14 State Key Laboratory of Engine and Powertrain System å†…ē‡ƒęœŗäøŽåŠØåŠ›ē³»ē»Ÿå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(97809, 'https://ror.org/03atdda90', 'es', 1, 'https://ror.org/03atdda90 Navarrabiomed'),
(97810, 'https://ror.org/03ayjey19', 'es', 1, 'https://ror.org/03ayjey19 Observatorio del Caribe Colombiano'),
(97811, 'https://ror.org/03azg3670', 'en', 1, 'https://ror.org/03azg3670 Association of Medical Microbiology and Infectious Disease Canada'),
(97812, 'https://ror.org/03b2c0z26', 'no_lang_code', 1, 'https://ror.org/03b2c0z26 InnaVirVax (France)'),
(97813, 'https://ror.org/03b6cpn03', 'en', 1, 'https://ror.org/03b6cpn03 Odesa I. I. Mechnikov National University ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені І. І. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(97814, 'https://ror.org/03b8etr73', 'en', 1, 'https://ror.org/03b8etr73 AboutScience'),
(97815, 'https://ror.org/03ba28x55', 'ca', 1, 'https://ror.org/03ba28x55 Vall d''Hebron Hospital Universitari'),
(97816, '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'),
(97817, 'https://ror.org/03bbhv598', 'en', 1, 'https://ror.org/03bbhv598 Maricopa Medical Center'),
(97818, 'https://ror.org/03bcjfh39', 'en', 1, 'https://ror.org/03bcjfh39 National Pirogov Memorial Medical University, Vinnytsya Винницкий Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š.И. ŠŸŠøŃ€Š¾Š³Š¾Š²Š° Š’Ń–Š½Š½ŠøŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ім. М.І. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(97819, 'https://ror.org/03bczw616', 'en', 1, 'https://ror.org/03bczw616 Federal Service for Surveillance on Consumer Rights Protection and Human Wellbeing Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба по Š½Š°Š“Š·Š¾Ń€Ńƒ в сфере защиты прав потребителей Šø Š±Š»Š°Š³Š¾ŠæŠ¾Š»ŃƒŃ‡ŠøŃ человека'),
(97820, 'https://ror.org/03bdmv123', 'en', 1, 'https://ror.org/03bdmv123 State Key Laboratory of Complex System Management and Control å¤ę‚ē³»ē»Ÿē®”ē†äøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97821, 'https://ror.org/03be73j71', 'en', 1, 'https://ror.org/03be73j71 St. John Bosco College of Education'),
(97822, 'https://ror.org/03bea9k73', 'en', 1, 'https://ror.org/03bea9k73 Ollscoil na Gaillimhe – University of Galway'),
(97823, 'https://ror.org/03bfc4534', 'nl', 1, 'https://ror.org/03bfc4534 Zuyderland Medisch Centrum'),
(97824, 'https://ror.org/03bk74w21', 'pt', 1, 'https://ror.org/03bk74w21 Instituto Federal de Educação, Ciência e Tecnologia de Brasília'),
(97825, 'https://ror.org/03bk8p931', 'en', 1, 'https://ror.org/03bk8p931 Helen DeVos Children''s Hospital'),
(97826, 'https://ror.org/03bnmw459', 'en', 1, 'https://ror.org/03bnmw459 University of Potsdam UniversitƤt Potsdam'),
(97827, 'https://ror.org/03bp30y45', 'en', 1, 'https://ror.org/03bp30y45 DKMS Foundation'),
(97828, 'https://ror.org/03bpcga21', 'fr', 1, 'https://ror.org/03bpcga21 Evolution des RƩgulations Endocriniennes Evolution of Endocrine Regulations'),
(97829, 'https://ror.org/03bra7668', 'en', 1, 'https://ror.org/03bra7668 Naval Research Laboratory Electronics Science and Technology Division'),
(97830, 'https://ror.org/03bvg6e09', 'en', 1, 'https://ror.org/03bvg6e09 Youth Peer Education Network'),
(97831, 'https://ror.org/03bw34a45', 'en', 1, 'https://ror.org/03bw34a45 UPMC Hillman Cancer Center'),
(97832, 'https://ror.org/03bx63127', 'en', 1, 'https://ror.org/03bx63127 Office of Energy Statistics'),
(97833, 'https://ror.org/03bypar46', 'eu', 1, 'https://ror.org/03bypar46 Bizkaia Talent'),
(97834, 'https://ror.org/03byqb733', 'es', 1, 'https://ror.org/03byqb733 Fundación General'),
(97835, 'https://ror.org/03byxpy70', 'en', 1, 'https://ror.org/03byxpy70 Dennis Osadebay University'),
(97836, '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'),
(97837, 'https://ror.org/03bzkqg41', 'no_lang_code', 1, 'https://ror.org/03bzkqg41 Ipsen (United States)'),
(97838, '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'),
(97839, 'https://ror.org/03c0pmq70', 'es', 1, 'https://ror.org/03c0pmq70 Escuela Normal de Tlalnepantla'),
(97840, 'https://ror.org/03c241w53', 'de', 1, 'https://ror.org/03c241w53 University and State Library of Saxony-Anhalt UniversitƤts- und Landesbibliothek Sachsen-Anhalt'),
(97841, 'https://ror.org/03c2k2909', 'fr', 1, 'https://ror.org/03c2k2909 Groupe de Physique des MatƩriaux'),
(97842, 'https://ror.org/03c7e3050', 'ca', 1, 'https://ror.org/03c7e3050 Fundació Salut i Envelliment UAB'),
(97843, 'https://ror.org/03cap2a49', 'en', 1, 'https://ror.org/03cap2a49 Naval Air Warfare Center Weapons Division'),
(97844, 'https://ror.org/03cavsb35', 'id', 1, 'https://ror.org/03cavsb35 Raden Fatah State Islamic University Palembang Universitas Islam Negeri Raden Fatah Palembang'),
(97845, 'https://ror.org/03cbz4r60', 'en', 1, 'https://ror.org/03cbz4r60 Harold C. Simmons Comprehensive Cancer Center'),
(97846, 'https://ror.org/03cebjr81', 'en', 1, 'https://ror.org/03cebjr81 Anderson University - Indiana'),
(97847, 'https://ror.org/03cejhk28', 'fr', 1, 'https://ror.org/03cejhk28 B-com Institute of Research and Technology Institut de Recherche Technologique B-com'),
(97848, 'https://ror.org/03cf8m307', 'no_lang_code', 1, 'https://ror.org/03cf8m307 Centro de Estudios de Materiales y Control de Obra (Spain)'),
(97849, 'https://ror.org/03cggs816', 'en', 0, 'https://ror.org/03cggs816 Higher Education Careers Services Unit'),
(97850, 'https://ror.org/03ch1rj44', 'no_lang_code', 1, 'https://ror.org/03ch1rj44 Tenaris (Argentina)'),
(97851, 'https://ror.org/03chte209', 'en', 1, 'https://ror.org/03chte209 Office of the Governor State of California'),
(97852, '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'),
(97853, 'https://ror.org/03cn98e27', 'en', 1, 'https://ror.org/03cn98e27 J.M. Kaplan Fund'),
(97854, 'https://ror.org/03cq0jg45', 'fr', 1, 'https://ror.org/03cq0jg45 Laboratoire Sciences et MƩthodes SƩparatives'),
(97855, 'https://ror.org/03cqwn895', 'fr', 1, 'https://ror.org/03cqwn895 Laboratoire d’immunologie intĆ©grative du cancer Laboratory of Integrative Cancer Immunology'),
(97856, 'https://ror.org/03cranv98', 'en', 1, 'https://ror.org/03cranv98 Canada Grain Commission Commission canadienne des grains'),
(97857, 'https://ror.org/03csrq586', 'en', 1, 'https://ror.org/03csrq586 European Association of National Metrology Institutes'),
(97858, 'https://ror.org/03ctqg407', 'en', 1, 'https://ror.org/03ctqg407 HEC Paris in Qatar'),
(97859, 'https://ror.org/03cvhr859', 'no_lang_code', 1, 'https://ror.org/03cvhr859 Unite 2 Fight Paralysis'),
(97860, 'https://ror.org/03cvwf620', 'fr', 1, 'https://ror.org/03cvwf620 Niche LeucƩmique et MƩtabolisme Oxydatif, Niche leucƩmique et mƩtabolisme oxydatif'),
(97861, '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'),
(97862, 'https://ror.org/03cx1e057', 'en', 1, 'https://ror.org/03cx1e057 American University of Puerto Rico'),
(97863, 'https://ror.org/03cxxnd48', 'en', 1, 'https://ror.org/03cxxnd48 Universidad del Sagrado Corazón University of The Sacred Heart'),
(97864, 'https://ror.org/03d0r5461', 'no_lang_code', 1, 'https://ror.org/03d0r5461 Sinoma Science & Technology Co., Ltd. (China) äø­ęē§‘ęŠ€'),
(97865, 'https://ror.org/03d2qmz71', 'en', 1, 'https://ror.org/03d2qmz71 Federal Ministry of Petroleum Resources'),
(97866, 'https://ror.org/03d2yag39', 'en', 1, 'https://ror.org/03d2yag39 State Key Laboratory of Severe Weather ē¾å®³å¤©ę°”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97867, 'https://ror.org/03d3nry68', 'en', 1, 'https://ror.org/03d3nry68 St. Petersburg Coastal and Marine Science Center'),
(97868, 'https://ror.org/03d54td73', 'en', 1, 'https://ror.org/03d54td73 Air-Lock, Air-Lock (United States)'),
(97869, 'https://ror.org/03d5rrp05', 'en', 1, 'https://ror.org/03d5rrp05 Cleveland Zoological Society'),
(97870, 'https://ror.org/03d61dw70', 'en', 1, 'https://ror.org/03d61dw70 State Key Laboratory of Luminescent Materials and Devices å‘å…‰ęę–™äøŽå™Øä»¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97871, 'https://ror.org/03d7bq150', 'no_lang_code', 0, 'https://ror.org/03d7bq150 Philco-Ford (United States)'),
(97872, 'https://ror.org/03d8em588', 'no_lang_code', 1, 'https://ror.org/03d8em588 General Research Institute for Nonferrous Metals (China) åŒ—äŗ¬ęœ‰č‰²é‡‘å±žē ”ē©¶ę€»é™¢'),
(97873, 'https://ror.org/03da7zw11', 'es', 1, 'https://ror.org/03da7zw11 Centro MƩdico Sanitas MƔlaga Sanitas Malaga Medical Centre'),
(97874, 'https://ror.org/03dbdcw44', 'en', 1, 'https://ror.org/03dbdcw44 Office of Isotope R&D and Production'),
(97875, 'https://ror.org/03dcvs546', 'en', 1, 'https://ror.org/03dcvs546 Engineering Research Network Wales Rhwydwaith Ymchwil Peirianneg Cymru'),
(97876, 'https://ror.org/03ddh2c27', 'en', 1, 'https://ror.org/03ddh2c27 LG (South Korea)'),
(97877, 'https://ror.org/03deb8c89', 'en', 1, 'https://ror.org/03deb8c89 State Key Laboratory of Silicate Materials for Architecture ē”…é…øē›å»ŗē­‘ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97878, 'https://ror.org/03dg0f179', 'fr', 1, 'https://ror.org/03dg0f179 EPF - Graduate School of Engineering EPF - Ɖcole d''ingĆ©nieurs'),
(97879, 'https://ror.org/03dg47v24', 'fr', 1, 'https://ror.org/03dg47v24 Laboratoire des Fluides Complexes et leurs RƩservoirs'),
(97880, 'https://ror.org/03dgmxj03', 'fr', 1, 'https://ror.org/03dgmxj03'),
(97881, 'https://ror.org/03dj0nw15', 'en', 1, 'https://ror.org/03dj0nw15 WWF Cameroon'),
(97882, 'https://ror.org/03dnj6531', 'en', 1, 'https://ror.org/03dnj6531 Citizen Schools North Carolina'),
(97883, 'https://ror.org/03dpyrm54', 'es', 1, 'https://ror.org/03dpyrm54 Institute of Agrobiological Research of Galicia Instituto de Investigaciones Agrobiológicas de Galicia'),
(97884, 'https://ror.org/03dvtxq95', 'id', 1, 'https://ror.org/03dvtxq95 Institut Pesantren Babakan'),
(97885, 'https://ror.org/03dy4eg44', 'en', 1, 'https://ror.org/03dy4eg44 Korea Semiconductor Research Consortium'),
(97886, 'https://ror.org/03dybbh68', 'en', 1, 'https://ror.org/03dybbh68 State Key Laboratory of Multiphase Flow in Power Engineering åŠØåŠ›å·„ēØ‹å¤šē›øęµå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97887, 'https://ror.org/03dyg8x92', 'de', 1, 'https://ror.org/03dyg8x92 Landesgesundheitsamt Baden-Württemberg'),
(97888, 'https://ror.org/03dz8mb53', 'en', 1, 'https://ror.org/03dz8mb53 State Key Laboratory of Advanced Optical Communication Systems and Networks åŒŗåŸŸå…‰ēŗ¤é€šäæ”ē½‘äøŽę–°åž‹å…‰é€šäæ”ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97889, 'https://ror.org/03dzwnj91', 'en', 1, 'https://ror.org/03dzwnj91 Society for the Improvement of Psychological Science'),
(97890, 'https://ror.org/03e1t2x83', 'en', 1, 'https://ror.org/03e1t2x83 Eastern Ecological Science Center'),
(97891, 'https://ror.org/03e369w46', 'no_lang_code', 1, 'https://ror.org/03e369w46 Laboratoires Contapharm (France)'),
(97892, 'https://ror.org/03e3qgk42', 'en', 1, 'https://ror.org/03e3qgk42 University of Wisconsin Health'),
(97893, 'https://ror.org/03e51yr27', 'pt', 1, 'https://ror.org/03e51yr27 Laboratório Nacional de Nanotecnologia'),
(97894, '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 Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ για την Ανάπτυξη της Επαγγελματικής ĪšĪ±Ļ„Ī¬ĻĻ„Ī¹ĻƒĪ·Ļ‚'),
(97895, 'https://ror.org/03e6bgb38', 'fr', 1, 'https://ror.org/03e6bgb38 MarchƩs, Institutions, LibertƩs'),
(97896, 'https://ror.org/03e71c577', 'en', 1, 'https://ror.org/03e71c577 Centre de toxicomanie et de santƩ mentale Centre for Addiction and Mental Health'),
(97897, 'https://ror.org/03ed91q10', 'en', 1, 'https://ror.org/03ed91q10 State Key Laboratory of Inorganic Synthesis and Preparative Chemistry ę— ęœŗåˆęˆäøŽåˆ¶å¤‡åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97898, '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'),
(97899, 'https://ror.org/03eeh5j48', 'en', 0, 'https://ror.org/03eeh5j48 Wright Research and Development Center'),
(97900, 'https://ror.org/03eere626', 'en', 1, 'https://ror.org/03eere626 Brocher Foundation Fondation Brocher'),
(97901, 'https://ror.org/03eewzy02', 'no_lang_code', 1, 'https://ror.org/03eewzy02 Cegid (France)'),
(97902, 'https://ror.org/03eg83y24', 'en', 1, 'https://ror.org/03eg83y24 Pacific Island Ecosystems Research Center'),
(97903, 'https://ror.org/03eh6fk59', 'en', 1, 'https://ror.org/03eh6fk59 Mater Foundation'),
(97904, 'https://ror.org/03ehp1h78', 'pt', 1, 'https://ror.org/03ehp1h78 Federal University of Roraima Universidade Federal de Roraima'),
(97905, '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'),
(97906, 'https://ror.org/03ek3rf92', 'no_lang_code', 0, 'https://ror.org/03ek3rf92 GTE (United States)'),
(97907, 'https://ror.org/03ekpdz59', 'de', 1, 'https://ror.org/03ekpdz59 Sächsisches Staatsministerium für Energie, Klimaschutz, Umwelt und Landwirtschaft'),
(97908, 'https://ror.org/03emtbt60', 'en', 1, 'https://ror.org/03emtbt60 Ministry of Science and Technology'),
(97909, 'https://ror.org/03en4sq15', 'en', 1, 'https://ror.org/03en4sq15 State Key Laboratory of Rare Earth Resources Utilization ēØ€åœŸčµ„ęŗåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97910, 'https://ror.org/03enb1k33', 'en', 1, 'https://ror.org/03enb1k33 Cambodian University for Specialties įžŸįž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžÆįž€įž‘įŸįžŸįž€įž˜įŸ’įž–įž»įž‡įž¶'),
(97911, 'https://ror.org/03erw8p58', 'es', 1, 'https://ror.org/03erw8p58 Instituto de Investigaciones en Diversidad Cultural y Procesos de Cambio'),
(97912, 'https://ror.org/03ery9d53', 'en', 1, 'https://ror.org/03ery9d53 Office of Fossil Energy'),
(97913, 'https://ror.org/03esms521', 'en', 1, 'https://ror.org/03esms521 Advanced Materials and Manufacturing Technologies Office'),
(97914, 'https://ror.org/03evaaw16', 'en', 1, 'https://ror.org/03evaaw16 University of Wales Institute Cardiff'),
(97915, 'https://ror.org/03eve7z35', 'pt', 1, 'https://ror.org/03eve7z35 Hospital UniversitÔrio da Universidade Federal do Maranhão'),
(97916, 'https://ror.org/03ex43f61', 'fr', 1, 'https://ror.org/03ex43f61 Equipe de recherche interdisciplinaire sur les aires culturelles'),
(97917, 'https://ror.org/03ex4ek60', 'en', 1, 'https://ror.org/03ex4ek60 Schroeder Arthritis Institute'),
(97918, 'https://ror.org/03ezemd27', 'es', 1, 'https://ror.org/03ezemd27 Real Jardƭn BotƔnico Royal Botanical Garden'),
(97919, 'https://ror.org/03eznrw16', 'en', 1, 'https://ror.org/03eznrw16 Berlin University of the Arts Universität der Künste Berlin'),
(97920, 'https://ror.org/03f0apy98', 'fr', 1, 'https://ror.org/03f0apy98 Laboratoire de Physique Subatomique et de Cosmologie Laboratory of Subatomic Physics and Cosmology'),
(97921, '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'),
(97922, 'https://ror.org/03f1agw55', 'en', 1, 'https://ror.org/03f1agw55 dpr-barcelona'),
(97923, 'https://ror.org/03f1mtj27', 'fr', 1, 'https://ror.org/03f1mtj27 Analyse, Recherche, DƩveloppement et Evaluation en Endourologie et Lithiase Urinaire'),
(97924, 'https://ror.org/03f2b4m56', 'en', 1, 'https://ror.org/03f2b4m56 STRIX (Portugal)'),
(97925, 'https://ror.org/03f3pbx54', 'fr', 1, 'https://ror.org/03f3pbx54 Centre d''Ʃtude des discours, images, textes, Ʃcrits et communications'),
(97926, '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'),
(97927, 'https://ror.org/03f5t6469', 'en', 1, 'https://ror.org/03f5t6469 Milken Institute'),
(97928, 'https://ror.org/03f6cng42', 'es', 1, 'https://ror.org/03f6cng42 Observatorio de Prospectiva Tecnológica Industrial Observatory for Prospective Technological Industry'),
(97929, 'https://ror.org/03f6cxf53', 'no_lang_code', 1, 'https://ror.org/03f6cxf53 Apollo Medical Imaging Technology (Australia)'),
(97930, 'https://ror.org/03f6n9m15', 'en', 1, 'https://ror.org/03f6n9m15 University Hospital Frankfurt UniversitƤtsklinikum Frankfurt'),
(97931, 'https://ror.org/03f6y4g19', 'es', 1, 'https://ror.org/03f6y4g19 Patrimonio Nacional'),
(97932, 'https://ror.org/03fcaa436', 'en', 1, 'https://ror.org/03fcaa436 State Key Laboratory of Special Fiber Composite Materials ē‰¹ē§ēŗ¤ē»“å¤åˆęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97933, 'https://ror.org/03fd5ne08', 'es', 1, 'https://ror.org/03fd5ne08 Ministerio de Ciencia, Tecnología e Innovación'),
(97934, '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'),
(97935, 'https://ror.org/03ffdsr55', 'en', 1, 'https://ror.org/03ffdsr55 Science and Engineering Research Board'),
(97936, 'https://ror.org/03fjajp23', 'es', 1, 'https://ror.org/03fjajp23 RegistradurĆ­a Nacional del Estado Civil de Colombia'),
(97937, 'https://ror.org/03fk87k11', 'fr', 1, 'https://ror.org/03fk87k11 Institut de MathƩmatiques de Jussieu-Paris Rive Gauche'),
(97938, 'https://ror.org/03fkbz285', 'en', 1, 'https://ror.org/03fkbz285 Saint Louis University'),
(97939, 'https://ror.org/03fnc0m43', 'en', 1, 'https://ror.org/03fnc0m43 Kidney Foundation Hospital and Research Institute, Bangladesh'),
(97940, 'https://ror.org/03fpf5m04', 'en', 0, 'https://ror.org/03fpf5m04 Weston Area Health NHS Trust'),
(97941, 'https://ror.org/03fpftn22', 'en', 1, 'https://ror.org/03fpftn22 University of Belgrade - School of Electrical Engineering Univerzitet u Beogradu - Elektrotehnički fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Електротехнички Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(97942, 'https://ror.org/03fqwqm07', 'pl', 1, 'https://ror.org/03fqwqm07 Wroclawskie Centrum Sieciowo-Superkomputerowe Wrocław Networking and Supercomputing Center'),
(97943, 'https://ror.org/03fsb6681', 'nl', 1, 'https://ror.org/03fsb6681 Noord-Hollands Archief'),
(97944, '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'),
(97945, 'https://ror.org/03fsd9z73', 'en', 1, 'https://ror.org/03fsd9z73 Jio Institute'),
(97946, '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'),
(97947, 'https://ror.org/03fwfk305', 'es', 1, 'https://ror.org/03fwfk305 Instituto de Neurociencias de Castilla y León'),
(97948, 'https://ror.org/03fwpw829', 'en', 1, 'https://ror.org/03fwpw829 Dr. Shroff’s Charity Eye Hospital'),
(97949, 'https://ror.org/03fx3ra47', 'en', 1, 'https://ror.org/03fx3ra47 Centre de recherche et de dƩveloppement d''Ottawa Ottawa Research and Development Centre'),
(97950, 'https://ror.org/03fxf3w65', 'en', 1, 'https://ror.org/03fxf3w65 Ministry of AYUSH ą¤†ą¤Æą„ą¤· ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(97951, 'https://ror.org/03fxf4247', 'en', 1, 'https://ror.org/03fxf4247 State Key Laboratory of Nonferrous Metals and Processes ęœ‰č‰²é‡‘å±žęę–™åˆ¶å¤‡åŠ å·„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97952, 'https://ror.org/03fxr9g07', 'en', 1, 'https://ror.org/03fxr9g07 State Key Laboratory of Environmental Adaptability for Industrial Products å·„äøšäŗ§å“ēŽÆå¢ƒé€‚åŗ”ę€§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97953, 'https://ror.org/03fyvh407', 'en', 1, 'https://ror.org/03fyvh407 Dokkyo Medical University Saitama Medical Center ēØå”åŒ»ē§‘å¤§å­¦åŸ¼ēŽ‰åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(97954, 'https://ror.org/03fz4fp45', 'es', 1, 'https://ror.org/03fz4fp45 Instituto de Ciencias del Patrimonio'),
(97955, 'https://ror.org/03g0p5d13', 'en', 1, 'https://ror.org/03g0p5d13 Allison Family Foundation'),
(97956, 'https://ror.org/03g2am276', 'en', 1, 'https://ror.org/03g2am276 National Research, Development and Innovation Office'),
(97957, 'https://ror.org/03g2zjp07', 'en', 1, 'https://ror.org/03g2zjp07 Congressionally Directed Medical Research Programs'),
(97958, 'https://ror.org/03g42sh82', 'en', 1, 'https://ror.org/03g42sh82 Ignite Life Science Foundation'),
(97959, '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'),
(97960, 'https://ror.org/03g897070', 'en', 1, 'https://ror.org/03g897070 Shanghai Institute of Optics and Fine Mechanics äø­å›½ē§‘å­¦é™¢äøŠęµ·å…‰å­¦ē²¾åÆ†ęœŗę¢°ē ”ē©¶ę‰€'),
(97961, 'https://ror.org/03g98ap29', 'en', 1, 'https://ror.org/03g98ap29 Korea Medical Device Development Fund ė²”ė¶€ģ²˜ģ‹ ģ•½ź°œė°œģ‚¬ģ—…ė‹Ø'),
(97962, 'https://ror.org/03gbd4842', 'en', 1, 'https://ror.org/03gbd4842 Suffolk University Madrid Universidad Suffolk Madrid'),
(97963, 'https://ror.org/03gbh6z06', 'en', 1, 'https://ror.org/03gbh6z06 Kyiv Scientific Research Institute of Forensic Expertise of the Ministry of Justice of Ukraine ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃƒŠ“Š¾Š²ŠøŃ… експертиз ŠœŃ–ністерства ŃŽŃŃ‚ŠøŃ†Ń–Ń— України'),
(97964, '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 ДамарканГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарной меГицины, животновоГства Šø биотехнологий'),
(97965, 'https://ror.org/03gd0dm95', 'en', 1, 'https://ror.org/03gd0dm95 Aga Khan University Ų¢ŲŗŲ§ خان ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(97966, 'https://ror.org/03ge26363', 'en', 1, 'https://ror.org/03ge26363 Okinaka Memorial Institute for Medical Research'),
(97967, 'https://ror.org/03ger2h42', 'en', 1, 'https://ror.org/03ger2h42 Centre de recherche et de dƩveloppement de Charlottetown Charlottetown Research and Development Centre'),
(97968, 'https://ror.org/03gf4dx13', 'no_lang_code', 1, 'https://ror.org/03gf4dx13 DRACE GEOCISA S.A. (Spain)'),
(97969, 'https://ror.org/03gjh3k29', 'en', 1, 'https://ror.org/03gjh3k29 Nuclear Infrastructure Programs'),
(97970, 'https://ror.org/03gjv3a85', 'en', 1, 'https://ror.org/03gjv3a85 State Key Laboratory of Laser Technology ęæ€å…‰ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97971, 'https://ror.org/03gkvrb60', 'no_lang_code', 0, 'https://ror.org/03gkvrb60 Raytheon (United States)');
INSERT INTO `rors` VALUES
(97972, 'https://ror.org/03gmjg433', 'en', 1, 'https://ror.org/03gmjg433 Museo Arqueológico Nacional National Archaeological Museum of Spain'),
(97973, 'https://ror.org/03gmmtm59', 'no_lang_code', 1, 'https://ror.org/03gmmtm59 Eurofins (United Kingdom)'),
(97974, 'https://ror.org/03gna4510', 'en', 1, 'https://ror.org/03gna4510 NIHR Bristol Cardiovascular Biomedical Research Unit'),
(97975, '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'),
(97976, 'https://ror.org/03gq8fr08', 'en', 1, 'https://ror.org/03gq8fr08 Rutherford Appleton Laboratory'),
(97977, 'https://ror.org/03gs06p51', 'it', 1, 'https://ror.org/03gs06p51 Aziende Socio Sanitaria Territoriale Rhodense Regional Health Care and Social Agency Rhodense'),
(97978, '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'),
(97979, 'https://ror.org/03h0qhk21', 'en', 1, 'https://ror.org/03h0qhk21 Cornell Atkinson Center for Sustainability'),
(97980, 'https://ror.org/03h33sq24', 'en', 1, 'https://ror.org/03h33sq24 State Key Laboratory of Tribology ę‘©ę“¦å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(97981, 'https://ror.org/03h381n69', 'en', 1, 'https://ror.org/03h381n69 State of New Jersey'),
(97982, 'https://ror.org/03h4zjr91', 'en', 1, 'https://ror.org/03h4zjr91 Carnegie Observatories'),
(97983, 'https://ror.org/03h6j3g83', 'en', 1, 'https://ror.org/03h6j3g83 Facing Our Risk of Cancer Empowered'),
(97984, 'https://ror.org/03h7fe682', 'no_lang_code', 1, 'https://ror.org/03h7fe682 Aduro BioTech (United States)'),
(97985, 'https://ror.org/03h7hkg24', 'es', 1, 'https://ror.org/03h7hkg24 Centro de Investigación y Desarrollo Tecnológico para la Agricultura Familiar'),
(97986, 'https://ror.org/03h9k5b03', 'ca', 1, 'https://ror.org/03h9k5b03 Institut CatalƠ d''Energia Instituto CatalƔn de Energƭa'),
(97987, '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 Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł„Ł„ŲŖŁˆŲ«ŁŠŁ‚ Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠ'),
(97988, 'https://ror.org/03hecy592', 'de', 1, 'https://ror.org/03hecy592 Landesbibliothek Oldenburg'),
(97989, 'https://ror.org/03hfcy355', 'fr', 1, 'https://ror.org/03hfcy355 Physiopathologie et StratƩgies d''Imagerie du Remodelage cardiovasculaire'),
(97990, 'https://ror.org/03hjhvn29', 'en', 1, 'https://ror.org/03hjhvn29 USC Institute for Creative Technologies'),
(97991, 'https://ror.org/03hjqxp26', 'en', 1, 'https://ror.org/03hjqxp26 Skidaway Institute of Oceanography'),
(97992, 'https://ror.org/03hkzcg46', 'en', 1, 'https://ror.org/03hkzcg46 Scottish Confederation of University and Research Libraries'),
(97993, 'https://ror.org/03hp7bq97', 'fr', 1, 'https://ror.org/03hp7bq97 Laboratoire d’Économie d’OrlĆ©ans'),
(97994, 'https://ror.org/03hpdk269', 'en', 0, 'https://ror.org/03hpdk269 Catalonian Research and Innovation Centre'),
(97995, 'https://ror.org/03hq2nj16', 'fr', 1, 'https://ror.org/03hq2nj16 3L.AM - Langues, LittĆ©ratures, Linguistique des UniversitĆ©s d’Angers et du Mans'),
(97996, 'https://ror.org/03ht4bd53', 'en', 1, 'https://ror.org/03ht4bd53 Donald E. and Delia B. Baxter Foundation'),
(97997, 'https://ror.org/03hv28176', 'de', 1, 'https://ror.org/03hv28176 Leibniz-Institut für Wissensmedien, Stiftung ā€žMedien in der Bildungā€œ'),
(97998, 'https://ror.org/03hvdbf98', 'en', 1, 'https://ror.org/03hvdbf98 BMA Foundation for Medical Research'),
(97999, 'https://ror.org/03hwx9w41', 'en', 1, 'https://ror.org/03hwx9w41 Oxford University Clinical Research Unit Nepal'),
(98000, 'https://ror.org/03hx19n93', 'en', 1, 'https://ror.org/03hx19n93 Naval Research Laboratory Space Science Division'),
(98001, 'https://ror.org/03hxmas11', 'no_lang_code', 1, 'https://ror.org/03hxmas11 Research Institute for Cattle Breeding (Czechia) Výzkumný Ustav pro Chov Skotu'),
(98002, 'https://ror.org/03j0zz815', 'en', 1, 'https://ror.org/03j0zz815 Synsint Research Group'),
(98003, 'https://ror.org/03j18km61', 'en', 1, 'https://ror.org/03j18km61 O''Neal Comprehensive Cancer Center'),
(98004, 'https://ror.org/03j283p93', 'en', 1, 'https://ror.org/03j283p93 State Key Laboratory of Molecular Reaction Dynamics åˆ†å­ååŗ”åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98005, 'https://ror.org/03j33bp92', 'en', 1, 'https://ror.org/03j33bp92 State Key Laboratory of Fine Chemicals ē²¾ē»†åŒ–å·„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98006, 'https://ror.org/03j42y490', 'no_lang_code', 1, 'https://ror.org/03j42y490 Biocat'),
(98007, 'https://ror.org/03j4x9j18', 'en', 1, 'https://ror.org/03j4x9j18 Institute of Process Engineering 中国科学院过程巄程研究所'),
(98008, 'https://ror.org/03j656z92', 'fr', 1, 'https://ror.org/03j656z92 Centre National de Semences ForestiĆØres'),
(98009, 'https://ror.org/03j7sze86', 'en', 1, 'https://ror.org/03j7sze86 Yale Cancer Center'),
(98010, 'https://ror.org/03j82q602', 'fr', 1, 'https://ror.org/03j82q602 ArchƩozoologie et ArchƩobotanique'),
(98011, 'https://ror.org/03j92cn97', 'no_lang_code', 1, 'https://ror.org/03j92cn97 Shanxi Jincheng Anthracite Mining Group (China) å±±č„æę™‹åŸŽę— ēƒŸē…¤ēŸæäøšé›†å›¢'),
(98012, 'https://ror.org/03j9xzm13', 'en', 1, 'https://ror.org/03j9xzm13 Naval Research Laboratory Optical Sciences Division'),
(98013, 'https://ror.org/03jac3x50', 'es', 1, 'https://ror.org/03jac3x50 Fundación Omphis'),
(98014, 'https://ror.org/03jbsdf87', 'en', 1, 'https://ror.org/03jbsdf87 Urmia University of Medical Sciences'),
(98015, 'https://ror.org/03jc88607', 'fr', 1, 'https://ror.org/03jc88607 Conception de Systèmes Mécaniques et Robotiques'),
(98016, 'https://ror.org/03jcejr58', 'en', 1, 'https://ror.org/03jcejr58 The Institute of Statistical Mathematics ēµ±čØˆę•°ē†ē ”ē©¶ę‰€'),
(98017, 'https://ror.org/03jd9cc79', 'en', 1, 'https://ror.org/03jd9cc79 State Key Laboratory of Environmental Standards and Risk Assessment ēŽÆå¢ƒåŸŗå‡†äøŽé£Žé™©čÆ„ä¼°å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98018, 'https://ror.org/03jdc5495', 'en', 1, 'https://ror.org/03jdc5495 SANT Herbarium'),
(98019, 'https://ror.org/03jdj0g52', 'en', 1, 'https://ror.org/03jdj0g52 Applied Research Laboratory at Penn State'),
(98020, 'https://ror.org/03jdj4y14', 'no_lang_code', 1, 'https://ror.org/03jdj4y14 Nvidia (United States)'),
(98021, 'https://ror.org/03jf3w726', 'en', 1, 'https://ror.org/03jf3w726 Office of Legacy Management'),
(98022, 'https://ror.org/03jfptm11', 'fr', 1, 'https://ror.org/03jfptm11 Institut des Vaisseaux et du Sang Vessels and Blood Institute'),
(98023, 'https://ror.org/03jhgk465', 'en', 1, 'https://ror.org/03jhgk465 State Key Laboratory of Laser and Matter Interaction ęæ€å…‰äøŽē‰©č“Øē›øäŗ’ä½œē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98024, 'https://ror.org/03jhvx342', 'fr', 0, 'https://ror.org/03jhvx342 RMN BiomƩdicale et Neurosciences'),
(98025, 'https://ror.org/03jms8710', 'fr', 1, 'https://ror.org/03jms8710 Centre Gabriel NaudƩ'),
(98026, 'https://ror.org/03jp40720', 'en', 1, 'https://ror.org/03jp40720 Mayo Clinic in Arizona'),
(98027, 'https://ror.org/03jpb1072', 'en', 1, 'https://ror.org/03jpb1072 Southern African Science Service Centre for Climate Change and Adaptive Land Management'),
(98028, 'https://ror.org/03jqp8097', 'fr', 1, 'https://ror.org/03jqp8097 Matériaux Polymères Interfaces - Environnement Marin'),
(98029, 'https://ror.org/03jrb0276', 'fr', 1, 'https://ror.org/03jrb0276'),
(98030, 'https://ror.org/03jspcw28', 'en', 1, 'https://ror.org/03jspcw28 University of Belgrade – Faculty of Mathematics Univerzitet u Beogradu – Matematički fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠœŠ°Ń‚ŠµŠ¼Š°Ń‚ŠøŃ‡ŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(98031, 'https://ror.org/03jsyxh43', 'no_lang_code', 0, 'https://ror.org/03jsyxh43 Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China) ę²ˆé˜³äø­åŒ–å†œčÆåŒ–å·„ē ”å‘ęœ‰é™å…¬åø'),
(98032, 'https://ror.org/03jtzcc30', 'fr', 1, 'https://ror.org/03jtzcc30 Chimie et Biologie des Membranes et des Nanoobjects'),
(98033, 'https://ror.org/03jvfqk47', 'en', 1, 'https://ror.org/03jvfqk47 Rein in Sarcoma'),
(98034, 'https://ror.org/03jvtcb24', 'en', 0, 'https://ror.org/03jvtcb24 Wright Laboratory'),
(98035, 'https://ror.org/03jvx9v69', 'en', 1, 'https://ror.org/03jvx9v69 Egypt University of Informatics Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ± Ł„Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖŁŠŲ©'),
(98036, 'https://ror.org/03jxvbk42', 'en', 1, 'https://ror.org/03jxvbk42 Brotman Baty Institute'),
(98037, 'https://ror.org/03jzzxg14', 'en', 1, 'https://ror.org/03jzzxg14 University Hospitals Bristol and Weston NHS Foundation Trust'),
(98038, 'https://ror.org/03k0cyw07', 'no_lang_code', 1, 'https://ror.org/03k0cyw07 Toray (United States)'),
(98039, 'https://ror.org/03k0z2z93', 'en', 1, 'https://ror.org/03k0z2z93 WZB Berlin Social Science Center Wissenschaftszentrum Berlin für Sozialforschung gGmbH'),
(98040, 'https://ror.org/03k171441', 'en', 1, 'https://ror.org/03k171441 Biodiversity Information Standards (TDWG)'),
(98041, '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'),
(98042, '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'),
(98043, 'https://ror.org/03k306330', 'it', 1, 'https://ror.org/03k306330 Agency for the Protection of Health Bergamo East Azienda Socio Sanitaria Territoriale Bergamo Est'),
(98044, 'https://ror.org/03k3p7647', 'pt', 1, 'https://ror.org/03k3p7647 Federal University of Bahia Universidade Federal da Bahia'),
(98045, 'https://ror.org/03k457f15', 'es', 1, 'https://ror.org/03k457f15 Fundación Marcos Moshinsky Marcos Moshinsky Foundation'),
(98046, 'https://ror.org/03k6r8t20', 'en', 1, 'https://ror.org/03k6r8t20 Nanjing Institute of Geography and Limnology äø­å›½ē§‘å­¦é™¢å—äŗ¬åœ°ē†äøŽę¹–ę³Šē ”ē©¶ę‰€'),
(98047, 'https://ror.org/03k8zj440', 'es', 1, 'https://ror.org/03k8zj440 Servicio de Salud de Castilla La Mancha'),
(98048, 'https://ror.org/03kak1729', 'es', 1, 'https://ror.org/03kak1729 Consejería de Empleo, Formación y Trabajo Autónomo'),
(98049, 'https://ror.org/03kcmb879', 'en', 1, 'https://ror.org/03kcmb879 Arkansas Archeological Survey'),
(98050, 'https://ror.org/03kd9rr37', 'en', 1, 'https://ror.org/03kd9rr37 State Key Laboratory of Electrical Insulation and Power Equipment ē”µåŠ›č®¾å¤‡ē”µę°”ē»ē¼˜å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98051, 'https://ror.org/03kdy4x92', 'no_lang_code', 1, 'https://ror.org/03kdy4x92 Spectroswiss (Switzerland)'),
(98052, 'https://ror.org/03kegqj41', 'en', 1, 'https://ror.org/03kegqj41 Happier Lives Institute'),
(98053, 'https://ror.org/03keq4b73', 'en', 1, 'https://ror.org/03keq4b73 Clinical and Translational Science Collaborative of Northern Ohio'),
(98054, 'https://ror.org/03kerd729', 'id', 1, 'https://ror.org/03kerd729 Sekolah Tinggi Teologi Tabgha Batam'),
(98055, 'https://ror.org/03kevw840', 'no_lang_code', 0, 'https://ror.org/03kevw840 Meta4 (Spain)'),
(98056, 'https://ror.org/03kg5qh91', 'en', 1, 'https://ror.org/03kg5qh91 Semey Medical University «Демей меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–Ā» ŠŗŠ¾Š¼Š¼ŠµŃ€Ń†ŠøŃŠ»Ń‹Ņ› емес акционерлік қоғамы ŠŠµŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ¾Šµ акционерное общество Ā«ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Демей»'),
(98057, 'https://ror.org/03khyar38', 'fr', 1, 'https://ror.org/03khyar38 Escuela Superior de Artes de Circo Ɖcole SupĆ©rieure des Arts du Cirque'),
(98058, 'https://ror.org/03kk92g72', 'en', 1, 'https://ror.org/03kk92g72 Genetics and Improvement of Fruit and Vegetables GƩnƩtique et AmƩlioration des Fruits et LƩgumes'),
(98059, 'https://ror.org/03kpps236', 'en', 1, 'https://ror.org/03kpps236 Barcelona Institute for Science and Technology Instituto Barcelona de Ciencia y TecnologĆ­a'),
(98060, 'https://ror.org/03kq0xx85', 'en', 1, 'https://ror.org/03kq0xx85 State Enterprise "Ivano-Frankivsk Scientific and Production Center for Standardization, Metrology and Certification" Державне ŠŸŃ–Гприємство ā€žŃ–Š²Š°Š½Š¾-Š¤Ń€Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ ŠŠ°ŃƒŠŗŠ¾Š²Š¾-Виробничий Центр ДтанГартизації, ŠœŠµŃ‚Ń€Š¾Š»Š¾Š³Ń–Ń— Та Š”ŠµŃ€Ń‚ŠøŃ„Ń–ŠŗŠ°Ń†Ń–Ń—ā€'),
(98061, 'https://ror.org/03kq1sq34', 'no_lang_code', 1, 'https://ror.org/03kq1sq34 Barber-Nichols (United States)'),
(98062, 'https://ror.org/03kr50w79', 'fr', 1, 'https://ror.org/03kr50w79 Physique et Mécanique des Milieux Hétérogènes'),
(98063, 'https://ror.org/03ksw4g36', 'en', 1, 'https://ror.org/03ksw4g36 Agassiz Research and Development Centre Centre de recherche et de dƩveloppement d''Agassiz'),
(98064, 'https://ror.org/03kw9kr66', 'da', 1, 'https://ror.org/03kw9kr66 Mercantec'),
(98065, 'https://ror.org/03kxchy02', 'en', 1, 'https://ror.org/03kxchy02 California Tomato Research Institute'),
(98066, 'https://ror.org/03kyp2n97', 'en', 1, 'https://ror.org/03kyp2n97 Maldives Business School'),
(98067, 'https://ror.org/03kzgzp82', 'it', 1, 'https://ror.org/03kzgzp82 Conservatorio di Musica Giuseppe Tartini'),
(98068, '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'),
(98069, 'https://ror.org/03m2x2m55', 'en', 1, 'https://ror.org/03m2x2m55 State Key Laboratory of Concrete Materials Research ę··å‡åœŸęę–™ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98070, 'https://ror.org/03m5tgj44', 'en', 1, 'https://ror.org/03m5tgj44 Gruber Foundation'),
(98071, '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'),
(98072, 'https://ror.org/03m8r7k33', 'fr', 1, 'https://ror.org/03m8r7k33 HƓpital d''instruction des ArmƩes Desgenettes'),
(98073, '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'),
(98074, 'https://ror.org/03mc0m715', 'ro', 1, 'https://ror.org/03mc0m715 Advisory Board for Research, Development and Innovation Colegiul Consultativ pentru Cercetare-Dezvoltare şi Inovare'),
(98075, 'https://ror.org/03mc19e15', 'en', 1, 'https://ror.org/03mc19e15 Weston General Hospital'),
(98076, 'https://ror.org/03mcrfa90', 'fr', 1, 'https://ror.org/03mcrfa90 Centre François Viète'),
(98077, 'https://ror.org/03mfap132', 'es', 1, 'https://ror.org/03mfap132 Centro de Rehabilitación Avanzada Sanitas Castellana Sanitas Castellana Advanced Rehabilitation Centre'),
(98078, 'https://ror.org/03mhcky17', 'en', 1, 'https://ror.org/03mhcky17 Minneapolis Heart Institute Foundation'),
(98079, 'https://ror.org/03mk4hj97', 'en', 1, 'https://ror.org/03mk4hj97 Open University of West Africa'),
(98080, 'https://ror.org/03mnxvp33', 'es', 1, 'https://ror.org/03mnxvp33 Dirección General de Universidades e Investigación General Directorate of Universities and Research'),
(98081, 'https://ror.org/03mp6cc45', 'pl', 1, 'https://ror.org/03mp6cc45 Institute of Oceanology Polish Academy of Sciences Instytut Oceanologii Polskiej Akademii Nauk'),
(98082, 'https://ror.org/03mq8q210', 'en', 1, 'https://ror.org/03mq8q210 State Key Laboratory of Membrane Biology č†œē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98083, 'https://ror.org/03mqkaa34', 'en', 1, 'https://ror.org/03mqkaa34 Yuzhang Normal University č±«ē« åøˆčŒƒå­¦é™¢'),
(98084, 'https://ror.org/03mr7c415', 'en', 1, 'https://ror.org/03mr7c415 State Key Laboratory of Macromolecular Engineering čšåˆē‰©åˆ†å­å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98085, 'https://ror.org/03mtd9a03', 'en', 1, 'https://ror.org/03mtd9a03 Stanford Medicine'),
(98086, 'https://ror.org/03mv2rd02', 'en', 1, 'https://ror.org/03mv2rd02 Royal Government of Bhutan'),
(98087, 'https://ror.org/03mw4pt79', 'en', 1, 'https://ror.org/03mw4pt79 State Key Laboratory for Structural Chemistry of Unstable and Stable Species åˆ†å­åŠØę€äøŽēØ³ę€ē»“ęž„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98088, 'https://ror.org/03n4s8180', 'fr', 1, 'https://ror.org/03n4s8180'),
(98089, 'https://ror.org/03n4wh382', 'en', 1, 'https://ror.org/03n4wh382 Al-Imam Al-Adham University College Ł„ŁƒŁ„ŁŠŲ© الامام الاعظم الجامع'),
(98090, 'https://ror.org/03n5f7689', 'no_lang_code', 1, 'https://ror.org/03n5f7689 Yangtze River Pharmaceutical Group (China) ę‰¬å­ę±ŸčÆäøšé›†å›¢'),
(98091, 'https://ror.org/03n63wv08', 'en', 1, 'https://ror.org/03n63wv08 Fred and Pamela Buffett Cancer Center'),
(98092, 'https://ror.org/03n8fv677', 'es', 1, 'https://ror.org/03n8fv677 Fundación Pronokal'),
(98093, 'https://ror.org/03n9ja422', 'en', 1, 'https://ror.org/03n9ja422 Ruhr Museum'),
(98094, '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'),
(98095, 'https://ror.org/03n9z2d15', 'sv', 1, 'https://ror.org/03n9z2d15 King Gustaf V and Queen Victoria''s Foundation of Freemasons'),
(98096, 'https://ror.org/03naxhj05', 'en', 1, 'https://ror.org/03naxhj05 Spent Fuel and Waste Disposition'),
(98097, 'https://ror.org/03nb7bx92', 'es', 1, 'https://ror.org/03nb7bx92 Centro Andaluz de BiologĆ­a Molecular y Medicina Regenerativa'),
(98098, 'https://ror.org/03njcec05', 'en', 1, 'https://ror.org/03njcec05 North Dakota Agricultural Experiment Station'),
(98099, 'https://ror.org/03njmea73', 'en', 1, 'https://ror.org/03njmea73 Duke Medical Center'),
(98100, 'https://ror.org/03nkpbf76', 'en', 1, 'https://ror.org/03nkpbf76 Nepal Telecom ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤Ÿą„‡ą¤²ą¤æą¤•ą¤®'),
(98101, 'https://ror.org/03nkpwc05', 'en', 1, 'https://ror.org/03nkpwc05 Genentech Foundation'),
(98102, 'https://ror.org/03nqkz164', 'en', 1, 'https://ror.org/03nqkz164 ETH Zürich Foundation'),
(98103, 'https://ror.org/03nqtpc52', 'en', 1, 'https://ror.org/03nqtpc52 State Key Laboratory for Innovation and Transformation of Luobing Theory ē»œē—…ē†č®ŗåˆ›ę–°č½¬åŒ–å…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(98104, 'https://ror.org/03nqvxc91', 'id', 1, 'https://ror.org/03nqvxc91 Institut Agama Kristen Negeri Palangka Raya'),
(98105, 'https://ror.org/03nr10290', 'en', 1, 'https://ror.org/03nr10290 Corewell Health Children''s'),
(98106, 'https://ror.org/03nw3dq29', 'en', 1, 'https://ror.org/03nw3dq29 Royal Botanic Garden Sydney'),
(98107, 'https://ror.org/03nydrc16', 'no_lang_code', 1, 'https://ror.org/03nydrc16 DNV (Germany)'),
(98108, 'https://ror.org/03nyfz802', 'en', 1, 'https://ror.org/03nyfz802 Accra College of Education'),
(98109, 'https://ror.org/03p0tqk33', 'en', 0, 'https://ror.org/03p0tqk33 Natural Resources, Energy and Science Authority of Sri Lanka'),
(98110, 'https://ror.org/03p16v381', 'no_lang_code', 1, 'https://ror.org/03p16v381 Taiyuan Iron and Steel Group (China) å¤ŖåŽŸé’¢é“é›†å›¢'),
(98111, 'https://ror.org/03p28wy22', 'no_lang_code', 0, 'https://ror.org/03p28wy22 Philco (United States)'),
(98112, 'https://ror.org/03p2cen66', 'en', 1, 'https://ror.org/03p2cen66 Naval Research Laboratory Radar Division'),
(98113, 'https://ror.org/03p2d3k93', 'fr', 1, 'https://ror.org/03p2d3k93 Production et analyse de donnƩes en sciences de la vie et en santƩ'),
(98114, 'https://ror.org/03p40sz62', 'es', 1, 'https://ror.org/03p40sz62 Fundación Eugenio Rodríguez Pascual'),
(98115, 'https://ror.org/03p6ach34', 'fr', 1, 'https://ror.org/03p6ach34 Structure FƩdƩrative de Recherche Bonamy'),
(98116, 'https://ror.org/03p80e845', 'es', 1, 'https://ror.org/03p80e845 Instituto de Instrumentación para Imagen Molecular Instrumentation Institute For Molecular Image'),
(98117, 'https://ror.org/03p81rq42', 'en', 1, 'https://ror.org/03p81rq42 The Filipino Nurses Association in the Nordic Region'),
(98118, 'https://ror.org/03p8jwd38', 'en', 1, 'https://ror.org/03p8jwd38 Tertiary Education Trust Fund'),
(98119, 'https://ror.org/03p8qrw52', 'en', 1, 'https://ror.org/03p8qrw52 Texas A&M Engineering Experiment Station'),
(98120, 'https://ror.org/03padf885', 'ro', 1, 'https://ror.org/03padf885 Ministerul Cercetării și Inovării Ministry of Research and Innovation'),
(98121, 'https://ror.org/03pbsn844', 'en', 1, 'https://ror.org/03pbsn844 Guam Community College'),
(98122, 'https://ror.org/03pcb7145', 'no_lang_code', 1, 'https://ror.org/03pcb7145 Sigma Research (United States)'),
(98123, 'https://ror.org/03pcw1780', 'en', 1, 'https://ror.org/03pcw1780 State Key Laboratory of Robotics ęœŗå™Øäŗŗå­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98124, 'https://ror.org/03pdbtd82', 'en', 1, 'https://ror.org/03pdbtd82 The Virgo Consortium'),
(98125, 'https://ror.org/03phm3r45', 'es', 1, 'https://ror.org/03phm3r45 Clinica Universidad de Navarra Navarra University Clinic'),
(98126, 'https://ror.org/03pkrdc36', 'en', 1, 'https://ror.org/03pkrdc36 PacifiCan'),
(98127, 'https://ror.org/03pnvey90', 'no_lang_code', 1, 'https://ror.org/03pnvey90 ARES (United States)'),
(98128, 'https://ror.org/03ppnws78', 'en', 1, 'https://ror.org/03ppnws78 Centro de Investigación en Nanomateriales y Nanotecnología Nanomaterials and Nanotechnology Research Center'),
(98129, 'https://ror.org/03pr6rd29', 'en', 1, 'https://ror.org/03pr6rd29 Educational and Rehabilitation Institution of Higher Education "Kamianets-Podilskyi State Institute" ŠŠ°Š²Ń‡Š°Š»ŃŒŠ½Š¾-реабілітаційний заклаГ вищої освіти "Кам''ŃŠ½ŠµŃ†ŃŒ-ŠŸŠ¾Š“Ń–Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚"'),
(98130, 'https://ror.org/03pvs5g92', 'en', 1, 'https://ror.org/03pvs5g92 University of Wollongong Malaysia'),
(98131, 'https://ror.org/03pvyf116', 'en', 1, 'https://ror.org/03pvyf116 Dana-Farber/Harvard Cancer Center'),
(98132, 'https://ror.org/03px3r824', 'fi', 1, 'https://ror.org/03px3r824 Finnish Anti-Tuberculosis Foundation Suomen Tuberkuloosin Vastustamisyhdistyksen SƤƤtiƶ'),
(98133, 'https://ror.org/03pzf1r57', 'es', 1, 'https://ror.org/03pzf1r57 Centro Universitario de TecnologĆ­a y Arte Digital University of Technology, Arts and Design'),
(98134, 'https://ror.org/03pzgzb61', 'en', 1, 'https://ror.org/03pzgzb61 State Key Laboratory of Metal Porous Materials é‡‘å±žå¤šå­”ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98135, 'https://ror.org/03pzxq793', 'en', 1, 'https://ror.org/03pzxq793 NIHR Applied Research Collaboration West'),
(98136, 'https://ror.org/03q1rgc19', 'en', 1, 'https://ror.org/03q1rgc19 Advanced Research Projects Agency - Energy'),
(98137, 'https://ror.org/03q28x580', 'en', 1, 'https://ror.org/03q28x580 MAX IV Laboratory'),
(98138, 'https://ror.org/03q2cf306', 'no_lang_code', 0, 'https://ror.org/03q2cf306 Achaogen (United States)'),
(98139, 'https://ror.org/03q3mt530', 'en', 1, 'https://ror.org/03q3mt530 Maine Agricultural and Forest Experiment Station'),
(98140, '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'),
(98141, 'https://ror.org/03q6t4s11', 'en', 1, 'https://ror.org/03q6t4s11 Presbyterian Women''s College of Education'),
(98142, 'https://ror.org/03q7r5x87', 'fr', 1, 'https://ror.org/03q7r5x87 Laboratoire de Biologie, BioingƩniƩrie et Bioimagerie ostƩoarticulaire'),
(98143, 'https://ror.org/03q7vwk42', 'en', 1, 'https://ror.org/03q7vwk42 NIHR School for Social Care Research'),
(98144, 'https://ror.org/03q82t418', 'en', 1, 'https://ror.org/03q82t418 NHS Lothian'),
(98145, 'https://ror.org/03q9eb647', 'no_lang_code', 1, 'https://ror.org/03q9eb647 HidroQuimia (Spain) Hidroquimia tractaments i quimica industrial, S.L.'),
(98146, 'https://ror.org/03q9jj782', 'no_lang_code', 1, 'https://ror.org/03q9jj782 Cambia Health Solutions (United States)'),
(98147, 'https://ror.org/03q9sr818', 'pt', 1, 'https://ror.org/03q9sr818 Federal University of Para Universidade Federal do ParĆ”'),
(98148, 'https://ror.org/03qbxk467', 'id', 1, 'https://ror.org/03qbxk467 Sekolah Tinggi Agama Buddha Negeri Sriwijaya Tangerang Banten'),
(98149, 'https://ror.org/03qcqf034', 'fr', 1, 'https://ror.org/03qcqf034 Groupe de Recherche en Electrotechnique et Automatique du Havre'),
(98150, 'https://ror.org/03qcx5k62', 'es', 1, 'https://ror.org/03qcx5k62 Instituto Tecnológico Superior Progreso'),
(98151, 'https://ror.org/03qd2e967', 'en', 1, 'https://ror.org/03qd2e967 Institute for Integrated Transitions Instituto para las Transiciones Integrales'),
(98152, 'https://ror.org/03qd7mz70', 'no_lang_code', 1, 'https://ror.org/03qd7mz70 Johnson & Johnson (United States)'),
(98153, 'https://ror.org/03qdp0d02', 'en', 1, 'https://ror.org/03qdp0d02 Moana Connect'),
(98154, 'https://ror.org/03qfm6382', 'en', 1, 'https://ror.org/03qfm6382 China Railway First Survey and Design Institute Group Co. Ltd.'),
(98155, 'https://ror.org/03qhydd02', 'en', 1, 'https://ror.org/03qhydd02 North Carolina Geological Survey'),
(98156, 'https://ror.org/03qk53891', 'no_lang_code', 1, 'https://ror.org/03qk53891 Yankuang Energy Group Company Limited (China) å…–ēŸæčƒ½ęŗé›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(98157, 'https://ror.org/03qkqe023', 'en', 0, 'https://ror.org/03qkqe023 Naval Ocean Systems Center'),
(98158, 'https://ror.org/03qn8ky51', 'en', 1, 'https://ror.org/03qn8ky51 Washington University Physicians'),
(98159, 'https://ror.org/03qr6jw57', 'en', 1, 'https://ror.org/03qr6jw57 Kansalliskirjasto National Library of Finland Nationalbiblioteket'),
(98160, 'https://ror.org/03qryx823', 'en', 1, 'https://ror.org/03qryx823 Technion – Israel Institute of Technology הטכניון – מכון טכנולוגי ×œ×™×©×Ø××œ Ų¬Ų§Ł…Ų¹Ų© ŲŖŲ®Ł†ŁŠŁˆŁ†'),
(98161, 'https://ror.org/03qt6f440', 'en', 1, 'https://ror.org/03qt6f440 LINK - Laboratory for Innovative Key Materials and Structures'),
(98162, '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.'),
(98163, 'https://ror.org/03qvznj82', 'es', 1, 'https://ror.org/03qvznj82 Centro de Rehabilitación Avanzada Sanitas Pozuelo Sanitas Pozuelo Advanced Rehabilitation Centre'),
(98164, 'https://ror.org/03qwx2883', 'en', 1, 'https://ror.org/03qwx2883 Fundació Puigvert Puigvert Foundation'),
(98165, 'https://ror.org/03qyv5w70', 'fr', 1, 'https://ror.org/03qyv5w70 Institut de Recherche en Sciences AppliquƩes et Technologies'),
(98166, 'https://ror.org/03qzktr95', 'en', 1, 'https://ror.org/03qzktr95 EAE Business School Escuela de Administración de Empresas'),
(98167, 'https://ror.org/03r1cma15', 'en', 1, 'https://ror.org/03r1cma15 Shanghai Electric Cable Research Institute äøŠęµ·ē”µē¼†ē ”ē©¶ę‰€åˆ›å»ŗ'),
(98168, 'https://ror.org/03r3cns79', 'en', 1, 'https://ror.org/03r3cns79 Centre for Renewable Energy and Power Systems'),
(98169, 'https://ror.org/03r3n3715', 'fr', 1, 'https://ror.org/03r3n3715 Ecole Nationale des Sciences GƩographiques'),
(98170, 'https://ror.org/03r42d171', 'en', 1, 'https://ror.org/03r42d171 Zahedan University of Medical Sciences'),
(98171, 'https://ror.org/03r4g9w46', 'en', 1, 'https://ror.org/03r4g9w46 Facility for Rare Isotope Beams'),
(98172, 'https://ror.org/03r6bpj37', 'en', 1, 'https://ror.org/03r6bpj37 WIN Consortium'),
(98173, 'https://ror.org/03r81z761', 'en', 1, 'https://ror.org/03r81z761 Bradens'' Hope For Childhood Cancer'),
(98174, 'https://ror.org/03r8z3t63', 'en', 1, 'https://ror.org/03r8z3t63 UNSW Sydney'),
(98175, 'https://ror.org/03r94n804', 'en', 1, 'https://ror.org/03r94n804 China National Heavy Machinery Research Institute Co., Ltd.'),
(98176, 'https://ror.org/03r9y0p94', 'no_lang_code', 1, 'https://ror.org/03r9y0p94 UL Solutions (United States)'),
(98177, 'https://ror.org/03raeyn57', 'pt', 1, 'https://ror.org/03raeyn57 Federal University of Western Bahia Universidade Federal do Oeste da Bahia'),
(98178, 'https://ror.org/03rc1y976', 'en', 1, 'https://ror.org/03rc1y976 Buildwise'),
(98179, 'https://ror.org/03rc9kz61', 'no_lang_code', 1, 'https://ror.org/03rc9kz61 Faes Farma (Spain)'),
(98180, 'https://ror.org/03rchg407', 'en', 1, 'https://ror.org/03rchg407 University of Belgrade – Faculty of Education Univerzitet u Beogradu – Fakultet za obrazovanje učitelja i vaspitača, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ за Š¾Š±Ń€Š°Š·Š¾Š²Š°ŃšŠµ ŃƒŃ‡ŠøŃ‚ŠµŃ™Š° Šø васпитача'),
(98181, 'https://ror.org/03rcpts17', 'no_lang_code', 1, 'https://ror.org/03rcpts17 Evident Corporation (Japan)'),
(98182, 'https://ror.org/03rd4h240', 'en', 0, 'https://ror.org/03rd4h240 Office of Electricity Delivery and Energy Reliability'),
(98183, 'https://ror.org/03rgvr466', 'en', 1, 'https://ror.org/03rgvr466 I AM ALS'),
(98184, 'https://ror.org/03rhjfh75', 'fr', 1, 'https://ror.org/03rhjfh75 Institut des Sciences des SociƩtƩs'),
(98185, 'https://ror.org/03rj0mt16', 'en', 1, 'https://ror.org/03rj0mt16 Naval Research Laboratory Marine Meteorology Division'),
(98186, 'https://ror.org/03rke0285', 'en', 1, 'https://ror.org/03rke0285 Baker Heart and Diabetes Institute'),
(98187, 'https://ror.org/03rpds343', 'ca', 1, 'https://ror.org/03rpds343 Museu d''Art Contemporani de Barcelona, Museu d’Art Contemporani de Barcelona'),
(98188, 'https://ror.org/03rpsvy57', 'en', 1, 'https://ror.org/03rpsvy57 Research Center for Eco-Environmental Sciences äø­å›½ē§‘å­¦é™¢ē”Ÿę€ēŽÆå¢ƒē ”ē©¶äø­åæƒ'),
(98189, 'https://ror.org/03rr60493', 'no_lang_code', 1, 'https://ror.org/03rr60493 Mega Grants ŠœŠ•Š“ŠŠ“Š ŠŠŠ¢Š«'),
(98190, 'https://ror.org/03rrd1912', 'en', 1, 'https://ror.org/03rrd1912 People for the Ethical Treatment of Animals'),
(98191, 'https://ror.org/03rsgdh53', 'en', 1, 'https://ror.org/03rsgdh53 ICAR - Central Island Agricultural Research Institute ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¦ą„ą¤Ŗą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(98192, 'https://ror.org/03rsncr94', 'nl', 1, 'https://ror.org/03rsncr94 4TU'),
(98193, 'https://ror.org/03rsp2g43', 'en', 1, 'https://ror.org/03rsp2g43 Mehboob Charity Vision International Eye and General Hospital'),
(98194, 'https://ror.org/03rt48n94', 'fr', 1, 'https://ror.org/03rt48n94 DƩlƩgation Paris 6'),
(98195, 'https://ror.org/03rtqzj55', 'no_lang_code', 0, 'https://ror.org/03rtqzj55 Inabensa (Spain)'),
(98196, 'https://ror.org/03rtw5049', 'en', 1, 'https://ror.org/03rtw5049 Laboratory for Ocean Physics and Satellite Remote Sensing'),
(98197, 'https://ror.org/03rvjk961', 'en', 1, 'https://ror.org/03rvjk961 Urasoe General Hospital'),
(98198, 'https://ror.org/03rvwhn52', 'fr', 1, 'https://ror.org/03rvwhn52 Centre d''Ʃtudes et de recherche sur les contentieux'),
(98199, 'https://ror.org/03rwgpn18', 'en', 1, 'https://ror.org/03rwgpn18 Clarkson University'),
(98200, 'https://ror.org/03ry2ah66', 'en', 1, 'https://ror.org/03ry2ah66 Sydney Institute of Marine Science'),
(98201, 'https://ror.org/03ry8wj79', 'es', 0, 'https://ror.org/03ry8wj79 Instituto de Biotecnología de León'),
(98202, 'https://ror.org/03s0hv140', 'es', 1, 'https://ror.org/03s0hv140 Instituto de Recursos Naturales y AgrobiologĆ­a de Sevilla'),
(98203, 'https://ror.org/03s0pzj56', 'fr', 1, 'https://ror.org/03s0pzj56 Roscoff Marine Station Station Biologique de Roscoff'),
(98204, 'https://ror.org/03s3m8k31', 'es', 1, 'https://ror.org/03s3m8k31 Instituto Tecnológico de Oaxaca Oaxaca Institute of Technology'),
(98205, 'https://ror.org/03s3xs393', 'fr', 1, 'https://ror.org/03s3xs393 Imaging and Orthopaedics Research Laboratory Laboratoire d''innovation ouverte en technologies de la santƩ'),
(98206, 'https://ror.org/03s4khd80', 'fr', 1, 'https://ror.org/03s4khd80 Cliniques Universitaires Saint-Luc Universitair ziekenhuis Sint-Lambrechts-Woluwe'),
(98207, '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'),
(98208, 'https://ror.org/03s7s9j23', 'no_lang_code', 1, 'https://ror.org/03s7s9j23 NKGen Biotech Inc. (United States)'),
(98209, 'https://ror.org/03saykv37', 'fr', 1, 'https://ror.org/03saykv37 Laboratoire Vision Action Cognition'),
(98210, 'https://ror.org/03scrf030', 'en', 1, 'https://ror.org/03scrf030 ProMedica Toledo Hospital'),
(98211, 'https://ror.org/03scswj21', 'sv', 1, 'https://ror.org/03scswj21 Stiftelsen Invandrarinstitut och Museum MƄngkulturellt centrum'),
(98212, 'https://ror.org/03sda3t31', 'ca', 1, 'https://ror.org/03sda3t31 Fundació Esclerosi Múltiple'),
(98213, 'https://ror.org/03sdv7269', 'no_lang_code', 1, 'https://ror.org/03sdv7269 PQShield (United Kingdom)'),
(98214, 'https://ror.org/03sgjjk97', 'en', 1, 'https://ror.org/03sgjjk97 Centre de recherche et de dƩveloppement de Lethbridge Lethbridge Research and Development Centre'),
(98215, 'https://ror.org/03sjf7w71', 'en', 1, 'https://ror.org/03sjf7w71 New England Water Science Center'),
(98216, 'https://ror.org/03sjvjt84', 'en', 1, 'https://ror.org/03sjvjt84 State Key Laboratory of Superhard Materials č¶…ē”¬ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98217, 'https://ror.org/03sk1we31', 'en', 1, 'https://ror.org/03sk1we31 National Nuclear Security Administration'),
(98218, 'https://ror.org/03sm1ej59', 'en', 1, 'https://ror.org/03sm1ej59 Cancer Registry of Norway'),
(98219, 'https://ror.org/03sny2w29', 'fr', 1, 'https://ror.org/03sny2w29 Communication BactƩrienne et StratƩgie Anti-infectieuses'),
(98220, 'https://ror.org/03snzfy68', 'en', 1, 'https://ror.org/03snzfy68 ProgHist Ltd.'),
(98221, 'https://ror.org/03sqrfm79', 'it', 1, 'https://ror.org/03sqrfm79 Azienda Socio Sanitaria Territoriale della Franciacorta Regional Health Care of Franciacorta'),
(98222, 'https://ror.org/03sqxae58', 'en', 1, 'https://ror.org/03sqxae58 Development Finance and Public Policies'),
(98223, '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'),
(98224, 'https://ror.org/03ssp8273', 'fr', 1, 'https://ror.org/03ssp8273 RƩsistances ThƩrapeutiques du Cancer de la Prostate'),
(98225, 'https://ror.org/03ssvsv78', 'en', 1, 'https://ror.org/03ssvsv78 Quantinuum, Quantinuum (United States)'),
(98226, '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'),
(98227, 'https://ror.org/03svwzw27', 'no_lang_code', 0, 'https://ror.org/03svwzw27 Ford Aerospace (United States)'),
(98228, 'https://ror.org/03svy9a26', 'no_lang_code', 1, 'https://ror.org/03svy9a26 Raytheon Technologies (France)'),
(98229, 'https://ror.org/03svzcs16', 'en', 0, 'https://ror.org/03svzcs16 Ministarstvo Gospodarstva, PodruzeniŔtva i Obrta Ministry of Economy, Entrepreneurship and Crafts'),
(98230, 'https://ror.org/03swgqh13', 'en', 1, 'https://ror.org/03swgqh13 Southern Marine Science and Engineering Guangdong Laboratory (Zhuhai) å—ę–¹ęµ·ę“‹ē§‘å­¦äøŽå·„ēØ‹å¹æäøœēœå®žéŖŒå®¤ (ē ęµ·)'),
(98231, 'https://ror.org/03swz0133', 'it', 1, 'https://ror.org/03swz0133 Region of Calabria Regione Calabria'),
(98232, 'https://ror.org/03szwdb82', 'en', 1, 'https://ror.org/03szwdb82 Institute for Socio-Ecological Research Instituto para Socio-Ecological Research'),
(98233, 'https://ror.org/03t0a5k13', 'en', 1, 'https://ror.org/03t0a5k13 Ministry of National Defense of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½å›½é˜²éƒØ'),
(98234, 'https://ror.org/03t0ryx68', 'es', 1, 'https://ror.org/03t0ryx68 CIC energiGUNE'),
(98235, 'https://ror.org/03t0xv603', 'de', 0, 'https://ror.org/03t0xv603 Universitätsklinik für Chirurgie Wien'),
(98236, 'https://ror.org/03t0yb134', 'en', 1, 'https://ror.org/03t0yb134 State Key Laboratory of Loess and Quaternary Geology é»„åœŸäøŽē¬¬å››ēŗŖåœ°č“Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98237, 'https://ror.org/03t2f0a12', 'fr', 1, 'https://ror.org/03t2f0a12 Institut des NanoSciences de Paris Institute of NanoSciences of Paris'),
(98238, 'https://ror.org/03t879f74', 'en', 1, 'https://ror.org/03t879f74 American Samoa Government'),
(98239, 'https://ror.org/03ta25k06', 'pt', 1, 'https://ror.org/03ta25k06 GoiƔs State University Universidade Estadual de GoiƔs'),
(98240, 'https://ror.org/03taa9n66', 'fr', 1, 'https://ror.org/03taa9n66 Institut de MicroƩlectronique, ElectromagnƩtisme et Photonique'),
(98241, 'https://ror.org/03tasdg80', 'en', 1, 'https://ror.org/03tasdg80 Istec Business School Paris'),
(98242, 'https://ror.org/03tba1v94', 'en', 1, 'https://ror.org/03tba1v94 Federal Rostov Agrarian Research Centre Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Ростовский Аграрный ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр'),
(98243, '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'),
(98244, 'https://ror.org/03tdnf746', 'no_lang_code', 1, 'https://ror.org/03tdnf746 CETEMMSA Technological Centre (Spain)'),
(98245, 'https://ror.org/03teh9b51', 'az', 0, 'https://ror.org/03teh9b51 Tafakkur University'),
(98246, 'https://ror.org/03tg3dp70', 'de', 1, 'https://ror.org/03tg3dp70 Deutsches ArchƤologisches Institut, Orient-Abteilung German Archaeological Institute, Orient Department'),
(98247, 'https://ror.org/03thdsj80', 'en', 1, 'https://ror.org/03thdsj80 Vodafone Foundation'),
(98248, 'https://ror.org/03tj80n37', 'en', 1, 'https://ror.org/03tj80n37 Goshen College'),
(98249, 'https://ror.org/03tjwy964', 'en', 1, 'https://ror.org/03tjwy964 Hospital de Veteranos VA Caribbean Healthcare System'),
(98250, 'https://ror.org/03tkwyq76', 'en', 1, 'https://ror.org/03tkwyq76 FELIX Laboratory'),
(98251, 'https://ror.org/03tm7k583', 'en', 0, 'https://ror.org/03tm7k583 Naval Weapons Center'),
(98252, 'https://ror.org/03tmzq288', 'en', 1, 'https://ror.org/03tmzq288 NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast'),
(98253, 'https://ror.org/03tncyc93', 'fr', 1, 'https://ror.org/03tncyc93 Institut des Sciences du Mouvement Etienne-Jules Marey'),
(98254, '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'),
(98255, 'https://ror.org/03try4356', 'en', 1, 'https://ror.org/03try4356 Virginia Mason Federal Way Medical Center'),
(98256, 'https://ror.org/03ts7z477', 'en', 1, 'https://ror.org/03ts7z477 Institut de radiophysique Institute of Radiation Physics'),
(98257, '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'),
(98258, 'https://ror.org/03tsg3y65', 'en', 1, 'https://ror.org/03tsg3y65 Centre for Climate Change Economics and Policy'),
(98259, 'https://ror.org/03twns208', 'en', 1, 'https://ror.org/03twns208 State Key Laboratory of Biomacromolecules ē”Ÿē‰©å¤§åˆ†å­å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98260, 'https://ror.org/03txr3336', 'fr', 1, 'https://ror.org/03txr3336 Institut de Combustion AƩrothermique RƩactivitƩ et Environnement'),
(98261, 'https://ror.org/03ty8yr27', 'en', 1, 'https://ror.org/03ty8yr27 Calcul canada Compute Canada'),
(98262, 'https://ror.org/03tzaeb71', 'en', 1, 'https://ror.org/03tzaeb71 Universidad de HawÔi University of Hawaii System Université d''hawaï'),
(98263, 'https://ror.org/03tzsdk41', 'fr', 1, 'https://ror.org/03tzsdk41 Sentinel North Sentinelle Nord'),
(98264, 'https://ror.org/03tzyrt94', 'es', 1, 'https://ror.org/03tzyrt94 Nebrija University Universidad Nebrija'),
(98265, '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'),
(98266, 'https://ror.org/03v3f4276', 'es', 1, 'https://ror.org/03v3f4276 Fundacion Phantoms Phantoms Foundation'),
(98267, 'https://ror.org/03v6m3209', 'en', 1, 'https://ror.org/03v6m3209 Frederick National Laboratory for Cancer Research'),
(98268, 'https://ror.org/03v7tx966', 'en', 1, 'https://ror.org/03v7tx966 Huntsman Cancer Institute'),
(98269, 'https://ror.org/03v83q278', 'fr', 0, 'https://ror.org/03v83q278 Cancers et PrƩventions'),
(98270, 'https://ror.org/03v94bt80', 'no_lang_code', 1, 'https://ror.org/03v94bt80 GPTech (Spain)'),
(98271, 'https://ror.org/03vadg117', 'pt', 1, 'https://ror.org/03vadg117 Hospital UniversitƔrio Regional de MaringƔ'),
(98272, 'https://ror.org/03vaedy56', 'en', 0, 'https://ror.org/03vaedy56 Ontario Fonds ontarien pour l''innovation Ontario Innovation Trust'),
(98273, 'https://ror.org/03vaqfv64', 'en', 1, 'https://ror.org/03vaqfv64 GNS Science'),
(98274, 'https://ror.org/03vc2bp93', 'en', 1, 'https://ror.org/03vc2bp93 UNAD Florida'),
(98275, 'https://ror.org/03vd52t28', 'no_lang_code', 1, 'https://ror.org/03vd52t28 Family Process Institute (United States)'),
(98276, 'https://ror.org/03vd86m49', 'es', 1, 'https://ror.org/03vd86m49 Colegio Universitario de San Juan'),
(98277, 'https://ror.org/03vff5r77', 'no_lang_code', 1, 'https://ror.org/03vff5r77 Eastern Research Group (United States)'),
(98278, 'https://ror.org/03vfq0c73', 'fr', 1, 'https://ror.org/03vfq0c73 Laboratoire sur les chaussƩes et matƩriaux bitumineux Pavements and Bituminous Materials Laboratory'),
(98279, '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'),
(98280, 'https://ror.org/03vgk1715', 'de', 1, 'https://ror.org/03vgk1715 Landes Tirols'),
(98281, 'https://ror.org/03vh04164', 'en', 1, 'https://ror.org/03vh04164 Manchester Community College - Connecticut'),
(98282, 'https://ror.org/03vht8z34', 'es', 1, 'https://ror.org/03vht8z34 Ebro Observatory Observatori de l''Ebre, Observatorio del Ebro'),
(98283, 'https://ror.org/03vk18a84', 'en', 1, 'https://ror.org/03vk18a84 Australian Synchrotron'),
(98284, 'https://ror.org/03vkake80', 'en', 1, 'https://ror.org/03vkake80 Collège américain de grèce The American College of Greece'),
(98285, 'https://ror.org/03vkkad71', 'fr', 1, 'https://ror.org/03vkkad71'),
(98286, 'https://ror.org/03vn1bh77', 'it', 1, 'https://ror.org/03vn1bh77 Istituto Nazionale di Ricerca Metrologica'),
(98287, 'https://ror.org/03vn1ts68', 'en', 1, 'https://ror.org/03vn1ts68 Princeton Plasma Physics Laboratory'),
(98288, 'https://ror.org/03vpbkt44', 'tr', 1, 'https://ror.org/03vpbkt44 Germencik Devlet Hastanesi'),
(98289, 'https://ror.org/03vq33s23', 'en', 1, 'https://ror.org/03vq33s23 Kurdistan Institute for Strategic Studies and Scientific Research ŲÆŪ•Ų³ŲŖŪ•ŪŒ Ś©ŁˆŲ±ŲÆŲ³ŲŖŲ§Ł†ŪŒ ŲØŪ† دراساتی ستراتیجی و ŲŖŁˆŪŽŚ˜ŪŒŁ†Ū•ŁˆŪ•ŪŒ Ų²Ų§Ł†Ų³ŲŖŪŒ'),
(98290, 'https://ror.org/03vr22992', 'en', 1, 'https://ror.org/03vr22992 Connecticut State Colleges and Universities'),
(98291, 'https://ror.org/03vsc0s28', 'fr', 1, 'https://ror.org/03vsc0s28 Fondation CentraleSupƩlec'),
(98292, 'https://ror.org/03vt7q796', 'no_lang_code', 1, 'https://ror.org/03vt7q796 Aptar (France)'),
(98293, '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'),
(98294, 'https://ror.org/03vwm7722', 'es', 1, 'https://ror.org/03vwm7722 Hospital Militar Regional de Especialidades Guadalajara'),
(98295, 'https://ror.org/03w2j5y17', 'en', 1, 'https://ror.org/03w2j5y17 National University of Sciences and Technology'),
(98296, 'https://ror.org/03w36pm25', 'es', 1, 'https://ror.org/03w36pm25 Casa de VelƔzquez'),
(98297, 'https://ror.org/03w41by72', 'en', 1, 'https://ror.org/03w41by72 State Key Laboratory of Resources and Environmental Information System čµ„ęŗäøŽēŽÆå¢ƒäæ”ęÆē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98298, 'https://ror.org/03w5sq511', 'en', 1, 'https://ror.org/03w5sq511 Indian Institute of Technology Kharagpur ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾, ą¤–ą¤”ą„ą¤—ą¤Ŗą„‚ą¤° ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤–ą¤”ą¤¼ą¤—ą¤Ŗą„ą¤° ভারতীয় ą¦Ŗą§ą¦°ą§Œą¦¦ą§ą¦Æą§‹ą¦—ą¦æą¦•ą§€ ą¦øą¦‚ą¦øą§ą¦„ą¦¾ą¦Ø, খঔ়গপুর ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®°ą®•ąÆą®ŖąÆ‚ą®°ąÆ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“–ą“°ą“—ąµā€Œą“Ŗąµ‚ąµ¼'),
(98299, 'https://ror.org/03w60rc21', 'en', 1, 'https://ror.org/03w60rc21 State Key Laboratory of Marine Pollution ęµ·ę“‹ę±”ęŸ“å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98300, 'https://ror.org/03w8jwa36', 'fr', 1, 'https://ror.org/03w8jwa36 Centre de recherche juridique Pothier'),
(98301, 'https://ror.org/03wa2q724', 'en', 1, 'https://ror.org/03wa2q724 Children''s National'),
(98302, 'https://ror.org/03wbkx358', 'en', 1, 'https://ror.org/03wbkx358 Federal Office of Meteorology and Climatology MeteoSwiss MeteoSchweiz MeteoSvizzera MƩtƩoSuisse'),
(98303, 'https://ror.org/03wefcv03', 'en', 1, 'https://ror.org/03wefcv03 Sunnybrook Health Science Centre'),
(98304, 'https://ror.org/03wej2k16', 'no_lang_code', 1, 'https://ror.org/03wej2k16 WWF-Cambodia'),
(98305, 'https://ror.org/03wg5pr04', 'en', 1, 'https://ror.org/03wg5pr04 Pacific Islands University'),
(98306, 'https://ror.org/03wg93s13', 'fr', 1, 'https://ror.org/03wg93s13 Biologie IntƩgrative des Organismes Marins Integrative Biology of Marine Organisms'),
(98307, 'https://ror.org/03wkvpx79', 'en', 1, 'https://ror.org/03wkvpx79 Shanghai Artificial Intelligence Laboratory äøŠęµ·äŗŗå·„ę™ŗčƒ½å®žéŖŒå®¤'),
(98308, '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'),
(98309, 'https://ror.org/03wmj4s33', 'en', 1, 'https://ror.org/03wmj4s33 College of Management Academic Studies'),
(98310, 'https://ror.org/03wmjs517', 'en', 1, 'https://ror.org/03wmjs517 Core Research Center'),
(98311, 'https://ror.org/03wmx8367', 'en', 0, 'https://ror.org/03wmx8367 National Coordination Office'),
(98312, 'https://ror.org/03wp9yy58', 'it', 1, 'https://ror.org/03wp9yy58 Foraggere e Lattiero Casearie'),
(98313, 'https://ror.org/03wsxqp04', 'no_lang_code', 1, 'https://ror.org/03wsxqp04 Alleo Labs (United States)'),
(98314, 'https://ror.org/03wtvtx73', 'en', 1, 'https://ror.org/03wtvtx73 Faculty of Humanities and Social Sciences in Zagreb Filozofski fakultet u Zagrebu'),
(98315, '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'),
(98316, 'https://ror.org/03wxndv36', 'fr', 1, 'https://ror.org/03wxndv36 Centre de Recherche Saint-Antoine Saint-Antoine Research Center'),
(98317, 'https://ror.org/03wyf0g15', 'it', 1, 'https://ror.org/03wyf0g15 Institute of Biomolecular Chemistry Istituto di Chimica Biomolecolare'),
(98318, 'https://ror.org/03wz10q85', 'en', 1, 'https://ror.org/03wz10q85 NIHR School for Primary Care Research'),
(98319, 'https://ror.org/03x08qn04', 'en', 1, 'https://ror.org/03x08qn04 State Key Laboratory of Microbial Technology å¾®ē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98320, 'https://ror.org/03x0yny97', 'fr', 1, 'https://ror.org/03x0yny97 Ɖco-Anthropologie'),
(98321, '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'),
(98322, 'https://ror.org/03x30hb31', 'fr', 1, 'https://ror.org/03x30hb31 Institut de Recherche en GƩnie Civil et MƩcanique'),
(98323, 'https://ror.org/03x3g5467', 'en', 1, 'https://ror.org/03x3g5467 Taylor Family Institute for Innovative Psychiatric Research'),
(98324, 'https://ror.org/03x4k6n70', 'en', 1, 'https://ror.org/03x4k6n70 Conseil des produits agricoles du Canada Farm Products Council of Canada'),
(98325, 'https://ror.org/03x4pp342', 'en', 1, 'https://ror.org/03x4pp342 Beaumont Hospital, Dearborn'),
(98326, 'https://ror.org/03x4v9v20', 'id', 1, 'https://ror.org/03x4v9v20 STIE Enam Enam Kendari'),
(98327, 'https://ror.org/03x5agy13', 'en', 1, 'https://ror.org/03x5agy13 National Geological and Geophysical Data Preservation Program'),
(98328, 'https://ror.org/03x7xkt65', 'en', 1, 'https://ror.org/03x7xkt65 Bailey-Boushay House'),
(98329, 'https://ror.org/03x8fem72', 'fr', 1, 'https://ror.org/03x8fem72 Laboratoire Image, Ville, Environnement Laboratory Image, City, Environment'),
(98330, 'https://ror.org/03x937183', 'en', 1, 'https://ror.org/03x937183 Cancer Hospital of Chinese Academy of Medical Sciences äø­å›½åŒ»å­¦ē§‘å­¦é™¢č‚æē˜¤åŒ»é™¢'),
(98331, 'https://ror.org/03x95bs79', 'en', 1, 'https://ror.org/03x95bs79 Mariupol State University ŠœŠ°Ń€ŠøŃƒŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ°Ń€Ń–ŃƒŠæŠ¾Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98332, 'https://ror.org/03x9frp33', 'fr', 1, 'https://ror.org/03x9frp33 Institut du Fer Ć  Moulin'),
(98333, 'https://ror.org/03x9nbm24', 'en', 1, 'https://ror.org/03x9nbm24 Office of Regulatory and Policy Affairs'),
(98334, 'https://ror.org/03xb04968', 'en', 1, 'https://ror.org/03xb04968 Anhui Medical University å®‰å¾½åŒ»ē§‘å¤§å­¦'),
(98335, 'https://ror.org/03xb7kp74', 'es', 1, 'https://ror.org/03xb7kp74 Solti'),
(98336, 'https://ror.org/03xba7c91', 'en', 1, 'https://ror.org/03xba7c91 Fiona Stanley Fremantle Hospitals Group'),
(98337, 'https://ror.org/03xeb9420', 'en', 1, 'https://ror.org/03xeb9420 City University of Pasay'),
(98338, 'https://ror.org/03xf64p49', 'en', 1, 'https://ror.org/03xf64p49 National Centre of Competence in Research Digital Fabrication Nationaler Forschungsschwerpunkt Digitale Fabrikation'),
(98339, 'https://ror.org/03xfh2n14', 'sv', 1, 'https://ror.org/03xfh2n14 SprƄkbanken Text'),
(98340, 'https://ror.org/03xj2sn10', 'es', 1, 'https://ror.org/03xj2sn10 Complejo Hospitalario Universitario de Ferrol'),
(98341, 'https://ror.org/03xk60j79', 'es', 1, 'https://ror.org/03xk60j79 Institute of Physical Chemistry Blas Cabrera Instituto de QuĆ­mica FĆ­sica Blas Cabrera'),
(98342, 'https://ror.org/03xmjtz19', 'fr', 1, 'https://ror.org/03xmjtz19 Architecture et RƩactivitƩ de l''arN'),
(98343, 'https://ror.org/03xsh7c04', 'en', 1, 'https://ror.org/03xsh7c04 Colorado Clinical and Translational Sciences Institute'),
(98344, 'https://ror.org/03xsqa235', 'fr', 1, 'https://ror.org/03xsqa235 Institut SupƩrieur d''Agriculture RhƓne-Alpes');
INSERT INTO `rors` VALUES
(98345, 'https://ror.org/03xtn0506', 'en', 1, 'https://ror.org/03xtn0506 Weston Havens Foundation'),
(98346, 'https://ror.org/03xwa9562', 'en', 1, 'https://ror.org/03xwa9562 University of Pennsylvania Press'),
(98347, 'https://ror.org/03xyv9729', 'en', 1, 'https://ror.org/03xyv9729 Instituto Portuario de Estudios y Cooperación Port Institute for Studies and Cooperation'),
(98348, 'https://ror.org/03y0ymy78', 'en', 1, 'https://ror.org/03y0ymy78 Canolfan Polisi Cyhoeddus Cymru Wales Centre for Public Policy'),
(98349, 'https://ror.org/03y1aw075', 'en', 1, 'https://ror.org/03y1aw075 State Key Laboratory of Coal Combustion ē…¤ē‡ƒēƒ§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98350, 'https://ror.org/03y4gzw57', 'en', 1, 'https://ror.org/03y4gzw57 Hunan Communication Polytechnic ę¹–å—äŗ¤é€ščŒäøšęŠ€ęœÆå­¦é™¢'),
(98351, 'https://ror.org/03y8ggs73', 'no_lang_code', 0, 'https://ror.org/03y8ggs73 Marconi Electronic Systems (United Kingdom)'),
(98352, 'https://ror.org/03y8jvk69', 'no_lang_code', 1, 'https://ror.org/03y8jvk69 NestlƩ Health Science NestlƩ Health Science (United States)'),
(98353, 'https://ror.org/03ycqrz18', 'es', 1, 'https://ror.org/03ycqrz18 Centro Nacional de Microelectrónica National Microelectronics Center'),
(98354, 'https://ror.org/03ygqq617', 'en', 1, 'https://ror.org/03ygqq617 Queen Arwa University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„ŁƒŲ© Ų£Ų±ŁˆŁ‰'),
(98355, 'https://ror.org/03yk4dt83', 'es', 1, 'https://ror.org/03yk4dt83 Hospital Lluis Alcanyis'),
(98356, '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'),
(98357, 'https://ror.org/03ymfh571', 'en', 1, 'https://ror.org/03ymfh571 Jilin Provincial Institute of Occupational Health å‰ęž—ēœčŒäøšē—…é˜²ę²»é™¢'),
(98358, 'https://ror.org/03ynn1n59', 'en', 1, 'https://ror.org/03ynn1n59 Ritsumeikan Asia Pacific University 立命館アジア太平擋大学'),
(98359, 'https://ror.org/03yp20v68', 'id', 0, 'https://ror.org/03yp20v68 Institut Agama Islam Negeri Bengkulu'),
(98360, 'https://ror.org/03ypc6863', 'en', 1, 'https://ror.org/03ypc6863 EXP, EXP (Canada)'),
(98361, 'https://ror.org/03yr99j48', 'en', 1, 'https://ror.org/03yr99j48 NIHR Maudsley Dementia Biomedical Research Unit'),
(98362, 'https://ror.org/03ysnvs95', 'pt', 1, 'https://ror.org/03ysnvs95 Centro Superior de Ensino e Pesquisa de Machado'),
(98363, 'https://ror.org/03yvpw311', 'en', 1, 'https://ror.org/03yvpw311 State Key Laboratory of High Performance Ceramics and Superfine Microstructure é«˜ę€§čƒ½é™¶ē“·å’Œč¶…å¾®ē»“ęž„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98364, 'https://ror.org/03yvs0f43', 'no_lang_code', 0, 'https://ror.org/03yvs0f43 Integrated Device Technology (United States)'),
(98365, 'https://ror.org/03yycdv57', 'es', 1, 'https://ror.org/03yycdv57 Instituto GeogrƔfico Nacional National Geographic Institute'),
(98366, 'https://ror.org/03yz3tz18', 'fr', 1, 'https://ror.org/03yz3tz18 Direction GƩnƩrale DƩlƩguƩe aux Ressources'),
(98367, 'https://ror.org/03z0mke78', 'en', 1, 'https://ror.org/03z0mke78 Royal Victoria Eye and Ear Hospital'),
(98368, 'https://ror.org/03z0nnr82', 'en', 1, 'https://ror.org/03z0nnr82 Global Frontier Hybrid Interface Materials'),
(98369, 'https://ror.org/03z1w3b90', 'en', 1, 'https://ror.org/03z1w3b90 CHI Health Creighton University Medical Center - Bergan Mercy'),
(98370, 'https://ror.org/03z20vp15', 'fr', 1, 'https://ror.org/03z20vp15 Laboratoire de Chimie Physique - MatiĆØre et Rayonnement'),
(98371, 'https://ror.org/03z21mf61', 'en', 1, 'https://ror.org/03z21mf61 Lawrence Livermore National Security'),
(98372, 'https://ror.org/03z4h9c97', 'en', 1, 'https://ror.org/03z4h9c97 Kailash Healthcare'),
(98373, 'https://ror.org/03z7kp760', 'en', 0, 'https://ror.org/03z7kp760 Asia University äŗžę“²å¤§å­ø'),
(98374, 'https://ror.org/03z8dnf91', 'en', 1, 'https://ror.org/03z8dnf91 Institute of Geology, China Earthquake Administration äø­å›½åœ°éœ‡å±€åœ°č“Øē ”ē©¶ę‰€'),
(98375, 'https://ror.org/03ze5ke63', 'en', 1, 'https://ror.org/03ze5ke63 Qingdao Municipal Science and Technology Bureau'),
(98376, 'https://ror.org/03zefme93', 'es', 1, 'https://ror.org/03zefme93 Botín Foundation Fundación Botín'),
(98377, 'https://ror.org/03zfa9g67', 'en', 1, 'https://ror.org/03zfa9g67 State Key Laboratory of Animal Nutrition åŠØē‰©č„å…»å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98378, 'https://ror.org/03zftke13', 'pt', 1, 'https://ror.org/03zftke13 Faculdade EstƔcio de Alagoas'),
(98379, 'https://ror.org/03zh4pz48', 'no_lang_code', 1, 'https://ror.org/03zh4pz48 Anterogen (South Korea) ģ•ˆķŠøė”œģ  '),
(98380, 'https://ror.org/03zjsxj44', 'en', 1, 'https://ror.org/03zjsxj44 Vinnytsia Mykhailo Kotsiubynskyi State Pedagogical University Š’Ń–Š½Š½ŠøŃ†ŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠœŠøŃ…Š°Š¹Š»Š° ŠšŠ¾Ń†ŃŽŠ±ŠøŠ½ŃŃŒŠŗŠ¾Š³Š¾'),
(98381, 'https://ror.org/03zpdb397', 'fr', 1, 'https://ror.org/03zpdb397 Centre d’Etude et de recherche Editer/InterprĆ©ter'),
(98382, 'https://ror.org/03zpx9a04', 'es', 1, 'https://ror.org/03zpx9a04 Fundación Pública Andaluza Centro de las Nuevas Tecnologías del Agua'),
(98383, 'https://ror.org/03zxdkx17', 'en', 1, 'https://ror.org/03zxdkx17 State Key Laboratory of Advanced Welding and Joining å…ˆčæ›ē„ŠęŽ„äøŽčæžęŽ„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98384, 'https://ror.org/03zykbw64', 'es', 1, 'https://ror.org/03zykbw64 Hospital General del Sur de Quito, IESS'),
(98385, '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'),
(98386, 'https://ror.org/03zzw1w08', 'en', 1, 'https://ror.org/03zzw1w08 Mayo Clinic in Florida'),
(98387, 'https://ror.org/040110q42', 'fr', 1, 'https://ror.org/040110q42 Laboratoire d’études en droits fondamentaux, des Ć©changes internationaux et de la mer'),
(98388, 'https://ror.org/0401py619', 'no_lang_code', 1, 'https://ror.org/0401py619 EnergĆ­a & Celulosa (Spain)'),
(98389, 'https://ror.org/0401vze59', 'en', 0, 'https://ror.org/0401vze59 Astrophysics Science Division'),
(98390, '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'),
(98391, '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'),
(98392, 'https://ror.org/0407gn548', 'en', 1, 'https://ror.org/0407gn548 NGIS, NGIS (Australia)'),
(98393, 'https://ror.org/0409p1440', 'en', 1, 'https://ror.org/0409p1440 ASrid äŗŗć‚¢ć‚¹ćƒŖćƒƒćƒ‰'),
(98394, 'https://ror.org/040d87505', 'fr', 1, 'https://ror.org/040d87505 Nutrition, Inflammation et axe Microbiote-Intestin-Cerveau'),
(98395, 'https://ror.org/040ehf661', 'es', 1, 'https://ror.org/040ehf661 SINPROMI, Sociedad Insular para la Promoción de las personas con discapacidad'),
(98396, 'https://ror.org/040g91402', 'en', 1, 'https://ror.org/040g91402 CICE Consortium'),
(98397, 'https://ror.org/040gcmg81', 'en', 1, 'https://ror.org/040gcmg81 Institut National du Cancer Instituto Nacional del CƔncer National Cancer Institute'),
(98398, 'https://ror.org/040hez064', 'fr', 1, 'https://ror.org/040hez064 UniversitƩ Dakar-Bourguiba'),
(98399, 'https://ror.org/040kx1j83', 'es', 1, 'https://ror.org/040kx1j83 Instituto de FĆ­sica de Cantabria'),
(98400, 'https://ror.org/040p1ka70', 'es', 1, 'https://ror.org/040p1ka70 Ministerio de Hacienda y Función Pública Ministry of Finance'),
(98401, 'https://ror.org/040qadc12', 'fr', 1, 'https://ror.org/040qadc12 Normandie Innovation MarchƩ Entreprise Consommation'),
(98402, '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. ú.'),
(98403, 'https://ror.org/040sbec56', 'en', 1, 'https://ror.org/040sbec56 Foundation for Transport and Energy Research and Development'),
(98404, 'https://ror.org/040scgh75', 'es', 1, 'https://ror.org/040scgh75 Community of Madrid Comunidad de Madrid'),
(98405, 'https://ror.org/040skp162', 'en', 1, 'https://ror.org/040skp162 Japanese Society of Toxicologic Pathology ę—„ęœ¬ęÆ’ę€§ē—…ē†å­¦ä¼š'),
(98406, 'https://ror.org/040sm9666', 'en', 1, 'https://ror.org/040sm9666 AlmuƱecar International School'),
(98407, 'https://ror.org/040sq8567', 'fr', 1, 'https://ror.org/040sq8567 Canal Savoir'),
(98408, 'https://ror.org/040vfrk87', 'pt', 1, 'https://ror.org/040vfrk87 Centro UniversitÔrio das Américas (FAM) - São Paulo'),
(98409, 'https://ror.org/040vxhp34', 'en', 1, 'https://ror.org/040vxhp34 Oak Ridge Institute for Science and Education'),
(98410, 'https://ror.org/040xx6p34', 'en', 1, 'https://ror.org/040xx6p34 National Institutes for the Humanities äŗŗé–“ę–‡åŒ–ē ”ē©¶ę©Ÿę§‹'),
(98411, 'https://ror.org/040xzg562', 'es', 1, 'https://ror.org/040xzg562 Hospital Universitario Puerta del Mar'),
(98412, 'https://ror.org/040yga518', 'es', 1, 'https://ror.org/040yga518 Consejería de Desarrollo Educativo y Formación Porfesional'),
(98413, 'https://ror.org/040yzj036', 'no_lang_code', 1, 'https://ror.org/040yzj036 AB-Biotics (Spain)'),
(98414, 'https://ror.org/040zr6b15', 'en', 1, 'https://ror.org/040zr6b15 Pathophysiology, Diagnosis and Treatment of Bone Diseases Physiopathologie, Diagnostic et Traitements des Maladies Osseuses'),
(98415, 'https://ror.org/040zw0170', 'en', 1, 'https://ror.org/040zw0170 Chandler–Gilbert Community College'),
(98416, 'https://ror.org/0410xnr11', 'pl', 1, 'https://ror.org/0410xnr11 Air Force Institute of Technology Instytut Techniczny Wojsk Lotniczych'),
(98417, 'https://ror.org/04142jt33', 'en', 1, 'https://ror.org/04142jt33 State Key Laboratory of Compressor Technology åŽ‹ē¼©ęœŗęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98418, 'https://ror.org/0414fmh90', 'de', 1, 'https://ror.org/0414fmh90 WüSpace e.V.'),
(98419, 'https://ror.org/0414tnt28', 'en', 1, 'https://ror.org/0414tnt28 Breast Cancer Recovery'),
(98420, 'https://ror.org/0415p6x27', 'en', 1, 'https://ror.org/0415p6x27 Fermilab Accelerator Complex'),
(98421, 'https://ror.org/041684t28', 'en', 0, 'https://ror.org/041684t28 Mental Health Research Institute'),
(98422, 'https://ror.org/041818q22', 'en', 1, 'https://ror.org/041818q22 State Key Laboratory for Geomechanics and Deep Underground Engineering ę·±éƒØå²©åœŸåŠ›å­¦äøŽåœ°äø‹å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98423, 'https://ror.org/041a6mg32', 'fr', 0, 'https://ror.org/041a6mg32 Agence Nationale pour la Gestion des DƩchets Radioactifs'),
(98424, 'https://ror.org/041agrq44', 'no_lang_code', 1, 'https://ror.org/041agrq44 Eerste Kamer der Staten-Generaal Senate'),
(98425, 'https://ror.org/041bbkr27', 'en', 1, 'https://ror.org/041bbkr27 Centro de Satélites de la Unión Europea European Union Satellite Centre'),
(98426, 'https://ror.org/041bgem97', 'en', 1, 'https://ror.org/041bgem97 Alte University'),
(98427, 'https://ror.org/041c71a74', 'es', 1, 'https://ror.org/041c71a74 CITA-alzheimer Fundazioa Fundacion CITA Alzheimer'),
(98428, 'https://ror.org/041ctrc20', 'fr', 1, 'https://ror.org/041ctrc20 Centre de droit comparƩ du travail et de la sƩcuritƩ sociale'),
(98429, 'https://ror.org/041ddxq18', 'en', 1, 'https://ror.org/041ddxq18 University of Doha for Science and Technology'),
(98430, 'https://ror.org/041fzsr16', 'en', 1, 'https://ror.org/041fzsr16 Veterinary Services and Animal Health'),
(98431, 'https://ror.org/041g4v832', 'en', 1, 'https://ror.org/041g4v832 Office of Cybersecurity, Energy Security, and Emergency Response'),
(98432, 'https://ror.org/041hkjs21', 'en', 1, 'https://ror.org/041hkjs21 Geosciences and Environmental Change Science Center'),
(98433, 'https://ror.org/041kymq04', 'en', 1, 'https://ror.org/041kymq04 Gujarat Council on Science and Technology'),
(98434, 'https://ror.org/041njsz97', 'en', 1, 'https://ror.org/041njsz97 ARC Centre for Forest Value'),
(98435, 'https://ror.org/041px5t13', 'es', 1, 'https://ror.org/041px5t13 "Miguel Antonio CatalƔn" Physics Center Centro de Fƭsica Miguel Antonio CatalƔn'),
(98436, 'https://ror.org/041qf4r12', 'en', 1, 'https://ror.org/041qf4r12 China University of Petroleum, Beijing äø­å›½ēŸ³ę²¹å¤§å­¦'),
(98437, 'https://ror.org/041qq2t66', 'en', 0, 'https://ror.org/041qq2t66 Leverhulme Centre for Integrative Research on Agriculture and Health'),
(98438, 'https://ror.org/041repn61', 'no_lang_code', 1, 'https://ror.org/041repn61 Astellas Pharma (Canada) Astellas Pharmaceuticals'),
(98439, 'https://ror.org/041skvj95', 'es', 1, 'https://ror.org/041skvj95 Instituto Superior de CiĆŖncias Policiais'),
(98440, 'https://ror.org/041spkd04', 'da', 0, 'https://ror.org/041spkd04 Danish National Advanced Technology Foundation HĆøjteknologifonden'),
(98441, 'https://ror.org/041v2hk34', 'fr', 1, 'https://ror.org/041v2hk34 Immunologie, Immunopathologie et Chimie ThƩrapeutique'),
(98442, 'https://ror.org/041vb4f30', 'en', 1, 'https://ror.org/041vb4f30 UCD Centre for Veterinary Epidemiology and Risk Analysis'),
(98443, 'https://ror.org/041vg2t58', 'it', 1, 'https://ror.org/041vg2t58 Regione Autonoma della Sardegna'),
(98444, 'https://ror.org/041wgbs27', 'de', 1, 'https://ror.org/041wgbs27 Clienia AG'),
(98445, 'https://ror.org/041yk2d64', 'pt', 1, 'https://ror.org/041yk2d64 Federal University of Rio Grande do Sul Universidade Federal do Rio Grande do Sul'),
(98446, 'https://ror.org/041yqj635', 'en', 1, 'https://ror.org/041yqj635 Steel Authority of India Limited'),
(98447, 'https://ror.org/041zb4f52', 'en', 1, 'https://ror.org/041zb4f52 Youth Scotland'),
(98448, 'https://ror.org/0420bch11', 'id', 1, 'https://ror.org/0420bch11 Universitas PGRI Mahadewa Indonesia'),
(98449, 'https://ror.org/0420bzz85', 'id', 1, 'https://ror.org/0420bzz85 Universitas Pembangunan Nasional Veteran Yogyakarta'),
(98450, 'https://ror.org/0423q9896', 'es', 1, 'https://ror.org/0423q9896 Centro MƩdico Sanitas Las Rozas Sanitas Las Rozas Medical Centre'),
(98451, 'https://ror.org/04247y265', 'fr', 1, 'https://ror.org/04247y265 Unité de Recherche Pluridisciplinaire Prairies et Plantes Fourragères'),
(98452, 'https://ror.org/0424h4e32', 'en', 1, 'https://ror.org/0424h4e32 Institute of Atmospheric Physics 中国科学院大气物理研究所'),
(98453, 'https://ror.org/0425gsx30', 'en', 1, 'https://ror.org/0425gsx30 Protein Information Resource'),
(98454, 'https://ror.org/0428xjm46', 'en', 1, 'https://ror.org/0428xjm46 British Society for Neuroendocrinology'),
(98455, 'https://ror.org/042dh5y83', 'es', 1, 'https://ror.org/042dh5y83 Fundación Medina'),
(98456, 'https://ror.org/042ds2135', 'fr', 1, 'https://ror.org/042ds2135 Groupe de Recherches sur l''EnergƩtique des Milieux IonisƩs'),
(98457, 'https://ror.org/042en9b35', 'no_lang_code', 1, 'https://ror.org/042en9b35 Accelleran NV Accelleran NV (Belgium)'),
(98458, 'https://ror.org/042fhmq33', 'en', 1, 'https://ror.org/042fhmq33 Packard Center'),
(98459, 'https://ror.org/042heps41', 'en', 0, 'https://ror.org/042heps41 University College at Rockland'),
(98460, 'https://ror.org/042hptv04', 'en', 1, 'https://ror.org/042hptv04 Medical University of Ilam دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§ŪŒŁ„Ų§Ł…'),
(98461, 'https://ror.org/042j26x71', 'fr', 1, 'https://ror.org/042j26x71 Centre de recherche Versailles Saint-Quentin Institutions Publiques'),
(98462, 'https://ror.org/042j5cq94', 'no_lang_code', 1, 'https://ror.org/042j5cq94 Assheuer + Pott (Germany)'),
(98463, 'https://ror.org/042j94f44', 'en', 1, 'https://ror.org/042j94f44 Marine Technology Unit Unidad de TecnologĆ­a Marina Unitat de Tecnologia Marina'),
(98464, 'https://ror.org/042jh8155', 'en', 1, 'https://ror.org/042jh8155 Institut für Produktives Lernen in Europa Institute for Productive Learning in Europe'),
(98465, 'https://ror.org/042k5q325', 'en', 1, 'https://ror.org/042k5q325 European Metrology Programme for Innovation and Research'),
(98466, 'https://ror.org/042mgk630', 'en', 1, 'https://ror.org/042mgk630 State Key Laboratory of Rail Transit Control and Safety č½Øé“äŗ¤é€šęŽ§åˆ¶äøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98467, 'https://ror.org/042r36z33', 'pt', 1, 'https://ror.org/042r36z33 State University of ParĆ” Universidade do Estado do ParĆ”'),
(98468, 'https://ror.org/042rvyb12', 'en', 1, 'https://ror.org/042rvyb12 European Mathematical Society'),
(98469, 'https://ror.org/042t2dj58', 'no_lang_code', 1, 'https://ror.org/042t2dj58 Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China) ę²ˆé˜³äø­åŒ–å†œčÆåŒ–å·„ē ”å‘ęœ‰é™å…¬åø'),
(98470, 'https://ror.org/042t83k43', 'fr', 1, 'https://ror.org/042t83k43 DƩlƩgation Midi PyrƩnƩes'),
(98471, 'https://ror.org/042vxm455', 'no_lang_code', 1, 'https://ror.org/042vxm455 Bloomsbury (United States)'),
(98472, 'https://ror.org/042wftp98', 'en', 1, 'https://ror.org/042wftp98 University of Chicago Medicine Comprehensive Cancer Center'),
(98473, 'https://ror.org/042x5bs02', 'no_lang_code', 1, 'https://ror.org/042x5bs02 Pareto BDM (Australia)'),
(98474, 'https://ror.org/042xmz674', 'fr', 1, 'https://ror.org/042xmz674 Laboratoire de Physique et Chimie des Nano-Objets'),
(98475, 'https://ror.org/042xt5161', 'en', 1, 'https://ror.org/042xt5161 University Health Network'),
(98476, 'https://ror.org/042yv0n82', 'fr', 1, 'https://ror.org/042yv0n82 ExcitabilitƩ Nerveuse et ThƩrapeutique'),
(98477, 'https://ror.org/042zqcx93', 'en', 1, 'https://ror.org/042zqcx93 Northern Marianas College'),
(98478, 'https://ror.org/0431d2d16', 'no_lang_code', 0, 'https://ror.org/0431d2d16 Hughes Aircraft (United States)'),
(98479, 'https://ror.org/0431j1t39', 'en', 1, 'https://ror.org/0431j1t39 University of Iowa Health Care'),
(98480, 'https://ror.org/0436znn81', 'en', 1, 'https://ror.org/0436znn81 NIHR Greater Manchester Patient Safety Translational Research Centre'),
(98481, 'https://ror.org/04374qe70', 'en', 1, 'https://ror.org/04374qe70 SickKids Foundation'),
(98482, 'https://ror.org/0437mj522', 'es', 1, 'https://ror.org/0437mj522 Asociación Innovalia Innovalia Association'),
(98483, 'https://ror.org/043c66v57', 'en', 1, 'https://ror.org/043c66v57 Missouri Department of Conservation'),
(98484, 'https://ror.org/043cvne07', 'ca', 1, 'https://ror.org/043cvne07 Centro OceanogrƔfico de Illes Balears Oceanographic Center of Illes Balears'),
(98485, 'https://ror.org/043d2wd47', 'es', 1, 'https://ror.org/043d2wd47 Hospital Oncológico Andrés Grillasca'),
(98486, 'https://ror.org/043djah44', 'en', 0, 'https://ror.org/043djah44 European Center for Security and Privacy by Design'),
(98487, 'https://ror.org/043ea4m21', 'en', 1, 'https://ror.org/043ea4m21 State Key Laboratory of Pharmaceutical Biotechnology åŒ»čÆē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98488, 'https://ror.org/043ehm030', 'en', 1, 'https://ror.org/043ehm030 UNC Lineberger Comprehensive Cancer Center'),
(98489, 'https://ror.org/043evzg22', 'en', 1, 'https://ror.org/043evzg22 State Key Laboratory of Power System and Generation Equipment ē”µåŠ›ē³»ē»ŸåŠå¤§åž‹å‘ē”µč®¾å¤‡å®‰å…ØęŽ§åˆ¶å’Œä»æēœŸå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98490, 'https://ror.org/043fhe951', 'pt', 1, 'https://ror.org/043fhe951 Federal University of Maranhão Universidade Federal do Maranhão'),
(98491, 'https://ror.org/043h32y24', 'no_lang_code', 1, 'https://ror.org/043h32y24 LG (China)'),
(98492, 'https://ror.org/043jzw605', 'en', 1, 'https://ror.org/043jzw605 Institute of Cancer Research'),
(98493, 'https://ror.org/043kyf032', 'no_lang_code', 1, 'https://ror.org/043kyf032 Uniboard (Canada)'),
(98494, 'https://ror.org/043p1tw66', 'en', 0, 'https://ror.org/043p1tw66 Naval Facilities Engineering Service Center'),
(98495, 'https://ror.org/043r4xd27', 'en', 1, 'https://ror.org/043r4xd27 State Key Laboratory of Enhanced Oil Recovery ęé«˜ēŸ³ę²¹é‡‡ę”¶ēŽ‡å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98496, 'https://ror.org/043rdsw72', 'en', 1, 'https://ror.org/043rdsw72 North Metropolitan Health Service'),
(98497, 'https://ror.org/043s0fn12', 'en', 1, 'https://ror.org/043s0fn12 The Ichiro Kanehara Foundation for the Promotion of Medical Sciences and Medical Care ē›Šč²”å›£ę³•äŗŗé‡‘åŽŸäø€éƒŽčØ˜åæµåŒ»å­¦åŒ»ē™‚ęŒÆčˆˆč²”å›£'),
(98498, 'https://ror.org/043s0sy92', 'en', 1, 'https://ror.org/043s0sy92 Emory Global Health Institute'),
(98499, 'https://ror.org/043sygp97', 'no_lang_code', 0, 'https://ror.org/043sygp97 British Aerospace (United Kingdom)'),
(98500, 'https://ror.org/043tp3821', 'en', 1, 'https://ror.org/043tp3821 Crawford University'),
(98501, 'https://ror.org/043v0a663', 'no_lang_code', 1, 'https://ror.org/043v0a663 Shijiazhuang Yiling Pharmaceutical (China) ēŸ³å®¶åŗ„ä»„å²­čÆäøšč‚”ä»½ęœ‰é™å…¬åø 萄业'),
(98502, 'https://ror.org/043v8pc22', 'en', 1, 'https://ror.org/043v8pc22 Institute for Research and Innovation in Biomedicine'),
(98503, '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'),
(98504, 'https://ror.org/043we9s22', 'fr', 1, 'https://ror.org/043we9s22 Institut Jean Le Rond d''Alembert'),
(98505, 'https://ror.org/043xqa828', 'en', 0, 'https://ror.org/043xqa828 Scottish Home and Health Department'),
(98506, 'https://ror.org/04412gy94', 'en', 1, 'https://ror.org/04412gy94 Edward M. Calvo Cancer Foundation'),
(98507, 'https://ror.org/0442kw503', 'en', 1, 'https://ror.org/0442kw503 Office of Academic Affiliations'),
(98508, 'https://ror.org/0444j5556', 'en', 1, 'https://ror.org/0444j5556 Xi''an Institute of Optics and Precision Mechanics äø­å›½ē§‘å­¦é™¢č„æå®‰å…‰å­¦ē²¾åÆ†ęœŗę¢°ē ”ē©¶ę‰€'),
(98509, 'https://ror.org/0447dw872', 'es', 1, 'https://ror.org/0447dw872 Hospital Gineco ObstƩtrico Isidro Ayora'),
(98510, 'https://ror.org/044b05b34', 'en', 1, 'https://ror.org/044b05b34 Dartmouth Cancer Center'),
(98511, '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'),
(98512, 'https://ror.org/044fgj614', 'ca', 1, 'https://ror.org/044fgj614 Institut de CiĆØncies del Cosmos Institute of Cosmos Sciences'),
(98513, 'https://ror.org/044fqcn90', 'en', 1, 'https://ror.org/044fqcn90 San Juan Quarantine Station'),
(98514, 'https://ror.org/044fxjq88', 'en', 1, 'https://ror.org/044fxjq88 Saint Joseph University UniversitĆ© Saint-Joseph ÕÕøÖ‚Ö€Õ¢ ŌŗÕøÕ¦Õ„Ö†Õ« Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚ŲÆŁŠŲ³ يوسف'),
(98515, 'https://ror.org/044gwpv05', 'en', 1, 'https://ror.org/044gwpv05 Ministry of Education, Science, Research and Sport of the Slovak Republic'),
(98516, 'https://ror.org/044gzm859', 'en', 1, 'https://ror.org/044gzm859 Shatt Al-Arab University College ŁƒŁ„ŁŠŲ© Ų“Ų· العرب الجامعة'),
(98517, 'https://ror.org/044hd6323', 'en', 1, 'https://ror.org/044hd6323 State Key Laboratory of Hydraulic Engineering Simulation and Safety ę°“åˆ©å·„ēØ‹ä»æēœŸäøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98518, 'https://ror.org/044j1j587', 'no_lang_code', 1, 'https://ror.org/044j1j587 Institut za povrtarstvo Smederevska Palanka Institute for Vegetable Crops'),
(98519, 'https://ror.org/044knj408', 'es', 1, 'https://ror.org/044knj408 Complexo Hospitalario Universitario A CoruƱa'),
(98520, 'https://ror.org/044kpcz50', 'da', 1, 'https://ror.org/044kpcz50 Egmont Fonden Egmont Foundation'),
(98521, 'https://ror.org/044q2b203', 'fr', 1, 'https://ror.org/044q2b203 Fondation Institut de Cardiologie de MontrƩal Montreal Heart Institute Foundation'),
(98522, '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Ä‡ā€'),
(98523, 'https://ror.org/044rb3f07', 'fr', 1, 'https://ror.org/044rb3f07 DƩlƩgation RƩgionale Nouvelle-Aquitaine'),
(98524, 'https://ror.org/044vhe029', 'en', 1, 'https://ror.org/044vhe029 UF Health Cancer Center'),
(98525, 'https://ror.org/044wgz941', 'en', 1, 'https://ror.org/044wgz941 National Center for Research and Development'),
(98526, 'https://ror.org/044xyx374', 'en', 1, 'https://ror.org/044xyx374 Infrastructure Security & Energy Restoration'),
(98527, '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 ē”µē½‘č¾“å˜ē”µč®¾å¤‡é˜²ē¾å‡ē¾å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98528, 'https://ror.org/045380x72', 'en', 1, 'https://ror.org/045380x72 Honey bee and Silkworm Research Unit Unita'' di Ricerca di Apicoltura e Bachicoltura'),
(98529, 'https://ror.org/0453rg493', 'en', 1, 'https://ror.org/0453rg493 Oakland City University'),
(98530, 'https://ror.org/0455mxm38', 'en', 1, 'https://ror.org/0455mxm38 Indian Numismatic, Historical and Cultural Research Foundation इंऔियन ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤°ą¤æą¤øą¤°ą„ą¤š इन ą¤Øą„ą¤®ą¤æą¤øą„ą¤®ą¤¾ą¤Ÿą¤æą¤• ą¤øą„ą¤Ÿą¤”ą„€ą¤ø'),
(98531, 'https://ror.org/0457hyq42', 'es', 1, 'https://ror.org/0457hyq42 Consejo de Seguridad Nuclear Nuclear Safety Council'),
(98532, 'https://ror.org/045ba4x87', 'no_lang_code', 1, 'https://ror.org/045ba4x87 Nordfriisk Instituut'),
(98533, 'https://ror.org/045bke375', 'no_lang_code', 0, 'https://ror.org/045bke375 Us Too'),
(98534, 'https://ror.org/045dhqd98', 'en', 1, 'https://ror.org/045dhqd98 Far Eastern University'),
(98535, 'https://ror.org/045h6pd58', 'en', 1, 'https://ror.org/045h6pd58 State Key Laboratory of Soil Erosion and Dryland Farming on the Loess Plateau é»„åœŸé«˜åŽŸåœŸå£¤ä¾µčš€äøŽę—±åœ°å†œäøšå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98536, 'https://ror.org/045hfth47', 'en', 1, 'https://ror.org/045hfth47 State Key Laboratory of Alternate Electrical Power System with Renewable Energy Sources ę–°čƒ½ęŗē”µåŠ›ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98537, 'https://ror.org/045jby416', 'en', 1, 'https://ror.org/045jby416 Saint Mary-of-the-Woods College'),
(98538, 'https://ror.org/045p44t13', 'en', 1, 'https://ror.org/045p44t13 Institut Kesihatan Negara National Institutes of Health'),
(98539, 'https://ror.org/045s99b94', 'en', 1, 'https://ror.org/045s99b94 NASA Earth Science'),
(98540, 'https://ror.org/045sr2y25', 'no_lang_code', 1, 'https://ror.org/045sr2y25 Tonix Pharmaceuticals (United States)'),
(98541, 'https://ror.org/045vqhp43', 'en', 1, 'https://ror.org/045vqhp43 Dr. Susan Love Foundation for Breast Cancer Research'),
(98542, 'https://ror.org/045wa9418', 'es', 1, 'https://ror.org/045wa9418 Hospital Sanitas CIMA Sanitas CIMA Hospital'),
(98543, 'https://ror.org/045x93337', 'en', 1, 'https://ror.org/045x93337 Yeshiva University'),
(98544, 'https://ror.org/045xgsj44', 'es', 1, 'https://ror.org/045xgsj44 Hospital Universitario Sanitas La Moraleja Sanitas La Moraleja University Hospital'),
(98545, 'https://ror.org/045ybte48', 'en', 1, 'https://ror.org/045ybte48 Center for Nanoscale Materials'),
(98546, 'https://ror.org/045ydbe97', 'pt', 1, 'https://ror.org/045ydbe97 Institutos Nacionais de CiĆŖncia e Tecnologia'),
(98547, 'https://ror.org/045yr8682', 'fr', 1, 'https://ror.org/045yr8682 Ecole Nationale d''IngĆ©nieurs de Monastir National Engineering School of Monastir المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† ŲØŲ§Ł„Ł…Ł†Ų³ŲŖŁŠŲ±'),
(98548, 'https://ror.org/045z30r81', 'es', 1, 'https://ror.org/045z30r81 Agencia Sanitaria Costa del Sol'),
(98549, 'https://ror.org/045zbxg02', 'en', 1, 'https://ror.org/045zbxg02 ECSI Fibrotools, ECSI Fibrotools (United States)'),
(98550, 'https://ror.org/0461ms248', 'en', 1, 'https://ror.org/0461ms248 Innovative Ghar Nepal'),
(98551, 'https://ror.org/0465tf937', 'de', 1, 'https://ror.org/0465tf937 Otto Brenner Stiftung'),
(98552, 'https://ror.org/0465x5x63', 'en', 1, 'https://ror.org/0465x5x63 National Comprehensive Cancer Network'),
(98553, 'https://ror.org/046dym823', 'fr', 1, 'https://ror.org/046dym823 Groupe de recherche IdentitƩs et Cultures'),
(98554, 'https://ror.org/046e0mt33', 'de', 1, 'https://ror.org/046e0mt33 Europa-UniversitƤt Flensburg'),
(98555, 'https://ror.org/046f88w34', 'en', 1, 'https://ror.org/046f88w34 Open Access Publishing Association'),
(98556, 'https://ror.org/046htjf88', 'en', 1, 'https://ror.org/046htjf88 PHENIX laboratory'),
(98557, 'https://ror.org/046j7pv84', 'en', 1, 'https://ror.org/046j7pv84 Special Programme for Research and Training in Tropical Diseases'),
(98558, 'https://ror.org/046n2jy73', 'en', 1, 'https://ror.org/046n2jy73 Canadian Statistical Sciences Institute Institut Canadien des Sciences Statistiques'),
(98559, 'https://ror.org/046nez754', 'en', 0, 'https://ror.org/046nez754 Angiogenesis and Cancer Microenvironment Laboratory'),
(98560, 'https://ror.org/046p12h21', 'no_lang_code', 1, 'https://ror.org/046p12h21 Bio-Medical Science (South Korea)'),
(98561, 'https://ror.org/046q22e19', 'en', 1, 'https://ror.org/046q22e19 Kokand University Qoʻqon universiteti'),
(98562, 'https://ror.org/046s2rf49', 'en', 1, 'https://ror.org/046s2rf49 Applied Research Laboratory at the University of Hawaiā€˜i'),
(98563, 'https://ror.org/046tqzn85', 'es', 1, 'https://ror.org/046tqzn85 Escuela Normal de Zumpango'),
(98564, 'https://ror.org/046ygx235', 'en', 0, 'https://ror.org/046ygx235 Armstrong Laboratory'),
(98565, 'https://ror.org/047179s14', 'es', 1, 'https://ror.org/047179s14 Universidad Nacional Abierta y a Distancia'),
(98566, 'https://ror.org/0471xye93', 'en', 1, 'https://ror.org/0471xye93 Higher Education Authority'),
(98567, 'https://ror.org/04741mc34', 'en', 1, 'https://ror.org/04741mc34 Croucher Foundation'),
(98568, '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'),
(98569, 'https://ror.org/0475zhg63', 'no_lang_code', 1, 'https://ror.org/0475zhg63 Suez (France)'),
(98570, 'https://ror.org/0478phh31', 'en', 1, 'https://ror.org/0478phh31 State Key Laboratory of Silkworm Genomic Biology å®¶čš•åŸŗå› ē»„ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98571, 'https://ror.org/047908t24', 'pt', 1, 'https://ror.org/047908t24 Federal University of Pernambuco Universidade Federal de Pernambuco'),
(98572, 'https://ror.org/047afav72', 'en', 1, 'https://ror.org/047afav72 National Alliance of State Prostate Cancer Coalitions'),
(98573, 'https://ror.org/047cwsy20', 'en', 1, 'https://ror.org/047cwsy20 South Atlantic Water Science Center'),
(98574, 'https://ror.org/047dkqn05', 'no_lang_code', 1, 'https://ror.org/047dkqn05 Equinox Corporation Equinox Corporation (United States)'),
(98575, 'https://ror.org/047n6x090', 'en', 1, 'https://ror.org/047n6x090 Archivo Histórico Nacional National Historical Archive'),
(98576, 'https://ror.org/047p7mf25', 'fr', 1, 'https://ror.org/047p7mf25 Institut Carnot PolyNat'),
(98577, 'https://ror.org/047pgsy79', 'no_lang_code', 1, 'https://ror.org/047pgsy79 Geinsa (Panama)'),
(98578, 'https://ror.org/047qfe374', 'en', 1, 'https://ror.org/047qfe374 Clifford University'),
(98579, 'https://ror.org/047qy5748', 'en', 1, 'https://ror.org/047qy5748 Worldwide Protein Data Bank'),
(98580, 'https://ror.org/047rmr210', 'fr', 1, 'https://ror.org/047rmr210 Centre d''Ʃtudes Turques, Ottomanes, Balkaniques et Centrasiatiques'),
(98581, 'https://ror.org/047rqcm40', 'fr', 1, 'https://ror.org/047rqcm40 SoutenabilitƩ et RƩsilence'),
(98582, 'https://ror.org/047t1ev07', 'en', 1, 'https://ror.org/047t1ev07 Indian Society of Remote Sensing'),
(98583, 'https://ror.org/047td8p12', 'pt', 1, 'https://ror.org/047td8p12 Associated Laboratory for Green Chemistry Laboratório Associado para a Química Verde'),
(98584, 'https://ror.org/047wbd030', 'en', 1, 'https://ror.org/047wbd030 Darmstadt University of Applied Sciences Hochschule Darmstadt'),
(98585, 'https://ror.org/047xxvg44', 'pt', 1, 'https://ror.org/047xxvg44 Instituto PortuguĆŖs de Oncologia de Coimbra Francisco Gentil'),
(98586, 'https://ror.org/047yhep71', 'en', 1, 'https://ror.org/047yhep71 Institute of Microbiology äø­å›½ē§‘å­¦é™¢å¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(98587, 'https://ror.org/047yj9455', 'en', 0, 'https://ror.org/047yj9455 Barcelona Media'),
(98588, 'https://ror.org/0481m0575', 'es', 1, 'https://ror.org/0481m0575 Universidad Tecnológica Metropolitana'),
(98589, 'https://ror.org/0481xaz04', 'en', 1, 'https://ror.org/0481xaz04 Delta University for Science and Technology Ų¬Ų§Ł…Ų¹Ų© الدلتا Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(98590, 'https://ror.org/048289s82', 'fr', 1, 'https://ror.org/048289s82 Architecture, Milieu, Paysage'),
(98591, 'https://ror.org/04848jz84', 'en', 1, 'https://ror.org/04848jz84 Office of Nuclear Safety'),
(98592, 'https://ror.org/04861vz74', 'en', 1, 'https://ror.org/04861vz74 International Research Center for Japanese Studies å›½éš›ę—„ęœ¬ę–‡åŒ–ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(98593, 'https://ror.org/04888gh49', 'fr', 1, 'https://ror.org/04888gh49 Ɖcole Nationale SupĆ©rieure des Postes et des TĆ©lĆ©communications'),
(98594, 'https://ror.org/048cbmc89', 'fr', 1, 'https://ror.org/048cbmc89 Biologie IntƩgrƩe du Globule Rouge'),
(98595, 'https://ror.org/048dd0611', 'en', 1, 'https://ror.org/048dd0611 Institute of Semiconductors äø­å›½ē§‘å­¦é™¢åŠåÆ¼ä½“ē ”ē©¶ę‰€'),
(98596, 'https://ror.org/048g2sh07', 'ms', 1, 'https://ror.org/048g2sh07 Universiti Teknologi Petronas 国油大学'),
(98597, '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'),
(98598, 'https://ror.org/048jthh02', 'es', 0, 'https://ror.org/048jthh02 Colciencias, Departamento Administrativo de Ciencia, Tecnología e Innovación'),
(98599, 'https://ror.org/048kc0s52', 'en', 1, 'https://ror.org/048kc0s52 Prifysgol Wrexham Wrexham University'),
(98600, 'https://ror.org/048nfjm95', 'en', 1, 'https://ror.org/048nfjm95 National University of Ireland, Maynooth Ollscoil na hƉireann MĆ” Nuad'),
(98601, 'https://ror.org/048nswj43', 'en', 1, 'https://ror.org/048nswj43 State Key Laboratory for Modification of Chemical Fibers and Polymer Materials ēŗ¤ē»“ęę–™ę”¹ę€§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98602, 'https://ror.org/048pkqn85', 'no_lang_code', 0, 'https://ror.org/048pkqn85 Microwave Medical Systems (United States)'),
(98603, 'https://ror.org/048pp2f81', 'en', 1, 'https://ror.org/048pp2f81 Mount Mary College of Education'),
(98604, 'https://ror.org/048qk7477', 'en', 0, 'https://ror.org/048qk7477 Inflammation, Microbiome and Immunosurveillance'),
(98605, 'https://ror.org/048rj2z13', 'en', 1, 'https://ror.org/048rj2z13 Ministry of Education, Culture, Sports, Science and Technology ę–‡éƒØē§‘å­¦ēœ'),
(98606, 'https://ror.org/048v13307', 'en', 1, 'https://ror.org/048v13307 National Institute for Physiological Sciences ē”Ÿē†å­¦ē ”ē©¶ę‰€'),
(98607, 'https://ror.org/048w8zr56', 'es', 1, 'https://ror.org/048w8zr56 Ministerio del Interior Ministry of Interior'),
(98608, 'https://ror.org/048wy7h78', 'en', 1, 'https://ror.org/048wy7h78 State Key Laboratory of Brain and Cognitive Science č„‘äøŽč®¤ēŸ„ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98609, 'https://ror.org/048xwzs68', 'en', 1, 'https://ror.org/048xwzs68 State Key Laboratory of Digital Home Appliances ę•°å­—åŒ–å®¶ē”µå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98610, 'https://ror.org/048y1rc66', 'en', 1, 'https://ror.org/048y1rc66 Institute of Chemistry äø­å›½ē§‘å­¦é™¢åŒ–å­¦ē ”ē©¶ę‰€'),
(98611, 'https://ror.org/048ybsm72', 'en', 1, 'https://ror.org/048ybsm72 Office of Buildings and Industry'),
(98612, 'https://ror.org/048za2w47', 'no_lang_code', 0, 'https://ror.org/048za2w47 AlliedSignal (United States)'),
(98613, 'https://ror.org/0493yt138', 'de', 1, 'https://ror.org/0493yt138 Thüringer Universitäts- und Landesbibliothek'),
(98614, 'https://ror.org/049513r96', 'fr', 1, 'https://ror.org/049513r96 Arts, civilisation et histoire de l''Europe'),
(98615, 'https://ror.org/0496p8026', 'fr', 1, 'https://ror.org/0496p8026 DƩlƩgation CƓte d''Azur'),
(98616, 'https://ror.org/0499dwk57', 'en', 1, 'https://ror.org/0499dwk57 Roswell Park Comprehensive Cancer Center'),
(98617, 'https://ror.org/0499yp070', 'en', 1, 'https://ror.org/0499yp070 Landcare Australia'),
(98618, 'https://ror.org/049avne82', 'en', 1, 'https://ror.org/049avne82 Yixing People''s Hospital å®œå…“åø‚äŗŗę°‘åŒ»é™¢'),
(98619, 'https://ror.org/049bc0z69', 'en', 1, 'https://ror.org/049bc0z69 Canadian Glycomics Network'),
(98620, 'https://ror.org/049ctcj40', 'id', 1, 'https://ror.org/049ctcj40 Politeknik STMI Jakarta'),
(98621, 'https://ror.org/049d6bh38', 'en', 1, 'https://ror.org/049d6bh38 Institute of Geochemistry åœ°ēƒåŒ–å­¦ē ”ē©¶ę‰€'),
(98622, 'https://ror.org/049dzrz33', 'es', 1, 'https://ror.org/049dzrz33 Public Employment Service State Servicio PĆŗblico de Empleo Estatal'),
(98623, 'https://ror.org/049h9f890', 'fr', 1, 'https://ror.org/049h9f890 CƩgep de Granby'),
(98624, 'https://ror.org/049kkt456', 'fr', 1, 'https://ror.org/049kkt456 Institut du Thorax'),
(98625, 'https://ror.org/049mqh532', 'en', 1, 'https://ror.org/049mqh532 State Key Laboratory of Natural and Biomimetic Drugs å¤©ē„¶čÆē‰©åŠä»æē”ŸčÆē‰©å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98626, 'https://ror.org/049nhh297', 'fr', 1, 'https://ror.org/049nhh297 Annecy-le-Vieux Particle Physics Laboratory Laboratoire d’Annecy de Physique des Particules'),
(98627, 'https://ror.org/049nq3475', 'en', 1, 'https://ror.org/049nq3475 Graceland International University'),
(98628, 'https://ror.org/049r5zb56', 'en', 1, 'https://ror.org/049r5zb56 State Key Laboratory For Conservation and Utilization of Subtropical Agro-Bioresources äŗšēƒ­åø¦å†œäøšē”Ÿē‰©čµ„ęŗäæęŠ¤äøŽåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98629, 'https://ror.org/049rrx986', 'pt', 1, 'https://ror.org/049rrx986 Universidade Estadual do ParanĆ”'),
(98630, 'https://ror.org/049t0bn51', 'en', 1, 'https://ror.org/049t0bn51 International Nuclear Energy Policy and Cooperation'),
(98631, 'https://ror.org/049vabg52', 'en', 1, 'https://ror.org/049vabg52 State Key Laboratory of Baiyunobo Rare Earth Resource Researches and Comprehensive Utilization ē™½äŗ‘é„‚åšēØ€åœŸčµ„ęŗē ”ē©¶äøŽē»¼åˆåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98632, 'https://ror.org/049waqj15', 'de', 1, 'https://ror.org/049waqj15 Chemisches und VeterinƤruntersuchungsamt Stuttgart'),
(98633, 'https://ror.org/049wftm75', 'en', 1, 'https://ror.org/049wftm75 Ministerstvo ZemědělstvĆ­ ČeskĆ© Republiky Ministry of Agriculture'),
(98634, 'https://ror.org/049wkn258', 'it', 1, 'https://ror.org/049wkn258 Fondazione Cassa di Risparmio di Firenze'),
(98635, 'https://ror.org/049xh5y45', 'fr', 1, 'https://ror.org/049xh5y45 Benthic Ecogeochemistry Laboratory Laboratoire d''EcogƩochimie des Environnements Benthiques'),
(98636, 'https://ror.org/049y34t50', 'es', 1, 'https://ror.org/049y34t50 Cajal International Neuroscience Center Centro Internacional de Neurociencia Cajal'),
(98637, 'https://ror.org/049yyak68', 'en', 1, 'https://ror.org/049yyak68 State Key Laboratory of Pressurized Hydrometallurgy Technology for Co-Associated Nonferrous Metal Resources å…±ä¼“ē”Ÿęœ‰č‰²é‡‘å±žčµ„ęŗåŠ åŽ‹ę¹æę³•å†¶é‡‘ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98638, 'https://ror.org/049zca088', 'en', 1, 'https://ror.org/049zca088 Georgia Prostate Cancer Coalition'),
(98639, 'https://ror.org/049zqw361', 'en', 1, 'https://ror.org/049zqw361 Gurugram University ą¤—ą„ą¤°ą„ą¤—ą„ą¤°ą¤¾ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(98640, 'https://ror.org/04a2kft13', 'no_lang_code', 1, 'https://ror.org/04a2kft13 Haier Group (China) ęµ·å°”é›†å›¢ęŠ€ęœÆē ”å‘äø­åæƒ'),
(98641, 'https://ror.org/04advdf21', 'es', 1, 'https://ror.org/04advdf21 Centro de Investigaciones Biológicas Margarita Salas Margarita Salas Center for Biological Research'),
(98642, 'https://ror.org/04ag45c30', 'no_lang_code', 1, 'https://ror.org/04ag45c30 Centene Corporation (United States)'),
(98643, 'https://ror.org/04agqs597', 'fr', 1, 'https://ror.org/04agqs597 Institut EuropƩen de Chimie et Biologie'),
(98644, 'https://ror.org/04ahb2147', 'fr', 1, 'https://ror.org/04ahb2147 Centre de recherche franƧais Ơ JƩrusalem'),
(98645, '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'),
(98646, 'https://ror.org/04aps9p30', 'en', 1, 'https://ror.org/04aps9p30 State Key Laboratory of Polyolefin Catalysis Technology and High Performance Materials čšēƒÆēƒƒå‚¬åŒ–ęŠ€ęœÆäøŽé«˜ę€§čƒ½ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98647, 'https://ror.org/04aq4ab28', 'fr', 1, 'https://ror.org/04aq4ab28 Centre d''Ʃtudes sociologiques et politiques Raymond-Aron'),
(98648, 'https://ror.org/04aqjf708', 'en', 1, 'https://ror.org/04aqjf708 New York State Psychiatric Institute'),
(98649, 'https://ror.org/04arzfe69', 'no_lang_code', 1, 'https://ror.org/04arzfe69 Centro Agricoltura Ambiente (Italy)'),
(98650, 'https://ror.org/04at1ex44', 'nl', 0, 'https://ror.org/04at1ex44 Hercules Foundation Herculesstichting'),
(98651, 'https://ror.org/04ate5z57', 'fr', 1, 'https://ror.org/04ate5z57 Laboratoire de Droit des affaires et nouvelles technologies'),
(98652, 'https://ror.org/04athv462', 'en', 1, 'https://ror.org/04athv462 Food Technology Research Unit Istituto Sperimentale per la Valorizzazione Tecnologica dei Prodotti Agricoli'),
(98653, 'https://ror.org/04atmv946', 'en', 1, 'https://ror.org/04atmv946 Tindiret Technical and Vocational College'),
(98654, 'https://ror.org/04axhqr63', 'en', 1, 'https://ror.org/04axhqr63 State Key Laboratory of Crop Biology ä½œē‰©ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98655, 'https://ror.org/04axnyp10', 'en', 1, 'https://ror.org/04axnyp10 Samsung Advanced Institute of Technology (South Korea) ģ‚¼ģ„±ģ¢…ķ•©źø°ģˆ ģ›'),
(98656, 'https://ror.org/04aysmc18', 'en', 1, 'https://ror.org/04aysmc18 Mays Cancer Center at UT Health San Antonio'),
(98657, 'https://ror.org/04az3m568', 'en', 1, 'https://ror.org/04az3m568 Integrated Genetic Approaches in Therapeutic Discovery for Rare Diseases'),
(98658, 'https://ror.org/04b15va38', 'en', 1, 'https://ror.org/04b15va38 Argonne Tandem Linac Accelerator System'),
(98659, 'https://ror.org/04b181w54', 'en', 1, 'https://ror.org/04b181w54 Teknologian Tutkimuskeskus VTT VTT Technical Research Centre of Finland'),
(98660, 'https://ror.org/04b1tq154', 'en', 1, 'https://ror.org/04b1tq154 Grid Controls and Communications Division'),
(98661, 'https://ror.org/04b27tr16', 'ca', 1, 'https://ror.org/04b27tr16 Institut d''Estudis Catalans Institute for Catalan Studies Instituto de Estudios Catalanes'),
(98662, 'https://ror.org/04b38mm11', 'no_lang_code', 1, 'https://ror.org/04b38mm11 Raytheon Technologies (Canada)'),
(98663, 'https://ror.org/04b404920', 'de', 1, 'https://ror.org/04b404920 Alice Salomon Hochschule Berlin, Alice-Salomon-Hochschule Berlin'),
(98664, 'https://ror.org/04b57z061', 'en', 1, 'https://ror.org/04b57z061 Center for Wireless Communications'),
(98665, 'https://ror.org/04b6nzv94', 'en', 1, 'https://ror.org/04b6nzv94 Brigham and Women''s Hospital'),
(98666, 'https://ror.org/04b6v9z58', 'en', 1, 'https://ror.org/04b6v9z58 State Key Laboratory of Mineral Deposit Geochemistry ēŸæåŗŠåœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98667, 'https://ror.org/04b6x2g63', 'en', 1, 'https://ror.org/04b6x2g63 Loyola University Chicago Universidad Loyola Chicago UniversitƩ loyola de chicago'),
(98668, 'https://ror.org/04b8d7j46', 'en', 1, 'https://ror.org/04b8d7j46 Anabaptist Mennonite Biblical Seminary'),
(98669, 'https://ror.org/04b8jtz89', 'en', 1, 'https://ror.org/04b8jtz89 River Security Inc., River Security Inc. (China) ē‘žę•°äæ”ęÆ'),
(98670, 'https://ror.org/04b8tg719', 'fr', 1, 'https://ror.org/04b8tg719 UnitƩ de recherche interdisciplinaire pour la prƩvention et le traitement des cancers'),
(98671, 'https://ror.org/04bb62x43', 'de', 1, 'https://ror.org/04bb62x43 Ministerium für Verkehr Baden-Württemberg'),
(98672, 'https://ror.org/04bcwdq54', 'en', 1, 'https://ror.org/04bcwdq54 State Key Laboratory of Biology of Plant Diseases and Insect Pests ę¤ē‰©ē—…č™«å®³ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98673, 'https://ror.org/04bd6je18', 'no_lang_code', 1, 'https://ror.org/04bd6je18 Taylor and Francis (United Kingdom)'),
(98674, 'https://ror.org/04bdqq221', 'es', 1, 'https://ror.org/04bdqq221 Concello de Cervo'),
(98675, 'https://ror.org/04bewah80', 'en', 1, 'https://ror.org/04bewah80 St. Michael Medical Center in Silverdale'),
(98676, 'https://ror.org/04bfwqa71', 'en', 1, 'https://ror.org/04bfwqa71 Nuclear Fuel Cycle and Supply Chain'),
(98677, 'https://ror.org/04bg0r715', 'en', 1, 'https://ror.org/04bg0r715 Carlos Albizu University Universidad Carlos Albizu'),
(98678, 'https://ror.org/04bhsv505', 'en', 1, 'https://ror.org/04bhsv505 State Key Laboratory of Infectious Disease Prevention and Control ä¼ ęŸ“ē—…é¢„é˜²ęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98679, 'https://ror.org/04bkzce69', 'en', 1, 'https://ror.org/04bkzce69 Laboratory Signaling and Cardiovascular Pathophysiology Singnalisation et physiopathologie cardiaque'),
(98680, 'https://ror.org/04bm3wy68', 'en', 1, 'https://ror.org/04bm3wy68 Hue University of Education, University of Education, Hue University TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m Huįŗæ'),
(98681, 'https://ror.org/04bpmxx45', 'en', 1, 'https://ror.org/04bpmxx45 Instituto Milenio Centro de Regulación del Genoma Millenium Institute Center for Genome Regulation'),
(98682, 'https://ror.org/04bqqa360', 'pt', 1, 'https://ror.org/04bqqa360 State University of MaringĆ” Universidade Estadual de MaringĆ”'),
(98683, 'https://ror.org/04btayy36', 'en', 1, 'https://ror.org/04btayy36 Berry College'),
(98684, 'https://ror.org/04bxhp795', 'en', 1, 'https://ror.org/04bxhp795 Centre de recherche et de dƩveloppement de Lacombe Lacombe Research and Development Centre'),
(98685, 'https://ror.org/04bxjes65', 'en', 1, 'https://ror.org/04bxjes65 Resnick Sustainability Institute'),
(98686, 'https://ror.org/04bym8a28', 'en', 1, 'https://ror.org/04bym8a28 Grid Systems and Components'),
(98687, 'https://ror.org/04bzgtz06', 'en', 1, 'https://ror.org/04bzgtz06 Takuvik Joint International Laboratory'),
(98688, 'https://ror.org/04c235406', 'no_lang_code', 1, 'https://ror.org/04c235406 DNV (Norway)'),
(98689, 'https://ror.org/04c3k8v21', 'pt', 1, 'https://ror.org/04c3k8v21 Applied Molecular Biosciences Unit Unidade em CiĆŖncias Biomoleculares Aplicadas'),
(98690, 'https://ror.org/04caj7738', 'en', 1, 'https://ror.org/04caj7738 State Key Laboratory of Molecular Developmental Biology åˆ†å­å‘č‚²ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98691, 'https://ror.org/04cbvzp68', 'en', 1, 'https://ror.org/04cbvzp68 National Institute of Technology Nagaland ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Øą¤¾ą¤—ą¤¾ą¤²ą„ˆą¤‚ą¤”'),
(98692, 'https://ror.org/04cddv372', 'no_lang_code', 1, 'https://ror.org/04cddv372 Miele (Germany)'),
(98693, 'https://ror.org/04cdk4t75', 'fr', 1, 'https://ror.org/04cdk4t75 Centre Hospitalier Universitaire de Rouen'),
(98694, 'https://ror.org/04cf69335', 'en', 0, 'https://ror.org/04cf69335 Washington University in St. Louis School of Medicine'),
(98695, 'https://ror.org/04cgczp52', 'en', 1, 'https://ror.org/04cgczp52 Transnational Press London'),
(98696, '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'),
(98697, 'https://ror.org/04cjmvv09', 'en', 1, 'https://ror.org/04cjmvv09 Japan Foundation Endowment Committee'),
(98698, 'https://ror.org/04cmq4p11', 'en', 1, 'https://ror.org/04cmq4p11 Triagon Academy'),
(98699, 'https://ror.org/04cpxjv19', 'en', 1, 'https://ror.org/04cpxjv19 Centre universitaire de santƩ McGill McGill University Health Centre'),
(98700, 'https://ror.org/04cqn7d42', 'en', 1, 'https://ror.org/04cqn7d42 University of Colorado Cancer Center'),
(98701, 'https://ror.org/04cr1bk24', 'en', 1, 'https://ror.org/04cr1bk24 NASA Planetary Science'),
(98702, 'https://ror.org/04cr3xz70', 'fr', 1, 'https://ror.org/04cr3xz70 Architecture, Territoire, Environnement'),
(98703, 'https://ror.org/04csf5r20', 'en', 1, 'https://ror.org/04csf5r20 Office of Environment, Health, Safety and Security'),
(98704, 'https://ror.org/04cvxnb49', 'en', 1, 'https://ror.org/04cvxnb49 Goethe University Frankfurt Goethe-UniversitƤt Frankfurt am Main'),
(98705, 'https://ror.org/04cwfse38', 'en', 1, 'https://ror.org/04cwfse38 National Research Institute for Earth Science and Disaster Resilience å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗé˜²ē½ē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(98706, 'https://ror.org/04cx0dm67', 'id', 1, 'https://ror.org/04cx0dm67 Institut Teknologi Statistika dan Bisnis Muhammadiyah Semarang'),
(98707, 'https://ror.org/04cyj6y78', 'en', 1, 'https://ror.org/04cyj6y78 Geotechnical and Structures Laboratory'),
(98708, 'https://ror.org/04d0hsa39', 'en', 1, 'https://ror.org/04d0hsa39 711th Human Performance Wing'),
(98709, 'https://ror.org/04d0j0m16', 'en', 1, 'https://ror.org/04d0j0m16 State Key Laboratory of Estuarine and Coastal Research ę²³å£ęµ·å²øå­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98710, 'https://ror.org/04d0xx942', 'en', 1, 'https://ror.org/04d0xx942 Ministry of Education Ministério da Educação'),
(98711, 'https://ror.org/04d139241', 'en', 1, 'https://ror.org/04d139241 Tokai National Higher Education and Research System ę±ęµ·å›½ē«‹å¤§å­¦ę©Ÿę§‹'),
(98712, 'https://ror.org/04d1zy188', 'es', 1, 'https://ror.org/04d1zy188 Departamento de Educación Hezkuntza Departamentua'),
(98713, 'https://ror.org/04d23a975', 'en', 1, 'https://ror.org/04d23a975 Laboratorio de Investigación Naval de los Estados Unidos United States Naval Research Laboratory'),
(98714, 'https://ror.org/04d2k2606', 'no_lang_code', 1, 'https://ror.org/04d2k2606 Luto Research (United Kingdom)'),
(98715, 'https://ror.org/04d3kxm45', 'en', 1, 'https://ror.org/04d3kxm45 Scientific and Industrial Research and Development Centre'),
(98716, 'https://ror.org/04d46jp54', 'en', 1, 'https://ror.org/04d46jp54 California Department of Transportation'),
(98717, 'https://ror.org/04d4pvt78', 'en', 1, 'https://ror.org/04d4pvt78 Center for Innovative Medicine'),
(98718, 'https://ror.org/04d73z393', 'fr', 0, 'https://ror.org/04d73z393 Institut des Maladies MƩtaboliques et Cardiovasculaires Institute of Cardiovascular and Metabolic Diseases'),
(98719, 'https://ror.org/04d7kge72', 'no_lang_code', 1, 'https://ror.org/04d7kge72 JK Fenner (India)'),
(98720, 'https://ror.org/04d836q62', 'de', 1, 'https://ror.org/04d836q62 TU Wien'),
(98721, 'https://ror.org/04da1g573', 'en', 1, 'https://ror.org/04da1g573 Office of Fissile Materials Disposition');
INSERT INTO `rors` VALUES
(98722, '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'),
(98723, 'https://ror.org/04dbzz632', 'fr', 1, 'https://ror.org/04dbzz632 Institut NƩel'),
(98724, 'https://ror.org/04dj2za52', 'en', 1, 'https://ror.org/04dj2za52 Africa University'),
(98725, 'https://ror.org/04dj4wy53', 'no_lang_code', 1, 'https://ror.org/04dj4wy53 Lifetime Omics (United States)'),
(98726, 'https://ror.org/04dkba015', 'en', 1, 'https://ror.org/04dkba015 Australian Consortium for Social and Political Research Incorporated'),
(98727, 'https://ror.org/04dkjk636', 'es', 1, 'https://ror.org/04dkjk636 Universidad Tecnológica de San Juan del Río'),
(98728, 'https://ror.org/04dkv6329', 'en', 1, 'https://ror.org/04dkv6329 Prostate Cancer UK'),
(98729, 'https://ror.org/04dn2ax39', 'en', 1, 'https://ror.org/04dn2ax39 State Key Laboratory of Oncology in South China åŽå—č‚æē˜¤å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98730, 'https://ror.org/04dndfk38', 'en', 1, 'https://ror.org/04dndfk38 Universidad del BĆ­o-BĆ­o University of BĆ­o-BĆ­o'),
(98731, 'https://ror.org/04dpqce36', 'en', 1, 'https://ror.org/04dpqce36 South East Asian Theological Schools, Inc.'),
(98732, 'https://ror.org/04dpwfd08', 'no_lang_code', 1, 'https://ror.org/04dpwfd08 UL (Germany)'),
(98733, 'https://ror.org/04dqdxm60', 'en', 1, 'https://ror.org/04dqdxm60 University of Maryland Center for Environmental Science'),
(98734, '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'),
(98735, 'https://ror.org/04dqesy58', 'en', 1, 'https://ror.org/04dqesy58 Civil Engineering Research and Innovation for Sustainability'),
(98736, 'https://ror.org/04dshd728', 'en', 1, 'https://ror.org/04dshd728 State Key Laboratory of Magnetism ē£å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98737, 'https://ror.org/04dtfqt68', 'fr', 1, 'https://ror.org/04dtfqt68 Institut SupƩrieur de MƩcanique, Institut SupƩrieur de MƩcanique de Paris'),
(98738, 'https://ror.org/04dtrtr74', 'en', 1, 'https://ror.org/04dtrtr74 IFMR Graduate School of Business'),
(98739, 'https://ror.org/04dv0yy25', 'en', 1, 'https://ror.org/04dv0yy25 Almaty Humanitarian-Economic University Алматинский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98740, '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'),
(98741, 'https://ror.org/04dyqmv49', 'it', 1, 'https://ror.org/04dyqmv49 Ospedale Misericordia - Grosseto'),
(98742, 'https://ror.org/04e0p6b62', 'en', 1, 'https://ror.org/04e0p6b62 Centre de recherche et de dƩveloppement de Morden Morden Research and Development Centre'),
(98743, 'https://ror.org/04e1nss61', 'de', 1, 'https://ror.org/04e1nss61 Deutsches ArchƤologisches Institut, Abteilung Madrid German Archaeological Institute, Madrid Department'),
(98744, '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'),
(98745, 'https://ror.org/04e3d6y73', 'fr', 1, 'https://ror.org/04e3d6y73 Centre International de Rencontres MathƩmatiques'),
(98746, 'https://ror.org/04e3ktk27', 'fr', 0, 'https://ror.org/04e3ktk27 Laboratoire de Recherche en Informatique'),
(98747, 'https://ror.org/04e41m429', 'en', 1, 'https://ror.org/04e41m429 Northern Rocky Mountain Science Center'),
(98748, 'https://ror.org/04e582786', 'ca', 0, 'https://ror.org/04e582786 Institut Universitari D''Estudis Europeus'),
(98749, 'https://ror.org/04e631388', 'en', 1, 'https://ror.org/04e631388 Industrial Union of Metalworkers Industriegewerkschaft Metall'),
(98750, 'https://ror.org/04e698d63', 'en', 1, 'https://ror.org/04e698d63 Ministry of Water Resources of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½ę°“åˆ©éƒØ'),
(98751, 'https://ror.org/04e6zkc05', 'en', 1, 'https://ror.org/04e6zkc05 Whitney R. Harris World Ecology Center'),
(98752, 'https://ror.org/04e7rcy65', 'pt', 1, 'https://ror.org/04e7rcy65 Faculdade de Odontologia do Recife'),
(98753, 'https://ror.org/04e874t64', 'en', 1, 'https://ror.org/04e874t64 Einaudi Institute for Economics and Finance Istituto Einaudi per l''Economia e la Finanza'),
(98754, 'https://ror.org/04e90fr08', 'en', 1, 'https://ror.org/04e90fr08 American Optometric Association'),
(98755, 'https://ror.org/04e9rea41', 'fr', 1, 'https://ror.org/04e9rea41 CEntre de Recherche sur les MUtations du Droit et les mutations sociales'),
(98756, 'https://ror.org/04eaqk971', 'no_lang_code', 1, 'https://ror.org/04eaqk971 Bouwcentrum (Netherlands)'),
(98757, 'https://ror.org/04ebbpp93', 'it', 1, 'https://ror.org/04ebbpp93 Istituto Sperimentale Italiano Lazzaro Spallanzani Italian Experimental Institute Lazzaro Spallanzani'),
(98758, 'https://ror.org/04ec7mt05', 'en', 1, 'https://ror.org/04ec7mt05 National Geospatial Technical Operations Center'),
(98759, 'https://ror.org/04ect1284', 'en', 1, 'https://ror.org/04ect1284 Asthma UK Centre for Applied Research'),
(98760, 'https://ror.org/04ed9da67', 'no_lang_code', 1, 'https://ror.org/04ed9da67 Labvantage - Biomax GmbH (Germany)'),
(98761, 'https://ror.org/04eg25g76', 'fr', 1, 'https://ror.org/04eg25g76 Laboratoire de Conception et d''Intégration des Systèmes'),
(98762, 'https://ror.org/04ej9se46', 'en', 0, 'https://ror.org/04ej9se46 Magnum Semiconductor, Magnum Semiconductor (United States)'),
(98763, 'https://ror.org/04ekebw10', 'en', 1, 'https://ror.org/04ekebw10 Akre University for Applied Sciences'),
(98764, 'https://ror.org/04em2sh18', 'en', 1, 'https://ror.org/04em2sh18 State Key Laboratory of Marine Environmental Science čæ‘ęµ·ęµ·ę“‹ēŽÆå¢ƒē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98765, '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'),
(98766, 'https://ror.org/04eqg3754', 'en', 1, 'https://ror.org/04eqg3754 Science Analytics and Synthesis'),
(98767, 'https://ror.org/04ev03g22', 'en', 1, 'https://ror.org/04ev03g22 Science for Life Laboratory'),
(98768, 'https://ror.org/04ews3245', 'de', 1, 'https://ror.org/04ews3245 Deutsches Diabetes-Zentrum, Deutsches Diabetes-Zentrum e.V.'),
(98769, 'https://ror.org/04ezk3x31', 'fr', 1, 'https://ror.org/04ezk3x31 Université Toulouse - Jean Jaurès'),
(98770, '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'),
(98771, 'https://ror.org/04f0tf505', 'en', 1, 'https://ror.org/04f0tf505 General Directorate of Health Affairs in Riyadh Region Ų§Ł„Ł…ŲÆŁŠŲ±ŁŠŲ© العامة Ł„Ł„Ų“Ų¤ŁˆŁ† Ų§Ł„ŲµŲ­ŁŠŲ© بمنطقة Ų§Ł„Ų±ŁŠŲ§Ų¶'),
(98772, 'https://ror.org/04f18cg29', 'en', 1, 'https://ror.org/04f18cg29 Israel Democracy Institute המכון ×”×™×©×Ø××œ×™ ×œ×“×ž×•×§×Ø×˜×™×”'),
(98773, 'https://ror.org/04f6tkx67', 'fr', 1, 'https://ror.org/04f6tkx67 Neuropsychologie et Imagerie de la MƩmoire Humaine'),
(98774, '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'),
(98775, 'https://ror.org/04f9thq51', 'fr', 1, 'https://ror.org/04f9thq51 Laboratoire de MƩcanique Gabriel LamƩ'),
(98776, 'https://ror.org/04f9wy197', 'en', 1, 'https://ror.org/04f9wy197 International Society of Exposure Science'),
(98777, 'https://ror.org/04fab7w85', 'pt', 1, 'https://ror.org/04fab7w85 Centro de Estudos Sociais'),
(98778, 'https://ror.org/04facpy29', 'de', 1, 'https://ror.org/04facpy29 Sächsisches Landesamt für Umwelt, Landwirtschaft und Geologie'),
(98779, 'https://ror.org/04fbqvq73', 'es', 1, 'https://ror.org/04fbqvq73 Hospital Universitario Puerto Real'),
(98780, 'https://ror.org/04fd0ez87', 'no_lang_code', 1, 'https://ror.org/04fd0ez87 Systems Engineering Associates Corporation (United States)'),
(98781, 'https://ror.org/04feqxb79', 'en', 1, 'https://ror.org/04feqxb79 Atomic Energy Organization of Iran سازمان Ų§Ł†Ų±Ś˜ŪŒ Ų§ŲŖŁ…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(98782, 'https://ror.org/04fev8a92', 'fr', 1, 'https://ror.org/04fev8a92 Centre Hospitalier Public du Cotentin'),
(98783, 'https://ror.org/04fffmj41', 'es', 1, 'https://ror.org/04fffmj41 Hospital ClĆ­nico Universitario de Valladolid'),
(98784, 'https://ror.org/04fg9pk96', 'en', 1, 'https://ror.org/04fg9pk96 Ministry of Education MinistĆØre de l''Ɖducation'),
(98785, 'https://ror.org/04fhvpc68', 'fr', 1, 'https://ror.org/04fhvpc68 DƩpartement de Pharmacochimie MolƩculaire'),
(98786, 'https://ror.org/04fhwda97', 'en', 1, 'https://ror.org/04fhwda97 Centre for Structural Systems Biology'),
(98787, 'https://ror.org/04fkqna53', 'en', 1, 'https://ror.org/04fkqna53 University of Maryland Medical System'),
(98788, 'https://ror.org/04fpkc108', 'en', 1, 'https://ror.org/04fpkc108 Toyota Research Institute'),
(98789, 'https://ror.org/04fpz9t23', 'en', 1, 'https://ror.org/04fpz9t23 BabelFamily'),
(98790, 'https://ror.org/04fq21t14', 'en', 1, 'https://ror.org/04fq21t14 California Department of Toxic Substances Control'),
(98791, 'https://ror.org/04fqvqs63', 'fr', 1, 'https://ror.org/04fqvqs63 Biologie Tissulaire et IngƩnierie ThƩrapeutique'),
(98792, 'https://ror.org/04frvgs13', 'en', 1, 'https://ror.org/04frvgs13 Ontario Veterinary College'),
(98793, 'https://ror.org/04fsx0p27', 'no_lang_code', 1, 'https://ror.org/04fsx0p27 Danone North America (United States)'),
(98794, 'https://ror.org/04fynt521', 'es', 1, 'https://ror.org/04fynt521 Hospital la Pedrera'),
(98795, 'https://ror.org/04fzs4293', 'en', 1, 'https://ror.org/04fzs4293 MND Scotland'),
(98796, 'https://ror.org/04fzwnh64', 'en', 1, 'https://ror.org/04fzwnh64 Northwestern Medicine'),
(98797, 'https://ror.org/04g0eda71', 'en', 1, 'https://ror.org/04g0eda71 University of Belgrade – Faculty of Political Sciences Univerzitet u Beogradu – Fakultet političkih nauka, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ политичких наука'),
(98798, 'https://ror.org/04g0har25', 'es', 1, 'https://ror.org/04g0har25 Instituto Tecnológico Victoria - ITV'),
(98799, 'https://ror.org/04g1a0w27', 'en', 1, 'https://ror.org/04g1a0w27 University of Oklahoma - Tulsa'),
(98800, 'https://ror.org/04g1mec21', 'en', 1, 'https://ror.org/04g1mec21 State Key Laboratory of Pharmacokinetics and Drug Delivery Technology é‡ŠčÆęŠ€ęœÆäøŽčÆä»£åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98801, 'https://ror.org/04g26vc28', 'fr', 1, 'https://ror.org/04g26vc28 Institut de Chimie MolƩculaire de Grenoble'),
(98802, 'https://ror.org/04g2swc55', 'en', 0, 'https://ror.org/04g2swc55 University of Iowa Hospitals and Clinics'),
(98803, 'https://ror.org/04g3dmm81', 'sq', 1, 'https://ror.org/04g3dmm81 Universiteti i GjakovĆ«s ā€œFehmi Aganiā€ University of Gjakova ā€œFehmi Aganiā€'),
(98804, 'https://ror.org/04g536d70', 'en', 1, 'https://ror.org/04g536d70 Bayan University Ų¬Ų§Ł…Ų¹Ų© ŲØŁŠŲ§Ł† Ų²Ų§Ł†Ś©Ū†ŪŒ ŲØŪ•ŪŒŲ§Ł†'),
(98805, 'https://ror.org/04g7z4238', 'en', 1, 'https://ror.org/04g7z4238 Fatty Acid Research Institute'),
(98806, 'https://ror.org/04gc62a64', 'en', 1, 'https://ror.org/04gc62a64 University of Garmsar'),
(98807, 'https://ror.org/04gdmp810', 'en', 1, 'https://ror.org/04gdmp810 Northern Marianas Humanities Council'),
(98808, 'https://ror.org/04ggpef13', 'fr', 1, 'https://ror.org/04ggpef13 Espace philosophique de Namur'),
(98809, 'https://ror.org/04gj69425', 'en', 1, 'https://ror.org/04gj69425 King Salman International University'),
(98810, 'https://ror.org/04gjc3902', 'pt', 1, 'https://ror.org/04gjc3902 Associação Catarinense de BibliotecÔrios'),
(98811, 'https://ror.org/04gjptv97', 'en', 1, 'https://ror.org/04gjptv97 AIDA Data Hub'),
(98812, 'https://ror.org/04gnd7c94', 'fr', 0, 'https://ror.org/04gnd7c94 Laboratoire d’Électronique, Informatique et Image'),
(98813, 'https://ror.org/04gndp242', 'no_lang_code', 1, 'https://ror.org/04gndp242 Genentech'),
(98814, 'https://ror.org/04gq3m222', 'fr', 1, 'https://ror.org/04gq3m222 Hydrology Climate & Climate Change Laboratory Laboratoire d’hydrologie, climat et changements climatiques'),
(98815, 'https://ror.org/04gq84p09', 'en', 1, 'https://ror.org/04gq84p09 State Key Laboratory of Environmental Geochemistry ēŽÆå¢ƒåœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98816, 'https://ror.org/04gr0t671', 'ca', 1, 'https://ror.org/04gr0t671 Ajuntament de Reus Ayuntamiento de Reus'),
(98817, 'https://ror.org/04gtmvt81', 'de', 1, 'https://ror.org/04gtmvt81 Optotransmitter-Umweltschutz-Technologie e.V.'),
(98818, 'https://ror.org/04gtqc822', 'no_lang_code', 1, 'https://ror.org/04gtqc822 Sanifit (Spain)'),
(98819, 'https://ror.org/04gvjds60', 'en', 1, 'https://ror.org/04gvjds60 Elektrotehnički institut Nikola Tesla, Електротехнички ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŠøŠŗŠ¾Š»Š° Тесла The Nikola Tesla Institute of Electrical Engineering'),
(98820, 'https://ror.org/04gw3ra78', 'en', 1, 'https://ror.org/04gw3ra78 Chinese PLA General Hospital äø­å›½äŗŗę°‘č§£ę”¾å†›ę€»åŒ»é™¢'),
(98821, 'https://ror.org/04gww2j56', 'da', 1, 'https://ror.org/04gww2j56 Aage and Johanne Louis-Hansen''s Foundation Aage og Johanne Louis-Hansens Fond'),
(98822, 'https://ror.org/04gy6rq49', 'en', 0, 'https://ror.org/04gy6rq49 Phillips Laboratory'),
(98823, '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'),
(98824, 'https://ror.org/04gz5mr64', 'en', 1, 'https://ror.org/04gz5mr64 National Institute for the Humanities and Social Sciences'),
(98825, 'https://ror.org/04h13ss13', 'en', 1, 'https://ror.org/04h13ss13 The Geneva Learning Foundation'),
(98826, 'https://ror.org/04h1bd429', 'en', 1, 'https://ror.org/04h1bd429 ICPR Junior College'),
(98827, 'https://ror.org/04h617f37', 'en', 1, 'https://ror.org/04h617f37 U.S. Army West Desert Test Center'),
(98828, 'https://ror.org/04h670p07', 'de', 1, 'https://ror.org/04h670p07 UniversitƤre Psychiatrische Dienste Bern'),
(98829, 'https://ror.org/04h6n9433', 'fr', 1, 'https://ror.org/04h6n9433 Laboratoire de Recherche en Nanosciences'),
(98830, 'https://ror.org/04h76v219', 'en', 1, 'https://ror.org/04h76v219 Lasting Hope Recovery Center'),
(98831, 'https://ror.org/04h7zpy51', 'pt', 1, 'https://ror.org/04h7zpy51 Instituto Superior de Engenharia do Porto'),
(98832, 'https://ror.org/04h81rw26', 'en', 1, 'https://ror.org/04h81rw26 University of Pennsylvania Health System'),
(98833, 'https://ror.org/04haakz20', 'en', 1, 'https://ror.org/04haakz20 National Council for Eurasian and East European Research'),
(98834, 'https://ror.org/04hbwba26', 'de', 1, 'https://ror.org/04hbwba26 Deutsches Herzzentrum München German Heart Centre Munich'),
(98835, 'https://ror.org/04hcvaf32', 'en', 1, 'https://ror.org/04hcvaf32 Sana''a University Ų¬Ų§Ł…Ų¹Ų© صنعاؔ'),
(98836, 'https://ror.org/04hd6wf14', 'fr', 1, 'https://ror.org/04hd6wf14 PolymĆØres, BiopolymĆØres, Surfaces'),
(98837, 'https://ror.org/04hewx527', 'en', 1, 'https://ror.org/04hewx527 U.S. Army Cold Regions Test Center'),
(98838, 'https://ror.org/04hh1k009', 'en', 1, 'https://ror.org/04hh1k009 International Progressive MS Alliance'),
(98839, 'https://ror.org/04hj96d73', 'no_lang_code', 1, 'https://ror.org/04hj96d73 Union Carbide (United States)'),
(98840, 'https://ror.org/04hjc7403', 'fr', 0, 'https://ror.org/04hjc7403 Laboratoire de Probabilités et Modèles Aléatoires'),
(98841, 'https://ror.org/04hk5tm95', 'fr', 1, 'https://ror.org/04hk5tm95 Doctors Without Borders Médecins Sans Frontières Médicos Sin Fronteras'),
(98842, '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'),
(98843, 'https://ror.org/04hm1bb33', 'no_lang_code', 1, 'https://ror.org/04hm1bb33 Brandon Roberts + Associates (United States)'),
(98844, 'https://ror.org/04hmvwa12', 'it', 1, 'https://ror.org/04hmvwa12 Centre for Experimental Agricultural Zoology Istituto Sperimentale per la Zoologia Agraria'),
(98845, 'https://ror.org/04hn3zk50', 'no_lang_code', 1, 'https://ror.org/04hn3zk50 Ancodarq (Spain)'),
(98846, 'https://ror.org/04hnwym70', 'no_lang_code', 1, 'https://ror.org/04hnwym70 AIA (Spain)'),
(98847, 'https://ror.org/04hp1ky92', 'it', 1, 'https://ror.org/04hp1ky92 NODES S.c.a.r.l'),
(98848, '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'),
(98849, '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'),
(98850, 'https://ror.org/04htg4q18', 'en', 1, 'https://ror.org/04htg4q18 Charmo University'),
(98851, 'https://ror.org/04hwsx993', 'en', 1, 'https://ror.org/04hwsx993 Gerald Kerkut Charitable Trust'),
(98852, 'https://ror.org/04hwwrz21', 'no_lang_code', 1, 'https://ror.org/04hwwrz21 Raja Shankar Shah University'),
(98853, 'https://ror.org/04hy0x592', 'en', 1, 'https://ror.org/04hy0x592 Woolcock Institute of Medical Research'),
(98854, 'https://ror.org/04hya7017', 'es', 1, 'https://ror.org/04hya7017 Centro de Investigación Biomédica en Red de CÔncer'),
(98855, 'https://ror.org/04j11pb67', 'en', 1, 'https://ror.org/04j11pb67 J. Willard and Alice S. Marriott Foundation'),
(98856, 'https://ror.org/04j14t006', 'pt', 1, 'https://ror.org/04j14t006 Rede de QuĆ­mica e Tecnologia'),
(98857, 'https://ror.org/04j1hj511', 'no_lang_code', 1, 'https://ror.org/04j1hj511 Insightful Modelling Limited (New Zealand)'),
(98858, 'https://ror.org/04j1pqk37', 'en', 1, 'https://ror.org/04j1pqk37 Collaborative Research in Engineering, Science and Technology Centre'),
(98859, 'https://ror.org/04j413049', 'en', 1, 'https://ror.org/04j413049 Rockingham Peel Group'),
(98860, 'https://ror.org/04j5n8f24', 'no_lang_code', 1, 'https://ror.org/04j5n8f24 Canal de Experiencias HidrodinƔmicas de El Pardo (Spain)'),
(98861, 'https://ror.org/04j5z3x06', 'pt', 1, 'https://ror.org/04j5z3x06 Universidade do Estado do Amazonas'),
(98862, 'https://ror.org/04j8jrf09', 'fr', 1, 'https://ror.org/04j8jrf09 Centre Interdisciplinaire de Recherches sur les Langues Et la PensƩe'),
(98863, 'https://ror.org/04j9rp686', 'en', 1, 'https://ror.org/04j9rp686 Benaroya Research Institute'),
(98864, 'https://ror.org/04jc47g48', 'en', 1, 'https://ror.org/04jc47g48 Governor Juan F. Luis Hospital & Medical Center'),
(98865, 'https://ror.org/04jfxq686', 'no_lang_code', 1, 'https://ror.org/04jfxq686 Uriach (Spain)'),
(98866, 'https://ror.org/04jg2jk08', 'en', 1, 'https://ror.org/04jg2jk08 State Key Laboratory of High Performance Civil Engineering Materials é«˜ę€§čƒ½åœŸęœØå·„ēØ‹ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98867, 'https://ror.org/04jg3v591', 'en', 1, 'https://ror.org/04jg3v591 Centre of Hydrometeorological Service Gidrometeorologiya xizmati markazi'),
(98868, 'https://ror.org/04jhswv08', 'pt', 1, 'https://ror.org/04jhswv08 Fundação Oswaldo Cruz Oswaldo Cruz Foundation'),
(98869, 'https://ror.org/04jhyrh97', 'de', 1, 'https://ror.org/04jhyrh97 Foundation on German-American Academic Relations Stiftung Deutsch-Amerikanische Wissenschaftsbeziehungen'),
(98870, 'https://ror.org/04jjbs468', 'en', 0, 'https://ror.org/04jjbs468 UL Research Institutes'),
(98871, 'https://ror.org/04jk8jz35', 'fr', 1, 'https://ror.org/04jk8jz35 Grand Port Maritime de Nantes Saint-Nazaire'),
(98872, 'https://ror.org/04jmzd816', 'en', 1, 'https://ror.org/04jmzd816 Michigan Ovarian Cancer Alliance'),
(98873, 'https://ror.org/04jn5sa20', 'it', 1, 'https://ror.org/04jn5sa20 Ospedale Maggiore di Lodi'),
(98874, 'https://ror.org/04jqdyp62', 'fr', 1, 'https://ror.org/04jqdyp62 Ɖquipe de droit international, europĆ©en et comparĆ©'),
(98875, 'https://ror.org/04jqtny57', 'en', 1, 'https://ror.org/04jqtny57 ARC Research Hub for Sustainable Onshore Lobster Aquaculture'),
(98876, 'https://ror.org/04jr59487', 'en', 1, 'https://ror.org/04jr59487 Ghana Tertiary Education Commission'),
(98877, 'https://ror.org/04jrgd746', 'en', 1, 'https://ror.org/04jrgd746 Pattern Institute'),
(98878, 'https://ror.org/04jt60909', 'en', 1, 'https://ror.org/04jt60909 Foundation for Research in Rheumatology'),
(98879, 'https://ror.org/04jwqm611', 'en', 1, 'https://ror.org/04jwqm611 State Key Laboratory of Computer Aided Design and Graphics č®”ē®—ęœŗč¾…åŠ©č®¾č®”äøŽå›¾å½¢å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98880, 'https://ror.org/04jx7z940', 'sr', 1, 'https://ror.org/04jx7z940 Fruit Research Institute Institut za voćarstvo, Čačak'),
(98881, 'https://ror.org/04jya6a65', 'en', 1, 'https://ror.org/04jya6a65 Pennsylvania Water Science Center'),
(98882, 'https://ror.org/04jycch17', 'cs', 1, 'https://ror.org/04jycch17 Pardubice Region, Pardubický kraj'),
(98883, 'https://ror.org/04jzwa923', 'es', 1, 'https://ror.org/04jzwa923 Andean University of Cuzco Universidad Andina del Cusco'),
(98884, 'https://ror.org/04k1qv985', 'no_lang_code', 0, 'https://ror.org/04k1qv985 Lipotec (Spain)'),
(98885, 'https://ror.org/04k51bq24', 'fr', 1, 'https://ror.org/04k51bq24 Laboratoire d''Economie et de Management de Nantes Atlantique'),
(98886, 'https://ror.org/04k67r158', 'no_lang_code', 0, 'https://ror.org/04k67r158 Collins Aerospace (United States)'),
(98887, 'https://ror.org/04k6va493', 'en', 1, 'https://ror.org/04k6va493 Catholic University of Zimbabwe'),
(98888, 'https://ror.org/04ka9j141', 'en', 1, 'https://ror.org/04ka9j141 Nusrat Jahan Ahmadiyya College of Education'),
(98889, 'https://ror.org/04kaae654', 'en', 1, 'https://ror.org/04kaae654 State Key Laboratory of Organometallic Chemistry é‡‘å±žęœ‰ęœŗåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98890, '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'),
(98891, 'https://ror.org/04kd9a392', 'en', 1, 'https://ror.org/04kd9a392 Weir Advanced Research Centre'),
(98892, 'https://ror.org/04ke6x854', 'en', 1, 'https://ror.org/04ke6x854 Lawgorithm'),
(98893, 'https://ror.org/04ke70m21', 'no_lang_code', 1, 'https://ror.org/04ke70m21 RĆøros Vinduer og DĆører (Norway)'),
(98894, 'https://ror.org/04kjeyv82', 'en', 1, 'https://ror.org/04kjeyv82 Aljeel Aljadeed University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬ŁŠŁ„ Ų§Ł„Ų¬ŲÆŁŠŲÆ'),
(98895, 'https://ror.org/04kjqkz56', 'en', 1, 'https://ror.org/04kjqkz56 Sainsbury Wellcome Centre'),
(98896, 'https://ror.org/04kjvqe45', 'en', 1, 'https://ror.org/04kjvqe45 State Key Laboratory of Digital Multimedia Technology ę•°å­—å¤šåŖ’ä½“ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98897, 'https://ror.org/04km98768', 'en', 1, 'https://ror.org/04km98768 State Key Laboratory of Turbulence and Complex Systems ę¹ęµäøŽå¤ę‚ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98898, 'https://ror.org/04kn56m50', 'en', 1, 'https://ror.org/04kn56m50 Institute of Chinese Materia Medica äø­å›½åŒ»å­¦ē§‘å­¦é™¢čÆē‰©ē ”ē©¶ę‰€'),
(98899, 'https://ror.org/04kp6rb84', 'ro', 1, 'https://ror.org/04kp6rb84 Agenția Națională pentru Cercetare și Dezvoltare National Agency for Research and Development'),
(98900, 'https://ror.org/04krpx645', 'en', 1, 'https://ror.org/04krpx645 Tabriz University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تبریز'),
(98901, 'https://ror.org/04kt7rq05', 'en', 1, 'https://ror.org/04kt7rq05 HMU Erfurt - Health and Medical University Erfurt'),
(98902, 'https://ror.org/04kv7c795', 'fr', 1, 'https://ror.org/04kv7c795 DƩlƩgation RƩgionale Est'),
(98903, 'https://ror.org/04kwf6b96', 'es', 1, 'https://ror.org/04kwf6b96 Centro MƩdico Sanitas Costa Rica Sanitas Costa Rica Medical Centre'),
(98904, 'https://ror.org/04ky1ae42', 'en', 1, 'https://ror.org/04ky1ae42 Brandon Research and Development Centre Centre de recherche et de dƩveloppement de Brandon'),
(98905, 'https://ror.org/04ky51q37', 'en', 1, 'https://ror.org/04ky51q37 1907 Foundation'),
(98906, 'https://ror.org/04kz4p343', 'en', 1, 'https://ror.org/04kz4p343 Institute for Collaborative Biotechnologies'),
(98907, 'https://ror.org/04m098c22', 'en', 1, 'https://ror.org/04m098c22 Species 2000'),
(98908, 'https://ror.org/04m0qde81', 'en', 1, 'https://ror.org/04m0qde81 State Key Laboratory of Medical Genomics åŒ»å­¦åŸŗå› ē»„å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98909, 'https://ror.org/04m2z2476', 'en', 1, 'https://ror.org/04m2z2476 The Aga Khan University (International) in the United Kingdom'),
(98910, 'https://ror.org/04m31s369', 'en', 1, 'https://ror.org/04m31s369 Institute for Advancing Computing Education'),
(98911, 'https://ror.org/04m7z8d34', 'es', 1, 'https://ror.org/04m7z8d34 Cenim - Centro Nacional de Investigaciones Metalurgicas'),
(98912, 'https://ror.org/04m96pa44', 'no_lang_code', 1, 'https://ror.org/04m96pa44 Raytheon Technologies (Netherlands)'),
(98913, 'https://ror.org/04ma29860', 'en', 0, 'https://ror.org/04ma29860 Fishing in Ireland'),
(98914, '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'),
(98915, 'https://ror.org/04maje407', 'en', 1, 'https://ror.org/04maje407 State Key Laboratory of Atmospheric Boundary Layer Physics and Atmospheric Chemistry å¤§ę°”č¾¹ē•Œå±‚ē‰©ē†äøŽå¤§ę°”åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98916, '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'),
(98917, 'https://ror.org/04mb62065', 'id', 1, 'https://ror.org/04mb62065 Direktorat Riset Dan Pengabdian Kepada Masyarakat'),
(98918, 'https://ror.org/04mbmkb12', 'fr', 1, 'https://ror.org/04mbmkb12 IdentitƩ et subjectivitƩ'),
(98919, 'https://ror.org/04mc1gv86', 'es', 1, 'https://ror.org/04mc1gv86 Tecnológico de Estudios Superiores de Ecatepec'),
(98920, 'https://ror.org/04mcdza51', 'fr', 1, 'https://ror.org/04mcdza51 Centre universitaire de mƩdecine gƩnƩrale et santƩ publique, Lausanne'),
(98921, 'https://ror.org/04mdawb03', 'fr', 1, 'https://ror.org/04mdawb03 Agence de l''innovation de dƩfense Defense Innovation Agency'),
(98922, 'https://ror.org/04mdtn250', 'es', 1, 'https://ror.org/04mdtn250 Instituto de Investigación y Desarrollo de la Vivienda'),
(98923, 'https://ror.org/04mdtvp93', 'en', 1, 'https://ror.org/04mdtvp93 Sinopec Research Institute of Petroleum Processing äø­ēŸ³åŒ–ēŸ³ę²¹åŒ–å·„ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(98924, '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'),
(98925, 'https://ror.org/04mg3nk07', 'en', 1, 'https://ror.org/04mg3nk07 San Diego Supercomputer Center'),
(98926, 'https://ror.org/04mj0c261', 'en', 1, 'https://ror.org/04mj0c261 Cleveland Metroparks Zoo'),
(98927, 'https://ror.org/04mjt7f73', 'en', 1, 'https://ror.org/04mjt7f73 Sunway University Universiti Sunway åŒåØå¤§å­¦'),
(98928, 'https://ror.org/04mm9a073', 'en', 1, 'https://ror.org/04mm9a073 Annie Appleseed Project'),
(98929, 'https://ror.org/04mnc5f76', 'en', 1, 'https://ror.org/04mnc5f76 American Samoa Community College'),
(98930, 'https://ror.org/04mqtta86', 'en', 1, 'https://ror.org/04mqtta86 University of Belgrade - Faculty of Physical Chemistry Univerzitet u Beogradu - Fakultet za fizičku hemiju, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ за Ń„ŠøŠ·ŠøŃ‡ŠŗŃƒ Ń…ŠµŠ¼ŠøŃ˜Ńƒ'),
(98931, 'https://ror.org/04mv5gg87', 'en', 1, 'https://ror.org/04mv5gg87 International Institute for Management Development'),
(98932, 'https://ror.org/04mv64y65', 'id', 1, 'https://ror.org/04mv64y65 Universitas Multi Data Palembang'),
(98933, 'https://ror.org/04mvx3d75', 'fr', 1, 'https://ror.org/04mvx3d75 Labex UnivEarthS'),
(98934, 'https://ror.org/04mwp2j83', 'no_lang_code', 0, 'https://ror.org/04mwp2j83 Thiokol (United States)'),
(98935, 'https://ror.org/04myefg51', 'en', 1, 'https://ror.org/04myefg51 Southern Skies Network'),
(98936, 'https://ror.org/04myprd34', 'no_lang_code', 1, 'https://ror.org/04myprd34 Cell2Cure ApS'),
(98937, 'https://ror.org/04n07f274', 'en', 1, 'https://ror.org/04n07f274 Materials Science in Extreme Environments University Research Alliance'),
(98938, 'https://ror.org/04n16t016', 'en', 1, 'https://ror.org/04n16t016 Institute of Hematology & Blood Diseases Hospital äø­å›½åŒ»å­¦ē§‘å­¦é™¢č”€ę¶²ē—…åŒ»é™¢'),
(98939, 'https://ror.org/04n32nk31', 'no_lang_code', 1, 'https://ror.org/04n32nk31 Boyds (United Kingdom)'),
(98940, 'https://ror.org/04n3e7v86', 'en', 1, 'https://ror.org/04n3e7v86 The Fourth Affiliated Hospital of Soochow University (Suzhou Dushu Lake Hospital) č‹å·žå¤§å­¦é™„å±žē¬¬å››åŒ»é™¢ (č‹å·žåø‚ē‹¬å¢…ę¹–åŒ»é™¢)'),
(98941, 'https://ror.org/04n3hg563', 'en', 1, 'https://ror.org/04n3hg563 Pamantasang STI ng Kanlurang Negros West Negros University'),
(98942, 'https://ror.org/04n3wrd11', 'en', 1, 'https://ror.org/04n3wrd11 Nowgong Girls'' College'),
(98943, 'https://ror.org/04n40rk24', 'fr', 1, 'https://ror.org/04n40rk24 Groupe de recherche clinique – Tumeurs ThyroĆÆdiennes'),
(98944, 'https://ror.org/04n45zg06', 'en', 1, 'https://ror.org/04n45zg06 Office of Bilateral, Multilateral, and Commercial Cooperation'),
(98945, 'https://ror.org/04n48wx60', 'fr', 1, 'https://ror.org/04n48wx60 UniversitƩ PrivƩe Africaine Franco-Arabe'),
(98946, 'https://ror.org/04n60ga54', 'en', 0, 'https://ror.org/04n60ga54 Inter-University Research Institute Corporation'),
(98947, 'https://ror.org/04n6fhj26', 'pt', 1, 'https://ror.org/04n6fhj26 Clinics Hospital of Ribeirão Preto, Hospital das Clínicas de Ribeirão Preto'),
(98948, 'https://ror.org/04n7vs332', 'en', 1, 'https://ror.org/04n7vs332 Lord Mayor’s Charitable Foundation'),
(98949, 'https://ror.org/04n85w461', 'no_lang_code', 0, 'https://ror.org/04n85w461 McDonnel Aircraft (United States)'),
(98950, 'https://ror.org/04nabhy78', 'fr', 1, 'https://ror.org/04nabhy78 Laboratoire de l''Intégration du Matériau au Système'),
(98951, 'https://ror.org/04nc8v966', 'fr', 1, 'https://ror.org/04nc8v966 Troubles psychiatriques et dƩveloppement'),
(98952, 'https://ror.org/04ncnzm65', 'en', 1, 'https://ror.org/04ncnzm65 Mathematical Research Data Initiative Mathematische Forschungsdateninitiative'),
(98953, 'https://ror.org/04nd55p60', 'en', 1, 'https://ror.org/04nd55p60 Yunnan Key Laboratory of Gastrodia Elata and Fungal Symbiotic Biology å¤©éŗ»äøŽēœŸčŒå…±ē”Ÿē”Ÿē‰©å­¦é‡ē‚¹å®žéŖŒå®¤'),
(98954, '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'),
(98955, 'https://ror.org/04ndw0k24', 'en', 1, 'https://ror.org/04ndw0k24 New Jersey Department of State'),
(98956, 'https://ror.org/04ng4dd31', 'en', 1, 'https://ror.org/04ng4dd31 Access to Advanced Health Institute'),
(98957, 'https://ror.org/04nm1cv11', 'en', 0, 'https://ror.org/04nm1cv11 University Hospitals Bristol NHS Foundation Trust'),
(98958, 'https://ror.org/04nnxen11', 'en', 1, 'https://ror.org/04nnxen11 Office of Inspector General'),
(98959, 'https://ror.org/04np0ky85', 'en', 1, 'https://ror.org/04np0ky85 Afghanistan Center for Epidemiological Studies مرکز مطالعات Ų§Ł¾ŪŒŲÆŁ…ŪŒŁˆŁ„ŁˆŚ˜ŪŒŚ© افغانستان'),
(98960, 'https://ror.org/04nqtfa57', 'no_lang_code', 0, 'https://ror.org/04nqtfa57 Servicios TƩcnicos y Suministros Technical Services and Supplies (Spain)'),
(98961, 'https://ror.org/04nrv3s86', 'es', 1, 'https://ror.org/04nrv3s86 Institut de FĆ­sica InterdisciplinĆ ria i Sistemes Complexos Institute for Mediterranean and Subtropical Horticulture "La Mayoraā€ Instituto de Hortofruticultura Subtropical y MediterrĆ”nea "La Mayora"'),
(98962, 'https://ror.org/04ns7ha44', 'en', 1, 'https://ror.org/04ns7ha44 Steven & Alexandra Cohen Foundation'),
(98963, 'https://ror.org/04nwt4928', 'es', 1, 'https://ror.org/04nwt4928 Ayuntamiento de Valladolid'),
(98964, 'https://ror.org/04nytyj38', 'en', 1, 'https://ror.org/04nytyj38 Shanghai Institute of Microsystem and Information Technology äø­å›½ē§‘å­¦é™¢äøŠęµ·å¾®ē³»ē»ŸäøŽäæ”ęÆęŠ€ęœÆē ”ē©¶ę‰€'),
(98965, 'https://ror.org/04nza6677', 'en', 1, 'https://ror.org/04nza6677 UT-Battelle'),
(98966, 'https://ror.org/04p05g969', 'no_lang_code', 0, 'https://ror.org/04p05g969 Douglas Aircraft (United States)'),
(98967, 'https://ror.org/04p0mdy95', 'en', 1, 'https://ror.org/04p0mdy95 Office of Spent Fuel and Waste Science and Technology'),
(98968, 'https://ror.org/04p1m8w53', 'en', 1, 'https://ror.org/04p1m8w53 Erell Institute'),
(98969, '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 Деизмолошка Š¾ŠæŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ˜Š°, ŠŸŃ€ŠøŃ€Š¾Š“Š½Š¾-математички Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚, Универзитет Дв. ŠšŠøŃ€ŠøŠ» Šø ŠœŠµŃ‚Š¾Š“ŠøŃ˜ во Дкопје'),
(98970, 'https://ror.org/04p3pep55', 'en', 1, 'https://ror.org/04p3pep55 Bladder Cancer Advocacy Network'),
(98971, 'https://ror.org/04p3r3e35', 'en', 1, 'https://ror.org/04p3r3e35 NOAA Tropical Analysis and Forecast Branch'),
(98972, 'https://ror.org/04p8das24', 'fr', 1, 'https://ror.org/04p8das24 Groupe de recherche interdisciplinaire sur les processus d''information et de communication'),
(98973, 'https://ror.org/04p8ejq70', 'no_lang_code', 1, 'https://ror.org/04p8ejq70 BAE Systems (United Kingdom)'),
(98974, 'https://ror.org/04p977q83', 'no_lang_code', 1, 'https://ror.org/04p977q83 Eurofins (Luxembourg)'),
(98975, 'https://ror.org/04pbtsc74', 'en', 1, 'https://ror.org/04pbtsc74 Plekhanov Russian University of Economics Российский ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š“. Š’. ŠŸŠ»ŠµŃ…Š°Š½Š¾Š²Š°'),
(98976, 'https://ror.org/04ph5sm90', 'en', 1, 'https://ror.org/04ph5sm90 PremUP'),
(98977, 'https://ror.org/04pjgde17', 'no_lang_code', 1, 'https://ror.org/04pjgde17 Idener (Spain) Optimización Orientada a la Sostenibilidad'),
(98978, 'https://ror.org/04pjn5n51', 'fr', 1, 'https://ror.org/04pjn5n51 Groupe de recherche d’histoire'),
(98979, 'https://ror.org/04pkc8m17', 'no_lang_code', 1, 'https://ror.org/04pkc8m17 Nokia (Finland) Nokia Oyj'),
(98980, 'https://ror.org/04pn69091', 'no_lang_code', 1, 'https://ror.org/04pn69091 The Tomorrow Companies Inc. (United States)'),
(98981, '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'),
(98982, 'https://ror.org/04prhhh77', 'en', 1, 'https://ror.org/04prhhh77 Institute of Limnology of the Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠžŠ·ŠµŃ€Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(98983, 'https://ror.org/04pw11t29', 'en', 1, 'https://ror.org/04pw11t29 New Zealand Leather & Shoe Research Association Inc.'),
(98984, 'https://ror.org/04pznag94', 'pt', 1, 'https://ror.org/04pznag94 Hospital UniversitƔrio Clementino Fraga Filho'),
(98985, 'https://ror.org/04q1kbj36', 'fr', 1, 'https://ror.org/04q1kbj36 DƩlƩgation Normandie'),
(98986, 'https://ror.org/04q26jh72', 'no_lang_code', 1, 'https://ror.org/04q26jh72 General Electric (France)'),
(98987, 'https://ror.org/04q30vj37', 'da', 1, 'https://ror.org/04q30vj37 WWF Danmark'),
(98988, '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 ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°ŃƒŠŗ АзербайГжана Шекинский Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр'),
(98989, 'https://ror.org/04q4ppz72', 'es', 1, 'https://ror.org/04q4ppz72 Complejo Hospitalario Universitario de Toledo'),
(98990, 'https://ror.org/04q4vzc07', 'fr', 1, 'https://ror.org/04q4vzc07 Institut MƩmoires de l''Edition Contemporaine Institute for Contemporary Publishing Archives'),
(98991, 'https://ror.org/04q6hh787', 'es', 1, 'https://ror.org/04q6hh787 Escuela Nacional de ArchivĆ­stica'),
(98992, 'https://ror.org/04q78at80', 'en', 1, 'https://ror.org/04q78at80 State Key Laboratory of Coal Mine Safety Technology ē…¤ēŸæå®‰å…ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(98993, 'https://ror.org/04q93ds34', 'es', 1, 'https://ror.org/04q93ds34 Institute of Public Goods and Policies Instituto de PolĆ­ticas y Bienes PĆŗblicos'),
(98994, 'https://ror.org/04q9esz89', 'en', 1, 'https://ror.org/04q9esz89 Louisiana Tech University UniversitƩ de louisiana tech'),
(98995, 'https://ror.org/04qan0m84', 'es', 1, 'https://ror.org/04qan0m84 Geosciences Institute Instituto de Geociencias'),
(98996, 'https://ror.org/04qayn356', 'es', 1, 'https://ror.org/04qayn356 Instituto de Ciencias Marinas de AndalucĆ­a'),
(98997, 'https://ror.org/04qcn4c26', 'en', 1, 'https://ror.org/04qcn4c26 Hawaiian Volcano Observatory'),
(98998, 'https://ror.org/04qdwq068', 'en', 1, 'https://ror.org/04qdwq068 QuantIC'),
(98999, 'https://ror.org/04qe5y072', 'en', 1, 'https://ror.org/04qe5y072 North Borneo University College'),
(99000, 'https://ror.org/04qeh2h86', 'ca', 1, 'https://ror.org/04qeh2h86 Institut CatalƠ de Paleontologia Miquel Crusafont Instituto CatalƔn de Paleontologƭa Miguel Crusafont'),
(99001, 'https://ror.org/04qfrh333', 'en', 1, 'https://ror.org/04qfrh333 Georgia Tech Research Institute'),
(99002, 'https://ror.org/04qgfge56', 'fr', 1, 'https://ror.org/04qgfge56 Laboratoire de SynthĆØse Organique Laboratory of Organic Synthesis'),
(99003, 'https://ror.org/04qgh9k98', 'en', 1, 'https://ror.org/04qgh9k98 Seneca Polytechnic'),
(99004, 'https://ror.org/04qk9rk19', 'pt', 1, 'https://ror.org/04qk9rk19'),
(99005, 'https://ror.org/04qkhgw46', 'fr', 1, 'https://ror.org/04qkhgw46 Agence Nationale pour la Gestion des DƩchets Radioactifs'),
(99006, 'https://ror.org/04qkrdj06', 'en', 1, 'https://ror.org/04qkrdj06 Kalamunda Hospital'),
(99007, 'https://ror.org/04qm9me84', 'en', 0, 'https://ror.org/04qm9me84 United States Atomic Energy Commission'),
(99008, 'https://ror.org/04qmvrz31', 'no_lang_code', 1, 'https://ror.org/04qmvrz31 Karpagam Hospital'),
(99009, 'https://ror.org/04qsnc772', 'pt', 1, 'https://ror.org/04qsnc772 Hospital de São João Hospital of St. John'),
(99010, 'https://ror.org/04qsvhr24', 'en', 0, 'https://ror.org/04qsvhr24 Soil Science Research Unit UnitƩ de Recherche en Science du Sol'),
(99011, 'https://ror.org/04qtk4r03', 'sq', 1, 'https://ror.org/04qtk4r03 Instituti i Historisƫ "Ali Hadri" Prishtinƫ'),
(99012, 'https://ror.org/04qvgb234', 'en', 1, 'https://ror.org/04qvgb234 Precast/Prestressed Concrete Institute'),
(99013, 'https://ror.org/04qw17677', 'en', 0, 'https://ror.org/04qw17677 Kostanai State Pedagogical University ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(99014, 'https://ror.org/04qwfwm19', 'fr', 1, 'https://ror.org/04qwfwm19 Institut Parisien de Chimie MolƩculaire'),
(99015, 'https://ror.org/04qxsrb28', 'en', 1, 'https://ror.org/04qxsrb28 Flemish Government FlƤmische Regierung Gouvernement flamand Vlaamse Overheid'),
(99016, 'https://ror.org/04r0wrp59', 'en', 1, 'https://ror.org/04r0wrp59 NOAA National Centers for Environmental Information'),
(99017, 'https://ror.org/04r12t513', 'en', 1, 'https://ror.org/04r12t513 State Key Laboratory of Powder Metallurgy ē²‰ęœ«å†¶é‡‘å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99018, 'https://ror.org/04r1ssz88', 'en', 1, 'https://ror.org/04r1ssz88 State Key Laboratory of Precision Testing Technology and Instruments ē²¾åÆ†ęµ‹čÆ•ęŠ€ęœÆåŠä»Ŗå™Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99019, 'https://ror.org/04r3bvt56', 'en', 1, 'https://ror.org/04r3bvt56 Zhengzhou Institute of Machinery éƒ‘å·žęœŗę¢°ē ”ē©¶ę‰€'),
(99020, 'https://ror.org/04r3m2882', 'en', 1, 'https://ror.org/04r3m2882 Southern University and Agricultural and Mechanical College'),
(99021, 'https://ror.org/04r53se39', 'en', 1, 'https://ror.org/04r53se39 Institute of Information Engineering 中国科学院俔息巄程研究所'),
(99022, 'https://ror.org/04r5ma125', 'en', 1, 'https://ror.org/04r5ma125 Southwest Research & Design Institute of the Chemical Industry č„æå—åŒ–å·„ē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åø'),
(99023, 'https://ror.org/04r5yj356', 'en', 1, 'https://ror.org/04r5yj356 Epilepsy Action'),
(99024, 'https://ror.org/04r6e5t98', 'en', 1, 'https://ror.org/04r6e5t98 Business Europe'),
(99025, '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'),
(99026, 'https://ror.org/04rb60x98', 'ca', 1, 'https://ror.org/04rb60x98 Parc CientĆ­fic de la Universitat de ValĆØncia'),
(99027, 'https://ror.org/04rbx9m94', 'en', 1, 'https://ror.org/04rbx9m94 Lonestar Education and Research Network'),
(99028, 'https://ror.org/04rc0xn13', 'en', 1, 'https://ror.org/04rc0xn13 Environmental Molecular Sciences Laboratory'),
(99029, 'https://ror.org/04rcc8827', 'en', 1, 'https://ror.org/04rcc8827 Taiwanese American Arts Council å°ē¾Žę–‡č—å”ęœƒ'),
(99030, 'https://ror.org/04rf54t04', 'da', 1, 'https://ror.org/04rf54t04 King Christian the Tenth Foundation Kong Christian den Tiendes Fond'),
(99031, 'https://ror.org/04rfts775', 'fr', 0, 'https://ror.org/04rfts775 Ɖcole Nationale d''IngĆ©nieurs des Techniques des Industries Agro-Alimentaires'),
(99032, 'https://ror.org/04rfxk768', 'fr', 1, 'https://ror.org/04rfxk768 Laboratoire de Neurosciences ExpƩrimentales et Cliniques'),
(99033, 'https://ror.org/04rhqkc66', 'de', 1, 'https://ror.org/04rhqkc66 Ministerium für Landwirtschaft, Umwelt und Klimaschutz des Landes Brandenburg'),
(99034, 'https://ror.org/04rje0916', 'fr', 1, 'https://ror.org/04rje0916 Groupe d''Ɖtude sur les GĆ©omatĆ©riaux et ENvironnements AnthropisĆ©s'),
(99035, 'https://ror.org/04rk63426', 'no_lang_code', 1, 'https://ror.org/04rk63426 Pristyn Care (India) ą¤Ŗą„ą¤°ą¤æą¤øą„ą¤Ÿą„€ą¤Ø ą¤•ą„‡ą¤Æą¤°'),
(99036, 'https://ror.org/04rn6hj09', 'en', 1, 'https://ror.org/04rn6hj09 Hydrometeorological Research Institute Ilmiy-tadqiqot gidrometeorologiya instituti ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ гиГрометеорологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(99037, 'https://ror.org/04rp4zh16', 'en', 1, 'https://ror.org/04rp4zh16 Office of Clean Energy Demonstrations'),
(99038, 'https://ror.org/04rpdbq72', 'en', 1, 'https://ror.org/04rpdbq72 Philippine Council for Health Research and Development'),
(99039, 'https://ror.org/04rr8kp31', 'en', 1, 'https://ror.org/04rr8kp31 U.S. Army Tropic Regions Test Center'),
(99040, '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'),
(99041, 'https://ror.org/04rrs1z45', 'en', 1, 'https://ror.org/04rrs1z45 Agrotest Fyto, Agrotest Fyto (Czechia) Agrotest fyto, s.r.o.'),
(99042, 'https://ror.org/04rrzfd14', 'fr', 1, 'https://ror.org/04rrzfd14 Laboratoire ModƩlisation et Simulation Multi-Echelle'),
(99043, 'https://ror.org/04rswvr48', 'en', 1, 'https://ror.org/04rswvr48 Fundacion Araucaria Foundation'),
(99044, 'https://ror.org/04rxrdv16', 'es', 1, 'https://ror.org/04rxrdv16 Cancer Research Center Centro de Investigación del CÔncer'),
(99045, 'https://ror.org/04ry0c837', 'pt', 1, 'https://ror.org/04ry0c837 Companhia de Pesquisa de Recursos Minerais, Serviço Geológico do Brasil - CPRM'),
(99046, 'https://ror.org/04ryvdf08', 'en', 1, 'https://ror.org/04ryvdf08 Space Research Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космических исслеГований'),
(99047, 'https://ror.org/04rzmms09', 'en', 1, 'https://ror.org/04rzmms09 CSCS - Centro Svizzero di Calcolo Scientifico CSCS - Swiss National Supercomputing Centre'),
(99048, 'https://ror.org/04rzqnw97', 'es', 1, 'https://ror.org/04rzqnw97 Conservatorio Profesional de MĆŗsica ā€œTeresa Berganzaā€'),
(99049, 'https://ror.org/04s1zep84', 'en', 1, 'https://ror.org/04s1zep84 Florence Bascom Geoscience Center'),
(99050, 'https://ror.org/04s23hc51', 'en', 1, 'https://ror.org/04s23hc51 State Key Laboratory of Crop Genetics and Germplasm Innovation ä½œē‰©é—ä¼ äøŽē§č“Øåˆ›ę–°å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99051, 'https://ror.org/04s33wy62', 'es', 1, 'https://ror.org/04s33wy62 Supercomputación Castilla y León'),
(99052, 'https://ror.org/04s3qvd73', 'es', 1, 'https://ror.org/04s3qvd73 Asociación de Industrias CÔrnicas Meat Industry Association'),
(99053, 'https://ror.org/04s778r16', 'en', 1, 'https://ror.org/04s778r16 Office of Space and Defense Power Systems'),
(99054, 'https://ror.org/04s945776', 'fr', 1, 'https://ror.org/04s945776 Laboratoire de MƩcanique de Normandie'),
(99055, 'https://ror.org/04s99xz91', 'en', 1, 'https://ror.org/04s99xz91 Centre for Individualised Infection Medicine'),
(99056, 'https://ror.org/04sd1rz46', 'en', 1, 'https://ror.org/04sd1rz46 Basque Country Mobility And Logistics Cluster, Cluster of Mobility and Logistics, MLC ITS Euskadi Cluster de Movilidad y LogĆ­stica de Euskadi Euskadiko Mugikortasun Eta Logistika Klusterra'),
(99057, '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'),
(99058, 'https://ror.org/04sg95s75', 'en', 1, 'https://ror.org/04sg95s75 State Key Laboratory of Geological Processes and Mineral Resources åœ°č“Øčæ‡ēØ‹äøŽēŸæäŗ§čµ„ęŗå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99059, 'https://ror.org/04shr9s31', 'fr', 1, 'https://ror.org/04shr9s31 Robotique et Innovation Chirurgicale'),
(99060, 'https://ror.org/04skj5a85', 'ca', 1, 'https://ror.org/04skj5a85 Institut InfĆ ncia Institute of Childhood and Urban World Instituto Infancia'),
(99061, 'https://ror.org/04skqfp25', 'en', 1, 'https://ror.org/04skqfp25 HƓpital St. Michael St. Michael''s Hospital'),
(99062, 'https://ror.org/04sksx363', 'en', 1, 'https://ror.org/04sksx363 Beijing Building Materials Academy of Sciences and Research åŒ—äŗ¬å»ŗē­‘ęę–™ē§‘å­¦ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(99063, 'https://ror.org/04sm5zn07', 'no_lang_code', 1, 'https://ror.org/04sm5zn07 Boeing (United States)'),
(99064, 'https://ror.org/04sqh8108', 'en', 0, 'https://ror.org/04sqh8108 Astronomical Observatory of Mallorca'),
(99065, 'https://ror.org/04sqxdt31', 'en', 1, 'https://ror.org/04sqxdt31 Minneapolis-St. Paul Long Term Ecological Research'),
(99066, 'https://ror.org/04sv5r538', 'fr', 1, 'https://ror.org/04sv5r538 MƩtaphysique, histoires, transformations, actualitƩs'),
(99067, 'https://ror.org/04svedz43', 'it', 1, 'https://ror.org/04svedz43 Azienda Ospedaliera Ospedale Maggiore'),
(99068, 'https://ror.org/04svrh266', 'en', 1, 'https://ror.org/04svrh266 Northwest Institute of Nuclear Technology č„æåŒ—ę øęŠ€ęœÆē ”ē©¶ę‰€'),
(99069, 'https://ror.org/04sz26p89', 'de', 1, 'https://ror.org/04sz26p89 Translationale Onkologie an der UniversitƤtsmedizin der Johannes Gutenberg-UniversitƤt Mainz'),
(99070, 'https://ror.org/04t1cdb72', 'en', 1, 'https://ror.org/04t1cdb72 Institute of Geographic Sciences and Natural Resources Research äø­å›½ē§‘å­¦é™¢åœ°ē†ē§‘å­¦äøŽčµ„ęŗē ”ē©¶ę‰€'),
(99071, 'https://ror.org/04t2m2598', 'en', 1, 'https://ror.org/04t2m2598 Center for Remote Sensing and Integrated Systems'),
(99072, 'https://ror.org/04t3b2655', 'en', 1, 'https://ror.org/04t3b2655 State Key Laboratory of Organic-Inorganic Composite Materials ęœ‰ęœŗę— ęœŗå¤åˆęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99073, 'https://ror.org/04t3q5q03', 'en', 1, 'https://ror.org/04t3q5q03 State Key Laboratory of Microbial Metabolism å¾®ē”Ÿē‰©ä»£č°¢å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99074, 'https://ror.org/04t4b6y41', 'es', 0, 'https://ror.org/04t4b6y41 Instituto Nacional de la Salud'),
(99075, 'https://ror.org/04t59f227', 'en', 1, 'https://ror.org/04t59f227 Our Lady of Apostles College of Education'),
(99076, 'https://ror.org/04t873b86', 'en', 1, 'https://ror.org/04t873b86 Guam Department of Agriculture'),
(99077, 'https://ror.org/04tajb587', 'en', 1, 'https://ror.org/04tajb587 Royal Society Te Apārangi'),
(99078, 'https://ror.org/04tavpn47', 'en', 1, 'https://ror.org/04tavpn47 Second Military Medical University äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›å†›åŒ»å¤§å­¦'),
(99079, 'https://ror.org/04tbscc54', 'en', 1, 'https://ror.org/04tbscc54 State Key Laboratory of Rail Traffic Engineering and Information Technology č½Øé“äŗ¤é€šå·„ēØ‹äæ”ęÆåŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99080, 'https://ror.org/04tce9s05', 'en', 1, 'https://ror.org/04tce9s05 Pershing Square Foundation'),
(99081, 'https://ror.org/04tcthy91', 'en', 1, 'https://ror.org/04tcthy91 Institute of Animal Sciences äø­å›½å†œäøšē§‘å­¦é™¢åŒ—äŗ¬ē•œē‰§å…½åŒ»ē ”ē©¶ę‰€'),
(99082, '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'),
(99083, 'https://ror.org/04tfhh831', 'en', 1, 'https://ror.org/04tfhh831 Center for Open Neuroscience'),
(99084, 'https://ror.org/04thqfb29', 'en', 1, 'https://ror.org/04thqfb29 State Key Laboratory of High Field Laser Physics å¼ŗåœŗęæ€å…‰ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99085, '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'),
(99086, 'https://ror.org/04tjqa790', 'fr', 1, 'https://ror.org/04tjqa790 Institut SYMLOG de France'),
(99087, 'https://ror.org/04tk2gy88', 'en', 1, 'https://ror.org/04tk2gy88 University of Florida Health'),
(99088, 'https://ror.org/04tmf0341', 'es', 1, 'https://ror.org/04tmf0341 Instituto de Investigaciones Gino Germani'),
(99089, 'https://ror.org/04tmf7v73', 'en', 1, 'https://ror.org/04tmf7v73 G.T.N. Arts College'),
(99090, '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'),
(99091, 'https://ror.org/04tvkmm31', 'en', 1, 'https://ror.org/04tvkmm31 Meridian Behavioral Health'),
(99092, 'https://ror.org/04tvx8690', 'en', 1, 'https://ror.org/04tvx8690 University of Arizona Cancer Center'),
(99093, 'https://ror.org/04tz64554', 'en', 1, 'https://ror.org/04tz64554 Defense Threat Reduction Agency'),
(99094, 'https://ror.org/04v0hex10', 'en', 1, 'https://ror.org/04v0hex10 Bengt Ihres Foundation Bengt Ihres fond');
INSERT INTO `rors` VALUES
(99095, 'https://ror.org/04v0snf24', 'es', 1, 'https://ror.org/04v0snf24 Universidad de La Frontera University of La Frontera'),
(99096, 'https://ror.org/04v106c48', 'fr', 1, 'https://ror.org/04v106c48 Biologie du cartilage, biotechnologie et tƩlƩmƩdecine'),
(99097, 'https://ror.org/04v2q5t19', 'no_lang_code', 0, 'https://ror.org/04v2q5t19 Barcelona Digital Centro Tecnológico'),
(99098, 'https://ror.org/04v2xmd71', 'en', 1, 'https://ror.org/04v2xmd71 Scottish Government'),
(99099, 'https://ror.org/04v3xcy66', 'fr', 1, 'https://ror.org/04v3xcy66 HƓpital Charles-Foix'),
(99100, 'https://ror.org/04v3ywz14', 'en', 1, 'https://ror.org/04v3ywz14 China Agricultural University äø­å›½å†œäøšå¤§å­¦'),
(99101, 'https://ror.org/04v668f18', 'fr', 1, 'https://ror.org/04v668f18 Institut des MatƩriaux Poreux de Paris'),
(99102, 'https://ror.org/04v85vk04', 'fr', 1, 'https://ror.org/04v85vk04 Lettres, idƩes, savoirs'),
(99103, 'https://ror.org/04v8m4033', 'en', 1, 'https://ror.org/04v8m4033 Oregon Water Science Center'),
(99104, 'https://ror.org/04v8sjw26', 'en', 1, 'https://ror.org/04v8sjw26 Osborne Park Hospital'),
(99105, 'https://ror.org/04vdnev70', 'en', 0, 'https://ror.org/04vdnev70 ARCHER Service'),
(99106, 'https://ror.org/04vgnd506', 'en', 1, 'https://ror.org/04vgnd506 State Key Laboratory of Rare Earth Materials Chemistry and Application ēØ€åœŸęę–™åŒ–å­¦åŠåŗ”ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99107, 'https://ror.org/04vh24428', 'pt', 1, 'https://ror.org/04vh24428 NOVA.id.FCT - Associação para a Inovação e Desenvolvimento da FCT'),
(99108, 'https://ror.org/04vhpaz11', 'no_lang_code', 1, 'https://ror.org/04vhpaz11 Link Institut (Switzerland)'),
(99109, 'https://ror.org/04vhvsj31', 'en', 1, 'https://ror.org/04vhvsj31 Gallatin Valley YMCA, Inc.'),
(99110, 'https://ror.org/04vk2qt89', 'id', 1, 'https://ror.org/04vk2qt89 Sekolah Tinggi Agama Islam Kuningan'),
(99111, 'https://ror.org/04vp1tk49', 'en', 1, 'https://ror.org/04vp1tk49 Center for Molecular Dynamics - Nepal'),
(99112, 'https://ror.org/04vpa6h32', 'en', 1, 'https://ror.org/04vpa6h32 Edinburgh College'),
(99113, 'https://ror.org/04vpyax58', 'no_lang_code', 1, 'https://ror.org/04vpyax58 Drohobych Ivan Franko State Pedagogical University Š”Ń€Š¾Š³Š¾Š±ŠøŃ†ŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана Франка'),
(99114, 'https://ror.org/04vq43039', 'en', 1, 'https://ror.org/04vq43039 Veski'),
(99115, 'https://ror.org/04vs2n780', 'en', 1, 'https://ror.org/04vs2n780 University of Puerto Rico at Ponce'),
(99116, 'https://ror.org/04vt65461', 'en', 1, 'https://ror.org/04vt65461 Duke Cancer Institute'),
(99117, 'https://ror.org/04vthwx70', 'fr', 1, 'https://ror.org/04vthwx70 Laboratoire de RƩactivitƩ de Surface'),
(99118, 'https://ror.org/04vvy0t36', 'pl', 1, 'https://ror.org/04vvy0t36 Syntea'),
(99119, 'https://ror.org/04vwf9r13', 'en', 1, 'https://ror.org/04vwf9r13 Missouri State University Branch Campus Dalian'),
(99120, 'https://ror.org/04vwsc311', 'fr', 1, 'https://ror.org/04vwsc311 Centre de Recherches sur l’ExtrĆŖme Orient de Paris – Sorbonne Research Centre for Far Eastern Studies of the Paris-Sorbonne University'),
(99121, 'https://ror.org/04vxzbp05', 'no_lang_code', 1, 'https://ror.org/04vxzbp05 Czech Welding Institute (Czechia) Český svÔřečský Ćŗstav'),
(99122, 'https://ror.org/04vzm8988', 'en', 1, 'https://ror.org/04vzm8988 FURTHERMORE grants in publishing'),
(99123, 'https://ror.org/04vzt1785', 'es', 1, 'https://ror.org/04vzt1785 Ministerio del Comercio Interior'),
(99124, 'https://ror.org/04w07g537', 'en', 1, 'https://ror.org/04w07g537 Fanconi Anemia Research Fund'),
(99125, 'https://ror.org/04w30w390', 'no_lang_code', 0, 'https://ror.org/04w30w390 Biomendi (Spain)'),
(99126, 'https://ror.org/04w3jy968', 'no_lang_code', 1, 'https://ror.org/04w3jy968 Samsung (South Korea) 삼성'),
(99127, 'https://ror.org/04w3ppj64', 'nl', 1, 'https://ror.org/04w3ppj64 Onderwijsraad'),
(99128, 'https://ror.org/04w4xsz15', 'no_lang_code', 1, 'https://ror.org/04w4xsz15 Janssen Scientific Affairs (United States)'),
(99129, 'https://ror.org/04w53rh54', 'en', 1, 'https://ror.org/04w53rh54 Kwinana Community Health'),
(99130, 'https://ror.org/04w75nz84', 'en', 1, 'https://ror.org/04w75nz84 University of Virginia Cancer Center'),
(99131, 'https://ror.org/04w7hre37', 'en', 1, 'https://ror.org/04w7hre37 University of Puerto Rico at Aguadilla'),
(99132, 'https://ror.org/04w7xqn11', 'fr', 1, 'https://ror.org/04w7xqn11 Aliments BioprocƩdƩs Toxicologie Environnements'),
(99133, 'https://ror.org/04wa9t375', 'de', 1, 'https://ror.org/04wa9t375 Chemical Industry Fund Fonds der Chemischen Industrie'),
(99134, 'https://ror.org/04wd74742', 'no_lang_code', 1, 'https://ror.org/04wd74742 Sinomach (China) äø­å›½ęœŗę¢°å·„äøšé›†å›¢ęœ‰é™å…¬åø'),
(99135, 'https://ror.org/04wdvc711', 'fr', 1, 'https://ror.org/04wdvc711 Laboratoire d''Ʃconomie appliquƩe au dƩveloppement'),
(99136, 'https://ror.org/04wdz4v71', 'en', 1, 'https://ror.org/04wdz4v71 Samsung Changwon Hospital'),
(99137, 'https://ror.org/04wecwh56', 'en', 1, 'https://ror.org/04wecwh56 Institut za nuklearne nauke Vinča Vinča Institute of Nuclear Sciences'),
(99138, 'https://ror.org/04wgee362', 'fr', 1, 'https://ror.org/04wgee362 Val de Loire Recherche en Management'),
(99139, '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'),
(99140, 'https://ror.org/04wkp4f46', 'de', 1, 'https://ror.org/04wkp4f46 Klinikum Chemnitz'),
(99141, 'https://ror.org/04wktzw65', 'en', 1, 'https://ror.org/04wktzw65 Chinese Center For Disease Control and Prevention åŒ—äŗ¬åø‚é¢„é˜²åŒ»å­¦ē ”ē©¶äø­åæƒ'),
(99142, 'https://ror.org/04wm52x94', 'en', 1, 'https://ror.org/04wm52x94 Instituto Nacional de TecnologĆ­a Agropecuaria National Agricultural Technology Institute'),
(99143, 'https://ror.org/04wn09761', 'pt', 1, 'https://ror.org/04wn09761 Federal University of Rio Grande do Norte Universidade Federal do Rio Grande do Norte'),
(99144, 'https://ror.org/04wnz0192', 'en', 1, 'https://ror.org/04wnz0192 Mother Teresa University Universiteti NĆ«nĆ« Tereza nĆ« Shkup Универзитет Мајка Тереза'),
(99145, 'https://ror.org/04wp8v119', 'en', 1, 'https://ror.org/04wp8v119 Kansas Water Science Center'),
(99146, 'https://ror.org/04wpy7706', 'en', 1, 'https://ror.org/04wpy7706 The Dr. Mortimer and Theresa Sackler Foundation'),
(99147, 'https://ror.org/04wqh5h97', 'en', 1, 'https://ror.org/04wqh5h97 Institute for Molecular Science åˆ†å­ē§‘å­¦ē ”ē©¶ę‰€'),
(99148, 'https://ror.org/04wrawj44', 'en', 1, 'https://ror.org/04wrawj44 Cancer Center at Cold Spring Harbor Laboratory'),
(99149, 'https://ror.org/04wsvdt21', 'en', 1, 'https://ror.org/04wsvdt21 State Key Laboratory of Catalysis å‚¬åŒ–åŸŗē”€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99150, 'https://ror.org/04wx09w42', 'en', 1, 'https://ror.org/04wx09w42 Alamo Breast Cancer Foundation'),
(99151, 'https://ror.org/04wx4nj18', 'es', 1, 'https://ror.org/04wx4nj18 Centro Singular de Investigación en Química Biológica y Materiales Moleculares'),
(99152, 'https://ror.org/04wxdxa47', 'ca', 1, 'https://ror.org/04wxdxa47 Hospital Universitari Germans Trias i Pujol'),
(99153, 'https://ror.org/04wyvkr12', 'en', 1, 'https://ror.org/04wyvkr12 Barnes-Jewish Hospital'),
(99154, 'https://ror.org/04x05p558', 'es', 1, 'https://ror.org/04x05p558 Autobuses Urbanos Elche'),
(99155, 'https://ror.org/04x1a4s97', 'fr', 0, 'https://ror.org/04x1a4s97 UniversitƩ Bretagne Loire'),
(99156, 'https://ror.org/04x2nq985', 'en', 1, 'https://ror.org/04x2nq985 The Affiliated Shunde Hospital of Jinan University ęšØå—å¤§å­¦é™„å±žé”ŗå¾·åŒ»é™¢'),
(99157, 'https://ror.org/04x3wvr31', 'pt', 1, 'https://ror.org/04x3wvr31 Federal University of Uberlândia Universidade Federal de Uberlândia'),
(99158, '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'),
(99159, 'https://ror.org/04x5g0k34', 'es', 1, 'https://ror.org/04x5g0k34 Centro de Rehabilitación Avanzada Sanitas Isaac Peral Sanitas Isaac Peral Advanced Rehabilitation Centre'),
(99160, 'https://ror.org/04x7z1r26', 'en', 1, 'https://ror.org/04x7z1r26 GMT Technology (Shenzhen) Co., Ltd., GMT Technology (Shenzhen) Co., Ltd. (China)'),
(99161, 'https://ror.org/04xcq9q51', 'en', 1, 'https://ror.org/04xcq9q51 Corewell Health Reed City Hospital'),
(99162, 'https://ror.org/04xeap310', 'id', 1, 'https://ror.org/04xeap310 UIN SATU Tulungagung'),
(99163, 'https://ror.org/04xetev54', 'no_lang_code', 1, 'https://ror.org/04xetev54 Knowledge Kingdom Publishing'),
(99164, 'https://ror.org/04xf1tw93', 'es', 1, 'https://ror.org/04xf1tw93 Superintendencia Nacional de Aduanas y de Administración Tributaria'),
(99165, 'https://ror.org/04xfnd416', 'en', 1, 'https://ror.org/04xfnd416 International Vision University Uluslarası Vizyon Ünversitesi'),
(99166, 'https://ror.org/04xfp8b22', 'en', 1, 'https://ror.org/04xfp8b22 Naval Research Laboratory Information Technology Division'),
(99167, 'https://ror.org/04xgsgc80', 'en', 1, 'https://ror.org/04xgsgc80 Cognitive Sciences and Technologies Council'),
(99168, 'https://ror.org/04xjtqb36', 'en', 1, 'https://ror.org/04xjtqb36 State Key Laboratory of High Performance Complex Manufacturing é«˜ę€§čƒ½å¤ę‚åˆ¶é€ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99169, 'https://ror.org/04xk4ep23', 'en', 1, 'https://ror.org/04xk4ep23 Montana Agricultural Experiment Station'),
(99170, 'https://ror.org/04xk8ct40', 'ca', 1, 'https://ror.org/04xk8ct40 Grup CHM Mental Salut'),
(99171, 'https://ror.org/04xm1d337', 'en', 1, 'https://ror.org/04xm1d337 Joint Genome Institute'),
(99172, 'https://ror.org/04xnpyp44', 'es', 1, 'https://ror.org/04xnpyp44 Ministerio de Desarrollo Agrario y Riego'),
(99173, 'https://ror.org/04xqp3a64', 'en', 1, 'https://ror.org/04xqp3a64 State Key Laboratory of New Technology of Computer Software č®”ē®—ęœŗč½Æä»¶ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99174, 'https://ror.org/04xrsn650', 'no_lang_code', 1, 'https://ror.org/04xrsn650 Ninja Theory (United Kingdom)'),
(99175, 'https://ror.org/04xs57h96', 'en', 1, 'https://ror.org/04xs57h96 Prifysgol Lerpwl University of Liverpool'),
(99176, 'https://ror.org/04xtz1057', 'ca', 1, 'https://ror.org/04xtz1057 Fight Infections Foundation Fundació Lluita contra les Infeccions'),
(99177, 'https://ror.org/04xvy3j27', 'en', 1, 'https://ror.org/04xvy3j27 Panimalar Medical College Hospital & Research Institute'),
(99178, 'https://ror.org/04xvyyy18', 'en', 0, 'https://ror.org/04xvyyy18 Foundation for Research, Science and Technology Tūāpapa Rangahau Pūtaiao'),
(99179, 'https://ror.org/04xwxtp60', 'id', 1, 'https://ror.org/04xwxtp60 Politeknik Negeri Semarang'),
(99180, 'https://ror.org/04xxhjw92', 'no_lang_code', 1, 'https://ror.org/04xxhjw92 SM GEODIM (Spain)'),
(99181, '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'),
(99182, 'https://ror.org/04xy7xh64', 'en', 1, 'https://ror.org/04xy7xh64 Academy of Civil Aviation Азаматтық Š°Š²ŠøŠ°Ń†ŠøŃ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(99183, 'https://ror.org/04xzgfg07', 'es', 1, 'https://ror.org/04xzgfg07 Hospital Nacional de ParaplƩjicos'),
(99184, 'https://ror.org/04y3yya25', 'ca', 1, 'https://ror.org/04y3yya25 Institut QuĆ­mic de SarriĆ  Instituto Quimico de SarriĆ '),
(99185, 'https://ror.org/04y716y05', 'nl', 1, 'https://ror.org/04y716y05 Nuffic'),
(99186, 'https://ror.org/04ya3ke98', 'en', 1, 'https://ror.org/04ya3ke98 Shri Gurudeo Ayurved College'),
(99187, 'https://ror.org/04yanv433', 'en', 1, 'https://ror.org/04yanv433 NOVARTIS Foundation for the Promotion of Science (Japan)'),
(99188, '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'),
(99189, 'https://ror.org/04yeq6a80', 'no_lang_code', 0, 'https://ror.org/04yeq6a80 Asociación de Investigación de las Industrias de la Construcción'),
(99190, 'https://ror.org/04yghvt66', 'en', 1, 'https://ror.org/04yghvt66 Virginia Mason Memorial'),
(99191, 'https://ror.org/04ygk5j35', 'pt', 1, 'https://ror.org/04ygk5j35 State University of Feira de Santana Universidade Estadual de Feira de Santana'),
(99192, 'https://ror.org/04ynvm727', 'fr', 1, 'https://ror.org/04ynvm727 Groupe d’Etude des CĆ©tacĆ©s du Cotentin The Cotentin Cetacean Study Group'),
(99193, 'https://ror.org/04yrmgg31', 'ca', 1, 'https://ror.org/04yrmgg31 TicSalut'),
(99194, 'https://ror.org/04yrrdj53', 'fr', 1, 'https://ror.org/04yrrdj53 MathƩmatiques AppliquƩes Ơ Paris 5'),
(99195, 'https://ror.org/04yv20134', 'no_lang_code', 1, 'https://ror.org/04yv20134 Fiberhome Technology Group (China)'),
(99196, 'https://ror.org/04yv9ex91', 'en', 1, 'https://ror.org/04yv9ex91 Columbia Environmental Research Center'),
(99197, 'https://ror.org/04yvxvx65', 'en', 1, 'https://ror.org/04yvxvx65 Menzies Institute for Medical Research'),
(99198, 'https://ror.org/04yw9h429', 'en', 1, 'https://ror.org/04yw9h429 CHI Health Missouri Valley'),
(99199, 'https://ror.org/04ywkcf20', 'en', 1, 'https://ror.org/04ywkcf20 Minneapolis Foundation'),
(99200, 'https://ror.org/04yy13d34', 'pt', 1, 'https://ror.org/04yy13d34 Fundação Lemann The Lemann Foundation'),
(99201, 'https://ror.org/04yyy0y35', 'no_lang_code', 1, 'https://ror.org/04yyy0y35 Bloomsbury Publishing (United Kingdom)'),
(99202, 'https://ror.org/04z0np064', 'en', 1, 'https://ror.org/04z0np064 Conseil Arabe pour les Sciences Sociales The Arab Council for the Social Sciences المجلس Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(99203, 'https://ror.org/04z14ny65', 'es', 1, 'https://ror.org/04z14ny65 COMSA (Spain)'),
(99204, 'https://ror.org/04z2gev20', 'en', 1, 'https://ror.org/04z2gev20 Office of Health and Safety'),
(99205, 'https://ror.org/04z2hsy54', 'no_lang_code', 1, 'https://ror.org/04z2hsy54 NVIDIA (Italy)'),
(99206, 'https://ror.org/04z65fm03', 'en', 1, 'https://ror.org/04z65fm03 Maduka University'),
(99207, 'https://ror.org/04z6kfz30', 'en', 1, 'https://ror.org/04z6kfz30 Lviv State University of Physical Culture Lwowski Państwowy Uniwersytet Kultury Fizycznej Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø, Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø імені Івана Š‘Š¾Š±ŠµŃ€ŃŃŒŠŗŠ¾Š³Š¾'),
(99208, 'https://ror.org/04z8xsz80', 'no_lang_code', 1, 'https://ror.org/04z8xsz80 Aceros especiales Europa Gerdau (Spain)'),
(99209, 'https://ror.org/04z9etn73', 'no_lang_code', 1, 'https://ror.org/04z9etn73 FDI (France)'),
(99210, 'https://ror.org/04za79z50', 'en', 1, 'https://ror.org/04za79z50 State Key Laboratory of Special Surface Protection Materials and Application Technology ē‰¹ē§č”Øé¢äæęŠ¤ęę–™åŠåŗ”ē”ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99211, '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'),
(99212, 'https://ror.org/04zbc6m03', 'es', 1, 'https://ror.org/04zbc6m03 ISCIII Museum Museo Nacional de Sanidad'),
(99213, 'https://ror.org/04zcc4v34', 'en', 1, 'https://ror.org/04zcc4v34 State Key Laboratory of EMU and Locomotive Traction and Control åŠØč½¦ē»„å’Œęœŗč½¦ē‰µå¼•äøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99214, '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'),
(99215, 'https://ror.org/04zdss218', 'en', 1, 'https://ror.org/04zdss218 The JAX Cancer Center'),
(99216, 'https://ror.org/04ze6rb18', 'en', 1, 'https://ror.org/04ze6rb18 University of Zimbabwe'),
(99217, 'https://ror.org/04zfn8472', 'no_lang_code', 1, 'https://ror.org/04zfn8472 Malecare'),
(99218, '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'),
(99219, 'https://ror.org/04zr5ey71', 'fr', 1, 'https://ror.org/04zr5ey71 Actions de Recherche pour la Technologie et la SociƩtƩ, Institut Carnot ARTS Carnot Institute ARTS'),
(99220, 'https://ror.org/04zrkn810', 'en', 1, 'https://ror.org/04zrkn810 Agency for the Cooperation of Energy Regulators'),
(99221, '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'),
(99222, 'https://ror.org/04zw2sa68', 'en', 1, 'https://ror.org/04zw2sa68 Grupo EspaƱol de CƔncer de Ovario Spanish Ovarian Cancer Research Group'),
(99223, 'https://ror.org/04zy9j617', 'en', 1, 'https://ror.org/04zy9j617 University of the Arctic'),
(99224, 'https://ror.org/04zytdm29', 'en', 1, 'https://ror.org/04zytdm29 New York Water Science Center'),
(99225, 'https://ror.org/05010mv24', 'en', 1, 'https://ror.org/05010mv24 Hinchingbrooke Health Care NHS Trust'),
(99226, 'https://ror.org/0501y8471', 'no_lang_code', 1, 'https://ror.org/0501y8471 Broderies Leveaux (France)'),
(99227, 'https://ror.org/0503gdw52', 'de', 1, 'https://ror.org/0503gdw52 Deutsches ArchƤologisches Institut, Eurasien-Abteilung German Archaeological Institute, Eurasia Department'),
(99228, 'https://ror.org/0503v2186', 'es', 0, 'https://ror.org/0503v2186 Conselleria de Cultura, Educación y Ciencia, Generalitat Valenciana'),
(99229, 'https://ror.org/0504x3693', 'pt', 1, 'https://ror.org/0504x3693 Editora da Universidade do Estado de Minas Gerais'),
(99230, 'https://ror.org/05051wa40', 'es', 1, 'https://ror.org/05051wa40 Ministerio de Trabajo, Empleo y Seguridad Social de la Nación'),
(99231, 'https://ror.org/0505vtn61', 'no_lang_code', 1, 'https://ror.org/0505vtn61 Albaydha University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁŠŲ¶Ų§Ų”'),
(99232, 'https://ror.org/05067ar32', 'en', 1, 'https://ror.org/05067ar32 WWF Germany'),
(99233, 'https://ror.org/0507j3z22', 'en', 1, 'https://ror.org/0507j3z22 Quantinuum, Quantinuum (United Kingdom)'),
(99234, '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'),
(99235, 'https://ror.org/0509eed67', 'en', 1, 'https://ror.org/0509eed67 The College of Industrial Technology ŁƒŁ„ŁŠŲ© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„ŲµŁ†Ų§Ų¹ŁŠŲ©- Ł…ŲµŲ±Ų§ŲŖŲ© - Ł„ŁŠŲØŁŠŲ§'),
(99236, 'https://ror.org/0509qp208', 'fr', 1, 'https://ror.org/0509qp208 Centre d''Etudes et de Recherches AppliquƩes Ơ la Gestion'),
(99237, 'https://ror.org/050as5c79', 'en', 1, 'https://ror.org/050as5c79 Royal Hobart Hospital Research Foundation'),
(99238, 'https://ror.org/050d9qs96', 'en', 1, 'https://ror.org/050d9qs96 Business and Technology University įƒ‘įƒ˜įƒ–įƒœįƒ”įƒ”įƒ˜įƒ”įƒ įƒ“įƒ įƒ¢įƒ”įƒ„įƒœįƒįƒšįƒįƒ’įƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(99239, 'https://ror.org/050dyr068', 'en', 1, 'https://ror.org/050dyr068 Solomon Islands National University'),
(99240, 'https://ror.org/050eq1942', 'es', 1, 'https://ror.org/050eq1942 Hospital Universitario Ramón y Cajal'),
(99241, 'https://ror.org/050fgfc71', 'en', 1, 'https://ror.org/050fgfc71 State Key Laboratory of Applied Organic Chemistry åŠŸčƒ½ęœ‰ęœŗåˆ†å­åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99242, 'https://ror.org/050gm3a53', 'en', 1, 'https://ror.org/050gm3a53 Ch. Pervaiz Elahi Institute of Cardiology, Multan'),
(99243, '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'),
(99244, 'https://ror.org/050gv4c78', 'no_lang_code', 1, 'https://ror.org/050gv4c78 2i2c'),
(99245, 'https://ror.org/050mgds09', 'es', 1, 'https://ror.org/050mgds09 Red de Fundaciones Universidad Empresa'),
(99246, 'https://ror.org/050mxte83', 'en', 1, 'https://ror.org/050mxte83 State Key Laboratory of Earth Surface Processes and Resource Ecology åœ°č”Øčæ‡ēØ‹äøŽčµ„ęŗē”Ÿę€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99247, 'https://ror.org/050pcd452', 'en', 1, 'https://ror.org/050pcd452 KCA University'),
(99248, 'https://ror.org/050q6t909', 'de', 1, 'https://ror.org/050q6t909 Rosenpass e.V.'),
(99249, 'https://ror.org/050qa2043', 'en', 1, 'https://ror.org/050qa2043 International Society for Neurochemistry'),
(99250, 'https://ror.org/050qbxj48', 'es', 1, 'https://ror.org/050qbxj48 Hospital Central de la Defensa Gómez Ulla, Hospital Militar Gómez Ulla'),
(99251, 'https://ror.org/050qe2074', 'fr', 1, 'https://ror.org/050qe2074 LabEx PRIMES'),
(99252, 'https://ror.org/050r7zc91', 'fr', 1, 'https://ror.org/050r7zc91 Ecole d''IngƩnieurs AƩronautique et Spatiale, Institut Polytechnique des Sciences AvancƩes'),
(99253, 'https://ror.org/050rf2257', 'no_lang_code', 1, 'https://ror.org/050rf2257 Datang Telecom Group (China) å¤§å”ē”µäæ”ē§‘ęŠ€äŗ§äøšé›†å›¢'),
(99254, 'https://ror.org/050sd4346', 'en', 1, 'https://ror.org/050sd4346 U.S. Army Yuma Test Center'),
(99255, 'https://ror.org/050tds906', 'es', 1, 'https://ror.org/050tds906 Instituto Nacional de Pesca y Acuacultura'),
(99256, 'https://ror.org/050wwwp73', 'no_lang_code', 1, 'https://ror.org/050wwwp73 Yunnan Metallurgical Group (China) äŗ‘å—å†¶é‡‘é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(99257, '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'),
(99258, 'https://ror.org/051194q96', 'en', 1, 'https://ror.org/051194q96 Kesmonds International University'),
(99259, 'https://ror.org/0512g3q82', 'en', 1, 'https://ror.org/0512g3q82 Weston Family Foundation'),
(99260, 'https://ror.org/0515tt074', 'es', 1, 'https://ror.org/0515tt074 Grupo EspaƱol de Tumores Neuroendocrinos'),
(99261, 'https://ror.org/051639p85', 'en', 1, 'https://ror.org/051639p85 Ontario Research Foundation'),
(99262, 'https://ror.org/051777d98', 'en', 1, 'https://ror.org/051777d98 United Nations Development Programme'),
(99263, 'https://ror.org/0517e3842', 'en', 1, 'https://ror.org/0517e3842 State Key Laboratory of Microbial Resources å¾®ē”Ÿē‰©čµ„ęŗå‰ęœŸå¼€å‘å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99264, 'https://ror.org/051acq669', 'no_lang_code', 1, 'https://ror.org/051acq669 Raytheon Technologies (Germany)'),
(99265, 'https://ror.org/051cchq23', 'es', 1, 'https://ror.org/051cchq23 Instituto Tecnológico de Úrsulo GalvÔn'),
(99266, 'https://ror.org/051dzs374', 'en', 1, 'https://ror.org/051dzs374 Agriculture and Agri-Food Canada Agriculture et Agroalimentaire Canada'),
(99267, 'https://ror.org/051eysy15', 'de', 1, 'https://ror.org/051eysy15 Max Buchner Forschungsstiftung Max Buchner Research Foundation'),
(99268, 'https://ror.org/051fvmk98', 'en', 1, 'https://ror.org/051fvmk98 University of Alabama System'),
(99269, 'https://ror.org/051g1n833', 'en', 1, 'https://ror.org/051g1n833 Tashkent State Pedagogical University named after Nizami Toshkent Davlat Pedagogika Universiteti Nizomiy Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет имени ŠŠøŃŠ¾Š¼ŠøŃ'),
(99270, 'https://ror.org/051gb6s93', 'en', 1, 'https://ror.org/051gb6s93 Excelia Business School'),
(99271, 'https://ror.org/051gp9e93', 'es', 1, 'https://ror.org/051gp9e93 Centro OceanogrƔfico de Murcia Oceanographic Center of Murcia'),
(99272, 'https://ror.org/051gvfp41', 'fr', 1, 'https://ror.org/051gvfp41 Orient & MƩditerranƩe'),
(99273, 'https://ror.org/051gy9s25', 'de', 1, 'https://ror.org/051gy9s25 Stiftung Fiat Panis The Foundation Fiat Panis'),
(99274, 'https://ror.org/051k70002', 'fr', 1, 'https://ror.org/051k70002 Biologie Ʃvolutive et Ʃcologie des algues Evolutionary Biology and Ecology of Algae'),
(99275, 'https://ror.org/051kc1939', 'en', 1, 'https://ror.org/051kc1939 Herbert Irving Comprehensive Cancer Center'),
(99276, 'https://ror.org/051kyr374', 'no_lang_code', 1, 'https://ror.org/051kyr374 TRAPIL (France)'),
(99277, 'https://ror.org/051n8xp08', 'en', 1, 'https://ror.org/051n8xp08 Arizona Water Science Center'),
(99278, 'https://ror.org/051p0fy59', 'es', 1, 'https://ror.org/051p0fy59 Instituto de Recursos Naturales y AgrobiologĆ­a de Salamanca'),
(99279, 'https://ror.org/051pg0937', 'es', 1, 'https://ror.org/051pg0937 Operador Nacional de Electricidad - CENACE'),
(99280, 'https://ror.org/051qmsg29', 'en', 1, 'https://ror.org/051qmsg29 SBS Swiss Business School'),
(99281, 'https://ror.org/051rtqg79', 'cs', 1, 'https://ror.org/051rtqg79 National Agency for Agricultural Research NĆ”rodnĆ­ Agentura pro Zemědělský Výzkum'),
(99282, 'https://ror.org/051sm7d31', 'es', 1, 'https://ror.org/051sm7d31 Universidad de la Romana'),
(99283, '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'),
(99284, 'https://ror.org/051tp1g37', 'es', 1, 'https://ror.org/051tp1g37 Universidad Peruana de Integración Global'),
(99285, 'https://ror.org/051twmj48', 'en', 1, 'https://ror.org/051twmj48 Mangalmay Institute of Management and Technology'),
(99286, 'https://ror.org/051v1dy68', 'en', 1, 'https://ror.org/051v1dy68 Bucharest Emergency University Hospital Spitalul Universitar de Urgenta Bucuresti'),
(99287, 'https://ror.org/051vpkw73', 'es', 1, 'https://ror.org/051vpkw73 Asociacion de Investigacion de Materiales Plasticos y Conexas'),
(99288, 'https://ror.org/051wv2j09', 'en', 1, 'https://ror.org/051wv2j09 China Academy of Railway Sciences 中国铁道科学研究院'),
(99289, 'https://ror.org/051x1vv05', 'en', 1, 'https://ror.org/051x1vv05 Skyfox Publishing Group'),
(99290, 'https://ror.org/051xcrt66', 'es', 1, 'https://ror.org/051xcrt66 European University of the Canary Islands Universidad Europea de Canarias'),
(99291, 'https://ror.org/051xsx468', 'pt', 1, 'https://ror.org/051xsx468 Instituto de BiofĆ­sica Carlos Chagas Filho'),
(99292, 'https://ror.org/051yfbn24', 'en', 1, 'https://ror.org/051yfbn24 State Key Laboratory of Geodesy and Earth''s Dynamics å¤§åœ°ęµ‹é‡äøŽåœ°ēƒåŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99293, 'https://ror.org/051z6e826', 'en', 1, 'https://ror.org/051z6e826 Arcadia Fund'),
(99294, 'https://ror.org/0520hfe27', 'en', 1, 'https://ror.org/0520hfe27 British Institute for Libyan and Northern African Studies'),
(99295, 'https://ror.org/0520sdq60', 'es', 1, 'https://ror.org/0520sdq60 Instituto Nacional de ToxicologĆ­a y Ciencias Forenses'),
(99296, 'https://ror.org/0521sww17', 'en', 1, 'https://ror.org/0521sww17 Arizona College of Emergency Physicians'),
(99297, 'https://ror.org/0522eh277', 'de', 1, 'https://ror.org/0522eh277 Landesregierung von Baden-Württemberg State Government of Baden-Württemberg'),
(99298, 'https://ror.org/0523t5q52', 'en', 1, 'https://ror.org/0523t5q52 Centre de recherche et de dƩveloppement de Harrow Harrow Research and Development Centre'),
(99299, 'https://ror.org/0523w7v09', 'no_lang_code', 1, 'https://ror.org/0523w7v09 Narxoz University ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š¢. Š Ń‹ŃŠŗŃƒŠ»Š¾Š²Š° ŅšŠ°Š·Š°Ņ› ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ°Š»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(99300, 'https://ror.org/052451r09', 'no_lang_code', 1, 'https://ror.org/052451r09 Pratt & Whitney (United States)'),
(99301, 'https://ror.org/0525rz773', 'en', 1, 'https://ror.org/0525rz773 Atlantic University College'),
(99302, 'https://ror.org/0526wrz79', 'en', 1, 'https://ror.org/0526wrz79 Agrobiotechnology Institute Instituto de AgrobiotecnologĆ­a'),
(99303, 'https://ror.org/0526zh358', 'en', 1, 'https://ror.org/0526zh358 Life Sciences Research Network Wales Rhwydwaith Gwyddorau Bywyd Cymru'),
(99304, 'https://ror.org/0528q3r27', 'en', 1, 'https://ror.org/0528q3r27 State Key Laboratory of Integrated Management of Pest Insects and Rodents å†œäøšč™«å®³é¼ å®³ē»¼åˆę²»ē†ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99305, 'https://ror.org/05291s926', 'fr', 1, 'https://ror.org/05291s926 UniversitĆ© Saint Thomas d’Aquin'),
(99306, 'https://ror.org/05291za29', 'es', 1, 'https://ror.org/05291za29 Centenaria y BenemƩrita Escuela Normal para Profesores'),
(99307, 'https://ror.org/0529ebd28', 'en', 1, 'https://ror.org/0529ebd28 Arizona-Nevada Academy of Science'),
(99308, 'https://ror.org/052cnt662', 'fr', 1, 'https://ror.org/052cnt662 Ɖtude des Structures, des Processus d’Adaptation et des Changements de l’Espace'),
(99309, 'https://ror.org/052eegr76', 'en', 1, 'https://ror.org/052eegr76 National Health and Family Planning Commission äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(99310, 'https://ror.org/052f5cv23', 'en', 1, 'https://ror.org/052f5cv23 National University of Natural Medicine'),
(99311, 'https://ror.org/052gp0981', 'en', 1, 'https://ror.org/052gp0981 Multiple Sclerosis International Federation'),
(99312, 'https://ror.org/052pnfc88', 'fr', 1, 'https://ror.org/052pnfc88 GaNeXT'),
(99313, 'https://ror.org/052qdba82', 'de', 1, 'https://ror.org/052qdba82 Chemical and Veterinary Investigation Agency Karlsruhe Chemisches und VeterinƤruntersuchungsamt Karlsruhe'),
(99314, 'https://ror.org/052qsxn63', 'en', 1, 'https://ror.org/052qsxn63 State Key Laboratory of Automatic Target Recognition č‡ŖåŠØē›®ę ‡čÆ†åˆ«å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99315, 'https://ror.org/052rqyz24', 'en', 0, 'https://ror.org/052rqyz24 Copenhagen Municipal Hospital KĆøbenhavns Kommunehospital'),
(99316, 'https://ror.org/052rrw050', 'en', 1, 'https://ror.org/052rrw050 National Astronomical Observatory of Japan å›½ē«‹å¤©ę–‡å°'),
(99317, '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'),
(99318, 'https://ror.org/052ss8w32', 'en', 1, 'https://ror.org/052ss8w32 Ghana Health Service'),
(99319, 'https://ror.org/052tfza37', 'en', 1, 'https://ror.org/052tfza37 RTI International'),
(99320, 'https://ror.org/052tgfs08', 'en', 1, 'https://ror.org/052tgfs08 AGSB University'),
(99321, 'https://ror.org/052ts0e23', 'no_lang_code', 1, 'https://ror.org/052ts0e23 Uni Pharma (Greece)'),
(99322, 'https://ror.org/052y0z870', 'en', 1, 'https://ror.org/052y0z870 WWF-UK'),
(99323, 'https://ror.org/052ygfd66', 'no_lang_code', 1, 'https://ror.org/052ygfd66 Zimbabwe Ezekiel Guti University'),
(99324, 'https://ror.org/052zwa538', 'en', 1, 'https://ror.org/052zwa538 Vision Group on Science and Technology'),
(99325, 'https://ror.org/052zwqp97', 'no_lang_code', 1, 'https://ror.org/052zwqp97 Olive Quimica (Spain)'),
(99326, 'https://ror.org/0530a6n46', 'fr', 1, 'https://ror.org/0530a6n46 Ecole supƩrieure en science et technologies de l''informatique et du numƩrique'),
(99327, 'https://ror.org/0531dpd42', 'en', 1, 'https://ror.org/0531dpd42 Bihar Agricultural University बिहार ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(99328, 'https://ror.org/0532s7j62', 'no_lang_code', 1, 'https://ror.org/0532s7j62 Empresas PĆŗblicas de MedellĆ­n (Colombia)'),
(99329, 'https://ror.org/05343aa75', 'es', 1, 'https://ror.org/05343aa75 Centro de Investigaciones CientĆ­ficas Isla de la Cartuja'),
(99330, 'https://ror.org/053528t47', 'en', 1, 'https://ror.org/053528t47 The Foundation for Science and Technology'),
(99331, 'https://ror.org/0536dw066', 'es', 1, 'https://ror.org/0536dw066 Asociación de Investigación de la Industria Textil'),
(99332, 'https://ror.org/0538nf417', 'en', 1, 'https://ror.org/0538nf417 InnoRenew CoE'),
(99333, 'https://ror.org/0539tas66', 'en', 1, 'https://ror.org/0539tas66 Centre de recherche et de dƩveloppement de Fredericton Fredericton Research and Development Centre'),
(99334, 'https://ror.org/0539ybq07', 'en', 1, 'https://ror.org/0539ybq07 Animal Free Research UK'),
(99335, 'https://ror.org/053a0ya32', 'fr', 1, 'https://ror.org/053a0ya32 Academie navale de Menzel Bourguiba Menzel Bourguiba Naval Academy'),
(99336, 'https://ror.org/053a8fn46', 'en', 1, 'https://ror.org/053a8fn46 State Key Laboratory of Crop Genetic Improvement ä½œē‰©é—ä¼ ę”¹č‰Æå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99337, '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'),
(99338, 'https://ror.org/053evvt91', 'fr', 1, 'https://ror.org/053evvt91 Centre Hospitalier de Versailles'),
(99339, 'https://ror.org/053jm8142', 'en', 1, 'https://ror.org/053jm8142 Corewell Health Zeeland Hospital'),
(99340, 'https://ror.org/053kxkj53', 'fr', 1, 'https://ror.org/053kxkj53 Unité de Modélisation Mathématique et Informatique des Systèmes Complexes'),
(99341, 'https://ror.org/053mfvp43', 'no_lang_code', 1, 'https://ror.org/053mfvp43 Informa (United Kingdom)'),
(99342, 'https://ror.org/053my8279', 'en', 1, 'https://ror.org/053my8279 Council on Library and Information Resources'),
(99343, 'https://ror.org/053sj3y70', 'fr', 1, 'https://ror.org/053sj3y70 ReprƩsentations et IdentitƩs. Espaces Germanique, Nordique et NƩerlandophone'),
(99344, 'https://ror.org/053vhsf19', 'no_lang_code', 1, 'https://ror.org/053vhsf19 Combustion Research and Flow Technology (United States)'),
(99345, 'https://ror.org/053w5yj73', 'en', 1, 'https://ror.org/053w5yj73 State Key Laboratory of Numerical Modeling for Atmospheric Sciences and Geophysical Fluid Dynamics å¤§ę°”ē§‘å­¦å’Œåœ°ēƒęµä½“åŠ›å­¦ę•°å€¼ęØ”ę‹Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99346, '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'),
(99347, 'https://ror.org/053wph561', 'en', 1, 'https://ror.org/053wph561 Applied Research Laboratories, The University of Texas at Austin'),
(99348, 'https://ror.org/053xy8k29', 'pt', 1, 'https://ror.org/053xy8k29 Federal University of Tocantins Universidade Federal do Tocantins'),
(99349, 'https://ror.org/053zdpn86', 'no_lang_code', 1, 'https://ror.org/053zdpn86 Gree (China) ē ęµ·ę ¼åŠ›ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(99350, 'https://ror.org/05416s909', 'en', 1, 'https://ror.org/05416s909 University of Eloued Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁŠ'),
(99351, 'https://ror.org/0545we460', 'en', 1, 'https://ror.org/0545we460 South-East Scotland School of Anaesthesia'),
(99352, 'https://ror.org/0545xqn50', 'en', 1, 'https://ror.org/0545xqn50 Louisiana Academy of Sciences'),
(99353, 'https://ror.org/054659c28', 'en', 1, 'https://ror.org/054659c28 State Key Laboratory of Reproductive Biology for Family Planning č®”åˆ’ē”Ÿč‚²ē”Ÿę®–ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99354, 'https://ror.org/0546sy919', 'en', 1, 'https://ror.org/0546sy919 PAMO University of Medical Sciences'),
(99355, 'https://ror.org/05481me13', 'fr', 1, 'https://ror.org/05481me13 AlgoSolis'),
(99356, 'https://ror.org/054a6d704', 'es', 1, 'https://ror.org/054a6d704 Sociedad Estatal de Participaciones Industriales'),
(99357, 'https://ror.org/054dxrt80', 'es', 1, 'https://ror.org/054dxrt80 AlcalĆ” Center for Interdisciplinary Research Centro de Investigaciones Interdisciplinares de AlcalĆ”'),
(99358, 'https://ror.org/054n08713', 'en', 1, 'https://ror.org/054n08713 CureDuchenne'),
(99359, 'https://ror.org/054qehp48', 'nl', 1, 'https://ror.org/054qehp48 Dutch Research School for Astronomy Nederlandse Onderzoekschool Voor Astronomie'),
(99360, '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)'),
(99361, 'https://ror.org/054r0wx32', 'en', 1, 'https://ror.org/054r0wx32 Spinnaker Health Research Foundation'),
(99362, 'https://ror.org/054scg060', 'en', 1, 'https://ror.org/054scg060 State Key Laboratory of Mechanical Transmission ęœŗę¢°ä¼ åŠØå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99363, 'https://ror.org/054v0s666', 'fr', 1, 'https://ror.org/054v0s666 Laboratoire de GƩographie Physique'),
(99364, 'https://ror.org/054vff263', 'es', 1, 'https://ror.org/054vff263 Instituto de Investigaciones QuĆ­micas'),
(99365, 'https://ror.org/054x2er76', 'it', 1, 'https://ror.org/054x2er76 Aziende Socio Sanitarie Territoriale Lodi Regional Health Care and Social Agency of Lodi'),
(99366, 'https://ror.org/054xx3904', 'en', 1, 'https://ror.org/054xx3904 Vall d''Hebron Institute of Oncology Vall d’Hebron Institut d’Oncologia'),
(99367, 'https://ror.org/054xxtt73', 'en', 1, 'https://ror.org/054xxtt73 Tinbergen Institute'),
(99368, 'https://ror.org/054zwas39', 'en', 1, 'https://ror.org/054zwas39 Bavarian Polymer Institute Bayerisches Polymerinstitut'),
(99369, 'https://ror.org/05516t795', 'en', 1, 'https://ror.org/05516t795 St. Clare Hospital in Lakewood'),
(99370, 'https://ror.org/0551gkb08', 'en', 1, 'https://ror.org/0551gkb08 Stanford SystemX Alliance'),
(99371, 'https://ror.org/0551hes90', 'en', 1, 'https://ror.org/0551hes90 Prince William Sound Science Center'),
(99372, 'https://ror.org/0552dh385', 'en', 1, 'https://ror.org/0552dh385 Agrovyzkum Rapotin, Agrovyzkum Rapotin (Czechia) Agrovýzkum Rapotín s.r.o.'),
(99373, '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'),
(99374, 'https://ror.org/05544cm43', 'en', 1, 'https://ror.org/05544cm43 Nebraska Spine Hospital'),
(99375, 'https://ror.org/0555x2b41', 'en', 1, 'https://ror.org/0555x2b41 ANZCA Clinical Trials Network'),
(99376, 'https://ror.org/05567cf68', 'eu', 1, 'https://ror.org/05567cf68 Agencia Vasca de la Innovación Innobasque'),
(99377, 'https://ror.org/0556xhz50', 'en', 1, 'https://ror.org/0556xhz50 Hospital Real de Granada, Royal Hospital of Granada'),
(99378, 'https://ror.org/05588ks88', 'fr', 1, 'https://ror.org/05588ks88 Laboratoire de Linguistique et Didactique des Langues EtrangĆØres et Maternelles'),
(99379, 'https://ror.org/0558ewf28', 'nl', 1, 'https://ror.org/0558ewf28 Departement Omgeving'),
(99380, 'https://ror.org/0558szv56', 'en', 1, 'https://ror.org/0558szv56 å‘Øå—å…¬ē«‹å¤§å­¦'),
(99381, 'https://ror.org/055akgr63', 'en', 1, 'https://ror.org/055akgr63 State Key Laboratory of Cotton Biology ę£‰čŠ±ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99382, 'https://ror.org/055asww61', 'tr', 1, 'https://ror.org/055asww61 Üniversite ve Araştırma Kütüphanecileri Derneği'),
(99383, 'https://ror.org/055b59316', 'no_lang_code', 1, 'https://ror.org/055b59316 Archimedes International (Cyprus)'),
(99384, 'https://ror.org/055b7ng53', 'no_lang_code', 1, 'https://ror.org/055b7ng53 Gamma Reality (United States)'),
(99385, 'https://ror.org/055cg2t55', 'en', 1, 'https://ror.org/055cg2t55 Virginia Soybean Board'),
(99386, 'https://ror.org/055cmx385', 'es', 1, 'https://ror.org/055cmx385 Institute for Functional Biology and Genomics Instituto de Biología Funcional y Genómica'),
(99387, 'https://ror.org/055cy8878', 'en', 1, 'https://ror.org/055cy8878 U.S. Army Evaluation Center'),
(99388, 'https://ror.org/055d2j725', 'en', 1, 'https://ror.org/055d2j725 nccr – on the move'),
(99389, 'https://ror.org/055eghv78', 'fr', 1, 'https://ror.org/055eghv78 Centre d’études des transformations des activitĆ©s physiques et sportives'),
(99390, 'https://ror.org/055j3c439', 'en', 0, 'https://ror.org/055j3c439 Harrison Medical Center'),
(99391, 'https://ror.org/055jvqb21', 'fr', 1, 'https://ror.org/055jvqb21 Fondation HEC HEC Foundation'),
(99392, 'https://ror.org/055kfjr35', 'en', 1, 'https://ror.org/055kfjr35 Institute of Life, Earth and Environment'),
(99393, 'https://ror.org/055n47h92', 'en', 1, 'https://ror.org/055n47h92 National Institutes of Natural Sciences č‡Ŗē„¶ē§‘å­¦ē ”ē©¶ę©Ÿę§‹'),
(99394, 'https://ror.org/055qbch41', 'en', 1, 'https://ror.org/055qbch41 Institute of Basic Medical Sciences of the Chinese Academy of Medical Sciences äø­å›½åŒ»å­¦ē§‘å­¦é™¢åŸŗē”€åŒ»å­¦ē ”ē©¶ę‰€'),
(99395, 'https://ror.org/055rh9p75', 'en', 1, 'https://ror.org/055rh9p75 State Key Laboratory of Aerodynamics ē©ŗå¤©é£žč”Œē©ŗę°”åŠØåŠ›ē§‘å­¦äøŽęŠ€ęœÆå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(99396, 'https://ror.org/055sgt471', 'es', 1, 'https://ror.org/055sgt471 Universidad Isabel I'),
(99397, 'https://ror.org/055v4a470', 'pt', 1, 'https://ror.org/055v4a470 Institute for Philosophical Studies Instituto de Estudos Filosóficos'),
(99398, 'https://ror.org/055yb9v95', 'no_lang_code', 1, 'https://ror.org/055yb9v95 IBM (Netherlands)'),
(99399, 'https://ror.org/055ymkj32', 'fr', 1, 'https://ror.org/055ymkj32 Adhesion and Inflammation Lab Laboratoire AdhƩsion et inflammation'),
(99400, 'https://ror.org/05601z471', 'fr', 1, 'https://ror.org/05601z471 Institut Des Substances et Organismes de la Mer'),
(99401, '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'),
(99402, 'https://ror.org/05658wt11', 'en', 1, 'https://ror.org/05658wt11 Virginia Mason Bainbridge Island Medical Center'),
(99403, 'https://ror.org/0566sj483', 'en', 1, 'https://ror.org/0566sj483 Earlham College'),
(99404, 'https://ror.org/05679z329', 'en', 1, 'https://ror.org/05679z329 Washington Grain Commission'),
(99405, 'https://ror.org/0567hb468', 'en', 1, 'https://ror.org/0567hb468 Synchrotron-Light for Experimental Science and Applications in the Middle East'),
(99406, 'https://ror.org/0568cs376', 'no_lang_code', 1, 'https://ror.org/0568cs376 Commonwealth Edison (United States)'),
(99407, 'https://ror.org/0568g2481', 'en', 1, 'https://ror.org/0568g2481 The Nonwovens Institute'),
(99408, 'https://ror.org/0568jvs10', 'en', 1, 'https://ror.org/0568jvs10 Sphinx University'),
(99409, 'https://ror.org/05691ev83', 'en', 1, 'https://ror.org/05691ev83 Alexandria Archive Institute'),
(99410, 'https://ror.org/0569b7y96', 'no_lang_code', 1, 'https://ror.org/0569b7y96 Alstom Alstom (United States)'),
(99411, 'https://ror.org/056a37x91', 'es', 1, 'https://ror.org/056a37x91 Estación Experimental de Aula Dei'),
(99412, 'https://ror.org/056bp6y70', 'de', 0, 'https://ror.org/056bp6y70 Nuklearmedizinische Klinik des Klinikums rechts der Isar'),
(99413, 'https://ror.org/056ezpj87', 'en', 1, 'https://ror.org/056ezpj87 Philippine Council for Industry, Energy, and Emerging Technology Research and Development'),
(99414, 'https://ror.org/056jxaa57', 'de', 1, 'https://ror.org/056jxaa57 Theologische FakultƤt Trier'),
(99415, 'https://ror.org/056mmjd70', 'fr', 1, 'https://ror.org/056mmjd70 Modélisation et Ingénierie des Systèmes Complexes Biologiques pour le Diagnostic'),
(99416, 'https://ror.org/056nnzb78', 'en', 1, 'https://ror.org/056nnzb78 Rochester Academy of Science'),
(99417, 'https://ror.org/056q8ze52', 'en', 1, 'https://ror.org/056q8ze52 St. Elizabeth Hospital in Enumclaw'),
(99418, 'https://ror.org/056qnjw25', 'en', 1, 'https://ror.org/056qnjw25 American Chronic Pain Association'),
(99419, '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'),
(99420, 'https://ror.org/056wcaa53', 'en', 1, 'https://ror.org/056wcaa53 State Key Laboratory of Clean and Efficient Coal-Fired Power Generation and Pollution Control ęø…ę“é«˜ę•ˆē‡ƒē…¤å‘ē”µäøŽę±”ęŸ“ęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99421, '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'),
(99422, 'https://ror.org/05721rw82', 'es', 1, 'https://ror.org/05721rw82 Centro Quƭmica OrgƔnica "LORA-TAMAYO"'),
(99423, 'https://ror.org/05745n787', 'de', 1, 'https://ror.org/05745n787 Gƶttingen State and University Library NiedersƤchsische Staats-und UniversitƤtsbibliothek Gƶttingen'),
(99424, 'https://ror.org/0574dzy90', 'en', 1, 'https://ror.org/0574dzy90 William Harvey Research Institute'),
(99425, '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'),
(99426, 'https://ror.org/0576by029', 'en', 1, 'https://ror.org/0576by029 Athena Research and Innovation Center In Information Communication & Knowledge Technologies'),
(99427, 'https://ror.org/057916623', 'fr', 0, 'https://ror.org/057916623 MƩcanismes Centraux et PƩriphƩriques de la NeurodƩgƩnƩrescence'),
(99428, 'https://ror.org/057a9rf33', 'no_lang_code', 1, 'https://ror.org/057a9rf33 Raytheon Technologies (Finland)'),
(99429, 'https://ror.org/057apef51', 'fr', 1, 'https://ror.org/057apef51 Centre quƩbƩcois sur les matƩriaux fonctionnels Quebec Centre for Advanced Materials'),
(99430, 'https://ror.org/057axh226', 'fr', 1, 'https://ror.org/057axh226 Laboratoire de Recherche Hydrodynamique, EnergƩtique et Environnement AtmosphƩrique'),
(99431, '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'),
(99432, 'https://ror.org/057dddr91', 'en', 1, 'https://ror.org/057dddr91 Government of Northern Ireland'),
(99433, 'https://ror.org/057ecva72', 'en', 1, 'https://ror.org/057ecva72 National University of the Northeast Universidad Nacional del Nordeste'),
(99434, 'https://ror.org/057epqv46', 'no_lang_code', 1, 'https://ror.org/057epqv46 Centro de TecnologĆ­as Aeronauticas (Spain)'),
(99435, 'https://ror.org/057g20z61', 'en', 1, 'https://ror.org/057g20z61 Science and Technology Facilities Council'),
(99436, 'https://ror.org/057gqmg22', 'es', 1, 'https://ror.org/057gqmg22 Consejo Argentino de OftalmologĆ­a'),
(99437, 'https://ror.org/057jnjd73', 'en', 1, 'https://ror.org/057jnjd73 Institute of Mechanics äø­å›½ē§‘å­¦é™¢åŠ›å­¦ē ”ē©¶ę‰€'),
(99438, 'https://ror.org/057k6gq03', 'no_lang_code', 1, 'https://ror.org/057k6gq03 Cesefor'),
(99439, 'https://ror.org/057kr0a20', 'en', 1, 'https://ror.org/057kr0a20 Society for the Study of Evolution'),
(99440, 'https://ror.org/057m7sf25', 'en', 1, 'https://ror.org/057m7sf25 Doctors'' Center Hospital'),
(99441, 'https://ror.org/057mvv518', 'pt', 1, 'https://ror.org/057mvv518 Federal University of RecƓncavo da Bahia Universidade Federal do RecƓncavo da Bahia'),
(99442, 'https://ror.org/057p7e749', 'en', 1, 'https://ror.org/057p7e749 Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development'),
(99443, 'https://ror.org/057yy7z71', 'no_lang_code', 0, 'https://ror.org/057yy7z71 Ramem (Spain)'),
(99444, 'https://ror.org/057zh3y96', 'en', 1, 'https://ror.org/057zh3y96 The University of Tokyo ę±äŗ¬å¤§å­¦'),
(99445, 'https://ror.org/0580ctc67', 'es', 1, 'https://ror.org/0580ctc67 Centro OceanogrƔfico de Canarias Oceanographic Center of Canarias'),
(99446, 'https://ror.org/0580dnq61', 'en', 1, 'https://ror.org/0580dnq61 Accelerator Test Facility'),
(99447, 'https://ror.org/0581g8849', 'fr', 1, 'https://ror.org/0581g8849 Laboratoire d’Analyse et de MathĆ©matiques AppliquĆ©es'),
(99448, 'https://ror.org/05838sn73', 'no_lang_code', 0, 'https://ror.org/05838sn73 Alliant Techsystems (United States)'),
(99449, 'https://ror.org/05859w570', 'ca', 1, 'https://ror.org/05859w570 Escola Politècnica Superior d''Alcoi Escuela Politécnica Superior de Alcoy'),
(99450, 'https://ror.org/05884rv02', 'pl', 1, 'https://ror.org/05884rv02 Gdańskie Seminarium Duchowne'),
(99451, 'https://ror.org/0589kgd85', 'en', 1, 'https://ror.org/0589kgd85 Yukawa Institute for Theoretical Physics äŗ¬éƒ½å¤§å­øę¹Æę²³ē†č«–ē‰©ē†ē ”ē©¶ę‰€'),
(99452, 'https://ror.org/058ackw67', 'en', 1, 'https://ror.org/058ackw67 Ted Nash Long Life Foundation'),
(99453, 'https://ror.org/058afx839', 'en', 1, 'https://ror.org/058afx839 Forest and Rangeland Ecosystem Science Center'),
(99454, 'https://ror.org/058cmwb06', 'es', 1, 'https://ror.org/058cmwb06 National Organization of Spanish blind people Organización Nacional de Ciegos Españoles'),
(99455, 'https://ror.org/058cpk191', 'en', 1, 'https://ror.org/058cpk191 Komenda College of Education'),
(99456, 'https://ror.org/058gmq444', 'en', 1, 'https://ror.org/058gmq444 BE-Basic Foundation'),
(99457, 'https://ror.org/058hjkk82', 'en', 1, 'https://ror.org/058hjkk82 Universidad de Puerto Rico en Bayamón University of Puerto Rico at Bayamón'),
(99458, 'https://ror.org/058m7ey48', 'en', 1, 'https://ror.org/058m7ey48 Sandia National Laboratories California'),
(99459, 'https://ror.org/058nb7410', 'no_lang_code', 1, 'https://ror.org/058nb7410 Certis USA (United States)'),
(99460, 'https://ror.org/058ne9w36', 'en', 1, 'https://ror.org/058ne9w36 Royal Marsden Cancer Charity'),
(99461, 'https://ror.org/058nm8p51', 'en', 1, 'https://ror.org/058nm8p51 State Key Laboratory of Desert and Oasis Ecology č’ę¼ äøŽē»æę“²ē”Ÿę€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99462, 'https://ror.org/058qr4y65', 'en', 1, 'https://ror.org/058qr4y65 Alzheimer Precision Medicine'),
(99463, 'https://ror.org/058sakv40', 'en', 1, 'https://ror.org/058sakv40 Corewell Health William Beaumont University Hospital'),
(99464, 'https://ror.org/058t7w767', 'en', 1, 'https://ror.org/058t7w767 State Key Laboratory of Drug Research ę–°čÆē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99465, 'https://ror.org/058t8q018', 'no_lang_code', 1, 'https://ror.org/058t8q018 Vindico Pharmaceuticals (United States)'),
(99466, 'https://ror.org/058thx797', 'es', 1, 'https://ror.org/058thx797 Hospital Universitario Virgen de la Arrixaca'),
(99467, 'https://ror.org/058wb7691', 'no_lang_code', 1, 'https://ror.org/058wb7691 Renesas Electronics (Japan) ćƒ«ćƒć‚µć‚¹ ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(99468, 'https://ror.org/058wvhh95', 'en', 1, 'https://ror.org/058wvhh95 Istituto nazionale per l’analisi delle politiche pubbliche National Institute for Public Policy Analysis'),
(99469, 'https://ror.org/058yyz752', 'pt', 1, 'https://ror.org/058yyz752 Instituto Nacional de Energia ElƩtrica National Institute of Electricity'),
(99470, 'https://ror.org/05906sn23', 'en', 1, 'https://ror.org/05906sn23 American Fisheries Society'),
(99471, 'https://ror.org/05908st72', 'es', 1, 'https://ror.org/05908st72 Hospital Damas'),
(99472, 'https://ror.org/0591s4t67', 'es', 1, 'https://ror.org/0591s4t67 Servicio Gallego de Salud'),
(99473, 'https://ror.org/05923zj50', 'es', 1, 'https://ror.org/05923zj50 Asociación Colombiana de Neumología y Cirugía de Tórax');
INSERT INTO `rors` VALUES
(99474, 'https://ror.org/0592ata02', 'fr', 1, 'https://ror.org/0592ata02 Equipes Traitement de l''Information et SystĆØmes Information Processing and System Research Lab'),
(99475, 'https://ror.org/0592v9m14', 'en', 1, 'https://ror.org/0592v9m14 UBS Optimus Foundation'),
(99476, 'https://ror.org/0594nch39', 'de', 1, 'https://ror.org/0594nch39 Ministerium für Ländlichen Raum und Verbraucherschutz Baden-Württemberg'),
(99477, 'https://ror.org/0595ys057', 'en', 1, 'https://ror.org/0595ys057 State Key Laboratory of Media Convergence and Communication åŖ’ä½“čžåˆäøŽä¼ ę’­å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99478, 'https://ror.org/05977wa81', 'fr', 1, 'https://ror.org/05977wa81 Cognitive and Semantic Interpretation Engineering Laboratory Laboratoire en ingƩnierie cognitive et sƩmantique'),
(99479, 'https://ror.org/0599cs764', 'en', 1, 'https://ror.org/0599cs764 UCLA Jonsson Comprehensive Cancer Center'),
(99480, 'https://ror.org/059c5gz18', 'en', 1, 'https://ror.org/059c5gz18 Ministarstvo gospodarstva i održivog razvoja Ministry of Economy and Sustainable Development'),
(99481, 'https://ror.org/059gc9s81', 'en', 0, 'https://ror.org/059gc9s81 United Nations University Institute on Globalization, Culture and Mobility'),
(99482, 'https://ror.org/059h0ng81', 'en', 1, 'https://ror.org/059h0ng81 Central Mechanical Engineering Research Institute'),
(99483, 'https://ror.org/059nn3902', 'en', 1, 'https://ror.org/059nn3902 State Key Laboratory of Mechanical Structure Mechanics and Control ęœŗę¢°ē»“ęž„åŠ›å­¦åŠęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99484, 'https://ror.org/059qgcz87', 'fr', 1, 'https://ror.org/059qgcz87 UniversitĆ© Internationale Abulcasis des Sciences de la SantĆ© Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ł‡Ų±Ų§ŁˆŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ų¹Ł„ŁˆŁ… الصحة'),
(99485, 'https://ror.org/059qgvg50', 'en', 1, 'https://ror.org/059qgvg50 Health Research'),
(99486, 'https://ror.org/059t7s261', 'es', 1, 'https://ror.org/059t7s261 Centro de Documentación Musical de Andalucía'),
(99487, 'https://ror.org/059t9bq48', 'en', 1, 'https://ror.org/059t9bq48 ZERO Prostate Cancer'),
(99488, 'https://ror.org/059v8sw69', 'fr', 1, 'https://ror.org/059v8sw69 Centre d’étude de la langue et des littĆ©ratures franƧaises'),
(99489, 'https://ror.org/059wz5438', 'no_lang_code', 1, 'https://ror.org/059wz5438 China Huaneng Group Co., Ltd. (China) äø­å›½åŽčƒ½é›†å›¢'),
(99490, 'https://ror.org/059y0zb32', 'en', 1, 'https://ror.org/059y0zb32 State Key Laboratory of Cognitive Neuroscience and Learning č®¤ēŸ„ē„žē»ē§‘å­¦äøŽå­¦ä¹ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99491, 'https://ror.org/059y3xg14', 'nl', 1, 'https://ror.org/059y3xg14 Rotterdamse Fondsen'),
(99492, 'https://ror.org/059ymf107', 'en', 1, 'https://ror.org/059ymf107 State Key Laboratory of Materials Processing and Die & Mould Technology ęę–™ęˆå½¢äøŽęØ”å…·ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99493, 'https://ror.org/059zf1d45', 'no_lang_code', 0, 'https://ror.org/059zf1d45 Institut Universitari de Ciencia i Tecnologia (Spain)'),
(99494, 'https://ror.org/05a147a10', 'es', 1, 'https://ror.org/05a147a10 Instituto de Evaluación e Ingeniería Avanzada'),
(99495, 'https://ror.org/05a1an246', 'en', 1, 'https://ror.org/05a1an246 Government College of Engineering, Tirunelveli'),
(99496, 'https://ror.org/05a25vm86', 'en', 1, 'https://ror.org/05a25vm86 Lucile Packard Children''s Hospital'),
(99497, 'https://ror.org/05a260x64', 'en', 1, 'https://ror.org/05a260x64 Global Crop Diversity Trust'),
(99498, 'https://ror.org/05a26ag16', 'fr', 1, 'https://ror.org/05a26ag16 Centre d''analyse des rhƩtoriques religieuses de l''AntiquitƩ'),
(99499, 'https://ror.org/05a3srq89', 'fr', 1, 'https://ror.org/05a3srq89 Institut de Valorisation des DonnƩes Institute for Data Valorisation'),
(99500, 'https://ror.org/05a86es26', 'en', 1, 'https://ror.org/05a86es26 Aichi Kidney Foundation ę„›ēŸ„č…Žč‡“č²”å›£'),
(99501, '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'),
(99502, 'https://ror.org/05afdpg81', 'es', 1, 'https://ror.org/05afdpg81 Centro Regional de Investigaciones Multidisciplinarias'),
(99503, 'https://ror.org/05ahcwz21', 'en', 1, 'https://ror.org/05ahcwz21 Amrita Institute of Medical Sciences and Research Centre ą“…ą“®ąµƒą“¤ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“øą“Æąµ»ą“øą“øąµ'),
(99504, 'https://ror.org/05ajv1r64', 'en', 1, 'https://ror.org/05ajv1r64 Johns Hopkins University – Nanjing University Center for Chinese and American Studies å—äŗ¬å¤§å­¦ā€”ēŗ¦ēæ°ę–ÆĀ·éœę™®é‡‘ę–Æå¤§å­¦äø­ē¾Žę–‡åŒ–ē ”ē©¶äø­åæƒ'),
(99505, 'https://ror.org/05ap1tw43', 'en', 1, 'https://ror.org/05ap1tw43 Jizzakh State Pedagogical University Jizzax Davlat Pedagogika Universiteti Джизакский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(99506, 'https://ror.org/05apcas97', 'en', 1, 'https://ror.org/05apcas97 State Key Laboratory of Luminescence and Application å‘å…‰å­¦åŠåŗ”ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99507, 'https://ror.org/05at36m36', 'es', 1, 'https://ror.org/05at36m36 Centro de Neumologia Pediatrica'),
(99508, '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 Республиканский специализированный Š½Š°ŃƒŃ‡Š½Š¾-практический меГицинский центр онкологии Šø раГиологии'),
(99509, 'https://ror.org/05axz5g38', 'en', 1, 'https://ror.org/05axz5g38 State Key Laboratory of Functional Materials for Informatics äæ”ęÆåŠŸčƒ½ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99510, 'https://ror.org/05b0cyh02', 'en', 1, 'https://ror.org/05b0cyh02 Princess Nourah bint Abdulrahman University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ±Ų© Ł†ŁˆŲ±Ų© بنت Ų¹ŲØŲÆ الرحمن'),
(99511, 'https://ror.org/05b0g2v72', 'en', 1, 'https://ror.org/05b0g2v72 Real Colegio Complutense'),
(99512, 'https://ror.org/05b0hce56', 'en', 1, 'https://ror.org/05b0hce56 Children’s Hospital Foundation of Manitoba'),
(99513, 'https://ror.org/05b0t0374', 'no_lang_code', 1, 'https://ror.org/05b0t0374 China National Electric Apparatus Research Institute (China) äø­å›½ē”µå™Øē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(99514, 'https://ror.org/05b3shf88', 'en', 1, 'https://ror.org/05b3shf88 Baotou Research Institute of Rare Earths åŒ…å¤“ēØ€åœŸē ”ē©¶é™¢'),
(99515, 'https://ror.org/05b4p0g26', 'fr', 1, 'https://ror.org/05b4p0g26 Laboratoire d''Analyse des SociƩtƩs, Transformations et Adaptations'),
(99516, 'https://ror.org/05b6m5m63', 'no_lang_code', 1, 'https://ror.org/05b6m5m63 Mcrit (Spain) Multicriteria Planning'),
(99517, 'https://ror.org/05b75nt23', 'no_lang_code', 1, 'https://ror.org/05b75nt23 Bial (Spain)'),
(99518, 'https://ror.org/05b7rex33', 'no_lang_code', 1, 'https://ror.org/05b7rex33 Ōtani University 大谷大学'),
(99519, 'https://ror.org/05b8c0r92', 'en', 1, 'https://ror.org/05b8c0r92 Laboratories of Analytical Biology'),
(99520, 'https://ror.org/05bdn0q71', 'fr', 1, 'https://ror.org/05bdn0q71 Laboratoire d''Algorithmique, ComplexitƩ et Logique'),
(99521, 'https://ror.org/05bfesv65', 'en', 1, 'https://ror.org/05bfesv65 State Key Laboratory of High Temperature Gas Dynamics é«˜ęø©ę°”ä½“åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99522, 'https://ror.org/05bhjm183', 'en', 1, 'https://ror.org/05bhjm183 Higher Council for Science and Technology'),
(99523, 'https://ror.org/05bhks608', 'id', 1, 'https://ror.org/05bhks608 Universitas Banten Jaya'),
(99524, 'https://ror.org/05bjr0y28', 'no_lang_code', 1, 'https://ror.org/05bjr0y28 Neurotech, LLC Neurotech, LLC (United States)'),
(99525, 'https://ror.org/05bjxv014', 'en', 1, 'https://ror.org/05bjxv014 National Agricultural Research and Development Institute'),
(99526, 'https://ror.org/05bk0c386', 'en', 1, 'https://ror.org/05bk0c386 Rusk Rehabilitation'),
(99527, 'https://ror.org/05bmnqf11', 'es', 1, 'https://ror.org/05bmnqf11 Universidad Da Vinci'),
(99528, 'https://ror.org/05bmx3r26', 'en', 1, 'https://ror.org/05bmx3r26 Guam Waterworks Authority'),
(99529, 'https://ror.org/05bpjsf25', 'en', 1, 'https://ror.org/05bpjsf25 Netherlands Earth System Science Centre'),
(99530, 'https://ror.org/05br52903', 'en', 1, 'https://ror.org/05br52903 Baba Raghav Das Medical College बाबा राघव दास ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(99531, 'https://ror.org/05btmzn02', 'fr', 1, 'https://ror.org/05btmzn02 Corteam'),
(99532, 'https://ror.org/05bvkb649', 'es', 1, 'https://ror.org/05bvkb649 Diputación Foral de Gipuzkoa'),
(99533, '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" Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø геофизики» имени Š„.М.АбГуллаева'),
(99534, 'https://ror.org/05bws7k58', 'en', 1, 'https://ror.org/05bws7k58 Portia'),
(99535, 'https://ror.org/05bxbmy32', 'en', 1, 'https://ror.org/05bxbmy32 Chinese Academy of Social Sciences äø­å›½ē¤¾ä¼šē§‘å­¦é™¢'),
(99536, 'https://ror.org/05c6mwc92', 'en', 1, 'https://ror.org/05c6mwc92 State Key Laboratory of Vegetation and Environmental Change ę¤č¢«äøŽēŽÆå¢ƒå˜åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99537, 'https://ror.org/05c7h4935', 'en', 1, 'https://ror.org/05c7h4935 Ministry of Health'),
(99538, 'https://ror.org/05c84j393', 'pt', 1, 'https://ror.org/05c84j393 Minas Gerais State University Universidade do Estado de Minas Gerais'),
(99539, 'https://ror.org/05c8abs18', 'es', 1, 'https://ror.org/05c8abs18 Barcelona Activa'),
(99540, 'https://ror.org/05c92t973', 'no_lang_code', 1, 'https://ror.org/05c92t973 Tenaris (Luxembourg)'),
(99541, 'https://ror.org/05c99vk74', 'fr', 1, 'https://ror.org/05c99vk74 Laboratoire de Recherche sur les Apprentissages en Contexte'),
(99542, 'https://ror.org/05c9b8370', 'id', 1, 'https://ror.org/05c9b8370 Universitas Tunas Pembangunan'),
(99543, 'https://ror.org/05c9p6d02', 'en', 1, 'https://ror.org/05c9p6d02 NIHR School for Public Health Research'),
(99544, 'https://ror.org/05cd55294', 'en', 1, 'https://ror.org/05cd55294 State Key Laboratory of Mobile Networks and Mobile Multimedia Technology ē§»åŠØē½‘ē»œå’Œē§»åŠØå¤šåŖ’ä½“ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99545, 'https://ror.org/05cebxq10', 'en', 1, 'https://ror.org/05cebxq10 Nuclear Science and Technology Research Institute'),
(99546, 'https://ror.org/05ck7c689', 'en', 1, 'https://ror.org/05ck7c689 Britaniya Menejment Universiteti British Management University Tashkent Британский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ менеГжмента в Š¢Š°ŃˆŠŗŠµŠ½Ń‚е'),
(99547, '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'),
(99548, 'https://ror.org/05cn9bw97', 'es', 1, 'https://ror.org/05cn9bw97 Ministerio de Agricultura, Pesca y Alimentación'),
(99549, 'https://ror.org/05cneqf17', 'en', 1, 'https://ror.org/05cneqf17 Epilepsy Society'),
(99550, 'https://ror.org/05cnhrr87', 'en', 1, 'https://ror.org/05cnhrr87 Al-Ryada University for Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±ŁŠŲ§ŲÆŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(99551, 'https://ror.org/05cpnza27', 'en', 1, 'https://ror.org/05cpnza27 Office of Congressional and Intergovernmental Affairs'),
(99552, 'https://ror.org/05crb7x25', 'no_lang_code', 1, 'https://ror.org/05crb7x25 Shaanxi Yanchang Petroleum (China) é™•č„æå»¶é•æēŸ³ę²¹ļ¼ˆé›†å›¢ļ¼‰ęœ‰é™č“£ä»»å…¬åø'),
(99553, 'https://ror.org/05csy5p27', 'en', 1, 'https://ror.org/05csy5p27 Hydrogen and Fuel Cell Technologies Office'),
(99554, 'https://ror.org/05ctb2n55', 'en', 1, 'https://ror.org/05ctb2n55 Lirio, Inc., Lirio, Inc. (United States)'),
(99555, 'https://ror.org/05cvf7v30', 'en', 1, 'https://ror.org/05cvf7v30 Institute of Physics 中国科学院物理研究所'),
(99556, 'https://ror.org/05cwx3318', 'en', 1, 'https://ror.org/05cwx3318 National Microbiome Data Collaborative'),
(99557, 'https://ror.org/05cz70a34', 'en', 1, 'https://ror.org/05cz70a34 Max Perutz Labs'),
(99558, 'https://ror.org/05d2nrb83', 'no_lang_code', 1, 'https://ror.org/05d2nrb83 Tenaris (Venezuela)'),
(99559, 'https://ror.org/05d2yfz11', 'en', 1, 'https://ror.org/05d2yfz11 National University of Defense Technology äø­å›½äŗŗę°‘č§£ę”¾å†›å›½é˜²ē§‘å­¦ęŠ€ęœÆå¤§å­¦'),
(99560, 'https://ror.org/05d3bn623', 'fr', 1, 'https://ror.org/05d3bn623 Laboratoire des Applications NumƩriques'),
(99561, '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'),
(99562, 'https://ror.org/05d659s21', 'en', 1, 'https://ror.org/05d659s21 Liaoning Cancer Hospital & Institute'),
(99563, 'https://ror.org/05d67dc31', 'no_lang_code', 1, 'https://ror.org/05d67dc31 Abbott Vascular (United States)'),
(99564, 'https://ror.org/05d6tb673', 'it', 1, 'https://ror.org/05d6tb673 Region of Liguria Regione Liguria'),
(99565, 'https://ror.org/05d6wfd23', 'fr', 1, 'https://ror.org/05d6wfd23 Station d’Écologie ThĆ©orique et ExpĆ©rimentale Theoretical and Experimental Ecology Station'),
(99566, 'https://ror.org/05d789537', 'en', 1, 'https://ror.org/05d789537 New York University Langone Orthopedic Hospital'),
(99567, 'https://ror.org/05d80e146', 'en', 1, 'https://ror.org/05d80e146 Southwestern Medical Center'),
(99568, 'https://ror.org/05d8cac05', 'en', 1, 'https://ror.org/05d8cac05 Shanghai Institute of Pollution Control and Ecological Security äøŠęµ·ę±”ęŸ“ęŽ§åˆ¶äøŽē”Ÿę€å®‰å…Øē ”ē©¶é™¢'),
(99569, 'https://ror.org/05d95p271', 'fr', 1, 'https://ror.org/05d95p271 Jeunesse - ActivitƩ Physique et Sportive, santƩ'),
(99570, 'https://ror.org/05datm122', 'no_lang_code', 1, 'https://ror.org/05datm122 Ordesa (Spain)'),
(99571, 'https://ror.org/05dbe0t82', 'fr', 1, 'https://ror.org/05dbe0t82 Immunologie - Immunopathologie - ImmunothƩrapie'),
(99572, 'https://ror.org/05dch6316', 'en', 1, 'https://ror.org/05dch6316 Private Academic Library Network of Indiana, Inc. (PALNI)'),
(99573, 'https://ror.org/05ddrvt52', 'en', 1, 'https://ror.org/05ddrvt52 Defence Science and Technology Group'),
(99574, 'https://ror.org/05ddxe180', 'en', 1, 'https://ror.org/05ddxe180 Kementerian Kesihatan Malaysia Ministry of Health'),
(99575, 'https://ror.org/05dfxeg46', 'fr', 1, 'https://ror.org/05dfxeg46 Henri PoincarƩ Institute Institut Henri PoincarƩ'),
(99576, 'https://ror.org/05dg9bg39', 'en', 1, 'https://ror.org/05dg9bg39 Pathwest Laboratory Medicine'),
(99577, 'https://ror.org/05dnzrj50', 'en', 0, 'https://ror.org/05dnzrj50 Materials Sciences and Engineering Division'),
(99578, 'https://ror.org/05dpwde09', 'en', 1, 'https://ror.org/05dpwde09 LUPUS UK'),
(99579, 'https://ror.org/05dq15a76', 'en', 1, 'https://ror.org/05dq15a76 WWF-Indonesia'),
(99580, 'https://ror.org/05dq2gs74', 'en', 1, 'https://ror.org/05dq2gs74 Vanderbilt University Medical Center'),
(99581, 'https://ror.org/05dq6kg38', 'id', 1, 'https://ror.org/05dq6kg38 Institut Agama Islam Negeri Kendari'),
(99582, 'https://ror.org/05dr3r825', 'nl', 1, 'https://ror.org/05dr3r825 Dutch Arthritis Foundation ReumaNederland'),
(99583, 'https://ror.org/05dsxr353', 'it', 1, 'https://ror.org/05dsxr353 Istituto Sperimentale Agronomico'),
(99584, 'https://ror.org/05dsysc59', 'es', 1, 'https://ror.org/05dsysc59 Instituto de CarboquĆ­mica'),
(99585, 'https://ror.org/05dwv1d98', 'fr', 1, 'https://ror.org/05dwv1d98 Institut des Mondes Anglophone, Germanique et Roman'),
(99586, 'https://ror.org/05dy2c135', 'no_lang_code', 1, 'https://ror.org/05dy2c135 China Coal Research Institute (China) 中国煤炭科学研究总院'),
(99587, 'https://ror.org/05e0q7s59', 'es', 1, 'https://ror.org/05e0q7s59 Institute of General Organic Chemistry Instituto de Quƭmica OrgƔnica General'),
(99588, 'https://ror.org/05e1gxg35', 'en', 1, 'https://ror.org/05e1gxg35 Deendayal Research Institute'),
(99589, 'https://ror.org/05e5yjs79', 'de', 1, 'https://ror.org/05e5yjs79 Schweizerisches Universitäres Institut für Traditionelle Chinesische Medizin'),
(99590, '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'),
(99591, 'https://ror.org/05e6hcm17', 'en', 1, 'https://ror.org/05e6hcm17 Ministry of Agriculture and Rural Development ×ž×©×Ø×“ ×”×—×§×œ××•×Ŗ ופיתוח הכפר'),
(99592, 'https://ror.org/05ect0289', 'ca', 1, 'https://ror.org/05ect0289 Institut de CiĆØncies del Mar Instituto de Ciencias del Mar'),
(99593, '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'),
(99594, 'https://ror.org/05eev2q71', 'en', 1, 'https://ror.org/05eev2q71 Centre for Epidemiology Versus Arthritis'),
(99595, 'https://ror.org/05efe5r97', 'en', 1, 'https://ror.org/05efe5r97 Central Laser Facility'),
(99596, 'https://ror.org/05ehhzx21', 'en', 1, 'https://ror.org/05ehhzx21 U.S. Geological Survey, Alaska Science Center'),
(99597, 'https://ror.org/05ehpzy81', 'en', 1, 'https://ror.org/05ehpzy81 China Electric Power Research Institute äø­å›½ē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(99598, 'https://ror.org/05ej12d67', 'tr', 1, 'https://ror.org/05ej12d67 Turkish Society of Anesthesiology and Reanimation Türk Anesteziyoloji ve Reanimasyon Derneği'),
(99599, 'https://ror.org/05ej3nj38', 'no_lang_code', 0, 'https://ror.org/05ej3nj38 EMD Serono (United States)'),
(99600, 'https://ror.org/05ek3m339', 'en', 1, 'https://ror.org/05ek3m339 Office of International Affairs'),
(99601, 'https://ror.org/05eky6607', 'fr', 1, 'https://ror.org/05eky6607 Centre intĆ©grĆ© de santĆ© et des services sociaux de l’Outaouais'),
(99602, '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.'),
(99603, 'https://ror.org/05etgbt76', 'id', 1, 'https://ror.org/05etgbt76 Institut Seni Indonesia Yogyakarta'),
(99604, 'https://ror.org/05etnz140', 'en', 1, 'https://ror.org/05etnz140 Shanghai Institute of Ceramics äø­å›½ē§‘å­¦é™¢äøŠęµ·ē”…é…øē›ē ”ē©¶ę‰€'),
(99605, 'https://ror.org/05etxs293', 'en', 1, 'https://ror.org/05etxs293 Diamond Light Source'),
(99606, 'https://ror.org/05eve7a13', 'en', 1, 'https://ror.org/05eve7a13 Wickramarachchi University of Indigenous Medicine ą¶œą¶øą·Šą¶“ą·„ ą·€ą·’ą¶šą·Šą¶»ą¶øą·ą¶»ą¶ ą·Šą¶ ą·’ ą¶Æą·šą·ą·“ą¶ŗ ą·€ą·›ą¶Æą·Šą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šą¶ŗą·ą¶½ą¶ŗ'),
(99607, 'https://ror.org/05ewdps05', 'en', 1, 'https://ror.org/05ewdps05 Bernstein Center for Computational Neuroscience Berlin'),
(99608, 'https://ror.org/05ewvzm89', 'fr', 1, 'https://ror.org/05ewvzm89 PƩrinatalitƩ & Risques Toxiques'),
(99609, 'https://ror.org/05ey8y521', 'en', 1, 'https://ror.org/05ey8y521 National Minerals Information Center'),
(99610, 'https://ror.org/05ezwr821', 'en', 1, 'https://ror.org/05ezwr821 Namur Institute for Complex Systems'),
(99611, 'https://ror.org/05f0zr486', 'en', 1, 'https://ror.org/05f0zr486 Allgemeines Krankenhaus der Stadt Wien Vienna General Hospital'),
(99612, 'https://ror.org/05f16n416', 'en', 1, 'https://ror.org/05f16n416 Republican Scientific and Practical Center of Cardiology Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр Ā«ŠšŠ°Ń€Š“ŠøŠ¾Š»Š¾Š³ŠøŃĀ»'),
(99613, 'https://ror.org/05f1nfh63', 'en', 1, 'https://ror.org/05f1nfh63 KrajskĆ” knihovna v PardubicĆ­ch Pardubice Regional Library'),
(99614, 'https://ror.org/05f38c676', 'fr', 1, 'https://ror.org/05f38c676 Centre de Recherche en Histoire EuropƩenne ComparƩe, de l''AntiquitƩ Ơ nos jours'),
(99615, 'https://ror.org/05f4e6916', 'en', 1, 'https://ror.org/05f4e6916 Columban College Dalubhasaang Columban'),
(99616, 'https://ror.org/05f8dke04', 'en', 1, 'https://ror.org/05f8dke04 Research Centre for Olive Growing and Olive Oil Industry'),
(99617, 'https://ror.org/05f8nen40', 'no_lang_code', 0, 'https://ror.org/05f8nen40 AT4 wireless (Spain)'),
(99618, 'https://ror.org/05fb1yp60', 'en', 1, 'https://ror.org/05fb1yp60 Virginia Mason Lynnwood Medical Center'),
(99619, 'https://ror.org/05fb23t53', 'en', 1, 'https://ror.org/05fb23t53 Advance Queensland'),
(99620, 'https://ror.org/05fc0ah77', 'en', 1, 'https://ror.org/05fc0ah77 Defence Science and Technology'),
(99621, 'https://ror.org/05fc8gj45', 'ca', 1, 'https://ror.org/05fc8gj45 Fundacio Pere Tarres'),
(99622, 'https://ror.org/05fd9ct06', 'en', 1, 'https://ror.org/05fd9ct06 NIHR Maudsley Biomedical Research Centre'),
(99623, 'https://ror.org/05fehs989', 'en', 1, 'https://ror.org/05fehs989 Bristol University Press'),
(99624, 'https://ror.org/05fnzca26', 'en', 1, 'https://ror.org/05fnzca26 Antarctic Sciences'),
(99625, 'https://ror.org/05fp08r12', 'en', 1, 'https://ror.org/05fp08r12 Government of Thailand'),
(99626, 'https://ror.org/05fp9g671', 'en', 1, 'https://ror.org/05fp9g671 University of Mazandaran دانؓگاه مازندران'),
(99627, 'https://ror.org/05fqmdn41', 'en', 1, 'https://ror.org/05fqmdn41 Institute for Social Change'),
(99628, 'https://ror.org/05fstsk68', 'no_lang_code', 1, 'https://ror.org/05fstsk68 Abengoa (Spain)'),
(99629, 'https://ror.org/05fsyf340', 'en', 1, 'https://ror.org/05fsyf340 University of Belgrade – Faculty of Law Univerzitet u Beogradu – Pravni fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠŸŃ€Š°Š²Š½Šø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(99630, 'https://ror.org/05fv9c840', 'en', 1, 'https://ror.org/05fv9c840 Australian Maritime College'),
(99631, 'https://ror.org/05fvxrd95', 'en', 1, 'https://ror.org/05fvxrd95 Institute of Southern Punjab'),
(99632, 'https://ror.org/05fwspe16', 'en', 1, 'https://ror.org/05fwspe16 Bayamón Central University Universidad Central de Bayamón'),
(99633, 'https://ror.org/05fyj0w30', 'de', 1, 'https://ror.org/05fyj0w30 Deutsche Knochenmarkspenderdatei'),
(99634, 'https://ror.org/05g1zjw44', 'fr', 1, 'https://ror.org/05g1zjw44 Laboratoire d''Informatique de Paris Nord, Laboratoire d''Informatique de Paris-Nord'),
(99635, 'https://ror.org/05g2hd893', 'en', 0, 'https://ror.org/05g2hd893 Beaumont Health'),
(99636, 'https://ror.org/05g3qe364', 'no_lang_code', 1, 'https://ror.org/05g3qe364 Saind (Spain)'),
(99637, 'https://ror.org/05g89bp20', 'pt', 1, 'https://ror.org/05g89bp20 Hospital de ClĆ­nicas da Unicamp'),
(99638, 'https://ror.org/05g920e57', 'no_lang_code', 0, 'https://ror.org/05g920e57 Litton Industries (United States)'),
(99639, 'https://ror.org/05gdy8g07', 'no_lang_code', 1, 'https://ror.org/05gdy8g07 Rastriya Banijya Bank Limited'),
(99640, 'https://ror.org/05gedzg25', 'en', 1, 'https://ror.org/05gedzg25 Foso College of Education'),
(99641, 'https://ror.org/05geg6f02', 'en', 1, 'https://ror.org/05geg6f02 Scottish Universities Press'),
(99642, 'https://ror.org/05gfswd81', 'en', 1, 'https://ror.org/05gfswd81 Institute for Research in Biomedicine Istituto di Ricerca in Biomedicina'),
(99643, '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'),
(99644, 'https://ror.org/05gh6hz98', 'en', 1, 'https://ror.org/05gh6hz98 State Key Laboratory of Plasting Molding Technology å”‘ę€§ęˆå½¢ęØ”å…·ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99645, 'https://ror.org/05gh7t135', 'no_lang_code', 1, 'https://ror.org/05gh7t135 IbermƔtica (Spain)'),
(99646, 'https://ror.org/05ghke119', 'es', 1, 'https://ror.org/05ghke119 Asociacion Valenciana de empresarios de plasticos'),
(99647, 'https://ror.org/05gjc4036', 'en', 1, 'https://ror.org/05gjc4036 Beijing Police College åŒ—äŗ¬č­¦åÆŸå­¦é™¢'),
(99648, 'https://ror.org/05gjpam11', 'en', 1, 'https://ror.org/05gjpam11 TAS Farm Innovation Hub'),
(99649, 'https://ror.org/05gmzxc62', 'no_lang_code', 1, 'https://ror.org/05gmzxc62 Arconic (United States)'),
(99650, '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'),
(99651, 'https://ror.org/05gq3a412', 'en', 1, 'https://ror.org/05gq3a412 Butler University Universidad Butler'),
(99652, 'https://ror.org/05gt9yw23', 'en', 1, 'https://ror.org/05gt9yw23 Jinka University įŒ‚įŠ•įŠ« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(99653, 'https://ror.org/05gw1cv54', 'en', 1, 'https://ror.org/05gw1cv54 Antillean Adventist University Universidad Adventista de las Antillas'),
(99654, 'https://ror.org/05gwtjq96', 'fr', 1, 'https://ror.org/05gwtjq96 Pouvoirs, Lettres, Normes'),
(99655, 'https://ror.org/05gxmms51', 'no_lang_code', 1, 'https://ror.org/05gxmms51 Commercial Aircraft Corporation of China (China) äø­å›½å•†ē”Øé£žęœŗęœ‰é™č“£ä»»å…¬åø'),
(99656, 'https://ror.org/05gzcy376', 'fr', 1, 'https://ror.org/05gzcy376 Groupe de Recherche Clinique en Neuro-urologie'),
(99657, 'https://ror.org/05gzmn429', 'en', 1, 'https://ror.org/05gzmn429 Centre de l''AccƩlƩrateur LinƩaire de Stanford SLAC National Accelerator Laboratory'),
(99658, 'https://ror.org/05gzqy922', 'en', 1, 'https://ror.org/05gzqy922 UC Irvine Chao Family Comprehensive Cancer Center'),
(99659, 'https://ror.org/05h149207', 'en', 1, 'https://ror.org/05h149207 CHI Health Schuyler'),
(99660, 'https://ror.org/05h1aye87', 'en', 1, 'https://ror.org/05h1aye87 Linkƶping University Hospital Universitetssjukhuset i Linkƶping'),
(99661, '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'),
(99662, 'https://ror.org/05h4vvj02', 'en', 1, 'https://ror.org/05h4vvj02 Commonwealth of Massachusetts'),
(99663, 'https://ror.org/05h6pya74', 'en', 1, 'https://ror.org/05h6pya74 Office of Defense Programs'),
(99664, 'https://ror.org/05h992307', 'en', 1, 'https://ror.org/05h992307 Pacific Northwest National Laboratory'),
(99665, 'https://ror.org/05h9q1g27', 'en', 1, 'https://ror.org/05h9q1g27 Texas State University Universidad Estatal de Texas UniversitĆ© d''Ɖtat du Texas'),
(99666, 'https://ror.org/05hc3k973', 'no_lang_code', 1, 'https://ror.org/05hc3k973 Bolding & Bruggeman'),
(99667, 'https://ror.org/05hcfns23', 'en', 1, 'https://ror.org/05hcfns23 Jacobi Medical Center'),
(99668, 'https://ror.org/05hdq6q33', 'en', 1, 'https://ror.org/05hdq6q33 Women''s University in Africa'),
(99669, 'https://ror.org/05hh31546', 'en', 1, 'https://ror.org/05hh31546 Nevada Water Science Center'),
(99670, 'https://ror.org/05hhs8n30', 'en', 1, 'https://ror.org/05hhs8n30 Arkansas Rice Research and Promotion Board'),
(99671, 'https://ror.org/05hk2rf18', 'en', 1, 'https://ror.org/05hk2rf18 Dongyang Red Cross Hospital äøœé˜³åø‚ēŗ¢ä¼šåŒ»é™¢'),
(99672, 'https://ror.org/05hm1yf46', 'en', 1, 'https://ror.org/05hm1yf46 Montana Department of Agriculture'),
(99673, 'https://ror.org/05hpcth11', 'en', 1, 'https://ror.org/05hpcth11 China Textile Academy 中国纺织科学研究院'),
(99674, 'https://ror.org/05hpfkn88', 'pt', 1, 'https://ror.org/05hpfkn88 Federal University of Rio Grande Universidade Federal do Rio Grande'),
(99675, 'https://ror.org/05hqfh882', 'fr', 1, 'https://ror.org/05hqfh882 Nutrition Obesity & Risk of Thrombosis Nutrition, ObƩsitƩ et Risque Thrombotique'),
(99676, 'https://ror.org/05hqvvq43', 'en', 1, 'https://ror.org/05hqvvq43 Government of Northwest Territories'),
(99677, 'https://ror.org/05hr3ch11', 'en', 1, 'https://ror.org/05hr3ch11 Institute of Botany äø­å›½ē§‘å­¦é™¢ę¤ē‰©ē ”ē©¶ę‰€'),
(99678, 'https://ror.org/05htwnh55', 'en', 1, 'https://ror.org/05htwnh55 Medical College in Prague VysokÔ Ŕkola zdravotnickÔ, o. p. s.'),
(99679, 'https://ror.org/05hv77153', 'en', 1, 'https://ror.org/05hv77153 Ministry of Education and Child Care'),
(99680, 'https://ror.org/05hvkkr89', 'en', 1, 'https://ror.org/05hvkkr89 Ghana Communication Technology University'),
(99681, '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'),
(99682, 'https://ror.org/05hy3q009', 'es', 1, 'https://ror.org/05hy3q009 Instituto de Ganaderƭa de MontaƱa'),
(99683, 'https://ror.org/05j18t043', 'en', 1, 'https://ror.org/05j18t043 Agencia de Calidad Sanitaria de AndalucĆ­a Andalusian Agency for Healthcare Quality'),
(99684, 'https://ror.org/05j19c061', 'pt', 1, 'https://ror.org/05j19c061 Escola Nacional de Administração Pública'),
(99685, 'https://ror.org/05j1kc284', 'en', 1, 'https://ror.org/05j1kc284 Hebei University of Economics and Business ę²³åŒ—ē»č“øå¤§å­¦'),
(99686, 'https://ror.org/05j2zf046', 'no_lang_code', 1, 'https://ror.org/05j2zf046 Raytheon Technologies (Poland)'),
(99687, 'https://ror.org/05j5g1b69', 'en', 0, 'https://ror.org/05j5g1b69 Public Policy Institute for Wales'),
(99688, 'https://ror.org/05j681482', 'no_lang_code', 1, 'https://ror.org/05j681482 IntegraGen (France)'),
(99689, 'https://ror.org/05j6gc361', 'en', 0, 'https://ror.org/05j6gc361 White Rose East Asia Centre'),
(99690, 'https://ror.org/05j73fd60', 'en', 1, 'https://ror.org/05j73fd60 Institute of Coal Chemistry äø­å›½ē§‘å­¦é™¢å±±č„æē…¤ē‚­åŒ–å­¦ē ”ē©¶ę‰€'),
(99691, 'https://ror.org/05j7fep28', 'en', 1, 'https://ror.org/05j7fep28 Australian Nuclear Science and Technology Organisation'),
(99692, 'https://ror.org/05jb9pq57', 'en', 1, 'https://ror.org/05jb9pq57 Shandong First Medical University å±±äøœē¬¬äø€åŒ»ē§‘å¤§å­¦'),
(99693, 'https://ror.org/05jc7xd84', 'en', 0, 'https://ror.org/05jc7xd84 Institute of Physical Chemistry Blas Cabrera Instituto de QuĆ­mica FĆ­sica Blas Cabrera'),
(99694, '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'),
(99695, 'https://ror.org/05jfh7098', 'en', 1, 'https://ror.org/05jfh7098 Kimyo International University in Tashkent Toshkent Kimyo Xalqaro Universiteti Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет ŠšŠøŠ¼Ń‘'),
(99696, 'https://ror.org/05jfx6e51', 'es', 1, 'https://ror.org/05jfx6e51 WWF Colombia'),
(99697, 'https://ror.org/05jge5x64', 'en', 1, 'https://ror.org/05jge5x64 New Zealand Agricultural Greenhouse Gas Research Centre'),
(99698, 'https://ror.org/05jk45963', 'es', 1, 'https://ror.org/05jk45963 Hospital Universitario RĆ­o Hortega'),
(99699, 'https://ror.org/05jm2v587', 'no_lang_code', 1, 'https://ror.org/05jm2v587 Metafinanz'),
(99700, 'https://ror.org/05jmnvy38', 'da', 1, 'https://ror.org/05jmnvy38 DHI'),
(99701, 'https://ror.org/05jnma812', 'en', 1, 'https://ror.org/05jnma812 Office of Planning, Research and Evaluation'),
(99702, 'https://ror.org/05jpxcv08', 'no_lang_code', 1, 'https://ror.org/05jpxcv08 Owens Corning (France)'),
(99703, 'https://ror.org/05jr4a171', 'es', 1, 'https://ror.org/05jr4a171 Ministerio de Defensa Ministry of Defence'),
(99704, 'https://ror.org/05jt8mz33', 'es', 1, 'https://ror.org/05jt8mz33 Agencia de Medio Ambiente y Agua de AndalucĆ­a'),
(99705, 'https://ror.org/05jtef216', 'en', 1, 'https://ror.org/05jtef216 Institut de recherche de l''hƓpital d''Ottawa Ottawa Hospital Research Institute'),
(99706, 'https://ror.org/05jv5nq16', 'fr', 1, 'https://ror.org/05jv5nq16 Laboratoire d’excellence Physique Atomes LumiĆØre MatiĆØre'),
(99707, 'https://ror.org/05jvrb780', 'pl', 1, 'https://ror.org/05jvrb780 Fundacja Adeptów i Miłośników Ekonomii'),
(99708, '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'),
(99709, 'https://ror.org/05jw85995', 'fr', 1, 'https://ror.org/05jw85995 CNRT MatƩriaux, Centre National de Recherche Technologique'),
(99710, 'https://ror.org/05jygpn52', 'es', 1, 'https://ror.org/05jygpn52 Hospital Episcopal San Lucas'),
(99711, 'https://ror.org/05jyzx602', 'en', 1, 'https://ror.org/05jyzx602 BC Centre for Disease Control'),
(99712, 'https://ror.org/05jzcs626', 'en', 1, 'https://ror.org/05jzcs626 Palompon Institute of Technology'),
(99713, 'https://ror.org/05k20z216', 'en', 1, 'https://ror.org/05k20z216 International Panel on the Information Environment'),
(99714, 'https://ror.org/05k2gtm81', 'de', 1, 'https://ror.org/05k2gtm81 Elite Network of Bavaria Elitenetzwerk Bayern'),
(99715, 'https://ror.org/05k2yek35', 'en', 1, 'https://ror.org/05k2yek35 Universiteti Metropolitan Tirana, University Metropolitan Tirana'),
(99716, 'https://ror.org/05k49za97', 'pt', 1, 'https://ror.org/05k49za97 Fundação de Amparo à Pesquisa do Estado do Rio Grande do Sul'),
(99717, 'https://ror.org/05k4hjn16', 'ca', 1, 'https://ror.org/05k4hjn16 Ajuntament de Girona Ayuntamiento de Girona'),
(99718, 'https://ror.org/05k4vg494', 'en', 1, 'https://ror.org/05k4vg494 ASAPbio'),
(99719, 'https://ror.org/05k4xnj24', 'en', 1, 'https://ror.org/05k4xnj24 Bukhara State University Buxoro davlat universiteti Š‘ŃƒŃ…Š°Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99720, 'https://ror.org/05k71g406', 'fr', 1, 'https://ror.org/05k71g406 GƩnomique du cancer et du cerveau'),
(99721, 'https://ror.org/05k73zm37', 'en', 1, 'https://ror.org/05k73zm37 Finlands Akademi Research Council of Finland Suomen Akatemia'),
(99722, 'https://ror.org/05k9dfy31', 'en', 1, 'https://ror.org/05k9dfy31 CBE Consultants, Inc., CBE Consultants, Inc. (United States)'),
(99723, 'https://ror.org/05kbck686', 'sv', 1, 'https://ror.org/05kbck686 SprƄkbanken Tal'),
(99724, 'https://ror.org/05kdrkh60', 'fr', 1, 'https://ror.org/05kdrkh60 Savoirs et Pratiques du Moyen Ƃge au XIXe siĆØcle'),
(99725, 'https://ror.org/05kewds18', 'no_lang_code', 1, 'https://ror.org/05kewds18 Northrop Grumman (United States)'),
(99726, 'https://ror.org/05kg11974', 'en', 1, 'https://ror.org/05kg11974 The University of Kansas Health System'),
(99727, 'https://ror.org/05kkc4t55', 'en', 1, 'https://ror.org/05kkc4t55 CHI Health Mercy Corning'),
(99728, 'https://ror.org/05kkfq345', 'en', 1, 'https://ror.org/05kkfq345 Research Institute for Humanity and Nature ē·åˆåœ°ēƒē’°å¢ƒå­¦ē ”ē©¶ę‰€'),
(99729, 'https://ror.org/05km0w312', 'en', 1, 'https://ror.org/05km0w312 New Mansoura University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŲµŁˆŲ±Ų© Ų§Ł„Ų¬ŲÆŁŠŲÆŲ©'),
(99730, 'https://ror.org/05kmgev50', 'en', 1, 'https://ror.org/05kmgev50 Центр информационных технологий в проектировании'),
(99731, 'https://ror.org/05kph6k12', 'en', 1, 'https://ror.org/05kph6k12 CHI Health'),
(99732, 'https://ror.org/05kpz5d89', 'en', 1, 'https://ror.org/05kpz5d89 Research Foundation for the Electrotechnology of Chubu å…¬ē›Šč²”å›£ę³•äŗŗäø­éƒØé›»ę°—åˆ©ē”ØåŸŗē¤Žē ”ē©¶ęŒÆčˆˆč²”å›£'),
(99733, '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'),
(99734, 'https://ror.org/05krcen59', 'fr', 1, 'https://ror.org/05krcen59 Laboratoire de Recherche en Informatique de Paris 6'),
(99735, 'https://ror.org/05ksqqc16', 'de', 1, 'https://ror.org/05ksqqc16 Bundesdenkmalamt'),
(99736, 'https://ror.org/05kx2e072', 'en', 1, 'https://ror.org/05kx2e072 UNM Comprehensive Cancer Center'),
(99737, 'https://ror.org/05kxnq107', 'es', 1, 'https://ror.org/05kxnq107 Administración Nacional de Medicamentos, Alimentos y Tecnología Médica'),
(99738, 'https://ror.org/05kytrf83', 'fr', 1, 'https://ror.org/05kytrf83 MƩthodes et Outils pour les Sciences Participatives'),
(99739, 'https://ror.org/05m235j20', 'en', 1, 'https://ror.org/05m235j20 Brazilian Center for Research in Energy and Materials'),
(99740, 'https://ror.org/05m2fqn25', 'no_lang_code', 1, 'https://ror.org/05m2fqn25 Chiang Mai University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(99741, 'https://ror.org/05m6hv760', 'es', 1, 'https://ror.org/05m6hv760 Animal Health Research Centre Centro de Investigación en Sanidad Animal'),
(99742, 'https://ror.org/05m88q091', 'fr', 1, 'https://ror.org/05m88q091 Institut de Recherche en Sciences de la SantƩ'),
(99743, 'https://ror.org/05m8dr349', 'en', 1, 'https://ror.org/05m8dr349 NIHR Cambridge Biomedical Research Centre'),
(99744, 'https://ror.org/05mee8y17', 'pt', 1, 'https://ror.org/05mee8y17 Instituto Vita Alere'),
(99745, 'https://ror.org/05mg82t36', 'en', 1, 'https://ror.org/05mg82t36 China People''s Police University äø­å›½äŗŗę°‘č­¦åÆŸå¤§å­¦'),
(99746, 'https://ror.org/05mg91w61', 'en', 1, 'https://ror.org/05mg91w61 Office of Basic Energy Sciences'),
(99747, 'https://ror.org/05mj4yh71', 'es', 1, 'https://ror.org/05mj4yh71 Council of Government of the Principality of Asturias Gobierno del Principado de Asturias'),
(99748, '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'),
(99749, 'https://ror.org/05mm0yq33', 'en', 1, 'https://ror.org/05mm0yq33 Silent Spring Institute'),
(99750, 'https://ror.org/05mmcm185', 'en', 1, 'https://ror.org/05mmcm185 International Association for the Study of Popular Romance'),
(99751, 'https://ror.org/05mmh0f86', 'en', 1, 'https://ror.org/05mmh0f86 Australian Research Council'),
(99752, 'https://ror.org/05mn8kz17', 'no_lang_code', 1, 'https://ror.org/05mn8kz17 ObeTherapy Biotechnology (France)'),
(99753, 'https://ror.org/05mq93331', 'en', 1, 'https://ror.org/05mq93331 Military Hospital Brno VojenskĆ” nemocnice Brno'),
(99754, 'https://ror.org/05mqa4073', 'en', 1, 'https://ror.org/05mqa4073 State Key Laboratory of Plant Cell and Chromosome Engineering ę¤ē‰©ē»†čƒžäøŽęŸ“č‰²ä½“å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99755, 'https://ror.org/05mqemx33', 'fr', 1, 'https://ror.org/05mqemx33 Laboratoire de Traitement de l''Information MƩdicale Laboratory of Medical Information Processing'),
(99756, 'https://ror.org/05mqm5297', 'en', 1, 'https://ror.org/05mqm5297 Shanghai Institute of Pharmaceutical Industry äøŠęµ·åŒ»čÆå·„äøšē ”ē©¶é™¢'),
(99757, 'https://ror.org/05mqqqg72', 'en', 1, 'https://ror.org/05mqqqg72 Institute of Agriculture and Natural Resources'),
(99758, 'https://ror.org/05msy3529', 'en', 1, 'https://ror.org/05msy3529 Office of Workforce Development for Teachers and Scientists'),
(99759, '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'),
(99760, 'https://ror.org/05mz0pr34', 'en', 1, 'https://ror.org/05mz0pr34 UCL Hospitals Charitable Foundation'),
(99761, 'https://ror.org/05mzd8v39', 'fr', 1, 'https://ror.org/05mzd8v39 Institut Lavoisier de Versailles'),
(99762, 'https://ror.org/05mzwwx48', 'fr', 1, 'https://ror.org/05mzwwx48 La RƩgion Occitanie PyrƩnƩes-MƩditerranƩe'),
(99763, 'https://ror.org/05n0tzs53', 'en', 1, 'https://ror.org/05n0tzs53 Sunnybrook Research Institute'),
(99764, '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'),
(99765, 'https://ror.org/05n2mnn68', 'fr', 1, 'https://ror.org/05n2mnn68 Enzymologie de l''ARN'),
(99766, 'https://ror.org/05n332x20', 'no_lang_code', 1, 'https://ror.org/05n332x20 Industria de Alimentos ZenĆŗ S.A.S. (Colombia)'),
(99767, 'https://ror.org/05n3s3g85', 'en', 1, 'https://ror.org/05n3s3g85 Civilian Nuclear Programs'),
(99768, 'https://ror.org/05n52x113', 'en', 1, 'https://ror.org/05n52x113 Johns Hopkins University Center for AIDS Research'),
(99769, 'https://ror.org/05n62pb30', 'fr', 1, 'https://ror.org/05n62pb30 Catholic University of Rennes Institut catholique de rennes'),
(99770, 'https://ror.org/05n8cqa74', 'en', 1, 'https://ror.org/05n8cqa74 Wicking Dementia Centre'),
(99771, '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'),
(99772, 'https://ror.org/05n9txz34', 'en', 1, 'https://ror.org/05n9txz34 CHI Health Immanuel'),
(99773, 'https://ror.org/05nb54h69', 'en', 1, 'https://ror.org/05nb54h69 Komarov Botanical Institute of the Russian Academy of Sciences Ботанический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.Š›. ŠšŠ¾Š¼Š°Ń€Š¾Š²Š° Российской акаГемии наук'),
(99774, '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"'),
(99775, 'https://ror.org/05ne20t07', 'pt', 1, 'https://ror.org/05ne20t07 Universidade Estadual do Oeste do ParanĆ” Western ParanĆ” State University'),
(99776, 'https://ror.org/05neq8668', 'fr', 1, 'https://ror.org/05neq8668 Institut SystĆØmes Intelligents et de Robotique Institute of Intelligent Systems and Robotics'),
(99777, 'https://ror.org/05nf86y53', 'en', 1, 'https://ror.org/05nf86y53 Japan Atomic Energy Agency ę—„ęœ¬åŽŸå­åŠ›ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(99778, 'https://ror.org/05ngffj85', 'nl', 1, 'https://ror.org/05ngffj85 Uyttenboogaart-Eliasen Stichting'),
(99779, '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'),
(99780, 'https://ror.org/05nj8ma95', 'en', 1, 'https://ror.org/05nj8ma95 Institute of Soil Science äø­å›½ē§‘å­¦é™¢å—äŗ¬åœŸå£¤ē ”ē©¶ę‰€'),
(99781, 'https://ror.org/05njhbf68', 'en', 1, 'https://ror.org/05njhbf68 State Key Laboratory of Advanced Technology For Materials Synthesis and Processing ęę–™å¤åˆę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99782, 'https://ror.org/05nk54s89', 'fr', 1, 'https://ror.org/05nk54s89 Laboratoire d''OcƩanographie Microbienne Laboratory of Microbial Oceanography'),
(99783, 'https://ror.org/05nqsnd28', 'de', 1, 'https://ror.org/05nqsnd28 Deutsches ArchƤologisches Institut, Abteilung Athen German Archaeological Institute, Athens Department'),
(99784, 'https://ror.org/05nqvv719', 'es', 1, 'https://ror.org/05nqvv719 Ministerio de Agricultura Ministry of Agriculture'),
(99785, 'https://ror.org/05nredc16', 'en', 1, 'https://ror.org/05nredc16 State Key Laboratory of Internal Combustion Engines å†…ē‡ƒęœŗē‡ƒēƒ§å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99786, 'https://ror.org/05ntgv723', 'fr', 1, 'https://ror.org/05ntgv723 Ɖquipe LittĆ©rature et Culture italiennes'),
(99787, 'https://ror.org/05p03en70', 'no_lang_code', 1, 'https://ror.org/05p03en70 ASL Environmental Sciences ASL Environmental Sciences (Canada)'),
(99788, 'https://ror.org/05p04bm05', 'no_lang_code', 1, 'https://ror.org/05p04bm05 Asseco (Poland)'),
(99789, 'https://ror.org/05p3cb968', 'pt', 1, 'https://ror.org/05p3cb968 Instituto de Investigação AgrÔria de Moçambique'),
(99790, 'https://ror.org/05p70jq59', 'en', 1, 'https://ror.org/05p70jq59 Ministry of Education Te Tāhuhu o te Mātauranga'),
(99791, 'https://ror.org/05p915b28', 'en', 1, 'https://ror.org/05p915b28 Oak Ridge Leadership Computing Facility'),
(99792, 'https://ror.org/05p9bjd64', 'en', 1, 'https://ror.org/05p9bjd64 Office of Policy'),
(99793, 'https://ror.org/05pbnw832', 'en', 1, 'https://ror.org/05pbnw832 State Key Laboratory of Special Rare Metal Materials ēØ€ęœ‰é‡‘å±žē‰¹ē§ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99794, 'https://ror.org/05pchb838', 'fr', 1, 'https://ror.org/05pchb838 Structure et InstabilitƩ des GƩnomes'),
(99795, 'https://ror.org/05pd33x58', 'en', 1, 'https://ror.org/05pd33x58 Swamy Vivekanadha Medical College Hospital and Research Institute'),
(99796, 'https://ror.org/05pfntr04', 'en', 1, 'https://ror.org/05pfntr04 All Russian Research Institute of Animal Breeding Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ племенного Гела'),
(99797, 'https://ror.org/05pfsnp36', 'en', 1, 'https://ror.org/05pfsnp36 Duchess Of Kent Hospital'),
(99798, 'https://ror.org/05pfy5w65', 'en', 1, 'https://ror.org/05pfy5w65 Ente Ospedaliero Specializzato in Gastroenterologia Saverio de Bellis Gastroenterology Hospital "Saverio de Bellis"'),
(99799, 'https://ror.org/05pg2cw06', 'en', 1, 'https://ror.org/05pg2cw06 Azarbaijan Shahid Madani University دانؓگاه Ų“Ł‡ŪŒŲÆ Ł…ŲÆŁ†ŪŒ Ų¢Ų°Ų±ŲØŲ§ŪŒŲ¬Ų§Ł†'),
(99800, 'https://ror.org/05pgg4z49', 'en', 1, 'https://ror.org/05pgg4z49 Cancer Society of Finland Cancerorganisationerna SyƶpƤjƤrjestƶt'),
(99801, 'https://ror.org/05pgqgb54', 'en', 1, 'https://ror.org/05pgqgb54'),
(99802, 'https://ror.org/05phyf558', 'en', 1, 'https://ror.org/05phyf558 University of Puerto Rico at Carolina'),
(99803, 'https://ror.org/05pm2xt51', 'fr', 1, 'https://ror.org/05pm2xt51 UMS PhƩnotypage du petit animal'),
(99804, 'https://ror.org/05pmk8j16', 'es', 1, 'https://ror.org/05pmk8j16 Consejería de la Presidencia, Interior, DiÔlogo Social y Simplificación Administrativa'),
(99805, 'https://ror.org/05pq8vh42', 'es', 1, 'https://ror.org/05pq8vh42 Instituto de Biomedicina de Valencia'),
(99806, 'https://ror.org/05pv30e80', 'no', 1, 'https://ror.org/05pv30e80 NTNU Samfunnsforskning NTNU Social Research'),
(99807, 'https://ror.org/05pvqha70', 'en', 1, 'https://ror.org/05pvqha70 St. Lawrence University Universidad de St. Lawrence UniversitƩ de st. lawrence'),
(99808, 'https://ror.org/05pwsnp59', 'en', 1, 'https://ror.org/05pwsnp59 Cambia Health Foundation'),
(99809, 'https://ror.org/05px6z163', 'de', 1, 'https://ror.org/05px6z163 Ministerium für Soziales und Integration Baden-Württemberg'),
(99810, 'https://ror.org/05pyq8e17', 'no_lang_code', 1, 'https://ror.org/05pyq8e17 General Dynamics (United States)'),
(99811, 'https://ror.org/05q3szf80', 'en', 1, 'https://ror.org/05q3szf80 Smilow Cancer Hospital'),
(99812, 'https://ror.org/05q4hzm57', 'de', 1, 'https://ror.org/05q4hzm57 Kommission für Forschungsinformationen in Deutschland'),
(99813, 'https://ror.org/05q6yhx55', 'en', 1, 'https://ror.org/05q6yhx55 Eva Crane Trust'),
(99814, 'https://ror.org/05q8kyc69', 'en', 1, 'https://ror.org/05q8kyc69 UC Davis Health System'),
(99815, 'https://ror.org/05q8wtt20', 'en', 1, 'https://ror.org/05q8wtt20 National Institute for Basic Biology åŸŗē¤Žē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(99816, 'https://ror.org/05q94pf14', 'fr', 0, 'https://ror.org/05q94pf14 Laboratoire des Symbioses Tropicales et MƩditerranƩennes'),
(99817, 'https://ror.org/05q9y3f51', 'de', 1, 'https://ror.org/05q9y3f51 Deutsches ArchƤologisches Institut, Abteilung Istanbul German Archaeological Institute, Istanbul Department'),
(99818, 'https://ror.org/05qajvd42', 'en', 1, 'https://ror.org/05qajvd42 Australia Telescope National Facility'),
(99819, 'https://ror.org/05qbksn05', 'id', 1, 'https://ror.org/05qbksn05 Universitas Nahdlatul Ulama Sidoarjo'),
(99820, 'https://ror.org/05qer7k24', 'es', 1, 'https://ror.org/05qer7k24 Centro MƩdico Sanitas Zaragoza Sanitas Zaragoza Medical Centre'),
(99821, 'https://ror.org/05qhvy459', 'sv', 1, 'https://ror.org/05qhvy459 SprƄkbanken'),
(99822, 'https://ror.org/05qjm4845', 'en', 1, 'https://ror.org/05qjm4845 Botswana University of Agriculture and Natural Resources'),
(99823, 'https://ror.org/05qms6x58', 'en', 1, 'https://ror.org/05qms6x58 Ohio-Kentucky-Indiana Water Science Center'),
(99824, 'https://ror.org/05qndj312', 'es', 1, 'https://ror.org/05qndj312 Hospital Universitario de Canarias University Hospital of the Canary Islands'),
(99825, 'https://ror.org/05qpxvg63', 'pt', 1, 'https://ror.org/05qpxvg63 Associação Azul Moçambique'),
(99826, 'https://ror.org/05qv3p611', 'no_lang_code', 1, 'https://ror.org/05qv3p611 Nāgānanda International Institute for Buddhist Studies ą¶±ą·ą¶œą·ą¶±ą¶±ą·Šą¶Æ ą¶¢ą·ą¶­ą·Šā€ą¶ŗą¶±ą·Šą¶­ą¶» ą¶¶ą·žą¶Æą·Šą¶° ą¶…ą¶°ą·Šā€ą¶ŗą¶ŗą¶± ආයතනය'),
(99827, '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 č¾“é…ē”µč£…å¤‡åŠē³»ē»Ÿå®‰å…ØäøŽę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99828, 'https://ror.org/05qwjzv06', 'en', 1, 'https://ror.org/05qwjzv06 Thailand Center of Excellence for Life Sciences ąøØąø¹ąø™ąø¢ą¹Œąø„ąø§ąø²ąø”ą¹€ąø›ą¹‡ąø™ą¹€ąø„ąø“ąøØąø”ą¹‰ąø²ąø™ąøŠąøµąø§ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(99829, 'https://ror.org/05qx1va48', 'en', 1, 'https://ror.org/05qx1va48 Lower Mississippi-Gulf Water Science Center'),
(99830, 'https://ror.org/05qy72j51', 'en', 0, 'https://ror.org/05qy72j51 dsafsdf'),
(99831, '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'),
(99832, 'https://ror.org/05r0vyz12', 'es', 1, 'https://ror.org/05r0vyz12 Ministerio de Ciencia, Innovación y Universidades'),
(99833, 'https://ror.org/05r1hax23', 'en', 1, 'https://ror.org/05r1hax23 Armed Forces Hospital Southern Region مستؓفى Ų§Ł„Ł‚ŁˆŲ§ŲŖ المسلحة ŲØŲ§Ł„Ų¬Ł†ŁˆŲØ'),
(99834, 'https://ror.org/05r3bjq62', 'en', 1, 'https://ror.org/05r3bjq62 Donald K. Johnson Eye Institute'),
(99835, 'https://ror.org/05r5ax121', 'en', 1, 'https://ror.org/05r5ax121 Jeffrey Cheah Foundation'),
(99836, 'https://ror.org/05r5y6641', 'fr', 1, 'https://ror.org/05r5y6641 Laboratoire d’OcĆ©anographie de Villefranche Villefranche Oceanographic Laboratory'),
(99837, 'https://ror.org/05r6d4v68', 'es', 1, 'https://ror.org/05r6d4v68 Centro MƩdico Sanitas Murcia Sanitas Murcia Medical Centre'),
(99838, 'https://ror.org/05r75w747', 'en', 1, 'https://ror.org/05r75w747 Namur Institute of Structured Matter'),
(99839, 'https://ror.org/05r9v2c42', 'en', 1, 'https://ror.org/05r9v2c42 Ana G. Mendez University System Sistema Universitario Ana G. MƩndez'),
(99840, 'https://ror.org/05rbx8m02', 'it', 1, 'https://ror.org/05rbx8m02 Carlo Besta Neurological Institute Fondazione IRCCS Istituto Neurologico Carlo Besta'),
(99841, 'https://ror.org/05rdqpb56', 'no_lang_code', 0, 'https://ror.org/05rdqpb56 AIM at Melanoma'),
(99842, 'https://ror.org/05rdv5n40', 'no_lang_code', 1, 'https://ror.org/05rdv5n40 Grundfos (Denmark) ˈkʁɔnĖ€fɒs');
INSERT INTO `rors` VALUES
(99843, 'https://ror.org/05re0sm29', 'fr', 1, 'https://ror.org/05re0sm29 Ɖcole des Neurosciences de Paris, Ɖcole des Neurosciences de Paris Ǝle-de-France'),
(99844, 'https://ror.org/05revcs89', 'en', 1, 'https://ror.org/05revcs89 IISD Experimental Lakes Area'),
(99845, 'https://ror.org/05rfrd414', 'en', 1, 'https://ror.org/05rfrd414 Dalubhasaang San Miguel ng Caraga Saint Michael College of Caraga'),
(99846, 'https://ror.org/05rjxqp98', 'it', 1, 'https://ror.org/05rjxqp98 Azienda Socio Sanitaria Territoriale di Pavia Regional Health Care and Social Agency of Pavia'),
(99847, 'https://ror.org/05rpzs058', 'pt', 1, 'https://ror.org/05rpzs058 Universidade de Caxias do Sul University of Caxias Do Sul'),
(99848, 'https://ror.org/05rqcqp18', 'id', 1, 'https://ror.org/05rqcqp18 Politeknik STIA LAN Jakarta'),
(99849, 'https://ror.org/05rqjcx81', 'ro', 1, 'https://ror.org/05rqjcx81 Institutul Național de Cercetări Economice National Institute for Economic Research'),
(99850, 'https://ror.org/05rr9sv60', 'en', 1, 'https://ror.org/05rr9sv60 Naval Research Laboratory Space Systems Development Division'),
(99851, 'https://ror.org/05rrnfe85', 'de', 1, 'https://ror.org/05rrnfe85 Landesuntersuchungsamt Rheinland-Pfalz'),
(99852, 'https://ror.org/05rsdqb94', 'en', 1, 'https://ror.org/05rsdqb94 Mercy Hospital'),
(99853, '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'),
(99854, 'https://ror.org/05rtchs68', 'es', 1, 'https://ror.org/05rtchs68 Institute for the Structure of Matter Instituto de Estructura de la Materia'),
(99855, 'https://ror.org/05rv6z116', 'it', 1, 'https://ror.org/05rv6z116 Azienda Ospedaliera Treviglio'),
(99856, 'https://ror.org/05rxf9p36', 'fr', 1, 'https://ror.org/05rxf9p36 Association franƧaise de zootechnie'),
(99857, 'https://ror.org/05ryc2b20', 'en', 1, 'https://ror.org/05ryc2b20 National Laboratory of Solid State Microstructures å›ŗä½“å¾®ē»“ęž„ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99858, 'https://ror.org/05s056h84', 'pt', 1, 'https://ror.org/05s056h84 Faculdade Católica de CuiabÔ'),
(99859, 'https://ror.org/05s24hr53', 'ca', 1, 'https://ror.org/05s24hr53 Centre d’Investigació i Desenvolupament'),
(99860, 'https://ror.org/05s2fqz02', 'en', 1, 'https://ror.org/05s2fqz02 Universidad de Puerto Rico en Utuado University of Puerto Rico at Utuado'),
(99861, 'https://ror.org/05s4t4n85', 'pt', 1, 'https://ror.org/05s4t4n85 Faculdade Católica de Mato Grosso'),
(99862, 'https://ror.org/05s5qx907', 'en', 1, 'https://ror.org/05s5qx907 State Key Laboratory of Rice Biology ę°“ēØ»ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99863, 'https://ror.org/05s74p982', 'en', 1, 'https://ror.org/05s74p982 Barcelona Macula Foundation'),
(99864, 'https://ror.org/05s8eny04', 'no_lang_code', 1, 'https://ror.org/05s8eny04 Universal Learning Systems (Ireland)'),
(99865, 'https://ror.org/05sad4929', 'fr', 1, 'https://ror.org/05sad4929 Patrimoines, Transmissions, HƩritages'),
(99866, '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)'),
(99867, 'https://ror.org/05sdke129', 'en', 1, 'https://ror.org/05sdke129 Danish Ministry of Environment and Food MiljĆø- og FĆødevareministeriet'),
(99868, 'https://ror.org/05sdqd547', 'en', 1, 'https://ror.org/05sdqd547 Rajiv Gandhi Centre for Biotechnology'),
(99869, 'https://ror.org/05sdyjv16', 'en', 1, 'https://ror.org/05sdyjv16 Cardinal Stefan Wyszyński University in Warsaw Uniwersytet Kardynała Stefana Wyszyńskiego w Warszawie'),
(99870, 'https://ror.org/05sfb6846', 'es', 1, 'https://ror.org/05sfb6846 Fundación Openlab Ecuador'),
(99871, 'https://ror.org/05sg23t46', 'en', 1, 'https://ror.org/05sg23t46 National Spherical Torus Experiment – Upgrade'),
(99872, 'https://ror.org/05sg7zj64', 'en', 1, 'https://ror.org/05sg7zj64 Modern Humanities Research Association'),
(99873, 'https://ror.org/05sgwan27', 'no_lang_code', 0, 'https://ror.org/05sgwan27 Ecosystem (Spain)'),
(99874, 'https://ror.org/05skxkv18', 'en', 1, 'https://ror.org/05skxkv18 Institute of Zoology äø­å›½ē§‘å­¦é™¢åŠØē‰©ē ”ē©¶ę‰€'),
(99875, 'https://ror.org/05smgpd89', 'en', 1, 'https://ror.org/05smgpd89 IPB University Institut Pertanian Bogor'),
(99876, 'https://ror.org/05sn5d694', 'en', 1, 'https://ror.org/05sn5d694 Centro di Ricerca per le Colture Industriali Research Centre for Cereal and Industrial Crops'),
(99877, 'https://ror.org/05sqd2v93', 'en', 1, 'https://ror.org/05sqd2v93 State Key Laboratory of Virology ē—…ęÆ’å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99878, 'https://ror.org/05sqppn31', 'nl', 1, 'https://ror.org/05sqppn31 Flemish Supercomputer Centre Vlaams Supercomputer Centrum'),
(99879, 'https://ror.org/05stnk221', 'en', 1, 'https://ror.org/05stnk221 McCune Foundation'),
(99880, 'https://ror.org/05stqjz94', 'en', 0, 'https://ror.org/05stqjz94 Row Fogo Charitable Trust'),
(99881, 'https://ror.org/05svhj534', 'da', 1, 'https://ror.org/05svhj534 Danmarks Frie Forskningsfond Independent Research Fund Denmark'),
(99882, 'https://ror.org/05svhk535', 'en', 1, 'https://ror.org/05svhk535 Office of Petroleum Reserves'),
(99883, 'https://ror.org/05svms055', 'en', 1, 'https://ror.org/05svms055 American University Kyiv Амерікан Юніверсіті ŠšŠøŃ—Š²'),
(99884, 'https://ror.org/05sw4bn05', 'pt', 1, 'https://ror.org/05sw4bn05 Universidade de ItaĆŗna'),
(99885, 'https://ror.org/05syd6y78', 'pt', 1, 'https://ror.org/05syd6y78 Federal University of ParanĆ” Universidade Federal do ParanĆ”'),
(99886, 'https://ror.org/05sz3st37', 'fr', 1, 'https://ror.org/05sz3st37 CƩgep Beauce-Appalaches'),
(99887, 'https://ror.org/05sz45x40', 'en', 1, 'https://ror.org/05sz45x40 Queensland Department of the Premier and Cabinet'),
(99888, 'https://ror.org/05szcn205', 'en', 1, 'https://ror.org/05szcn205 China National Rice Research Institute 中国氓稻研究所'),
(99889, 'https://ror.org/05t0gvw18', 'pt', 1, 'https://ror.org/05t0gvw18 Instituto de Educação Superior de Brasília'),
(99890, 'https://ror.org/05t17k830', 'en', 1, 'https://ror.org/05t17k830 UK Regenerative Medicine Platform'),
(99891, 'https://ror.org/05t2rs949', 'pt', 1, 'https://ror.org/05t2rs949 Fundação Instituto de Educação de Barueri'),
(99892, 'https://ror.org/05t41kv40', 'en', 1, 'https://ror.org/05t41kv40 Nuclear Energy Enabling Technologies'),
(99893, 'https://ror.org/05t8khn72', 'ca', 1, 'https://ror.org/05t8khn72 Institut de Biologia Molecular de Barcelona Molecular Biology Institute of Barcelona'),
(99894, 'https://ror.org/05t8xvx87', 'en', 1, 'https://ror.org/05t8xvx87 Chinese Research Academy of Environmental Sciences äø­å›½ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(99895, 'https://ror.org/05tamah23', 'en', 1, 'https://ror.org/05tamah23 Communicating Diet and Activity Research'),
(99896, 'https://ror.org/05tb0v960', 'en', 1, 'https://ror.org/05tb0v960 Narcolepsy Network'),
(99897, 'https://ror.org/05tb4mb78', 'fr', 1, 'https://ror.org/05tb4mb78 Laboratoire d''ArchƩologie MƩdiƩvale et Moderne en MƩditerranƩe'),
(99898, 'https://ror.org/05tbp9v13', 'en', 1, 'https://ror.org/05tbp9v13 Valleywise Health'),
(99899, 'https://ror.org/05tc5g775', 'de', 1, 'https://ror.org/05tc5g775 Max Planck Foundation Max-Planck-Fƶrderstiftung'),
(99900, 'https://ror.org/05td1pb92', 'en', 1, 'https://ror.org/05td1pb92 Canadian Dairy Commission Commission canadienne du lait'),
(99901, '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'),
(99902, 'https://ror.org/05tgb6494', 'en', 1, 'https://ror.org/05tgb6494 International College of Management and Sports'),
(99903, 'https://ror.org/05tgxx705', 'en', 1, 'https://ror.org/05tgxx705 Department of Science and Technology Kagawaran ng Agham at Teknolohiya'),
(99904, 'https://ror.org/05th6qs39', 'en', 1, 'https://ror.org/05th6qs39 Central Asian Medical University ДреГнеазиатский меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99905, 'https://ror.org/05tj7dm33', 'en', 1, 'https://ror.org/05tj7dm33 Office of Nuclear Energy'),
(99906, 'https://ror.org/05tjan294', 'en', 1, 'https://ror.org/05tjan294 McLaren Health Care'),
(99907, 'https://ror.org/05tjbhz35', 'fr', 1, 'https://ror.org/05tjbhz35 Histoire, Territoires & MƩmoires'),
(99908, 'https://ror.org/05tqdk852', 'fr', 1, 'https://ror.org/05tqdk852 Laboratoire d''Excellence Dynamiques Territoriales et Spatiales'),
(99909, 'https://ror.org/05tqz2732', 'no_lang_code', 0, 'https://ror.org/05tqz2732 Bendix (United States)'),
(99910, 'https://ror.org/05tqzgp98', 'fr', 1, 'https://ror.org/05tqzgp98 Centre Lyonnais d''Acoustique'),
(99911, 'https://ror.org/05tvhac84', 'ca', 1, 'https://ror.org/05tvhac84 Andorra Recerca + Innovació'),
(99912, 'https://ror.org/05tvkct11', 'en', 1, 'https://ror.org/05tvkct11 Pratt Foundation'),
(99913, 'https://ror.org/05txeyd16', 'no_lang_code', 1, 'https://ror.org/05txeyd16 Raytheon Technologies (Australia)'),
(99914, 'https://ror.org/05txnrv95', 'no_lang_code', 1, 'https://ror.org/05txnrv95 Oriental Yuhong (China) äøœę–¹é›Øč™¹'),
(99915, 'https://ror.org/05tyqjm34', 'en', 1, 'https://ror.org/05tyqjm34 Saint Meinrad Seminary and School of Theology'),
(99916, 'https://ror.org/05v01tw04', 'es', 1, 'https://ror.org/05v01tw04 Centro de Estudios Andaluces'),
(99917, 'https://ror.org/05v0c3v45', 'en', 1, 'https://ror.org/05v0c3v45 State Key Laboratory of Special Functional Waterproof Materials ē‰¹ē§åŠŸčƒ½é˜²ę°“ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99918, 'https://ror.org/05v1wzc05', 'no_lang_code', 0, 'https://ror.org/05v1wzc05 Bell Canada Enterprises (Canada)'),
(99919, 'https://ror.org/05v3mvq14', 'en', 1, 'https://ror.org/05v3mvq14 National Energy Research Scientific Computing Center'),
(99920, 'https://ror.org/05v509s40', 'fr', 1, 'https://ror.org/05v509s40 UniversitƩ Le Havre Normandie'),
(99921, 'https://ror.org/05v50z525', 'fr', 1, 'https://ror.org/05v50z525 Collège Gérald-Godin'),
(99922, 'https://ror.org/05v8y4456', 'en', 1, 'https://ror.org/05v8y4456 Naval Information Warfare Center Atlantic'),
(99923, 'https://ror.org/05vagpr62', 'en', 1, 'https://ror.org/05vagpr62 Krembil Brain Institute'),
(99924, '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'),
(99925, 'https://ror.org/05vbqv320', 'en', 0, 'https://ror.org/05vbqv320 Bundesministerium für Familien und Jugend Federal Ministry of Families and Youth'),
(99926, 'https://ror.org/05vc7qy59', 'en', 1, 'https://ror.org/05vc7qy59 Savannah River National Laboratory'),
(99927, 'https://ror.org/05vcng590', 'en', 1, 'https://ror.org/05vcng590 NOAA Center for Operational Oceanographic Products & Services'),
(99928, 'https://ror.org/05vf86811', 'en', 1, 'https://ror.org/05vf86811 CABI Switzerland'),
(99929, 'https://ror.org/05vg20182', 'en', 1, 'https://ror.org/05vg20182 State Key Laboratory of Chemobiosensing and Chemometrics åŒ–å­¦ē”Ÿē‰©ä¼ ę„ŸäøŽč®”é‡å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99930, 'https://ror.org/05vk3sy20', 'en', 1, 'https://ror.org/05vk3sy20 Industrial Efficiency and Decarbonization Office'),
(99931, 'https://ror.org/05vm26792', 'en', 1, 'https://ror.org/05vm26792 Capiz State University'),
(99932, 'https://ror.org/05vmfpy67', 'en', 1, 'https://ror.org/05vmfpy67 German Association of Joint Industrial Applied Research Institutes'),
(99933, 'https://ror.org/05vmxhn52', 'en', 1, 'https://ror.org/05vmxhn52 State Key Laboratory of Process Automation in Mining and Metallurgy ēŸæå†¶čæ‡ēØ‹č‡ŖåŠØęŽ§åˆ¶ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99934, 'https://ror.org/05vnsdr62', 'en', 1, 'https://ror.org/05vnsdr62 Tumu College of Education'),
(99935, 'https://ror.org/05vnxnq07', 'en', 1, 'https://ror.org/05vnxnq07 Christian Theological Seminary'),
(99936, 'https://ror.org/05vs9t239', 'en', 1, 'https://ror.org/05vs9t239 State Grid Shanxi Electric Power Company Electric Power Research Institute å›½ē½‘å±±č„æēœē”µåŠ›å…¬åøē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢'),
(99937, 'https://ror.org/05vspf741', 'en', 1, 'https://ror.org/05vspf741 Kermanshah University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی کرمانؓاه'),
(99938, 'https://ror.org/05vvhh982', 'en', 1, 'https://ror.org/05vvhh982 University of Arkansas System'),
(99939, 'https://ror.org/05vvm2m33', 'no_lang_code', 1, 'https://ror.org/05vvm2m33 ChorusOS (France)'),
(99940, 'https://ror.org/05vw8d065', 'en', 1, 'https://ror.org/05vw8d065 Ministry of Innovative Development of the Republic of Uzbekistan'),
(99941, 'https://ror.org/05vy72d91', 'no_lang_code', 1, 'https://ror.org/05vy72d91 Helvia.ai (Greece)'),
(99942, 'https://ror.org/05w21fm10', 'no_lang_code', 1, 'https://ror.org/05w21fm10 WWF-India'),
(99943, 'https://ror.org/05w21nn13', 'en', 1, 'https://ror.org/05w21nn13 Army Medical University äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬äø‰å†›åŒ»å¤§å­¦'),
(99944, 'https://ror.org/05w35s747', 'en', 1, 'https://ror.org/05w35s747 Franklin College'),
(99945, 'https://ror.org/05w4xtm55', 'en', 1, 'https://ror.org/05w4xtm55 The Federal Polytechnic Ilaro'),
(99946, 'https://ror.org/05w553v73', 'en', 1, 'https://ror.org/05w553v73 State Key Laboratory of Precision Spectroscopy Science and Technology ē²¾åÆ†å…‰č°±ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99947, 'https://ror.org/05w62hv45', 'en', 1, 'https://ror.org/05w62hv45 Murray District Hospital'),
(99948, 'https://ror.org/05w7a1h78', 'en', 1, 'https://ror.org/05w7a1h78 Barcelona Centre for International Affairs Barcelona Centro de Relaciones Internacionales'),
(99949, 'https://ror.org/05w9p7918', 'no_lang_code', 1, 'https://ror.org/05w9p7918 Mistral AI (France)'),
(99950, 'https://ror.org/05waa5295', 'en', 1, 'https://ror.org/05waa5295 Gouvernement du QuƩbec Government of Quebec'),
(99951, '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'),
(99952, 'https://ror.org/05wd3f534', 'no_lang_code', 1, 'https://ror.org/05wd3f534 EMS Press'),
(99953, 'https://ror.org/05wf3b832', 'en', 1, 'https://ror.org/05wf3b832 WomenHeart'),
(99954, 'https://ror.org/05wg5bj23', 'no_lang_code', 1, 'https://ror.org/05wg5bj23 Dr. Reddy''s Laboratories (Spain)'),
(99955, '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'),
(99956, 'https://ror.org/05wk0m864', 'en', 1, 'https://ror.org/05wk0m864 Cold Regions Research and Engineering Laboratory'),
(99957, 'https://ror.org/05wk7t803', 'en', 1, 'https://ror.org/05wk7t803 State Key Laboratory of Phytochemistry and Sustainable Utilization of Western Plant Resources ę¤ē‰©åŒ–å­¦äøŽč„æéƒØę¤ē‰©čµ„ęŗęŒē»­åˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99958, 'https://ror.org/05wkbzn97', 'en', 1, 'https://ror.org/05wkbzn97 Seattle Public Utilities'),
(99959, 'https://ror.org/05wnp0977', 'en', 1, 'https://ror.org/05wnp0977 Defence and Security Accelerator'),
(99960, 'https://ror.org/05wps8h17', 'de', 1, 'https://ror.org/05wps8h17 Deutsches ArchƤologisches Institut, Abteilung Cairo German Archaeological Institute, Cairo Department'),
(99961, 'https://ror.org/05wq99a66', 'en', 1, 'https://ror.org/05wq99a66 State Key Laboratory of Systematic and Evolutionary Botany ē³»ē»ŸäøŽčæ›åŒ–ę¤ē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99962, 'https://ror.org/05wthjx48', 'en', 0, 'https://ror.org/05wthjx48 New York University School of Medicine'),
(99963, 'https://ror.org/05wvw0v54', 'en', 1, 'https://ror.org/05wvw0v54 Walton Institute for Information and Communications Systems Science'),
(99964, 'https://ror.org/05wx9n238', 'no_lang_code', 1, 'https://ror.org/05wx9n238 OpenAI (United States)'),
(99965, 'https://ror.org/05wy0y692', 'es', 1, 'https://ror.org/05wy0y692 Centro OceanogrƔfico de MƔlaga Oceanographic Center of MƔlaga'),
(99966, 'https://ror.org/05wy2cj05', 'fr', 1, 'https://ror.org/05wy2cj05 Laboratoire architecture anthropologie'),
(99967, 'https://ror.org/05wygq130', 'es', 1, 'https://ror.org/05wygq130 Gabriela Mistral University Universidad Gabriela Mistral'),
(99968, 'https://ror.org/05x083d20', 'en', 1, 'https://ror.org/05x083d20 Masonic Cancer Center'),
(99969, 'https://ror.org/05x0eyz88', 'de', 1, 'https://ror.org/05x0eyz88 Deutschen Phytomedizinischen Gesellschaft e.V.'),
(99970, 'https://ror.org/05x3f0345', 'en', 1, 'https://ror.org/05x3f0345 Government of Seattle'),
(99971, 'https://ror.org/05x4mfc53', 'es', 1, 'https://ror.org/05x4mfc53 Autoridad Portuaria de Gijon Port Authority of Gijón'),
(99972, 'https://ror.org/05x643e19', 'en', 1, 'https://ror.org/05x643e19 Corewell Health Butterworth Hospital'),
(99973, 'https://ror.org/05x7hpz69', 'no_lang_code', 1, 'https://ror.org/05x7hpz69 Empresa Municipal de Transportes de Madrid'),
(99974, 'https://ror.org/05x817c41', 'no_lang_code', 1, 'https://ror.org/05x817c41 Bahauddin Zakariya University ŲØŪŲ§Ų¤Ų§Ł„ŲÆŪŒŁ† زکریا ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(99975, 'https://ror.org/05x9ffc66', 'en', 1, 'https://ror.org/05x9ffc66 Beaumont Hospital, Troy'),
(99976, 'https://ror.org/05xa0v755', 'en', 1, 'https://ror.org/05xa0v755 International University of Science and Technology in Kuwait'),
(99977, 'https://ror.org/05xa8mk74', 'en', 1, 'https://ror.org/05xa8mk74 State Key Laboratory of Metal Mine Safety Technology é‡‘å±žēŸæå±±å®‰å…ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99978, 'https://ror.org/05xay3m79', 'fr', 1, 'https://ror.org/05xay3m79 Ɖrudit'),
(99979, 'https://ror.org/05xbqrp21', 'en', 1, 'https://ror.org/05xbqrp21 State Key Laboratory of Protein and Plant Gene Research č›‹ē™½č“ØäøŽę¤ē‰©åŸŗå› ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99980, 'https://ror.org/05xfdey77', 'en', 1, 'https://ror.org/05xfdey77 Bureau of Transportation Statistics'),
(99981, 'https://ror.org/05xgfr295', 'en', 1, 'https://ror.org/05xgfr295 Canadian Sleep & Circadian Network Centre d''Ɖtudes AvancĆ©es en MĆ©decine du Sommeil'),
(99982, 'https://ror.org/05xhmdj56', 'en', 1, 'https://ror.org/05xhmdj56 Metropolitan Hospital Central Division'),
(99983, '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'),
(99984, 'https://ror.org/05xn4js35', 'en', 1, 'https://ror.org/05xn4js35 University of Belgrade - Faculty of Geography Univerzitet u Beogradu - Geografski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Географски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(99985, 'https://ror.org/05xt1d182', 'en', 1, 'https://ror.org/05xt1d182 Central Energy Resources Science Center'),
(99986, 'https://ror.org/05xtktk35', 'fr', 1, 'https://ror.org/05xtktk35 GƩoazur'),
(99987, 'https://ror.org/05xvjxy27', 'en', 1, 'https://ror.org/05xvjxy27 Lane County Department of Youth Services'),
(99988, 'https://ror.org/05xwcq167', 'es', 1, 'https://ror.org/05xwcq167 Autonomous University of Baja California Universidad Autónoma de Baja California'),
(99989, 'https://ror.org/05xyr4058', 'en', 1, 'https://ror.org/05xyr4058 Australian Institute of Health Service Management'),
(99990, 'https://ror.org/05y2b6q82', 'en', 1, 'https://ror.org/05y2b6q82 Henan Provincial Department of Human Resources and Social Security ę²³å—ēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(99991, 'https://ror.org/05y3n1d93', 'es', 1, 'https://ror.org/05y3n1d93 Aena, Aeropuertos Españoles y Navegación Aérea'),
(99992, 'https://ror.org/05y74m987', 'en', 0, 'https://ror.org/05y74m987 Kostanay State University A Baitursynov ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ахмета Š‘Š°Š¹Ń‚ŃƒŃ€ŃŃ‹Š½Š¾Š²Š° ŅšŠ¾ŃŃ‚Š°Š½Š°Š¹ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(99993, 'https://ror.org/05y7kyx32', 'no_lang_code', 1, 'https://ror.org/05y7kyx32 Medidata (United States)'),
(99994, 'https://ror.org/05ybd2c79', 'fr', 1, 'https://ror.org/05ybd2c79 Laboratoire d''Ʃtudes et de recherche en sociologie'),
(99995, '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'),
(99996, 'https://ror.org/05ycwtk34', 'fr', 1, 'https://ror.org/05ycwtk34 Agence ThƩmatique de Recherche en Sciences et Technologie'),
(99997, 'https://ror.org/05yeagb65', 'es', 1, 'https://ror.org/05yeagb65 Centro MƩdico Sanitas Alcobendas Sanitas Alcobendas Medical Centre'),
(99998, 'https://ror.org/05yfx9j20', 'eu', 1, 'https://ror.org/05yfx9j20 Ekonomiaren Garapen, Jasangarritasun eta Ingurumen Saila'),
(99999, 'https://ror.org/05yhtfv11', 'fr', 1, 'https://ror.org/05yhtfv11 GƩoarchitecture, Territoires, Urbanisation, BiodiversitƩ, Environnement'),
(100000, 'https://ror.org/05ynrwf18', 'pt', 1, 'https://ror.org/05ynrwf18 Universidad Libre de MĆŗsica Universidade Livre de MĆŗsica'),
(100001, 'https://ror.org/0001a2m26', 'en', 1, 'https://ror.org/0001a2m26 SUNY Broome Community College'),
(100002, 'https://ror.org/0001fmy77', 'en', 1, 'https://ror.org/0001fmy77 University of Macerata UniversitƠ degli Studi di Macerata UniversitƩ de macerata'),
(100003, 'https://ror.org/0002cnv45', 'fr', 1, 'https://ror.org/0002cnv45 Ɖcole Nationale SupĆ©rieure des Arts et Industries Textiles'),
(100004, 'https://ror.org/0003ege03', 'fr', 1, 'https://ror.org/0003ege03 Centre de Recherches sur les MacromolƩcules VƩgƩtales'),
(100005, 'https://ror.org/0005r2j17', 'fr', 1, 'https://ror.org/0005r2j17 Institut Agronomique MƩditerranƩen de Montpellier Mediterranean Agronomic Institute of Montpellier'),
(100006, 'https://ror.org/0005w8d69', 'it', 1, 'https://ror.org/0005w8d69 UniversitƠ di Camerino UniversitƤt Camerino UniversitƩ de camerino'),
(100007, 'https://ror.org/0008kv292', 'en', 1, 'https://ror.org/0008kv292 Marymount University'),
(100008, 'https://ror.org/0009eqg37', 'pt', 1, 'https://ror.org/0009eqg37 Instituto Federal Fluminense'),
(100009, 'https://ror.org/000axn811', 'en', 1, 'https://ror.org/000axn811 Audencia Business School'),
(100010, 'https://ror.org/000cyem11', 'en', 1, 'https://ror.org/000cyem11 Donald Danforth Plant Science Center'),
(100011, 'https://ror.org/000d5zy28', 'fr', 1, 'https://ror.org/000d5zy28 Institut de Chimie Radicalaire'),
(100012, 'https://ror.org/000dfsq72', 'en', 1, 'https://ror.org/000dfsq72 Office for Learning and Teaching'),
(100013, 'https://ror.org/000es9t33', 'en', 1, 'https://ror.org/000es9t33 Lomonosov Moscow State University Marine Research Center LLC Центр морских исслеГований ŠœŠ“Š£ имени М. Š’.Ломоносова'),
(100014, 'https://ror.org/000hdh770', 'en', 1, 'https://ror.org/000hdh770 Dalarna University Hƶgskolan Dalarna Taalainmaan korkeakoulu'),
(100015, 'https://ror.org/000n0fx93', 'fr', 1, 'https://ror.org/000n0fx93 Signalisation Fonctionnelle des Canaux Ioniques et RƩcepteurs'),
(100016, 'https://ror.org/000nwmh60', 'no_lang_code', 0, 'https://ror.org/000nwmh60 L-3 Communications (United States)'),
(100017, 'https://ror.org/000p29f53', 'fr', 1, 'https://ror.org/000p29f53 Laboratoire d''Optique et Biosciences Laboratory for Optics & Biosciences'),
(100018, 'https://ror.org/000p4dw82', 'es', 1, 'https://ror.org/000p4dw82 Hospital Universitario del Valle ESE'),
(100019, 'https://ror.org/000prga03', 'en', 1, 'https://ror.org/000prga03 Guilin Medical University ę”‚ęž—åŒ»å­¦é™¢'),
(100020, 'https://ror.org/000q6dn27', 'fr', 1, 'https://ror.org/000q6dn27 Laboratoire d''anthropologie des enjeux contemporains'),
(100021, 'https://ror.org/000sg7415', 'es', 1, 'https://ror.org/000sg7415 Centro Universitario del Sur'),
(100022, 'https://ror.org/000twr676', 'en', 1, 'https://ror.org/000twr676 Anaesthetic Research Society'),
(100023, 'https://ror.org/000vmwg42', 'fr', 1, 'https://ror.org/000vmwg42 Ɖcole nationale supĆ©rieure d''architecture de Marseille'),
(100024, 'https://ror.org/000xab928', 'pt', 1, 'https://ror.org/000xab928 Estado-Maior-General das ForƧas Armadas'),
(100025, 'https://ror.org/000xs1x50', 'en', 1, 'https://ror.org/000xs1x50 Tusimple, Tusimple (United States)'),
(100026, 'https://ror.org/000y2g343', 'en', 1, 'https://ror.org/000y2g343 Azerbaijan State University of Economics Azərbaycan Dƶvlət İqtisad Universiteti АзербайГжанский Š³Š¾ŃŃƒŠ“арственный ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100027, 'https://ror.org/000zz1243', 'id', 1, 'https://ror.org/000zz1243 Dinas Pendidikan Kabupaten Grobogan'),
(100028, 'https://ror.org/0011v9813', 'no_lang_code', 1, 'https://ror.org/0011v9813 Evenor-Tech, Evenor-Tech (Spain)'),
(100029, 'https://ror.org/001377z89', 'no_lang_code', 1, 'https://ror.org/001377z89 Riverlane, Riverlane (United Kingdom)'),
(100030, 'https://ror.org/0014xh077', 'fr', 1, 'https://ror.org/0014xh077 Centre d’histoire des sociĆ©tĆ©s MĆ©diĆ©vales et Modernes'),
(100031, 'https://ror.org/0015qa126', 'en', 1, 'https://ror.org/0015qa126 International Centre for Theoretical Sciences ą²øą³†ą³–ą²¦ą³ą²§ą²¾ą²‚ą²¤ą²æą²• ą²µą²æą²œą³ą²žą²¾ą²Ø ą²…ą²‚ą²¤ą²°ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą²æą³•ą²Æ ą²•ą³†ą³•ą²‚ą²¦ą³ą²°'),
(100032, 'https://ror.org/0015z8z93', 'en', 1, 'https://ror.org/0015z8z93 University College of Allameh Helli دانؓگاه علامه Ų­Ł„ŪŒ Ś†Ų§Ł„ŁˆŲ³'),
(100033, 'https://ror.org/0018c4h73', 'fr', 1, 'https://ror.org/0018c4h73 Institut Charles Viollette'),
(100034, 'https://ror.org/0018tj392', 'en', 1, 'https://ror.org/0018tj392 Humanities Kansas'),
(100035, 'https://ror.org/0019x5d05', 'fr', 1, 'https://ror.org/0019x5d05 Institut de Biologie et de Chimie des ProtƩines'),
(100036, 'https://ror.org/001aevc89', 'fr', 1, 'https://ror.org/001aevc89 Laboratoire d''Acoustique de l''UniversitƩ du Mans'),
(100037, 'https://ror.org/001anga17', 'fr', 0, 'https://ror.org/001anga17 UniversitƩ Bordeaux-I'),
(100038, 'https://ror.org/001br4864', 'en', 1, 'https://ror.org/001br4864 Biomedtech Facilities'),
(100039, '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'),
(100040, 'https://ror.org/001dmmw97', 'en', 1, 'https://ror.org/001dmmw97 Leipzig Research Centre Global Dynamics'),
(100041, 'https://ror.org/001f39w38', 'en', 1, 'https://ror.org/001f39w38 Clermont Auvergne INP'),
(100042, 'https://ror.org/001gq4617', 'ca', 1, 'https://ror.org/001gq4617 AgĆØncia de Qualitat UniversitĆ ria de les Illes Balears'),
(100043, 'https://ror.org/001jhv750', 'en', 0, 'https://ror.org/001jhv750 NFDI4Culture'),
(100044, 'https://ror.org/001kawq27', 'en', 1, 'https://ror.org/001kawq27 National Museum of American Jewish History'),
(100045, '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'),
(100046, 'https://ror.org/001nkz398', 'en', 1, 'https://ror.org/001nkz398 University of Library Studies and Information Technologies Университет по библиотекознание Šø информационни технологии'),
(100047, 'https://ror.org/001nw2d36', 'en', 1, 'https://ror.org/001nw2d36 Chandpur Science and Technology University চাঁদপুর ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(100048, 'https://ror.org/001q9w183', 'fr', 1, 'https://ror.org/001q9w183 Conservatoire botanique national de Bailleul'),
(100049, 'https://ror.org/001r0mk78', 'no_lang_code', 1, 'https://ror.org/001r0mk78 Hansa Biopharma (Sweden)'),
(100050, 'https://ror.org/001rm8957', 'en', 1, 'https://ror.org/001rm8957 Centre for Hydraulic Research Centrum hydraulického výzkumu spol. s r.o.'),
(100051, 'https://ror.org/001rmv394', 'fr', 1, 'https://ror.org/001rmv394 BiomƩcanique et Pathologie Locomotrice du Cheval'),
(100052, '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'),
(100053, 'https://ror.org/001vq2a15', 'en', 1, 'https://ror.org/001vq2a15 University of the South Pacific - Solomon Islands Campus'),
(100054, 'https://ror.org/001zt9558', 'sr', 1, 'https://ror.org/001zt9558 IPMA Serbia IPMA Srbija'),
(100055, '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ě'),
(100056, 'https://ror.org/0022kfb81', 'fr', 0, 'https://ror.org/0022kfb81 Neuropsychiatry Epidemiological and Clinical Research'),
(100057, 'https://ror.org/0024c1w94', 'fr', 1, 'https://ror.org/0024c1w94 Plantes et SystĆØme de Cultures Horticoles Plants and Cropping Systems in Horticulture'),
(100058, 'https://ror.org/0026h6z67', 'pt', 1, 'https://ror.org/0026h6z67 Instituto de Estudos Sociais e Económicos'),
(100059, 'https://ror.org/0027wax95', 'en', 1, 'https://ror.org/0027wax95 Cal Humanities'),
(100060, 'https://ror.org/0028p8r67', 'fr', 1, 'https://ror.org/0028p8r67 Hubert Curien laboratory Laboratoire Hubert Curien'),
(100061, 'https://ror.org/002b7nr53', 'en', 1, 'https://ror.org/002b7nr53 Dalian Maritime University å¤§čæžęµ·äŗ‹å¤§å­¦'),
(100062, 'https://ror.org/002cp4060', 'fr', 1, 'https://ror.org/002cp4060 Assistance Publique HƓpitaux de Marseille Marseille Public University Hospital System'),
(100063, 'https://ror.org/002dmza47', 'en', 1, 'https://ror.org/002dmza47 Varastegan Institute for Medical Sciences مرکز Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų¹Ł„ŁˆŁ… پزؓکی ŁˆŲ§Ų±Ų³ŲŖŚÆŲ§Ł†'),
(100064, 'https://ror.org/002epp671', 'en', 1, 'https://ror.org/002epp671 Center for NanoScience'),
(100065, 'https://ror.org/002ez5845', 'en', 1, 'https://ror.org/002ez5845 SzínhÔz- és Filmművészeti Egyetem University of Theatre and Film Arts'),
(100066, 'https://ror.org/002g57a93', 'en', 1, 'https://ror.org/002g57a93 Eastern Washington University'),
(100067, 'https://ror.org/002jby155', 'fr', 1, 'https://ror.org/002jby155 Centre Bourgogne-Franche-ComtƩ'),
(100068, 'https://ror.org/002pcmz09', 'es', 1, 'https://ror.org/002pcmz09 Universidad Tecnológica de TehuacÔn'),
(100069, 'https://ror.org/002q11y83', 'en', 1, 'https://ror.org/002q11y83 Institute For Cancer Vaccine & Immunotherapy'),
(100070, 'https://ror.org/002qhr126', 'en', 1, 'https://ror.org/002qhr126 New Bulgarian University ŠŠ¾Š² Š±ŃŠŠ»Š³Š°Ń€ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100071, 'https://ror.org/002s5nt60', 'en', 1, 'https://ror.org/002s5nt60 Alfred Landecker Foundation'),
(100072, 'https://ror.org/002swtn40', 'es', 1, 'https://ror.org/002swtn40 JLA Ediciones'),
(100073, 'https://ror.org/002tx1f22', 'en', 1, 'https://ror.org/002tx1f22 Cleveland State University UniversitĆ© d''Ɖtat de cleveland'),
(100074, 'https://ror.org/002ty1h48', 'fr', 1, 'https://ror.org/002ty1h48 Laboratoire pour l''utilisation des lasers intenses Laboratory for the User of Intense Lasers'),
(100075, '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'),
(100076, 'https://ror.org/002w4zy91', 'en', 1, 'https://ror.org/002w4zy91 University of West Florida'),
(100077, 'https://ror.org/002xn4752', 'en', 1, 'https://ror.org/002xn4752 Western Oregon University'),
(100078, 'https://ror.org/002yg6s88', 'fr', 1, 'https://ror.org/002yg6s88 Centre Population et DƩveloppement Population and Development Center'),
(100079, 'https://ror.org/002yp7f20', 'en', 1, 'https://ror.org/002yp7f20 Thammasat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø˜ąø£ąø£ąø”ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(100080, 'https://ror.org/002zc3t08', 'fr', 1, 'https://ror.org/002zc3t08 Institut de MĆ©canique CĆ©leste et de Calcul des ƉphĆ©mĆ©rides'),
(100081, 'https://ror.org/0033f4j54', 'en', 1, 'https://ror.org/0033f4j54 Royal Numismatic Society'),
(100082, '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'),
(100083, 'https://ror.org/0033vhx30', 'fr', 0, 'https://ror.org/0033vhx30 University of Paris-Seine UniversitƩ Paris-Seine'),
(100084, 'https://ror.org/003412r28', 'fr', 1, 'https://ror.org/003412r28 Cancer Research Center of Toulouse Centre de Recherche en CancƩrologie de Toulouse'),
(100085, 'https://ror.org/00363ea60', 'en', 1, 'https://ror.org/00363ea60 Serbian Sociological Association'),
(100086, 'https://ror.org/0036rpn28', 'en', 1, 'https://ror.org/0036rpn28 Michigan Technological University'),
(100087, 'https://ror.org/0037hx413', 'id', 1, 'https://ror.org/0037hx413 UIN Raden Mas Said Surakarta'),
(100088, 'https://ror.org/0037qsh65', 'en', 1, 'https://ror.org/0037qsh65 Universidad de Detroit Misericordia University of Detroit Mercy UniversitƩ de detroit misƩricorde'),
(100089, 'https://ror.org/0038jbq24', 'en', 1, 'https://ror.org/0038jbq24 Bath Spa University'),
(100090, 'https://ror.org/00390t168', 'en', 1, 'https://ror.org/00390t168 College of Charleston'),
(100091, 'https://ror.org/0039pbm21', 'en', 1, 'https://ror.org/0039pbm21 College of Physicians and Surgeons Pakistan'),
(100092, 'https://ror.org/003d3xx08', 'en', 1, 'https://ror.org/003d3xx08 Universidad de AlmerĆ­a University of AlmerĆ­a'),
(100093, 'https://ror.org/003ex4g35', 'en', 1, 'https://ror.org/003ex4g35 Gairdner Foundation'),
(100094, 'https://ror.org/003fs1j49', 'fr', 1, 'https://ror.org/003fs1j49 Savoirs, Textes, Langage'),
(100095, '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'),
(100096, 'https://ror.org/003hb2249', 'en', 1, 'https://ror.org/003hb2249 Health Research Board'),
(100097, 'https://ror.org/003jnac13', 'fr', 1, 'https://ror.org/003jnac13 Laboratoire de GƩnie Chimique'),
(100098, 'https://ror.org/003mzyg61', 'en', 1, 'https://ror.org/003mzyg61 Construction Engineering Research Laboratory'),
(100099, 'https://ror.org/003n95695', 'fr', 1, 'https://ror.org/003n95695 LabexMER'),
(100100, 'https://ror.org/003nx8950', 'en', 1, 'https://ror.org/003nx8950 BlackSky Global, BlackSky Global (United States)'),
(100101, 'https://ror.org/003p8mm90', 'en', 1, 'https://ror.org/003p8mm90 Bolgatanga Technical University'),
(100102, 'https://ror.org/003qhrc72', 'fr', 1, 'https://ror.org/003qhrc72 UnitƩ de Nutrition Humaine'),
(100103, 'https://ror.org/003s89n44', 'en', 1, 'https://ror.org/003s89n44 MacEwan University'),
(100104, 'https://ror.org/003xyzq10', 'en', 1, 'https://ror.org/003xyzq10 Henan University ę²³å—å¤§å­¦'),
(100105, 'https://ror.org/003yn7c76', 'en', 1, 'https://ror.org/003yn7c76 Bates College'),
(100106, 'https://ror.org/0040axw97', 'en', 1, 'https://ror.org/0040axw97 Yunnan University äŗ‘å—å¤§å­¦'),
(100107, 'https://ror.org/0041am420', 'fr', 1, 'https://ror.org/0041am420 Institut des sciences juridique et philosophique de la Sorbonne'),
(100108, 'https://ror.org/0041qmd21', 'en', 1, 'https://ror.org/0041qmd21 SUNY Downstate Health Sciences University'),
(100109, 'https://ror.org/0044e2g62', 'en', 1, 'https://ror.org/0044e2g62 Minzu University of China äø­å¤®ę°‘ę—å¤§å­¦'),
(100110, 'https://ror.org/0047rmf80', 'fr', 1, 'https://ror.org/0047rmf80 Centre de Recherche en Ɖconomie et Management'),
(100111, 'https://ror.org/0048jxt15', 'en', 1, 'https://ror.org/0048jxt15 Veneto Institute of Molecular Medicine'),
(100112, 'https://ror.org/00490vc18', 'en', 1, 'https://ror.org/00490vc18 Koninklijke Academie van Beeldende Kunsten Royal Academy of Art'),
(100113, 'https://ror.org/004ah3r71', 'en', 1, 'https://ror.org/004ah3r71 Sinop University Sinop Üniversitesi'),
(100114, 'https://ror.org/004dg2369', 'en', 1, 'https://ror.org/004dg2369 Maltepe University Maltepe Üniversitesi'),
(100115, 'https://ror.org/004fa0x02', 'en', 1, 'https://ror.org/004fa0x02 University of Bamberg Press'),
(100116, 'https://ror.org/004hyqr12', 'en', 1, 'https://ror.org/004hyqr12 Suffolk County Community College'),
(100117, 'https://ror.org/004je0088', 'en', 1, 'https://ror.org/004je0088 Wuhan Sports University 武汉体育学院'),
(100118, 'https://ror.org/004nnf780', 'fr', 1, 'https://ror.org/004nnf780 HƓpital Louis-Mourier'),
(100119, 'https://ror.org/004q3z910', 'fr', 1, 'https://ror.org/004q3z910 Ecophysiologie et GƩnomique Fonctionnelle de la Vigne Ecophysiology and Grape Functional Genomics'),
(100120, 'https://ror.org/004raaa70', 'fr', 1, 'https://ror.org/004raaa70 UniversitƩ de Toulouse'),
(100121, 'https://ror.org/004sb9k31', 'es', 1, 'https://ror.org/004sb9k31 Universidad Tecnológica de Oriental'),
(100122, 'https://ror.org/004v39231', 'es', 1, 'https://ror.org/004v39231 Universidad Multitecnica Profesional'),
(100123, 'https://ror.org/004v3m339', 'en', 1, 'https://ror.org/004v3m339 The First People''s Hospital of Guangyuan å¹æå…ƒåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(100124, 'https://ror.org/004yv2z91', 'no_lang_code', 1, 'https://ror.org/004yv2z91 Ping An, Ping An (China) äø­å›½å¹³å®‰äæé™©ļ¼ˆé›†å›¢ļ¼‰č‚”ä»½ęœ‰é™å…¬åø'),
(100125, 'https://ror.org/004yvsb77', 'fr', 1, 'https://ror.org/004yvsb77 Centre National de Recherche en GƩnomique Humaine National Center of Human Genomics Research'),
(100126, 'https://ror.org/004zhad81', 'en', 1, 'https://ror.org/004zhad81 Know Center, Know Center GmbH, Know Center Research GmbH, Know Center Research GmbH (Austria)'),
(100127, 'https://ror.org/00502j866', 'en', 1, 'https://ror.org/00502j866 British Universities Film & Video Council'),
(100128, 'https://ror.org/0050w9p71', 'fr', 1, 'https://ror.org/0050w9p71 CancƩropƓle Est'),
(100129, 'https://ror.org/00523a319', 'en', 1, 'https://ror.org/00523a319 Akademia Ekonomiczno-Humanistyczna w Warszawie University of Economics and Human Sciences in Warsaw'),
(100130, 'https://ror.org/0052k0e03', 'en', 1, 'https://ror.org/0052k0e03 Mykolas Romeris University Mykolo Romerio universitetas'),
(100131, 'https://ror.org/0055acf80', 'en', 1, 'https://ror.org/0055acf80 Blood Cancer UK'),
(100132, 'https://ror.org/00561gr17', 'en', 1, 'https://ror.org/00561gr17 Colchester Institute'),
(100133, 'https://ror.org/0056pyw12', 'en', 1, 'https://ror.org/0056pyw12 Shanghai University of Sport äøŠęµ·ä½“č‚²å­¦é™¢'),
(100134, 'https://ror.org/0057kwj95', 'fr', 1, 'https://ror.org/0057kwj95 Laboratoire de Recherche sur les Cultures Anglophones'),
(100135, 'https://ror.org/005aa3k38', 'en', 0, 'https://ror.org/005aa3k38 National Parkinson''s Foundation'),
(100136, 'https://ror.org/005bk2339', 'en', 1, 'https://ror.org/005bk2339 Max Planck Institute for Solid State Research Max-Planck-Institut für Festkörperforschung'),
(100137, 'https://ror.org/005dzvw93', 'no_lang_code', 1, 'https://ror.org/005dzvw93 Zhipu AI, Zhipu AI (China) åŒ—äŗ¬ę™ŗč°±åŽē« ē§‘ęŠ€ęœ‰é™å…¬åø'),
(100138, 'https://ror.org/005g2dx86', 'en', 1, 'https://ror.org/005g2dx86 London Library'),
(100139, 'https://ror.org/005hw9085', 'fr', 1, 'https://ror.org/005hw9085 Centre d''Ʃtudes supƩrieures de civilisation mƩdiƩvale'),
(100140, 'https://ror.org/005tvz367', 'fr', 1, 'https://ror.org/005tvz367 French Intensive Care Society SociƩtƩ de RƩanimation de Langue FranƧaise'),
(100141, 'https://ror.org/005w2mm89', 'fr', 1, 'https://ror.org/005w2mm89 Laboratoire d''Ʃtudes de genre et de sexualitƩ'),
(100142, 'https://ror.org/005wz0e45', 'en', 1, 'https://ror.org/005wz0e45 Colorado Humanities'),
(100143, 'https://ror.org/005xw4w62', 'en', 1, 'https://ror.org/005xw4w62 Mātai Medical Research Institute Te Mata Mātai Hura'),
(100144, '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'),
(100145, 'https://ror.org/005ypkf75', 'en', 1, 'https://ror.org/005ypkf75 University of Reunion Island UniversitƩ de La RƩunion'),
(100146, 'https://ror.org/0060xzr04', 'fr', 1, 'https://ror.org/0060xzr04 BioƩnergƩtique et IngƩnierie des ProtƩines'),
(100147, 'https://ror.org/0061rmm93', 'fr', 1, 'https://ror.org/0061rmm93 Laboratoire d’Étude des MĆ©canismes Cognitifs'),
(100148, 'https://ror.org/00637yt37', 'en', 1, 'https://ror.org/00637yt37 Niagara County Community College'),
(100149, 'https://ror.org/0065vkd37', 'en', 1, 'https://ror.org/0065vkd37 Brookdale University Hospital and Medical Center'),
(100150, 'https://ror.org/006626m33', 'fr', 0, 'https://ror.org/006626m33 Neurophysiologie et nouvelles microscopies Neurophysiology & New Microscopies Laboratory'),
(100151, 'https://ror.org/0066qbn28', 'en', 1, 'https://ror.org/0066qbn28 Inter-University Accelerator Centre'),
(100152, 'https://ror.org/006703856', 'pt', 1, 'https://ror.org/006703856 Faculdade Metropolitana de Manaus Metropolitan College of Manaus'),
(100153, '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'),
(100154, 'https://ror.org/0067dvq63', 'en', 1, 'https://ror.org/0067dvq63 Government of New South Wales'),
(100155, 'https://ror.org/0067qp350', 'fr', 1, 'https://ror.org/0067qp350 La Manufacture - Haute école des arts de la scène'),
(100156, 'https://ror.org/0068dme40', 'en', 1, 'https://ror.org/0068dme40 Jamestown Community College'),
(100157, 'https://ror.org/0068n3903', 'en', 1, 'https://ror.org/0068n3903 Guangzhou Xinhua University å¹æå·žę–°åŽå­¦é™¢'),
(100158, 'https://ror.org/006c9jk14', 'no_lang_code', 1, 'https://ror.org/006c9jk14 Zymergen, Zymergen (United States)'),
(100159, 'https://ror.org/006cymg18', 'en', 1, 'https://ror.org/006cymg18 Universidad de Costa Este de Maryland University of Maryland Eastern Shore'),
(100160, 'https://ror.org/006er0w72', 'en', 1, 'https://ror.org/006er0w72 Usmanu Danfodiyo University YunifƔsƭtƬ Usman Dan Fodio'),
(100161, 'https://ror.org/006g31f33', 'de', 1, 'https://ror.org/006g31f33 Institut für Sonnenphysik Institute for Solar Physics'),
(100162, 'https://ror.org/006gzge74', 'fr', 1, 'https://ror.org/006gzge74 Centre de recherche sur les civilisations de l''Asie orientale'),
(100163, 'https://ror.org/006jb1a24', 'en', 1, 'https://ror.org/006jb1a24 Bangor University Prifysgol Bangor'),
(100164, 'https://ror.org/006kxhp52', 'en', 1, 'https://ror.org/006kxhp52 Organisation des Nations Unies Organización de las Naciones Unidas United Nations'),
(100165, 'https://ror.org/006pak935', 'en', 1, 'https://ror.org/006pak935 Cornwall College'),
(100166, 'https://ror.org/006t72359', 'en', 1, 'https://ror.org/006t72359 Norwich BioScience Institutes'),
(100167, 'https://ror.org/006teas31', 'en', 1, 'https://ror.org/006teas31 Shanghai University 上海大学'),
(100168, 'https://ror.org/006vqpx82', 'fr', 1, 'https://ror.org/006vqpx82 Laboratoire de Virologie - PathogenĆØse virale'),
(100169, 'https://ror.org/006x4sc24', 'en', 1, 'https://ror.org/006x4sc24 Gdańsk University of Technology Politechnika Gdańska'),
(100170, 'https://ror.org/006xg2x43', 'it', 1, 'https://ror.org/006xg2x43 Liceo scientifico statale Ulisse Dini Ulisse Dini Scientific High School'),
(100171, 'https://ror.org/006yrbb28', 'fr', 1, 'https://ror.org/006yrbb28 Ɖcole de Psychologues Praticien'),
(100172, 'https://ror.org/006zfjs50', 'de', 1, 'https://ror.org/006zfjs50 Forschungsanstalt für Waldökologie und Forstwirtschaft Rheinland-Pfalz'),
(100173, 'https://ror.org/00721wn77', 'fr', 1, 'https://ror.org/00721wn77 Les Afriques dans le Monde'),
(100174, 'https://ror.org/0074grg94', 'en', 1, 'https://ror.org/0074grg94 Pomona College'),
(100175, 'https://ror.org/007530q75', 'en', 1, 'https://ror.org/007530q75 Eesti Kunstiakadeemia Estonian Academy of Arts Š­ŃŃ‚Š¾Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²'),
(100176, 'https://ror.org/0077bqh92', 'en', 1, 'https://ror.org/0077bqh92 National University Ā«Odesa Maritime AcademyĀ» ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢ Ā«ŠžŠ”Š•Š”Š¬ŠšŠ ŠœŠžŠ Š”Š¬ŠšŠ ŠŠšŠŠ”Š•ŠœŠ†ŠÆĀ»'),
(100177, 'https://ror.org/0077saz97', 'pt', 1, 'https://ror.org/0077saz97 Instituto PolitƩcnico da Lusofonia'),
(100178, 'https://ror.org/0078xmk34', 'en', 1, 'https://ror.org/0078xmk34 Universidad de Montana University of Montana UniversitƩ du montana'),
(100179, 'https://ror.org/0079gpv38', 'es', 1, 'https://ror.org/0079gpv38 Autonomous University of Mexico State Universidad Autónoma del Estado de México'),
(100180, 'https://ror.org/0079jjr10', 'en', 1, 'https://ror.org/0079jjr10 Max Planck Institute for Physics Max-Planck-Institut für Physik'),
(100181, 'https://ror.org/007a90f76', 'fr', 1, 'https://ror.org/007a90f76'),
(100182, 'https://ror.org/007bw2y16', 'fr', 1, 'https://ror.org/007bw2y16 SantƩ, Education et Situations de Handicap'),
(100183, 'https://ror.org/007c4ae37', 'en', 1, 'https://ror.org/007c4ae37 Center for Community Progress'),
(100184, 'https://ror.org/007cx7r28', 'en', 1, 'https://ror.org/007cx7r28 Chizhou University ę± å·žå­¦é™¢'),
(100185, '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'),
(100186, 'https://ror.org/007h1qz76', 'no_lang_code', 1, 'https://ror.org/007h1qz76 Phramongkutklao Hospital'),
(100187, 'https://ror.org/007jd4588', 'en', 1, 'https://ror.org/007jd4588 Joint Programming Initiative Urban Europe'),
(100188, 'https://ror.org/007k3k434', 'en', 1, 'https://ror.org/007k3k434 Barnsley College'),
(100189, 'https://ror.org/007kf5222', 'pt', 1, 'https://ror.org/007kf5222 Centro UniversitƔrio FEI'),
(100190, 'https://ror.org/007pr2d48', 'en', 1, 'https://ror.org/007pr2d48 Uganda Christian University'),
(100191, 'https://ror.org/007ptm460', 'id', 1, 'https://ror.org/007ptm460 Badan Strategi Kebijakan Dalam Negeri'),
(100192, 'https://ror.org/007q8dx38', 'en', 1, 'https://ror.org/007q8dx38 Geological Materials Repository'),
(100193, 'https://ror.org/007v4hf75', 'en', 1, 'https://ror.org/007v4hf75 VIT-AP University'),
(100194, 'https://ror.org/007xqmx73', 'fr', 1, 'https://ror.org/007xqmx73'),
(100195, 'https://ror.org/007y6q934', 'fr', 1, 'https://ror.org/007y6q934 TƉLUQ University UniversitĆ© TƉLUQ'),
(100196, 'https://ror.org/007y9b339', 'fr', 1, 'https://ror.org/007y9b339 Centre de Recherche en Design'),
(100197, 'https://ror.org/007yfgf06', 'en', 1, 'https://ror.org/007yfgf06 Laboratorios de isla Naos Naos Marine and Molecular Laboratories'),
(100198, 'https://ror.org/007yrhe07', 'fr', 1, 'https://ror.org/007yrhe07 Laboratoire Interdisciplinaire Sciences, Innovations, SociƩtƩs'),
(100199, 'https://ror.org/007z4h433', 'fr', 1, 'https://ror.org/007z4h433 Centre lyonnais d''Histoire du droit et de la pensƩe politique'),
(100200, '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'),
(100201, 'https://ror.org/008102z14', 'en', 1, 'https://ror.org/008102z14 Chengdu Jincheng College ęˆéƒ½é”¦åŸŽå­¦é™¢'),
(100202, 'https://ror.org/0083mf965', 'en', 1, 'https://ror.org/0083mf965 Hudson Institute of Medical Research'),
(100203, 'https://ror.org/0084njv03', 'en', 1, 'https://ror.org/0084njv03 Texas A&M University – San Antonio'),
(100204, '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'),
(100205, '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'),
(100206, 'https://ror.org/0087n5v55', 'fr', 1, 'https://ror.org/0087n5v55 Centre d’histoire culturelle des sociĆ©tĆ©s contemporaines'),
(100207, 'https://ror.org/00898x434', 'pt', 1, 'https://ror.org/00898x434 Polƭcia JudiciƔria'),
(100208, 'https://ror.org/008a8z393', 'en', 1, 'https://ror.org/008a8z393 Dalian University of Foreign Languages å¤§čæžå¤–å›½čÆ­å­¦é™¢'),
(100209, 'https://ror.org/008atfr08', 'en', 1, 'https://ror.org/008atfr08 Unicorn University'),
(100210, 'https://ror.org/008axfh28', 'fr', 1, 'https://ror.org/008axfh28 National School of Architecture of Montpellier Ɖcole Nationale SupĆ©rieure d''Architecture Montpellier'),
(100211, 'https://ror.org/008bwpw24', 'fr', 1, 'https://ror.org/008bwpw24 Ecole d''IngƩnieurs de PURPAN Purpan Engineering School'),
(100212, 'https://ror.org/008e1sp22', 'fr', 1, 'https://ror.org/008e1sp22 HIPI -  Immunologie humaine, physiopathologie et immunithƩrapie HIPI - Human Immunology, Pathophysiology and Immunotherapy'),
(100213, 'https://ror.org/008e3hf02', 'en', 1, 'https://ror.org/008e3hf02 Central University of Finance and Economics äø­å¤®č“¢ē»å¤§å­¦'),
(100214, 'https://ror.org/008eg1b26', 'es', 1, 'https://ror.org/008eg1b26 Instituto Tecnológico Superior de Perote'),
(100215, 'https://ror.org/008khdx92', 'en', 1, 'https://ror.org/008khdx92 Comerica, Comerica (United States)'),
(100216, 'https://ror.org/008kngs41', 'en', 1, 'https://ror.org/008kngs41 St. Xavier''s University Kolkata'),
(100217, 'https://ror.org/008mb6p65', 'en', 0, 'https://ror.org/008mb6p65 Technology Research Institute of Osaka Prefecture å¤§é˜Ŗåŗœē«‹ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(100218, 'https://ror.org/008n78156', 'fr', 1, 'https://ror.org/008n78156 Laboratoire de neurosciences fonctionnelles et pathologies'),
(100219, 'https://ror.org/008n7pv89', 'en', 1, 'https://ror.org/008n7pv89 Prifysgol Plymouth University of Plymouth'),
(100220, 'https://ror.org/008p7mq56', 'fr', 1, 'https://ror.org/008p7mq56 Ɖquipe Monde Arabe MĆ©diterranĆ©e'),
(100221, 'https://ror.org/008pt4x48', 'fr', 0, 'https://ror.org/008pt4x48 Laboratoire des MatƩriaux Surfaces et ProcƩdƩs pour la Catalyse'),
(100222, 'https://ror.org/008rcjb67', 'fr', 1, 'https://ror.org/008rcjb67 RƩgie des transports mƩtropolitains'),
(100223, 'https://ror.org/008rmbt77', 'en', 1, 'https://ror.org/008rmbt77 Binghamton University Universidad de Binghamton'),
(100224, 'https://ror.org/008rwh029', 'en', 1, 'https://ror.org/008rwh029 Gene Therapy Laboratory Laboratoire de ThƩrapie GƩnique');
INSERT INTO `rors` VALUES
(100225, 'https://ror.org/008rwr521', 'en', 1, 'https://ror.org/008rwr521 Istanbul Health and Technology University İstanbul Sağlık ve Teknoloji Üniversitesi'),
(100226, 'https://ror.org/008rywf59', 'fr', 1, 'https://ror.org/008rywf59 Centre d''Ɖcologie Fonctionnelle et Ɖvolutive'),
(100227, 'https://ror.org/008s47275', 'en', 0, 'https://ror.org/008s47275 Pratt & Whitney Rocketdyne, Pratt & Whitney Rocketdyne (United States)'),
(100228, 'https://ror.org/008stv805', 'en', 1, 'https://ror.org/008stv805 University of the South Pacific'),
(100229, 'https://ror.org/008taqp83', 'en', 1, 'https://ror.org/008taqp83 Inter University Computation Centre ×ž×Ø×›×– החישובים הבין-××•× ×™×‘×Ø×”×™×˜××™'),
(100230, 'https://ror.org/008td3p62', 'en', 1, 'https://ror.org/008td3p62 Institute for Cosmic Ray Research ę±äŗ¬å¤§å­¦å®‡å®™ē·šē ”ē©¶ę‰€'),
(100231, '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'),
(100232, 'https://ror.org/008tr1381', 'en', 1, 'https://ror.org/008tr1381 Les Roches International School of Hotel Management'),
(100233, 'https://ror.org/008w1vb37', 'en', 1, 'https://ror.org/008w1vb37 Binzhou Medical University ę»Øå·žåŒ»å­¦é™¢'),
(100234, 'https://ror.org/008wzdf98', 'en', 1, 'https://ror.org/008wzdf98 Satakunnan Ammattikorkeakoulu Satakunta University of Applied Sciences'),
(100235, 'https://ror.org/008xnjf31', 'pt', 1, 'https://ror.org/008xnjf31 Ordem Hospitaleira de São João de Deus'),
(100236, 'https://ror.org/008zsd307', 'en', 0, 'https://ror.org/008zsd307 National Institute for Social Care and Health Research'),
(100237, 'https://ror.org/0090kax79', 'en', 1, 'https://ror.org/0090kax79 Auckland Institute of Studies Te Whare Wānanga ki Hato Herena'),
(100238, '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'),
(100239, 'https://ror.org/0093a8w51', 'en', 1, 'https://ror.org/0093a8w51 Blekinge Institute of Technology Blekinge tekniska hƶgskola Blekingen teknillinen korkeakoulu'),
(100240, 'https://ror.org/0093src13', 'en', 1, 'https://ror.org/0093src13 Hogeschool Leiden University of Applied Sciences Leiden'),
(100241, 'https://ror.org/009445d52', 'en', 1, 'https://ror.org/009445d52 Michigan Humanities Council'),
(100242, 'https://ror.org/0095dt357', 'fr', 1, 'https://ror.org/0095dt357'),
(100243, 'https://ror.org/00965ax52', 'en', 1, 'https://ror.org/00965ax52 Kyoto Institute of Technology 京都巄芸繊維大学'),
(100244, 'https://ror.org/00965mv68', 'es', 1, 'https://ror.org/00965mv68 Tecnológico Nacional de México Campus San Juan de los Ríos'),
(100245, 'https://ror.org/0096c7651', 'en', 1, 'https://ror.org/0096c7651 North China Institute of Science and Technology åŽåŒ—ē§‘ęŠ€å­¦é™¢'),
(100246, 'https://ror.org/0099j7t54', 'en', 1, 'https://ror.org/0099j7t54 Beijing Institute of Aeronautical Materials äø­å›½čˆŖå‘åŒ—äŗ¬čˆŖē©ŗęę–™ē ”ē©¶é™¢'),
(100247, 'https://ror.org/009avj582', 'en', 1, 'https://ror.org/009avj582 Oregon Health & Science University'),
(100248, 'https://ror.org/009b91528', 'fr', 1, 'https://ror.org/009b91528 Biologie MolƩculaire Structurale et Processus Infectieux'),
(100249, 'https://ror.org/009f78a75', 'en', 1, 'https://ror.org/009f78a75 National Portrait Gallery'),
(100250, 'https://ror.org/009jmsj64', 'fr', 1, 'https://ror.org/009jmsj64 Syndicat des SƩlectionneurs Avicoles et Aquacoles FranƧais'),
(100251, 'https://ror.org/009ps2x93', 'fr', 1, 'https://ror.org/009ps2x93 Département des Systèmes Basses Températures'),
(100252, 'https://ror.org/009ps8477', 'en', 1, 'https://ror.org/009ps8477 North Bohemian Museum in Liberec SeveročeskĆ© muzeum v Liberci'),
(100253, 'https://ror.org/009pwww24', 'no_lang_code', 1, 'https://ror.org/009pwww24 IFlyTek, IFlyTek (China) ē§‘å¤§č®Æé£žč‚”ä»½ęœ‰é™å…¬åø'),
(100254, 'https://ror.org/009q3yg92', 'en', 1, 'https://ror.org/009q3yg92 ColƔiste Mhuire Gan SmƔl Mary Immaculate College'),
(100255, 'https://ror.org/009twqt47', 'en', 1, 'https://ror.org/009twqt47 Official Development Assistance'),
(100256, 'https://ror.org/009wryk55', 'en', 1, 'https://ror.org/009wryk55 Czech Academy of Sciences, Institute of Hydrodynamics Ústav pro hydrodynamiku AV ČR, Ústav pro hydrodynamiku AV ČR, v. v. i., Ústav pro hydrodynamiku AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(100257, 'https://ror.org/00a19vs18', 'fr', 1, 'https://ror.org/00a19vs18 Culture et histoire dans l''espace roman'),
(100258, 'https://ror.org/00a1gne75', 'no_lang_code', 1, 'https://ror.org/00a1gne75 Teledyne Technologies (United States)'),
(100259, 'https://ror.org/00a2xv884', 'en', 1, 'https://ror.org/00a2xv884 Zhejiang University ęµ™ę±Ÿå¤§å­¦'),
(100260, 'https://ror.org/00a356y59', 'es', 1, 'https://ror.org/00a356y59 Sociedad Colombiana de Anestesiología y Reanimación'),
(100261, 'https://ror.org/00a5dxw64', 'fr', 1, 'https://ror.org/00a5dxw64 Ɖcole Nationale SupĆ©rieure d''Architecture de Normandie'),
(100262, 'https://ror.org/00a5pe906', 'en', 1, 'https://ror.org/00a5pe906 University of Western Macedonia UniversitĆ© de MacĆ©doine-Occidentale Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Δυτικής ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(100263, 'https://ror.org/00a6ram87', 'en', 1, 'https://ror.org/00a6ram87 Reed College'),
(100264, 'https://ror.org/00a6yph09', 'en', 1, 'https://ror.org/00a6yph09 University Hospital Ostrava'),
(100265, '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'),
(100266, 'https://ror.org/00a9eka65', 'en', 1, 'https://ror.org/00a9eka65 Fan va Texnologiyalar universiteti University of Science and Technologies'),
(100267, 'https://ror.org/00aad7q36', 'en', 1, 'https://ror.org/00aad7q36 Fort Lewis College'),
(100268, 'https://ror.org/00aamz256', 'en', 1, 'https://ror.org/00aamz256 Georgian Technical University Š“Ń€ŃƒŠ·ŠøŠ½ŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ÕŽÖ€Õ”Õ½ÕæÕ”Õ¶Õ« ÕæÕ„Õ­Õ¶Õ«ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ¢įƒ”įƒ„įƒœįƒ˜įƒ™įƒ£įƒ įƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(100269, 'https://ror.org/00abj3t43', 'en', 1, 'https://ror.org/00abj3t43 Somerset NHS Foundation Trust'),
(100270, 'https://ror.org/00ac5t267', 'no_lang_code', 0, 'https://ror.org/00ac5t267 Daimler (United Kingdom)'),
(100271, 'https://ror.org/00ad27c73', 'en', 1, 'https://ror.org/00ad27c73 A. Alikhanyan National Laboratory Ō±. Ō». Ō±Õ¬Õ«Õ­Õ”Õ¶ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ Õ¬Õ”Õ¢ÕøÖ€Õ”ÕæÕøÖ€Õ«Õ”'),
(100272, 'https://ror.org/00adasd53', 'en', 1, 'https://ror.org/00adasd53 Paris Centre for Quantum Technologies'),
(100273, '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'),
(100274, 'https://ror.org/00ajjta07', 'fr', 1, 'https://ror.org/00ajjta07 Institut des Sciences des Plantes de Paris Saclay'),
(100275, 'https://ror.org/00amdr662', 'en', 1, 'https://ror.org/00amdr662 Virgin Islands Humanities Council'),
(100276, 'https://ror.org/00aqh6z65', 'fr', 0, 'https://ror.org/00aqh6z65 Ɖcole Nationale d''Administration'),
(100277, 'https://ror.org/00aqyg778', 'en', 1, 'https://ror.org/00aqyg778 Kwalejin Ilimi ta St. Teresa St. Teresa''s College of Education'),
(100278, 'https://ror.org/00arwy491', 'en', 1, 'https://ror.org/00arwy491 HƓpital Royal Victoria Royal Victoria Hospital'),
(100279, 'https://ror.org/00avz5239', 'es', 1, 'https://ror.org/00avz5239 Universidad de Ciencias MƩdicas de Ciego de Ɓvila'),
(100280, 'https://ror.org/00awrf758', 'fr', 1, 'https://ror.org/00awrf758 Groupe de recherche sur les enjeux de la communication'),
(100281, 'https://ror.org/00axatv03', 'fr', 1, 'https://ror.org/00axatv03 Centre Gilles-Gaston Granger'),
(100282, 'https://ror.org/00ay9v204', 'en', 1, 'https://ror.org/00ay9v204 University of Shanghai for Science and Technology äøŠęµ·ē†å·„å¤§å­¦'),
(100283, 'https://ror.org/00aycez97', 'fr', 1, 'https://ror.org/00aycez97 Laboratoire HydroSciences Montpellier Laboratory HydroSciences Montpellier'),
(100284, 'https://ror.org/00ayhx656', 'en', 1, 'https://ror.org/00ayhx656 Prifysgol Sussex University of Sussex'),
(100285, 'https://ror.org/00az7j379', 'fr', 1, 'https://ror.org/00az7j379 Le Laboratoire des Maladies NeurodƩgƩnƩratives'),
(100286, 'https://ror.org/00b03qn53', 'en', 1, 'https://ror.org/00b03qn53 North Northamptonshire Council'),
(100287, 'https://ror.org/00b1zwh50', 'en', 1, 'https://ror.org/00b1zwh50 Society of British Neurological Surgeons'),
(100288, 'https://ror.org/00b25kb57', 'fr', 1, 'https://ror.org/00b25kb57 EDP Sciences'),
(100289, 'https://ror.org/00b3j7936', 'en', 1, 'https://ror.org/00b3j7936 Zhengzhou University of Science and Technology éƒ‘å·žē§‘ęŠ€å­¦é™¢'),
(100290, 'https://ror.org/00b4q1853', 'fr', 1, 'https://ror.org/00b4q1853 Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes'),
(100291, 'https://ror.org/00b7djk73', 'fr', 1, 'https://ror.org/00b7djk73 Centre de MathƩmatiques Laurent Schwartz Laurent Schwartz Center for Mathematics'),
(100292, 'https://ror.org/00b7rd089', 'en', 1, 'https://ror.org/00b7rd089 Institute of Management Technology, Dubai'),
(100293, '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'),
(100294, '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'),
(100295, 'https://ror.org/00batt813', 'en', 1, 'https://ror.org/00batt813 Dragomanov Ukrainian State University Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠœŠøŃ…Š°Š¹Š»Š° Драгоманова'),
(100296, 'https://ror.org/00bbtde36', 'fr', 1, 'https://ror.org/00bbtde36 Laboratoire Univers et ThƩories Laboratory Universe and Theories'),
(100297, 'https://ror.org/00bc02b32', 'en', 1, 'https://ror.org/00bc02b32 AutoZone, AutoZone (United States)'),
(100298, 'https://ror.org/00bc21d89', 'pt', 1, 'https://ror.org/00bc21d89 Amgen Biofarmaceutica Lda, Amgen Biofarmaceutica Lda (Portugal) Amgen Biopharmaceutical'),
(100299, 'https://ror.org/00bd1d647', 'en', 1, 'https://ror.org/00bd1d647 Beijing Wuzi University åŒ—äŗ¬ē‰©čµ„å­¦é™¢'),
(100300, 'https://ror.org/00bea5h57', 'fr', 1, 'https://ror.org/00bea5h57 Institute Mutualiste Montsouris'),
(100301, 'https://ror.org/00bf6bf92', 'en', 1, 'https://ror.org/00bf6bf92 Oncogenesis Stress Signaling'),
(100302, 'https://ror.org/00bf7t669', 'no_lang_code', 1, 'https://ror.org/00bf7t669 Ushahidi, Inc., Ushahidi, Inc. (Kenya)'),
(100303, 'https://ror.org/00bg4y631', 'fr', 1, 'https://ror.org/00bg4y631 AGIR Ć  dom'),
(100304, 'https://ror.org/00bge3r76', 'en', 1, 'https://ror.org/00bge3r76 The University of Law'),
(100305, 'https://ror.org/00bgk9508', 'en', 1, 'https://ror.org/00bgk9508 Politecnico di Torino Polytechnic University of Turin Ɖcole Polytechnique de Turin'),
(100306, 'https://ror.org/00bhwwh42', 'fr', 1, 'https://ror.org/00bhwwh42 Societies, Actors and Governement in Europe SociƩtƩs, Acteurs, Gouvernement en Europe'),
(100307, 'https://ror.org/00bj04t22', 'fr', 1, 'https://ror.org/00bj04t22 Sciences, Philosophie, HumanitƩs'),
(100308, 'https://ror.org/00bkaqj51', 'en', 0, 'https://ror.org/00bkaqj51 North Atlantic Treaty Organization Organisation du traitƩ de l''Atlantique Nord'),
(100309, 'https://ror.org/00bm1k740', 'no_lang_code', 1, 'https://ror.org/00bm1k740 Dechra Pharmaceuticals (United Kingdom)'),
(100310, 'https://ror.org/00bmj0a71', 'en', 1, 'https://ror.org/00bmj0a71 University of Greenwich'),
(100311, 'https://ror.org/00bnk2e50', 'en', 1, 'https://ror.org/00bnk2e50 Sultan Zainal Abidin University Universiti Sultan Zainal Abidin'),
(100312, 'https://ror.org/00bnsfw19', 'fr', 1, 'https://ror.org/00bnsfw19 Centre d''Investigation Clinique MĆØre-Enfant Necker Cochin Paris Centre'),
(100313, 'https://ror.org/00bq8vv83', 'fr', 1, 'https://ror.org/00bq8vv83 IMT Mines Albi'),
(100314, 'https://ror.org/00bqvf857', 'en', 1, 'https://ror.org/00bqvf857 Cardiff Metropolitan University Prifysgol Fetropolitan Caerdydd'),
(100315, 'https://ror.org/00btgsb62', 'en', 1, 'https://ror.org/00btgsb62 Galatasaray University Galatasaray Üniversitesi'),
(100316, 'https://ror.org/00bvhmc43', 'en', 1, 'https://ror.org/00bvhmc43 Centro Nacional de Investigaciones Oncológicas Spanish National Cancer Research Centre'),
(100317, 'https://ror.org/00bw3sa48', 'en', 1, 'https://ror.org/00bw3sa48 Sands'),
(100318, 'https://ror.org/00bw8d226', 'en', 1, 'https://ror.org/00bw8d226 National University of Malaysia Universiti Kebangsaan Malaysia é©¬ę„č„æäŗšå›½ę°‘å¤§å­¦'),
(100319, 'https://ror.org/00bwykg15', 'fr', 1, 'https://ror.org/00bwykg15 Centre d''Etude des Arts Contemporains'),
(100320, 'https://ror.org/00bxmqe50', 'en', 1, 'https://ror.org/00bxmqe50 National Institute of Academic Anaesthesia'),
(100321, 'https://ror.org/00by1q023', 'en', 1, 'https://ror.org/00by1q023 West Dean College of Arts and Conservation'),
(100322, 'https://ror.org/00byxdz40', 'fr', 1, 'https://ror.org/00byxdz40 Institut de Recherche Interdisciplinaire de Grenoble'),
(100323, 'https://ror.org/00c319182', 'en', 1, 'https://ror.org/00c319182 The Society of Occupational Medicine'),
(100324, 'https://ror.org/00c3ta789', 'fr', 1, 'https://ror.org/00c3ta789 Histoire Naturelle de l’Homme PrĆ©historique'),
(100325, 'https://ror.org/00c47tk97', 'de', 1, 'https://ror.org/00c47tk97 Vereinigung der DenkmalfachƤmter in den LƤndern'),
(100326, 'https://ror.org/00c4e7y75', 'en', 1, 'https://ror.org/00c4e7y75 UniversitĆ© d''Ɖtat de wichita Wichita State University'),
(100327, 'https://ror.org/00c62kq26', 'fr', 1, 'https://ror.org/00c62kq26 Institut MƩditerranƩen des Sciences de l''Information et de la Communication'),
(100328, 'https://ror.org/00ca3ps77', 'no_lang_code', 1, 'https://ror.org/00ca3ps77 August Storck KG, August Storck KG (Germany)'),
(100329, 'https://ror.org/00cbbq754', 'es', 1, 'https://ror.org/00cbbq754 Universidad Privada San Francisco de AsĆ­s, Universidad San Francisco de AsĆ­s'),
(100330, 'https://ror.org/00cc69h98', 'en', 1, 'https://ror.org/00cc69h98 Pennsylvania Humanities Council'),
(100331, 'https://ror.org/00ccaam24', 'fr', 1, 'https://ror.org/00ccaam24 Centre Interuniversitaire de Recherche en Education de Lille'),
(100332, 'https://ror.org/00cch2r34', 'fr', 1, 'https://ror.org/00cch2r34 Institut Rayonnement-MatiĆØre de Saclay Saclay Institute of Matter and Radiation'),
(100333, 'https://ror.org/00cctyp65', 'fr', 1, 'https://ror.org/00cctyp65 Laboratoire d''Economie, Finance, Management et Innovation'),
(100334, 'https://ror.org/00ccxmy30', 'es', 1, 'https://ror.org/00ccxmy30 National University of LanĆŗs Universidad Nacional de LanĆŗs'),
(100335, 'https://ror.org/00cd48p72', 'fr', 1, 'https://ror.org/00cd48p72 Campus Condorcet'),
(100336, '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'),
(100337, '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'),
(100338, 'https://ror.org/00cj7p615', 'en', 1, 'https://ror.org/00cj7p615 IDEMS International Community Interest Company'),
(100339, 'https://ror.org/00cm89a33', 'en', 1, 'https://ror.org/00cm89a33 University of Belgrade – Faculty of Veterinary Medicine Univerzitet u Beogradu – Fakultet veterinarske medicine, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ ветеринарске меГицине'),
(100340, 'https://ror.org/00cmmh940', 'fr', 1, 'https://ror.org/00cmmh940 Physiopathologie, mƩtabolisme et nutrition Physiopathology, metabolism and nutrition'),
(100341, 'https://ror.org/00cs28a13', 'en', 1, 'https://ror.org/00cs28a13 KISTI National Supercomputing Center źµ­ź°€ģŠˆķ¼ģ»“ķ“ØķŒ…ģ„¼ķ„°ėŠ”'),
(100342, 'https://ror.org/00cs79398', 'en', 1, 'https://ror.org/00cs79398 Japan Cardiovascular Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗ å¾Ŗē’°å™Øē—…ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(100343, 'https://ror.org/00cs91c30', 'pt', 1, 'https://ror.org/00cs91c30 Federal University of JataĆ­ Universidade Federal de JataĆ­'),
(100344, 'https://ror.org/00cta1n89', 'en', 1, 'https://ror.org/00cta1n89 Moholy-Nagy Művészeti Egyetem Moholy-Nagy University of Art and Design'),
(100345, 'https://ror.org/00ctmtz16', 'en', 1, 'https://ror.org/00ctmtz16 North Central Climate Adaptation Science Center'),
(100346, 'https://ror.org/00cy1zs35', 'en', 1, 'https://ror.org/00cy1zs35 Central University of Kerala ą“•ąµ‡ą“Øąµą“¦ąµą“° ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“², ą“•ąµ‡ą“°ą“³ą“‚'),
(100347, 'https://ror.org/00cybb798', 'en', 1, 'https://ror.org/00cybb798 Hospital Jihlava'),
(100348, 'https://ror.org/00cyydd11', 'en', 1, 'https://ror.org/00cyydd11 ItƤ-Suomen yliopisto University of Eastern Finland Ɩstra Finlands universitet'),
(100349, 'https://ror.org/00cz47042', 'en', 1, 'https://ror.org/00cz47042 National Museum of Natural History'),
(100350, 'https://ror.org/00d7mgz29', 'en', 1, 'https://ror.org/00d7mgz29 Paramount Global, Paramount Global (United States)'),
(100351, 'https://ror.org/00d7xrm67', 'en', 1, 'https://ror.org/00d7xrm67 Graz University of Technology Technische UniversitƤt Graz'),
(100352, 'https://ror.org/00d81yb34', 'en', 1, 'https://ror.org/00d81yb34 Victimology Society of Serbia ViktimoloŔko DruŔtvo Srbije'),
(100353, 'https://ror.org/00d8m2065', 'pt', 1, 'https://ror.org/00d8m2065 NAV, NAV (Portugal)'),
(100354, 'https://ror.org/00da5hk39', 'fr', 1, 'https://ror.org/00da5hk39 MATƩriaux et IngƩnierie MƩcanique'),
(100355, 'https://ror.org/00daj4111', 'en', 1, 'https://ror.org/00daj4111 Innovation Fund Denmark Innovationsfonden'),
(100356, 'https://ror.org/00dbd8b73', 'en', 1, 'https://ror.org/00dbd8b73 Dokuz Eylül University Dokuz Eylül Üniversitesi'),
(100357, 'https://ror.org/00dbv4g17', 'es', 1, 'https://ror.org/00dbv4g17 Instituto Tecnológico de ZitÔcuaro'),
(100358, 'https://ror.org/00dde9829', 'en', 1, 'https://ror.org/00dde9829 Vaasa University of Applied Sciences Vaasan ammattikorkeakoulu Vasa yrkeshƶgskola'),
(100359, 'https://ror.org/00dds0202', 'es', 1, 'https://ror.org/00dds0202 Instituto Tecnológico Superior de Cananea'),
(100360, 'https://ror.org/00df5yc52', 'en', 1, 'https://ror.org/00df5yc52 Beijing University of Chemical Technology åŒ—äŗ¬åŒ–å·„å¤§å­¦'),
(100361, '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'),
(100362, 'https://ror.org/00dj4dg56', 'pt', 1, 'https://ror.org/00dj4dg56 Instituto do Mar'),
(100363, 'https://ror.org/00dkkfj04', 'en', 1, 'https://ror.org/00dkkfj04 Arthur M. Sackler Gallery'),
(100364, 'https://ror.org/00dn43547', 'en', 1, 'https://ror.org/00dn43547 King Faisal University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„'),
(100365, 'https://ror.org/00dpnza76', 'en', 1, 'https://ror.org/00dpnza76 Finnish Food Authority Livsmedelsverket Ruokavirasto'),
(100366, 'https://ror.org/00dqry546', 'en', 1, 'https://ror.org/00dqry546 Batterjee Medical College'),
(100367, 'https://ror.org/00drkdp66', 'fr', 1, 'https://ror.org/00drkdp66 Pratiques et ThƩories de l''art contemporain'),
(100368, 'https://ror.org/00drqbm04', 'en', 1, 'https://ror.org/00drqbm04 Sheikh Saqr Laboratory'),
(100369, 'https://ror.org/00drt4541', 'fr', 1, 'https://ror.org/00drt4541 Centre d''Investigation Clinique Saint-Louis'),
(100370, 'https://ror.org/00dv28z40', 'en', 1, 'https://ror.org/00dv28z40 Nobel International Business School'),
(100371, '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'),
(100372, 'https://ror.org/00dz1eb96', 'en', 1, 'https://ror.org/00dz1eb96 Yaşar University Yaşar Üniversitesi'),
(100373, 'https://ror.org/00dzfx204', 'en', 1, 'https://ror.org/00dzfx204 Bilecik University Bilecik Şeyh Edebali University'),
(100374, 'https://ror.org/00e2ydp85', 'no_lang_code', 1, 'https://ror.org/00e2ydp85 NeuroInDx (United States)'),
(100375, 'https://ror.org/00e39jm60', 'no_lang_code', 1, 'https://ror.org/00e39jm60 Curio Stichting ROC West-Brabant'),
(100376, 'https://ror.org/00e3y0580', 'pt', 1, 'https://ror.org/00e3y0580 Instituto Ivoti'),
(100377, 'https://ror.org/00e4hrk88', 'en', 1, 'https://ror.org/00e4hrk88 Wuhan University of Science and Technology ę­¦ę±‰ē§‘ęŠ€å¤§å­¦'),
(100378, 'https://ror.org/00e59cf80', 'es', 1, 'https://ror.org/00e59cf80 Instituto Tecnológico Superior de Naranjos'),
(100379, 'https://ror.org/00eda4j42', 'en', 1, 'https://ror.org/00eda4j42 International Islamic University Chittagong ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ইসলামিক ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ, ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦®'),
(100380, 'https://ror.org/00ee9xb13', 'en', 1, 'https://ror.org/00ee9xb13 Fafo Foundation'),
(100381, 'https://ror.org/00ejm2g54', 'en', 1, 'https://ror.org/00ejm2g54 California State University, Stanislaus UniversitƩ d''Ʃtat de californie Ơ stanislaus'),
(100382, 'https://ror.org/00ejmq608', 'fr', 1, 'https://ror.org/00ejmq608 Centre d''Investigation Clinique BiothƩrapies Necker'),
(100383, 'https://ror.org/00ek2rf42', 'en', 1, 'https://ror.org/00ek2rf42 Australian National Soil Archive'),
(100384, 'https://ror.org/00embpk79', 'en', 1, 'https://ror.org/00embpk79 East West College of Natural Medicine'),
(100385, 'https://ror.org/00enct420', 'fr', 1, 'https://ror.org/00enct420 Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux'),
(100386, 'https://ror.org/00enhv193', 'en', 0, 'https://ror.org/00enhv193 NFDI4Ing, National Research Data Infrastructure for Engineering Sciences Nationale Forschungsdateninfrastruktur für die Ingenieurwissenschaften'),
(100387, 'https://ror.org/00eqbnd64', 'en', 1, 'https://ror.org/00eqbnd64 Daejeon Woori Hospital ėŒ€ģ „ģš°ė¦¬ė³‘ģ›'),
(100388, 'https://ror.org/00erb9339', 'fr', 1, 'https://ror.org/00erb9339 Centre d''Ʃtudes des relations et des contacts linguistiques et littƩraires'),
(100389, 'https://ror.org/00etztf89', 'en', 1, 'https://ror.org/00etztf89 Holy Child College of Education'),
(100390, 'https://ror.org/00ex3jm11', 'fr', 1, 'https://ror.org/00ex3jm11 Cohortes ƩpidƩmiologiques en population'),
(100391, 'https://ror.org/00ey4m741', 'pt', 1, 'https://ror.org/00ey4m741 Centro Hospitalar Leiria EPE'),
(100392, 'https://ror.org/00f003n59', 'no_lang_code', 1, 'https://ror.org/00f003n59 Wolfram Research (United Kingdom)'),
(100393, 'https://ror.org/00f0z8g04', 'en', 1, 'https://ror.org/00f0z8g04 Guangdong Technology College å¹æäøœē†å·„å­¦é™¢'),
(100394, 'https://ror.org/00f1zfq44', 'en', 1, 'https://ror.org/00f1zfq44 Central South University äø­å—å¤§å­¦'),
(100395, 'https://ror.org/00f2yqf98', 'de', 1, 'https://ror.org/00f2yqf98 Hannover Medical School Medizinische Hochschule Hannover'),
(100396, 'https://ror.org/00f5hap04', 'fr', 1, 'https://ror.org/00f5hap04 Acteurs, Ressources et Territoires dans le DƩveloppement'),
(100397, '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'),
(100398, 'https://ror.org/00f6f7930', 'en', 1, 'https://ror.org/00f6f7930 IFOAM – Organics International'),
(100399, 'https://ror.org/00f7yqx35', 'en', 1, 'https://ror.org/00f7yqx35 Federal Polytechnic, Mubi Kwalejin Kimiyya da Fasaha ta Tarayya, Mubi'),
(100400, 'https://ror.org/00f809463', 'en', 1, 'https://ror.org/00f809463 Institute for Advanced Study'),
(100401, 'https://ror.org/00f9tz983', 'en', 1, 'https://ror.org/00f9tz983 Nationaal instituut voor Subatomaire Fysica National Institute for Subatomic Physics'),
(100402, 'https://ror.org/00fbvqs70', 'en', 1, 'https://ror.org/00fbvqs70 Singapore Advanced Research and Education Network'),
(100403, 'https://ror.org/00fc1qt65', 'en', 1, 'https://ror.org/00fc1qt65 Bucknell University'),
(100404, 'https://ror.org/00fdzcx89', 'en', 1, 'https://ror.org/00fdzcx89 Qingdao City University é’å²›åŸŽåø‚å­¦é™¢'),
(100405, 'https://ror.org/00fe1xp94', 'en', 1, 'https://ror.org/00fe1xp94 Alfred State College'),
(100406, 'https://ror.org/00ffxmn68', 'en', 1, 'https://ror.org/00ffxmn68 Fox Corporation, Fox Corporation (United States)'),
(100407, 'https://ror.org/00fgwdb16', 'pt', 1, 'https://ror.org/00fgwdb16 Instituto de Nanoestruturas Nanomodelação e Nanofabricação'),
(100408, 'https://ror.org/00fh1dw28', 'fr', 1, 'https://ror.org/00fh1dw28 Laboratoire de GƩnie Civil et GƩo Environnement'),
(100409, 'https://ror.org/00fj73d18', 'en', 1, 'https://ror.org/00fj73d18 University of Texas Institute for Geophysics'),
(100410, 'https://ror.org/00fjt5570', 'en', 1, 'https://ror.org/00fjt5570 Best Buy, Best Buy (United States)'),
(100411, 'https://ror.org/00fjzqj15', 'en', 1, 'https://ror.org/00fjzqj15 Shanghai Institute of Technology äøŠęµ·åŗ”ē”ØęŠ€ęœÆå¤§å­¦'),
(100412, 'https://ror.org/00fk31757', 'en', 1, 'https://ror.org/00fk31757 Xinjiang University of Finance and Economics ę–°ē–†č“¢ē»å¤§å­¦'),
(100413, 'https://ror.org/00fn7gb05', 'en', 1, 'https://ror.org/00fn7gb05 UniversitƩ wilfrid-laurier Wilfrid Laurier University'),
(100414, 'https://ror.org/00fqyhf62', 'en', 1, 'https://ror.org/00fqyhf62 Harris–Stowe State University'),
(100415, 'https://ror.org/00ft2kj97', 'en', 1, 'https://ror.org/00ft2kj97 Sichuan Medical Association å››å·ēœåŒ»å­¦ä¼š'),
(100416, 'https://ror.org/00fvwqz75', 'en', 1, 'https://ror.org/00fvwqz75 Baranavichy State University'),
(100417, 'https://ror.org/00fw8bp86', 'fr', 1, 'https://ror.org/00fw8bp86 Center for Particle Physics of Marseilles Centre de physique des particules de Marseille'),
(100418, 'https://ror.org/00fxk9d32', 'pt', 1, 'https://ror.org/00fxk9d32 Hospital São João de Deus'),
(100419, 'https://ror.org/00fxxw604', 'en', 1, 'https://ror.org/00fxxw604 Ministry of Culture'),
(100420, 'https://ror.org/00fy5v859', 'en', 1, 'https://ror.org/00fy5v859 Hogeschool West-Vlaanderen University College West Flanders'),
(100421, 'https://ror.org/00g1d7b60', 'en', 1, 'https://ror.org/00g1d7b60 Indiana University Melvin and Bren Simon Comprehensive Cancer Center'),
(100422, 'https://ror.org/00g1dnz14', 'en', 1, 'https://ror.org/00g1dnz14 University of Belgrade – Faculty of Economics and Business Univerzitet u Beogradu – Ekonomski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Економски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(100423, 'https://ror.org/00g241p78', 'en', 1, 'https://ror.org/00g241p78 Istanbul Topkapi University İstanbul Topkapı Üniversitesi'),
(100424, 'https://ror.org/00g2j5111', 'en', 1, 'https://ror.org/00g2j5111 Institut Pasteur in Ho Chi Minh City'),
(100425, 'https://ror.org/00g2ypp58', 'en', 1, 'https://ror.org/00g2ypp58 Dalian University å¤§čæžå¤§å­¦'),
(100426, 'https://ror.org/00g32ep81', 'fr', 1, 'https://ror.org/00g32ep81 Centre d''Histoire Judiciaire'),
(100427, 'https://ror.org/00g7a7c91', 'en', 1, 'https://ror.org/00g7a7c91 SUNY Orange'),
(100428, 'https://ror.org/00g7qtt96', 'en', 1, 'https://ror.org/00g7qtt96 Institute for Social and Economic Change'),
(100429, 'https://ror.org/00g7v8090', 'en', 1, 'https://ror.org/00g7v8090 Akwa Ibom State Polytechnic'),
(100430, 'https://ror.org/00g7vvf64', 'fr', 1, 'https://ror.org/00g7vvf64 Maison de la Recherche en Sciences Humaines Social Sciences Research House'),
(100431, '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'),
(100432, 'https://ror.org/00g8zjy95', 'en', 1, 'https://ror.org/00g8zjy95 Bergen School of Architecture'),
(100433, 'https://ror.org/00ga81413', 'en', 1, 'https://ror.org/00ga81413 Smithsonian Marine Station'),
(100434, 'https://ror.org/00gcgqv39', 'en', 1, 'https://ror.org/00gcgqv39 Eskisehir Technical University Eskişehir Teknik Üniversitesi'),
(100435, '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'),
(100436, 'https://ror.org/00gdtta79', 'fr', 1, 'https://ror.org/00gdtta79 Formal Method Laboratory Laboratoire MƩthodes Formelles'),
(100437, 'https://ror.org/00genbz89', 'fr', 1, 'https://ror.org/00genbz89 MƩthodes et Histoire de l''architecture'),
(100438, 'https://ror.org/00gg5zj35', 'en', 1, 'https://ror.org/00gg5zj35 PLA Rocket Force University of Engineering 中国人民解放军火箭军巄程大学'),
(100439, 'https://ror.org/00ggqtz82', 'fr', 1, 'https://ror.org/00ggqtz82 Institut FranƧais de la Mer Oceanographic Institute'),
(100440, 'https://ror.org/00ghmzn75', 'fr', 1, 'https://ror.org/00ghmzn75 Pharmacologie et Ʃvaluation thƩrapeutiques chez l''enfant et la femme enceinte'),
(100441, 'https://ror.org/00gj33s30', 'fr', 1, 'https://ror.org/00gj33s30 Institut de Chimie et Biochimie MolƩculaires et SupramolƩculaires'),
(100442, 'https://ror.org/00gj7r351', 'fr', 1, 'https://ror.org/00gj7r351 Laboratoire écologie, évolution, interactions des systèmes amazoniens'),
(100443, 'https://ror.org/00gngwf81', 'es', 1, 'https://ror.org/00gngwf81 Instituto de Investigaciones en Desarrollo Urbano, TecnologĆ­a y Vivienda'),
(100444, 'https://ror.org/00gpmb873', 'de', 1, 'https://ror.org/00gpmb873 Canton of St. Gallen-Hospital Kantonsspital St. Gallen'),
(100445, 'https://ror.org/00gqzks48', 'en', 1, 'https://ror.org/00gqzks48 Dr. B. R. Ambedkar Open University UniversitĆ© ouverte de l''andhra pradesh ą¤†ą¤Øą„ą¤§ą„ą¤°ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ ą¤–ą„ą¤²ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(100446, 'https://ror.org/00gt5xe03', 'en', 1, 'https://ror.org/00gt5xe03 Hartford Hospital'),
(100447, 'https://ror.org/00gtjrz72', 'it', 1, 'https://ror.org/00gtjrz72 Fondazione Cassa di Risparmio di Roma, Fondazione Roma'),
(100448, 'https://ror.org/00gx3j908', 'en', 1, 'https://ror.org/00gx3j908 Northwest Normal University č„æåŒ—åøˆčŒƒå¤§å­¦'),
(100449, 'https://ror.org/00gz95c92', 'en', 1, 'https://ror.org/00gz95c92 Selkirk College'),
(100450, 'https://ror.org/00h01ex42', 'en', 1, 'https://ror.org/00h01ex42 Alaska Center for Energy and Power'),
(100451, 'https://ror.org/00h2vm590', 'en', 1, 'https://ror.org/00h2vm590 Universiteit van Wes-Kaapland University of the Western Cape'),
(100452, 'https://ror.org/00h438112', 'en', 1, 'https://ror.org/00h438112 African Reproducibility Network'),
(100453, 'https://ror.org/00h43mz31', 'en', 1, 'https://ror.org/00h43mz31 Maryland Humanities Council'),
(100454, 'https://ror.org/00h533452', 'en', 1, 'https://ror.org/00h533452 Institut de cardiologie de l''UniversitƩ d''Ottawa Ottawa Heart Institute'),
(100455, 'https://ror.org/00h5hvq79', 'es', 1, 'https://ror.org/00h5hvq79 INESPASA, INESPASA (Spain)'),
(100456, 'https://ror.org/00h6set76', 'en', 1, 'https://ror.org/00h6set76 Universidad Estatal de Utah UniversitĆ© d''Ɖtat de l''utah Utah State University'),
(100457, 'https://ror.org/00h8nar58', 'pl', 1, 'https://ror.org/00h8nar58 Akademia Pomorska w Słupsku'),
(100458, 'https://ror.org/00h8wdb33', 'en', 1, 'https://ror.org/00h8wdb33 Federal Polytechnic, Bauchi'),
(100459, 'https://ror.org/00hbd6420', 'no_lang_code', 1, 'https://ror.org/00hbd6420 Spotify, Spotify (Sweden)'),
(100460, 'https://ror.org/00hdhxd58', 'en', 1, 'https://ror.org/00hdhxd58 European Astronaut Centre EuropƤisches Astronautenzentrum'),
(100461, 'https://ror.org/00hggtk70', 'pt', 1, 'https://ror.org/00hggtk70 Instituto de Desenvolvimento Social'),
(100462, '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'),
(100463, 'https://ror.org/00hjr9f41', 'en', 1, 'https://ror.org/00hjr9f41 Mott Community College'),
(100464, 'https://ror.org/00hjz7x27', 'en', 1, 'https://ror.org/00hjz7x27 Georgetown University Medical Center'),
(100465, 'https://ror.org/00hn7w693', 'en', 1, 'https://ror.org/00hn7w693 Southwest Jiaotong University č„æå—äŗ¤é€šå¤§å­¦'),
(100466, 'https://ror.org/00hwfn059', 'en', 1, 'https://ror.org/00hwfn059 College of Technological Studies'),
(100467, 'https://ror.org/00hxk7s55', 'en', 1, 'https://ror.org/00hxk7s55 Lietuvos sporto universitetas Lithuanian Sports University'),
(100468, 'https://ror.org/00hxwjw54', 'pt', 0, 'https://ror.org/00hxwjw54 Centro UniversitƔrio Internacional UNINTER'),
(100469, 'https://ror.org/00hy22508', 'fr', 1, 'https://ror.org/00hy22508 DƩlƩgation Paris Michel-Ange'),
(100470, 'https://ror.org/00hy87220', 'en', 1, 'https://ror.org/00hy87220 Henan Academy of Sciences ę²³å—ēœē§‘å­¦é™¢'),
(100471, 'https://ror.org/00hz02a80', 'fr', 1, 'https://ror.org/00hz02a80 AdipositƩ MƩdullaire et Os Marrow Adiposity & Bone Lab'),
(100472, 'https://ror.org/00j32a689', 'en', 0, 'https://ror.org/00j32a689 Vermont Technical College'),
(100473, 'https://ror.org/00j387684', 'en', 1, 'https://ror.org/00j387684 Jefferson Community College'),
(100474, 'https://ror.org/00j4fc191', 'en', 1, 'https://ror.org/00j4fc191 Quang Nam University'),
(100475, 'https://ror.org/00j52pq61', 'en', 1, 'https://ror.org/00j52pq61 New York State College of Agriculture & Life Sciences'),
(100476, 'https://ror.org/00j5bqf83', 'no_lang_code', 1, 'https://ror.org/00j5bqf83 Nucor, Nucor (United States)'),
(100477, 'https://ror.org/00j5dj575', 'fr', 1, 'https://ror.org/00j5dj575 Institut thƩmatique Bases molƩculaires et structurales du vivant'),
(100478, 'https://ror.org/00j5kjh37', 'en', 1, 'https://ror.org/00j5kjh37 Cor Jesu College'),
(100479, 'https://ror.org/00j65mz88', 'id', 1, 'https://ror.org/00j65mz88 Universitas Amikom Yogyakarta'),
(100480, 'https://ror.org/00j8x3x80', 'en', 1, 'https://ror.org/00j8x3x80 FSU Coastal and Marine Laboratory'),
(100481, 'https://ror.org/00jaxbw05', 'pt', 1, 'https://ror.org/00jaxbw05 Instituto PolitƩcnico da Maia'),
(100482, 'https://ror.org/00jcbwz30', 'en', 1, 'https://ror.org/00jcbwz30 Huntington Ingalls Industries, Huntington Ingalls Industries (United States)'),
(100483, 'https://ror.org/00jdr0662', 'en', 1, 'https://ror.org/00jdr0662 Beijing Foreign Studies University åŒ—äŗ¬å¤–å›½čÆ­å¤§å­¦'),
(100484, 'https://ror.org/00je5w718', 'en', 1, 'https://ror.org/00je5w718 Police Staff College পুলিশ ą¦øą§ą¦Ÿą¦¾ą¦« ą¦•ą¦²ą§‡ą¦œ'),
(100485, 'https://ror.org/00je8sn69', 'en', 1, 'https://ror.org/00je8sn69 Rocket Force Sergeant School äø­å›½äŗŗę°‘č§£ę”¾å†›ē«ē®­å†›å£«å®˜å­¦ę ”'),
(100486, 'https://ror.org/00jeqjx33', 'en', 1, 'https://ror.org/00jeqjx33 Kennesaw State University UniversitĆ© d''Ɖtat de kennesaw'),
(100487, 'https://ror.org/00jga3n25', 'pt', 1, 'https://ror.org/00jga3n25 Associação De Conservação Do Ambiente E Desenvolvimento Integrado Rural'),
(100488, 'https://ror.org/00jga9g46', 'tr', 1, 'https://ror.org/00jga9g46 Mi̇lli̇ Eği̇ti̇m Bakanliği'),
(100489, 'https://ror.org/00jgk9c55', 'en', 1, 'https://ror.org/00jgk9c55 Monash University European Research Foundation ETS'),
(100490, 'https://ror.org/00jj62164', 'fr', 1, 'https://ror.org/00jj62164 Centre de Recherche et de Documentation sur l''OcƩanie (CREDO)'),
(100491, 'https://ror.org/00jjkh886', 'en', 1, 'https://ror.org/00jjkh886 Zhoukou Normal University'),
(100492, 'https://ror.org/00jp4qe04', 'fr', 1, 'https://ror.org/00jp4qe04 French Statistical Society SociƩtƩ FranƧaise de Statistique'),
(100493, 'https://ror.org/00jp5dw81', 'fr', 1, 'https://ror.org/00jp5dw81 RadiothƩrapie MolƩculaire et Innovation ThƩrapeutique'),
(100494, 'https://ror.org/00jphth26', 'pt', 1, 'https://ror.org/00jphth26 Instituto PortuguĆŖs de Reumatologia'),
(100495, 'https://ror.org/00jr65m43', 'en', 0, 'https://ror.org/00jr65m43 Institute of Plant Molecular Biology'),
(100496, 'https://ror.org/00jrpyg10', 'pt', 1, 'https://ror.org/00jrpyg10 Atlantic University Atlântica Instituto UniversitÔrio'),
(100497, 'https://ror.org/00js3aw79', 'en', 1, 'https://ror.org/00js3aw79 Jilin University å‰ęž—å¤§å­¦'),
(100498, 'https://ror.org/00jsgkx16', 'en', 1, 'https://ror.org/00jsgkx16 Lille School of Management Research Center'),
(100499, 'https://ror.org/00jsr1632', 'en', 1, 'https://ror.org/00jsr1632 University of Providence'),
(100500, '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'),
(100501, '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'),
(100502, 'https://ror.org/00jvxk918', 'no_lang_code', 1, 'https://ror.org/00jvxk918 Quantum Motion Technologies (United Kingdom)'),
(100503, 'https://ror.org/00jxe7243', 'fr', 1, 'https://ror.org/00jxe7243 Laboratoire Physiologie Cellulaire & VƩgƩtale, Laboratoire de Physiologie Cellulaire VƩgƩtale'),
(100504, 'https://ror.org/00jyr0d86', 'en', 1, 'https://ror.org/00jyr0d86 Departamento de Seguridad Nacional de los Estados Unidos United States Department of Homeland Security'),
(100505, 'https://ror.org/00jz07n34', 'en', 1, 'https://ror.org/00jz07n34 South Petherton Community Hospital'),
(100506, 'https://ror.org/00jzv1t04', 'fr', 1, 'https://ror.org/00jzv1t04 Catholic University of the West UniversitƩ catholique de l''ouest'),
(100507, 'https://ror.org/00jzwgz36', 'en', 1, 'https://ror.org/00jzwgz36 Koç University Koç Üniversitesi Qoç Universiteti'),
(100508, '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'),
(100509, 'https://ror.org/00k2m1311', 'fr', 1, 'https://ror.org/00k2m1311 Centre de recherche Droit et territoire'),
(100510, 'https://ror.org/00k3ayt93', 'en', 1, 'https://ror.org/00k3ayt93 William Paterson University'),
(100511, 'https://ror.org/00k3ph542', 'fr', 1, 'https://ror.org/00k3ph542 ComplexitƩ, Innovation et ActivitƩs Motrices et Sportives'),
(100512, 'https://ror.org/00k6njn28', 'ca', 1, 'https://ror.org/00k6njn28 Institut d''Estudis Espacials de Catalunya Institute of Space Studies of Catalonia'),
(100513, 'https://ror.org/00k6tx165', 'en', 1, 'https://ror.org/00k6tx165 Ball State University Universidad Estatal Ball'),
(100514, 'https://ror.org/00k8f0571', 'en', 1, 'https://ror.org/00k8f0571 Federal College of Forestry, Ibadan'),
(100515, 'https://ror.org/00k93wm15', 'pt', 1, 'https://ror.org/00k93wm15 Academia de Engenharia'),
(100516, 'https://ror.org/00k9hfk65', 'en', 1, 'https://ror.org/00k9hfk65 American Society of Neuroradiology'),
(100517, 'https://ror.org/00ka0b792', 'es', 1, 'https://ror.org/00ka0b792 Universidad del Chubut University of Chubut'),
(100518, 'https://ror.org/00kcctq66', 'no_lang_code', 1, 'https://ror.org/00kcctq66 Saint Petersburg Pasteur Institute Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии им. ŠŸŠ°ŃŃ‚ŠµŃ€Š°'),
(100519, 'https://ror.org/00kdfr768', 'id', 1, 'https://ror.org/00kdfr768 Sekolah Tinggi Ilmu Hukum Sumpah Pemuda Sumpah Pemuda School of Law'),
(100520, 'https://ror.org/00kgrkn83', 'en', 1, 'https://ror.org/00kgrkn83 University of Lucerne UniversitƠ di Lucerna UniversitƤt Luzern UniversitƩ de Lucerne'),
(100521, 'https://ror.org/00kjer521', 'fr', 1, 'https://ror.org/00kjer521 Evolution et ingénierie de systèmes dynamiques'),
(100522, 'https://ror.org/00kk89y84', 'fr', 1, 'https://ror.org/00kk89y84 Ɖcologie, SystĆ©matique et Ɖvolution'),
(100523, 'https://ror.org/00kmnzb51', 'en', 1, 'https://ror.org/00kmnzb51 Institut de recherche et d’études autochtones Research Institute for Indigenous studies'),
(100524, 'https://ror.org/00kn4eb29', 'fr', 1, 'https://ror.org/00kn4eb29 CEA DAM Ǝle-de-France'),
(100525, 'https://ror.org/00knds749', 'en', 1, 'https://ror.org/00knds749 Himachal Pradesh National Law University, Shimla'),
(100526, 'https://ror.org/00kqccw49', 'en', 1, 'https://ror.org/00kqccw49 New York Council for the Humanities'),
(100527, 'https://ror.org/00krbh354', 'en', 1, 'https://ror.org/00krbh354 Jan Kochanowski University Uniwersytet Jana Kochanowskiego w Kielcach'),
(100528, 'https://ror.org/00ksf6k80', 'en', 1, 'https://ror.org/00ksf6k80 Darden Restaurants, Darden Restaurants (United States)'),
(100529, 'https://ror.org/00kvxt616', 'en', 1, 'https://ror.org/00kvxt616 Hajee Mohammad Danesh Science and Technology University ą¦¹ą¦¾ą¦œą§€ ą¦®ą§‹ą¦¹ą¦¾ą¦®ą§ą¦®ą¦¦ দানেশ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(100530, 'https://ror.org/00kw1sm04', 'en', 1, 'https://ror.org/00kw1sm04 Agence Spatiale EuropƩenne Agencia Espacial Europea European Space Astronomy Centre'),
(100531, 'https://ror.org/00kx1jb78', 'en', 1, 'https://ror.org/00kx1jb78 Temple University Universidad de Temple'),
(100532, 'https://ror.org/00kxafy15', 'en', 1, 'https://ror.org/00kxafy15 Mody University of Science and Technology'),
(100533, 'https://ror.org/00kzhpn90', 'en', 1, 'https://ror.org/00kzhpn90 Keycorp, Keycorp (United States)'),
(100534, '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Ʃ'),
(100535, 'https://ror.org/00m0asz87', 'id', 1, 'https://ror.org/00m0asz87 Politeknik Negeri Batam'),
(100536, 'https://ror.org/00m0j3d84', 'no_lang_code', 0, 'https://ror.org/00m0j3d84 Daimler (Germany)'),
(100537, 'https://ror.org/00m2zh467', 'no_lang_code', 1, 'https://ror.org/00m2zh467 arXiv'),
(100538, 'https://ror.org/00m3mb357', 'en', 1, 'https://ror.org/00m3mb357 Image and Pervasive Access Laboratory'),
(100539, 'https://ror.org/00m4rxj18', 'fr', 1, 'https://ror.org/00m4rxj18'),
(100540, 'https://ror.org/00m587853', 'fr', 1, 'https://ror.org/00m587853 MatƩriaux DivisƩs, Interfaces, RƩactivitƩ, Electrochimie'),
(100541, 'https://ror.org/00m7gmp97', 'en', 1, 'https://ror.org/00m7gmp97 Los Rios Community College District'),
(100542, 'https://ror.org/00m7zca23', 'fr', 1, 'https://ror.org/00m7zca23 Science et IngƩnierie des MatƩriaux et ProcƩdƩs'),
(100543, 'https://ror.org/00m9dvt07', 'pt', 1, 'https://ror.org/00m9dvt07 Teva Portugal, Teva Portugal (Portugal)'),
(100544, 'https://ror.org/00m9qza88', 'en', 1, 'https://ror.org/00m9qza88 Pathogens Host Arthropod Vectors Interfaces'),
(100545, 'https://ror.org/00ma0mg56', 'en', 1, 'https://ror.org/00ma0mg56 NHS Grampian'),
(100546, 'https://ror.org/00mas2304', 'en', 1, 'https://ror.org/00mas2304 Guangxi Logistics Vocational and Technical College å¹æč„æē‰©ęµčŒäøšęŠ€ęœÆå­¦é™¢'),
(100547, 'https://ror.org/00mbeqy34', 'en', 1, 'https://ror.org/00mbeqy34 Cabio Biotech (Wuhan) Biotechnology Co. Ltd, Cabio Biotech (Wuhan) Biotechnology Co. Ltd (China) å˜‰åæ…ä¼˜ē”Ÿē‰©ęŠ€ęœÆ(ꭦ걉)č‚”ä»½ęœ‰é™å…¬åø'),
(100548, 'https://ror.org/00mfc1254', 'fr', 1, 'https://ror.org/00mfc1254 Centre de Recherches Psychanalyse, MƩdecine et SociƩtƩ'),
(100549, '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'),
(100550, 'https://ror.org/00mgd1d10', 'fr', 1, 'https://ror.org/00mgd1d10 Laboratoire Paragraphe'),
(100551, 'https://ror.org/00mgfk810', 'en', 1, 'https://ror.org/00mgfk810 The Navigation Fund'),
(100552, 'https://ror.org/00mghmd60', 'fr', 1, 'https://ror.org/00mghmd60 Centre Lillois d''Etudes et de Recherches Sociologiques et Economiques'),
(100553, 'https://ror.org/00mgjz918', 'pt', 1, 'https://ror.org/00mgjz918 Instituto Superior de Angola'),
(100554, 'https://ror.org/00mj5bc69', 'en', 1, 'https://ror.org/00mj5bc69 Institute for Telecommunication Sciences'),
(100555, 'https://ror.org/00mjdtw98', 'en', 1, 'https://ror.org/00mjdtw98 California State University, Monterey Bay'),
(100556, 'https://ror.org/00mmgvh45', 'fr', 1, 'https://ror.org/00mmgvh45 Institut de Droit EuropƩen des Droits de l''Homme'),
(100557, 'https://ror.org/00mpnj452', 'en', 1, 'https://ror.org/00mpnj452 Freedom''s Wings International'),
(100558, 'https://ror.org/00mpxgs49', 'fr', 1, 'https://ror.org/00mpxgs49 Centre d’histoire de Sciences Po Sciences Po Centre for History'),
(100559, 'https://ror.org/00mpz5a50', 'en', 1, 'https://ror.org/00mpz5a50 Quinnipiac University'),
(100560, 'https://ror.org/00mrcf172', 'pt', 1, 'https://ror.org/00mrcf172 Santa Casa de Montes Claros - Irmandade Nossa Senhora das MercĆŖs'),
(100561, 'https://ror.org/00mskh452', 'sv', 1, 'https://ror.org/00mskh452 ƅForsk'),
(100562, 'https://ror.org/00mvj8034', 'en', 1, 'https://ror.org/00mvj8034 International Institute of Health Management Research, Delhi'),
(100563, 'https://ror.org/00mwds915', 'en', 1, 'https://ror.org/00mwds915 Chaohu University 巢湖学院'),
(100564, 'https://ror.org/00mwm0e05', 'es', 1, 'https://ror.org/00mwm0e05 Polytechnic University of Sinaloa Universidad PolitƩcnica de Sinaloa'),
(100565, 'https://ror.org/00mwq1g96', 'en', 1, 'https://ror.org/00mwq1g96 Hartford Financial Services, Hartford Financial Services (United States)'),
(100566, 'https://ror.org/00mx91s63', 'en', 1, 'https://ror.org/00mx91s63 Catholic University of EichstƤtt-Ingolstadt Katholische UniversitƤt EichstƤtt-Ingolstadt'),
(100567, 'https://ror.org/00n16p182', 'no_lang_code', 1, 'https://ror.org/00n16p182 Martin Marietta Materials, Martin Marietta Materials (United States)'),
(100568, 'https://ror.org/00n4xrr40', 'es', 1, 'https://ror.org/00n4xrr40 Institución Universitaria Centro de Estudios Superiores María Goretti'),
(100569, 'https://ror.org/00n6tv709', 'en', 1, 'https://ror.org/00n6tv709 FBS, Inc., Guidedwave, Guidedwave (United States)'),
(100570, 'https://ror.org/00n7ppt67', 'en', 1, 'https://ror.org/00n7ppt67 Sawa University Ų¬Ų§Ł…Ų¹Ų© ساوة'),
(100571, 'https://ror.org/00n90tt57', 'fr', 1, 'https://ror.org/00n90tt57 Institut Toulousain des Maladies Infectieuses et Inflammatoires'),
(100572, 'https://ror.org/00nb39k71', 'en', 1, 'https://ror.org/00nb39k71 University of French Guiana UniversitƩ de Guyane'),
(100573, 'https://ror.org/00nb55479', 'es', 1, 'https://ror.org/00nb55479 Universidad Tecnológica de Manzanillo'),
(100574, 'https://ror.org/00nbhg292', 'fr', 1, 'https://ror.org/00nbhg292 Lieux, IdentitƩs, eSpaces, ActivitƩs'),
(100575, 'https://ror.org/00nbx9b54', 'fr', 1, 'https://ror.org/00nbx9b54 Institut des Sciences de la MƩcanique et Applications Industrielles'),
(100576, 'https://ror.org/00nc5fj04', 'fr', 1, 'https://ror.org/00nc5fj04 BioSpectroscopie Translationnelle'),
(100577, 'https://ror.org/00nddb461', 'en', 1, 'https://ror.org/00nddb461 Hakkari University Hakkari Üniversitesi'),
(100578, 'https://ror.org/00ndvqf03', 'fr', 1, 'https://ror.org/00ndvqf03 Laboratoire ModƩlisation et Exploration des MatƩriaux'),
(100579, 'https://ror.org/00nf46858', 'fr', 1, 'https://ror.org/00nf46858 Clermont Recherche Management Clermont Research Management'),
(100580, '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'),
(100581, 'https://ror.org/00nhs3j29', 'no_lang_code', 1, 'https://ror.org/00nhs3j29 Istituto Nazionale di Fisica Nucleare, Trento Institute for Fundamental Physics And Applications'),
(100582, 'https://ror.org/00nn2f254', 'en', 1, 'https://ror.org/00nn2f254 Injibara University'),
(100583, 'https://ror.org/00nrbzg90', 'fr', 1, 'https://ror.org/00nrbzg90 Laboratoire Univers et Particules de Montpellier Montpellier Universe and Particles Laboratory'),
(100584, 'https://ror.org/00nrven85', 'fr', 1, 'https://ror.org/00nrven85 Structures Formelles du Langage'),
(100585, 'https://ror.org/00ntfnx83', 'en', 1, 'https://ror.org/00ntfnx83 Waseda University 早稲田大学'),
(100586, 'https://ror.org/00nvjgv40', 'fr', 1, 'https://ror.org/00nvjgv40 Laboratoire de Biochimie ThƩorique Laboratory of Theoretical Biochemistry'),
(100587, 'https://ror.org/00nvvw130', 'fr', 1, 'https://ror.org/00nvvw130 StabilitƩ GƩnƩtique, Cellules Souches et Radiations'),
(100588, 'https://ror.org/00nx0vn86', 'en', 1, 'https://ror.org/00nx0vn86 Macao University of Tourism Universidade de Turismo de Macau ę¾³é–€ę—…éŠå¤§å­ø'),
(100589, 'https://ror.org/00nx7n658', 'en', 1, 'https://ror.org/00nx7n658 Osaka Women''s and Children''s Hospital å¤§é˜ŖęÆå­åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(100590, 'https://ror.org/00nxdn656', 'en', 1, 'https://ror.org/00nxdn656 Baden State Library Badische Landesbibliothek'),
(100591, 'https://ror.org/00p0dkd98', 'en', 1, 'https://ror.org/00p0dkd98 Sparsholt College'),
(100592, 'https://ror.org/00p0jh392', 'en', 1, 'https://ror.org/00p0jh392 State Center Community College District'),
(100593, 'https://ror.org/00p55jd14', 'en', 1, 'https://ror.org/00p55jd14 Scripps College'),
(100594, 'https://ror.org/00p5j4e25', 'no_lang_code', 1, 'https://ror.org/00p5j4e25 Panteia, Panteia (Netherlands)'),
(100595, 'https://ror.org/00p5kn310', 'en', 1, 'https://ror.org/00p5kn310 Banking Academy of Vietnam Hį»c viện NgĆ¢n hĆ ng'),
(100596, 'https://ror.org/00p61b845', 'id', 1, 'https://ror.org/00p61b845 Universitas Islam Negeri Profesor Kiai Haji Saifuddin Zuhri Purwokerto'),
(100597, 'https://ror.org/00p73bw06', 'fr', 1, 'https://ror.org/00p73bw06 ContrĆ“le transcriptionnel et Ć©pigĆ©nĆ©tique de l’hĆ©matopoĆÆĆØse maligne'),
(100598, 'https://ror.org/00p7v1s94', 'fr', 1, 'https://ror.org/00p7v1s94 RƩsistance Induite et Bioprotection des Plantes'),
(100599, 'https://ror.org/00p9ghj81', 'pt', 1, 'https://ror.org/00p9ghj81 Uninter'),
(100600, 'https://ror.org/00pbfkr44', 'en', 1, 'https://ror.org/00pbfkr44 University College of Arts Crafts and Design');
INSERT INTO `rors` VALUES
(100601, 'https://ror.org/00pbrnp49', 'fr', 1, 'https://ror.org/00pbrnp49 CommunautƩ urbaine de Lyon Urban Community of Lyon'),
(100602, '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'),
(100603, 'https://ror.org/00pcqj134', 'fr', 1, 'https://ror.org/00pcqj134 Laboratoire de Biologie Computationnelle et Quantitative Laboratory of Computational and Quantitative Biology'),
(100604, 'https://ror.org/00pd74e08', 'en', 1, 'https://ror.org/00pd74e08 University of Münster Universität Münster'),
(100605, 'https://ror.org/00pdj1108', 'en', 1, 'https://ror.org/00pdj1108 RFF-CMCC European Institute on Economics and the Environment'),
(100606, 'https://ror.org/00pdj3j56', 'en', 1, 'https://ror.org/00pdj3j56 Tamale College of Education'),
(100607, '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'),
(100608, 'https://ror.org/00pgyqh43', 'fr', 1, 'https://ror.org/00pgyqh43 DƩpartement Alimentation Humaine'),
(100609, 'https://ror.org/00ph8tk69', 'fr', 1, 'https://ror.org/00ph8tk69 HƓpital Cochin'),
(100610, 'https://ror.org/00phxkk55', 'no_lang_code', 1, 'https://ror.org/00phxkk55 JURA Bio, Inc., JURA Bio, Inc. (United States)'),
(100611, 'https://ror.org/00pmdbw58', 'fr', 1, 'https://ror.org/00pmdbw58 Equipe de recherche Louis Josserand'),
(100612, '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'),
(100613, 'https://ror.org/00pwbq328', 'en', 1, 'https://ror.org/00pwbq328 Islamic Azad University, Babol دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲØŲ§ŲØŁ„'),
(100614, 'https://ror.org/00pyqav47', 'en', 1, 'https://ror.org/00pyqav47 OstravskĆ” univerzita v Ostravě University of Ostrava'),
(100615, 'https://ror.org/00q1dg558', 'es', 1, 'https://ror.org/00q1dg558 Instituto Educativo Dolores Del Rio Extensión Santiago Papasquiaro Durango'),
(100616, 'https://ror.org/00q369629', 'en', 1, 'https://ror.org/00q369629 Le Moyne College'),
(100617, 'https://ror.org/00q3dfs08', 'en', 1, 'https://ror.org/00q3dfs08 Rose Bruford College'),
(100618, 'https://ror.org/00q4vv597', 'en', 1, 'https://ror.org/00q4vv597 Hong Kong University of Science and Technology'),
(100619, 'https://ror.org/00q580v32', 'no_lang_code', 0, 'https://ror.org/00q580v32 Reactive Innovations (United States)'),
(100620, 'https://ror.org/00q7mnz48', 'fr', 1, 'https://ror.org/00q7mnz48 Collecte Localisation Satellites (France)'),
(100621, 'https://ror.org/00q8h6763', 'fr', 1, 'https://ror.org/00q8h6763 Institut Pierre-Gilles de Gennes pour la Microfluidique Pierre-Gilles de Gennes Institute'),
(100622, 'https://ror.org/00qa63322', 'en', 1, 'https://ror.org/00qa63322 Atal Bihari Vajpayee Institute of Medical Sciences and Dr. Ram Manohar Lohia Hospital'),
(100623, 'https://ror.org/00qe5nz43', 'fr', 1, 'https://ror.org/00qe5nz43 TBM-Core'),
(100624, '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'),
(100625, 'https://ror.org/00qhm9960', 'en', 1, 'https://ror.org/00qhm9960 RESTORE'),
(100626, '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'),
(100627, 'https://ror.org/00qqv6244', 'en', 1, 'https://ror.org/00qqv6244 Medical College of Wisconsin'),
(100628, 'https://ror.org/00qv0tw17', 'en', 1, 'https://ror.org/00qv0tw17 SUNY College of Environmental Science and Forestry'),
(100629, 'https://ror.org/00qx5am02', 'no_lang_code', 1, 'https://ror.org/00qx5am02 Lo.La Peak Solutions GmbH, Lo.La Peak Solutions GmbH (Austria)'),
(100630, 'https://ror.org/00qxr8t08', 'en', 1, 'https://ror.org/00qxr8t08 Agence Canadienne d''Inspection des Aliments Canadian Food Inspection Agency'),
(100631, 'https://ror.org/00r02pr68', 'es', 1, 'https://ror.org/00r02pr68 Universidad Tecnológica de Puebla'),
(100632, 'https://ror.org/00r0qs524', 'en', 0, 'https://ror.org/00r0qs524 FAIR Data Infrastructure for Agrosystems, FAIRAgro FAIRe Dateninfrastruktur für die Agrosystemforschung'),
(100633, 'https://ror.org/00r2rga43', 'en', 1, 'https://ror.org/00r2rga43 Cambricon, Cambricon (China), 寒武纪 åŒ—äŗ¬äø­ē§‘åÆ’ę­¦ēŗŖē§‘ęŠ€ęœ‰é™å…¬åø'),
(100634, 'https://ror.org/00r454w59', 'fr', 1, 'https://ror.org/00r454w59 Institut thƩmatique Immunologie, inflammation, infectiologie et microbiologie'),
(100635, 'https://ror.org/00r5mc782', 'en', 1, 'https://ror.org/00r5mc782 Institut de recherche en musique et santƩ Music and Health Research Institute'),
(100636, 'https://ror.org/00r8jkk54', 'fr', 1, 'https://ror.org/00r8jkk54 Institut des Sciences MolƩculaires Institute of Molecular Sciences'),
(100637, 'https://ror.org/00raqbe38', 'en', 1, 'https://ror.org/00raqbe38 PPL, PPL (United States)'),
(100638, 'https://ror.org/00rbjv475', 'en', 1, 'https://ror.org/00rbjv475 Netherlands eScience Center'),
(100639, 'https://ror.org/00rd81916', 'fr', 1, 'https://ror.org/00rd81916 Laboratoire Interdisciplinaire des Sciences du NumƩrique'),
(100640, 'https://ror.org/00rfccx09', 'fr', 1, 'https://ror.org/00rfccx09 Groupe de Recherche en Droit, Ɖconomie, Gestion'),
(100641, 'https://ror.org/00rg8bd79', 'en', 1, 'https://ror.org/00rg8bd79 Epigenetics, Data, Politics'),
(100642, 'https://ror.org/00rgfaj93', 'no_lang_code', 1, 'https://ror.org/00rgfaj93 Technischer Überwachungsverein TÜV Nord (Germany)'),
(100643, 'https://ror.org/00rh71z37', 'fr', 1, 'https://ror.org/00rh71z37 Laboratoire de ChƩmo-biologie synthƩtique et thƩrapeutique'),
(100644, 'https://ror.org/00rj6k558', 'no_lang_code', 1, 'https://ror.org/00rj6k558 Candela, Candela (United States)'),
(100645, 'https://ror.org/00rj8cd91', 'fr', 1, 'https://ror.org/00rj8cd91 Laboratoire d''Ʃtudes rurales'),
(100646, 'https://ror.org/00rjdhd62', 'en', 1, 'https://ror.org/00rjdhd62 Zhejiang Wanli University ęµ™ę±Ÿäø‡é‡Œå­¦é™¢'),
(100647, 'https://ror.org/00rs45z86', 'en', 1, 'https://ror.org/00rs45z86 Haute Ɖcole de Gand Hogeschool Gent University College Ghent'),
(100648, 'https://ror.org/00rtaje08', 'en', 1, 'https://ror.org/00rtaje08 Raffles University'),
(100649, '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'),
(100650, 'https://ror.org/00ry58h45', 'fr', 1, 'https://ror.org/00ry58h45 Laboratoire des technologies innovantes'),
(100651, 'https://ror.org/00rz3mr26', 'en', 1, 'https://ror.org/00rz3mr26 Riyadh Elm University ŁƒŁ„ŁŠŲ§ŲŖ Ų§Ł„Ų±ŁŠŲ§Ų¶ لطب الأسنان ŁˆŲ§Ł„ŲµŁŠŲÆŁ„Ų©'),
(100652, 'https://ror.org/00rzr5v92', 'en', 1, 'https://ror.org/00rzr5v92 Centre de recherche et d’innovation en catalyse Centre for Catalysis Research and Innovation'),
(100653, 'https://ror.org/00s0yct57', 'en', 1, 'https://ror.org/00s0yct57 Institute of Plant Biology and Biotechnology Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Šø биотехнологии растений'),
(100654, 'https://ror.org/00s147322', 'en', 1, 'https://ror.org/00s147322 Science and Technology Policy Institute ź³¼ķ•™źø°ģˆ ģ •ģ±…ģ—°źµ¬ģ›'),
(100655, 'https://ror.org/00s2fy654', 'en', 1, 'https://ror.org/00s2fy654 West Northamptonshire Council'),
(100656, 'https://ror.org/00s40r567', 'fr', 1, 'https://ror.org/00s40r567 Passages'),
(100657, 'https://ror.org/00s4cve39', 'fr', 1, 'https://ror.org/00s4cve39 Catholic University of Toulouse Institut catholique de toulouse'),
(100658, 'https://ror.org/00s4rmz74', 'en', 1, 'https://ror.org/00s4rmz74 Hochschule Ravensburg-Weingarten University of Applied Sciences Ravensburg-Weingarten'),
(100659, 'https://ror.org/00s5kmw74', 'en', 1, 'https://ror.org/00s5kmw74 Canadian Research Knowledge Network RƩseau canadien de documentation pour la recherche'),
(100660, 'https://ror.org/00s7tkw17', 'en', 1, 'https://ror.org/00s7tkw17 Minjiang University é—½ę±Ÿå­¦é™¢'),
(100661, 'https://ror.org/00s7v8q53', 'fr', 1, 'https://ror.org/00s7v8q53 HƓpital de la Conception'),
(100662, 'https://ror.org/00s8hq550', 'fr', 1, 'https://ror.org/00s8hq550 Centre d''Etudes Biologiques de ChizƩ'),
(100663, 'https://ror.org/00saanr69', 'en', 1, 'https://ror.org/00saanr69 University of Sulaimani Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³Ł„ŁŠŁ…Ų§Ł†ŁŠŲ©'),
(100664, 'https://ror.org/00saywf64', 'en', 1, 'https://ror.org/00saywf64 Gyeongsang National University ź²½ģƒėŒ€ķ•™źµ'),
(100665, 'https://ror.org/00sbbhq57', 'en', 1, 'https://ror.org/00sbbhq57 Jilin Business and Technology College'),
(100666, 'https://ror.org/00sbx0y13', 'tr', 1, 'https://ror.org/00sbx0y13 Amasya University Amasya Üniversitesi'),
(100667, 'https://ror.org/00scwqd12', 'en', 1, 'https://ror.org/00scwqd12 Missouri University of Science and Technology UniversitƩ du missouri-columbia de science et technologie'),
(100668, 'https://ror.org/00se82r08', 'en', 1, 'https://ror.org/00se82r08 Central Institute for Arid Horticulture'),
(100669, 'https://ror.org/00sepad12', 'en', 1, 'https://ror.org/00sepad12 SUNY Corning Community College'),
(100670, 'https://ror.org/00sfg6g55', 'tr', 1, 'https://ror.org/00sfg6g55 Afyonkarahisar Health Sciences University Afyonkarahisar Sağlık Bilimleri Üniversitesi'),
(100671, 'https://ror.org/00sje9010', 'en', 1, 'https://ror.org/00sje9010 Saskatchewan Epidemiology Association'),
(100672, 'https://ror.org/00skw9v43', 'fr', 1, 'https://ror.org/00skw9v43 Laboratoire des signaux et systĆØmes'),
(100673, 'https://ror.org/00srrcb42', 'fr', 1, 'https://ror.org/00srrcb42 Laboratoire CaribƩen de Sciences Sociales'),
(100674, 'https://ror.org/00ss0a232', 'fr', 1, 'https://ror.org/00ss0a232 AMURE - Centre de droit et d''Ʃconomie de la mer'),
(100675, 'https://ror.org/00sse7z02', 'fr', 1, 'https://ror.org/00sse7z02 EURECOM'),
(100676, 'https://ror.org/00sxj6k90', 'fr', 1, 'https://ror.org/00sxj6k90 TRANSFORM'),
(100677, 'https://ror.org/00sy0nx38', 'pt', 1, 'https://ror.org/00sy0nx38 Instituto Superior de Lisboa e Vale do Tejo'),
(100678, 'https://ror.org/00syhrg42', 'de', 1, 'https://ror.org/00syhrg42 Lucerne Central and University Library Zentral und Hochschulbibliothek Luzern'),
(100679, 'https://ror.org/00t09mq63', 'en', 1, 'https://ror.org/00t09mq63 AbbVie (Australia)'),
(100680, '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'),
(100681, 'https://ror.org/00t42b697', 'en', 1, 'https://ror.org/00t42b697 Northern Trust, Northern Trust (United States)'),
(100682, 'https://ror.org/00t53pv34', 'en', 1, 'https://ror.org/00t53pv34 National Defence University of Malaysia Universiti Pertahanan Nasional Malaysia'),
(100683, 'https://ror.org/00t6d2469', 'en', 1, 'https://ror.org/00t6d2469 University of Belgrade - Faculty of Architecture Univerzitet u Beogradu - Arhitektonski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Архитектонски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(100684, 'https://ror.org/00t7axd27', 'en', 1, 'https://ror.org/00t7axd27 UCSD-CNRS Joint Research Chemistry Laboratory'),
(100685, 'https://ror.org/00t8gz605', 'en', 1, 'https://ror.org/00t8gz605 Trinity University Universidad Trinidad'),
(100686, 'https://ror.org/00t9egj41', 'fr', 1, 'https://ror.org/00t9egj41 Centre de Recherche ƉpidĆ©miologie et Statistique Centre of Research in Epidemiology and Statistics'),
(100687, 'https://ror.org/00t9pwh21', 'fr', 1, 'https://ror.org/00t9pwh21 Sport et environnement social'),
(100688, 'https://ror.org/00t9y0z13', 'fr', 1, 'https://ror.org/00t9y0z13 Institut de Radioastronomie MillimƩtrique International Research Institute for Radio Astronomy'),
(100689, 'https://ror.org/00tabsj08', 'en', 0, 'https://ror.org/00tabsj08 Istanbul Topkapi University İstanbul Topkapı Üniversitesi'),
(100690, 'https://ror.org/00tdmgj61', 'no_lang_code', 1, 'https://ror.org/00tdmgj61 SUNY Canton'),
(100691, 'https://ror.org/00te3t702', 'en', 1, 'https://ror.org/00te3t702 Universidad de Georgia University of Georgia UniversitƩ de gƩorgie'),
(100692, 'https://ror.org/00tepxj95', 'fr', 0, 'https://ror.org/00tepxj95 Laboratoire de Vectorologie et ThƩrapeutiques AnticancƩreuses Laboratory for Vectorology in Anticancer Therapy'),
(100693, 'https://ror.org/00tf8ca96', 'fr', 1, 'https://ror.org/00tf8ca96 MusƩe Curie'),
(100694, 'https://ror.org/00tfaab58', 'en', 1, 'https://ror.org/00tfaab58 Yonsei University College of Dentistry'),
(100695, 'https://ror.org/00tfmqe91', 'en', 1, 'https://ror.org/00tfmqe91 Mozarteum University of Salzburg UniversitƤt Mozarteum Salzburg'),
(100696, 'https://ror.org/00th3sv06', 'fr', 1, 'https://ror.org/00th3sv06 HƓpital Salvator'),
(100697, 'https://ror.org/00tj21473', 'fr', 1, 'https://ror.org/00tj21473 CArcinose PƩritoine Paris-Technologies Carcinomatosis Peritoneum Paris Technology'),
(100698, 'https://ror.org/00tkrft03', 'en', 1, 'https://ror.org/00tkrft03 Hƶgskolan Kristianstad Kristianstad University Kristianstadin korkeakoulu'),
(100699, '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'),
(100700, 'https://ror.org/00tp01q71', 'en', 1, 'https://ror.org/00tp01q71 Sanda University äøŠęµ·ę‰č¾¾å­¦é™¢'),
(100701, 'https://ror.org/00tqjtg68', 'en', 1, 'https://ror.org/00tqjtg68 SUNY Erie'),
(100702, 'https://ror.org/00tscx035', 'en', 1, 'https://ror.org/00tscx035 Vels University ą®µąÆ‡ą®²ąÆą®øąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(100703, 'https://ror.org/00tt79z10', 'fr', 1, 'https://ror.org/00tt79z10 UnitƩ de MƩcanique de Lille - Joseph Boussinesq'),
(100704, 'https://ror.org/00twdhr48', 'en', 1, 'https://ror.org/00twdhr48 Korea Hydro and Nuclear Power (Korea) ķ•œźµ­ģˆ˜ė „ģ›ģžė „'),
(100705, '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'),
(100706, 'https://ror.org/00v0ean07', 'fr', 1, 'https://ror.org/00v0ean07 French Society of Periodontology SociĆ©tĆ© FranƧaise de Parodontologie et d’Implantologie Orale'),
(100707, 'https://ror.org/00v16df20', 'en', 1, 'https://ror.org/00v16df20 Austrian Institute for Health Technology Assessment GmbH'),
(100708, 'https://ror.org/00v1y6t69', 'en', 1, 'https://ror.org/00v1y6t69 Techno India University ą¦Ÿą§‡ą¦•ą¦Øą§‹ ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(100709, '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'),
(100710, 'https://ror.org/00v5nyn36', 'en', 0, 'https://ror.org/00v5nyn36 Yeovil District Hospital NHS Foundation Trust'),
(100711, 'https://ror.org/00va9mk15', 'en', 1, 'https://ror.org/00va9mk15 Gaia College'),
(100712, 'https://ror.org/00vazrw17', 'fr', 1, 'https://ror.org/00vazrw17 Laboratoire de GƩographie et d''AmƩnagement de Montpellier'),
(100713, 'https://ror.org/00vctdx48', 'fr', 1, 'https://ror.org/00vctdx48 ThĆ©orie Ɖconomique, ModĆ©lisation et Applications'),
(100714, 'https://ror.org/00ve48a86', 'en', 1, 'https://ror.org/00ve48a86 Urban Studies Foundation'),
(100715, 'https://ror.org/00vfjqp82', 'no_lang_code', 1, 'https://ror.org/00vfjqp82 Leonardo (France)'),
(100716, 'https://ror.org/00vfxg105', 'fr', 1, 'https://ror.org/00vfxg105 SantƩ et AgroƩcologie du Vignoble'),
(100717, 'https://ror.org/00vkhbp60', 'ca', 1, 'https://ror.org/00vkhbp60 Universidad Abat Oliba CEU Universitat Abat Oliba CEU'),
(100718, 'https://ror.org/00vmsps81', 'en', 1, 'https://ror.org/00vmsps81 Urganch Innovation University'),
(100719, 'https://ror.org/00vqxjy61', 'en', 1, 'https://ror.org/00vqxjy61 Breakthrough T1D'),
(100720, 'https://ror.org/00vtxwp63', 'no_lang_code', 1, 'https://ror.org/00vtxwp63 Aisin (Japan) ć‚¢ć‚¤ć‚·ćƒ³ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(100721, 'https://ror.org/00vxck708', 'fr', 1, 'https://ror.org/00vxck708 Unité de Recherche Agrosystèmes tropicaux'),
(100722, 'https://ror.org/00vya8493', 'en', 1, 'https://ror.org/00vya8493 Tokyo Metropolitan Institute of Medical Science å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬éƒ½åŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(100723, 'https://ror.org/00vzebw12', 'en', 1, 'https://ror.org/00vzebw12 NFC Institute of Engineering and Technology Ų§ŪŒŁ† ایف سی Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ آف Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(100724, 'https://ror.org/00w0bpf20', 'fr', 1, 'https://ror.org/00w0bpf20 ThƩologie catholique et sciences religieuses'),
(100725, 'https://ror.org/00w2q5j98', 'fr', 1, 'https://ror.org/00w2q5j98 Institut de Neurophysiopathologie'),
(100726, 'https://ror.org/00w3swb66', 'en', 1, 'https://ror.org/00w3swb66 European Centre for Space Applications and Telecommunications'),
(100727, 'https://ror.org/00w49ww42', 'en', 1, 'https://ror.org/00w49ww42 Akrokerri College of Education'),
(100728, 'https://ror.org/00w4qrc49', 'en', 1, 'https://ror.org/00w4qrc49 Liberty University'),
(100729, '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'),
(100730, 'https://ror.org/00w7bj245', 'pt', 1, 'https://ror.org/00w7bj245 Cooperativa de Ensino Superior PolitƩcnico e UniversitƔrio'),
(100731, 'https://ror.org/00w7ta717', 'en', 1, 'https://ror.org/00w7ta717 College of New Caledonia'),
(100732, 'https://ror.org/00wa05t61', 'en', 1, 'https://ror.org/00wa05t61 Sikkim University ą¤øą¤æą¤•ą„ą¤•ą¤æą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(100733, 'https://ror.org/00wb5fq03', 'en', 1, 'https://ror.org/00wb5fq03 University of Belgrade – Faculty of Biology Univerzitet u Beogradu – BioloÅ”ki fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š‘ŠøŠ¾Š»Š¾ŃˆŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(100734, 'https://ror.org/00wdq3744', 'en', 1, 'https://ror.org/00wdq3744 Thapar Institute of Engineering & Technology ਄ਾਪਰ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(100735, 'https://ror.org/00wf6p036', 'en', 1, 'https://ror.org/00wf6p036 IPG Photonics, IPG Photonics (United States)'),
(100736, 'https://ror.org/00wfd0g93', 'en', 1, 'https://ror.org/00wfd0g93 Perdana University'),
(100737, 'https://ror.org/00wffwv55', 'pt', 1, 'https://ror.org/00wffwv55 Laboratório Associado CICECO – Instituto de Materiais de Aveiro'),
(100738, 'https://ror.org/00wh4bp03', 'fr', 0, 'https://ror.org/00wh4bp03 University of Montpellier 2 UniversitƩ Montpellier 2'),
(100739, 'https://ror.org/00whzh260', 'en', 1, 'https://ror.org/00whzh260 Woodrow Wilson International Center for Scholars'),
(100740, 'https://ror.org/00wk2mp56', 'en', 1, 'https://ror.org/00wk2mp56 Beihang University åŒ—äŗ¬čˆŖē©ŗčˆŖå¤©å¤§å­¦'),
(100741, 'https://ror.org/00wmhkr98', 'en', 1, 'https://ror.org/00wmhkr98 City College of New York'),
(100742, 'https://ror.org/00wqczk30', 'en', 1, 'https://ror.org/00wqczk30 Institut Pasteur D''Iran Pasteur Institute of Iran'),
(100743, 'https://ror.org/00wtvfq62', 'en', 1, 'https://ror.org/00wtvfq62 Shanghai University of Finance and Economics äøŠęµ·č“¢ē»å¤§å­¦'),
(100744, 'https://ror.org/00wwxk695', 'fr', 1, 'https://ror.org/00wwxk695 Laboratoire Analyse et ModƩlisation pour la Biologie et l''Environnement'),
(100745, 'https://ror.org/00wx1mx58', 'fr', 1, 'https://ror.org/00wx1mx58 Maison ArchƩologie & Ethnologie, Maison des Sciences de l''Homme Mondes'),
(100746, 'https://ror.org/00wx1vg07', 'fr', 1, 'https://ror.org/00wx1vg07 Centre des Politiques de la Terre'),
(100747, 'https://ror.org/00wygct11', 'en', 1, 'https://ror.org/00wygct11 University of Gloucestershire'),
(100748, 'https://ror.org/00wymkh76', 'en', 1, 'https://ror.org/00wymkh76 Pima Community College'),
(100749, 'https://ror.org/00wzhv093', 'en', 1, 'https://ror.org/00wzhv093 Universitatea din Oradea University of Oradea'),
(100750, 'https://ror.org/00x0kn981', 'pt', 1, 'https://ror.org/00x0kn981 Centro de Geofƭsica de Ɖvora'),
(100751, 'https://ror.org/00x0ma614', 'pt', 1, 'https://ror.org/00x0ma614 Coordenação de Aperfeicoamento de Pessoal de Nível Superior'),
(100752, 'https://ror.org/00x194q47', 'en', 1, 'https://ror.org/00x194q47 Rikkyo University 立教大学'),
(100753, 'https://ror.org/00x4k9h67', 'en', 1, 'https://ror.org/00x4k9h67 4Thparadigm, 4Thparadigm (China) ē¬¬å››čŒƒå¼ļ¼ˆåŒ—äŗ¬ļ¼‰ęŠ€ęœÆęœ‰é™å…¬åø'),
(100754, 'https://ror.org/00x5jmr79', 'fr', 0, 'https://ror.org/00x5jmr79 Structure et PropriƩtƩs d''Architectures MolƩculaires'),
(100755, 'https://ror.org/00x7ekv49', 'nl', 1, 'https://ror.org/00x7ekv49 Centrum Wiskunde & Informatica National Research Institute for Mathematics and Computer Science'),
(100756, 'https://ror.org/00xa0xn82', 'en', 1, 'https://ror.org/00xa0xn82 Trakya University Trakya Üniversitesi'),
(100757, 'https://ror.org/00xa57a59', 'en', 1, 'https://ror.org/00xa57a59 University of Novi Sad Универзитет у ŠŠ¾Š²Š¾Š¼ ДаГу'),
(100758, 'https://ror.org/00xbw4a70', 'es', 1, 'https://ror.org/00xbw4a70 Instituto Tecnólogico de La Laguna'),
(100759, 'https://ror.org/00xc55v17', 'fr', 1, 'https://ror.org/00xc55v17 GƩnomique MƩtabolique du Genoscope'),
(100760, 'https://ror.org/00xc87681', 'en', 1, 'https://ror.org/00xc87681 Shota Rustaveli National Science Foundation'),
(100761, 'https://ror.org/00xd1ek73', 'fr', 1, 'https://ror.org/00xd1ek73 Laboratoire MƩcanique des Solides Solids Mechanic Laboratory'),
(100762, 'https://ror.org/00xd6tp42', 'fr', 1, 'https://ror.org/00xd6tp42 Ɖcole SupĆ©rieure des Beaux-Arts de Nantes MĆ©tropole'),
(100763, 'https://ror.org/00xdgaz28', 'en', 1, 'https://ror.org/00xdgaz28 Humanities Texas'),
(100764, 'https://ror.org/00xek3458', 'en', 1, 'https://ror.org/00xek3458 Freer Gallery of Art'),
(100765, 'https://ror.org/00xffm983', 'fr', 1, 'https://ror.org/00xffm983 Dynamique Musculaire et MƩtabolisme'),
(100766, 'https://ror.org/00xk3ch77', 'en', 1, 'https://ror.org/00xk3ch77 DTI University VysokÔ Ŕkola'),
(100767, 'https://ror.org/00xmwgm53', 'no_lang_code', 1, 'https://ror.org/00xmwgm53 Telecom Italia (Italy)'),
(100768, 'https://ror.org/00xqgpg43', 'en', 1, 'https://ror.org/00xqgpg43 Bangladesh Army University of Science and Technology বাংলাদেশ ą¦†ą¦°ą§ą¦®ą¦æ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(100769, 'https://ror.org/00xts7d02', 'fr', 1, 'https://ror.org/00xts7d02 Institut de Science et d''IngƩnierie SupramolƩculaires'),
(100770, 'https://ror.org/00xtsag93', 'en', 1, 'https://ror.org/00xtsag93 Jilin Normal University å‰ęž—åøˆčŒƒå¤§å­¦'),
(100771, 'https://ror.org/00xwwwr97', 'fr', 1, 'https://ror.org/00xwwwr97 Institut Parisien de Chimie Physique et ThƩorique'),
(100772, 'https://ror.org/00xy44n04', 'en', 1, 'https://ror.org/00xy44n04 Yamagata University 山形大学'),
(100773, 'https://ror.org/00xzzba89', 'en', 1, 'https://ror.org/00xzzba89 Bordeaux Population Health'),
(100774, 'https://ror.org/00y0xnp53', 'en', 1, 'https://ror.org/00y0xnp53 Politechnika Warszawska Warsaw University of Technology'),
(100775, 'https://ror.org/00y0zf565', 'en', 1, 'https://ror.org/00y0zf565 Institute for Basic Science'),
(100776, 'https://ror.org/00y1ekh28', 'en', 1, 'https://ror.org/00y1ekh28 University of Education, Winneba'),
(100777, 'https://ror.org/00y523k32', 'fr', 1, 'https://ror.org/00y523k32 Laboratoire Universitaire Histoire Cultures Italie Europe'),
(100778, 'https://ror.org/00y86zy26', 'fr', 1, 'https://ror.org/00y86zy26 Conseil international des monuments et des sites International Council on Monuments and Sites'),
(100779, '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'),
(100780, 'https://ror.org/00yf0rv20', 'fr', 1, 'https://ror.org/00yf0rv20 Centre de Recherche en Technologies Agro-Alimentaires'),
(100781, 'https://ror.org/00yh00476', 'fr', 1, 'https://ror.org/00yh00476 Organisation Mondiale de la SantƩ Animale World Organisation for Animal Health'),
(100782, 'https://ror.org/00yh11w37', 'en', 1, 'https://ror.org/00yh11w37 Newlife the Charity for Disabled Children'),
(100783, 'https://ror.org/00yn2fy02', 'en', 1, 'https://ror.org/00yn2fy02 Portland State University'),
(100784, 'https://ror.org/00ynyay20', 'fr', 1, 'https://ror.org/00ynyay20 Forum international des transports International Transport Forum'),
(100785, 'https://ror.org/00yp7f985', 'en', 1, 'https://ror.org/00yp7f985 The Federal Polytechnic Offa'),
(100786, 'https://ror.org/00yphhr71', 'fr', 1, 'https://ror.org/00yphhr71 Institut de CancƩrologie de Lorraine'),
(100787, 'https://ror.org/00ysecr35', 'fr', 1, 'https://ror.org/00ysecr35 Ɖcole Nationale SupĆ©rieure de CĆ©ramique Industrielle'),
(100788, 'https://ror.org/00yv4p972', 'fr', 1, 'https://ror.org/00yv4p972 DĆ©partement Ɖcologie des ForĆŖts, Prairies et Milieux Aquatiques'),
(100789, 'https://ror.org/00ywema53', 'en', 1, 'https://ror.org/00ywema53 EPAM Systems, EPAM Systems (United States)'),
(100790, 'https://ror.org/00yxpmx15', 'en', 1, 'https://ror.org/00yxpmx15 Royal British Columbia Museum'),
(100791, 'https://ror.org/00yypjb24', 'en', 1, 'https://ror.org/00yypjb24 Dambai College of Education'),
(100792, 'https://ror.org/00yyw0g86', 'fr', 1, 'https://ror.org/00yyw0g86 FƩdƩration Hospitalo-Universitaire, Paris Center for Microbiome Medicine'),
(100793, 'https://ror.org/00yzbmy59', 'fr', 1, 'https://ror.org/00yzbmy59 Institut supƩrieur des arts de Toulouse'),
(100794, 'https://ror.org/00yze4d93', 'en', 1, 'https://ror.org/00yze4d93 Bahçeşehir University Bahçeşehir Üniversitesi'),
(100795, 'https://ror.org/00yzkzh74', 'en', 0, 'https://ror.org/00yzkzh74 River Lane Research'),
(100796, 'https://ror.org/00z0af360', 'fr', 1, 'https://ror.org/00z0af360 Laboratoire de MƩdiƩvistique Occidentale de Paris'),
(100797, 'https://ror.org/00z0vcr53', 'en', 1, 'https://ror.org/00z0vcr53 Columbia-Greene Community College'),
(100798, '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'),
(100799, 'https://ror.org/00z5fkj61', 'en', 1, 'https://ror.org/00z5fkj61 York St John University'),
(100800, 'https://ror.org/00z7dje19', 'en', 1, 'https://ror.org/00z7dje19 Fraunhofer Institute for Material Flow and Logistics Fraunhofer-Institut für Materialfluss und Logistik'),
(100801, 'https://ror.org/00z8erc20', 'de', 1, 'https://ror.org/00z8erc20 Institut für soziale Gegenwartsfragen, Stuttgart, e.V.'),
(100802, 'https://ror.org/00z8th821', 'fr', 0, 'https://ror.org/00z8th821 Observatoire Oceanologique de Banyuls sur Mer Oceanographic Observatory in Banyuls-sur-Mer'),
(100803, 'https://ror.org/00za10597', 'en', 1, 'https://ror.org/00za10597 Hospital Pharmacy of North Norway Trust Sykehusapotek Nord HF'),
(100804, 'https://ror.org/00za3wc71', 'de', 0, 'https://ror.org/00za3wc71 Klinik und Poliklinik für Hautkrankheiten'),
(100805, 'https://ror.org/00za68765', 'pt', 1, 'https://ror.org/00za68765 Centro UniversitƔrio EstƔcio de Santa Catarina'),
(100806, 'https://ror.org/00zay3w86', 'fr', 1, 'https://ror.org/00zay3w86 Centre de Nanosciences et de Nanotechnologies Centre for Nanoscience and Nanotechnology'),
(100807, 'https://ror.org/00zg6dt46', 'en', 1, 'https://ror.org/00zg6dt46 New York State School of Industrial and Labor Relations'),
(100808, '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"'),
(100809, 'https://ror.org/00zkxn351', 'en', 1, 'https://ror.org/00zkxn351 Information Society Development Institute'),
(100810, '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'),
(100811, 'https://ror.org/00zqysk61', 'en', 1, 'https://ror.org/00zqysk61 NUWC Newport Division'),
(100812, 'https://ror.org/00zv6sd12', 'en', 1, 'https://ror.org/00zv6sd12 Amerika Samoa Humanities Council'),
(100813, 'https://ror.org/00zx7z876', 'fr', 1, 'https://ror.org/00zx7z876 Haute Ɖcole Albert Jacquard'),
(100814, 'https://ror.org/00zxgnq18', 'en', 1, 'https://ror.org/00zxgnq18 NORDUnet'),
(100815, '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'),
(100816, 'https://ror.org/0100zmm86', 'fr', 1, 'https://ror.org/0100zmm86 Montpellier Recherche en Economie'),
(100817, 'https://ror.org/01027m165', 'en', 1, 'https://ror.org/01027m165 Brain Tech Laboratory'),
(100818, 'https://ror.org/0102dvb40', 'en', 1, 'https://ror.org/0102dvb40 Fujian Provincial Department of Ecology and Environment ē¦å»ŗēœē”Ÿę€ēŽÆå¢ƒåŽ…'),
(100819, 'https://ror.org/0102mm775', 'en', 1, 'https://ror.org/0102mm775 Nicolaus Copernicus University Uniwersytet Mikołaja Kopernika w Toruniu'),
(100820, 'https://ror.org/0102wtd28', 'en', 1, 'https://ror.org/0102wtd28 Monolithic Power Systems, Monolithic Power Systems (United States)'),
(100821, 'https://ror.org/0103y3647', 'en', 1, 'https://ror.org/0103y3647 Naval Facilities Engineering and Expeditionary Warfare Center'),
(100822, 'https://ror.org/0103yxp25', 'fr', 1, 'https://ror.org/0103yxp25 French Defence Health Service Service de SantƩ des ArmƩes'),
(100823, 'https://ror.org/0105rz203', 'de', 1, 'https://ror.org/0105rz203 PƤdagogische Hochschule Wien University of Education Vienna'),
(100824, 'https://ror.org/0106qb496', 'en', 1, 'https://ror.org/0106qb496 Inner Mongolia University å†…č’™å¤å¤§å­¦'),
(100825, 'https://ror.org/0107nyd78', 'en', 1, 'https://ror.org/0107nyd78 Tübingen AI Center'),
(100826, 'https://ror.org/010bhn875', 'fr', 1, 'https://ror.org/010bhn875 Temps, espaces, langages, Europe mƩridionale, MƩditerranƩe'),
(100827, 'https://ror.org/010bvr713', 'es', 1, 'https://ror.org/010bvr713 Instituto Colombiano del Petróleo y Energías de la Transición - Icpet'),
(100828, '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'),
(100829, 'https://ror.org/010e21634', 'fr', 1, 'https://ror.org/010e21634 MƩdecine Cardiovasculaire Translationnelle'),
(100830, 'https://ror.org/010f1sq29', 'en', 1, 'https://ror.org/010f1sq29 Noordwes-Universiteit North-West University'),
(100831, 'https://ror.org/010j2gw05', 'fr', 1, 'https://ror.org/010j2gw05 CEA Paris-Saclay - Etablissement de Fontenay-aux-roses'),
(100832, 'https://ror.org/010kva064', 'en', 1, 'https://ror.org/010kva064 Southern Oregon University'),
(100833, 'https://ror.org/010mf0m52', 'en', 1, 'https://ror.org/010mf0m52 Department for Transport'),
(100834, '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'),
(100835, 'https://ror.org/010r6td27', 'en', 1, 'https://ror.org/010r6td27 Digital Research Alliance of Canada L’Alliance de recherche numĆ©rique du Canada'),
(100836, 'https://ror.org/010re0e60', 'pt', 1, 'https://ror.org/010re0e60 Centre of materials and civil engineering for sustainability Centro de Materiais e Tecnologias Construtivas'),
(100837, 'https://ror.org/010rs2a38', 'fr', 1, 'https://ror.org/010rs2a38 DƩpartement de Chimie MolƩculaire'),
(100838, 'https://ror.org/010rve435', 'fr', 1, 'https://ror.org/010rve435 Laboratoire d’Économie et de Gestion de l''Ouest'),
(100839, 'https://ror.org/010t4mz11', 'en', 1, 'https://ror.org/010t4mz11 WWF Hungary WWF MagyarorszƔg'),
(100840, 'https://ror.org/010wkny21', 'en', 1, 'https://ror.org/010wkny21 Excellence Cluster Origins Exzellenzcluster Origins'),
(100841, 'https://ror.org/010wkqn50', 'en', 1, 'https://ror.org/010wkqn50 Microsoft Research New England, Microsoft Research New England (United States)'),
(100842, 'https://ror.org/010x5y114', 'en', 1, 'https://ror.org/010x5y114 Yeovil College'),
(100843, 'https://ror.org/010xv5017', 'en', 1, 'https://ror.org/010xv5017 University of Belgrade – Faculty of Organizational Sciences Univerzitet u Beogradu – Fakultet organizacionih nauka, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ организационих наука'),
(100844, 'https://ror.org/0111a5077', 'en', 1, 'https://ror.org/0111a5077 Toxalim Research Centre in Food Toxicology'),
(100845, 'https://ror.org/0111cdx62', 'en', 1, 'https://ror.org/0111cdx62 A Tan Kapuja Buddhista Főiskola Dharma Gate Buddhist College'),
(100846, '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Ć­'),
(100847, 'https://ror.org/0111s2360', 'fr', 1, 'https://ror.org/0111s2360 Centre de Recherches sur la Cognition Animale Research Centre on Animal Cognition'),
(100848, 'https://ror.org/0112mx960', 'en', 1, 'https://ror.org/0112mx960 Tokyo Institute of Technology ę±äŗ¬å·„ę„­å¤§å­¦'),
(100849, 'https://ror.org/0112yzy28', 'en', 1, 'https://ror.org/0112yzy28 ForestGEO'),
(100850, 'https://ror.org/011335j04', 'en', 0, 'https://ror.org/011335j04 University Hospital MĆŗtua de Terrassa'),
(100851, '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'),
(100852, 'https://ror.org/011aa4g29', 'en', 1, 'https://ror.org/011aa4g29 Sami Shamoon College of Engineering המכללה ×”××§×“×ž×™×Ŗ להנדהה ×¢"ש ×”Öø×žÖ“×™ שַמְעוּן'),
(100853, 'https://ror.org/011abem59', 'fr', 1, 'https://ror.org/011abem59 Ɖvolution, GĆ©nomes, Comportement, Ɖcologie'),
(100854, 'https://ror.org/011bwvz55', 'en', 1, 'https://ror.org/011bwvz55 Waste Management, Waste Management (United States)'),
(100855, 'https://ror.org/011c8cv48', 'fr', 1, 'https://ror.org/011c8cv48 BibliothĆØque interuniversitaire Cujas'),
(100856, 'https://ror.org/011emb038', 'fr', 1, 'https://ror.org/011emb038 DƩpartement MathƩmatiques et Informatique AppliquƩes'),
(100857, 'https://ror.org/011fcvm83', 'no_lang_code', 0, 'https://ror.org/011fcvm83 Aeroflex'),
(100858, 'https://ror.org/011fxed53', 'en', 1, 'https://ror.org/011fxed53 Estonian Academy of Security Sciences Sisekaitseakadeemia'),
(100859, 'https://ror.org/011gea244', 'fr', 1, 'https://ror.org/011gea244 Laboratoire MƩditerranƩen de PrƩhistoire Europe Afrique'),
(100860, 'https://ror.org/011k7k191', 'en', 1, 'https://ror.org/011k7k191 LandspĆ­tali National University Hospital of Iceland'),
(100861, 'https://ror.org/011kg8p14', 'en', 1, 'https://ror.org/011kg8p14 Finger Lakes Community College'),
(100862, 'https://ror.org/011r0yf09', 'en', 1, 'https://ror.org/011r0yf09 Charter Communications, Charter Communications (United States)'),
(100863, 'https://ror.org/011skn125', 'en', 1, 'https://ror.org/011skn125 Mahatma Gandhi Institute of Technology'),
(100864, 'https://ror.org/011v22a28', 'en', 1, 'https://ror.org/011v22a28 Institute of the Lithuanian Language Lietuvių Kalbos Institutas'),
(100865, 'https://ror.org/011xg1225', 'en', 1, 'https://ror.org/011xg1225'),
(100866, 'https://ror.org/011xg5j78', 'en', 1, 'https://ror.org/011xg5j78 IFP School Ɖcole Nationale SupĆ©rieure du PĆ©trole et des Moteurs'),
(100867, 'https://ror.org/011xvna82', 'en', 1, 'https://ror.org/011xvna82 Fuzhou University ē¦å·žå¤§å­¦'),
(100868, 'https://ror.org/0120yqp15', 'en', 1, 'https://ror.org/0120yqp15 Solihull College'),
(100869, 'https://ror.org/0120za682', 'no_lang_code', 1, 'https://ror.org/0120za682 Telsy, Telsy (Italy)'),
(100870, 'https://ror.org/012221e05', 'fr', 1, 'https://ror.org/012221e05 DƩpartement Sciences sociales, agriculture et alimentation, espace et environnement Social Sciences, Agriculture and Food, Rural Development and Environment.'),
(100871, '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'),
(100872, 'https://ror.org/0122p5f64', 'es', 1, 'https://ror.org/0122p5f64 Universidad de JaƩn University of JaƩn'),
(100873, 'https://ror.org/0122rxn37', 'en', 1, 'https://ror.org/0122rxn37 DTE Energy, DTE Energy (United States)'),
(100874, 'https://ror.org/0126qma51', 'en', 1, 'https://ror.org/0126qma51 University of Illinois at Springfield UniversitƩ de l''illinois Ơ Springfield'),
(100875, 'https://ror.org/01273vs09', 'fr', 1, 'https://ror.org/01273vs09 Laboratoire de Radiopharmaceutiques Biocliniques'),
(100876, 'https://ror.org/0127n6542', 'fr', 1, 'https://ror.org/0127n6542 Laboratoire Interuniversitaire ExpƩrience, Ressources culturelles, Education'),
(100877, 'https://ror.org/012874a19', 'no_lang_code', 1, 'https://ror.org/012874a19 Anduril Industries, Anduril Industries (United States)'),
(100878, 'https://ror.org/012afjb06', 'en', 1, 'https://ror.org/012afjb06 Lehigh University Universidad de Lehigh'),
(100879, 'https://ror.org/012ba0982', 'en', 1, 'https://ror.org/012ba0982 NSWC Indian Head'),
(100880, 'https://ror.org/012ddk914', 'en', 1, 'https://ror.org/012ddk914 Bath & Body Works, Bath & Body Works (United States)'),
(100881, 'https://ror.org/012eh0r35', 'en', 1, 'https://ror.org/012eh0r35 Fukushima Medical University ē¦å³¶ēœŒē«‹åŒ»ē§‘å¤§å­¦'),
(100882, 'https://ror.org/012f7tj07', 'no_lang_code', 1, 'https://ror.org/012f7tj07 Telefónica (Spain)'),
(100883, 'https://ror.org/012fmmh32', 'en', 1, 'https://ror.org/012fmmh32 Bijagual Ecological Reserve'),
(100884, 'https://ror.org/012h8gy04', 'fr', 1, 'https://ror.org/012h8gy04 Chirurgie et extrƩmitƩ cƩphalique, caractƩrisation morphologique et fonctionnelle'),
(100885, 'https://ror.org/012hpz460', 'fr', 0, 'https://ror.org/012hpz460 Health Technologies Technologies pour la SantƩ'),
(100886, 'https://ror.org/012hzxe25', 'en', 1, 'https://ror.org/012hzxe25 Kateb University دانؓگاه کاتب'),
(100887, 'https://ror.org/012jstb87', 'fr', 1, 'https://ror.org/012jstb87 Agence franƧaise de lutte contre le dopage French Anti-Doping Agency'),
(100888, 'https://ror.org/012k1v959', 'en', 1, 'https://ror.org/012k1v959 Hochschule München University of Applied Sciences Munich University of Applied Sciences'),
(100889, 'https://ror.org/012kqkf58', 'de', 1, 'https://ror.org/012kqkf58 Robert Bosch Foundation Robert Bosch Stiftung'),
(100890, 'https://ror.org/012mse022', 'en', 1, 'https://ror.org/012mse022 Rhode Island Council for the Humanities'),
(100891, 'https://ror.org/012nh4m41', 'es', 1, 'https://ror.org/012nh4m41 Universidad Tecnologica de la Huasteca Hidalguense'),
(100892, 'https://ror.org/012tjde79', 'en', 1, 'https://ror.org/012tjde79 Tianjin Vocational Institute 天擄职业大学'),
(100893, 'https://ror.org/012wmz893', 'en', 1, 'https://ror.org/012wmz893 University of Belgrade - Faculty of Special Education and Rehabilitation Univerzitet u Beogradu – Fakultet za specijalnu edukaciju i rehabilitaciju, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ за ŃŠæŠµŃ†ŠøŃ˜Š°Š»Š½Ńƒ ŠµŠ“ŃƒŠŗŠ°Ń†ŠøŃ˜Ńƒ Šø Ń€ŠµŃ…Š°Š±ŠøŠ»ŠøŃ‚Š°Ń†ŠøŃ˜Ńƒ'),
(100894, 'https://ror.org/012wxdw12', 'fr', 1, 'https://ror.org/012wxdw12 Institut de Sciences des MatƩriaux de Mulhouse'),
(100895, 'https://ror.org/012zmcc30', 'en', 1, 'https://ror.org/012zmcc30 Laboratory for the Bioengineering of Tissues'),
(100896, 'https://ror.org/012zpbg81', 'en', 1, 'https://ror.org/012zpbg81 Kakatiya University ą¤•ą¤¾ą¤•ą¤¤ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ కాకతీయ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(100897, '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'),
(100898, 'https://ror.org/0131d6623', 'en', 1, 'https://ror.org/0131d6623 Algoma University'),
(100899, 'https://ror.org/0132f3h08', 'fr', 1, 'https://ror.org/0132f3h08 Fondation Nationale des Sciences Politiques National Foundation of Political Science'),
(100900, 'https://ror.org/01365h357', 'fr', 1, 'https://ror.org/01365h357 Observatoire des sciences de l''Univers Paris-Centre Ecce Terra'),
(100901, 'https://ror.org/013ckk937', 'en', 1, 'https://ror.org/013ckk937 Universidad de Rhode Island University of Rhode Island UniversitƩ de rhode island'),
(100902, 'https://ror.org/013dxmv67', 'id', 1, 'https://ror.org/013dxmv67 Universitas Gorontalo'),
(100903, 'https://ror.org/013hjnc74', 'en', 1, 'https://ror.org/013hjnc74 Energi Simulation'),
(100904, 'https://ror.org/013msgt25', 'no_lang_code', 1, 'https://ror.org/013msgt25 General Electric (United States)'),
(100905, 'https://ror.org/013nhg483', 'fr', 1, 'https://ror.org/013nhg483 Laboratoire Physiopathologie et GƩnƩtique du Neurone et du Muscle'),
(100906, 'https://ror.org/013ps2585', 'no_lang_code', 1, 'https://ror.org/013ps2585 medica mondiale e.V.'),
(100907, 'https://ror.org/013q1eq08', 'en', 1, 'https://ror.org/013q1eq08 Fudan University å¤ę—¦å¤§å­¦'),
(100908, 'https://ror.org/013q33h79', 'fr', 1, 'https://ror.org/013q33h79 Institut d''Ɖlectronique et des Technologies du numĆ©Rique'),
(100909, 'https://ror.org/013r8c450', 'fr', 1, 'https://ror.org/013r8c450 Centre du Droit de l''Entreprise'),
(100910, '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'),
(100911, 'https://ror.org/013sqra93', 'en', 1, 'https://ror.org/013sqra93 Antalya Bilim University Antalya Bilim Üniversitesi'),
(100912, 'https://ror.org/013tf3c58', 'en', 1, 'https://ror.org/013tf3c58 FWF Austrian Science Fund Fonds zur Fƶrderung der wissenschaftlichen Forschung'),
(100913, 'https://ror.org/013x0ky90', 'en', 1, 'https://ror.org/013x0ky90 Alexander Fleming Biomedical Sciences Research Center Ī•ĻĪµĻ…Ī½Ī·Ļ„Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ Ī’Ī¹ĪæĻŠĪ±Ļ„ĻĪ¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ ΑλέξανΓρος Φλέμιγκ'),
(100914, 'https://ror.org/013xs5b60', 'en', 1, 'https://ror.org/013xs5b60 Capital Medical University é¦–éƒ½åŒ»ē§‘å¤§å­¦'),
(100915, 'https://ror.org/013xvg556', 'fr', 1, 'https://ror.org/013xvg556 Ɖcole Nationale des Chartes'),
(100916, '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'),
(100917, 'https://ror.org/013z99a51', 'en', 1, 'https://ror.org/013z99a51 AERIS/ICARE Data and Services Center'),
(100918, 'https://ror.org/0140bzm64', 'en', 1, 'https://ror.org/0140bzm64 Society for the Study of Human Development'),
(100919, 'https://ror.org/01411sx56', 'no_lang_code', 1, 'https://ror.org/01411sx56 Johnson Matthey (United Kingdom)'),
(100920, 'https://ror.org/0145w8333', 'en', 1, 'https://ror.org/0145w8333 Altınbaş University Altınbaş Üniversitesi'),
(100921, 'https://ror.org/01462r250', 'en', 1, 'https://ror.org/01462r250 HÓpital universitaire de Zurich University Hospital of Zurich Universitätsspital Zürich'),
(100922, 'https://ror.org/0146qxv70', 'es', 1, 'https://ror.org/0146qxv70 Fundación Naturaleza El Salvador'),
(100923, 'https://ror.org/0148t1k76', 'en', 1, 'https://ror.org/0148t1k76 Hirshhorn Museum and Sculpture Garden'),
(100924, 'https://ror.org/0149s5s84', 'en', 1, 'https://ror.org/0149s5s84 Stevenson University'),
(100925, 'https://ror.org/014axpa37', 'en', 1, 'https://ror.org/014axpa37 Roskilde Universitet Roskilde University'),
(100926, 'https://ror.org/014bh1q35', 'en', 1, 'https://ror.org/014bh1q35 Istanbul 29 Mayis University'),
(100927, 'https://ror.org/014c1mf08', 'en', 1, 'https://ror.org/014c1mf08 Dalian Naval Academy äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›å¤§čæžčˆ°č‰‡å­¦é™¢'),
(100928, 'https://ror.org/014g1a453', 'en', 1, 'https://ror.org/014g1a453 Taif University Ų¬Ų§Ł…Ų¹Ų© الطائف'),
(100929, 'https://ror.org/014g4a840', 'en', 1, 'https://ror.org/014g4a840 Falkland Islands Fisheries Department'),
(100930, 'https://ror.org/014g71345', 'fr', 1, 'https://ror.org/014g71345 Centre d’Études et de Recherche en Histoire culturelle, Laboratoire CERHIC'),
(100931, 'https://ror.org/014h2x849', 'en', 1, 'https://ror.org/014h2x849 Anahuac Mayab University Universidad AnƔhuac Mayab'),
(100932, 'https://ror.org/014hxhm89', 'fr', 1, 'https://ror.org/014hxhm89 Institut universitaire du cancer de Toulouse Oncopole University Cancer Institute Toulouse Oncopole'),
(100933, 'https://ror.org/014kv8184', 'en', 1, 'https://ror.org/014kv8184 Grand Canyon University'),
(100934, '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'),
(100935, 'https://ror.org/014n97s28', 'fr', 1, 'https://ror.org/014n97s28 Laboratoire des MatƩriaux et du GƩnie Physique Materials and Physical Engineering Laboratory'),
(100936, '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'),
(100937, 'https://ror.org/014p6mg26', 'fr', 1, 'https://ror.org/014p6mg26 Laboratoire de Psychologie et NeuroCognition'),
(100938, 'https://ror.org/014q1bn90', 'pt', 1, 'https://ror.org/014q1bn90 Universidade Lusíada de Vila Nova de Famalicão'),
(100939, 'https://ror.org/014q9ch68', 'en', 1, 'https://ror.org/014q9ch68 Lyceum of the Philippines University – Batangas'),
(100940, 'https://ror.org/014qe3j22', 'en', 1, 'https://ror.org/014qe3j22 Stanford Cancer Institute'),
(100941, 'https://ror.org/014qgwb35', 'es', 1, 'https://ror.org/014qgwb35 Centro Ramón Piñeiro para a Investigación en Humanidades'),
(100942, 'https://ror.org/014sj8802', 'fr', 1, 'https://ror.org/014sj8802 Recherches Translationnelles sur le VIH et les Maladies Infectieuses'),
(100943, 'https://ror.org/014t9mt17', 'no_lang_code', 1, 'https://ror.org/014t9mt17 IMRA America, IMRA America (United States), IMRA America, Inc.'),
(100944, 'https://ror.org/014th2j85', 'no_lang_code', 1, 'https://ror.org/014th2j85 Generac, Generac (United States)'),
(100945, 'https://ror.org/014vp6c30', 'fr', 1, 'https://ror.org/014vp6c30 Institut de MathƩmatiques de Toulouse Toulouse Mathematics Institute'),
(100946, 'https://ror.org/014vz2d20', 'fr', 1, 'https://ror.org/014vz2d20 Bordeaux Sciences Ɖconomiques'),
(100947, 'https://ror.org/014ye1258', 'en', 1, 'https://ror.org/014ye1258 Rutgers New Jersey Medical School'),
(100948, 'https://ror.org/015144r31', 'fr', 1, 'https://ror.org/015144r31 Trajectoires dƩveloppementales & psychiatrie'),
(100949, 'https://ror.org/0151c4n05', 'pt', 1, 'https://ror.org/0151c4n05 Tribunal de Contas'),
(100950, 'https://ror.org/01526xe10', 'en', 1, 'https://ror.org/01526xe10 Boston Consulting Group, Boston Consulting Group (United States)'),
(100951, 'https://ror.org/01554y636', 'fr', 1, 'https://ror.org/01554y636 Institut de philosophie de Grenoble'),
(100952, 'https://ror.org/01569q067', 'en', 1, 'https://ror.org/01569q067 Bia Lamplighter College of Education'),
(100953, 'https://ror.org/0157pnt69', 'en', 1, 'https://ror.org/0157pnt69 Claremont Graduate University UniversitƩ de claremont'),
(100954, 'https://ror.org/0157t2j08', 'fr', 1, 'https://ror.org/0157t2j08'),
(100955, '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'),
(100956, 'https://ror.org/015a85k79', 'fr', 1, 'https://ror.org/015a85k79 Infections Virales et Pathologie ComparƩe'),
(100957, 'https://ror.org/015cgnr56', 'en', 1, 'https://ror.org/015cgnr56 Okinawa International University ę²–ēø„å›½éš›å¤§å­¦'),
(100958, 'https://ror.org/015cqax60', 'fr', 1, 'https://ror.org/015cqax60'),
(100959, 'https://ror.org/015em2733', 'en', 1, 'https://ror.org/015em2733 Data Documentation Initiative Alliance'),
(100960, 'https://ror.org/015hj0r78', 'en', 1, 'https://ror.org/015hj0r78 Crystal Bridges Museum of American Art'),
(100961, 'https://ror.org/015hnv758', 'en', 1, 'https://ror.org/015hnv758 Minnesota Humanities Center'),
(100962, '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'),
(100963, 'https://ror.org/015qxt173', 'en', 1, 'https://ror.org/015qxt173 Lullaby Trust'),
(100964, 'https://ror.org/015scty35', 'en', 1, 'https://ror.org/015scty35 Kastamonu University Kastamonu Üniversitesi'),
(100965, 'https://ror.org/015waqy33', 'en', 1, 'https://ror.org/015waqy33 CMR University ಸಿ ą²Žą²®ą³ ą²†ą²°ą³ ą²µą²æą²¶ą³ą²µą²µą²æą²§ą³ą²Æą²¾ą²²ą²Æ'),
(100966, 'https://ror.org/015x8rz21', 'fr', 1, 'https://ror.org/015x8rz21 Irradiated Solids Laboratory Laboratoire des Solides IrradiƩs'),
(100967, 'https://ror.org/015xq7480', 'en', 1, 'https://ror.org/015xq7480 Nederlands Instituut voor Onderzoek van de Gezondheidszorg Netherlands Institute for Health Services Research'),
(100968, 'https://ror.org/015yand93', 'fr', 1, 'https://ror.org/015yand93'),
(100969, 'https://ror.org/015z7n187', 'pt', 1, 'https://ror.org/015z7n187 Laboratório de Robótica e Sistemas de Engenharia'),
(100970, 'https://ror.org/0160ba067', 'en', 1, 'https://ror.org/0160ba067 Humanities Council of Washington'),
(100971, 'https://ror.org/016119s16', 'en', 1, 'https://ror.org/016119s16 Bridgewater College'),
(100972, 'https://ror.org/0161w0r98', 'en', 1, 'https://ror.org/0161w0r98 Department for the Economy');
INSERT INTO `rors` VALUES
(100973, 'https://ror.org/01621q256', 'en', 1, 'https://ror.org/01621q256 Coastal Carolina University'),
(100974, 'https://ror.org/0162y2387', 'fr', 1, 'https://ror.org/0162y2387 Association Francaise contre les Myopathies French Muscular Dystrophy Association'),
(100975, 'https://ror.org/0162z8b04', 'en', 1, 'https://ror.org/0162z8b04 Idaho State University Universidad Estatal de Idaho UniversitĆ© d''Ɖtat d''idaho'),
(100976, 'https://ror.org/016476m91', 'en', 1, 'https://ror.org/016476m91 Prifysgol Aberdeen University of Aberdeen'),
(100977, 'https://ror.org/0165awy39', 'en', 1, 'https://ror.org/0165awy39 Brite Divinity School'),
(100978, 'https://ror.org/01690jq43', 'en', 1, 'https://ror.org/01690jq43 Loughborough College'),
(100979, 'https://ror.org/016bk3j80', 'en', 1, 'https://ror.org/016bk3j80 Brooklyn Children’s Museum'),
(100980, 'https://ror.org/016bysn57', 'en', 1, 'https://ror.org/016bysn57 University of Northern Colorado'),
(100981, 'https://ror.org/016cpew17', 'en', 1, 'https://ror.org/016cpew17 State Regional Archives in Prague StƔtnƭ oblastnƭ archiv v Praze'),
(100982, 'https://ror.org/016crzw98', 'fr', 1, 'https://ror.org/016crzw98 Centre RĆ©gional d’Innovation et de Transferts Technologiques des Industries du Bois'),
(100983, 'https://ror.org/016cv4348', 'no_lang_code', 1, 'https://ror.org/016cv4348 Glycomine, Inc., Glycomine, Inc. (United States)'),
(100984, 'https://ror.org/016df9e78', 'en', 1, 'https://ror.org/016df9e78 Nevada Humanities'),
(100985, 'https://ror.org/016ebag96', 'en', 1, 'https://ror.org/016ebag96 Korea National Open University ķ•œźµ­ė°©ģ†”ķ†µģ‹ ėŒ€ķ•™źµ'),
(100986, 'https://ror.org/016emmf09', 'en', 1, 'https://ror.org/016emmf09 Pan-European University PanevropskĆ” univerzita, a.s.'),
(100987, 'https://ror.org/016f61126', 'en', 1, 'https://ror.org/016f61126 Medical University of Lublin Uniwersytet Medyczny w Lublinie'),
(100988, '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'),
(100989, 'https://ror.org/016hv6q66', 'es', 1, 'https://ror.org/016hv6q66 Escuela Nacional de AntropologĆ­a e Historia'),
(100990, 'https://ror.org/016jkmz48', 'en', 1, 'https://ror.org/016jkmz48 North Hertfordshire College'),
(100991, 'https://ror.org/016jp5b92', 'en', 1, 'https://ror.org/016jp5b92 Tanta University UniversitĆ© de Tanta Ų¬Ų§Ł…Ų¹Ų© طنطا'),
(100992, 'https://ror.org/016jxby71', 'pt', 1, 'https://ror.org/016jxby71 Escola Superior de Educação de Fafe'),
(100993, 'https://ror.org/016pnwd02', 'en', 1, 'https://ror.org/016pnwd02 FrƩdƩric Joliot Institute for Life Sciences Institut des Sciences du Vivant FrƩdƩric Joliot'),
(100994, 'https://ror.org/016r2hq43', 'fr', 1, 'https://ror.org/016r2hq43 Laboratoire de Chimie Physique'),
(100995, 'https://ror.org/016sewp10', 'en', 1, 'https://ror.org/016sewp10 Rhodes University'),
(100996, 'https://ror.org/016st3p78', 'en', 1, 'https://ror.org/016st3p78 LuleƄ University of Technology LuleƄ tekniska universitet Luulajan teknillinen yliopisto'),
(100997, 'https://ror.org/016vx5156', 'fr', 1, 'https://ror.org/016vx5156 HƓpital EuropƩen Georges-Pompidou'),
(100998, 'https://ror.org/016vzmc05', 'no_lang_code', 1, 'https://ror.org/016vzmc05 Nippon Steel, Nippon Steel (Japan)'),
(100999, 'https://ror.org/016w4zy25', 'fr', 1, 'https://ror.org/016w4zy25 Centre de Recherche "Individus, Epreuves, SociƩtƩs"'),
(101000, 'https://ror.org/016wdna72', 'fr', 1, 'https://ror.org/016wdna72 Centre de Recherche en Sciences et Technologies de l''Information et de la Communication'),
(101001, 'https://ror.org/016wpzq40', 'fr', 1, 'https://ror.org/016wpzq40 Laboratoire de GƩnƩtique MƩdicale Laboratory of Medical Genetics'),
(101002, 'https://ror.org/016xe6q07', 'no_lang_code', 1, 'https://ror.org/016xe6q07 Hanwha Group (South Korea) ķ•œķ™”ź·øė£¹'),
(101003, 'https://ror.org/016zyd315', 'en', 1, 'https://ror.org/016zyd315 Pan-European University Paneurópska VysokÔ Ŕkola'),
(101004, 'https://ror.org/0170z8493', 'en', 1, 'https://ror.org/0170z8493 Shaanxi Normal University é™•č„æåøˆčŒƒå¤§å­¦'),
(101005, 'https://ror.org/0171mag52', 'en', 1, 'https://ror.org/0171mag52 Centro de Vuelo Espacial Goddard Goddard Space Flight Center'),
(101006, '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'),
(101007, 'https://ror.org/0172v8z89', 'fr', 1, 'https://ror.org/0172v8z89 Gouvernement de la RƩpublique franƧaise Government of France'),
(101008, 'https://ror.org/0174shg90', 'es', 1, 'https://ror.org/0174shg90 Universidad de Extremadura University of Extremadura'),
(101009, 'https://ror.org/017a2yz34', 'en', 1, 'https://ror.org/017a2yz34 SUNY Delhi'),
(101010, 'https://ror.org/017afg044', 'en', 1, 'https://ror.org/017afg044 Education and Research Library of the Pilsen Region'),
(101011, 'https://ror.org/017ahwm60', 'en', 1, 'https://ror.org/017ahwm60 Preston''s College'),
(101012, 'https://ror.org/017cfeh02', 'fr', 1, 'https://ror.org/017cfeh02 National Engineering School of Saint-Ɖtienne Ɖcole Nationale d''IngĆ©nieurs de Saint-Ɖtienne'),
(101013, 'https://ror.org/017cjz748', 'en', 1, 'https://ror.org/017cjz748 Ulsan National Institute of Science and Technology ģšøģ‚°ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(101014, 'https://ror.org/017d8gk22', 'en', 1, 'https://ror.org/017d8gk22 Morgan State University Universidad Estatal de Morgan UniversitĆ© d''Ɖtat morgan'),
(101015, 'https://ror.org/017d9yp59', 'fr', 1, 'https://ror.org/017d9yp59 Laboratoire d''AƩrologie'),
(101016, 'https://ror.org/017fdfe13', 'en', 1, 'https://ror.org/017fdfe13 Cluster in Biomedicine'),
(101017, 'https://ror.org/017fpfn86', 'en', 1, 'https://ror.org/017fpfn86 National Postal Museum'),
(101018, 'https://ror.org/017gb1s53', 'la', 1, 'https://ror.org/017gb1s53 Collegium Intermarium Uczelnia Collegium Intermarium'),
(101019, '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'),
(101020, 'https://ror.org/017jyhg36', 'en', 1, 'https://ror.org/017jyhg36 Kungliga Musikhƶgskolan i Stockholm Royal College of Music in Stockholm'),
(101021, 'https://ror.org/017mqhz69', 'en', 1, 'https://ror.org/017mqhz69 Tobruk University Ų¬Ų§Ł…Ų¹Ų© طبرق'),
(101022, 'https://ror.org/017p6sq53', 'fr', 1, 'https://ror.org/017p6sq53 Matrice Extracellulaire et Dynamique Cellulaire MEDyC'),
(101023, 'https://ror.org/017sz3r20', 'no_lang_code', 1, 'https://ror.org/017sz3r20 Invesco, Invesco (United States)'),
(101024, 'https://ror.org/017tgbk05', 'fr', 0, 'https://ror.org/017tgbk05 Universitat de Tolosa University of Toulouse UniversitƩ de Toulouse'),
(101025, 'https://ror.org/017wgkd42', 'en', 1, 'https://ror.org/017wgkd42 Rajiv Gandhi University ą¤°ą¤¾ą¤œą„€ą¤µ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą§°ą¦¾ą¦œą§€ą§± ą¦—ą¦¾ą¦Øą§ą¦§ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(101026, 'https://ror.org/017yq1686', 'en', 1, 'https://ror.org/017yq1686 Nepal Academy of Tourism and Hotel Management'),
(101027, 'https://ror.org/01800zd49', 'en', 1, 'https://ror.org/01800zd49 Dundalk Institute of Technology InstitiĆŗid TeicneolaĆ­ochta DhĆŗn Dealgan'),
(101028, 'https://ror.org/0180r7w69', 'fr', 1, 'https://ror.org/0180r7w69 Centre de Robotique, Mines Paris, UniversitƩ PSL, Centre de Robotique (CAOR) Mines Paris, PSL University, Centre for Robotics (CAOR)'),
(101029, 'https://ror.org/0181xaa49', 'pt', 1, 'https://ror.org/0181xaa49 Polícia de Segurança Pública'),
(101030, 'https://ror.org/0182ff951', 'fr', 1, 'https://ror.org/0182ff951 Centre d''Ʃtudes et de recherche en droit administratif, constitutionnel, financier et fiscal'),
(101031, 'https://ror.org/0184vwv17', 'en', 1, 'https://ror.org/0184vwv17 University of Fort Hare'),
(101032, 'https://ror.org/0187thv39', 'en', 1, 'https://ror.org/0187thv39 Kwalejin Ilimi ta St. Louis St. Louis College of Education'),
(101033, 'https://ror.org/018906e22', 'en', 1, 'https://ror.org/018906e22 Erasmus MC'),
(101034, 'https://ror.org/0189yvq06', 'fr', 1, 'https://ror.org/0189yvq06 Centre de Biologie Structurale'),
(101035, 'https://ror.org/018afyw53', 'en', 1, 'https://ror.org/018afyw53 GESIS - Leibniz-Institut für Sozialwissenschaften GESIS - Leibniz-Institute for the Social Sciences'),
(101036, 'https://ror.org/018dfmm35', 'fr', 1, 'https://ror.org/018dfmm35 Immunologie et Nouveaux Concepts en ImmunothƩrapie Immunology and New Concepts in Immunotherapy'),
(101037, 'https://ror.org/018g09a27', 'tr', 1, 'https://ror.org/018g09a27 Bornova Türkan Ɩzilhan Devlet Hastanesi'),
(101038, 'https://ror.org/018g8cj68', 'en', 1, 'https://ror.org/018g8cj68 University of Technology and Applied Sciences-Suhar Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© فرع ŲµŲ­Ų§Ų±'),
(101039, 'https://ror.org/018hded08', 'en', 1, 'https://ror.org/018hded08 Hebei University of Technology ę²³åŒ—å·„äøšå¤§å­¦'),
(101040, 'https://ror.org/018hjpz25', 'en', 1, 'https://ror.org/018hjpz25 Sheffield Teaching Hospitals NHS Foundation Trust'),
(101041, 'https://ror.org/018m4p414', 'pt', 1, 'https://ror.org/018m4p414 Instituto Mediterrâneo para a Agricultura Ambiente e Desenvolvimento'),
(101042, 'https://ror.org/018nzqy79', 'fr', 1, 'https://ror.org/018nzqy79 Laboratoire Analyse, GƩomƩtrie et Applications'),
(101043, 'https://ror.org/018r7pa17', 'fr', 0, 'https://ror.org/018r7pa17 Institut de Biologie systƩmique et synthƩtique Institute of Systems & Synthetic Biology'),
(101044, 'https://ror.org/018sx6595', 'fr', 1, 'https://ror.org/018sx6595 ArchƩologie des AmƩriques'),
(101045, 'https://ror.org/018tp9r65', 'de', 1, 'https://ror.org/018tp9r65 Deutsche Stiftung für Engagement und Ehrenamt'),
(101046, 'https://ror.org/018wzhc20', 'en', 1, 'https://ror.org/018wzhc20 United Nations Educational, Scientific and Cultural Organization Afghanistan'),
(101047, 'https://ror.org/018yqmx18', 'en', 1, 'https://ror.org/018yqmx18 Huntington Bancshares, Huntington Bancshares (United States)'),
(101048, 'https://ror.org/018z38380', 'fr', 1, 'https://ror.org/018z38380'),
(101049, 'https://ror.org/018zpxs61', 'en', 1, 'https://ror.org/018zpxs61 Kazimierz Wielki University in Bydgoszcz Uniwersytet Kazimierza Wielkiego'),
(101050, 'https://ror.org/0190ak572', 'en', 1, 'https://ror.org/0190ak572 New York University Universidad de Nueva York UniversitƩ de New York'),
(101051, 'https://ror.org/0191b3351', 'en', 1, 'https://ror.org/0191b3351 VID Specialized University VID Vitenskapelige HĆøgskole'),
(101052, 'https://ror.org/01920cw75', 'fr', 1, 'https://ror.org/01920cw75 Galaxies, Etoiles, Physique et Instrumentation'),
(101053, 'https://ror.org/0197n2v40', 'en', 1, 'https://ror.org/0197n2v40 Pitzer College'),
(101054, 'https://ror.org/01996tc28', 'en', 1, 'https://ror.org/01996tc28 Munich Institute for Astro- and Particle Physics'),
(101055, 'https://ror.org/0199hds37', 'fr', 1, 'https://ror.org/0199hds37 UniversitƩ Sorbonne Paris Nord'),
(101056, 'https://ror.org/0199vdr69', 'en', 1, 'https://ror.org/0199vdr69 Principal Financial Group, Principal Financial Group (United States)'),
(101057, 'https://ror.org/019apvn83', 'en', 1, 'https://ror.org/019apvn83 Ahmadu Bello University YunifĆ”sĆ­tƬ ƀmį»Ģdù BĆ©llò'),
(101058, 'https://ror.org/019bzvf55', 'en', 1, 'https://ror.org/019bzvf55 Kurukshetra University ą¤•ą„ą¤°ą„ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਕੁਰੂਕਸ਼ੇਤਰ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(101059, 'https://ror.org/019df2r84', 'fr', 1, 'https://ror.org/019df2r84 Structure et Dynamique des Langues'),
(101060, 'https://ror.org/019ehh677', 'en', 1, 'https://ror.org/019ehh677 Cotton University ą¦•ą¦Ÿą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(101061, 'https://ror.org/019jb9m51', 'it', 1, 'https://ror.org/019jb9m51 Ospedale di Macerata'),
(101062, 'https://ror.org/019jds967', 'en', 1, 'https://ror.org/019jds967 Nevşehir Hacı Bektaş Veli University Nevşehir Üniversitesi'),
(101063, 'https://ror.org/019k1pd13', 'en', 1, 'https://ror.org/019k1pd13 Keski-Ruotsin yliopisto Mid Sweden University Mittuniversitetet'),
(101064, 'https://ror.org/019k25552', 'en', 1, 'https://ror.org/019k25552 National Heritage Institute'),
(101065, 'https://ror.org/019kjfs29', 'es', 1, 'https://ror.org/019kjfs29 Instituto Tecnológico Superior de Calkiní'),
(101066, 'https://ror.org/019kqby73', 'fr', 1, 'https://ror.org/019kqby73 Institut de Neurosciences des SystĆØmes'),
(101067, 'https://ror.org/019q0z051', 'en', 1, 'https://ror.org/019q0z051 Rocky Mountain Advanced Computing Consortium'),
(101068, 'https://ror.org/019tbdj08', 'en', 1, 'https://ror.org/019tbdj08 Acadamh Rƭoga na hƉireann Royal Irish Academy'),
(101069, 'https://ror.org/019ts0j55', 'en', 1, 'https://ror.org/019ts0j55 California State University, Bakersfield UniversitĆ© d''Ɖtat de californie Ć  bakersfield'),
(101070, 'https://ror.org/019v7sr25', 'fr', 1, 'https://ror.org/019v7sr25 DƩveloppement Embryonnaire, FertilitƩ et Environnement'),
(101071, 'https://ror.org/019wb3548', 'en', 1, 'https://ror.org/019wb3548 Grassroot Soccer, Inc.'),
(101072, 'https://ror.org/01a099706', 'en', 1, 'https://ror.org/01a099706 Shantou University 汕夓大学'),
(101073, 'https://ror.org/01a0ez112', 'fr', 1, 'https://ror.org/01a0ez112 Laboratoire EcoSystèmes et Sociétés En Montagne'),
(101074, 'https://ror.org/01a28zg77', 'en', 1, 'https://ror.org/01a28zg77 Basque Center on Cognition, Brain and Language'),
(101075, 'https://ror.org/01a2m8x11', 'en', 1, 'https://ror.org/01a2m8x11 Cayuga Community College'),
(101076, 'https://ror.org/01a325446', 'de', 1, 'https://ror.org/01a325446 Deutsche Physikalische Gesellschaft e.V. German Physical Society'),
(101077, 'https://ror.org/01a4enz31', 'en', 1, 'https://ror.org/01a4enz31 SPPIN - Saints-PĆØres Paris Institute for Neurosciences'),
(101078, 'https://ror.org/01a58dz79', 'es', 1, 'https://ror.org/01a58dz79 Editorial Mar Caribe'),
(101079, 'https://ror.org/01a5ke137', 'cs', 1, 'https://ror.org/01a5ke137 Nemocnice PardubickƩho Kraje'),
(101080, 'https://ror.org/01a6zh966', 'fr', 1, 'https://ror.org/01a6zh966 Institut de Neurosciences Cognitives et IntĆ©gratives d’Aquitaine'),
(101081, 'https://ror.org/01aa12z17', 'id', 1, 'https://ror.org/01aa12z17 Universitas Islam Negeri Ar-Raniry, Universitas Islam Negeri Ar-Raniry Banda Aceh'),
(101082, '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'),
(101083, 'https://ror.org/01ag91m47', 'fr', 1, 'https://ror.org/01ag91m47 Centre de recherche droit Dauphine'),
(101084, 'https://ror.org/01agvej60', 'en', 1, 'https://ror.org/01agvej60 Shanghai Customs College äøŠęµ·ęµ·å…³å­¦é™¢'),
(101085, 'https://ror.org/01aj0bf86', 'fr', 1, 'https://ror.org/01aj0bf86 Autonomie, GƩrontologie, E-santƩ, Imagerie et SociƩtƩ'),
(101086, 'https://ror.org/01an57a31', 'en', 1, 'https://ror.org/01an57a31 Pusan National University ė¶€ģ‚°ėŒ€ķ•™źµ'),
(101087, 'https://ror.org/01anhj553', 'fr', 1, 'https://ror.org/01anhj553 UCLy (Lyon Catholic University) UniversitƩ catholique de lyon'),
(101088, 'https://ror.org/01apday90', 'no_lang_code', 1, 'https://ror.org/01apday90 Nippon Steel (Germany)'),
(101089, 'https://ror.org/01ar2dh82', 'en', 1, 'https://ror.org/01ar2dh82 Byte Road, Byte Road (Portugal)'),
(101090, 'https://ror.org/01avfeb97', 'en', 1, 'https://ror.org/01avfeb97 Imam Alkadhim University College ŁƒŁ„ŁŠŲ© الامام Ų§Ł„ŁƒŲ§ŲøŁ…'),
(101091, 'https://ror.org/01aw5y656', 'en', 1, 'https://ror.org/01aw5y656 Yanching Institute of Technology 燕京理巄学院'),
(101092, 'https://ror.org/01awjf572', 'en', 1, 'https://ror.org/01awjf572 Kementerian Kesihatan Ministry of Health'),
(101093, 'https://ror.org/01awv9175', 'en', 1, 'https://ror.org/01awv9175 Longwood University'),
(101094, 'https://ror.org/01b0sx541', 'fr', 1, 'https://ror.org/01b0sx541 Adventist University of France Campus adventiste du salĆØve'),
(101095, '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.'),
(101096, 'https://ror.org/01b266018', 'fr', 1, 'https://ror.org/01b266018 AcadƩmie Nationale de MƩdecine National Academy of Medicine'),
(101097, 'https://ror.org/01b2epx09', 'fr', 1, 'https://ror.org/01b2epx09 Laboratoire des Sciences de l''IngƩnieur pour l''Environnement'),
(101098, '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'),
(101099, 'https://ror.org/01b5rtm37', 'fr', 1, 'https://ror.org/01b5rtm37 Genome Integrity, RNA and Cancer IntƩgritƩ du gƩnome, ARN et cancer'),
(101100, 'https://ror.org/01b6kha49', 'en', 1, 'https://ror.org/01b6kha49 Walter and Eliza Hall Institute of Medical Research'),
(101101, 'https://ror.org/01b9y2p27', 'en', 1, 'https://ror.org/01b9y2p27 Xi''an University of Finance and Economics č„æå®‰č“¢ē»å­¦é™¢'),
(101102, 'https://ror.org/01bc41c65', 'cs', 1, 'https://ror.org/01bc41c65 Dětský domov a MateřskĆ” Å”kola Beroun'),
(101103, 'https://ror.org/01bc9gv98', 'pt', 1, 'https://ror.org/01bc9gv98 Jardim Zoológico'),
(101104, 'https://ror.org/01bcckr12', 'en', 1, 'https://ror.org/01bcckr12 Canada Energy Regulator RĆ©gie de l’énergie du Canada'),
(101105, 'https://ror.org/01bch8q67', 'fr', 1, 'https://ror.org/01bch8q67 Observatoire de Physique du Globe de Clermont-Ferrand'),
(101106, 'https://ror.org/01bcqbv56', 'fr', 1, 'https://ror.org/01bcqbv56 HÓpital Adélaïde-Hautval'),
(101107, 'https://ror.org/01bcvhf32', 'pt', 1, 'https://ror.org/01bcvhf32 Unidade Local de SaĆŗde da Guarda EPE'),
(101108, 'https://ror.org/01beh4y53', 'en', 0, 'https://ror.org/01beh4y53 Franklin Resources, Franklin Resources (United States)'),
(101109, 'https://ror.org/01bg6x409', 'en', 1, 'https://ror.org/01bg6x409 Canadian Scientific Submersible Facility'),
(101110, 'https://ror.org/01bgbk171', 'en', 1, 'https://ror.org/01bgbk171 Northern Health and Social Care Trust'),
(101111, 'https://ror.org/01bj4g149', 'en', 1, 'https://ror.org/01bj4g149 Montana State University Foundation'),
(101112, 'https://ror.org/01bma3e06', 'pt', 1, 'https://ror.org/01bma3e06 Cat Clinic ClĆ­nica dos Gatos (Portugal)'),
(101113, 'https://ror.org/01bn5c048', 'fr', 1, 'https://ror.org/01bn5c048 Laboratoire de Photonique Quantique et MolƩculaire Laboratory of Quantum and Molecular Photonics'),
(101114, 'https://ror.org/01bn89z48', 'en', 1, 'https://ror.org/01bn89z48 Shanghai International Studies University äøŠęµ·å¤–å›½čÆ­å¤§å­¦'),
(101115, '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'),
(101116, 'https://ror.org/01bpj7k68', 'fr', 1, 'https://ror.org/01bpj7k68 Centre d’Investigation Clinique Innovation Technologique de Nancy Nancy Clinical Investigation Centre Innovative Technology'),
(101117, 'https://ror.org/01bqt7532', 'en', 1, 'https://ror.org/01bqt7532 University of Belgrade – Technical Faculty in Bor Univerzitet u Beogradu – Tehnički fakultet u Boru'),
(101118, 'https://ror.org/01brjce02', 'es', 1, 'https://ror.org/01brjce02 Instituto Tecnológico Superior de Atlixco'),
(101119, 'https://ror.org/01bvh8x83', 'no_lang_code', 1, 'https://ror.org/01bvh8x83 Sigma Group (Czechia)'),
(101120, 'https://ror.org/01bvv5f54', 'en', 1, 'https://ror.org/01bvv5f54 Bį»™ CĆ“ng Thʰʔng Ministry of Industry and Trade'),
(101121, 'https://ror.org/01c1w6d29', 'en', 1, 'https://ror.org/01c1w6d29 Otto-Friedrich-UniversitƤt Bamberg University of Bamberg'),
(101122, 'https://ror.org/01c5wha71', 'en', 1, 'https://ror.org/01c5wha71 Tun Hussein Onn University of Malaysia Universiti Tun Hussein Onn Malaysia'),
(101123, 'https://ror.org/01c6vgf77', 'fr', 1, 'https://ror.org/01c6vgf77 Biochemistry Laboratory Laboratoire de Biochimie'),
(101124, 'https://ror.org/01c8f2y33', 'en', 1, 'https://ror.org/01c8f2y33 Moss Landing Marine Laboratories'),
(101125, 'https://ror.org/01c98q459', 'sv', 1, 'https://ror.org/01c98q459 Region Jƶnkƶpings lƤn'),
(101126, 'https://ror.org/01c9cnw16', 'tr', 1, 'https://ror.org/01c9cnw16 Ankara Medipol University Ankara Medipol Üniversitesi'),
(101127, 'https://ror.org/01cah1n37', 'fr', 1, 'https://ror.org/01cah1n37 Institut des Sciences de l''Evolution de Montpellier'),
(101128, 'https://ror.org/01cbgsf04', 'fr', 1, 'https://ror.org/01cbgsf04'),
(101129, 'https://ror.org/01cbya385', 'en', 1, 'https://ror.org/01cbya385 New College of Florida'),
(101130, 'https://ror.org/01cesdt21', 'en', 1, 'https://ror.org/01cesdt21 National Institute for Public Health and the Environment Rijksinstituut voor Volksgezondheid en Milieu'),
(101131, 'https://ror.org/01cfdpz73', 'fr', 1, 'https://ror.org/01cfdpz73 Institut SupĆ©rieur d’Informatique et de Gestion de Goma'),
(101132, 'https://ror.org/01cfkyz79', 'en', 1, 'https://ror.org/01cfkyz79 Department of Science Service ąøąø£ąø”ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąøšąø£ąø“ąøąø²ąø£'),
(101133, 'https://ror.org/01cg9ws23', 'en', 1, 'https://ror.org/01cg9ws23 Transylvania University of Brașov Universitatea Transilvania din Brașov'),
(101134, 'https://ror.org/01cgac405', 'fr', 1, 'https://ror.org/01cgac405 Chimie de la MatiĆØre Complexe'),
(101135, 'https://ror.org/01ck3zk14', 'pl', 1, 'https://ror.org/01ck3zk14 Społeczna Akademia Nauk University of Social Sciences'),
(101136, 'https://ror.org/01cmkbc96', 'en', 1, 'https://ror.org/01cmkbc96 Fulton–Montgomery Community College'),
(101137, 'https://ror.org/01cmnjq37', 'fr', 1, 'https://ror.org/01cmnjq37 Centre LƩon BƩrard'),
(101138, 'https://ror.org/01cqd9q31', 'fr', 1, 'https://ror.org/01cqd9q31 Cibles et MƩdicaments des Infections et de l''ImmunitƩ'),
(101139, 'https://ror.org/01cqgcv21', 'en', 1, 'https://ror.org/01cqgcv21 Precise Measurement Technology Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗē²¾åÆ†ęø¬å®šęŠ€č”“ęŒÆčˆˆč²”å›£'),
(101140, 'https://ror.org/01ct9zb26', 'en', 1, 'https://ror.org/01ct9zb26 Wulin Academy of Arts ę­¦ęž—ę›øē•«é™¢'),
(101141, 'https://ror.org/01cvyp776', 'en', 1, 'https://ror.org/01cvyp776 Petroleum Training Institute'),
(101142, 'https://ror.org/01cw28e72', 'fr', 1, 'https://ror.org/01cw28e72 Institut de Recherche sur les ArchƩoMATƩriaux'),
(101143, 'https://ror.org/01cxqmw89', 'en', 1, 'https://ror.org/01cxqmw89 Shanghai Normal University 上海师范大学'),
(101144, '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'),
(101145, 'https://ror.org/01cyb5v38', 'en', 1, 'https://ror.org/01cyb5v38 Fujian Jiangxia University ē¦å»ŗę±Ÿå¤å­¦é™¢'),
(101146, 'https://ror.org/01d0jcz74', 'en', 1, 'https://ror.org/01d0jcz74 Jingdezhen Ceramic Institute 景德镇陶瓷学院'),
(101147, 'https://ror.org/01d1erx18', 'en', 1, 'https://ror.org/01d1erx18 East China University of Political Science and Law åŽäøœę”æę³•å¤§å­¦'),
(101148, 'https://ror.org/01d1g0t67', 'en', 1, 'https://ror.org/01d1g0t67 Institut za primenu nuklearne energije, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠæŃ€ŠøŠ¼ŠµŠ½Ńƒ Š½ŃƒŠŗŠ»ŠµŠ°Ń€Š½Šµ ŠµŠ½ŠµŃ€Š³ŠøŃ˜Šµ Institute for the Application of Nuclear Energy'),
(101149, 'https://ror.org/01d2qgg03', 'de', 0, 'https://ror.org/01d2qgg03 NFDI-MatWerk, Nationale Forschungsdateninfrastruktur für Materialwissenschaft & Werkstofftechnik National Research Data Infrastructure for Materials Science & Engineering'),
(101150, 'https://ror.org/01d6p8r58', 'es', 1, 'https://ror.org/01d6p8r58 Instituto Tecnológico de Ciudad GuzmÔn'),
(101151, 'https://ror.org/01da06998', 'es', 1, 'https://ror.org/01da06998 Higher Technological Institute of Irapuato Instituto Tecnológico Superior de Irapuato'),
(101152, 'https://ror.org/01db2yn10', 'no_lang_code', 0, 'https://ror.org/01db2yn10 Ceralink (United States)'),
(101153, 'https://ror.org/01ddr6d46', 'fr', 1, 'https://ror.org/01ddr6d46 DƩlƩgation RƩgionale Occitanie MƩditerranƩe'),
(101154, 'https://ror.org/01de7ab51', 'en', 1, 'https://ror.org/01de7ab51 Gono University ą¦—ą¦£ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(101155, 'https://ror.org/01deh9c76', 'nl', 1, 'https://ror.org/01deh9c76 Deltares'),
(101156, 'https://ror.org/01df79331', 'fr', 1, 'https://ror.org/01df79331 Recherche clinique appliquƩe Ơ l''hƩmatologie'),
(101157, 'https://ror.org/01dfzdy43', 'fr', 1, 'https://ror.org/01dfzdy43 Laboratoire d''Ingénierie pour les Systèmes Complexes'),
(101158, 'https://ror.org/01dfznc08', 'en', 1, 'https://ror.org/01dfznc08 Rock Flow Dynamics, Rock Flow Dynamics (United Kingdom)'),
(101159, 'https://ror.org/01dg9a450', 'fr', 1, 'https://ror.org/01dg9a450 Agronomy and Environment Laboratory Laboratoire Agronomie et Environnement'),
(101160, 'https://ror.org/01djcs087', 'en', 1, 'https://ror.org/01djcs087 Rosalind Franklin Institute'),
(101161, 'https://ror.org/01dm2vg23', 'pt', 1, 'https://ror.org/01dm2vg23 Instituto PolitƩcnico Jean Piaget do Norte'),
(101162, 'https://ror.org/01dmkgv38', 'no', 1, 'https://ror.org/01dmkgv38 NODA Nordnorsk Design- og Arkitektursenter'),
(101163, 'https://ror.org/01dmq3816', 'en', 1, 'https://ror.org/01dmq3816 Brooklands College'),
(101164, 'https://ror.org/01dn2ng71', 'en', 1, 'https://ror.org/01dn2ng71 JAMK University of Applied Sciences JyvƤskylƤn ammattikorkeakoulu'),
(101165, 'https://ror.org/01dn3gk89', 'en', 1, 'https://ror.org/01dn3gk89 Honeywell Federal Manufacturing and Technologies (United States)'),
(101166, 'https://ror.org/01dn7gg32', 'fr', 1, 'https://ror.org/01dn7gg32 Ɖcole EuropĆ©enne SupĆ©rieure de l''Image'),
(101167, 'https://ror.org/01dp7jr64', 'fr', 1, 'https://ror.org/01dp7jr64 Ɖcole Normale SupĆ©rieure'),
(101168, 'https://ror.org/01dq3qq95', 'en', 1, 'https://ror.org/01dq3qq95 Beibu Gulf University åŒ—éƒØę¹¾å¤§å­¦'),
(101169, 'https://ror.org/01dqmj897', 'fr', 1, 'https://ror.org/01dqmj897 Laboratoire Architecture Ville Urbanisme Environnement'),
(101170, 'https://ror.org/01dqrx648', 'en', 1, 'https://ror.org/01dqrx648 Nakhchivan University NaxƧıvan Universiteti'),
(101171, 'https://ror.org/01drpwb22', 'en', 1, 'https://ror.org/01drpwb22 University of Chester'),
(101172, 'https://ror.org/01dt7qh15', 'en', 1, 'https://ror.org/01dt7qh15 AREA Science Park'),
(101173, 'https://ror.org/01dthb180', 'fr', 1, 'https://ror.org/01dthb180 EpidƩmiosurveillance et circulation des parasites dans les environnements'),
(101174, 'https://ror.org/01dvske68', 'en', 0, 'https://ror.org/01dvske68 Base4NFDI, Basic Services for NFDI Basisdienste für die NFDI'),
(101175, 'https://ror.org/01dwzy755', 'fr', 1, 'https://ror.org/01dwzy755 Institut Desbrest d''EpidƩmiologie et de SantƩ Publique'),
(101176, 'https://ror.org/01dyfj824', 'fr', 1, 'https://ror.org/01dyfj824 Laboratoire Interdisciplinaire de Recherche en Innovations SociƩtales'),
(101177, 'https://ror.org/01dzjez04', 'en', 1, 'https://ror.org/01dzjez04 Eskişehir Osmangazi University Eskişehir Osmangazi Üniversitesi'),
(101178, 'https://ror.org/01dzn5f42', 'en', 1, 'https://ror.org/01dzn5f42 Istanbul University-Cerrahpaşa İstanbul Üniversitesi-Cerrahpaşa'),
(101179, 'https://ror.org/01e11zd27', 'no_lang_code', 1, 'https://ror.org/01e11zd27 Gilead Sciences (United Kingdom)'),
(101180, 'https://ror.org/01e4rvb54', 'en', 1, 'https://ror.org/01e4rvb54 Zhejiang Technical Institute of Economics ęµ™ę±ŸēœęŠ€ęœÆē»ęµŽē ”ē©¶é™¢'),
(101181, 'https://ror.org/01e4wd589', 'fr', 1, 'https://ror.org/01e4wd589 Centre de GƩnƩtique MƩdicale de Marseille Marseille Medical Genetics'),
(101182, 'https://ror.org/01e6ksd91', 'it', 1, 'https://ror.org/01e6ksd91 UniversitĆ  Iuav di Venezia'),
(101183, 'https://ror.org/01e6qks80', 'en', 1, 'https://ror.org/01e6qks80 Dalhousie University'),
(101184, 'https://ror.org/01earvv39', 'fr', 1, 'https://ror.org/01earvv39 PrƩdicteurs molƩculaires et nouvelles cibles en oncologie'),
(101185, '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'),
(101186, 'https://ror.org/01easw929', 'en', 1, 'https://ror.org/01easw929 Inha University ģøķ•˜ėŒ€ķ•™źµ'),
(101187, 'https://ror.org/01eb8ek77', 'en', 1, 'https://ror.org/01eb8ek77 United Nations Economic and Social Council'),
(101188, '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'),
(101189, 'https://ror.org/01ee94y34', 'fr', 1, 'https://ror.org/01ee94y34 Institut Pasteur de Bangui Pasteur Institute of Bangui'),
(101190, 'https://ror.org/01eem7c55', 'fr', 1, 'https://ror.org/01eem7c55 Imagerie et Cerveau Imaging and Brain'),
(101191, 'https://ror.org/01eezs655', 'en', 1, 'https://ror.org/01eezs655 University of Regensburg UniversitƤt Regensburg'),
(101192, 'https://ror.org/01egahc47', 'en', 1, 'https://ror.org/01egahc47 Royal College of Art Y Coleg Celf Brenhinol'),
(101193, 'https://ror.org/01egbmk61', 'fr', 1, 'https://ror.org/01egbmk61 Clinique de l''Acte et PSychosexualitƩ'),
(101194, 'https://ror.org/01ejp3f31', 'fr', 1, 'https://ror.org/01ejp3f31 Maison mƩditerranƩenne des sciences de l''Homme'),
(101195, 'https://ror.org/01epn2q93', 'en', 1, 'https://ror.org/01epn2q93 UniversitĆ© d''Ɖtat de weber Weber State University'),
(101196, 'https://ror.org/01epvyf46', 'en', 1, 'https://ror.org/01epvyf46 Northern Michigan University UniversitƩ du Nord du Michigan'),
(101197, 'https://ror.org/01erkkd87', 'en', 1, 'https://ror.org/01erkkd87 Methodist College of Education'),
(101198, 'https://ror.org/01et6g203', 'fr', 1, 'https://ror.org/01et6g203'),
(101199, 'https://ror.org/01etz1309', 'en', 1, 'https://ror.org/01etz1309 Pamukkale University Pamukkale Üniversitesi'),
(101200, 'https://ror.org/01ev6a639', 'no_lang_code', 1, 'https://ror.org/01ev6a639 Research International (United States)'),
(101201, 'https://ror.org/01f0prq08', 'en', 1, 'https://ror.org/01f0prq08 Red Cross University College of Nursing Rƶda Korsets hƶgskola'),
(101202, 'https://ror.org/01f1amm71', 'fr', 1, 'https://ror.org/01f1amm71 Laboratoire Traitement du Signal et de l''Image'),
(101203, 'https://ror.org/01f1fwk48', 'fr', 1, 'https://ror.org/01f1fwk48 Centre de Recherches en Histoire des IdƩes'),
(101204, 'https://ror.org/01f5c5978', 'fr', 1, 'https://ror.org/01f5c5978 Centre d''Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse'),
(101205, 'https://ror.org/01f5dqg10', 'en', 0, 'https://ror.org/01f5dqg10 NFDI4Earth'),
(101206, 'https://ror.org/01f5rdf64', 'en', 1, 'https://ror.org/01f5rdf64 Hefei University åˆč‚„å­¦é™¢'),
(101207, 'https://ror.org/01f5wp925', 'ca', 1, 'https://ror.org/01f5wp925 Open University of Catalonia Universidad Abierta de CataluƱa Universitat Oberta de Catalunya'),
(101208, 'https://ror.org/01f78dm33', 'en', 1, 'https://ror.org/01f78dm33 Federal College of Wildlife Management'),
(101209, 'https://ror.org/01f7a6m90', 'es', 1, 'https://ror.org/01f7a6m90 Instituto Tecnológico Agrario de Castilla y León'),
(101210, 'https://ror.org/01f7yer47', 'en', 1, 'https://ror.org/01f7yer47 Nanyang Normal University å—é˜³åøˆčŒƒå­¦é™¢'),
(101211, 'https://ror.org/01f8fjy92', 'pt', 1, 'https://ror.org/01f8fjy92 Guarapari City Hall Prefeitura Municipal de Guarapari'),
(101212, '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) ę²³åŒ—ēœäŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(101213, 'https://ror.org/01fcvkv23', 'en', 1, 'https://ror.org/01fcvkv23 Sirnak Üniversitesi Şırnak University'),
(101214, 'https://ror.org/01fd1kv21', 'en', 1, 'https://ror.org/01fd1kv21 National Institute of Biotechnology ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦¬ą¦¾ą¦Æą¦¼ą§‹ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(101215, 'https://ror.org/01fdxwh83', 'en', 1, 'https://ror.org/01fdxwh83 Hƶgskolan i BorƄs University of BorƄs'),
(101216, 'https://ror.org/01fe0jt45', 'no_lang_code', 1, 'https://ror.org/01fe0jt45 Robert Bosch (Germany)'),
(101217, 'https://ror.org/01fe8k477', 'fr', 0, 'https://ror.org/01fe8k477 Laboratoire Lorrain de Sciences Sociales'),
(101218, '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'),
(101219, 'https://ror.org/01fh86n78', 'es', 1, 'https://ror.org/01fh86n78 Autonomous University of Nuevo León Universidad Autónoma de Nuevo León'),
(101220, 'https://ror.org/01fjvrm82', 'en', 1, 'https://ror.org/01fjvrm82 Omohundro Institute of Early American History and Culture'),
(101221, 'https://ror.org/01fkg1209', 'en', 1, 'https://ror.org/01fkg1209 NorthEast Pacific Deep-sea Exploration Project'),
(101222, 'https://ror.org/01fmc2233', 'en', 1, 'https://ror.org/01fmc2233 Xi''an Medical University č„æå®‰åŒ»å­¦é™¢'),
(101223, 'https://ror.org/01fmctt82', 'fr', 1, 'https://ror.org/01fmctt82 Sciences Po Rennes'),
(101224, 'https://ror.org/01fp50e73', 'en', 1, 'https://ror.org/01fp50e73 Axon Enterprise, Axon Enterprise (United States)'),
(101225, 'https://ror.org/01fp8z436', 'fr', 1, 'https://ror.org/01fp8z436 Institut Pasteur de la Guyane'),
(101226, 'https://ror.org/01fpqqe90', 'fr', 1, 'https://ror.org/01fpqqe90 Ɖcole Nationale SupĆ©rieure d''IngĆ©nieurs de Caen'),
(101227, 'https://ror.org/01fqhas03', 'en', 1, 'https://ror.org/01fqhas03 B.S. Abdur Rahman Crescent Institute of Science & Technology பி. ą®Žą®øąÆ. ą®…ą®ŖąÆą®¤ąÆą®°ąÆ ą®°ą®•ąÆą®®ą®¾ą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(101228, 'https://ror.org/01fsptq02', 'en', 1, 'https://ror.org/01fsptq02 Trafford College'),
(101229, 'https://ror.org/01fvx3s14', 'fr', 1, 'https://ror.org/01fvx3s14 Laboratoire Dynamique du Langage'),
(101230, 'https://ror.org/01fw8ag12', 'en', 1, 'https://ror.org/01fw8ag12 SUNY Adirondack'),
(101231, 'https://ror.org/01fxqs415', 'tr', 1, 'https://ror.org/01fxqs415 Kutahya Saglik Bilimleri Universitesi Kütahya Health Sciences University'),
(101232, 'https://ror.org/01g0jya04', 'en', 1, 'https://ror.org/01g0jya04 Dar Al-Hekma University Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± Ų§Ł„Ų­ŁƒŁ…Ų©'),
(101233, 'https://ror.org/01g119h54', 'pt', 1, 'https://ror.org/01g119h54 Lógica EM SA, Lógica EM SA (Portugal)'),
(101234, 'https://ror.org/01g21pa45', 'nl', 1, 'https://ror.org/01g21pa45 Amphia Ziekenhuis'),
(101235, 'https://ror.org/01g3jts20', 'en', 1, 'https://ror.org/01g3jts20 Air Force Harbin Flying College äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›å“ˆå°”ę»Øé£žč”Œå­¦é™¢'),
(101236, 'https://ror.org/01g3mb532', 'fr', 1, 'https://ror.org/01g3mb532 Hubert Curien Pluridisciplinary Institute Institut Pluridisciplinaire Hubert Curien'),
(101237, 'https://ror.org/01g72me42', 'en', 1, 'https://ror.org/01g72me42 Nuu Chah Nulth Tribal Council'),
(101238, 'https://ror.org/01gapzp55', 'fr', 1, 'https://ror.org/01gapzp55 Centre Roland Mousnier'),
(101239, 'https://ror.org/01gavpb45', 'en', 1, 'https://ror.org/01gavpb45 Canadian Institutes of Health Research'),
(101240, 'https://ror.org/01gaw2478', 'en', 1, 'https://ror.org/01gaw2478 Teikyo University åøäŗ¬å¤§å­¦'),
(101241, 'https://ror.org/01gb8pc70', 'en', 1, 'https://ror.org/01gb8pc70 University of Wisconsin–Stout UniversitĆ© du Wisconsin–Stout'),
(101242, 'https://ror.org/01gbppd30', 'fr', 1, 'https://ror.org/01gbppd30 Dynamique des GƩnomes et Adaptation Microbienne Genome dynamics and microbial adaptation'),
(101243, 'https://ror.org/01gdw7p94', 'en', 1, 'https://ror.org/01gdw7p94 The Royal Photographic Society'),
(101244, 'https://ror.org/01gdwxf40', 'tr', 1, 'https://ror.org/01gdwxf40 T.C. Ziraat Bankası A.Ş., Ziraat Bankası'),
(101245, 'https://ror.org/01ge7v435', 'en', 1, 'https://ror.org/01ge7v435 Punta Culebra Nature Center'),
(101246, 'https://ror.org/01gg39979', 'en', 1, 'https://ror.org/01gg39979 Eterna Therapeutics'),
(101247, 'https://ror.org/01ggkbb05', 'en', 1, 'https://ror.org/01ggkbb05 Remotely Operated Platform for Ocean Sciences'),
(101248, 'https://ror.org/01ggsp920', 'en', 1, 'https://ror.org/01ggsp920 Cyprus Institute of Neurology and Genetics'),
(101249, 'https://ror.org/01gje7n16', 'fr', 1, 'https://ror.org/01gje7n16 Laboratoire de Glycochimie, des Antimicrobiens et des Agroressources Laboratory Glycochemistry, of Antimicrobials and Agroressources'),
(101250, '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'),
(101251, 'https://ror.org/01gnd8r41', 'en', 1, 'https://ror.org/01gnd8r41 HÔskólinn Ô Akureyri University of Akureyri'),
(101252, 'https://ror.org/01gntjh03', 'en', 1, 'https://ror.org/01gntjh03 Het Koninklijk Nederlands Instituut voor Onderzoek der Zee Royal Netherlands Institute for Sea Research'),
(101253, 'https://ror.org/01gsw0r50', 'de', 1, 'https://ror.org/01gsw0r50 Deutsche Gesellschaft für Patientensicherheit gGmbH'),
(101254, 'https://ror.org/01gtsrs29', 'fr', 1, 'https://ror.org/01gtsrs29 Ɖcole de l''air et de l''espace'),
(101255, 'https://ror.org/01gw5dy53', 'en', 1, 'https://ror.org/01gw5dy53 CICERO Center for International Climate Research CICERO Senter for Klimaforskning'),
(101256, 'https://ror.org/01h009r26', 'pt', 1, 'https://ror.org/01h009r26 Fundação da Juventude'),
(101257, 'https://ror.org/01h0a3k64', 'fr', 1, 'https://ror.org/01h0a3k64 Laboratoire de GƩnƩtique & Evolution des Populations VƩgƩtales'),
(101258, 'https://ror.org/01h1d4660', 'en', 1, 'https://ror.org/01h1d4660 Enflame Enflame (China)'),
(101259, 'https://ror.org/01h2qr957', 'fr', 1, 'https://ror.org/01h2qr957 Laboratoire de dƩveloppement instrumental et de mƩthodologies innovantes pour les Biens Culturels'),
(101260, 'https://ror.org/01h2vtb84', 'en', 1, 'https://ror.org/01h2vtb84 Rachel Carson Center for Environment and Society'),
(101261, 'https://ror.org/01h3dr788', 'nl', 1, 'https://ror.org/01h3dr788 Fondation contre le Cancer Stichting tegen Kanker'),
(101262, 'https://ror.org/01h3hm524', 'en', 1, 'https://ror.org/01h3hm524 Ahl Al Bayt University Ų¬Ų§Ł…Ų¹Ų© أهل Ų§Ł„ŲØŁŠŲŖ دانؓگاه Ų§Ł‡Ł„Ų§Ł„ŲØŪŒŲŖ'),
(101263, 'https://ror.org/01h3wfd56', 'de', 1, 'https://ror.org/01h3wfd56 Nordzucker AG, Nordzucker AG (Germany)'),
(101264, 'https://ror.org/01h6ecw13', 'en', 1, 'https://ror.org/01h6ecw13 Lingnan Normal University ę¹›ę±ŸåøˆčŒƒå­¦é™¢'),
(101265, 'https://ror.org/01h6mr398', 'en', 1, 'https://ror.org/01h6mr398 Sociological Scientific Society of Serbia SocioloŔko naučno druŔtvo Srbije'),
(101266, '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'),
(101267, 'https://ror.org/01h85cx24', 'en', 1, 'https://ror.org/01h85cx24 Institut geografii Respubliki Kazahstan Institute of Geography Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географии'),
(101268, 'https://ror.org/01h96kj53', 'en', 1, 'https://ror.org/01h96kj53 Gateshead College'),
(101269, 'https://ror.org/01hcx6992', 'de', 1, 'https://ror.org/01hcx6992 Humboldt-UniversitƤt zu Berlin'),
(101270, 'https://ror.org/01he7e113', 'en', 1, 'https://ror.org/01he7e113 KPJ Healthcare University'),
(101271, 'https://ror.org/01hete527', 'es', 1, 'https://ror.org/01hete527 Universidad PolitƩcnica de CuautitlƔn Izcalli'),
(101272, 'https://ror.org/01hewbk46', 'pt', 1, 'https://ror.org/01hewbk46 Montes Claros State University Universidad Estatal de Montes Claros Universidade Estadual de Montes Claros'),
(101273, 'https://ror.org/01hfye903', 'no_lang_code', 1, 'https://ror.org/01hfye903 Framatome (Germany)'),
(101274, 'https://ror.org/01hg31662', 'en', 1, 'https://ror.org/01hg31662 Beijing Union University åŒ—äŗ¬č”åˆå¤§å­¦'),
(101275, 'https://ror.org/01hjh7h09', 'es', 1, 'https://ror.org/01hjh7h09 Tecnológico de Estudios Superiores de CuautitlÔn Izcalli'),
(101276, 'https://ror.org/01hjzeq58', 'en', 1, 'https://ror.org/01hjzeq58 Chiba University åƒč‘‰å¤§å­¦'),
(101277, 'https://ror.org/01hpqfm28', 'en', 1, 'https://ror.org/01hpqfm28 Connecticut College'),
(101278, 'https://ror.org/01hqfk569', 'en', 1, 'https://ror.org/01hqfk569 Indonesian Institute for Counseling, Education, and Therapy'),
(101279, 'https://ror.org/01hqyj078', 'en', 1, 'https://ror.org/01hqyj078 pyOpenSci'),
(101280, 'https://ror.org/01hrtf583', 'en', 1, 'https://ror.org/01hrtf583 Synchrotron Radiation for Biomedicine'),
(101281, 'https://ror.org/01htwz965', 'nl', 1, 'https://ror.org/01htwz965 Politieacademie'),
(101282, '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'),
(101283, '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'),
(101284, 'https://ror.org/01hxyb880', 'pt', 1, 'https://ror.org/01hxyb880 Universidade de Luanda University of Luanda'),
(101285, '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'),
(101286, 'https://ror.org/01hyzmp36', 'en', 1, 'https://ror.org/01hyzmp36 Shenzhen Ruipuxun Academy for Stem Cell & Regenerative Medicine'),
(101287, 'https://ror.org/01j0ds221', 'en', 1, 'https://ror.org/01j0ds221 University of Eyvanekey دانؓگاه Ų§ŪŒŁˆŲ§Ł† کی'),
(101288, 'https://ror.org/01j1gwp17', 'no_lang_code', 1, 'https://ror.org/01j1gwp17 Teledyne FLIR (United States)'),
(101289, 'https://ror.org/01j33xk10', 'it', 1, 'https://ror.org/01j33xk10 Fondazione Bruno Kessler'),
(101290, 'https://ror.org/01j6ykv32', 'es', 1, 'https://ror.org/01j6ykv32 Instituto de Investigación e Innovación en Energías Renovables y Medio Ambiente'),
(101291, 'https://ror.org/01j72sa23', 'en', 1, 'https://ror.org/01j72sa23 NSW Roads and Maritime Services'),
(101292, 'https://ror.org/01j7c0b24', 'en', 1, 'https://ror.org/01j7c0b24 Rush University Medical Center'),
(101293, 'https://ror.org/01j7nq853', 'en', 1, 'https://ror.org/01j7nq853 Universidad de Alaska Fairbanks University of Alaska Fairbanks UniversitƩ de l''alaska Ơ fairbanks'),
(101294, 'https://ror.org/01j8e0j24', 'en', 1, 'https://ror.org/01j8e0j24 California State University, San Marcos'),
(101295, 'https://ror.org/01j903a45', 'en', 1, 'https://ror.org/01j903a45 Universidad del Norte de Florida University of North Florida'),
(101296, 'https://ror.org/01j9p1r26', 'en', 1, 'https://ror.org/01j9p1r26 University of L''Aquila UniversitƠ degli Studi dell''Aquila UniversitƩ de l''aquila'),
(101297, 'https://ror.org/01ja5aj48', 'fr', 1, 'https://ror.org/01ja5aj48 Histoire, ArchƩologie et LittƩrature des Mondes Anciens'),
(101298, 'https://ror.org/01jachm79', 'en', 1, 'https://ror.org/01jachm79 International Union of Geodesy and Geophysics Union GƩodƩsique et GƩophysique Internationale'),
(101299, 'https://ror.org/01jbxwn06', 'pt', 1, 'https://ror.org/01jbxwn06 Instituto de Ciência e Inovação em Engenharia Mecânica e Engenharia Industrial'),
(101300, 'https://ror.org/01jdd9713', 'en', 1, 'https://ror.org/01jdd9713 Blackburn College'),
(101301, 'https://ror.org/01jdptv64', 'fr', 1, 'https://ror.org/01jdptv64 Laboratoire interdisciplinaire sur les mutations des espaces Ʃconomiques et politiques - Paris Saclay'),
(101302, 'https://ror.org/01jeee804', 'en', 1, 'https://ror.org/01jeee804 NOAA Great Lakes Environmental Research Laboratory'),
(101303, 'https://ror.org/01jem5q45', 'fr', 1, 'https://ror.org/01jem5q45'),
(101304, 'https://ror.org/01jfvm310', 'en', 1, 'https://ror.org/01jfvm310 Suffolk New College'),
(101305, 'https://ror.org/01jgj2p89', 'en', 1, 'https://ror.org/01jgj2p89 King Fahd Medical City Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„Ų·ŲØŁŠŲ©'),
(101306, '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'),
(101307, 'https://ror.org/01jm8fn98', 'fr', 1, 'https://ror.org/01jm8fn98 Institut de Biologie MolƩculaire des Plantes'),
(101308, 'https://ror.org/01jmwd314', 'en', 1, 'https://ror.org/01jmwd314 Fanshawe College'),
(101309, 'https://ror.org/01jqked53', 'en', 1, 'https://ror.org/01jqked53 South Devon College'),
(101310, 'https://ror.org/01jrmfs07', 'fr', 1, 'https://ror.org/01jrmfs07 Centre d''histoire des sociƩtƩs, des sciences et des conflits'),
(101311, 'https://ror.org/01jrrs026', 'en', 1, 'https://ror.org/01jrrs026 Debrecen Reformed Theological University Debreceni ReformƔtus HittudomƔnyi Egyetem'),
(101312, 'https://ror.org/01jrs3715', 'en', 1, 'https://ror.org/01jrs3715 Eastern University, Sri Lanka ą®•ą®æą®“ą®•ąÆą®•ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®‡ą®²ą®™ąÆą®•ąÆˆ ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶±ą·ą¶œą·™ą¶±ą·„ą·’ą¶» ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(101313, 'https://ror.org/01js2sh04', 'de', 1, 'https://ror.org/01js2sh04 DESY Deutsches Elektronen-Synchrotron DESY'),
(101314, 'https://ror.org/01jsq2704', 'en', 1, 'https://ror.org/01jsq2704 Eƶtvƶs LorƔnd TudomƔnyegyetem Eƶtvƶs LorƔnd University'),
(101315, 'https://ror.org/01jt5ms28', 'fr', 1, 'https://ror.org/01jt5ms28 Centre de Formation et de Recherche sur les Environnements MƩditerranƩens'),
(101316, 'https://ror.org/01jtrvx49', 'en', 1, 'https://ror.org/01jtrvx49 World Glacier Monitoring Service'),
(101317, 'https://ror.org/01jv2ft75', 'fr', 1, 'https://ror.org/01jv2ft75 Laboratoire de MƩcanique Paris-Saclay'),
(101318, 'https://ror.org/01jvz7e61', 'fr', 1, 'https://ror.org/01jvz7e61 Virologie et Immunologie MolƩculaires'),
(101319, 'https://ror.org/01jx6h585', 'en', 1, 'https://ror.org/01jx6h585 Indian Institute of Management Bodh Gaya'),
(101320, 'https://ror.org/01k2qqb14', 'en', 0, 'https://ror.org/01k2qqb14 Toko University ēØ»ę±Ÿē§‘ęŠ€ęšØē®”ē†å­øé™¢'),
(101321, 'https://ror.org/01k2y1055', 'en', 1, 'https://ror.org/01k2y1055 University of Wolverhampton'),
(101322, 'https://ror.org/01k4yrm29', 'en', 1, 'https://ror.org/01k4yrm29 Korea Institute of Science & Technology Information ķ•œźµ­ź³¼ķ•™źø°ģˆ ģ •ė³“ģ—°źµ¬ģ›'),
(101323, 'https://ror.org/01k6ebg12', 'fr', 1, 'https://ror.org/01k6ebg12 Institut de recherches philosophiques de Lyon'),
(101324, 'https://ror.org/01k7fr644', 'id', 1, 'https://ror.org/01k7fr644 Universitas Muhammadiyah Kotabumi'),
(101325, 'https://ror.org/01k7w0p97', 'fr', 1, 'https://ror.org/01k7w0p97 Centre Ɖmile Durkheim'),
(101326, 'https://ror.org/01k8bwd50', 'no_lang_code', 0, 'https://ror.org/01k8bwd50 NFDI4Immuno National Research Data Infrastructure for Immunology Nationale Forschungsdateninfrastruktur für Immunologie'),
(101327, 'https://ror.org/01k97gp34', 'en', 1, 'https://ror.org/01k97gp34 TU Dortmund University Technische UniversitƤt Dortmund'),
(101328, 'https://ror.org/01k9kg969', 'fr', 1, 'https://ror.org/01k9kg969'),
(101329, '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'),
(101330, 'https://ror.org/01kbkse74', 'en', 1, 'https://ror.org/01kbkse74 The Enteric Nervous System in Gut and Brain Disorders'),
(101331, 'https://ror.org/01kbr1737', 'fr', 1, 'https://ror.org/01kbr1737 PHotonique ELectronique et IngƩnierie QuantiqueS'),
(101332, 'https://ror.org/01kcrnc96', 'fr', 1, 'https://ror.org/01kcrnc96 Institut de PlanƩtologie et d''Astrophysique de Grenoble'),
(101333, 'https://ror.org/01kdbb633', 'en', 1, 'https://ror.org/01kdbb633 Enskilda Hƶgskolan Stockholm University College Stockholm'),
(101334, 'https://ror.org/01keh0577', 'en', 1, 'https://ror.org/01keh0577 University of Nevada, Reno'),
(101335, 'https://ror.org/01khqgw87', 'tr', 1, 'https://ror.org/01khqgw87 Istanbul Galata University İstanbul Galata Üniversitesi'),
(101336, 'https://ror.org/01kj4z117', 'en', 1, 'https://ror.org/01kj4z117 Southwest University č„æå—å¤§å­¦'),
(101337, 'https://ror.org/01knv0402', 'no_lang_code', 1, 'https://ror.org/01knv0402 Linyi University 专沂大学'),
(101338, 'https://ror.org/01kpzv902', 'en', 1, 'https://ror.org/01kpzv902 Flinders University'),
(101339, 'https://ror.org/01kq0pv72', 'en', 1, 'https://ror.org/01kq0pv72 South China Normal University åŽå—åøˆčŒƒå¤§å­¦'),
(101340, 'https://ror.org/01ktn5v16', 'en', 1, 'https://ror.org/01ktn5v16 Al-Rayan University لجامعة Ų§Ł„Ų±ŁŠŲ§Ł†'),
(101341, 'https://ror.org/01kv58h76', 'fr', 1, 'https://ror.org/01kv58h76 Agence Nationale de Recherches sur le Sida et les HƩpatites Virales'),
(101342, 'https://ror.org/01kvhwz50', 'fr', 1, 'https://ror.org/01kvhwz50 Direction des Services de la Navigation AƩrienne Directorate of Air Navigation Services'),
(101343, 'https://ror.org/01kwgrb31', 'en', 1, 'https://ror.org/01kwgrb31 Northern State University'),
(101344, 'https://ror.org/01kysxr05', 'fr', 1, 'https://ror.org/01kysxr05 Centre d’études en sciences sociales du religieux'),
(101345, 'https://ror.org/01m10js32', 'fr', 1, 'https://ror.org/01m10js32 Strasbourg Oncologie LibƩrale'),
(101346, 'https://ror.org/01m11mf96', 'fr', 1, 'https://ror.org/01m11mf96 HƓpital Broca'),
(101347, 'https://ror.org/01m1tbs81', 'fr', 1, 'https://ror.org/01m1tbs81 Centre d''Etudes et de Recherches Comparatives Constitutionnelles et Politiques'),
(101348, 'https://ror.org/01m296r74', 'es', 1, 'https://ror.org/01m296r74 Universidad Autónoma de Zacatecas, Universidad Autónoma de Zacatecas "Francisco García Salinas"'),
(101349, 'https://ror.org/01m58xt27', 'en', 1, 'https://ror.org/01m58xt27 Sur University College Ų¬Ų§Ł…Ų¹Ų© سور'),
(101350, 'https://ror.org/01m59r132', 'en', 1, 'https://ror.org/01m59r132 Akdeniz University Akdeniz Üniversitesi'),
(101351, 'https://ror.org/01m71e459', 'fr', 1, 'https://ror.org/01m71e459 Laboratoire de Neurosciences Cognitives et Adaptatives'),
(101352, 'https://ror.org/01m7n4g71', 'en', 1, 'https://ror.org/01m7n4g71 Centre for Health Law, Policy and Ethics');
INSERT INTO `rors` VALUES
(101353, 'https://ror.org/01m83bk32', 'fr', 1, 'https://ror.org/01m83bk32 Laboratoire d''électronique, systèmes de communication et microsystèmes'),
(101354, 'https://ror.org/01m870m49', 'es', 1, 'https://ror.org/01m870m49 Instituto de Investigación en Cambio Global'),
(101355, 'https://ror.org/01mbkbh33', 'fr', 1, 'https://ror.org/01mbkbh33 Organisation de Micro-Electronique GƩnƩrale AvancƩe'),
(101356, 'https://ror.org/01mbsxc64', 'en', 1, 'https://ror.org/01mbsxc64 IVL Svenska Miljƶinstitutet IVL Swedish Environmental Research Institute ē‘žå…øēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(101357, 'https://ror.org/01mdyh744', 'fr', 1, 'https://ror.org/01mdyh744 Erasmus Fund Fonds Erasme'),
(101358, 'https://ror.org/01mgaqp12', 'en', 1, 'https://ror.org/01mgaqp12 Aktobe Regional State University named after K.Zhubanov Қ.Жұбанов атынГағы Ақтөбе өңірлік мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101359, 'https://ror.org/01mh5ph17', 'en', 1, 'https://ror.org/01mh5ph17 Kangwon National University ź°•ģ›ėŒ€ķ•™źµ'),
(101360, 'https://ror.org/01mjckp83', 'en', 1, 'https://ror.org/01mjckp83 Banner MD Anderson Cancer Center at Banner North Colorado Medical Center'),
(101361, 'https://ror.org/01mjr8a07', 'en', 1, 'https://ror.org/01mjr8a07 Maharaja Agrasen University'),
(101362, 'https://ror.org/01mkqqe32', 'en', 1, 'https://ror.org/01mkqqe32 Lanzhou University 兰州大学'),
(101363, 'https://ror.org/01mq1e256', 'fr', 1, 'https://ror.org/01mq1e256 Laboratoire de sociologie des Territoires, du travail, des âges et de la santé'),
(101364, 'https://ror.org/01mrfdz82', 'en', 1, 'https://ror.org/01mrfdz82 Texas A&M University – Corpus Christi'),
(101365, 'https://ror.org/01ms53j39', 'en', 1, 'https://ror.org/01ms53j39 Czech Association of Doctoral Researchers'),
(101366, 'https://ror.org/01ms54x07', 'fr', 1, 'https://ror.org/01ms54x07 UMS-Autonomie'),
(101367, 'https://ror.org/01mtcc283', 'fr', 1, 'https://ror.org/01mtcc283 Le Mans University Le Mans UniversitƩ'),
(101368, 'https://ror.org/01mts2g59', 'fr', 1, 'https://ror.org/01mts2g59 Centre de Résonance Magnétique des Systèmes Biologiques'),
(101369, 'https://ror.org/01mtxmr84', 'en', 1, 'https://ror.org/01mtxmr84 Inner Mongolia Medical University å†…č’™å¤åŒ»ē§‘å¤§å­¦'),
(101370, 'https://ror.org/01mvrj242', 'en', 1, 'https://ror.org/01mvrj242 Nanosystems Initiative Munich'),
(101371, 'https://ror.org/01mvzn566', 'fr', 1, 'https://ror.org/01mvzn566 Center for Interdisciplinary Research in Biology Centre Interdisciplinaire de Recherche en Biologie'),
(101372, 'https://ror.org/01mwmfm08', 'en', 1, 'https://ror.org/01mwmfm08 Concord University'),
(101373, 'https://ror.org/01mz2wq83', 'en', 1, 'https://ror.org/01mz2wq83 Insilico Medicine, Insilico Medicine (United States)'),
(101374, 'https://ror.org/01n015v70', 'en', 1, 'https://ror.org/01n015v70 Deepblue Technology, Deepblue Technology (China) ę·±å…°ē§‘ęŠ€ļ¼ˆäøŠęµ·ļ¼‰ęœ‰é™å…¬åø'),
(101375, 'https://ror.org/01n0nt715', 'en', 1, 'https://ror.org/01n0nt715 University of the South Pacific - Emalus Campus'),
(101376, 'https://ror.org/01n15vy71', 'en', 1, 'https://ror.org/01n15vy71 Sant Longowal Institute of Engineering and Technology'),
(101377, 'https://ror.org/01n2bd587', 'en', 1, 'https://ror.org/01n2bd587 Liaoning Technical University č¾½å®å·„ēØ‹ęŠ€ęœÆå¤§å­¦'),
(101378, 'https://ror.org/01n3s4692', 'en', 1, 'https://ror.org/01n3s4692 Shiraz University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ؓیراز'),
(101379, 'https://ror.org/01n7dqn92', 'en', 1, 'https://ror.org/01n7dqn92 JanĆ”Äek Academy of Performing Arts JanĆ”Äkova akademie mĆŗzických uměnĆ­'),
(101380, 'https://ror.org/01n7x9n08', 'en', 1, 'https://ror.org/01n7x9n08 Shenyang Agricultural University'),
(101381, 'https://ror.org/01n8adr31', 'en', 1, 'https://ror.org/01n8adr31 Kotebe University of Education'),
(101382, 'https://ror.org/01n8ry083', 'en', 1, 'https://ror.org/01n8ry083 Burnley College'),
(101383, 'https://ror.org/01n9yr226', 'fr', 1, 'https://ror.org/01n9yr226 Centre Tourangeau d’Histoire et d’Études des Sources'),
(101384, 'https://ror.org/01nb01b94', 'en', 1, 'https://ror.org/01nb01b94 Nanjing Normal University Taizhou College å—äŗ¬åøˆčŒƒå¤§å­¦ę³°å·žå­¦é™¢'),
(101385, 'https://ror.org/01nbs8061', 'en', 1, 'https://ror.org/01nbs8061 Fluid Dynamics Research Institute'),
(101386, 'https://ror.org/01ndqne76', 'fr', 1, 'https://ror.org/01ndqne76 Action Against Hunger'),
(101387, 'https://ror.org/01nhp3z94', 'fr', 1, 'https://ror.org/01nhp3z94 Temps, Mondes, SociƩtƩs'),
(101388, 'https://ror.org/01nhtcw46', 'en', 1, 'https://ror.org/01nhtcw46 Lyft, Lyft (United States)'),
(101389, 'https://ror.org/01nky7652', 'en', 1, 'https://ror.org/01nky7652 North China University of Technology åŒ—ę–¹å·„äøšå¤§å­¦'),
(101390, 'https://ror.org/01nq33970', 'es', 1, 'https://ror.org/01nq33970 Instituto Tecnológico Superior Zacatecas Norte'),
(101391, 'https://ror.org/01nre9703', 'fr', 1, 'https://ror.org/01nre9703 Naval Hydrographic and Oceanographic Service Service Hydrographique et OcƩanographique de la Marine'),
(101392, 'https://ror.org/01ntvtb47', 'en', 1, 'https://ror.org/01ntvtb47 Alabama Humanities Foundation'),
(101393, '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'),
(101394, 'https://ror.org/01nw6qk38', 'fr', 1, 'https://ror.org/01nw6qk38 Institut de Chimie de la Matière Condensée de Bordeaux'),
(101395, 'https://ror.org/01nwn6r98', 'en', 1, 'https://ror.org/01nwn6r98 Sinopharm Animal Health Co., Ltd., Sinopharm Animal Health Co., Ltd. (China) å›½čÆé›†å›¢åŠØē‰©äæå„č‚”ä»½ęœ‰é™å…¬åø'),
(101396, 'https://ror.org/01nyadv46', 'en', 1, 'https://ror.org/01nyadv46 New York State Museum'),
(101397, 'https://ror.org/01nztpc84', 'en', 1, 'https://ror.org/01nztpc84 Canarie'),
(101398, 'https://ror.org/01p0a2d88', 'en', 1, 'https://ror.org/01p0a2d88 Belfast Metropolitan College'),
(101399, 'https://ror.org/01p0n4966', 'en', 1, 'https://ror.org/01p0n4966 Open Modeling Foundation'),
(101400, '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'),
(101401, 'https://ror.org/01p38cj84', 'en', 1, 'https://ror.org/01p38cj84 Institute of Applied Computing & Community Code'),
(101402, 'https://ror.org/01p3rp369', 'pt', 1, 'https://ror.org/01p3rp369 Santa Marcelina Educação'),
(101403, 'https://ror.org/01p455v08', 'en', 1, 'https://ror.org/01p455v08 Xinjiang Medical University ę–°ē–†åŒ»ē§‘å¤§å­¦'),
(101404, 'https://ror.org/01p65pg69', 'en', 1, 'https://ror.org/01p65pg69 British Columbia Institute of Technology Institut de technologie de la colombie-britannique'),
(101405, 'https://ror.org/01p6ew896', 'en', 1, 'https://ror.org/01p6ew896 Gambella University'),
(101406, 'https://ror.org/01p6gzq21', 'en', 1, 'https://ror.org/01p6gzq21 Brazilian Synchrotron Light Laboratory Laboratório Nacional de Luz Síncrotron'),
(101407, 'https://ror.org/01p7qe739', 'en', 1, 'https://ror.org/01p7qe739 Tokai University ę±ęµ·å¤§å­¦'),
(101408, 'https://ror.org/01p93h210', 'en', 1, 'https://ror.org/01p93h210 University of South Australia'),
(101409, 'https://ror.org/01p996c64', 'en', 1, 'https://ror.org/01p996c64 Ningde Normal University å®å¾·åøˆčŒƒå­¦é™¢'),
(101410, 'https://ror.org/01pa62v70', 'en', 1, 'https://ror.org/01pa62v70 Tokyo Denki University ę±äŗ¬é›»ę©Ÿå¤§å­¦'),
(101411, 'https://ror.org/01paa1e42', 'fr', 1, 'https://ror.org/01paa1e42 Centre Maurice-Halbwachs'),
(101412, 'https://ror.org/01pb9t810', 'es', 1, 'https://ror.org/01pb9t810 Universidad PolitƩcnica de Guanajuato'),
(101413, 'https://ror.org/01pch6n67', 'en', 1, 'https://ror.org/01pch6n67 Broadridge Financial Solutions, Broadridge Financial Solutions (United States)'),
(101414, 'https://ror.org/01pe3t004', 'en', 1, 'https://ror.org/01pe3t004 Indian Institute of Science Education and Research Thiruvananthapuram ą¤†ą¤‡ą¤†ą¤‡ą¤ą¤øą¤‡ą¤†ą¤° ą¤¤ą¤æą¤°ą„‚ą¤…ą¤Øą¤‚ą¤¤ą¤Ŗą„ą¤°ą¤® ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¤ą¤æą¤°ą„ą¤µą¤Øą¤‚ą¤¤ą¤Ŗą„ą¤°ą¤®'),
(101415, 'https://ror.org/01pen2t90', 'en', 1, 'https://ror.org/01pen2t90 Wiltshire College'),
(101416, 'https://ror.org/01pf7nz88', 'en', 0, 'https://ror.org/01pf7nz88 Agence FranƧaise Pour la BiodiversitƩ French National Agency for Water and Aquatic Environments'),
(101417, 'https://ror.org/01pkecw43', 'en', 1, 'https://ror.org/01pkecw43 VF Calibration Laboratory, VF Calibration Laboratory (Czechia)'),
(101418, 'https://ror.org/01pn91c28', 'en', 1, 'https://ror.org/01pn91c28 Anhui Science and Technology University å®‰å¾½ē§‘ęŠ€å­¦é™¢'),
(101419, 'https://ror.org/01pp8nd67', 'en', 1, 'https://ror.org/01pp8nd67 Smithsonian Institution'),
(101420, 'https://ror.org/01prhkj58', 'en', 1, 'https://ror.org/01prhkj58 Isesaki Municipal Hospital'),
(101421, 'https://ror.org/01psx1920', 'en', 1, 'https://ror.org/01psx1920 National Academy of Arts ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(101422, 'https://ror.org/01ptm9403', 'de', 1, 'https://ror.org/01ptm9403 Palucca Hochschule für Tanz Dresden'),
(101423, 'https://ror.org/01pwhp331', 'sr', 1, 'https://ror.org/01pwhp331 Srpsko arheoloÅ”ko druÅ”tvo, Дрпско Š°Ń€Ń…ŠµŠ¾Š»Š¾ŃˆŠŗŠ¾ Š“Ń€ŃƒŃˆŃ‚Š²Š¾'),
(101424, 'https://ror.org/01pwmqe95', 'en', 1, 'https://ror.org/01pwmqe95 World Data System'),
(101425, 'https://ror.org/01px0dw39', 'en', 1, 'https://ror.org/01px0dw39 Pratap University'),
(101426, 'https://ror.org/01pxc4g62', 'en', 1, 'https://ror.org/01pxc4g62 Central Conservatory of Music äø­å¤®éŸ³ä¹å­¦é™¢'),
(101427, 'https://ror.org/01q17sd51', 'en', 1, 'https://ror.org/01q17sd51 Zhejiang Institute of Communications ęµ™ę±Ÿäŗ¤é€ščŒäøšęŠ€ęœÆå­¦é™¢'),
(101428, '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'),
(101429, 'https://ror.org/01q349q17', 'en', 1, 'https://ror.org/01q349q17 Hubei University for Nationalities ę¹–åŒ—ę°‘ę—å­¦é™¢'),
(101430, 'https://ror.org/01q3kj769', 'fr', 1, 'https://ror.org/01q3kj769 Laboratoire de Droit International et EuropƩen'),
(101431, 'https://ror.org/01q3rcc14', 'en', 1, 'https://ror.org/01q3rcc14 Indiana Humanities'),
(101432, 'https://ror.org/01q8rrk81', 'en', 1, 'https://ror.org/01q8rrk81 Stephan Angeloff Institute of Microbiology Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ŠŖŠ¢ ŠŸŠž ŠœŠ˜ŠšŠ ŠžŠ‘Š˜ŠžŠ›ŠžŠ“Š˜ŠÆ Дтефан Ангелов'),
(101433, 'https://ror.org/01qa4rf46', 'fr', 1, 'https://ror.org/01qa4rf46 DƩlƩgation RƩgionale Grand Ouest'),
(101434, 'https://ror.org/01qaf6y44', 'pt', 1, 'https://ror.org/01qaf6y44 Blanc Hospital'),
(101435, 'https://ror.org/01qaqcf60', 'en', 1, 'https://ror.org/01qaqcf60 University of Białystok Uniwersytet w Białymstoku'),
(101436, 'https://ror.org/01qbk3798', 'en', 1, 'https://ror.org/01qbk3798 Institute of Adult Education Taasisi ya Elimu ya Watu Wazima'),
(101437, 'https://ror.org/01qdjtw37', 'en', 0, 'https://ror.org/01qdjtw37 Castleton University'),
(101438, 'https://ror.org/01qdmn762', 'en', 1, 'https://ror.org/01qdmn762 LAB University of Applied Sciences LAB-ammattikorkeakoulu'),
(101439, 'https://ror.org/01qg3j183', 'en', 1, 'https://ror.org/01qg3j183 University of Ioannina UniversitĆ© d''ioannina Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ιωαννίνων'),
(101440, 'https://ror.org/01qhj1g70', 'no_lang_code', 1, 'https://ror.org/01qhj1g70 Daiichi Sankyo (Germany) ē¬¬äø€äø‰å…±ę Ŗå¼ä¼šē¤¾'),
(101441, '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'),
(101442, 'https://ror.org/01qjrx392', 'en', 1, 'https://ror.org/01qjrx392 University of Liechtenstein UniversitƤt Liechtenstein'),
(101443, 'https://ror.org/01qk7v094', 'en', 1, 'https://ror.org/01qk7v094 Intergovernmental Oceanographic Commission of UNESCO'),
(101444, 'https://ror.org/01qm1tk92', 'fr', 1, 'https://ror.org/01qm1tk92 Centre de Recherches Sociologiques sur le Droit et les Institutions PƩnales'),
(101445, 'https://ror.org/01qpw1b93', 'en', 1, 'https://ror.org/01qpw1b93 Uniwersytet Medyczny im. Piastów Śląskich we Wrocławiu Wroclaw Medical University'),
(101446, 'https://ror.org/01qs45p40', 'en', 1, 'https://ror.org/01qs45p40 Otis College of Art and Design'),
(101447, 'https://ror.org/01qv3m779', 'en', 1, 'https://ror.org/01qv3m779 Miriam Foundation'),
(101448, 'https://ror.org/01qvhcs77', 'en', 1, 'https://ror.org/01qvhcs77 Institut za filozofiju i druÅ”tvenu teoriju, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Ń„ŠøŠ»Š¾Š·Š¾Ń„ŠøŃ˜Ńƒ Šø Š“Ń€ŃƒŃˆŃ‚Š²ŠµŠ½Ńƒ Ń‚ŠµŠ¾Ń€ŠøŃ˜Ńƒ Institute for Philosophy and Social Theory'),
(101449, 'https://ror.org/01qwmf693', 'no_lang_code', 0, 'https://ror.org/01qwmf693 Harris (United States)'),
(101450, 'https://ror.org/01qycn260', 'en', 1, 'https://ror.org/01qycn260 Dalian Institute of Science and Technology å¤§čæžē§‘ęŠ€å­¦é™¢'),
(101451, 'https://ror.org/01qygwc68', 'fr', 1, 'https://ror.org/01qygwc68 Evaluation des technologies de santƩ et des pratiques mƩdicales'),
(101452, 'https://ror.org/01qz28660', 'en', 1, 'https://ror.org/01qz28660 Alfa University College'),
(101453, 'https://ror.org/01qz4yx77', 'en', 1, 'https://ror.org/01qz4yx77 King''s College Hospital Charity'),
(101454, 'https://ror.org/01qz5mb56', 'en', 1, 'https://ror.org/01qz5mb56 Oak Ridge National Laboratory'),
(101455, 'https://ror.org/01r0cs760', 'fr', 1, 'https://ror.org/01r0cs760 Laboratoire MathƩmatiques, Image et Applications'),
(101456, 'https://ror.org/01r19bq53', 'fr', 1, 'https://ror.org/01r19bq53 Replication des chromosomes eucaryotes et ses points de contrƓle'),
(101457, 'https://ror.org/01r22mr83', 'en', 1, 'https://ror.org/01r22mr83 University of Ghana'),
(101458, 'https://ror.org/01r5sf951', 'en', 1, 'https://ror.org/01r5sf951 Capital University of Economics and Business é¦–éƒ½ē»ęµŽč“øę˜“å¤§å­¦'),
(101459, 'https://ror.org/01r8ww931', 'en', 1, 'https://ror.org/01r8ww931 North Carolina Humanities Council'),
(101460, 'https://ror.org/01racwh88', 'fr', 1, 'https://ror.org/01racwh88 Laboratoire Hydrazines et ComposƩs EnergƩtiques PolyazotƩs'),
(101461, 'https://ror.org/01rcjd521', 'en', 1, 'https://ror.org/01rcjd521 Israel National Research Center for Electrochemical Propulsion'),
(101462, 'https://ror.org/01rf1sn88', 'en', 1, 'https://ror.org/01rf1sn88 University of Belgrade - Faculty of Mining and Geology Univerzitet u Beogradu - Rudarsko-geoloÅ”ki fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Š ŃƒŠ“Š°Ń€ŃŠŗŠ¾-геолошки Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(101463, 'https://ror.org/01rf3yp57', 'en', 1, 'https://ror.org/01rf3yp57 University of Bridgeport'),
(101464, 'https://ror.org/01rf5x574', 'fr', 1, 'https://ror.org/01rf5x574 Laboratoire de Psychologie Cognitive'),
(101465, 'https://ror.org/01rfstj90', 'fr', 1, 'https://ror.org/01rfstj90 Institut thƩmatique GƩnƩtique, gƩnomique et bioinformatique'),
(101466, 'https://ror.org/01rnfhz46', 'fr', 1, 'https://ror.org/01rnfhz46 MatƩriaux IngƩnierie et Science'),
(101467, 'https://ror.org/01rt74q71', 'it', 1, 'https://ror.org/01rt74q71 Telecom Italia Lab'),
(101468, 'https://ror.org/01rt7wc31', 'en', 1, 'https://ror.org/01rt7wc31 Franciscan School of Theology'),
(101469, 'https://ror.org/01rtyzb94', 'en', 1, 'https://ror.org/01rtyzb94 Rensselaer Polytechnic Institute'),
(101470, 'https://ror.org/01rxvg760', 'en', 1, 'https://ror.org/01rxvg760 Nanjing University å—äŗ¬å¤§å­¦'),
(101471, 'https://ror.org/01rzzcx32', 'fr', 1, 'https://ror.org/01rzzcx32 Centre de Recherches Critiques sur le Droit'),
(101472, 'https://ror.org/01s0v4q65', 'en', 1, 'https://ror.org/01s0v4q65 Governmental Agency for IT Development'),
(101473, 'https://ror.org/01s1e0738', 'fr', 1, 'https://ror.org/01s1e0738 Centre de Support en SantƩ Internationale'),
(101474, 'https://ror.org/01s3kre18', 'en', 1, 'https://ror.org/01s3kre18 Colorado Technical University'),
(101475, 'https://ror.org/01s3m0650', 'en', 1, 'https://ror.org/01s3m0650 Institute of Chemical Physics NAS RA'),
(101476, 'https://ror.org/01s4cye48', 'fr', 1, 'https://ror.org/01s4cye48 Laboratoire d''Ecophysiologie VƩgƩtale, Agronomie & nutritions N.C.S'),
(101477, 'https://ror.org/01s4gpq44', 'en', 1, 'https://ror.org/01s4gpq44 Universidad de Talca University of Talca'),
(101478, 'https://ror.org/01s63dd48', 'no_lang_code', 1, 'https://ror.org/01s63dd48 A.O. Smith, A.O. Smith (United States)'),
(101479, 'https://ror.org/01s6bet72', 'fr', 1, 'https://ror.org/01s6bet72 Laboratoire de physique des systĆØmes complexes'),
(101480, 'https://ror.org/01s6bpp92', 'en', 1, 'https://ror.org/01s6bpp92 International Open University'),
(101481, 'https://ror.org/01s8rwd67', 'fr', 1, 'https://ror.org/01s8rwd67 DĆ©lĆ©gation RĆ©gionale Provence-Alpes-CĆ“te d’Azur et Corse'),
(101482, 'https://ror.org/01sa9ng67', 'en', 1, 'https://ror.org/01sa9ng67 PSG INSTITUTE OF TECHNOLOGY AND APPLIED RESEARCH பி ą®Žą®øąÆ ஜி ą®ą®ŸąÆ†ą®•ąÆ'),
(101483, 'https://ror.org/01sc83v92', 'fr', 1, 'https://ror.org/01sc83v92 Ɖcole des Hautes Ɖtudes en SantĆ© Publique, Ɖcole des hautes Ć©tudes en santĆ© publique'),
(101484, 'https://ror.org/01scyh794', 'en', 1, 'https://ror.org/01scyh794 Nanjing University of Aeronautics and Astronautics å—äŗ¬čˆŖē©ŗčˆŖå¤©å¤§å­¦'),
(101485, 'https://ror.org/01sdnnq10', 'en', 1, 'https://ror.org/01sdnnq10 Gebze Technical University Gebze Teknik Ɯniversitesi Qəbzə Texnologiya İnstitutu'),
(101486, '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'),
(101487, 'https://ror.org/01sebzx27', 'en', 1, 'https://ror.org/01sebzx27 National Institute of Technology Jamshedpur ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤œą¤®ą¤¶ą„‡ą¤¦ą¤Ŗą„ą¤°'),
(101488, 'https://ror.org/01set1758', 'fr', 1, 'https://ror.org/01set1758 Caisse des DƩpƓts et Consignations Deposits and Consignments Fund'),
(101489, 'https://ror.org/01sewfq88', 'es', 1, 'https://ror.org/01sewfq88 Universidad Isalud'),
(101490, 'https://ror.org/01sf06y89', 'en', 1, 'https://ror.org/01sf06y89 Macquarie University'),
(101491, 'https://ror.org/01sfm2718', 'en', 1, 'https://ror.org/01sfm2718 China Pharmaceutical University äø­å›½čÆē§‘å¤§å­¦'),
(101492, 'https://ror.org/01sgfhb12', 'en', 1, 'https://ror.org/01sgfhb12 National Enterprise for NanoScience and NanoTechnology'),
(101493, 'https://ror.org/01shz5j60', 'fr', 1, 'https://ror.org/01shz5j60 Innovations thƩrapeutiques et rƩsistances'),
(101494, 'https://ror.org/01sjmsj73', 'en', 1, 'https://ror.org/01sjmsj73 AGroecologies, Innovations & Ruralities'),
(101495, 'https://ror.org/01sjwvz98', 'ja', 1, 'https://ror.org/01sjwvz98 RIKEN, ē†åŒ–å­¦ē ”ē©¶ę‰€'),
(101496, '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'),
(101497, 'https://ror.org/01srpnj69', 'en', 1, 'https://ror.org/01srpnj69 Wellesley College'),
(101498, 'https://ror.org/01ss0kv69', 'en', 1, 'https://ror.org/01ss0kv69 Data Literacy Research Institute Institut de recherche en littƩratie des donnƩes'),
(101499, 'https://ror.org/01swcva92', 'en', 1, 'https://ror.org/01swcva92 The Engineering & Technical College of Chengdu University of Technology ęˆéƒ½ē†å·„å¤§å­¦å·„ēØ‹ęŠ€ęœÆå­¦é™¢'),
(101500, 'https://ror.org/01swfyv43', 'en', 1, 'https://ror.org/01swfyv43 Proteus Ocean Group, Proteus Ocean Group (United States)'),
(101501, 'https://ror.org/01sxpmm41', 'en', 1, 'https://ror.org/01sxpmm41 Yanbu Industrial College ŁƒŁ„ŁŠŲ© ŁŠŁ†ŲØŲ¹ Ų§Ł„ŲµŁ†Ų§Ų¹ŁŠŲ©'),
(101502, 'https://ror.org/01szgyb91', 'en', 1, 'https://ror.org/01szgyb91 Elon University'),
(101503, 'https://ror.org/01t05f005', 'fr', 1, 'https://ror.org/01t05f005 Laboratoire Structures, PropriƩtƩs et ModƩlisation des Solides'),
(101504, 'https://ror.org/01t0q4k28', 'pt', 1, 'https://ror.org/01t0q4k28 Hospital das ForƧas Armadas'),
(101505, 'https://ror.org/01t28d595', 'en', 1, 'https://ror.org/01t28d595 Cedarville University'),
(101506, 'https://ror.org/01t3wyv61', 'en', 1, 'https://ror.org/01t3wyv61 National Institute for Fusion Science ę øčžåˆē§‘å­¦ē ”ē©¶ę‰€'),
(101507, 'https://ror.org/01t4k8953', 'fr', 1, 'https://ror.org/01t4k8953 Laboratoire de Psychologie Sociale et Cognitive'),
(101508, 'https://ror.org/01t7v1t25', 'fr', 1, 'https://ror.org/01t7v1t25 DƩveloppement Individu Processus Handicap Education'),
(101509, 'https://ror.org/01tbgce33', 'en', 1, 'https://ror.org/01tbgce33 Evangelische Hochschule Nürnberg Lutheran University of Applied Sciences Nuremberg'),
(101510, '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'),
(101511, 'https://ror.org/01tf11a61', 'en', 1, 'https://ror.org/01tf11a61 CMCC Foundation - Euro-Mediterranean Center on Climate Change'),
(101512, 'https://ror.org/01thw2g46', 'fr', 1, 'https://ror.org/01thw2g46 Laboratoire de Biochimie Laboratory of BioChemistry'),
(101513, 'https://ror.org/01tjwm845', 'no_lang_code', 1, 'https://ror.org/01tjwm845 Kellogg''s (United Kingdom)'),
(101514, 'https://ror.org/01tkejf16', 'fr', 1, 'https://ror.org/01tkejf16 French Cooperative Thoracic Group Intergroupe Francophone de CancƩrologie Thoracique'),
(101515, 'https://ror.org/01tm6cn81', 'en', 1, 'https://ror.org/01tm6cn81 Gƶteborgin yliopisto Gƶteborgs universitet University of Gothenburg'),
(101516, 'https://ror.org/01tme4g53', 'fr', 1, 'https://ror.org/01tme4g53 Performance SantƩ, MƩtrologie, SociƩtƩ'),
(101517, 'https://ror.org/01tmqtf75', 'en', 1, 'https://ror.org/01tmqtf75 University of Salford'),
(101518, 'https://ror.org/01tnh0829', 'es', 1, 'https://ror.org/01tnh0829 Universidad Cardenal Herrera CEU Universitat CEU Cardenal Herrera'),
(101519, 'https://ror.org/01tqv1p28', 'en', 1, 'https://ror.org/01tqv1p28 United International University ą¦‡ą¦‰ą¦Øą¦¾ą¦‡ą¦Ÿą§‡ą¦” ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(101520, 'https://ror.org/01trny179', 'de', 1, 'https://ror.org/01trny179 Klinik und Poliklinik für Strahlentherapie und Radioonkologie'),
(101521, 'https://ror.org/01trpqt29', 'fr', 1, 'https://ror.org/01trpqt29 Centre Technique du Papier Pulp and Paper Technical Centre'),
(101522, 'https://ror.org/01ttehr75', 'en', 1, 'https://ror.org/01ttehr75 Islamic Arabic University الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© ইসলামি আরবি ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(101523, 'https://ror.org/01tv2ca73', 'fr', 1, 'https://ror.org/01tv2ca73 Laboratoire de Spectroscopie pour les Interactions, la RƩactivitƩ et l''Environnement'),
(101524, 'https://ror.org/01tx6pn92', 'en', 1, 'https://ror.org/01tx6pn92 Texas A&M Health Science Center'),
(101525, 'https://ror.org/01ty7bz40', 'en', 1, 'https://ror.org/01ty7bz40 Humanities Iowa'),
(101526, 'https://ror.org/01v2b9475', 'en', 1, 'https://ror.org/01v2b9475 Svendborg International Maritime Academy'),
(101527, 'https://ror.org/01v2xem26', 'tr', 1, 'https://ror.org/01v2xem26 Malatya Turgut Ɩzal Ɯniversitesi'),
(101528, 'https://ror.org/01v5cv687', 'es', 1, 'https://ror.org/01v5cv687 Rey Juan Carlos University Universidad Rey Juan Carlos'),
(101529, 'https://ror.org/01v6wmk25', 'fr', 1, 'https://ror.org/01v6wmk25 Centre Bretagne-Normandie'),
(101530, 'https://ror.org/01v7r4v08', 'en', 0, 'https://ror.org/01v7r4v08 DataPLANT Daten in Pflanzen-Grundlagenforschung'),
(101531, 'https://ror.org/01v8tze95', 'hu', 1, 'https://ror.org/01v8tze95 Eƶtvƶs József Főiskola'),
(101532, 'https://ror.org/01v9vbn43', 'fr', 1, 'https://ror.org/01v9vbn43 Centre de droit privƩ et de sciences criminelles d''Amiens'),
(101533, 'https://ror.org/01v9wj339', 'en', 1, 'https://ror.org/01v9wj339 Thompson Rivers University'),
(101534, 'https://ror.org/01vbc2y23', 'en', 1, 'https://ror.org/01vbc2y23 ACR+, Association of Cities and Regionsfor sustainable Resource management'),
(101535, 'https://ror.org/01vbv2a78', 'es', 1, 'https://ror.org/01vbv2a78 Emedic Salud'),
(101536, 'https://ror.org/01vd10e19', 'en', 1, 'https://ror.org/01vd10e19 Hampshire County Council'),
(101537, 'https://ror.org/01ve2ed25', 'en', 1, 'https://ror.org/01ve2ed25 Museum of the Rockies'),
(101538, 'https://ror.org/01vevwk45', 'en', 1, 'https://ror.org/01vevwk45 Zhejiang Normal University ęµ™ę±ŸåøˆčŒƒå¤§å­¦'),
(101539, 'https://ror.org/01vgwjr63', 'pt', 1, 'https://ror.org/01vgwjr63 Centro Internacional de MatemƔtica'),
(101540, '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 Универзитет ŠŸŃ€ŠøŠ²Ń€ŠµŠ“Š½Š° акаГемија'),
(101541, 'https://ror.org/01vhsdf43', 'en', 1, 'https://ror.org/01vhsdf43 Brooklyn Navy Yard'),
(101542, 'https://ror.org/01vjab145', 'en', 1, 'https://ror.org/01vjab145 Missouri Humanities Council'),
(101543, 'https://ror.org/01vjw4z39', 'en', 1, 'https://ror.org/01vjw4z39 Southern Medical University å—ę–¹åŒ»ē§‘å¤§å­¦'),
(101544, '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'),
(101545, 'https://ror.org/01vnt7q67', 'en', 1, 'https://ror.org/01vnt7q67 Historic England'),
(101546, 'https://ror.org/01vqrde47', 'fr', 1, 'https://ror.org/01vqrde47 NanƧay Radio Observatory Observatoire Radioastronomique de NanƧay'),
(101547, 'https://ror.org/01vrxpt40', 'fr', 1, 'https://ror.org/01vrxpt40 Laboratoire de MƩcanique, ModƩlisation & ProcƩdƩs Propres'),
(101548, 'https://ror.org/01vrz7264', 'fr', 1, 'https://ror.org/01vrz7264 Genetics and Developmental Biology GƩnƩtique et biologie du dƩveloppement'),
(101549, 'https://ror.org/01vtcwd37', 'en', 1, 'https://ror.org/01vtcwd37 Washington State Department of Transportation'),
(101550, 'https://ror.org/01vx64p53', 'it', 1, 'https://ror.org/01vx64p53 Istituto Nazionale di Alta Matematica Francesco Severi'),
(101551, 'https://ror.org/01vy4gh70', 'en', 1, 'https://ror.org/01vy4gh70 Shenzhen University 深圳大学'),
(101552, 'https://ror.org/01w0v6m22', 'en', 1, 'https://ror.org/01w0v6m22 Tamil Nadu Physical Education and Sports University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®‰ą®Ÿą®±ąÆą®•ą®²ąÆą®µą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®æą®³ąÆˆą®Æą®¾ą®ŸąÆą®ŸąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(101553, 'https://ror.org/01w66yj92', 'en', 1, 'https://ror.org/01w66yj92 NMIM, National Metrology Institute of Malaysia'),
(101554, 'https://ror.org/01w6qp003', 'en', 1, 'https://ror.org/01w6qp003 University of Veterinary Medicine Vienna VeterinƤrmedizinische UniversitƤt Wien'),
(101555, 'https://ror.org/01w8zj169', 'es', 1, 'https://ror.org/01w8zj169 Instituto Tecnológico de Tuxtepec'),
(101556, 'https://ror.org/01w9d4603', 'en', 1, 'https://ror.org/01w9d4603 Shunde Polytechnic é”ŗå¾·čŒäøšęŠ€ęœÆå­¦é™¢'),
(101557, 'https://ror.org/01wa61d03', 'fr', 1, 'https://ror.org/01wa61d03 Institut de recherche Saint-Louis'),
(101558, 'https://ror.org/01waxag60', 'en', 1, 'https://ror.org/01waxag60 Light, nanomaterials, nanotechnologies Lumière, nanomatériaux et nanotechnologies'),
(101559, 'https://ror.org/01wb6tr49', 'en', 1, 'https://ror.org/01wb6tr49 Kyambogo University'),
(101560, 'https://ror.org/01wbg2c90', 'es', 1, 'https://ror.org/01wbg2c90 Universidad San Jorge'),
(101561, 'https://ror.org/01wck0s05', 'en', 1, 'https://ror.org/01wck0s05 Hangzhou City University'),
(101562, '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'),
(101563, 'https://ror.org/01wfdn362', 'es', 1, 'https://ror.org/01wfdn362 Ministerio de Educación del Ecuador'),
(101564, 'https://ror.org/01whxzd80', 'en', 1, 'https://ror.org/01whxzd80 Research and Educational Networking Association of Moldova'),
(101565, 'https://ror.org/01wjejq96', 'en', 1, 'https://ror.org/01wjejq96 Yonsei University ģ—°ģ„øėŒ€ķ•™źµ'),
(101566, 'https://ror.org/01wjs8e77', 'en', 1, 'https://ror.org/01wjs8e77 Kings Dental Center'),
(101567, 'https://ror.org/01wjxf448', 'fr', 1, 'https://ror.org/01wjxf448 Aquitaine Regional Council Conseil RƩgional d''Aquitaine'),
(101568, 'https://ror.org/01wka8n18', 'en', 1, 'https://ror.org/01wka8n18 Royal Veterinary College'),
(101569, 'https://ror.org/01wp2jz98', 'en', 1, 'https://ror.org/01wp2jz98 European X-Ray Free-Electron Laser'),
(101570, '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'),
(101571, 'https://ror.org/01wsc1g26', 'id', 1, 'https://ror.org/01wsc1g26 Universitas Prasetiya Mulya'),
(101572, 'https://ror.org/01wtxm109', 'en', 1, 'https://ror.org/01wtxm109 Institute of Zoology Š—Š¾Š¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(101573, 'https://ror.org/01wvg5605', 'fr', 1, 'https://ror.org/01wvg5605'),
(101574, 'https://ror.org/01wwv2135', 'en', 1, 'https://ror.org/01wwv2135 Chesterfield College'),
(101575, 'https://ror.org/01wy3h363', 'en', 1, 'https://ror.org/01wy3h363 Shandong Normal University 山东师范大学'),
(101576, 'https://ror.org/01wzg9f04', 'en', 1, 'https://ror.org/01wzg9f04 AgroResonance Platform Plateforme AgroResonance'),
(101577, 'https://ror.org/01x18ax09', 'en', 1, 'https://ror.org/01x18ax09 Yalova University Yalova Üniversitesi'),
(101578, 'https://ror.org/01x1skr92', 'en', 1, 'https://ror.org/01x1skr92 Henan University of Urban Construction ę²³å—åŸŽå»ŗå­¦é™¢'),
(101579, 'https://ror.org/01x3gbx83', 'fr', 0, 'https://ror.org/01x3gbx83 French National Institute for Agricultural Research Institut National de la Recherche Agronomique'),
(101580, 'https://ror.org/01x3qz996', 'fr', 1, 'https://ror.org/01x3qz996 Approches contemporaines de la crƩation et de la rƩflexion artistiques'),
(101581, 'https://ror.org/01x3vbs59', 'en', 1, 'https://ror.org/01x3vbs59 S P Jain School of Global Management'),
(101582, 'https://ror.org/01x3ydm75', 'fr', 1, 'https://ror.org/01x3ydm75'),
(101583, 'https://ror.org/01x3z9745', 'en', 1, 'https://ror.org/01x3z9745 Texas A&M University – Texarkana'),
(101584, 'https://ror.org/01x4xt461', 'pt', 1, 'https://ror.org/01x4xt461 Laboratório de Inteligência Artificial e Apoio à Decisão'),
(101585, 'https://ror.org/01x6rgt30', 'en', 1, 'https://ror.org/01x6rgt30 Xiamen Medical College åŽ¦é—ØåŒ»å­¦é™¢'),
(101586, 'https://ror.org/01x8m3269', 'tr', 1, 'https://ror.org/01x8m3269 Hitit University Hitit Üniversitesi'),
(101587, 'https://ror.org/01xbd2h58', 'fr', 1, 'https://ror.org/01xbd2h58 UnitƩ Mixte de Recherche sur les Fromages'),
(101588, 'https://ror.org/01xc2fv34', 'en', 1, 'https://ror.org/01xc2fv34 Mosaic Company, Mosaic Company (United States)'),
(101589, 'https://ror.org/01xc5jm57', 'pt', 1, 'https://ror.org/01xc5jm57 Instituto Federal de Educação Ciência e Tecnologia da Paraíba'),
(101590, 'https://ror.org/01xdt7541', 'pt', 1, 'https://ror.org/01xdt7541 Escola Superior NƔutica Infante Dom Henrique'),
(101591, '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'),
(101592, 'https://ror.org/01xjctg43', 'fi', 1, 'https://ror.org/01xjctg43 FolkhƤlsan Research Foundation FolkhƤlsanin TutkimussƤƤtiƶ'),
(101593, 'https://ror.org/01xjq7424', 'fr', 1, 'https://ror.org/01xjq7424 Institut National Polytechnique de Lorraine'),
(101594, 'https://ror.org/01xkfnd03', 'fr', 1, 'https://ror.org/01xkfnd03 Laboratoire de MathƩmatiques de Reims'),
(101595, 'https://ror.org/01xm4n520', 'en', 1, 'https://ror.org/01xm4n520 Ionian University UniversitĆ© ionienne Ī™ĻŒĪ½Ī¹Īæ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(101596, 'https://ror.org/01xpc6869', 'fr', 1, 'https://ror.org/01xpc6869 Centre de Recherche en Biologie cellulaire de Montpellier Centre for Biochemical and Macromolecular Research'),
(101597, 'https://ror.org/01xptp363', 'no_lang_code', 0, 'https://ror.org/01xptp363 NFDI4Objects'),
(101598, 'https://ror.org/01xr4jy61', 'es', 1, 'https://ror.org/01xr4jy61 Instituto de MeteorologĆ­a'),
(101599, 'https://ror.org/01xszvp42', 'en', 1, 'https://ror.org/01xszvp42 Akademia Sztuki w Szczecinie Szczecin Academy of Arts'),
(101600, 'https://ror.org/01xtd3q75', 'en', 1, 'https://ror.org/01xtd3q75 North Bengal International University'),
(101601, 'https://ror.org/01xtv3204', 'en', 1, 'https://ror.org/01xtv3204 University of Foggia UniversitƠ degli Studi di Foggia UniversitƩ de foggia'),
(101602, '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'),
(101603, 'https://ror.org/01y60h972', 'en', 1, 'https://ror.org/01y60h972 Ramon Magsaysay Memorial Colleges'),
(101604, 'https://ror.org/01y766z47', 'fr', 1, 'https://ror.org/01y766z47 Groupement de Recherche et d''Ɖtudes en Gestion d’HEC'),
(101605, 'https://ror.org/01y92wg94', 'es', 1, 'https://ror.org/01y92wg94 Universidad Tecnológica de Querétaro'),
(101606, 'https://ror.org/01y9bpm73', 'en', 1, 'https://ror.org/01y9bpm73 Georg-August-UniversitƤt Gƶttingen University of Gƶttingen'),
(101607, 'https://ror.org/01ybw6t12', 'fr', 1, 'https://ror.org/01ybw6t12 Laboratoire de Changement Social et Politique'),
(101608, 'https://ror.org/01ydb3330', 'fr', 1, 'https://ror.org/01ydb3330 Soleil Synchrotron Synchrotron soleil'),
(101609, 'https://ror.org/01yekza56', 'fr', 1, 'https://ror.org/01yekza56 National Forests Office Office National des ForĆŖts'),
(101610, 'https://ror.org/01yetye73', 'en', 1, 'https://ror.org/01yetye73 University of Teramo UniversitƠ degli Studi di Teramo UniversitƩ de teramo'),
(101611, 'https://ror.org/01yhahq71', 'en', 1, 'https://ror.org/01yhahq71 WHU – Otto Beisheim School of Management'),
(101612, 'https://ror.org/01ykjav28', 'en', 1, 'https://ror.org/01ykjav28 Raymond James Financial, Raymond James Financial (United States)'),
(101613, 'https://ror.org/01ymr5447', 'it', 1, 'https://ror.org/01ymr5447 Biogem, Biologia e Genetica Molecolare nel Mezzogiorno'),
(101614, 'https://ror.org/01ynb8e46', 'en', 1, 'https://ror.org/01ynb8e46 Mills College'),
(101615, 'https://ror.org/01ynf4891', 'en', 1, 'https://ror.org/01ynf4891 University of Milano-Bicocca UniversitĆ  degli Studi di Milano-Bicocca'),
(101616, 'https://ror.org/01ynzx943', 'en', 1, 'https://ror.org/01ynzx943 Databricks, Databricks (United States)'),
(101617, 'https://ror.org/01ypbmk97', 'no_lang_code', 1, 'https://ror.org/01ypbmk97 Verisign, Verisign (United States)'),
(101618, 'https://ror.org/01yqg2h08', 'en', 1, 'https://ror.org/01yqg2h08 Harbin Institute of Technology å“ˆå°”ę»Øå·„äøšå¤§å­¦'),
(101619, 'https://ror.org/01ythxj32', 'en', 1, 'https://ror.org/01ythxj32 Oakland University'),
(101620, 'https://ror.org/01yw67305', 'id', 1, 'https://ror.org/01yw67305 Institut Teknologi Nasional Yogyakarta'),
(101621, 'https://ror.org/01yw97595', 'fr', 1, 'https://ror.org/01yw97595 Laboratoire AmĆ©nagement Ɖconomie Transports'),
(101622, 'https://ror.org/01yw9jt43', 'en', 1, 'https://ror.org/01yw9jt43 Pathogenesis and Control of Chronic and Emerging Infections'),
(101623, 'https://ror.org/01yxtfe92', 'fr', 1, 'https://ror.org/01yxtfe92 Ɖcole Nationale SupĆ©rieure d''Architecture de Grenoble'),
(101624, 'https://ror.org/01yxwrh59', 'en', 1, 'https://ror.org/01yxwrh59 Chengdu University of Information Technology ęˆéƒ½äæ”ęÆå·„ēØ‹å¤§å­¦'),
(101625, 'https://ror.org/01yymex05', 'en', 1, 'https://ror.org/01yymex05 Southwest Jiaotong University Hope College č„æå—äŗ¤é€šå¤§å­¦åøŒęœ›å­¦é™¢'),
(101626, 'https://ror.org/01yypjb30', 'fr', 1, 'https://ror.org/01yypjb30 Laboratoire d''Ingénierie des Systèmes Biologiques et des Procédés'),
(101627, 'https://ror.org/01z05qp51', 'no_lang_code', 0, 'https://ror.org/01z05qp51 NamesforLife (United States)'),
(101628, 'https://ror.org/01z1ame92', 'en', 1, 'https://ror.org/01z1ame92 Wiawso College of Education'),
(101629, 'https://ror.org/01z25am55', 'en', 1, 'https://ror.org/01z25am55 Center for Integrated Quantum Science and Technology'),
(101630, 'https://ror.org/01z3j1770', 'en', 1, 'https://ror.org/01z3j1770 Crewkerne Community Hospital'),
(101631, 'https://ror.org/01z485314', 'fr', 1, 'https://ror.org/01z485314 UMR Espace-Dev'),
(101632, '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'),
(101633, 'https://ror.org/01z6bgg93', 'en', 1, 'https://ror.org/01z6bgg93 Koninklijk Instituut voor de Tropen Royal Tropical Institute'),
(101634, 'https://ror.org/01z7r7q48', 'en', 1, 'https://ror.org/01z7r7q48 Children''s Hospital of Philadelphia'),
(101635, 'https://ror.org/01za3ap29', 'en', 1, 'https://ror.org/01za3ap29 Smithsonian American Art Museum'),
(101636, 'https://ror.org/01zdaff53', 'en', 1, 'https://ror.org/01zdaff53 Metropolitan University Prague MetropolitnĆ­ univerzita Praha'),
(101637, '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.'),
(101638, 'https://ror.org/01zefvs55', 'fr', 1, 'https://ror.org/01zefvs55 Immunity and Cancer ImmunitƩ et Cancer'),
(101639, 'https://ror.org/01zemh668', 'en', 1, 'https://ror.org/01zemh668 Sri Siddhartha Medical College'),
(101640, 'https://ror.org/01zgcd031', 'fr', 1, 'https://ror.org/01zgcd031 TƩSA'),
(101641, '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'),
(101642, 'https://ror.org/01zh59148', 'en', 1, 'https://ror.org/01zh59148 City Institute for Public Health - Belgrade'),
(101643, 'https://ror.org/01zhpv322', 'en', 1, 'https://ror.org/01zhpv322 Muscat College'),
(101644, 'https://ror.org/01zhwwf82', 'en', 1, 'https://ror.org/01zhwwf82 Kırıkkale University Kırıkkale Üniversitesi'),
(101645, 'https://ror.org/01zkyzz15', 'fr', 1, 'https://ror.org/01zkyzz15 HƓpital Fernand-Widal'),
(101646, 'https://ror.org/01znbx673', 'en', 1, 'https://ror.org/01znbx673 Green Cross Laboratoies, Green Cross Laboratories (South Korea)'),
(101647, 'https://ror.org/01zprwd36', 'fr', 1, 'https://ror.org/01zprwd36 Centre d''Acquisition et de Traitement des Images'),
(101648, 'https://ror.org/01zrk7293', 'fr', 1, 'https://ror.org/01zrk7293 Physiopathogénèse et Traitement des Maladies du Foie'),
(101649, 'https://ror.org/01zsaxn18', 'en', 1, 'https://ror.org/01zsaxn18 National Coalition of Independent Scholars'),
(101650, 'https://ror.org/01zss5v68', 'en', 0, 'https://ror.org/01zss5v68 Institute Cancer De La Loire Lucien Neuwirth'),
(101651, 'https://ror.org/01ztv7560', 'en', 1, 'https://ror.org/01ztv7560 Sapientia College of Theology of Religious Orders Sapientia Szerzetesi HittudomĆ”nyi Főiskola'),
(101652, 'https://ror.org/01zxaph45', 'tr', 1, 'https://ror.org/01zxaph45 Alanya Alaaddin Keykubat University Alanya Alaaddin Keykubat Üniversitesi'),
(101653, 'https://ror.org/01zxe8n50', 'es', 1, 'https://ror.org/01zxe8n50 Universidad AnƔhuac Xalapa'),
(101654, 'https://ror.org/01zywja13', 'en', 1, 'https://ror.org/01zywja13 Kielce University of Technology Politechnika Świętokrzyska'),
(101655, 'https://ror.org/01zzsqn40', 'no_lang_code', 1, 'https://ror.org/01zzsqn40 Signatope GmbH, Signatope GmbH (Germany)'),
(101656, 'https://ror.org/02004hr86', 'en', 1, 'https://ror.org/02004hr86 S. U. Umarov Physical-Technical Institute'),
(101657, 'https://ror.org/0203c2755', 'en', 1, 'https://ror.org/0203c2755 Nanyang Institute of Technology å—é˜³ē†å·„å­¦é™¢'),
(101658, 'https://ror.org/0203k1k48', 'no_lang_code', 1, 'https://ror.org/0203k1k48 Leonardo (Poland)'),
(101659, 'https://ror.org/02047t867', 'en', 1, 'https://ror.org/02047t867 New Phytologist Foundation'),
(101660, 'https://ror.org/0204y7905', 'pt', 1, 'https://ror.org/0204y7905 Academia Nacional de Belas Artes'),
(101661, 'https://ror.org/0207fe012', 'fr', 1, 'https://ror.org/0207fe012 Burgundy School of Business'),
(101662, 'https://ror.org/0208m5v39', 'fr', 1, 'https://ror.org/0208m5v39 RƩgulations Naturelle et Artificielle'),
(101663, 'https://ror.org/0209mnq24', 'en', 1, 'https://ror.org/0209mnq24 Technological and Higher Education Institute of Hong Kong é¦™ęøÆé«˜ē­‰ę•™č‚²ē§‘ęŠ€å­øé™¢'),
(101664, 'https://ror.org/020ahr442', 'fr', 1, 'https://ror.org/020ahr442 Laboratoire Microorganismes GƩnome et Environnement'),
(101665, 'https://ror.org/020ast312', 'ms', 1, 'https://ror.org/020ast312 Universiti Sains Islam Malaysia'),
(101666, 'https://ror.org/020brnt57', 'en', 1, 'https://ror.org/020brnt57 South West College'),
(101667, 'https://ror.org/020f58t40', 'en', 1, 'https://ror.org/020f58t40 Regional Environmental Center For Central Asia Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Экологический Центр Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(101668, 'https://ror.org/020frhs78', 'fr', 1, 'https://ror.org/020frhs78 Agence internationale de l''Ʃnergie International Energy Agency'),
(101669, 'https://ror.org/020hxh324', 'en', 1, 'https://ror.org/020hxh324 Wenzhou University ęø©å·žå¤§å­¦'),
(101670, 'https://ror.org/020m4fx82', 'en', 1, 'https://ror.org/020m4fx82 Oregon Humanities'),
(101671, 'https://ror.org/020r0s364', 'pt', 1, 'https://ror.org/020r0s364 Centro de Investigação de Políticas do Ensino Superior'),
(101672, 'https://ror.org/020sxkn16', 'en', 1, 'https://ror.org/020sxkn16 Fife College'),
(101673, 'https://ror.org/020tty630', 'en', 0, 'https://ror.org/020tty630 KonsortSWD Konsortium für die Sozial-, Bildungs-, Verhaltens- und Wirtschaftswissenschaften'),
(101674, 'https://ror.org/020vvc407', 'en', 1, 'https://ror.org/020vvc407 Gaziantep University Gaziantep Üniversitesi'),
(101675, 'https://ror.org/020wfrz93', 'en', 1, 'https://ror.org/020wfrz93 Foothills Medical Centre'),
(101676, 'https://ror.org/020ws7586', 'fr', 1, 'https://ror.org/020ws7586 Institut National des Sciences AppliquƩes Rouen Normandie'),
(101677, 'https://ror.org/020wyb168', 'no_lang_code', 1, 'https://ror.org/020wyb168 Lancium, Lancium (United States)'),
(101678, 'https://ror.org/020ydms54', 'en', 1, 'https://ror.org/020ydms54 University of Finance and Administration VysokĆ” Å”kola finančnĆ­ a sprĆ”vnĆ­'),
(101679, 'https://ror.org/020yme056', 'de', 1, 'https://ror.org/020yme056 Bundesinstitut für Kultur und Geschichte des östlichen Europa'),
(101680, 'https://ror.org/021036w13', 'en', 1, 'https://ror.org/021036w13 Belarusian State University Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101681, 'https://ror.org/0211r2z47', 'fr', 1, 'https://ror.org/0211r2z47 Institut des Sciences MolƩculaires d''Orsay'),
(101682, 'https://ror.org/02127h732', 'en', 1, 'https://ror.org/02127h732 Wolfspeed, Inc., Wolfspeed, Inc. (United States)'),
(101683, 'https://ror.org/0213f8g15', 'en', 1, 'https://ror.org/0213f8g15 DMEX Centre for X-ray Imaging'),
(101684, 'https://ror.org/0213rcc28', 'en', 1, 'https://ror.org/0213rcc28 Simon Fraser University'),
(101685, 'https://ror.org/0214k6v65', 'fr', 1, 'https://ror.org/0214k6v65 Laboratoire de Physique Corpusculaire'),
(101686, 'https://ror.org/02160my55', 'fr', 1, 'https://ror.org/02160my55 Ingenierie des Materiaux polymeres Laboratory of Polymer Materials Engineering'),
(101687, 'https://ror.org/0218kns11', 'fr', 1, 'https://ror.org/0218kns11 Centre Maurice Hauriou pour la Recherche en Droit Public'),
(101688, 'https://ror.org/021a2zz52', 'en', 1, 'https://ror.org/021a2zz52 Hong Kong Chu Hai College é¦™ęøÆē ęµ·å­øé™¢'),
(101689, 'https://ror.org/021bcyf85', 'en', 0, 'https://ror.org/021bcyf85 U.S. Army Center for Health Promotion and Preventive Medicine'),
(101690, 'https://ror.org/021brj308', 'pt', 1, 'https://ror.org/021brj308 Brazilian School of Economics and Finance Escola Brasileira de Economia e FinanƧas'),
(101691, 'https://ror.org/021ddkf20', 'fr', 1, 'https://ror.org/021ddkf20 Institut de Recherches Historiques du Septentrion'),
(101692, 'https://ror.org/021ft0n22', 'de', 1, 'https://ror.org/021ft0n22 University Medical Center Gƶttingen UniversitƤtsmedizin Gƶttingen'),
(101693, 'https://ror.org/021j0ne73', 'en', 1, 'https://ror.org/021j0ne73 Council of the Haida Nation'),
(101694, 'https://ror.org/021r98132', 'en', 1, 'https://ror.org/021r98132 Shaanxi University of Chinese Medicine é™•č„æäø­åŒ»å­¦é™¢'),
(101695, 'https://ror.org/021rps953', 'en', 1, 'https://ror.org/021rps953 Southern Regional College'),
(101696, 'https://ror.org/021rrk332', 'fr', 1, 'https://ror.org/021rrk332 ConfƩdƩration franƧaise dƩmocratique du travail French Democratic Confederation of Labour'),
(101697, 'https://ror.org/021ryxk89', 'fr', 1, 'https://ror.org/021ryxk89 Toxicologie, Pharmacologie et Signalisation Cellulaire Toxicology, Pharmacology and Cellular Signaling'),
(101698, 'https://ror.org/021v3qy27', 'en', 1, 'https://ror.org/021v3qy27 Universidad de Dayton University of Dayton UniversitƩ de dayton'),
(101699, 'https://ror.org/021wv9p83', 'fr', 0, 'https://ror.org/021wv9p83 Ɖcole des MĆ©tiers de l’Environnement'),
(101700, 'https://ror.org/021x7r354', 'fr', 1, 'https://ror.org/021x7r354 BiodiversitƩ et Biotechnologie Fongiques Fungal Biodiversity and Biotechnology'),
(101701, 'https://ror.org/021xexe56', 'fr', 1, 'https://ror.org/021xexe56 Laboratoire AimƩ Cotton'),
(101702, 'https://ror.org/021zcv334', 'en', 1, 'https://ror.org/021zcv334 Ecology and Conservation Science for Sustainable Seas'),
(101703, 'https://ror.org/021zwb636', 'es', 1, 'https://ror.org/021zwb636 Universidad Tecnologica de Cancun'),
(101704, 'https://ror.org/0220f5b41', 'en', 1, 'https://ror.org/0220f5b41 Tokyo Dental College ę±äŗ¬ę­Æē§‘å¤§å­¦'),
(101705, 'https://ror.org/0220k9r37', 'fr', 0, 'https://ror.org/0220k9r37 Paris Descartes University UniversitƩ Paris Descartes'),
(101706, 'https://ror.org/0220qvk04', 'en', 1, 'https://ror.org/0220qvk04 Shanghai Jiao Tong University äøŠęµ·äŗ¤é€šå¤§å­¦'),
(101707, 'https://ror.org/0222yqz05', 'pt', 1, 'https://ror.org/0222yqz05 Instituto Superior de CiĆŖncias Educativas do Douro'),
(101708, 'https://ror.org/02275k146', 'pt', 1, 'https://ror.org/02275k146 Assembleia da RepĆŗblica'),
(101709, 'https://ror.org/0227as991', 'en', 1, 'https://ror.org/0227as991 Chungnam National University ģ¶©ė‚ØėŒ€ķ•™źµ'),
(101710, 'https://ror.org/0227fbx80', 'fr', 0, 'https://ror.org/0227fbx80 University of Montpellier 1 UniversitƩ Montpellier 1'),
(101711, 'https://ror.org/0227md814', 'fr', 1, 'https://ror.org/0227md814 Equipe de droit public de Lyon'),
(101712, 'https://ror.org/022atwn53', 'en', 1, 'https://ror.org/022atwn53 Berkshire College of Agriculture'),
(101713, 'https://ror.org/022b0h879', 'fr', 1, 'https://ror.org/022b0h879 Institut de Physique de Rennes'),
(101714, 'https://ror.org/022bnxw24', 'fr', 1, 'https://ror.org/022bnxw24 Institut d''Astrophysique de Paris Paris Institute of Astrophysics'),
(101715, 'https://ror.org/022bqby64', 'en', 1, 'https://ror.org/022bqby64 Chongqing Zhijian Life Technology Co., Ltd (China) é‡åŗ†ēŸ„č§ē”Ÿå‘½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(101716, '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)'),
(101717, 'https://ror.org/022e9e065', 'no_lang_code', 1, 'https://ror.org/022e9e065 Shijiazhuang Tiedao University ēŸ³å®¶åŗ„é“é“å¤§å­¦'),
(101718, 'https://ror.org/022j2n646', 'en', 1, 'https://ror.org/022j2n646 South African Radio Astronomy Observatory'),
(101719, 'https://ror.org/022jmgp84', 'en', 1, 'https://ror.org/022jmgp84 New Design University'),
(101720, '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'),
(101721, 'https://ror.org/022kthw22', 'en', 1, 'https://ror.org/022kthw22 Universidad de Rochester University of Rochester UniversitƩ de Rochester'),
(101722, 'https://ror.org/022m8c549', 'fr', 1, 'https://ror.org/022m8c549 Laboratoire de Biotechnologie de l''Environnement Laboratory of Environmental Biotechnology'),
(101723, 'https://ror.org/022nvg924', 'no_lang_code', 1, 'https://ror.org/022nvg924 Agari Data, Agari Data (United States)'),
(101724, 'https://ror.org/022psxk94', 'fr', 1, 'https://ror.org/022psxk94 Maison FranƧaise d''Oxford'),
(101725, 'https://ror.org/022qdz987', 'pt', 1, 'https://ror.org/022qdz987 Faculdade de Direito de Vitória'),
(101726, 'https://ror.org/022t7x179', 'no_lang_code', 1, 'https://ror.org/022t7x179 ECS, ECS (United States)'),
(101727, 'https://ror.org/022x6qg61', 'en', 1, 'https://ror.org/022x6qg61 Vassar College'),
(101728, 'https://ror.org/022zbr960', 'en', 1, 'https://ror.org/022zbr960 Seijo University ęˆåŸŽå¤§å­¦'),
(101729, 'https://ror.org/02309jg23', 'en', 1, 'https://ror.org/02309jg23 IT University of Copenhagen IT-Universitetet i København IT-Universität Kopenhagen'),
(101730, 'https://ror.org/0230c9q89', 'en', 1, 'https://ror.org/0230c9q89 ESIC Universidad ESIC University'),
(101731, 'https://ror.org/0230m6b87', 'en', 1, 'https://ror.org/0230m6b87 Rufus Giwa Polytechnic'),
(101732, 'https://ror.org/02315by94', 'en', 1, 'https://ror.org/02315by94 Xuzhou University of Technology å¾å·žå·„ēØ‹å­¦é™¢'),
(101733, 'https://ror.org/0231an742', 'en', 1, 'https://ror.org/0231an742 Jiangmen Underground Neutrino Observatory ę±Ÿé—Øåœ°äø‹äø­å¾®å­å®žéŖŒč§‚ęµ‹ē«™'),
(101734, 'https://ror.org/0232f6165', 'en', 1, 'https://ror.org/0232f6165 Department of Pharmaceuticals'),
(101735, 'https://ror.org/02336z538', 'en', 1, 'https://ror.org/02336z538 Duquesne University');
INSERT INTO `rors` VALUES
(101736, 'https://ror.org/0234bnr88', 'sv', 1, 'https://ror.org/0234bnr88 Station LinnƩ'),
(101737, 'https://ror.org/0234pcb82', 'nl', 1, 'https://ror.org/0234pcb82 Dienst Uitvoering Onderwijs'),
(101738, 'https://ror.org/0234wmv40', 'en', 1, 'https://ror.org/0234wmv40 University of Bayreuth UniversitƤt Bayreuth'),
(101739, 'https://ror.org/0236dma10', 'en', 1, 'https://ror.org/0236dma10 Centre d’études en gouvernance Centre on Governance'),
(101740, 'https://ror.org/0236xhv80', 'fr', 1, 'https://ror.org/0236xhv80 Centre d''Etudes et de Recherches sur les Emplois et les Professionnalisations'),
(101741, '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'),
(101742, 'https://ror.org/0238fqd79', 'en', 1, 'https://ror.org/0238fqd79 Savonia University of Applied Sciences Savonia-ammattikorkeakoulu'),
(101743, 'https://ror.org/023a3xe97', 'en', 1, 'https://ror.org/023a3xe97 Al-Mustaqbal University ŁƒŁ„ŁŠŲ© المستقبل الجامعة'),
(101744, 'https://ror.org/023aac055', 'es', 1, 'https://ror.org/023aac055 Universidad de Investigación e Innovación de México'),
(101745, 'https://ror.org/023b2c435', 'fr', 1, 'https://ror.org/023b2c435 Laboratoire Anthropologie, ArchƩologie, Biologie'),
(101746, 'https://ror.org/023bv6t84', 'fr', 1, 'https://ror.org/023bv6t84 Equipe de recherche paramƩdicale sur le handicap neuromoteur'),
(101747, 'https://ror.org/023c4vk26', 'no_lang_code', 1, 'https://ror.org/023c4vk26 Global Ecology Unit CREAF-CSIC-UAB'),
(101748, 'https://ror.org/023c9pb11', 'en', 1, 'https://ror.org/023c9pb11 Indian Institute of Information Technology, Design and Manufacturing, Kancheepuram'),
(101749, 'https://ror.org/023c9tc12', 'en', 1, 'https://ror.org/023c9tc12 University of Belgrade – Faculty of Philosophy Univerzitet u Beogradu – Filozofski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Филозофски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(101750, 'https://ror.org/023cs7p87', 'fr', 1, 'https://ror.org/023cs7p87 Groupe de Recherche en Management'),
(101751, 'https://ror.org/023cz3h96', 'en', 1, 'https://ror.org/023cz3h96 Exergetic Systems, Exergetic Systems (Canada)'),
(101752, 'https://ror.org/023ent443', 'en', 1, 'https://ror.org/023ent443 Coleg Brenhinol Cerdd a Drama Cymru Royal Welsh College of Music and Drama'),
(101753, 'https://ror.org/023f9y602', 'fr', 1, 'https://ror.org/023f9y602 Laboratoire de Physique des Interfaces et des Couches Minces Laboratory of Physics of Interfaces and Thin Films'),
(101754, 'https://ror.org/023ffhx15', 'fr', 1, 'https://ror.org/023ffhx15 Laboratoire Roberval'),
(101755, 'https://ror.org/023hj5876', 'en', 1, 'https://ror.org/023hj5876 Dalian University of Technology å¤§čæžē†å·„å¤§å­¦'),
(101756, 'https://ror.org/023hvsb84', 'fr', 1, 'https://ror.org/023hvsb84 Clinique VƩtƩrinaire Occitanie'),
(101757, 'https://ror.org/023jdj880', 'fr', 1, 'https://ror.org/023jdj880 Groupe Hospitalier Mutualiste de Grenoble Mutual Hospital Group of Grenoble'),
(101758, 'https://ror.org/023k5m874', 'en', 1, 'https://ror.org/023k5m874 Project Seagrass'),
(101759, 'https://ror.org/023kksk09', 'en', 1, 'https://ror.org/023kksk09 Weizenbaum Institute Weizenbaum-Institut'),
(101760, 'https://ror.org/023km2z79', 'fr', 1, 'https://ror.org/023km2z79 HƓpital de Vaugirard-Gabriel Pallez'),
(101761, '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'),
(101762, 'https://ror.org/023ktxh49', 'en', 1, 'https://ror.org/023ktxh49 Waziri Umaru Federal Polytechnic, Birnin Kebbi'),
(101763, 'https://ror.org/023n9q531', 'fr', 1, 'https://ror.org/023n9q531 Interdisciplinary Physics Laboratory Laboratoire Interdisciplinaire de Physique'),
(101764, 'https://ror.org/023nfn818', 'es', 1, 'https://ror.org/023nfn818 Instituto Tecnológico de Conkal'),
(101765, 'https://ror.org/023p7mg82', 'en', 1, 'https://ror.org/023p7mg82 Lakehead University UniversitƩ de lakehead'),
(101766, 'https://ror.org/023pm6532', 'en', 1, 'https://ror.org/023pm6532 An Giang University TrĘ°į»ng ĐẔi hį»c An Giang'),
(101767, 'https://ror.org/023rhb549', 'en', 1, 'https://ror.org/023rhb549 Chongqing University é‡åŗ†å¤§å­¦'),
(101768, 'https://ror.org/023vkeb66', 'fr', 1, 'https://ror.org/023vkeb66 DƩlƩgation Centre Limousin Poitou-Charentes'),
(101769, 'https://ror.org/023vrr657', 'en', 1, 'https://ror.org/023vrr657 Indian Institute of Science Education and Research Berhampur'),
(101770, 'https://ror.org/023xgd207', 'fr', 1, 'https://ror.org/023xgd207 HƓpital Lyon Sud'),
(101771, 'https://ror.org/023z8b445', 'en', 1, 'https://ror.org/023z8b445 Association for Cancer Surgery'),
(101772, 'https://ror.org/023zg8w32', 'fr', 1, 'https://ror.org/023zg8w32 Institut National des Langues et Civilisations Orientales National Institute for Oriental Languages and Civilizations'),
(101773, 'https://ror.org/0240khg33', 'fr', 1, 'https://ror.org/0240khg33 Polyclinique Bordeaux Nord Aquitaine'),
(101774, 'https://ror.org/0241zpm76', 'en', 1, 'https://ror.org/0241zpm76 Algiers 2 University UniversitĆ© d''Alger 2 Ų¬Ų§Ł…Ų¹Ų© الجزائر 2'),
(101775, 'https://ror.org/024242h31', 'en', 1, 'https://ror.org/024242h31 Public Authority for Applied Education and Training Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠ ŁˆŲ§Ł„ŲŖŲÆŲ±ŁŠŲØ'),
(101776, 'https://ror.org/024409k12', 'fr', 1, 'https://ror.org/024409k12 Animal Health DƩpartement SantƩ Animale'),
(101777, 'https://ror.org/02463v873', 'pt', 1, 'https://ror.org/02463v873 Instituto PolitƩcnico da Guarda Polytechnic of Guarda'),
(101778, 'https://ror.org/02477a553', 'en', 1, 'https://ror.org/02477a553 Imam Ja’afar Al-Sadiq University'),
(101779, 'https://ror.org/0247jgm75', 'de', 1, 'https://ror.org/0247jgm75 Senatsverwaltung für Mobilität, Verkehr, Klimaschutz und Umwelt'),
(101780, 'https://ror.org/0247p4w70', 'fr', 1, 'https://ror.org/0247p4w70 Service de Physique de l''Ɖtat CondensĆ©'),
(101781, 'https://ror.org/02487ts63', 'en', 1, 'https://ror.org/02487ts63 Malaghan Institute of Medical Research'),
(101782, 'https://ror.org/0248dkz36', 'es', 1, 'https://ror.org/0248dkz36 Tecnológico Nacional de México, Campus Pachuca'),
(101783, 'https://ror.org/02495e989', 'fr', 1, 'https://ror.org/02495e989 Catholic University of Louvain UCLouvain'),
(101784, 'https://ror.org/0249c2k77', 'en', 1, 'https://ror.org/0249c2k77 Moulton College'),
(101785, 'https://ror.org/024f5m737', 'en', 1, 'https://ror.org/024f5m737 Henan Institute of Technology ę²³å—å·„å­¦é™¢'),
(101786, 'https://ror.org/024gts110', 'fr', 1, 'https://ror.org/024gts110 GƩosciences Montpellier'),
(101787, 'https://ror.org/024gw2733', 'en', 1, 'https://ror.org/024gw2733 University of Baltimore UniversitƩ de Baltimore'),
(101788, 'https://ror.org/024hqb733', 'en', 1, 'https://ror.org/024hqb733 West Virginia Humanities Council'),
(101789, 'https://ror.org/024hs3d71', 'en', 1, 'https://ror.org/024hs3d71 City of Flagstaff'),
(101790, 'https://ror.org/024k3xe80', 'fr', 1, 'https://ror.org/024k3xe80 Institut thƩmatique Biologie cellulaire, dƩveloppement et Ʃvolution'),
(101791, 'https://ror.org/024kbgz78', 'en', 1, 'https://ror.org/024kbgz78 Gwangju Institute of Science and Technology ź“‘ģ£¼ź³¼ķ•™źø°ģˆ ģ›'),
(101792, 'https://ror.org/024kdkj87', 'en', 1, 'https://ror.org/024kdkj87 Maine Humanities Council'),
(101793, 'https://ror.org/024mt9310', 'fr', 1, 'https://ror.org/024mt9310 Langage, langues et Cultures d’Afrique Noire Languages and Cultures of Sub-Saharan Africa'),
(101794, 'https://ror.org/024ncvw44', 'en', 1, 'https://ror.org/024ncvw44 Dataminr, Dataminr (United States)'),
(101795, 'https://ror.org/024tfg483', 'en', 1, 'https://ror.org/024tfg483 Copenhagen Hospitality College Hotel og Restaurantskolen'),
(101796, 'https://ror.org/024tgbv41', 'no_lang_code', 1, 'https://ror.org/024tgbv41 Roche (United Kingdom)'),
(101797, 'https://ror.org/024vfck88', 'en', 1, 'https://ror.org/024vfck88 Palau Community College'),
(101798, 'https://ror.org/024yb0264', 'en', 1, 'https://ror.org/024yb0264 University of Belgrade – Faculty of Dental Medicine Univerzitet u Beogradu – StomatoloÅ”ki fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š”Ń‚Š¾Š¼Š°Ń‚Š¾Š»Š¾ŃˆŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(101799, 'https://ror.org/024zjzd49', 'en', 1, 'https://ror.org/024zjzd49 Lublin University of Technology Politechnika Lubelska'),
(101800, 'https://ror.org/0250wyd34', 'no_lang_code', 1, 'https://ror.org/0250wyd34 TDK (United States)'),
(101801, 'https://ror.org/0251tqx66', 'fr', 1, 'https://ror.org/0251tqx66 Centre d''Investigation Clinique HƓpital EuropƩen Georges Pompidou'),
(101802, 'https://ror.org/025320p83', 'en', 1, 'https://ror.org/025320p83 SUNY Sullivan'),
(101803, 'https://ror.org/0255jh689', 'en', 1, 'https://ror.org/0255jh689 King Danylo University'),
(101804, 'https://ror.org/0257dtg16', 'en', 1, 'https://ror.org/0257dtg16 Dicle University Dicle Üniversitesi'),
(101805, 'https://ror.org/0257kt353', 'en', 1, 'https://ror.org/0257kt353 Hƶgskolan VƤst University West'),
(101806, 'https://ror.org/0257sgk90', 'fr', 1, 'https://ror.org/0257sgk90 Computer Science and Systems Laboratory Laboratoire d’Informatique et SystĆØmes'),
(101807, 'https://ror.org/0258as409', 'no_lang_code', 1, 'https://ror.org/0258as409 Kuaishou, Kuaishou (China) åŒ—äŗ¬åæ«ę‰‹ē§‘ęŠ€ęœ‰é™å…¬åø, 快手'),
(101808, 'https://ror.org/0259hk390', 'fr', 1, 'https://ror.org/0259hk390 Centre Pasteur du Cameroun'),
(101809, 'https://ror.org/0259td381', 'fr', 1, 'https://ror.org/0259td381 Neurophysiologie respiratoire expƩrimentale et clinique'),
(101810, 'https://ror.org/025agbr41', 'en', 1, 'https://ror.org/025agbr41 RMeS - Regenerative Medicine and Skeleton'),
(101811, 'https://ror.org/025b4c754', 'fr', 0, 'https://ror.org/025b4c754 Charles de Gaulle University Lille III Charles de Gaulle UniversitƩ de Lille III'),
(101812, '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'),
(101813, 'https://ror.org/025ecfn45', 'en', 1, 'https://ror.org/025ecfn45 Harvey Mudd College'),
(101814, 'https://ror.org/025g2e477', 'fr', 1, 'https://ror.org/025g2e477 Biocommunication en Cardio-MƩtabolique'),
(101815, 'https://ror.org/025jsyk19', 'en', 1, 'https://ror.org/025jsyk19 Suzhou City University č˜‡å·žåŸŽåø‚å­¦é™¢'),
(101816, 'https://ror.org/025mx2575', 'en', 1, 'https://ror.org/025mx2575 Yeditepe University Yeditepe Üniversitesi'),
(101817, 'https://ror.org/025n5kj18', 'en', 1, 'https://ror.org/025n5kj18 Zhaoqing University 肇庆学院'),
(101818, 'https://ror.org/025ng2310', 'es', 1, 'https://ror.org/025ng2310 Universidad Tecnológica de la Región Carbonífera'),
(101819, 'https://ror.org/025nmxp11', 'fr', 1, 'https://ror.org/025nmxp11 Institut de MƩcanique des Fluides de Toulouse Institute of Fluid Mechanics of Toulouse'),
(101820, 'https://ror.org/025q8p570', 'en', 1, 'https://ror.org/025q8p570 The Kericho National Polytechnic'),
(101821, 'https://ror.org/025qq8j12', 'en', 1, 'https://ror.org/025qq8j12 Vesalius College'),
(101822, 'https://ror.org/025r5qe02', 'en', 1, 'https://ror.org/025r5qe02 Syracuse University Universidad de Siracusa UniversitƩ de syracuse'),
(101823, 'https://ror.org/025rgte66', 'en', 1, 'https://ror.org/025rgte66 NSW Office for Learning and Teaching'),
(101824, 'https://ror.org/025wndx93', 'fr', 1, 'https://ror.org/025wndx93 University of Parakou UniversitƩ de Parakou'),
(101825, 'https://ror.org/025wzwv46', 'en', 1, 'https://ror.org/025wzwv46 University of Northern British Columbia'),
(101826, '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'),
(101827, 'https://ror.org/025y36b60', 'tr', 1, 'https://ror.org/025y36b60 Ankara Sosyal Bilimler Üniversitesi'),
(101828, 'https://ror.org/025ysd319', 'en', 1, 'https://ror.org/025ysd319 New Higher Education Institute - NEWUNI ახალი įƒ£įƒ›įƒįƒ¦įƒšįƒ”įƒ”įƒ˜ įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ”įƒ‘įƒ”įƒšįƒ˜ - ნიუუნი'),
(101829, 'https://ror.org/025z3z560', 'en', 1, 'https://ror.org/025z3z560 Munich Cluster for Systems Neurology'),
(101830, 'https://ror.org/025zmdz23', 'en', 1, 'https://ror.org/025zmdz23 Imperial College Healthcare Charity'),
(101831, 'https://ror.org/0260nab69', 'es', 1, 'https://ror.org/0260nab69 Universidad Tecnológica de Chihuahua'),
(101832, 'https://ror.org/0261b7b91', 'en', 1, 'https://ror.org/0261b7b91 Fetal Medicine Foundation'),
(101833, 'https://ror.org/0262br971', 'en', 1, 'https://ror.org/0262br971 Innovation and Development in Agriculture and Food'),
(101834, 'https://ror.org/0262te083', 'en', 1, 'https://ror.org/0262te083 Krakow University of Economics Uniwersytet Ekonomiczny w Krakowie'),
(101835, 'https://ror.org/0262z1d94', 'fr', 1, 'https://ror.org/0262z1d94 Laboratoire Innovation Communication et MarchƩ'),
(101836, 'https://ror.org/0264cg909', 'en', 1, 'https://ror.org/0264cg909 Indian Institute of Technology Palakkad ą“Ŗą“¾ą“²ą“•ąµą“•ą“¾ą“Ÿąµ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ą“æą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(101837, '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'),
(101838, 'https://ror.org/0264vhs54', 'fr', 0, 'https://ror.org/0264vhs54 GƩnomique Bioinformatique et Applications Laboratory Genomics, Bioinformatics, and Applications'),
(101839, 'https://ror.org/0265sk121', 'en', 1, 'https://ror.org/0265sk121 ColĆ”iste RĆ­oga Lianna na hƉireann Royal College of Physicians of Ireland'),
(101840, 'https://ror.org/0265w5591', 'en', 1, 'https://ror.org/0265w5591 IBM Research - Thomas J. Watson Research Center'),
(101841, 'https://ror.org/0266c5p67', 'fr', 1, 'https://ror.org/0266c5p67 Immunologie intƩgrative des tumeurs et immunothƩrapie du cancer'),
(101842, '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'),
(101843, 'https://ror.org/0266y7j75', 'fr', 1, 'https://ror.org/0266y7j75 Centre de Recherches Politiques de Sciences Po Centre for Political Research at Sciences Po'),
(101844, 'https://ror.org/0267vjk41', 'en', 1, 'https://ror.org/0267vjk41 University of Hertfordshire'),
(101845, 'https://ror.org/0268ecp52', 'fr', 1, 'https://ror.org/0268ecp52 Paris-Est Sup'),
(101846, 'https://ror.org/026c29h90', 'en', 1, 'https://ror.org/026c29h90 Pingdingshan University 平锶山学院'),
(101847, 'https://ror.org/026cfwd52', 'en', 1, 'https://ror.org/026cfwd52 Gautam Buddha University ą¤—ą„Œą¤¤ą¤® ą¤¬ą„ą¤¦ą„ą¤§ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®•ąÆŒą®¤ą®®ąÆ ą®ŖąÆą®¤ąÆą®¤ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(101848, 'https://ror.org/026db3d50', 'en', 1, 'https://ror.org/026db3d50 Aksaray University Aksaray Üniversitesi'),
(101849, 'https://ror.org/026ddbz68', 'fr', 1, 'https://ror.org/026ddbz68 GƩnomique Ʃvolutive, modƩlisation et santƩ'),
(101850, 'https://ror.org/026etfb20', 'en', 1, 'https://ror.org/026etfb20 National Zoological Park'),
(101851, 'https://ror.org/026fpwg41', 'fr', 1, 'https://ror.org/026fpwg41 Chronobiotron'),
(101852, 'https://ror.org/026h43663', 'fr', 1, 'https://ror.org/026h43663 Centre de Recherches Linguistiques sur l''Asie Orientale'),
(101853, 'https://ror.org/026j45x50', 'fr', 1, 'https://ror.org/026j45x50 Laboratoire Pacte Pacte Laboratory'),
(101854, 'https://ror.org/026k5mg93', 'en', 1, 'https://ror.org/026k5mg93 Prifysgol Dwyrain Anglia University of East Anglia'),
(101855, 'https://ror.org/026m1rk14', 'fr', 1, 'https://ror.org/026m1rk14 Valeurs, Innovations, Politiques, Socialisations et Sports'),
(101856, 'https://ror.org/026m44z54', 'fr', 1, 'https://ror.org/026m44z54 Laboratoire Nanotechnologies et NanosystĆØmes'),
(101857, 'https://ror.org/026p10446', 'fr', 1, 'https://ror.org/026p10446 Droit, religion, entreprise et sociƩtƩ'),
(101858, 'https://ror.org/026t55v35', 'en', 1, 'https://ror.org/026t55v35 Anacostia Community Museum'),
(101859, 'https://ror.org/026t9b832', 'fr', 1, 'https://ror.org/026t9b832 Institut franƧais d''Ʃtudes sur l''Asie centrale'),
(101860, 'https://ror.org/027065c48', 'pt', 1, 'https://ror.org/027065c48 Escola Superior de Enfermagem de Lisboa'),
(101861, 'https://ror.org/0270ceh40', 'en', 1, 'https://ror.org/0270ceh40 Masaryk Memorial Cancer Institute'),
(101862, 'https://ror.org/0270vfa57', 'en', 1, 'https://ror.org/0270vfa57 University of Southern Mississippi'),
(101863, 'https://ror.org/0270xt841', 'fr', 1, 'https://ror.org/0270xt841 Institut de Myologie Institute of Myology'),
(101864, 'https://ror.org/027331q77', 'en', 1, 'https://ror.org/027331q77 Institute of Civil-Military Technology Cooperation ėÆ¼źµ°ķ˜‘ė „ģ§„ķ„ģ›'),
(101865, 'https://ror.org/027364b18', 'fr', 1, 'https://ror.org/027364b18 Biologie MolƩculaire et Immunologie Parasitaire, Bipar'),
(101866, 'https://ror.org/0274dq154', 'fr', 1, 'https://ror.org/0274dq154 Centre de droit des affaires'),
(101867, 'https://ror.org/0276rjc88', 'en', 1, 'https://ror.org/0276rjc88 Institute for Nuclear Research and Nuclear Energy Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŃŠ“Ń€ŠµŠ½Šø ŠøŠ·ŃŠ»ŠµŠ“Š²Š°Š½ŠøŃ Šø ŃŠ“Ń€ŠµŠ½Š° енергетика'),
(101868, 'https://ror.org/0277bck87', 'en', 0, 'https://ror.org/0277bck87 HƓpital de Melun Melun Hospital'),
(101869, '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'),
(101870, 'https://ror.org/02794jc95', 'de', 1, 'https://ror.org/02794jc95 Klinik und Poliklinik für Frauenheilkunde und Geburtshilfe'),
(101871, 'https://ror.org/027953924', 'fr', 1, 'https://ror.org/027953924 AmƩnagement, DƩveloppement, Environnement, SantƩ et SociƩtƩs'),
(101872, 'https://ror.org/0279hze33', 'en', 1, 'https://ror.org/0279hze33 Citizens Financial Group, Citizens Financial Group (United States)'),
(101873, 'https://ror.org/027bzz146', 'en', 1, 'https://ror.org/027bzz146 California State University, Chico UniversitĆ© d''Ɖtat de californie Ć  chico'),
(101874, 'https://ror.org/027cbpk76', 'en', 1, 'https://ror.org/027cbpk76 CBRE Group, CBRE Group (United States)'),
(101875, 'https://ror.org/027cyf249', 'sr', 1, 'https://ror.org/027cyf249 DruÅ”tvo ekonomista ā€žEkonomikaā€œ, NiÅ” Society of Economists "Ekonomika" NiÅ”'),
(101876, 'https://ror.org/027d3b308', 'en', 1, 'https://ror.org/027d3b308 American Tower, American Tower (United States)'),
(101877, 'https://ror.org/027defw95', 'fr', 1, 'https://ror.org/027defw95 Centre de CompƩtences NanoSciences Ile-de-France'),
(101878, 'https://ror.org/027ka1x80', 'en', 1, 'https://ror.org/027ka1x80 National Aeronautics and Space Administration'),
(101879, 'https://ror.org/027mhn368', 'en', 1, 'https://ror.org/027mhn368 U.S. Army Engineer Research and Development Center'),
(101880, 'https://ror.org/027nn6b17', 'en', 1, 'https://ror.org/027nn6b17 Data Observatory Foundation Fundación Observatorio de Datos'),
(101881, 'https://ror.org/027pd3r64', 'en', 1, 'https://ror.org/027pd3r64 Worcestershire County Council'),
(101882, 'https://ror.org/027rbaq21', 'fr', 1, 'https://ror.org/027rbaq21 Laboratoire Ɖcologie Fonctionnelle et Environnement'),
(101883, 'https://ror.org/027rr8795', 'no_lang_code', 1, 'https://ror.org/027rr8795 Sonova (Switzerland)'),
(101884, 'https://ror.org/027ryxs60', 'en', 1, 'https://ror.org/027ryxs60 Catholic University of Santa María Universidad Católica de Santa María'),
(101885, 'https://ror.org/027sdcz20', 'en', 1, 'https://ror.org/027sdcz20 Klaipėda University Klaipėdos universitetas Uniwersytet Kłajpedzki КлайпеГский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101886, 'https://ror.org/027tyzk91', 'en', 1, 'https://ror.org/027tyzk91 Tokyo University of Foreign Studies ę±äŗ¬å¤–å›½čŖžå¤§å­¦'),
(101887, 'https://ror.org/027wmnr48', 'en', 1, 'https://ror.org/027wmnr48 NextSense'),
(101888, 'https://ror.org/027xab135', 'no_lang_code', 0, 'https://ror.org/027xab135 Low Carbon Living CRC (Australia)'),
(101889, 'https://ror.org/027xymc69', 'fr', 1, 'https://ror.org/027xymc69 Agence Bibliographique de l''Enseignement SupƩrieur'),
(101890, 'https://ror.org/028023c94', 'en', 1, 'https://ror.org/028023c94 Russian State University of Cinematography named after SA Gerasimov Всероссийский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ кинематографии имени Š”.А.Герасимова'),
(101891, 'https://ror.org/0282ggx30', 'en', 1, 'https://ror.org/0282ggx30 Wuhan Business University'),
(101892, 'https://ror.org/02832k114', 'en', 1, 'https://ror.org/02832k114 S P Jain School of Global Management'),
(101893, 'https://ror.org/02844qe97', 'fr', 1, 'https://ror.org/02844qe97 Unite de recherche migrations et sociƩtƩs'),
(101894, 'https://ror.org/0285rh439', 'en', 1, 'https://ror.org/0285rh439 TED University'),
(101895, 'https://ror.org/0285t0292', 'en', 1, 'https://ror.org/0285t0292 University of Belgrade – Faculty of Medicine Univerzitet u Beogradu – Medicinski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(101896, 'https://ror.org/0286hg268', 'en', 1, 'https://ror.org/0286hg268 The Fafo Institute for Labour and Social Research'),
(101897, 'https://ror.org/028c6kd10', 'fr', 1, 'https://ror.org/028c6kd10 Laboratoire de pharmacologie et de toxicologie neurocardiovasculaire'),
(101898, 'https://ror.org/028cp7y71', 'fr', 1, 'https://ror.org/028cp7y71 Groupe de Recherche en Psychologie Sociale'),
(101899, 'https://ror.org/028k5qw24', 'en', 1, 'https://ror.org/028k5qw24 Ondokuz Mayıs University Ondokuz Mayıs Üniversitesi'),
(101900, 'https://ror.org/028kg2g03', 'tr', 1, 'https://ror.org/028kg2g03 Ƈanakkale Savaşları Enstitüsü'),
(101901, 'https://ror.org/028m9sy08', 'fr', 1, 'https://ror.org/028m9sy08 Neuro-Dol'),
(101902, 'https://ror.org/028p0gk46', 'fr', 1, 'https://ror.org/028p0gk46 Ramsay SantƩ HƓpital privƩ des Peupliers'),
(101903, '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'),
(101904, 'https://ror.org/028pmsz77', 'en', 1, 'https://ror.org/028pmsz77 James Madison University Universidad James Madison'),
(101905, 'https://ror.org/028sfha37', 'en', 1, 'https://ror.org/028sfha37 Gambaga College of Education'),
(101906, 'https://ror.org/028tfkh72', 'en', 1, 'https://ror.org/028tfkh72 Oregon Department of Transportation'),
(101907, 'https://ror.org/028txef36', 'en', 1, 'https://ror.org/028txef36 National Library of Technology NƔrodnƭ TechnickƔ Knihovna'),
(101908, 'https://ror.org/028vqfs63', 'en', 1, 'https://ror.org/028vqfs63 Amherst College'),
(101909, 'https://ror.org/028wq3277', 'fr', 1, 'https://ror.org/028wq3277 Institut Charles Gerhardt Montpellier'),
(101910, 'https://ror.org/028xjkf45', 'fr', 1, 'https://ror.org/028xjkf45 HEMU - Haute Ɖcole de Musique'),
(101911, 'https://ror.org/028ycv057', 'fr', 1, 'https://ror.org/028ycv057 Centre Norbert Elias'),
(101912, 'https://ror.org/0290xtv45', 'en', 1, 'https://ror.org/0290xtv45 Humanities Council of South Carolina'),
(101913, 'https://ror.org/02910d597', 'fr', 1, 'https://ror.org/02910d597 Centre Lasers Intenses et Applications'),
(101914, 'https://ror.org/0291jbz11', 'en', 1, 'https://ror.org/0291jbz11 Grapevine Health and Wine Quality'),
(101915, 'https://ror.org/0293jn610', 'fr', 1, 'https://ror.org/0293jn610 Adaptation and Diversity in the Marine Environment Adaptation et DiversitƩ en Milieu Marin'),
(101916, 'https://ror.org/0299rre20', 'en', 1, 'https://ror.org/0299rre20 National Marine Data and Information Service å›½å®¶ęµ·ę“‹äæ”ęÆäø­åæƒ'),
(101917, 'https://ror.org/029a4pp87', 'fr', 1, 'https://ror.org/029a4pp87 HƓpital Nord'),
(101918, 'https://ror.org/029bre548', 'en', 1, 'https://ror.org/029bre548 United Nations Educational, Scientific and Cultural Organization Switzerland'),
(101919, 'https://ror.org/029cj5595', 'fr', 1, 'https://ror.org/029cj5595 Laboratoire Cognition, Langues, Langage, Ergonomie'),
(101920, 'https://ror.org/029d09756', 'en', 1, 'https://ror.org/029d09756 Cardiff and Vale College Coleg Caerdydd a''r Fro'),
(101921, 'https://ror.org/029e3sz53', 'no', 1, 'https://ror.org/029e3sz53 MiljĆøfaglig Utredning AS (Norway)'),
(101922, 'https://ror.org/029ecwj92', 'en', 1, 'https://ror.org/029ecwj92 Prague University of Economics and Business VysokÔ Ŕkola ekonomickÔ v Praze'),
(101923, 'https://ror.org/029ha4026', 'fr', 1, 'https://ror.org/029ha4026 France Europe Innovation'),
(101924, 'https://ror.org/029hg0311', 'en', 1, 'https://ror.org/029hg0311 Leibniz Institute for Catalysis Leibniz-Institut für Katalyse e.V.'),
(101925, 'https://ror.org/029mvf840', 'pt', 1, 'https://ror.org/029mvf840 Instituto da SeguranƧa Social'),
(101926, 'https://ror.org/029pk6x14', 'en', 1, 'https://ror.org/029pk6x14 ƅbo Akademi University'),
(101927, 'https://ror.org/029r1ks56', 'en', 1, 'https://ror.org/029r1ks56 NSW Forestry Corporation'),
(101928, 'https://ror.org/029rfe283', 'fr', 1, 'https://ror.org/029rfe283 Centre Méditerranéen de Médecine Moléculaire Mediterranean Center for Molecular Medicine'),
(101929, 'https://ror.org/029rmm934', 'fr', 1, 'https://ror.org/029rmm934 Laboratoire LƩon Brillouin'),
(101930, 'https://ror.org/029s6hd13', 'fr', 1, 'https://ror.org/029s6hd13 Centre Hospitalier Universitaire de Poitiers'),
(101931, 'https://ror.org/029tw2407', 'en', 1, 'https://ror.org/029tw2407 University of Chichester'),
(101932, 'https://ror.org/029vc8149', 'en', 1, 'https://ror.org/029vc8149 Chongqing Airport'),
(101933, 'https://ror.org/029xh1r47', 'no_lang_code', 1, 'https://ror.org/029xh1r47 Toray Industries, Inc. Toray Industries, Inc. (Japan) ę±ćƒ¬ę Ŗå¼ä¼šē¤¾'),
(101934, 'https://ror.org/029z02k15', 'en', 1, 'https://ror.org/029z02k15 Rutgers Health'),
(101935, 'https://ror.org/02a079e24', 'en', 1, 'https://ror.org/02a079e24 Conservatoire for Dance and Drama'),
(101936, 'https://ror.org/02a1v0072', 'id', 1, 'https://ror.org/02a1v0072 Universitas Mitra Indonesia'),
(101937, 'https://ror.org/02a22tx41', 'fr', 1, 'https://ror.org/02a22tx41 Haute Ɖcole Provinciale de Hainaut Condorcet'),
(101938, 'https://ror.org/02a46nr93', 'no_lang_code', 1, 'https://ror.org/02a46nr93 Universiteit van CuraƧao University of CuraƧao'),
(101939, 'https://ror.org/02a4c5q78', 'fr', 1, 'https://ror.org/02a4c5q78 Centre de recherche sur les InƩgalitƩs Sociales'),
(101940, 'https://ror.org/02a9mrq41', 'fr', 1, 'https://ror.org/02a9mrq41 Groupe de Recherches sur l’Analyse Multimodale de la Fonction CĆ©rĆ©brale'),
(101941, 'https://ror.org/02a9x5m28', 'en', 1, 'https://ror.org/02a9x5m28 Central Institute of Metrology'),
(101942, 'https://ror.org/02abb9a79', 'en', 1, 'https://ror.org/02abb9a79 Severe Weather Institute - Radar & Lightning Laboratory'),
(101943, 'https://ror.org/02ac0n114', 'fr', 1, 'https://ror.org/02ac0n114 Centre Transdisciplinaire d''ƉpistĆ©mologie de la LittĆ©rature et des Arts vivants'),
(101944, 'https://ror.org/02acz2505', 'no_lang_code', 1, 'https://ror.org/02acz2505 Cenaero (Belgium)'),
(101945, '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'),
(101946, 'https://ror.org/02af93v77', 'fr', 1, 'https://ror.org/02af93v77 Biologie du DƩveloppement et Cellules Souches Developmental and Stem Cell Biology'),
(101947, 'https://ror.org/02afcvw97', 'en', 1, 'https://ror.org/02afcvw97 Nantong University 南通大学'),
(101948, 'https://ror.org/02aj0kh94', 'fr', 0, 'https://ror.org/02aj0kh94 Joseph Fourier University UniversitƩ Joseph Fourier'),
(101949, 'https://ror.org/02aj7yc53', 'en', 1, 'https://ror.org/02aj7yc53 Princess MƔxima Center Prinses MƔxima Centrum'),
(101950, 'https://ror.org/02ajrys73', 'en', 1, 'https://ror.org/02ajrys73 Empower AI, Empower AI (United States)'),
(101951, 'https://ror.org/02ak1t432', 'en', 1, 'https://ror.org/02ak1t432 Springfield College'),
(101952, 'https://ror.org/02am8se85', 'de', 1, 'https://ror.org/02am8se85 Klinik für Schweine'),
(101953, 'https://ror.org/02an57k10', 'en', 1, 'https://ror.org/02an57k10 Changchun University é•æę˜„å¤§å­¦'),
(101954, 'https://ror.org/02an5tz90', 'en', 1, 'https://ror.org/02an5tz90 Gulf of Mexico Fishery Management Council'),
(101955, 'https://ror.org/02apw2076', 'en', 1, 'https://ror.org/02apw2076 Xiaohongshu (Little Red Book), Xiaohongshu (Little Red Book) (China) č”ŒåŸäæ”ęÆē§‘ęŠ€ļ¼ˆäøŠęµ·ļ¼‰ęœ‰é™å…¬åø'),
(101956, 'https://ror.org/02aqsxs83', 'en', 1, 'https://ror.org/02aqsxs83 Universidad de Oklahoma University of Oklahoma'),
(101957, 'https://ror.org/02aqt9c37', 'fr', 0, 'https://ror.org/02aqt9c37 University of Marne la VallƩe UniversitƩ Paris-Est Marne-la-VallƩe'),
(101958, 'https://ror.org/02aswf736', 'fr', 1, 'https://ror.org/02aswf736 Atmosphere Plant Soil Interactions Interactions Sol Plante AtmosphĆØre'),
(101959, 'https://ror.org/02at6c277', 'fr', 1, 'https://ror.org/02at6c277 Simplification des soins chez les patients complexes'),
(101960, 'https://ror.org/02at7qq57', 'en', 1, 'https://ror.org/02at7qq57 University of Belgrade - Faculty of Transport and Traffic Engineering Univerzitet u Beogradu - Saobraćajni fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Š”Š°Š¾Š±Ń€Š°Ń›Š°Ń˜Š½Šø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(101961, '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'),
(101962, 'https://ror.org/02avqqw26', 'en', 1, 'https://ror.org/02avqqw26 California State University, Fullerton Universidad Estatal de California UniversitĆ© d''Ɖtat de californie Ć  fullerton'),
(101963, 'https://ror.org/02awy7178', 'fr', 1, 'https://ror.org/02awy7178 Biomechanics and Impact Mechanics Laboratory Laboratoire de BiomƩcanique et MƩcanique des Chocs'),
(101964, 'https://ror.org/02b03n805', 'en', 1, 'https://ror.org/02b03n805 University College of Science and Technology - Khan Younis Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ - خان ŁŠŁˆŁ†Ų³'),
(101965, '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'),
(101966, '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'),
(101967, 'https://ror.org/02b6amy98', 'en', 1, 'https://ror.org/02b6amy98 Tianjin University of Commerce å¤©ę“„å•†äøšå¤§å­¦'),
(101968, 'https://ror.org/02b7f5969', 'en', 1, 'https://ror.org/02b7f5969 Akanu Ibiam, Federal Polytechnic Unwana'),
(101969, 'https://ror.org/02b92xv22', 'en', 1, 'https://ror.org/02b92xv22 Duolingo, Duolingo (United States)'),
(101970, 'https://ror.org/02baj6743', 'fr', 1, 'https://ror.org/02baj6743 CIC Rennes, Centre d''Investigation Clinique de Rennes'),
(101971, 'https://ror.org/02banhz78', 'fr', 1, 'https://ror.org/02banhz78 Diversity-Adaptation-Development of Plants DiversitƩ, adaptation et dƩveloppement des plantes'),
(101972, 'https://ror.org/02bbx2g30', 'pt', 1, 'https://ror.org/02bbx2g30 Instituto PolitƩcnico de SantarƩm Polytechnic Institute of SantarƩm'),
(101973, 'https://ror.org/02bctrh07', 'sv', 1, 'https://ror.org/02bctrh07 Rune and Ulla Amlƶvs Stiftelse'),
(101974, 'https://ror.org/02bczqy30', 'en', 1, 'https://ror.org/02bczqy30 Nature Inspires Creativity Engineers Lab'),
(101975, 'https://ror.org/02bdb7w16', 'en', 1, 'https://ror.org/02bdb7w16 Tongji Zhejiang College åŒęµŽå¤§å­¦ęµ™ę±Ÿå­¦é™¢'),
(101976, 'https://ror.org/02bdemg64', 'en', 1, 'https://ror.org/02bdemg64 Xiamen National Accounting Institute å›½å®¶ä¼šč®”å­¦é™¢'),
(101977, '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'),
(101978, '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'),
(101979, 'https://ror.org/02bjnq803', 'en', 1, 'https://ror.org/02bjnq803 Jazan University Ų¬Ų§Ł…Ų¹Ų© جازان'),
(101980, 'https://ror.org/02bmcpa10', 'fr', 1, 'https://ror.org/02bmcpa10 Bibliothèque Interuniversitaire de Santé'),
(101981, 'https://ror.org/02bmftj86', 'en', 1, 'https://ror.org/02bmftj86 Azusa Pacific University'),
(101982, 'https://ror.org/02bn68w95', 'en', 1, 'https://ror.org/02bn68w95 Institute of Optics and Electronics, Chinese Academy of Sciences'),
(101983, 'https://ror.org/02bn7hs48', 'fr', 1, 'https://ror.org/02bn7hs48 Eco-procƩdƩs, optimisation et aide Ơ la dƩcision'),
(101984, 'https://ror.org/02bq56641', 'fr', 1, 'https://ror.org/02bq56641 ArchƩologie et ArchƩomƩtrie'),
(101985, 'https://ror.org/02brsbg31', 'fr', 1, 'https://ror.org/02brsbg31 Ecologie Comportementale et Biologie des Populations de Poissons'),
(101986, 'https://ror.org/02bsd9p69', 'fr', 1, 'https://ror.org/02bsd9p69 Center of Theoretical Physics Centre de Physique ThƩorique'),
(101987, 'https://ror.org/02btqjz37', 'fr', 1, 'https://ror.org/02btqjz37 Ɖcole Nationale SupĆ©rieure d''Architecture de Strasbourg'),
(101988, 'https://ror.org/02bw9cj21', 'bs', 1, 'https://ror.org/02bw9cj21 Evropski univerzitet Brčko distrikt'),
(101989, 'https://ror.org/02bxdh068', 'fr', 1, 'https://ror.org/02bxdh068 Institut des langues et cultures d''Europe, AmƩrique, Afrique, Asie et Australie'),
(101990, 'https://ror.org/02bxzcy64', 'de', 1, 'https://ror.org/02bxzcy64 Technische Hochschule Ingolstadt'),
(101991, 'https://ror.org/02byv2846', 'fr', 1, 'https://ror.org/02byv2846 Fluides, Automatique et SystĆØmes Thermiques'),
(101992, 'https://ror.org/02c0fsq39', 'en', 1, 'https://ror.org/02c0fsq39 UGC-DAE Consortium for Scientific Research, Kolkata Centre'),
(101993, 'https://ror.org/02c0s8023', 'id', 1, 'https://ror.org/02c0s8023 Indonesian Muslim University of Makassar Universitas Muslim Indonesia'),
(101994, 'https://ror.org/02c1tv516', 'fr', 0, 'https://ror.org/02c1tv516 Center for Physiopathology of Toulouse Purpan Centre de Physiopathologie de Toulouse-Purpan'),
(101995, 'https://ror.org/02c1xev33', 'en', 1, 'https://ror.org/02c1xev33 Islamic Azad University, Abadan Ų§Ų²Ų§ŲÆ فرع آبادان Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد آبادان'),
(101996, 'https://ror.org/02c2jyf78', 'en', 1, 'https://ror.org/02c2jyf78 Research Council of Zimbabwe'),
(101997, 'https://ror.org/02c2kyt77', 'en', 1, 'https://ror.org/02c2kyt77 Eindhoven University of Technology Technische Universiteit Eindhoven'),
(101998, 'https://ror.org/02c3c9255', 'fr', 1, 'https://ror.org/02c3c9255 Unité Mixte de Recherche sur l''Ecosystème Prairial'),
(101999, 'https://ror.org/02c3vyb44', 'en', 1, 'https://ror.org/02c3vyb44 Al-Qalam University College ŁƒŁ„ŁŠŲ© القلم الجامعة'),
(102000, 'https://ror.org/02c5gbd66', 'fr', 1, 'https://ror.org/02c5gbd66 Institut Marcel Mauss'),
(102001, 'https://ror.org/02c6p9834', 'fr', 1, 'https://ror.org/02c6p9834 Physiologie de la Reproduction et des Comportements'),
(102002, 'https://ror.org/02c9qn167', 'en', 1, 'https://ror.org/02c9qn167 Guangxi University 广脿大学'),
(102003, 'https://ror.org/02caz1f24', 'en', 1, 'https://ror.org/02caz1f24 British Medical Association'),
(102004, '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'),
(102005, 'https://ror.org/02ck2yw57', 'en', 0, 'https://ror.org/02ck2yw57 Institute of Geology and Mineral Exploration'),
(102006, 'https://ror.org/02ck5yd04', 'en', 1, 'https://ror.org/02ck5yd04 University of Ghardaia Ų¬Ų§Ł…Ų¹Ų© غرداية'),
(102007, 'https://ror.org/02cms1514', 'en', 1, 'https://ror.org/02cms1514 CAMPUS 02 Fachhochschule der Wirtschaft CAMPUS 02 University for Applied Sciences'),
(102008, 'https://ror.org/02cmt9z73', 'fr', 1, 'https://ror.org/02cmt9z73 Agence pour les MathƩmatiques en Interaction avec l''Entreprise et la SociƩtƩ'),
(102009, 'https://ror.org/02cntrd02', 'en', 1, 'https://ror.org/02cntrd02 Wayne State College'),
(102010, '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'),
(102011, 'https://ror.org/02ctt0481', 'en', 1, 'https://ror.org/02ctt0481 Daimler Truck (United States)'),
(102012, 'https://ror.org/02cwzx487', 'en', 1, 'https://ror.org/02cwzx487 Wild Animal Initiative'),
(102013, 'https://ror.org/02cxb1m07', 'en', 0, 'https://ror.org/02cxb1m07 BERD@NFDI'),
(102014, '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'),
(102015, 'https://ror.org/02cyaqf66', 'fr', 1, 'https://ror.org/02cyaqf66 International Criminal Police Organization Organisation internationale de police criminelle'),
(102016, 'https://ror.org/02czghn94', 'en', 1, 'https://ror.org/02czghn94 Board of Cooperative Educational Services of Nassau County'),
(102017, 'https://ror.org/02czkny70', 'en', 1, 'https://ror.org/02czkny70 Hefei University of Technology åˆč‚„å·„äøšå¤§å­¦'),
(102018, 'https://ror.org/02czw2k81', 'en', 1, 'https://ror.org/02czw2k81 Central South University of Forestry and Technology äø­å—ęž—äøšē§‘ęŠ€å¤§å­¦'),
(102019, 'https://ror.org/02d31v873', 'es', 1, 'https://ror.org/02d31v873 Unidad AcadƩmica del Norte del Estado de Nayarit'),
(102020, 'https://ror.org/02d3fj342', 'en', 1, 'https://ror.org/02d3fj342 Hubei University of Technology ę¹–åŒ—å·„äøšå¤§å­¦'),
(102021, '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'),
(102022, 'https://ror.org/02d4qm557', 'en', 1, 'https://ror.org/02d4qm557 Korn Ferry, Korn Ferry (United States)'),
(102023, 'https://ror.org/02d5gqx12', 'en', 1, 'https://ror.org/02d5gqx12 National Council Of Educational Research And Training ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ą²¶ą³ˆą²•ą³ą²·ą²£ą²æą²• ಸಂಶೋಧನಾ ą²®ą²¤ą³ą²¤ą³ ತರಬೇತಿ ą²Ŗą²°ą²æą²·ą²¤ą³'),
(102024, 'https://ror.org/02d5zdh33', 'en', 1, 'https://ror.org/02d5zdh33 Utah Agricultural Experiment Station'),
(102025, 'https://ror.org/02d9ce178', 'en', 1, 'https://ror.org/02d9ce178 Academisch Ziekenhuis Maastricht Maastricht University Medical Centre'),
(102026, 'https://ror.org/02dcqy320', 'fr', 1, 'https://ror.org/02dcqy320 HƓpital Robert-DebrƩ'),
(102027, 'https://ror.org/02dd25k08', 'fr', 1, 'https://ror.org/02dd25k08 Laboratoire de Chimie et Biologie des MƩtaux'),
(102028, 'https://ror.org/02dd6pb80', 'pt', 0, 'https://ror.org/02dd6pb80 ISPA - Instituto UniversitƔrio'),
(102029, 'https://ror.org/02deetg88', 'no_lang_code', 1, 'https://ror.org/02deetg88 Sekisui Medical (Japan) ē©ę°“ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(102030, 'https://ror.org/02der9h97', 'en', 1, 'https://ror.org/02der9h97 Universidad de Connecticut University of Connecticut UniversitƩ du connecticut'),
(102031, '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'),
(102032, 'https://ror.org/02dhttr28', 'en', 1, 'https://ror.org/02dhttr28 Clackamas Community College'),
(102033, 'https://ror.org/02dj1mv43', 'en', 1, 'https://ror.org/02dj1mv43 Saudi Standards, Metrology and Quality Organization Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© Ł„Ł„Ł…ŁˆŲ§ŲµŁŲ§ŲŖ ŁˆŲ§Ł„Ł…Ł‚Ų§ŁŠŁŠŲ³ ŁˆŲ§Ł„Ų¬ŁˆŲÆŲ©'),
(102034, 'https://ror.org/02djqfd08', 'en', 1, 'https://ror.org/02djqfd08 Zhejiang University of Technology ęµ™ę±Ÿå·„äøšå¤§å­¦'),
(102035, 'https://ror.org/02djzje70', 'fr', 1, 'https://ror.org/02djzje70 Chine, CorƩe, Japon The Centre for Studies on China, Korea and Japan'),
(102036, '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'),
(102037, 'https://ror.org/02dqans26', 'en', 1, 'https://ror.org/02dqans26 Institute of Engineering Seismology and Earthquake Engineering'),
(102038, 'https://ror.org/02dqsxz11', 'fr', 1, 'https://ror.org/02dqsxz11 Centre Alexandre KoyrƩ'),
(102039, 'https://ror.org/02dr9m704', 'en', 1, 'https://ror.org/02dr9m704 Wincanton Community Hospital'),
(102040, 'https://ror.org/02dsacc67', 'en', 1, 'https://ror.org/02dsacc67 Immunology from Concept and Experiments to Translation'),
(102041, 'https://ror.org/02dvx0516', 'fr', 1, 'https://ror.org/02dvx0516 Groupe de Recherche sur les formes Injectables et les Technologies AssociƩes'),
(102042, 'https://ror.org/02dvxkc14', 'fr', 1, 'https://ror.org/02dvxkc14 Institut Covid-19 Ad Memoriam'),
(102043, 'https://ror.org/02dyaew97', 'fr', 1, 'https://ror.org/02dyaew97 Laboratoire de physique des Solides Laboratory of Solid State Physics'),
(102044, 'https://ror.org/02dzjmc73', 'en', 1, 'https://ror.org/02dzjmc73 Üsküdar University Üsküdar Üniversitesi'),
(102045, 'https://ror.org/02dzza612', 'en', 1, 'https://ror.org/02dzza612 Punta Galeta Marine Laboratory'),
(102046, 'https://ror.org/02e15es11', 'en', 1, 'https://ror.org/02e15es11 Marathon Petroleum, Marathon Petroleum (United States)'),
(102047, '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'),
(102048, 'https://ror.org/02e6tmy71', 'sv', 1, 'https://ror.org/02e6tmy71 Wilhelm and Else Stockmann Foundation Wilhelm och Else Stockmanns Stiftelse'),
(102049, 'https://ror.org/02e6ysw16', 'es', 1, 'https://ror.org/02e6ysw16 Instituto de Investigaciones Sociales'),
(102050, 'https://ror.org/02e85d463', 'fr', 1, 'https://ror.org/02e85d463'),
(102051, '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'),
(102052, 'https://ror.org/02e9m1r40', 'fr', 1, 'https://ror.org/02e9m1r40 HƓpital Corentin-Celton'),
(102053, 'https://ror.org/02e9q2112', 'pt', 1, 'https://ror.org/02e9q2112 Universidade Lusƭada - Centro UniversitƔrio Lusƭada - Norte (campus do Porto)'),
(102054, 'https://ror.org/02ebcws13', 'no_lang_code', 1, 'https://ror.org/02ebcws13 DAF Trucks (Netherlands)'),
(102055, 'https://ror.org/02ec8mb70', 'en', 1, 'https://ror.org/02ec8mb70 Kajaani University of Applied Sciences Kajaanin ammattikorkeakoulu'),
(102056, 'https://ror.org/02edbjh06', 'en', 1, 'https://ror.org/02edbjh06 Osun State Polytechnic, Iree'),
(102057, 'https://ror.org/02edrav93', 'en', 1, 'https://ror.org/02edrav93 Vermont State Colleges'),
(102058, 'https://ror.org/02egcpy68', 'en', 1, 'https://ror.org/02egcpy68 Indian Institute of Management Ahmedabad इंऔियन ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤®ą„…ą¤Øą„‡ą¤œą¤®ą„‡ą¤Øą„ą¤Ÿ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø આઇ.આઇ.ąŖąŖ®. અમદાવાદ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ ą®…ą®•ą®®ą®¤ą®¾ą®Ŗą®¾ą®¤ąÆ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ą“¾ą“Øąµ‡ą“œąµą“®ąµ†ą“Øąµą“±ąµ'),
(102059, 'https://ror.org/02egmk993', 'en', 1, 'https://ror.org/02egmk993 University of Science and Technology Beijing åŒ—äŗ¬ē§‘ęŠ€å¤§å­¦'),
(102060, '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'),
(102061, 'https://ror.org/02eh44r60', 'en', 1, 'https://ror.org/02eh44r60 Regions Financial, Regions Financial (United States)'),
(102062, 'https://ror.org/02ek9wp67', 'fr', 1, 'https://ror.org/02ek9wp67 Groupement de Recherche en Ɖconomie Quantitative d’Aix-Marseille'),
(102063, 'https://ror.org/02emx6223', 'en', 1, 'https://ror.org/02emx6223 Nepal Bureau of Standards and Metrology ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤—ą„ą¤£ą¤øą„ą¤¤ą¤° तऄा ą¤Øą¤¾ą¤Ŗą¤¤ą„Œą¤² विभाग'),
(102064, 'https://ror.org/02en65a92', 'en', 1, 'https://ror.org/02en65a92 Open Molecular Software Foundation'),
(102065, 'https://ror.org/02ep9vf55', 'en', 1, 'https://ror.org/02ep9vf55 University of Wisconsin–River Falls UniversitĆ© du Wisconsin–River Falls'),
(102066, 'https://ror.org/02epwtt47', 'en', 1, 'https://ror.org/02epwtt47 OLS'),
(102067, 'https://ror.org/02eqpx475', 'en', 1, 'https://ror.org/02eqpx475 Salford City College'),
(102068, 'https://ror.org/02erddr56', 'fr', 1, 'https://ror.org/02erddr56 Laboratoire Albert Fert'),
(102069, 'https://ror.org/02erqft81', 'en', 1, 'https://ror.org/02erqft81 Marshall University'),
(102070, 'https://ror.org/02eva5865', 'en', 1, 'https://ror.org/02eva5865 Konrad-Zuse-Zentrum für Informationstechnik Berlin Zuse Institute Berlin'),
(102071, 'https://ror.org/02evg3h34', 'sk', 1, 'https://ror.org/02evg3h34 AkadƩmia Umenƭ v Banskej Bystrici'),
(102072, 'https://ror.org/02evk6c51', 'fr', 1, 'https://ror.org/02evk6c51 Animal and Human Ethology Ethologie animale et humaine'),
(102073, 'https://ror.org/02ewr8206', 'en', 1, 'https://ror.org/02ewr8206 Patel Institute of Science and Management'),
(102074, 'https://ror.org/02ezdv132', 'no_lang_code', 1, 'https://ror.org/02ezdv132 Kinder Morgan, Kinder Morgan (United States)'),
(102075, 'https://ror.org/02f08fz18', 'fr', 1, 'https://ror.org/02f08fz18 Rennes School of Business Ɖcole SupĆ©rieure de Commerce de Rennes'),
(102076, 'https://ror.org/02f2f0234', 'en', 1, 'https://ror.org/02f2f0234 Institute of Biochemistry, Molecular Biology and Biotechnology'),
(102077, 'https://ror.org/02f40zc51', 'es', 1, 'https://ror.org/02f40zc51 Universidad de Salamanca University of Salamanca'),
(102078, 'https://ror.org/02f6tst70', 'fr', 1, 'https://ror.org/02f6tst70 Catalyse, PolymƩrisation, ProcƩdƩs et MatƩriaux Catalysis, Polymerisation, Process and Materials'),
(102079, 'https://ror.org/02f7k4z58', 'en', 1, 'https://ror.org/02f7k4z58 Davidson College'),
(102080, 'https://ror.org/02f7wz369', 'fr', 0, 'https://ror.org/02f7wz369 Pierre Mendès-France University Université Pierre Mendès France'),
(102081, 'https://ror.org/02f9r3321', 'fr', 1, 'https://ror.org/02f9r3321 Institut de Recherche Vaccinale Vaccine Research Institute'),
(102082, 'https://ror.org/02f9zrr09', 'no_lang_code', 1, 'https://ror.org/02f9zrr09 Novartis (Switzerland)'),
(102083, 'https://ror.org/02fdf4056', 'fr', 1, 'https://ror.org/02fdf4056 Archives Henri-PoincarƩ - Philosophie et Recherches sur les Sciences et les Technologies'),
(102084, 'https://ror.org/02feagj05', 'en', 1, 'https://ror.org/02feagj05 Upper Midwest Water Science Center'),
(102085, 'https://ror.org/02ffzdx16', 'en', 1, 'https://ror.org/02ffzdx16 Paris Network for Advanced Microscopy'),
(102086, 'https://ror.org/02fhmtn03', 'en', 1, 'https://ror.org/02fhmtn03 National Fire Agency ėŒ€ķ•œėÆ¼źµ­ ģ†Œė°©ģ²­'),
(102087, 'https://ror.org/02fjgwn28', 'es', 1, 'https://ror.org/02fjgwn28 Escuela Normal Rural "Justo Sierra MƩndez"'),
(102088, 'https://ror.org/02fke9256', 'fr', 1, 'https://ror.org/02fke9256 Laboratoire de MƩcanique et GƩnie Civil'),
(102089, 'https://ror.org/02fn69884', 'es', 1, 'https://ror.org/02fn69884 Universidad Villanueva Villanueva University'),
(102090, 'https://ror.org/02fqepy07', 'no_lang_code', 1, 'https://ror.org/02fqepy07 Cree (China)'),
(102091, 'https://ror.org/02frhb430', 'en', 1, 'https://ror.org/02frhb430 Pony.AI, Pony.AI (China)'),
(102092, 'https://ror.org/02frt9q65', 'en', 1, 'https://ror.org/02frt9q65 Guangxi Normal University 广脿师范大学'),
(102093, 'https://ror.org/02fsagg23', 'de', 1, 'https://ror.org/02fsagg23 Swissuniversities'),
(102094, 'https://ror.org/02fsd1928', 'fr', 1, 'https://ror.org/02fsd1928 Centre Scientifique et Technique du BĆ¢timent Scientific and Technical Center for Building'),
(102095, 'https://ror.org/02ftc8763', 'en', 1, 'https://ror.org/02ftc8763 Bocas del Toro Estación de Investigación Bocas del Toro Research Station'),
(102096, 'https://ror.org/02ftce284', 'fr', 1, 'https://ror.org/02ftce284 Laboratoire Charles Coulomb'),
(102097, 'https://ror.org/02ftvf862', 'en', 1, 'https://ror.org/02ftvf862 Sohar University Ų¬Ų§Ł…Ų¹Ų© ŲµŲ­Ų§Ų±'),
(102098, 'https://ror.org/02fty0943', 'en', 1, 'https://ror.org/02fty0943 Great Lakes Indian Fish & Wildlife Commission'),
(102099, 'https://ror.org/02ftyb663', 'en', 1, 'https://ror.org/02ftyb663 Disability Community Resource Center'),
(102100, 'https://ror.org/02fw8mx86', 'no_lang_code', 1, 'https://ror.org/02fw8mx86 Textron Systems (Germany)'),
(102101, 'https://ror.org/02fy0zn70', 'en', 1, 'https://ror.org/02fy0zn70 National Technical Museum NƔrodnƭ TechnickƩ Muzeum'),
(102102, 'https://ror.org/02g07ds81', 'en', 1, 'https://ror.org/02g07ds81 University of Duhok Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ‡ŁˆŁƒ'),
(102103, 'https://ror.org/02g0s4z48', 'en', 1, 'https://ror.org/02g0s4z48 Harrisburg University of Science and Technology'),
(102104, 'https://ror.org/02g0yj703', 'en', 1, 'https://ror.org/02g0yj703 Meredith College'),
(102105, 'https://ror.org/02g1jdz81', 'en', 1, 'https://ror.org/02g1jdz81 Al Hikma University'),
(102106, 'https://ror.org/02g40zn06', 'fr', 1, 'https://ror.org/02g40zn06 Institut de Psychiatrie et Neurosciences de Paris Institute of Psychiatry and Neuroscience of Paris'),
(102107, 'https://ror.org/02g4eyf83', 'fr', 1, 'https://ror.org/02g4eyf83 Plateformes mutualisƩes de l''Institut du mƩdicament'),
(102108, 'https://ror.org/02g4mxc89', 'fr', 1, 'https://ror.org/02g4mxc89 Laboratoire d''Innovation ThƩrapeutique Laboratory for Therapeutic Innovation');
INSERT INTO `rors` VALUES
(102109, 'https://ror.org/02g54pq76', 'pt', 1, 'https://ror.org/02g54pq76 Laboratório de Ensaios Desgaste e Materiais'),
(102110, 'https://ror.org/02g6y2720', 'fr', 1, 'https://ror.org/02g6y2720 UnitƩ de Glycobiologie Structurale et Fonctionnelle'),
(102111, 'https://ror.org/02g81yf77', 'en', 1, 'https://ror.org/02g81yf77 Shanghai Lixin University of Accounting and Finance äøŠęµ·ē«‹äæ”ä¼šč®”é‡‘čžå­¦é™¢'),
(102112, 'https://ror.org/02g9nss57', 'en', 1, 'https://ror.org/02g9nss57 Anyang Normal University å®‰é˜³åøˆčŒƒå­¦é™¢'),
(102113, 'https://ror.org/02gdcg342', 'fr', 1, 'https://ror.org/02gdcg342 University of the Littoral Opal Coast UniversitƩ du littoral cƓte d''opale'),
(102114, 'https://ror.org/02gg57z81', 'en', 1, 'https://ror.org/02gg57z81 Copenhagen Business Academy'),
(102115, 'https://ror.org/02ggnyt49', 'fr', 1, 'https://ror.org/02ggnyt49 Ministry of Justice MinistĆØre de la Justice'),
(102116, 'https://ror.org/02ggwpx62', 'en', 1, 'https://ror.org/02ggwpx62 National Center for Emerging and Zoonotic Infectious Diseases'),
(102117, 'https://ror.org/02ggzyd20', 'fr', 1, 'https://ror.org/02ggzyd20 Direction de la Recherche Technologique'),
(102118, 'https://ror.org/02gh4kt33', 'en', 1, 'https://ror.org/02gh4kt33 Istituto Nazionale di Astrofisica National Institute for Astrophysics'),
(102119, 'https://ror.org/02ght4n58', 'fr', 1, 'https://ror.org/02ght4n58 Laboratoire de MathƩmatiques de Bretagne Atlantique'),
(102120, 'https://ror.org/02gm62a96', 'en', 1, 'https://ror.org/02gm62a96 Prague Advanced Technology and Research Innovation Center, a.s.'),
(102121, 'https://ror.org/02gn3zg65', 'en', 1, 'https://ror.org/02gn3zg65 Colorado State University Pueblo'),
(102122, 'https://ror.org/02gn4cf81', 'fr', 1, 'https://ror.org/02gn4cf81 Linguistique IngƩnierie et Didactique des Langues'),
(102123, 'https://ror.org/02gn50d10', 'fr', 1, 'https://ror.org/02gn50d10 Center for Research on Inflammation Centre de Recherche sur l''Inflammation'),
(102124, 'https://ror.org/02gndyy51', 'en', 1, 'https://ror.org/02gndyy51 Czech Botanical Society ČeskĆ” botanickĆ” společnost'),
(102125, 'https://ror.org/02gpbfd77', 'en', 1, 'https://ror.org/02gpbfd77 Wyoming Humanities Council'),
(102126, 'https://ror.org/02gqdm821', 'no_lang_code', 1, 'https://ror.org/02gqdm821 Epi Biotech Co., Ltd., Epi Biotech Co., Ltd. (South Korea) ģ—ķ”¼ė°”ģ“ģ˜¤ķ…'),
(102127, 'https://ror.org/02gsv2389', 'en', 1, 'https://ror.org/02gsv2389 Institut Nexus de technologies quantiques Nexus for Quantum Technologies Institute'),
(102128, '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'),
(102129, 'https://ror.org/02gwt2810', 'fr', 1, 'https://ror.org/02gwt2810 Laboratoire des Interactions Plantes Micro-Organismes Laboratory of Plant-Microbe Interactions'),
(102130, 'https://ror.org/02gx2bb72', 'fr', 1, 'https://ror.org/02gx2bb72 Society of Dramatic Authors and Composers SociƩtƩ des Auteurs et Compositeurs Dramatiques'),
(102131, 'https://ror.org/02gz4qm35', 'en', 1, 'https://ror.org/02gz4qm35 Thames Valley Air Ambulance'),
(102132, 'https://ror.org/02gz6gg07', 'en', 1, 'https://ror.org/02gz6gg07 Florida International University Universidad Internacional de Florida UniversitƩ internationale de floride'),
(102133, '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'),
(102134, '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'),
(102135, 'https://ror.org/02h2x0161', 'en', 1, 'https://ror.org/02h2x0161 GEOMAR Helmholtz Centre for Ocean Research Kiel GEOMAR Helmholtz-Zentrum für Ozeanforschung Kiel'),
(102136, 'https://ror.org/02h6ksg34', 'pt', 1, 'https://ror.org/02h6ksg34 Grupo Jose de Mello, Grupo Jose de Mello (Portugal) JosƩ de Mello Group'),
(102137, 'https://ror.org/02hcn4061', 'fr', 1, 'https://ror.org/02hcn4061 Centre Giovanni Borelli'),
(102138, 'https://ror.org/02hd1sz82', 'en', 1, 'https://ror.org/02hd1sz82 Mental Illness Research, Education and Clinical Centers'),
(102139, 'https://ror.org/02hdxw977', 'no_lang_code', 1, 'https://ror.org/02hdxw977 Paccar (United States)'),
(102140, 'https://ror.org/02he5dz58', 'fr', 1, 'https://ror.org/02he5dz58 Centre for Cognitive Neuroscience Institut de sciences cognitives Marc Jeannerod'),
(102141, 'https://ror.org/02heqqj04', 'en', 1, 'https://ror.org/02heqqj04 Pingtan Environmental Monitoring Center of Fujian ē¦å»ŗēœå¹³ę½­ēŽÆå¢ƒē›‘ęµ‹äø­åæƒē«™'),
(102142, 'https://ror.org/02hewtj70', 'en', 1, 'https://ror.org/02hewtj70 South Dakota Humanities Council'),
(102143, 'https://ror.org/02hfps373', 'en', 1, 'https://ror.org/02hfps373 Medicines360'),
(102144, 'https://ror.org/02hfyct53', 'en', 1, 'https://ror.org/02hfyct53 University of Redlands UniversitƩ de redlands'),
(102145, 'https://ror.org/02hh7en24', 'en', 1, 'https://ror.org/02hh7en24 Universidad de Colorado en Denver University of Colorado Denver UniversitƩ du Colorado Ơ Denver'),
(102146, 'https://ror.org/02hha8x90', 'en', 1, 'https://ror.org/02hha8x90 Liaocheng Center for Disease Control and Prevention čŠåŸŽåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(102147, 'https://ror.org/02hjfaw18', 'en', 1, 'https://ror.org/02hjfaw18 National Information Society Agency, ķ•œźµ­ģ§€ėŠ„ģ •ė³“ģ‚¬ķšŒģ§„ķ„ģ›'),
(102148, 'https://ror.org/02hkbys70', 'en', 1, 'https://ror.org/02hkbys70 Lille University Management'),
(102149, 'https://ror.org/02hmy9x20', 'en', 1, 'https://ror.org/02hmy9x20 Isparta University of Applied Sciences Isparta Uygulamalı Bilimler Üniversitesi'),
(102150, 'https://ror.org/02hn16782', 'en', 1, 'https://ror.org/02hn16782 Climate Equity Reference Project'),
(102151, 'https://ror.org/02hnp4676', 'en', 1, 'https://ror.org/02hnp4676 Astronomical Observatory of Rome Osservatorio Astronomico di Roma'),
(102152, 'https://ror.org/02hstj355', 'en', 1, 'https://ror.org/02hstj355 Manchester Metropolitan University'),
(102153, 'https://ror.org/02ht85j57', 'fr', 1, 'https://ror.org/02ht85j57 Textes, reprƩsentations, archƩologie, autoritƩ et mƩmoire de l''antiquitƩ Ơ la renaissance'),
(102154, 'https://ror.org/02hv38g57', 'no_lang_code', 1, 'https://ror.org/02hv38g57 Lululemon Athletica, Lululemon Athletica (United States)'),
(102155, 'https://ror.org/02hwgty18', 'fr', 1, 'https://ror.org/02hwgty18 Institut de Recherche MathƩmatique AvancƩe'),
(102156, 'https://ror.org/02hwvpm08', 'en', 1, 'https://ror.org/02hwvpm08 Bergen Community College'),
(102157, 'https://ror.org/02hx79439', 'fr', 1, 'https://ror.org/02hx79439 Centre de recherches en Philosophie, Sociologie, SƩmiologie et Politique'),
(102158, 'https://ror.org/02hxb7v96', 'en', 1, 'https://ror.org/02hxb7v96 Society for Ecological Restoration'),
(102159, 'https://ror.org/02hxfx521', 'en', 1, 'https://ror.org/02hxfx521 Dalian Minzu University å¤§čæžę°‘ę—å¤§å­¦'),
(102160, 'https://ror.org/02hydzw41', 'en', 1, 'https://ror.org/02hydzw41 Ogun State Ministry of Health'),
(102161, 'https://ror.org/02hyq7k73', 'en', 1, 'https://ror.org/02hyq7k73 Fresenius Medical Care Portugal, Fresenius Medical Care Portugal (Portugal)'),
(102162, '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'),
(102163, 'https://ror.org/02j0qs062', 'en', 1, 'https://ror.org/02j0qs062 MGM Resorts International, MGM Resorts International (United States)'),
(102164, 'https://ror.org/02j30f642', 'es', 1, 'https://ror.org/02j30f642 Tecnológico Universitario del Valle de Chalco'),
(102165, 'https://ror.org/02j63m808', 'en', 1, 'https://ror.org/02j63m808 Tumkur University'),
(102166, 'https://ror.org/02j76x288', 'en', 1, 'https://ror.org/02j76x288 Sacred Heart College of Lucena City, Inc.'),
(102167, 'https://ror.org/02j78kr76', 'en', 1, 'https://ror.org/02j78kr76 Kempelen Institute of Intelligent Technologies'),
(102168, 'https://ror.org/02ja00s57', 'en', 1, 'https://ror.org/02ja00s57 Cobham (United States)'),
(102169, 'https://ror.org/02jb98t16', 'en', 1, 'https://ror.org/02jb98t16 NOAA Center for Earth System Sciences and Remote Sensing Technologies'),
(102170, 'https://ror.org/02jd4yc28', 'it', 1, 'https://ror.org/02jd4yc28 Istituto Italiano di Studi Germanici'),
(102171, 'https://ror.org/02jet3w32', 'de', 1, 'https://ror.org/02jet3w32 LMU Klinikum'),
(102172, 'https://ror.org/02jfe2t95', 'pt', 1, 'https://ror.org/02jfe2t95 Escola Superior de Saúde da Fundação ''Fernando Pessoa'''),
(102173, 'https://ror.org/02jgsf398', 'en', 1, 'https://ror.org/02jgsf398 Wuhan Textile University'),
(102174, 'https://ror.org/02jh2mm49', 'en', 1, 'https://ror.org/02jh2mm49 Olomouc Research Library VědeckĆ” knihovna v Olomouci Wissenschaftliche Bibliothek Olomouc'),
(102175, '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)'),
(102176, 'https://ror.org/02jjvb954', 'la', 1, 'https://ror.org/02jjvb954 Collegium Carolinum'),
(102177, 'https://ror.org/02jjxqt79', 'en', 1, 'https://ror.org/02jjxqt79 Idaho Humanities Council'),
(102178, 'https://ror.org/02jm89840', 'fr', 1, 'https://ror.org/02jm89840 Maison Interuniversitaire des Sciences de l''Homme'),
(102179, 'https://ror.org/02jq1vf72', 'en', 1, 'https://ror.org/02jq1vf72 Coibita Island Isla Coibita, RancherĆ­a'),
(102180, 'https://ror.org/02jqzm779', 'tr', 1, 'https://ror.org/02jqzm779 Atlas University Atlas Üniversitesi'),
(102181, 'https://ror.org/02jskfj56', 'id', 1, 'https://ror.org/02jskfj56 Sekolah Tinggi Ilmu Ekonomi Gentiaras'),
(102182, 'https://ror.org/02jthx987', 'fr', 1, 'https://ror.org/02jthx987 Institut de Neurobiologie de la MƩditerranƩe'),
(102183, 'https://ror.org/02jyxgb86', 'en', 1, 'https://ror.org/02jyxgb86 University of Belgrade – Faculty of Technology and Metallurgy Univerzitet u Beogradu – TehnoloÅ”ko-metalurÅ”ki fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¢ŠµŃ…Š½Š¾Š»Š¾ŃˆŠŗŠ¾-Š¼ŠµŃ‚Š°Š»ŃƒŃ€ŃˆŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(102184, 'https://ror.org/02jzypx27', 'no_lang_code', 1, 'https://ror.org/02jzypx27 Hikvision, Hikvision (China) ę­å·žęµ·åŗ·åØč§†ę•°å­—ęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(102185, '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'),
(102186, 'https://ror.org/02k44p231', 'en', 1, 'https://ror.org/02k44p231 Fujian Chuanzheng Communications College ē¦å»ŗčˆ¹ę”æäŗ¤é€ščŒäøšå­¦é™¢'),
(102187, 'https://ror.org/02k4h0334', 'en', 1, 'https://ror.org/02k4h0334 NOAA National Ocean Service'),
(102188, 'https://ror.org/02k5kx966', 'es', 1, 'https://ror.org/02k5kx966 Technical University of Cartagena Universidad PolitƩcnica de Cartagena'),
(102189, 'https://ror.org/02k7ask46', 'fr', 1, 'https://ror.org/02k7ask46 CALMIP'),
(102190, 'https://ror.org/02k8f5n40', 'fr', 1, 'https://ror.org/02k8f5n40 Laboratoire Cognitions Humaine et Artificielle'),
(102191, 'https://ror.org/02k8rq894', 'en', 1, 'https://ror.org/02k8rq894 St Helens College'),
(102192, 'https://ror.org/02k92ks68', 'en', 1, 'https://ror.org/02k92ks68 Huanghuai University 黄淮学院'),
(102193, 'https://ror.org/02k9vew78', 'fr', 0, 'https://ror.org/02k9vew78 Nice Sophia Antipolis University UniversitƩ Nice Sophia Antipolis'),
(102194, '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 Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ Ł‡ŁˆŲ§Ų±ŁŠ ŲØŁˆŁ…ŲÆŁŠŁ†'),
(102195, 'https://ror.org/02kctep32', 'en', 1, 'https://ror.org/02kctep32 Avalanche Canada'),
(102196, 'https://ror.org/02kdq0p73', 'pt', 1, 'https://ror.org/02kdq0p73 Jardim Botânico Tropical Lisbon Tropical Botanical Garden'),
(102197, 'https://ror.org/02ke25a78', 'es', 1, 'https://ror.org/02ke25a78 Fundación Puertorriqueña de las Humanidades'),
(102198, 'https://ror.org/02ke9c048', 'pt', 1, 'https://ror.org/02ke9c048 Governo da República Portuguesa Ministério do Mar'),
(102199, 'https://ror.org/02kegw676', 'pt', 1, 'https://ror.org/02kegw676 Instituto Nacional de Engenharia BiomƩdica'),
(102200, 'https://ror.org/02kj53224', 'es', 1, 'https://ror.org/02kj53224 Tecnológico Nacional de México Campus Ciudad SerdÔn'),
(102201, 'https://ror.org/02kj5x347', 'en', 1, 'https://ror.org/02kj5x347 Sir Salimullah Medical College'),
(102202, 'https://ror.org/02kjms144', 'en', 1, 'https://ror.org/02kjms144 Neapolis University Pafos Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪĪµĪ¬Ļ€ĪæĪ»Ī¹Ļ‚ Πάφου'),
(102203, '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'),
(102204, 'https://ror.org/02kn6nx58', 'en', 1, 'https://ror.org/02kn6nx58 Keio University 慶應義唾大学'),
(102205, 'https://ror.org/02kpeqv85', 'en', 1, 'https://ror.org/02kpeqv85 Kyoto University 京都大学'),
(102206, 'https://ror.org/02kqnpp86', 'en', 1, 'https://ror.org/02kqnpp86 University of Campania "Luigi Vanvitelli" UniversitĆ  degli Studi della Campania "Luigi Vanvitelli"'),
(102207, 'https://ror.org/02kqs4h17', 'en', 1, 'https://ror.org/02kqs4h17 EHL Hospitality Business School'),
(102208, 'https://ror.org/02kqy4228', 'en', 1, 'https://ror.org/02kqy4228 Hochschule für Philosophie München Munich School of Philosophy'),
(102209, 'https://ror.org/02ks53214', 'en', 1, 'https://ror.org/02ks53214 Max Planck Institute for Chemical Ecology Max-Planck-Institut für Chemische Ɩkologie'),
(102210, 'https://ror.org/02ksqcf75', 'no_lang_code', 1, 'https://ror.org/02ksqcf75 Didi Chuxing, Didi Chuxing (China) åŒ—äŗ¬å°ę””ē§‘ęŠ€ęœ‰é™å…¬åø'),
(102211, 'https://ror.org/02kxjxy06', 'fr', 1, 'https://ror.org/02kxjxy06 Centre Hospitalier Sainte-Anne'),
(102212, 'https://ror.org/02kxw0b63', 'en', 1, 'https://ror.org/02kxw0b63 Zhijiang College of Zhejiang University of Technology ęµ™ę±Ÿå·„äøšå¤§å­¦ä¹‹ę±Ÿå­¦é™¢'),
(102213, 'https://ror.org/02kxx1z36', 'en', 1, 'https://ror.org/02kxx1z36 Korea Technology and Information Promotion Agency for SMEs ģ¤‘ģ†Œźø°ģ—…źø°ģˆ ģ •ė³“ģ§„ķ„ģ›'),
(102214, 'https://ror.org/02kyhnd71', 'pt', 1, 'https://ror.org/02kyhnd71 Museu Nacional de Etnologia'),
(102215, 'https://ror.org/02kyvdq62', 'pt', 1, 'https://ror.org/02kyvdq62 Instituto de Investigação em Design Media e Cultura'),
(102216, 'https://ror.org/02kzs4y22', 'en', 1, 'https://ror.org/02kzs4y22 UConn Health'),
(102217, 'https://ror.org/02m0hy518', 'fr', 1, 'https://ror.org/02m0hy518 Laboratoire d''Ʃtudes sur les monothƩismes'),
(102218, 'https://ror.org/02m19wv39', 'es', 1, 'https://ror.org/02m19wv39 Centro Internacional Franco-Argentino de Ciencias de la Información y de Sistemas'),
(102219, 'https://ror.org/02m1x7h09', 'en', 1, 'https://ror.org/02m1x7h09 Kujawsko-Pomorska Szkoła Wyższa w Bydgoszczy Kujawy and Pomorze University in Bydgoszcz'),
(102220, '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'),
(102221, 'https://ror.org/02m44sp53', 'en', 1, 'https://ror.org/02m44sp53 Woman Online University دانؓگاه Ų¢Ł†Ł„Ų§ŪŒŁ† زن'),
(102222, 'https://ror.org/02m5qpk42', 'fr', 1, 'https://ror.org/02m5qpk42 Institut Pasteur de Nha Trang'),
(102223, 'https://ror.org/02m6k0m40', 'en', 1, 'https://ror.org/02m6k0m40 Zuyd Hogeschool Zuyd University of Applied Sciences'),
(102224, 'https://ror.org/02m7axw05', 'en', 1, 'https://ror.org/02m7axw05 Japan Society for the Promotion of Science London'),
(102225, 'https://ror.org/02m9cs548', 'fr', 1, 'https://ror.org/02m9cs548 Laboratoire de RƩactivitƩ et Chimie des Solides'),
(102226, 'https://ror.org/02m9kbe37', 'fr', 1, 'https://ror.org/02m9kbe37 Universitat de Tolon University of Toulon UniversitƩ de Toulon'),
(102227, 'https://ror.org/02mc6qk71', 'fr', 1, 'https://ror.org/02mc6qk71 Laboratoire de Physique et ModƩlisation des Milieux CondensƩs'),
(102228, 'https://ror.org/02mdbnd10', 'en', 1, 'https://ror.org/02mdbnd10 Hogeschool Van Hall Larenstein Van Hall Larenstein University of Applied Sciences'),
(102229, 'https://ror.org/02mdj3c25', 'en', 0, 'https://ror.org/02mdj3c25 Austrian Council for Research and Technology Development Rat für Forschung und Technologieentwicklung'),
(102230, 'https://ror.org/02mdnkg28', 'fr', 1, 'https://ror.org/02mdnkg28 Laboratoire d''Optique AtmosphƩrique'),
(102231, 'https://ror.org/02me5cy06', 'fr', 1, 'https://ror.org/02me5cy06 Developmental Biology Institute of Marseille Institut de Biologie du DƩveloppement Marseille'),
(102232, 'https://ror.org/02mfp0b67', 'en', 1, 'https://ror.org/02mfp0b67 National Center for Theoretical Sciences åœ‹å®¶ē†č«–ē§‘å­øē ”ē©¶äø­åæƒ'),
(102233, 'https://ror.org/02mg6n827', 'fr', 1, 'https://ror.org/02mg6n827 CEA Grenoble'),
(102234, 'https://ror.org/02mgmvf72', 'es', 1, 'https://ror.org/02mgmvf72 Instituto Tecnológico de Zacatepec'),
(102235, 'https://ror.org/02mgt2s15', 'en', 1, 'https://ror.org/02mgt2s15 Ruskin College'),
(102236, 'https://ror.org/02mgw3155', 'fr', 1, 'https://ror.org/02mgw3155 Cancer Research Center of Lyon Centre de Recherche en CancƩrologie de Lyon'),
(102237, 'https://ror.org/02mh1d616', 'en', 1, 'https://ror.org/02mh1d616 National Center for Theoretical Sciences, Physics Division åœ‹å®¶ē†č«–ē§‘å­øē ”ē©¶äø­åæƒ 物理組'),
(102238, 'https://ror.org/02mjz6f26', 'en', 1, 'https://ror.org/02mjz6f26 University of Jinan ęµŽå—å¤§å­¦'),
(102239, 'https://ror.org/02mk53y73', 'en', 1, 'https://ror.org/02mk53y73 Dianchi College 滇池學院'),
(102240, 'https://ror.org/02mkbvg40', 'fr', 1, 'https://ror.org/02mkbvg40 Laboratoire MatƩriaux et DurabilitƩ des Constructions Laboratory for Materials and Construction Works Durability'),
(102241, 'https://ror.org/02mks6v46', 'en', 1, 'https://ror.org/02mks6v46 DePauw University'),
(102242, 'https://ror.org/02mkvtw30', 'en', 1, 'https://ror.org/02mkvtw30 Brooklyn Perinatal Network'),
(102243, 'https://ror.org/02mnw9q71', 'fr', 1, 'https://ror.org/02mnw9q71 Institut Galien Paris-Saclay'),
(102244, 'https://ror.org/02mqtne57', 'fr', 1, 'https://ror.org/02mqtne57 HÓpital Lariboisière Lariboisière Hospital'),
(102245, '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'),
(102246, 'https://ror.org/02mwm8067', 'en', 1, 'https://ror.org/02mwm8067 Pact for Youth Association'),
(102247, 'https://ror.org/02mz0e468', 'en', 1, 'https://ror.org/02mz0e468 Curvenote Inc. (Canada)'),
(102248, 'https://ror.org/02n1c7856', 'en', 1, 'https://ror.org/02n1c7856 New York State College of Ceramics'),
(102249, 'https://ror.org/02n2h9t24', 'fr', 1, 'https://ror.org/02n2h9t24 Laboratoire des Composites Thermo Structuraux'),
(102250, 'https://ror.org/02n399288', 'fr', 1, 'https://ror.org/02n399288 Laboratoire Informatique d''Avignon'),
(102251, 'https://ror.org/02n5evf44', 'en', 1, 'https://ror.org/02n5evf44 Sigma Clermont'),
(102252, 'https://ror.org/02n6w8087', 'en', 1, 'https://ror.org/02n6w8087 Air Force Communication NCO Academy äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›é€šäæ”å£«å®˜å­¦ę ”'),
(102253, 'https://ror.org/02n7qrg46', 'fr', 0, 'https://ror.org/02n7qrg46 Paris Diderot University UniversitƩ Paris Diderot'),
(102254, 'https://ror.org/02n96ep67', 'en', 1, 'https://ror.org/02n96ep67 East China Normal University åŽäøœåøˆčŒƒå¤§å­¦'),
(102255, 'https://ror.org/02n9c6y33', 'en', 1, 'https://ror.org/02n9c6y33 University of Al-Hamdaniya Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­Ł…ŲÆŲ§Ł†ŁŠŲ©'),
(102256, 'https://ror.org/02nayd663', 'en', 1, 'https://ror.org/02nayd663 Mitsubishi Fuso Truck and Bus, Mitsubishi Fuso Truck and Bus (Japan) äø‰č±ćµćć†ćƒˆćƒ©ćƒƒć‚Æćƒć‚¹ę Ŗå¼ä¼šē¤¾'),
(102257, 'https://ror.org/02nbck826', 'es', 1, 'https://ror.org/02nbck826 Universidad PolitƩcnica de TecƔmac'),
(102258, 'https://ror.org/02ncz7991', 'en', 1, 'https://ror.org/02ncz7991 Field Applied Research Australia'),
(102259, 'https://ror.org/02nf9ds89', 'pt', 1, 'https://ror.org/02nf9ds89 Centro de Investigação em Gestão'),
(102260, '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'),
(102261, 'https://ror.org/02nfy3535', 'en', 1, 'https://ror.org/02nfy3535 Munich Center for Machine Learning'),
(102262, '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 Фізико-технічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠøŠ·ŃŒŠŗŠøŃ… Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€ ім. Š‘.І. Вєркіна ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України, Фізико-технічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠøŠ·ŃŒŠŗŠøŃ… Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€ ім. Š‘.І. Вєркіна ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України, Єарків'),
(102263, 'https://ror.org/02nkf1q06', 'en', 1, 'https://ror.org/02nkf1q06 University of Essex'),
(102264, 'https://ror.org/02nmavx05', 'pt', 1, 'https://ror.org/02nmavx05 Insper, Insper - Instituto de Ensino e Pesquisa'),
(102265, 'https://ror.org/02nmctw71', 'fr', 1, 'https://ror.org/02nmctw71 Pharmacologie et thƩrapie des addictions'),
(102266, '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'),
(102267, 'https://ror.org/02nr1jd69', 'pt', 1, 'https://ror.org/02nr1jd69 Escola Superior de Hotelaria e Turismo do Estoril'),
(102268, 'https://ror.org/02nsq4g28', 'pt', 1, 'https://ror.org/02nsq4g28 Faculdade de Direito de Franca'),
(102269, 'https://ror.org/02nthwg11', 'fr', 1, 'https://ror.org/02nthwg11 Laboratoire de BiogenĆØse Membranaire'),
(102270, 'https://ror.org/02nwb8925', 'fr', 1, 'https://ror.org/02nwb8925 Ecole de droit social de Montpellier'),
(102271, 'https://ror.org/02nwg5t34', 'en', 1, 'https://ror.org/02nwg5t34 Prifysgol Gorllewin Lloegr University of the West of England'),
(102272, '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'),
(102273, 'https://ror.org/02ny5za58', 'en', 1, 'https://ror.org/02ny5za58 Wuchang Shouyi University ę­¦ę˜Œé¦–ä¹‰å­¦é™¢'),
(102274, 'https://ror.org/02nymkz75', 'pt', 1, 'https://ror.org/02nymkz75 Faculdade Faci Wyden'),
(102275, 'https://ror.org/02nz6zk20', 'en', 1, 'https://ror.org/02nz6zk20 Humanities Montana'),
(102276, 'https://ror.org/02p06sa95', 'fr', 1, 'https://ror.org/02p06sa95 Centre de recherches en philosophie allemande et contemporaine'),
(102277, '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'),
(102278, 'https://ror.org/02p0q0q90', 'en', 1, 'https://ror.org/02p0q0q90 Jackson University College'),
(102279, 'https://ror.org/02p2bgp27', 'no_lang_code', 1, 'https://ror.org/02p2bgp27 Koninklijke Philips Philips (Netherlands)'),
(102280, 'https://ror.org/02p2rk609', 'fr', 1, 'https://ror.org/02p2rk609 Laboratoire de MathƩmatiques et Applications'),
(102281, 'https://ror.org/02p34hm58', 'en', 1, 'https://ror.org/02p34hm58 Fuzhou Melbourne Polytechnic ē¦å·žå¢Øå°”ęœ¬ē†å·„čŒäøšå­¦é™¢'),
(102282, 'https://ror.org/02p350r61', 'es', 1, 'https://ror.org/02p350r61 Universidad Europea Miguel de Cervantes'),
(102283, 'https://ror.org/02p3et738', 'fr', 1, 'https://ror.org/02p3et738 Laboratoire Matériaux et Phénomènes Quantiques Laboratory Materials and Quantum Phenomena'),
(102284, 'https://ror.org/02p4sx080', 'en', 0, 'https://ror.org/02p4sx080 Northamptonshire County Council'),
(102285, 'https://ror.org/02p6v5z38', 'en', 1, 'https://ror.org/02p6v5z38 Teikyo University Hospital, Mizonokuchi åøäŗ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žęŗå£ē—…é™¢'),
(102286, 'https://ror.org/02pb0jm72', 'en', 1, 'https://ror.org/02pb0jm72 Austrian Council for Sciences, Technology, and Innovation Rat für Forschung, Wissenschaft, Innovation und Technologieentwicklung'),
(102287, 'https://ror.org/02pbyft41', 'en', 1, 'https://ror.org/02pbyft41 Southwest Alaska Inventory and Monitoring Network'),
(102288, 'https://ror.org/02pcazp65', 'en', 1, 'https://ror.org/02pcazp65 BLOOM'),
(102289, 'https://ror.org/02pe14c82', 'en', 1, 'https://ror.org/02pe14c82 Ringling College of Art and Design'),
(102290, 'https://ror.org/02phn5242', 'en', 1, 'https://ror.org/02phn5242 University of Colombo ą®•ąÆŠą®“ąÆą®®ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą¶šą·œą·…ą¶¹ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(102291, 'https://ror.org/02pjdv450', 'en', 1, 'https://ror.org/02pjdv450 Florida Museum of Natural History'),
(102292, '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'),
(102293, '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'),
(102294, 'https://ror.org/02ppyfa04', 'fr', 1, 'https://ror.org/02ppyfa04 Centre Hospitalier Universitaire de Lille'),
(102295, 'https://ror.org/02ps2mz85', 'en', 1, 'https://ror.org/02ps2mz85 Mohawk Valley Community College'),
(102296, 'https://ror.org/02pt9a543', 'pt', 1, 'https://ror.org/02pt9a543 Autarquia de Ensino Superior de Garanhuns'),
(102297, 'https://ror.org/02ptn8z56', 'fr', 1, 'https://ror.org/02ptn8z56 National School of Architecture of Versailles Ɖcole Nationale SupĆ©rieure d''Architecture de Versailles'),
(102298, 'https://ror.org/02pvbz391', 'en', 1, 'https://ror.org/02pvbz391 Vocational Training Council 職愭訓緓局'),
(102299, 'https://ror.org/02pz16m08', 'en', 1, 'https://ror.org/02pz16m08 Southwest University of Political Science & Law č„æå—ę”æę³•å¤§å­¦'),
(102300, 'https://ror.org/02pz5q213', 'en', 1, 'https://ror.org/02pz5q213 J. B. Hunt Transport Services, J. B. Hunt Transport Services (United States)'),
(102301, 'https://ror.org/02pzyz439', 'en', 1, 'https://ror.org/02pzyz439 Forests and Societies Forêts et Sociétés'),
(102302, 'https://ror.org/02q1hyx43', 'en', 1, 'https://ror.org/02q1hyx43 Sanjiang University äø‰ę±Ÿå­¦é™¢'),
(102303, 'https://ror.org/02q2d2610', 'en', 1, 'https://ror.org/02q2d2610 University of Brescia UniversitƠ degli Studi di Brescia UniversitƤt Brescia UniversitƩ de brescia'),
(102304, 'https://ror.org/02q398w70', 'fr', 1, 'https://ror.org/02q398w70 DGA Techniques aƩrospatiales'),
(102305, 'https://ror.org/02q6fa122', 'fr', 1, 'https://ror.org/02q6fa122'),
(102306, 'https://ror.org/02q7abn51', 'no_lang_code', 1, 'https://ror.org/02q7abn51 BioData.pt'),
(102307, 'https://ror.org/02q7f3j18', 'en', 1, 'https://ror.org/02q7f3j18 Microbe, Intestine, Inflammation and Host Susceptibility'),
(102308, 'https://ror.org/02qdc9985', 'de', 1, 'https://ror.org/02qdc9985 Mittelhessen University of Applied Sciences Technische Hochschule Mittelhessen'),
(102309, 'https://ror.org/02qdgbw61', 'fr', 1, 'https://ror.org/02qdgbw61 Service des Avions FranƧais InstrumentƩs pour la Recherche en Environnement'),
(102310, 'https://ror.org/02qdtrq21', 'en', 1, 'https://ror.org/02qdtrq21 Anhui University of Technology å®‰å¾½å·„äøšå¤§å­¦'),
(102311, 'https://ror.org/02qjcga68', 'en', 1, 'https://ror.org/02qjcga68 Avesta Battery & Energy Engineering, Avesta Battery & Energy Engineering (Belgium)'),
(102312, 'https://ror.org/02qkhhn56', 'en', 1, 'https://ror.org/02qkhhn56 Indian Institute of Technology Ropar ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø,ą¤°ą„‹ą¤Ŗą¤”ą¤¼ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®Ŗą®žąÆą®šą®¾ą®ŖąÆ'),
(102313, 'https://ror.org/02qkn0e91', 'fr', 1, 'https://ror.org/02qkn0e91 Institut Pasteur du Laos ąŗŖąŗ°ąŗ–ąŗ²ąŗšąŗ±ąŗ™ ປັດສະເຕີ ຄາວ'),
(102314, 'https://ror.org/02qmrr889', 'en', 1, 'https://ror.org/02qmrr889 Yibin Vocational and Technical College å®œå®¾čŒäøšęŠ€ęœÆå­¦é™¢'),
(102315, 'https://ror.org/02qn6fq95', 'en', 1, 'https://ror.org/02qn6fq95 National Institute of Fashion Technology ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤«ą¤¼ą„ˆą¤¶ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤«ą„ˆą¤¶ą¤Ø ą¤Ÿą„‡ą¤•ą„ą¤Øą¤¾ą¤²ą„‰ą¤œą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¦Øą§ą¦Æą¦¾ą¦¶ą¦¾ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦«ą§ą¦Æą¦¾ą¦¶ą¦Ø ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą®¤ąÆ‡ą®šą®æą®Æ ą®‰ą®ŸąÆˆą®Æą®²ą®™ąÆą®•ą®¾ą®° ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(102316, 'https://ror.org/02qp2sy10', 'es', 1, 'https://ror.org/02qp2sy10 Colegio De La Salle'),
(102317, 'https://ror.org/02qp5ew04', 'en', 1, 'https://ror.org/02qp5ew04 Aquinas College'),
(102318, 'https://ror.org/02qprbz18', 'fr', 1, 'https://ror.org/02qprbz18 Institut des Mondes Africains'),
(102319, 'https://ror.org/02qqvpd39', 'de', 1, 'https://ror.org/02qqvpd39 Zentrum für Klinische Tiermedizin'),
(102320, 'https://ror.org/02qr8jq33', 'en', 1, 'https://ror.org/02qr8jq33 Lietuvos Muzikos ir Teatro Akademija Lithuanian Academy of Music and Theatre Š›ŠøŃ‚Š¾Š²ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø Šø театра'),
(102321, 'https://ror.org/02qrg5a24', 'en', 1, 'https://ror.org/02qrg5a24 Royal College of Surgeons of England'),
(102322, 'https://ror.org/02qskvh78', 'en', 1, 'https://ror.org/02qskvh78 University of Maryland, Baltimore County UniversitƩ du maryland, comtƩ de baltimore'),
(102323, 'https://ror.org/02qt18q04', 'en', 1, 'https://ror.org/02qt18q04 Cross-Border Institute'),
(102324, 'https://ror.org/02qtvee93', 'en', 1, 'https://ror.org/02qtvee93 Carleton University'),
(102325, 'https://ror.org/02qzs9336', 'en', 1, 'https://ror.org/02qzs9336 National College of Ireland'),
(102326, 'https://ror.org/02r0wp596', 'en', 1, 'https://ror.org/02r0wp596 SUNY Ulster'),
(102327, 'https://ror.org/02r2qbj91', 'en', 1, 'https://ror.org/02r2qbj91 SUNY Westchester Community College'),
(102328, 'https://ror.org/02r3ebk48', 'pt', 1, 'https://ror.org/02r3ebk48 Faculdade Santa Marcelina MuriaƩ'),
(102329, 'https://ror.org/02r609884', 'en', 1, 'https://ror.org/02r609884 Bridgwater Community Hospital'),
(102330, 'https://ror.org/02r9kbs29', 'en', 1, 'https://ror.org/02r9kbs29 Peki College of Education'),
(102331, 'https://ror.org/02raxsg56', 'es', 1, 'https://ror.org/02raxsg56 Instituto de Investigaciones y PolĆ­ticas del Ambiente Construido (IIPAC)'),
(102332, 'https://ror.org/02reesv50', 'en', 1, 'https://ror.org/02reesv50 Weston College'),
(102333, 'https://ror.org/02regkz96', 'en', 1, 'https://ror.org/02regkz96 Guangdong Teachers College of Foreign Language and Arts å¹æäøœēœå¤–čÆ­č‰ŗęœÆčŒäøšå­¦é™¢'),
(102334, 'https://ror.org/02rex9304', 'en', 1, 'https://ror.org/02rex9304 Fareham College'),
(102335, 'https://ror.org/02rk7kr02', 'id', 1, 'https://ror.org/02rk7kr02 Universitas Mochammad Sroedji Jember'),
(102336, 'https://ror.org/02rkvz144', 'en', 1, 'https://ror.org/02rkvz144 Northeast Normal University äøœåŒ—åøˆčŒƒå¤§å­¦'),
(102337, 'https://ror.org/02rm8h934', 'en', 1, 'https://ror.org/02rm8h934 UNESCO-UNEVOC International Centre for Technical and Vocational Education and Training'),
(102338, 'https://ror.org/02rmwrd87', 'fr', 1, 'https://ror.org/02rmwrd87 Laboratoire Environnements, Dynamiques et Territoires de Montagne'),
(102339, 'https://ror.org/02rnpdm14', 'fr', 1, 'https://ror.org/02rnpdm14 Configurations littƩraires'),
(102340, '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'),
(102341, 'https://ror.org/02rxpxc98', 'en', 1, 'https://ror.org/02rxpxc98 UniversitƩ de la VallƩe de l''Utah Utah Valley University'),
(102342, 'https://ror.org/02rzr3z90', 'fr', 1, 'https://ror.org/02rzr3z90 HEIG-VD, Haute Ecole d''IngƩnierie et de Gestion du Canton de Vaud'),
(102343, 'https://ror.org/02s4dmd79', 'fr', 1, 'https://ror.org/02s4dmd79 Miniaturisation pour la Synthèse, l''Analyse et la Protéomique'),
(102344, 'https://ror.org/02s4gkg68', 'en', 1, 'https://ror.org/02s4gkg68 Adıyaman University Adıyaman Üniversitesi'),
(102345, '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'),
(102346, 'https://ror.org/02s6k3f65', 'en', 1, 'https://ror.org/02s6k3f65 University of Basel Università di Basilea Universität Basel Université de Bâle'),
(102347, 'https://ror.org/02s78cg64', 'en', 1, 'https://ror.org/02s78cg64 Mustaqbal University'),
(102348, 'https://ror.org/02s83b296', 'en', 1, 'https://ror.org/02s83b296 Suzhou Art & Design Technology Institute č‹å·žå·„č‰ŗē¾ŽęœÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(102349, 'https://ror.org/02sb0ps07', 'pt', 1, 'https://ror.org/02sb0ps07 Franciscanas MissionƔrias de Nossa Senhora'),
(102350, 'https://ror.org/02sbkmb73', 'en', 1, 'https://ror.org/02sbkmb73 Connecticut Humanities Council'),
(102351, 'https://ror.org/02sffrq32', 'en', 1, 'https://ror.org/02sffrq32 Glasgow Clyde College'),
(102352, 'https://ror.org/02sftkh09', 'es', 1, 'https://ror.org/02sftkh09 Instituto Tecnológico Superior de Centla'),
(102353, 'https://ror.org/02sj0zy88', 'no_lang_code', 0, 'https://ror.org/02sj0zy88 SELEX Sistemi Integrati'),
(102354, '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'),
(102355, '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'),
(102356, 'https://ror.org/02sps0775', 'en', 1, 'https://ror.org/02sps0775 Chubu University 中部大学'),
(102357, 'https://ror.org/02sps6z09', 'fr', 1, 'https://ror.org/02sps6z09 Neurosciences Paris-Seine'),
(102358, 'https://ror.org/02sscsx71', 'en', 1, 'https://ror.org/02sscsx71 Indian Institute of Technology Bhilai'),
(102359, 'https://ror.org/02st4q439', 'fr', 1, 'https://ror.org/02st4q439 Institut de Chimie des Substances Naturelles Institute for the chemistry of natural substances'),
(102360, 'https://ror.org/02sv65x64', 'en', 1, 'https://ror.org/02sv65x64 Technische Universität Nürnberg University of Technology Nuremberg'),
(102361, 'https://ror.org/02svzjn28', 'no_lang_code', 1, 'https://ror.org/02svzjn28 Walter Sisulu University'),
(102362, 'https://ror.org/02sw6yz40', 'en', 1, 'https://ror.org/02sw6yz40 Guizhou University of Finance and Economics č“µå·žč“¢ē»å¤§å­¦'),
(102363, 'https://ror.org/02sy42d13', 'en', 1, 'https://ror.org/02sy42d13 Bambino Gesù Children''s Hospital Ospedale Pediatrico Bambino Gesù'),
(102364, 'https://ror.org/02t220m45', 'fr', 1, 'https://ror.org/02t220m45 DƩlƩgation Bretagne et Pays de la Loire'),
(102365, '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'),
(102366, 'https://ror.org/02t2d3c36', 'en', 1, 'https://ror.org/02t2d3c36 Seventh-day Adventist College of Education'),
(102367, 'https://ror.org/02t2hg116', 'fr', 1, 'https://ror.org/02t2hg116 Institut des Sciences de la Terre d''OrlƩans'),
(102368, 'https://ror.org/02t3p7e85', 'en', 1, 'https://ror.org/02t3p7e85 Queensland Children’s Hospital'),
(102369, 'https://ror.org/02t42bb94', 'en', 1, 'https://ror.org/02t42bb94 Naval Research Academy 中国人民解放军海军研究院'),
(102370, 'https://ror.org/02t4ekc95', 'en', 1, 'https://ror.org/02t4ekc95 Medical University of Lodz Uniwersytet Medyczny w Łodzi'),
(102371, 'https://ror.org/02t67p115', 'en', 1, 'https://ror.org/02t67p115 Hebei Petroleum University of Technology ę²³åŒ—ēŸ³ę²¹čŒäøšęŠ€ęœÆå¤§å­¦'),
(102372, 'https://ror.org/02t9fsj94', 'en', 1, 'https://ror.org/02t9fsj94 Obihiro University of Agriculture and Veterinary Medicine åøÆåŗƒē•œē”£å¤§å­¦'),
(102373, 'https://ror.org/02t9nm044', 'fr', 1, 'https://ror.org/02t9nm044 Institut franƧais du Proche-Orient'),
(102374, 'https://ror.org/02tare285', 'en', 1, 'https://ror.org/02tare285 National Institute of Technology, Puducherry ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤¦ą„ą¤šą„ą¤šą„‡ą¤°ą„€, ą¤•ą¤¾ą¤°ą„ˆą¤•ą„ą¤•ą¤¾ą¤² ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®ŖąÆą®¤ąÆą®šąÆą®šąÆ‡ą®°ą®æ, ą®•ą®¾ą®°ąÆˆą®•ąÆą®•ą®¾ą®²ąÆ'),
(102375, 'https://ror.org/02tcssc12', 'en', 1, 'https://ror.org/02tcssc12 Assalam International University Ų¬Ų§Ł…Ų¹Ų© السلام Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© - Ų³Ų±ŲŖ'),
(102376, 'https://ror.org/02teq1165', 'en', 1, 'https://ror.org/02teq1165 Universidad de Misisipi University of Mississippi UniversitƩ du Mississippi'),
(102377, 'https://ror.org/02tm5ny37', 'fr', 1, 'https://ror.org/02tm5ny37 MƩdipole Garonne'),
(102378, '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'),
(102379, 'https://ror.org/02tp7mm44', 'fr', 1, 'https://ror.org/02tp7mm44 Centre de Recherches Insulaires et Observatoire de l''Environnement'),
(102380, 'https://ror.org/02tpwnr26', 'en', 1, 'https://ror.org/02tpwnr26 Zaragoza Logistics Center'),
(102381, 'https://ror.org/02tqmhd47', 'fr', 1, 'https://ror.org/02tqmhd47 Catholic Institute of Higher Studies Institut catholique d’études supĆ©rieures'),
(102382, 'https://ror.org/02trpr211', 'tr', 1, 'https://ror.org/02trpr211 Değerler Eğitimi Merkezi'),
(102383, 'https://ror.org/02ttsq026', 'en', 1, 'https://ror.org/02ttsq026 Universidad de Colorado en Boulder University of Colorado Boulder UniversitƩ du Colorado Ơ Boulder'),
(102384, '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'),
(102385, 'https://ror.org/02tv7db43', 'en', 1, 'https://ror.org/02tv7db43 Balıkesir University Balıkesir Üniversitesi'),
(102386, 'https://ror.org/02tvvdy44', 'en', 1, 'https://ror.org/02tvvdy44 Pew Research Center'),
(102387, 'https://ror.org/02txsgf39', 'fr', 1, 'https://ror.org/02txsgf39 Château de Longchamp'),
(102388, 'https://ror.org/02ty42a04', 'fr', 0, 'https://ror.org/02ty42a04 Ɖcole Nationale d''Administration de Madagascar'),
(102389, 'https://ror.org/02tyrky19', 'en', 1, 'https://ror.org/02tyrky19 ColÔiste na Tríonóide Baile Átha Cliath Trinity College Dublin'),
(102390, 'https://ror.org/02tz8r820', 'en', 0, 'https://ror.org/02tz8r820 Institute of Soil Biology'),
(102391, 'https://ror.org/02tznxc41', 'fr', 1, 'https://ror.org/02tznxc41 Groupe d''Etudes et de Recherche Interdisciplinaire en Information et Communication'),
(102392, 'https://ror.org/02tzt0b78', 'es', 1, 'https://ror.org/02tzt0b78 Universidad de León Universidade de León University of Leon'),
(102393, '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Ʃ'),
(102394, 'https://ror.org/02v3kjh70', 'en', 1, 'https://ror.org/02v3kjh70 National Institute of Financial Management ą¤…ą¤°ą„ą¤£ ą¤œą„‡ą¤Ÿą¤²ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¤ą„ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(102395, 'https://ror.org/02v3kkq53', 'en', 1, 'https://ror.org/02v3kkq53 Istanbul Commerce University İstanbul Ticaret Ɯniversitesi İstanbul Ticarət Universiteti'),
(102396, 'https://ror.org/02v423c65', 'en', 1, 'https://ror.org/02v423c65 Ajeenkya DY Patil University ą¤…ą¤œą¤æą¤‚ą¤•ą„ą¤Æ ą¤”ą„€.वाय. ą¤Ŗą¤¾ą¤Ÿą„€ą¤² ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(102397, 'https://ror.org/02v51f717', 'en', 1, 'https://ror.org/02v51f717 Peking University åŒ—äŗ¬å¤§å­¦'),
(102398, 'https://ror.org/02v5bgz72', 'fr', 1, 'https://ror.org/02v5bgz72 Groupe Hospitalier Cochin - Port-Royal, HƓtel-Dieu, Broca - La CollƩgiale'),
(102399, 'https://ror.org/02v5cy890', 'da', 1, 'https://ror.org/02v5cy890 Erhvervsakademi MidtVest'),
(102400, 'https://ror.org/02v6aqf52', 'en', 1, 'https://ror.org/02v6aqf52 Camosun College'),
(102401, 'https://ror.org/02v6n4042', 'pt', 1, 'https://ror.org/02v6n4042 Instituto Europeu de Estudos Superiores'),
(102402, 'https://ror.org/02v7trd43', 'en', 1, 'https://ror.org/02v7trd43 Indian Institute of Technology Goa ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤—ą„‹ą¤µą¤¾'),
(102403, 'https://ror.org/02v87rg62', 'fr', 1, 'https://ror.org/02v87rg62 Mycologie et SƩcuritƩ des Aliments Mycology and Food Safety'),
(102404, 'https://ror.org/02v8kk877', 'en', 1, 'https://ror.org/02v8kk877 European Union Agency for Railways'),
(102405, 'https://ror.org/02v9bqx10', 'en', 1, 'https://ror.org/02v9bqx10 Başkent University Başkent Üniversitesi'),
(102406, 'https://ror.org/02v9m6h26', 'en', 1, 'https://ror.org/02v9m6h26 SUNY College of Optometry'),
(102407, 'https://ror.org/02vb93k64', 'en', 1, 'https://ror.org/02vb93k64 Institut de l''environnement Institute of the Environment'),
(102408, 'https://ror.org/02vde2j43', 'en', 1, 'https://ror.org/02vde2j43 Institut za medicinska istraživanja, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за меГицинска ŠøŃŃ‚Ń€Š°Š¶ŠøŠ²Š°ŃšŠ° Institute for Medical Research'),
(102409, 'https://ror.org/02vdm1p28', 'en', 1, 'https://ror.org/02vdm1p28 National Endowment for the Humanities'),
(102410, 'https://ror.org/02vfh9890', 'en', 1, 'https://ror.org/02vfh9890 Phu Yen Vocational College'),
(102411, 'https://ror.org/02vg7mz57', 'en', 1, 'https://ror.org/02vg7mz57 Guangdong Pharmaceutical University å¹æäøœčÆå­¦é™¢'),
(102412, 'https://ror.org/02vh8a032', 'en', 1, 'https://ror.org/02vh8a032 Bilkent University İhsan Doğramacı Bilkent Üniversitesi'),
(102413, 'https://ror.org/02vhxx141', 'no_lang_code', 1, 'https://ror.org/02vhxx141 Patan Hospital'),
(102414, 'https://ror.org/02vmjde87', 'es', 1, 'https://ror.org/02vmjde87 Gobierno de la Provincia de Mendoza'),
(102415, 'https://ror.org/02vnd0e65', 'fr', 1, 'https://ror.org/02vnd0e65 Laboratoire de ProbabilitƩs, Statistique et ModƩlisation'),
(102416, 'https://ror.org/02vpw2d22', 'en', 1, 'https://ror.org/02vpw2d22 Rai University'),
(102417, 'https://ror.org/02vscf791', 'en', 1, 'https://ror.org/02vscf791 Gdynia Maritime University Uniwersytet Morski w Gdyni'),
(102418, 'https://ror.org/02vtmh618', 'en', 0, 'https://ror.org/02vtmh618 Foreign and Commonwealth Office Y Swyddfa Dramor a Chymanwlad'),
(102419, 'https://ror.org/02vvvm705', 'en', 1, 'https://ror.org/02vvvm705 Jade Hochschule Jade University of Applied Sciences'),
(102420, 'https://ror.org/02vwv4x74', 'en', 1, 'https://ror.org/02vwv4x74 Ohio Humanities Council'),
(102421, 'https://ror.org/02vxcq142', 'en', 1, 'https://ror.org/02vxcq142 University of Mpumalanga'),
(102422, 'https://ror.org/02vyzav31', 'en', 1, 'https://ror.org/02vyzav31 PAU Excellencia Global Academy Foundation, Inc.'),
(102423, 'https://ror.org/02w0r2764', 'en', 1, 'https://ror.org/02w0r2764 MAGIC Telescopes'),
(102424, 'https://ror.org/02w0trx84', 'en', 1, 'https://ror.org/02w0trx84 Montana State University'),
(102425, 'https://ror.org/02w12zj89', 'no_lang_code', 1, 'https://ror.org/02w12zj89 Nio, Nio (China) äøŠęµ·č”šę„ę±½č½¦ęœ‰é™å…¬åø'),
(102426, 'https://ror.org/02w2y2t16', 'en', 1, 'https://ror.org/02w2y2t16 Leuphana University of Lüneburg Leuphana Universität Lüneburg'),
(102427, 'https://ror.org/02w30qy89', 'en', 1, 'https://ror.org/02w30qy89 Xi’an International University 脿安国际大学'),
(102428, 'https://ror.org/02w42ss30', 'en', 1, 'https://ror.org/02w42ss30 Budapest University of Technology and Economics Budapesti Műszaki és GazdasÔgtudomÔnyi Egyetem'),
(102429, 'https://ror.org/02w4exq36', 'en', 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'),
(102430, 'https://ror.org/02w4jbg70', 'en', 1, 'https://ror.org/02w4jbg70 Koninklijke Bibliotheek National Library of the Netherlands'),
(102431, 'https://ror.org/02w5mvk98', 'fr', 1, 'https://ror.org/02w5mvk98 Laboratoire Plasma et Conversion d''Energie Laboratory on Plasma and Conversion of Energy'),
(102432, 'https://ror.org/02w7rbf39', 'en', 1, 'https://ror.org/02w7rbf39 Chr. Michelsen Institute'),
(102433, 'https://ror.org/02wbxt087', 'en', 1, 'https://ror.org/02wbxt087 Selby College'),
(102434, 'https://ror.org/02wddde16', 'en', 1, 'https://ror.org/02wddde16 Distributed System of Scientific Collections'),
(102435, 'https://ror.org/02wdygz27', 'fr', 1, 'https://ror.org/02wdygz27 Habiter le monde'),
(102436, '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'),
(102437, 'https://ror.org/02web8j86', 'es', 1, 'https://ror.org/02web8j86 CUNEF Universidad CUNEF University'),
(102438, 'https://ror.org/02wfhk785', 'en', 1, 'https://ror.org/02wfhk785 International Institute for Applied Systems Analysis'),
(102439, 'https://ror.org/02wj62e51', 'fr', 1, 'https://ror.org/02wj62e51 Diabète et thérapie cellulaire'),
(102440, 'https://ror.org/02wm3rq58', 'es', 1, 'https://ror.org/02wm3rq58 Sociedad de Lucha Contra el CƔncer del Ecuador'),
(102441, 'https://ror.org/02wnejx52', 'en', 1, 'https://ror.org/02wnejx52 National Academy of Legal Sciences of Ukraine ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ правовых наук Украины, ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń правових наук України, ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń правових наук України'),
(102442, 'https://ror.org/02wnmk332', 'pt', 1, 'https://ror.org/02wnmk332 Brazilian Center for Research in Physics Centro Brasileiro de Pesquisas FĆ­sicas'),
(102443, 'https://ror.org/02wq1s711', 'fr', 1, 'https://ror.org/02wq1s711 Fédération de recherche Matière et Interactions'),
(102444, 'https://ror.org/02wq41p38', 'no_lang_code', 1, 'https://ror.org/02wq41p38 Aviation Industry Corporation of China (China) äø­å›½čˆŖē©ŗå·„äøšé›†å›¢å…¬åø'),
(102445, 'https://ror.org/02wrd4e19', 'fr', 1, 'https://ror.org/02wrd4e19 Architecture, Environnement & Cultures Constructives'),
(102446, 'https://ror.org/02ws75w34', 'en', 1, 'https://ror.org/02ws75w34 Nepal Mountain Academy'),
(102447, 'https://ror.org/02wwamm40', 'pt', 1, 'https://ror.org/02wwamm40 Departamento de CiĆŖncia e de Recursos Naturais'),
(102448, 'https://ror.org/02wxq9k17', 'en', 1, 'https://ror.org/02wxq9k17 Claremont School of Theology'),
(102449, 'https://ror.org/02wxx3e24', 'en', 1, 'https://ror.org/02wxx3e24 Brandenburg University of Technology Cottbus-Senftenberg, Technical University of Cottbus Brandenburgische Technische UniversitƤt Cottbus-Senftenberg'),
(102450, 'https://ror.org/02wy3s959', 'fr', 1, 'https://ror.org/02wy3s959 Laboratoire d''ƉnergĆ©tique MolĆ©culaire et Macroscopique, Combustion'),
(102451, 'https://ror.org/02wy4ac67', 'fr', 1, 'https://ror.org/02wy4ac67 DƩlƩgation Alsace'),
(102452, 'https://ror.org/02wycgj20', 'fr', 1, 'https://ror.org/02wycgj20 Molécules d''Intérêt Biologique'),
(102453, 'https://ror.org/02wzg8t73', 'fr', 1, 'https://ror.org/02wzg8t73 Centre d''Etudes Politiques de l''Europe Latine, Centre d’Etudes Politiques Et sociaLes'),
(102454, 'https://ror.org/02x1pa065', 'en', 1, 'https://ror.org/02x1pa065 Guizhou Normal University č“µå·žåøˆčŒƒå¤§å­¦'),
(102455, 'https://ror.org/02x2d4k59', 'en', 1, 'https://ror.org/02x2d4k59 Pfizer Health Research Foundation'),
(102456, 'https://ror.org/02x2vzy16', 'en', 1, 'https://ror.org/02x2vzy16 Dene Barton Community Hospital'),
(102457, 'https://ror.org/02x435584', 'en', 1, 'https://ror.org/02x435584 Theological University Utrecht Theologische Universiteit Utrecht'),
(102458, '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'),
(102459, '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'),
(102460, 'https://ror.org/02x696c73', 'en', 1, 'https://ror.org/02x696c73 EQT, EQT (United States)'),
(102461, 'https://ror.org/02x6ahj98', 'en', 1, 'https://ror.org/02x6ahj98 University of Vavuniya ą®µą®µąÆą®©ą®æą®Æą®¾ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(102462, 'https://ror.org/02x722129', 'en', 1, 'https://ror.org/02x722129 Central Geological Laboratory of Mongolia'),
(102463, 'https://ror.org/02x80b031', 'en', 1, 'https://ror.org/02x80b031 Leeds Trinity University'),
(102464, 'https://ror.org/02xe5ns62', 'en', 1, 'https://ror.org/02xe5ns62 Jinan University ęšØå—å¤§å­¦'),
(102465, 'https://ror.org/02xf66n48', 'en', 1, 'https://ror.org/02xf66n48 Debreceni Egyetem University of Debrecen'),
(102466, 'https://ror.org/02xgxme97', 'en', 1, 'https://ror.org/02xgxme97 NHL Stenden Hogeschool NHL Stenden University of Applied Sciences'),
(102467, 'https://ror.org/02xh23b55', 'fr', 1, 'https://ror.org/02xh23b55 Laboratoire Evolution et Diversite Biologique Laboratory Evolution and Biological Diversity'),
(102468, 'https://ror.org/02xhk2825', 'en', 1, 'https://ror.org/02xhk2825 Pew Charitable Trusts'),
(102469, 'https://ror.org/02xhnzg94', 'en', 1, 'https://ror.org/02xhnzg94 Manhattan College');
INSERT INTO `rors` VALUES
(102470, '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'),
(102471, 'https://ror.org/02xnnng09', 'fr', 1, 'https://ror.org/02xnnng09 Laboratoire de GĆ©nie Ɖlectrique et Ɖlectronique de Paris'),
(102472, 'https://ror.org/02xq3c453', 'en', 1, 'https://ror.org/02xq3c453 Smithsonian Latino Center'),
(102473, 'https://ror.org/02xqgcz97', 'en', 1, 'https://ror.org/02xqgcz97 Masdar Institute of Science and Technology'),
(102474, 'https://ror.org/02xqkcw08', 'en', 1, 'https://ror.org/02xqkcw08 National Institute of Technology ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹é«˜ē­‰å°‚é–€å­¦ę ”ę©Ÿę§‹'),
(102475, 'https://ror.org/02xrw9r68', 'fr', 1, 'https://ror.org/02xrw9r68 University of Quebec at Trois-Rivieres Université du Québec à Trois-Rivières'),
(102476, 'https://ror.org/02xs3dj23', 'en', 1, 'https://ror.org/02xs3dj23 Western Colorado University'),
(102477, 'https://ror.org/02xsgn598', 'en', 1, 'https://ror.org/02xsgn598 Chaminade University of Honolulu'),
(102478, 'https://ror.org/02xvafv39', 'en', 1, 'https://ror.org/02xvafv39 ALS CURE Project'),
(102479, 'https://ror.org/02xvvvp28', 'en', 1, 'https://ror.org/02xvvvp28 Foshan University ä½›å±±ē§‘å­¦ęŠ€ęœÆå­¦é™¢'),
(102480, 'https://ror.org/02xyv8p74', 'en', 1, 'https://ror.org/02xyv8p74 Shepton Mallet Community Hospital'),
(102481, 'https://ror.org/02xz6bf62', 'en', 1, 'https://ror.org/02xz6bf62 ČeskÔ geologickÔ služba'),
(102482, 'https://ror.org/02y0gk295', 'fr', 1, 'https://ror.org/02y0gk295 Centre de Recherche sur les Ions, les MatƩriaux et la Photonique'),
(102483, 'https://ror.org/02y1pfw65', 'es', 1, 'https://ror.org/02y1pfw65 Tecnológico de Estudios Superiores de Ixtapaluca'),
(102484, 'https://ror.org/02y3mfk39', 'fr', 1, 'https://ror.org/02y3mfk39 Biologie des Oiseaux et Aviculture'),
(102485, 'https://ror.org/02y5f7327', 'en', 0, 'https://ror.org/02y5f7327 Taunton & Somerset NHS Foundation Trust'),
(102486, 'https://ror.org/02y5xdw18', 'en', 1, 'https://ror.org/02y5xdw18 Ibn Haldun University İbn Haldun Üniversitesi'),
(102487, 'https://ror.org/02y6fxd73', 'fr', 1, 'https://ror.org/02y6fxd73 Mondes AmƩricains'),
(102488, 'https://ror.org/02y72wh86', 'en', 1, 'https://ror.org/02y72wh86 Queen''s University'),
(102489, 'https://ror.org/02y802x14', 'en', 1, 'https://ror.org/02y802x14 Korea Display Research Corporation'),
(102490, 'https://ror.org/02y84bs66', 'en', 1, 'https://ror.org/02y84bs66 Hellenic Naval Academy Σχολή ĪĪ±Ļ…Ļ„Ī¹ĪŗĻŽĪ½ Δοκίμων'),
(102491, 'https://ror.org/02ya5n776', 'no_lang_code', 1, 'https://ror.org/02ya5n776 Technicolor (France)'),
(102492, 'https://ror.org/02ycfa514', 'en', 1, 'https://ror.org/02ycfa514 California Science Center'),
(102493, 'https://ror.org/02yd1yr68', 'en', 1, 'https://ror.org/02yd1yr68 Jinzhou Medical University é”¦å·žåŒ»ē§‘å¤§å­¦'),
(102494, 'https://ror.org/02ydh7m84', 'en', 1, 'https://ror.org/02ydh7m84 Dickinson College'),
(102495, 'https://ror.org/02yg1pf55', 'en', 0, 'https://ror.org/02yg1pf55 IBM Research (China)'),
(102496, 'https://ror.org/02ygac863', 'fr', 1, 'https://ror.org/02ygac863 Maison des Sciences de l''Homme et de la SociƩtƩ Sud-Est'),
(102497, 'https://ror.org/02ygek028', 'en', 1, 'https://ror.org/02ygek028 FacultƩs universitaires saint-louis Saint-Louis University, UCLouvain Saint-Louis Brussels'),
(102498, 'https://ror.org/02ygzhr13', 'en', 1, 'https://ror.org/02ygzhr13 University of Washington Bothell'),
(102499, 'https://ror.org/02yhrrk59', 'en', 1, 'https://ror.org/02yhrrk59 University of Derby'),
(102500, 'https://ror.org/02yj0p855', 'en', 1, 'https://ror.org/02yj0p855 Beijing University of Civil Engineering and Architecture åŒ—äŗ¬å»ŗē­‘å·„ēØ‹å­¦é™¢'),
(102501, 'https://ror.org/02yknsc93', 'en', 1, 'https://ror.org/02yknsc93 McCoy College of Education'),
(102502, 'https://ror.org/02ykxax89', 'no_lang_code', 1, 'https://ror.org/02ykxax89 Kowa (United Kingdom)'),
(102503, 'https://ror.org/02ymav706', 'en', 1, 'https://ror.org/02ymav706 British Association for Applied Linguistics'),
(102504, 'https://ror.org/02ypdzw54', 'es', 1, 'https://ror.org/02ypdzw54 Tecnológico de Estudios Superiores de Chalco'),
(102505, 'https://ror.org/02ypw0a72', 'fr', 1, 'https://ror.org/02ypw0a72 Brest National Engineering School Ɖcole nationale d''ingĆ©nieurs de Brest'),
(102506, 'https://ror.org/02yqgb753', 'en', 1, 'https://ror.org/02yqgb753 Life Sciences International Postgraduate Educational Center'),
(102507, 'https://ror.org/02yr4wk92', 'fr', 1, 'https://ror.org/02yr4wk92 Institut et Haute Ecole de la SantƩ La Source'),
(102508, 'https://ror.org/02ysgwq33', 'fr', 1, 'https://ror.org/02ysgwq33 Institut Pasteur de Dakar'),
(102509, 'https://ror.org/02yt1th11', 'fr', 1, 'https://ror.org/02yt1th11'),
(102510, 'https://ror.org/02ytfzr55', 'en', 1, 'https://ror.org/02ytfzr55 Indian Institute of Engineering Science and Technology, Shibpur बंगाल ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¬ą§‡ą¦™ą§ą¦—ą¦² ą¦‡ą¦žą§ą¦œą¦æą¦Øą¦æą¦Æą¦¼ą¦¾ą¦°ą¦æą¦‚ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(102511, 'https://ror.org/02yv7k107', 'en', 1, 'https://ror.org/02yv7k107 Kwalejin Ilimi ta Wesley Wesley College of Education'),
(102512, 'https://ror.org/02yvha224', 'fr', 1, 'https://ror.org/02yvha224 Centre pour les humanitƩs numƩriques et l''histoire de la justice'),
(102513, 'https://ror.org/02yw51758', 'en', 1, 'https://ror.org/02yw51758 Switch'),
(102514, 'https://ror.org/02yxnh564', 'en', 1, 'https://ror.org/02yxnh564 Northeast Forestry University äøœåŒ—ęž—äøšå¤§å­¦'),
(102515, 'https://ror.org/02yyskm09', 'en', 1, 'https://ror.org/02yyskm09 AbbĆØs Laghrour University of Khenchela Ų¬Ų§Ł…Ų¹Ų© Ų¹ŲØŲ§Ų³ Ł„ŲŗŲ±ŁˆŲ± خنؓلة'),
(102516, 'https://ror.org/02z1r3k29', 'en', 1, 'https://ror.org/02z1r3k29 Kwalejin Ilimi ta St. Ambrose St. Ambrose College of Education'),
(102517, 'https://ror.org/02z1xqy79', 'en', 1, 'https://ror.org/02z1xqy79 Al-Faruq College of Education Al-Faruq taʼlim kolleji ŁƒŁ„ŁŠŲ© Ų§Ł„ŁŲ§Ų±ŁˆŁ‚ Ł„Ł„ŲŖŲ±ŲØŁŠŲ©'),
(102518, 'https://ror.org/02z2yec16', 'en', 1, 'https://ror.org/02z2yec16 Zhongshan Ophthalmic Center, Sun Yat-sen University äø­å±±å¤§å­¦ēœ¼ē§‘äø­åæƒ'),
(102519, 'https://ror.org/02z749649', 'es', 1, 'https://ror.org/02z749649 Pablo de Olavide University Universidad Pablo de Olavide'),
(102520, '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'),
(102521, 'https://ror.org/02z9j6m75', 'fr', 0, 'https://ror.org/02z9j6m75 Economie Publique Public Economics'),
(102522, 'https://ror.org/02za18p66', 'fr', 1, 'https://ror.org/02za18p66 Institut de Physique et Chimie des MatƩriaux de Strasbourg'),
(102523, 'https://ror.org/02za3fg58', 'en', 1, 'https://ror.org/02za3fg58 Eton College'),
(102524, 'https://ror.org/02zas6g74', 'en', 0, 'https://ror.org/02zas6g74 Conseil RƩgional Limousin Limousin Regional Council'),
(102525, 'https://ror.org/02zeryz43', 'no_lang_code', 0, 'https://ror.org/02zeryz43 Wyle (United States)'),
(102526, 'https://ror.org/02zj7b759', 'en', 1, 'https://ror.org/02zj7b759 Australian Plant Phenomics Network'),
(102527, 'https://ror.org/02zm1vy19', 'pt', 1, 'https://ror.org/02zm1vy19 Catavento Instituto'),
(102528, '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'),
(102529, 'https://ror.org/02zpfcb35', 'en', 1, 'https://ror.org/02zpfcb35 Škoda Auto University Škoda Auto VysokÔ Ŕkola'),
(102530, 'https://ror.org/02zrwga81', 'en', 1, 'https://ror.org/02zrwga81 Nekton'),
(102531, 'https://ror.org/02zsxwr40', 'en', 1, 'https://ror.org/02zsxwr40 University of Alabama in Huntsville UniversitƩ d''alabama Ơ huntsville'),
(102532, 'https://ror.org/02zv2b697', 'es', 1, 'https://ror.org/02zv2b697 Tecnológico de Estudios Superiores de Valle de Bravo'),
(102533, 'https://ror.org/02zvqmp51', 'en', 1, 'https://ror.org/02zvqmp51 V.F. Corporation, V.F. Corporation (United States)'),
(102534, 'https://ror.org/02zx40v98', 'en', 1, 'https://ror.org/02zx40v98 Central European University'),
(102535, 'https://ror.org/02zzkv309', 'fr', 1, 'https://ror.org/02zzkv309 HES-SO Arc'),
(102536, 'https://ror.org/0300mzg60', 'en', 1, 'https://ror.org/0300mzg60 Genomique et Physiologie Moleculaire des Maladies Metaboliques Integrated Genomics and Metabolic Diseases Modeling'),
(102537, 'https://ror.org/03011gg73', 'fr', 1, 'https://ror.org/03011gg73 Institut de Recherche Dupuy de LƓme'),
(102538, 'https://ror.org/0302jbz39', 'es', 1, 'https://ror.org/0302jbz39 Instituto Tecnológico de Boca del Río'),
(102539, 'https://ror.org/0302qeq32', 'fr', 1, 'https://ror.org/0302qeq32 Centre de recherche sur le monde iranien'),
(102540, 'https://ror.org/0304ty515', 'en', 1, 'https://ror.org/0304ty515 Dalian Neusoft University of Information å¤§čæžäøœč½Æäæ”ęÆå¤§å­¦'),
(102541, 'https://ror.org/0305eqz85', 'en', 1, 'https://ror.org/0305eqz85 Gbewaa College of Education'),
(102542, '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'),
(102543, 'https://ror.org/030bhh786', 'en', 1, 'https://ror.org/030bhh786 ShanghaiTech University äøŠęµ·ē§‘ęŠ€å¤§å­¦'),
(102544, 'https://ror.org/030deh410', 'en', 1, 'https://ror.org/030deh410 IHE Delft Institute for Water Education'),
(102545, 'https://ror.org/030e1gk87', 'en', 1, 'https://ror.org/030e1gk87 Byrd Polar and Climate Research Center'),
(102546, 'https://ror.org/030e3n504', 'en', 1, 'https://ror.org/030e3n504 Liaoning University of Traditional Chinese Medicine č¾½å®äø­åŒ»čÆå¤§å­¦'),
(102547, 'https://ror.org/030ev1m28', 'en', 1, 'https://ror.org/030ev1m28 General Hospital of Central Theater Command äø­å›½äŗŗę°‘č§£ę”¾å†›äø­éƒØęˆ˜åŒŗę€»åŒ»é™¢'),
(102548, 'https://ror.org/030ewzw66', 'fr', 1, 'https://ror.org/030ewzw66 Western Institute of Law and Europe'),
(102549, 'https://ror.org/030h5jp79', 'fr', 1, 'https://ror.org/030h5jp79 Conservatoire national supƩrieur de musique et de danse de Paris Paris Conservatory'),
(102550, 'https://ror.org/030j39b93', 'en', 1, 'https://ror.org/030j39b93 VA Sierra Pacific Network'),
(102551, 'https://ror.org/030mmee62', 'en', 1, 'https://ror.org/030mmee62 University of Fada N''gourma UniversitƩ de Fada N''gourma, UniversitƩ de Fada-Ngourma'),
(102552, 'https://ror.org/030mqy313', 'en', 1, 'https://ror.org/030mqy313 Bratislava International School of Liberal Arts'),
(102553, 'https://ror.org/030nc6282', 'en', 1, 'https://ror.org/030nc6282 South Gloucestershire and Stroud College'),
(102554, 'https://ror.org/030przz70', 'fr', 1, 'https://ror.org/030przz70 Insect Models of Innate Immunity Modèles Insectes de l''Immunité Innée'),
(102555, 'https://ror.org/030px0y08', 'en', 1, 'https://ror.org/030px0y08 Kirchliche PƤdagogische Hochschule Wien/Krems University College of Teacher Education of Christian Churches Vienna/Krems'),
(102556, 'https://ror.org/030qxve40', 'fr', 1, 'https://ror.org/030qxve40 Ɖcole & Observatoire des Sciences de la Terre'),
(102557, 'https://ror.org/030qxym25', 'pt', 1, 'https://ror.org/030qxym25 Museu Nacional de História Natural e da Ciência'),
(102558, 'https://ror.org/030reqw53', 'en', 1, 'https://ror.org/030reqw53 Goa University'),
(102559, 'https://ror.org/030syve83', 'fr', 1, 'https://ror.org/030syve83 Observatoire Midi-PyrƩnƩes'),
(102560, 'https://ror.org/030tbdr67', 'en', 1, 'https://ror.org/030tbdr67 Chittagong Medical University ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® মেঔিকেল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą®šą®æą®ŸąÆą®Ÿą®•ą®¾ą®™ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(102561, 'https://ror.org/030txkr67', 'en', 1, 'https://ror.org/030txkr67 Bader College'),
(102562, 'https://ror.org/030txnd05', 'fr', 1, 'https://ror.org/030txnd05 Ɖcole Navale'),
(102563, 'https://ror.org/030vwjb30', 'fr', 1, 'https://ror.org/030vwjb30 Genopolys'),
(102564, 'https://ror.org/030ws5c69', 'no_lang_code', 1, 'https://ror.org/030ws5c69 Istituto Nazionale di Fisica Nucleare, Galileo Galilei Institute for Theoretical Physics'),
(102565, 'https://ror.org/0310h1546', 'en', 1, 'https://ror.org/0310h1546 EkonomickĆ” univerzita v Bratislave University of Economics in Bratislava'),
(102566, 'https://ror.org/0310v3480', 'en', 0, 'https://ror.org/0310v3480 NFDI4Memory'),
(102567, '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'),
(102568, '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'),
(102569, 'https://ror.org/03158q453', 'en', 1, 'https://ror.org/03158q453 Animal and Plant Inspection and Quarantine Technology Center of Shenzhen Customs District ę·±åœ³ęµ·å…³åŠØę¤ē‰©ę£€éŖŒę£€ē–«ęŠ€ęœÆäø­åæƒ'),
(102570, 'https://ror.org/0315hfb21', 'en', 1, 'https://ror.org/0315hfb21 Rakai Health Sciences Program'),
(102571, 'https://ror.org/0316y5a96', 'en', 1, 'https://ror.org/0316y5a96 St. Xavier''s College (Autonomous)'),
(102572, 'https://ror.org/0318tzh81', 'fr', 1, 'https://ror.org/0318tzh81 Virologie'),
(102573, 'https://ror.org/031dhcv14', 'en', 1, 'https://ror.org/031dhcv14 Hainan Normal University ęµ·å—åøˆčŒƒå¤§å­¦'),
(102574, 'https://ror.org/031g0x021', 'en', 1, 'https://ror.org/031g0x021 Jasikan College of Education'),
(102575, 'https://ror.org/031j0at32', 'en', 0, 'https://ror.org/031j0at32 Beibu Gulf University åŒ—éƒØę¹¾å¤§å­¦'),
(102576, 'https://ror.org/031jmyr19', 'en', 1, 'https://ror.org/031jmyr19 Odisha University of Technology and Research'),
(102577, 'https://ror.org/031m8s392', 'en', 1, 'https://ror.org/031m8s392 New York Sea Grant'),
(102578, 'https://ror.org/031qgeg72', 'es', 1, 'https://ror.org/031qgeg72 Asociación Colombiana de Medicina Física y Rehabilitación'),
(102579, 'https://ror.org/031scq885', 'en', 1, 'https://ror.org/031scq885 Smithsonian Institution Archives'),
(102580, 'https://ror.org/031sd2508', 'fr', 0, 'https://ror.org/031sd2508 Ecologie et Ecophysiologie ForestiĆØres Forest Ecology and Ecophysiology'),
(102581, 'https://ror.org/031tam096', 'es', 1, 'https://ror.org/031tam096 Hospital de Especialidades de Portoviejo'),
(102582, 'https://ror.org/031v4np87', 'en', 1, 'https://ror.org/031v4np87 ADS Environmental Services, ADS Environmental Services (Malaysia)'),
(102583, 'https://ror.org/031wwwj55', 'en', 1, 'https://ror.org/031wwwj55 University of Žilina ŽilinskÔ univerzita v Žiline'),
(102584, 'https://ror.org/031xg0236', 'fr', 1, 'https://ror.org/031xg0236 Virologie et Pathologies Humaines Virology and Human Pathology'),
(102585, 'https://ror.org/031y0x195', 'en', 1, 'https://ror.org/031y0x195 Bacterial RNAs & Medicine'),
(102586, 'https://ror.org/031z8pr38', 'en', 1, 'https://ror.org/031z8pr38 Mount Holyoke College'),
(102587, 'https://ror.org/031zpdg16', 'en', 1, 'https://ror.org/031zpdg16 Minnesota Children''s Museum'),
(102588, 'https://ror.org/0320nmn30', 'en', 1, 'https://ror.org/0320nmn30 Brockenhurst College'),
(102589, 'https://ror.org/032241511', 'en', 1, 'https://ror.org/032241511 National Telecommunications and Information Administration'),
(102590, 'https://ror.org/0322sf130', 'fr', 1, 'https://ror.org/0322sf130 Institut NeuroMyoGĆØne'),
(102591, 'https://ror.org/03237mt20', 'fr', 1, 'https://ror.org/03237mt20 Espaces et SociƩtƩs'),
(102592, 'https://ror.org/0323bey33', 'fr', 1, 'https://ror.org/0323bey33 Institut LumiĆØre MatiĆØre'),
(102593, 'https://ror.org/0324fh017', 'en', 1, 'https://ror.org/0324fh017 World University of Bangladesh ą¦“ą¦Æą¦¼ą¦¾ą¦°ą§ą¦²ą§ą¦” ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(102594, 'https://ror.org/0324fzd89', 'en', 1, 'https://ror.org/0324fzd89 Nature Canada Nature Canada'),
(102595, 'https://ror.org/0325zb480', 'en', 1, 'https://ror.org/0325zb480 Institute of Paleoprimatology Human Paleontology Evolution and Paleoenvironments'),
(102596, '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'),
(102597, 'https://ror.org/0329kr519', 'en', 1, 'https://ror.org/0329kr519 New Brunswick Community College'),
(102598, 'https://ror.org/032a13752', 'en', 1, 'https://ror.org/032a13752 Smithsonian Environmental Research Center'),
(102599, 'https://ror.org/032cph770', 'en', 1, 'https://ror.org/032cph770 SGH Warsaw School of Economics Szkoła Główna Handlowa w Warszawie'),
(102600, 'https://ror.org/032ctpc91', 'no_lang_code', 1, 'https://ror.org/032ctpc91 CF Industries Holdings, CF Industries Holdings (United States)'),
(102601, 'https://ror.org/032d4f246', 'en', 1, 'https://ror.org/032d4f246 China Medical University äø­å›½åŒ»ē§‘å¤§å­¦'),
(102602, 'https://ror.org/032e6b942', 'de', 1, 'https://ror.org/032e6b942 Alfred-Wegener-Institut Helmholtz-Zentrum für Polar- und Meeresforschung'),
(102603, 'https://ror.org/032fpxa41', 'pt', 1, 'https://ror.org/032fpxa41 CTT, CTT (Portugal)'),
(102604, 'https://ror.org/032gae017', 'en', 1, 'https://ror.org/032gae017 Shanghai University of Political Science and Law äøŠęµ·ę”æę³•å­¦é™¢'),
(102605, 'https://ror.org/032h87485', 'en', 1, 'https://ror.org/032h87485 Office of Education'),
(102606, 'https://ror.org/032h9wv69', 'cs', 1, 'https://ror.org/032h9wv69 Czech Archaeological Society ČeskĆ” archeologickĆ” společnost'),
(102607, 'https://ror.org/032hq6188', 'en', 1, 'https://ror.org/032hq6188 Birkenhead Sixth Form College'),
(102608, 'https://ror.org/032hzb643', 'en', 1, 'https://ror.org/032hzb643 Center for Integrated Protein Science Munich'),
(102609, 'https://ror.org/032j53342', 'fr', 1, 'https://ror.org/032j53342 Institut Interdisciplinaire de Neuroscience Interdisciplinary Institute for NeuroScience'),
(102610, 'https://ror.org/032j97c50', 'en', 1, 'https://ror.org/032j97c50 Coleg Cambria'),
(102611, 'https://ror.org/032j9w495', 'en', 1, 'https://ror.org/032j9w495 Ministry of Technical and Higher Education'),
(102612, 'https://ror.org/032jsmy36', 'en', 1, 'https://ror.org/032jsmy36 Nippon Life Insurance Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿå‘½č²”å›£'),
(102613, 'https://ror.org/032k75171', 'en', 1, 'https://ror.org/032k75171 Carnot Institute Qualiment Institut Carnot Qualiment'),
(102614, 'https://ror.org/032kzxf45', 'en', 1, 'https://ror.org/032kzxf45 Vanguard, Vanguard (United States)'),
(102615, 'https://ror.org/032m0qa86', 'en', 1, 'https://ror.org/032m0qa86 Louisiana Endowment for the Humanities'),
(102616, 'https://ror.org/032mytt31', 'en', 1, 'https://ror.org/032mytt31 Firstenergy, Firstenergy (United States)'),
(102617, 'https://ror.org/032q95r88', 'fr', 1, 'https://ror.org/032q95r88 Laboratoire de Recherche Vasculaire Translationnelle Laboratory for Vascular Translational Science'),
(102618, 'https://ror.org/032qezt74', 'fr', 1, 'https://ror.org/032qezt74 Institut de Recherche pour le DƩveloppement'),
(102619, 'https://ror.org/032ry8695', 'ca', 1, 'https://ror.org/032ry8695 Instituto del Conurbano'),
(102620, 'https://ror.org/032tp8450', 'en', 1, 'https://ror.org/032tp8450 Alfalah University Alfalah universiteti الفلاح Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(102621, 'https://ror.org/032twef21', 'en', 1, 'https://ror.org/032twef21 National Institute of Technology Delhi ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(102622, 'https://ror.org/032v67m28', 'fr', 1, 'https://ror.org/032v67m28 UMR TransfrontaliĆØre BioEcoAgro'),
(102623, 'https://ror.org/0331qyx19', 'fr', 1, 'https://ror.org/0331qyx19 Institut FranƧais d''Ɖtudes Anatoliennes'),
(102624, 'https://ror.org/0331z5r71', 'en', 1, 'https://ror.org/0331z5r71 Zhejiang Shuren University'),
(102625, 'https://ror.org/033200e31', 'no_lang_code', 0, 'https://ror.org/033200e31 Gryphon Scientific (United States)'),
(102626, 'https://ror.org/0333vk137', 'en', 1, 'https://ror.org/0333vk137 Minehead Community Hospital'),
(102627, 'https://ror.org/0336f3190', 'es', 1, 'https://ror.org/0336f3190 Tecnológico Nacional de México Campus Cancún'),
(102628, 'https://ror.org/0338wkj94', 'fr', 1, 'https://ror.org/0338wkj94 HƓpital Sainte-Marguerite'),
(102629, 'https://ror.org/0339jw085', 'fr', 1, 'https://ror.org/0339jw085'),
(102630, 'https://ror.org/033c46s90', 'fr', 0, 'https://ror.org/033c46s90 European University of Brittany UniversitƩ EuropƩenne de Bretagne'),
(102631, 'https://ror.org/033eqsk67', 'fr', 1, 'https://ror.org/033eqsk67 Sciences, Normes, DƩmocratie'),
(102632, 'https://ror.org/033f7da12', 'en', 1, 'https://ror.org/033f7da12 Dayananda Sagar University'),
(102633, 'https://ror.org/033jvzr14', 'en', 1, 'https://ror.org/033jvzr14 University of Ruhuna ą®‰ą®±ąÆą®•ąÆą®£ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ රුහුණ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗą¶ŗ'),
(102634, 'https://ror.org/033rh4q91', 'en', 1, 'https://ror.org/033rh4q91 East Asia Institute of Management'),
(102635, 'https://ror.org/033v1zn65', 'fr', 1, 'https://ror.org/033v1zn65 Laboratoire interdisciplinaire RƩcits Cultures et SociƩtƩs'),
(102636, 'https://ror.org/033vfbz75', 'en', 1, 'https://ror.org/033vfbz75 MƤlardalen University MƤlardalens hƶgskola MƤlarinlaakson korkeakoulu'),
(102637, 'https://ror.org/033vjfk17', 'en', 1, 'https://ror.org/033vjfk17 Wuhan University 武汉大学'),
(102638, 'https://ror.org/033wcvv61', 'en', 1, 'https://ror.org/033wcvv61 Vancouver Island University'),
(102639, 'https://ror.org/033wn8m60', 'en', 1, 'https://ror.org/033wn8m60 Institute for Systems Engineering and Computers Instituto de Engenharia de Sistemas e Computadores'),
(102640, 'https://ror.org/033wpf256', 'en', 1, 'https://ror.org/033wpf256 Akademia Leona KoÅŗmińskiego Kozminski University'),
(102641, 'https://ror.org/033wstj18', 'pt', 1, 'https://ror.org/033wstj18 Ordem dos Economistas'),
(102642, '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'),
(102643, 'https://ror.org/033xefj97', 'en', 1, 'https://ror.org/033xefj97 Centre Interdisciplinaire pour la santƩ des Noir Interdisciplinary Centre for Black Health'),
(102644, 'https://ror.org/033xr5946', 'es', 1, 'https://ror.org/033xr5946 Tecnológico Nacional de México Campus Ciudad Valles'),
(102645, 'https://ror.org/033z08192', 'en', 1, 'https://ror.org/033z08192 Central University of Technology'),
(102646, '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.'),
(102647, 'https://ror.org/033zmj163', 'en', 1, 'https://ror.org/033zmj163 SUNY Plattsburgh'),
(102648, 'https://ror.org/03403zv90', 'en', 1, 'https://ror.org/03403zv90 Molson Coors Brewing Company, Molson Coors Brewing Company (United States)'),
(102649, 'https://ror.org/034278w09', 'en', 1, 'https://ror.org/034278w09 Borders College'),
(102650, 'https://ror.org/0343fpq57', 'fr', 1, 'https://ror.org/0343fpq57 Chimie, Structures et PropriƩtƩs de BiomatƩriaux et d''Agents ThƩrapeutiques'),
(102651, 'https://ror.org/0343q4c37', 'fr', 1, 'https://ror.org/0343q4c37 Institut des Sciences du Sport-SantƩ de Paris'),
(102652, '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'),
(102653, 'https://ror.org/034741m06', 'en', 0, 'https://ror.org/034741m06 Institute of Advanced Manufacturing Technology'),
(102654, 'https://ror.org/0348f9w08', 'en', 1, 'https://ror.org/0348f9w08 Wuhan Technology and Business University'),
(102655, 'https://ror.org/0348v8v06', 'en', 1, 'https://ror.org/0348v8v06 Deepglint, Deepglint (China) åŒ—äŗ¬ę ¼ēµę·±ēž³äæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(102656, 'https://ror.org/0349hba85', 'it', 1, 'https://ror.org/0349hba85 Maria Luigia Hospital Ospedale Maria Luigia'),
(102657, 'https://ror.org/0349y2q65', 'fr', 1, 'https://ror.org/0349y2q65 Escòla Superiora de ComĆØrci de Tolosa Toulouse Business School Ɖcole SupĆ©rieure de Commerce de Toulouse'),
(102658, 'https://ror.org/034a4bk84', 'fr', 1, 'https://ror.org/034a4bk84 Laboratoire de Physique des deux infinis Bordeaux'),
(102659, 'https://ror.org/034akh239', 'en', 1, 'https://ror.org/034akh239 Stem Cell Technology Research Center'),
(102660, 'https://ror.org/034fj3b42', 'en', 1, 'https://ror.org/034fj3b42 Los Altos History Museum'),
(102661, 'https://ror.org/034gh1d56', 'fr', 1, 'https://ror.org/034gh1d56 Laboratoire des Sciences de l’Information et de la Communication'),
(102662, 'https://ror.org/034gk7456', 'fr', 1, 'https://ror.org/034gk7456 Bases de donnƩes sur la BiodiversitƩ, Ecologie, Environnement et SociƩtƩs'),
(102663, 'https://ror.org/034jd0m14', 'en', 1, 'https://ror.org/034jd0m14 National Institute of Technology, Nara College å„ˆč‰Æå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(102664, 'https://ror.org/034jrey59', 'en', 1, 'https://ror.org/034jrey59 Zhenhai District Center for Disease Control and Prevention é•‡ęµ·åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(102665, 'https://ror.org/034m2b326', 'en', 1, 'https://ror.org/034m2b326 Shahid Beheshti University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų“Ł‡ŪŒŲÆ ŲØŁ‡Ų“ŲŖŪŒ'),
(102666, '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'),
(102667, 'https://ror.org/034nkkr84', 'en', 1, 'https://ror.org/034nkkr84 Robert Bosch Hospital Robert-Bosch-Krankenhaus'),
(102668, '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'),
(102669, 'https://ror.org/034rkw812', 'no_lang_code', 1, 'https://ror.org/034rkw812 BioIVT, BioIVT (United States)'),
(102670, 'https://ror.org/034t3zs45', 'en', 1, 'https://ror.org/034t3zs45 Shaanxi University of Science and Technology é™•č„æē§‘ęŠ€å¤§å­¦'),
(102671, 'https://ror.org/034td6c88', 'en', 1, 'https://ror.org/034td6c88 Leeds College of Music'),
(102672, 'https://ror.org/034wrbs29', 'en', 1, 'https://ror.org/034wrbs29 Shanghai Ecological Forecasting and Remote Sensing Center äøŠęµ·åø‚ē”Ÿę€ę°”č±”å’Œå«ę˜Ÿé„ę„Ÿäø­åæƒ'),
(102673, 'https://ror.org/034xqwd07', 'en', 1, 'https://ror.org/034xqwd07 Kano State Polytechnic'),
(102674, 'https://ror.org/034z67559', 'en', 1, 'https://ror.org/034z67559 Chengdu University'),
(102675, 'https://ror.org/034zk5h49', 'de', 0, 'https://ror.org/034zk5h49 Olga Mayenfisch Foundation Olga Mayenfisch Stiftung'),
(102676, 'https://ror.org/0353fsq42', 'en', 1, 'https://ror.org/0353fsq42 Purbanchal University ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤žą„ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(102677, 'https://ror.org/03561sz23', 'pt', 1, 'https://ror.org/03561sz23 Centro de Maricultura da Calheta'),
(102678, 'https://ror.org/035630h07', 'pt', 1, 'https://ror.org/035630h07 Universidade Save'),
(102679, 'https://ror.org/03597ek14', 'fr', 1, 'https://ror.org/03597ek14 Centre de droit privƩ fondamental'),
(102680, 'https://ror.org/03599d813', 'no_lang_code', 1, 'https://ror.org/03599d813 Ochanomizu University お茶の氓儳子大学'),
(102681, 'https://ror.org/0359qxb80', 'fr', 1, 'https://ror.org/0359qxb80 Agence Parisienne du Climat Paris Climate Agency'),
(102682, 'https://ror.org/035a68863', 'en', 1, 'https://ror.org/035a68863 Servicio Geológico de los Estados Unidos United States Geological Survey'),
(102683, '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'),
(102684, 'https://ror.org/035cy3r13', 'en', 1, 'https://ror.org/035cy3r13 Pasteur Hellenic Institute'),
(102685, 'https://ror.org/035f5f914', 'en', 1, 'https://ror.org/035f5f914 NIHR Leeds Musculoskeletal Biomedical Research Unit'),
(102686, 'https://ror.org/035fsmk47', 'fr', 1, 'https://ror.org/035fsmk47 ISG Business School Institut Superieur de Gestion'),
(102687, 'https://ror.org/035fz0s07', 'no_lang_code', 0, 'https://ror.org/035fz0s07 CH2M (United States)'),
(102688, 'https://ror.org/035gh3a49', 'en', 1, 'https://ror.org/035gh3a49 IMT School for Advanced Studies Lucca Scuola IMT Alti Studi Lucca'),
(102689, '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'),
(102690, 'https://ror.org/035h6g182', 'es', 1, 'https://ror.org/035h6g182 Center for Monetary and Financial Studies Centro de Estudios Monetarios y Financieros'),
(102691, 'https://ror.org/035hs9g56', 'en', 1, 'https://ror.org/035hs9g56 National Centre for Social research'),
(102692, 'https://ror.org/035jbxr46', 'en', 1, 'https://ror.org/035jbxr46 Smithsonian Tropical Research Institute'),
(102693, 'https://ror.org/035k4m812', 'en', 1, 'https://ror.org/035k4m812 S. M. Kirov Military Medical Academy'),
(102694, 'https://ror.org/035ky6r06', 'en', 1, 'https://ror.org/035ky6r06 Civilization University Ų¬Ų§Ł…Ų¹Ų© الحضارة'),
(102695, 'https://ror.org/035pbs233', 'fr', 1, 'https://ror.org/035pbs233 Lyon Genou Centre Albert Trillat'),
(102696, 'https://ror.org/035pqt812', 'es', 1, 'https://ror.org/035pqt812 Tecnológico de Estudios Superiores de Coacalco'),
(102697, 'https://ror.org/035psfh38', 'en', 1, 'https://ror.org/035psfh38 Donghua University äøœåŽå¤§å­¦'),
(102698, 'https://ror.org/035r10384', 'en', 1, 'https://ror.org/035r10384 MORSE, MORSE (United States)'),
(102699, 'https://ror.org/035s3f323', 'en', 1, 'https://ror.org/035s3f323 Agricultural University of Iceland LandbĆŗnaưarhĆ”skóli ƍslands'),
(102700, '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'),
(102701, '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'),
(102702, 'https://ror.org/0360zcg91', 'en', 1, 'https://ror.org/0360zcg91 Zhongyuan University of Technology äø­åŽŸå·„å­¦é™¢'),
(102703, 'https://ror.org/036266993', 'en', 1, 'https://ror.org/036266993 National Renewable Energy Laboratory'),
(102704, 'https://ror.org/03629my43', 'fr', 1, 'https://ror.org/03629my43 Centre d''Etudes en Civilisations, Langues et Littératures Etrangères'),
(102705, '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'),
(102706, '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'),
(102707, 'https://ror.org/036b2ww28', 'es', 1, 'https://ror.org/036b2ww28 Universidad de MƔlaga Universitat de MƠlaga University of Malaga'),
(102708, 'https://ror.org/036b8pc68', 'de', 1, 'https://ror.org/036b8pc68 Stiftung Alfried Krupp Kolleg Greifswald'),
(102709, 'https://ror.org/036c9yv20', 'en', 1, 'https://ror.org/036c9yv20 University of Kansas Medical Center'),
(102710, 'https://ror.org/036eg1q44', 'fr', 1, 'https://ror.org/036eg1q44 Institut de Recherche en Infectiologie de Montpellier'),
(102711, 'https://ror.org/036f5mx38', 'en', 1, 'https://ror.org/036f5mx38 Space Telescope Science Institute'),
(102712, 'https://ror.org/036ftwn63', 'en', 1, 'https://ror.org/036ftwn63 Great Lakes Observing System'),
(102713, 'https://ror.org/036h65h05', 'en', 1, 'https://ror.org/036h65h05 Hebei University of Engineering ę²³åŒ—å·„ēØ‹å¤§å­¦'),
(102714, 'https://ror.org/036je1b38', 'en', 1, 'https://ror.org/036je1b38 SeinƤjoen ammattikorkeakoulu SeinƤjoki University of Applied Sciences'),
(102715, 'https://ror.org/036kqsd10', 'es', 1, 'https://ror.org/036kqsd10 Universidad Tecnológica del Suroeste de Guanajuato'),
(102716, 'https://ror.org/036mest28', 'en', 0, 'https://ror.org/036mest28 Biology of Extremophiles Laboratory Laboratoire de Biologie Moleculaire du GĆØne chez les Extremophiles'),
(102717, 'https://ror.org/036n0x007', 'en', 1, 'https://ror.org/036n0x007 Lafayette College'),
(102718, 'https://ror.org/036pm0w06', 'en', 1, 'https://ror.org/036pm0w06 Sichuan International Studies University å››å·å¤–čÆ­å­¦é™¢'),
(102719, 'https://ror.org/036qbj650', 'fr', 1, 'https://ror.org/036qbj650 Association Histiocytose France'),
(102720, 'https://ror.org/036r78s06', 'en', 1, 'https://ror.org/036r78s06 National Institute of Social Development ą®¤ąÆ‡ą®šą®æą®Æ ą®šą®®ąÆ‚ą®• ą®…ą®Ŗą®æą®µą®æą®°ąÆą®¤ąÆą®¤ą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ ą¶¢ą·ą¶­ą·’ą¶š ą·ƒą¶øą·ą¶¢ ą·ƒą¶‚ą·€ą¶»ą·Šą¶°ą¶± ආයතනය'),
(102721, 'https://ror.org/036s2ns10', 'en', 1, 'https://ror.org/036s2ns10 L''Institut de recherche sur le cerveau uOttawa Brain and Mind Research Institute'),
(102722, 'https://ror.org/036trcv74', 'en', 1, 'https://ror.org/036trcv74 Nanjing Normal University å—äŗ¬åøˆčŒƒå¤§å­¦'),
(102723, 'https://ror.org/036tyjs84', 'fr', 1, 'https://ror.org/036tyjs84 Laboratoire de recherche en droit'),
(102724, 'https://ror.org/036w0tz95', 'fr', 1, 'https://ror.org/036w0tz95 RIATE - Centre pour l''analyse spatiale et la gƩovisualisation'),
(102725, 'https://ror.org/036w79395', 'no_lang_code', 1, 'https://ror.org/036w79395 Sekisui Kasei (Japan) Sekisui Plastics ē©ę°“åŒ–ęˆå“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(102726, 'https://ror.org/036wb4w46', 'fr', 1, 'https://ror.org/036wb4w46 CƩvennes National Park Parc national des CƩvennes'),
(102727, 'https://ror.org/036wt8y39', 'en', 1, 'https://ror.org/036wt8y39 Hudson Valley Community College'),
(102728, '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'),
(102729, 'https://ror.org/036ydxy43', 'fr', 0, 'https://ror.org/036ydxy43 Laboratoire MƩmoire et Cognition Memory and Cognition Laboratory'),
(102730, 'https://ror.org/036yvb369', 'en', 1, 'https://ror.org/036yvb369 Centre de Recherche en Managment Toulouse School of Management Research'),
(102731, 'https://ror.org/036zr1b90', 'en', 1, 'https://ror.org/036zr1b90 Institut klinickƩ a experimentƔlnƭ medicƭny Institute of Clinical and Experimental Medicine'),
(102732, 'https://ror.org/036zswm25', 'fr', 1, 'https://ror.org/036zswm25 Laboratoire des Technologies de la MicroƩlectronique'),
(102733, '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'),
(102734, 'https://ror.org/037130043', 'en', 1, 'https://ror.org/037130043 Virginia Serious Game Institute'),
(102735, 'https://ror.org/0371hm317', 'en', 1, 'https://ror.org/0371hm317 Humanities West'),
(102736, 'https://ror.org/0371yc337', 'fr', 1, 'https://ror.org/0371yc337 Laboratoire de Chimie-Physique MacromolƩculaire'),
(102737, 'https://ror.org/0373a6k33', 'en', 1, 'https://ror.org/0373a6k33 Tokyo Ariake University of Medical and Health Sciences ę±äŗ¬ęœ‰ę˜ŽåŒ»ē™‚å¤§å­¦'),
(102738, 'https://ror.org/0374j2r33', 'en', 1, 'https://ror.org/0374j2r33 AESE Business School'),
(102739, 'https://ror.org/037663q52', 'en', 1, 'https://ror.org/037663q52 Chuzhou University'),
(102740, 'https://ror.org/03787ar02', 'fr', 1, 'https://ror.org/03787ar02 Laboratoire de MĆ©canique et d’Acoustique Laboratory of Mechanics and Acoustics'),
(102741, 'https://ror.org/0379dv337', 'en', 1, 'https://ror.org/0379dv337 Datarobot, Datarobot (United States)'),
(102742, 'https://ror.org/037a0a928', 'en', 1, 'https://ror.org/037a0a928 Lancaster and Morecambe College'),
(102743, 'https://ror.org/037b1pp87', 'en', 1, 'https://ror.org/037b1pp87 Beijing University of Technology åŒ—äŗ¬å·„äøšå¤§å­¦'),
(102744, 'https://ror.org/037cnag11', 'en', 1, 'https://ror.org/037cnag11 University of Missouri–St. Louis'),
(102745, 'https://ror.org/037er0m96', 'en', 1, 'https://ror.org/037er0m96 New Jersey Council for the Humanities'),
(102746, 'https://ror.org/037f3ga09', 'fr', 1, 'https://ror.org/037f3ga09 Institut de Recherches et d''Etudes sur les Mondes Arabes et Musulmans'),
(102747, 'https://ror.org/037f6g911', 'fr', 1, 'https://ror.org/037f6g911 Universidad Tecnológica de Tecamachalco'),
(102748, 'https://ror.org/037h16f28', 'en', 1, 'https://ror.org/037h16f28 Zhejiang Institute of Subtropical Crops ęµ™ę±Ÿēœäŗšēƒ­åø¦ä½œē‰©ē ”ē©¶ę‰€'),
(102749, 'https://ror.org/037jwzz50', 'en', 1, 'https://ror.org/037jwzz50 Istanbul Medipol University'),
(102750, 'https://ror.org/037kxc307', 'en', 1, 'https://ror.org/037kxc307 Nickel Institute'),
(102751, 'https://ror.org/037p13h95', 'es', 1, 'https://ror.org/037p13h95 Universidad CES'),
(102752, 'https://ror.org/037pqnq23', 'en', 1, 'https://ror.org/037pqnq23 Korea Aerospace Research Institute ķ•œźµ­ķ•­ź³µģš°ģ£¼ģ—°źµ¬ģ›'),
(102753, 'https://ror.org/037rvh518', 'en', 1, 'https://ror.org/037rvh518 Jining University'),
(102754, 'https://ror.org/037s0tq36', 'en', 1, 'https://ror.org/037s0tq36 Centre d''Ʃtudes en politiques internationales Centre on International Policy Studies'),
(102755, 'https://ror.org/037s24f05', 'en', 1, 'https://ror.org/037s24f05 Clemson University UniversitƩ de clemson'),
(102756, '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'),
(102757, 'https://ror.org/037vdeb02', 'fr', 1, 'https://ror.org/037vdeb02 Centre Alpin sur les Réseaux Trophiques et Ecosystèmes Lacustre'),
(102758, 'https://ror.org/037vvf096', 'en', 1, 'https://ror.org/037vvf096 Karamanoğlu Mehmetbey University Karamanoğlu Mehmetbey Üniversitesi'),
(102759, 'https://ror.org/037wke960', 'en', 1, 'https://ror.org/037wke960 Foreign, Commonwealth & Development Office'),
(102760, 'https://ror.org/037wqvd92', 'en', 1, 'https://ror.org/037wqvd92 Conservatoire RƬoghail na h-Alba Royal Conservatoire of Scotland'),
(102761, 'https://ror.org/037xc1874', 'fr', 1, 'https://ror.org/037xc1874 Education, Cultures, Politiques, Ɖducation, Cultures, Politiques'),
(102762, 'https://ror.org/038207k30', 'fr', 1, 'https://ror.org/038207k30 Laboratoire GƩnome et DƩveloppement des Plantes Plant Genome and Development Laboratory'),
(102763, 'https://ror.org/03820wq39', 'fr', 1, 'https://ror.org/03820wq39 Laboratoire interdisciplinaire en Ʃtudes culturelles'),
(102764, 'https://ror.org/0382bxa43', 'en', 1, 'https://ror.org/0382bxa43 Energy Sciences Network'),
(102765, 'https://ror.org/038483r84', 'no_lang_code', 1, 'https://ror.org/038483r84 Eni (Italy)'),
(102766, 'https://ror.org/0387aje64', 'en', 1, 'https://ror.org/0387aje64 Nanjing University of Science and Technology ZiJin College å—äŗ¬ē†å·„å¤§å­¦ē“«é‡‘å­¦é™¢'),
(102767, 'https://ror.org/0387w4y93', 'fr', 1, 'https://ror.org/0387w4y93 Childhood genetic diseases laboratory Maladies gĆ©nĆ©tiques d’expression pĆ©diatrique'),
(102768, 'https://ror.org/0389fzc60', 'fr', 1, 'https://ror.org/0389fzc60 Centre interdisciplinaire de recherche "Culture, Ʃducation, formation, travail"'),
(102769, 'https://ror.org/038dc7m35', 'no_lang_code', 1, 'https://ror.org/038dc7m35 CSX, CSX (United States)'),
(102770, 'https://ror.org/038hqgh39', 'en', 1, 'https://ror.org/038hqgh39 University of Belgrade – Faculty of Philology Univerzitet u Beogradu – FiloloÅ”ki fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Филолошки Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(102771, 'https://ror.org/038hzq450', 'en', 1, 'https://ror.org/038hzq450 Xinxiang Medical University ę–°ä¹”åŒ»å­¦é™¢'),
(102772, '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'),
(102773, 'https://ror.org/038kffh84', 'en', 1, 'https://ror.org/038kffh84 Hellenic Centre for Marine Research'),
(102774, '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'),
(102775, 'https://ror.org/038n4rj40', 'en', 1, 'https://ror.org/038n4rj40 Kirklees College'),
(102776, 'https://ror.org/038pb1155', 'en', 1, 'https://ror.org/038pb1155 Erzurum Technical University Erzurum Teknik Üniversitesi'),
(102777, 'https://ror.org/038qac964', 'en', 1, 'https://ror.org/038qac964 SRKR Engineering College'),
(102778, 'https://ror.org/038sy2k93', 'fr', 1, 'https://ror.org/038sy2k93 Laboratoire GƩnie et MatƩriaux Textiles'),
(102779, 'https://ror.org/038x25e13', 'en', 1, 'https://ror.org/038x25e13 Florida Global University Universidad Global de Florida'),
(102780, 'https://ror.org/038xg1y21', 'en', 1, 'https://ror.org/038xg1y21 Global Research Institute of Paris'),
(102781, 'https://ror.org/038zhf168', 'en', 1, 'https://ror.org/038zhf168 SMA Trust'),
(102782, 'https://ror.org/03949e763', 'en', 1, 'https://ror.org/03949e763 Integrated Structural Biology Grenoble'),
(102783, 'https://ror.org/0394www40', 'fr', 1, 'https://ror.org/0394www40 UMR Ressources'),
(102784, 'https://ror.org/0394yh759', 'en', 1, 'https://ror.org/0394yh759 Liaoning Academy of Materials'),
(102785, 'https://ror.org/03964fn67', 'en', 1, 'https://ror.org/03964fn67 Manipur University ą¤®ą¤£ą¤æą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(102786, 'https://ror.org/0396cd675', 'en', 1, 'https://ror.org/0396cd675 Mardin Artuklu University Mardin Artuklu Üniversitesi'),
(102787, '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'),
(102788, 'https://ror.org/039965637', 'en', 1, 'https://ror.org/039965637 University of Pavol Jozef ŠafÔrik Univerzita Pavla Jozefa ŠafÔrika v KoŔiciach'),
(102789, 'https://ror.org/039a2re55', 'en', 1, 'https://ror.org/039a2re55 Fachhochschule St. Pƶlten St. Pƶlten University of Applied Sciences'),
(102790, '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)'),
(102791, 'https://ror.org/039aqbp11', 'fr', 1, 'https://ror.org/039aqbp11 Laboratoire GƩnie de Production'),
(102792, 'https://ror.org/039bex249', 'fr', 1, 'https://ror.org/039bex249 Centre d''Ʃtudes sud-asiatiques et himalayennes'),
(102793, 'https://ror.org/039bhhz46', 'en', 1, 'https://ror.org/039bhhz46 Anahuac University Network Red de Universidades AnƔhuac'),
(102794, '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'),
(102795, 'https://ror.org/039c2j878', 'fr', 1, 'https://ror.org/039c2j878 HƓpital d''instruction des ArmƩes Percy Percy Training Hospital of the Armies'),
(102796, 'https://ror.org/039c93x30', 'en', 0, 'https://ror.org/039c93x30 Bureau of Public Roads'),
(102797, 'https://ror.org/039ce0m20', 'en', 1, 'https://ror.org/039ce0m20 Hellenic Mediterranean University Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪšĻĪ®Ļ„Ī·Ļ‚'),
(102798, 'https://ror.org/039da5s33', 'en', 1, 'https://ror.org/039da5s33 The Sixth Form College Colchester'),
(102799, 'https://ror.org/039epzh36', 'it', 1, 'https://ror.org/039epzh36 Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Cosenza'),
(102800, 'https://ror.org/039fj2469', 'fr', 1, 'https://ror.org/039fj2469 Observatoire de la CĆ“te d’Azur, Observatoire de la cĆ“te d''azur'),
(102801, 'https://ror.org/039hp5d87', 'en', 1, 'https://ror.org/039hp5d87 CINEC Campus (Pvt) Ltd.'),
(102802, 'https://ror.org/039j4x695', 'fr', 1, 'https://ror.org/039j4x695 Laboratoire Biosciences et bioingƩnierie pour la SantƩ'),
(102803, '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'),
(102804, 'https://ror.org/039m95m06', 'en', 1, 'https://ror.org/039m95m06 Hubei University of Automotive Technology ę¹–åŒ—ę±½č½¦å·„äøšå­¦é™¢'),
(102805, 'https://ror.org/039nazg33', 'en', 0, 'https://ror.org/039nazg33 Institute of Entomology'),
(102806, 'https://ror.org/039ptg826', 'en', 1, 'https://ror.org/039ptg826 Atebubu College of Education'),
(102807, 'https://ror.org/039spa369', 'es', 1, 'https://ror.org/039spa369 Universidad Tecnológica Fidel VelÔzquez'),
(102808, 'https://ror.org/039t4wk02', 'en', 1, 'https://ror.org/039t4wk02 Forschungszentrum L3S L3S Research Center'),
(102809, 'https://ror.org/039wwwz66', 'en', 1, 'https://ror.org/039wwwz66 Banner Health'),
(102810, 'https://ror.org/039xnh269', 'en', 1, 'https://ror.org/039xnh269 Yanbian University 延边大学'),
(102811, 'https://ror.org/039yjh421', 'de', 1, 'https://ror.org/039yjh421 Deutsch-Franzƶsisches Institut'),
(102812, 'https://ror.org/039zedc16', 'en', 1, 'https://ror.org/039zedc16 St George’s University Hospitals NHS Foundation Trust'),
(102813, 'https://ror.org/03a0px669', 'en', 1, 'https://ror.org/03a0px669 Northeast Brooklyn Housing Development Corporation'),
(102814, 'https://ror.org/03a1crh56', 'en', 1, 'https://ror.org/03a1crh56 Afyon Kocatepe University Afyon Kocatepe Üniversitesi'),
(102815, 'https://ror.org/03a1kt624', 'es', 1, 'https://ror.org/03a1kt624 Universidad de Huelva University of Huelva'),
(102816, 'https://ror.org/03a1kwz48', 'en', 1, 'https://ror.org/03a1kwz48 Eberhard Karls Universität Tübingen University of Tübingen'),
(102817, 'https://ror.org/03a26mh11', 'fr', 1, 'https://ror.org/03a26mh11 LPENS Laboratory Laboratoire de Physique de l''ENS'),
(102818, 'https://ror.org/03a4sp974', 'no_lang_code', 0, 'https://ror.org/03a4sp974 NFDI4Microbiota Nationale Forschungsdateninfrastruktur für Mikrobiota-Forschung'),
(102819, 'https://ror.org/03a5qrr21', 'en', 1, 'https://ror.org/03a5qrr21 Istanbul University İstanbul Üniversitesi'),
(102820, 'https://ror.org/03a77cf20', 'en', 1, 'https://ror.org/03a77cf20 Fasa University'),
(102821, 'https://ror.org/03a96gc12', 'de', 1, 'https://ror.org/03a96gc12 ZBW – Leibniz-Informationszentrum Wirtschaft'),
(102822, 'https://ror.org/03aaxgs84', 'en', 1, 'https://ror.org/03aaxgs84 Cebu Normal University Pamantasang Normal ng Cebu'),
(102823, 'https://ror.org/03ab0zs98', 'fr', 1, 'https://ror.org/03ab0zs98 Laboratoire de MathƩmatiques d''Orsay Mathematics Laboratory of Orsay'),
(102824, 'https://ror.org/03ab8zv57', 'en', 1, 'https://ror.org/03ab8zv57 International Centre for Mathematical Sciences'),
(102825, 'https://ror.org/03adqg323', 'fr', 1, 'https://ror.org/03adqg323 Laboratoire Bordelais de Recherche en Informatique'),
(102826, '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'),
(102827, 'https://ror.org/03aes0d95', 'fr', 0, 'https://ror.org/03aes0d95 Centre Intégré de Santé et Services Sociaux de Chaudière-Appalache'),
(102828, 'https://ror.org/03affdz79', 'fr', 1, 'https://ror.org/03affdz79 French National School for the Judiciary Ɖcole Nationale de la Magistrature'),
(102829, 'https://ror.org/03afwf105', 'en', 1, 'https://ror.org/03afwf105 Alaska Humanities Forum'),
(102830, 'https://ror.org/03ahaae75', 'en', 1, 'https://ror.org/03ahaae75 PLA Rocket Force Research Institute 中国人民解放军火箭军研究院'),
(102831, 'https://ror.org/03ahebw65', 'en', 1, 'https://ror.org/03ahebw65 Rabindra University ą¦°ą¦¬ą§€ą¦Øą§ą¦¦ą§ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(102832, 'https://ror.org/03ajenk59', 'en', 1, 'https://ror.org/03ajenk59 Kingston Maurward College'),
(102833, 'https://ror.org/03am1eg44', 'en', 0, 'https://ror.org/03am1eg44 NHS Digital'),
(102834, 'https://ror.org/03am7sg53', 'fr', 1, 'https://ror.org/03am7sg53 National Fund for Health Insurance l''Assurance Maladie'),
(102835, 'https://ror.org/03atqv648', 'fr', 1, 'https://ror.org/03atqv648 Physique et Physiologie IntƩgratives de l''Arbre en Environnement Fluctuant'),
(102836, 'https://ror.org/03aw0bz08', 'en', 1, 'https://ror.org/03aw0bz08 Asian University of Bangladesh ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(102837, 'https://ror.org/03awzbc87', 'en', 1, 'https://ror.org/03awzbc87 Northeastern University äøœåŒ—å¤§å­¦'),
(102838, 'https://ror.org/03aydme10', 'it', 1, 'https://ror.org/03aydme10 Scuola Normale Superiore'),
(102839, 'https://ror.org/03az1t892', 'en', 1, 'https://ror.org/03az1t892 Qinghai Normal University é’ęµ·åøˆčŒƒå¤§å­¦'),
(102840, 'https://ror.org/03b0ygs43', 'en', 1, 'https://ror.org/03b0ygs43 National Air and Space Museum'),
(102841, 'https://ror.org/03b8cwr11', 'en', 1, 'https://ror.org/03b8cwr11 Hilton Worldwide Holdings, Hilton Worldwide Holdings (United States)'),
(102842, 'https://ror.org/03bb0ht63', 'fr', 1, 'https://ror.org/03bb0ht63 Association Futuribles International Futuribles International'),
(102843, 'https://ror.org/03bbjky47', 'fr', 1, 'https://ror.org/03bbjky47 Laboratoire CarMeN'),
(102844, 'https://ror.org/03bcdsr62', 'fr', 1, 'https://ror.org/03bcdsr62 Soils, Solids, Structures, Risks Sols, Solides, Structures, Risques'),
(102845, 'https://ror.org/03bcyhr16', 'fr', 1, 'https://ror.org/03bcyhr16 Irasia Recherche'),
(102846, 'https://ror.org/03bdt1p29', 'de', 1, 'https://ror.org/03bdt1p29 City of Basel Music Academy Musik Akademie Basel'),
(102847, 'https://ror.org/03be9n013', 'en', 1, 'https://ror.org/03be9n013 University of the South Pacific - Samoa Campus'),
(102848, 'https://ror.org/03bey6t10', 'en', 1, 'https://ror.org/03bey6t10 Cooper Hewitt, Smithsonian Design Museum');
INSERT INTO `rors` VALUES
(102849, 'https://ror.org/03bfqnx40', 'en', 1, 'https://ror.org/03bfqnx40 Democritus University of Thrace UniversitĆ© dĆ©mocrite de thrace Δημοκρίτειο Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī˜ĻĪ¬ĪŗĪ·Ļ‚'),
(102850, 'https://ror.org/03bh37h15', 'pt', 1, 'https://ror.org/03bh37h15 Sociedade Portuguesa para o Estudo das Aves'),
(102851, 'https://ror.org/03bhwn395', 'pt', 1, 'https://ror.org/03bhwn395 Ministério Público'),
(102852, 'https://ror.org/03bj0v820', 'fr', 1, 'https://ror.org/03bj0v820 Centre de Recherche sur la Langue et les Textes Basques'),
(102853, 'https://ror.org/03bkshf67', 'en', 1, 'https://ror.org/03bkshf67 Florida Humanities Council'),
(102854, 'https://ror.org/03bmwyk24', 'es', 1, 'https://ror.org/03bmwyk24 Tecnológico Nacional de México de Ciudad Jiménez'),
(102855, 'https://ror.org/03bnma344', 'fr', 1, 'https://ror.org/03bnma344 Institut de Biologie Valrose Institute of Biology Valrose'),
(102856, '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.'),
(102857, 'https://ror.org/03bqmcz70', 'en', 1, 'https://ror.org/03bqmcz70 Jagiellonian University Uniwersytet Jagielloński'),
(102858, 'https://ror.org/03bqnjp38', 'en', 1, 'https://ror.org/03bqnjp38 Guangzhou Huali College å¹æå·žåŽē«‹å­¦é™¢'),
(102859, 'https://ror.org/03br1wy20', 'fr', 1, 'https://ror.org/03br1wy20 Institut Fresnel'),
(102860, 'https://ror.org/03btvgn05', 'fr', 0, 'https://ror.org/03btvgn05 University of Lille Nord de France UniversitƩ Lille Nord de France'),
(102861, 'https://ror.org/03c0nx407', 'fr', 1, 'https://ror.org/03c0nx407 Institut de Chimie MolƩculaire de Reims Institute of Molecular Chemistry Reims'),
(102862, 'https://ror.org/03c10r560', 'en', 1, 'https://ror.org/03c10r560 Humanities Nebraska'),
(102863, 'https://ror.org/03c1m7989', 'no_lang_code', 1, 'https://ror.org/03c1m7989 Coupang, Coupang (South Korea)'),
(102864, 'https://ror.org/03c363p94', 'fr', 1, 'https://ror.org/03c363p94 Mondes germaniques et nord-europƩens'),
(102865, 'https://ror.org/03c36x865', 'en', 1, 'https://ror.org/03c36x865 Oregon Institute of Technology'),
(102866, 'https://ror.org/03c3m6m66', 'en', 1, 'https://ror.org/03c3m6m66 Lille Inflammation Research International Center'),
(102867, 'https://ror.org/03c3r2d17', 'en', 1, 'https://ror.org/03c3r2d17 Center for Astrophysics Harvard & Smithsonian'),
(102868, 'https://ror.org/03c3y8w73', 'pt', 1, 'https://ror.org/03c3y8w73 Escola Superior de Enfermagem de Coimbra Nursing School of Coimbra'),
(102869, 'https://ror.org/03c4rpa03', 'fr', 1, 'https://ror.org/03c4rpa03 Interactions Arbres-Microorganismes'),
(102870, 'https://ror.org/03c59nw07', 'en', 1, 'https://ror.org/03c59nw07 Institute of Physics'),
(102871, 'https://ror.org/03c7zyj82', 'fr', 1, 'https://ror.org/03c7zyj82 Sciences Po Grenoble'),
(102872, 'https://ror.org/03cbxvt13', 'fr', 1, 'https://ror.org/03cbxvt13 Centre d’Études et de Recherches Interdisciplinaires en Lettres, Arts et CinĆ©ma'),
(102873, 'https://ror.org/03cccec37', 'fr', 1, 'https://ror.org/03cccec37 Transversales'),
(102874, 'https://ror.org/03ccs9d57', 'en', 1, 'https://ror.org/03ccs9d57 Wisconsin Humanities Council'),
(102875, 'https://ror.org/03cfem402', 'fr', 1, 'https://ror.org/03cfem402 Laboratoire des MultimatƩriaux et Interfaces'),
(102876, 'https://ror.org/03cfsyg37', 'en', 1, 'https://ror.org/03cfsyg37 Hogeschool Inholland Inholland University of Applied Sciences'),
(102877, 'https://ror.org/03cg93958', 'es', 1, 'https://ror.org/03cg93958 Instituto de Assistência Médica ao Servidor Público Estadual'),
(102878, 'https://ror.org/03cjqqq10', 'fr', 1, 'https://ror.org/03cjqqq10 Institut Clinique de la Souris Mouse Clinical Institute'),
(102879, 'https://ror.org/03cjyj977', 'fr', 1, 'https://ror.org/03cjyj977 Chemistry for Life Sciences Chimie Biologique pour le Vivant'),
(102880, 'https://ror.org/03cmntr54', 'es', 1, 'https://ror.org/03cmntr54 Institut AstrofĆ­sic de les Illes CanĆ ries Instituto de AstrofĆ­sica de Canarias'),
(102881, 'https://ror.org/03cnttr74', 'fr', 1, 'https://ror.org/03cnttr74 BiomatƩriaux et Inflammation en Site Osseux'),
(102882, 'https://ror.org/03cs09e53', 'fr', 1, 'https://ror.org/03cs09e53 Conflits, reprƩsentations et dialogues dans l''univers anglo-saxon'),
(102883, 'https://ror.org/03csmp942', 'en', 1, 'https://ror.org/03csmp942 National Institute of Advanced Manufacturing Technology ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤‰ą¤Øą„ą¤Øą¤¤ ą¤µą¤æą¤Øą¤æą¤°ą„ą¤®ą¤¾ą¤£ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(102884, 'https://ror.org/03cv31q28', 'fr', 1, 'https://ror.org/03cv31q28 Centre d''Etudes SupƩrieures de la Renaissance'),
(102885, 'https://ror.org/03cvv1m29', 'es', 1, 'https://ror.org/03cvv1m29 Fundación Universitaria María Cano'),
(102886, 'https://ror.org/03cwzta72', 'fr', 1, 'https://ror.org/03cwzta72 Direction des Ʃnergies'),
(102887, 'https://ror.org/03cxgcr75', 'fr', 1, 'https://ror.org/03cxgcr75 Etude longitudinale franƧaise depuis l''enfance'),
(102888, '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'),
(102889, 'https://ror.org/03cz5gw17', 'pt', 1, 'https://ror.org/03cz5gw17 Sociedade Brasileira de Urologia'),
(102890, 'https://ror.org/03czfpz43', 'en', 1, 'https://ror.org/03czfpz43 Emory University'),
(102891, 'https://ror.org/03d087w61', 'en', 1, 'https://ror.org/03d087w61 Department of National Trade Measurement and Standards'),
(102892, 'https://ror.org/03d0b5142', 'fr', 1, 'https://ror.org/03d0b5142 Education, Discours et Apprentissages'),
(102893, 'https://ror.org/03d0rdy88', 'fr', 1, 'https://ror.org/03d0rdy88 Microbiologie Environnement Digestif SantƩ'),
(102894, 'https://ror.org/03d1jma17', 'fr', 1, 'https://ror.org/03d1jma17 Biologie Fonctionnelle Insectes et Interactions'),
(102895, 'https://ror.org/03d1maw17', 'en', 1, 'https://ror.org/03d1maw17 University of Namur UniversitƩ de Namur'),
(102896, 'https://ror.org/03d28dw78', 'fr', 1, 'https://ror.org/03d28dw78 Biomolecular Engineering Laboratory, Laboratory of Biomolecules Engineering Laboratoire d''IngƩnierie des BiomolƩcules'),
(102897, 'https://ror.org/03d4ecn10', 'en', 1, 'https://ror.org/03d4ecn10 Naval Surface Warfare Center'),
(102898, 'https://ror.org/03d78qr79', 'en', 1, 'https://ror.org/03d78qr79 University of Minnesota Libraries Publishing'),
(102899, 'https://ror.org/03d7ypa48', 'fr', 1, 'https://ror.org/03d7ypa48 Laboratoire Polytech''Lab'),
(102900, 'https://ror.org/03d9rgw98', 'en', 1, 'https://ror.org/03d9rgw98 Molina Healthcare, Molina Healthcare (United States)'),
(102901, 'https://ror.org/03d9xwp94', 'en', 1, 'https://ror.org/03d9xwp94 Cambridge Regional College'),
(102902, 'https://ror.org/03dbpdh75', 'en', 1, 'https://ror.org/03dbpdh75 Shenyang University of Chemical Technology ę²ˆé˜³åŒ–å·„å¤§å­¦'),
(102903, 'https://ror.org/03dbr7087', 'en', 1, 'https://ror.org/03dbr7087 University of Toronto UniversitƩ de Toronto'),
(102904, 'https://ror.org/03dbsav41', 'fr', 1, 'https://ror.org/03dbsav41 Epigenetics and Cell Fate EpigƩnƩtique et Destin Cellulaire'),
(102905, 'https://ror.org/03dcxwy38', 'en', 1, 'https://ror.org/03dcxwy38 Taiwan Space Agency åœ‹å®¶å¤Ŗē©ŗäø­åæƒ'),
(102906, 'https://ror.org/03dd7qj98', 'en', 1, 'https://ror.org/03dd7qj98 Wenzhou University of Technology'),
(102907, 'https://ror.org/03dedp688', 'en', 1, 'https://ror.org/03dedp688 S P Jain School of Global Management'),
(102908, 'https://ror.org/03dfh0s94', 'pt', 1, 'https://ror.org/03dfh0s94 Instituto Superior de Estudos Interculturais e Transdisciplinares de Viseu'),
(102909, 'https://ror.org/03dfz9238', 'pl', 1, 'https://ror.org/03dfz9238 Akademii Nauk Stosowanych im. Józefa Gołuchowskiego'),
(102910, 'https://ror.org/03dgaqz26', 'en', 1, 'https://ror.org/03dgaqz26 Chongqing University of Posts and Telecommunications é‡åŗ†é‚®ē”µå¤§å­¦'),
(102911, 'https://ror.org/03dgrff29', 'es', 1, 'https://ror.org/03dgrff29 Instituto Tecnológico Superior de Loreto'),
(102912, 'https://ror.org/03dgybn05', 'no_lang_code', 0, 'https://ror.org/03dgybn05 ElektronickÔ Zdravotní Knížka Izip (Czechia)'),
(102913, 'https://ror.org/03dp8bn13', 'en', 1, 'https://ror.org/03dp8bn13 Kingsbrook Jewish Medical Center'),
(102914, 'https://ror.org/03dtap658', 'es', 1, 'https://ror.org/03dtap658 Sociedad Colombiana de Cirugƭa OrtopƩdica y Traumatologƭa'),
(102915, 'https://ror.org/03dtf6g75', 'en', 1, 'https://ror.org/03dtf6g75 Salish Kootenai College'),
(102916, 'https://ror.org/03dw0bd08', 'en', 1, 'https://ror.org/03dw0bd08 Institute of Women Social Workers'),
(102917, 'https://ror.org/03dzc0485', 'en', 1, 'https://ror.org/03dzc0485 University of Regina UniversitƩ de regina'),
(102918, 'https://ror.org/03e044190', 'fr', 1, 'https://ror.org/03e044190 Spintronique et Technologie des Composants'),
(102919, 'https://ror.org/03e04sg66', 'fr', 1, 'https://ror.org/03e04sg66 ƉpidĆ©miologie des maladies Animales et zoonotiques'),
(102920, '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'),
(102921, 'https://ror.org/03e21z229', 'en', 1, 'https://ror.org/03e21z229 Max Planck Computing and Data Facility Rechenzentrum Garching der Max-Planck-Gesellschaft'),
(102922, 'https://ror.org/03e26wv14', 'en', 1, 'https://ror.org/03e26wv14 California State University, Sacramento Universidad Estatal de Sacramento UniversitĆ© d''Ɖtat de californie Ć  sacramento'),
(102923, 'https://ror.org/03e2syc87', 'fr', 1, 'https://ror.org/03e2syc87 Maison Asie Pacifique'),
(102924, 'https://ror.org/03e4tg734', 'fr', 1, 'https://ror.org/03e4tg734 Laboratoire de Microbiologie Fondamentale et PathogƩnicitƩ'),
(102925, 'https://ror.org/03e5mzp60', 'en', 1, 'https://ror.org/03e5mzp60 University of West London'),
(102926, 'https://ror.org/03e835785', 'fr', 1, 'https://ror.org/03e835785 Centre de Recherches et d''Etudes Administratives de Montpellier'),
(102927, 'https://ror.org/03e8rf594', 'fr', 1, 'https://ror.org/03e8rf594 IMT Mines AlĆØs'),
(102928, 'https://ror.org/03ee15h24', 'pt', 1, 'https://ror.org/03ee15h24 Almedina Group Grupo Almedina'),
(102929, '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'),
(102930, 'https://ror.org/03efmyj29', 'en', 1, 'https://ror.org/03efmyj29 Jiangxi University of Finance and Economics ę±Ÿč„æč“¢ē»å¤§å­¦'),
(102931, 'https://ror.org/03efxn362', 'es', 1, 'https://ror.org/03efxn362 Universidad Veracruzana University of Veracruz'),
(102932, 'https://ror.org/03egfjv78', 'fr', 1, 'https://ror.org/03egfjv78 France Parkinson'),
(102933, 'https://ror.org/03ejnre35', 'tr', 1, 'https://ror.org/03ejnre35 Niğde Ɩmer Halisdemir Ɯniversitesi, Niğde Ɯniversitesi'),
(102934, 'https://ror.org/03embeq77', 'en', 1, 'https://ror.org/03embeq77 Mohawk College'),
(102935, 'https://ror.org/03emnsk32', 'pt', 1, 'https://ror.org/03emnsk32 Institute of Earth Sciences Instituto de CiĆŖncias da Terra'),
(102936, 'https://ror.org/03eq8fa86', 'fr', 1, 'https://ror.org/03eq8fa86 UnitƩ de Recherche Pluridisciplinaire Sport, SantƩ, SociƩtƩ'),
(102937, 'https://ror.org/03eqd4a41', 'en', 1, 'https://ror.org/03eqd4a41 National Institute of Chemical Physics and Biophysics'),
(102938, 'https://ror.org/03eqyg336', 'en', 1, 'https://ror.org/03eqyg336 Great Lakes Institute for Environmental Research'),
(102939, 'https://ror.org/03er55z68', 'fr', 1, 'https://ror.org/03er55z68 Haute Ɖcole Charlemagne'),
(102940, 'https://ror.org/03esxxd95', 'en', 1, 'https://ror.org/03esxxd95 Institute of Chartered Accountants of Nigeria'),
(102941, 'https://ror.org/03et85d35', 'en', 1, 'https://ror.org/03et85d35 Ningbo University 宁波大学'),
(102942, 'https://ror.org/03evbwn87', 'fr', 1, 'https://ror.org/03evbwn87 Centre Hospitalier RƩgional Universitaire de Brest'),
(102943, 'https://ror.org/03ew9k907', 'en', 1, 'https://ror.org/03ew9k907 New Mexico Humanities Council'),
(102944, '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'),
(102945, 'https://ror.org/03exnf371', 'en', 1, 'https://ror.org/03exnf371 Smithsonian Center for Folklife and Cultural Heritage'),
(102946, 'https://ror.org/03f0sw771', 'en', 1, 'https://ror.org/03f0sw771 PRX Research'),
(102947, 'https://ror.org/03f4gsr42', 'en', 1, 'https://ror.org/03f4gsr42 Alliance University'),
(102948, 'https://ror.org/03f658435', 'en', 1, 'https://ror.org/03f658435 Union Pacific, Union Pacific (United States)'),
(102949, 'https://ror.org/03f6h9044', 'en', 1, 'https://ror.org/03f6h9044 Camilo JosƩ Cela University Universidad Camilo JosƩ Cela'),
(102950, 'https://ror.org/03f6sdf65', 'en', 0, 'https://ror.org/03f6sdf65 PUNCH4NFDI'),
(102951, 'https://ror.org/03f90br77', 'en', 1, 'https://ror.org/03f90br77 Mashreq University Ų¬Ų§Ł…Ų¹Ų© المؓرق'),
(102952, 'https://ror.org/03fbhw139', 'pt', 1, 'https://ror.org/03fbhw139 Associação Para as Ciências do Mar'),
(102953, 'https://ror.org/03fbwjm33', 'en', 0, 'https://ror.org/03fbwjm33 Cancer Research Center'),
(102954, 'https://ror.org/03fd77x13', 'fr', 1, 'https://ror.org/03fd77x13 Institut National de Physique NuclƩaire et de Physique des Particules'),
(102955, 'https://ror.org/03fdnmv92', 'fr', 1, 'https://ror.org/03fdnmv92 HƓpital Bichat-Claude-Bernard'),
(102956, 'https://ror.org/03fgx6868', 'en', 1, 'https://ror.org/03fgx6868 Ollscoil TeicneolaĆ­ochta and Oirdheiscirt South East Technological University'),
(102957, 'https://ror.org/03fkrcm40', 'fr', 1, 'https://ror.org/03fkrcm40 Centre Occitanie-Montpellier'),
(102958, 'https://ror.org/03fmjzx88', 'en', 1, 'https://ror.org/03fmjzx88 University of Winchester'),
(102959, 'https://ror.org/03fqpzb44', 'no_lang_code', 0, 'https://ror.org/03fqpzb44 NFDI4Biodiversity'),
(102960, 'https://ror.org/03frj4r98', 'en', 1, 'https://ror.org/03frj4r98 Japan Advanced Institute of Science and Technology åŒ—é™øå…ˆē«Æē§‘å­¦ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(102961, 'https://ror.org/03fvnzx77', 'en', 1, 'https://ror.org/03fvnzx77 National Museum of the American Indian'),
(102962, 'https://ror.org/03fxa4766', 'en', 1, 'https://ror.org/03fxa4766 Eidgenössisches Departement für auswärtige Angelegenheiten Federal Department of Foreign Affairs'),
(102963, 'https://ror.org/03fyevk41', 'pt', 1, 'https://ror.org/03fyevk41 Grupo Lusófona (Portugal) Lusophone Group'),
(102964, 'https://ror.org/03g1fnq23', 'es', 1, 'https://ror.org/03g1fnq23 Centro de Investigaciones Biológicas del Noroeste S.C.'),
(102965, 'https://ror.org/03g4kv388', 'en', 1, 'https://ror.org/03g4kv388 Ethiopian Technology Authority į‹ØįŠ¢į‰µį‹®įŒµį‹« į‰“įŠ­įŠ–įˆŽįŒ‚ į‰£įˆˆįˆµįˆįŒ£įŠ•'),
(102966, 'https://ror.org/03g5hcd33', 'en', 1, 'https://ror.org/03g5hcd33 Integraal Kankercentrum Nederland Netherlands Comprehensive Cancer Organisation'),
(102967, 'https://ror.org/03g5rm013', 'en', 1, 'https://ror.org/03g5rm013 Federal College of Education, Zaria'),
(102968, 'https://ror.org/03g60bf21', 'en', 1, 'https://ror.org/03g60bf21 Children''s Hospital Foundation'),
(102969, 'https://ror.org/03g8bss77', 'en', 1, 'https://ror.org/03g8bss77 Kwalejin Ilimi ta St. Francis St. Francis College of Education'),
(102970, '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'),
(102971, 'https://ror.org/03gdzfa52', 'it', 1, 'https://ror.org/03gdzfa52 Seminario Arcivescovile di Milano'),
(102972, 'https://ror.org/03ggvqk67', 'en', 1, 'https://ror.org/03ggvqk67 Al-Amal College for Specialized Medical Sciences ŁƒŁ„ŁŠŲ© الأمل Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„ŲŖŲ®ŲµŲµŁŠŲ©'),
(102973, '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'),
(102974, 'https://ror.org/03grc6f14', 'en', 1, 'https://ror.org/03grc6f14 Mount Allison University'),
(102975, 'https://ror.org/03gvjya19', 'en', 1, 'https://ror.org/03gvjya19 Eastern International University ĐẔi hį»c Quốc tįŗæ Miền ĐƓng'),
(102976, 'https://ror.org/03gvsr558', 'en', 1, 'https://ror.org/03gvsr558 Maqsut Narikbayev University'),
(102977, 'https://ror.org/03gwcee47', 'no_lang_code', 1, 'https://ror.org/03gwcee47 AIntelia, AIntelia (Turkey)'),
(102978, 'https://ror.org/03gx9a140', 'en', 1, 'https://ror.org/03gx9a140 Guangxi Research Institute of Chemical Industry å¹æč„æåŒ–å·„ē ”ē©¶é™¢'),
(102979, 'https://ror.org/03gz4y884', 'fr', 1, 'https://ror.org/03gz4y884 Laboratoire de MƩtƩorologie Physique'),
(102980, 'https://ror.org/03h0qfp10', 'en', 1, 'https://ror.org/03h0qfp10 Halmstad University Hƶgskolan i Halmstad'),
(102981, 'https://ror.org/03h17x602', 'en', 1, 'https://ror.org/03h17x602 Southwest Petroleum University č„æå—ēŸ³ę²¹å¤§å­¦'),
(102982, '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'),
(102983, 'https://ror.org/03h3j0z67', 'fr', 1, 'https://ror.org/03h3j0z67 Chimie mƩdicinale et recherche translationnelle'),
(102984, 'https://ror.org/03h3jqn23', 'en', 1, 'https://ror.org/03h3jqn23 European Space Research and Technology Centre'),
(102985, 'https://ror.org/03h5rdc49', 'en', 1, 'https://ror.org/03h5rdc49 Francisk Skorina Gomel State University Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Франциска Дкорины Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń Францыска Дкарыны'),
(102986, 'https://ror.org/03h8f2y52', 'en', 1, 'https://ror.org/03h8f2y52 Zhangir Khan University, Zhangir Khan West Kazakhstan Agrarian Technical University Жангир Єан Университет, ЗапаГно-ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ аграрно-технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Жангир хана Жәңгір Єан Университеті, Жәңгір хан атынГағы Батыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ аграрлық-техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(102987, 'https://ror.org/03ha87a98', 'fr', 1, 'https://ror.org/03ha87a98 Laboratoire interdisciplinaire de recherche sur les transformations des pratiques Ʃducatives et des pratiques sociales'),
(102988, 'https://ror.org/03hb1kr92', 'en', 1, 'https://ror.org/03hb1kr92 Bury College'),
(102989, 'https://ror.org/03hdaef25', 'en', 1, 'https://ror.org/03hdaef25 Helsinki Metropolia University of Applied Sciences'),
(102990, 'https://ror.org/03hdf3w38', 'en', 1, 'https://ror.org/03hdf3w38 Northeastern University London'),
(102991, 'https://ror.org/03hgcc197', 'en', 1, 'https://ror.org/03hgcc197 Islamic Azad University, East Tehran Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران ؓرق'),
(102992, 'https://ror.org/03hhhyk81', 'en', 1, 'https://ror.org/03hhhyk81 Hungarian University of Fine Arts Magyar KĆ©pzőművĆ©szeti Egyetem'),
(102993, 'https://ror.org/03hk8yf10', 'en', 1, 'https://ror.org/03hk8yf10 Entergy, Entergy (United States)'),
(102994, 'https://ror.org/03hknyb50', 'en', 1, 'https://ror.org/03hknyb50 Jimei University é›†ē¾Žå¤§å­¦'),
(102995, 'https://ror.org/03hq50145', 'pt', 1, 'https://ror.org/03hq50145 EDP University Universidade EDP'),
(102996, 'https://ror.org/03hqv2x85', 'en', 1, 'https://ror.org/03hqv2x85 Mitochondrial and Cardiovascular Physiopathology Physiopathologie Cardiovasculaire et Mitochondriale'),
(102997, 'https://ror.org/03hrye043', 'en', 1, 'https://ror.org/03hrye043 Herkimer College'),
(102998, 'https://ror.org/03ht2dx40', 'fr', 1, 'https://ror.org/03ht2dx40 Institut Pasteur du Cambodge'),
(102999, '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'),
(103000, 'https://ror.org/03hw5e041', 'fr', 1, 'https://ror.org/03hw5e041 Ɖcole Nationale SupĆ©rieure d''Architecture de Nancy'),
(103001, 'https://ror.org/03hxp6v65', 'en', 1, 'https://ror.org/03hxp6v65 Laboratory of Nanotechnology Instrumentation and Optics'),
(103002, 'https://ror.org/03hz42y69', 'fr', 1, 'https://ror.org/03hz42y69 Ecole d''ingénieurs en génie des systèmes industriels'),
(103003, 'https://ror.org/03j1z6h17', 'en', 1, 'https://ror.org/03j1z6h17 KrajskĆ” knihovna Vysočiny Vysočina Regional Library'),
(103004, 'https://ror.org/03j2ta742', 'en', 1, 'https://ror.org/03j2ta742 O. P. Jindal Global University ओ.ą¤Ŗą„€. ą¤œą¤æą¤‚ą¤¦ą¤² ą¤—ą„ą¤²ą„‹ą¤¬ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(103005, 'https://ror.org/03j3dbz94', 'en', 1, 'https://ror.org/03j3dbz94 Trinity College'),
(103006, 'https://ror.org/03j3dv688', 'en', 1, 'https://ror.org/03j3dv688 SUNY New Paltz'),
(103007, 'https://ror.org/03j4z4422', 'es', 1, 'https://ror.org/03j4z4422 Universidad Nacional "Siglo XX"'),
(103008, 'https://ror.org/03j546b66', 'de', 1, 'https://ror.org/03j546b66 Klinik und Poliklinik für Psychiatrie und Psychotherapie'),
(103009, 'https://ror.org/03j65n394', 'fr', 1, 'https://ror.org/03j65n394 Laboratoire d''Excellence TULIP'),
(103010, 'https://ror.org/03j7mz841', 'fr', 1, 'https://ror.org/03j7mz841 Centre d’Archives en Philosophie, Histoire et Ɖdition des Sciences'),
(103011, 'https://ror.org/03j99jp33', 'pt', 1, 'https://ror.org/03j99jp33 Nephrocare Portugal SA, Nephrocare Portugal SA (Portugal)'),
(103012, 'https://ror.org/03jbbze48', 'en', 1, 'https://ror.org/03jbbze48 Universidad de San Diego University of San Diego UniversitƩ de san diego'),
(103013, 'https://ror.org/03jbcxj66', 'pt', 1, 'https://ror.org/03jbcxj66 Faculdade de Tecnologia de SĆ£o Paulo'),
(103014, 'https://ror.org/03jc41j30', 'en', 1, 'https://ror.org/03jc41j30 Jiangsu University ę±Ÿč‹å¤§å­¦'),
(103015, 'https://ror.org/03jca6281', 'fr', 1, 'https://ror.org/03jca6281 Laboratoire de MathĆ©matiques et ModĆ©lisation d''Ɖvry'),
(103016, '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'),
(103017, 'https://ror.org/03je71k37', 'en', 1, 'https://ror.org/03je71k37 Civil Aviation University of China äø­å›½ę°‘čˆŖå¤§å­¦'),
(103018, 'https://ror.org/03jg13h58', 'en', 1, 'https://ror.org/03jg13h58 Modern University College Ų§Ł„Ł€ŁƒŁ„Ł€ŁŠŁ€Ų© Ų§Ł„Ł€Ų¹Ł€ŲµŁ€Ų±ŁŠŁ€Ų© Ų§Ł„Ł€Ų¬Ł€Ł€Ų§Ł…Ų¹Ł€ŁŠŁ€Ł€Ł€Ų©'),
(103019, 'https://ror.org/03jg63j21', 'es', 1, 'https://ror.org/03jg63j21 Instituto Tecnológico Superior de Tantoyuca'),
(103020, 'https://ror.org/03jjdcp59', 'en', 1, 'https://ror.org/03jjdcp59 University of Belgrade – Faculty of Chemistry Univerzitet u Beogradu – Hemijski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Ń…ŠµŠ¼ŠøŃ˜ŃŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(103021, 'https://ror.org/03jm2hc44', 'fr', 1, 'https://ror.org/03jm2hc44 Laboratoire de MathƩmatiques Nicolas Oresme'),
(103022, 'https://ror.org/03jnmkq61', 'pt', 1, 'https://ror.org/03jnmkq61 Academia de Software, Academia de Software (Portugal) Software Academy'),
(103023, 'https://ror.org/03jnx8g68', 'es', 1, 'https://ror.org/03jnx8g68 Universidad Tecnológica de Coahuila'),
(103024, 'https://ror.org/03jqm0b89', 'fr', 1, 'https://ror.org/03jqm0b89 Centre AndrƩ-Chastel'),
(103025, 'https://ror.org/03jrr8f73', 'en', 1, 'https://ror.org/03jrr8f73 Stiftung Synapsis Synapsis Foundation'),
(103026, 'https://ror.org/03js1g511', 'en', 1, 'https://ror.org/03js1g511 Centurion University of Technology and Management ą¦øą§‡ą¦žą§ą¦šą§ą¦°ą¦æą¦Æą¦¼ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(103027, 'https://ror.org/03jsbvj12', 'en', 1, 'https://ror.org/03jsbvj12 NSWC Carderock Division'),
(103028, 'https://ror.org/03jt9em80', 'fr', 1, 'https://ror.org/03jt9em80 Centre de recherches en arts et esthƩtique'),
(103029, 'https://ror.org/03jtrja12', 'en', 1, 'https://ror.org/03jtrja12 Dumlupinar University Dumlupınar Üniversitesi'),
(103030, 'https://ror.org/03jwjxy73', 'fr', 1, 'https://ror.org/03jwjxy73 ECAL/Ecole cantonale d''art de Lausanne'),
(103031, 'https://ror.org/03jwrn541', 'en', 1, 'https://ror.org/03jwrn541 Fashion Institute of Technology'),
(103032, 'https://ror.org/03jxg4w44', 'en', 1, 'https://ror.org/03jxg4w44 College of the Rockies'),
(103033, 'https://ror.org/03jy32q83', 'en', 1, 'https://ror.org/03jy32q83 Jiangxi University of Traditional Chinese Medicine ę±Ÿč„æäø­åŒ»čÆå¤§å­¦'),
(103034, 'https://ror.org/03jyzk483', 'fr', 1, 'https://ror.org/03jyzk483 Beaujon Hospital HƓpital Beaujon'),
(103035, 'https://ror.org/03jz4tp02', 'pt', 1, 'https://ror.org/03jz4tp02 Ordem dos Farmaceuticos'),
(103036, 'https://ror.org/03jz50365', 'en', 1, 'https://ror.org/03jz50365 Laboratory of Mechanics Physics of Materials'),
(103037, 'https://ror.org/03k118f17', 'no_lang_code', 1, 'https://ror.org/03k118f17 Wolfram Research (United States)'),
(103038, 'https://ror.org/03k174p87', 'en', 1, 'https://ror.org/03k174p87 Xuchang University'),
(103039, 'https://ror.org/03k23nv15', 'no_lang_code', 1, 'https://ror.org/03k23nv15 Karunya University ą®•ą®¾ą®°ąÆą®£ąÆą®Æą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(103040, 'https://ror.org/03k2z3e59', 'en', 1, 'https://ror.org/03k2z3e59 KolaDaisi University'),
(103041, 'https://ror.org/03k32n603', 'fr', 1, 'https://ror.org/03k32n603 CEPN - Centre d''Economie de l''UniversitƩ Paris Nord'),
(103042, 'https://ror.org/03k37h274', 'fr', 1, 'https://ror.org/03k37h274 Cellular and Chemical Biology Chimie et Biologie de la Cellule'),
(103043, 'https://ror.org/03k3t2d52', 'es', 1, 'https://ror.org/03k3t2d52 Tecnológico Nacional de México Campus San Martín Texmelucan'),
(103044, '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 Ł…Ų­Ł…ŲÆ بن Ų£Ų­Ł…ŲÆ'),
(103045, 'https://ror.org/03k4s1p46', 'en', 1, 'https://ror.org/03k4s1p46 Soil Agro and Hydrosystems Spatialization Sol Agro et HydrosystĆØme Spatialisation'),
(103046, 'https://ror.org/03k51ct10', 'en', 1, 'https://ror.org/03k51ct10 UNESCO Institute for Lifelong Learning'),
(103047, 'https://ror.org/03k5zb271', 'en', 1, 'https://ror.org/03k5zb271 Bangladesh Agricultural University বাংলাদেশ ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(103048, 'https://ror.org/03k788b92', 'en', 1, 'https://ror.org/03k788b92 Emily Carr University of Art and Design'),
(103049, 'https://ror.org/03k7r0z51', 'de', 1, 'https://ror.org/03k7r0z51 Fachhochschule Wiener Neustadt University of Applied Sciences Wiener Neustadt'),
(103050, 'https://ror.org/03k7yrw82', 'fr', 1, 'https://ror.org/03k7yrw82 Immuno-Rhumathologie molƩculaire Molecular Immuno-Rhumatology'),
(103051, 'https://ror.org/03k9wer31', 'fr', 1, 'https://ror.org/03k9wer31 PhysicoChimie des Processus de Combustion et de l''AtmosphĆØre'),
(103052, 'https://ror.org/03k9z2963', 'fr', 1, 'https://ror.org/03k9z2963 Department of Mathematics and their Applications DƩpartement de mathƩmatiques et applications'),
(103053, 'https://ror.org/03ka94606', 'en', 1, 'https://ror.org/03ka94606 Hemostase Inflammation Thrombosis'),
(103054, 'https://ror.org/03kaedj42', 'en', 1, 'https://ror.org/03kaedj42 International Dairy Federation'),
(103055, 'https://ror.org/03kd28f18', 'en', 1, 'https://ror.org/03kd28f18 Prifysgol Buckingham University of Buckingham'),
(103056, 'https://ror.org/03keztm33', 'fr', 1, 'https://ror.org/03keztm33 Hématopoïèse et immunologie'),
(103057, 'https://ror.org/03kf3ks42', 'en', 1, 'https://ror.org/03kf3ks42 The Schwarzman Animal Medical Center'),
(103058, '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'),
(103059, 'https://ror.org/03kfkzp90', 'fr', 1, 'https://ror.org/03kfkzp90 Institut Universitaire de Recherche Clinique'),
(103060, 'https://ror.org/03kfrvm58', 'en', 1, 'https://ror.org/03kfrvm58 Institut d’Etudes Sociales et MĆ©diatiques Social and Media Studies Institute معهدالدراسات Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© و Ų§Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ©'),
(103061, 'https://ror.org/03kgwb284', 'en', 1, 'https://ror.org/03kgwb284 Central University of Odisha ओऔिशा ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ଓଔ଼ିଶା ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ą¬¬ą¬æą¬¶ą­ą¬¬ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(103062, 'https://ror.org/03kkrza17', 'es', 1, 'https://ror.org/03kkrza17 Centro de Investigaciones Interdisciplinarias en Ciencias y Humanidades'),
(103063, 'https://ror.org/03m0zs870', 'fr', 1, 'https://ror.org/03m0zs870 Institut Cellule Souche et Cerveau Stem-Cell and Brain Research Institute'),
(103064, 'https://ror.org/03m20nr07', 'no_lang_code', 1, 'https://ror.org/03m20nr07 Shenyang Ligong University'),
(103065, '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'),
(103066, 'https://ror.org/03m5hk977', 'hu', 1, 'https://ror.org/03m5hk977 PĆ©csi Püspƶki HittudomĆ”nyi Főiskola'),
(103067, 'https://ror.org/03m6ee736', 'en', 1, 'https://ror.org/03m6ee736 Vermont State University'),
(103068, 'https://ror.org/03m8vkq32', 'fr', 1, 'https://ror.org/03m8vkq32 French National Cancer Institute Institut National du Cancer'),
(103069, 'https://ror.org/03m96p165', 'en', 1, 'https://ror.org/03m96p165 Nanjing Forestry University å—äŗ¬ęž—äøšå¤§å­¦'),
(103070, 'https://ror.org/03m99bx66', 'it', 1, 'https://ror.org/03m99bx66 Accademia di Belle Arti di Catania'),
(103071, 'https://ror.org/03mfb3630', 'en', 1, 'https://ror.org/03mfb3630 Southeast University Chengxian College äøœå—å¤§å­¦ęˆč“¤å­¦é™¢'),
(103072, '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'),
(103073, 'https://ror.org/03mjtaj61', 'en', 1, 'https://ror.org/03mjtaj61 Council of Graduate Departments of Psychology'),
(103074, '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'),
(103075, 'https://ror.org/03mmnsr06', 'en', 1, 'https://ror.org/03mmnsr06 Debere Berhan Health Science College'),
(103076, 'https://ror.org/03mnkh157', 'en', 1, 'https://ror.org/03mnkh157 Enphase Energy, Enphase Energy (United States)'),
(103077, 'https://ror.org/03mnm3272', 'en', 1, 'https://ror.org/03mnm3272 City of Wolverhampton College'),
(103078, 'https://ror.org/03mp99h26', 'en', 1, 'https://ror.org/03mp99h26 Xavier Institute of Management and Entrepreneurship'),
(103079, 'https://ror.org/03mpd4h52', 'en', 1, 'https://ror.org/03mpd4h52 North Carolina State Climate Office'),
(103080, 'https://ror.org/03mtwkv54', 'en', 1, 'https://ror.org/03mtwkv54 Central University of Haryana हरियाणा ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(103081, 'https://ror.org/03mw9hb85', 'cs', 1, 'https://ror.org/03mw9hb85 Policie České republiky - Kriminalistický ústav'),
(103082, 'https://ror.org/03myan165', 'en', 1, 'https://ror.org/03myan165 Tateisi Science and Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗ ē«‹ēŸ³ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(103083, 'https://ror.org/03myw9d11', 'en', 1, 'https://ror.org/03myw9d11 Iron and Steel Institute of Z. I. Nekrasov National Academy of Sciences of Ukraine Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ чорної Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³Ń–Ń— ім. Š—.І. ŠŠµŠŗŃ€Š°ŃŠ¾Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(103084, 'https://ror.org/03n1tgd19', 'en', 1, 'https://ror.org/03n1tgd19 Museum Conservation Institute'),
(103085, 'https://ror.org/03n450987', 'en', 1, 'https://ror.org/03n450987 Global Citizenship Foundation'),
(103086, 'https://ror.org/03n4vkw74', 'fr', 1, 'https://ror.org/03n4vkw74 DƩpartement Microbiologie et ChaƮne Alimentaire Microbiology and the food chain'),
(103087, 'https://ror.org/03n7a5z57', 'en', 1, 'https://ror.org/03n7a5z57 Huainan Normal University ę·®å—åøˆčŒƒå­¦é™¢'),
(103088, 'https://ror.org/03n7grz74', 'es', 1, 'https://ror.org/03n7grz74 Universidad Tecnologica de Tijuana'),
(103089, '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'),
(103090, 'https://ror.org/03natay60', 'en', 1, 'https://ror.org/03natay60 Istanbul Arel University İstanbul Arel Üniversitesi'),
(103091, 'https://ror.org/03ncxj847', 'en', 1, 'https://ror.org/03ncxj847 SUNY Schenectady County Community College'),
(103092, 'https://ror.org/03nevd013', 'en', 1, 'https://ror.org/03nevd013 Swami Ramanand Teerth Marathwada University ą¤øą„ą¤µą¤¾ą¤®ą„€ रामानंद ą¤¤ą„€ą¤°ą„ą¤„ मराठवाऔ़ा ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(103093, 'https://ror.org/03nf3fj23', 'en', 1, 'https://ror.org/03nf3fj23 MidKent College'),
(103094, 'https://ror.org/03nf8d138', 'fr', 1, 'https://ror.org/03nf8d138 CHANGINS - Haute Ć©cole de viticulture et œnologie'),
(103095, 'https://ror.org/03ngg2631', 'en', 1, 'https://ror.org/03ngg2631 Ministry of Defence of the Russian Federation ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ обороны Российской ФеГерации'),
(103096, 'https://ror.org/03nh7d505', 'fr', 1, 'https://ror.org/03nh7d505 Ɖcole Centrale de Nantes'),
(103097, 'https://ror.org/03nj9d526', 'en', 1, 'https://ror.org/03nj9d526 Al-Hadi University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ł‡Ų§ŲÆŁŠ الجامعة'),
(103098, 'https://ror.org/03nkhf159', 'en', 1, 'https://ror.org/03nkhf159 Agencia Europea de Control de la Pesca European Fisheries Control Agency'),
(103099, 'https://ror.org/03nmrhk91', 'en', 1, 'https://ror.org/03nmrhk91 MoreBrains Cooperative, MoreBrains Cooperative (United Kingdom)'),
(103100, 'https://ror.org/03nr3p279', 'fr', 1, 'https://ror.org/03nr3p279 REGARDS Recherches en Ɖconomie Gestion AgroRessources DurabilitĆ© SantĆ©'),
(103101, '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'),
(103102, 'https://ror.org/03ntmtb29', 'fr', 1, 'https://ror.org/03ntmtb29 Centre Val de Loire Loire Valley Centre'),
(103103, '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'),
(103104, 'https://ror.org/03nw1rg94', 'en', 1, 'https://ror.org/03nw1rg94 Central University of Jammu'),
(103105, 'https://ror.org/03p3e4237', 'no_lang_code', 1, 'https://ror.org/03p3e4237 Silence Therapeutics (United Kingdom)'),
(103106, 'https://ror.org/03p3f6k20', 'fr', 1, 'https://ror.org/03p3f6k20 Laboratoire de Microbiologie, Adaptation et PathogƩnie Microbiology, Adaptation and Pathogenesis Lab'),
(103107, 'https://ror.org/03p74y353', 'fr', 1, 'https://ror.org/03p74y353 Center of business law and management Centre de Droit des Affaires et de Gestion'),
(103108, 'https://ror.org/03p76m698', 'fr', 1, 'https://ror.org/03p76m698 Institutions et Dynamiques Historiques de l''Ɖconomie et de la SociĆ©tĆ©'),
(103109, 'https://ror.org/03p8zav06', 'en', 1, 'https://ror.org/03p8zav06 Wellington Community Hospital'),
(103110, 'https://ror.org/03padqz24', 'fr', 1, 'https://ror.org/03padqz24 Brain Plasticity laboratory Laboratoire PlasticitƩ du Cerveau'),
(103111, 'https://ror.org/03pbmtd68', 'fr', 1, 'https://ror.org/03pbmtd68 Recherche translationnelle sur le diabĆØte'),
(103112, 'https://ror.org/03pef0w96', 'fr', 1, 'https://ror.org/03pef0w96 HƓpital Raymond-PoincarƩ Raymond PoincarƩ University Hospital'),
(103113, 'https://ror.org/03pfjex63', 'en', 1, 'https://ror.org/03pfjex63 Wing Luke Museum of the Asian Pacific American Experience'),
(103114, 'https://ror.org/03phbpb09', 'fr', 1, 'https://ror.org/03phbpb09 ThƩologie protestante'),
(103115, 'https://ror.org/03pj6ge82', 'en', 0, 'https://ror.org/03pj6ge82 Ministry of Education and Science of the Republic of Kazakhstan'),
(103116, 'https://ror.org/03ppaqb54', 'de', 1, 'https://ror.org/03ppaqb54 FIR e. V. an der RWTH Aachen'),
(103117, 'https://ror.org/03pq2y959', 'en', 1, 'https://ror.org/03pq2y959 Evangelical Presbyterian College of Education, Amedzofe Kwalejin Ilimi ta Presbyterian na Bishara, Amedzofe'),
(103118, 'https://ror.org/03prym056', 'no_lang_code', 1, 'https://ror.org/03prym056 Almac (United Kingdom)'),
(103119, 'https://ror.org/03psxy088', 'en', 1, 'https://ror.org/03psxy088 Monroe Community College'),
(103120, 'https://ror.org/03ptcxm22', 'pt', 1, 'https://ror.org/03ptcxm22 Direccao-Geral de Agricultura e Desenvolvimento Rural'),
(103121, 'https://ror.org/03pv69j64', 'en', 1, 'https://ror.org/03pv69j64 Cancer Research UK Scotland Institute'),
(103122, 'https://ror.org/03pwaa786', 'sl', 1, 'https://ror.org/03pwaa786 Å olski Center Ptuj'),
(103123, 'https://ror.org/03pwdyd87', 'es', 1, 'https://ror.org/03pwdyd87 Port d''Informació Científica'),
(103124, 'https://ror.org/03pyhhg10', 'fr', 1, 'https://ror.org/03pyhhg10 Faculty of Medicine of Tunis FacultĆ© de mĆ©decine de Tunis ŁƒŁ„ŁŠŲ© الطب ŲØŲŖŁˆŁ†Ų³'),
(103125, 'https://ror.org/03q03zn57', 'en', 1, 'https://ror.org/03q03zn57 Gap (United States)'),
(103126, 'https://ror.org/03q20pc87', 'en', 1, 'https://ror.org/03q20pc87 East of England Secure Data Environment'),
(103127, 'https://ror.org/03q29s414', 'fr', 1, 'https://ror.org/03q29s414 Mathématiques et Informatique pour la Complexité et les Systèmes'),
(103128, 'https://ror.org/03q5e6q66', 'it', 1, 'https://ror.org/03q5e6q66 Fondazione Ricerca Biomedica Avanzata Onlus - VIMM'),
(103129, 'https://ror.org/03q5ve753', 'en', 1, 'https://ror.org/03q5ve753 Jiangnan Social University'),
(103130, 'https://ror.org/03q648j11', 'en', 1, 'https://ror.org/03q648j11 Hainan University ęµ·å—å¤§å­¦'),
(103131, 'https://ror.org/03q7tj736', 'en', 1, 'https://ror.org/03q7tj736 St. Monica''s College of Education'),
(103132, 'https://ror.org/03q99v794', 'fr', 1, 'https://ror.org/03q99v794 UnitƩ MatƩriaux et Transformations'),
(103133, 'https://ror.org/03qan4b12', 'es', 1, 'https://ror.org/03qan4b12 Centro Científico Tecnológico - La Plata'),
(103134, 'https://ror.org/03qbdej90', 'fr', 1, 'https://ror.org/03qbdej90 Centre Provence-Alpes-CƓte d''Azur'),
(103135, 'https://ror.org/03qbxj466', 'en', 1, 'https://ror.org/03qbxj466 Sistema Universitario del Norte de Texas University of North Texas System'),
(103136, 'https://ror.org/03qeacd72', 'fr', 1, 'https://ror.org/03qeacd72 Ɖcole Nationale SupĆ©rieure de l''Ɖlectronique et de ses Applications'),
(103137, 'https://ror.org/03qegss47', 'en', 1, 'https://ror.org/03qegss47 International Centre of Insect Physiology and Ecology'),
(103138, 'https://ror.org/03qgt2624', 'fr', 1, 'https://ror.org/03qgt2624 Analyse, GƩomƩtrie et ModƩlisation, Laboratoire Analyse GƩomƩtrie ModƩlisation'),
(103139, 'https://ror.org/03qgzzb04', 'no_lang_code', 0, 'https://ror.org/03qgzzb04 Telefonica Research and Development Telefónica Investigación y Desarrollo'),
(103140, 'https://ror.org/03qhdpz92', 'en', 1, 'https://ror.org/03qhdpz92 Defense Center for Public Health - Aberdeen'),
(103141, 'https://ror.org/03qhewz33', 'en', 1, 'https://ror.org/03qhewz33 Kennedy Memorial Trust'),
(103142, 'https://ror.org/03qj7sq78', 'en', 1, 'https://ror.org/03qj7sq78 CareQuest Institute for Oral Health'),
(103143, 'https://ror.org/03qn3zw06', 'en', 1, 'https://ror.org/03qn3zw06 Lakeside University College Ghana'),
(103144, 'https://ror.org/03qnxaf80', 'en', 1, 'https://ror.org/03qnxaf80 Fordham University Universidad de Fordham'),
(103145, 'https://ror.org/03qp1eh12', 'en', 1, 'https://ror.org/03qp1eh12 National Institute of Research in Tuberculosis'),
(103146, 'https://ror.org/03qpa4m87', 'en', 1, 'https://ror.org/03qpa4m87 Enchi College of Education'),
(103147, 'https://ror.org/03qq6zv19', 'en', 1, 'https://ror.org/03qq6zv19 Dropbox, Dropbox (United States)'),
(103148, 'https://ror.org/03qq7c889', 'en', 1, 'https://ror.org/03qq7c889 Khulna Agricultural University খুলনা ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(103149, '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'),
(103150, 'https://ror.org/03qt6ba18', 'en', 1, 'https://ror.org/03qt6ba18 Georgia State University'),
(103151, 'https://ror.org/03qvpys73', 'es', 1, 'https://ror.org/03qvpys73 Instituto Tecnológico de Aguascalientes'),
(103152, 'https://ror.org/03qvqb743', 'en', 1, 'https://ror.org/03qvqb743 Chuo University 中央大学'),
(103153, 'https://ror.org/03qw6qj17', 'pt', 1, 'https://ror.org/03qw6qj17 Administração Regional De Saude Do Centro'),
(103154, 'https://ror.org/03qy9z186', 'en', 1, 'https://ror.org/03qy9z186 Institute for Translational Research in Inflammation'),
(103155, 'https://ror.org/03qz2be51', 'en', 1, 'https://ror.org/03qz2be51 CMS Energy, CMS Energy (United States)'),
(103156, 'https://ror.org/03r0cdk24', 'fr', 1, 'https://ror.org/03r0cdk24 Institut de Recherche sur l''Architecture Antique'),
(103157, 'https://ror.org/03r10zj06', 'en', 1, 'https://ror.org/03r10zj06 National Center for Supercomputing Applications'),
(103158, 'https://ror.org/03r13py57', 'fr', 0, 'https://ror.org/03r13py57 UniLaSalle Amiens (ESIEE-Amiens)'),
(103159, 'https://ror.org/03r1jm528', 'en', 1, 'https://ror.org/03r1jm528 Nelson Mandela Metropolitaanse Universiteit Nelson Mandela University'),
(103160, 'https://ror.org/03r31ar10', 'pt', 1, 'https://ror.org/03r31ar10 Liga Portuguesa Contra o Cancro'),
(103161, 'https://ror.org/03r6wam78', 'en', 1, 'https://ror.org/03r6wam78 Changchun Institute of Technology é•æę˜„å·„ēØ‹å­¦é™¢'),
(103162, 'https://ror.org/03r6wtf12', 'no_lang_code', 1, 'https://ror.org/03r6wtf12 Aibee, Aibee (China) ēˆ±ē¬”ę™ŗčƒ½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(103163, 'https://ror.org/03r7e7711', 'fr', 1, 'https://ror.org/03r7e7711 Louvre-Lens'),
(103164, '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'),
(103165, 'https://ror.org/03r97y618', 'en', 1, 'https://ror.org/03r97y618 International Center for Relativistic Astrophysics Network'),
(103166, 'https://ror.org/03r9qc142', 'en', 1, 'https://ror.org/03r9qc142 UCL Biomedical Research Centre'),
(103167, 'https://ror.org/03rc6as71', 'no_lang_code', 1, 'https://ror.org/03rc6as71 Tongji University Tongji-UniversitƤt åŒęµŽå¤§å­¦'),
(103168, 'https://ror.org/03rcf8m81', 'tr', 1, 'https://ror.org/03rcf8m81 City Hospital of Izmir Izmir Sehir Hastanesi, İzmir Şehir Hastanesi'),
(103169, 'https://ror.org/03rdf8k41', 'en', 1, 'https://ror.org/03rdf8k41 Abia State Polytechnic'),
(103170, 'https://ror.org/03rfnpw37', 'en', 1, 'https://ror.org/03rfnpw37 Kwalejin Ilimi ta St. Vincent St. Vincent College of Education'),
(103171, 'https://ror.org/03rh9qr65', 'en', 1, 'https://ror.org/03rh9qr65 Anton Bruckner Private University Anton Bruckner PrivatuniversitƤt'),
(103172, 'https://ror.org/03rn0z073', 'en', 1, 'https://ror.org/03rn0z073 Ministry of Public Health ąøąø£ąø°ąø—ąø£ąø§ąø‡ąøŖąø²ąø˜ąø²ąø£ąø“ąøŖąøøąø‚'),
(103173, 'https://ror.org/03rnz7p05', 'fr', 1, 'https://ror.org/03rnz7p05 Centre Michel de Boüard'),
(103174, 'https://ror.org/03rve6f96', 'en', 1, 'https://ror.org/03rve6f96 LS Cable & System, LS Cable & System (South Korea), LS Cable Ltd. LSģ „ģ„ '),
(103175, 'https://ror.org/03rvn2t89', 'de', 1, 'https://ror.org/03rvn2t89 Institut für Klimaschutz, Energie und Mobilität'),
(103176, 'https://ror.org/03rvrjk28', 'fr', 1, 'https://ror.org/03rvrjk28 Facteurs de risque et dƩterminants molƩculaires des maladies liƩes au vieillissement'),
(103177, 'https://ror.org/03rxtdc22', 'fr', 1, 'https://ror.org/03rxtdc22 Ɖcole Normale SupĆ©rieure de Rennes'),
(103178, 'https://ror.org/03ry6p839', 'es', 1, 'https://ror.org/03ry6p839 Instituto Tecnológico Superior de Huatusco'),
(103179, 'https://ror.org/03s13vb04', 'en', 1, 'https://ror.org/03s13vb04 Northern Netherlands Provinces alliance samenwerkingsverband Noord-Nederland'),
(103180, 'https://ror.org/03s262162', 'en', 1, 'https://ror.org/03s262162 Athens University of Economics and Business UniversitĆ© d’économie d’athĆØnes Οικονομικό Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(103181, 'https://ror.org/03s49ys28', 'en', 1, 'https://ror.org/03s49ys28 Catholic International University'),
(103182, 'https://ror.org/03s51y289', 'en', 1, 'https://ror.org/03s51y289 National Institute of Standards & Industrial Technology'),
(103183, 'https://ror.org/03s5t0r17', 'en', 1, 'https://ror.org/03s5t0r17 National Institute of Biology'),
(103184, 'https://ror.org/03s5x2j36', 'fr', 1, 'https://ror.org/03s5x2j36 Centre d''Investigation Clinique Robert DebrƩ'),
(103185, 'https://ror.org/03s5z5x70', 'fr', 1, 'https://ror.org/03s5z5x70 Institut des Sciences Analytiques Institute of Analytical Sciences'),
(103186, 'https://ror.org/03s61s823', 'en', 1, 'https://ror.org/03s61s823 Mitford Hospital, Dhaka'),
(103187, 'https://ror.org/03s877y45', 'fr', 1, 'https://ror.org/03s877y45 Chimie du Solide et Energie Solid State Chemistry And Energy Lab'),
(103188, 'https://ror.org/03sbftg39', 'fr', 1, 'https://ror.org/03sbftg39 French Pork and Pig Institute Institut du Porc'),
(103189, 'https://ror.org/03sczbr81', 'pt', 1, 'https://ror.org/03sczbr81 Kimera Biotecnologia, Kimera Biotecnologia (Brazil)'),
(103190, 'https://ror.org/03sd35x91', 'en', 1, 'https://ror.org/03sd35x91 Nanjing Tech University å—äŗ¬å·„äøšå¤§å­¦'),
(103191, 'https://ror.org/03sd3t490', 'en', 1, 'https://ror.org/03sd3t490 Anyang Institute of Technology 安阳巄学院'),
(103192, 'https://ror.org/03sffqe64', 'en', 1, 'https://ror.org/03sffqe64 Cawthron Institute'),
(103193, 'https://ror.org/03sfp2d76', 'fr', 1, 'https://ror.org/03sfp2d76 Haute Ɖcole Louvain en Hainaut'),
(103194, 'https://ror.org/03sg2bq51', 'en', 1, 'https://ror.org/03sg2bq51 Empire State University'),
(103195, 'https://ror.org/03sgz3g22', 'en', 1, 'https://ror.org/03sgz3g22 Mid Cheshire College'),
(103196, 'https://ror.org/03sjk9a61', 'fr', 1, 'https://ror.org/03sjk9a61 Ministeri d''Educació Superior i Recerca francĆØs Ministry of Higher Education and Research MinistĆØre de l’Enseignement SupĆ©rieur et de la Recherche'),
(103197, 'https://ror.org/03skccr46', 'en', 1, 'https://ror.org/03skccr46 Guam Humanities Council'),
(103198, 'https://ror.org/03sptdk90', 'en', 1, 'https://ror.org/03sptdk90 Leeds City College'),
(103199, 'https://ror.org/03sr1zw68', 'no_lang_code', 1, 'https://ror.org/03sr1zw68 Biocompatibles (United Kingdom)'),
(103200, 'https://ror.org/03st4jm89', 'en', 1, 'https://ror.org/03st4jm89 Moscow University of the Ministry of Internal Affairs of Russia Московский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации имени Š’. ŠÆ. ŠšŠøŠŗŠ¾Ń‚Ń'),
(103201, 'https://ror.org/03sv5kk82', 'fr', 1, 'https://ror.org/03sv5kk82 Migrations Internationales, Espace Espaces et SociƩtƩs'),
(103202, 'https://ror.org/03svjbs84', 'en', 1, 'https://ror.org/03svjbs84 Liverpool School of Tropical Medicine'),
(103203, 'https://ror.org/03swgmm98', 'en', 1, 'https://ror.org/03swgmm98 Regional Institute of Education, Mysuru'),
(103204, 'https://ror.org/03sws5s65', 'en', 1, 'https://ror.org/03sws5s65 Ministry of SMEs and Startups ģ¤‘ģ†Œė²¤ģ²˜źø°ģ—…ė¶€'),
(103205, 'https://ror.org/03sypqe31', 'fr', 1, 'https://ror.org/03sypqe31 Systèmes Membranaires, Photobiologie, Stress et Détoxication'),
(103206, 'https://ror.org/03t2gd572', 'id', 1, 'https://ror.org/03t2gd572 Institut Teknologi dan Bisnis Kalla'),
(103207, 'https://ror.org/03t3h1s86', 'en', 0, 'https://ror.org/03t3h1s86 Fondation Franco-NorvƩgienne French Norwegian Foundation'),
(103208, 'https://ror.org/03t4pc386', 'fr', 1, 'https://ror.org/03t4pc386 Cancer, Heterogeneity, Instability and Plasticity Cancer, HƩtƩrogƩnƩitƩ, InstabilitƩ et PlasticitƩ'),
(103209, 'https://ror.org/03t52dk35', 'en', 1, 'https://ror.org/03t52dk35 Western Sydney University'),
(103210, 'https://ror.org/03t57np97', 'pt', 1, 'https://ror.org/03t57np97 Instituto de Engenheiros Eletricistas e EletrƓnicos'),
(103211, 'https://ror.org/03t5a9538', 'es', 1, 'https://ror.org/03t5a9538 Instituto Tecnologico Superior de Misantla'),
(103212, '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.'),
(103213, 'https://ror.org/03t6cz096', 'en', 1, 'https://ror.org/03t6cz096 Astronomical Institute of the Slovak Academy of Sciences Astronomický ústav Slovenskej akadémie vied'),
(103214, 'https://ror.org/03t78wx29', 'en', 1, 'https://ror.org/03t78wx29 Hiroshima University 広島大学'),
(103215, 'https://ror.org/03t9s7t87', 'fr', 1, 'https://ror.org/03t9s7t87 Pathogénèse Bactérienne et Réponses Cellulaires'),
(103216, 'https://ror.org/03taest98', 'en', 1, 'https://ror.org/03taest98 Max Planck Institute for Plasma Physics Max-Planck-Institut für Plasmaphysik'),
(103217, 'https://ror.org/03tap6r50', 'en', 1, 'https://ror.org/03tap6r50 Institute of Public Administration لمعهد ال؄دارة العامة'),
(103218, 'https://ror.org/03tbm7598', 'en', 1, 'https://ror.org/03tbm7598 NSWC Panama City Division'),
(103219, 'https://ror.org/03tc05689', 'en', 1, 'https://ror.org/03tc05689 University of Basilicata UniversitƠ degli Studi della Basilicata UniversitƩ de la basilicate'),
(103220, 'https://ror.org/03te95s40', 'fr', 1, 'https://ror.org/03te95s40 Groupe d''Ʃtudes orientales, slaves et nƩo-hellƩniques'),
(103221, 'https://ror.org/03tf0c761', 'en', 1, 'https://ror.org/03tf0c761 Finnish Institute for Health and Welfare');
INSERT INTO `rors` VALUES
(103222, 'https://ror.org/03tg3eb07', 'tr', 1, 'https://ror.org/03tg3eb07 Bursa Uludağ Üni̇versi̇tesi̇'),
(103223, 'https://ror.org/03tg3h819', 'en', 1, 'https://ror.org/03tg3h819 Colorado College'),
(103224, 'https://ror.org/03tm6pb36', 'en', 1, 'https://ror.org/03tm6pb36 Center for Jewish History'),
(103225, 'https://ror.org/03tmp6662', 'en', 1, 'https://ror.org/03tmp6662 Weifang Medical University ę½åŠåŒ»å­¦é™¢'),
(103226, 'https://ror.org/03tnjrr49', 'fr', 1, 'https://ror.org/03tnjrr49 Astroparticle and Cosmology Laboratory Laboratoire AstroParticule et Cosmologie'),
(103227, 'https://ror.org/03tpcfk14', 'fr', 1, 'https://ror.org/03tpcfk14 Animal physiology and livestock systems DĆ©partement Physiologie Animale et SystĆØmes d’Élevage'),
(103228, 'https://ror.org/03tq3c028', 'en', 1, 'https://ror.org/03tq3c028 European Regional Centre for Ecohydrology'),
(103229, 'https://ror.org/03tqb8s11', 'en', 1, 'https://ror.org/03tqb8s11 Yangzhou University ę‰¬å·žå¤§å­¦'),
(103230, 'https://ror.org/03ttqt747', 'en', 1, 'https://ror.org/03ttqt747 Montana Technological University'),
(103231, 'https://ror.org/03tv2xh81', 'en', 1, 'https://ror.org/03tv2xh81 CEPT University ąŖøą«‡ąŖŖą«ąŖŸ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(103232, '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'),
(103233, 'https://ror.org/03tvs6n06', 'fr', 1, 'https://ror.org/03tvs6n06 Centre de microcaractƩrisation Raimond Castaing'),
(103234, 'https://ror.org/03tw3kz18', 'en', 1, 'https://ror.org/03tw3kz18 Lake Tahoe Community College'),
(103235, 'https://ror.org/03txy7629', 'fr', 1, 'https://ror.org/03txy7629 Polytech Nice Sophia'),
(103236, 'https://ror.org/03ty41p70', 'en', 1, 'https://ror.org/03ty41p70 Corpus Christi College'),
(103237, 'https://ror.org/03v0r5n49', 'en', 1, 'https://ror.org/03v0r5n49 Indian Institute of Technology Madras ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą¤¦ą„ą¤°ą¤¾ą¤ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®šąÆ†ą®©ąÆą®©ąÆˆ ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą± ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°®ą°¦ą±ą°°ą°¾ą°øą± ಭಾರತೀಯ ą²¤ą²‚ą²¤ą³ą²°ą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³† ą²®ą²¦ą³ą²°ą²¾ą²øą³ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“®ą“¦ąµą“°ą“¾ą“øąµ'),
(103238, 'https://ror.org/03v2c3v44', 'fr', 1, 'https://ror.org/03v2c3v44 Centre de Recherche sur la BiodiversitƩ et l''Environnement'),
(103239, 'https://ror.org/03v4gjf40', 'de', 1, 'https://ror.org/03v4gjf40 Technische UniversitƤt Berlin'),
(103240, 'https://ror.org/03v4gsj38', 'fr', 1, 'https://ror.org/03v4gsj38 Maison des Sciences de l''Homme Val de Loire'),
(103241, 'https://ror.org/03v4vk244', 'la', 1, 'https://ror.org/03v4vk244 Collegium Polonicum'),
(103242, 'https://ror.org/03v5jj203', 'it', 1, 'https://ror.org/03v5jj203 Stazione Zoologica Anton Dohrn'),
(103243, 'https://ror.org/03v6e0402', 'en', 1, 'https://ror.org/03v6e0402 Iranian National Commission for UNESCO Ś©Ł…ŪŒŲ³ŪŒŁˆŁ† Ł…Ł„ŪŒ ŪŒŁˆŁ†Ų³Ś©Łˆ-Ų§ŪŒŲ±Ų§Ł†'),
(103244, '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'),
(103245, 'https://ror.org/03v8tnc06', 'en', 1, 'https://ror.org/03v8tnc06 Institute of High Energy Physics äø­å›½ē§‘å­¦é™¢é«˜čƒ½ē‰©ē†ē ”ē©¶ę‰€'),
(103246, 'https://ror.org/03v9efr22', 'en', 1, 'https://ror.org/03v9efr22 The Christie NHS Foundation Trust'),
(103247, 'https://ror.org/03v9h4a52', 'pt', 1, 'https://ror.org/03v9h4a52 Conservatório Superior de Música de Gaia'),
(103248, 'https://ror.org/03va9g668', 'en', 1, 'https://ror.org/03va9g668 University of Chinese Academy of Social Sciences äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å¤§å­¦'),
(103249, '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'),
(103250, 'https://ror.org/03vaxkw63', 'en', 1, 'https://ror.org/03vaxkw63 Institute of Physics and Technology'),
(103251, 'https://ror.org/03vb88585', 'en', 1, 'https://ror.org/03vb88585 Abbott Diabetes Care, Abbott Diabetes Care (United States)'),
(103252, 'https://ror.org/03vc8d935', 'en', 1, 'https://ror.org/03vc8d935 Wuhan City College ę­¦ę±‰åŸŽåø‚å­¦é™¢'),
(103253, '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'),
(103254, 'https://ror.org/03vd8y618', 'en', 1, 'https://ror.org/03vd8y618 Research Institute in Science of Cyber Security'),
(103255, 'https://ror.org/03vdg0553', 'es', 1, 'https://ror.org/03vdg0553 Instituto de Ambiente, HƔbitat y Energƭa'),
(103256, 'https://ror.org/03vdg7e33', 'fr', 1, 'https://ror.org/03vdg7e33 Laboratoire Photonique, NumƩrique et Nanosciences'),
(103257, 'https://ror.org/03ve7j725', 'en', 1, 'https://ror.org/03ve7j725 APA Corporation, APA Corporation (United States)'),
(103258, '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'),
(103259, 'https://ror.org/03vgfxd91', 'fr', 1, 'https://ror.org/03vgfxd91 Institut Pascal'),
(103260, 'https://ror.org/03vkfy293', 'en', 1, 'https://ror.org/03vkfy293 Central Institute of Mining and Fuel Research ą¤øą„€ą¤ą¤øą¤†ą¤ˆą¤†ą¤°-ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ खनन ą¤ą¤µą¤‚ ą¤ˆą¤‚ą¤§ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(103261, 'https://ror.org/03vkhr254', 'fr', 1, 'https://ror.org/03vkhr254 Centre Virchow-VillermƩ'),
(103262, 'https://ror.org/03vmza063', 'fr', 1, 'https://ror.org/03vmza063 UnitƩ Mixte de Recherche EpidƩmiologique et de Surveillance Transport Travail Environnement'),
(103263, 'https://ror.org/03vncyz18', 'es', 1, 'https://ror.org/03vncyz18 Universidad Tecnológica del Norte de Aguascalientes'),
(103264, 'https://ror.org/03vrx7m55', 'en', 1, 'https://ror.org/03vrx7m55 University of Allahabad इलाहाबाद ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਇਲਾਹਾਬਾਦ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®…ą®²ą®•ą®¾ą®Ŗą®¾ą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°…ą°²ą°¹ą°¾ą°¬ą°¾ą°¦ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(103265, 'https://ror.org/03vs46t66', 'fr', 0, 'https://ror.org/03vs46t66 Cergy-Pontoise University UniversitƩ de Cergy-Pontoise'),
(103266, 'https://ror.org/03vte9x46', 'fr', 1, 'https://ror.org/03vte9x46 Observatoire des Sciences de l''Univers de Grenoble'),
(103267, 'https://ror.org/03vtskf62', 'en', 1, 'https://ror.org/03vtskf62 California Earthquake Authority'),
(103268, 'https://ror.org/03vv60b83', 'fr', 1, 'https://ror.org/03vv60b83 Laboratoire de physiologie cellulaire et molƩculaire'),
(103269, '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'),
(103270, 'https://ror.org/03vxay285', 'en', 1, 'https://ror.org/03vxay285 Cedar Crest College'),
(103271, 'https://ror.org/03vxmn596', 'fr', 1, 'https://ror.org/03vxmn596 DĆ©partement Sciences pour l’Action et le DĆ©veloppement Science for Action and Development'),
(103272, 'https://ror.org/03vyjkj45', 'fr', 1, 'https://ror.org/03vyjkj45 Centre d’Immunologie de Marseille-Luminy'),
(103273, 'https://ror.org/03vyv3y87', 'fr', 1, 'https://ror.org/03vyv3y87 Haute Technologie Animale Grenobloise'),
(103274, 'https://ror.org/03w4jzj90', 'en', 1, 'https://ror.org/03w4jzj90 Health and Care Research Wales Ymchwil Iechyd a Gofal Cymru'),
(103275, 'https://ror.org/03w5dn804', 'en', 1, 'https://ror.org/03w5dn804 Dutch Institute for Fundamental Energy Research'),
(103276, 'https://ror.org/03w75z957', 'es', 1, 'https://ror.org/03w75z957 Leon Technological University Universidad Tecnológica de León'),
(103277, 'https://ror.org/03w8jv259', 'pt', 1, 'https://ror.org/03w8jv259 Instituto da Qualidade em SaĆŗde'),
(103278, 'https://ror.org/03w9e3r89', 'en', 1, 'https://ror.org/03w9e3r89 Rockland Community College'),
(103279, 'https://ror.org/03w9xqv95', 'no_lang_code', 1, 'https://ror.org/03w9xqv95 Lowe''s, Lowe''s (United States)'),
(103280, 'https://ror.org/03wafw466', 'en', 1, 'https://ror.org/03wafw466 City College Norwich'),
(103281, 'https://ror.org/03wc8by49', 'en', 1, 'https://ror.org/03wc8by49 Posit Software, PBC, Posit Software, PBC (United States)'),
(103282, 'https://ror.org/03wd9za21', 'en', 1, 'https://ror.org/03wd9za21 Agence Spatiale Européenne Agència Espacial Europea, Europako Espazio Agentzia European Space Agency'),
(103283, 'https://ror.org/03wdx6c48', 'fr', 1, 'https://ror.org/03wdx6c48 Trajectoires. De la sĆ©dentarisation Ć  l’État'),
(103284, 'https://ror.org/03whgj090', 'fr', 1, 'https://ror.org/03whgj090 Laboratoire Science & technologie du Lait & de l''œuf Science and Technology of Milk and Eggs'),
(103285, 'https://ror.org/03wmf1y16', 'en', 1, 'https://ror.org/03wmf1y16 University of Colorado Anschutz Medical Campus'),
(103286, 'https://ror.org/03wsemq03', 'fr', 1, 'https://ror.org/03wsemq03 Laboratoire de l''AtmosphĆØre et des Cyclones'),
(103287, 'https://ror.org/03wt67z55', 'no_lang_code', 1, 'https://ror.org/03wt67z55 PanThera Biopharma, LLC, PanThera Biopharma, LLC (United States)'),
(103288, 'https://ror.org/03wttga88', 'fr', 1, 'https://ror.org/03wttga88 Institut d''Histoire du Droit'),
(103289, 'https://ror.org/03wwjjr94', 'en', 1, 'https://ror.org/03wwjjr94 HKU-Pasteur Research Pole'),
(103290, 'https://ror.org/03wx30207', 'en', 1, 'https://ror.org/03wx30207 EOG Resources, EOG Resources (United States)'),
(103291, 'https://ror.org/03wy09077', 'fr', 1, 'https://ror.org/03wy09077 Groupe Hospitalo-Universitaire Paris Nord'),
(103292, 'https://ror.org/03wzc0b85', 'en', 1, 'https://ror.org/03wzc0b85 National Commission for Science, Technology, and Innovation'),
(103293, 'https://ror.org/03wzth680', 'fr', 1, 'https://ror.org/03wzth680 Stress Abiotiques et DiffƩrenciation des VƩgƩtaux CultivƩs'),
(103294, 'https://ror.org/03x0g1010', 'fr', 1, 'https://ror.org/03x0g1010 Laboratoire de gƩnie civil et gƩnie mƩcanique'),
(103295, 'https://ror.org/03x1f1d90', 'en', 1, 'https://ror.org/03x1f1d90 St. Catherine University UniversitƩ sainte-catherine'),
(103296, 'https://ror.org/03x1z2w73', 'fr', 1, 'https://ror.org/03x1z2w73 Laboratoire d''Ɖcologie Alpine'),
(103297, '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'),
(103298, 'https://ror.org/03x7qhw59', 'en', 1, 'https://ror.org/03x7qhw59 Sul Ross State University UniversitĆ© d''Ɖtat Sul Ross'),
(103299, 'https://ror.org/03x80pn82', 'en', 1, 'https://ror.org/03x80pn82 Harbin Engineering University å“ˆå°”ę»Øå·„ēØ‹å¤§å­¦'),
(103300, 'https://ror.org/03xahj211', 'fr', 1, 'https://ror.org/03xahj211 Centre Hospitalier des Pays de Morlaix'),
(103301, 'https://ror.org/03xbe6k03', 'en', 0, 'https://ror.org/03xbe6k03 Wuhan General Hospital of Guangzhou äø­å›½äŗŗę°‘č§£ę”¾å†›å¹æå·žå†›åŒŗę­¦ę±‰ę€»åŒ»é™¢'),
(103302, 'https://ror.org/03xc3yj23', 'pt', 1, 'https://ror.org/03xc3yj23 Sociedade de História Natural'),
(103303, 'https://ror.org/03xftxq32', 'en', 1, 'https://ror.org/03xftxq32 PhytoTrade Africa'),
(103304, 'https://ror.org/03xg8m734', 'fr', 1, 'https://ror.org/03xg8m734 Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux'),
(103305, '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'),
(103306, 'https://ror.org/03xkgc756', 'fr', 1, 'https://ror.org/03xkgc756 Microbiologie Orale, ImmunothƩrapie et SantƩ'),
(103307, 'https://ror.org/03xnaaq19', 'pl', 1, 'https://ror.org/03xnaaq19 Instytut Badań i Innowacji w Edukacji'),
(103308, 'https://ror.org/03xpwj629', 'en', 1, 'https://ror.org/03xpwj629 Liaoning University 辽宁大学'),
(103309, 'https://ror.org/03xrhmk39', 'nl', 1, 'https://ror.org/03xrhmk39 Flanders Institute for Biotechnology Vlaams Instituut voor Biotechnologie'),
(103310, 'https://ror.org/03xrrn515', 'fr', 1, 'https://ror.org/03xrrn515 Linguistique, langues, parole'),
(103311, 'https://ror.org/03xrvbe74', 'de', 0, 'https://ror.org/03xrvbe74 DAPHNE4NFDI, DAten aus PHoton- und Neutronen Experimenten'),
(103312, 'https://ror.org/03xt0bg88', 'en', 1, 'https://ror.org/03xt0bg88 Dr. B. R. Ambedkar National Institute of Technology Jalandhar औा. ą¤¬ą„€. आर. ą¤…ą¤®ą„ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤œą¤¾ą¤²ą¤‚ą¤§ą¤°'),
(103313, 'https://ror.org/03xvggv44', 'en', 1, 'https://ror.org/03xvggv44 Huaiyin Normal University ę·®é˜“åøˆčŒƒå­¦é™¢'),
(103314, 'https://ror.org/03xvpbd79', 'no_lang_code', 1, 'https://ror.org/03xvpbd79 Robert Bosch (Hungary), Robert Bosch Kft.'),
(103315, 'https://ror.org/03xvvtc63', 'en', 1, 'https://ror.org/03xvvtc63 Center for Brooklyn History'),
(103316, 'https://ror.org/03xx09h51', 'en', 1, 'https://ror.org/03xx09h51 Ministry of Commerce, Industry and Cooperatives'),
(103317, 'https://ror.org/03xxf5v12', 'en', 1, 'https://ror.org/03xxf5v12 Airbnb, Airbnb (United States)'),
(103318, 'https://ror.org/03xz0ge78', 'en', 1, 'https://ror.org/03xz0ge78 Great Yarmouth College'),
(103319, 'https://ror.org/03xzagw65', 'fr', 1, 'https://ror.org/03xzagw65 HƓpital Lapeyronie'),
(103320, 'https://ror.org/03y03ds95', 'en', 1, 'https://ror.org/03y03ds95 Cool Roof Rating Council'),
(103321, 'https://ror.org/03y3e3s17', 'en', 1, 'https://ror.org/03y3e3s17 Shanxi University 山脿大学'),
(103322, 'https://ror.org/03y4dt428', 'en', 1, 'https://ror.org/03y4dt428 University of Nottingham Ningbo China 宁波诺丁汉大学'),
(103323, 'https://ror.org/03y5vsd17', 'en', 1, 'https://ror.org/03y5vsd17 National Museum of African American History and Culture'),
(103324, 'https://ror.org/03y61y350', 'fr', 1, 'https://ror.org/03y61y350 Imagerie MolƩculaire et StratƩgies ThƩranostiques'),
(103325, 'https://ror.org/03y6j4b59', 'en', 1, 'https://ror.org/03y6j4b59 Crown Castle International, Crown Castle International (United States)'),
(103326, 'https://ror.org/03y71xh61', 'en', 1, 'https://ror.org/03y71xh61 Universidad de Richmond University of Richmond UniversitƩ de richmond'),
(103327, 'https://ror.org/03y7m8990', 'fr', 1, 'https://ror.org/03y7m8990 Physics for Medicine Paris Physique pour la mƩdecine Paris'),
(103328, 'https://ror.org/03y81da23', 'fr', 0, 'https://ror.org/03y81da23 Laboratoire d’HYdrologie et de GEochimie Laboratory of Hydrology and Geochemistry'),
(103329, 'https://ror.org/03y8mpv07', 'fr', 1, 'https://ror.org/03y8mpv07 Centre de Recherche sur l''HƩtƩro-Epitaxie et ses Applications'),
(103330, 'https://ror.org/03ya3d516', 'fr', 1, 'https://ror.org/03ya3d516 UnitƩ de Taphonomie MƩdico-LƩgale'),
(103331, 'https://ror.org/03ya9h906', 'en', 1, 'https://ror.org/03ya9h906 National Library of Greece Εθνική βιβλιοθήκη της ΕλλάΓος'),
(103332, 'https://ror.org/03yacj906', 'en', 1, 'https://ror.org/03yacj906 ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤œą„‹ą¤§ą¤Ŗą„ą¤°'),
(103333, 'https://ror.org/03yajem64', 'no_lang_code', 1, 'https://ror.org/03yajem64 Nisource, Nisource (United States)'),
(103334, 'https://ror.org/03yaydt41', 'fr', 1, 'https://ror.org/03yaydt41 BiomƩcanique et BioingƩnierie'),
(103335, 'https://ror.org/03yeq9x20', 'en', 1, 'https://ror.org/03yeq9x20 University of Lincoln'),
(103336, 'https://ror.org/03yghzc09', 'en', 1, 'https://ror.org/03yghzc09 Prifysgol Caerwysg University of Exeter'),
(103337, 'https://ror.org/03ygj8248', 'fr', 1, 'https://ror.org/03ygj8248 Europe orientale, balkanique et mƩdiane'),
(103338, 'https://ror.org/03ygmq230', 'en', 1, 'https://ror.org/03ygmq230 Trent University UniversitƩ de trent'),
(103339, 'https://ror.org/03yh1tp98', 'pt', 1, 'https://ror.org/03yh1tp98 Fundo Nacional de Investigação'),
(103340, 'https://ror.org/03yjb2x39', 'en', 1, 'https://ror.org/03yjb2x39 University of Calgary UniversitƩ de Calgary'),
(103341, 'https://ror.org/03ykjzh91', 'de', 1, 'https://ror.org/03ykjzh91 Baden Württemberg Cancer-Registry Krebsregister Baden-Württemberg'),
(103342, 'https://ror.org/03yksw654', 'en', 1, 'https://ror.org/03yksw654 Guangdong Technical College of Water Resources and Electric Engineering å¹æäøœę°“åˆ©ē”µåŠ›čŒäøšęŠ€ęœÆå­¦é™¢'),
(103343, 'https://ror.org/03ym2w748', 'en', 1, 'https://ror.org/03ym2w748 Praxiling'),
(103344, 'https://ror.org/03ym4q031', 'en', 1, 'https://ror.org/03ym4q031 MSD Life Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗMSDē”Ÿå‘½ē§‘å­¦č²”å›£'),
(103345, 'https://ror.org/03yn8s215', 'en', 1, 'https://ror.org/03yn8s215 Vienna University of Economics and Business WirtschaftsuniversitƤt Wien'),
(103346, 'https://ror.org/03yn94905', 'fr', 1, 'https://ror.org/03yn94905 Fonctions Optiques pour les Technologies de l’information'),
(103347, 'https://ror.org/03yppfm65', 'fr', 0, 'https://ror.org/03yppfm65 Stendhal University UniversitĆ© Stendhal – Grenoble 3'),
(103348, 'https://ror.org/03ypqe447', 'en', 1, 'https://ror.org/03ypqe447 Santa Clara University Universidad de Santa Clara UniversitƩ de santa clara'),
(103349, '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'),
(103350, 'https://ror.org/03ypykr22', 'es', 1, 'https://ror.org/03ypykr22 Universidad ORT Uruguay'),
(103351, 'https://ror.org/03yr1er70', 'fr', 1, 'https://ror.org/03yr1er70'),
(103352, 'https://ror.org/03yv2tx67', 'es', 1, 'https://ror.org/03yv2tx67 AuditorĆ­a General de la RepĆŗblica'),
(103353, 'https://ror.org/03yvemy54', 'fr', 1, 'https://ror.org/03yvemy54 UnitƩ Mixte de Recherche sur les Herbivores'),
(103354, 'https://ror.org/03yw66316', 'es', 1, 'https://ror.org/03yw66316 Hospital Universitario De CabueƱes'),
(103355, 'https://ror.org/03ywn7d79', 'fr', 1, 'https://ror.org/03ywn7d79 Institut de Chimie Organique et Analytique Institute of Organic and Analytical Chemistry'),
(103356, 'https://ror.org/03ywnpj79', 'en', 1, 'https://ror.org/03ywnpj79 Southern Baptist Theological Seminary'),
(103357, 'https://ror.org/03yyd7552', 'en', 1, 'https://ror.org/03yyd7552 National Institute of Technology Calicut ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€, ą¤•ą¤¾ą¤²ą„€ą¤•ą¤Ÿ ą“Øą“¾ą“·ą“£ą“²ąµā€ ą“‡ą“Øąµā€ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“•ą“¾ą“²ą“æą“•ąµą“•ą“±ąµą“±ąµā€Œ'),
(103358, 'https://ror.org/03z22t144', 'no_lang_code', 1, 'https://ror.org/03z22t144 Mercedes-Benz (Japan) ćƒ”ćƒ«ć‚»ćƒ‡ć‚¹ćƒ™ćƒ³ćƒ„ę—„ęœ¬'),
(103359, 'https://ror.org/03z28gk75', 'en', 1, 'https://ror.org/03z28gk75 Teesside University'),
(103360, 'https://ror.org/03z2x5890', 'en', 1, 'https://ror.org/03z2x5890 Canadian National Institute for the Blind Fondation INCA, Institut National Canadien des Aveugles'),
(103361, 'https://ror.org/03z34n548', 'en', 1, 'https://ror.org/03z34n548 Middle East College'),
(103362, 'https://ror.org/03z391397', 'en', 1, 'https://ror.org/03z391397 Guilin University of Technology ę”‚ęž—ē†å·„å¤§å­¦'),
(103363, 'https://ror.org/03z69yv22', 'fr', 0, 'https://ror.org/03z69yv22 Foie, MƩtabolisme, Cancer Liver, Metabolisms and Cancer'),
(103364, 'https://ror.org/03z942k20', 'en', 1, 'https://ror.org/03z942k20 Department of Education'),
(103365, 'https://ror.org/03zax1057', 'en', 1, 'https://ror.org/03zax1057 NyƭregyhƔzi Egyetem University of NyƭregyhƔza'),
(103366, 'https://ror.org/03zb6nw87', 'fr', 1, 'https://ror.org/03zb6nw87 Nutrition, mƩtabolismes et cancer'),
(103367, 'https://ror.org/03zbydc22', 'en', 1, 'https://ror.org/03zbydc22 North Carolina School of Science and Mathematics'),
(103368, 'https://ror.org/03zcqw776', 'no_lang_code', 1, 'https://ror.org/03zcqw776 Amir-Al-Momenin Hospital مرکز Ų¢Ł…ŁˆŲ²Ų“ŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų³ŁˆŲ§Ł†Ų­ سوختگی و ŲŖŲ±Ł…ŪŒŁ…ŪŒ Ų§Ł…ŪŒŲ±Ų§Ł„Ł…ŁˆŁ…Ł†ŪŒŁ†'),
(103369, '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'),
(103370, 'https://ror.org/03zjvnn91', 'en', 1, 'https://ror.org/03zjvnn91 Edinburgh Napier University'),
(103371, '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'),
(103372, 'https://ror.org/03zmrmn05', 'no_lang_code', 1, 'https://ror.org/03zmrmn05 Xi’an Jiaotong-Liverpool University č„æäŗ¤åˆ©ē‰©ęµ¦å¤§å­¦'),
(103373, 'https://ror.org/03zn9gq54', 'en', 1, 'https://ror.org/03zn9gq54 Jining Medical University ęµŽå®åŒ»å­¦é™¢'),
(103374, 'https://ror.org/03zq0xc17', 'fr', 1, 'https://ror.org/03zq0xc17 Institut de Recherche sur les PhĆ©nomĆØnes Hors Ɖquilibre'),
(103375, 'https://ror.org/03zqyp327', 'en', 1, 'https://ror.org/03zqyp327 Cincinnati Financial, Cincinnati Financial (United States)'),
(103376, 'https://ror.org/03zsp3p94', 'en', 1, 'https://ror.org/03zsp3p94 University of the Aegean UniversitĆ© de l''ƉgĆ©e Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Αιγαίου'),
(103377, 'https://ror.org/03zsxkw25', 'en', 1, 'https://ror.org/03zsxkw25 Harbin University of Commerce å“ˆå°”ę»Øå•†äøšå¤§å­¦'),
(103378, 'https://ror.org/03zthsk19', 'en', 1, 'https://ror.org/03zthsk19 Walk21'),
(103379, 'https://ror.org/03zttf063', 'en', 1, 'https://ror.org/03zttf063 Swedish Research Council'),
(103380, 'https://ror.org/03zz2aq73', 'pt', 1, 'https://ror.org/03zz2aq73 Centro de Investigação em Desporto Saúde e Desenvolvimento Humano'),
(103381, 'https://ror.org/03zzckc47', 'en', 1, 'https://ror.org/03zzckc47 Kadir Has University Kadir Has Üniversitesi'),
(103382, 'https://ror.org/03zzgjc77', 'en', 1, 'https://ror.org/03zzgjc77 Institute of Oceanography'),
(103383, 'https://ror.org/03zzmvm93', 'en', 1, 'https://ror.org/03zzmvm93 Bangladesh Army International University of Science and Technology বাংলাদেশ সেনাবাহিনী ą¦†ą¦Øą§ą¦¤ą¦°ą§ą¦œą¦¾ą¦¤ą¦æą¦• ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(103384, 'https://ror.org/03zzmyz63', 'en', 1, 'https://ror.org/03zzmyz63 Philadelphia University UniversitƩ de philadelphie'),
(103385, 'https://ror.org/0400avk24', 'en', 1, 'https://ror.org/0400avk24 University of Bedfordshire'),
(103386, 'https://ror.org/0402pty94', 'en', 1, 'https://ror.org/0402pty94 University of Chemical Technology and Metallurgy Єимикотехнологичен Šø Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³ŠøŃ‡ŠµŠ½ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(103387, 'https://ror.org/0403kv531', 'en', 1, 'https://ror.org/0403kv531 City of Glasgow College Colaiste Baile Ghlaschu'),
(103388, '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'),
(103389, 'https://ror.org/0407f1r36', 'pl', 1, 'https://ror.org/0407f1r36 SWPS University Uniwersytet SWPS'),
(103390, 'https://ror.org/0409gk363', 'fr', 1, 'https://ror.org/0409gk363 LACTH - Laboratoire d''Architecture Conception Territoire Histoire MatƩrialitƩ'),
(103391, 'https://ror.org/0409yxb12', 'en', 1, 'https://ror.org/0409yxb12 Al-Farahidi University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŲ±Ų§Ł‡ŁŠŲÆŁŠ'),
(103392, 'https://ror.org/040asb018', 'en', 1, 'https://ror.org/040asb018 American Electric Power, American Electric Power (United States)'),
(103393, 'https://ror.org/040b32p69', 'no_lang_code', 1, 'https://ror.org/040b32p69 Megvii, Megvii (China) åŒ—äŗ¬ę—·č§†ē§‘ęŠ€ęœ‰é™å…¬åø'),
(103394, 'https://ror.org/040c17130', 'en', 1, 'https://ror.org/040c17130 Kyungpook National University ź²½ė¶ėŒ€ķ•™źµ'),
(103395, 'https://ror.org/040f08y74', 'en', 1, 'https://ror.org/040f08y74 St George''s, University of London'),
(103396, 'https://ror.org/040hwdc70', 'fr', 0, 'https://ror.org/040hwdc70 Lille 1 University UniversitƩ Lille 1'),
(103397, 'https://ror.org/040jq3y94', 'en', 1, 'https://ror.org/040jq3y94 Scientific Research Institute of State Building and Local Government of the NALS of Ukraine ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гержавного Š±ŃƒŠ“івництва та місцевого ŃŠ°Š¼Š¾Š²Ń€ŃŠ“ŃƒŠ²Š°Š½Š½Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії правових наук України'),
(103398, 'https://ror.org/040mc4x48', 'en', 1, 'https://ror.org/040mc4x48 Slovak Medical University SlovenskĆ” zdravotnĆ­cka univerzita v Bratislave'),
(103399, 'https://ror.org/040ndgk79', 'en', 1, 'https://ror.org/040ndgk79 Doncaster College'),
(103400, 'https://ror.org/040pk9f39', 'en', 1, 'https://ror.org/040pk9f39 GHU Paris psychiatrie & neurosciences'),
(103401, 'https://ror.org/040r1a296', 'en', 1, 'https://ror.org/040r1a296 Evidence In Motion'),
(103402, 'https://ror.org/040r8ry56', 'fr', 1, 'https://ror.org/040r8ry56 STELLA MARE'),
(103403, 'https://ror.org/040smqw14', 'fr', 1, 'https://ror.org/040smqw14 ClƩment Ader Institute Institut ClƩment Ader'),
(103404, 'https://ror.org/040zce739', 'en', 1, 'https://ror.org/040zce739 Toros University Toros Üniversitesi'),
(103405, 'https://ror.org/040zz8080', 'en', 1, 'https://ror.org/040zz8080 Cerebras Systems, Cerebras Systems (United States)'),
(103406, 'https://ror.org/0411seq30', 'tr', 1, 'https://ror.org/0411seq30 Kocaeli University Kocaeli Üniversitesi'),
(103407, 'https://ror.org/04161ta68', 'en', 1, 'https://ror.org/04161ta68 University "St. Kliment Ohridski" - Bitola Универзитет Дв. ā€žŠšŠ»ŠøŠ¼ŠµŠ½Ń‚ ŠžŃ…Ń€ŠøŠ“ŃŠŗŠøā€œ Битола'),
(103408, 'https://ror.org/0418kp584', 'en', 1, 'https://ror.org/0418kp584 Lishui University 丽氓学院'),
(103409, 'https://ror.org/041brh707', 'en', 1, 'https://ror.org/041brh707 New Zealand Equine Research Foundation'),
(103410, 'https://ror.org/041c9x778', 'en', 1, 'https://ror.org/041c9x778 Jianghan University ę±Ÿę±‰å¤§å­¦'),
(103411, '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'),
(103412, 'https://ror.org/041f45z81', 'en', 1, 'https://ror.org/041f45z81 Coleg Gwent, Gwent College'),
(103413, 'https://ror.org/041g3z125', 'en', 1, 'https://ror.org/041g3z125 Volga Region State University of Service Поволжский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ сервиса'),
(103414, 'https://ror.org/041g6bx17', 'pt', 1, 'https://ror.org/041g6bx17 Faculdade Pernambucana de SaĆŗde'),
(103415, 'https://ror.org/041ga1028', 'es', 1, 'https://ror.org/041ga1028 Universidad Tecnológica de Altamira, Tamaulipas'),
(103416, 'https://ror.org/041j8js14', 'en', 1, 'https://ror.org/041j8js14 Qingdao University of Science and Technology é’å²›ē§‘ęŠ€å¤§å­¦'),
(103417, 'https://ror.org/041m9xr71', 'en', 1, 'https://ror.org/041m9xr71 Ames National Laboratory'),
(103418, 'https://ror.org/041mhqs27', 'pt', 1, 'https://ror.org/041mhqs27 GlaxoSmithKline Produtos FarmacĆŖuticos Lda, GlaxoSmithKline Produtos FarmacĆŖuticos Lda (Portugal)'),
(103419, 'https://ror.org/041pakw92', 'en', 1, 'https://ror.org/041pakw92 Renmin University of China 中国人民大学'),
(103420, 'https://ror.org/041rhpw39', 'fr', 1, 'https://ror.org/041rhpw39 Centre Hospitalier Universitaire de Grenoble Grenoble University Hospital Centre'),
(103421, 'https://ror.org/041sj0284', 'en', 1, 'https://ror.org/041sj0284 Anhui Polytechnic University 安徽巄程大学'),
(103422, 'https://ror.org/041tgdz97', 'fr', 1, 'https://ror.org/041tgdz97 Adaptative Mechanisms & Evolution MƩcanismes Adaptatifs et Evolution'),
(103423, 'https://ror.org/041twcm28', 'no_lang_code', 1, 'https://ror.org/041twcm28 Leonardo United States'),
(103424, 'https://ror.org/041v99f68', 'fr', 1, 'https://ror.org/041v99f68 Pharmacologie des anti-infectieux et antibiorƩsistance Pharmacology of Antimicrobial Agents and antibioResistance'),
(103425, 'https://ror.org/041w4c980', 'en', 1, 'https://ror.org/041w4c980 Laoshan Laboratory'),
(103426, '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'),
(103427, 'https://ror.org/0420zk903', 'en', 1, 'https://ror.org/0420zk903 Yellow River Conservancy Technical Institute é»„ę²³ę°“åˆ©čŒäøšęŠ€ęœÆå­¦é™¢'),
(103428, 'https://ror.org/0427jdz87', 'fr', 1, 'https://ror.org/0427jdz87 Centre d''Anthropologie Culturelle Research Center For Cultural Anthropology'),
(103429, 'https://ror.org/0428ctr80', 'en', 1, 'https://ror.org/0428ctr80 Institut des neurosciences de Montpellier Institute for Neurosciences of Montpellier'),
(103430, 'https://ror.org/042cesy50', 'fr', 1, 'https://ror.org/042cesy50 Institut de Physique de Nice'),
(103431, 'https://ror.org/042cxsy45', 'fr', 1, 'https://ror.org/042cxsy45 Institut Pasteur de la Guadeloupe'),
(103432, 'https://ror.org/042drmv40', 'en', 1, 'https://ror.org/042drmv40 University of Puget Sound UniversitƩ de puget sound'),
(103433, 'https://ror.org/042ejbk14', 'en', 1, 'https://ror.org/042ejbk14 Ardahan University Ardahan Ɯniversitesi ʏrdəhan Universiteti'),
(103434, 'https://ror.org/042fmc481', 'fr', 1, 'https://ror.org/042fmc481 Groupe d''Analyse et de ThƩorie Economique Lyon St Etienne'),
(103435, 'https://ror.org/042gs1a72', 'en', 1, 'https://ror.org/042gs1a72 Weston Park Cancer Centre'),
(103436, 'https://ror.org/042h2y225', 'fr', 1, 'https://ror.org/042h2y225 Institut de MathƩmatiques de Marseille'),
(103437, 'https://ror.org/042hb4t21', 'en', 1, 'https://ror.org/042hb4t21 University of New York in Prague'),
(103438, 'https://ror.org/042mm0k03', 'en', 1, 'https://ror.org/042mm0k03 Microscopy Australia'),
(103439, 'https://ror.org/042phe474', 'no_lang_code', 1, 'https://ror.org/042phe474 SGS Germany GmbH, SGS Germany GmbH (Germany)'),
(103440, 'https://ror.org/042qa2p32', 'no_lang_code', 1, 'https://ror.org/042qa2p32 Tamr, Tamr (United States)'),
(103441, 'https://ror.org/042tdr378', 'en', 1, 'https://ror.org/042tdr378 Southern Methodist University Universidad Metodista del Sur UniversitƩ mƩthodiste du sud'),
(103442, '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'),
(103443, 'https://ror.org/042v6xz23', 'en', 1, 'https://ror.org/042v6xz23 Nanchang University å—ę˜Œå¤§å­¦'),
(103444, 'https://ror.org/042vxj938', 'en', 1, 'https://ror.org/042vxj938 Karnavati University'),
(103445, 'https://ror.org/042w6m452', 'fr', 1, 'https://ror.org/042w6m452 Etude et ComprƩhension de la biodiversitƩ'),
(103446, 'https://ror.org/0430b4z40', 'en', 1, 'https://ror.org/0430b4z40 Full Sail University'),
(103447, 'https://ror.org/0431hh004', 'fr', 1, 'https://ror.org/0431hh004 Institut d''Ɖlectronique et des SystĆØmes'),
(103448, 'https://ror.org/0435tej63', 'en', 1, 'https://ror.org/0435tej63 Shaoxing University ē»å…“ę–‡ē†å­¦é™¢'),
(103449, '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'),
(103450, 'https://ror.org/0438g3j88', 'no_lang_code', 0, 'https://ror.org/0438g3j88 Freescale Semiconductor (France)'),
(103451, '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'),
(103452, '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'),
(103453, 'https://ror.org/0439k2291', 'es', 1, 'https://ror.org/0439k2291 Universidad Tecnológica del Valle de Toluca'),
(103454, 'https://ror.org/043a21x04', 'en', 1, 'https://ror.org/043a21x04 Paul Pascal Research Center'),
(103455, 'https://ror.org/043a7rc44', 'fr', 1, 'https://ror.org/043a7rc44 Catholic University of Paris Institut catholique de paris'),
(103456, 'https://ror.org/043atn006', 'en', 1, 'https://ror.org/043atn006 Ventura College, Ventura County Community College District'),
(103457, 'https://ror.org/043dxc061', 'en', 1, 'https://ror.org/043dxc061 Sichuan Normal University å››å·åøˆčŒƒå¤§å­¦'),
(103458, 'https://ror.org/043hw6336', 'fr', 1, 'https://ror.org/043hw6336 Institut de Neurosciences de la Timone'),
(103459, 'https://ror.org/043k4kk20', 'en', 1, 'https://ror.org/043k4kk20 Korea Research Institute of Chemical Technology'),
(103460, 'https://ror.org/043kfae87', 'it', 1, 'https://ror.org/043kfae87 Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Salerno'),
(103461, 'https://ror.org/043kppn11', 'en', 1, 'https://ror.org/043kppn11 Institutet fƶr rymdfysik Ruotsin avaruusfysiikan laitos Swedish Institute of Space Physics'),
(103462, 'https://ror.org/043mgze97', 'en', 1, 'https://ror.org/043mgze97 Maryland Institute College of Art'),
(103463, 'https://ror.org/043nepn57', 'fr', 1, 'https://ror.org/043nepn57 Direction GƩnƩrale DƩlƩguƩe Ơ la Science'),
(103464, 'https://ror.org/043pfpy19', 'fr', 1, 'https://ror.org/043pfpy19 Laboratoire des Ɖcoulements GĆ©ophysiques et Industriels Laboratory of Geophysical and Industrial Flows'),
(103465, 'https://ror.org/043qcb444', 'en', 1, 'https://ror.org/043qcb444 Gran Sasso Science Institute'),
(103466, 'https://ror.org/043qd1272', 'fr', 1, 'https://ror.org/043qd1272 National Maritime College of France Ɖcole Nationale SupĆ©rieure Maritime'),
(103467, 'https://ror.org/043w3h917', 'en', 1, 'https://ror.org/043w3h917 Institution of Mechanical Engineers'),
(103468, 'https://ror.org/043wmc583', 'fr', 1, 'https://ror.org/043wmc583 Institut de GƩnomique Fonctionnelle Institute of Functional Genomics'),
(103469, 'https://ror.org/043x6pn39', 'fr', 1, 'https://ror.org/043x6pn39 HƓpital privƩ du Confluent'),
(103470, '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'),
(103471, 'https://ror.org/0442rdt85', 'en', 1, 'https://ror.org/0442rdt85 Kangda College of Nanjing Medical University å—äŗ¬åŒ»ē§‘å¤§å­¦åŗ·č¾¾å­¦é™¢'),
(103472, 'https://ror.org/0443n9e75', 'fr', 1, 'https://ror.org/0443n9e75 Toulouse 1 Capitole University UniversitƩ Toulouse-I-Capitole'),
(103473, 'https://ror.org/044466k19', 'en', 1, 'https://ror.org/044466k19 Bitmain Technologies, Bitmain Technologies (China) ęÆ”ē‰¹å¤§é™†ē§‘ęŠ€ęœ‰é™å…¬åø'),
(103474, 'https://ror.org/0445yn719', 'no_lang_code', 1, 'https://ror.org/0445yn719 Leonardo (United Kingdom)'),
(103475, 'https://ror.org/04489at23', 'en', 1, 'https://ror.org/04489at23 City, University of London'),
(103476, 'https://ror.org/0449khs19', 'fr', 1, 'https://ror.org/0449khs19 Center for Research in Economics and Statistics Centre de Recherche en Ɖconomie et Statistique'),
(103477, 'https://ror.org/0449rap84', 'fr', 1, 'https://ror.org/0449rap84 Laboratoire de Biologie de l''Exercice pour la Performance et la SantƩ'),
(103478, 'https://ror.org/044cse639', 'en', 1, 'https://ror.org/044cse639 Universidad de O''Higgins University of O''Higgins'),
(103479, 'https://ror.org/044dv9p07', 'fr', 1, 'https://ror.org/044dv9p07 Sommeil, vigilance, fatigue et santƩ publique'),
(103480, 'https://ror.org/044e2ja82', 'en', 1, 'https://ror.org/044e2ja82 Scotland''s Rural College'),
(103481, 'https://ror.org/044ggyg50', 'fr', 1, 'https://ror.org/044ggyg50 Laboratoire RhƩologie et ProcƩdƩs'),
(103482, 'https://ror.org/044ha3612', 'fr', 1, 'https://ror.org/044ha3612 Institut de MƩdecine de la Reproduction Institute for Reproductive Medicine'),
(103483, 'https://ror.org/044j76961', 'en', 1, 'https://ror.org/044j76961 University of Lethbridge UniversitƩ de lethbridge'),
(103484, 'https://ror.org/044jxv425', 'en', 1, 'https://ror.org/044jxv425 Bacterial Virulence and Chronic Infections Virulence BactƩrienne et Infections Chroniques'),
(103485, 'https://ror.org/044k0pw44', 'en', 1, 'https://ror.org/044k0pw44 Korea Institute of Geoscience and Mineral Resources'),
(103486, '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'),
(103487, 'https://ror.org/044khe761', 'pt', 1, 'https://ror.org/044khe761 Santa Marcelina Colégio São Paulo'),
(103488, 'https://ror.org/044kxby82', 'fr', 1, 'https://ror.org/044kxby82 Institut MontpelliƩrain Alexander Grothendieck'),
(103489, 'https://ror.org/044mrv955', 'fr', 1, 'https://ror.org/044mrv955 Institut d''Ɖtudes Scientifiques de CargĆØse'),
(103490, 'https://ror.org/044my7157', 'en', 1, 'https://ror.org/044my7157 Guangzhou Academy of Fine Arts å¹æå·žē¾ŽęœÆå­¦é™¢'),
(103491, 'https://ror.org/044nptt90', 'en', 1, 'https://ror.org/044nptt90 King''s College Hospital'),
(103492, 'https://ror.org/044qpwz88', 'fr', 1, 'https://ror.org/044qpwz88 Institut de Recherche sur les CƩramiques'),
(103493, 'https://ror.org/044rdrs62', 'en', 1, 'https://ror.org/044rdrs62 Danish School of Media and Journalism Danmarks Medie- og JournalisthĆøjskole'),
(103494, 'https://ror.org/044s61914', 'fr', 1, 'https://ror.org/044s61914 Centre Hospitalier Universitaire de LiĆØge'),
(103495, 'https://ror.org/044tjxx32', 'en', 1, 'https://ror.org/044tjxx32 Centre de Droit Public Public Law Centre'),
(103496, 'https://ror.org/044xay220', 'no_lang_code', 1, 'https://ror.org/044xay220 Koje College ź±°ģ œėŒ€ķ•™'),
(103497, 'https://ror.org/044xe8e90', 'fr', 1, 'https://ror.org/044xe8e90'),
(103498, 'https://ror.org/0451nna70', 'no_lang_code', 1, 'https://ror.org/0451nna70 Sirius'),
(103499, 'https://ror.org/0451s5g67', 'en', 1, 'https://ror.org/0451s5g67 Colorado Mesa University'),
(103500, 'https://ror.org/04523zj19', 'en', 1, 'https://ror.org/04523zj19 Nanjing University of Chinese Medicine å—äŗ¬äø­åŒ»čÆå¤§å­¦'),
(103501, 'https://ror.org/0452jzg20', 'en', 1, 'https://ror.org/0452jzg20 Chapman University'),
(103502, 'https://ror.org/0452y0518', 'fr', 1, 'https://ror.org/0452y0518 Le rƩseau des Carnot The Carnot Network'),
(103503, 'https://ror.org/045495t75', 'en', 1, 'https://ror.org/045495t75 Ifo Institute for Economic Research ifo Institut für Wirtschaftsforschung'),
(103504, 'https://ror.org/0454zjr22', 'fr', 1, 'https://ror.org/0454zjr22 Infectiologie Animale et SantƩ Publique'),
(103505, 'https://ror.org/0455v8x20', 'fr', 1, 'https://ror.org/0455v8x20 DƩpartement SantƩ des Plantes et Environnement Plant Health and the Environment'),
(103506, 'https://ror.org/0455vgw31', 'fr', 1, 'https://ror.org/0455vgw31 IMPact de l''Environnement Chimique sur la SantƩ humaine'),
(103507, 'https://ror.org/0455wwj08', 'fr', 1, 'https://ror.org/0455wwj08 Laboratoire GƩnie Industriel'),
(103508, 'https://ror.org/0458dap48', 'en', 1, 'https://ror.org/0458dap48 Atlantic Technological University Ollscoil TeicneolaĆ­ochta an Atlantaigh'),
(103509, 'https://ror.org/0459pv085', 'en', 1, 'https://ror.org/0459pv085 Guangdong University Of Finances and Economics å¹æäøœå•†å­¦é™¢'),
(103510, 'https://ror.org/0459x4g44', 'fr', 1, 'https://ror.org/0459x4g44 Hypoxie et Physiopathologies cardiovasculaires et respiratoires'),
(103511, 'https://ror.org/045dq5f72', 'no', 1, 'https://ror.org/045dq5f72 Stord hospital'),
(103512, 'https://ror.org/045e26x92', 'en', 1, 'https://ror.org/045e26x92 Gettysburg College'),
(103513, 'https://ror.org/045h9g769', 'en', 1, 'https://ror.org/045h9g769 Ministry of Trade, Co-operatives, Small and Medium Enterprises'),
(103514, 'https://ror.org/045hg4108', 'en', 1, 'https://ror.org/045hg4108 Academia da ForƧa AƩrea Portuguese Air Force Academy'),
(103515, 'https://ror.org/045hgzm75', 'en', 1, 'https://ror.org/045hgzm75 SelƧuk University SelƧuk Ɯniversitesi Səlcuq Universiteti'),
(103516, 'https://ror.org/045hhcf06', 'es', 1, 'https://ror.org/045hhcf06 Instituto de Problemas Nacionales'),
(103517, 'https://ror.org/045jdy577', 'fr', 1, 'https://ror.org/045jdy577 Centre d''Etudes Linguistiques'),
(103518, 'https://ror.org/045kr1469', 'en', 1, 'https://ror.org/045kr1469 Institut za multidisciplinarna istraživanja, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¼ŃƒŠ»Ń‚иГисциплинарна ŠøŃŃ‚Ń€Š°Š¶ŠøŠ²Š°ŃšŠ° Institute for Multidisciplinary Research'),
(103519, 'https://ror.org/045ktmd28', 'fr', 1, 'https://ror.org/045ktmd28 Laboratoire National des Champs MagnƩtiques Intenses'),
(103520, 'https://ror.org/045n3eg64', 'fr', 1, 'https://ror.org/045n3eg64 Equipe de Droit PƩnal et de sciences Forensiques de Montpellier'),
(103521, 'https://ror.org/045ntgf29', 'en', 1, 'https://ror.org/045ntgf29 Oklahoma State University System'),
(103522, 'https://ror.org/045p8nc06', 'fr', 1, 'https://ror.org/045p8nc06 Centre d''Anthropobiologie et de GƩnomique de Toulouse'),
(103523, 'https://ror.org/045q3tp69', 'fr', 1, 'https://ror.org/045q3tp69 Centre d’études des langues et littĆ©ratures anciennes et modernes'),
(103524, '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'),
(103525, 'https://ror.org/045qsfj95', 'en', 1, 'https://ror.org/045qsfj95 Institute of Development Studies विकास ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(103526, 'https://ror.org/045qszf23', 'fr', 1, 'https://ror.org/045qszf23 Institut de Chimie de Clermont-Ferrand Institute of Chemistry of Clermont-Ferrand'),
(103527, 'https://ror.org/045r56524', 'fr', 1, 'https://ror.org/045r56524 Laboratoire Dynamiques Sociales et Recomposition des Espaces'),
(103528, 'https://ror.org/045t78n53', 'en', 1, 'https://ror.org/045t78n53 Michoud Assembly Facility'),
(103529, 'https://ror.org/045vwce28', 'no_lang_code', 1, 'https://ror.org/045vwce28 NTT (Germany)'),
(103530, 'https://ror.org/045vwzt11', 'no_lang_code', 1, 'https://ror.org/045vwzt11 Sabaragamuwa University of Sri Lanka ą®šą®Ŗą®°ą®•ą®®ąÆą®µą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą·ƒą¶¶ą¶»ą¶œą¶øą·”ą·€ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(103531, 'https://ror.org/045wgfr59', 'en', 1, 'https://ror.org/045wgfr59 University of Stirling'),
(103532, 'https://ror.org/045x7eq21', 'pt', 1, 'https://ror.org/045x7eq21 LEO FarmacĆŖuticos, LEO FarmacĆŖuticos (Portugal) LEO Pharmaceutical'),
(103533, 'https://ror.org/045y10908', 'en', 1, 'https://ror.org/045y10908 London School of Theology'),
(103534, 'https://ror.org/045y2nc52', 'es', 1, 'https://ror.org/045y2nc52 Centro de Información de Medicamentos de la Universidad Nacional'),
(103535, 'https://ror.org/0460tzy11', 'es', 1, 'https://ror.org/0460tzy11 Instituto Tecnológico de La Paz'),
(103536, 'https://ror.org/0463z7496', 'fr', 1, 'https://ror.org/0463z7496 Biologie des maladies cardiovasculaires Biology of Cardiovascular Diseases'),
(103537, 'https://ror.org/04647g470', 'en', 1, 'https://ror.org/04647g470 Radford University'),
(103538, 'https://ror.org/0465bzv04', 'en', 1, 'https://ror.org/0465bzv04 Chuo Kikuu cha Tharaka Tharaka University'),
(103539, 'https://ror.org/0467x8h16', 'fr', 1, 'https://ror.org/0467x8h16 Maison des Sciences de l''Homme-Alpes'),
(103540, 'https://ror.org/0468dv016', 'id', 1, 'https://ror.org/0468dv016 Institut Nalanda Nalanda Institute'),
(103541, 'https://ror.org/0468fwt03', 'en', 1, 'https://ror.org/0468fwt03 Clinton Community College'),
(103542, 'https://ror.org/046as0q24', 'fr', 1, 'https://ror.org/046as0q24 Laboratoire de Psychopathologie et Processus de SantƩ Laboratory of Psychopathology and Health Processes'),
(103543, 'https://ror.org/046bx1082', 'fr', 1, 'https://ror.org/046bx1082 HƓpital Paris Saint-Joseph'),
(103544, 'https://ror.org/046cjf283', 'fr', 1, 'https://ror.org/046cjf283 Laboratoire Interuniversitaire des Systèmes Atmosphériques'),
(103545, 'https://ror.org/046cwyy43', 'fr', 1, 'https://ror.org/046cwyy43 Stress Environnementaux et Biosurveillance des Milieux Aquatiques'),
(103546, 'https://ror.org/046dap961', 'fr', 1, 'https://ror.org/046dap961 Laboratoire interdisciplinaire d’études sur les rĆ©flexivitĆ©s - Fonds Yan Thomas'),
(103547, 'https://ror.org/046dg4z72', 'en', 1, 'https://ror.org/046dg4z72 Marine Biological Laboratory'),
(103548, 'https://ror.org/046ee4w71', 'es', 1, 'https://ror.org/046ee4w71 Instituto Tecnologico de Delicias'),
(103549, 'https://ror.org/046fcjp93', 'pt', 1, 'https://ror.org/046fcjp93 Instituto Pasteur Pasteur Institute'),
(103550, 'https://ror.org/046gx1e19', 'id', 0, 'https://ror.org/046gx1e19 STKIP Muhammadiyah Kuningan'),
(103551, 'https://ror.org/046hach49', 'en', 1, 'https://ror.org/046hach49 Gymnastik- och Idrottshƶgskolan Swedish School of Sport and Health Sciences'),
(103552, 'https://ror.org/046hjmc37', 'fr', 1, 'https://ror.org/046hjmc37 Laboratoire Charles Fabry'),
(103553, 'https://ror.org/046jmn968', 'en', 1, 'https://ror.org/046jmn968 WE-SPARK Health Institute'),
(103554, 'https://ror.org/046nfbs12', 'en', 1, 'https://ror.org/046nfbs12 Capilano University'),
(103555, 'https://ror.org/046nvst19', 'en', 1, 'https://ror.org/046nvst19 Nasjonalt folkehelseinstitutt Norwegian Institute of Public Health'),
(103556, 'https://ror.org/046p4xa68', 'fr', 1, 'https://ror.org/046p4xa68 Institut Pasteur de CƓte d''Ivoire'),
(103557, 'https://ror.org/046p5eg67', 'sv', 1, 'https://ror.org/046p5eg67 Futurum - Akademin fƶr HƤlsa och VƄrd'),
(103558, 'https://ror.org/046pqvy32', 'en', 1, 'https://ror.org/046pqvy32 University of the Visual & Performing Arts ą®•ą®ŸąÆą®ŖąÆą®² ą®†ą®±ąÆą®±ąÆą®•ąÆˆą®•ąÆ ą®•ą®²ąÆˆą®•ą®³ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(103559, 'https://ror.org/046qcp498', 'fr', 1, 'https://ror.org/046qcp498 Usages du numƩrique pour le dƩveloppement durable'),
(103560, 'https://ror.org/0470vke61', 'no_lang_code', 1, 'https://ror.org/0470vke61 Leonardo (Italy)'),
(103561, 'https://ror.org/04713ex73', 'en', 1, 'https://ror.org/04713ex73 Chengdu Technological University ęˆéƒ½å·„äøšå­¦é™¢'),
(103562, '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'),
(103563, 'https://ror.org/0473hxz56', 'fr', 1, 'https://ror.org/0473hxz56 UnitĆ© de Recherche Œnologie'),
(103564, 'https://ror.org/0473rr271', 'en', 1, 'https://ror.org/0473rr271 Federal Highway Administration'),
(103565, 'https://ror.org/0476zq753', 'fr', 1, 'https://ror.org/0476zq753 Conception de l''Action en Situation'),
(103566, 'https://ror.org/0479azd18', 'fr', 1, 'https://ror.org/0479azd18 UniversitƩ de YaoundƩ II'),
(103567, 'https://ror.org/047agqt23', 'pt', 1, 'https://ror.org/047agqt23 Agri-CiĆŖncia, Agri-CiĆŖncia (Portugal) Agri-Science'),
(103568, 'https://ror.org/047b8ap14', 'en', 1, 'https://ror.org/047b8ap14 FactSet, FactSet (United States)'),
(103569, 'https://ror.org/047cqa323', 'en', 1, 'https://ror.org/047cqa323 HZ University of Applied Sciences Hogeschool Zeeland'),
(103570, 'https://ror.org/047dnqw48', 'en', 1, 'https://ror.org/047dnqw48 Chuo Kikuu cha Strathmore Strathmore University'),
(103571, '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'),
(103572, 'https://ror.org/047fn3608', 'en', 1, 'https://ror.org/047fn3608 Jaipuria School of Business, Ghaziabad'),
(103573, 'https://ror.org/047fwb937', 'fr', 1, 'https://ror.org/047fwb937 Biotechnologie et Signalisation Cellulaire'),
(103574, 'https://ror.org/047g2xp14', 'en', 1, 'https://ror.org/047g2xp14 New York State University College of Human Ecology'),
(103575, 'https://ror.org/047g8vk19', 'en', 1, 'https://ror.org/047g8vk19 Erciyes University Erciyes Ɯniversitesi ʏrciyəs Universiteti'),
(103576, 'https://ror.org/047j0dn45', 'pt', 1, 'https://ror.org/047j0dn45 Cruz Vermelha Portuguesa'),
(103577, 'https://ror.org/047p7y759', 'en', 1, 'https://ror.org/047p7y759 Pace University'),
(103578, 'https://ror.org/047pqfg44', 'en', 1, 'https://ror.org/047pqfg44 Ukrainian Institute for Plant Variety Examination'),
(103579, 'https://ror.org/047pw0q71', 'en', 1, 'https://ror.org/047pw0q71 Steel Dynamics, Steel Dynamics (United States)'),
(103580, 'https://ror.org/047q8av65', 'fr', 1, 'https://ror.org/047q8av65 Centre de Recherche sur les Expertises, les Arts et les Transitions'),
(103581, 'https://ror.org/047qq4s60', 'pt', 1, 'https://ror.org/047qq4s60 Instituto da Vinha e do Vinho IP'),
(103582, 'https://ror.org/047sfm294', 'en', 1, 'https://ror.org/047sfm294 Kementerian Dalam Negeri Ministry of Home Affairs'),
(103583, 'https://ror.org/047swcp54', 'en', 1, 'https://ror.org/047swcp54 Guildford College'),
(103584, 'https://ror.org/047x65e68', 'en', 1, 'https://ror.org/047x65e68 National Institute of Technology Tiruchirappalli ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą°Øą±‡ą°·ą°Øą°²ą± ą°‡ą°Øą± ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€'),
(103585, 'https://ror.org/047xz1e88', 'en', 1, 'https://ror.org/047xz1e88 L’Institut de biologie des systĆØmes d’Ottawa Ottawa Institute of Systems Biology'),
(103586, 'https://ror.org/047y28a09', 'fr', 1, 'https://ror.org/047y28a09 Centre de Recherche Droits et Perspectives du droit'),
(103587, 'https://ror.org/047ybhc09', 'en', 1, 'https://ror.org/047ybhc09 City St George''s, University of London'),
(103588, 'https://ror.org/0486x5a41', 'en', 1, 'https://ror.org/0486x5a41 Educause');
INSERT INTO `rors` VALUES
(103589, 'https://ror.org/0488bwq42', 'en', 1, 'https://ror.org/0488bwq42 Delhi Skill and Entrepreneurship University'),
(103590, 'https://ror.org/048b6qs33', 'en', 1, 'https://ror.org/048b6qs33 Kilis 7 Aralık University Kilis 7 Aralık Üniversitesi'),
(103591, 'https://ror.org/048bmqg23', 'no_lang_code', 1, 'https://ror.org/048bmqg23 Rail Safety and Standards Board (United Kingdom)'),
(103592, 'https://ror.org/048bnmc64', 'fr', 1, 'https://ror.org/048bnmc64 EMMAH - Environnement Méditerranéen et Modélisation des Agro-Hydrosystèmes'),
(103593, 'https://ror.org/048d5b075', 'en', 1, 'https://ror.org/048d5b075 Daimler Center for Automotive Information Technology Innovations'),
(103594, 'https://ror.org/048d5xq24', 'fr', 1, 'https://ror.org/048d5xq24 Laboratoire LumiĆØre, MatiĆØre et Interfaces'),
(103595, 'https://ror.org/048eqtw54', 'en', 1, 'https://ror.org/048eqtw54 Wales Institute of Social and Economic Research, Data and Methods'),
(103596, 'https://ror.org/048k52v18', 'fr', 1, 'https://ror.org/048k52v18 Chevreul Institute Institut Chevreul'),
(103597, 'https://ror.org/048kmjm50', 'en', 1, 'https://ror.org/048kmjm50 Hradec KrĆ”lovĆ© City Library Knihovna města Hradce KrĆ”lovĆ©'),
(103598, 'https://ror.org/048m81442', 'en', 1, 'https://ror.org/048m81442 National Institute of Economic and Social Research'),
(103599, 'https://ror.org/048r72142', 'en', 1, 'https://ror.org/048r72142 Scion'),
(103600, 'https://ror.org/048ryj409', 'fr', 1, 'https://ror.org/048ryj409 Laboratoire Passages XX_XXI'),
(103601, 'https://ror.org/048sx0r50', 'en', 1, 'https://ror.org/048sx0r50 Universidad de Houston University of Houston UniversitƩ de houston'),
(103602, 'https://ror.org/048t33b90', 'no_lang_code', 1, 'https://ror.org/048t33b90 Allegro Allegro (Poland)'),
(103603, 'https://ror.org/048t5xm56', 'en', 1, 'https://ror.org/048t5xm56 Kentucky Humanities Council'),
(103604, 'https://ror.org/048tf4023', 'en', 1, 'https://ror.org/048tf4023 Centre de recherche sur les francophonies canadiennes Centre for Research on French Canadian Culture'),
(103605, 'https://ror.org/048vrgr14', 'no_lang_code', 1, 'https://ror.org/048vrgr14 Becton Dickinson (United States)'),
(103606, 'https://ror.org/048xwe611', 'fr', 1, 'https://ror.org/048xwe611 Institut de Biochimie et GƩnƩtique Cellulaires'),
(103607, 'https://ror.org/048yvwh14', 'fr', 1, 'https://ror.org/048yvwh14 BioingƩnierie et Dynamique Microbienne aux Interfaces Alimentaires'),
(103608, 'https://ror.org/048z48z46', 'fr', 1, 'https://ror.org/048z48z46 Centre de Recherche en Linguistique AppliquƩe'),
(103609, 'https://ror.org/048z62t22', 'fr', 1, 'https://ror.org/048z62t22 Laboratoire d''Innovation et NumĆ©rique pour l''Ɖducation'),
(103610, 'https://ror.org/0490a8967', 'pt', 1, 'https://ror.org/0490a8967 Tranquilidade, Tranquilidade (Portugal) Tranquility'),
(103611, 'https://ror.org/04916qv51', 'fr', 1, 'https://ror.org/04916qv51 Immuno-RƩgulation des Maladies Auto- immunes Inflammatoires et Cancer'),
(103612, 'https://ror.org/0491f5305', 'en', 1, 'https://ror.org/0491f5305 University of Moratuwa ą®®ąÆŠą®±ą®ŸąÆą®ŸąÆą®µąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą¶øą·œą¶»ą¶§ą·”ą·€ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(103613, 'https://ror.org/049281z38', 'en', 1, 'https://ror.org/049281z38 Ilocos Training and Regional Medical Center'),
(103614, 'https://ror.org/0492nfe34', 'en', 1, 'https://ror.org/0492nfe34 University of Cape Coast'),
(103615, 'https://ror.org/0494jpz02', 'fr', 1, 'https://ror.org/0494jpz02 Centre de Recherche en CancƩrologie de Marseille'),
(103616, 'https://ror.org/04950b532', 'en', 1, 'https://ror.org/04950b532 NOAA National Marine Fisheries Service Office of Science and Technology'),
(103617, 'https://ror.org/0495fxg12', 'fr', 1, 'https://ror.org/0495fxg12 Institut Pasteur Pasteur Institute Pasteur Institutua'),
(103618, 'https://ror.org/0496m4831', 'en', 1, 'https://ror.org/0496m4831 Royal College of Nursing'),
(103619, 'https://ror.org/0496vr396', 'en', 1, 'https://ror.org/0496vr396 Flanders Marine Institute Vlaams Instituut voor de Zee'),
(103620, 'https://ror.org/049ahjd53', 'en', 1, 'https://ror.org/049ahjd53 Daimler Truck, Daimler Truck (Germany)'),
(103621, 'https://ror.org/049am9t04', 'fr', 1, 'https://ror.org/049am9t04 HƓpital Saint-Louis'),
(103622, 'https://ror.org/049bh0z35', 'en', 1, 'https://ror.org/049bh0z35 Kungliga biblioteket National Library of Sweden Ruotsin kuninkaallinen kirjasto'),
(103623, 'https://ror.org/049c46160', 'en', 1, 'https://ror.org/049c46160 Naif Arab University for Security Sciences Ų¬Ų§Ł…Ų¹Ų© Ł†Ų§ŁŠŁ Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų£Ł…Ł†ŁŠŲ©'),
(103624, 'https://ror.org/049cr8j69', 'pt', 1, 'https://ror.org/049cr8j69 Laboratório de Polícia Científica'),
(103625, 'https://ror.org/049czkm07', 'en', 1, 'https://ror.org/049czkm07 UK Reproducibility Network'),
(103626, '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)'),
(103627, 'https://ror.org/049e1px04', 'en', 1, 'https://ror.org/049e1px04 Jiangxi Academy of Sciences ę±Ÿč„æēœē§‘å­¦é™¢'),
(103628, 'https://ror.org/049e6bc10', 'en', 1, 'https://ror.org/049e6bc10 Northumbria University Prifysgol Northymbria'),
(103629, 'https://ror.org/049hngf66', 'es', 1, 'https://ror.org/049hngf66 Laboratorio de Planificación y Gestión Estratégica'),
(103630, 'https://ror.org/049hrzs50', 'en', 1, 'https://ror.org/049hrzs50 University of Wisconsin–Whitewater'),
(103631, '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'),
(103632, 'https://ror.org/049k66y27', 'fr', 1, 'https://ror.org/049k66y27 Laboratoire de Physique et Chimie de l’Environnement et de l’Espace'),
(103633, 'https://ror.org/049k6hp62', 'en', 1, 'https://ror.org/049k6hp62 Deccan College Post Graduate and Research Institute ą¤”ą„‡ą¤•ą„ą¤•ą¤Ø ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤Ŗą¤¦ą¤µą„ą¤Æą„ą¤¤ą„ą¤¤ą¤° आणि ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(103634, 'https://ror.org/049m34h22', 'en', 1, 'https://ror.org/049m34h22 Bifröst University HÔskólinn Ô Bifröst'),
(103635, 'https://ror.org/049s0ch10', 'no_lang_code', 1, 'https://ror.org/049s0ch10 Rakon (France)'),
(103636, 'https://ror.org/049sebs45', 'no_lang_code', 1, 'https://ror.org/049sebs45 Chubb, Chubb (Switzerland)'),
(103637, 'https://ror.org/049sjm257', 'no_lang_code', 1, 'https://ror.org/049sjm257 Fortinet, Fortinet (United States)'),
(103638, 'https://ror.org/049tgcd06', 'en', 1, 'https://ror.org/049tgcd06 Indian Institute of Technology Delhi Institut indien de technologie de delhi ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®¤ą®æą®²ąÆą®²ą®æ ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°¢ą°æą°²ą±ą°²ą±€ ą²‡ą²‚ą²”ą²æą²Æą²Øą³ ą²‡ą²Øą³ ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²«ą³ ą²Ÿą³†ą²•ą³ą²Øą²¾ą²²ą²œą²æ ದೆಹಲಿ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“”ąµ†ąµ½ą“¹ą“æ'),
(103639, 'https://ror.org/049v3kt97', 'en', 1, 'https://ror.org/049v3kt97 National Center for Measurement and Calibration Center'),
(103640, 'https://ror.org/049vx3n55', 'en', 1, 'https://ror.org/049vx3n55 Charles Schwab Corporation, Charles Schwab Corporation (United States)'),
(103641, 'https://ror.org/049xhb141', 'en', 1, 'https://ror.org/049xhb141 Ostim Technical University Ostim Teknik Üniversitesi'),
(103642, 'https://ror.org/049ykdj13', 'en', 1, 'https://ror.org/049ykdj13 ColdQuanta (United States), ColdQuanta, Inc., DBA Infleqtion'),
(103643, 'https://ror.org/04a1a1e81', 'en', 1, 'https://ror.org/04a1a1e81 Dublin City University Ollscoil Chathair Bhaile Ɓtha Cliath'),
(103644, 'https://ror.org/04a31ep84', 'en', 1, 'https://ror.org/04a31ep84 Society of Swedish Literature in Finland Svenska LitteratursƤllskapet i Finland'),
(103645, 'https://ror.org/04a6mjk91', 'de', 1, 'https://ror.org/04a6mjk91 HochschuljubilƤumsstiftung der Stadt Wien University Jubilee Foundation of the City of Vienna'),
(103646, 'https://ror.org/04a9z6x78', 'fr', 1, 'https://ror.org/04a9z6x78 Infections Cardiovasculaires Virales et inflammation en pathologie humaine'),
(103647, 'https://ror.org/04aakzd15', 'no_lang_code', 1, 'https://ror.org/04aakzd15 Rinnoco Ltd, Rinnoco Ltd (Cyprus)'),
(103648, 'https://ror.org/04abkkz03', 'fr', 1, 'https://ror.org/04abkkz03 Centre International deHautes Etudes Agronomiques MƩditerranƩennes'),
(103649, 'https://ror.org/04abwvq32', 'en', 1, 'https://ror.org/04abwvq32 Input Output (Singapore)'),
(103650, 'https://ror.org/04achg568', 'en', 1, 'https://ror.org/04achg568 Royal Asiatic Society'),
(103651, 'https://ror.org/04aeaje24', 'en', 1, 'https://ror.org/04aeaje24 Hawai''i Council for the Humanities'),
(103652, 'https://ror.org/04af4be73', 'en', 1, 'https://ror.org/04af4be73 Halesowen College'),
(103653, 'https://ror.org/04agawh36', 'en', 1, 'https://ror.org/04agawh36 European Federation for Services to Individuals'),
(103654, 'https://ror.org/04ahza989', 'fr', 1, 'https://ror.org/04ahza989 CItƩs, Territoires, Environnement et SociƩtƩs'),
(103655, 'https://ror.org/04andmq85', 'fr', 1, 'https://ror.org/04andmq85 Institut National de Recherches ArchƩologiques PrƩventives'),
(103656, 'https://ror.org/04anrxg79', 'en', 0, 'https://ror.org/04anrxg79 Northern Vermont University'),
(103657, 'https://ror.org/04apw5n28', 'en', 1, 'https://ror.org/04apw5n28 Academia de Muzica, Teatru si Arte Plastice Academy of Music Theatre and Fine Arts ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø, театра Šø ŠøŠ·Š¾Š±Ń€Š°Š·ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(103658, 'https://ror.org/04aqkwm14', 'no_lang_code', 0, 'https://ror.org/04aqkwm14 Selex ES (Italy)'),
(103659, 'https://ror.org/04aqtsh50', 'fr', 1, 'https://ror.org/04aqtsh50 Centre Clermont-Auvergne-RhƓne-Alpes'),
(103660, 'https://ror.org/04ar4g412', 'en', 1, 'https://ror.org/04ar4g412 Malone University'),
(103661, 'https://ror.org/04as3rk94', 'en', 1, 'https://ror.org/04as3rk94 Grenoble Institute of Neurosciences Institut des Neurosciences de Grenoble'),
(103662, 'https://ror.org/04asck240', 'en', 1, 'https://ror.org/04asck240 Inonu University İnönü Üniversitesi'),
(103663, 'https://ror.org/04askxv05', 'en', 1, 'https://ror.org/04askxv05 Hunan University of Finance and Economics ę¹–å—č“¢ę”æē»ęµŽå­¦é™¢'),
(103664, 'https://ror.org/04avat194', 'en', 1, 'https://ror.org/04avat194 Oceanic Platform of the Canary Islands Plataforma OceƔnica de Canarias'),
(103665, 'https://ror.org/04axb9j69', 'fr', 1, 'https://ror.org/04axb9j69 Laboratoire d’Electrochimie et de Physico-chimie des MatĆ©riaux et des Interfaces'),
(103666, 'https://ror.org/04b202422', 'es', 1, 'https://ror.org/04b202422 Universidad Tecnológica Gral. Mariano Escobedo'),
(103667, 'https://ror.org/04b682n55', 'en', 1, 'https://ror.org/04b682n55 Ivy Enber Christian University'),
(103668, 'https://ror.org/04b7fym73', 'en', 1, 'https://ror.org/04b7fym73 Sheikh Hasina Medical University শেখ হাসিনা মেঔিকেল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼, খুলনা'),
(103669, 'https://ror.org/04b7gmr83', 'en', 1, 'https://ror.org/04b7gmr83 Eversource Energy, Eversource Energy (United States)'),
(103670, 'https://ror.org/04b7zk537', 'no_lang_code', 1, 'https://ror.org/04b7zk537 TÜV Nord (United States)'),
(103671, 'https://ror.org/04b82qh04', 'en', 1, 'https://ror.org/04b82qh04 Institute for Philosophy, Political Science and Religion Studies Š¤ŠøŠ»Š¾ŃŠ¾Ń„ŠøŃ, ŃŠ°ŃŃŠ°Ń‚Ń‚Š°Š½Ńƒ және Š“Ń–Š½Ń‚Š°Š½Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(103672, 'https://ror.org/04b8v1s79', 'en', 1, 'https://ror.org/04b8v1s79 Tilburg University Universiteit van Tilburg'),
(103673, 'https://ror.org/04b9q5f39', 'fr', 1, 'https://ror.org/04b9q5f39 Laboratoire de SpectromƩtrie Ionique et MolƩculaire'),
(103674, 'https://ror.org/04b9vs620', 'fr', 1, 'https://ror.org/04b9vs620 Imagerie et StratƩgies ThƩrapeutiques pour les Cancers et Tissus cƩrƩbraux'),
(103675, 'https://ror.org/04bckew43', 'fr', 1, 'https://ror.org/04bckew43 HƓpitaux Universitaires de Strasbourg'),
(103676, 'https://ror.org/04beeeh24', 'en', 1, 'https://ror.org/04beeeh24 Saybrook University'),
(103677, 'https://ror.org/04bg06z22', 'en', 1, 'https://ror.org/04bg06z22 Burnham On Sea War Memorial Hospital'),
(103678, 'https://ror.org/04bgbbh33', 'fr', 1, 'https://ror.org/04bgbbh33 Institut Universitaire des SystĆØmes Thermiques Industriels'),
(103679, 'https://ror.org/04bgjpg77', 'fr', 1, 'https://ror.org/04bgjpg77 Laboratoire de Physique des Gaz et des Plasmas'),
(103680, 'https://ror.org/04bgzse17', 'fr', 1, 'https://ror.org/04bgzse17 Chimie Biologie Innovation'),
(103681, 'https://ror.org/04bjfe226', 'en', 1, 'https://ror.org/04bjfe226 Centurion Pharma, Centurion Pharma (Turkey)'),
(103682, 'https://ror.org/04bjtbt12', 'es', 1, 'https://ror.org/04bjtbt12 Higher Technological Institute of Lerdo Instituto Tecnológico Superior de Lerdo'),
(103683, 'https://ror.org/04bnnrk48', 'fr', 1, 'https://ror.org/04bnnrk48 Clinical Psychology, Psychopathology, Psychanalysis Laboratoire de psychologie clinique, psychopathologie, psychanalyse'),
(103684, 'https://ror.org/04bnxa153', 'en', 1, 'https://ror.org/04bnxa153 Naval Undersea Warfare Center'),
(103685, 'https://ror.org/04bsgk835', 'no_lang_code', 1, 'https://ror.org/04bsgk835 Ekologické Služby (Czechia) Ekologické služby, s.r.o'),
(103686, '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'),
(103687, 'https://ror.org/04bspkv73', 'en', 1, 'https://ror.org/04bspkv73 Zhejiang Gongshang University Hangzhou College of Commerce ęµ™ę±Ÿå·„å•†å¤§å­¦ę­å·žå•†å­¦é™¢'),
(103688, 'https://ror.org/04btem923', 'en', 1, 'https://ror.org/04btem923 Measurement Standards Section'),
(103689, 'https://ror.org/04c152q53', 'tr', 1, 'https://ror.org/04c152q53 İzmir Democracy University İzmir Demokrasi Üniversitesi'),
(103690, 'https://ror.org/04c3cen15', 'fr', 1, 'https://ror.org/04c3cen15 Institut de Chimie et des MatƩriaux Paris-Est'),
(103691, 'https://ror.org/04c3cgg32', 'en', 1, 'https://ror.org/04c3cgg32 Liaoning Normal University 辽宁师范大学'),
(103692, 'https://ror.org/04c3dhk56', 'da', 1, 'https://ror.org/04c3dhk56 Sjællands Universitetshospital, Nykøbing F. Zealand University Hospital, Nykøbing F.'),
(103693, 'https://ror.org/04c5jwj47', 'pl', 1, 'https://ror.org/04c5jwj47 Collegium Medicum in Bydgoszcz'),
(103694, 'https://ror.org/04c794867', 'en', 1, 'https://ror.org/04c794867 Centre de Droit de l''environnement Centre for Environmental Law and Global Sustainability'),
(103695, 'https://ror.org/04c7yen31', 'en', 1, 'https://ror.org/04c7yen31 Kookje College źµ­ģ œėŒ€ķ•™źµ'),
(103696, 'https://ror.org/04c8e9019', 'no_lang_code', 1, 'https://ror.org/04c8e9019 Madurai Kamaraj University மதுரை ą®•ą®¾ą®®ą®°ą®¾ą®šą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“®ą“¦ąµą“°ąµˆ ą“•ą“¾ą“®ą“°ą“¾ą“œąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(103697, 'https://ror.org/04c9vp017', 'no_lang_code', 1, 'https://ror.org/04c9vp017 Supernal, Supernal (United States), Supernal, LLC'),
(103698, 'https://ror.org/04cba8149', 'it', 1, 'https://ror.org/04cba8149 Istituto Teologico Leoniano di Anagni'),
(103699, 'https://ror.org/04cbgjc24', 'en', 1, 'https://ror.org/04cbgjc24 Petrified Forest National Park'),
(103700, 'https://ror.org/04ccm0n64', 'en', 1, 'https://ror.org/04ccm0n64 City Institute, Dalian University of Technology å¤§čæžē†å·„å¤§å­¦åŸŽåø‚å­¦é™¢'),
(103701, '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'),
(103702, 'https://ror.org/04ces3204', 'fr', 1, 'https://ror.org/04ces3204 Huma-Num'),
(103703, 'https://ror.org/04cfjax51', 'fr', 1, 'https://ror.org/04cfjax51 Fondation Lenval Lenval Foundation'),
(103704, 'https://ror.org/04cfvp438', 'en', 1, 'https://ror.org/04cfvp438 CGFNS International, Inc.'),
(103705, 'https://ror.org/04chrp450', 'en', 1, 'https://ror.org/04chrp450 Nagoya University 名古屋大学'),
(103706, 'https://ror.org/04chwzs27', 'en', 1, 'https://ror.org/04chwzs27 SOMT University of Physiotherapy'),
(103707, 'https://ror.org/04ckqgs57', 'en', 1, 'https://ror.org/04ckqgs57 Kenyon College'),
(103708, 'https://ror.org/04cms1b08', 'fr', 1, 'https://ror.org/04cms1b08 Transitions EnergƩtiques et Environnementales'),
(103709, 'https://ror.org/04cn7g698', 'en', 1, 'https://ror.org/04cn7g698 Haryana State Council for Science and Technology'),
(103710, 'https://ror.org/04cq7wg91', 'en', 1, 'https://ror.org/04cq7wg91 Melbourne Polytechnic'),
(103711, 'https://ror.org/04cre2h49', 'fr', 1, 'https://ror.org/04cre2h49 Sciences, SociĆ©tĆ©, HistoricitĆ©, Ɖducation et Pratiques'),
(103712, 'https://ror.org/04cvd2327', 'pt', 1, 'https://ror.org/04cvd2327 Associação Científica Proteomass Proteomass Scientific Society'),
(103713, 'https://ror.org/04cvt0159', 'en', 1, 'https://ror.org/04cvt0159 Bureau of Quality and Safety of Food ąøŖąø³ąø™ąø±ąøąø„ąøøąø“ąø ąø²ąøžą¹ąø„ąø°ąø„ąø§ąø²ąø”ąø›ąø„ąø­ąø”ąø ąø±ąø¢ąø­ąø²ąø«ąø²ąø£'),
(103714, 'https://ror.org/04cw6st05', 'en', 1, 'https://ror.org/04cw6st05 Prifysgol Llundain University of London'),
(103715, 'https://ror.org/04cx8ae47', 'en', 1, 'https://ror.org/04cx8ae47 Owens Community College'),
(103716, 'https://ror.org/04cxsn644', 'fr', 1, 'https://ror.org/04cxsn644 DƩlƩgation Nord, Pas-de-Calais et Picardie'),
(103717, 'https://ror.org/04cyqkg02', 'en', 1, 'https://ror.org/04cyqkg02 Baku Research Institute'),
(103718, 'https://ror.org/04czrrc08', 'en', 1, 'https://ror.org/04czrrc08 Bayan Islamic Graduate School'),
(103719, 'https://ror.org/04d087g06', 'en', 1, 'https://ror.org/04d087g06 Association of Engineering Technology Svaz strojƭrenskƩ technologie'),
(103720, 'https://ror.org/04d10cx61', 'pt', 1, 'https://ror.org/04d10cx61 Museu de Lisboa'),
(103721, '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'),
(103722, 'https://ror.org/04d5x5x34', 'fr', 1, 'https://ror.org/04d5x5x34 Laboratoire en Innovation, Technologies, Economie et Management'),
(103723, 'https://ror.org/04d996474', 'en', 1, 'https://ror.org/04d996474 Southwest University of Science and Technology č„æå—ē§‘ęŠ€å¤§å­¦'),
(103724, 'https://ror.org/04d9hcc21', 'en', 1, 'https://ror.org/04d9hcc21 Arizona Humanities'),
(103725, 'https://ror.org/04daj8721', 'fr', 1, 'https://ror.org/04daj8721 France, AmƩriques, Espagne, SociƩtƩs, Pouvoirs, Acteurs'),
(103726, 'https://ror.org/04db8q179', 'no_lang_code', 1, 'https://ror.org/04db8q179 Agri Obtentions (France)'),
(103727, 'https://ror.org/04dde1554', 'en', 1, 'https://ror.org/04dde1554 Amsterdam University of the Arts Amsterdamse Hogeschool voor de Kunsten'),
(103728, 'https://ror.org/04ddfwm68', 'no_lang_code', 1, 'https://ror.org/04ddfwm68 Shenyang University'),
(103729, 'https://ror.org/04dese585', 'en', 1, 'https://ror.org/04dese585 Indian Institute of Science Bangalore ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ভারতীয় ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦øą¦‚ą¦øą§ą¦„ą¦¾ ਭਾਰਤੀ ਵਿਗਿਆਨ ਅਦਾਰਾ ભારતીય ąŖµąŖæąŖœą«ąŖžąŖ¾ąŖØ ąŖøąŖ‚ąŖøą«ąŖ„ąŖ¾ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą± ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°øą±ˆą°Øą±ą°øą± ಭಾರತೀಯ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³† ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“øą“Æąµ»ą“øąµ'),
(103730, 'https://ror.org/04dfx8082', 'en', 1, 'https://ror.org/04dfx8082 Mineralogical Society of the United Kingdom and Ireland'),
(103731, 'https://ror.org/04dn6rz78', 'pt', 1, 'https://ror.org/04dn6rz78 CADIn'),
(103732, 'https://ror.org/04dpm2z73', 'es', 1, 'https://ror.org/04dpm2z73 Institut Pasteur de Montevideo'),
(103733, 'https://ror.org/04ds0jm32', 'en', 1, 'https://ror.org/04ds0jm32 National Institute of Technology Durgapur ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¦ą„ą¤°ą„ą¤—ą¤¾ą¤Ŗą„ą¤° ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ, ą®¤ąÆą®°ąÆą®•ą®¾ą®ŖąÆ‚ą®°ąÆ'),
(103734, 'https://ror.org/04dse4f93', 'en', 1, 'https://ror.org/04dse4f93 Data & Society Research Institute'),
(103735, 'https://ror.org/04dsjbp13', 'fr', 1, 'https://ror.org/04dsjbp13 Maladies RAres du DEveloppement embryonnaire et du MEtabolisme'),
(103736, 'https://ror.org/04dtbh109', 'fr', 1, 'https://ror.org/04dtbh109 Centre d''Investigation Clinique Bichat'),
(103737, 'https://ror.org/04dv4he91', 'fr', 1, 'https://ror.org/04dv4he91 Laboratoire d''Informatique en Images et SystĆØmes d''Information'),
(103738, 'https://ror.org/04dwckp88', 'en', 0, 'https://ror.org/04dwckp88 Concordia University'),
(103739, 'https://ror.org/04dy2xw62', 'no_lang_code', 0, 'https://ror.org/04dy2xw62 Text+'),
(103740, 'https://ror.org/04dy97z61', 'fr', 1, 'https://ror.org/04dy97z61 LIDYL, Lasers, Interactions, and Dynamics Laboratory Laboratoire Interactions, Dynamiques et Lasers'),
(103741, 'https://ror.org/04dyeh227', 'en', 1, 'https://ror.org/04dyeh227 Bordeaux Imaging Center'),
(103742, 'https://ror.org/04e2ndp15', 'fr', 1, 'https://ror.org/04e2ndp15 Centre de recherches juridiques de Grenoble'),
(103743, 'https://ror.org/04e3sqx89', 'en', 1, 'https://ror.org/04e3sqx89 Frome Community Hospital'),
(103744, 'https://ror.org/04e67ap71', 'en', 1, 'https://ror.org/04e67ap71 Estonian Business School'),
(103745, 'https://ror.org/04e6y1282', 'en', 1, 'https://ror.org/04e6y1282 Harbin University of Science and Technology å“ˆå°”ę»Øē†å·„å¤§å­¦'),
(103746, 'https://ror.org/04e71td73', 'fr', 1, 'https://ror.org/04e71td73 Ɖcole SupĆ©rieure des GĆ©omĆØtres et Topographes'),
(103747, 'https://ror.org/04e89s906', 'fr', 1, 'https://ror.org/04e89s906 Laboratoire de Physique des Lasers, Atomes et MolƩcules'),
(103748, 'https://ror.org/04e9t3w40', 'en', 1, 'https://ror.org/04e9t3w40 Arkansas Humanities Council'),
(103749, 'https://ror.org/04ecnk821', 'en', 1, 'https://ror.org/04ecnk821 University Center of Aflou'),
(103750, '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'),
(103751, 'https://ror.org/04eeyfe07', 'fr', 1, 'https://ror.org/04eeyfe07 Centre MĆ©diterranĆ©en de l’Environnement et de la BiodiversitĆ©'),
(103752, 'https://ror.org/04ef65y11', 'fr', 1, 'https://ror.org/04ef65y11'),
(103753, 'https://ror.org/04ef91678', 'fr', 1, 'https://ror.org/04ef91678 Institut de Radiobiologie Cellulaire et MolƩculaire'),
(103754, 'https://ror.org/04efm0253', 'en', 1, 'https://ror.org/04efm0253'),
(103755, 'https://ror.org/04ej53908', 'fr', 1, 'https://ror.org/04ej53908 Typologie et Universaux Linguistiques'),
(103756, 'https://ror.org/04ejags36', 'no_lang_code', 1, 'https://ror.org/04ejags36 Sciensano (Belgium)'),
(103757, 'https://ror.org/04en8wb91', 'en', 1, 'https://ror.org/04en8wb91 Suzhou University of Science and Technology č‹å·žē§‘ęŠ€å­¦é™¢'),
(103758, 'https://ror.org/04eq71r04', 'pt', 1, 'https://ror.org/04eq71r04 Instituto Federal de Educação, Ciência e Tecnologia Farroupilha'),
(103759, 'https://ror.org/04eqvyq94', 'en', 1, 'https://ror.org/04eqvyq94 Jashore University of Science and Technology যশোর ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(103760, 'https://ror.org/04es49j42', 'it', 1, 'https://ror.org/04es49j42 Istituto Zooprofilattico Sperimentale dell''Abruzzo e del Molise G. Caporale'),
(103761, 'https://ror.org/04etcj997', 'en', 1, 'https://ror.org/04etcj997 Inter-University Centre for Astronomy and Astrophysics ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°-ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦° ফর ą¦…ą§ą¦Æą¦¾ą¦øą§ą¦Ÿą§ą¦°ą§‹ą¦Øą¦®ą¦æ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦…ą§ą¦Æą¦¾ą¦øą§ą¦Ÿą§ą¦°ą§‹ą¦«ą¦æą¦œą¦æą¦•ą§ą¦ø ą“‡ą“Øąµą“±ąµ¼ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“†ą“øąµą“Ÿąµą“°ąµ‹ą“£ą“®ą“æ ą“†ąµ»ą“”ąµ ą“†ą“øąµą“Ÿąµą“°ąµ‹ą“«ą“æą“øą“æą“•ąµą“øąµ'),
(103762, 'https://ror.org/04eymdx19', 'en', 1, 'https://ror.org/04eymdx19 Hebei Medical University ę²³åŒ—åŒ»ē§‘å¤§å­¦'),
(103763, 'https://ror.org/04ezxnp02', 'en', 1, 'https://ror.org/04ezxnp02 Birds Canada Oiseaux Canada'),
(103764, 'https://ror.org/04f0j5d06', 'en', 1, 'https://ror.org/04f0j5d06 Guangzhou College of Commerce å¹æå·žå•†å­¦é™¢'),
(103765, 'https://ror.org/04f0qj703', 'en', 1, 'https://ror.org/04f0qj703 Robert Gordon University'),
(103766, 'https://ror.org/04f13ze88', 'en', 1, 'https://ror.org/04f13ze88 People''s Liberation Army Air Force 中国人民解放军空军'),
(103767, 'https://ror.org/04f1eek20', 'en', 1, 'https://ror.org/04f1eek20 Universiti Cyberjaya University of Cyberjaya'),
(103768, 'https://ror.org/04f41cb79', 'en', 1, 'https://ror.org/04f41cb79 Hubei University of Education ę¹–åŒ—ę•™č‚²å­¦é™¢'),
(103769, 'https://ror.org/04f5rw142', 'fr', 1, 'https://ror.org/04f5rw142 Laboratoire de MƩcanique, Multiphysique, MultiƩchelle'),
(103770, 'https://ror.org/04f6hmf16', 'fr', 0, 'https://ror.org/04f6hmf16 COMUE Languedoc-Roussillon UniversitƩs Languedoc-Roussillon Universities'),
(103771, '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'),
(103772, 'https://ror.org/04f7wcr96', 'fr', 1, 'https://ror.org/04f7wcr96 Navigable Waterways of France Voies navigables de France'),
(103773, 'https://ror.org/04f81fm77', 'tr', 1, 'https://ror.org/04f81fm77 Sivas Cumhuriyet University Sivas Cumhuriyet Üniversitesi'),
(103774, 'https://ror.org/04fa3ke77', 'fr', 1, 'https://ror.org/04fa3ke77 Structures et MarchƩs Agricoles, Ressources et Territoires'),
(103775, 'https://ror.org/04facbs33', 'en', 1, 'https://ror.org/04facbs33 Communication University of China 中国传媒大学'),
(103776, 'https://ror.org/04fawj142', 'de', 1, 'https://ror.org/04fawj142 PƤdagogische Hochschule FHNW'),
(103777, 'https://ror.org/04fc8dp24', 'fr', 1, 'https://ror.org/04fc8dp24 GƩnƩtique MƩdicale & GƩnomique Fonctionelle Medical Genetics & Functional Genomics'),
(103778, 'https://ror.org/04fce1c40', 'no_lang_code', 1, 'https://ror.org/04fce1c40 Clarivate (United States)'),
(103779, 'https://ror.org/04fd4a013', 'en', 1, 'https://ror.org/04fd4a013 Center for Process Studies'),
(103780, 'https://ror.org/04fgntk96', 'en', 1, 'https://ror.org/04fgntk96 Tara Oceans Systems Ecology & Evolution'),
(103781, 'https://ror.org/04fhrs205', 'fr', 1, 'https://ror.org/04fhrs205 Brain and Cognition Research Center Centre de recherche cerveau et cognition'),
(103782, 'https://ror.org/04fj16d47', 'no_lang_code', 1, 'https://ror.org/04fj16d47 Kroger, Kroger (United States)'),
(103783, 'https://ror.org/04fj67t72', 'en', 1, 'https://ror.org/04fj67t72 Eesti Lennuakadeemia Estonian Aviation Academy Š­ŃŃ‚Š¾Š½ŃŠŗŠ°Ń Š°Š²ŠøŠ°Ń†ŠøŠ¾Š½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(103784, 'https://ror.org/04fjtte88', 'en', 1, 'https://ror.org/04fjtte88 Süleyman Demirel University Süleyman Demirel Üniversitesi Süleyman Dəmirəl Universiteti'),
(103785, 'https://ror.org/04fke6556', 'fr', 1, 'https://ror.org/04fke6556 Recherches en Psychopathologie et Psychanalyse'),
(103786, 'https://ror.org/04fm0sh33', 'fr', 1, 'https://ror.org/04fm0sh33 Laboratoire de PlanƩtologie et GƩosciences Laboratory of Planetology and Geosciences'),
(103787, 'https://ror.org/04fm2fn75', 'en', 1, 'https://ror.org/04fm2fn75 Kalasalingam Academy of Research and Education ą®•ą®²ą®šą®²ą®æą®™ąÆą®•ą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(103788, 'https://ror.org/04fnxsj42', 'en', 1, 'https://ror.org/04fnxsj42 University of North Carolina at Greensboro UniversitƩ de caroline du nord Ơ greensboro'),
(103789, 'https://ror.org/04fp4ps48', 'en', 1, 'https://ror.org/04fp4ps48 Franklin & Marshall College'),
(103790, 'https://ror.org/04fq9j139', 'en', 1, 'https://ror.org/04fq9j139 Max Planck Institute for Intelligent Systems Max-Planck-Institut für Intelligente Systeme'),
(103791, 'https://ror.org/04fr7pd94', 'fr', 1, 'https://ror.org/04fr7pd94 Institut de Chimie SƩparative de Marcoule Marcoule Institute for Separation Chemistry'),
(103792, 'https://ror.org/04frnz493', 'en', 1, 'https://ror.org/04frnz493 Veer Narmad South Gujarat University વીર ąŖØąŖ°ą«ąŖ®ąŖ¦ ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(103793, 'https://ror.org/04fsxy317', 'fr', 1, 'https://ror.org/04fsxy317 ScanMAT'),
(103794, 'https://ror.org/04ftj7e51', 'en', 1, 'https://ror.org/04ftj7e51 National Institute of Public Health'),
(103795, 'https://ror.org/04fxmcy40', 'en', 1, 'https://ror.org/04fxmcy40 Army Command College äø­å›½äŗŗę°‘č§£ę”¾å†›é™†å†›ęŒ‡ęŒ„å­¦é™¢ę’­ęŠ„'),
(103796, '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'),
(103797, 'https://ror.org/04fysrj11', 'en', 1, 'https://ror.org/04fysrj11 National Fertilizer Corporation, National Fertilizer Corporation (Pakistan), National Fertilizer Corporation of Pakistan (Pvt) Ltd Ł†ŪŒŲ“Ł†Ł„ ŁŲ±Ł¹ŪŒŁ„Ų§Ų¦Ų²Ų± Ś©Ų§Ų±Ł¾ŁˆŲ±ŪŒŲ“Ł† پاکستان'),
(103798, 'https://ror.org/04fzhyx73', 'en', 1, 'https://ror.org/04fzhyx73 Taizhou University 台州学院'),
(103799, 'https://ror.org/04fzm7v55', 'en', 1, 'https://ror.org/04fzm7v55 University of Zielona Góra Uniwersytet Zielonogórski'),
(103800, 'https://ror.org/04g0ktq11', 'fr', 1, 'https://ror.org/04g0ktq11 BibliothĆØque Jacques Hadamard'),
(103801, 'https://ror.org/04g2vpn86', 'en', 1, 'https://ror.org/04g2vpn86 Royal Holloway University of London'),
(103802, 'https://ror.org/04g3bsp16', 'en', 1, 'https://ror.org/04g3bsp16 Reaseheath College'),
(103803, 'https://ror.org/04g5gcg95', 'en', 1, 'https://ror.org/04g5gcg95 Heilbronn University Hochschule Heilbronn'),
(103804, 'https://ror.org/04g7xjj37', 'no_lang_code', 1, 'https://ror.org/04g7xjj37 Rakon, Rakon (New Zealand)'),
(103805, 'https://ror.org/04g8a6786', 'fr', 1, 'https://ror.org/04g8a6786 BibliothĆØque publique d''information Public Information Library'),
(103806, 'https://ror.org/04g9e0f44', 'en', 1, 'https://ror.org/04g9e0f44 Willamette University'),
(103807, 'https://ror.org/04g9rt435', 'fr', 1, 'https://ror.org/04g9rt435 Institut des Cellules Souches pour le Traitement et l''Ɖtude des Maladies MonogĆ©niques'),
(103808, 'https://ror.org/04gcegc37', 'en', 1, 'https://ror.org/04gcegc37 China University of Geosciences äø­å›½åœ°č“Øå¤§å­¦'),
(103809, 'https://ror.org/04gcfqs37', 'en', 1, 'https://ror.org/04gcfqs37 National Highway Traffic Safety Administration'),
(103810, 'https://ror.org/04gds4h28', 'en', 1, 'https://ror.org/04gds4h28 Drew University UniversitƩ de drew'),
(103811, 'https://ror.org/04gf9wd48', 'fr', 1, 'https://ror.org/04gf9wd48 Institut de Recherche en Musicologie'),
(103812, 'https://ror.org/04gh2v067', 'fr', 1, 'https://ror.org/04gh2v067 Physiologie De L''Axe Gonadotrope'),
(103813, 'https://ror.org/04gkprb03', 'en', 1, 'https://ror.org/04gkprb03 Cyprus Research and Academic Network'),
(103814, 'https://ror.org/04gpd4q15', 'en', 1, 'https://ror.org/04gpd4q15 City University of Macau Universidade da Cidade de Macau ę¾³é–€åŸŽåø‚å¤§å­ø'),
(103815, 'https://ror.org/04gpe6h67', 'fr', 1, 'https://ror.org/04gpe6h67 Savoirs, Environnement, SociƩtƩs'),
(103816, 'https://ror.org/04gq09j61', 'en', 1, 'https://ror.org/04gq09j61 Institute of Agriculture and Animal Science'),
(103817, 'https://ror.org/04grq1g73', 'fr', 1, 'https://ror.org/04grq1g73 Centre amiƩnois de recherche en Ʃducation et formation'),
(103818, 'https://ror.org/04gsj9h69', 'en', 1, 'https://ror.org/04gsj9h69 Fifth Third Bancorp, Fifth Third Bancorp (United States)'),
(103819, 'https://ror.org/04gtjhw98', 'en', 1, 'https://ror.org/04gtjhw98 Shandong University of Science and Technology å±±äøœē§‘ęŠ€å¤§å­¦'),
(103820, 'https://ror.org/04gvvdt54', 'en', 1, 'https://ror.org/04gvvdt54 Public Health Laboratory'),
(103821, 'https://ror.org/04gx72j20', 'en', 1, 'https://ror.org/04gx72j20 Indian Institute of Technology Bhubaneswar ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤­ą„ą¤µą¤Øą„‡ą¤¶ą„ą¤µą¤° ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®ŖąÆą®µą®©ąÆ‡ą®šąÆą®µą®°ąÆ'),
(103822, 'https://ror.org/04gxn9h90', 'fr', 1, 'https://ror.org/04gxn9h90 Savoirs et Mondes Indiens'),
(103823, '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'),
(103824, 'https://ror.org/04h1tgj82', 'en', 1, 'https://ror.org/04h1tgj82 Humanities North Dakota'),
(103825, 'https://ror.org/04h699437', 'en', 1, 'https://ror.org/04h699437 University of Leicester'),
(103826, 'https://ror.org/04h6azc67', 'no_lang_code', 1, 'https://ror.org/04h6azc67 Textron, Textron (United States)'),
(103827, 'https://ror.org/04h7cfr36', 'en', 1, 'https://ror.org/04h7cfr36 Milwaukee School of Engineering'),
(103828, 'https://ror.org/04haebc03', 'en', 1, 'https://ror.org/04haebc03 Memorial University of Newfoundland'),
(103829, 'https://ror.org/04hbmw205', 'no_lang_code', 1, 'https://ror.org/04hbmw205 Abcerion Diagnostics GmbH, Abcerion Diagnostics GmbH (Germany)'),
(103830, 'https://ror.org/04hc84p76', 'no_lang_code', 0, 'https://ror.org/04hc84p76 Daimler (Japan)'),
(103831, 'https://ror.org/04hca4691', 'sl', 1, 'https://ror.org/04hca4691 InŔtitut za Nutricionistiko Slovenian Nutrition Institute'),
(103832, 'https://ror.org/04hhgsb74', 'en', 1, 'https://ror.org/04hhgsb74 Sree Sankaracharya University of Sanskrit جامعہ ؓری ؓنکر Ų§Ś†Ų§Ų±ŪŒŪ ŲØŲ±Ų§Ų¦Ū’ سنسکرت ą“¶ąµą“°ąµ€ ą“¶ą“™ąµą“•ą“°ą“¾ą“šą“¾ą“°ąµą“Æ ą“øą“‚ą“øąµą“•ąµƒą“¤ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(103833, 'https://ror.org/04hhxc122', 'no_lang_code', 1, 'https://ror.org/04hhxc122 State Research Institute for Material Protection (Czechia)'),
(103834, 'https://ror.org/04hjzsd20', 'no_lang_code', 1, 'https://ror.org/04hjzsd20 Sekisui XenoTech (United States)'),
(103835, 'https://ror.org/04hk36d32', 'en', 1, 'https://ror.org/04hk36d32 Institut za hemiju, tehnologiju i metalurgiju, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Ń…ŠµŠ¼ŠøŃ˜Ńƒ, Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ˜Ńƒ Šø Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³ŠøŃ˜Ńƒ Institute of Chemistry, Technology and Metallurgy'),
(103836, 'https://ror.org/04hnzva96', 'en', 1, 'https://ror.org/04hnzva96 Smithsonian Conservation Biology Institute'),
(103837, 'https://ror.org/04hpfhh92', 'en', 1, 'https://ror.org/04hpfhh92 Hope for Communities and Children Initiative'),
(103838, 'https://ror.org/04hrbdg71', 'fr', 1, 'https://ror.org/04hrbdg71 Centre de Corse'),
(103839, 'https://ror.org/04htzww22', 'en', 1, 'https://ror.org/04htzww22 Vancouver Coastal Health Research Institute'),
(103840, 'https://ror.org/04hw9c755', 'en', 1, 'https://ror.org/04hw9c755 NutriNeuro'),
(103841, 'https://ror.org/04hx99g79', 'en', 1, 'https://ror.org/04hx99g79 XIM University'),
(103842, 'https://ror.org/04hxnp039', 'en', 1, 'https://ror.org/04hxnp039 Danone Nutricia Research, Danone Nutricia Research (Netherlands)'),
(103843, 'https://ror.org/04hxxzz17', 'no_lang_code', 1, 'https://ror.org/04hxxzz17 HEAnet'),
(103844, 'https://ror.org/04hyzq608', 'en', 1, 'https://ror.org/04hyzq608 Qilu University of Technology 齐鲁巄业大学'),
(103845, 'https://ror.org/04hzkx672', 'fr', 1, 'https://ror.org/04hzkx672 Equipe de Recherche en EpidƩmiologie Nutritionnelle Nutritional Epidemiology Research Unit'),
(103846, 'https://ror.org/04j0rnj48', 'en', 1, 'https://ror.org/04j0rnj48 Mingachevir State University'),
(103847, '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'),
(103848, 'https://ror.org/04j47fz63', 'fr', 1, 'https://ror.org/04j47fz63 Haute Ɖcole de SantĆ© Vaud'),
(103849, 'https://ror.org/04j6ccm70', 'pt', 1, 'https://ror.org/04j6ccm70 Centro Hospitalar Póvoa de Varzim Vila do Conde EPE'),
(103850, 'https://ror.org/04j757h98', 'en', 1, 'https://ror.org/04j757h98 Victoria University'),
(103851, 'https://ror.org/04j7b2v61', 'no_lang_code', 1, 'https://ror.org/04j7b2v61 Ningxia University 宁夏大学'),
(103852, 'https://ror.org/04j9ztm78', 'fr', 1, 'https://ror.org/04j9ztm78 Institut d''Histoire du Droit Jean Gaudemet'),
(103853, 'https://ror.org/04jaeba88', 'en', 1, 'https://ror.org/04jaeba88 California State University, East Bay UniversitĆ© d''Ɖtat de californie Ć  east bay'),
(103854, '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'),
(103855, 'https://ror.org/04jbt2p93', 'fr', 1, 'https://ror.org/04jbt2p93 LabEx Chimie des SystĆØmes Complexes LabEx-Chemistry of Complex Systems'),
(103856, 'https://ror.org/04jbt9n06', 'en', 1, 'https://ror.org/04jbt9n06 Islamic Azad University, West Tehran Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران ŲŗŲ±ŲØ'),
(103857, 'https://ror.org/04jc43x05', 'de', 1, 'https://ror.org/04jc43x05 Klinikum rechts der Isar'),
(103858, 'https://ror.org/04jm8zw14', 'fr', 1, 'https://ror.org/04jm8zw14 Architecture et Fonction des MacromolƩcules Biologiques'),
(103859, 'https://ror.org/04jmdbw57', 'en', 1, 'https://ror.org/04jmdbw57 National Center for Theoretical Sciences, Mathematics Division åœ‹å®¶ē†č«–ē§‘å­øē ”ē©¶äø­åæƒ 數學組'),
(103860, 'https://ror.org/04jn0td46', 'en', 1, 'https://ror.org/04jn0td46 Xi’an University of Posts and Telecommunications 脿安邮电大学'),
(103861, 'https://ror.org/04jpfrv51', 'en', 1, 'https://ror.org/04jpfrv51 Directorate General for Scientific Research and Technological Development Ų§Ł„Ł…ŲÆŁŠŲ±ŁŠŲ© العامة للبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŲ·ŁˆŁŠŲ± Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(103862, 'https://ror.org/04jqqz255', 'en', 1, 'https://ror.org/04jqqz255 Barnfield College'),
(103863, 'https://ror.org/04jrf3m62', 'en', 1, 'https://ror.org/04jrf3m62 Chronic Granulomatous Disorder Society'),
(103864, 'https://ror.org/04js4m423', 'en', 1, 'https://ror.org/04js4m423 Federal Polytechnic, Nasarawa'),
(103865, 'https://ror.org/04jsk0b74', 'fr', 1, 'https://ror.org/04jsk0b74 Institut des Nanotechnologies de Lyon'),
(103866, 'https://ror.org/04jt46d36', 'en', 1, 'https://ror.org/04jt46d36 Prince Sattam Bin Abdulaziz University Ų¬Ų§Ł…Ų¹Ų© Ų³Ų·Ų§Ł… بن Ų¹ŲØŲÆŲ§Ł„Ų¹Ų²ŁŠŲ²'),
(103867, 'https://ror.org/04jvgth94', 'fr', 1, 'https://ror.org/04jvgth94 Adaptation physiologiques Ơ l''exercice et rƩadaptation Ơ l''effort'),
(103868, 'https://ror.org/04jvj4z94', 'en', 1, 'https://ror.org/04jvj4z94 World Forest ID'),
(103869, 'https://ror.org/04jxggp80', 'en', 1, 'https://ror.org/04jxggp80 QuantumBasel (Switzerland)'),
(103870, 'https://ror.org/04jzps455', 'en', 1, 'https://ror.org/04jzps455 Structural Genomics Consortium'),
(103871, 'https://ror.org/04k031t90', 'fr', 1, 'https://ror.org/04k031t90 Ɖcole Nationale VĆ©tĆ©rinaire d''Alfort'),
(103872, 'https://ror.org/04k0drf78', 'fr', 1, 'https://ror.org/04k0drf78 Institut photonique d''analyse non-destructive europƩen des matƩriaux anciens'),
(103873, 'https://ror.org/04k1akk19', 'fr', 1, 'https://ror.org/04k1akk19 Institut des SystĆØmes Complexes Paris Ǝle-de-France'),
(103874, 'https://ror.org/04k1tmf59', 'pt', 1, 'https://ror.org/04k1tmf59 Estado-Maior do ExƩrcito'),
(103875, 'https://ror.org/04k2vrw13', 'it', 1, 'https://ror.org/04k2vrw13 Istituto Nazionale per la Valutazione del Sistema dell''Istruzione'),
(103876, 'https://ror.org/04k4pxr75', 'fr', 1, 'https://ror.org/04k4pxr75 Centre EuropƩen de la CƩramique European Ceramics Centre'),
(103877, 'https://ror.org/04k5bcn60', 'fr', 1, 'https://ror.org/04k5bcn60 FƩdƩration de recherche en imagerie multi-modalitƩ'),
(103878, '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'),
(103879, 'https://ror.org/04k5jw363', 'fr', 1, 'https://ror.org/04k5jw363 Laboratoire de MathƩmatiques de Versailles'),
(103880, 'https://ror.org/04k5rxe29', 'en', 1, 'https://ror.org/04k5rxe29 Guangdong Medical College å¹æäøœåŒ»å­¦é™¢'),
(103881, 'https://ror.org/04k6k8h87', 'pt', 1, 'https://ror.org/04k6k8h87 Faculdade Anhanguera'),
(103882, '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'),
(103883, 'https://ror.org/04k7nem08', 'en', 1, 'https://ror.org/04k7nem08 Saint Louis University Unibersidad ng San Luis'),
(103884, 'https://ror.org/04k8wt746', 'fr', 1, 'https://ror.org/04k8wt746 Sommeil, Addiction et Neuropsychiatrie'),
(103885, 'https://ror.org/04ka0vh05', 'es', 1, 'https://ror.org/04ka0vh05 Institute of Astrophysics of Andalusia Instituto de AstrofĆ­sica de AndalucĆ­a'),
(103886, 'https://ror.org/04kb0nk47', 'no_lang_code', 0, 'https://ror.org/04kb0nk47 Impaq International (United States)'),
(103887, 'https://ror.org/04kbqb151', 'fr', 1, 'https://ror.org/04kbqb151 BISCEm - Biologie IntƩgrative SantƩ Chimie Environnement'),
(103888, 'https://ror.org/04kc6j250', 'pt', 1, 'https://ror.org/04kc6j250 Instituto da Construção'),
(103889, 'https://ror.org/04kd6c686', 'fr', 1, 'https://ror.org/04kd6c686 NF-kappaB, DiffƩrenciation et Cancer'),
(103890, 'https://ror.org/04kd9w798', 'en', 1, 'https://ror.org/04kd9w798 Smithsonian Asian Pacific American Center'),
(103891, 'https://ror.org/04kdzy146', 'en', 1, 'https://ror.org/04kdzy146 Institute for Humanities and Cultural Studies Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų¹Ł„ŁˆŁ… Ų§Ł†Ų³Ų§Ł†ŪŒ و مطالعات ŁŲ±Ł‡Ł†ŚÆŪŒ'),
(103892, 'https://ror.org/04kezy879', 'fr', 1, 'https://ror.org/04kezy879 Risques, EpidƩmiologie, Territoires, Informations, Education et SantƩ'),
(103893, 'https://ror.org/04kfz4b98', 'en', 1, 'https://ror.org/04kfz4b98 Harbin Finance University å“ˆå°”ę»Øé‡‘čžå­¦é™¢'),
(103894, 'https://ror.org/04kgf6p94', 'fr', 1, 'https://ror.org/04kgf6p94 Physics of Ionic and Molecular Interactions Physique des interactions ioniques et molƩculaires'),
(103895, 'https://ror.org/04kkazx03', 'en', 1, 'https://ror.org/04kkazx03 University of Delta Agbor'),
(103896, 'https://ror.org/04kpwcf85', 'en', 1, 'https://ror.org/04kpwcf85 UCLA Clinical and Translational Science Institute'),
(103897, 'https://ror.org/04kqvjg13', 'en', 1, 'https://ror.org/04kqvjg13 Tongling University 铜陵学院'),
(103898, 'https://ror.org/04kvn3r95', 'en', 1, 'https://ror.org/04kvn3r95 Springer Nature (India)'),
(103899, 'https://ror.org/04kw44c30', 'en', 1, 'https://ror.org/04kw44c30 NOAA National Systematics Laboratory'),
(103900, 'https://ror.org/04kw8et29', 'en', 1, 'https://ror.org/04kw8et29 Bishop Grosseteste University'),
(103901, 'https://ror.org/04kwn3124', 'en', 1, 'https://ror.org/04kwn3124 Royal College of Music Y Coleg Cerddoriaeth Brenhinol'),
(103902, 'https://ror.org/04kwqat20', 'fr', 1, 'https://ror.org/04kwqat20 Territoires, Villes, Environnement & SociƩtƩ'),
(103903, 'https://ror.org/04kwvgz42', 'en', 1, 'https://ror.org/04kwvgz42 Hacettepe University Hacettepe Üniversitesi'),
(103904, 'https://ror.org/04kz59847', 'no_lang_code', 1, 'https://ror.org/04kz59847 Pultegroup, Pultegroup (United States)'),
(103905, 'https://ror.org/04m053216', 'en', 1, 'https://ror.org/04m053216 Khorezm Rural Advisory Support Service Xorazm Agromaslahat Markazi Єорезмский Агро-ŠšŠ¾Š½ŃŃƒŠ»ŃŒŃ‚Š°Ń‚ŠøŠ²Š½Ń‹Š¹ Центр'),
(103906, 'https://ror.org/04m0m4503', 'en', 1, 'https://ror.org/04m0m4503 Centre for Nursing Studies'),
(103907, 'https://ror.org/04m15mz97', 'en', 0, 'https://ror.org/04m15mz97 National Labor College'),
(103908, 'https://ror.org/04m5rvb18', 'fr', 1, 'https://ror.org/04m5rvb18 Laboratoire Interdisciplinaire SolidaritƩs SociƩtƩs Territoires'),
(103909, 'https://ror.org/04m69ya83', 'fr', 1, 'https://ror.org/04m69ya83'),
(103910, 'https://ror.org/04m6sq715', 'fr', 1, 'https://ror.org/04m6sq715 HƓpital Arnaud de Villeneuve'),
(103911, 'https://ror.org/04m6zg706', 'no_lang_code', 1, 'https://ror.org/04m6zg706 Pinterest, Pinterest (United States)'),
(103912, 'https://ror.org/04m8fht31', 'en', 1, 'https://ror.org/04m8fht31 Saint Paul & Minnesota Foundation'),
(103913, 'https://ror.org/04mayb497', 'pt', 1, 'https://ror.org/04mayb497 Instituto Superior de Estudos Interculturais e Transdisciplinares de Almada'),
(103914, 'https://ror.org/04mbfgm16', 'en', 1, 'https://ror.org/04mbfgm16 Simmons University'),
(103915, '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ā€ Š£Š“Ń€ŃƒŠ¶ŠµŃšŠµ ŠøŠ½Ń‚ŠµŠ»ŠµŠŗŃ‚ŃƒŠ°Š»Š°Ń†Š° за Ń€Š°Š·Š²Š¾Ń˜ науке у Š”Ń€Š±ŠøŃ˜Šø - ā€žŠ”Š ŠŸŠ”ŠšŠ˜ ŠŠšŠŠ”Š•ŠœŠ”ŠšŠ˜ Š¦Š•ŠŠ¢ŠŠ ā€'),
(103916, 'https://ror.org/04mczx267', 'en', 1, 'https://ror.org/04mczx267 National Academy of Sciences of Armenia Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ£Õ«ÕæÕøÖ‚Õ©ÕµÕøÖ‚Õ¶Õ¶Õ„Ö€Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ”ÕÆÕ”Õ¤Õ„Õ“Õ«Õ”'),
(103917, 'https://ror.org/04md5yc36', 'en', 1, 'https://ror.org/04md5yc36 Phramongkutklao College of Medicine'),
(103918, 'https://ror.org/04mfj5474', 'en', 1, 'https://ror.org/04mfj5474 Breda University of Applied Sciences NHTV internationaal hoger onderwijs Breda'),
(103919, 'https://ror.org/04mfmy854', 'en', 1, 'https://ror.org/04mfmy854 NSWC Crane Division'),
(103920, 'https://ror.org/04mfpmj78', 'en', 1, 'https://ror.org/04mfpmj78 K.S. Rangasamy College of Technology கே. ą®Žą®øąÆ. ą®°ą®™ąÆą®•ą®šą®¾ą®®ą®æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(103921, 'https://ror.org/04mj8af82', 'en', 1, 'https://ror.org/04mj8af82 Fƶrsvarshƶgskolan Maanpuolustuskorkeakoulu Swedish Defence University'),
(103922, 'https://ror.org/04mjzst24', 'es', 1, 'https://ror.org/04mjzst24 Colfuturo'),
(103923, 'https://ror.org/04mkzax54', 'en', 1, 'https://ror.org/04mkzax54 Jiangnan University ę±Ÿå—å¤§å­¦'),
(103924, 'https://ror.org/04mma4681', 'en', 1, 'https://ror.org/04mma4681 Fatih Sultan Mehmet Vakıf Üniversitesi Fatih Sultan Mehmet Waqf University'),
(103925, 'https://ror.org/04mq2g308', 'en', 1, 'https://ror.org/04mq2g308 FHNW University of Applied Sciences and Arts'),
(103926, 'https://ror.org/04ms06f06', 'de', 1, 'https://ror.org/04ms06f06 Zentrum verantwortungsbewusste Digitalisierung'),
(103927, 'https://ror.org/04msk6077', 'es', 1, 'https://ror.org/04msk6077 Universidad Tecnológica de Torreón'),
(103928, 'https://ror.org/04msyas67', 'en', 1, 'https://ror.org/04msyas67 Onondaga Community College'),
(103929, 'https://ror.org/04mxhn923', 'en', 1, 'https://ror.org/04mxhn923 Kansas Geological Survey'),
(103930, 'https://ror.org/04mywez65', 'fr', 1, 'https://ror.org/04mywez65 Agents infectieux, rƩsistance et chimiothƩrapie'),
(103931, 'https://ror.org/04mz2k452', 'en', 1, 'https://ror.org/04mz2k452 Oklahoma Humanities Council'),
(103932, 'https://ror.org/04n03q057', 'fr', 1, 'https://ror.org/04n03q057 Centre d''Ʃtudes et de recherches en droit des procƩdures'),
(103933, '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'),
(103934, 'https://ror.org/04n1me355', 'en', 1, 'https://ror.org/04n1me355 Claremont McKenna College'),
(103935, 'https://ror.org/04n1pzr73', 'en', 1, 'https://ror.org/04n1pzr73 Mississippi Humanities Council'),
(103936, 'https://ror.org/04n2gfg40', 'en', 1, 'https://ror.org/04n2gfg40 Wirral Metropolitan College'),
(103937, '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'),
(103938, 'https://ror.org/04n2vwk08', 'fr', 1, 'https://ror.org/04n2vwk08 Laboratoire Interuniversitaire des Sciences de l''Education et de la Communication'),
(103939, 'https://ror.org/04n34rm95', 'en', 1, 'https://ror.org/04n34rm95 Angelo State University'),
(103940, 'https://ror.org/04n37he08', 'en', 1, 'https://ror.org/04n37he08 General Sir John Kotelawala Defence University ą®œąÆ†ą®©ą®°ą®²ąÆ ą®šąÆ‡ą®°ąÆ ą®œąÆ‹ą®©ąÆ ą®•ąÆŠą®¤ąÆą®¤ą®²ą®¾ą®µą®² ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ą®¾ą®©ą®¤ąÆ ą¶¢ą·™ą¶±ą¶»ą·ą¶½ą·Š ą·ą·Šā€ą¶»ą·“ą¶øą¶­ą·Š ą¶¢ą·ą¶±ą·Š ą¶šą·œą¶­ą¶½ą·ą·€ą¶½ ą¶†ą¶»ą¶šą·Šą·‚ą¶š ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(103941, 'https://ror.org/04n40zv07', 'en', 1, 'https://ror.org/04n40zv07 Shanghai Ocean University äøŠęµ·ęµ·ę“‹å¤§å­¦'),
(103942, 'https://ror.org/04n5wkv72', 'en', 1, 'https://ror.org/04n5wkv72 Diaconia University of Applied Sciences Diakonia-ammattikorkeakoulu Yrkeshƶgskolan Diakonia'),
(103943, 'https://ror.org/04n60x970', 'no_lang_code', 1, 'https://ror.org/04n60x970 GE Vernova, GE Vernova (United States)'),
(103944, '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'),
(103945, 'https://ror.org/04n901n71', 'de', 1, 'https://ror.org/04n901n71 CAIMed - Niedersächsisches Zentrum für KI und Kausale Methoden in der Medizin'),
(103946, 'https://ror.org/04n9e8n41', 'tr', 1, 'https://ror.org/04n9e8n41 Aile ve Sosyal Hizmetler Bakanlığı'),
(103947, 'https://ror.org/04n9eyw42', 'fr', 1, 'https://ror.org/04n9eyw42 ArchƩologie des SociƩtƩs MƩditerranƩennes'),
(103948, 'https://ror.org/04nayfw11', 'en', 1, 'https://ror.org/04nayfw11 Tomas Bata University in ZlĆ­n Univerzita TomÔŔe Bati ve ZlĆ­ně');
INSERT INTO `rors` VALUES
(103949, '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'),
(103950, 'https://ror.org/04neq5659', 'no_lang_code', 0, 'https://ror.org/04neq5659 Avco (United States)'),
(103951, 'https://ror.org/04nh80821', 'fr', 1, 'https://ror.org/04nh80821 ESCE International Business School Ɖcole SupĆ©rieure du Commerce ExtĆ©rieur'),
(103952, 'https://ror.org/04nmj9827', 'fr', 1, 'https://ror.org/04nmj9827 European Institute for Membranes Institut EuropƩen des Membranes'),
(103953, 'https://ror.org/04nnvgw25', 'no_lang_code', 1, 'https://ror.org/04nnvgw25 Europeum'),
(103954, 'https://ror.org/04nqadf13', 'fr', 1, 'https://ror.org/04nqadf13 Institut de Recherche et d’Innovation Institute of Research and Innovation'),
(103955, 'https://ror.org/04nqdwb39', 'tr', 1, 'https://ror.org/04nqdwb39 Mersin University Mersin Üniversitesi'),
(103956, 'https://ror.org/04nraex26', 'en', 1, 'https://ror.org/04nraex26 Luoyang Institute of Science and Technology ę“›é˜³ē†å·„å­¦é™¢'),
(103957, 'https://ror.org/04nsbpw26', 'fr', 1, 'https://ror.org/04nsbpw26 Centre de recherche en droit et management des services de santƩ'),
(103958, 'https://ror.org/04nte7y58', 'en', 1, 'https://ror.org/04nte7y58 Shanxi University of Finance and Economics å±±č„æč“¢ē»å¤§å­¦'),
(103959, 'https://ror.org/04nvpy675', 'tr', 1, 'https://ror.org/04nvpy675 Gaziantep Islam Science and Technology University Gaziantep İslam Bilim ve Teknoloji Üniversitesi'),
(103960, 'https://ror.org/04nx64s73', 'en', 1, 'https://ror.org/04nx64s73 Offinso College of Education'),
(103961, '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Ʃ de cassino'),
(103962, 'https://ror.org/04nyys021', 'en', 1, 'https://ror.org/04nyys021 ColibrĆ­ Gorriazul Research Center'),
(103963, 'https://ror.org/04nzrzs08', 'en', 1, 'https://ror.org/04nzrzs08 Skidmore College'),
(103964, 'https://ror.org/04p2y4s44', 'en', 1, 'https://ror.org/04p2y4s44 Medical University of Warsaw Warszawski Uniwersytet Medyczny'),
(103965, 'https://ror.org/04p4jgt68', 'fr', 1, 'https://ror.org/04p4jgt68 Centre d''Investigation Clinique - Innovation Technologique de Lille'),
(103966, 'https://ror.org/04p5baq95', 'en', 1, 'https://ror.org/04p5baq95 Mattel Children''s Hospital'),
(103967, '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'),
(103968, 'https://ror.org/04p94ax69', 'en', 1, 'https://ror.org/04p94ax69 Lille Neurosciences & Cognition'),
(103969, 'https://ror.org/04p9akw79', 'en', 1, 'https://ror.org/04p9akw79 Brown-Forman Brown-Forman (United States)'),
(103970, 'https://ror.org/04p9p1r69', 'en', 1, 'https://ror.org/04p9p1r69 Chengdu Neusoft University ęˆéƒ½äøœč½Æå­¦é™¢'),
(103971, 'https://ror.org/04pa05368', 'en', 1, 'https://ror.org/04pa05368 Shandong University of Arts å±±äøœč‰ŗęœÆå­¦é™¢'),
(103972, 'https://ror.org/04pca8d81', 'pt', 1, 'https://ror.org/04pca8d81 Agrupamento de Escolas Carlos Amarante Carlos Amarante Group of Schools'),
(103973, 'https://ror.org/04pcmb734', 'en', 1, 'https://ror.org/04pcmb734 Mildred Elley College'),
(103974, 'https://ror.org/04pd3v454', 'en', 1, 'https://ror.org/04pd3v454 Atilim University Atılım Üniversitesi'),
(103975, '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'),
(103976, 'https://ror.org/04pm4x478', 'en', 1, 'https://ror.org/04pm4x478 Istanbul Bilgi University İstanbul Bilgi Üniversitesi'),
(103977, 'https://ror.org/04pmn0e78', 'es', 1, 'https://ror.org/04pmn0e78 Universidad de AlcalĆ” University of AlcalĆ”'),
(103978, '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'),
(103979, 'https://ror.org/04pp8hn57', 'en', 1, 'https://ror.org/04pp8hn57 Universiteit Utrecht Utrecht University'),
(103980, 'https://ror.org/04ppmte83', 'no_lang_code', 1, 'https://ror.org/04ppmte83 Mercedes-Benz (United States)'),
(103981, 'https://ror.org/04pq1cz46', 'en', 1, 'https://ror.org/04pq1cz46 Nextera Energy, Nextera Energy (United States)'),
(103982, 'https://ror.org/04ps1r162', 'en', 1, 'https://ror.org/04ps1r162 Lincoln University Te Whare Wanaka o Aoraki'),
(103983, 'https://ror.org/04pv8zt35', 'en', 1, 'https://ror.org/04pv8zt35 Systems Plus College Foundation'),
(103984, 'https://ror.org/04pwapm65', 'fr', 1, 'https://ror.org/04pwapm65 SubjectivitƩ, lien social et modernitƩ'),
(103985, 'https://ror.org/04pwyer06', 'fr', 1, 'https://ror.org/04pwyer06 Institut Pasteur de Tunis'),
(103986, 'https://ror.org/04pwyfk22', 'fr', 1, 'https://ror.org/04pwyfk22 HƓpital Saint Eloi'),
(103987, 'https://ror.org/04pwzyv45', 'fr', 1, 'https://ror.org/04pwzyv45 Droit International ComparƩ et EuropƩen'),
(103988, 'https://ror.org/04px4e658', 'fr', 1, 'https://ror.org/04px4e658 DƩlƩgation Alpes'),
(103989, 'https://ror.org/04py35477', 'en', 1, 'https://ror.org/04py35477 Max Planck Institute of Biochemistry Max-Planck-Institut für Biochemie'),
(103990, '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'),
(103991, 'https://ror.org/04pzw3j14', 'en', 0, 'https://ror.org/04pzw3j14 Equipe RhizogenĆØse Rhizogenesis Lab'),
(103992, 'https://ror.org/04q1vy171', 'fr', 1, 'https://ror.org/04q1vy171 Cardiovascular Markers in Stressed Conditions Marqueurs cardiovasculaires en situation de stress'),
(103993, 'https://ror.org/04q29nn62', 'no_lang_code', 1, 'https://ror.org/04q29nn62 OncoThAI'),
(103994, 'https://ror.org/04q2ax456', 'fr', 1, 'https://ror.org/04q2ax456 Laboratoire MotricitƩ, Interactions, Performance'),
(103995, 'https://ror.org/04q35v833', 'fr', 1, 'https://ror.org/04q35v833 Maison de Sante Protestante de Bordeaux-Bagatelle'),
(103996, 'https://ror.org/04q54n515', 'en', 1, 'https://ror.org/04q54n515 NSWC Corona Division'),
(103997, 'https://ror.org/04q58ph11', 'en', 1, 'https://ror.org/04q58ph11 National Commission on Research Science and Technology'),
(103998, 'https://ror.org/04q5r0746', 'en', 1, 'https://ror.org/04q5r0746 Liverpool Womens NHS Foundation Trust'),
(103999, 'https://ror.org/04q77sg93', 'fr', 1, 'https://ror.org/04q77sg93 Collège de Maisonneuve, Cégep de Maisonneuve'),
(104000, 'https://ror.org/04q78tk20', 'en', 1, 'https://ror.org/04q78tk20 Sungkyunkwan University ģ„±ź· ź“€ėŒ€ķ•™źµ'),
(104001, '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'),
(104002, 'https://ror.org/04q8dyb68', 'en', 1, 'https://ror.org/04q8dyb68 Devki Devi Foundation'),
(104003, 'https://ror.org/04q8mtd88', 'pt', 1, 'https://ror.org/04q8mtd88 Instituto Superior de Tecnologias AvanƧadas do Porto'),
(104004, 'https://ror.org/04qa2gd95', 'en', 1, 'https://ror.org/04qa2gd95 Transportation Security Administration'),
(104005, 'https://ror.org/04qa46285', 'de', 1, 'https://ror.org/04qa46285 Dietrich Bonhoeffer Klinikum'),
(104006, 'https://ror.org/04qae1p49', 'no_lang_code', 1, 'https://ror.org/04qae1p49 DoCoMo Communications Laboratories Europe GmbH'),
(104007, 'https://ror.org/04qbqv677', 'de', 1, 'https://ror.org/04qbqv677 Film University Babelsberg KONRAD WOLF FilmuniversitƤt Babelsberg KONRAD WOLF'),
(104008, 'https://ror.org/04qe59j94', 'fr', 1, 'https://ror.org/04qe59j94 Institut Mondor de Recherche BiomƩdicale Mondor Institute of Biomedical Research'),
(104009, 'https://ror.org/04qett061', 'no_lang_code', 0, 'https://ror.org/04qett061 Selex ES (United Kingdom)'),
(104010, 'https://ror.org/04qf1dc42', 'no_lang_code', 1, 'https://ror.org/04qf1dc42 Plazi Verein'),
(104011, 'https://ror.org/04qhwn476', 'fr', 1, 'https://ror.org/04qhwn476 Centre Georg Simmel'),
(104012, 'https://ror.org/04qj6xg77', 'en', 1, 'https://ror.org/04qj6xg77 Healthcare Quality Improvement Partnership'),
(104013, 'https://ror.org/04qmjst50', 'fr', 1, 'https://ror.org/04qmjst50 D2iA - Dynamiques, Interactions et InterculturalitƩ en Asie'),
(104014, 'https://ror.org/04qp98b92', 'es', 1, 'https://ror.org/04qp98b92 Instituto Regional De Enfermedades NeoplƔsicas Del Centro, Iren Centro'),
(104015, 'https://ror.org/04qq0qp34', 'fr', 1, 'https://ror.org/04qq0qp34 Laboratoire du Futur'),
(104016, 'https://ror.org/04qr3zq92', 'en', 1, 'https://ror.org/04qr3zq92 University of Electronic Science and Technology of China ē”µå­ē§‘ęŠ€å¤§å­¦'),
(104017, 'https://ror.org/04qs3nf63', 'pt', 1, 'https://ror.org/04qs3nf63 Escola Superior de Tecnologias de Fafe'),
(104018, 'https://ror.org/04qsamf92', 'en', 1, 'https://ror.org/04qsamf92 United Nations Office for Outer Space Affairs'),
(104019, 'https://ror.org/04qtj9h94', 'en', 1, 'https://ror.org/04qtj9h94 Danmarks Tekniske Universitet DƤnemarks Technische UniversitƤt Technical University of Denmark'),
(104020, 'https://ror.org/04qvpkd07', 'en', 0, 'https://ror.org/04qvpkd07 Harris, Harris (United States)'),
(104021, 'https://ror.org/04qyefj88', 'en', 1, 'https://ror.org/04qyefj88 John Paul II Catholic University of Lublin Katolicki Uniwersytet Lubelski Jana Pawła II'),
(104022, '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Ć©'),
(104023, 'https://ror.org/04qzpec27', 'en', 1, 'https://ror.org/04qzpec27 Shenzhen Technology University ę·±åœ³ęŠ€ęœÆå¤§å­¦'),
(104024, 'https://ror.org/04r0hn449', 'en', 1, 'https://ror.org/04r0hn449 Ordu University Ordu Üniversitesi'),
(104025, 'https://ror.org/04r17kf39', 'en', 1, 'https://ror.org/04r17kf39 New York State College of Veterinary Medicine'),
(104026, 'https://ror.org/04r1cjx59', 'en', 1, 'https://ror.org/04r1cjx59 Institute for Fiscal Studies'),
(104027, 'https://ror.org/04r1rhv60', 'pt', 1, 'https://ror.org/04r1rhv60 Hospital do Servidor PĆŗblico Estadual'),
(104028, 'https://ror.org/04r3s7465', 'en', 1, 'https://ror.org/04r3s7465 McMurdo Dry Valleys Long Term Ecological Research'),
(104029, 'https://ror.org/04r56ky81', 'en', 1, 'https://ror.org/04r56ky81 Capital College'),
(104030, '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'),
(104031, 'https://ror.org/04r5nwv94', 'fr', 1, 'https://ror.org/04r5nwv94 UMS BioCore'),
(104032, 'https://ror.org/04r659a56', 'en', 1, 'https://ror.org/04r659a56 University of New England'),
(104033, 'https://ror.org/04r8mt206', 'en', 1, 'https://ror.org/04r8mt206 Yamaguchi Heisei Hospital'),
(104034, 'https://ror.org/04rctme81', 'en', 1, 'https://ror.org/04rctme81 Guangdong Technion-Israel Institute of Technology å¹æäøœä»„č‰²åˆ—ē†å·„å­¦é™¢'),
(104035, 'https://ror.org/04rcxhq50', 'no_lang_code', 1, 'https://ror.org/04rcxhq50 Novartis (Italy), Novartis Farma S.p.A. Novartis Italia'),
(104036, 'https://ror.org/04rdtx186', 'en', 1, 'https://ror.org/04rdtx186 Ocean University of China 中国海擋大学'),
(104037, 'https://ror.org/04rgg2p32', 'en', 1, 'https://ror.org/04rgg2p32 University of Business in Prague VysokÔ Ŕkola obchodní v Praze'),
(104038, 'https://ror.org/04rk6w354', 'en', 1, 'https://ror.org/04rk6w354 University of Veterinary Sciences Brno VeterinƔrnƭ univerzita Brno'),
(104039, 'https://ror.org/04rp2mn26', 'fr', 1, 'https://ror.org/04rp2mn26 Institut de Recherche sur la Biologie de l''Insecte UMR 7261'),
(104040, 'https://ror.org/04rqv8543', 'en', 1, 'https://ror.org/04rqv8543 Bridgewater Associates, Bridgewater Associates (United States)'),
(104041, 'https://ror.org/04rre2k21', 'en', 1, 'https://ror.org/04rre2k21 Tommy''s'),
(104042, 'https://ror.org/04rtjaj74', 'en', 1, 'https://ror.org/04rtjaj74 Health Data Research UK'),
(104043, 'https://ror.org/04rxjcv17', 'en', 1, 'https://ror.org/04rxjcv17 Olds College'),
(104044, 'https://ror.org/04rz0sq59', 'en', 1, 'https://ror.org/04rz0sq59 Candys Foundation'),
(104045, 'https://ror.org/04rzzc331', 'pt', 1, 'https://ror.org/04rzzc331 Applied Marketing Marketing Aplicado Lda, Marketing Aplicado Lda (Portugal)'),
(104046, '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'),
(104047, 'https://ror.org/04s14fd24', 'en', 1, 'https://ror.org/04s14fd24 Xingzhi College Zhejiang Normal University ęµ™ę±ŸåøˆčŒƒå¤§å­¦č”ŒēŸ„å­¦é™¢'),
(104048, 'https://ror.org/04s1nv328', 'en', 1, 'https://ror.org/04s1nv328 University of Canberra'),
(104049, 'https://ror.org/04s3t1g37', 'fr', 1, 'https://ror.org/04s3t1g37 Institut Paoli-Calmettes Institute Paoli-Calmettes'),
(104050, 'https://ror.org/04s5p1a35', 'pt', 1, 'https://ror.org/04s5p1a35 Centro Nacional de Pesquisa e Conservação de Cavernas, Instituto Chico Mendes de Conservação da Biodiversidade Chico Mendes Institute for Biodiversity Conservation'),
(104051, 'https://ror.org/04s6f1186', 'fr', 1, 'https://ror.org/04s6f1186 Laboratoire LigƩrien de Linguistique'),
(104052, 'https://ror.org/04s6kmw55', 'en', 1, 'https://ror.org/04s6kmw55 Arsi University'),
(104053, 'https://ror.org/04s7shc55', 'de', 1, 'https://ror.org/04s7shc55 Forschungsinstitut für Anwendungsorientierte Wissensverarbeitung'),
(104054, 'https://ror.org/04s80ef73', 'fr', 1, 'https://ror.org/04s80ef73 Laboratoire Informatique Paris Descartes'),
(104055, 'https://ror.org/04s92nm86', 'fr', 1, 'https://ror.org/04s92nm86 Laboratoire de Recherche Translationnelle en Oncologie'),
(104056, 'https://ror.org/04s9gqm51', 'fr', 1, 'https://ror.org/04s9gqm51 Centre FranƧais des Fonds et Fondations French Foundation Centre'),
(104057, 'https://ror.org/04sbtbt61', 'pt', 1, 'https://ror.org/04sbtbt61 Institute of Integrative Medicine Instituto Medicina Integrativa (Portugal)'),
(104058, 'https://ror.org/04sfkt825', 'pt', 1, 'https://ror.org/04sfkt825 Conselho Nacional de Educação'),
(104059, 'https://ror.org/04sftj265', 'en', 1, 'https://ror.org/04sftj265 Hį»c viện PhỄ nữ Việt Nam Vietnam Women''s Academy'),
(104060, 'https://ror.org/04sgxw910', 'en', 1, 'https://ror.org/04sgxw910 Yavapai College'),
(104061, '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'),
(104062, 'https://ror.org/04smxbm79', 'fr', 1, 'https://ror.org/04smxbm79 Laboratoire AmiƩnois de MathƩmatique Fondamentale et AppliquƩe'),
(104063, 'https://ror.org/04smycn12', 'en', 1, 'https://ror.org/04smycn12 Roy Rosenzweig Center for History and New Media'),
(104064, 'https://ror.org/04snhqa82', 'en', 1, 'https://ror.org/04snhqa82 Obafemi Awolowo University YunifĆ”sĆ­tƬ ỌbĆ”fẹ́mi Awólį»Ģwį»Ģ€'),
(104065, 'https://ror.org/04sph8e12', 'en', 1, 'https://ror.org/04sph8e12 Xingtai Medical College 邢台医学院'),
(104066, 'https://ror.org/04sppb023', 'en', 1, 'https://ror.org/04sppb023 Copenhagen Business School'),
(104067, 'https://ror.org/04sq8xk75', 'en', 1, 'https://ror.org/04sq8xk75 Centre for Psychiatry and Neuroscience'),
(104068, 'https://ror.org/04sqpc563', 'no_lang_code', 1, 'https://ror.org/04sqpc563 Anglian Water Services (United Kingdom)'),
(104069, 'https://ror.org/04sqtjj61', 'fr', 1, 'https://ror.org/04sqtjj61 Institut Pasteur de Nouvelle CalƩdonie'),
(104070, '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) äø­äŗ¤ē»¼åˆč§„åˆ’č®¾č®”é™¢ęœ‰é™å…¬åø'),
(104071, 'https://ror.org/04sw7nr96', 'es', 1, 'https://ror.org/04sw7nr96 Institute of Astrophysics La Plata Instituto de AstrofĆ­sica de La Plata'),
(104072, 'https://ror.org/04szabx38', 'fr', 1, 'https://ror.org/04szabx38 Institut de Biologie Structurale'),
(104073, 'https://ror.org/04t0qbt32', 'en', 1, 'https://ror.org/04t0qbt32 Ollscoil TeicneolaĆ­ochta Bhaile Atha Cliath Technological University Dublin'),
(104074, 'https://ror.org/04t0zhb48', 'fr', 1, 'https://ror.org/04t0zhb48 Institut Pasteur Korea'),
(104075, 'https://ror.org/04t5xt781', 'en', 1, 'https://ror.org/04t5xt781 Northeastern University'),
(104076, 'https://ror.org/04t8bw757', 'en', 1, 'https://ror.org/04t8bw757 Federal University Wukari'),
(104077, 'https://ror.org/04t9v8r67', 'fr', 1, 'https://ror.org/04t9v8r67 Ecotaxie, Microenvironnement et dƩveloppement lymphocytaire Microenvironment, lymphocyte development and homing'),
(104078, 'https://ror.org/04tagjk85', 'en', 1, 'https://ror.org/04tagjk85 Netherlands Institute for Social Research'),
(104079, 'https://ror.org/04tb90x61', 'en', 1, 'https://ror.org/04tb90x61 Mininglamp, Mininglamp (China) åŒ—äŗ¬ę˜Žē•„ę˜­č¾‰ē§‘ęŠ€ęœ‰é™å…¬åø'),
(104080, 'https://ror.org/04te6a418', 'en', 1, 'https://ror.org/04te6a418 Irish Centre for High-End Computing'),
(104081, 'https://ror.org/04team556', 'fr', 1, 'https://ror.org/04team556 Dynamique du noyau Nuclear Dynamics'),
(104082, 'https://ror.org/04th3xh64', 'pt', 1, 'https://ror.org/04th3xh64 Centro de Informação de Biotecnologia'),
(104083, 'https://ror.org/04tj5wz42', 'en', 1, 'https://ror.org/04tj5wz42 Christelijke Hogeschool Ede Christian University of Applied Sciences'),
(104084, 'https://ror.org/04tnvnq52', 'fr', 1, 'https://ror.org/04tnvnq52 DƩlƩgation Paris B'),
(104085, 'https://ror.org/04tpgrv36', 'en', 1, 'https://ror.org/04tpgrv36 Institute for Wildlife Studies'),
(104086, 'https://ror.org/04tqhj682', 'fr', 1, 'https://ror.org/04tqhj682 Agence franƧaise de dƩveloppement French Development Agency'),
(104087, 'https://ror.org/04trzn023', 'en', 1, 'https://ror.org/04trzn023 Beijing Academy of Agricultural and Forestry Sciences åŒ—äŗ¬åø‚å†œęž—ē§‘å­¦é™¢'),
(104088, 'https://ror.org/04ttnw109', 'en', 1, 'https://ror.org/04ttnw109 Sakarya University Sakarya Üniversitesi'),
(104089, 'https://ror.org/04tvt8c73', 'en', 1, 'https://ror.org/04tvt8c73 Regent''s University London'),
(104090, 'https://ror.org/04tvy9335', 'en', 1, 'https://ror.org/04tvy9335 Oaklands College'),
(104091, 'https://ror.org/04twxam07', 'en', 1, 'https://ror.org/04twxam07 The University of Texas MD Anderson Cancer Center'),
(104092, 'https://ror.org/04v0fk911', 'en', 1, 'https://ror.org/04v0fk911 TechnologickÔ agentura České republiky Technology Agency of the Czech Republic'),
(104093, 'https://ror.org/04v0z9b22', 'es', 1, 'https://ror.org/04v0z9b22 Instituto Valenciano de Investigaciones Económicas The Valencian Institute of Economic Research'),
(104094, 'https://ror.org/04v18t651', 'en', 1, 'https://ror.org/04v18t651 University of Nicosia Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī›ĪµĻ…ĪŗĻ‰ĻƒĪÆĪ±Ļ‚'),
(104095, 'https://ror.org/04v2j2k71', 'en', 1, 'https://ror.org/04v2j2k71 Xi''an University of Architecture and Technology č„æå®‰å»ŗē­‘ē§‘ęŠ€å¤§å­¦'),
(104096, 'https://ror.org/04v2twj65', 'en', 1, 'https://ror.org/04v2twj65 Oxford Brookes University Prifysgol Brookes Rhydychen'),
(104097, 'https://ror.org/04v302n28', 'en', 1, 'https://ror.org/04v302n28 Kafkas University Kafkas Üniversitesi'),
(104098, 'https://ror.org/04v41zn46', 'fr', 1, 'https://ror.org/04v41zn46 Brigade des Sapeurs Pompiers de Paris Paris Fire Brigade'),
(104099, 'https://ror.org/04v54gj93', 'en', 1, 'https://ror.org/04v54gj93 Cambridge University Hospitals NHS Foundation Trust'),
(104100, 'https://ror.org/04v5nzb91', 'en', 1, 'https://ror.org/04v5nzb91 Central University of Himachal Pradesh'),
(104101, 'https://ror.org/04v62ha11', 'en', 1, 'https://ror.org/04v62ha11 Glasgow Kelvin College'),
(104102, 'https://ror.org/04v7g1721', 'en', 1, 'https://ror.org/04v7g1721 University of Belgrade – Faculty of Physics Univerzitet u Beogradu – Fizički fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Физички Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(104103, 'https://ror.org/04v7gh640', 'en', 1, 'https://ror.org/04v7gh640 Cloudwalk, Cloudwalk (China) äŗ‘ä»Žē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(104104, 'https://ror.org/04ved1v49', 'fr', 1, 'https://ror.org/04ved1v49 Relais d''information sur les sciences de la cognition'),
(104105, 'https://ror.org/04vg26t07', 'fr', 1, 'https://ror.org/04vg26t07 Nanosciences et Innovation pour les MatĆ©riaux, la BiomĆ©decine et l''Ɖnergie'),
(104106, 'https://ror.org/04vg4w365', 'en', 1, 'https://ror.org/04vg4w365 Loughborough University Prifysgol Loughborough'),
(104107, 'https://ror.org/04vgbd477', 'en', 1, 'https://ror.org/04vgbd477 Chongqing University of Technology é‡åŗ†ē†å·„å¤§å­¦'),
(104108, 'https://ror.org/04vgc9p51', 'fr', 1, 'https://ror.org/04vgc9p51 Centre de Recherche Cardio-Thoracique de Bordeaux'),
(104109, 'https://ror.org/04vj6zn89', 'fr', 1, 'https://ror.org/04vj6zn89 Institut Sophia Agrobiotech Sophia Agrobiotech Institute'),
(104110, 'https://ror.org/04vmke174', 'en', 0, 'https://ror.org/04vmke174 National Center for Infectious Diseases'),
(104111, 'https://ror.org/04vmtqg68', 'fr', 1, 'https://ror.org/04vmtqg68 Haute Ɖcole LĆ©onard de Vinci'),
(104112, 'https://ror.org/04vmvtb21', 'en', 1, 'https://ror.org/04vmvtb21 Tulane University'),
(104113, 'https://ror.org/04vne9k06', 'fr', 1, 'https://ror.org/04vne9k06 MARGE'),
(104114, 'https://ror.org/04vrpfw15', 'en', 1, 'https://ror.org/04vrpfw15 Snowflake Inc., Snowflake Inc. (United States)'),
(104115, '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'),
(104116, 'https://ror.org/04vrxay34', 'en', 1, 'https://ror.org/04vrxay34 SOAS University of London SOAS, Prifysgol Llundain'),
(104117, 'https://ror.org/04vrxqg89', 'en', 1, 'https://ror.org/04vrxqg89 Nanfang College Guangzhou å¹æå·žå—ę–¹å­¦é™¢'),
(104118, 'https://ror.org/04w07sc25', 'fr', 1, 'https://ror.org/04w07sc25 Sciences pour L’Œnologie'),
(104119, 'https://ror.org/04w0a0617', 'es', 1, 'https://ror.org/04w0a0617 Instituto Tecnológico de San Luis Potosí'),
(104120, 'https://ror.org/04w11tv37', 'fr', 1, 'https://ror.org/04w11tv37 Biologie cellulaire et Cancer Cell Biology and Cancer'),
(104121, 'https://ror.org/04w2mj190', 'en', 1, 'https://ror.org/04w2mj190 Cirencester College'),
(104122, 'https://ror.org/04w3d2v20', 'en', 1, 'https://ror.org/04w3d2v20 Prifysgol Gorllewin yr Alban University of the West of Scotland'),
(104123, 'https://ror.org/04w5ec154', 'en', 1, 'https://ror.org/04w5ec154 Universiteit voor Humanistiek University of Humanistic Studies'),
(104124, 'https://ror.org/04w5qp452', 'en', 1, 'https://ror.org/04w5qp452 TeX Users Group'),
(104125, 'https://ror.org/04w66ad08', 'en', 1, 'https://ror.org/04w66ad08 Agricultural Sciences and Natural Resources University of Khuzestan'),
(104126, 'https://ror.org/04w7skc03', 'en', 1, 'https://ror.org/04w7skc03 Universidad de Denver University of Denver UniversitƩ de denver'),
(104127, 'https://ror.org/04w9mdw91', 'fr', 1, 'https://ror.org/04w9mdw91 Institut SupƩrieur de Gestion de Tunis'),
(104128, 'https://ror.org/04wa4se75', 'fr', 1, 'https://ror.org/04wa4se75 Dynamiques et Ʃcologie des paysages agriforestiers'),
(104129, 'https://ror.org/04waf7p94', 'pl', 1, 'https://ror.org/04waf7p94 Instytut Biologii Doświadczalnej im. Marcelego Nenckiego'),
(104130, 'https://ror.org/04wb5nh51', 'id', 1, 'https://ror.org/04wb5nh51 Universitas Muhammadiyah Kalimantan Timur'),
(104131, 'https://ror.org/04wb96h67', 'fr', 1, 'https://ror.org/04wb96h67 Agence de Mutualisation des UniversitƩs et Etablissements'),
(104132, 'https://ror.org/04wbg2z51', 'fr', 1, 'https://ror.org/04wbg2z51 Observatoire pour la Conservation de la MƩgafaune Marine'),
(104133, 'https://ror.org/04wbsq162', 'fr', 1, 'https://ror.org/04wbsq162 Institut thƩmatique SantƩ Publique'),
(104134, 'https://ror.org/04wcn4e27', 'en', 1, 'https://ror.org/04wcn4e27 LEAPS'),
(104135, 'https://ror.org/04wedba92', 'no_lang_code', 1, 'https://ror.org/04wedba92 Shell (United States)'),
(104136, 'https://ror.org/04wez4p43', 'fr', 0, 'https://ror.org/04wez4p43 Laboratoire d''Automatique, GƩnie Informatique et Signal'),
(104137, 'https://ror.org/04wez5e68', 'fr', 1, 'https://ror.org/04wez5e68 Paris 8 University UniversitƩ Paris 8'),
(104138, 'https://ror.org/04wfbp123', 'en', 1, 'https://ror.org/04wfbp123 Ahsanullah University of Science and Technology ą¦†ą¦¹ą¦øą¦¾ą¦Øą¦‰ą¦²ą§ą¦²ą¦¾ą¦¹ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(104139, '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'),
(104140, 'https://ror.org/04wk1rj64', 'no_lang_code', 1, 'https://ror.org/04wk1rj64 Bioland e.V.'),
(104141, 'https://ror.org/04wkzvc75', 'en', 1, 'https://ror.org/04wkzvc75 Fairleigh Dickinson University'),
(104142, 'https://ror.org/04wncat98', 'en', 1, 'https://ror.org/04wncat98 The Wistar Institute'),
(104143, 'https://ror.org/04wq8zb47', 'en', 1, 'https://ror.org/04wq8zb47 Sultan Qaboos University Ų¬Ų§Ł…Ų¹Ų© السلطان Ł‚Ų§ŲØŁˆŲ³'),
(104144, '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'),
(104145, 'https://ror.org/04wsqd844', 'fr', 1, 'https://ror.org/04wsqd844 Direction GƩnƩrale de l''Armement'),
(104146, 'https://ror.org/04wtce741', 'fr', 1, 'https://ror.org/04wtce741 Campus France'),
(104147, 'https://ror.org/04wttst55', 'fr', 1, 'https://ror.org/04wttst55 American Hospital of Paris HƓpital amƩricain de paris'),
(104148, 'https://ror.org/04wvj5008', 'en', 1, 'https://ror.org/04wvj5008 An Foras RiarachƔin Institute of Public Administration'),
(104149, 'https://ror.org/04wxbhc62', 'en', 1, 'https://ror.org/04wxbhc62 Himalayan College of Agricultural Sciences and Technology'),
(104150, 'https://ror.org/04wy7gp54', 'en', 1, 'https://ror.org/04wy7gp54 Karabük University Karabük Üniversitesi'),
(104151, 'https://ror.org/04wz9m339', 'fr', 1, 'https://ror.org/04wz9m339 ArchĆ©ologies et Sciences de l’AntiquitĆ©'),
(104152, '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'),
(104153, 'https://ror.org/04wzf4f82', 'en', 1, 'https://ror.org/04wzf4f82 National Institute for Innovation in Manufacturing Biopharmaceuticals'),
(104154, 'https://ror.org/04wzzqn13', 'en', 1, 'https://ror.org/04wzzqn13 Kean University'),
(104155, 'https://ror.org/04x0kvm78', 'en', 1, 'https://ror.org/04x0kvm78 Shihezi University 石河子大学'),
(104156, 'https://ror.org/04x1xkh65', 'en', 1, 'https://ror.org/04x1xkh65 State of Florida'),
(104157, 'https://ror.org/04x361v68', 'en', 1, 'https://ror.org/04x361v68 Virginia Foundation for the Humanities'),
(104158, 'https://ror.org/04x383a88', 'fr', 1, 'https://ror.org/04x383a88 ESIEE Paris'),
(104159, 'https://ror.org/04x3ad968', 'id', 1, 'https://ror.org/04x3ad968 Sekolah Tinggi Ilmu Kesehatan Kendal'),
(104160, 'https://ror.org/04x3ne739', 'en', 1, 'https://ror.org/04x3ne739 Galala University Ų¬Ų§Ł…Ų¹Ų© الجلالة'),
(104161, 'https://ror.org/04x7ec535', 'fr', 1, 'https://ror.org/04x7ec535 BioCampus Montpellier'),
(104162, 'https://ror.org/04x97hf88', 'en', 1, 'https://ror.org/04x97hf88 Hommes et management en sociƩtƩ Humans and management in society'),
(104163, 'https://ror.org/04xbczw40', 'fr', 1, 'https://ror.org/04xbczw40 Laboratoire AmpĆØre'),
(104164, 'https://ror.org/04xdqtw10', 'en', 1, 'https://ror.org/04xdqtw10 Shanghai Jian Qiao University äøŠęµ·å»ŗę”„å­¦é™¢'),
(104165, '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'),
(104166, 'https://ror.org/04xfq0f34', 'en', 1, 'https://ror.org/04xfq0f34 RWTH Aachen University Rheinisch-WestfƤlische Technische Hochschule Aachen'),
(104167, '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'),
(104168, 'https://ror.org/04xnqep60', 'en', 1, 'https://ror.org/04xnqep60 Beijing Information Science & Technology University åŒ—äŗ¬äæ”ęÆē§‘ęŠ€å¤§å­¦'),
(104169, 'https://ror.org/04xp49e10', 'fr', 1, 'https://ror.org/04xp49e10 Ministere de l''Education Nationale Ministry of National Education'),
(104170, 'https://ror.org/04xrcta15', 'en', 1, 'https://ror.org/04xrcta15 Munich Center for Quantum Science and Technology'),
(104171, 'https://ror.org/04xsj2p07', 'fr', 1, 'https://ror.org/04xsj2p07 Observatoire astronomique de Strasbourg'),
(104172, 'https://ror.org/04xskzp68', 'en', 1, 'https://ror.org/04xskzp68 Kharkiv Institute of Medicine and Biomedical Sciences Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицини та біомеГичних наук'),
(104173, 'https://ror.org/04xsrsp28', 'en', 1, 'https://ror.org/04xsrsp28 King''s Fertility'),
(104174, 'https://ror.org/04xtaw673', 'en', 1, 'https://ror.org/04xtaw673 Fish Physiology and Genomics Institute Laboratoire de Physiologie et GƩnomique des Poissons'),
(104175, 'https://ror.org/04xtx5t16', 'en', 1, 'https://ror.org/04xtx5t16 DePaul University'),
(104176, 'https://ror.org/04xv0vq46', 'en', 1, 'https://ror.org/04xv0vq46 National Center for Post Traumatic Stress Disorder'),
(104177, 'https://ror.org/04xv2pc41', 'en', 1, 'https://ror.org/04xv2pc41 Beijing Forestry University åŒ—äŗ¬ęž—äøšå¤§å­¦'),
(104178, 'https://ror.org/04xw96n82', 'en', 1, 'https://ror.org/04xw96n82 Baku Eurasian University'),
(104179, 'https://ror.org/04xz2my07', 'en', 1, 'https://ror.org/04xz2my07 Oenology Research Unit Unite de Recherche Œnologie'),
(104180, 'https://ror.org/04y24xj84', 'fr', 1, 'https://ror.org/04y24xj84 Equipe de recherche de Lyon en Sciences de l''Information et de la Communication'),
(104181, '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'),
(104182, 'https://ror.org/04y53ne24', 'es', 1, 'https://ror.org/04y53ne24 Universidad de las Artes'),
(104183, 'https://ror.org/04y58d606', 'en', 1, 'https://ror.org/04y58d606 Khulna University of Engineering & Technology, Khulna University of Engineering and Technology খুলনা ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(104184, 'https://ror.org/04y5kwa70', 'fr', 1, 'https://ror.org/04y5kwa70 University of Technology of Compiègne Université de Technologie de Compiègne'),
(104185, 'https://ror.org/04y75v050', 'no_lang_code', 1, 'https://ror.org/04y75v050 Textron Systems (United Kingdom)'),
(104186, 'https://ror.org/04y7h3604', 'en', 1, 'https://ror.org/04y7h3604 Alfried Krupp von Bohlen und Halbach Foundation Alfried Krupp von Bohlen und Halbach-Stiftung'),
(104187, 'https://ror.org/04y91dy23', 'fr', 1, 'https://ror.org/04y91dy23 UnitĆ© Ɖvolution, Ɖcologie et PalĆ©ontologie'),
(104188, 'https://ror.org/04y91p704', 'en', 1, 'https://ror.org/04y91p704 Vancouver Community College'),
(104189, 'https://ror.org/04y9m7a06', 'sr', 1, 'https://ror.org/04y9m7a06 DruŔtvo lekara Vojvodine'),
(104190, 'https://ror.org/04yavcg77', 'fr', 1, 'https://ror.org/04yavcg77 Anthropologie et Histoire des Mondes Antiques Anthropology and History of the Ancient World'),
(104191, 'https://ror.org/04yb4j419', 'fr', 1, 'https://ror.org/04yb4j419 Institut Pasteur du Maroc'),
(104192, 'https://ror.org/04yd76m66', 'no_lang_code', 1, 'https://ror.org/04yd76m66 Faghihi Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ ŁŁ‚ŪŒŁ‡ŪŒ'),
(104193, 'https://ror.org/04ydmy275', 'en', 1, 'https://ror.org/04ydmy275 Universidad de Massachusetts Boston University of Massachusetts Boston UniversitƩ du Massachusetts'),
(104194, 'https://ror.org/04yem5s35', 'fr', 1, 'https://ror.org/04yem5s35 INFRANALYTICS'),
(104195, 'https://ror.org/04yfac239', 'en', 1, 'https://ror.org/04yfac239 COC Ruse, Complex Oncology Center - Ruse Kompleksen Onkologichen Tsentar – Ruse, Комплексен ŠžŠ½ŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŠ½ Š¦ŠµŠ½Ń‚ŃŠŃ€ Русе'),
(104196, 'https://ror.org/04yp7fr64', 'en', 1, 'https://ror.org/04yp7fr64 CoStar Group, CoStar Group (United States)'),
(104197, 'https://ror.org/04ypx8c21', 'en', 1, 'https://ror.org/04ypx8c21 Zhengzhou University 郑州大学'),
(104198, 'https://ror.org/04yqcxp07', 'en', 1, 'https://ror.org/04yqcxp07 Quantum Source Labs Ltd, Quantum Source Labs Ltd (Israel)'),
(104199, 'https://ror.org/04yqxr030', 'en', 1, 'https://ror.org/04yqxr030 Shanghai Marine Meteorological Center äøŠęµ·ęµ·ę“‹äø­åæƒę°”č±”å°'),
(104200, 'https://ror.org/04yrgt058', 'en', 1, 'https://ror.org/04yrgt058 Bard College'),
(104201, 'https://ror.org/04yrq0159', 'en', 1, 'https://ror.org/04yrq0159 NSWC Dahlgren Division'),
(104202, 'https://ror.org/04ysg2a58', 'fr', 1, 'https://ror.org/04ysg2a58 Chemistry And Interdisciplinarité, Synthesis, Analyze, Modeling Chimie et Interdisciplinarité, Synthèse, Analyse, Modélisation'),
(104203, 'https://ror.org/04ytb9n23', 'en', 1, 'https://ror.org/04ytb9n23 Furman University'),
(104204, 'https://ror.org/04ytecw04', 'en', 1, 'https://ror.org/04ytecw04 KLS Gogte Institute of Technology'),
(104205, 'https://ror.org/04ywb0864', 'en', 1, 'https://ror.org/04ywb0864 Jahangirnagar University ą¦œą¦¾ą¦¹ą¦¾ą¦™ą§ą¦—ą§€ą¦°ą¦Øą¦—ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(104206, 'https://ror.org/04z066j96', 'en', 0, 'https://ror.org/04z066j96 Judson College'),
(104207, 'https://ror.org/04z1y1967', 'en', 1, 'https://ror.org/04z1y1967 National Film and Television School'),
(104208, 'https://ror.org/04z2nq561', 'no_lang_code', 1, 'https://ror.org/04z2nq561 Qilimanjaro Quantum Tech, Qilimanjaro Quantum Tech (Spain)'),
(104209, 'https://ror.org/04z4esw72', 'en', 1, 'https://ror.org/04z4esw72 Archives of American Art'),
(104210, 'https://ror.org/04z557486', 'en', 1, 'https://ror.org/04z557486 Arizona Western College'),
(104211, 'https://ror.org/04z6gwv56', 'en', 1, 'https://ror.org/04z6gwv56 National Museum NƔrodnƭ muzeum'),
(104212, 'https://ror.org/04z73qb28', 'en', 0, 'https://ror.org/04z73qb28 Brooklyn Philharmonic'),
(104213, 'https://ror.org/04z7qrj66', 'en', 1, 'https://ror.org/04z7qrj66 Shanghai Maritime University äøŠęµ·ęµ·äŗ‹å¤§å­¦'),
(104214, 'https://ror.org/04z8qxc46', 'en', 1, 'https://ror.org/04z8qxc46 The Fund for Science, Technology and Innovation'),
(104215, 'https://ror.org/04z91ja70', 'en', 1, 'https://ror.org/04z91ja70 Flinders Microscopy and Microanalysis'),
(104216, 'https://ror.org/04zdwr798', 'fr', 1, 'https://ror.org/04zdwr798 Cancer Thematics Institute Institut ThƩmatique Cancer'),
(104217, 'https://ror.org/04zeq1c51', 'fr', 1, 'https://ror.org/04zeq1c51 Cyceron'),
(104218, 'https://ror.org/04zfme737', 'en', 1, 'https://ror.org/04zfme737 Liverpool John Moores University Prifysgol John Moores, Lerpwl'),
(104219, 'https://ror.org/04zj2bd87', 'en', 1, 'https://ror.org/04zj2bd87 Nanjing Audit University å—äŗ¬å®”č®”å­¦é™¢'),
(104220, 'https://ror.org/04zj3zq12', 'de', 1, 'https://ror.org/04zj3zq12 Fachklinik für Neurologie Dietenbronn'),
(104221, 'https://ror.org/04zmms242', 'fr', 0, 'https://ror.org/04zmms242 Laboratoire de Biologie MolƩculaire des Eucaryotes Laboratory of Eukaryotic Molecular Biology'),
(104222, 'https://ror.org/04znxe670', 'es', 1, 'https://ror.org/04znxe670 Universidad de Colima University of Colima'),
(104223, 'https://ror.org/04zptmf07', 'en', 1, 'https://ror.org/04zptmf07 DIII-D National Fusion Facility'),
(104224, 'https://ror.org/04zvemf87', 'en', 1, 'https://ror.org/04zvemf87 Higher Institute of Science and Technology Sabratha المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ© - ŲµŲØŲ±Ų§ŲŖŲ©'),
(104225, 'https://ror.org/04zx93s85', 'fr', 1, 'https://ror.org/04zx93s85 Gendarmerie Nationale National Gendarmerie'),
(104226, 'https://ror.org/04zxf4256', 'en', 1, 'https://ror.org/04zxf4256 General Tire, General Tire (United States)'),
(104227, 'https://ror.org/0502afh35', 'en', 1, 'https://ror.org/0502afh35 Abt Global, Abt Global (United States)'),
(104228, 'https://ror.org/0502mw613', 'fr', 1, 'https://ror.org/0502mw613 Centre Franco-Ɖgyptien d’Étude des Temples de Karnak'),
(104229, 'https://ror.org/0502xk698', 'en', 1, 'https://ror.org/0502xk698 NSWC Philadelphia Division'),
(104230, 'https://ror.org/0503mhx84', 'fr', 1, 'https://ror.org/0503mhx84 Institut la Personne en mƩdecine'),
(104231, 'https://ror.org/0503y1475', 'en', 1, 'https://ror.org/0503y1475 Evangelical Presbyterian College of Education, Bimbilla Kwalejin Ilimi ta Presbyterian, Bimbilla'),
(104232, 'https://ror.org/05060sz93', 'en', 1, 'https://ror.org/05060sz93 Institut Jožef Stefan Jožef Stefan Institute'),
(104233, 'https://ror.org/05079x435', 'fr', 1, 'https://ror.org/05079x435 Maison des Sciences de l''Homme Paris Nord'),
(104234, 'https://ror.org/0508vt965', 'pt', 1, 'https://ror.org/0508vt965 Madan Parque'),
(104235, 'https://ror.org/050a1gn71', 'fr', 1, 'https://ror.org/050a1gn71 ModĆØles et simulations pour l''Architecture et le Patrimoine'),
(104236, 'https://ror.org/050a3a192', 'en', 1, 'https://ror.org/050a3a192 Prestige Institute of Management and Research, Bhopal'),
(104237, 'https://ror.org/050cf7q30', 'en', 1, 'https://ror.org/050cf7q30 Mampong Technical College of Education'),
(104238, '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'),
(104239, 'https://ror.org/050gdsq06', 'fr', 1, 'https://ror.org/050gdsq06 Institut d''ethnologie mƩditerranƩenne europƩenne et comparative'),
(104240, 'https://ror.org/050mac570', 'en', 1, 'https://ror.org/050mac570 National Institute of Chemistry'),
(104241, 'https://ror.org/050qj5m48', 'en', 1, 'https://ror.org/050qj5m48 University of Maine System'),
(104242, 'https://ror.org/050ra0n32', 'fr', 1, 'https://ror.org/050ra0n32 Universitat de Còrsega Pasquale Paoli University of Corsica Pascal Paoli Université de Corse Pascal Paoli'),
(104243, 'https://ror.org/050rs7291', 'fr', 1, 'https://ror.org/050rs7291 Centre de RadiofrƩquences, Optique et Micro-nanoƩlectronique des Alpes'),
(104244, 'https://ror.org/050sat078', 'fr', 1, 'https://ror.org/050sat078 Centre Camille Jullian'),
(104245, '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'),
(104246, 'https://ror.org/050wjx790', 'pt', 1, 'https://ror.org/050wjx790 Instituto PolitƩcnico Jean Piaget do Sul'),
(104247, 'https://ror.org/050x42563', 'fr', 1, 'https://ror.org/050x42563 Microscopies, imageries et ressources analytiques en rƩgion Centre-Val de Loire'),
(104248, 'https://ror.org/050y3ke75', 'en', 1, 'https://ror.org/050y3ke75 IFOAM Organics Europe'),
(104249, 'https://ror.org/050yr0479', 'en', 1, 'https://ror.org/050yr0479 Cohere, Cohere (Canada)'),
(104250, 'https://ror.org/0511cmw96', 'en', 1, 'https://ror.org/0511cmw96 Indiana University of Pennsylvania Universidad de Pensilvania en Indiana'),
(104251, 'https://ror.org/05120qw60', 'pt', 1, 'https://ror.org/05120qw60 Escola Superior de SaĆŗde Jean Piaget de Viseu'),
(104252, 'https://ror.org/0512ckg88', 'fr', 1, 'https://ror.org/0512ckg88 Union des HƓpitaux pour les Achats Union of Hospitals for Purchasing'),
(104253, 'https://ror.org/0512cxv65', 'no_lang_code', 1, 'https://ror.org/0512cxv65 Seiko (United States)'),
(104254, 'https://ror.org/0513ed054', 'fr', 1, 'https://ror.org/0513ed054 Institut de Thermique, MƩcanique, MatƩriaux'),
(104255, 'https://ror.org/051635438', 'en', 1, 'https://ror.org/051635438 å…¬ē›Šč²”å›£ę³•äŗŗćƒ¤ć‚Æćƒ«ćƒˆćƒ»ćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶č²”å›£ Yakult Bio-Science Foundation, Yakult Bio-Science Foundation (Japan)'),
(104256, 'https://ror.org/0517rzt45', 'en', 1, 'https://ror.org/0517rzt45 T. Rowe Price Group, T. Rowe Price Group (United States)'),
(104257, 'https://ror.org/0518wrr32', 'en', 1, 'https://ror.org/0518wrr32 LIGO Scientific Collaboration'),
(104258, 'https://ror.org/0519st743', 'en', 1, 'https://ror.org/0519st743 Suzhou Vocational Health College č‹å·žčŒäøšå„åŗ·å­¦é™¢'),
(104259, 'https://ror.org/0519z1a07', 'es', 1, 'https://ror.org/0519z1a07 Universidad Tecnológica del Valle del Mezquital'),
(104260, 'https://ror.org/051arnj27', 'no_lang_code', 1, 'https://ror.org/051arnj27 Teledyne FLIR (Belgium)'),
(104261, 'https://ror.org/051awsb83', 'en', 1, 'https://ror.org/051awsb83 Tompkins Cortland Community College'),
(104262, 'https://ror.org/051br2d77', 'fr', 1, 'https://ror.org/051br2d77 Lettres et Civilisations EtrangĆØres'),
(104263, 'https://ror.org/051f36b19', 'es', 1, 'https://ror.org/051f36b19 Asociación Colombiana de Cirugía de la Mano'),
(104264, 'https://ror.org/051f3f740', 'fr', 1, 'https://ror.org/051f3f740 Ɖcologie et Biologie des Interactions'),
(104265, 'https://ror.org/051k3eh31', 'en', 1, 'https://ror.org/051k3eh31 Tokyo Medical and Dental University ę±äŗ¬åŒ»ē§‘ę­Æē§‘å¤§å­¦'),
(104266, 'https://ror.org/051kejp81', 'en', 1, 'https://ror.org/051kejp81 Brooklyn Public Library'),
(104267, 'https://ror.org/051mrsz47', 'en', 1, 'https://ror.org/051mrsz47 Hƶgskolan i Skƶvde University of Skƶvde'),
(104268, 'https://ror.org/051n2s460', 'fr', 1, 'https://ror.org/051n2s460'),
(104269, 'https://ror.org/051p9ra28', 'en', 1, 'https://ror.org/051p9ra28 Station Marine d''Endoume'),
(104270, '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'),
(104271, 'https://ror.org/051r3tx83', 'en', 1, 'https://ror.org/051r3tx83 North Carolina Central University UniversitƩ centrale de caroline du nord'),
(104272, 'https://ror.org/051rrf637', 'en', 1, 'https://ror.org/051rrf637 California Maritime Academy'),
(104273, 'https://ror.org/051sjmb83', 'fr', 1, 'https://ror.org/051sjmb83 Centre de Recherche Magellan'),
(104274, 'https://ror.org/051sx6d27', 'en', 1, 'https://ror.org/051sx6d27 Dublin Institute For Advanced Studies Institiúid Ard-Léinn Bhaile Átha Cliath'),
(104275, 'https://ror.org/051tqwf02', 'en', 1, 'https://ror.org/051tqwf02 International Society for Biocuration'),
(104276, 'https://ror.org/051v6v138', 'en', 1, 'https://ror.org/051v6v138 Kaakkois Suomen Ammattikorkeakoulu South Eastern Finland University of Applied Sciences'),
(104277, 'https://ror.org/051v7w268', 'it', 1, 'https://ror.org/051v7w268 Istituto Pasteur'),
(104278, 'https://ror.org/051yxp643', 'en', 1, 'https://ror.org/051yxp643 Max Planck Institute for Biogeochemistry Max-Planck-Institut für Biogeochemie'),
(104279, 'https://ror.org/0520xdp94', 'en', 1, 'https://ror.org/0520xdp94 Kut University College ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁˆŲŖ الجامعة'),
(104280, 'https://ror.org/0523y5c19', 'en', 1, 'https://ror.org/0523y5c19 Shandong University of Traditional Chinese Medicine å±±äøœäø­åŒ»čÆå¤§å­¦'),
(104281, 'https://ror.org/052411t69', 'en', 1, 'https://ror.org/052411t69 Courtauld Institute of Art Sefydliad Celf Courtauld'),
(104282, 'https://ror.org/05252fg05', 'en', 1, 'https://ror.org/05252fg05 Deraya University Ų¬Ų§Ł…Ų¹Ų© دراية'),
(104283, 'https://ror.org/05263cd97', 'fr', 0, 'https://ror.org/05263cd97 Laboratoire Physiologie Biotechnologie des Algues Physiology and Biotechnology of Algae laboratory'),
(104284, 'https://ror.org/0526bmn46', 'de', 1, 'https://ror.org/0526bmn46 Bundesverband RIAS e.V., Bundesverband der Recherche- und Informationsstellen Antisemitismus'),
(104285, 'https://ror.org/0526wv466', 'id', 1, 'https://ror.org/0526wv466 Universitas Muhammadiyah Kuningan'),
(104286, 'https://ror.org/0528rdx54', 'en', 1, 'https://ror.org/0528rdx54 East Berkshire College'),
(104287, 'https://ror.org/0529q4s79', 'fr', 1, 'https://ror.org/0529q4s79 Institut d’EpidĆ©miologie Neurologique et de Neurologie Tropicale'),
(104288, 'https://ror.org/052b46n78', 'fr', 1, 'https://ror.org/052b46n78 Institut Pasteur d''AlgƩrie'),
(104289, 'https://ror.org/052bbtn31', 'fr', 1, 'https://ror.org/052bbtn31 Centre de Physique ThƩorique'),
(104290, 'https://ror.org/052bz7812', 'fr', 1, 'https://ror.org/052bz7812 UniversitƩ Paris Dauphine-PSL'),
(104291, 'https://ror.org/052d1cv78', 'fr', 1, 'https://ror.org/052d1cv78 Genetique Reproduction and Developpement, GƩnƩtique Reproduction et DƩveloppement'),
(104292, 'https://ror.org/052dp8730', 'en', 1, 'https://ror.org/052dp8730 CIHR Skin Research Training Centre'),
(104293, 'https://ror.org/052dpkx72', 'en', 1, 'https://ror.org/052dpkx72 Membrane dynamics in and outside the cell'),
(104294, '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'),
(104295, 'https://ror.org/052gyqs21', 'en', 1, 'https://ror.org/052gyqs21 T. Rowe Price Program for Charitable Giving'),
(104296, 'https://ror.org/052hmv319', 'no_lang_code', 1, 'https://ror.org/052hmv319 GƉANT'),
(104297, 'https://ror.org/052msxy68', 'en', 1, 'https://ror.org/052msxy68 Montana University System Sistema Universitario de Montana'),
(104298, 'https://ror.org/052pqt102', 'fr', 1, 'https://ror.org/052pqt102 Plateforme de chimie biologique intƩgrative de Strasbourg'),
(104299, 'https://ror.org/052qegn86', 'es', 1, 'https://ror.org/052qegn86 Institute of Spain Instituto de EspaƱa'),
(104300, 'https://ror.org/052rphn09', 'en', 1, 'https://ror.org/052rphn09 Foundation for Research and Technology Hellas ĪŠĪ“ĻĻ…Ī¼Ī± Τεχνολογίας και ĪˆĻĪµĻ…Ī½Ī±Ļ‚'),
(104301, 'https://ror.org/052w4zt36', 'en', 1, 'https://ror.org/052w4zt36 American University Universidad Americana'),
(104302, 'https://ror.org/052waam31', 'en', 1, 'https://ror.org/052waam31 Aon, Aon (United Kingdom)'),
(104303, 'https://ror.org/052wpc865', 'fr', 1, 'https://ror.org/052wpc865 Centre d’études des Mondes Russe, Caucasien et Centre-EuropĆ©en'),
(104304, 'https://ror.org/052x1hs80', 'en', 1, 'https://ror.org/052x1hs80 Netherlands Environmental Assessment Agency Planbureau voor de Leefomgeving'),
(104305, 'https://ror.org/052xwpe12', 'fr', 1, 'https://ror.org/052xwpe12 Normandy Business School Ɖcole de management de Normandie'),
(104306, 'https://ror.org/052yj6c27', 'fr', 1, 'https://ror.org/052yj6c27 Nutrition, DiabĆØte et Cerveau'),
(104307, 'https://ror.org/0530bdk91', 'en', 1, 'https://ror.org/0530bdk91 Magna Graecia University UniversitƠ degli studi Magna GrƦcia di Catanzaro'),
(104308, 'https://ror.org/0530j9m17', 'fr', 1, 'https://ror.org/0530j9m17 DƩlƩgation RƩgionale Auvergne-RhƓne-Alpes'),
(104309, 'https://ror.org/0530pts50', 'en', 1, 'https://ror.org/0530pts50 South China University of Technology åŽå—ē†å·„å¤§å­¦'),
(104310, 'https://ror.org/0530qwm02', 'fr', 1, 'https://ror.org/0530qwm02 Institut Terre & Environnement de Strasbourg'),
(104311, 'https://ror.org/0530xmm89', 'en', 1, 'https://ror.org/0530xmm89 Royal College of Physicians'),
(104312, 'https://ror.org/0532vdr17', 'no_lang_code', 1, 'https://ror.org/0532vdr17 Signify (Netherlands)'),
(104313, 'https://ror.org/0535cbn94', 'fr', 1, 'https://ror.org/0535cbn94 SystĆØmes MolĆ©culaires et nanoMatĆ©riaux pour l''Ɖnergie et la SantĆ©'),
(104314, 'https://ror.org/0535nfe19', 'es', 1, 'https://ror.org/0535nfe19 Universidad PolitƩcnica de la Zona Metropolitana de Guadalajara'),
(104315, 'https://ror.org/05367a632', 'fr', 1, 'https://ror.org/05367a632 Plateforme Technologique d''Innovation BiomƩdicale'),
(104316, 'https://ror.org/0537aj111', 'en', 1, 'https://ror.org/0537aj111 Crohn''s in Childhood Research Association'),
(104317, 'https://ror.org/0539kc598', 'en', 1, 'https://ror.org/0539kc598 Arts University Bournemouth'),
(104318, 'https://ror.org/053f2w588', 'en', 1, 'https://ror.org/053f2w588 Manisa Celal Bayar University Manisa Celal Bayar Üniversitesi'),
(104319, 'https://ror.org/053gv2m95', 'en', 1, 'https://ror.org/053gv2m95 Novartis Institutes for BioMedical Research'),
(104320, 'https://ror.org/053j19t39', 'en', 1, 'https://ror.org/053j19t39 Genesee Community College'),
(104321, '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'),
(104322, 'https://ror.org/053jqyp97', 'en', 1, 'https://ror.org/053jqyp97 Rangpur Medical College'),
(104323, 'https://ror.org/053kjm920', 'pt', 1, 'https://ror.org/053kjm920 Centro UniversitÔrio Católica de QuixadÔ'),
(104324, 'https://ror.org/053p5te48', 'fr', 1, 'https://ror.org/053p5te48 Structure fƩdƩrative de recherche Necker'),
(104325, 'https://ror.org/053p8kg34', 'fr', 1, 'https://ror.org/053p8kg34 AndrƩ Revuz Didactics Laboratory Laboratoire de Didactique AndrƩ Revuz'),
(104326, 'https://ror.org/053ppfe96', 'fr', 1, 'https://ror.org/053ppfe96 Advanced Drug Delivery Systems Systèmes avancés de délivrance de principes actifs'),
(104327, 'https://ror.org/053rhfn23', 'en', 1, 'https://ror.org/053rhfn23 Ministry of Power ą¤µą¤æą¤¦ą„ą¤Æą„ą¤¤ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(104328, 'https://ror.org/053tsx367', 'nl', 1, 'https://ror.org/053tsx367 Institute for Road Safety Research Stichting Wetenschappelijk Onderzoek Verkeersveiligheid'),
(104329, 'https://ror.org/053vv7851', 'fr', 1, 'https://ror.org/053vv7851 Ecologie Microbienne Lyon Microbial Ecology'),
(104330, 'https://ror.org/053yszt22', 'en', 1, 'https://ror.org/053yszt22 Exelon, Exelon (United States)'),
(104331, 'https://ror.org/0541jr710', 'en', 1, 'https://ror.org/0541jr710 European Space Operations Centre'),
(104332, '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'),
(104333, 'https://ror.org/054341q84', 'en', 1, 'https://ror.org/054341q84 KTO Karatay University KTO Karatay Üniversitesi');
INSERT INTO `rors` VALUES
(104334, 'https://ror.org/0546jt497', 'fr', 1, 'https://ror.org/0546jt497 Histoire des ThƩories Linguistiques'),
(104335, 'https://ror.org/0546x0d08', 'en', 1, 'https://ror.org/0546x0d08 Guangzhou Huashang College å¹æå·žåŽå•†å­¦é™¢'),
(104336, 'https://ror.org/0547wj766', 'en', 1, 'https://ror.org/0547wj766 Northern College'),
(104337, 'https://ror.org/054962n91', 'no_lang_code', 1, 'https://ror.org/054962n91 Siemens Healthcare (United States)'),
(104338, 'https://ror.org/0549ke970', 'en', 1, 'https://ror.org/0549ke970 Software Engineering Institute of Guangzhou å¹æå·žč½Æä»¶å­¦é™¢'),
(104339, 'https://ror.org/054b22910', 'en', 1, 'https://ror.org/054b22910 EuroMov Digital Health in Motion'),
(104340, 'https://ror.org/054b6pr16', 'en', 1, 'https://ror.org/054b6pr16 Luxembourg Centre for Contemporary and Digital History'),
(104341, 'https://ror.org/054bwsx29', 'en', 1, 'https://ror.org/054bwsx29 New Hampshire Humanities Council'),
(104342, 'https://ror.org/054d78x30', 'en', 1, 'https://ror.org/054d78x30 IMRA Europe IMRA Europe SAS'),
(104343, 'https://ror.org/054eytx62', 'en', 1, 'https://ror.org/054eytx62 University of Belgrade - Faculty of Mechanical Engineering Univerzitet u Beogradu - MaÅ”inski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Машински Š¤Š°ŠŗŃƒŠ»Ń‚ет'),
(104344, 'https://ror.org/054fae424', 'fr', 1, 'https://ror.org/054fae424 Centre Observation, Impacts, Ɖnergie Centre for Observation, Impacts, Energy'),
(104345, 'https://ror.org/054g2pw49', 'en', 1, 'https://ror.org/054g2pw49 Hasan Kalyoncu University Hasan Kalyoncu Üniversitesi'),
(104346, 'https://ror.org/054gdnq27', 'en', 1, 'https://ror.org/054gdnq27 Bosch Health Campus Bosch Health Campus GmbH'),
(104347, 'https://ror.org/054ktxw16', 'fr', 1, 'https://ror.org/054ktxw16 Biomass, Wood, Energy, Bioproducts Biomasse, bois, Ʃnergie, bio-produits'),
(104348, 'https://ror.org/054mp6682', 'en', 1, 'https://ror.org/054mp6682 PAP Non-commissioned Officer School äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜Ÿå£«å®˜å­¦ę ”'),
(104349, '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'),
(104350, 'https://ror.org/054wd5j92', 'en', 1, 'https://ror.org/054wd5j92 Guangzhou Baiyun Airport Customs Comprehensive Technical Service Center å¹æå·žē™½äŗ‘ęœŗåœŗęµ·å…³ē»¼åˆęŠ€ęœÆęœåŠ”äø­åæƒ'),
(104351, 'https://ror.org/054ys1f07', 'en', 1, 'https://ror.org/054ys1f07 Slovak Centre of Scientific and Technical Information'),
(104352, 'https://ror.org/054ys4h04', 'no_lang_code', 1, 'https://ror.org/054ys4h04 Cobham (United Kingdom)'),
(104353, 'https://ror.org/054z83b16', 'no_lang_code', 1, 'https://ror.org/054z83b16 Alexandra Institute (Denmark)'),
(104354, 'https://ror.org/05510z802', 'fr', 1, 'https://ror.org/05510z802 Conseil rƩgional de Bretagne Regional Council of Brittany'),
(104355, 'https://ror.org/05514hp74', 'en', 1, 'https://ror.org/05514hp74 Laboratory of Fundamental and Applied Bioenergetics'),
(104356, 'https://ror.org/0552wkf46', 'en', 1, 'https://ror.org/0552wkf46 NRG Energy, NRG Energy (United States)'),
(104357, 'https://ror.org/0554d9k40', 'en', 1, 'https://ror.org/0554d9k40 ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠ° політехніка імені Š®Ń€Ń–Ń ŠšŠ¾Š½Š“Ń€Š°Ń‚ŃŽŠŗŠ°Ā»'),
(104358, 'https://ror.org/0555ezg60', 'en', 1, 'https://ror.org/0555ezg60 Huaiyin Institute of Technology'),
(104359, 'https://ror.org/05564e019', 'en', 1, 'https://ror.org/05564e019 Inner Mongolia University of Technology å†…č’™å¤å·„äøšå¤§å­¦'),
(104360, 'https://ror.org/0557vhy43', 'fr', 1, 'https://ror.org/0557vhy43 Laboratoire Biologie et Biotechnologie pour la SantƩ'),
(104361, 'https://ror.org/05586es19', 'en', 1, 'https://ror.org/05586es19 Khwaja Yunus Ali Medical College ą¦–ą¦¾ą¦œą¦¾ ইউনুস আলী মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(104362, 'https://ror.org/0558j5q12', 'ro', 1, 'https://ror.org/0558j5q12 POLITEHNICA București, Universitatea Națională de Știință și Tehnologie Politehnica București'),
(104363, 'https://ror.org/0559cv935', 'en', 1, 'https://ror.org/0559cv935 Moshood Abiola Polytechnic'),
(104364, 'https://ror.org/055a4rj94', 'en', 1, 'https://ror.org/055a4rj94 Kashi University 喀什大学'),
(104365, 'https://ror.org/055eqsb67', 'en', 1, 'https://ror.org/055eqsb67 National University of Mar del Plata Universidad Nacional de Mar del Plata'),
(104366, 'https://ror.org/055fene14', 'en', 1, 'https://ror.org/055fene14 Shanghai Dianji University äøŠęµ·ē”µęœŗå­¦é™¢'),
(104367, 'https://ror.org/055hnk386', 'en', 1, 'https://ror.org/055hnk386 Wuhu Institute of Technology čŠœę¹–å·„å­¦é™¢'),
(104368, 'https://ror.org/055hnsm41', 'en', 1, 'https://ror.org/055hnsm41 Vemu Institute of Technology'),
(104369, 'https://ror.org/055hq4920', 'en', 1, 'https://ror.org/055hq4920 German University of Technology تسعى الجامعة Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(104370, 'https://ror.org/055khxa55', 'en', 1, 'https://ror.org/055khxa55 Darlington College'),
(104371, 'https://ror.org/055mz3852', 'en', 1, 'https://ror.org/055mz3852 Jan Albrecht Music and Art Academy'),
(104372, 'https://ror.org/055nbmz93', 'fr', 1, 'https://ror.org/055nbmz93 Micro et NanomƩdecines translationnelles'),
(104373, 'https://ror.org/055pd2p26', 'fr', 1, 'https://ror.org/055pd2p26 Institut FranƧais d''ArchĆ©ologie Orientale, Institut franƧais d''archĆ©ologie orientale المعهد Ų§Ł„ŁŲ±Ł†Ų³ŁŠ للآثار Ų§Ł„Ų“Ų±Ł‚ŁŠŲ©'),
(104374, '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'),
(104375, 'https://ror.org/055r0dt08', 'pt', 1, 'https://ror.org/055r0dt08 Faculdade do Futuro'),
(104376, 'https://ror.org/055rbnx68', 'en', 1, 'https://ror.org/055rbnx68 Vulcan Materials, Vulcan Materials (United States)'),
(104377, 'https://ror.org/055rn2a38', 'no_lang_code', 1, 'https://ror.org/055rn2a38 Mercedes-Benz (Germany)'),
(104378, 'https://ror.org/055rzsa90', 'en', 1, 'https://ror.org/055rzsa90 Nelson College London'),
(104379, 'https://ror.org/055s8hs34', 'fr', 0, 'https://ror.org/055s8hs34 Genetic Stability and Oncogenesis Stabilité génétique et oncogenèse'),
(104380, 'https://ror.org/055ss7a31', 'fr', 1, 'https://ror.org/055ss7a31 Physics of Cells and Cancer Physique des Cellules et Cancers'),
(104381, 'https://ror.org/055t1w920', 'en', 1, 'https://ror.org/055t1w920 State Education Development Agency Valsts izglītības attīstības aģentūra'),
(104382, 'https://ror.org/055vj5234', 'en', 1, 'https://ror.org/055vj5234 Zhejiang University of Finance and Economics ęµ™ę±Ÿč“¢ē»å¤§å­¦'),
(104383, 'https://ror.org/055vkyj43', 'fr', 1, 'https://ror.org/055vkyj43 Bureau international des poids et mesures International Bureau of Weights and Measures'),
(104384, 'https://ror.org/055yf1005', 'en', 1, 'https://ror.org/055yf1005 Nagoya Institute of Technology åå¤å±‹å·„ę„­å¤§å­¦'),
(104385, 'https://ror.org/0561z3j45', 'fr', 1, 'https://ror.org/0561z3j45 Collège Boréal'),
(104386, 'https://ror.org/0563pg902', 'en', 1, 'https://ror.org/0563pg902 Lingnan University'),
(104387, 'https://ror.org/0569mkk41', 'en', 1, 'https://ror.org/0569mkk41 Zhejiang Gongshang University ęµ™ę±Ÿå·„å•†å¤§å­¦'),
(104388, 'https://ror.org/056am2717', 'en', 1, 'https://ror.org/056am2717 Brock University'),
(104389, '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'),
(104390, 'https://ror.org/056d3xj17', 'fr', 1, 'https://ror.org/056d3xj17 Sport et sciences sociales'),
(104391, 'https://ror.org/056d84691', 'sv', 1, 'https://ror.org/056d84691 Karoliininen instituutti Karolinska Institutet'),
(104392, 'https://ror.org/056ddyv20', 'en', 1, 'https://ror.org/056ddyv20 Panteion University UniversitĆ© panteion Πάντειο Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(104393, 'https://ror.org/056g0b798', 'pt', 1, 'https://ror.org/056g0b798 Fundação Minerva - Cultura - Ensino e Investigação Científica'),
(104394, 'https://ror.org/056hav897', 'fr', 1, 'https://ror.org/056hav897 Plateformes Lilloises en Biologie et SantƩ'),
(104395, 'https://ror.org/056k6mn31', 'es', 1, 'https://ror.org/056k6mn31 Instituto MadrileƱo de Antropologƭa'),
(104396, 'https://ror.org/056k6yz11', 'nl', 1, 'https://ror.org/056k6yz11 Hogeschool de Kempel'),
(104397, 'https://ror.org/056m91h77', 'en', 1, 'https://ror.org/056m91h77 Shaanxi University of Technology 陕脿理巄大学'),
(104398, 'https://ror.org/056mb6a70', 'id', 1, 'https://ror.org/056mb6a70 Institut Agama Islam Negeri Parepare'),
(104399, 'https://ror.org/056mt4481', 'no_lang_code', 1, 'https://ror.org/056mt4481 Framatome (France)'),
(104400, 'https://ror.org/056n05x05', 'fr', 1, 'https://ror.org/056n05x05 Laboratoire de Chimie des PolymĆØres Organiques'),
(104401, 'https://ror.org/056nsnt54', 'no_lang_code', 1, 'https://ror.org/056nsnt54 MeteoIA, MeteoIA (Brazil)'),
(104402, 'https://ror.org/056qzgq67', 'en', 1, 'https://ror.org/056qzgq67 Georgia Humanities Council'),
(104403, 'https://ror.org/056rync30', 'en', 1, 'https://ror.org/056rync30 Utah Humanities Council'),
(104404, 'https://ror.org/056tn4839', 'en', 1, 'https://ror.org/056tn4839 Sogang University ģ„œź°•ėŒ€ķ•™źµ'),
(104405, 'https://ror.org/056vt4a53', 'en', 1, 'https://ror.org/056vt4a53 Kogi State Polytechnic'),
(104406, 'https://ror.org/056wdpc91', 'en', 1, 'https://ror.org/056wdpc91 Cognitive Neuroimaging Lab'),
(104407, 'https://ror.org/056wqre19', 'en', 1, 'https://ror.org/056wqre19 Ƈankaya University Ƈankaya Ɯniversitesi'),
(104408, 'https://ror.org/056xse072', 'en', 1, 'https://ror.org/056xse072 Politechnika Rzeszowska im. Ignacego Łukasiewicza Rzeszów University of Technology'),
(104409, 'https://ror.org/056y3dw16', 'en', 1, 'https://ror.org/056y3dw16 Hubei Normal University ę¹–åŒ—åøˆčŒƒå­¦é™¢'),
(104410, 'https://ror.org/056zprp28', 'en', 1, 'https://ror.org/056zprp28 Microsoft Research New York City, Microsoft Research New York City (United States)'),
(104411, 'https://ror.org/05709zb94', 'en', 1, 'https://ror.org/05709zb94 Hamilton College'),
(104412, 'https://ror.org/0573j3j10', 'en', 1, 'https://ror.org/0573j3j10 Taylor Geospatial Institute'),
(104413, 'https://ror.org/0573vrp16', 'de', 1, 'https://ror.org/0573vrp16 Abgeordnetenhaus Berlin'),
(104414, 'https://ror.org/05751b994', 'en', 1, 'https://ror.org/05751b994 Mahindra University'),
(104415, 'https://ror.org/0575yy874', 'en', 1, 'https://ror.org/0575yy874 Universitair Medisch Centrum Utrecht University Medical Center Utrecht'),
(104416, 'https://ror.org/05769ap73', 'en', 1, 'https://ror.org/05769ap73 TOO Solid Research Group, TOO Solid Research Group (Kazakhstan)'),
(104417, 'https://ror.org/0576gt767', 'en', 1, 'https://ror.org/0576gt767 Hangzhou Dianzi University ę­å·žē”µå­ē§‘ęŠ€å¤§å­¦'),
(104418, 'https://ror.org/0576q1t15', 'es', 1, 'https://ror.org/0576q1t15 Universidad Autónoma de Nayarit'),
(104419, 'https://ror.org/0577njw16', 'id', 1, 'https://ror.org/0577njw16 Universitas Nahdlatul Ulama Purwokerto'),
(104420, 'https://ror.org/05783n648', 'en', 1, 'https://ror.org/05783n648 Discover Financial Services, Discover Financial Services (United States)'),
(104421, 'https://ror.org/0579c5n38', 'en', 1, 'https://ror.org/0579c5n38 Institute for Diagnostic Imaging Research'),
(104422, 'https://ror.org/057a3cc32', 'fr', 1, 'https://ror.org/057a3cc32 Association de lutte contre le sida (ALCS)'),
(104423, 'https://ror.org/057a6gk14', 'en', 1, 'https://ror.org/057a6gk14 University of Gibraltar'),
(104424, 'https://ror.org/057cydn08', 'en', 1, 'https://ror.org/057cydn08 Hunan University of Technology and Business ę¹–å—å·„å•†å¤§å­¦'),
(104425, 'https://ror.org/057er4c39', 'fr', 1, 'https://ror.org/057er4c39 Laboratoire Traitement et Communication de l’Information'),
(104426, 'https://ror.org/057ewhh68', 'en', 1, 'https://ror.org/057ewhh68 Augsburg University'),
(104427, 'https://ror.org/057fagq12', 'en', 1, 'https://ror.org/057fagq12 Bridging Access to Care'),
(104428, 'https://ror.org/057ff4y42', 'en', 1, 'https://ror.org/057ff4y42 BOKU University'),
(104429, 'https://ror.org/057jm7w82', 'en', 1, 'https://ror.org/057jm7w82 Tokyo University of Pharmacy and Life Sciences ę±äŗ¬č–¬ē§‘å¤§å­¦'),
(104430, 'https://ror.org/057jrqr44', 'en', 1, 'https://ror.org/057jrqr44 Prifysgol Dwyrain Llundain University of East London'),
(104431, 'https://ror.org/057mq8856', 'en', 1, 'https://ror.org/057mq8856 National School of Nanoscience and Nanotechnology'),
(104432, 'https://ror.org/057nsa394', 'fr', 1, 'https://ror.org/057nsa394 Institut d''Histoire du Droit Institute of the History of Law'),
(104433, 'https://ror.org/057pxfr24', 'en', 1, 'https://ror.org/057pxfr24 Veterinary Standards and Drug Regulatory Laboratory'),
(104434, 'https://ror.org/057qfs197', 'en', 1, 'https://ror.org/057qfs197 Harran University Harran Üniversitesi'),
(104435, 'https://ror.org/057qyqy03', 'en', 1, 'https://ror.org/057qyqy03 Anna University Regional Campus, Coimbatore'),
(104436, 'https://ror.org/057sc3e48', 'en', 1, 'https://ror.org/057sc3e48 Youxi County General Hospital'),
(104437, 'https://ror.org/057skhv53', 'no_lang_code', 1, 'https://ror.org/057skhv53 Northumbrian Water Group (United Kingdom)'),
(104438, 'https://ror.org/057trrr89', 'en', 1, 'https://ror.org/057trrr89 Purchase College UniversitĆ© d''Ɖtat de new york Ć  purchase'),
(104439, 'https://ror.org/057w15z03', 'en', 1, 'https://ror.org/057w15z03 Erasmus Universiteit Rotterdam Erasmus University Rotterdam'),
(104440, 'https://ror.org/057zme681', 'fr', 1, 'https://ror.org/057zme681 Laboratoire de Chimie BactƩrienne'),
(104441, 'https://ror.org/057zvny46', 'en', 1, 'https://ror.org/057zvny46 Genocide and Resistance Research Centre of Lithuania Lietuvos gyventojų genocido ir rezistencijos tyrimo centras'),
(104442, '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'),
(104443, '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"'),
(104444, 'https://ror.org/0583nw070', 'en', 1, 'https://ror.org/0583nw070 Cure Parkinson''s Trust'),
(104445, 'https://ror.org/0589k3111', 'fr', 1, 'https://ror.org/0589k3111 DƩlƩgation Paris 11'),
(104446, 'https://ror.org/058aeep47', 'en', 1, 'https://ror.org/058aeep47 Mendel University in Brno Mendelova univerzita v Brně'),
(104447, 'https://ror.org/058cb6311', 'en', 1, 'https://ror.org/058cb6311 The Charitable Foundation "BELA. Butterfly Children" Š‘Š»Š°Š³Š¾Ń‚Š²Š¾Ń€ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ фонГ «БЭЛА. Дети-бабочки»'),
(104448, 'https://ror.org/058e0mz85', 'en', 1, 'https://ror.org/058e0mz85 Habiganj Agricultural University ą¦¹ą¦¬ą¦æą¦—ą¦žą§ą¦œ ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(104449, 'https://ror.org/058hz8544', 'fr', 1, 'https://ror.org/058hz8544 Institut des Sciences Cognitives Institute for Cognitive Science'),
(104450, 'https://ror.org/058j80c12', 'de', 1, 'https://ror.org/058j80c12 Deutsche Gesellschaft für Limnologie'),
(104451, 'https://ror.org/058nh3n50', 'en', 1, 'https://ror.org/058nh3n50 International University of AndalucĆ­a Universidad Internacional de AndalucĆ­a Universitat Internacional d''Andalusia'),
(104452, 'https://ror.org/058qdtv35', 'fr', 1, 'https://ror.org/058qdtv35 Centre de recherches en histoire internationale et atlantique'),
(104453, 'https://ror.org/058svmp18', 'es', 1, 'https://ror.org/058svmp18 AlcaldĆ­a de Barranquilla'),
(104454, 'https://ror.org/058t6p923', 'fr', 1, 'https://ror.org/058t6p923 Laboratoire Leprince-Ringuet Leprince-Ringuet Laboratory'),
(104455, 'https://ror.org/058v0cd57', 'no_lang_code', 1, 'https://ror.org/058v0cd57 Genus (United Kingdom)'),
(104456, 'https://ror.org/058y2sm81', 'no_lang_code', 1, 'https://ror.org/058y2sm81 Ceridian (United States), Dayforce'),
(104457, 'https://ror.org/05932h694', 'en', 1, 'https://ror.org/05932h694 Idiap Research Institute'),
(104458, 'https://ror.org/059424541', 'fr', 1, 'https://ror.org/059424541 Bassins - RƩservoirs - Ressources'),
(104459, 'https://ror.org/05957a955', 'en', 1, 'https://ror.org/05957a955 KS Rangasamy College of Arts and Science கே ą®Žą®øąÆ ą®°ą®™ąÆą®•ą®šą®¾ą®®ą®æ ą®•ą®²ąÆˆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(104460, 'https://ror.org/0595x5h51', 'fr', 1, 'https://ror.org/0595x5h51'),
(104461, 'https://ror.org/059636586', 'en', 1, 'https://ror.org/059636586 Istanbul Technical University İstanbul Teknik Üniversitesi İstanbul Texniki Universiteti'),
(104462, 'https://ror.org/0596m7f19', 'en', 1, 'https://ror.org/0596m7f19 West Pomeranian University of Technology Zachodniopomorski Uniwersytet Technologiczny w Szczecinie'),
(104463, 'https://ror.org/0597jba28', 'pt', 1, 'https://ror.org/0597jba28 Instituto Superior de Contabilidade e Administração de Coimbra'),
(104464, 'https://ror.org/0599z7n30', 'pt', 1, 'https://ror.org/0599z7n30 Instituto de Biologia Experimental e Tecnológica'),
(104465, 'https://ror.org/059b5pb30', 'en', 1, 'https://ror.org/059b5pb30 Konan University ē”²å—å¤§å­¦'),
(104466, 'https://ror.org/059be4e97', 'no_lang_code', 1, 'https://ror.org/059be4e97 NXP (Netherlands)'),
(104467, 'https://ror.org/059bp8k51', 'en', 1, 'https://ror.org/059bp8k51 Javna agencija za znanstvenoraziskovalno in inovacijsko dejavnost The Slovenian Research and Innovation Agency'),
(104468, 'https://ror.org/059ckk077', 'en', 1, 'https://ror.org/059ckk077 Panthera Biopartners (United Kingdom)'),
(104469, 'https://ror.org/059djzq42', 'en', 1, 'https://ror.org/059djzq42 Wuyi University 武夷学院'),
(104470, 'https://ror.org/059eam965', 'fr', 1, 'https://ror.org/059eam965 Laboratoire des applications ThƩrapeutiques des Ultrasons'),
(104471, 'https://ror.org/059esff37', 'pt', 1, 'https://ror.org/059esff37 Instituto para a Sustentabilidade e Inovação em Estruturas de Engenharia'),
(104472, 'https://ror.org/059et2b68', 'fr', 1, 'https://ror.org/059et2b68 UniversitĆ© Oran 1 Ahmed Ben Bella Ų¬Ų§Ł…Ų¹Ų© ŁˆŁ‡Ų±Ų§Ł†1 Ų£Ų­Ł…ŲÆ بن بلة'),
(104473, 'https://ror.org/059fn5f50', 'fr', 1, 'https://ror.org/059fn5f50 Fédération de Recherche PhotoVoltaïque'),
(104474, 'https://ror.org/059gcgy73', 'en', 1, 'https://ror.org/059gcgy73 Nanjing Medical University å—äŗ¬åŒ»ē§‘å¤§å­¦'),
(104475, 'https://ror.org/059gw8r13', 'en', 1, 'https://ror.org/059gw8r13 Xinjiang University 新疆大学'),
(104476, 'https://ror.org/059h57z85', 'en', 1, 'https://ror.org/059h57z85 Guangzhou City Polytechnic å¹æå·žåŸŽåø‚čŒäøšå­¦é™¢'),
(104477, 'https://ror.org/059h64789', 'fr', 1, 'https://ror.org/059h64789 Biologie EpidƩmiologie et Analyse de Risque en santƩ animale'),
(104478, 'https://ror.org/059h7s745', 'fr', 1, 'https://ror.org/059h7s745 UnitƩ de Recherche Clinique CƓte d''Azur'),
(104479, 'https://ror.org/059p3ae54', 'pt', 1, 'https://ror.org/059p3ae54 Estado-Maior da ForƧa AƩrea'),
(104480, 'https://ror.org/059qxqp56', 'en', 1, 'https://ror.org/059qxqp56 Rhythmic Music Conservatory Rytmisk Musikkonservatorium'),
(104481, 'https://ror.org/059rnte75', 'en', 1, 'https://ror.org/059rnte75 Westminster University'),
(104482, 'https://ror.org/059xs3104', 'fr', 1, 'https://ror.org/059xs3104 ArchƩorient'),
(104483, 'https://ror.org/059yhyy33', 'en', 1, 'https://ror.org/059yhyy33 Japan Aerospace Exploration Agency å®‡å®™čˆŖē©ŗē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(104484, 'https://ror.org/059z5w858', 'en', 1, 'https://ror.org/059z5w858 Pacific University Universidad del PacĆ­fico'),
(104485, 'https://ror.org/05a0xpx35', 'en', 1, 'https://ror.org/05a0xpx35 Maine College of Health Professions'),
(104486, 'https://ror.org/05a353079', 'en', 1, 'https://ror.org/05a353079 Centre Hospitalier Universitaire Vaudois University Hospital of Lausanne'),
(104487, 'https://ror.org/05a49e175', 'en', 1, 'https://ror.org/05a49e175 Stranmillis University College'),
(104488, 'https://ror.org/05a4kwh70', 'id', 1, 'https://ror.org/05a4kwh70 Universitas Islam Negeri Syekh Ali Hasan Ahmad Addary Padangsidimpuan'),
(104489, 'https://ror.org/05a5cgn70', 'en', 1, 'https://ror.org/05a5cgn70 Guangzhou Xiaopeng Motors Technology Co Ltd, Xiaopeng Motors, Xiaopeng Motors (China) å¹æå·žå°é¹ę±½č½¦ē§‘ęŠ€ęœ‰é™å…¬åø'),
(104490, 'https://ror.org/05a7av867', 'en', 1, 'https://ror.org/05a7av867 Hebrew Union College - Jewish Institute of Religion'),
(104491, 'https://ror.org/05abbep66', 'en', 1, 'https://ror.org/05abbep66 Brandeis University'),
(104492, 'https://ror.org/05abgg682', 'fr', 1, 'https://ror.org/05abgg682 Institut de minƩralogie, de physique des matƩriaux et de cosmochimie'),
(104493, 'https://ror.org/05afmzm11', 'fr', 1, 'https://ror.org/05afmzm11 Verimag'),
(104494, 'https://ror.org/05ahyhp31', 'en', 1, 'https://ror.org/05ahyhp31 Holland Particle Therapy Center'),
(104495, 'https://ror.org/05ajmm513', 'en', 1, 'https://ror.org/05ajmm513 Humanities Washington'),
(104496, 'https://ror.org/05akjb009', 'fr', 1, 'https://ror.org/05akjb009 Biologie des interactions hƓte-parasite Biology of Host-parasite Interactions'),
(104497, 'https://ror.org/05angxc35', 'no_lang_code', 0, 'https://ror.org/05angxc35 Daimler (United States)'),
(104498, 'https://ror.org/05anqtc62', 'en', 1, 'https://ror.org/05anqtc62 Konstuniversitetet Taideyliopisto University of the Arts Helsinki'),
(104499, 'https://ror.org/05ans4e98', 'es', 1, 'https://ror.org/05ans4e98 ESS Bilbao'),
(104500, 'https://ror.org/05apxxy63', 'en', 1, 'https://ror.org/05apxxy63 Korea Advanced Institute of Science and Technology ķ•œźµ­ź³¼ķ•™źø°ģˆ ģ›'),
(104501, 'https://ror.org/05avbyr67', 'pt', 1, 'https://ror.org/05avbyr67 CoLAB +ATLANTIC'),
(104502, 'https://ror.org/05ax2x637', 'fr', 1, 'https://ror.org/05ax2x637 Center for Research on Palaeontology - Paris Centre de recherche en palƩontologie - Paris'),
(104503, 'https://ror.org/05ayzqh10', 'en', 1, 'https://ror.org/05ayzqh10 Holy Family Red Crescent Medical College'),
(104504, 'https://ror.org/05az7b208', 'pt', 1, 'https://ror.org/05az7b208 Laboratório da Paisagem'),
(104505, 'https://ror.org/05azzk208', 'en', 1, 'https://ror.org/05azzk208 Zhengzhou Business University 郑州商学院'),
(104506, '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'),
(104507, 'https://ror.org/05b3p7p58', 'fr', 1, 'https://ror.org/05b3p7p58 Laboratoire Mouvement Sport SantƩ Movement, Sport and health Sciences Laboratory'),
(104508, 'https://ror.org/05b69xa56', 'en', 1, 'https://ror.org/05b69xa56 MIT Art, Design and Technology University'),
(104509, 'https://ror.org/05b955872', 'en', 1, 'https://ror.org/05b955872 Nwafor Orizu College of Education'),
(104510, 'https://ror.org/05ba43f71', 'en', 1, 'https://ror.org/05ba43f71 NOAA National Centers for Coastal Ocean Science'),
(104511, 'https://ror.org/05ba8sq03', 'en', 1, 'https://ror.org/05ba8sq03 Kwalejin Ilimi ta St. Joseph St. Joseph''s College of Education'),
(104512, 'https://ror.org/05bab7f08', 'en', 1, 'https://ror.org/05bab7f08 Humanities Tennessee'),
(104513, 'https://ror.org/05baznr53', 'en', 1, 'https://ror.org/05baznr53 St. Thomas University UniversitƩ Saint-Thomas'),
(104514, 'https://ror.org/05bbqza97', 'en', 1, 'https://ror.org/05bbqza97 Kingston University'),
(104515, 'https://ror.org/05be9p317', 'fr', 1, 'https://ror.org/05be9p317 Micropesanteur Fondamentale et AppliquƩe'),
(104516, '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'),
(104517, 'https://ror.org/05bhbn736', 'hu', 1, 'https://ror.org/05bhbn736 Szent PƔl AkadƩmia'),
(104518, 'https://ror.org/05bhp3g52', 'en', 1, 'https://ror.org/05bhp3g52 Centennial College'),
(104519, 'https://ror.org/05bhtvt77', 'fr', 1, 'https://ror.org/05bhtvt77 Ɖcole Nationale d''IngĆ©nieurs de Metz'),
(104520, 'https://ror.org/05bmezg83', 'de', 1, 'https://ror.org/05bmezg83 Die Autobahn GmbH des Bundes, Die Autobahn GmbH des Bundes (Germany)'),
(104521, 'https://ror.org/05bp8tz46', 'no_lang_code', 1, 'https://ror.org/05bp8tz46 AlphaSense (United States)'),
(104522, 'https://ror.org/05bqcch62', 'en', 1, 'https://ror.org/05bqcch62 Ohio Library and Information Network'),
(104523, 'https://ror.org/05brss208', 'fr', 1, 'https://ror.org/05brss208 Laboratoire de physique de la matière condensée'),
(104524, 'https://ror.org/05bsra506', 'en', 1, 'https://ror.org/05bsra506 Glasgow Childrens Hospital Charity'),
(104525, 'https://ror.org/05bt7sv47', 'es', 1, 'https://ror.org/05bt7sv47 Instituto de Radioastronomƭa MilimƩtrica'),
(104526, 'https://ror.org/05bw7ad85', 'fr', 1, 'https://ror.org/05bw7ad85 Centre de recherche en Ʃconomie de Grenoble'),
(104527, 'https://ror.org/05bz47575', 'fr', 1, 'https://ror.org/05bz47575 Lille Ɖconomie Management'),
(104528, 'https://ror.org/05c08zp36', 'en', 1, 'https://ror.org/05c08zp36 Khyber Girls Medical College خیبر Ų®ŁˆŲ§ŲŖŪŒŁ† طبی کالج ŲÆ خیبر ښځو Ų·ŲØ Ł¾ŁˆŁ‡Ł†ŚŪŒ'),
(104529, 'https://ror.org/05c1qsg97', 'fr', 1, 'https://ror.org/05c1qsg97 Centre Hospitalier Universitaire de Nantes'),
(104530, 'https://ror.org/05c24ew78', 'en', 1, 'https://ror.org/05c24ew78 Walsall College'),
(104531, 'https://ror.org/05c2kyj22', 'fr', 1, 'https://ror.org/05c2kyj22 SantƩ, vulnƩrabilitƩs et relations de genre au Sud'),
(104532, 'https://ror.org/05c43y157', 'fr', 1, 'https://ror.org/05c43y157 Laboratoire de Neurobiologie Orofaciale'),
(104533, 'https://ror.org/05c4w7j07', 'en', 1, 'https://ror.org/05c4w7j07 College of Polytechnics Jihlava VysokÔ Ŕkola polytechnickÔ Jihlava'),
(104534, 'https://ror.org/05c602238', 'en', 1, 'https://ror.org/05c602238 Vermont Humanities'),
(104535, 'https://ror.org/05c95bg36', 'fr', 1, 'https://ror.org/05c95bg36 Laboratoire de Physique des Plasmas'),
(104536, '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'),
(104537, 'https://ror.org/05cbrk226', 'fr', 1, 'https://ror.org/05cbrk226 Cibles ThƩrapeutiques et conception de mƩdicaments'),
(104538, 'https://ror.org/05cdayb58', 'en', 1, 'https://ror.org/05cdayb58 Community College of Baltimore County'),
(104539, 'https://ror.org/05cf8a891', 'en', 1, 'https://ror.org/05cf8a891 Albert Einstein College of Medicine'),
(104540, 'https://ror.org/05cg4bn76', 'en', 1, 'https://ror.org/05cg4bn76 City College of Calamba Dalubhasaan ng Calamba'),
(104541, 'https://ror.org/05cjf4t29', 'es', 1, 'https://ror.org/05cjf4t29 Universidad PolitƩcnica de Francisco I. Madero'),
(104542, 'https://ror.org/05cm0es58', 'no_lang_code', 1, 'https://ror.org/05cm0es58 Bayer (France)'),
(104543, 'https://ror.org/05cmv6g68', 'en', 1, 'https://ror.org/05cmv6g68 Horizon Robotics, Horizon Robotics (China) åŒ—äŗ¬åœ°å¹³ēŗæäæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(104544, 'https://ror.org/05crjpb27', 'en', 1, 'https://ror.org/05crjpb27 Bocconi University UniversitƠ Commerciale Luigi Bocconi WirtschaftsuniversitƤt Luigi Bocconi'),
(104545, 'https://ror.org/05cs9th70', 'it', 1, 'https://ror.org/05cs9th70 Conservatorio di musica "Vecchi Tonelli"'),
(104546, 'https://ror.org/05cshtm26', 'en', 1, 'https://ror.org/05cshtm26 Great Lakes Research Consortium'),
(104547, 'https://ror.org/05ctdxz19', 'en', 1, 'https://ror.org/05ctdxz19 University of Messina UniversitƠ degli Studi di Messina UniversitƤt Messina UniversitƩ de messine'),
(104548, 'https://ror.org/05ctx1h60', 'en', 1, 'https://ror.org/05ctx1h60 Franklin Templeton, Franklin Templeton (United States)'),
(104549, 'https://ror.org/05cwhxn91', 'en', 1, 'https://ror.org/05cwhxn91 Williton Community Hospital'),
(104550, 'https://ror.org/05cx7ek10', 'fr', 1, 'https://ror.org/05cx7ek10 Structure FƩdƩrative de Recherche en Biologie et SantƩ de Rennes'),
(104551, 'https://ror.org/05cy4wa09', 'en', 1, 'https://ror.org/05cy4wa09 Wellcome Sanger Institute'),
(104552, 'https://ror.org/05cz9j146', 'en', 1, 'https://ror.org/05cz9j146 Lusail University Ų¬ŁŽŲ§Ł…ŁŲ¹ŁŽŲ© Ł„ŁŁˆŲ³ŁŽŁŠŁ’Ł„'),
(104553, 'https://ror.org/05d23ve83', 'en', 1, 'https://ror.org/05d23ve83 Colgate University Universidad Colgate UniversitƩ de colgate'),
(104554, 'https://ror.org/05d362832', 'fr', 1, 'https://ror.org/05d362832 Laboratoire de Chimie Bio-inspirĆ©e et d’Innovations Ecologiques'),
(104555, 'https://ror.org/05d37ka75', 'de', 1, 'https://ror.org/05d37ka75 Freies Institut für Bauforschung und Dokumentation e.V.'),
(104556, 'https://ror.org/05d5f5m07', 'en', 1, 'https://ror.org/05d5f5m07 Dhofar University Ų¬Ų§Ł…Ų¹Ų© ظفار'),
(104557, 'https://ror.org/05d6q6m27', 'en', 1, 'https://ror.org/05d6q6m27 Beijing Intelligent Entropy Science & Technology Co. Ltd.'),
(104558, 'https://ror.org/05d80kz58', 'en', 1, 'https://ror.org/05d80kz58 Henan University of Science and Technology ę²³å—ē§‘ęŠ€å¤§å­¦'),
(104559, 'https://ror.org/05d8tf882', 'en', 1, 'https://ror.org/05d8tf882 Frederick University'),
(104560, 'https://ror.org/05d917r56', 'en', 1, 'https://ror.org/05d917r56 Institute for Cultural Research of the National Academy of Arts of Ukraine'),
(104561, 'https://ror.org/05damtm70', 'en', 1, 'https://ror.org/05damtm70 Beijing University of Chinese Medicine åŒ—äŗ¬äø­åŒ»čÆå¤§å­¦'),
(104562, 'https://ror.org/05dd6kb95', 'fr', 1, 'https://ror.org/05dd6kb95 Neuroscience et Psychiatrie Translationnelle de Strasbourg Strasbourg Translational Neuroscience and Psychiatry'),
(104563, 'https://ror.org/05ddxrm33', 'fr', 1, 'https://ror.org/05ddxrm33 FƩdƩration de Chimie de l''UniversitƩ Paris'),
(104564, 'https://ror.org/05dfgh554', 'en', 1, 'https://ror.org/05dfgh554 Koninklijk Nederlands Meteorologisch Instituut Royal Netherlands Meteorological Institute'),
(104565, 'https://ror.org/05dfqh778', 'en', 1, 'https://ror.org/05dfqh778 Research Institute for Sustainable Humanosphere äŗ¬éƒ½å¤§å­¦ē”Ÿå­˜åœē ”ē©¶ę‰€'),
(104566, 'https://ror.org/05dgrnf47', 'no_lang_code', 1, 'https://ror.org/05dgrnf47 Verizon Media, Verizon Media (United States)'),
(104567, 'https://ror.org/05dh21g53', 'fr', 1, 'https://ror.org/05dh21g53 Structure FƩdƩrative de Recherche SantƩ Lyon Est'),
(104568, 'https://ror.org/05djhd259', 'fr', 1, 'https://ror.org/05djhd259 Institut Denis Poisson'),
(104569, 'https://ror.org/05dk2r620', 'en', 1, 'https://ror.org/05dk2r620 Centre de recherche Douglas, HƓpital Douglas, Institut universitaire en santƩ mentale douglas Douglas Mental Health University Institute'),
(104570, 'https://ror.org/05dm3m993', 'fr', 1, 'https://ror.org/05dm3m993 ProtƩomique, RƩponse Inflammatoire et SpectromƩtrie de Masse'),
(104571, 'https://ror.org/05dmpdy49', 'en', 1, 'https://ror.org/05dmpdy49 NSW Department of Communities and Justice'),
(104572, 'https://ror.org/05dmq6f22', 'no_lang_code', 1, 'https://ror.org/05dmq6f22 Hanwha Solutions (South Korea) ķ•œķ™”ģ†”ė£Øģ…˜'),
(104573, 'https://ror.org/05dpfhh73', 'fr', 1, 'https://ror.org/05dpfhh73 Interactions Cellulaires et Physiopathologie HƩpathique'),
(104574, 'https://ror.org/05dqf9946', 'en', 1, 'https://ror.org/05dqf9946 Institute of Science Tokyo ę±äŗ¬ē§‘å­¦å¤§å­¦'),
(104575, '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)'),
(104576, 'https://ror.org/05dvbq272', 'en', 1, 'https://ror.org/05dvbq272 Yeovil District Hospital'),
(104577, 'https://ror.org/05dvptm82', 'en', 1, 'https://ror.org/05dvptm82 Kumaraguru College of Technology'),
(104578, 'https://ror.org/05dwk8b49', 'fr', 1, 'https://ror.org/05dwk8b49 Chambre de Commerce et d''industrie de Paris Paris Chamber of Commerce'),
(104579, 'https://ror.org/05dy6wv04', 'en', 1, 'https://ror.org/05dy6wv04 Inflammation, Microbiome and Immunosurveillance'),
(104580, 'https://ror.org/05e08rb26', 'en', 1, 'https://ror.org/05e08rb26 Novia University of Applied Sciences Yrkeshƶgskolan Novia'),
(104581, 'https://ror.org/05e0ydk16', 'en', 1, 'https://ror.org/05e0ydk16 Institute for Computing in Research'),
(104582, 'https://ror.org/05e2f3x89', 'en', 1, 'https://ror.org/05e2f3x89 Universal Health Services, Universal Health Services (United States)'),
(104583, 'https://ror.org/05e3kjq13', 'en', 1, 'https://ror.org/05e3kjq13 Rajshahi Medical University ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ মেঔিকেল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(104584, 'https://ror.org/05e5kd476', 'de', 1, 'https://ror.org/05e5kd476 Technische Hochschule Ulm'),
(104585, 'https://ror.org/05e6g0130', 'en', 1, 'https://ror.org/05e6g0130 Yeungnam University College'),
(104586, 'https://ror.org/05e7p5n27', 'fr', 1, 'https://ror.org/05e7p5n27 Institut thƩmatique Neurosciences, sciences cognitives, neurologie, psychiatrie'),
(104587, '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'),
(104588, 'https://ror.org/05eb0k586', 'fr', 1, 'https://ror.org/05eb0k586 HABITER AmƩnagement et gƩographie politique'),
(104589, 'https://ror.org/05ebnp485', 'fr', 1, 'https://ror.org/05ebnp485 Fondation Fyssen Fyssen Foundation'),
(104590, 'https://ror.org/05ed0n793', 'en', 1, 'https://ror.org/05ed0n793 Foundation for Physical Medicine and Rehabilitation'),
(104591, 'https://ror.org/05ee10k25', 'fr', 1, 'https://ror.org/05ee10k25 Institut de GƩnƩtique Humaine Institute of Human Genetics'),
(104592, 'https://ror.org/05ef4v550', 'fr', 1, 'https://ror.org/05ef4v550 Unit in Biological Sciences and Biotechnologies UnitƩ en Sciences Biologiques et Biotechnologies de Nantes'),
(104593, 'https://ror.org/05ek91318', 'no_lang_code', 1, 'https://ror.org/05ek91318 Orano (France)'),
(104594, 'https://ror.org/05ekbxr47', 'pt', 1, 'https://ror.org/05ekbxr47 Instituto Politécnico de Saúde do Norte - CESPU'),
(104595, 'https://ror.org/05em1gq62', 'en', 1, 'https://ror.org/05em1gq62 Jinling Institute of Technology é‡‘é™µē§‘ęŠ€å­¦é™¢'),
(104596, 'https://ror.org/05es91y67', 'en', 1, 'https://ror.org/05es91y67 Usak University Uşak Üniversitesi'),
(104597, 'https://ror.org/05et7jg19', 'en', 1, 'https://ror.org/05et7jg19 Shahid Matangini Hazra Government College for Women'),
(104598, 'https://ror.org/05ev54a13', 'fr', 1, 'https://ror.org/05ev54a13 Laboratoire d''Ɖconomie des Ressources Naturelles'),
(104599, 'https://ror.org/05ex5vz81', 'en', 1, 'https://ror.org/05ex5vz81 Bundesinstitut für Arzneimittel und Medizinprodukte Federal Institute for Drugs and Medical Devices'),
(104600, 'https://ror.org/05exke706', 'fr', 0, 'https://ror.org/05exke706 Laboratoire Biologie Ơ Grande Ɖchelle Large Scale Biology Laboratory'),
(104601, 'https://ror.org/05ey0h058', 'en', 1, 'https://ror.org/05ey0h058 Nansen Environmental and Remote Sensing Center Stiftelsen Nansen Senter For Miljƶ OG FjernmƄling'),
(104602, 'https://ror.org/05eytha84', 'en', 1, 'https://ror.org/05eytha84 South East Coast Ambulance Service NHS Foundation Trust'),
(104603, 'https://ror.org/05f0vmf18', 'no_lang_code', 1, 'https://ror.org/05f0vmf18 Hanwha Techwin (South Korea) ķ•œķ™”ķ…Œķ¬ģœˆ'),
(104604, 'https://ror.org/05f0yaq80', 'en', 1, 'https://ror.org/05f0yaq80 Stockholm University Stockholms universitet Tukholman yliopisto'),
(104605, 'https://ror.org/05f1eky95', 'en', 0, 'https://ror.org/05f1eky95 University of Saint Katherine'),
(104606, 'https://ror.org/05f8d4e86', 'fr', 1, 'https://ror.org/05f8d4e86 Polytechnique MontrƩal'),
(104607, 'https://ror.org/05fa5kd53', 'fr', 1, 'https://ror.org/05fa5kd53 HƩritage et CrƩation dans le Texte et l''Image'),
(104608, 'https://ror.org/05fa8ka61', 'pt', 1, 'https://ror.org/05fa8ka61 INESC TEC, Instituto de Engenharia de Sistemas e Computadores Tecnologia e CiĆŖncia'),
(104609, 'https://ror.org/05fagpw72', 'en', 1, 'https://ror.org/05fagpw72 Wenhua College ę–‡åŽå­¦é™¢'),
(104610, 'https://ror.org/05fbn8x75', 'en', 1, 'https://ror.org/05fbn8x75 Wolfram Institute for Computational Foundations of Science'),
(104611, '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'),
(104612, 'https://ror.org/05febkk55', 'en', 1, 'https://ror.org/05febkk55 xAI, xAI (United States)'),
(104613, 'https://ror.org/05fg6gr82', 'en', 1, 'https://ror.org/05fg6gr82 University of Macedonia UniversitĆ© de macĆ©doine Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(104614, 'https://ror.org/05fhwtx59', 'no_lang_code', 1, 'https://ror.org/05fhwtx59 L3Harris (United States)'),
(104615, 'https://ror.org/05fjffm04', 'fr', 1, 'https://ror.org/05fjffm04 Laboratoire de Physiologie Cellulaire Laboratory of Cell Physiology'),
(104616, 'https://ror.org/05fpsjc82', 'en', 1, 'https://ror.org/05fpsjc82 Institute of Information and Communication Technologies Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по информационни Šø ŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¾Š½Š½Šø технологии'),
(104617, 'https://ror.org/05fr89837', 'de', 1, 'https://ror.org/05fr89837 Institut für Qualitätsentwicklung an Schulen Schleswig-Holstein'),
(104618, 'https://ror.org/05frk8994', 'en', 1, 'https://ror.org/05frk8994 Initial MAnagement and prevention of acute orGan failures IN critically ill patiEnts'),
(104619, 'https://ror.org/05frnbh40', 'pt', 1, 'https://ror.org/05frnbh40 Escola Superior de SaĆŗde Cruz Vermelha Portuguesa - Alto TĆ¢mega'),
(104620, 'https://ror.org/05fsfvw79', 'en', 1, 'https://ror.org/05fsfvw79 Anhui Normal University å®‰å¾½åøˆčŒƒå¤§å­¦'),
(104621, 'https://ror.org/05fsjkf12', 'en', 1, 'https://ror.org/05fsjkf12 Guangdong Peizheng College'),
(104622, 'https://ror.org/05fvhm231', 'fr', 1, 'https://ror.org/05fvhm231 Laboratoire de Sciences Cognitives et Psycholinguistique'),
(104623, 'https://ror.org/05fw3y429', 'de', 1, 'https://ror.org/05fw3y429 Klinik und Poliklinik für Orthopädie, Physikalische Medizin und Rehabilitation'),
(104624, 'https://ror.org/05fwr8z16', 'en', 1, 'https://ror.org/05fwr8z16 Zhengzhou University of Light Industry éƒ‘å·žč½»å·„äøšå­¦é™¢'),
(104625, 'https://ror.org/05fwzbv61', 'id', 1, 'https://ror.org/05fwzbv61 Yayasan Insanulhaq Cidadungu'),
(104626, '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'),
(104627, 'https://ror.org/05g0swy93', 'en', 1, 'https://ror.org/05g0swy93 LIFE Institute de Recherches LIFE Research Institute'),
(104628, 'https://ror.org/05g16vg65', 'en', 1, 'https://ror.org/05g16vg65 Rare Disease Foundation'),
(104629, 'https://ror.org/05g3dte14', 'en', 1, 'https://ror.org/05g3dte14 Florida State University Universidad Estatal de Florida UniversitĆ© d''Ɖtat de Floride'),
(104630, 'https://ror.org/05g3p2p60', 'fr', 1, 'https://ror.org/05g3p2p60 Alliance nationale pour les sciences de la vie et de la santƩ'),
(104631, 'https://ror.org/05g4cxq12', 'en', 1, 'https://ror.org/05g4cxq12 High Energy Astrophysics Science Archive Research Center'),
(104632, 'https://ror.org/05g7gad22', 'fr', 1, 'https://ror.org/05g7gad22 Laboratoire BioingƩnierie et Nanosciences'),
(104633, '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'),
(104634, 'https://ror.org/05g7w4342', 'en', 1, 'https://ror.org/05g7w4342 Chartered Institute of Personnel Management Sri Lanka (Inc.)'),
(104635, 'https://ror.org/05gakfp64', 'es', 1, 'https://ror.org/05gakfp64 Asociación Colombiana de Hepatología'),
(104636, 'https://ror.org/05gbn2817', 'en', 1, 'https://ror.org/05gbn2817 China University of Petroleum, East China äø­å›½ēŸ³ę²¹å¤§å­¦'),
(104637, 'https://ror.org/05gd22996', 'en', 1, 'https://ror.org/05gd22996 University of Cumbria'),
(104638, 'https://ror.org/05gd4yq49', 'fr', 1, 'https://ror.org/05gd4yq49 Institut de Biologie de Lille'),
(104639, 'https://ror.org/05gfj3z69', 'en', 1, 'https://ror.org/05gfj3z69 Integrated Rural Development And Nature Conservation'),
(104640, 'https://ror.org/05gfs4w12', 'en', 1, 'https://ror.org/05gfs4w12 Pharma Health Science College'),
(104641, 'https://ror.org/05gj63w50', 'en', 1, 'https://ror.org/05gj63w50 Southwestern University'),
(104642, 'https://ror.org/05gknh003', 'en', 1, 'https://ror.org/05gknh003 Ocean Networks Canada Society'),
(104643, 'https://ror.org/05gngra25', 'es', 1, 'https://ror.org/05gngra25 Escuela Normal Rural "Gral. MatĆ­as Ramos Santos"'),
(104644, 'https://ror.org/05gp45n31', 'en', 1, 'https://ror.org/05gp45n31 Dalian Jiaotong University å¤§čæžäŗ¤é€šå¤§å­¦'),
(104645, 'https://ror.org/05gscwg02', 'fr', 1, 'https://ror.org/05gscwg02 Laboratoire Souterrain Ć  Bas Bruit Low Noise Inter-Disciplinary Underground Science & Technology'),
(104646, 'https://ror.org/05gsnx339', 'pt', 1, 'https://ror.org/05gsnx339 Hospital CUF Descobertas'),
(104647, 'https://ror.org/05gsrh908', 'no_lang_code', 1, 'https://ror.org/05gsrh908 Ecopetrol (Colombia)'),
(104648, 'https://ror.org/05gtjpd57', 'en', 1, 'https://ror.org/05gtjpd57 Salale University'),
(104649, 'https://ror.org/05gz4kr37', 'fr', 1, 'https://ror.org/05gz4kr37 Observatoire OcƩanologique de Banyuls-sur-Mer'),
(104650, 'https://ror.org/05gz77z03', 'no_lang_code', 1, 'https://ror.org/05gz77z03 Thales Alenia Space Thales Alenia Space (France)'),
(104651, 'https://ror.org/05gzn8n94', 'en', 1, 'https://ror.org/05gzn8n94 PLA Air Force Xi''an Flying College äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›č„æå®‰é£žč”Œå­¦é™¢'),
(104652, 'https://ror.org/05h1c9n12', 'fr', 1, 'https://ror.org/05h1c9n12 Laboratoire de droit privƩ'),
(104653, 'https://ror.org/05h33bt13', 'en', 1, 'https://ror.org/05h33bt13 Qinghai University é’ęµ·å¤§å­¦'),
(104654, 'https://ror.org/05h3y2073', 'no_lang_code', 1, 'https://ror.org/05h3y2073 Costco Wholesale, Costco Wholesale (United States)'),
(104655, 'https://ror.org/05h50sq48', 'no_lang_code', 1, 'https://ror.org/05h50sq48 Vuela for Health'),
(104656, 'https://ror.org/05h5a7d89', 'fr', 1, 'https://ror.org/05h5a7d89 Centre Spatial Guyanais, Guiana Space Centre'),
(104657, 'https://ror.org/05h5v3c50', 'fr', 1, 'https://ror.org/05h5v3c50 HƓpital Tenon Tenon Hospital'),
(104658, 'https://ror.org/05h5wna09', 'fr', 0, 'https://ror.org/05h5wna09 UniversitƩ Montesquieu Bordeaux IV'),
(104659, 'https://ror.org/05h664633', 'en', 1, 'https://ror.org/05h664633 Laurea University of Applied Sciences'),
(104660, 'https://ror.org/05h7ddb14', 'fr', 1, 'https://ror.org/05h7ddb14 Centre de Biologie et de Gestion des Populations'),
(104661, 'https://ror.org/05h7xva58', 'en', 1, 'https://ror.org/05h7xva58 Universidad Wesleyana Wesleyan University'),
(104662, 'https://ror.org/05h8wtz16', 'en', 1, 'https://ror.org/05h8wtz16 Bagabaga College of Education'),
(104663, 'https://ror.org/05h9eqy10', 'en', 1, 'https://ror.org/05h9eqy10 International Institute of Information Technology Bangalore'),
(104664, 'https://ror.org/05hb8m595', 'fr', 1, 'https://ror.org/05hb8m595 PHOTOSYNTHESE'),
(104665, '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'),
(104666, 'https://ror.org/05he76226', 'en', 1, 'https://ror.org/05he76226 Pioneer Natural Resources, Pioneer Natural Resources (United States)'),
(104667, 'https://ror.org/05he7vj96', 'en', 1, 'https://ror.org/05he7vj96 Modern Business School Visoka Ŕkola modernog biznisa'),
(104668, 'https://ror.org/05hessd06', 'no_lang_code', 1, 'https://ror.org/05hessd06 Sekisui Chemical (Japan) ē©ę°“åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(104669, 'https://ror.org/05hfa4n20', 'en', 1, 'https://ror.org/05hfa4n20 Westlake University 脿湖大学'),
(104670, 'https://ror.org/05hffr360', 'en', 1, 'https://ror.org/05hffr360 Khalifa University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų®Ł„ŁŠŁŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„ŲØŲ­ŁˆŲ«'),
(104671, 'https://ror.org/05hg41718', 'en', 1, 'https://ror.org/05hg41718 Ovarian Cancer Research Alliance'),
(104672, 'https://ror.org/05hjsty75', 'en', 1, 'https://ror.org/05hjsty75 Lesbian Herstory Archives'),
(104673, 'https://ror.org/05hm2ja81', 'fr', 1, 'https://ror.org/05hm2ja81 Institut de Recherche en Astrophysique et PlanƩtologie Research Institute in Astrophysics and Planetology'),
(104674, 'https://ror.org/05hmt6r19', 'pt', 1, 'https://ror.org/05hmt6r19 Tribunal Constitucional'),
(104675, 'https://ror.org/05hntsd28', 'pt', 1, 'https://ror.org/05hntsd28 Faculdade Damas da Instrução Cristã'),
(104676, 'https://ror.org/05hp04238', 'fr', 1, 'https://ror.org/05hp04238 Transitions Savoirs MƩdias Territoires'),
(104677, 'https://ror.org/05hqep952', 'fr', 1, 'https://ror.org/05hqep952 Infection, Anti-microbiens, ModƩlisation, Evolution Infection, Antimicrobials, Modelling, Evolution'),
(104678, 'https://ror.org/05hqf1284', 'en', 1, 'https://ror.org/05hqf1284 Chongqing Technology and Business University é‡åŗ†å·„å•†å¤§å­¦'),
(104679, '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'),
(104680, 'https://ror.org/05hv8n393', 'en', 1, 'https://ror.org/05hv8n393 Berekum College of Education'),
(104681, 'https://ror.org/05hyx5a17', 'fr', 1, 'https://ror.org/05hyx5a17 Laboratoire de GĆ©nie Ɖlectrique de Grenoble'),
(104682, 'https://ror.org/05hz48k23', 'no_lang_code', 1, 'https://ror.org/05hz48k23 Vision RT (United Kingdom)'),
(104683, 'https://ror.org/05hz99a17', 'fr', 1, 'https://ror.org/05hz99a17 AAU - Ambiances, Architectures, UrbanitƩs'),
(104684, 'https://ror.org/05hzcdx60', 'en', 1, 'https://ror.org/05hzcdx60 Yum! Brands, Yum! Brands (United States)'),
(104685, 'https://ror.org/05j5esv78', 'pt', 1, 'https://ror.org/05j5esv78 Egas Moniz - Cooperativa de Ensino Superior Crl'),
(104686, 'https://ror.org/05j8sgr10', 'fr', 1, 'https://ror.org/05j8sgr10 Architecture Histoire Technique Territoire Patrimoine'),
(104687, 'https://ror.org/05j96kg65', 'en', 1, 'https://ror.org/05j96kg65 Janeway Children''s Health and Rehabilitation Centre'),
(104688, 'https://ror.org/05jgq9443', 'en', 1, 'https://ror.org/05jgq9443 Berlin-Brandenburg Academy of Sciences and Humanities Berlin-Brandenburgische Akademie der Wissenschaften'),
(104689, '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'),
(104690, 'https://ror.org/05jk8e518', 'es', 1, 'https://ror.org/05jk8e518 Universidad de Los Lagos'),
(104691, 'https://ror.org/05jkzmq27', 'en', 1, 'https://ror.org/05jkzmq27 Mass Humanities'),
(104692, 'https://ror.org/05jm22562', 'fr', 1, 'https://ror.org/05jm22562 Ausonius Institut de Recherche sur l''AntiquitƩ et le Moyen age'),
(104693, 'https://ror.org/05jpad840', 'fr', 1, 'https://ror.org/05jpad840 Institut de la Mer de Villefranche'),
(104694, 'https://ror.org/05jpzcy63', 'en', 1, 'https://ror.org/05jpzcy63 Association for Project Management'),
(104695, 'https://ror.org/05jrr4320', 'fr', 1, 'https://ror.org/05jrr4320 HƓpital de la Timone'),
(104696, 'https://ror.org/05jscf583', 'en', 1, 'https://ror.org/05jscf583 Harbin Medical University å“ˆå°”ę»ØåŒ»ē§‘å¤§å­¦'),
(104697, 'https://ror.org/05jt6pc28', 'en', 0, 'https://ror.org/05jt6pc28 Somerset Partnership NHS Foundation Trust'),
(104698, 'https://ror.org/05jyayj71', 'en', 1, 'https://ror.org/05jyayj71 National Hospital Organization Saitama Hospital ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē—…é™¢ę©Ÿę§‹ åŸ¼ēŽ‰ē—…é™¢'),
(104699, 'https://ror.org/05jytbt55', 'en', 1, 'https://ror.org/05jytbt55 National Institute of Metrology Myanmar į€į€­į€€į€»į€…į€½į€¬į€į€­į€Æį€„į€ŗį€øį€į€¬į€į€¼į€„į€ŗį€øį€”į€Šį€ŗį€øį€•į€Šį€¬į€Œį€¬į€”'),
(104700, 'https://ror.org/05jzt8766', 'en', 1, 'https://ror.org/05jzt8766 Lapin yliopisto Lapplands universitet University of Lapland'),
(104701, 'https://ror.org/05k0hd440', 'no_lang_code', 1, 'https://ror.org/05k0hd440 Sonova (United States)'),
(104702, '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'),
(104703, 'https://ror.org/05k1a6w82', 'fr', 1, 'https://ror.org/05k1a6w82 Laboratoire Morphodynamique Continentale et CÓtière'),
(104704, 'https://ror.org/05k1va520', 'no_lang_code', 1, 'https://ror.org/05k1va520 National NanoFab Center ė‚˜ė…øģ¢…ķ•©źø°ģˆ ģ›'),
(104705, 'https://ror.org/05k238v14', 'en', 1, 'https://ror.org/05k238v14 University of Hradec KrƔlovƩ Univerzita Hradec KrƔlovƩ'),
(104706, 'https://ror.org/05k267t15', 'fr', 1, 'https://ror.org/05k267t15 France GƩnomique'),
(104707, 'https://ror.org/05k317v03', 'fr', 1, 'https://ror.org/05k317v03 Laboratoire de GƩnƩtique Cellulaire'),
(104708, 'https://ror.org/05k441034', 'fr', 1, 'https://ror.org/05k441034 Louvre, MusƩe du Louvre'),
(104709, 'https://ror.org/05k4bc948', 'en', 1, 'https://ror.org/05k4bc948 S P Jain School of Global Management'),
(104710, 'https://ror.org/05k6m5t95', 'en', 1, 'https://ror.org/05k6m5t95 National Institute of Polar Research å›½ē«‹ę„µåœ°ē ”ē©¶ę‰€'),
(104711, 'https://ror.org/05k6w6915', 'en', 1, 'https://ror.org/05k6w6915 North Country Community College'),
(104712, 'https://ror.org/05k9skc85', 'fr', 1, 'https://ror.org/05k9skc85 Institut Pasteur de Lille Pasteur Institute of Lille'),
(104713, 'https://ror.org/05ka4wq25', 'en', 1, 'https://ror.org/05ka4wq25 Basic Education College ŁƒŁ„ŁŠŲ© Ų§Ł„ŲŖŲ±ŲØŁŠŲ© Ų§Ł„Ų£Ų³Ų§Ų³ŁŠŲ©'),
(104714, 'https://ror.org/05kf27764', 'en', 1, 'https://ror.org/05kf27764 Anzac Research Institute'),
(104715, 'https://ror.org/05kf5z787', 'en', 1, 'https://ror.org/05kf5z787 Shanghai Business School äøŠęµ·å•†å­¦é™¢'),
(104716, 'https://ror.org/05kjvvp31', 'en', 1, 'https://ror.org/05kjvvp31 Travelers Companies, Travelers Companies (United States)'),
(104717, 'https://ror.org/05kk75d32', 'en', 1, 'https://ror.org/05kk75d32 Paris Public Health');
INSERT INTO `rors` VALUES
(104718, 'https://ror.org/05kkw6065', 'fr', 1, 'https://ror.org/05kkw6065 IschƩmie Reperfusion, MƩtabolisme et Inflammation StƩrile en Transplantation'),
(104719, 'https://ror.org/05kstpb17', 'en', 1, 'https://ror.org/05kstpb17 Agogo Presbyterian Women''s College of Education'),
(104720, 'https://ror.org/05kwbf598', 'fr', 1, 'https://ror.org/05kwbf598 Institut pour l''avancƩe des biosciences Institute for Advanced Biosciences'),
(104721, 'https://ror.org/05kxbz959', 'no_lang_code', 1, 'https://ror.org/05kxbz959 Hyundai Motor Group (South Korea)'),
(104722, 'https://ror.org/05kxt4539', 'fr', 1, 'https://ror.org/05kxt4539 Ɖcologie Marine Tropicale des OcĆ©ans Pacifique et Indien'),
(104723, 'https://ror.org/05kytsw45', 'en', 1, 'https://ror.org/05kytsw45 Ɩrebro University Ɩrebro universitet Ɩrebron yliopisto'),
(104724, 'https://ror.org/05kyy7d06', 'no_lang_code', 1, 'https://ror.org/05kyy7d06 Saab (Sweden)'),
(104725, 'https://ror.org/05kz79f96', 'fr', 1, 'https://ror.org/05kz79f96 Physiologie et Physiopathlogie Endocriniennes'),
(104726, 'https://ror.org/05m14rs93', 'fr', 1, 'https://ror.org/05m14rs93 Laboratoire d’OcĆ©anologie et de GĆ©osciences'),
(104727, 'https://ror.org/05m169e78', 'en', 1, 'https://ror.org/05m169e78 PES University'),
(104728, 'https://ror.org/05m1fqs56', 'fr', 1, 'https://ror.org/05m1fqs56 AssemblƩe Nationale de France, French National Assembly'),
(104729, 'https://ror.org/05m2y7y74', 'en', 1, 'https://ror.org/05m2y7y74 Federal University Gusau Jami''ar Tarayya ta Gusau'),
(104730, 'https://ror.org/05m5x8198', 'en', 1, 'https://ror.org/05m5x8198 BMJ Group, BMJ Group (United Kingdom)'),
(104731, 'https://ror.org/05m7pjf47', 'en', 1, 'https://ror.org/05m7pjf47 An ColƔiste Ollscoile Baile Ɓtha Cliath University College Dublin'),
(104732, 'https://ror.org/05m83vp63', 'en', 1, 'https://ror.org/05m83vp63 Armed Forces Academy'),
(104733, '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'),
(104734, 'https://ror.org/05mey9k78', 'en', 1, 'https://ror.org/05mey9k78 Tallinn University Tallinna Ülikool Таллинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104735, 'https://ror.org/05mfwtg94', 'fr', 1, 'https://ror.org/05mfwtg94 Biologie de la Reproduction, Environnement, EpigƩnƩtique et DƩveloppement Biology of Reproduction, Environment, Epigenetics and Development'),
(104736, 'https://ror.org/05mgwy297', 'en', 1, 'https://ror.org/05mgwy297 Smithsonian Libraries'),
(104737, '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'),
(104738, 'https://ror.org/05mhxe367', 'de', 1, 'https://ror.org/05mhxe367 Beethoven-Haus Bonn'),
(104739, 'https://ror.org/05mjwh489', 'en', 1, 'https://ror.org/05mjwh489 Academy of Performing Arts in Prague Akademie mĆŗzických uměnĆ­ v Praze'),
(104740, 'https://ror.org/05mkckz37', 'sk', 1, 'https://ror.org/05mkckz37 Nemocnica Bory, a.s'),
(104741, 'https://ror.org/05mknbx32', 'en', 1, 'https://ror.org/05mknbx32 Hƶgskolan pĆ„ ƅland ƅland University of Applied Sciences'),
(104742, 'https://ror.org/05mmh5r64', 'no_lang_code', 0, 'https://ror.org/05mmh5r64 Alenia Aermacchi'),
(104743, 'https://ror.org/05mnej980', 'pt', 1, 'https://ror.org/05mnej980 Instituto Superior de Gestão'),
(104744, 'https://ror.org/05mnstq10', 'fr', 1, 'https://ror.org/05mnstq10 Institut d''Etudes Transtextuelles et Transculturelles'),
(104745, 'https://ror.org/05mpb3k90', 'de', 1, 'https://ror.org/05mpb3k90 Fƶrderverein Bioƶkonomieforschung e.V.'),
(104746, 'https://ror.org/05ms04m92', 'en', 1, 'https://ror.org/05ms04m92 Buffalo State University'),
(104747, 'https://ror.org/05mv3tj33', 'fr', 1, 'https://ror.org/05mv3tj33 Observatoire des Sciences de l''Univers de la RƩunion'),
(104748, 'https://ror.org/05mwdqq98', 'es', 1, 'https://ror.org/05mwdqq98 Instituto de Investigación de Enfermedades Raras Research Institute for Rare Diseases'),
(104749, 'https://ror.org/05mx85j86', 'en', 1, 'https://ror.org/05mx85j86 Parkinson''s Foundation'),
(104750, 'https://ror.org/05mxya461', 'en', 1, 'https://ror.org/05mxya461 Chang''an University 长安大学'),
(104751, 'https://ror.org/05mzfcs16', 'en', 1, 'https://ror.org/05mzfcs16 The Open University Y Brifysgol Agored'),
(104752, 'https://ror.org/05mzta732', 'en', 1, 'https://ror.org/05mzta732 Islamic Azad University, Ashkezar دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد اؓکذر'),
(104753, 'https://ror.org/05n0qbd70', 'en', 1, 'https://ror.org/05n0qbd70 Fujian University of Traditional Chinese Medicine ē¦å»ŗēœäø­åŒ»čÆē ”ē©¶é™¢'),
(104754, 'https://ror.org/05n2vpf20', 'en', 1, 'https://ror.org/05n2vpf20 Les Roches Marbella International School of Hotel Management'),
(104755, 'https://ror.org/05n3dz165', 'fi', 1, 'https://ror.org/05n3dz165 JyvƤskylƤn Yliopisto, University of JyvƤskylƤ'),
(104756, 'https://ror.org/05n4e2707', 'fr', 1, 'https://ror.org/05n4e2707 Conseil de L''Europe Consejo de Europa Consiglio d''Europa Council of Europe Europarat'),
(104757, 'https://ror.org/05n4nmn13', 'fr', 1, 'https://ror.org/05n4nmn13 GƩnƩtique MolƩculaire GƩnomique Microbiologie'),
(104758, 'https://ror.org/05n7bzj69', 'en', 1, 'https://ror.org/05n7bzj69 Mahatma Gandhi University, Nalgonda'),
(104759, 'https://ror.org/05n8j1468', 'en', 1, 'https://ror.org/05n8j1468 Fonna Hospital Trust'),
(104760, 'https://ror.org/05n8t2628', 'en', 1, 'https://ror.org/05n8t2628 University of Washington Tacoma'),
(104761, 'https://ror.org/05n911h24', 'en', 1, 'https://ror.org/05n911h24 Technical University of Darmstadt Technische UniversitƤt Darmstadt'),
(104762, 'https://ror.org/05nbqxr67', 'en', 1, 'https://ror.org/05nbqxr67 Miami University'),
(104763, 'https://ror.org/05ncpd436', 'en', 1, 'https://ror.org/05ncpd436 Enam Medical College & Hospital ą¦ą¦Øą¦¾ą¦® মেঔিকেল ą¦•ą¦²ą§‡ą¦œ ও হাসপাতাল'),
(104764, 'https://ror.org/05ndh7v49', 'en', 1, 'https://ror.org/05ndh7v49 Saudi Electronic University الجامعة Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†ŁŠŲ©'),
(104765, 'https://ror.org/05nex2951', 'fr', 1, 'https://ror.org/05nex2951 International Astronomical Union Union astronomique internationale'),
(104766, 'https://ror.org/05nfk7108', 'en', 0, 'https://ror.org/05nfk7108 Deutsches Humangenom-PhƤnomarchiv German Human Genome-Phenome Archive'),
(104767, 'https://ror.org/05nfypp21', 'fr', 1, 'https://ror.org/05nfypp21 DƩlƩgation Aquitaine'),
(104768, 'https://ror.org/05nj19v03', 'en', 1, 'https://ror.org/05nj19v03 Center for the Analysis of Sustainable Agricultural Systems'),
(104769, 'https://ror.org/05nj8rv48', 'en', 1, 'https://ror.org/05nj8rv48 TrnavskĆ” univerzita v Trnave University of Trnava'),
(104770, 'https://ror.org/05njt8204', 'en', 1, 'https://ror.org/05njt8204 Delaware Humanities Forum'),
(104771, 'https://ror.org/05njtdr40', 'en', 1, 'https://ror.org/05njtdr40 MILA University'),
(104772, 'https://ror.org/05nn1k450', 'fr', 1, 'https://ror.org/05nn1k450 Institut du droit public et de la science politique'),
(104773, 'https://ror.org/05nne8c43', 'en', 1, 'https://ror.org/05nne8c43 NSW Department of Education'),
(104774, 'https://ror.org/05nspsj29', 'en', 1, 'https://ror.org/05nspsj29 Mediterranean Experts on Climate and environmental Change'),
(104775, 'https://ror.org/05nw4bs65', 'en', 1, 'https://ror.org/05nw4bs65 Illinois Humanities Council'),
(104776, 'https://ror.org/05nxhgm70', 'nl', 1, 'https://ror.org/05nxhgm70 Dutch Heart Foundation Hartstichting, Nederlandse Hartstichting'),
(104777, 'https://ror.org/05nyp3428', 'en', 1, 'https://ror.org/05nyp3428 U.S. Bancorp, U.S. Bancorp (United States)'),
(104778, 'https://ror.org/05nz37n09', 'en', 1, 'https://ror.org/05nz37n09 Anadolu University Anadolu Üniversitesi'),
(104779, 'https://ror.org/05p03kd02', 'en', 1, 'https://ror.org/05p03kd02 Chuo Kikuu Cha Kikatoliki cha Mwenge Mwenge Catholic University'),
(104780, 'https://ror.org/05p21h471', 'en', 1, 'https://ror.org/05p21h471 University College Prague'),
(104781, 'https://ror.org/05p299b07', 'es', 1, 'https://ror.org/05p299b07 Instituto Tecnológico Superior de Los Reyes'),
(104782, 'https://ror.org/05p2z3x69', 'en', 1, 'https://ror.org/05p2z3x69 Chuo Kikuu cha Kenyatta Kenyatta University'),
(104783, 'https://ror.org/05p330p21', 'no_lang_code', 1, 'https://ror.org/05p330p21 Shell (United Kingdom)'),
(104784, 'https://ror.org/05p43t846', 'no_lang_code', 0, 'https://ror.org/05p43t846 NGimat (United States)'),
(104785, 'https://ror.org/05p5g9717', 'en', 1, 'https://ror.org/05p5g9717 Business Academy SouthWest'),
(104786, 'https://ror.org/05p5v2j38', 'en', 1, 'https://ror.org/05p5v2j38 Jane Street, Jane Street (United States)'),
(104787, 'https://ror.org/05p706d77', 'en', 1, 'https://ror.org/05p706d77 HAS green academy HAS green academy'),
(104788, 'https://ror.org/05p76fn60', 'en', 1, 'https://ror.org/05p76fn60 Aerojet Rocketdyne (United States)'),
(104789, 'https://ror.org/05p7fmf80', 'en', 1, 'https://ror.org/05p7fmf80'),
(104790, 'https://ror.org/05p8d2v16', 'en', 1, 'https://ror.org/05p8d2v16 Bengbu University čšŒåŸ å­¦é™¢'),
(104791, 'https://ror.org/05p8w6387', 'en', 1, 'https://ror.org/05p8w6387 Florida Atlantic University'),
(104792, 'https://ror.org/05p96ba03', 'en', 0, 'https://ror.org/05p96ba03 Monash Institute of Medical Research'),
(104793, 'https://ror.org/05p9e6e48', 'en', 1, 'https://ror.org/05p9e6e48 Federal Center for Cardiovascular Surgery Astrakhan Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Центр ДерГечно-Š”Š¾ŃŃƒŠ“ŠøŃŃ‚Š¾Š¹ Š„ŠøŃ€ŃƒŃ€Š³ŠøŠø ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России г. ŠŃŃ‚Ń€Š°Ń…Š°Š½ŃŒ'),
(104794, 'https://ror.org/05p9z4t69', 'en', 1, 'https://ror.org/05p9z4t69 Pacific University'),
(104795, 'https://ror.org/05pc6yw33', 'en', 1, 'https://ror.org/05pc6yw33 Sri Siddhartha Academy of Higher Education'),
(104796, 'https://ror.org/05pdhes44', 'en', 1, 'https://ror.org/05pdhes44 SEI Group CSR Foundation (Japan) å…¬ē›Šč²”å›£ę³•äŗŗä½å‹é›»å·„ć‚°ćƒ«ćƒ¼ćƒ—ē¤¾ä¼šč²¢ēŒ®åŸŗé‡‘'),
(104797, 'https://ror.org/05pdn2z45', 'en', 1, 'https://ror.org/05pdn2z45 Second Affiliated Hospital of Nantong University å—é€šå¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢, å—é€šåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(104798, 'https://ror.org/05pet6f20', 'en', 1, 'https://ror.org/05pet6f20 National Institute of Technology Uttarakhand'),
(104799, 'https://ror.org/05phns765', 'en', 1, 'https://ror.org/05phns765 Høgskulen pÄ Vestlandet Western Norway University of Applied Sciences'),
(104800, 'https://ror.org/05pht7q62', 'es', 1, 'https://ror.org/05pht7q62 Instituto de la Democracia'),
(104801, 'https://ror.org/05pjkyk24', 'en', 1, 'https://ror.org/05pjkyk24 Hechi University 河池学院'),
(104802, 'https://ror.org/05pk81s67', 'en', 1, 'https://ror.org/05pk81s67 Dish Network, Dish Network (United States)'),
(104803, 'https://ror.org/05pm8ec76', 'fr', 1, 'https://ror.org/05pm8ec76 Laboratoire d''Anthropologie Sociale'),
(104804, 'https://ror.org/05pmky480', 'pt', 1, 'https://ror.org/05pmky480 UningƔ - Centro UniversitƔrio IngƔ'),
(104805, 'https://ror.org/05pny1q12', 'fr', 1, 'https://ror.org/05pny1q12 Laboratoire d''Ecologie des Hydrosystèmes Naturels et Anthropisés'),
(104806, 'https://ror.org/05pqx1c24', 'en', 1, 'https://ror.org/05pqx1c24 Denison University'),
(104807, 'https://ror.org/05ps02017', 'en', 1, 'https://ror.org/05ps02017 World Organisation for Animal Health'),
(104808, 'https://ror.org/05pt83522', 'en', 1, 'https://ror.org/05pt83522 University of Belgrade – Faculty of Forestry Univerzitet u Beogradu – Å umarski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠØŃƒŠ¼Š°Ń€ŃŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(104809, 'https://ror.org/05pw23b17', 'fr', 1, 'https://ror.org/05pw23b17 Agglomeration Community of La Rochelle CommunautƩ d''agglomƩration de La Rochelle'),
(104810, 'https://ror.org/05pys8802', 'en', 1, 'https://ror.org/05pys8802 Pain Labs'),
(104811, 'https://ror.org/05q0ncs32', 'fr', 1, 'https://ror.org/05q0ncs32 Oniris, Ɖcole nationale vĆ©tĆ©rinaire, agroalimentaire et de l''alimentation, Nantes-Atlantique'),
(104812, 'https://ror.org/05q3pap39', 'fr', 1, 'https://ror.org/05q3pap39 Centre de Recherche sur la Conservation'),
(104813, 'https://ror.org/05q4md098', 'en', 1, 'https://ror.org/05q4md098 Utenos kolegija Utenos kolegija Higher Education Institution'),
(104814, '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'),
(104815, 'https://ror.org/05q5m4q74', 'fr', 1, 'https://ror.org/05q5m4q74 Analyses LittƩraires et Histoire de la Langue'),
(104816, 'https://ror.org/05q5mgf13', 'en', 1, 'https://ror.org/05q5mgf13 Life Science Foundation of Japan å…¬ē›Šč²”å›£ę³•äŗŗćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹ęŒÆčˆˆč²”å›£'),
(104817, 'https://ror.org/05q5rnr22', 'id', 1, 'https://ror.org/05q5rnr22 Sekolah Tinggi Olahraga dan Kesehatan Bina Guna'),
(104818, 'https://ror.org/05q7a8a02', 'fr', 1, 'https://ror.org/05q7a8a02 EDHEC Business School Ecole des Hautes Etudes Commerciales du Nord'),
(104819, 'https://ror.org/05qbqeh37', 'en', 1, 'https://ror.org/05qbqeh37 Environmental Protection Agency'),
(104820, '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'),
(104821, 'https://ror.org/05qec5a53', 'fr', 1, 'https://ror.org/05qec5a53 Centre Hospitalier Universitaire de Rennes Rennes University Hospital'),
(104822, 'https://ror.org/05qfbsy35', 'no_lang_code', 1, 'https://ror.org/05qfbsy35 Arkansas Power Electronics International'),
(104823, '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'),
(104824, 'https://ror.org/05qhnf349', 'fr', 1, 'https://ror.org/05qhnf349 Acquisition et Analyse de DonnƩes pour l''Histoire naturelle'),
(104825, 'https://ror.org/05qj6w324', 'de', 1, 'https://ror.org/05qj6w324 German National Research Data Infrastructure Nationale Forschungsdateninfrastruktur'),
(104826, 'https://ror.org/05qkq7x38', 'en', 1, 'https://ror.org/05qkq7x38 Nirma University નિરમા ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(104827, 'https://ror.org/05qpmg879', 'fr', 1, 'https://ror.org/05qpmg879 Institut de Biologie MolƩculaire et Cellulaire Institute of Molecular and Cellular Biology'),
(104828, 'https://ror.org/05qqb8y62', 'es', 1, 'https://ror.org/05qqb8y62 Instituto Tecnológico Superior del Occidente del Estado de Hidalgo'),
(104829, 'https://ror.org/05qsp5m64', 'fr', 1, 'https://ror.org/05qsp5m64 Laboratoire Ondes et MatiĆØre d''Aquitaine'),
(104830, 'https://ror.org/05qt8tf94', 'en', 1, 'https://ror.org/05qt8tf94 Cyprus University of Technology Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(104831, 'https://ror.org/05qtjta41', 'en', 1, 'https://ror.org/05qtjta41 Open Preservation Foundation'),
(104832, 'https://ror.org/05qvskn85', 'en', 1, 'https://ror.org/05qvskn85 Xinxiang University 新乔学院'),
(104833, 'https://ror.org/05qy9ka59', 'fr', 1, 'https://ror.org/05qy9ka59 Laboratoire d''imagerie translationnelle en oncologie Laboratory of Translational Imaging in Oncology'),
(104834, 'https://ror.org/05qz4zw08', 'en', 1, 'https://ror.org/05qz4zw08 Akita International University å›½éš›ę•™é¤Šå¤§å­¦'),
(104835, 'https://ror.org/05r0mw364', 'fr', 1, 'https://ror.org/05r0mw364 Biomarqueurs et essais cliniques en CancƩrologie et Onco-HƩmatologie'),
(104836, 'https://ror.org/05r25mc45', 'fr', 1, 'https://ror.org/05r25mc45 Plateforme d''Imagerie BiomƩdicale'),
(104837, 'https://ror.org/05r2q4835', 'en', 1, 'https://ror.org/05r2q4835 Chengdu Fine Optical Engineering Research Center ęˆéƒ½ē²¾åÆ†å…‰å­¦å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(104838, 'https://ror.org/05r332y60', 'fr', 1, 'https://ror.org/05r332y60 Institut des Sciences des Plantes de Montpellier Institute for Plant Sciences of Montpellier'),
(104839, 'https://ror.org/05r3f7h03', 'de', 1, 'https://ror.org/05r3f7h03 German National Metrology Institute Physikalisch-Technische Bundesanstalt'),
(104840, 'https://ror.org/05r4atz68', 'en', 1, 'https://ror.org/05r4atz68 Engineering Biology Research Consortium'),
(104841, 'https://ror.org/05r4re112', 'fr', 1, 'https://ror.org/05r4re112 Centre d’Etudes des Langues, Territoires et IdentitĆ©s Culturelles – Bretagne et Langues Minoritaires'),
(104842, 'https://ror.org/05r63mf91', 'fr', 1, 'https://ror.org/05r63mf91 DƩpartement Biologie et AmƩlioration des Plantes'),
(104843, 'https://ror.org/05r75c731', 'en', 1, 'https://ror.org/05r75c731 Federal Polytechnic, Bida'),
(104844, 'https://ror.org/05r7z1k40', 'en', 1, 'https://ror.org/05r7z1k40 NOAA National Marine Fisheries Service Northwest Fisheries Science Center'),
(104845, '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'),
(104846, 'https://ror.org/05ra6d150', 'en', 1, 'https://ror.org/05ra6d150 Catholic University in Ruzomberok Katolícka univerzita v Ružomberku'),
(104847, 'https://ror.org/05rbj6w12', 'id', 0, 'https://ror.org/05rbj6w12 STIKES Muhammadiyah Kuningan'),
(104848, 'https://ror.org/05rbnsr42', 'en', 1, 'https://ror.org/05rbnsr42 Macclesfield College'),
(104849, 'https://ror.org/05rehad94', 'en', 1, 'https://ror.org/05rehad94 Oxford University Clinical Research Unit'),
(104850, 'https://ror.org/05rf29967', 'en', 0, 'https://ror.org/05rf29967 Department for International Development Yr Adran dros Ddatblygu Rhyngwladol'),
(104851, 'https://ror.org/05rhg0h08', 'fr', 0, 'https://ror.org/05rhg0h08 Computer Science Laboratory of Lille Laboratoire d''Informatique Fondamentale de Lille'),
(104852, 'https://ror.org/05rhyza23', 'en', 0, 'https://ror.org/05rhyza23 Institute of Parasitology'),
(104853, 'https://ror.org/05rk03822', 'en', 1, 'https://ror.org/05rk03822 University of Lagos YunifÔsítì ìlú Èkó'),
(104854, 'https://ror.org/05rmjk207', 'fr', 1, 'https://ror.org/05rmjk207 Tempora'),
(104855, 'https://ror.org/05rnj8444', 'en', 1, 'https://ror.org/05rnj8444 Indo-French Centre for Applied Mathematics'),
(104856, 'https://ror.org/05rp1t554', 'en', 1, 'https://ror.org/05rp1t554 Yulin University ę¦†ęž—å­¦é™¢'),
(104857, 'https://ror.org/05rq3rb55', 'fr', 1, 'https://ror.org/05rq3rb55 Imagine Institute for Genetic Diseases Institut des Maladies GƩnƩtiques Imagine'),
(104858, 'https://ror.org/05rsgy424', 'en', 1, 'https://ror.org/05rsgy424 Sysco Sysco (United States)'),
(104859, 'https://ror.org/05ryy9n88', 'en', 1, 'https://ror.org/05ryy9n88 University of Belgrade – Faculty of Security Studies Univerzitet u Beogradu – Fakultet bezbednosti, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ безбеГности'),
(104860, 'https://ror.org/05s45j557', 'en', 1, 'https://ror.org/05s45j557 Fortuna Field Station'),
(104861, 'https://ror.org/05s4feg49', 'en', 1, 'https://ror.org/05s4feg49 University of Warmia and Mazury in Olsztyn Uniwersytet Warmińsko-Mazurski w Olsztynie'),
(104862, 'https://ror.org/05s4gph86', 'it', 1, 'https://ror.org/05s4gph86 Istituto Nazionale di Fisica Nucleare, Laboratori Acceleratori e SuperconduttivitĆ  Applicata'),
(104863, 'https://ror.org/05s608j53', 'fr', 1, 'https://ror.org/05s608j53 Contact and Structure Mechanics Laboratory Laboratoire de MƩcanique des Contacts et des Structures'),
(104864, 'https://ror.org/05s6hm275', 'fr', 1, 'https://ror.org/05s6hm275 Maison des Sciences de l''Homme SUD'),
(104865, 'https://ror.org/05s754026', 'en', 1, 'https://ror.org/05s754026 Karlstad University Karlstadin yliopisto Karlstads universitet'),
(104866, 'https://ror.org/05s9t8c95', 'en', 1, 'https://ror.org/05s9t8c95 Jawaharlal Nehru Technological University, Kakinada ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ సాంకేతిక ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(104867, 'https://ror.org/05sb2zp10', 'en', 1, 'https://ror.org/05sb2zp10 Dudley College'),
(104868, 'https://ror.org/05sbgwt55', 'en', 1, 'https://ror.org/05sbgwt55 Henan University of Technology ę²³å—å·„äøšå¤§å­¦'),
(104869, 'https://ror.org/05sc3hd12', 'fr', 1, 'https://ror.org/05sc3hd12 Mitochondrie, stress oxydant et protection musculaire'),
(104870, 'https://ror.org/05sd5r855', 'fr', 1, 'https://ror.org/05sd5r855 Laboratoire de MathƩmatiques'),
(104871, 'https://ror.org/05sd8tv96', 'en', 1, 'https://ror.org/05sd8tv96 Barcelona Supercomputing Center Centro Nacional de Supercomputación'),
(104872, 'https://ror.org/05sffn795', 'en', 1, 'https://ror.org/05sffn795 Gamboa Laboratories Laboratorios de Gamboa'),
(104873, 'https://ror.org/05sjwtp51', 'en', 1, 'https://ror.org/05sjwtp51 Bryn Mawr College'),
(104874, 'https://ror.org/05skwvp09', 'en', 1, 'https://ror.org/05skwvp09 All Saints University School of Medicine'),
(104875, 'https://ror.org/05sm9a571', 'en', 1, 'https://ror.org/05sm9a571 Hyogo Prefectural Institute of Environmental Sciences'),
(104876, 'https://ror.org/05snag760', 'en', 1, 'https://ror.org/05snag760 Slovenian Language Technologies Society'),
(104877, 'https://ror.org/05snx2m33', 'en', 1, 'https://ror.org/05snx2m33 University of Belgrade – Faculty of Sports and Physical Education Univerzitet u Beogradu – Fakultet sporta i fizičkog vaspitanja, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ спорта Šø физичког Š²Š°ŃŠæŠøŃ‚Š°ŃšŠ°'),
(104878, 'https://ror.org/05spn1g36', 'es', 1, 'https://ror.org/05spn1g36 Centro Nacional de MetrologĆ­a de PanamĆ” (CENAMEP AIP)'),
(104879, 'https://ror.org/05sttyy11', 'en', 1, 'https://ror.org/05sttyy11 Jaypee Institute of Information Technology ą¤œą„‡ą¤Ŗą„€ ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤‡ą¤Øą„ą¤«ą„‰ą¤°ą„ą¤®ą„‡ą¤¶ą¤Ø ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(104880, 'https://ror.org/05sw4wc49', 'en', 1, 'https://ror.org/05sw4wc49 SveučiliŔte Josipa Jurja Strossmayera u Osijeku University of Osijek'),
(104881, 'https://ror.org/05sy4b952', 'en', 1, 'https://ror.org/05sy4b952 Saba University School of Medicine'),
(104882, 'https://ror.org/05sy8fj60', 'en', 1, 'https://ror.org/05sy8fj60 Anand International College of Engineering'),
(104883, 'https://ror.org/05szaq822', 'en', 1, 'https://ror.org/05szaq822 Giresun University Giresun Üniversitesi'),
(104884, 'https://ror.org/05szpc322', 'en', 1, 'https://ror.org/05szpc322 Qiannan Normal College For Nationalities é»”å—ę°‘ę—åøˆčŒƒå­¦é™¢'),
(104885, 'https://ror.org/05szw2z23', 'en', 1, 'https://ror.org/05szw2z23 Future University Hakodate å…¬ē«‹ćÆć“ć ć¦ęœŖę„å¤§å­¦'),
(104886, 'https://ror.org/05t8bcz72', 'en', 1, 'https://ror.org/05t8bcz72 Universidad de Alicante Universitat d''Alacant University of Alicante'),
(104887, 'https://ror.org/05t8ct211', 'fr', 1, 'https://ror.org/05t8ct211 Climat, Environnement, Couplages et Incertitudes'),
(104888, 'https://ror.org/05t8w9f79', 'en', 1, 'https://ror.org/05t8w9f79 46 Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны Российской ФеГерации 46th Central Research Institute of the Ministry of Defense of the Russian Federation'),
(104889, 'https://ror.org/05tcbgw10', 'es', 1, 'https://ror.org/05tcbgw10 Universidad Tecnologica de Durango'),
(104890, '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'),
(104891, 'https://ror.org/05tf9r976', 'en', 1, 'https://ror.org/05tf9r976 Chinese People''s Liberation Army 中国人民解放军'),
(104892, 'https://ror.org/05tfp1c72', 'fr', 1, 'https://ror.org/05tfp1c72 Center for Historical Studies Centre de Recherches Historiques'),
(104893, 'https://ror.org/05th6yx34', 'en', 1, 'https://ror.org/05th6yx34 Anhui University 安徽大学'),
(104894, 'https://ror.org/05thdk431', 'fr', 1, 'https://ror.org/05thdk431 Laboratoire ProcƩdƩs, MatƩriaux et Energie Solaire'),
(104895, 'https://ror.org/05tppve82', 'en', 1, 'https://ror.org/05tppve82 Federal Polytechnic, Idah'),
(104896, 'https://ror.org/05tqpe068', 'en', 1, 'https://ror.org/05tqpe068 Gulf States Marine Fisheries Commission'),
(104897, 'https://ror.org/05tr67282', 'fr', 1, 'https://ror.org/05tr67282 HƓpital Necker-Enfants Malades'),
(104898, 'https://ror.org/05trd4x28', 'en', 1, 'https://ror.org/05trd4x28 University of Trento UniversitƠ degli Studi di Trento UniversitƤt Trient UniversitƩ de Trente'),
(104899, 'https://ror.org/05txm7f82', 'en', 1, 'https://ror.org/05txm7f82 Northwest University First Hospital č„æåŒ—å¤§å­¦ē¬¬äø€åŒ»é™¢'),
(104900, 'https://ror.org/05v0fms67', 'fr', 1, 'https://ror.org/05v0fms67 Laboratoire Information GƩnomique et Structurale'),
(104901, 'https://ror.org/05v0p1f11', 'en', 1, 'https://ror.org/05v0p1f11 Munzur University Munzur Üniversitesi'),
(104902, 'https://ror.org/05v0vas53', 'en', 1, 'https://ror.org/05v0vas53 Nassau Community College'),
(104903, 'https://ror.org/05v1amx46', 'en', 1, 'https://ror.org/05v1amx46 Hennepin Healthcare Research Institute'),
(104904, 'https://ror.org/05v2x6b69', 'no_lang_code', 1, 'https://ror.org/05v2x6b69 Imam Khomeini Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų§Ł…Ų§Ł… Ų®Ł…ŪŒŁ†ŪŒ تهران'),
(104905, 'https://ror.org/05v3ekh26', 'en', 1, 'https://ror.org/05v3ekh26 Kazakh Leading Academy of Architecture and Civil Engineering ŠšŠ°Š·Š°Ń…ŃŠŗŠ°Ń Š³Š¾Š»Š¾Š²Š½Š°Ń Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŅšŠ°Š·Š°Ņ› бас ŃÓ™ŃƒŠ»ŠµŃ‚-құрылыс Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(104906, 'https://ror.org/05v3veg52', 'en', 1, 'https://ror.org/05v3veg52 Akatsi College of Education'),
(104907, 'https://ror.org/05v3w8223', 'en', 1, 'https://ror.org/05v3w8223 Field Observatory in Urban Hydrology Observatoire de terrain en hydrologie urbaine'),
(104908, 'https://ror.org/05v5aya38', 'en', 1, 'https://ror.org/05v5aya38 West Mendip Community Hospital'),
(104909, 'https://ror.org/05v5br676', 'id', 1, 'https://ror.org/05v5br676 Politeknik Negeri Bandung'),
(104910, 'https://ror.org/05v62cm79', 'en', 1, 'https://ror.org/05v62cm79 University of Reading'),
(104911, 'https://ror.org/05v7fvh88', 'en', 1, 'https://ror.org/05v7fvh88 Guildhall School of Music and Drama Ysgol Gerdd a Drama y Guildhall'),
(104912, 'https://ror.org/05v9jqt67', 'en', 1, 'https://ror.org/05v9jqt67 South China Agricultural University åŽå—å†œäøšå¤§å­¦'),
(104913, 'https://ror.org/05v9kya57', 'en', 1, 'https://ror.org/05v9kya57 PƔzmƔny PƩter Catholic University PƔzmƔny PƩter Katolikus Egyetem'),
(104914, 'https://ror.org/05vb1zw21', 'es', 1, 'https://ror.org/05vb1zw21 Red Iberoamericana de Neurociencia Cognitiva'),
(104915, 'https://ror.org/05vb5nm66', 'fr', 1, 'https://ror.org/05vb5nm66 PhysioPathologie des Adaptations Nutritionnelles'),
(104916, 'https://ror.org/05vcax154', 'fr', 1, 'https://ror.org/05vcax154 BiomatƩriaux et BioingƩnierie'),
(104917, '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'),
(104918, 'https://ror.org/05ve6g218', 'no_lang_code', 1, 'https://ror.org/05ve6g218 China National Building Materials Group (China)'),
(104919, 'https://ror.org/05vex5m10', 'fr', 1, 'https://ror.org/05vex5m10 PAnTher - Physiopathologie Animale et bioThérapie du muscle et du système nerveux'),
(104920, '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'),
(104921, 'https://ror.org/05vjdsn22', 'fr', 1, 'https://ror.org/05vjdsn22 Institut Pprime'),
(104922, 'https://ror.org/05vmz5070', 'en', 1, 'https://ror.org/05vmz5070 University of Szczecin Uniwersytet Szczeciński'),
(104923, 'https://ror.org/05vn9ks38', 'en', 1, 'https://ror.org/05vn9ks38 Meningitis Now'),
(104924, 'https://ror.org/05vq65d72', 'en', 1, 'https://ror.org/05vq65d72 United States National Committee of the International Council on Monuments and Sites'),
(104925, 'https://ror.org/05vrs0r17', 'en', 1, 'https://ror.org/05vrs0r17 SUNY Fredonia'),
(104926, 'https://ror.org/05vt9rv16', 'en', 1, 'https://ror.org/05vt9rv16 European Space Research Institute'),
(104927, 'https://ror.org/05vwjwk52', 'en', 1, 'https://ror.org/05vwjwk52 Aisyah University'),
(104928, 'https://ror.org/05vzw3663', 'en', 1, 'https://ror.org/05vzw3663 British Society of Interventional Radiology'),
(104929, 'https://ror.org/05w0e5j23', 'en', 1, 'https://ror.org/05w0e5j23 Wuhan Polytechnic University 武汉轻巄大学'),
(104930, 'https://ror.org/05w22af52', 'en', 1, 'https://ror.org/05w22af52 University of Wisconsin–Oshkosh UniversitĆ© du Wisconsin–Oshkosh'),
(104931, 'https://ror.org/05w482q29', 'fr', 0, 'https://ror.org/05w482q29 AMIS - Laboratoire d''anthropologie moléculaire et imagerie de synthèse'),
(104932, 'https://ror.org/05w54sd08', 'en', 1, 'https://ror.org/05w54sd08 North West Regional College'),
(104933, 'https://ror.org/05w60wm13', 'en', 1, 'https://ror.org/05w60wm13 Coast Mountain College'),
(104934, 'https://ror.org/05w630g93', 'en', 1, 'https://ror.org/05w630g93 PG&E Corporation, PG&E Corporation (United States)'),
(104935, 'https://ror.org/05w6qh410', 'en', 1, 'https://ror.org/05w6qh410 Royal National Institute for Deaf People'),
(104936, '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Ʃ'),
(104937, 'https://ror.org/05w87rc74', 'fr', 1, 'https://ror.org/05w87rc74 UMS Saint-Louis'),
(104938, 'https://ror.org/05w9qrp28', 'fr', 1, 'https://ror.org/05w9qrp28 Modélisation, information et systèmes'),
(104939, 'https://ror.org/05wcstg80', 'en', 1, 'https://ror.org/05wcstg80 National Applied Research Laboratories č²”åœ˜ę³•äŗŗåœ‹å®¶åÆ¦é©—ē ”ē©¶é™¢'),
(104940, 'https://ror.org/05wcwnx35', 'en', 1, 'https://ror.org/05wcwnx35 Brooklyn Academy of Music'),
(104941, 'https://ror.org/05wf2ga96', 'en', 1, 'https://ror.org/05wf2ga96 New York Genome Center'),
(104942, 'https://ror.org/05wf30g94', 'en', 1, 'https://ror.org/05wf30g94 Creighton University'),
(104943, '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'),
(104944, 'https://ror.org/05wg1m734', 'en', 1, 'https://ror.org/05wg1m734 Radboud University Medical Center Radboudumc'),
(104945, 'https://ror.org/05whq8x35', 'fr', 1, 'https://ror.org/05whq8x35 Laboratoire Parole et Langage'),
(104946, 'https://ror.org/05whrjc31', 'fr', 1, 'https://ror.org/05whrjc31 Institut Charles Sadron, Institut charles-sadron'),
(104947, 'https://ror.org/05wjc8a85', 'fr', 1, 'https://ror.org/05wjc8a85 Laboratoire Universitaire de Recherche en Production AutomatisƩe'),
(104948, 'https://ror.org/05wnh3t63', 'en', 1, 'https://ror.org/05wnh3t63 Government of the United Kingdom'),
(104949, 'https://ror.org/05wqg4606', 'fr', 0, 'https://ror.org/05wqg4606 Laboratoire Pierre Aigrain Pierre Aigrain Laboratory'),
(104950, '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'),
(104951, 'https://ror.org/05wtfef22', 'en', 1, 'https://ror.org/05wtfef22 Royal Central School of Speech and Drama'),
(104952, 'https://ror.org/05wwcw481', 'en', 1, 'https://ror.org/05wwcw481 Bournemouth University'),
(104953, 'https://ror.org/05wwzbv21', 'en', 0, 'https://ror.org/05wwzbv21 NFDI4Chem'),
(104954, 'https://ror.org/05wyqp450', 'hu', 1, 'https://ror.org/05wyqp450 Apor Vilmos Catholic College Apor Vilmos Katolikus Főiskola'),
(104955, 'https://ror.org/05wzh1m37', 'fr', 1, 'https://ror.org/05wzh1m37 Institut de Chimie MolƩculaire et des MatƩriaux d''Orsay'),
(104956, 'https://ror.org/05wzw4r89', 'fr', 1, 'https://ror.org/05wzw4r89 Laboratoire MƩmoire, Cerveau et Cognition'),
(104957, 'https://ror.org/05x2td559', 'en', 1, 'https://ror.org/05x2td559 Tianjin Normal University 天擄师范大学'),
(104958, 'https://ror.org/05x2w9m74', 'en', 1, 'https://ror.org/05x2w9m74 Amrutvahini College of Engineering'),
(104959, 'https://ror.org/05x3amg60', 'en', 1, 'https://ror.org/05x3amg60 Cambridge IVF'),
(104960, 'https://ror.org/05x4mwp36', 'en', 0, 'https://ror.org/05x4mwp36 Bethany College'),
(104961, 'https://ror.org/05x5km989', 'fr', 1, 'https://ror.org/05x5km989 Fondation Pour la Recherche Sur la BiodiversitƩ French Foundation for Biodiversity Research'),
(104962, 'https://ror.org/05x6axq16', 'en', 1, 'https://ror.org/05x6axq16 Moscow Institute of Psychoanalysis Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психоанализа'),
(104963, 'https://ror.org/05x7bg352', 'es', 1, 'https://ror.org/05x7bg352 General Royalties System Sistema General de RegalĆ­as de Colombia'),
(104964, 'https://ror.org/05x85js44', 'en', 1, 'https://ror.org/05x85js44 Assumption College of Davao'),
(104965, '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'),
(104966, 'https://ror.org/05xanhp90', 'fr', 1, 'https://ror.org/05xanhp90 Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète'),
(104967, 'https://ror.org/05xc6tc48', 'en', 1, 'https://ror.org/05xc6tc48 Birmingham Metropolitan College'),
(104968, 'https://ror.org/05xdft911', 'en', 1, 'https://ror.org/05xdft911 Microsoft Research MontrƩal (Canada)'),
(104969, 'https://ror.org/05xedqd83', 'es', 1, 'https://ror.org/05xedqd83 Universidad Regional Amazónica IKIAM'),
(104970, 'https://ror.org/05xefg082', 'no_lang_code', 1, 'https://ror.org/05xefg082 University of Primorska UniversitĆ  del Litorale Univerza na Primorskem'),
(104971, 'https://ror.org/05xjevr11', 'en', 1, 'https://ror.org/05xjevr11 North Minzu University åŒ—ę–¹ę°‘ę—å¤§å­¦'),
(104972, 'https://ror.org/05xk4yb78', 'fr', 1, 'https://ror.org/05xk4yb78 Analyses des eaux, sols et vƩgƩtaux Water, Soil and Plant Analysis'),
(104973, 'https://ror.org/05xm08015', 'en', 1, 'https://ror.org/05xm08015 Technical University of KoŔice TechnickÔ univerzita v KoŔiciach'),
(104974, 'https://ror.org/05xpvk416', 'en', 1, 'https://ror.org/05xpvk416 Instituto Nacional de EstƔndares y Tecnologƭa National Institute of Standards and Technology'),
(104975, 'https://ror.org/05xr3b330', 'fr', 1, 'https://ror.org/05xr3b330 Institut des Sciences MolƩculaires de Marseille'),
(104976, 'https://ror.org/05xrx2377', 'fr', 1, 'https://ror.org/05xrx2377 Laboratoire Parisien de Psychologie Sociale'),
(104977, 'https://ror.org/05xs9wh57', 'es', 1, 'https://ror.org/05xs9wh57 Fundación Renal'),
(104978, 'https://ror.org/05xsjkb63', 'no_lang_code', 1, 'https://ror.org/05xsjkb63 Xijing University'),
(104979, 'https://ror.org/05xv2md42', 'en', 1, 'https://ror.org/05xv2md42 Humber College'),
(104980, 'https://ror.org/05xvt9f17', 'en', 1, 'https://ror.org/05xvt9f17 Leiden University Medical Center Leids Universitair Medisch Centrum'),
(104981, 'https://ror.org/05xwv2r69', 'id', 1, 'https://ror.org/05xwv2r69 Institut Teknologi dan Sains Mandala'),
(104982, 'https://ror.org/05xx77y52', 'es', 1, 'https://ror.org/05xx77y52 Centro de Investigaciones Energéticas, Medioambientales y Tecnológicas'),
(104983, 'https://ror.org/05xxb2f26', 'fr', 1, 'https://ror.org/05xxb2f26 Genetics, Functional Genomics and Biotechnology GƩnƩtique, GƩnomique Fonctionnelle et Biotechnologies'),
(104984, 'https://ror.org/05y1c5v47', 'en', 1, 'https://ror.org/05y1c5v47 The Small Earth Nepal'),
(104985, 'https://ror.org/05y441t49', 'fr', 1, 'https://ror.org/05y441t49 Centre d''Etudes Hispaniques d''Amiens'),
(104986, 'https://ror.org/05y503v71', 'fr', 1, 'https://ror.org/05y503v71 Institut National de la Recherche Agronomique'),
(104987, 'https://ror.org/05y5s3h28', 'fr', 1, 'https://ror.org/05y5s3h28 Plant Health Institute de Montpellier'),
(104988, 'https://ror.org/05y5xxp70', 'pt', 1, 'https://ror.org/05y5xxp70 Fundacao Escola Superior da Defensoria Publica do Estado do Rio de Janeiro'),
(104989, 'https://ror.org/05y5zrm38', 'en', 1, 'https://ror.org/05y5zrm38 Scottish Salmon Producers Organisation'),
(104990, 'https://ror.org/05y76vp22', 'fr', 1, 'https://ror.org/05y76vp22 Institut de recherche mathƩmatique de Rennes Mathematics Research Institute of Rennes'),
(104991, 'https://ror.org/05yc77b46', 'en', 1, 'https://ror.org/05yc77b46 Universidad de Córdoba Universitat de Còrdova University of Córdoba'),
(104992, 'https://ror.org/05ye64x65', 'fr', 1, 'https://ror.org/05ye64x65 Imagerie X en ostƩo-articulaire pour la recherche'),
(104993, 'https://ror.org/05yeqc316', 'en', 1, 'https://ror.org/05yeqc316 Zhenjiang College é•‡ę±Ÿåø‚é«˜ē­‰äø“ē§‘å­¦ę ”'),
(104994, 'https://ror.org/05yhca997', 'no_lang_code', 1, 'https://ror.org/05yhca997 Continental (United States)'),
(104995, 'https://ror.org/05yk70j08', 'en', 1, 'https://ror.org/05yk70j08 Equifax, Equifax (United States)'),
(104996, 'https://ror.org/05ykp4255', 'no_lang_code', 1, 'https://ror.org/05ykp4255 Epson (United States)'),
(104997, 'https://ror.org/05ynqks44', 'es', 1, 'https://ror.org/05ynqks44 Universidad Ciudadana de Nuevo León'),
(104998, 'https://ror.org/05ynr3m75', 'it', 1, 'https://ror.org/05ynr3m75 IRCCS Eugenio Medea'),
(104999, 'https://ror.org/05yqeks58', 'en', 1, 'https://ror.org/05yqeks58 The Centre for Reproductive & Genetic Health'),
(105000, 'https://ror.org/05yqfzf35', 'fr', 1, 'https://ror.org/05yqfzf35 UMR GƩographie-citƩs'),
(105001, 'https://ror.org/0001k0954', 'en', 1, 'https://ror.org/0001k0954 All Japan Labor Welfare Foundation äø€čˆ¬č²”å›£ę³•äŗŗå…Øę—„ęœ¬åŠ“åƒē¦ē„‰å”ä¼š'),
(105002, 'https://ror.org/0001ws297', 'pt', 1, 'https://ror.org/0001ws297 Centro para o Desenvolvimento RƔpido e Sustentado de Produto'),
(105003, 'https://ror.org/0003e4m70', 'en', 1, 'https://ror.org/0003e4m70 Hull York Medical School'),
(105004, '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 Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ł†Ł‚Ł„ Ų§Ł„ŲØŲ­Ų±ŁŠ'),
(105005, 'https://ror.org/0004wsx81', 'en', 1, 'https://ror.org/0004wsx81 Telkom University'),
(105006, 'https://ror.org/000548d77', 'en', 1, 'https://ror.org/000548d77 Taraba State University'),
(105007, 'https://ror.org/0005yy970', 'en', 1, 'https://ror.org/0005yy970 Federal University of Health Sciences Azare'),
(105008, 'https://ror.org/0008d4756', 'en', 1, 'https://ror.org/0008d4756 Al-Hikmah University'),
(105009, 'https://ror.org/000a8qk84', 'en', 1, 'https://ror.org/000a8qk84 National University Pamantasang Pambansa'),
(105010, 'https://ror.org/000dswa46', 'en', 1, 'https://ror.org/000dswa46 W. M. Keck Foundation'),
(105011, 'https://ror.org/000ehr937', 'fr', 1, 'https://ror.org/000ehr937 Laboratoire de MƩtƩorologie Dynamique'),
(105012, 'https://ror.org/000fdg564', 'en', 1, 'https://ror.org/000fdg564 Kementerian Kelautan dan Perikanan Ministry of Marine Affairs and Fisheries'),
(105013, 'https://ror.org/000h6jb29', 'en', 1, 'https://ror.org/000h6jb29 Helmholtz Centre for Environmental Research Helmholtz-Zentrum für Umweltforschung'),
(105014, 'https://ror.org/000hskt11', 'en', 1, 'https://ror.org/000hskt11 The Institute of Medical Science, Asahi Life Foundation å…¬ē›Šč²”å›£ę³•äŗŗęœę—„ē”Ÿå‘½ęˆäŗŗē—…ē ”ē©¶ę‰€ 附属医院'),
(105015, 'https://ror.org/000jtc944', 'en', 1, 'https://ror.org/000jtc944 Henan University of Economic and Law ę²³å—č“¢ē»å­¦é™¢'),
(105016, 'https://ror.org/000k1q888', 'en', 1, 'https://ror.org/000k1q888 Nederlands Instituut voor Radioastronomie Netherlands Institute for Radio Astronomy'),
(105017, 'https://ror.org/000n1k313', 'en', 1, 'https://ror.org/000n1k313 Sylhet Agricultural University ą¦øą¦æą¦²ą§‡ą¦Ÿ ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(105018, 'https://ror.org/000nnmz85', 'en', 1, 'https://ror.org/000nnmz85 Ministry of Environment Protection and Agriculture of Georgia įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ’įƒįƒ įƒ”įƒ›įƒįƒ” įƒ“įƒįƒŖįƒ•įƒ˜įƒ”įƒ įƒ“įƒ įƒ”įƒįƒ¤įƒšįƒ˜įƒ” įƒ›įƒ”įƒ£įƒ įƒœįƒ”įƒįƒ‘įƒ˜įƒ” įƒ”įƒįƒ›įƒ˜įƒœįƒ˜įƒ”įƒ¢įƒ įƒ'),
(105019, 'https://ror.org/000qg0t28', 'en', 0, 'https://ror.org/000qg0t28 COMTES FHT a.s., Complete Technological Service - Forming Heat Treatment'),
(105020, 'https://ror.org/000rfqn88', 'en', 1, 'https://ror.org/000rfqn88 Amagasaki Chuo Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗäø­å¤®ä¼šå°¼å“Žäø­å¤®ē—…é™¢'),
(105021, 'https://ror.org/000vj2f52', 'en', 1, 'https://ror.org/000vj2f52 Universidad de Montemorelos University of Montemorelos'),
(105022, 'https://ror.org/000w0ky84', 'es', 1, 'https://ror.org/000w0ky84 Instituto de Investigaciones Agropecuarias'),
(105023, 'https://ror.org/000w8yc17', 'en', 1, 'https://ror.org/000w8yc17 Okinawa Prefectural Institute of Animal Health ę²–ēø„ēœŒå®¶ē•œč”›ē”Ÿč©¦éØ“å “'),
(105024, 'https://ror.org/000yk5876', 'en', 1, 'https://ror.org/000yk5876 Sapporo City University ęœ­å¹Œåø‚ē«‹å¤§å­¦'),
(105025, '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 Univerza za glasbo in upodabljajoče umetnosti Dunaj'),
(105026, 'https://ror.org/0016chc90', 'pt', 1, 'https://ror.org/0016chc90 Instituto das Florestas e Conservação da Natureza'),
(105027, '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'),
(105028, 'https://ror.org/00183pc12', 'en', 1, 'https://ror.org/00183pc12 Kharkiv Institute of Physics and Technology Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ фізико-технічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(105029, 'https://ror.org/001bvc968', 'no_lang_code', 1, 'https://ror.org/001bvc968 Canadian Light Source (Canada) Centre Canadien de Rayonnement Synchrotron'),
(105030, 'https://ror.org/001c2sn75', 'en', 1, 'https://ror.org/001c2sn75 London Business School Ysgol Fusnes Llundain'),
(105031, 'https://ror.org/001cahp29', 'pt', 1, 'https://ror.org/001cahp29 Autoridade Nacional de Comunicacoes'),
(105032, 'https://ror.org/001chpb97', 'en', 1, 'https://ror.org/001chpb97 Politeknik Ungku Omar Ungku Omar Polytechnic'),
(105033, 'https://ror.org/001drnv35', 'en', 1, 'https://ror.org/001drnv35 Jadara University Ų¬Ų§Ł…Ų¹Ų© Ų¬ŲÆŲ§Ų±Ų§'),
(105034, 'https://ror.org/001et3313', 'en', 1, 'https://ror.org/001et3313 Mining and Metallurgy Institute Bor Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Ń€ŃƒŠ“Š°Ń€ŃŃ‚Š²Š¾ Šø Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³ŠøŃ˜Ńƒ Бор'),
(105035, 'https://ror.org/001g2fj96', 'en', 1, 'https://ror.org/001g2fj96 American University of Sharjah الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في الؓارقة دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ ؓارجه'),
(105036, 'https://ror.org/001m1hv61', 'en', 1, 'https://ror.org/001m1hv61 Grand Valley State University'),
(105037, 'https://ror.org/001mf9v16', 'en', 1, 'https://ror.org/001mf9v16 University of Gezira Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬Ų²ŁŠŲ±Ų©'),
(105038, 'https://ror.org/001my6k32', 'en', 1, 'https://ror.org/001my6k32 Akita Prefectural Institute of Fisheries ē§‹ē”°ēœŒę°“ē”£ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(105039, 'https://ror.org/001n2z339', 'ro', 1, 'https://ror.org/001n2z339 Asociatia Românã a Cãrnii'),
(105040, 'https://ror.org/001nta019', 'fr', 1, 'https://ror.org/001nta019 INSA Strasbourg Institut National des Sciences AppliquƩes de Strasbourg'),
(105041, 'https://ror.org/001p58g30', 'en', 1, 'https://ror.org/001p58g30 Institut za zaŔtitu bilja i životnu sredinu Institute for Plant Protection and Environment'),
(105042, 'https://ror.org/001pe5g24', 'en', 1, 'https://ror.org/001pe5g24 University of North Georgia'),
(105043, 'https://ror.org/001qst305', 'en', 1, 'https://ror.org/001qst305 Kalamazoo College'),
(105044, 'https://ror.org/001rdde17', 'en', 1, 'https://ror.org/001rdde17 Hamm-Lippstadt University of Applied Sciences Hochschule Hamm-Lippstadt'),
(105045, 'https://ror.org/001s04270', 'en', 1, 'https://ror.org/001s04270 Endocrinology and Metabolism Molecular-Cellular Sciences Institute Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… Ų³Ł„ŁˆŁ„ŪŒ و Ł…ŁˆŁ„Ś©ŁˆŁ„ŪŒ ŲŗŲÆŲÆ'),
(105046, 'https://ror.org/001skmk61', 'en', 1, 'https://ror.org/001skmk61 Drake University Universidad Drake'),
(105047, 'https://ror.org/001vtka31', 'en', 0, 'https://ror.org/001vtka31 Instituto de Estudos Superiores Militares Portuguese Joint Command and Staff College'),
(105048, 'https://ror.org/001xhss06', 'en', 1, 'https://ror.org/001xhss06 Directorate for Biological Sciences'),
(105049, 'https://ror.org/001yc7927', 'en', 1, 'https://ror.org/001yc7927 Hyogo Medical University å…µåŗ«åŒ»ē§‘å¤§å­¦'),
(105050, 'https://ror.org/001ydh096', 'en', 1, 'https://ror.org/001ydh096 Da Nang University of Technology TrĘ°į»ng ĐẔi hį»c BĆ”ch khoa, ĐẔi hį»c ĐƠ Nįŗµng'),
(105051, 'https://ror.org/0020c4y69', 'pt', 1, 'https://ror.org/0020c4y69 Associação BIOPOLIS - Rede de Investigação em Biodiversidade e Biologia Evolutiva'),
(105052, 'https://ror.org/0020pds25', 'en', 1, 'https://ror.org/0020pds25 Kyoto Koka Women''s College äŗ¬éƒ½å…‰čÆå„³å­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(105053, 'https://ror.org/0020snb74', 'fr', 1, 'https://ror.org/0020snb74 Ɖcole de Technologie SupĆ©rieure'),
(105054, 'https://ror.org/00214hk10', 'en', 1, 'https://ror.org/00214hk10 Roointan Arash Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¬Ų§Ł…Ų¹ ŲØŲ§Ł†ŁˆŲ§Ł† Ų¢Ų±Ų“'),
(105055, 'https://ror.org/0022nd079', 'en', 1, 'https://ror.org/0022nd079 Indian Institute of Technology Guwahati ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ąÆą®µą®•ą®¾ą®¤ąÆą®¤ą®æ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“—ąµą“µą“¹ą“¾ą“Ÿąµą“Ÿą“æ'),
(105056, 'https://ror.org/0022qva30', 'en', 1, 'https://ror.org/0022qva30 Escuela de Medicina de Ponce Ponce Health Sciences University'),
(105057, 'https://ror.org/00259hn89', 'en', 1, 'https://ror.org/00259hn89 Miyoshi Central Hospital 市立三欔中央病院'),
(105058, 'https://ror.org/0025mvn63', 'en', 1, 'https://ror.org/0025mvn63 National Commission for Museums and Monuments'),
(105059, 'https://ror.org/0027cag10', 'en', 1, 'https://ror.org/0027cag10 Danylo Halytsky Lviv National Medical University Lwowski Narodowy Uniwersytet Medyczny im. Daniela Halickiego Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Данила Галицкого Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Данила Š“Š°Š»ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(105060, 'https://ror.org/0028wg630', 'en', 1, 'https://ror.org/0028wg630 Global Environmental Forum äø€čˆ¬č²”å›£ę³•äŗŗåœ°ēƒćƒ»äŗŗé–“ē’°å¢ƒćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(105061, 'https://ror.org/002b4pj73', 'en', 1, 'https://ror.org/002b4pj73 Japan Foundation for AIDS Prevention å…¬ē›Šč²”å›£ę³•äŗŗć‚Øć‚¤ć‚ŗäŗˆé˜²č²”å›£'),
(105062, 'https://ror.org/002b5je16', 'pt', 1, 'https://ror.org/002b5je16 Centro de Estudos Florestais'),
(105063, 'https://ror.org/002b8we25', 'en', 1, 'https://ror.org/002b8we25 Center for Water Quality Research مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ کیفیت Ų¢ŲØ'),
(105064, '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'),
(105065, 'https://ror.org/002g5jp68', 'en', 1, 'https://ror.org/002g5jp68 Mute'),
(105066, 'https://ror.org/002ghjd91', 'en', 1, 'https://ror.org/002ghjd91 National Institute of Materials Physics'),
(105067, 'https://ror.org/002hgm057', 'no_lang_code', 1, 'https://ror.org/002hgm057 Pertamina (Indonesia)'),
(105068, 'https://ror.org/002hy1z05', 'en', 1, 'https://ror.org/002hy1z05 Japan Hydrographic Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę°“č·Æå”ä¼š'),
(105069, 'https://ror.org/002jegx53', 'id', 1, 'https://ror.org/002jegx53 Universitas Nusantara PGRI Kediri'),
(105070, 'https://ror.org/002k0xe08', 'en', 1, 'https://ror.org/002k0xe08 Sensho-kai Eye Institute åŒ»ē™‚ę³•äŗŗåƒē…§ä¼šåƒåŽŸēœ¼ē§‘åŒ»é™¢'),
(105071, 'https://ror.org/002n47361', 'pt', 1, 'https://ror.org/002n47361 APDSI'),
(105072, 'https://ror.org/002q01z48', 'no_lang_code', 1, 'https://ror.org/002q01z48 Access 2 Perspectives'),
(105073, 'https://ror.org/002t25c44', 'fr', 1, 'https://ror.org/002t25c44 Paris 1 PanthƩon-Sorbonne University UniversitƩ Paris 1 PanthƩon-Sorbonne'),
(105074, 'https://ror.org/002t9r032', 'fr', 1, 'https://ror.org/002t9r032 CollĆØge international des sciences territoriales'),
(105075, 'https://ror.org/002tchr49', 'en', 1, 'https://ror.org/002tchr49 Jawaharlal Nehru Technological University, Hyderabad ą®œą®µą®•ą®°ąÆą®²ą®¾ą®²ąÆ நேரு ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®µą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ సాంకేతిక ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(105076, 'https://ror.org/002tq9174', 'en', 1, 'https://ror.org/002tq9174 Akashio Research Institute of Kagawa Prefecture é¦™å·ēœŒčµ¤ę½®ē ”ē©¶ę‰€'),
(105077, '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'),
(105078, 'https://ror.org/002wcjr61', 'en', 1, 'https://ror.org/002wcjr61 South-West University "Neofit Rilski" ЮгозапаГен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŠµŠ¾Ń„ŠøŃ‚ Рилски'),
(105079, 'https://ror.org/002wgkd29', 'en', 1, 'https://ror.org/002wgkd29 Association for Health Economics Research and Social Insurance and Welfare äø€čˆ¬č²”å›£ę³•äŗŗåŒ»ē™‚ēµŒęøˆē ”ē©¶ćƒ»ē¤¾ä¼šäæé™ŗē¦ē„‰å”ä¼š'),
(105080, 'https://ror.org/002zghs56', 'fr', 0, 'https://ror.org/002zghs56 HƓpital du Saint-Sacrement');
INSERT INTO `rors` VALUES
(105081, 'https://ror.org/0030ewy42', 'no_lang_code', 1, 'https://ror.org/0030ewy42 Iberdrola (Spain)'),
(105082, 'https://ror.org/003109y17', 'en', 1, 'https://ror.org/003109y17 University of Cagliari UniversitƠ degli Studi di Cagliari UniversitƩ de Cagliari'),
(105083, 'https://ror.org/00316zc91', 'en', 1, 'https://ror.org/00316zc91 Wollega University'),
(105084, 'https://ror.org/0031fc687', 'en', 1, 'https://ror.org/0031fc687 THE Institute Of Clinical Psychiatry äø€čˆ¬č²”å›£ę³•äŗŗē²¾ē„žåŒ»å­¦ē ”ē©¶ę‰€'),
(105085, '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'),
(105086, 'https://ror.org/00340yn33', 'en', 1, 'https://ror.org/00340yn33 Keele University'),
(105087, 'https://ror.org/0034jpk25', 'es', 1, 'https://ror.org/0034jpk25 Instituto Universitario de La Paz'),
(105088, 'https://ror.org/0034tbg85', 'en', 1, 'https://ror.org/0034tbg85 Larbi Ben M''hidi University of Oum El Bouaghi Ų¬Ų§Ł…Ų¹Ų© أم Ų§Ł„ŲØŁˆŲ§Ł‚ŁŠ'),
(105089, 'https://ror.org/0036b6n81', 'es', 1, 'https://ror.org/0036b6n81 Universidad Católica de Cuenca'),
(105090, 'https://ror.org/0036c6m19', 'en', 1, 'https://ror.org/0036c6m19 Instituto Federal Goiano'),
(105091, 'https://ror.org/0036p5w23', 'en', 1, 'https://ror.org/0036p5w23 Indian Institute of Technology Gandhinagar iit ni jankari ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®¾ą®ØąÆą®¤ą®æą®Øą®•ą®°ąÆ'),
(105092, 'https://ror.org/0037bkn51', 'en', 1, 'https://ror.org/0037bkn51 Sanyo Gakuen Junior College å±±é™½å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(105093, 'https://ror.org/0037djy87', 'en', 1, 'https://ror.org/0037djy87 University of Maragheh دانؓگاه مراغه'),
(105094, 'https://ror.org/0037m9489', 'en', 1, 'https://ror.org/0037m9489 Marondera University of Agricultural Sciences and Technology'),
(105095, 'https://ror.org/00396tw82', 'en', 1, 'https://ror.org/00396tw82 Kohsei Chuo General Hospital å…Øå›½åœŸęœØå»ŗēÆ‰å›½ę°‘å„åŗ·äæé™ŗēµ„åˆē·åˆē—…é™¢åŽšē”Ÿäø­å¤®ē—…é™¢'),
(105096, 'https://ror.org/0039wpa60', 'en', 1, 'https://ror.org/0039wpa60 Ambedkar University Delhi ą¤…ą¤®ą„ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(105097, 'https://ror.org/003ez4w63', 'es', 1, 'https://ror.org/003ez4w63 Hospital Son Llatzer'),
(105098, 'https://ror.org/003f4pg83', 'de', 1, 'https://ror.org/003f4pg83 FH Campus Wien'),
(105099, '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'),
(105100, 'https://ror.org/003qt4p19', 'pt', 1, 'https://ror.org/003qt4p19 Federal University of Pampa Universidade Federal do Pampa'),
(105101, 'https://ror.org/003r76697', 'de', 1, 'https://ror.org/003r76697 Nordakademie'),
(105102, 'https://ror.org/003rfsp33', 'en', 1, 'https://ror.org/003rfsp33 Nationwide Children''s Hospital'),
(105103, 'https://ror.org/0040cz635', 'en', 1, 'https://ror.org/0040cz635 Samford University'),
(105104, 'https://ror.org/0042xzm63', 'en', 1, 'https://ror.org/0042xzm63 NOAA RESTORE Science Program'),
(105105, 'https://ror.org/0042ytd14', 'no_lang_code', 1, 'https://ror.org/0042ytd14 Shizuoka Cancer Center é™å²”ēœŒē«‹é™å²”ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(105106, 'https://ror.org/0044png46', 'en', 1, 'https://ror.org/0044png46 Tottori Agricultural Experiment Station é³„å–ēœŒč¾²ę„­č©¦éØ“å “'),
(105107, 'https://ror.org/0044w3h23', 'en', 1, 'https://ror.org/0044w3h23 Heidelberg University of Education PƤdagogische Hochschule Heidelberg'),
(105108, 'https://ror.org/0046ap498', 'en', 1, 'https://ror.org/0046ap498 Korea Research Institute of Ships and Ocean Engineering'),
(105109, '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'),
(105110, 'https://ror.org/004713342', 'en', 1, 'https://ror.org/004713342 Japanese Society for Rehabilitation of Persons with Disabilities å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éšœå®³č€…ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å”ä¼š'),
(105111, 'https://ror.org/0047dy656', 'en', 1, 'https://ror.org/0047dy656 Stichting Arab West Foundation'),
(105112, 'https://ror.org/0047q0d34', 'en', 1, 'https://ror.org/0047q0d34 South African Theological Seminary'),
(105113, 'https://ror.org/004af2v94', 'en', 1, 'https://ror.org/004af2v94 ORT Braude College המכללה ×”××§×“×ž×™×Ŗ להנדהה ××•×Ø×˜ בראודה'),
(105114, 'https://ror.org/004bcc434', 'en', 1, 'https://ror.org/004bcc434 Fukuoka City Education Center ē¦å²”åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(105115, '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'),
(105116, 'https://ror.org/004h7p317', 'pt', 1, 'https://ror.org/004h7p317 Ordem dos Psicólogos Portugueses'),
(105117, 'https://ror.org/004j8hp41', 'en', 1, 'https://ror.org/004j8hp41 Community Action Tenants Union'),
(105118, 'https://ror.org/004jgvp16', 'en', 1, 'https://ror.org/004jgvp16 Mimasaka Junior College ē¾Žä½œå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(105119, 'https://ror.org/004jvxr73', 'pt', 1, 'https://ror.org/004jvxr73 Centro de Reabilitação Profissional de Gaia'),
(105120, 'https://ror.org/004mgh374', 'en', 1, 'https://ror.org/004mgh374 Kofu Municipal Hospital åø‚ē«‹ē”²åŗœē—…é™¢'),
(105121, 'https://ror.org/004ngv535', 'en', 1, 'https://ror.org/004ngv535 Sapporo Yamanoue Hospital åŒ»ē™‚ę³•äŗŗęœ­å¹Œå±±ć®äøŠē—…é™¢'),
(105122, 'https://ror.org/004nn4n27', 'en', 1, 'https://ror.org/004nn4n27 MSD (UK) Limited, MSD (UK) Limited (United Kingdom)'),
(105123, 'https://ror.org/004pc5924', 'en', 1, 'https://ror.org/004pc5924 ITM University ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(105124, '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'),
(105125, 'https://ror.org/004q9wj75', 'en', 1, 'https://ror.org/004q9wj75 MSD (Peru)'),
(105126, 'https://ror.org/004r9h172', 'en', 1, 'https://ror.org/004r9h172 KĆøbenhavns ProfessionshĆøjskole University College Copenhagen'),
(105127, 'https://ror.org/004rbbw49', 'en', 1, 'https://ror.org/004rbbw49 Hebei Normal University ę²³åŒ—åøˆčŒƒå¤§å­¦'),
(105128, 'https://ror.org/004s85t07', 'en', 1, 'https://ror.org/004s85t07 International Organization for Standardization'),
(105129, 'https://ror.org/004t6v776', 'en', 1, 'https://ror.org/004t6v776 The Korean Association of Internal Medicine ėŒ€ķ•œė‚“ź³¼ķ•™ķšŒ'),
(105130, 'https://ror.org/004x1qr23', 'en', 1, 'https://ror.org/004x1qr23 Coast Community College District'),
(105131, 'https://ror.org/004y8wk30', 'en', 1, 'https://ror.org/004y8wk30 QIMR Berghofer Medical Research Institute'),
(105132, 'https://ror.org/004ymxd45', 'en', 1, 'https://ror.org/004ymxd45 MIT World Peace University ą¤ą¤®ą¤†ą¤Æą¤Ÿą„€ ą¤µą¤°ą„ą¤²ą„ą¤” ą¤Ŗą„€ą¤ø ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(105133, 'https://ror.org/004zvfq85', 'es', 1, 'https://ror.org/004zvfq85 Estacion Experimental Agraria Pucallpa - INIA'),
(105134, 'https://ror.org/0050cbz19', 'fr', 1, 'https://ror.org/0050cbz19 ModƩlisation SystƩmique AppliquƩe aux Ruminants'),
(105135, 'https://ror.org/0050vmv35', 'en', 1, 'https://ror.org/0050vmv35 Deutsches Institut für Wirtschaftsforschung German Institute for Economic Research'),
(105136, 'https://ror.org/0051bz348', 'en', 1, 'https://ror.org/0051bz348 Machida Municipal Hospital 町田市民病院'),
(105137, 'https://ror.org/0052mmx10', 'en', 1, 'https://ror.org/0052mmx10 Bharati Vidyapeeth Deemed University ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(105138, 'https://ror.org/0053cs676', 'en', 1, 'https://ror.org/0053cs676 Research Institute for Urban & Environmental Development äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é–‹ē™ŗę§‹ęƒ³ē ”ē©¶ę‰€'),
(105139, 'https://ror.org/0053fb273', 'en', 1, 'https://ror.org/0053fb273 Faculty of Medicine of Sfax'),
(105140, 'https://ror.org/0053vmf39', 'en', 1, 'https://ror.org/0053vmf39 Astana International University Астана халықаралық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Астана'),
(105141, 'https://ror.org/0054s2h05', 'en', 0, 'https://ror.org/0054s2h05 Danish Cardiovascular Research Academy Dansk KardiovaskulƦrt Forskningsakademi'),
(105142, 'https://ror.org/00568z619', 'es', 1, 'https://ror.org/00568z619 Instituto Interdisciplinario de Ciencias BƔsicas'),
(105143, 'https://ror.org/005781934', 'en', 1, 'https://ror.org/005781934 Baylor University'),
(105144, 'https://ror.org/0058xdx33', 'en', 1, 'https://ror.org/0058xdx33 Japan Welding Society äø€čˆ¬ē¤¾å›£ę³•äŗŗęŗ¶ęŽ„å­¦ä¼š'),
(105145, 'https://ror.org/005aghs32', 'en', 1, 'https://ror.org/005aghs32 Taylor University'),
(105146, 'https://ror.org/005bvs909', 'en', 1, 'https://ror.org/005bvs909 The Royal Melbourne Hospital'),
(105147, 'https://ror.org/005bw2d06', 'en', 1, 'https://ror.org/005bw2d06 University of Port Harcourt YunifÔsítì ìlú Ebute Harcourt'),
(105148, 'https://ror.org/005cqsz63', 'en', 1, 'https://ror.org/005cqsz63 Hungarian Research Centre for Linguistics NyelvtudomÔnyi Kutatóközpont'),
(105149, 'https://ror.org/005edt527', 'en', 1, 'https://ror.org/005edt527 Capital Normal University é¦–éƒ½åøˆčŒƒå¤§å­¦'),
(105150, 'https://ror.org/005f5hv41', 'en', 1, 'https://ror.org/005f5hv41 California State University, Northridge UniversitĆ© d''Ɖtat de californie Ć  northridge'),
(105151, 'https://ror.org/005hx4g64', 'en', 1, 'https://ror.org/005hx4g64 The Salt Industry Center of Japan å…¬ē›Šč²”å›£ę³•äŗŗå”©äŗ‹ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(105152, 'https://ror.org/005p9kw61', 'en', 1, 'https://ror.org/005p9kw61 New Mexico Institute of Mining and Technology Ɖcole des mines du nouveau-mexique'),
(105153, 'https://ror.org/005q86y64', 'en', 1, 'https://ror.org/005q86y64 Radiation Effects Association å…¬ē›Šč²”å›£ę³•äŗŗę”¾å°„ē·šå½±éŸæå”ä¼š'),
(105154, 'https://ror.org/005qbkr94', 'en', 1, 'https://ror.org/005qbkr94 Association for Nuclear Technology in Medicine å…¬ē›Šč²”å›£ę³•äŗŗåŒ»ē”ØåŽŸå­åŠ›ęŠ€č”“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(105155, 'https://ror.org/005rpmt10', 'en', 1, 'https://ror.org/005rpmt10 Korea Institute of Oriental Medicine'),
(105156, 'https://ror.org/005ta0471', 'it', 1, 'https://ror.org/005ta0471 Istituto Nazionale di Fisica Nucleare National Institute for Nuclear Physics'),
(105157, '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'),
(105158, 'https://ror.org/005wnzn26', 'en', 1, 'https://ror.org/005wnzn26 Mindanao State University-Sulu'),
(105159, 'https://ror.org/005xhc966', 'en', 1, 'https://ror.org/005xhc966 Norwalk Hospital'),
(105160, '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'),
(105161, 'https://ror.org/005zfy155', 'tr', 1, 'https://ror.org/005zfy155 Kayseri University Kayseri Üniversitesi'),
(105162, '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'),
(105163, 'https://ror.org/0060wr328', 'fr', 1, 'https://ror.org/0060wr328 ArmƩe de l''air et de l''espace'),
(105164, 'https://ror.org/00613ak93', 'en', 1, 'https://ror.org/00613ak93 Bergische UniversitƤt Wuppertal University of Wuppertal'),
(105165, 'https://ror.org/00615dw36', 'en', 1, 'https://ror.org/00615dw36 Bishop Auckland College'),
(105166, 'https://ror.org/0061x0487', 'en', 1, 'https://ror.org/0061x0487 University System of New Hampshire'),
(105167, 'https://ror.org/0062tve42', 'en', 1, 'https://ror.org/0062tve42 Pancasila University Universitas Pancasila'),
(105168, 'https://ror.org/0062xp078', 'en', 1, 'https://ror.org/0062xp078 Institute of Agriculture of Carpathian Region of National Academy of Agrarian Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ Ń€ŠµŠ³Ń–Š¾Š½Ńƒ ŠŠ°Ń†Ń–Š¾Š½Š°ĢŠ»ŃŒŠ½Š¾Ń— акаГе́мії агра́рних нау́к України'),
(105169, 'https://ror.org/0066fxv63', 'en', 1, 'https://ror.org/0066fxv63 British University in Egypt UniversitĆ© britannique en Ɖgypte الجامعة Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ© فى Ł…ŲµŲ±'),
(105170, 'https://ror.org/0067fqk38', 'en', 1, 'https://ror.org/0067fqk38 St Mary''s University Twickenham London'),
(105171, '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 Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ політичних і ŠµŃ‚Š½Š¾Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ім. І.Ф. ŠšŃƒŃ€Š°ŃŠ° ŠŠŠ України'),
(105172, 'https://ror.org/0068d6x78', 'en', 1, 'https://ror.org/0068d6x78 Aino Hospital åŒ»ē™‚ę³•äŗŗę’ę˜­ä¼šč—é‡Žē—…é™¢'),
(105173, 'https://ror.org/0068v6128', 'en', 1, 'https://ror.org/0068v6128 Guthrie Robert Packer Hospital'),
(105174, 'https://ror.org/0069akp70', 'en', 1, 'https://ror.org/0069akp70 Information Technologies Institute Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĻŽĪ½ Πληροφορικής και Ī•Ļ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½'),
(105175, 'https://ror.org/0069bkg23', 'en', 1, 'https://ror.org/0069bkg23 Lietuvos Sveikatos Mokslų Universitetas Lithuanian University of Health Sciences Uniwersytet Medyczny w Kownie ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Литовского ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š° Š“Š»Ń наук Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(105176, 'https://ror.org/006a5tm74', 'pt', 1, 'https://ror.org/006a5tm74 Museu Nacional da MĆŗsica'),
(105177, 'https://ror.org/006a7pj43', 'fr', 0, 'https://ror.org/006a7pj43 Centre hospitalier universitaire de QuƩbec'),
(105178, 'https://ror.org/006c42y96', 'pt', 1, 'https://ror.org/006c42y96 Instituto Brasileiro de Informação em Ciência e Tecnologia'),
(105179, 'https://ror.org/006d30594', 'tr', 1, 'https://ror.org/006d30594 Nobel Tip Kitabevleri'),
(105180, 'https://ror.org/006ffkc02', 'en', 1, 'https://ror.org/006ffkc02 Tottori Municipal Hospital é³„å–åø‚ē«‹ē—…é™¢'),
(105181, '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'),
(105182, 'https://ror.org/006gksa02', 'es', 1, 'https://ror.org/006gksa02 Universidad de Oviedo University of Oviedo'),
(105183, 'https://ror.org/006m32489', 'en', 1, 'https://ror.org/006m32489 Hyogo Prefectural Government å…µåŗ«ēœŒåŗ'),
(105184, 'https://ror.org/006m7dn80', 'en', 1, 'https://ror.org/006m7dn80 Institute of Desert Meteorology, China Meteorological Administration äø­å›½ę°”č±”å±€ä¹Œé²ęœØé½ę²™ę¼ ę°”č±”ē ”ē©¶ę‰€'),
(105185, 'https://ror.org/006maft66', 'it', 1, 'https://ror.org/006maft66 UniversitĆ  degli Studi eCampus'),
(105186, 'https://ror.org/006mbby82', 'en', 1, 'https://ror.org/006mbby82 Menzies School of Health Research'),
(105187, 'https://ror.org/006pbws28', 'en', 1, 'https://ror.org/006pbws28 Japan Seafarers Relief Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęµ·å“”ęŽ–ęøˆä¼š'),
(105188, 'https://ror.org/006pvs224', 'en', 1, 'https://ror.org/006pvs224 Hirosaki University of Health and Welfare Junior College å¼˜å‰åŒ»ē™‚ē¦ē„‰å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(105189, 'https://ror.org/006q88a11', 'en', 1, 'https://ror.org/006q88a11 Nusa Putra University Universitas Nusa Putra'),
(105190, 'https://ror.org/006qqg238', 'en', 1, 'https://ror.org/006qqg238 Seirei Hamamatsu City Rehabilitation Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£ęµœę¾åø‚ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(105191, 'https://ror.org/006qyvf40', 'en', 1, 'https://ror.org/006qyvf40 Yas Hospital Ł…Ų¬ŲŖŁ…Ų¹ ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł†ŪŒ یاس'),
(105192, 'https://ror.org/006s4cj68', 'en', 1, 'https://ror.org/006s4cj68 Industrial Technology Innovation Center of Ibaraki Prefecture čŒØåŸŽēœŒē”£ę„­ęŠ€č”“ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(105193, 'https://ror.org/006sgpv47', 'fr', 1, 'https://ror.org/006sgpv47 UniversitĆ© Ibn Zohr Ų¬Ų§Ł…Ų¹Ų© ابن زهر'),
(105194, 'https://ror.org/006tv5x42', 'en', 1, 'https://ror.org/006tv5x42 Medical Corporation JR Hiroshima Hospital åŒ»ē™‚ę³•äŗŗJRåŗƒå³¶ē—…é™¢'),
(105195, 'https://ror.org/006vzad83', 'en', 1, 'https://ror.org/006vzad83 Tata Medical Center টাটা ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦°'),
(105196, 'https://ror.org/006w34k90', 'en', 1, 'https://ror.org/006w34k90 Howard Hughes Medical Institute Instituto MƩdico Howard Hughes'),
(105197, 'https://ror.org/006yvnr95', 'en', 1, 'https://ror.org/006yvnr95 Ahlia University الجامعة Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(105198, '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'),
(105199, 'https://ror.org/0070j0q91', 'es', 1, 'https://ror.org/0070j0q91 Universidad de PanamĆ”'),
(105200, 'https://ror.org/00714tm23', 'en', 0, 'https://ror.org/00714tm23 U.S. Air Force Space Command'),
(105201, 'https://ror.org/0072dxg89', 'en', 1, 'https://ror.org/0072dxg89 Salzburg University of Applied Sciences'),
(105202, 'https://ror.org/0075rz071', 'en', 1, 'https://ror.org/0075rz071 Arthur C. Clarke Centre for Modern Technologies'),
(105203, 'https://ror.org/0077ex633', 'es', 1, 'https://ror.org/0077ex633 Universidad Metropolitana'),
(105204, 'https://ror.org/00780az30', 'fr', 1, 'https://ror.org/00780az30 MathƩmatiques et Informatique AppliquƩes'),
(105205, 'https://ror.org/0079jgp14', 'en', 1, 'https://ror.org/0079jgp14 College of Europe CollĆØge d''Europe'),
(105206, 'https://ror.org/0079tm437', 'en', 1, 'https://ror.org/0079tm437 Tobacco Academic Studies Center å…¬ē›Šč²”å›£ę³•äŗŗćŸć°ć“ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(105207, 'https://ror.org/007a2ta87', 'en', 1, 'https://ror.org/007a2ta87 Huawei Technologies (Poland)'),
(105208, 'https://ror.org/007ag2e14', 'en', 1, 'https://ror.org/007ag2e14 Fujieda Heisei Memorial Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å¹³ęˆä¼šč—¤ęžå¹³ęˆčØ˜åæµē—…é™¢'),
(105209, 'https://ror.org/007cnf143', 'en', 1, 'https://ror.org/007cnf143 Western New England University'),
(105210, 'https://ror.org/007e69832', 'en', 1, 'https://ror.org/007e69832 University of Abuja YunifÔsítì ìlú AbùjÔ'),
(105211, 'https://ror.org/007g1vn56', 'en', 1, 'https://ror.org/007g1vn56 JAē§‹ē”°åŽšē”Ÿé€£ē”±åˆ©ēµ„åˆē·åˆē—…é™¢ Yuri Kumiai General Hospital'),
(105212, 'https://ror.org/007gbh138', 'en', 1, 'https://ror.org/007gbh138 Sakurakai Takahashi Hospital åŒ»ē™‚ē¤¾å›£ę³•äŗŗć•ćć‚‰ä¼šé«˜ę©‹ē—…é™¢'),
(105213, 'https://ror.org/007j3xx12', 'en', 1, 'https://ror.org/007j3xx12 Jikei University of Health Care Sciences ę»‹ę…¶åŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(105214, 'https://ror.org/007j5qg12', 'id', 1, 'https://ror.org/007j5qg12 Universitas Muhammadiyah Palangkaraya'),
(105215, 'https://ror.org/007jfm765', 'en', 1, 'https://ror.org/007jfm765 Imam Reza International University دانؓگاه ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ Ų§Ł…Ų§Ł… Ų±Ų¶Ų§'),
(105216, 'https://ror.org/007m3p006', 'en', 1, 'https://ror.org/007m3p006 Pratt Institute'),
(105217, 'https://ror.org/007mntk44', 'en', 1, 'https://ror.org/007mntk44 Changchun University of Science and Technology é•æę˜„ē†å·„å¤§å­¦'),
(105218, 'https://ror.org/007n70166', 'pt', 1, 'https://ror.org/007n70166 Centro de Investigação em Agronomia Alimentos Ambiente e Paisagem'),
(105219, 'https://ror.org/007qsya74', 'pt', 0, 'https://ror.org/007qsya74 Instituto de Investigação Científica Tropical'),
(105220, 'https://ror.org/007rd1x46', 'pt', 1, 'https://ror.org/007rd1x46 Centro Champalimaud'),
(105221, 'https://ror.org/007rty190', 'ca', 1, 'https://ror.org/007rty190 Consorci de Serveis Universitaris de Catalunya Consorcio de Servicios Universitarios de CataluƱa'),
(105222, 'https://ror.org/007t3j908', 'en', 0, 'https://ror.org/007t3j908 Aleksandras Stulginskis University Aleksandro Stulginskio universitetas Uniwersytet Aleksandrasa Stulginskisa'),
(105223, 'https://ror.org/007tbc964', 'en', 1, 'https://ror.org/007tbc964 Baze University'),
(105224, 'https://ror.org/007vzmy24', 'en', 1, 'https://ror.org/007vzmy24 South Eastern University of Sri Lanka ą®¤ąÆ†ą®©ąÆą®•ą®æą®“ą®•ąÆą®•ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®‡ą®²ą®™ąÆą®•ąÆˆ ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶…ą¶œą·Šą¶±ą·’ą¶Æą·’ą¶œ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(105225, 'https://ror.org/007wr0r46', 'en', 1, 'https://ror.org/007wr0r46 Yokosuka City Hospital ęØŖé ˆč³€åø‚ē«‹åø‚ę°‘ē—…é™¢'),
(105226, 'https://ror.org/007wxbw11', 'en', 1, 'https://ror.org/007wxbw11 The Dia Foundation for Research on Ageing Societies å…¬ē›Šč²”å›£ę³•äŗŗćƒ€ć‚¤ćƒ¤é«˜é½¢ē¤¾ä¼šē ”ē©¶č²”å›£'),
(105227, 'https://ror.org/007x5wz81', 'it', 1, 'https://ror.org/007x5wz81 Ospedale Santa Chiara'),
(105228, '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'),
(105229, 'https://ror.org/00812tr26', 'en', 1, 'https://ror.org/00812tr26 International European University ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105230, 'https://ror.org/00813j607', 'en', 1, 'https://ror.org/00813j607 Miyazaki Prefecture Industrial Technology Center å®®å“ŽēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(105231, 'https://ror.org/0081fs513', 'en', 1, 'https://ror.org/0081fs513 Universidad de Buenos Aires University of Buenos Aires UniversitƠ di Buenos Aires UniversitƩ de Buenos Aires'),
(105232, 'https://ror.org/0081xr281', 'en', 1, 'https://ror.org/0081xr281 Nevada State University'),
(105233, 'https://ror.org/00840ea57', 'en', 1, 'https://ror.org/00840ea57 University of Basrah Ų¬Ų§Ł…Ų¹Ų© البصرة'),
(105234, 'https://ror.org/0084e6430', 'pt', 1, 'https://ror.org/0084e6430 CEJAM - Centro de Estudos e Pesquisas Dr João Amorim'),
(105235, 'https://ror.org/0084z7g54', 'pt', 1, 'https://ror.org/0084z7g54 Universidade Paranaense'),
(105236, 'https://ror.org/0086pzr68', 'en', 1, 'https://ror.org/0086pzr68 Nanbu Child Medical Center ę²–ēø„ēœŒē«‹å—éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ćƒ»ć“ć©ć‚‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(105237, 'https://ror.org/00874hx02', 'en', 1, 'https://ror.org/00874hx02 National Oceanography Centre'),
(105238, 'https://ror.org/008a6s711', 'en', 1, 'https://ror.org/008a6s711 California University of Science and Medicine'),
(105239, 'https://ror.org/008a97q41', 'no_lang_code', 1, 'https://ror.org/008a97q41 Centro Nacional de Biopreparados (Cuba)'),
(105240, 'https://ror.org/008bamj58', 'en', 1, 'https://ror.org/008bamj58 Saga Prefectural Genkai Fisheries Research and Development Center ä½č³€ēœŒēŽ„ęµ·ę°“ē”£ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(105241, 'https://ror.org/008d6qw11', 'en', 1, 'https://ror.org/008d6qw11 Pacific Northwest University of Health Sciences'),
(105242, 'https://ror.org/008ej3804', 'en', 1, 'https://ror.org/008ej3804 Mzuzu University'),
(105243, 'https://ror.org/008gwdp12', 'en', 1, 'https://ror.org/008gwdp12 Lembaga Minyak Sawit Malaysia Malaysian Palm Oil Board'),
(105244, 'https://ror.org/008kvxw43', 'fr', 1, 'https://ror.org/008kvxw43 Ɖcole SupĆ©rieure des Technologies Industrielles AvancĆ©es'),
(105245, 'https://ror.org/008qpg558', 'de', 1, 'https://ror.org/008qpg558 Deutsches Biomasseforschungszentrum'),
(105246, 'https://ror.org/008swzc61', 'en', 1, 'https://ror.org/008swzc61 Canadian Social Prescribing Student Collective'),
(105247, 'https://ror.org/008szy192', 'en', 1, 'https://ror.org/008szy192 Institute of Field and Vegetable Crops'),
(105248, 'https://ror.org/008x6wy98', 'id', 1, 'https://ror.org/008x6wy98 Politeknik Kesehatan Bhakti Setya Indonesia'),
(105249, 'https://ror.org/008z75r39', 'en', 1, 'https://ror.org/008z75r39 Kumamoto Prefectural Institute of Public-Health and Environmental Science ē†Šęœ¬ēœŒäæå„ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(105250, 'https://ror.org/008ztmr80', 'en', 1, 'https://ror.org/008ztmr80 Indian Institute of Management Sambalpur'),
(105251, 'https://ror.org/0093wrd09', 'en', 1, 'https://ror.org/0093wrd09 Volgograd State University ВолгограГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105252, 'https://ror.org/00941jr33', 'en', 1, 'https://ror.org/00941jr33 The Japan Electric Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę°—å”ä¼š'),
(105253, 'https://ror.org/0098gnz32', 'en', 1, 'https://ror.org/0098gnz32 Norwegian Defence Research Establishment'),
(105254, 'https://ror.org/009axq942', 'en', 1, 'https://ror.org/009axq942 Muş Alparslan University Muş Alparslan Üniversitesi'),
(105255, 'https://ror.org/009b5t134', 'no_lang_code', 1, 'https://ror.org/009b5t134 Chuo Kikuu cha Kabarak Kabarak University'),
(105256, 'https://ror.org/009dqjj77', 'pt', 1, 'https://ror.org/009dqjj77 Content Ed Net Ltda (Portugal)'),
(105257, 'https://ror.org/009e5z592', 'en', 1, 'https://ror.org/009e5z592 Civil Engineering Research Laboratory äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ęŠ€č”“ē ”ē©¶ę‰€'),
(105258, 'https://ror.org/009ec3j55', 'es', 1, 'https://ror.org/009ec3j55 Metropolitan Polytechnic University of Puebla Universidad PolitƩcnica Metropolitana de Puebla'),
(105259, 'https://ror.org/009fw8j44', 'en', 1, 'https://ror.org/009fw8j44 Hebei Agricultural University ę²³åŒ—å†œäøšå¤§å­¦'),
(105260, 'https://ror.org/009gpfg16', 'id', 1, 'https://ror.org/009gpfg16 Universitas Bung Hatta'),
(105261, 'https://ror.org/009hbta38', 'ro', 1, 'https://ror.org/009hbta38 Asociatia Romana pentru Industria Electronica si Software'),
(105262, 'https://ror.org/009kx9832', 'en', 1, 'https://ror.org/009kx9832 University of Jos YunifÔsítì ìlú Jos'),
(105263, 'https://ror.org/009n8zh45', 'en', 1, 'https://ror.org/009n8zh45 Chuo Kikuu cha Dodoma The University of Dodoma'),
(105264, 'https://ror.org/009nc9s30', 'no_lang_code', 1, 'https://ror.org/009nc9s30 MSD (Switzerland)'),
(105265, 'https://ror.org/009pyrv87', 'en', 1, 'https://ror.org/009pyrv87 Sekizen Hospital äø€čˆ¬č²”å›£ę³•äŗŗę±ŸåŽŸē©å–„ä¼šē©å–„ē—…é™¢'),
(105266, 'https://ror.org/009t4th85', 'en', 1, 'https://ror.org/009t4th85 The Institute For Zen Studies å…¬ē›Šč²”å›£ę³•äŗŗē¦…ę–‡åŒ–ē ”ē©¶ę‰€'),
(105267, 'https://ror.org/009vyzb24', 'en', 1, 'https://ror.org/009vyzb24 Osh Technological University ŠžŠØ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜ŠÆŠ›Š«Šš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š˜ ŠžŠØŠ”ŠšŠ˜Š™ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•CŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(105268, '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'),
(105269, 'https://ror.org/009xkwf56', 'en', 1, 'https://ror.org/009xkwf56 Japan Techno-Economics Society äø€čˆ¬ē¤¾å›£ę³•äŗŗē§‘å­¦ęŠ€č”“ćØēµŒęøˆć®ä¼š'),
(105270, 'https://ror.org/009z39p97', 'en', 1, 'https://ror.org/009z39p97 St. Joseph’s Healthcare Hamilton'),
(105271, 'https://ror.org/009zbth94', 'en', 1, 'https://ror.org/009zbth94 GLS University'),
(105272, 'https://ror.org/009zrt367', 'en', 1, 'https://ror.org/009zrt367 Le Village FranƧais du NigƩria The Nigeria French Language Village'),
(105273, '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'),
(105274, 'https://ror.org/00a429j56', 'en', 1, 'https://ror.org/00a429j56 Agano City Hospital ć‚ćŒć®åø‚ę°‘ē—…é™¢'),
(105275, 'https://ror.org/00a45v709', 'en', 1, 'https://ror.org/00a45v709 Tomsk Polytechnic University Томский политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105276, 'https://ror.org/00a4kqq17', 'en', 1, 'https://ror.org/00a4kqq17 Cochin University of Science and Technology ą®•ąÆŠą®šąÆą®šą®æą®©ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“•ąµŠą“šąµą“šą“æąµ» ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµ ą“øą“æą“±ąµą“±ą“æ ą““ą“«ąµ ą“øą“Æąµ»ą“øąµ ą“†ą“Øąµą“±ąµ ą“Ÿąµ†ą“•ąµ ą“Øąµ‹ą“³ą“œą“æ'),
(105277, 'https://ror.org/00a4xxf76', 'pt', 1, 'https://ror.org/00a4xxf76 Universidade Federal do Cariri'),
(105278, 'https://ror.org/00a5h0053', 'en', 1, 'https://ror.org/00a5h0053 JAä½é‡ŽåŽšē”Ÿé€£ä½é‡ŽåŽšē”Ÿē·åˆē—…é™¢ Sanokousei General Hospital'),
(105279, 'https://ror.org/00a5mh069', 'en', 1, 'https://ror.org/00a5mh069 University of Phayao ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø°ą¹€ąø¢ąø²'),
(105280, 'https://ror.org/00a7n7g54', 'de', 1, 'https://ror.org/00a7n7g54 Deutsches Museum German Museum'),
(105281, 'https://ror.org/00a9b0g29', 'en', 1, 'https://ror.org/00a9b0g29 Vasil Levski National Military University ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ военен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105282, 'https://ror.org/00aa7w613', 'en', 1, 'https://ror.org/00aa7w613 Council of Australasian University Librarians'),
(105283, 'https://ror.org/00aahnw66', 'pt', 1, 'https://ror.org/00aahnw66 Centro de Computação GrÔfica'),
(105284, 'https://ror.org/00abdnc40', 'en', 1, 'https://ror.org/00abdnc40 Petroleum & Gas University of Ploieşti Universitatea Petrol-Gaze din Ploiești'),
(105285, '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'),
(105286, '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'),
(105287, 'https://ror.org/00ajzsc28', 'pt', 1, 'https://ror.org/00ajzsc28 Federal University of Southern Bahia Universidade Federal do Sul da Bahia'),
(105288, 'https://ror.org/00akhqc20', 'pt', 1, 'https://ror.org/00akhqc20 Universidade do Tocantins'),
(105289, 'https://ror.org/00apvva27', 'en', 1, 'https://ror.org/00apvva27 National Science Board'),
(105290, 'https://ror.org/00atkzx31', 'en', 1, 'https://ror.org/00atkzx31 Fukushima Agricultural Technology Centre ē¦å³¶ēœŒč¾²ę„­ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(105291, 'https://ror.org/00ax71d21', 'en', 1, 'https://ror.org/00ax71d21 Obuda University Universitas Budensis UniversitƤt Ɠbuda Ɠbudai Egyetem'),
(105292, 'https://ror.org/00aygzx54', 'en', 1, 'https://ror.org/00aygzx54 Niigata University of Health and Welfare ę–°ę½ŸåŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(105293, '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'),
(105294, 'https://ror.org/00b1c9541', 'en', 1, 'https://ror.org/00b1c9541 University of Hohenheim UniversitƤt Hohenheim'),
(105295, 'https://ror.org/00b210x50', 'es', 1, 'https://ror.org/00b210x50 Universidad de Especialidades EspĆ­ritu Santo'),
(105296, 'https://ror.org/00b296q39', 'en', 1, 'https://ror.org/00b296q39 Kochi Prefectural Freshwater Fisheries Center é«˜ēŸ„ēœŒå†…ę°“é¢ę¼ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(105297, 'https://ror.org/00b3mwd12', 'en', 1, 'https://ror.org/00b3mwd12 Yamaguchi Prefectural Government å±±å£ēœŒåŗ'),
(105298, 'https://ror.org/00b45dj41', 'en', 1, 'https://ror.org/00b45dj41 Ishikawa Prefectural University ēŸ³å·ēœŒē«‹å¤§å­¦'),
(105299, 'https://ror.org/00b51r420', 'en', 1, 'https://ror.org/00b51r420 Institute of Radiation Measurements å…¬ē›Šč²”å›£ę³•äŗŗę”¾å°„ē·ščØˆęø¬å”ä¼š'),
(105300, 'https://ror.org/00b6sbb32', 'en', 1, 'https://ror.org/00b6sbb32 Directorate for Engineering'),
(105301, 'https://ror.org/00b6sbq93', 'en', 1, 'https://ror.org/00b6sbq93 Emmanuel University'),
(105302, 'https://ror.org/00b7x1x53', 'en', 1, 'https://ror.org/00b7x1x53 Montgomery College'),
(105303, 'https://ror.org/00b98jc42', 'en', 1, 'https://ror.org/00b98jc42 University of Al Dhaid Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų°ŁŠŲÆ'),
(105304, 'https://ror.org/00b9f9778', 'fr', 1, 'https://ror.org/00b9f9778 Fonds de Recherche du QuĆ©bec – Nature et Technologies'),
(105305, 'https://ror.org/00ba6pg24', 'en', 1, 'https://ror.org/00ba6pg24 Uttaranchal University'),
(105306, 'https://ror.org/00bag6861', 'en', 1, 'https://ror.org/00bag6861 U.S. Air Force Research Laboratory Munitions Directorate'),
(105307, 'https://ror.org/00bas1c41', 'en', 1, 'https://ror.org/00bas1c41 AGH University of Krakow Akademia Górniczo-Hutnicza im. Stanisława Staszica w Krakowie'),
(105308, 'https://ror.org/00bc64s87', 'nl', 1, 'https://ror.org/00bc64s87 Noordwest Ziekenhuisgroep'),
(105309, 'https://ror.org/00bctk817', 'en', 1, 'https://ror.org/00bctk817 Association of Polish Surveyors'),
(105310, 'https://ror.org/00bfc1p59', 'pt', 1, 'https://ror.org/00bfc1p59 Centro de Investigação em Artes e Comunicação'),
(105311, 'https://ror.org/00bfkan04', 'en', 1, 'https://ror.org/00bfkan04 Livit Ottobock Care'),
(105312, 'https://ror.org/00bm99g65', 'en', 1, 'https://ror.org/00bm99g65 MSD (Greece)'),
(105313, 'https://ror.org/00bmjd793', 'id', 1, 'https://ror.org/00bmjd793 Ganesha University of Education Universitas Pendidikan Ganesha'),
(105314, 'https://ror.org/00bp9f906', 'nl', 1, 'https://ror.org/00bp9f906 Reade'),
(105315, 'https://ror.org/00bqe3914', 'es', 1, 'https://ror.org/00bqe3914 Universidad Fernando Pessoa Canarias'),
(105316, 'https://ror.org/00bqtef03', 'pt', 1, 'https://ror.org/00bqtef03 Fundação Oriente'),
(105317, 'https://ror.org/00br9cf93', 'en', 1, 'https://ror.org/00br9cf93 University of Mines and Technology'),
(105318, 'https://ror.org/00brr5r54', 'en', 1, 'https://ror.org/00brr5r54 Rothman Orthopaedics'),
(105319, 'https://ror.org/00brrcj79', 'en', 1, 'https://ror.org/00brrcj79 Nagano Animal Industry Experiment Station é•·é‡ŽēœŒē•œē”£č©¦éØ“å “'),
(105320, 'https://ror.org/00brrya24', 'pt', 1, 'https://ror.org/00brrya24 Centro de Território Ambiente e Construção'),
(105321, 'https://ror.org/00btq2b69', 'pt', 1, 'https://ror.org/00btq2b69 Astellas Farma Lda (Portugal) Astellas Pharma Ltd'),
(105322, 'https://ror.org/00bxeqa64', 'en', 1, 'https://ror.org/00bxeqa64 Korea Environment Institute ķ•œźµ­ķ™˜ź²½ģ •ģ±…ķ‰ź°€ģ—°źµ¬ģ›'),
(105323, 'https://ror.org/00bxg8434', 'es', 1, 'https://ror.org/00bxg8434 Althaia'),
(105324, 'https://ror.org/00bxtx484', 'en', 1, 'https://ror.org/00bxtx484 Akita Prefectural Livestock Experiment Station ē§‹ē”°ēœŒē•œē”£č©¦éØ“å “'),
(105325, 'https://ror.org/00c0k8h59', 'it', 1, 'https://ror.org/00c0k8h59 Istituto Zooprofilattico Sperimentale Della Sicilia'),
(105326, 'https://ror.org/00c3rvj09', 'en', 1, 'https://ror.org/00c3rvj09 Nagasaki Prefectural Police é•·å“ŽēœŒč­¦åÆŸ'),
(105327, 'https://ror.org/00c4wc133', 'en', 1, 'https://ror.org/00c4wc133 Florida Agricultural and Mechanical University Universidad Agrónoma y MecÔnica de Florida'),
(105328, 'https://ror.org/00c5mww57', 'en', 1, 'https://ror.org/00c5mww57 Japan Frozen Food Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡é£Ÿå“å”ä¼š'),
(105329, 'https://ror.org/00c5pmp34', 'en', 1, 'https://ror.org/00c5pmp34 Shinjo Ophthalmologic Institute åŒ»ē™‚ę³•äŗŗč²”å›£ć‚·ćƒ­ć‚¢ćƒ ä¼šę–°åŸŽēœ¼ē§‘åŒ»é™¢'),
(105330, 'https://ror.org/00c70rp24', 'en', 1, 'https://ror.org/00c70rp24 Institute of Urban and Regional Development Krajowy Instytut Polityki Przestrzennej i Mieszkalnictwa'),
(105331, 'https://ror.org/00c7s9h48', 'en', 1, 'https://ror.org/00c7s9h48 Kyoto Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗ¬éƒ½åŗœåŒ»åø«ä¼š'),
(105332, 'https://ror.org/00c8w1e05', 'en', 1, 'https://ror.org/00c8w1e05 Yamanashi Prefectural Industrial Technology Center å±±ę¢ØēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(105333, 'https://ror.org/00ca2c886', 'es', 1, 'https://ror.org/00ca2c886 Institute of Health Carlos III Instituto de Salud Carlos III'),
(105334, 'https://ror.org/00cc2cj67', 'en', 1, 'https://ror.org/00cc2cj67 Japan Cooperation Center Petroleum äø€čˆ¬č²”å›£ę³•äŗŗJCCPå›½éš›ēŸ³ę²¹ćƒ»ć‚¬ć‚¹å”åŠ›ę©Ÿé–¢'),
(105335, 'https://ror.org/00ccda374', 'en', 1, 'https://ror.org/00ccda374 Baharloo Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ŲØŁ‡Ų§Ų±Ł„Łˆ'),
(105336, 'https://ror.org/00ccpdp17', 'fr', 1, 'https://ror.org/00ccpdp17 Biologie du Fruit et Pathologie'),
(105337, 'https://ror.org/00cdrtq48', 'no_lang_code', 1, 'https://ror.org/00cdrtq48 Alfaisal University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŁŠŲµŁ„'),
(105338, 'https://ror.org/00cf3sf89', 'id', 1, 'https://ror.org/00cf3sf89 Electronic Engineering Polytechnic Institute of Surabaya Politeknik Elektronika Negeri Surabaya'),
(105339, 'https://ror.org/00cfbfw05', 'en', 1, 'https://ror.org/00cfbfw05 Ibaraki Kasumigaura Environmental Science Center čŒØåŸŽēœŒéœžć‚±ęµ¦ē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(105340, 'https://ror.org/00cg1ev32', 'en', 1, 'https://ror.org/00cg1ev32 Ferris State University UniversitĆ© d''Ɖtat ferris'),
(105341, 'https://ror.org/00cgjqd45', 'es', 1, 'https://ror.org/00cgjqd45 Universidad Regional Autónoma de Los Andes'),
(105342, 'https://ror.org/00chke646', 'id', 1, 'https://ror.org/00chke646 Universitas Madura'),
(105343, 'https://ror.org/00cjz8690', 'en', 1, 'https://ror.org/00cjz8690 Tohoku Bunkyo Junior College ę±åŒ—ę–‡ę•™å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(105344, 'https://ror.org/00ck0kh03', 'en', 1, 'https://ror.org/00ck0kh03 NSW Environment and Heritage'),
(105345, 'https://ror.org/00cmhce21', 'no_lang_code', 1, 'https://ror.org/00cmhce21 Huawei Technologies (China) åŽäøŗęŠ€ęœÆęœ‰é™å…¬åø'),
(105346, 'https://ror.org/00cp8c465', 'en', 1, 'https://ror.org/00cp8c465 Belarusian State Technological University Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Š°Š»Š°Š³Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105347, 'https://ror.org/00cq1sr42', 'en', 1, 'https://ror.org/00cq1sr42 Food and Agricultural Materials Inspection Center ē‹¬ē«‹č”Œę”æę³•äŗŗč¾²ęž—ę°“ē”£ę¶ˆč²»å®‰å…ØęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(105348, 'https://ror.org/00cr19p86', 'en', 1, 'https://ror.org/00cr19p86 Shizuoka Prefectural Environmental Radiation Monitoring Center é™å²”ēœŒē’°å¢ƒę”¾å°„ē·šē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(105349, 'https://ror.org/00crnyv53', 'en', 1, 'https://ror.org/00crnyv53 Community University of Chapecó Region - Unochapecó'),
(105350, 'https://ror.org/00crqck26', 'no_lang_code', 1, 'https://ror.org/00crqck26 Varendra University ą¦¬ą¦°ą§‡ą¦Øą§ą¦¦ą§ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(105351, 'https://ror.org/00csw7971', 'pl', 1, 'https://ror.org/00csw7971 Institute of Hematology and Transfusion Medicine Instytut Hematologii i Transfuzjologi'),
(105352, 'https://ror.org/00cv1e222', 'en', 1, 'https://ror.org/00cv1e222 Saint Peter''s University Universidad de San Pedro'),
(105353, 'https://ror.org/00cv9y106', 'en', 1, 'https://ror.org/00cv9y106 Ghent University Universiteit Gent UniversitƩ de Gand'),
(105354, 'https://ror.org/00cvcp097', 'en', 1, 'https://ror.org/00cvcp097 Kochi Prefectural Fisheries Experiment Station é«˜ēŸ„ēœŒę°“ē”£č©¦éØ“å “'),
(105355, 'https://ror.org/00cvmch98', 'en', 1, 'https://ror.org/00cvmch98 Tokyo Seitoku College ę±äŗ¬ęˆå¾³ēŸ­ęœŸå¤§å­¦'),
(105356, 'https://ror.org/00cwp6m07', 'es', 1, 'https://ror.org/00cwp6m07 Instituto Tecnológico y de Estudios Superiores de Occidente'),
(105357, 'https://ror.org/00cwssz89', 'en', 1, 'https://ror.org/00cwssz89 Hospice Africa France'),
(105358, 'https://ror.org/00cy7e479', 'en', 1, 'https://ror.org/00cy7e479 GNA University'),
(105359, 'https://ror.org/00czxgw88', 'en', 1, 'https://ror.org/00czxgw88 Thermal and Nuclear Power Engineering Society äø€čˆ¬ē¤¾å›£ę³•äŗŗē«åŠ›åŽŸå­åŠ›ē™ŗé›»ęŠ€č”“å”ä¼š'),
(105360, 'https://ror.org/00d1qw876', 'pt', 1, 'https://ror.org/00d1qw876 Centro de Investigação em Antropologia e Saúde'),
(105361, 'https://ror.org/00d1wky64', 'pt', 1, 'https://ror.org/00d1wky64 Centro de Medicina AeronƔutica'),
(105362, 'https://ror.org/00d238852', 'en', 1, 'https://ror.org/00d238852 Saitamaken Chagyo Research Institute åŸ¼ēŽ‰ēœŒčŒ¶ę„­ē ”ē©¶ę‰€'),
(105363, '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'),
(105364, 'https://ror.org/00d57gd44', 'en', 1, 'https://ror.org/00d57gd44 Fujimoto General Hospital äø€čˆ¬ē¤¾å›£ę³•äŗŗč—¤å…ƒćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚·ć‚¹ćƒ†ćƒ č—¤å…ƒē·åˆē—…é™¢'),
(105365, 'https://ror.org/00d5f0g81', 'pt', 1, 'https://ror.org/00d5f0g81 PresidĆŖncia do Conselho de Ministros'),
(105366, 'https://ror.org/00d6k8y35', 'en', 1, 'https://ror.org/00d6k8y35 University of Staffordshire'),
(105367, 'https://ror.org/00d7f8730', 'en', 1, 'https://ror.org/00d7f8730 Shenyang University of Technology 沈阳巄业大学'),
(105368, 'https://ror.org/00da1gf19', 'en', 1, 'https://ror.org/00da1gf19 Hasanuddin University Universitas Hasanuddin'),
(105369, 'https://ror.org/00dbg3003', 'en', 1, 'https://ror.org/00dbg3003 Economic Research Association äø€čˆ¬č²”å›£ę³•äŗŗēµŒęøˆčŖæęŸ»ä¼š'),
(105370, 'https://ror.org/00dfbms98', 'en', 1, 'https://ror.org/00dfbms98 Hamburg University of Music and Drama Hochschule für Musik und Theater Hamburg'),
(105371, 'https://ror.org/00dg2xc09', 'en', 1, 'https://ror.org/00dg2xc09 Balsillie School of International Affairs'),
(105372, 'https://ror.org/00dgnn742', 'en', 1, 'https://ror.org/00dgnn742 University of Science and Technology of Fujairah Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ© في Ų§Ł„ŁŲ¬ŁŠŲ±Ų©'),
(105373, 'https://ror.org/00djv2c17', 'en', 1, 'https://ror.org/00djv2c17 Indian Institute of Science Education and Research Kolkata ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾ ভারতীয় ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¶ą¦æą¦•ą§ą¦·ą¦¾ ও গবেষণা ą¦øą¦‚ą¦øą§ą¦„ą¦¾, কলকাতা'),
(105374, 'https://ror.org/00dmdt028', 'es', 1, 'https://ror.org/00dmdt028 Universidad UTE'),
(105375, 'https://ror.org/00dn4t376', 'en', 1, 'https://ror.org/00dn4t376 Brunel University of London'),
(105376, 'https://ror.org/00dnr1h67', 'en', 1, 'https://ror.org/00dnr1h67 Institute of Criminology and Social Prevention'),
(105377, 'https://ror.org/00dntj975', 'en', 1, 'https://ror.org/00dntj975 Science and Arts University دانؓگاه علم و هنر'),
(105378, 'https://ror.org/00dr09x15', 'en', 1, 'https://ror.org/00dr09x15 Caltex Riau Polytechnic Politeknik Caltex Riau'),
(105379, 'https://ror.org/00dr28g20', 'en', 1, 'https://ror.org/00dr28g20 University of Crete UniversitĆ© de crĆØte Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĪ®Ļ„Ī·Ļ‚'),
(105380, 'https://ror.org/00dreqn16', 'en', 1, 'https://ror.org/00dreqn16 Waterfront Vitalization and Environment Research Foundation äø€čˆ¬č²”å›£ę³•äŗŗćæćŖćØē·åˆē ”ē©¶č²”å›£'),
(105381, 'https://ror.org/00drqs466', 'en', 1, 'https://ror.org/00drqs466 Dinajpur Medical College দিনাজপুর মেঔিকেল ą¦•ą¦²ą§‡ą¦œ, দিনাজপুর'),
(105382, 'https://ror.org/00dv9q566', 'en', 1, 'https://ror.org/00dv9q566 Campbell University'),
(105383, 'https://ror.org/00dxbgs74', 'fr', 1, 'https://ror.org/00dxbgs74 Centre de MathƩmatiques AppliquƩes - CMA, Mines Paris, UniversitƩ PSL, Centre de MathƩmatiques AppliquƩes (CMA) Centre for Applied Mathematics - CMA, Mines Paris, PSL University, Centre for Applied Mathematics (CMA)'),
(105384, 'https://ror.org/00dygpn15', 'en', 1, 'https://ror.org/00dygpn15 Maasai Mara University'),
(105385, 'https://ror.org/00dyx6f45', 'en', 1, 'https://ror.org/00dyx6f45 Thoth Open Metadata'),
(105386, 'https://ror.org/00dzmf738', 'en', 1, 'https://ror.org/00dzmf738 Islamic Azad University Roudehen Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų±ŁˆŲÆŁ‡Ł†'),
(105387, 'https://ror.org/00e1bj270', 'pt', 1, 'https://ror.org/00e1bj270 Instituto Superior de Ciências da Educação da Huíla'),
(105388, 'https://ror.org/00e2t3013', 'en', 1, 'https://ror.org/00e2t3013 Reconstruction Agency 復興庁'),
(105389, 'https://ror.org/00e5sp938', 'en', 1, 'https://ror.org/00e5sp938 Construction Engineering Research Institute Foundation äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­å·„å­¦ē ”ē©¶ę‰€'),
(105390, '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'),
(105391, 'https://ror.org/00e8nsh51', 'en', 1, 'https://ror.org/00e8nsh51 Mount St. Joseph University'),
(105392, 'https://ror.org/00e8ykd54', 'nl', 1, 'https://ror.org/00e8ykd54 Albert Schweitzer Ziekenhuis'),
(105393, 'https://ror.org/00e97v486', 'en', 1, 'https://ror.org/00e97v486 Varna Free University Varna Hür Üniversitesi Варненски свобоГен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105394, 'https://ror.org/00earpg61', 'fr', 1, 'https://ror.org/00earpg61 Centre Paul Broca'),
(105395, 'https://ror.org/00edtwv66', 'es', 1, 'https://ror.org/00edtwv66 Secretaría de Educación del Distrito Capital'),
(105396, 'https://ror.org/00edv6x70', 'en', 1, 'https://ror.org/00edv6x70 International Union for Conservation of Nature (United States)'),
(105397, 'https://ror.org/00edvg943', 'de', 1, 'https://ror.org/00edvg943 Hochschule Bielefeld'),
(105398, 'https://ror.org/00ee9rw54', 'en', 1, 'https://ror.org/00ee9rw54 The Society of Non-Traditional Technology äø€čˆ¬ē¤¾å›£ę³•äŗŗęœŖčøē§‘å­¦ęŠ€č”“å”ä¼š'),
(105399, 'https://ror.org/00efxp054', 'id', 1, 'https://ror.org/00efxp054 Universitas Katolik Widya Mandala Surabaya Widya Mandala Catholic University'),
(105400, 'https://ror.org/00ej60137', 'en', 1, 'https://ror.org/00ej60137 International Information and Engineering Technology Association'),
(105401, 'https://ror.org/00enajs79', 'en', 1, 'https://ror.org/00enajs79 National Bioinformatics Infrastructure Sweden'),
(105402, 'https://ror.org/00engpz63', 'en', 1, 'https://ror.org/00engpz63 University of Sharjah Ų¬Ų§Ł…Ų¹Ų© الؓارقة'),
(105403, 'https://ror.org/00ep21g81', 'es', 1, 'https://ror.org/00ep21g81 Universidad Nacional Arturo Jauretche'),
(105404, 'https://ror.org/00epajq42', 'en', 1, 'https://ror.org/00epajq42 Sukhothai Thammathirat Open University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŖąøøą¹‚ąø‚ąø—ąø±ąø¢ąø˜ąø£ąø£ąø”ąø²ąø˜ąø“ąø£ąø²ąøŠ'),
(105405, 'https://ror.org/00ewz9128', 'en', 1, 'https://ror.org/00ewz9128 Huainan Union University ę·®å—č”åˆå¤§å­¦'),
(105406, 'https://ror.org/00ex29c91', 'en', 1, 'https://ror.org/00ex29c91 Atago Hospital åŒ»ē™‚ę³•äŗŗę–°ę¾ē”°ä¼šę„›å®•ē—…é™¢'),
(105407, 'https://ror.org/00ey0ed83', 'en', 1, 'https://ror.org/00ey0ed83 Odense University Hospital'),
(105408, 'https://ror.org/00ey4b732', 'en', 1, 'https://ror.org/00ey4b732 Dzemal Bijedic University of Mostar Univerzitet "Džemal Bijedić" u Mostaru Универзитет "ŠŠµŠ¼Š°Š» Š‘ŠøŃ˜ŠµŠ“ŠøŃ›" у ŠœŠ¾ŃŃ‚Š°Ń€Ńƒ'),
(105409, 'https://ror.org/00ezd5874', 'id', 1, 'https://ror.org/00ezd5874 Universitas Nahdlatul Ulama Indonesia'),
(105410, 'https://ror.org/00f083n24', 'en', 1, 'https://ror.org/00f083n24 National Sanatorium KURIU-RAKUSENEN å›½ē«‹ē™‚é¤Šę‰€ę —ē”Ÿę„½ę³‰åœ’'),
(105411, 'https://ror.org/00f266q65', 'en', 1, 'https://ror.org/00f266q65 Universidad Xavier UniversitƩ xavier de cincinnati Xavier University'),
(105412, 'https://ror.org/00f2wje32', 'en', 1, 'https://ror.org/00f2wje32 Academy of Media Arts Cologne Kunsthochschule für Medien Köln'),
(105413, 'https://ror.org/00f362y94', 'en', 1, 'https://ror.org/00f362y94 Deutsches Institut für Lebensmitteltechnik German Institute of Food Technologies'),
(105414, 'https://ror.org/00f3fvn46', 'en', 1, 'https://ror.org/00f3fvn46 Japan Dam Engineering Center äø€čˆ¬č²”å›£ę³•äŗŗćƒ€ćƒ ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(105415, 'https://ror.org/00f4jdp82', 'en', 1, 'https://ror.org/00f4jdp82 Keck Graduate Institute'),
(105416, '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'),
(105417, 'https://ror.org/00f8c2k07', 'en', 1, 'https://ror.org/00f8c2k07 Foundation of River&Basin Integrated Communications äø€čˆ¬č²”å›£ę³•äŗŗę²³å·ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(105418, 'https://ror.org/00f93gn72', 'no_lang_code', 1, 'https://ror.org/00f93gn72 Suqian University 宿迁学院'),
(105419, 'https://ror.org/00fafvp33', 'en', 1, 'https://ror.org/00fafvp33 Gonabad University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓكي گناباد'),
(105420, 'https://ror.org/00fb64e91', 'en', 1, 'https://ror.org/00fb64e91 Miyazaki Prefectural Industrial Support Foundation å…¬ē›Šč²”å›£ę³•äŗŗå®®å“ŽēœŒē”£ę„­ęŒÆčˆˆę©Ÿę§‹'),
(105421, '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'),
(105422, 'https://ror.org/00ffm0v33', 'pt', 1, 'https://ror.org/00ffm0v33 Wiki Movement Brazil Wiki Movimento Brasil'),
(105423, 'https://ror.org/00fg4wc36', 'en', 1, 'https://ror.org/00fg4wc36 Shimane Prefectural Government 島根県庁'),
(105424, 'https://ror.org/00fhc9y79', 'en', 1, 'https://ror.org/00fhc9y79 Guangdong University of Foreign Studies å¹æäøœå¤–čÆ­å¤–č“øå¤§å­¦'),
(105425, 'https://ror.org/00fhk4582', 'en', 1, 'https://ror.org/00fhk4582 Sri Lanka Institute of Information Technology ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶­ą·œą¶»ą¶­ą·”ą¶»ą·” ą¶­ą·ā€Œą¶šą·Šą·‚ą¶« ආයතනය'),
(105426, 'https://ror.org/00fn9q691', 'en', 1, 'https://ror.org/00fn9q691 Niigata Prefectural Institute Of Brewing ę–°ę½ŸēœŒé†øé€ č©¦éØ“å “'),
(105427, 'https://ror.org/00fqrrm56', 'pt', 1, 'https://ror.org/00fqrrm56 Instituto HidrogrƔfico'),
(105428, 'https://ror.org/00frr1n84', 'en', 1, 'https://ror.org/00frr1n84 Covenant University YunifƔsƭtƬ Covenant'),
(105429, 'https://ror.org/00frth518', 'en', 1, 'https://ror.org/00frth518 Hiroshima International Center å…¬ē›Šč²”å›£ę³•äŗŗć²ć‚ć—ć¾å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(105430, 'https://ror.org/00ftatp57', 'fr', 1, 'https://ror.org/00ftatp57 ITAP - Technologies et MƩthodes pour les Agricultures de demain'),
(105431, 'https://ror.org/00ftx0026', 'en', 1, 'https://ror.org/00ftx0026 Hochschule Düsseldorf Hochschule Düsseldorf University of Applied Sciences'),
(105432, 'https://ror.org/00fzmm222', 'en', 1, 'https://ror.org/00fzmm222 Universidad de Massachusetts Dartmouth University of Massachusetts Dartmouth UniversitƩ du massachusetts de dartmouth');
INSERT INTO `rors` VALUES
(105433, 'https://ror.org/00g0p6g84', 'en', 1, 'https://ror.org/00g0p6g84 Universiteit van Pretoria University of Pretoria'),
(105434, 'https://ror.org/00g1w3j30', 'en', 1, 'https://ror.org/00g1w3j30 Jambi University Universitas Jambi'),
(105435, 'https://ror.org/00g2rqs52', 'en', 1, 'https://ror.org/00g2rqs52 Southwest Medical University ę³øå·žåŒ»å­¦é™¢'),
(105436, 'https://ror.org/00g482e48', 'en', 1, 'https://ror.org/00g482e48 Japan Medical Education Foundation å…¬ē›Šč²”å›£ę³•äŗŗåŒ»å­¦ę•™č‚²ęŒÆčˆˆč²”å›£'),
(105437, 'https://ror.org/00g635h87', 'en', 1, 'https://ror.org/00g635h87 Methodist Hospital'),
(105438, 'https://ror.org/00g6cx256', 'en', 1, 'https://ror.org/00g6cx256 ESIEA University'),
(105439, 'https://ror.org/00g8jvh18', 'id', 1, 'https://ror.org/00g8jvh18 Universitas PGRI Adi Buana Surabaya'),
(105440, 'https://ror.org/00ga49p33', 'en', 1, 'https://ror.org/00ga49p33 Nagano Prefectural Police é•·é‡ŽēœŒč­¦åÆŸ'),
(105441, 'https://ror.org/00gcpds33', 'en', 1, 'https://ror.org/00gcpds33 Mongolian National University of Medical Sciences Анагаахын ŠØŠøŠ½Š¶Š»ŃŃ… Ухааны Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(105442, 'https://ror.org/00gdrb321', 'en', 1, 'https://ror.org/00gdrb321 Research Center for Chronic Inflammatory Diseases مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁ…Ų§Ų±ŪŒ Ł‡Ų§ŪŒ Ų§Ł„ŲŖŁ‡Ų§ŲØŪŒ مزمن'),
(105443, 'https://ror.org/00ggq9r86', 'en', 1, 'https://ror.org/00ggq9r86 State University of Novi Pazar Државни ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ у ŠŠ¾Š²Š¾Š¼ ŠŸŠ°Š·Š°Ń€Ńƒ'),
(105444, 'https://ror.org/00gkhpw57', 'es', 1, 'https://ror.org/00gkhpw57 Autonomous University of Bucaramanga Universidad Autónoma de Bucaramanga'),
(105445, 'https://ror.org/00gm0aw40', 'de', 1, 'https://ror.org/00gm0aw40 Ostbayerische Technische Hochschule Amberg-Weiden'),
(105446, 'https://ror.org/00gmd7q80', 'en', 1, 'https://ror.org/00gmd7q80 Indian Institute of Information Technology Design and Manufacturing Jabalpur ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤…ą¤­ą¤æą¤•ą¤²ą„ą¤Ŗą¤Ø ą¤ą¤µą¤‚ ą¤µą¤æą¤Øą¤æą¤°ą„ą¤®ą¤¾ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾-ą¤Ŗą„ą¤°ą¤µą¤æą¤§ą¤æ ą¤”ą¤æą¤œą¤¾ą¤‡ą¤Ø ą¤ą¤µą¤‚ ą¤‰ą¤¤ą„ą¤Ŗą¤¾ą¤¦ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø PDPM'),
(105447, 'https://ror.org/00gn1bk57', 'en', 1, 'https://ror.org/00gn1bk57 Japan Gastroenterological Endoscopy Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¶ˆåŒ–å™Øå†…č¦–é”å­¦ä¼š'),
(105448, 'https://ror.org/00gnrwz95', 'fr', 1, 'https://ror.org/00gnrwz95 Centre Informatique National de l''Enseignement SupƩrieur National Computer Center for Higher Education'),
(105449, 'https://ror.org/00gq2av75', 'en', 1, 'https://ror.org/00gq2av75 Kagoshima Seikyo Hospital é¹æå…å³¶åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆé¹æå…å³¶ē”Ÿå”ē—…é™¢'),
(105450, 'https://ror.org/00gq7p328', 'en', 1, 'https://ror.org/00gq7p328 Universitas Islam Negeri Walisongo Semarang Walisongo State Islamic University'),
(105451, 'https://ror.org/00gt23c81', 'es', 1, 'https://ror.org/00gt23c81 National Autonomous High Andean University of Tarma Universidad Nacional Autónoma Altoandina de Tarma'),
(105452, 'https://ror.org/00gtg0p11', 'fr', 1, 'https://ror.org/00gtg0p11 Centre Ǝle-de-France - Jouy-en-Josas - Antony'),
(105453, 'https://ror.org/00gvj4587', 'en', 1, 'https://ror.org/00gvj4587 Mawlana Bhashani Science and Technology University মাওলানা ভাসানী ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(105454, 'https://ror.org/00gxqh189', 'en', 1, 'https://ror.org/00gxqh189 KKR Sapporo Medical Center å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šęœ­å¹ŒåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(105455, 'https://ror.org/00gykfs38', 'es', 1, 'https://ror.org/00gykfs38 Instituto Especializado de Profesionales de la Salud'),
(105456, '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'),
(105457, 'https://ror.org/00gzkxz88', 'en', 1, 'https://ror.org/00gzkxz88 Hochschule Weihenstephan-Triesdorf Weihenstephan-Triesdorf University of Applied Sciences'),
(105458, 'https://ror.org/00h1aq868', 'en', 1, 'https://ror.org/00h1aq868 Paula Stradiņa KlÄ«niskā universitātes slimnÄ«ca Pauls StradiņŔ Clinical University Hospital'),
(105459, 'https://ror.org/00h1gc758', 'en', 1, 'https://ror.org/00h1gc758 Guilin University of Aerospace Technology ę”‚ęž—čˆŖå¤©å·„äøšå­¦é™¢'),
(105460, 'https://ror.org/00h4fkb86', 'hr', 1, 'https://ror.org/00h4fkb86 Croatian Institute of Public Health Hrvatski zavod za javno zdravstvo'),
(105461, 'https://ror.org/00h4spn88', 'en', 1, 'https://ror.org/00h4spn88 Mahatma Gandhi University ਮਹਾਤਮਾ ਗਾਂਧੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®®ą®•ą®¾ą®¤ąÆą®®ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“®ą“¹ą“¾ą“¤ąµą“®ą“¾ą“—ą“¾ą“Øąµą“§ą“æ ą“øą“°ąµā€ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(105462, 'https://ror.org/00ha1f767', 'es', 1, 'https://ror.org/00ha1f767 Instituto de Investigaciones BiomƩdicas Sols-Morreale Sols-Morreale Biomedical Research Institute'),
(105463, 'https://ror.org/00haq1z06', 'en', 1, 'https://ror.org/00haq1z06 Daemen College'),
(105464, 'https://ror.org/00har9915', 'fr', 1, 'https://ror.org/00har9915 Ɖcole Nationale SupĆ©rieure des Sciences Agronomiques de Bordeaux-Aquitaine'),
(105465, 'https://ror.org/00hb4j726', 'en', 1, 'https://ror.org/00hb4j726 Yokohama Environmental Science Research Institute ęØŖęµœåø‚ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(105466, 'https://ror.org/00hc8av43', 'en', 1, 'https://ror.org/00hc8av43 Japan Space Systems äø€čˆ¬č²”å›£ę³•äŗŗå®‡å®™ć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗåˆ©ē”ØęŽØé€²ę©Ÿę§‹'),
(105467, 'https://ror.org/00hdh0747', 'en', 1, 'https://ror.org/00hdh0747 Northwest Pacific Region Environmental Cooperation Center å…¬ē›Šč²”å›£ę³•äŗŗē’°ę—„ęœ¬ęµ·ē’°å¢ƒå”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(105468, 'https://ror.org/00hgy8d33', 'en', 1, 'https://ror.org/00hgy8d33 Defence Research and Development Canada Recherche & dƩveloppement pour la dƩfense Canada'),
(105469, 'https://ror.org/00hhr3x36', 'en', 1, 'https://ror.org/00hhr3x36 Begum Rokeya University বেগম রোকেয়া ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(105470, 'https://ror.org/00hjhrf26', 'en', 1, 'https://ror.org/00hjhrf26 European Research University EvropskÔ výzkumnÔ univerzita, z.ú.'),
(105471, 'https://ror.org/00hm1dp75', 'en', 1, 'https://ror.org/00hm1dp75 Japan Meteorological Business Support Center äø€čˆ¬č²”å›£ę³•äŗŗę°—č±”ę„­å‹™ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(105472, 'https://ror.org/00hnc9t77', 'en', 1, 'https://ror.org/00hnc9t77 Kunduz University ŲÆ کندز Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† دانؓگاه_Ł‚Ł†ŲÆŁˆŲ²'),
(105473, 'https://ror.org/00hpjtd88', 'en', 1, 'https://ror.org/00hpjtd88 Beit Berl College המכללה ×”××§×“×ž×™×Ŗ בית ×‘×Ø×œ'),
(105474, 'https://ror.org/00hqrwy91', 'pt', 1, 'https://ror.org/00hqrwy91 Ordem dos Nutricionistas'),
(105475, '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'),
(105476, 'https://ror.org/00htrxv69', 'it', 1, 'https://ror.org/00htrxv69 Azienda Socio Sanitaria Territoriale Grande Ospedale Metropolitano Niguarda'),
(105477, 'https://ror.org/00hx6zz33', 'fr', 1, 'https://ror.org/00hx6zz33 Ɖcole Normale SupĆ©rieure Paris-Saclay'),
(105478, 'https://ror.org/00hy0st98', 'id', 1, 'https://ror.org/00hy0st98 Universitas Dehasen Bengkulu'),
(105479, 'https://ror.org/00hyv6j94', 'en', 1, 'https://ror.org/00hyv6j94 Tochigi Prefectural Livestock & Dairy Experimental Center ę ƒęœØēœŒē•œē”£é…Ŗč¾²ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(105480, 'https://ror.org/00hzjtg80', 'no_lang_code', 1, 'https://ror.org/00hzjtg80 COMTES FHT a.s. Comtes Fht (Czechia)'),
(105481, 'https://ror.org/00hzpzv83', 'en', 1, 'https://ror.org/00hzpzv83 Fondation Familiale Trottier Trottier Family Foundation'),
(105482, 'https://ror.org/00hzs6t60', 'en', 1, 'https://ror.org/00hzs6t60 Chuo Kikuu cha Embu University of Embu'),
(105483, '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'),
(105484, 'https://ror.org/00j04tm62', 'en', 1, 'https://ror.org/00j04tm62 Japanese Drug Organization of Appropriate Use and Research ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗåŒ»č–¬å“é©ę­£ä½æē”ØęŽØé€²ę©Ÿę§‹'),
(105485, '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'),
(105486, 'https://ror.org/00j1xwp39', 'en', 1, 'https://ror.org/00j1xwp39 Copenhagen School of Design and Technology KĆøbenhavns Erhvervsakademi'),
(105487, 'https://ror.org/00j1zdb24', 'en', 1, 'https://ror.org/00j1zdb24 NRI Medical College'),
(105488, 'https://ror.org/00j20yy16', 'en', 1, 'https://ror.org/00j20yy16 Nuclear Safety Research Association å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›å®‰å…Øē ”ē©¶å”ä¼š'),
(105489, 'https://ror.org/00j2a7k55', 'no_lang_code', 1, 'https://ror.org/00j2a7k55 Jiaxing University'),
(105490, 'https://ror.org/00j54wy13', 'en', 1, 'https://ror.org/00j54wy13 Instituut voor Natuur- en Bosonderzoek Research Institute for Nature and Forest'),
(105491, 'https://ror.org/00j57qa67', 'en', 1, 'https://ror.org/00j57qa67 International Nosocomial Infection Control Consortium Foundation'),
(105492, 'https://ror.org/00j5nrv77', 'no_lang_code', 1, 'https://ror.org/00j5nrv77 RENA Technologies (Germany)'),
(105493, 'https://ror.org/00j5vv741', 'en', 1, 'https://ror.org/00j5vv741 The Japan Electrical Manufacturers'' Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę©Ÿå·„ę„­ä¼š'),
(105494, 'https://ror.org/00j62qv07', 'en', 1, 'https://ror.org/00j62qv07 Kungliga Vetenskapsakademien Royal Swedish Academy of Sciences Ruotsin kuninkaallinen tiedeakatemia'),
(105495, 'https://ror.org/00j6jx121', 'en', 1, 'https://ror.org/00j6jx121 Japan Concrete Institute å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚³ćƒ³ć‚ÆćƒŖćƒ¼ćƒˆå·„å­¦ä¼š'),
(105496, 'https://ror.org/00j75pt62', 'en', 1, 'https://ror.org/00j75pt62 Technical University of Zvolen'),
(105497, 'https://ror.org/00j7hdq58', 'fr', 0, 'https://ror.org/00j7hdq58 Centre hospitalier affiliƩ universitaire de QuƩbec'),
(105498, 'https://ror.org/00j98j631', 'en', 1, 'https://ror.org/00j98j631 Vinoba Bhave University ą¤µą¤æą¤Øą„‹ą¤¬ą¤¾ ą¤­ą¤¾ą¤µą„‡ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(105499, 'https://ror.org/00j9b6f88', 'es', 1, 'https://ror.org/00j9b6f88 Instituto Maimónides de Investigación Biomédica de Córdoba'),
(105500, 'https://ror.org/00j9qag85', 'en', 1, 'https://ror.org/00j9qag85 Linnaeus University LinnƩ-yliopisto LinnƩuniversitetet'),
(105501, 'https://ror.org/00j9zbm39', 'en', 1, 'https://ror.org/00j9zbm39 Gifu Prefectural Ceramics Research Institute å²é˜œēœŒć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ē ”ē©¶ę‰€'),
(105502, 'https://ror.org/00jakdf17', 'en', 1, 'https://ror.org/00jakdf17 The Social Development Research Center äø€čˆ¬č²”å›£ę³•äŗŗē¤¾ä¼šé–‹ē™ŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(105503, 'https://ror.org/00jcmeh55', 'en', 1, 'https://ror.org/00jcmeh55 University of Emerging Technologies Університет новітніх технологій'),
(105504, 'https://ror.org/00jhp9q75', 'it', 1, 'https://ror.org/00jhp9q75 Azienda UnitĆ  Sanitaria Locale di Ferrara'),
(105505, 'https://ror.org/00jjdh985', 'sk', 1, 'https://ror.org/00jjdh985 VysokÔ Škola Manažmentu, VysokÔ Ŕkola manažmentu, City University of Seattle'),
(105506, 'https://ror.org/00jk0vn85', 'en', 1, 'https://ror.org/00jk0vn85 Institute of Rheumatology Revmatologický Ústav'),
(105507, 'https://ror.org/00jma8s40', 'en', 1, 'https://ror.org/00jma8s40 China Aerodynamics Research and Development Center äø­å›½ē©ŗę°”åŠØåŠ›ē ”ē©¶äøŽå‘å±•äø­åæƒ'),
(105508, 'https://ror.org/00jmsxk74', 'en', 1, 'https://ror.org/00jmsxk74 Putian University čŽ†ē”°å­¦é™¢'),
(105509, 'https://ror.org/00jn4mb53', 'no_lang_code', 1, 'https://ror.org/00jn4mb53 Det Danske Sprog- og Litteraturselskab (Denmark)'),
(105510, 'https://ror.org/00jn5bv28', 'pt', 1, 'https://ror.org/00jn5bv28 Centro de Imagem Biomédica e Investigação Translacional'),
(105511, 'https://ror.org/00jpm9b26', 'en', 1, 'https://ror.org/00jpm9b26 inhbar, Inc., inhbar, Inc. (Japan) ć‚¤ćƒ³ć‚Øć‚¤ćƒćƒćƒ¼åˆåŒä¼šē¤¾'),
(105512, 'https://ror.org/00jqjdp84', 'en', 1, 'https://ror.org/00jqjdp84 The Japanese Society of Pathology äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē—…ē†å­¦ä¼š'),
(105513, 'https://ror.org/00jtk7j90', 'en', 1, 'https://ror.org/00jtk7j90 Roanoke College'),
(105514, 'https://ror.org/00jtmb277', 'en', 1, 'https://ror.org/00jtmb277 University of Wollongong'),
(105515, 'https://ror.org/00jvn6d28', 'en', 1, 'https://ror.org/00jvn6d28 New Mexico Bureau of Geology and Mineral Resources'),
(105516, 'https://ror.org/00jwcjd97', 'en', 0, 'https://ror.org/00jwcjd97 Marine Biodiversity Hub'),
(105517, 'https://ror.org/00k09zh24', 'en', 1, 'https://ror.org/00k09zh24 Japan Patent Information Organization äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē‰¹čØ±ęƒ…å ±ę©Ÿę§‹'),
(105518, 'https://ror.org/00k0k7y87', 'en', 1, 'https://ror.org/00k0k7y87 Babcock University'),
(105519, 'https://ror.org/00k0q6e68', 'en', 1, 'https://ror.org/00k0q6e68 Institute for Building Environment and Energy Conservation äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰ē’°å¢ƒćƒ»ēœć‚Øćƒćƒ«ć‚®ćƒ¼ę©Ÿę§‹'),
(105520, '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'),
(105521, 'https://ror.org/00k2x0z20', 'en', 1, 'https://ror.org/00k2x0z20 Malawi College of Forestry and Wildlife'),
(105522, 'https://ror.org/00k4p0q25', 'en', 1, 'https://ror.org/00k4p0q25 Kurihara Central Hospital ę —åŽŸåø‚ē«‹ę —åŽŸäø­å¤®ē—…é™¢'),
(105523, 'https://ror.org/00k551w06', 'en', 1, 'https://ror.org/00k551w06 Center for Discrete Mathematics and Theoretical Computer Science'),
(105524, 'https://ror.org/00k5r5s45', 'en', 1, 'https://ror.org/00k5r5s45 Iwaki Junior College ć„ć‚ćēŸ­ęœŸå¤§å­¦'),
(105525, 'https://ror.org/00k8tjv84', 'it', 1, 'https://ror.org/00k8tjv84 L’Agenzia per la Meteorologia e Climatologia "ItaliaMeteo"'),
(105526, 'https://ror.org/00katas93', 'pt', 1, 'https://ror.org/00katas93 Fundação Convento da Orada'),
(105527, 'https://ror.org/00kc4c253', 'en', 0, 'https://ror.org/00kc4c253 Information Technology Association of America'),
(105528, 'https://ror.org/00kdk2k41', 'en', 1, 'https://ror.org/00kdk2k41 Okinawa Prefectural Fisheries Research and Extension Center ę²–ēø„ēœŒę°“ē”£ęµ·ę“‹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(105529, 'https://ror.org/00kdk7297', 'en', 1, 'https://ror.org/00kdk7297 LBJ Tropical Medical Center'),
(105530, 'https://ror.org/00kfp3012', 'en', 1, 'https://ror.org/00kfp3012 North Estonia Medical Centre'),
(105531, 'https://ror.org/00kfpzv56', 'en', 1, 'https://ror.org/00kfpzv56 Financial Research Institute of the Ministry of Finance of the Russian Federation ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ финансовый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(105532, 'https://ror.org/00kg1aq11', 'en', 1, 'https://ror.org/00kg1aq11 University of Sialkot جامعہ Ų³ŪŒŲ§Ł„Ś©ŁˆŁ¹'),
(105533, 'https://ror.org/00kg3yf22', 'en', 1, 'https://ror.org/00kg3yf22 Runshaw College'),
(105534, 'https://ror.org/00kh69w15', 'en', 1, 'https://ror.org/00kh69w15 Institute Of Geriatric Medicine And Dentistry äø€čˆ¬č²”å›£ę³•äŗŗč€å¹“ę­Æē§‘åŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(105535, 'https://ror.org/00khnq787', 'en', 1, 'https://ror.org/00khnq787 Kamuzu University of Health Sciences'),
(105536, 'https://ror.org/00kktwv09', 'en', 1, 'https://ror.org/00kktwv09 Inuyama Hospital åŒ»ē™‚ę³•äŗŗę”œę”‚ä¼šēŠ¬å±±ē—…é™¢'),
(105537, 'https://ror.org/00kmde975', 'pt', 1, 'https://ror.org/00kmde975 Instituto de CiĆŖncias Ambientais, QuĆ­micas e FarmacĆŖuticas'),
(105538, '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'),
(105539, 'https://ror.org/00kpwzc89', 'en', 1, 'https://ror.org/00kpwzc89 Musashino Junior College ę­¦č”µé‡ŽēŸ­ęœŸå¤§å­¦'),
(105540, 'https://ror.org/00kq9hk82', 'en', 1, 'https://ror.org/00kq9hk82 Kazakhstan-Russian Medical University ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾-Российский ŠœŠµŠ“ицинский Университет ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½-Ресей ŠœŠµŠ“ициналық Университеті'),
(105541, 'https://ror.org/00ks64q69', 'es', 1, 'https://ror.org/00ks64q69 Corporación Universitaria Latinoamericana'),
(105542, 'https://ror.org/00kt2hh26', 'es', 1, 'https://ror.org/00kt2hh26 Fundación Universitaria Agraria de Colombia - UNIAGRARIA'),
(105543, 'https://ror.org/00kt5kp12', 'no_lang_code', 1, 'https://ror.org/00kt5kp12 MSD (France)'),
(105544, 'https://ror.org/00kvert56', 'pt', 1, 'https://ror.org/00kvert56 Fundação Gaspar Frutuoso'),
(105545, 'https://ror.org/00kw8nz94', 'en', 1, 'https://ror.org/00kw8nz94 SANKO Research Institute å…¬ē›Šč²”å›£ę³•äŗŗäø‰åŗ·ę–‡åŒ–ē ”ē©¶ę‰€'),
(105546, 'https://ror.org/00kxjcd28', 'en', 1, 'https://ror.org/00kxjcd28 Molde University College'),
(105547, 'https://ror.org/00kysjz64', 'en', 1, 'https://ror.org/00kysjz64 Technical University "Metinvest Polytechnic" LLC'),
(105548, 'https://ror.org/00m160r09', 'en', 1, 'https://ror.org/00m160r09 Universitas Pendidikan Nasional University of National Education'),
(105549, 'https://ror.org/00m2ka561', 'pt', 1, 'https://ror.org/00m2ka561 Escola de Hotelaria e Turismo do Porto'),
(105550, 'https://ror.org/00m31ft63', 'en', 1, 'https://ror.org/00m31ft63 SveučiliÅ”te u Splitu University of Split Š”Š²ŠµŃƒŃ‡ŠøŠ»ŠøŃˆŃ‚Šµ у Š”ŠæŠ»ŠøŃ‚Ńƒ'),
(105551, 'https://ror.org/00m3ptg97', 'en', 1, 'https://ror.org/00m3ptg97 Toyosato Hospital å…¬ē›Šč²”å›£ę³•äŗŗč±Šéƒ·ē—…é™¢'),
(105552, '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'),
(105553, 'https://ror.org/00m6y2w67', 'en', 1, 'https://ror.org/00m6y2w67 JAé•·é‡ŽåŽšē”Ÿé€£é¹æę•™ę¹Æäø‰ę‰å±±ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼ Kakeyu-Misayama Rehabilitation Center'),
(105554, 'https://ror.org/00mcb2b28', 'en', 1, 'https://ror.org/00mcb2b28 International Image Sensor Society'),
(105555, 'https://ror.org/00mcjh785', 'en', 1, 'https://ror.org/00mcjh785 Xiamen University åŽ¦é—Øå¤§å­¦'),
(105556, 'https://ror.org/00mfa2s19', 'pt', 1, 'https://ror.org/00mfa2s19 Centro de Investigação em Sistemas Computacionais Embebidos e de Tempo-Real'),
(105557, 'https://ror.org/00mh9zx15', 'en', 1, 'https://ror.org/00mh9zx15 Field Museum of Natural History Museo Field de Historia Natural MusƩum field'),
(105558, 'https://ror.org/00mkp3p47', 'en', 1, 'https://ror.org/00mkp3p47 Jayoti Vidyapeeth Women''s University ą¤œą„ą¤Æą„‹ą¤¤ą¤æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  महिला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(105559, 'https://ror.org/00mp6e841', 'en', 1, 'https://ror.org/00mp6e841 Instituto de TecnologĆ­a Rose-Hulman Rose–Hulman Institute of Technology'),
(105560, 'https://ror.org/00mqc8k54', 'fr', 1, 'https://ror.org/00mqc8k54 FƩdƩration de Chimie et MatƩriaux de Paris-Centre'),
(105561, 'https://ror.org/00msgqq02', 'en', 1, 'https://ror.org/00msgqq02 Steel Memorial Muroran Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč£½é‰„čØ˜åæµå®¤č˜­ē—…é™¢'),
(105562, 'https://ror.org/00mvm1h40', 'en', 1, 'https://ror.org/00mvm1h40 Advanced Diagnostic and Interventional Radiology Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų±Ų§ŲÆŪŒŁˆŁ„ŁˆŚ˜ŪŒ Ł†ŁˆŪŒŁ† و ŲŖŁ‡Ų§Ų¬Ł…ŪŒ'),
(105563, 'https://ror.org/00mvndc02', 'en', 1, 'https://ror.org/00mvndc02 Ivy Tech Community College of Indiana'),
(105564, 'https://ror.org/00mw0tw28', 'en', 1, 'https://ror.org/00mw0tw28 University of Nova Gorica Univerza v Novi Gorici'),
(105565, 'https://ror.org/00mw3br24', 'en', 1, 'https://ror.org/00mw3br24 Institute for Environmental Research Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ł…Ų­ŪŒŲ· زیست'),
(105566, 'https://ror.org/00mw3k977', 'en', 1, 'https://ror.org/00mw3k977 Miyazaki Prefectural Forestry Technology Center å®®å“ŽēœŒęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(105567, 'https://ror.org/00mwh6v70', 'cs', 1, 'https://ror.org/00mwh6v70 Moravian University College Olomouc MoravskĆ” VysokĆ” Skola Olomouc'),
(105568, 'https://ror.org/00mxf7m82', 'pt', 1, 'https://ror.org/00mxf7m82 Deloitte Portugal (Portugal)'),
(105569, 'https://ror.org/00my7df95', 'en', 1, 'https://ror.org/00my7df95 Marwadi Education Foundation'),
(105570, 'https://ror.org/00mz6ad23', 'en', 1, 'https://ror.org/00mz6ad23 University of Jiroft دانؓگاه جیرفت'),
(105571, 'https://ror.org/00n0s9w57', 'en', 1, 'https://ror.org/00n0s9w57 Federal Government of Brazil'),
(105572, 'https://ror.org/00n1gz317', 'en', 1, 'https://ror.org/00n1gz317 Tokyo Kasei Junior College ę±äŗ¬å®¶ę”æå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(105573, 'https://ror.org/00n2c0309', 'fr', 1, 'https://ror.org/00n2c0309 ABSys'),
(105574, 'https://ror.org/00n4rzk96', 'en', 1, 'https://ror.org/00n4rzk96 Kurashiki Sweet Hospital åŒ»ē™‚ę³•äŗŗå’Œé¦™ä¼šå€‰ę•·ć‚¹ć‚¤ćƒ¼ćƒˆćƒ›ć‚¹ćƒ”ć‚æćƒ«'),
(105575, 'https://ror.org/00n5re093', 'en', 1, 'https://ror.org/00n5re093 College of the Atlantic'),
(105576, 'https://ror.org/00n619376', 'id', 1, 'https://ror.org/00n619376 Universitas Wijaya Kusuma Surabaya'),
(105577, 'https://ror.org/00n6txq60', 'en', 1, 'https://ror.org/00n6txq60 Nanjing Institute of Technology'),
(105578, 'https://ror.org/00nc7ge81', 'pt', 1, 'https://ror.org/00nc7ge81 Centro de Investigação em Justiça e Governação'),
(105579, 'https://ror.org/00ndrvk93', 'en', 1, 'https://ror.org/00ndrvk93 Xinjiang Normal University ؓىنجاڭ Ł¾Ł‰ŲÆŲ§ŚÆŁˆŚÆŪŁƒŲ§ ئۇنىۋېرسىتېتى ę–°ē–†åøˆčŒƒå¤§å­¦'),
(105580, 'https://ror.org/00ne6sr39', 'es', 1, 'https://ror.org/00ne6sr39 Deustuko Unibertsitatea Universidad de Deusto Universidade de Deusto University of Deusto'),
(105581, 'https://ror.org/00nehgv82', 'en', 0, 'https://ror.org/00nehgv82 Datascope Analytics'),
(105582, 'https://ror.org/00nf9rg18', 'en', 1, 'https://ror.org/00nf9rg18 Japan Accreditation Board å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é©åˆę€§čŖå®šå”ä¼š'),
(105583, 'https://ror.org/00nga8w52', 'en', 1, 'https://ror.org/00nga8w52 Nepal Orthopaedic Hospital'),
(105584, 'https://ror.org/00nh9re35', 'de', 1, 'https://ror.org/00nh9re35 Hessisches Landesarchiv'),
(105585, 'https://ror.org/00nhpg097', 'en', 1, 'https://ror.org/00nhpg097 Kobe College of Education ē„žęˆøę•™č‚²ēŸ­ęœŸå¤§å­¦'),
(105586, 'https://ror.org/00nj85p14', 'en', 1, 'https://ror.org/00nj85p14 JAå²é˜œåŽšē”Ÿé€£č„æē¾ŽęæƒåŽšē”Ÿē—…é™¢ Nishimino Kosei Hospital'),
(105587, 'https://ror.org/00nk5y742', 'es', 1, 'https://ror.org/00nk5y742 Universidad Internacional SEK'),
(105588, 'https://ror.org/00nmbr691', 'en', 1, 'https://ror.org/00nmbr691 Japan Inspection Association of Food and Food Industry Environment äø€čˆ¬č²”å›£ę³•äŗŗé£Ÿå“ē’°å¢ƒę¤œęŸ»å”ä¼š'),
(105589, 'https://ror.org/00nmgny79', 'de', 1, 'https://ror.org/00nmgny79 Bundeswehr'),
(105590, 'https://ror.org/00nmvbd84', 'en', 1, 'https://ror.org/00nmvbd84 Sunan Kalijaga State Islamic University Yogyakarta Universitas Islam Negeri Sunan Kalijaga Yogyakarta'),
(105591, 'https://ror.org/00nnxmp87', 'en', 1, 'https://ror.org/00nnxmp87 Kagawa Prefectural Industrial Technology Center é¦™å·ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(105592, 'https://ror.org/00nrj9146', 'en', 1, 'https://ror.org/00nrj9146 Kobe Tokiwa Junior College ē„žęˆøåøøē›¤å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(105593, 'https://ror.org/00nt6ka44', 'en', 1, 'https://ror.org/00nt6ka44 Ƈağ University Ƈağ Ɯniversitesi'),
(105594, 'https://ror.org/00nw66q03', 'es', 1, 'https://ror.org/00nw66q03 Universidad Privada Franz Tamayo'),
(105595, 'https://ror.org/00nwxj335', 'en', 1, 'https://ror.org/00nwxj335 Hokkaido Cardiovascular Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ—ęµ·é“å¾Ŗē’°å™Øē—…é™¢'),
(105596, 'https://ror.org/00nxce326', 'es', 1, 'https://ror.org/00nxce326 Fundación Universitaria Cafam'),
(105597, 'https://ror.org/00nxz6d14', 'en', 1, 'https://ror.org/00nxz6d14 State University of Management Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(105598, 'https://ror.org/00nya5t35', 'pt', 1, 'https://ror.org/00nya5t35 Academia da ForƧa AƩrea Brazilian Air Force Academy'),
(105599, 'https://ror.org/00nyaem62', 'pt', 1, 'https://ror.org/00nyaem62 GrƩmio LiterƔrio'),
(105600, 'https://ror.org/00nzccc08', 'id', 1, 'https://ror.org/00nzccc08 Universitas Prima Indonesia'),
(105601, 'https://ror.org/00p034093', 'en', 1, 'https://ror.org/00p034093 University of Engineering and Technology Peshawar Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ پؓاور ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ.'),
(105602, 'https://ror.org/00p0fvr40', 'pt', 1, 'https://ror.org/00p0fvr40 Centro de Investigação em Informação Comunicação e Cultura Digital'),
(105603, 'https://ror.org/00p0pr527', 'pt', 1, 'https://ror.org/00p0pr527 Centro de Estudos ClƔssicos e Humanƭsticos'),
(105604, 'https://ror.org/00p11pk44', 'en', 1, 'https://ror.org/00p11pk44 Wabash College'),
(105605, 'https://ror.org/00p4ywg82', 'en', 1, 'https://ror.org/00p4ywg82 Marian University - Indiana'),
(105606, 'https://ror.org/00p666k70', 'es', 1, 'https://ror.org/00p666k70 Instituto Campechano'),
(105607, 'https://ror.org/00p6b0z91', 'en', 1, 'https://ror.org/00p6b0z91 Nippon Koukan Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ć“ć†ć‹ć‚“ä¼šę—„ęœ¬é‹¼ē®”ē—…é™¢'),
(105608, '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'),
(105609, 'https://ror.org/00p9hna44', 'en', 1, 'https://ror.org/00p9hna44 Aisei Hospital å…¬ē›Šč²”å›£ę³•äŗŗę„›äø–ä¼šę„›čŖ ē—…é™¢'),
(105610, 'https://ror.org/00pcv0g02', 'en', 1, 'https://ror.org/00pcv0g02 Ibero-American University Puebla Universidad Iberoamericana Puebla'),
(105611, 'https://ror.org/00pdej676', 'en', 1, 'https://ror.org/00pdej676 Cracow University of Technology Politechnika Krakowska im. Tadeusza Kościuszki'),
(105612, 'https://ror.org/00pdqy006', 'en', 1, 'https://ror.org/00pdqy006 Textile Research Institute of Gunma ē¾¤é¦¬ēœŒē¹Šē¶­å·„ę„­č©¦éØ“å “'),
(105613, 'https://ror.org/00pjdza24', 'en', 1, 'https://ror.org/00pjdza24 Universidad de California University of California System UniversitƩ de Californie'),
(105614, 'https://ror.org/00pkaf287', 'en', 1, 'https://ror.org/00pkaf287 The Distribution Economics Institute of Japan å…¬ē›Šč²”å›£ę³•äŗŗęµé€šēµŒęøˆē ”ē©¶ę‰€'),
(105615, 'https://ror.org/00pm9ra94', 'en', 1, 'https://ror.org/00pm9ra94 Kumamoto Shinto General Hospital åŒ»ē™‚ę³•äŗŗå‰µčµ·ä¼šćć¾ć‚‚ćØę£®éƒ½ē·åˆē—…é™¢'),
(105616, 'https://ror.org/00pmyff63', 'en', 1, 'https://ror.org/00pmyff63 Union Adventist University'),
(105617, 'https://ror.org/00pqk4h50', 'en', 1, 'https://ror.org/00pqk4h50 Chiba Industrial Technology Research Institute åƒč‘‰ēœŒē”£ę„­ę”Æę“ęŠ€č”“ē ”ē©¶ę‰€'),
(105618, 'https://ror.org/00pv45a02', 'de', 1, 'https://ror.org/00pv45a02 FH Münster, Fachhochschule Münster'),
(105619, 'https://ror.org/00pv5gd36', 'en', 1, 'https://ror.org/00pv5gd36 Kameoka Municipal Hospital 亀岔市立病院'),
(105620, 'https://ror.org/00pv6h884', 'id', 1, 'https://ror.org/00pv6h884 Universitas Muhammadiyah Banjarmasin'),
(105621, 'https://ror.org/00pv8s374', 'en', 1, 'https://ror.org/00pv8s374 Avrasya University Avrasya Üniversitesi'),
(105622, 'https://ror.org/00pvhed30', 'en', 1, 'https://ror.org/00pvhed30 City Literary Institute'),
(105623, 'https://ror.org/00pxfwe85', 'en', 1, 'https://ror.org/00pxfwe85 National Museums Scotland'),
(105624, 'https://ror.org/00py6z575', 'en', 1, 'https://ror.org/00py6z575 San Diego Community College District'),
(105625, 'https://ror.org/00pzcqk77', 'en', 1, 'https://ror.org/00pzcqk77 Asakura Medical Association Hospital äø€čˆ¬ē¤¾å›£ę³•äŗŗęœå€‰åŒ»åø«ä¼šęœå€‰åŒ»åø«ä¼šē—…é™¢'),
(105626, 'https://ror.org/00q3c5d02', 'pt', 1, 'https://ror.org/00q3c5d02 Universidade Paulista Campinas'),
(105627, 'https://ror.org/00q523p52', 'en', 1, 'https://ror.org/00q523p52 National Formosa University'),
(105628, 'https://ror.org/00q644y50', 'en', 1, 'https://ror.org/00q644y50 Hochschule Reutlingen Reutlingen University'),
(105629, 'https://ror.org/00q898q52', 'en', 1, 'https://ror.org/00q898q52 University of Medical Sciences, Ondo'),
(105630, 'https://ror.org/00q8h8k29', 'es', 1, 'https://ror.org/00q8h8k29 Centro de Investigaciones en Optica'),
(105631, 'https://ror.org/00q9atg80', 'en', 1, 'https://ror.org/00q9atg80 Anhui University of Science and Technology 安徽理巄大学'),
(105632, 'https://ror.org/00qa6r925', 'en', 1, 'https://ror.org/00qa6r925 Kyoto University of Advanced Science äŗ¬éƒ½å…ˆē«Æē§‘å­¦å¤§å­¦'),
(105633, 'https://ror.org/00qakfc35', 'en', 1, 'https://ror.org/00qakfc35 Hochschule Pforzheim Pforzheim University of Applied Sciences'),
(105634, 'https://ror.org/00qar5s49', 'en', 1, 'https://ror.org/00qar5s49 The Japan Society of Information and Communication å…¬ē›Šč²”å›£ę³•äŗŗęƒ…å ±é€šäæ”å­¦ä¼š'),
(105635, 'https://ror.org/00qd31w11', 'en', 1, 'https://ror.org/00qd31w11 King Abdullah Petroleum Studies and Research Center Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ عبدالله للدراسات ŁˆŲ§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„ŲØŲŖŲ±ŁˆŁ„ŁŠŲ©'),
(105636, 'https://ror.org/00qdc6m37', 'pt', 1, 'https://ror.org/00qdc6m37 Federal University of SĆ£o Carlos Universidade Federal de SĆ£o Carlos'),
(105637, 'https://ror.org/00qembr49', 'en', 1, 'https://ror.org/00qembr49 The Japanese Society of Hematology äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č”€ę¶²å­¦ä¼š'),
(105638, 'https://ror.org/00qerpb33', 'en', 1, 'https://ror.org/00qerpb33 National Superconducting Cyclotron Laboratory'),
(105639, 'https://ror.org/00qhdy563', 'fr', 1, 'https://ror.org/00qhdy563 UniversitƩ Paul-ValƩry Montpellier, UniversitƩ Paul-ValƩry Montpellier III'),
(105640, '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'),
(105641, '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'),
(105642, 'https://ror.org/00qq6h941', 'en', 1, 'https://ror.org/00qq6h941 St. Andrew''s University of Education ę”ƒå±±å­¦é™¢ę•™č‚²å¤§å­¦'),
(105643, 'https://ror.org/00qqx3790', 'en', 1, 'https://ror.org/00qqx3790 Forestry Research Institute of Sweden'),
(105644, 'https://ror.org/00qrcbh63', 'en', 1, 'https://ror.org/00qrcbh63 Mie Prefectural General Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗäø‰é‡ēœŒē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(105645, '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'),
(105646, 'https://ror.org/00qsdn986', 'en', 1, 'https://ror.org/00qsdn986 Academy of Athens AcadĆ©mie d''athĆØnes ΑκαΓημία Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(105647, 'https://ror.org/00qsh5z35', 'pt', 1, 'https://ror.org/00qsh5z35 Centro de FĆ­sica'),
(105648, 'https://ror.org/00qsrmq07', 'en', 1, 'https://ror.org/00qsrmq07 Japan Railway Construction, Transport and Technology Agency ē‹¬ē«‹č”Œę”æę³•äŗŗé‰„é“å»ŗčØ­ćƒ»é‹č¼øę–½čØ­ę•“å‚™ę”Æę“ę©Ÿę§‹'),
(105649, 'https://ror.org/00qsyw664', 'en', 1, 'https://ror.org/00qsyw664 Istanbul Aydın University İstanbul Aydın Üniversitesi'),
(105650, 'https://ror.org/00qz2t575', 'pt', 1, 'https://ror.org/00qz2t575 Centro de Investigação em Ciências da Saúde'),
(105651, 'https://ror.org/00r2r5k05', 'en', 1, 'https://ror.org/00r2r5k05 University of West Attica Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Δυτικής Αττικής'),
(105652, 'https://ror.org/00r3bk393', 'en', 1, 'https://ror.org/00r3bk393 Pratiksha Institute of Pharmaceutical Sciences'),
(105653, 'https://ror.org/00r4sry34', 'en', 1, 'https://ror.org/00r4sry34 Murdoch University'),
(105654, 'https://ror.org/00r63rv29', 'es', 1, 'https://ror.org/00r63rv29 Universidad PolitƩcnica de Pachuca'),
(105655, 'https://ror.org/00r6qej07', 'en', 1, 'https://ror.org/00r6qej07 Medical College For Women and Hospital'),
(105656, 'https://ror.org/00r7nkg08', 'en', 1, 'https://ror.org/00r7nkg08 Brixsana Private Clinic'),
(105657, 'https://ror.org/00r9t7n55', 'en', 1, 'https://ror.org/00r9t7n55 Gümüşhane University Gümüşhane Üniversitesi'),
(105658, 'https://ror.org/00r9vb833', 'en', 1, 'https://ror.org/00r9vb833 University Hospital Centre Zagreb ŠšŠ‘Š¦ Загреб'),
(105659, 'https://ror.org/00ra1q261', 'es', 1, 'https://ror.org/00ra1q261 Facultad de Contaduría y Administración'),
(105660, 'https://ror.org/00rd5t069', 'en', 1, 'https://ror.org/00rd5t069 Wenzhou Medical University ęø©å·žåŒ»ē§‘å¤§å­¦'),
(105661, 'https://ror.org/00rf3br26', 'en', 1, 'https://ror.org/00rf3br26 Kerala Veterinary and Animal Sciences University ą“•ąµ‡ą“°ą“³ ą“µąµ†ą“±ąµą“±ą“±ą“æą“Øą“±ą“æ ą“†ą“Øąµą“±ąµ ą“…ą“Øą“æą“®ąµ½ ą“øą“Æąµ»ą“øąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(105662, 'https://ror.org/00rg6zq05', 'en', 1, 'https://ror.org/00rg6zq05 U.S. Army Research Institute of Environmental Medicine'),
(105663, 'https://ror.org/00rgp3j19', 'en', 1, 'https://ror.org/00rgp3j19 Japanese Society of Veterinary Science å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē£åŒ»å­¦ä¼š'),
(105664, 'https://ror.org/00rj2jz45', 'id', 1, 'https://ror.org/00rj2jz45 Bandung University of Technology Universitas Teknologi Bandung'),
(105665, 'https://ror.org/00rj4x019', 'en', 1, 'https://ror.org/00rj4x019 Radiological Society of North America'),
(105666, 'https://ror.org/00rky3x16', 'no_lang_code', 1, 'https://ror.org/00rky3x16 ArchLab'),
(105667, 'https://ror.org/00rmfsa57', 'en', 1, 'https://ror.org/00rmfsa57 SongShan ShaoLin WuShu College åµ©å±±å°‘ęž—ę­¦ęœÆčŒäøšå­¦é™¢'),
(105668, 'https://ror.org/00rv6r564', 'en', 1, 'https://ror.org/00rv6r564 Balfour Hospital'),
(105669, 'https://ror.org/00rw99n54', 'en', 1, 'https://ror.org/00rw99n54 Institute of Local Government äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½č‡Ŗę²»å”ä¼š'),
(105670, 'https://ror.org/00rwjvc96', 'en', 1, 'https://ror.org/00rwjvc96 Center for Environmental Economics - Montpellier Centre d''Economie de l''Environnement - Montpellier'),
(105671, 'https://ror.org/00rwzgx62', 'en', 1, 'https://ror.org/00rwzgx62 Fort Hays State University'),
(105672, 'https://ror.org/00rz3ed53', 'en', 1, 'https://ror.org/00rz3ed53 Merck Canada Inc., Merck Canada Inc. (Canada)'),
(105673, 'https://ror.org/00s19x989', 'fr', 1, 'https://ror.org/00s19x989 CNRS IngƩnierie'),
(105674, 'https://ror.org/00s48x343', 'en', 1, 'https://ror.org/00s48x343 South Eastern Regional College'),
(105675, 'https://ror.org/00s582s04', 'es', 1, 'https://ror.org/00s582s04 Universidad Alas Peruanas'),
(105676, 'https://ror.org/00s67c790', 'en', 1, 'https://ror.org/00s67c790 Eesti Maaülikool Estonian University of Life Sciences'),
(105677, 'https://ror.org/00s8vne50', 'en', 1, 'https://ror.org/00s8vne50 Yerevan State University ŌµÖ€Ö‡Õ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(105678, 'https://ror.org/00s9vmn82', 'en', 1, 'https://ror.org/00s9vmn82 Antioquia Institute of Technology Tecnológico de Antioquia'),
(105679, 'https://ror.org/00sc9n023', 'en', 1, 'https://ror.org/00sc9n023 Yunnan Normal University äŗ‘å—åøˆčŒƒå¤§å­¦'),
(105680, 'https://ror.org/00scnsb87', 'en', 1, 'https://ror.org/00scnsb87 Zhejiang Yuexiu University ęµ™ę±Ÿč¶Šē§€å¤–å›½čÆ­å­¦é™¢'),
(105681, 'https://ror.org/00sdcjz77', 'en', 1, 'https://ror.org/00sdcjz77 Shenzhen Bay Laboratory ę·±åœ³ę¹¾å®žéŖŒå®¤'),
(105682, 'https://ror.org/00sdn4d17', 'tr', 1, 'https://ror.org/00sdn4d17 İstanbul Sisli Meslek Yüksekokulu'),
(105683, 'https://ror.org/00sh19a92', 'it', 1, 'https://ror.org/00sh19a92 Ente Ospedaliero Cantonale'),
(105684, 'https://ror.org/00shpc021', 'fr', 1, 'https://ror.org/00shpc021 Fonds de Recherche du QuƩbec - SociƩtƩ et culture'),
(105685, 'https://ror.org/00shzgx32', 'en', 1, 'https://ror.org/00shzgx32 Methodist University of Piracicaba Universidade Metodista de Piracicaba'),
(105686, 'https://ror.org/00sjd5653', 'en', 1, 'https://ror.org/00sjd5653 Ibaraki University čŒØåŸŽå¤§å­¦'),
(105687, 'https://ror.org/00sjzkg31', 'en', 1, 'https://ror.org/00sjzkg31 Geo-Research Institute äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸåœ°ē›¤ē’°å¢ƒē ”ē©¶ę‰€'),
(105688, 'https://ror.org/00skee651', 'pt', 1, 'https://ror.org/00skee651 Instituto Para Os Sistemas e Tecnologias de Informação Controlo e Comunicação'),
(105689, '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'),
(105690, 'https://ror.org/00smn7825', 'en', 1, 'https://ror.org/00smn7825 Dubna State University Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”ŃƒŠ±Š½Š°Ā»'),
(105691, 'https://ror.org/00spd2n27', 'en', 1, 'https://ror.org/00spd2n27 National Institute of Health Researches of Iran Ł…ŁˆŲ³Ų³Ł‡ Ł…Ł„ŪŒ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ سلامت'),
(105692, 'https://ror.org/00sq42p81', 'en', 0, 'https://ror.org/00sq42p81 Institute for Animal Science äø€čˆ¬č²”å›£ę³•äŗŗå®¶ē•œå­¦ē ”ē©¶ę‰€'),
(105693, 'https://ror.org/00sq4df16', 'en', 1, 'https://ror.org/00sq4df16 Japanese Dermatological Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēš®č†šē§‘å­¦ä¼š'),
(105694, 'https://ror.org/00sr5kc20', 'en', 1, 'https://ror.org/00sr5kc20 Universitas Timor University of Timor'),
(105695, 'https://ror.org/00ste1919', 'en', 1, 'https://ror.org/00ste1919 Tashkent Pharmaceutical Institute Toshkent farmatsevtika instituti'),
(105696, 'https://ror.org/00sv37239', 'en', 1, 'https://ror.org/00sv37239 Sakai City Institute of Public Health å ŗåø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(105697, 'https://ror.org/00sw6rd76', 'no_lang_code', 1, 'https://ror.org/00sw6rd76 Bilad Alrafidain University College ŁƒŁ„ŁŠŲ© بلاد Ų§Ł„Ų±Ų§ŁŲÆŁŠŁ† الجامعة'),
(105698, 'https://ror.org/00swkht58', 'en', 1, 'https://ror.org/00swkht58 Bukhara State Medical Institute'),
(105699, 'https://ror.org/00sx0cd23', 'en', 1, 'https://ror.org/00sx0cd23 Balseiro Institute Instituto Balseiro'),
(105700, '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ā€ ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украины ""Киевский политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š˜Š³Š¾Ń€Ń Дикорского"", ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украины «Киевский политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š˜Š³Š¾Ń€Ń Дикорского» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ України ""ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ політехнічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ імені Š†Š³Š¾Ń€Ń Š”Ń–ŠŗŠ¾Ń€ŃŃŒŠŗŠ¾Š³Š¾"", ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ України Ā«ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ політехнічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ імені Š†Š³Š¾Ń€Ń Š”Ń–ŠŗŠ¾Ń€ŃŃŒŠŗŠ¾Š³Š¾Ā»'),
(105701, 'https://ror.org/00szawm58', 'fr', 1, 'https://ror.org/00szawm58 Polytech Tours'),
(105702, 'https://ror.org/00szdrw29', 'es', 1, 'https://ror.org/00szdrw29 Facultad de Estudios Superiores Aragón'),
(105703, 'https://ror.org/00t09ra09', 'en', 1, 'https://ror.org/00t09ra09 Toyama Prefectural Police 富山県警察'),
(105704, 'https://ror.org/00t134269', 'en', 1, 'https://ror.org/00t134269 Aichi Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗę„›ēŸ„ēœŒåŒ»åø«ä¼š'),
(105705, 'https://ror.org/00t4cvq91', 'en', 1, 'https://ror.org/00t4cvq91 Harding University Main Campus'),
(105706, 'https://ror.org/00t5ccq33', 'en', 1, 'https://ror.org/00t5ccq33 Louvre Abou Dabi Louvre Abu Dhabi Ų§Ł„Ł„ŁˆŁŲ± أبوظبي'),
(105707, 'https://ror.org/00t5e2y66', 'fr', 1, 'https://ror.org/00t5e2y66 UniversitƩ Joseph Ki-Zerbo, UniversitƩ de Ouagadougou'),
(105708, 'https://ror.org/00t5j6b61', 'kl', 1, 'https://ror.org/00t5j6b61 GrĆønlands Universitet Ilisimatusarfik University of Greenland'),
(105709, 'https://ror.org/00t76qa96', 'en', 1, 'https://ror.org/00t76qa96 KIDS First äø€čˆ¬č²”å›£ę³•äŗŗć‚­ćƒƒć‚ŗćƒ•ć‚”ćƒ¼ć‚¹ćƒˆ'),
(105710, 'https://ror.org/00t7bpe49', 'en', 1, 'https://ror.org/00t7bpe49 European University of Lefke Lefke Avrupa Üniversitesi'),
(105711, 'https://ror.org/00t89vb53', 'en', 1, 'https://ror.org/00t89vb53 SveučiliÅ”te u Zadru University of Zadar Š”Š²ŠµŃƒŃ‡ŠøŠ»ŠøŃˆŃ‚Šµ у Š—Š°Š“Ń€Ńƒ'),
(105712, 'https://ror.org/00t9n0h58', 'pt', 1, 'https://ror.org/00t9n0h58 Instituto PolitƩcnico de Beja Polytechnic Institute of Beja'),
(105713, 'https://ror.org/00taa2s29', 'en', 1, 'https://ror.org/00taa2s29 University of Tripoli UniversitĆ  di Tripoli Ų¬Ų§Ł…Ų¹Ų© طرابلس'),
(105714, 'https://ror.org/00tdyb139', 'en', 0, 'https://ror.org/00tdyb139 Carnegie Department of Plant Biology'),
(105715, 'https://ror.org/00tebkv94', 'fr', 1, 'https://ror.org/00tebkv94 Centre Nouvelle Aquitaine-Bordeaux'),
(105716, 'https://ror.org/00tecsr44', 'en', 1, 'https://ror.org/00tecsr44 Gunma Industry Support Organization å…¬ē›Šč²”å›£ę³•äŗŗē¾¤é¦¬ēœŒē”£ę„­ę”Æę“ę©Ÿę§‹'),
(105717, 'https://ror.org/00thhhw55', 'en', 1, 'https://ror.org/00thhhw55 Iqra University'),
(105718, 'https://ror.org/00thr3w71', 'no_lang_code', 1, 'https://ror.org/00thr3w71 Alnylam Pharmaceuticals (United States)'),
(105719, 'https://ror.org/00tjh4k26', 'en', 1, 'https://ror.org/00tjh4k26 Acharya N. G. Ranga Agricultural University'),
(105720, 'https://ror.org/00tjqcr17', 'en', 1, 'https://ror.org/00tjqcr17 The Japanese Psychological Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åæƒē†å­¦ä¼š'),
(105721, 'https://ror.org/00tpr5718', 'pt', 1, 'https://ror.org/00tpr5718 Centro de Investigação em Sistemas e Tecnologias'),
(105722, 'https://ror.org/00tqx3b24', 'en', 1, 'https://ror.org/00tqx3b24 Rajagiri College of Social Sciences (Autonomous)'),
(105723, 'https://ror.org/00tse2b39', 'ca', 1, 'https://ror.org/00tse2b39 International University of Catalonia Universidad Internacional de CataluƱa Universitat Internacional de Catalunya'),
(105724, 'https://ror.org/00twb6c09', 'en', 1, 'https://ror.org/00twb6c09 Riga Technical University Rygos technikos universitetas RÄ«gas Tehniskā universitāte Рижский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105725, 'https://ror.org/00tydck69', 'en', 1, 'https://ror.org/00tydck69 Software Information Center äø€čˆ¬č²”å›£ę³•äŗŗć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(105726, 'https://ror.org/00tyjp878', 'en', 1, 'https://ror.org/00tyjp878 Jiangsu University of Science and Technology ę±Ÿč‹ē§‘ęŠ€å¤§å­¦'),
(105727, 'https://ror.org/00tykj324', 'en', 1, 'https://ror.org/00tykj324 Kihara Memorial Yokohama Foundation for the Advancement of Life Sciences å…¬ē›Šč²”å›£ę³•äŗŗęœØåŽŸčØ˜åæµęØŖęµœē”Ÿå‘½ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(105728, 'https://ror.org/00tzybz48', 'en', 1, 'https://ror.org/00tzybz48 Japan Child and Family Research Institute ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęÆå­ę„›č‚²ä¼šę—„ęœ¬å­ć©ć‚‚å®¶åŗ­ē·åˆē ”ē©¶ę‰€'),
(105729, 'https://ror.org/00v542r37', 'en', 1, 'https://ror.org/00v542r37 World Maritime University'),
(105730, 'https://ror.org/00v5mf634', 'en', 1, 'https://ror.org/00v5mf634 Hiroshima Community Research Center č²”å›£ę³•äŗŗåŗƒå³¶åœ°åŸŸē¤¾ä¼šē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(105731, 'https://ror.org/00v5th343', 'en', 1, 'https://ror.org/00v5th343 Tokyo Geographical Society å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬åœ°å­¦å”ä¼š'),
(105732, 'https://ror.org/00v9fsy28', 'en', 1, 'https://ror.org/00v9fsy28 Mohamed Sathak College of Arts and Science'),
(105733, 'https://ror.org/00vasag41', 'en', 1, 'https://ror.org/00vasag41 University of Neuchâtel Universität Neuenburg Université de Neuchâtel'),
(105734, 'https://ror.org/00vbp6334', 'en', 1, 'https://ror.org/00vbp6334 Tokyo Bay Rehabilitation Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£äæå„ä¼šę±äŗ¬ę¹¾å²øćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(105735, 'https://ror.org/00vc14296', 'en', 1, 'https://ror.org/00vc14296 Hanover College'),
(105736, 'https://ror.org/00vc3qb55', 'en', 1, 'https://ror.org/00vc3qb55 Japan Power Engineering and Inspection Corporation äø€čˆ¬č²”å›£ę³•äŗŗē™ŗé›»čØ­å‚™ęŠ€č”“ę¤œęŸ»å”ä¼š'),
(105737, 'https://ror.org/00vepg991', 'en', 1, 'https://ror.org/00vepg991 Ceramic Research Center of Nagasaki é•·å“ŽēœŒēŖÆę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(105738, 'https://ror.org/00vg14f79', 'en', 1, 'https://ror.org/00vg14f79 Illinois Indiana Sea Grant'),
(105739, 'https://ror.org/00vgfzn51', 'es', 1, 'https://ror.org/00vgfzn51 Universidad Argentina de la Empresa UniversitƩ argentine de la empresa'),
(105740, 'https://ror.org/00vh46373', 'en', 1, 'https://ror.org/00vh46373 Center for Solid Waste Research مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ł…ŁˆŲ§ŲÆ Ų²Ų§Ų¦ŲÆ Ų¬Ų§Ł…ŲÆ'),
(105741, 'https://ror.org/00vjd4k74', 'en', 1, 'https://ror.org/00vjd4k74 HHL Leipzig Graduate School of Management Handelshochschule Leipzig'),
(105742, 'https://ror.org/00vjwyg07', 'en', 1, 'https://ror.org/00vjwyg07 Kinjo College é‡‘åŸŽå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(105743, 'https://ror.org/00vkt8a90', 'en', 1, 'https://ror.org/00vkt8a90 Red Sea Global, Red Sea Global (Saudi Arabia) البحر الأحمر Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(105744, 'https://ror.org/00vmr6593', 'en', 1, 'https://ror.org/00vmr6593 Muhammad Nawaz Shareef University of Agriculture Ł…Ų­Ł…ŲÆ Ł†ŁˆŲ§Ų² ؓریف ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§ŪŒŚÆŲ±ŪŒŚ©Ł„Ś†Ų±'),
(105745, 'https://ror.org/00vmrsn64', 'en', 1, 'https://ror.org/00vmrsn64 Fujiyoshida Municipal Medical Center å›½ę°‘å„åŗ·äæé™ŗåÆŒå£«å‰ē”°åø‚ē«‹ē—…é™¢'),
(105746, 'https://ror.org/00vnfmn19', 'en', 1, 'https://ror.org/00vnfmn19 NSF Ocean Observatories Initiative'),
(105747, 'https://ror.org/00vr49948', 'es', 1, 'https://ror.org/00vr49948 National Agrarian University La Molina Universidad Nacional Agraria La Molina'),
(105748, 'https://ror.org/00vs8d940', 'en', 1, 'https://ror.org/00vs8d940 University of Bradford'),
(105749, 'https://ror.org/00vsxg936', 'en', 1, 'https://ror.org/00vsxg936 University of Bouira Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁˆŁŠŲ±Ų©'),
(105750, 'https://ror.org/00vx61498', 'en', 1, 'https://ror.org/00vx61498 Aichi University of Technology Automotive Junior College ę„›ēŸ„å·„ē§‘å¤§å­¦č‡Ŗå‹•č»ŠēŸ­ęœŸå¤§å­¦'),
(105751, 'https://ror.org/00vye5g85', 'en', 1, 'https://ror.org/00vye5g85 Research Centre in Digitalization and Intelligent Robotics'),
(105752, 'https://ror.org/00vywdr32', 'en', 1, 'https://ror.org/00vywdr32 InŔtitut za hmeljarstvo in pivovarstvo Slovenije Slovenian Institute of Hop Research and Brewing'),
(105753, 'https://ror.org/00vzprm14', 'en', 1, 'https://ror.org/00vzprm14 Shandong Management University å±±äøœē®”ē†å¤§å­¦'),
(105754, 'https://ror.org/00vzywk83', 'pt', 1, 'https://ror.org/00vzywk83 Museu de Cerâmica'),
(105755, 'https://ror.org/00w16jn86', 'en', 1, 'https://ror.org/00w16jn86 Uji-Tokushukai Medical Center åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šå®‡ę²»å¾³ę“²ä¼šē—…é™¢'),
(105756, 'https://ror.org/00w641b14', 'en', 1, 'https://ror.org/00w641b14 George Fox University'),
(105757, 'https://ror.org/00w73cg32', 'en', 1, 'https://ror.org/00w73cg32 American University of Kuwait الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ų§Ł„ŁƒŁˆŁŠŲŖ'),
(105758, 'https://ror.org/00w7jwe49', 'en', 1, 'https://ror.org/00w7jwe49 People’s Hospital of Rizhao'),
(105759, 'https://ror.org/00w7mf142', 'en', 1, 'https://ror.org/00w7mf142 Universitat d''Andorra University of Andorra'),
(105760, 'https://ror.org/00w7qnw63', 'en', 1, 'https://ror.org/00w7qnw63 Sapporo International Junior College ęœ­å¹Œå›½éš›å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(105761, 'https://ror.org/00w9q2c06', 'en', 1, 'https://ror.org/00w9q2c06 Interkantonale Hochschule für Heilpädagogik University of Teacher Education in Special Needs'),
(105762, 'https://ror.org/00w9tx359', 'en', 1, 'https://ror.org/00w9tx359 University of Science and Technology Chittagong ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦øą¦¾ą¦‡ą¦Øą§ą¦ø ą¦ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦®'),
(105763, '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'),
(105764, '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'),
(105765, 'https://ror.org/00wbse129', 'fr', 1, 'https://ror.org/00wbse129 Sciences de l''AntiquitƩ et du Moyen-Age'),
(105766, 'https://ror.org/00wbwde85', 'id', 1, 'https://ror.org/00wbwde85 Nahdlatul Ulama University of Surabaya Universitas Nahdlatul Ulama Surabaya'),
(105767, 'https://ror.org/00wgjpw02', 'en', 1, 'https://ror.org/00wgjpw02 Mount Sinai Medical Center'),
(105768, 'https://ror.org/00wgkqx32', 'en', 1, 'https://ror.org/00wgkqx32 The River Foundation å…¬ē›Šč²”å›£ę³•äŗŗę²³å·č²”å›£'),
(105769, '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'),
(105770, 'https://ror.org/00wn5gw44', 'en', 1, 'https://ror.org/00wn5gw44 Great Zimbabwe University'),
(105771, 'https://ror.org/00wpfwd87', 'en', 1, 'https://ror.org/00wpfwd87 De La Salle-College of Saint Benilde'),
(105772, 'https://ror.org/00wrn8115', 'en', 1, 'https://ror.org/00wrn8115 Tochigi Prefectural Agricultural Experiment Station ę ƒęœØēœŒč¾²ę„­č©¦éØ“å “'),
(105773, 'https://ror.org/00ws30h19', 'en', 1, 'https://ror.org/00ws30h19 Tokyo Metropolitan University ę±äŗ¬éƒ½ē«‹å¤§å­¦'),
(105774, 'https://ror.org/00x014194', 'id', 1, 'https://ror.org/00x014194 Universitas Ibn Khaldun Bogor'),
(105775, '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'),
(105776, 'https://ror.org/00x3jrk87', 'pt', 1, 'https://ror.org/00x3jrk87 Centro de Física Teórica de Partículas'),
(105777, 'https://ror.org/00x3jzn88', 'en', 1, 'https://ror.org/00x3jzn88 Japan Institute of Energy äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Øćƒćƒ«ć‚®ćƒ¼å­¦ä¼š'),
(105778, 'https://ror.org/00x53ay56', 'en', 1, 'https://ror.org/00x53ay56 Musashino Central Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·åˆä¼šę­¦č”µé‡Žäø­å¤®ē—…é™¢'),
(105779, 'https://ror.org/00x62xy97', 'en', 1, 'https://ror.org/00x62xy97 The Land Institute of Japan äø€čˆ¬č²”å›£ę³•äŗŗåœŸåœ°ē·åˆē ”ē©¶ę‰€'),
(105780, 'https://ror.org/00x69rs40', 'en', 1, 'https://ror.org/00x69rs40 Marche Polytechnic University UniversitƠ Politecnica delle Marche UniversitƩ polytechnique des marches');
INSERT INTO `rors` VALUES
(105781, 'https://ror.org/00x6dk626', 'en', 1, 'https://ror.org/00x6dk626 Koszalin University of Technology Politechnika Koszalińska'),
(105782, 'https://ror.org/00x6twa51', 'es', 1, 'https://ror.org/00x6twa51 Universidad de Otavalo'),
(105783, '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'),
(105784, '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'),
(105785, 'https://ror.org/00xcej302', 'en', 1, 'https://ror.org/00xcej302 The Japan Iron and Steel Federation äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é‹¼é€£ē›Ÿ'),
(105786, 'https://ror.org/00xcsac28', 'en', 1, 'https://ror.org/00xcsac28 Kochi Prefectural Government 高矄県庁'),
(105787, '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'),
(105788, 'https://ror.org/00xe6p546', 'en', 1, 'https://ror.org/00xe6p546 University of Guelma Ų¬Ų§Ł…Ų¹Ų© 8 Ł…Ų§ŁŠ 45-قالمة'),
(105789, 'https://ror.org/00xf89h18', 'en', 1, 'https://ror.org/00xf89h18 Fenerbahçe University Fenerbahçe Üniversitesi'),
(105790, 'https://ror.org/00xfecy77', 'en', 1, 'https://ror.org/00xfecy77 Aichi Center for Industry and Science Technology ć‚ć„ć”ē”£ę„­ē§‘å­¦ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(105791, 'https://ror.org/00xgca252', 'en', 1, 'https://ror.org/00xgca252 Kawasaki Environment Research Institute å·å“Žåø‚ē’°å¢ƒē·åˆē ”ē©¶ę‰€'),
(105792, 'https://ror.org/00xhcc696', 'en', 1, 'https://ror.org/00xhcc696 National Center for Biotechnology ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр биотехнологии'),
(105793, 'https://ror.org/00xhcz327', 'en', 1, 'https://ror.org/00xhcz327 Westmont College'),
(105794, 'https://ror.org/00xhy9s30', 'en', 1, 'https://ror.org/00xhy9s30 Toyama International Center å…¬ē›Šč²”å›£ę³•äŗŗćØć‚„ć¾å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(105795, 'https://ror.org/00xmkb790', 'ms', 1, 'https://ror.org/00xmkb790 Universiti Malaysia Perlis University of Malaysia, Perlis'),
(105796, 'https://ror.org/00xn5w219', 'no_lang_code', 1, 'https://ror.org/00xn5w219 OMV (Austria)'),
(105797, 'https://ror.org/00xn6v638', 'en', 1, 'https://ror.org/00xn6v638 KANO General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå”å’Œä¼šåŠ ē“ē·åˆē—…é™¢'),
(105798, 'https://ror.org/00xp9wg62', 'en', 1, 'https://ror.org/00xp9wg62 Nanjing University of Science and Technology å—äŗ¬ē†å·„å¤§å­¦'),
(105799, 'https://ror.org/00xpsqk75', 'en', 1, 'https://ror.org/00xpsqk75 Iceland University of the Arts ListahĆ”skóli ƍslands'),
(105800, 'https://ror.org/00xqtxw43', 'en', 1, 'https://ror.org/00xqtxw43 Hanze University of Applied Sciences Hanzehogeschool Groningen'),
(105801, 'https://ror.org/00xrbvb54', 'en', 1, 'https://ror.org/00xrbvb54 IEEE Antennas and Propagation Society'),
(105802, 'https://ror.org/00xrkfw53', 'en', 1, 'https://ror.org/00xrkfw53 Gifu Prefectural Research Institute for Agricultural Technology in Hilly and Mountainous Areas å²é˜œēœŒäø­å±±é–“č¾²ę„­ē ”ē©¶ę‰€'),
(105803, 'https://ror.org/00xsfaz62', 'en', 1, 'https://ror.org/00xsfaz62 Xiangtan University 湘潭大学'),
(105804, 'https://ror.org/00xvcvx97', 'en', 1, 'https://ror.org/00xvcvx97 Nagasaki Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé•·å“ŽčØ˜åæµē—…é™¢'),
(105805, 'https://ror.org/00xvwpq40', 'tr', 1, 'https://ror.org/00xvwpq40 Istanbul Sabahattin Zaim University İstanbul Sabahattin Zaim Üniversitesi'),
(105806, 'https://ror.org/00y2z2s03', 'en', 1, 'https://ror.org/00y2z2s03 Amsterdam University of Applied Sciences Hogeschool van Amsterdam'),
(105807, 'https://ror.org/00y3hzd62', 'fr', 1, 'https://ror.org/00y3hzd62 UniversitƩ du QuƩbec Ơ Chicoutimi'),
(105808, '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'),
(105809, 'https://ror.org/00y5zsg21', 'en', 1, 'https://ror.org/00y5zsg21 Institute of Oncology Ljubljana'),
(105810, 'https://ror.org/00yaak728', 'en', 1, 'https://ror.org/00yaak728 JAē§‹ē”°åŽšē”Ÿé€£å¤§ę›²åŽšē”ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ Omagari Kousei Medical Center'),
(105811, 'https://ror.org/00yb99p92', 'en', 1, 'https://ror.org/00yb99p92 Institute of Animal Science Výzkumný Ústav ŽivočiÅ”nĆ© Výroby'),
(105812, 'https://ror.org/00ybvyr04', 'en', 1, 'https://ror.org/00ybvyr04 IUCN Commission on Ecosystem Management'),
(105813, 'https://ror.org/00yd3y871', 'en', 1, 'https://ror.org/00yd3y871 Dr. Om Parkash Eye Institute Pvt Ltd'),
(105814, 'https://ror.org/00ye6zh98', 'en', 1, 'https://ror.org/00ye6zh98 JAē§‹ē”°åŽšē”Ÿé€£åŒ—ē§‹ē”°åø‚ę°‘ē—…é™¢ Kita-akita Municipal Hospital'),
(105815, 'https://ror.org/00ye93n57', 'en', 1, 'https://ror.org/00ye93n57 Yoka Hospital 公立八鹿病院'),
(105816, 'https://ror.org/00yh3cz06', 'en', 1, 'https://ror.org/00yh3cz06 Sam Houston State University UniversitĆ© d''Ɖtat Sam Houston'),
(105817, 'https://ror.org/00yh88643', 'en', 1, 'https://ror.org/00yh88643 Superior University سپیریئر کالج'),
(105818, 'https://ror.org/00yknbj49', 'pt', 1, 'https://ror.org/00yknbj49 Faculdade Patos de Minas - FPM'),
(105819, '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ü" ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ політехнічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ā» Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(105820, 'https://ror.org/00yq23r19', 'en', 1, 'https://ror.org/00yq23r19 IUCN (United Kingdom)'),
(105821, 'https://ror.org/00yq55g44', 'en', 1, 'https://ror.org/00yq55g44 UniversitƤt Witten/Herdecke Witten/Herdecke University'),
(105822, 'https://ror.org/00ysqcn41', 'en', 1, 'https://ror.org/00ysqcn41 Thomas Jefferson University'),
(105823, 'https://ror.org/00ytawf04', 'en', 1, 'https://ror.org/00ytawf04 Akita Prefectural Government ē§‹ē”°ēœŒåŗ'),
(105824, 'https://ror.org/00ytqcj07', 'en', 1, 'https://ror.org/00ytqcj07 National Institute of Food Technology, Entrepreneurship and Management - Thanjavur'),
(105825, 'https://ror.org/00yty3s07', 'es', 1, 'https://ror.org/00yty3s07 Universidad Nacional Tecnológica de Lima Sur'),
(105826, 'https://ror.org/00yvyvt82', 'en', 1, 'https://ror.org/00yvyvt82 Centre College'),
(105827, 'https://ror.org/00yw7a334', 'en', 1, 'https://ror.org/00yw7a334 Nerima Hikarigaoka Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗåœ°åŸŸåŒ»ē™‚ęŒÆčˆˆå”ä¼šē·“é¦¬å…‰ćŒäø˜ē—…é™¢'),
(105828, 'https://ror.org/00ywqar95', 'en', 1, 'https://ror.org/00ywqar95 Universitatea Valahia din TĆ¢rgoviște Valahia University of Targoviste'),
(105829, 'https://ror.org/00yz2sm97', 'en', 1, 'https://ror.org/00yz2sm97 Polymat'),
(105830, 'https://ror.org/00yzpcc69', 'en', 1, 'https://ror.org/00yzpcc69 Extreme Light Infrastructure Beamlines'),
(105831, 'https://ror.org/00z0kq074', 'es', 1, 'https://ror.org/00z0kq074 Universidad Michoacana de San NicolƔs de Hidalgo'),
(105832, 'https://ror.org/00z10e966', 'en', 1, 'https://ror.org/00z10e966 Mohanlal Sukhadia University ą¤®ą„‹ą¤¹ą¤Øą¤²ą¤¾ą¤² ą¤øą„ą¤–ą¤¾ą¤”ą¤¼ą¤æą¤Æą¤¾ ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(105833, 'https://ror.org/00z160c41', 'en', 1, 'https://ror.org/00z160c41 National Institute of Textile Engineering and Research ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦¬ą¦øą§ą¦¤ą§ą¦° ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(105834, 'https://ror.org/00z2hze84', 'hr', 1, 'https://ror.org/00z2hze84 Bjelovar University of Applied Sciences VeleučiliŔte u Bjelovaru'),
(105835, 'https://ror.org/00z65zs77', 'en', 1, 'https://ror.org/00z65zs77 U.S. Air Force Research Laboratory Information Directorate'),
(105836, 'https://ror.org/00z72xb75', 'pt', 1, 'https://ror.org/00z72xb75 Centro de Estudos e Formação Avançada em Gestão e Economia'),
(105837, 'https://ror.org/00z87de70', 'en', 1, 'https://ror.org/00z87de70 Omihachiman Community Medical Center čæ‘ę±Ÿå…«å¹”åø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(105838, 'https://ror.org/00zays289', 'en', 1, 'https://ror.org/00zays289 Nexus Institute of Research and Innovation (NIRI)'),
(105839, 'https://ror.org/00zbe0w13', 'en', 1, 'https://ror.org/00zbe0w13 Tianjin University of Technology 天擄理巄大学'),
(105840, 'https://ror.org/00zbywh04', 'en', 1, 'https://ror.org/00zbywh04 Kyoto Kizugawa Hospital åŒ»ē™‚ę³•äŗŗå•“äæ”ä¼šäŗ¬éƒ½ćć„å·ē—…é™¢'),
(105841, 'https://ror.org/00zcmwh29', 'en', 1, 'https://ror.org/00zcmwh29 Hiroshima Prefectural Technology Research Institute åŗƒå³¶ēœŒē«‹ē·åˆęŠ€č”“ē ”ē©¶ę‰€'),
(105842, 'https://ror.org/00zd5gr55', 'en', 1, 'https://ror.org/00zd5gr55 Hessian Ministry for Science and the Arts Hessisches Ministerium für Wissenschaft und Kunst'),
(105843, 'https://ror.org/00zg31r41', 'fr', 1, 'https://ror.org/00zg31r41 Centre INRAE Grand-Est - Colmar'),
(105844, 'https://ror.org/00zm4rq24', 'en', 1, 'https://ror.org/00zm4rq24 University of New Haven UniversitƩ de new haven'),
(105845, 'https://ror.org/00zpddd51', 'en', 1, 'https://ror.org/00zpddd51 Kumamoto Rehabilitation Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗä»¤å’Œä¼šē†Šęœ¬ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(105846, 'https://ror.org/00zqn6a72', 'en', 1, 'https://ror.org/00zqn6a72 State Research Institute Centre for Innovative Medicine Valstybinis Mokslinių Tyrimų Institutas Inovatyvios Medicinos Centras'),
(105847, 'https://ror.org/00zrhbg82', 'en', 1, 'https://ror.org/00zrhbg82 King Khaled Eye Specialist Hospital'),
(105848, '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'),
(105849, 'https://ror.org/00zyznv55', 'en', 1, 'https://ror.org/00zyznv55 Shizuoka Graduate University of Public Health é™å²”ē¤¾ä¼šå„åŗ·åŒ»å­¦å¤§å­¦é™¢å¤§å­¦'),
(105850, 'https://ror.org/00zznvq98', 'tr', 1, 'https://ror.org/00zznvq98 FCR Yayin LTD'),
(105851, 'https://ror.org/010310r32', 'en', 1, 'https://ror.org/010310r32 Center for Physical Sciences and Technology Fizinių ir technologijos mokslų centras'),
(105852, 'https://ror.org/0104w5s79', 'en', 1, 'https://ror.org/0104w5s79 Kimitsu Chuo Hospital å›½äæē›“å–¶ē·åˆē—…é™¢å›ę“„äø­å¤®ē—…é™¢'),
(105853, '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)'),
(105854, 'https://ror.org/0108pa280', 'es', 1, 'https://ror.org/0108pa280 Centro para el Control Estatal de Medicamentos, Equipos y Dispositivos MƩdicos'),
(105855, 'https://ror.org/0108wjw08', 'en', 1, 'https://ror.org/0108wjw08 Anhui Jianzhu University å®‰å¾½å»ŗē­‘å·„äøšå­¦é™¢'),
(105856, 'https://ror.org/010996a78', 'en', 1, 'https://ror.org/010996a78 International University of Japan 国際大学'),
(105857, 'https://ror.org/0109yf692', 'en', 1, 'https://ror.org/0109yf692 Bursa Metropolitan Municipality'),
(105858, 'https://ror.org/010a43y06', 'pt', 1, 'https://ror.org/010a43y06 Instituto Nacional de Administração'),
(105859, 'https://ror.org/010a7ac66', 'en', 1, 'https://ror.org/010a7ac66 Soseikai General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£č˜‡ē”Ÿä¼šč˜‡ē”Ÿä¼šē·åˆē—…é™¢'),
(105860, 'https://ror.org/010bpe446', 'no_lang_code', 1, 'https://ror.org/010bpe446 Internet2'),
(105861, 'https://ror.org/010crp378', 'en', 1, 'https://ror.org/010crp378 University of Eldoret'),
(105862, 'https://ror.org/010dca812', 'en', 1, 'https://ror.org/010dca812 BibliothĆØque cantonale et universitaire – Lausanne Cantonal and University Library of Lausanne'),
(105863, 'https://ror.org/010djr242', 'pt', 1, 'https://ror.org/010djr242 Laboratório Associado ICVS 3B''s'),
(105864, 'https://ror.org/010h78f45', 'en', 1, 'https://ror.org/010h78f45 Western Carolina University'),
(105865, 'https://ror.org/010jbqd54', 'en', 1, 'https://ror.org/010jbqd54 University of Central Lancashire'),
(105866, 'https://ror.org/010jnvp60', 'en', 1, 'https://ror.org/010jnvp60 LEM International, LEM International (Switzerland)'),
(105867, 'https://ror.org/010jr2e58', 'en', 1, 'https://ror.org/010jr2e58 The Society of Chemical Engineers, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ–å­¦å·„å­¦ä¼š'),
(105868, 'https://ror.org/010mjn423', 'en', 1, 'https://ror.org/010mjn423 Hong Kong Sanatorium and Hospital 養和醫院'),
(105869, 'https://ror.org/010mx2s02', 'pt', 1, 'https://ror.org/010mx2s02 Fundação Bissaya Barreto'),
(105870, 'https://ror.org/010t7sr36', 'no_lang_code', 1, 'https://ror.org/010t7sr36 Research Ireland Taighde Ɖireann Taighde Ɖireann - Research Ireland'),
(105871, 'https://ror.org/010taw595', 'pt', 1, 'https://ror.org/010taw595 Sociedade Portuguesa de Endocrinologia Diabetes e Metabolismo'),
(105872, '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'),
(105873, 'https://ror.org/010va4625', 'en', 1, 'https://ror.org/010va4625 Catholic University of Mozambique Universidade Católica de Moçambique'),
(105874, 'https://ror.org/010vbsn33', 'en', 1, 'https://ror.org/010vbsn33 BICC - Bonn International Centre for Conflict Studies'),
(105875, 'https://ror.org/010vjyx44', 'no_lang_code', 1, 'https://ror.org/010vjyx44 North Bay Shellfish (United Kingdom)'),
(105876, 'https://ror.org/010x8gc63', 'en', 1, 'https://ror.org/010x8gc63 University of Saskatchewan UniversitƩ de la saskatchewan'),
(105877, 'https://ror.org/010xy3m51', 'en', 1, 'https://ror.org/010xy3m51 University of Piura'),
(105878, 'https://ror.org/010y48890', 'en', 1, 'https://ror.org/010y48890 Tottori Horticultural Experiment Station é³„å–ēœŒåœ’čŠøč©¦éØ“å “'),
(105879, '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'),
(105880, 'https://ror.org/010zh7098', 'en', 1, 'https://ror.org/010zh7098 Saint Mary''s University UniversitƩ saint mary'),
(105881, 'https://ror.org/0110e6d16', 'en', 1, 'https://ror.org/0110e6d16 Stafford College'),
(105882, 'https://ror.org/0111z3553', 'no_lang_code', 1, 'https://ror.org/0111z3553 Kibabii University'),
(105883, 'https://ror.org/01150px97', 'en', 1, 'https://ror.org/01150px97 National Institute of Science and Technology ନେସନାଲ ą¬‡ą¬Øą¬·ą­ą¬Ÿą¬æą¬šą­ą­Ÿą­ą¬Ÿą­ ą¬…ą¬«ą­ ą¬øą¬¾ą¬‡ą¬Øą­ą¬ø ą¬†ą¬£ą­ą¬” ą¬Ÿą­‡ą¬•ą­ą¬Øą­‹ą¬²ą­‹ą¬œą¬æ'),
(105884, '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'),
(105885, 'https://ror.org/01169d420', 'en', 1, 'https://ror.org/01169d420 Nuclear Regulation Authority åŽŸå­åŠ›č¦åˆ¶å§”å“”ä¼š'),
(105886, 'https://ror.org/0116en103', 'en', 1, 'https://ror.org/0116en103 Kaken Test Center äø€čˆ¬č²”å›£ę³•äŗŗć‚«ć‚±ćƒ³ćƒ†ć‚¹ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(105887, 'https://ror.org/01188dy18', 'en', 1, 'https://ror.org/01188dy18 Tochigi Prefectural Museum ę ƒęœØēœŒē«‹åšē‰©é¤Ø'),
(105888, 'https://ror.org/0118bra88', 'no_lang_code', 1, 'https://ror.org/0118bra88 MSD (Norway)'),
(105889, 'https://ror.org/0119zea93', 'en', 1, 'https://ror.org/0119zea93 Moscow Witte University'),
(105890, 'https://ror.org/011bn8390', 'pt', 1, 'https://ror.org/011bn8390 Centro Nacional de Reprodução de Lince Ibérico'),
(105891, 'https://ror.org/011g3me54', 'es', 1, 'https://ror.org/011g3me54 Instituto de Altos Estudios Nacionales'),
(105892, 'https://ror.org/011gmn932', 'en', 1, 'https://ror.org/011gmn932 National Institute of Technology Rourkela ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤°ą¤¾ą¤‰ą¤°ą¤•ą„‡ą¤²ą¤¾ ą¬œą¬¾ą¬¤ą­€ą­Ÿ ą¬Ŗą­ą¬°ą¬Æą­ą¬•ą­ą¬¤ą¬æ ą¬Ŗą­ą¬°ą¬¤ą¬æą¬·ą­ą¬ ą¬¾ą¬Ø, ରାଉରକେଲା'),
(105893, 'https://ror.org/011gp7f64', 'es', 1, 'https://ror.org/011gp7f64 Hospital Zambrano Hellion'),
(105894, 'https://ror.org/011hy5f81', 'en', 1, 'https://ror.org/011hy5f81 Irish Management Institute'),
(105895, 'https://ror.org/011maz450', 'en', 1, 'https://ror.org/011maz450 University of the Punjab جامعہ پنجاب ਪੰਜਾਬ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(105896, 'https://ror.org/011pqxa69', 'fr', 1, 'https://ror.org/011pqxa69 UniversitƩ du QuƩbec en Outaouais'),
(105897, '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'),
(105898, 'https://ror.org/011r90h67', 'en', 1, 'https://ror.org/011r90h67 American Bryological and Lichenological Society'),
(105899, 'https://ror.org/011rjky44', 'en', 1, 'https://ror.org/011rjky44 NIIZASHIKI Central General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę­¦č”µé‡Žä¼šę–°åŗ§åæ—ęœØäø­å¤®ē·åˆē—…é™¢'),
(105900, 'https://ror.org/011xdz256', 'en', 1, 'https://ror.org/011xdz256 Iwate Prefectural Forestry Technology Center å²©ę‰‹ēœŒęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(105901, 'https://ror.org/011xesh37', 'no_lang_code', 1, 'https://ror.org/011xesh37 Razi Vaccine and Serum Research Institute'),
(105902, 'https://ror.org/011xz5b94', 'en', 1, 'https://ror.org/011xz5b94 Emerson College'),
(105903, 'https://ror.org/011y8np74', 'en', 1, 'https://ror.org/011y8np74 Northern Territory Geological Survey'),
(105904, 'https://ror.org/0120ae790', 'pt', 1, 'https://ror.org/0120ae790 Escola Superior de SaĆŗde da Cruz Vermelha Portuguesa'),
(105905, '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'),
(105906, 'https://ror.org/0122bmm03', 'pt', 1, 'https://ror.org/0122bmm03 Federal University of Lavras Universidade Federal de Lavras'),
(105907, 'https://ror.org/01232eg66', 'en', 1, 'https://ror.org/01232eg66 NOAA Global Monitoring Laboratory'),
(105908, 'https://ror.org/01238z614', 'en', 1, 'https://ror.org/01238z614 Environmental Protection Authority Te Mana Rauhī Taiao'),
(105909, 'https://ror.org/01258d510', 'en', 0, 'https://ror.org/01258d510 Sugino Fashion Junior College ę‰é‡Žęœé£¾å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(105910, 'https://ror.org/0125yxn03', 'en', 1, 'https://ror.org/0125yxn03 University Hospital in Motol'),
(105911, 'https://ror.org/0126h8t90', 'en', 1, 'https://ror.org/0126h8t90 Union of Japanese Scientists and Engineers äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦ęŠ€č”“é€£ē›Ÿ'),
(105912, 'https://ror.org/0127mpp72', 'en', 1, 'https://ror.org/0127mpp72 University of Uyo YunifÔsítì ìlú Uyo'),
(105913, 'https://ror.org/01285e189', 'en', 1, 'https://ror.org/01285e189 Xiamen University of Technology åŽ¦é—Øē†å·„å­¦é™¢'),
(105914, 'https://ror.org/0128bs295', 'en', 1, 'https://ror.org/0128bs295 Inazawa Municipal Hospital 稲沢市民病院'),
(105915, 'https://ror.org/012a77v79', 'en', 1, 'https://ror.org/012a77v79 Lund University Lundin yliopisto Lunds universitet'),
(105916, 'https://ror.org/012a84b59', 'en', 1, 'https://ror.org/012a84b59 Hubei University Of Economics ę¹–åŒ—ē»ęµŽå­¦é™¢'),
(105917, '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'),
(105918, 'https://ror.org/012cz7g18', 'en', 1, 'https://ror.org/012cz7g18 e-think energy research'),
(105919, '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'),
(105920, 'https://ror.org/012dg8a96', 'en', 1, 'https://ror.org/012dg8a96 Swarthmore College'),
(105921, 'https://ror.org/012fqzm33', 'fr', 1, 'https://ror.org/012fqzm33 GĆ©nĆ©tique Quantitative et Ɖvolution Le Moulon Quantitative Genetics and Evolution - Le Moulon'),
(105922, 'https://ror.org/012gfrj24', 'en', 1, 'https://ror.org/012gfrj24 Intercollege'),
(105923, 'https://ror.org/012m9bp23', 'en', 1, 'https://ror.org/012m9bp23 Fachhochschule Potsdam University of Applied Sciences Potsdam'),
(105924, 'https://ror.org/012mef835', 'en', 1, 'https://ror.org/012mef835 Augusta University'),
(105925, 'https://ror.org/012mm7y56', 'pt', 1, 'https://ror.org/012mm7y56 Methodist University of SĆ£o Paulo Universidade Metodista de SĆ£o Paulo'),
(105926, 'https://ror.org/012qhb022', 'en', 1, 'https://ror.org/012qhb022 Romanian Educational and Research Network'),
(105927, 'https://ror.org/012szh196', 'en', 1, 'https://ror.org/012szh196 Kementerian Luar Negeri Republik Indonesia Ministry of Foreign Affairs'),
(105928, 'https://ror.org/012wxa772', 'en', 1, 'https://ror.org/012wxa772 Northern Illinois University Universidad del Norte de Illinois'),
(105929, 'https://ror.org/0131qn182', 'en', 1, 'https://ror.org/0131qn182 Japan Society for Analytical Chemistry å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åˆ†ęžåŒ–å­¦ä¼š'),
(105930, 'https://ror.org/01358s213', 'en', 1, 'https://ror.org/01358s213 Universidad del QuindĆ­o University of QuindĆ­o'),
(105931, 'https://ror.org/0135mxn53', 'es', 1, 'https://ror.org/0135mxn53 Instituto de Estudios de AmƩrica Latina y el Caribe'),
(105932, 'https://ror.org/01385bp05', 'en', 1, 'https://ror.org/01385bp05 UbuntuNet Alliance for Research and Education Networking'),
(105933, 'https://ror.org/0138q6933', 'en', 1, 'https://ror.org/0138q6933 Kyoto Industrial Health Association äø€čˆ¬č²”å›£ę³•äŗŗäŗ¬éƒ½å·„å “äæå„ä¼š'),
(105934, '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'),
(105935, 'https://ror.org/0138va192', 'en', 1, 'https://ror.org/0138va192 Royal Society for the Protection of Birds'),
(105936, 'https://ror.org/013bgdt24', 'en', 1, 'https://ror.org/013bgdt24 Millikin University'),
(105937, 'https://ror.org/013bn0m92', 'es', 1, 'https://ror.org/013bn0m92 Universidad Popular de la Chontalpa'),
(105938, 'https://ror.org/013cs1q72', 'pt', 1, 'https://ror.org/013cs1q72 Hospital de Santo AndrƩ'),
(105939, 'https://ror.org/013d2se23', 'pt', 1, 'https://ror.org/013d2se23 CĆ¢mara Municipal de Aveiro'),
(105940, 'https://ror.org/013f9hb65', 'en', 1, 'https://ror.org/013f9hb65 Mahatma Gandhi Central University'),
(105941, 'https://ror.org/013fsnh78', 'en', 1, 'https://ror.org/013fsnh78 University of Waikato'),
(105942, 'https://ror.org/013hc2j39', 'en', 1, 'https://ror.org/013hc2j39 Aldakin Aldakin S.L. Aldakin S.L. (Spain)'),
(105943, 'https://ror.org/013hqyg37', 'en', 1, 'https://ror.org/013hqyg37 Benghazi Modern University Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŲŗŲ§Ų²ŁŠ Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(105944, 'https://ror.org/013pnfx92', 'fr', 1, 'https://ror.org/013pnfx92 Institut des Hautes Ɖtudes pour l’Innovation et l’Entreprenariat - IHEIE, Mines Paris, UniversitĆ© PSL, 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)'),
(105945, 'https://ror.org/013qjyp86', 'en', 1, 'https://ror.org/013qjyp86 Industrial Technology Center of Tochigi Prefecture ę ƒęœØēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(105946, 'https://ror.org/013sm1c65', 'en', 1, 'https://ror.org/013sm1c65 Uniwersytet Ekonomiczny we Wrocławiu Wroclaw University of Economics and Business'),
(105947, 'https://ror.org/013v3cc28', 'en', 1, 'https://ror.org/013v3cc28 Indian Institute of Technology Dhanbad ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®šąÆą®°ą®™ąÆą®•ą®µą®æą®Æą®²ąÆ ą®Ŗą®³ąÆą®³ą®æ ą®¤ą®©ąÆą®Ŗą®¾ą®¤ąÆ'),
(105948, 'https://ror.org/013v7ga69', 'en', 1, 'https://ror.org/013v7ga69 Bundesministerium für Inneres Federal Ministry for the Interior'),
(105949, 'https://ror.org/013vs5h31', 'en', 1, 'https://ror.org/013vs5h31 SRM University, Andhra Pradesh ą°Žą°øą±.ą°†ą°°ą±.ą°Žą°‚ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ అమరావతి ą°†ą°‚ą°§ą±ą°°ą°Ŗą±ą°°ą°¦ą±‡ą°¶ą±'),
(105950, 'https://ror.org/013vsg966', 'en', 1, 'https://ror.org/013vsg966 Republican Specialised Scientific and Practical Medical Centre of Eye Microsurgery'),
(105951, 'https://ror.org/013w1n936', 'da', 1, 'https://ror.org/013w1n936 Velux Fonden'),
(105952, 'https://ror.org/013w2sr27', 'en', 1, 'https://ror.org/013w2sr27 Fukui General Hospital äø€čˆ¬č²”å›£ę³•äŗŗę–°ē”°å”šåŒ»ē™‚ē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼ē¦äŗ•ē·åˆē—…é™¢'),
(105953, 'https://ror.org/013w98a82', 'en', 1, 'https://ror.org/013w98a82 University of Ha''il Ų¬Ų§Ł…Ų¹Ų© حائل'),
(105954, 'https://ror.org/013x4kb81', 'en', 1, 'https://ror.org/013x4kb81 Hebei GEO University ēŸ³å®¶åŗ„ē»ęµŽå­¦é™¢'),
(105955, 'https://ror.org/013yz9b19', 'en', 1, 'https://ror.org/013yz9b19 Korea Institute of Fusion Energy'),
(105956, 'https://ror.org/013zrke44', 'en', 1, 'https://ror.org/013zrke44 Polytechnic of Rijeka VeleučiliŔte u Rijeci'),
(105957, 'https://ror.org/0140wyg37', 'en', 1, 'https://ror.org/0140wyg37 KKR Takamatsu Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šKKRé«˜ę¾ē—…é™¢'),
(105958, 'https://ror.org/0143tvy90', 'no_lang_code', 1, 'https://ror.org/0143tvy90 Tokaj-Hegyalja Egyetem University of Tokaj'),
(105959, 'https://ror.org/014572h89', 'en', 1, 'https://ror.org/014572h89 Unnan City Hospital é›²å—åø‚ē«‹ē—…é™¢'),
(105960, 'https://ror.org/0145fw131', 'en', 1, 'https://ror.org/0145fw131 Hong Kong Baptist University'),
(105961, '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'),
(105962, 'https://ror.org/01468by48', 'en', 1, 'https://ror.org/01468by48 National Institute for Laser Plasma and Radiation Physics'),
(105963, 'https://ror.org/0146fdq04', 'pt', 1, 'https://ror.org/0146fdq04 Conselho de Reitores das Universidades Portuguesas'),
(105964, 'https://ror.org/0148jqz97', 'en', 1, 'https://ror.org/0148jqz97 Public Opinion Research Center äø€čˆ¬ē¤¾å›£ę³•äŗŗč¼æč«–ē§‘å­¦å”ä¼š'),
(105965, 'https://ror.org/014bj5w56', 'en', 1, 'https://ror.org/014bj5w56 Directorate for STEM Education (EDU)'),
(105966, 'https://ror.org/014bj9a17', 'en', 1, 'https://ror.org/014bj9a17 Hikone Municipal Hospital 彦根市立病院'),
(105967, 'https://ror.org/014cbz578', 'nl', 1, 'https://ror.org/014cbz578 Provincie Gelderland'),
(105968, 'https://ror.org/014d2dj78', 'en', 1, 'https://ror.org/014d2dj78 Yamaguchi Prefectural Agriculture and Forestry General Technology Center å±±å£ēœŒč¾²ęž—ē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(105969, 'https://ror.org/014ecgm61', 'en', 1, 'https://ror.org/014ecgm61 Ravenshaw University ą¬°ą­‡ą¬­ą­‡ą¬Øą­ą¬øą¬¾ ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(105970, 'https://ror.org/014ezkx63', 'en', 1, 'https://ror.org/014ezkx63 Sir H.N. Reliance Foundation Hospital and Research Centre'),
(105971, 'https://ror.org/014gb2s11', 'de', 1, 'https://ror.org/014gb2s11 Kantonsspital Winterthur'),
(105972, 'https://ror.org/014hfaw95', 'en', 1, 'https://ror.org/014hfaw95 Albany College of Pharmacy and Health Sciences'),
(105973, 'https://ror.org/014hpw227', 'es', 1, 'https://ror.org/014hpw227 Universidad Antonio NariƱo'),
(105974, 'https://ror.org/014qpa824', 'en', 1, 'https://ror.org/014qpa824 Minnesota State Colleges and Universities System'),
(105975, 'https://ror.org/014te7048', 'en', 1, 'https://ror.org/014te7048 Khazar University Xəzər Universiteti Университет Єазар'),
(105976, 'https://ror.org/014v1mr15', 'en', 1, 'https://ror.org/014v1mr15 Hangzhou Normal University ę­å·žåøˆčŒƒå¤§å­¦'),
(105977, 'https://ror.org/014vaaj20', 'en', 1, 'https://ror.org/014vaaj20 Miyazaki Prefectural NOBEOKA Hospital å®®å“ŽēœŒē«‹å»¶å²”ē—…é™¢'),
(105978, 'https://ror.org/014weej12', 'en', 1, 'https://ror.org/014weej12 Middle East Technical University Orta Doğu Teknik Üniversitesi'),
(105979, 'https://ror.org/014wj3r14', 'pt', 1, 'https://ror.org/014wj3r14 AIMM - Associação para a Investigação do Meio Marinho'),
(105980, 'https://ror.org/014xc4822', 'en', 1, 'https://ror.org/014xc4822 PƤdagogische Hochschule Steiermark University of Teacher Education Styria'),
(105981, 'https://ror.org/014zgm880', 'en', 1, 'https://ror.org/014zgm880 The Association for Preventive Medicine of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬äŗˆé˜²åŒ»å­¦å”ä¼š'),
(105982, 'https://ror.org/014zrew76', 'fr', 1, 'https://ror.org/014zrew76 University of OrlƩans UniversitƩ d''OrlƩans'),
(105983, 'https://ror.org/014zxnz40', 'en', 1, 'https://ror.org/014zxnz40 Gheorghe Asachi Technical University of Iași Universitatea Tehnică Gheorghe Asachi din Iași'),
(105984, 'https://ror.org/01519ck20', 'en', 1, 'https://ror.org/01519ck20 Calderdale College'),
(105985, 'https://ror.org/0152k1537', 'en', 1, 'https://ror.org/0152k1537 Sleep Breathing Disorders Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اختلالات ŲŖŁ†ŁŲ³ŪŒ Ų­ŪŒŁ† خواب'),
(105986, 'https://ror.org/01537wn74', 'en', 1, 'https://ror.org/01537wn74 Government of the Northern Territory'),
(105987, 'https://ror.org/0156a8r12', 'en', 1, 'https://ror.org/0156a8r12 Miyagi Prefectural Livestock Experiment Station å®®åŸŽēœŒē•œē”£č©¦éØ“å “'),
(105988, 'https://ror.org/015a2rt79', 'en', 1, 'https://ror.org/015a2rt79 Ecosystem Conservation SOCIETY-JAPAN å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿę…‹ē³»å”ä¼š'),
(105989, 'https://ror.org/015ac6d32', 'en', 1, 'https://ror.org/015ac6d32 Okayama Prefecture Industrial Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗå²”å±±ēœŒē”£ę„­ęŒÆčˆˆč²”å›£'),
(105990, 'https://ror.org/015byee85', 'pt', 1, 'https://ror.org/015byee85 Instituto do Ambiente Tecnologia e Vida'),
(105991, 'https://ror.org/015cr1d34', 'en', 1, 'https://ror.org/015cr1d34 MSD (Hungary)'),
(105992, 'https://ror.org/015d0jq83', 'en', 1, 'https://ror.org/015d0jq83 Inner Mongolia Agricultural University å†…č’™å¤å†œäøšå¤§å­¦'),
(105993, 'https://ror.org/015d1gt07', 'en', 1, 'https://ror.org/015d1gt07 Japan Quality Assurance Organization äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å“č³ŖäæčØ¼ę©Ÿę§‹'),
(105994, 'https://ror.org/015d5s513', 'en', 1, 'https://ror.org/015d5s513 Avans Hogeschool Avans University of Applied Sciences'),
(105995, 'https://ror.org/015dkwr19', 'en', 1, 'https://ror.org/015dkwr19 Kumamoto Prefectural Agricultural Research Center ē†Šęœ¬ēœŒč¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(105996, 'https://ror.org/015dy5p63', 'pt', 1, 'https://ror.org/015dy5p63 Centro Cardiovascular da Universidade de Lisboa'),
(105997, 'https://ror.org/015f26s43', 'en', 1, 'https://ror.org/015f26s43 Photovoltaic Power Generation Technology Research Association å¤Ŗé™½å…‰ē™ŗé›»ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(105998, 'https://ror.org/015gz1707', 'en', 1, 'https://ror.org/015gz1707 Kyoaikai Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗå‡½é¤Øå…±ę„›ä¼šå…±ę„›ä¼šē—…é™¢'),
(105999, 'https://ror.org/015hejj83', 'en', 1, 'https://ror.org/015hejj83 Sultan Agung Islamic University Universitas Islam Sultan Agung'),
(106000, 'https://ror.org/015jxh185', 'en', 1, 'https://ror.org/015jxh185 Liaquat University of Medical & Health Sciences'),
(106001, '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'),
(106002, 'https://ror.org/015m2p889', 'en', 1, 'https://ror.org/015m2p889 Aberystwyth University Prifysgol Aberystwyth'),
(106003, 'https://ror.org/015nkmw43', 'pt', 1, 'https://ror.org/015nkmw43 Escola Superior de SaĆŗde Norte da Cruz Vermelha Portuguesa'),
(106004, 'https://ror.org/015nngf45', 'no_lang_code', 1, 'https://ror.org/015nngf45 Manufacturing Technology Centre (United Kingdom)'),
(106005, 'https://ror.org/015rzvz05', 'no', 1, 'https://ror.org/015rzvz05 Lovisenberg Diakonale HĆøgskole'),
(106006, 'https://ror.org/015w2mp89', 'en', 1, 'https://ror.org/015w2mp89 National Physical Laboratory'),
(106007, 'https://ror.org/015xhc487', 'pt', 1, 'https://ror.org/015xhc487 Instituto de Gestão e Administração Pública'),
(106008, 'https://ror.org/015xqjq34', 'en', 1, 'https://ror.org/015xqjq34 Yokohama Brain and Spine Center ęØŖęµœåø‚ē«‹č„³å’äø­ćƒ»ē„žēµŒč„Šę¤Žć‚»ćƒ³ć‚æćƒ¼'),
(106009, 'https://ror.org/015y5ng21', 'en', 1, 'https://ror.org/015y5ng21 Ehime Prefectural International Center å…¬ē›Šč²”å›£ę³•äŗŗę„›åŖ›ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(106010, 'https://ror.org/015ycqv20', 'en', 1, 'https://ror.org/015ycqv20 Second Hospital of Hebei Medical University'),
(106011, 'https://ror.org/015zmr509', 'en', 1, 'https://ror.org/015zmr509 University of Kashan'),
(106012, 'https://ror.org/0161dyt30', 'en', 1, 'https://ror.org/0161dyt30 Khwaja Fareed University of Engineering and Information Technology خواجہ فرید ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§Ł†Ų¬ŪŒŁ†ŪŒŲ¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(106013, 'https://ror.org/0161xgx34', 'fr', 1, 'https://ror.org/0161xgx34 University of Montreal UniversitƩ de MontrƩal'),
(106014, 'https://ror.org/0161zbh32', 'en', 1, 'https://ror.org/0161zbh32 The Asian International School'),
(106015, 'https://ror.org/0162saw54', 'de', 1, 'https://ror.org/0162saw54 Evangelisches Krankenhaus Bielefeld'),
(106016, 'https://ror.org/0162y3f52', 'en', 1, 'https://ror.org/0162y3f52 The Japan Bird Research Association čŖå®šNPOę³•äŗŗćƒćƒ¼ćƒ‰ćƒŖć‚µćƒ¼ćƒ'),
(106017, 'https://ror.org/0163rt176', 'en', 1, 'https://ror.org/0163rt176 Indian Institute of Information Technology Vadodara'),
(106018, 'https://ror.org/01641cv78', 'en', 1, 'https://ror.org/01641cv78 Soka Women''s College å‰µä¾”å„³å­ēŸ­ęœŸå¤§å­¦'),
(106019, 'https://ror.org/0164qgj37', 'en', 1, 'https://ror.org/0164qgj37 Dong A University ĐẔi hį»c ĐƓng Ɓ'),
(106020, 'https://ror.org/016604a03', 'de', 1, 'https://ror.org/016604a03 Hochschule Augsburg University of Applied Sciences Technische Hochschule Augsburg'),
(106021, 'https://ror.org/0166hxq48', 'en', 0, 'https://ror.org/0166hxq48 Ministero dell''Istruzione, dell''UniversitĆ  e della Ricerca Ministry of Education, Universities and Research'),
(106022, 'https://ror.org/0166m3x03', 'en', 1, 'https://ror.org/0166m3x03 Japan International Forestry Promotion and Cooperation Center å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē·‘åŒ–ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(106023, 'https://ror.org/016dc4c80', 'fr', 1, 'https://ror.org/016dc4c80 ArmƩe de terre'),
(106024, 'https://ror.org/016dcc221', 'tr', 1, 'https://ror.org/016dcc221 Kocaeli Health and Technology University Kocaeli Sağlık ve Teknoloji Üniversitesi'),
(106025, 'https://ror.org/016e5hy63', 'no_lang_code', 1, 'https://ror.org/016e5hy63 Matej Bel University Univerzita Mateja Bela'),
(106026, 'https://ror.org/016f98811', 'en', 1, 'https://ror.org/016f98811 St. Catherine Junior College č–ć‚«ć‚æćƒŖćƒŠå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(106027, 'https://ror.org/016hm0k42', 'id', 1, 'https://ror.org/016hm0k42 Universitas Abdurrab'),
(106028, 'https://ror.org/016hqt997', 'en', 1, 'https://ror.org/016hqt997 Ziaeian Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¶ŪŒŲ§Ų¦ŪŒŲ§Ł†'),
(106029, 'https://ror.org/016kdhy07', 'en', 1, 'https://ror.org/016kdhy07 Nishinihon Hospital åŒ»ē™‚ę³•äŗŗč²”å›£č–åå­—ä¼šč„æę—„ęœ¬ē—…é™¢'),
(106030, 'https://ror.org/016n74679', 'en', 1, 'https://ror.org/016n74679 Centre wallon de Recherches Agronomiques Walloon Agricultural Research Centre'),
(106031, 'https://ror.org/016nnmm16', 'en', 1, 'https://ror.org/016nnmm16 Miyagi Prefectural Government å®®åŸŽēœŒåŗ'),
(106032, 'https://ror.org/016r0x448', 'en', 1, 'https://ror.org/016r0x448 Mie Prefecture Fisheries Research Institute äø‰é‡ēœŒę°“ē”£ē ”ē©¶ę‰€'),
(106033, 'https://ror.org/016ryph89', 'en', 1, 'https://ror.org/016ryph89 Japan Society for Design Engineering å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čØ­čØˆå·„å­¦ä¼š'),
(106034, 'https://ror.org/016svmr24', 'en', 1, 'https://ror.org/016svmr24 Nishina Memorial Foundation å…¬ē›Šč²”å›£ę³•äŗŗä»ē§‘čØ˜åæµč²”å›£'),
(106035, 'https://ror.org/016tr2g85', 'en', 1, 'https://ror.org/016tr2g85 Khatam University دانؓگاه Ų®Ų§ŲŖŁ…'),
(106036, 'https://ror.org/016w23120', 'en', 1, 'https://ror.org/016w23120 Protestant Theological University Protestantse Theologische Universiteit'),
(106037, 'https://ror.org/016yns761', 'en', 1, 'https://ror.org/016yns761 Kyoto Okamoto Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå²”ęœ¬ē—…é™¢ļ¼ˆč²”å›£ļ¼‰äŗ¬éƒ½å²”ęœ¬čØ˜åæµē—…é™¢'),
(106038, 'https://ror.org/016zwj547', 'en', 1, 'https://ror.org/016zwj547 Vishwakarma University ą¤µą¤æą¤¶ą„ą¤µą¤•ą¤°ą„ą¤®ą¤¾ ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€ / ą¤µą¤æą¤¶ą„ą¤µą¤•ą¤°ą„ą¤®ą¤¾ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(106039, 'https://ror.org/01704wp68', 'ms', 1, 'https://ror.org/01704wp68 Universiti Malaysia Pahang Al-Sultan Abdullah'),
(106040, 'https://ror.org/0170edc15', 'en', 1, 'https://ror.org/0170edc15 University of Babylon Ų¬Ų§Ł…Ų¹Ų© ŲØŲ§ŲØŁ„'),
(106041, 'https://ror.org/0171n2m64', 'es', 1, 'https://ror.org/0171n2m64 Instituto Superior Tecnológico Bolivariano de Tecnología'),
(106042, 'https://ror.org/0173vvc25', 'en', 1, 'https://ror.org/0173vvc25 IEEE Magnetics Society'),
(106043, 'https://ror.org/01743w997', 'fr', 1, 'https://ror.org/01743w997 Association pour la sauvegarde de la mƩdina de Gafsa Asm Gafsa'),
(106044, 'https://ror.org/01752qx54', 'en', 1, 'https://ror.org/01752qx54 Plaksha University'),
(106045, 'https://ror.org/0175rgg14', 'en', 1, 'https://ror.org/0175rgg14 Sakura General Hospital åŒ»ē™‚ę³•äŗŗåŒ»ä»ä¼šć•ćć‚‰ē·åˆē—…é™¢'),
(106046, 'https://ror.org/017689761', 'en', 1, 'https://ror.org/017689761 Gulf College ŁƒŁ„ŁŠŲ© Ų§Ł„Ų®Ł„ŁŠŲ¬'),
(106047, 'https://ror.org/017drqp47', 'de', 1, 'https://ror.org/017drqp47 Hessian State Office for Historical Studies Hessische Institut für Landesgeschichte'),
(106048, 'https://ror.org/017eabx08', 'it', 1, 'https://ror.org/017eabx08 Ospedale Regionale di Mendrisio'),
(106049, 'https://ror.org/017ebfz38', 'en', 1, 'https://ror.org/017ebfz38 National Institute of Technology Warangal ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, वारांगल'),
(106050, 'https://ror.org/017ew4470', 'en', 1, 'https://ror.org/017ew4470 Kumamoto Kenhoku Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗćć¾ć‚‚ćØēœŒåŒ—ē—…é™¢'),
(106051, 'https://ror.org/017f2w007', 'en', 1, 'https://ror.org/017f2w007 Gujarat University ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€ ą®•ąÆą®œą®°ą®¾ą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°—ą±ą°œą°°ą°¾ą°¤ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(106052, 'https://ror.org/017g82c94', 'en', 1, 'https://ror.org/017g82c94 Kampala International University'),
(106053, 'https://ror.org/017h2dy10', 'en', 1, 'https://ror.org/017h2dy10 Electro-Chemical and Cancer Institute åŒ»ē™‚ę³•äŗŗē¤¾å›£ē å…‰ä¼šč“®č¦‹ē™Œē ”ē©¶ę‰€'),
(106054, 'https://ror.org/017hvgd88', 'id', 1, 'https://ror.org/017hvgd88 Universitas Muhammadiyah Sidoarjo'),
(106055, 'https://ror.org/017kqh787', 'no_lang_code', 1, 'https://ror.org/017kqh787 OxyMem (Ireland)'),
(106056, 'https://ror.org/017mh6638', 'en', 1, 'https://ror.org/017mh6638 Akita City Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåø‚ē«‹ē§‹ē”°ē·åˆē—…é™¢'),
(106057, 'https://ror.org/017p87168', 'en', 1, 'https://ror.org/017p87168 University of Limpopo'),
(106058, 'https://ror.org/017pq0w72', 'en', 1, 'https://ror.org/017pq0w72 Koya University Ų¬Ų§Ł…Ų¹Ų© ŁƒŁˆŁŠŁ‡'),
(106059, 'https://ror.org/017pq2p92', 'ro', 1, 'https://ror.org/017pq2p92 Institutul National de Sanatate Publica'),
(106060, 'https://ror.org/017rd0q69', 'nl', 1, 'https://ror.org/017rd0q69 Alrijne Hospital Alrijne Ziekenhuis'),
(106061, 'https://ror.org/017ryfk58', 'en', 1, 'https://ror.org/017ryfk58 Iwate University of Health and Medical Sciences å²©ę‰‹äæå„åŒ»ē™‚å¤§å­¦'),
(106062, 'https://ror.org/017s8ee04', 'en', 1, 'https://ror.org/017s8ee04 Kawasaki Saiwai Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ēŸ³åæƒä¼šå·å“Žå¹øē—…é™¢'),
(106063, 'https://ror.org/017v96566', 'tr', 1, 'https://ror.org/017v96566 Bakırçay Üniversitesi İzmir Bakırçay University'),
(106064, 'https://ror.org/017vj9b48', 'en', 1, 'https://ror.org/017vj9b48 Rajiv Gandhi National University of Law ąØ°ąØ¾ąØœą©€ąØµ ਗਾਂਧੀ ਨੈਸ਼ਨਲ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ਆਫ਼ ਲਾ'),
(106065, 'https://ror.org/017vz0682', 'en', 1, 'https://ror.org/017vz0682 IUCN Climate Crisis Commission'),
(106066, 'https://ror.org/017wvtq80', 'en', 1, 'https://ror.org/017wvtq80 University of Patras UniversitĆ© de patras Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī Ī±Ļ„ĻĻŽĪ½'),
(106067, 'https://ror.org/017x26m02', 'en', 1, 'https://ror.org/017x26m02 O''zbekiston Davlat Jahon tillari universiteti Uzbek State University of World Languages'),
(106068, 'https://ror.org/017yk1e31', 'en', 1, 'https://ror.org/017yk1e31 Federal Ministry of Health'),
(106069, 'https://ror.org/0181cy234', 'en', 1, 'https://ror.org/0181cy234 GeoSphere Austria'),
(106070, 'https://ror.org/0182a5n39', 'it', 1, 'https://ror.org/0182a5n39 Consorzio Nazionale Interuniversitario per le Telecomunicazioni National Inter-University Consortium for Telecommunications'),
(106071, 'https://ror.org/0183te774', 'en', 1, 'https://ror.org/0183te774 The Institute of Statistical Research äø€čˆ¬č²”å›£ę³•äŗŗēµ±čØˆē ”ē©¶ä¼š'),
(106072, 'https://ror.org/018402t03', 'en', 1, 'https://ror.org/018402t03 The Iron and Steel Institute of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é‹¼å”ä¼š'),
(106073, 'https://ror.org/01856cw59', 'en', 1, 'https://ror.org/01856cw59 University Hospital Münster Universitätsklinikum Münster'),
(106074, 'https://ror.org/01866ja76', 'en', 1, 'https://ror.org/01866ja76 Bentham Science Publishers, Bentham Science Publishers (United Arab Emirates)'),
(106075, 'https://ror.org/01876xy81', 'en', 1, 'https://ror.org/01876xy81 Washington Department of Natural Resources'),
(106076, 'https://ror.org/0188sb718', 'en', 1, 'https://ror.org/0188sb718 Dutchess Community College'),
(106077, 'https://ror.org/0188yz413', 'en', 1, 'https://ror.org/0188yz413 Kyorin University ęęž—å¤§å­¦'),
(106078, 'https://ror.org/01897f782', 'es', 1, 'https://ror.org/01897f782 National University of Juliaca Universidad Nacional de Juliaca'),
(106079, 'https://ror.org/0189v8q85', 'en', 1, 'https://ror.org/0189v8q85 Yame General Hospital å…¬ē«‹å…«å„³ē·åˆē—…é™¢'),
(106080, 'https://ror.org/018bbh535', 'en', 1, 'https://ror.org/018bbh535 University of Laghouat Ų¬Ų§Ł…Ų¹Ų© عمار Ų«Ł„ŁŠŲ¬ŁŠ'),
(106081, 'https://ror.org/018bw0k35', 'en', 1, 'https://ror.org/018bw0k35 Sasebo Chuo Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ē™½åå­—ä¼šä½äø–äæäø­å¤®ē—…é™¢'),
(106082, 'https://ror.org/018c4h365', 'en', 1, 'https://ror.org/018c4h365 Japan Educational Research Institute äø€čˆ¬č²”å›£ę³•äŗŗę•™č‚²čŖæęŸ»ē ”ē©¶ę‰€'),
(106083, 'https://ror.org/018dfmf50', 'en', 1, 'https://ror.org/018dfmf50 Open Universiteit Nederland Open University of the Netherlands'),
(106084, 'https://ror.org/018g9j451', 'en', 1, 'https://ror.org/018g9j451 YAO Municipal Hospital 八尾市立病院'),
(106085, 'https://ror.org/018jjaw76', 'fr', 1, 'https://ror.org/018jjaw76 UniversitĆ© IBN Khaldoun Tiaret Ų¬Ų§Ł…Ų¹Ų© ابن Ų®Ł„ŲÆŁˆŁ† تيارت'),
(106086, 'https://ror.org/018ndmv91', 'ca', 0, 'https://ror.org/018ndmv91 Fundació Privada Clínic per a La Recerca Biomèdica'),
(106087, 'https://ror.org/018ptcp83', 'pt', 1, 'https://ror.org/018ptcp83 Centro de QuĆ­mica'),
(106088, 'https://ror.org/018q2r417', 'en', 1, 'https://ror.org/018q2r417 Database Center for Life Science ćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹ēµ±åˆćƒ‡ćƒ¼ć‚æćƒ™ćƒ¼ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(106089, 'https://ror.org/018rbtf37', 'en', 1, 'https://ror.org/018rbtf37 Tianjin University of Science and Technology å¤©ę“„ē§‘ęŠ€å¤§å­¦'),
(106090, 'https://ror.org/018v7v020', 'en', 1, 'https://ror.org/018v7v020 Institute of European Studies'),
(106091, 'https://ror.org/018wh2466', 'en', 1, 'https://ror.org/018wh2466 Japan Food Hygiene Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“č”›ē”Ÿå”ä¼š'),
(106092, 'https://ror.org/018x9xw13', 'en', 1, 'https://ror.org/018x9xw13 IsoArcH'),
(106093, 'https://ror.org/018yta094', 'en', 1, 'https://ror.org/018yta094 Morehead State University UniversitĆ© d''Ɖtat de morehead'),
(106094, 'https://ror.org/01927vf62', 'en', 1, 'https://ror.org/01927vf62 Zoology Museum of the University of Athens'),
(106095, 'https://ror.org/0192m2k53', 'en', 1, 'https://ror.org/0192m2k53 University of Salerno UniversitƠ degli Studi di Salerno UniversitƩ de salerne'),
(106096, 'https://ror.org/0194f6935', 'en', 1, 'https://ror.org/0194f6935 Hokkaido Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“åŒ»åø«ä¼š'),
(106097, 'https://ror.org/0196dtv45', 'pt', 1, 'https://ror.org/0196dtv45 Instituto Paulo Freire de Portugal'),
(106098, 'https://ror.org/01986j293', 'pt', 1, 'https://ror.org/01986j293 Centro de Investigação em Sociologia Económica e das Organizações'),
(106099, 'https://ror.org/0198j4566', 'es', 1, 'https://ror.org/0198j4566 Universidad de Las AmƩricas'),
(106100, 'https://ror.org/019ad8130', 'en', 1, 'https://ror.org/019ad8130 University of Computer Studies Yangon į€›į€”į€ŗį€€į€Æį€”į€ŗį€€į€½į€”į€ŗį€•į€»į€°į€į€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(106101, 'https://ror.org/019c1xz73', 'fr', 1, 'https://ror.org/019c1xz73 Development, Adaptation and Handicap DƩveloppement, Adaptation et Handicap'),
(106102, 'https://ror.org/019ev8b82', 'es', 1, 'https://ror.org/019ev8b82 Gorgas Memorial Institute for Health Studies Instituto Conmemorativo Gorgas de Estudios de la Salud'),
(106103, 'https://ror.org/019g8w217', 'pt', 0, 'https://ror.org/019g8w217 Instituto de Medicina Molecular João Lobo Antunes'),
(106104, 'https://ror.org/019mzt973', 'no_lang_code', 1, 'https://ror.org/019mzt973 Roozbeh Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų±ŁˆŲ²ŲØŁ‡'),
(106105, 'https://ror.org/019qy1011', 'en', 1, 'https://ror.org/019qy1011 Civil Aviation College ē‹¬ē«‹č”Œę”æę³•äŗŗčˆŖē©ŗå¤§å­¦ę ”'),
(106106, 'https://ror.org/019qzkn95', 'en', 1, 'https://ror.org/019qzkn95 Srinivas University ą®šą®æą®±ąÆ€ą®©ą®æą®µą®¾ą®šąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(106107, 'https://ror.org/019v0z461', 'en', 1, 'https://ror.org/019v0z461 Institute of Natural Fibres and Medicinal Plants'),
(106108, 'https://ror.org/019wvm592', 'en', 1, 'https://ror.org/019wvm592 Australian National University'),
(106109, 'https://ror.org/019xp4858', 'fr', 1, 'https://ror.org/019xp4858 Ɖcole Nationale SupĆ©rieure d''Architecture de Toulouse'),
(106110, 'https://ror.org/019xtd122', 'en', 1, 'https://ror.org/019xtd122 Japan Management Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čƒ½ēŽ‡å”ä¼š'),
(106111, 'https://ror.org/019yv5w19', 'en', 1, 'https://ror.org/019yv5w19 Japan Fisheries Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§ę—„ęœ¬ę°“ē”£ä¼š'),
(106112, 'https://ror.org/019yxat94', 'en', 1, 'https://ror.org/019yxat94 University of Applied Health Sciences Zdravstveno veleučiliŔte u Zagrebu'),
(106113, 'https://ror.org/019z71c59', 'en', 1, 'https://ror.org/019z71c59 Comisia Națională pentru Controlul Activităților Nucleare National Commission for Nuclear Activities Control'),
(106114, 'https://ror.org/01a15g348', 'en', 1, 'https://ror.org/01a15g348 Bioversity International'),
(106115, 'https://ror.org/01a1jjn24', 'en', 1, 'https://ror.org/01a1jjn24 Connecticut Children''s Medical Center'),
(106116, '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'),
(106117, 'https://ror.org/01a258x16', 'en', 1, 'https://ror.org/01a258x16 Northwest Association of Networked Ocean Observing Systems'),
(106118, 'https://ror.org/01a27ax82', 'en', 1, 'https://ror.org/01a27ax82 Caro and Cuervo Institute Instituto Caro y Cuervo'),
(106119, 'https://ror.org/01a3g2z22', 'en', 1, 'https://ror.org/01a3g2z22 ICT Research Institute'),
(106120, 'https://ror.org/01a7rqj69', 'en', 1, 'https://ror.org/01a7rqj69 Archaeological Information System of the Czech Republic'),
(106121, 'https://ror.org/01a9fqn74', 'en', 1, 'https://ror.org/01a9fqn74 HORAC GRAND FRONT OSAKA Clinic HORACć‚°ćƒ©ćƒ³ćƒ•ćƒ­ćƒ³ćƒˆå¤§é˜Ŗć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(106122, 'https://ror.org/01aa0nz04', 'en', 1, 'https://ror.org/01aa0nz04 Bedford College'),
(106123, 'https://ror.org/01aams644', 'en', 1, 'https://ror.org/01aams644 Easwari Engineering College'),
(106124, 'https://ror.org/01aaptx40', 'en', 1, 'https://ror.org/01aaptx40 Indiana University Health'),
(106125, 'https://ror.org/01aaq3s61', 'en', 1, 'https://ror.org/01aaq3s61 IVF Namba Clinic åŒ»ē™‚ę³•äŗŗäø‰ę…§ä¼šIVFćŖć‚“ć°ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(106126, 'https://ror.org/01abtsn51', 'en', 1, 'https://ror.org/01abtsn51 Chung Shan Medical University Hospital'),
(106127, 'https://ror.org/01ac0ay07', 'en', 1, 'https://ror.org/01ac0ay07 Kawasaki City Institute for Public Health å·å“Žåø‚å„åŗ·å®‰å…Øē ”ē©¶ę‰€'),
(106128, 'https://ror.org/01aeda621', 'en', 1, 'https://ror.org/01aeda621 Matsue Seikyo General Hospital ę¾ę±Ÿäæå„ē”Ÿę“»å”åŒēµ„åˆē·åˆē—…é™¢ę¾ę±Ÿē”Ÿå”ē—…é™¢'),
(106129, 'https://ror.org/01aem0w72', 'en', 1, 'https://ror.org/01aem0w72 Sophiahemmet Hƶgskola Sophiahemmet University College'),
(106130, 'https://ror.org/01afbkc02', 'en', 1, 'https://ror.org/01afbkc02 SveučiliŔte Sjever University North'),
(106131, 'https://ror.org/01am20874', 'en', 1, 'https://ror.org/01am20874 Osaka Industrial Design Center å¤§é˜Ŗåŗœē”£ę„­ćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(106132, 'https://ror.org/01apc5d07', 'en', 1, 'https://ror.org/01apc5d07 Ningbo No. 2 Hospital å®ę³¢åø‚ē¬¬äŗŒåŒ»é™¢'),
(106133, 'https://ror.org/01app8660', 'en', 1, 'https://ror.org/01app8660 University of Bonab دانؓگاه بناب'),
(106134, 'https://ror.org/01apwkd48', 'fr', 1, 'https://ror.org/01apwkd48 Graduate School of Engineering Ɖcole SupĆ©rieure d''IngĆ©nieurs en GĆ©nie Ɖlectrique'),
(106135, 'https://ror.org/01aqax545', 'es', 1, 'https://ror.org/01aqax545 Hospital Royo Villanova'),
(106136, 'https://ror.org/01aqcpe75', 'en', 1, 'https://ror.org/01aqcpe75 Japan Association for Building Research Promotion äø€čˆ¬ē¤¾å›£ę³•äŗŗå»ŗēÆ‰ē ”ē©¶ęŒÆčˆˆå”ä¼š'),
(106137, 'https://ror.org/01arysc35', 'en', 1, 'https://ror.org/01arysc35 Institut de santa fe Santa Fe Institute'),
(106138, 'https://ror.org/01ayc5b57', 'en', 1, 'https://ror.org/01ayc5b57 Deutsches Forschungszentrum für Künstliche Intelligenz German Research Centre for Artificial Intelligence');
INSERT INTO `rors` VALUES
(106139, 'https://ror.org/01az7b475', 'en', 1, 'https://ror.org/01az7b475 Korea Research Institute of Standards and Science ķ•œźµ­ķ‘œģ¤€ź³¼ķ•™ģ—°źµ¬ģ›'),
(106140, 'https://ror.org/01b23yw56', 'en', 1, 'https://ror.org/01b23yw56 Shiraniwa Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę¾äø‹ä¼šē™½åŗ­ē—…é™¢'),
(106141, 'https://ror.org/01b436806', 'fr', 1, 'https://ror.org/01b436806 Centre international de recherche sur l’environnement et le dĆ©veloppement International Research Center on Environment and Development'),
(106142, 'https://ror.org/01b5nw197', 'fr', 1, 'https://ror.org/01b5nw197 Sciences Po Bordeaux'),
(106143, 'https://ror.org/01b64k086', 'en', 1, 'https://ror.org/01b64k086 Hefei Normal University åˆč‚„åøˆčŒƒå­¦é™¢'),
(106144, 'https://ror.org/01b7tbs82', 'en', 1, 'https://ror.org/01b7tbs82 Adventist University of Africa'),
(106145, 'https://ror.org/01b7wh712', 'en', 1, 'https://ror.org/01b7wh712 Kazan State Technical University named after A. N. Tupolev Казанский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š. Туполева'),
(106146, 'https://ror.org/01b9eka53', 'pt', 1, 'https://ror.org/01b9eka53 Universidade Vale do Rio Doce'),
(106147, 'https://ror.org/01bb9k904', 'en', 1, 'https://ror.org/01bb9k904 Hokkaido Medical Center for Child Health and Rehabilitation åŒ—ęµ·é“ē«‹å­ć©ć‚‚ē·åˆåŒ»ē™‚ćƒ»ē™‚č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(106148, 'https://ror.org/01bcvtg38', 'en', 1, 'https://ror.org/01bcvtg38 Obihiro Kyokai Hospital åŒ—ęµ·é“ē¤¾ä¼šäŗ‹ę„­å”ä¼šåøÆåŗƒē—…é™¢'),
(106149, 'https://ror.org/01bfp5e25', 'en', 0, 'https://ror.org/01bfp5e25 NTT WEST Osaka Hospital NTTč„æę—„ęœ¬å¤§é˜Ŗē—…é™¢'),
(106150, 'https://ror.org/01bfpmc46', 'en', 1, 'https://ror.org/01bfpmc46 Association for Farmers Rights Defense įƒ¤įƒ”įƒ įƒ›įƒ”įƒ įƒ—įƒ įƒ£įƒ¤įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜įƒ” įƒ“įƒįƒŖįƒ•įƒ˜įƒ” įƒįƒ”įƒįƒŖįƒ˜įƒįƒŖįƒ˜įƒ'),
(106151, 'https://ror.org/01bg3pz19', 'en', 1, 'https://ror.org/01bg3pz19 AISSMS Institute of Information Technology'),
(106152, 'https://ror.org/01bh34439', 'en', 1, 'https://ror.org/01bh34439 East Riding College'),
(106153, 'https://ror.org/01bk10867', 'en', 1, 'https://ror.org/01bk10867 Ostfalia Hochschule für Angewandte Wissenschaften Ostfalia University of Applied Sciences'),
(106154, 'https://ror.org/01bkn5154', 'en', 1, 'https://ror.org/01bkn5154 Mbarara University of Science and Technology'),
(106155, 'https://ror.org/01bm9xh88', 'es', 1, 'https://ror.org/01bm9xh88 Corporación Universitaria del Caribe'),
(106156, 'https://ror.org/01bmjkv45', 'en', 1, 'https://ror.org/01bmjkv45 Friedrich Miescher Institute'),
(106157, 'https://ror.org/01by1wp65', 'en', 1, 'https://ror.org/01by1wp65 Loyola University Maryland Universidad Loyola Maryland'),
(106158, 'https://ror.org/01by48y20', 'no_lang_code', 1, 'https://ror.org/01by48y20 Bogdan Khmelnitsky Melitopol State Pedagogical University ŠœŠµŠ»Ń–Ń‚Š¾ŠæŠ¾Š»ŃŒŃŃŒŠøŠŗŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(106159, 'https://ror.org/01byxf044', 'en', 1, 'https://ror.org/01byxf044 Harry Butler Institute'),
(106160, 'https://ror.org/01bzdp563', 'fr', 1, 'https://ror.org/01bzdp563'),
(106161, 'https://ror.org/01c06s784', 'en', 1, 'https://ror.org/01c06s784 ICFAI University, Tripura'),
(106162, 'https://ror.org/01c3rrh15', 'it', 1, 'https://ror.org/01c3rrh15 Elettra-Sincrotrone Trieste S.C.p.A.'),
(106163, 'https://ror.org/01c4pz451', 'en', 1, 'https://ror.org/01c4pz451 Tehran University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تهران'),
(106164, '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'),
(106165, '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'),
(106166, 'https://ror.org/01c8g5837', 'en', 1, 'https://ror.org/01c8g5837 Sanda City Hospital 三田市民病院'),
(106167, 'https://ror.org/01c9b5052', 'en', 0, 'https://ror.org/01c9b5052 Nagano Techno Foundation å…¬ē›Šč²”å›£ę³•äŗŗé•·é‡ŽēœŒćƒ†ć‚ÆćƒŽč²”å›£'),
(106168, 'https://ror.org/01c9f4y89', 'en', 1, 'https://ror.org/01c9f4y89 Kyrgyz State Technical University ŠšŃ‹Ń€Š³Ń‹Š· мамлекеттик техникалык ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106169, 'https://ror.org/01cawbq05', 'en', 1, 'https://ror.org/01cawbq05 Qatar Foundation Ł…Ų¤Ų³Ų³Ų© قطر'),
(106170, 'https://ror.org/01cbtr271', 'fr', 1, 'https://ror.org/01cbtr271 Ɖcole d''IngĆ©nieurs en Chimie et Sciences du NumĆ©rique'),
(106171, 'https://ror.org/01ccvgc22', 'en', 1, 'https://ror.org/01ccvgc22 Shri Ramswaroop Memorial College of Engineering and Management'),
(106172, 'https://ror.org/01cdy6h50', 'es', 1, 'https://ror.org/01cdy6h50 Universidad Central "Marta Abreu" de las Villas, Universidad Central Marta Abreu de las Villas'),
(106173, 'https://ror.org/01ce8nm85', 'vi', 1, 'https://ror.org/01ce8nm85 Hoa Binh University TrĘ°į»ng ĐẔi hį»c HoĆ  BƬnh'),
(106174, 'https://ror.org/01cerpp10', 'en', 1, 'https://ror.org/01cerpp10 Middlesbrough College'),
(106175, 'https://ror.org/01cfras43', 'pt', 1, 'https://ror.org/01cfras43 Instituto Federal de Educação Ciência e Tecnologia do Mato Grosso do Sul'),
(106176, 'https://ror.org/01chn8516', 'en', 1, 'https://ror.org/01chn8516 Washington Geological Survey'),
(106177, 'https://ror.org/01cj80s71', 'en', 1, 'https://ror.org/01cj80s71 Athenaeum University Universitatea Athenaeum'),
(106178, 'https://ror.org/01cjash87', 'no_lang_code', 1, 'https://ror.org/01cjash87 Astellas Pharma (Japan) ć‚¢ć‚¹ćƒ†ćƒ©ć‚¹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(106179, 'https://ror.org/01cjdqj81', 'en', 1, 'https://ror.org/01cjdqj81 The Japan Forestry Association å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§ę—„ęœ¬å±±ęž—ä¼š'),
(106180, 'https://ror.org/01cjqyj20', 'id', 1, 'https://ror.org/01cjqyj20 Institut Agama Islam Negeri Curup'),
(106181, 'https://ror.org/01ckdn478', 'en', 1, 'https://ror.org/01ckdn478 Universidad de Louisville University of Louisville UniversitƩ de louisville'),
(106182, 'https://ror.org/01cm4sr79', 'lt', 1, 'https://ror.org/01cm4sr79 Klaipėdos valstybinė kolegija / Higher Education Institution'),
(106183, 'https://ror.org/01cmdgj85', 'fr', 1, 'https://ror.org/01cmdgj85 Sciences pour l’action et le dĆ©veloppement - ActivitĆ©s, produits, territoires'),
(106184, 'https://ror.org/01cn6ph21', 'en', 1, 'https://ror.org/01cn6ph21 Sam Ratulangi University Universitas Sam Ratulangi'),
(106185, 'https://ror.org/01cp5nb60', 'en', 1, 'https://ror.org/01cp5nb60 Academia Espaola de Dermatologa y Venereologa Spanish Academy of Dermatology and Venereology'),
(106186, 'https://ror.org/01cprck53', 'en', 1, 'https://ror.org/01cprck53 Osaka Pediatric Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗå°å…ē§‘åŒ»ä¼š'),
(106187, 'https://ror.org/01cpt0h14', 'en', 1, 'https://ror.org/01cpt0h14 The Japanese Association for Infectious Diseases äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę„ŸęŸ“ē—‡å­¦ä¼š'),
(106188, 'https://ror.org/01cq23130', 'en', 1, 'https://ror.org/01cq23130 University of Memphis UniversitƩ de memphis'),
(106189, 'https://ror.org/01crcp038', 'en', 1, 'https://ror.org/01crcp038 Institute for Education Bucharest Institutul pentru Educatie (Bucuresti), Institutul pentru Educatie (Romania)'),
(106190, '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'),
(106191, 'https://ror.org/01ctj1b90', 'en', 1, 'https://ror.org/01ctj1b90 Kharkiv National University of Radio Electronics Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ раГіоелектроніки Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(106192, 'https://ror.org/01cwd8p12', 'pt', 1, 'https://ror.org/01cwd8p12 Universidade de Passo Fundo University of Passo Fundo'),
(106193, 'https://ror.org/01cwqb692', 'en', 1, 'https://ror.org/01cwqb692 Middle Georgia State College'),
(106194, 'https://ror.org/01cy0sz82', 'en', 1, 'https://ror.org/01cy0sz82 University of Suffolk'),
(106195, 'https://ror.org/01d0hx540', 'no_lang_code', 1, 'https://ror.org/01d0hx540 MSD (Finland)'),
(106196, 'https://ror.org/01d171k92', 'es', 1, 'https://ror.org/01d171k92 Universidad Tecnológica de Bolívar'),
(106197, 'https://ror.org/01d2r8q06', 'en', 1, 'https://ror.org/01d2r8q06 Archaeological Museum in Zagreb'),
(106198, 'https://ror.org/01d5fpx70', 'en', 1, 'https://ror.org/01d5fpx70 National University Ostroh Academy ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠžŃŃ‚Ń€Š¾Š·ŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ»'),
(106199, 'https://ror.org/01d5v2p67', 'fr', 1, 'https://ror.org/01d5v2p67 Silva'),
(106200, 'https://ror.org/01d5vx451', 'ca', 1, 'https://ror.org/01d5vx451 Vall d''Hebron Institut de Recerca'),
(106201, 'https://ror.org/01d981710', 'en', 1, 'https://ror.org/01d981710 Technological University of Pereira Universidad Tecnológica de Pereira'),
(106202, 'https://ror.org/01davvx50', 'pt', 1, 'https://ror.org/01davvx50 Hospital VeterinƔrio do Porto (Portugal) Porto Veterinary Hospital'),
(106203, 'https://ror.org/01db19a87', 'en', 1, 'https://ror.org/01db19a87 ESIC Business & Marketing School'),
(106204, 'https://ror.org/01dcw5w74', 'en', 1, 'https://ror.org/01dcw5w74 Chongqing Normal University é‡åŗ†åøˆčŒƒå¤§å­¦'),
(106205, 'https://ror.org/01dcz6f16', 'nl', 1, 'https://ror.org/01dcz6f16 Scalda'),
(106206, 'https://ror.org/01dez0c30', 'en', 1, 'https://ror.org/01dez0c30 MVJ College of Engineering'),
(106207, 'https://ror.org/01dfakn83', 'en', 1, 'https://ror.org/01dfakn83 Gunma Prefectural Livestock Experiment Station ē¾¤é¦¬ēœŒē•œē”£č©¦éØ“å “'),
(106208, 'https://ror.org/01dg47b60', 'en', 1, 'https://ror.org/01dg47b60 Pontifical Catholic University of Rio de Janeiro Pontifícia Universidade Católica do Rio de Janeiro'),
(106209, 'https://ror.org/01dg85j68', 'fr', 1, 'https://ror.org/01dg85j68 French Institute for Research and Security Institut National de Recherche et de SƩcuritƩ'),
(106210, 'https://ror.org/01dj05x81', 'en', 1, 'https://ror.org/01dj05x81 Federal University Dutsin-Ma'),
(106211, 'https://ror.org/01dkyve95', 'fr', 1, 'https://ror.org/01dkyve95 L''Institut Agro'),
(106212, 'https://ror.org/01dm2pd27', 'es', 1, 'https://ror.org/01dm2pd27 Universidad de Ciencias y Humanidades'),
(106213, 'https://ror.org/01dm91j21', 'en', 1, 'https://ror.org/01dm91j21 Tartu University Hospital Tartu Ülikooli Kliinikum'),
(106214, 'https://ror.org/01dn09e98', 'en', 1, 'https://ror.org/01dn09e98 Terra'),
(106215, 'https://ror.org/01dn27978', 'en', 1, 'https://ror.org/01dn27978 Kabale University'),
(106216, 'https://ror.org/01dp1py52', 'en', 1, 'https://ror.org/01dp1py52 National Research & Development Institute for Textiles and Leather'),
(106217, 'https://ror.org/01dpyn972', 'en', 1, 'https://ror.org/01dpyn972 Institute of Oncology Research'),
(106218, 'https://ror.org/01drx8a35', 'en', 1, 'https://ror.org/01drx8a35 VNUHCM – High School for the Gifted'),
(106219, 'https://ror.org/01ds1xe75', 'fr', 0, 'https://ror.org/01ds1xe75 Laboratoire d''Immunologie et d''ImmunothƩrapie des Cancers'),
(106220, 'https://ror.org/01dst3018', 'es', 1, 'https://ror.org/01dst3018 Instituto Tecnológico de MazatlÔn'),
(106221, 'https://ror.org/01dtbtf55', 'id', 1, 'https://ror.org/01dtbtf55 Universitas Islam Negeri Sultan Syarif Kasim Riau'),
(106222, 'https://ror.org/01dtyv127', 'en', 1, 'https://ror.org/01dtyv127 Region SjƦlland Region Zealand'),
(106223, 'https://ror.org/01dwytp71', 'en', 1, 'https://ror.org/01dwytp71 Gifu Prefectural Police 岐阜県警察'),
(106224, 'https://ror.org/01dxv6p09', 'en', 1, 'https://ror.org/01dxv6p09 Japan Water Research Center å…¬ē›Šč²”å›£ę³•äŗŗę°“é“ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(106225, 'https://ror.org/01dy3j343', 'en', 1, 'https://ror.org/01dy3j343 Community Coordinated Modeling Center'),
(106226, 'https://ror.org/01e08v038', 'en', 1, 'https://ror.org/01e08v038 Yawatahama City General Hospital åø‚ē«‹å…«å¹”ęµœē·åˆē—…é™¢'),
(106227, 'https://ror.org/01e0vxt85', 'es', 1, 'https://ror.org/01e0vxt85 Fundación Universitaria Monserrate'),
(106228, 'https://ror.org/01e27f781', 'en', 1, 'https://ror.org/01e27f781 Stockport College'),
(106229, 'https://ror.org/01e2d5r18', 'en', 1, 'https://ror.org/01e2d5r18 Navitas Clinic åŒ»ē™‚ę³•äŗŗē¤¾å›£é‰„åŒ»ä¼šćƒŠćƒ“ć‚æć‚¹ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(106230, 'https://ror.org/01e33x915', 'en', 0, 'https://ror.org/01e33x915 Minneapolis Business College'),
(106231, 'https://ror.org/01e36dv41', 'en', 1, 'https://ror.org/01e36dv41 Robarts Clinical Trials'),
(106232, 'https://ror.org/01e3jg024', 'es', 1, 'https://ror.org/01e3jg024 BenemƩrita Escuela Normal Urbana "Profr. Domingo Carballo FƩlix"'),
(106233, 'https://ror.org/01e4kx996', 'en', 1, 'https://ror.org/01e4kx996 State University of Tetova Universiteti ShtetĆ«ror i TetovĆ«s Државен ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ во Тетово'),
(106234, 'https://ror.org/01e4yrb49', 'en', 1, 'https://ror.org/01e4yrb49 Mie Prefectural Government äø‰é‡ēœŒåŗ'),
(106235, 'https://ror.org/01e57nb43', 'es', 1, 'https://ror.org/01e57nb43 Hospital Universitario Puerta de Hierro Majadahonda'),
(106236, 'https://ror.org/01e5ckr65', 'en', 1, 'https://ror.org/01e5ckr65 Herzen University Российский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. А. И. Герцена'),
(106237, 'https://ror.org/01e6xrt80', 'en', 1, 'https://ror.org/01e6xrt80 Japanese Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēœ‹č­·å”ä¼š'),
(106238, 'https://ror.org/01e7bym67', 'en', 1, 'https://ror.org/01e7bym67 Aomori Prefectural Government é’ę£®ēœŒåŗ'),
(106239, 'https://ror.org/01e7wth34', 'fr', 1, 'https://ror.org/01e7wth34 DƩpartement Environnement et Agronomie'),
(106240, 'https://ror.org/01e87x925', 'en', 1, 'https://ror.org/01e87x925 The Institute of Cetacean Research äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬éÆØé”žē ”ē©¶ę‰€'),
(106241, 'https://ror.org/01e8w7w36', 'en', 1, 'https://ror.org/01e8w7w36 Saskatchewan Polytechnic'),
(106242, 'https://ror.org/01e97pj45', 'en', 1, 'https://ror.org/01e97pj45 Japan Surgical Association ę—„ęœ¬č‡ØåŗŠå¤–ē§‘å­¦ä¼š'),
(106243, 'https://ror.org/01eah2841', 'en', 1, 'https://ror.org/01eah2841 Oita Prefectural Agriculture, Forestry and Fisheries Research Center å¤§åˆ†ēœŒč¾²ęž—ę°“ē”£ē ”ē©¶ęŒ‡å°Žć‚»ćƒ³ć‚æćƒ¼'),
(106244, 'https://ror.org/01eb5yv70', 'en', 1, 'https://ror.org/01eb5yv70 University of Diyala Ų¬Ų§Ł…Ų¹Ų© ŲÆŁŠŲ§Ł„Ł‰'),
(106245, 'https://ror.org/01eeckp72', 'en', 1, 'https://ror.org/01eeckp72 The Electrochemical Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗé›»ę°—åŒ–å­¦ä¼š'),
(106246, 'https://ror.org/01eeqzy24', 'en', 1, 'https://ror.org/01eeqzy24 HĆøgskulen i Volda Volda University College'),
(106247, 'https://ror.org/01efr2w87', 'en', 1, 'https://ror.org/01efr2w87 Institute for Traffic Accident Research and Data Analysis å…¬ē›Šč²”å›£ę³•äŗŗäŗ¤é€šäŗ‹ę•…ē·åˆåˆ†ęžć‚»ćƒ³ć‚æćƒ¼'),
(106248, 'https://ror.org/01eg9n443', 'en', 1, 'https://ror.org/01eg9n443 HƤme University of Applied Sciences HƤmeen ammattikorkeakoulu'),
(106249, 'https://ror.org/01eqvd516', 'no_lang_code', 1, 'https://ror.org/01eqvd516 MSD (Sweden)'),
(106250, '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'),
(106251, 'https://ror.org/01es68917', 'en', 1, 'https://ror.org/01es68917 American Association of Teachers of Spanish and Portuguese'),
(106252, 'https://ror.org/01es6dz53', 'en', 1, 'https://ror.org/01es6dz53 Universidad de Mendoza University of Mendoza'),
(106253, 'https://ror.org/01esb9c72', 'en', 1, 'https://ror.org/01esb9c72 Sugita Genpaku Memorial Obama Municipal Hospital ę‰ē”°ēŽ„ē™½čØ˜åæµå…¬ē«‹å°ęµœē—…é™¢'),
(106254, 'https://ror.org/01evjjx71', 'fr', 1, 'https://ror.org/01evjjx71 Gene-Environnement Interactions in Cardio-Vascular Physiopathology Interactions GĆØne-Environnement en Physiopathologie Cardio-Vasculaire'),
(106255, 'https://ror.org/01evs8y88', 'en', 1, 'https://ror.org/01evs8y88 Metabolomics and Genomics Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ł…ŲŖŲ§ŲØŁˆŁ„ŁˆŁ…ŪŒŚ©Ų³ و Ś˜Ł†ŁˆŁ…ŪŒŚ©Ų³'),
(106256, 'https://ror.org/01exadq33', 'en', 1, 'https://ror.org/01exadq33 Okayama Southern Institute of Health å²”å±±ēœŒå—éƒØå„åŗ·ć„ćć‚Šć‚»ćƒ³ć‚æćƒ¼'),
(106257, 'https://ror.org/01exg3m30', 'pt', 1, 'https://ror.org/01exg3m30 Centro de Investigação em Cidades Inteligentes'),
(106258, 'https://ror.org/01ez49q42', 'en', 1, 'https://ror.org/01ez49q42 Friends of the Earth Czech Republic HnutĆ­ DUHA'),
(106259, 'https://ror.org/01f0syq13', 'en', 1, 'https://ror.org/01f0syq13 Babson College'),
(106260, 'https://ror.org/01f7bcy98', 'en', 1, 'https://ror.org/01f7bcy98 Heidelberg Institute for Theoretical Studies Heidelberger Institut für Theoretische Studien'),
(106261, 'https://ror.org/01f8dzj77', 'en', 1, 'https://ror.org/01f8dzj77 Kuwana City Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę”‘ååø‚ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(106262, 'https://ror.org/01f8qvj05', 'en', 1, 'https://ror.org/01f8qvj05 Bengbu Medical College čšŒåŸ åŒ»å­¦é™¢'),
(106263, 'https://ror.org/01fefmh69', 'es', 1, 'https://ror.org/01fefmh69 Jaime Bausate y Meza University Universidad Jaime Bausate y Meza'),
(106264, 'https://ror.org/01fem2359', 'en', 1, 'https://ror.org/01fem2359 Maryland Department of Natural Resources'),
(106265, 'https://ror.org/01fem7p07', 'es', 1, 'https://ror.org/01fem7p07 Unión Médica Clínica Universitaria'),
(106266, 'https://ror.org/01ff74m36', 'en', 1, 'https://ror.org/01ff74m36 Burapha University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøšąø¹ąø£ąøžąø²'),
(106267, 'https://ror.org/01fgkdh07', 'en', 1, 'https://ror.org/01fgkdh07 Daiyukai General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤§é›„ä¼šē·åˆå¤§é›„ä¼šē—…é™¢, ē·åˆå¤§é›„ä¼šē—…é™¢å¤§é›„ä¼šē¬¬äø€ē—…é™¢'),
(106268, 'https://ror.org/01fhw6296', 'en', 1, 'https://ror.org/01fhw6296 University Of Fallujah Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŁ„ŁˆŲ¬Ų©'),
(106269, 'https://ror.org/01fk7f614', 'en', 1, 'https://ror.org/01fk7f614 Gakushuin Women''s College 学習院儳子大学'),
(106270, 'https://ror.org/01fkzt617', 'en', 1, 'https://ror.org/01fkzt617 Belarusian State Economic University Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃŠŗŠ°Š½Š°Š¼Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106271, 'https://ror.org/01fmwcn13', 'en', 1, 'https://ror.org/01fmwcn13 Murray State University UniversitĆ© d''Ɖtat de murray'),
(106272, 'https://ror.org/01fpczx89', 'en', 1, 'https://ror.org/01fpczx89 Tennessee State University UniversitĆ© d''Ɖtat du tennessee'),
(106273, 'https://ror.org/01fphns57', 'de', 1, 'https://ror.org/01fphns57 Lahn-Dill District Lahn-Dill-Kreis'),
(106274, 'https://ror.org/01fs5y210', 'en', 1, 'https://ror.org/01fs5y210 Nagano Prefecture General Industrial Technology Center é•·é‡ŽēœŒå·„ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(106275, 'https://ror.org/01ftapy35', 'en', 1, 'https://ror.org/01ftapy35 Kagoshima Prefectural Forestry Technology Center é¹æå…å³¶ēœŒę£®ęž—ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(106276, 'https://ror.org/01fvbaw18', 'es', 1, 'https://ror.org/01fvbaw18 Universidad de Valladolid Universidade de Valladolid University of Valladolid Valladolideko Unibertsitatea'),
(106277, 'https://ror.org/01fvmtt37', 'en', 1, 'https://ror.org/01fvmtt37 OspidƩal Ollscoile Thamhlachta Tallaght University Hospital'),
(106278, 'https://ror.org/01fz7mn40', 'fr', 1, 'https://ror.org/01fz7mn40 Ɖcole Nationale de la Statistique et de l''Administration Ɖconomique'),
(106279, 'https://ror.org/01g09ef73', 'en', 1, 'https://ror.org/01g09ef73 Angel Kanchev University of Ruse Русенски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106280, 'https://ror.org/01g1gvr46', 'no_lang_code', 1, 'https://ror.org/01g1gvr46 Viatris'),
(106281, 'https://ror.org/01g23ms62', 'en', 1, 'https://ror.org/01g23ms62 Saitama Agricultural Technology Research Center åŸ¼ēŽ‰ēœŒč¾²ę„­ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(106282, 'https://ror.org/01g307a52', 'en', 1, 'https://ror.org/01g307a52 Gifu Prefectural Livestock Research Institute å²é˜œēœŒē•œē”£ē ”ē©¶ę‰€'),
(106283, 'https://ror.org/01g3pby21', 'en', 1, 'https://ror.org/01g3pby21 St. Joseph’s College of Engineering'),
(106284, 'https://ror.org/01g400t51', 'en', 1, 'https://ror.org/01g400t51 Uganda National Academy of Sciences'),
(106285, 'https://ror.org/01g6z7557', 'en', 1, 'https://ror.org/01g6z7557 Richmond upon Thames College'),
(106286, 'https://ror.org/01g7s6g79', 'en', 1, 'https://ror.org/01g7s6g79 Neuroscience Research Australia'),
(106287, 'https://ror.org/01gah6w46', 'en', 1, 'https://ror.org/01gah6w46 University of Southern Philippines Foundation'),
(106288, 'https://ror.org/01gasft26', 'pt', 1, 'https://ror.org/01gasft26 Instituto Superior PolitƩcnico de Gaza'),
(106289, 'https://ror.org/01gcmye25', 'en', 1, 'https://ror.org/01gcmye25 Mattu University įˆ˜į‰± į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(106290, 'https://ror.org/01ge5zt06', 'en', 1, 'https://ror.org/01ge5zt06 Eberswalde University for Sustainable Development Hochschule für Nachhaltige Entwicklung Eberswalde'),
(106291, 'https://ror.org/01ghfgz70', 'en', 1, 'https://ror.org/01ghfgz70 Directorate for Technology, Innovation and Partnerships'),
(106292, 'https://ror.org/01gk44f56', 'en', 1, 'https://ror.org/01gk44f56 Bryant University Universidad Bryant'),
(106293, 'https://ror.org/01gkmhp75', 'en', 1, 'https://ror.org/01gkmhp75 Raparin Technical and Vocational Institute معهد Ų±Ų§ŲØŲ±ŁŠŁ† Ų§Ł„ŲŖŁ‚Ł†ŁŠ ŁˆŲ§Ł„Ł…Ł‡Ł†ŁŠ Ł¾Ū•ŪŒŁ…Ų§Ł†ŚÆŪ•ŪŒ ŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ و Ł¾ŪŒŲ“Ū•ŪŒ Ś•Ų§Ł¾Ū•Ś•ŪŒŁ†'),
(106294, 'https://ror.org/01gkym270', 'de', 1, 'https://ror.org/01gkym270 Laser Zentrum Hannover'),
(106295, 'https://ror.org/01gmp5538', 'en', 1, 'https://ror.org/01gmp5538 Office of Information and Resource Management'),
(106296, 'https://ror.org/01gmyr425', 'en', 1, 'https://ror.org/01gmyr425 Atma Jaya University Yogyakarta Universitas Atma Jaya Yogyakarta'),
(106297, 'https://ror.org/01gngef73', 'id', 1, 'https://ror.org/01gngef73 Universitas Muhammadiyah Tangerang'),
(106298, 'https://ror.org/01gpw0445', 'no_lang_code', 1, 'https://ror.org/01gpw0445 Kompetenzzentrum Holz'),
(106299, 'https://ror.org/01gr30f96', 'en', 1, 'https://ror.org/01gr30f96 Alasmarya Islamic University الجامعة Ų§Ł„Ų£Ų³Ł…Ų±ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(106300, 'https://ror.org/01grm2d66', 'en', 1, 'https://ror.org/01grm2d66 Technical University of Mombasa'),
(106301, 'https://ror.org/01grym831', 'en', 1, 'https://ror.org/01grym831 Shikoku University, Junior College å››å›½å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(106302, 'https://ror.org/01gsr9f55', 'en', 1, 'https://ror.org/01gsr9f55 Surgut State University Š”ŃƒŃ€Š³ŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106303, 'https://ror.org/01gw3d370', 'en', 1, 'https://ror.org/01gw3d370 University of Windsor UniversitƩ de windsor'),
(106304, 'https://ror.org/01gx2kf62', 'en', 1, 'https://ror.org/01gx2kf62 Trinity Laban Conservatoire of Music and Dance'),
(106305, 'https://ror.org/01gxncx39', 'en', 1, 'https://ror.org/01gxncx39 JAē„žå„ˆå·åŽšē”Ÿé€£ē›øęØ”åŽŸå”åŒē—…é™¢ Sagamihara Kyodo Hospital'),
(106306, 'https://ror.org/01gyv0x79', 'en', 1, 'https://ror.org/01gyv0x79 Gifu Prefectural Research Institute for Health and Environmental Sciences å²é˜œēœŒäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(106307, 'https://ror.org/01h019421', 'pt', 1, 'https://ror.org/01h019421 Associação BLC3 Campus de Tecnologia e Inovação'),
(106308, 'https://ror.org/01h0ffh48', 'fr', 1, 'https://ror.org/01h0ffh48 Ɖcole Nationale SupĆ©rieure de Chimie de Rennes'),
(106309, 'https://ror.org/01h1jbk91', 'en', 1, 'https://ror.org/01h1jbk91 Botanischer Garten Meise Jardin botanique de Meise Plantentuin Meise'),
(106310, 'https://ror.org/01h30sx92', 'en', 1, 'https://ror.org/01h30sx92 The Society of Photography and Imaging of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†™ēœŸå­¦ä¼š'),
(106311, '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'),
(106312, 'https://ror.org/01h41r361', 'en', 1, 'https://ror.org/01h41r361 Lembaga Getah Malaysia Malaysian Rubber Board'),
(106313, 'https://ror.org/01h5a0582', 'no_lang_code', 1, 'https://ror.org/01h5a0582 Carnegie Learning, Inc. (United States)'),
(106314, 'https://ror.org/01h6frr69', 'en', 1, 'https://ror.org/01h6frr69 Duksung Women''s University ė•ģ„±ģ—¬ģžėŒ€ķ•™źµ'),
(106315, 'https://ror.org/01h6hv014', 'fr', 1, 'https://ror.org/01h6hv014 HƓpital Saint-Julien'),
(106316, 'https://ror.org/01h745q46', 'en', 1, 'https://ror.org/01h745q46 Panthera Corporation'),
(106317, 'https://ror.org/01h8xh496', 'en', 1, 'https://ror.org/01h8xh496 University of Sustainability'),
(106318, 'https://ror.org/01hgj5t98', 'en', 1, 'https://ror.org/01hgj5t98 Saint Mary''s College of California'),
(106319, 'https://ror.org/01hgwb793', 'pt', 1, 'https://ror.org/01hgwb793 Direcção-Geral da Saúde'),
(106320, 'https://ror.org/01hgyd665', 'en', 1, 'https://ror.org/01hgyd665 Manicaland State University of Applied Sciences'),
(106321, 'https://ror.org/01hh6s351', 'en', 1, 'https://ror.org/01hh6s351 Network for Earthquake Engineering Simulation'),
(106322, 'https://ror.org/01hhn8329', 'en', 1, 'https://ror.org/01hhn8329 Max Planck Society Max-Planck-Gesellschaft zur Fƶrderung der Wissenschaften'),
(106323, 'https://ror.org/01hkzmd51', 'en', 1, 'https://ror.org/01hkzmd51 Miyagi Prefectural Furukawa Agricultural Experiment Station å®®åŸŽēœŒå¤å·č¾²ę„­č©¦éØ“å “'),
(106324, 'https://ror.org/01hn2d233', 'en', 1, 'https://ror.org/01hn2d233 Biomechanics Institute of Valencia Instituto de BiomecƔnica de Valencia'),
(106325, 'https://ror.org/01hntn815', 'fr', 1, 'https://ror.org/01hntn815 Research Team on Innovation Process Ɖquipe de Recherche sur les Processus Innovatifs'),
(106326, 'https://ror.org/01hrftf03', 'en', 1, 'https://ror.org/01hrftf03 Japan Maritime Center å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęµ·äŗ‹ć‚»ćƒ³ć‚æćƒ¼'),
(106327, 'https://ror.org/01hw00g98', 'es', 1, 'https://ror.org/01hw00g98 Sociedad EspaƱola de Nefrologƭa'),
(106328, 'https://ror.org/01hwamj44', 'en', 1, 'https://ror.org/01hwamj44 Antwerp University Hospital Universitair Ziekenhuis Antwerpen'),
(106329, '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'),
(106330, 'https://ror.org/01hykfk44', 'es', 1, 'https://ror.org/01hykfk44 Centro de Investigación en Ciencias Atómicas, Nucleares y Moleculares'),
(106331, 'https://ror.org/01hynnt93', 'en', 1, 'https://ror.org/01hynnt93 Central Institute of Mental Health Zentralinstitut für Seelische Gesundheit'),
(106332, 'https://ror.org/01hz4v948', 'en', 1, 'https://ror.org/01hz4v948 National Institute of Technology Karnataka ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®°ąÆą®Øą®¾ą®Ÿą®•ą®®ąÆ ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²•ą²°ą³ą²Øą²¾ą²Ÿą²•'),
(106333, 'https://ror.org/01j1rma10', 'en', 1, 'https://ror.org/01j1rma10 Ajman University Ų¬Ų§Ł…Ų¹Ų© عجمان Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(106334, 'https://ror.org/01j2kd606', 'en', 1, 'https://ror.org/01j2kd606 Trinity Western University'),
(106335, 'https://ror.org/01j33fx63', 'en', 1, 'https://ror.org/01j33fx63 Sejarah berdirinya Universitas Islam Negeri Sunan Gunung Djati State Islamic University Bandung'),
(106336, 'https://ror.org/01j392911', 'en', 1, 'https://ror.org/01j392911 Kido Hospital ę–°ę½ŸåŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆęœØęˆøē—…é™¢'),
(106337, 'https://ror.org/01j5j6632', 'en', 1, 'https://ror.org/01j5j6632 Industrial Research Center of Shiga Prefecture ę»‹č³€ēœŒå·„ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(106338, 'https://ror.org/01j7ztj55', 'de', 1, 'https://ror.org/01j7ztj55 Oikoplus GmbH'),
(106339, 'https://ror.org/01jays723', 'en', 1, 'https://ror.org/01jays723 Canadian Blood Services'),
(106340, 'https://ror.org/01jbb3w63', 'fr', 1, 'https://ror.org/01jbb3w63 Centre Hospitalier Universitaire de Reims'),
(106341, 'https://ror.org/01jem9c82', 'es', 1, 'https://ror.org/01jem9c82 Andaluziako Junta Junta de AndalucĆ­a Regional Government of Andalusia'),
(106342, 'https://ror.org/01jfjwr55', 'en', 1, 'https://ror.org/01jfjwr55 Beijing City University åŒ—äŗ¬åŸŽåø‚å­¦é™¢'),
(106343, 'https://ror.org/01jgxeb98', 'hu', 1, 'https://ror.org/01jgxeb98 Pentecostal Theological College Pünkƶsdi Teológiai Főiskola'),
(106344, 'https://ror.org/01jjhfr75', 'en', 1, 'https://ror.org/01jjhfr75 Ɩzyeğin University Ɩzyeğin Ɯniversitesi'),
(106345, 'https://ror.org/01jk2zc89', 'en', 1, 'https://ror.org/01jk2zc89 Chuo Kikuu cha Egerton Egerton University'),
(106346, 'https://ror.org/01jn5wy42', 'en', 1, 'https://ror.org/01jn5wy42 Brest State A.S. Pushkin University Брестский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š”. Пушкина Š‘Ń€ŃŃŃ†ŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń А. Š”. ŠŸŃƒŃˆŠŗŃ–Š½Š°'),
(106347, 'https://ror.org/01jnc6p74', 'fr', 1, 'https://ror.org/01jnc6p74 Charles LeMoyne Hospital HƓpital Charles-Le Moyne, HƓpital Charles-LeMoyne'),
(106348, 'https://ror.org/01jpqtk24', 'bs', 1, 'https://ror.org/01jpqtk24 Institut za ispitivanje materijala IMS a.d. Beograd Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠøŃŠæŠøŃ‚ŠøŠ²Š°ŃšŠµ Š¼Š°Ń‚ŠµŃ€ŠøŃ˜Š°Š»Š° а.Š“.'),
(106349, 'https://ror.org/01jqdqz10', 'no_lang_code', 1, 'https://ror.org/01jqdqz10 Sina Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų³ŪŒŁ†Ų§'),
(106350, 'https://ror.org/01jrr7w21', 'fr', 1, 'https://ror.org/01jrr7w21 Montpellier Recherche en Management'),
(106351, 'https://ror.org/01js9jv94', 'en', 1, 'https://ror.org/01js9jv94 EBS University of Business and Law EBS Universität für Wirtschaft und Recht'),
(106352, 'https://ror.org/01jty7g66', 'en', 1, 'https://ror.org/01jty7g66 Deutsches Zentrum für integrative Biodiversitätsforschung German Centre for Integrative Biodiversity Research'),
(106353, 'https://ror.org/01jvdtb95', 'en', 1, 'https://ror.org/01jvdtb95 Royal Academy of Music'),
(106354, 'https://ror.org/01jvpb595', 'nl', 1, 'https://ror.org/01jvpb595 St. Antonius Hospital St. Antonius Ziekenhuis'),
(106355, 'https://ror.org/01jw0fq74', 'en', 1, 'https://ror.org/01jw0fq74 Grimsby Institute'),
(106356, 'https://ror.org/01jxtne23', 'en', 1, 'https://ror.org/01jxtne23 University Hospital Olomouc'),
(106357, 'https://ror.org/01k0ckf23', 'en', 1, 'https://ror.org/01k0ckf23 Japan Organ Transplant Network å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č‡“å™Øē§»ę¤ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(106358, 'https://ror.org/01k0ds106', 'en', 1, 'https://ror.org/01k0ds106 National Institute for Research Advancement å…¬ē›Šč²”å›£ę³•äŗŗē·åˆē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(106359, 'https://ror.org/01k38fe56', 'en', 1, 'https://ror.org/01k38fe56 Katsuragi Hospital åŒ»ē™‚ę³•äŗŗå¤§ę¤ä¼šč‘›åŸŽē—…é™¢'),
(106360, 'https://ror.org/01k3mbs15', 'en', 1, 'https://ror.org/01k3mbs15 Shahid Chamran University of Ahvaz دانؓگاه Ų“Ł‡ŪŒŲÆ چمران Ų§Ł‡ŁˆŲ§Ų²'),
(106361, 'https://ror.org/01k3n4406', 'en', 1, 'https://ror.org/01k3n4406 Asama Nanroku Komoro Medical Center JAé•·é‡ŽåŽšē”Ÿé€£ęµ…é–“å—éŗ“ć“ć‚‚ć‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(106362, 'https://ror.org/01k44g025', 'en', 1, 'https://ror.org/01k44g025 Northern Kentucky University'),
(106363, 'https://ror.org/01kaqxm37', 'en', 1, 'https://ror.org/01kaqxm37 MSD K.K., MSD K.K. (Japan)'),
(106364, 'https://ror.org/01kfvpq31', 'en', 1, 'https://ror.org/01kfvpq31 Yashio Central General hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å”å‹ä¼šå…«ę½®äø­å¤®ē·åˆē—…é™¢'),
(106365, 'https://ror.org/01khn0w07', 'en', 1, 'https://ror.org/01khn0w07 Lambung Mangkurat University Universitas Lambung Mangkurat'),
(106366, 'https://ror.org/01khx4a30', 'en', 1, 'https://ror.org/01khx4a30 Goldsmiths University of London Goldsmiths, Prifysgol Llundain'),
(106367, 'https://ror.org/01kj3mp08', 'en', 1, 'https://ror.org/01kj3mp08 Organization for Landscape and Urban Green Infrastructure å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚ē·‘åŒ–ę©Ÿę§‹'),
(106368, 'https://ror.org/01kkk1p70', 'en', 1, 'https://ror.org/01kkk1p70 Hot Spring Research Center å…¬ē›Šč²”å›£ę³•äŗŗäø­å¤®ęø©ę³‰ē ”ē©¶ę‰€'),
(106369, 'https://ror.org/01km6p862', 'en', 1, 'https://ror.org/01km6p862 United Arab Emirates University Ų¬Ų§Ł…Ų¹Ų© ال؄مارات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© المتحدة'),
(106370, 'https://ror.org/01kn7bc28', 'en', 1, 'https://ror.org/01kn7bc28 Sol Plaatje University'),
(106371, 'https://ror.org/01ktt4j08', 'id', 1, 'https://ror.org/01ktt4j08 Universitas Maritim Raja Ali Haji'),
(106372, 'https://ror.org/01ktv1m31', 'en', 1, 'https://ror.org/01ktv1m31 Cardiovascular Diseases Research Institute Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ قلب و Ų¹Ų±ŁˆŁ‚'),
(106373, 'https://ror.org/01kvvc641', 'en', 1, 'https://ror.org/01kvvc641 Avicenna Medical College ابن Ų³ŪŒŁ†Ų§ Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(106374, 'https://ror.org/01kw1gj07', 'en', 1, 'https://ror.org/01kw1gj07 Colegio Ithaca Ithaca College'),
(106375, 'https://ror.org/01kwx4m12', 'fr', 1, 'https://ror.org/01kwx4m12 Groupe de Recherche en Ɖnergie Ɖlectrique de Nancy'),
(106376, 'https://ror.org/01kzjg088', 'en', 1, 'https://ror.org/01kzjg088 Omsk State Technical University ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106377, 'https://ror.org/01m1cpf62', 'en', 1, 'https://ror.org/01m1cpf62 SENSCIENCE'),
(106378, 'https://ror.org/01m316d02', 'en', 1, 'https://ror.org/01m316d02 Center for Reproductive Medicine and Implantation Research, Sugiyama Clinic ę‰å±±ē”£å©¦äŗŗē§‘'),
(106379, 'https://ror.org/01m3rmj58', 'en', 1, 'https://ror.org/01m3rmj58 Educational Research Institute'),
(106380, 'https://ror.org/01m4gt983', 'en', 1, 'https://ror.org/01m4gt983 SAIT Polytechnic'),
(106381, 'https://ror.org/01m6drz27', 'en', 1, 'https://ror.org/01m6drz27 Tokoha Gakuen Junior College åøøč‘‰å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(106382, 'https://ror.org/01m6pbq35', 'pt', 1, 'https://ror.org/01m6pbq35 Administração do Porto de Lisboa SA (Portugal) Port of Lisbon'),
(106383, 'https://ror.org/01m7hcv15', 'en', 1, 'https://ror.org/01m7hcv15 U.S. Air Force Sustainment Center'),
(106384, 'https://ror.org/01m8p7q42', 'en', 1, 'https://ror.org/01m8p7q42 Dongguan University of Technology äøœčŽžē†å·„å­¦é™¢'),
(106385, 'https://ror.org/01mbjxe28', 'en', 1, 'https://ror.org/01mbjxe28 Japan Sabo Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ę²»ę°“ē ‚é˜²å”ä¼š'),
(106386, 'https://ror.org/01mc1cc12', 'fr', 1, 'https://ror.org/01mc1cc12 Centre Universitaire Tissemsilt Ł…Ų±ŁƒŲ² Ų¬Ų§Ł…Ų¹Ų© ŲŖŁŠŲ³Ł…Ų³ŁŠŁ„ŲŖ'),
(106387, 'https://ror.org/01mez6w56', 'en', 1, 'https://ror.org/01mez6w56 academyEX'),
(106388, 'https://ror.org/01mgtm102', 'no_lang_code', 1, 'https://ror.org/01mgtm102 MSD (Italy)'),
(106389, 'https://ror.org/01mhwgh68', 'no_lang_code', 1, 'https://ror.org/01mhwgh68 MSD (Singapore)'),
(106390, 'https://ror.org/01mke9645', 'en', 1, 'https://ror.org/01mke9645 Ministry of Defence MinistƩrio da Defesa'),
(106391, 'https://ror.org/01mksg519', 'en', 1, 'https://ror.org/01mksg519 Gokhale Institute of Politics and Economics ą¤—ą„‹ą¤–ą¤²ą„‡ ą¤°ą¤¾ą¤œą¤Øą„€ą¤¤ą¤æ ą¤ą¤µą¤‚ ą¤…ą¤°ą„ą¤„ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(106392, 'https://ror.org/01mn7k054', 'en', 1, 'https://ror.org/01mn7k054 University of Lubumbashi UniversitƩ de Lubumbashi'),
(106393, 'https://ror.org/01mp6rr09', 'en', 1, 'https://ror.org/01mp6rr09 Occupational Sleep Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اختلالات خواب Ų“ŲŗŁ„ŪŒ'),
(106394, 'https://ror.org/01mq28k31', 'en', 1, 'https://ror.org/01mq28k31 Sakurajyuji Hospital åŒ»ē™‚ę³•äŗŗę”œåå­—ę”œåå­—ē—…é™¢'),
(106395, 'https://ror.org/01msc1703', 'en', 1, 'https://ror.org/01msc1703 Indian Institute of Astrophysics ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤¾ą¤°ą¤¾ą¤­ą„Œą¤¤ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µą®¾ą®©ą®æą®Æą®±ąÆą®Ŗą®æą®Æą®²ąÆ ą®®ąÆˆą®Æą®®ąÆ'),
(106396, 'https://ror.org/01mtjs876', 'ro', 1, 'https://ror.org/01mtjs876 Spitalul Clinic de Nefrologie Dr. Carol Davila'),
(106397, 'https://ror.org/01mxcr651', 'es', 1, 'https://ror.org/01mxcr651 Universidad Católica del Cibao'),
(106398, 'https://ror.org/01mxm0y17', 'es', 1, 'https://ror.org/01mxm0y17 Universidad Central del Este'),
(106399, 'https://ror.org/01mxmpy39', 'en', 1, 'https://ror.org/01mxmpy39 Occidental College'),
(106400, 'https://ror.org/01my0h411', 'en', 1, 'https://ror.org/01my0h411 Kanazawa Gakuin College é‡‘ę²¢å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(106401, 'https://ror.org/01mzbks65', 'en', 1, 'https://ror.org/01mzbks65 Institute for Information Technologies Kragujevac Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за информационе Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ˜Šµ ŠšŃ€Š°Š³ŃƒŃ˜ŠµŠ²Š°Ń†'),
(106402, 'https://ror.org/01n002310', 'en', 1, 'https://ror.org/01n002310 Institute of Electrical and Electronics Engineers'),
(106403, 'https://ror.org/01n006s45', 'es', 1, 'https://ror.org/01n006s45 Universidad Católica de Salta'),
(106404, 'https://ror.org/01n0rnc91', 'nl', 1, 'https://ror.org/01n0rnc91 Maasstad Ziekenhuis'),
(106405, 'https://ror.org/01n71w067', 'en', 1, 'https://ror.org/01n71w067 Biwako Gakuin University Junior College ć³ć‚ć“å­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(106406, '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'),
(106407, 'https://ror.org/01n83er02', 'en', 1, 'https://ror.org/01n83er02 Kerala Agricultural University ą“•ąµ‡ą“°ą“³ ą“•ą“¾ąµ¼ą“·ą“æą“• ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(106408, 'https://ror.org/01n9zy652', 'en', 1, 'https://ror.org/01n9zy652 Medical University of Sofia ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Š”Š¾Ń„ŠøŃ'),
(106409, 'https://ror.org/01naq7912', 'fr', 1, 'https://ror.org/01naq7912 TƩlƩcom Paris'),
(106410, 'https://ror.org/01ncf8q17', 'pt', 1, 'https://ror.org/01ncf8q17 Instituto de Investigação em Vulcanologia e Avaliação de Riscos'),
(106411, 'https://ror.org/01ndzg854', 'en', 1, 'https://ror.org/01ndzg854 Xinjiang University of Science and Technology ę–°ē–†ē§‘ęŠ€å­¦é™¢'),
(106412, 'https://ror.org/01nf7g970', 'en', 1, 'https://ror.org/01nf7g970 Aiseikai Yamashina Hospital äø€čˆ¬ē¤¾å›£ę³•äŗŗę„›ē”Ÿä¼šå±±ē§‘ē—…é™¢'),
(106413, 'https://ror.org/01nffqt88', 'it', 1, 'https://ror.org/01nffqt88 Politecnico di Milano Polytechnic University of Milan Ɖcole Polytechnique de Milan'),
(106414, 'https://ror.org/01nfmeh72', 'en', 1, 'https://ror.org/01nfmeh72 University of Tasmania'),
(106415, 'https://ror.org/01nfvkq89', 'fr', 1, 'https://ror.org/01nfvkq89 UMR QualiSud'),
(106416, 'https://ror.org/01ngnm118', 'en', 1, 'https://ror.org/01ngnm118 Institut militaire de virginie Virginia Military Institute'),
(106417, 'https://ror.org/01nksas32', 'en', 1, 'https://ror.org/01nksas32 Adeyemi Federal University of Education, Ondo, Nigeria'),
(106418, 'https://ror.org/01nm4t960', 'id', 1, 'https://ror.org/01nm4t960 Teuku Umar University Universitas Teuku Umar'),
(106419, 'https://ror.org/01nmbn403', 'en', 1, 'https://ror.org/01nmbn403 University of Technology Nowshera'),
(106420, 'https://ror.org/01nnzt520', 'en', 1, 'https://ror.org/01nnzt520 Yamato Takada Municipal Hospital å¤§å’Œé«˜ē”°åø‚ē«‹ē—…é™¢'),
(106421, 'https://ror.org/01np3cz56', 'en', 1, 'https://ror.org/01np3cz56 Tokyo Professional University of Health Sciences ę±äŗ¬äæå„åŒ»ē™‚å°‚é–€č·å¤§å­¦'),
(106422, 'https://ror.org/01nrcma38', 'no_lang_code', 1, 'https://ror.org/01nrcma38 Bangkokthonburi University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø£ąøøąø‡ą¹€ąø—ąøžąø˜ąø™ąøšąøøąø£ąøµ'),
(106423, 'https://ror.org/01nspwd23', 'en', 1, 'https://ror.org/01nspwd23 Non-Communicable Diseases Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁ…Ų§Ų±ŪŒ Ł‡Ų§ŪŒ غیرواگی'),
(106424, 'https://ror.org/01nvz9x61', 'no_lang_code', 1, 'https://ror.org/01nvz9x61 Sartorius (Germany)'),
(106425, 'https://ror.org/01nw5dz57', 'pt', 1, 'https://ror.org/01nw5dz57 Centro Hospitalar do MƩdio Ave EPE'),
(106426, 'https://ror.org/01nwhyj12', 'en', 1, 'https://ror.org/01nwhyj12 Toyama Design Center åÆŒå±±ēœŒē·åˆćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(106427, 'https://ror.org/01nxc2t48', 'en', 1, 'https://ror.org/01nxc2t48 Montclair State University Universidad Estatal de Montclair UniversitĆ© d''Ɖtat de montclair'),
(106428, 'https://ror.org/01p1f8250', 'en', 1, 'https://ror.org/01p1f8250 Toyohashi Sozo Junior College č±Šę©‹å‰µé€ å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(106429, 'https://ror.org/01p29af69', 'en', 1, 'https://ror.org/01p29af69 Yokohama Women''s Junior College 横浜儳子短期大学'),
(106430, 'https://ror.org/01p510883', 'no_lang_code', 1, 'https://ror.org/01p510883 WakeMed'),
(106431, 'https://ror.org/01p5z3v19', 'en', 1, 'https://ror.org/01p5z3v19 Japan Consulting Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ©ćƒ³ćƒˆå”ä¼š'),
(106432, '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'),
(106433, 'https://ror.org/01p6f7g83', 'en', 1, 'https://ror.org/01p6f7g83 SAITAMA SEKISHINKAI Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ēŸ³åæƒä¼šåŸ¼ēŽ‰ēŸ³åæƒä¼šē—…é™¢'),
(106434, 'https://ror.org/01p884a79', 'en', 1, 'https://ror.org/01p884a79 Hebei University ę²³åŒ—å¤§å­¦'),
(106435, 'https://ror.org/01p8y5k78', 'no_lang_code', 1, 'https://ror.org/01p8y5k78 Academic Analytics'),
(106436, 'https://ror.org/01pab2602', 'en', 1, 'https://ror.org/01pab2602 Yantai Institute of Coastal Zone Research äø­å›½ē§‘å­¦é™¢ēƒŸå°ęµ·å²øåø¦ē ”ē©¶ę‰€'),
(106437, 'https://ror.org/01pbkyj13', 'en', 1, 'https://ror.org/01pbkyj13 Federal Research Institute for Health Organization and Informatics'),
(106438, 'https://ror.org/01pe1d703', 'en', 1, 'https://ror.org/01pe1d703 Advanced Telecommunications Research Institute International ę Ŗå¼ä¼šē¤¾å›½éš›é›»ę°—é€šäæ”åŸŗē¤ŽęŠ€č”“ē ”ē©¶ę‰€'),
(106439, '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'),
(106440, 'https://ror.org/01pk2ck74', 'en', 1, 'https://ror.org/01pk2ck74 KIMEP University ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Š½ŠøŃ ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ менеГжмент'),
(106441, 'https://ror.org/01pp0fx48', 'en', 1, 'https://ror.org/01pp0fx48 Universidad de ValparaĆ­so Valparaiso University'),
(106442, 'https://ror.org/01ppj9r51', 'en', 1, 'https://ror.org/01ppj9r51 Gauhati University ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦—ą§ą¦Æą¦¼ą¦¾ą¦¹ą¦¾ą¦Ÿą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą®•ąÆą®µą®¹ą®¾ą®¤ąÆą®¤ą®æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(106443, 'https://ror.org/01pq2gy67', 'en', 1, 'https://ror.org/01pq2gy67 Kumagaya General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē†Šč°·ē·åˆē—…é™¢'),
(106444, 'https://ror.org/01pqh8144', 'en', 1, 'https://ror.org/01pqh8144 Peel Health Campus'),
(106445, 'https://ror.org/01pr2p702', 'en', 1, 'https://ror.org/01pr2p702 Mahatma Gandhi Dental College & Hospital'),
(106446, 'https://ror.org/01ps88w74', 'es', 1, 'https://ror.org/01ps88w74 Instituto Superior de Educación Normal del Estado de Colima "Profr. Gregorio Torres Quintero"'),
(106447, 'https://ror.org/01psf3m26', 'en', 1, 'https://ror.org/01psf3m26 Robarts Research Institute'),
(106448, 'https://ror.org/01psvah38', 'en', 1, 'https://ror.org/01psvah38 Lasso Informatics'),
(106449, 'https://ror.org/01ptrk735', 'en', 1, 'https://ror.org/01ptrk735 MSD (Belgium)'),
(106450, 'https://ror.org/01pvaw447', 'en', 0, 'https://ror.org/01pvaw447 Wikimedia Brasil'),
(106451, 'https://ror.org/01pxkj057', 'en', 1, 'https://ror.org/01pxkj057 TH Bingen University of Applied Sciences Technische Hochschule Bingen'),
(106452, 'https://ror.org/01py0xw12', 'en', 1, 'https://ror.org/01py0xw12 Keidanren äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒęøˆå›£ä½“é€£åˆä¼š'),
(106453, 'https://ror.org/01q3vqr85', 'en', 1, 'https://ror.org/01q3vqr85 Kyiv Institute of the National Guard of Ukraine'),
(106454, 'https://ror.org/01q4ekd43', 'en', 1, 'https://ror.org/01q4ekd43 Hiroshima City Institute of Public Health åŗƒå³¶åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(106455, 'https://ror.org/01q4hzt15', 'pt', 1, 'https://ror.org/01q4hzt15 Centro de Ecologia Evolução e Alterações Ambientais'),
(106456, 'https://ror.org/01q727t61', 'tr', 1, 'https://ror.org/01q727t61 Ermenek Devlet Hastanesi'),
(106457, 'https://ror.org/01q7w1f47', 'en', 1, 'https://ror.org/01q7w1f47 St. Olaf College'),
(106458, 'https://ror.org/01q9hyq02', 'en', 1, 'https://ror.org/01q9hyq02 Sasebo Kyosai Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šä½äø–äæå…±ęøˆē—…é™¢'),
(106459, 'https://ror.org/01q9mqz67', 'en', 1, 'https://ror.org/01q9mqz67 University of Swat ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų³ŁˆŲ§ŲŖā€Ž'),
(106460, 'https://ror.org/01qa5ep47', 'en', 1, 'https://ror.org/01qa5ep47 Materials Research Science and Engineering Centers'),
(106461, 'https://ror.org/01qaf6z41', 'en', 1, 'https://ror.org/01qaf6z41 Bhupal Nobles University ą¤­ą„‚ą¤Ŗą¤¾ą¤² ą¤Øą„‹ą¤¬ą¤²ą„ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(106462, 'https://ror.org/01qag5b35', 'en', 1, 'https://ror.org/01qag5b35 Child Information and Research Center å…¬ē›Šē¤¾å›£ę³•äŗŗå­ć©ć‚‚ęƒ…å ±ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(106463, 'https://ror.org/01qckj285', 'es', 1, 'https://ror.org/01qckj285 Universidade da CoruƱa Universitat de la Corunya'),
(106464, 'https://ror.org/01qcn1r66', 'en', 1, 'https://ror.org/01qcn1r66 National Museum Lagos'),
(106465, 'https://ror.org/01qcqyr62', 'en', 1, 'https://ror.org/01qcqyr62 California Institute of Integral Studies'),
(106466, 'https://ror.org/01qdav448', 'en', 1, 'https://ror.org/01qdav448 Raman Research Institute ą®‡ą®°ą®¾ą®®ą®©ąÆ ą®†ą®ÆąÆą®µąÆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(106467, 'https://ror.org/01qedwh63', 'en', 1, 'https://ror.org/01qedwh63 Museum of London Archaeology'),
(106468, 'https://ror.org/01qhf1r47', 'en', 1, 'https://ror.org/01qhf1r47 Anna University, Chennai ą¤…ą¤£ą„ą¤£ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą¤¾ą¤²ą¤Æ ą®…ą®£ąÆą®£ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°…ą°Øą±ą°Øą°¾ ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(106469, 'https://ror.org/01qhqcj41', 'fr', 1, 'https://ror.org/01qhqcj41 University of Technology of Troyes UniversitƩ de Technologie de Troyes'),
(106470, 'https://ror.org/01qjyzh50', 'en', 1, 'https://ror.org/01qjyzh50 Zhengzhou University of Aeronautics éƒ‘å·žčˆŖē©ŗå·„äøšē®”ē†å­¦é™¢'),
(106471, 'https://ror.org/01qkghv97', 'no_lang_code', 1, 'https://ror.org/01qkghv97 Navamindradhiraj University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø§ąø”ąø“ąø™ąø—ąø£ąø²ąø˜ąø“ąø£ąø²ąøŠ'),
(106472, 'https://ror.org/01qmtv077', 'no_lang_code', 1, 'https://ror.org/01qmtv077 Daystar University'),
(106473, 'https://ror.org/01qtp1053', 'en', 1, 'https://ror.org/01qtp1053 Paris School of Economics Ɖcole d''Ć©conomie de paris'),
(106474, 'https://ror.org/01qw7w969', 'en', 1, 'https://ror.org/01qw7w969 Gyoda General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå£®å¹øä¼šč”Œē”°ē·åˆē—…é™¢'),
(106475, 'https://ror.org/01r0dam38', 'es', 1, 'https://ror.org/01r0dam38 Corporación Universitaria Minuto de Dios'),
(106476, 'https://ror.org/01r2c3v86', 'es', 1, 'https://ror.org/01r2c3v86 Universidad San Francisco de Quito'),
(106477, 'https://ror.org/01r2hzx74', 'en', 1, 'https://ror.org/01r2hzx74 Biosensor Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁˆŲ³Ł†Ų³ŁˆŲ±'),
(106478, 'https://ror.org/01r35jx22', 'fr', 1, 'https://ror.org/01r35jx22 Centre Hospitalier MƩtropole Savoie'),
(106479, 'https://ror.org/01r3j5027', 'en', 1, 'https://ror.org/01r3j5027 SAM Global University'),
(106480, 'https://ror.org/01r3yy824', 'en', 1, 'https://ror.org/01r3yy824 European Doctoral School'),
(106481, 'https://ror.org/01r53hz59', 'en', 1, 'https://ror.org/01r53hz59 National University of Quilmes Universidad Nacional de Quilmes'),
(106482, 'https://ror.org/01r7awg59', 'en', 1, 'https://ror.org/01r7awg59 University of Guelph UniversitƩ de guelph'),
(106483, 'https://ror.org/01r7qvp68', 'ca', 1, 'https://ror.org/01r7qvp68 Institut de Recerca Glòria Compte'),
(106484, 'https://ror.org/01r7w2j21', 'en', 1, 'https://ror.org/01r7w2j21 Akal University ਅਕਾਲ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(106485, 'https://ror.org/01r9htc13', 'fr', 1, 'https://ror.org/01r9htc13 UniversitƩ Libre de Bruxelles'),
(106486, 'https://ror.org/01r9skd65', 'es', 1, 'https://ror.org/01r9skd65 Universidad a Distancia de Madrid'),
(106487, 'https://ror.org/01rcfpa16', 'en', 1, 'https://ror.org/01rcfpa16 Office of Budget, Finance and Award Management'),
(106488, 'https://ror.org/01rd31k26', 'en', 1, 'https://ror.org/01rd31k26 Japan Packaging Institute å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ…č£…ęŠ€č”“å”ä¼š'),
(106489, 'https://ror.org/01rdrb571', 'en', 1, 'https://ror.org/01rdrb571 Philipps University of Marburg Philipps-UniversitƤt Marburg'),
(106490, 'https://ror.org/01rfnc002', 'en', 1, 'https://ror.org/01rfnc002 Ernst Abbe University of Applied Sciences Jena Ernst-Abbe-Hochschule Jena'),
(106491, 'https://ror.org/01rgz7g32', 'en', 1, 'https://ror.org/01rgz7g32 Institute for Agriculture, Medicine, and the Environment å…¬ē›Šč²”å›£ę³•äŗŗč¾²ę„­ćƒ»ē’°å¢ƒćƒ»å„åŗ·ē ”ē©¶ę‰€'),
(106492, 'https://ror.org/01rjnta51', 'en', 1, 'https://ror.org/01rjnta51 Centre for Human Genetics'),
(106493, 'https://ror.org/01rk3xf02', 'en', 1, 'https://ror.org/01rk3xf02 Athens School of Fine Arts Ɖcole des beaux-arts d''athĆØnes Ανωτάτη Σχολή ĪšĪ±Ī»ĻŽĪ½ Ī¤ĪµĻ‡Ī½ĻŽĪ½'),
(106494, 'https://ror.org/01rn5yy33', 'pt', 1, 'https://ror.org/01rn5yy33 Grupo Tecnimede (Portugal) Tecnimede Group'),
(106495, 'https://ror.org/01rp2a061', 'en', 1, 'https://ror.org/01rp2a061 Acıbadem University Acıbadem Üniversitesi'),
(106496, 'https://ror.org/01rp41m56', 'en', 1, 'https://ror.org/01rp41m56 Yantai University ēƒŸå°å¤§å­¦'),
(106497, 'https://ror.org/01rpe9k96', 'tr', 1, 'https://ror.org/01rpe9k96 Tokat Gaziosmanpaşa Üniversitesi'),
(106498, 'https://ror.org/01rpmzy83', 'en', 1, 'https://ror.org/01rpmzy83 Central University of the Caribbean Universidad Central del Caribe');
INSERT INTO `rors` VALUES
(106499, 'https://ror.org/01rrq9s86', 'en', 1, 'https://ror.org/01rrq9s86 Chinese Mechanical Engineering Society äø­å›½ęœŗę¢°å·„ēØ‹å­¦ä¼š'),
(106500, 'https://ror.org/01rv4p989', 'en', 1, 'https://ror.org/01rv4p989 Middlesex University'),
(106501, 'https://ror.org/01rvyj653', 'en', 1, 'https://ror.org/01rvyj653 Pharmaceutical Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬å­¦ä¼š'),
(106502, 'https://ror.org/01rxedt69', 'en', 1, 'https://ror.org/01rxedt69 Iowa Geological Survey'),
(106503, 'https://ror.org/01ry2dq39', 'es', 1, 'https://ror.org/01ry2dq39 Universidad Tecmilenio - Campus Veracruz'),
(106504, 'https://ror.org/01s033b11', 'en', 1, 'https://ror.org/01s033b11 Glasgow School of Art'),
(106505, 'https://ror.org/01s1km724', 'es', 1, 'https://ror.org/01s1km724 Universidad de las AmƩricas Puebla'),
(106506, 'https://ror.org/01s3ggx63', 'en', 1, 'https://ror.org/01s3ggx63 Mitoyo General Hospital äø‰č±Šē·åˆē—…é™¢'),
(106507, 'https://ror.org/01s4mx151', 'en', 1, 'https://ror.org/01s4mx151 Tashkent Institute of Irrigation and Agricultural Mechanization Engineers Uzbe ikromjon alijonov Mexanizatsiyalash Muhandislari Instituti'),
(106508, 'https://ror.org/01s5jzh92', 'en', 1, 'https://ror.org/01s5jzh92 Handelshƶgskolan i Stockholm Stockholm School of Economics Tukholman kauppakorkeakoulu'),
(106509, 'https://ror.org/01s5n0596', 'en', 1, 'https://ror.org/01s5n0596 Dnipro State Agrarian and Economic University Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний аграрно-економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106510, 'https://ror.org/01s6b8920', 'en', 1, 'https://ror.org/01s6b8920 Henan Vocational University of Science and Technology'),
(106511, 'https://ror.org/01s7b5y08', 'en', 1, 'https://ror.org/01s7b5y08 University of South Alabama'),
(106512, 'https://ror.org/01s7bde64', 'en', 1, 'https://ror.org/01s7bde64 Tay Nguyen University TrĘ°į»ng ĐẔi hį»c TĆ¢y NguyĆŖn'),
(106513, 'https://ror.org/01s7pfd33', 'en', 1, 'https://ror.org/01s7pfd33 Alfraganus Universiteti Alfraganus University'),
(106514, 'https://ror.org/01s8nf094', 'en', 1, 'https://ror.org/01s8nf094 University of Religions and Denominations دانؓگاه Ų§ŲÆŪŒŲ§Ł† و مذاهب'),
(106515, 'https://ror.org/01s9pbd40', 'es', 1, 'https://ror.org/01s9pbd40 Universidad TƩcnica Nacional'),
(106516, 'https://ror.org/01sb6ek09', 'en', 1, 'https://ror.org/01sb6ek09 Ghulam Ishaq Khan Institute of Engineering Sciences and Technology غلام Ų§Ų³Ų­Ų§Ł‚ Ų§Ł†Ų³Ł¹ŪŒŁ¹ŪŒŁˆŁ¹ ŲØŲ±Ų§Ų¦Ū’ Ų§Ł†Ų¬ŪŒŁ†ŪŒŲ±Ł†ŚÆ سائنس Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(106517, 'https://ror.org/01sbek618', 'en', 1, 'https://ror.org/01sbek618 Yamagata Integrated Agricultural Research Center å±±å½¢ēœŒč¾²ę„­ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(106518, 'https://ror.org/01shctp43', 'en', 1, 'https://ror.org/01shctp43 Statistical and Applied Mathematical Sciences Institute'),
(106519, 'https://ror.org/01shwhq58', 'tr', 1, 'https://ror.org/01shwhq58 Sakarya University of Applied Sciences Sakarya Uygulamalı Bilimler Üniversitesi'),
(106520, 'https://ror.org/01sp7nd78', 'en', 1, 'https://ror.org/01sp7nd78 Instituto PortuguĆŖs do Mar e da Atmosfera Portuguese Sea and Atmosphere Institute'),
(106521, 'https://ror.org/01spsga76', 'es', 1, 'https://ror.org/01spsga76 Universidad Nacional de Ciencias Forestales'),
(106522, 'https://ror.org/01spy4t79', 'en', 1, 'https://ror.org/01spy4t79 Wuppertal Institut für Klima, Umwelt, Energie Wuppertal Institute for Climate, Environment and Energy'),
(106523, 'https://ror.org/01srz1t22', 'en', 1, 'https://ror.org/01srz1t22 Research and Training Institute of the Ministry of Justice ę³•å‹™ēœę³•å‹™ē·åˆē ”ē©¶ę‰€'),
(106524, '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'),
(106525, 'https://ror.org/01stv0b46', 'en', 1, 'https://ror.org/01stv0b46 Nuclear Material Control Center å…¬ē›Šč²”å›£ę³•äŗŗę øē‰©č³Ŗē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(106526, 'https://ror.org/01sy34016', 'en', 1, 'https://ror.org/01sy34016 Korean Orthopaedic Association ėŒ€ķ•œģ •ķ˜•ģ™øź³¼ķ•™ķšŒ'),
(106527, 'https://ror.org/01sysa144', 'en', 1, 'https://ror.org/01sysa144 Seikeikai Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęø…ęµä¼šęø…ęµä¼šē—…é™¢'),
(106528, 'https://ror.org/01szdrn56', 'en', 1, 'https://ror.org/01szdrn56 International Union for Conservation of Nature (Bangladesh)'),
(106529, 'https://ror.org/01t001k65', 'en', 1, 'https://ror.org/01t001k65 Chongqing Jiaotong University é‡åŗ†äŗ¤é€šå¤§å­¦'),
(106530, 'https://ror.org/01t178j62', 'en', 1, 'https://ror.org/01t178j62 Luxembourg Institute of Science and Technology'),
(106531, 'https://ror.org/01t1kq612', 'en', 1, 'https://ror.org/01t1kq612 Karlsruhe University of Education PƤdagogische Hochschule Karlsruhe'),
(106532, 'https://ror.org/01t2txb87', 'en', 1, 'https://ror.org/01t2txb87 Open Science Community Iraq Ł…Ų¬ŲŖŁ…Ų¹ Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų© العراق'),
(106533, 'https://ror.org/01t34b131', 'en', 1, 'https://ror.org/01t34b131 Quaid-e-Awam University of Engineering, Science and Technology Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś± Ū½ Ł½ŁŠŚŖŁ†ŁŠŚ€ŁŠŲ§Ų³ جي جامعہ قائد Ų¹ŁˆŲ§Ł…ā€Ž قائد Ų¹ŁˆŲ§Ł… يورسٽي آف Ų§Ł†Ų¬Ł†ŁŠŲ±Ł†ŚÆ Ų§ŁŠŁ†ŚŠ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ'),
(106534, 'https://ror.org/01t5m8p03', 'en', 1, 'https://ror.org/01t5m8p03 Borys Grinchenko Kyiv Metropolitan University ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ столичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Бориса Грінченка'),
(106535, 'https://ror.org/01t5ta457', 'pt', 1, 'https://ror.org/01t5ta457 Centre for Innovative Biomedicine and Biotechnology Centro de Inovação em Biomedicina e Biotecnologia'),
(106536, 'https://ror.org/01t7rrn64', 'en', 1, 'https://ror.org/01t7rrn64 Niigata Industrial Creation Organization å…¬ē›Šč²”å›£ę³•äŗŗć«ć„ćŒćŸē”£ę„­å‰µé€ ę©Ÿę§‹'),
(106537, 'https://ror.org/01t80g375', 'pt', 1, 'https://ror.org/01t80g375 Laboratório Cedro, Laboratório Cedro (Brazil), Laboratório Cedro, Ltda.'),
(106538, 'https://ror.org/01t871e57', 'en', 1, 'https://ror.org/01t871e57 Hakuhokai Central Hospital åŒ»ē™‚ę³•äŗŗä¼Æé³³ä¼šćÆćć»ć†ä¼šć‚»ćƒ³ćƒˆćƒ©ćƒ«ē—…é™¢'),
(106539, 'https://ror.org/01t884y44', 'en', 1, 'https://ror.org/01t884y44 University of Bolton'),
(106540, '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'),
(106541, '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'),
(106542, 'https://ror.org/01texbd31', 'en', 1, 'https://ror.org/01texbd31 Parahyangan Catholic University Universitas Katolik Parahyangan'),
(106543, 'https://ror.org/01tezat55', 'fr', 1, 'https://ror.org/01tezat55 Mohammed VI University of Health and Medical Sciences UniversitƩ Mohammed VI des Sciences de la SantƩ'),
(106544, 'https://ror.org/01th1p123', 'en', 1, 'https://ror.org/01th1p123 Natural and Medical Sciences Institute Naturwissenschaftliches und Medizinisches Institut'),
(106545, 'https://ror.org/01thp0k37', 'en', 1, 'https://ror.org/01thp0k37 Faculty of Sciences of Sfax FacultĆ© des Sciences de Sfax ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… بصفاقس'),
(106546, 'https://ror.org/01tkga408', 'en', 1, 'https://ror.org/01tkga408 Kokugakuin Tochigi Junior College åœ‹å­øé™¢å¤§å­¦ę ƒęœØēŸ­ęœŸå¤§å­¦'),
(106547, 'https://ror.org/01tmjm536', 'en', 1, 'https://ror.org/01tmjm536 BioSafety Research Center å…¬ē›Šč²”å›£ę³•äŗŗé£Ÿå“č¾²åŒ»č–¬å“å®‰å…Øę€§č©•ä¾”ć‚»ćƒ³ć‚æćƒ¼'),
(106548, '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'),
(106549, 'https://ror.org/01tpx7q41', 'en', 1, 'https://ror.org/01tpx7q41 Kochi Prefectural Forest Technology Center é«˜ēŸ„ēœŒē«‹ę£®ęž—ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(106550, 'https://ror.org/01tqfb593', 'en', 1, 'https://ror.org/01tqfb593 Delaware Asteroseismic Research Center'),
(106551, 'https://ror.org/01trsq591', 'en', 1, 'https://ror.org/01trsq591 Okinawa Miyako Hospital ę²–ēø„ēœŒē«‹å®®å¤ē—…é™¢'),
(106552, 'https://ror.org/01tsmvz08', 'en', 1, 'https://ror.org/01tsmvz08 Henan University of Traditional Chinese Medicine ę²³å—äø­åŒ»å­¦é™¢'),
(106553, 'https://ror.org/01tv5y993', 'en', 1, 'https://ror.org/01tv5y993 Natural History Museum Vienna Naturhistorisches Museum Wien'),
(106554, 'https://ror.org/01tvm6f46', 'en', 1, 'https://ror.org/01tvm6f46 University Hospital Schleswig-Holstein UniversitƤtsklinikum Schleswig-Holstein'),
(106555, 'https://ror.org/01tw4jt52', 'en', 1, 'https://ror.org/01tw4jt52 Newman College ą“Øąµą“Æąµ‚ą“®ą“¾ąµ» ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(106556, 'https://ror.org/01txwsw02', 'en', 1, 'https://ror.org/01txwsw02 National Center for Tumor Diseases Nationale Centrum für Tumorerkrankungen'),
(106557, 'https://ror.org/01tz05n88', 'en', 1, 'https://ror.org/01tz05n88 Omuta Tenryo Hospital äø€čˆ¬č²”å›£ę³•äŗŗē¦å²”ēœŒē¤¾ä¼šäæé™ŗåŒ»ē™‚å”ä¼šē¤¾ä¼šäæé™ŗå¤§ē‰Ÿē”°å¤©é ˜ē—…é™¢'),
(106558, 'https://ror.org/01v05f472', 'en', 1, 'https://ror.org/01v05f472 Kagoshima Prefectural Institute For Agricultural Development é¹æå…å³¶ēœŒč¾²ę„­é–‹ē™ŗē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(106559, 'https://ror.org/01v1rak05', 'en', 1, 'https://ror.org/01v1rak05 Pomeranian Medical University Pommersche Medizinische UniversitƤt Pomorski Uniwersytet Medyczny w Szczecinie'),
(106560, 'https://ror.org/01v2vzt58', 'en', 1, 'https://ror.org/01v2vzt58 Florida Department of Transportation'),
(106561, 'https://ror.org/01v4vm136', 'en', 1, 'https://ror.org/01v4vm136 Japan Environmental Technology Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒęŠ€č”“å”ä¼š'),
(106562, 'https://ror.org/01v60bs72', 'en', 1, 'https://ror.org/01v60bs72 Rinku General Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗć‚Šć‚“ćć†ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(106563, 'https://ror.org/01v6d0b34', 'en', 1, 'https://ror.org/01v6d0b34'),
(106564, 'https://ror.org/01v6gqa59', 'en', 1, 'https://ror.org/01v6gqa59 Shaheed Zulfiqar Ali Bhutto Medical University, Islamabad ؓہید Ų°ŁˆŲ§Ł„ŁŁ‚Ų§Ų± Ų¹Ł„ŪŒ بھٹو Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒŲŒ اسلام Ų¢ŲØŲ§ŲÆ'),
(106565, 'https://ror.org/01v6k8e31', 'no_lang_code', 1, 'https://ror.org/01v6k8e31 MatĆ­s (Iceland)'),
(106566, 'https://ror.org/01v75b264', 'en', 1, 'https://ror.org/01v75b264 Rosemont College'),
(106567, 'https://ror.org/01v7ahx52', 'en', 1, 'https://ror.org/01v7ahx52 Water Re-use Promotion Center äø€čˆ¬č²”å›£ę³•äŗŗé€ ę°“äæƒé€²ć‚»ćƒ³ć‚æćƒ¼'),
(106568, 'https://ror.org/01vcn0259', 'en', 1, 'https://ror.org/01vcn0259 The Japanese Association of Indian and Buddhist Studies ę—„ęœ¬å°åŗ¦å­¦ä»ę•™å­¦ä¼š'),
(106569, 'https://ror.org/01vew2c72', 'en', 1, 'https://ror.org/01vew2c72 Japan Organization for Metals and Energy Security (Japan) ē‹¬ē«‹č”Œę”æę³•äŗŗć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ»é‡‘å±žé‰±ē‰©č³‡ęŗę©Ÿę§‹'),
(106570, 'https://ror.org/01vf7gd47', 'es', 1, 'https://ror.org/01vf7gd47 Escuela Colombiana de Carreras Industriales'),
(106571, 'https://ror.org/01vh5nd96', 'en', 1, 'https://ror.org/01vh5nd96 Pacific Lutheran University'),
(106572, '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'),
(106573, 'https://ror.org/01vme4277', 'en', 1, 'https://ror.org/01vme4277 Albany State University'),
(106574, 'https://ror.org/01vmfpj79', 'en', 1, 'https://ror.org/01vmfpj79 National Institute of Technology Goa'),
(106575, 'https://ror.org/01vnv1744', 'en', 1, 'https://ror.org/01vnv1744 Al Zawiya University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ų§ŁˆŁŠŲ©'),
(106576, 'https://ror.org/01vqn8764', 'en', 1, 'https://ror.org/01vqn8764 Saitama Health Promotion å…¬ē›Šč²”å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒå„åŗ·ć„ćć‚Šäŗ‹ę„­å›£'),
(106577, 'https://ror.org/01vsged97', 'en', 1, 'https://ror.org/01vsged97 Ishinkai Yao General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ»ēœŸä¼šå…«å°¾ē·åˆē—…é™¢'),
(106578, 'https://ror.org/01vsypp41', 'en', 1, 'https://ror.org/01vsypp41 Zymo Research Corporation, Zymo Research Corporation (United States)'),
(106579, 'https://ror.org/01vtvs553', 'en', 1, 'https://ror.org/01vtvs553 Hokusho Central Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŒ—ę¾äø­å¤®ē—…é™¢'),
(106580, 'https://ror.org/01vvakt76', 'pt', 1, 'https://ror.org/01vvakt76 Centro de Investigação em Reabilitação'),
(106581, 'https://ror.org/01vwq9032', 'en', 1, 'https://ror.org/01vwq9032 Tanaka Growth Clinic ćŸćŖć‹ęˆé•·ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(106582, 'https://ror.org/01vxg3438', 'en', 1, 'https://ror.org/01vxg3438 Pabna University of Science and Technology পাবনা ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(106583, 'https://ror.org/01vxt3d40', 'en', 1, 'https://ror.org/01vxt3d40 University of Economics in Katowice Uniwersytet Ekonomiczny w Katowicach'),
(106584, 'https://ror.org/01vyg6f62', 'en', 1, 'https://ror.org/01vyg6f62 National Museum in Kraków'),
(106585, 'https://ror.org/01vyrm377', 'en', 1, 'https://ror.org/01vyrm377 East China University of Science and Technology åŽäøœē†å·„å¤§å­¦'),
(106586, 'https://ror.org/01w1yrw69', 'en', 1, 'https://ror.org/01w1yrw69 Fuel Cell Cutting-Edge Research Center Technology Research Association ęŠ€č”“ē ”ē©¶ēµ„åˆFC-Cubic'),
(106587, 'https://ror.org/01w3rm550', 'en', 1, 'https://ror.org/01w3rm550 Institut Teknologi Nasional National Institute of Technology'),
(106588, 'https://ror.org/01w4jxn67', 'en', 1, 'https://ror.org/01w4jxn67 Howard University Hospital'),
(106589, 'https://ror.org/01w4ywr53', 'en', 1, 'https://ror.org/01w4ywr53 Pharmaceutical Management and Economics Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اقتصاد و Ł…ŲÆŪŒŲ±ŪŒŲŖ دارو'),
(106590, 'https://ror.org/01w69qj84', 'en', 1, 'https://ror.org/01w69qj84 Šiauliai State Higher Education Institution Šiaulių valstybinė kolegija'),
(106591, 'https://ror.org/01w8z9742', 'en', 1, 'https://ror.org/01w8z9742 L V Prasad Eye Institute'),
(106592, 'https://ror.org/01w9d9x36', 'en', 1, 'https://ror.org/01w9d9x36 IP Innovative Publication Pvt. Ltd., IP Innovative Publication Pvt. Ltd. (India)'),
(106593, 'https://ror.org/01wbhqj28', 'en', 1, 'https://ror.org/01wbhqj28 North Eastern Regional Institute of Science and Technology ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø और ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤•ą„‡ ą¤Ŗą„‚ą¤°ą„ą¤µą„‹ą¤¤ą„ą¤¤ą¤° ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(106594, 'https://ror.org/01wcaxs37', 'en', 1, 'https://ror.org/01wcaxs37 St. Francis Xavier University UniversitƩ saint-francis-xavier'),
(106595, 'https://ror.org/01wcbdc92', 'en', 1, 'https://ror.org/01wcbdc92 Taiyuan University of Science and Technology å¤ŖåŽŸē§‘ęŠ€å¤§å­¦'),
(106596, 'https://ror.org/01wd4xt90', 'en', 1, 'https://ror.org/01wd4xt90 Hohai University 河海大学'),
(106597, 'https://ror.org/01wea3g49', 'es', 1, 'https://ror.org/01wea3g49 Escuela Superior Politécnica Agropecuaria de Manabí Manuel Félix López'),
(106598, 'https://ror.org/01weqhp73', 'de', 1, 'https://ror.org/01weqhp73 Technische UniversitƤt Ilmenau'),
(106599, 'https://ror.org/01wf1es90', 'en', 1, 'https://ror.org/01wf1es90 Zarqa University Ų¬Ų§Ł…Ų¹Ų© الزرقاؔ'),
(106600, 'https://ror.org/01wg7pd89', 'id', 1, 'https://ror.org/01wg7pd89 State Islamic University Datokarama Palu Universitas Islam Negeri Datokarama Palu'),
(106601, 'https://ror.org/01wh7p279', 'en', 1, 'https://ror.org/01wh7p279 Center for Health Research Studies Ł…Ų±ŁƒŲ² Ų§Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„ŲµŲ­ŁŠŲ©'),
(106602, 'https://ror.org/01wjsdp58', 'pt', 1, 'https://ror.org/01wjsdp58 Centro de Investigação Naval'),
(106603, 'https://ror.org/01wjxn842', 'pt', 1, 'https://ror.org/01wjxn842 Pontifícia Universidade Católica de Campinas Université pontificale catholique de campinas'),
(106604, 'https://ror.org/01wntqw50', 'en', 1, 'https://ror.org/01wntqw50 Ankara University Ankara Üniversitesi'),
(106605, 'https://ror.org/01wp0c315', 'fr', 1, 'https://ror.org/01wp0c315 Ministère des Solidarités et de la Santé'),
(106606, 'https://ror.org/01wpjrv46', 'en', 1, 'https://ror.org/01wpjrv46 Defense Facilities Environment Improvement Association äø€čˆ¬č²”å›£ę³•äŗŗé˜²č”›ę–½čØ­å”ä¼š'),
(106607, 'https://ror.org/01wqd6v19', 'fr', 1, 'https://ror.org/01wqd6v19 Institut Jean-Pierre Bourgin'),
(106608, 'https://ror.org/01wrp1146', 'en', 1, 'https://ror.org/01wrp1146 Victorian Institute of Forensic Medicine'),
(106609, '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'),
(106610, 'https://ror.org/01ws25a19', 'en', 1, 'https://ror.org/01ws25a19 Fraunhofer Innovation Platform for Composites Research'),
(106611, 'https://ror.org/01ws30v92', 'en', 1, 'https://ror.org/01ws30v92 Gamagori City Hospital č’²éƒ”åø‚ę°‘ē—…é™¢'),
(106612, 'https://ror.org/01wsfe280', 'en', 1, 'https://ror.org/01wsfe280 Qassim University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚ŲµŁŠŁ…'),
(106613, 'https://ror.org/01wsvqj37', 'es', 1, 'https://ror.org/01wsvqj37 Institución Universitaria Escuela Nacional del Deporte'),
(106614, 'https://ror.org/01wvxpc32', 'en', 1, 'https://ror.org/01wvxpc32 Cornell College'),
(106615, 'https://ror.org/01wykm490', 'en', 1, 'https://ror.org/01wykm490 Omar Al-Mukhtar University Ų¬Ų§Ł…Ų¹Ų© عمر المختار'),
(106616, 'https://ror.org/01wzqhm27', 'en', 1, 'https://ror.org/01wzqhm27 Academy of Agricultural and Forestry Sciences'),
(106617, 'https://ror.org/01x03t965', 'es', 1, 'https://ror.org/01x03t965 Fundación Universitaria Compensar'),
(106618, 'https://ror.org/01x0ngk19', 'pl', 1, 'https://ror.org/01x0ngk19 Instytut Transportu Samochodowego Motor Transport Institute'),
(106619, 'https://ror.org/01x1kqx83', 'en', 1, 'https://ror.org/01x1kqx83 Bolu Abant İzzet Baysal University Bolu Abant İzzet Baysal Üniversitesi'),
(106620, 'https://ror.org/01x2s7885', 'en', 1, 'https://ror.org/01x2s7885 Tashkent State University of Law Toshkent davlat yuridik universiteti'),
(106621, 'https://ror.org/01x36m247', 'en', 1, 'https://ror.org/01x36m247 Japan Forest Technology Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę£®ęž—ęŠ€č”“å”ä¼š'),
(106622, 'https://ror.org/01x441g73', 'fr', 1, 'https://ror.org/01x441g73 Ɖcole Centrale de Lille'),
(106623, 'https://ror.org/01x628269', 'es', 1, 'https://ror.org/01x628269 Saint Thomas Aquinas University Universidad Santo TomƔs'),
(106624, 'https://ror.org/01x71m885', 'en', 1, 'https://ror.org/01x71m885 Exceptional Talents Development Center مرکز Ų±Ų“ŲÆ Ų§Ų³ŲŖŲ¹ŲÆŲ§ŲÆŁ‡Ų§ŪŒ درخؓان'),
(106625, 'https://ror.org/01x784220', 'en', 1, 'https://ror.org/01x784220 Children''s Cancer Institute Australia'),
(106626, 'https://ror.org/01x87xv89', 'pt', 1, 'https://ror.org/01x87xv89 Centro Português de Geo-História e Pré-História'),
(106627, 'https://ror.org/01x98fq76', 'en', 1, 'https://ror.org/01x98fq76 Fachhochschule des bfi Wien University of Applied Sciences BFI Vienna'),
(106628, 'https://ror.org/01xb6rs26', 'en', 1, 'https://ror.org/01xb6rs26 Technical University of Malaysia Malacca Universiti Teknikal Malaysia Melaka'),
(106629, 'https://ror.org/01xcgd076', 'ca', 1, 'https://ror.org/01xcgd076 Institut Guttmann Instituto Guttmann'),
(106630, 'https://ror.org/01xcq4388', 'en', 1, 'https://ror.org/01xcq4388 Japan Health & Research Institute äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·é–‹ē™ŗč²”å›£'),
(106631, 'https://ror.org/01xegsd60', 'en', 1, 'https://ror.org/01xegsd60 Oyokyo Kidney Research Institute å…¬ē›Šč²”å›£ę³•äŗŗé·¹ęšéƒ·č…Žē ”ē©¶ę‰€'),
(106632, 'https://ror.org/01xerg443', 'en', 1, 'https://ror.org/01xerg443 Industrial Property Cooperation Center äø€čˆ¬č²”å›£ę³•äŗŗå·„ę„­ę‰€ęœ‰ęØ©å”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(106633, 'https://ror.org/01xexwj76', 'de', 1, 'https://ror.org/01xexwj76 Institut für Mikrobiologie der Bundeswehr'),
(106634, 'https://ror.org/01xfzxq83', 'en', 1, 'https://ror.org/01xfzxq83 Mohammed Bin Rashid University of Medicine and Health Sciences'),
(106635, 'https://ror.org/01xj5sv76', 'en', 1, 'https://ror.org/01xj5sv76 Yoshida Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¹³å’Œä¼šå‰ē”°ē—…é™¢'),
(106636, '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'),
(106637, 'https://ror.org/01xjmqm90', 'pt', 1, 'https://ror.org/01xjmqm90 Centro de Estudos GeogrƔficos'),
(106638, 'https://ror.org/01xmmqa34', 'pt', 1, 'https://ror.org/01xmmqa34 Comissão para a Cidadania e Igualdade de Género'),
(106639, 'https://ror.org/01xpfrc74', 'en', 1, 'https://ror.org/01xpfrc74 Flensburg University of Applied Sciences Hochschule Flensburg'),
(106640, 'https://ror.org/01xqkk481', 'en', 1, 'https://ror.org/01xqkk481 Caldwell University'),
(106641, 'https://ror.org/01xt1w755', 'en', 1, 'https://ror.org/01xt1w755 Academia Europeica de Bulsan Accademia Europea di Bolzano Eurac Research EuropƤische Akademie Bozen'),
(106642, 'https://ror.org/01xt2dr21', 'en', 1, 'https://ror.org/01xt2dr21 China University of Mining and Technology äø­å›½ēŸæäøšå¤§å­¦'),
(106643, 'https://ror.org/01xtkxh20', 'en', 1, 'https://ror.org/01xtkxh20 Indian Institute of Technology Tirupati ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą±‹ą°²ą°œą±€ తిరుపతి'),
(106644, 'https://ror.org/01xxakw45', 'pt', 1, 'https://ror.org/01xxakw45 ComitƩ Olƭmpico de Portugal'),
(106645, 'https://ror.org/01xxhmy70', 'en', 1, 'https://ror.org/01xxhmy70 Ibaraki Fisheries Research Institute čŒØåŸŽēœŒę°“ē”£č©¦éØ“å “'),
(106646, 'https://ror.org/01xyp8r96', 'en', 1, 'https://ror.org/01xyp8r96 IPS Academy'),
(106647, 'https://ror.org/01y0j0j86', 'en', 1, 'https://ror.org/01y0j0j86 Northwestern Polytechnical University č„æåŒ—å·„äøšå¤§å­¦'),
(106648, 'https://ror.org/01y0vz750', 'pt', 1, 'https://ror.org/01y0vz750 Agencia Regional para o Desenvolvimento da Investigacao Tecnologia e Inovacao'),
(106649, 'https://ror.org/01y1kjr75', 'en', 1, 'https://ror.org/01y1kjr75 Nankai University 南开大学'),
(106650, 'https://ror.org/01y2gf490', 'no_lang_code', 1, 'https://ror.org/01y2gf490 Noorul Islam University ą®ØąÆ‚ą®°ąÆą®²ąÆ ą®‡ą®øąÆą®²ą®¾ą®®ą®æą®Æą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“Øąµ‚ą“±ąµąµ½ ą“‡ą“øąµą“²ą“¾ą“‚ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(106651, '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'),
(106652, 'https://ror.org/01y3xgc52', 'en', 1, 'https://ror.org/01y3xgc52 Athabasca University'),
(106653, 'https://ror.org/01y42f538', 'en', 1, 'https://ror.org/01y42f538 Japan Canners Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē¼¶č©°ć³ć‚“č©°ćƒ¬ćƒˆćƒ«ćƒˆé£Ÿå“å”ä¼š'),
(106654, 'https://ror.org/01y7jk925', 'en', 1, 'https://ror.org/01y7jk925 Japan Industrial Waste Information Center å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”£ę„­å»ƒę£„ē‰©å‡¦ē†ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(106655, 'https://ror.org/01y7vje06', 'es', 1, 'https://ror.org/01y7vje06 Tribunal Electoral del Estado de MƩxico'),
(106656, 'https://ror.org/01y8teq94', 'ro', 1, 'https://ror.org/01y8teq94 Garda Nationala de Mediu'),
(106657, 'https://ror.org/01y98tt60', 'en', 1, 'https://ror.org/01y98tt60 Olusegun Agagu University of Science and Technology'),
(106658, 'https://ror.org/01y9py784', 'en', 0, 'https://ror.org/01y9py784 Centre for the Protection of National Infrastructure'),
(106659, 'https://ror.org/01yapdx55', 'en', 1, 'https://ror.org/01yapdx55 Tsuchiya General Hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗć‚ć‹ć­ä¼šåœŸč°·ē·åˆē—…é™¢'),
(106660, 'https://ror.org/01yecy831', 'en', 1, 'https://ror.org/01yecy831 Siberian State Medical University Дибирский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106661, 'https://ror.org/01yen8f82', 'en', 1, 'https://ror.org/01yen8f82 Yachiyo Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ę–°å’Œä¼šå…«åƒä»£ē—…é™¢'),
(106662, 'https://ror.org/01yf5j164', 'en', 1, 'https://ror.org/01yf5j164 Japan Health Food & Nutrition Food Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·ćƒ»ę „é¤Šé£Ÿå“å”ä¼š'),
(106663, 'https://ror.org/01ygyzs83', 'en', 1, 'https://ror.org/01ygyzs83 Leibniz Centre for Agricultural Landscape Research Leibniz-Zentrum für Agrarlandschaftsforschung'),
(106664, 'https://ror.org/01ykx8d32', 'sr', 1, 'https://ror.org/01ykx8d32 Institut za onkologiju i radiologiju Srbije'),
(106665, 'https://ror.org/01ynmyv26', 'en', 1, 'https://ror.org/01ynmyv26 Sunamganj Science and Technology University ą¦øą§ą¦Øą¦¾ą¦®ą¦—ą¦žą§ą¦œ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(106666, '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'),
(106667, 'https://ror.org/01z014940', 'en', 1, 'https://ror.org/01z014940 University of Mining and Geology "Saint Ivan Rilski" ŠœŠ˜ŠŠŠž-Š“Š•ŠžŠ›ŠžŠ–ŠšŠ˜ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢ "ДВ. Š˜Š’ŠŠ Š Š˜Š›Š”ŠšŠ˜"'),
(106668, 'https://ror.org/01z0mc198', 'en', 1, 'https://ror.org/01z0mc198 Tadulako University Universitas Tadulako'),
(106669, 'https://ror.org/01z0w8p93', 'en', 1, 'https://ror.org/01z0w8p93 Tomsk National Research Medical Center Томский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский центр'),
(106670, 'https://ror.org/01z2bgb86', 'en', 1, 'https://ror.org/01z2bgb86 Reproduction Clinic Osaka ćƒŖćƒ—ćƒ­ćƒ€ć‚Æć‚·ćƒ§ćƒ³ć‚ÆćƒŖćƒ‹ćƒƒć‚Æå¤§é˜Ŗ'),
(106671, 'https://ror.org/01z30xm65', 'en', 1, 'https://ror.org/01z30xm65 Research Institute of Natural Gas Technology äø­å›½ēŸ³ę²¹č„æå—ę²¹ę°”ē”°å…¬åøå¤©ē„¶ę°”ē ”ē©¶é™¢'),
(106672, 'https://ror.org/01z528e40', 'en', 1, 'https://ror.org/01z528e40 Coastal Development Institute of Technology äø€čˆ¬č²”å›£ę³•äŗŗę²æå²øęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(106673, 'https://ror.org/01z6yh944', 'fr', 1, 'https://ror.org/01z6yh944 Functional Ecology and Ecotoxicology of AgroEcosystems Ɖcologie Fonctionnelle et Ɖcotoxicologie des AgroĆ©cosystĆØmes'),
(106674, 'https://ror.org/01z7kzb45', 'en', 1, 'https://ror.org/01z7kzb45 Northeastern State University'),
(106675, 'https://ror.org/01z8nwq27', 'en', 1, 'https://ror.org/01z8nwq27 Chugoku Regional Research Center å…¬ē›Šē¤¾å›£ę³•äŗŗäø­å›½åœ°ę–¹ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(106676, 'https://ror.org/01zaqjt83', 'nl', 1, 'https://ror.org/01zaqjt83 CBG|Centrum voor familiegeschiedenis'),
(106677, 'https://ror.org/01zb8dw34', 'en', 1, 'https://ror.org/01zb8dw34 Chiba City Education Center åƒč‘‰åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(106678, 'https://ror.org/01zc5h177', 'en', 1, 'https://ror.org/01zc5h177 McDaniel College'),
(106679, 'https://ror.org/01zdfh260', 'pt', 1, 'https://ror.org/01zdfh260 Centro de Investigação do Território Transportes e Ambiente'),
(106680, 'https://ror.org/01zdtdh72', 'en', 1, 'https://ror.org/01zdtdh72 Yamaguchi Prefectural Industrial Technology Institute åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå±±å£ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(106681, 'https://ror.org/01ze79k90', 'en', 1, 'https://ror.org/01ze79k90 Research and Environmental Education Foundation'),
(106682, 'https://ror.org/01zk01k31', 'en', 1, 'https://ror.org/01zk01k31 City of Portsmouth College'),
(106683, 'https://ror.org/01zkemb37', 'no_lang_code', 1, 'https://ror.org/01zkemb37 MSD (Germany)'),
(106684, 'https://ror.org/01zmhvm70', 'en', 1, 'https://ror.org/01zmhvm70 Nune Eye Hospital ėˆ„ė„¤ģ•ˆź³¼ė³‘ģ›'),
(106685, 'https://ror.org/01zpmbk67', 'en', 1, 'https://ror.org/01zpmbk67 Richard L. Roudebush VA Medical Center'),
(106686, 'https://ror.org/01zqw3717', 'pt', 1, 'https://ror.org/01zqw3717 ServiƧo de InformaƧƵes de SeguranƧa'),
(106687, 'https://ror.org/01zrv0z61', 'en', 1, 'https://ror.org/01zrv0z61 Hamdard University Ų¬Ų§Ł…Ų¹Ū‚ ہمدرد'),
(106688, 'https://ror.org/01zsf5a90', 'en', 1, 'https://ror.org/01zsf5a90 Tango Central Hospital å…¬ē›Šč²”å›£ę³•äŗŗäø¹å¾Œäø­å¤®ē—…é™¢'),
(106689, 'https://ror.org/01ztcvt22', 'en', 1, 'https://ror.org/01ztcvt22 Delhi Technological University ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®ŸąÆ†ą®²ąÆą®²ą®æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(106690, 'https://ror.org/01zwcys39', 'no_lang_code', 1, 'https://ror.org/01zwcys39 Meiji Gakuin University ę˜Žę²»å­¦é™¢å¤§å­¦'),
(106691, 'https://ror.org/01zx17h33', 'en', 1, 'https://ror.org/01zx17h33 Cappadocia University, Cappadocia Vocational College'),
(106692, 'https://ror.org/01zz9ka42', 'en', 0, 'https://ror.org/01zz9ka42 Highbury College'),
(106693, 'https://ror.org/0202tms25', 'en', 1, 'https://ror.org/0202tms25 Gihoku Kosei Hospital JAå²é˜œåŽšē”Ÿé€£å²åŒ—åŽšē”Ÿē—…é™¢'),
(106694, 'https://ror.org/0207yh398', 'en', 1, 'https://ror.org/0207yh398 Shandong University 山东大学'),
(106695, 'https://ror.org/0208kvs35', 'en', 1, 'https://ror.org/0208kvs35 Nagoya Public Institute of Medicine äø€čˆ¬č²”å›£ę³•äŗŗåå¤å±‹å…¬č”†åŒ»å­¦ē ”ē©¶ę‰€'),
(106696, 'https://ror.org/020ay5m03', 'en', 1, 'https://ror.org/020ay5m03 Japan Plant Protection Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©é˜²ē–«å”ä¼š'),
(106697, 'https://ror.org/020azc393', 'fr', 1, 'https://ror.org/020azc393 Laboratoire Lorrain de Chimie MolƩculaire'),
(106698, 'https://ror.org/020azk594', 'en', 1, 'https://ror.org/020azk594 Fujian Normal University ē¦å»ŗåøˆčŒƒå¤§å­¦'),
(106699, 'https://ror.org/020cpsb96', 'no_lang_code', 1, 'https://ror.org/020cpsb96 Satbayev University ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. И. Датпаева ŅšŠ°Š½Ń‹Ńˆ Дәтбаев атынГағы ŅšŠ°Š·Š°Ņ› ұлттық техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(106700, 'https://ror.org/020dggs04', 'en', 1, 'https://ror.org/020dggs04 Humanitas University'),
(106701, 'https://ror.org/020dmyn61', 'en', 1, 'https://ror.org/020dmyn61 EMERGREEN'),
(106702, 'https://ror.org/020fhsn68', 'en', 1, 'https://ror.org/020fhsn68 Research Experiences for Undergraduates'),
(106703, 'https://ror.org/020gzt537', 'en', 1, 'https://ror.org/020gzt537 Chemical Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬ē†å­¦ä¼š'),
(106704, 'https://ror.org/020hwjq30', 'en', 1, 'https://ror.org/020hwjq30 Aalto University Aalto-yliopisto'),
(106705, 'https://ror.org/020j5zv28', 'pt', 1, 'https://ror.org/020j5zv28 Serviço Nacional de Saúde'),
(106706, 'https://ror.org/020kqfe02', 'en', 1, 'https://ror.org/020kqfe02 Yamanashi Kosei Hospital å…¬ē›Šč²”å›£ę³•äŗŗå±±ę¢ØåŽšē”Ÿä¼šå±±ę¢ØåŽšē”Ÿē—…é™¢'),
(106707, 'https://ror.org/020rk2m16', 'cs', 1, 'https://ror.org/020rk2m16 Ústav ArcheologickĆ© PamĆ”tkovĆ© PĆ©Äe Brno'),
(106708, 'https://ror.org/020tjmw86', 'es', 1, 'https://ror.org/020tjmw86 Universidad Tecnológica de Zinacantepec'),
(106709, 'https://ror.org/020v13m88', 'pt', 1, 'https://ror.org/020v13m88 Universidade Paulista'),
(106710, 'https://ror.org/02105t278', 'en', 1, 'https://ror.org/02105t278 Sanata Dharma University Universitas Sanata Dharma UnivĆØrsitas Sanata Dharma'),
(106711, 'https://ror.org/0210dff90', 'en', 1, 'https://ror.org/0210dff90 Western Governors University'),
(106712, 'https://ror.org/0213h2a91', 'en', 1, 'https://ror.org/0213h2a91 Ohda Municipal Hospital 大田市立病院'),
(106713, 'https://ror.org/0216g1929', 'no_lang_code', 1, 'https://ror.org/0216g1929 Innocoll (Ireland)'),
(106714, 'https://ror.org/021aqk126', 'en', 1, 'https://ror.org/021aqk126 Illinois Wesleyan University'),
(106715, 'https://ror.org/021cj6z65', 'en', 1, 'https://ror.org/021cj6z65 Qingdao University 青岛大学'),
(106716, 'https://ror.org/021djqe90', 'en', 1, 'https://ror.org/021djqe90 Ikegami General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę¾å’Œä¼šę± äøŠē·åˆē—…é™¢'),
(106717, 'https://ror.org/021f99908', 'fr', 1, 'https://ror.org/021f99908 Ɖcole SupĆ©rieure PrivĆ©e d''IngĆ©nierie et de Technologies المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ الخاصة للهندسة و Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(106718, 'https://ror.org/021kg9v06', 'de', 1, 'https://ror.org/021kg9v06 Management Center Innsbruck'),
(106719, 'https://ror.org/021nndv84', 'en', 1, 'https://ror.org/021nndv84 Nagano Vegetable and Ornamental Crops Experiment Station é•·é‡ŽēœŒé‡ŽčœčŠ±ćč©¦éØ“å “'),
(106720, 'https://ror.org/021p6rb08', 'en', 1, 'https://ror.org/021p6rb08 Shifa Tameer-e-Millat University'),
(106721, 'https://ror.org/021s58p89', 'en', 1, 'https://ror.org/021s58p89 Thuongmai University TrĘ°į»ng ĐẔi hį»c Thʰʔng mįŗ”i'),
(106722, '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'),
(106723, 'https://ror.org/021v2ka51', 'fr', 1, 'https://ror.org/021v2ka51 Institut national supƩrieur de formation et de recherche pour l''Ʃducation inclusive'),
(106724, 'https://ror.org/021vseb03', 'en', 1, 'https://ror.org/021vseb03 Autonomous University of Tlaxcala Universidad Autónoma de Tlaxcala'),
(106725, 'https://ror.org/02201g510', 'es', 1, 'https://ror.org/02201g510 Le Cordon Bleu University Universidad Le Cordon Bleu'),
(106726, 'https://ror.org/0220pja87', 'en', 1, 'https://ror.org/0220pja87 IEEE Microwave Theory and Techniques Society'),
(106727, 'https://ror.org/02225fd27', 'pt', 1, 'https://ror.org/02225fd27 Instituto Federal de Educação, Ciência e Tecnologia do CearÔ'),
(106728, 'https://ror.org/022471030', 'en', 1, 'https://ror.org/022471030 Hokkaido Development Association äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“é–‹ē™ŗå”ä¼š'),
(106729, 'https://ror.org/0225cs656', 'en', 1, 'https://ror.org/0225cs656 Thanh Dong University TrĘ°į»ng ĐẔi hį»c ThĆ nh ĐƓng'),
(106730, 'https://ror.org/02278tr80', 'en', 1, 'https://ror.org/02278tr80 Kyushu Institute of Technology ä¹å·žå·„ę„­å¤§å­¦'),
(106731, 'https://ror.org/0227zyy26', 'en', 1, 'https://ror.org/0227zyy26 Toyota Regional Medical Center å…¬ē›Šč²”å›£ę³•äŗŗč±Šē”°åœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(106732, 'https://ror.org/022888091', 'pt', 1, 'https://ror.org/022888091 Sociedade Portuguesa de Cuidados Intensivos'),
(106733, 'https://ror.org/0228k1a18', 'en', 1, 'https://ror.org/0228k1a18 Linfield College'),
(106734, 'https://ror.org/022991v89', 'en', 1, 'https://ror.org/022991v89 Catholic University of Croatia Hrvatsko Katoličko SveučiliŔte'),
(106735, 'https://ror.org/022brxy17', 'en', 1, 'https://ror.org/022brxy17 Gifu International Center å…¬ē›Šč²”å›£ę³•äŗŗå²é˜œēœŒå›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(106736, 'https://ror.org/022efad20', 'en', 1, 'https://ror.org/022efad20 University of GabĆØs UniversitĆ© de gabĆØs Ų¬Ų§Ł…Ų¹Ų© قابس'),
(106737, 'https://ror.org/022egfk39', 'es', 1, 'https://ror.org/022egfk39 Escuela de Comunicación Mónica Herrera'),
(106738, 'https://ror.org/022fqnb56', 'pt', 1, 'https://ror.org/022fqnb56 Centro de Estudos da População Economia e Sociedade'),
(106739, 'https://ror.org/022ge7714', 'tr', 1, 'https://ror.org/022ge7714 Kahramanmaraş İstiklal University Kahramanmaraş İstiklal Üniversitesi'),
(106740, 'https://ror.org/022gstf70', 'en', 1, 'https://ror.org/022gstf70 Falmouth University'),
(106741, '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'),
(106742, 'https://ror.org/022k4wk35', 'en', 1, 'https://ror.org/022k4wk35 Beijing Normal University åŒ—äŗ¬åøˆčŒƒå¤§å­¦'),
(106743, 'https://ror.org/022kvet57', 'en', 1, 'https://ror.org/022kvet57 Alexandru Ioan Cuza University Universitatea Alexandru Ioan Cuza'),
(106744, 'https://ror.org/022mv6k27', 'en', 1, 'https://ror.org/022mv6k27 University of East Sarajevo Univerzitet u Istočnom Sarajevu Универзитет у Š˜ŃŃ‚Š¾Ń‡Š½Š¾Š¼ Š”Š°Ń€Š°Ń˜ŠµŠ²Ńƒ'),
(106745, 'https://ror.org/022mwkf84', 'en', 1, 'https://ror.org/022mwkf84 THE General Insurance Institute Of Japan å…¬ē›Šč²”å›£ę³•äŗŗęå®³äæé™ŗäŗ‹ę„­ē·åˆē ”ē©¶ę‰€'),
(106746, 'https://ror.org/022nkr288', 'en', 1, 'https://ror.org/022nkr288 Okayama College 岔山短期大学'),
(106747, 'https://ror.org/022r5hc56', 'fr', 1, 'https://ror.org/022r5hc56 Centre de Recherche en Automatique de Nancy Research Center for Automatic Control of Nancy'),
(106748, 'https://ror.org/022r8mj40', 'es', 1, 'https://ror.org/022r8mj40 Institute for Theoretical Physics Instituto de Física Teórica'),
(106749, 'https://ror.org/022vghp55', 'en', 1, 'https://ror.org/022vghp55 The Occupational Health Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗē”£ę„­åŒ»å­¦ęŒÆčˆˆč²”å›£'),
(106750, 'https://ror.org/022yres73', 'en', 1, 'https://ror.org/022yres73 Universidad de Atacama University of Atacama'),
(106751, 'https://ror.org/022zbs961', 'fr', 1, 'https://ror.org/022zbs961 University of YaoundƩ I UniversitƩ de YaoundƩ I'),
(106752, 'https://ror.org/022zdgp77', 'en', 1, 'https://ror.org/022zdgp77 Kumamoto Prefectural Government ē†Šęœ¬ēœŒåŗ'),
(106753, 'https://ror.org/023288525', 'en', 1, 'https://ror.org/023288525 Stonehill College'),
(106754, 'https://ror.org/023372f11', 'en', 1, 'https://ror.org/023372f11 Royal Northern College of Music'),
(106755, 'https://ror.org/0235dpm25', 'en', 1, 'https://ror.org/0235dpm25 Elderly Health Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ سلامت سالمندان'),
(106756, 'https://ror.org/0235ynq74', 'en', 1, 'https://ror.org/0235ynq74 PƤdagogische Hochschule Luzern University of Teacher Education Lucerne'),
(106757, 'https://ror.org/02366kp40', 'en', 1, 'https://ror.org/02366kp40 Informatics Institute of Technology'),
(106758, 'https://ror.org/0237jt454', 'en', 1, 'https://ror.org/0237jt454 Indian Institute of Information Technology Dharwad'),
(106759, 'https://ror.org/0238rvs44', 'en', 1, 'https://ror.org/0238rvs44 Sistema Universitario de Nebraska University of Nebraska System UniversitƩ du nebraska'),
(106760, 'https://ror.org/023a7t361', 'en', 1, 'https://ror.org/023a7t361 Ghazi University غازی ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(106761, 'https://ror.org/023awsf17', 'en', 1, 'https://ror.org/023awsf17 IEEE Standards Association'),
(106762, 'https://ror.org/023b72294', 'en', 1, 'https://ror.org/023b72294 Huazhong Agricultural University åŽäø­å†œäøšå¤§å­¦'),
(106763, 'https://ror.org/023er3e86', 'en', 1, 'https://ror.org/023er3e86 Qingdao Binhai University é’å²›ę»Øęµ·å­¦é™¢'),
(106764, 'https://ror.org/023gzwx10', 'en', 1, 'https://ror.org/023gzwx10 Fayoum University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŁŠŁˆŁ…'),
(106765, 'https://ror.org/023hy0x04', 'en', 1, 'https://ror.org/023hy0x04 Asakayama General Hospital å…¬ē›Šč²”å›£ę³•äŗŗęµ…é¦™å±±ē—…é™¢'),
(106766, 'https://ror.org/023ke8y90', 'es', 1, 'https://ror.org/023ke8y90 CIC nanoGUNE Nanoscience Cooperative Research Center'),
(106767, 'https://ror.org/023m51b03', 'en', 1, 'https://ror.org/023m51b03 Cancer Council Victoria'),
(106768, 'https://ror.org/023mnb461', 'en', 1, 'https://ror.org/023mnb461 Kaliningrad State Technical University ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106769, 'https://ror.org/023mv6842', 'en', 1, 'https://ror.org/023mv6842 Al-Naji University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†Ų§Ų¬ŁŠ'),
(106770, 'https://ror.org/023p15505', 'en', 1, 'https://ror.org/023p15505 Aleksandƫr Moisiu University Universiteti Aleksandƫr Moisiu'),
(106771, 'https://ror.org/023p6h289', 'en', 1, 'https://ror.org/023p6h289 International Association of Privacy Professionals'),
(106772, 'https://ror.org/023pskh72', 'no_lang_code', 1, 'https://ror.org/023pskh72 Maseno University'),
(106773, 'https://ror.org/023qmza96', 'en', 1, 'https://ror.org/023qmza96 Salem State University UniversitƩ d''Ʃtat de salem'),
(106774, 'https://ror.org/023qw0p91', 'en', 1, 'https://ror.org/023qw0p91 Hokkaido Tokachi Area Regional Food Processing Technology Center åŒ—ęµ·é“ē«‹åå‹åœåœ°åŸŸé£Ÿå“åŠ å·„ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(106775, 'https://ror.org/023r10y33', 'en', 1, 'https://ror.org/023r10y33 Japan Grassland Agriculture and Forage Seed Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‰åœ°ē•œē”£ēØ®å­å”ä¼š'),
(106776, 'https://ror.org/023s81402', 'en', 1, 'https://ror.org/023s81402 The Japanese Red Cross Junior College of Akita ę—„ęœ¬čµ¤åå­—ē§‹ē”°ēŸ­ęœŸå¤§å­¦'),
(106777, 'https://ror.org/023ss7c43', 'en', 1, 'https://ror.org/023ss7c43 Tokushima Agriculture, Forestry and Fisheries Technology Support Center å¾³å³¶ēœŒē«‹č¾²ęž—ę°“ē”£ē·åˆęŠ€č”“ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(106778, 'https://ror.org/023tvfz15', 'en', 1, 'https://ror.org/023tvfz15 National Sanatorium Oku-Komyoen å›½ē«‹ē™‚é¤Šę‰€é‚‘ä¹…å…‰ę˜Žåœ’'),
(106779, 'https://ror.org/023wr5s35', 'es', 1, 'https://ror.org/023wr5s35 Instituto Tecnológico de Nuevo Leon'),
(106780, 'https://ror.org/023y4pd41', 'en', 1, 'https://ror.org/023y4pd41 Polis University'),
(106781, 'https://ror.org/023ycer62', 'es', 1, 'https://ror.org/023ycer62 Huanta National Autonomous University Universidad Nacional Autónoma de Huanta'),
(106782, 'https://ror.org/023zs7d73', 'en', 1, 'https://ror.org/023zs7d73 Cupid Clinic ē¤¾ä¼šē¦ē„‰ę³•äŗŗć‚Æćƒ”ćƒ‰ćƒ»ćƒ•ć‚§ć‚¢ćć“ć©ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(106783, 'https://ror.org/02403vr89', 'en', 1, 'https://ror.org/02403vr89 Mathematica Policy Research'),
(106784, 'https://ror.org/0240a1c32', 'en', 1, 'https://ror.org/0240a1c32 Nihon Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»å­¦å”ä¼š'),
(106785, 'https://ror.org/0240hnb85', 'id', 1, 'https://ror.org/0240hnb85 Universitas Serambi Mekkah'),
(106786, 'https://ror.org/0240tdq38', 'pt', 1, 'https://ror.org/0240tdq38 Centro de Apoio Tecnológico à Indústria Metalomecânica'),
(106787, 'https://ror.org/024109974', 'en', 1, 'https://ror.org/024109974 JosƩ Benito Vives de AndrƩis Marine and Coastal Research Institute'),
(106788, 'https://ror.org/02423gm04', 'en', 1, 'https://ror.org/02423gm04 Shenyang Aerospace University 沈阳航空航天大学'),
(106789, 'https://ror.org/0242cby63', 'en', 1, 'https://ror.org/0242cby63 L. N. Gumilyov Eurasian National University Евразийский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š›. Š. Š“ŃƒŠ¼ŠøŠ»Ń‘Š²Š° Š•ŃƒŃ€Š°Š·ŠøŃ ұлттық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(106790, 'https://ror.org/02437s643', 'en', 1, 'https://ror.org/02437s643 University of Illinois Chicago, Rockford campus'),
(106791, 'https://ror.org/0243nmr44', 'en', 1, 'https://ror.org/0243nmr44 Greater Poland Cancer Center'),
(106792, 'https://ror.org/0244p6188', 'en', 1, 'https://ror.org/0244p6188 Okinawa Prefectural Plant Protection Center ę²–ēø„ēœŒē—…å®³č™«é˜²é™¤ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(106793, 'https://ror.org/0244vtq08', 'en', 1, 'https://ror.org/0244vtq08 Shizuoka Prefectural Research Institute of Fishery é™å²”ēœŒę°“ē”£ćƒ»ęµ·ę“‹ęŠ€č”“ē ”ē©¶ę‰€'),
(106794, 'https://ror.org/0246fxh44', 'en', 1, 'https://ror.org/0246fxh44 Kostanay Socio-Technical University named after academician Z. Aldamzhar АкаГемик Š—. АлГамжар атынГағы ŅšŠ¾ŃŃ‚Š°Š½Š°Š¹ Ó™Š»ŠµŃƒŠ¼ŠµŃ‚Ń‚Ń–Šŗ-техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š—.АлГамжар'),
(106795, 'https://ror.org/02474f074', 'ms', 1, 'https://ror.org/02474f074 Universiti Malaysia Terengganu University of Malaysia, Terengganu'),
(106796, 'https://ror.org/0247aa843', 'en', 1, 'https://ror.org/0247aa843 Matt''s Promise'),
(106797, 'https://ror.org/02490gh04', 'en', 1, 'https://ror.org/02490gh04 Shizuoka Professional University Junior College of Agriculture é™å²”ēœŒē«‹č¾²ęž—ē’°å¢ƒå°‚é–€č·å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(106798, 'https://ror.org/024a8dx81', 'en', 1, 'https://ror.org/024a8dx81 Klinički Bolnički Centar Sestre Milosrdnice Sisters of Charity Hospital'),
(106799, 'https://ror.org/024e7gt83', 'en', 1, 'https://ror.org/024e7gt83 Shimane Prefectural Agriculture And Livestock Industry Promotion Division å³¶ę ¹ēœŒč¾²ęž—ę°“ē”£éƒØ'),
(106800, 'https://ror.org/024fm2y42', 'en', 1, 'https://ror.org/024fm2y42 Curtin University Sarawak'),
(106801, 'https://ror.org/024ga3r86', 'de', 1, 'https://ror.org/024ga3r86 Hochschule Mittweida University of Applied Sciences Mittweida'),
(106802, 'https://ror.org/024ghrf67', 'en', 1, 'https://ror.org/024ghrf67 International Center for Chemical and Biological Sciences Ś©ŪŒŁ…ŪŒŲ§Ų¦ŪŒ اور حیاتیاتی سائنس کے لئے ŲØŪŒŁ† Ų§Ł„Ų§Ł‚ŁˆŲ§Ł…ŪŒ مرکز'),
(106803, 'https://ror.org/024kjbt21', 'en', 1, 'https://ror.org/024kjbt21 Duhok Polytechnic University'),
(106804, 'https://ror.org/024nr0776', 'en', 1, 'https://ror.org/024nr0776 Catholic University of Applied Sciences of North Rhine – Westphalia Katholische Hochschule Nordrhein-Westfalen'),
(106805, 'https://ror.org/024qcmm72', 'en', 1, 'https://ror.org/024qcmm72 The Bedford College Group'),
(106806, 'https://ror.org/024v3fg07', 'en', 1, 'https://ror.org/024v3fg07 Parul University'),
(106807, 'https://ror.org/024wc1x05', 'no_lang_code', 1, 'https://ror.org/024wc1x05 Inagro (Belgium)'),
(106808, 'https://ror.org/024xejm70', 'en', 1, 'https://ror.org/024xejm70 European School of Management and Technology'),
(106809, 'https://ror.org/0250ngj72', 'fr', 1, 'https://ror.org/0250ngj72 Centre Hospitalier Universitaire d''Angers'),
(106810, 'https://ror.org/0252a3c27', 'en', 1, 'https://ror.org/0252a3c27 Adera Medical Center, Adera Medical Center PLC'),
(106811, 'https://ror.org/0252mqn49', 'en', 1, 'https://ror.org/0252mqn49 Flame University'),
(106812, 'https://ror.org/0254y9b08', 'no_lang_code', 1, 'https://ror.org/0254y9b08 BEST - Bioenergy and Sustainable Technologies (Austria)'),
(106813, 'https://ror.org/025ae8628', 'en', 1, 'https://ror.org/025ae8628 Nederlands Instituut voor Beeld en Geluid Netherlands Institute for Sound and Vision'),
(106814, 'https://ror.org/025er3q23', 'fr', 1, 'https://ror.org/025er3q23 Ministère des Armées'),
(106815, 'https://ror.org/025fy2n80', 'pt', 1, 'https://ror.org/025fy2n80 Univates, Universidade do Vale do Taquari'),
(106816, 'https://ror.org/025j2nd68', 'en', 1, 'https://ror.org/025j2nd68 The Lundquist Institute'),
(106817, 'https://ror.org/025k0bh36', 'en', 1, 'https://ror.org/025k0bh36 Baraka Agricultural College'),
(106818, 'https://ror.org/025kzpk63', 'en', 1, 'https://ror.org/025kzpk63 Directorate for Computer & Information Science & Engineering'),
(106819, 'https://ror.org/025mhc977', 'fr', 1, 'https://ror.org/025mhc977 Diagnosis and International Adaptive Imaging Imagerie Adaptative Diagnostique et Interventionnelle'),
(106820, 'https://ror.org/025mxtn51', 'en', 1, 'https://ror.org/025mxtn51 Center for Environmental Information Science äø€čˆ¬ē¤¾å›£ę³•äŗŗē’°å¢ƒęƒ…å ±ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(106821, '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'),
(106822, 'https://ror.org/025s55q11', 'en', 1, 'https://ror.org/025s55q11 Beijing Institute of Petrochemical Technology åŒ—äŗ¬ēŸ³ę²¹åŒ–å·„å­¦é™¢'),
(106823, 'https://ror.org/025th6q62', 'es', 1, 'https://ror.org/025th6q62 Bizkaiko Farmazilarien Elkargo Ofiziala, COFBizkaia Colegio Oficial de FarmacƩuticos de Bizkaia'),
(106824, 'https://ror.org/025vmw012', 'en', 1, 'https://ror.org/025vmw012 Teikyo University of Science åøäŗ¬ē§‘å­¦å¤§å­¦'),
(106825, 'https://ror.org/025w3tf57', 'en', 1, 'https://ror.org/025w3tf57 Research Institute on Building Cost äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰ć‚³ć‚¹ćƒˆē®”ē†ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę‰€'),
(106826, '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'),
(106827, 'https://ror.org/025ys5y27', 'en', 1, 'https://ror.org/025ys5y27 Japan Health Promotion and Fitness Foundation å…¬ē›Šč²”å›£ę³•äŗŗå„åŗ·ćƒ»ä½“åŠ›ć„ćć‚Šäŗ‹ę„­č²”å›£'),
(106828, 'https://ror.org/026086s92', 'en', 1, 'https://ror.org/026086s92 Hanken School of Economics Hanken Svenska handelshƶgskolan'),
(106829, 'https://ror.org/0263b6f89', 'en', 1, 'https://ror.org/0263b6f89 Japanese Society of Allergology äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ¬ćƒ«ć‚®ćƒ¼å­¦ä¼š'),
(106830, 'https://ror.org/0263v9e25', 'en', 1, 'https://ror.org/0263v9e25 Tarleton State University UniversitĆ© d''Ɖtat de tarleton'),
(106831, 'https://ror.org/026441d17', 'en', 1, 'https://ror.org/026441d17 Mindanao State University Pamantasang Mindanao'),
(106832, 'https://ror.org/0264f4e78', 'en', 1, 'https://ror.org/0264f4e78 Institute of Local Finance äø€čˆ¬č²”å›£ę³•äŗŗåœ°ę–¹č²”å‹™å”ä¼š'),
(106833, 'https://ror.org/0265d1010', 'en', 1, 'https://ror.org/0265d1010 Shanxi Medical University å±±č„æåŒ»ē§‘å¤§å­¦'),
(106834, 'https://ror.org/0266hg789', 'en', 0, 'https://ror.org/0266hg789 Miljƶdepartementet Ministry of the Environment'),
(106835, 'https://ror.org/0266t3a64', 'en', 1, 'https://ror.org/0266t3a64 Akademia Marynarki Wojennej im. Bohaterów Westerplatte Polish Naval Academy'),
(106836, 'https://ror.org/0267j0k26', 'pt', 1, 'https://ror.org/0267j0k26 Centro de MatemƔtica'),
(106837, 'https://ror.org/026b4k258', 'en', 1, 'https://ror.org/026b4k258 Shandong Sport University å±±äøœä½“č‚²å­¦é™¢'),
(106838, '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'),
(106839, 'https://ror.org/026gdz537', 'en', 1, 'https://ror.org/026gdz537 Lucian Blaga Egyetem Lucian Blaga University of Sibiu Universitatea Lucian Blaga din Sibiu'),
(106840, 'https://ror.org/026gtp362', 'en', 1, 'https://ror.org/026gtp362 Optoelectronic Industry and Technology Development Association äø€čˆ¬č²”å›£ę³•äŗŗå…‰ē”£ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(106841, 'https://ror.org/026hasc65', 'en', 1, 'https://ror.org/026hasc65 Shinbeppu Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šę–°åˆ„åŗœē—…é™¢'),
(106842, 'https://ror.org/026j3ca82', 'en', 1, 'https://ror.org/026j3ca82 Hokkaido Research Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŒ—ęµ·é“ē«‹ē·åˆē ”ē©¶ę©Ÿę§‹'),
(106843, 'https://ror.org/026k08163', 'en', 1, 'https://ror.org/026k08163 Eisei Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę°øē”Ÿä¼šę°øē”Ÿē—…é™¢'),
(106844, '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ığı');
INSERT INTO `rors` VALUES
(106845, 'https://ror.org/026md7341', 'en', 1, 'https://ror.org/026md7341 Mental Health Research Institute, Tomsk National Research Medical Center, Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Томский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский центр Российской акаГемии наук" ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психического Š·Š“Š¾Ń€Š¾Š²ŃŒŃ'),
(106846, 'https://ror.org/026tc4g97', 'fr', 1, 'https://ror.org/026tc4g97 Territoires'),
(106847, 'https://ror.org/026tt3h56', 'en', 1, 'https://ror.org/026tt3h56 The City Planning Institute of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬éƒ½åø‚čØˆē”»å­¦ä¼š'),
(106848, 'https://ror.org/026v2ph40', 'en', 1, 'https://ror.org/026v2ph40 The Society of Polymer Science, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗ'),
(106849, 'https://ror.org/026vbyp30', 'en', 1, 'https://ror.org/026vbyp30 Q University коллеГжа Ā«ŠšŠ°Š¹Š½Š°Ń€Ā» ŅšŠ°Š¹Š½Š°Ń€ ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(106850, 'https://ror.org/026vcq606', 'en', 1, 'https://ror.org/026vcq606 KTH Royal Institute of Technology Kungliga Tekniska hƶgskolan Kuninkaallinen teknillinen korkeakoulu'),
(106851, 'https://ror.org/026w31v75', 'en', 1, 'https://ror.org/026w31v75 Universiti Teknologi Malaysia University of Technology Malaysia é©¬ę„č„æäŗšå·„č‰ŗå¤§å­¦'),
(106852, 'https://ror.org/026wwrx19', 'en', 1, 'https://ror.org/026wwrx19 Universiti Kuala Lumpur University of Kuala Lumpur 吉隆坔大学'),
(106853, 'https://ror.org/026yzxh70', 'it', 1, 'https://ror.org/026yzxh70 Arcispedale Sant''Anna'),
(106854, 'https://ror.org/0271asj38', 'en', 0, 'https://ror.org/0271asj38 FondĆŗireacht EolaĆ­ochta Ɖireann Science Foundation Ireland'),
(106855, 'https://ror.org/02727gt60', 'no_lang_code', 1, 'https://ror.org/02727gt60 SolanoTech (Ireland)'),
(106856, 'https://ror.org/0272j5188', 'en', 1, 'https://ror.org/0272j5188 Northern Arizona University'),
(106857, 'https://ror.org/0272rjm42', 'en', 1, 'https://ror.org/0272rjm42 Doğuş University Doğuş Üniversitesi'),
(106858, 'https://ror.org/027318e47', 'en', 1, 'https://ror.org/027318e47 IMPACT School of Architecture'),
(106859, 'https://ror.org/0274bkc50', 'en', 1, 'https://ror.org/0274bkc50 Toho Gakuen College of Drama and Music ę”ęœ‹å­¦åœ’čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(106860, 'https://ror.org/0277z0p27', 'en', 1, 'https://ror.org/0277z0p27 Molloy College'),
(106861, 'https://ror.org/0278jft56', 'en', 1, 'https://ror.org/0278jft56 Federal University Dutse'),
(106862, 'https://ror.org/027b9qx26', 'de', 1, 'https://ror.org/027b9qx26 Hochschule Niederrhein'),
(106863, 'https://ror.org/027cbd221', 'en', 1, 'https://ror.org/027cbd221 FPInnovations'),
(106864, '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'),
(106865, 'https://ror.org/027gdbg63', 'en', 1, 'https://ror.org/027gdbg63 Tokyo Metropolitan Leather Technology Center ę±äŗ¬éƒ½ē«‹ēš®é©ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(106866, 'https://ror.org/027jsza11', 'en', 1, 'https://ror.org/027jsza11 Vidyasagar University ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦øą¦¾ą¦—ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(106867, 'https://ror.org/027qmrv63', 'en', 1, 'https://ror.org/027qmrv63 Yasuda Women''s College å®‰ē”°å„³å­ēŸ­ęœŸå¤§å­¦'),
(106868, 'https://ror.org/027s9cy89', 'en', 1, 'https://ror.org/027s9cy89 Hara Genitourinary Hospital åŽŸę³Œå°æå™Øē§‘ē—…é™¢'),
(106869, 'https://ror.org/027sfg181', 'en', 1, 'https://ror.org/027sfg181 Hokkaido Regional Research äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ćƒŖćƒ¼ć‚øćƒ§ćƒŠćƒ«ćƒŖć‚µćƒ¼ćƒ'),
(106870, 'https://ror.org/027t3y253', 'en', 1, 'https://ror.org/027t3y253 Fukuoka Mirai Hospital åŒ»ē™‚ę³•äŗŗē›øē”Ÿä¼šē¦å²”ćæć‚‰ć„ē—…é™¢'),
(106871, 'https://ror.org/027v46j67', 'en', 1, 'https://ror.org/027v46j67 Ibaraki Agriculture Institute čŒØåŸŽēœŒč¾²ę„­ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(106872, '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'),
(106873, 'https://ror.org/027vmhf17', 'en', 1, 'https://ror.org/027vmhf17 Malawi University of Science and Technology'),
(106874, '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'),
(106875, 'https://ror.org/0281zft76', 'en', 1, 'https://ror.org/0281zft76 Endocrine & Metabolism Research Institute Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų¹Ł„ŁˆŁ… ŲŗŲÆŲÆ و Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŲ³Ł…'),
(106876, 'https://ror.org/0283nw634', 'nl', 1, 'https://ror.org/0283nw634 Medisch Centrum Leeuwarden'),
(106877, 'https://ror.org/0284vkq26', 'en', 1, 'https://ror.org/0284vkq26 Sari Agricultural Sciences and Natural Resources University دانؓگاه Ų¹Ł„ŁˆŁ… کؓاورزی و منابع طبیعی ساری'),
(106878, 'https://ror.org/028680a31', 'en', 1, 'https://ror.org/028680a31 Hino Municipal Hospital ę—„é‡Žåø‚ē«‹ē—…é™¢'),
(106879, 'https://ror.org/028brk668', 'es', 1, 'https://ror.org/028brk668 Hospital Infantil Universitario Niño Jesús'),
(106880, 'https://ror.org/028btb530', 'en', 1, 'https://ror.org/028btb530 Endocrinology and Metabolism Population Sciences Institute Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… Ų¬Ł…Ų¹ŪŒŲŖŪŒ ŲŗŲÆŲÆ'),
(106881, 'https://ror.org/028bzjj61', 'no_lang_code', 1, 'https://ror.org/028bzjj61 Repsol (Spain)'),
(106882, 'https://ror.org/028crwz56', 'es', 1, 'https://ror.org/028crwz56 Universidad Nacional del Sur'),
(106883, 'https://ror.org/028d5by70', 'en', 1, 'https://ror.org/028d5by70 Technical University of Gabrovo Технически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Габрово'),
(106884, 'https://ror.org/028gf7832', 'no_lang_code', 1, 'https://ror.org/028gf7832 Alvernia University'),
(106885, 'https://ror.org/028gydn91', 'en', 1, 'https://ror.org/028gydn91 Saint Aloysius Gonzaga National University Universidad Nacional San Luis Gonzaga'),
(106886, 'https://ror.org/028h6g607', 'es', 1, 'https://ror.org/028h6g607 Sociedad EspaƱola de Neumologƭa y Cirugƭa TorƔcica'),
(106887, 'https://ror.org/028hemt13', 'en', 1, 'https://ror.org/028hemt13 Tokiwa Junior College 常磐短期大学'),
(106888, 'https://ror.org/028mk3t27', 'en', 1, 'https://ror.org/028mk3t27 Science and Technology Promotion Foundation of Ibaraki äø€čˆ¬č²”å›£ę³•äŗŗčŒØåŸŽēœŒē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(106889, 'https://ror.org/028ndzd53', 'en', 1, 'https://ror.org/028ndzd53 Edge Hill University'),
(106890, 'https://ror.org/028p89q89', 'en', 1, 'https://ror.org/028p89q89 North Eastern Industrial Research Center of Shiga Prefecture ę»‹č³€ēœŒę±åŒ—éƒØå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(106891, 'https://ror.org/028qtbk54', 'en', 1, 'https://ror.org/028qtbk54 Shiraz University دانؓگاه ؓیراز'),
(106892, 'https://ror.org/028rf7391', 'de', 1, 'https://ror.org/028rf7391 Ordensklinikum Linz Barmherzige Schwestern'),
(106893, 'https://ror.org/028wkbm97', 'en', 1, 'https://ror.org/028wkbm97 National Institute of Research and Development for Biological Sciences'),
(106894, 'https://ror.org/0290wsh42', 'it', 1, 'https://ror.org/0290wsh42 Istituto Universitario di Studi Superiori di Pavia University School for Advanced Studies - IUSS Pavia'),
(106895, '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'),
(106896, 'https://ror.org/02955j881', 'en', 1, 'https://ror.org/02955j881 Hokkaido Cancer Society å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“åÆ¾ćŒć‚“å”ä¼š'),
(106897, 'https://ror.org/02956yf07', 'en', 1, 'https://ror.org/02956yf07 University of Tsukuba 筑波大学'),
(106898, 'https://ror.org/02969qk41', 'en', 1, 'https://ror.org/02969qk41 Swedish Agency for Economic and Regional Growth'),
(106899, 'https://ror.org/0297axj39', 'es', 1, 'https://ror.org/0297axj39 Cesar Vallejo University Universidad CƩsar Vallejo'),
(106900, 'https://ror.org/029b7h395', 'en', 1, 'https://ror.org/029b7h395 Directorate for Mathematical & Physical Sciences'),
(106901, 'https://ror.org/029cgt552', 'en', 1, 'https://ror.org/029cgt552 Tunis El Manar University UniversitĆ© de tunis - el manar Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³ المنار'),
(106902, 'https://ror.org/029djt864', 'en', 1, 'https://ror.org/029djt864 Academy of Fine Arts Vienna Akademie der bildenden Künste Wien'),
(106903, 'https://ror.org/029dyna49', 'en', 1, 'https://ror.org/029dyna49 Saga Forestry Research Laboratory ä½č³€ēœŒęž—ę„­č©¦éØ“å “'),
(106904, 'https://ror.org/029eaeb35', 'en', 1, 'https://ror.org/029eaeb35 Albright College'),
(106905, 'https://ror.org/029efta16', 'es', 1, 'https://ror.org/029efta16 Universidad del Salvador UniversitƩ del salvador'),
(106906, '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'),
(106907, 'https://ror.org/029gnnp81', 'es', 1, 'https://ror.org/029gnnp81 International University of La Rioja Universidad Internacional De La Rioja'),
(106908, 'https://ror.org/029gwvs11', 'en', 1, 'https://ror.org/029gwvs11 Salisbury University'),
(106909, 'https://ror.org/029gycz42', 'en', 1, 'https://ror.org/029gycz42 World Bladder Cancer Patient Coalition, World Bladder Cancer Patient Coalition aisbl'),
(106910, 'https://ror.org/029hkd614', 'fr', 1, 'https://ror.org/029hkd614 Laboratoire Navier'),
(106911, 'https://ror.org/029m7xn54', 'en', 1, 'https://ror.org/029m7xn54 Universidad de San Francisco University of San Francisco UniversitƩ de san francisco'),
(106912, 'https://ror.org/029md1766', 'es', 1, 'https://ror.org/029md1766 Instituto Tecnológico Autónomo de México Mexico Autonomous Institute of Technology'),
(106913, 'https://ror.org/029me2p54', 'pt', 1, 'https://ror.org/029me2p54 Instituto UniversitƔrio Militar Military University Institute'),
(106914, 'https://ror.org/029n0xq72', 'pt', 1, 'https://ror.org/029n0xq72 Secretaria Regional da Saúde e Segurança Social'),
(106915, 'https://ror.org/029n7d640', 'fr', 1, 'https://ror.org/029n7d640 Agro-Biotechnologies Industrielles'),
(106916, 'https://ror.org/029ss0s83', 'es', 1, 'https://ror.org/029ss0s83 Universidad Estatal Amazónica'),
(106917, 'https://ror.org/029w3ge75', 'en', 1, 'https://ror.org/029w3ge75 Universidad de Quintana Roo University of Quintana Roo'),
(106918, 'https://ror.org/029wwt733', 'en', 1, 'https://ror.org/029wwt733 National Library of China 中国国家图书馆'),
(106919, 'https://ror.org/029xmsm82', 'fr', 1, 'https://ror.org/029xmsm82 DƩpartement GƩnƩtique Animale'),
(106920, 'https://ror.org/029yr5c74', 'en', 1, 'https://ror.org/029yr5c74 Kagawa Prefectural Agricultural Experiment Station é¦™å·ēœŒč¾²ę„­č©¦éØ“å “'),
(106921, 'https://ror.org/029zqs055', 'en', 1, 'https://ror.org/029zqs055 College of Wooster'),
(106922, 'https://ror.org/02a0c6v45', 'en', 1, 'https://ror.org/02a0c6v45 Centre for Digital Humanities'),
(106923, 'https://ror.org/02a0fwv66', 'en', 1, 'https://ror.org/02a0fwv66 American Institute of Mathematics'),
(106924, 'https://ror.org/02a0gt662', 'en', 1, 'https://ror.org/02a0gt662 The Japan Society of Hepatology äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‚č‡“å­¦ä¼š'),
(106925, 'https://ror.org/02a2kzf50', 'ca', 1, 'https://ror.org/02a2kzf50 Hospital ClĆ­nic de Barcelona'),
(106926, 'https://ror.org/02a39yh68', 'en', 1, 'https://ror.org/02a39yh68 Panca Bhakti University Universitas Panca Bhakti'),
(106927, 'https://ror.org/02a3gqt64', 'pt', 1, 'https://ror.org/02a3gqt64 Instituto de Estudos Avançados em Catolicismo e Globalização'),
(106928, 'https://ror.org/02a3mnt93', 'en', 1, 'https://ror.org/02a3mnt93 Jiyugaoka Sanno College č‡Ŗē”±ćŒäø˜ē”£čƒ½ēŸ­ęœŸå¤§å­¦'),
(106929, 'https://ror.org/02a3pzh97', 'es', 1, 'https://ror.org/02a3pzh97 Universidad PolitƩcnica de Puebla'),
(106930, 'https://ror.org/02a6etc13', 'en', 1, 'https://ror.org/02a6etc13 Japan Racing Horse Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē«¶čµ°é¦¬å”ä¼š'),
(106931, 'https://ror.org/02ajw2j97', 'pt', 1, 'https://ror.org/02ajw2j97 Hospital-Escola da Universidade Fernando Pessoa'),
(106932, 'https://ror.org/02ambj410', 'de', 1, 'https://ror.org/02ambj410 ai-quanton GmbH'),
(106933, 'https://ror.org/02anj9s22', 'en', 1, 'https://ror.org/02anj9s22 Mt. Cuba Astronomical Observatory, Mt. Cuba Astronomical Observatory, Inc.'),
(106934, 'https://ror.org/02anzyy56', 'no_lang_code', 1, 'https://ror.org/02anzyy56 Natera (United States)'),
(106935, 'https://ror.org/02ar8gr68', 'en', 1, 'https://ror.org/02ar8gr68 Kyrgyz National University QirgŹ»iz milliy universiteti Š–ŃƒŃŃƒŠæ Баласагын атынГагы ŠšŃ‹Ń€Š³Ń‹Š· Š£Š»ŃƒŃ‚Ń‚ŃƒŠŗ Университети ŠšŠøŃ€Š³ŠøŠ·ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š–ŃƒŃŃƒŠæŠ° Баласагына'),
(106936, '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'),
(106937, 'https://ror.org/02asy9212', 'en', 1, 'https://ror.org/02asy9212 Danish Institute for International Studies'),
(106938, 'https://ror.org/02at7cs40', 'en', 1, 'https://ror.org/02at7cs40 Japanese Society of Medical Instrumentation äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»ē™‚ę©Ÿå™Øå­¦ä¼š'),
(106939, 'https://ror.org/02atkd403', 'fr', 1, 'https://ror.org/02atkd403 Laboratoire de Physique et Chimie ThƩoriques'),
(106940, 'https://ror.org/02avtbn34', 'en', 1, 'https://ror.org/02avtbn34 Bowen University'),
(106941, 'https://ror.org/02awmn551', 'en', 1, 'https://ror.org/02awmn551 Hungarian National Bank Magyar Nemzeti Bank'),
(106942, 'https://ror.org/02azyry73', 'en', 1, 'https://ror.org/02azyry73 University of Siegen UniversitƤt Siegen'),
(106943, 'https://ror.org/02b28ye70', 'es', 1, 'https://ror.org/02b28ye70 La Salle University Northwest Universidad La Salle Noroeste'),
(106944, 'https://ror.org/02b6gy972', 'en', 1, 'https://ror.org/02b6gy972 Samarkand State University named after Sharof Rashidov Sharof Rashidov nomidagi Samarqand davlat universiteti ДамарканГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шарофа РашиГова'),
(106945, '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'),
(106946, 'https://ror.org/02bjhwk41', 'en', 1, 'https://ror.org/02bjhwk41 University of Georgia'),
(106947, 'https://ror.org/02bjreh63', 'en', 1, 'https://ror.org/02bjreh63 Munakata Suikokai General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę°“å…‰ä¼šå®—åƒę°“å…‰ä¼šē·åˆē—…é™¢'),
(106948, 'https://ror.org/02bkw1m29', 'en', 1, 'https://ror.org/02bkw1m29 International Laboratory on Learning Systems'),
(106949, 'https://ror.org/02bm3x632', 'en', 1, 'https://ror.org/02bm3x632 AKO City Hospital 赤穂市民病院'),
(106950, 'https://ror.org/02bnddg69', 'en', 1, 'https://ror.org/02bnddg69 Comilla University ą¦•ą§ą¦®ą¦æą¦²ą§ą¦²ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(106951, 'https://ror.org/02brte405', 'en', 1, 'https://ror.org/02brte405 Samsun University Samsun Üniversitesi'),
(106952, 'https://ror.org/02bt0vt04', 'en', 1, 'https://ror.org/02bt0vt04 Institute of Environmental Protection'),
(106953, 'https://ror.org/02bt2v049', 'pt', 1, 'https://ror.org/02bt2v049 Centro de Investigação Marinha e Ambiental'),
(106954, 'https://ror.org/02btb7z30', 'en', 1, 'https://ror.org/02btb7z30 Tsurugaya Hospital åŒ»ē™‚ę³•äŗŗé¶“č°·ä¼šé¶“č°·ē—…é™¢'),
(106955, 'https://ror.org/02btnf645', 'en', 1, 'https://ror.org/02btnf645 Kusatsu General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗčŖ å…‰ä¼šč‰ę“„ē·åˆē—…é™¢'),
(106956, 'https://ror.org/02bwxve09', 'en', 1, 'https://ror.org/02bwxve09 Microbial Chemistry Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¾®ē”Ÿē‰©åŒ–å­¦ē ”ē©¶ä¼š'),
(106957, 'https://ror.org/02bxt4m23', 'en', 1, 'https://ror.org/02bxt4m23 Northwell Health'),
(106958, 'https://ror.org/02bzfsy61', 'en', 1, 'https://ror.org/02bzfsy61 Bialystok University of Technology Politechnika Białostocka'),
(106959, 'https://ror.org/02c3vg160', 'en', 1, 'https://ror.org/02c3vg160 Fukui Prefectural University ē¦äŗ•ēœŒē«‹å¤§å­¦'),
(106960, 'https://ror.org/02c58qy62', 'en', 1, 'https://ror.org/02c58qy62 Kansai Occupational Health Association äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æåŠ“åƒäæå„å”ä¼š'),
(106961, 'https://ror.org/02c63wv67', 'en', 1, 'https://ror.org/02c63wv67 University of Central Missouri'),
(106962, 'https://ror.org/02c89h825', 'en', 1, 'https://ror.org/02c89h825 University College Odisee'),
(106963, 'https://ror.org/02c9sby34', 'en', 1, 'https://ror.org/02c9sby34 Miyagi Prefecture Fisheries Technology Institute å®®åŸŽēœŒę°“ē”£ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(106964, 'https://ror.org/02ccw7t09', 'en', 1, 'https://ror.org/02ccw7t09 The Robotics Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ­ćƒœćƒƒćƒˆå­¦ä¼š'),
(106965, 'https://ror.org/02ccxj712', 'en', 1, 'https://ror.org/02ccxj712 Kenya Medical Training College'),
(106966, 'https://ror.org/02cfpj844', 'en', 1, 'https://ror.org/02cfpj844 ToxStrategies LLC, ToxStrategies LLC (United States)'),
(106967, 'https://ror.org/02ch5q898', 'en', 1, 'https://ror.org/02ch5q898 Office of Inspector General'),
(106968, 'https://ror.org/02chw6z69', 'en', 1, 'https://ror.org/02chw6z69 Kavli Institute for the Physics and Mathematics of the Universe ć‚«ćƒ–ćƒŖę•°ē‰©é€£ęŗå®‡å®™ē ”ē©¶ę©Ÿę§‹'),
(106969, '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'),
(106970, 'https://ror.org/02ckdts26', 'en', 1, 'https://ror.org/02ckdts26 AmirAlam Hospital Ł…Ų¬ŲŖŁ…Ų¹ ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł†ŪŒ Ų§Ł…ŪŒŲ± اعلم'),
(106971, 'https://ror.org/02cmwmx57', 'en', 1, 'https://ror.org/02cmwmx57 Biliran Province State University'),
(106972, 'https://ror.org/02cnp0083', 'pt', 1, 'https://ror.org/02cnp0083 Centro de Investigação Desenvolvimento e Inovação em Turismo Leiria'),
(106973, 'https://ror.org/02cnwgt19', 'en', 1, 'https://ror.org/02cnwgt19 Effat University Ų¬Ų§Ł…Ų¹Ų© عفت'),
(106974, 'https://ror.org/02cptmd52', 'en', 1, 'https://ror.org/02cptmd52 Agronomie'),
(106975, 'https://ror.org/02cpxvv16', 'en', 1, 'https://ror.org/02cpxvv16 Teikyo Junior College åøäŗ¬ēŸ­ęœŸå¤§å­¦'),
(106976, 'https://ror.org/02crev113', 'it', 1, 'https://ror.org/02crev113 Azienda Ospedaliero-Universitaria Careggi'),
(106977, 'https://ror.org/02cy4j108', 'en', 1, 'https://ror.org/02cy4j108 Committee on Data of the International Science Council'),
(106978, 'https://ror.org/02cypx016', 'fr', 1, 'https://ror.org/02cypx016'),
(106979, 'https://ror.org/02cznc894', 'en', 1, 'https://ror.org/02cznc894 Air Force Installation and Mission Support Center'),
(106980, 'https://ror.org/02czxf571', 'en', 1, 'https://ror.org/02czxf571 Fisheries Infrastructure Development Center äø€čˆ¬ē¤¾å›£ę³•äŗŗę°“ē”£åœŸęœØå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(106981, 'https://ror.org/02d0cgn19', 'en', 1, 'https://ror.org/02d0cgn19 Anhui Business College'),
(106982, 'https://ror.org/02d0sp989', 'en', 1, 'https://ror.org/02d0sp989 Consortium for Lithium Ion Battery Technology and Evaluation Center ęŠ€č”“ē ”ē©¶ēµ„åˆćƒŖćƒć‚¦ćƒ ć‚¤ć‚Ŗćƒ³é›»ę± ęę–™č©•ä¾”ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(106983, 'https://ror.org/02d10f818', 'en', 1, 'https://ror.org/02d10f818 Lala Lajpat Rai University of Veterinary and Animal Sciences लाला लाजपतराय ą¤Ŗą¤¶ą„ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤ą¤µą¤‚ ą¤Ŗą¤¶ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ லாலா ą®²ą®œą®Ŗą®¤ą®æą®°ą®¾ą®ÆąÆ ą®•ą®¾ą®²ąÆą®Øą®ŸąÆˆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®æą®²ą®™ąÆą®•ą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(106984, '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'),
(106985, 'https://ror.org/02d2yy683', 'en', 1, 'https://ror.org/02d2yy683 Research Institute for Local Government äø€čˆ¬č²”å›£ę³•äŗŗåœ°ę–¹č‡Ŗę²»ē ”ē©¶ę©Ÿę§‹'),
(106986, 'https://ror.org/02d5b7g69', 'en', 1, 'https://ror.org/02d5b7g69 Dhirubhai Ambani Institute of Information and Communication Technology ધીરુભાઇ અંબાણી ąŖ‡ąŖØą«ąŖøą«ąŖŸąŖæąŖŸą«ąŖÆą«ąŖŸ ąŖ“ąŖ« ąŖ‡ąŖØą«ąŖ«ą«‹ąŖ°ą«ąŖ®ą«‡ąŖ¶ąŖØ ąŖąŖØą«ąŖ” ąŖ•ąŖ®ą«ąŖÆą«ąŖØąŖæąŖ•ą«‡ąŖ¶ąŖØ ąŖŸą«‡ąŖ•ą«ąŖØą«‹ąŖ²ą«‹ąŖœą«€'),
(106987, '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'),
(106988, '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'),
(106989, 'https://ror.org/02d9gec76', 'ca', 1, 'https://ror.org/02d9gec76 Esade, Escola Superior d''Administració i Direcció d''Empreses'),
(106990, 'https://ror.org/02d9tjn82', 'en', 1, 'https://ror.org/02d9tjn82 National Sanatorium Suruga å›½ē«‹é§æę²³ē™‚é¤Šę‰€'),
(106991, 'https://ror.org/02dbp3m50', 'es', 1, 'https://ror.org/02dbp3m50 Escuela de Posgrado Newman Newman Graduate School'),
(106992, 'https://ror.org/02dde7839', 'en', 1, 'https://ror.org/02dde7839 Foothill-De Anza Community College District'),
(106993, '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'),
(106994, 'https://ror.org/02denmt82', 'en', 1, 'https://ror.org/02denmt82 Suwa University of Science å…¬ē«‹č«čØŖę±äŗ¬ē†ē§‘å¤§å­¦'),
(106995, 'https://ror.org/02dfe8754', 'en', 1, 'https://ror.org/02dfe8754 Dr. N.G.P. Institute of Technology'),
(106996, 'https://ror.org/02dkjms65', 'en', 1, 'https://ror.org/02dkjms65 Daido Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå®ę½¤ä¼šå¤§åŒē—…é™¢'),
(106997, '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'),
(106998, 'https://ror.org/02dn9h927', 'en', 1, 'https://ror.org/02dn9h927 Peoples'' Friendship University of Russia Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š“Ń€ŃƒŠ¶Š±Ń‹ нароГов'),
(106999, 'https://ror.org/02dp3a879', 'en', 1, 'https://ror.org/02dp3a879 Istituto Nazionale di Ottica National Institute of Optics'),
(107000, 'https://ror.org/02dpvst32', 'en', 1, 'https://ror.org/02dpvst32 Kinnaird College for Women University Ś©Ł†ŪŒŲ¦Ų±Śˆ کالج'),
(107001, 'https://ror.org/02dr4ah95', 'en', 1, 'https://ror.org/02dr4ah95 SCMS Group of Educational Institutions'),
(107002, 'https://ror.org/02drrjp49', 'en', 1, 'https://ror.org/02drrjp49 University of Montenegro Универзитет Црне Горе'),
(107003, 'https://ror.org/02dvm3910', 'pt', 1, 'https://ror.org/02dvm3910 Fundação Francisco Manuel dos Santos'),
(107004, 'https://ror.org/02dw21289', 'pt', 1, 'https://ror.org/02dw21289 Sociedade Portuguesa de Dermatologia e Venereologia'),
(107005, 'https://ror.org/02dwjbw48', 'en', 1, 'https://ror.org/02dwjbw48 Osaka Heavy Ion Therapy Center å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗå›½éš›ćŒć‚“ę²»ē™‚č²”å›£å¤§é˜Ŗé‡ē²’å­ē·šć‚»ćƒ³ć‚æćƒ¼'),
(107006, 'https://ror.org/02e2c7k09', 'en', 1, 'https://ror.org/02e2c7k09 Delft University of Technology Technische Universiteit Delft'),
(107007, 'https://ror.org/02e2egq70', 'en', 1, 'https://ror.org/02e2egq70 United States Air Force Research Laboratory'),
(107008, 'https://ror.org/02e2wvy23', 'en', 1, 'https://ror.org/02e2wvy23 Kyoto Tachibana University 京都橘大学'),
(107009, 'https://ror.org/02e3nay30', 'no_lang_code', 1, 'https://ror.org/02e3nay30 M.J.P. Rohilkhand University ą¤°ą„ą¤¹ą„‡ą¤²ą¤–ą¤£ą„ą¤” ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®®ą®•ą®¾ą®¤ąÆą®®ą®¾ ą®œąÆ‹ą®¤ą®æą®Ŗą®¾ பூலே ą®°ąÆ‹ą®•ą®æą®²ąÆą®•ą®ØąÆą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(107010, 'https://ror.org/02e3zdp86', 'en', 1, 'https://ror.org/02e3zdp86 Boise State University Universidad Estatal de Boise UniversitĆ© d''Ɖtat de boise'),
(107011, 'https://ror.org/02e420914', 'en', 1, 'https://ror.org/02e420914 JAę–°ę½ŸåŽšē”Ÿé€£ęŸå“Žē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ Kashiwazaki General Hospital and Medical Center'),
(107012, 'https://ror.org/02e45e442', 'en', 1, 'https://ror.org/02e45e442 Yokohama Asahi Chuo General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę˜ŽčŠ³ä¼šęØŖęµœę—­äø­å¤®ē·åˆē—…é™¢'),
(107013, 'https://ror.org/02e4fn963', 'en', 1, 'https://ror.org/02e4fn963 University of Sahiwal'),
(107014, 'https://ror.org/02e50va28', 'en', 1, 'https://ror.org/02e50va28 Statistics Norway'),
(107015, 'https://ror.org/02e66xy22', 'en', 1, 'https://ror.org/02e66xy22 Institute of Human Virology'),
(107016, 'https://ror.org/02e7r0h80', 'en', 1, 'https://ror.org/02e7r0h80 Harare Institute of Technology'),
(107017, 'https://ror.org/02ed64f32', 'no_lang_code', 1, 'https://ror.org/02ed64f32 Grifols (Spain)'),
(107018, 'https://ror.org/02eehp307', 'en', 1, 'https://ror.org/02eehp307 Universitas Warmadewa Warmadewa University'),
(107019, 'https://ror.org/02efcyw28', 'en', 1, 'https://ror.org/02efcyw28 Inokashira Hospital å…¬ē›Šč²”å›£ę³•äŗŗäŗ•ä¹‹é ­ē—…é™¢'),
(107020, 'https://ror.org/02ehwsx58', 'en', 1, 'https://ror.org/02ehwsx58 Fujita General Hospital å…¬ē«‹č—¤ē”°ē·åˆē—…é™¢'),
(107021, 'https://ror.org/02ejhav42', 'en', 1, 'https://ror.org/02ejhav42 Kyushu Dental Society ä¹å·žę­Æē§‘å­¦ä¼š'),
(107022, 'https://ror.org/02ekfbp48', 'en', 1, 'https://ror.org/02ekfbp48 Hamedan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ استان همدان'),
(107023, 'https://ror.org/02ekfha90', 'en', 1, 'https://ror.org/02ekfha90 Chukyo Eye Clinic åŒ»ē™‚ę³•äŗŗć„ć•ćŖä¼šäø­äŗ¬ēœ¼ē§‘'),
(107024, 'https://ror.org/02emftt08', 'en', 1, 'https://ror.org/02emftt08 Alaska Department of Natural Resources'),
(107025, 'https://ror.org/02eqy9808', 'en', 1, 'https://ror.org/02eqy9808 University of Hillah Ų¬Ų§Ł…Ų¹Ų© الحلة'),
(107026, 'https://ror.org/02evec030', 'fr', 1, 'https://ror.org/02evec030 JUNIA'),
(107027, 'https://ror.org/02ew7mv78', 'en', 1, 'https://ror.org/02ew7mv78 MwAPATA Institute'),
(107028, 'https://ror.org/02eysy271', 'en', 1, 'https://ror.org/02eysy271 Biblioteca PĆŗblica de Nueva York New York Public Library'),
(107029, 'https://ror.org/02ezch769', 'fr', 1, 'https://ror.org/02ezch769 Polytechnic University of Hauts-de-France UniversitƩ Polytechnique Hauts-de-France'),
(107030, 'https://ror.org/02f0bym65', 'en', 1, 'https://ror.org/02f0bym65 National Opinion Research Center'),
(107031, 'https://ror.org/02f1z8215', 'en', 1, 'https://ror.org/02f1z8215 Sri Eshwar College of Engineering'),
(107032, 'https://ror.org/02f3ts956', 'ca', 1, 'https://ror.org/02f3ts956 Parc Sanitari Sant Joan de DƩu'),
(107033, 'https://ror.org/02f3v2286', 'en', 1, 'https://ror.org/02f3v2286 Saga Prefectural Government ä½č³€ēœŒåŗ'),
(107034, 'https://ror.org/02f3ymk52', 'en', 1, 'https://ror.org/02f3ymk52 ICN Business School'),
(107035, 'https://ror.org/02f4g7t12', 'en', 1, 'https://ror.org/02f4g7t12 CARE International Japan å…¬ē›Šč²”å›£ę³•äŗŗć‚±ć‚¢ćƒ»ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«ć‚øćƒ£ćƒ‘ćƒ³'),
(107036, 'https://ror.org/02f57qw79', 'en', 1, 'https://ror.org/02f57qw79 Japan Endocrine Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†…åˆ†ę³Œå­¦ä¼š'),
(107037, 'https://ror.org/02f7src36', 'en', 1, 'https://ror.org/02f7src36 Sainokuni Higashiomiya Medical Center åŒ»ē™‚ę³•äŗŗē¤¾å›£å”å‹ä¼šå½©ć®å›½ę±å¤§å®®ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(107038, 'https://ror.org/02f8h1m78', 'pt', 1, 'https://ror.org/02f8h1m78 Instituto Federal Catarinense'),
(107039, 'https://ror.org/02f90t643', 'en', 1, 'https://ror.org/02f90t643 Kansai Airport Research Institute äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æē©ŗęøÆčŖæęŸ»ä¼š'),
(107040, 'https://ror.org/02f9k5d27', 'en', 1, 'https://ror.org/02f9k5d27 African Institute for Mathematical Sciences'),
(107041, 'https://ror.org/02f9n2c91', 'en', 0, 'https://ror.org/02f9n2c91 Writtle University College'),
(107042, 'https://ror.org/02fabx761', 'nl', 1, 'https://ror.org/02fabx761 De Nederlandsche Bank'),
(107043, 'https://ror.org/02faxbd19', 'en', 1, 'https://ror.org/02faxbd19 Bethel University'),
(107044, 'https://ror.org/02fc7c239', 'en', 1, 'https://ror.org/02fc7c239 Tsushima City Hospital 擄島市民病院'),
(107045, 'https://ror.org/02fckb719', 'en', 1, 'https://ror.org/02fckb719 Jenderal Soedirman University Universitas Jenderal Soedirman'),
(107046, 'https://ror.org/02fcqqz87', 'en', 1, 'https://ror.org/02fcqqz87 State Biotechnological University Державний біотехнологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(107047, 'https://ror.org/02fdpqd66', 'en', 1, 'https://ror.org/02fdpqd66 D. A. Tsenov Academy of Economics Дтопанска Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ā€žŠ”. А. Ценов'),
(107048, 'https://ror.org/02fe00a81', 'en', 1, 'https://ror.org/02fe00a81 Environmental Management And Technology Center äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æē’°å¢ƒē®”ē†ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(107049, 'https://ror.org/02ff2a336', 'pt', 1, 'https://ror.org/02ff2a336 Centro de Estudos IbƩricos'),
(107050, 'https://ror.org/02ffcdy84', 'id', 1, 'https://ror.org/02ffcdy84 Politeknik Negeri Banjarmasin'),
(107051, 'https://ror.org/02fgksf31', 'en', 1, 'https://ror.org/02fgksf31 Arka Jain University आरका ą¤œą„ˆą¤Ø ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(107052, 'https://ror.org/02fh3dt13', 'en', 1, 'https://ror.org/02fh3dt13 Petersburg State Transport University ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(107053, 'https://ror.org/02fhfq388', 'en', 1, 'https://ror.org/02fhfq388 Enverga University'),
(107054, 'https://ror.org/02fhfw393', 'de', 1, 'https://ror.org/02fhfw393 MontanuniversitƤt Leoben Univerza v Leobnu'),
(107055, 'https://ror.org/02fhgzv56', 'en', 1, 'https://ror.org/02fhgzv56 Okinawa Prefectural Sea Farming Center ę²–ēø„ēœŒę ½åŸ¹ę¼ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(107056, 'https://ror.org/02fhy7464', 'en', 1, 'https://ror.org/02fhy7464 Matematický ústav Slovenskej akadémie vied Mathematical Institute of the Slovak Academy of Sciences'),
(107057, 'https://ror.org/02fmg6q11', 'en', 1, 'https://ror.org/02fmg6q11 University of Okara جامعہ Ų§ŁˆŚ©Ų§Ś‘Ū'),
(107058, 'https://ror.org/02frkq021', 'en', 1, 'https://ror.org/02frkq021 Siberian Branch of the Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космофизических исслеГований Šø Š°ŃŃ€Š¾Š½Š¾Š¼ŠøŠø им. Š®.Š“.Шафера Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(107059, 'https://ror.org/02ftyfe43', 'en', 1, 'https://ror.org/02ftyfe43 Control System Security Center ęŠ€č”“ē ”ē©¶ēµ„åˆåˆ¶å¾”ć‚·ć‚¹ćƒ†ćƒ ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£ć‚»ćƒ³ć‚æćƒ¼'),
(107060, 'https://ror.org/02fvaj957', 'en', 1, 'https://ror.org/02fvaj957 Spelman College'),
(107061, 'https://ror.org/02fvps960', 'en', 1, 'https://ror.org/02fvps960 Farabi Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† فارابی'),
(107062, 'https://ror.org/02fwjgw17', 'en', 1, 'https://ror.org/02fwjgw17 University of Jaffna ą®Æą®¾ą®“ąÆą®ŖąÆą®Ŗą®¾ą®£ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą¶ŗą·ą¶“ą¶±ą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(107063, 'https://ror.org/02fywdp72', 'en', 1, 'https://ror.org/02fywdp72 Korea National Sport University ķ•œźµ­ģ²“ģœ”ėŒ€ķ•™źµ'),
(107064, 'https://ror.org/02fzfx471', 'en', 1, 'https://ror.org/02fzfx471 Indira Gandhi National Open University UniversitĆ© nationale ouverte indira gandhi ą¤‡ą¤Øą„ą¤¦ą¤æą¤°ą¤¾ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤ˆą¤Øą„ą¤¦ą¤æą¤°ą¤¾ ą¤—ą¤¾ą¤Øą„ą¤§ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤–ą„ą¤²ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦‡ą¦Øą§ą¦¦ą¦æą¦°ą¦¾ ą¦—ą¦¾ą¦Øą§ą¦§ą§€ ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ਇੰਦਰਾ ਗਾਂਧੀ ਨੈਸ਼ਨਲ ਓਪਨ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®‡ą®ØąÆą®¤ą®æą®°ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ą®æą®±ą®ØąÆą®¤ą®Øą®æą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“‡ą“Øąµą“¦ą“æą“°ą“¾ą“—ą“¾ą“Øąµą“§ą“æ ą“Øą“¾ą“·ą“£ąµ½ ą““ą“Ŗąµą“Ŗąµŗ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(107065, 'https://ror.org/02g0fsq64', 'id', 1, 'https://ror.org/02g0fsq64 Politeknik Negeri Samarinda'),
(107066, 'https://ror.org/02g2frf98', 'en', 1, 'https://ror.org/02g2frf98 Great Plains Network'),
(107067, 'https://ror.org/02g349121', 'en', 1, 'https://ror.org/02g349121 Southern California Coastal Ocean Observing System'),
(107068, 'https://ror.org/02g4pvf45', 'en', 1, 'https://ror.org/02g4pvf45 B.M.S. College of Engineering ಬೀ.ą²Žą²‚.ą²Žą²øą³. ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(107069, 'https://ror.org/02g5mge27', 'en', 1, 'https://ror.org/02g5mge27 Nishiwaki Municipal Hospital 脿脇市立脿脇病院'),
(107070, 'https://ror.org/02g61vs33', 'en', 1, 'https://ror.org/02g61vs33 Incorporated Foundation Okinawa Prefecture Environment Science Center äø€čˆ¬č²”å›£ę³•äŗŗę²–ēø„ēœŒē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(107071, 'https://ror.org/02g6rcz57', 'en', 1, 'https://ror.org/02g6rcz57 Chandrakasem Rajabhat University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøˆąø±ąø™ąø—ąø£ą¹€ąøąø©ąø”'),
(107072, 'https://ror.org/02g7vqw33', 'en', 1, 'https://ror.org/02g7vqw33 Japan Association for Real Estate Sciences å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äøå‹•ē”£å­¦ä¼š'),
(107073, 'https://ror.org/02g9f5b81', 'en', 1, 'https://ror.org/02g9f5b81 JAIS å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é€šäæ”ę•™č‚²ęŒÆčˆˆå”ä¼š'),
(107074, 'https://ror.org/02g9n8n52', 'de', 1, 'https://ror.org/02g9n8n52 Karl Landsteiner University Hospital St. Pƶlten UniversitƤtsklinikum St. Pƶlten'),
(107075, 'https://ror.org/02gag4781', 'en', 1, 'https://ror.org/02gag4781 DeSales University'),
(107076, 'https://ror.org/02gagpf75', 'en', 1, 'https://ror.org/02gagpf75 NORCE Norwegian Research Centre'),
(107077, 'https://ror.org/02gbdnn14', 'id', 1, 'https://ror.org/02gbdnn14 Universitas Kiai Abdullah Faqih Gresik'),
(107078, 'https://ror.org/02gbj1120', 'en', 1, 'https://ror.org/02gbj1120 Tsugaru General Hospital ć¤ćŒć‚‹ē·åˆē—…é™¢'),
(107079, 'https://ror.org/02gdzyx04', 'en', 1, 'https://ror.org/02gdzyx04 University of Winnipeg UniversitƩ de winnipeg'),
(107080, 'https://ror.org/02ge27m07', 'de', 1, 'https://ror.org/02ge27m07 Hochschule für Technik und Wirtschaft des Saarlandes htw saar - University of Applied Sciences'),
(107081, 'https://ror.org/02gekya22', 'en', 1, 'https://ror.org/02gekya22 Palestine Ahliya University Ų¬Ų§Ł…Ų¹Ų© ŁŁ„Ų³Ų·ŁŠŁ† Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(107082, 'https://ror.org/02gez1e74', 'en', 1, 'https://ror.org/02gez1e74 Hackney College, Hackney Community College'),
(107083, 'https://ror.org/02ggnh308', 'en', 1, 'https://ror.org/02ggnh308 Institute of China and Modern Asia of the Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŠøŃ‚Š°Ń Šø современной Азии Российской акаГемии наук'),
(107084, 'https://ror.org/02gkw1y06', 'en', 1, 'https://ror.org/02gkw1y06 Evidence Based Medicine Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ پزؓکی Ł…ŲØŲŖŁ†ŪŒ ŲØŲ± Ų“ŁˆŲ§Ł‡ŲÆ'),
(107085, 'https://ror.org/02gm7te43', 'en', 1, 'https://ror.org/02gm7te43 Norwegian Computing Center'),
(107086, 'https://ror.org/02gmnxp82', 'en', 1, 'https://ror.org/02gmnxp82 The Japanese Society of Internal Medicine äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†…ē§‘å­¦ä¼š'),
(107087, 'https://ror.org/02gmwvg31', 'en', 1, 'https://ror.org/02gmwvg31 Japan Fisheries Research and Education Agency å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗę°“ē”£ē ”ē©¶ćƒ»ę•™č‚²ę©Ÿę§‹'),
(107088, 'https://ror.org/02gqb2836', 'pt', 1, 'https://ror.org/02gqb2836 Sociedade Portuguesa de Alergologia e Imunologia ClĆ­nica'),
(107089, 'https://ror.org/02gs16m83', 'lt', 1, 'https://ror.org/02gs16m83 Lietuvos Mokslo Taryba Research Council of Lithuania'),
(107090, 'https://ror.org/02gtc5h12', 'en', 1, 'https://ror.org/02gtc5h12 Japan Medical Women''s Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å„³åŒ»ä¼š'),
(107091, 'https://ror.org/02gxxzb83', 'en', 1, 'https://ror.org/02gxxzb83 Japan Network Information Center äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æć‚¤ćƒ³ćƒ•ć‚©ćƒ”ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(107092, 'https://ror.org/02h2fg990', 'en', 1, 'https://ror.org/02h2fg990 Takaoka City Hospital é«˜å²”åø‚ę°‘ē—…é™¢'),
(107093, 'https://ror.org/02h2fxd91', 'en', 1, 'https://ror.org/02h2fxd91 Astroserver, Astroserver (Hungary)'),
(107094, 'https://ror.org/02h3bfj85', 'de', 1, 'https://ror.org/02h3bfj85 Kepler UniversitƤtsklinikum'),
(107095, 'https://ror.org/02h4qpx12', 'en', 1, 'https://ror.org/02h4qpx12 University of Northern Iowa UniversitƩ d''iowa du nord'),
(107096, 'https://ror.org/02h5t6n73', 'en', 1, 'https://ror.org/02h5t6n73 Istanbul Provincial Directorate of National Education İstanbul İl Millî Eğitim Müdürlüğü'),
(107097, 'https://ror.org/02h7fsz12', 'es', 1, 'https://ror.org/02h7fsz12 Universidad Nacional de San MartĆ­n'),
(107098, 'https://ror.org/02h8ntn95', 'en', 1, 'https://ror.org/02h8ntn95 Fukuoka Wajiro Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ę± å‹ä¼šē¦å²”å’Œē™½ē—…é™¢'),
(107099, 'https://ror.org/02h8tym68', 'en', 1, 'https://ror.org/02h8tym68 National College, Trichy'),
(107100, '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'),
(107101, 'https://ror.org/02h92td50', 'en', 1, 'https://ror.org/02h92td50 Police Academy of the Czech Republic in Prague Policejní akademie České republiky v Praze'),
(107102, 'https://ror.org/02h9n8v16', 'no_lang_code', 1, 'https://ror.org/02h9n8v16 MSD (Mexico)'),
(107103, 'https://ror.org/02hd2zk59', 'en', 1, 'https://ror.org/02hd2zk59 Atma Jaya Catholic University of Indonesia Universitas Katolik Atma Jaya'),
(107104, 'https://ror.org/02he3zy15', 'no_lang_code', 1, 'https://ror.org/02he3zy15 Bentham Science Publishers (China)'),
(107105, 'https://ror.org/02hht4t25', 'en', 1, 'https://ror.org/02hht4t25 Urban Innovation Institute å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚ę“»åŠ›ē ”ē©¶ę‰€'),
(107106, 'https://ror.org/02hmaq742', 'en', 1, 'https://ror.org/02hmaq742 Croatian Geological Survey'),
(107107, 'https://ror.org/02hnc0643', 'en', 1, 'https://ror.org/02hnc0643 Veni Creator Christian University'),
(107108, 'https://ror.org/02hrb2387', 'en', 1, 'https://ror.org/02hrb2387 Japan Aluminium Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ«ćƒŸćƒ‹ć‚¦ćƒ å”ä¼š'),
(107109, 'https://ror.org/02hs16028', 'en', 1, 'https://ror.org/02hs16028 Fukushima Prefectual Center for Environmental Creation ē¦å³¶ēœŒē’°å¢ƒå‰µé€ ć‚»ćƒ³ć‚æćƒ¼'),
(107110, 'https://ror.org/02ht9xe28', 'id', 1, 'https://ror.org/02ht9xe28 Universitas Dharmawangsa'),
(107111, 'https://ror.org/02hvzvg02', 'en', 1, 'https://ror.org/02hvzvg02 Modern College of Business and Science'),
(107112, 'https://ror.org/02hwy9s76', 'en', 1, 'https://ror.org/02hwy9s76 Bệnh viện Thống Nhįŗ„t Thong Nhat Hospital'),
(107113, 'https://ror.org/02hynvh35', 'pt', 1, 'https://ror.org/02hynvh35 Direcção-Geral de Alimentação e VeterinÔria'),
(107114, 'https://ror.org/02j0n6s98', 'en', 1, 'https://ror.org/02j0n6s98 Ludwigsburg University of Education PƤdagogische Hochschule Ludwigsburg'),
(107115, 'https://ror.org/02j0pzx46', 'en', 1, 'https://ror.org/02j0pzx46 Foundation for Detection of Early Gastric Carcinoma å…¬ē›Šč²”å›£ę³•äŗŗę—©ęœŸčƒƒē™Œę¤œčØŗå”ä¼š'),
(107116, 'https://ror.org/02j1mt797', 'en', 1, 'https://ror.org/02j1mt797 Yokosuka General Hospital Uwamachi ęØŖé ˆč³€åø‚ē«‹ć†ć‚ć¾ć”ē—…é™¢'),
(107117, 'https://ror.org/02j2vw786', 'en', 1, 'https://ror.org/02j2vw786 Hiroshima Bunka Gakuen Two-Year College åŗƒå³¶ę–‡åŒ–å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(107118, 'https://ror.org/02j4p4h77', 'no_lang_code', 1, 'https://ror.org/02j4p4h77 MSD (Belgium)'),
(107119, 'https://ror.org/02j61yw88', 'en', 1, 'https://ror.org/02j61yw88 Aristotle University of Thessaloniki UniversitĆ© aristote de thessalonique Ī‘ĻĪ¹ĻƒĻ„ĪæĻ„Ī­Ī»ĪµĪ¹Īæ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(107120, 'https://ror.org/02j69wt57', 'no_lang_code', 1, 'https://ror.org/02j69wt57 PetroChina Southwest Oil and Gas Field Company (China) äø­å›½ēŸ³ę²¹č„æå—ę²¹ę°”ē”°åˆ†å…¬åø'),
(107121, 'https://ror.org/02j6c0d67', 'en', 1, 'https://ror.org/02j6c0d67 Kanagawa University ē„žå„ˆå·å¤§å­¦'),
(107122, 'https://ror.org/02j6qd180', 'es', 1, 'https://ror.org/02j6qd180 Asociación de Investigación Metalúrgica del Noroeste'),
(107123, 'https://ror.org/02j8sxk20', 'no_lang_code', 1, 'https://ror.org/02j8sxk20 Polymer Competence Center Leoben (Austria)'),
(107124, 'https://ror.org/02j9hdd14', 'en', 0, 'https://ror.org/02j9hdd14 Miyazaki Agricultural Research Institute å®®å“Žč¾²ę„­å®ŸéØ“å “'),
(107125, 'https://ror.org/02j9n6e35', 'no_lang_code', 1, 'https://ror.org/02j9n6e35 ALBA Synchrotron (Spain)'),
(107126, 'https://ror.org/02jbayz55', 'en', 1, 'https://ror.org/02jbayz55 University of Khartoum Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ų±Ų·ŁˆŁ…'),
(107127, 'https://ror.org/02jbv0t02', 'en', 1, 'https://ror.org/02jbv0t02 Laboratoire national lawrence-berkeley Lawrence Berkeley National Laboratory'),
(107128, 'https://ror.org/02jcd6j26', 'en', 1, 'https://ror.org/02jcd6j26 Caja Costarricense de Seguro Social Costa Rican Department of Social Security'),
(107129, 'https://ror.org/02je4dt23', 'en', 1, 'https://ror.org/02je4dt23 Hyogo Prefectural Harima-Himeji General Medical Center å…µåŗ«ēœŒē«‹ćÆć‚Šć¾å§«č·Æē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(107130, 'https://ror.org/02jgzjj54', 'en', 1, 'https://ror.org/02jgzjj54 Allegheny College'),
(107131, 'https://ror.org/02jhqqg57', 'en', 1, 'https://ror.org/02jhqqg57 Leibniz Institute for Analytical Sciences - ISAS Leibniz-Institut für Analytische Wissenschaften - ISAS'),
(107132, 'https://ror.org/02jj93j25', 'en', 1, 'https://ror.org/02jj93j25 Johoku Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗēŸ³å·å‹¤åŠ“č€…åŒ»ē™‚å”ä¼šåŸŽåŒ—ē—…é™¢'),
(107133, 'https://ror.org/02jjdwm75', 'en', 1, 'https://ror.org/02jjdwm75 IE Universidad IE University'),
(107134, 'https://ror.org/02jkz0640', 'tr', 1, 'https://ror.org/02jkz0640 Turkish Radio and Television Corporation Türkiye Radyo ve Televizyon Kurumu'),
(107135, 'https://ror.org/02jm1re07', 'en', 1, 'https://ror.org/02jm1re07 Catholic University of Eastern Africa'),
(107136, 'https://ror.org/02jm2sa52', 'en', 1, 'https://ror.org/02jm2sa52 The Gunma Prefectural Education Center ē¾¤é¦¬ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(107137, 'https://ror.org/02jnjb343', 'id', 1, 'https://ror.org/02jnjb343 Universitas Islam Negeri Antasari Banjarmasin'),
(107138, 'https://ror.org/02jp16h88', 'en', 1, 'https://ror.org/02jp16h88 Heart of Worcestershire College'),
(107139, 'https://ror.org/02jqc0m91', 'en', 1, 'https://ror.org/02jqc0m91 Seattle University Universidad de Seattle UniversitƩ de seattle'),
(107140, 'https://ror.org/02jqj7156', 'en', 1, 'https://ror.org/02jqj7156 George Mason University Universidad George Mason'),
(107141, 'https://ror.org/02jsxd428', 'en', 1, 'https://ror.org/02jsxd428 District University of BogotƔ Universidad Distrital Francisco JosƩ de Caldas'),
(107142, 'https://ror.org/02jvnqf51', 'no_lang_code', 1, 'https://ror.org/02jvnqf51 Cramer Fish Sciences (United States)'),
(107143, 'https://ror.org/02jwwk370', 'fr', 1, 'https://ror.org/02jwwk370 FƩdƩration de recherche en sciences mathƩmatiques de Paris centre'),
(107144, 'https://ror.org/02jx8ck11', 'en', 1, 'https://ror.org/02jx8ck11 Viral Hepatitis Research Foundation of Japan å…¬ē›Šč²”å›£ę³•äŗŗć‚¦ć‚¤ćƒ«ć‚¹č‚ē‚Žē ”ē©¶č²”å›£'),
(107145, 'https://ror.org/02jzg8331', 'en', 1, 'https://ror.org/02jzg8331 Okinawa Churaumi Aquarium ę²–ēø„ē¾Žć‚‰ęµ·ę°“ę—é¤Ø'),
(107146, 'https://ror.org/02k107z27', 'en', 1, 'https://ror.org/02k107z27 Yonemori Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē·‘ę³‰ä¼šē±³ē››ē—…é™¢'),
(107147, 'https://ror.org/02k3smh20', 'en', 1, 'https://ror.org/02k3smh20 Universidad de Kentucky University of Kentucky UniversitƩ du kentucky'),
(107148, 'https://ror.org/02k3v9512', 'en', 1, 'https://ror.org/02k3v9512 National Veterinary Research Institute'),
(107149, 'https://ror.org/02k5gp281', 'en', 1, 'https://ror.org/02k5gp281 Harokopio University of Athens Ī§Ī±ĻĪæĪŗĻŒĻ€ĪµĪ¹Īæ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(107150, 'https://ror.org/02k5swt12', 'pt', 1, 'https://ror.org/02k5swt12 Federal University of SĆ£o Paulo Universidade Federal de SĆ£o Paulo'),
(107151, 'https://ror.org/02k60m694', 'en', 1, 'https://ror.org/02k60m694 Japan Association For Inspection And Investigation Of Foods Including Fats And Oils å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ę²¹č„‚ę¤œęŸ»å”ä¼š'),
(107152, 'https://ror.org/02k7wn190', 'en', 1, 'https://ror.org/02k7wn190 University of Parma UniversitƠ degli Studi di Parma UniversitƤt Parma UniversitƩ de parme'),
(107153, 'https://ror.org/02kaerj47', 'en', 1, 'https://ror.org/02kaerj47 Gulf Medical University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ų§Ł„Ų·ŲØŁŠŲ©'),
(107154, 'https://ror.org/02kbmgc12', 'fr', 1, 'https://ror.org/02kbmgc12 AgroParisTech Paris Institute of Technology for Life, Food and Environmental Sciences'),
(107155, 'https://ror.org/02kcab747', 'es', 1, 'https://ror.org/02kcab747 Escuela Normal Superior del Estado State Higher Normal School'),
(107156, 'https://ror.org/02kdm5630', 'en', 1, 'https://ror.org/02kdm5630 Riphah International University'),
(107157, 'https://ror.org/02ke5e989', 'en', 1, 'https://ror.org/02ke5e989 Klintaps College of Health and Allied Sciences'),
(107158, 'https://ror.org/02ke8fw32', 'en', 1, 'https://ror.org/02ke8fw32 Shandong Agricultural University å±±äøœå†œäøšå¤§å­¦'),
(107159, 'https://ror.org/02kesvt12', 'en', 1, 'https://ror.org/02kesvt12 National University of Science and Technology'),
(107160, '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) åŽę¶¦å»ŗęē§‘ęŠ€å®˜ē½‘'),
(107161, 'https://ror.org/02kj3rm24', 'en', 1, 'https://ror.org/02kj3rm24 Wisconsin Geological and Natural History Survey'),
(107162, 'https://ror.org/02kjpb485', 'nl', 1, 'https://ror.org/02kjpb485 VieCuri Medisch Centrum'),
(107163, 'https://ror.org/02kknsa06', 'en', 1, 'https://ror.org/02kknsa06 Central University of Punjab ਪੰਜਾਬ ਕੇਂਦਰੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ਬਠਿੰਔਾ'),
(107164, 'https://ror.org/02kq26x23', 'en', 1, 'https://ror.org/02kq26x23 Hellenic Open University UniversitĆ© ouverte de grĆØce Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Ī‘Ī½ĪæĪ¹ĪŗĻ„ĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(107165, 'https://ror.org/02kqf1812', 'en', 1, 'https://ror.org/02kqf1812 Municipal Library of Prague MěstskĆ” knihovna v Praze'),
(107166, 'https://ror.org/02krvw113', 'en', 1, 'https://ror.org/02krvw113 Linux Foundation'),
(107167, 'https://ror.org/02kry3y94', 'es', 1, 'https://ror.org/02kry3y94 Tecnológico de Estudios Superiores de JocotitlÔn'),
(107168, 'https://ror.org/02ks3nr96', 'no_lang_code', 1, 'https://ror.org/02ks3nr96 Software Competence Center Hagenberg (Austria)'),
(107169, 'https://ror.org/02ksnjk05', 'en', 1, 'https://ror.org/02ksnjk05 Kyoto City Institute of Health and Environmental Sciences äŗ¬éƒ½åø‚č”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(107170, 'https://ror.org/02kswqa67', 'en', 1, 'https://ror.org/02kswqa67 Marmara University Marmara Ɯniversitesi Mərmərə Universiteti'),
(107171, 'https://ror.org/02kv1d786', 'en', 1, 'https://ror.org/02kv1d786 13 Aban Pharmacy ŲÆŲ§Ų±ŁˆŲ®Ų§Ł†Ł‡ Ł‡Ų§ŪŒ دانؓکده داروسازی دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تهران'),
(107172, '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'),
(107173, 'https://ror.org/02kw5st29', 'en', 1, 'https://ror.org/02kw5st29 Deggendorf Institute of Technology Technische Hochschule Deggendorf'),
(107174, 'https://ror.org/02kwq2y85', 'en', 1, 'https://ror.org/02kwq2y85 Mulawarman University Universitas Mulawarman'),
(107175, 'https://ror.org/02kx5fx64', 'en', 1, 'https://ror.org/02kx5fx64 Tochigi Prefectural Forestry Research Center ę ƒęœØēœŒęž—ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(107176, 'https://ror.org/02kycr729', 'id', 1, 'https://ror.org/02kycr729 Universitas Bhayangkara Surabaya'),
(107177, 'https://ror.org/02kyh9583', 'en', 1, 'https://ror.org/02kyh9583 Industrial University of Tyumen Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(107178, 'https://ror.org/02kyzv273', 'en', 1, 'https://ror.org/02kyzv273 University Clinical Centre Uniwersyteckie Centrum Kliniczne w Gdańsku'),
(107179, 'https://ror.org/02kzqn938', 'fr', 1, 'https://ror.org/02kzqn938 University of Lille UniversitƩ de Lille'),
(107180, 'https://ror.org/02m03y943', 'es', 1, 'https://ror.org/02m03y943 El Colegio de Tlaxcala, A. C.'),
(107181, 'https://ror.org/02m044a46', 'en', 1, 'https://ror.org/02m044a46 Fore School of Management'),
(107182, 'https://ror.org/02m27at14', 'pt', 1, 'https://ror.org/02m27at14 Qualiseg Engenharia e Gestão Lda (Portugal) Qualiseg Engineering and Management'),
(107183, 'https://ror.org/02m2rj159', 'en', 1, 'https://ror.org/02m2rj159 Pharmaceutical Sciences Research Center Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… دارویی'),
(107184, 'https://ror.org/02m32cr13', 'en', 1, 'https://ror.org/02m32cr13 International University of Business Agriculture and Technology ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø, ą¦•ą¦¾ą¦²ą¦šą¦¾ą¦° ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(107185, 'https://ror.org/02m457w49', 'es', 1, 'https://ror.org/02m457w49 Pontificia Universidad Católica Madre y Maestra'),
(107186, 'https://ror.org/02m68mv75', 'de', 1, 'https://ror.org/02m68mv75 Gesundheit Ɩsterreich'),
(107187, 'https://ror.org/02m6br644', 'en', 1, 'https://ror.org/02m6br644 Osaka Gyoumeikan Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗå¤§é˜Ŗęšę˜Žé¤Øå¤§é˜Ŗęšę˜Žé¤Øē—…é™¢'),
(107188, 'https://ror.org/02m6yfe37', 'en', 1, 'https://ror.org/02m6yfe37 Chuo Kikuu Huria cha Tanzania Open University of Tanzania'),
(107189, 'https://ror.org/02m7p2c22', 'de', 1, 'https://ror.org/02m7p2c22 Hochschule für Musik und Theater München University of Music and Theatre Munich'),
(107190, 'https://ror.org/02m86se66', 'en', 1, 'https://ror.org/02m86se66 ASLAB Science'),
(107191, 'https://ror.org/02m8e1r74', 'en', 1, 'https://ror.org/02m8e1r74 Institute of Management Sciences Peshawar');
INSERT INTO `rors` VALUES
(107192, 'https://ror.org/02m9md307', 'en', 1, 'https://ror.org/02m9md307 Ibaraki Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗčŒØåŸŽēœŒåŒ»åø«ä¼š'),
(107193, 'https://ror.org/02mb17771', 'es', 1, 'https://ror.org/02mb17771 Universidad Ricardo Palma'),
(107194, 'https://ror.org/02mb95055', 'en', 1, 'https://ror.org/02mb95055 Birkbeck, Prifysgol Llundain Birkbeck, University of London'),
(107195, 'https://ror.org/02mbd5571', 'en', 1, 'https://ror.org/02mbd5571 University of Bergamo UniversitƠ degli Studi di Bergamo UniversitƤt Bergamo UniversitƩ de bergame'),
(107196, 'https://ror.org/02mdzkw21', 'en', 1, 'https://ror.org/02mdzkw21 Japan Association For Advancement Of PHYTO-REGULATORS å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©čŖæēÆ€å‰¤ē ”ē©¶å”ä¼š'),
(107197, 'https://ror.org/02mg7se45', 'en', 1, 'https://ror.org/02mg7se45 Bauchi State University'),
(107198, 'https://ror.org/02mh8wx89', 'en', 1, 'https://ror.org/02mh8wx89 Tianjin Medical University å¤©ę“„åŒ»ē§‘å¤§å­¦'),
(107199, 'https://ror.org/02mjhg506', 'en', 1, 'https://ror.org/02mjhg506 Japanese Pharmacological Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬ē†å­¦ä¼š'),
(107200, 'https://ror.org/02mn5bt07', 'en', 1, 'https://ror.org/02mn5bt07 Shimonoseki Junior College äø‹é–¢ēŸ­ęœŸå¤§å­¦'),
(107201, 'https://ror.org/02mn89d43', 'en', 1, 'https://ror.org/02mn89d43 Nishio Municipal Hospital 脿尾市民病院'),
(107202, 'https://ror.org/02mpa7586', 'en', 1, 'https://ror.org/02mpa7586 Yamanashi Gakuin Junior College å±±ę¢Øå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(107203, 'https://ror.org/02mphcg88', 'en', 1, 'https://ror.org/02mphcg88 Patan Academy of Health Sciences पाटन ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(107204, 'https://ror.org/02mqrrm75', 'fr', 1, 'https://ror.org/02mqrrm75 UniversitƩ du QuƩbec en Abitibi-TƩmiscamingue'),
(107205, 'https://ror.org/02msan859', 'en', 1, 'https://ror.org/02msan859 Europa-UniversitƤt Viadrina Frankfurt European University Viadrina'),
(107206, 'https://ror.org/02msb5n36', 'en', 1, 'https://ror.org/02msb5n36 National University of Distance Education Universidad Nacional de Educación a Distancia'),
(107207, 'https://ror.org/02mtr7g38', 'en', 1, 'https://ror.org/02mtr7g38 Bandirma Onyedi Eylul Universitesi Bandırma Onyedi Eylül University'),
(107208, 'https://ror.org/02mw21745', 'en', 1, 'https://ror.org/02mw21745 Institut Ruđer BoÅ”ković Rudjer Boskovic Institute'),
(107209, 'https://ror.org/02my4wj17', 'en', 1, 'https://ror.org/02my4wj17 National College of Business Administration and Economics Ł†ŪŒŲ“Ł†Ł„ کالج آف بزنس Ų§ŪŒŚˆŁ…Ł†Ų³Ł¹Ų±ŪŒŲ“Ł† Ų§ŪŒŁ†Śˆ اکنامکس'),
(107210, 'https://ror.org/02n19a666', 'pt', 1, 'https://ror.org/02n19a666 Centro de Medicina de Reabilitação da Região Centro Rovisco Pais'),
(107211, 'https://ror.org/02n2tgg58', 'en', 1, 'https://ror.org/02n2tgg58 Communication University of China, Nanjing å—äŗ¬ä¼ åŖ’å­¦é™¢'),
(107212, 'https://ror.org/02n2wvw97', 'en', 1, 'https://ror.org/02n2wvw97 Specialized Hospital for Active Treatment of Children''s Diseases "Prof. Ivan Mitev" ЕАD-Sofia Дпециализирана болница за активно лечение по Гетски болести – проф.Иван ŠœŠøŃ‚ев ЕАД-Š”Š¾Ń„ŠøŃ'),
(107213, 'https://ror.org/02n3jsk50', 'pt', 1, 'https://ror.org/02n3jsk50 Centro de Estudos e Investigação em Saúde'),
(107214, 'https://ror.org/02n5c8f58', 'no_lang_code', 1, 'https://ror.org/02n5c8f58 Yamanashi Gakuin University 山梨学院大学'),
(107215, 'https://ror.org/02n5f2c60', 'en', 1, 'https://ror.org/02n5f2c60 Central University of Karnataka ą®•ą®°ąÆą®Øą®¾ą®Ÿą®• ą®®ą®¤ąÆą®¤ą®æą®Æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²•ą³†ą³•ą²‚ą²¦ą³ą²°ą²æą³•ą²Æ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(107216, 'https://ror.org/02n651896', 'en', 1, 'https://ror.org/02n651896 California State University, San Bernardino Universidad Estatal de California, San Bernardino'),
(107217, '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'),
(107218, 'https://ror.org/02n9c6w39', 'en', 1, 'https://ror.org/02n9c6w39 Hyogo Health Service Association å…¬ē›Šč²”å›£ę³•äŗŗå…µåŗ«ēœŒäŗˆé˜²åŒ»å­¦å”ä¼š'),
(107219, 'https://ror.org/02na8dn90', 'en', 1, 'https://ror.org/02na8dn90 Essen University Hospital UniversitƤtsklinikum Essen'),
(107220, 'https://ror.org/02nc1mn78', 'en', 1, 'https://ror.org/02nc1mn78 The Japanese Society of Nutrition and Dietetics ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ę „é¤Šę”¹å–„å­¦ä¼š'),
(107221, 'https://ror.org/02ndfsn03', 'en', 1, 'https://ror.org/02ndfsn03 PreŔovskÔ univerzita v PreŔove University of PreŔov'),
(107222, 'https://ror.org/02ndjfz59', 'no_lang_code', 1, 'https://ror.org/02ndjfz59 Flanders Make (Belgium)'),
(107223, 'https://ror.org/02necmg68', 'no_lang_code', 1, 'https://ror.org/02necmg68 Navrachana University'),
(107224, 'https://ror.org/02necr605', 'en', 1, 'https://ror.org/02necr605 Penang Institute'),
(107225, 'https://ror.org/02nf82x34', 'en', 1, 'https://ror.org/02nf82x34 Kagoshima Prefectural Institute for Environmental Research and Public Health é¹æå…å³¶ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(107226, 'https://ror.org/02ng2c866', 'pt', 1, 'https://ror.org/02ng2c866 Rede Interagencial de Informações para a Saúde'),
(107227, 'https://ror.org/02nhk3291', 'en', 1, 'https://ror.org/02nhk3291 National Center for Educational Technology äø­å¤®ē”µåŒ–ę•™č‚²é¦†'),
(107228, 'https://ror.org/02nhmp827', 'en', 1, 'https://ror.org/02nhmp827 Centro de Investigación en MatemÔticas Mathematics Research Center'),
(107229, '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'),
(107230, 'https://ror.org/02njs1t69', 'en', 1, 'https://ror.org/02njs1t69 Leitat Technological Center'),
(107231, 'https://ror.org/02nkrnd53', 'en', 1, 'https://ror.org/02nkrnd53 NSF Unidata'),
(107232, 'https://ror.org/02nkz4493', 'en', 1, 'https://ror.org/02nkz4493 Shahid Rajaee Teacher Training University دانؓگاه تربیت دبیر Ų“Ł‡ŪŒŲÆ رجایی'),
(107233, 'https://ror.org/02nmv9618', 'en', 1, 'https://ror.org/02nmv9618 Mount St. Mary''s University'),
(107234, 'https://ror.org/02nmynt66', 'en', 1, 'https://ror.org/02nmynt66 Colombian Air Force Fuerza AƩrea Colombiana'),
(107235, 'https://ror.org/02nn4s922', 'no_lang_code', 1, 'https://ror.org/02nn4s922 Pioneer Hi-Bred'),
(107236, 'https://ror.org/02nq4wt82', 'en', 1, 'https://ror.org/02nq4wt82 Hochschule Schmalkalden Schmalkalden University of Applied Sciences'),
(107237, 'https://ror.org/02nqrcj51', 'en', 1, 'https://ror.org/02nqrcj51 Vijayanagara Sri Krishnadevaraya University ą²µą²æą²œą²Æą²Øą²—ą²° ą²¶ą³ą²°ą³€ ą²•ą³ƒą²·ą³ą²£ą²¦ą³‡ą²µą²°ą²¾ą²Æ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(107238, 'https://ror.org/02nqtsx95', 'en', 1, 'https://ror.org/02nqtsx95 National Nuclear Center of the Republic of Kazakhstan ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠ“ŠµŃ€Š½Ń‹Š¹ центр Республики ŠšŠ°Š·Š°Ń…стан'),
(107239, 'https://ror.org/02nqy7n35', 'fr', 1, 'https://ror.org/02nqy7n35 Laboratoire Eau Environnement et SystĆØmes Urbain, Laboratoire Eau, Environnement et SystĆØmes Urbains'),
(107240, 'https://ror.org/02nt7a109', 'en', 1, 'https://ror.org/02nt7a109 AkÔdẹ́mì àbò asà Nàìjíríà Nigerian Defence Academy'),
(107241, 'https://ror.org/02nv42w72', 'en', 1, 'https://ror.org/02nv42w72 Online Computer Library Center'),
(107242, 'https://ror.org/02nv7yv05', 'de', 1, 'https://ror.org/02nv7yv05 Forschungszentrum Jülich Jülich Research Centre'),
(107243, 'https://ror.org/02nwsdc81', 'en', 1, 'https://ror.org/02nwsdc81 IEEE Photonics Society'),
(107244, 'https://ror.org/02nwvxz07', 'fr', 1, 'https://ror.org/02nwvxz07 Ɖcole nationale des ponts et chaussĆ©es'),
(107245, 'https://ror.org/02nyr4y94', 'en', 1, 'https://ror.org/02nyr4y94 Ramaiah Institute of Technology'),
(107246, 'https://ror.org/02p1gpn45', 'fr', 0, 'https://ror.org/02p1gpn45 HƓpital de l''Enfant-JƩsus'),
(107247, 'https://ror.org/02p1mzj94', 'en', 1, 'https://ror.org/02p1mzj94 National Statistics Center ē‹¬ē«‹č”Œę”æę³•äŗŗēµ±čØˆć‚»ćƒ³ć‚æćƒ¼'),
(107248, 'https://ror.org/02p2zte22', 'fr', 1, 'https://ror.org/02p2zte22 Centre de recherche Charles-Le Moyne'),
(107249, 'https://ror.org/02p3fnn23', 'en', 1, 'https://ror.org/02p3fnn23 Tokyo Online University ę±äŗ¬é€šäæ”å¤§å­¦'),
(107250, 'https://ror.org/02p3rmf37', 'en', 1, 'https://ror.org/02p3rmf37 Toyota Yahagi River Institute č±Šē”°åø‚ēŸ¢ä½œå·ē ”ē©¶ę‰€'),
(107251, 'https://ror.org/02p5hsv84', 'en', 1, 'https://ror.org/02p5hsv84 Coburg University of Applied Sciences Hochschule Coburg'),
(107252, 'https://ror.org/02p5wzp69', 'en', 1, 'https://ror.org/02p5wzp69 Iran Broadcasting University دانؓکده ŲµŲÆŲ§ و Ų³ŪŒŁ…Ų§'),
(107253, 'https://ror.org/02p77k626', 'en', 1, 'https://ror.org/02p77k626 University of Rome Tor Vergata UniversitĆ  degli Studi di Roma Tor Vergata'),
(107254, 'https://ror.org/02p804s75', 'en', 1, 'https://ror.org/02p804s75 Saint Leo University'),
(107255, 'https://ror.org/02p97w646', 'fr', 1, 'https://ror.org/02p97w646 Ɖcole Nationale Polytechnique d''Oran المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© المتعددة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖ ŲØŁˆŁ‡Ų±Ų§Ł† Ł…ŁˆŲ±ŁŠŲ³ Ų£ŁˆŲÆŲ§Ł†'),
(107256, 'https://ror.org/02pa24904', 'id', 1, 'https://ror.org/02pa24904 Universitas Garut'),
(107257, 'https://ror.org/02pad4n29', 'en', 1, 'https://ror.org/02pad4n29 Australia and New Zealand Sarcoma Association'),
(107258, 'https://ror.org/02panr271', 'en', 1, 'https://ror.org/02panr271 Max Planck Institute of Biophysics Max-Planck-Institut für Biophysik'),
(107259, 'https://ror.org/02pcb5m77', 'en', 1, 'https://ror.org/02pcb5m77 Guangdong Polytechnic Normal University å¹æäøœęŠ€ęœÆåøˆčŒƒå¤§å­¦'),
(107260, 'https://ror.org/02pdsdw78', 'de', 1, 'https://ror.org/02pdsdw78 Krankenhaus Barmherzige Brüder'),
(107261, 'https://ror.org/02pdzen98', 'en', 1, 'https://ror.org/02pdzen98 Alma College'),
(107262, 'https://ror.org/02pec9g39', 'en', 1, 'https://ror.org/02pec9g39 Iwate Prefectural Inland Fisheries Technology Center å²©ę‰‹ēœŒå†…ę°“é¢ę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(107263, 'https://ror.org/02pgb5q90', 'en', 1, 'https://ror.org/02pgb5q90 North Idaho College'),
(107264, 'https://ror.org/02pkt3s45', 'en', 1, 'https://ror.org/02pkt3s45 University of St. Thomas - Texas'),
(107265, 'https://ror.org/02pns0q27', 'pt', 1, 'https://ror.org/02pns0q27 Associação Nacional dos Procuradores e Advogados Públicos Federais'),
(107266, 'https://ror.org/02ppaa456', 'en', 1, 'https://ror.org/02ppaa456 Okinawa Prefectural Forest Resources Research Center ę²–ēø„ēœŒę£®ęž—č³‡ęŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(107267, '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'),
(107268, 'https://ror.org/02pwsw017', 'en', 1, 'https://ror.org/02pwsw017 GAIKER Centro Tecnológico GAIKER Technology Centre'),
(107269, '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'),
(107270, 'https://ror.org/02q38zd09', 'no_lang_code', 1, 'https://ror.org/02q38zd09 Stiftung Rehabilitation Heidelberg (Germany)'),
(107271, 'https://ror.org/02q3m6z23', 'sv', 1, 'https://ror.org/02q3m6z23 Region VƤrmland Kommunalfƶrbund'),
(107272, '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'),
(107273, 'https://ror.org/02q5h6807', 'en', 1, 'https://ror.org/02q5h6807 Federal University Oye Ekiti'),
(107274, 'https://ror.org/02q916a93', 'en', 1, 'https://ror.org/02q916a93 Japanese Society of Otorhinolaryngology-Head and Neck Surgery, Inc. (Japan) äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č€³é¼»å’½å–‰ē§‘é ­é øéƒØå¤–ē§‘å­¦ä¼š'),
(107275, 'https://ror.org/02q9f3a53', 'en', 1, 'https://ror.org/02q9f3a53 KPR Institute of Engineering and Technology'),
(107276, 'https://ror.org/02qahtf82', 'en', 0, 'https://ror.org/02qahtf82 Naval State University'),
(107277, 'https://ror.org/02qcq7v36', 'it', 1, 'https://ror.org/02qcq7v36 Istituto Zooprofilattico Sperimentale della Lombardia e dell''Emilia Romagna "Bruno Ubertini"'),
(107278, 'https://ror.org/02qg15b79', 'en', 1, 'https://ror.org/02qg15b79 Okinawa Institute of Science and Technology Graduate University ę²–ēø„ē§‘å­¦ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(107279, 'https://ror.org/02qgf3849', 'es', 1, 'https://ror.org/02qgf3849 Observatorio Colombiano de Ciencia y TecnologĆ­a'),
(107280, 'https://ror.org/02qgw5c67', 'no_lang_code', 1, 'https://ror.org/02qgw5c67 Manonmaniam Sundaranar University ą®®ą®©ąÆ‹ą®©ąÆą®®ą®£ą®æą®Æą®®ąÆ ą®šąÆą®ØąÆą®¤ą®°ą®©ą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(107281, 'https://ror.org/02qhhm014', 'en', 1, 'https://ror.org/02qhhm014 Wakayama Prefectural Forestry Experiment Station å’Œę­Œå±±ēœŒęž—ę„­č©¦éØ“å “'),
(107282, 'https://ror.org/02qj9qr34', 'en', 1, 'https://ror.org/02qj9qr34 Ohio Wesleyan University Universidad Wesleyana de Ohio UniversitƩ wesleyenne de l''ohio'),
(107283, 'https://ror.org/02qjp0t33', 'pt', 1, 'https://ror.org/02qjp0t33 Centro de Estudos de Comunicação e Sociedade'),
(107284, 'https://ror.org/02qjrjx09', 'en', 1, 'https://ror.org/02qjrjx09 University of Cyprus Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(107285, 'https://ror.org/02qjtnr91', 'en', 1, 'https://ror.org/02qjtnr91 Elizade University'),
(107286, 'https://ror.org/02qmsy927', 'pt', 1, 'https://ror.org/02qmsy927 Grupo Lobo'),
(107287, 'https://ror.org/02qnf3n86', 'ms', 1, 'https://ror.org/02qnf3n86 Universiti Brunei Darussalam University of Brunei Darussalam'),
(107288, 'https://ror.org/02qnnz951', 'en', 1, 'https://ror.org/02qnnz951 University of Mons UniversitƩ de Mons'),
(107289, 'https://ror.org/02qnq4988', 'en', 1, 'https://ror.org/02qnq4988 Japan Center for Regional Development äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(107290, 'https://ror.org/02qp25a50', 'en', 1, 'https://ror.org/02qp25a50 Brandon University'),
(107291, 'https://ror.org/02qp3tb03', 'en', 1, 'https://ror.org/02qp3tb03 ClĆ­nica Mayo Mayo Clinic'),
(107292, 'https://ror.org/02qrdc062', 'en', 1, 'https://ror.org/02qrdc062 Peoria campus of the University of Illinois System'),
(107293, 'https://ror.org/02qs41y18', 'en', 1, 'https://ror.org/02qs41y18 GeoEcoMar Institutul Național de Cercetare-Dezvoltare pentru Geologie și Geoecologie Marină'),
(107294, 'https://ror.org/02qte9q33', 'en', 1, 'https://ror.org/02qte9q33 Stavangerin yliopisto University of Stavanger'),
(107295, 'https://ror.org/02qwadn23', 'en', 1, 'https://ror.org/02qwadn23 Buenos Aires Institute of Technology Instituto Tecnológico de Buenos Aires'),
(107296, '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'),
(107297, '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'),
(107298, 'https://ror.org/02r1pzn16', 'fr', 0, 'https://ror.org/02r1pzn16 HƓpital Saint-FranƧois d''Assise'),
(107299, 'https://ror.org/02r1xtk47', 'es', 1, 'https://ror.org/02r1xtk47 Corporación Universitaria del Meta'),
(107300, 'https://ror.org/02r472m60', 'en', 1, 'https://ror.org/02r472m60 Chiba Prefectural Livestock Research Center åƒč‘‰ēœŒē•œē”£ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(107301, 'https://ror.org/02r59nq91', 'es', 1, 'https://ror.org/02r59nq91 Fundación La Salle de Ciencias Naturales'),
(107302, 'https://ror.org/02r6pfc06', 'en', 1, 'https://ror.org/02r6pfc06 Nnamdi Azikiwe University'),
(107303, 'https://ror.org/02r85r585', 'en', 1, 'https://ror.org/02r85r585 Institute of Rural Development Planning'),
(107304, 'https://ror.org/02r91my29', 'en', 1, 'https://ror.org/02r91my29 University of Kelaniya களனி ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą¶šą·ą·…ą¶«ą·’ą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(107305, 'https://ror.org/02rb21j89', 'en', 1, 'https://ror.org/02rb21j89 Indian Institute of Science Education and Research, Bhopal ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤­ą„‹ą¤Ŗą¤¾ą¤²'),
(107306, 'https://ror.org/02rc97e94', 'en', 1, 'https://ror.org/02rc97e94 University of Calabria UniversitƠ della Calabria UniversitƤt Kalabrien UniversitƩ de la calabre'),
(107307, 'https://ror.org/02rdy2081', 'en', 1, 'https://ror.org/02rdy2081 Austrian Atherosclerosis Society Ɩsterreichischen Atherosklerosegesellschaft'),
(107308, 'https://ror.org/02rjj7s91', 'en', 1, 'https://ror.org/02rjj7s91 University Clinical Centre Maribor'),
(107309, 'https://ror.org/02rmd1t30', 'en', 1, 'https://ror.org/02rmd1t30 Babeș-Bolyai University Babeș-Bolyai UniversitƤt Babeș–Bolyai TudomĆ”nyegyetem Universitatea Babeș-Bolyai'),
(107310, 'https://ror.org/02rmk5x23', 'fr', 1, 'https://ror.org/02rmk5x23 FƩdƩration de recherche PLAS@PAR'),
(107311, 'https://ror.org/02rrajq79', 'es', 1, 'https://ror.org/02rrajq79 Universidad Tecnologica de Tlaxcala'),
(107312, 'https://ror.org/02rsjh069', 'en', 1, 'https://ror.org/02rsjh069 Carilion Clinic'),
(107313, 'https://ror.org/02rsmd323', 'en', 1, 'https://ror.org/02rsmd323 Koga Red Cross Hospital čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾å¤ę²³čµ¤åå­—ē—…é™¢'),
(107314, 'https://ror.org/02rsnav77', 'en', 1, 'https://ror.org/02rsnav77 National University of San Juan Universidad Nacional de San Juan'),
(107315, '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'),
(107316, 'https://ror.org/02rvr7q96', 'en', 1, 'https://ror.org/02rvr7q96 Osaka College of Music 大阪音愽大学'),
(107317, 'https://ror.org/02rw39616', 'en', 1, 'https://ror.org/02rw39616 Jawaharlal Nehru Technological University Anantapur ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ సాంకేతిక ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(107318, 'https://ror.org/02rymmk58', 'en', 1, 'https://ror.org/02rymmk58 Nuvance Health'),
(107319, 'https://ror.org/02ryrf141', 'en', 1, 'https://ror.org/02ryrf141 TrĘ°į»ng ĐẔi hį»c Văn Lang'),
(107320, 'https://ror.org/02rzqza52', 'en', 1, 'https://ror.org/02rzqza52 University Ferhat Abbas of Setif UniversitĆ© Ferhat Abbas de SĆ©tif Ų¬Ų§Ł…Ų¹Ų© فرحات Ų¹ŲØŲ§Ų³'),
(107321, 'https://ror.org/02rzxtq06', 'no_lang_code', 1, 'https://ror.org/02rzxtq06 Shijonawate Gakuen University å››ę¢ē•·å­¦åœ’å¤§å­¦'),
(107322, 'https://ror.org/02s08xt61', 'en', 1, 'https://ror.org/02s08xt61 University of the Highlands and Islands'),
(107323, 'https://ror.org/02s2acn37', 'no_lang_code', 1, 'https://ror.org/02s2acn37 Kitware (United States)'),
(107324, 'https://ror.org/02s376052', 'fr', 1, 'https://ror.org/02s376052 Swiss Federal Institute of Technology in Lausanne Ɖcole Polytechnique FĆ©dĆ©rale de Lausanne'),
(107325, 'https://ror.org/02s466x84', 'en', 1, 'https://ror.org/02s466x84 Arcada University of Applied Sciences Arcada – Nylands svenska yrkeshƶgskola'),
(107326, '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'),
(107327, 'https://ror.org/02s7j7z43', 'en', 1, 'https://ror.org/02s7j7z43 Institute of Nano Science and Technology ą¤Øą„ˆą¤Øą„‹ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(107328, 'https://ror.org/02s82rs08', 'en', 1, 'https://ror.org/02s82rs08 Konya Technical University Konya Teknik Üniversitesi'),
(107329, 'https://ror.org/02s9jxg24', 'en', 1, 'https://ror.org/02s9jxg24 University of Zenica Univerzitet u Zenici Универзитет у Зеници'),
(107330, 'https://ror.org/02sb4gh56', 'en', 1, 'https://ror.org/02sb4gh56 Japan Radiological Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»å­¦ę”¾å°„ē·šå­¦ä¼š'),
(107331, 'https://ror.org/02sgr3228', 'es', 1, 'https://ror.org/02sgr3228 Instituto Nacional de Ciencias Penales National Institute of Criminal Science'),
(107332, 'https://ror.org/02shjm398', 'es', 1, 'https://ror.org/02shjm398 Universidad Nacional Intercultural de la AmazonĆ­a'),
(107333, 'https://ror.org/02shwmm76', 'en', 1, 'https://ror.org/02shwmm76 Center for Unmanned Aircraft Systems'),
(107334, 'https://ror.org/02sj9tq04', 'en', 1, 'https://ror.org/02sj9tq04 Akademia Morska w Szczecinie Maritime University of Szczecin'),
(107335, 'https://ror.org/02skb4169', 'en', 1, 'https://ror.org/02skb4169 Huayun Sounding Meteorological Technology Co. Ltd., Huayun Sounding Meteorological Technology Co. Ltd. (China) åŽäŗ‘å‡č¾¾ļ¼ˆåŒ—äŗ¬ļ¼‰ę°”č±”ē§‘ęŠ€ęœ‰é™č“£ä»»å…¬åø'),
(107336, 'https://ror.org/02snrrd92', 'en', 1, 'https://ror.org/02snrrd92 Mie Prefecture Livestock Research Institute äø‰é‡ēœŒē•œē”£ē ”ē©¶ę‰€'),
(107337, 'https://ror.org/02spwfy20', 'en', 1, 'https://ror.org/02spwfy20 Nagoya Tokushukai General Hospital åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šåå¤å±‹å¾³ę“²ä¼šē·åˆē—…é™¢'),
(107338, 'https://ror.org/02sr8jt85', 'en', 1, 'https://ror.org/02sr8jt85 Shinawatra University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŠąø“ąø™ąø§ąø±ąø•ąø£'),
(107339, 'https://ror.org/02srmp066', 'en', 1, 'https://ror.org/02srmp066 Suzuki Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚¹ć‚ŗć‚­č²”å›£'),
(107340, 'https://ror.org/02ssfnt75', 'no_lang_code', 1, 'https://ror.org/02ssfnt75 Accent Pro 2000 (Romania)'),
(107341, 'https://ror.org/02st0pe74', 'en', 1, 'https://ror.org/02st0pe74 The Sasakawa Peace Foundation å…¬ē›Šč²”å›£ę³•äŗŗē¬¹å·å¹³å’Œč²”å›£'),
(107342, 'https://ror.org/02svf5f06', 'en', 1, 'https://ror.org/02svf5f06 Medi-Caps University ą¤®ą„‡ą¤”ą„€-ą¤•ą„ˆą¤Ŗą„ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(107343, 'https://ror.org/02swm2f23', 'en', 1, 'https://ror.org/02swm2f23 Tokyo Metropolitan Park Association å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬éƒ½å…¬åœ’å”ä¼š'),
(107344, 'https://ror.org/02sxjwh33', 'fr', 1, 'https://ror.org/02sxjwh33 Centre Occitanie-Toulouse'),
(107345, 'https://ror.org/02sygzf32', 'en', 1, 'https://ror.org/02sygzf32 Hokkaido Center Of Environmental Sciences & Technology äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“ē’°å¢ƒē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(107346, 'https://ror.org/02t0k0832', 'fr', 1, 'https://ror.org/02t0k0832 UniversitƩ de Mayotte'),
(107347, 'https://ror.org/02t1m5632', 'en', 1, 'https://ror.org/02t1m5632 Japan Pharmaceutical Manufacturers Association ę—„ęœ¬č£½č–¬å·„ę„­å”ä¼š'),
(107348, 'https://ror.org/02t3ccg55', 'en', 1, 'https://ror.org/02t3ccg55 Takeda Hospital åŒ»ē™‚ę³•äŗŗč²”å›£åŗ·ē”Ÿä¼šę­¦ē”°ē—…é™¢'),
(107349, 'https://ror.org/02t3hwk28', 'en', 1, 'https://ror.org/02t3hwk28 MineraLogic LLC, MineraLogic LLC (United States)'),
(107350, 'https://ror.org/02t4mp811', 'en', 1, 'https://ror.org/02t4mp811 Japan Bioindustry Association äø€čˆ¬č²”å›£ę³•äŗŗćƒć‚¤ć‚Ŗć‚¤ćƒ³ćƒ€ć‚¹ćƒˆćƒŖćƒ¼å”ä¼š'),
(107351, 'https://ror.org/02t5r1875', 'en', 1, 'https://ror.org/02t5r1875 Inistiitiyuutii Qorannoo Qonna Oromiyaa Oromia Agricultural Research Institute į‹ØįŠ¦įˆ®įˆšį‹« įŒį‰„įˆ­įŠ“ įˆįˆ­įˆįˆ­ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(107352, 'https://ror.org/02t5tv480', 'en', 1, 'https://ror.org/02t5tv480 Aomori Prefectural Nuclear Power Safety Center é’ę£®ēœŒåŽŸå­åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(107353, 'https://ror.org/02t6p0w04', 'en', 1, 'https://ror.org/02t6p0w04 National Association for Filipino Psychology, National Association for Sikolohiyang Pilipino Pambansang Samahan sa Sikolohiyang Pilipino'),
(107354, 'https://ror.org/02t6w9483', 'en', 1, 'https://ror.org/02t6w9483 U.S. Air Force Research Laboratory AFWERX Directorate'),
(107355, 'https://ror.org/02t7c3b83', 'en', 1, 'https://ror.org/02t7c3b83 Sino-Africa Joint Research Center äø­å›½ē§‘å­¦é™¢äø­éžč”åˆē ”ē©¶äø­åæƒ'),
(107356, 'https://ror.org/02t8qyv80', 'en', 1, 'https://ror.org/02t8qyv80 Kochi Prefectural Deep Seawater Laboratory é«˜ēŸ„ēœŒęµ·ę“‹ę·±å±¤ę°“ē ”ē©¶ę‰€'),
(107357, 'https://ror.org/02t989p36', 'en', 1, 'https://ror.org/02t989p36 Chihaya Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šåƒę—©ē—…é™¢'),
(107358, 'https://ror.org/02t9b8973', 'en', 1, 'https://ror.org/02t9b8973 Centria University of Applied Sciences Centria ammattikorkeakoulu Centria yrkeshƶgskola'),
(107359, 'https://ror.org/02ta2q948', 'en', 1, 'https://ror.org/02ta2q948 The Society of Materials Science, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęę–™å­¦ä¼š'),
(107360, 'https://ror.org/02tcf7a68', 'fr', 1, 'https://ror.org/02tcf7a68 Centre Hospitalier Universitaire de Clermont-Ferrand'),
(107361, 'https://ror.org/02tdf3n85', 'en', 1, 'https://ror.org/02tdf3n85 Dordt University'),
(107362, 'https://ror.org/02tdtzx53', 'en', 1, 'https://ror.org/02tdtzx53 Sainsbury Laboratory'),
(107363, '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'),
(107364, 'https://ror.org/02tne2741', 'en', 1, 'https://ror.org/02tne2741 Adamas University ą¦…ą§ą¦Æą¦¾ą¦”ą¦¾ą¦®ą¦¾ą¦ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(107365, 'https://ror.org/02tpw8g37', 'en', 1, 'https://ror.org/02tpw8g37 Institute of Nuclear Physics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ физики ЯГролық физика ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(107366, 'https://ror.org/02tqf3106', 'en', 1, 'https://ror.org/02tqf3106 Nishichita General Hospital å…¬ē«‹č„æēŸ„å¤šē·åˆē—…é™¢'),
(107367, 'https://ror.org/02tqzbq72', 'en', 1, 'https://ror.org/02tqzbq72 Saitama Cooperative Hospital åŒ»ē™‚ē”Ÿå”ć•ć„ćŸć¾ē”Ÿę“»å”åŒēµ„åˆåŸ¼ēŽ‰å”åŒē—…é™¢'),
(107368, 'https://ror.org/02tvdnz86', 'en', 1, 'https://ror.org/02tvdnz86 Dulaty University М.Š„.Š”ŃƒŠ»Š°Ń‚Šø атынГағы Тараз өңірлік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(107369, 'https://ror.org/02twrxy18', 'en', 1, 'https://ror.org/02twrxy18 Cancer Research Horizons'),
(107370, 'https://ror.org/02txfnf15', 'en', 1, 'https://ror.org/02txfnf15 Yanshan University 燕山大学'),
(107371, 'https://ror.org/02tywpz50', 'es', 1, 'https://ror.org/02tywpz50 Instituto Tecnológico José Mario Molina Pasquel y Henrique'),
(107372, 'https://ror.org/02tzncp91', 'en', 1, 'https://ror.org/02tzncp91 Kitakyushu General Hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗåŒ—ä¹å·žē—…é™¢åŒ—ä¹å·žē·åˆē—…é™¢'),
(107373, 'https://ror.org/02tzt1z19', 'en', 1, 'https://ror.org/02tzt1z19 The Institute of Electrical Engineers of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—å­¦ä¼š'),
(107374, 'https://ror.org/02v2sn747', 'en', 1, 'https://ror.org/02v2sn747 IFTM University'),
(107375, 'https://ror.org/02v30xn43', 'en', 1, 'https://ror.org/02v30xn43 Kagawa Forestry Center é¦™å·ēœŒę£®ęž—ć‚»ćƒ³ć‚æćƒ¼'),
(107376, 'https://ror.org/02v3vzd60', 'en', 1, 'https://ror.org/02v3vzd60 Chilean Institute for Disaster Resilience Instituto para la Resiliencia ante Desastres'),
(107377, 'https://ror.org/02v4dqa55', 'en', 1, 'https://ror.org/02v4dqa55 Al-Qalam University for Humanities and Applied Sciences Ų¬Ų§Ł…Ų¹Ų© القلم Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ł†Ų³Ų§Ł†ŁŠŲ© ŁˆŲ§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(107378, 'https://ror.org/02v55pn13', 'en', 1, 'https://ror.org/02v55pn13 The Institute of Environmental Toxicology äø€čˆ¬č²”å›£ę³•äŗŗę®‹ē•™č¾²č–¬ē ”ē©¶ę‰€'),
(107379, 'https://ror.org/02v6kpv12', 'fr', 1, 'https://ror.org/02v6kpv12 UniversitƩ Paul-Sabatier, UniversitƩ Toulouse III - Paul Sabatier'),
(107380, 'https://ror.org/02v7pt441', 'en', 1, 'https://ror.org/02v7pt441 Pramukhswami Medical College'),
(107381, 'https://ror.org/02v806644', 'id', 1, 'https://ror.org/02v806644 Universitas Suryakancana'),
(107382, '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'),
(107383, 'https://ror.org/02v91gy68', 'en', 1, 'https://ror.org/02v91gy68 Polytechnic University of Timişoara Universitatea Politehnica din Timișoara'),
(107384, 'https://ror.org/02v9z1h82', 'en', 1, 'https://ror.org/02v9z1h82 Manufacturing Technology Association of Biologics ę¬”äø–ä»£ćƒć‚¤ć‚ŖåŒ»č–¬å“č£½é€ ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(107385, 'https://ror.org/02vbn8n59', 'en', 1, 'https://ror.org/02vbn8n59 Khmelnytsky University of Management and Law Š„ŠœŠ•Š›Š¬ŠŠ˜Š¦Š¬ŠšŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢ Š£ŠŸŠ ŠŠ’Š›Š†ŠŠŠÆ ТА ŠŸŠ ŠŠ’Š Š†ŠœŠ•ŠŠ† Š›Š•ŠžŠŠ†Š”Š Š®Š—Š¬ŠšŠžŠ’Š'),
(107386, 'https://ror.org/02vdhwb89', 'en', 1, 'https://ror.org/02vdhwb89 Srinath University'),
(107387, 'https://ror.org/02vdyab02', 'en', 1, 'https://ror.org/02vdyab02 NUCLEAR Safety Technology Center å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›å®‰å…ØęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(107388, 'https://ror.org/02veezx93', 'no_lang_code', 1, 'https://ror.org/02veezx93 Transport Research Laboratory Transport Research Laboratory (United Kingdom)'),
(107389, 'https://ror.org/02vgk5x44', 'en', 1, 'https://ror.org/02vgk5x44 Somerset College'),
(107390, 'https://ror.org/02vje2a46', 'en', 1, 'https://ror.org/02vje2a46 Iwate Prefectural Ofunato Hospital å²©ę‰‹ēœŒē«‹å¤§čˆ¹ęø”ē—…é™¢'),
(107391, 'https://ror.org/02vk0qj37', 'en', 1, 'https://ror.org/02vk0qj37 Washington College'),
(107392, 'https://ror.org/02vkcx287', 'pt', 1, 'https://ror.org/02vkcx287 SOLFARCOS - Pharmaceutical and Cosmetic Solutions Ltd Solfarcos LDA (Portugal)'),
(107393, 'https://ror.org/02vqddp65', 'fr', 1, 'https://ror.org/02vqddp65 UniversitƩ Mustapha Stambouli de Mascara'),
(107394, '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'),
(107395, 'https://ror.org/02vvaeh07', 'en', 1, 'https://ror.org/02vvaeh07 Iwate Prefectural Nihohe Hospital å²©ę‰‹ēœŒē«‹äŗŒęˆøē—…é™¢'),
(107396, 'https://ror.org/02vwzrd76', 'en', 1, 'https://ror.org/02vwzrd76 Thomas Jefferson National Accelerator Facility'),
(107397, 'https://ror.org/02vyesn05', 'en', 1, 'https://ror.org/02vyesn05 Abashiri-Kosei General Hospital JAåŒ—ęµ·é“åŽšē”Ÿé€£ē¶²čµ°åŽšē”Ÿē—…é™¢'),
(107398, 'https://ror.org/02w0sqd02', 'es', 1, 'https://ror.org/02w0sqd02 Juarez University of the State of Durango Universidad JuƔrez del Estado de Durango'),
(107399, 'https://ror.org/02w101243', 'pt', 1, 'https://ror.org/02w101243 Guarda Nacional Republicana'),
(107400, 'https://ror.org/02w32z542', 'en', 1, 'https://ror.org/02w32z542 African Institute for Mathematical Sciences'),
(107401, 'https://ror.org/02w5qgd07', 'es', 1, 'https://ror.org/02w5qgd07 Fundacion Universitaria Inpahu'),
(107402, 'https://ror.org/02w69g525', 'de', 1, 'https://ror.org/02w69g525 Bundesanstalt Technisches Hilfswerk'),
(107403, 'https://ror.org/02w7mv457', 'pt', 1, 'https://ror.org/02w7mv457 Sociedade Brasileira de Estudos em Sexualidade Humana'),
(107404, 'https://ror.org/02w8ba206', 'en', 1, 'https://ror.org/02w8ba206 Galgotias University'),
(107405, 'https://ror.org/02w9cdh50', 'en', 1, 'https://ror.org/02w9cdh50 Indian Institute of Information Technology and Management, Kerala ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‡ą¤°ą¤²'),
(107406, 'https://ror.org/02wb73912', 'en', 1, 'https://ror.org/02wb73912 California Academy of Sciences'),
(107407, 'https://ror.org/02wcpmn42', 'en', 1, 'https://ror.org/02wcpmn42 Artvin Coruh University Artvin Ƈoruh Ɯniversitesi'),
(107408, 'https://ror.org/02wefvw09', 'pt', 0, 'https://ror.org/02wefvw09 Serviço de Intervenção nos Comportamentos Aditivos e nas Dependências'),
(107409, 'https://ror.org/02wget071', 'en', 1, 'https://ror.org/02wget071 Taiwan Agricultural Research Institute Council of Agriculture, Executive Yuan č”Œę”æé™¢č¾²ę„­å§”å“”ęœƒč¾²ę„­č©¦é©—ę‰€'),
(107410, 'https://ror.org/02wj89n04', 'fr', 1, 'https://ror.org/02wj89n04 Ibn TofaĆÆl University UniversitĆ© Ibn-Tofail Ų¬Ų§Ł…Ų¹Ų© ابن Ų·ŁŁŠŁ„'),
(107411, 'https://ror.org/02wpry525', 'id', 1, 'https://ror.org/02wpry525 Universitas Mahasaraswati Denpasar'),
(107412, 'https://ror.org/02wq20039', 'pt', 1, 'https://ror.org/02wq20039 Gil Vicente Football Club Gil Vicente Futebol Clube Futebol SDUQ Lda (Portugal)'),
(107413, 'https://ror.org/02wqt4811', 'en', 1, 'https://ror.org/02wqt4811 Fukushima Forestry Research Center ē¦å³¶ēœŒęž—ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(107414, 'https://ror.org/02ws0hm40', 'en', 1, 'https://ror.org/02ws0hm40 Telecom Engineering Center äø€čˆ¬č²”å›£ę³•äŗŗćƒ†ćƒ¬ć‚³ćƒ ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ć‚»ćƒ³ć‚æćƒ¼'),
(107415, 'https://ror.org/02ws1xc11', 'ca', 1, 'https://ror.org/02ws1xc11 Jaume I University Universidad Jaime I Universitat Jaume I'),
(107416, 'https://ror.org/02wt02e97', 'en', 1, 'https://ror.org/02wt02e97 River Center Of Hokkaido äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“ę²³å·č²”å›£'),
(107417, 'https://ror.org/02wwrqj12', 'en', 1, 'https://ror.org/02wwrqj12 Aga Khan University'),
(107418, 'https://ror.org/02x0yjy88', 'en', 1, 'https://ror.org/02x0yjy88 Research Institute of Urbanization å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚åŒ–ē ”ē©¶å…¬å®¤'),
(107419, 'https://ror.org/02x2akc96', 'en', 1, 'https://ror.org/02x2akc96 Washington State Department of Health'),
(107420, 'https://ror.org/02x2fbb57', 'es', 1, 'https://ror.org/02x2fbb57 Red Española de Supercomputación'),
(107421, 'https://ror.org/02x559v43', 'en', 1, 'https://ror.org/02x559v43 UniversitƩ de walla walla Walla Walla University'),
(107422, 'https://ror.org/02x6dxy73', 'en', 1, 'https://ror.org/02x6dxy73 Kochi Professional University of Rehabilitation é«˜ēŸ„ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(107423, 'https://ror.org/02xa0x739', 'en', 1, 'https://ror.org/02xa0x739 Aichi Children''s Health and Medical Center ć‚ć„ć”å°å…äæå„åŒ»ē™‚ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(107424, 'https://ror.org/02xawj266', 'en', 1, 'https://ror.org/02xawj266 Central Michigan University UniversitƩ de central michigan'),
(107425, 'https://ror.org/02xbhbx68', 'en', 1, 'https://ror.org/02xbhbx68 D. Serikbayev East Kazakhstan State Technical University Восточно-ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. Дерикбаева Š”Ó™ŃƒŠ»ŠµŃ‚ Дерікбаев атынГағы Шығыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ мемлекеттік техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(107426, 'https://ror.org/02xe2fg84', 'en', 1, 'https://ror.org/02xe2fg84 Shoolini University'),
(107427, 'https://ror.org/02xh9a707', 'en', 1, 'https://ror.org/02xh9a707 Admiral Makarov State University of Maritime and Inland Shipping Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ морского Šø речного флота имени аГмирала Š”.Šž. ŠœŠ°ŠŗŠ°Ń€Š¾Š²Š°'),
(107428, 'https://ror.org/02xjwnh68', 'en', 1, 'https://ror.org/02xjwnh68 National Sanatorium Kikuchi Keifuen å›½ē«‹ē™‚é¤Šę‰€čŠę± ęµę„“åœ’'),
(107429, 'https://ror.org/02xp9d883', 'en', 1, 'https://ror.org/02xp9d883 Banco de MƩxico Bank of Mexico'),
(107430, 'https://ror.org/02xpkhc07', 'en', 1, 'https://ror.org/02xpkhc07 University of Wisconsin–Platteville UniversitĆ© du Wisconsin–Platteville'),
(107431, 'https://ror.org/02xsh5r57', 'en', 1, 'https://ror.org/02xsh5r57 Leeds Beckett University'),
(107432, 'https://ror.org/02xtwpk10', 'es', 1, 'https://ror.org/02xtwpk10 Universidad Externado de Colombia'),
(107433, 'https://ror.org/02xvc5r05', 'en', 1, 'https://ror.org/02xvc5r05 Government of Victoria'),
(107434, 'https://ror.org/02xw5dc73', 'en', 1, 'https://ror.org/02xw5dc73 Facility for Airborne Atmospheric Measurements'),
(107435, 'https://ror.org/02xyxvc90', 'de', 1, 'https://ror.org/02xyxvc90 VRVis GmbH, VRVis GmbH (Austria)'),
(107436, 'https://ror.org/02y0rxk19', 'en', 1, 'https://ror.org/02y0rxk19 Nanjing University of Information Science and Technology å—äŗ¬äæ”ęÆå·„ēØ‹å¤§å­¦'),
(107437, 'https://ror.org/02y2cxp25', 'en', 1, 'https://ror.org/02y2cxp25 HELP University Universiti HELP'),
(107438, 'https://ror.org/02y553197', 'en', 1, 'https://ror.org/02y553197 National Institute of Technology Raipur ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(107439, 'https://ror.org/02y7p0749', 'pt', 1, 'https://ror.org/02y7p0749 Ministry of Health Ministério da Saúde'),
(107440, 'https://ror.org/02y8cd205', 'en', 1, 'https://ror.org/02y8cd205 Systems Research & Development Institute of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗē ”ē©¶ę‰€'),
(107441, 'https://ror.org/02y91h784', 'pt', 1, 'https://ror.org/02y91h784 7Degrees 7Graus (Portugal)'),
(107442, 'https://ror.org/02y9m3311', 'en', 0, 'https://ror.org/02y9m3311 Institute of Play'),
(107443, 'https://ror.org/02yahyh51', 'en', 1, 'https://ror.org/02yahyh51 Matsuyama Junior College ę¾å±±ēŸ­ęœŸå¤§å­¦'),
(107444, 'https://ror.org/02ye9h922', 'en', 1, 'https://ror.org/02ye9h922 National SzƩchƩnyi Library OrszƔgos SzƩchƩnyi KƶnyvtƔr'),
(107445, 'https://ror.org/02yedhf35', 'en', 1, 'https://ror.org/02yedhf35 Shiraumegakuen College ē™½ę¢…å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(107446, 'https://ror.org/02yfsfh77', 'en', 1, 'https://ror.org/02yfsfh77 China National Botanical Garden å›½å®¶ę¤ē‰©å›­'),
(107447, 'https://ror.org/02yfv7f42', 'de', 1, 'https://ror.org/02yfv7f42 Land Salzburg State of Salzburg'),
(107448, 'https://ror.org/02yghbg68', 'en', 1, 'https://ror.org/02yghbg68 Veer Surendra Sai University of Technology'),
(107449, 'https://ror.org/02ypa8k59', 'en', 1, 'https://ror.org/02ypa8k59 Thi Qar University Ų¬Ų§Ł…Ų¹Ų© ذي قار'),
(107450, 'https://ror.org/02yps9f67', 'en', 1, 'https://ror.org/02yps9f67 New Europe College'),
(107451, 'https://ror.org/02yr3f298', 'es', 1, 'https://ror.org/02yr3f298 Foundation University of Health Sciences Fundación Universitaria de Ciencias de la Salud'),
(107452, 'https://ror.org/02yrs2n53', 'en', 1, 'https://ror.org/02yrs2n53 Constructor University'),
(107453, 'https://ror.org/02yta1w47', 'en', 1, 'https://ror.org/02yta1w47 Palmer College of Chiropractic'),
(107454, 'https://ror.org/02ytfpp52', 'id', 1, 'https://ror.org/02ytfpp52 Universitas PGRI Palembang'),
(107455, 'https://ror.org/02ytrz124', 'en', 1, 'https://ror.org/02ytrz124 LaserNetUS'),
(107456, 'https://ror.org/02yv0b554', 'fr', 1, 'https://ror.org/02yv0b554 Centre d’Economie Industrielle - CERNA, Mines Paris, UniversitĆ© PSL, Centre d’Economie Industrielle (CERNA), i3 UMR9217 CNRS Centre for industrial economics - CERNA, Mines Paris, PSL University, Centre for industrial economics (CERNA), i3 UMR9217 CNRS'),
(107457, 'https://ror.org/02yvp6477', 'en', 1, 'https://ror.org/02yvp6477 University of Batna 2 UniversitĆ© de Batna 2 Ų¬Ų§Ł…Ų¹Ų© باتنة 2 مصطفى بن ŲØŁˆŁ„Ų¹ŁŠ'),
(107458, 'https://ror.org/02yy6jb09', 'en', 1, 'https://ror.org/02yy6jb09 National Security Authority'),
(107459, 'https://ror.org/02yzaka98', 'de', 1, 'https://ror.org/02yzaka98 UniversitƤtsklinik Balgrist'),
(107460, 'https://ror.org/02yzgww51', 'es', 1, 'https://ror.org/02yzgww51 Universidad de Costa Rica University of Costa Rica'),
(107461, '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'),
(107462, 'https://ror.org/02z2bfb91', 'en', 1, 'https://ror.org/02z2bfb91 Asahino General Hospital åŒ»ē™‚ę³•äŗŗęœę—„é‡Žä¼šęœę—„é‡Žē·åˆē—…é™¢'),
(107463, 'https://ror.org/02z2sk479', 'en', 1, 'https://ror.org/02z2sk479 Shobhit University'),
(107464, 'https://ror.org/02z43xh36', 'en', 1, 'https://ror.org/02z43xh36 Stevens Institute of Technology'),
(107465, 'https://ror.org/02z51cq88', 'es', 1, 'https://ror.org/02z51cq88 Centro de Supercomputación de Galicia The Supercomputing Center of Galicia'),
(107466, 'https://ror.org/02z6whe68', 'en', 1, 'https://ror.org/02z6whe68 Kobe University of Future Health Sciences ē„žęˆøåŒ»ē™‚ęœŖę„å¤§å­¦'),
(107467, 'https://ror.org/02z8rzb71', 'en', 1, 'https://ror.org/02z8rzb71 Sias University éƒ‘å·žč„æäŗšę–Æå­¦é™¢'),
(107468, 'https://ror.org/02z92c890', 'en', 1, 'https://ror.org/02z92c890 Common Language Resources and Technology Infrastructure, Slovenia'),
(107469, 'https://ror.org/02zbb2597', 'en', 1, 'https://ror.org/02zbb2597 Poznan University of Medical Sciences Uniwersytet Medyczny im. Karola Marcinkowskiego w Poznaniu'),
(107470, 'https://ror.org/02zcjqq51', 'en', 1, 'https://ror.org/02zcjqq51 Konya Food and Agriculture University Konya Gıda ve Tarım Üniversitesi'),
(107471, 'https://ror.org/02zdnfn05', 'fr', 1, 'https://ror.org/02zdnfn05 Institut National Agronomique de Tunisie المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŁŁ„Ų§Ų­ŁŠŲ© ŲØŲŖŁˆŁ†Ų³'),
(107472, 'https://ror.org/02zf1jv40', 'pt', 1, 'https://ror.org/02zf1jv40 Autoridade da ConcorrĆŖncia'),
(107473, 'https://ror.org/02zgfrv63', 'en', 1, 'https://ror.org/02zgfrv63 Kyoto Interdisciplinary Institute of Community Medicine äø€čˆ¬č²”å›£ę³•äŗŗäŗ¬éƒ½åœ°åŸŸåŒ»ē™‚å­¦éš›ē ”ē©¶ę‰€'),
(107474, 'https://ror.org/02zhewk16', 'en', 1, 'https://ror.org/02zhewk16 Indian Institute of Management Calcutta ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤²ą¤•ą¤¤ą„ą¤¤ą¤¾ ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦•ą§ą¦Æą¦¾ą¦²ą¦•ą¦¾ą¦Ÿą¦¾ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ ą®•ąÆŠą®²ąÆą®•ą®¤ąÆą®¤ą®¾'),
(107475, 'https://ror.org/02zk3am42', 'de', 1, 'https://ror.org/02zk3am42 Luzerner Kantonsspital'),
(107476, 'https://ror.org/02znq2s88', 'en', 1, 'https://ror.org/02znq2s88 Wakayama City Institute Of Public Health å’Œę­Œå±±åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(107477, 'https://ror.org/02zpkjt27', 'pt', 1, 'https://ror.org/02zpkjt27 Universidade Evangelica de GoiƔs'),
(107478, 'https://ror.org/02zpmxf06', 'en', 1, 'https://ror.org/02zpmxf06 Medical Information System Development Center äø€čˆ¬č²”å›£ę³•äŗŗåŒ»ē™‚ęƒ…å ±ć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(107479, 'https://ror.org/02zr5jr81', 'en', 1, 'https://ror.org/02zr5jr81 University of Douala UniversitƩ de Douala'),
(107480, 'https://ror.org/02zv7ne49', 'en', 1, 'https://ror.org/02zv7ne49 South Australian Museum'),
(107481, 'https://ror.org/02zvy6a06', 'en', 1, 'https://ror.org/02zvy6a06 Anthony J. Leggett Institute for Condensed Matter Theory'),
(107482, 'https://ror.org/02zwhz281', 'en', 1, 'https://ror.org/02zwhz281 Shaheed Benazir Bhutto University Ų“Ł‡ŁŠŲÆ ŲØŁŠŁ†ŲøŁŠŲ± Ś€Ł½Łˆ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠŲŒ Ų“Ł‡ŁŠŲÆ ŲØŁŠŁ†ŲøŁŠŲ±Ų¢ŲØŲ§ŲÆ'),
(107483, 'https://ror.org/02zz1nj61', 'en', 1, 'https://ror.org/02zz1nj61 R Core Team'),
(107484, 'https://ror.org/02zzfq177', 'en', 1, 'https://ror.org/02zzfq177 The Japan Geriatrics Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č€å¹“åŒ»å­¦ä¼š'),
(107485, 'https://ror.org/0300enh49', 'no_lang_code', 1, 'https://ror.org/0300enh49 BioClin (Ireland)'),
(107486, 'https://ror.org/0302fn725', 'en', 1, 'https://ror.org/0302fn725 Industrial Technology Institute'),
(107487, 'https://ror.org/0305fyb87', 'en', 1, 'https://ror.org/0305fyb87 Woxsen School of Business'),
(107488, 'https://ror.org/0305wnm79', 'en', 1, 'https://ror.org/0305wnm79 Kanagawa Prefectural Government ē„žå„ˆå·ēœŒåŗ'),
(107489, 'https://ror.org/0306zjp26', 'en', 1, 'https://ror.org/0306zjp26 Tamakyuryo Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å¹øéš†ä¼šå¤šę‘©äø˜é™µē—…é™¢'),
(107490, 'https://ror.org/0307mca49', 'en', 1, 'https://ror.org/0307mca49 Institute of Solid Mechanics Institutul de Mecanica Solidelor al Academiei Române'),
(107491, 'https://ror.org/03081nz23', 'en', 1, 'https://ror.org/03081nz23 Istinye University İstinye Üniversitesi'),
(107492, 'https://ror.org/0309cs235', 'fr', 1, 'https://ror.org/0309cs235 Ɖcole Nationale SupĆ©rieure de Techniques AvancĆ©es'),
(107493, 'https://ror.org/030a8hg08', 'en', 1, 'https://ror.org/030a8hg08 Municipality of Chios Δήμος Χίου'),
(107494, 'https://ror.org/030attg11', 'pt', 1, 'https://ror.org/030attg11 Instituto Rocha Cabral'),
(107495, 'https://ror.org/030avcv93', 'en', 1, 'https://ror.org/030avcv93 Sukhoi State Technical University of Gomel Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П.Šž.Š”ŃƒŃ…Š¾Š³Š¾ Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń П.Š’.Š”ŃƒŃ…Š¾Š³Š°'),
(107496, 'https://ror.org/030bmb197', 'en', 1, 'https://ror.org/030bmb197 Sriwijaya University Universitas Sriwijaya'),
(107497, 'https://ror.org/030chaq85', 'en', 1, 'https://ror.org/030chaq85 Yamaguchi College of Arts å±±å£čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(107498, 'https://ror.org/030chxw89', 'en', 1, 'https://ror.org/030chxw89 Yaba College of Technology'),
(107499, 'https://ror.org/030dn1812', 'no_lang_code', 1, 'https://ror.org/030dn1812 Marwadi University'),
(107500, 'https://ror.org/030fmj129', 'en', 1, 'https://ror.org/030fmj129 Atomic Energy Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŽŸå­åŠ›å­¦ä¼š'),
(107501, 'https://ror.org/030gskw66', 'en', 1, 'https://ror.org/030gskw66 Tsuruoka Municipal Shonai Hospital é¶“å²”åø‚ē«‹č˜å†…ē—…é™¢'),
(107502, 'https://ror.org/030h1vb90', 'nl', 1, 'https://ror.org/030h1vb90 AZ Sint-Jan'),
(107503, 'https://ror.org/030npvq69', 'no_lang_code', 1, 'https://ror.org/030npvq69 MSD (Latvia)'),
(107504, 'https://ror.org/030s0zd03', 'pt', 1, 'https://ror.org/030s0zd03 Centro de Investigação DidÔtica e Tecnologia na Formação de Formadores'),
(107505, 'https://ror.org/030sjb889', 'en', 1, 'https://ror.org/030sjb889 Osmania University UniversitĆ© osmania جامعہ Ų¹Ų«Ł…Ų§Ł†ŪŒŪ ą¤‰ą¤øą„ą¤®ą¤¾ą¤Øą¤æą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®‰ą®šąÆą®®ą®¾ą®©ą®æą®Æą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°‰ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą± ą“’ą“øąµą“®ą“¾ą“Øą“æą“Æ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(107506, 'https://ror.org/030t15102', 'en', 1, 'https://ror.org/030t15102 Matsuyama Shinonome Junior College ę¾å±±ę±é›²ēŸ­ęœŸå¤§å­¦'),
(107507, 'https://ror.org/030vsyx86', 'en', 1, 'https://ror.org/030vsyx86 Tsukazaki Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗäø‰ę „ä¼šćƒ„ć‚«ć‚¶ć‚­ē—…é™¢'),
(107508, 'https://ror.org/030xrqd09', 'en', 1, 'https://ror.org/030xrqd09 Nuh Naci Yazgan University Nuh Naci Yazgan Üniversitesi'),
(107509, 'https://ror.org/030y7x049', 'en', 1, 'https://ror.org/030y7x049 Business Research Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗä¼ę„­ē ”ē©¶ä¼š'),
(107510, 'https://ror.org/03103ye85', 'de', 1, 'https://ror.org/03103ye85 ARDIG - ArchƤologischer Dienst GesmbH'),
(107511, 'https://ror.org/03144pv92', 'en', 1, 'https://ror.org/03144pv92 Lanzhou Jiaotong University å…°å·žäŗ¤é€šå¤§å­¦'),
(107512, 'https://ror.org/0314n2018', 'en', 1, 'https://ror.org/0314n2018 Shiretoko Nature Foundation å…¬ē›Šč²”å›£ę³•äŗŗēŸ„åŗŠč²”å›£'),
(107513, 'https://ror.org/03154ek65', 'en', 1, 'https://ror.org/03154ek65 Osteoporosis Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ استئوپروز'),
(107514, 'https://ror.org/03165bw24', 'en', 1, 'https://ror.org/03165bw24 Photocoding ćƒ•ć‚©ćƒˆć‚³ćƒ¼ćƒ‡ć‚£ćƒ³ć‚°'),
(107515, 'https://ror.org/0316x1478', 'en', 1, 'https://ror.org/0316x1478 Chuo Kikuu cha Taifa cha Zanzibar State University of Zanzibar'),
(107516, 'https://ror.org/031857212', 'en', 1, 'https://ror.org/031857212 Gujarat Biotechnology University'),
(107517, 'https://ror.org/0319nzt45', 'es', 1, 'https://ror.org/0319nzt45 Universidad Nacional Agraria de la Selva'),
(107518, 'https://ror.org/031aa0x95', 'es', 1, 'https://ror.org/031aa0x95 Universidad Bolivariana del Ecuador'),
(107519, 'https://ror.org/031aq0s38', 'en', 1, 'https://ror.org/031aq0s38 Hyogo Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗå…µåŗ«ēœŒēœ‹č­·å”ä¼š'),
(107520, 'https://ror.org/031bmh670', 'en', 1, 'https://ror.org/031bmh670 Chiba Prefectural Fisheries Research Center åƒč‘‰ēœŒę°“ē”£ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(107521, 'https://ror.org/031d6ey43', 'en', 1, 'https://ror.org/031d6ey43 Akenten Appiah-Menka University of Skills Training and Entrepreneurial Development'),
(107522, 'https://ror.org/031e9yc69', 'en', 1, 'https://ror.org/031e9yc69 Pamantasan ng Bohol University of Bohol'),
(107523, 'https://ror.org/031eq5e98', 'en', 1, 'https://ror.org/031eq5e98 PƤdagogische Hochschule Weingarten University of Education Weingarten'),
(107524, 'https://ror.org/031evmb56', 'en', 1, 'https://ror.org/031evmb56 Bangladesh University of Textiles বাংলাদেশ ą¦Ÿą§‡ą¦•ą§ą¦øą¦Ÿą¦¾ą¦‡ą¦² ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(107525, 'https://ror.org/031fw8h15', 'en', 1, 'https://ror.org/031fw8h15 Kungliga Konsthƶgskolan Kuninkaallinen taidekorkeakoulu Royal Institute of Art'),
(107526, 'https://ror.org/031gdzd12', 'pt', 1, 'https://ror.org/031gdzd12 Sociedade Portuguesa de Enfermagem de SaĆŗde Mental'),
(107527, 'https://ror.org/031ggcd89', 'en', 1, 'https://ror.org/031ggcd89 Sherubtse College ą½¤ą½ŗą½¦ą¼‹ą½¢ą½–ą¼‹ą½¢ą¾©ą½ŗą¼‹ą½˜ą½ą½¼ą¼‹ą½¢ą½²ą½˜ą¼‹ą½¦ą¾³ą½¼ą½–ą¼‹ą½‚ą¾²ą¾­ą¼'),
(107528, 'https://ror.org/031kjyq12', 'es', 1, 'https://ror.org/031kjyq12 Universidad Hipócrates'),
(107529, 'https://ror.org/031n6w191', 'es', 1, 'https://ror.org/031n6w191 Universidad de Manizales'),
(107530, 'https://ror.org/031nbmf07', 'en', 0, 'https://ror.org/031nbmf07 Social Sports Center äø€čˆ¬č²”å›£ę³•äŗŗē¤¾ä¼šć‚¹ćƒćƒ¼ćƒ„ć‚»ćƒ³ć‚æćƒ¼'),
(107531, 'https://ror.org/031pn0f70', 'en', 1, 'https://ror.org/031pn0f70 Dublin Tenants'),
(107532, 'https://ror.org/031q7h902', 'en', 1, 'https://ror.org/031q7h902 THE Research Foundation For Pharmaceutical Sciences å…¬ē›Šč²”å›£ę³•äŗŗč–¬å­¦ē ”ē©¶å„ØåŠ±č²”å›£'),
(107533, 'https://ror.org/031qkz233', 'en', 1, 'https://ror.org/031qkz233 Shiseikai Daini Hospital č‡³čŖ ä¼šē¬¬äŗŒē—…é™¢'),
(107534, 'https://ror.org/031sr5j33', 'en', 1, 'https://ror.org/031sr5j33 Mie Prefecture Industrial Research Institute äø‰é‡ēœŒå·„ę„­ē ”ē©¶ę‰€'),
(107535, 'https://ror.org/031tt0491', 'en', 1, 'https://ror.org/031tt0491 Fitchburg State University UniversitĆ© d''Ɖtat de Fitchburg'),
(107536, 'https://ror.org/031vnay14', 'en', 1, 'https://ror.org/031vnay14 Mountain Area Health Education Center'),
(107537, 'https://ror.org/031w3kk19', 'en', 1, 'https://ror.org/031w3kk19 Music Library Association'),
(107538, 'https://ror.org/031wyx077', 'en', 1, 'https://ror.org/031wyx077 Fachhochschule Vorarlberg Vorarlberg University of Applied Sciences'),
(107539, 'https://ror.org/031x4qe27', 'en', 1, 'https://ror.org/031x4qe27 Schweizerische Nationalbank Swiss National Bank'),
(107540, 'https://ror.org/031xne895', 'en', 1, 'https://ror.org/031xne895 National University of Laos UniversitĆ© nationale du laos ąŗ”ąŗ°ąŗ«ąŗ²ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ą»„ąŗ„ą»ąŗ«ą»ˆąŗ‡ąŗŠąŗ²ąŗ”');
INSERT INTO `rors` VALUES
(107541, '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'),
(107542, 'https://ror.org/032583b91', 'en', 1, 'https://ror.org/032583b91 C.V. Raman Global University'),
(107543, 'https://ror.org/03258q629', 'en', 1, 'https://ror.org/03258q629 Kobe Tokushukai Hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šē„žęˆøå¾³ę“²ä¼šē—…é™¢'),
(107544, 'https://ror.org/03265fv13', 'en', 1, 'https://ror.org/03265fv13 ColƔiste na hOllscoile University College Cork'),
(107545, 'https://ror.org/0329ynx05', 'en', 1, 'https://ror.org/0329ynx05 German Environment Agency Umweltbundesamt'),
(107546, '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'),
(107547, 'https://ror.org/032dxr958', 'pt', 1, 'https://ror.org/032dxr958 Instituto para os Comportamentos Aditivos e as DependĆŖncias, I.P.'),
(107548, 'https://ror.org/032e34x73', 'pt', 1, 'https://ror.org/032e34x73 Fatec Praia Grande'),
(107549, 'https://ror.org/032f2kz07', 'en', 1, 'https://ror.org/032f2kz07 Micromachine Center äø€čˆ¬č²”å›£ę³•äŗŗćƒžć‚¤ć‚Æćƒ­ćƒžć‚·ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(107550, 'https://ror.org/032j5hw78', 'en', 1, 'https://ror.org/032j5hw78 Tomsk State University of Control Systems and Radio-Electronics Томский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ систем ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(107551, 'https://ror.org/032jh6m87', 'en', 1, 'https://ror.org/032jh6m87 Nordic Institute for Studies in Innovation, Research and Education'),
(107552, 'https://ror.org/032jssp65', 'en', 1, 'https://ror.org/032jssp65 Hekinan Municipal Hospital ē¢§å—åø‚ę°‘ē—…é™¢'),
(107553, 'https://ror.org/032k1g572', 'en', 1, 'https://ror.org/032k1g572 Akita Research Center for Public Health and Environment ē§‹ē”°ēœŒå„åŗ·ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(107554, 'https://ror.org/032kdwk38', 'en', 1, 'https://ror.org/032kdwk38 University of Ilorin YunifÔsítì ìlú Ilorin'),
(107555, 'https://ror.org/032m8jb43', 'en', 1, 'https://ror.org/032m8jb43 Service Center of Port Engineering äø€čˆ¬č²”å›£ę³•äŗŗęøÆę¹¾ē©ŗęøÆē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(107556, 'https://ror.org/032rjhh75', 'en', 1, 'https://ror.org/032rjhh75 Nagano Fruit Tree Experiment Station é•·é‡ŽēœŒęžœęØ¹č©¦éØ“å “'),
(107557, 'https://ror.org/032rqtv20', 'en', 1, 'https://ror.org/032rqtv20 The Pharmaceutical Manufacturers'' Association of Tokyo å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬åŒ»č–¬å“å·„ę„­å”ä¼š'),
(107558, 'https://ror.org/032s10s29', 'en', 1, 'https://ror.org/032s10s29 European University Š„Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(107559, 'https://ror.org/032tz4q83', 'en', 1, 'https://ror.org/032tz4q83 Minneapolis Public Library'),
(107560, 'https://ror.org/032vgar48', 'en', 1, 'https://ror.org/032vgar48 Toshkent Xalqaro Vestminster Universiteti Westminster International University in Tashkent ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Вестминстерский Университет в Š¢Š°ŃˆŠŗŠµŠ½Ń‚е'),
(107561, 'https://ror.org/032wz9653', 'fr', 1, 'https://ror.org/032wz9653 AtmoSud'),
(107562, 'https://ror.org/032xfst36', 'en', 1, 'https://ror.org/032xfst36 University of Kashmir ą¤•ą¤¶ą„ą¤®ą„€ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦•ą¦¾ą¦¶ą§ą¦®ą§€ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą®•ą®¾ą®šąÆą®®ąÆ€ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(107563, 'https://ror.org/032xjn982', 'en', 1, 'https://ror.org/032xjn982 Kyoto Promotion Center å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½äø­å°ä¼ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(107564, 'https://ror.org/032xqbj11', 'en', 1, 'https://ror.org/032xqbj11 Technical University of Applied Sciences Lübeck Technische Hochschule Lübeck'),
(107565, 'https://ror.org/032ybtz45', 'en', 1, 'https://ror.org/032ybtz45 The Japan Foundation Center å…¬ē›Šč²”å›£ę³•äŗŗåŠ©ęˆč²”å›£ć‚»ćƒ³ć‚æćƒ¼'),
(107566, 'https://ror.org/032ymr618', 'en', 1, 'https://ror.org/032ymr618 Musashimurayama Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£å¤§å’Œä¼šę­¦č”µę‘å±±ē—…é™¢'),
(107567, 'https://ror.org/0333j0897', 'en', 1, 'https://ror.org/0333j0897 Canada''s Michael Smith Genome Sciences Centre'),
(107568, 'https://ror.org/0334tmt82', 'fr', 1, 'https://ror.org/0334tmt82 Centre d''Economie et de Sociologie AppliquƩes Ơ l''Agriculture et aux Espaces Ruraux'),
(107569, 'https://ror.org/0338xea48', 'en', 1, 'https://ror.org/0338xea48 University of Venda'),
(107570, 'https://ror.org/0339vwz86', 'en', 1, 'https://ror.org/0339vwz86 Tsukuba International Junior College ć¤ćć°å›½éš›ēŸ­ęœŸå¤§å­¦'),
(107571, 'https://ror.org/033b9jk32', 'es', 1, 'https://ror.org/033b9jk32 Universidad Tecnológica de la Sierra Hidalguense'),
(107572, 'https://ror.org/033ba9e70', 'en', 1, 'https://ror.org/033ba9e70 Hokkaido Veterinary Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ē£åŒ»åø«ä¼š'),
(107573, 'https://ror.org/033byn085', 'en', 1, 'https://ror.org/033byn085 Royal Agricultural University Y Brifysgol Amaethyddol Frenhinol'),
(107574, 'https://ror.org/033ebya06', 'fr', 1, 'https://ror.org/033ebya06 BIOdiversité, GÊnes & Communautés, UMR BIOdiversity, GEnes & Communities'),
(107575, 'https://ror.org/033gess63', 'de', 1, 'https://ror.org/033gess63 Zentralbibliothek Zürich Zurich Central Library'),
(107576, 'https://ror.org/033hgcp80', 'en', 1, 'https://ror.org/033hgcp80 Dezful University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ ŲÆŲ²ŁŁˆŁ„'),
(107577, 'https://ror.org/033jecd97', 'en', 1, 'https://ror.org/033jecd97 Nagayoshi General Hospital åŒ»ē™‚ę³•äŗŗåÆŗč„æå ±ę©ä¼šé•·å‰ē·åˆē—…é™¢'),
(107578, 'https://ror.org/033m02g29', 'en', 1, 'https://ror.org/033m02g29 Fondation nationale de recherche hellĆ©nique National Hellenic Research Foundation Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ī•ĻĪµĻ…Ī½ĻŽĪ½'),
(107579, 'https://ror.org/033n9gh91', 'de', 1, 'https://ror.org/033n9gh91 Carl von Ossietzky University of Oldenburg Carl von Ossietzky UniversitƤt Oldenburg'),
(107580, 'https://ror.org/033r0ft34', 'en', 1, 'https://ror.org/033r0ft34 Ocean Discovery League'),
(107581, 'https://ror.org/033r5zc58', 'en', 1, 'https://ror.org/033r5zc58 JAå²é˜œåŽšē”Ÿé€£ä¹…ē¾Žę„›åŽšē”Ÿē—…é™¢ Kumiai Kousei Hospital'),
(107582, 'https://ror.org/033rf4678', 'en', 1, 'https://ror.org/033rf4678 Al-Farabi University College ŁƒŁ„ŁŠŲ© Ų§Ł„ŁŲ§Ų±Ų§ŲØŁŠ الجامعة'),
(107583, 'https://ror.org/033sm2k57', 'en', 1, 'https://ror.org/033sm2k57 Open University of Cyprus Ī‘Ī½ĪæĪ¹ĪŗĻ„ĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(107584, 'https://ror.org/033tt8e33', 'en', 1, 'https://ror.org/033tt8e33 NOAA Earth System Research Laboratory'),
(107585, 'https://ror.org/033v6h662', 'en', 1, 'https://ror.org/033v6h662 Japan Foundry Engineering Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é‹³é€ å·„å­¦ä¼š'),
(107586, 'https://ror.org/033wde937', 'en', 1, 'https://ror.org/033wde937 Fussa Hospital å…¬ē«‹ē¦ē”Ÿē—…é™¢'),
(107587, 'https://ror.org/033zfn006', 'en', 1, 'https://ror.org/033zfn006 In-Service Aircraft for a Global Observing System'),
(107588, 'https://ror.org/033zp8j66', 'en', 1, 'https://ror.org/033zp8j66 The Life Planning Center Foundation äø€čˆ¬č²”å›£ę³•äŗŗćƒ©ć‚¤ćƒ•ćƒ»ćƒ—ćƒ©ćƒ³ćƒ‹ćƒ³ć‚°ćƒ»ć‚»ćƒ³ć‚æćƒ¼'),
(107589, 'https://ror.org/033zpbv42', 'en', 1, 'https://ror.org/033zpbv42 Moscow Aviation Institute Московский авиационный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(107590, 'https://ror.org/0340mjr48', 'en', 1, 'https://ror.org/0340mjr48 Nagasaki Prefectural Institute of Fisheries é•·å“ŽēœŒē·åˆę°“ē”£č©¦éØ“å “'),
(107591, 'https://ror.org/0341q1641', 'en', 1, 'https://ror.org/0341q1641 Berkeley Yeast'),
(107592, 'https://ror.org/0341vw408', 'it', 1, 'https://ror.org/0341vw408 Ministero dell''universitĆ  e della ricerca Ministry of Universities and Research'),
(107593, 'https://ror.org/0343j7r38', 'en', 1, 'https://ror.org/0343j7r38 The NorthCap University'),
(107594, 'https://ror.org/03442p831', 'en', 1, 'https://ror.org/03442p831 Xi''an Polytechnic University 脿安巄程大学'),
(107595, 'https://ror.org/0345xq683', 'en', 1, 'https://ror.org/0345xq683 SMART Reading'),
(107596, 'https://ror.org/0346k5011', 'id', 1, 'https://ror.org/0346k5011 Universitas Islam As-Syafi''iyah'),
(107597, 'https://ror.org/0349v4t59', 'en', 1, 'https://ror.org/0349v4t59 Kibbutzim College of Education, Technology and the Arts ×”×ž×™× ×Ø הקיבוצים'),
(107598, 'https://ror.org/0349vqz63', 'en', 1, 'https://ror.org/0349vqz63 Royal Botanic Garden Edinburgh'),
(107599, 'https://ror.org/034arnt34', 'en', 1, 'https://ror.org/034arnt34 Nottingham College'),
(107600, 'https://ror.org/034bdyc78', 'pt', 1, 'https://ror.org/034bdyc78 Empresa de Pesquisa AgropecuƔria de Minas Gerais'),
(107601, 'https://ror.org/034bxn811', 'en', 1, 'https://ror.org/034bxn811 Bureau of Economic Geology'),
(107602, 'https://ror.org/034efzt69', 'en', 1, 'https://ror.org/034efzt69 Kizawa Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŽšē”Ÿä¼šęœØę²¢čØ˜åæµē—…é™¢'),
(107603, 'https://ror.org/034gcgd08', 'en', 1, 'https://ror.org/034gcgd08 University of Hartford UniversitƩ de Hartford'),
(107604, 'https://ror.org/034kc6w18', 'en', 1, 'https://ror.org/034kc6w18 National Academy of Education named after Y. Altynsarin ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Имени И.Алтынсарина Ыбырай Алтынсарин атынГағы Ұлттық білім Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(107605, 'https://ror.org/034nqjm29', 'en', 1, 'https://ror.org/034nqjm29 Houston Community College System'),
(107606, 'https://ror.org/034p36h22', 'en', 1, 'https://ror.org/034p36h22 Shandong University of Art and Design å±±äøœå·„č‰ŗē¾ŽęœÆå­¦é™¢'),
(107607, 'https://ror.org/034qe8j39', 'en', 1, 'https://ror.org/034qe8j39 Endocrine and Metabolism Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲŗŲÆŲÆ و Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŲ³Ł…'),
(107608, 'https://ror.org/034qq8j36', 'en', 1, 'https://ror.org/034qq8j36 High Pressure Institute of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é«˜åœ§åŠ›ęŠ€č”“å”ä¼š'),
(107609, 'https://ror.org/034s44556', 'en', 1, 'https://ror.org/034s44556 Conseil International des Sciences International Science Council'),
(107610, 'https://ror.org/034x1h689', 'pt', 1, 'https://ror.org/034x1h689 Instituto Nacional da Propriedade Industrial'),
(107611, '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'),
(107612, 'https://ror.org/034yyfc81', 'en', 1, 'https://ror.org/034yyfc81 State University of Papua Universitas Negeri Papua'),
(107613, 'https://ror.org/0350e0c50', 'en', 1, 'https://ror.org/0350e0c50 Lithuanian Energy Institute'),
(107614, 'https://ror.org/035145p50', 'en', 1, 'https://ror.org/035145p50 University of Bechar Ų¬Ų§Ł…Ų¹Ų© ŲØŲ“Ų§Ų±'),
(107615, 'https://ror.org/03528cg63', 'en', 1, 'https://ror.org/03528cg63 Japan AeroSpace Technology Foundation äø€čˆ¬č²”å›£ę³•äŗŗčˆŖē©ŗå®‡å®™ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(107616, 'https://ror.org/03558c952', 'en', 1, 'https://ror.org/03558c952 Botanic Gardens of Toyama åÆŒå±±ēœŒäø­å¤®ę¤ē‰©åœ’'),
(107617, 'https://ror.org/03562fh87', 'pt', 1, 'https://ror.org/03562fh87 Escola Superior de Enfermagem do Porto'),
(107618, 'https://ror.org/03564kq40', 'en', 1, 'https://ror.org/03564kq40 Rayat Bahra University'),
(107619, 'https://ror.org/035764y25', 'pt', 1, 'https://ror.org/035764y25 Centro de LinguĆ­stica da Universidade do Porto'),
(107620, 'https://ror.org/0359kqn13', 'en', 1, 'https://ror.org/0359kqn13 Japan Environmental Management Association for Industry äø€čˆ¬ē¤¾å›£ę³•äŗŗē”£ę„­ē’°å¢ƒē®”ē†å”ä¼š'),
(107621, 'https://ror.org/035c6mk53', 'es', 1, 'https://ror.org/035c6mk53 Nodos Culturales'),
(107622, 'https://ror.org/035cp7g76', 'en', 1, 'https://ror.org/035cp7g76 Ohio Division of Geological Survey'),
(107623, 'https://ror.org/035czp815', 'en', 1, 'https://ror.org/035czp815 All-Russian Scientific Research Institute of Physical-Technical and Radiotechnical Measurements Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физико-технических Šø раГиотехнических измерений'),
(107624, 'https://ror.org/035d7ds17', 'en', 1, 'https://ror.org/035d7ds17 AfricArXiv'),
(107625, 'https://ror.org/035dkdb55', 'en', 1, 'https://ror.org/035dkdb55 The Alan Turing Institute'),
(107626, 'https://ror.org/035enhp47', 'en', 1, 'https://ror.org/035enhp47 Korea Institute of Civil Engineering and Building Technology'),
(107627, 'https://ror.org/035f5kg94', 'en', 1, 'https://ror.org/035f5kg94 Teikyo Gakuen Junior College åøäŗ¬å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(107628, 'https://ror.org/035gxp094', 'en', 1, 'https://ror.org/035gxp094 The Japan Lung Cancer Society ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬č‚ŗē™Œå­¦ä¼š'),
(107629, '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'),
(107630, 'https://ror.org/035j24j42', 'no_lang_code', 0, 'https://ror.org/035j24j42 Wyeth'),
(107631, 'https://ror.org/035kykh40', 'no_lang_code', 1, 'https://ror.org/035kykh40 MSD (Serbia)'),
(107632, 'https://ror.org/035mh1293', 'en', 1, 'https://ror.org/035mh1293 L''UniversitĆ  Internazionale a Roma Link Campus University'),
(107633, 'https://ror.org/035n4wk95', 'en', 1, 'https://ror.org/035n4wk95 Kyoto Prefectural Government 京都府庁'),
(107634, 'https://ror.org/035qk7d98', 'pt', 1, 'https://ror.org/035qk7d98 Fidelidade Companhia de Seguros SA (Portugal) Fidelidade Insurance Company'),
(107635, 'https://ror.org/035qsg823', 'en', 1, 'https://ror.org/035qsg823 Udayana University Universitas Udayana'),
(107636, 'https://ror.org/035rreb34', 'en', 1, 'https://ror.org/035rreb34 Department of National Defence Ministère de la Défense nationale'),
(107637, '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'),
(107638, 'https://ror.org/035t7rn63', 'en', 1, 'https://ror.org/035t7rn63 Lorestan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ لرستان'),
(107639, 'https://ror.org/035y7a716', 'en', 1, 'https://ror.org/035y7a716 Guiyang Medical University č“µé˜³åŒ»å­¦é™¢'),
(107640, 'https://ror.org/035zj9n88', 'en', 1, 'https://ror.org/035zj9n88 Earth Metabolome Initiative'),
(107641, 'https://ror.org/035zzs971', 'en', 1, 'https://ror.org/035zzs971 Technological University of Choco Universidad Tecnológica del Chocó Diego Luis Córdoba'),
(107642, 'https://ror.org/0367ap631', 'en', 1, 'https://ror.org/0367ap631 Central Mining Institute'),
(107643, 'https://ror.org/0368a2w96', 'en', 1, 'https://ror.org/0368a2w96 Prin. L. N. Welingkar Institute of Management Development and Research'),
(107644, 'https://ror.org/0368jkn02', 'fr', 1, 'https://ror.org/0368jkn02 Centre de Droit Social'),
(107645, 'https://ror.org/0368r1627', 'en', 1, 'https://ror.org/0368r1627 Geological Carbon Dioxide Storage Technology Research Association äŗŒé…øåŒ–ē‚­ē“ åœ°äø­č²Æē•™ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(107646, 'https://ror.org/036gv0184', 'id', 1, 'https://ror.org/036gv0184 Institut Seni Indonesia Surakarta'),
(107647, 'https://ror.org/036h8vg94', 'en', 1, 'https://ror.org/036h8vg94 SKEMA Business School'),
(107648, 'https://ror.org/036kgyt43', 'en', 1, 'https://ror.org/036kgyt43 Chouaib Doukkali University UniversitĆ© Chouaib Doukkali Ų¬Ų§Ł…Ų¹Ų© ؓعيب Ų§Ł„ŲÆŁƒŲ§Ł„ŁŠ'),
(107649, 'https://ror.org/036krsg33', 'es', 1, 'https://ror.org/036krsg33 CARTIF'),
(107650, 'https://ror.org/036rry744', 'es', 1, 'https://ror.org/036rry744 Instituto Argentino de Investigaciones de las Zonas Aridas'),
(107651, 'https://ror.org/036t3bd25', 'en', 1, 'https://ror.org/036t3bd25 OP Jindal University'),
(107652, 'https://ror.org/036tnqa40', 'en', 1, 'https://ror.org/036tnqa40 Midocean University UniversitĆ© Midocean Ų¬Ų§Ł…Ų¹Ų© Ł…ŁŠŲÆŲ£ŁˆŲ“Ł†'),
(107653, 'https://ror.org/036vefa56', 'en', 1, 'https://ror.org/036vefa56 Shijonawate Gakuen Junior College å››ę¢ē•·å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(107654, 'https://ror.org/036vh1t90', 'en', 1, 'https://ror.org/036vh1t90 Chigasaki Municipal Hospital čŒ…ćƒ¶å“Žåø‚ē«‹ē—…é™¢'),
(107655, 'https://ror.org/036x5ad56', 'en', 1, 'https://ror.org/036x5ad56 University of Luxembourg UniversitƤt Luxemburg UniversitƩ du Luxembourg'),
(107656, 'https://ror.org/036zk8k10', 'es', 1, 'https://ror.org/036zk8k10 Universidad Tecnica de Machala'),
(107657, 'https://ror.org/0370bwp13', 'en', 1, 'https://ror.org/0370bwp13 The New Industry Research Organization å…¬ē›Šč²”å›£ę³•äŗŗę–°ē”£ę„­å‰µé€ ē ”ē©¶ę©Ÿę§‹'),
(107658, 'https://ror.org/037263487', 'it', 1, 'https://ror.org/037263487 Libera UniversitĆ  degli Studi Per l''Innovazione e le Organizzazioni, UniversitĆ  degli Studi Internazionali di Roma University of International Studies of Rome'),
(107659, 'https://ror.org/03737pq38', 'en', 1, 'https://ror.org/03737pq38 Korea Institute for Health and Social Affairs ķ•œźµ­ė³“ź±“ģ‚¬ķšŒģ—°źµ¬ģ›'),
(107660, 'https://ror.org/0373e2w33', 'en', 1, 'https://ror.org/0373e2w33 Japan Public Health Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å…¬č”†č”›ē”Ÿå”ä¼š'),
(107661, 'https://ror.org/0373te416', 'no_lang_code', 1, 'https://ror.org/0373te416 Uninova'),
(107662, 'https://ror.org/0376rfz34', 'en', 1, 'https://ror.org/0376rfz34 TecMilenio University Universidad TecMilenio'),
(107663, 'https://ror.org/0376wwg26', 'en', 1, 'https://ror.org/0376wwg26 Huria Kristen Batak Protestan University of HKBP Nommensen'),
(107664, 'https://ror.org/03784zd57', 'en', 1, 'https://ror.org/03784zd57 Center for Marine Sciences and Technology'),
(107665, 'https://ror.org/0378w3a30', 'en', 1, 'https://ror.org/0378w3a30 Instituto Nacional de TelecomunicaƧƵes National Institute of Telecommunications'),
(107666, 'https://ror.org/037d7yy80', 'en', 1, 'https://ror.org/037d7yy80 Rheumatology Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų±ŁˆŁ…Ų§ŲŖŁˆŁ„ŁˆŚ˜ŪŒ'),
(107667, 'https://ror.org/037ez2r19', 'en', 1, 'https://ror.org/037ez2r19 KIOS Research and Innovation Center of Excellence'),
(107668, 'https://ror.org/037hd3x76', 'en', 1, 'https://ror.org/037hd3x76 Hyogo College å…µåŗ«å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(107669, 'https://ror.org/037kgdv05', 'pt', 1, 'https://ror.org/037kgdv05 Fundação José Saramago'),
(107670, 'https://ror.org/037mh3841', 'no_lang_code', 1, 'https://ror.org/037mh3841 Sciex (Canada)'),
(107671, 'https://ror.org/037mrss42', 'en', 1, 'https://ror.org/037mrss42 Tshwane University of Technology Tshwane-Universiteit van Tegnologie'),
(107672, 'https://ror.org/037s33w94', 'en', 1, 'https://ror.org/037s33w94 Yasuj University of Medical Sciences'),
(107673, 'https://ror.org/037tgdn13', 'en', 1, 'https://ror.org/037tgdn13 Hindustan Institute of Technology and Science ą®‡ą®ØąÆą®¤ąÆą®šąÆą®¤ąÆą®¤ą®¾ą®©ąÆ ą®Ŗā€Œą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(107674, 'https://ror.org/037va9e86', 'en', 1, 'https://ror.org/037va9e86 Hirakata Kohsai Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šęžšę–¹å…¬ęøˆē—…é™¢'),
(107675, 'https://ror.org/037vd2e78', 'en', 1, 'https://ror.org/037vd2e78 Mie Prefecture Health and Environment Research Institute äø‰é‡ēœŒäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(107676, 'https://ror.org/037vkq915', 'es', 1, 'https://ror.org/037vkq915 Universidad PolitƩcnica de Juventino Rosas'),
(107677, 'https://ror.org/037wny167', 'en', 1, 'https://ror.org/037wny167 Centro Internacional de Agricultura Tropical International Center for Tropical Agriculture'),
(107678, 'https://ror.org/037xrmj59', 'es', 1, 'https://ror.org/037xrmj59 Universidad del Azuay University of Azuay'),
(107679, 'https://ror.org/037y0xy94', 'fr', 1, 'https://ror.org/037y0xy94 Centre National de Recherche Agronomique'),
(107680, 'https://ror.org/037y9hb39', 'fr', 1, 'https://ror.org/037y9hb39 Centre d''Investigation Clinique - Innovation Technologique de Garches'),
(107681, 'https://ror.org/0380hzw75', 'id', 1, 'https://ror.org/0380hzw75 Universitas Wijaya Putra'),
(107682, 'https://ror.org/0381yqw52', 'en', 1, 'https://ror.org/0381yqw52 Fukushima Institute of Public Health ē¦å³¶ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(107683, 'https://ror.org/03827k711', 'en', 1, 'https://ror.org/03827k711 Chugoku Junior College äø­å›½ēŸ­ęœŸå¤§å­¦'),
(107684, 'https://ror.org/0386syr84', 'en', 1, 'https://ror.org/0386syr84 Tokyo Dental Junior College ę±äŗ¬ę­Æē§‘å¤§å­¦ēŸ­ęœŸå¤§å­¦'),
(107685, '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'),
(107686, 'https://ror.org/0387g1t09', 'en', 1, 'https://ror.org/0387g1t09 Japan Institute of Navigation å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čˆŖęµ·å­¦ä¼š'),
(107687, 'https://ror.org/0388c3403', 'en', 1, 'https://ror.org/0388c3403 Sichuan Agricultural University å››å·å†œäøšå¤§å­¦'),
(107688, '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'),
(107689, 'https://ror.org/038997171', 'en', 1, 'https://ror.org/038997171 Rockhurst University'),
(107690, 'https://ror.org/038a16f20', 'en', 1, 'https://ror.org/038a16f20 Mt. Cuba Astronomical Foundation'),
(107691, 'https://ror.org/038btwr93', 'en', 1, 'https://ror.org/038btwr93 Fukuoka Prefectural Police ē¦å²”ēœŒč­¦åÆŸ'),
(107692, 'https://ror.org/038dhfq97', 'en', 1, 'https://ror.org/038dhfq97 Jaipuria Institute of Management'),
(107693, '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'),
(107694, 'https://ror.org/038dty275', 'no_lang_code', 1, 'https://ror.org/038dty275 CeNTI (Portugal)'),
(107695, 'https://ror.org/038evk156', 'en', 1, 'https://ror.org/038evk156 Nagasaki Rehabilitation äø€čˆ¬ē¤¾å›£ę³•äŗŗę˜ÆēœŸä¼šé•·å“ŽćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(107696, 'https://ror.org/038faz260', 'en', 1, 'https://ror.org/038faz260 Warsaw Academy of Applied Medical Sciences Warszawska Akademia Medyczna Nauk Stosowanych'),
(107697, 'https://ror.org/038hap456', 'en', 1, 'https://ror.org/038hap456 Niigata Rheumatic Center ę–°ę½ŸēœŒē«‹ćƒŖć‚¦ćƒžćƒć‚»ćƒ³ć‚æćƒ¼'),
(107698, 'https://ror.org/038jp4m40', 'en', 1, 'https://ror.org/038jp4m40 National Centre of Scientific Research "Demokritos" Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ ĪˆĻĪµĻ…Ī½Ī±Ļ‚ Ī¦Ļ…ĻƒĪ¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ Ī”Ī·Ī¼ĻŒĪŗĻĪ¹Ļ„ĪæĻ‚'),
(107699, 'https://ror.org/038kghk15', 'ca', 1, 'https://ror.org/038kghk15 Hospital de Figueres'),
(107700, 'https://ror.org/038kx6574', 'no_lang_code', 0, 'https://ror.org/038kx6574 Intercell (Austria)'),
(107701, 'https://ror.org/038sjm754', 'en', 1, 'https://ror.org/038sjm754 Oldham College'),
(107702, 'https://ror.org/038tkkk06', 'en', 1, 'https://ror.org/038tkkk06 University of the Gambia'),
(107703, 'https://ror.org/038wr0v37', 'en', 1, 'https://ror.org/038wr0v37 Tottori Institute of Industrial Technology åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗé³„å–ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(107704, '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'),
(107705, 'https://ror.org/038z6xg73', 'en', 1, 'https://ror.org/038z6xg73 Kiryu Kosei General Hospital ę”ē”ŸåŽšē”Ÿē·åˆē—…é™¢'),
(107706, 'https://ror.org/0395hes28', 'en', 1, 'https://ror.org/0395hes28 Sendai Tokushukai Hospital ä»™å°å¾³ę“²ä¼šē—…é™¢'),
(107707, 'https://ror.org/0396bvs97', 'en', 1, 'https://ror.org/0396bvs97 Truman State University'),
(107708, 'https://ror.org/0397a5g27', 'en', 1, 'https://ror.org/0397a5g27 Concordia University Press'),
(107709, 'https://ror.org/0397ts898', 'no_lang_code', 1, 'https://ror.org/0397ts898 AlmavivA (Italy)'),
(107710, 'https://ror.org/0399pg384', 'en', 1, 'https://ror.org/0399pg384 Tokushima Prefectural Industrial Technology Center å¾³å³¶ēœŒē«‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(107711, 'https://ror.org/039d9es10', 'en', 1, 'https://ror.org/039d9es10 Petra University Ų¬Ų§Ł…Ų¹Ų© البتراؔ'),
(107712, 'https://ror.org/039e4he37', 'id', 1, 'https://ror.org/039e4he37 Universitas ''Aisyiyah Yogyakarta'),
(107713, 'https://ror.org/039e52y06', 'no_lang_code', 1, 'https://ror.org/039e52y06 Industriplast (Norway)'),
(107714, 'https://ror.org/039e7bg24', 'en', 1, 'https://ror.org/039e7bg24 University of Taipei č‡ŗåŒ—åø‚ē«‹å¤§å­øę ”ęœ¬éƒØ'),
(107715, 'https://ror.org/039gdg280', 'en', 1, 'https://ror.org/039gdg280 Hochschule für Technik Stuttgart Stuttgart University of Applied Sciences'),
(107716, 'https://ror.org/039n45t76', 'en', 1, 'https://ror.org/039n45t76 Nitobe Memorial Nakano General Hospital ę±äŗ¬åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆę–°ęø”ęˆøčØ˜åæµäø­é‡Žē·åˆē—…é™¢'),
(107717, 'https://ror.org/039p8pn96', 'en', 1, 'https://ror.org/039p8pn96 Viterbo University'),
(107718, 'https://ror.org/039pzq605', 'en', 1, 'https://ror.org/039pzq605 Nozaki Tokushukai Hospital é‡Žå“Žå¾³ę“²ä¼šē—…é™¢'),
(107719, 'https://ror.org/039qz7352', 'de', 1, 'https://ror.org/039qz7352 Institut für Wohnbauforschung'),
(107720, 'https://ror.org/039rqan90', 'en', 1, 'https://ror.org/039rqan90 Architectural Research Association äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰ē ”ē©¶å”ä¼š'),
(107721, 'https://ror.org/039sqht39', 'en', 1, 'https://ror.org/039sqht39 BitsLab, BitsLab (Singapore)'),
(107722, 'https://ror.org/039vq9023', 'en', 1, 'https://ror.org/039vq9023 Design Academy Eindhoven'),
(107723, 'https://ror.org/039zveh30', 'no_lang_code', 1, 'https://ror.org/039zveh30 Shimizu (Japan) ęø…ę°“å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(107724, 'https://ror.org/039zvsn29', 'en', 1, 'https://ror.org/039zvsn29 Natural History Museum'),
(107725, 'https://ror.org/03a39z514', 'en', 1, 'https://ror.org/03a39z514 Abia State University YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ ƁbĆ­Ć”'),
(107726, 'https://ror.org/03a3j6h47', 'en', 1, 'https://ror.org/03a3j6h47 Bronisław Markiewicz State Higher School of Technology and Economics in Jarosław Państwowa Wyższa Szkoła Techniczno-Ekonomiczna im. ks. B. Markiewicza w Jarosławiu'),
(107727, 'https://ror.org/03a3kvy61', 'en', 1, 'https://ror.org/03a3kvy61 Columbia College Chicago'),
(107728, '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 ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą²Øą³ą²Æą²¾ą²·ą²Øą²²ą³ā€Œ ಲಾ ą²øą³ą²•ą³‚ą²²ą³ā€Œ ą²†ą²«ą³ā€Œ ಇಂಔಿಯಾ'),
(107729, 'https://ror.org/03a5xsc56', 'en', 1, 'https://ror.org/03a5xsc56 Leibniz Institute for Tropospheric Research Leibniz-Institut für Troposphärenforschung'),
(107730, 'https://ror.org/03a60m280', 'en', 1, 'https://ror.org/03a60m280 Hubei University ę¹–åŒ—å¤§å­¦'),
(107731, 'https://ror.org/03a649882', 'en', 1, 'https://ror.org/03a649882 Hanyu General Hospital åŸ¼ēŽ‰åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆē¾½ē”Ÿē·åˆē—…é™¢'),
(107732, 'https://ror.org/03a84yw54', 'fr', 1, 'https://ror.org/03a84yw54 Centre d''Enseignement et de Recherche en Environnement AtmosphƩrique'),
(107733, 'https://ror.org/03a8hhw69', 'id', 1, 'https://ror.org/03a8hhw69 Universitas Islam Negeri Maulana Malik Ibrahim'),
(107734, 'https://ror.org/03a8sgj63', 'en', 1, 'https://ror.org/03a8sgj63 Military University Hospital Prague'),
(107735, 'https://ror.org/03a9csj98', 'pt', 1, 'https://ror.org/03a9csj98 Centro de Tecnologia Mecânica e Automação'),
(107736, 'https://ror.org/03aas9509', 'en', 1, 'https://ror.org/03aas9509 Vancouver School of Theology'),
(107737, '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'),
(107738, 'https://ror.org/03acrzv41', 'en', 1, 'https://ror.org/03acrzv41 North China University of Water Resources and Electric Power åŽåŒ—ę°“åˆ©ę°“ē”µå¤§å­¦'),
(107739, 'https://ror.org/03ad39j10', 'en', 1, 'https://ror.org/03ad39j10 University of Pisa UniversitƠ di Pisa UniversitƤt Pisa UniversitƩ de Pise'),
(107740, 'https://ror.org/03adhka07', 'en', 1, 'https://ror.org/03adhka07 Swiss Tropical and Public Health Institute'),
(107741, 'https://ror.org/03adm0793', 'en', 1, 'https://ror.org/03adm0793 South China Business College Guangdong University of Foreign Studies å¹æäøœå¤–čÆ­å¤–č“øå¤§å­¦å—å›½å•†å­¦é™¢, ęˆæäøœå¤–čÆ­å¤–č“øå¤§å­¦å—å›½å•†å­øé™¢'),
(107742, 'https://ror.org/03ag2mf63', 'en', 1, 'https://ror.org/03ag2mf63 Sri Karan Narendra Agriculture University, Jobner, ą¤¶ą„ą¤°ą„€ करण ą¤Øą¤°ą„‡ą¤‚ą¤¦ą„ą¤° ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤œą„‹ą¤¬ą¤Øą„‡ą¤°'),
(107743, 'https://ror.org/03ajk1m02', 'no_lang_code', 1, 'https://ror.org/03ajk1m02 ArheoloÅ”ki Institut Institute of Archaeology ŠŃ€Ń…ŠµŠ¾Š»Š¾ŃˆŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(107744, 'https://ror.org/03ajsaw82', 'en', 1, 'https://ror.org/03ajsaw82 NASK National Research Institute NASK Państwowy Instytut Badawczy'),
(107745, 'https://ror.org/03ajxah49', 'en', 1, 'https://ror.org/03ajxah49 Japanese Society of Oral Implantology å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å£č…”ć‚¤ćƒ³ćƒ—ćƒ©ćƒ³ćƒˆå­¦ä¼š'),
(107746, 'https://ror.org/03am2jy38', 'fr', 1, 'https://ror.org/03am2jy38 Universitat de PerpinyƠ Via Domƭcia University of Perpignan UniversitƩ de Perpignan'),
(107747, 'https://ror.org/03anrkt33', 'en', 1, 'https://ror.org/03anrkt33 Muhammadiyah University of Yogyakarta Universitas Muhammadiyah Yogyakarta'),
(107748, 'https://ror.org/03apb0g70', 'en', 1, 'https://ror.org/03apb0g70 Marietta College'),
(107749, 'https://ror.org/03aph1990', 'en', 1, 'https://ror.org/03aph1990 National University Zaporizhzhia Polytechnic ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ° політехніка»'),
(107750, 'https://ror.org/03aphgr60', 'en', 1, 'https://ror.org/03aphgr60 Radioactive and Decommissioning Center å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›ćƒćƒƒć‚Æć‚Øćƒ³ćƒ‰ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(107751, 'https://ror.org/03ase0085', 'en', 1, 'https://ror.org/03ase0085 University of Warith Al-Anbiyaa Ų¬Ų§Ł…Ų¹Ų© وارث Ų§Ł„Ų£Ł†ŲØŁŠŲ§Ų”'),
(107752, 'https://ror.org/03avf6522', 'en', 1, 'https://ror.org/03avf6522 Norwegian Polar Institute'),
(107753, 'https://ror.org/03azf2g07', 'en', 1, 'https://ror.org/03azf2g07 Natural Hazards Research Australia'),
(107754, 'https://ror.org/03b21sh32', 'en', 1, 'https://ror.org/03b21sh32 Basque Center for Applied Mathematics'),
(107755, 'https://ror.org/03b3baf09', 'en', 1, 'https://ror.org/03b3baf09 Institute of Power Engineering'),
(107756, 'https://ror.org/03b4za748', 'en', 1, 'https://ror.org/03b4za748 Seton Hill University'),
(107757, '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'),
(107758, 'https://ror.org/03b6ffh07', 'en', 1, 'https://ror.org/03b6ffh07 Sharda University'),
(107759, 'https://ror.org/03b6h1a78', 'pt', 1, 'https://ror.org/03b6h1a78 Fundação Amadeu Dias'),
(107760, 'https://ror.org/03b8f3736', 'en', 1, 'https://ror.org/03b8f3736 Architectural Association School of Architecture'),
(107761, 'https://ror.org/03bajzn32', 'pt', 1, 'https://ror.org/03bajzn32 História Territórios e Comunidades'),
(107762, 'https://ror.org/03bamq636', 'en', 1, 'https://ror.org/03bamq636 Office for Government Policy Coordination Prime Minister''s Secretariat 국묓씰정실 źµ­ė¬“ģ“ė¦¬ė¹„ģ„œģ‹¤'),
(107763, 'https://ror.org/03bdeag60', 'en', 1, 'https://ror.org/03bdeag60 University of Lucknow ą¤²ą¤–ą¤Øą¤Š ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ąØ²ąØ–ąØØąØŠ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(107764, 'https://ror.org/03bdrf724', 'en', 1, 'https://ror.org/03bdrf724 Shimane Prefectural Mountainous Regions Research Center å³¶ę ¹ēœŒäø­å±±é–“åœ°åŸŸē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(107765, 'https://ror.org/03bg7t353', 'es', 1, 'https://ror.org/03bg7t353 Institución Universitaria Escolme'),
(107766, 'https://ror.org/03bmwz664', 'en', 1, 'https://ror.org/03bmwz664 Wakayama Prefectural Police å’Œę­Œå±±ēœŒč­¦åÆŸ'),
(107767, 'https://ror.org/03bndpq63', 'en', 1, 'https://ror.org/03bndpq63 Centre for Research and Technology Hellas Ethniko Kentro Erevnas Kai Technologikis Anaptyxis, Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ ĪˆĻĪµĻ…Ī½Ī±Ļ‚ και Τεχνολογικής Ανάπτυξης'),
(107768, 'https://ror.org/03bp5hc83', 'es', 1, 'https://ror.org/03bp5hc83 Universidad de Antioquia University of Antioquia'),
(107769, 'https://ror.org/03bps0m03', 'en', 1, 'https://ror.org/03bps0m03 Wuhan University of Engineering Science ę­¦ę±‰å·„ēØ‹ē§‘ęŠ€å­¦é™¢'),
(107770, 'https://ror.org/03bsybc69', 'en', 1, 'https://ror.org/03bsybc69 Mie Prefectural Shima Hospital äø‰é‡ēœŒē«‹åæ—ę‘©ē—…é™¢'),
(107771, 'https://ror.org/03bx01x40', 'pt', 1, 'https://ror.org/03bx01x40 Jerónimo Martins (Portugal)'),
(107772, 'https://ror.org/03bzf1g85', 'en', 1, 'https://ror.org/03bzf1g85 Vignan''s Foundation for Science, Technology & Research'),
(107773, 'https://ror.org/03c33w089', 'en', 1, 'https://ror.org/03c33w089 Dr. Yashwant Singh Parmar University of Horticulture and Forestry ą¤”ą„‰. यशवंत ą¤øą¤æą¤‚ą¤˜ परमार ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤¹ą„‰ą¤°ą„ą¤Ÿą¤æą¤•ą¤²ą„ą¤šą¤° ą¤ą¤‚ą¤” ą¤«ą„‹ą¤°ą„‡ą¤øą„ą¤Ÿą„ą¤°ą„€'),
(107774, 'https://ror.org/03c4atk17', 'it', 1, 'https://ror.org/03c4atk17 UniversitĆ  della Svizzera italiana'),
(107775, 'https://ror.org/03c4mmv16', 'en', 1, 'https://ror.org/03c4mmv16 University of Ottawa UniversitƩ d''Ottawa'),
(107776, 'https://ror.org/03c7s1f64', 'en', 1, 'https://ror.org/03c7s1f64 Maejo University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąø”ą¹ˆą¹‚ąøˆą¹‰'),
(107777, 'https://ror.org/03c8fdb16', 'en', 1, 'https://ror.org/03c8fdb16 Fujian University of Technology ē¦å»ŗå·„ēØ‹å­¦é™¢'),
(107778, 'https://ror.org/03ca7a577', 'es', 1, 'https://ror.org/03ca7a577 Fundación Universitaria Konrad Lorenz'),
(107779, 'https://ror.org/03ccw9774', 'en', 1, 'https://ror.org/03ccw9774 Fukui Prefectural Government ē¦äŗ•ēœŒåŗ'),
(107780, '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'),
(107781, 'https://ror.org/03cdgfs84', 'de', 1, 'https://ror.org/03cdgfs84 Landschaftsverband Westfalen-Lippe'),
(107782, 'https://ror.org/03ceheh96', 'no_lang_code', 1, 'https://ror.org/03ceheh96 Qufu Normal University ę›²é˜œåøˆčŒƒå¤§å­¦'),
(107783, 'https://ror.org/03cfha585', 'en', 1, 'https://ror.org/03cfha585 WSP (New Zealand)'),
(107784, 'https://ror.org/03cg5md32', 'es', 1, 'https://ror.org/03cg5md32 Hospital Universitario de La Princesa'),
(107785, 'https://ror.org/03cg80535', 'fr', 1, 'https://ror.org/03cg80535 UniversitƩ Catholique de Bukavu'),
(107786, 'https://ror.org/03cgzzr66', 'en', 1, 'https://ror.org/03cgzzr66 Minamisoma Municipal General Hospital å—ē›øé¦¬åø‚ē«‹ē·åˆē—…é™¢'),
(107787, 'https://ror.org/03ckw4m20', 'en', 1, 'https://ror.org/03ckw4m20 Al Noor University College ŁƒŁ„ŁŠŲ© Ų§Ł„Ł†ŁˆŲ± الجامعة'),
(107788, 'https://ror.org/03cm0t424', 'en', 1, 'https://ror.org/03cm0t424 Metropolitan Museum of Art Museo Metropolitano de Arte'),
(107789, 'https://ror.org/03cmaaz53', 'en', 1, 'https://ror.org/03cmaaz53 ArmƩe canadienne Canadian Army'),
(107790, 'https://ror.org/03cnjaa38', 'no_lang_code', 1, 'https://ror.org/03cnjaa38 MSD (Lithuania)'),
(107791, 'https://ror.org/03crfce94', 'en', 1, 'https://ror.org/03crfce94 Livestock Industry''s Environmental Improvement Organization äø€čˆ¬č²”å›£ę³•äŗŗē•œē”£ē’°å¢ƒę•“å‚™ę©Ÿę§‹'),
(107792, 'https://ror.org/03crmsn52', 'fr', 1, 'https://ror.org/03crmsn52 Institut de Recherche Technologique SystemX'),
(107793, 'https://ror.org/03ctacd45', 'en', 1, 'https://ror.org/03ctacd45 Korea Electrotechnology Research Institute ķ•œźµ­ģ „źø°ģ—°źµ¬ģ›'),
(107794, 'https://ror.org/03ctjbj91', 'en', 1, 'https://ror.org/03ctjbj91 Liverpool Hope University'),
(107795, 'https://ror.org/03cv38k47', 'en', 1, 'https://ror.org/03cv38k47 Universitair Medisch Centrum Groningen University Medical Center Groningen'),
(107796, 'https://ror.org/03cw6ep97', 'fr', 1, 'https://ror.org/03cw6ep97 FƩdƩration RƩgionale des Acteurs en Promotion de la SantƩ'),
(107797, 'https://ror.org/03cx6bg69', 'en', 1, 'https://ror.org/03cx6bg69 Ethnicon Metsovion Polytechnion, Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪœĪµĻ„ĻƒĻŒĪ²Ī¹Īæ Πολυτεχνείο National Technical University of Athens Ɖcole polytechnique d''athĆØnes'),
(107798, 'https://ror.org/03cxavb34', 'en', 1, 'https://ror.org/03cxavb34 Seirei Yokohama Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£č–éš·ęØŖęµœē—…é™¢'),
(107799, 'https://ror.org/03cxs0c96', 'en', 1, 'https://ror.org/03cxs0c96 African Institute for Mathematical Sciences'),
(107800, 'https://ror.org/03cyjf656', 'no_lang_code', 1, 'https://ror.org/03cyjf656 University Centre in Svalbard'),
(107801, 'https://ror.org/03czk8k96', 'de', 1, 'https://ror.org/03czk8k96 Hochschule Macromedia Macromedia University'),
(107802, 'https://ror.org/03d0jkp23', 'en', 1, 'https://ror.org/03d0jkp23 Colombian Corporation for Agricultural Research - AGROSAVIA Corporación Colombiana de Investigación Agropecuaria – AGROSAVIA'),
(107803, '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'),
(107804, 'https://ror.org/03d1edh55', 'en', 1, 'https://ror.org/03d1edh55 Kasukabe Medical Center ę˜„ę—„éƒØåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(107805, 'https://ror.org/03d2p2e72', 'en', 1, 'https://ror.org/03d2p2e72 Universiti Teknologi Sarawak University of Technology Sarawak'),
(107806, 'https://ror.org/03d53xe41', 'en', 1, 'https://ror.org/03d53xe41 Tashkent State University of Oriental Studies Toshkent davlat sharqshunoslik universiteti Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š¾ŃŃ‚Š¾ŠŗŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(107807, 'https://ror.org/03d85wd75', 'en', 1, 'https://ror.org/03d85wd75 Urban Renaissance Agency ē‹¬ē«‹č”Œę”æę³•äŗŗéƒ½åø‚å†ē”Ÿę©Ÿę§‹'),
(107808, 'https://ror.org/03d9vfb50', 'en', 1, 'https://ror.org/03d9vfb50 Muhammadiyah University of Ponorogo'),
(107809, 'https://ror.org/03dafx737', 'no_lang_code', 1, 'https://ror.org/03dafx737 Research Center Pharmaceutical Engineering (Austria)'),
(107810, 'https://ror.org/03ddrbp36', 'en', 1, 'https://ror.org/03ddrbp36 Japan Travel Bureau Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äŗ¤é€šå…¬ē¤¾'),
(107811, 'https://ror.org/03dgaxm65', 'en', 1, 'https://ror.org/03dgaxm65 The Japan P.E.N. club äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒšćƒ³ć‚Æćƒ©ćƒ–'),
(107812, 'https://ror.org/03dhbdp32', 'tr', 1, 'https://ror.org/03dhbdp32 Ɩzgür Yayınları'),
(107813, 'https://ror.org/03dhqwb76', 'en', 1, 'https://ror.org/03dhqwb76 Japan Building Management Institute äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ“ćƒ«ćƒ‚ćƒ³ć‚°ēµŒå–¶ć‚»ćƒ³ć‚æćƒ¼'),
(107814, 'https://ror.org/03dk4hf38', 'en', 1, 'https://ror.org/03dk4hf38 University of Asia Pacific ą¦¦ą§ą¦Æ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ ą¦Ŗą§ą¦Æą¦¾ą¦øą¦æą¦«ą¦æą¦•'),
(107815, 'https://ror.org/03dm7dd93', 'no_lang_code', 1, 'https://ror.org/03dm7dd93 Austrian Centre of Industrial Biotechnology (Austria)'),
(107816, 'https://ror.org/03dmc3670', 'es', 1, 'https://ror.org/03dmc3670 Congreso de los Diputados Congress of Deputies'),
(107817, 'https://ror.org/03dmz0111', 'en', 1, 'https://ror.org/03dmz0111 Chuo Kikuu cha Makerere Makerere University Ų¬Ų§Ł…Ų¹Ų© Ł…Ų§ŁƒŁŠŲ±ŁŠŲ±ŁŠ'),
(107818, 'https://ror.org/03dnc6n82', 'en', 1, 'https://ror.org/03dnc6n82 National Institute for Biological Standards and Control'),
(107819, 'https://ror.org/03dntmd83', 'en', 1, 'https://ror.org/03dntmd83 NMEMS Technology Research Organization ęŠ€č”“ē ”ē©¶ēµ„åˆNMEMSęŠ€č”“ē ”ē©¶ę©Ÿę§‹'),
(107820, 'https://ror.org/03dnx8x22', 'pt', 1, 'https://ror.org/03dnx8x22 Universidade da Região da Campanha'),
(107821, 'https://ror.org/03dnytd23', 'en', 1, 'https://ror.org/03dnytd23 Shenyang Pharmaceutical University'),
(107822, 'https://ror.org/03dp11s58', 'en', 1, 'https://ror.org/03dp11s58 Raisoni Group of Institutions'),
(107823, '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'),
(107824, 'https://ror.org/03dq5hx50', 'en', 1, 'https://ror.org/03dq5hx50 Chutoen General Medical Center ęŽ›å·åø‚ćƒ»č¢‹äŗ•åø‚ē—…é™¢ä¼ę„­å›£ē«‹äø­ę±é ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(107825, 'https://ror.org/03dveyr97', 'en', 1, 'https://ror.org/03dveyr97 Guangxi Medical University å¹æč„æåŒ»ē§‘å¤§å­¦'),
(107826, 'https://ror.org/03dvp8k55', 'en', 1, 'https://ror.org/03dvp8k55 Oulu University of Applied Sciences Oulun seudun ammattikorkeakoulu'),
(107827, 'https://ror.org/03dx8n755', 'en', 1, 'https://ror.org/03dx8n755 Medical Center "LORIMED" LLC'),
(107828, 'https://ror.org/03dydg188', 'fr', 1, 'https://ror.org/03dydg188 Ɖcole Nationale SupĆ©rieure d''Hydraulique المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų±ŁŠ'),
(107829, 'https://ror.org/03dynh639', 'no_lang_code', 1, 'https://ror.org/03dynh639 SIMAD University'),
(107830, 'https://ror.org/03dzfh113', 'en', 1, 'https://ror.org/03dzfh113 Shin-yurigaoka General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£äø‰ęˆä¼šę–°ē™¾åˆćƒ¶äø˜ē·åˆē—…é™¢'),
(107831, 'https://ror.org/03e096643', 'en', 1, 'https://ror.org/03e096643 Institute of Rural Management Anand ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°°ą±‚ą°°ą°²ą± ą°®ą±‡ą°Øą±‡ą°œą±ą°®ą±†ą°‚ą°Ÿą±'),
(107832, 'https://ror.org/03e0v3w65', 'en', 1, 'https://ror.org/03e0v3w65 Itabashi Chuo Medical Center åŒ»ē™‚ę³•äŗŗē¤¾å›£ę˜ŽčŠ³ä¼šęæę©‹äø­å¤®ē·åˆē—…é™¢'),
(107833, 'https://ror.org/03e1qkx04', 'en', 1, 'https://ror.org/03e1qkx04 Yamagata Prefectural Forest Research and Instruction Center å±±å½¢ēœŒę£®ęž—ē ”ē©¶ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(107834, 'https://ror.org/03e2e3s57', 'en', 1, 'https://ror.org/03e2e3s57 Indian Institute of Information Technology, Nagpur, इंऔियन ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤‡ą¤Øą¤«ą¤°ą„ą¤®ą„‡ą¤¶ą¤Ø ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€, ą¤Øą¤¾ą¤—ą¤Ŗą„ą¤°'),
(107835, 'https://ror.org/03e5da851', 'en', 1, 'https://ror.org/03e5da851 Tianjin Renai College 天擄仁愛學院'),
(107836, 'https://ror.org/03e5jvk98', 'en', 1, 'https://ror.org/03e5jvk98 Sukkur IBA University سکر آئي بي اي ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(107837, '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 Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ Ų§Ł„ŲØŲ“ŁŠŲ± Ų§Ł„Ų§ŲØŲ±Ų§Ł‡ŁŠŁ…ŁŠŲŒ ŲØŲ±Ų¬ بوعريريج'),
(107838, 'https://ror.org/03e7v3527', 'en', 1, 'https://ror.org/03e7v3527 Lindsey Wilson College'),
(107839, 'https://ror.org/03e8vv411', 'en', 1, 'https://ror.org/03e8vv411 George Brown College'),
(107840, 'https://ror.org/03eb1ae70', 'en', 1, 'https://ror.org/03eb1ae70 Leading University লিঔিং ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(107841, 'https://ror.org/03eb2zp02', 'en', 1, 'https://ror.org/03eb2zp02 Japanese Organisation for Research and Treatment of Cancer ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗJORTC'),
(107842, 'https://ror.org/03ebzbt25', 'en', 1, 'https://ror.org/03ebzbt25 Wakefield College'),
(107843, 'https://ror.org/03edrct07', 'en', 1, 'https://ror.org/03edrct07 Hyogo Prefectural Tamba Medical Center å…µåŗ«ēœŒē«‹äø¹ę³¢åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(107844, 'https://ror.org/03eek8g24', 'en', 1, 'https://ror.org/03eek8g24 Antenor Orrego Private University Universidad Privada Antenor Orrego'),
(107845, 'https://ror.org/03ef3sy26', 'en', 1, 'https://ror.org/03ef3sy26 Academy of Public Administration under the President of the Republic of Kazakhstan ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при ŠŸŃ€ŠµŠ·ŠøŠ“енте Республики ŠšŠ°Š·Š°Ń…стан ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Ń–Š½Ń–Ņ£ жанынГағы ŠœŠµŠ¼Š»ŠµŠŗŠµŃ‚Ń‚Ń–Šŗ Š±Š°ŃŅ›Š°Ń€Ńƒ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(107846, 'https://ror.org/03ef4a036', 'de', 1, 'https://ror.org/03ef4a036 University for Continuing Education Krems Universität für Weiterbildung Krems'),
(107847, 'https://ror.org/03egn3336', 'en', 1, 'https://ror.org/03egn3336 Aomori Prefectural Public Health and Environment Center é’ę£®ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(107848, 'https://ror.org/03egztz04', 'en', 1, 'https://ror.org/03egztz04 Maryland Geological Survey'),
(107849, 'https://ror.org/03ehk1n67', 'en', 1, 'https://ror.org/03ehk1n67 Indus University'),
(107850, 'https://ror.org/03ehwqd13', 'en', 1, 'https://ror.org/03ehwqd13 Scientific and Research Centre for Fire Protection'),
(107851, 'https://ror.org/03emska84', 'en', 1, 'https://ror.org/03emska84 University of Niigata Prefecture ę–°ę½ŸēœŒē«‹å¤§å­¦'),
(107852, 'https://ror.org/03ep23f07', 'en', 1, 'https://ror.org/03ep23f07 Korea Research Institute of Bioscience and Biotechnology ķ•œźµ­ģƒėŖ…ź³µķ•™ģ—°źµ¬ģ›'),
(107853, 'https://ror.org/03ep3q589', 'de', 1, 'https://ror.org/03ep3q589 Leibniz-Institut für Verbundwerkstoffe GmbH'),
(107854, 'https://ror.org/03ep93h31', 'pt', 1, 'https://ror.org/03ep93h31 Centro de Investigação Desenvolvimento e Inovação em Turismo'),
(107855, 'https://ror.org/03epxcz56', 'en', 1, 'https://ror.org/03epxcz56 National Institute of Research and Development for Optoelectronics'),
(107856, 'https://ror.org/03erkev52', 'en', 1, 'https://ror.org/03erkev52 Al Akhawayn University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ų®ŁˆŁŠŁ†'),
(107857, 'https://ror.org/03et3fv37', 'en', 1, 'https://ror.org/03et3fv37 Royal Military Academy Sandhurst'),
(107858, 'https://ror.org/03eyzfr91', 'en', 1, 'https://ror.org/03eyzfr91 National Sanatorium Okinawa Airakuen å›½ē«‹ē™‚é¤Šę‰€ę²–ēø„ę„›ę„½åœ’'),
(107859, '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 Латвийский ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(107860, 'https://ror.org/03f4xj038', 'fr', 1, 'https://ror.org/03f4xj038 Laboratoire Dynamique de la BiodiversitƩ'),
(107861, 'https://ror.org/03f5sek97', 'pt', 1, 'https://ror.org/03f5sek97 Centro de Economia e FinanƧas'),
(107862, 'https://ror.org/03f74xd51', 'en', 1, 'https://ror.org/03f74xd51 Japan Osteoporosis Foundation å…¬ē›Šč²”å›£ę³•äŗŗéŖØē²—é¬†ē—‡č²”å›£'),
(107863, 'https://ror.org/03f8bz564', 'en', 1, 'https://ror.org/03f8bz564 Technical University of Crete UniversitĆ© technique de crĆØte Πολυτεχνείο ĪšĻĪ®Ļ„Ī·Ļ‚'),
(107864, 'https://ror.org/03f914y84', 'en', 1, 'https://ror.org/03f914y84 Plymouth Marjon University'),
(107865, 'https://ror.org/03f9f1d95', 'en', 1, 'https://ror.org/03f9f1d95 U.S. Air Force Institute of Technology'),
(107866, 'https://ror.org/03faz3d81', 'pt', 1, 'https://ror.org/03faz3d81 Centro de Investigação de Montanha'),
(107867, 'https://ror.org/03fbas882', 'en', 1, 'https://ror.org/03fbas882 Japan Industrial Location Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē«‹åœ°ć‚»ćƒ³ć‚æćƒ¼'),
(107868, 'https://ror.org/03fbv3w59', 'en', 1, 'https://ror.org/03fbv3w59 National Forensic Sciences University ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Øą„ą¤Æą¤¾ą¤Æą¤¾ą¤²ą¤Æą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(107869, 'https://ror.org/03fc1k060', 'en', 1, 'https://ror.org/03fc1k060 University of Salento UniversitƠ degli Studi di Lecce UniversitƤt Salento UniversitƩ du salento'),
(107870, 'https://ror.org/03fdbez45', 'en', 1, 'https://ror.org/03fdbez45 Kyoto Industrial Association å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½å·„ę„­ä¼š'),
(107871, 'https://ror.org/03fe7t173', 'en', 1, 'https://ror.org/03fe7t173 Wuhan University of Technology 武汉理巄大学'),
(107872, 'https://ror.org/03feehn34', 'en', 1, 'https://ror.org/03feehn34 The Nakamura Hajime Eastern Institute å…¬ē›Šč²”å›£ę³•äŗŗäø­ę‘å…ƒę±ę–¹ē ”ē©¶ę‰€'),
(107873, 'https://ror.org/03fhnqw17', 'en', 1, 'https://ror.org/03fhnqw17 Houju Memorial Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å’Œę„½ä»čŠ³ē čØ˜åæµē—…é™¢'),
(107874, 'https://ror.org/03fj96t64', 'no_lang_code', 1, 'https://ror.org/03fj96t64 Genethon (France) GƩnƩthon'),
(107875, 'https://ror.org/03fkjvy27', 'fr', 1, 'https://ror.org/03fkjvy27 Institut Pasteur de Madagascar'),
(107876, 'https://ror.org/03fm86n58', 'en', 1, 'https://ror.org/03fm86n58 Kitakyushu City Hospital Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŒ—ä¹å·žåø‚ē«‹ē—…é™¢ę©Ÿę§‹'),
(107877, 'https://ror.org/03fmqsk78', 'en', 1, 'https://ror.org/03fmqsk78 Trinity Health Grand Rapids'),
(107878, 'https://ror.org/03fms3g32', 'pt', 1, 'https://ror.org/03fms3g32 Centro de Investigação em Estudos da Criança'),
(107879, 'https://ror.org/03fmts619', 'en', 1, 'https://ror.org/03fmts619 International Economy and Work Research Institute å…¬ē›Šē¤¾å›£ę³•äŗŗå›½éš›ēµŒęøˆåŠ“åƒē ”ē©¶ę‰€'),
(107880, 'https://ror.org/03frdh605', 'en', 1, 'https://ror.org/03frdh605 Huaqiao University åŽä¾Øå¤§å­¦'),
(107881, 'https://ror.org/03frjya69', 'en', 1, 'https://ror.org/03frjya69 Daegu Gyeongbuk Institute of Science and Technology ėŒ€źµ¬ź²½ė¶ź³¼ķ•™źø°ģˆ ģ›'),
(107882, 'https://ror.org/03fs41j10', 'de', 1, 'https://ror.org/03fs41j10 PƤdagogische Hochschule Schaffhausen'),
(107883, 'https://ror.org/03ftejk10', 'en', 1, 'https://ror.org/03ftejk10 V. N. Karazin Kharkiv National University Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’. Š. ŠšŠ°Ń€Š°Š·Ń–Š½Š° Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. Š. ŠšŠ°Ń€Š°Š·ŠøŠ½Š°'),
(107884, 'https://ror.org/03fttn066', 'id', 1, 'https://ror.org/03fttn066 Universitas Muslim Nusantara Al Washliyah'),
(107885, 'https://ror.org/03fvnza37', 'en', 1, 'https://ror.org/03fvnza37 St. Mary''s University, Texas UniversitƩ sainte-marie'),
(107886, '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'),
(107887, 'https://ror.org/03fvwxc59', 'en', 1, 'https://ror.org/03fvwxc59 National Center For Child Health and Development å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹ęˆč‚²åŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(107888, 'https://ror.org/03fxjgq92', 'en', 1, 'https://ror.org/03fxjgq92 Asian Health Institute å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚øć‚¢äæå„ē ”äæ®ę‰€');
INSERT INTO `rors` VALUES
(107889, 'https://ror.org/03g001n57', 'en', 1, 'https://ror.org/03g001n57 Champalimaud Foundation'),
(107890, 'https://ror.org/03g278m11', 'en', 1, 'https://ror.org/03g278m11 JAę–°ę½ŸåŽšē”Ÿé€£ę–°ę½ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ Niigata Medical Center'),
(107891, 'https://ror.org/03g3p3b82', 'en', 1, 'https://ror.org/03g3p3b82 Mount Saint Vincent University'),
(107892, 'https://ror.org/03g41pw14', 'en', 1, 'https://ror.org/03g41pw14 University of Blida, UnivĆ©rsitĆ© Saad Dahlab Blida Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁ„ŁŠŲÆŲ©'),
(107893, 'https://ror.org/03g67sb77', 'en', 1, 'https://ror.org/03g67sb77 University of Economics Varna Š˜ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Варна'),
(107894, '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'),
(107895, 'https://ror.org/03g9v2404', 'en', 1, 'https://ror.org/03g9v2404 Universiteti i TiranĆ«s University of Tirana Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ των Τιράνων'),
(107896, 'https://ror.org/03gb15459', 'pt', 1, 'https://ror.org/03gb15459 Escola de Negócios de Lisboa (Portugal) Lisbon Business School'),
(107897, 'https://ror.org/03gcbhc33', 'fr', 1, 'https://ror.org/03gcbhc33 IFP Ɖnergies nouvelles, Institut FranƧais du PĆ©trole'),
(107898, 'https://ror.org/03gcqw949', 'fr', 1, 'https://ror.org/03gcqw949 Centre Universitaire Nour Bachir El Bayadh Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł†ŁˆŲ± Ų§Ł„ŲØŲ“ŁŠŲ± Ų§Ł„ŲØŁŠŲ¶'),
(107899, 'https://ror.org/03gfc5a27', 'en', 1, 'https://ror.org/03gfc5a27 American Society for Horticultural Science'),
(107900, 'https://ror.org/03gg1ey66', 'en', 1, 'https://ror.org/03gg1ey66 Namibia University of Science and Technology Polytechnikum van Namibiƫ'),
(107901, 'https://ror.org/03ggkx359', 'en', 1, 'https://ror.org/03ggkx359 Gunma Prefectural Government 群馬県庁'),
(107902, 'https://ror.org/03gh19d69', 'en', 1, 'https://ror.org/03gh19d69 University of Zambia'),
(107903, 'https://ror.org/03gjktv92', 'en', 1, 'https://ror.org/03gjktv92 R.M.D. Engineering College'),
(107904, 'https://ror.org/03gmkya61', 'en', 1, 'https://ror.org/03gmkya61 SayFood - Food and Bioproduct Engineering'),
(107905, 'https://ror.org/03gn5cg19', 'en', 1, 'https://ror.org/03gn5cg19 Kahramanmaraş Sütçü İmam University Kahramanmaraş Sütçü İmam Üniversitesi'),
(107906, 'https://ror.org/03gnb6c23', 'en', 1, 'https://ror.org/03gnb6c23 Adeleke University'),
(107907, 'https://ror.org/03gngkv54', 'en', 1, 'https://ror.org/03gngkv54 Sapporo City Institute of Public Health ęœ­å¹Œåø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(107908, 'https://ror.org/03gnh5541', 'en', 1, 'https://ror.org/03gnh5541 Institute of Science and Technology Austria'),
(107909, 'https://ror.org/03gnqp653', 'en', 1, 'https://ror.org/03gnqp653 Poornima University'),
(107910, 'https://ror.org/03gnr7b55', 'fr', 1, 'https://ror.org/03gnr7b55 Nantes UniversitƩ'),
(107911, 'https://ror.org/03grecp63', 'en', 1, 'https://ror.org/03grecp63 Nagasaki City Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé•·å“Žåø‚åŒ»åø«ä¼š'),
(107912, 'https://ror.org/03grx7119', 'en', 1, 'https://ror.org/03grx7119 University of Science and Technology Liaoning č¾½å®ē§‘ęŠ€å¤§å­¦'),
(107913, 'https://ror.org/03gt88y48', 'en', 1, 'https://ror.org/03gt88y48 Aino University Junior College č—é‡Žå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(107914, 'https://ror.org/03gtcxd54', 'en', 1, 'https://ror.org/03gtcxd54 REVA University ರೇವ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(107915, 'https://ror.org/03gthnr76', 'en', 1, 'https://ror.org/03gthnr76 Fukuoka Fisheries and Marine Technology Research Center ē¦å²”ēœŒę°“ē”£ęµ·ę“‹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(107916, 'https://ror.org/03gvvw626', 'en', 1, 'https://ror.org/03gvvw626 Association of Radio Industries and Businesses äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę³¢ē”£ę„­ä¼š'),
(107917, 'https://ror.org/03gx10y75', 'es', 1, 'https://ror.org/03gx10y75 Universidad Gerardo Barrios'),
(107918, 'https://ror.org/03gz68w66', 'en', 1, 'https://ror.org/03gz68w66 National Institute of Geriatrics, Rheumatology and Rehabilitation'),
(107919, 'https://ror.org/03gzr6j88', 'fr', 1, 'https://ror.org/03gzr6j88 University of Abomey-Calavi UniversitƩ d''Abomey-Calavi'),
(107920, 'https://ror.org/03h2xy876', 'en', 1, 'https://ror.org/03h2xy876 Institute of Cardiology'),
(107921, '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'),
(107922, 'https://ror.org/03h45ec67', 'en', 1, 'https://ror.org/03h45ec67 Pamantasan ng Antique University of Antique'),
(107923, 'https://ror.org/03h4qwp45', 'en', 1, 'https://ror.org/03h4qwp45 Ethiopian Forestry Development'),
(107924, 'https://ror.org/03h5b6q78', 'en', 1, 'https://ror.org/03h5b6q78 Wakkanai City Hospital åø‚ē«‹ēØšå†…ē—…é™¢'),
(107925, 'https://ror.org/03h5w3785', 'en', 1, 'https://ror.org/03h5w3785 Kyoto Prefectural Technology Center for Small and Medium Enterprises äŗ¬éƒ½åŗœäø­å°ä¼ę„­ęŠ€č”“ć‚»ćƒ³ć‚æāˆ’'),
(107926, 'https://ror.org/03h7mcc28', 'en', 1, 'https://ror.org/03h7mcc28 Directorate for Social, Behavioral & Economic Sciences'),
(107927, 'https://ror.org/03h86rm10', 'pt', 1, 'https://ror.org/03h86rm10 Centro de Estudos do Ambiente e do Mar'),
(107928, 'https://ror.org/03h8wtj43', 'pt', 1, 'https://ror.org/03h8wtj43 Centro UniversitƔrio de Brusque'),
(107929, 'https://ror.org/03ha64j07', 'es', 1, 'https://ror.org/03ha64j07 Francisco de Vitoria University Universidad Francisco de Vitoria'),
(107930, 'https://ror.org/03ham0v36', 'sr', 1, 'https://ror.org/03ham0v36 Etnografski institut Srpske akademije nauka i umetnosti'),
(107931, 'https://ror.org/03hapbz02', 'en', 1, 'https://ror.org/03hapbz02 Electric Technology Research Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—å”åŒē ”ē©¶ä¼š'),
(107932, 'https://ror.org/03hb9hm67', 'en', 1, 'https://ror.org/03hb9hm67 The Holstein Cattle Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ›ćƒ«ć‚¹ć‚æć‚¤ćƒ³ē™»éŒ²å”ä¼š'),
(107933, 'https://ror.org/03hbmgt12', 'en', 1, 'https://ror.org/03hbmgt12 Hochschule Rosenheim, TH Rosenheim, Technische Hochschule Rosenheim'),
(107934, 'https://ror.org/03hbp5t65', 'en', 1, 'https://ror.org/03hbp5t65 Universidad de Idaho University of Idaho'),
(107935, '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'),
(107936, 'https://ror.org/03hevjm30', 'no_lang_code', 1, 'https://ror.org/03hevjm30 Cihan University-Erbil Zankoy Cihan Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ‡Ų§Ł†'),
(107937, 'https://ror.org/03hf0wx76', 'es', 1, 'https://ror.org/03hf0wx76 Universidad Fraternidad de Agrupaciones Santo TomƔs de Aquino'),
(107938, 'https://ror.org/03hg78m70', 'id', 1, 'https://ror.org/03hg78m70 Institut Parahikma Indonesia'),
(107939, 'https://ror.org/03hkqjb05', 'fr', 1, 'https://ror.org/03hkqjb05 FƩdƩration de Recherche Interactions Fondamentales'),
(107940, 'https://ror.org/03hn7vp62', 'en', 1, 'https://ror.org/03hn7vp62 Future Evidence Foundation'),
(107941, 'https://ror.org/03hp3mw60', 'en', 1, 'https://ror.org/03hp3mw60 Institute of Administrative Management äø€čˆ¬č²”å›£ę³•äŗŗč”Œę”æē®”ē†ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(107942, 'https://ror.org/03hq67y94', 'en', 1, 'https://ror.org/03hq67y94 University of Life Sciences in Lublin Uniwersytet Przyrodniczy w Lublinie'),
(107943, 'https://ror.org/03hqan520', 'en', 1, 'https://ror.org/03hqan520 Royal University of Bhutan འབྲནག་རྒྱལ་འཛིན་གཙནག་ལག་སློབ་སྔེ'),
(107944, 'https://ror.org/03hremv38', 'en', 1, 'https://ror.org/03hremv38 Japan Library Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›³ę›øé¤Øå”ä¼š'),
(107945, 'https://ror.org/03hv7a629', 'es', 1, 'https://ror.org/03hv7a629 Corporación Universitaria Empresarial Alexander von Humboldt'),
(107946, 'https://ror.org/03hx84x94', 'en', 1, 'https://ror.org/03hx84x94 Bingöl University Bingöl Üniversitesi'),
(107947, 'https://ror.org/03j2gem75', 'no_lang_code', 1, 'https://ror.org/03j2gem75 AARNet (Australia)'),
(107948, 'https://ror.org/03j4n8s31', 'en', 1, 'https://ror.org/03j4n8s31 Universiti Selangor University of Selangor'),
(107949, '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'),
(107950, 'https://ror.org/03j6mx979', 'en', 1, 'https://ror.org/03j6mx979 Hakodate Goryoukaku Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗå‡½é¤ØåŽšē”Ÿé™¢å‡½é¤Øäŗ”ēØœéƒ­ē—…é™¢'),
(107951, 'https://ror.org/03jb68d62', 'es', 1, 'https://ror.org/03jb68d62 IEEG, Instituto Electoral del Estado de Guanajuato'),
(107952, 'https://ror.org/03jdf4784', 'en', 1, 'https://ror.org/03jdf4784 Asada Ladies Clinic åŒ»ē™‚ę³•äŗŗęµ…ē”°ćƒ¬ćƒ‡ć‚£ćƒ¼ć‚¹ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(107953, 'https://ror.org/03je5c526', 'en', 1, 'https://ror.org/03je5c526 Atatürk University Atatürk Üniversitesi'),
(107954, 'https://ror.org/03jekm885', 'en', 1, 'https://ror.org/03jekm885 Hokkaido Nuclear Energy Environmental Research Center åŒ—ęµ·é“åŽŸå­åŠ›ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(107955, 'https://ror.org/03jep7677', 'en', 1, 'https://ror.org/03jep7677 Carleton College'),
(107956, 'https://ror.org/03jers953', 'pt', 1, 'https://ror.org/03jers953 Fundação António Aleixo'),
(107957, 'https://ror.org/03jg24239', 'it', 1, 'https://ror.org/03jg24239 Ospedale di Parma'),
(107958, 'https://ror.org/03jhe7195', 'en', 1, 'https://ror.org/03jhe7195 University of Illinois Hospital & Health Sciences System'),
(107959, 'https://ror.org/03jhhfg57', 'en', 1, 'https://ror.org/03jhhfg57 Colombia Adventist University Corporacion Universitaria Adventista'),
(107960, 'https://ror.org/03jk5a988', 'en', 1, 'https://ror.org/03jk5a988 Cooperation on International Traceability in Analytical Chemistry'),
(107961, 'https://ror.org/03jkshc47', 'en', 1, 'https://ror.org/03jkshc47 Medical University of Varna ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Варна'),
(107962, 'https://ror.org/03jnv1a15', 'el', 1, 'https://ror.org/03jnv1a15 EXELISIS IKE (Greece)'),
(107963, 'https://ror.org/03jqs2n27', 'en', 1, 'https://ror.org/03jqs2n27 Macau University of Science and Technology Universidade de CiĆŖncia e Tecnologia de Macau'),
(107964, 'https://ror.org/03jrc1b82', 'nl', 1, 'https://ror.org/03jrc1b82 Strukton (Netherlands)'),
(107965, 'https://ror.org/03jvry011', 'de', 1, 'https://ror.org/03jvry011 Institut für Kultur- und Geistesgeschichte Asiens'),
(107966, 'https://ror.org/03jy2g328', 'en', 1, 'https://ror.org/03jy2g328 Toyama Prefectural Government 富山県庁'),
(107967, 'https://ror.org/03jz67a83', 'no_lang_code', 1, 'https://ror.org/03jz67a83 PTC Therapeutics (United States)'),
(107968, 'https://ror.org/03jzk4720', 'en', 1, 'https://ror.org/03jzk4720 Interdisciplinary Transformation University Austria'),
(107969, 'https://ror.org/03jzxwd55', 'en', 1, 'https://ror.org/03jzxwd55 Japan Institute of Marine Engineering å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒžćƒŖćƒ³ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°å­¦ä¼š'),
(107970, 'https://ror.org/03k1z9s75', 'no_lang_code', 1, 'https://ror.org/03k1z9s75 Temasek Polytechnic 淔马锔理巄学院'),
(107971, 'https://ror.org/03k3nz445', 'en', 1, 'https://ror.org/03k3nz445 Institute of Systems Science Research äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚·ć‚¹ćƒ†ćƒ ē§‘å­¦ē ”ē©¶ę‰€'),
(107972, 'https://ror.org/03k4rda62', 'en', 1, 'https://ror.org/03k4rda62 FishEye Collaborative'),
(107973, 'https://ror.org/03k6zcv51', 'fr', 1, 'https://ror.org/03k6zcv51 Cegep de Saint Hyacinthe, CƩgep de saint-hyacinthe'),
(107974, 'https://ror.org/03k8h3h23', 'en', 1, 'https://ror.org/03k8h3h23 Local Contexts, Local Contexts Inc.'),
(107975, 'https://ror.org/03k98v737', 'en', 1, 'https://ror.org/03k98v737 Audio Engineering Society, Inc., Audio Engineering Society, Inc. (United States)'),
(107976, 'https://ror.org/03k9q0e81', 'en', 1, 'https://ror.org/03k9q0e81 Soran University Ų²Ų§Ł†Ś©Ū†ŪŒ سۆران'),
(107977, 'https://ror.org/03kb2zm15', 'en', 1, 'https://ror.org/03kb2zm15 Land Information Center äø€čˆ¬č²”å›£ę³•äŗŗåœŸåœ°ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(107978, 'https://ror.org/03kdvpr29', 'en', 1, 'https://ror.org/03kdvpr29 Bundesanstalt für Gewässerkunde Federal Institute of Hydrology'),
(107979, 'https://ror.org/03ke6d638', 'id', 1, 'https://ror.org/03ke6d638 Universitas Gadjah Mada'),
(107980, 'https://ror.org/03kedtk42', 'en', 1, 'https://ror.org/03kedtk42 JIPDEC äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęƒ…å ±ēµŒęøˆē¤¾ä¼šęŽØé€²å”ä¼š'),
(107981, 'https://ror.org/03kgj4539', 'no_lang_code', 1, 'https://ror.org/03kgj4539 TRIUMF'),
(107982, 'https://ror.org/03kja7h52', 'fr', 1, 'https://ror.org/03kja7h52 La CitƩ du Genre'),
(107983, 'https://ror.org/03kjjhe36', 'en', 1, 'https://ror.org/03kjjhe36 Tokyo Women''s Medical University ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦'),
(107984, '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'),
(107985, 'https://ror.org/03kndyq24', 'en', 1, 'https://ror.org/03kndyq24 Moshi Co-operative University'),
(107986, 'https://ror.org/03kp94284', 'en', 1, 'https://ror.org/03kp94284 THE Japan Welding Technology Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęŗ¶ęŽ„ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(107987, 'https://ror.org/03kqap970', 'es', 1, 'https://ror.org/03kqap970 Universidad de Oriente'),
(107988, 'https://ror.org/03kv08d37', 'en', 1, 'https://ror.org/03kv08d37 Taiyuan University of Technology å¤ŖåŽŸē†å·„å¤§å­¦'),
(107989, 'https://ror.org/03kx44b81', 'en', 1, 'https://ror.org/03kx44b81 Japan Die Casting Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ€ć‚¤ć‚«ć‚¹ćƒˆå”ä¼š'),
(107990, 'https://ror.org/03m0f1043', 'en', 1, 'https://ror.org/03m0f1043 Tsukuba Central Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč‹„ē«¹ä¼šć¤ćć°ć‚»ćƒ³ćƒˆćƒ©ćƒ«ē—…é™¢'),
(107991, 'https://ror.org/03m0sya71', 'en', 1, 'https://ror.org/03m0sya71 Czech Immunological Society ČeskĆ” ImunologickĆ” Společnost'),
(107992, 'https://ror.org/03m1xdc36', 'en', 1, 'https://ror.org/03m1xdc36 Indian Institute of Management Kozhikode'),
(107993, 'https://ror.org/03m2kj587', 'de', 1, 'https://ror.org/03m2kj587 Hochschule Hannover'),
(107994, 'https://ror.org/03m3btt24', 'pt', 1, 'https://ror.org/03m3btt24 Centro de Biologia Molecular e Ambiental'),
(107995, 'https://ror.org/03m3gzv89', 'fr', 1, 'https://ror.org/03m3gzv89 Ɖcole Nationale VĆ©tĆ©rinaire de Toulouse'),
(107996, 'https://ror.org/03m50n726', 'en', 1, 'https://ror.org/03m50n726 Patuakhali Science and Technology University ą¦Ŗą¦Ÿą§ą¦Æą¦¼ą¦¾ą¦–ą¦¾ą¦²ą§€ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(107997, 'https://ror.org/03m5f7m65', 'en', 1, 'https://ror.org/03m5f7m65 Pilot University of Colombia Universidad Piloto de Colombia'),
(107998, 'https://ror.org/03m66j484', 'es', 1, 'https://ror.org/03m66j484 Instituto Tecnológico de LÔzaro CÔrdenas'),
(107999, 'https://ror.org/03m7qjm52', 'id', 1, 'https://ror.org/03m7qjm52 Universitas Galuh'),
(108000, 'https://ror.org/03m84a908', 'en', 1, 'https://ror.org/03m84a908 Universidad de HolguĆ­n University of HolguĆ­n'),
(108001, 'https://ror.org/03m8f4963', 'en', 1, 'https://ror.org/03m8f4963 Itami Kousei Neurosurgical Hospital ä¼Šäø¹ę’ē”Ÿč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(108002, 'https://ror.org/03m8f5n28', 'en', 1, 'https://ror.org/03m8f5n28 Shonan Keiiku Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å„č‚²ä¼šę¹˜å—ę…¶č‚²ē—…é™¢'),
(108003, 'https://ror.org/03m8mwm20', 'pt', 1, 'https://ror.org/03m8mwm20 Instituto de Oftalmologia Dr Gama Pinto'),
(108004, 'https://ror.org/03m9nwf24', 'en', 1, 'https://ror.org/03m9nwf24 Andrzej Frycz Modrzewski Krakow University Uniwersytet Andrzeja Frycza Modrzewskiego w Krakowie'),
(108005, 'https://ror.org/03mb27p64', 'en', 1, 'https://ror.org/03mb27p64 Tokyo Woman''s Christian University ę±äŗ¬å„³å­å¤§å­¦'),
(108006, 'https://ror.org/03mcsbr76', 'en', 1, 'https://ror.org/03mcsbr76 Schweizerische Vogelwarte Swiss Ornithological Institute'),
(108007, 'https://ror.org/03mcx2558', 'en', 1, 'https://ror.org/03mcx2558 Golestan University of Medical Sciences'),
(108008, 'https://ror.org/03memf294', 'en', 1, 'https://ror.org/03memf294 Gunma Prefectural Forestry Experiment Station ē¾¤é¦¬ēœŒęž—ę„­č©¦éØ“å “'),
(108009, 'https://ror.org/03mfefw72', 'en', 1, 'https://ror.org/03mfefw72 The University of Kitakyushu åŒ—ä¹å·žåø‚ē«‹å¤§å­¦'),
(108010, 'https://ror.org/03mffej36', 'en', 1, 'https://ror.org/03mffej36 Shiga Prefectural Government ę»‹č³€ēœŒåŗ'),
(108011, 'https://ror.org/03mg4x680', 'pt', 1, 'https://ror.org/03mg4x680 Comissão do Mercado de Valores MobiliÔrios'),
(108012, 'https://ror.org/03mhsvf98', 'en', 1, 'https://ror.org/03mhsvf98 Sir Padampat Singhania University सर पदमपत ą¤øą¤æą¤‚ą¤˜ą¤¾ą¤Øą¤æą¤Æą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(108013, 'https://ror.org/03mkjjy25', 'fr', 1, 'https://ror.org/03mkjjy25 UniversitƩ de Versailles Saint-Quentin-en-Yvelines Versailles Saint-Quentin-en-Yvelines University'),
(108014, 'https://ror.org/03mqfn238', 'en', 1, 'https://ror.org/03mqfn238 University of South China 南华大学'),
(108015, 'https://ror.org/03mw46n78', 'ca', 0, 'https://ror.org/03mw46n78 Fundació Clínic per a la Recerca Biomèdica'),
(108016, 'https://ror.org/03mwd2t56', 'en', 1, 'https://ror.org/03mwd2t56 Cardiovascular Hospital of Central Japan åŒ—é–¢ę±å¾Ŗē’°å™Øē—…é™¢'),
(108017, 'https://ror.org/03mwgfy56', 'no_lang_code', 1, 'https://ror.org/03mwgfy56 Tarbiat Modares University دانؓگاه تربیت Ł…ŲÆŲ±Ų³'),
(108018, 'https://ror.org/03mwqca46', 'fr', 1, 'https://ror.org/03mwqca46 University of Saida Dr.Moulay Tahar UniversitĆ© de Saida Dr.Moulay Tahar Ų¬Ų§Ł…Ų¹Ų© سعيدة'),
(108019, 'https://ror.org/03mxeqa17', 'en', 1, 'https://ror.org/03mxeqa17 Ministry of Economy of the Republic of Armenia ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Экономики Республики ŠŃ€Š¼ŠµŠ½ŠøŃ Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ€Õ”Õ¶Ö€Õ”ÕŗÕ„ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ Ō·ÕÆÕøÕ¶ÕøÕ“Õ«ÕÆÕ”ÕµÕ« Õ†Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(108020, 'https://ror.org/03mys6533', 'en', 1, 'https://ror.org/03mys6533 Zhejiang Ocean University ęµ™ę±Ÿęµ·ę“‹å­¦é™¢'),
(108021, 'https://ror.org/03myv4x23', 'en', 1, 'https://ror.org/03myv4x23 Kumamoto Prefectural Fisheries Research Center ē†Šęœ¬ēœŒę°“ē”£ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(108022, 'https://ror.org/03mzvxz96', 'en', 1, 'https://ror.org/03mzvxz96 University of Aleppo UniversitĆ© d''alep Ų¬Ų§Ł…Ų¹Ų© حلب'),
(108023, 'https://ror.org/03n062t48', 'en', 1, 'https://ror.org/03n062t48 Gifu Prefectural Industrial Technology Center å²é˜œēœŒē”£ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(108024, 'https://ror.org/03n273w86', 'en', 1, 'https://ror.org/03n273w86 Rajabhat Maha Sarakham University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøŽąø”ąø«ąø²ąøŖąø²ąø£ąø„ąø²ąø”'),
(108025, 'https://ror.org/03n3yg876', 'fr', 1, 'https://ror.org/03n3yg876 Laboratoire de physique des lasers Laser Physics Laboratory'),
(108026, 'https://ror.org/03n6vpg27', 'en', 1, 'https://ror.org/03n6vpg27 Biwako Professional University of Rehabilitation ć³ć‚ć“ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(108027, 'https://ror.org/03n6x9902', 'en', 1, 'https://ror.org/03n6x9902 VCCT Inc. (Japan)'),
(108028, 'https://ror.org/03n800t92', 'en', 1, 'https://ror.org/03n800t92 Open Knowledge Nepal'),
(108029, 'https://ror.org/03nadee84', 'en', 1, 'https://ror.org/03nadee84 Uniwersytet Wileński Vilniaus universitetas Vilnius University Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108030, 'https://ror.org/03nadks56', 'en', 1, 'https://ror.org/03nadks56 Riga StradiņŔ University Rygos Stradinio universitetas RÄ«gas Stradiņa universitāte Рижский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Паула Š”Ń‚Ń€Š°Š“ŠøŠ½Ń'),
(108031, 'https://ror.org/03nb1x490', 'en', 1, 'https://ror.org/03nb1x490 Fraunhofer Institute for Chemical Technology Fraunhofer-Institut für Chemische Technologie'),
(108032, 'https://ror.org/03nb7az85', 'fr', 1, 'https://ror.org/03nb7az85 Institut de recherches CarrƩ de Malberg'),
(108033, 'https://ror.org/03nb7yk44', 'pt', 1, 'https://ror.org/03nb7yk44 Centro de Física Teórica e Computacional'),
(108034, 'https://ror.org/03nbh7398', 'es', 1, 'https://ror.org/03nbh7398 Fundación Universitaria Católica Lumen Gentium'),
(108035, 'https://ror.org/03nc4h531', 'en', 1, 'https://ror.org/03nc4h531 National Printing Bureau ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹å°åˆ·å±€'),
(108036, 'https://ror.org/03ndtc605', 'en', 1, 'https://ror.org/03ndtc605 Institute of Kampo Medicine äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę¼¢ę–¹åŒ»å­¦ē ”ē©¶ę‰€'),
(108037, 'https://ror.org/03njebb69', 'en', 1, 'https://ror.org/03njebb69 IRCCS San Camillo Hospital'),
(108038, 'https://ror.org/03nk1jp69', 'en', 1, 'https://ror.org/03nk1jp69 Miyazaki Prefectural Government å®®å“ŽēœŒåŗ'),
(108039, 'https://ror.org/03nk5kq98', 'en', 1, 'https://ror.org/03nk5kq98 Saudi Health Council المجلس Ų§Ł„ŲµŲ­ŁŠ Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠ'),
(108040, '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'),
(108041, 'https://ror.org/03nnxqz81', 'en', 1, 'https://ror.org/03nnxqz81 RISE Research Institutes of Sweden'),
(108042, 'https://ror.org/03ntw4c66', 'en', 1, 'https://ror.org/03ntw4c66 Drury University'),
(108043, 'https://ror.org/03nwwjk70', 'pt', 1, 'https://ror.org/03nwwjk70 Sociedade Portuguesa de ObstetrĆ­cia e Medicina Materno-Fetal'),
(108044, 'https://ror.org/03ny5wp25', 'pt', 1, 'https://ror.org/03ny5wp25 Universidade para o Desenvolvimento do Alto Vale do ItajaĆ­'),
(108045, 'https://ror.org/03nyjqm54', 'es', 1, 'https://ror.org/03nyjqm54 Universidad del Valle de Guatemala University of the Valley of Guatemala'),
(108046, 'https://ror.org/03p1rmr05', 'en', 1, 'https://ror.org/03p1rmr05 Shiseido General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę¾ęŸä¼šč‡³čŖ å ‚ē·åˆē—…é™¢'),
(108047, 'https://ror.org/03p37s713', 'es', 1, 'https://ror.org/03p37s713 Corporación Tecnológica Industrial Colombiana'),
(108048, 'https://ror.org/03p3aeb86', 'es', 1, 'https://ror.org/03p3aeb86 Universidad de Murcia Universidade de Murcia Universitat de MĆŗrcia University of Murcia'),
(108049, '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'),
(108050, 'https://ror.org/03pdrsd12', 'en', 1, 'https://ror.org/03pdrsd12 Osaka Gakuin Junior College å¤§é˜Ŗå­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(108051, 'https://ror.org/03pe1mm80', 'en', 1, 'https://ror.org/03pe1mm80 Hampshire College'),
(108052, 'https://ror.org/03pecxr41', 'pt', 1, 'https://ror.org/03pecxr41 Centro de Engenharia Mecânica e Sustentabilidade de Recursos'),
(108053, 'https://ror.org/03pezec88', 'en', 1, 'https://ror.org/03pezec88 Pabna Medical College'),
(108054, 'https://ror.org/03pp6gj92', 'en', 1, 'https://ror.org/03pp6gj92 Centro de LƔseres Pulsados Spanish Center for Pulsed Lasers'),
(108055, 'https://ror.org/03prf0r66', 'en', 1, 'https://ror.org/03prf0r66 Tochigi Prefectural Government 栃木県庁'),
(108056, 'https://ror.org/03prrhh04', 'en', 1, 'https://ror.org/03prrhh04 Institute for Catastrophic Loss Reduction'),
(108057, 'https://ror.org/03psq8c32', 'en', 1, 'https://ror.org/03psq8c32 Iwaki City Medical Center ć„ć‚ćåø‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(108058, 'https://ror.org/03pvja988', 'en', 1, 'https://ror.org/03pvja988 Variable Star Observers League in Japan ę—„ęœ¬å¤‰å…‰ę˜Ÿč¦³ęø¬č€…é€£ē›Ÿ'),
(108059, 'https://ror.org/03pvzjx64', 'es', 1, 'https://ror.org/03pvzjx64 Fundación Instituto Nacional de Heridas'),
(108060, 'https://ror.org/03pxeg974', 'en', 1, 'https://ror.org/03pxeg974 Ishikawa Insect Museum ēŸ³å·ēœŒćµć‚Œć‚ć„ę˜†č™«é¤Ø'),
(108061, 'https://ror.org/03q0ab227', 'de', 1, 'https://ror.org/03q0ab227 Fachhochschule Kiel'),
(108062, 'https://ror.org/03q0t9252', 'en', 1, 'https://ror.org/03q0t9252 Jiangxi University of Science and Technology ę±Ÿč„æē†å·„å¤§å­¦'),
(108063, 'https://ror.org/03q1dcf42', 'en', 1, 'https://ror.org/03q1dcf42 University of Mary Hardin–Baylor'),
(108064, 'https://ror.org/03q1jzv88', 'pt', 1, 'https://ror.org/03q1jzv88 Sociedade Portuguesa de Psiquiatria e SaĆŗde Mental'),
(108065, 'https://ror.org/03q1x3h54', 'en', 1, 'https://ror.org/03q1x3h54 Federal Medical Center, Birnin Kudu'),
(108066, 'https://ror.org/03q201b69', 'en', 1, 'https://ror.org/03q201b69 Belarussian State Pedagogical University Named After Maxim Tank Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ пеГагагічны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń ŠœŠ°ŠŗŃŃ–Š¼Š° Танка Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108067, 'https://ror.org/03q6zg452', 'en', 1, 'https://ror.org/03q6zg452 Obihiro First Hospital å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“åŒ»ē™‚å›£åøÆåŗƒē¬¬äø€ē—…é™¢'),
(108068, 'https://ror.org/03q7j5x89', 'hr', 1, 'https://ror.org/03q7j5x89 Institut DruŔtvenih Znanosti Ivo Pilar'),
(108069, 'https://ror.org/03q8dnn23', 'en', 1, 'https://ror.org/03q8dnn23 City University of Hong Kong'),
(108070, 'https://ror.org/03q8sby79', 'tr', 1, 'https://ror.org/03q8sby79 Istanbul Esenyurt University İstanbul Esenyurt Üniversitesi'),
(108071, 'https://ror.org/03q92e557', 'no_lang_code', 1, 'https://ror.org/03q92e557 Yanka Kupala State University of Grodno ГроГзенскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń Янкі ŠšŃƒŠæŠ°Š»Ń‹ ГроГненский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Янки ŠšŃƒŠæŠ°Š»Ń‹'),
(108072, 'https://ror.org/03qbgfe05', 'pt', 1, 'https://ror.org/03qbgfe05 Universidade do Contestado'),
(108073, 'https://ror.org/03qcvkt88', 'es', 1, 'https://ror.org/03qcvkt88 Dirección General Marítima'),
(108074, 'https://ror.org/03qd78f09', 'en', 1, 'https://ror.org/03qd78f09 Mito Kyodo General Hospital ē·åˆē—…é™¢ę°“ęˆøå”åŒē—…é™¢'),
(108075, 'https://ror.org/03qea8398', 'en', 1, 'https://ror.org/03qea8398 Holland Bloorview Kids Rehabilitation Hospital'),
(108076, 'https://ror.org/03qf6ek79', 'en', 1, 'https://ror.org/03qf6ek79 NCCR Catalysis'),
(108077, 'https://ror.org/03qfdvc46', 'en', 1, 'https://ror.org/03qfdvc46 Centre of Excellence in Molecular Biology'),
(108078, 'https://ror.org/03qfes209', 'en', 1, 'https://ror.org/03qfes209 Sugiyama Chemical and Industrial Laboratory äø€čˆ¬č²”å›£ę³•äŗŗę‰å±±ē”£ę„­åŒ–å­¦ē ”ē©¶ę‰€'),
(108079, 'https://ror.org/03qgfy688', 'fr', 1, 'https://ror.org/03qgfy688 FƩdƩration Ile de France de recherche sur l''environnement'),
(108080, 'https://ror.org/03qhh6685', 'en', 1, 'https://ror.org/03qhh6685 Vector Magnetic Characteristic Technical Lavoratory ćƒ™ć‚Æćƒˆćƒ«ē£ę°—ē‰¹ę€§ęŠ€č”“ē ”ē©¶ę‰€'),
(108081, 'https://ror.org/03qhv9c02', 'en', 1, 'https://ror.org/03qhv9c02 Australia''s Climate Simulator'),
(108082, 'https://ror.org/03qpz0718', 'en', 1, 'https://ror.org/03qpz0718 Sri Sri University'),
(108083, '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'),
(108084, 'https://ror.org/03qsbr555', 'nl', 1, 'https://ror.org/03qsbr555 Hogeschool PXL'),
(108085, 'https://ror.org/03qtjre15', 'es', 1, 'https://ror.org/03qtjre15 Instituto Traumatológico Dr. Teodoro Gebauer Weisser'),
(108086, 'https://ror.org/03qvrwv32', 'nl', 1, 'https://ror.org/03qvrwv32 Gemeente Maastricht'),
(108087, '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'),
(108088, 'https://ror.org/03r0k4b69', 'en', 1, 'https://ror.org/03r0k4b69 University of Barisal বরিশাল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(108089, 'https://ror.org/03r12d203', 'en', 1, 'https://ror.org/03r12d203 Clinical Research Education and Management Services'),
(108090, 'https://ror.org/03r4yvq42', 'en', 1, 'https://ror.org/03r4yvq42 Wagyu Registry Association å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½å’Œē‰›ē™»éŒ²å”ä¼š'),
(108091, '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'),
(108092, 'https://ror.org/03r668693', 'en', 1, 'https://ror.org/03r668693 Mahidol Wittayanusorn School ą¹‚ąø£ąø‡ą¹€ąø£ąøµąø¢ąø™ąø”ąø«ąø“ąø”ąø„ąø§ąø“ąø—ąø¢ąø²ąø™ąøøąøŖąø£ąø“ą¹Œ'),
(108093, 'https://ror.org/03r6aza38', 'id', 1, 'https://ror.org/03r6aza38 Universitas Katolik Widya Mandira'),
(108094, 'https://ror.org/03r6hpz93', 'en', 1, 'https://ror.org/03r6hpz93 State University of Trade and Economics Державний Ń‚Š¾Ń€Š³Š¾Š²ŠµŠ»ŃŒŠ½Š¾-економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108095, 'https://ror.org/03r7nsz84', 'fr', 1, 'https://ror.org/03r7nsz84 Haute Ɖcole Robert Schuman'),
(108096, 'https://ror.org/03r7r0k94', 'fr', 1, 'https://ror.org/03r7r0k94 Laboratoire Informatique, Image et Interaction (L3i)'),
(108097, 'https://ror.org/03r7ras86', 'en', 1, 'https://ror.org/03r7ras86 Pakuan University Universitas Pakuan'),
(108098, 'https://ror.org/03r8ke253', 'pt', 1, 'https://ror.org/03r8ke253 Centro de Estudos e Recuperação de Animais Selvagens'),
(108099, 'https://ror.org/03r8nwp71', 'en', 1, 'https://ror.org/03r8nwp71 Műszaki Egyetem Technical University of Cluj-Napoca Universitatea Tehnică Cluj-Napoca'),
(108100, 'https://ror.org/03r8typ39', 'pt', 1, 'https://ror.org/03r8typ39 Centro de Investigação em Meio Ambiente Genética e Oncobiologia'),
(108101, 'https://ror.org/03r9jms12', 'en', 1, 'https://ror.org/03r9jms12 Consiliul National pentru Dezvoltare si Inovare National Council for Development and Innovation'),
(108102, 'https://ror.org/03ram9582', 'no_lang_code', 1, 'https://ror.org/03ram9582 Shiraume Gakuen University ē™½ę¢…å­¦åœ’å¤§å­¦'),
(108103, 'https://ror.org/03rcspa57', 'en', 1, 'https://ror.org/03rcspa57 Kettering University'),
(108104, 'https://ror.org/03rcwtr18', 'en', 1, 'https://ror.org/03rcwtr18 Laurentian University UniversitƩ Laurentienne'),
(108105, 'https://ror.org/03rdpn141', 'en', 1, 'https://ror.org/03rdpn141 Bursa Technical University Bursa Teknik Üniversitesi'),
(108106, 'https://ror.org/03rejdd20', 'es', 1, 'https://ror.org/03rejdd20 Instituto de Investigaciones JurĆ­dicas y Sociales Ambrosio L. Gioja'),
(108107, 'https://ror.org/03rfvyw43', 'en', 1, 'https://ror.org/03rfvyw43 Slovak University of Agriculture in Nitra SlovenskÔ poľnohospodÔrska univerzita v Nitre'),
(108108, 'https://ror.org/03rfycd69', 'en', 1, 'https://ror.org/03rfycd69 Aliah University আলিয়া ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(108109, 'https://ror.org/03rgjt374', 'en', 1, 'https://ror.org/03rgjt374 Indian Institute of Information Technology Allahabad Institut indien d''informatique d''allahabad'),
(108110, 'https://ror.org/03rh0ye08', 'en', 1, 'https://ror.org/03rh0ye08 Fukui Prefectural General Green Center ē¦äŗ•ēœŒē·åˆć‚°ćƒŖćƒ¼ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(108111, 'https://ror.org/03rh1a838', 'en', 1, 'https://ror.org/03rh1a838 Fukui Industrial Support Center å…¬ē›Šč²”å›£ę³•äŗŗćµćć„ē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(108112, 'https://ror.org/03rj79307', 'ro', 1, 'https://ror.org/03rj79307 Universitatea Nicolae Titulescu din București'),
(108113, 'https://ror.org/03rj87919', 'ms', 1, 'https://ror.org/03rj87919 Politeknik Tuanku Syed Sirajuddin'),
(108114, 'https://ror.org/03rk5jj58', 'en', 1, 'https://ror.org/03rk5jj58 International Institute of Earthquake Engineering and Seismology'),
(108115, 'https://ror.org/03rk9sq81', 'en', 1, 'https://ror.org/03rk9sq81 Malayer University'),
(108116, 'https://ror.org/03rkgeb39', 'fr', 1, 'https://ror.org/03rkgeb39 Animal Genetics and Integrative Biology unit GƩnƩtique Animale et Biologie IntƩgrative'),
(108117, 'https://ror.org/03rkrnn78', 'en', 1, 'https://ror.org/03rkrnn78 Takamatsu Municipal Hospital é«˜ę¾åø‚ē«‹ćæć‚“ćŖć®ē—…é™¢'),
(108118, 'https://ror.org/03rp86n04', 'en', 1, 'https://ror.org/03rp86n04 Japan Society for the Promotion of Machine Industry äø€čˆ¬č²”å›£ę³•äŗŗę©Ÿę¢°ęŒÆčˆˆå”ä¼š'),
(108119, 'https://ror.org/03rp8h078', 'en', 1, 'https://ror.org/03rp8h078 Shandong Women’s University å±±äøœå„³å­å­¦é™¢'),
(108120, 'https://ror.org/03rpe7357', 'en', 1, 'https://ror.org/03rpe7357 Nagano Chuo Hospital é•·é‡ŽåŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆé•·é‡Žäø­å¤®ē—…é™¢'),
(108121, 'https://ror.org/03rqbe322', 'en', 1, 'https://ror.org/03rqbe322 Centrum Dopravního Výzkumu Transport Research Centre'),
(108122, 'https://ror.org/03rqcfv80', 'en', 1, 'https://ror.org/03rqcfv80 Canadian Armed Forces Forces ArmƩes Canadiennes'),
(108123, 'https://ror.org/03rr7xb36', 'en', 1, 'https://ror.org/03rr7xb36 Soka University of America'),
(108124, 'https://ror.org/03rsm0k65', 'en', 1, 'https://ror.org/03rsm0k65 Afe Babalola University'),
(108125, 'https://ror.org/03rzb4f20', 'es', 1, 'https://ror.org/03rzb4f20 Universidad Autónoma del Estado de Morelos'),
(108126, 'https://ror.org/03rzp5127', 'en', 1, 'https://ror.org/03rzp5127 James Hutton Institute'),
(108127, 'https://ror.org/03rzv1186', 'en', 1, 'https://ror.org/03rzv1186 Tagawa Municipal Hospital ē”°å·åø‚ē«‹ē—…é™¢'),
(108128, 'https://ror.org/03rzyjb72', 'fr', 1, 'https://ror.org/03rzyjb72 Centre de Recherche en Nutrition Humaine d''Auvergne'),
(108129, 'https://ror.org/03s0kpb69', 'en', 1, 'https://ror.org/03s0kpb69 JR Sapporo Hospital JRęœ­å¹Œē—…é™¢'),
(108130, 'https://ror.org/03s2x9d90', 'en', 1, 'https://ror.org/03s2x9d90 Ramapo College'),
(108131, 'https://ror.org/03s37k362', 'en', 1, 'https://ror.org/03s37k362 Global Academy of Technology'),
(108132, 'https://ror.org/03s3w2m84', 'en', 1, 'https://ror.org/03s3w2m84 Ministry of Foreign Affairs, Dhaka'),
(108133, 'https://ror.org/03s413k54', 'en', 1, 'https://ror.org/03s413k54 Topfaith University'),
(108134, 'https://ror.org/03s63xr43', 'en', 1, 'https://ror.org/03s63xr43 Japan Pharmaceutical Information Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åŒ»č–¬ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(108135, 'https://ror.org/03s7b3g60', 'en', 1, 'https://ror.org/03s7b3g60 Cryogenics and Superconductivity Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗä½Žęø©å·„å­¦ćƒ»č¶…é›»å°Žå­¦ä¼š'),
(108136, 'https://ror.org/03s7bv520', 'pt', 1, 'https://ror.org/03s7bv520 State University of Roraima Universidade Estadual de Roraima'),
(108137, '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'),
(108138, 'https://ror.org/03s9gtm48', 'en', 1, 'https://ror.org/03s9gtm48 E.G.S. Pillay Engineering College'),
(108139, 'https://ror.org/03s9x8b85', 'en', 1, 'https://ror.org/03s9x8b85 Euro-Mediterranean University of Fes université Euro-Méditerranéenne de Fès'),
(108140, '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'),
(108141, 'https://ror.org/03sawy356', 'se', 1, 'https://ror.org/03sawy356 Region SkƄne Region SkƄne'),
(108142, 'https://ror.org/03sbnrq14', 'en', 1, 'https://ror.org/03sbnrq14 LĆŗrio University Universidade LĆŗrio'),
(108143, 'https://ror.org/03sbpft28', 'en', 1, 'https://ror.org/03sbpft28 Universidad de El Salvador University of El Salvador'),
(108144, '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'),
(108145, 'https://ror.org/03sfk2504', 'en', 1, 'https://ror.org/03sfk2504 South Ural State University Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108146, 'https://ror.org/03she8458', 'en', 1, 'https://ror.org/03she8458 Association of International Research Initiatives for Environmental Studies äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›ē’°å¢ƒē ”ē©¶å”ä¼š'),
(108147, 'https://ror.org/03sj2jc05', 'de', 1, 'https://ror.org/03sj2jc05 Gesellschaft für Anlagen und Reaktorsicherheit Global Research for Safety'),
(108148, 'https://ror.org/03snj0d76', 'en', 1, 'https://ror.org/03snj0d76 Berdyansk State Pedagogical University Š‘ŠµŃ€Š“ŃŠ½ŃŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108149, 'https://ror.org/03srtnf24', 'pt', 1, 'https://ror.org/03srtnf24 Federal University of CearĆ” Universidade Federal do CearĆ”'),
(108150, 'https://ror.org/03stptj97', 'en', 1, 'https://ror.org/03stptj97 Izmir Institute of Technology İzmir Texnologiya İnstitutu İzmir Yüksek Teknoloji Enstitüsü'),
(108151, 'https://ror.org/03svsaq22', 'es', 1, 'https://ror.org/03svsaq22 Universidad Inca Garcilaso de la Vega'),
(108152, 'https://ror.org/03swz6y49', 'en', 1, 'https://ror.org/03swz6y49 Conselho Nacional de Desenvolvimento Científico e Tecnológico National Council for Scientific and Technological Development'),
(108153, 'https://ror.org/03sx84n71', 'en', 1, 'https://ror.org/03sx84n71 Teagasc - The Irish Agriculture and Food Development Authority'),
(108154, 'https://ror.org/03sxdvx36', 'en', 1, 'https://ror.org/03sxdvx36 Nevada System of Higher Education'),
(108155, 'https://ror.org/03szbwj17', 'en', 1, 'https://ror.org/03szbwj17 HonorHealth'),
(108156, 'https://ror.org/03t2vee10', 'en', 1, 'https://ror.org/03t2vee10 Nagoya International Center å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(108157, 'https://ror.org/03t54am93', 'en', 1, 'https://ror.org/03t54am93 Hƶgskolan i Jƶnkƶping Jƶnkƶping University'),
(108158, 'https://ror.org/03t61bk55', 'en', 1, 'https://ror.org/03t61bk55 Fukui Memorial Hospital åŒ»ē™‚ę³•äŗŗč²”å›£é’å±±ä¼šē¦äŗ•čØ˜åæµē—…é™¢'),
(108159, 'https://ror.org/03t7a2639', 'pt', 1, 'https://ror.org/03t7a2639 Brazilian Air Force University Universidade da ForƧa AƩrea'),
(108160, 'https://ror.org/03t988a77', 'en', 1, 'https://ror.org/03t988a77 Japan Food Industry Center äø€čˆ¬č²”å›£ę³•äŗŗé£Ÿå“ē”£ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(108161, 'https://ror.org/03t99av60', 'en', 1, 'https://ror.org/03t99av60 Kyoto Prefectural Agriculture, Forestry and Fisheries Technology Center äŗ¬éƒ½åŗœč¾²ęž—ę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(108162, 'https://ror.org/03t9adt98', 'en', 1, 'https://ror.org/03t9adt98 Beijing University of Agriculture åŒ—äŗ¬å†œå­¦é™¢'),
(108163, 'https://ror.org/03te4vd35', 'en', 1, 'https://ror.org/03te4vd35 Bartin University'),
(108164, 'https://ror.org/03thcgz97', 'en', 1, 'https://ror.org/03thcgz97 Shonai Amarume Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å±±å½¢ę„›åæƒä¼šåŗ„å†…ä½™ē›®ē—…é™¢'),
(108165, 'https://ror.org/03thkvp68', 'fr', 1, 'https://ror.org/03thkvp68 Institut franƧais Deutschland'),
(108166, 'https://ror.org/03tj5qd85', 'en', 1, 'https://ror.org/03tj5qd85 Tampa General Hospital'),
(108167, 'https://ror.org/03tpcyh35', 'en', 1, 'https://ror.org/03tpcyh35 Policy Research Institute, Ministry of Finance č²”å‹™ēœč²”å‹™ē·åˆę”æē­–ē ”ē©¶ę‰€'),
(108168, 'https://ror.org/03tqeft14', 'en', 1, 'https://ror.org/03tqeft14 Wentworth Institute of Technology'),
(108169, 'https://ror.org/03tr61b37', 'en', 1, 'https://ror.org/03tr61b37 Okinawa Christian Junior College ę²–ēø„ć‚­ćƒŖć‚¹ćƒˆę•™ēŸ­ęœŸå¤§å­¦'),
(108170, 'https://ror.org/03trnsb56', 'en', 1, 'https://ror.org/03trnsb56 Vikram Sarabhai Space Centre ą¤µą¤æą¤•ą„ą¤°ą¤® साराभाई अंतराळ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° ą¤µą¤æą¤•ą„ą¤°ą¤® साराभाई ą¤…ą¤‚ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° ą®µą®æą®•ąÆą®°ą®®ąÆ ą®šą®¾ą®°ą®¾ą®Ŗą®¾ą®ÆąÆ ą®µą®æą®£ąÆą®µąÆ†ą®³ą®æ ą®®ąÆˆą®Æą®®ąÆ ą“µą“æą“•ąµą“°ą“‚ ą“øą“¾ą“°ą“¾ą“­ą“¾ą“Æąµ ą“¬ą“¹ą“æą“°ą“¾ą“•ą“¾ą“¶ą“•ąµ‡ą“Øąµą“¦ąµą“°ą“‚'),
(108171, 'https://ror.org/03tv88982', 'en', 1, 'https://ror.org/03tv88982 New York Botanical Garden'),
(108172, 'https://ror.org/03tw56e23', 'en', 1, 'https://ror.org/03tw56e23 Akita Fruit-Tree Experiment Station ē§‹ē”°ēœŒęžœęØ¹č©¦éØ“å “'),
(108173, 'https://ror.org/03tw8sj29', 'en', 1, 'https://ror.org/03tw8sj29 Yamanashi Prefectural Agricultural Technology Center å±±ę¢ØēœŒē·åˆč¾²ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(108174, 'https://ror.org/03tzb2h73', 'en', 1, 'https://ror.org/03tzb2h73 Ajou University ģ•„ģ£¼ėŒ€ķ•™źµ'),
(108175, 'https://ror.org/03v0qd864', 'es', 1, 'https://ror.org/03v0qd864 Universidad de Los Andes, Chile University of the Andes, Chile'),
(108176, 'https://ror.org/03v2nbx43', 'en', 1, 'https://ror.org/03v2nbx43 Banca d''Italia Bank of Italy'),
(108177, 'https://ror.org/03v2r6x37', 'en', 1, 'https://ror.org/03v2r6x37 Bigelow Laboratory for Ocean Sciences'),
(108178, 'https://ror.org/03v4km086', 'pl', 1, 'https://ror.org/03v4km086 Instytut Matki i Dziecka'),
(108179, 'https://ror.org/03v783k16', 'en', 1, 'https://ror.org/03v783k16 University of Kalyani ą¦•ą¦²ą§ą¦Æą¦¾ą¦£ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(108180, 'https://ror.org/03v84dj52', 'en', 1, 'https://ror.org/03v84dj52 Kawakita General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę²³åŒ—åŒ»ē™‚č²”å›£ę²³åŒ—ē·åˆē—…é™¢'),
(108181, 'https://ror.org/03v8pkb73', 'en', 1, 'https://ror.org/03v8pkb73 Oita Prefectural Police å¤§åˆ†ēœŒč­¦åÆŸ'),
(108182, 'https://ror.org/03v9e8t09', 'es', 1, 'https://ror.org/03v9e8t09 Centro de BiologĆ­a Molecular Severo Ochoa'),
(108183, 'https://ror.org/03vcded87', 'en', 0, 'https://ror.org/03vcded87 Western Connecticut Health Network'),
(108184, 'https://ror.org/03vcw1x21', 'en', 1, 'https://ror.org/03vcw1x21 King Edward Memorial Hospital and Seth G.S. Medical College राजा ą¤ą¤”ą„ą¤µą¤°ą„ą¤” ą¤øą„ą¤®ą¤¾ą¤°ą¤• ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ व ą¤øą„‡ą¤  ą¤—ą„‹ą¤µą¤°ą„ą¤§ą¤Øą¤¦ą¤¾ą¤ø ą¤øą„ą¤‚ą¤¦ą¤°ą¤¦ą¤¾ą¤ø ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®•ą®æą®™ąÆ ą®Žą®ŸąÆą®µą®°ąÆą®ŸąÆ நினைவு ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(108185, 'https://ror.org/03vdarm34', 'en', 1, 'https://ror.org/03vdarm34 Al-Hadba University Ų¬Ų§Ł…Ų¹Ų© الحدباؔ'),
(108186, 'https://ror.org/03vdm5c68', 'en', 1, 'https://ror.org/03vdm5c68 Texas Wesleyan University'),
(108187, 'https://ror.org/03vdt4f56', 'pt', 1, 'https://ror.org/03vdt4f56 Centro de Estudos Transdisciplinares para o Desenvolvimento'),
(108188, '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" Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр аграрной ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ ŃŠµŠ»ŃŒŃŠŗŠøŃ… территорий - Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(108189, 'https://ror.org/03vgz7r63', 'en', 1, 'https://ror.org/03vgz7r63 Centre for Electrochemical Technologies'),
(108190, 'https://ror.org/03vhr8v79', 'es', 1, 'https://ror.org/03vhr8v79 Escuela Superior de Administración Pública'),
(108191, 'https://ror.org/03vk2ee13', 'en', 1, 'https://ror.org/03vk2ee13 Japanese Society of Periodontology ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ę­Æå‘Øē—…å­¦ä¼š'),
(108192, 'https://ror.org/03vn0fp34', 'ca', 1, 'https://ror.org/03vn0fp34 Fundació Salut Empordà'),
(108193, 'https://ror.org/03vnpk711', 'en', 1, 'https://ror.org/03vnpk711 Sendai City Institute of Public Health ä»™å°åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(108194, 'https://ror.org/03vs03g62', 'en', 1, 'https://ror.org/03vs03g62 Institut de Cardiologie de MontrƩal Montreal Heart Institute'),
(108195, 'https://ror.org/03vsh1a40', 'pt', 1, 'https://ror.org/03vsh1a40 Centro de Inovação em Tecnologias e Cuidados de Saúde'),
(108196, 'https://ror.org/03vsze143', 'en', 1, 'https://ror.org/03vsze143 Niigata Prefectural Inland Water Fisheries Experiment Station ę–°ę½ŸēœŒå†…ę°“é¢ę°“ē”£č©¦éØ“å “'),
(108197, 'https://ror.org/03vtagt31', 'fr', 1, 'https://ror.org/03vtagt31 Paris Jourdan Sciences Economiques'),
(108198, 'https://ror.org/03vtywh31', 'no_lang_code', 1, 'https://ror.org/03vtywh31 MSD (Australia)'),
(108199, 'https://ror.org/03vvt5470', 'en', 1, 'https://ror.org/03vvt5470 International Development Center of Japan äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(108200, 'https://ror.org/03vvy0v27', 'en', 1, 'https://ror.org/03vvy0v27 Det Kongelige Bibliotek Royal Danish Library'),
(108201, 'https://ror.org/03vvzk644', 'en', 1, 'https://ror.org/03vvzk644 American University of Central Asia OŹ»rta Osiyo Amerika Universiteti Американский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(108202, 'https://ror.org/03vzjhn88', 'en', 1, 'https://ror.org/03vzjhn88 Shiite Endowment Diwan'),
(108203, 'https://ror.org/03vzvbw58', 'en', 1, 'https://ror.org/03vzvbw58 Riley Hospital for Children'),
(108204, 'https://ror.org/03vzxt803', 'en', 1, 'https://ror.org/03vzxt803 Japan Marine Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęµ·ę“‹ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(108205, 'https://ror.org/03w0a9c02', 'fr', 0, 'https://ror.org/03w0a9c02 Laboratoire Bio-peroxIL'),
(108206, 'https://ror.org/03w0jkt32', 'en', 1, 'https://ror.org/03w0jkt32 Technology Research Association for Next generation natural products chemistry ę¬”äø–ä»£å¤©ē„¶ē‰©åŒ–å­¦ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(108207, 'https://ror.org/03w0x6k04', 'en', 1, 'https://ror.org/03w0x6k04 Fujinomiya City General Hospital åÆŒå£«å®®åø‚ē«‹ē—…é™¢'),
(108208, 'https://ror.org/03w1s3j27', 'en', 1, 'https://ror.org/03w1s3j27 Integrative Graduate Education and Research Traineeship'),
(108209, 'https://ror.org/03w54w620', 'en', 1, 'https://ror.org/03w54w620 British Trust for Ornithology'),
(108210, 'https://ror.org/03w63ta28', 'en', 1, 'https://ror.org/03w63ta28 Kato Ladies Clinic åŠ č—¤ćƒ¬ćƒ‡ć‚£ć‚¹ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(108211, 'https://ror.org/03w747513', 'no_lang_code', 1, 'https://ror.org/03w747513 Bluepoint (Romania)'),
(108212, 'https://ror.org/03w7bgm07', 'es', 1, 'https://ror.org/03w7bgm07 Universidad Nacional Santiago AntĆŗnez de Mayolo'),
(108213, 'https://ror.org/03w87mp28', 'en', 1, 'https://ror.org/03w87mp28 Kita Harima Medical Center åŒ—ę’­ē£Øē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(108214, 'https://ror.org/03wb8xz10', 'no_lang_code', 1, 'https://ror.org/03wb8xz10 ƉlectricitĆ© de France (France)'),
(108215, 'https://ror.org/03wcbtz60', 'en', 1, 'https://ror.org/03wcbtz60 Climate Change and Health Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ تغیر Ų§Ł‚Ł„ŪŒŁ… و سلامت'),
(108216, 'https://ror.org/03wct8w46', 'fr', 1, 'https://ror.org/03wct8w46 CERMICS, Centre d’Enseignement et de Recherche en MathĆ©matIques et Calcul Scientifique'),
(108217, 'https://ror.org/03wf51b65', 'de', 1, 'https://ror.org/03wf51b65 SLUB Dresden Saxon State and University Library Dresden'),
(108218, 'https://ror.org/03wfca816', 'en', 1, 'https://ror.org/03wfca816 Akademia Mohylańska w Kijowie National University of Kyiv Mohyla Academy ŠšŠøŃ”Š²Š¾-ŠœŠ¾Š³ŠøŠ»ŃŠ½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Киево-ŠœŠ¾Š³ŠøŠ»ŃŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(108219, 'https://ror.org/03wjngf63', 'en', 1, 'https://ror.org/03wjngf63 Ibaraki Prefectural Institute of Public Health čŒØåŸŽēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(108220, 'https://ror.org/03wk7a387', 'en', 1, 'https://ror.org/03wk7a387 The Graduate School of Project Design äŗ‹ę„­ę§‹ęƒ³å¤§å­¦é™¢å¤§å­¦'),
(108221, 'https://ror.org/03wkt5x30', 'fr', 1, 'https://ror.org/03wkt5x30 MusƩum national d''Histoire naturelle National Museum of Natural History'),
(108222, 'https://ror.org/03wqgqd89', 'en', 1, 'https://ror.org/03wqgqd89 Graphic Era University ą¤—ą„ą¤°ą¤¾ą¤«ą¤¼ą¤æą¤• ą¤ą¤°ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(108223, 'https://ror.org/03ws9bs22', 'en', 1, 'https://ror.org/03ws9bs22 Ajinomoto Dietary Culture Center å…¬ē›Šč²”å›£ę³•äŗŗå‘³ć®ē“ é£Ÿć®ę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(108224, 'https://ror.org/03wt3br81', 'en', 1, 'https://ror.org/03wt3br81 Klimat- och nƤringslivsdepartementet Ministry of Climate and Enterprise'),
(108225, 'https://ror.org/03wtqpk68', 'no_lang_code', 1, 'https://ror.org/03wtqpk68 Technischer Überwachungsverein TÜV Rheinland (Germany)'),
(108226, 'https://ror.org/03wvqgn13', 'en', 1, 'https://ror.org/03wvqgn13 Hiroshima Prefectural Government 広島県庁'),
(108227, 'https://ror.org/03wvtrq14', 'en', 1, 'https://ror.org/03wvtrq14 National Institute of Fundamental Studies ą¶¢ą·ą¶­ą·’ą¶š ą¶øą·–ą¶½ą·’ą¶š ą¶…ą¶°ą·Šā€ą¶ŗą¶± ආයතනය'),
(108228, 'https://ror.org/03wz4p175', 'en', 1, 'https://ror.org/03wz4p175 The Japan Welding Engineering Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęŗ¶ęŽ„å”ä¼š'),
(108229, 'https://ror.org/03wze7d53', 'en', 1, 'https://ror.org/03wze7d53 Douglas College'),
(108230, 'https://ror.org/03x0yya69', 'en', 1, 'https://ror.org/03x0yya69 Central Institute for Labour Protection Centralny Instytut Ochrony Pracy'),
(108231, 'https://ror.org/03x26x505', 'no_lang_code', 1, 'https://ror.org/03x26x505 Teleflex (Ireland)'),
(108232, 'https://ror.org/03x297z98', 'en', 1, 'https://ror.org/03x297z98 Agderin yliopisto University of Agder'),
(108233, 'https://ror.org/03x2amr67', 'en', 1, 'https://ror.org/03x2amr67 Jiangsu Frontier Electric Technology Co., Ltd., Jiangsu Frontier Electric Technology Co., Ltd. (China) ę±Ÿč‹ę–¹å¤©ē”µåŠ›ęŠ€ęœÆęœ‰é™å…¬åø'),
(108234, 'https://ror.org/03x2m4d16', 'en', 1, 'https://ror.org/03x2m4d16 Trunojoyo University Universitas Trunojoyo Madura'),
(108235, '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'),
(108236, 'https://ror.org/03x38rw49', 'en', 1, 'https://ror.org/03x38rw49 Shinozaki Medical Clinic ēÆ å“Žå†…ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(108237, 'https://ror.org/03x3g5758', 'en', 1, 'https://ror.org/03x3g5758 National Marine Fisheries Research Institute'),
(108238, 'https://ror.org/03x57gn41', 'en', 1, 'https://ror.org/03x57gn41 Australian Institute of Marine Science'),
(108239, 'https://ror.org/03x7msx65', 'en', 1, 'https://ror.org/03x7msx65 Academy of Christian Humanism University Universidad Academia de Humanismo Cristiano'),
(108240, 'https://ror.org/03x9hh156', 'en', 1, 'https://ror.org/03x9hh156 Council for Geoscience'),
(108241, 'https://ror.org/03xawq568', 'en', 1, 'https://ror.org/03xawq568 Agricultural University of Athens UniversitĆ© d''agriculture d''athĆØnes Ī“ĪµĻ‰Ļ€ĪæĪ½Ī¹ĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(108242, 'https://ror.org/03xc55g68', 'fr', 1, 'https://ror.org/03xc55g68 UniversitƩ Mohammed VI Polytechnique'),
(108243, 'https://ror.org/03xdfcy19', 'en', 1, 'https://ror.org/03xdfcy19 Tatebayashi Kosei General Hospital å…¬ē«‹é¤Øęž—åŽšē”Ÿē—…é™¢'),
(108244, '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');
INSERT INTO `rors` VALUES
(108245, 'https://ror.org/03xes6q20', 'en', 1, 'https://ror.org/03xes6q20 Utsunomiya Junior College å®‡éƒ½å®®ēŸ­ęœŸå¤§å­¦'),
(108246, 'https://ror.org/03xgcq477', 'en', 1, 'https://ror.org/03xgcq477 Hochschule für Technik, Wirtschaft und Kultur Leipzig Leipzig University of Applied Sciences'),
(108247, 'https://ror.org/03xjfrn37', 'en', 1, 'https://ror.org/03xjfrn37 Fort Hays Tech Northwest'),
(108248, 'https://ror.org/03xk4a758', 'no_lang_code', 1, 'https://ror.org/03xk4a758 Valneva (Austria)'),
(108249, 'https://ror.org/03xkj6a08', 'en', 1, 'https://ror.org/03xkj6a08 Kent Scientific Corporation, Kent Scientific Corporation (United States)'),
(108250, 'https://ror.org/03xq4x896', 'nl', 1, 'https://ror.org/03xq4x896 Institut de mƩdecine tropicale Institute of Tropical Medicine Antwerp Instituut voor Tropische Geneeskunde'),
(108251, 'https://ror.org/03xq7w797', 'fr', 1, 'https://ror.org/03xq7w797 Centre Hospitalier de Luxembourg'),
(108252, 'https://ror.org/03xqtf034', 'en', 1, 'https://ror.org/03xqtf034 Nederlands Kanker Instituut The Netherlands Cancer Institute'),
(108253, 'https://ror.org/03xrwvc31', 'en', 1, 'https://ror.org/03xrwvc31 Amal College of Advanced Studies'),
(108254, 'https://ror.org/03xry4v27', 'en', 1, 'https://ror.org/03xry4v27 Slovenian National Building and Civil Engineering Institute'),
(108255, 'https://ror.org/03xw5ev35', 'en', 1, 'https://ror.org/03xw5ev35 ORFEO-CINQA Research Network'),
(108256, 'https://ror.org/03xw95w54', 'es', 1, 'https://ror.org/03xw95w54 CETAQUA Water Technology Centre Centro Tecnológico del Agua'),
(108257, 'https://ror.org/03xwwht98', 'es', 1, 'https://ror.org/03xwwht98 Centro de Biomateriales e IngenierĆ­a Tisular'),
(108258, 'https://ror.org/03xyve152', 'en', 1, 'https://ror.org/03xyve152 National Autonomous University of Honduras Universidad Nacional Autónoma de Honduras'),
(108259, 'https://ror.org/03y211p39', 'id', 1, 'https://ror.org/03y211p39 Universitas Krisnadwipayana'),
(108260, 'https://ror.org/03y5msf78', 'en', 1, 'https://ror.org/03y5msf78 Florida Fish and Wildlife Conservation Commission'),
(108261, 'https://ror.org/03yb7n124', 'en', 1, 'https://ror.org/03yb7n124 Kakogawa City Hospital Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ å¤å·åø‚ę°‘ē—…é™¢ę©Ÿę§‹'),
(108262, 'https://ror.org/03ybej830', 'en', 1, 'https://ror.org/03ybej830 Aju Pharm, Aju Pharm (South Korea) ģ•„ģ£¼ģ•½ķ’ˆ'),
(108263, 'https://ror.org/03ybmxt82', 'en', 1, 'https://ror.org/03ybmxt82 Guangzhou Laboratory, Guangzhou National Laboratory å¹æå·žå®žéŖŒå®¤'),
(108264, 'https://ror.org/03ydhsz75', 'en', 1, 'https://ror.org/03ydhsz75 Ergolight ××Ø×’×•×œ×™×™×˜'),
(108265, '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'),
(108266, 'https://ror.org/03yez3163', 'en', 1, 'https://ror.org/03yez3163 King Fahd University of Petroleum and Minerals Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ فهد Ł„Ł„ŲØŲŖŲ±ŁˆŁ„ ŁˆŲ§Ł„Ł…Ų¹Ų§ŲÆŁ†'),
(108267, 'https://ror.org/03ygpv007', 'en', 1, 'https://ror.org/03ygpv007 Otakanomori Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é«˜ä¼šćŠćŠćŸć‹ć®ę£®ē—…é™¢'),
(108268, 'https://ror.org/03yh0n709', 'en', 1, 'https://ror.org/03yh0n709 Liaocheng University čŠåŸŽå¤§å­¦'),
(108269, 'https://ror.org/03yht3k11', 'en', 1, 'https://ror.org/03yht3k11 Shumen University Шуменски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108270, 'https://ror.org/03ykbk197', 'en', 1, 'https://ror.org/03ykbk197 University of Portsmouth'),
(108271, 'https://ror.org/03ym7ve89', 'no', 1, 'https://ror.org/03ym7ve89 Lovisenberg Diakonale Sykehus'),
(108272, 'https://ror.org/03ytqnm28', 'en', 1, 'https://ror.org/03ytqnm28 Central University of Tamil Nadu ą¤¤ą¤®ą¤æą¤²ą¤Øą¤¾ą¤”ą„ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®®ą®¤ąÆą®¤ą®æą®Æą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(108273, 'https://ror.org/03yxg7206', 'es', 1, 'https://ror.org/03yxg7206 Instituto Nacional de Salud'),
(108274, 'https://ror.org/03yxnpp24', 'es', 1, 'https://ror.org/03yxnpp24 Universidad de Sevilla University of Seville'),
(108275, 'https://ror.org/03yz67v10', 'pt', 1, 'https://ror.org/03yz67v10 Direção Regional dos Assuntos do Mar'),
(108276, 'https://ror.org/03z0n5k81', 'en', 1, 'https://ror.org/03z0n5k81 M. Kumarasamy College of Engineering'),
(108277, 'https://ror.org/03z1wm043', 'id', 1, 'https://ror.org/03z1wm043 Universitas Islam Negeri Sumatera Utara'),
(108278, 'https://ror.org/03z2mrm76', 'en', 1, 'https://ror.org/03z2mrm76 Surgical Research and Global Education Lab (SURGE Lab)'),
(108279, 'https://ror.org/03z44m407', 'en', 1, 'https://ror.org/03z44m407 Caleb University'),
(108280, 'https://ror.org/03z475876', 'it', 1, 'https://ror.org/03z475876 Policlinico Tor Vergata'),
(108281, 'https://ror.org/03z4npt02', 'pt', 1, 'https://ror.org/03z4npt02 Centro de Engenharia Mecânica Materiais e Processos'),
(108282, 'https://ror.org/03z4qet58', 'es', 1, 'https://ror.org/03z4qet58 Universidad Agraria del Ecuador'),
(108283, 'https://ror.org/03z6f7h27', 'pt', 1, 'https://ror.org/03z6f7h27 Fundação Portuguesa de Cardiologia'),
(108284, 'https://ror.org/03z77qz90', 'en', 1, 'https://ror.org/03z77qz90 Tartu Ülikool University of Tartu Š¢Š°Ń€Ń‚ŃƒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108285, 'https://ror.org/03z8fyr40', 'en', 1, 'https://ror.org/03z8fyr40 Karadeniz Technical University Karadeniz Teknik Üniversitesi'),
(108286, 'https://ror.org/03z9tma90', 'en', 1, 'https://ror.org/03z9tma90 Boğaziçi University Boğaziçi Üniversitesi'),
(108287, 'https://ror.org/03z9wm572', 'pt', 1, 'https://ror.org/03z9wm572 Federal University of Fronteira Sul Universidade Federal da Fronteira Sul'),
(108288, 'https://ror.org/03zbnzt98', 'en', 1, 'https://ror.org/03zbnzt98 Woods Hole Oceanographic Institution'),
(108289, 'https://ror.org/03zcsz552', 'en', 1, 'https://ror.org/03zcsz552 Takamatsu Junior College é«˜ę¾ēŸ­ęœŸå¤§å­¦'),
(108290, 'https://ror.org/03zd3ta61', 'en', 1, 'https://ror.org/03zd3ta61 Shanxi Normal University'),
(108291, 'https://ror.org/03ze70h02', 'en', 1, 'https://ror.org/03ze70h02 Gonzaga University Universidad Gonzaga'),
(108292, 'https://ror.org/03zh5eq96', 'en', 1, 'https://ror.org/03zh5eq96 Hochschule Offenburg Offenburg University of Applied Sciences'),
(108293, 'https://ror.org/03zhk3020', 'en', 1, 'https://ror.org/03zhk3020 Armenian State Pedagogical University after Khachatur Abovian Õ€Õ”ÕµÕÆÕ”ÕÆÕ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ“Õ”Õ¶ÕÆÕ”Õ¾Õ”Ö€ÕŖÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(108294, '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'),
(108295, 'https://ror.org/03zkz9130', 'en', 1, 'https://ror.org/03zkz9130 Japan RiverFront research Center å…¬ē›Šč²”å›£ę³•äŗŗćƒŖćƒćƒ¼ćƒ•ćƒ­ćƒ³ćƒˆē ”ē©¶ę‰€'),
(108296, 'https://ror.org/03zmnt269', 'es', 1, 'https://ror.org/03zmnt269 Universidad Nacional del Santa'),
(108297, 'https://ror.org/03znejq22', 'en', 1, 'https://ror.org/03znejq22 Tomakomai City Hospital č‹«å°ē‰§åø‚ē«‹ē—…é™¢'),
(108298, 'https://ror.org/03znjxt55', 'en', 1, 'https://ror.org/03znjxt55 Mercatorum University UniversitĆ  Telematica Universitas Mercatorum'),
(108299, 'https://ror.org/03zq0dg86', 'en', 1, 'https://ror.org/03zq0dg86 University Colleges Leuven-Limburg'),
(108300, 'https://ror.org/03zqd3v71', 'en', 1, 'https://ror.org/03zqd3v71 The Japan Research Institute of Industrial Science äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē”£ę„­ē§‘å­¦ē ”ē©¶ę‰€'),
(108301, 'https://ror.org/03zse0q26', 'en', 1, 'https://ror.org/03zse0q26 American Indian Law Alliance'),
(108302, 'https://ror.org/03zsqw120', 'en', 1, 'https://ror.org/03zsqw120 Higashisumiyoshi Morimoto Hospital åŒ»ē™‚ę³•äŗŗę©˜ä¼šę±ä½å‰ę£®ęœ¬ē—…é™¢'),
(108303, 'https://ror.org/03ztgj037', 'en', 1, 'https://ror.org/03ztgj037 Deutsches Klimarechenzentrum German Climate Computing Centre'),
(108304, 'https://ror.org/03ztnr397', 'es', 1, 'https://ror.org/03ztnr397 Universidad Autónoma del Beni'),
(108305, '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'),
(108306, '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'),
(108307, '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'),
(108308, 'https://ror.org/03zyp6p76', 'en', 1, 'https://ror.org/03zyp6p76 Yokohama National University ęØŖęµœå›½ē«‹å¤§å­¦'),
(108309, 'https://ror.org/0400am365', 'en', 1, 'https://ror.org/0400am365 Bangladesh University of Business and Technology বাংলাদেশ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(108310, 'https://ror.org/04013rx15', 'en', 1, 'https://ror.org/04013rx15 Concordia University of Edmonton'),
(108311, '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'),
(108312, 'https://ror.org/0406pmf58', 'es', 1, 'https://ror.org/0406pmf58 Universidad Tecnológica del Perú'),
(108313, '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'),
(108314, 'https://ror.org/04084tn63', 'en', 1, 'https://ror.org/04084tn63 National Autonomous University of Nicaragua Universidad Nacional Autónoma de Nicaragua'),
(108315, '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"'),
(108316, 'https://ror.org/0408b2b02', 'pt', 1, 'https://ror.org/0408b2b02 Centro de Direito da FamĆ­lia'),
(108317, 'https://ror.org/0408v4c28', 'nl', 1, 'https://ror.org/0408v4c28 Centraal Bureau voor de Statistiek Statistics Netherlands'),
(108318, 'https://ror.org/04091f946', 'en', 1, 'https://ror.org/04091f946 SzƩchenyi IstvƔn Egyetem SzƩchenyi IstvƔn University'),
(108319, 'https://ror.org/0409v6m60', 'en', 1, 'https://ror.org/0409v6m60 Japanese Standards Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬č¦ę ¼å”ä¼š'),
(108320, 'https://ror.org/040baw385', 'fr', 1, 'https://ror.org/040baw385 Centrale Marseille'),
(108321, 'https://ror.org/040bmjj59', 'en', 1, 'https://ror.org/040bmjj59 Radiant Earth'),
(108322, 'https://ror.org/040cqjs91', 'en', 1, 'https://ror.org/040cqjs91 New Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒ‹ćƒ„ćƒ¼ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ęŒÆčˆˆč²”å›£'),
(108323, 'https://ror.org/040cw1309', 'en', 1, 'https://ror.org/040cw1309 Incedo Inc.'),
(108324, 'https://ror.org/040fc1e14', 'en', 1, 'https://ror.org/040fc1e14 National Information Processing Institute Ośrodek Przetwarzania Informacji'),
(108325, 'https://ror.org/040h76494', 'en', 1, 'https://ror.org/040h76494 Manipal University Jaipur'),
(108326, 'https://ror.org/040hbk441', 'es', 1, 'https://ror.org/040hbk441 Universidad Nacional Pedro RuĆ­z Gallo'),
(108327, 'https://ror.org/040ja7936', 'en', 1, 'https://ror.org/040ja7936 Japan Energy Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•åŠ›å”ä¼š'),
(108328, 'https://ror.org/040kwf410', 'es', 1, 'https://ror.org/040kwf410 Universidad Tecnológica Oteima'),
(108329, 'https://ror.org/040mpqc50', 'en', 1, 'https://ror.org/040mpqc50 Japan Foods Inspection Corporation äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ę¤œęŸ»'),
(108330, 'https://ror.org/040r16a68', 'en', 1, 'https://ror.org/040r16a68 Construction Research Institute äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ē‰©ä¾”čŖæęŸ»ä¼š'),
(108331, 'https://ror.org/040r57n67', 'en', 1, 'https://ror.org/040r57n67 Centrum Astronomiczne im. Mikołaja Kopernika Nicolaus Copernicus Astronomical Center'),
(108332, 'https://ror.org/040v70252', 'en', 1, 'https://ror.org/040v70252 Universiti Malaysia Sabah Universiti of Malaysia Sabah 沙巓大学'),
(108333, 'https://ror.org/040x97916', 'en', 1, 'https://ror.org/040x97916 London Borough of Redbridge'),
(108334, 'https://ror.org/040xdtr21', 'en', 1, 'https://ror.org/040xdtr21 MSD (Czech Republic)'),
(108335, 'https://ror.org/040zdp973', 'pt', 1, 'https://ror.org/040zdp973 Centro de Formação Cristã'),
(108336, 'https://ror.org/04100x327', 'en', 1, 'https://ror.org/04100x327 Gifu Prefectural Agricultural Technology Center å²é˜œēœŒč¾²ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(108337, 'https://ror.org/0410gdv63', 'it', 1, 'https://ror.org/0410gdv63 Istituto Imaging della Svizzera Italiana'),
(108338, 'https://ror.org/0412swj16', 'en', 1, 'https://ror.org/0412swj16 Osaka Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗåŗœēœ‹č­·å”ä¼š'),
(108339, 'https://ror.org/0414ppq07', 'en', 1, 'https://ror.org/0414ppq07 San Juan Bautista School of Medicine'),
(108340, 'https://ror.org/0414v5413', 'en', 1, 'https://ror.org/0414v5413 The Hyogo Institute of Assistive Technology å…µåŗ«ēœŒē«‹ē¦ē„‰ć®ć¾ć”ć„ćć‚Šē ”ē©¶ę‰€'),
(108341, 'https://ror.org/0415fce48', 'en', 1, 'https://ror.org/0415fce48 ZhengZhou Shengda University Of Economics, Business & Management éƒ‘å·žå‡č¾¾ē»č“øē®”ē†å­¦é™¢'),
(108342, 'https://ror.org/0415mh255', 'nl', 1, 'https://ror.org/0415mh255 SSH-council of the Netherlands SSH-raad'),
(108343, 'https://ror.org/04175wc52', 'tr', 1, 'https://ror.org/04175wc52 Düzce University Düzce Üniversitesi'),
(108344, 'https://ror.org/0417ye583', 'da', 1, 'https://ror.org/0417ye583 State Serum Institute Statens Serum Institut'),
(108345, 'https://ror.org/0418av495', 'en', 1, 'https://ror.org/0418av495 Alda Research Institute'),
(108346, 'https://ror.org/0418c0338', 'pt', 1, 'https://ror.org/0418c0338 Fundo Regional para a CiĆŖncia e Tecnologia'),
(108347, 'https://ror.org/04194kr83', 'en', 1, 'https://ror.org/04194kr83 Cell Therapy and Regenerative Medicine Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų³Ł„ŁˆŁ„ ŲÆŲ±Ł…Ų§Ł†ŪŒ و پزؓکی بازساختی'),
(108348, 'https://ror.org/041bgx172', 'pt', 1, 'https://ror.org/041bgx172 Base Naval de Lisboa'),
(108349, 'https://ror.org/041cyqf41', 'en', 1, 'https://ror.org/041cyqf41 Tokyo Veterinary Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½ē£åŒ»åø«ä¼š'),
(108350, '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'),
(108351, 'https://ror.org/041jyt122', 'en', 1, 'https://ror.org/041jyt122 Matsumoto Dental University ę¾ęœ¬ę­Æē§‘å¤§å­¦'),
(108352, 'https://ror.org/041jyzp61', 'tr', 1, 'https://ror.org/041jyzp61 Van Yuzuncu Yil University Van Yüzüncü Yıl Üniversitesi'),
(108353, 'https://ror.org/041kdhz15', 'en', 1, 'https://ror.org/041kdhz15 University of Buea UniversitƩ de Buea'),
(108354, 'https://ror.org/041mvdf76', 'pt', 1, 'https://ror.org/041mvdf76 Institute for Technological Research Instituto de Pesquisas Tecnológicas'),
(108355, 'https://ror.org/041pa7h16', 'en', 1, 'https://ror.org/041pa7h16 Waag Futurelab'),
(108356, 'https://ror.org/041pxbv16', 'en', 1, 'https://ror.org/041pxbv16 Ushiku Aiwa General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£åøøä»ä¼šē‰›ä¹…ę„›å’Œē·åˆē—…é™¢'),
(108357, 'https://ror.org/041re0e60', 'en', 1, 'https://ror.org/041re0e60 R.V. College of Engineering'),
(108358, 'https://ror.org/041rsh762', 'fr', 1, 'https://ror.org/041rsh762 INSA Hauts-de-France'),
(108359, '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'),
(108360, 'https://ror.org/041tgg678', 'en', 1, 'https://ror.org/041tgg678 Kuwait Institute for Scientific Research'),
(108361, 'https://ror.org/041v96n47', 'fr', 0, 'https://ror.org/041v96n47 Centre hospitalier de l''UniversitƩ Laval'),
(108362, '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'),
(108363, 'https://ror.org/041xac353', 'en', 1, 'https://ror.org/041xac353 Metabolic Diseases Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اختلالات Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŚ©'),
(108364, 'https://ror.org/041zkgm14', 'en', 1, 'https://ror.org/041zkgm14 University of Ferrara UniversitƠ degli Studi di Ferrara UniversitƤt Ferrara UniversitƩ de ferrare'),
(108365, 'https://ror.org/0420db125', 'en', 1, 'https://ror.org/0420db125 Rockefeller University Universidad Rockefeller'),
(108366, 'https://ror.org/0420tmj11', 'en', 1, 'https://ror.org/0420tmj11 Bundesinstitut für Berufsbildung Federal Institute for Vocational Education and Training'),
(108367, 'https://ror.org/0420zvk78', 'en', 1, 'https://ror.org/0420zvk78 Concordia University UniversitƩ Concordia'),
(108368, 'https://ror.org/042335e16', 'en', 1, 'https://ror.org/042335e16 Universidad de los Llanos University of the Llanos'),
(108369, 'https://ror.org/0423jr945', 'pt', 1, 'https://ror.org/0423jr945 Centro de CiĆŖncia e Tecnologia TĆŖxtil'),
(108370, 'https://ror.org/04250ya65', 'en', 1, 'https://ror.org/04250ya65 Sodegaura Satsukidai Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē¤¾å›£ć•ć¤ćä¼šč¢–ć‚±ęµ¦ć•ć¤ćå°ē—…é™¢'),
(108371, 'https://ror.org/0426zq843', 'pt', 1, 'https://ror.org/0426zq843 Military Review Revista Militar (Portugal)'),
(108372, 'https://ror.org/042714f67', 'es', 1, 'https://ror.org/042714f67 Universidad Virtual del Estado de Guanajuato'),
(108373, 'https://ror.org/0427wbh59', 'en', 1, 'https://ror.org/0427wbh59 Nune Eye Hospital'),
(108374, 'https://ror.org/0428dfn13', 'en', 1, 'https://ror.org/0428dfn13 Dev Sanskriti Vishwavidyalaya ą¤¦ą„‡ą¤µ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(108375, 'https://ror.org/042c8nz45', 'en', 1, 'https://ror.org/042c8nz45 South Metropolitan Health Service'),
(108376, 'https://ror.org/042ewz993', 'en', 1, 'https://ror.org/042ewz993 Universidad de BoyacĆ” University of Boyaca'),
(108377, 'https://ror.org/042f28677', 'en', 1, 'https://ror.org/042f28677 Tehran Heart Center مرکز قلب تهران'),
(108378, 'https://ror.org/042m3ve83', 'nl', 1, 'https://ror.org/042m3ve83 GGZ inGeest'),
(108379, 'https://ror.org/042me8y77', 'en', 1, 'https://ror.org/042me8y77 Stepan Gzhytskyi National University of Veterinary Medicine and Biotechnologies Lviv Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарной меГицины Šø биотехнологий имени Š”.Š—. Гжицкого Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарної меГицини та біотехнологій імені Дтепана Š“Š¶ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(108380, 'https://ror.org/042nfvn15', 'en', 1, 'https://ror.org/042nfvn15 Newham College'),
(108381, 'https://ror.org/042p3sp68', 'en', 1, 'https://ror.org/042p3sp68 Niigata Prefecture Yoshida Hospital ę–°ę½ŸēœŒē«‹å‰ē”°ē—…é™¢'),
(108382, 'https://ror.org/042pvpr51', 'fr', 1, 'https://ror.org/042pvpr51 CollĆØge de Bois-de-Boulogne'),
(108383, 'https://ror.org/042q4kf72', 'en', 1, 'https://ror.org/042q4kf72 Brewing Society of Japan å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é†øé€ å”ä¼š'),
(108384, 'https://ror.org/042q4rc86', 'en', 1, 'https://ror.org/042q4rc86 HLA Laboratory å…¬ē›Šč²”å›£ę³•äŗŗHLA研究所'),
(108385, 'https://ror.org/042qg8e60', 'en', 1, 'https://ror.org/042qg8e60 Atsugi City Hospital åŽšęœØåø‚ē«‹ē—…é™¢'),
(108386, 'https://ror.org/042rjfn67', 'en', 1, 'https://ror.org/042rjfn67 Kano State University of Technology'),
(108387, 'https://ror.org/042tfbd02', 'fr', 1, 'https://ror.org/042tfbd02 Institut Polytechnique de Paris'),
(108388, 'https://ror.org/042vayz55', 'en', 1, 'https://ror.org/042vayz55 Croydon College'),
(108389, 'https://ror.org/042vemv88', 'pt', 1, 'https://ror.org/042vemv88 Santa Casa da Misericórdia do Porto'),
(108390, 'https://ror.org/042vepq05', 'en', 1, 'https://ror.org/042vepq05 Gulu University'),
(108391, 'https://ror.org/042ver755', 'en', 1, 'https://ror.org/042ver755 University College Birmingham'),
(108392, 'https://ror.org/042vyhc60', 'pt', 1, 'https://ror.org/042vyhc60 Hospital da Horta EPER'),
(108393, 'https://ror.org/042x1tp92', 'no_lang_code', 1, 'https://ror.org/042x1tp92 Fortiss'),
(108394, 'https://ror.org/042zvmz29', 'en', 1, 'https://ror.org/042zvmz29 Bindura University of Science Education'),
(108395, 'https://ror.org/0430ewv75', 'en', 1, 'https://ror.org/0430ewv75 Jyuzen General Hospital äø€čˆ¬č²”å›£ę³•äŗŗē©å–„ä¼šåå…Øē·åˆē—…é™¢'),
(108396, 'https://ror.org/0430z0381', 'en', 1, 'https://ror.org/0430z0381 Endocrinology and Metabolism Clinical Sciences Institute Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… ŲØŲ§Ł„ŪŒŁ†ŪŒ ŲŗŲÆŲÆ'),
(108397, 'https://ror.org/0431sk359', 'en', 1, 'https://ror.org/0431sk359 Marine Biological Association of the United Kingdom'),
(108398, 'https://ror.org/0431v7h69', 'es', 1, 'https://ror.org/0431v7h69 Fundación Instituto Leloir'),
(108399, 'https://ror.org/0432vt678', 'fr', 1, 'https://ror.org/0432vt678 Collège Jean-de-Brébeuf'),
(108400, 'https://ror.org/0433e6t24', 'de', 1, 'https://ror.org/0433e6t24 University of Koblenz UniversitƤt Koblenz'),
(108401, 'https://ror.org/0433m7c65', 'en', 1, 'https://ror.org/0433m7c65 Tanushimaru Central Hospital åŒ»ē™‚ę³•äŗŗč–å³°ä¼šē”°äø»äøøäø­å¤®ē—…é™¢'),
(108402, 'https://ror.org/0434njb68', 'id', 1, 'https://ror.org/0434njb68 Universitas 17 Agustus 1945 Semarang'),
(108403, 'https://ror.org/04378d909', 'en', 1, 'https://ror.org/04378d909 Draper Laboratory'),
(108404, 'https://ror.org/04387x656', 'it', 1, 'https://ror.org/04387x656 University of Piemonte Orientale Amedeo Avogadro UniversitĆ  degli Studi del Piemonte Orientale ā€œAmedeo Avogadroā€'),
(108405, 'https://ror.org/043ae9h44', 'en', 1, 'https://ror.org/043ae9h44 Regis University Universidad RƩgis'),
(108406, 'https://ror.org/043axf581', 'en', 1, 'https://ror.org/043axf581 St. Marianna University School of Medicine č–ćƒžćƒŖć‚¢ćƒ³ćƒŠåŒ»ē§‘å¤§å­¦'),
(108407, 'https://ror.org/043be3q74', 'en', 1, 'https://ror.org/043be3q74 Open Book Collective'),
(108408, 'https://ror.org/043c0p156', 'en', 1, 'https://ror.org/043c0p156 Koninklijke Nederlandse Akademie van Wetenschappen Royal Netherlands Academy of Arts and Sciences'),
(108409, 'https://ror.org/043c4kc51', 'en', 1, 'https://ror.org/043c4kc51 Edgewood College'),
(108410, 'https://ror.org/043cdzb63', 'en', 1, 'https://ror.org/043cdzb63 South Carolina Department of Natural Resources'),
(108411, 'https://ror.org/043f5vc59', 'fr', 1, 'https://ror.org/043f5vc59 Physiologie de la Nutrition et du Comportement Alimentaire'),
(108412, 'https://ror.org/043fje207', 'en', 1, 'https://ror.org/043fje207 Hƶgskolan i GƤvle University of GƤvle'),
(108413, 'https://ror.org/043hmxn40', 'en', 1, 'https://ror.org/043hmxn40 Takeda General Hospital äø€čˆ¬č²”å›£ę³•äŗŗē«¹ē”°å„åŗ·č²”å›£ē«¹ē”°ē¶œåˆē—…é™¢'),
(108414, 'https://ror.org/043hyzt56', 'en', 1, 'https://ror.org/043hyzt56 Ladoke Akintola University of Technology'),
(108415, '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'),
(108416, 'https://ror.org/043kfff89', 'en', 1, 'https://ror.org/043kfff89 The National Gallery'),
(108417, 'https://ror.org/043nxc105', 'ca', 1, 'https://ror.org/043nxc105 Universidad de Valencia Universidade de Valencia Universitat de ValĆØncia University of Valencia'),
(108418, 'https://ror.org/043q8yx54', 'en', 1, 'https://ror.org/043q8yx54 Ontario Institute for Cancer Research'),
(108419, 'https://ror.org/043rfqs46', 'en', 1, 'https://ror.org/043rfqs46 Third Geological Brigade of Hubei Geological Bureau'),
(108420, 'https://ror.org/043trmd87', 'en', 1, 'https://ror.org/043trmd87 Center for Hierarchical Manufacturing'),
(108421, 'https://ror.org/043x4kv51', 'en', 1, 'https://ror.org/043x4kv51 Shin-Kuki General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£åŸ¼ēŽ‰å·ØęØ¹ć®ä¼šę–°ä¹…å–œē·åˆē—…é™¢'),
(108422, 'https://ror.org/043ysj081', 'en', 1, 'https://ror.org/043ysj081 Research Institute of Human Engineering for Quality Life äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗŗé–“ē”Ÿę“»å·„å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(108423, 'https://ror.org/043yykt67', 'no_lang_code', 1, 'https://ror.org/043yykt67 Wayamba University of Sri Lanka ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®µą®Æą®®ąÆą®Ŗ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· වයඹ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(108424, 'https://ror.org/043zbev87', 'en', 1, 'https://ror.org/043zbev87 Indraprasta Pgri University Universitas Indraprasta PGRI'),
(108425, 'https://ror.org/0443cwa12', 'en', 1, 'https://ror.org/0443cwa12 Tallinn University of Technology Tallinna Tehnikaülikool Таллинский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108426, 'https://ror.org/0444ptj69', 'en', 1, 'https://ror.org/0444ptj69 Gunma Prefectural Police 群馬県警察'),
(108427, 'https://ror.org/0445bza91', 'en', 1, 'https://ror.org/0445bza91 Tianjin Academy of Fine Arts å¤©ę“„ē¾ŽęœÆå­¦é™¢'),
(108428, 'https://ror.org/0445vt337', 'hi', 1, 'https://ror.org/0445vt337 Rajkiya Mahila Mahavidyalaya, Budaun, ą¤°ą¤¾ą¤œą¤•ą„€ą¤Æ महिला ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤¬ą¤¦ą¤¾ą¤Æą„‚ą¤'),
(108429, 'https://ror.org/0449rh157', 'en', 1, 'https://ror.org/0449rh157 Osh State University Oş Devlet Üniversitesi ŠžŃˆ мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø ŠžŃˆŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108430, 'https://ror.org/044ay9e62', 'pt', 1, 'https://ror.org/044ay9e62 Sociedade Brasileira de Geriatria e Gerontologia'),
(108431, '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'),
(108432, 'https://ror.org/044feat76', 'fr', 1, 'https://ror.org/044feat76 SUMMIT'),
(108433, 'https://ror.org/044fpa022', 'en', 1, 'https://ror.org/044fpa022 Suiseikai Kajikawa Hospital åŒ»ē™‚ę³•äŗŗēæ ęø…ä¼šēæ ęø…ä¼šę¢¶å·ē—…é™¢'),
(108434, 'https://ror.org/044fynn32', 'en', 1, 'https://ror.org/044fynn32 Chinese Medical Association äø­åŽåŒ»å­¦ä¼šåæƒč”€ē®”ē—…å­¦åˆ†ä¼š'),
(108435, 'https://ror.org/044hshx49', 'en', 1, 'https://ror.org/044hshx49 Centre for Human Drug Research'),
(108436, 'https://ror.org/044kc7a79', 'en', 1, 'https://ror.org/044kc7a79 Indira Gandhi Mirpur University इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(108437, 'https://ror.org/044mkdq33', 'no_lang_code', 1, 'https://ror.org/044mkdq33 Ajinomoto (Japan) å‘³ć®ē“ ę Ŗå¼ä¼šē¤¾'),
(108438, 'https://ror.org/044npbj02', 'en', 1, 'https://ror.org/044npbj02 Okayama Healthcare Professional University å²”å±±åŒ»ē™‚å°‚é–€č·å¤§å­¦'),
(108439, 'https://ror.org/044ntvm43', 'en', 1, 'https://ror.org/044ntvm43 Montefiore Medical Center'),
(108440, 'https://ror.org/044qwwh31', 'en', 1, 'https://ror.org/044qwwh31 Infrastructure Development INSTITUTE-JAPAN äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›å»ŗčØ­ęŠ€č”“å”ä¼š'),
(108441, 'https://ror.org/044s2fj67', 'en', 1, 'https://ror.org/044s2fj67 Yaroslavl State University Ярославский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П. Š“. ДемиГова'),
(108442, 'https://ror.org/044sn6f93', 'en', 1, 'https://ror.org/044sn6f93 Miyagi Prefectural Forestry Technology Institute å®®åŸŽēœŒęž—ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(108443, 'https://ror.org/044v96v72', 'no_lang_code', 1, 'https://ror.org/044v96v72 A''Sharqiyah University جــــــامـعـة Ų§Ł„Ł€Ų“Ł€Ų±Ł‚Ł€Ł€Ł€Ł€Ł€Ł€Ł€ŁŠŁ€Ų©'),
(108444, 'https://ror.org/044wn2t24', 'pt', 1, 'https://ror.org/044wn2t24 Universidade Federal de Rondonópolis'),
(108445, 'https://ror.org/044xeax47', 'en', 1, 'https://ror.org/044xeax47 Centre for Social Innovation Zentrum für Soziale Innovation'),
(108446, 'https://ror.org/044yd9t77', 'en', 1, 'https://ror.org/044yd9t77 Joint Institute for Nuclear Research ŠžŠ±ŃŠŠµŠ“ŠøŠ½Ń‘Š½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(108447, 'https://ror.org/044yw8e10', 'fr', 1, 'https://ror.org/044yw8e10 Center for Legal and Political Philosophy Centre de Philosophie Juridique et Politique'),
(108448, 'https://ror.org/045016w83', 'en', 1, 'https://ror.org/045016w83 Norwegian School of Sport Sciences'),
(108449, 'https://ror.org/04507gt97', 'en', 1, 'https://ror.org/04507gt97 Royal Botanic Gardens Victoria'),
(108450, 'https://ror.org/0456b2t50', 'en', 1, 'https://ror.org/0456b2t50 JK Lakshmipat University'),
(108451, 'https://ror.org/0456pcg54', 'en', 1, 'https://ror.org/0456pcg54 National Institute of Technology Andhra Pradesh ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤†ą¤‚ą¤§ą„ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶'),
(108452, 'https://ror.org/0456r8d26', 'en', 1, 'https://ror.org/0456r8d26 Gates Foundation'),
(108453, 'https://ror.org/04573k719', 'es', 1, 'https://ror.org/04573k719 Servicio CƔntabro de Salud'),
(108454, 'https://ror.org/04577k168', 'en', 1, 'https://ror.org/04577k168 1 Decembrie 1918 University Universitatea 1 Decembrie 1918 din Alba Iulia'),
(108455, 'https://ror.org/0457rd124', 'en', 1, 'https://ror.org/0457rd124 National Sanatorium Nagashima-Aiseien å›½ē«‹ē™‚é¤Šę‰€é•·å³¶ę„›ē”Ÿåœ’'),
(108456, 'https://ror.org/0458hw939', 'fr', 1, 'https://ror.org/0458hw939 Territoires, Environnement, TƩlƩdƩtection et Information Spatiale'),
(108457, 'https://ror.org/0458zsr51', 'en', 1, 'https://ror.org/0458zsr51 Sanshikai Toho Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£äø‰ę€ä¼šę±é‚¦ē—…é™¢'),
(108458, 'https://ror.org/0459q5x08', 'en', 1, 'https://ror.org/0459q5x08 Source International, Source International ETS'),
(108459, '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'),
(108460, 'https://ror.org/045bx8592', 'en', 1, 'https://ror.org/045bx8592 Royal Academy of Music yr Academi Gerddoriaeth Frenhinol'),
(108461, 'https://ror.org/045cwqj90', 'fr', 1, 'https://ror.org/045cwqj90 Institut national d''histoire de l''art National Institute for Art History'),
(108462, 'https://ror.org/045e97x26', 'en', 1, 'https://ror.org/045e97x26 Petra Christian University Universitas Kristen Petra'),
(108463, 'https://ror.org/045m3v459', 'es', 1, 'https://ror.org/045m3v459 Universidad De Aquino Bolivia'),
(108464, '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'),
(108465, 'https://ror.org/045qcpw44', 'en', 1, 'https://ror.org/045qcpw44 Tashkent Chemical-Technological Institute Toshkent Kimyo-Texnologiya Instituti Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ химико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(108466, 'https://ror.org/045r0qf45', 'en', 1, 'https://ror.org/045r0qf45 Collegium Civitas'),
(108467, 'https://ror.org/045tsnx36', 'es', 1, 'https://ror.org/045tsnx36 Fundación Universitaria CIEO - UNICIEO'),
(108468, 'https://ror.org/045v44z74', 'en', 1, 'https://ror.org/045v44z74 Ibaraki Prefectural Medical Center of Psychiatry čŒØåŸŽēœŒē«‹ć“ć“ć‚ć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(108469, 'https://ror.org/045v4z873', 'en', 1, 'https://ror.org/045v4z873 Chattogram Veterinary and Animal Sciences University ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦­ą§‡ą¦Ÿą§‡ą¦°ą¦æą¦Øą¦¾ą¦°ą¦æ ও ą¦ą¦Øą¦æą¦®ą§ą¦Æą¦¾ą¦² ą¦øą¦¾ą¦‡ą¦Øą§ą¦øą§‡ą¦ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(108470, 'https://ror.org/045xhw230', 'en', 1, 'https://ror.org/045xhw230 Bir Tikendrajit University'),
(108471, 'https://ror.org/045y6d111', 'en', 1, 'https://ror.org/045y6d111 University of Vechta UniversitƤt Vechta'),
(108472, 'https://ror.org/045zrcm98', 'en', 1, 'https://ror.org/045zrcm98 University of Mohaghegh Ardabili دانؓگاه محقق Ų§Ų±ŲÆŲØŪŒŁ„ŪŒ'),
(108473, 'https://ror.org/04603xj85', 'pt', 1, 'https://ror.org/04603xj85 Federal University of Western ParĆ” Universidade Federal do Oeste do ParĆ”'),
(108474, 'https://ror.org/0462dsc42', 'hr', 1, 'https://ror.org/0462dsc42 Klinički Bolnički Centar Split Split University Hospital Centre'),
(108475, 'https://ror.org/0462wa640', 'en', 1, 'https://ror.org/0462wa640 Guangdong Ocean University å¹æäøœęµ·ę“‹å¤§å­¦'),
(108476, 'https://ror.org/0463y2v87', 'ms', 1, 'https://ror.org/0463y2v87 Universiti Malaysia Kelantan University of Malaysia Kelantan'),
(108477, 'https://ror.org/0464eyp60', 'en', 1, 'https://ror.org/0464eyp60 University of Massachusetts Chan Medical School'),
(108478, 'https://ror.org/04654kg92', 'en', 1, 'https://ror.org/04654kg92 La Salle Green Hills'),
(108479, 'https://ror.org/0465jpv25', 'en', 1, 'https://ror.org/0465jpv25 Darshan University'),
(108480, 'https://ror.org/0468j1635', 'en', 1, 'https://ror.org/0468j1635 Recep Tayyip Erdoğan University Recep Tayyip Erdoğan Üniversitesi'),
(108481, 'https://ror.org/0468z1z85', 'pt', 1, 'https://ror.org/0468z1z85 Observatório da Comunicação'),
(108482, 'https://ror.org/0468zj874', 'en', 1, 'https://ror.org/0468zj874 Tokyo Health Service Association å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬éƒ½äŗˆé˜²åŒ»å­¦å”ä¼š'),
(108483, 'https://ror.org/04690an59', 'en', 1, 'https://ror.org/04690an59 Personalized Medicine Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ پزؓکی فردی'),
(108484, 'https://ror.org/046a2wj10', 'nl', 1, 'https://ror.org/046a2wj10 Isala'),
(108485, 'https://ror.org/046cmpm03', 'en', 1, 'https://ror.org/046cmpm03 Iwate Fisheries Technology Center å²©ę‰‹ēœŒę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(108486, 'https://ror.org/046denk61', 'en', 1, 'https://ror.org/046denk61 Instituto Nacional de TecnologĆ­a Industrial National Institute of Industrial Technology'),
(108487, 'https://ror.org/046fkpt18', 'en', 1, 'https://ror.org/046fkpt18 Xi''an University of Science and Technology č„æå®‰ē§‘ęŠ€å¤§å­¦'),
(108488, 'https://ror.org/046ft6c74', 'en', 1, 'https://ror.org/046ft6c74 West Anhui University ēš–č„æå­¦é™¢'),
(108489, 'https://ror.org/046jdgp91', 'en', 1, 'https://ror.org/046jdgp91 Yokohama City Institute of Public Health ęØŖęµœåø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(108490, 'https://ror.org/046jrga91', 'en', 1, 'https://ror.org/046jrga91 Zikei Institute of Psychiatry å…¬ē›Šč²”å›£ę³•äŗŗę…ˆåœ­ä¼šę…ˆåœ­ē—…é™¢'),
(108491, 'https://ror.org/046jt8k23', 'en', 1, 'https://ror.org/046jt8k23 Termez Institute of Engineering and Technology'),
(108492, 'https://ror.org/046p0fc17', 'en', 1, 'https://ror.org/046p0fc17 Eesti Muusika- ja Teatriakadeemia Estonian Academy of Music and Theatre Š­ŃŃ‚Š¾Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø Šø театра'),
(108493, 'https://ror.org/046tym167', 'en', 1, 'https://ror.org/046tym167 Akademia WSB WSB University'),
(108494, 'https://ror.org/046wpeg62', 'en', 1, 'https://ror.org/046wpeg62 IUCN World Commission on Protected Areas'),
(108495, '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'),
(108496, 'https://ror.org/04701bc03', 'en', 1, 'https://ror.org/04701bc03 Japan Industrial Management Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒå–¶å·„å­¦ä¼š'),
(108497, 'https://ror.org/0470cgs30', 'en', 1, 'https://ror.org/0470cgs30 Ruotsin kokonaismaanpuolustuksen tutkimuslaitos Swedish Defence Research Agency Totalfƶrsvarets forskningsinstitut'),
(108498, 'https://ror.org/0471cyx86', 'fr', 1, 'https://ror.org/0471cyx86 Microbiologie de l’alimentation au service de la santĆ©'),
(108499, 'https://ror.org/04723hk63', 'en', 1, 'https://ror.org/04723hk63 Federal College of Education, Kontagora'),
(108500, 'https://ror.org/0472q6y77', 'pt', 1, 'https://ror.org/0472q6y77 Unidade Local de SaĆŗde de Castelo Branco EPE'),
(108501, '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'),
(108502, 'https://ror.org/0474ygz28', 'en', 1, 'https://ror.org/0474ygz28 University Clinical Center Tuzla'),
(108503, 'https://ror.org/0476qjd65', 'en', 1, 'https://ror.org/0476qjd65 Hakusan Nature Conservation Center ēŸ³å·ēœŒē™½å±±č‡Ŗē„¶äæč­·ć‚»ćƒ³ć‚æćƒ¼'),
(108504, 'https://ror.org/0478g4653', 'en', 1, 'https://ror.org/0478g4653 Hugh Baird College'),
(108505, 'https://ror.org/0479aed98', 'en', 1, 'https://ror.org/0479aed98 Chuo Kikuu cha Dar es Salaam University of Dar es Salaam Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± السلام'),
(108506, 'https://ror.org/0479kf329', 'it', 1, 'https://ror.org/0479kf329 Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Alessandria'),
(108507, 'https://ror.org/047b6f797', 'fr', 1, 'https://ror.org/047b6f797 HƓpital Jeanne d''Arc'),
(108508, 'https://ror.org/047bj7979', 'en', 1, 'https://ror.org/047bj7979 National Institute for Aerospace Research Elie Carafoli'),
(108509, 'https://ror.org/047cjg072', 'en', 1, 'https://ror.org/047cjg072 Bethlehem University Ų¬Ų§Ł…Ų¹Ų© بيت لحم'),
(108510, 'https://ror.org/047g7f905', 'en', 1, 'https://ror.org/047g7f905 UGC DAE Consortium for Scientific Research'),
(108511, 'https://ror.org/047h64h89', 'en', 1, 'https://ror.org/047h64h89 Lapin ammattikorkeakoulu Lapland University of Applied Sciences'),
(108512, 'https://ror.org/047hdnt12', 'fr', 1, 'https://ror.org/047hdnt12 Institut FranƧais'),
(108513, 'https://ror.org/047kqmy39', 'nl', 1, 'https://ror.org/047kqmy39 Iselinge Hogeschool'),
(108514, 'https://ror.org/047mtdf33', 'en', 1, 'https://ror.org/047mtdf33 Agency for Natural Resources and Energy č³‡ęŗć‚Øćƒćƒ«ć‚®ćƒ¼åŗ'),
(108515, 'https://ror.org/047nnbj13', 'en', 1, 'https://ror.org/047nnbj13 Children''s Hospital of The King''s Daughters'),
(108516, 'https://ror.org/047rhhm47', 'en', 1, 'https://ror.org/047rhhm47 Brigham Young University'),
(108517, 'https://ror.org/047svzh56', 'en', 1, 'https://ror.org/047svzh56 Wakakusa-Tatsuma Rehabilitation Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč‹„å¼˜ä¼šć‚ć‹ćć•ē«œé–“ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(108518, 'https://ror.org/047xkjw67', 'pl', 1, 'https://ror.org/047xkjw67 Instytut Ogrodnictwa Research Institute of Horticulture'),
(108519, 'https://ror.org/047ymzq84', 'en', 1, 'https://ror.org/047ymzq84 Chaitanya Bharathi Institute of Technology ą°šą±ˆą°¤ą°Øą±ą°Æ భారతి ą°‡ą°Øą±ā€Œą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€'),
(108520, 'https://ror.org/047z4t272', 'en', 1, 'https://ror.org/047z4t272 National Heart Institute'),
(108521, 'https://ror.org/0480gk412', 'en', 1, 'https://ror.org/0480gk412 Maryam Abacha American University of Niger'),
(108522, 'https://ror.org/04834zz12', 'it', 1, 'https://ror.org/04834zz12 Istituto Nazionale di Fisica Nucleare, Amministrazione Centrale'),
(108523, 'https://ror.org/04839sh14', 'de', 1, 'https://ror.org/04839sh14 Medizinische Hochschule Brandenburg Theodor Fontane'),
(108524, 'https://ror.org/0483fn738', 'en', 1, 'https://ror.org/0483fn738 Institute of Communication and Computer Systems'),
(108525, 'https://ror.org/0483s5p06', 'en', 1, 'https://ror.org/0483s5p06 Longyan University 龙岩学院'),
(108526, 'https://ror.org/04841rb23', 'en', 1, 'https://ror.org/04841rb23 Toplica Academy of Applied Studies Топличка акаГемија ŃŃ‚Ń€ŃƒŠŗŠ¾Š²Š½ŠøŃ… ŃŃ‚ŃƒŠ“ŠøŃ˜Š°'),
(108527, 'https://ror.org/04855bv47', 'en', 1, 'https://ror.org/04855bv47 National University of Mongolia Монгол Улсын Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ Монгольский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108528, 'https://ror.org/0485abs19', 'fr', 1, 'https://ror.org/0485abs19 UniversitƩ Alioune Diop de Bambey'),
(108529, 'https://ror.org/0486g6b11', 'en', 1, 'https://ror.org/0486g6b11 The Japan Society of Acupuncture and Moxibustion å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬é¼ēøå­¦ä¼š'),
(108530, 'https://ror.org/048997274', 'en', 1, 'https://ror.org/048997274 Chikugo City Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē­‘å¾Œåø‚ē«‹ē—…é™¢'),
(108531, 'https://ror.org/0489cd473', 'en', 1, 'https://ror.org/0489cd473 Shanghai Institute for Mathematics and Interdisciplinary Sciences'),
(108532, 'https://ror.org/0489ggv38', 'en', 1, 'https://ror.org/0489ggv38 Canterbury Christ Church University'),
(108533, 'https://ror.org/048arep70', 'en', 1, 'https://ror.org/048arep70 Shippensburg University'),
(108534, 'https://ror.org/048arg914', 'en', 1, 'https://ror.org/048arg914 The Operations Research Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Ŗćƒšćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗćƒ»ćƒŖć‚µćƒ¼ćƒå­¦ä¼š'),
(108535, 'https://ror.org/048b6ft22', 'en', 1, 'https://ror.org/048b6ft22 Ibaraki Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗčŒØęœØåø‚åŒ»åø«ä¼š'),
(108536, 'https://ror.org/048cva627', 'de', 1, 'https://ror.org/048cva627 DVGW-Forschungsstelle TUHH'),
(108537, 'https://ror.org/048gbrn88', 'es', 1, 'https://ror.org/048gbrn88 Universidad Tecnológica de Los Andes'),
(108538, 'https://ror.org/048gjv863', 'es', 1, 'https://ror.org/048gjv863 Universidad Tecnológica Emiliano Zapata del Estado de Morelos'),
(108539, 'https://ror.org/048gkf592', 'en', 1, 'https://ror.org/048gkf592 Moravian University'),
(108540, 'https://ror.org/048jm0g87', 'en', 1, 'https://ror.org/048jm0g87 PRO Natura Foundation Japan å…¬ē›Šč²”å›£ę³•äŗŗč‡Ŗē„¶äæč­·åŠ©ęˆåŸŗé‡‘'),
(108541, 'https://ror.org/048m2aa35', 'en', 1, 'https://ror.org/048m2aa35 General Jonas Žemaitis Military Academy of Lithuania Generolo Jono Žemaičio Lietuvos karo akademija'),
(108542, 'https://ror.org/048m32v08', 'no_lang_code', 1, 'https://ror.org/048m32v08 MSD (Austria)'),
(108543, 'https://ror.org/048m8ny81', 'en', 1, 'https://ror.org/048m8ny81 Center for Air Pollution Research مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų¢Ł„ŁˆŲÆŚÆŪŒ Ł‡ŁˆŲ§'),
(108544, 'https://ror.org/048m9x696', 'en', 1, 'https://ror.org/048m9x696 Hansung University ķ•œģ„±ėŒ€ķ•™źµ'),
(108545, 'https://ror.org/048nq7g61', 'fr', 0, 'https://ror.org/048nq7g61 Centre National de CrƩation Musicale'),
(108546, 'https://ror.org/048ppb911', 'ro', 1, 'https://ror.org/048ppb911 Regia Autonomă de Transport București Romanian Society of Trams'),
(108547, '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'),
(108548, 'https://ror.org/048tesw25', 'es', 1, 'https://ror.org/048tesw25 European University of the Atlantic Universidad Europea del AtlƔntico'),
(108549, 'https://ror.org/048w4c951', 'en', 1, 'https://ror.org/048w4c951 Institute of Business Management Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف بزنس Ł…ŁŠŁ†ŁŠŲ¬Ł…ŁŠŁ†Ł½ā€Ž'),
(108550, 'https://ror.org/048wxdk46', 'en', 1, 'https://ror.org/048wxdk46 Khorramshahr University of Marine Science and Technology دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† دریایی خرمؓهر'),
(108551, 'https://ror.org/048y5x817', 'no_lang_code', 1, 'https://ror.org/048y5x817 Geosyntec Consultants (United States)'),
(108552, 'https://ror.org/048zcaj52', 'en', 1, 'https://ror.org/048zcaj52 Charles Darwin University'),
(108553, 'https://ror.org/048zgak80', 'en', 1, 'https://ror.org/048zgak80 National University of RĆ­o Negro Universidad Nacional de RĆ­o Negro'),
(108554, 'https://ror.org/04909p852', 'en', 1, 'https://ror.org/04909p852 National Institute of Technology Kurukshetra'),
(108555, 'https://ror.org/04924p703', 'en', 1, 'https://ror.org/04924p703 Iwate Prefectural Miyako Hospital å²©ę‰‹ēœŒē«‹å®®å¤ē—…é™¢'),
(108556, 'https://ror.org/0493g0246', 'en', 1, 'https://ror.org/0493g0246 Osaka Health Medical Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗåŗœäæå„åŒ»ē™‚č²”å›£'),
(108557, 'https://ror.org/0495mzm65', 'fr', 1, 'https://ror.org/0495mzm65 InterPsy Laboratory Interpsy, Laboratoire InterPsy'),
(108558, 'https://ror.org/0497ase59', 'en', 1, 'https://ror.org/0497ase59 Inner Mongolia Normal University å†…č’™å¤åøˆčŒƒå¤§å­¦'),
(108559, 'https://ror.org/0498ekt05', 'pt', 1, 'https://ror.org/0498ekt05 Laboratório Nacional de Computação Científica'),
(108560, 'https://ror.org/0499gg586', 'en', 1, 'https://ror.org/0499gg586 Nagasaki Prefectural Government é•·å“ŽēœŒåŗ'),
(108561, 'https://ror.org/049ajby27', 'en', 1, 'https://ror.org/049ajby27 Edo State University Uzairue'),
(108562, 'https://ror.org/049asqa32', 'tr', 1, 'https://ror.org/049asqa32 Sabancı University Sabancı Üniversitesi'),
(108563, 'https://ror.org/049b2cm85', 'es', 1, 'https://ror.org/049b2cm85 Instituto Nacional de Investigacion y Desarrollo Pesquero, Instituto de BiologĆ­a Marina'),
(108564, 'https://ror.org/049d1x723', 'fr', 1, 'https://ror.org/049d1x723 FacultĆ© des Lettres et des Sciences Humaines de Sfax ŁƒŁ„ŁŠŲ© الآداب ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ł†Ų³Ų§Ł†ŁŠŲ© بصفاقس'),
(108565, 'https://ror.org/049da5t36', 'es', 1, 'https://ror.org/049da5t36 Universidad de Burgos University of Burgos'),
(108566, 'https://ror.org/049dv0m11', 'en', 1, 'https://ror.org/049dv0m11 Mutsu General Hospital ć‚€ć¤ē·åˆē—…é™¢'),
(108567, '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'),
(108568, 'https://ror.org/049f0ha78', 'id', 1, 'https://ror.org/049f0ha78 Universitas Jember'),
(108569, 'https://ror.org/049g74m22', 'en', 1, 'https://ror.org/049g74m22 Federal College of Education (Technical), Umunze'),
(108570, 'https://ror.org/049hm3d27', 'en', 1, 'https://ror.org/049hm3d27 Miyazaki Prefectural Fisheries Research Institute å®®å“ŽēœŒę°“ē”£č©¦éØ“å “'),
(108571, 'https://ror.org/049jaya88', 'en', 1, 'https://ror.org/049jaya88 Japanese Society of School Health å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å­¦ę ”äæå„ä¼š'),
(108572, 'https://ror.org/049jtt335', 'fr', 1, 'https://ror.org/049jtt335 UniversitƩ du QuƩbec Ơ Rimouski'),
(108573, 'https://ror.org/049kd0t63', 'id', 1, 'https://ror.org/049kd0t63 Poltekkes Kemenkes Surabaya'),
(108574, 'https://ror.org/049kncf73', 'en', 1, 'https://ror.org/049kncf73 Aga Khan University Institute for Study of Muslim Civilisations'),
(108575, 'https://ror.org/049krfp54', 'id', 1, 'https://ror.org/049krfp54 Bank Indonesia'),
(108576, 'https://ror.org/049nvyb15', 'es', 1, 'https://ror.org/049nvyb15 Hospital Universitario Fundación Jiménez Díaz'),
(108577, 'https://ror.org/049pcye65', 'no_lang_code', 1, 'https://ror.org/049pcye65 Blue Point IT Solutions (Romania)'),
(108578, 'https://ror.org/049q30t56', 'fr', 1, 'https://ror.org/049q30t56 Biologie et Gestion des Risques en Agriculture Biology and Management of Risks in Agriculture'),
(108579, 'https://ror.org/049qz7x77', 'en', 1, 'https://ror.org/049qz7x77 Capital Region of Denmark Region Hovedstaden'),
(108580, 'https://ror.org/049skhf47', 'en', 1, 'https://ror.org/049skhf47 Andhra University ą¤†ą¤Øą„ą¤§ą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®†ą®ØąÆą®¤ą®æą®°ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°†ą°‚ą°§ą±ą°° ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(108581, 'https://ror.org/049xfwy04', 'en', 1, 'https://ror.org/049xfwy04 Rhodes College'),
(108582, 'https://ror.org/049y5v215', 'en', 1, 'https://ror.org/049y5v215 Mimihara General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒä»ä¼šč€³åŽŸē·åˆē—…é™¢'),
(108583, 'https://ror.org/049yaph28', 'fr', 1, 'https://ror.org/049yaph28 Laboratoire St Venant, Laboratoire d''Hydraulique Saint-Venant'),
(108584, 'https://ror.org/049z8cx69', 'en', 1, 'https://ror.org/049z8cx69 NATO Centre for Maritime Research and Experimentation'),
(108585, 'https://ror.org/04a0bad71', 'en', 1, 'https://ror.org/04a0bad71 Institute of Solid State Physics, UL LU Cietvielu fizikas institūts'),
(108586, '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'),
(108587, 'https://ror.org/04a1sdj76', 'en', 1, 'https://ror.org/04a1sdj76 Shizuoka Prefectural Research Institute of Animal Industry é™å²”ēœŒē•œē”£ęŠ€č”“ē ”ē©¶ę‰€'),
(108588, 'https://ror.org/04a23br85', 'en', 1, 'https://ror.org/04a23br85 Wittenberg University'),
(108589, 'https://ror.org/04a45k919', 'en', 1, 'https://ror.org/04a45k919 Nagaoka Sutoku University 長岔哇徳大学'),
(108590, 'https://ror.org/04a4x4g72', 'en', 1, 'https://ror.org/04a4x4g72 Stanisław Sakowicz Inland Fisheries Institute'),
(108591, 'https://ror.org/04a5x0a43', 'en', 1, 'https://ror.org/04a5x0a43 Kurate Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗćć‚‰ć¦ē—…é™¢'),
(108592, 'https://ror.org/04a5zrn98', 'en', 1, 'https://ror.org/04a5zrn98 Chuno Kosei Hospital JAå²é˜œåŽšē”Ÿé€£äø­ęæƒåŽšē”Ÿē—…é™¢'),
(108593, 'https://ror.org/04a79d524', 'en', 1, 'https://ror.org/04a79d524 International Medical Information Center äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›åŒ»å­¦ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(108594, 'https://ror.org/04a7p1d16', 'pt', 1, 'https://ror.org/04a7p1d16 Academia das CiĆŖncias de Lisboa'),
(108595, 'https://ror.org/04a7rxb17', 'en', 1, 'https://ror.org/04a7rxb17 University of Hyderabad ą¤¹ą„ˆą¤¦ą¤°ą¤¾ą¤¬ą¤¾ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¹ą¦¾ą¦Æą¦¼ą¦¦ą§ą¦°ą¦¾ą¦¬ą¦¾ą¦¦ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ హైదరాబాదు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(108596, 'https://ror.org/04a7t5284', 'en', 1, 'https://ror.org/04a7t5284 Japan Automobile Manufacturers Association, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»Šå·„ę„­ä¼š'),
(108597, 'https://ror.org/04a7x2s11', 'en', 1, 'https://ror.org/04a7x2s11 Arkitektur- og designhĆøgskolen i Oslo Oslo School of Architecture and Design'),
(108598, 'https://ror.org/04a85ht85', 'en', 1, 'https://ror.org/04a85ht85 Galgotias College of Engineering & Technology'),
(108599, 'https://ror.org/04a9tmd77', 'en', 1, 'https://ror.org/04a9tmd77 Icahn School of Medicine at Mount Sinai'),
(108600, 'https://ror.org/04aa21062', 'en', 1, 'https://ror.org/04aa21062 Technology Research Association of Highly Efficient Gene Design é«˜ę©Ÿčƒ½éŗä¼å­ćƒ‡ć‚¶ć‚¤ćƒ³ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(108601, 'https://ror.org/04aah1z61', 'en', 1, 'https://ror.org/04aah1z61 Norsk institutt for bioĆøkonomi Norwegian Institute of Bioeconomy Research'),
(108602, 'https://ror.org/04aawnm78', 'en', 1, 'https://ror.org/04aawnm78 Technology Research Association for Future Additive Manufacturing ęŠ€č”“ē ”ē©¶ēµ„åˆę¬”äø–ä»£3Dē©å±¤é€ å½¢ęŠ€č”“ē·åˆé–‹ē™ŗę©Ÿę§‹'),
(108603, 'https://ror.org/04abgsr31', 'en', 1, 'https://ror.org/04abgsr31 Japan Council for Quality Health Care å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åŒ»ē™‚ę©Ÿčƒ½č©•ä¾”ę©Ÿę§‹'),
(108604, 'https://ror.org/04abxn418', 'pt', 1, 'https://ror.org/04abxn418 Universidade JosƩ do RosƔrio Vellano'),
(108605, 'https://ror.org/04adarv34', 'de', 1, 'https://ror.org/04adarv34 Institut für digitale Gesundheitsdaten Rheinland-Pfalz');
INSERT INTO `rors` VALUES
(108606, 'https://ror.org/04admxj95', 'en', 1, 'https://ror.org/04admxj95 Psychiatry and Psychology Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų±ŁˆŲ§Ł†Ł¾Ų²Ų“Ś©ŪŒ و Ų±ŁˆŲ§Ł†Ų“Ł†Ų§Ų³ŪŒ دانؓگاه'),
(108607, 'https://ror.org/04adnng28', 'en', 1, 'https://ror.org/04adnng28 International Society for Mangrove Ecosystems ē‰¹åˆ„éžå–¶åˆ©ę“»å‹•ę³•äŗŗå›½éš›ćƒžćƒ³ć‚°ćƒ­ćƒ¼ćƒ–ē”Ÿę…‹ē³»å”ä¼š'),
(108608, 'https://ror.org/04af1jj69', 'en', 1, 'https://ror.org/04af1jj69 Jednota slovenských matematikov a fyzikov Union of Slovak Mathematicians and Physicists'),
(108609, 'https://ror.org/04af78111', 'en', 1, 'https://ror.org/04af78111 University of Fine Arts in Poznań Uniwersytet Artystyczny w Poznaniu'),
(108610, 'https://ror.org/04aha0598', 'en', 1, 'https://ror.org/04aha0598 Norwegian Institute for Nature Research'),
(108611, 'https://ror.org/04ahz4m50', 'en', 1, 'https://ror.org/04ahz4m50 The Hokkaido Centre for Family Medicine åŒ»ē™‚ę³•äŗŗåŒ—ęµ·é“å®¶åŗ­åŒ»ē™‚å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(108612, 'https://ror.org/04apbg334', 'en', 1, 'https://ror.org/04apbg334 Tsurugi Municipal Handa Hospital ć¤ć‚‹ćŽē”ŗē«‹åŠē”°ē—…é™¢'),
(108613, 'https://ror.org/04appkh56', 'en', 1, 'https://ror.org/04appkh56 Manado State University Universitas Negeri Manado'),
(108614, 'https://ror.org/04apqa227', 'es', 1, 'https://ror.org/04apqa227 ANCAP (Uruguay) National Administration of Fuels, Alcohols and Portland'),
(108615, 'https://ror.org/04aqrg319', 'en', 1, 'https://ror.org/04aqrg319 Japan Industrial Waste Management Foundation å…¬ē›Šč²”å›£ę³•äŗŗē”£ę„­å»ƒę£„ē‰©å‡¦ē†äŗ‹ę„­ęŒÆčˆˆč²”å›£'),
(108616, 'https://ror.org/04arm8d04', 'es', 1, 'https://ror.org/04arm8d04 National University of Rafaela Universidad Nacional de Rafaela'),
(108617, 'https://ror.org/04asz2z59', 'en', 1, 'https://ror.org/04asz2z59 William James College'),
(108618, 'https://ror.org/04att9732', 'en', 1, 'https://ror.org/04att9732 Minnesota State University, Mankato UniversitĆ© d''Ɖtat du Minnesota'),
(108619, 'https://ror.org/04av5vp66', 'en', 1, 'https://ror.org/04av5vp66 Public Telephone Communication å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å…¬č”†é›»č©±ä¼š'),
(108620, 'https://ror.org/04avkmd49', 'en', 1, 'https://ror.org/04avkmd49 Williams College'),
(108621, 'https://ror.org/04avs3e27', 'es', 1, 'https://ror.org/04avs3e27 Technological University of Huejotzingo Universidad Tecnológica de Huejotzingo'),
(108622, 'https://ror.org/04awywg66', 'en', 1, 'https://ror.org/04awywg66 Hyogo Emergency Medical Center å…µåŗ«ēœŒē½å®³åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(108623, 'https://ror.org/04awzyg03', 'fr', 1, 'https://ror.org/04awzyg03 BIOASTER'),
(108624, 'https://ror.org/04axvmf19', 'es', 1, 'https://ror.org/04axvmf19 Corporación Unificada Nacional de Educación Superior'),
(108625, 'https://ror.org/04aywby51', 'en', 1, 'https://ror.org/04aywby51 Toyama Prefectural Environmental Science Research Center åÆŒå±±ēœŒē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(108626, 'https://ror.org/04b08hq31', 'pt', 0, 'https://ror.org/04b08hq31 Instituto Gulbenkian de CiĆŖncia'),
(108627, 'https://ror.org/04b0sqj14', 'en', 1, 'https://ror.org/04b0sqj14 Forestry Agency ęž—é‡Žåŗ'),
(108628, 'https://ror.org/04b1m3e94', 'en', 1, 'https://ror.org/04b1m3e94 Mizoram University ą¤®ą¤æą¤œą¤¼ą„‹ą¤°ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(108629, 'https://ror.org/04b2s0r81', 'en', 1, 'https://ror.org/04b2s0r81 Graw Radiosondes GmbH & Co. KG, Graw Radiosondes GmbH & Co. KG (Germany)'),
(108630, 'https://ror.org/04b33kk47', 'id', 1, 'https://ror.org/04b33kk47 Institut Agama Islam Negeri Manado'),
(108631, 'https://ror.org/04b62yp82', 'en', 0, 'https://ror.org/04b62yp82 Lietuvos edukologijos universitetas Lithuanian University of Educational Sciences Wileński Uniwersytet Pedagogiczny Литовский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Ń… наук'),
(108632, 'https://ror.org/04b6xjt49', 'pt', 1, 'https://ror.org/04b6xjt49 Sociedade Portuguesa de Gastrenterologia'),
(108633, 'https://ror.org/04b9maa60', 'es', 1, 'https://ror.org/04b9maa60 Biblioteca Judicial "Dr. Ricardo Gallardo"'),
(108634, 'https://ror.org/04b9vrm74', 'en', 1, 'https://ror.org/04b9vrm74 Ostbayerische Technische Hochschule Regensburg Regensburg University of Applied Sciences'),
(108635, 'https://ror.org/04bcbax71', 'no_lang_code', 1, 'https://ror.org/04bcbax71 Musashino University ę­¦č”µé‡Žå¤§å­¦'),
(108636, 'https://ror.org/04bcef453', 'no_lang_code', 1, 'https://ror.org/04bcef453 Target Active Training (Romania)'),
(108637, 'https://ror.org/04bdffz58', 'en', 1, 'https://ror.org/04bdffz58 Drexel University'),
(108638, 'https://ror.org/04be65q32', 'en', 1, 'https://ror.org/04be65q32 Daejin University ėŒ€ģ§„ėŒ€ķ•™źµ'),
(108639, 'https://ror.org/04betma47', 'en', 1, 'https://ror.org/04betma47 Tachikawa Sogo Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē¤¾å›£å„ē”Ÿä¼šē«‹å·ē›øäŗ’ē—…é™¢'),
(108640, 'https://ror.org/04bghay88', 'en', 1, 'https://ror.org/04bghay88 Shiga Prefectural Fishery Experiment Station ę»‹č³€ēœŒę°“ē”£č©¦éØ“å “'),
(108641, 'https://ror.org/04bhfmv97', 'en', 1, 'https://ror.org/04bhfmv97 Centre for Ecological Research Magyar TudomĆ”nyos AkadĆ©mia Ɩkológiai Kutatókƶzpontja'),
(108642, 'https://ror.org/04bht2a94', 'en', 1, 'https://ror.org/04bht2a94 Ise Municipal General Hospital åø‚ē«‹ä¼Šå‹¢ē·åˆē—…é™¢'),
(108643, 'https://ror.org/04bj28v14', 'en', 1, 'https://ror.org/04bj28v14 Loma Linda University UniversitƩ de loma linda'),
(108644, 'https://ror.org/04bk3z010', 'en', 1, 'https://ror.org/04bk3z010 Aviation royale canadienne Royal Canadian Air Force'),
(108645, 'https://ror.org/04bm15q02', 'en', 1, 'https://ror.org/04bm15q02 Karatina University'),
(108646, 'https://ror.org/04bmr7q61', 'it', 1, 'https://ror.org/04bmr7q61 Aziende Socio Sanitarie Territoriali di Lecco Regional Health Care and Social Agency of Lecco'),
(108647, 'https://ror.org/04bpbcc82', 'en', 1, 'https://ror.org/04bpbcc82 Japan Weathering Test Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¦ć‚Øć‚¶ćƒŖćƒ³ć‚°ćƒ†ć‚¹ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(108648, 'https://ror.org/04bpsyk42', 'en', 1, 'https://ror.org/04bpsyk42 Saitama Prefectural University åŸ¼ēŽ‰ēœŒē«‹å¤§å­¦'),
(108649, 'https://ror.org/04bq88r97', 'pt', 1, 'https://ror.org/04bq88r97 Centro de Informação Antivenenos'),
(108650, 'https://ror.org/04bqwzd17', 'de', 1, 'https://ror.org/04bqwzd17 Bayerisches Landesamt für Gesundheit und Lebensmittelsicherheit'),
(108651, 'https://ror.org/04bs4rc32', 'en', 1, 'https://ror.org/04bs4rc32 Lagos State University of Education'),
(108652, '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'),
(108653, 'https://ror.org/04bt33m09', 'en', 1, 'https://ror.org/04bt33m09 Shri Dharmasthala Manjunatheswara College of Ayurveda and Hospital'),
(108654, 'https://ror.org/04bwf3e34', 'de', 1, 'https://ror.org/04bwf3e34 Deutsches Zentrum für Luft- und Raumfahrt e. V. (DLR)'),
(108655, 'https://ror.org/04bwp4t29', 'en', 1, 'https://ror.org/04bwp4t29 Shandong Youth University of Political Science å±±äøœé’å¹“ę”æę²»å­¦é™¢'),
(108656, 'https://ror.org/04bya8j72', 'en', 1, 'https://ror.org/04bya8j72 Center for Experimental and Clinical Infection Research Zentrum für Experimentelle und Klinische Infektionsforschung'),
(108657, 'https://ror.org/04byjrr35', 'en', 1, 'https://ror.org/04byjrr35 The Miyagi Prefectural Izunuma-Uchinuma Environmental Foundation å…¬ē›Šč²”å›£ę³•äŗŗå®®åŸŽēœŒä¼Šč±†ę²¼ćƒ»å†…ę²¼ē’°å¢ƒäæå…Øč²”å›£'),
(108658, 'https://ror.org/04byt9g09', 'en', 1, 'https://ror.org/04byt9g09 Pamantasang Xavier – Ateneo de Cagayan Xavier University'),
(108659, 'https://ror.org/04c292595', 'en', 1, 'https://ror.org/04c292595 Japan Municipal Hospital Association å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č‡Ŗę²»ä½“ē—…é™¢å”č­°ä¼š'),
(108660, 'https://ror.org/04c2erx11', 'en', 1, 'https://ror.org/04c2erx11 VERITAS'),
(108661, 'https://ror.org/04c3j3t84', 'en', 1, 'https://ror.org/04c3j3t84 National Engineering Research Center for Information Technology in Agriculture å›½å®¶å†œäøšäæ”ęÆåŒ–å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(108662, 'https://ror.org/04c3msc18', 'en', 1, 'https://ror.org/04c3msc18 Galileo University Universidad Galileo'),
(108663, 'https://ror.org/04c419163', 'en', 1, 'https://ror.org/04c419163 Liaoning Police College č¾½å®č­¦åÆŸå­¦é™¢'),
(108664, 'https://ror.org/04c4bm785', 'no_lang_code', 1, 'https://ror.org/04c4bm785 CGIAR'),
(108665, 'https://ror.org/04c7gjr63', 'en', 1, 'https://ror.org/04c7gjr63 Fujioka General Hospital å…¬ē«‹č—¤å²”ē·åˆē—…é™¢'),
(108666, 'https://ror.org/04c7kr625', 'en', 1, 'https://ror.org/04c7kr625 National Sanatorium Amami-Wakouen å›½ē«‹ē™‚é¤Šę‰€å„„ē¾Žå’Œå…‰åœ’'),
(108667, 'https://ror.org/04cadha73', 'es', 1, 'https://ror.org/04cadha73 Geological and Mining Institute of Spain Instituto Geológico y Minero de España'),
(108668, 'https://ror.org/04cb5cb57', 'en', 1, 'https://ror.org/04cb5cb57 Yamaguchi Prefectural Institute of Public Health and Environment å±±å£ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(108669, 'https://ror.org/04cd4zm28', 'id', 1, 'https://ror.org/04cd4zm28 Institut Agama Islam Negeri Metro Lampung'),
(108670, 'https://ror.org/04ch0eh11', 'en', 1, 'https://ror.org/04ch0eh11 Al Rasheed University College'),
(108671, 'https://ror.org/04cjjhh62', 'en', 1, 'https://ror.org/04cjjhh62 Universidad de La Guajira University of La Guajira'),
(108672, 'https://ror.org/04cqf4q11', 'en', 1, 'https://ror.org/04cqf4q11 Miyamoto Hospital åŒ»ē™‚ę³•äŗŗē›”čŖ ä¼šå®®ęœ¬ē—…é™¢'),
(108673, 'https://ror.org/04cr2sq58', 'en', 1, 'https://ror.org/04cr2sq58 Botswana International University of Science and Technology'),
(108674, 'https://ror.org/04cs12z33', 'en', 1, 'https://ror.org/04cs12z33 Uro Oncology Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ سرطان Ł‡Ų§ŪŒ دستگاه ادراری ŲŖŁ†Ų§Ų³Ł„ŪŒ'),
(108675, 'https://ror.org/04csg5w40', 'en', 1, 'https://ror.org/04csg5w40 Fielding Graduate University'),
(108676, 'https://ror.org/04ctjby61', 'en', 1, 'https://ror.org/04ctjby61 Chapingo Autonomous University Universidad Autónoma Chapingo'),
(108677, 'https://ror.org/04cwrbc27', 'pt', 1, 'https://ror.org/04cwrbc27 Albert Einstein Israelite Hospital Hospital Israelita Albert Einstein'),
(108678, 'https://ror.org/04cyy9943', 'en', 1, 'https://ror.org/04cyy9943 Northwest Minzu University č„æåŒ—ę°‘ę—å¤§å­¦'),
(108679, 'https://ror.org/04d26v797', 'en', 1, 'https://ror.org/04d26v797 Academia de Studii Economice a Moldovei Academy of Economic Studies of Moldova'),
(108680, 'https://ror.org/04d2spn76', 'en', 1, 'https://ror.org/04d2spn76 Al-Bayan University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁŠŲ§Ł†'),
(108681, 'https://ror.org/04d4d3c02', 'en', 1, 'https://ror.org/04d4d3c02 University of Peloponnese UniversitĆ© du pĆ©loponnĆØse Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī ĪµĪ»ĪæĻ€ĪæĪ½Ī½Ī®ĻƒĪæĻ…'),
(108682, 'https://ror.org/04d4hxn32', 'en', 1, 'https://ror.org/04d4hxn32 Dwarkadas J. Sanghvi College of Engineering'),
(108683, 'https://ror.org/04d4mbk19', 'en', 1, 'https://ror.org/04d4mbk19 Pakistan Institute of Engineering and Applied Sciences'),
(108684, 'https://ror.org/04d4qrf43', 'en', 1, 'https://ror.org/04d4qrf43 Eckerd College'),
(108685, 'https://ror.org/04d54np47', 'en', 1, 'https://ror.org/04d54np47 Ball Memorial Hospital'),
(108686, 'https://ror.org/04d5ay023', 'en', 1, 'https://ror.org/04d5ay023 Tokushima Prefectural Government 徳島県庁'),
(108687, 'https://ror.org/04d6the49', 'en', 1, 'https://ror.org/04d6the49 Rezekne Academy of Technologies Rēzeknes Tehnoloģiju Akadēmija'),
(108688, 'https://ror.org/04d7bvw76', 'en', 1, 'https://ror.org/04d7bvw76 Paurastya Vidyāpīṭham Pontifical Oriental Institute of Religious Studies'),
(108689, 'https://ror.org/04d8f7w44', 'en', 1, 'https://ror.org/04d8f7w44 Saga Prefectural Upland Farming Research and Extension Center ä½č³€ēœŒäøŠå “å–¶č¾²ć‚»ćƒ³ć‚æćƒ¼'),
(108690, 'https://ror.org/04d9an715', 'en', 1, 'https://ror.org/04d9an715 Xavier Institute of Social Service ą¤œą„‡ą¤µą¤æą¤Æą¤° समाज ą¤øą„‡ą¤µą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(108691, 'https://ror.org/04d9kk613', 'en', 1, 'https://ror.org/04d9kk613 Iranian Research Center for HIV/AIDS مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ایدز Ų§ŪŒŲ±Ų§Ł†'),
(108692, 'https://ror.org/04dab1g54', 'en', 1, 'https://ror.org/04dab1g54 SAGA Light Source ä½č³€ēœŒē«‹ä¹å·žć‚·ćƒ³ć‚Æćƒ­ćƒˆćƒ­ćƒ³å…‰ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼, å…¬ē›Šč²”å›£ę³•äŗŗä½č³€ēœŒē”£ę„­ęŒÆčˆˆę©Ÿę§‹ ä¹å·žć‚·ćƒ³ć‚Æćƒ­ćƒˆćƒ­ćƒ³å…‰ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(108693, 'https://ror.org/04db0t411', 'es', 1, 'https://ror.org/04db0t411 Universidad Privada Domingo Savio'),
(108694, 'https://ror.org/04dd86x86', 'en', 1, 'https://ror.org/04dd86x86 Rajarata University of Sri Lanka ą®°ą®œą®°ą®ŸąÆą®Ÿ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ රජරට ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(108695, 'https://ror.org/04de06r93', 'en', 1, 'https://ror.org/04de06r93 Fuji City General Hospital åÆŒå£«åø‚ē«‹äø­å¤®ē—…é™¢'),
(108696, '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'),
(108697, 'https://ror.org/04dgnw967', 'id', 1, 'https://ror.org/04dgnw967 Bale Bandung District Court Pengadilan Negeri Bale Bandung'),
(108698, 'https://ror.org/04dhnbf86', 'en', 1, 'https://ror.org/04dhnbf86 North Chiang Mai University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø­ąø£ą¹Œąø—-ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(108699, 'https://ror.org/04dp7tp96', 'en', 1, 'https://ror.org/04dp7tp96 Motilal Nehru National Institute of Technology ą¤®ą„‹ą¤¤ą„€ą¤²ą¤¾ą¤² ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø इलाहाबाद'),
(108700, 'https://ror.org/04dt46w81', 'en', 1, 'https://ror.org/04dt46w81 Universidad de Evansville University of Evansville'),
(108701, 'https://ror.org/04dv3aq25', 'en', 1, 'https://ror.org/04dv3aq25 International Iberian Nanotechnology Laboratory Laboratório Ibérico Internacional de Nanotecnologia'),
(108702, 'https://ror.org/04dvbth24', 'es', 1, 'https://ror.org/04dvbth24 Universidad TƩcnica Particular de Loja'),
(108703, 'https://ror.org/04dx2y384', 'en', 1, 'https://ror.org/04dx2y384 Sarhad University of Science and Information Technology جامعہ Ų³Ų±Ų­ŲÆ'),
(108704, 'https://ror.org/04dx32582', 'fr', 1, 'https://ror.org/04dx32582 InterdisciplinaritĆ© en SantĆ© Publique Interventions et Instruments de mesure complexes – RĆ©gion Est'),
(108705, 'https://ror.org/04dx54y73', 'en', 1, 'https://ror.org/04dx54y73 Institutt for fredsforskning Peace Research Institute Oslo'),
(108706, 'https://ror.org/04dx9xj68', 'en', 1, 'https://ror.org/04dx9xj68 RajaRajeswari College of Engineering'),
(108707, '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'),
(108708, 'https://ror.org/04dyzkj40', 'en', 1, 'https://ror.org/04dyzkj40 Texas Woman''s University'),
(108709, 'https://ror.org/04dzesb62', 'en', 1, 'https://ror.org/04dzesb62 Majan College'),
(108710, 'https://ror.org/04dzs7b08', 'en', 1, 'https://ror.org/04dzs7b08 Wofford College'),
(108711, 'https://ror.org/04e4qr749', 'en', 1, 'https://ror.org/04e4qr749 Japan Environment Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒå”ä¼š'),
(108712, 'https://ror.org/04e6r1478', 'en', 1, 'https://ror.org/04e6r1478 Emporia State University UniversitĆ© d''Ɖtat d''emporia'),
(108713, 'https://ror.org/04e76k847', 'en', 1, 'https://ror.org/04e76k847 Kobe Institute of Urban Research å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøéƒ½åø‚å•é”Œē ”ē©¶ę‰€'),
(108714, 'https://ror.org/04e7j0a18', 'en', 1, 'https://ror.org/04e7j0a18 Al-Hawash Private University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŁˆŲ§Ų“ الخاصة'),
(108715, 'https://ror.org/04e7kpf57', 'en', 1, 'https://ror.org/04e7kpf57 Thomas More Kempen'),
(108716, 'https://ror.org/04e8qfh32', 'es', 1, 'https://ror.org/04e8qfh32 Universidad Marcelino Champagnat'),
(108717, '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'),
(108718, 'https://ror.org/04ecp7x75', 'ro', 1, 'https://ror.org/04ecp7x75 Spitalul Clinic de Psihiatrie Alexandru Obregia'),
(108719, 'https://ror.org/04edvhw11', 'en', 1, 'https://ror.org/04edvhw11 The Japanese Society for Cardiovascular Surgery ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬åæƒč‡“č”€ē®”å¤–ē§‘å­¦ä¼š'),
(108720, 'https://ror.org/04eehsy38', 'en', 1, 'https://ror.org/04eehsy38 Technical University of Kenya'),
(108721, 'https://ror.org/04egzqc64', 'en', 1, 'https://ror.org/04egzqc64 Colombian Geological Survey Servicio Geológico Colombiano'),
(108722, 'https://ror.org/04eh2yn43', 'pt', 1, 'https://ror.org/04eh2yn43 Sociedade Portuguesa de Endoscopia Digestiva'),
(108723, 'https://ror.org/04ejmmq75', 'en', 1, 'https://ror.org/04ejmmq75 Shanghai Academy of Agricultural Sciences äøŠęµ·åø‚å†œäøšē§‘å­¦é™¢'),
(108724, 'https://ror.org/04eka8j06', 'en', 1, 'https://ror.org/04eka8j06 Ostwestfalen-Lippe University of Applied Sciences and Arts Technische Hochschule Ostwestfalen-Lippe'),
(108725, 'https://ror.org/04emwm605', 'no_lang_code', 1, 'https://ror.org/04emwm605 Thales (France)'),
(108726, 'https://ror.org/04encyw73', 'pt', 1, 'https://ror.org/04encyw73 Instituto de Desenvolvimento SustentƔvel MamirauƔ'),
(108727, 'https://ror.org/04esjnq02', 'en', 1, 'https://ror.org/04esjnq02 GƤvle Hospital GƤvle Sjukhus'),
(108728, 'https://ror.org/04ewct822', 'en', 1, 'https://ror.org/04ewct822 Southwestern University of Finance and Economics č„æå—č“¢ē»å¤§å­¦'),
(108729, 'https://ror.org/04exd0a76', 'no_lang_code', 1, 'https://ror.org/04exd0a76 Jinggangshan University äŗ•å†ˆå±±å¤§å­¦'),
(108730, 'https://ror.org/04exg7985', 'es', 1, 'https://ror.org/04exg7985 Instituto de Fomento Pesquero'),
(108731, 'https://ror.org/04exz5k48', 'en', 1, 'https://ror.org/04exz5k48 Tanjungpura University Universitas Tanjungpura'),
(108732, 'https://ror.org/04eybkn52', 'en', 1, 'https://ror.org/04eybkn52 Saint Anselm College'),
(108733, 'https://ror.org/04ez3r306', 'en', 1, 'https://ror.org/04ez3r306 ę­¦ę±‰åø‚å·„ēØ‹ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(108734, 'https://ror.org/04f1mvy95', 'en', 1, 'https://ror.org/04f1mvy95 KWR Water Research Institute'),
(108735, 'https://ror.org/04f2nsd36', 'en', 1, 'https://ror.org/04f2nsd36 Lancaster University Prifysgol Caerhirfryn'),
(108736, 'https://ror.org/04f4ae402', 'en', 1, 'https://ror.org/04f4ae402 The Advanced Materials Processing Institute Kinki Japan äø€čˆ¬č²”å›£ę³•äŗŗčæ‘ē•æé«˜ć‚Øćƒćƒ«ć‚®ćƒ¼åŠ å·„ęŠ€č”“ē ”ē©¶ę‰€'),
(108737, 'https://ror.org/04f50n919', 'fr', 1, 'https://ror.org/04f50n919 Stress, Immunity, Pathogens Stress, immunité, pathogènes'),
(108738, 'https://ror.org/04f5ykh80', 'en', 1, 'https://ror.org/04f5ykh80 International Media Research Foundation č²”å›£ę³•äŗŗå›½éš›ćƒ”ćƒ‡ć‚£ć‚¢ē ”ē©¶č²”å›£'),
(108739, 'https://ror.org/04f6z5785', 'es', 1, 'https://ror.org/04f6z5785 Instituto Tecnológico Superior de Salvatierra'),
(108740, 'https://ror.org/04f7afq11', 'en', 1, 'https://ror.org/04f7afq11 Green University of Bangladesh ą¦—ą§ą¦°ą¦æą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(108741, 'https://ror.org/04f8q4539', 'en', 1, 'https://ror.org/04f8q4539 Toyama College of Welfare Science åÆŒå±±ē¦ē„‰ēŸ­ęœŸå¤§å­¦'),
(108742, 'https://ror.org/04fav5970', 'en', 1, 'https://ror.org/04fav5970 Kanagawa Health Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‹ćŖćŒć‚å„åŗ·č²”å›£'),
(108743, 'https://ror.org/04fbb7514', 'en', 1, 'https://ror.org/04fbb7514 Universidad de Sucre University of Sucre'),
(108744, 'https://ror.org/04fbd1w03', 'fr', 1, 'https://ror.org/04fbd1w03 Hydrologie MƩtƩorologie et ComplexitƩ, Laboratoire Hydrologie MƩtƩorologie et ComplexitƩ'),
(108745, 'https://ror.org/04fceqm38', 'en', 1, 'https://ror.org/04fceqm38 Macalester College'),
(108746, 'https://ror.org/04fevhe89', 'en', 1, 'https://ror.org/04fevhe89 Al Fajr College of Science and Technology ŁƒŁ„ŁŠŲ© الفجر Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(108747, 'https://ror.org/04fg7az81', 'nl', 1, 'https://ror.org/04fg7az81 Ziekenhuis Oost-Limburg'),
(108748, 'https://ror.org/04fmayc82', 'fr', 1, 'https://ror.org/04fmayc82 Centre d''Investigation Clinique - Innovation Technologique Clinical Investigation Centre for Innovative Technology Network'),
(108749, 'https://ror.org/04fn0fc92', 'en', 1, 'https://ror.org/04fn0fc92 Tsukiji Neurological Clinic åŒ»ē™‚ę³•äŗŗē¤¾å›£é«˜ęµä¼šēÆ‰åœ°ē„žēµŒē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(108750, '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'),
(108751, 'https://ror.org/04fnna213', 'it', 1, 'https://ror.org/04fnna213 Istituto Pediatrico della Svizzera Italiana'),
(108752, 'https://ror.org/04fpxzg11', 'en', 1, 'https://ror.org/04fpxzg11 IEEE Communications Society'),
(108753, 'https://ror.org/04fq48551', 'en', 1, 'https://ror.org/04fq48551 U.S. Air Force Research Laboratory Directed Energy Directorate'),
(108754, 'https://ror.org/04fq7xz90', 'en', 1, 'https://ror.org/04fq7xz90 Guilford College'),
(108755, 'https://ror.org/04frf8n21', 'en', 1, 'https://ror.org/04frf8n21 Kyrgyz-Türkish Manas Üniversity ŠšŃ‹Ń€Š³Ń‹Š·-Түрк «Манас» ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾-Š¢ŃƒŃ€ŠµŃ†ŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ «Манас»'),
(108756, 'https://ror.org/04fs90r60', 'en', 1, 'https://ror.org/04fs90r60 Tamil Nadu Agricultural University UniversitĆ© agricole de tamil nadu तमिल ą¤Øą¤¾ą¤”ą„ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®µąÆ‡ą®³ą®¾ą®£ąÆą®®ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“¤ą“®ą“æą““ąµą“Øą“¾ą“Ÿąµ ą“•ą“¾ąµ¼ą“·ą“æą“• ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(108757, 'https://ror.org/04fttyv97', 'en', 1, 'https://ror.org/04fttyv97 University of Arkansas at Little Rock UniversitƩ de l''arkansas Ơ little rock'),
(108758, 'https://ror.org/04fxjrd39', 'pt', 1, 'https://ror.org/04fxjrd39 Universidade de Coimbra Centro de GeociĆŖncias'),
(108759, 'https://ror.org/04fyj8k59', 'en', 1, 'https://ror.org/04fyj8k59 Vishnu Dental College'),
(108760, '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üğü'),
(108761, 'https://ror.org/04g2hr413', 'en', 1, 'https://ror.org/04g2hr413 Fukui Prefectural Livestock Experimental Station ē¦äŗ•ēœŒē•œē”£č©¦éØ“å “'),
(108762, 'https://ror.org/04g386355', 'en', 1, 'https://ror.org/04g386355 Shioda Hospital åŒ»ē™‚ę³•äŗŗSHIODA唩田病院'),
(108763, 'https://ror.org/04g76yf98', 'en', 1, 'https://ror.org/04g76yf98 Nagasaki Industrial Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗé•·å“ŽēœŒē”£ę„­ęŒÆčˆˆč²”å›£'),
(108764, 'https://ror.org/04g926778', 'en', 1, 'https://ror.org/04g926778 Wakayama Prefectural Government å’Œę­Œå±±ēœŒåŗ'),
(108765, 'https://ror.org/04gaexw88', 'en', 1, 'https://ror.org/04gaexw88 Southwest Minzu University č„æå—ę°‘ę—å¤§å­¦'),
(108766, 'https://ror.org/04gaeyc40', 'en', 1, 'https://ror.org/04gaeyc40 York College'),
(108767, 'https://ror.org/04gazzm76', 'es', 1, 'https://ror.org/04gazzm76 Universidad para el Desarrollo Andino'),
(108768, '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'),
(108769, 'https://ror.org/04gbpnx96', 'en', 1, 'https://ror.org/04gbpnx96 University of Opole'),
(108770, 'https://ror.org/04ge02x20', 'en', 1, 'https://ror.org/04ge02x20 Geoscience Australia'),
(108771, 'https://ror.org/04gey0774', 'en', 1, 'https://ror.org/04gey0774 Government of Sweden Konungariket Sveriges regering'),
(108772, 'https://ror.org/04gey2582', 'en', 1, 'https://ror.org/04gey2582 Japan Audiological Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č“č¦šåŒ»å­¦ä¼š'),
(108773, 'https://ror.org/04gf7fp41', 'en', 1, 'https://ror.org/04gf7fp41 Høgskolen i Østfold Østfold University College'),
(108774, 'https://ror.org/04gf8db07', 'en', 1, 'https://ror.org/04gf8db07 Kochi Prefectural Livestock Experiment Station é«˜ēŸ„ēœŒē•œē”£č©¦éØ“å “'),
(108775, 'https://ror.org/04gg60e72', 'de', 1, 'https://ror.org/04gg60e72 Hochschule Aalen'),
(108776, 'https://ror.org/04ghtjd11', 'fr', 1, 'https://ror.org/04ghtjd11 Centre d''Investigation Clinique Pierre Drouin'),
(108777, 'https://ror.org/04gmpq477', 'en', 1, 'https://ror.org/04gmpq477 Saga Tea Research Laboratory ä½č³€ēœŒčŒ¶ę„­č©¦éØ“å “'),
(108778, 'https://ror.org/04gmsar03', 'en', 1, 'https://ror.org/04gmsar03 Fraunhofer Institute for Computer Graphics Research Fraunhofer-Institut für Graphische Datenverarbeitung'),
(108779, 'https://ror.org/04gnjpq42', 'en', 1, 'https://ror.org/04gnjpq42 National and Kapodistrian University of Athens UniversitĆ© nationale et capodistrienne d''athĆØnes Ī•ĪøĪ½Ī¹ĪŗĻŒ και ĪšĪ±Ļ€ĪæĪ“Ī¹ĻƒĻ„ĻĪ¹Ī±ĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(108780, 'https://ror.org/04gpf9b23', 'nl', 1, 'https://ror.org/04gpf9b23 Kennispunt Twente'),
(108781, 'https://ror.org/04gq0w522', 'en', 1, 'https://ror.org/04gq0w522 Flemish Institute for Technological Research Vlaamse Instelling voor Technologisch Onderzoek'),
(108782, 'https://ror.org/04gq7sp95', 'pt', 1, 'https://ror.org/04gq7sp95 Universidade de Coimbra Centro de Investigação em Neuropsicologia e Intervenção Cognitivo-Comportamental'),
(108783, 'https://ror.org/04grrp271', 'nl', 1, 'https://ror.org/04grrp271 Twente Hospital Group Ziekenhuis Groep Twente'),
(108784, 'https://ror.org/04gsk8f09', 'pt', 1, 'https://ror.org/04gsk8f09 Centro de Desenvolvimento do Potencial Humano'),
(108785, 'https://ror.org/04gsyfx35', 'es', 1, 'https://ror.org/04gsyfx35 Centro de Investigación y Estudios Superiores en Antropología Social'),
(108786, 'https://ror.org/04gtcke47', 'en', 1, 'https://ror.org/04gtcke47 The Meteorological Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°—č±”å­¦ä¼š'),
(108787, 'https://ror.org/04gv2er37', 'no_lang_code', 1, 'https://ror.org/04gv2er37 Mary Ann Liebert, Mary Ann Liebert, Inc. Mary Ann Liebert (United States)'),
(108788, 'https://ror.org/04gvrc423', 'en', 1, 'https://ror.org/04gvrc423 Okitama Public General Hospital å…¬ē«‹ē½®č³œē·åˆē—…é™¢'),
(108789, 'https://ror.org/04gvszq17', 'es', 1, 'https://ror.org/04gvszq17 CETYS Universidad, Centro de EnseƱanza TƩcnica y Superior'),
(108790, 'https://ror.org/04gwtvf26', 'en', 1, 'https://ror.org/04gwtvf26 Xihua University č„æåŽå¤§å­¦'),
(108791, 'https://ror.org/04gy2gr07', 'pt', 1, 'https://ror.org/04gy2gr07 CĆ¢mara Municipal de Loures'),
(108792, 'https://ror.org/04gyqhp07', 'en', 1, 'https://ror.org/04gyqhp07 Nan Tien Institute'),
(108793, 'https://ror.org/04gz69q88', 'id', 1, 'https://ror.org/04gz69q88 Universitas Cokroaminoto Palopo'),
(108794, 'https://ror.org/04gzb2213', 'en', 1, 'https://ror.org/04gzb2213 University of Delhi UniversitĆ© de delhi ŲÆŪŁ„ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¦ą¦æą¦²ą§ą¦²ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ਦਿੱਲੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®¤ą®æą®²ąÆą®²ą®æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“”ąµ†ąµ½ą“¹ą“æ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(108795, 'https://ror.org/04gzcxt97', 'en', 1, 'https://ror.org/04gzcxt97 Korea Railroad Research Institute ķ•œźµ­ ģ² ė„ 기술 연구원'),
(108796, 'https://ror.org/04h1pq403', 'en', 1, 'https://ror.org/04h1pq403 Materials Process Technology Center äø€čˆ¬č²”å›£ę³•äŗŗē“ å½¢ęć‚»ćƒ³ć‚æćƒ¼'),
(108797, 'https://ror.org/04h27b256', 'en', 1, 'https://ror.org/04h27b256 Salymbekov University Далымбеков ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108798, 'https://ror.org/04h3f3n10', 'en', 1, 'https://ror.org/04h3f3n10 Penobscot Marine Museum'),
(108799, 'https://ror.org/04h56d485', 'en', 1, 'https://ror.org/04h56d485 Heisei Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¹³ęˆčØ˜åæµē—…é™¢'),
(108800, 'https://ror.org/04h58p752', 'en', 1, 'https://ror.org/04h58p752 Sano – Centre for Computational Personalised Medicine International Research Foundation'),
(108801, 'https://ror.org/04h67aa53', 'en', 1, 'https://ror.org/04h67aa53 Office of Legislative & Public Affairs'),
(108802, 'https://ror.org/04h6w7946', 'en', 1, 'https://ror.org/04h6w7946 University of the Fraser Valley'),
(108803, 'https://ror.org/04h7yms32', 'en', 1, 'https://ror.org/04h7yms32 Nagasaki Prefectural Institute for Environmental Research and Public Health é•·å“ŽēœŒē’°å¢ƒäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(108804, 'https://ror.org/04h9pf148', 'en', 1, 'https://ror.org/04h9pf148 Okayama Prefectural Institute for Environmental Science and Public Health å²”å±±ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(108805, 'https://ror.org/04h9yzf84', 'no_lang_code', 1, 'https://ror.org/04h9yzf84 Werfen (Spain)'),
(108806, 'https://ror.org/04ha0ax85', 'en', 1, 'https://ror.org/04ha0ax85 Northern Regional College'),
(108807, 'https://ror.org/04ha6fg30', 'pt', 1, 'https://ror.org/04ha6fg30 Grupo de Ativistas em Tratamentos'),
(108808, 'https://ror.org/04habxs80', 'es', 1, 'https://ror.org/04habxs80 El Colegio de Sonora'),
(108809, 'https://ror.org/04hb7zd44', 'es', 1, 'https://ror.org/04hb7zd44 Universidad Tecnológica del Norte de Guanajuato'),
(108810, 'https://ror.org/04hba3q82', 'en', 1, 'https://ror.org/04hba3q82 JAé¦™å·åŽšē”Ÿé€£å±‹å³¶ē·åˆē—…é™¢ Yashima General hospital'),
(108811, 'https://ror.org/04hbgcp92', 'en', 1, 'https://ror.org/04hbgcp92 University of Blida 2'),
(108812, 'https://ror.org/04hbvjm68', 'en', 1, 'https://ror.org/04hbvjm68 Nagoya City Public Health Research Institute åå¤å±‹åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(108813, 'https://ror.org/04hcmns80', 'id', 1, 'https://ror.org/04hcmns80 College of Business Runata Sekolah Tinggi Bisnis Runata'),
(108814, 'https://ror.org/04hdmxt42', 'no_lang_code', 1, 'https://ror.org/04hdmxt42 Reuniwatt, Reuniwatt (France) Reuniwatt SAS'),
(108815, 'https://ror.org/04hexmg17', 'en', 1, 'https://ror.org/04hexmg17 Palm Beach Atlantic University'),
(108816, 'https://ror.org/04hf8h220', 'en', 1, 'https://ror.org/04hf8h220 CenGen (Pty) Ltd'),
(108817, 'https://ror.org/04hfv3620', 'en', 1, 'https://ror.org/04hfv3620 Benue State University'),
(108818, 'https://ror.org/04hgqjy83', 'en', 1, 'https://ror.org/04hgqjy83 Hakim Children Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ś©ŁˆŲÆŚ©Ų§Ł† Ų­Ś©ŪŒŁ…'),
(108819, 'https://ror.org/04hhhj520', 'en', 1, 'https://ror.org/04hhhj520 Donetsk National University of Economics and Trade named after Mykhailo Tugan-Baranovsky Донецкий ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń–й Университет Экономики Šø Торговли имени ŠœŠøŃ…аила Туган-Барановского Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Університет Економіки і Торгівлі імені ŠœŠøŃ…Š°Š¹Š»Š° Туган-Š‘Š°Ń€Š°Š½Š¾Š²ŃŃŒŠŗŠ¾Š³Š¾'),
(108820, 'https://ror.org/04hkzty24', 'en', 1, 'https://ror.org/04hkzty24 Bucharest National University of Arts Universitatea Națională de Arte București'),
(108821, 'https://ror.org/04hmdyv97', 'pt', 1, 'https://ror.org/04hmdyv97 Grupo HPA SaĆŗde'),
(108822, 'https://ror.org/04hp0cf98', 'en', 1, 'https://ror.org/04hp0cf98 ABES Engineering College'),
(108823, 'https://ror.org/04hpbsh69', 'es', 1, 'https://ror.org/04hpbsh69 Unidad Funcional de Investigación de Enfermedades Crónicas'),
(108824, 'https://ror.org/04hpp6453', 'en', 1, 'https://ror.org/04hpp6453 Texas Southmost College'),
(108825, 'https://ror.org/04hqfvm50', 'en', 1, 'https://ror.org/04hqfvm50 Institute of Bioinformatics'),
(108826, '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'),
(108827, 'https://ror.org/04hrfeg06', 'en', 1, 'https://ror.org/04hrfeg06 Nakagami Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę•¬ę„›ä¼šäø­é ­ē—…é™¢'),
(108828, 'https://ror.org/04hteea03', 'en', 1, 'https://ror.org/04hteea03 Pittsburg State University'),
(108829, 'https://ror.org/04hyq8434', 'en', 1, 'https://ror.org/04hyq8434 Thomayer University Hospital Thomayerova nemocnice'),
(108830, 'https://ror.org/04j27n830', 'en', 1, 'https://ror.org/04j27n830 Snow Research Center å…¬ē›Šē¤¾å›£ę³•äŗŗé›Ŗć‚»ćƒ³ć‚æćƒ¼'),
(108831, 'https://ror.org/04j3saz95', 'en', 1, 'https://ror.org/04j3saz95 Siam University ดหาวณทยาคัยสยาด'),
(108832, 'https://ror.org/04j41hc27', 'en', 1, 'https://ror.org/04j41hc27 Yokohama General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·‘ęˆä¼šęØŖęµœē·åˆē—…é™¢'),
(108833, 'https://ror.org/04j4db344', 'en', 1, 'https://ror.org/04j4db344 European Agroforestry Federation FƩdƩration europƩenne d''agroforesterie'),
(108834, 'https://ror.org/04j4j0a75', 'en', 1, 'https://ror.org/04j4j0a75 National University of Lesotho'),
(108835, 'https://ror.org/04j5g5g52', 'en', 1, 'https://ror.org/04j5g5g52 Tay Bac University ĐẔi hį»c TĆ¢y BįŗÆc'),
(108836, 'https://ror.org/04j8de466', 'en', 1, 'https://ror.org/04j8de466 UniversitĆ© d''Ɖtat de worcester Worcester State University'),
(108837, 'https://ror.org/04j9d0s43', 'en', 1, 'https://ror.org/04j9d0s43 Whitworth University'),
(108838, 'https://ror.org/04jcykh16', 'en', 1, 'https://ror.org/04jcykh16 Wuhan Institute of Technology 武汉巄程大学'),
(108839, 'https://ror.org/04jedda80', 'en', 1, 'https://ror.org/04jedda80 Kaohsiung Veterans General Hospital'),
(108840, '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'),
(108841, 'https://ror.org/04jh8cx24', 'en', 1, 'https://ror.org/04jh8cx24 Professional Institute of International Fashion å›½éš›ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(108842, 'https://ror.org/04jhea107', 'en', 1, 'https://ror.org/04jhea107 Shin Koga Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤©ē„žä¼šę–°å¤č³€ē—…é™¢'),
(108843, 'https://ror.org/04jks9y88', 'en', 1, 'https://ror.org/04jks9y88 Hakodate Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗå‡½é¤Øåø‚åŒ»åø«ä¼š'),
(108844, 'https://ror.org/04jm2zr28', 'en', 1, 'https://ror.org/04jm2zr28 Meshalkin National Medical Research Center Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр имени акаГемика Š•.Š. Мешалкина»'),
(108845, 'https://ror.org/04jm7vd23', 'en', 1, 'https://ror.org/04jm7vd23 Computing Technology Industry Association'),
(108846, 'https://ror.org/04jmbkr13', 'en', 1, 'https://ror.org/04jmbkr13 University of San Jose–Recoletos'),
(108847, 'https://ror.org/04jmt9361', 'en', 1, 'https://ror.org/04jmt9361 University of Madras UniversitĆ© de madras ą¤®ą¤¦ą„ą¤°ą¤¾ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦®ą¦¾ą¦¦ą§ą¦°ą¦¾ą¦œ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą®šąÆ†ą®©ąÆą®©ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°®ą°¦ą±ą°°ą°¾ą°øą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²®ą²¦ą³ą²°ą²¾ą²øą³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ ą“®ą“¦ąµą“°ą“¾ą“øąµ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(108848, 'https://ror.org/04jp0me91', 'pt', 1, 'https://ror.org/04jp0me91 Centro de Psicologia'),
(108849, 'https://ror.org/04jp2hx10', 'en', 1, 'https://ror.org/04jp2hx10 University of Northampton'),
(108850, 'https://ror.org/04jp9sj81', 'en', 1, 'https://ror.org/04jp9sj81 Gunma Prefectural Cancer Center ē¾¤é¦¬ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(108851, 'https://ror.org/04jpdpb33', 'es', 1, 'https://ror.org/04jpdpb33 Instituto de HistologĆ­a y EmbriologĆ­a de Mendoza'),
(108852, 'https://ror.org/04jqeag92', 'fr', 1, 'https://ror.org/04jqeag92 IESEG School of Management Institut d''Economie Scientifique Et de Gestion'),
(108853, 'https://ror.org/04jr01610', 'en', 1, 'https://ror.org/04jr01610 Carnegie Institution for Science'),
(108854, 'https://ror.org/04jr4s665', 'en', 1, 'https://ror.org/04jr4s665 Veritas University'),
(108855, 'https://ror.org/04jrfgq66', 'en', 1, 'https://ror.org/04jrfgq66 State University of Padang Universitas Negeri Padang'),
(108856, 'https://ror.org/04jrwm652', 'en', 1, 'https://ror.org/04jrwm652 San SebastiƔn University Universidad San SebastiƔn'),
(108857, 'https://ror.org/04jsx0x49', 'en', 1, 'https://ror.org/04jsx0x49 Fachhochschule Technikum Wien University of Applied Sciences Technikum Wien'),
(108858, 'https://ror.org/04jvv9092', 'en', 1, 'https://ror.org/04jvv9092 Institute of Chemistry of Ireland InstitĆŗid Ceimice na hƉireann'),
(108859, 'https://ror.org/04jx68594', 'fr', 1, 'https://ror.org/04jx68594 Ɖcole Nationale SupĆ©rieure de MĆ©canique et d''AĆ©rotechnique'),
(108860, 'https://ror.org/04jy41s17', 'nl', 1, 'https://ror.org/04jy41s17 Pro Persona'),
(108861, 'https://ror.org/04k0tth05', 'en', 1, 'https://ror.org/04k0tth05 U.S. Air Force Test Center'),
(108862, 'https://ror.org/04k69sk69', 'en', 1, 'https://ror.org/04k69sk69 The Charutar Vidya Mandal (CVM) University'),
(108863, 'https://ror.org/04k6amx66', 'en', 1, 'https://ror.org/04k6amx66 Yamagata Prefectural Government 山形県庁'),
(108864, 'https://ror.org/04k6ang09', 'en', 1, 'https://ror.org/04k6ang09 Nagoya Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗåå¤å±‹åø‚åŒ»åø«ä¼š'),
(108865, 'https://ror.org/04k83g518', 'en', 1, 'https://ror.org/04k83g518 Concordia University Wisconsin'),
(108866, 'https://ror.org/04k89yk85', 'en', 1, 'https://ror.org/04k89yk85 University of Kurdistan دانؓگاه کردستان'),
(108867, 'https://ror.org/04k8k6n84', 'fr', 1, 'https://ror.org/04k8k6n84 University of Upper Alsace UniversitƩ de Haute-Alsace'),
(108868, 'https://ror.org/04k99et05', 'no_lang_code', 1, 'https://ror.org/04k99et05 Syngene International (India)'),
(108869, 'https://ror.org/04ka5nr41', 'en', 1, 'https://ror.org/04ka5nr41 Longley Park Sixth Form College'),
(108870, 'https://ror.org/04kaff912', 'en', 1, 'https://ror.org/04kaff912 Osaka City Research Center of Environmental Science å¤§é˜Ŗåø‚ē«‹ē’°å¢ƒē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(108871, 'https://ror.org/04kaqnt29', 'en', 1, 'https://ror.org/04kaqnt29 Migal - Galilee Technology Center'),
(108872, 'https://ror.org/04kayk232', 'en', 1, 'https://ror.org/04kayk232 North-Western State Medical University named after I.I. Mechnikov Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени И. И. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(108873, 'https://ror.org/04kdh6x72', 'en', 1, 'https://ror.org/04kdh6x72 FZI Forschungszentrum Informatik FZI Research Center for Information Technology'),
(108874, 'https://ror.org/04ke6ht85', 'en', 1, 'https://ror.org/04ke6ht85 Scottish Association For Marine Science'),
(108875, 'https://ror.org/04ketrr59', 'en', 1, 'https://ror.org/04ketrr59 Kumamoto City Environmental Research Center ē†Šęœ¬åø‚ē’°å¢ƒē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(108876, 'https://ror.org/04kfj2295', 'en', 1, 'https://ror.org/04kfj2295 Japan Marrow Donor Program å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éŖØé«„ćƒćƒ³ć‚Æ'),
(108877, 'https://ror.org/04kmeaw70', 'en', 1, 'https://ror.org/04kmeaw70 Bradley University Universidad Bradley'),
(108878, 'https://ror.org/04knbh022', 'en', 1, 'https://ror.org/04knbh022 Austrian Institute of Technology'),
(108879, 'https://ror.org/04knm0293', 'en', 1, 'https://ror.org/04knm0293 Caltech Alumni Association'),
(108880, 'https://ror.org/04kp2b655', 'en', 1, 'https://ror.org/04kp2b655 University of Brighton'),
(108881, 'https://ror.org/04kpdmm83', 'en', 1, 'https://ror.org/04kpdmm83 Ardakan University دانؓگاه اردکان'),
(108882, 'https://ror.org/04krhex92', 'en', 1, 'https://ror.org/04krhex92 Research Institute for Regional Planning and Development äø€čˆ¬ē¤¾å›£ę³•äŗŗåœ°åŸŸå•é”Œē ”ē©¶ę‰€'),
(108883, 'https://ror.org/04ksd4g47', 'en', 1, 'https://ror.org/04ksd4g47 National Institute of Informatics å›½ē«‹ęƒ…å ±å­¦ē ”ē©¶ę‰€'),
(108884, 'https://ror.org/04kx2sy84', 'en', 1, 'https://ror.org/04kx2sy84 Fujian Agriculture and Forestry University ē¦å»ŗå†œęž—å¤§å­¦'),
(108885, 'https://ror.org/04kynyg17', 'id', 1, 'https://ror.org/04kynyg17 Politeknik Negeri Ujung Pandang'),
(108886, 'https://ror.org/04kz5f756', 'en', 1, 'https://ror.org/04kz5f756 Tohoku Institute for Management of Blood Pressure äø€čˆ¬ē¤¾å›£ę³•äŗŗę±åŒ—č”€åœ§ē®”ē†å”ä¼š'),
(108887, 'https://ror.org/04m0pny09', 'en', 1, 'https://ror.org/04m0pny09 N.I. Vavilov Research Institute of Plant Industry Вавилов Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ растениевоГства'),
(108888, 'https://ror.org/04m28hd07', 'es', 1, 'https://ror.org/04m28hd07 Instituto Tecnológico de Tlalnepantla'),
(108889, 'https://ror.org/04m2anh63', 'de', 1, 'https://ror.org/04m2anh63 Bonn-Rhein-Sieg University of Applied Sciences Hochschule Bonn-Rhein-Sieg'),
(108890, 'https://ror.org/04m2ke783', 'de', 1, 'https://ror.org/04m2ke783 Foundation for Innovation in Higher Education Stiftung Innovation in der Hochschullehre'),
(108891, 'https://ror.org/04m54m956', 'de', 1, 'https://ror.org/04m54m956 Kerckhoff Klinik'),
(108892, 'https://ror.org/04m6nbg42', 'pt', 1, 'https://ror.org/04m6nbg42 Instituto de HidrƔulica e Recursos Hƭdricos'),
(108893, 'https://ror.org/04m6skt51', 'fr', 1, 'https://ror.org/04m6skt51 Ɖcole SupĆ©rieure des Metiers Artistiques'),
(108894, 'https://ror.org/04m8av638', 'en', 1, 'https://ror.org/04m8av638 ByteDance, ByteDance (China)'),
(108895, 'https://ror.org/04m8t3f14', 'it', 1, 'https://ror.org/04m8t3f14 Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Udine'),
(108896, 'https://ror.org/04m9gzq43', 'es', 1, 'https://ror.org/04m9gzq43 Universidad El Bosque'),
(108897, 'https://ror.org/04m9r4v66', 'en', 1, 'https://ror.org/04m9r4v66 Masuda Medical Association Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗē›Šē”°åø‚åŒ»åø«ä¼šē«‹ē›Šē”°åœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼åŒ»åø«ä¼šē—…é™¢'),
(108898, 'https://ror.org/04ma0p518', 'en', 1, 'https://ror.org/04ma0p518 Institut za oceanografiju i ribarstvo Institute of Oceanography and Fisheries'),
(108899, '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'),
(108900, 'https://ror.org/04mccvy52', 'en', 1, 'https://ror.org/04mccvy52 Interactive Research and Development'),
(108901, 'https://ror.org/04me52195', 'en', 1, 'https://ror.org/04me52195 Kyoto Junior College of Foreign Languages äŗ¬éƒ½å¤–å›½čŖžēŸ­ęœŸå¤§å­¦'),
(108902, 'https://ror.org/04mf3mq37', 'en', 1, 'https://ror.org/04mf3mq37 Museums Victoria'),
(108903, 'https://ror.org/04mfr5763', 'id', 1, 'https://ror.org/04mfr5763 Universitas Sulawesi Barat West Sulawesi University'),
(108904, 'https://ror.org/04mgz4b37', 'en', 1, 'https://ror.org/04mgz4b37 National Meanchey University įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž‡įž¶įžįž·įž˜įž¶įž“įž‡įŸįž™'),
(108905, 'https://ror.org/04mhy5c57', 'pt', 1, 'https://ror.org/04mhy5c57 Instituto Superior Politécnico de Tecnologia e Ciências'),
(108906, 'https://ror.org/04mmhnh95', 'en', 1, 'https://ror.org/04mmhnh95 Quantum Science and Technology in Arcetri'),
(108907, 'https://ror.org/04mnmkz07', 'en', 1, 'https://ror.org/04mnmkz07 JSS Science and Technology University ą²œą³†ą²Žą²øą³ą²Žą²øą³ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²®ą²¤ą³ą²¤ą³ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(108908, 'https://ror.org/04mnyr134', 'en', 1, 'https://ror.org/04mnyr134 Sonoda Women''s College åœ’ē”°å­¦åœ’å„³å­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(108909, 'https://ror.org/04ms51788', 'de', 1, 'https://ror.org/04ms51788 WestsƤchsische Hochschule Zwickau'),
(108910, 'https://ror.org/04mtaqb21', 'es', 1, 'https://ror.org/04mtaqb21 Universidad Libre de Colombia'),
(108911, 'https://ror.org/04mv4n011', 'no_lang_code', 1, 'https://ror.org/04mv4n011 Amazon (United States)'),
(108912, 'https://ror.org/04mwwnx67', 'en', 1, 'https://ror.org/04mwwnx67 Abertay University'),
(108913, 'https://ror.org/04mxsc976', 'en', 1, 'https://ror.org/04mxsc976 Escuela de DiseƱo de Rhode Island Rhode Island School of Design'),
(108914, 'https://ror.org/04mz5ra38', 'en', 1, 'https://ror.org/04mz5ra38 University of Duisburg-Essen UniversitƤt Duisburg-Essen'),
(108915, 'https://ror.org/04mz9da58', 'pt', 1, 'https://ror.org/04mz9da58 Fundação Dom Cabral'),
(108916, 'https://ror.org/04mz9mt17', 'en', 1, 'https://ror.org/04mz9mt17 Universiti Nottingham Malaysia University of Nottingham Malaysia Campus'),
(108917, 'https://ror.org/04mzg6j57', 'en', 1, 'https://ror.org/04mzg6j57 English and Foreign Languages University ą¤…ą¤‚ą¤—ą„ą¤°ą„‡ą¤œą„€ और ą¤µą¤æą¤¦ą„‡ą¤¶ą„€ भाषाओ का ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ąØ…ą©°ąØ—ą©ąØ°ą©‡ąØœąØ¼ą©€ ਅਤੇ ਵਿਦੇਸ਼ੀ ਭਾਸ਼ਾਵਾਂ ਦੀ ਕੇਂਦਰੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°‡ą°‚ą°—ą±ą°²ą±€ą°·ą± ą°…ą°‚ą°”ą± ą°«ą°¾ą°°ą°æą°Øą± ą°²ą°¾ą°‚ą°—ą±ą°µą±‡ą°œą±†ą°øą±'),
(108918, 'https://ror.org/04n160k30', 'en', 1, 'https://ror.org/04n160k30 Kanagawa Institute of Industrial Science and Technology åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē„žå„ˆå·ēœŒē«‹ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(108919, 'https://ror.org/04n1h6833', 'en', 1, 'https://ror.org/04n1h6833 Isehara Kyodo Hospital JAē„žå„ˆå·åŽšē”Ÿé€£ä¼Šå‹¢åŽŸå”åŒē—…é™¢'),
(108920, 'https://ror.org/04n1nkp35', 'fr', 1, 'https://ror.org/04n1nkp35 HƓpital Intercommunal de CrƩteil'),
(108921, 'https://ror.org/04n3k2k71', 'en', 1, 'https://ror.org/04n3k2k71 Hunan Institute of Technology ę¹–å—å·„å­¦é™¢'),
(108922, 'https://ror.org/04n9sp567', 'no_lang_code', 1, 'https://ror.org/04n9sp567 Biwako Gakuin University ć³ć‚ć“å­¦é™¢å¤§å­¦'),
(108923, 'https://ror.org/04naype60', 'en', 1, 'https://ror.org/04naype60 Kogi State College of Education, Ankpa'),
(108924, 'https://ror.org/04nbhqj75', 'en', 1, 'https://ror.org/04nbhqj75 Hasselt University Universiteit Hasselt UniversitƩ de Hasselt'),
(108925, 'https://ror.org/04nbz6d36', 'en', 1, 'https://ror.org/04nbz6d36 Hochschule Nordhausen Nordhausen University of Applied Sciences'),
(108926, 'https://ror.org/04ndqkb04', 'en', 1, 'https://ror.org/04ndqkb04 Federal University of Petroleum Resource Effurun'),
(108927, 'https://ror.org/04nfhy837', 'en', 1, 'https://ror.org/04nfhy837 Hong Kong Baptist Hospital'),
(108928, 'https://ror.org/04nhgac81', 'en', 1, 'https://ror.org/04nhgac81 Jissen Women''s Junior College 実践儳子大学短期大学部'),
(108929, 'https://ror.org/04nng3n69', 'en', 1, 'https://ror.org/04nng3n69 Asahi General Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē·åˆē—…é™¢å›½äæę—­äø­å¤®ē—…é™¢, ē·åˆē—…é™¢å›½äæę—­äø­å¤®ē—…é™¢'),
(108930, 'https://ror.org/04np6eb38', 'en', 1, 'https://ror.org/04np6eb38 Det Kongelige Danske Musikkonservatorium Royal Danish Academy of Music'),
(108931, 'https://ror.org/04nqf9k60', 'en', 1, 'https://ror.org/04nqf9k60 Beijing Academy of Quantum Information Sciences'),
(108932, 'https://ror.org/04nqyn415', 'sr', 1, 'https://ror.org/04nqyn415 Institut za higijenu i tehnologiju mesa'),
(108933, 'https://ror.org/04nsasc45', 'en', 1, 'https://ror.org/04nsasc45 Maryam Abacha American University of Nigeria'),
(108934, 'https://ror.org/04nseet23', 'en', 1, 'https://ror.org/04nseet23 Office of the Director'),
(108935, 'https://ror.org/04nz0wq19', 'en', 1, 'https://ror.org/04nz0wq19 HudsonAlpha Institute for Biotechnology'),
(108936, 'https://ror.org/04p1hmw66', 'en', 1, 'https://ror.org/04p1hmw66 Meijibashi Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåž£č°·ä¼šę˜Žę²»ę©‹ē—…é™¢'),
(108937, 'https://ror.org/04p2pa451', 'en', 1, 'https://ror.org/04p2pa451 Institute of Transport Economics'),
(108938, 'https://ror.org/04p2rkp70', 'en', 1, 'https://ror.org/04p2rkp70 European University at Saint Petersburg Европейский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³Šµ'),
(108939, 'https://ror.org/04p55hr04', 'en', 1, 'https://ror.org/04p55hr04 University of Sunderland'),
(108940, 'https://ror.org/04p61dj41', 'en', 1, 'https://ror.org/04p61dj41 Hochschule Mannheim Mannheim University of Applied Sciences'),
(108941, 'https://ror.org/04p6trc94', 'en', 1, 'https://ror.org/04p6trc94 Tsukuba Gakuen Hospital äø€čˆ¬č²”å›£ę³•äŗŗē­‘ę³¢éŗ“ä»ä¼šē­‘ę³¢å­¦åœ’ē—…é™¢'),
(108942, 'https://ror.org/04p7cv903', 'en', 1, 'https://ror.org/04p7cv903 The Energy Conservation Center, Japan äø€čˆ¬č²”å›£ę³•äŗŗēœć‚Øćƒćƒ«ć‚®ćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(108943, 'https://ror.org/04p7cys55', 'pt', 1, 'https://ror.org/04p7cys55 Autoridade de Segurança Alimentar e Económica'),
(108944, 'https://ror.org/04p81nz21', 'en', 1, 'https://ror.org/04p81nz21 Bellarmine University'),
(108945, 'https://ror.org/04p9k2z50', 'ca', 1, 'https://ror.org/04p9k2z50 Ramon Llull University Universidad Ramon Llull Universitat Ramon Llull'),
(108946, 'https://ror.org/04pa22x51', 'en', 1, 'https://ror.org/04pa22x51 International Kidney Stone Institute'),
(108947, 'https://ror.org/04pam3b03', 'en', 1, 'https://ror.org/04pam3b03 National Institute of Technology Sikkim ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„‹ą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤øą¤æą¤•ą„ą¤•ą¤æą¤®'),
(108948, 'https://ror.org/04pcw1010', 'en', 1, 'https://ror.org/04pcw1010 Albukhary Foundation Yayasan Albukhary'),
(108949, 'https://ror.org/04pde1m41', 'en', 1, 'https://ror.org/04pde1m41 Chiba Tokushukai Hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šåƒč‘‰å¾³ę“²ä¼šē—…é™¢'),
(108950, 'https://ror.org/04pe4vg07', 'no_lang_code', 1, 'https://ror.org/04pe4vg07 Costello Medical Consulting (United Kingdom)'),
(108951, 'https://ror.org/04peych45', 'en', 1, 'https://ror.org/04peych45 Nigeria Maritime University'),
(108952, 'https://ror.org/04pgf7495', 'en', 1, 'https://ror.org/04pgf7495 Digestive Disease Research Institute, Tehran University of Medical Sciences Digestive Disease Research Center Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ ŲØŪŒŁ…Ų§Ų±ŪŒ Ł‡Ų§ŪŒ گوارؓ و کبد دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تهران'),
(108953, 'https://ror.org/04phfvx94', 'en', 1, 'https://ror.org/04phfvx94 National Sanatorium Tama Zenshoen å›½ē«‹ē™‚é¤Šę‰€å¤šē£Øå…Øē”Ÿåœ’'),
(108954, 'https://ror.org/04pj4k457', 'en', 1, 'https://ror.org/04pj4k457 Fukuoka Sanno Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£é«˜é‚¦ä¼šē¦å²”å±±ēŽ‹ē—…é™¢'),
(108955, 'https://ror.org/04pjd0435', 'pt', 1, 'https://ror.org/04pjd0435 Centro de Estudos em Educação e Inovação');
INSERT INTO `rors` VALUES
(108956, 'https://ror.org/04pmj7516', 'en', 1, 'https://ror.org/04pmj7516 CollĆØge d’enseignement gĆ©nĆ©ral et professionnel Dawson College'),
(108957, 'https://ror.org/04pn9tn44', 'en', 1, 'https://ror.org/04pn9tn44 Mohamed-Cherif Messaadia University جــــامـعــة محــمــد Ų§Ł„Ų“Ł€Ł€Ų±ŁŠŁ Ł…Ų³Ł€Ų§Ų¹Ł€Ł€Ł€Ł€ŲÆŁŠŲ©'),
(108958, 'https://ror.org/04pschh68', 'en', 1, 'https://ror.org/04pschh68 Naučni institut za veterinarstvo Novi Sad, ŠŠ°ŃƒŃ‡Š½Šø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ветеринарсво "ŠŠžŠ’Š˜ ДАД" Scientific Veterinary Institute "Novi Sad"'),
(108959, 'https://ror.org/04ptfwx96', 'pt', 1, 'https://ror.org/04ptfwx96 Escola Superior de Artes e Design'),
(108960, 'https://ror.org/04pw1zg89', 'en', 1, 'https://ror.org/04pw1zg89 PARADIM'),
(108961, 'https://ror.org/04pweky63', 'en', 1, 'https://ror.org/04pweky63 Mama Ngina University College'),
(108962, 'https://ror.org/04pzf5g91', 'es', 1, 'https://ror.org/04pzf5g91 Corporación Universitaria de Ibagué, Universidad de Ibagué University of Ibagué'),
(108963, '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'),
(108964, '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'),
(108965, 'https://ror.org/04q0nep37', 'en', 1, 'https://ror.org/04q0nep37 UniNettuno University UniversitĆ  Telematica Internazionale Uninettuno'),
(108966, 'https://ror.org/04q2bhq19', 'pt', 1, 'https://ror.org/04q2bhq19 Associação Caruaruense de Ensino Superior e Técnico'),
(108967, 'https://ror.org/04q2cza07', 'pt', 1, 'https://ror.org/04q2cza07 Centro MƩdico DentƔrio (Portugal) Dental Medical Centre'),
(108968, 'https://ror.org/04q2sd920', 'en', 1, 'https://ror.org/04q2sd920 North East Surrey College of Technology'),
(108969, 'https://ror.org/04q3r2543', 'en', 1, 'https://ror.org/04q3r2543 Universitas Widyagama Mahakam Samarinda Widya Gama Mahakam University'),
(108970, 'https://ror.org/04q3w4q22', 'en', 1, 'https://ror.org/04q3w4q22 Japan Textile Products Quality and Technology Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē¹Šē¶­č£½å“å“č³ŖęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(108971, 'https://ror.org/04q4j2f69', 'en', 1, 'https://ror.org/04q4j2f69 Dayalbagh Educational Institute'),
(108972, 'https://ror.org/04q4kt073', 'en', 1, 'https://ror.org/04q4kt073 University of Urbino UniversitĆ  degli Studi di Urbino Carlo Bo'),
(108973, 'https://ror.org/04q6cg820', 'en', 1, 'https://ror.org/04q6cg820 Association of American Medical Colleges'),
(108974, 'https://ror.org/04q876q10', 'en', 1, 'https://ror.org/04q876q10 The Tokyo Foundation for Policy Research å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬č²”å›£ę”æē­–ē ”ē©¶ę‰€'),
(108975, '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'),
(108976, 'https://ror.org/04q951c28', 'pt', 1, 'https://ror.org/04q951c28 Centro de Estudos Fiscais'),
(108977, 'https://ror.org/04q9fhm49', 'en', 1, 'https://ror.org/04q9fhm49 American Association of Immunologists'),
(108978, 'https://ror.org/04q9vef57', 'fr', 1, 'https://ror.org/04q9vef57 Ecologie des ForĆŖts de Guyane Ecology of Guianan Forests'),
(108979, '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'),
(108980, 'https://ror.org/04qenc566', 'es', 1, 'https://ror.org/04qenc566 Escuela Superior Politecnica del Litoral, Escuela Superior PolitƩcnica del Litoral'),
(108981, 'https://ror.org/04qgbbk05', 'en', 1, 'https://ror.org/04qgbbk05 Japan Meat Processors Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿč‚‰åŠ å·„å”ä¼š'),
(108982, 'https://ror.org/04qj3gf68', 'en', 1, 'https://ror.org/04qj3gf68 Brandenburg University of Applied Sciences Technische Hochschule Brandenburg'),
(108983, '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'),
(108984, 'https://ror.org/04qkqfe85', 'en', 1, 'https://ror.org/04qkqfe85 The CHILDS Trust Medical Research Foundation'),
(108985, 'https://ror.org/04qksbm30', 'en', 1, 'https://ror.org/04qksbm30 Narsee Monjee Institute of Management Studies'),
(108986, 'https://ror.org/04qmfwz39', 'en', 1, 'https://ror.org/04qmfwz39 Yamanoue Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å„åÆæä¼šå±±ć®äøŠē—…é™¢'),
(108987, 'https://ror.org/04qpepa75', 'en', 1, 'https://ror.org/04qpepa75 Minami Seikyo Hospital å—åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆē·åˆē—…é™¢å—ē”Ÿå”ē—…é™¢'),
(108988, 'https://ror.org/04qr5t414', 'en', 1, 'https://ror.org/04qr5t414 North China Electric Power University åŽåŒ—ē”µåŠ›å¤§å­¦'),
(108989, 'https://ror.org/04qxf2010', 'en', 1, 'https://ror.org/04qxf2010 Akita Prefectural Resources Technology Development Organization äø€čˆ¬č²”å›£ę³•äŗŗē§‹ē”°ēœŒč³‡ęŗęŠ€č”“é–‹ē™ŗę©Ÿę§‹'),
(108990, 'https://ror.org/04r0ks517', 'en', 1, 'https://ror.org/04r0ks517 University for the Creative Arts'),
(108991, 'https://ror.org/04r0rzf56', 'en', 1, 'https://ror.org/04r0rzf56 Komazawa Women''s Junior College é§’ę²¢å„³å­ēŸ­ęœŸå¤§å­¦'),
(108992, 'https://ror.org/04r1hh402', 'en', 1, 'https://ror.org/04r1hh402 Barry University'),
(108993, 'https://ror.org/04r23zn56', 'en', 1, 'https://ror.org/04r23zn56 Universidad de Cuenca University of Cuenca'),
(108994, 'https://ror.org/04r2hbv78', 'en', 1, 'https://ror.org/04r2hbv78 Japan Pharmacists Education Center å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č–¬å‰¤åø«ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(108995, 'https://ror.org/04r43k021', 'it', 1, 'https://ror.org/04r43k021 Istituto di Scienze e Tecnologie Chimiche "Giulio Natta"'),
(108996, 'https://ror.org/04r71qh72', 'en', 1, 'https://ror.org/04r71qh72 Health Equity Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ عدالت ŲÆŲ± سلامت'),
(108997, 'https://ror.org/04r9s1v23', 'vi', 1, 'https://ror.org/04r9s1v23 TrĘ°į»ng ĐH Nguyį»…n Tįŗ„t ThĆ nh'),
(108998, 'https://ror.org/04raxj885', 'en', 1, 'https://ror.org/04raxj885 Kwantlen Polytechnic University'),
(108999, 'https://ror.org/04rc8af74', 'en', 1, 'https://ror.org/04rc8af74 University of Garmian Ų²Ų§Ł†Ś©Ū†ŪŒ ŚÆŪ•Ų±Ł…ŪŒŲ§Ł†'),
(109000, 'https://ror.org/04rdxre41', 'pt', 1, 'https://ror.org/04rdxre41 Instituto Federal de Educação, Ciência e Tecnologia de Roraima'),
(109001, 'https://ror.org/04reayw33', 'en', 1, 'https://ror.org/04reayw33 The Engineering Academy of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å·„å­¦ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(109002, 'https://ror.org/04rgqcd02', 'fr', 1, 'https://ror.org/04rgqcd02 Centre de recherche du CHU de QuƩbec-UniversitƩ Laval'),
(109003, 'https://ror.org/04rhev598', 'en', 1, 'https://ror.org/04rhev598 Yunnan University of Finance And Economics äŗ‘å—č“¢ē»å¤§å­¦'),
(109004, 'https://ror.org/04rjn2z79', 'en', 1, 'https://ror.org/04rjn2z79 Sanjo City University äø‰ę”åø‚ē«‹å¤§å­¦'),
(109005, 'https://ror.org/04rjwcx28', 'pt', 1, 'https://ror.org/04rjwcx28 Centro CientĆ­fico e Cultural de Macau'),
(109006, 'https://ror.org/04rjxzd30', 'en', 1, 'https://ror.org/04rjxzd30 CPB Netherlands Bureau for Economic Policy Analysis Centraal Planbureau, Central Planning Bureau'),
(109007, 'https://ror.org/04rkbns44', 'en', 1, 'https://ror.org/04rkbns44 Botswana Harvard AIDS Institute Partnership'),
(109008, 'https://ror.org/04rmdjx50', 'en', 1, 'https://ror.org/04rmdjx50 Inter-Research Science Publisher, Inter-Research Science Publisher (Germany)'),
(109009, 'https://ror.org/04rmtzr09', 'en', 1, 'https://ror.org/04rmtzr09 Lake Forest College'),
(109010, 'https://ror.org/04rnxkh71', 'en', 1, 'https://ror.org/04rnxkh71 Moscow State University of Psychology & Education Московский Š³Š¾ŃŃƒŠ“арственный психолого-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(109011, 'https://ror.org/04rpc4v21', 'en', 1, 'https://ror.org/04rpc4v21 Hokkaido Prefectural Government åŒ—ęµ·é“åŗ'),
(109012, 'https://ror.org/04rpzaq65', 'en', 1, 'https://ror.org/04rpzaq65 Rural Development Planning Commission äø€čˆ¬č²”å›£ę³•äŗŗč¾²ę‘é–‹ē™ŗä¼ē”»å§”å“”ä¼š'),
(109013, 'https://ror.org/04rszy995', 'no_lang_code', 1, 'https://ror.org/04rszy995 Nikola Vaptsarov Naval Academy Š’ŠøŃŃˆŠµ военноморско ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ, Варна'),
(109014, 'https://ror.org/04rt94r53', 'en', 1, 'https://ror.org/04rt94r53 Barnard College'),
(109015, 'https://ror.org/04rtxcq25', 'en', 1, 'https://ror.org/04rtxcq25 Arkalyk State Pedagogical Institute named after Ibrai Altynsarin Аркалыкский пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. И. Алтынсарина Š«.Алтынсарин атынГағы Арқалық пеГагогикалық ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(109016, 'https://ror.org/04ry0xt97', 'en', 1, 'https://ror.org/04ry0xt97 Nagoya Industries Promotion Corporation å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹ē”£ę„­ęŒÆčˆˆå…¬ē¤¾'),
(109017, 'https://ror.org/04ryd5567', 'en', 1, 'https://ror.org/04ryd5567 Fatima Animal Medical Center'),
(109018, 'https://ror.org/04s3apq10', 'en', 1, 'https://ror.org/04s3apq10 Miyazaki Prefecture Foods Development Center å®®å“ŽēœŒé£Ÿå“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(109019, 'https://ror.org/04s3cat53', 'en', 1, 'https://ror.org/04s3cat53 Wakayama Prefectural Research Center of Environment and Public Health å’Œę­Œå±±ēœŒē’°å¢ƒč”›ē”Ÿē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(109020, 'https://ror.org/04s5e9593', 'id', 1, 'https://ror.org/04s5e9593 Universitas Muhammadiyah Purworejo'),
(109021, 'https://ror.org/04s620254', 'no_lang_code', 1, 'https://ror.org/04s620254 Materials Center Leoben (Austria)'),
(109022, 'https://ror.org/04s8tv284', 'pl', 1, 'https://ror.org/04s8tv284 Akademia Wychowania Fizycznego im. Eugeniusza Piaseckiego w Poznaniu'),
(109023, 'https://ror.org/04s99y476', 'en', 1, 'https://ror.org/04s99y476 China West Normal University č„æåŽåøˆčŒƒå¤§å­¦'),
(109024, 'https://ror.org/04sa43y59', 'en', 1, 'https://ror.org/04sa43y59 Grantham College'),
(109025, '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'),
(109026, 'https://ror.org/04sbmhc14', 'en', 1, 'https://ror.org/04sbmhc14 Nagasaki Agriculture and Forestry Technical Development Center é•·å“ŽēœŒč¾²ęž—ęŠ€č”“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(109027, 'https://ror.org/04sfnha74', 'pt', 1, 'https://ror.org/04sfnha74 Hospital SAMS'),
(109028, 'https://ror.org/04sjbnx57', 'en', 1, 'https://ror.org/04sjbnx57 University of Southern Queensland'),
(109029, 'https://ror.org/04sk2ar21', 'en', 1, 'https://ror.org/04sk2ar21 Washburn University'),
(109030, 'https://ror.org/04skj0t32', 'en', 1, 'https://ror.org/04skj0t32 Ishikawa Agriculture and Forestry Research Center ēŸ³å·ēœŒč¾²ęž—ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(109031, 'https://ror.org/04sms9203', 'en', 1, 'https://ror.org/04sms9203 Aschaffenburg University of Applied Sciences Technische Hochschule Aschaffenburg'),
(109032, 'https://ror.org/04snvc712', 'en', 1, 'https://ror.org/04snvc712 Beijing Normal University - Hong Kong Baptist University United International College åŒ—äŗ¬åøˆčŒƒå¤§å­¦-é¦™ęøÆęµøä¼šå¤§å­¦č”åˆå›½é™…å­¦é™¢'),
(109033, 'https://ror.org/04sv18103', 'en', 1, 'https://ror.org/04sv18103 The Mathematical Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę•°å­¦ä¼š'),
(109034, 'https://ror.org/04t0wry96', 'en', 1, 'https://ror.org/04t0wry96 Institute for Health Outcomes & Process Evaluation Research ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗå„åŗ·åŒ»ē™‚č©•ä¾”ē ”ē©¶ę©Ÿę§‹'),
(109035, 'https://ror.org/04t2rv460', 'en', 1, 'https://ror.org/04t2rv460 Danbury Hospital'),
(109036, 'https://ror.org/04t2ss102', 'no_lang_code', 1, 'https://ror.org/04t2ss102 Novosibirsk State University ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(109037, 'https://ror.org/04t3en479', 'en', 1, 'https://ror.org/04t3en479 Karlsruhe Institute of Technology Karlsruher Institut für Technologie'),
(109038, 'https://ror.org/04t3v6492', 'en', 1, 'https://ror.org/04t3v6492 Kyoto Kujo Hospital åŒ»ē™‚ę³•äŗŗåŒä»ä¼šäŗ¬éƒ½ä¹ę”ē—…é™¢'),
(109039, 'https://ror.org/04t4pws42', 'en', 1, 'https://ror.org/04t4pws42 Institute of Molecular Life Sciences MolekulĆ”ris ƉlettudomĆ”nyi IntĆ©zetben'),
(109040, 'https://ror.org/04t50yk91', 'fr', 1, 'https://ror.org/04t50yk91 Institut d''Ʃlectronique et d''informatique gaspard-monge, Laboratoire d''Informatique Gaspard-Monge'),
(109041, 'https://ror.org/04t5mt493', 'en', 1, 'https://ror.org/04t5mt493 OKINAWA Science and Technology Promotion Center å…¬ē›Šč²”å›£ę³•äŗŗę²–ēø„ē§‘å­¦ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(109042, 'https://ror.org/04t6wsp57', 'pt', 1, 'https://ror.org/04t6wsp57 Instituto de Estudos Avançados da Universidade de São Paulo'),
(109043, 'https://ror.org/04t79ze18', 'en', 1, 'https://ror.org/04t79ze18 Karl Landsteiner Privatuniversität für Gesundheitswissenschaften Karl Landsteiner University of Health Sciences'),
(109044, 'https://ror.org/04t9p9g29', 'en', 1, 'https://ror.org/04t9p9g29 Wuhan Conservatory of Music ę­¦ę±‰éŸ³ä¹å­¦é™¢'),
(109045, 'https://ror.org/04t9wmk29', 'no_lang_code', 1, 'https://ror.org/04t9wmk29 Okayama Gakuin University 岔山学院大学'),
(109046, 'https://ror.org/04tac8f56', 'en', 1, 'https://ror.org/04tac8f56 Wild Bird Society of Japan å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é‡Žé³„ć®ä¼š'),
(109047, 'https://ror.org/04taf2z98', 'fr', 1, 'https://ror.org/04taf2z98 Centre Hospitalier de Valenciennes'),
(109048, 'https://ror.org/04tb22w36', 'en', 1, 'https://ror.org/04tb22w36 GIFT University'),
(109049, 'https://ror.org/04tbgt398', 'tr', 1, 'https://ror.org/04tbgt398 Gendarmerie and Coast Guard Academy Jandarma ve Sahil Güvenlik Akademisi'),
(109050, 'https://ror.org/04td37d32', 'fr', 1, 'https://ror.org/04td37d32 Institut National de la Recherche Scientifique National Institute of Scientific Research'),
(109051, 'https://ror.org/04tehfn33', 'en', 1, 'https://ror.org/04tehfn33 International Union for Conservation of Nature'),
(109052, 'https://ror.org/04tf6q291', 'en', 1, 'https://ror.org/04tf6q291 Stockholm University of the Arts Stockholms KonstnƤrliga Hƶgskola'),
(109053, 'https://ror.org/04tfzc498', 'it', 1, 'https://ror.org/04tfzc498 Istituti di Ricovero e Cura a Carattere Scientifico'),
(109054, 'https://ror.org/04tg98e93', 'no_lang_code', 1, 'https://ror.org/04tg98e93 Aso Iizuka Hospital é£Æå”šē—…é™¢'),
(109055, 'https://ror.org/04tgvs825', 'pl', 1, 'https://ror.org/04tgvs825 Building Research Institute Instytut Techniki Budowlanej'),
(109056, 'https://ror.org/04thqez65', 'no_lang_code', 1, 'https://ror.org/04thqez65 MSD (Spain)'),
(109057, 'https://ror.org/04tkkr536', 'en', 1, 'https://ror.org/04tkkr536 FernUniversitƤt in Hagen University of Hagen'),
(109058, 'https://ror.org/04tmmky42', 'en', 1, 'https://ror.org/04tmmky42 Grinnell College'),
(109059, 'https://ror.org/04tp6pr14', 'en', 1, 'https://ror.org/04tp6pr14 Bandung Islamic University Universitas Islam Bandung'),
(109060, 'https://ror.org/04tq55h40', 'id', 1, 'https://ror.org/04tq55h40 Badan Pusat Statistik'),
(109061, 'https://ror.org/04tq97318', 'en', 1, 'https://ror.org/04tq97318 Society of Environmental Science, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗē’°å¢ƒē§‘å­¦ä¼š'),
(109062, 'https://ror.org/04tqpcm97', 'en', 1, 'https://ror.org/04tqpcm97 Ministry of Food Processing Industries'),
(109063, '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'),
(109064, 'https://ror.org/04trbj059', 'en', 1, 'https://ror.org/04trbj059 Kherson National Technical University Єерсонский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(109065, 'https://ror.org/04tstaj46', 'en', 1, 'https://ror.org/04tstaj46 Nexford University'),
(109066, 'https://ror.org/04tty5b50', 'it', 1, 'https://ror.org/04tty5b50 Istituto Oncologico della Svizzera Italiana'),
(109067, 'https://ror.org/04tvaz881', 'en', 1, 'https://ror.org/04tvaz881 University of Environment and Sustainable Development'),
(109068, 'https://ror.org/04twzkg92', 'en', 1, 'https://ror.org/04twzkg92 Tartu Health Care College Tartu Tervishoiu kƵrgkool'),
(109069, 'https://ror.org/04txyc737', 'en', 1, 'https://ror.org/04txyc737 Novo Nordisk Fonden Novo Nordisk Foundation'),
(109070, 'https://ror.org/04v097707', 'en', 1, 'https://ror.org/04v097707 California State University, Channel Islands UniversitĆ© d''Ɖtat de californie Ć  channel islands'),
(109071, 'https://ror.org/04v3r9z94', 'en', 1, 'https://ror.org/04v3r9z94 School of Pedagogical and Technological Education Ī‘Ī½ĻŽĻ„Ī±Ļ„Ī· Σχολή ΠαιΓαγωγικής και Τεχνολογικής Ī•ĪŗĻ€Ī±ĪÆĪ“ĪµĻ…ĻƒĪ·Ļ‚'),
(109072, 'https://ror.org/04v440f32', 'en', 1, 'https://ror.org/04v440f32 Konan Medical Center å…¬ē›Šč²”å›£ę³•äŗŗē”²å—ä¼šē”²å—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(109073, 'https://ror.org/04v4g9h31', 'en', 1, 'https://ror.org/04v4g9h31 University of Thessaly UniversitĆ© de thessalie Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī˜ĪµĻƒĻƒĪ±Ī»ĪÆĪ±Ļ‚'),
(109074, 'https://ror.org/04v4h0v24', 'en', 1, 'https://ror.org/04v4h0v24 Helmholtz Metadata Collaboration'),
(109075, 'https://ror.org/04v4swe56', 'en', 1, 'https://ror.org/04v4swe56 Uganda Martyrs University'),
(109076, 'https://ror.org/04v53s997', 'en', 1, 'https://ror.org/04v53s997 Norges HandelshĆøyskole Norwegian School of Economics'),
(109077, 'https://ror.org/04v59rt43', 'en', 1, 'https://ror.org/04v59rt43 Tokai Technology Center äø€čˆ¬č²”å›£ę³•äŗŗę±ęµ·ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(109078, 'https://ror.org/04v67fd63', 'en', 1, 'https://ror.org/04v67fd63 Tsudanuma Central General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę„›å‹ä¼šę“„ē”°ę²¼äø­å¤®ē·åˆē—…é™¢'),
(109079, 'https://ror.org/04v893f23', 'en', 1, 'https://ror.org/04v893f23 Forman Christian College ŁŲ§Ų±Ł…ŪŒŁ† Ś©Ų±Ų³Ś†ŪŒŁ† کالج'),
(109080, 'https://ror.org/04v8ap992', 'tr', 1, 'https://ror.org/04v8ap992 Lokman Hekim University Lokman Hekim Üniversitesi'),
(109081, 'https://ror.org/04v8db398', 'sk', 1, 'https://ror.org/04v8db398 Trencianska Univerzita Alexandra Dubceka V Trencine'),
(109082, 'https://ror.org/04vafwy12', 'en', 1, 'https://ror.org/04vafwy12 Western Nevada College'),
(109083, 'https://ror.org/04vgz7238', 'en', 1, 'https://ror.org/04vgz7238 Akita Prefecture Forestry Research and Training Center ē§‹ē”°ēœŒęž—ę„­ē ”ē©¶ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(109084, 'https://ror.org/04vj69e88', 'en', 1, 'https://ror.org/04vj69e88 National Institute for Mathematical and Biological Synthesis'),
(109085, 'https://ror.org/04vnck882', 'no_lang_code', 1, 'https://ror.org/04vnck882 MSD (South Korea)'),
(109086, 'https://ror.org/04vpzzp35', 'en', 1, 'https://ror.org/04vpzzp35 Nagano Environmental Conservation Research Institute é•·é‡ŽēœŒē’°å¢ƒäæå…Øē ”ē©¶ę‰€'),
(109087, 'https://ror.org/04vq9c111', 'de', 1, 'https://ror.org/04vq9c111 Karlsruhe University of Arts and Design Staatliche Hochschule für Gestaltung Karlsruhe'),
(109088, 'https://ror.org/04vqpwb25', 'en', 1, 'https://ror.org/04vqpwb25 Miyazaki Medical Association Hospital å®®å“Žåø‚éƒ”åŒ»åø«ä¼šē—…é™¢'),
(109089, 'https://ror.org/04vrgjp38', 'no_lang_code', 1, 'https://ror.org/04vrgjp38 WSP (Canada)'),
(109090, 'https://ror.org/04vsvr128', 'en', 1, 'https://ror.org/04vsvr128 International Centre for Diarrhoeal Disease Research ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦° ফর ঔাইরিয়াল ঔিজিজ ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š, বাংলাদেশ'),
(109091, 'https://ror.org/04vyj0v05', 'en', 1, 'https://ror.org/04vyj0v05 Observation International'),
(109092, 'https://ror.org/04vz7gz02', 'sv', 1, 'https://ror.org/04vz7gz02 Region VƤstmanland'),
(109093, 'https://ror.org/04w077t62', 'en', 1, 'https://ror.org/04w077t62 Universitas Bengkulu University of Bengkulu'),
(109094, 'https://ror.org/04w0b7z78', 'en', 1, 'https://ror.org/04w0b7z78 Reserve Bank of India ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤°ą¤æą¤œą¤¼ą¤°ą„ą¤µ ą¤¬ą„ˆą¤‚ą¤•'),
(109095, 'https://ror.org/04w2akp96', 'en', 1, 'https://ror.org/04w2akp96 Advanced Construction Technology Center äø€čˆ¬č²”å›£ę³•äŗŗå…ˆē«Æå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(109096, 'https://ror.org/04w2jh416', 'en', 1, 'https://ror.org/04w2jh416 National Cancer Institute'),
(109097, 'https://ror.org/04w3b2231', 'en', 1, 'https://ror.org/04w3b2231 Fukuoka Prefectural Government ē¦å²”ēœŒåŗ'),
(109098, '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'),
(109099, 'https://ror.org/04w4pwd42', 'en', 1, 'https://ror.org/04w4pwd42 President University Universitas Presiden'),
(109100, 'https://ror.org/04w5mvp04', 'it', 1, 'https://ror.org/04w5mvp04 Ospedale generale di zona San Camillo Treviso'),
(109101, 'https://ror.org/04w686e65', 'en', 1, 'https://ror.org/04w686e65 Bicol University'),
(109102, 'https://ror.org/04w6eh407', 'no_lang_code', 1, 'https://ror.org/04w6eh407 Xennia Technology (United Kingdom)'),
(109103, 'https://ror.org/04w713f83', 'no_lang_code', 1, 'https://ror.org/04w713f83 Sri Chandrasekharendra Saraswathi Viswa Mahavidyalaya சிறி ą®šą®ØąÆą®¤ą®°ą®šąÆ‡ą®•ą®°ąÆ‡ą®ØąÆą®¤ą®°ą®¾ ą®šą®°ą®øąÆą®µą®¤ą®æ ą®µą®æą®øąÆą®µ ą®®ą®•ą®¾ą®µą®æą®¤ąÆą®Æą®¾ą®²ą®Æą®¾'),
(109104, 'https://ror.org/04w7eg945', 'en', 1, 'https://ror.org/04w7eg945 Public Health Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒ‘ćƒ–ćƒŖćƒƒć‚Æćƒ˜ćƒ«ć‚¹ćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(109105, 'https://ror.org/04w9fbh59', 'en', 1, 'https://ror.org/04w9fbh59 Beijing University of Posts and Telecommunications åŒ—äŗ¬é‚®ē”µå¤§å­¦'),
(109106, 'https://ror.org/04wb7ez66', 'en', 1, 'https://ror.org/04wb7ez66 KKR Hokuriku Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šåŒ—é™øē—…é™¢'),
(109107, 'https://ror.org/04wbzgn90', 'es', 1, 'https://ror.org/04wbzgn90 Universidad Jorge Tadeo Lozano, Universidad de BogotĆ” Jorge Tadeo Lozano'),
(109108, 'https://ror.org/04wckhb82', 'en', 1, 'https://ror.org/04wckhb82 Fakultnƭ Nemocnice Hradec KrƔlovƩ University Hospital Hradec KrƔlovƩ'),
(109109, 'https://ror.org/04wdnn819', 'en', 1, 'https://ror.org/04wdnn819 Society of Motion Picture and Television Engineers'),
(109110, 'https://ror.org/04weaqm75', 'en', 1, 'https://ror.org/04weaqm75 Federal University Birnin Kebbi'),
(109111, 'https://ror.org/04wgdeg88', 'en', 1, 'https://ror.org/04wgdeg88 R. E. Beverly III and Associates, R. E. Beverly III and Associates (United States)'),
(109112, 'https://ror.org/04wjxkk25', 'en', 1, 'https://ror.org/04wjxkk25 Sonoma State University'),
(109113, 'https://ror.org/04wpjpv62', 'en', 1, 'https://ror.org/04wpjpv62 Tajimi Iwase Eye Clinic ćŸć˜ćæå²©ē€¬ēœ¼ē§‘'),
(109114, 'https://ror.org/04wr6mz63', 'en', 1, 'https://ror.org/04wr6mz63 Muni University'),
(109115, 'https://ror.org/04wty6921', 'en', 1, 'https://ror.org/04wty6921 Sandwell College'),
(109116, 'https://ror.org/04wwtb809', 'en', 1, 'https://ror.org/04wwtb809 Ichinomiyanishi Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęå¶ŗä¼šäø€å®®č„æē—…é™¢'),
(109117, 'https://ror.org/04wx3x242', 'en', 1, 'https://ror.org/04wx3x242 Marist College'),
(109118, 'https://ror.org/04wzb3z02', 'no_lang_code', 1, 'https://ror.org/04wzb3z02 Exponent (United States)'),
(109119, 'https://ror.org/04x9cdm35', 'en', 1, 'https://ror.org/04x9cdm35 Wakayama Shin-ai University å’Œę­Œå±±äæ”ę„›å¤§å­¦'),
(109120, 'https://ror.org/04xaa4j22', 'fr', 1, 'https://ror.org/04xaa4j22 Institut National des Sciences AppliquƩes de Rennes'),
(109121, 'https://ror.org/04xdag444', 'en', 1, 'https://ror.org/04xdag444 Osaka University of Arts Junior College å¤§é˜ŖčŠøč”“å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(109122, 'https://ror.org/04xe01d27', 'en', 1, 'https://ror.org/04xe01d27 Universidad de TarapacĆ” University of TarapacĆ”'),
(109123, 'https://ror.org/04xf2rc74', 'es', 1, 'https://ror.org/04xf2rc74 Universidad Internacional del Ecuador'),
(109124, 'https://ror.org/04xfdsg27', 'en', 1, 'https://ror.org/04xfdsg27 Telethon Institute Of Genetics And Medicine'),
(109125, 'https://ror.org/04xfw1m83', 'en', 1, 'https://ror.org/04xfw1m83 Shingu Municipal Medical Center ę–°å®®åø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(109126, 'https://ror.org/04xgbph11', 'en', 1, 'https://ror.org/04xgbph11 Presidency University ą¤Ŗą„ą¤°ą„‡ą¤øą¤æą¤”ą„‡ą¤‚ą¤øą„€ ą¤•ą„‰ą¤²ą„‡ą¤œ ą¦Ŗą§ą¦°ą§‡ą¦øą¦æą¦”ą§‡ą¦Øą§ą¦øą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą®®ą®¾ą®Øą®æą®²ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(109127, 'https://ror.org/04xgcc957', 'en', 1, 'https://ror.org/04xgcc957 Epoka University Universiteti Epoka'),
(109128, 'https://ror.org/04xh72p96', 'en', 1, 'https://ror.org/04xh72p96 Chukyo Junior College äø­äŗ¬å­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(109129, 'https://ror.org/04xhy8q59', 'fr', 1, 'https://ror.org/04xhy8q59 University of Poitiers UniversitƩ de Poitiers'),
(109130, 'https://ror.org/04xk0dc21', 'tr', 1, 'https://ror.org/04xk0dc21 Burdur Mehmet Akif Ersoy University Burdur Mehmet Akif Ersoy Üniversitesi'),
(109131, 'https://ror.org/04xkn8h91', 'en', 1, 'https://ror.org/04xkn8h91 Gifu Prefectural Gero Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå²é˜œēœŒē«‹äø‹å‘‚ęø©ę³‰ē—…é™¢'),
(109132, 'https://ror.org/04xm4gw61', 'en', 1, 'https://ror.org/04xm4gw61 Nigerian Army University Biu'),
(109133, 'https://ror.org/04xndpe63', 'en', 1, 'https://ror.org/04xndpe63 Chiba City Institute of Health and Environment åƒč‘‰åø‚ē’°å¢ƒäæå„ē ”ē©¶ę‰€'),
(109134, 'https://ror.org/04xpv6e64', 'pt', 1, 'https://ror.org/04xpv6e64 Centro de QuĆ­mica de Coimbra'),
(109135, 'https://ror.org/04xqm0b91', 'en', 1, 'https://ror.org/04xqm0b91 Professional College of Arts and Tourism čŠøč”“ę–‡åŒ–č¦³å…‰å°‚é–€č·å¤§å­¦'),
(109136, 'https://ror.org/04xqwq985', 'en', 1, 'https://ror.org/04xqwq985 Inje University ģøģ œėŒ€ķ•™źµ'),
(109137, 'https://ror.org/04xrarz80', 'no_lang_code', 1, 'https://ror.org/04xrarz80 Deutsche Bahn (Germany)'),
(109138, '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'),
(109139, 'https://ror.org/04xsxqp89', 'en', 1, 'https://ror.org/04xsxqp89 Alliance Bioversity International - CIAT'),
(109140, 'https://ror.org/04xvfkh51', 'en', 1, 'https://ror.org/04xvfkh51 IMDEA Software Instituto IMDEA Software'),
(109141, 'https://ror.org/04xvhsp09', 'sv', 1, 'https://ror.org/04xvhsp09 VƤsterbotten County, VƤsterbottens lƤn'),
(109142, 'https://ror.org/04xxk1t48', 'en', 1, 'https://ror.org/04xxk1t48 Obesity and Eating Habits Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ś†Ų§Ł‚ŪŒ و Ų¹Ų§ŲÆŲ§ŲŖ غذایی'),
(109143, 'https://ror.org/04xyf9e18', 'es', 1, 'https://ror.org/04xyf9e18 Instituto Tecnológico de TehuacÔn'),
(109144, 'https://ror.org/04xysgw12', 'en', 1, 'https://ror.org/04xysgw12 Pohang University of Science and Technology ķ¬ķ•­ź³µź³¼ėŒ€ķ•™źµ'),
(109145, 'https://ror.org/04xyxjd90', 'en', 1, 'https://ror.org/04xyxjd90 Nottingham Trent University'),
(109146, 'https://ror.org/04xzp4624', 'en', 1, 'https://ror.org/04xzp4624 Josai Junior College åŸŽč„æēŸ­ęœŸå¤§å­¦'),
(109147, 'https://ror.org/04xzxak21', 'en', 1, 'https://ror.org/04xzxak21 The Building Center of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ć‚»ćƒ³ć‚æćƒ¼'),
(109148, 'https://ror.org/04y0s1771', 'en', 1, 'https://ror.org/04y0s1771 Tokyo Metropolitan Hospital Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę±äŗ¬éƒ½ē«‹ē—…é™¢ę©Ÿę§‹'),
(109149, 'https://ror.org/04y0ypp13', 'no_lang_code', 1, 'https://ror.org/04y0ypp13 ThyssenKrupp (Brazil)'),
(109150, 'https://ror.org/04y3rfg91', 'en', 1, 'https://ror.org/04y3rfg91 Central University of Gujarat'),
(109151, 'https://ror.org/04y3tyb88', 'de', 1, 'https://ror.org/04y3tyb88 Forest Research Institute Baden-Wuerttemberg Forstliche Versuchs- und Forschungsanstalt Baden-Württemberg'),
(109152, 'https://ror.org/04y57vd64', 'en', 1, 'https://ror.org/04y57vd64 School of Planning and Architecture Delhi ą¤Æą„‹ą¤œą¤Øą¤¾ तऄा ą¤µą¤¾ą¤øą„ą¤¤ą„ą¤•ą¤²ą¤¾ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(109153, 'https://ror.org/04y5x0d62', 'en', 1, 'https://ror.org/04y5x0d62 Central Japan Cord Blood Bank äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­éƒØć•ć„åøÆč”€ćƒćƒ³ć‚Æ'),
(109154, 'https://ror.org/04y763m95', 'en', 1, 'https://ror.org/04y763m95 Central University of Jharkhand ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤¾ą¤°ą¤–ą¤£ą„ą¤”'),
(109155, 'https://ror.org/04y7eh037', 'en', 1, 'https://ror.org/04y7eh037 Uniwersytet Witolda Wielkiego Vytautas Magnus University Vytauto Didžiojo universitetas Университет Витовта Великого'),
(109156, 'https://ror.org/04y85wy15', 'no_lang_code', 1, 'https://ror.org/04y85wy15 Acciona (Spain)'),
(109157, 'https://ror.org/04y8eg478', 'es', 1, 'https://ror.org/04y8eg478 Universidad Tecnológica de Nayarit'),
(109158, 'https://ror.org/04y8njc86', 'en', 1, 'https://ror.org/04y8njc86 Yancheng Institute of Technology ē›åŸŽå·„å­¦é™¢'),
(109159, 'https://ror.org/04y8sc244', 'en', 1, 'https://ror.org/04y8sc244 Ozarks Technical Community College'),
(109160, 'https://ror.org/04yayy336', 'en', 1, 'https://ror.org/04yayy336 Indira Gandhi National Tribal University इंदिरा ą¤—ą¤¾ą¤ą¤§ą„€ ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤Ÿą„ą¤°ą¤¾ą¤‡ą¤¬ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(109161, 'https://ror.org/04yazpn06', 'en', 1, 'https://ror.org/04yazpn06 Bharath University'),
(109162, 'https://ror.org/04ybnj478', 'en', 1, 'https://ror.org/04ybnj478 Academy of Romanian Scientists'),
(109163, 'https://ror.org/04ybvje46', 'en', 1, 'https://ror.org/04ybvje46 Nasarawa State University'),
(109164, 'https://ror.org/04yc2e502', 'fr', 1, 'https://ror.org/04yc2e502 IngƩnierie MolƩculaire et Physiopathologie Articulaire'),
(109165, 'https://ror.org/04ycjft64', 'en', 1, 'https://ror.org/04ycjft64 Mongolian University of Life Sciences ЄөГөө Аж ŠŃ…ŃƒŠ¹Š½ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(109166, 'https://ror.org/04yej8x59', 'en', 1, 'https://ror.org/04yej8x59 University of Tabuk Ų¬Ų§Ł…Ų¹Ų© تبوك'),
(109167, 'https://ror.org/04yg23125', 'en', 1, 'https://ror.org/04yg23125 General University Hospital in Prague VŔeobecnÔ Fakultní Nemocnice v Praze'),
(109168, 'https://ror.org/04yg9zd47', 'en', 1, 'https://ror.org/04yg9zd47 Debapriya Mukhopadhyay Vision Research Institute & Foundation'),
(109169, 'https://ror.org/04yh52k23', 'en', 1, 'https://ror.org/04yh52k23 KLE Technological University ಕೆ ą²Žą²²ą³ ಇ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²¶ą²æą²•ą³ą²·ą²£ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(109170, 'https://ror.org/04yjnf659', 'id', 1, 'https://ror.org/04yjnf659 Sekolah Tinggi Ilmu Komunikasi Almamater Wartawan Surabaya'),
(109171, 'https://ror.org/04yjz9j46', 'en', 1, 'https://ror.org/04yjz9j46 St. Marguerite Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ęµä»ä¼šć‚»ćƒ³ćƒˆćƒžćƒ¼ć‚¬ćƒ¬ćƒƒćƒˆē—…é™¢'),
(109172, 'https://ror.org/04yk0nx57', 'es', 1, 'https://ror.org/04yk0nx57 Fundación Universitaria Juan N. Corpas'),
(109173, 'https://ror.org/04ykhhw18', 'en', 1, 'https://ror.org/04ykhhw18 UniversitĆ© d''Ɖtat de virginie-occidentale West Virginia State University'),
(109174, 'https://ror.org/04ymc4274', 'en', 1, 'https://ror.org/04ymc4274 European Humanities University Europejski Uniwersytet Humanistyczny Europos humanitarinis universitetas Европейский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(109175, 'https://ror.org/04ympke82', 'en', 1, 'https://ror.org/04ympke82 General Building Research Corporation of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ē·åˆč©¦éØ“ę‰€'),
(109176, 'https://ror.org/04yn0zk11', 'en', 1, 'https://ror.org/04yn0zk11 Ehime Research Institute of Agriculture, Forestry and Fisheries ę„›åŖ›ēœŒč¾²ęž—ę°“ē”£ē ”ē©¶ę‰€'),
(109177, 'https://ror.org/04yndey86', 'en', 1, 'https://ror.org/04yndey86 IUCN Species Survival Commission'),
(109178, 'https://ror.org/04yqw9c44', 'pt', 1, 'https://ror.org/04yqw9c44 Universidade Federal de Juiz de Fora'),
(109179, 'https://ror.org/04yr71909', 'en', 1, 'https://ror.org/04yr71909 CollĆØge Militaire Royal du Canada Royal Military College of Canada'),
(109180, 'https://ror.org/04ytrqw44', 'es', 1, 'https://ror.org/04ytrqw44 Universidad Privada San Juan Bautista'),
(109181, 'https://ror.org/04yvncj21', 'en', 1, 'https://ror.org/04yvncj21 Academia de Studii Economice Bucharest University of Economic Studies'),
(109182, 'https://ror.org/04yxc1466', 'id', 1, 'https://ror.org/04yxc1466 Universitas Sari Mulia'),
(109183, 'https://ror.org/04yyzaa40', 'pt', 1, 'https://ror.org/04yyzaa40 Centro de Investigação em Economia e Gestão'),
(109184, 'https://ror.org/04yzg0e77', 'en', 1, 'https://ror.org/04yzg0e77 Mie Industry and Enterprise Support Center å…¬ē›Šč²”å›£ę³•äŗŗäø‰é‡ēœŒē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(109185, 'https://ror.org/04z0p3077', 'es', 1, 'https://ror.org/04z0p3077 IK4-Lortek'),
(109186, 'https://ror.org/04z3ctv55', 'pt', 1, 'https://ror.org/04z3ctv55 Centro AcadƩmico de Medicina de Lisboa'),
(109187, 'https://ror.org/04z44m122', 'en', 1, 'https://ror.org/04z44m122 Miyamoto Hospital åŒ»ē™‚ę³•äŗŗå®®ęœ¬ē—…é™¢'),
(109188, 'https://ror.org/04z49n283', 'en', 1, 'https://ror.org/04z49n283 Fairfield University Universidad de Fairfield'),
(109189, 'https://ror.org/04z4ygh26', 'en', 1, 'https://ror.org/04z4ygh26 Iwate Prefectural Kuji Hospital å²©ę‰‹ēœŒē«‹ä¹…ę…ˆē—…é™¢'),
(109190, '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'),
(109191, 'https://ror.org/04z893x06', 'en', 1, 'https://ror.org/04z893x06 Langston University'),
(109192, 'https://ror.org/04z8fv018', 'en', 1, 'https://ror.org/04z8fv018 The Mushroom Research Institute of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćć®ć“ē ”ē©¶ę‰€'),
(109193, 'https://ror.org/04zayvt43', 'pt', 1, 'https://ror.org/04zayvt43 Universidade de Santa Cruz do Sul University of Santa Cruz do Sul'),
(109194, 'https://ror.org/04zhrfn38', 'es', 1, 'https://ror.org/04zhrfn38 Instituto Tecnológico de Costa Rica'),
(109195, 'https://ror.org/04zjcaq85', 'en', 1, 'https://ror.org/04zjcaq85 Valdosta State University'),
(109196, 'https://ror.org/04zjtrb98', 'en', 1, 'https://ror.org/04zjtrb98 Old Dominion University'),
(109197, 'https://ror.org/04zmmpw58', 'en', 1, 'https://ror.org/04zmmpw58 Swedish National Road and Transport Research Institute'),
(109198, 'https://ror.org/04znvdh69', 'en', 1, 'https://ror.org/04znvdh69 South Staffordshire College'),
(109199, 'https://ror.org/04zp4f313', 'en', 1, 'https://ror.org/04zp4f313 Laboratory for Research on Enterprise and Decisions'),
(109200, 'https://ror.org/04zp58p78', 'en', 1, 'https://ror.org/04zp58p78 Japan Cement Association äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚»ćƒ”ćƒ³ćƒˆå”ä¼š'),
(109201, 'https://ror.org/04zsyxa30', 'en', 1, 'https://ror.org/04zsyxa30 Centre for Biodiversity Genomics'),
(109202, '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'),
(109203, 'https://ror.org/04zwxg371', 'es', 1, 'https://ror.org/04zwxg371 Corporación Universitaria Remington'),
(109204, 'https://ror.org/04zx3vk32', 'en', 1, 'https://ror.org/04zx3vk32 IUCN World Commission on Environmental Law'),
(109205, 'https://ror.org/04zyhq975', 'en', 1, 'https://ror.org/04zyhq975 Heilongjiang University é»‘é¾™ę±Ÿå¤§å­¦'),
(109206, 'https://ror.org/0500gea42', 'en', 1, 'https://ror.org/0500gea42 HAN University of Applied Sciences Hogeschool van Arnhem en Nijmegen'),
(109207, 'https://ror.org/0501fpn39', 'en', 1, 'https://ror.org/0501fpn39 Japan Fisheries Resource Conservation Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“ē”£č³‡ęŗäæč­·å”ä¼š'),
(109208, 'https://ror.org/0508h6p74', 'no_lang_code', 1, 'https://ror.org/0508h6p74 Flatiron Health (United States)'),
(109209, 'https://ror.org/0509djg30', 'en', 1, 'https://ror.org/0509djg30 Indian Institute of Technology Dharwad'),
(109210, 'https://ror.org/0509ggw88', 'en', 1, 'https://ror.org/0509ggw88 III V Lab'),
(109211, 'https://ror.org/050a13412', 'pt', 1, 'https://ror.org/050a13412 Comando do Pessoal'),
(109212, 'https://ror.org/050adtn77', 'id', 1, 'https://ror.org/050adtn77 Universitas Semarang'),
(109213, 'https://ror.org/050bg0846', 'en', 1, 'https://ror.org/050bg0846 Universidad de NariƱo University of NariƱo'),
(109214, 'https://ror.org/050c3cw24', 'ca', 1, 'https://ror.org/050c3cw24 Universidad de LƩrida Universidade de Lleida Universitat de Lleida University of Lleida'),
(109215, 'https://ror.org/050ccpd76', 'en', 1, 'https://ror.org/050ccpd76 Ovidius University'),
(109216, 'https://ror.org/050ed7z50', 'en', 1, 'https://ror.org/050ed7z50 Bayburt University Bayburt Üniversitesi'),
(109217, 'https://ror.org/050khh066', 'en', 1, 'https://ror.org/050khh066 New South Wales Department of Primary Industries'),
(109218, 'https://ror.org/050ktqq97', 'en', 1, 'https://ror.org/050ktqq97 Mouloud Mammeri University of Tizi-Ouzou Ų¬Ų§Ł…Ų¹Ų© Ł…ŁˆŁ„ŁˆŲÆ Ł…Ų¹Ł…Ų±ŁŠ'),
(109219, 'https://ror.org/050nk7b98', 'id', 1, 'https://ror.org/050nk7b98 Ibnu Sina University Universitas Ibnu Sina'),
(109220, 'https://ror.org/050np5j74', 'en', 1, 'https://ror.org/050np5j74 Institute for Horticultural Plant Breeding å…¬ē›Šč²”å›£ę³•äŗŗåœ’čŠøę¤ē‰©č‚²ēØ®ē ”ē©¶ę‰€'),
(109221, 'https://ror.org/050nqkw90', 'en', 1, 'https://ror.org/050nqkw90 Bridgend College'),
(109222, 'https://ror.org/050p80d78', 'sq', 1, 'https://ror.org/050p80d78 University of PriÅ”tina - Kosovska Mitrovica Универзитет у ŠŸŃ€ŠøŃˆŃ‚ŠøŠ½Šø са привременим ŃŠµŠ“ŠøŃˆŃ‚ŠµŠ¼ у Косовској ŠœŠøŃ‚Ń€Š¾Š²ŠøŃ†Šø'),
(109223, 'https://ror.org/050qgja27', 'pt', 1, 'https://ror.org/050qgja27 Câmara Municipal de Guimarães'),
(109224, 'https://ror.org/050qxn185', 'en', 1, 'https://ror.org/050qxn185 Anand Agricultural University'),
(109225, 'https://ror.org/050reks70', 'en', 1, 'https://ror.org/050reks70 Küberkaitsekoostöö Keskus NATO Cooperative Cyber Defence Centre of Excellence'),
(109226, 'https://ror.org/050s6ns64', 'en', 1, 'https://ror.org/050s6ns64 Fujian Medical University ē¦å»ŗåŒ»ē§‘å¤§å­¦'),
(109227, 'https://ror.org/050vkgz80', 'en', 1, 'https://ror.org/050vkgz80 Razi Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† رازی'),
(109228, 'https://ror.org/050wdfq62', 'en', 1, 'https://ror.org/050wdfq62 THE Nippon Agricultural Research Institute å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č¾²ę„­ē ”ē©¶ę‰€'),
(109229, 'https://ror.org/050wvyk52', 'en', 1, 'https://ror.org/050wvyk52 Matsusaka City Hospital ę¾é˜Ŗåø‚ę°‘ē—…é™¢'),
(109230, 'https://ror.org/050x4es15', 'en', 1, 'https://ror.org/050x4es15 Niigata Prefectural Fisheries and Marine Research Institute ę–°ę½ŸēœŒę°“ē”£ęµ·ę“‹ē ”ē©¶ę‰€'),
(109231, 'https://ror.org/050ybep11', 'en', 1, 'https://ror.org/050ybep11 Federation of National Public Service Personnel Mutual Aid Associations å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼š'),
(109232, 'https://ror.org/0510zxr89', 'pt', 1, 'https://ror.org/0510zxr89 Goethe Institut Portugal'),
(109233, 'https://ror.org/051124b05', 'en', 1, 'https://ror.org/051124b05 Iwate Prefectural Isawa Hospital å²©ę‰‹ēœŒē«‹čƒ†ę²¢ē—…é™¢'),
(109234, 'https://ror.org/0515nd386', 'en', 1, 'https://ror.org/0515nd386 Northeast Agricultural University äøœåŒ—å†œäøšå¤§å­¦'),
(109235, 'https://ror.org/0515pjs57', 'en', 1, 'https://ror.org/0515pjs57 Austrian Institute of Economic Research Ɩsterreichisches Institut für Wirtschaftsforschung'),
(109236, 'https://ror.org/0517ebj20', 'en', 1, 'https://ror.org/0517ebj20 ms consultants, inc.'),
(109237, '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'),
(109238, 'https://ror.org/051ae8e94', 'no_lang_code', 1, 'https://ror.org/051ae8e94 Ambry Genetics (United States)'),
(109239, 'https://ror.org/051bats05', 'en', 1, 'https://ror.org/051bats05 Lorestan University'),
(109240, 'https://ror.org/051dhry29', 'fr', 1, 'https://ror.org/051dhry29 Marine nationale'),
(109241, 'https://ror.org/051e7m916', 'en', 1, 'https://ror.org/051e7m916 Endicott College'),
(109242, 'https://ror.org/051f2wp73', 'en', 1, 'https://ror.org/051f2wp73 GIET University ą¬—ą¬¾ą¬Øą­ą¬§ą­€ ą¬Æą¬¾ą¬Øą­ą¬¤ą­ą¬°ą¬æą¬• ଓ ą¬Ŗą­ą¬°ą­Œą¬¦ą­ą­Ÿą­‹ą¬—ą¬æą¬• ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(109243, 'https://ror.org/051f9hh10', 'en', 1, 'https://ror.org/051f9hh10 Fair Math, Fair Math (United States), Fair Math, Inc'),
(109244, 'https://ror.org/051gsh239', 'en', 0, 'https://ror.org/051gsh239 Lawson Health Research Institute'),
(109245, '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'),
(109246, 'https://ror.org/051kqr635', 'no_lang_code', 1, 'https://ror.org/051kqr635 Headland Archaeology (UK) Limited (United Kingdom)'),
(109247, 'https://ror.org/051m5c198', 'id', 1, 'https://ror.org/051m5c198 Universitas Islam Negeri Imam Bonjol Padang'),
(109248, 'https://ror.org/051prj435', 'en', 1, 'https://ror.org/051prj435 Bishop''s University UniversitƩ Bishop'),
(109249, 'https://ror.org/051q2m369', 'en', 1, 'https://ror.org/051q2m369 Hankuk University of Foreign Studies ķ•œźµ­ģ™øźµ­ģ–“ėŒ€ķ•™źµ'),
(109250, 'https://ror.org/051qw9f78', 'de', 1, 'https://ror.org/051qw9f78 HTWG Hochschule Konstanz - Technik, Wirtschaft und Gestaltung HTWG Konstanz - University of Applied Sciences'),
(109251, 'https://ror.org/051tr1y59', 'en', 1, 'https://ror.org/051tr1y59 Luxembourg Centre for Systems Biomedicine'),
(109252, 'https://ror.org/051tsqh55', 'en', 1, 'https://ror.org/051tsqh55 Batman University Batman Üniversitesi'),
(109253, 'https://ror.org/051v5t493', 'en', 1, 'https://ror.org/051v5t493 Kyoto University of Foreign Studies äŗ¬éƒ½å¤–å›½čŖžå¤§å­¦'),
(109254, 'https://ror.org/051xex213', 'en', 0, 'https://ror.org/051xex213 Irish Research Council'),
(109255, 'https://ror.org/051zgra59', 'en', 1, 'https://ror.org/051zgra59 Government College University, Faisalabad جی سی ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(109256, 'https://ror.org/051zrh047', 'es', 1, 'https://ror.org/051zrh047 National University of Tres de Febrero, Universidad Nacional de Tres de Febrero'),
(109257, 'https://ror.org/052133d12', 'en', 1, 'https://ror.org/052133d12 University of Indianapolis'),
(109258, 'https://ror.org/0521rv456', 'en', 1, 'https://ror.org/0521rv456 Institute of High Temperature Electrochemistry Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŠø Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(109259, 'https://ror.org/05227xs87', 'en', 1, 'https://ror.org/05227xs87 Tagawa Hospital äø€čˆ¬č²”å›£ę³•äŗŗē¦å²”ēœŒē¤¾ä¼šäæé™ŗåŒ»ē™‚å”ä¼šē¤¾ä¼šäæé™ŗē”°å·ē—…é™¢'),
(109260, 'https://ror.org/05256ym39', 'en', 1, 'https://ror.org/05256ym39 Kazan Federal University Казанский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(109261, 'https://ror.org/0526p1y61', 'en', 1, 'https://ror.org/0526p1y61 Oak Ridge Associated Universities'),
(109262, 'https://ror.org/0528q1h46', 'en', 1, 'https://ror.org/0528q1h46 KOMAG Institute of Mining Technology'),
(109263, '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'),
(109264, 'https://ror.org/05297fh87', 'en', 1, 'https://ror.org/05297fh87 Primeasia University ą¦Ŗą§ą¦°ą¦¾ą¦‡ą¦®ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(109265, 'https://ror.org/0529fhg57', 'en', 1, 'https://ror.org/0529fhg57 Morioka Yuai Hospital åŒ»ē™‚ę³•äŗŗå‹ę„›ä¼šē››å²”å‹ę„›ē—…é™¢'),
(109266, 'https://ror.org/0529rbt18', 'en', 1, 'https://ror.org/0529rbt18 Distance State University Universidad Estatal a Distancia'),
(109267, 'https://ror.org/0529ybh43', 'en', 1, 'https://ror.org/0529ybh43 Pepperdine University'),
(109268, 'https://ror.org/052d0td05', 'es', 1, 'https://ror.org/052d0td05 Hospital Universitario San Ignacio'),
(109269, 'https://ror.org/052dn0m48', 'en', 1, 'https://ror.org/052dn0m48 Japanese Society of Tribologists äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒˆćƒ©ć‚¤ćƒœćƒ­ć‚øćƒ¼å­¦ä¼š'),
(109270, 'https://ror.org/052dxv585', 'en', 1, 'https://ror.org/052dxv585 Concord University College Fujian Normal University ē¦å»ŗåøˆčŒƒå¤§å­¦åå’Œå­¦é™¢'),
(109271, 'https://ror.org/052eb8626', 'en', 1, 'https://ror.org/052eb8626 Shimane Institute Of Health Science å…¬ē›Šč²”å›£ę³•äŗŗćƒ˜ćƒ«ć‚¹ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼å³¶ę ¹'),
(109272, 'https://ror.org/052hkzn34', 'en', 1, 'https://ror.org/052hkzn34 Communal Institution of Higher Education Ā«Dnipro Academy of Continuing EducationĀ» of Dnipropetrovsk Regional Council Комунальний заклаГ вищої освіти "Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń неперервної освіти" Š”Š½Ń–ŠæŃ€Š¾ŠæŠµŃ‚Ń€Š¾Š²ŃŃŒŠŗŠ¾Ń— обласної раГи'),
(109273, 'https://ror.org/052je9n03', 'en', 1, 'https://ror.org/052je9n03 Inabe General Hospital JAäø‰é‡åŽšē”Ÿé€£äø‰é‡åŒ—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ć„ćŖć¹ē·åˆē—…é™¢'),
(109274, 'https://ror.org/052kp6r10', 'en', 1, 'https://ror.org/052kp6r10 Saka General Hospital å…¬ē›Šč²”å›£ę³•äŗŗå®®åŸŽåŽšē”Ÿå”ä¼šå‚ē·åˆē—…é™¢'),
(109275, 'https://ror.org/052kwzs30', 'en', 1, 'https://ror.org/052kwzs30 King Khalid University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ خالد'),
(109276, 'https://ror.org/052nhnq73', 'en', 1, 'https://ror.org/052nhnq73 University for Development Studies'),
(109277, 'https://ror.org/052nzqz14', 'en', 1, 'https://ror.org/052nzqz14 Iskenderun Teknik Üniversitesi İskenderun Technical University'),
(109278, 'https://ror.org/052pakb34', 'en', 1, 'https://ror.org/052pakb34 Changchun University of Technology é•æę˜„å·„äøšå¤§å­¦'),
(109279, 'https://ror.org/052pz1t61', 'en', 1, 'https://ror.org/052pz1t61 Chiba Prefectural Environmental Research Center åƒč‘‰ēœŒē’°å¢ƒē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(109280, 'https://ror.org/052q9xn36', 'en', 1, 'https://ror.org/052q9xn36 Yaizu City Hospital ē„¼ę“„åø‚ē«‹ē·åˆē—…é™¢'),
(109281, 'https://ror.org/052qsay17', 'en', 1, 'https://ror.org/052qsay17 Chittagong University of Engineering & Technology ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(109282, 'https://ror.org/052r04325', 'fr', 1, 'https://ror.org/052r04325 UniversitƩ de Mostaganem'),
(109283, 'https://ror.org/052rx6v10', 'en', 1, 'https://ror.org/052rx6v10 Claflin University'),
(109284, 'https://ror.org/052sta926', 'en', 1, 'https://ror.org/052sta926 "Dunarea de Jos" University of Galati Universitatea ā€žDunărea de Josā€ din Galați'),
(109285, 'https://ror.org/052t4a858', 'en', 1, 'https://ror.org/052t4a858 Daffodil International University ą¦”ą§ą¦Æą¦¾ą¦«ą§‹ą¦”ą¦æą¦² ą¦†ą¦Øą§ą¦¤ą¦°ą§ą¦œą¦¾ą¦¤ą¦æą¦• ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(109286, 'https://ror.org/052vbfx84', 'en', 1, 'https://ror.org/052vbfx84 The Nature Conservation Society of Japan å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č‡Ŗē„¶äæč­·å”ä¼š'),
(109287, 'https://ror.org/052vdrx60', 'en', 1, 'https://ror.org/052vdrx60 Indian Institute of Management Tiruchirappalli ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¤ą¤æą¤°ą„ą¤šą„ą¤šą¤æą¤°ą¤¾ą¤Ŗą¤²ą„ą¤²ą„€ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ,ą®¤ą®æą®°ąÆą®šąÆą®šą®æą®°ą®¾ą®ŖąÆą®Ŗą®³ąÆą®³ą®æ'),
(109288, 'https://ror.org/052zbdw10', 'es', 1, 'https://ror.org/052zbdw10 Universidad Unicervantes'),
(109289, 'https://ror.org/0530tab10', 'en', 1, 'https://ror.org/0530tab10 Southern Leyte State University'),
(109290, 'https://ror.org/053290d43', 'en', 1, 'https://ror.org/053290d43 The Japanese Society of Gastroenterology äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę¶ˆåŒ–å™Øē—…å­¦ä¼š'),
(109291, 'https://ror.org/0532c1x92', 'en', 1, 'https://ror.org/0532c1x92 Poznań University of Economics and Business Uniwersytet Ekonomiczny w Poznaniu'),
(109292, 'https://ror.org/05339ng12', 'fr', 1, 'https://ror.org/05339ng12 Polytech Lille'),
(109293, 'https://ror.org/0537dnd74', 'no_lang_code', 1, 'https://ror.org/0537dnd74 Banco Bilbao Vizcaya Argentaria (Spain)'),
(109294, 'https://ror.org/0538fxe03', 'en', 1, 'https://ror.org/0538fxe03 King Hamad University Hospital مستؓفى Ų§Ł„Ł…Ł„Łƒ Ų­Ł…ŲÆ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(109295, 'https://ror.org/0538pfx71', 'en', 1, 'https://ror.org/0538pfx71 Pontifical Catholic University of Puerto Rico Pontificia Universidad Catolica de Puerto Rico'),
(109296, 'https://ror.org/0539mt741', 'en', 1, 'https://ror.org/0539mt741 Bahrami Hospital ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ŲØŁ‡Ų±Ų§Ł…ŪŒ'),
(109297, 'https://ror.org/053bp9m60', 'en', 1, 'https://ror.org/053bp9m60 Children''s of Alabama'),
(109298, 'https://ror.org/053ez2v94', 'en', 1, 'https://ror.org/053ez2v94 ADA University Azərbaycan Diplomatik Akademiyası'),
(109299, 'https://ror.org/053fq8t95', 'en', 1, 'https://ror.org/053fq8t95 Prifysgol Abertawe Swansea University'),
(109300, 'https://ror.org/053g6we49', 'en', 1, 'https://ror.org/053g6we49 Zagazig University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ł‚Ų§Ų²ŁŠŁ‚'),
(109301, 'https://ror.org/053h8r787', 'en', 1, 'https://ror.org/053h8r787 Saitama Citizens Medical Center ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć•ć„ćŸć¾åø‚ę°‘åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(109302, 'https://ror.org/053hfm619', 'en', 1, 'https://ror.org/053hfm619 Hayama Heart Center ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šč‘‰å±±ćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(109303, 'https://ror.org/053jehz60', 'en', 1, 'https://ror.org/053jehz60 Vidyasirimedhi Institute of Science and Technology'),
(109304, 'https://ror.org/053jpjd80', 'en', 1, 'https://ror.org/053jpjd80 Gerrit Rietveld Academie Gerrit Rietveld Academy'),
(109305, 'https://ror.org/053jtd921', 'en', 1, 'https://ror.org/053jtd921 National Academy of Chinese Theatre Arts äø­å›½ęˆę›²å­¦é™¢'),
(109306, 'https://ror.org/053mdsa13', 'en', 1, 'https://ror.org/053mdsa13 Fukushima Prefectural Inland Water Fisheries Experimental Station ē¦å³¶ēœŒå†…ę°“é¢ę°“ē”£č©¦éØ“å “'),
(109307, 'https://ror.org/053skcm44', 'en', 1, 'https://ror.org/053skcm44 Defense Research Center äø€čˆ¬č²”å›£ę³•äŗŗćƒ‡ć‚£ćƒ•ć‚§ćƒ³ć‚¹ćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(109308, 'https://ror.org/053stv828', 'no_lang_code', 1, 'https://ror.org/053stv828 Kisii University'),
(109309, 'https://ror.org/053t9n429', 'fr', 1, 'https://ror.org/053t9n429'),
(109310, 'https://ror.org/053tkcp92', 'en', 1, 'https://ror.org/053tkcp92 Bhawanipur Anchalik College');
INSERT INTO `rors` VALUES
(109311, 'https://ror.org/053vczf59', 'en', 1, 'https://ror.org/053vczf59 Kumamoto Prefecture Forestry Research Guidance Place ē†Šęœ¬ēœŒęž—ę„­ē ”ē©¶ćƒ»ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(109312, 'https://ror.org/053w1zy07', 'en', 1, 'https://ror.org/053w1zy07 Hunan Normal University ę¹–å—åøˆčŒƒå¤§å­¦'),
(109313, 'https://ror.org/053x9s498', 'fr', 1, 'https://ror.org/053x9s498 Artois University UniversitƩ d''Artois'),
(109314, 'https://ror.org/053yhr419', 'en', 1, 'https://ror.org/053yhr419 Mindanao State University – General Santos'),
(109315, 'https://ror.org/053yx7592', 'en', 1, 'https://ror.org/053yx7592 J A Kyosai Research Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗJAå…±ęøˆē·åˆē ”ē©¶ę‰€'),
(109316, 'https://ror.org/0540h1p50', 'pt', 1, 'https://ror.org/0540h1p50 Centro Tecnológico da Cortiça'),
(109317, 'https://ror.org/0540vvc38', 'en', 1, 'https://ror.org/0540vvc38 American University in Dubai الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في دبي دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ دبی'),
(109318, 'https://ror.org/05416zy49', 'en', 1, 'https://ror.org/05416zy49 Termez State University Termiz Davlat Universiteti'),
(109319, 'https://ror.org/0545mcb72', 'en', 1, 'https://ror.org/0545mcb72 Miyagi Prefectural Institute of Agriculture and Horticulture å®®åŸŽēœŒč¾²ę„­ćƒ»åœ’čŠøē·åˆē ”ē©¶ę‰€'),
(109320, 'https://ror.org/0545p3742', 'en', 1, 'https://ror.org/0545p3742 Plovdiv University ПловГивски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(109321, 'https://ror.org/05467hx49', 'no_lang_code', 1, 'https://ror.org/05467hx49 Altos Labs'),
(109322, 'https://ror.org/0546eya52', 'pt', 1, 'https://ror.org/0546eya52 Corpo de Bombeiros Militar de Minas Gerais'),
(109323, 'https://ror.org/0546hnb39', 'en', 1, 'https://ror.org/0546hnb39 University of Konstanz UniversitƤt Konstanz'),
(109324, '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'),
(109325, 'https://ror.org/05479a247', 'no_lang_code', 1, 'https://ror.org/05479a247 Compuscript, Compuscript (Ireland), Compuscript Limited'),
(109326, 'https://ror.org/0547yzj13', 'en', 1, 'https://ror.org/0547yzj13 Yıldız Technical University Yıldız Teknik Üniversitesi'),
(109327, 'https://ror.org/054877331', 'en', 1, 'https://ror.org/054877331 Wekerle Business School Wekerle SĆ”ndor Üzleti Főiskola'),
(109328, 'https://ror.org/05496jt92', 'pt', 1, 'https://ror.org/05496jt92 Fundação Rebikoff-Niggeler'),
(109329, 'https://ror.org/054a6wv56', 'en', 1, 'https://ror.org/054a6wv56 Institute of Space Science - INFLPR Subsidiary Institutul de Stiinte Spatiale - Filiala INFLPR'),
(109330, 'https://ror.org/054b0b564', 'en', 1, 'https://ror.org/054b0b564 Texas Christian University Universidad Cristiana de Texas'),
(109331, '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'),
(109332, 'https://ror.org/054d5vq03', 'en', 1, 'https://ror.org/054d5vq03 Okan University Okan Üniversitesi'),
(109333, 'https://ror.org/054df1z79', 'es', 1, 'https://ror.org/054df1z79 Institute of Advanced Social Studies Instituto de Estudios Sociales Avanzados'),
(109334, 'https://ror.org/054en7g85', 'en', 1, 'https://ror.org/054en7g85 Life Sports Foundation å…¬ē›Šč²”å›£ę³•äŗŗćƒ©ć‚¤ćƒ•ć‚¹ćƒćƒ¼ćƒ„č²”å›£'),
(109335, 'https://ror.org/054etjf65', 'en', 1, 'https://ror.org/054etjf65 Sacred Heart Seminary and School of Theology'),
(109336, 'https://ror.org/054hyrm55', 'pt', 1, 'https://ror.org/054hyrm55 Escola de Economia de SĆ£o Paulo SĆ£o Paulo School of Economics'),
(109337, 'https://ror.org/054kd6r74', 'en', 1, 'https://ror.org/054kd6r74 Mercyhurst University'),
(109338, 'https://ror.org/054kjfv40', 'en', 1, 'https://ror.org/054kjfv40 Yamanashi Prefectural Government 山梨県庁'),
(109339, 'https://ror.org/054nntz49', 'en', 1, 'https://ror.org/054nntz49 Wilkes University'),
(109340, 'https://ror.org/054qbhq46', 'en', 1, 'https://ror.org/054qbhq46 Institute of Natural Sciences and Applied Technology'),
(109341, 'https://ror.org/054qtzc88', 'tr', 1, 'https://ror.org/054qtzc88 Ozanteks Tekstil San. Ve TİC. A.Ş.'),
(109342, 'https://ror.org/054qyrd12', 'pt', 1, 'https://ror.org/054qyrd12 Hospital Dr. NƩlio MendonƧa'),
(109343, 'https://ror.org/054r97095', 'en', 1, 'https://ror.org/054r97095 Mangosuthu University of Technology'),
(109344, 'https://ror.org/054rm6z62', 'en', 1, 'https://ror.org/054rm6z62 Catholic University Los Angeles of Chimbote Universidad Católica Los Ángeles de Chimbote'),
(109345, 'https://ror.org/054tbkd46', 'es', 1, 'https://ror.org/054tbkd46 Universidad Autónoma de Guerrero'),
(109346, 'https://ror.org/054vayn55', 'ca', 0, 'https://ror.org/054vayn55 Consorci Institut D''Investigacions Biomediques August Pi I Sunyer'),
(109347, 'https://ror.org/054w40x57', 'en', 1, 'https://ror.org/054w40x57 Instituto Tecnológico de Villahermosa Villahermosa Institute of Technology'),
(109348, 'https://ror.org/054wajj09', 'en', 1, 'https://ror.org/054wajj09 Huntington University'),
(109349, 'https://ror.org/054y2mb78', 'en', 1, 'https://ror.org/054y2mb78 Ağrı İbrahim ƇeƧen University Ağrı İbrahim ƇeƧen Üniversitesi'),
(109350, 'https://ror.org/054y9ww65', 'en', 1, 'https://ror.org/054y9ww65 Nishinomiya Watanabe Cardiovascular Center ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęø”é‚Šé«˜čØ˜åæµä¼šč„æå®®ęø”č¾ŗåæƒč‡“ćƒ»č”€ē®”ć‚»ćƒ³ć‚æćƒ¼'),
(109351, 'https://ror.org/054yf8v46', 'en', 1, 'https://ror.org/054yf8v46 U.S. Air Force Research Laboratory Sensors Directorate'),
(109352, 'https://ror.org/05508dt35', 'en', 1, 'https://ror.org/05508dt35 Craniomaxillofacial Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ جراحی Ł‡Ų§ŪŒ فک و صورت'),
(109353, 'https://ror.org/0553yr311', 'es', 1, 'https://ror.org/0553yr311 Errioxako Unibertsitatea Universidad de La Rioja Universidade da Rioxa University of La Rioja'),
(109354, 'https://ror.org/0554aam39', 'en', 1, 'https://ror.org/0554aam39 Werfen OEM Technology Center'),
(109355, 'https://ror.org/0554h7e84', 'en', 1, 'https://ror.org/0554h7e84 Department of Earth Sciences'),
(109356, 'https://ror.org/05558nw16', 'en', 1, 'https://ror.org/05558nw16 Leibniz Supercomputing Centre Leibniz-Rechenzentrum'),
(109357, 'https://ror.org/0557b9y08', 'en', 1, 'https://ror.org/0557b9y08 Shanghai University of Engineering Science äøŠęµ·å·„ēØ‹ęŠ€ęœÆå¤§å­¦'),
(109358, 'https://ror.org/05581wm82', 'en', 1, 'https://ror.org/05581wm82 Marine Institute'),
(109359, 'https://ror.org/0559t6f56', 'en', 1, 'https://ror.org/0559t6f56 Wenshan University'),
(109360, 'https://ror.org/055a6gk50', 'en', 1, 'https://ror.org/055a6gk50 University of Anbar Ų¬Ų§Ł…Ų¹Ų© الأنبار'),
(109361, 'https://ror.org/055ag3e81', 'en', 1, 'https://ror.org/055ag3e81 Goucher College'),
(109362, 'https://ror.org/055bn7729', 'en', 1, 'https://ror.org/055bn7729 Hiroshima City Industrial Technology Center åŗƒå³¶åø‚å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(109363, 'https://ror.org/055f0jp24', 'en', 1, 'https://ror.org/055f0jp24 University of Mary'),
(109364, 'https://ror.org/055g2mf68', 'en', 1, 'https://ror.org/055g2mf68 Industrial Technology Center of Wakayama Prefecture å’Œę­Œå±±ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(109365, 'https://ror.org/055h12990', 'en', 1, 'https://ror.org/055h12990 Ube Frontier College å®‡éƒØćƒ•ćƒ­ćƒ³ćƒ†ć‚£ć‚¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(109366, 'https://ror.org/055j0y167', 'no_lang_code', 1, 'https://ror.org/055j0y167 T4D GmbH, T4D GmbH (Switzerland), T4D.ch'),
(109367, 'https://ror.org/055jk5a41', 'en', 1, 'https://ror.org/055jk5a41 Huzhou College ę¹–å·žå­¦é™¢'),
(109368, 'https://ror.org/055k3dh55', 'ro', 1, 'https://ror.org/055k3dh55 Universitatea Din Petrosani University of Petroșani'),
(109369, 'https://ror.org/055mf0v62', 'en', 1, 'https://ror.org/055mf0v62 King Mongkut''s Institute of Technology Ladkrabang ąøŖąø–ąø²ąøšąø±ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ą¹€ąøˆą¹‰ąø²ąø„ąøøąø“ąø—ąø«ąø²ąø£ąø„ąø²ąø”ąøąø£ąø°ąøšąø±ąø‡'),
(109370, 'https://ror.org/055n1ac14', 'en', 1, 'https://ror.org/055n1ac14 University of Southeastern Philippines'),
(109371, 'https://ror.org/055p14r26', 'en', 1, 'https://ror.org/055p14r26 Türk Hava Kurumu Üniversitesi University of Turkish Aeronautical Association'),
(109372, 'https://ror.org/055rz8d64', 'fr', 1, 'https://ror.org/055rz8d64 UniversitĆ© de M''Sila Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ بوضياف Ł…Ų³ŁŠŁ„Ų©'),
(109373, 'https://ror.org/055tbc836', 'fr', 1, 'https://ror.org/055tbc836 Fondation Maison franco-japonaise å…¬ē›Šč²”å›£ę³•äŗŗę—„ä»ä¼šé¤Ø'),
(109374, 'https://ror.org/055wmc747', 'es', 1, 'https://ror.org/055wmc747 Centro Científico Tecnológico - Mendoza'),
(109375, 'https://ror.org/0560ksp05', 'en', 1, 'https://ror.org/0560ksp05 CollĆØge john abbott John Abbott College'),
(109376, 'https://ror.org/0560xhg44', 'en', 1, 'https://ror.org/0560xhg44 National Protective Security Authority'),
(109377, 'https://ror.org/0561be828', 'en', 1, 'https://ror.org/0561be828 Iwate Prefectural Iwai Hospital å²©ę‰‹ēœŒē«‹ē£äŗ•ē—…é™¢'),
(109378, 'https://ror.org/0561ghm58', 'en', 1, 'https://ror.org/0561ghm58 Slovak University of Technology in Bratislava SlovenskĆ” technickĆ” univerzita v Bratislave'),
(109379, 'https://ror.org/0561z8p38', 'en', 1, 'https://ror.org/0561z8p38 Rijnstate Hospital'),
(109380, 'https://ror.org/0564xsr50', 'en', 1, 'https://ror.org/0564xsr50 King Hussein Cancer Center Ł…Ų±ŁƒŲ² Ų§Ł„Ų­Ų³ŁŠŁ† للسرطان'),
(109381, 'https://ror.org/0565s5e83', 'es', 1, 'https://ror.org/0565s5e83 Universidad Católica de El Salvador'),
(109382, 'https://ror.org/0566bfb96', 'en', 1, 'https://ror.org/0566bfb96 Naturalis Biodiversity Center Nederlands Centrum voor Biodiversiteit Naturalis'),
(109383, 'https://ror.org/0566t4z20', 'fr', 1, 'https://ror.org/0566t4z20 University of Dschang UniversitƩ de Dschang'),
(109384, 'https://ror.org/0567bnk35', 'en', 1, 'https://ror.org/0567bnk35 Kumamoto Regional Medical Center ē†Šęœ¬åø‚åŒ»åø«ä¼šē†Šęœ¬åœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(109385, 'https://ror.org/0567v8t28', 'en', 1, 'https://ror.org/0567v8t28 Jawaharlal Nehru University जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ਜਵਾਹਿਰ ਲਾਲ ਨਹਿਰੂ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€, ਨਵੀਂ ਦਿੱਲੀ ą®œą®µą®•ą®°ąÆą®²ą®¾ą®²ąÆ நேரு ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ ą²œą²µą²¾ą²¹ą²°ą²²ą²¾ą²²ą³ ನೆಹರು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ ą“œą“µą“¹ąµ¼ą“²ą“¾ąµ½ ą“Øąµ†ą“¹ąµą“°ąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(109386, 'https://ror.org/056cay145', 'en', 1, 'https://ror.org/056cay145 Saga Fruit Research Laboratory ä½č³€ēœŒęžœęØ¹č©¦éØ“å “'),
(109387, 'https://ror.org/056cezx90', 'en', 1, 'https://ror.org/056cezx90 Esslingen University of Applied Sciences Hochschule Esslingen'),
(109388, 'https://ror.org/056dsy097', 'pt', 1, 'https://ror.org/056dsy097 Centro de Estudo de BioƩtica'),
(109389, 'https://ror.org/056e9h402', 'en', 1, 'https://ror.org/056e9h402 Cape Peninsula University of Technology Kaapse Skiereiland Universiteit van Tegnologie'),
(109390, 'https://ror.org/056fncw72', 'en', 1, 'https://ror.org/056fncw72 The Japan Institute of Metals and Materials å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é‡‘å±žå­¦ä¼š'),
(109391, 'https://ror.org/056hr4255', 'en', 1, 'https://ror.org/056hr4255 Eastern Virginia Medical School'),
(109392, 'https://ror.org/056mwwj30', 'en', 1, 'https://ror.org/056mwwj30 University Elmergib Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ų±Ų§ŲŗŁŠŲØ'),
(109393, 'https://ror.org/056mzm948', 'en', 1, 'https://ror.org/056mzm948 Kagoshima Prefectural Fisheries Technology and Development Center é¹æå…å³¶ēœŒę°“ē”£ęŠ€č”“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(109394, 'https://ror.org/056nttx82', 'en', 1, 'https://ror.org/056nttx82 Sri Ramakrishna Engineering College'),
(109395, 'https://ror.org/056rez340', 'es', 1, 'https://ror.org/056rez340 Instituto Tecnológico de Agua Prieta'),
(109396, 'https://ror.org/056srs126', 'es', 1, 'https://ror.org/056srs126 Universidad Tecnológica Empresarial de Guayaquil'),
(109397, 'https://ror.org/056t38c37', 'en', 1, 'https://ror.org/056t38c37 Vlerick Business School'),
(109398, 'https://ror.org/056tzgr32', 'en', 1, 'https://ror.org/056tzgr32 Hochschule Zittau/Gƶrlitz Zittau/Gƶrlitz University of Applied Sciences'),
(109399, 'https://ror.org/056vbnz12', 'fr', 1, 'https://ror.org/056vbnz12 Laboratoire Ville MobilitƩ Transport'),
(109400, 'https://ror.org/056veft20', 'en', 1, 'https://ror.org/056veft20 Kutztown University'),
(109401, 'https://ror.org/056vnsb08', 'en', 1, 'https://ror.org/056vnsb08 Royal Ottawa Mental Health Centre'),
(109402, 'https://ror.org/056y7zx62', 'en', 1, 'https://ror.org/056y7zx62 Central University of Rajasthan ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(109403, 'https://ror.org/056zesk73', 'en', 1, 'https://ror.org/056zesk73 Tottori Prefectural Government é³„å–ēœŒåŗ'),
(109404, 'https://ror.org/05720c510', 'en', 1, 'https://ror.org/05720c510 Nozaki Hospital äø€čˆ¬č²”å›£ę³•äŗŗå¼˜ę½¤ä¼šé‡Žå“Žē—…é™¢'),
(109405, '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'),
(109406, 'https://ror.org/0579hyr20', 'fr', 1, 'https://ror.org/0579hyr20 HƓpital du Valais'),
(109407, 'https://ror.org/0579t4s85', 'fr', 1, 'https://ror.org/0579t4s85 Centre de Morphologie MathƩmatique - CMM, Mines Paris, UniversitƩ PSL, Centre de Morphologie MathƩmatique (CMM) Centre for mathematical morphology - CMM, Mines Paris, PSL University, Centre for mathematical morphology (CMM)'),
(109408, 'https://ror.org/057d6z539', 'no_lang_code', 1, 'https://ror.org/057d6z539 Chitkara University ą¤šą¤æą¤¤ą¤•ą¤¾ą¤°ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(109409, 'https://ror.org/057f9wg13', 'es', 1, 'https://ror.org/057f9wg13 Instituto Tecnológico MetalmecÔnico, Mueble, Madera, Embalaje y Afines'),
(109410, 'https://ror.org/057jj1a66', 'en', 1, 'https://ror.org/057jj1a66 Indian Society of Agricultural Engineers ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ अभियंता ą¤øą„‹ą¤øą¤¾ą¤Æą¤Ÿą„€'),
(109411, 'https://ror.org/057jn4x11', 'en', 1, 'https://ror.org/057jn4x11 Sanno Hospital åŒ»ē™‚ę³•äŗŗēæ ę˜Žä¼šå±±ēŽ‹ē—…é™¢'),
(109412, 'https://ror.org/057k4ej49', 'en', 1, 'https://ror.org/057k4ej49 Murang''a University of Technology'),
(109413, 'https://ror.org/057k9q466', 'en', 1, 'https://ror.org/057k9q466 AgrÔrtudomÔnyi Kutatóközpont Centre for Agricultural Research'),
(109414, 'https://ror.org/057m2yx22', 'en', 1, 'https://ror.org/057m2yx22 Koriyama Women''s College 郔山儳子大学短期大学部'),
(109415, 'https://ror.org/057p0ez44', 'en', 1, 'https://ror.org/057p0ez44 Jose Matias Delgado University Universidad Dr. JosƩ Matƭas Delgado'),
(109416, 'https://ror.org/057p7sf36', 'en', 1, 'https://ror.org/057p7sf36 Japan Testing Center for Construction Materials äø€čˆ¬č²”å›£ę³•äŗŗå»ŗęč©¦éØ“ć‚»ćƒ³ć‚æćƒ¼'),
(109417, 'https://ror.org/057sfvh62', 'en', 1, 'https://ror.org/057sfvh62 Chidoribashi Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗē¦å²”åŒ»ē™‚å›£åƒé³„ę©‹ē—…é™¢'),
(109418, 'https://ror.org/057tpd183', 'en', 1, 'https://ror.org/057tpd183 Hanshin Expressway Research Institute for Advanced Technology äø€čˆ¬č²”å›£ę³•äŗŗé˜Ŗē„žé«˜é€Ÿå…ˆé€²ęŠ€č”“ē ”ē©¶ę‰€'),
(109419, 'https://ror.org/057ts1y80', 'en', 1, 'https://ror.org/057ts1y80 Islamic University of Gaza الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ŲŗŲ²Ų©'),
(109420, 'https://ror.org/057z98j75', 'en', 1, 'https://ror.org/057z98j75 NatCen Social Research'),
(109421, 'https://ror.org/0581dw191', 'en', 0, 'https://ror.org/0581dw191 Civil Aeronautics Authority'),
(109422, 'https://ror.org/0581k0452', 'en', 1, 'https://ror.org/0581k0452 Wheaton College - Illinois'),
(109423, 'https://ror.org/0581yrz56', 'de', 1, 'https://ror.org/0581yrz56 Virtuelle Hochschule Bayern'),
(109424, 'https://ror.org/0582kjx49', 'en', 1, 'https://ror.org/0582kjx49 T. G. Masaryk Water Research Institute'),
(109425, 'https://ror.org/0583bza14', 'en', 1, 'https://ror.org/0583bza14 Matsuoka Research Institute for Science äø€čˆ¬č²”å›£ę³•äŗŗę¾å²”ē§‘å­¦ē ”ē©¶ę‰€'),
(109426, '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'),
(109427, 'https://ror.org/0583wsb64', 'en', 1, 'https://ror.org/0583wsb64 Minneapolis College'),
(109428, 'https://ror.org/0584m4844', 'en', 1, 'https://ror.org/0584m4844 U.S. Air Force Research Laboratory Materials and Manufacturing Directorate'),
(109429, 'https://ror.org/0586h1368', 'en', 1, 'https://ror.org/0586h1368 The Korea Academia-Industrial Cooperation Society ķ•œźµ­ģ‚°ķ•™źø°ģˆ ķ•™ķšŒ'),
(109430, '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'),
(109431, 'https://ror.org/058b16x44', 'en', 1, 'https://ror.org/058b16x44 Universitatea din Pitești University of Pitesti'),
(109432, 'https://ror.org/058c33149', 'en', 1, 'https://ror.org/058c33149 Minamiosaka Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę™Æå²³ä¼šå—å¤§é˜Ŗē—…é™¢'),
(109433, 'https://ror.org/058cjye32', 'es', 1, 'https://ror.org/058cjye32 Universidad de Guanajuato University of Guanajuato'),
(109434, 'https://ror.org/058cmd703', 'en', 1, 'https://ror.org/058cmd703 Joint Global Change Research Institute'),
(109435, 'https://ror.org/058j0b191', 'en', 1, 'https://ror.org/058j0b191 Hyogo Prefectural Technology Center for Agriculture, Forestry and Fisheries å…µåŗ«ēœŒē«‹č¾²ęž—ę°“ē”£ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(109436, 'https://ror.org/058jm1724', 'id', 1, 'https://ror.org/058jm1724 Politeknik Kesehatan Kementerian Kesehatan Jakarta II'),
(109437, 'https://ror.org/058kvs153', 'en', 1, 'https://ror.org/058kvs153 University of Agricultural and Horticultural Sciences ą²Æą³‚ą²Øą²æą²µą²°ą³ą²øą²æą²Ÿą²æ ą²†ą²«ą³ ą²…ą²—ą³ą²°ą²æą²•ą²²ą³ą²šą²°ą²²ą³ ą²…ą²‚ą²”ą³ ą²¹ą²¾ą²°ą³ą²Ÿą²æą²•ą²²ą³ą²šą²°ą³ ą²øą³ˆą²Øą³ą²øą²øą³ - ą²øą³€ą²”ą³ ą²Æą³‚ą²Øą²æą²Ÿą³'),
(109438, 'https://ror.org/058na1954', 'id', 1, 'https://ror.org/058na1954 Universitas Kanjuruhan'),
(109439, 'https://ror.org/058nncw69', 'en', 1, 'https://ror.org/058nncw69 TIB Open Publishing'),
(109440, 'https://ror.org/058p87c41', 'en', 1, 'https://ror.org/058p87c41 South Ethiopia Regional State Health Bureau'),
(109441, 'https://ror.org/058q1cn43', 'en', 1, 'https://ror.org/058q1cn43 Goce Delcev University Универзитет Гоце Делчев Штип'),
(109442, 'https://ror.org/058q57q63', 'en', 1, 'https://ror.org/058q57q63 University College South Denmark University College Syddanmark'),
(109443, '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'),
(109444, 'https://ror.org/058s1vf87', 'en', 1, 'https://ror.org/058s1vf87 Beijing International Studies University åŒ—äŗ¬ē¬¬äŗŒå¤–å›½čÆ­å­¦é™¢'),
(109445, 'https://ror.org/058w5nk68', 'en', 1, 'https://ror.org/058w5nk68 Union College'),
(109446, 'https://ror.org/059076v18', 'en', 1, 'https://ror.org/059076v18 Liceo de Cagayan University'),
(109447, 'https://ror.org/0590pq693', 'en', 1, 'https://ror.org/0590pq693 Vilniaus universiteto ligoninės SantariÅ”kių klinikos Vilnius University Hospital Santariskiu Klinikos'),
(109448, 'https://ror.org/05987a729', 'en', 1, 'https://ror.org/05987a729 Tashkent University of Information Technology Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Университет Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Ń‹Ń… Технологий'),
(109449, 'https://ror.org/05999hj24', 'en', 1, 'https://ror.org/05999hj24 Kumamoto Kinoh Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£åÆæé‡ä¼šē†Šęœ¬ę©Ÿčƒ½ē—…é™¢'),
(109450, 'https://ror.org/059a9qt60', 'en', 1, 'https://ror.org/059a9qt60 Bilborough Sixth Form College'),
(109451, 'https://ror.org/059cm9r27', 'en', 1, 'https://ror.org/059cm9r27 Biology as a Solution, Biology as a Solution (France)'),
(109452, 'https://ror.org/059czkb40', 'en', 1, 'https://ror.org/059czkb40 The Japanese Society for Artificial Intelligence äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗŗå·„ēŸ„čƒ½å­¦ä¼š'),
(109453, 'https://ror.org/059hgec16', 'en', 1, 'https://ror.org/059hgec16 Osaka Management Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗčƒ½ēŽ‡å”ä¼š'),
(109454, 'https://ror.org/059hhvg49', 'en', 1, 'https://ror.org/059hhvg49 Arden University'),
(109455, 'https://ror.org/059kpn068', 'en', 1, 'https://ror.org/059kpn068 Policy Research Institute for Land Infrastructure and Transport å›½åœŸäŗ¤é€šēœå›½åœŸäŗ¤é€šę”æē­–ē ”ē©¶ę‰€'),
(109456, 'https://ror.org/059me1x50', 'en', 1, 'https://ror.org/059me1x50 Institute of Infrastructure Technology Research and Management'),
(109457, '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'),
(109458, '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'),
(109459, 'https://ror.org/059r0wf81', 'en', 1, 'https://ror.org/059r0wf81 Aidu Chuo Hospital äø€čˆ¬č²”å›£ę³•äŗŗęø©ēŸ„ä¼šä¼šę“„äø­å¤®ē—…é™¢'),
(109460, 'https://ror.org/059r3nh67', 'en', 1, 'https://ror.org/059r3nh67 Fondazione LINKS LINKS Foundation'),
(109461, 'https://ror.org/059r6em50', 'en', 1, 'https://ror.org/059r6em50 Gihu Prefecture Research Institute for Human Life Technology å²é˜œēœŒē”Ÿę“»ęŠ€č”“ē ”ē©¶ę‰€'),
(109462, 'https://ror.org/059vb7y44', 'en', 1, 'https://ror.org/059vb7y44 Nanpuh Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗé¹æå…å³¶å…±ęøˆä¼šå—é¢Øē—…é™¢'),
(109463, 'https://ror.org/059xgrv47', 'no_lang_code', 1, 'https://ror.org/059xgrv47 Uka Tarsadia University'),
(109464, 'https://ror.org/059yk7s89', 'no_lang_code', 1, 'https://ror.org/059yk7s89 Haramaya University įˆįˆØįˆ›į‹« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(109465, 'https://ror.org/059yx9a68', 'es', 1, 'https://ror.org/059yx9a68 National University of Colombia Universidad Nacional de Colombia'),
(109466, 'https://ror.org/05a04tz09', 'en', 1, 'https://ror.org/05a04tz09 Tottori Prefectural Police é³„å–ēœŒč­¦åÆŸ'),
(109467, 'https://ror.org/05a1dws80', 'fr', 1, 'https://ror.org/05a1dws80 Mines Saint-Ɖtienne, Ɖcole Nationale SupĆ©rieure des Mines de Saint-Ɖtienne'),
(109468, 'https://ror.org/05aashz48', 'en', 1, 'https://ror.org/05aashz48 U.S. Air Force Research Laboratory Space Vehicles Directorate'),
(109469, 'https://ror.org/05aba1p21', 'en', 1, 'https://ror.org/05aba1p21 St. Aloysius (Deemed to Be University)'),
(109470, 'https://ror.org/05ac26z88', 'en', 1, 'https://ror.org/05ac26z88 Oberlin College'),
(109471, 'https://ror.org/05ad39p10', 'en', 1, 'https://ror.org/05ad39p10 Ishikawa Prefectural Institute of Public Health and Environmental Science ēŸ³å·ēœŒäæå„ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(109472, 'https://ror.org/05adhha17', 'en', 1, 'https://ror.org/05adhha17 Tai Solarin University of Education'),
(109473, 'https://ror.org/05aevyc10', 'en', 1, 'https://ror.org/05aevyc10 Okayama University of Science 岔山理科大学'),
(109474, 'https://ror.org/05ag2wm68', 'pt', 1, 'https://ror.org/05ag2wm68 CĆ¢mara Municipal de Coimbra'),
(109475, 'https://ror.org/05ag62t55', 'de', 1, 'https://ror.org/05ag62t55 Institut für Höhere Studien - Institute for Advanced Studies (IHS)'),
(109476, 'https://ror.org/05ajnv358', 'en', 1, 'https://ror.org/05ajnv358 Karnatak University ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(109477, 'https://ror.org/05ajree11', 'en', 1, 'https://ror.org/05ajree11 Kohka Public Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå…¬ē«‹ē”²č³€ē—…é™¢'),
(109478, 'https://ror.org/05akhmy90', 'en', 1, 'https://ror.org/05akhmy90 Huangshan University 黄山学院'),
(109479, 'https://ror.org/05am9gt90', 'de', 1, 'https://ror.org/05am9gt90 Deutsche Rentenversicherung Bund'),
(109480, 'https://ror.org/05amt1h64', 'en', 1, 'https://ror.org/05amt1h64 Electron Science Institute äø€čˆ¬č²”å›£ę³•äŗŗé›»å­ē§‘å­¦ē ”ē©¶ę‰€'),
(109481, 'https://ror.org/05an9fc88', 'en', 1, 'https://ror.org/05an9fc88 Kyoto Prefectural International Center å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½åŗœå›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(109482, 'https://ror.org/05aqahr97', 'en', 1, 'https://ror.org/05aqahr97 Shiv Nadar University'),
(109483, 'https://ror.org/05aqg9159', 'en', 1, 'https://ror.org/05aqg9159 Japan Association on Odor Environment å…¬ē›Šē¤¾å›£ę³•äŗŗć«ćŠć„ćƒ»ć‹ćŠć‚Šē’°å¢ƒå”ä¼š'),
(109484, 'https://ror.org/05aqxs106', 'en', 1, 'https://ror.org/05aqxs106 Hyogo Environmental Advancement Association å…¬ē›Šč²”å›£ę³•äŗŗć²ć‚‡ć†ć”ē’°å¢ƒå‰µé€ å”ä¼š'),
(109485, '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 Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Иона ŠšŃ€ŃŠ½Š³Ń'),
(109486, 'https://ror.org/05ar8rn06', 'en', 1, 'https://ror.org/05ar8rn06 Guangzhou University å¹æå·žå¤§å­¦'),
(109487, 'https://ror.org/05as1na60', 'en', 1, 'https://ror.org/05as1na60 North Island College'),
(109488, 'https://ror.org/05av6y173', 'tr', 1, 'https://ror.org/05av6y173 Istanbul Rumeli University TC İstanbul Rumeli Üniversitesi'),
(109489, 'https://ror.org/05axv8155', 'en', 1, 'https://ror.org/05axv8155 Whitman College'),
(109490, 'https://ror.org/05ayjgf78', 'en', 1, 'https://ror.org/05ayjgf78 Wakayama Prefectural Agricultural Experiment Station å’Œę­Œå±±ēœŒč¾²ę„­č©¦éØ“å “'),
(109491, 'https://ror.org/05ayv2203', 'en', 1, 'https://ror.org/05ayv2203 International AIDS Vaccine Initiative'),
(109492, 'https://ror.org/05az4r222', 'pt', 1, 'https://ror.org/05az4r222 Centro UniversitƔrio Integrado'),
(109493, 'https://ror.org/05azws991', 'en', 1, 'https://ror.org/05azws991 Komar University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© ŁƒŁˆŁ…Ų§Ų± Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(109494, 'https://ror.org/05b08sa84', 'en', 1, 'https://ror.org/05b08sa84 Niigata Prefectural Forest Experiment Station ę–°ę½ŸēœŒę£®ęž—ē ”ē©¶ę‰€'),
(109495, 'https://ror.org/05b1kx621', 'en', 1, 'https://ror.org/05b1kx621 Akita Prefectural University ē§‹ē”°ēœŒē«‹å¤§å­¦'),
(109496, 'https://ror.org/05b307002', 'ms', 1, 'https://ror.org/05b307002 Universiti Malaysia Sarawak University of Malaysia, Sarawak'),
(109497, 'https://ror.org/05b4za178', 'id', 1, 'https://ror.org/05b4za178 Universitas Pembangunan Nasional Veteran Jakarta'),
(109498, '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'),
(109499, 'https://ror.org/05b5x4a35', 'en', 1, 'https://ror.org/05b5x4a35 Lahore University of Management Sciences Ł„Ų§ŪŁˆŲ± ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŁ†Ų¬Ł…Ł†Ł¹ سائنسز'),
(109500, 'https://ror.org/05baafc90', 'en', 1, 'https://ror.org/05baafc90 Hokusho College åŒ—ēæ”å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(109501, 'https://ror.org/05baqgp89', 'id', 1, 'https://ror.org/05baqgp89 Universitas Islam Makassar'),
(109502, 'https://ror.org/05bbbc791', 'en', 1, 'https://ror.org/05bbbc791 University of Karachi جامعہ Ś©Ų±Ų§Ś†ŪŒ'),
(109503, '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'),
(109504, 'https://ror.org/05bd7c383', 'en', 1, 'https://ror.org/05bd7c383 St. Anna Children''s Cancer Research Institute St. Anna Kinderkrebsforschung GmbH'),
(109505, 'https://ror.org/05bdn4a17', 'pt', 1, 'https://ror.org/05bdn4a17 Comando das ForƧas Terrestres'),
(109506, 'https://ror.org/05bevt606', 'en', 1, 'https://ror.org/05bevt606 Shin-Oyama City Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę–°å°å±±åø‚ę°‘ē—…é™¢'),
(109507, 'https://ror.org/05bfveq94', 'en', 1, 'https://ror.org/05bfveq94 Fukuoka Nursing College ē¦å²”ēœ‹č­·å¤§å­¦'),
(109508, 'https://ror.org/05bgs3h91', 'en', 1, 'https://ror.org/05bgs3h91 MiCAN Technologies Inc., MiCAN Technologies Inc. (Japan) ćƒžć‚¤ć‚­ćƒ£ćƒ³ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(109509, 'https://ror.org/05bh0zx16', 'en', 1, 'https://ror.org/05bh0zx16 Fasa University of Medical Sciences'),
(109510, 'https://ror.org/05bhada84', 'en', 1, 'https://ror.org/05bhada84 Nara Institute of Science and Technology å„ˆč‰Æå…ˆē«Æē§‘å­¦ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(109511, 'https://ror.org/05bk57929', 'en', 1, 'https://ror.org/05bk57929 Stellenbosch University Universiteit Stellenbosch'),
(109512, 'https://ror.org/05bkmfm96', 'en', 1, 'https://ror.org/05bkmfm96 Minhaj University Lahore منہاج ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(109513, 'https://ror.org/05bpbnx46', 'en', 1, 'https://ror.org/05bpbnx46 Copenhagen University Hospital KĆøbenhavns Universitetshospital'),
(109514, 'https://ror.org/05bpgjr24', 'en', 0, 'https://ror.org/05bpgjr24 Rissho Kosei-kai Hospital ē«‹ę­£ä½¼ęˆä¼šé™„å±žä½¼ęˆē—…é™¢'),
(109515, 'https://ror.org/05bq6ng76', 'en', 1, 'https://ror.org/05bq6ng76 Krida Wacana Christian University Universitas Kristen Krida Wacana'),
(109516, 'https://ror.org/05bt52s63', 'en', 1, 'https://ror.org/05bt52s63 Fukui Science Education Academy NPOę³•äŗŗćµćć„ē§‘å­¦å­¦åœ’'),
(109517, 'https://ror.org/05bwaty49', 'en', 1, 'https://ror.org/05bwaty49 Kingston Health Sciences Centre'),
(109518, 'https://ror.org/05bxaer12', 'en', 1, 'https://ror.org/05bxaer12 West College Scotland'),
(109519, 'https://ror.org/05byh2e17', 'en', 1, 'https://ror.org/05byh2e17 Earth University Universidad EARTH'),
(109520, 'https://ror.org/05c0k5d98', 'en', 1, 'https://ror.org/05c0k5d98 Danish Cardiovascular Academy'),
(109521, 'https://ror.org/05c1b0t46', 'en', 1, 'https://ror.org/05c1b0t46 Fukui Health Sciences University ē¦äŗ•åŒ»ē™‚å¤§å­¦'),
(109522, 'https://ror.org/05c1b7t53', 'en', 1, 'https://ror.org/05c1b7t53 Mahrah University Ų¬Ų§Ł…Ų¹Ų© المهرة'),
(109523, 'https://ror.org/05c22rx21', 'en', 1, 'https://ror.org/05c22rx21 Mila - Institut quĆ©bĆ©cois d’intelligence artificielle Mila - Quebec Artificial Intelligence Institute'),
(109524, 'https://ror.org/05c2wqt85', 'en', 0, 'https://ror.org/05c2wqt85 Gifu Junior College of Health Science å²é˜œäæå„å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(109525, 'https://ror.org/05c347015', 'en', 1, 'https://ror.org/05c347015 Irish Research eLibrary'),
(109526, 'https://ror.org/05c42js38', 'en', 1, 'https://ror.org/05c42js38 Engaru-Kosei General Hospital JAåŒ—ęµ·é“åŽšē”Ÿé€£é č»½åŽšē”Ÿē—…é™¢'),
(109527, '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'),
(109528, 'https://ror.org/05c6s8n11', 'en', 1, 'https://ror.org/05c6s8n11 Kyoto Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½åŗœēœ‹č­·å”ä¼š'),
(109529, 'https://ror.org/05c99rg80', 'es', 1, 'https://ror.org/05c99rg80 Universidad La Salle'),
(109530, 'https://ror.org/05cd29s30', 'en', 1, 'https://ror.org/05cd29s30 Gifu Prefectural Government 岐阜県庁'),
(109531, 'https://ror.org/05ckyqt97', 'fr', 1, 'https://ror.org/05ckyqt97 UniversitƩ de ain TƩmouchent'),
(109532, 'https://ror.org/05cn2wc35', 'id', 1, 'https://ror.org/05cn2wc35 Universitas Muhammadiyah Surabaya'),
(109533, 'https://ror.org/05cpcfk84', 'en', 1, 'https://ror.org/05cpcfk84 Hirosaki University of Health and Welfare å¼˜å‰åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(109534, 'https://ror.org/05cr10x86', 'en', 1, 'https://ror.org/05cr10x86 West Herts College'),
(109535, 'https://ror.org/05crh3591', 'en', 1, 'https://ror.org/05crh3591 Osaka International College å¤§é˜Ŗå›½éš›å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(109536, 'https://ror.org/05cxx5e41', 'en', 1, 'https://ror.org/05cxx5e41 RENA Technologies Austria GmbH, RENA Technologies Austria GmbH (Austria)'),
(109537, 'https://ror.org/05cyprz33', 'en', 1, 'https://ror.org/05cyprz33 University of Mauritius UniversitƩ de Maurice'),
(109538, 'https://ror.org/05cz8qw35', 'en', 1, 'https://ror.org/05cz8qw35 MSD (Thailand)'),
(109539, 'https://ror.org/05cz92x43', 'en', 1, 'https://ror.org/05cz92x43 Texas Children''s Hospital'),
(109540, 'https://ror.org/05czpjv93', 'en', 1, 'https://ror.org/05czpjv93 Hekima University College'),
(109541, 'https://ror.org/05d09wf68', 'en', 1, 'https://ror.org/05d09wf68 Agricultural Biotechnology Research Institute of Iran'),
(109542, 'https://ror.org/05d0b7d20', 'no_lang_code', 1, 'https://ror.org/05d0b7d20 Sripatum University ดหาวณทยาคัยศรีปทุด'),
(109543, 'https://ror.org/05d2kyx68', 'en', 1, 'https://ror.org/05d2kyx68 HÔskólinn í Reykjavík Reykjavík University'),
(109544, 'https://ror.org/05d3apa77', 'pt', 1, 'https://ror.org/05d3apa77 Hospital de Sant''Ana'),
(109545, 'https://ror.org/05d58ss79', 'no_lang_code', 1, 'https://ror.org/05d58ss79 Aptara (United States)'),
(109546, 'https://ror.org/05d5m0x38', 'en', 1, 'https://ror.org/05d5m0x38 Pharmaceutical Incubators مرکز Ų±Ų“ŲÆ ŁŲ±Ų¢ŁˆŲ±ŲÆŁ‡ Ł‡Ų§ŪŒ دارویی'),
(109547, 'https://ror.org/05d5mza29', 'en', 1, 'https://ror.org/05d5mza29 Center for Open Science'),
(109548, 'https://ror.org/05d627n32', 'en', 1, 'https://ror.org/05d627n32 Research Institute of Forests and Rangelands Ł…ŁˆŲ³Ų³Ł‡ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ جنگلها و Ł…Ų±Ų§ŲŖŲ¹ کؓور'),
(109549, 'https://ror.org/05da84g64', 'en', 1, 'https://ror.org/05da84g64 SOUSEIKAI Hakata Clinic åŒ»ē™‚ę³•äŗŗē›øē”Ÿä¼šåšå¤šć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(109550, 'https://ror.org/05dbskv62', 'en', 1, 'https://ror.org/05dbskv62 PL Hospital åŒ»ē™‚ę³•äŗŗå®ē”Ÿä¼šPL病院'),
(109551, 'https://ror.org/05dcna836', 'en', 1, 'https://ror.org/05dcna836 The Acoustical Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬éŸ³éŸæå­¦ä¼š'),
(109552, 'https://ror.org/05deqk823', 'fr', 1, 'https://ror.org/05deqk823 Laboratoire d''Etude des Interactions entre Sol-AgrosystĆØme-HydrosystĆØme'),
(109553, 'https://ror.org/05dhcxc25', 'en', 1, 'https://ror.org/05dhcxc25 Highway Technology Research Center äø€čˆ¬č²”å›£ę³•äŗŗé¦–éƒ½é«˜é€Ÿé“č·ÆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(109554, 'https://ror.org/05dhe8b71', 'en', 1, 'https://ror.org/05dhe8b71 British Library Llyfrgell Brydeinig'),
(109555, 'https://ror.org/05dm6rc87', 'en', 1, 'https://ror.org/05dm6rc87 Esan University Universidad ESAN'),
(109556, 'https://ror.org/05dmhhd41', 'en', 1, 'https://ror.org/05dmhhd41 Jilin Agricultural University å‰ęž—å†œäøšå¤§å­¦'),
(109557, 'https://ror.org/05dmpgb12', 'es', 1, 'https://ror.org/05dmpgb12 Centro Mexicano para la Producción mÔs Limpia'),
(109558, 'https://ror.org/05dnvsb41', 'en', 1, 'https://ror.org/05dnvsb41 Chemical Materials Evaluation and Research Base ę¬”äø–ä»£åŒ–å­¦ęę–™č©•ä¾”ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(109559, 'https://ror.org/05dpv4c71', 'en', 1, 'https://ror.org/05dpv4c71 AMET University ą®…ą®®ąÆ†ą®ŸąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(109560, 'https://ror.org/05dq6d565', 'pt', 1, 'https://ror.org/05dq6d565 Universidade de Lisboa Centro de Estudos Anglisticos'),
(109561, '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'),
(109562, 'https://ror.org/05drmrq39', 'en', 1, 'https://ror.org/05drmrq39 Tennessee Technological University'),
(109563, 'https://ror.org/05ds4px46', 'en', 1, 'https://ror.org/05ds4px46 Ibaraki Prefectural Forestry Research Institute čŒØåŸŽēœŒęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(109564, 'https://ror.org/05dwp6855', 'en', 1, 'https://ror.org/05dwp6855 College of the Holy Cross'),
(109565, 'https://ror.org/05dx9nr48', 'pt', 1, 'https://ror.org/05dx9nr48 Centro de Filosofia'),
(109566, 'https://ror.org/05dxn4584', 'es', 1, 'https://ror.org/05dxn4584 Autonomous University of Peru Universidad Autónoma del Perú'),
(109567, 'https://ror.org/05dxzqa20', 'no_lang_code', 1, 'https://ror.org/05dxzqa20 Avinashilingam University ą®…ą®µą®æą®Øą®¾ą®šą®æą®²ą®æą®™ąÆą®•ą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(109568, 'https://ror.org/05e1vv336', 'en', 1, 'https://ror.org/05e1vv336 The Japanese Association for Chest Surgery ę—„ęœ¬å‘¼åøå™Øå¤–ē§‘å­¦ä¼š'),
(109569, 'https://ror.org/05e48s567', 'en', 0, 'https://ror.org/05e48s567 The Medical and Pharmacological Research Center Foundation äø€čˆ¬č²”å›£ę³•äŗŗå…ˆē«ÆåŒ»å­¦č–¬å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(109570, 'https://ror.org/05e571q11', 'en', 1, 'https://ror.org/05e571q11 Ikuei University 育英大学'),
(109571, 'https://ror.org/05e715194', 'en', 1, 'https://ror.org/05e715194 Institute of Molecular and Clinical Ophthalmology Basel'),
(109572, 'https://ror.org/05e74xb87', 'en', 1, 'https://ror.org/05e74xb87 New Jersey Institute of Technology'),
(109573, 'https://ror.org/05e94g991', 'en', 1, 'https://ror.org/05e94g991 Universidad de Illinois University of Illinois System UniversitƩ de l''illinois'),
(109574, 'https://ror.org/05e9bn444', 'en', 1, 'https://ror.org/05e9bn444 Institute of Mathematical Sciences Instituto de Ciencias MatemƔticas'),
(109575, 'https://ror.org/05e9q5230', 'en', 1, 'https://ror.org/05e9q5230 Tokyo Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½åŒ»åø«ä¼š'),
(109576, 'https://ror.org/05ebds523', 'en', 1, 'https://ror.org/05ebds523 Japan Antibiotics Research Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę„ŸęŸ“ē—‡åŒ»č–¬å“å”ä¼š'),
(109577, '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'),
(109578, 'https://ror.org/05ecg5h20', 'en', 1, 'https://ror.org/05ecg5h20 Universitetet i SĆørĆøst-Norge University of South-Eastern Norway'),
(109579, 'https://ror.org/05ed7ae91', 'en', 1, 'https://ror.org/05ed7ae91 Public Works Research Center äø€čˆ¬č²”å›£ę³•äŗŗåœŸęœØē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(109580, 'https://ror.org/05edayg07', 'fr', 1, 'https://ror.org/05edayg07 FƩdƩration de Physico-Chimie Analytique et Biologique'),
(109581, 'https://ror.org/05edw4a90', 'en', 1, 'https://ror.org/05edw4a90 Najran University Ų¬Ų§Ł…Ų¹Ų© نجران'),
(109582, 'https://ror.org/05eer5n81', 'no_lang_code', 1, 'https://ror.org/05eer5n81 Wiss Janney Elstner Associates'),
(109583, 'https://ror.org/05ekg7w76', 'en', 1, 'https://ror.org/05ekg7w76 Poltekkes Kemenkes Aceh'),
(109584, 'https://ror.org/05em8ne27', 'fr', 1, 'https://ror.org/05em8ne27 Bureau d''Economie ThƩorique et AppliquƩe Bureau for Economic Theory and Applications'),
(109585, 'https://ror.org/05emabm63', 'en', 1, 'https://ror.org/05emabm63 University Hospital Ulm UniversitƤtsklinikum Ulm'),
(109586, 'https://ror.org/05enmgs39', 'en', 1, 'https://ror.org/05enmgs39 West Bengal National University of Juridical Sciences ą¤Ŗą¤¶ą„ą¤šą¤æą¤® बंगाल ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Øą„ą¤Æą¤¾ą¤Æą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦†ą¦‡ą¦Øą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(109587, 'https://ror.org/05epddd96', 'en', 1, 'https://ror.org/05epddd96 House of Councillors, the National Diet of Japan å‚č­°é™¢'),
(109588, 'https://ror.org/05eq9h938', 'id', 1, 'https://ror.org/05eq9h938 Mahkamah Agung Republik Indonesia Supreme Court of the Republic of Indonesia'),
(109589, 'https://ror.org/05erkh051', 'en', 1, 'https://ror.org/05erkh051 Ibaraki Prefectural Government čŒØåŸŽēœŒåŗ'),
(109590, 'https://ror.org/05esnc164', 'en', 1, 'https://ror.org/05esnc164 Ivey Business School'),
(109591, 'https://ror.org/05et28770', 'pt', 1, 'https://ror.org/05et28770 Comissão Nacional de Eleições'),
(109592, 'https://ror.org/05etrbr47', 'it', 1, 'https://ror.org/05etrbr47 Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Siena'),
(109593, 'https://ror.org/05etvh706', 'en', 1, 'https://ror.org/05etvh706 Kuwait International Law School ŁƒŁ„ŁŠŲ© Ų§Ł„Ł‚Ų§Ł†ŁˆŁ† Ų§Ł„ŁƒŁˆŁŠŲŖŁŠŲ© Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(109594, 'https://ror.org/05ev1jb90', 'en', 1, 'https://ror.org/05ev1jb90 Tianjin University of Finance and Economics å¤©ę“„č“¢ē»å¤§å­¦'),
(109595, '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'),
(109596, 'https://ror.org/05evsxq57', 'en', 1, 'https://ror.org/05evsxq57 Chiba Industry Advancement Center å…¬ē›Šč²”å›£ę³•äŗŗåƒč‘‰ēœŒē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(109597, 'https://ror.org/05exn8n22', 'en', 1, 'https://ror.org/05exn8n22 Association for Disaster Prevention Research äø€čˆ¬č²”å›£ę³•äŗŗé˜²ē½ē ”ē©¶å”ä¼š'),
(109598, 'https://ror.org/05ey7mm31', 'en', 1, 'https://ror.org/05ey7mm31 Vaal University of Technology'),
(109599, 'https://ror.org/05eya0167', 'en', 1, 'https://ror.org/05eya0167 Ishikawa Prefectural Government ēŸ³å·ēœŒåŗ'),
(109600, 'https://ror.org/05eyrmk93', 'en', 1, 'https://ror.org/05eyrmk93 Machakos University'),
(109601, 'https://ror.org/05f3azh29', 'es', 1, 'https://ror.org/05f3azh29 Instituto Tecnologico de Nuevo Laredo'),
(109602, 'https://ror.org/05f5sjd34', 'pt', 1, 'https://ror.org/05f5sjd34 Centro de Estudos e Investigação em Direito'),
(109603, 'https://ror.org/05f71q776', 'en', 1, 'https://ror.org/05f71q776 K J Somaiya Medical College'),
(109604, 'https://ror.org/05f8ce979', 'en', 1, 'https://ror.org/05f8ce979 Ukrainian State University of Railway Transport ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ залізничного Ń‚Ń€Š°Š½ŃŠæŠ¾Ń€Ń‚Ńƒ'),
(109605, 'https://ror.org/05fc1hn07', 'fr', 1, 'https://ror.org/05fc1hn07 Laboratoire Techniques, Territoires et SociƩtƩs'),
(109606, 'https://ror.org/05fdt2q64', 'en', 1, 'https://ror.org/05fdt2q64 NLA University College'),
(109607, 'https://ror.org/05fdt6816', 'fr', 1, 'https://ror.org/05fdt6816 Obvia'),
(109608, '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'),
(109609, 'https://ror.org/05ffmnp02', 'en', 1, 'https://ror.org/05ffmnp02 Russian State Library Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń библиотека'),
(109610, 'https://ror.org/05fj29j73', 'es', 1, 'https://ror.org/05fj29j73 Universidad de Las Tunas'),
(109611, 'https://ror.org/05fkc6595', 'en', 1, 'https://ror.org/05fkc6595 Ogaki Tokushukai Hospital åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šå¤§åž£å¾³ę“²ä¼šē—…é™¢'),
(109612, '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'),
(109613, 'https://ror.org/05fnp1145', 'en', 1, 'https://ror.org/05fnp1145 Al-Azhar University'),
(109614, 'https://ror.org/05fq50484', 'en', 1, 'https://ror.org/05fq50484 UniversitƩ York York University'),
(109615, 'https://ror.org/05fr5y859', 'en', 1, 'https://ror.org/05fr5y859 University of Biskra Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ خيضر بسكرة'),
(109616, 'https://ror.org/05frye867', 'fr', 1, 'https://ror.org/05frye867 Ɖcole des Hautes Ɖtudes Commerciales'),
(109617, 'https://ror.org/05fryw881', 'en', 1, 'https://ror.org/05fryw881 Universitas Negeri Yogyakarta Yogyakarta State University'),
(109618, 'https://ror.org/05fsqrn62', 'en', 1, 'https://ror.org/05fsqrn62 Kagawa Prefectural Government é¦™å·ēœŒåŗ'),
(109619, 'https://ror.org/05ft4db12', 'pt', 1, 'https://ror.org/05ft4db12 Colaboratório para as Geociências'),
(109620, 'https://ror.org/05fv90q80', 'it', 1, 'https://ror.org/05fv90q80 Comune di Venezia'),
(109621, 'https://ror.org/05fw3jg78', 'de', 1, 'https://ror.org/05fw3jg78 University Psychiatric Clinics Basel UniversitƤre Psychiatrische Kliniken Basel'),
(109622, 'https://ror.org/05fzhrv79', 'en', 1, 'https://ror.org/05fzhrv79 Lupane State University'),
(109623, 'https://ror.org/05g023586', 'en', 1, 'https://ror.org/05g023586 Vassar Brothers Medical Center'),
(109624, 'https://ror.org/05g02g987', 'en', 1, 'https://ror.org/05g02g987 Diabetes Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ دیابت'),
(109625, 'https://ror.org/05g1rjn35', 'en', 1, 'https://ror.org/05g1rjn35 La Sierra University Universidad de La Sierra'),
(109626, 'https://ror.org/05g2swp31', 'en', 1, 'https://ror.org/05g2swp31 Institut national du design National Institute of Design ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤”ą¤æą¤œą¤¾ą¤‡ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®¤ąÆ‡ą®šą®æą®Æ ą®µą®Ÿą®æą®µą®®ąÆˆą®ŖąÆą®ŖąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(109627, 'https://ror.org/05g3mes96', 'en', 1, 'https://ror.org/05g3mes96 Latvijas Universitāte Latvijos universitetas University of Latvia Латвийский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(109628, 'https://ror.org/05g6ct380', 'en', 1, 'https://ror.org/05g6ct380 Iwate Prefectural Government å²©ę‰‹ēœŒåŗ'),
(109629, 'https://ror.org/05g70ef90', 'pt', 1, 'https://ror.org/05g70ef90 Centro de Estudos e Formação Avançada em Gestão e Economia'),
(109630, 'https://ror.org/05gaf6s15', 'pt', 1, 'https://ror.org/05gaf6s15 Escola das Armas'),
(109631, 'https://ror.org/05gc63392', 'ro', 1, 'https://ror.org/05gc63392 Academia de Politie Alexandru Ioan Cuza'),
(109632, 'https://ror.org/05gdfay69', 'en', 0, 'https://ror.org/05gdfay69 Portsmouth College'),
(109633, 'https://ror.org/05gefd119', 'pt', 1, 'https://ror.org/05gefd119 Feevale University Universidade Feevale'),
(109634, 'https://ror.org/05ger6s34', 'en', 1, 'https://ror.org/05ger6s34 Universiteti "Ismail Qemali" Vlorƫ University of Vlora "Ismail Qemali"'),
(109635, 'https://ror.org/05gf6be35', 'en', 1, 'https://ror.org/05gf6be35 Japan Prosthodontic Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č£œē¶“ę­Æē§‘å­¦ä¼š'),
(109636, 'https://ror.org/05gfjrx96', 'en', 1, 'https://ror.org/05gfjrx96 Indian Institute of Management Lucknow'),
(109637, 'https://ror.org/05ggagb37', 'en', 1, 'https://ror.org/05ggagb37 Samara National Research University Дамарский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика Š”. П. ŠšŠ¾Ń€Š¾Š»Ń‘Š²Š°'),
(109638, 'https://ror.org/05ggc9x40', 'fr', 1, 'https://ror.org/05ggc9x40 Paris-Est CrƩteil University UniversitƩ Paris-Est CrƩteil'),
(109639, 'https://ror.org/05ggcve06', 'en', 1, 'https://ror.org/05ggcve06 Eikei University Of Hiroshima 叔啓大学'),
(109640, 'https://ror.org/05ghahk68', 'en', 1, 'https://ror.org/05ghahk68 Madurai Medical College மதுரை ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(109641, 'https://ror.org/05gqaka33', 'en', 1, 'https://ror.org/05gqaka33 Martin Luther University Halle-Wittenberg Martin-Luther-UniversitƤt Halle-Wittenberg'),
(109642, 'https://ror.org/05gqg4y53', 'en', 1, 'https://ror.org/05gqg4y53 Agharkar Research Institute'),
(109643, 'https://ror.org/05gs3fb07', 'en', 1, 'https://ror.org/05gs3fb07 Aarhus School of Architecture Arkitektskolen Aarhus'),
(109644, 'https://ror.org/05gs8cd61', 'en', 1, 'https://ror.org/05gs8cd61 Paris-Lodron-UniversitƤt Salzburg University of Salzburg'),
(109645, 'https://ror.org/05gsbkp40', 'en', 1, 'https://ror.org/05gsbkp40 Cancer Council NSW'),
(109646, 'https://ror.org/05gvn0b94', 'pt', 1, 'https://ror.org/05gvn0b94 Faculdade Municipal de PalhoƧa'),
(109647, 'https://ror.org/05gvnxz63', 'en', 1, 'https://ror.org/05gvnxz63 Argonne National Laboratory Laboratorio Nacional Argonne'),
(109648, 'https://ror.org/05gw0md72', 'en', 1, 'https://ror.org/05gw0md72 Saga Prefectural Ariake Fisheries Research and Development Center ä½č³€ēœŒęœ‰ę˜Žę°“ē”£ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(109649, 'https://ror.org/05gwtvp11', 'no_lang_code', 1, 'https://ror.org/05gwtvp11 Nuclear Research Institute Rez (Czechia)'),
(109650, 'https://ror.org/05h1fqt10', 'en', 1, 'https://ror.org/05h1fqt10 University of Fujairah'),
(109651, 'https://ror.org/05h39qc65', 'en', 1, 'https://ror.org/05h39qc65 African Library and Information Associations and Institutions'),
(109652, 'https://ror.org/05h3pkk68', 'en', 1, 'https://ror.org/05h3pkk68 Hebei University of Science and Technology ę²³åŒ—ē§‘ęŠ€å¤§å­¦'),
(109653, 'https://ror.org/05h6tzw52', 'en', 1, 'https://ror.org/05h6tzw52 Yamagata Promotional Organization for Industrial Technology å…¬ē›Šč²”å›£ę³•äŗŗå±±å½¢ēœŒē”£ę„­ęŠ€č”“ęŒÆčˆˆę©Ÿę§‹'),
(109654, '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'),
(109655, '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'),
(109656, 'https://ror.org/05hbexn54', 'en', 1, 'https://ror.org/05hbexn54 University of Wisconsin–Green Bay UniversitĆ© du Wisconsin–Green Bay'),
(109657, 'https://ror.org/05hf5kp66', 'en', 1, 'https://ror.org/05hf5kp66 Fukuoka Renal Clinic åŒ»ē™‚ę³•äŗŗåŒ»åæƒä¼šē¦å²”č…Žč‡“å†…ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(109658, 'https://ror.org/05hjyba86', 'nl', 1, 'https://ror.org/05hjyba86 Provincie Overijssel'),
(109659, 'https://ror.org/05hknds03', 'en', 1, 'https://ror.org/05hknds03 University American College Skopje'),
(109660, 'https://ror.org/05hkzza95', 'id', 1, 'https://ror.org/05hkzza95 Politeknik Kesehatan Kemenkes Semarang'),
(109661, 'https://ror.org/05hnb7x64', 'fr', 1, 'https://ror.org/05hnb7x64 Bureau de Recherches Géologiques et Minières Geological and Mining Research Bureau'),
(109662, 'https://ror.org/05hnd3017', 'pt', 1, 'https://ror.org/05hnd3017 Centro de Investigação em Actividade Física Saúde e Lazer'),
(109663, 'https://ror.org/05hpp0w78', 'es', 1, 'https://ror.org/05hpp0w78 Universidad Tecnologica de Ciudad Juarez'),
(109664, 'https://ror.org/05hsgex59', 'no_lang_code', 1, 'https://ror.org/05hsgex59 Kharazmi University دانؓگاه Ų®ŁˆŲ§Ų±Ų²Ł…ŪŒ'),
(109665, 'https://ror.org/05ht0mh31', 'en', 1, 'https://ror.org/05ht0mh31 University of Udine UniversitƠ degli Studi di Udine UniversitƤt Udine Univerza v Vidmu'),
(109666, 'https://ror.org/05hw4mw40', 'en', 1, 'https://ror.org/05hw4mw40 Sakuyo Junior College ä½œé™½éŸ³ę„½ēŸ­ęœŸå¤§å­¦'),
(109667, 'https://ror.org/05hz8m414', 'en', 1, 'https://ror.org/05hz8m414 Alabama Agricultural and Mechanical University'),
(109668, 'https://ror.org/05j05sz90', 'en', 1, 'https://ror.org/05j05sz90 Omuta City Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§ē‰Ÿē”°åø‚ē«‹ē—…é™¢'),
(109669, 'https://ror.org/05j0ve876', 'en', 1, 'https://ror.org/05j0ve876 Aston University Prifysgol Aston');
INSERT INTO `rors` VALUES
(109670, 'https://ror.org/05j0zv629', 'en', 1, 'https://ror.org/05j0zv629 Kansai Institute of Information Systems äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(109671, 'https://ror.org/05j1fb737', 'en', 1, 'https://ror.org/05j1fb737 Kashiwa Kousei General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å”å‹ä¼šęŸåŽšē”Ÿē·åˆē—…é™¢'),
(109672, 'https://ror.org/05j2ptn94', 'en', 1, 'https://ror.org/05j2ptn94 College of Science and Technology'),
(109673, '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'),
(109674, 'https://ror.org/05j7qk258', 'en', 1, 'https://ror.org/05j7qk258 Brigham Young University - Idaho'),
(109675, 'https://ror.org/05j9d8v51', 'en', 1, 'https://ror.org/05j9d8v51 National Taitung University'),
(109676, 'https://ror.org/05ja3tr06', 'en', 1, 'https://ror.org/05ja3tr06 Wind Engineering, Energy and Environment Research Institute'),
(109677, 'https://ror.org/05japqc65', 'en', 1, 'https://ror.org/05japqc65 International Research Institute for Nuclear Decommissioning ęŠ€č”“ē ”ē©¶ēµ„åˆå›½éš›å»ƒē‚‰ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(109678, 'https://ror.org/05jd5aq25', 'en', 1, 'https://ror.org/05jd5aq25 National Law University Odisha'),
(109679, 'https://ror.org/05jdsfp91', 'en', 1, 'https://ror.org/05jdsfp91 Sheridan College'),
(109680, 'https://ror.org/05jhmfs41', 'en', 1, 'https://ror.org/05jhmfs41 Zama General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć‚øćƒ£ćƒ‘ćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚¢ćƒ©ć‚¤ćƒ³ć‚¹åŗ§é–“ē·åˆē—…é™¢'),
(109681, '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'),
(109682, 'https://ror.org/05jkxnr58', 'en', 1, 'https://ror.org/05jkxnr58 Shakomae Kokorono Clinic č»Šåŗ«å‰ć“ć“ć‚ć®ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(109683, 'https://ror.org/05jmm0651', 'en', 1, 'https://ror.org/05jmm0651 Korea Aerospace University ķ•œźµ­ķ•­ź³µėŒ€ķ•™źµ'),
(109684, 'https://ror.org/05jsntm46', 'en', 1, 'https://ror.org/05jsntm46 University of Shkodra "Luigj Gurakuqi"'),
(109685, 'https://ror.org/05jstgx72', 'tr', 1, 'https://ror.org/05jstgx72 Iğdır Üniversitesi'),
(109686, 'https://ror.org/05jt4c572', 'en', 1, 'https://ror.org/05jt4c572 Olabisi Onabanjo University YunifƔsƭtƬ Olabisi Onabanjo'),
(109687, 'https://ror.org/05jthwq62', 'en', 1, 'https://ror.org/05jthwq62 Association of College and Research Libraries'),
(109688, 'https://ror.org/05jtnqh09', 'en', 1, 'https://ror.org/05jtnqh09 Osaka Design Center äø€čˆ¬č²”å›£ę³•äŗŗå¤§é˜Ŗćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(109689, 'https://ror.org/05jvrwv37', 'en', 1, 'https://ror.org/05jvrwv37 Istanbul Kültür University İstanbul Kültür Üniversitesi'),
(109690, 'https://ror.org/05jvtxd47', 'en', 1, 'https://ror.org/05jvtxd47 Ehime Prefectural Government ę„›åŖ›ēœŒåŗ'),
(109691, 'https://ror.org/05jwwpn37', 'en', 1, 'https://ror.org/05jwwpn37 Guthrie Corning Hospital'),
(109692, 'https://ror.org/05jysaq31', 'en', 1, 'https://ror.org/05jysaq31 Debra'),
(109693, 'https://ror.org/05k0sbt34', 'en', 1, 'https://ror.org/05k0sbt34 SAGA Prefectural Environmental Research Center ä½č³€ēœŒē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(109694, 'https://ror.org/05k14ba46', 'en', 1, 'https://ror.org/05k14ba46 Nipissing University UniversitƩ de nipissing'),
(109695, 'https://ror.org/05k1smh27', 'fr', 1, 'https://ror.org/05k1smh27 Institut Jean Lamour'),
(109696, 'https://ror.org/05k1tzr49', 'en', 1, 'https://ror.org/05k1tzr49 Pharmaceutical Quality Assurance Research Center مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲŖŲ¶Ł…ŪŒŁ† کیفیت دارو'),
(109697, 'https://ror.org/05k1zsp15', 'en', 1, 'https://ror.org/05k1zsp15 Japan Visiting Nursing Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬čØŖå•ēœ‹č­·č²”å›£'),
(109698, 'https://ror.org/05k27ay38', 'en', 1, 'https://ror.org/05k27ay38 Dokkyo Medical University ēØå”åŒ»ē§‘å¤§å­¦'),
(109699, 'https://ror.org/05k323c76', 'en', 1, 'https://ror.org/05k323c76 Naturhistoriska riksmuseet Swedish Museum of Natural History Valtion luonnonhistoriallinen museo'),
(109700, 'https://ror.org/05k3cms83', 'en', 1, 'https://ror.org/05k3cms83 Sunni Endowment Diwan'),
(109701, 'https://ror.org/05k52ca05', 'es', 1, 'https://ror.org/05k52ca05 Instituto Electoral del Estado de MƩxico'),
(109702, 'https://ror.org/05k623468', 'en', 1, 'https://ror.org/05k623468 Foundation for Ambulance Service Development äø€čˆ¬č²”å›£ę³•äŗŗę•‘ę€„ęŒÆčˆˆč²”å›£'),
(109703, 'https://ror.org/05k7hsv70', 'en', 1, 'https://ror.org/05k7hsv70 Hiroshima City Education Center åŗƒå³¶åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(109704, 'https://ror.org/05k84m754', 'no_lang_code', 1, 'https://ror.org/05k84m754 Celltrion (South Korea)'),
(109705, 'https://ror.org/05k8qyy21', 'en', 1, 'https://ror.org/05k8qyy21 Japan Medical Imaging and Radiological Systems Industries Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”»åƒåŒ»ē™‚ć‚·ć‚¹ćƒ†ćƒ å·„ę„­ä¼š'),
(109706, 'https://ror.org/05k903r09', 'en', 1, 'https://ror.org/05k903r09 Ardhi University Chuo Kikuu Ardhi'),
(109707, 'https://ror.org/05k9kcg68', 'en', 1, 'https://ror.org/05k9kcg68 Shizuoka Professional University of Agriculture é™å²”ēœŒē«‹č¾²ęž—ē’°å¢ƒå°‚é–€č·å¤§å­¦'),
(109708, '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"'),
(109709, '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'),
(109710, 'https://ror.org/05kaxtp50', 'es', 1, 'https://ror.org/05kaxtp50 Universidad Católica de Manizales'),
(109711, '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'),
(109712, 'https://ror.org/05kf0fr54', 'en', 1, 'https://ror.org/05kf0fr54 Suzuka Kaisei Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå³°å’Œä¼šéˆ“é¹æå›žē”Ÿē—…é™¢'),
(109713, 'https://ror.org/05kfstc28', 'en', 1, 'https://ror.org/05kfstc28 Sardar Patel University सरदार ą¤Ŗą¤Ÿą„‡ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ સરદાર ąŖŖąŖŸą«‡ąŖ² ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(109714, 'https://ror.org/05kjgf606', 'fr', 1, 'https://ror.org/05kjgf606 FranƧois GƩny Institute Institut FranƧois GƩny'),
(109715, 'https://ror.org/05kkv3f82', 'de', 1, 'https://ror.org/05kkv3f82 University of the Bundeswehr Munich Universität der Bundeswehr München'),
(109716, 'https://ror.org/05kp9zx42', 'en', 1, 'https://ror.org/05kp9zx42 Nippon Life Hospital, Public Interest Incorporated Foundation Nippon Life Hospital å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿå‘½ęøˆē”Ÿä¼šę—„ęœ¬ē”Ÿå‘½ē—…é™¢, ę—„ęœ¬ē”Ÿå‘½ē—…é™¢'),
(109717, 'https://ror.org/05kpa2035', 'en', 1, 'https://ror.org/05kpa2035 Industrial Research Institute of Niigata Prefecture ę–°ę½ŸēœŒå·„ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(109718, 'https://ror.org/05kqjmn09', 'en', 1, 'https://ror.org/05kqjmn09 Fort Hays Tech North Central'),
(109719, 'https://ror.org/05kss3581', 'en', 1, 'https://ror.org/05kss3581 Aichi Blood Disease Research Foundation č²”å›£ę³•äŗŗę„›ēŸ„č”€ę¶²ē–¾ę‚£ē ”ē©¶č²”å›£'),
(109720, 'https://ror.org/05ktf0c82', 'en', 1, 'https://ror.org/05ktf0c82 Sheikh Hasina University শেখ হাসিনা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(109721, 'https://ror.org/05kvsmq55', 'en', 1, 'https://ror.org/05kvsmq55 Korean Society for Aeronautical and Space Science ķ•œźµ­ķ•­ź³µģš°ģ£¼ķ•™ķšŒ'),
(109722, 'https://ror.org/05ky62v64', 'en', 1, 'https://ror.org/05ky62v64 Region of Attica'),
(109723, 'https://ror.org/05kyrk544', 'en', 1, 'https://ror.org/05kyrk544 Zimbabwe Open University'),
(109724, 'https://ror.org/05kz0b889', 'de', 1, 'https://ror.org/05kz0b889 Michael Succow Stiftung zum Schutz der Natur'),
(109725, 'https://ror.org/05kzawq90', 'en', 1, 'https://ror.org/05kzawq90 Kharkiv University of Technology "STEP"'),
(109726, 'https://ror.org/05m0neb33', 'en', 1, 'https://ror.org/05m0neb33 Nagoya College of Music åå¤å±‹éŸ³ę„½å¤§å­¦'),
(109727, 'https://ror.org/05m2n8847', 'en', 1, 'https://ror.org/05m2n8847 V.E. Zuev Institute of Atmospheric Optics Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптики атмосферы им. Š’.Š•. Š—ŃƒŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(109728, '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'),
(109729, 'https://ror.org/05m6y3182', 'en', 1, 'https://ror.org/05m6y3182 Norwegian Veterinary Institute'),
(109730, 'https://ror.org/05m7x5j55', 'en', 1, 'https://ror.org/05m7x5j55 Central Japan Industries äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­éƒØē”£ę„­é€£ē›Ÿ'),
(109731, 'https://ror.org/05m88m864', 'en', 1, 'https://ror.org/05m88m864 Yonezawa City Hospital 米沢市立病院'),
(109732, 'https://ror.org/05m92bb05', 'de', 1, 'https://ror.org/05m92bb05 Deutsche Gesellschaft für Materialkunde'),
(109733, 'https://ror.org/05mdm7050', 'en', 1, 'https://ror.org/05mdm7050 University of Wisconsin–Extension'),
(109734, 'https://ror.org/05mf8aw81', 'en', 1, 'https://ror.org/05mf8aw81 Research Institute for Animal Science in Biochemistry and Toxicology äø€čˆ¬č²”å›£ę³•äŗŗē”Ÿē‰©ē§‘å­¦å®‰å…Øē ”ē©¶ę‰€'),
(109735, 'https://ror.org/05mnb8680', 'de', 1, 'https://ror.org/05mnb8680 Deutscher EDV-Gerichtstag, Deutscher EDV-Gerichtstag e.V.'),
(109736, 'https://ror.org/05mqkk958', 'no_lang_code', 1, 'https://ror.org/05mqkk958 Uva Wellassa University ஊவா ą®µąÆ†ą®²ąÆą®²ą®š ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą¶Œą·€ ą·€ą·™ą¶½ą·Šą¶½ą·ƒą·Šą·ƒ ą·€ą·’ą·ą·Šą·€ ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(109737, 'https://ror.org/05mqvn149', 'en', 1, 'https://ror.org/05mqvn149 Philadelphia University Ų¬Ų§Ł…Ų¹Ų© ŁŁŠŁ„Ų§ŲÆŁ„ŁŁŠŲ§'),
(109738, 'https://ror.org/05mr3e010', 'es', 1, 'https://ror.org/05mr3e010 Universidad Nacional Hermilio ValdizƔn'),
(109739, 'https://ror.org/05mrd5h76', 'en', 1, 'https://ror.org/05mrd5h76 U.S. Air Force Research Laboratory Aerospace Systems Directorate'),
(109740, 'https://ror.org/05mt7ye26', 'no_lang_code', 1, 'https://ror.org/05mt7ye26 Invitae (United States)'),
(109741, 'https://ror.org/05mv5zk02', 'en', 1, 'https://ror.org/05mv5zk02 Plastic Waste Management Institute äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ—ćƒ©ć‚¹ćƒćƒƒć‚Æå¾Ŗē’°åˆ©ē”Øå”ä¼š'),
(109742, 'https://ror.org/05mvcw862', 'en', 1, 'https://ror.org/05mvcw862 Jilin International Studies University å‰ęž—åŽä¾Øå¤–å›½čÆ­å­¦é™¢'),
(109743, 'https://ror.org/05mw0zd11', 'en', 1, 'https://ror.org/05mw0zd11 Alaska Volcano Observatory Observatoire volcanologique d''alaska Observatorio Vulcanológico de Alaska'),
(109744, 'https://ror.org/05mwmd090', 'en', 1, 'https://ror.org/05mwmd090 Fróðskaparsetur Føroya Færøernes Universitet University of the Faroe Islands'),
(109745, 'https://ror.org/05mzmc736', 'en', 1, 'https://ror.org/05mzmc736 Japan Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(109746, 'https://ror.org/05mzs1s34', 'fr', 1, 'https://ror.org/05mzs1s34 Centre de recherche multidisciplinaire en sciences humaines et sociales'),
(109747, 'https://ror.org/05n2dnq32', 'en', 1, 'https://ror.org/05n2dnq32 Chatham University'),
(109748, 'https://ror.org/05n3x4p02', 'en', 1, 'https://ror.org/05n3x4p02 Medical University of Vienna Medizinische UniversitƤt Wien'),
(109749, 'https://ror.org/05n545h05', 'en', 1, 'https://ror.org/05n545h05 St. Edward''s University'),
(109750, 'https://ror.org/05n6vkd45', 'en', 1, 'https://ror.org/05n6vkd45 Miyazaki Prefectural Institute for Public Health and Environment å®®å“ŽēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(109751, 'https://ror.org/05n7q5q24', 'en', 1, 'https://ror.org/05n7q5q24 Department of Primary Industry and Resources'),
(109752, 'https://ror.org/05n7v5997', 'es', 1, 'https://ror.org/05n7v5997 Instituto de Investigación Sanitaria La Fe'),
(109753, 'https://ror.org/05n8c7s13', 'en', 1, 'https://ror.org/05n8c7s13 FOCUS Strategic Thinking Consultants'),
(109754, 'https://ror.org/05n97pt16', 'en', 1, 'https://ror.org/05n97pt16 Nagaland University'),
(109755, 'https://ror.org/05n9ybf95', 'en', 1, 'https://ror.org/05n9ybf95 Japan Livestock Technology Association å…¬ē›Šē¤¾å›£ę³•äŗŗē•œē”£ęŠ€č”“å”ä¼š'),
(109756, 'https://ror.org/05ncxkn21', 'es', 1, 'https://ror.org/05ncxkn21 Instituto Superior Tecnológico Carlos Cisneros'),
(109757, 'https://ror.org/05nfkgg69', 'fr', 1, 'https://ror.org/05nfkgg69 Université de Thiès'),
(109758, 'https://ror.org/05nhcdk38', 'fr', 1, 'https://ror.org/05nhcdk38 Laboratoire de Physique ThƩorique et ModƩlisation'),
(109759, 'https://ror.org/05nkf0n29', 'en', 1, 'https://ror.org/05nkf0n29 University of New Brunswick UniversitƩ du nouveau-brunswick'),
(109760, 'https://ror.org/05nmgz888', 'en', 1, 'https://ror.org/05nmgz888 Okinawa Prefectural Livestock and Grassland Research Center ę²–ēø„ēœŒē•œē”£ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(109761, 'https://ror.org/05nn7qm04', 'en', 1, 'https://ror.org/05nn7qm04 Ganpat University ગણપત ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(109762, 'https://ror.org/05nnz2423', 'en', 1, 'https://ror.org/05nnz2423 Royal Shrewsbury Hospital'),
(109763, 'https://ror.org/05nq41m91', 'en', 1, 'https://ror.org/05nq41m91 Tonghua Normal University é€šåŒ–åøˆčŒƒå­¦é™¢'),
(109764, 'https://ror.org/05nqkay65', 'da', 1, 'https://ror.org/05nqkay65 Villum Fonden'),
(109765, '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)'),
(109766, 'https://ror.org/05nrs2490', 'en', 1, 'https://ror.org/05nrs2490 University of Nebraska Foundation'),
(109767, 'https://ror.org/05nsxg298', 'en', 1, 'https://ror.org/05nsxg298 Avangrid Renewables'),
(109768, 'https://ror.org/05nxk6n24', 'en', 1, 'https://ror.org/05nxk6n24 IEEE Computer Society'),
(109769, 'https://ror.org/05nxsdg44', 'pt', 1, 'https://ror.org/05nxsdg44 Escola de SaĆŗde PĆŗblica do Distrito Federal'),
(109770, 'https://ror.org/05nydfs77', 'en', 1, 'https://ror.org/05nydfs77 Dubai Medical College ŁƒŁ„ŁŠŲ© دبي Ų§Ł„Ų·ŲØŁŠŲ©'),
(109771, 'https://ror.org/05nyf1y15', 'pt', 1, 'https://ror.org/05nyf1y15 Instituto Nacional de Traumatologia e Ortopedia'),
(109772, 'https://ror.org/05nzy4r85', 'es', 1, 'https://ror.org/05nzy4r85 Instituto de Investigacion Traslacional y Biotransversal Ayru'),
(109773, 'https://ror.org/05p0enq35', 'es', 1, 'https://ror.org/05p0enq35 Instituto AragonƩs de Ciencias de la Salud'),
(109774, 'https://ror.org/05p0kyc43', 'tr', 1, 'https://ror.org/05p0kyc43 MSD (Turkiye)'),
(109775, 'https://ror.org/05p0tzt32', 'en', 1, 'https://ror.org/05p0tzt32 East West University ą¦‡ą¦øą§ą¦Ÿą¦“ą¦Æą¦¼ą§‡ą¦øą§ą¦Ÿ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(109776, 'https://ror.org/05p2xef58', 'id', 1, 'https://ror.org/05p2xef58 Lembaga Pengelola Dana Pendidikan'),
(109777, 'https://ror.org/05p4hdr45', 'fr', 1, 'https://ror.org/05p4hdr45 Atmo Guyane'),
(109778, 'https://ror.org/05p7te762', 'no_lang_code', 1, 'https://ror.org/05p7te762 HRL Laboratories (United States)'),
(109779, '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'),
(109780, 'https://ror.org/05p847d66', 'en', 1, 'https://ror.org/05p847d66 Directorate for Geosciences'),
(109781, 'https://ror.org/05p85rs79', 'en', 1, 'https://ror.org/05p85rs79 Ohio Department of Natural Resources'),
(109782, 'https://ror.org/05p939w45', 'en', 1, 'https://ror.org/05p939w45 Tochigi Prefecture Kenou Animal Hygiene Service Center Of Tochigi ę ƒęœØēœŒēœŒå¤®å®¶ē•œäæå„č”›ē”Ÿę‰€'),
(109783, 'https://ror.org/05pbevm62', 'en', 1, 'https://ror.org/05pbevm62 Aichi Prefectural Forestry Research Institute ę„›ēŸ„ēœŒę£®ęž—ćƒ»ęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(109784, 'https://ror.org/05pbkcd34', 'en', 1, 'https://ror.org/05pbkcd34 Cooper Union'),
(109785, 'https://ror.org/05pea1m70', 'en', 1, 'https://ror.org/05pea1m70 Shanghai Children''s Hospital äøŠęµ·åø‚å„æē«„åŒ»é™¢'),
(109786, 'https://ror.org/05pejbw21', 'en', 1, 'https://ror.org/05pejbw21 Chengdu University of Technology ęˆéƒ½ē†å·„å¤§å­¦'),
(109787, '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'),
(109788, 'https://ror.org/05pfpea66', 'es', 1, 'https://ror.org/05pfpea66 Fundación Universitaria Sanitas'),
(109789, 'https://ror.org/05pgk5e03', 'en', 1, 'https://ror.org/05pgk5e03 Agnes Scott College'),
(109790, 'https://ror.org/05pjd6b26', 'en', 1, 'https://ror.org/05pjd6b26 Westfield State University'),
(109791, 'https://ror.org/05pm2mw36', 'pt', 1, 'https://ror.org/05pm2mw36 Centro de Investigação e Desenvolvimento em MatemÔtica e Aplicações'),
(109792, 'https://ror.org/05pp6zn13', 'en', 1, 'https://ror.org/05pp6zn13 Kaizuka City Hospital åø‚ē«‹č²å”šē—…é™¢'),
(109793, 'https://ror.org/05prvvz80', 'en', 1, 'https://ror.org/05prvvz80 Cogitatio Press'),
(109794, 'https://ror.org/05ptvzg43', 'en', 1, 'https://ror.org/05ptvzg43 Fukushima Prefectural Government ē¦å³¶ēœŒåŗ'),
(109795, 'https://ror.org/05ptwtz25', 'tr', 1, 'https://ror.org/05ptwtz25 Siirt University Siirt Üniversitesi'),
(109796, 'https://ror.org/05pxcn248', 'en', 1, 'https://ror.org/05pxcn248 Singapore Polytechnic ę–°åŠ å”ē†å·„å­¦é™¢'),
(109797, 'https://ror.org/05pzmdf74', 'en', 1, 'https://ror.org/05pzmdf74 Popular University of Cesar Universidad Popular del Cesar'),
(109798, 'https://ror.org/05q0y0j38', 'en', 1, 'https://ror.org/05q0y0j38 Administración Federal de Aviación Federal Aviation Administration'),
(109799, 'https://ror.org/05q2p2431', 'en', 1, 'https://ror.org/05q2p2431 Guangdong Polytechnic of Industry and Commerce å»£ę±å·„č²æč·ę„­ęŠ€č”“å­øé™¢'),
(109800, 'https://ror.org/05q5pk319', 'en', 1, 'https://ror.org/05q5pk319 Hochschule für Technik und Wirtschaft Dresden – University of Applied Sciences'),
(109801, 'https://ror.org/05q65zh81', 'fr', 1, 'https://ror.org/05q65zh81 Chimie ParisTech, Ɖcole nationale supĆ©rieure de chimie de Paris'),
(109802, 'https://ror.org/05q7h6933', 'fr', 1, 'https://ror.org/05q7h6933 CƩgep Limoilou'),
(109803, 'https://ror.org/05qat3p53', 'pt', 1, 'https://ror.org/05qat3p53 Centro de Investigação e Intervenção Educativas'),
(109804, 'https://ror.org/05qb25959', 'pt', 1, 'https://ror.org/05qb25959 Centro de Investigação em Ciência Política'),
(109805, 'https://ror.org/05qbk4x57', 'en', 1, 'https://ror.org/05qbk4x57 University of Chinese Academy of Sciences 中国科学院大学'),
(109806, 'https://ror.org/05qbzwv83', 'en', 1, 'https://ror.org/05qbzwv83 Federation University'),
(109807, 'https://ror.org/05qck8y15', 'en', 1, 'https://ror.org/05qck8y15 Kameda Daiichi Hospital åŒ»ē™‚ę³•äŗŗę„›ä»ä¼šäŗ€ē”°ē¬¬äø€ē—…é™¢'),
(109808, 'https://ror.org/05qcsva92', 'en', 1, 'https://ror.org/05qcsva92 Chuo cha Elimu ya Biashara College of Business Education'),
(109809, 'https://ror.org/05qdjap63', 'pt', 1, 'https://ror.org/05qdjap63 Centro de Investigação em Arquitetura Urbanismo e Design'),
(109810, 'https://ror.org/05qeebj02', 'de', 1, 'https://ror.org/05qeebj02 Medizinische Einrichtungen des Bezirks Oberpfalz'),
(109811, 'https://ror.org/05qemrn04', 'en', 1, 'https://ror.org/05qemrn04 Tokyo Metropolitan College of Industrial Technology ę±äŗ¬éƒ½ē«‹ē”£ę„­ęŠ€č”“é«˜ē­‰å°‚é–€å­¦ę ”'),
(109812, 'https://ror.org/05qewa988', 'en', 1, 'https://ror.org/05qewa988 R Foundation for Statistical Computing R Vereinigung für statistisches Rechnen'),
(109813, 'https://ror.org/05qfd6v89', 'en', 1, 'https://ror.org/05qfd6v89 Sigma University'),
(109814, 'https://ror.org/05qgkbq61', 'en', 1, 'https://ror.org/05qgkbq61 Plant Breeding and Acclimatization Institute - National Research Institute'),
(109815, 'https://ror.org/05qk4xh70', 'en', 1, 'https://ror.org/05qk4xh70 Center for Translational Medicine Centrum Medycyny Translacyjnej'),
(109816, 'https://ror.org/05qkpaf51', 'en', 1, 'https://ror.org/05qkpaf51 Albukhary International University Universiti Antarabangsa Albukhary'),
(109817, 'https://ror.org/05qn0z879', 'fr', 0, 'https://ror.org/05qn0z879 Centre de Sociologie EuropƩenne'),
(109818, 'https://ror.org/05qn5kv73', 'fr', 1, 'https://ror.org/05qn5kv73 CHU de QuƩbec-UniversitƩ Laval'),
(109819, 'https://ror.org/05qp50e50', 'en', 1, 'https://ror.org/05qp50e50 Langara College'),
(109820, 'https://ror.org/05qpbfx18', 'en', 1, 'https://ror.org/05qpbfx18 Defence Institute of Advanced Technology'),
(109821, 'https://ror.org/05qpz1x62', 'en', 1, 'https://ror.org/05qpz1x62 Friedrich Schiller University Jena Friedrich-Schiller-UniversitƤt Jena'),
(109822, 'https://ror.org/05qrwjj27', 'es', 1, 'https://ror.org/05qrwjj27 Universidad TƩcnica Estatal de Quevedo'),
(109823, 'https://ror.org/05qse2d20', 'en', 1, 'https://ror.org/05qse2d20 Arab States Research and Education Network'),
(109824, 'https://ror.org/05qsezp22', 'es', 1, 'https://ror.org/05qsezp22 Agencia de Salud PĆŗblica de Barcelona'),
(109825, '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'),
(109826, 'https://ror.org/05qsjq305', 'fr', 1, 'https://ror.org/05qsjq305 Centre Hospitalier Universitaire de Nice'),
(109827, 'https://ror.org/05qxhp197', 'en', 1, 'https://ror.org/05qxhp197 The Japanese Respiratory Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å‘¼åøå™Øå­¦ä¼š'),
(109828, 'https://ror.org/05qxq4371', 'en', 1, 'https://ror.org/05qxq4371 University of Alkafeel Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁŁŠŁ„'),
(109829, 'https://ror.org/05qxwej02', 'en', 1, 'https://ror.org/05qxwej02 THE Japan Soy Sauce Technology Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é†¤ę²¹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(109830, 'https://ror.org/05qz2dz14', 'en', 1, 'https://ror.org/05qz2dz14 Max Stern Academic College of Emek Yezreel המכללה ×”××§×“×ž×™×Ŗ עמק ×™×–×Ø×¢××œ עדש מקה שטרן'),
(109831, 'https://ror.org/05qzb2q24', 'en', 1, 'https://ror.org/05qzb2q24 Japanese Olympic Committee å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚ŖćƒŖćƒ³ćƒ”ćƒƒć‚Æå§”å“”ä¼š'),
(109832, 'https://ror.org/05r0ccb59', 'fr', 1, 'https://ror.org/05r0ccb59 Ɖcole Nationale des Travaux Publics de l''Ɖtat'),
(109833, 'https://ror.org/05r0q9p84', 'en', 1, 'https://ror.org/05r0q9p84 Calvin University'),
(109834, 'https://ror.org/05r0whd85', 'en', 1, 'https://ror.org/05r0whd85 International Medical Foundation of Japan č²”å›£ę³•äŗŗę—„ęœ¬å›½éš›åŒ»ē™‚å›£'),
(109835, 'https://ror.org/05r40wk77', 'en', 1, 'https://ror.org/05r40wk77 Centre for English, Translation, and Anglo-Portuguese Studies'),
(109836, 'https://ror.org/05r5a5c61', 'de', 1, 'https://ror.org/05r5a5c61 Institut für Solarenergieforschung Institute for Solar Energy Research Hamelin'),
(109837, 'https://ror.org/05r78ng12', 'en', 1, 'https://ror.org/05r78ng12 Universidad de Castilla-La Mancha University of Castilla-La Mancha'),
(109838, 'https://ror.org/05r7hdk89', 'en', 1, 'https://ror.org/05r7hdk89 Sendai Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗä»™å°åø‚åŒ»åø«ä¼š'),
(109839, 'https://ror.org/05r8dqr10', 'no_lang_code', 1, 'https://ror.org/05r8dqr10 SveučiliŔte u Rijeci University of Rijeka'),
(109840, 'https://ror.org/05r92j264', 'en', 1, 'https://ror.org/05r92j264 The Society for Near Eastern Studies in Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚ŖćƒŖć‚Øćƒ³ćƒˆå­¦ä¼š'),
(109841, 'https://ror.org/05r9r2f34', 'en', 1, 'https://ror.org/05r9r2f34 Indian Institute of Technology Mandi ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą¤£ą„ą¤”ą„€ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®®ą®£ąÆą®Ÿą®æ'),
(109842, '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'),
(109843, 'https://ror.org/05rb1q636', 'it', 1, 'https://ror.org/05rb1q636 Istituto Nazionale Genetica Molecolare'),
(109844, 'https://ror.org/05rbkcx47', 'en', 1, 'https://ror.org/05rbkcx47 Indiana University Hospital'),
(109845, 'https://ror.org/05rcbmq65', 'pt', 1, 'https://ror.org/05rcbmq65 Hospital LusĆ­adas Lisboa'),
(109846, 'https://ror.org/05rdf8595', 'gl', 1, 'https://ror.org/05rdf8595 Universidad de Vigo Universidade de Vigo Universitat de Vigo University of Vigo'),
(109847, 'https://ror.org/05re01744', 'en', 0, 'https://ror.org/05re01744 Australasian Sarcoma Study Group'),
(109848, 'https://ror.org/05rhq6v14', 'en', 1, 'https://ror.org/05rhq6v14 Motojima General hospital åŒ»ē™‚ę³•äŗŗå³¶é–€ä¼šęœ¬å³¶ē·åˆē—…é™¢'),
(109849, 'https://ror.org/05rj7xr73', 'en', 1, 'https://ror.org/05rj7xr73 St Joseph''s Health Care'),
(109850, 'https://ror.org/05rk57t35', 'en', 1, 'https://ror.org/05rk57t35 Sendai Akamon College ä»™å°čµ¤é–€ēŸ­ęœŸå¤§å­¦'),
(109851, 'https://ror.org/05rknw161', 'en', 1, 'https://ror.org/05rknw161 National Research And Development Institute For Energy'),
(109852, 'https://ror.org/05rky1t53', 'en', 1, 'https://ror.org/05rky1t53 ISM University of Management and Economics ISM Vadybos ir ekonomikos universitetas'),
(109853, 'https://ror.org/05rmqsa52', 'en', 1, 'https://ror.org/05rmqsa52 Japan Institute of Information Technology å…¬ē›Šē¤¾å›£ę³•äŗŗä¼ę„­ęƒ…å ±åŒ–å”ä¼š'),
(109854, 'https://ror.org/05rp22271', 'en', 1, 'https://ror.org/05rp22271 National Sanatorium Hoshizuka Keiaien å›½ē«‹ē™‚é¤Šę‰€ę˜Ÿå”šę•¬ę„›åœ’'),
(109855, 'https://ror.org/05rp6gx35', 'en', 1, 'https://ror.org/05rp6gx35 Husson University'),
(109856, 'https://ror.org/05rq0zy06', 'en', 1, 'https://ror.org/05rq0zy06 Government College Women University Faisalabad ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ کالج ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(109857, 'https://ror.org/05rrz2q74', 'en', 1, 'https://ror.org/05rrz2q74 University of Kinshasa UniversitƩ de Kinshasa'),
(109858, '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'),
(109859, 'https://ror.org/05rsv8p09', 'tr', 1, 'https://ror.org/05rsv8p09 Ƈanakkale Onsekiz Mart University Ƈanakkale Onsekiz Mart Ɯniversitesi'),
(109860, 'https://ror.org/05rxjkq42', 'en', 1, 'https://ror.org/05rxjkq42 Health Data Hub'),
(109861, 'https://ror.org/05s32j989', 'tr', 1, 'https://ror.org/05s32j989 Sivas Bilim ve Teknoloji Üniversitesi Sivas University of Science and Technology'),
(109862, 'https://ror.org/05s3cw058', 'fr', 1, 'https://ror.org/05s3cw058 Centre Universitaire de Mila Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ-Ł…ŁŠŁ„Ų©'),
(109863, 'https://ror.org/05s3qq987', 'en', 1, 'https://ror.org/05s3qq987 Libyan Academy Ų§Ł„Ų£ŁƒŁ€Ł€Ų§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ł„ŁŠŲØŁŠŲ©'),
(109864, 'https://ror.org/05s3rh916', 'es', 1, 'https://ror.org/05s3rh916 Autonomous University of Chiriqui Universidad Autónoma de Chiriquí'),
(109865, 'https://ror.org/05s76re36', 'en', 1, 'https://ror.org/05s76re36 The Illuminating Engineering Institute of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗē…§ę˜Žå­¦ä¼š'),
(109866, 'https://ror.org/05s7yq554', 'en', 1, 'https://ror.org/05s7yq554 Omiya Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§å®®åŒ»åø«ä¼š'),
(109867, 'https://ror.org/05s7zab55', 'en', 1, 'https://ror.org/05s7zab55 Tottori College of Nursing é³„å–ēœ‹č­·å¤§å­¦'),
(109868, 'https://ror.org/05s92vm98', 'en', 1, 'https://ror.org/05s92vm98 Xidian University č„æå®‰ē”µå­ē§‘ęŠ€å¤§å­¦'),
(109869, 'https://ror.org/05sa6gg87', 'en', 1, 'https://ror.org/05sa6gg87 Moscow Power Engineering Institute Московский ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(109870, 'https://ror.org/05saqv884', 'en', 1, 'https://ror.org/05saqv884 Nile University of Nigeria'),
(109871, 'https://ror.org/05sbm1c04', 'en', 1, 'https://ror.org/05sbm1c04 Universitas Pembangunan Nasional Veteran Jawa Timur University of Pembangunan Nasional Veteran Jawa Timur'),
(109872, 'https://ror.org/05sd1pz50', 'en', 1, 'https://ror.org/05sd1pz50 University of Zakho Ų¬Ų§Ł…Ų¹Ų© Ų²Ų§Ų®Ū†'),
(109873, 'https://ror.org/05sd9a193', 'en', 1, 'https://ror.org/05sd9a193 Zero Waste Scotland'),
(109874, 'https://ror.org/05se23v32', 'en', 1, 'https://ror.org/05se23v32 Protestant University of Rwanda'),
(109875, 'https://ror.org/05sedbt07', 'en', 1, 'https://ror.org/05sedbt07 Baltic State Technical University Voenmeh Балтийский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Военмех'),
(109876, 'https://ror.org/05sex0295', 'en', 1, 'https://ror.org/05sex0295 Hungarian Dance University Magyar TÔncművészeti Egyetem'),
(109877, 'https://ror.org/05sgb8g78', 'en', 1, 'https://ror.org/05sgb8g78 Suranaree University of Technology ดหาวณทยาคัยเทคโนโคยีสุรนารี'),
(109878, 'https://ror.org/05sj3n476', 'en', 1, 'https://ror.org/05sj3n476 Tokyo University of Science ę±äŗ¬ē†ē§‘å¤§å­¦'),
(109879, 'https://ror.org/05sjf8653', 'en', 1, 'https://ror.org/05sjf8653 MIT Academy of Engineering'),
(109880, 'https://ror.org/05sjtt732', 'en', 1, 'https://ror.org/05sjtt732 Hiroshima HIGH-PRECISION Radiotherapy Cancer Center åŗƒå³¶ćŒć‚“é«˜ē²¾åŗ¦ę”¾å°„ē·šę²»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(109881, 'https://ror.org/05sk14837', 'en', 1, 'https://ror.org/05sk14837 National Science Foundation Ice Core Facility'),
(109882, 'https://ror.org/05sm4qw49', 'en', 1, 'https://ror.org/05sm4qw49 The Japanese Institute of Irrigation and Drainage äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę°“åœŸē·åˆē ”ē©¶ę‰€'),
(109883, 'https://ror.org/05snt2t16', 'no_lang_code', 1, 'https://ror.org/05snt2t16 Mintek'),
(109884, 'https://ror.org/05srvzs48', 'en', 1, 'https://ror.org/05srvzs48 Szkoła Główna Gospodarstwa Wiejskiego w Warszawie Warsaw University of Life Sciences'),
(109885, 'https://ror.org/05st8gg45', 'pt', 1, 'https://ror.org/05st8gg45 Centro de Biotecnologia de Plantas da Beira Interior'),
(109886, 'https://ror.org/05sxbyd35', 'en', 1, 'https://ror.org/05sxbyd35 University Medical Centre Mannheim UniversitƤtsklinikum Mannheim'),
(109887, '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'),
(109888, 'https://ror.org/05t0zvw13', 'id', 1, 'https://ror.org/05t0zvw13 Universitas Teknologi Digital'),
(109889, 'https://ror.org/05t1d6r64', 'en', 1, 'https://ror.org/05t1d6r64 Indian Institute of Management Ranchi ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤‚ą¤šą„€'),
(109890, 'https://ror.org/05t1h8f27', 'en', 1, 'https://ror.org/05t1h8f27 University of Huddersfield'),
(109891, 'https://ror.org/05t2k9j40', 'en', 1, 'https://ror.org/05t2k9j40 Romanian Research and Development Institute for Gas Turbines'),
(109892, 'https://ror.org/05t2w7768', 'en', 1, 'https://ror.org/05t2w7768 R Professional University Of Rehabilitation ć‚¢ćƒ¼ćƒ«åŒ»ē™‚å°‚é–€č·å¤§å­¦'),
(109893, 'https://ror.org/05t3p2g92', 'en', 1, 'https://ror.org/05t3p2g92 Universiteti i Prishtinƫs University of Prishtina'),
(109894, 'https://ror.org/05t4sxc87', 'en', 1, 'https://ror.org/05t4sxc87 Mogilev State A.Kuleshov University ŠœŠ°Š³Ń–Š»Ń‘ŃžŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń ŠŃ€ŠŗŠ°Š“Š·Ń ŠšŃƒŠ»ŃŃˆŠ¾Š²Š°'),
(109895, 'https://ror.org/05t5ek106', 'en', 1, 'https://ror.org/05t5ek106 Collin College'),
(109896, 'https://ror.org/05t6hvr95', 'en', 1, 'https://ror.org/05t6hvr95 Beijing Institute of Mathematical Sciences and Applications åŒ—äŗ¬é›ę –ę¹–åŗ”ē”Øę•°å­¦ē ”ē©¶é™¢'),
(109897, 'https://ror.org/05t9myw53', 'en', 1, 'https://ror.org/05t9myw53 Nakatsugawa Municipal General Hospital ē·åˆē—…é™¢äø­ę“„å·åø‚ę°‘ē—…é™¢'),
(109898, 'https://ror.org/05tb13r23', 'en', 1, 'https://ror.org/05tb13r23 First Technical University'),
(109899, 'https://ror.org/05tc25765', 'en', 1, 'https://ror.org/05tc25765 Kawaguchi Municipal Medical Center å·å£åø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(109900, 'https://ror.org/05tc5bm31', 'en', 1, 'https://ror.org/05tc5bm31 Florida Gulf Coast University'),
(109901, 'https://ror.org/05tcr1n44', 'en', 1, 'https://ror.org/05tcr1n44 University of Business and Technology Ų¬Ų§Ł…Ų¹Ų© الأعمال ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§.'),
(109902, 'https://ror.org/05td3s095', 'en', 1, 'https://ror.org/05td3s095 Nanjing Agricultural University å—äŗ¬å†œäøšå¤§å­¦'),
(109903, 'https://ror.org/05tdz6m39', 'en', 1, 'https://ror.org/05tdz6m39 King Abdulaziz City for Science and Technology Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ² Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(109904, 'https://ror.org/05te8rc78', 'en', 1, 'https://ror.org/05te8rc78 Thai-Nichi Institute of Technology ąøŖąø–ąø²ąøšąø±ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹„ąø—ąø¢-ąøąøµą¹ˆąø›ąøøą¹ˆąø™'),
(109905, 'https://ror.org/05teb7b63', 'en', 1, 'https://ror.org/05teb7b63 Fırat University Fırat Üniversitesi'),
(109906, 'https://ror.org/05tgdvt16', 'en', 1, 'https://ror.org/05tgdvt16 Sabzevar University of Medical Sciences'),
(109907, 'https://ror.org/05tj4xy20', 'en', 1, 'https://ror.org/05tj4xy20 Berkeley Eye Center'),
(109908, 'https://ror.org/05tjyqz67', 'en', 1, 'https://ror.org/05tjyqz67 Holy Cross College'),
(109909, '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'),
(109910, 'https://ror.org/05tq2c590', 'en', 1, 'https://ror.org/05tq2c590 Hokkaido Gastroenterology Hospital åŒ»ē™‚ę³•äŗŗå½°å’Œä¼šåŒ—ęµ·é“ę¶ˆåŒ–å™Øē§‘ē—…é™¢'),
(109911, 'https://ror.org/05tqaz865', 'en', 1, 'https://ror.org/05tqaz865 Hanshan Normal University'),
(109912, 'https://ror.org/05tqmmk50', 'id', 1, 'https://ror.org/05tqmmk50 Universitas Sains dan Teknologi Komputer'),
(109913, 'https://ror.org/05tr71696', 'no_lang_code', 1, 'https://ror.org/05tr71696 MSD (India)'),
(109914, 'https://ror.org/05tre4438', 'en', 1, 'https://ror.org/05tre4438 Nagano Prefectural Government é•·é‡ŽēœŒåŗ'),
(109915, 'https://ror.org/05tsvnv68', 'en', 1, 'https://ror.org/05tsvnv68 Partners In Health'),
(109916, 'https://ror.org/05tw0x522', 'en', 1, 'https://ror.org/05tw0x522 NIMS University'),
(109917, 'https://ror.org/05txhmf96', 'en', 1, 'https://ror.org/05txhmf96 Bangladesh Agricultural Research Council'),
(109918, 'https://ror.org/05ty46q84', 'en', 1, 'https://ror.org/05ty46q84 Akademia Humanistyczno-Ekonomiczna w Łodzi University of Humanities and Economics in Lodz'),
(109919, 'https://ror.org/05v1baa28', 'en', 1, 'https://ror.org/05v1baa28 Lauder Business School'),
(109920, 'https://ror.org/05v4axe68', 'en', 1, 'https://ror.org/05v4axe68 Ishikawa Prefecture Fisheries Research Center ēŸ³å·ēœŒę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(109921, 'https://ror.org/05vatjr87', 'en', 1, 'https://ror.org/05vatjr87 Malawi University of Business and Applied Sciences'),
(109922, 'https://ror.org/05vf0dg29', 'en', 1, 'https://ror.org/05vf0dg29 Roma Tre University UniversitƠ degli Studi Roma Tre UniversitƩ de Rome III'),
(109923, 'https://ror.org/05vf68943', 'en', 1, 'https://ror.org/05vf68943 Niigata Seiryo WOMEN''S Junior College ę–°ę½Ÿé’é™µå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(109924, 'https://ror.org/05vghhr25', 'en', 1, 'https://ror.org/05vghhr25 Turun yliopisto University of Turku ƅbo universitet'),
(109925, 'https://ror.org/05vhdrp61', 'id', 1, 'https://ror.org/05vhdrp61 IAIN Kudus, Institut Agama Islam Negeri'),
(109926, 'https://ror.org/05vjvdn70', 'en', 1, 'https://ror.org/05vjvdn70 Agricultural Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§ę—„ęœ¬č¾²ä¼š'),
(109927, 'https://ror.org/05vkpd318', 'en', 1, 'https://ror.org/05vkpd318 La Jolla Institute for Immunology'),
(109928, 'https://ror.org/05vn4sj02', 'en', 1, 'https://ror.org/05vn4sj02 Pravara Rural College of Pharmacy Pravaranagar'),
(109929, 'https://ror.org/05vqbh574', 'en', 1, 'https://ror.org/05vqbh574 Indian Institute of Management Raipur ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(109930, 'https://ror.org/05vr1c885', 'en', 1, 'https://ror.org/05vr1c885 Henan Polytechnic University ę²³å—ē†å·„å¤§å­¦'),
(109931, 'https://ror.org/05vsgas81', 'en', 1, 'https://ror.org/05vsgas81 Nagoya City Institute For Environmental Sciences åå¤å±‹åø‚ē’°å¢ƒē§‘å­¦čŖæęŸ»ć‚»ćƒ³ć‚æćƒ¼'),
(109932, 'https://ror.org/05vss7635', 'en', 1, 'https://ror.org/05vss7635 Ibero American University Universidad Iberoamericana'),
(109933, 'https://ror.org/05vtax910', 'pt', 1, 'https://ror.org/05vtax910 Direção Geral do Património Cultural'),
(109934, 'https://ror.org/05vtb1235', 'en', 1, 'https://ror.org/05vtb1235 University of Haripur ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ہری Ł¾ŁˆŲ±ā€Ž'),
(109935, 'https://ror.org/05vvex219', 'en', 1, 'https://ror.org/05vvex219 Kamakura Women''s Junior College éŽŒå€‰å„³å­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(109936, 'https://ror.org/05vy8np18', 'en', 1, 'https://ror.org/05vy8np18 Akademia Wychowania Fizycznego w Krakowie University School of Physical Education in Kraków'),
(109937, 'https://ror.org/05w035e71', 'en', 1, 'https://ror.org/05w035e71 Japan Grain Inspection Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē©€ē‰©ę¤œå®šå”ä¼š'),
(109938, 'https://ror.org/05w4ste42', 'en', 1, 'https://ror.org/05w4ste42 Royal Roads University'),
(109939, 'https://ror.org/05w5rsy15', 'en', 1, 'https://ror.org/05w5rsy15 Aurel Vlaicu University of Arad Universitatea Aurel Vlaicu din Arad'),
(109940, 'https://ror.org/05w8p0566', 'pt', 1, 'https://ror.org/05w8p0566 Centro ALGORITMI'),
(109941, 'https://ror.org/05wa54d95', 'en', 1, 'https://ror.org/05wa54d95 DeepSeek, DeepSeek (China) ę­å·žę·±åŗ¦ę±‚ē“¢äŗŗå·„ę™ŗčƒ½åŸŗē”€ęŠ€ęœÆē ”ē©¶ęœ‰é™å…¬åø'),
(109942, 'https://ror.org/05waxv440', 'en', 1, 'https://ror.org/05waxv440 Library and Archives Northern Territory'),
(109943, 'https://ror.org/05wc2hs84', 'es', 1, 'https://ror.org/05wc2hs84 Instituto Tecnológico Superior de Huauchinango'),
(109944, 'https://ror.org/05wctc146', 'id', 1, 'https://ror.org/05wctc146 Sekolah Tinggi Ilmu Kesehatan Medistra Indonesia'),
(109945, 'https://ror.org/05wd4m765', 'en', 1, 'https://ror.org/05wd4m765 Osaka Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜ŖåŗœåŒ»åø«ä¼š'),
(109946, 'https://ror.org/05wez5a86', 'en', 1, 'https://ror.org/05wez5a86 Chubu Region Institute for Social and Economic Research å…¬ē›Šč²”å›£ę³•äŗŗäø­éƒØåœē¤¾ä¼šēµŒęøˆē ”ē©¶ę‰€'),
(109947, 'https://ror.org/05wg82p98', 'en', 1, 'https://ror.org/05wg82p98 Jusendo Hospital å…¬ē›Šč²”å›£ę³•äŗŗę¹Æęµ…å ±ę©ä¼šåÆæę³‰å ‚ē¶œåˆē—…é™¢'),
(109948, 'https://ror.org/05whv5732', 'en', 1, 'https://ror.org/05whv5732 Tohoku Seikatsu Bunka Junior College ę±åŒ—ē”Ÿę“»ę–‡åŒ–å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(109949, 'https://ror.org/05wkg1r24', 'en', 1, 'https://ror.org/05wkg1r24 Yamaguchi Prefectural Fisheries Research Center å±±å£ēœŒę°“ē”£ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(109950, 'https://ror.org/05wn3mp32', 'fr', 1, 'https://ror.org/05wn3mp32 Institut des sciences de la mer'),
(109951, 'https://ror.org/05wnasr61', 'en', 1, 'https://ror.org/05wnasr61 Instituto Tecnológico Vale, Vale Technological Institute'),
(109952, 'https://ror.org/05wp7an13', 'en', 1, 'https://ror.org/05wp7an13 Malmƶ University Malmƶ universitet'),
(109953, 'https://ror.org/05wqqhv83', 'en', 1, 'https://ror.org/05wqqhv83 Division of Ocean Sciences'),
(109954, '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'),
(109955, 'https://ror.org/05wrc7826', 'en', 1, 'https://ror.org/05wrc7826 Mining and Metallurgical Institute of Tajikistan Горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ТаГжикистана Š”Š¾Š½ŠøŃˆŠŗŠ°Š“Š°Šø ŠŗÓÆŅ³ŠøŃŽ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Тоҷикистон'),
(109956, 'https://ror.org/05ws31q32', 'en', 1, 'https://ror.org/05ws31q32 O.M. Beketov National University of Urban Economy in Kharkiv Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¼Ń–ŃŃŒŠŗŠ¾Š³Š¾ госпоГарства імені Šž. М. Бекетова Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ гороГского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(109957, 'https://ror.org/05wthsp76', 'en', 1, 'https://ror.org/05wthsp76 Policy Study Group äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›ēµŒęøˆę”æē­–čŖæęŸ»ä¼š'),
(109958, 'https://ror.org/05ww3wq27', 'fr', 1, 'https://ror.org/05ww3wq27 HEC MontrĆ©al, Ɖcole des Hautes Ɖtudes commerciales de MontrĆ©al'),
(109959, 'https://ror.org/05wwfbb42', 'fr', 1, 'https://ror.org/05wwfbb42 Ɖcole Nationale d''Administration Publique'),
(109960, 'https://ror.org/05wxkj555', 'en', 1, 'https://ror.org/05wxkj555 Cukurova University Ƈukurova Ɯniversitesi'),
(109961, 'https://ror.org/05wyxj832', 'en', 1, 'https://ror.org/05wyxj832 Girne Üniversitesi University of Kyrenia'),
(109962, 'https://ror.org/05wzft155', 'en', 1, 'https://ror.org/05wzft155 Our Lady of Fatima University Pamantasang Our Lady of Fatima'),
(109963, 'https://ror.org/05x1ptx12', 'en', 1, 'https://ror.org/05x1ptx12 Heilongjiang University of Chinese Medicine'),
(109964, 'https://ror.org/05x2wrh98', 'en', 1, 'https://ror.org/05x2wrh98 Institute of Geological Sciences'),
(109965, 'https://ror.org/05x4m5564', 'en', 1, 'https://ror.org/05x4m5564 Public Health Agency of Sweden'),
(109966, 'https://ror.org/05x535462', 'no_lang_code', 1, 'https://ror.org/05x535462 Sapporo Gakuin University ęœ­å¹Œå­¦é™¢å¤§å­¦'),
(109967, 'https://ror.org/05x8v1903', 'en', 1, 'https://ror.org/05x8v1903 Alaska Division of Geological and Geophysical Surveys'),
(109968, 'https://ror.org/05xagc088', 'en', 1, 'https://ror.org/05xagc088 North Atlantic Treaty Organization Organisation du traitƩ de l''Atlantique Nord'),
(109969, 'https://ror.org/05xca8873', 'pt', 1, 'https://ror.org/05xca8873 Direção de Formação'),
(109970, 'https://ror.org/05xdczy51', 'en', 1, 'https://ror.org/05xdczy51 Deutsches Institut für Ernährungsforschung Potsdam-Rehbrücke German Institute of Human Nutrition'),
(109971, 'https://ror.org/05xdejm35', 'en', 1, 'https://ror.org/05xdejm35 Research Institute for Safety Engineering å…¬ē›Šč²”å›£ę³•äŗŗē·åˆå®‰å…Øå·„å­¦ē ”ē©¶ę‰€'),
(109972, 'https://ror.org/05xek1n35', 'en', 1, 'https://ror.org/05xek1n35 Todachuo General Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę±å…‰ä¼šęˆøē”°äø­å¤®ē·åˆē—…é™¢'),
(109973, 'https://ror.org/05xenc464', 'en', 1, 'https://ror.org/05xenc464 Kawasaki Rinko General Hospital ē·åˆå·å“Žč‡ØęøÆē—…é™¢'),
(109974, 'https://ror.org/05xf50770', 'en', 1, 'https://ror.org/05xf50770 Niroo Research Institute'),
(109975, 'https://ror.org/05xfmys41', 'pt', 1, 'https://ror.org/05xfmys41 BPI Lisboa (Portugal) BPI Lisbon'),
(109976, 'https://ror.org/05xj56w78', 'en', 1, 'https://ror.org/05xj56w78 National Institute of Mental Health'),
(109977, 'https://ror.org/05xkpwy13', 'en', 1, 'https://ror.org/05xkpwy13 Westcliff University'),
(109978, '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'),
(109979, 'https://ror.org/05xpy2592', 'en', 1, 'https://ror.org/05xpy2592 Museum of Prague Muzeum hlavnƭho města Prahy'),
(109980, 'https://ror.org/05xqrc755', 'en', 1, 'https://ror.org/05xqrc755 Kurobe City Hospital é»’éƒØåø‚ę°‘ē—…é™¢'),
(109981, 'https://ror.org/05xqycm14', 'en', 1, 'https://ror.org/05xqycm14 Tripura University ą¤¤ą„ą¤°ą¤æą¤Ŗą„ą¤°ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¤ą§ą¦°ą¦æą¦Ŗą§ą¦°ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ திரிபுரா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(109982, 'https://ror.org/05xr2yq54', 'es', 1, 'https://ror.org/05xr2yq54 Centro de Investigacion Principe Felipe PrĆ­ncipe Felipe Research Center'),
(109983, 'https://ror.org/05xs52z55', 'en', 1, 'https://ror.org/05xs52z55 The Takeda Foundation äø€čˆ¬č²”å›£ę³•äŗŗę­¦ē”°čØˆęø¬å…ˆē«ÆēŸ„č²”å›£'),
(109984, 'https://ror.org/05xsxn838', 'fr', 1, 'https://ror.org/05xsxn838 Ɖcole Nationale SupĆ©rieure des Arts DĆ©coratifs'),
(109985, 'https://ror.org/05xsza309', 'en', 1, 'https://ror.org/05xsza309 Kagoshima Prefectural Government é¹æå…å³¶ēœŒåŗ'),
(109986, 'https://ror.org/05xwb6v37', 'en', 1, 'https://ror.org/05xwb6v37 Universidad de Scranton University of Scranton UniversitƩ de scranton'),
(109987, 'https://ror.org/05xx1v358', 'en', 1, 'https://ror.org/05xx1v358 Hay’adda Istaatistikada Qaranka Soomaaliya Somalia National Bureau of Statistics'),
(109988, 'https://ror.org/05xya7b65', 'en', 1, 'https://ror.org/05xya7b65 Jyoban Hospital of Tokiwa Foundation å…¬ē›Šč²”å›£ę³•äŗŗćØćć‚ä¼šåøøē£ē—…é™¢'),
(109989, 'https://ror.org/05xydav19', 'en', 1, 'https://ror.org/05xydav19 Southampton Solent University'),
(109990, 'https://ror.org/05xzdtn10', 'es', 1, 'https://ror.org/05xzdtn10 CIRCE - Centro Tecnológico CIRCE - Technology Centre'),
(109991, 'https://ror.org/05xzf9508', 'en', 1, 'https://ror.org/05xzf9508 Federal University of Technology Owerri'),
(109992, 'https://ror.org/05y28vr04', 'no_lang_code', 1, 'https://ror.org/05y28vr04 MSD (Netherlands)'),
(109993, 'https://ror.org/05y7et149', 'en', 1, 'https://ror.org/05y7et149 Nara Prefectural Pharmaceutical Research Center å„ˆč‰ÆēœŒč–¬äŗ‹ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(109994, 'https://ror.org/05yb43k62', 'en', 1, 'https://ror.org/05yb43k62 EMNO UniversitƩ NOSM University'),
(109995, 'https://ror.org/05yc0wv86', 'en', 1, 'https://ror.org/05yc0wv86 University of the City of Manila'),
(109996, 'https://ror.org/05yc82y16', 'en', 1, 'https://ror.org/05yc82y16 Kamma Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåšę„›ä¼šč…é–“čØ˜åæµē—…é™¢'),
(109997, 'https://ror.org/05yksqt98', 'pt', 1, 'https://ror.org/05yksqt98 ForƧa AƩrea Portuguesa'),
(109998, 'https://ror.org/05yn67m85', 'en', 1, 'https://ror.org/05yn67m85 VIB Single Cell Core'),
(109999, 'https://ror.org/05ynctv81', 'es', 1, 'https://ror.org/05ynctv81 Corporación Universitaria Lasallista'),
(110000, 'https://ror.org/05yptqp13', 'en', 1, 'https://ror.org/05yptqp13 SveučiliŔte u Dubrovniku University of Dubrovnik'),
(110001, 'https://ror.org/00003ef66', 'en', 1, 'https://ror.org/00003ef66 All India Institute of Ayurveda, New Delhi'),
(110002, 'https://ror.org/0000pc329', 'fr', 1, 'https://ror.org/0000pc329 Sinergies'),
(110003, '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'),
(110004, 'https://ror.org/0001rqc34', 'es', 1, 'https://ror.org/0001rqc34 Hospital Central Norte de Petroleos Mexicanos'),
(110005, 'https://ror.org/00051wc04', 'no_lang_code', 1, 'https://ror.org/00051wc04 Oracle (Portugal)'),
(110006, 'https://ror.org/0006cvt76', 'en', 1, 'https://ror.org/0006cvt76 Griffith College'),
(110007, '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)'),
(110008, 'https://ror.org/0007enk15', 'en', 1, 'https://ror.org/0007enk15 HMS Hamburg Media School GmbH, Hamburg Media School'),
(110009, 'https://ror.org/0007wfz33', 'en', 1, 'https://ror.org/0007wfz33 Scientific Center for Optical and Electron Microscopy'),
(110010, 'https://ror.org/000818d46', 'en', 1, 'https://ror.org/000818d46 Hokkaido Industrial Technology Center åŒ—ęµ·é“ē«‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(110011, 'https://ror.org/000865z52', 'en', 1, 'https://ror.org/000865z52 Governo Regional da Madeira Regional Government of Madeira'),
(110012, 'https://ror.org/0008p2x82', 'pt', 1, 'https://ror.org/0008p2x82 Instituto de Estudos ClƔssicos'),
(110013, 'https://ror.org/0008vp155', 'da', 1, 'https://ror.org/0008vp155 Grundfos Fond Grundfos Foundation'),
(110014, 'https://ror.org/0009gmq77', 'en', 1, 'https://ror.org/0009gmq77 Nigeria Police Academy'),
(110015, 'https://ror.org/0009t4v78', 'en', 1, 'https://ror.org/0009t4v78 Anglia Ruskin University, Anglia Ruskin University Higher Education Corporation Prifysgol Anglia Ruskin'),
(110016, 'https://ror.org/000b3gw41', 'it', 1, 'https://ror.org/000b3gw41 Agenzia Regionale per la Protezione dell''Ambiente Campania'),
(110017, 'https://ror.org/000c03k13', 'pt', 1, 'https://ror.org/000c03k13 Sociedade Portuguesa de Otorrinolaringologia e Cirurgia de CabeƧa e PescoƧo'),
(110018, 'https://ror.org/000c93k10', 'pt', 1, 'https://ror.org/000c93k10 Centro de Investigação em Materiais'),
(110019, 'https://ror.org/000e39j32', 'pt', 1, 'https://ror.org/000e39j32 Centro para a Excelência e Inovação na Indústria Automóvel'),
(110020, 'https://ror.org/000ghw467', 'en', 1, 'https://ror.org/000ghw467 Sir Mark Mitchell Research Foundation'),
(110021, 'https://ror.org/000kxhc93', 'en', 1, 'https://ror.org/000kxhc93 All India Institute of Medical Sciences Guwahati अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€'),
(110022, 'https://ror.org/000n1xh78', 'fr', 0, 'https://ror.org/000n1xh78 Biopathologie de la myƩline, neuroprotection et stratƩgies thƩrapeutiques'),
(110023, 'https://ror.org/000nfmp17', 'fr', 1, 'https://ror.org/000nfmp17 Centre de Recherche sur l''AmƩrique PrƩ-hispanique'),
(110024, 'https://ror.org/000peaf50', 'en', 1, 'https://ror.org/000peaf50 Image Insight Inc. (United States)'),
(110025, 'https://ror.org/000t1zq41', 'en', 1, 'https://ror.org/000t1zq41 The Japan Bloodhorse Breeders''Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č»½ēØ®é¦¬å”ä¼š'),
(110026, 'https://ror.org/000t8cv40', 'en', 1, 'https://ror.org/000t8cv40 National Council for Civilian Research and Development'),
(110027, 'https://ror.org/000t9e931', 'pt', 1, 'https://ror.org/000t9e931 Centro de Estudos de Sociologia e EstƩtica Musical'),
(110028, 'https://ror.org/000tpgs13', 'en', 1, 'https://ror.org/000tpgs13 Muthesius Kunsthochschule Muthesius University of Fine Arts and Design'),
(110029, 'https://ror.org/000trq935', 'en', 1, 'https://ror.org/000trq935 All India Institute of Medical Sciences Bibinagar'),
(110030, 'https://ror.org/000wy3051', 'en', 1, 'https://ror.org/000wy3051 UTMS Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗUTMS協会'),
(110031, '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');
INSERT INTO `rors` VALUES
(110032, 'https://ror.org/000xwam85', 'de', 1, 'https://ror.org/000xwam85 Museum of Natural History Solothurn MusĆ©e d’histoire naturelle de Soleure Naturmuseum Solothurn'),
(110033, 'https://ror.org/000ztjy10', 'en', 1, 'https://ror.org/000ztjy10 Naval Information Warfare Systems Command'),
(110034, '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'),
(110035, '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.'),
(110036, 'https://ror.org/0014fb593', 'en', 1, 'https://ror.org/0014fb593 University of Food Technologies'),
(110037, 'https://ror.org/0014zp728', 'en', 1, 'https://ror.org/0014zp728 The Japanese Society of Printing Science and Technology äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å°åˆ·å­¦ä¼š'),
(110038, 'https://ror.org/0015h8611', 'fr', 1, 'https://ror.org/0015h8611 Astrophysique, Instrumentation et ModƩlisation'),
(110039, 'https://ror.org/0017c2n05', 'en', 1, 'https://ror.org/0017c2n05 Tochigi Prefectural Okamotodai Hospital åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę ƒęœØēœŒē«‹å²”ęœ¬å°ē—…é™¢'),
(110040, 'https://ror.org/0017qee02', 'en', 1, 'https://ror.org/0017qee02 Environmental Radioactivity Monitoring Center of Fukushima ē¦å³¶ēœŒåŽŸå­åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(110041, 'https://ror.org/0019ead15', 'en', 1, 'https://ror.org/0019ead15 University of Ilesa'),
(110042, 'https://ror.org/001bgrc10', 'en', 1, 'https://ror.org/001bgrc10 Hellenic Society of Emergency Prehospital Care Ελληνική Εταιρεία Ī•Ļ€ĪµĪÆĪ³ĪæĻ…ĻƒĪ±Ļ‚ Ī ĻĪæĪ½ĪæĻƒĪæĪŗĪæĪ¼ĪµĪ¹Ī±ĪŗĪ®Ļ‚ ΦροντίΓας'),
(110043, 'https://ror.org/001ccf545', 'no_lang_code', 1, 'https://ror.org/001ccf545 Wipro (India)'),
(110044, 'https://ror.org/001cp5661', 'pt', 1, 'https://ror.org/001cp5661 Centro de Investigação em Estruturas e Construção'),
(110045, 'https://ror.org/001emy730', 'en', 1, 'https://ror.org/001emy730 Embry-Riddle Aeronautical University Daytona Beach Florida Campus'),
(110046, 'https://ror.org/001g3jn25', 'en', 1, 'https://ror.org/001g3jn25 Japan Soil Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åœŸå£Œå”ä¼š'),
(110047, 'https://ror.org/001gedw60', 'es', 1, 'https://ror.org/001gedw60 Instituto Tecnológico Superior de Huichapan'),
(110048, 'https://ror.org/001ghdf98', 'en', 1, 'https://ror.org/001ghdf98 Baldwin Wallace University'),
(110049, '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'),
(110050, 'https://ror.org/001kbww44', 'pt', 1, 'https://ror.org/001kbww44 Museu Municipal Dr Santos Rocha'),
(110051, 'https://ror.org/001kjn539', 'en', 1, 'https://ror.org/001kjn539 St Vincent''s Hospital'),
(110052, 'https://ror.org/001p2e958', 'en', 0, 'https://ror.org/001p2e958 Argosy University'),
(110053, 'https://ror.org/001r3gq61', 'en', 1, 'https://ror.org/001r3gq61 The Architectural Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰å”ä¼š'),
(110054, 'https://ror.org/001ssys51', 'pt', 1, 'https://ror.org/001ssys51 AgĆŖncia Espacial Portuguesa'),
(110055, 'https://ror.org/001szvq52', 'en', 1, 'https://ror.org/001szvq52 Air Force Institute of Technology Kaduna'),
(110056, 'https://ror.org/001tmjg57', 'en', 1, 'https://ror.org/001tmjg57 Universidad de Kansas University of Kansas UniversitƩ du kansas'),
(110057, 'https://ror.org/001w7jn25', 'de', 1, 'https://ror.org/001w7jn25 CharitƩ - UniversitƤtsmedizin Berlin'),
(110058, 'https://ror.org/001xjdh50', 'en', 1, 'https://ror.org/001xjdh50 Kansai Medical University é–¢č„æåŒ»ē§‘å¤§å­¦'),
(110059, 'https://ror.org/001zwgm84', 'en', 1, 'https://ror.org/001zwgm84 NSF CI Compass'),
(110060, 'https://ror.org/0020kf976', 'en', 1, 'https://ror.org/0020kf976 Klabat University Universitas Klabat'),
(110061, 'https://ror.org/00226ge45', 'en', 1, 'https://ror.org/00226ge45 Global Green Growth Institute, Global Green Growth Institute (South Korea) źø€ė”œė²Œė…¹ģƒ‰ģ„±ģž„ģ—°źµ¬ģ†Œ'),
(110062, 'https://ror.org/0022kt416', 'en', 1, 'https://ror.org/0022kt416 Japan Housing Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½å®…å”ä¼š'),
(110063, 'https://ror.org/0022tw254', 'en', 1, 'https://ror.org/0022tw254 Jacobs (Australia), Jacobs Australia Pty Ltd'),
(110064, 'https://ror.org/0022v1p96', 'en', 1, 'https://ror.org/0022v1p96 Institut für Verhaltenswissenschaften Institute of Behavioral Sciences'),
(110065, 'https://ror.org/00232ct28', 'en', 1, 'https://ror.org/00232ct28 Federal University of Health Sciences, Ila-Orangun'),
(110066, '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'),
(110067, 'https://ror.org/0026cwk62', 'en', 1, 'https://ror.org/0026cwk62 The Palliative Care Centre for Excellence in Research and Education'),
(110068, 'https://ror.org/0026v5a61', 'pt', 1, 'https://ror.org/0026v5a61 Serviço Regional de Proteção Civil e Bombeiros dos Açores'),
(110069, 'https://ror.org/0027d9x02', 'en', 1, 'https://ror.org/0027d9x02 Suzhou Institute of Nano-tech and Nano-bionics äø­å›½ē§‘å­¦é™¢č‹å·žēŗ³ē±³ęŠ€ęœÆäøŽēŗ³ē±³ä»æē”Ÿē ”ē©¶ę‰€'),
(110070, 'https://ror.org/00286hs46', 'en', 1, 'https://ror.org/00286hs46 Kaminuza y’u Rwanda University of Rwanda UniversitĆ© du Rwanda'),
(110071, '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)'),
(110072, 'https://ror.org/002gnht82', 'en', 1, 'https://ror.org/002gnht82 Sanaka Educational Trust’s Group of Institutions'),
(110073, 'https://ror.org/002h4ry72', 'en', 1, 'https://ror.org/002h4ry72 Co-design Center for Quantum Advantage'),
(110074, 'https://ror.org/002jzkf60', 'no_lang_code', 1, 'https://ror.org/002jzkf60 DIGESTAID, DIGESTAID (Portugal)'),
(110075, 'https://ror.org/002k5fe57', 'no_lang_code', 1, 'https://ror.org/002k5fe57 Octapharma (Switzerland)'),
(110076, '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'),
(110077, 'https://ror.org/002mztf78', 'en', 1, 'https://ror.org/002mztf78 Japan Scientific Feeds Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦é£¼ę–™å”ä¼š'),
(110078, 'https://ror.org/002n7pq15', 'es', 1, 'https://ror.org/002n7pq15 Universidad PolitƩcnica de Santa Rosa Jauregui'),
(110079, 'https://ror.org/002nfjv61', 'pt', 1, 'https://ror.org/002nfjv61 Sociedade Portuguesa de EstatĆ­stica'),
(110080, 'https://ror.org/002qcfp85', 'en', 1, 'https://ror.org/002qcfp85 Production and Archive of Social Science Data'),
(110081, 'https://ror.org/002rjbv21', 'fr', 1, 'https://ror.org/002rjbv21 University of Quebec in Montreal UniversitƩ du QuƩbec Ơ MontrƩal'),
(110082, 'https://ror.org/002srw947', 'en', 1, 'https://ror.org/002srw947 Saito Koyu Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗč„æéƒ½å…ę¹ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(110083, 'https://ror.org/002tnzj78', 'pt', 1, 'https://ror.org/002tnzj78 Conselho Nacional de Ɖtica para as CiĆŖncias da Vida'),
(110084, 'https://ror.org/002wn1w29', 'pt', 1, 'https://ror.org/002wn1w29 Centro de Direito do Consumo'),
(110085, 'https://ror.org/002zvky07', 'en', 1, 'https://ror.org/002zvky07 Kagawa Industry Support Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‹ćŒć‚ē”£ę„­ę”Æę“č²”å›£'),
(110086, 'https://ror.org/00306vw82', 'en', 1, 'https://ror.org/00306vw82 World Wide Fund for Nature Japan å…¬ē›Šč²”å›£ę³•äŗŗäø–ē•Œč‡Ŗē„¶äæč­·åŸŗé‡‘ć‚øćƒ£ćƒ‘ćƒ³'),
(110087, 'https://ror.org/0030zas98', 'en', 1, 'https://ror.org/0030zas98 Hong Kong Polytechnic University 香港理巄大學'),
(110088, 'https://ror.org/0032sc770', 'fr', 0, 'https://ror.org/0032sc770 Laboratoire de Biophotonique et Pharmacologie Laboratory of Biophotonics and Pharmacology'),
(110089, 'https://ror.org/003346y56', 'en', 1, 'https://ror.org/003346y56 Ispahani Islamia Eye Institute and Hospital'),
(110090, 'https://ror.org/0033wqw71', 'pt', 1, 'https://ror.org/0033wqw71 Fundação ÁrpÔd Szenes Vieira da Silva'),
(110091, 'https://ror.org/0034me914', 'en', 1, 'https://ror.org/0034me914 Saveetha University'),
(110092, 'https://ror.org/003536y35', 'en', 1, 'https://ror.org/003536y35 South Miyagi Medical Center ćæć‚„ćŽēœŒå—äø­ę øē—…é™¢'),
(110093, 'https://ror.org/00357kh21', 'fr', 1, 'https://ror.org/00357kh21'),
(110094, 'https://ror.org/00377k374', 'es', 1, 'https://ror.org/00377k374 Fundación Interhospitalaria para la Investigación Cardiovascular'),
(110095, 'https://ror.org/003873p55', 'en', 1, 'https://ror.org/003873p55 National Policing Institute'),
(110096, 'https://ror.org/0038jry16', 'pt', 1, 'https://ror.org/0038jry16 Hospital Santa Luzia'),
(110097, 'https://ror.org/0038zss60', 'en', 1, 'https://ror.org/0038zss60 European Marine Biological Resource Centre'),
(110098, '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'),
(110099, 'https://ror.org/0039e5h59', 'pt', 1, 'https://ror.org/0039e5h59 Cooperativa de Formação e Animação Cultural CRL'),
(110100, 'https://ror.org/0039zvd55', 'fr', 1, 'https://ror.org/0039zvd55 Labex EMC3'),
(110101, 'https://ror.org/003aydv21', 'en', 1, 'https://ror.org/003aydv21 Iwate Prefectural Ichinohe Hospital å²©ę‰‹ēœŒē«‹äø€ęˆøē—…é™¢'),
(110102, 'https://ror.org/003b7tf67', 'fr', 1, 'https://ror.org/003b7tf67 Centre Universitaire Morsli Abdellah de Tipaza Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł…Ų±Ų³Ł„ŁŠ Ų¹ŲØŲÆ الله تيبازة الجزائر'),
(110103, 'https://ror.org/003bjsc39', 'en', 1, 'https://ror.org/003bjsc39 Japanese Association of Occupational Therapists äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½œę„­ē™‚ę³•å£«å”ä¼š'),
(110104, 'https://ror.org/003bsdh42', 'en', 1, 'https://ror.org/003bsdh42 Binnig and Rohrer Nanotechnology Center'),
(110105, 'https://ror.org/003cgs259', 'fr', 1, 'https://ror.org/003cgs259 Centre de recherche sur le droit des marchƩs et des investissements internationaux'),
(110106, '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'),
(110107, 'https://ror.org/003eyrc02', 'es', 1, 'https://ror.org/003eyrc02 Instituto de GeologĆ­a'),
(110108, 'https://ror.org/003fkdj63', 'de', 1, 'https://ror.org/003fkdj63 Centre for Sustainable Development Zentrum Nachhaltige Entwicklung'),
(110109, 'https://ror.org/003fvp188', 'no_lang_code', 1, 'https://ror.org/003fvp188 Caixa Geral de Depositos, Caixa Geral de Depositos (Portugal)'),
(110110, 'https://ror.org/003fvsp28', 'id', 1, 'https://ror.org/003fvsp28 Universitas Nahdlatul Ulama Blitar'),
(110111, 'https://ror.org/003g5mn55', 'en', 1, 'https://ror.org/003g5mn55 Sieć Badawcza Łukasiewicz - Instytut Lotnictwa Łukasiewicz Research Network - Institute of Aviation'),
(110112, 'https://ror.org/003gxqe71', 'en', 1, 'https://ror.org/003gxqe71 Japan Copper Development Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬éŠ…ć‚»ćƒ³ć‚æćƒ¼'),
(110113, 'https://ror.org/003hg3x32', 'en', 1, 'https://ror.org/003hg3x32 Amagasaki City Institute of Public Health å°¼å“Žåø‚ē«‹č”›ē”Ÿē ”ē©¶ę‰€'),
(110114, 'https://ror.org/003hsr719', 'en', 1, 'https://ror.org/003hsr719 Sefako Makgatho Health Sciences University'),
(110115, 'https://ror.org/003jjq839', 'en', 1, 'https://ror.org/003jjq839 University of Hormozgan'),
(110116, 'https://ror.org/003jt2y14', 'en', 1, 'https://ror.org/003jt2y14 Cluster University of Jammu'),
(110117, 'https://ror.org/003kmcj19', 'no_lang_code', 1, 'https://ror.org/003kmcj19 Karl Storz (Germany)'),
(110118, 'https://ror.org/003qdfg20', 'en', 1, 'https://ror.org/003qdfg20 Soka University 創侔大学'),
(110119, 'https://ror.org/003sddv93', 'en', 1, 'https://ror.org/003sddv93 Shri Lal Bahadur Shastri Degree College, Gonda ą¤¶ą„ą¤°ą„€ लाल ą¤¬ą¤¹ą¤¾ą¤¦ą„ą¤° ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤°ą„€ ą¤”ą¤æą¤—ą„ą¤°ą„€ ą¤•ą„‰ą¤²ą„‡ą¤œ, ą¤—ą„‹ą¤£ą„ą¤”ą¤¾'),
(110120, 'https://ror.org/003shc010', 'es', 1, 'https://ror.org/003shc010 Escuela Radical'),
(110121, 'https://ror.org/003shpf72', 'en', 1, 'https://ror.org/003shpf72 Institute of Public Health Bengaluru'),
(110122, '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'),
(110123, 'https://ror.org/003v3fz65', 'es', 1, 'https://ror.org/003v3fz65 Centro de AstropartĆ­culas y FĆ­sica de Altas EnergĆ­as'),
(110124, 'https://ror.org/003y0kg83', 'fr', 1, 'https://ror.org/003y0kg83 Centre de Gestion Scientifique, Mines Paris, UniversitƩ PSL, Centre de Gestion Scientifique (CGS) Mines Paris, PSL University, Centre for management science (CGS)'),
(110125, 'https://ror.org/003zsfh57', 'pt', 1, 'https://ror.org/003zsfh57 Laboratório de Energia Solar'),
(110126, 'https://ror.org/0040ykz39', 'no_lang_code', 0, 'https://ror.org/0040ykz39 C3J Therapeutics (United States)'),
(110127, 'https://ror.org/0041cxe63', 'en', 1, 'https://ror.org/0041cxe63 Marine Ecosystems and oRganisms reSEArch Lab'),
(110128, 'https://ror.org/0041d2q41', 'en', 1, 'https://ror.org/0041d2q41 National Sanatorium Miyako Nanseien å›½ē«‹ē™‚é¤Šę‰€å®®å¤å—é™åœ’'),
(110129, 'https://ror.org/0042p7n06', 'en', 1, 'https://ror.org/0042p7n06 Shonan Institute of Chemoinformatics and Mathmatical Chemistry ę¹˜å—ęƒ…å ±ę•°ē†åŒ–å­¦ē ”ē©¶ę‰€'),
(110130, 'https://ror.org/0043h8f16', 'en', 1, 'https://ror.org/0043h8f16 Universidad de Dakota del Sur University of South Dakota UniversitƩ du Dakota du Sud'),
(110131, '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'),
(110132, 'https://ror.org/00466x086', 'en', 1, 'https://ror.org/00466x086 PROPUL Evidence LLP, PROPUL Evidence LLP (India)'),
(110133, 'https://ror.org/0046gcs23', 'en', 1, 'https://ror.org/0046gcs23 Max Planck Institute for Infection Biology Max-Planck-Institut für Infektionsbiologie'),
(110134, 'https://ror.org/0049xax05', 'en', 1, 'https://ror.org/0049xax05 AgĆŖncia Portuguesa do Ambiente Portuguese Environment Agency'),
(110135, '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'),
(110136, 'https://ror.org/004cv0665', 'en', 1, 'https://ror.org/004cv0665 Yildirim Beyazit University Yenimahalle Education and Research Hospital'),
(110137, 'https://ror.org/004dwjp24', 'en', 1, 'https://ror.org/004dwjp24 The Institute of Oriental Philosophy å…¬ē›Šč²”å›£ę³•äŗŗę±ę“‹å“²å­¦ē ”ē©¶ę‰€'),
(110138, 'https://ror.org/004e3rc90', 'no_lang_code', 1, 'https://ror.org/004e3rc90 Metablue Solution (Portugal)'),
(110139, 'https://ror.org/004fmxv66', 'fr', 1, 'https://ror.org/004fmxv66 Franche-ComtĆ© Ɖlectronique MĆ©canique Thermique et Optique - Sciences et Technologies'),
(110140, 'https://ror.org/004fpq690', 'en', 1, 'https://ror.org/004fpq690 CzechNanoLab Research Infrastructure VýzkumnÔ infrastruktura CzechNanoLab'),
(110141, 'https://ror.org/004gem776', 'en', 1, 'https://ror.org/004gem776 Ministry of Agriculture Regionaal - Ja PƵllumajandusministeerium'),
(110142, 'https://ror.org/004hg5r31', 'en', 1, 'https://ror.org/004hg5r31 Hiraoka Environmental Science Laboratory å…¬ē›Šč²”å›£ę³•äŗŗå¹³å²”ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(110143, 'https://ror.org/004k6zk54', 'fr', 1, 'https://ror.org/004k6zk54 Structure et activitƩ des biomolƩcules normales et pathologiques'),
(110144, 'https://ror.org/004m1nt14', 'en', 1, 'https://ror.org/004m1nt14 National Art School'),
(110145, 'https://ror.org/004n81v75', 'fr', 1, 'https://ror.org/004n81v75 Ecole Normale SupĆ©rieure of Laghouat المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ŲØŲ§Ł„Ų£ŲŗŁˆŲ§Ų·'),
(110146, 'https://ror.org/004p1pb71', 'en', 1, 'https://ror.org/004p1pb71 Japan Basketball Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒć‚¹ć‚±ćƒƒćƒˆćƒœćƒ¼ćƒ«å”ä¼š'),
(110147, 'https://ror.org/004p8an59', 'no_lang_code', 1, 'https://ror.org/004p8an59 SGS Portugal (Portugal), SGS Portugal SA, SGS Portugal, S.A.'),
(110148, 'https://ror.org/004qcrr52', 'es', 1, 'https://ror.org/004qcrr52 Instituto Nacional de Innovación Agraria National Institute of Agrarian Innovation'),
(110149, 'https://ror.org/004s7zp13', 'pt', 1, 'https://ror.org/004s7zp13 Biblioteca Municipal de Santa Maria da Feira'),
(110150, 'https://ror.org/004svx814', 'en', 1, 'https://ror.org/004svx814 Government of Jiangsu Province'),
(110151, 'https://ror.org/004tay810', 'en', 1, 'https://ror.org/004tay810 Military Sealift Command'),
(110152, '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'),
(110153, '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)'),
(110154, 'https://ror.org/004y7f915', 'ms', 1, 'https://ror.org/004y7f915 Universiti Teknologi Brunei'),
(110155, 'https://ror.org/004y9ds29', 'pt', 1, 'https://ror.org/004y9ds29 Sociedade Portuguesa de Biotecnologia'),
(110156, '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'),
(110157, 'https://ror.org/004z2ax38', 'fr', 1, 'https://ror.org/004z2ax38 Centre de recherche sur les droits de l''Homme et le droit humanitaire'),
(110158, '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'),
(110159, 'https://ror.org/00510tw04', 'en', 1, 'https://ror.org/00510tw04 Cancer Australia'),
(110160, 'https://ror.org/0052cym82', 'en', 1, 'https://ror.org/0052cym82 Choshi Hospital éŠšå­åø‚ē«‹ē—…é™¢'),
(110161, 'https://ror.org/0052svj16', 'no_lang_code', 1, 'https://ror.org/0052svj16 Abbott (United States) Laboratoires Abbott'),
(110162, 'https://ror.org/00560h931', 'en', 1, 'https://ror.org/00560h931 Tio Business School'),
(110163, 'https://ror.org/005616b46', 'en', 1, 'https://ror.org/005616b46 Competence Center Energy and Mobility Kompetenzzentrum für Energie und Mobilität'),
(110164, 'https://ror.org/0056n6234', 'en', 1, 'https://ror.org/0056n6234 International Lake Environment Committee Foundation å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ę¹–ę²¼ē’°å¢ƒå§”å“”ä¼š'),
(110165, 'https://ror.org/00573e884', 'en', 1, 'https://ror.org/00573e884 Nagano Nanshin Agricultural Experiment Station é•·é‡ŽēœŒå—äæ”č¾²ę„­č©¦éØ“å “'),
(110166, 'https://ror.org/0057ax056', 'en', 1, 'https://ror.org/0057ax056 King Mongkut''s University of Technology Thonburi ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ąø˜ąø™ąøšąøøąø£ąøµ'),
(110167, 'https://ror.org/0057tc939', 'en', 1, 'https://ror.org/0057tc939 Japan Construction Training Center äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½å»ŗčØ­ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(110168, 'https://ror.org/0059w6r63', 'no_lang_code', 1, 'https://ror.org/0059w6r63 Bloom Up (Portugal)'),
(110169, 'https://ror.org/005a50d87', 'en', 1, 'https://ror.org/005a50d87 MagIC'),
(110170, 'https://ror.org/005bf9897', 'en', 1, 'https://ror.org/005bf9897 Fire Technology and Safety Laboratory, Tokyo Fire Department ę±äŗ¬ę¶ˆé˜²åŗę¶ˆé˜²ęŠ€č”“å®‰å…Øę‰€'),
(110171, 'https://ror.org/005d2xw40', 'id', 1, 'https://ror.org/005d2xw40 Universitas Islam Negeri Fatmawati Sukarno Bengkulu'),
(110172, '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'),
(110173, '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.'),
(110174, 'https://ror.org/005fjj927', 'fr', 1, 'https://ror.org/005fjj927 Ecosystèmes, Biodiversité, Evolution'),
(110175, '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 Ā»'),
(110176, 'https://ror.org/005nteb15', 'en', 1, 'https://ror.org/005nteb15 Gachon University Gil Medical Center ź°€ģ²œėŒ€ 길병원'),
(110177, 'https://ror.org/005pygq66', 'en', 1, 'https://ror.org/005pygq66 VASCERN'),
(110178, 'https://ror.org/005r2ww51', 'en', 1, 'https://ror.org/005r2ww51 Symbiosis International University'),
(110179, 'https://ror.org/005stwr12', 'no_lang_code', 1, 'https://ror.org/005stwr12 Lidel EdiƧƵes TƩcnicas (Portugal), Lidel Technical Editions'),
(110180, 'https://ror.org/005teat46', 'ca', 1, 'https://ror.org/005teat46 Institut de Recerca Sant Pau'),
(110181, 'https://ror.org/005vft420', 'en', 1, 'https://ror.org/005vft420 Suga Weathering Technology Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚¹ć‚¬ć‚¦ć‚§ć‚¶ćƒŖćƒ³ć‚°ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(110182, 'https://ror.org/005xm8c52', 'en', 1, 'https://ror.org/005xm8c52 Hokkaido Road Management Engineering Center äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“é“č·Æē®”ē†ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(110183, 'https://ror.org/0061z8559', 'pt', 1, 'https://ror.org/0061z8559 Sociedade Portuguesa de Microbiologia'),
(110184, 'https://ror.org/0063g1m23', 'en', 1, 'https://ror.org/0063g1m23 The State Archives in Dubrovnik'),
(110185, 'https://ror.org/0064kty71', 'en', 1, 'https://ror.org/0064kty71 Sun Yat-sen University 中山大学'),
(110186, '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) Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ للبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠ'),
(110187, 'https://ror.org/0067q4j84', 'en', 1, 'https://ror.org/0067q4j84 Swiss Economics, Swiss Economics (Switzerland)'),
(110188, 'https://ror.org/006ae1882', 'en', 1, 'https://ror.org/006ae1882 Institute of Polymers Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠŸŠ¾Š»ŠøŠ¼ŠµŃ€Šø'),
(110189, 'https://ror.org/006b2g567', 'en', 1, 'https://ror.org/006b2g567 Government of Alberta'),
(110190, 'https://ror.org/006b5q767', 'fr', 1, 'https://ror.org/006b5q767 CIRAD - Direction gƩnƩrale'),
(110191, 'https://ror.org/006c77m33', 'no_lang_code', 1, 'https://ror.org/006c77m33 Oracle (United States)'),
(110192, 'https://ror.org/006c8a128', 'de', 1, 'https://ror.org/006c8a128 Ruhrlandklinik'),
(110193, 'https://ror.org/006de3q07', 'en', 1, 'https://ror.org/006de3q07 American International Theism University'),
(110194, 'https://ror.org/006dgdz57', 'no_lang_code', 1, 'https://ror.org/006dgdz57 Media Invest (Portugal)'),
(110195, 'https://ror.org/006e1h504', 'es', 1, 'https://ror.org/006e1h504 Pontificia Universidad Católica del Ecuador Sede Manabí'),
(110196, 'https://ror.org/006e4ws51', 'de', 1, 'https://ror.org/006e4ws51 ZEIT-Stiftung'),
(110197, 'https://ror.org/006eae983', 'en', 1, 'https://ror.org/006eae983 Nuclear Institute of Agriculture (NIA) Tandojam, Nuclear Institute of Agriculture, Tandojam'),
(110198, 'https://ror.org/006ha6n07', 'es', 1, 'https://ror.org/006ha6n07 Editorial de la Universidad de Cantabria'),
(110199, 'https://ror.org/006hf6230', 'en', 1, 'https://ror.org/006hf6230 Universiteit Twente University of Twente'),
(110200, 'https://ror.org/006j39w13', 'en', 1, 'https://ror.org/006j39w13 Fukui Prefecture Inland Waters Center ē¦äŗ•ēœŒå†…ę°“é¢ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(110201, 'https://ror.org/006kks873', 'en', 1, 'https://ror.org/006kks873 Hunan Credo Pump Co., Ltd, Hunan Credo Pump Co., Ltd (China) ę¹–å—å‡Æåˆ©ē‰¹ę³µäøšęœ‰é™å…¬åø'),
(110202, 'https://ror.org/006p0ay31', 'en', 1, 'https://ror.org/006p0ay31 Nippon Koei Bangladesh, Nippon Koei Bangladesh Ltd. (Bangladesh)'),
(110203, 'https://ror.org/006t9zc28', 'en', 1, 'https://ror.org/006t9zc28 Tokyo Fisheries Promotion Foundation äø€čˆ¬č²”å›£ę³•äŗŗę±äŗ¬ę°“ē”£ęŒÆčˆˆä¼š'),
(110204, 'https://ror.org/006vyay97', 'en', 1, 'https://ror.org/006vyay97 Lions Eye Institute'),
(110205, 'https://ror.org/006vyxm49', 'en', 1, 'https://ror.org/006vyxm49 Thomas More University Biology Field Station'),
(110206, 'https://ror.org/006xxv571', 'en', 1, 'https://ror.org/006xxv571 Mobius Labs GmbH (Germany)'),
(110207, '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'),
(110208, 'https://ror.org/00704c791', 'no_lang_code', 1, 'https://ror.org/00704c791 Sanofi (Portugal)'),
(110209, 'https://ror.org/0071pyk24', 'en', 1, 'https://ror.org/0071pyk24 Public Health Research Society Nepal'),
(110210, 'https://ror.org/0072zz521', 'en', 1, 'https://ror.org/0072zz521 Universidad de Massachusetts Amherst University of Massachusetts Amherst UniversitƩ du massachusetts Ơ amherst'),
(110211, 'https://ror.org/007385880', 'en', 1, 'https://ror.org/007385880 Maharshi Vashishtha Autonomous State Medical College, Basti'),
(110212, 'https://ror.org/007413320', 'en', 1, 'https://ror.org/007413320 Seichiryo Hospital åŒ»ē™‚ę³•äŗŗäŗ¤ę­£ä¼šē²¾ę²»åÆ®ē—…é™¢'),
(110213, 'https://ror.org/0076knn86', 'en', 1, 'https://ror.org/0076knn86 Toyota Motor North America, Toyota Motor North America (United States)'),
(110214, 'https://ror.org/0076sm922', 'en', 1, 'https://ror.org/0076sm922 Honiton Hospital'),
(110215, 'https://ror.org/0078dkj09', 'en', 1, 'https://ror.org/0078dkj09 Council for Nutritional and Environmental Medicine'),
(110216, 'https://ror.org/0079fsj36', 'de', 1, 'https://ror.org/0079fsj36 Institut Bewegung, Sport und Gesundheit Institute of Physical Education, Sports, and Health'),
(110217, 'https://ror.org/007c64331', 'en', 1, 'https://ror.org/007c64331 Japanese Society for Mastication Science and Health Promotion ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å’€åš¼å­¦ä¼š'),
(110218, 'https://ror.org/007ck3v83', 'en', 1, 'https://ror.org/007ck3v83 ATLAS SkillTech University'),
(110219, 'https://ror.org/007dbrz84', 'en', 1, 'https://ror.org/007dbrz84 Geo-Ocean'),
(110220, 'https://ror.org/007dnwq44', 'en', 1, 'https://ror.org/007dnwq44 Armavir Institute of Economics and Finance Армавирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø финансов'),
(110221, 'https://ror.org/007e33924', 'fr', 1, 'https://ror.org/007e33924 Laboratoire de l''Ɖducation'),
(110222, 'https://ror.org/007gp5s15', 'en', 0, 'https://ror.org/007gp5s15 Kumamoto Chuo Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šē†Šęœ¬äø­å¤®ē—…é™¢'),
(110223, 'https://ror.org/007hv5983', 'en', 1, 'https://ror.org/007hv5983 Hokkaido Construction Technology Center äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“å»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(110224, 'https://ror.org/007k1td47', 'en', 1, 'https://ror.org/007k1td47 Japan Science Support Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å­¦č”“å”åŠ›č²”å›£'),
(110225, 'https://ror.org/007khra81', 'no_lang_code', 1, 'https://ror.org/007khra81 Eurocasmedica, Eurocasmedica - Produtos Hospitalares (Portugal), Eurocasmedica - Produtos Hospitalares, S.A.'),
(110226, 'https://ror.org/007kqr982', 'en', 1, 'https://ror.org/007kqr982 Kyushu Industrial Technology Center äø€čˆ¬č²”å›£ę³•äŗŗä¹å·žē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(110227, 'https://ror.org/007qpef44', 'de', 1, 'https://ror.org/007qpef44 de-RSE e.V.'),
(110228, 'https://ror.org/007qq9s41', 'en', 1, 'https://ror.org/007qq9s41 Hokkaido Aquaculture Promotion Corporation å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ę ½åŸ¹ę¼ę„­ęŒÆčˆˆå…¬ē¤¾'),
(110229, 'https://ror.org/007qr6339', 'pt', 1, 'https://ror.org/007qr6339 Ordem dos Engenheiros'),
(110230, 'https://ror.org/007t8rt26', 'en', 1, 'https://ror.org/007t8rt26 Gout Support Group of America'),
(110231, 'https://ror.org/007tyhq53', 'en', 1, 'https://ror.org/007tyhq53 Niigata Prefectural Police ę–°ę½ŸēœŒč­¦åÆŸ'),
(110232, 'https://ror.org/007w76162', 'en', 1, 'https://ror.org/007w76162 Japan Railway Electrical Engineering Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é“é›»ę°—ęŠ€č”“å”ä¼š'),
(110233, 'https://ror.org/007wafy80', 'fr', 1, 'https://ror.org/007wafy80 Maison des Sciences de l''Homme du Pacifique'),
(110234, '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)'),
(110235, 'https://ror.org/007y0wv84', 'en', 1, 'https://ror.org/007y0wv84 Institut für Visual Computing Institute for Visual Computing'),
(110236, 'https://ror.org/007z9s698', 'en', 1, 'https://ror.org/007z9s698 Nepal Mediciti Hospital'),
(110237, 'https://ror.org/007zj6g46', 'en', 1, 'https://ror.org/007zj6g46 Gunma Sericultural Technology Center ē¾¤é¦¬ēœŒčš•ē³øęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(110238, 'https://ror.org/0081esx06', 'es', 1, 'https://ror.org/0081esx06 Fundación Observatorio Ƒuble Ƒuble Observatory Foundation'),
(110239, 'https://ror.org/00834m943', 'en', 1, 'https://ror.org/00834m943 Fishing Boat And System Engineering Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·ę“‹ę°“ē”£ć‚·ć‚¹ćƒ†ćƒ å”ä¼š'),
(110240, 'https://ror.org/0083dxv92', 'en', 0, 'https://ror.org/0083dxv92 Institute for Applied Optics å…¬ē›Šč²”å›£ę³•äŗŗåæœē”Øå…‰å­¦ē ”ē©¶ę‰€'),
(110241, 'https://ror.org/0084x3h80', 'fr', 1, 'https://ror.org/0084x3h80 Centre de Recherche Astrophysique de Lyon Centre for Astronomical Reseach of Lyon'),
(110242, 'https://ror.org/00854zy02', 'en', 1, 'https://ror.org/00854zy02 National University of Skills دانؓگاه Ł…Ł„ŪŒ مهارت'),
(110243, 'https://ror.org/008740n09', 'en', 1, 'https://ror.org/008740n09 Humanitec Junior College ćƒ¦ćƒžćƒ‹ćƒ†ć‚ÆēŸ­ęœŸå¤§å­¦'),
(110244, 'https://ror.org/00892tw58', 'en', 1, 'https://ror.org/00892tw58 The University of Adelaide'),
(110245, 'https://ror.org/008adv646', 'en', 1, 'https://ror.org/008adv646 Kansas Department of Wildlife and Parks'),
(110246, 'https://ror.org/008d1xp69', 'en', 1, 'https://ror.org/008d1xp69 Arbets- och nƤringsministeriet Ministry of Economic Affairs and Employment Tyƶ- ja elinkeinoministeriƶ'),
(110247, 'https://ror.org/008dmsy67', 'en', 1, 'https://ror.org/008dmsy67 Adler University'),
(110248, 'https://ror.org/008e8k888', 'fr', 1, 'https://ror.org/008e8k888 Structure FƩdƩrative de Recherche Biosciences'),
(110249, '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.'),
(110250, 'https://ror.org/008eg3158', 'en', 1, 'https://ror.org/008eg3158 Schweiz. Erdbebendienst Swiss Seismological Service'),
(110251, 'https://ror.org/008g9ns82', 'en', 1, 'https://ror.org/008g9ns82 Mutah University Ų¬Ų§Ł…Ų¹Ų© Ł…Ų¤ŲŖŲ©'),
(110252, 'https://ror.org/008hxwy89', 'fr', 1, 'https://ror.org/008hxwy89 Institut de recherches arctiques Jean Malaurie Malaurie Institute of Arctic Research'),
(110253, 'https://ror.org/008jam490', 'en', 1, 'https://ror.org/008jam490 Japan Paint Manufacturers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å”—ę–™å·„ę„­ä¼š'),
(110254, 'https://ror.org/008jpeg44', 'pt', 1, 'https://ror.org/008jpeg44 Ordem dos Médicos Secção Regional do Sul'),
(110255, 'https://ror.org/008mx9f83', 'en', 1, 'https://ror.org/008mx9f83 Institute for Particle and Nuclear Physics Részecske és Magfizikai Kutatóintézet'),
(110256, 'https://ror.org/008pnp284', 'en', 1, 'https://ror.org/008pnp284 Data Archiving Networked Services (DANS) Het Nationale expertisecentrum en repository voor onderzoeksdata'),
(110257, 'https://ror.org/008q4kt04', 'en', 1, 'https://ror.org/008q4kt04 The Royal Victorian Eye & Ear Hospital'),
(110258, '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'),
(110259, 'https://ror.org/008s83205', 'en', 1, 'https://ror.org/008s83205 University of Alabama at Birmingham UniversitƩ d''alabama Ơ birmingham'),
(110260, 'https://ror.org/008snev66', 'fr', 1, 'https://ror.org/008snev66 Institut SupƩrieur de Technologie d''Antananarivo'),
(110261, 'https://ror.org/008t8t864', 'pt', 1, 'https://ror.org/008t8t864 SaĆŗde Global e Medicina Tropical'),
(110262, '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'),
(110263, 'https://ror.org/008wzj148', 'pt', 1, 'https://ror.org/008wzj148 Centro de Intervenção Para o Desenvolvimento Amílcar Cabral'),
(110264, 'https://ror.org/008y4p075', 'sv', 1, 'https://ror.org/008y4p075 Blekinge County Council Region Blekinge'),
(110265, '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)'),
(110266, 'https://ror.org/008zr3m11', 'en', 1, 'https://ror.org/008zr3m11 SUNY Morrisville'),
(110267, 'https://ror.org/008zs3103', 'en', 1, 'https://ror.org/008zs3103 Rice University Universidad Rice'),
(110268, 'https://ror.org/00906dm81', 'en', 1, 'https://ror.org/00906dm81 White Rose Libraries'),
(110269, 'https://ror.org/0090me784', 'en', 1, 'https://ror.org/0090me784 The Japan Stroke Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č„³å’äø­å”ä¼š'),
(110270, 'https://ror.org/00925cq50', 'no_lang_code', 1, 'https://ror.org/00925cq50 Tata Steel (Netherlands)'),
(110271, 'https://ror.org/0092hde74', 'en', 1, 'https://ror.org/0092hde74 Scottish Avalanche Information Service'),
(110272, 'https://ror.org/0092mfq48', 'en', 0, 'https://ror.org/0092mfq48 Institut für Textilchemie- und Chemiefasern Institute of Textile Chemistry and Chemical Fibers'),
(110273, 'https://ror.org/0095hvq29', 'en', 1, 'https://ror.org/0095hvq29 Youthscape'),
(110274, 'https://ror.org/00965bg92', 'en', 1, 'https://ror.org/00965bg92 University of Nis Универзитет у ŠŠøŃˆŃƒ'),
(110275, 'https://ror.org/0097mvx21', 'ca', 1, 'https://ror.org/0097mvx21 Generalidad Valenciana Generalitat Valenciana'),
(110276, 'https://ror.org/00986na66', 'es', 1, 'https://ror.org/00986na66 Universidad SEK'),
(110277, 'https://ror.org/009a00p22', 'fr', 1, 'https://ror.org/009a00p22 Laboratoire de psychologie'),
(110278, 'https://ror.org/009antb74', 'pt', 1, 'https://ror.org/009antb74 Sociedade Portuguesa de Medicina da Reprodução'),
(110279, 'https://ror.org/009e9xc03', 'en', 1, 'https://ror.org/009e9xc03 Shinseikai-Toyama Hospital åŒ»ē™‚ę³•äŗŗēœŸē”Ÿä¼šåÆŒå±±ē—…é™¢'),
(110280, 'https://ror.org/009eqmr18', 'en', 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'),
(110281, 'https://ror.org/009g8rq41', 'en', 1, 'https://ror.org/009g8rq41 Ministry of Agriculture, Food and Rural Affairs'),
(110282, 'https://ror.org/009gmrj52', 'fr', 1, 'https://ror.org/009gmrj52 EMLYON Business School Ɖcole de management de Lyon'),
(110283, 'https://ror.org/009hftk42', 'id', 1, 'https://ror.org/009hftk42 Institut Teknologi dan Bisnis Asia Malang'),
(110284, 'https://ror.org/009j14p05', 'pl', 1, 'https://ror.org/009j14p05 Akademia Ignatianum w Krakowie Ignatianum University in Cracow'),
(110285, 'https://ror.org/009k8aq92', 'ro', 1, 'https://ror.org/009k8aq92 BRGV Buzău'),
(110286, 'https://ror.org/009m79n22', 'no_lang_code', 1, 'https://ror.org/009m79n22 Schlumberger (United States)'),
(110287, 'https://ror.org/009nk6b02', 'en', 1, 'https://ror.org/009nk6b02 Portuguese Additive Manufacturing Initiative'),
(110288, 'https://ror.org/009p5yx63', 'no_lang_code', 1, 'https://ror.org/009p5yx63 Corte Velada, Corte Velada (Portugal), Veiled Court'),
(110289, 'https://ror.org/009qdm547', 'pt', 1, 'https://ror.org/009qdm547 LaserLab Portugal'),
(110290, 'https://ror.org/009t5dc22', 'fr', 1, 'https://ror.org/009t5dc22 Centre d''Ɖtudes Internationales de la PropriĆ©tĆ© Intellectuelle'),
(110291, 'https://ror.org/009xs9759', 'en', 1, 'https://ror.org/009xs9759 The Foundation for Development of the Community å…¬ē›Šč²”å›£ę³•äŗŗåœ°åŸŸē¤¾ä¼šęŒÆčˆˆč²”å›£'),
(110292, 'https://ror.org/009xwd568', 'en', 1, 'https://ror.org/009xwd568 Universiteit van die Vrystaat University of the Free State Yunivesithi ya Freistata'),
(110293, 'https://ror.org/009yn9w19', 'en', 1, 'https://ror.org/009yn9w19 Kalivir Immunotherapeutics, Kalivir Immunotherapeutics, Inc. (United States)'),
(110294, 'https://ror.org/009zjqj21', 'pt', 1, 'https://ror.org/009zjqj21 Entidade Reguladora dos ServiƧos de Ɓguas e Resƭduos'),
(110295, 'https://ror.org/00a0n9e72', 'en', 1, 'https://ror.org/00a0n9e72 Ollscoil Luimnigh University of Limerick'),
(110296, 'https://ror.org/00a2a1y63', 'fr', 1, 'https://ror.org/00a2a1y63 Approches LittƩraires, Linguistiques & Historiques des Sources'),
(110297, 'https://ror.org/00a3qqg15', 'en', 1, 'https://ror.org/00a3qqg15 U.S. Army CECOM Integrated Logistics Support Center'),
(110298, 'https://ror.org/00a5g4995', 'no_lang_code', 1, 'https://ror.org/00a5g4995 Grupo Italfarmaco (Portugal)'),
(110299, 'https://ror.org/00a7jq604', 'en', 1, 'https://ror.org/00a7jq604 Eurasian Institute of Osteopathic Medicine'),
(110300, 'https://ror.org/00a8p0m24', 'fr', 1, 'https://ror.org/00a8p0m24 Center for the Sociology of Innovation, Mines Paris - PSL, Centre for the sociology of innovation (CSI), i3 UMR9217 CNRS Centre de sociologie de l''innovation, Mines Paris, UniversitĆ© PSL, Centre de Sociologie de l’Innovation (CSI), i3 UMR9217 CNRS'),
(110301, 'https://ror.org/00ab45451', 'en', 1, 'https://ror.org/00ab45451 Save the Children Japan å…¬ē›Šē¤¾å›£ę³•äŗŗć‚»ćƒ¼ćƒ–ćƒ»ć‚¶ćƒ»ćƒćƒ«ćƒ‰ćƒ¬ćƒ³ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(110302, 'https://ror.org/00abb3b58', 'no_lang_code', 1, 'https://ror.org/00abb3b58 Flatlantic, Flatlantic (Portugal)'),
(110303, 'https://ror.org/00abqs885', 'fr', 1, 'https://ror.org/00abqs885 Centre d’Etudes et de Recherches de Sciences Administratives et Politiques'),
(110304, 'https://ror.org/00acb7a22', 'pt', 1, 'https://ror.org/00acb7a22 Companhia de DanƧa ContemporĆ¢nea de Ɖvora'),
(110305, 'https://ror.org/00acx1e95', 'en', 1, 'https://ror.org/00acx1e95 National Defense Medical Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é˜²č”›č”›ē”Ÿå­¦ä¼š'),
(110306, 'https://ror.org/00acxb050', 'fr', 1, 'https://ror.org/00acxb050 Geosciences and Environment Laboratory Laboratoire GƩosciences et Environnement Cergy'),
(110307, 'https://ror.org/00ad9ka24', 'en', 1, 'https://ror.org/00ad9ka24 Zhejiang Department of Finance ęµ™ę±Ÿēœč“¢ę”æåŽ…'),
(110308, 'https://ror.org/00adwkx90', 'fr', 1, 'https://ror.org/00adwkx90 Institut des Sciences Chimiques de Rennes Rennes Institute of Chemical Sciences'),
(110309, 'https://ror.org/00ae7xs76', 'fr', 1, 'https://ror.org/00ae7xs76'),
(110310, 'https://ror.org/00ae9r889', 'de', 1, 'https://ror.org/00ae9r889 Leistungssport Austria'),
(110311, 'https://ror.org/00afsp483', 'en', 1, 'https://ror.org/00afsp483 United States Army'),
(110312, 'https://ror.org/00ag2p577', 'en', 1, 'https://ror.org/00ag2p577 Gilgamesh University'),
(110313, 'https://ror.org/00ajvsd91', 'en', 1, 'https://ror.org/00ajvsd91 Marie Cederschiƶld Hƶgskola Marie Cederschiƶld University'),
(110314, 'https://ror.org/00ajwxp03', 'en', 1, 'https://ror.org/00ajwxp03 Womack Army Medical Center'),
(110315, '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'),
(110316, 'https://ror.org/00aqdmx54', 'en', 1, 'https://ror.org/00aqdmx54 Tyndale University'),
(110317, 'https://ror.org/00ascas35', 'es', 1, 'https://ror.org/00ascas35 Sociedad de Doctores e Investigadores de Colombia'),
(110318, 'https://ror.org/00asdjp84', 'en', 1, 'https://ror.org/00asdjp84 National Institute for Freshwater Fisheries Research - NIFFR'),
(110319, 'https://ror.org/00asevw10', 'es', 1, 'https://ror.org/00asevw10 Universidad para la Cooperación Internacional University for International Cooperation'),
(110320, 'https://ror.org/00avmbz91', 'en', 1, 'https://ror.org/00avmbz91 Georgia Tech-CNRS Laboratory'),
(110321, 'https://ror.org/00ax8ja79', 'en', 1, 'https://ror.org/00ax8ja79 Aichi International Association å…¬ē›Šč²”å›£ę³•äŗŗę„›ēŸ„ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(110322, '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'),
(110323, 'https://ror.org/00ayt3w58', 'pt', 1, 'https://ror.org/00ayt3w58 CĆ¢mara Municipal de Cascais'),
(110324, 'https://ror.org/00aytnh12', 'fr', 1, 'https://ror.org/00aytnh12 Laboratoire de Biotechnologie et Chimie Marines'),
(110325, '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)'),
(110326, 'https://ror.org/00b063968', 'en', 1, 'https://ror.org/00b063968 Health University of Applied Sciences Tyrol Zentrum fur Gesundheitsberufe Tirol'),
(110327, 'https://ror.org/00b140761', 'en', 1, 'https://ror.org/00b140761 Foundation for Rural and Regional Renewal'),
(110328, 'https://ror.org/00b15e322', 'en', 1, 'https://ror.org/00b15e322 Dharanidhar University, Keonjhar'),
(110329, 'https://ror.org/00b30xv10', 'en', 1, 'https://ror.org/00b30xv10 University of Pennsylvania'),
(110330, 'https://ror.org/00b3bdc03', 'pt', 1, 'https://ror.org/00b3bdc03 CETERA'),
(110331, 'https://ror.org/00b57ws56', 'en', 1, 'https://ror.org/00b57ws56 Institution of Engineers'),
(110332, 'https://ror.org/00b5fk960', 'en', 1, 'https://ror.org/00b5fk960 The Japanese Society of Snow and Ice å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é›Ŗę°·å­¦ä¼š'),
(110333, 'https://ror.org/00b5jyb64', 'en', 0, 'https://ror.org/00b5jyb64 Kanazawa Municipal Hospital 金沢市立病院'),
(110334, 'https://ror.org/00b8mh310', 'en', 1, 'https://ror.org/00b8mh310 Institute for Regenerative Medicine & Biotherapy'),
(110335, 'https://ror.org/00b9mr468', 'fr', 1, 'https://ror.org/00b9mr468 Ecole Nationale Polytechnique de Constantine'),
(110336, 'https://ror.org/00bbkr059', 'en', 1, 'https://ror.org/00bbkr059 Institut für Signal- und Informationsverarbeitung Signal and Information Processing Laboratory'),
(110337, 'https://ror.org/00bbp3619', 'pt', 1, 'https://ror.org/00bbp3619 Instituto de Literatura Comparada Margarida Losa'),
(110338, 'https://ror.org/00bcn1057', 'en', 1, 'https://ror.org/00bcn1057 Amsterdam institute for Immunology and Infectious Diseases'),
(110339, 'https://ror.org/00bd1zn20', 'es', 1, 'https://ror.org/00bd1zn20 Instituto de Investigaciones JurĆ­dicas'),
(110340, 'https://ror.org/00be75x22', 'en', 1, 'https://ror.org/00be75x22 Good Manufacturing Practice Facility'),
(110341, 'https://ror.org/00bea3106', 'en', 1, 'https://ror.org/00bea3106 Electromagnetic Fields Laboratory Institut für Elektromagnetische Felder'),
(110342, 'https://ror.org/00beq8h88', 'en', 1, 'https://ror.org/00beq8h88 JAē¦å³¶åŽšē”Ÿé€£ē™½ę²³åŽšē”Ÿē·åˆē—…é™¢ Shirakawa Kosei General Hospital'),
(110343, 'https://ror.org/00bfb4387', 'no_lang_code', 1, 'https://ror.org/00bfb4387 Megajoule, Megajoule (Portugal)'),
(110344, 'https://ror.org/00bfm8s22', 'en', 1, 'https://ror.org/00bfm8s22 Office of the Principal Scientific Adviser'),
(110345, 'https://ror.org/00bfrk915', 'en', 1, 'https://ror.org/00bfrk915 Seminar for Applied Mathematics Seminar für Angewandte Mathematik'),
(110346, 'https://ror.org/00bgnvd66', 'fr', 1, 'https://ror.org/00bgnvd66 MƩcanismes physiopathologiques et consƩquences des calcifications cardiovasculaires'),
(110347, 'https://ror.org/00bgtad15', 'en', 1, 'https://ror.org/00bgtad15 St. John''s University Universidad de San Juan'),
(110348, 'https://ror.org/00bh09c15', 'en', 1, 'https://ror.org/00bh09c15 Guang''anmen Hospital Jinan Hospital, China Academy of Chinese Medical Sciences ęµŽå—åø‚äø­åŒ»åŒ»é™¢'),
(110349, 'https://ror.org/00bhdmf45', 'en', 1, 'https://ror.org/00bhdmf45 Japan Association of Athletics Federations å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é™øäøŠē«¶ęŠ€é€£ē›Ÿ'),
(110350, 'https://ror.org/00bjc2870', 'pt', 1, 'https://ror.org/00bjc2870 Instituto Coordenador da Investigação'),
(110351, 'https://ror.org/00bjjqs38', 'fr', 1, 'https://ror.org/00bjjqs38 DƩlƩgation RhƓne Auvergne'),
(110352, 'https://ror.org/00bm0qt52', 'en', 1, 'https://ror.org/00bm0qt52 Australian Commission on Safety and Quality in Health Care'),
(110353, 'https://ror.org/00bm5dk29', 'en', 1, 'https://ror.org/00bm5dk29 The Millennium Project'),
(110354, 'https://ror.org/00bnpn789', 'en', 1, 'https://ror.org/00bnpn789 Publishing House ā€œAkademperiodykaā€ of the National Academy of Sciences of Ukraine ВиГавничий Гім «АкаГемперіоГика» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(110355, 'https://ror.org/00bpqvp39', 'pt', 1, 'https://ror.org/00bpqvp39 Sociedade Portuguesa de Biologia do Desenvolvimento'),
(110356, 'https://ror.org/00bsdxt65', 'en', 1, 'https://ror.org/00bsdxt65 China International Science and Technology Cooperation äø­å›½å›½é™…ē§‘ęŠ€åˆä½œē½‘'),
(110357, 'https://ror.org/00bsmzd39', 'en', 1, 'https://ror.org/00bsmzd39 Japan Plywood Inspection Corporation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åˆęæę¤œęŸ»ä¼š'),
(110358, 'https://ror.org/00btp0650', 'en', 1, 'https://ror.org/00btp0650 Chuo Kikuu cha Kikatoliki cha Ruaha Ruaha Catholic University'),
(110359, 'https://ror.org/00bw5n526', 'fr', 1, 'https://ror.org/00bw5n526 DƩlƩgation Paris 7'),
(110360, 'https://ror.org/00bwsj193', 'en', 1, 'https://ror.org/00bwsj193 Tanzania Institute of Education (TIE)'),
(110361, 'https://ror.org/00byekp78', 'pt', 1, 'https://ror.org/00byekp78 CHAM Centro de Humanidades'),
(110362, 'https://ror.org/00c2x1j89', 'en', 1, 'https://ror.org/00c2x1j89 Pakistan Museum of Natural History پاکستا ن Ł…ŪŒŁˆŲ²ŪŒŁ… آف Ł†ŪŒŚ†Ų±Ł„ ہسٹرئ'),
(110363, 'https://ror.org/00c33xm12', 'en', 1, 'https://ror.org/00c33xm12 Neurophet (South Korea), Neurophet Inc. ė‰“ė”œķŽ« ģ£¼ģ‹ķšŒģ‚¬'),
(110364, 'https://ror.org/00c5q9r49', 'en', 1, 'https://ror.org/00c5q9r49 Indian Institute of Advanced Research'),
(110365, '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'),
(110366, 'https://ror.org/00carf720', 'en', 1, 'https://ror.org/00carf720 Royal Adelaide Hospital'),
(110367, 'https://ror.org/00cbts945', 'en', 1, 'https://ror.org/00cbts945 Zhengzhou Normal University'),
(110368, 'https://ror.org/00cepxd71', 'en', 1, 'https://ror.org/00cepxd71 Institut für Biomechanik Institute for Biomechanics'),
(110369, 'https://ror.org/00chzvk16', 'es', 1, 'https://ror.org/00chzvk16 Centro de Proteccion e Higiene de la Radiociones'),
(110370, 'https://ror.org/00cjaqb97', 'no_lang_code', 1, 'https://ror.org/00cjaqb97 CiviTest Pesquisa de Novos Materiais para a Engenharia Civil (Portugal)'),
(110371, 'https://ror.org/00ck9qk95', 'ne', 1, 'https://ror.org/00ck9qk95 Nepal Netra Jyoti Sangh (NNJS)'),
(110372, 'https://ror.org/00cn3vx82', 'en', 1, 'https://ror.org/00cn3vx82 Novartis Institute For Tropical Diseases, Novartis Institute For Tropical Diseases Pte Ltd'),
(110373, 'https://ror.org/00cn92c09', 'en', 1, 'https://ror.org/00cn92c09 National Taipei University of Technology åœ‹ē«‹č‡ŗåŒ—ē§‘ęŠ€å¤§å­ø'),
(110374, 'https://ror.org/00cs35d33', 'is', 1, 'https://ror.org/00cs35d33 Natural Science Institute of Iceland NÔttúrufræðistofnun'),
(110375, 'https://ror.org/00cvc5g32', 'en', 1, 'https://ror.org/00cvc5g32 Japan Dairy Technical Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä¹³ę„­ęŠ€č”“å”ä¼š'),
(110376, 'https://ror.org/00cvh4b12', 'fr', 1, 'https://ror.org/00cvh4b12 Institut de Criminologie et de Droit PƩnal de Paris'),
(110377, 'https://ror.org/00cw67x51', 'en', 1, 'https://ror.org/00cw67x51 Institute of Eastern Culture äø€čˆ¬č²”å›£ę³•äŗŗę±ę–¹å­¦ä¼š'),
(110378, 'https://ror.org/00cxt9737', 'pt', 1, 'https://ror.org/00cxt9737 Laboratório Nacional de Investigação VeterinÔria'),
(110379, 'https://ror.org/00cybsr61', 'en', 1, 'https://ror.org/00cybsr61 ARC Centre of Excellence for Dark Matter Particle Physics'),
(110380, 'https://ror.org/00cyf6533', 'en', 1, 'https://ror.org/00cyf6533 Tashkent Institute of Management and Economics'),
(110381, 'https://ror.org/00d0nc645', 'no_lang_code', 1, 'https://ror.org/00d0nc645 Microsoft (United States)'),
(110382, 'https://ror.org/00d0rke27', 'fr', 1, 'https://ror.org/00d0rke27 Institut d''optique thĆ©orique et appliquĆ©e, Institut d’Optique Graduate School'),
(110383, 'https://ror.org/00d1mx684', 'en', 1, 'https://ror.org/00d1mx684 Chrisland University'),
(110384, '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'),
(110385, 'https://ror.org/00d2z7680', 'fr', 1, 'https://ror.org/00d2z7680 Centre de droit europƩen'),
(110386, 'https://ror.org/00d3en495', 'en', 1, 'https://ror.org/00d3en495 The Magnetics Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē£ę°—å­¦ä¼š'),
(110387, 'https://ror.org/00d4ca571', 'en', 1, 'https://ror.org/00d4ca571 Moretonhampstead Hospital'),
(110388, 'https://ror.org/00d7vgm92', 'en', 1, 'https://ror.org/00d7vgm92 Japan Electric Power Information Center, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–é›»åŠ›čŖæęŸ»ä¼š'),
(110389, 'https://ror.org/00daq2f30', 'pt', 1, 'https://ror.org/00daq2f30 Centro de Estudos em Património Paisagem e Construção'),
(110390, 'https://ror.org/00davry38', 'es', 1, 'https://ror.org/00davry38 National Technological Institute of Mexico Tecnológico Nacional de México'),
(110391, 'https://ror.org/00dbyax80', 'id', 1, 'https://ror.org/00dbyax80 Sekolah Tinggi Filsafat Theologia Jaffray');
INSERT INTO `rors` VALUES
(110392, 'https://ror.org/00dcr5w37', 'en', 1, 'https://ror.org/00dcr5w37 Creative Education Technology (Shenzhen) Co., Ltd., Creative Education Technology (Shenzhen) Co., Ltd. (China) å¼€å…ƒę•™č‚²ē§‘ęŠ€ļ¼ˆę·±åœ³ļ¼‰ęœ‰é™å…¬åø'),
(110393, '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'),
(110394, 'https://ror.org/00de23h54', 'en', 1, 'https://ror.org/00de23h54 Japan Dairy Industry Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä¹³ę„­å”ä¼š'),
(110395, '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ƭ'),
(110396, 'https://ror.org/00dfx2z56', 'en', 1, 'https://ror.org/00dfx2z56 Technology Institution of Industrial Safety å…¬ē›Šē¤¾å›£ę³•äŗŗē”£ę„­å®‰å…ØęŠ€č”“å”ä¼š'),
(110397, 'https://ror.org/00dgdnb65', 'en', 1, 'https://ror.org/00dgdnb65 AITHYRA GmbH, AITHYRA GmbH- Research Institute for Biomedical Artificial Intelligence (Austria)'),
(110398, 'https://ror.org/00dm44s31', 'id', 1, 'https://ror.org/00dm44s31 Politeknik Negeri Madiun State Polytechnic of Madiun'),
(110399, 'https://ror.org/00dm87y50', 'en', 1, 'https://ror.org/00dm87y50 Sendai Foundation for Applied Information Sciences å…¬ē›Šč²”å›£ę³•äŗŗä»™å°åæœē”Øęƒ…å ±å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(110400, 'https://ror.org/00dn3c815', 'en', 1, 'https://ror.org/00dn3c815 Eishinkai Kishiwada Rehabilitation Hospital å²øå’Œē”°ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(110401, 'https://ror.org/00dnbtf70', 'en', 1, 'https://ror.org/00dnbtf70 Niigata University of Pharmacy and Medical and Life Sciences ę–°ę½Ÿč–¬ē§‘å¤§å­¦'),
(110402, 'https://ror.org/00dne1g41', 'de', 1, 'https://ror.org/00dne1g41 Institut für donauschwäbische Geschichte und Landeskunde'),
(110403, 'https://ror.org/00dnn6j70', 'en', 1, 'https://ror.org/00dnn6j70 Japan Society of Obstetrics and Gynecology å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£ē§‘å©¦äŗŗē§‘å­¦ä¼š'),
(110404, 'https://ror.org/00dpnh189', 'es', 1, 'https://ror.org/00dpnh189 Autonomous University of Coahuila Universidad Autónoma de Coahuila'),
(110405, 'https://ror.org/00dqsbj20', 'en', 1, 'https://ror.org/00dqsbj20 Texas Medical Center'),
(110406, 'https://ror.org/00drk6w41', 'en', 1, 'https://ror.org/00drk6w41 Japan Foundation For Emergency Medicine äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę•‘ę€„åŒ»ē™‚č²”å›£'),
(110407, 'https://ror.org/00drw4m60', 'de', 1, 'https://ror.org/00drw4m60 Institut Kulturelle und Ƅsthetische Bildung Institute of Cultural and Aesthetic Education'),
(110408, 'https://ror.org/00dvsyx28', 'en', 1, 'https://ror.org/00dvsyx28 Kogi State University'),
(110409, 'https://ror.org/00dvt2119', 'pt', 1, 'https://ror.org/00dvt2119 Câmara Municipal da Covilhã'),
(110410, 'https://ror.org/00dw75k93', 'en', 1, 'https://ror.org/00dw75k93 Leifur EirĆ­ksson Foundation'),
(110411, 'https://ror.org/00dyw7b26', 'en', 1, 'https://ror.org/00dyw7b26 Japanese Society of Steel Construction äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‹¼ę§‹é€ å”ä¼š'),
(110412, 'https://ror.org/00dzsfb89', 'en', 1, 'https://ror.org/00dzsfb89 Glass MANUFACTURERS'' Association Of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”å­č£½å“å·„ę„­ä¼š'),
(110413, 'https://ror.org/00e0c0q64', 'en', 0, 'https://ror.org/00e0c0q64 Indiana University – Purdue University Columbus'),
(110414, 'https://ror.org/00e0e5c69', 'pt', 1, 'https://ror.org/00e0e5c69 Magellan - Associação para a Representação dos Interesses Portugueses no Exterior'),
(110415, 'https://ror.org/00e0jd726', 'en', 1, 'https://ror.org/00e0jd726 Delaware Geological Survey'),
(110416, 'https://ror.org/00e2e3n51', 'en', 1, 'https://ror.org/00e2e3n51 Mitsubishi Electric Research Laboratories, Mitsubishi Electric Research Laboratories (United States)'),
(110417, 'https://ror.org/00e58fv15', 'pt', 1, 'https://ror.org/00e58fv15 Rede de Investigação em Biodiversidade e Biologia Evolutiva'),
(110418, 'https://ror.org/00e5k0821', 'en', 1, 'https://ror.org/00e5k0821 New York University Abu Dhabi Ų¬Ų§Ł…Ų¹Ų© Ł†ŁŠŁˆŁŠŁˆŲ±Łƒ أبوظبي'),
(110419, 'https://ror.org/00e5k6m88', 'en', 1, 'https://ror.org/00e5k6m88 United States 4th Fleet, United States Naval Forces Southern Command'),
(110420, 'https://ror.org/00e798h81', 'en', 1, 'https://ror.org/00e798h81 Tigray Health Research Institute THRI įŠ¢įŠ’įˆµį‰²į‰µį‹©į‰µ įˆįˆ­įˆįˆ­ įŒ„į‹•įŠ“ į‰µįŒįˆ«į‹­'),
(110421, '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'),
(110422, 'https://ror.org/00e9kx775', 'en', 1, 'https://ror.org/00e9kx775 European Renal Association – European Dialysis and Transplant Association'),
(110423, 'https://ror.org/00eae9z71', 'en', 1, 'https://ror.org/00eae9z71 University of Newcastle Australia'),
(110424, 'https://ror.org/00eaqry86', 'en', 1, 'https://ror.org/00eaqry86 Centre for Microscopy and Microanalysis'),
(110425, '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'),
(110426, 'https://ror.org/00eg0ep76', 'pt', 1, 'https://ror.org/00eg0ep76 Sociedade Portuguesa de Enfermagem Oncológica'),
(110427, 'https://ror.org/00eg59v22', 'eu', 1, 'https://ror.org/00eg59v22 Euskalmet'),
(110428, 'https://ror.org/00ehghs54', 'pt', 1, 'https://ror.org/00ehghs54 Clínica Oftalmológica Rufino Ribeiro SA Rufino Ribeiro Ophthalmic Clinic'),
(110429, 'https://ror.org/00ejz0646', 'en', 1, 'https://ror.org/00ejz0646 Japanese Society of Pediatric Surgeons ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å°å…å¤–ē§‘å­¦ä¼š'),
(110430, 'https://ror.org/00emta992', 'en', 1, 'https://ror.org/00emta992 Sidmouth Hospital'),
(110431, 'https://ror.org/00ep5v251', 'de', 1, 'https://ror.org/00ep5v251 Europäische Hochschule für Innovation und Perspektive'),
(110432, 'https://ror.org/00epmv149', 'en', 1, 'https://ror.org/00epmv149 Norjan tiedeneuvosto The Research Council of Norway'),
(110433, 'https://ror.org/00esxkm46', 'pt', 1, 'https://ror.org/00esxkm46 Instituto Superior de Economia e Gestão Campus Tecnológico e Nuclear'),
(110434, 'https://ror.org/00etn5569', 'en', 1, 'https://ror.org/00etn5569 Japan Crane Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Æćƒ¬ćƒ¼ćƒ³å”ä¼š'),
(110435, 'https://ror.org/00ew4na22', 'no_lang_code', 1, 'https://ror.org/00ew4na22 Otsuka (United States)'),
(110436, '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 Российско-Š’ŃŒŠµŃ‚Š½Š°Š¼ŃŠŗŠøŠ¹ тропический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø технологический центр'),
(110437, 'https://ror.org/00excyz84', 'en', 1, 'https://ror.org/00excyz84 Doğu Akdeniz Üniversitesi Eastern Mediterranean University'),
(110438, 'https://ror.org/00ezjkn15', 'en', 1, 'https://ror.org/00ezjkn15 Osipyan Institute of Solid State Physics RAS'),
(110439, 'https://ror.org/00eztte08', 'en', 1, 'https://ror.org/00eztte08 Institut für Geotechnik Institute for Geotechnical Engineering'),
(110440, 'https://ror.org/00f0khk08', 'it', 1, 'https://ror.org/00f0khk08 Agenzia Regionale per la Protezione Ambientale dell''Umbria'),
(110441, 'https://ror.org/00f1ezm10', 'de', 1, 'https://ror.org/00f1ezm10 Deutsche Gartenbauwissenschaftliche Gesellschaft e. V. German Society for Horticultural Science'),
(110442, 'https://ror.org/00f29ja18', 'en', 1, 'https://ror.org/00f29ja18 European Rare Disease Research Coordination and Support Action'),
(110443, 'https://ror.org/00f4wkg38', 'en', 1, 'https://ror.org/00f4wkg38 Energia- Ʃs KƶrnyezetbiztonsƔgi IntƩzet Institute for Energy Security and Environmental Safety'),
(110444, 'https://ror.org/00f54p054', 'en', 1, 'https://ror.org/00f54p054 Stanford University Universidad Stanford'),
(110445, 'https://ror.org/00f7jtn66', 'en', 1, 'https://ror.org/00f7jtn66 The Japanese Society for Food Science and Technology Secretariat å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ē§‘å­¦å·„å­¦ä¼š'),
(110446, 'https://ror.org/00f945z63', 'fr', 1, 'https://ror.org/00f945z63 Institut Pytheas, Observatoire des Sciences de l’OSU Institut PythĆ©as'),
(110447, 'https://ror.org/00fbnyb24', 'en', 1, 'https://ror.org/00fbnyb24 Julius-Maximilians-Universität Würzburg University of Würzburg'),
(110448, '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)'),
(110449, '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'),
(110450, 'https://ror.org/00fem8f23', 'pt', 1, 'https://ror.org/00fem8f23 Rede Nacional de Espectrometria de Massa'),
(110451, 'https://ror.org/00fgdtt86', 'en', 1, 'https://ror.org/00fgdtt86 Society of Interventional Radiology'),
(110452, 'https://ror.org/00fgvy228', 'no_lang_code', 1, 'https://ror.org/00fgvy228 OneVet Group, OneVet Group (Portugal)'),
(110453, 'https://ror.org/00fhq7034', 'it', 1, 'https://ror.org/00fhq7034 Iridra Srl, Iridra Srl (Italy)'),
(110454, 'https://ror.org/00fjnjn69', 'fr', 1, 'https://ror.org/00fjnjn69 Cegep de Trois-Rivieres, Collège d''enseignement général et professionnel College of general and vocational education Trois-Rivieres'),
(110455, 'https://ror.org/00fjzc349', 'id', 1, 'https://ror.org/00fjzc349 Politeknik Harapan Bersama'),
(110456, 'https://ror.org/00fkydv97', 'en', 1, 'https://ror.org/00fkydv97 Computer and Robot Vision Laboratory'),
(110457, 'https://ror.org/00fp3ce15', 'en', 1, 'https://ror.org/00fp3ce15 The Gurdon Institute'),
(110458, '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'),
(110459, 'https://ror.org/00fsgfk96', 'en', 1, 'https://ror.org/00fsgfk96 State University of Information and Communication Technologies Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ інформаційно-ŠŗŠ¾Š¼ŃƒŠ½Ń–ŠŗŠ°Ń†Ń–Š¹Š½ŠøŃ… технологій'),
(110460, 'https://ror.org/00fsjcs42', 'en', 1, 'https://ror.org/00fsjcs42 Japan Industrial Designers'' Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¤ćƒ³ćƒ€ć‚¹ćƒˆćƒŖć‚¢ćƒ«ćƒ‡ć‚¶ć‚¤ćƒŠćƒ¼å”ä¼š'),
(110461, 'https://ror.org/00fvs1x60', 'en', 1, 'https://ror.org/00fvs1x60 Japan International Medical TEchnology Foundation å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›åŒ»ē™‚ęŠ€č”“č²”å›£'),
(110462, 'https://ror.org/00fwm2t61', 'de', 1, 'https://ror.org/00fwm2t61 Kompetenznetzwerk Informationstechnologie zur Fƶrderung der Integration von Menschen mit Behinderungen (KI-I)'),
(110463, 'https://ror.org/00fxczr88', 'no_lang_code', 1, 'https://ror.org/00fxczr88 Laboratoires Bailleul Portugal, S.A., Laboratoires Bailleul Portugal, S.A. (Portugal)'),
(110464, 'https://ror.org/00fxwgt94', 'fr', 1, 'https://ror.org/00fxwgt94 Centre de Recherche sur les Poétiques du XIXe siècle'),
(110465, 'https://ror.org/00fzkn482', 'en', 1, 'https://ror.org/00fzkn482 Space Delta 3'),
(110466, 'https://ror.org/00g280465', 'en', 1, 'https://ror.org/00g280465 Gradiant International Holdings Pte Ltd, Gradiant International Holdings Pte Ltd (Singapore)'),
(110467, 'https://ror.org/00g2asy76', 'en', 1, 'https://ror.org/00g2asy76 Japan Guide Dog Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē›²å°ŽēŠ¬å”ä¼š'),
(110468, 'https://ror.org/00g6kte47', 'it', 1, 'https://ror.org/00g6kte47 Ospedale "Santa Maria delle Croci" di Ravenna'),
(110469, 'https://ror.org/00g7xqw85', 'ro', 1, 'https://ror.org/00g7xqw85 Ecological University of Bucharest Universitatea Ecologica din Bucuresti, Universitatea Ecologică Din Bucureşti'),
(110470, 'https://ror.org/00gbmg575', 'en', 1, 'https://ror.org/00gbmg575 Greenhood Nepal ą¤—ą„ą¤°ą¤æą¤Øą¤¹ą„ą¤” ą¤Øą„‡ą¤Ŗą¤¾ą¤²'),
(110471, 'https://ror.org/00gcaxc92', 'es', 1, 'https://ror.org/00gcaxc92 Instituto Tecnológico Superior de la Región Sierra'),
(110472, 'https://ror.org/00gcc1r92', 'en', 1, 'https://ror.org/00gcc1r92 Saitama Prefectural Hospital Organization åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŸ¼ēŽ‰ēœŒē«‹ē—…é™¢ę©Ÿę§‹'),
(110473, 'https://ror.org/00gcgw028', 'en', 1, 'https://ror.org/00gcgw028 Government College of Engineering, Nagpur'),
(110474, 'https://ror.org/00gcjcf31', 'en', 1, 'https://ror.org/00gcjcf31 Professional Compounding Centers of America, Professional Compounding Centers of America (United States)'),
(110475, 'https://ror.org/00gd5av19', 'fr', 1, 'https://ror.org/00gd5av19 Parcours santƩ systƩmique'),
(110476, 'https://ror.org/00gd7ns03', 'es', 1, 'https://ror.org/00gd7ns03 State University of Milagro Universidad Estatal de Milagro'),
(110477, 'https://ror.org/00gdv3j64', 'pt', 1, 'https://ror.org/00gdv3j64 Centro CiĆŖncia Viva de Lagos'),
(110478, 'https://ror.org/00gg87355', 'en', 1, 'https://ror.org/00gg87355 Department of Behavioral Health'),
(110479, 'https://ror.org/00ghzk478', 'fr', 1, 'https://ror.org/00ghzk478 INSEAD, Institut EuropƩen d''Administration des Affaires'),
(110480, 'https://ror.org/00gj5p964', 'en', 1, 'https://ror.org/00gj5p964 Research Institute for High-Life å…¬ē›Šč²”å›£ę³•äŗŗćƒć‚¤ćƒ©ć‚¤ćƒ•ē ”ē©¶ę‰€'),
(110481, 'https://ror.org/00gmq0p08', 'en', 1, 'https://ror.org/00gmq0p08 Nara Prefecture Agricultural Research and Development Center å„ˆč‰ÆēœŒč¾²ę„­ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(110482, 'https://ror.org/00gsyt497', 'en', 1, 'https://ror.org/00gsyt497 Ludwig Boltzmann Institut für Menschenrechte Ludwig Boltzmann Institute of Human Rights'),
(110483, 'https://ror.org/00gtmwv55', 'no_lang_code', 1, 'https://ror.org/00gtmwv55 Bristol-Myers Squibb (United States)'),
(110484, 'https://ror.org/00gy9rx06', 'fr', 1, 'https://ror.org/00gy9rx06 Institut des Sciences et Techniques de l''AntiquitƩ'),
(110485, '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'),
(110486, 'https://ror.org/00h3d0p13', 'en', 1, 'https://ror.org/00h3d0p13 King’s University College'),
(110487, 'https://ror.org/00h3e1s37', 'en', 1, 'https://ror.org/00h3e1s37 National Research Institute for Chemical Technology'),
(110488, 'https://ror.org/00h6p6a20', 'en', 1, 'https://ror.org/00h6p6a20 Zoological Survey of India'),
(110489, 'https://ror.org/00h8mcj46', 'en', 1, 'https://ror.org/00h8mcj46 Philippine Association of State Universities and Colleges'),
(110490, 'https://ror.org/00h8z7d20', 'pt', 1, 'https://ror.org/00h8z7d20 AgĆŖncia Municipal de Energia do Seixal'),
(110491, 'https://ror.org/00h98p168', 'en', 1, 'https://ror.org/00h98p168 Tanzania Fisheries Research Institute'),
(110492, 'https://ror.org/00h9h4c14', 'en', 1, 'https://ror.org/00h9h4c14 Proplast Consortium for the Promotion of the Plastic Culture'),
(110493, 'https://ror.org/00h9jrb69', 'en', 1, 'https://ror.org/00h9jrb69 Universidad de ValparaĆ­so University of ValparaĆ­so'),
(110494, 'https://ror.org/00hbgbh82', 'en', 1, 'https://ror.org/00hbgbh82 JAPAN Anti-Doping Agency å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ³ćƒćƒ»ćƒ‰ćƒ¼ćƒ”ćƒ³ć‚°ę©Ÿę§‹'),
(110495, 'https://ror.org/00hc54507', 'en', 1, 'https://ror.org/00hc54507 The Japan Titanium Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒć‚æćƒ³å”ä¼š'),
(110496, 'https://ror.org/00hca4f40', 'en', 1, 'https://ror.org/00hca4f40 Shivharsh Kisan Post Graduate College, Basti'),
(110497, 'https://ror.org/00he80998', 'en', 1, 'https://ror.org/00he80998 Manchester University NHS Foundation Trust'),
(110498, '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'),
(110499, 'https://ror.org/00hhrtn83', 'no_lang_code', 1, 'https://ror.org/00hhrtn83 Pierre Fabre (Portugal)'),
(110500, 'https://ror.org/00hj8s172', 'en', 1, 'https://ror.org/00hj8s172 Columbia University Universidad de Columbia'),
(110501, 'https://ror.org/00hjft591', 'en', 1, 'https://ror.org/00hjft591 Curtin Hub for Immersive Visualisation and eResearch'),
(110502, 'https://ror.org/00hjps814', 'en', 1, 'https://ror.org/00hjps814 Showa College of Music ę˜­å’ŒéŸ³ę„½å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(110503, 'https://ror.org/00hjz5209', 'en', 1, 'https://ror.org/00hjz5209 European Infrastructure for Translational Medicine'),
(110504, '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'),
(110505, 'https://ror.org/00hqc6w79', 'en', 1, 'https://ror.org/00hqc6w79 Japan Allergy Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ¬ćƒ«ć‚®ćƒ¼å”ä¼š'),
(110506, 'https://ror.org/00hshrf16', 'en', 1, 'https://ror.org/00hshrf16 Jaypee University of Information Technology ą¤œą„‡ą¤Ŗą„€ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤¤ą¤•ą¤Øą„€ą¤• ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(110507, 'https://ror.org/00hswnk62', 'en', 1, 'https://ror.org/00hswnk62 Queen''s University Belfast'),
(110508, 'https://ror.org/00hvyfn28', 'en', 1, 'https://ror.org/00hvyfn28 Research Institute for Environmental Studies'),
(110509, 'https://ror.org/00hvzd703', 'pt', 1, 'https://ror.org/00hvzd703 ClĆ­nica de Otorrinolaringologia Dr Agostinho Pereira da Silva Dr Agostinho Pereira da Silva Otorhinolaryngology Clinic'),
(110510, 'https://ror.org/00hw3vb36', 'de', 1, 'https://ror.org/00hw3vb36 Novetus GmbH, Novetus GmbH (Austria)'),
(110511, 'https://ror.org/00hwfrn96', 'en', 1, 'https://ror.org/00hwfrn96 Laboratorium für Festkörperphysik Laboratory for Solid State Physics'),
(110512, 'https://ror.org/00hxy4673', 'pt', 1, 'https://ror.org/00hxy4673 IPE Digital, Instituto de Pesquisa para Economia Digital'),
(110513, 'https://ror.org/00hy0kp07', 'pt', 1, 'https://ror.org/00hy0kp07 Instituto Jurídico da Comunicação'),
(110514, 'https://ror.org/00hy3gq97', 'en', 1, 'https://ror.org/00hy3gq97 Ministry of Health'),
(110515, 'https://ror.org/00hyexx56', 'en', 1, 'https://ror.org/00hyexx56 Next Generation Laser Processing Technology Research Association ę¬”äø–ä»£ćƒ¬ćƒ¼ć‚¶ćƒ¼ćƒ—ćƒ­ć‚»ćƒƒć‚·ćƒ³ć‚°ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(110516, 'https://ror.org/00hz8mj39', 'en', 1, 'https://ror.org/00hz8mj39 Vehicle Information and Communication System Center äø€čˆ¬č²”å›£ę³•äŗŗé“č·Æäŗ¤é€šęƒ…å ±é€šäæ”ć‚·ć‚¹ćƒ†ćƒ ć‚»ćƒ³ć‚æćƒ¼'),
(110517, 'https://ror.org/00hzjh992', 'en', 1, 'https://ror.org/00hzjh992 Ministry of Higher Education And Scientific Research وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ Ų§Ł„Ų³ŁˆŲÆŲ§Ł†'),
(110518, 'https://ror.org/00hzrhy27', 'en', 1, 'https://ror.org/00hzrhy27 New England School of Acupuncture'),
(110519, 'https://ror.org/00j09zy03', 'pt', 1, 'https://ror.org/00j09zy03 Universidade Católica Portuguesa - Braga'),
(110520, 'https://ror.org/00j210205', 'en', 1, 'https://ror.org/00j210205 Institute for European Energy and Climate Policy'),
(110521, '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'),
(110522, 'https://ror.org/00j3wcb35', 'fr', 1, 'https://ror.org/00j3wcb35 Atmo Hauts-de-France'),
(110523, 'https://ror.org/00j5eb891', 'fr', 1, 'https://ror.org/00j5eb891 Centre Interlangues'),
(110524, 'https://ror.org/00j6z5f80', 'sv', 1, 'https://ror.org/00j6z5f80 LantmƤnnen'),
(110525, 'https://ror.org/00jb0e673', 'en', 1, 'https://ror.org/00jb0e673 Kırklareli University Kırklareli Üniversitesi'),
(110526, 'https://ror.org/00jdn5183', 'en', 1, 'https://ror.org/00jdn5183 Japan Digital Road Map Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ‡ć‚øć‚æćƒ«é“č·Æåœ°å›³å”ä¼š'),
(110527, 'https://ror.org/00jeq5q38', 'en', 1, 'https://ror.org/00jeq5q38 Kalaroa Govt. College'),
(110528, 'https://ror.org/00jgd4s13', 'en', 1, 'https://ror.org/00jgd4s13 ICAR - Central Institute for Research on Cotton Technology'),
(110529, 'https://ror.org/00jj11r28', 'en', 1, 'https://ror.org/00jj11r28 Infectious Diseases Labs'),
(110530, 'https://ror.org/00jjx8s55', 'fr', 1, 'https://ror.org/00jjx8s55 Atomic Energy and Alternative Energies Commission Commissariat Ơ l''Ɖnergie Atomique et aux Ɖnergies Alternatives'),
(110531, 'https://ror.org/00jjz9s23', 'en', 1, 'https://ror.org/00jjz9s23 Digitisation Centre of Western Australia'),
(110532, 'https://ror.org/00jkndb94', 'en', 1, 'https://ror.org/00jkndb94 Japan Water Agency ē‹¬ē«‹č”Œę”æę³•äŗŗę°“č³‡ęŗę©Ÿę§‹'),
(110533, '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'),
(110534, 'https://ror.org/00jm1tr64', 'en', 1, 'https://ror.org/00jm1tr64 Research Center for Applied Zoology'),
(110535, 'https://ror.org/00jm8vk13', 'pt', 1, 'https://ror.org/00jm8vk13 Instituto de Direito das Empresas e do Trabalho'),
(110536, 'https://ror.org/00jn5mv37', 'en', 1, 'https://ror.org/00jn5mv37 Okayama Construction Technology Center å…¬ē›Šč²”å›£ę³•äŗŗå²”å±±ēœŒå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(110537, 'https://ror.org/00jp6wj61', 'es', 1, 'https://ror.org/00jp6wj61 Instituto Nacional de Metrologia, Instituto Nacional de Metrologia de la Republica de Cuba'),
(110538, 'https://ror.org/00jp83f12', 'en', 1, 'https://ror.org/00jp83f12 Bochum University of Applied Sciences Health Campus Hochschule Bochum Standort Gesundheitscampus'),
(110539, 'https://ror.org/00jrey675', 'en', 1, 'https://ror.org/00jrey675 Science Europe'),
(110540, 'https://ror.org/00jrpxe15', 'en', 1, 'https://ror.org/00jrpxe15 Geelong Hospital'),
(110541, 'https://ror.org/00jt9rc96', 'pt', 1, 'https://ror.org/00jt9rc96 Associação Rede de Competência em Polímeros'),
(110542, 'https://ror.org/00jwkzj28', 'en', 1, 'https://ror.org/00jwkzj28 Museu de Arte Contemporânea de Serralves'),
(110543, 'https://ror.org/00jyb5v21', 'en', 1, 'https://ror.org/00jyb5v21 Clinical Trial and Consulting'),
(110544, 'https://ror.org/00k4h2615', 'de', 1, 'https://ror.org/00k4h2615 Schloss Dagstuhl – Leibniz Center for Informatics, Schloss Dagstuhl – Leibniz-Zentrum für Informatik'),
(110545, 'https://ror.org/00k4nan09', 'no_lang_code', 1, 'https://ror.org/00k4nan09 Logiters Portugal, Logiters Portugal (Portugal)'),
(110546, 'https://ror.org/00k52t116', 'pt', 1, 'https://ror.org/00k52t116 Direcção-Geral do Emprego e das Relações de Trabalho'),
(110547, 'https://ror.org/00k8k8t47', 'en', 1, 'https://ror.org/00k8k8t47 Namangan Davlat Universiteti Namangan State University'),
(110548, 'https://ror.org/00kb3f655', 'en', 1, 'https://ror.org/00kb3f655 Federal College of Education (Technical) Bichi'),
(110549, 'https://ror.org/00kb6va54', 'it', 1, 'https://ror.org/00kb6va54 Consorzio Polo Tecnologico Magona'),
(110550, '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'),
(110551, 'https://ror.org/00kfc2x89', 'en', 1, 'https://ror.org/00kfc2x89 Turan International University'),
(110552, 'https://ror.org/00kgetx37', 'es', 1, 'https://ror.org/00kgetx37 Universidad para el Bienestar Benito JuƔrez Garcƭa'),
(110553, 'https://ror.org/00khjyb83', 'en', 1, 'https://ror.org/00khjyb83 Chiba Children''s Hospital åƒč‘‰ēœŒć“ć©ć‚‚ē—…é™¢'),
(110554, 'https://ror.org/00kkpv737', 'en', 1, 'https://ror.org/00kkpv737 Complexity and Topology in Quantum Matter'),
(110555, 'https://ror.org/00kn8pe59', 'en', 1, 'https://ror.org/00kn8pe59 Japan Association of International Relations äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å›½éš›ę”æę²»å­¦ä¼š'),
(110556, 'https://ror.org/00kpwg207', 'en', 1, 'https://ror.org/00kpwg207 Research Institute Of Regional And Urban Planning äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸęŒÆčˆˆē ”ē©¶ę‰€'),
(110557, 'https://ror.org/00ks0ka28', 'sv', 1, 'https://ror.org/00ks0ka28 Svenska Frimurare Orden'),
(110558, 'https://ror.org/00ks66431', 'en', 1, 'https://ror.org/00ks66431 Prifysgol Surrey University of Surrey'),
(110559, 'https://ror.org/00ksm0582', 'en', 1, 'https://ror.org/00ksm0582 Japan Sport Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„å”ä¼š'),
(110560, 'https://ror.org/00kswvd50', 'en', 1, 'https://ror.org/00kswvd50 The Life Insurance Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗē”Ÿå‘½äæé™ŗå”ä¼š'),
(110561, 'https://ror.org/00ksx0a64', 'no_lang_code', 1, 'https://ror.org/00ksx0a64 Oceano Fresco (Portugal), Oceano Fresco, S.A.'),
(110562, 'https://ror.org/00kv63439', 'fr', 1, 'https://ror.org/00kv63439 Institut National de SantƩ Publique du QuƩbec'),
(110563, '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.'),
(110564, 'https://ror.org/00kwdwj09', 'en', 1, 'https://ror.org/00kwdwj09 Hyogo International Association å…¬ē›Šč²”å›£ę³•äŗŗå…µåŗ«ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(110565, 'https://ror.org/00kwqrp22', 'en', 1, 'https://ror.org/00kwqrp22 Yueyang Vocational Technical College å²³é˜³čŒäøšęŠ€ęœÆå­¦é™¢'),
(110566, 'https://ror.org/00kx55e87', 'en', 1, 'https://ror.org/00kx55e87 Poltava State Medical University ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(110567, 'https://ror.org/00kxr5737', 'pt', 1, 'https://ror.org/00kxr5737 Jardim Botânico da Madeira Engenheiro Rui Vieira'),
(110568, 'https://ror.org/00m0fmt63', 'en', 1, 'https://ror.org/00m0fmt63 ETH Phenomics Center'),
(110569, 'https://ror.org/00m0tfg52', 'en', 1, 'https://ror.org/00m0tfg52 Geological Institute Geologisches Institut'),
(110570, 'https://ror.org/00m1mwc36', 'en', 1, 'https://ror.org/00m1mwc36 Brooke Army Medical Center'),
(110571, 'https://ror.org/00m1rny06', 'fr', 1, 'https://ror.org/00m1rny06 Fondation Francqui'),
(110572, 'https://ror.org/00m2s0z68', 'en', 1, 'https://ror.org/00m2s0z68 Pennsylvania State System of Higher Education'),
(110573, 'https://ror.org/00m6w7z96', 'en', 1, 'https://ror.org/00m6w7z96 Northwestern University'),
(110574, 'https://ror.org/00m7f6j63', 'id', 1, 'https://ror.org/00m7f6j63 STAI Al-Falah Cicalengka'),
(110575, 'https://ror.org/00m89dr11', 'fr', 1, 'https://ror.org/00m89dr11 Ɖcole Nationale SupĆ©rieure Maritime المدرسة_Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©_Ų§Ł„Ų¹Ł„ŁŠŲ§_Ł„Ł„ŲØŲ­Ų±ŁŠŲ©'),
(110576, 'https://ror.org/00m91n277', 'en', 1, 'https://ror.org/00m91n277 Naval Education and Training Command'),
(110577, 'https://ror.org/00m9m9291', 'en', 1, 'https://ror.org/00m9m9291 Spinal Injuries Association'),
(110578, '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'),
(110579, 'https://ror.org/00mdaf969', 'en', 1, 'https://ror.org/00mdaf969 Space Delta 4'),
(110580, 'https://ror.org/00mdj5148', 'pt', 1, 'https://ror.org/00mdj5148 Beira Serra Associação de Desenvolvimento'),
(110581, 'https://ror.org/00mdktx17', 'pt', 1, 'https://ror.org/00mdktx17 Mosteiro dos Jerónimos'),
(110582, 'https://ror.org/00me29179', 'de', 1, 'https://ror.org/00me29179 Institut für Holztechnologie Dresden'),
(110583, 'https://ror.org/00mffw377', 'en', 1, 'https://ror.org/00mffw377 Australian Health Practitioner Regulation Agency'),
(110584, 'https://ror.org/00mgss748', 'no_lang_code', 1, 'https://ror.org/00mgss748 3M (United States)'),
(110585, 'https://ror.org/00mkad321', 'fr', 1, 'https://ror.org/00mkad321 Agroecology AgroƩcologie'),
(110586, 'https://ror.org/00mkhxb43', 'en', 1, 'https://ror.org/00mkhxb43 University of Notre Dame UniversitƩ notre-dame'),
(110587, 'https://ror.org/00mkj8e45', 'en', 1, 'https://ror.org/00mkj8e45 Genkikai Yokohama Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£å…ƒę°—ä¼šęØŖęµœē—…é™¢'),
(110588, 'https://ror.org/00mp8yb15', 'en', 1, 'https://ror.org/00mp8yb15 Kawasaki International Association å…¬ē›Šč²”å›£ę³•äŗŗå·å“Žåø‚å›½éš›äŗ¤ęµå”ä¼š'),
(110589, 'https://ror.org/00msh6959', 'en', 1, 'https://ror.org/00msh6959 Institute of Pharmaceutical Education and Research'),
(110590, 'https://ror.org/00msrw429', 'pt', 1, 'https://ror.org/00msrw429 Ribadial Clƭnica de DiƔlise de SantarƩm Lda'),
(110591, 'https://ror.org/00mtfsb62', 'pt', 1, 'https://ror.org/00mtfsb62 c5Lab'),
(110592, 'https://ror.org/00mthsf17', 'fr', 1, 'https://ror.org/00mthsf17 Centre Hospitalier Universitaire de Montpellier University Hospital of Montpellier'),
(110593, 'https://ror.org/00mvc2b94', 'en', 1, 'https://ror.org/00mvc2b94 Dr. Franjo Tudman Defense and Security University'),
(110594, 'https://ror.org/00mvtb293', 'pt', 1, 'https://ror.org/00mvtb293 Comissão de Coordenação e Desenvolvimento Regional do Algarve'),
(110595, 'https://ror.org/00mx8nh75', 'en', 1, 'https://ror.org/00mx8nh75 Chiba City International Association å…¬ē›Šč²”å›£ę³•äŗŗåƒč‘‰åø‚å›½éš›äŗ¤ęµå”ä¼š'),
(110596, 'https://ror.org/00mx93n77', 'en', 1, 'https://ror.org/00mx93n77 Kyoai Gakuen Junior College å…±ę„›å­¦åœ’å‰ę©‹å›½éš›å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(110597, 'https://ror.org/00n1dhm50', 'en', 1, 'https://ror.org/00n1dhm50 Ethiopian Institute of Water Resources į‹ØįŠ¢į‰µį‹®įŒµį‹« į‹įˆƒ įˆ€į‰„į‰µ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(110598, 'https://ror.org/00n1e1p60', 'en', 1, 'https://ror.org/00n1e1p60 Institute of Oceanology. PP Shirshov Russian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ океанологии имени П. П. ŠØŠøŃ€ŃˆŠ¾Š²Š°'),
(110599, 'https://ror.org/00n1gdp39', 'en', 1, 'https://ror.org/00n1gdp39 Central Coastal Agricultural Research Institute'),
(110600, 'https://ror.org/00n2n7216', 'en', 1, 'https://ror.org/00n2n7216 Yokosuka City Institute Of Public Health ęØŖé ˆč³€åø‚å„åŗ·å®‰å…Øē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(110601, 'https://ror.org/00n3w3b69', 'en', 1, 'https://ror.org/00n3w3b69 University of Strathclyde'),
(110602, 'https://ror.org/00n4cf238', 'id', 1, 'https://ror.org/00n4cf238 Institut Kesehatan Helvetia'),
(110603, 'https://ror.org/00n51jg89', 'en', 1, 'https://ror.org/00n51jg89 Sirius University of Science and Technology ŠŠ°ŃƒŃ‡Š½Š¾-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”ŠøŃ€ŠøŃƒŃĀ»'),
(110604, 'https://ror.org/00n8bph87', 'pt', 1, 'https://ror.org/00n8bph87 Sociedade Portuguesa de Psicologia da SaĆŗde'),
(110605, 'https://ror.org/00n9fkm63', 'en', 1, 'https://ror.org/00n9fkm63 Indiana University Northwest'),
(110606, 'https://ror.org/00n9h3r02', 'en', 1, 'https://ror.org/00n9h3r02 Novorossiysk Polytechnic Institute ŠŠ¾Š²Š¾Ń€Š¾ŃŃŠøŠ¹ŃŠŗŠøŠ¹ политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(110607, 'https://ror.org/00na7db76', 'en', 1, 'https://ror.org/00na7db76 Mathematics in Open Access'),
(110608, 'https://ror.org/00najys15', 'en', 1, 'https://ror.org/00najys15 Hokkaido Intellect Tank äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ē·åˆē ”ē©¶čŖæęŸ»ä¼š'),
(110609, 'https://ror.org/00nava455', 'en', 1, 'https://ror.org/00nava455 The Japanese Association of Rehabilitation Medicine å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³åŒ»å­¦ä¼š'),
(110610, 'https://ror.org/00nb3j622', 'no_lang_code', 1, 'https://ror.org/00nb3j622 L''OrƩal (France)'),
(110611, 'https://ror.org/00nd16e30', 'en', 1, 'https://ror.org/00nd16e30 Emirates Academy for Identity and Citizenship Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© الامارات Ł„Ł„Ł‡ŁˆŁŠŲ© ŁˆŲ§Ł„Ų¬Ł†Ų³ŁŠŲ©'),
(110612, 'https://ror.org/00nd19b42', 'en', 1, 'https://ror.org/00nd19b42 Gombe State College of Health Sciences and Technology Kaltungo'),
(110613, 'https://ror.org/00nea6d84', 'no_lang_code', 1, 'https://ror.org/00nea6d84 Farcimar SGPS (Portugal), Farcimar SGPS, S.A.'),
(110614, 'https://ror.org/00njsd438', 'no_lang_code', 1, 'https://ror.org/00njsd438 Google (United States)'),
(110615, 'https://ror.org/00nmxt396', 'pt', 1, 'https://ror.org/00nmxt396 Centro de Empresas Inovadoras'),
(110616, 'https://ror.org/00np4yj42', 'en', 1, 'https://ror.org/00np4yj42 Osaka Nuclear Science Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗćƒ‹ćƒ„ćƒ¼ć‚ÆćƒŖć‚¢ć‚µć‚¤ć‚Øćƒ³ć‚¹å”ä¼š'),
(110617, 'https://ror.org/00nqfnw21', 'es', 1, 'https://ror.org/00nqfnw21 Instituto Peruano de Neurociencias'),
(110618, 'https://ror.org/00nr08b21', 'en', 1, 'https://ror.org/00nr08b21 MR Education & Accreditation Center of Japan å…¬ē›Šč²”å›£ę³•äŗŗMRčŖå®šć‚»ćƒ³ć‚æćƒ¼'),
(110619, 'https://ror.org/00ns9pc83', 'en', 1, 'https://ror.org/00ns9pc83 Physical Sciences Division ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ физических наук Š ŠŠ'),
(110620, 'https://ror.org/00ntacr26', 'en', 1, 'https://ror.org/00ntacr26 AI Singapore'),
(110621, 'https://ror.org/00nwpew23', 'en', 1, 'https://ror.org/00nwpew23 The Optical Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…‰å­¦ä¼š'),
(110622, 'https://ror.org/00nxxkd60', 'en', 0, 'https://ror.org/00nxxkd60 Emergent Behaviors of Integrated Cellular Systems'),
(110623, 'https://ror.org/00p46er52', 'en', 1, 'https://ror.org/00p46er52 Japan Groundwork Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚°ćƒ©ć‚¦ćƒ³ćƒ‰ćƒÆćƒ¼ć‚Æå”ä¼š'),
(110624, 'https://ror.org/00p56p671', 'en', 1, 'https://ror.org/00p56p671 International Institute of Justice and Police Sciences'),
(110625, 'https://ror.org/00p68mm48', 'en', 1, 'https://ror.org/00p68mm48 Department of Mineral and Geoscience Malaysia Jabatan Mineral dan Geosains Malaysia'),
(110626, 'https://ror.org/00p6her27', 'en', 1, 'https://ror.org/00p6her27 Sydney College of Divinity'),
(110627, 'https://ror.org/00p7a1q41', 'no_lang_code', 1, 'https://ror.org/00p7a1q41 SEMTDistribuição, SEMTDistribuição (Portugal)'),
(110628, 'https://ror.org/00p7p3302', 'en', 1, 'https://ror.org/00p7p3302 Politechnika Poznańska Poznań University of Technology'),
(110629, 'https://ror.org/00padv491', 'en', 1, 'https://ror.org/00padv491 The Cell Science Research Foundation å…¬ē›Šč²”å›£ę³•äŗŗē“°čƒžē§‘å­¦ē ”ē©¶č²”å›£'),
(110630, 'https://ror.org/00pamm417', 'fr', 1, 'https://ror.org/00pamm417 Centre intƩgrƩ universitaire de santƩ et de services sociaux de la Capitale-Nationale'),
(110631, 'https://ror.org/00pc6v375', 'en', 1, 'https://ror.org/00pc6v375 Biznesa, mākslas un tehnoloģiju augstskola RISEBA RISEBA University of Applied Sciences'),
(110632, 'https://ror.org/00pe60k11', 'en', 1, 'https://ror.org/00pe60k11 Dhanalakshmi Srinivasan University'),
(110633, 'https://ror.org/00pg3n198', 'it', 1, 'https://ror.org/00pg3n198 Agenzia Regionale per la Prevenzione e la Protezione dell''Ambiente Puglia'),
(110634, 'https://ror.org/00pg6eq24', 'fr', 1, 'https://ror.org/00pg6eq24 Universitat d''Estrasburg University of Strasbourg Universität Straßburg Université de Strasbourg'),
(110635, 'https://ror.org/00phccp77', 'pt', 1, 'https://ror.org/00phccp77 Camões - Instituto da Cooperação e da Língua'),
(110636, 'https://ror.org/00phkb172', 'en', 1, 'https://ror.org/00phkb172 Arts Flanders Japan å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ćƒ¼ćƒ„ćƒ•ćƒ©ćƒ³ćƒ€ćƒ¼ć‚¹ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(110637, 'https://ror.org/00phktm30', 'en', 0, 'https://ror.org/00phktm30 ClearWay Minnesota'),
(110638, 'https://ror.org/00phr5c96', 'pt', 1, 'https://ror.org/00phr5c96 Sociedade Portuguesa de Terapia Familiar'),
(110639, 'https://ror.org/00pjm1054', 'en', 1, 'https://ror.org/00pjm1054 Lyell McEwin Hospital'),
(110640, 'https://ror.org/00pkt4594', 'no_lang_code', 1, 'https://ror.org/00pkt4594 Autodesk (United States)'),
(110641, 'https://ror.org/00pnhhv55', 'no_lang_code', 1, 'https://ror.org/00pnhhv55 جامعہ Ł…Ł„ŪŒŪ Ų§Ų³Ł„Ų§Ł…ŪŒŪ जामिया मिलिया ą¤‡ą¤øą„ą¤²ą¤¾ą¤®ą¤æą¤Æą¤¾ জামিয়া মিলিয়া ইসলামিয়া ąØœąØ¾ąØ®ą©€ąØ† ਮਿਲੀਆ ਇਸਲਾਮੀਆ ą“œą“¾ą“®ą“æą“Æ ą“®ą“æą“²ąµą“²ą“æą“Æ ą“‡ą“øąµą“²ą“¾ą“®ą“æą“Æ'),
(110642, 'https://ror.org/00ppz8629', 'en', 1, 'https://ror.org/00ppz8629 Institut für Computing Platforms Institute for Computing Platforms'),
(110643, 'https://ror.org/00pqq3g83', 'pt', 1, 'https://ror.org/00pqq3g83 Sociedade Portuguesa de Estudos Rurais'),
(110644, 'https://ror.org/00ps2qb39', 'pt', 1, 'https://ror.org/00ps2qb39 Data CoLAB'),
(110645, 'https://ror.org/00psznt47', 'en', 1, 'https://ror.org/00psznt47 Osaka Architecture Technology Association äø€čˆ¬č²”å›£ę³•äŗŗå¤§é˜Ŗå»ŗēÆ‰ęŠ€č”“å”ä¼š'),
(110646, 'https://ror.org/00pw52a85', 'es', 1, 'https://ror.org/00pw52a85 Instituto de Altos Estudios Espaciales ā€œMario Gulichā€'),
(110647, 'https://ror.org/00pw7mk43', 'en', 1, 'https://ror.org/00pw7mk43 Federal Office for Defence Procurement'),
(110648, 'https://ror.org/00pw7tr34', 'en', 1, 'https://ror.org/00pw7tr34 The Ocean Foundation'),
(110649, 'https://ror.org/00py81415', 'en', 1, 'https://ror.org/00py81415 Duke University Universidad de Duke'),
(110650, 'https://ror.org/00pyevk91', 'en', 1, 'https://ror.org/00pyevk91 Structural Engineering Research Centre'),
(110651, 'https://ror.org/00q10wd18', 'en', 1, 'https://ror.org/00q10wd18 Sydney Adventist Hospital'),
(110652, 'https://ror.org/00q12hk53', 'en', 1, 'https://ror.org/00q12hk53 AGST Philippines'),
(110653, 'https://ror.org/00q2y5s03', 'en', 1, 'https://ror.org/00q2y5s03 Horizon Discovery, Horizon Discovery (United Kingdom), Revvity Discovery Limited'),
(110654, 'https://ror.org/00q3j1c96', 'fr', 1, 'https://ror.org/00q3j1c96 Centre d''Ɖtude sur la FiscalitĆ© des Entreprises de Paris'),
(110655, 'https://ror.org/00q3psk33', 'en', 1, 'https://ror.org/00q3psk33 Institute of Biophysics and Cell Engineering Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Š±Ń–ŃŃ„Ń–Š·Ń–ŠŗŃ– і клетачнай інжынерыі, Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Š±Ń–ŃŃ„Ń–Š·Ń–ŠŗŃ– і клетачнай інжынерыі ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŃ–'),
(110656, 'https://ror.org/00q4mmh24', 'en', 1, 'https://ror.org/00q4mmh24 Sendai gender equal opportunity foundation å…¬ē›Šč²”å›£ę³•äŗŗć›ć‚“ć ć„ē”·å„³å…±åŒå‚ē”»č²”å›£'),
(110657, 'https://ror.org/00q4rrr38', 'pt', 1, 'https://ror.org/00q4rrr38 Escola Artística de Dança do Conservatório Nacional'),
(110658, 'https://ror.org/00q6h8f30', 'nl', 1, 'https://ror.org/00q6h8f30 Amsterdam UMC Location Vrije Universiteit Amsterdam'),
(110659, 'https://ror.org/00q7d9z06', 'no', 1, 'https://ror.org/00q7d9z06 NILU, Stiftelsen NILU'),
(110660, 'https://ror.org/00q846h05', 'en', 1, 'https://ror.org/00q846h05 Rajkiya Engineering College Kannauj'),
(110661, 'https://ror.org/00qaqy020', 'it', 1, 'https://ror.org/00qaqy020 Agenzia Regionale per la Protezione Ambientale della Toscana'),
(110662, 'https://ror.org/00qcpjs09', 'de', 1, 'https://ror.org/00qcpjs09 Klinikum Gƶrlitz'),
(110663, 'https://ror.org/00qcwfy86', 'en', 1, 'https://ror.org/00qcwfy86 Japan Designers Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›³ę”ˆå®¶å”ä¼š'),
(110664, 'https://ror.org/00qd5p471', 'en', 1, 'https://ror.org/00qd5p471 National Gallery in Prague'),
(110665, 'https://ror.org/00qfb4074', 'nl', 1, 'https://ror.org/00qfb4074 Jan Kornelis de Cock Stichting'),
(110666, 'https://ror.org/00qhg0338', 'en', 1, 'https://ror.org/00qhg0338 Institute of Soil Science and Plant Cultivation'),
(110667, 'https://ror.org/00qhsr941', 'pt', 1, 'https://ror.org/00qhsr941 Câmara Municipal de Águeda'),
(110668, 'https://ror.org/00qk0vr83', 'fr', 1, 'https://ror.org/00qk0vr83 Institut National de l''Ɖnergie Solaire, National Solar Energy Institute'),
(110669, 'https://ror.org/00qm1ye08', 'fr', 1, 'https://ror.org/00qm1ye08 Centre de Mise en Forme des MatƩriaux, Mines Paris, UniversitƩ PSL, Centre de Mise en Forme des MatƩriaux (CEMEF) Centre for Material Forming, Mines Paris, PSL University, Centre for material forming (CEMEF)'),
(110670, 'https://ror.org/00qq1fp34', 'en', 1, 'https://ror.org/00qq1fp34 FakultnĆ­ Nemocnice Brno University Hospital Brno'),
(110671, 'https://ror.org/00qrpt643', 'en', 1, 'https://ror.org/00qrpt643 Bankstown Lidcombe Hospital'),
(110672, 'https://ror.org/00qsv5a30', 'en', 0, 'https://ror.org/00qsv5a30 Iida Junior College é£Æē”°ēŸ­ęœŸå¤§å­¦'),
(110673, 'https://ror.org/00qsype34', 'en', 1, 'https://ror.org/00qsype34 Armavir Institute of Mechanics and Technology Армавирский механико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(110674, 'https://ror.org/00qv6a180', 'pt', 1, 'https://ror.org/00qv6a180 CĆ¢mara Municipal de Albergaria'),
(110675, 'https://ror.org/00qw7q473', 'en', 1, 'https://ror.org/00qw7q473 Toyama New Industry Organization å…¬ē›Šč²”å›£ę³•äŗŗåÆŒå±±ēœŒę–°äø–ē“€ē”£ę„­ę©Ÿę§‹'),
(110676, 'https://ror.org/00qzypv28', 'en', 1, 'https://ror.org/00qzypv28 Vellore Institute of Technology University ą®µąÆ‡ą®²ąÆ‚ą®°ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(110677, 'https://ror.org/00r1edq15', 'de', 1, 'https://ror.org/00r1edq15 Ernst-Moritz-Arndt-UniversitƤt Greifswald, UniversitƤt Greifswald'),
(110678, 'https://ror.org/00r2kgw23', 'it', 1, 'https://ror.org/00r2kgw23 Agenzia Regionale per la Protezione dell''Ambiente Sicilia'),
(110679, 'https://ror.org/00r3jwh90', 'en', 1, 'https://ror.org/00r3jwh90 Budapest University of Economics and Business Budapesti GazdasƔgi Egyetem'),
(110680, 'https://ror.org/00r4taj88', 'en', 1, 'https://ror.org/00r4taj88 IRL HealthDEEP'),
(110681, 'https://ror.org/00r79yp05', 'da', 1, 'https://ror.org/00r79yp05 HF & VUC Klar'),
(110682, 'https://ror.org/00rawf147', 'fr', 1, 'https://ror.org/00rawf147 Maison des Sciences de l''Homme Lyon St-Ɖtienne'),
(110683, 'https://ror.org/00rb2rb24', 'en', 1, 'https://ror.org/00rb2rb24 National University of Science and Technology الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(110684, 'https://ror.org/00rbzpz17', 'fr', 1, 'https://ror.org/00rbzpz17 Agence Nationale de la Recherche National Agency for Research'),
(110685, 'https://ror.org/00rcxh774', 'en', 1, 'https://ror.org/00rcxh774 University of Cologne UniversitƤt zu Kƶln'),
(110686, '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'),
(110687, 'https://ror.org/00re37a10', 'en', 1, 'https://ror.org/00re37a10 Computer Graphic Arts Society å…¬ē›Šč²”å›£ę³•äŗŗē”»åƒęƒ…å ±ę•™č‚²ęŒÆčˆˆå”ä¼š'),
(110688, 'https://ror.org/00re6p830', 'pt', 1, 'https://ror.org/00re6p830 Oftalcare Clínica Oftalmológica Lda Oftalcare Eye Clinic'),
(110689, 'https://ror.org/00rehag55', 'pt', 1, 'https://ror.org/00rehag55 Academia de MĆŗsica de Lisboa'),
(110690, 'https://ror.org/00rfzm906', 'en', 1, 'https://ror.org/00rfzm906 Japan Cycling Federation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č‡Ŗč»¢č»Šē«¶ęŠ€é€£ē›Ÿ'),
(110691, 'https://ror.org/00rjza670', 'id', 1, 'https://ror.org/00rjza670 STMIK Widya Cipta Dharma'),
(110692, 'https://ror.org/00rk2pe57', 'en', 1, 'https://ror.org/00rk2pe57 Office of Naval Research'),
(110693, 'https://ror.org/00rk50852', 'en', 1, 'https://ror.org/00rk50852 K. N. Bhise Arts, Commerce and Vinayakrao Patil Science College'),
(110694, 'https://ror.org/00rke6z83', 'en', 1, 'https://ror.org/00rke6z83 Aeon Environmental Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚¤ć‚Ŗćƒ³ē’°å¢ƒč²”å›£'),
(110695, 'https://ror.org/00rn4r370', 'en', 1, 'https://ror.org/00rn4r370 Peace Corps'),
(110696, 'https://ror.org/00rnbty21', 'en', 1, 'https://ror.org/00rnbty21 Centre for Quantum Computation and Communication Technology'),
(110697, 'https://ror.org/00rqy9422', 'en', 1, 'https://ror.org/00rqy9422 The University of Queensland'),
(110698, 'https://ror.org/00rrpnq66', 'no_lang_code', 1, 'https://ror.org/00rrpnq66 Aimmune Therapeutics (United Kingdom)'),
(110699, 'https://ror.org/00rs6vg23', 'en', 1, 'https://ror.org/00rs6vg23 The Ohio State University Universidad Estatal de Ohio UniversitĆ© d''Ɖtat de l''Ohio'),
(110700, 'https://ror.org/00rt03g55', 'de', 1, 'https://ror.org/00rt03g55 Wiener Psychoanalytische Vereinigung'),
(110701, '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'),
(110702, 'https://ror.org/00rv19195', 'no_lang_code', 1, 'https://ror.org/00rv19195 Armory of the Alfeite, Arsenal do Alfeite, Arsenal do Alfeite (Portugal)'),
(110703, 'https://ror.org/00rx1p510', 'en', 1, 'https://ror.org/00rx1p510 University of Michigan Press'),
(110704, 'https://ror.org/00rxf5j14', 'en', 1, 'https://ror.org/00rxf5j14 Japan Atherosclerosis Research Foundation äø€čˆ¬č²”å›£ę³•äŗŗå‹•č„ˆē”¬åŒ–ē ”ē©¶å„ØåŠ±ä¼š'),
(110705, 'https://ror.org/00rxtj918', 'en', 1, 'https://ror.org/00rxtj918 Bangladesh Foreign Trade Institute বাংলাদেশ ফরেন ą¦Ÿą§ą¦°ą§‡ą¦” ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(110706, 'https://ror.org/00rzspn62', 'en', 1, 'https://ror.org/00rzspn62 Universiti Malaya University of Malaya மலாயா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ดหาวณทยาคัยดาคายา é©¬ę„äŗšå¤§å­¦'),
(110707, 'https://ror.org/00s1b0733', 'es', 1, 'https://ror.org/00s1b0733 Institución Universitaria Pascual Bravo'),
(110708, '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'),
(110709, 'https://ror.org/00s2qq515', 'no_lang_code', 1, 'https://ror.org/00s2qq515 Dr. D.Y. Patil Vidyapeeth, Pune'),
(110710, 'https://ror.org/00s6fdn14', 'pt', 1, 'https://ror.org/00s6fdn14 FÔbrica Centro Ciência Viva de Aveiro'),
(110711, 'https://ror.org/00s6t1f81', 'en', 1, 'https://ror.org/00s6t1f81 Universitat de Pavia University of Pavia UniversitƠ degli Studi di Pavia UniversitƩ de pavie'),
(110712, 'https://ror.org/00s89aq18', 'de', 1, 'https://ror.org/00s89aq18 Gesellschaft für Klinische Forschung, Gesellschaft für klinische Forschung e.V.'),
(110713, 'https://ror.org/00s8fpf52', 'en', 1, 'https://ror.org/00s8fpf52 Lodz University of Technology Politechnika Łódzka'),
(110714, 'https://ror.org/00s8nav02', 'no_lang_code', 1, 'https://ror.org/00s8nav02 Upstream Portugal, Upstream Portugal (Portugal)'),
(110715, 'https://ror.org/00s9amp20', 'en', 1, 'https://ror.org/00s9amp20 Japan Image and Information Management Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę–‡ę›øęƒ…å ±ćƒžćƒć‚øćƒ”ćƒ³ćƒˆå”ä¼š'),
(110716, 'https://ror.org/00s9qnc79', 'ga', 1, 'https://ror.org/00s9qnc79 Bord Iascaigh Mharaga'),
(110717, 'https://ror.org/00sdcqq09', 'en', 1, 'https://ror.org/00sdcqq09 Lesbian, Gay, Bisexual and Transgender Community Center'),
(110718, 'https://ror.org/00sddyf72', 'en', 1, 'https://ror.org/00sddyf72 Museu de Arte Contemporânea de Elvas'),
(110719, 'https://ror.org/00sde4n60', 'en', 1, 'https://ror.org/00sde4n60 University of Maryland Medical Center'),
(110720, 'https://ror.org/00se1zw92', 'en', 1, 'https://ror.org/00se1zw92 Seversk Technological Institute Деверский технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(110721, 'https://ror.org/00skrkx16', 'no_lang_code', 1, 'https://ror.org/00skrkx16 TMG Group, TMG Group (Portugal)'),
(110722, 'https://ror.org/00skvsz15', 'id', 1, 'https://ror.org/00skvsz15 Badan Pengembangan Sumber Daya Manusia Provinsi DKI Jakarta'),
(110723, 'https://ror.org/00sme9021', 'en', 1, 'https://ror.org/00sme9021 Shibata Gakuen University ęŸ“ē”°å­¦åœ’å¤§å­¦'),
(110724, 'https://ror.org/00smpyt26', 'en', 1, 'https://ror.org/00smpyt26 The Japanese Society of Fisheries Science å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“ē”£å­¦ä¼š'),
(110725, 'https://ror.org/00sqxf378', 'en', 1, 'https://ror.org/00sqxf378 Dobrudzha Agricultural Institute - General Toshevo Š”Š¾Š±Ń€ŃƒŠ“Š¶Š°Š½ŃŠŗŠø земеГелски ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ - Генерал Тошево'),
(110726, 'https://ror.org/00ss0c234', 'pt', 1, 'https://ror.org/00ss0c234 CĆ¢mara Municipal do Seixal'),
(110727, 'https://ror.org/00ssszg35', 'pt', 1, 'https://ror.org/00ssszg35 Instituto de Investigação em Ciências do Mar Okeanos'),
(110728, 'https://ror.org/00ssv5a91', 'pt', 1, 'https://ror.org/00ssv5a91 Casa de Sarmento'),
(110729, 'https://ror.org/00ssy9q55', 'fr', 1, 'https://ror.org/00ssy9q55 Laboratoire d’Astrophysique de Marseille'),
(110730, 'https://ror.org/00st91468', 'en', 1, 'https://ror.org/00st91468 Victorian Comprehensive Cancer Centre'),
(110731, 'https://ror.org/00stfdh39', 'fr', 1, 'https://ror.org/00stfdh39 Laboratoire d’études juridiques et politiques Legal and Political Studies Laboratory'),
(110732, 'https://ror.org/00sth2g95', 'en', 1, 'https://ror.org/00sth2g95 General Hospital of Larisa, Greece'),
(110733, 'https://ror.org/00t0ht588', 'en', 1, 'https://ror.org/00t0ht588 All India Institute of Medical Sciences, Deoghar'),
(110734, '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'),
(110735, 'https://ror.org/00t33hh48', 'en', 1, 'https://ror.org/00t33hh48 Chinese University of Hong Kong 香港中文大學'),
(110736, 'https://ror.org/00t3njy04', 'fr', 1, 'https://ror.org/00t3njy04 Culture/s, Patrimoine/s, CrƩation/s - HƩritages'),
(110737, 'https://ror.org/00t67pt25', 'en', 1, 'https://ror.org/00t67pt25 Birmingham City University'),
(110738, 'https://ror.org/00t6gnv18', 'en', 1, 'https://ror.org/00t6gnv18 Hochschule für Angewandte Wissenschaften Burgenland University of Applied Sciences Burgenland'),
(110739, 'https://ror.org/00t7ph632', 'en', 1, 'https://ror.org/00t7ph632 Heavitree Hospital'),
(110740, '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 Универзитет за пословни ŠøŠ½Š¶ŠµŃšŠµŃ€ŠøŠ½Š³ Šø Š¼ŠµŠ½Š°ŃŸŠ¼ŠµŠ½Ń‚'),
(110741, 'https://ror.org/00td9be07', 'no_lang_code', 1, 'https://ror.org/00td9be07 Wipro (Portugal)'),
(110742, 'https://ror.org/00tdc7x54', 'pt', 1, 'https://ror.org/00tdc7x54 Escola Naval Unidade Orgânica de Ensino Politécnico'),
(110743, 'https://ror.org/00te98f55', 'en', 1, 'https://ror.org/00te98f55 Edwards Aquifer Authority'),
(110744, 'https://ror.org/00tne8j02', 'en', 1, 'https://ror.org/00tne8j02 Gifu Seiryu Hospital åŒ»ē™‚ę³•äŗŗęø…å…‰ä¼šå²é˜œęø…ęµē—…é™¢'),
(110745, 'https://ror.org/00trqv719', 'en', 1, 'https://ror.org/00trqv719 University of Rochester Medical Center'),
(110746, 'https://ror.org/00tvq5277', 'en', 1, 'https://ror.org/00tvq5277 United States Air Combat Command'),
(110747, 'https://ror.org/00v0g9w49', 'es', 1, 'https://ror.org/00v0g9w49 Andalusian Earth Sciences Institute Instituto Andaluz de Ciencias de la Tierra');
INSERT INTO `rors` VALUES
(110748, 'https://ror.org/00v171g37', 'en', 1, 'https://ror.org/00v171g37 Laboratorium für Physikalische Chemie Laboratory of Physical Chemistry'),
(110749, 'https://ror.org/00v570979', 'en', 1, 'https://ror.org/00v570979 Centre of Materials and Nanotechnologies Centrum materiÔlů a nanotechnologií'),
(110750, 'https://ror.org/00v6d2h12', 'de', 1, 'https://ror.org/00v6d2h12 Bertha von Suttner PrivatuniversitƤt St. Pƶlten GmbH'),
(110751, 'https://ror.org/00v6ffm80', 'en', 1, 'https://ror.org/00v6ffm80 Ecrins National Park'),
(110752, 'https://ror.org/00v6r8906', 'en', 1, 'https://ror.org/00v6r8906 National Agency for Automotive Safety & Victims'' Aid ē‹¬ē«‹č”Œę”æę³•äŗŗč‡Ŗå‹•č»Šäŗ‹ę•…åÆ¾ē­–ę©Ÿę§‹'),
(110753, 'https://ror.org/00v744p56', 'en', 1, 'https://ror.org/00v744p56 GREEN CROSS japan äø€čˆ¬č²”å›£ę³•äŗŗć‚°ćƒŖćƒ¼ćƒ³ć‚Æćƒ­ć‚¹ć‚øćƒ£ćƒ‘ćƒ³'),
(110754, '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'),
(110755, 'https://ror.org/00v97ad02', 'en', 1, 'https://ror.org/00v97ad02 Universidad del Norte de Texas University of North Texas'),
(110756, 'https://ror.org/00v9d4z37', 'en', 1, 'https://ror.org/00v9d4z37 IESE Business School'),
(110757, 'https://ror.org/00va36f15', 'en', 1, 'https://ror.org/00va36f15 Zhejiang Provincial Health Commission ęµ™ę±Ÿēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(110758, 'https://ror.org/00vaxb994', 'en', 1, 'https://ror.org/00vaxb994 Sylhet Engineering College'),
(110759, 'https://ror.org/00vfkh368', 'es', 1, 'https://ror.org/00vfkh368 Fundación I+D Software Libre'),
(110760, 'https://ror.org/00vgscq55', 'en', 0, 'https://ror.org/00vgscq55 University of Belgrade – Faculty of Pharmacy Univerzitet u Beogradu – Farmaceutski fakultet'),
(110761, 'https://ror.org/00vh6r649', 'it', 1, 'https://ror.org/00vh6r649 Centro interuniversitario per la ricerca sull''influenza e le altre infezioni trasmissibili'),
(110762, 'https://ror.org/00vhnmh07', 'fr', 1, 'https://ror.org/00vhnmh07 Catalyseur Technologie SantƩ'),
(110763, 'https://ror.org/00vhyej92', 'en', 1, 'https://ror.org/00vhyej92 Federal University of Technology, Babura'),
(110764, 'https://ror.org/00vj0q898', 'en', 1, 'https://ror.org/00vj0q898 Sarsen Amanzholov East Kazakhstan University Š’ŠžŠ”Š¢ŠžŠ§ŠŠž-ŠšŠŠ—ŠŠ„Š”Š¢ŠŠŠ”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢ Š˜ŠœŠ•ŠŠ˜ Š”ŠŠ Š”Š•ŠŠ ŠŠœŠŠŠ–ŠžŠ›ŠžŠ’Š Š”Ó˜Š Š”Š•Š ŠŠœŠŠŠ–ŠžŠ›ŠžŠ’ ŠŠ¢Š«ŠŠ”ŠŅ’Š« ШЫҒЫД ŅšŠŠ—ŠŅšŠ”Š¢ŠŠ ŠœŠ•ŠœŠ›Š•ŠšŠ•Š¢Š¢Š†Šš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š†'),
(110765, 'https://ror.org/00vj45j81', 'it', 1, 'https://ror.org/00vj45j81 AULSS 2 Marca Trevigiana'),
(110766, 'https://ror.org/00vn0zc62', 'fr', 1, 'https://ror.org/00vn0zc62 GƩosciences Rennes'),
(110767, 'https://ror.org/00vn0zk41', 'en', 1, 'https://ror.org/00vn0zk41 Ohara Graduate School of Business 大原大学院大学'),
(110768, 'https://ror.org/00vntp727', 'en', 1, 'https://ror.org/00vntp727 Spinal Injuries Japan å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č„Šé«„ęå‚·č€…é€£åˆä¼š'),
(110769, 'https://ror.org/00vq5j353', 'no_lang_code', 1, 'https://ror.org/00vq5j353 Costa NƔutica (Portugal)'),
(110770, 'https://ror.org/00vrp1e19', 'en', 1, 'https://ror.org/00vrp1e19 Axminster Hospital'),
(110771, 'https://ror.org/00vvaxp92', 'pt', 1, 'https://ror.org/00vvaxp92 Centro Paula Souza'),
(110772, 'https://ror.org/00vvm7f23', 'pt', 1, 'https://ror.org/00vvm7f23 Universidade Norte do ParanĆ”'),
(110773, 'https://ror.org/00vwzpn38', 'no_lang_code', 1, 'https://ror.org/00vwzpn38 Sermail Integrated Logistics, Sermail LogĆ­stica Integrada (Portugal)'),
(110774, 'https://ror.org/00vz7hd33', 'en', 1, 'https://ror.org/00vz7hd33 XploreOpen'),
(110775, 'https://ror.org/00vzpka39', 'id', 1, 'https://ror.org/00vzpka39 Universitas Islam Negeri Sultan Maulana Hasanuddin Banten'),
(110776, 'https://ror.org/00w0t0m75', 'en', 0, 'https://ror.org/00w0t0m75 Anderson Orthopaedic Clinic'),
(110777, 'https://ror.org/00w1ah179', 'en', 1, 'https://ror.org/00w1ah179 Jabalpur Engineering College ą¤œą¤¬ą¤²ą¤Ŗą„ą¤° ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(110778, 'https://ror.org/00w3gq485', 'es', 1, 'https://ror.org/00w3gq485 Pronatura Peninsula de Yucatan, A.C.'),
(110779, 'https://ror.org/00w3jeh04', 'uk', 1, 'https://ror.org/00w3jeh04 Polissya Institute of Agriculture of National Academy of Agrarian Sciences of Ukraine, Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠŸŠ¾Š»Ń–сся ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(110780, 'https://ror.org/00w5ay796', 'fr', 1, 'https://ror.org/00w5ay796 Laboratoire de Physique de l''ENS de Lyon'),
(110781, 'https://ror.org/00w6b2w91', 'en', 1, 'https://ror.org/00w6b2w91 Agricultural Development and Training Center äø€čˆ¬ē¤¾å›£ę³•äŗŗč¾²ę„­é–‹ē™ŗē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(110782, 'https://ror.org/00w76ga53', 'en', 1, 'https://ror.org/00w76ga53 Nippon International Cooperation for Community Development å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›½éš›ę°‘é–“å”åŠ›ä¼š'),
(110783, 'https://ror.org/00w7v1v77', 'en', 1, 'https://ror.org/00w7v1v77 Laboratório Nacional de Energia e Geologia National Laboratory of Energy and Geology'),
(110784, 'https://ror.org/00w7whj55', 'de', 1, 'https://ror.org/00w7whj55 Berliner Hochschule für Technik'),
(110785, '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) ćƒˆćƒØć‚æč‡Ŗå‹•č»ŠåŒ—ē±³'),
(110786, 'https://ror.org/00w8wc934', 'en', 1, 'https://ror.org/00w8wc934 Tokyo Metropolitan Islands Area Research and Development Center for Agriculture, Forestry and Fisheries ę±äŗ¬éƒ½å³¶ć—ć‚‡č¾²ęž—ę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(110787, 'https://ror.org/00w949314', 'en', 1, 'https://ror.org/00w949314 Hyogo Prefectural Kakogawa Medical Center å…µåŗ«ēœŒē«‹åŠ å¤å·åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(110788, 'https://ror.org/00wbqz082', 'en', 1, 'https://ror.org/00wbqz082 Australian College of Environmental Studies'),
(110789, 'https://ror.org/00wchgj69', 'en', 1, 'https://ror.org/00wchgj69 Nagano Society for the Promotion of Science äø€čˆ¬č²”å›£ę³•äŗŗé•·é‡ŽēœŒē§‘å­¦ęŒÆčˆˆä¼š'),
(110790, 'https://ror.org/00wd8c661', 'en', 1, 'https://ror.org/00wd8c661 Siddaganga Institute of Technology'),
(110791, 'https://ror.org/00wdyvz26', 'pt', 1, 'https://ror.org/00wdyvz26 Centro de Investigação em Educação'),
(110792, 'https://ror.org/00wgpgb78', 'en', 1, 'https://ror.org/00wgpgb78 John Adams Institute for Accelerator Science'),
(110793, 'https://ror.org/00wh8n595', 'en', 1, 'https://ror.org/00wh8n595 Westlake Robotics, Westlake Robotics (China)'),
(110794, 'https://ror.org/00wj9ta74', 'en', 1, 'https://ror.org/00wj9ta74 TheCombinatorics Consortium'),
(110795, 'https://ror.org/00wnzj089', 'fr', 0, 'https://ror.org/00wnzj089 Escòla Nacionala d''Administracion National School of Administration Ɖcole nationale d''administration'),
(110796, 'https://ror.org/00wppxb27', 'fr', 1, 'https://ror.org/00wppxb27 Vieillissement, FragilitƩ'),
(110797, 'https://ror.org/00wq4fp40', 'no_lang_code', 1, 'https://ror.org/00wq4fp40 FI Group, FI Group (Portugal)'),
(110798, 'https://ror.org/00ws7a790', 'pt', 1, 'https://ror.org/00ws7a790 Sociedade Portuguesa de Patologia Animal'),
(110799, 'https://ror.org/00wsw4f53', 'en', 1, 'https://ror.org/00wsw4f53 Central State Scientific and Technical Archive of Ukraine Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ Гержавний науково-технічний архів України'),
(110800, 'https://ror.org/00ww5b307', 'pt', 1, 'https://ror.org/00ww5b307 Unidade Local de SaĆŗde de Amadora/Sintra'),
(110801, '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'),
(110802, 'https://ror.org/00x0n6k03', 'pt', 1, 'https://ror.org/00x0n6k03 Centro de Investigação e Estudos João de Deus'),
(110803, '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'),
(110804, 'https://ror.org/00x3b5b62', 'en', 1, 'https://ror.org/00x3b5b62 The Japan Food Machinery Manufacturers'' Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ę©Ÿę¢°å·„ę„­ä¼š'),
(110805, 'https://ror.org/00x75sk82', 'en', 1, 'https://ror.org/00x75sk82 Houston Christian University'),
(110806, 'https://ror.org/00xbsaf62', 'en', 1, 'https://ror.org/00xbsaf62 Czech Hydrometeorological Institute'),
(110807, 'https://ror.org/00xdsr520', 'en', 1, 'https://ror.org/00xdsr520 MetabERN'),
(110808, 'https://ror.org/00xdvw685', 'de', 1, 'https://ror.org/00xdvw685 Hochschule 21'),
(110809, 'https://ror.org/00xf91p27', 'no_lang_code', 1, 'https://ror.org/00xf91p27 MarSensing (Portugal)'),
(110810, 'https://ror.org/00xj0bd35', 'fr', 1, 'https://ror.org/00xj0bd35 Laboratoire de sociologie et d''anthropologie'),
(110811, 'https://ror.org/00xkeyj56', 'en', 1, 'https://ror.org/00xkeyj56 University of Kent'),
(110812, 'https://ror.org/00xkg1h94', 'en', 1, 'https://ror.org/00xkg1h94 International Islamic Academy of Uzbekistan'),
(110813, 'https://ror.org/00xmgvk71', 'en', 1, 'https://ror.org/00xmgvk71 Oral Health Association of Japan äø€čˆ¬č²”å›£ę³•äŗŗå£č…”äæå„å”ä¼š'),
(110814, 'https://ror.org/00xmk8w24', 'pt', 1, 'https://ror.org/00xmk8w24 Instituto de Filosofia'),
(110815, 'https://ror.org/00xms0c62', 'it', 1, 'https://ror.org/00xms0c62 Agenzia Regionale per la Tutela dell''Ambiente'),
(110816, 'https://ror.org/00xsr9m91', 'en', 1, 'https://ror.org/00xsr9m91 Tiangong University 天擄巄业大学'),
(110817, 'https://ror.org/00xtxt091', 'pt', 1, 'https://ror.org/00xtxt091 Centro de Estudos de Arquitetura Cidade e Território'),
(110818, 'https://ror.org/00xvf9d29', 'en', 1, 'https://ror.org/00xvf9d29 Education Department of Henan Province'),
(110819, 'https://ror.org/00xvhrm87', 'pt', 1, 'https://ror.org/00xvhrm87 Ispa CRL'),
(110820, 'https://ror.org/00xvm4f81', 'en', 1, 'https://ror.org/00xvm4f81 British Columbia Centre of Excellence for Women''s Health'),
(110821, 'https://ror.org/00xwpff16', 'en', 1, 'https://ror.org/00xwpff16 Kokand branch of Tashkent State Technical University named after Islam Karimov'),
(110822, 'https://ror.org/00xzqjh13', 'en', 1, 'https://ror.org/00xzqjh13 Universidad de Tennessee University of Tennessee System UniversitƩ du Tennessee'),
(110823, 'https://ror.org/00y0zne44', 'en', 1, 'https://ror.org/00y0zne44 Japan Center for Area Development Research äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åœ°åŸŸé–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(110824, 'https://ror.org/00y1f4581', 'en', 1, 'https://ror.org/00y1f4581 Kyrgyz-Uzbek International University named after Batyraly Sydykov Батыралы ДыГыков атынГагы ŠšŃ‹Ń€Š³Ń‹Š·-Өзбек Š­Š» аралык ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾-Узбекский ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Батыралы ДыГыкова'),
(110825, 'https://ror.org/00y1neg56', 'en', 1, 'https://ror.org/00y1neg56 digital Trial Innovation Platform'),
(110826, 'https://ror.org/00y25pj85', 'pt', 1, 'https://ror.org/00y25pj85 Unidade Local de SaĆŗde do Alto Minho'),
(110827, 'https://ror.org/00y4bgc09', 'en', 1, 'https://ror.org/00y4bgc09 Sumerian Scriptum Synthesis Publisher'),
(110828, 'https://ror.org/00y4ya841', 'en', 1, 'https://ror.org/00y4ya841 Medical University of Białystok Uniwersytet Medyczny w Białymstoku'),
(110829, 'https://ror.org/00y4zzh67', 'en', 1, 'https://ror.org/00y4zzh67 George Washington University Universidad George Washington'),
(110830, 'https://ror.org/00y53rp76', 'en', 1, 'https://ror.org/00y53rp76 Osaka Tennoji Zoo åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤©ēŽ‹åÆŗå‹•ē‰©åœ’'),
(110831, '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'),
(110832, 'https://ror.org/00y7acy81', 'pt', 1, 'https://ror.org/00y7acy81 Conservatório de Música e Artes do Dão'),
(110833, 'https://ror.org/00y7p5s85', 'fr', 1, 'https://ror.org/00y7p5s85 Centre de recherche sur les stratƩgies Ʃconomiques'),
(110834, 'https://ror.org/00y7tet25', 'en', 1, 'https://ror.org/00y7tet25 ERN eUROGEN'),
(110835, 'https://ror.org/00y9q1296', 'pt', 1, 'https://ror.org/00y9q1296 Centro CiĆŖncia Viva de Tavira'),
(110836, 'https://ror.org/00yae6e25', 'en', 1, 'https://ror.org/00yae6e25 University of Wrocław UniversitƤt Breslau Uniwersytet Wrocławski'),
(110837, 'https://ror.org/00yak2029', 'en', 1, 'https://ror.org/00yak2029 Venkateswara Homoeopathic Medical College and Hospital'),
(110838, 'https://ror.org/00yee3n23', 'fr', 1, 'https://ror.org/00yee3n23 Laboratoire d''Astrophysique de Bordeaux Laboratory of Astrophysics of Bordeaux'),
(110839, 'https://ror.org/00yeyhb94', 'tr', 1, 'https://ror.org/00yeyhb94 Antalya Bilim University Antalya Bilim Üniversitesi'),
(110840, 'https://ror.org/00yf32w91', 'en', 1, 'https://ror.org/00yf32w91 Yokohama Minatomirai äø€čˆ¬ē¤¾å›£ę³•äŗŗęØŖęµœćæćŖćØćæć‚‰ć„21'),
(110841, 'https://ror.org/00yfma824', 'fr', 1, 'https://ror.org/00yfma824 UniversitƩ AndrƩ Salifou'),
(110842, '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'),
(110843, 'https://ror.org/00ygmry26', 'en', 1, 'https://ror.org/00ygmry26 Cluster of Excellence "Inflammation at Interfaces" Exzellenzclusters Entzündungsforschung'),
(110844, 'https://ror.org/00ykkv152', 'en', 1, 'https://ror.org/00ykkv152 Saga Pharmaceutical Sanitation Center ä½č³€ēœŒč”›ē”Ÿč–¬ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(110845, 'https://ror.org/00ypd7t24', 'es', 1, 'https://ror.org/00ypd7t24 Centro de Isotopos'),
(110846, 'https://ror.org/00ypk1e52', 'en', 1, 'https://ror.org/00ypk1e52 Al Maaref University Ų¬Ų§Ł…Ų¹Ų© المعارف'),
(110847, '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'),
(110848, 'https://ror.org/00ysfqy60', 'en', 1, 'https://ror.org/00ysfqy60 Oregon State University Universidad Estatal de Oregón UniversitĆ© d''Ɖtat de l''Oregon'),
(110849, 'https://ror.org/00yttx659', 'en', 1, 'https://ror.org/00yttx659 HJ International Graduate School for Peace and Public Leadership ēµ±äø€ē„žå­¦ę ”'),
(110850, 'https://ror.org/00yvyj927', 'en', 1, 'https://ror.org/00yvyj927 Defense Technology Foundation äø€čˆ¬č²”å›£ę³•äŗŗé˜²č”›ęŠ€č”“å”ä¼š'),
(110851, 'https://ror.org/00ywn4q28', 'en', 1, 'https://ror.org/00ywn4q28 University of Technology and Applied Sciences, Muscat Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(110852, 'https://ror.org/00yx1kx21', 'de', 1, 'https://ror.org/00yx1kx21 University Hospital Wiener Neustadt UniversitƤtsklinikum Wiener Neustadt'),
(110853, 'https://ror.org/00yx29a03', 'en', 1, 'https://ror.org/00yx29a03 SRH Fernhochschule – The Mobile University'),
(110854, 'https://ror.org/00yz0w484', 'en', 1, 'https://ror.org/00yz0w484 CHRIST (Deemed to be) University, Delhi NCR'),
(110855, 'https://ror.org/00yzszn60', 'en', 1, 'https://ror.org/00yzszn60 Wakayama Professional University of Rehabilitation å’Œę­Œå±±ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(110856, 'https://ror.org/00z1f6y87', 'en', 1, 'https://ror.org/00z1f6y87 Seribiotechnology Research Laboratory'),
(110857, 'https://ror.org/00z39za88', 'en', 1, 'https://ror.org/00z39za88 American Federation of Labor and Congress of Industrial Organizations'),
(110858, 'https://ror.org/00z49z463', 'es', 1, 'https://ror.org/00z49z463 Instituto Superior Universitario RumiƱahui'),
(110859, 'https://ror.org/00z54nq84', 'fr', 1, 'https://ror.org/00z54nq84 Institut de Physique'),
(110860, 'https://ror.org/00z5tv669', 'en', 1, 'https://ror.org/00z5tv669 Small Business Institute Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å°ä¼ę„­ē ”ē©¶ę‰€'),
(110861, 'https://ror.org/00z9m6b57', 'en', 1, 'https://ror.org/00z9m6b57 Northern Devon Healthcare NHS Trust'),
(110862, 'https://ror.org/00zc2xc51', 'en', 1, 'https://ror.org/00zc2xc51 Royal Perth Hospital'),
(110863, 'https://ror.org/00zec5297', 'no_lang_code', 1, 'https://ror.org/00zec5297 Bayer (Portugal), Bayer Portugal SA'),
(110864, '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.'),
(110865, 'https://ror.org/00zemkf37', 'en', 1, 'https://ror.org/00zemkf37 KOBE Ymca å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøYMCA'),
(110866, 'https://ror.org/00zevd106', 'en', 1, 'https://ror.org/00zevd106 J. Selye University Selye JƔnos Egyetem Univerzita J. Selyeho'),
(110867, 'https://ror.org/00zgas264', 'fr', 1, 'https://ror.org/00zgas264 ProcƩdƩs Alimentaires et Microbiologiques'),
(110868, 'https://ror.org/00zgs5r70', 'pt', 1, 'https://ror.org/00zgs5r70 Centro de Investigação em Teologia e Estudos da Religião'),
(110869, 'https://ror.org/00zjprf31', 'en', 1, 'https://ror.org/00zjprf31 LusĆ­ada University of Lisbon'),
(110870, 'https://ror.org/00zk46w34', 'de', 1, 'https://ror.org/00zk46w34 Fresenius University of Applied Sciences Heidelberg Hochschule Fresenius Heidelberg'),
(110871, 'https://ror.org/00zk88636', 'pt', 1, 'https://ror.org/00zk88636 Sociedade Portuguesa MƩdica de Acupunctura'),
(110872, 'https://ror.org/00zn13224', 'fr', 1, 'https://ror.org/00zn13224 Interactions HÓtes-Pathogènes-Environnements'),
(110873, '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'),
(110874, '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.'),
(110875, 'https://ror.org/00zsew396', 'en', 1, 'https://ror.org/00zsew396 Institute of Biology Bucharest'),
(110876, 'https://ror.org/00zv91802', 'no_lang_code', 1, 'https://ror.org/00zv91802 Science Applications International Corporation (United States)'),
(110877, 'https://ror.org/00zvh0k30', 'pt', 1, 'https://ror.org/00zvh0k30 Museu Carlos Machado'),
(110878, '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)'),
(110879, 'https://ror.org/00zxcjq81', 'en', 1, 'https://ror.org/00zxcjq81 European Powder Metallugy Association'),
(110880, 'https://ror.org/00zy84838', 'pt', 1, 'https://ror.org/00zy84838 Centro de AnÔlise MatemÔtica Geometria e Sistemas Dinâmicos'),
(110881, 'https://ror.org/010215a25', 'en', 1, 'https://ror.org/010215a25 FelsőbbfokĆŗ TanulmĆ”nyok IntĆ©zete Institute of Advanced Studies Kőszeg'),
(110882, 'https://ror.org/01029k907', 'en', 1, 'https://ror.org/01029k907 University of Telafer Ų¬Ų§Ł…Ų¹Ų© تلعفر'),
(110883, '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'),
(110884, 'https://ror.org/0105x3s66', 'pt', 1, 'https://ror.org/0105x3s66 Instituto Superior de Administração e Finanças'),
(110885, 'https://ror.org/0106a2j17', 'no_lang_code', 1, 'https://ror.org/0106a2j17 Wolaita Sodo University į‹ˆįˆ‹į‹­į‰³ įˆ¶į‹¶ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(110886, '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'),
(110887, 'https://ror.org/0107cfd66', 'en', 1, 'https://ror.org/0107cfd66 The Nigerian Baptist Theological Seminary'),
(110888, 'https://ror.org/010cncq09', 'en', 0, 'https://ror.org/010cncq09 Magnetic Resonance Imaging Institute for Biomedical Research'),
(110889, 'https://ror.org/010dsgr95', 'en', 1, 'https://ror.org/010dsgr95 Santa Anna IT Research Institute'),
(110890, 'https://ror.org/010f84q38', 'en', 1, 'https://ror.org/010f84q38 IDEA College, Malta'),
(110891, 'https://ror.org/010fqbs34', 'en', 1, 'https://ror.org/010fqbs34 Global Environment Centre Foundation å…¬ē›Šč²”å›£ę³•äŗŗåœ°ēƒē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(110892, 'https://ror.org/010g47133', 'en', 1, 'https://ror.org/010g47133 Ipswich Hospital'),
(110893, 'https://ror.org/010g6wv40', 'pt', 1, 'https://ror.org/010g6wv40 Ordem dos MƩdicos Dentistas'),
(110894, 'https://ror.org/010gf7388', 'en', 1, 'https://ror.org/010gf7388 Agriculture and Horticulture Development Board'),
(110895, 'https://ror.org/010hz2d37', 'fr', 1, 'https://ror.org/010hz2d37 Laboratoire d''Annecy-le-Vieux de Physique ThƩorique'),
(110896, 'https://ror.org/010kh0a92', 'en', 1, 'https://ror.org/010kh0a92 Institut für Baustatik und Konstruktion Institute of Structural Engineering'),
(110897, 'https://ror.org/010mv7n52', 'en', 1, 'https://ror.org/010mv7n52 Austin Hospital'),
(110898, 'https://ror.org/010nsgg66', 'de', 1, 'https://ror.org/010nsgg66 TU Braunschweig Technische UniversitƤt Braunschweig'),
(110899, 'https://ror.org/010p88392', 'en', 1, 'https://ror.org/010p88392 Japan Fitness Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ•ć‚£ćƒƒćƒˆćƒć‚¹å”ä¼š'),
(110900, 'https://ror.org/010s8jw92', 'en', 1, 'https://ror.org/010s8jw92 Takatsuki Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé«˜ę§»åø‚åŒ»åø«ä¼š'),
(110901, 'https://ror.org/010sf3c58', 'en', 1, 'https://ror.org/010sf3c58 Adisseo France SAS, Adisseo France SAS (France)'),
(110902, 'https://ror.org/010srfv22', 'en', 0, 'https://ror.org/010srfv22 Osaka International Cancer Institute å¤§é˜Ŗå›½éš›ćŒć‚“ē ”ē©¶ę‰€'),
(110903, 'https://ror.org/010t24d82', 'tr', 1, 'https://ror.org/010t24d82 Milli Savunma Üniversitesi National Defense University'),
(110904, 'https://ror.org/010we4y38', 'pt', 1, 'https://ror.org/010we4y38 Hospital de ClĆ­nicas de Porto Alegre'),
(110905, 'https://ror.org/010z6xx69', 'en', 1, 'https://ror.org/010z6xx69 Japan Road Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é“č·Æå”ä¼š'),
(110906, 'https://ror.org/0111es613', 'es', 1, 'https://ror.org/0111es613 Hospital General Universitario Gregorio Marañón'),
(110907, 'https://ror.org/0111tgp49', 'en', 1, 'https://ror.org/0111tgp49 Geological Survey of Bangladesh বাংলাদেশ ą¦­ą§‚ą¦¤ą¦¾ą¦¤ą§ą¦¤ą§ą¦¬ą¦æą¦• জরিপ ą¦…ą¦§ą¦æą¦¦ą¦Ŗą§ą¦¤ą¦°'),
(110908, 'https://ror.org/0113jvc39', 'en', 1, 'https://ror.org/0113jvc39 Nihon Ki-in å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę£‹é™¢'),
(110909, 'https://ror.org/0117jxy09', 'no_lang_code', 1, 'https://ror.org/0117jxy09 Springer Nature (Germany)'),
(110910, 'https://ror.org/0119pw819', 'en', 1, 'https://ror.org/0119pw819 InnoTech Alberta'),
(110911, 'https://ror.org/0119taq84', 'en', 1, 'https://ror.org/0119taq84 International Medical Center in Jeddah Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų·ŲØŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠ ŲØŲ¬ŲÆŲ©'),
(110912, 'https://ror.org/011ashp19', 'en', 1, 'https://ror.org/011ashp19 Sichuan University 四川大学'),
(110913, 'https://ror.org/011dv8m48', 'en', 1, 'https://ror.org/011dv8m48 University of Gdańsk Uniwersytet Gdański'),
(110914, 'https://ror.org/011fna123', 'en', 1, 'https://ror.org/011fna123 ACTRIS ARES Data Centre Unit'),
(110915, 'https://ror.org/011fnkc96', 'en', 1, 'https://ror.org/011fnkc96 Combined Military Hospital Dhaka ą¦øą¦®ą§ą¦®ą¦æą¦²ą¦æą¦¤ সামরিক হাসপাতাল (ঢাকা)'),
(110916, 'https://ror.org/011gakh74', 'es', 1, 'https://ror.org/011gakh74 Universidad Nacional del Centro de la Provincia de Buenos Aires'),
(110917, 'https://ror.org/011hdpx94', 'fr', 1, 'https://ror.org/011hdpx94 ArchƩologie, Terre, Histoire, SociƩtƩs'),
(110918, 'https://ror.org/011hja523', 'fr', 1, 'https://ror.org/011hja523'),
(110919, 'https://ror.org/011jef648', 'pt', 1, 'https://ror.org/011jef648 Direção Regional da Cultura'),
(110920, 'https://ror.org/011kf5r70', 'en', 1, 'https://ror.org/011kf5r70 National Health and Medical Research Council'),
(110921, 'https://ror.org/011nqat45', 'fr', 1, 'https://ror.org/011nqat45 Centre de Recherches PƩtrographiques et GƩochimiques'),
(110922, 'https://ror.org/011p0ty46', 'en', 1, 'https://ror.org/011p0ty46 Institute for Theoretical Physics Amsterdam'),
(110923, 'https://ror.org/011pctb02', 'pt', 1, 'https://ror.org/011pctb02 PalƔcio Nacional da Ajuda'),
(110924, 'https://ror.org/011pe6079', 'en', 1, 'https://ror.org/011pe6079 Urban Redevelopment Authority'),
(110925, '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ü'),
(110926, 'https://ror.org/011rwyf32', 'en', 1, 'https://ror.org/011rwyf32 U.S. Army Materiel Command'),
(110927, 'https://ror.org/011tt4192', 'en', 1, 'https://ror.org/011tt4192 Mona Vale Hospital'),
(110928, 'https://ror.org/011wdec52', 'en', 1, 'https://ror.org/011wdec52 Centre of Excellence for Biosecurity Risk Analysis'),
(110929, 'https://ror.org/011wzff38', 'cs', 0, 'https://ror.org/011wzff38 BIVÅ  VysokĆ” Å”kola v Praze a v Brně'),
(110930, 'https://ror.org/011xjpe74', 'en', 1, 'https://ror.org/011xjpe74 Gopalganj Science and Technology University ą¦—ą§‹ą¦Ŗą¦¾ą¦²ą¦—ą¦žą§ą¦œ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(110931, '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'),
(110932, 'https://ror.org/011zkmm97', 'id', 1, 'https://ror.org/011zkmm97 Universitas Bina Sarana Informatika'),
(110933, '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'),
(110934, 'https://ror.org/01216n141', 'en', 1, 'https://ror.org/01216n141 Aijinkai Healthcare Corporation äø€čˆ¬č²”å›£ę³•äŗŗę„›ä»ä¼š'),
(110935, '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'),
(110936, 'https://ror.org/012295r09', 'en', 1, 'https://ror.org/012295r09 Belgrade Business and Arts Academy of Applied Studies'),
(110937, 'https://ror.org/0123ggt98', 'en', 1, 'https://ror.org/0123ggt98 United States Space Command'),
(110938, 'https://ror.org/0123wax79', 'en', 1, 'https://ror.org/0123wax79 Latin American Cooperative Oncology Group (LACOG)'),
(110939, 'https://ror.org/0125dpf52', 'en', 1, 'https://ror.org/0125dpf52 Flow Cytometry Core Facility'),
(110940, 'https://ror.org/0125ne927', 'pt', 1, 'https://ror.org/0125ne927 Centro de Estudos de Desenvolvimento TurĆ­stico'),
(110941, 'https://ror.org/0125qck59', 'pt', 1, 'https://ror.org/0125qck59 Republica Portuguesa Secretaria-Geral da Educação e Ciência'),
(110942, 'https://ror.org/0126kmk90', 'en', 1, 'https://ror.org/0126kmk90 Yamanashi Institute for Public Health and Environment å±±ę¢ØēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(110943, 'https://ror.org/0126v6t20', 'en', 1, 'https://ror.org/0126v6t20 Geologiya və Geofizika İnstitutu Institute of Geology and Geophysics'),
(110944, 'https://ror.org/0127z7r15', 'en', 1, 'https://ror.org/0127z7r15 Saibalaji International Institute of Management Sciences Pune'),
(110945, 'https://ror.org/0128w6917', 'en', 1, 'https://ror.org/0128w6917 University of Management and Technology'),
(110946, 'https://ror.org/0129qb137', 'ro', 1, 'https://ror.org/0129qb137 Universitatea Adventus'),
(110947, 'https://ror.org/012a91z28', 'es', 1, 'https://ror.org/012a91z28 Universidad de Zaragoza Universitat de Saragossa University of Zaragoza Zaragozako Unibertsitatea'),
(110948, 'https://ror.org/012cw1a31', 'fr', 1, 'https://ror.org/012cw1a31 UniversitƩ Virtuelle de CƓte d''Ivoire Virtual University of Cote d''Ivoire'),
(110949, 'https://ror.org/012dgx147', 'en', 1, 'https://ror.org/012dgx147 International Center for Advanced Training and Research in Physics'),
(110950, 'https://ror.org/012gvf162', 'en', 1, 'https://ror.org/012gvf162 Autonomous State Medical College, Pilibhit ą¤øą„ą¤µą¤¶ą¤¾ą¤øą„€ ą¤°ą¤¾ą¤œą„ą¤Æ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤Ŗą„€ą¤²ą„€ą¤­ą„€ą¤¤'),
(110951, 'https://ror.org/012jban78', 'en', 1, 'https://ror.org/012jban78 Medical University of South Carolina'),
(110952, 'https://ror.org/012m7k033', 'en', 1, 'https://ror.org/012m7k033 Anhui Provincial Department of Education'),
(110953, 'https://ror.org/012mhj061', 'no_lang_code', 1, 'https://ror.org/012mhj061 Alcon Portugal Produtos e Equipamentos Oftalmológicos (Portugal)'),
(110954, 'https://ror.org/012q7x496', 'pt', 1, 'https://ror.org/012q7x496 Sociedade Portuguesa de GenƩtica Humana'),
(110955, 'https://ror.org/012w5e784', 'en', 1, 'https://ror.org/012w5e784 University of Cross River State'),
(110956, 'https://ror.org/012wfs048', 'en', 1, 'https://ror.org/012wfs048 United States Air Forces in Europe – Air Forces Africa'),
(110957, 'https://ror.org/012wvs044', 'pt', 1, 'https://ror.org/012wvs044 ASIC - Associação de Saúde Infantil de Coimbra'),
(110958, 'https://ror.org/01304n587', 'en', 1, 'https://ror.org/01304n587 Bani-Waleed University Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŁŠ ŁˆŁ„ŁŠŲÆ'),
(110959, 'https://ror.org/01307kj45', 'en', 1, 'https://ror.org/01307kj45 Arkansas Colleges of Health Education'),
(110960, 'https://ror.org/0130dsa73', 'en', 1, 'https://ror.org/0130dsa73 Futures Forward Research Institute'),
(110961, 'https://ror.org/0130jk839', 'en', 1, 'https://ror.org/0130jk839 University Hospitals of Cleveland'),
(110962, 'https://ror.org/01330v142', 'pt', 1, 'https://ror.org/01330v142 Comunidade Intermunicipal do Alto TĆ¢mega e Barroso'),
(110963, 'https://ror.org/0137avj42', 'pt', 1, 'https://ror.org/0137avj42 Sociedade Portuguesa de Astronomia'),
(110964, 'https://ror.org/01394d192', 'hu', 1, 'https://ror.org/01394d192 Hungarian University of Agriculture and Life Sciences Magyar AgrĆ”r- Ć©s ƉlettudomĆ”nyi Egyetem'),
(110965, 'https://ror.org/013995344', 'pt', 1, 'https://ror.org/013995344 Centro UniversitÔrio de Telêmaco Borba'),
(110966, 'https://ror.org/013cf5k59', 'en', 1, 'https://ror.org/013cf5k59 Ministry of Earth Sciences'),
(110967, 'https://ror.org/013cjyk83', 'fr', 1, 'https://ror.org/013cjyk83 UniversitƩ Paris Sciences et Lettres'),
(110968, 'https://ror.org/013cpv265', 'fr', 1, 'https://ror.org/013cpv265 Cégep de Rivière-du-Loup'),
(110969, 'https://ror.org/013dzwk66', 'en', 1, 'https://ror.org/013dzwk66 Wageningen Marine Research'),
(110970, 'https://ror.org/013fhv752', 'en', 1, 'https://ror.org/013fhv752 Elsevier BV, Elsevier BV (Netherlands)'),
(110971, 'https://ror.org/013js5t03', 'no_lang_code', 1, 'https://ror.org/013js5t03 Roche (Estonia)'),
(110972, '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'),
(110973, 'https://ror.org/013kbs677', 'en', 1, 'https://ror.org/013kbs677 Thunder Bay Regional Research Institute'),
(110974, 'https://ror.org/013meh722', 'en', 1, 'https://ror.org/013meh722 Prifysgol Caergrawnt University of Cambridge'),
(110975, 'https://ror.org/013q9v540', 'en', 1, 'https://ror.org/013q9v540 Institut für Theoretische Informatik Institute of Theoretical Computer Science'),
(110976, 'https://ror.org/013swba46', 'en', 1, 'https://ror.org/013swba46 Punjab Tianjin University of Technology'),
(110977, 'https://ror.org/013vpa670', 'en', 1, 'https://ror.org/013vpa670 Kyzylorda Open University ŠšŃ‹Š·Ń‹Š»Š¾Ń€Š“ŠøŠ½ŃŠŗŠøŠ¹ открытый ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŅšŃ‹Š·Ń‹Š»Š¾Ń€Š“Š° Š°ŃˆŃ‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(110978, 'https://ror.org/013vqm712', 'en', 1, 'https://ror.org/013vqm712 TKM College of Engineering'),
(110979, 'https://ror.org/013w30494', 'pt', 1, 'https://ror.org/013w30494 Rede CiĆŖncia Tecnologia e Sociedade'),
(110980, 'https://ror.org/013wpy744', 'en', 1, 'https://ror.org/013wpy744 Network of Micro- and Nano-Fabrication Research Facilities in Portugal'),
(110981, 'https://ror.org/013x70191', 'en', 1, 'https://ror.org/013x70191 JSS Academy of Higher Education and Research'),
(110982, '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'),
(110983, 'https://ror.org/013xyzs10', 'no_lang_code', 1, 'https://ror.org/013xyzs10 Tuamutunga Internacional (Portugal)'),
(110984, 'https://ror.org/013yaf259', 'en', 1, 'https://ror.org/013yaf259 International Institute of Food Technology and Engineering'),
(110985, 'https://ror.org/013yc5d80', 'en', 1, 'https://ror.org/013yc5d80 Space Operations Command'),
(110986, 'https://ror.org/013yhev13', 'en', 1, 'https://ror.org/013yhev13 Japanese Association of Neuro-Psychiatric Clinics å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē²¾ē„žē„žēµŒē§‘čØŗē™‚ę‰€å”ä¼š'),
(110987, 'https://ror.org/013ytx106', 'en', 1, 'https://ror.org/013ytx106 Japan Indonesia Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¤ćƒ³ćƒ‰ćƒć‚·ć‚¢å”ä¼š'),
(110988, 'https://ror.org/013zggc82', 'en', 1, 'https://ror.org/013zggc82 Cherenkov Telescope Array – participation of the Czech Republic Cherenkov Telescope Array – ĆŗÄast ČR'),
(110989, 'https://ror.org/01411f618', 'en', 1, 'https://ror.org/01411f618 Highway Industry Development Organization äø€čˆ¬č²”å›£ę³•äŗŗé“č·Æę–°ē”£ę„­é–‹ē™ŗę©Ÿę§‹'),
(110990, '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'),
(110991, 'https://ror.org/0146pps37', 'fr', 1, 'https://ror.org/0146pps37 Bretonneau Hospital HƓpital Bretonneau'),
(110992, 'https://ror.org/01485tq96', 'en', 1, 'https://ror.org/01485tq96 Universidad de Wyoming University of Wyoming UniversitƩ du wyoming'),
(110993, 'https://ror.org/0148jn964', 'en', 1, 'https://ror.org/0148jn964 Atiba University'),
(110994, 'https://ror.org/0149yd715', 'en', 1, 'https://ror.org/0149yd715 Japan Handball Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒćƒ³ćƒ‰ćƒœćƒ¼ćƒ«å”ä¼š'),
(110995, 'https://ror.org/014b96823', 'en', 1, 'https://ror.org/014b96823 Institute of Chinese Affairs äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å›½ē ”ē©¶ę‰€'),
(110996, 'https://ror.org/014bj2y47', 'en', 1, 'https://ror.org/014bj2y47 Schmidt Family Foundation'),
(110997, 'https://ror.org/014d1kb73', 'no_lang_code', 1, 'https://ror.org/014d1kb73 Radosys Atlantic (Portugal)'),
(110998, 'https://ror.org/014e7ac16', 'en', 1, 'https://ror.org/014e7ac16 Vivekanandha College of Nursing'),
(110999, 'https://ror.org/014er2a73', 'no_lang_code', 1, 'https://ror.org/014er2a73 CBRAIN Group'),
(111000, 'https://ror.org/014ft4k69', 'en', 1, 'https://ror.org/014ft4k69 Aviation and Aerospace University, Bangladesh ą¦…ą§ą¦Æą¦¾ą¦­ą¦æą¦Æą¦¼ą§‡ą¦¶ą¦Ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦…ą§ą¦Æą¦¾ą¦°ą§‹ą¦øą§ą¦Ŗą§‡ą¦ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼, বাংলাদেশ'),
(111001, 'https://ror.org/014khrd35', 'en', 1, 'https://ror.org/014khrd35 Naval Meteorology and Oceanography Command'),
(111002, 'https://ror.org/014p8mr66', 'fr', 1, 'https://ror.org/014p8mr66 Institut d''Astrophysique Spatiale'),
(111003, 'https://ror.org/014pr4r77', 'en', 1, 'https://ror.org/014pr4r77 Japan Wood Protection Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęœØęäæå­˜å”ä¼š'),
(111004, 'https://ror.org/014pvr265', 'en', 1, 'https://ror.org/014pvr265 Telemedicine & Advanced Technology Research Center'),
(111005, 'https://ror.org/014r0rr19', 'es', 1, 'https://ror.org/014r0rr19 Universidad de Oriente'),
(111006, 'https://ror.org/014s0bx45', 'en', 1, 'https://ror.org/014s0bx45 MAKAM Research GmbH, MAKAM Research GmbH (Austria)'),
(111007, 'https://ror.org/014vhw898', 'en', 1, 'https://ror.org/014vhw898 Institut für Umweltingenieurwissenschaften Institute of Environmental Engineering'),
(111008, 'https://ror.org/014xaa570', 'en', 1, 'https://ror.org/014xaa570 Next Step Drug and Alcohol Services'),
(111009, 'https://ror.org/014xtzx46', 'en', 1, 'https://ror.org/014xtzx46 Nagaoka Healthcare Center äø€čˆ¬č²”å›£ę³•äŗŗé•·å²”čØ˜åæµč²”å›£é•·å²”ćƒ˜ćƒ«ć‚¹ć‚±ć‚¢ć‚»ćƒ³ć‚æćƒ¼'),
(111010, 'https://ror.org/014y8mn22', 'en', 1, 'https://ror.org/014y8mn22 Japan Aeromedical Research Center äø€čˆ¬č²”å›£ę³•äŗŗčˆŖē©ŗåŒ»å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(111011, 'https://ror.org/014ycg306', 'en', 1, 'https://ror.org/014ycg306 ST Engineering, ST Engineering (Singapore), Singapore Technologies Engineering Ltd'),
(111012, 'https://ror.org/014zc6253', 'en', 1, 'https://ror.org/014zc6253 Institut für Marine Biotechnologie Institute of Marine Biotechnology'),
(111013, 'https://ror.org/01502ca60', 'fr', 1, 'https://ror.org/01502ca60 Hospices Civils de Lyon'),
(111014, 'https://ror.org/0151ntc51', 'en', 1, 'https://ror.org/0151ntc51 Tiverton and District Hospital'),
(111015, 'https://ror.org/01545mx32', 'en', 1, 'https://ror.org/01545mx32 University of Loralai'),
(111016, 'https://ror.org/0155zta11', 'en', 1, 'https://ror.org/0155zta11 Universidad de Vermont University of Vermont UniversitƩ du vermont'),
(111017, 'https://ror.org/015790680', 'en', 1, 'https://ror.org/015790680 Federation of Orthopaedic Trainees in Europe'),
(111018, 'https://ror.org/0157yfp40', 'pt', 1, 'https://ror.org/0157yfp40 Sociedade Portuguesa de Doenças Metabólicas'),
(111019, 'https://ror.org/01588c811', 'no_lang_code', 1, 'https://ror.org/01588c811 Companhia Industrial de Resinas SintƩticas (Portugal), Industrial Company of Synthetic Resins'),
(111020, 'https://ror.org/01594wh23', 'en', 1, 'https://ror.org/01594wh23 National Institute of Rock Mechanics ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą„‰ą¤• ą¤®ą„ˆą¤•ą„‡ą¤Øą¤æą¤•ą„ą¤ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(111021, 'https://ror.org/015f9wa43', 'en', 1, 'https://ror.org/015f9wa43 Institut für Integrierte Systeme Integrated Systems Laboratory'),
(111022, 'https://ror.org/015fxwh80', 'en', 1, 'https://ror.org/015fxwh80 International Committee on Taxonomy of Viruses'),
(111023, 'https://ror.org/015hr2538', 'pt', 1, 'https://ror.org/015hr2538 Centro de Investigação Interdisciplinar em Sanidade Animal'),
(111024, 'https://ror.org/015hz7p22', 'ca', 1, 'https://ror.org/015hz7p22 Museo de Ciencias Naturales de Barcelona Museu de CiĆØncies Naturals de Barcelona'),
(111025, 'https://ror.org/015kte140', 'en', 1, 'https://ror.org/015kte140 Osaka Shin-Ai Gakuin University å¤§é˜Ŗäæ”ę„›å­¦é™¢å¤§å­¦'),
(111026, 'https://ror.org/015m6h915', 'en', 1, 'https://ror.org/015m6h915 Erbil Polytechnic University Ų¬Ų§Ł…Ų¹Ų© Ų£Ų±ŲØŁŠŁ„ Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų²Ų§Ł†Ś©Ū†ŪŒ Ł¾Ū†Ł„ŪŒŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ Ś¾Ū•ŁˆŁ„ŪŽŲ±'),
(111027, 'https://ror.org/015ndb314', 'de', 1, 'https://ror.org/015ndb314 Laserdata GmbH, Laserdata GmbH (Austria)'),
(111028, 'https://ror.org/015tnsz82', 'en', 1, 'https://ror.org/015tnsz82 Michigan Sea Grant'),
(111029, 'https://ror.org/015txh811', 'en', 1, 'https://ror.org/015txh811 Institut für Entwurf und Architektur IEA Institute of Design and Architecture'),
(111030, 'https://ror.org/015w8p155', 'pt', 1, 'https://ror.org/015w8p155 Sociedade Portuguesa de Cefaleias'),
(111031, 'https://ror.org/015x0as60', 'pt', 1, 'https://ror.org/015x0as60 Escola de Música São Teotónio'),
(111032, 'https://ror.org/015x7ap02', 'en', 1, 'https://ror.org/015x7ap02 Osaka Police Hospital å¤§é˜Ŗć‘ć„ć•ć¤ē—…é™¢, å¤§é˜Ŗč­¦åÆŸē—…é™¢, ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤§é˜Ŗå›½éš›ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ļ¼†ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼ å¤§é˜Ŗč­¦åÆŸē—…é™¢'),
(111033, 'https://ror.org/015ya8798', 'en', 1, 'https://ror.org/015ya8798 University of Jeddah جامعـــة Ų¬ŲÆŲ©'),
(111034, 'https://ror.org/015yqp743', 'en', 1, 'https://ror.org/015yqp743 Japanese Society of Gastrointestinal Cancer Screening äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¶ˆåŒ–å™ØćŒć‚“ę¤œčØŗå­¦ä¼š'),
(111035, 'https://ror.org/015z29x25', 'en', 1, 'https://ror.org/015z29x25 United Nations Environment Programme'),
(111036, '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'),
(111037, 'https://ror.org/0160cpw27', 'en', 1, 'https://ror.org/0160cpw27 University of Alberta UniversitƩ de l''Alberta'),
(111038, 'https://ror.org/0161dh580', 'en', 1, 'https://ror.org/0161dh580 Japan Association for Working Environment Measurement å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ä½œę„­ē’°å¢ƒęø¬å®šå”ä¼š'),
(111039, 'https://ror.org/0162hm862', 'en', 1, 'https://ror.org/0162hm862 Life Science Alliance LLC, Life Science Alliance LLC (United States)'),
(111040, 'https://ror.org/01659fs09', 'en', 1, 'https://ror.org/01659fs09 Sunstar Foundation äø€čˆ¬č²”å›£ę³•äŗŗć‚µćƒ³ć‚¹ć‚æćƒ¼č²”å›£'),
(111041, 'https://ror.org/0165q4v52', 'es', 1, 'https://ror.org/0165q4v52 Universidad Privada MarĆ­a Serrana'),
(111042, 'https://ror.org/0166e9x11', 'en', 1, 'https://ror.org/0166e9x11 Universidad de Las AmƩricas University of the Americas'),
(111043, 'https://ror.org/0167fw009', 'fr', 1, 'https://ror.org/0167fw009 Centre de Recherche LƩon Duguit'),
(111044, 'https://ror.org/016871071', 'pt', 1, 'https://ror.org/016871071 Centro de Investigação em Comunicação Aplicada Cultura e Novas Tecnologias'),
(111045, 'https://ror.org/016899r71', 'en', 1, 'https://ror.org/016899r71 Peter Doherty Institute'),
(111046, 'https://ror.org/0168em120', 'no_lang_code', 1, 'https://ror.org/0168em120 Bracco (United States)'),
(111047, 'https://ror.org/0168r3w48', 'en', 1, 'https://ror.org/0168r3w48 Universidad de California en San Diego University of California, San Diego UniversitƩ de Californie Ơ San Diego'),
(111048, 'https://ror.org/0168sy579', 'pt', 1, 'https://ror.org/0168sy579 ServiƧo de Estrangeiros e Fronteiras'),
(111049, 'https://ror.org/01697cy46', 'en', 1, 'https://ror.org/01697cy46 Naval Supply Systems Command'),
(111050, 'https://ror.org/0169mwg35', 'es', 1, 'https://ror.org/0169mwg35 Grupo Empresarial LABIOFAM'),
(111051, 'https://ror.org/016adfh43', 'pt', 1, 'https://ror.org/016adfh43 Universidade de Coimbra Imprensa'),
(111052, 'https://ror.org/016av6b15', 'de', 1, 'https://ror.org/016av6b15 Max Weber Network Eastern Europe Max Weber Netzwerk Osteuropa'),
(111053, 'https://ror.org/016c14g50', 'pt', 1, 'https://ror.org/016c14g50 Sociedade Portuguesa de Virologia'),
(111054, 'https://ror.org/016c71q24', 'en', 1, 'https://ror.org/016c71q24 Hornsby Ku-ring-gai Hospital'),
(111055, 'https://ror.org/016cx2z26', 'fr', 1, 'https://ror.org/016cx2z26 Centre de recherches juridiques de l''UniversitƩ de Franche-ComtƩ'),
(111056, 'https://ror.org/016gnej37', 'pt', 1, 'https://ror.org/016gnej37 Sociedade Portuguesa de Pneumologia'),
(111057, 'https://ror.org/016jwfw49', 'en', 1, 'https://ror.org/016jwfw49 University Center of Barika'),
(111058, 'https://ror.org/016knds80', 'fr', 1, 'https://ror.org/016knds80 Fondation Saint Helier'),
(111059, 'https://ror.org/016m4az54', 'es', 1, 'https://ror.org/016m4az54 Programa Universitario de Estudios del Desarrollo'),
(111060, 'https://ror.org/016n0mr11', 'pt', 1, 'https://ror.org/016n0mr11 Diocese de Coimbra'),
(111061, 'https://ror.org/016na8197', 'en', 1, 'https://ror.org/016na8197 University of Maiduguri YunifÔsítì ìlú Màídúgùri'),
(111062, 'https://ror.org/016ncsr12', 'fr', 1, 'https://ror.org/016ncsr12'),
(111063, 'https://ror.org/016p93117', 'no_lang_code', 1, 'https://ror.org/016p93117 Joaquim Chaves Health, Joaquim Chaves SaĆŗde, Joaquim Chaves SaĆŗde (Portugal)'),
(111064, 'https://ror.org/016qv5070', 'no_lang_code', 1, 'https://ror.org/016qv5070 AstraZeneca (France)'),
(111065, 'https://ror.org/016s2am02', 'pt', 1, 'https://ror.org/016s2am02 MOVELTEX Centro de Competências e de Incubação de Empresas'),
(111066, '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'),
(111067, 'https://ror.org/016vvvm54', 'en', 1, 'https://ror.org/016vvvm54 Peter Cohen Foundation DBA EverythingALS'),
(111068, 'https://ror.org/016w11g38', 'en', 1, 'https://ror.org/016w11g38 Chubu Okinawa Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­éƒØåœ°åŒŗåŒ»åø«ä¼š'),
(111069, 'https://ror.org/016y74486', 'en', 1, 'https://ror.org/016y74486 Matsumoto College of Nursing ę¾ęœ¬ēœ‹č­·å¤§å­¦'),
(111070, 'https://ror.org/0170cre53', 'pt', 1, 'https://ror.org/0170cre53 Teatro AcadƩmico de Gil Vicente'),
(111071, 'https://ror.org/0172tk840', 'pt', 1, 'https://ror.org/0172tk840 Centro de Documentação 25 de Abril'),
(111072, 'https://ror.org/017343w90', 'en', 1, 'https://ror.org/017343w90 Canadian Cancer Society SociƩtƩ canadienne du cancer'),
(111073, 'https://ror.org/0173pgy91', 'en', 1, 'https://ror.org/0173pgy91 Maharana Pratap Polytechnic Gorakhpur'),
(111074, 'https://ror.org/0174skq71', 'en', 1, 'https://ror.org/0174skq71 General Directorate of Agricultural Research and Policies TARIMSAL ARAŞTIRMALAR VE POLİTİKALAR GENEL MÜDÜRLƜĞƜ'),
(111075, 'https://ror.org/01751w114', 'es', 1, 'https://ror.org/01751w114 Universidad de Lima University of Lima'),
(111076, 'https://ror.org/01788sq40', 'no_lang_code', 1, 'https://ror.org/01788sq40 Acorda Therapeutics (United States)'),
(111077, 'https://ror.org/017axx893', 'pt', 1, 'https://ror.org/017axx893 Biblioteca do Conhecimento Online'),
(111078, 'https://ror.org/017b2d067', 'en', 1, 'https://ror.org/017b2d067 Tokyo Information Design Professional University ę±äŗ¬ęƒ…å ±ćƒ‡ć‚¶ć‚¤ćƒ³å°‚é–€č·å¤§å­¦'),
(111079, 'https://ror.org/017b8rn13', 'en', 1, 'https://ror.org/017b8rn13 Technology Research Association of Secure IoT Edge application based on RISC-V Open architecture ć‚»ć‚­ćƒ„ć‚¢ć‚Ŗćƒ¼ćƒ—ćƒ³ć‚¢ćƒ¼ć‚­ćƒ†ć‚Æćƒćƒ£ćƒ»ć‚Øćƒƒć‚øåŸŗē›¤ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(111080, 'https://ror.org/017bddy38', 'en', 1, 'https://ror.org/017bddy38 Blacktown & Mount Druitt Hospital'),
(111081, 'https://ror.org/017d1hs72', 'no_lang_code', 1, 'https://ror.org/017d1hs72 Banco Santander (Spain)'),
(111082, 'https://ror.org/017f85t98', 'en', 1, 'https://ror.org/017f85t98 Kanagawa Industrial Promotion Center å…¬ē›Šč²”å›£ę³•äŗŗē„žå„ˆå·ē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(111083, 'https://ror.org/017fcpb94', 'no_lang_code', 1, 'https://ror.org/017fcpb94 Hatch (Canada)'),
(111084, 'https://ror.org/017g9a849', 'en', 1, 'https://ror.org/017g9a849 Foundation for MultiMedia Communications äø€čˆ¬č²”å›£ę³•äŗŗćƒžćƒ«ćƒćƒ”ćƒ‡ć‚£ć‚¢ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(111085, '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'),
(111086, 'https://ror.org/017j9wh51', 'en', 1, 'https://ror.org/017j9wh51 Japan Association of Physical Education for Women å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å„³å­ä½“č‚²é€£ē›Ÿ'),
(111087, 'https://ror.org/017jj3e32', 'en', 1, 'https://ror.org/017jj3e32 Al-Zahrawi University College'),
(111088, 'https://ror.org/017k05f91', 'fr', 1, 'https://ror.org/017k05f91 Centre de Recherche et d''Etude en Droit et Science Politique'),
(111089, 'https://ror.org/017n8df75', 'en', 1, 'https://ror.org/017n8df75 Shenzhen Science and Technology Innovation Commission ę·±åœ³åø‚ē§‘ęŠ€åˆ›ę–°å±€'),
(111090, 'https://ror.org/017qcv467', 'en', 1, 'https://ror.org/017qcv467 Max Planck Institut für Astrophysik Max Planck Institute for Astrophysics'),
(111091, 'https://ror.org/017qtjx43', 'fr', 1, 'https://ror.org/017qtjx43 Laboratoire Population Environnement DƩveloppement Population Environment Development Laboratory'),
(111092, 'https://ror.org/017rk2s63', 'en', 1, 'https://ror.org/017rk2s63 Tochigi Mental Health & Welfare Center ę ƒęœØēœŒē²¾ē„žäæå„ē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼'),
(111093, 'https://ror.org/017rnyz40', 'fr', 1, 'https://ror.org/017rnyz40 Ministry of Culture MinistĆØre de la Culture'),
(111094, 'https://ror.org/017rv5x19', 'fr', 1, 'https://ror.org/017rv5x19 Mission de Promotion des Materiaux Locaux'),
(111095, 'https://ror.org/017sdcr35', 'no_lang_code', 1, 'https://ror.org/017sdcr35 Cabopol Polymer Compounds (Portugal), Cabopol Polymer Compounds, S.A.'),
(111096, 'https://ror.org/017wkbn09', 'en', 1, 'https://ror.org/017wkbn09 Autonomous Nonprofit Organization Scientific Research Center for Information Technologies in the Museum ŠŠ²Ń‚Š¾Š½Š¾Š¼Š½Š°Ń ŠŠµŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ°Ń ŠžŃ€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Ń‹Ń… Технологий Š’ Музее ā€œŠ˜Ń‚Š¼ŃƒŃā€'),
(111097, 'https://ror.org/017wv6808', 'fr', 1, 'https://ror.org/017wv6808 Université Frères Mentouri Constantine 1'),
(111098, 'https://ror.org/017z00e58', 'en', 1, 'https://ror.org/017z00e58 Chongqing Medical University é‡åŗ†åŒ»ē§‘å¤§å­¦'),
(111099, 'https://ror.org/017zhmm22', 'en', 1, 'https://ror.org/017zhmm22 Xi''an Jiaotong University č„æå®‰äŗ¤é€šå¤§å­¦'),
(111100, 'https://ror.org/017zqws13', 'en', 1, 'https://ror.org/017zqws13 University of Minnesota'),
(111101, 'https://ror.org/01821ts51', 'en', 1, 'https://ror.org/01821ts51 Bishkek Humanities University Š‘ŠøŃˆŠŗŠµŠŗŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111102, 'https://ror.org/0182e3j77', 'en', 1, 'https://ror.org/0182e3j77 Boken Quality Evaluation Institute äø€čˆ¬č²”å›£ę³•äŗŗćƒœćƒ¼ć‚±ćƒ³å“č³Ŗč©•ä¾”ę©Ÿę§‹'),
(111103, 'https://ror.org/0183qt302', 'en', 1, 'https://ror.org/0183qt302 Japan Media Communication Center äø€čˆ¬č²”å›£ę³•äŗŗę”¾é€ē•Ŗēµ„å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(111104, 'https://ror.org/018681541', 'en', 1, 'https://ror.org/018681541 Black Sea Agricultural Research Institute'),
(111105, 'https://ror.org/0187p1364', 'en', 1, 'https://ror.org/0187p1364 Japan Mint ē‹¬ē«‹č”Œę”æę³•äŗŗé€ å¹£å±€'),
(111106, 'https://ror.org/0189raq88', 'en', 1, 'https://ror.org/0189raq88 Deutsche Sporthochschule Kƶln German Sport University Cologne'),
(111107, 'https://ror.org/0189w2q14', 'en', 1, 'https://ror.org/0189w2q14 United States Army Test and Evaluation Command'),
(111108, 'https://ror.org/018h10037', 'en', 1, 'https://ror.org/018h10037 UK Health Security Agency'),
(111109, 'https://ror.org/018hd1228', 'en', 1, 'https://ror.org/018hd1228 Space Delta 7'),
(111110, 'https://ror.org/018hh3649', 'en', 1, 'https://ror.org/018hh3649 Dravet Syndrome Foundation');
INSERT INTO `rors` VALUES
(111111, 'https://ror.org/018hy5194', 'en', 1, 'https://ror.org/018hy5194 Czech Academy of Sciences, Institute of Sociology Sociologický ústav AV ČR'),
(111112, 'https://ror.org/018j01b27', 'pt', 1, 'https://ror.org/018j01b27 Centro de Formação de Associação de Escolas Braga/Sul'),
(111113, 'https://ror.org/018jgg490', 'en', 1, 'https://ror.org/018jgg490 Kanazawa Municipal Hospital 金沢市立病院'),
(111114, 'https://ror.org/018jp3h36', 'pt', 1, 'https://ror.org/018jp3h36 CiĆŖncia Viva'),
(111115, 'https://ror.org/018nsc354', 'id', 1, 'https://ror.org/018nsc354 Universitas Islam An Nur Lampung'),
(111116, 'https://ror.org/018pg7a85', 'no_lang_code', 1, 'https://ror.org/018pg7a85 E4SMA, E4SMA (Italy), E4SMA S.r.l.'),
(111117, 'https://ror.org/018rcdc65', 'en', 1, 'https://ror.org/018rcdc65 Shipbuilding Research Centre of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é€ čˆ¹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(111118, 'https://ror.org/018wagb29', 'en', 1, 'https://ror.org/018wagb29 Sydney Dental Hospital'),
(111119, 'https://ror.org/018wkw265', 'pt', 1, 'https://ror.org/018wkw265 Centro de Engenharia Mecânica e Sustentabilidade de Recursos'),
(111120, 'https://ror.org/0190ze463', 'en', 1, 'https://ror.org/0190ze463 Farg`ona davlat universiteti Ferghana State University Ферганский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111121, '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'),
(111122, 'https://ror.org/0191nxa85', 'en', 1, 'https://ror.org/0191nxa85 Indonesia Fuel Cell and Hydrogen Energy'),
(111123, 'https://ror.org/0192dpg52', 'en', 1, 'https://ror.org/0192dpg52 The Remote Sensing Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒŖćƒ¢ćƒ¼ćƒˆć‚»ćƒ³ć‚·ćƒ³ć‚°å­¦ä¼š'),
(111124, 'https://ror.org/0193j3v20', 'es', 1, 'https://ror.org/0193j3v20 Centro de Investigaciones y Estudios de GƩnero'),
(111125, 'https://ror.org/0193mb561', 'en', 1, 'https://ror.org/0193mb561 Interdisciplinary Center for Archaeology and the Evolution of Human Behaviour'),
(111126, 'https://ror.org/0194egz44', 'es', 1, 'https://ror.org/0194egz44 Centro de Investigaciones Multidisciplinarias sobre Chiapas y la Frontera Sur'),
(111127, 'https://ror.org/0195avp08', 'en', 1, 'https://ror.org/0195avp08 The Japan Machinery Federation äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę©Ÿę¢°å·„ę„­é€£åˆä¼š'),
(111128, 'https://ror.org/01965sc27', 'pt', 1, 'https://ror.org/01965sc27 Câmara Municipal do Fundão'),
(111129, 'https://ror.org/01971q181', 'en', 1, 'https://ror.org/01971q181 Japan Geotechnical Consultants Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½åœ°č³ŖčŖæęŸ»ę„­å”ä¼šé€£åˆä¼š'),
(111130, 'https://ror.org/01972fe66', 'en', 1, 'https://ror.org/01972fe66 Australian Institute of Health and Welfare'),
(111131, 'https://ror.org/01973x930', 'en', 1, 'https://ror.org/01973x930 United States Department of the Air Force'),
(111132, 'https://ror.org/0198h7w65', 'no_lang_code', 1, 'https://ror.org/0198h7w65 Areal Editores (Portugal), Areal Editores, S.A., Areal Publishers'),
(111133, 'https://ror.org/0199x1p30', 'en', 1, 'https://ror.org/0199x1p30 Kolej Universiti Linton Linton University College'),
(111134, 'https://ror.org/019cppw68', 'pt', 1, 'https://ror.org/019cppw68 Sociedade Portuguesa de Disfunção Temporomandibular e Dor Orofacial'),
(111135, 'https://ror.org/019de9x44', 'en', 1, 'https://ror.org/019de9x44 Network of Extreme Conditions Laboratories'),
(111136, 'https://ror.org/019gydp64', 'en', 1, 'https://ror.org/019gydp64 Institute of Mineralogy and Crystallography "Acad. Ivan Kostov" Bulgarian Academy of Sciences Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ По ŠœŠøŠ½ŠµŃ€Š°Š»Š¾Š³ŠøŃ И ŠšŃ€ŠøŃŃ‚Š°Š»Š¾Š³Ń€Š°Ń„ŠøŃ ā€œŠŠŗŠ°Š“. Иван ŠšŠ¾ŃŃ‚Š¾Š²ā€ Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ° ŠŠ°ŃƒŠŗŠøŃ‚Šµ'),
(111137, 'https://ror.org/019mfv850', 'pt', 1, 'https://ror.org/019mfv850 Secretaria de Estado de Cultura e Turismo de Minas Gerais'),
(111138, 'https://ror.org/019nshe08', 'pt', 1, 'https://ror.org/019nshe08 Museu Nacional Soares dos Reis'),
(111139, 'https://ror.org/019qb4279', 'en', 1, 'https://ror.org/019qb4279 Bangladesh Maritime University বাংলাদেশ ą¦®ą§‡ą¦°ą¦æą¦Ÿą¦¾ą¦‡ą¦® ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(111140, 'https://ror.org/019qdtz78', 'fr', 1, 'https://ror.org/019qdtz78 Institut de recherche sur l''Ʃducation'),
(111141, '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'),
(111142, 'https://ror.org/019tgvf94', 'fr', 1, 'https://ror.org/019tgvf94 UniversitƩ CƓte d''Azur'),
(111143, 'https://ror.org/019tvvb70', 'en', 1, 'https://ror.org/019tvvb70 Institute of Organic Synthesis Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠžŃ€Š³Š°Š½ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Динтеза им. И. ŠÆ. ŠŸŠ¾ŃŃ‚Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(111144, 'https://ror.org/019vk3e29', 'en', 1, 'https://ror.org/019vk3e29 Kyushu Environmental Evaluation Association äø€čˆ¬č²”å›£ę³•äŗŗä¹å·žē’°å¢ƒē®”ē†å”ä¼š'),
(111145, 'https://ror.org/019whta54', 'en', 1, 'https://ror.org/019whta54 University of Lausanne UniversitƠ di Losanna UniversitƤt Lausanne UniversitƩ de Lausanne'),
(111146, 'https://ror.org/019yc2n42', 'fr', 1, 'https://ror.org/019yc2n42 GƩomƩtrie algƩbrique et applications Ơ la thƩorie de l''information'),
(111147, 'https://ror.org/019yty581', 'en', 1, 'https://ror.org/019yty581 Knowledge to Innovate Professions in Tourism'),
(111148, 'https://ror.org/019zcmj26', 'en', 1, 'https://ror.org/019zcmj26 Department of Medical Sciences'),
(111149, 'https://ror.org/01a08yc77', 'en', 1, 'https://ror.org/01a08yc77 STEI Yogyakarta'),
(111150, 'https://ror.org/01a0gpy77', 'fr', 1, 'https://ror.org/01a0gpy77 ThƩoriser et ModƩliser pour AmƩnager'),
(111151, 'https://ror.org/01a1ew260', 'en', 1, 'https://ror.org/01a1ew260 The Foundation of Research Institute for Oriental Medicine äø€čˆ¬č²”å›£ę³•äŗŗę±ę“‹åŒ»å­¦ē ”ē©¶ę‰€'),
(111152, 'https://ror.org/01a2cdx51', 'en', 1, 'https://ror.org/01a2cdx51 Kumamoto Saishun Medical Center ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ ē†Šęœ¬å†ę˜„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(111153, 'https://ror.org/01a44wh51', 'no_lang_code', 1, 'https://ror.org/01a44wh51 SiliconGate (Portugal)'),
(111154, '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'),
(111155, 'https://ror.org/01a77tt86', 'en', 1, 'https://ror.org/01a77tt86 Prifysgol Warwick University of Warwick'),
(111156, 'https://ror.org/01a78vm40', 'en', 0, 'https://ror.org/01a78vm40 College of Regional Development VysokÔ Ŕkola regionÔlního rozvoje'),
(111157, 'https://ror.org/01a83vw07', 'en', 1, 'https://ror.org/01a83vw07 NEXUS Personalized Health Technologies'),
(111158, 'https://ror.org/01adx8c71', 'en', 1, 'https://ror.org/01adx8c71 Atacama Large Millimeter Submillimeter Array'),
(111159, 'https://ror.org/01aff2v68', 'en', 1, 'https://ror.org/01aff2v68 University of Waterloo UniversitƩ de waterloo'),
(111160, 'https://ror.org/01agh2v89', 'pt', 1, 'https://ror.org/01agh2v89 Engage-SKA Portugal'),
(111161, 'https://ror.org/01agts093', 'en', 1, 'https://ror.org/01agts093 Association of Accountants and Auditors of Republic of Srpska'),
(111162, 'https://ror.org/01ah6nb52', 'en', 1, 'https://ror.org/01ah6nb52 Applied Science Private University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© الخاصة'),
(111163, 'https://ror.org/01ahvm174', 'en', 1, 'https://ror.org/01ahvm174 NFL Foundation'),
(111164, 'https://ror.org/01aj84f44', 'en', 1, 'https://ror.org/01aj84f44 Aarhus Universitet Aarhus University'),
(111165, 'https://ror.org/01an3r305', 'en', 1, 'https://ror.org/01an3r305 Universidad de Pittsburgh University of Pittsburgh UniversitƩ de Pittsburgh'),
(111166, 'https://ror.org/01ap27310', 'fr', 1, 'https://ror.org/01ap27310 Institut supérieur d''étude des religions et de la laïcité'),
(111167, 'https://ror.org/01aqxgr98', 'fr', 1, 'https://ror.org/01aqxgr98 Informatique, BioInformatique, SystĆØmes Complexes'),
(111168, 'https://ror.org/01ar90c17', 'it', 1, 'https://ror.org/01ar90c17 Institute of Agricultural Biology and Biotechnology Istituto di Biologia e Biotecnologia Agraria'),
(111169, 'https://ror.org/01astzd61', 'pt', 1, 'https://ror.org/01astzd61 Ar.Co Centro de Arte e Comunicação Visual'),
(111170, 'https://ror.org/01axw0s80', 'en', 0, 'https://ror.org/01axw0s80 Research Institute of Agricultural Engineering Výzkumný Ústav ZemědělskĆ© Techniky'),
(111171, 'https://ror.org/01az7g189', 'en', 1, 'https://ror.org/01az7g189 Stawell Underground Physics Laboratory'),
(111172, 'https://ror.org/01azfw069', 'en', 1, 'https://ror.org/01azfw069 The University of Texas at Tyler'),
(111173, 'https://ror.org/01b05bn14', 'no_lang_code', 1, 'https://ror.org/01b05bn14 Ramsay Health Care (Australia)'),
(111174, 'https://ror.org/01b1h1f72', 'en', 1, 'https://ror.org/01b1h1f72 Observatoř Pierra Augera, VýzkumnĆ” infrastruktura AUGER‑CZ Research Infrastructure AUGER‑CZ'),
(111175, 'https://ror.org/01b3k3194', 'en', 1, 'https://ror.org/01b3k3194 Saijo City Shuso Hospital č„æę”åø‚ē«‹å‘Øę”‘ē—…é™¢'),
(111176, 'https://ror.org/01b62sk68', 'en', 1, 'https://ror.org/01b62sk68 Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Š°Š²Ń‚Š¾Š¼Š¾Š±Ń–Š»ŃŒŠ½Š¾-Горожній ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111177, 'https://ror.org/01b9fvd84', 'en', 1, 'https://ror.org/01b9fvd84 Department of Science and Technology of Shandong Province å±±äøœēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(111178, 'https://ror.org/01b9fyw42', 'pt', 1, 'https://ror.org/01b9fyw42 Centro de História de Arte e Investigação Artística'),
(111179, 'https://ror.org/01baz5f40', 'en', 1, 'https://ror.org/01baz5f40 Arctic Research Foundation'),
(111180, 'https://ror.org/01bazpc66', 'en', 1, 'https://ror.org/01bazpc66 North Private College of Nursing'),
(111181, 'https://ror.org/01bbb4v96', 'pt', 1, 'https://ror.org/01bbb4v96 Centro de Investigação e Informação da Música Portuguesa'),
(111182, 'https://ror.org/01bcb9c06', 'en', 1, 'https://ror.org/01bcb9c06 Ube-kohsan Central Hospital Corp åŒ»ē™‚ę³•äŗŗē¤¾å›£å®‡éƒØčˆˆē”£äø­å¤®ē—…é™¢'),
(111183, 'https://ror.org/01bd2b489', 'pt', 1, 'https://ror.org/01bd2b489 Unidade de Ensino e Investigação em Saúde Pública Global'),
(111184, 'https://ror.org/01bd3ye13', 'en', 1, 'https://ror.org/01bd3ye13 Asahi Group Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚µćƒ’ć‚°ćƒ«ćƒ¼ćƒ—å­¦č”“ęŒÆčˆˆč²”å›£'),
(111185, 'https://ror.org/01bf8pa91', 'no_lang_code', 1, 'https://ror.org/01bf8pa91 Raporal (Portugal), Raporal, S.A.'),
(111186, 'https://ror.org/01bfg2v82', 'id', 1, 'https://ror.org/01bfg2v82 Institut Agama Islam Negeri Palopo'),
(111187, 'https://ror.org/01bgeqk20', 'en', 1, 'https://ror.org/01bgeqk20 CUPA-HR'),
(111188, 'https://ror.org/01bgpbn64', 'fr', 1, 'https://ror.org/01bgpbn64 GREI - Groupe de recherches en Ć©tudes indienne, Groupe de Recherches en Ɖtudes Indiennes'),
(111189, 'https://ror.org/01bj4fd12', 'fr', 1, 'https://ror.org/01bj4fd12 Laboratoire de Biologie et ModƩlisation de la Cellule'),
(111190, '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'),
(111191, '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'),
(111192, 'https://ror.org/01bmf6d75', 'en', 1, 'https://ror.org/01bmf6d75 Czech International Centre of Research Reactors České mezinÔrodní centrum výzkumných reaktorů'),
(111193, 'https://ror.org/01bn4mn58', 'en', 1, 'https://ror.org/01bn4mn58 Grosses LF Foghts Fund'),
(111194, 'https://ror.org/01bntpj94', 'en', 1, 'https://ror.org/01bntpj94 Japan Institute of Invention and Innovation å…¬ē›Šē¤¾å›£ę³•äŗŗē™ŗę˜Žå”ä¼š'),
(111195, 'https://ror.org/01br1h281', 'no_lang_code', 1, 'https://ror.org/01br1h281 Servidor de Apontadores Portugueses Online, Servidor de Apontadores Portugueses Online (Portugal)'),
(111196, 'https://ror.org/01bsaey45', 'en', 1, 'https://ror.org/01bsaey45 Children''s Medical Research Institute'),
(111197, 'https://ror.org/01bt3e159', 'fr', 1, 'https://ror.org/01bt3e159 Cultures, Environments, Arctic, Representations, Climate Cultures, Environnements, Arctique, ReprƩsentations, Climat'),
(111198, 'https://ror.org/01bw9nb45', 'en', 1, 'https://ror.org/01bw9nb45 3B''s Research Group'),
(111199, 'https://ror.org/01bxnaj63', 'en', 1, 'https://ror.org/01bxnaj63 Thomas More University'),
(111200, 'https://ror.org/01bydex26', 'de', 1, 'https://ror.org/01bydex26 Anstalt für Verbrennungskraftmaschinen List (Austria)'),
(111201, 'https://ror.org/01bynmm24', 'es', 1, 'https://ror.org/01bynmm24 Hospital Universitario Santa Cristina'),
(111202, 'https://ror.org/01c082437', 'en', 1, 'https://ror.org/01c082437 Osaka Seikei College 大阪成蹊短期大学'),
(111203, 'https://ror.org/01c0m1t63', 'en', 1, 'https://ror.org/01c0m1t63 Hochschule Karlsruhe Technik und Wirtschaft Karlsruhe University of Applied Sciences'),
(111204, 'https://ror.org/01c2t8448', 'fr', 1, 'https://ror.org/01c2t8448 Centre de Microbiologie du Sol et de l''Environnement'),
(111205, 'https://ror.org/01c3xc117', 'en', 1, 'https://ror.org/01c3xc117 University of Michigan–Flint'),
(111206, 'https://ror.org/01c64df17', 'en', 1, 'https://ror.org/01c64df17 Illumina (Singapore), Illumina Singapore Pte Ltd'),
(111207, 'https://ror.org/01c730s93', 'pt', 1, 'https://ror.org/01c730s93 Universidade Virtual do Estado de SĆ£o Paulo'),
(111208, 'https://ror.org/01c7rh275', 'pt', 1, 'https://ror.org/01c7rh275 Sociedade Portuguesa de Suicidologia'),
(111209, 'https://ror.org/01c8th393', 'es', 1, 'https://ror.org/01c8th393 Centro de Investigaciones Históricas, Antropológicas y Culturales - AIP'),
(111210, 'https://ror.org/01ca3xs90', 'fr', 1, 'https://ror.org/01ca3xs90 Centre de rƩadaptation en dƩpendance de QuƩbec'),
(111211, 'https://ror.org/01casae32', 'en', 1, 'https://ror.org/01casae32 Muroran City General Hospital åø‚ē«‹å®¤č˜­ē·åˆē—…é™¢'),
(111212, 'https://ror.org/01cby8j38', 'es', 1, 'https://ror.org/01cby8j38 Autonomous University of Madrid Madrilgo Unibertsitate Autonomoa Universidade Autónoma de Madrid Universitat Autònoma de Madrid'),
(111213, 'https://ror.org/01cc9yk21', 'no_lang_code', 1, 'https://ror.org/01cc9yk21 ViiV Healthcare (United Kingdom)'),
(111214, 'https://ror.org/01cdnw320', 'en', 1, 'https://ror.org/01cdnw320 National Institution for Academic Degrees and Quality Enhancement of Higher Education å¤§å­¦ę”¹é©ę”Æę“ćƒ»å­¦ä½ęŽˆäøŽę©Ÿę§‹'),
(111215, 'https://ror.org/01ce1xs48', 'es', 1, 'https://ror.org/01ce1xs48 Corporación Universitaria de Asturias'),
(111216, 'https://ror.org/01cgmpb23', 'en', 1, 'https://ror.org/01cgmpb23 Institut für Teilchen- und Astrophysik Institute for Particle Physics and Astrophysics'),
(111217, 'https://ror.org/01cgw9e63', 'no_lang_code', 1, 'https://ror.org/01cgw9e63 Amkor Technology (Portugal), Amkor Technology Portugal SA'),
(111218, 'https://ror.org/01ch21j41', 'fr', 1, 'https://ror.org/01ch21j41 Connaissance & Intelligence Artificielle DistribuƩes'),
(111219, 'https://ror.org/01chh3p26', 'en', 1, 'https://ror.org/01chh3p26 Ecole SupƩrieure de Management Tlemcen Higher School of Management of Tlemcen'),
(111220, 'https://ror.org/01chzd453', 'en', 1, 'https://ror.org/01chzd453 University of Pardubice'),
(111221, 'https://ror.org/01cnyr648', 'en', 1, 'https://ror.org/01cnyr648 International College of Technology, Kanazawa å›½éš›é«˜ē­‰å°‚é–€å­¦ę ”'),
(111222, 'https://ror.org/01cqp7y05', 'fr', 1, 'https://ror.org/01cqp7y05 Synergies Langues Arts Musique'),
(111223, 'https://ror.org/01crjdg76', 'en', 1, 'https://ror.org/01crjdg76 Shonan Fujisawa Tokusyukai Hospital åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šę¹˜å—č—¤ę²¢å¾³ę“²ä¼šē—…é™¢'),
(111224, 'https://ror.org/01crmad49', 'en', 1, 'https://ror.org/01crmad49 Federal University of Agriculture Zuru'),
(111225, 'https://ror.org/01csc7562', 'en', 1, 'https://ror.org/01csc7562 Middle East University Ų¬Ų§Ł…Ų¹Ų© الؓرق Ų§Ł„Ų£ŁˆŲ³Ų·'),
(111226, 'https://ror.org/01ctjz153', 'no_lang_code', 1, 'https://ror.org/01ctjz153 Pfizer (Portugal)'),
(111227, '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'),
(111228, 'https://ror.org/01cwfm348', 'it', 1, 'https://ror.org/01cwfm348 SocietĆ  Storica e Antropologica di Valle Camonica'),
(111229, 'https://ror.org/01cxqde27', 'en', 1, 'https://ror.org/01cxqde27 Centre of Estonian Rural Research and Knowledge Maaelu Teadmuskeskus'),
(111230, 'https://ror.org/01d03q474', 'es', 1, 'https://ror.org/01d03q474 National University of Callao Universidad Nacional del Callao'),
(111231, 'https://ror.org/01d0bkz51', 'no_lang_code', 1, 'https://ror.org/01d0bkz51 Tianjin Chengjian University å¤©ę“„åŸŽå»ŗå¤§å­¦'),
(111232, 'https://ror.org/01d0fc168', 'en', 1, 'https://ror.org/01d0fc168 Integrated Carbon Observation System'),
(111233, 'https://ror.org/01d0sjx19', 'en', 1, 'https://ror.org/01d0sjx19 The Japan Society for Precision Engineering å…¬ē›Šē¤¾å›£ę³•äŗŗē²¾åÆ†å·„å­¦ä¼š'),
(111234, 'https://ror.org/01d22zt92', 'nl', 1, 'https://ror.org/01d22zt92 Spieren voor Spieren'),
(111235, 'https://ror.org/01d35tt43', 'en', 1, 'https://ror.org/01d35tt43 Kawaguchi Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå·å£åŒ»åø«ä¼š'),
(111236, 'https://ror.org/01d5r9432', 'no_lang_code', 1, 'https://ror.org/01d5r9432 I-Sensis Perfume Design (Portugal)'),
(111237, 'https://ror.org/01db28q79', 'en', 1, 'https://ror.org/01db28q79 Saitama Toho Junior College åŸ¼ēŽ‰ę±čŒēŸ­ęœŸå¤§å­¦'),
(111238, 'https://ror.org/01db6h964', 'en', 1, 'https://ror.org/01db6h964 HĆ”skóli ƍslands University of Iceland'),
(111239, 'https://ror.org/01ddxs846', 'en', 1, 'https://ror.org/01ddxs846 BSC Engineering, BSC Engineering (United States)'),
(111240, 'https://ror.org/01dfq7t84', 'en', 1, 'https://ror.org/01dfq7t84 R. N. G. Patel Institute of Technology'),
(111241, 'https://ror.org/01dh9vr61', 'en', 1, 'https://ror.org/01dh9vr61 Office of Naval Intelligence'),
(111242, 'https://ror.org/01dj4ez18', 'en', 1, 'https://ror.org/01dj4ez18 Okayama City General Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå²”å±±åø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(111243, 'https://ror.org/01dj9qb53', 'en', 1, 'https://ror.org/01dj9qb53 TransDeN Lab'),
(111244, 'https://ror.org/01djxaj77', 'no_lang_code', 1, 'https://ror.org/01djxaj77 Wockhardt (India)'),
(111245, 'https://ror.org/01dm0sk45', 'es', 1, 'https://ror.org/01dm0sk45 Fundación Cóndor Andino'),
(111246, 'https://ror.org/01dnwt956', 'en', 1, 'https://ror.org/01dnwt956 Naval Research Laboratory Tactical Electronic Warfare Division'),
(111247, 'https://ror.org/01dvsne70', 'es', 1, 'https://ror.org/01dvsne70 Fundación Ecotonos'),
(111248, 'https://ror.org/01dvwhz14', 'no_lang_code', 1, 'https://ror.org/01dvwhz14 Zimmer (Portugal)'),
(111249, 'https://ror.org/01dzm1z55', 'en', 1, 'https://ror.org/01dzm1z55 Humboldt International University'),
(111250, 'https://ror.org/01e0c1w56', 'en', 1, 'https://ror.org/01e0c1w56 Eco Astronomy Inc'),
(111251, 'https://ror.org/01e2k1j30', 'en', 1, 'https://ror.org/01e2k1j30 Bureau of Medicine and Surgery'),
(111252, 'https://ror.org/01e3m7079', 'en', 1, 'https://ror.org/01e3m7079 Universidad de Cincinnati University of Cincinnati UniversitƩ de cincinnati'),
(111253, 'https://ror.org/01e47e403', 'en', 1, 'https://ror.org/01e47e403 Junior Chamber International äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§ę±é’å¹“ä¼šč­°ę‰€'),
(111254, 'https://ror.org/01e4w2966', 'en', 1, 'https://ror.org/01e4w2966 Australian Sports Commission'),
(111255, 'https://ror.org/01e666568', 'en', 1, 'https://ror.org/01e666568 Seoul Digital University'),
(111256, 'https://ror.org/01e6v1265', 'en', 1, 'https://ror.org/01e6v1265 Japan Marine Industry Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒžćƒŖćƒ³äŗ‹ę„­å”ä¼š'),
(111257, 'https://ror.org/01e70kg07', 'en', 1, 'https://ror.org/01e70kg07 Munger University ą¤®ą„ą¤‚ą¤—ą„‡ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(111258, 'https://ror.org/01e7v7w47', 'en', 1, 'https://ror.org/01e7v7w47 University of Calcutta UniversitĆ© de calcutta ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ কলকাতা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ਕੋਲਕਾਤਾ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ą®•ąÆŠą®²ąÆą®•ą®¤ąÆą®¤ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą²•ą²²ą³ą²•ą²¤ą³ą²¤ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą“•ąµŠąµ½ą“•ąµą“•ą“¤ąµą“¤ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(111259, 'https://ror.org/01e8etd40', 'fr', 1, 'https://ror.org/01e8etd40 Laboratoire Sols et Environnement Laboratory of Soil and Environmental Sciences'),
(111260, 'https://ror.org/01e9gfg41', 'es', 1, 'https://ror.org/01e9gfg41 Universidad Nacional de San Agustin de Arequipa'),
(111261, 'https://ror.org/01e9w2169', 'no_lang_code', 1, 'https://ror.org/01e9w2169 Muroplas Industria de Plasticos (Portugal), Muroplas Plastic Manufacturers'),
(111262, 'https://ror.org/01edysk27', 'es', 1, 'https://ror.org/01edysk27 Ministerio de Medio Ambiente y Recursos Naturales'),
(111263, 'https://ror.org/01ee9ar58', 'en', 1, 'https://ror.org/01ee9ar58 Prifysgol Nottingham University of Nottingham'),
(111264, 'https://ror.org/01ef7p617', 'en', 1, 'https://ror.org/01ef7p617 Senzoku Junior College of Childhood Education ę“—č¶³ć“ć©ć‚‚ēŸ­ęœŸå¤§å­¦'),
(111265, 'https://ror.org/01eh42f79', 'en', 1, 'https://ror.org/01eh42f79 Nederlandse Hart Registratie Netherlands Heart Registration'),
(111266, 'https://ror.org/01ehe5s81', 'es', 1, 'https://ror.org/01ehe5s81 Hospital Universitario de Getafe'),
(111267, 'https://ror.org/01ej9dk98', 'en', 1, 'https://ror.org/01ej9dk98 The University of Melbourne'),
(111268, 'https://ror.org/01ejynq87', 'en', 1, 'https://ror.org/01ejynq87 National Brain Imaging Network'),
(111269, 'https://ror.org/01ekw7f87', 'fr', 1, 'https://ror.org/01ekw7f87 Camille Jordan Institute institut Camille-Jordan'),
(111270, 'https://ror.org/01emts431', 'en', 1, 'https://ror.org/01emts431 Academy of Applied Studies Å abac Akademija strukovnih studija Å abac, АкаГемија ŃŃ‚Ń€ŃƒŠŗŠ¾Š²Š½ŠøŃ… ŃŃ‚ŃƒŠ“ŠøŃ˜Š° Шабац'),
(111271, 'https://ror.org/01ep7xn66', 'en', 1, 'https://ror.org/01ep7xn66 TAMA CITY Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤šę‘©åø‚åŒ»åø«ä¼š'),
(111272, 'https://ror.org/01epq7d95', 'fr', 1, 'https://ror.org/01epq7d95 2degrƩs'),
(111273, 'https://ror.org/01ept9717', 'pt', 1, 'https://ror.org/01ept9717 EcoFaxina Institute Instituto EcoFaxina'),
(111274, 'https://ror.org/01ere8z56', 'pt', 1, 'https://ror.org/01ere8z56 Conselho Coordenador dos Institutos Superiores PolitƩcnicos'),
(111275, 'https://ror.org/01erw1k48', 'pt', 1, 'https://ror.org/01erw1k48 Sociedade Portuguesa das DoenƧas do Movimento'),
(111276, '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'),
(111277, 'https://ror.org/01eyz2v57', 'en', 1, 'https://ror.org/01eyz2v57 Nanbu Tokushukai Hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šå—éƒØå¾³ę“²ä¼šē—…é™¢'),
(111278, 'https://ror.org/01f0pxq13', 'en', 1, 'https://ror.org/01f0pxq13 Naval Strike and Air Warfare Center'),
(111279, 'https://ror.org/01f0xj683', 'en', 1, 'https://ror.org/01f0xj683 Japan Family Planning Association, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å®¶ę—čØˆē”»å”ä¼š'),
(111280, 'https://ror.org/01f53pe83', 'en', 1, 'https://ror.org/01f53pe83 Marine & Environmental Research Lab Ltd, Marine & Environmental Research Lab Ltd (Cyprus)'),
(111281, 'https://ror.org/01f74x078', 'en', 1, 'https://ror.org/01f74x078 State University "Kyiv Aviation Institute" Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ "ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ авіаційний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚"'),
(111282, 'https://ror.org/01f9pza55', 'en', 1, 'https://ror.org/01f9pza55 Springer Nature (Shanghai, China)'),
(111283, 'https://ror.org/01fcjzv38', 'en', 1, 'https://ror.org/01fcjzv38 Laboratory for Atmospheric and Space Physics'),
(111284, 'https://ror.org/01ffz3y94', 'pt', 1, 'https://ror.org/01ffz3y94 Azores Oncology Center Centro de Oncologia dos AƧores'),
(111285, 'https://ror.org/01fgged21', 'en', 1, 'https://ror.org/01fgged21 Toyooka Junior College 豊岔短期大学'),
(111286, 'https://ror.org/01fhn0r91', 'en', 1, 'https://ror.org/01fhn0r91 The Radiation Science Society of Japan å…¬ē›Šč²”å›£ę³•äŗŗč¼»å°„ē§‘å­¦ē ”ē©¶ä¼š'),
(111287, 'https://ror.org/01fhrjq14', 'no_lang_code', 1, 'https://ror.org/01fhrjq14 blueCAPE, blueCAPE (Portugal)'),
(111288, 'https://ror.org/01fmrf533', 'en', 1, 'https://ror.org/01fmrf533 Japan Poison Information Center å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äø­ęÆ’ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(111289, 'https://ror.org/01fn87p98', 'no_lang_code', 1, 'https://ror.org/01fn87p98 Whiteboard (Portugal)'),
(111290, 'https://ror.org/01fqrjt38', 'pt', 1, 'https://ror.org/01fqrjt38 Instituto Nacional de Investigação AgrÔria e VeterinÔria'),
(111291, 'https://ror.org/01frf0543', 'no_lang_code', 1, 'https://ror.org/01frf0543 Milupa Comercial (Portugal), Milupa Comercial, S.A.'),
(111292, 'https://ror.org/01frn9647', 'fr', 1, 'https://ror.org/01frn9647 L''UniversitƩ de Pau et des Pays de l''Adour, UniversitƩ de Pau et des Pays de l''Adour Paueko eta Aturrialdeko Unibertsitatea'),
(111293, 'https://ror.org/01frpmv27', 'en', 1, 'https://ror.org/01frpmv27 Alvan Ikoku Federal College of Education'),
(111294, 'https://ror.org/01fsjjr57', 'en', 1, 'https://ror.org/01fsjjr57 Ski Association of Japan å…¬ē›Šč²”å›£ę³•äŗŗå…Øę—„ęœ¬ć‚¹ć‚­ćƒ¼é€£ē›Ÿ'),
(111295, 'https://ror.org/01fv25t22', 'fr', 1, 'https://ror.org/01fv25t22 CEA Paris-Saclay - Etablissement de Saclay Saclay Nuclear Research Centre'),
(111296, 'https://ror.org/01fx94528', 'pt', 1, 'https://ror.org/01fx94528 Centro de Investigação de Direito Privado'),
(111297, 'https://ror.org/01fxcka27', 'en', 1, 'https://ror.org/01fxcka27 The No. 2 People''s Hospital of Lanzhou å…°å·žåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(111298, 'https://ror.org/01fyp5w42', 'es', 1, 'https://ror.org/01fyp5w42 Hospital Universitario de Jerez'),
(111299, 'https://ror.org/01fypx926', 'en', 1, 'https://ror.org/01fypx926 Advanced Technology Research Centre Pte Ltd, Advanced Technology Research Centre Pte Ltd (Singapore)'),
(111300, 'https://ror.org/01fz2dm70', 'en', 1, 'https://ror.org/01fz2dm70 Ochanomizu Institute for Medical Mycology and Allergology ćŠčŒ¶ć®ę°“ēœŸčŒć‚¢ćƒ¬ćƒ«ć‚®ćƒ¼ē ”ē©¶ę‰€'),
(111301, 'https://ror.org/01g09s323', 'id', 1, 'https://ror.org/01g09s323 Politeknik Manufaktur Negeri Bangka Belitung'),
(111302, 'https://ror.org/01g470z66', 'es', 1, 'https://ror.org/01g470z66 Instituto de Investigaciones Antropológicas'),
(111303, 'https://ror.org/01g7v1865', 'en', 1, 'https://ror.org/01g7v1865 Fujisawa Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗč—¤ę²¢åø‚åŒ»åø«ä¼š'),
(111304, 'https://ror.org/01g8djv19', 'no_lang_code', 1, 'https://ror.org/01g8djv19 Solvay (Belgium)'),
(111305, 'https://ror.org/01g8jmb35', 'en', 1, 'https://ror.org/01g8jmb35 Japan Health Promotion Foundation äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·å¢—é€²č²”å›£'),
(111306, 'https://ror.org/01gbjs041', 'en', 1, 'https://ror.org/01gbjs041 Laghman University لغمان Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(111307, 'https://ror.org/01gc0wp38', 'en', 1, 'https://ror.org/01gc0wp38 University Hospitals Cleveland Medical Center'),
(111308, 'https://ror.org/01gccqc59', 'en', 1, 'https://ror.org/01gccqc59 Research Institute for Labour and Social Affairs'),
(111309, 'https://ror.org/01gens881', 'en', 1, 'https://ror.org/01gens881 Higashikyushu Junior College ę±ä¹å·žēŸ­ęœŸå¤§å­¦'),
(111310, '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'),
(111311, 'https://ror.org/01gj2n097', 'en', 1, 'https://ror.org/01gj2n097 Iwate Industry Promotion Center å…¬ē›Šč²”å›£ę³•äŗŗć„ć‚ć¦ē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(111312, 'https://ror.org/01gktc425', 'pt', 1, 'https://ror.org/01gktc425 Sociedade Portuguesa de Biomecânica'),
(111313, 'https://ror.org/01gm4bw78', 'no_lang_code', 1, 'https://ror.org/01gm4bw78 Riasearch, Riasearch (Portugal)'),
(111314, 'https://ror.org/01gmv5d77', 'no_lang_code', 1, 'https://ror.org/01gmv5d77 McKinsey & Company (United States)'),
(111315, 'https://ror.org/01gmxjx09', 'pt', 1, 'https://ror.org/01gmxjx09 Sociedade Portuguesa de Diabetologia'),
(111316, 'https://ror.org/01gn0k096', 'pt', 1, 'https://ror.org/01gn0k096 Academia Portuguesa da História'),
(111317, 'https://ror.org/01gnqgn87', 'en', 1, 'https://ror.org/01gnqgn87 d-Matrix Inc., d-Matrix Inc. (United States)'),
(111318, 'https://ror.org/01gqd2r46', 'en', 1, 'https://ror.org/01gqd2r46 Institute of Science, Technology and Policy'),
(111319, 'https://ror.org/01gtctx88', 'no_lang_code', 1, 'https://ror.org/01gtctx88 GW Pharmaceuticals (United Kingdom)'),
(111320, 'https://ror.org/01gtjxz83', 'fr', 1, 'https://ror.org/01gtjxz83 Haute-Provence Observatory Observatoire de Haute-Provence'),
(111321, 'https://ror.org/01gwfgg30', 'en', 1, 'https://ror.org/01gwfgg30 SFCOLAB - Smart Farm Collaborative Laboratory'),
(111322, 'https://ror.org/01gy1fk68', 'en', 1, 'https://ror.org/01gy1fk68 International Union of Pure and Applied Physics'),
(111323, 'https://ror.org/01h06nz15', 'en', 1, 'https://ror.org/01h06nz15 ARC Centre of Excellence for Particle Physics at the Terascale'),
(111324, 'https://ror.org/01h0yme57', 'en', 1, 'https://ror.org/01h0yme57 Osaka Prefectural Management Foundation äø€čˆ¬č²”å›£ę³•äŗŗå¤§é˜Ŗåŗœć‚æć‚¦ćƒ³ē®”ē†č²”å›£'),
(111325, 'https://ror.org/01h0zpd94', 'en', 1, 'https://ror.org/01h0zpd94 National Natural Science Foundation of China å›½å®¶č‡Ŗē„¶ē§‘å­¦åŸŗé‡‘å§”å‘˜ä¼š'),
(111326, 'https://ror.org/01h21cs69', 'no_lang_code', 1, 'https://ror.org/01h21cs69 Wacker Group (Germany)'),
(111327, 'https://ror.org/01h2d3422', 'no_lang_code', 0, 'https://ror.org/01h2d3422 Engility (United States)'),
(111328, 'https://ror.org/01h2v3d55', 'en', 1, 'https://ror.org/01h2v3d55 Central European Research Infrastructure Consortium'),
(111329, 'https://ror.org/01h399f18', 'en', 1, 'https://ror.org/01h399f18 Japan Marine Oil Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę°“ē”£ę²¹č„‚å”ä¼š'),
(111330, 'https://ror.org/01h3bmp72', 'en', 1, 'https://ror.org/01h3bmp72 Clinical Practice Research Datalink'),
(111331, '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'),
(111332, 'https://ror.org/01h54h698', 'en', 1, 'https://ror.org/01h54h698 International Professional University of Technology in Tokyo ę±äŗ¬å›½éš›å·„ē§‘å°‚é–€č·å¤§å­¦'),
(111333, 'https://ror.org/01h8pf755', 'fr', 1, 'https://ror.org/01h8pf755 Institut National des Sciences AppliquƩes de Toulouse Toulouse National Institute for Applied Sciences'),
(111334, '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'),
(111335, 'https://ror.org/01hcb0r47', 'pt', 1, 'https://ror.org/01hcb0r47 Centro de Administração e Políticas Públicas'),
(111336, 'https://ror.org/01hde4t98', 'en', 1, 'https://ror.org/01hde4t98 Japan Center for Cities å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éƒ½åø‚ć‚»ćƒ³ć‚æćƒ¼'),
(111337, 'https://ror.org/01he8zy72', 'en', 1, 'https://ror.org/01he8zy72 Technology Research Association of Magnetic Materials for High-Efficiency Motors é«˜åŠ¹ēŽ‡ćƒ¢ćƒ¼ć‚æćƒ¼ē”Øē£ę€§ęę–™ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(111338, 'https://ror.org/01hf3jh89', 'es', 1, 'https://ror.org/01hf3jh89 Centro Especializado en Diabetes, Obesidad y Prevención de Enfermedades Cardiovasculares'),
(111339, 'https://ror.org/01hhnmk90', 'en', 0, 'https://ror.org/01hhnmk90 Caledonian College of Engineering'),
(111340, 'https://ror.org/01hhqsm59', 'en', 1, 'https://ror.org/01hhqsm59 Sir Charles Gairdner Hospital'),
(111341, 'https://ror.org/01hked897', 'en', 1, 'https://ror.org/01hked897 Nara Kasuga Hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗę–°ä»ä¼šå„ˆč‰Æę˜„ę—„ē—…é™¢'),
(111342, 'https://ror.org/01hmmsr16', 'it', 1, 'https://ror.org/01hmmsr16 Azienda Ospedaliero-Universitaria di Modena'),
(111343, 'https://ror.org/01hnx7606', 'en', 1, 'https://ror.org/01hnx7606 Atmo France'),
(111344, 'https://ror.org/01hp34w32', 'en', 1, 'https://ror.org/01hp34w32 Southern United Academy of Sciences Limited å—ę–¹čÆåˆē§‘å­øē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(111345, 'https://ror.org/01hpkt650', 'en', 1, 'https://ror.org/01hpkt650 Portuguese Nuclear Magnetic Resonance Network'),
(111346, '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'),
(111347, 'https://ror.org/01hs9md59', 'en', 1, 'https://ror.org/01hs9md59 Laboratory of Hydraulics, Hydrology and Glaciology Versuchsanstalt für Wasserbau, Hydrologie und Glaziologie'),
(111348, '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'),
(111349, 'https://ror.org/01ht74751', 'en', 1, 'https://ror.org/01ht74751 Universidad de La Serena University of La Serena'),
(111350, 'https://ror.org/01hw1ck36', 'en', 1, 'https://ror.org/01hw1ck36 All India Institute of Medical Sciences, Rajkot'),
(111351, 'https://ror.org/01hyesf03', 'pt', 1, 'https://ror.org/01hyesf03 Centro de Matematica Aplicada à Previsão e Decisão Económica'),
(111352, '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'),
(111353, 'https://ror.org/01hyjmc38', 'pt', 1, 'https://ror.org/01hyjmc38 Sociedade Portuguesa de Ciências VeterinÔrias'),
(111354, 'https://ror.org/01hzj5y23', 'en', 1, 'https://ror.org/01hzj5y23 Naval Health Research Center'),
(111355, 'https://ror.org/01hznc410', 'en', 1, 'https://ror.org/01hznc410 Institute for Plasma Research ą¤Ŗą„ą¤²ą¤¾ą¤œą„ą¤®ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(111356, 'https://ror.org/01j0djm57', 'no_lang_code', 1, 'https://ror.org/01j0djm57 Gades Training (Portugal)'),
(111357, 'https://ror.org/01j21x531', 'en', 1, 'https://ror.org/01j21x531 Japan Elevator Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Øćƒ¬ćƒ™ćƒ¼ć‚æćƒ¼å”ä¼š'),
(111358, 'https://ror.org/01j240j59', 'en', 1, 'https://ror.org/01j240j59 Research Institute of Meteorology and Atmospheric Science Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł‡ŁˆŲ§Ų“Ł†Ų§Ų³ŪŒ و Ų¹Ł„ŁˆŁ… جو'),
(111359, 'https://ror.org/01j2dwr66', 'de', 1, 'https://ror.org/01j2dwr66 KSH München, Katholische Stiftungshochschule München'),
(111360, 'https://ror.org/01j32n803', 'tr', 1, 'https://ror.org/01j32n803 Türkiye Eğitim Gönüllüleri Vakfı'),
(111361, 'https://ror.org/01j4v3x97', 'en', 1, 'https://ror.org/01j4v3x97 Indian Institute of Technology Hyderabad Institut de technologie indien d''hyderabad ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ஐதராபாது ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°¹ą±ˆą°¦ą°°ą°¾ą°¬ą°¾ą°¦ą± ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ą“±ą“æą“±ą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“•ąµ†ą“®ą“æą“•ąµą“•ąµ½ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(111362, 'https://ror.org/01j5n9f07', 'en', 1, 'https://ror.org/01j5n9f07 Atomenergia Kutatóintézet Institute for Atomic Energy Research'),
(111363, 'https://ror.org/01j69h118', 'pt', 1, 'https://ror.org/01j69h118 Centro Nacional de Cultura'),
(111364, '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'),
(111365, 'https://ror.org/01j7g2q21', 'pt', 1, 'https://ror.org/01j7g2q21 Comunidade Intermunicipal do Alentejo Litoral'),
(111366, 'https://ror.org/01j7nv178', 'en', 1, 'https://ror.org/01j7nv178 BUILT CoLAB'),
(111367, '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'),
(111368, 'https://ror.org/01j92g734', 'pt', 1, 'https://ror.org/01j92g734 Companhia de MĆŗsica Teatral'),
(111369, 'https://ror.org/01j9f6752', 'en', 1, 'https://ror.org/01j9f6752 University of Koblenz and Landau UniversitƤt Koblenz-Landau'),
(111370, 'https://ror.org/01jaj8n65', 'no_lang_code', 1, 'https://ror.org/01jaj8n65 Assiut University UniversitĆ© d''Assiout Ų¬Ų§Ł…Ų¹Ų© أسيوط'),
(111371, 'https://ror.org/01jb2fs87', 'en', 1, 'https://ror.org/01jb2fs87 Gunma Livestock Health Laboratory ē¾¤é¦¬ēœŒå®¶ē•œč”›ē”Ÿē ”ē©¶ę‰€'),
(111372, 'https://ror.org/01jc8mb89', 'pt', 1, 'https://ror.org/01jc8mb89 Centro Interdisciplinar de CiĆŖncias Sociais'),
(111373, 'https://ror.org/01jca1n07', 'en', 1, 'https://ror.org/01jca1n07 Turkish Chemical Society'),
(111374, 'https://ror.org/01jdwf714', 'en', 1, 'https://ror.org/01jdwf714 University of Home Economics'),
(111375, 'https://ror.org/01je2yp79', 'en', 1, 'https://ror.org/01je2yp79 Kochi Prefectural Police 高矄県警察'),
(111376, 'https://ror.org/01jhd3147', 'pt', 1, 'https://ror.org/01jhd3147 Sociedade Portuguesa de Estomatologia e Medicina DentƔria'),
(111377, 'https://ror.org/01jjfyf53', 'pt', 1, 'https://ror.org/01jjfyf53 Fundacao de Computacao Cientifica Nacional'),
(111378, 'https://ror.org/01jmqsj15', 'en', 1, 'https://ror.org/01jmqsj15 Nagasaki Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗé•·å“ŽēœŒēœ‹č­·å”ä¼š'),
(111379, '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 Ų§Ł„Ł…ŁƒŲŖŲØ Ų§Ł„ŁˆŲ·Ł†ŁŠ للسلامة Ų§Ł„ŲµŲ­ŁŠŲ© للمنتجات Ų§Ł„ŲŗŲ°Ų§Ų¦ŁŠŲ©'),
(111380, 'https://ror.org/01jqtw136', 'en', 1, 'https://ror.org/01jqtw136 Seikei-kai Chiba Medical Center åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é¦Øä¼šåƒč‘‰ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(111381, 'https://ror.org/01jrscb12', 'en', 1, 'https://ror.org/01jrscb12 Miyakojima iGRT Clinic éƒ½å³¶ę”¾å°„ē·šē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(111382, 'https://ror.org/01jt0e422', 'en', 1, 'https://ror.org/01jt0e422 Ethiopian Policy Studies Institute'),
(111383, 'https://ror.org/01jwqqd72', 'en', 1, 'https://ror.org/01jwqqd72 Japan Meat Technology Institute å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é£Ÿč‚‰ē”Ÿē”£ęŠ€č”“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(111384, 'https://ror.org/01jx86h05', 'de', 1, 'https://ror.org/01jx86h05 Heart Center Dresden, University Hospital Herzzentrum Dresden Universitaetsklinik'),
(111385, 'https://ror.org/01jxzq227', 'en', 0, 'https://ror.org/01jxzq227 Indiana University – Purdue University Fort Wayne'),
(111386, 'https://ror.org/01k089j70', 'de', 1, 'https://ror.org/01k089j70 Topas GmbH, Topas GmbH (Germany)'),
(111387, 'https://ror.org/01k0e0792', 'en', 1, 'https://ror.org/01k0e0792 Institut für Hochleistungsrechnersysteme Institute for High Performance Computing Systems'),
(111388, 'https://ror.org/01k1m6p08', 'en', 1, 'https://ror.org/01k1m6p08 Rahman Institute of Higher Education Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ رحمان Ų±Ų§Ł…Ų³Ų±'),
(111389, 'https://ror.org/01k5ave46', 'en', 1, 'https://ror.org/01k5ave46 Fukui Prefectural Environmental Radiation Research and Monitoring Center ē¦äŗ•ēœŒåŽŸå­åŠ›ē’°å¢ƒē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(111390, 'https://ror.org/01k5qnb77', 'en', 1, 'https://ror.org/01k5qnb77 Robert Koch Institute Robert Koch-Institut'),
(111391, 'https://ror.org/01k8nkc73', 'en', 1, 'https://ror.org/01k8nkc73 ARC Centre of Excellence for Environmental Decisions'),
(111392, 'https://ror.org/01k92h814', 'no_lang_code', 1, 'https://ror.org/01k92h814 G. H. Gillespie Associates, G. H. Gillespie Associates, Inc. G. H. Gillespie Associates (United States)'),
(111393, 'https://ror.org/01kb0b173', 'pt', 1, 'https://ror.org/01kb0b173 Rede Portuguesa de Monitorização Costeira'),
(111394, 'https://ror.org/01kbxwc15', 'en', 1, 'https://ror.org/01kbxwc15 Imam Maturidi International Scientific Research Center'),
(111395, 'https://ror.org/01kcw0y52', 'pt', 1, 'https://ror.org/01kcw0y52 Reactor Português de Investigação'),
(111396, 'https://ror.org/01kdnp479', 'en', 1, 'https://ror.org/01kdnp479 Shaoxing Shangyu Women and Children Hospital ē»å…“åø‚äøŠč™žå¦‡å¹¼äæå„é™¢'),
(111397, 'https://ror.org/01kg8sb98', 'en', 1, 'https://ror.org/01kg8sb98 Indiana University UniversitƩ de l''Indiana'),
(111398, 'https://ror.org/01kh0x418', 'en', 1, 'https://ror.org/01kh0x418 Indian Institute of Chemical Biology'),
(111399, 'https://ror.org/01kh72s55', 'pt', 1, 'https://ror.org/01kh72s55 Centro de Investigação em Ambiente e Sustentabilidade'),
(111400, 'https://ror.org/01kj2bm70', 'en', 1, 'https://ror.org/01kj2bm70 Newcastle University'),
(111401, 'https://ror.org/01kk7j351', 'pt', 1, 'https://ror.org/01kk7j351 Instituto de Estudos de Literatura e Tradição'),
(111402, 'https://ror.org/01kk81m15', 'en', 1, 'https://ror.org/01kk81m15 Ministry of Health and Population ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ तऄा ą¤œą¤Øą¤øą¤‚ą¤–ą„ą¤Æą¤¾ ą¤®ą¤Øą„ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(111403, 'https://ror.org/01kps9p44', 'en', 1, 'https://ror.org/01kps9p44 Ircam Amplify, Ircam Amplify (France)'),
(111404, 'https://ror.org/01kq2by19', 'en', 1, 'https://ror.org/01kq2by19 Fukushima Institute for Research, Education and Innovation'),
(111405, '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'),
(111406, 'https://ror.org/01kt7ap73', 'en', 1, 'https://ror.org/01kt7ap73 Overseas Fishery Cooperation Foundation of Japan å…¬ē›Šč²”å›£ę³•äŗŗęµ·å¤–ę¼ę„­å”åŠ›č²”å›£'),
(111407, 'https://ror.org/01kvxx237', 'fr', 1, 'https://ror.org/01kvxx237 FƩdƩration de Recherche FCLAB'),
(111408, 'https://ror.org/01kwjhv40', 'en', 1, 'https://ror.org/01kwjhv40 Institut für Integrative Biologie Institute of Integrative Biology'),
(111409, 'https://ror.org/01m0th787', 'en', 1, 'https://ror.org/01m0th787 Institut für Molekulare Physikalische Wissenschaft Institute of Molecular Physical Science'),
(111410, 'https://ror.org/01m16wd76', 'en', 1, 'https://ror.org/01m16wd76 C. K. Pithawalla Institute of Pharmaceutical Science and Research'),
(111411, 'https://ror.org/01m38g178', 'en', 1, 'https://ror.org/01m38g178 Yamanashi Fruit Tree Experiment Station å±±ę¢ØēœŒęžœęØ¹č©¦éØ“å “'),
(111412, 'https://ror.org/01m4er335', 'en', 1, 'https://ror.org/01m4er335 Nuremberg Zoo Tiergarten Nürnberg'),
(111413, 'https://ror.org/01m6e3f86', 'en', 1, 'https://ror.org/01m6e3f86 Ecosmic, Ecosmic (Italy)'),
(111414, 'https://ror.org/01m84wm78', 'fr', 1, 'https://ror.org/01m84wm78 University of Rennes 2 UniversitƩ Rennes 2'),
(111415, 'https://ror.org/01m8gvd94', 'es', 1, 'https://ror.org/01m8gvd94 Universidad Laica Eloy Alfaro de ManabĆ­'),
(111416, 'https://ror.org/01m8r1j18', 'de', 1, 'https://ror.org/01m8r1j18 Institut Gesellschaftswissenschaftliche Bildung Institute of Social Studies Education'),
(111417, 'https://ror.org/01m9c6b05', 'en', 1, 'https://ror.org/01m9c6b05 Articares Pte Ltd, Articares Pte Ltd (Singapore)'),
(111418, 'https://ror.org/01mar7r17', 'en', 1, 'https://ror.org/01mar7r17 D’Or Institute for Research and Education Instituto D’Or de Pesquisa e Ensino'),
(111419, 'https://ror.org/01mc6ts50', 'en', 1, 'https://ror.org/01mc6ts50 Japanese Society of Psychosomatic Medicine äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åæƒčŗ«åŒ»å­¦ä¼š'),
(111420, 'https://ror.org/01mdfj071', 'en', 1, 'https://ror.org/01mdfj071 MARINO-FORUM 21 äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒžćƒŖćƒŽćƒ•ć‚©ćƒ¼ćƒ©ćƒ 21'),
(111421, 'https://ror.org/01mef8r43', 'en', 1, 'https://ror.org/01mef8r43 JAM MUSIC LAB Private University for Jazz and Popular Music Vienna'),
(111422, 'https://ror.org/01mhd9b84', 'fr', 1, 'https://ror.org/01mhd9b84 Immunologie et NeurogƩnƩtique ExpƩrimentales et MolƩculaires'),
(111423, 'https://ror.org/01mjhcq39', 'no_lang_code', 1, 'https://ror.org/01mjhcq39 Abreu Tours, Viagens Abreu (Portugal), Viagens Abreu, S.A.'),
(111424, 'https://ror.org/01mjwqg35', 'en', 1, 'https://ror.org/01mjwqg35 TYDEX, LLC, TYDEX, LLC (Russia)'),
(111425, 'https://ror.org/01mn31a72', 'en', 0, 'https://ror.org/01mn31a72 Haute Ɖcole de Musique de Lausanne University of Music Lausanne'),
(111426, 'https://ror.org/01mpd7s19', 'en', 1, 'https://ror.org/01mpd7s19 Japan Education Center of Environmental Sanitation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒę•“å‚™ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(111427, 'https://ror.org/01mqnkc89', 'en', 1, 'https://ror.org/01mqnkc89 Institut für Umweltentscheidungen Institute for Environmental Decisions'),
(111428, 'https://ror.org/01mtt4z48', 'de', 1, 'https://ror.org/01mtt4z48 Goethe-Institut Singapore, Goethe-Institut Singapur'),
(111429, 'https://ror.org/01mv71k12', 'no_lang_code', 1, 'https://ror.org/01mv71k12 Findmore Consulting, Findmore Consulting (Portugal)'),
(111430, 'https://ror.org/01mv9t934', 'en', 1, 'https://ror.org/01mv9t934 Ministry of Education of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½ę•™č‚²éƒØ'),
(111431, 'https://ror.org/01mvc0z38', 'tr', 1, 'https://ror.org/01mvc0z38 İzmir Akademi Derneği'),
(111432, 'https://ror.org/01mx16184', 'no_lang_code', 1, 'https://ror.org/01mx16184 Rovensa, Rovensa (Portugal)'),
(111433, 'https://ror.org/01mzwqv25', 'en', 1, 'https://ror.org/01mzwqv25 Portugal Football School'),
(111434, 'https://ror.org/01n029866', 'no_lang_code', 1, 'https://ror.org/01n029866 UCB Pharma (Belgium)'),
(111435, 'https://ror.org/01n313408', 'en', 1, 'https://ror.org/01n313408 Sister Nibedita Government General Degree College for Girls'),
(111436, 'https://ror.org/01n5r7t14', 'it', 1, 'https://ror.org/01n5r7t14 School of Freudian Psychoanalysis Scuola di Psicanalisi Freudiana'),
(111437, 'https://ror.org/01n8x4993', 'en', 1, 'https://ror.org/01n8x4993 Instituto PolitƩcnico de Coimbra Polytechnic Institute of Coimbra'),
(111438, 'https://ror.org/01nbken06', 'en', 1, 'https://ror.org/01nbken06 Abu Dhabi Stem Cells Center'),
(111439, 'https://ror.org/01nc8zs04', 'en', 1, 'https://ror.org/01nc8zs04 National Institute of Technology Hamirpur ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¹ą¤®ą„€ą¤°ą¤Ŗą„ą¤°'),
(111440, 'https://ror.org/01nd4jr17', 'en', 1, 'https://ror.org/01nd4jr17 University of Saba Region Ų¬Ų§Ł…Ų¹Ų© Ų§Ł‚Ł„ŁŠŁ… Ų³ŲØŲ£'),
(111441, 'https://ror.org/01nhj9647', 'en', 1, 'https://ror.org/01nhj9647 Japan Environmental Education Forum å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒę•™č‚²ćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(111442, 'https://ror.org/01nhjym26', 'pt', 1, 'https://ror.org/01nhjym26 Sociedade Portuguesa de ElectroquĆ­mica'),
(111443, 'https://ror.org/01nm77r92', 'de', 1, 'https://ror.org/01nm77r92 Institut PƤdagogische Psychologie Institute of Educational Psychology'),
(111444, 'https://ror.org/01nmh5h43', 'en', 1, 'https://ror.org/01nmh5h43 Federal Polytechnic, Ile-Oluji, Ondo State'),
(111445, 'https://ror.org/01nnar428', 'en', 1, 'https://ror.org/01nnar428 Center of Research in Mechanics Centre de recherche en mĆ©canique Ł…Ų±ŁƒŲ² Ų§Ł„ŲØŲ­ŁˆŲ« في الهندسة Ų§Ł„Ł…ŁŠŁƒŲ§Ł†ŁŠŁƒŁŠŲ©'),
(111446, 'https://ror.org/01npb8j56', 'no_lang_code', 1, 'https://ror.org/01npb8j56 Norconsult (Norway)'),
(111447, 'https://ror.org/01nrxwf90', 'en', 1, 'https://ror.org/01nrxwf90 Oilthigh Dhùn Èideann University of Edinburgh'),
(111448, 'https://ror.org/01ns4zj17', 'no_lang_code', 1, 'https://ror.org/01ns4zj17 Behavioral and Molecular Lab (Portugal)'),
(111449, 'https://ror.org/01nt5j435', 'en', 1, 'https://ror.org/01nt5j435 Institut für Raum- und Landschaftsentwicklung Institute for Spatial and Landscape Development'),
(111450, 'https://ror.org/01nxcd525', 'pt', 1, 'https://ror.org/01nxcd525 Laboratório de Plasmas Hipersónicos'),
(111451, 'https://ror.org/01nzbjb88', 'en', 1, 'https://ror.org/01nzbjb88 Eco Research'),
(111452, 'https://ror.org/01nzkd566', 'pt', 1, 'https://ror.org/01nzkd566 Centre for Neuroscience and Cell Biology Centro de NeurociĆŖncias e Biologia Celular'),
(111453, 'https://ror.org/01p0vsd73', 'en', 1, 'https://ror.org/01p0vsd73 CETT Barcelona School of Tourism, Hospitality and Gastronomy'),
(111454, 'https://ror.org/01p2tsc55', 'en', 1, 'https://ror.org/01p2tsc55 Al Wasl University'),
(111455, 'https://ror.org/01p6tkc71', 'no_lang_code', 1, 'https://ror.org/01p6tkc71 Portimonense Futebol SAD, Portimonense Futebol SAD (Portugal)'),
(111456, 'https://ror.org/01p8ehb87', 'en', 1, 'https://ror.org/01p8ehb87 Ministry of Health of the Russian Federation ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(111457, 'https://ror.org/01p9dcy47', 'en', 1, 'https://ror.org/01p9dcy47 PFA Pension, PFA Pension (Denmark)'),
(111458, 'https://ror.org/01p9mtd45', 'en', 1, 'https://ror.org/01p9mtd45 Paris-Saclay Applied Economics'),
(111459, 'https://ror.org/01p9rc392', 'en', 1, 'https://ror.org/01p9rc392 John Jay College of Criminal Justice'),
(111460, 'https://ror.org/01p9s2d84', 'es', 1, 'https://ror.org/01p9s2d84 Instituto Superior Tecnológico ITCA'),
(111461, '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'),
(111462, 'https://ror.org/01pawvf59', 'fr', 0, 'https://ror.org/01pawvf59 PrƩhistoire et Technologie'),
(111463, 'https://ror.org/01pb6n515', 'en', 1, 'https://ror.org/01pb6n515 Foundation for Information Society');
INSERT INTO `rors` VALUES
(111464, 'https://ror.org/01pc8e529', 'en', 1, 'https://ror.org/01pc8e529 Zaporizhia State Medical and Pharmaceutical University Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Гержавний меГико-фармацевтичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111465, 'https://ror.org/01pcb8y44', 'es', 1, 'https://ror.org/01pcb8y44 Instituto de Investigación en Paleobiología y Geología'),
(111466, 'https://ror.org/01pdam362', 'en', 1, 'https://ror.org/01pdam362 Institute for Solid State Physics and Optics SzilƔrdtestfizikai Ʃs Optikai IntƩzet'),
(111467, 'https://ror.org/01pdt0g30', 'en', 1, 'https://ror.org/01pdt0g30 Organization for Small & Medium Enterprises and Regional Innovation, JAPAN ē‹¬ē«‹č”Œę”æę³•äŗŗäø­å°ä¼ę„­åŸŗē›¤ę•“å‚™ę©Ÿę§‹'),
(111468, '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'),
(111469, 'https://ror.org/01pf2cj55', 'eu', 1, 'https://ror.org/01pf2cj55 Biophysics Institute Instituto Biofisika'),
(111470, 'https://ror.org/01ph0pk09', 'en', 1, 'https://ror.org/01ph0pk09 Japan Arts Council ē‹¬ē«‹č”Œę”æę³•äŗŗę—„ęœ¬čŠøč”“ę–‡åŒ–ęŒÆčˆˆä¼š'),
(111471, 'https://ror.org/01ph39d13', 'fr', 1, 'https://ror.org/01ph39d13 Laboratoire National de MƩtrologie et d''Essais National Laboratory of Metrology and Testing'),
(111472, 'https://ror.org/01pn4sd83', 'en', 1, 'https://ror.org/01pn4sd83 Springer Nature (Beijing, China)'),
(111473, 'https://ror.org/01pnt7129', 'en', 1, 'https://ror.org/01pnt7129 Nano Center Indonesia'),
(111474, 'https://ror.org/01pntf040', 'en', 1, 'https://ror.org/01pntf040 Ministry of Education and Research Utbildningsdepartementet'),
(111475, 'https://ror.org/01pq0fv11', 'en', 1, 'https://ror.org/01pq0fv11 Amagasaki Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå°¼å“Žåø‚åŒ»åø«ä¼š'),
(111476, 'https://ror.org/01pr72x76', 'en', 1, 'https://ror.org/01pr72x76 Hakujuji General Hospital ē¤¾ä¼šē¦ē„‰ę³•äŗŗē™½åå­—ä¼šē™½åå­—ē·åˆē—…é™¢'),
(111477, 'https://ror.org/01prvb521', 'es', 1, 'https://ror.org/01prvb521 Instituto Superior de Artes y Ciencias de la Comunicación'),
(111478, 'https://ror.org/01przfp05', 'en', 1, 'https://ror.org/01przfp05 University of Narowal'),
(111479, 'https://ror.org/01ps52c20', 'en', 1, 'https://ror.org/01ps52c20 The Apollo University'),
(111480, 'https://ror.org/01pt68m88', 'en', 1, 'https://ror.org/01pt68m88 Love Wildlife Foundation'),
(111481, 'https://ror.org/01ptp4v90', 'pt', 1, 'https://ror.org/01ptp4v90 Secretaria Regional de Agricultura e Pescas'),
(111482, 'https://ror.org/01pxchq54', 'en', 1, 'https://ror.org/01pxchq54 Parlement du Canada Parliament of Canada'),
(111483, 'https://ror.org/01pxwe438', 'en', 1, 'https://ror.org/01pxwe438 McGill University UniversitƩ McGill'),
(111484, 'https://ror.org/01pynjp12', 'en', 1, 'https://ror.org/01pynjp12 University of Algiers 3 Ų¬Ų§Ł…Ų¹Ų© الجزائر 3'),
(111485, 'https://ror.org/01pzqw594', 'en', 1, 'https://ror.org/01pzqw594 Department of Livestock Services ą¦Ŗą§ą¦°ą¦¾ą¦£ą¦æą¦øą¦®ą§ą¦Ŗą¦¦ ą¦…ą¦§ą¦æą¦¦ą¦Ŗą§ą¦¤ą¦°'),
(111486, 'https://ror.org/01q0xs158', 'no_lang_code', 1, 'https://ror.org/01q0xs158 Trinap Equipamentos Industriais (Portugal), Trinap Industrial Equipments'),
(111487, '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'),
(111488, 'https://ror.org/01q27p626', 'no_lang_code', 1, 'https://ror.org/01q27p626 Neurolixis (United States)'),
(111489, 'https://ror.org/01q3tbs38', 'en', 1, 'https://ror.org/01q3tbs38 King Abdullah University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ الله Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(111490, 'https://ror.org/01q4vax14', 'en', 1, 'https://ror.org/01q4vax14 Commonwealth of Virginia'),
(111491, 'https://ror.org/01q5ge486', 'fr', 1, 'https://ror.org/01q5ge486 Centre des MatƩriaux, Mines Paris, UniversitƩ PSL, Centre des MatƩriaux (MAT) Centre for material sciences, Mines Paris, PSL University, Centre for material sciences (MAT)'),
(111492, 'https://ror.org/01q6dzp07', 'en', 1, 'https://ror.org/01q6dzp07 College of Engineering Trivandrum'),
(111493, 'https://ror.org/01q76b368', 'fr', 1, 'https://ror.org/01q76b368 Institut Ɖcologie et Environnement'),
(111494, 'https://ror.org/01q81y572', 'en', 1, 'https://ror.org/01q81y572 Al-Irsyad Cilacap University Universitas Al-Irsyad Cilacap'),
(111495, 'https://ror.org/01q9hny69', 'it', 1, 'https://ror.org/01q9hny69 Maremma Natural History Museum Museo di Storia Naturale della Maremma'),
(111496, 'https://ror.org/01q9jet09', 'en', 1, 'https://ror.org/01q9jet09 Hakodate Municipal Hospital 市立函館病院'),
(111497, 'https://ror.org/01qat3289', 'no_lang_code', 1, 'https://ror.org/01qat3289 Eli Lilly (United States)'),
(111498, 'https://ror.org/01qepzr42', 'en', 1, 'https://ror.org/01qepzr42 British Broadcasting Corporation (United Kingdom)'),
(111499, 'https://ror.org/01qf62403', 'en', 1, 'https://ror.org/01qf62403 SUWA Central Hospital ēµ„åˆē«‹č«čØŖäø­å¤®ē—…é™¢'),
(111500, 'https://ror.org/01qf6yj86', 'no_lang_code', 1, 'https://ror.org/01qf6yj86 Medical Society of Entrecampos, Sociedade MƩdica de Entrecampos (Portugal)'),
(111501, 'https://ror.org/01qfx2848', 'no_lang_code', 1, 'https://ror.org/01qfx2848 Multinfor Equipamento e Manutenção Hospitalar (Portugal), Multinfor Hospital Equipment and Maintenance'),
(111502, 'https://ror.org/01qh72446', 'en', 1, 'https://ror.org/01qh72446 Japanese Animal Hospital Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©ē—…é™¢å”ä¼š'),
(111503, 'https://ror.org/01qm4sd11', 'en', 1, 'https://ror.org/01qm4sd11 International Tourism Center of Japan äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›č¦³å…‰ć‚µćƒ¼ćƒ“ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(111504, 'https://ror.org/01qmw3j63', 'no_lang_code', 1, 'https://ror.org/01qmw3j63 Evonik (Germany)'),
(111505, 'https://ror.org/01qn7cs15', 'en', 1, 'https://ror.org/01qn7cs15 Oficina del Censo de los Estados Unidos United States Census Bureau'),
(111506, 'https://ror.org/01qpscg90', 'en', 1, 'https://ror.org/01qpscg90 Ferox Therapeutics, Ferox Therapeutics (United States)'),
(111507, 'https://ror.org/01qqh8f81', 'pt', 1, 'https://ror.org/01qqh8f81 Observatório de Ciberjornalismo'),
(111508, 'https://ror.org/01qrn0494', 'en', 1, 'https://ror.org/01qrn0494 Ishikawa Sunrise Industries Creation Organization å…¬ē›Šč²”å›£ę³•äŗŗēŸ³å·ēœŒē”£ę„­å‰µå‡ŗę”Æę“ę©Ÿę§‹'),
(111509, 'https://ror.org/01qrts582', 'de', 1, 'https://ror.org/01qrts582 Rheinland-PfƤlzische Technische UniversitƤt Kaiserslautern-Landau'),
(111510, 'https://ror.org/01qtksf33', 'no_lang_code', 1, 'https://ror.org/01qtksf33 AtralCipan, AtralCipan (Portugal)'),
(111511, 'https://ror.org/01qvdmc93', 'en', 0, 'https://ror.org/01qvdmc93 Lutheran Theological Seminary at Gettysburg'),
(111512, 'https://ror.org/01qx94h42', 'pt', 1, 'https://ror.org/01qx94h42 Sociedade Portuguesa de Medicina Física e Reabilitação'),
(111513, 'https://ror.org/01qy36j97', 'pt', 1, 'https://ror.org/01qy36j97 Secretaria Regional de Agricultura e Pescas Direção Regional de Agricultura'),
(111514, 'https://ror.org/01qz8fw96', 'en', 0, 'https://ror.org/01qz8fw96 Lutheran Theological Seminary at Philadelphia'),
(111515, 'https://ror.org/01r159865', 'en', 1, 'https://ror.org/01r159865 "Silk Road" International University of Tourism and Cultural Heritage'),
(111516, 'https://ror.org/01r281910', 'en', 1, 'https://ror.org/01r281910 Tokyo Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½ēœ‹č­·å”ä¼š'),
(111517, 'https://ror.org/01r3j2c85', 'pt', 1, 'https://ror.org/01r3j2c85 Unidade de Investigação e Desenvolvimento de Nefrologia'),
(111518, 'https://ror.org/01r3kjq03', 'en', 1, 'https://ror.org/01r3kjq03 Abu Dhabi University Ų¬Ų§Ł…Ų¹Ų© ابوظبي'),
(111519, 'https://ror.org/01r490t98', 'en', 1, 'https://ror.org/01r490t98 Japan Society of Colour Material äø€čˆ¬ē¤¾å›£ę³•äŗŗč‰²ęå”ä¼š'),
(111520, 'https://ror.org/01r4q9n85', 'en', 1, 'https://ror.org/01r4q9n85 Universidade de Macau University of Macau'),
(111521, 'https://ror.org/01r5wky88', 'fr', 1, 'https://ror.org/01r5wky88 Pharmacologie et Pathologies Fragilisantes'),
(111522, 'https://ror.org/01r6gjy48', 'en', 1, 'https://ror.org/01r6gjy48 HauHau Research, HauHau Research (New Zealand)'),
(111523, 'https://ror.org/01rb31945', 'fr', 1, 'https://ror.org/01rb31945 Laboratoire Interdisciplinaire de Recherches "SociƩtƩs, SensibilitƩs, Soin"'),
(111524, 'https://ror.org/01rbbya36', 'es', 1, 'https://ror.org/01rbbya36 Instituto de Investigaciones Filosóficas'),
(111525, 'https://ror.org/01rbqr638', 'no_lang_code', 1, 'https://ror.org/01rbqr638 Elkem (Norway)'),
(111526, 'https://ror.org/01rd8n845', 'en', 1, 'https://ror.org/01rd8n845 Institut für Biochemie Institute of Biochemistry'),
(111527, 'https://ror.org/01reat095', 'en', 1, 'https://ror.org/01reat095 Kinder Institute for Urban Research'),
(111528, 'https://ror.org/01rf0w704', 'fr', 0, 'https://ror.org/01rf0w704 Economic Interest Group Groupement d''Intérêt Economique'),
(111529, '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'),
(111530, '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'),
(111531, 'https://ror.org/01rk35k63', 'fr', 1, 'https://ror.org/01rk35k63 Lyongo unibertsitatea UniversitƩ de Lyon'),
(111532, 'https://ror.org/01rm6cx93', 'pt', 1, 'https://ror.org/01rm6cx93 Vigararia de Oeiras'),
(111533, 'https://ror.org/01rpcwa78', 'en', 1, 'https://ror.org/01rpcwa78 Hajjah University Ų¬Ų§Ł…Ų¹Ų© Ų­Ų¬Ų©'),
(111534, '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)'),
(111535, 'https://ror.org/01rq5e797', 'en', 1, 'https://ror.org/01rq5e797 ERN EURACAN'),
(111536, 'https://ror.org/01rrxb840', 'no_lang_code', 1, 'https://ror.org/01rrxb840 Guam Sea Grant'),
(111537, 'https://ror.org/01rs0zz87', 'en', 1, 'https://ror.org/01rs0zz87 All India Institute of Medical Sciences Bhopal'),
(111538, 'https://ror.org/01rx4qw44', 'fr', 1, 'https://ror.org/01rx4qw44 Institut de Recherche en Informatique de Toulouse Toulouse Institute of Computer Science Research'),
(111539, 'https://ror.org/01rxcdb50', 'en', 1, 'https://ror.org/01rxcdb50 Laboratories of Image Information Science and Technology č²”å›£ę³•äŗŗć‚¤ćƒ”ćƒ¼ć‚øęƒ…å ±ē§‘å­¦ē ”ē©¶ę‰€'),
(111540, 'https://ror.org/01ry9c816', 'en', 1, 'https://ror.org/01ry9c816 Changjiang River Scientific Research Institute é•æę±Ÿę°“åˆ©å§”å‘˜ä¼šé•æę±Ÿē§‘å­¦é™¢'),
(111541, 'https://ror.org/01ryhrp48', 'no_lang_code', 1, 'https://ror.org/01ryhrp48 Jorge Evandro Alves Unip (Portugal)'),
(111542, 'https://ror.org/01ryk1543', 'en', 1, 'https://ror.org/01ryk1543 Prifysgol Southampton University of Southampton'),
(111543, 'https://ror.org/01s1wh718', 'en', 1, 'https://ror.org/01s1wh718 Okayama Prefectural Technology Center for Agriculture, Forestry and Fisheries å²”å±±ēœŒč¾²ęž—ę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(111544, 'https://ror.org/01s3q7074', 'en', 1, 'https://ror.org/01s3q7074 Sree Narayana College, Punalur'),
(111545, 'https://ror.org/01s57k749', 'en', 1, 'https://ror.org/01s57k749 ę–°åŠ å”ē¤¾ē§‘å¤§å­¦'),
(111546, 'https://ror.org/01s62z461', 'en', 1, 'https://ror.org/01s62z461 Australian Coral Reef Society'),
(111547, 'https://ror.org/01s8j4r12', 'en', 1, 'https://ror.org/01s8j4r12 State Herbarium of South Australia'),
(111548, 'https://ror.org/01s91ey96', 'en', 1, 'https://ror.org/01s91ey96 Renaissance Computing Institute'),
(111549, 'https://ror.org/01s96w554', 'en', 1, 'https://ror.org/01s96w554 St. Xavier''s College'),
(111550, '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'),
(111551, 'https://ror.org/01sf57728', 'en', 1, 'https://ror.org/01sf57728 Smartgridslab'),
(111552, 'https://ror.org/01sfyq865', 'en', 1, 'https://ror.org/01sfyq865 Madigan Army Medical Center'),
(111553, 'https://ror.org/01shbcv79', 'pt', 1, 'https://ror.org/01shbcv79 Museu MonogrƔfico de Conimbriga'),
(111554, 'https://ror.org/01shwkq60', 'en', 1, 'https://ror.org/01shwkq60 Kryachkov Novosibirsk State University of Architecture, Design and Arts ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹, Гизайна Šø ŠøŃŠŗŃƒŃŃŃ‚Š² имени А.Š”. ŠšŃ€ŃŃ‡ŠŗŠ¾Š²Š°'),
(111555, 'https://ror.org/01skt4w74', 'en', 1, 'https://ror.org/01skt4w74 Beijing Institute of Technology åŒ—äŗ¬ē†å·„å¤§å­¦'),
(111556, 'https://ror.org/01sn0bt42', 'en', 1, 'https://ror.org/01sn0bt42 Animal Health Research Center'),
(111557, 'https://ror.org/01spe0w42', 'pt', 1, 'https://ror.org/01spe0w42 Laboratório de Ɠptica Lasers e Sistemas'),
(111558, 'https://ror.org/01sq4yt06', 'en', 1, 'https://ror.org/01sq4yt06 59th Medical Wing'),
(111559, 'https://ror.org/01sqdef20', 'en', 1, 'https://ror.org/01sqdef20 Centre for Eye Research Australia'),
(111560, 'https://ror.org/01sqgq073', 'en', 1, 'https://ror.org/01sqgq073 Future Cities Institute'),
(111561, 'https://ror.org/01ss3xk05', 'en', 1, 'https://ror.org/01ss3xk05 National University of Science and Technology'),
(111562, 'https://ror.org/01ssxvy26', 'en', 1, 'https://ror.org/01ssxvy26 CIMEOS - Communications, MƩdiations, Organisations, Savoirs'),
(111563, 'https://ror.org/01svqjv39', 'en', 1, 'https://ror.org/01svqjv39 Universitetssenteret pƄ Kjeller University Graduate Center'),
(111564, 'https://ror.org/01swxpd40', 'no_lang_code', 1, 'https://ror.org/01swxpd40 ADDSOLUTIONS, ADDSOLUTIONS (Portugal)'),
(111565, 'https://ror.org/01swzsf04', 'en', 1, 'https://ror.org/01swzsf04 University of Geneva Università di Ginevra Université de Genève'),
(111566, 'https://ror.org/01sx1pm50', 'no_lang_code', 1, 'https://ror.org/01sx1pm50 Rockwell Automation (United States)'),
(111567, 'https://ror.org/01sxyfe19', 'en', 1, 'https://ror.org/01sxyfe19 Space & Earth Geodetic Analysis Laboratory'),
(111568, 'https://ror.org/01syakj07', 'en', 1, 'https://ror.org/01syakj07 Sapporo Tokusyukai Medecal Corporation åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šęœ­å¹Œå¾³ę“²ä¼šē—…é™¢'),
(111569, 'https://ror.org/01t0a1151', 'en', 1, 'https://ror.org/01t0a1151 Research Infrastructure for Experiments at CERN VýzkumnÔ infrastruktura pro experimenty v CERN'),
(111570, 'https://ror.org/01t0p2n85', 'pt', 1, 'https://ror.org/01t0p2n85 Centimfe, Centro Tecnológico da Indústria de Moldes, Ferramentas Especiais e PlÔsticos'),
(111571, 'https://ror.org/01t3pqg89', 'es', 1, 'https://ror.org/01t3pqg89 Centro de Normalización Lingüística de la Lengua de Signos Española'),
(111572, 'https://ror.org/01t4ttr56', 'en', 1, 'https://ror.org/01t4ttr56 Center for Scalable Data Analytics and Artificial Intelligence'),
(111573, 'https://ror.org/01t5mwx02', 'en', 1, 'https://ror.org/01t5mwx02 Foundation for Senior Citizens'' Housing äø€čˆ¬č²”å›£ę³•äŗŗé«˜é½¢č€…ä½å®…č²”å›£'),
(111574, 'https://ror.org/01t5wp533', 'en', 1, 'https://ror.org/01t5wp533 Good Ventures'),
(111575, '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'),
(111576, 'https://ror.org/01t6wkc63', 'pt', 1, 'https://ror.org/01t6wkc63 CĆ¢mara Municipal da Maia'),
(111577, 'https://ror.org/01t7fx814', 'en', 1, 'https://ror.org/01t7fx814 Japan Research Foundation for Clinical Pharmacology å…¬ē›Šč²”å›£ę³•äŗŗč‡ØåŗŠč–¬ē†ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(111578, 'https://ror.org/01t7shc19', 'no_lang_code', 1, 'https://ror.org/01t7shc19 Atena Equity Partners, Atena Equity Partners (Portugal), Atena Equity Partners SCR SA'),
(111579, 'https://ror.org/01t7xbe38', 'en', 1, 'https://ror.org/01t7xbe38 Research Institute of Marine Invertebrates å…¬ē›Šč²”å›£ę³•äŗŗę°“ē”£ē„”č„Šę¤Žå‹•ē‰©ē ”ē©¶ę‰€'),
(111580, 'https://ror.org/01t9d4c21', 'en', 0, 'https://ror.org/01t9d4c21 Tokyo Shinagawa Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·‘é‡Žä¼šę±äŗ¬å“å·ē—…é™¢'),
(111581, 'https://ror.org/01tavxj45', 'pt', 1, 'https://ror.org/01tavxj45 Federação das Indústrias Portuguesas Agro-Alimentares'),
(111582, 'https://ror.org/01td8v330', 'en', 1, 'https://ror.org/01td8v330 Oxford BioDynamics, Oxford BioDynamics (United Kingdom), Oxford BioDynamics Plc'),
(111583, 'https://ror.org/01tez1r52', 'en', 1, 'https://ror.org/01tez1r52 PSG College of Technology'),
(111584, 'https://ror.org/01tfw4958', 'de', 1, 'https://ror.org/01tfw4958 Centre for Digitalisation and Education Zentrum Digitalisierung und Bildung'),
(111585, 'https://ror.org/01tgfh512', 'en', 1, 'https://ror.org/01tgfh512 Fukuoka Asian Urban Research Center å…¬ē›Šč²”å›£ę³•äŗŗē¦å²”ć‚¢ć‚øć‚¢éƒ½åø‚ē ”ē©¶ę‰€'),
(111586, 'https://ror.org/01tggzh22', 'es', 1, 'https://ror.org/01tggzh22 Universidad Tecnológica de la Región Centro de Coahuila'),
(111587, 'https://ror.org/01tgyzw49', 'en', 1, 'https://ror.org/01tgyzw49 National University of Singapore ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®¤ąÆ‡ą®šą®æą®Æą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ę–°åŠ å”å›½ē«‹å¤§å­¦'),
(111588, 'https://ror.org/01tmp8f25', 'es', 1, 'https://ror.org/01tmp8f25 National Autonomous University of Mexico Universidad Nacional Autónoma de México'),
(111589, 'https://ror.org/01tn0em45', 'en', 1, 'https://ror.org/01tn0em45 Digital Content Association of Japan äø€čˆ¬č²”å›£ę³•äŗŗćƒ‡ć‚øć‚æćƒ«ć‚³ćƒ³ćƒ†ćƒ³ćƒ„å”ä¼š'),
(111590, 'https://ror.org/01tqb7m13', 'en', 1, 'https://ror.org/01tqb7m13 WCRP-ESMO International Project Office'),
(111591, 'https://ror.org/01ts2hw13', 'pt', 1, 'https://ror.org/01ts2hw13 Caritas Diocesana de Coimbra'),
(111592, 'https://ror.org/01tsa0x55', 'fr', 1, 'https://ror.org/01tsa0x55 Environnements et PalƩoenvironnements OcƩaniques et Continentaux'),
(111593, 'https://ror.org/01tts0094', 'en', 1, 'https://ror.org/01tts0094 Termez University of Economics and Service'),
(111594, 'https://ror.org/01tw4ag74', 'pt', 1, 'https://ror.org/01tw4ag74 Casa Fernando Pessoa'),
(111595, 'https://ror.org/01tzvvp98', 'en', 1, 'https://ror.org/01tzvvp98 Academia.edu Journals'),
(111596, 'https://ror.org/01v0znr74', 'fr', 1, 'https://ror.org/01v0znr74 Ɖtudes approfondies des sociĆ©tĆ©s traditionnelles et contemporaines en OcĆ©anie'),
(111597, 'https://ror.org/01v1wyw29', 'it', 1, 'https://ror.org/01v1wyw29 Confederazione Generale dell’Agricoltura Italiana, Confederazione Generale dell’Agricoltura Italiana (Italy)'),
(111598, 'https://ror.org/01v29qb04', 'en', 1, 'https://ror.org/01v29qb04 Durham University'),
(111599, 'https://ror.org/01v2x9m21', 'en', 1, 'https://ror.org/01v2x9m21 Baqai Medical University ŲØŁ‚Ų§Ų¦ŪŒ Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(111600, 'https://ror.org/01v376g59', 'no_lang_code', 1, 'https://ror.org/01v376g59 Fresenius (Germany) Fresenius SE & Co. KGaA'),
(111601, 'https://ror.org/01v420674', 'ro', 1, 'https://ror.org/01v420674 Stațiunea de Cercetare-Dezvoltare pentru Pomicultură Bistrița'),
(111602, 'https://ror.org/01v5dbc85', 'en', 1, 'https://ror.org/01v5dbc85 National Institute for Nigerian Languages'),
(111603, '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'),
(111604, 'https://ror.org/01v5xwf23', 'no_lang_code', 1, 'https://ror.org/01v5xwf23 NestlƩ (Switzerland)'),
(111605, 'https://ror.org/01v743b94', 'en', 1, 'https://ror.org/01v743b94 Chugai Pharmaceutical Co., Ltd., Chugai Pharmaceutical Co., Ltd. (Japan) äø­å¤–č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(111606, 'https://ror.org/01vbs6145', 'en', 1, 'https://ror.org/01vbs6145 Japan Fisheries Information Service Center äø€čˆ¬ē¤¾å›£ę³•äŗŗę¼ę„­ęƒ…å ±ć‚µćƒ¼ćƒ“ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(111607, 'https://ror.org/01vcqp636', 'pt', 1, 'https://ror.org/01vcqp636 Direção Regional dos Recursos Florestais'),
(111608, 'https://ror.org/01vff2n71', 'en', 1, 'https://ror.org/01vff2n71 Value for Health CoLAB'),
(111609, 'https://ror.org/01vfw8847', 'en', 1, 'https://ror.org/01vfw8847 Ministry of Agriculture Zemkopības ministrija'),
(111610, 'https://ror.org/01vhnrs90', 'en', 1, 'https://ror.org/01vhnrs90 Max Planck Institute for Astronomy Max-Planck-Institut für Astronomie'),
(111611, 'https://ror.org/01vj2tr26', 'en', 1, 'https://ror.org/01vj2tr26 Jabatan Muzium Sarawak Sarawak Museum Department'),
(111612, 'https://ror.org/01vjxh080', 'no_lang_code', 1, 'https://ror.org/01vjxh080 Affidea Portugal, Affidea Portugal (Portugal)'),
(111613, 'https://ror.org/01vnxev61', 'no_lang_code', 1, 'https://ror.org/01vnxev61 Bayer (Canada)'),
(111614, 'https://ror.org/01vp99c97', 'es', 1, 'https://ror.org/01vp99c97 College of Mexico El Colegio de MƩxico'),
(111615, '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'),
(111616, 'https://ror.org/01vrybr67', 'en', 1, 'https://ror.org/01vrybr67 Louis Stokes Cleveland VA Medical Center'),
(111617, 'https://ror.org/01vt7w207', 'id', 1, 'https://ror.org/01vt7w207 Universitas PGRI Madiun, Universitas Persatuan Guru Republik Indonesia Madiun'),
(111618, 'https://ror.org/01vv1bg04', 'en', 1, 'https://ror.org/01vv1bg04 Sri Sairam College of Engineering'),
(111619, 'https://ror.org/01vvnmw35', 'en', 1, 'https://ror.org/01vvnmw35 Forschungsinstitut für Nachhaltigkeit am GFZ Research Institute for Sustainability at GFZ'),
(111620, 'https://ror.org/01vwxpj86', 'en', 1, 'https://ror.org/01vwxpj86 Amhara Agricultural Research Institute'),
(111621, 'https://ror.org/01vx35703', 'en', 1, 'https://ror.org/01vx35703 East Carolina University Universidad del Este de Carolina'),
(111622, 'https://ror.org/01vzd2352', 'pt', 1, 'https://ror.org/01vzd2352 Crescer na Maior Associação de Intervenção ComunitÔria'),
(111623, 'https://ror.org/01w176078', 'fr', 1, 'https://ror.org/01w176078 GƩopƓle du Pacifique Sud'),
(111624, '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'),
(111625, 'https://ror.org/01w2xgk13', 'en', 1, 'https://ror.org/01w2xgk13 Puducherry Technological University'),
(111626, 'https://ror.org/01w3k3276', 'pt', 1, 'https://ror.org/01w3k3276 Centro de Estudos Africanos'),
(111627, 'https://ror.org/01w4gn737', 'en', 1, 'https://ror.org/01w4gn737 All India Institute of Medical Sciences, Nagpur'),
(111628, 'https://ror.org/01w5x0z26', 'pt', 1, 'https://ror.org/01w5x0z26 Sociedade Portuguesa de Neurocirurgia'),
(111629, 'https://ror.org/01w61pg27', 'en', 1, 'https://ror.org/01w61pg27 Pordis, Pordis (United States)'),
(111630, 'https://ror.org/01w64ht88', 'en', 1, 'https://ror.org/01w64ht88 Vienna BioCenter Core Facilities'),
(111631, 'https://ror.org/01w6gdg13', 'pt', 1, 'https://ror.org/01w6gdg13 Centro de Biotecnologia e QuĆ­mica Fina'),
(111632, 'https://ror.org/01wdfe214', 'pt', 1, 'https://ror.org/01wdfe214 AquaValor Centro de Valorização e Transferência de Tecnologia da Água'),
(111633, 'https://ror.org/01wdxt577', 'en', 1, 'https://ror.org/01wdxt577 Chubu Gakuin Junior College äø­éƒØå­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(111634, 'https://ror.org/01wf12v72', 'en', 1, 'https://ror.org/01wf12v72 University of Media, Arts and Communication'),
(111635, 'https://ror.org/01wgfva68', 'es', 1, 'https://ror.org/01wgfva68 National University of Entre Rios Universidad Nacional de Entre RĆ­os'),
(111636, 'https://ror.org/01wgq9h91', 'en', 1, 'https://ror.org/01wgq9h91 Scientific Academy for Service Technology (ServTech)'),
(111637, 'https://ror.org/01wh89t26', 'pt', 1, 'https://ror.org/01wh89t26 Centro Criatividade Digital'),
(111638, 'https://ror.org/01wvnp782', 'en', 1, 'https://ror.org/01wvnp782 De Montfort University Kazakhstan Де ŠœŠ¾Š½Ń„орт ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½'),
(111639, 'https://ror.org/01wvs2n51', 'en', 1, 'https://ror.org/01wvs2n51 The Japanese Society for Quality Control äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å“č³Ŗē®”ē†å­¦ä¼š'),
(111640, 'https://ror.org/01wvydd52', 'en', 1, 'https://ror.org/01wvydd52 Comprehensive Research Organization for Science and Technology, Yamanashi Prefectural Government å±±ę¢ØēœŒē·åˆē†å·„å­¦ē ”ē©¶ę©Ÿę§‹'),
(111641, 'https://ror.org/01ww30x54', 'en', 1, 'https://ror.org/01ww30x54 Public Tomioka General Hospital å…¬ē«‹åÆŒå²”ē·åˆē—…é™¢'),
(111642, 'https://ror.org/01wytk422', 'en', 1, 'https://ror.org/01wytk422 State Institution Ā«Marzieiev Institute for Public Health (IPH) of the National Academy of Medical Sciences of UkraineĀ» ДУ Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ¾Š³Š¾ Š·Š“Š¾Ń€Š¾Š²ā€™Ń ім. Šž.М. ŠœŠ°Ń€Š·Ń”Ń”Š²Š° ŠŠŠœŠ України»'),
(111643, 'https://ror.org/01x19ms63', 'pt', 1, 'https://ror.org/01x19ms63 EurolĆ­nguas'),
(111644, 'https://ror.org/01x2k2x19', 'no_lang_code', 1, 'https://ror.org/01x2k2x19 Epicentre (South Africa)'),
(111645, 'https://ror.org/01x6n3581', 'en', 1, 'https://ror.org/01x6n3581 Singapore-ETH Centre'),
(111646, 'https://ror.org/01x6z5t49', 'fr', 1, 'https://ror.org/01x6z5t49 FƩdƩration de Recherche Spectroscopies de PhotoƩmission'),
(111647, 'https://ror.org/01xb7t232', 'en', 1, 'https://ror.org/01xb7t232 KeAi Communications Co., Ltd., KeAi Communications Co., Ltd. (China) åŒ—äŗ¬ē§‘ēˆ±ę£®č“ę–‡åŒ–ä¼ ę’­ęœ‰é™å…¬åø'),
(111648, 'https://ror.org/01xd6q208', 'en', 1, 'https://ror.org/01xd6q208 Koch Institute for Integrative Cancer Research At MIT'),
(111649, 'https://ror.org/01xdqrp08', 'no_lang_code', 1, 'https://ror.org/01xdqrp08 Pfizer (United States)'),
(111650, 'https://ror.org/01xf8ec44', 'en', 1, 'https://ror.org/01xf8ec44 NSF National eXtreme Ultrafast Science Facility'),
(111651, 'https://ror.org/01xgfwb48', 'en', 1, 'https://ror.org/01xgfwb48 United States Cyberspace Capabilities Center'),
(111652, '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'),
(111653, 'https://ror.org/01xgnvv94', 'pt', 1, 'https://ror.org/01xgnvv94 OPEN - Associação para Oportunidades Específicas de Negócio'),
(111654, 'https://ror.org/01xh2mr27', 'en', 1, 'https://ror.org/01xh2mr27 Revvity Gene Delivery, Revvity Gene Delivery (Germany)'),
(111655, 'https://ror.org/01xj0n090', 'en', 1, 'https://ror.org/01xj0n090 Sociedad para el Desarrollo Regional de Cantabria Sodercan'),
(111656, 'https://ror.org/01xj2hh02', 'no_lang_code', 1, 'https://ror.org/01xj2hh02 MBA Lisboa, MBA Lisboa (Portugal), MBA Lisbon'),
(111657, 'https://ror.org/01xjv7358', 'en', 1, 'https://ror.org/01xjv7358 Japan Synchrotron Radiation Research Institute å…¬ē›Šč²”å›£ę³•äŗŗé«˜č¼åŗ¦å…‰ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(111658, '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'),
(111659, 'https://ror.org/01xkgze42', 'id', 1, 'https://ror.org/01xkgze42 Universitas Harapan Medan'),
(111660, 'https://ror.org/01xsqw823', 'no_lang_code', 1, 'https://ror.org/01xsqw823 GlaxoSmithKline (United Kingdom)'),
(111661, 'https://ror.org/01xtthb56', 'en', 1, 'https://ror.org/01xtthb56 Oslon Yliopisto Universitetet i Oslo University of Oslo'),
(111662, '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'),
(111663, 'https://ror.org/01xyjyt81', 'fr', 1, 'https://ror.org/01xyjyt81 Centre de Recherches de l''Institut des Hautes Ɖtudes Internationales'),
(111664, 'https://ror.org/01xz39a70', 'es', 1, 'https://ror.org/01xz39a70 Comisión Nacional de Energía Atómica National Atomic Energy Commission'),
(111665, 'https://ror.org/01y01jq30', 'de', 1, 'https://ror.org/01y01jq30 Dresden College of Music Hochschule für Musik Dresden'),
(111666, 'https://ror.org/01y05p716', 'es', 1, 'https://ror.org/01y05p716 Academia Nacional de Investigación en Trabajo Social, Acanits'),
(111667, 'https://ror.org/01y0anq30', 'en', 1, 'https://ror.org/01y0anq30 Nippon Association of Consumer Specialists å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę¶ˆč²»ē”Ÿę“»ć‚¢ćƒ‰ćƒć‚¤ć‚¶ćƒ¼ćƒ»ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆćƒ»ē›øč«‡å“”å”ä¼š'),
(111668, 'https://ror.org/01y2jtd41', 'en', 1, 'https://ror.org/01y2jtd41 Universidad de Wisconsin-Madison University of Wisconsin–Madison UniversitĆ© du Wisconsin Ć  Madison'),
(111669, 'https://ror.org/01y2mzv68', 'en', 1, 'https://ror.org/01y2mzv68 Agricultural Engineering Research Institute معهد بحوث الهندسة Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(111670, 'https://ror.org/01y34t753', 'en', 1, 'https://ror.org/01y34t753 First Institute of Oceanography'),
(111671, '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'),
(111672, 'https://ror.org/01y54h464', 'en', 1, 'https://ror.org/01y54h464 Japan Skating Federation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¹ć‚±ćƒ¼ćƒˆé€£ē›Ÿ'),
(111673, 'https://ror.org/01y5vq430', 'pt', 1, 'https://ror.org/01y5vq430 Sindicato dos Enfermeiros Portugueses'),
(111674, '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'),
(111675, 'https://ror.org/01y81a911', 'en', 1, 'https://ror.org/01y81a911 Missenyi District Council'),
(111676, 'https://ror.org/01yb6xh37', 'en', 1, 'https://ror.org/01yb6xh37 World Health Organization - Bangladesh'),
(111677, 'https://ror.org/01yc8eq25', 'en', 1, 'https://ror.org/01yc8eq25 Spanish Clinical Research Network'),
(111678, 'https://ror.org/01ydp2x12', 'fr', 1, 'https://ror.org/01ydp2x12 Centre Procédés, Energies Renouvelables et Systèmes Energétiques, Mines Paris, Université PSL, Centre Procédés Energies Renouvelables et Systèmes Energétiques (PERSEE) Centre for Processes, Renewable Energies and Energy Systems, Mines Paris, PSL University, Centre for processes, renewable energies and energy systems (PERSEE)'),
(111679, 'https://ror.org/01yemhm44', 'no_lang_code', 1, 'https://ror.org/01yemhm44 CTI Clinical Trial and Consulting Services Lisbon, Clinical Trial and Consulting (Portugal)'),
(111680, 'https://ror.org/01yfjr974', 'pt', 1, 'https://ror.org/01yfjr974 Dentavis Avis Clinic Dentavis ClĆ­nica de Avis Lda'),
(111681, 'https://ror.org/01yfrpn34', 'en', 1, 'https://ror.org/01yfrpn34 Institut für Denkmalpflege und historische Bauforschung IDB Institute for Preservation and Construction History'),
(111682, 'https://ror.org/01ygjc434', 'pt', 1, 'https://ror.org/01ygjc434 Patriarcado de Lisboa'),
(111683, 'https://ror.org/01yhr7f48', 'en', 1, 'https://ror.org/01yhr7f48 Association Nationale des Centres d''amitiƩ National Association of Friendship Centres'),
(111684, 'https://ror.org/01yjngp91', 'en', 1, 'https://ror.org/01yjngp91 Japan Bridge Engineering Center äø€čˆ¬č²”å›£ę³•äŗŗę©‹ę¢čŖæęŸ»ä¼š'),
(111685, 'https://ror.org/01ymbe816', 'pt', 1, 'https://ror.org/01ymbe816 Centro de Física e Investigação Tecnológica'),
(111686, 'https://ror.org/01yp9g959', 'en', 1, 'https://ror.org/01yp9g959 Prifysgol Ulster University of Ulster'),
(111687, 'https://ror.org/01ys43y82', 'pt', 1, 'https://ror.org/01ys43y82 Sociedade Portuguesa de CƩlulas Estaminais e Terapia Celular'),
(111688, 'https://ror.org/01ys5nb92', 'pt', 1, 'https://ror.org/01ys5nb92 Tapada Nacional de Mafra'),
(111689, 'https://ror.org/01yteb360', 'en', 1, 'https://ror.org/01yteb360 Delta State University of Science and Technology Ozoro'),
(111690, 'https://ror.org/01yv3d743', 'en', 1, 'https://ror.org/01yv3d743 Japan Oil Chemists'' Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę²¹åŒ–å­¦ä¼š'),
(111691, 'https://ror.org/01yvj5k91', 'fr', 1, 'https://ror.org/01yvj5k91 Direction de la Recherche Fondamentale'),
(111692, 'https://ror.org/01ywqnr15', 'en', 1, 'https://ror.org/01ywqnr15 Japan Association for Techno-innovation in Agriculture, Forestry and Fisheries å…¬ē›Šē¤¾å›£ę³•äŗŗč¾²ęž—ę°“ē”£ćƒ»é£Ÿå“ē”£ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(111693, 'https://ror.org/01yx7av22', 'fr', 1, 'https://ror.org/01yx7av22 Histoire et Sources des Mondes Antiques'),
(111694, 'https://ror.org/01yzad698', 'en', 1, 'https://ror.org/01yzad698 Institute of Molecular Physics of the Polish Academy of Sciences Instytut Fizyki Molekularnej Polskiej Akademii Nauk'),
(111695, 'https://ror.org/01yzs6492', 'en', 1, 'https://ror.org/01yzs6492 Canadian Coast Guard Garde cÓtière canadienne'),
(111696, 'https://ror.org/01z0kpz83', 'en', 1, 'https://ror.org/01z0kpz83 Japan Industrial Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē”£ę„­å”ä¼š'),
(111697, 'https://ror.org/01z1vct10', 'en', 1, 'https://ror.org/01z1vct10 City of Hope'),
(111698, 'https://ror.org/01z2efh66', 'en', 1, 'https://ror.org/01z2efh66 Airbus Group Singapore Pte Ltd, Airbus Group Singapore Pte Ltd (Singapore)'),
(111699, 'https://ror.org/01z6w7773', 'en', 1, 'https://ror.org/01z6w7773 Institute of Engineering Mechanics, China Earthquake Administration äø­å›½åœ°éœ‡å±€å·„ēØ‹åŠ›å­¦ē ”ē©¶ę‰€'),
(111700, 'https://ror.org/01z745x67', 'en', 1, 'https://ror.org/01z745x67 The Laser Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ¬ćƒ¼ć‚¶ćƒ¼å­¦ä¼š'),
(111701, 'https://ror.org/01zcpa714', 'en', 1, 'https://ror.org/01zcpa714 Michigan Medicine Système de santé de l''université du michigan'),
(111702, 'https://ror.org/01zcrn013', 'en', 1, 'https://ror.org/01zcrn013 Nippon Electric Control Equipment Industries Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę°—åˆ¶å¾”ę©Ÿå™Øå·„ę„­ä¼š'),
(111703, 'https://ror.org/01zctcs90', 'no_lang_code', 1, 'https://ror.org/01zctcs90 BP (United Kingdom)'),
(111704, 'https://ror.org/01zf4xe83', 'pt', 1, 'https://ror.org/01zf4xe83 Associação Para o Desenvolvimento da Engenharia Química'),
(111705, 'https://ror.org/01zh80k81', 'en', 1, 'https://ror.org/01zh80k81 Hungarian University of Sports Science'),
(111706, 'https://ror.org/01zkayc13', 'en', 1, 'https://ror.org/01zkayc13 Kawanishi City Hospital åø‚ē«‹å·č„æē—…é™¢'),
(111707, 'https://ror.org/01zkghx44', 'en', 1, 'https://ror.org/01zkghx44 Georgia Institute of Technology Instituto de TecnologĆ­a de Georgia'),
(111708, 'https://ror.org/01znkr924', 'en', 1, 'https://ror.org/01znkr924 Mahidol University ดหาวณทยาคัยดหณดค'),
(111709, 'https://ror.org/01zp6xd43', 'en', 1, 'https://ror.org/01zp6xd43 The People''s Government of Liaoning Province č¾½å®ēœäŗŗę°‘ę”æåŗœ'),
(111710, 'https://ror.org/01zpw4h31', 'en', 1, 'https://ror.org/01zpw4h31 Sousen Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é¦Øä¼šē·ę³‰ē—…é™¢'),
(111711, 'https://ror.org/01ztxwq91', 'en', 1, 'https://ror.org/01ztxwq91 Skin Research Institute of Singapore'),
(111712, 'https://ror.org/01zvj7w48', 'no_lang_code', 1, 'https://ror.org/01zvj7w48 Bonera Group, Bonera Group (Portugal)'),
(111713, 'https://ror.org/01zy07c70', 'de', 1, 'https://ror.org/01zy07c70 National Center for Tumor Diseases Partner Site Dresden Nationales Centrum für Tumorerkrankungen Dresden'),
(111714, 'https://ror.org/01zy52m07', 'pt', 1, 'https://ror.org/01zy52m07 Luz SaĆŗde SA'),
(111715, 'https://ror.org/02008s973', 'en', 1, 'https://ror.org/02008s973 Govt. College Mananthavady'),
(111716, 'https://ror.org/0200bd281', 'en', 1, 'https://ror.org/0200bd281 Asahikawa Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—­å·åø‚åŒ»åø«ä¼š'),
(111717, 'https://ror.org/0200cc312', 'fr', 1, 'https://ror.org/0200cc312 PersƩe'),
(111718, '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'),
(111719, 'https://ror.org/0201axf80', 'pt', 1, 'https://ror.org/0201axf80 AlmaScience'),
(111720, 'https://ror.org/02029th93', 'en', 1, 'https://ror.org/02029th93 Australian University, Kuwait'),
(111721, 'https://ror.org/0206wcs06', 'en', 1, 'https://ror.org/0206wcs06 Urawa Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ¦å’ŒåŒ»åø«ä¼š'),
(111722, 'https://ror.org/0207ad724', 'en', 1, 'https://ror.org/0207ad724 Universidad de Wake Forest UniversitƩ de wake forest Wake Forest University'),
(111723, 'https://ror.org/0208ges23', 'en', 1, 'https://ror.org/0208ges23 ERN RITA'),
(111724, 'https://ror.org/0208vgz68', 'fi', 1, 'https://ror.org/0208vgz68 Lappeenrannan-Lahden teknillinen yliopisto, Lappeenranta-Lahti University of Technology'),
(111725, 'https://ror.org/0209md279', 'en', 1, 'https://ror.org/0209md279 Portuguese Clinical Research Infrastructure Network'),
(111726, 'https://ror.org/020atbp69', 'en', 1, 'https://ror.org/020atbp69 Children''s Memorial Health Institute'),
(111727, 'https://ror.org/020cdve92', 'fr', 1, 'https://ror.org/020cdve92 Centre de Recherche en Informatique, Mines Paris, UniversitƩ PSL, Centre de Recherche en Informatique (CRI) Mines Paris, PSL University, Centre for computer science (CRI)'),
(111728, 'https://ror.org/020cm6143', 'fr', 1, 'https://ror.org/020cm6143 Laboratoire de recherches IntƩgratives en Neurosciences et psychologie Cognitive'),
(111729, 'https://ror.org/020cr8c43', 'en', 1, 'https://ror.org/020cr8c43 National Institute of Technology Arunachal Pradesh ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤…ą¤°ą„ą¤£ą¤¾ą¤šą¤² ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶)'),
(111730, 'https://ror.org/020e7ee92', 'es', 1, 'https://ror.org/020e7ee92 Instituto de Investigaciones Económicas'),
(111731, 'https://ror.org/020f3ap87', 'en', 1, 'https://ror.org/020f3ap87 University of Tennessee at Knoxville'),
(111732, 'https://ror.org/020fah966', 'es', 1, 'https://ror.org/020fah966 Universidad Tecnológica de Mineral de la Reforma'),
(111733, 'https://ror.org/020g0rw41', 'fr', 1, 'https://ror.org/020g0rw41 Gestion de l''Eau, Acteurs, Usages'),
(111734, 'https://ror.org/020hgte69', 'en', 1, 'https://ror.org/020hgte69 Fermi National Accelerator Laboratory'),
(111735, 'https://ror.org/020hp3377', 'pt', 1, 'https://ror.org/020hp3377 Centro de Astrofísica e Gravitação'),
(111736, 'https://ror.org/020hzkv18', 'es', 1, 'https://ror.org/020hzkv18 Observatorio Nacional de Ciencia, Tecnología e Innovación'),
(111737, 'https://ror.org/020m6x732', 'en', 1, 'https://ror.org/020m6x732 Danish Meteorological Institute'),
(111738, 'https://ror.org/020n3gx08', 'fr', 1, 'https://ror.org/020n3gx08 ImViA - Imagerie et Vision Artificielle'),
(111739, 'https://ror.org/020njfc53', 'no_lang_code', 1, 'https://ror.org/020njfc53 Medicineone SGPS (Portugal), Medicineone SGPS, S.A.'),
(111740, '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'),
(111741, 'https://ror.org/020p6zm06', 'it', 1, 'https://ror.org/020p6zm06 Agenzia Regionale per la Protezione dell''Ambiente della Calabria'),
(111742, 'https://ror.org/020q9r015', 'en', 1, 'https://ror.org/020q9r015 China Building Materials Academy, China Building Materials Academy Co., Ltd. äø­å›½å»ŗē­‘ęę–™ē§‘å­¦ē ”ē©¶'),
(111743, 'https://ror.org/020r6p262', 'en', 1, 'https://ror.org/020r6p262 IVL - Swedish Environmental Research Institute, IVL Swedish Environmental Research Institute IVL Svenska Miljƶinstitutet'),
(111744, 'https://ror.org/020rbyg91', 'en', 1, 'https://ror.org/020rbyg91 National Institutes for Quantum Science and Technology é‡å­ē§‘å­¦ęŠ€č”“ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(111745, 'https://ror.org/020vvqg79', 'en', 1, 'https://ror.org/020vvqg79 Laboratoř pro syntĆ©zu a měřenĆ­ materiĆ”lÅÆ Materials Growth and Measurement Laboratory'),
(111746, 'https://ror.org/020wkc787', 'en', 1, 'https://ror.org/020wkc787 QIB Extra Ltd, QIB Extra Ltd (United Kingdom)'),
(111747, 'https://ror.org/020wxam75', 'pt', 1, 'https://ror.org/020wxam75 Unidade de Investigação Vidro e Cerâmica para as Artes'),
(111748, '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'),
(111749, 'https://ror.org/020ztsv38', 'pt', 1, 'https://ror.org/020ztsv38 Instituto JurĆ­dico Portucalense'),
(111750, 'https://ror.org/021018s57', 'ca', 1, 'https://ror.org/021018s57 Bartzelonako Unibertsitatea Universidad de Barcelona Universitat de Barcelona University of Barcelona'),
(111751, 'https://ror.org/0210z2q47', 'en', 1, 'https://ror.org/0210z2q47 eMOTIONAL Cities'),
(111752, 'https://ror.org/0212r6c65', 'en', 1, 'https://ror.org/0212r6c65 University of Torbat-e Jam دانؓگاه ŲŖŲ±ŲØŲŖ Ų¬Ų§Ł…'),
(111753, 'https://ror.org/0214h3370', 'en', 1, 'https://ror.org/0214h3370 ERN EpiCARE'),
(111754, 'https://ror.org/02157xr58', 'en', 1, 'https://ror.org/02157xr58 Naval Hospital Pensacola'),
(111755, 'https://ror.org/0215tyt79', 'id', 1, 'https://ror.org/0215tyt79 Sekolah Tinggi Ilmu Keguruan Dan Ilmu Pendidikan Yayasan Pendidikan Ujung Pandang'),
(111756, 'https://ror.org/0218nnd14', 'en', 1, 'https://ror.org/0218nnd14 Kinugasa Research Foundation for Textile Science å…¬ē›Šč²”å›£ę³•äŗŗč”£ē¬ ē¹Šē¶­ē ”ē©¶ę‰€'),
(111757, 'https://ror.org/021cxfs56', 'en', 1, 'https://ror.org/021cxfs56 Royal Hospital for Women'),
(111758, 'https://ror.org/021djcc85', 'en', 1, 'https://ror.org/021djcc85 Yamamoto the Third Hospital åŒ»ē™‚ę³•äŗŗå±±ē“€ä¼šå±±ęœ¬ē¬¬äø‰ē—…é™¢'),
(111759, 'https://ror.org/021f0sa24', 'fr', 1, 'https://ror.org/021f0sa24 Institut de MathƩmatiques de Bourgogne'),
(111760, 'https://ror.org/021fqaq27', 'en', 1, 'https://ror.org/021fqaq27 American International University Kuwait'),
(111761, 'https://ror.org/021m9jg72', 'en', 1, 'https://ror.org/021m9jg72 University of the Philippines Tacloban College'),
(111762, 'https://ror.org/021mmqe47', 'id', 1, 'https://ror.org/021mmqe47 Sekretariat Jenderal Dewan Perwakilan Rakyat Republik Indonesia'),
(111763, 'https://ror.org/021nxhr62', 'en', 1, 'https://ror.org/021nxhr62 U.S. National Science Foundation'),
(111764, 'https://ror.org/021qagr46', 'en', 1, 'https://ror.org/021qagr46 Kouki Hospital åŒ»ē™‚ę³•äŗŗå…‰č¼ä¼šå…‰č¼ē—…é™¢'),
(111765, 'https://ror.org/021rtdj45', 'en', 1, 'https://ror.org/021rtdj45 Lakes Country Service Cooperative'),
(111766, 'https://ror.org/021vn9c61', 'en', 1, 'https://ror.org/021vn9c61 National Institute of Meteorology and Hydrology ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¼ŠµŃ‚ŠµŠ¾Ń€Š¾Š»Š¾Š³ŠøŃ Šø Ń…ŠøŠ“Ń€Š¾Š»Š¾Š³ŠøŃ'),
(111767, 'https://ror.org/021wh8h68', 'fr', 1, 'https://ror.org/021wh8h68 Ambassade de France au Portugal'),
(111768, 'https://ror.org/021xaf247', 'en', 1, 'https://ror.org/021xaf247 Japan Industrial Promotion Association å…¬ē›Šč²”å›£ę³•äŗŗå›½ę°‘å·„ę„­ęŒÆčˆˆä¼š'),
(111769, 'https://ror.org/021xc9887', 'id', 1, 'https://ror.org/021xc9887 Universitas Nias University of Nias'),
(111770, 'https://ror.org/0220mzb33', 'en', 1, 'https://ror.org/0220mzb33 Coleg y Brenin, Llundain King''s College London'),
(111771, 'https://ror.org/0220vsn27', 'pt', 1, 'https://ror.org/0220vsn27 FeedInov'),
(111772, 'https://ror.org/0220zje72', 'en', 0, 'https://ror.org/0220zje72 North Caucasian State Humanitarian Technological Academy Деверо-ŠšŠ°Š²ŠŗŠ°Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(111773, 'https://ror.org/0221vgq66', 'en', 1, 'https://ror.org/0221vgq66 The Overseas Coastal Area Development Institute of Japan äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›č‡Øęµ·é–‹ē™ŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(111774, 'https://ror.org/0223rpe14', 'no_lang_code', 1, 'https://ror.org/0223rpe14 Bristol-Myers Squibb (Portugal), Bristol-Myers Squibb FarmacĆŖutica Portuguesa SA'),
(111775, 'https://ror.org/022525y32', 'pt', 1, 'https://ror.org/022525y32 Centro de Investigação Tecnológica do Algarve'),
(111776, 'https://ror.org/0228a5v71', 'pt', 1, 'https://ror.org/0228a5v71 Administração Regional de Saúde do Norte IP'),
(111777, 'https://ror.org/0229nk184', 'en', 1, 'https://ror.org/0229nk184 Insurance and Care NSW'),
(111778, 'https://ror.org/022arna15', 'en', 1, 'https://ror.org/022arna15 Azərbaycan Respublikası Təhsil Nazirliyinin Ministry of Education of Azerbaijan Republic'),
(111779, 'https://ror.org/022es3t03', 'en', 1, 'https://ror.org/022es3t03 Japan International Cooperation Agency ē‹¬ē«‹č”Œę”æę³•äŗŗå›½éš›å”åŠ›ę©Ÿę§‹'),
(111780, 'https://ror.org/022fhz392', 'en', 1, 'https://ror.org/022fhz392 Bryansk State University Š‘Ń€ŃŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика И. Š“. ŠŸŠµŃ‚Ń€Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(111781, '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'),
(111782, 'https://ror.org/022gvqh28', 'en', 1, 'https://ror.org/022gvqh28 Amsterdam Institute for Addiction Research'),
(111783, 'https://ror.org/022hk8s78', 'pt', 1, 'https://ror.org/022hk8s78 Centro de Investigação em Serviço Social e Intervenção Social'),
(111784, 'https://ror.org/022mz6y25', 'en', 1, 'https://ror.org/022mz6y25 Drugs for Neglected Diseases Initiative'),
(111785, 'https://ror.org/022q30y61', 'en', 1, 'https://ror.org/022q30y61 Yamanashi Prefectural Police 山梨県警察'),
(111786, 'https://ror.org/022q77t14', 'en', 1, 'https://ror.org/022q77t14 Nephro Care India Limited, Nephro Care India Limited (India)'),
(111787, 'https://ror.org/022ssnb78', 'pt', 1, 'https://ror.org/022ssnb78 Universidade de Coimbra Arquivo'),
(111788, 'https://ror.org/022tv9y30', 'en', 1, 'https://ror.org/022tv9y30 Christ University ą²•ą³ą²°ą³ˆą²øą³ą²Ÿą³ ą²Æą³‚ą²Øą²æą²µą²°ą³ą²øą²æą²Ÿą²æ'),
(111789, 'https://ror.org/022w03s59', 'en', 1, 'https://ror.org/022w03s59 St. Elizabeths Hospital'),
(111790, 'https://ror.org/022w6b140', 'pt', 1, 'https://ror.org/022w6b140 Conservatório de Música e Artes do Centro'),
(111791, 'https://ror.org/022wcvk97', 'en', 1, 'https://ror.org/022wcvk97 The Japanese Society of Psychiatry and Neurology å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē²¾ē„žē„žēµŒå­¦ä¼š'),
(111792, 'https://ror.org/022wdak15', 'en', 1, 'https://ror.org/022wdak15 Yaroslavl State Technical University Ярославский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111793, 'https://ror.org/022y5bk62', 'fr', 1, 'https://ror.org/022y5bk62 Maison des Sciences de l''Homme'),
(111794, 'https://ror.org/0230rkd28', 'en', 1, 'https://ror.org/0230rkd28 Wildlife Research and Training Institute'),
(111795, 'https://ror.org/0232r4451', 'en', 1, 'https://ror.org/0232r4451 Southern Illinois University School of Medicine'),
(111796, '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)'),
(111797, 'https://ror.org/02339sc10', 'en', 1, 'https://ror.org/02339sc10 United Nations University Operating Unit on Policy-Driven Electronic Governance'),
(111798, 'https://ror.org/0233st365', 'fr', 1, 'https://ror.org/0233st365 MƩtƩo-France'),
(111799, 'https://ror.org/023422920', 'no_lang_code', 1, 'https://ror.org/023422920 Vallen Systeme (Germany) Vallen Systeme GmbH'),
(111800, 'https://ror.org/0234cd281', 'no_lang_code', 1, 'https://ror.org/0234cd281 Mitsubishi Group (Japan) äø‰č±ć‚°ćƒ«ćƒ¼ćƒ—'),
(111801, 'https://ror.org/0235aj664', 'en', 1, 'https://ror.org/0235aj664 Hatch (Australia)'),
(111802, 'https://ror.org/0236hye39', 'en', 1, 'https://ror.org/0236hye39 National Centre for Coastal Research'),
(111803, 'https://ror.org/023b0x485', 'en', 1, 'https://ror.org/023b0x485 Johannes Gutenberg University Mainz Johannes Gutenberg-UniversitƤt Mainz'),
(111804, 'https://ror.org/023b7n604', 'en', 1, 'https://ror.org/023b7n604 Institut für Terrestrische Oekosysteme Institute of Terrestrial Ecosystems'),
(111805, 'https://ror.org/023cyha02', 'en', 1, 'https://ror.org/023cyha02 United States Northern Command'),
(111806, 'https://ror.org/023dfpy06', 'en', 1, 'https://ror.org/023dfpy06 Jamalpur Science and Technology University জামালপুর ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(111807, 'https://ror.org/023frmf57', 'en', 1, 'https://ror.org/023frmf57 Socioeconomic Institute for Advanced Studies, Socioeconomic Institute for Advanced Studies (Rwanda)'),
(111808, 'https://ror.org/023g0hr89', 'no_lang_code', 1, 'https://ror.org/023g0hr89 Perceive3D (Portugal), Perceive3D, S.A.'),
(111809, 'https://ror.org/023gbj611', 'pt', 1, 'https://ror.org/023gbj611 Sociedade Portuguesa de Ecologia'),
(111810, 'https://ror.org/023jryc44', 'en', 1, 'https://ror.org/023jryc44 Testament Theological Seminary'),
(111811, 'https://ror.org/023jyyg30', 'en', 1, 'https://ror.org/023jyyg30 National Infrastructure for Chemical Biology NƔrodnƭ infrastruktura chemickƩ biologie'),
(111812, 'https://ror.org/023nv2019', 'pt', 1, 'https://ror.org/023nv2019 Centro de Tecnologia e Inovação Industrial'),
(111813, 'https://ror.org/023p80x55', 'id', 1, 'https://ror.org/023p80x55 Politeknik Negeri Lhokseumawe'),
(111814, 'https://ror.org/023q9yj10', 'en', 1, 'https://ror.org/023q9yj10 Korea Racing Authority'),
(111815, 'https://ror.org/023rb5836', 'en', 1, 'https://ror.org/023rb5836 Japanese Association for Laboratory Animal Science å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å®ŸéØ“å‹•ē‰©å­¦ä¼š'),
(111816, '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 المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ لل؄تصالات ŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ŲŖ ال؄علام ŁˆŲ§Ł„Ų„ŲŖŲµŲ§Ł„'),
(111817, 'https://ror.org/023sfvt89', 'ca', 1, 'https://ror.org/023sfvt89 Institut de Recerca i Innovació Educativa'),
(111818, 'https://ror.org/023tnh888', 'en', 1, 'https://ror.org/023tnh888 Space Delta 8');
INSERT INTO `rors` VALUES
(111819, 'https://ror.org/023y7c457', 'pt', 1, 'https://ror.org/023y7c457 AgĆŖncia DNA Cascais Cascais um concelho empreendedor'),
(111820, 'https://ror.org/023yvt917', 'ca', 1, 'https://ror.org/023yvt917 EURECAT Centre Tecnològic de Catalunya, Fundació Eurecat'),
(111821, 'https://ror.org/0241avf06', 'es', 1, 'https://ror.org/0241avf06 Centre de Recerca en Economia Internacional'),
(111822, 'https://ror.org/0241n6h40', 'en', 1, 'https://ror.org/0241n6h40 Japan Civil engineering Consultants Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå»ŗčØ­ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒ„å”ä¼š'),
(111823, 'https://ror.org/02441px27', 'en', 1, 'https://ror.org/02441px27 Sydney Microscopy & Microanalysis'),
(111824, 'https://ror.org/0244cgm12', 'en', 1, 'https://ror.org/0244cgm12 TrĘ°į»ng ĐẔi Hį»c Vinh Vinh University'),
(111825, 'https://ror.org/024701x39', 'en', 1, 'https://ror.org/024701x39 Kagoshima Prefectural Police é¹æå…å³¶ēœŒč­¦åÆŸ'),
(111826, 'https://ror.org/0249hxr55', 'no_lang_code', 1, 'https://ror.org/0249hxr55 Dryas, Dryas (Portugal)'),
(111827, 'https://ror.org/0249tng68', 'en', 1, 'https://ror.org/0249tng68 Ministry of Public Safety and Security'),
(111828, 'https://ror.org/0249y7230', 'en', 1, 'https://ror.org/0249y7230 Vertical Farm Institute'),
(111829, 'https://ror.org/024bje446', 'en', 1, 'https://ror.org/024bje446 Institut für Lebensmittelwissenschaften, Ernährung und Gesundheit Institute of Food, Nutrition, and Health'),
(111830, 'https://ror.org/024bncw68', 'en', 1, 'https://ror.org/024bncw68 Tochigi International Association å…¬ē›Šč²”å›£ę³•äŗŗę ƒęœØēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(111831, 'https://ror.org/024bsvr29', 'no_lang_code', 1, 'https://ror.org/024bsvr29 Mundiconvenius, Mundiconvenius (Portugal)'),
(111832, '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'),
(111833, 'https://ror.org/024d6js02', 'en', 1, 'https://ror.org/024d6js02 Charles University Univerzita Karlova'),
(111834, 'https://ror.org/024d9fq04', 'pt', 1, 'https://ror.org/024d9fq04 Associação Brasileira de Estudos do Trabalho'),
(111835, 'https://ror.org/024ejyz46', 'en', 1, 'https://ror.org/024ejyz46 Sylhet MAG Osmani Medical College Hospital'),
(111836, 'https://ror.org/024fhbm82', 'en', 1, 'https://ror.org/024fhbm82 Baikal State University Байгалийн Улсын Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŠøŠ¹Š³ Š‘Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ č“åŠ å°”å›½ē«‹å¤§å­¦'),
(111837, 'https://ror.org/024h5t657', 'en', 1, 'https://ror.org/024h5t657 Ohara General Hospital äø€čˆ¬č²”å›£ę³•äŗŗå¤§åŽŸē¶œåˆē—…é™¢'),
(111838, 'https://ror.org/024jkkf40', 'en', 1, 'https://ror.org/024jkkf40 Australian Centre for Excellence in Antarctic Science'),
(111839, 'https://ror.org/024k8tp19', 'en', 1, 'https://ror.org/024k8tp19 Space Rapid Capabilities Office'),
(111840, 'https://ror.org/024mb6n55', 'de', 1, 'https://ror.org/024mb6n55 Wiener Forum für Demokratie und Menschenrechte'),
(111841, 'https://ror.org/024mrxd33', 'en', 1, 'https://ror.org/024mrxd33 Prifysgol Leeds University of Leeds'),
(111842, 'https://ror.org/024nbhd47', 'pt', 1, 'https://ror.org/024nbhd47 Centro de Documentação Europeia'),
(111843, 'https://ror.org/024ntkp17', 'en', 1, 'https://ror.org/024ntkp17 MARUGAME Medical Center åŒ»ē™‚ę³•äŗŗē¤¾å›£é‡ä»ä¼šć¾ć‚‹ćŒć‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(111844, 'https://ror.org/024nx4843', 'en', 1, 'https://ror.org/024nx4843 Izmir KĆ¢tip Ƈelebi University İzmir KĆ¢tip Ƈelebi Üniversitesi'),
(111845, 'https://ror.org/024q01f72', 'en', 1, 'https://ror.org/024q01f72 Gulf of America Coastal Ocean Observing System'),
(111846, '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'),
(111847, 'https://ror.org/024tyc086', 'fr', 1, 'https://ror.org/024tyc086 Centre Innovation et Droit'),
(111848, 'https://ror.org/024wb5k07', 'en', 1, 'https://ror.org/024wb5k07 Yokohama Sports Association å…¬ē›Šč²”å›£ę³•äŗŗęØŖęµœåø‚ä½“č‚²å”ä¼š'),
(111849, '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'),
(111850, '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)'),
(111851, 'https://ror.org/024z4gd71', 'en', 1, 'https://ror.org/024z4gd71 Stichting Innovations in Graph Theory'),
(111852, 'https://ror.org/024zy9450', 'en', 1, 'https://ror.org/024zy9450 ACTRIS Czech Republic ACTRIS – ĆŗÄast ČeskĆ© republiky'),
(111853, 'https://ror.org/0250h3a52', 'fr', 1, 'https://ror.org/0250h3a52 Physiopathologie et EpidƩmiologie CƩrƩbro-Cardiovasculaires'),
(111854, 'https://ror.org/025194b42', 'no_lang_code', 1, 'https://ror.org/025194b42 Mundipharma (United Kingdom)'),
(111855, 'https://ror.org/0251f2x81', 'en', 1, 'https://ror.org/0251f2x81 White Rose University Consortium'),
(111856, '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.'),
(111857, 'https://ror.org/025324638', 'en', 1, 'https://ror.org/025324638 Food4Sustainability CoLAB'),
(111858, 'https://ror.org/0255mkf31', 'pt', 1, 'https://ror.org/0255mkf31 Agência para o Investimento e Comércio Externo de Portugal EPE'),
(111859, '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'),
(111860, 'https://ror.org/0256r1e04', 'fr', 1, 'https://ror.org/0256r1e04 Environment, City, Society Environnement, ville, sociƩtƩ'),
(111861, 'https://ror.org/0259r0013', 'en', 1, 'https://ror.org/0259r0013 Praxis Business School'),
(111862, 'https://ror.org/025bevr47', 'en', 1, 'https://ror.org/025bevr47 Montserrat National Trust'),
(111863, 'https://ror.org/025ccn685', 'en', 1, 'https://ror.org/025ccn685 Japanese Organization for International Cooperation in Family Planning å…¬ē›Šč²”å›£ę³•äŗŗć‚øćƒ§ć‚¤ć‚»ćƒ•'),
(111864, 'https://ror.org/025cem651', 'en', 1, 'https://ror.org/025cem651 Centro MƩdico Naval Nacional Walter Reed National Military Medical Center'),
(111865, 'https://ror.org/025ds8c39', 'en', 1, 'https://ror.org/025ds8c39 Lajes Airman and Family Readiness Center'),
(111866, 'https://ror.org/025e1z063', 'en', 1, 'https://ror.org/025e1z063 B.E.S.T Innovation University'),
(111867, 'https://ror.org/025em6n98', 'en', 1, 'https://ror.org/025em6n98 Institut für Verkehrsplanung und Transportsysteme Institute for Transport Planning and Systems'),
(111868, 'https://ror.org/025en1p25', 'en', 1, 'https://ror.org/025en1p25 Institut für Theoretische Physik Institute for Theoretical Physics'),
(111869, 'https://ror.org/025fw7a54', 'de', 1, 'https://ror.org/025fw7a54 Friedrich-Loeffler-Institut'),
(111870, 'https://ror.org/025ja7931', 'en', 1, 'https://ror.org/025ja7931 Margaret Lawrence University'),
(111871, 'https://ror.org/025jbsx21', 'pt', 1, 'https://ror.org/025jbsx21 Autoridade para as CondiƧƵes do Trabalho'),
(111872, 'https://ror.org/025k5ez60', 'en', 1, 'https://ror.org/025k5ez60 Nihon Sumo Kyokai å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē›øę’²å”ä¼š'),
(111873, 'https://ror.org/025m0q735', 'en', 1, 'https://ror.org/025m0q735 Wilford Hall Ambulatory Surgical Center'),
(111874, 'https://ror.org/025mf1j72', 'fr', 1, 'https://ror.org/025mf1j72 Le Centre International de Recherches et Ɖtudes Transdisciplinaires'),
(111875, 'https://ror.org/025ny4j27', 'en', 1, 'https://ror.org/025ny4j27 The Atlantis Project'),
(111876, 'https://ror.org/025t7k891', 'de', 1, 'https://ror.org/025t7k891 OƖ Landes-Kultur GmbH, OƖ Landes-Kultur GmbH (Austria)'),
(111877, 'https://ror.org/025vngs54', 'de', 1, 'https://ror.org/025vngs54 Greifswald University Hospital, Greifswald University Medicine, University Medicine of Greifswald UniversitƤtsmedizin Greifswald'),
(111878, 'https://ror.org/025w03e38', 'fr', 1, 'https://ror.org/025w03e38 Centre d''Analyse et de Recherche Interdisciplinaires sur les MƩdias'),
(111879, 'https://ror.org/025z7v781', 'es', 1, 'https://ror.org/025z7v781 Sociedad Micológica de Gran Canaria'),
(111880, 'https://ror.org/02617e391', 'fr', 1, 'https://ror.org/02617e391 Evaluation et recherche en services et politiques en santƩ pour les populations vulnƩrables'),
(111881, 'https://ror.org/0262n0g55', 'en', 1, 'https://ror.org/0262n0g55 Japan Industrial Furnace Manufacturers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·„ę„­ē‚‰å”ä¼š'),
(111882, 'https://ror.org/0263sxq51', 'pt', 1, 'https://ror.org/0263sxq51 Fundação AstraZeneca'),
(111883, 'https://ror.org/0265f3m16', 'pt', 1, 'https://ror.org/0265f3m16 Centro de Investigação em Saúde Pública'),
(111884, 'https://ror.org/02689mz67', 'fr', 0, 'https://ror.org/02689mz67 Linguistique et lexicographie latines et romanes'),
(111885, 'https://ror.org/02693j602', 'fr', 1, 'https://ror.org/02693j602 Institut Regional du Cancer de Montpellier'),
(111886, 'https://ror.org/0269he949', 'pt', 1, 'https://ror.org/0269he949 Instituto de Direito Económico Financeiro e Fiscal'),
(111887, 'https://ror.org/026cfgc43', 'en', 1, 'https://ror.org/026cfgc43 Kamibayashi Memorial Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęå¶ŗä¼šäøŠęž—čØ˜åæµē—…é™¢'),
(111888, 'https://ror.org/026cnzg44', 'no_lang_code', 0, 'https://ror.org/026cnzg44 Advanced Technological Center Fundació CTM Centre Tecnològic'),
(111889, 'https://ror.org/026csjr38', 'en', 1, 'https://ror.org/026csjr38 Al-Sham Private University Ų¬Ų§Ł…Ų¹Ų© الؓام الخاصة'),
(111890, 'https://ror.org/026ehzk15', 'es', 1, 'https://ror.org/026ehzk15 Universidad Intercultural del Estado de Tabasco'),
(111891, 'https://ror.org/026ey8z81', 'en', 1, 'https://ror.org/026ey8z81 Centre de Recherche en Environnement Environmental Research Center Ł…Ų±ŁƒŲ² البحث في Ų§Ł„ŲØŁŠŲ¦Ų©'),
(111892, 'https://ror.org/026ghpf29', 'de', 1, 'https://ror.org/026ghpf29 Institut Mathematische, Naturwissenschaftliche und Technische Bildung Institute of Mathematical, Scientific and Technological Education'),
(111893, 'https://ror.org/026mcrn69', 'pt', 1, 'https://ror.org/026mcrn69 Federação Portuguesa de Futebol'),
(111894, 'https://ror.org/026nh4520', 'en', 0, 'https://ror.org/026nh4520 CSIRO Oceans and Atmosphere'),
(111895, 'https://ror.org/026pt7089', 'pt', 1, 'https://ror.org/026pt7089 Centro CiĆŖncia Viva de Vila do Conde'),
(111896, 'https://ror.org/026tf7535', 'fr', 1, 'https://ror.org/026tf7535 Centre Max Weber'),
(111897, 'https://ror.org/026w8xv69', 'en', 1, 'https://ror.org/026w8xv69 Japan Association for Women''s Education å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å„³ę€§å­¦ēæ’č²”å›£'),
(111898, 'https://ror.org/026ytr635', 'en', 1, 'https://ror.org/026ytr635 Centre international de l''ISSN ISSN International Centre'),
(111899, 'https://ror.org/026zzn846', 'en', 1, 'https://ror.org/026zzn846 Queen Mary University of London Queen Mary, Prifysgol Llundain'),
(111900, 'https://ror.org/02731xq41', 'sq', 1, 'https://ror.org/02731xq41 Tirana Business University'),
(111901, 'https://ror.org/0274ppf08', 'en', 1, 'https://ror.org/0274ppf08 Alliance to Feed the Earth in Disasters'),
(111902, 'https://ror.org/0278ff426', 'fr', 1, 'https://ror.org/0278ff426 Haute Ʃcole de travail social et de la santƩ Lausanne - HETSL, HES-SO'),
(111903, 'https://ror.org/0278h4n28', 'en', 1, 'https://ror.org/0278h4n28 Naval Hospital Bremerton'),
(111904, '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'),
(111905, 'https://ror.org/0279bkg17', 'no_lang_code', 1, 'https://ror.org/0279bkg17 Frotcom International (Portugal)'),
(111906, 'https://ror.org/0279ntc65', 'de', 1, 'https://ror.org/0279ntc65 ERN LUNG'),
(111907, 'https://ror.org/027arzy69', 'fr', 1, 'https://ror.org/027arzy69 Centre Hospitalier Universitaire de Caen Normandie'),
(111908, 'https://ror.org/027d2g669', 'en', 1, 'https://ror.org/027d2g669 Ɩstersunds Hospital Ɩstersunds sjukhus'),
(111909, 'https://ror.org/027fb8k30', 'no_lang_code', 1, 'https://ror.org/027fb8k30 Atelier de Lisboa, Atelier de Lisboa (Portugal), Atelier of Lisbon'),
(111910, 'https://ror.org/027h77v82', 'en', 1, 'https://ror.org/027h77v82 National Health Innovation Centre'),
(111911, 'https://ror.org/027hz7j04', 'no_lang_code', 1, 'https://ror.org/027hz7j04 Sistemas e Informação GeogrÔfica, S.A. (Portugal)'),
(111912, 'https://ror.org/027jdar49', 'en', 1, 'https://ror.org/027jdar49 Indian Institute of Technology Delhi Abu Dhabi'),
(111913, 'https://ror.org/027m4m339', 'en', 1, 'https://ror.org/027m4m339 Federal College of Education (Technical) Asaba'),
(111914, 'https://ror.org/027m9bs27', 'en', 1, 'https://ror.org/027m9bs27 Prifysgol Manceinion University of Manchester'),
(111915, 'https://ror.org/027qvdx76', 'en', 1, 'https://ror.org/027qvdx76 Emmanuel Alayande University of Education, Oyo'),
(111916, 'https://ror.org/027snxs20', 'en', 1, 'https://ror.org/027snxs20 Wildlife Trust of India'),
(111917, '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'),
(111918, 'https://ror.org/027wsbc40', 'en', 1, 'https://ror.org/027wsbc40 Kyorin University Suginami Hospital ęęž—å¤§å­¦åŒ»å­¦éƒØä»˜å±žę‰äø¦ē—…é™¢'),
(111919, 'https://ror.org/027y26122', 'no_lang_code', 1, 'https://ror.org/027y26122 Daiichi-Sankyo (Japan) ē¬¬äø€äø‰å…±ę Ŗå¼ä¼šē¤¾'),
(111920, 'https://ror.org/027z4c440', 'id', 1, 'https://ror.org/027z4c440 Institut Teknologi Calvin'),
(111921, 'https://ror.org/028070c57', 'no_lang_code', 1, 'https://ror.org/028070c57 NaMLab (Germany)'),
(111922, 'https://ror.org/0281dp749', 'en', 1, 'https://ror.org/0281dp749 Helmholtz Association of German Research Centres Helmholtz-Gemeinschaft Deutscher Forschungszentren'),
(111923, 'https://ror.org/0282fcs06', 'pt', 1, 'https://ror.org/0282fcs06 Sociedade Portuguesa de Entomologia'),
(111924, 'https://ror.org/0282skn54', 'en', 1, 'https://ror.org/0282skn54 JFE Engineering Pte Ltd, JFE Engineering Pte Ltd (Singapore)'),
(111925, 'https://ror.org/0284btd36', 'en', 1, 'https://ror.org/0284btd36 Bishkek International Medical Institute Š‘ŠøŃˆŠŗŠµŠŗ ŃŠ» аралык меГициналык ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ Š‘ŠøŃˆŠŗŠµŠŗŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(111926, 'https://ror.org/0284has79', 'pt', 1, 'https://ror.org/0284has79 Sociedade Portuguesa de Oftalmologia'),
(111927, 'https://ror.org/0285aqz98', 'en', 1, 'https://ror.org/0285aqz98 The Horological Institute of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę™‚čØˆå­¦ä¼š'),
(111928, 'https://ror.org/0285j9m82', 'en', 1, 'https://ror.org/0285j9m82 Centre for Origin and Prevalence of Life'),
(111929, 'https://ror.org/0285srj36', 'pt', 1, 'https://ror.org/0285srj36 Arquitectura Investigação e Desenvolvimento'),
(111930, 'https://ror.org/028696h48', 'de', 1, 'https://ror.org/028696h48 Austrian Biolmaging - Verein zur innovativen, korrelativen, multimodalen Bildgebung in Ɩsterreich'),
(111931, 'https://ror.org/0286e5b31', 'pt', 1, 'https://ror.org/0286e5b31 Laboratório de Aceleradores e Difracção de Raios-X'),
(111932, 'https://ror.org/0286p1c86', 'en', 1, 'https://ror.org/0286p1c86 Cancer Center Amsterdam'),
(111933, 'https://ror.org/0286qer95', 'en', 1, 'https://ror.org/0286qer95 Czech National Infrastructure for Biological Data ČeskÔ nÔrodní infrastruktura pro biologickÔ data'),
(111934, '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'),
(111935, 'https://ror.org/0287zzv25', 'es', 1, 'https://ror.org/0287zzv25 Centro Interdisciplinario de Estudios Complejos'),
(111936, 'https://ror.org/0288c3494', 'es', 1, 'https://ror.org/0288c3494 Instituto de GeografĆ­a, Historia y Ciencias Sociales'),
(111937, 'https://ror.org/0288swk05', 'en', 1, 'https://ror.org/0288swk05 Instytut Farmakologii im. Jerzego Maja Polskiej Akademii Nauk Maj Institute of Pharmacology'),
(111938, 'https://ror.org/02891sr49', 'en', 1, 'https://ror.org/02891sr49 Merck & Co., Inc., Rahway, NJ, USA, Merck & Co., Inc., Rahway, NJ, USA (United States)'),
(111939, 'https://ror.org/0289y1w68', 'en', 1, 'https://ror.org/0289y1w68 Acknowledge Education'),
(111940, 'https://ror.org/028bjvp30', 'en', 1, 'https://ror.org/028bjvp30 Aichi Medical Foundation of Diagnostic Technology äø€čˆ¬č²”å›£ę³•äŗŗę„›ēŸ„čØŗę–­ę²»ē™‚ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(111941, 'https://ror.org/028cef883', 'fr', 1, 'https://ror.org/028cef883 Chrono-Environment Laboratory Laboratoire Chrono-Environnement'),
(111942, 'https://ror.org/028dyrk43', 'pt', 1, 'https://ror.org/028dyrk43 Sociedade Portuguesa de Radiologia e Medicina Nuclear'),
(111943, 'https://ror.org/028e64g94', 'pt', 1, 'https://ror.org/028e64g94 Centro de Investigacao em Recursos Naturais'),
(111944, 'https://ror.org/028ew7558', 'en', 1, 'https://ror.org/028ew7558 Computer Engineering and Networks Laboratory Institut für Technische Informatik und Kommunikationsnetze'),
(111945, 'https://ror.org/028h2cy94', 'no_lang_code', 1, 'https://ror.org/028h2cy94 Tetra Pak (Sweden)'),
(111946, 'https://ror.org/028hcgr48', 'en', 1, 'https://ror.org/028hcgr48 Raoul Wallenberg Institute of Human Rights and Humanitarian Law'),
(111947, 'https://ror.org/028j67555', 'pt', 1, 'https://ror.org/028j67555 Centro de Ciências e Tecnologias da Engenharia Mecânica e Aeroespacial'),
(111948, 'https://ror.org/028khat13', 'en', 1, 'https://ror.org/028khat13 Oceans Institute'),
(111949, 'https://ror.org/028n19d35', 'en', 1, 'https://ror.org/028n19d35 Celligenics Pte. Ltd., Celligenics Pte. Ltd. (Singapore)'),
(111950, 'https://ror.org/028ngjx88', 'es', 1, 'https://ror.org/028ngjx88 Centro de Investigaciones en GeografĆ­a Ambiental'),
(111951, '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'),
(111952, 'https://ror.org/028rypz17', 'fr', 0, 'https://ror.org/028rypz17 Universitat de Parƭs Sud University of Paris-Sud UniversitƩ Paris-Sud'),
(111953, 'https://ror.org/028sgmw18', 'en', 1, 'https://ror.org/028sgmw18 Czech Academy of Sciences, Library Knihovna AV ČR'),
(111954, 'https://ror.org/028wp3y58', 'en', 1, 'https://ror.org/028wp3y58 Chulalongkorn University ąøˆąøøąø¬ąø²ąø„ąø‡ąøąø£ąø“ą¹Œąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(111955, 'https://ror.org/028wqdr21', 'en', 1, 'https://ror.org/028wqdr21 Shodh Sagar, Shodh Sagar (India)'),
(111956, 'https://ror.org/028wqwc72', 'en', 1, 'https://ror.org/028wqwc72 Communication Technology Laboratory Institut für Kommunikationstechnik'),
(111957, 'https://ror.org/028zvc673', 'en', 1, 'https://ror.org/028zvc673 United States Air Force Special Operations Command'),
(111958, 'https://ror.org/0290gp094', 'no_lang_code', 1, 'https://ror.org/0290gp094 Cromeleque, Cromeleque (Portugal)'),
(111959, 'https://ror.org/0290qyp66', 'en', 1, 'https://ror.org/0290qyp66 Ochsner Medical Center'),
(111960, 'https://ror.org/0292fgv83', 'fr', 1, 'https://ror.org/0292fgv83 Centre de REcherche En Gestion des Organisations'),
(111961, 'https://ror.org/0293rh119', 'en', 1, 'https://ror.org/0293rh119 Universidad de Oregón University of Oregon'),
(111962, 'https://ror.org/02978gv32', 'fr', 1, 'https://ror.org/02978gv32 Clinique TrƩnel'),
(111963, 'https://ror.org/0297mgg61', 'en', 1, 'https://ror.org/0297mgg61 Sakakibara Onsen hospital ē‰¹å®šåŒ»ē™‚ę³•äŗŗęš²ē“”ä¼šę¦ŠåŽŸęø©ę³‰ē—…é™¢'),
(111964, 'https://ror.org/02999cg07', 'en', 1, 'https://ror.org/02999cg07 Bệnh Viện Mỹ Đức My Duc Hospital'),
(111965, 'https://ror.org/029aap830', 'pt', 1, 'https://ror.org/029aap830 Escola Superior Aveiro Norte'),
(111966, 'https://ror.org/029brtt94', 'fr', 1, 'https://ror.org/029brtt94 Claude Bernard University Lyon 1 UniversitƩ Claude Bernard Lyon 1'),
(111967, 'https://ror.org/029c2pn37', 'en', 1, 'https://ror.org/029c2pn37 Japan Federation Of Printing Industries äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å°åˆ·ē”£ę„­é€£åˆä¼š'),
(111968, 'https://ror.org/029chgv08', 'en', 1, 'https://ror.org/029chgv08 Wellcome Trust'),
(111969, 'https://ror.org/029dp3h45', 'en', 1, 'https://ror.org/029dp3h45 The Ecclesiastical History Society'),
(111970, 'https://ror.org/029e6qe04', 'en', 1, 'https://ror.org/029e6qe04 LMU Open Science Center'),
(111971, 'https://ror.org/029e9dn69', 'pt', 1, 'https://ror.org/029e9dn69 Sociedade Portuguesa de Neuropsicologia'),
(111972, 'https://ror.org/029e9gc02', 'en', 1, 'https://ror.org/029e9gc02 Kagawa Prefecture Livestock Experiment Station é¦™å·ēœŒē•œē”£č©¦éØ“å “'),
(111973, 'https://ror.org/029fmre22', 'en', 1, 'https://ror.org/029fmre22 Chiba Aiyukai Kinen Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę„›å‹ä¼šåƒč‘‰ę„›å‹ä¼ščØ˜åæµē—…é™¢'),
(111974, 'https://ror.org/029h91n25', 'pt', 1, 'https://ror.org/029h91n25 Sociedade Portuguesa de Ortopedia e Traumatologia'),
(111975, 'https://ror.org/029hqf550', 'no_lang_code', 1, 'https://ror.org/029hqf550 CytoSorbents (Germany)'),
(111976, 'https://ror.org/029j7ca59', 'pt', 1, 'https://ror.org/029j7ca59 Sociedade Portuguesa de Psiquiatria e Psicologia da JustiƧa'),
(111977, 'https://ror.org/029mmgm72', 'en', 1, 'https://ror.org/029mmgm72 Okinawa Industrial Federation å…¬ē›Šē¤¾å›£ę³•äŗŗę²–ēø„ēœŒå·„ę„­é€£åˆä¼š'),
(111978, 'https://ror.org/029mnbn96', 'en', 1, 'https://ror.org/029mnbn96 All India Institute of Medical Sciences Bhubaneswar'),
(111979, 'https://ror.org/029nm1m14', 'fr', 1, 'https://ror.org/029nm1m14 ERN EYE'),
(111980, 'https://ror.org/029nydt37', 'en', 1, 'https://ror.org/029nydt37 Nitte University'),
(111981, 'https://ror.org/029qx3s09', 'en', 1, 'https://ror.org/029qx3s09 High Point University Universidad de High Point'),
(111982, 'https://ror.org/029sggp14', 'en', 1, 'https://ror.org/029sggp14 Hokkaido International Foundation äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(111983, 'https://ror.org/029w34q36', 'no_lang_code', 1, 'https://ror.org/029w34q36 Ningxia Seismological Bureau å®å¤å›žę—č‡Ŗę²»åŒŗåœ°éœ‡å±€'),
(111984, 'https://ror.org/029ycp228', 'en', 1, 'https://ror.org/029ycp228 Austral University of Chile Universidad Austral de Chile'),
(111985, 'https://ror.org/02a44pn39', 'no_lang_code', 1, 'https://ror.org/02a44pn39 FairJourney Biologics (Portugal), FairJourney Biologics, S.A.'),
(111986, 'https://ror.org/02a5g4t56', 'en', 1, 'https://ror.org/02a5g4t56 NHK Service Center, Inc. äø€čˆ¬č²”å›£ę³•äŗŗNHKć‚µćƒ¼ćƒ“ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(111987, 'https://ror.org/02a6s9190', 'fr', 1, 'https://ror.org/02a6s9190 ENSIT, Ɖcole nationale supĆ©rieure d''ingĆ©nieurs de Tunis المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† ŲØŲŖŁˆŁ†Ų³'),
(111988, 'https://ror.org/02a96qd10', 'en', 1, 'https://ror.org/02a96qd10 CoLAB ForestWISE'),
(111989, 'https://ror.org/02ab3cb17', 'en', 1, 'https://ror.org/02ab3cb17 Research Association of High-Throughput Design and Development for Advanced Functional Materials å…ˆē«Æē“ ęé«˜é€Ÿé–‹ē™ŗęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(111990, 'https://ror.org/02ab4cq13', 'en', 1, 'https://ror.org/02ab4cq13 Nile University of Science and Technology'),
(111991, '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'),
(111992, 'https://ror.org/02ad6az62', 'de', 1, 'https://ror.org/02ad6az62 Gesellschaft für Arbeits-, Wirtschafts- und Organisationspsychologische Forschung e.V.'),
(111993, 'https://ror.org/02adgj289', 'en', 1, 'https://ror.org/02adgj289 Nagasaki City Public Health and Environmental Testing Center é•·å“Žåø‚äæå„ē’°å¢ƒč©¦éØ“ę‰€'),
(111994, 'https://ror.org/02ag4yb46', 'en', 1, 'https://ror.org/02ag4yb46 North Sea Transition Authority'),
(111995, 'https://ror.org/02akb7n88', 'en', 1, 'https://ror.org/02akb7n88 Alexandra Health Pte Ltd'),
(111996, 'https://ror.org/02akqbn88', 'en', 1, 'https://ror.org/02akqbn88 Academy of Applied Studies Belgrade Akademija strukovnih studija Beograd'),
(111997, 'https://ror.org/02anpr822', 'en', 1, 'https://ror.org/02anpr822 Japan Aircraft Development Corporation äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬čˆŖē©ŗę©Ÿé–‹ē™ŗå”ä¼š'),
(111998, 'https://ror.org/02arc3934', 'id', 1, 'https://ror.org/02arc3934 Universitas Islam Negeri Mahmud Yunus Batusangkar'),
(111999, 'https://ror.org/02arxvh93', 'en', 1, 'https://ror.org/02arxvh93 READ Global'),
(112000, '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ć"'),
(112001, 'https://ror.org/02as5yg64', 'en', 1, 'https://ror.org/02as5yg64 Shanghai Polytechnic University, Shanghai Second Polytechnic University 上海第二巄业大学'),
(112002, 'https://ror.org/02asgya46', 'it', 1, 'https://ror.org/02asgya46 Agenzia Provinciale per la Protezione dell''ambiente'),
(112003, 'https://ror.org/02ayn5869', 'en', 1, 'https://ror.org/02ayn5869 Southern Centre For Inequality Studies'),
(112004, 'https://ror.org/02azcsx83', 'en', 1, 'https://ror.org/02azcsx83 OpenSky Network'),
(112005, 'https://ror.org/02b61xm43', 'en', 1, 'https://ror.org/02b61xm43 International Institute of Management and Business ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(112006, 'https://ror.org/02b6c0m75', 'fr', 1, 'https://ror.org/02b6c0m75 UnitƩ d''Appui et de Recherche OSUPS'),
(112007, 'https://ror.org/02b6c1039', 'fr', 1, 'https://ror.org/02b6c1039 Laboratoire Interdisciplinaire Carnot de Bourgogne'),
(112008, 'https://ror.org/02b6qw903', 'en', 1, 'https://ror.org/02b6qw903 Universidad de Carolina del Sur University of South Carolina UniversitƩ de caroline du sud'),
(112009, 'https://ror.org/02b9fyg84', 'no_lang_code', 1, 'https://ror.org/02b9fyg84 Archeofactu, Archeofactu (Portugal)'),
(112010, 'https://ror.org/02baa5g50', 'en', 1, 'https://ror.org/02baa5g50 East Metropolitan Health Service'),
(112011, 'https://ror.org/02bc09j30', 'no_lang_code', 1, 'https://ror.org/02bc09j30 Mercurius Health (Portugal), Mercurius Health, S.A.'),
(112012, 'https://ror.org/02bctx354', 'fr', 1, 'https://ror.org/02bctx354 DigiHub (Canada)'),
(112013, 'https://ror.org/02bcwkf72', 'en', 1, 'https://ror.org/02bcwkf72 Center of Iizuka Research and Development ē¦å²”ēœŒē«‹é£Æå”šē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(112014, 'https://ror.org/02bdf7k74', 'en', 1, 'https://ror.org/02bdf7k74 BLDE (Deemed to be University)'),
(112015, 'https://ror.org/02bfwt286', 'en', 1, 'https://ror.org/02bfwt286 Monash University'),
(112016, 'https://ror.org/02bgk0802', 'no_lang_code', 1, 'https://ror.org/02bgk0802 Congento - Consortium for Genetically Tractable Organisms'),
(112017, 'https://ror.org/02bkkgm47', 'en', 1, 'https://ror.org/02bkkgm47 Center for Complex Particle Systems'),
(112018, 'https://ror.org/02bn55144', 'no_lang_code', 1, 'https://ror.org/02bn55144 Zimmer Biomet (United States)'),
(112019, 'https://ror.org/02bpcpj94', 'pt', 1, 'https://ror.org/02bpcpj94 Sociedade Portuguesa de BioquĆ­mica'),
(112020, 'https://ror.org/02bspkt64', 'en', 1, 'https://ror.org/02bspkt64 Industrial Science Research Promotion Foundation äø€čˆ¬č²”å›£ę³•äŗŗē”Ÿē”£ē§‘å­¦ē ”ē©¶å„ØåŠ±ä¼š'),
(112021, 'https://ror.org/02bt8f617', 'pt', 1, 'https://ror.org/02bt8f617 Culturgest - Fundação Caixa Geral de Depósitos, Culturgest'),
(112022, 'https://ror.org/02bv1h546', 'en', 1, 'https://ror.org/02bv1h546 Institute of Vocational Education of the National Academy of Educational Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ професійної освіти ŠŠŠŸŠ України'),
(112023, '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'),
(112024, 'https://ror.org/02bxa4w69', 'en', 1, 'https://ror.org/02bxa4w69 English Language Centre'),
(112025, 'https://ror.org/02bxfy242', 'de', 1, 'https://ror.org/02bxfy242 Centre for Academic Consulting Zentrum Wissenschaftsberatung'),
(112026, 'https://ror.org/02bxhgv17', 'en', 1, 'https://ror.org/02bxhgv17 The Japan Research Institute for Local Government å…¬ē›Šč²”å›£ę³•äŗŗåœ°ę–¹č‡Ŗę²»ē·åˆē ”ē©¶ę‰€'),
(112027, 'https://ror.org/02by2rg20', 'en', 1, 'https://ror.org/02by2rg20 Laboratory for Advanced Computing'),
(112028, 'https://ror.org/02bz8aa76', 'en', 1, 'https://ror.org/02bz8aa76 Suzhou University å®æå·žå­¦é™¢'),
(112029, 'https://ror.org/02c01r047', 'fr', 1, 'https://ror.org/02c01r047 Laboratoire d''Ʃconomie de Dijon'),
(112030, 'https://ror.org/02c1hqj73', 'no_lang_code', 1, 'https://ror.org/02c1hqj73 Tonic App, Tonic App (Portugal)'),
(112031, 'https://ror.org/02c1myh82', 'en', 1, 'https://ror.org/02c1myh82 National Science and Technology Commission'),
(112032, 'https://ror.org/02c2drs76', 'id', 1, 'https://ror.org/02c2drs76 Sekolah Tingi Pertanian Kutai Timur'),
(112033, 'https://ror.org/02c345z96', 'en', 1, 'https://ror.org/02c345z96 Swami Vivekananda University'),
(112034, 'https://ror.org/02c3nzd41', 'en', 1, 'https://ror.org/02c3nzd41 Australian Urban Research Infrastructure Network'),
(112035, 'https://ror.org/02c44gx70', 'es', 1, 'https://ror.org/02c44gx70 Centro de Investigación Flamenco Telethusa'),
(112036, 'https://ror.org/02c5kbs29', 'en', 1, 'https://ror.org/02c5kbs29 Misono Gakuen Junior College č–åœ’å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(112037, 'https://ror.org/02c6k8737', 'en', 1, 'https://ror.org/02c6k8737 A*STAR Research Entities'),
(112038, 'https://ror.org/02c6z1q75', 'no_lang_code', 1, 'https://ror.org/02c6z1q75 FC PaƧos de Ferreira, FC PaƧos de Ferreira (Portugal)'),
(112039, 'https://ror.org/02c770x21', 'en', 1, 'https://ror.org/02c770x21 EnGreen, EnGreen (Italy)'),
(112040, 'https://ror.org/02c8xgx19', 'en', 1, 'https://ror.org/02c8xgx19 Kuroshio Biology Research Institute å…¬ē›Šč²”å›£ę³•äŗŗé»’ę½®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(112041, 'https://ror.org/02cb1bz50', 'en', 1, 'https://ror.org/02cb1bz50 Society of Economic Geologists'),
(112042, 'https://ror.org/02ceze395', 'en', 1, 'https://ror.org/02ceze395 SEEK Education, SEEK Education, Inc. (United States)'),
(112043, 'https://ror.org/02cgss904', 'en', 1, 'https://ror.org/02cgss904 Kumamoto University ē†Šęœ¬å¤§å­¦'),
(112044, 'https://ror.org/02chzeh21', 'en', 1, 'https://ror.org/02chzeh21 National Institute of Fisheries Science źµ­ė¦½ģˆ˜ģ‚°ź³¼ķ•™ģ›'),
(112045, 'https://ror.org/02cjet079', 'fr', 1, 'https://ror.org/02cjet079 Institut de France'),
(112046, 'https://ror.org/02ck0dq88', 'en', 1, 'https://ror.org/02ck0dq88 Amsterdam Gastroenterology Endocrinology Metabolism'),
(112047, 'https://ror.org/02cm95j49', 'en', 1, 'https://ror.org/02cm95j49 U.S. Army Communications-Electronics Command'),
(112048, 'https://ror.org/02cp6jm68', 'en', 1, 'https://ror.org/02cp6jm68 Institut für Geschichte Institute of History'),
(112049, 'https://ror.org/02cp6mx43', 'en', 1, 'https://ror.org/02cp6mx43 Alliance to End Plastic Waste, Inc.'),
(112050, 'https://ror.org/02cpwqf16', 'en', 1, 'https://ror.org/02cpwqf16 JAē§‹ē”°åŽšē”Ÿé€£é›„å‹äø­å¤®ē—…é™¢ Ogachi Central Hospital'),
(112051, 'https://ror.org/02cq5yc29', 'no_lang_code', 1, 'https://ror.org/02cq5yc29 Jacobs (Spain)'),
(112052, 'https://ror.org/02crff812', 'en', 1, 'https://ror.org/02crff812 University of Zurich Università di Zurigo Universität Zürich Université de Zurich'),
(112053, 'https://ror.org/02cvp5j67', 'en', 1, 'https://ror.org/02cvp5j67 Democracy X'),
(112054, 'https://ror.org/02cxf3w16', 'en', 1, 'https://ror.org/02cxf3w16 Edna Adan University'),
(112055, 'https://ror.org/02cyq1796', 'en', 1, 'https://ror.org/02cyq1796 Regentropfen University College'),
(112056, 'https://ror.org/02cyw3861', 'fr', 1, 'https://ror.org/02cyw3861 Observatoire Terre et environnement de Lorraine'),
(112057, 'https://ror.org/02czsnj07', 'en', 1, 'https://ror.org/02czsnj07 Deakin University'),
(112058, 'https://ror.org/02d1jet54', 'en', 1, 'https://ror.org/02d1jet54 Society for Art in Education å…¬ē›Šč²”å›£ę³•äŗŗę•™č‚²ē¾Žč”“ęŒÆčˆˆä¼š'),
(112059, 'https://ror.org/02d1wkd30', 'nl', 1, 'https://ror.org/02d1wkd30 Municipality of Nijmegen'),
(112060, 'https://ror.org/02d494190', 'en', 1, 'https://ror.org/02d494190 The Africa Institute'),
(112061, 'https://ror.org/02d4bgz76', 'pt', 1, 'https://ror.org/02d4bgz76 Aerogare Civil das Lajes'),
(112062, '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'),
(112063, 'https://ror.org/02d4maz67', 'en', 1, 'https://ror.org/02d4maz67 SUNY Maritime College'),
(112064, 'https://ror.org/02db2t754', 'es', 1, 'https://ror.org/02db2t754 Instituto de Biodiversidad de Ecosistemas AntƔrticos y SubantƔrticos'),
(112065, 'https://ror.org/02dbwrk72', 'en', 1, 'https://ror.org/02dbwrk72 United States Naval Medical Research Unit SOUTH'),
(112066, 'https://ror.org/02dc4wm38', 'pt', 1, 'https://ror.org/02dc4wm38 Sociedade Portuguesa de Osteoporose e DoenƧas Ɠsseas Metabólicas'),
(112067, 'https://ror.org/02dfqxw09', 'en', 1, 'https://ror.org/02dfqxw09 Photon Science Innovation Center äø€čˆ¬č²”å›£ę³•äŗŗå…‰ē§‘å­¦ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼, å…‰ē§‘å­¦ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(112068, 'https://ror.org/02dgjyy92', 'en', 1, 'https://ror.org/02dgjyy92 Universidad de Miami University of Miami UniversitƩ de miami'),
(112069, 'https://ror.org/02dha3k90', 'en', 1, 'https://ror.org/02dha3k90 Punjab Institute of Neurosciences'),
(112070, 'https://ror.org/02dhpke20', 'pt', 1, 'https://ror.org/02dhpke20 Centro de Investigação em MatemÔtica e Aplicações'),
(112071, 'https://ror.org/02dk8t214', 'en', 1, 'https://ror.org/02dk8t214 ERN PaedCan'),
(112072, 'https://ror.org/02dkt6479', 'en', 1, 'https://ror.org/02dkt6479 National Center for Presons with Severe Intellectual Disabilities, Nozominosono ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹é‡åŗ¦ēŸ„ēš„éšœå®³č€…ē·åˆę–½čØ­ć®ćžćæć®åœ’'),
(112073, 'https://ror.org/02dn7x778', 'fr', 1, 'https://ror.org/02dn7x778 UniversitƩ Bourgogne Franche-ComtƩ'),
(112074, 'https://ror.org/02dwcqs71', 'en', 1, 'https://ror.org/02dwcqs71 All India Institute of Medical Sciences'),
(112075, 'https://ror.org/02dx4dc92', 'en', 1, 'https://ror.org/02dx4dc92 Universitetet i Innlandet University of Inland Norway'),
(112076, 'https://ror.org/02dycg053', 'pt', 1, 'https://ror.org/02dycg053 Escola Superior de Educação de João de Deus'),
(112077, 'https://ror.org/02dyjk442', 'en', 1, 'https://ror.org/02dyjk442 Politechnika Śląska Silesian University of Technology'),
(112078, 'https://ror.org/02e0y6e06', 'fr', 1, 'https://ror.org/02e0y6e06 DƩlƩgation Paris 5'),
(112079, 'https://ror.org/02e2yrp11', 'en', 1, 'https://ror.org/02e2yrp11 The Japan Council of Traffic Science äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬äŗ¤é€šē§‘å­¦å­¦ä¼š'),
(112080, 'https://ror.org/02e698f45', 'es', 1, 'https://ror.org/02e698f45 Universidad Tecnológica de Chile INACAP'),
(112081, 'https://ror.org/02e6jwz14', 'en', 1, 'https://ror.org/02e6jwz14 Radioactive Waste Management Funding and Research Center å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›ē’°å¢ƒę•“å‚™äæƒé€²ćƒ»č³‡é‡‘ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(112082, 'https://ror.org/02e6qgh10', 'no_lang_code', 1, 'https://ror.org/02e6qgh10 Omnidea (Portugal)'),
(112083, 'https://ror.org/02e7b5302', 'en', 1, 'https://ror.org/02e7b5302 Nanyang Technological University Universiti Teknologi Nanyang ą®Øą®©ąÆą®Æą®¾ą®™ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ å—ę“‹ē†å·„å¤§å­¦'),
(112084, 'https://ror.org/02e84js70', 'pt', 1, 'https://ror.org/02e84js70 Sociedade Portuguesa de Sexologia ClĆ­nica'),
(112085, 'https://ror.org/02e9whs18', 'en', 1, 'https://ror.org/02e9whs18 Guangzhou Institute of Science and Technology å¹æå·žē†å·„å­¦é™¢'),
(112086, 'https://ror.org/02eag8530', 'en', 1, 'https://ror.org/02eag8530 Japan Acupuncture & Moxibustion Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é¼ēøåø«ä¼š'),
(112087, 'https://ror.org/02eczew70', 'es', 1, 'https://ror.org/02eczew70 Fundación JardĆ­n BotĆ”nico ā€œJoaquĆ­n Antonio Uribeā€ de MedellĆ­n'),
(112088, 'https://ror.org/02ed17502', 'en', 1, 'https://ror.org/02ed17502 Guilin Institute of Information Technology ę”‚ęž—äæ”ęÆē§‘ęŠ€å­¦é™¢'),
(112089, 'https://ror.org/02ed58631', 'pt', 1, 'https://ror.org/02ed58631 Centro de Psicologia Aplicada do ExƩrcito'),
(112090, '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'),
(112091, 'https://ror.org/02eg1qz05', 'en', 1, 'https://ror.org/02eg1qz05 Malla Reddy University'),
(112092, 'https://ror.org/02eqqc684', 'pt', 1, 'https://ror.org/02eqqc684 Centro Social Paroquial São Romão de Carnaxide'),
(112093, 'https://ror.org/02er63282', 'pt', 1, 'https://ror.org/02er63282 Centro de LinguĆ­stica'),
(112094, 'https://ror.org/02erf0j28', 'en', 1, 'https://ror.org/02erf0j28 Toshkent Amaliy Fanlar Universiteti University of Tashkent for Applied Sciences Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Университет ŠŸŃ€ŠøŠŗŠ»Š°Š“Š½Ń‹Ń… ŠŠ°ŃƒŠŗ'),
(112095, 'https://ror.org/02erxsp04', 'en', 1, 'https://ror.org/02erxsp04 Animal Production Research Centre'),
(112096, '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'),
(112097, 'https://ror.org/02et3py29', 'en', 1, 'https://ror.org/02et3py29 Japan Association of Geriatric Health Services Facilities å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č€äŗŗäæå„ę–½čØ­å”ä¼š'),
(112098, 'https://ror.org/02ett6548', 'en', 1, 'https://ror.org/02ett6548 Epworth Hospital'),
(112099, 'https://ror.org/02ex6cf31', 'en', 1, 'https://ror.org/02ex6cf31 Brookhaven National Laboratory'),
(112100, 'https://ror.org/02ezqbp79', 'en', 1, 'https://ror.org/02ezqbp79 Anatolii Pidhornyi Institute of Power Machines and Systems Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ енергетичних машин і систем ім. А. М. ŠŸŃ–Š“Š³Š¾Ń€Š½Š¾Š³Š¾'),
(112101, 'https://ror.org/02f009v59', 'en', 1, 'https://ror.org/02f009v59 University of Haifa Ų¬Ų§Ł…Ų¹Ų© حيفا'),
(112102, 'https://ror.org/02f09cx53', 'en', 1, 'https://ror.org/02f09cx53 Department of Science and Technology of Liaoning Province č¾½å®ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(112103, 'https://ror.org/02f0vsw63', 'en', 1, 'https://ror.org/02f0vsw63 Indian Institute of Technology Jammu'),
(112104, 'https://ror.org/02f6dcw23', 'en', 1, 'https://ror.org/02f6dcw23 The University of Texas Health Science Center at San Antonio'),
(112105, 'https://ror.org/02fa3aq29', 'en', 1, 'https://ror.org/02fa3aq29 McMaster University'),
(112106, 'https://ror.org/02ff27430', 'en', 0, 'https://ror.org/02ff27430 KaposvƔri Egyetem University of KaposvƔr'),
(112107, 'https://ror.org/02fhpy910', 'pt', 1, 'https://ror.org/02fhpy910 Centro de Estudos do Território Cultura e Desenvolvimento'),
(112108, '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'),
(112109, 'https://ror.org/02fkrnz10', 'it', 1, 'https://ror.org/02fkrnz10 Regional Science Association International'),
(112110, 'https://ror.org/02fnqta57', 'no_lang_code', 1, 'https://ror.org/02fnqta57 VTM Global, VTM Global (Portugal)'),
(112111, 'https://ror.org/02fpcfw82', 'en', 1, 'https://ror.org/02fpcfw82 GlaxoSmithKline Consumer Healthcare Pte Ltd, GlaxoSmithKline Consumer Healthcare Pte Ltd (Singapore)'),
(112112, 'https://ror.org/02fpe6x37', 'fr', 1, 'https://ror.org/02fpe6x37 Plateforme d''Analyses et de CaractƩrisations Chimie Balard'),
(112113, 'https://ror.org/02fq9b702', 'en', 1, 'https://ror.org/02fq9b702 Western Atlantic University School of Medicine'),
(112114, 'https://ror.org/02fqgjy67', 'en', 1, 'https://ror.org/02fqgjy67 North-Eastern University, Gombe'),
(112115, 'https://ror.org/02fr96y79', 'en', 1, 'https://ror.org/02fr96y79 Nature Conservation Society of Hokkaido äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“č‡Ŗē„¶äæč­·å”ä¼š'),
(112116, 'https://ror.org/02fvxw605', 'no_lang_code', 1, 'https://ror.org/02fvxw605 WINNING Scientific Management (Portugal)'),
(112117, 'https://ror.org/02fvywg07', 'en', 1, 'https://ror.org/02fvywg07 Massachusetts College of Pharmacy and Health Sciences'),
(112118, 'https://ror.org/02fx8f125', 'en', 1, 'https://ror.org/02fx8f125 United States Air Force Global Strike Command'),
(112119, 'https://ror.org/02fxtvv50', 'pt', 1, 'https://ror.org/02fxtvv50 Centro NOVAFRICA'),
(112120, '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'),
(112121, 'https://ror.org/02fznj749', 'no_lang_code', 1, 'https://ror.org/02fznj749 Flying Sharks Consultoria e Inovação (Portugal), Sharks Consulting and Innovation'),
(112122, 'https://ror.org/02g2x7380', 'en', 1, 'https://ror.org/02g2x7380 Associazione Italiana per la Ricerca sul Cancro Italian Association for Cancer Research'),
(112123, 'https://ror.org/02g3k6d74', 'no_lang_code', 1, 'https://ror.org/02g3k6d74 Lima Implantes Portugal SU (Portugal)'),
(112124, 'https://ror.org/02g5p4n58', 'no_lang_code', 1, 'https://ror.org/02g5p4n58 AbbVie (United States)'),
(112125, 'https://ror.org/02g7kyh11', 'en', 0, 'https://ror.org/02g7kyh11 Shibata Gakuen University ęŸ“ē”°å­¦åœ’å¤§å­¦'),
(112126, 'https://ror.org/02g7qcb42', 'eu', 1, 'https://ror.org/02g7qcb42 Osakidetza'),
(112127, 'https://ror.org/02g818g52', 'pt', 1, 'https://ror.org/02g818g52 ICI - Instituto de CiĆŖncias Integradas, ICI - Instituto de CiĆŖncias Integradas (Portugal)'),
(112128, 'https://ror.org/02gafa949', 'en', 1, 'https://ror.org/02gafa949 Dechinta Bush University Centre for Research and Learning'),
(112129, 'https://ror.org/02gagwm66', 'en', 1, 'https://ror.org/02gagwm66 Kobe Parks and Greenery Association å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøåø‚å…¬åœ’ē·‘åŒ–å”ä¼š'),
(112130, 'https://ror.org/02gaw1s20', 'fr', 1, 'https://ror.org/02gaw1s20 Laboratoire de Chimie'),
(112131, 'https://ror.org/02gb0hd06', 'en', 1, 'https://ror.org/02gb0hd06 United States Army Institute of Surgical Research'),
(112132, 'https://ror.org/02gdy0611', 'no_lang_code', 1, 'https://ror.org/02gdy0611 Building Global Innovators (Portugal), Building Global Innovators, S.A.'),
(112133, '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'),
(112134, 'https://ror.org/02gjq6d42', 'pt', 1, 'https://ror.org/02gjq6d42 Casa da AmƩrica Latina'),
(112135, 'https://ror.org/02gk0fv06', 'en', 1, 'https://ror.org/02gk0fv06 Al Zaytona University of Science and Technology Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†Ł„ŁˆŲ¬ŁŠŲ§'),
(112136, 'https://ror.org/02gkb4040', 'en', 1, 'https://ror.org/02gkb4040 Auckland District Health Board'),
(112137, 'https://ror.org/02gkxja18', 'en', 1, 'https://ror.org/02gkxja18 Housing and Community Foundation äø€čˆ¬č²”å›£ę³•äŗŗćƒć‚¦ć‚øćƒ³ć‚°ć‚¢ćƒ³ćƒ‰ć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£č²”å›£'),
(112138, '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)'),
(112139, 'https://ror.org/02gp58w27', 'pt', 1, 'https://ror.org/02gp58w27 Portugal Direção-Geral do Tesouro e Finanças'),
(112140, 'https://ror.org/02grwav03', 'en', 1, 'https://ror.org/02grwav03 NorESM Climate Modeling Consortium'),
(112141, 'https://ror.org/02gs2e959', 'en', 1, 'https://ror.org/02gs2e959 Royal North Shore Hospital'),
(112142, 'https://ror.org/02gs3vg83', 'en', 1, 'https://ror.org/02gs3vg83 ARC Centre of Excellence for Coherent X-ray Science'),
(112143, 'https://ror.org/02gte1z30', 'en', 1, 'https://ror.org/02gte1z30 North Caucasian State Academy Деверо-ŠšŠ°Š²ŠŗŠ°Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(112144, 'https://ror.org/02gtj3932', 'es', 1, 'https://ror.org/02gtj3932 Universidad de Diseño, Innovación y Tecnología'),
(112145, 'https://ror.org/02gyw3498', 'en', 1, 'https://ror.org/02gyw3498 P.E.L.C. - Private Entomological Laboratory and Collection'),
(112146, 'https://ror.org/02h0g9r59', 'fr', 1, 'https://ror.org/02h0g9r59 Institut UTINAM'),
(112147, 'https://ror.org/02h1qe123', 'en', 1, 'https://ror.org/02h1qe123 Japan Arts Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę–‡åŒ–č—č”“č²”å›£'),
(112148, 'https://ror.org/02h3vcz70', 'fr', 1, 'https://ror.org/02h3vcz70 Sciences Po Lyon'),
(112149, 'https://ror.org/02h9n4675', 'no_lang_code', 1, 'https://ror.org/02h9n4675 ERNICA'),
(112150, 'https://ror.org/02ha2pr67', 'en', 1, 'https://ror.org/02ha2pr67 Public Welfare Institute of Scientific Research Foundation äø€čˆ¬č²”å›£ę³•äŗŗę°‘ē”Ÿē§‘å­¦å”ä¼š'),
(112151, 'https://ror.org/02hcsa680', 'it', 1, 'https://ror.org/02hcsa680 IFOM'),
(112152, 'https://ror.org/02hdf6119', 'it', 1, 'https://ror.org/02hdf6119 Istituto di Scienze Marine del Consiglio Nazionale delle Ricerche'),
(112153, 'https://ror.org/02hdk7n88', 'en', 1, 'https://ror.org/02hdk7n88 Hachinohe City Hospital å…«ęˆøåø‚ē«‹åø‚ę°‘ē—…é™¢'),
(112154, 'https://ror.org/02heb2n75', 'en', 1, 'https://ror.org/02heb2n75 Ministry of Innovation, Science and Technology'),
(112155, 'https://ror.org/02hh2kw42', 'en', 1, 'https://ror.org/02hh2kw42 Institut für Agrarwissenschaften Institute of Agricultural Sciences'),
(112156, 'https://ror.org/02hhndj92', 'en', 1, 'https://ror.org/02hhndj92 University of Michigan Biological Station'),
(112157, 'https://ror.org/02hmjzt55', 'en', 1, 'https://ror.org/02hmjzt55 Badan Riset dan Inovasi Nasional National Research and Innovation Agency'),
(112158, 'https://ror.org/02hp2td73', 'en', 0, 'https://ror.org/02hp2td73 Materials Discovery Research Institute'),
(112159, 'https://ror.org/02hpadn98', 'en', 1, 'https://ror.org/02hpadn98 Bielefeld University UniversitƤt Bielefeld'),
(112160, 'https://ror.org/02hqkr514', 'en', 1, 'https://ror.org/02hqkr514 Unibersidad ng Pilipinas University of the Philippines System'),
(112161, 'https://ror.org/02hr47071', 'en', 1, 'https://ror.org/02hr47071 Center for International Relations and International Security'),
(112162, 'https://ror.org/02hrbeb75', 'en', 1, 'https://ror.org/02hrbeb75 KeyLogic, KeyLogic (United States)'),
(112163, 'https://ror.org/02htqyr59', 'en', 1, 'https://ror.org/02htqyr59 Akademia Obrony Narodowej National Defence University of Warsaw'),
(112164, 'https://ror.org/02htvcm84', 'en', 1, 'https://ror.org/02htvcm84 Space Delta 9'),
(112165, 'https://ror.org/02hx1fs81', 'pt', 1, 'https://ror.org/02hx1fs81 Centro de Investigação Formação Inovação e Intervenção em Desporto'),
(112166, 'https://ror.org/02hyp2675', 'en', 1, 'https://ror.org/02hyp2675 Haryugaoka Hospital å…¬ē›Šč²”å›£ę³•äŗŗé‡‘ę£®å’Œåæƒä¼šé‡ē”Ÿćƒ¶äø˜ē—…é™¢'),
(112167, 'https://ror.org/02hyvqv96', 'en', 1, 'https://ror.org/02hyvqv96 Sexuality Education Resource Centre'),
(112168, 'https://ror.org/02j1as185', 'en', 1, 'https://ror.org/02j1as185 Narimasu Kosei Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ēæ ä¼šęˆå¢—åŽšē”Ÿē—…é™¢'),
(112169, 'https://ror.org/02j226352', 'pt', 1, 'https://ror.org/02j226352 Instituto de Historia da Arte'),
(112170, 'https://ror.org/02j3zj861', 'en', 1, 'https://ror.org/02j3zj861 Institut für Geodäsie und Photogrammetrie Institute of Geodesy and Photogrammetry'),
(112171, 'https://ror.org/02j4mf075', 'id', 1, 'https://ror.org/02j4mf075 Haluoleo University Universitas Halu Oleo'),
(112172, 'https://ror.org/02j9p0d64', 'id', 1, 'https://ror.org/02j9p0d64 Indonesian Palm Oil Technology Institute Institut Teknologi Sawit Indonesia المعهد Ų§Ł„Ų„Ł†ŲÆŁˆŁ†ŁŠŲ³ŁŠ Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ زيت Ų§Ł„Ł†Ų®ŁŠŁ„'),
(112173, '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'),
(112174, 'https://ror.org/02jcak191', 'en', 1, 'https://ror.org/02jcak191 Japan Bicycle Promotion Institute äø€čˆ¬č²”å›£ę³•äŗŗč‡Ŗč»¢č»Šē”£ę„­ęŒÆčˆˆå”ä¼š'),
(112175, 'https://ror.org/02jdepa55', 'en', 0, 'https://ror.org/02jdepa55 Food Research Institute Prague'),
(112176, 'https://ror.org/02jf3sn72', 'en', 1, 'https://ror.org/02jf3sn72 Islamia College of Science and Commerce, Srinagar'),
(112177, 'https://ror.org/02jpyxx33', 'en', 1, 'https://ror.org/02jpyxx33 MicroMir ŠœŠøŠŗŃ€Š¾Š¼ŠøŃ€'),
(112178, 'https://ror.org/02jqkb192', 'no_lang_code', 1, 'https://ror.org/02jqkb192 Biogen (United States)'),
(112179, 'https://ror.org/02jtacs89', 'pt', 1, 'https://ror.org/02jtacs89 Infraestrutura de Investigação para a Biomassa e a Bioenergia'),
(112180, 'https://ror.org/02jtk7k02', 'en', 1, 'https://ror.org/02jtk7k02 Technical University of Liberec TechnickĆ” univerzita v Liberci'),
(112181, 'https://ror.org/02jvjmd55', 'en', 1, 'https://ror.org/02jvjmd55 University of New Mexico Health Sciences Center'),
(112182, 'https://ror.org/02jwd3b35', 'en', 1, 'https://ror.org/02jwd3b35 National School of Electronics and Telecommunications of Sfax, Tunisia'),
(112183, 'https://ror.org/02jx3x895', 'en', 1, 'https://ror.org/02jx3x895 Coleg Prifysgol Llundain University College London'),
(112184, 'https://ror.org/02jxg4w38', 'pt', 1, 'https://ror.org/02jxg4w38 Sociedade Portuguesa de Hematologia');
INSERT INTO `rors` VALUES
(112185, 'https://ror.org/02jz0s612', 'en', 1, 'https://ror.org/02jz0s612 RINRI Institute of Ethics äø€čˆ¬ē¤¾å›£ę³•äŗŗå€«ē†ē ”ē©¶ę‰€'),
(112186, 'https://ror.org/02k09n368', 'en', 1, 'https://ror.org/02k09n368 Barcelona School of Economics Escuela de EconomĆ­a de Barcelona'),
(112187, 'https://ror.org/02k3cxs74', 'en', 1, 'https://ror.org/02k3cxs74 St Vincents Institute of Medical Research'),
(112188, 'https://ror.org/02k3nmd98', 'en', 1, 'https://ror.org/02k3nmd98 Program for Climate Model Diagnosis and Intercomparison'),
(112189, 'https://ror.org/02k5qyv44', 'pt', 1, 'https://ror.org/02k5qyv44 Centro Interpretativo do Tapete de Arraiolos'),
(112190, 'https://ror.org/02k7v4d05', 'en', 1, 'https://ror.org/02k7v4d05 University of Bern UniversitƠ di Berna UniversitƤt Bern UniversitƩ de Berne'),
(112191, 'https://ror.org/02kb5ve22', 'en', 1, 'https://ror.org/02kb5ve22 American Musicological Society'),
(112192, 'https://ror.org/02kb86z46', 'en', 1, 'https://ror.org/02kb86z46 Tajimi City Pottery Design and Technical Center å¤šę²»č¦‹åø‚é™¶ē£å™Øę„åŒ ē ”ē©¶ę‰€'),
(112193, 'https://ror.org/02kdcg676', 'pt', 1, 'https://ror.org/02kdcg676 Museu de Arte Arquitetura e Tecnologia'),
(112194, 'https://ror.org/02kf3wg72', 'pt', 1, 'https://ror.org/02kf3wg72 Eborae Mvsica'),
(112195, 'https://ror.org/02kg4rn42', 'en', 1, 'https://ror.org/02kg4rn42 ICAR - Agricultural Technology Application Research Institute'),
(112196, 'https://ror.org/02kgjn162', 'no_lang_code', 1, 'https://ror.org/02kgjn162 Union Nikola Tesla University Универзитет Унион ŠŠøŠŗŠ¾Š»Š° Тесла'),
(112197, 'https://ror.org/02khkrx67', 'id', 1, 'https://ror.org/02khkrx67 Universitas Buana Perjuangan Karawang'),
(112198, 'https://ror.org/02kj7wx32', 'en', 1, 'https://ror.org/02kj7wx32 Real Estate Transaction Improvement Organization äø€čˆ¬č²”å›£ę³•äŗŗäøå‹•ē”£é©ę­£å–å¼•ęŽØé€²ę©Ÿę§‹'),
(112199, 'https://ror.org/02kjypr98', 'en', 1, 'https://ror.org/02kjypr98 The Foundation for the Promotion of Industrial Science äø€čˆ¬č²”å›£ę³•äŗŗē”Ÿē”£ęŠ€č”“ē ”ē©¶å„ØåŠ±ä¼š'),
(112200, 'https://ror.org/02kkhtm43', 'en', 1, 'https://ror.org/02kkhtm43 CO2-free Hydrogen Energy Supply-chain Technology Research Association ęŠ€č”“ē ”ē©¶ēµ„åˆCO2ćƒ•ćƒŖćƒ¼ę°“ē“ ć‚µćƒ—ćƒ©ć‚¤ćƒć‚§ćƒ¼ćƒ³ęŽØé€²ę©Ÿę§‹'),
(112201, 'https://ror.org/02kmtwp90', 'en', 1, 'https://ror.org/02kmtwp90 Government of Portugal Governo de Portugal'),
(112202, 'https://ror.org/02kn5av21', 'pt', 1, 'https://ror.org/02kn5av21 Instituto Europeu'),
(112203, 'https://ror.org/02ks8qq67', 'en', 1, 'https://ror.org/02ks8qq67 Hungarian Academy of Sciences Magyar TudomƔnyos AkadƩmia'),
(112204, 'https://ror.org/02ksxxs60', 'pt', 1, 'https://ror.org/02ksxxs60 Centro de Literatura Portuguesa'),
(112205, 'https://ror.org/02kv0px94', 'en', 1, 'https://ror.org/02kv0px94 Hadhramout University Ų¬Ų§Ł…Ų¹Ų© Ų­Ų¶Ų±Ł…ŁˆŲŖ'),
(112206, 'https://ror.org/02kwxh770', 'pt', 1, 'https://ror.org/02kwxh770 PresidĆŖncia da RepĆŗblica Portuguesa'),
(112207, 'https://ror.org/02kyzc549', 'en', 1, 'https://ror.org/02kyzc549 U.S. Army Information Systems Engineering Command'),
(112208, 'https://ror.org/02m1hjw88', 'en', 1, 'https://ror.org/02m1hjw88 Nagano Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗé•·é‡ŽēœŒēœ‹č­·å”ä¼š'),
(112209, 'https://ror.org/02m5s2d07', 'en', 1, 'https://ror.org/02m5s2d07 Japan Agricultural Mechanization Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č¾²ę„­ę©Ÿę¢°åŒ–å”ä¼š'),
(112210, 'https://ror.org/02m69r871', 'en', 1, 'https://ror.org/02m69r871 Maine Mineral & Gem Museum'),
(112211, 'https://ror.org/02m6qk538', 'en', 1, 'https://ror.org/02m6qk538 Japan Project-Industry Council äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ­ć‚øć‚§ć‚Æćƒˆē”£ę„­å”č­°ä¼š'),
(112212, 'https://ror.org/02m9sez84', 'ta', 1, 'https://ror.org/02m9sez84 Bangko Sentral ng Pilipinas Central Bank of the Philippines'),
(112213, 'https://ror.org/02ma4wv74', 'en', 1, 'https://ror.org/02ma4wv74 King Abdulaziz University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ²'),
(112214, 'https://ror.org/02ma57s91', 'es', 1, 'https://ror.org/02ma57s91 Universidad de Santiago de Chile University of Santiago Chile'),
(112215, 'https://ror.org/02mahbh18', 'pt', 1, 'https://ror.org/02mahbh18 Conservatório de Música de Barcelos'),
(112216, 'https://ror.org/02mchxy08', 'en', 1, 'https://ror.org/02mchxy08 Thermal Management Materials and technology Research Association ęœŖåˆ©ē”Øē†±ć‚Øćƒćƒ«ć‚®ćƒ¼é©ę–°ēš„ę“»ē”ØęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(112217, 'https://ror.org/02mebaz96', 'en', 1, 'https://ror.org/02mebaz96 Research Infrastructure for Fermilab Experiments VýzkumnÔ infrastruktura pro experimenty ve Fermilab'),
(112218, 'https://ror.org/02meqw785', 'en', 1, 'https://ror.org/02meqw785 The SKYLARK Food Science Institute å…¬ē›Šč²”å›£ę³•äŗŗć™ć‹ć„ć‚‰ćƒ¼ććƒ•ćƒ¼ćƒ‰ć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶ę‰€'),
(112219, 'https://ror.org/02mft8527', 'en', 1, 'https://ror.org/02mft8527 Bentley Health Service'),
(112220, 'https://ror.org/02mgg8p98', 'en', 1, 'https://ror.org/02mgg8p98 Information Center for Building Administration äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰č”Œę”æęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(112221, 'https://ror.org/02mgmsz22', 'fr', 1, 'https://ror.org/02mgmsz22 Gouvernance et dƩveloppement insulaire'),
(112222, 'https://ror.org/02mh9a093', 'fr', 1, 'https://ror.org/02mh9a093 HÓpital de la Pitié-Salpêtrière, Pitié-Salpêtrière Hospital'),
(112223, 'https://ror.org/02mhm5w65', 'en', 1, 'https://ror.org/02mhm5w65 Shanti Volunteer Association å…¬ē›Šē¤¾å›£ę³•äŗŗć‚·ćƒ£ćƒ³ćƒ†ć‚£å›½éš›ćƒœćƒ©ćƒ³ćƒ†ć‚£ć‚¢ä¼š'),
(112224, 'https://ror.org/02mjn1p68', 'en', 1, 'https://ror.org/02mjn1p68 Tottori Swine & Poultry Experiment Station é³„å–ēœŒäø­å°å®¶ē•œč©¦éØ“å “'),
(112225, 'https://ror.org/02mp3jf37', 'pt', 1, 'https://ror.org/02mp3jf37 Sociedade Portuguesa de Geotecnia'),
(112226, 'https://ror.org/02mpq6x41', 'en', 1, 'https://ror.org/02mpq6x41 University of Illinois Chicago UniversitƩ de l''illinois Ơ chicago'),
(112227, 'https://ror.org/02mqxz690', 'en', 1, 'https://ror.org/02mqxz690 Harajuku Rehabilitation Hospital äø€čˆ¬ē¤¾å›£ę³•äŗŗå·ØęØ¹ć®ä¼šåŽŸå®æćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(112228, 'https://ror.org/02mqz7148', 'no_lang_code', 1, 'https://ror.org/02mqz7148 3M (Portugal)'),
(112229, 'https://ror.org/02mr55435', 'en', 1, 'https://ror.org/02mr55435 Yokohama Medical Associations äø€čˆ¬ē¤¾å›£ę³•äŗŗęØŖęµœåø‚åŒ»åø«ä¼š'),
(112230, 'https://ror.org/02mvf8z51', 'en', 1, 'https://ror.org/02mvf8z51 Alnukhba University College ŁƒŁ„ŁŠŲ© النخبة الجامعة'),
(112231, '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'),
(112232, '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'),
(112233, 'https://ror.org/02mxx0b77', 'en', 1, 'https://ror.org/02mxx0b77 Carnegie Mellon Portugal'),
(112234, 'https://ror.org/02my5hx05', 'fr', 1, 'https://ror.org/02my5hx05 Technologie et Ethnologie des Mondes PrƩhistoriqueS'),
(112235, 'https://ror.org/02mzn7s88', 'en', 1, 'https://ror.org/02mzn7s88 Prifysgol De Cymru University of South Wales'),
(112236, 'https://ror.org/02n14ez29', 'en', 1, 'https://ror.org/02n14ez29 Naval Medical Center San Diego'),
(112237, 'https://ror.org/02n2b6780', 'id', 1, 'https://ror.org/02n2b6780 Bahaudin Mudhary Madura University Universitas Bahaudin Mudhary Madura'),
(112238, 'https://ror.org/02n2fzt79', 'en', 1, 'https://ror.org/02n2fzt79 Boston College'),
(112239, 'https://ror.org/02n415q13', 'en', 1, 'https://ror.org/02n415q13 Curtin University'),
(112240, 'https://ror.org/02n470s97', 'en', 1, 'https://ror.org/02n470s97 Tobacco Institute of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćŸć°ć“å”ä¼š'),
(112241, 'https://ror.org/02n54r639', 'en', 1, 'https://ror.org/02n54r639 Smart Energy LAB'),
(112242, '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)'),
(112243, 'https://ror.org/02n5e6456', 'en', 1, 'https://ror.org/02n5e6456 Peninsula Health'),
(112244, 'https://ror.org/02n6c9837', 'no_lang_code', 1, 'https://ror.org/02n6c9837 Sanofi (France)'),
(112245, 'https://ror.org/02n7ax847', 'fr', 1, 'https://ror.org/02n7ax847 Centre Pluridisciplinaire Textes et Cultures'),
(112246, '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'),
(112247, '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)'),
(112248, 'https://ror.org/02ncby374', 'en', 1, 'https://ror.org/02ncby374 CHEM.I.NET CO., Ltd., CHEM.I.NET CO., Ltd. (South Korea) ģ¼ģ•„ģ“ė„·(주)'),
(112249, 'https://ror.org/02ncy5p18', 'en', 1, 'https://ror.org/02ncy5p18 Research on healthcare performance'),
(112250, 'https://ror.org/02ndn7046', 'en', 1, 'https://ror.org/02ndn7046 Information Center For Petroleum Exploration And Production äø€čˆ¬č²”å›£ę³•äŗŗēŸ³ę²¹é–‹ē™ŗęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(112251, 'https://ror.org/02ngp7z50', 'en', 1, 'https://ror.org/02ngp7z50 Saga Livestock Research Laboratory ä½č³€ēœŒē•œē”£č©¦éØ“å “'),
(112252, 'https://ror.org/02njk4j98', 'en', 1, 'https://ror.org/02njk4j98 The Nukada Institute for Medical and Biological Research å…¬ē›Šč²”å›£ę³•äŗŗé”ē”°åŒ»å­¦ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(112253, 'https://ror.org/02nkdxk79', 'en', 1, 'https://ror.org/02nkdxk79 Universidad de la Commonwealth de Virginia Virginia Commonwealth University'),
(112254, 'https://ror.org/02nkp0d65', 'en', 1, 'https://ror.org/02nkp0d65 JAäø‰é‡åŽšē”Ÿé€£ę¾é˜Ŗäø­å¤®ē·åˆē—…é™¢ Matsuzaka Central General Hospital'),
(112255, 'https://ror.org/02nm03p70', 'en', 1, 'https://ror.org/02nm03p70 Maulana Azad University Jodhpur'),
(112256, 'https://ror.org/02nnhbq91', 'no_lang_code', 1, 'https://ror.org/02nnhbq91 Asahi Glass (Japan) ę—­ē”å­'),
(112257, 'https://ror.org/02nnr0a52', 'en', 1, 'https://ror.org/02nnr0a52 Anshin Zaidan äø€čˆ¬č²”å›£ę³•äŗŗäø­å°ä¼ę„­ē½å®³č£œå„Ÿå…±ęøˆē¦ē„‰č²”å›£'),
(112258, 'https://ror.org/02nq0tm67', 'en', 1, 'https://ror.org/02nq0tm67 Kenkoigaku Associaton äø€čˆ¬č²”å›£ę³•äŗŗå„åŗ·åŒ»å­¦å”ä¼š'),
(112259, 'https://ror.org/02nrkmh53', 'it', 1, 'https://ror.org/02nrkmh53 Agenzia Regionale per la Protezione ambientale Marche'),
(112260, 'https://ror.org/02nv9nh90', 'en', 1, 'https://ror.org/02nv9nh90 Rajah Serfoji Government College (Autonomous)'),
(112261, 'https://ror.org/02nvdf845', 'pt', 1, 'https://ror.org/02nvdf845 Sistema Nacional de Informação GeogrÔfica'),
(112262, 'https://ror.org/02nwrwa70', 'fr', 1, 'https://ror.org/02nwrwa70 Institut national du service public (INSP)'),
(112263, 'https://ror.org/02nx8n605', 'no_lang_code', 1, 'https://ror.org/02nx8n605 TU9'),
(112264, 'https://ror.org/02nyh5931', 'pt', 1, 'https://ror.org/02nyh5931 Sociedade Portuguesa de Anatomia Patológica'),
(112265, 'https://ror.org/02p066h55', 'en', 1, 'https://ror.org/02p066h55 Pars University of Art and Architecture دانؓگاه Ł…Ų¹Ł…Ų§Ų±ŪŒ و هنر پارس'),
(112266, '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'),
(112267, 'https://ror.org/02p2hdv07', 'en', 1, 'https://ror.org/02p2hdv07 Japan Center for International Exchange å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(112268, 'https://ror.org/02p2qrw13', 'en', 1, 'https://ror.org/02p2qrw13 Ningxia Water Conservancy å®å¤å›žę—č‡Ŗę²»åŒŗę°“åˆ©åŽ…, å®å¤ę°“åˆ©åŽ…'),
(112269, 'https://ror.org/02p5f6d43', 'pt', 1, 'https://ror.org/02p5f6d43 AMEC Metropolitana'),
(112270, 'https://ror.org/02p5nh382', 'pt', 1, 'https://ror.org/02p5nh382 SPACE Portugal'),
(112271, 'https://ror.org/02p702482', 'en', 1, 'https://ror.org/02p702482 Institut für Molekularbiologie und Biophysik Institute of Molecular Biology and Biophysics'),
(112272, 'https://ror.org/02p87jp31', 'es', 1, 'https://ror.org/02p87jp31 Biblioteca del Congreso Nacional de Chile'),
(112273, '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 ą¦‰ą¦¤ą§ą¦¤ą§°-পূব ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø আৰু ą¦Ŗą§ą§°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą§°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø'),
(112274, 'https://ror.org/02pbb4g34', 'no_lang_code', 1, 'https://ror.org/02pbb4g34 Tecnifar, Tecnifar (Portugal)'),
(112275, 'https://ror.org/02pcnxw09', 'en', 1, 'https://ror.org/02pcnxw09 Lumoscribe, Lumoscribe (Cyprus)'),
(112276, 'https://ror.org/02ph9d254', 'en', 1, 'https://ror.org/02ph9d254 David Umahi Federal University of Health Sciences Uburu'),
(112277, 'https://ror.org/02pjbsb60', 'en', 1, 'https://ror.org/02pjbsb60 The Japan Landslide Society å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åœ°ć™ć¹ć‚Šå­¦ä¼š'),
(112278, 'https://ror.org/02pk1bn41', 'en', 1, 'https://ror.org/02pk1bn41 Kagoshima Prefectural Institute of Industrial Technology é¹æå…å³¶ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(112279, 'https://ror.org/02pnhwp93', 'no_lang_code', 1, 'https://ror.org/02pnhwp93 Balaton Limnological Institute Balatoni Limnológiai Intézet'),
(112280, 'https://ror.org/02pr0xw82', 'fr', 1, 'https://ror.org/02pr0xw82 Laboratoire Chimie de l''Environnement'),
(112281, 'https://ror.org/02ptcz660', 'en', 1, 'https://ror.org/02ptcz660 Iwate International Association å…¬ē›Šč²”å›£ę³•äŗŗå²©ę‰‹ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(112282, '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)'),
(112283, 'https://ror.org/02q06yt34', 'no_lang_code', 1, 'https://ror.org/02q06yt34 Toxfinder (Portugal)'),
(112284, 'https://ror.org/02q0kge84', 'en', 1, 'https://ror.org/02q0kge84 The Sharp Foundation'),
(112285, 'https://ror.org/02q12v714', 'en', 1, 'https://ror.org/02q12v714 Kansai Gaidai College é–¢č„æå¤–å›½čŖžå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(112286, 'https://ror.org/02q1spa57', 'en', 1, 'https://ror.org/02q1spa57 Tunis University UniversitĆ© de Tunis Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³'),
(112287, 'https://ror.org/02q2nz798', 'en', 1, 'https://ror.org/02q2nz798 Institut für Neurowissenschaften Institute for Neuroscience'),
(112288, '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'),
(112289, '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'),
(112290, 'https://ror.org/02q73ep21', 'en', 1, 'https://ror.org/02q73ep21 Laboratorium für Organische Chemie Laboratory of Organic Chemistry'),
(112291, 'https://ror.org/02q7mkh03', 'en', 1, 'https://ror.org/02q7mkh03 Inter-university Consortium for Political and Social Research'),
(112292, 'https://ror.org/02q7ncz83', 'en', 1, 'https://ror.org/02q7ncz83 Hosogi Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗä»ē”Ÿä¼šē“°ęœØē—…é™¢'),
(112293, 'https://ror.org/02qa1x782', 'en', 1, 'https://ror.org/02qa1x782 Fisheries and Oceans Canada Pêches et Océans Canada'),
(112294, 'https://ror.org/02qdtzh46', 'pt', 1, 'https://ror.org/02qdtzh46 Centro de Instrumentação Científica'),
(112295, 'https://ror.org/02qenvm24', 'no_lang_code', 1, 'https://ror.org/02qenvm24 Chan Zuckerberg Initiative Chan Zuckerberg Initiative (United States)'),
(112296, 'https://ror.org/02qh5wf78', 'en', 1, 'https://ror.org/02qh5wf78 Health and Research Collaborative'),
(112297, 'https://ror.org/02qjeza50', 'pt', 1, 'https://ror.org/02qjeza50 Sociedade Portuguesa de Farmacologia'),
(112298, 'https://ror.org/02qn6bm03', 'pt', 1, 'https://ror.org/02qn6bm03 Açores Direção Regional da Saúde'),
(112299, 'https://ror.org/02qqsgs30', 'no_lang_code', 1, 'https://ror.org/02qqsgs30 Danylo Zabolotny Institute of Microbiology and Virology Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мікробіології і Š²Ń–Ń€ŃƒŃŠ¾Š»Š¾Š³Ń–Ń— ім. Š”.К. Заболотного, Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мікробіології і Š²Ń–Ń€ŃƒŃŠ¾Š»Š¾Š³Ń–Ń— ім. Š”.К. Заболотного ŠŠŠ України'),
(112300, 'https://ror.org/02qr09225', 'no_lang_code', 1, 'https://ror.org/02qr09225 Chrysea Labs (Portugal)'),
(112301, 'https://ror.org/02qr20086', 'en', 1, 'https://ror.org/02qr20086 The Institute of Professional Engineers, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęŠ€č”“å£«ä¼š'),
(112302, 'https://ror.org/02qr74541', 'en', 1, 'https://ror.org/02qr74541 Philomath University'),
(112303, 'https://ror.org/02qs84g94', 'en', 1, 'https://ror.org/02qs84g94 University of Piraeus UniversitĆ© du pirĆ©e Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī ĪµĪ¹ĻĪ±Ī¹ĻŽĻ‚'),
(112304, 'https://ror.org/02qtnz251', 'de', 1, 'https://ror.org/02qtnz251 Gesellschaft für Biologische Daten e.V.'),
(112305, 'https://ror.org/02qv1bd91', 'en', 1, 'https://ror.org/02qv1bd91 University of Buner'),
(112306, 'https://ror.org/02qvmaf13', 'en', 1, 'https://ror.org/02qvmaf13 Mahatma Basaveshwar Education Society''s College of Engineering, Ambajogai'),
(112307, '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'),
(112308, 'https://ror.org/02qx1np85', 'pt', 1, 'https://ror.org/02qx1np85 Sociedade Portuguesa de Ciências Cosmetológicas'),
(112309, 'https://ror.org/02qy1gq34', 'pt', 1, 'https://ror.org/02qy1gq34 Centro de Gestão Empresa Agrícola Entre Douro e CÓa'),
(112310, 'https://ror.org/02qyf5152', 'en', 1, 'https://ror.org/02qyf5152 Indian Institute of Technology Bombay Institut indien de technologie de bombay ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾, ą¤®ą„ą¤‚ą¤¬ą¤ˆ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą„ą¤®ą„ą¤¬ą¤ˆ ਇੰਔੀਅਨ ąØ‡ą©°ąØøąØŸą©€ąØšąØæąØŠąØŸ ਆਫ਼ ąØŸą©ˆąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®®ąÆą®®ąÆą®ŖąÆˆ ą°ą°ą°Ÿą±€ బాంబే ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“¬ąµ‹ą“‚ą“¬ąµ†'),
(112311, 'https://ror.org/02qynva45', 'en', 1, 'https://ror.org/02qynva45 Asociatia TEAM4Excellence TEAM4Excellence Association'),
(112312, 'https://ror.org/02r0v5a32', 'en', 1, 'https://ror.org/02r0v5a32 Multidisciplinary Institute of Ageing'),
(112313, 'https://ror.org/02r1d7x68', 'no_lang_code', 1, 'https://ror.org/02r1d7x68 Boehringer Ingelheim (Japan) ę—„ęœ¬ćƒ™ćƒ¼ćƒŖćƒ³ć‚¬ćƒ¼ć‚¤ćƒ³ć‚²ćƒ«ćƒć‚¤ćƒ ę Ŗå¼ä¼šē¤¾'),
(112314, 'https://ror.org/02r2e4917', 'pt', 1, 'https://ror.org/02r2e4917 Unidade de Investigação e Desenvolvimento em Engenharia Mecânica e Industrial'),
(112315, 'https://ror.org/02r2ga890', 'es', 1, 'https://ror.org/02r2ga890 Instituto de GeografĆ­a'),
(112316, 'https://ror.org/02r4m3z56', 'pt', 1, 'https://ror.org/02r4m3z56 Leitão Guerra - Oftalmologia'),
(112317, 'https://ror.org/02r5cnj08', 'en', 1, 'https://ror.org/02r5cnj08 Association for Technical Aids, Inc. å…¬ē›Šč²”å›£ę³•äŗŗćƒ†ć‚ÆćƒŽć‚Øć‚¤ćƒ‰å”ä¼š'),
(112318, 'https://ror.org/02r5hxg85', 'en', 0, 'https://ror.org/02r5hxg85 BellSouth Foundation'),
(112319, 'https://ror.org/02r8aws92', 'no_lang_code', 1, 'https://ror.org/02r8aws92 Servier Portugal Especialidades FarmacĆŖuticas (Portugal), Servier Portugal Pharmaceutical Specialties'),
(112320, 'https://ror.org/02rbzhv36', 'en', 1, 'https://ror.org/02rbzhv36 State Key Laboratory of Polymer Materials Engineering é«˜åˆ†å­ęę–™å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112321, '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'),
(112322, 'https://ror.org/02rcazp29', 'da', 1, 'https://ror.org/02rcazp29 TrygFonden'),
(112323, 'https://ror.org/02rcrvv70', 'en', 1, 'https://ror.org/02rcrvv70 Government of the United States of America'),
(112324, 'https://ror.org/02rgb2k63', 'ms', 1, 'https://ror.org/02rgb2k63 Universiti Sains Malaysia University of Science Malaysia ą®®ą®²ąÆ‡ą®šą®æą®Æ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ é©¬ę„č„æäŗšē†ē§‘å¤§å­¦'),
(112325, 'https://ror.org/02rgsr590', 'en', 1, 'https://ror.org/02rgsr590 LEO Fondet LEO Foundation'),
(112326, 'https://ror.org/02rgyc156', 'fr', 1, 'https://ror.org/02rgyc156 Logiques de l''agir'),
(112327, 'https://ror.org/02rkgge26', 'en', 1, 'https://ror.org/02rkgge26 Lawson Research Institute'),
(112328, 'https://ror.org/02rktxt32', 'en', 1, 'https://ror.org/02rktxt32 Royal Children''s Hospital'),
(112329, 'https://ror.org/02rm1kq61', 'en', 1, 'https://ror.org/02rm1kq61 Iida Junior College é£Æē”°ēŸ­ęœŸå¤§å­¦'),
(112330, 'https://ror.org/02rm76t37', 'en', 1, 'https://ror.org/02rm76t37 University of Sri Jayewardenepura ą®øąÆą®°ąÆ€ ą®œą®Æą®µą®°ąÆą®¤ą®©ą®ŖąÆą®° ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ශ් රී ą¶¢ą¶ŗą·€ą¶»ą·Šą¶°ą¶±ą¶“ą·”ą¶» ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(112331, 'https://ror.org/02rnb8t27', 'nl', 1, 'https://ror.org/02rnb8t27 Katholieke Hogeschool Vives VIVES University of Applied Sciences'),
(112332, 'https://ror.org/02rr0k120', 'id', 1, 'https://ror.org/02rr0k120 LP2M Institut Teknologi dan Bisnis Asia Malang'),
(112333, 'https://ror.org/02rrhsz92', 'en', 1, 'https://ror.org/02rrhsz92 SUNY Old Westbury, State University of New York at Old Westbury'),
(112334, 'https://ror.org/02rrmmh31', 'no_lang_code', 1, 'https://ror.org/02rrmmh31 MPO Portugal (Portugal)'),
(112335, 'https://ror.org/02rrt4f19', 'no_lang_code', 1, 'https://ror.org/02rrt4f19 ViiV Healthcare (Portugal)'),
(112336, 'https://ror.org/02rs95642', 'en', 1, 'https://ror.org/02rs95642 Japanese Educational Clinical Cardiology Society å…¬ē›Šē¤¾å›£ę³•äŗŗč‡ØåŗŠåæƒč‡“ē—…å­¦ę•™č‚²ē ”ē©¶ä¼š'),
(112337, 'https://ror.org/02rt0vs64', 'en', 1, 'https://ror.org/02rt0vs64 Washington State Department of Enterprise Services'),
(112338, 'https://ror.org/02rv3w387', 'pt', 1, 'https://ror.org/02rv3w387 Open University Universidade Aberta'),
(112339, 'https://ror.org/02rvee531', 'en', 1, 'https://ror.org/02rvee531 Kagoshima International Association å…¬ē›Šč²”å›£ę³•äŗŗé¹æå…å³¶ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(112340, 'https://ror.org/02rvr3e22', 'en', 1, 'https://ror.org/02rvr3e22 65th Force Support Squadron'),
(112341, 'https://ror.org/02rx3b187', 'fr', 1, 'https://ror.org/02rx3b187 Grenoble Alpes University UniversitƩ Grenoble Alpes'),
(112342, 'https://ror.org/02rxc7m23', 'es', 1, 'https://ror.org/02rxc7m23 Nafarroako Unibertsitatea Universidad de Navarra University of Navarra'),
(112343, 'https://ror.org/02rxky039', 'en', 1, 'https://ror.org/02rxky039 New Unmanned Construction Technology Research Association ę¬”äø–ä»£ē„”äŗŗåŒ–ę–½å·„ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(112344, 'https://ror.org/02s016q17', 'en', 1, 'https://ror.org/02s016q17 Naito Foundation å…¬ē›Šč²”å›£ę³•äŗŗå†…č—¤čØ˜åæµē§‘å­¦ęŒÆčˆˆč²”å›£'),
(112345, 'https://ror.org/02s0yy165', 'en', 1, 'https://ror.org/02s0yy165 North-East Interdisciplinary Scientific Research Institute Деверо-Восточный комплексный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚, Деверо-Восточный комплексный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Š’Šž Š ŠŠ'),
(112346, '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'),
(112347, 'https://ror.org/02s3af642', 'en', 1, 'https://ror.org/02s3af642 Saitama Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒåŒ»åø«ä¼š'),
(112348, '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'),
(112349, 'https://ror.org/02s5jrq73', 'no_lang_code', 1, 'https://ror.org/02s5jrq73 Alfasigma Portugal (Portugal)'),
(112350, 'https://ror.org/02s6bxr02', 'fr', 1, 'https://ror.org/02s6bxr02 Laboratoire de Droit Civil'),
(112351, 'https://ror.org/02s7jtw71', 'en', 1, 'https://ror.org/02s7jtw71 Inazawa Kosei Hospital JAę„›ēŸ„åŽšē”Ÿé€£ēØ²ę²¢åŽšē”Ÿē—…é™¢'),
(112352, 'https://ror.org/02s8ge618', 'en', 1, 'https://ror.org/02s8ge618 Japan Society of Powder and Powder Metallurgy äø€čˆ¬ē¤¾å›£ę³•äŗŗē²‰ä½“ē²‰ęœ«å†¶é‡‘å”ä¼š'),
(112353, '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'),
(112354, 'https://ror.org/02s8w9d85', 'en', 1, 'https://ror.org/02s8w9d85 The Association of Japanese Geographers å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åœ°ē†å­¦ä¼š'),
(112355, 'https://ror.org/02s91mw17', 'no_lang_code', 1, 'https://ror.org/02s91mw17 Prime Matter Consulting (Portugal)'),
(112356, 'https://ror.org/02saqmp17', 'en', 1, 'https://ror.org/02saqmp17 Kochi Prefecture Paper Technology Center é«˜ēŸ„ēœŒē«‹ē“™ē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(112357, 'https://ror.org/02sarsp54', 'pt', 1, 'https://ror.org/02sarsp54 Câmara Municipal de Vila Nova de Famalicão'),
(112358, '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'),
(112359, 'https://ror.org/02sbkts37', 'en', 1, 'https://ror.org/02sbkts37 Uyo Gakuen College ē¾½é™½å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(112360, 'https://ror.org/02sbvqb41', 'en', 1, 'https://ror.org/02sbvqb41 Revvity, Revvity (United States), Revvity, Inc.'),
(112361, 'https://ror.org/02scfj030', 'no_lang_code', 1, 'https://ror.org/02scfj030 RELX Group (Netherlands)'),
(112362, 'https://ror.org/02scr7307', 'en', 1, 'https://ror.org/02scr7307 Institut für Landschaft und Urbane Studien LUS Institute for Urban and Landscape Studies'),
(112363, 'https://ror.org/02sd7kz27', 'es', 1, 'https://ror.org/02sd7kz27 Escuela Superior de Audio y AcĆŗstica'),
(112364, 'https://ror.org/02se0t636', 'en', 1, 'https://ror.org/02se0t636 Leibniz Institute of Photonic Technology Leibniz-Institut für Photonische Technologien'),
(112365, 'https://ror.org/02sgq4c64', 'fr', 1, 'https://ror.org/02sgq4c64 Centre de Formation des journalistes'),
(112366, 'https://ror.org/02sk93j50', 'en', 1, 'https://ror.org/02sk93j50 Miyazaki Livestock Research Institute å®®å“ŽēœŒē•œē”£č©¦éØ“å “'),
(112367, 'https://ror.org/02sm0ej21', 'pt', 1, 'https://ror.org/02sm0ej21 Museu Doutor Joaquim Manso'),
(112368, 'https://ror.org/02speyz69', 'de', 1, 'https://ror.org/02speyz69 Schƶnbrunner Tiergarten-GmbH'),
(112369, 'https://ror.org/02sprfq10', 'fr', 0, 'https://ror.org/02sprfq10 AutoritƩ de SƻretƩ NuclƩaire French Nuclear Safety Authority'),
(112370, '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'),
(112371, 'https://ror.org/02sr5qc36', 'pt', 1, 'https://ror.org/02sr5qc36 Centro UniversitĆ”rio Cesusc – UNICESUSC'),
(112372, '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'),
(112373, 'https://ror.org/02swcnz29', 'en', 1, 'https://ror.org/02swcnz29 Department of Health and Aged Care'),
(112374, 'https://ror.org/02sy57p23', 'pt', 1, 'https://ror.org/02sy57p23 CĆ¢mara Municipal de Viana do Castelo'),
(112375, '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ĆŖ الجامعة_Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ©_في_ŲÆŁ‡ŁˆŁƒ'),
(112376, 'https://ror.org/02synbq51', 'en', 1, 'https://ror.org/02synbq51 TUM CREATE'),
(112377, 'https://ror.org/02szraf30', 'en', 1, 'https://ror.org/02szraf30 Goethe Institut, Goethe Institute'),
(112378, 'https://ror.org/02t0qr887', 'pt', 1, 'https://ror.org/02t0qr887 ARS Associação Investigação Desenvolvimento'),
(112379, 'https://ror.org/02t50p128', 'en', 1, 'https://ror.org/02t50p128 Insurance Research Center'),
(112380, 'https://ror.org/02t99a717', 'fr', 1, 'https://ror.org/02t99a717 Centre d''Ɖtudes Constitutionnelles et Politiques'),
(112381, 'https://ror.org/02tc3qm58', 'en', 1, 'https://ror.org/02tc3qm58 TechnologickƩ centrum Praha Technology Centre Prague'),
(112382, 'https://ror.org/02tf01n02', 'en', 1, 'https://ror.org/02tf01n02 Japan Table Tennis Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å“ēƒå”ä¼š'),
(112383, 'https://ror.org/02tfp8194', 'en', 1, 'https://ror.org/02tfp8194 Life Extension Advocacy Foundation'),
(112384, 'https://ror.org/02th1pb96', 'en', 1, 'https://ror.org/02th1pb96 Ho Chi Minh City University of Foreign Languages and Information Technology'),
(112385, 'https://ror.org/02tm87597', 'en', 1, 'https://ror.org/02tm87597 Swiss SkyLab'),
(112386, 'https://ror.org/02tr2a818', 'id', 1, 'https://ror.org/02tr2a818 Universitas Kristen Wira Wacana Sumba'),
(112387, 'https://ror.org/02tr8q829', 'en', 1, 'https://ror.org/02tr8q829 University of Chakwal'),
(112388, 'https://ror.org/02tx80f61', 'en', 0, 'https://ror.org/02tx80f61 Central Research Institute of Mechanical Engineering'),
(112389, 'https://ror.org/02v1r2s82', 'en', 1, 'https://ror.org/02v1r2s82 Naha Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé‚£č¦‡åø‚åŒ»åø«ä¼š'),
(112390, 'https://ror.org/02v1rsx93', 'no_lang_code', 1, 'https://ror.org/02v1rsx93 Nofima'),
(112391, 'https://ror.org/02v4g3v80', 'en', 1, 'https://ror.org/02v4g3v80 Department of Science and Technology of Inner Mongolia Autonomous Region å†…č’™å¤č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(112392, 'https://ror.org/02v66pf20', 'no_lang_code', 1, 'https://ror.org/02v66pf20 Novartis (Singapore)'),
(112393, 'https://ror.org/02v6phz91', 'fr', 1, 'https://ror.org/02v6phz91 Vision pour la Robotique'),
(112394, 'https://ror.org/02v6vgb19', 'id', 1, 'https://ror.org/02v6vgb19 Universitas Aufa Royhan'),
(112395, 'https://ror.org/02v80fc35', 'en', 1, 'https://ror.org/02v80fc35 Auburn University Universidad de Auburn'),
(112396, 'https://ror.org/02v89pq06', 'it', 1, 'https://ror.org/02v89pq06 Istituto Nazionale di Fisica Nucleare, Sezione di Genova National Institute for Nuclear Physics, Genoa'),
(112397, 'https://ror.org/02v9e1947', 'no_lang_code', 1, 'https://ror.org/02v9e1947 Equigerminal, Equigerminal (Portugal)'),
(112398, 'https://ror.org/02vb4k656', 'fr', 1, 'https://ror.org/02vb4k656 Groupe ESA - Higher Education and Research Institution in Agriculture Ɖcole SupĆ©rieure d''Agriculture'),
(112399, 'https://ror.org/02vbb6770', 'pt', 1, 'https://ror.org/02vbb6770 Centro de Estudos Europeus'),
(112400, 'https://ror.org/02vc99v03', 'fr', 0, 'https://ror.org/02vc99v03'),
(112401, 'https://ror.org/02vcqg248', 'en', 1, 'https://ror.org/02vcqg248 ARC Centre of Excellence for Mathematical and Statistical Frontiers'),
(112402, 'https://ror.org/02vcyrg44', 'mi', 1, 'https://ror.org/02vcyrg44 Te Wānanga o Aotearoa'),
(112403, 'https://ror.org/02vd5tc88', 'en', 1, 'https://ror.org/02vd5tc88 Rogante Engineering'),
(112404, 'https://ror.org/02vfdxz10', 'en', 1, 'https://ror.org/02vfdxz10 International Relations Council of Turkey'),
(112405, 'https://ror.org/02vfrsg15', 'pt', 1, 'https://ror.org/02vfrsg15 Sociedade Portuguesa de Pediatria'),
(112406, 'https://ror.org/02vhcfz72', 'en', 1, 'https://ror.org/02vhcfz72 Catholic Institute of Technology'),
(112407, 'https://ror.org/02vhd9c58', 'id', 1, 'https://ror.org/02vhd9c58 Universitas Islam Negeri Alauddin Makassar'),
(112408, 'https://ror.org/02vhkjx14', 'en', 1, 'https://ror.org/02vhkjx14 International Foundation for Information Technology äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›IT貔団'),
(112409, 'https://ror.org/02vmnye06', 'en', 1, 'https://ror.org/02vmnye06 Koninklijke Militaire School Kƶnigliche MilitƤrakademie Royal Military Academy Ɖcole Royale Militaire'),
(112410, 'https://ror.org/02vmw2t69', 'en', 1, 'https://ror.org/02vmw2t69 Aeronautics and Astronautics Research Center'),
(112411, 'https://ror.org/02vn54r74', 'en', 1, 'https://ror.org/02vn54r74 Lutsk National Technical University Łucki Narodowy Uniwersytet Techniczny Š›ŃƒŃ†ŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š›ŃƒŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(112412, 'https://ror.org/02vnghs48', 'en', 1, 'https://ror.org/02vnghs48 Indiana University Columbus'),
(112413, 'https://ror.org/02vnq7240', 'fr', 1, 'https://ror.org/02vnq7240 Laboratoire Magmas et Volcans'),
(112414, 'https://ror.org/02vpk4745', 'en', 1, 'https://ror.org/02vpk4745 Suzhou Science and Technology Bureau č‹å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(112415, 'https://ror.org/02vpwt473', 'pt', 0, 'https://ror.org/02vpwt473 Centro de Investigação em Biodiversidade e Recursos Genéticos'),
(112416, 'https://ror.org/02vq8p756', 'en', 1, 'https://ror.org/02vq8p756 University of Minnesota Itasca Biological Station and Laboratories'),
(112417, 'https://ror.org/02vrd8j29', 'en', 1, 'https://ror.org/02vrd8j29 The Chicago School'),
(112418, 'https://ror.org/02vrzme47', 'pt', 1, 'https://ror.org/02vrzme47 Escola de MĆŗsica Nossa Senhora do Cabo'),
(112419, 'https://ror.org/02vtvez67', 'en', 1, 'https://ror.org/02vtvez67 Science and Technology Department of Xinjiang Uyghur Autonomous Region ؓىنجاڭ Ų¦Ū‡ŁŠŲŗŪ‡Ų± Ų¦Ų§Ł¾ŲŖŁˆŁ†ŁˆŁ… Ų±Ų§ŁŠŁˆŁ†Ł„Ū‡Ł‚ Ł¾Ū•Ł†ā€“ŲŖŪŲ®Ł†Ł‰ŁƒŲ§ نازارىتى ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(112420, 'https://ror.org/02vver293', 'en', 1, 'https://ror.org/02vver293 Nagano City Education Center é•·é‡Žåø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(112421, 'https://ror.org/02vw4rj70', 'en', 1, 'https://ror.org/02vw4rj70 Kyrgyz National Agrarian University named after K.I. Skryabin ŠšŃ‹Ń€Š³Ń‹Š· ŃƒŠ»ŃƒŃ‚Ń‚ŃƒŠŗ аграрГык ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø К. И. Š”ŠŗŃ€ŃŠ±ŠøŠ½ атынГагы ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. К.И.Š”ŠŗŃ€ŃŠ±ŠøŠ½Š°'),
(112422, 'https://ror.org/02vwpg498', 'en', 1, 'https://ror.org/02vwpg498 National Radiation Protection Institute'),
(112423, 'https://ror.org/02vxrsd04', 'no_lang_code', 1, 'https://ror.org/02vxrsd04 Bluepharm, Bluepharma (Portugal)'),
(112424, 'https://ror.org/02vyfsk43', 'no_lang_code', 0, 'https://ror.org/02vyfsk43 SmithKline Beecham (United States)'),
(112425, 'https://ror.org/02w0m4735', 'en', 1, 'https://ror.org/02w0m4735 Organ and Tissue Authority'),
(112426, 'https://ror.org/02w1qb116', 'pt', 1, 'https://ror.org/02w1qb116 CĆ¢mara Municipal de Vila do Conde'),
(112427, 'https://ror.org/02w4f2z17', 'en', 1, 'https://ror.org/02w4f2z17 Silesian University in Opava SlezskĆ” univerzita v Opavě'),
(112428, 'https://ror.org/02w7vnb60', 'no_lang_code', 1, 'https://ror.org/02w7vnb60 Bharathidasan University ą®Ŗą®¾ą®°ą®¤ą®æą®¤ą®¾ą®šą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(112429, 'https://ror.org/02w95hf30', 'en', 1, 'https://ror.org/02w95hf30 Croatian Meteorological and Hydrological Service Državni hidrometeoroloŔki zavod'),
(112430, 'https://ror.org/02wa6sn09', 'en', 1, 'https://ror.org/02wa6sn09 Japan Society of Plastic and Reconstructive Surgery äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å½¢ęˆå¤–ē§‘å­¦ä¼š'),
(112431, 'https://ror.org/02wae9s43', 'en', 1, 'https://ror.org/02wae9s43 World Health Organization Regional Office for South-East Asia'),
(112432, 'https://ror.org/02wav3x53', 'en', 1, 'https://ror.org/02wav3x53 Nagoya Ryujo Women''s University åå¤å±‹ęŸ³åŸŽå„³å­å¤§å­¦'),
(112433, 'https://ror.org/02wbrth70', 'en', 1, 'https://ror.org/02wbrth70 Fatih University Fatih Üniversitesi'),
(112434, 'https://ror.org/02weesc23', 'en', 1, 'https://ror.org/02weesc23 Worldwide Hospice Palliative Care Alliance'),
(112435, 'https://ror.org/02wg9xc72', 'en', 1, 'https://ror.org/02wg9xc72 Consortium of European Social Science Data Archives'),
(112436, 'https://ror.org/02wgtm643', 'fr', 1, 'https://ror.org/02wgtm643 Centre de Recherche en ArchƩologie, ArchƩosciences, Histoire'),
(112437, 'https://ror.org/02wgz6f65', 'pt', 1, 'https://ror.org/02wgz6f65 Agência Nacional para a Qualificação e o Ensino Profissional IP'),
(112438, 'https://ror.org/02wjqfd29', 'en', 1, 'https://ror.org/02wjqfd29 Overseas Environmental Cooperation Center, Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–ē’°å¢ƒå”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(112439, 'https://ror.org/02wk7hb64', 'en', 1, 'https://ror.org/02wk7hb64 The Africa Society of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚¢ćƒ•ćƒŖć‚«å”ä¼š'),
(112440, 'https://ror.org/02wmc6m46', 'fr', 1, 'https://ror.org/02wmc6m46 Institut d''Histoire des ReprƩsentations et des IdƩes dans les ModernitƩs'),
(112441, 'https://ror.org/02wmjy128', 'de', 1, 'https://ror.org/02wmjy128 Stella Vorarlberg Privathochschule für Musik'),
(112442, 'https://ror.org/02wn5qz54', 'en', 1, 'https://ror.org/02wn5qz54 Prifysgol St Andrews University of St Andrews'),
(112443, 'https://ror.org/02wnqcb97', 'en', 1, 'https://ror.org/02wnqcb97 National Health Service'),
(112444, 'https://ror.org/02wp0qa11', 'fr', 1, 'https://ror.org/02wp0qa11 Institut de Droit ComparƩs'),
(112445, 'https://ror.org/02wqdd210', 'en', 1, 'https://ror.org/02wqdd210 Japan Painting Contractors Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å”—č£…å·„ę„­ä¼š'),
(112446, 'https://ror.org/02wr9sg03', 'en', 1, 'https://ror.org/02wr9sg03 United States Cyber Command'),
(112447, 'https://ror.org/02wrme198', 'fr', 1, 'https://ror.org/02wrme198 GIPSA-Lab'),
(112448, 'https://ror.org/02wtcj248', 'en', 1, 'https://ror.org/02wtcj248 Queensland Department of Environment and Science'),
(112449, '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'),
(112450, 'https://ror.org/02wyjqf34', 'pt', 1, 'https://ror.org/02wyjqf34 Vasco da Gama CoLAB'),
(112451, 'https://ror.org/02x3e4q36', 'en', 1, 'https://ror.org/02x3e4q36 Vilniaus Gedimino technikos universitetas Vilnius Gediminas Technical University Wileński Uniwersytet Techniczny im. Giedymina Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ГеГимина'),
(112452, 'https://ror.org/02x5qpn68', 'en', 1, 'https://ror.org/02x5qpn68 Luxoft, Luxoft (Switzerland)'),
(112453, 'https://ror.org/02x5r8343', 'no_lang_code', 1, 'https://ror.org/02x5r8343 Algardata Sistemas InformƔticos (Portugal), Algardata Sistemas InformƔticos, S.A.'),
(112454, 'https://ror.org/02x88th57', 'en', 1, 'https://ror.org/02x88th57 Real Estate Companies Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗäøå‹•ē”£å”ä¼š'),
(112455, 'https://ror.org/02x9apr53', 'en', 1, 'https://ror.org/02x9apr53 Baqai Institute of Diabetology and Endocrinology'),
(112456, 'https://ror.org/02xcy2g83', 'en', 1, 'https://ror.org/02xcy2g83 Institut für Geophysik Institute of Geophysics'),
(112457, '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'),
(112458, 'https://ror.org/02xfrv514', 'fr', 1, 'https://ror.org/02xfrv514 SAntƩ INgenierie BIOlogie Saint-Etienne'),
(112459, 'https://ror.org/02xhcf905', 'en', 1, 'https://ror.org/02xhcf905 Institut für Molekulare Pflanzenbiologie Institute of Molecular Plant Biology'),
(112460, 'https://ror.org/02xnrmy62', 'no_lang_code', 1, 'https://ror.org/02xnrmy62 Korn Ferry Lisbon, Korn Ferry Lisbon (Portugal)'),
(112461, 'https://ror.org/02xsn1q87', 'en', 1, 'https://ror.org/02xsn1q87 Nootan Ayurvedic College & Research Centre'),
(112462, 'https://ror.org/02xt0e812', 'en', 1, 'https://ror.org/02xt0e812 Tashkent International University Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет'),
(112463, 'https://ror.org/02xta6736', 'pt', 1, 'https://ror.org/02xta6736 Governo do Estado de SĆ£o Paulo'),
(112464, 'https://ror.org/02xv2bn88', 'en', 1, 'https://ror.org/02xv2bn88 Ecole Nationale SupĆ©rieure de MathĆ©matiques National Higher School of Mathematics المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų±ŁŠŲ§Ų¶ŁŠŲ§ŲŖ'),
(112465, 'https://ror.org/02xv42m49', 'en', 1, 'https://ror.org/02xv42m49 Ministry of Education Ministério da Educação'),
(112466, 'https://ror.org/02xz7b430', 'pt', 1, 'https://ror.org/02xz7b430 Fraterna - Centro ComunitÔrio de Solidariedade e Integração Social'),
(112467, 'https://ror.org/02xznz413', 'en', 1, 'https://ror.org/02xznz413 Office of Energy Efficiency and Renewable Energy'),
(112468, 'https://ror.org/02y17a925', 'it', 1, 'https://ror.org/02y17a925 Agenzia Regionale protezione ambientale del Lazio'),
(112469, 'https://ror.org/02y22ws83', 'en', 1, 'https://ror.org/02y22ws83 Institut des Sciences naturelles Institut für Naturwissenschaften Institute of Natural Sciences'),
(112470, 'https://ror.org/02y2f8v85', 'en', 1, 'https://ror.org/02y2f8v85 K.M.G. College of Arts and Science (Autonomous)'),
(112471, 'https://ror.org/02y3ad647', 'en', 1, 'https://ror.org/02y3ad647 Universidad de la Florida University of Florida UniversitƩ de floride'),
(112472, 'https://ror.org/02y3qvw23', 'en', 1, 'https://ror.org/02y3qvw23 Sudden Cardiac Arrest UK'),
(112473, 'https://ror.org/02y3wb057', 'en', 1, 'https://ror.org/02y3wb057 Altai Economics and Law Institute Алтайский ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(112474, '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 Ł…Ų±ŁƒŲ² البحث في Ų§Ł„Ų£Ł†Ų«Ų±ŁˆŲØŁˆŲ¬ŁŠŲ§ Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŁŠŲ©'),
(112475, 'https://ror.org/02y798n84', 'en', 1, 'https://ror.org/02y798n84 Institute for Modeling Plasma, Atmospheres and Cosmic Dust'),
(112476, 'https://ror.org/02y7f0c04', 'pt', 1, 'https://ror.org/02y7f0c04 Assembleia da RepĆŗblica Biblioteca Passos Manuel'),
(112477, 'https://ror.org/02y81ys86', 'en', 1, 'https://ror.org/02y81ys86 Bureau of Naval Personnel'),
(112478, 'https://ror.org/02yg9kp93', 'en', 1, 'https://ror.org/02yg9kp93 Akita Prefectural Police ē§‹ē”°ēœŒč­¦åÆŸ'),
(112479, 'https://ror.org/02ygpzn39', 'en', 1, 'https://ror.org/02ygpzn39 The Japan Building Disaster Prevention Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰é˜²ē½å”ä¼š'),
(112480, 'https://ror.org/02yk4hg14', 'de', 1, 'https://ror.org/02yk4hg14 Centre of Internationalisation, Mobility and External Relations Zentrum Internationalisierung, MobilitƤt und Aussenbeziehungen'),
(112481, 'https://ror.org/02ymw8z06', 'en', 1, 'https://ror.org/02ymw8z06 Universidad de Misuri University of Missouri UniversitƩ du Missouri'),
(112482, 'https://ror.org/02ymzm013', 'en', 1, 'https://ror.org/02ymzm013 Alzheimer’s Research UK'),
(112483, 'https://ror.org/02yndkk15', 'pt', 1, 'https://ror.org/02yndkk15 Consultores de LĆ­nguas'),
(112484, 'https://ror.org/02ynmc580', 'fr', 1, 'https://ror.org/02ynmc580 Laboratoire Animal et Agroécosystèmes'),
(112485, 'https://ror.org/02ypept83', 'en', 1, 'https://ror.org/02ypept83 United States Space Force'),
(112486, 'https://ror.org/02yqamp19', 'en', 1, 'https://ror.org/02yqamp19 Chadli Bendjedid El Tarf University UniversitĆ© Chadli Bendjedid d''El Tarf Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų“Ų§Ų°Ł„ŁŠ بن جديد -الطارف'),
(112487, 'https://ror.org/02yqqg594', 'no_lang_code', 1, 'https://ror.org/02yqqg594 Servensino (Portugal)'),
(112488, 'https://ror.org/02ys8pq62', 'en', 1, 'https://ror.org/02ys8pq62 All India Institute of Medical Sciences Raipur अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(112489, 'https://ror.org/02ysb6405', 'en', 1, 'https://ror.org/02ysb6405 United States Southern Command'),
(112490, 'https://ror.org/02ysz4z77', 'en', 1, 'https://ror.org/02ysz4z77 Fisheries Education and Training Agency'),
(112491, 'https://ror.org/02yxgb786', 'en', 1, 'https://ror.org/02yxgb786 Mekdela Amba University'),
(112492, 'https://ror.org/02yy6gj83', 'es', 1, 'https://ror.org/02yy6gj83 Instituto Tecnológico Superior de Tlaxco'),
(112493, 'https://ror.org/02z15rc45', 'pt', 1, 'https://ror.org/02z15rc45 Casa do Douro Federação Renovação do Douro'),
(112494, 'https://ror.org/02z497645', 'en', 1, 'https://ror.org/02z497645 Federal College of Education, Eha-Amufu'),
(112495, 'https://ror.org/02z4rsp10', 'no_lang_code', 1, 'https://ror.org/02z4rsp10 Airbus (Netherlands)'),
(112496, 'https://ror.org/02z52qx16', 'no_lang_code', 1, 'https://ror.org/02z52qx16 Dias de Sousa (Portugal), Dias de Sousa, S.A.'),
(112497, 'https://ror.org/02z66n477', 'es', 1, 'https://ror.org/02z66n477 Escuela Superior de Guerra Naval'),
(112498, 'https://ror.org/02zab2r83', 'en', 1, 'https://ror.org/02zab2r83 Hirosaki Stroke and Rehabilitation Center äø€čˆ¬č²”å›£ę³•äŗŗé»Žę˜Žéƒ·å¼˜å‰č„³å’äø­ćƒ»ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(112499, 'https://ror.org/02zbmre89', 'en', 1, 'https://ror.org/02zbmre89 Institut für Werkzeugmaschinen und Fertigung Institute of Machine Tools and Manufacturing'),
(112500, 'https://ror.org/02zda6x08', 'en', 1, 'https://ror.org/02zda6x08 Carl R. Darnall Army Medical Center'),
(112501, 'https://ror.org/02zdscb63', 'en', 1, 'https://ror.org/02zdscb63 Thailand National Sports University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø²ąø£ąøąøµąø¬ąø²ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(112502, 'https://ror.org/02zggdn05', 'fr', 1, 'https://ror.org/02zggdn05 Ɖtudes du Contemporain en LittĆ©ratures, Langues, Arts'),
(112503, 'https://ror.org/02zgjrf98', 'fr', 1, 'https://ror.org/02zgjrf98 Fondation Sciences mathƩmatiques de Paris'),
(112504, 'https://ror.org/02zgnng91', 'en', 1, 'https://ror.org/02zgnng91 Niigata City Institute of Public Health and Environment ę–°ę½Ÿåø‚č”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(112505, 'https://ror.org/02zjgam16', 'no_lang_code', 1, 'https://ror.org/02zjgam16 Logiser (Portugal), Logiser, S.A.'),
(112506, 'https://ror.org/02zndhd13', 'pt', 1, 'https://ror.org/02zndhd13 Santa Casa da Misericórdia de Serpa'),
(112507, 'https://ror.org/02znh1e25', 'pt', 1, 'https://ror.org/02znh1e25 Sociedade Portuguesa de Medicina Laboratorial'),
(112508, 'https://ror.org/02zqm6r10', 'no_lang_code', 1, 'https://ror.org/02zqm6r10 Toyota Motor Corporation (Japan) ćƒˆćƒØć‚æč‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(112509, 'https://ror.org/02zrvdm16', 'en', 1, 'https://ror.org/02zrvdm16 Nara Prefectural Institute of Industrial Development å„ˆč‰ÆēœŒē”£ę„­ęŒÆčˆˆē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(112510, 'https://ror.org/02zsyt821', 'en', 1, 'https://ror.org/02zsyt821 Jouf University'),
(112511, 'https://ror.org/02zv2se87', 'de', 1, 'https://ror.org/02zv2se87 SWISDATA gGmbH'),
(112512, 'https://ror.org/02zv8ns48', 'en', 1, 'https://ror.org/02zv8ns48 Azal University for Human Development Ų¬Ų§Ł…Ų¹Ų© Ų¢Ų²Ų§Ł„ Ł„Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„ŲØŲ“Ų±ŁŠŲ©'),
(112513, 'https://ror.org/02zwvpt29', 'en', 1, 'https://ror.org/02zwvpt29 International Research Association of Feed Technology Internationale Forschungsgemeinschaft Futtermitteltechnik, Internationale Forschungsgemeinschaft Futtermitteltechnik e.V.'),
(112514, 'https://ror.org/02zxraz57', 'pt', 1, 'https://ror.org/02zxraz57 Investigação em Ciências Sociais e Gestão'),
(112515, 'https://ror.org/02zy4nc24', 'en', 1, 'https://ror.org/02zy4nc24 ICMR-National Institute of Virology ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤·ą¤¾ą¤£ą„‚ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(112516, 'https://ror.org/02zz7h206', 'en', 1, 'https://ror.org/02zz7h206 MMGH Consulting, MMGH Consulting (Switzerland)'),
(112517, 'https://ror.org/02zzeb133', 'pt', 1, 'https://ror.org/02zzeb133 CĆ¢mara Municipal de Vendas Novas'),
(112518, 'https://ror.org/0300ckk74', 'pt', 1, 'https://ror.org/0300ckk74 Sociedade Portuguesa de Arte-Terapia'),
(112519, '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'),
(112520, 'https://ror.org/0300tmz02', 'pt', 1, 'https://ror.org/0300tmz02 Centro Cultural de BelƩm'),
(112521, 'https://ror.org/030101v90', 'en', 1, 'https://ror.org/030101v90 Felician University'),
(112522, 'https://ror.org/03014md85', 'es', 1, 'https://ror.org/03014md85 Jardƭn BotƔnico de Missouri'),
(112523, 'https://ror.org/0304hq317', 'en', 1, 'https://ror.org/0304hq317 Leibniz University Hannover Leibniz UniversitƤt Hannover'),
(112524, 'https://ror.org/0304xxk68', 'en', 1, 'https://ror.org/0304xxk68 Japan Recreation And Miscellaneous Goods Safety Laboratory äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę–‡åŒ–ē”Øå“å®‰å…Øč©¦éØ“ę‰€'),
(112525, 'https://ror.org/0305dcn72', 'en', 1, 'https://ror.org/0305dcn72 The Japan Transportation Planning Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äŗ¤é€ščØˆē”»å”ä¼š'),
(112526, 'https://ror.org/0307jk798', 'pt', 1, 'https://ror.org/0307jk798 Ballet Teatro Contemporâneo do Porto'),
(112527, 'https://ror.org/030847t23', 'ms', 1, 'https://ror.org/030847t23 Universiti Teknologi MARA System'),
(112528, 'https://ror.org/03085z545', 'en', 0, 'https://ror.org/03085z545 Royal Devon & Exeter NHS Foundation Trust'),
(112529, 'https://ror.org/030akyn67', 'no_lang_code', 1, 'https://ror.org/030akyn67 Piezocryst (Austria)'),
(112530, 'https://ror.org/030bbe882', 'es', 1, 'https://ror.org/030bbe882 Universidad de la RepĆŗblica de Uruguay, University of the Republic of Uruguay'),
(112531, 'https://ror.org/030bj1s48', 'pt', 1, 'https://ror.org/030bj1s48 Arquivo Municipal de Lisboa'),
(112532, 'https://ror.org/030g3ew36', 'pt', 1, 'https://ror.org/030g3ew36 Secretaria de Estado de Educação de Minas Gerais'),
(112533, 'https://ror.org/030ggnb25', 'en', 1, 'https://ror.org/030ggnb25 Lower Shabelle University'),
(112534, 'https://ror.org/030hywx92', 'en', 1, 'https://ror.org/030hywx92 The Reward Foundation');
INSERT INTO `rors` VALUES
(112535, 'https://ror.org/030j3nq69', 'en', 1, 'https://ror.org/030j3nq69 Cape Town Creative Academy'),
(112536, 'https://ror.org/030k6vb67', 'en', 1, 'https://ror.org/030k6vb67 Hualien Tzu Chi Medical Center'),
(112537, 'https://ror.org/030npen62', 'en', 0, 'https://ror.org/030npen62 Private University College of Economic Studies SoukromÔ VysokÔ Skola Ekonomických Studií'),
(112538, 'https://ror.org/030q0xp60', 'da', 1, 'https://ror.org/030q0xp60 Museum Lolland-Falster'),
(112539, 'https://ror.org/030snpp57', 'es', 1, 'https://ror.org/030snpp57 Catholic University of Santiago de Guayaquil Universidad Católica de Santiago de Guayaquil'),
(112540, 'https://ror.org/030tcae29', 'en', 1, 'https://ror.org/030tcae29 Maulana Abul Kalam Azad University of Technology, West Bengal'),
(112541, 'https://ror.org/030z8x523', 'en', 1, 'https://ror.org/030z8x523 Sincan Eğitim ve Araştırma Hastanesi Sincan Training and Research Hospital'),
(112542, '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'),
(112543, 'https://ror.org/0311zw396', 'pt', 1, 'https://ror.org/0311zw396 Centro de Direito BiomƩdico'),
(112544, 'https://ror.org/0312pnr83', 'en', 1, 'https://ror.org/0312pnr83 De Montfort University'),
(112545, 'https://ror.org/0312sjw67', 'en', 1, 'https://ror.org/0312sjw67 EMSO-France'),
(112546, 'https://ror.org/0314h5y94', 'en', 1, 'https://ror.org/0314h5y94 Australian Government'),
(112547, 'https://ror.org/03157dt42', 'en', 1, 'https://ror.org/03157dt42 Nagasaki International Association å…¬ē›Šč²”å›£ę³•äŗŗé•·å“ŽēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(112548, 'https://ror.org/03166ra26', 'en', 1, 'https://ror.org/03166ra26 Portuguese microBiological Resources Center Network'),
(112549, 'https://ror.org/0316yyd15', 'fr', 1, 'https://ror.org/0316yyd15 Centre de Recherche en AmĆ©nagement du Territoire Territory Planning Research Center Ł…Ų±ŁƒŲ² البحث في ŲŖŁ‡ŁŠŲ¦Ų© Ų§Ł„Ų„Ł‚Ł„ŁŠŁ…'),
(112550, 'https://ror.org/0317dkp69', 'en', 1, 'https://ror.org/0317dkp69 Indigo Rock Marine Research Centre'),
(112551, 'https://ror.org/0319mkh28', 'en', 1, 'https://ror.org/0319mkh28 HITEC Institute of Medical Sciences'),
(112552, 'https://ror.org/031aa3p22', 'pt', 1, 'https://ror.org/031aa3p22 Sociedade Portuguesa de NumismƔtica'),
(112553, 'https://ror.org/031bk9q76', 'en', 1, 'https://ror.org/031bk9q76 Electrical Research and Development Association'),
(112554, 'https://ror.org/031j7r736', 'en', 1, 'https://ror.org/031j7r736 Akademia Nauk Stosowanych w Bielsku-Białej Bielsko-Biala University of Applied Sciences'),
(112555, 'https://ror.org/031m0fr54', 'en', 1, 'https://ror.org/031m0fr54 National University of Villa MarĆ­a Universidad Nacional de Villa MarĆ­a'),
(112556, 'https://ror.org/031mcyy47', 'en', 1, 'https://ror.org/031mcyy47 Edinburgh Systems, Edinburgh Systems (United Kingdom)'),
(112557, 'https://ror.org/031ntzm95', 'en', 1, 'https://ror.org/031ntzm95 NEC C&C Foundation å…¬ē›Šč²”å›£ę³•äŗŗNEC C&C貔団'),
(112558, 'https://ror.org/031tatj48', 'en', 1, 'https://ror.org/031tatj48 Heilongjiang Provincial Science and Technology Department é»‘é¾™ę±Ÿēœē§‘ęŠ€åŽ…'),
(112559, 'https://ror.org/031tdqb65', 'en', 1, 'https://ror.org/031tdqb65 Papua New Guinea National Research Institute'),
(112560, 'https://ror.org/031tq3q38', 'pt', 1, 'https://ror.org/031tq3q38 Direção-Geral de Estatísticas da Educação e Ciência'),
(112561, 'https://ror.org/031xaae12', 'pt', 1, 'https://ror.org/031xaae12 Unidade Local de SaĆŗde Santa Maria'),
(112562, 'https://ror.org/031yhcs65', 'en', 1, 'https://ror.org/031yhcs65 eDNA solutions AB, eDNA solutions AB (Sweden)'),
(112563, 'https://ror.org/032000t02', 'de', 1, 'https://ror.org/032000t02 Ulm University UniversitƤt Ulm'),
(112564, 'https://ror.org/0324q6b35', 'no_lang_code', 1, 'https://ror.org/0324q6b35 Chevron (Australia)'),
(112565, 'https://ror.org/0324r4e56', 'en', 1, 'https://ror.org/0324r4e56 Karakoram International University ŲØŪŒŁ† Ų§Ł„Ų§Ł‚ŁˆŲ§Ł…ŪŒ جامعہ Ł‚Ų±Ų§Ł‚Ų±Ł…ā€Ž'),
(112566, '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'),
(112567, 'https://ror.org/0325mag79', 'en', 1, 'https://ror.org/0325mag79 Royal Borough of Kingston upon Thames'),
(112568, 'https://ror.org/0328c6f81', 'pt', 1, 'https://ror.org/0328c6f81 ConferĆŖncia Episcopal Portuguesa'),
(112569, 'https://ror.org/032d3h410', 'de', 1, 'https://ror.org/032d3h410 Centre of Professional Studies Zentrum Berufspraktische Studien'),
(112570, 'https://ror.org/032f7hg16', 'en', 1, 'https://ror.org/032f7hg16 Bukovinian University ŠŸŠ’ŠŠ— "Š‘ŃƒŠŗŠ¾Š²ŠøŠ½ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚"'),
(112571, 'https://ror.org/032gggv33', 'en', 1, 'https://ror.org/032gggv33 ERN CRANIO'),
(112572, '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'),
(112573, 'https://ror.org/032n1tr36', 'en', 1, 'https://ror.org/032n1tr36 Hausdorff Center for Mathematics'),
(112574, 'https://ror.org/032nfpx77', 'en', 1, 'https://ror.org/032nfpx77 ColƔiste Uƭ Ghrƭofa, Corcaigh Griffith College Cork'),
(112575, 'https://ror.org/032nzv584', 'de', 1, 'https://ror.org/032nzv584 University Hospital of Giessen and Marburg Universitätsklinikum Gießen und Marburg'),
(112576, 'https://ror.org/032p0ce74', 'pt', 1, 'https://ror.org/032p0ce74 Instituto Português de Relações Internacionais'),
(112577, 'https://ror.org/032p8r578', 'en', 1, 'https://ror.org/032p8r578 Institut für Elektronik Institute for Electronics'),
(112578, 'https://ror.org/032q61545', 'en', 1, 'https://ror.org/032q61545 Microsoft (Singapore), Microsoft Operations Pte Ltd'),
(112579, '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'),
(112580, 'https://ror.org/032s6vg49', 'en', 1, 'https://ror.org/032s6vg49 Japan Society of Physical Education, Health and Sport Sciences äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½“č‚²å­¦ä¼š'),
(112581, 'https://ror.org/032skn216', 'en', 1, 'https://ror.org/032skn216 Kanazawa Seiryo University Women''s Junior College é‡‘ę²¢ę˜ŸēØœå¤§å­¦å„³å­ēŸ­ęœŸå¤§å­¦éƒØ'),
(112582, 'https://ror.org/032typz45', 'pt', 1, 'https://ror.org/032typz45 Centro de Arqueologia da Almada'),
(112583, 'https://ror.org/032va1j59', 'en', 1, 'https://ror.org/032va1j59 University of Missouri System'),
(112584, 'https://ror.org/032vkvz43', 'en', 1, 'https://ror.org/032vkvz43 State Organization "Institute of Market and Economic&Ecological Researches of NAS of Ukraine" Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŠøŠ½ŠŗŃƒ і економіко-екологічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ŠŠŠ України"'),
(112585, 'https://ror.org/032xkv341', 'en', 1, 'https://ror.org/032xkv341 Exactpro Systems, Exactpro Systems (United Kingdom)'),
(112586, 'https://ror.org/033003e23', 'en', 1, 'https://ror.org/033003e23 Tampere University Tampereen Yliopisto'),
(112587, 'https://ror.org/0330j0z60', 'en', 1, 'https://ror.org/0330j0z60 Environmental Data Initiative'),
(112588, 'https://ror.org/0335t7e62', 'en', 1, 'https://ror.org/0335t7e62 cynkra GmbH (Switzerland)'),
(112589, 'https://ror.org/03383rg81', 'pt', 1, 'https://ror.org/03383rg81 Escola Superior Pedagógica do Cuanza Norte'),
(112590, 'https://ror.org/0338jc112', 'en', 1, 'https://ror.org/0338jc112 St. Petersburg State Technological Institute Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(112591, 'https://ror.org/0339vbv81', 'fr', 1, 'https://ror.org/0339vbv81 ZĆŗ'),
(112592, 'https://ror.org/033b1bz24', 'en', 1, 'https://ror.org/033b1bz24 Koto Memorial Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ę˜“ä¼šę¹–ę±čØ˜åæµē—…é™¢'),
(112593, 'https://ror.org/033cz7157', 'en', 1, 'https://ror.org/033cz7157 University of Architecture, Civil Engineering and Geodesy Университет по Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š°, строителство Šø Š³ŠµŠ¾Š“ŠµŠ·ŠøŃ'),
(112594, 'https://ror.org/033d3yc78', 'en', 1, 'https://ror.org/033d3yc78 Professional University of Information and Management for Innovation ęƒ…å ±ēµŒå–¶ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(112595, 'https://ror.org/033dtky70', 'en', 1, 'https://ror.org/033dtky70 All India Institute of Medical Sciences, Kalyani অখিল ভারতীয় ą¦†ą¦Æą¦¼ą§ą¦°ą§ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦øą¦‚ą¦øą§ą¦„ą¦¾ą¦Ø, ą¦•ą¦²ą§ą¦Æą¦¾ą¦£ą§€'),
(112596, 'https://ror.org/033eqas34', 'de', 1, 'https://ror.org/033eqas34 Justus Liebig University Giessen Justus-Liebig-Universität Gießen'),
(112597, 'https://ror.org/033fmp855', 'pt', 1, 'https://ror.org/033fmp855 Centro de História'),
(112598, 'https://ror.org/033h3cg70', 'en', 1, 'https://ror.org/033h3cg70 Institut für Bau- und Infrastrukturmanagement Institute of Construction and Infrastructure Management'),
(112599, 'https://ror.org/033m6bb51', 'en', 1, 'https://ror.org/033m6bb51 Japan Atomic Energy Relations Organization äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åŽŸå­åŠ›ę–‡åŒ–č²”å›£'),
(112600, 'https://ror.org/033m8p353', 'ca', 1, 'https://ror.org/033m8p353 Escola Superior de ComerƧ Internacional'),
(112601, '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'),
(112602, 'https://ror.org/033ncjh92', 'pt', 1, 'https://ror.org/033ncjh92 Observatório de Economia e Gestão de Fraude'),
(112603, '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)'),
(112604, 'https://ror.org/033sc7b24', 'en', 1, 'https://ror.org/033sc7b24 City College, Kolkata সিটি ą¦•ą¦²ą§‡ą¦œ'),
(112605, 'https://ror.org/033sr3d10', 'pt', 1, 'https://ror.org/033sr3d10 Autoridade Antidopagem de Portugal'),
(112606, 'https://ror.org/033sse383', 'en', 1, 'https://ror.org/033sse383 Human Media Creation Center å…¬ē›Šč²”å›£ę³•äŗŗä¹å·žćƒ’ćƒ„ćƒ¼ćƒžćƒ³ćƒ”ćƒ‡ć‚£ć‚¢å‰µé€ ć‚»ćƒ³ć‚æćƒ¼'),
(112607, 'https://ror.org/033t44h92', 'en', 1, 'https://ror.org/033t44h92 Jigawa State Polytechnic, Dutse'),
(112608, 'https://ror.org/033thdr11', 'en', 1, 'https://ror.org/033thdr11 Public Health Concern Trust, Nepal जन ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤øą¤°ą„‹ą¤•ą¤¾ą¤° ą¤Ÿą„ą¤°ą¤·ą„ą¤Ÿ'),
(112609, 'https://ror.org/033vnzz93', 'en', 1, 'https://ror.org/033vnzz93 The Affiliated Yongchuan Hospital of Chongqing Medical University é‡åŗ†åŒ»ē§‘å¤§å­¦é™„å±žę°øå·åŒ»é™¢'),
(112610, 'https://ror.org/033yfkj90', 'en', 1, 'https://ror.org/033yfkj90 Naval Postgraduate School'),
(112611, 'https://ror.org/033z8fr92', 'en', 1, 'https://ror.org/033z8fr92 Abadan University of Medical Sciences دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی آبادان'),
(112612, 'https://ror.org/0342s9s13', 'en', 1, 'https://ror.org/0342s9s13 Laboratorium für Anorganische Chemie Laboratory of Inorganic Chemistry'),
(112613, 'https://ror.org/03436dr48', 'en', 1, 'https://ror.org/03436dr48 Felicia College of Childhood Education ćƒ•ć‚§ćƒŖć‚·ć‚¢ć“ć©ć‚‚ēŸ­ęœŸå¤§å­¦'),
(112614, 'https://ror.org/03467xv55', 'fr', 1, 'https://ror.org/03467xv55 Centre de Recherche sur les Fonctionnements et Dysfonctionnements Psychologiques'),
(112615, 'https://ror.org/0346ase89', 'no_lang_code', 1, 'https://ror.org/0346ase89 Boeing (Australia)'),
(112616, '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.'),
(112617, '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'),
(112618, 'https://ror.org/0349akt15', 'pt', 1, 'https://ror.org/0349akt15 Centro de Investigação em Ciências da Construção'),
(112619, 'https://ror.org/034baah44', 'id', 1, 'https://ror.org/034baah44 Cyber University Indonesia Universitas Siber Indonesia'),
(112620, 'https://ror.org/034bx4794', 'en', 1, 'https://ror.org/034bx4794 Hokkaido Guide Dogs Association å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“ē›²å°ŽēŠ¬å”ä¼š'),
(112621, 'https://ror.org/034c0pj78', 'en', 1, 'https://ror.org/034c0pj78 Aomori City Hospital é’ę£®åø‚ę°‘ē—…é™¢'),
(112622, 'https://ror.org/034cr7f64', 'en', 1, 'https://ror.org/034cr7f64 Omiya-Kyoritsu Hospital åŒ»ē™‚ę³•äŗŗč²”å›£ę–°ē”Ÿä¼šå¤§å®®å…±ē«‹ē—…é™¢'),
(112623, 'https://ror.org/034e9s822', 'fr', 1, 'https://ror.org/034e9s822 SociƩtƩ ArithmƩtique de Bordeaux'),
(112624, 'https://ror.org/034fhbw64', 'pt', 1, 'https://ror.org/034fhbw64 Centro de Investigação em Educação e Psicologia'),
(112625, 'https://ror.org/034k14f91', 'en', 1, 'https://ror.org/034k14f91 Beijing Municipal Science and Technology Commission åŒ—äŗ¬åø‚ē§‘å­¦ęŠ€ęœÆå§”å‘˜ä¼š'),
(112626, 'https://ror.org/034k8m376', 'id', 1, 'https://ror.org/034k8m376 Politeknik Statistika STIS'),
(112627, 'https://ror.org/034npj057', 'en', 1, 'https://ror.org/034npj057 Hurley Medical Center'),
(112628, 'https://ror.org/034ny7j54', 'en', 1, 'https://ror.org/034ny7j54 National Agricultural Insurance Association å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č¾²ę„­å…±ęøˆå”ä¼š'),
(112629, 'https://ror.org/034pkh014', 'en', 1, 'https://ror.org/034pkh014 Kannur Medical College ą“•ą“£ąµą“£ąµ‚ąµ¼ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‡ą“¾ą“³ąµ‡ą“œąµ'),
(112630, 'https://ror.org/034r3f481', 'en', 1, 'https://ror.org/034r3f481 Amano Institute of Technology å…¬ē›Šč²”å›£ę³•äŗŗå¤©é‡Žå·„ę„­ęŠ€č”“ē ”ē©¶ę‰€'),
(112631, 'https://ror.org/034sbqc84', 'fr', 0, 'https://ror.org/034sbqc84 HƓtel-Dieu de QuƩbec'),
(112632, 'https://ror.org/034t30j35', 'en', 1, 'https://ror.org/034t30j35 Chinese Academy of Sciences 中国科学院'),
(112633, 'https://ror.org/034w35q36', 'it', 1, 'https://ror.org/034w35q36 Agenzia Regionale Protezione Ambiente Valle d''Aosta'),
(112634, 'https://ror.org/034x75m33', 'en', 1, 'https://ror.org/034x75m33 Yamagata Prefectural Inland Water Fisheries Experiment Station å±±å½¢ēœŒå†…ę°“é¢ę°“ē”£ē ”ē©¶ę‰€'),
(112635, 'https://ror.org/034yf3q41', 'en', 1, 'https://ror.org/034yf3q41 Nara Prefectural Livestock Experiment Station å„ˆč‰ÆēœŒē•œē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(112636, 'https://ror.org/0350q3086', 'en', 0, 'https://ror.org/0350q3086 Electrochemical Safety Research Institute'),
(112637, 'https://ror.org/03519c477', 'en', 1, 'https://ror.org/03519c477 The Japan Society for Bioscience, Biotechnology, and Agrochemistry å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č¾²čŠøåŒ–å­¦ä¼š'),
(112638, 'https://ror.org/0354d1a47', 'it', 1, 'https://ror.org/0354d1a47 Institut Agricole RƩgional'),
(112639, 'https://ror.org/0354t7b78', 'no_lang_code', 1, 'https://ror.org/0354t7b78 RTX (United States)'),
(112640, 'https://ror.org/03560ne38', 'en', 1, 'https://ror.org/03560ne38 Japan Professional Football League å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ­ć‚µćƒƒć‚«ćƒ¼ćƒŖćƒ¼ć‚°'),
(112641, 'https://ror.org/035agn614', 'en', 1, 'https://ror.org/035agn614 Navy and Marine Corps Force Health Protection Command'),
(112642, 'https://ror.org/035bjtc22', 'es', 1, 'https://ror.org/035bjtc22 Sociedad Cientifica de BibliometrĆ­a y CienciometrĆ­a'),
(112643, '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'),
(112644, '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'),
(112645, 'https://ror.org/035dsb084', 'en', 1, 'https://ror.org/035dsb084 HUN-REN Wigner Fizikai Kutatóközpont HUN-REN Wigner Research Centre for Physics'),
(112646, 'https://ror.org/035emn182', 'fr', 1, 'https://ror.org/035emn182 Laboratoire de Chimie Agro-Industrielle Laboratory of Agro-Industrial Chemistry'),
(112647, 'https://ror.org/035fwcz02', 'en', 1, 'https://ror.org/035fwcz02 Japan Subway Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åœ°äø‹é‰„å”ä¼š'),
(112648, 'https://ror.org/035ggvj17', 'en', 1, 'https://ror.org/035ggvj17 The Women University Multan ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ملتان'),
(112649, 'https://ror.org/035gwtk09', 'en', 1, 'https://ror.org/035gwtk09 Tianjin University of Technology and Education å¤©ę“„čŒäøšęŠ€ęœÆåøˆčŒƒå¤§å­¦'),
(112650, 'https://ror.org/035hc0m07', 'pl', 1, 'https://ror.org/035hc0m07 Nicolaus Copernicus Superior School Szkoła Główna Mikołaja Kopernika'),
(112651, 'https://ror.org/035nx7155', 'en', 1, 'https://ror.org/035nx7155 Kenwakai Ootemachi Hospital å…¬ē›Šč²”å›£ę³•äŗŗå„å’Œä¼šå¤§ę‰‹ē”ŗē—…é™¢'),
(112652, 'https://ror.org/035pqrt53', 'pt', 1, 'https://ror.org/035pqrt53 Sociedade CientĆ­fica de Pedagogia do Desporto'),
(112653, 'https://ror.org/035q34n44', 'no_lang_code', 1, 'https://ror.org/035q34n44 Schréder Iluminação (Portugal), Schréder Iluminação, S.A.'),
(112654, 'https://ror.org/035q3qk69', 'en', 1, 'https://ror.org/035q3qk69 Organization for Promoting Urban Development äø€čˆ¬č²”å›£ę³•äŗŗę°‘é–“éƒ½åø‚é–‹ē™ŗęŽØé€²ę©Ÿę§‹'),
(112655, 'https://ror.org/035tm0421', 'it', 1, 'https://ror.org/035tm0421 Ordine Architetti Pianificatori Paesaggisti Conservatori di Napoli e Provincia'),
(112656, 'https://ror.org/035wtm547', 'en', 1, 'https://ror.org/035wtm547 University of Michigan–Dearborn'),
(112657, 'https://ror.org/035xba693', 'de', 1, 'https://ror.org/035xba693 Krankenhaus Dresden-Friedrichstadt'),
(112658, 'https://ror.org/035xkbk20', 'fr', 1, 'https://ror.org/035xkbk20 Aix-Marseille University Aix-Marseille UniversitƩ'),
(112659, 'https://ror.org/03613d656', 'en', 1, 'https://ror.org/03613d656 Brno University of Technology VysokĆ© učenĆ­ technickĆ© v Brně'),
(112660, 'https://ror.org/03625s204', 'en', 1, 'https://ror.org/03625s204 Joshibi Junior College of Art and Design å„³å­ē¾Žč”“å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(112661, 'https://ror.org/036301z78', 'en', 1, 'https://ror.org/036301z78 St. Andrews Institute of Technology and Management'),
(112662, 'https://ror.org/03663xq97', 'en', 1, 'https://ror.org/03663xq97 Hamburg Port Authority'),
(112663, 'https://ror.org/0368htj83', 'en', 0, 'https://ror.org/0368htj83 Aerospace Technologies of Australia, Aerospace Technologies of Australia (Australia)'),
(112664, 'https://ror.org/0368jtq03', 'en', 1, 'https://ror.org/0368jtq03 Circular Economy Foundation'),
(112665, 'https://ror.org/036ajj366', 'en', 1, 'https://ror.org/036ajj366 Shiga Prefectural Livestock Technology Promotion Center ę»‹č³€ēœŒē•œē”£ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(112666, 'https://ror.org/036cb3t60', 'en', 1, 'https://ror.org/036cb3t60 Shenzhen Babel InfoTech. Co., Ltd., Shenzhen Babel InfoTech. Co., Ltd. (China) ę·±åœ³å·“č“å°”äæ”ęÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(112667, 'https://ror.org/036dmex16', 'en', 1, 'https://ror.org/036dmex16 Dr. Dayaram Patel Pharmacy College'),
(112668, 'https://ror.org/036e61f39', 'en', 1, 'https://ror.org/036e61f39 ERN RARE-LIVER'),
(112669, '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'),
(112670, 'https://ror.org/036h6g940', 'en', 1, 'https://ror.org/036h6g940 Government of India'),
(112671, 'https://ror.org/036jqmy94', 'en', 1, 'https://ror.org/036jqmy94 Universidad de Iowa University of Iowa UniversitƩ de l''iowa'),
(112672, 'https://ror.org/036k1r314', 'no_lang_code', 1, 'https://ror.org/036k1r314 Lundbeck (Portugal)'),
(112673, 'https://ror.org/036kpp596', 'en', 1, 'https://ror.org/036kpp596 Project Data Sphere'),
(112674, 'https://ror.org/036ptw795', 'en', 1, 'https://ror.org/036ptw795 Japan Waste MANAGEMENT&3R Reserch Foundation å…¬ē›Šč²”å›£ę³•äŗŗå»ƒę£„ē‰©ćƒ»3R研究貔団'),
(112675, 'https://ror.org/036rp1748', 'pt', 1, 'https://ror.org/036rp1748 Universidade de SĆ£o Paulo University of SĆ£o Paulo'),
(112676, 'https://ror.org/036s4j728', 'en', 1, 'https://ror.org/036s4j728 Federal College of Animal Health and Production Technology Ibadan'),
(112677, 'https://ror.org/036sm5f18', 'en', 1, 'https://ror.org/036sm5f18 American Shark Conservancy'),
(112678, 'https://ror.org/036vff312', 'pt', 1, 'https://ror.org/036vff312 Aletheia - Associação Científica e Cultural, Aletheia'),
(112679, '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'),
(112680, 'https://ror.org/036wqyb22', 'fr', 1, 'https://ror.org/036wqyb22 ENSA Dijon, Ɖcole nationale supĆ©rieure d’art de Dijon ENSA Dijon Art and Design'),
(112681, 'https://ror.org/036z42n03', 'en', 1, 'https://ror.org/036z42n03 Ibarakiken Medical Center äø€čˆ¬č²”å›£ę³•äŗŗčŒØåŸŽēœŒćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(112682, 'https://ror.org/037405308', 'en', 1, 'https://ror.org/037405308 Queensland Government'),
(112683, 'https://ror.org/03769b225', 'en', 1, 'https://ror.org/03769b225 University of Vaasa Vaasan yliopisto Vasa universitet'),
(112684, 'https://ror.org/0376pgy71', 'en', 1, 'https://ror.org/0376pgy71 The Institute of Labour Administration äø€čˆ¬č²”å›£ę³•äŗŗåŠ“å‹™č”Œę”æē ”ē©¶ę‰€'),
(112685, 'https://ror.org/0377srw41', 'en', 1, 'https://ror.org/0377srw41 MetroHealth'),
(112686, 'https://ror.org/0377z4z10', 'fr', 1, 'https://ror.org/0377z4z10 CHU Dijon Bourgogne'),
(112687, 'https://ror.org/037b3he73', 'fr', 1, 'https://ror.org/037b3he73 Biologie, ingƩnierie et imagerie pour l''Ophtalmologie'),
(112688, 'https://ror.org/037b5pv06', 'en', 1, 'https://ror.org/037b5pv06 PƩcsi TudomƔnyegyetem University of Pecs'),
(112689, 'https://ror.org/037dep095', 'fr', 1, 'https://ror.org/037dep095 Troubles du comportement Alimentaire, Addictions et Poids ExtrĆŖmes'),
(112690, 'https://ror.org/037gd6g64', 'en', 1, 'https://ror.org/037gd6g64 Division of Atmospheric and Geospace Sciences'),
(112691, 'https://ror.org/037gphk63', 'en', 1, 'https://ror.org/037gphk63 Japanese Foundation for Sexual Health Medicine å…¬ē›Šč²”å›£ę³•äŗŗę€§ć®å„åŗ·åŒ»å­¦č²”å›£'),
(112692, 'https://ror.org/037hby126', 'fr', 1, 'https://ror.org/037hby126 Ɖtablissement FranƧais du Sang'),
(112693, 'https://ror.org/037jqrk16', 'es', 1, 'https://ror.org/037jqrk16 Grupo Docente 2.0 C.A.'),
(112694, 'https://ror.org/037kggh38', 'en', 1, 'https://ror.org/037kggh38 Southern Philippines Agri-Business and Marine and Aquatic School of Technology'),
(112695, 'https://ror.org/037pnxs58', 'fr', 1, 'https://ror.org/037pnxs58 School, Mutations, Learning Ɖcole, Mutations, Apprentissages'),
(112696, 'https://ror.org/037qn8k12', 'en', 1, 'https://ror.org/037qn8k12 Texas Instruments (Singapore), Texas Instruments Singapore Ltd'),
(112697, 'https://ror.org/037r1m174', 'en', 1, 'https://ror.org/037r1m174 Budleigh Salterton Hospital'),
(112698, 'https://ror.org/037rcz246', 'en', 1, 'https://ror.org/037rcz246 Ibaraki International Association å…¬ē›Šč²”å›£ę³•äŗŗčŒØåŸŽēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(112699, 'https://ror.org/037tawy03', 'en', 1, 'https://ror.org/037tawy03 BIST Dolors Aleu Graduate Centre'),
(112700, 'https://ror.org/037teva93', 'en', 1, 'https://ror.org/037teva93 Manufacturing Science and Technology Center äø€čˆ¬č²”å›£ę³•äŗŗč£½é€ ē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(112701, 'https://ror.org/037tz0e16', 'en', 1, 'https://ror.org/037tz0e16 London Health Sciences Centre'),
(112702, 'https://ror.org/037vx0145', 'de', 1, 'https://ror.org/037vx0145 Projektträger Jülich'),
(112703, 'https://ror.org/037w8vx49', 'de', 1, 'https://ror.org/037w8vx49 Labor für Immunologische und Molekulare Krebsforschung, SCRI-LIMCR GmbH'),
(112704, 'https://ror.org/037x9qj67', 'en', 1, 'https://ror.org/037x9qj67 Research Data Alliance-US'),
(112705, 'https://ror.org/037xmw090', 'es', 1, 'https://ror.org/037xmw090 Red Gobernanza Metropolitana'),
(112706, 'https://ror.org/037xnbc69', 'en', 1, 'https://ror.org/037xnbc69 Hakodate Regional Industry Promotion Organization å…¬ē›Šč²”å›£ę³•äŗŗå‡½é¤Øåœ°åŸŸē”£ę„­ęŒÆčˆˆč²”å›£'),
(112707, 'https://ror.org/037xsw929', 'en', 1, 'https://ror.org/037xsw929 Nerima Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗē·“é¦¬åŒŗåŒ»åø«ä¼š'),
(112708, 'https://ror.org/037xxr180', 'en', 1, 'https://ror.org/037xxr180 Saitama Arts Foundation å…¬ē›Šč²”å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒčŠøč”“ę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(112709, 'https://ror.org/037zgn354', 'en', 1, 'https://ror.org/037zgn354 Johns Hopkins Medicine'),
(112710, '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'),
(112711, 'https://ror.org/0384epz80', 'en', 1, 'https://ror.org/0384epz80 The Japanese Society of Irrigation, Drainage and Rural Engineering å…¬ē›Šē¤¾å›£ę³•äŗŗč¾²ę„­č¾²ę‘å·„å­¦ä¼š'),
(112712, 'https://ror.org/0384j8v12', 'en', 1, 'https://ror.org/0384j8v12 The University of Sydney'),
(112713, 'https://ror.org/03865xp31', 'pt', 1, 'https://ror.org/03865xp31 Biblioteca Francisco Pereira de Moura'),
(112714, 'https://ror.org/03872jq72', 'pt', 1, 'https://ror.org/03872jq72 AgĆŖncia de Desenvolvimento Regional do Alentejo'),
(112715, 'https://ror.org/0388t6n15', 'en', 1, 'https://ror.org/0388t6n15 Japan Monorail Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ¢ćƒŽćƒ¬ćƒ¼ćƒ«å”ä¼š'),
(112716, 'https://ror.org/038agj363', 'en', 1, 'https://ror.org/038agj363 National Library of the Czech Republic NÔrodní knihovna České republiky'),
(112717, 'https://ror.org/038e1m489', 'pt', 1, 'https://ror.org/038e1m489 Centro de Investigação em Produção Agroalimentar SustentÔvel'),
(112718, 'https://ror.org/038e47q18', 'es', 1, 'https://ror.org/038e47q18 La Universidad Americana'),
(112719, 'https://ror.org/038f7y939', 'nl', 1, 'https://ror.org/038f7y939 Universitair Ziekenhuis Brussel'),
(112720, 'https://ror.org/038fcbc74', 'fr', 1, 'https://ror.org/038fcbc74 Institut de GƩnomique Fonctionnelle de Lyon'),
(112721, 'https://ror.org/038fyf011', 'nl', 1, 'https://ror.org/038fyf011 Kennisinstituut voor Mobiliteitsbeleid'),
(112722, 'https://ror.org/038k1np15', 'sv', 1, 'https://ror.org/038k1np15 If SkadefƶrsƤkring AB'),
(112723, 'https://ror.org/038kp1442', 'en', 1, 'https://ror.org/038kp1442 Minnesota Supercomputing Institute'),
(112724, 'https://ror.org/038kqx890', 'fr', 1, 'https://ror.org/038kqx890 Laboratoire d''Informatique de Bourgogne'),
(112725, 'https://ror.org/038npk083', 'en', 0, 'https://ror.org/038npk083 North Devon District Hospital'),
(112726, 'https://ror.org/038rnnj64', 'en', 1, 'https://ror.org/038rnnj64 Kenya National Bureau of Statistics'),
(112727, 'https://ror.org/038tjv815', 'pt', 1, 'https://ror.org/038tjv815 Unidade de Ensino e Investigação de Clínica Tropical'),
(112728, 'https://ror.org/038vftk36', 'pt', 1, 'https://ror.org/038vftk36 Nonagon - Parque de CiĆŖncia e Tecnologia de SĆ£o Miguel'),
(112729, 'https://ror.org/038w5kx24', 'es', 1, 'https://ror.org/038w5kx24 Universidad PolitƩcnica de Otzolotepec'),
(112730, 'https://ror.org/038x45410', 'en', 1, 'https://ror.org/038x45410 Miyagi International Association å…¬ē›Šč²”å›£ę³•äŗŗå®®åŸŽēœŒå›½éš›åŒ–å”ä¼š'),
(112731, 'https://ror.org/0390kp681', 'en', 1, 'https://ror.org/0390kp681 Institute for Circumpolar Health Research'),
(112732, 'https://ror.org/0391adj93', 'en', 1, 'https://ror.org/0391adj93 Japanese Association of Surveyors å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęø¬é‡å”ä¼š'),
(112733, 'https://ror.org/0393cmd93', 'en', 1, 'https://ror.org/0393cmd93 United States Air Force Reserve Command'),
(112734, 'https://ror.org/0394hvg14', 'en', 1, 'https://ror.org/0394hvg14 Hogrefe Publishing GmbH, Hogrefe Publishing GmbH (Germany)'),
(112735, 'https://ror.org/0396j7182', 'pl', 1, 'https://ror.org/0396j7182 St. Hedwig Hospital in Trzebnica Szpital im Świętej Jadwigi w Trzebnicy'),
(112736, 'https://ror.org/03986ee65', 'en', 1, 'https://ror.org/03986ee65 Japan Gymnastics Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä½“ę“å”ä¼š'),
(112737, 'https://ror.org/0398zhb04', 'en', 1, 'https://ror.org/0398zhb04 Sevinç-Erdal İnönü Foundation Sevinç-Erdal İnönü Vakfı'),
(112738, 'https://ror.org/0399dfq26', 'en', 1, 'https://ror.org/0399dfq26 United States Pacific Air Forces'),
(112739, 'https://ror.org/039bccw84', 'no_lang_code', 1, 'https://ror.org/039bccw84 Empresa Nacional de Residuos Radiactivos'),
(112740, 'https://ror.org/039byj944', 'en', 1, 'https://ror.org/039byj944 Asahigawasou Rehabilitation and Medical Center ē¤¾ä¼šē¦ē„‰ę³•äŗŗę—­å·č˜ē™‚č‚²ćƒ»åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(112741, 'https://ror.org/039cf4q47', 'en', 1, 'https://ror.org/039cf4q47 University of Mosul Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŁˆŲµŁ„'),
(112742, 'https://ror.org/039em6c59', 'en', 1, 'https://ror.org/039em6c59 Luxoft (Germany) Luxoft GmbH'),
(112743, 'https://ror.org/039hb9t88', 'pt', 1, 'https://ror.org/039hb9t88 Universidade do Minho Centro de Engenharia Biológica'),
(112744, 'https://ror.org/039k72y49', 'en', 1, 'https://ror.org/039k72y49 Assumption College'),
(112745, 'https://ror.org/039kwqk96', 'en', 1, 'https://ror.org/039kwqk96 Long Term Ecological Research Network'),
(112746, 'https://ror.org/039pt7s63', 'en', 1, 'https://ror.org/039pt7s63 Semiconductor Equipment Association of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŠå°Žä½“č£½é€ č£…ē½®å”ä¼š'),
(112747, 'https://ror.org/039qa0b28', 'de', 1, 'https://ror.org/039qa0b28 Hogrefe Verlag GmbH & Co. KG, Hogrefe Verlag GmbH & Co. KG (Germany)'),
(112748, 'https://ror.org/039qhs116', 'en', 1, 'https://ror.org/039qhs116 Brain Corporation, Brain Corporation (United States)'),
(112749, 'https://ror.org/039qn6p62', 'en', 1, 'https://ror.org/039qn6p62 Institute of Advanced Materials'),
(112750, 'https://ror.org/039qq6580', 'en', 1, 'https://ror.org/039qq6580 CITI Program, Collaborative Institutional Training Initiative'),
(112751, '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'),
(112752, 'https://ror.org/039td7v51', 'en', 1, 'https://ror.org/039td7v51 The Japan Federation of Engineering Societies å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å·„å­¦ä¼š'),
(112753, 'https://ror.org/039v8dd90', 'en', 1, 'https://ror.org/039v8dd90 Data Intelligence Institute of Paris'),
(112754, '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'),
(112755, 'https://ror.org/039vqpp67', 'en', 1, 'https://ror.org/039vqpp67 China Academy of Engineering Physics 中国巄程物理研究院'),
(112756, 'https://ror.org/039vzkj41', 'en', 1, 'https://ror.org/039vzkj41 Japan Art Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē¾Žč”“å”ä¼š'),
(112757, 'https://ror.org/03a1q3q78', 'en', 1, 'https://ror.org/03a1q3q78 The Evaluation Center'),
(112758, 'https://ror.org/03a1v4n19', 'en', 1, 'https://ror.org/03a1v4n19 Korea Radioactive Waste Agency'),
(112759, 'https://ror.org/03a2d0d33', 'en', 1, 'https://ror.org/03a2d0d33 Institute of Earthquake Forecasting, China Earthquake Administration äø­å›½åœ°éœ‡å±€åœ°éœ‡é¢„ęµ‹ē ”ē©¶ę‰€'),
(112760, 'https://ror.org/03a2tac74', 'en', 1, 'https://ror.org/03a2tac74 Florey Institute of Neuroscience and Mental Health'),
(112761, 'https://ror.org/03a4d8673', 'pt', 1, 'https://ror.org/03a4d8673 Escola Superior de Educação de Paula Frassinetti'),
(112762, 'https://ror.org/03a5bvk43', 'en', 1, 'https://ror.org/03a5bvk43 Institute of Climate-Smart Agriculture of the National Academy of Agrarian Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кліматично орієнтованого ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(112763, 'https://ror.org/03a64bh57', 'en', 1, 'https://ror.org/03a64bh57 University of Catania UniversitƠ degli Studi di Catania UniversitƤt Catania UniversitƩ de catane'),
(112764, 'https://ror.org/03a73ny50', 'en', 1, 'https://ror.org/03a73ny50 Atlantic International Research Centre'),
(112765, 'https://ror.org/03a976s92', 'en', 1, 'https://ror.org/03a976s92 Cedar Creek Ecosystem Science Reserve'),
(112766, 'https://ror.org/03ac55d31', 'no_lang_code', 1, 'https://ror.org/03ac55d31 Stachema (Czechia)'),
(112767, 'https://ror.org/03ac68784', 'fr', 1, 'https://ror.org/03ac68784 Ɖcole Nationale SupĆ©rieure de Formation de l’Enseignement Agricole'),
(112768, 'https://ror.org/03acp3c91', 'pt', 1, 'https://ror.org/03acp3c91 Unidade de Investigação e Desenvolvimento em Educação e Formação'),
(112769, 'https://ror.org/03adc6155', 'en', 1, 'https://ror.org/03adc6155 Okinawa Prefectural Deep See Water Research Center ę²–ēø„ēœŒęµ·ę“‹ę·±å±¤ę°“ē ”ē©¶ę‰€'),
(112770, 'https://ror.org/03aexwf51', 'en', 1, 'https://ror.org/03aexwf51 Housing RESEARCH&ADVANCEMENT Foundation Of Japan å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä½å®…ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(112771, 'https://ror.org/03ag5sy22', 'pt', 1, 'https://ror.org/03ag5sy22 Sociedade Portuguesa de Biologia de Plantas'),
(112772, 'https://ror.org/03agkn750', 'en', 1, 'https://ror.org/03agkn750 U.S. Army Space and Missile Defense Command'),
(112773, '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'),
(112774, 'https://ror.org/03akamm78', 'en', 1, 'https://ror.org/03akamm78 School for Continuing Education'),
(112775, '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'),
(112776, 'https://ror.org/03angcq70', 'en', 1, 'https://ror.org/03angcq70 Prifysgol Birmingham University of Birmingham'),
(112777, 'https://ror.org/03aqyvf83', 'en', 1, 'https://ror.org/03aqyvf83 Steno Diabetes Center North Jutland'),
(112778, 'https://ror.org/03arvv474', 'en', 1, 'https://ror.org/03arvv474 Anglo-American University Anglo-americkÔ vysokÔ Ŕkola'),
(112779, 'https://ror.org/03avb9a76', 'en', 1, 'https://ror.org/03avb9a76 Water Resources Environment Center, Japan äø€čˆ¬č²”å›£ę³•äŗŗę°“ęŗåœ°ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(112780, 'https://ror.org/03az81r49', 'es', 1, 'https://ror.org/03az81r49 Santiago University of Technology Universidad Tecnológica de Santiago'),
(112781, 'https://ror.org/03azpm588', 'en', 1, 'https://ror.org/03azpm588 Shonan Kamakura University of Medical Sciences ę¹˜å—éŽŒå€‰åŒ»ē™‚å¤§å­¦'),
(112782, 'https://ror.org/03b03vy48', 'en', 1, 'https://ror.org/03b03vy48 Japan Rehabilitation Nursing Association ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ēœ‹č­·å­¦ä¼š'),
(112783, 'https://ror.org/03b0nrd90', 'en', 1, 'https://ror.org/03b0nrd90 IMAQ Research'),
(112784, 'https://ror.org/03b1fmh33', 'pt', 1, 'https://ror.org/03b1fmh33 Faculdade Santa Marcelina'),
(112785, 'https://ror.org/03b1m6c97', 'pt', 1, 'https://ror.org/03b1m6c97 Conservatório Bomfim'),
(112786, 'https://ror.org/03b3ph316', 'es', 1, 'https://ror.org/03b3ph316 FundaQuim'),
(112787, 'https://ror.org/03b45mr48', 'en', 0, 'https://ror.org/03b45mr48 Central Clinical Hospital Centralny Szpital Kliniczny Ministerstwa Spraw Wewnętrznych'),
(112788, 'https://ror.org/03b4k4y74', 'en', 1, 'https://ror.org/03b4k4y74 Molecular Structural and Cellular Microbiology'),
(112789, 'https://ror.org/03b554061', 'no_lang_code', 1, 'https://ror.org/03b554061 Atlantik Fish (Portugal)'),
(112790, 'https://ror.org/03b5p6e80', 'en', 1, 'https://ror.org/03b5p6e80 Chulabhorn Royal Academy'),
(112791, 'https://ror.org/03b6n4p76', 'pt', 1, 'https://ror.org/03b6n4p76 CĆ¢mara Municipal de Tondela'),
(112792, 'https://ror.org/03b7pda13', 'en', 1, 'https://ror.org/03b7pda13 Military Health System Sistema Militar de Salud de EUA'),
(112793, 'https://ror.org/03b7q7m09', 'uz', 1, 'https://ror.org/03b7q7m09 Paxta Ilmiy-innovasiya Markazi, Paxta Ilmiy-innovasiya Markazi (Uzbekistan)'),
(112794, 'https://ror.org/03b92a478', 'en', 1, 'https://ror.org/03b92a478 Chugoku Occupational Health Association å…¬ē›Šč²”å›£ę³•äŗŗäø­å›½åŠ“åƒč”›ē”Ÿå”ä¼š'),
(112795, 'https://ror.org/03b94tp07', 'en', 1, 'https://ror.org/03b94tp07 University of Auckland Waipapa Taumata Rau'),
(112796, 'https://ror.org/03ba0sv14', 'en', 1, 'https://ror.org/03ba0sv14 Government College of Pharmacy Rohru'),
(112797, 'https://ror.org/03ba7k022', 'de', 1, 'https://ror.org/03ba7k022 Anstalt für Verbrennungskraftmaschinen List (Germany)'),
(112798, 'https://ror.org/03bb8az06', 'en', 1, 'https://ror.org/03bb8az06 Raw Materials Research and Development Council'),
(112799, 'https://ror.org/03bg0ms48', 'en', 1, 'https://ror.org/03bg0ms48 California Walnut Growers Association'),
(112800, 'https://ror.org/03bgt5n04', 'en', 1, 'https://ror.org/03bgt5n04 Japan Association of Graphic Arts Technology å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°åˆ·ęŠ€č”“å”ä¼š'),
(112801, 'https://ror.org/03bhc0r81', 'en', 1, 'https://ror.org/03bhc0r81 Honda Foundation å…¬ē›Šč²”å›£ę³•äŗŗęœ¬ē”°č²”å›£'),
(112802, 'https://ror.org/03bqvm492', 'en', 1, 'https://ror.org/03bqvm492 SciKA-Association for Promotion and Dissemination of Scientific Knowledge'),
(112803, 'https://ror.org/03brtw716', 'pt', 1, 'https://ror.org/03brtw716 Sociedade Portuguesa de Cerâmica e Vidro'),
(112804, 'https://ror.org/03bt7ej51', 'pt', 1, 'https://ror.org/03bt7ej51 Centro de Investigacao em Direito Europeu Economico Financeiro e Fiscal'),
(112805, 'https://ror.org/03bvv1786', 'en', 1, 'https://ror.org/03bvv1786 Springer Nature (Nanjing, China)'),
(112806, 'https://ror.org/03bvw9g02', 'en', 1, 'https://ror.org/03bvw9g02 Laboratório Nacional de Engenharia Civil National Laboratory for Civil Engineering'),
(112807, 'https://ror.org/03bzbcg65', 'en', 1, 'https://ror.org/03bzbcg65 Nigerian Army College of Education'),
(112808, 'https://ror.org/03c1c5b19', 'en', 1, 'https://ror.org/03c1c5b19 Geodetic Facility for the Advancement of Geoscience'),
(112809, 'https://ror.org/03c44v465', 'en', 1, 'https://ror.org/03c44v465 Politecnico di Bari Polytechnic University of Bari Ɖcole Polytechnique de Bari'),
(112810, 'https://ror.org/03c62dg59', 'en', 1, 'https://ror.org/03c62dg59 L''HƓpital d''Ottawa Ottawa Hospital'),
(112811, 'https://ror.org/03c6kd554', 'en', 1, 'https://ror.org/03c6kd554 Royal Australian College of General Practitioners'),
(112812, 'https://ror.org/03c7p2r39', 'en', 1, 'https://ror.org/03c7p2r39 Nuclear Science User Facilities'),
(112813, 'https://ror.org/03c81c376', 'es', 1, 'https://ror.org/03c81c376 Hospital Universitario de Neiva'),
(112814, 'https://ror.org/03c86nx70', 'en', 1, 'https://ror.org/03c86nx70 Ministerstwo Spraw Wewnętrznych i Administracji Ministry of Interior and Administration'),
(112815, 'https://ror.org/03c94yw72', 'en', 1, 'https://ror.org/03c94yw72 Japan Association of Refrigeration and Air-Conditioning Contractors äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡ē©ŗčŖæčØ­å‚™å·„ę„­é€£åˆä¼š'),
(112816, 'https://ror.org/03cah9702', 'en', 1, 'https://ror.org/03cah9702 Shiv Nadar Foundation शिव नादर ą¤«ą¤¾ą¤‰ą¤‚ą¤”ą„‡ą¤¶ą¤Ø'),
(112817, 'https://ror.org/03capj968', 'fr', 1, 'https://ror.org/03capj968 Institut de Recherche en CancƩrologie de Montpellier Institute of Cancer Research of Montpellier'),
(112818, 'https://ror.org/03cd02q50', 'en', 1, 'https://ror.org/03cd02q50 United States Army Medical Research and Development Command'),
(112819, 'https://ror.org/03cemkr79', 'pt', 1, 'https://ror.org/03cemkr79 Instituto de Cultura e LĆ­ngua Portuguesa'),
(112820, 'https://ror.org/03chdv970', 'en', 1, 'https://ror.org/03chdv970 Yamaha Music Foundation äø€čˆ¬č²”å›£ę³•äŗŗćƒ¤ćƒžćƒéŸ³ę„½ęŒÆčˆˆä¼š'),
(112821, 'https://ror.org/03chr2715', 'en', 1, 'https://ror.org/03chr2715 Colorado Geological Survey'),
(112822, 'https://ror.org/03cn82n65', 'pt', 1, 'https://ror.org/03cn82n65 Sociedade Portuguesa de Materiais'),
(112823, 'https://ror.org/03cppt751', 'en', 1, 'https://ror.org/03cppt751 Stanbridge University'),
(112824, 'https://ror.org/03cq6nq25', 'fr', 1, 'https://ror.org/03cq6nq25 Mission ArchƩologique FranƧaise du Bassin de l''Indus'),
(112825, 'https://ror.org/03crewh69', 'en', 1, 'https://ror.org/03crewh69 Nablus University for Vocational and Technical Education'),
(112826, 'https://ror.org/03cs53d16', 'en', 1, 'https://ror.org/03cs53d16 United States Navy'),
(112827, '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̇'),
(112828, 'https://ror.org/03cw9y275', 'en', 1, 'https://ror.org/03cw9y275 Assumption College'),
(112829, 'https://ror.org/03cy88j81', 'pt', 1, 'https://ror.org/03cy88j81 PORBIOTA'),
(112830, 'https://ror.org/03cykd395', 'en', 1, 'https://ror.org/03cykd395 National Archives NƔrodnƭ archiv'),
(112831, 'https://ror.org/03cymxs77', 'en', 1, 'https://ror.org/03cymxs77 Medical Corporation Kyowakai Senri Chuo Hospital åŒ»ē™‚ę³•äŗŗå”å’Œä¼šåƒé‡Œäø­å¤®ē—…é™¢'),
(112832, 'https://ror.org/03d0p2685', 'en', 1, 'https://ror.org/03d0p2685 Helmholtz Centre for Infection Research Helmholtz-Zentrum für Infektionsforschung'),
(112833, 'https://ror.org/03d1gxm29', 'pt', 1, 'https://ror.org/03d1gxm29 Comissão de Coordenação e Desenvolvimento Regional do Centro'),
(112834, 'https://ror.org/03d5bdh78', 'pt', 1, 'https://ror.org/03d5bdh78 Prevenção RodoviÔria Portuguesa'),
(112835, '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'),
(112836, 'https://ror.org/03d66mt49', 'en', 1, 'https://ror.org/03d66mt49 West Midlands Open University'),
(112837, 'https://ror.org/03d7sax13', 'en', 1, 'https://ror.org/03d7sax13 South Central Minzu University äø­å—ę°‘ę—å¤§å­¦'),
(112838, 'https://ror.org/03df8gj37', 'en', 1, 'https://ror.org/03df8gj37 Defense Health Agency'),
(112839, 'https://ror.org/03dfqms15', 'en', 1, 'https://ror.org/03dfqms15 Institut für Informationssicherheit Institute of Information Security'),
(112840, 'https://ror.org/03dgzv892', 'en', 1, 'https://ror.org/03dgzv892 The Crichton Trust'),
(112841, 'https://ror.org/03dhqvj54', 'en', 1, 'https://ror.org/03dhqvj54 American Counseling Association'),
(112842, 'https://ror.org/03djz2k45', 'en', 1, 'https://ror.org/03djz2k45 Society for the Protection of Underground Networks'),
(112843, 'https://ror.org/03dm1p143', 'en', 1, 'https://ror.org/03dm1p143 Naval Sea Systems Command'),
(112844, 'https://ror.org/03dqw6d47', 'en', 1, 'https://ror.org/03dqw6d47 Kadoorie Farm and Botanic Garden å˜‰é“ē†å†œåœŗęšØę¤ē‰©å›­'),
(112845, 'https://ror.org/03dsae014', 'es', 1, 'https://ror.org/03dsae014 Hospital Clƭnico FƩlix Bulnes'),
(112846, 'https://ror.org/03dsd0g48', 'fr', 1, 'https://ror.org/03dsd0g48 Laboratoire des Sciences du Climat et de l''Environnement'),
(112847, 'https://ror.org/03dspf496', 'no_lang_code', 1, 'https://ror.org/03dspf496 McKinsey and Company (Portugal)'),
(112848, 'https://ror.org/03dtebk39', 'en', 1, 'https://ror.org/03dtebk39 Ethniko Asteroskopeio Athinon, Ī•ĪøĪ½Ī¹ĪŗĻŒ Ī‘ĻƒĻ„ĪµĻĪæĻƒĪŗĪæĻ€ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½ National Observatory of Athens'),
(112849, 'https://ror.org/03dvm1235', 'en', 1, 'https://ror.org/03dvm1235 Glasgow Caledonian University'),
(112850, 'https://ror.org/03dwsxr17', 'en', 1, 'https://ror.org/03dwsxr17 University of Forestry and Environmental Science į€žį€…į€ŗį€į€±į€¬į€”į€¾į€„į€·į€ŗį€•į€į€ŗį€į€”į€ŗį€øį€€į€»į€„į€ŗį€†į€­į€Æį€„į€ŗį€›į€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ-ရေဆင်း'),
(112851, 'https://ror.org/03dx15n64', 'en', 1, 'https://ror.org/03dx15n64 Autodesk (Singapore), Autodesk Asia Pte Ltd'),
(112852, 'https://ror.org/03e0aj978', 'en', 1, 'https://ror.org/03e0aj978 University of Larestan Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ لارستان'),
(112853, 'https://ror.org/03e0qa028', 'en', 1, 'https://ror.org/03e0qa028 Department of Economic Development Jobs Transport and Resources'),
(112854, 'https://ror.org/03e1cv717', 'en', 1, 'https://ror.org/03e1cv717 Shirai Hospital åŒ»ē™‚ę³•äŗŗē™½åÆä¼šē™½äŗ•ē—…é™¢'),
(112855, 'https://ror.org/03e4pc311', 'pt', 1, 'https://ror.org/03e4pc311 Centro de Estudos Farmaceuticos'),
(112856, 'https://ror.org/03e5g4t87', 'no_lang_code', 1, 'https://ror.org/03e5g4t87 Puratos, Puratos (Portugal)'),
(112857, 'https://ror.org/03ea0g517', 'en', 0, 'https://ror.org/03ea0g517 Ellison Institute of Technology'),
(112858, 'https://ror.org/03eaa3f03', 'no_lang_code', 1, 'https://ror.org/03eaa3f03 Valmet (Finland)'),
(112859, 'https://ror.org/03eb33654', 'en', 1, 'https://ror.org/03eb33654 Hooghly Engineering & Technology College'),
(112860, 'https://ror.org/03ecnj426', 'no_lang_code', 0, 'https://ror.org/03ecnj426 InfectControl'),
(112861, 'https://ror.org/03ee8t320', 'pt', 1, 'https://ror.org/03ee8t320 Centro de Materiais'),
(112862, 'https://ror.org/03eexn793', 'en', 1, 'https://ror.org/03eexn793 THE Botanical Society Of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©å­¦ä¼š'),
(112863, 'https://ror.org/03efmqc40', 'en', 1, 'https://ror.org/03efmqc40 Arizona State University Universidad Estatal de Arizona UniversitĆ© d''Ɖtat de l''Arizona'),
(112864, 'https://ror.org/03eftgw80', 'en', 1, 'https://ror.org/03eftgw80 Indiana University Indianapolis'),
(112865, 'https://ror.org/03eg6ys02', 'en', 1, 'https://ror.org/03eg6ys02 American Library Association'),
(112866, 'https://ror.org/03egzhv07', 'pt', 1, 'https://ror.org/03egzhv07 Museu Municipal Amadeo de Souza-Cardoso'),
(112867, 'https://ror.org/03ehdx160', 'en', 1, 'https://ror.org/03ehdx160 Brightpoint Community College'),
(112868, 'https://ror.org/03ejtwf02', 'en', 1, 'https://ror.org/03ejtwf02 INA Central Hospital ä¼Šé‚£äø­å¤®ē—…é™¢'),
(112869, '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)'),
(112870, 'https://ror.org/03ekph544', 'en', 0, 'https://ror.org/03ekph544 All-Russian research Institute of metrological service Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологической ŃŠ»ŃƒŠ¶Š±Ń‹'),
(112871, 'https://ror.org/03em9qx04', 'no_lang_code', 1, 'https://ror.org/03em9qx04 AbbVie (Portugal)'),
(112872, 'https://ror.org/03emx5713', 'pt', 1, 'https://ror.org/03emx5713 Centro CiĆŖncia Viva de Alviela'),
(112873, 'https://ror.org/03en16648', 'no_lang_code', 1, 'https://ror.org/03en16648 Novo Nordisk (Portugal)'),
(112874, 'https://ror.org/03ep8k939', 'en', 1, 'https://ror.org/03ep8k939 Japan Building Maintenance Association å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½ćƒ“ćƒ«ćƒ”ćƒ³ćƒ†ćƒŠćƒ³ć‚¹å”ä¼š'),
(112875, 'https://ror.org/03eqwt088', 'fr', 1, 'https://ror.org/03eqwt088 Institut Des HumanitƩs NumƩriques Institute of Digital Humanities'),
(112876, 'https://ror.org/03esr8826', 'en', 1, 'https://ror.org/03esr8826 Lake Biwa Museum ę»‹č³€ēœŒē«‹ēµē¶ę¹–åšē‰©é¤Ø'),
(112877, 'https://ror.org/03esshb58', 'pt', 1, 'https://ror.org/03esshb58 Centro de Investigação para Tecnologias Interactivas'),
(112878, 'https://ror.org/03et06q41', 'en', 1, 'https://ror.org/03et06q41 Khwopa College of Engineering ą¤–ą„ą¤µą¤Ŗ ą¤•ą¤²ą„‡ą¤œ अफ ą¤ˆą¤Øą„ą¤œą¤æą¤Øą¤æą¤Æą¤°ą¤æą¤™ą„ą¤—'),
(112879, 'https://ror.org/03eta3039', 'es', 1, 'https://ror.org/03eta3039 CEDEU - Centro de Estudios Universitarios'),
(112880, 'https://ror.org/03ev5xa26', 'en', 1, 'https://ror.org/03ev5xa26 Coiba Scientific Station (Coiba AIP)'),
(112881, 'https://ror.org/03exyhz83', 'pt', 1, 'https://ror.org/03exyhz83 NET4CO2'),
(112882, 'https://ror.org/03eyknf31', 'pt', 1, 'https://ror.org/03eyknf31 LISPOLIS - Associação para o Pólo Tecnológico de Lisboa'),
(112883, 'https://ror.org/03eyrxr75', 'en', 1, 'https://ror.org/03eyrxr75 Kathmandu Diabetes and Thyroid Center Pvt Ltd'),
(112884, 'https://ror.org/03ez40v33', 'en', 1, 'https://ror.org/03ez40v33 BI Norwegian Business School'),
(112885, 'https://ror.org/03f0zj759', 'it', 1, 'https://ror.org/03f0zj759 Congressi Stefano Franscini'),
(112886, 'https://ror.org/03f20qb41', 'en', 1, 'https://ror.org/03f20qb41 School of Planning and Architecture, Vijayawada'),
(112887, 'https://ror.org/03f239z63', 'en', 1, 'https://ror.org/03f239z63 Moravian Library in Brno MoravskĆ” zemskĆ” knihovna v Brně'),
(112888, 'https://ror.org/03f394x19', 'en', 1, 'https://ror.org/03f394x19 National Institute of Hydrology'),
(112889, 'https://ror.org/03f6z9r32', 'en', 1, 'https://ror.org/03f6z9r32 UniMAC-GIJ, University of Media, Arts and Communication - Ghana Institute of Journalism'),
(112890, 'https://ror.org/03f8vdc52', 'no_lang_code', 1, 'https://ror.org/03f8vdc52 Valorsul, Valorsul (Portugal)'),
(112891, 'https://ror.org/03fatne33', 'en', 1, 'https://ror.org/03fatne33 Mamun University Ma’mun Universiteti Мамун Университет'),
(112892, 'https://ror.org/03fgbzh72', 'pt', 1, 'https://ror.org/03fgbzh72 Ordem dos Advogados'),
(112893, 'https://ror.org/03fhbym19', 'en', 1, 'https://ror.org/03fhbym19 Global Infrastructure Fund Research Foundation Japan å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚°ćƒ­ćƒ¼ćƒćƒ«ćƒ»ć‚¤ćƒ³ćƒ•ćƒ©ć‚¹ćƒˆćƒ©ć‚Æćƒćƒ£ćƒ¼ē ”ē©¶č²”å›£'),
(112894, 'https://ror.org/03fhy0p09', 'no_lang_code', 1, 'https://ror.org/03fhy0p09 MCretail SGPS (Portugal), MCretail SGPS, S.A.'),
(112895, 'https://ror.org/03fj82m46', 'en', 1, 'https://ror.org/03fj82m46 INTI International University Kolej Universiti Antarabangsa INTI'),
(112896, 'https://ror.org/03fjwdh27', 'pt', 1, 'https://ror.org/03fjwdh27 Novartis Farma SA (Portugal)'),
(112897, 'https://ror.org/03fn1w943', 'en', 1, 'https://ror.org/03fn1w943 International Science and Technology Center'),
(112898, 'https://ror.org/03fn9xs58', 'no_lang_code', 1, 'https://ror.org/03fn9xs58 Gentex Gentex (United States)'),
(112899, 'https://ror.org/03fqkgf18', 'en', 1, 'https://ror.org/03fqkgf18 Navy Expeditionary Combat Command'),
(112900, 'https://ror.org/03fqqe674', 'en', 1, 'https://ror.org/03fqqe674 Davao Oriental State University'),
(112901, 'https://ror.org/03fqxnd58', 'en', 1, 'https://ror.org/03fqxnd58 The Japan Containers And Packaging Recycling Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å®¹å™ØåŒ…č£…ćƒŖć‚µć‚¤ć‚Æćƒ«å”ä¼š');
INSERT INTO `rors` VALUES
(112902, 'https://ror.org/03fsbqz23', 'en', 1, 'https://ror.org/03fsbqz23 Chuadanga Government College ą¦šą§ą¦Æą¦¼ą¦¾ą¦”ą¦¾ą¦™ą§ą¦—ą¦¾ সরকারি ą¦•ą¦²ą§‡ą¦œ'),
(112903, 'https://ror.org/03fsekm51', 'en', 1, 'https://ror.org/03fsekm51 Institute of Economics Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук'),
(112904, 'https://ror.org/03fte3n86', 'fr', 1, 'https://ror.org/03fte3n86 Laboratoire d''Ɖcophysiologie MolĆ©culaire des Plantes sous Stress Environnementaux'),
(112905, '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'),
(112906, 'https://ror.org/03ftsw720', 'en', 1, 'https://ror.org/03ftsw720 National Football League Players Association'),
(112907, 'https://ror.org/03fwrze78', 'pt', 1, 'https://ror.org/03fwrze78 Entidade Reguladora para a Comunicação Social'),
(112908, 'https://ror.org/03fzyek12', 'en', 1, 'https://ror.org/03fzyek12 Japan International Labour Foundation å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›åŠ“åƒč²”å›£'),
(112909, 'https://ror.org/03g0m9c53', 'en', 1, 'https://ror.org/03g0m9c53 KEN I Kai Foundation å…¬ē›Šč²”å›£ę³•äŗŗē ”åŒ»ä¼š'),
(112910, 'https://ror.org/03g0rgh76', 'en', 1, 'https://ror.org/03g0rgh76 Kaiyuan E-Commerce (Shenzhen) Co., Ltd., Kaiyuan E-Commerce (Shenzhen) Co., Ltd. (China)'),
(112911, 'https://ror.org/03g1q6c06', 'en', 1, 'https://ror.org/03g1q6c06 SUNY Geneseo'),
(112912, 'https://ror.org/03g1srd85', 'id', 1, 'https://ror.org/03g1srd85 Sekolah Tinggi teologi Injili indonesia Palu'),
(112913, 'https://ror.org/03g24yj40', 'pt', 1, 'https://ror.org/03g24yj40 SANJOTEC - Centro Empresarial e Tecnológico de São João da Madeira'),
(112914, 'https://ror.org/03g2ax673', 'pt', 1, 'https://ror.org/03g2ax673 Unidade de Microbiologia MƩdica'),
(112915, 'https://ror.org/03g600928', 'pt', 1, 'https://ror.org/03g600928 Agência para a Competitividade e Inovação IP'),
(112916, 'https://ror.org/03g8mak77', 'en', 1, 'https://ror.org/03g8mak77 Lubrizol, Lubrizol (United States), Lubrizol Advanced Materials, Inc.'),
(112917, 'https://ror.org/03ga7rm71', 'pt', 1, 'https://ror.org/03ga7rm71 Sociedade Portuguesa de Botânica'),
(112918, 'https://ror.org/03gbgw380', 'fr', 1, 'https://ror.org/03gbgw380 Institut de Science des DonnƩes de Montpellier'),
(112919, 'https://ror.org/03gbh4j43', 'no_lang_code', 1, 'https://ror.org/03gbh4j43 Tetra Pak (Portugal), Tetra Pak Portugal SA'),
(112920, 'https://ror.org/03gdqbp47', 'en', 1, 'https://ror.org/03gdqbp47 Sharing Foundation'),
(112921, 'https://ror.org/03gds6c39', 'en', 1, 'https://ror.org/03gds6c39 The University of Texas Health Science Center at Houston'),
(112922, 'https://ror.org/03geepx94', 'en', 1, 'https://ror.org/03geepx94 Northern Iloilo State University'),
(112923, 'https://ror.org/03ggezs29', 'en', 1, 'https://ror.org/03ggezs29 National University of Battambang įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž‡įž¶įžįž·įž”įž¶įžįŸ‹įžŠįŸ†įž”įž„'),
(112924, 'https://ror.org/03ggyy033', 'en', 1, 'https://ror.org/03ggyy033 Tokyo Bay Urayasu Ichikawa Medical Center å…¬ē›Šē¤¾å›£ę³•äŗŗåœ°åŸŸåŒ»ē™‚ęŒÆčˆˆå”ä¼šę±äŗ¬ćƒ™ć‚¤ćƒ»ęµ¦å®‰åø‚å·åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(112925, 'https://ror.org/03ggzay52', 'en', 1, 'https://ror.org/03ggzay52 Neu-Ulm University of Applied Sciences'),
(112926, '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'),
(112927, 'https://ror.org/03gnqwy84', 'en', 1, 'https://ror.org/03gnqwy84 Japan Association for Promotion of Educational Technology äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę•™č‚²ęƒ…å ±åŒ–ęŒÆčˆˆä¼š'),
(112928, 'https://ror.org/03gp3tf26', 'en', 1, 'https://ror.org/03gp3tf26 Yuai Memorial Hospital čŒØåŸŽēœŒę°‘ē”Ÿę“»å”åŒēµ„åˆå‹ę„›čØ˜åæµē—…é™¢'),
(112929, 'https://ror.org/03gqzdg87', 'en', 1, 'https://ror.org/03gqzdg87 Steno Diabetes Center Copenhagen'),
(112930, 'https://ror.org/03grnna41', 'en', 1, 'https://ror.org/03grnna41 Royal Women''s Hospital'),
(112931, 'https://ror.org/03grvy078', 'en', 1, 'https://ror.org/03grvy078 Universidad de Minnesota University of Minnesota System UniversitƩ du Minnesota'),
(112932, 'https://ror.org/03gss5916', 'no', 1, 'https://ror.org/03gss5916 HĆøyskolen Kristiania Kristiania University of Applied Sciences'),
(112933, 'https://ror.org/03gvhpa76', 'es', 1, 'https://ror.org/03gvhpa76 Centro Internacional de Mejoramiento de MaĆ­z Y Trigo'),
(112934, '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ș'),
(112935, 'https://ror.org/03gz5yh89', 'id', 1, 'https://ror.org/03gz5yh89 Universitas Hasyim Asy''ari'),
(112936, 'https://ror.org/03h1a3963', 'pt', 1, 'https://ror.org/03h1a3963 Centro para o Direito Ambiental e Desenvolvimento Sustentado'),
(112937, 'https://ror.org/03h2bxq36', 'en', 1, 'https://ror.org/03h2bxq36 University of Dundee'),
(112938, 'https://ror.org/03h3fdc41', 'en', 1, 'https://ror.org/03h3fdc41 Collaborative Innovation Center of Suzhou Nano Science and Technology č‹å·žēŗ³ē±³ē§‘ęŠ€ååŒåˆ›ę–°äø­åæƒ'),
(112939, 'https://ror.org/03h5yht09', 'en', 1, 'https://ror.org/03h5yht09 Japan Volleyball Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒćƒ¬ćƒ¼ćƒœćƒ¼ćƒ«å”ä¼š'),
(112940, 'https://ror.org/03h7qq074', 'en', 1, 'https://ror.org/03h7qq074 Slovak Academy of Sciences SlovenskƔ AkadƩmia Vied SzlovƔk TudomƔnyos AkadƩmia'),
(112941, 'https://ror.org/03h8d7859', 'en', 1, 'https://ror.org/03h8d7859 Czech Infrastructure for Integrative Structural Biology ČeskÔ infrastruktura pro integrativní strukturní biologii'),
(112942, 'https://ror.org/03hahne97', 'en', 1, 'https://ror.org/03hahne97 Namangan Institute of Engineering and Technology Namangan muhandislik-texnologiya instituti'),
(112943, 'https://ror.org/03hbqx296', 'en', 1, 'https://ror.org/03hbqx296 Gifu Municipal Institute of Public Health å²é˜œåø‚č”›ē”Ÿč©¦éØ“ę‰€'),
(112944, 'https://ror.org/03hffat62', 'fr', 1, 'https://ror.org/03hffat62 Institut de Recherche sur la Fusion par Confinement MagnƩtique Institute for Magnetic Fusion Research'),
(112945, 'https://ror.org/03hfk3t86', 'no_lang_code', 1, 'https://ror.org/03hfk3t86 Marzano Research (United States)'),
(112946, 'https://ror.org/03hfq8t25', 'no_lang_code', 1, 'https://ror.org/03hfq8t25 Almedina, S.A. (Portugal)'),
(112947, 'https://ror.org/03hgb4x70', 'de', 1, 'https://ror.org/03hgb4x70 Regional Didactic Centres Regionale Didaktische Zentren PHSG'),
(112948, 'https://ror.org/03hgdjp72', 'en', 1, 'https://ror.org/03hgdjp72 Ontario HIV Treatment Network'),
(112949, 'https://ror.org/03hgf2c53', 'es', 1, 'https://ror.org/03hgf2c53 Fundación Síndrome de Dravet'),
(112950, 'https://ror.org/03hgsyv65', 'fr', 1, 'https://ror.org/03hgsyv65 Laboratoire Temps Espace'),
(112951, 'https://ror.org/03hh0by67', 'en', 1, 'https://ror.org/03hh0by67 Pacific AIDS Network'),
(112952, 'https://ror.org/03hhrgn91', 'pt', 1, 'https://ror.org/03hhrgn91 Fundação Amélia de Mello'),
(112953, 'https://ror.org/03hj8rz96', 'en', 0, 'https://ror.org/03hj8rz96 Hochschule für Gesundheit - University of Applied Sciences Hochschule für Gesundheit Bochum'),
(112954, 'https://ror.org/03hjcs512', 'en', 1, 'https://ror.org/03hjcs512 Automatic Control Laboratory Institut für Automatik'),
(112955, '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'),
(112956, 'https://ror.org/03hjgt059', 'en', 1, 'https://ror.org/03hjgt059 Barcelona Institute for Global Health'),
(112957, 'https://ror.org/03hjh0h14', 'en', 1, 'https://ror.org/03hjh0h14 CNRS@CREATE Ltd, CNRS@CREATE Ltd (Singapore)'),
(112958, 'https://ror.org/03hm05b86', 'pt', 1, 'https://ror.org/03hm05b86 Museu do Abade de BaƧal'),
(112959, 'https://ror.org/03hmvjq54', 'en', 1, 'https://ror.org/03hmvjq54 U.S. Army Joint Munitions Command'),
(112960, 'https://ror.org/03hn13397', 'id', 1, 'https://ror.org/03hn13397 Universitas Ahmad Dahlan'),
(112961, 'https://ror.org/03hpf3e81', 'en', 1, 'https://ror.org/03hpf3e81 The Japan Association of Marine Safety å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęµ·é›£é˜²ę­¢å”ä¼š'),
(112962, 'https://ror.org/03hq9jn34', 'en', 1, 'https://ror.org/03hq9jn34 Institut für Mechanische Systeme Institute of Mechanical Systems'),
(112963, 'https://ror.org/03hqfkf51', 'en', 1, 'https://ror.org/03hqfkf51 Space Delta 6'),
(112964, 'https://ror.org/03hrns542', 'no_lang_code', 1, 'https://ror.org/03hrns542 Robert Bosch (Australia)'),
(112965, 'https://ror.org/03hwdys44', 'pt', 1, 'https://ror.org/03hwdys44 Laboratório de Investigação e Reabilitação Respiratória'),
(112966, 'https://ror.org/03hxzy361', 'en', 1, 'https://ror.org/03hxzy361 Institute of Physics'),
(112967, 'https://ror.org/03hz5th67', 'en', 1, 'https://ror.org/03hz5th67 Shenzhen University of Advanced Technology'),
(112968, 'https://ror.org/03j186m48', 'en', 1, 'https://ror.org/03j186m48 Urakami Food and Food Culture Promotion Foundation å…¬ē›Šč²”å›£ę³•äŗŗęµ¦äøŠé£Ÿå“é£Ÿę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(112969, 'https://ror.org/03j1avm36', 'en', 1, 'https://ror.org/03j1avm36 Women and Infants Research Foundation'),
(112970, 'https://ror.org/03j28nn17', 'en', 1, 'https://ror.org/03j28nn17 Delta State Polytechnic Ogwashi-Uku'),
(112971, 'https://ror.org/03j307b25', 'fr', 1, 'https://ror.org/03j307b25 Lyon Observatory Observatoire de Lyon'),
(112972, 'https://ror.org/03j5gm982', 'en', 1, 'https://ror.org/03j5gm982 Institut für Molekulare Systembiologie Institute for Molecular Systems Biology'),
(112973, 'https://ror.org/03j6cgd89', 'pt', 1, 'https://ror.org/03j6cgd89 Biblioteca de Arte Gulbenkian'),
(112974, 'https://ror.org/03jb7qa21', 'no_lang_code', 1, 'https://ror.org/03jb7qa21 Hebei Seismological Bureau ę²³åŒ—ēœåœ°éœ‡å±€'),
(112975, 'https://ror.org/03jdm4e29', 'en', 1, 'https://ror.org/03jdm4e29 United States 6th Fleet, United States Naval Forces Europe-Africa'),
(112976, 'https://ror.org/03jhtdw16', 'no_lang_code', 1, 'https://ror.org/03jhtdw16 Yabulu, YƤbulu, YƤbulu (Portugal)'),
(112977, 'https://ror.org/03jjbp459', 'no_lang_code', 1, 'https://ror.org/03jjbp459 Turkish Aerospace Industries (Turkey) Türk Havacılık ve Uzay Sanayii'),
(112978, 'https://ror.org/03jjjme57', 'en', 1, 'https://ror.org/03jjjme57 Japan Association of Obstetricians and Gynecologists å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£å©¦äŗŗē§‘åŒ»ä¼š'),
(112979, 'https://ror.org/03jjt8440', 'en', 1, 'https://ror.org/03jjt8440 Government of Shandong Province å±±äøœēœäŗŗę°‘ę”æåŗœ'),
(112980, 'https://ror.org/03jk31721', 'en', 1, 'https://ror.org/03jk31721 EyeSmart Technology Ltd., EyeSmart Technology Ltd. (China) åŒ—äŗ¬é‡Šē å¤§åŽē§‘ęŠ€ęœ‰é™å…¬åø'),
(112981, 'https://ror.org/03jmt9g16', 'en', 1, 'https://ror.org/03jmt9g16 Akita Kousei Medical Center JAē§‹ē”°åŽšē”Ÿé€£ē§‹ē”°åŽšē”ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(112982, 'https://ror.org/03jn2p430', 'en', 1, 'https://ror.org/03jn2p430 Ministry of Science and Technology وزارت سائنس و Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(112983, 'https://ror.org/03jnpet14', 'de', 1, 'https://ror.org/03jnpet14 Institut Berufsbildung Institut of Vocational Education and Training'),
(112984, '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'),
(112985, 'https://ror.org/03jrh3t05', 'en', 1, 'https://ror.org/03jrh3t05 Royal Devon and Exeter Hospital'),
(112986, 'https://ror.org/03jsv8b41', 'en', 1, 'https://ror.org/03jsv8b41 Yamagata Prefecture Fisheries Experiment Station å±±å½¢ēœŒę°“ē”£ē ”ē©¶ę‰€'),
(112987, 'https://ror.org/03jty3219', 'en', 1, 'https://ror.org/03jty3219 Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органической Šø физической химии им. А. Š•. ŠŃ€Š±ŃƒŠ·Š¾Š²Š° Казанского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(112988, 'https://ror.org/03jwfk445', 'en', 1, 'https://ror.org/03jwfk445 IUCN Commission on Environmental, Economic and Social Policy'),
(112989, 'https://ror.org/03jx1y547', 'en', 1, 'https://ror.org/03jx1y547 Japan Map Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åœ°å›³ć‚»ćƒ³ć‚æćƒ¼'),
(112990, 'https://ror.org/03jxqgs95', 'pt', 1, 'https://ror.org/03jxqgs95 Sociedade Portuguesa da CiĆŖncia do Solo'),
(112991, 'https://ror.org/03k07te79', 'pt', 1, 'https://ror.org/03k07te79 Santa Casa da Misericórdia de Anadia'),
(112992, 'https://ror.org/03k1bsr36', 'fr', 0, 'https://ror.org/03k1bsr36 University of Burgundy UniversitƩ de Bourgogne'),
(112993, 'https://ror.org/03k1gpj17', 'en', 1, 'https://ror.org/03k1gpj17 Colorado State University Universidad Estatal de Colorado UniversitĆ© d''Ɖtat du colorado'),
(112994, 'https://ror.org/03k1ptr98', 'en', 1, 'https://ror.org/03k1ptr98 International Platform on Mental Health'),
(112995, 'https://ror.org/03k2z9h56', 'fr', 1, 'https://ror.org/03k2z9h56 Presses Universitaires de Franche-ComtƩ'),
(112996, 'https://ror.org/03k4wdb90', 'en', 1, 'https://ror.org/03k4wdb90 Barcelonaβeta Brain Research Center'),
(112997, 'https://ror.org/03k7bde87', 'tr', 1, 'https://ror.org/03k7bde87 Sağlık Bilimleri Üniversitesi University of Health Sciences'),
(112998, 'https://ror.org/03k9fzs17', 'en', 1, 'https://ror.org/03k9fzs17 Centrum výzkumu Řež Research Centre Rez'),
(112999, 'https://ror.org/03kadp558', 'en', 1, 'https://ror.org/03kadp558 The Aurum Project'),
(113000, 'https://ror.org/03kb66j27', 'en', 1, 'https://ror.org/03kb66j27 Shakhrisabz State Pedagogical Institute'),
(113001, 'https://ror.org/03kbarg82', 'fr', 1, 'https://ror.org/03kbarg82 Laboratoire interdisciplinaire de recherche en didactique, Ʃducation et formation'),
(113002, 'https://ror.org/03kc13263', 'fr', 1, 'https://ror.org/03kc13263 Centre de GƩosciences, Mines Paris, UniversitƩ PSL, Centre de GƩosciences Geosciences and Geoengineering Research Department, Mines Paris, PSL University, Centre for geosciences and geoengineering'),
(113003, 'https://ror.org/03kcgdd35', 'es', 1, 'https://ror.org/03kcgdd35 Centre d''études mexicaines et centramericaines Centro Francès de Estudios Mexicanos y Centroamericanos'),
(113004, 'https://ror.org/03kg5a226', 'en', 1, 'https://ror.org/03kg5a226 The Japan Institute of Light Metals äø€čˆ¬ē¤¾å›£ę³•äŗŗč»½é‡‘å±žå­¦ä¼š'),
(113005, 'https://ror.org/03kg99y69', 'es', 1, 'https://ror.org/03kg99y69 Officina Nacional de Normalizacion'),
(113006, 'https://ror.org/03khan160', 'en', 1, 'https://ror.org/03khan160 Kannur Dental College'),
(113007, 'https://ror.org/03kj11b67', 'en', 1, 'https://ror.org/03kj11b67 Ala-Too International University OlatogŹ» xalqaro universiteti ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет Ала-Тоо'),
(113008, 'https://ror.org/03kk7td41', 'en', 1, 'https://ror.org/03kk7td41 Cardiff University Prifysgol Caerdydd'),
(113009, 'https://ror.org/03kkevc75', 'en', 1, 'https://ror.org/03kkevc75 Indian Agricultural Statistics Research Institute ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤øą¤¾ą¤‚ą¤–ą„ą¤Æą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(113010, 'https://ror.org/03kmffx98', 'en', 1, 'https://ror.org/03kmffx98 Evonik (Singapore), Evonik Pte Ltd'),
(113011, 'https://ror.org/03kmzms45', 'en', 1, 'https://ror.org/03kmzms45 Deep Eye Care Foundation'),
(113012, 'https://ror.org/03kn0h537', 'pt', 1, 'https://ror.org/03kn0h537 Sociedade Ibero-Americana para o Desenvolvimento das Biorrefinarias'),
(113013, 'https://ror.org/03kp1tb17', 'no_lang_code', 1, 'https://ror.org/03kp1tb17 Lubrizol Life Science Health (United States)'),
(113014, 'https://ror.org/03kpdys72', 'de', 0, 'https://ror.org/03kpdys72 Stadtspital Triemli, Triemli Hospital'),
(113015, 'https://ror.org/03kpeyf37', 'en', 1, 'https://ror.org/03kpeyf37 Trinity University, Trinity University, Yaba, Lagos'),
(113016, 'https://ror.org/03kpr8w05', 'pt', 1, 'https://ror.org/03kpr8w05 Sociedade Portuguesa de Ciências da Nutrição e Alimentação'),
(113017, 'https://ror.org/03kqpb082', 'en', 1, 'https://ror.org/03kqpb082 Czech Technical University in Prague ČeskĆ© vysokĆ© učenĆ­ technickĆ© v Praze'),
(113018, 'https://ror.org/03ksm1d77', 'pt', 1, 'https://ror.org/03ksm1d77 Fundação Átrio da Música'),
(113019, 'https://ror.org/03kt66j61', 'en', 1, 'https://ror.org/03kt66j61 Science and Technology Commission of Shanghai Municipality'),
(113020, 'https://ror.org/03ktesd60', 'en', 1, 'https://ror.org/03ktesd60 Bayazid Rokhan Institute of Higher Education'),
(113021, 'https://ror.org/03kv1ct34', 'es', 1, 'https://ror.org/03kv1ct34 Centro de EnseƱanza para Extranjeros'),
(113022, 'https://ror.org/03kve7z42', 'en', 1, 'https://ror.org/03kve7z42 Bangladesh Institute of Law and International Affairs বাংলাদেশ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ল'' ą¦ą¦Øą§ą¦” ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦…ą§ą¦Æą¦¾ą¦«ą§‡ą§Ÿą¦¾ą¦°ą§ą¦ø'),
(113023, 'https://ror.org/03kwrfk72', 'en', 1, 'https://ror.org/03kwrfk72 Women''s and Children''s Hospital'),
(113024, 'https://ror.org/03kx93m19', 'pt', 1, 'https://ror.org/03kx93m19 Sociedade Portuguesa de Filosofia'),
(113025, 'https://ror.org/03kxq0d97', 'it', 1, 'https://ror.org/03kxq0d97 Associazione Internazionale di Archeologia Classica'),
(113026, 'https://ror.org/03kz56x72', 'en', 1, 'https://ror.org/03kz56x72 Space Development Agency'),
(113027, 'https://ror.org/03m2x1q45', 'en', 1, 'https://ror.org/03m2x1q45 Universidad de Arizona University of Arizona'),
(113028, 'https://ror.org/03m31qx80', 'pt', 1, 'https://ror.org/03m31qx80 Academia Livre de PMC-Conservatório Interativo'),
(113029, 'https://ror.org/03m4qdj85', 'fr', 1, 'https://ror.org/03m4qdj85 Laboratoire d''Informatique en Calcul Intensif et Image pour la Simulation'),
(113030, 'https://ror.org/03m5frb12', 'en', 1, 'https://ror.org/03m5frb12 Institute for Political Studies, Belgrade Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за политичке ŃŃ‚ŃƒŠ“ŠøŃ˜Šµ, БеограГ'),
(113031, 'https://ror.org/03m694081', 'en', 1, 'https://ror.org/03m694081 Institute for HyperNetwork Society å…¬ē›Šč²”å›£ę³•äŗŗćƒć‚¤ćƒ‘ćƒ¼ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æē¤¾ä¼šē ”ē©¶ę‰€'),
(113032, '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'),
(113033, 'https://ror.org/03m9a6y90', 'en', 1, 'https://ror.org/03m9a6y90 CAEP Software Center for High Performance Numerical Simulation äø­ę— é™¢é«˜ę€§čƒ½ę•°å€¼ęØ”ę‹Ÿč½Æä»¶äø­åæƒ'),
(113034, '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'),
(113035, 'https://ror.org/03mbfdc31', 'fr', 1, 'https://ror.org/03mbfdc31 Laboratoire de recherche en sciences de gestion PanthƩon-Assas'),
(113036, 'https://ror.org/03mcd3h93', 'no_lang_code', 1, 'https://ror.org/03mcd3h93 CSL Behring (Portugal)'),
(113037, 'https://ror.org/03me2s213', 'en', 1, 'https://ror.org/03me2s213 Azenta, Azenta (United States)'),
(113038, 'https://ror.org/03mef8k70', 'no_lang_code', 1, 'https://ror.org/03mef8k70 Startup Braga, Startup Braga (Portugal)'),
(113039, 'https://ror.org/03mg1c955', 'en', 1, 'https://ror.org/03mg1c955 United States Transportation Command'),
(113040, 'https://ror.org/03mgvjg96', 'no_lang_code', 1, 'https://ror.org/03mgvjg96 MOG Technologies, MOG Technologies (Portugal)'),
(113041, 'https://ror.org/03mhbwz88', 'pt', 1, 'https://ror.org/03mhbwz88 Centro PortuguĆŖs de Fotografia'),
(113042, 'https://ror.org/03mj9k259', 'sv', 1, 'https://ror.org/03mj9k259 K2 The Swedish Knowledge Centre for Public Transport'),
(113043, 'https://ror.org/03mkrhh61', 'en', 1, 'https://ror.org/03mkrhh61 Institut für Baustoffe Institute for Building Materials'),
(113044, 'https://ror.org/03mmcvm23', 'id', 1, 'https://ror.org/03mmcvm23 Institut Agama Islam Negeri Ponorogo'),
(113045, 'https://ror.org/03mnb0t97', 'en', 1, 'https://ror.org/03mnb0t97 SHIN Nihon Kentei Kyokai äø€čˆ¬č²”å›£ę³•äŗŗę–°ę—„ęœ¬ę¤œå®šå”ä¼š'),
(113046, 'https://ror.org/03mnd0t64', 'es', 1, 'https://ror.org/03mnd0t64 Universitario de Formación'),
(113047, 'https://ror.org/03mp4b404', 'en', 1, 'https://ror.org/03mp4b404 Japan Federation Of HEALTH&SPORTS å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·ć‚¹ćƒćƒ¼ćƒ„é€£ē›Ÿ'),
(113048, 'https://ror.org/03mpjj471', 'pt', 1, 'https://ror.org/03mpjj471 Centro para a Valorização de Resíduos'),
(113049, 'https://ror.org/03mrzxj79', 'en', 1, 'https://ror.org/03mrzxj79 Grameen Caledonian College of Nursing'),
(113050, 'https://ror.org/03ms6mt76', 'pt', 1, 'https://ror.org/03ms6mt76 Centro de Conservação das Borboletas de Portugal'),
(113051, 'https://ror.org/03msb7010', 'en', 1, 'https://ror.org/03msb7010 Washington Center'),
(113052, 'https://ror.org/03mt1jy53', 'en', 1, 'https://ror.org/03mt1jy53 Embry-Riddle Aeronautical University Prescott Arizona Campus'),
(113053, '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'),
(113054, 'https://ror.org/03myd1n81', 'en', 1, 'https://ror.org/03myd1n81 Dar Al Uloom University Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± Ų§Ł„Ų¹Ł„ŁˆŁ…'),
(113055, 'https://ror.org/03myx7b47', 'en', 1, 'https://ror.org/03myx7b47 ProChild CoLAB'),
(113056, 'https://ror.org/03n0zb450', 'fr', 1, 'https://ror.org/03n0zb450 Institut National de Recherches en SantĆ© Publique National Institute of Public Health Research المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„ŲØŲ­ŁˆŲ« الصحة العامة'),
(113057, 'https://ror.org/03n15ch10', 'fr', 1, 'https://ror.org/03n15ch10 CEA Paris-Saclay'),
(113058, 'https://ror.org/03n56e796', 'en', 1, 'https://ror.org/03n56e796 Islamic Azad University, Shahrebabak دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓهربابک'),
(113059, 'https://ror.org/03n73wg95', 'en', 1, 'https://ror.org/03n73wg95 Nanofiber Quantum Technologies, Inc., Nanofiber Quantum Technologies, Inc. (Japan)'),
(113060, 'https://ror.org/03n8g4k47', 'en', 1, 'https://ror.org/03n8g4k47 é–¢č„æå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(113061, '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)'),
(113062, 'https://ror.org/03n9zbw76', 'no_lang_code', 1, 'https://ror.org/03n9zbw76 Abbott (Portugal)'),
(113063, 'https://ror.org/03ncgk335', 'pt', 1, 'https://ror.org/03ncgk335 CĆ¢mara Municipal de Santa Maria da Feira'),
(113064, 'https://ror.org/03ncsts70', 'en', 1, 'https://ror.org/03ncsts70 Lakulish Yoga University'),
(113065, 'https://ror.org/03nf36p02', 'en', 1, 'https://ror.org/03nf36p02 Universidade da Beira Interior University of Beira Interior'),
(113066, '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'),
(113067, 'https://ror.org/03nhgb791', 'pt', 1, 'https://ror.org/03nhgb791 Centro Protocolar de Formação Profissional para Jornalistas'),
(113068, 'https://ror.org/03njxtn49', 'en', 1, 'https://ror.org/03njxtn49 Japan Association of Charitable Organizations å…¬ē›Šč²”å›£ę³•äŗŗå…¬ē›Šę³•äŗŗå”ä¼š'),
(113069, 'https://ror.org/03nmm4c68', 'en', 0, 'https://ror.org/03nmm4c68 Fire Safety Research Institute'),
(113070, 'https://ror.org/03npdj196', 'fr', 1, 'https://ror.org/03npdj196 Institut de recherche en propriƩtƩ intellectuelle'),
(113071, 'https://ror.org/03nqap837', 'en', 1, 'https://ror.org/03nqap837 Japan Polar Research Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę„µåœ°ē ”ē©¶ęŒÆčˆˆä¼š'),
(113072, 'https://ror.org/03nr2fs68', 'en', 1, 'https://ror.org/03nr2fs68 NOVA School of Business and Economics'),
(113073, 'https://ror.org/03nr6mx92', 'en', 1, 'https://ror.org/03nr6mx92 Chiba Keizai College åƒč‘‰ēµŒęøˆå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(113074, 'https://ror.org/03nsze348', 'pt', 1, 'https://ror.org/03nsze348 Medical Art Center Clƭnica MƩdica Lda Medical Art Center Medical Clinic'),
(113075, 'https://ror.org/03nv0e143', 'en', 1, 'https://ror.org/03nv0e143 Sharjah Maritime Academy'),
(113076, 'https://ror.org/03nv2sd82', 'en', 1, 'https://ror.org/03nv2sd82 Wakayama Prefectural Fisheries Experiment Station å’Œę­Œå±±ēœŒę°“ē”£č©¦éØ“å “'),
(113077, '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'),
(113078, 'https://ror.org/03nwvqf55', 'en', 1, 'https://ror.org/03nwvqf55 SƔrospatak Reformed Theological University SƔrospataki ReformƔtus HittudomƔnyi Egyetem'),
(113079, 'https://ror.org/03nx05k88', 'fr', 1, 'https://ror.org/03nx05k88 Geography and Planning Laboratory Laboratoire de gƩographie et d''amƩnagement'),
(113080, 'https://ror.org/03ny67e60', 'en', 1, 'https://ror.org/03ny67e60 Institute of Engineering ą¤ˆą¤Øą„ą¤œą¤æą¤Øą¤æą¤Æą¤°ą¤æą¤™ ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(113081, 'https://ror.org/03nyq1252', 'en', 1, 'https://ror.org/03nyq1252 Nihon Wellness Sports University ę—„ęœ¬ć‚¦ć‚§ćƒ«ćƒć‚¹ć‚¹ćƒćƒ¼ćƒ„å¤§å­¦'),
(113082, 'https://ror.org/03nz8qe97', 'en', 1, 'https://ror.org/03nz8qe97 Ariel University'),
(113083, 'https://ror.org/03p0f6497', 'en', 1, 'https://ror.org/03p0f6497 Blood Products Research Organization å…¬ē›Šč²”å›£ę³•äŗŗč”€ę¶²č£½å‰¤čŖæęŸ»ę©Ÿę§‹'),
(113084, 'https://ror.org/03p0rew30', 'en', 1, 'https://ror.org/03p0rew30 St. Xavier''s College (Autonomous), Kolkata'),
(113085, 'https://ror.org/03p1tqc11', 'en', 1, 'https://ror.org/03p1tqc11 Naval Submarine Medical Research Laboratory'),
(113086, 'https://ror.org/03p41qy95', 'en', 1, 'https://ror.org/03p41qy95 Graduate School of China Academy of Engineering Physics äø­ē‰©é™¢ē ”ē©¶ē”Ÿé™¢'),
(113087, 'https://ror.org/03p47p764', 'ca', 1, 'https://ror.org/03p47p764 Grups de Recerca d''AmĆØrica i ƀfrica Llatines - GRAAL'),
(113088, 'https://ror.org/03p5eky76', 'en', 1, 'https://ror.org/03p5eky76 China Agriculture Research System ēŽ°ä»£å†œäøšäŗ§äøšęŠ€ęœÆä½“ē³»'),
(113089, 'https://ror.org/03p74gp79', 'en', 1, 'https://ror.org/03p74gp79 Universiteit van Kaapstad University of Cape Town iYunivesithi yaseKapa'),
(113090, 'https://ror.org/03p8snc64', 'pt', 1, 'https://ror.org/03p8snc64 Centro Operativo e Tecnológico Hortofrutícola Nacional'),
(113091, 'https://ror.org/03pa1rf77', 'en', 1, 'https://ror.org/03pa1rf77 Institute of Metal Research'),
(113092, 'https://ror.org/03pa4y709', 'en', 1, 'https://ror.org/03pa4y709 Modbury Hospital'),
(113093, 'https://ror.org/03pbgwk21', 'fr', 1, 'https://ror.org/03pbgwk21 UniversitƩ Bordeaux Montaigne'),
(113094, 'https://ror.org/03pbpa834', 'en', 1, 'https://ror.org/03pbpa834 ERN GENTURIS'),
(113095, 'https://ror.org/03pbssv88', 'en', 1, 'https://ror.org/03pbssv88 Japan Wrestling Federation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ¬ć‚¹ćƒŖćƒ³ć‚°å”ä¼š'),
(113096, 'https://ror.org/03pcc9z86', 'fr', 0, 'https://ror.org/03pcc9z86 University of Franche-ComtƩ UniversitƩ de franche-comtƩ'),
(113097, 'https://ror.org/03pdwzs13', 'pt', 1, 'https://ror.org/03pdwzs13 SerQ Centro de Inovação e Competências da Floresta'),
(113098, 'https://ror.org/03pges087', 'de', 1, 'https://ror.org/03pges087 WPZ Research GmbH, WPZ Research GmbH (Austria)'),
(113099, 'https://ror.org/03pgfk695', 'en', 1, 'https://ror.org/03pgfk695 JAę–°ę½ŸåŽšē”Ÿé€£é•·å²”äø­å¤®ē¶œåˆē—…é™¢ Nagaoka Chuo General hospital'),
(113100, 'https://ror.org/03ph67546', 'en', 1, 'https://ror.org/03ph67546 Japan Electrical Safety & Environment Technology Laboratories äø€čˆ¬č²”å›£ę³•äŗŗé›»ę°—å®‰å…Øē’°å¢ƒē ”ē©¶ę‰€'),
(113101, 'https://ror.org/03pnv4752', 'en', 1, 'https://ror.org/03pnv4752 Queensland University of Technology'),
(113102, 'https://ror.org/03pnxry67', 'en', 1, 'https://ror.org/03pnxry67 Kawasaki Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗå·å“Žåø‚ēœ‹č­·å”ä¼š'),
(113103, 'https://ror.org/03pnyy777', 'en', 1, 'https://ror.org/03pnyy777 Croatian Natural History Museum'),
(113104, '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'),
(113105, 'https://ror.org/03pscpn55', 'en', 0, 'https://ror.org/03pscpn55 Kazakh Academy of Transport and Communications named after M.Tynyshpaev ŠšŠ°Š·Š°Ń…ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ транспорта Šø ŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹ имени М. Š¢Ń‹Š½Ń‹ŃˆŠæŠ°ŠµŠ²Š° ŅšŠ°Š·Š°Ņ› көлік және ŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŃ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(113106, 'https://ror.org/03pvr2g57', 'de', 1, 'https://ror.org/03pvr2g57 Universitätsklinikum Würzburg'),
(113107, 'https://ror.org/03pwc4s90', 'pt', 1, 'https://ror.org/03pwc4s90 Sociedade Portuguesa de Robótica'),
(113108, 'https://ror.org/03pxref83', 'it', 1, 'https://ror.org/03pxref83 Agenzia Regionale per la Prevenzione e Protezione Ambientale del Veneto'),
(113109, 'https://ror.org/03pymd732', 'no_lang_code', 1, 'https://ror.org/03pymd732 Linklaters LLP Lisbon, Linklaters LLP Lisbon (Portugal)'),
(113110, 'https://ror.org/03pypm027', 'en', 1, 'https://ror.org/03pypm027 Kishoreganj University ą¦•ą¦æą¦¶ą§‹ą¦°ą¦—ą¦žą§ą¦œ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(113111, 'https://ror.org/03pzc2n68', 'en', 1, 'https://ror.org/03pzc2n68 Institut für Dynamische Systeme und Regelungstechnik Institute for Dynamic Systems and Control'),
(113112, 'https://ror.org/03q0vrn42', 'en', 1, 'https://ror.org/03q0vrn42 Al-Farabi Kazakh National University ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени аль-Фараби Әл-Фараби атынГағы ŅšŠ°Š·Š°Ņ› ұлттық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(113113, 'https://ror.org/03q0y5n22', 'pt', 1, 'https://ror.org/03q0y5n22 Sociedade Portuguesa de Anestesiologia'),
(113114, 'https://ror.org/03q1qx424', 'fr', 1, 'https://ror.org/03q1qx424 Diversity, Genomes and Insects-Microorganisms Interactions DiversitƩ, gƩnomes et interactions micro-organismes-insectes'),
(113115, 'https://ror.org/03q1qyr62', 'en', 1, 'https://ror.org/03q1qyr62 In Vivo Arthropod Security Facility'),
(113116, 'https://ror.org/03q2knb18', 'pt', 1, 'https://ror.org/03q2knb18 Instituto Superior Tecnico Campus Tecnológico e Nuclear'),
(113117, 'https://ror.org/03q3pjc65', 'en', 1, 'https://ror.org/03q3pjc65 College of Engineering and Management, Kolaghat'),
(113118, 'https://ror.org/03q4c3e69', 'en', 1, 'https://ror.org/03q4c3e69 Andalusian Health Service Servicio Andaluz de Salud'),
(113119, 'https://ror.org/03q68gw20', 'no_lang_code', 1, 'https://ror.org/03q68gw20 Pioneer Europe NV, Pioneer Europe NV (Portugal)'),
(113120, 'https://ror.org/03q8wy381', 'no_lang_code', 1, 'https://ror.org/03q8wy381 Shine 2Europe, Shine 2Europe (Portugal)'),
(113121, 'https://ror.org/03q9f6286', 'en', 1, 'https://ror.org/03q9f6286 KPMG (Singapore), KPMG Services Pte. Ltd.'),
(113122, 'https://ror.org/03qb6k992', 'en', 1, 'https://ror.org/03qb6k992 Quantum Science Center of Guangdong-Hong Kong-Macao Greater Bay Area ē²¤ęøÆę¾³é‡å­ē§‘å­¦äø­åæƒ'),
(113123, 'https://ror.org/03qbtqz88', 'fr', 1, 'https://ror.org/03qbtqz88 CIUSSS du Centre-Ouest-de-l''Ǝle-de-MontrĆ©al'),
(113124, 'https://ror.org/03qc03t81', 'en', 1, 'https://ror.org/03qc03t81 Exército Português Portuguese Army'),
(113125, 'https://ror.org/03qc4m595', 'es', 1, 'https://ror.org/03qc4m595 Unidad de Investigación sobre Representaciones Culturales y Sociales'),
(113126, 'https://ror.org/03qegbj54', 'no_lang_code', 1, 'https://ror.org/03qegbj54 Ar Telecom, Ar Telecom (Portugal)'),
(113127, 'https://ror.org/03qge6j93', 'fr', 1, 'https://ror.org/03qge6j93'),
(113128, 'https://ror.org/03qgy8k22', 'en', 1, 'https://ror.org/03qgy8k22 San Isidro College'),
(113129, 'https://ror.org/03qk8fz33', 'en', 1, 'https://ror.org/03qk8fz33 Kauno Kolegija Kauno kolegija Higher Education Institution'),
(113130, 'https://ror.org/03qma7a12', 'fr', 1, 'https://ror.org/03qma7a12 Observatoire Aquitain des Sciences de l''Univers'),
(113131, 'https://ror.org/03qn8fb07', 'en', 1, 'https://ror.org/03qn8fb07 Commonwealth Scientific and Industrial Research Organisation'),
(113132, 'https://ror.org/03qrb1j36', 'en', 1, 'https://ror.org/03qrb1j36 NSF NCAR Climate and Global Dynamics Laboratory'),
(113133, 'https://ror.org/03qsven24', 'no_lang_code', 1, 'https://ror.org/03qsven24 Almirall (Spain)'),
(113134, 'https://ror.org/03qtkxb61', 'de', 1, 'https://ror.org/03qtkxb61 Collegium Helveticum'),
(113135, 'https://ror.org/03qtzce31', 'fr', 1, 'https://ror.org/03qtzce31 MinistĆØre de l''Ɖconomie, de l''Innovation et de l''Ɖnergie'),
(113136, 'https://ror.org/03qvxc742', 'en', 1, 'https://ror.org/03qvxc742 Jhargram Raj College'),
(113137, 'https://ror.org/03qx2bq13', 'en', 1, 'https://ror.org/03qx2bq13 Genius University for Sciences & Technology Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ†ŁŠŲ³ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(113138, 'https://ror.org/03r0dz519', 'pt', 1, 'https://ror.org/03r0dz519 Centro de Investigação em Psicologia para o Desenvolvimento'),
(113139, 'https://ror.org/03r3mh697', 'pt', 1, 'https://ror.org/03r3mh697 Núcleo de Investigação Científica de Incêndios Florestais'),
(113140, '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'),
(113141, 'https://ror.org/03r592s72', 'pt', 1, 'https://ror.org/03r592s72 Faculdade de MĆŗsica do EspĆ­rito Santo "MaurĆ­cio de Oliveira" - FAMES'),
(113142, 'https://ror.org/03r5d5c48', 'fr', 1, 'https://ror.org/03r5d5c48 UnitƩ d''Appui et de Recherche PythƩas'),
(113143, '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'),
(113144, 'https://ror.org/03r7q1314', 'fr', 1, 'https://ror.org/03r7q1314 Laboratoire de sociologie juridique'),
(113145, 'https://ror.org/03rcp1y74', 'en', 1, 'https://ror.org/03rcp1y74 Islamic University of Madinah الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(113146, 'https://ror.org/03rcw8h21', 'en', 1, 'https://ror.org/03rcw8h21 National Institute of Oceanography, Pakistan'),
(113147, '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'),
(113148, 'https://ror.org/03rewfs15', 'es', 1, 'https://ror.org/03rewfs15 Universidad de la Isla de la Juventud "Jesús Montané Oropesa"'),
(113149, 'https://ror.org/03rnk6m14', 'fr', 1, 'https://ror.org/03rnk6m14 Centre international d''Ʃtudes supƩrieures en sciences agronomiques, Institut Agro Montpellier'),
(113150, 'https://ror.org/03rp50x72', 'en', 1, 'https://ror.org/03rp50x72 University of the Witwatersrand'),
(113151, 'https://ror.org/03rprq887', 'tr', 1, 'https://ror.org/03rprq887 Foundation for Mehir and Youth Marriage GenƧleri Evlendirme ve Mehir Vakfı'),
(113152, 'https://ror.org/03rth4p18', 'fr', 1, 'https://ror.org/03rth4p18 Lumière University Lyon 2 Université Lumière Lyon 2'),
(113153, 'https://ror.org/03rtykw43', 'en', 1, 'https://ror.org/03rtykw43 ARC Centre of Excellence for Engineered Quantum Systems'),
(113154, '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'),
(113155, 'https://ror.org/03rwcxx67', 'es', 1, 'https://ror.org/03rwcxx67 Centro Cultural Universitario Tlatelolco'),
(113156, 'https://ror.org/03rx5xe39', 'es', 1, 'https://ror.org/03rx5xe39 Servicios Especiales de Salud Hospital Universitario de Caldas'),
(113157, 'https://ror.org/03ryywt80', 'en', 1, 'https://ror.org/03ryywt80 Gachon University ź°€ģ²œėŒ€ķ•™źµ'),
(113158, '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'),
(113159, 'https://ror.org/03s0ryk19', 'en', 1, 'https://ror.org/03s0ryk19 The Klamath Tribes'),
(113160, 'https://ror.org/03s1n8594', 'no_lang_code', 1, 'https://ror.org/03s1n8594 Docapesca Portos e Lotas (Portugal), Docapesca Portos e Lotas, S.A.'),
(113161, 'https://ror.org/03s53g630', 'en', 1, 'https://ror.org/03s53g630 National High Magnetic Field Laboratory'),
(113162, 'https://ror.org/03s53tn92', 'pl', 1, 'https://ror.org/03s53tn92 Akademia Pożarnicza Fire University'),
(113163, 'https://ror.org/03s5kvf41', 'en', 1, 'https://ror.org/03s5kvf41 Heyou Hospital å’Œē„åŒ»é™¢'),
(113164, 'https://ror.org/03s72rc96', 'en', 1, 'https://ror.org/03s72rc96 Open University of Kenya'),
(113165, 'https://ror.org/03s7gtk40', 'en', 1, 'https://ror.org/03s7gtk40 Leipzig University UniversitƤt Leipzig'),
(113166, 'https://ror.org/03s92mv58', 'fr', 1, 'https://ror.org/03s92mv58 Geosciences Paris-Saclay'),
(113167, 'https://ror.org/03s9qe417', 'en', 1, 'https://ror.org/03s9qe417 Advancing Sight Network'),
(113168, 'https://ror.org/03saa3s66', 'pt', 1, 'https://ror.org/03saa3s66 CUF Infante Santo Hospital'),
(113169, 'https://ror.org/03sbb5035', 'pt', 1, 'https://ror.org/03sbb5035 MORE – Laboratório Colaborativo Montanhas de Investigação – Associação'),
(113170, 'https://ror.org/03sbefh90', 'en', 1, 'https://ror.org/03sbefh90 United States Air Mobility Command'),
(113171, 'https://ror.org/03sbpja79', 'en', 1, 'https://ror.org/03sbpja79 Department of Health and Social Care'),
(113172, 'https://ror.org/03sc1p174', 'fr', 1, 'https://ror.org/03sc1p174 Laboratoire Interuniversitaire de Biologie de la MotricitƩ'),
(113173, 'https://ror.org/03sgyqj04', 'fr', 1, 'https://ror.org/03sgyqj04 Ɖcole Nationale SupĆ©rieure de Chimie de Montpellier'),
(113174, 'https://ror.org/03sh0x419', 'en', 0, 'https://ror.org/03sh0x419 Rockwell International, Rockwell International (United States)'),
(113175, 'https://ror.org/03sm7xj72', 'es', 1, 'https://ror.org/03sm7xj72 Universidad Nacional Experimental del Yaracuy'),
(113176, 'https://ror.org/03smk3872', 'fr', 1, 'https://ror.org/03smk3872 Centre de Recherche en Acquisition et Traitement de l''Image pour la SantƩ'),
(113177, 'https://ror.org/03snjhe90', 'en', 1, 'https://ror.org/03snjhe90 Federal Research and Clinical Center of Physical-Chemical Medicine named after Y.M. Lopukhin Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-клинический центр физико-химической меГицины им. акаГемика Š®. М. Š›Š¾ŠæŃƒŃ…ŠøŠ½Š° Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(113178, 'https://ror.org/03spk3j53', 'en', 1, 'https://ror.org/03spk3j53 National Centre for Medical Genomics NĆ”rodnĆ­ centrum lĆ©kařskĆ© genomiky'),
(113179, 'https://ror.org/03sqmjr39', 'en', 1, 'https://ror.org/03sqmjr39 International Taraz University named after Sherkhan Murtaza'),
(113180, 'https://ror.org/03sssya70', 'no_lang_code', 1, 'https://ror.org/03sssya70 CAETSU TWO, CAETSU TWO (Portugal)'),
(113181, 'https://ror.org/03stxzb56', 'es', 1, 'https://ror.org/03stxzb56 Agencia Nacional de Promoción de la Investigación, el Desarrollo Tecnológico y la Innovación'),
(113182, 'https://ror.org/03swyrn62', 'en', 1, 'https://ror.org/03swyrn62 National Institute of Technology Agartala ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, अगरतला ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø, আগরতলা'),
(113183, 'https://ror.org/03sxgeg61', 'en', 1, 'https://ror.org/03sxgeg61 GenesisCare'),
(113184, 'https://ror.org/03syjba97', 'pt', 1, 'https://ror.org/03syjba97 Autoridade de Gestão do Programa Operacional Competitividade e Internacionalização'),
(113185, 'https://ror.org/03szq9n82', 'pt', 1, 'https://ror.org/03szq9n82 Turismo de Portugal'),
(113186, 'https://ror.org/03szqc633', 'en', 1, 'https://ror.org/03szqc633 Maharashtra Institute of Medical Science and Research'),
(113187, 'https://ror.org/03t4gr691', 'en', 1, 'https://ror.org/03t4gr691 Amsterdam UMC Location University of Amsterdam'),
(113188, 'https://ror.org/03t7n7h72', 'en', 1, 'https://ror.org/03t7n7h72 Symbiosis University of Applied Sciences'),
(113189, 'https://ror.org/03t9pn762', 'en', 1, 'https://ror.org/03t9pn762 DUG Technology, DUG Technology (Australia)'),
(113190, 'https://ror.org/03tashy42', 'pt', 1, 'https://ror.org/03tashy42 Instituto de Higiene e Medicina Tropical Biblioteca'),
(113191, 'https://ror.org/03taz7m60', 'en', 1, 'https://ror.org/03taz7m60 Universidad del Sur de California University of Southern California UniversitƩ de Californie du Sud'),
(113192, 'https://ror.org/03tc3ph72', 'en', 1, 'https://ror.org/03tc3ph72 Sempra Energy, Sempra Energy (United States)'),
(113193, 'https://ror.org/03tcbg664', 'id', 1, 'https://ror.org/03tcbg664 Poltekkes Kemenkes Gorontalo'),
(113194, 'https://ror.org/03tdcw665', 'en', 1, 'https://ror.org/03tdcw665 Irkutsk Scientific Center of Surgery and Traumatology Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø Šø травматологии'),
(113195, 'https://ror.org/03tdef037', 'fr', 0, 'https://ror.org/03tdef037 Systèmes de Référence Temps-Espace'),
(113196, 'https://ror.org/03te08f76', 'pt', 1, 'https://ror.org/03te08f76 Sociedade Portuguesa de Investigação em Educação MatemÔtica'),
(113197, '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'),
(113198, 'https://ror.org/03tgxtq39', 'en', 1, 'https://ror.org/03tgxtq39 Japan Society of Newer Metals äø€čˆ¬ē¤¾å›£ę³•äŗŗę–°é‡‘å±žå”ä¼š'),
(113199, 'https://ror.org/03ths8210', 'es', 1, 'https://ror.org/03ths8210 Carlos III University of Madrid Universidad Carlos III de Madrid'),
(113200, 'https://ror.org/03tk0wy30', 'no_lang_code', 1, 'https://ror.org/03tk0wy30 Tessa Therapeutic (Singapore)'),
(113201, 'https://ror.org/03tkw8026', 'en', 1, 'https://ror.org/03tkw8026 Shinano Educational Association å…¬ē›Šē¤¾å›£ę³•äŗŗäæ”ęæƒę•™č‚²ä¼š'),
(113202, 'https://ror.org/03tmbn325', 'en', 1, 'https://ror.org/03tmbn325 GM University Davanagere Karnataka'),
(113203, 'https://ror.org/03tmdzc72', 'pt', 1, 'https://ror.org/03tmdzc72 Jardim Botânico da Ajuda'),
(113204, 'https://ror.org/03tmk1b43', 'no_lang_code', 1, 'https://ror.org/03tmk1b43 Sinfic (Portugal), Sinfic, S.A.'),
(113205, 'https://ror.org/03tp0f269', 'en', 1, 'https://ror.org/03tp0f269 Darul Uloom Deoband ŲÆŲ§Ų± Ų§Ł„Ų¹Ł„ŁˆŁ… ŲÆŁŠŁˆŲØŁ†ŲÆ ŲÆŲ§Ų± Ų§Ł„Ų¹Ł„ŁˆŁ… ŲÆŪŒŁˆŲØŁ†ŲÆ ą¤¦ą¤¾ą¤°ą„ą¤² ą¤‰ą¤²ą„‚ą¤® ą¤¦ą„‡ą¤µą¤¬ą¤‚ą¤¦'),
(113206, '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'),
(113207, 'https://ror.org/03tq5ma70', 'pt', 1, 'https://ror.org/03tq5ma70 Biblioteca PĆŗblica e Arquivo Regional de Ponta Delgada'),
(113208, 'https://ror.org/03trvqr13', 'en', 1, 'https://ror.org/03trvqr13 Victor Chang Cardiac Research Institute'),
(113209, 'https://ror.org/03tsa2x69', 'pt', 1, 'https://ror.org/03tsa2x69 Escola de Artes do Norte Alentejano'),
(113210, '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'),
(113211, 'https://ror.org/03tz3v863', 'en', 1, 'https://ror.org/03tz3v863 British Sjƶgren''s Syndrome Association'),
(113212, 'https://ror.org/03v11jn59', 'pt', 1, 'https://ror.org/03v11jn59 Instituto Superior de Direito Canónico'),
(113213, 'https://ror.org/03v2eh785', 'en', 1, 'https://ror.org/03v2eh785 Agricultural and Rural Management Training Institute'),
(113214, 'https://ror.org/03v2nwz54', 'en', 1, 'https://ror.org/03v2nwz54 Shri BM Patil Medical College'),
(113215, 'https://ror.org/03v30pe63', 'en', 1, 'https://ror.org/03v30pe63 Canadian Aboriginal AIDS Network'),
(113216, 'https://ror.org/03v501g47', 'de', 1, 'https://ror.org/03v501g47 TÜV AI.Lab, TÜV AI.Lab (Germany)'),
(113217, 'https://ror.org/03v76x132', 'en', 1, 'https://ror.org/03v76x132 Universidad Yale Yale University'),
(113218, 'https://ror.org/03v77b728', 'en', 1, 'https://ror.org/03v77b728 Japanese Society of Soil Science and Plant Nutrition äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åœŸå£Œč‚„ę–™å­¦ä¼š'),
(113219, 'https://ror.org/03va0yq34', 'fr', 1, 'https://ror.org/03va0yq34 ERN ITHACA'),
(113220, 'https://ror.org/03va9ng43', 'no_lang_code', 1, 'https://ror.org/03va9ng43 Idorsia, Idorsia Ltd Idorsia (Switzerland)'),
(113221, 'https://ror.org/03vb6df93', 'en', 1, 'https://ror.org/03vb6df93 Nepean Hospital'),
(113222, 'https://ror.org/03vba6259', 'fr', 1, 'https://ror.org/03vba6259 Centre Spatial de l''UniversitƩ de Montpellier Space center of the University of Montpellier'),
(113223, 'https://ror.org/03vc1wb14', 'en', 1, 'https://ror.org/03vc1wb14 openRxiv'),
(113224, 'https://ror.org/03vdzkx92', 'en', 1, 'https://ror.org/03vdzkx92 City of Helsinki Helsingin Kaupunki'),
(113225, 'https://ror.org/03vek6s52', 'en', 1, 'https://ror.org/03vek6s52 Harvard University Universidad de Harvard'),
(113226, 'https://ror.org/03vgk3f90', 'es', 1, 'https://ror.org/03vgk3f90 Universidad San Ignacio de Loyola'),
(113227, 'https://ror.org/03vgmsr20', 'en', 1, 'https://ror.org/03vgmsr20 Japan Pediatric Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°å…ē§‘åŒ»ä¼š'),
(113228, 'https://ror.org/03vk15693', 'fr', 1, 'https://ror.org/03vk15693 mƩdialab Sciences Po'),
(113229, 'https://ror.org/03vm5ng67', 'en', 1, 'https://ror.org/03vm5ng67 Nishinomiya Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗč„æå®®åø‚åŒ»åø«ä¼š'),
(113230, 'https://ror.org/03vp28b81', 'pt', 1, 'https://ror.org/03vp28b81 Biblioteca Municipal Almeida Garrett'),
(113231, 'https://ror.org/03vq6aj50', 'en', 1, 'https://ror.org/03vq6aj50 Sindh Institute of Ophthalmology & Visual Sciences (SIOVS)'),
(113232, 'https://ror.org/03vqjtg68', 'en', 1, 'https://ror.org/03vqjtg68 Biju Patnaik University of Technology ବିଜୁ ą¬Ŗą¬Ÿą­ą¬Ÿą¬Øą¬¾ą­Ÿą¬• ą¬¬ą­ˆą¬·ą­Ÿą¬æą¬• ą¬¬ą¬æą¬¶ą­ą¬µą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(113233, 'https://ror.org/03vrb0p48', 'en', 1, 'https://ror.org/03vrb0p48 SciencePark Corporation, SciencePark Corporation (Japan)'),
(113234, 'https://ror.org/03vsddp82', 'pt', 1, 'https://ror.org/03vsddp82 Instituto de Investigação Inovação e Desenvolvimento'),
(113235, 'https://ror.org/03vsmv677', 'no_lang_code', 1, 'https://ror.org/03vsmv677 Texas Instruments (United States)'),
(113236, 'https://ror.org/03vy7v919', 'en', 1, 'https://ror.org/03vy7v919 U.S. Army Tank-automotive and Armaments Command'),
(113237, 'https://ror.org/03vyy8a54', 'en', 1, 'https://ror.org/03vyy8a54 Swedish College of Engineering & Technology Rahim Yar Khan'),
(113238, 'https://ror.org/03w28pb62', 'en', 1, 'https://ror.org/03w28pb62 South Eastern Sydney Local Health District'),
(113239, 'https://ror.org/03w3e5q61', 'pt', 1, 'https://ror.org/03w3e5q61 Junta de Freguesia de SĆ£o Domingos de Benfica'),
(113240, 'https://ror.org/03w4czv65', 'es', 1, 'https://ror.org/03w4czv65 Departamento de Salud Osasun Departamentua'),
(113241, 'https://ror.org/03w7awk87', 'en', 1, 'https://ror.org/03w7awk87 Steno Diabetes Centers'),
(113242, '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.'),
(113243, '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'),
(113244, 'https://ror.org/03wanmk11', 'en', 1, 'https://ror.org/03wanmk11 Messiah University'),
(113245, 'https://ror.org/03wax1305', 'pt', 1, 'https://ror.org/03wax1305 Instituto de Direito Penal Económico e Europeu'),
(113246, 'https://ror.org/03waxs135', 'es', 1, 'https://ror.org/03waxs135 Hospital General Docente HƩroes del Baire'),
(113247, 'https://ror.org/03weg0b71', 'en', 1, 'https://ror.org/03weg0b71 Google (Singapore), Google Asia Pacific Pte Ltd'),
(113248, 'https://ror.org/03wg0q111', 'pt', 1, 'https://ror.org/03wg0q111 Portugal Inovação Social'),
(113249, 'https://ror.org/03wm0hx40', 'en', 1, 'https://ror.org/03wm0hx40 Ofuna Chuo Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£äŗ’ęµä¼šå¤§čˆ¹äø­å¤®ē—…é™¢'),
(113250, 'https://ror.org/03wp25384', 'en', 1, 'https://ror.org/03wp25384 Common Language Resources and Technology Infrastructure'),
(113251, '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'),
(113252, 'https://ror.org/03wssfd89', 'en', 1, 'https://ror.org/03wssfd89 SABO & Landslide Technical Center äø€čˆ¬č²”å›£ę³•äŗŗē ‚é˜²ćƒ»åœ°ć™ć¹ć‚ŠęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(113253, 'https://ror.org/03wtazd67', 'en', 1, 'https://ror.org/03wtazd67 Danish Energy Agency Energistyrelsen'),
(113254, 'https://ror.org/03wtkyy12', 'de', 1, 'https://ror.org/03wtkyy12 Gustav Mahler PrivatuniversitƤt'),
(113255, 'https://ror.org/03wv1cb14', 'en', 1, 'https://ror.org/03wv1cb14 Kunnskapsdepartementet, lit. Ministry of Knowledge Ministry of Education and Research'),
(113256, 'https://ror.org/03wv9bq39', 'pt', 1, 'https://ror.org/03wv9bq39 Sociedade Portuguesa de Cirurgia'),
(113257, 'https://ror.org/03wxseg04', 'en', 1, 'https://ror.org/03wxseg04 Terrestrial Ecosystem Research Network'),
(113258, 'https://ror.org/03wyhgf98', 'id', 1, 'https://ror.org/03wyhgf98 Universitas Saintek Muhammadiyah'),
(113259, 'https://ror.org/03wyzt892', 'en', 1, 'https://ror.org/03wyzt892 Centre for Genomic Regulation'),
(113260, 'https://ror.org/03wzqqd66', 'pt', 1, 'https://ror.org/03wzqqd66 Quercus - Associação Nacional de Conservação da Natureza, Quercus');
INSERT INTO `rors` VALUES
(113261, 'https://ror.org/03x1v8811', 'en', 1, 'https://ror.org/03x1v8811 Kawada Hospital äø€čˆ¬č²”å›£ę³•äŗŗę²³ē”°ē—…é™¢'),
(113262, 'https://ror.org/03x27fd96', 'en', 1, 'https://ror.org/03x27fd96 Shizuoka City Institute Of Environmental Sciences And Public Health é™å²”åø‚ē’°å¢ƒäæå„ē ”ē©¶ę‰€'),
(113263, 'https://ror.org/03x28ee27', 'fr', 1, 'https://ror.org/03x28ee27 CollĆØge Communautaire du Nouveau-Brunswick'),
(113264, 'https://ror.org/03x2yvz14', 'pt', 1, 'https://ror.org/03x2yvz14 Sociedade Portuguesa de MatemƔtica'),
(113265, 'https://ror.org/03x42jk29', 'fr', 1, 'https://ror.org/03x42jk29 Gustave Eiffel University UniversitƩ Gustave Eiffel'),
(113266, 'https://ror.org/03x44hg04', 'fr', 1, 'https://ror.org/03x44hg04 Centre de recherche en amƩnagement et dƩveloppement'),
(113267, 'https://ror.org/03x5gwj59', 'en', 1, 'https://ror.org/03x5gwj59 Geo-Environmental Protection Center äø€čˆ¬ē¤¾å›£ę³•äŗŗåœŸå£Œē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(113268, 'https://ror.org/03x5wxe68', 'en', 1, 'https://ror.org/03x5wxe68 The Osaka Community Foundation å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£č²”å›£'),
(113269, 'https://ror.org/03x895t47', 'fr', 1, 'https://ror.org/03x895t47 Edition, LittƩratures, Langages, Informatique, Arts, Didactiques, Discours'),
(113270, 'https://ror.org/03x94j517', 'en', 1, 'https://ror.org/03x94j517 Medical Research Council'),
(113271, 'https://ror.org/03xe54902', 'en', 1, 'https://ror.org/03xe54902 Cognition, Action, and Sensorimotor Plasticity'),
(113272, 'https://ror.org/03xk7zy09', 'en', 1, 'https://ror.org/03xk7zy09 Society of University Surgeons'),
(113273, 'https://ror.org/03xmje391', 'en', 1, 'https://ror.org/03xmje391 Rajiv Gandhi Technical University ą¤°ą¤¾ą¤œą„€ą¤µ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Ær'),
(113274, 'https://ror.org/03xqbqb14', 'en', 1, 'https://ror.org/03xqbqb14 Japan Electronics Packaging and Circuits Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»å­å›žč·Æå·„ę„­ä¼š'),
(113275, 'https://ror.org/03xrphz63', 'en', 1, 'https://ror.org/03xrphz63 Japanese Society of Oral and Maxillofacial Surgeons å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å£č…”å¤–ē§‘å­¦ä¼š'),
(113276, 'https://ror.org/03xrrjk67', 'en', 1, 'https://ror.org/03xrrjk67 Universidad de Alabama University of Alabama UniversitƩ de l''Alabama'),
(113277, 'https://ror.org/03xsr4q95', 'en', 1, 'https://ror.org/03xsr4q95 Japan Organics Recycling Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęœ‰ę©Ÿč³‡ęŗå”ä¼š'),
(113278, 'https://ror.org/03xv17r49', 'en', 1, 'https://ror.org/03xv17r49 Sa''ada University Ų¬Ų§Ł…Ų¹Ų© ŲµŲ¹ŲÆŲ©'),
(113279, 'https://ror.org/03xvagj73', 'no_lang_code', 1, 'https://ror.org/03xvagj73 KPMG (Netherlands)'),
(113280, 'https://ror.org/03y4a4v35', 'id', 1, 'https://ror.org/03y4a4v35 Universitas PGRI Silampari'),
(113281, 'https://ror.org/03y5vba12', 'en', 1, 'https://ror.org/03y5vba12 National Land Planning Association äø€čˆ¬č²”å›£ę³•äŗŗå›½åœŸčØˆē”»å”ä¼š'),
(113282, 'https://ror.org/03y6rwc78', 'en', 1, 'https://ror.org/03y6rwc78 The MRC Foundation äø€čˆ¬č²”å›£ę³•äŗŗē§»å‹•ē„”ē·šć‚»ćƒ³ć‚æćƒ¼'),
(113283, 'https://ror.org/03y7q9t39', 'en', 1, 'https://ror.org/03y7q9t39 Te Whare Wānanga o Waitaha University of Canterbury'),
(113284, 'https://ror.org/03ydjev11', 'en', 0, 'https://ror.org/03ydjev11 IRYO Sosei University åŒ»ē™‚å‰µē”Ÿå¤§å­¦'),
(113285, 'https://ror.org/03yf5zr20', 'fr', 0, 'https://ror.org/03yf5zr20 Clermont UniversitƩ'),
(113286, 'https://ror.org/03ygpq003', 'en', 1, 'https://ror.org/03ygpq003 Cold Region Port and Harbor Engineering Research Center äø€čˆ¬ē¤¾å›£ę³•äŗŗåÆ’åœ°ęøÆę¹¾ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(113287, 'https://ror.org/03yk43w67', 'en', 1, 'https://ror.org/03yk43w67 The University Of Agriculture Dera Ismail Khan'),
(113288, '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'),
(113289, 'https://ror.org/03yp23s77', 'en', 0, 'https://ror.org/03yp23s77 Nagano Prefectural College é•·é‡ŽēœŒēŸ­ęœŸå¤§å­¦'),
(113290, 'https://ror.org/03ypsay29', 'en', 1, 'https://ror.org/03ypsay29 Amili Pte Ltd, Amili Pte Ltd (Singapore)'),
(113291, 'https://ror.org/03yr4r733', 'pt', 1, 'https://ror.org/03yr4r733 Direção-Geral da Administração e do Emprego Público'),
(113292, 'https://ror.org/03yrm5c26', 'en', 1, 'https://ror.org/03yrm5c26 California Digital Library'),
(113293, 'https://ror.org/03yt24h27', 'no_lang_code', 1, 'https://ror.org/03yt24h27 General Electric (United Kingdom)'),
(113294, 'https://ror.org/03ytt7k16', 'en', 1, 'https://ror.org/03ytt7k16 Danish Cancer Society'),
(113295, 'https://ror.org/03ytzg339', 'en', 1, 'https://ror.org/03ytzg339 Defense & Veterans Center for Integrative Pain Management'),
(113296, 'https://ror.org/03yv7qm57', 'it', 1, 'https://ror.org/03yv7qm57 Ospedale Castelfranco Veneto'),
(113297, '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.'),
(113298, 'https://ror.org/03yvmh624', 'no_lang_code', 1, 'https://ror.org/03yvmh624 Angelini Pharma (Portugal)'),
(113299, 'https://ror.org/03yx73m48', 'en', 1, 'https://ror.org/03yx73m48 Sri Dev Suman Uttarakhand University Sri Dev Suman Uttarakhand Vishwavidyalay'),
(113300, 'https://ror.org/03yxgmm62', 'en', 1, 'https://ror.org/03yxgmm62 Fremantle Hospital'),
(113301, 'https://ror.org/03yyp5644', 'en', 1, 'https://ror.org/03yyp5644 Malla Reddy Engineering College for Women'),
(113302, 'https://ror.org/03yzqyp10', 'en', 1, 'https://ror.org/03yzqyp10 Ministry of Energy ąøąø£ąø°ąø—ąø£ąø§ąø‡ąøžąø„ąø±ąø‡ąø‡ąø²ąø™'),
(113303, 'https://ror.org/03z3ft420', 'es', 1, 'https://ror.org/03z3ft420 Benemérito Instituto Normal del Estado "Gral. Juan Crisóstomo Bonilla"'),
(113304, 'https://ror.org/03z3pjf09', 'en', 1, 'https://ror.org/03z3pjf09 Akiru Municipal Medical Center å…¬ē«‹é˜æä¼Žē•™åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(113305, 'https://ror.org/03z5bhc64', 'pt', 1, 'https://ror.org/03z5bhc64 Biobanco.pt'),
(113306, 'https://ror.org/03z7sc942', 'en', 1, 'https://ror.org/03z7sc942 Rethink Learning Inc'),
(113307, 'https://ror.org/03z899093', 'pt', 1, 'https://ror.org/03z899093 Centro de Investigação em Sistemas Electromecatrónicos'),
(113308, 'https://ror.org/03z8r7474', 'en', 1, 'https://ror.org/03z8r7474 Esaka Hospital åŒ»ē™‚ę³•äŗŗę¾ęŸä¼šę¦Žå‚ē—…é™¢'),
(113309, 'https://ror.org/03zbd1c48', 'no_lang_code', 1, 'https://ror.org/03zbd1c48 Neurowave (Portugal)'),
(113310, 'https://ror.org/03zbxqj79', 'en', 0, 'https://ror.org/03zbxqj79 Occupational Safety Research Institute'),
(113311, 'https://ror.org/03zca6435', 'pt', 1, 'https://ror.org/03zca6435 Laboratório de Software ConfiÔvel'),
(113312, 'https://ror.org/03zd03166', 'no_lang_code', 1, 'https://ror.org/03zd03166 Eli Lilly (Portugal)'),
(113313, 'https://ror.org/03ze73t75', 'fr', 1, 'https://ror.org/03ze73t75 Recyclage et risque Recycling and Risk'),
(113314, 'https://ror.org/03zeev498', 'es', 1, 'https://ror.org/03zeev498 Instituto de Ciencias de la Atmósfera y Cambio ClimÔtico'),
(113315, 'https://ror.org/03zek0r74', 'fr', 1, 'https://ror.org/03zek0r74 Institut Agro Dijon'),
(113316, 'https://ror.org/03zfp3202', 'pt', 1, 'https://ror.org/03zfp3202 Centro de Estudos de Arquitectura e Urbanismo'),
(113317, 'https://ror.org/03zfv2g22', 'es', 1, 'https://ror.org/03zfv2g22 Hospital AlcĆ­var'),
(113318, 'https://ror.org/03zga2b32', 'en', 1, 'https://ror.org/03zga2b32 Bergenin Yliopisto Universitas Bergensis Universitetet i Bergen University of Bergen'),
(113319, 'https://ror.org/03zgn2611', 'tr', 1, 'https://ror.org/03zgn2611 Akademik Bilişim Araştırmaları Derneği'),
(113320, 'https://ror.org/03zh4st66', 'no_lang_code', 0, 'https://ror.org/03zh4st66 Sincolor (Czechia)'),
(113321, 'https://ror.org/03zjsjb54', 'en', 1, 'https://ror.org/03zjsjb54 Langford Research Institute'),
(113322, 'https://ror.org/03zkz3r52', 'pt', 1, 'https://ror.org/03zkz3r52 Federação Portuguesa de Espeleologia'),
(113323, 'https://ror.org/03zmf4s77', 'en', 1, 'https://ror.org/03zmf4s77 Binus University Universitas Bina Nusantara'),
(113324, 'https://ror.org/03zmy5w64', 'en', 1, 'https://ror.org/03zmy5w64 Tigray Agricultural Research Institute (TARI) įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ įˆįˆ­įˆįˆ­ įˆ•įˆ­įˆ» į‰µįŒįˆ«'),
(113325, 'https://ror.org/03znfjv42', 'en', 1, 'https://ror.org/03znfjv42 Nature Conservation and Study Centre'),
(113326, 'https://ror.org/03zqdzq14', 'en', 1, 'https://ror.org/03zqdzq14 Osumikanoya Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé¹æå…å³¶ę„›åæƒä¼šå¤§éš…é¹æå±‹ē—…é™¢'),
(113327, 'https://ror.org/03zqk4w67', 'en', 1, 'https://ror.org/03zqk4w67 Institut für Design, Materialien und Fabrikation Institute of Design, Materials and Fabrication'),
(113328, 'https://ror.org/03zqqwp43', 'en', 1, 'https://ror.org/03zqqwp43 All India Institute of Medical Sciences, Vijaypur, Jammu'),
(113329, 'https://ror.org/03zrhvt86', 'en', 1, 'https://ror.org/03zrhvt86 TwinEdge Bioscience, TwinEdge Bioscience (Switzerland), TwinEdge Bioscience SA'),
(113330, 'https://ror.org/03zrwn122', 'no_lang_code', 1, 'https://ror.org/03zrwn122 J Garraio & Ca (Portugal)'),
(113331, 'https://ror.org/03zszgs95', 'en', 1, 'https://ror.org/03zszgs95 National Medical Library NĆ”rodnĆ­ LĆ©kařskĆ” Knihovna'),
(113332, 'https://ror.org/03zt5y861', 'es', 1, 'https://ror.org/03zt5y861 Instituto de BiologĆ­a de Organismos Marinos'),
(113333, 'https://ror.org/03ztgas51', 'es', 1, 'https://ror.org/03ztgas51 Asociación Colombiana de Ciencias Biológicas'),
(113334, 'https://ror.org/03zvkcq15', 'en', 1, 'https://ror.org/03zvkcq15 Independent National Electoral Commission'),
(113335, 'https://ror.org/03zx3qn16', 'pt', 1, 'https://ror.org/03zx3qn16 Laboratório da Cor'),
(113336, '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'),
(113337, 'https://ror.org/04011hd89', 'fr', 1, 'https://ror.org/04011hd89 Centre Ellipse'),
(113338, 'https://ror.org/0402tt118', 'en', 1, 'https://ror.org/0402tt118 Sydney Hospital'),
(113339, 'https://ror.org/0403hq463', 'en', 1, 'https://ror.org/0403hq463 CMMI – Cyprus Marine & Maritime Institute, CMMI – Cyprus Marine & Maritime Institute (Cyprus)'),
(113340, 'https://ror.org/0403vsj52', 'en', 1, 'https://ror.org/0403vsj52 Turkish Association for Landscape Architecture Education and Science'),
(113341, 'https://ror.org/0405mnx93', 'en', 1, 'https://ror.org/0405mnx93 Texas Tech University'),
(113342, 'https://ror.org/04067bp33', 'en', 1, 'https://ror.org/04067bp33 The Institute of Image Information and Television Engineers äø€čˆ¬ē¤¾å›£ę³•äŗŗę˜ åƒęƒ…å ±ćƒ”ćƒ‡ć‚£ć‚¢å­¦ä¼š'),
(113343, 'https://ror.org/04069k268', 'en', 1, 'https://ror.org/04069k268 ERN ReCONNET'),
(113344, 'https://ror.org/0407mvh49', 'pt', 1, 'https://ror.org/0407mvh49 Associação Portuguesa de Estudos sobre as Mulheres'),
(113345, 'https://ror.org/0407n8113', 'no_lang_code', 1, 'https://ror.org/0407n8113 SGS Academy Portugal, SGS Academy Portugal (Portugal)'),
(113346, 'https://ror.org/040884w51', 'en', 1, 'https://ror.org/040884w51 Taizhou Central Hospital, Taizhou University Hospital å°å·žåø‚äø­åæƒåŒ»é™¢'),
(113347, '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'),
(113348, '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'),
(113349, 'https://ror.org/040af2s02', 'en', 1, 'https://ror.org/040af2s02 Helsingfors Universitet Helsingin Yliopisto University of Helsinki'),
(113350, 'https://ror.org/040at6s67', 'pt', 1, 'https://ror.org/040at6s67 Centro de Investigação em Química'),
(113351, 'https://ror.org/040bzgy82', 'fr', 1, 'https://ror.org/040bzgy82 Observatoire des sciences de l''Univers Paris-Saclay'),
(113352, 'https://ror.org/040ebrp24', 'en', 1, 'https://ror.org/040ebrp24 Science and Technology Department of Ningxia å®å¤å›žę—č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(113353, 'https://ror.org/040ek4035', 'no_lang_code', 1, 'https://ror.org/040ek4035 Pemex (Mexico)'),
(113354, 'https://ror.org/040em2e23', 'en', 1, 'https://ror.org/040em2e23 Academy of Sciences of the Republic of Tajikistan'),
(113355, 'https://ror.org/040f4y023', 'en', 1, 'https://ror.org/040f4y023 Japan Rugby Football Union å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ©ć‚°ćƒ“ćƒ¼ćƒ•ćƒƒćƒˆćƒœćƒ¼ćƒ«å”ä¼š'),
(113356, 'https://ror.org/040f6xz90', 'en', 1, 'https://ror.org/040f6xz90 International Association of Advanced Materials Internationella fƶreningen fƶr avancerade material'),
(113357, 'https://ror.org/040gmwg54', 'pt', 1, 'https://ror.org/040gmwg54 Escola de Tecnologias Inovação e Criação'),
(113358, 'https://ror.org/040h2sq90', 'en', 1, 'https://ror.org/040h2sq90 Afya na Haki Institute'),
(113359, 'https://ror.org/040hzz705', 'fr', 1, 'https://ror.org/040hzz705 Atmo Normandie'),
(113360, 'https://ror.org/040j99w46', 'en', 1, 'https://ror.org/040j99w46 Osaka College of Music Junior College 大阪音愽大学短期大学部'),
(113361, 'https://ror.org/040kpmb93', 'es', 1, 'https://ror.org/040kpmb93 Universidad Autónoma de Entre Ríos'),
(113362, 'https://ror.org/040ksm610', 'pt', 1, 'https://ror.org/040ksm610 Sociedade da LĆ­ngua Portuguesa'),
(113363, 'https://ror.org/040m3v743', 'pt', 1, 'https://ror.org/040m3v743 Centro de Investigação Transdisciplinar Cultura Espaço e Memória'),
(113364, 'https://ror.org/040qyzk67', 'en', 1, 'https://ror.org/040qyzk67 Universidad de Camagüey University of Camagüey'),
(113365, 'https://ror.org/040t43x18', 'en', 1, 'https://ror.org/040t43x18 University of West Bohemia ZĆ”padočeskĆ” univerzita v Plzni'),
(113366, 'https://ror.org/040vtrd69', 'es', 1, 'https://ror.org/040vtrd69 Instituto del Patrimonio Cultural de EspaƱa'),
(113367, 'https://ror.org/040x95d02', 'en', 1, 'https://ror.org/040x95d02 Nabarangpur College ą¬Øą¬¬ą¬°ą¬™ą­ą¬—ą¬Ŗą­ą¬° ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(113368, 'https://ror.org/040xbp995', 'es', 1, 'https://ror.org/040xbp995 Universidad Nacional Rosario Castellanos'),
(113369, 'https://ror.org/040y0yf78', 'en', 1, 'https://ror.org/040y0yf78 Federal University of Health Sciences, Otukpo'),
(113370, 'https://ror.org/040zxe022', 'en', 1, 'https://ror.org/040zxe022 Asia-Pacific Cultural Centre for UNESCO å…¬ē›Šč²”å›£ę³•äŗŗćƒ¦ćƒć‚¹ć‚³ćƒ»ć‚¢ć‚øć‚¢ę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(113371, 'https://ror.org/0411d8q28', 'en', 1, 'https://ror.org/0411d8q28 Waco Mammoth National Monument'),
(113372, 'https://ror.org/0415s9t38', 'en', 1, 'https://ror.org/0415s9t38 Nethermind, Nethermind (United Kingdom)'),
(113373, 'https://ror.org/0415vcw02', 'en', 1, 'https://ror.org/0415vcw02 Czech University of Life Sciences Prague ČeskĆ” zemědělskĆ” univerzita v Praze'),
(113374, 'https://ror.org/04164j283', 'en', 1, 'https://ror.org/04164j283 The Telecommunication Technology Committee äø€čˆ¬ē¤¾å›£ę³•äŗŗęƒ…å ±é€šäæ”ęŠ€č”“å§”å“”ä¼š'),
(113375, 'https://ror.org/0418gak31', 'en', 1, 'https://ror.org/0418gak31 Czech Carbon Observation System ČeskÔ infrastruktura sledovÔní uhlíku'),
(113376, 'https://ror.org/0418h6h65', 'en', 0, 'https://ror.org/0418h6h65 Chemical Insights Research Institute'),
(113377, 'https://ror.org/041945v60', 'pt', 1, 'https://ror.org/041945v60 Cinemateca Portuguesa Museu do Cinema'),
(113378, 'https://ror.org/0419aq933', 'en', 1, 'https://ror.org/0419aq933 Sport Singapore'),
(113379, 'https://ror.org/0419b2556', 'it', 1, 'https://ror.org/0419b2556 Agenzia Regionale per la Protezione dell''ambiente ligure'),
(113380, 'https://ror.org/041akmr36', 'en', 1, 'https://ror.org/041akmr36 University of Shizuoka Junior College é™å²”ēœŒē«‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(113381, 'https://ror.org/041b8zc76', 'en', 1, 'https://ror.org/041b8zc76 Institute for Work & Health'),
(113382, 'https://ror.org/041cyvf45', 'en', 1, 'https://ror.org/041cyvf45 Amsterdam Reproduction Development'),
(113383, 'https://ror.org/041dm9873', 'en', 1, 'https://ror.org/041dm9873 The Assam Royal Global University'),
(113384, 'https://ror.org/041etnv80', 'en', 1, 'https://ror.org/041etnv80 Regia-Douro Park'),
(113385, 'https://ror.org/041gev667', 'no_lang_code', 1, 'https://ror.org/041gev667 PricewaterhouseCoopers (United Kingdom)'),
(113386, 'https://ror.org/041h7hf54', 'pt', 1, 'https://ror.org/041h7hf54 Laboratório de Protecção e Segurança Radiológica'),
(113387, 'https://ror.org/041jtyq26', 'no_lang_code', 1, 'https://ror.org/041jtyq26 GAIL (India) ą¤—ą„‡ą¤² (इंऔिया) ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(113388, 'https://ror.org/041k23c94', 'en', 1, 'https://ror.org/041k23c94 Agriculture & Livestock Industries Corporation ē‹¬ē«‹č”Œę”æę³•äŗŗč¾²ē•œē”£ę„­ęŒÆčˆˆę©Ÿę§‹'),
(113389, 'https://ror.org/041k7vj66', 'en', 1, 'https://ror.org/041k7vj66 Japan Aging Research Center äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚Øć‚¤ć‚øćƒ³ć‚°ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(113390, 'https://ror.org/041ke1609', 'es', 1, 'https://ror.org/041ke1609 Instituto de Investigaciones Bibliotecológicas y de la Información'),
(113391, 'https://ror.org/041m6k425', 'no_lang_code', 1, 'https://ror.org/041m6k425 OCP Group (Morocco) Office chĆ©rifien des phosphates Ų§Ł„Ł…ŁƒŲŖŲØ Ų§Ł„Ų“Ų±ŁŠŁ Ł„Ł„ŁŁˆŲ³ŁŲ§Ų·'),
(113392, 'https://ror.org/041mrvc03', 'en', 1, 'https://ror.org/041mrvc03 MiRXES Lab Pte. Ltd., MiRXES Lab Pte. Ltd. (Singapore)'),
(113393, 'https://ror.org/041nas322', 'en', 1, 'https://ror.org/041nas322 Rheinische Friedrich-Wilhelms-UniversitƤt Bonn University of Bonn'),
(113394, 'https://ror.org/041nk4h53', 'en', 1, 'https://ror.org/041nk4h53 Laboratorio Nacional Lawrence Livermore Lawrence Livermore National Laboratory'),
(113395, 'https://ror.org/041vekr17', 'en', 0, 'https://ror.org/041vekr17 Argosy University'),
(113396, 'https://ror.org/041xzk838', 'it', 1, 'https://ror.org/041xzk838 Biophysics Institute Instituto di Biofisica'),
(113397, 'https://ror.org/041yds613', 'en', 1, 'https://ror.org/041yds613 Niigata Psychiatric Center ę–°ę½ŸēœŒē«‹ē²¾ē„žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(113398, 'https://ror.org/0421f6a14', 'en', 1, 'https://ror.org/0421f6a14 Naval Hospital Jacksonville'),
(113399, 'https://ror.org/0422kfj84', 'pt', 1, 'https://ror.org/0422kfj84 Sociedade Portuguesa de Investigação em Música'),
(113400, 'https://ror.org/0423jsj19', 'fr', 1, 'https://ror.org/0423jsj19 HEC Paris'),
(113401, 'https://ror.org/0425b4h79', 'en', 1, 'https://ror.org/0425b4h79 Prime Minister''s Office ę–°åŠ å”ę€»ē†åŠžå…¬å®¤'),
(113402, 'https://ror.org/04263dh80', 'en', 1, 'https://ror.org/04263dh80 Saisyukan Hospital åŒ»ē™‚ę³•äŗŗęøˆč”†é¤Øęøˆč”†é¤Øē—…é™¢'),
(113403, 'https://ror.org/0428c0g78', 'en', 1, 'https://ror.org/0428c0g78 Oxford Immunotec, Oxford Immunotec (United Kingdom), Oxford Immunotec Ltd'),
(113404, 'https://ror.org/042999n30', 'en', 1, 'https://ror.org/042999n30 National Supercomputer Center in Guangzhou äø­å±±å¤§å­¦å›½å®¶č¶…ēŗ§č®”ē®—å¹æå·žäø­åæƒ, å›½å®¶č¶…ēŗ§č®”ē®—å¹æå·žäø­åæƒ'),
(113405, 'https://ror.org/042ahds41', 'de', 1, 'https://ror.org/042ahds41 Forschungsinstitut Gesellschaftlicher Zusammenhalt'),
(113406, 'https://ror.org/042dc0x18', 'fr', 1, 'https://ror.org/042dc0x18 GANIL Large Heavy Ion National Accelerator'),
(113407, 'https://ror.org/042fhxk54', 'en', 1, 'https://ror.org/042fhxk54 Japan Construction Machinery and Construction Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗčØ­ę©Ÿę¢°ę–½å·„å”ä¼š'),
(113408, 'https://ror.org/042gz1a70', 'en', 1, 'https://ror.org/042gz1a70 Bioplatforms Australia'),
(113409, 'https://ror.org/042jtbg10', 'en', 1, 'https://ror.org/042jtbg10 Sumathi Reddy Institute of Technology for Women'),
(113410, 'https://ror.org/042jzp908', 'en', 1, 'https://ror.org/042jzp908 Phasecraft Ltd., Phasecraft Ltd. (United Kingdom)'),
(113411, 'https://ror.org/042nafx13', 'pt', 1, 'https://ror.org/042nafx13 ProvĆ­ncia Portuguesa da Companhia de Jesus'),
(113412, 'https://ror.org/042nb2s44', 'en', 1, 'https://ror.org/042nb2s44 Instituto Tecnológico de Massachusetts Massachusetts Institute of Technology'),
(113413, 'https://ror.org/042nkmz09', 'en', 1, 'https://ror.org/042nkmz09 Hospital del Mar Research Institute'),
(113414, 'https://ror.org/042pgcv68', 'en', 1, 'https://ror.org/042pgcv68 China Academy of Chinese Medical Sciences äø­å›½äø­åŒ»ē§‘å­¦é™¢'),
(113415, 'https://ror.org/042pns516', 'en', 1, 'https://ror.org/042pns516 Center for the Study of Democracy'),
(113416, 'https://ror.org/042qzc198', 'en', 1, 'https://ror.org/042qzc198 National Institute of Unani Medicine'),
(113417, 'https://ror.org/042rf5k64', 'en', 1, 'https://ror.org/042rf5k64 Space Delta 2'),
(113418, 'https://ror.org/042s7kp61', 'en', 1, 'https://ror.org/042s7kp61 GreenCross Veterinary Products Co., GreenCross Veterinary Products Co. (South Korea)'),
(113419, 'https://ror.org/042tqz317', 'en', 1, 'https://ror.org/042tqz317 ECHO Inc.'),
(113420, 'https://ror.org/042vs2406', 'en', 1, 'https://ror.org/042vs2406 Sanno Hospital åŒ»ē™‚ę³•äŗŗč²”å›£é †å’Œä¼šå±±ēŽ‹ē—…é™¢'),
(113421, 'https://ror.org/042vw1210', 'en', 1, 'https://ror.org/042vw1210 NSBM Green University'),
(113422, 'https://ror.org/042wasb67', 'en', 1, 'https://ror.org/042wasb67 Policy Research Institute, Ministry of Agriculture, Forestry and Fisheries č¾²ęž—ę°“ē”£ēœč¾²ęž—ę°“ē”£ę”æē­–ē ”ē©¶ę‰€'),
(113423, 'https://ror.org/042wh0w21', 'en', 1, 'https://ror.org/042wh0w21 Irish Rugby Football Union'),
(113424, 'https://ror.org/042wjdg05', 'de', 1, 'https://ror.org/042wjdg05 Hannah-Arendt-Institut für Totalitarismusforschung e.V. an der TU Dresden'),
(113425, 'https://ror.org/0431cxf05', 'en', 1, 'https://ror.org/0431cxf05 SPI Research Centre'),
(113426, 'https://ror.org/0431s8639', 'en', 1, 'https://ror.org/0431s8639 AgroVet-Strickhof'),
(113427, 'https://ror.org/04323m874', 'en', 1, 'https://ror.org/04323m874 Science and Technology Department of Sichuan Province å››å·ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(113428, 'https://ror.org/0432d2f64', 'fr', 1, 'https://ror.org/0432d2f64 Centre Lucien Febvre'),
(113429, 'https://ror.org/0432jq872', 'en', 1, 'https://ror.org/0432jq872 Mississippi State University UniversitĆ© d''Ɖtat du Mississippi'),
(113430, 'https://ror.org/04341bz40', 'en', 1, 'https://ror.org/04341bz40 Valahia Medical Center'),
(113431, 'https://ror.org/0434c4478', 'en', 1, 'https://ror.org/0434c4478 King George V Memorial Hospital'),
(113432, 'https://ror.org/0435rc536', 'no_lang_code', 1, 'https://ror.org/0435rc536 Novo Nordisk (Denmark)'),
(113433, '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'),
(113434, '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.'),
(113435, 'https://ror.org/0437r5r80', 'en', 1, 'https://ror.org/0437r5r80 International Information Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗęƒ…å ±ē§‘å­¦å›½éš›äŗ¤ęµč²”å›£'),
(113436, 'https://ror.org/0437w5765', 'cs', 1, 'https://ror.org/0437w5765 Institut TerezƭnskƩ iniciativy, Terezƭn Initiative Institute'),
(113437, 'https://ror.org/04399kt07', 'en', 1, 'https://ror.org/04399kt07 Takasaki Advanced Radiation Research Institute é«˜å“Žé‡å­åæœē”Øē ”ē©¶ę‰€'),
(113438, 'https://ror.org/043apdk07', 'en', 1, 'https://ror.org/043apdk07 THE Institute Of Marketing & Distribution Research äø€čˆ¬ē¤¾å›£ę³•äŗŗęµé€šå•é”Œē ”ē©¶å”ä¼š'),
(113439, 'https://ror.org/043asvy84', 'en', 1, 'https://ror.org/043asvy84 Metropolitan Water Reclamation District of Greater Chicago'),
(113440, 'https://ror.org/043bfms20', 'en', 1, 'https://ror.org/043bfms20 Anthony Nolan'),
(113441, 'https://ror.org/043ddq142', 'en', 1, 'https://ror.org/043ddq142 Flanders Heritage Agency Onroerend Erfgoed'),
(113442, 'https://ror.org/043ga8x09', 'en', 1, 'https://ror.org/043ga8x09 THE Kajima Foundation å…¬ē›Šč²”å›£ę³•äŗŗé¹æå³¶å­¦č”“ęŒÆčˆˆč²”å›£'),
(113443, 'https://ror.org/043gh2t42', 'en', 1, 'https://ror.org/043gh2t42 Medical Center of the Americas Foundation'),
(113444, 'https://ror.org/043gz6e45', 'es', 1, 'https://ror.org/043gz6e45 Servicio Regional de Investigación y Desarrollo Agroalimentario'),
(113445, 'https://ror.org/043h9aq51', 'en', 0, 'https://ror.org/043h9aq51 Tashkent Islamic University'),
(113446, 'https://ror.org/043jp9q35', 'en', 1, 'https://ror.org/043jp9q35 Islamic University of Science and Technology, Kashmir'),
(113447, 'https://ror.org/043kc1412', 'es', 1, 'https://ror.org/043kc1412 Polytechnic University of Gómez Palacio Universidad Politécnica de Gómez Palacio'),
(113448, 'https://ror.org/043kj1e77', 'no_lang_code', 1, 'https://ror.org/043kj1e77 Continental Engineering Services Portugal, Continental Engineering Services Portugal (Portugal)'),
(113449, 'https://ror.org/043t7b640', 'en', 1, 'https://ror.org/043t7b640 Freemasons Foundation Centre for Men''s Health'),
(113450, 'https://ror.org/043v7fq47', 'en', 1, 'https://ror.org/043v7fq47 Japan Association for International Collaboration of Agriculture and Forestry å…¬ē›Šē¤¾å›£ę³•äŗŗå›½éš›č¾²ęž—ę„­å”åƒå”ä¼š'),
(113451, 'https://ror.org/043vfk764', 'fr', 1, 'https://ror.org/043vfk764 Centre de recherche en Agropastoralisme (CRAPast) Ł…Ų±ŁƒŲ² البحث في الفلاحة Ų§Ł„Ų±Ų¹ŁˆŁŠŲ©'),
(113452, 'https://ror.org/043vhnd15', 'en', 1, 'https://ror.org/043vhnd15 Academic Perpective Akademik Perspektif Derneği'),
(113453, 'https://ror.org/043xj7k26', 'es', 1, 'https://ror.org/043xj7k26 Universidad de Guadalajara University of Guadalajara'),
(113454, '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'),
(113455, 'https://ror.org/04427p113', 'fr', 1, 'https://ror.org/04427p113 Centre d''enseignement et de recherche en foresterie'),
(113456, 'https://ror.org/0442zbe52', 'pt', 1, 'https://ror.org/0442zbe52 Universidade da Madeira University of Madeira'),
(113457, 'https://ror.org/04437j066', 'en', 1, 'https://ror.org/04437j066 Solar System Exploration Research Virtual Institute'),
(113458, 'https://ror.org/0443gqz72', 'en', 1, 'https://ror.org/0443gqz72 Ayurved Mahavidyalaya & Seth RV Ayurved Hospital'),
(113459, 'https://ror.org/0446wcg70', 'en', 1, 'https://ror.org/0446wcg70 ERN Skin'),
(113460, 'https://ror.org/044790d95', 'en', 1, 'https://ror.org/044790d95 Sinai Health System'),
(113461, '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'),
(113462, 'https://ror.org/0448pab96', 'en', 1, 'https://ror.org/0448pab96 Velalar College of Engineering and Technology ą®µąÆ‡ą®³ą®¾ą®³ą®°ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(113463, 'https://ror.org/0449bkp65', 'en', 1, 'https://ror.org/0449bkp65 University of Kerbala'),
(113464, 'https://ror.org/0449jya45', 'no_lang_code', 1, 'https://ror.org/0449jya45 Ningxia Meteorological Bureau å®å¤å›žę—č‡Ŗę²»åŒŗę°”č±”å±€'),
(113465, 'https://ror.org/044a8tz03', 'en', 1, 'https://ror.org/044a8tz03 Nagano Prefectural Institute of Technology é•·é‡ŽēœŒå·„ē§‘ēŸ­ęœŸå¤§å­¦ę ”'),
(113466, 'https://ror.org/044b87t53', 'en', 1, 'https://ror.org/044b87t53 The Bible Seminary'),
(113467, 'https://ror.org/044bfs567', 'pt', 1, 'https://ror.org/044bfs567 Republica Portuguesa Direção-Geral das Artes'),
(113468, 'https://ror.org/044dp1584', 'fr', 1, 'https://ror.org/044dp1584 Centre d''Investigation Clinique - EpidƩmiologie Clinique Saint-Etienne'),
(113469, 'https://ror.org/044eb2772', 'it', 1, 'https://ror.org/044eb2772 Fondazione Ethoikos'),
(113470, 'https://ror.org/044enzw67', 'en', 1, 'https://ror.org/044enzw67 The Japan Neurosurgical Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č„³ē„žēµŒå¤–ē§‘å­¦ä¼š'),
(113471, 'https://ror.org/044fhy270', 'de', 1, 'https://ror.org/044fhy270 Carl-Thiem-Klinikum Cottbus'),
(113472, 'https://ror.org/044fk6795', 'en', 1, 'https://ror.org/044fk6795 Schmidt Sciences'),
(113473, 'https://ror.org/044h7tr79', 'no_lang_code', 1, 'https://ror.org/044h7tr79 Hilti (Liechtenstein)'),
(113474, 'https://ror.org/044j5pz44', 'en', 1, 'https://ror.org/044j5pz44 Al-Qasim Green University Ų¬Ų§Ł…Ų¹Ų© القاسم الخضراؔ'),
(113475, 'https://ror.org/044mj7r89', 'es', 1, 'https://ror.org/044mj7r89 Institut de Biologia Evolutiva, Instituto de BiologĆ­a Evolutiva Institute of Evolutionary Biology'),
(113476, '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'),
(113477, 'https://ror.org/044n25186', 'en', 1, 'https://ror.org/044n25186 Yuriy Fedkovych Chernivtsi National University Š§ŠµŃ€Š½Ń–Š²ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š®Ń€Ń–Ń Š¤ŠµŠ“ŃŒŠŗŠ¾Š²ŠøŃ‡Š°'),
(113478, 'https://ror.org/044nqyr35', 'id', 1, 'https://ror.org/044nqyr35 Universitas Islam Negeri Kiai Haji Achmad Siddiq Jember'),
(113479, 'https://ror.org/044rwnt51', 'en', 1, 'https://ror.org/044rwnt51 ELIXIR'),
(113480, 'https://ror.org/044sx9203', 'fr', 1, 'https://ror.org/044sx9203 Sherbrooke, Ville de Sherbrooke'),
(113481, 'https://ror.org/044v1kn41', 'pt', 1, 'https://ror.org/044v1kn41 Associação Empresarial da Região de Viseu'),
(113482, 'https://ror.org/044w2d669', 'no_lang_code', 1, 'https://ror.org/044w2d669 Vygon Portugal, Vygon Portugal (Portugal)'),
(113483, 'https://ror.org/044w7a341', 'en', 1, 'https://ror.org/044w7a341 Towson University'),
(113484, 'https://ror.org/044webc45', 'en', 1, 'https://ror.org/044webc45 CECOM Software Engineering Center'),
(113485, 'https://ror.org/044wxf274', 'en', 1, 'https://ror.org/044wxf274 Eden University'),
(113486, 'https://ror.org/044ywxm13', 'de', 1, 'https://ror.org/044ywxm13 Hogrefe AG, Hogrefe AG (Switzerland)'),
(113487, 'https://ror.org/044zqqy65', 'en', 1, 'https://ror.org/044zqqy65 National Park Service Servicio de Parques Nacionales'),
(113488, 'https://ror.org/0451wqa05', 'en', 1, 'https://ror.org/0451wqa05 Iligan Capitol College'),
(113489, 'https://ror.org/04535zb61', 'en', 1, 'https://ror.org/04535zb61 Japan Dental Hygienists'' Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę­Æē§‘č”›ē”Ÿå£«ä¼š'),
(113490, 'https://ror.org/0453j3c58', 'no_lang_code', 1, 'https://ror.org/0453j3c58 Mahasarakham University ดหาวณทยาคัยดหาสารคาด'),
(113491, 'https://ror.org/04550za12', 'en', 1, 'https://ror.org/04550za12 Yakpermas Banyumas Polytechnic'),
(113492, 'https://ror.org/04587cw34', 'no_lang_code', 1, 'https://ror.org/04587cw34 Serraic Create and Innovate (Portugal)'),
(113493, '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)'),
(113494, 'https://ror.org/045btyr58', 'pt', 1, 'https://ror.org/045btyr58 Sociedade de Ciências AgrÔrias de Portugal'),
(113495, 'https://ror.org/045d8n041', 'pt', 1, 'https://ror.org/045d8n041 Sindicato dos BancƔrios do Centro'),
(113496, 'https://ror.org/045f4cj55', 'en', 1, 'https://ror.org/045f4cj55 Japan Bicycle Technical Center äø€čˆ¬č²”å›£ę³•äŗŗč‡Ŗč»¢č»Šē”£ę„­ęŒÆčˆˆå”ä¼šęŠ€č”“ē ”ē©¶ę‰€'),
(113497, 'https://ror.org/045f7pv37', 'fr', 1, 'https://ror.org/045f7pv37 Institut FranƧais de Bioinformatique'),
(113498, 'https://ror.org/045jsht94', 'sl', 1, 'https://ror.org/045jsht94 InŔtitut za Razvoj Družbene Odgovornosti'),
(113499, 'https://ror.org/045k2fq98', 'en', 1, 'https://ror.org/045k2fq98 Institut für Metallforschung Institute of Metals Research'),
(113500, 'https://ror.org/045kd8221', 'en', 1, 'https://ror.org/045kd8221 Federal Polytechnic Ugep'),
(113501, 'https://ror.org/045n75910', 'en', 1, 'https://ror.org/045n75910 UL Research Institutes'),
(113502, 'https://ror.org/045p37n96', 'en', 1, 'https://ror.org/045p37n96 National University Bangladesh ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(113503, 'https://ror.org/045rmt345', 'pt', 1, 'https://ror.org/045rmt345 Unidade Nacional de Gestão do Mecanismo Financeiro do Espaço Económico Europeu'),
(113504, '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'),
(113505, 'https://ror.org/045sza929', 'en', 1, 'https://ror.org/045sza929 China Earthquake Administration äø­å›½åœ°éœ‡å±€'),
(113506, 'https://ror.org/045t90p09', 'en', 1, 'https://ror.org/045t90p09 Osaka Tokiwakai Gakuen University å¤§é˜Ŗåøøē£ä¼šå­¦åœ’'),
(113507, 'https://ror.org/045y5pt10', 'en', 1, 'https://ror.org/045y5pt10 Fundacja Cyber-Complex'),
(113508, 'https://ror.org/045yqyw06', 'pt', 1, 'https://ror.org/045yqyw06 Centro de MatemƔtica'),
(113509, 'https://ror.org/04609ps55', 'no_lang_code', 1, 'https://ror.org/04609ps55 GKN (United Kingdom)'),
(113510, 'https://ror.org/0460jpj73', 'en', 1, 'https://ror.org/0460jpj73 Universidad de Concepción University of Concepción'),
(113511, 'https://ror.org/0461q1s51', 'en', 1, 'https://ror.org/0461q1s51 Uttarakhand Forest Department ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤£ą„ą¤” वन'),
(113512, 'https://ror.org/0463nzc67', 'id', 1, 'https://ror.org/0463nzc67 Universitas Nahdlatul Ulama Lampung'),
(113513, 'https://ror.org/0466t8w27', 'pt', 1, 'https://ror.org/0466t8w27 echLab Centro de Investigação em Tecnologias'),
(113514, 'https://ror.org/04677dp78', 'en', 1, 'https://ror.org/04677dp78 3billion, Inc., 3billion, Inc. (South Korea)'),
(113515, 'https://ror.org/0468tgh79', 'en', 1, 'https://ror.org/0468tgh79 Nature Research Centre'),
(113516, 'https://ror.org/046ak2485', 'de', 1, 'https://ror.org/046ak2485 Freie UniversitƤt Berlin'),
(113517, 'https://ror.org/046athf97', 'pt', 1, 'https://ror.org/046athf97 RELACRE - Associação de Laboratórios Acreditados de Portugal'),
(113518, 'https://ror.org/046awyn59', 'en', 1, 'https://ror.org/046awyn59 Częstochowa University of Technology Politechnika Częstochowska'),
(113519, 'https://ror.org/046b3cj80', 'fr', 1, 'https://ror.org/046b3cj80 Ɖcole Pratique des Hautes Ɖtudes'),
(113520, 'https://ror.org/046b54093', 'ms', 1, 'https://ror.org/046b54093 Universiti Tunku Abdul Rahman Sungai Long Campus'),
(113521, 'https://ror.org/046dyvq82', 'pt', 1, 'https://ror.org/046dyvq82 Comissao de Coordenacao e Desenvolvimento Regional do Norte'),
(113522, 'https://ror.org/046e90j34', 'es', 1, 'https://ror.org/046e90j34 Instituto Nacional de CardiologĆ­a National Institute of Cardiology'),
(113523, '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'),
(113524, 'https://ror.org/046egda04', 'en', 1, 'https://ror.org/046egda04 ETH Zürich Campus Heilbronn gGmbH'),
(113525, 'https://ror.org/046ffzj20', 'es', 1, 'https://ror.org/046ffzj20 Universidad de Cantabria University of Cantabria'),
(113526, 'https://ror.org/046k90f22', 'pt', 1, 'https://ror.org/046k90f22 Sociedade Portuguesa de AcĆŗstica'),
(113527, 'https://ror.org/046nzaj59', 'en', 1, 'https://ror.org/046nzaj59 Bundesanstalt für Straßenwesen Federal Highway and Transport Research Institute'),
(113528, 'https://ror.org/046p5xf85', 'en', 1, 'https://ror.org/046p5xf85 Xichong County People''s Hospital č„æå……åŽæäŗŗę°‘åŒ»é™¢'),
(113529, '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'),
(113530, 'https://ror.org/046r5vg91', 'pt', 1, 'https://ror.org/046r5vg91 Sociedade Broteriana'),
(113531, 'https://ror.org/046rj7h96', 'pt', 0, 'https://ror.org/046rj7h96 Escola Superior de Artes Decorativas'),
(113532, 'https://ror.org/046ss3906', 'en', 0, 'https://ror.org/046ss3906 Górnoslaska Wyzsza Szkola Handlowa Katowice School of Economics'),
(113533, 'https://ror.org/046swdx52', 'pt', 1, 'https://ror.org/046swdx52 CECOLAB'),
(113534, 'https://ror.org/046xby895', 'fr', 1, 'https://ror.org/046xby895 LIRA - Laboratoire International de Recherches en Arts, Laboratoire International de Recherches en Arts'),
(113535, 'https://ror.org/047146281', 'en', 1, 'https://ror.org/047146281 Far Western Anthropological Research Group, Inc., Far Western Anthropological Research Group, Inc. (United States)'),
(113536, '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'),
(113537, 'https://ror.org/047272k79', 'en', 1, 'https://ror.org/047272k79 The University of Western Australia'),
(113538, 'https://ror.org/0472vpe75', 'en', 1, 'https://ror.org/0472vpe75 Mukuba University'),
(113539, 'https://ror.org/0473rjf26', 'en', 1, 'https://ror.org/0473rjf26 Northern Mindanao Colleges, Inc.'),
(113540, 'https://ror.org/0474m4e38', 'en', 1, 'https://ror.org/0474m4e38 Department of National Museums ą®¤ąÆ‡ą®šą®æą®Æ ą®ØąÆ‚ą®¤ą®©ą®šą®¾ą®²ąÆˆą®¤ąÆ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ ą¶¢ą·ą¶­ą·’ą¶š ą¶šą·žą¶­ą·”ą¶šą·ą¶œą·ą¶» ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(113541, 'https://ror.org/0474mqm39', 'en', 1, 'https://ror.org/0474mqm39 Department of Fisheries, Bangladesh ą¦®ą§Žą¦øą§ą¦Æ ą¦…ą¦§ą¦æą¦¦ą¦Ŗą§ą¦¤ą¦° ą¦—ą¦£ą¦Ŗą§ą¦°ą¦œą¦¾ą¦¤ą¦Øą§ą¦¤ą§ą¦°ą§€ বাংলাদেশ সরকার'),
(113542, 'https://ror.org/0477akv50', 'en', 1, 'https://ror.org/0477akv50 Makumbusho ya Taifa la Tanzania National Museum of Tanzania'),
(113543, 'https://ror.org/04790ar32', 'it', 1, 'https://ror.org/04790ar32 Lamezia Terme Hospital Presidio Ospedaliero Lamezia Terme'),
(113544, 'https://ror.org/04793bt26', 'de', 1, 'https://ror.org/04793bt26 Institut Sprachliche und Literarische Bildung Institute for Language and Literary Education'),
(113545, 'https://ror.org/047axtc96', 'en', 1, 'https://ror.org/047axtc96 Center for Climate Systems Modeling'),
(113546, 'https://ror.org/047b1nx71', 'pt', 1, 'https://ror.org/047b1nx71 Laboratório de Ciências do Mar'),
(113547, 'https://ror.org/047by5682', 'en', 1, 'https://ror.org/047by5682 Japan Traffic Management Technology Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äŗ¤é€šē®”ē†ęŠ€č”“å”ä¼š'),
(113548, 'https://ror.org/047d13a24', 'es', 1, 'https://ror.org/047d13a24 Universidad de GuantƔnamo University of Guantanamo'),
(113549, 'https://ror.org/047dqcg40', 'en', 1, 'https://ror.org/047dqcg40 Korea University ź³ ė ¤ėŒ€ķ•™źµ'),
(113550, 'https://ror.org/047f73w76', 'fr', 1, 'https://ror.org/047f73w76 Cegep de Sainte Foy'),
(113551, 'https://ror.org/047fh3h41', 'en', 1, 'https://ror.org/047fh3h41 Fukui Food Processing Research Institute ē¦äŗ•ēœŒé£Ÿå“åŠ å·„ē ”ē©¶ę‰€'),
(113552, 'https://ror.org/047hncm83', 'it', 1, 'https://ror.org/047hncm83 Agenzia Regionale per la Protezione dell''ambiente del Friuli Venezia Giulia'),
(113553, 'https://ror.org/047j4zh09', 'en', 1, 'https://ror.org/047j4zh09 Association of Management Consultants in Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒå–¶å£«ä¼š'),
(113554, 'https://ror.org/047jgsa20', 'id', 1, 'https://ror.org/047jgsa20 Universitas Muhammadiyah Madiun'),
(113555, 'https://ror.org/047kx5j58', 'en', 1, 'https://ror.org/047kx5j58 Hanson Institute'),
(113556, 'https://ror.org/047pymx40', 'es', 1, 'https://ror.org/047pymx40 ConsejerĆ­a de Salud y Consumo'),
(113557, 'https://ror.org/047r3fm82', 'en', 1, 'https://ror.org/047r3fm82 Japan Confectionery and Innovative Food Ingredients Research Center äø€čˆ¬ē¤¾å›£ę³•äŗŗč“å­ćƒ»é£Ÿå“ę–°ē“ ęęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(113558, 'https://ror.org/047rmns35', 'es', 1, 'https://ror.org/047rmns35 Hospital Santa Rosa'),
(113559, 'https://ror.org/047s1xy56', 'en', 1, 'https://ror.org/047s1xy56 RESTART'),
(113560, 'https://ror.org/047w75g40', 'en', 1, 'https://ror.org/047w75g40 International Islamic University, Islamabad ŲØŁŠŁ† Ų§Ł„Ų§Ł‚ŁˆŲ§Ł…ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł¹ŪŒ اسلام Ų¢ŲØŲ§ŲÆā€Ž'),
(113561, 'https://ror.org/047yy2056', 'no_lang_code', 1, 'https://ror.org/047yy2056 Biosurfit (Portugal), Biosurfit, S.A.'),
(113562, 'https://ror.org/0482ksk80', 'en', 1, 'https://ror.org/0482ksk80 Purdue University in Indianapolis'),
(113563, 'https://ror.org/048400679', 'en', 1, 'https://ror.org/048400679 Space Sciences Laboratory'),
(113564, 'https://ror.org/0484kce93', 'no_lang_code', 1, 'https://ror.org/0484kce93 R&D Nester, R&D Nester (Portugal)'),
(113565, 'https://ror.org/0485mm908', 'en', 1, 'https://ror.org/0485mm908 State Institution of Science Ā«Center of Innovative Healthcare TechnologiesĀ» State Administrative Department Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° «Центр інноваційних технологій охорони Š·Š“Š¾Ń€Š¾Š²ā€™ŃĀ» Державного ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń справами'),
(113566, 'https://ror.org/0488w4k89', 'en', 1, 'https://ror.org/0488w4k89 Empowers Africa'),
(113567, 'https://ror.org/0489gab80', 'en', 1, 'https://ror.org/0489gab80 Leibniz Institute for High Performance Microelectronics Leibniz-Institut für innovative Mikroelektronik'),
(113568, 'https://ror.org/048ar9n68', 'en', 1, 'https://ror.org/048ar9n68 Public Buildings Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…¬å…±å»ŗēÆ‰å”ä¼š'),
(113569, 'https://ror.org/048c8ew36', 'id', 1, 'https://ror.org/048c8ew36 Mercu Buana University of Yogyakarta Universitas Mercu Buana Yogyakarta'),
(113570, 'https://ror.org/048cwvf49', 'en', 1, 'https://ror.org/048cwvf49 Universiteit van Suid-Afrika University of South Africa'),
(113571, 'https://ror.org/048dw0897', 'pt', 1, 'https://ror.org/048dw0897 Centro de CiĆŖncia e Tecnologia do Ambiente e do Mar'),
(113572, 'https://ror.org/048dxy086', 'en', 1, 'https://ror.org/048dxy086 Matsuyama International Center å…¬ē›Šč²”å›£ę³•äŗŗę¾å±±å›½éš›äŗ¤ęµå”ä¼š'),
(113573, 'https://ror.org/048ey1e04', 'fr', 1, 'https://ror.org/048ey1e04 Institut de recherche en droit des affaires (Paris)'),
(113574, 'https://ror.org/048f5b183', 'en', 1, 'https://ror.org/048f5b183 The King''s University'),
(113575, '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.'),
(113576, 'https://ror.org/048hyya13', 'en', 1, 'https://ror.org/048hyya13 Swiss HIV Cohort Study'),
(113577, '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'),
(113578, 'https://ror.org/048kx0z93', 'en', 1, 'https://ror.org/048kx0z93 European Marine Biological Resource Centre Portugal'),
(113579, 'https://ror.org/048m7sg95', 'en', 1, 'https://ror.org/048m7sg95 Indian Institute of Information Technology Lucknow'),
(113580, 'https://ror.org/048p7wk03', 'pt', 1, 'https://ror.org/048p7wk03 Casa do Professor'),
(113581, 'https://ror.org/048r0ec88', 'en', 1, 'https://ror.org/048r0ec88 Armata Pharmaceuticals, Armata Pharmaceuticals (United States), Armata Pharmaceuticals, Inc.'),
(113582, 'https://ror.org/048rzsb27', 'id', 1, 'https://ror.org/048rzsb27 Universitas Imelda Medan'),
(113583, 'https://ror.org/048s0na58', 'de', 1, 'https://ror.org/048s0na58 Institut Digitale und Informatische Bildung Institute Digital and Computer Science Education'),
(113584, 'https://ror.org/048t56w09', 'en', 1, 'https://ror.org/048t56w09 Agricultural Development Consultants Association äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–č¾²ę„­é–‹ē™ŗć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒ„å”ä¼š'),
(113585, 'https://ror.org/048va4596', 'en', 1, 'https://ror.org/048va4596 THE Institute Of Electrical Installation Engineers Of Japan äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—čØ­å‚™å­¦ä¼š'),
(113586, 'https://ror.org/048xgyx59', 'no_lang_code', 1, 'https://ror.org/048xgyx59 Maria Design, Maria Design (Portugal)'),
(113587, 'https://ror.org/048xj2376', 'pt', 1, 'https://ror.org/048xj2376 Academia de LĆ­nguas da Madeira'),
(113588, 'https://ror.org/048z03f58', 'en', 1, 'https://ror.org/048z03f58 Delta State Polytechnic Otefe-Oghara'),
(113589, 'https://ror.org/048zxff28', 'es', 1, 'https://ror.org/048zxff28 Instituto de Investigaciones Históricas'),
(113590, 'https://ror.org/04933pe04', 'de', 1, 'https://ror.org/04933pe04 Stadtspital Zürich'),
(113591, 'https://ror.org/04936mc07', 'pt', 1, 'https://ror.org/04936mc07 Centro CiĆŖncia Viva de Estremoz'),
(113592, 'https://ror.org/049412q44', 'it', 1, 'https://ror.org/049412q44 INGV Sezione di Roma 1'),
(113593, 'https://ror.org/0495rze17', 'en', 1, 'https://ror.org/0495rze17 Kobe Institute of Health ē„žęˆøåø‚å„åŗ·ē§‘å­¦ē ”ē©¶ę‰€'),
(113594, 'https://ror.org/0496m6d18', 'no_lang_code', 1, 'https://ror.org/0496m6d18 Horizon Discovery Group (United States)'),
(113595, 'https://ror.org/0496n3z90', 'pl', 1, 'https://ror.org/0496n3z90 Akademia Tarnowska University of Applied Sciences in Tarnow'),
(113596, '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'),
(113597, 'https://ror.org/04970qw83', 'en', 1, 'https://ror.org/04970qw83 National Institute of Nutrition ą°œą°¾ą°¤ą±€ą°Æ ą°Ŗą±Œą°·ą±ą°Ÿą°æą°•ą°¾ą°¹ą°¾ą°° పరిశోధన శాల'),
(113598, 'https://ror.org/049784n50', 'es', 1, 'https://ror.org/049784n50 Universidad de Magallanes University of Magallanes'),
(113599, 'https://ror.org/0497crr92', 'en', 1, 'https://ror.org/0497crr92 Smith College'),
(113600, 'https://ror.org/0497srf50', 'en', 1, 'https://ror.org/0497srf50 Solana Research, Solana Research (Germany), Solana Research GmbH'),
(113601, 'https://ror.org/04990kb44', 'en', 1, 'https://ror.org/04990kb44 Bangladesh Institute of Innovative Health Research'),
(113602, 'https://ror.org/04998x052', 'en', 1, 'https://ror.org/04998x052 Nagasaki Food Hygiene Association å…¬ē›Šē¤¾å›£ę³•äŗŗé•·å“ŽēœŒé£Ÿå“č”›ē”Ÿå”ä¼š'),
(113603, 'https://ror.org/0499b1120', 'fr', 1, 'https://ror.org/0499b1120 Centre de Recherche en Droit Administratif'),
(113604, 'https://ror.org/049bjee35', 'en', 1, 'https://ror.org/049bjee35 St. Anne''s University Hospital Brno'),
(113605, 'https://ror.org/049c7r177', 'en', 1, 'https://ror.org/049c7r177 Kitakyushu Municipal Education Center åŒ—ä¹å·žåø‚ē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(113606, 'https://ror.org/049dk3691', 'en', 1, 'https://ror.org/049dk3691 Marine Biodiversity Exploitation and Conservation'),
(113607, 'https://ror.org/049dvyc65', 'fr', 0, 'https://ror.org/049dvyc65 Association des graduƩes et graduƩs en agriculture et alimentation'),
(113608, 'https://ror.org/049e3er75', 'en', 1, 'https://ror.org/049e3er75 Yamanashi International Association å…¬ē›Šč²”å›£ę³•äŗŗå±±ę¢ØēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(113609, 'https://ror.org/049g6ah05', 'fr', 1, 'https://ror.org/049g6ah05 Laboratoire d''analyse des signaux & des processus industriels'),
(113610, 'https://ror.org/049htfh25', 'en', 1, 'https://ror.org/049htfh25 FDI World Dental Federation'),
(113611, 'https://ror.org/049hw1a96', 'pt', 1, 'https://ror.org/049hw1a96 Centro de Estudos Interdisciplinares em Educação e Desenvolvimento'),
(113612, 'https://ror.org/049k6es50', 'no_lang_code', 1, 'https://ror.org/049k6es50 REABE Benfica Rehabilitation Centre, REABE Centro de Reabilitação de Benfica (Portugal)'),
(113613, 'https://ror.org/049n68p64', 'en', 1, 'https://ror.org/049n68p64 Universidad de Caldas University of Caldas'),
(113614, 'https://ror.org/049ndh460', 'en', 1, 'https://ror.org/049ndh460 JIS University'),
(113615, 'https://ror.org/049pzty39', 'en', 1, 'https://ror.org/049pzty39 Bayero University Kano YunifÔsítì BÔyéró'),
(113616, 'https://ror.org/049qgqg40', 'fr', 1, 'https://ror.org/049qgqg40 DƩlƩgation Provence et Corse'),
(113617, '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'),
(113618, 'https://ror.org/049zrp193', 'pt', 1, 'https://ror.org/049zrp193 Governo dos AƧores'),
(113619, 'https://ror.org/04a0aep16', 'no', 1, 'https://ror.org/04a0aep16 Sykehuset i Vestfold Vestfold Hospital Trust'),
(113620, 'https://ror.org/04a4qnc06', 'en', 1, 'https://ror.org/04a4qnc06 lululab Inc., lululab Inc. (South Korea)'),
(113621, 'https://ror.org/04a5szx83', 'en', 1, 'https://ror.org/04a5szx83 University of North Dakota UniversitƩ du dakota du nord'),
(113622, 'https://ror.org/04a711r87', 'no_lang_code', 1, 'https://ror.org/04a711r87 South African Nuclear Energy Corporation (South Africa)'),
(113623, 'https://ror.org/04a73z253', 'no_lang_code', 1, 'https://ror.org/04a73z253 UCB Pharma (Portugal)'),
(113624, 'https://ror.org/04a7xee56', 'en', 1, 'https://ror.org/04a7xee56 Institut für Neuroinformatik Institute of Neuroinformatics'),
(113625, 'https://ror.org/04ac0qk71', 'en', 1, 'https://ror.org/04ac0qk71 Department of Finance of Jiangsu Province, ę±Ÿč‹ēœč“¢ę”æåŽ…'),
(113626, 'https://ror.org/04agm8872', 'pt', 1, 'https://ror.org/04agm8872 DECO - Associação Portuguesa para a Defesa do Consumidor'),
(113627, 'https://ror.org/04agvdf86', 'en', 1, 'https://ror.org/04agvdf86 AIC Yaesu Clinic åŒ»ē™‚ę³•äŗŗē¤¾å›£č±Šę™ŗä¼šAICå…«é‡ę“²ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(113628, 'https://ror.org/04aj4c181', 'de', 1, 'https://ror.org/04aj4c181 Technische Informationsbibliothek, Technische Informationsbibliothek (TIB)'),
(113629, 'https://ror.org/04akc8v18', 'en', 1, 'https://ror.org/04akc8v18 UXtweak j.s.a., UXtweak j.s.a. (Slovakia)'),
(113630, 'https://ror.org/04asdee31', 'fr', 1, 'https://ror.org/04asdee31 Marie and Louis Pasteur University UniversitƩ Marie et Louis Pasteur'),
(113631, 'https://ror.org/04ask4j07', 'en', 1, 'https://ror.org/04ask4j07 The KIRIN Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‚­ćƒŖćƒ³ē¦ē„‰č²”å›£'),
(113632, 'https://ror.org/04atb9h07', 'en', 1, 'https://ror.org/04atb9h07 Amsterdam Movement Sciences');
INSERT INTO `rors` VALUES
(113633, 'https://ror.org/04avsp476', 'en', 1, 'https://ror.org/04avsp476 Japan Light Metal Welding Association äø€čˆ¬ē¤¾å›£ę³•äŗŗč»½é‡‘å±žęŗ¶ęŽ„å”ä¼š'),
(113634, 'https://ror.org/04aykk734', 'en', 1, 'https://ror.org/04aykk734 DTX Digital Transformation CoLAB'),
(113635, 'https://ror.org/04azajg63', 'en', 1, 'https://ror.org/04azajg63 PT Indonesia Comnets Plus, PT Indonesia Comnets Plus (Indonesia)'),
(113636, 'https://ror.org/04azmz153', 'de', 0, 'https://ror.org/04azmz153 Stadtspital Waid, Waidspital'),
(113637, 'https://ror.org/04b0n4406', 'en', 1, 'https://ror.org/04b0n4406 Concord Repatriation General Hospital'),
(113638, 'https://ror.org/04b0z7q78', 'fr', 1, 'https://ror.org/04b0z7q78 Institut des Sciences Humaines et Sociales'),
(113639, 'https://ror.org/04b22v608', 'en', 1, 'https://ror.org/04b22v608 Japan Association for Trade with Russia & NIS äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ­ć‚·ć‚¢NISč²æę˜“ä¼š'),
(113640, 'https://ror.org/04b2dty93', 'no_lang_code', 1, 'https://ror.org/04b2dty93 Merck (Germany)'),
(113641, 'https://ror.org/04b3jbx04', 'en', 1, 'https://ror.org/04b3jbx04 Kochi Health Sciences Center é«˜ēŸ„ēœŒćƒ»é«˜ēŸ„åø‚ē—…é™¢ä¼ę„­å›£ē«‹é«˜ēŸ„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(113642, 'https://ror.org/04b4vdm84', 'en', 1, 'https://ror.org/04b4vdm84 Shivnagar Vidya Prasarak Mandal Institute of Technology and Engineering'),
(113643, 'https://ror.org/04b6xwk80', 'en', 1, 'https://ror.org/04b6xwk80 Japan Electronics and Information Technology Industries Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»å­ęƒ…å ±ęŠ€č”“ē”£ę„­å”ä¼š'),
(113644, 'https://ror.org/04b77dm91', 'pt', 1, 'https://ror.org/04b77dm91 Centro de Estudos HumanĆ­sticos'),
(113645, 'https://ror.org/04b8yec33', 'pt', 1, 'https://ror.org/04b8yec33 Faust LĆ­ngua e Cultura'),
(113646, 'https://ror.org/04bath731', 'en', 1, 'https://ror.org/04bath731 Solers Research Group (United States)'),
(113647, 'https://ror.org/04bb6bf94', 'de', 1, 'https://ror.org/04bb6bf94 Spatial Services GmbH, Spatial Services GmbH (Austria)'),
(113648, 'https://ror.org/04bbejv30', 'en', 1, 'https://ror.org/04bbejv30 National Sanatorium Tohokushinseien å›½ē«‹ē™‚é¤Šę‰€ę±åŒ—ę–°ē”Ÿåœ’'),
(113649, 'https://ror.org/04bbxay08', 'en', 1, 'https://ror.org/04bbxay08 Reliability Center for Electronic Components of Japan äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é›»å­éƒØå“äæ”é ¼ę€§ć‚»ćƒ³ć‚æćƒ¼'),
(113650, 'https://ror.org/04bc5j847', 'id', 1, 'https://ror.org/04bc5j847 STMIK Methodist Binjai'),
(113651, 'https://ror.org/04bdj7239', 'no_lang_code', 1, 'https://ror.org/04bdj7239 Amkor Technology (United States)'),
(113652, 'https://ror.org/04bdjet71', 'en', 1, 'https://ror.org/04bdjet71 Sydenham College of Commerce and Economics, Mumbai'),
(113653, 'https://ror.org/04bfjpv87', 'en', 1, 'https://ror.org/04bfjpv87 Cisbio, Cisbio (France), Cisbio Bioassays'),
(113654, 'https://ror.org/04bg2jm34', 'pt', 1, 'https://ror.org/04bg2jm34 Unidade de Arqueologia'),
(113655, 'https://ror.org/04bky9367', 'pt', 1, 'https://ror.org/04bky9367 Sociedade Portuguesa de Espeleologia'),
(113656, 'https://ror.org/04bmnmq75', 'no_lang_code', 1, 'https://ror.org/04bmnmq75 Companhia das LezĆ­rias (Portugal), Companhia das LezĆ­rias, S.A.'),
(113657, 'https://ror.org/04bn5x956', 'en', 1, 'https://ror.org/04bn5x956 Institut für Operations Research Institute for Operations Research'),
(113658, 'https://ror.org/04bs0e027', 'no_lang_code', 1, 'https://ror.org/04bs0e027 EDF Energy (United Kingdom)'),
(113659, 'https://ror.org/04bs1pb34', 'en', 1, 'https://ror.org/04bs1pb34 Hamburg University of Technology Technische UniversitƤt Hamburg'),
(113660, 'https://ror.org/04bva2z59', 'pt', 1, 'https://ror.org/04bva2z59 Escola da Magistratura do Estado de RondƓnia - Emeron'),
(113661, 'https://ror.org/04bw6mb63', 'pt', 1, 'https://ror.org/04bw6mb63 Centro de Investigação em Marketing e AnÔlise de Dados'),
(113662, 'https://ror.org/04bxpb944', 'it', 1, 'https://ror.org/04bxpb944 Aplysia APS'),
(113663, 'https://ror.org/04bynv497', 'no_lang_code', 1, 'https://ror.org/04bynv497 Biosensors International Group (Singapore)'),
(113664, 'https://ror.org/04byv8g40', 'fr', 1, 'https://ror.org/04byv8g40 BiodiversitƩ, AgroƩcologie et AmƩnagement du Paysage'),
(113665, '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'),
(113666, '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'),
(113667, 'https://ror.org/04c4dkn09', 'en', 1, 'https://ror.org/04c4dkn09 University of Science and Technology of China äø­å›½ē§‘å­¦ęŠ€ęœÆå¤§å­¦'),
(113668, 'https://ror.org/04c65ax22', 'pt', 1, 'https://ror.org/04c65ax22 Centro Ciência Viva de Bragança'),
(113669, 'https://ror.org/04c6fcr68', 'en', 1, 'https://ror.org/04c6fcr68 Canterbury Hospital'),
(113670, 'https://ror.org/04cawmd62', 'id', 1, 'https://ror.org/04cawmd62 Universitas Darunnajah University of Darunnajah'),
(113671, 'https://ror.org/04cdgtt98', 'en', 1, 'https://ror.org/04cdgtt98 Deutsches Krebsforschungszentrum German Cancer Research Center'),
(113672, 'https://ror.org/04ckbty56', 'en', 1, 'https://ror.org/04ckbty56 Cardio-Pulmonary Institute'),
(113673, 'https://ror.org/04ckm7v43', 'en', 1, 'https://ror.org/04ckm7v43 Advanced Computing Center'),
(113674, 'https://ror.org/04cpva028', 'en', 1, 'https://ror.org/04cpva028 Hiroshima Industrial Promotion Organization å…¬ē›Šč²”å›£ę³•äŗŗć²ć‚ć—ć¾ē”£ę„­ęŒÆčˆˆę©Ÿę§‹'),
(113675, 'https://ror.org/04cqcs587', 'en', 1, 'https://ror.org/04cqcs587 Japan Association of Specialists in Textiles and Apparel äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č”£ę–™ē®”ē†å”ä¼š'),
(113676, 'https://ror.org/04crh2b66', 'fr', 1, 'https://ror.org/04crh2b66 Institut des MatƩriaux Materials Institute'),
(113677, 'https://ror.org/04crk2m06', 'en', 1, 'https://ror.org/04crk2m06 ERN BOND'),
(113678, 'https://ror.org/04csh5253', 'no_lang_code', 1, 'https://ror.org/04csh5253 PricewaterhouseCoopers (Portugal), PwC Portugal'),
(113679, 'https://ror.org/04cstt562', 'pt', 1, 'https://ror.org/04cstt562 Direção Geral de Energia e Geologia'),
(113680, 'https://ror.org/04ct4d772', 'en', 1, 'https://ror.org/04ct4d772 Southeast University äøœå—å¤§å­¦'),
(113681, 'https://ror.org/04ctq6f67', 'de', 1, 'https://ror.org/04ctq6f67 Kuratorium Pfahlbauten'),
(113682, 'https://ror.org/04cw3s860', 'en', 1, 'https://ror.org/04cw3s860 Next generation Space system Technology Research Association ę¬”äø–ä»£å®‡å®™ć‚·ć‚¹ćƒ†ćƒ ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(113683, 'https://ror.org/04cx3ye04', 'en', 1, 'https://ror.org/04cx3ye04 Foundation for Assistance to Small Innovative Enterprises in Science and Technology'),
(113684, 'https://ror.org/04cxyxy43', 'en', 1, 'https://ror.org/04cxyxy43 Fulbright Portugal'),
(113685, 'https://ror.org/04cyjwv12', 'en', 1, 'https://ror.org/04cyjwv12 Kogi State University, Kabba'),
(113686, 'https://ror.org/04czc9s55', 'en', 1, 'https://ror.org/04czc9s55 Nasus Pharma, Nasus Pharma (Israel)'),
(113687, 'https://ror.org/04d6h2y86', 'en', 1, 'https://ror.org/04d6h2y86 Warakukai Incorporated Medical Institution åŒ»ē™‚ę³•äŗŗå’Œę„½ä¼š'),
(113688, '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'),
(113689, 'https://ror.org/04d8gk172', 'de', 1, 'https://ror.org/04d8gk172 Duale Hochschule Sachsen'),
(113690, 'https://ror.org/04d8mwk58', 'en', 1, 'https://ror.org/04d8mwk58 Wyoming State Geological Survey'),
(113691, 'https://ror.org/04dav1h78', 'en', 1, 'https://ror.org/04dav1h78 Tada Tomohiro The Institute of Gastroenterology & Proctology ćŸć ćØć‚‚ć²ć‚čƒƒč…øē§‘č‚›é–€ē§‘'),
(113692, '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'),
(113693, 'https://ror.org/04dbtaf18', 'fr', 1, 'https://ror.org/04dbtaf18 AutoritƩ de sƻretƩ nuclƩaire et de radioprotection'),
(113694, 'https://ror.org/04ddmn863', 'pt', 1, 'https://ror.org/04ddmn863 Rede Nacional de Centros Integrais de CĆ¢ncer'),
(113695, 'https://ror.org/04dfk4c13', 'en', 1, 'https://ror.org/04dfk4c13 Neotropical Primates Research Group'),
(113696, 'https://ror.org/04dg1fw36', 'en', 1, 'https://ror.org/04dg1fw36 Católica Global School of Law'),
(113697, 'https://ror.org/04dgg6v25', 'en', 1, 'https://ror.org/04dgg6v25 Capacity Development in Nutrition'),
(113698, 'https://ror.org/04djd0e70', 'en', 1, 'https://ror.org/04djd0e70 Paper Recycling Promotion Center å…¬ē›Šč²”å›£ę³•äŗŗå¤ē“™å†ē”Ÿäæƒé€²ć‚»ćƒ³ć‚æćƒ¼'),
(113699, 'https://ror.org/04dk3ha27', 'en', 1, 'https://ror.org/04dk3ha27 Bangladesh Army University of Engineering & Technology বাংলাদেশ সেনাবাহিনী ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(113700, 'https://ror.org/04dkp1p98', 'en', 1, 'https://ror.org/04dkp1p98 Bureau of Meteorology'),
(113701, 'https://ror.org/04dmd4321', 'pt', 1, 'https://ror.org/04dmd4321 Conselho Científico-Pedagógico da Formação Contínua'),
(113702, 'https://ror.org/04dmevr13', 'en', 1, 'https://ror.org/04dmevr13 KwaZulu-Natal Museum'),
(113703, 'https://ror.org/04dng8q18', 'en', 1, 'https://ror.org/04dng8q18 ERN EuroBloodNet'),
(113704, 'https://ror.org/04dp46240', 'es', 1, 'https://ror.org/04dp46240 Universidad Europea'),
(113705, 'https://ror.org/04dp81f27', 'no_lang_code', 1, 'https://ror.org/04dp81f27 The Navigator (Portugal)'),
(113706, 'https://ror.org/04dq3z287', 'en', 1, 'https://ror.org/04dq3z287 Iwamizawa Asuka Hospital å²©č¦‹ę²¢ę˜Žę—„ä½³ē—…é™¢'),
(113707, 'https://ror.org/04dq4wh71', 'es', 1, 'https://ror.org/04dq4wh71 Centro de ToxicologĆ­a y Biomedicina'),
(113708, 'https://ror.org/04dqnye44', 'pt', 1, 'https://ror.org/04dqnye44 Administração Regional de Saúde do Alentejo IP'),
(113709, 'https://ror.org/04dwy1130', 'fr', 1, 'https://ror.org/04dwy1130 AcadƩmie des sciences French Academy of Sciences'),
(113710, 'https://ror.org/04dxeze48', 'fr', 1, 'https://ror.org/04dxeze48 Fluid Mechanics and Acoustics Laboratory Laboratoire de MƩcanique des Fluides et d''Acoustique'),
(113711, 'https://ror.org/04dxv8v14', 'en', 1, 'https://ror.org/04dxv8v14 ARC Centre of Excellence for Innovations in Peptide and Protein Science'),
(113712, 'https://ror.org/04dzd0b05', 'no_lang_code', 1, 'https://ror.org/04dzd0b05 Forcerebrus, Forcerebrus (Portugal)'),
(113713, 'https://ror.org/04e30s833', 'en', 1, 'https://ror.org/04e30s833 CREATe Centre, Centre for Regulation of the Creative Economy'),
(113714, 'https://ror.org/04e3ebx16', 'pt', 1, 'https://ror.org/04e3ebx16 Observatório do Mar dos Açores'),
(113715, 'https://ror.org/04e45ng25', 'en', 1, 'https://ror.org/04e45ng25 All Japan Judo Federation å…¬ē›Šč²”å›£ę³•äŗŗå…Øę—„ęœ¬ęŸ”é“é€£ē›Ÿ'),
(113716, 'https://ror.org/04e5av293', 'en', 1, 'https://ror.org/04e5av293 Ministry of Mines खान ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(113717, 'https://ror.org/04e5bwf87', 'en', 1, 'https://ror.org/04e5bwf87 Agricultural University Plovdiv Аграрен Университет'),
(113718, 'https://ror.org/04e5cqn96', 'pt', 1, 'https://ror.org/04e5cqn96 Riscos e Sustentabilidade na Construção'),
(113719, 'https://ror.org/04e764k96', 'en', 1, 'https://ror.org/04e764k96 Japan Society of Corrosion Engineering å…¬ē›Šē¤¾å›£ę³•äŗŗč…é£Ÿé˜²é£Ÿå­¦ä¼š'),
(113720, 'https://ror.org/04e8pda19', 'fr', 1, 'https://ror.org/04e8pda19 Chimie organique, Bioorganique, RƩactivitƩ et Analyse, Laboratoire COBRA'),
(113721, 'https://ror.org/04e9egb11', 'no_lang_code', 1, 'https://ror.org/04e9egb11 Flex2000, Flex2000 (Portugal)'),
(113722, 'https://ror.org/04e9nc458', 'no_lang_code', 1, 'https://ror.org/04e9nc458 WSA Portugal (Portugal), WSA Portugal, S.A.'),
(113723, 'https://ror.org/04ea1wf37', 'en', 1, 'https://ror.org/04ea1wf37 Uonuma kikan Hospital ę–°ę½Ÿå¤§å­¦åœ°åŸŸåŒ»ē™‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼é­šę²¼åŸŗå¹¹ē—…é™¢'),
(113724, 'https://ror.org/04ebesy71', 'en', 1, 'https://ror.org/04ebesy71 Osh State Pedagogical University named after A. Myrsabekov'),
(113725, 'https://ror.org/04ec9cc06', 'en', 1, 'https://ror.org/04ec9cc06 Alagappa University ą®…ą®“ą®•ą®ŖąÆą®Ŗą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(113726, 'https://ror.org/04ecb9d64', 'pt', 1, 'https://ror.org/04ecb9d64 Câmara Municipal de AlvaiÔzere'),
(113727, 'https://ror.org/04ed7fw48', 'fr', 1, 'https://ror.org/04ed7fw48 University of Southern Brittany UniversitƩ de Bretagne Sud'),
(113728, 'https://ror.org/04ee64434', 'en', 1, 'https://ror.org/04ee64434 Functional Water Foundation äø€čˆ¬č²”å›£ę³•äŗŗę©Ÿčƒ½ę°“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(113729, 'https://ror.org/04efvj010', 'en', 1, 'https://ror.org/04efvj010 Japan Institute of Baking äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ‘ćƒ³ęŠ€č”“ē ”ē©¶ę‰€'),
(113730, 'https://ror.org/04eg47h42', 'no_lang_code', 1, 'https://ror.org/04eg47h42 Walt Disney (United States)'),
(113731, 'https://ror.org/04egzc574', 'pt', 1, 'https://ror.org/04egzc574 Serviço de Assistência Médico-Social'),
(113732, 'https://ror.org/04eh0c412', 'en', 1, 'https://ror.org/04eh0c412 Foundation for Advancement of Essential Diagnostics'),
(113733, 'https://ror.org/04ehhn480', 'en', 1, 'https://ror.org/04ehhn480 Japan Building Materials Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ęę–™å”ä¼š'),
(113734, 'https://ror.org/04ehtgm24', 'en', 1, 'https://ror.org/04ehtgm24 LusĆ­ada University of Porto'),
(113735, 'https://ror.org/04ehvzt53', 'pt', 1, 'https://ror.org/04ehvzt53 Casa das Artes'),
(113736, 'https://ror.org/04ejcwb57', 'fr', 1, 'https://ror.org/04ejcwb57 Maison des Sciences de l’Homme de Dijon'),
(113737, 'https://ror.org/04ejgr990', 'en', 1, 'https://ror.org/04ejgr990 Japan Oilseed Processors Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©ę²¹å”ä¼š'),
(113738, 'https://ror.org/04ek39g80', 'en', 1, 'https://ror.org/04ek39g80 National Sanatorium Matuoka Hoyoen å›½ē«‹ē™‚é¤Šę‰€ę¾äø˜äæé¤Šåœ’'),
(113739, 'https://ror.org/04emb5q74', 'id', 1, 'https://ror.org/04emb5q74 Universitas Maarif Hasyim Latif'),
(113740, 'https://ror.org/04ep4cb98', 'en', 1, 'https://ror.org/04ep4cb98 The Japanese Association of Anatomists äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č§£å‰–å­¦ä¼š'),
(113741, 'https://ror.org/04epjbk36', 'en', 1, 'https://ror.org/04epjbk36 Institute of Housing and Urban Technology äø€čˆ¬č²”å›£ę³•äŗŗä½å®…éƒ½åø‚å·„å­¦ē ”ē©¶ę‰€'),
(113742, 'https://ror.org/04eqksj42', 'en', 1, 'https://ror.org/04eqksj42 Rowden Technologies (United Kingdom)'),
(113743, 'https://ror.org/04eqtjv38', 'en', 1, 'https://ror.org/04eqtjv38 Japanese Society for Preservation of Birds å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é³„é”žäæč­·é€£ē›Ÿ'),
(113744, 'https://ror.org/04er32z07', 'en', 1, 'https://ror.org/04er32z07 Rockefeller University Press'),
(113745, 'https://ror.org/04esgv207', 'en', 1, 'https://ror.org/04esgv207 Rashtrasant Tukadoji Maharaj Nagpur University راؓٹرسنت ŲŖŚ©Ś‘Łˆ جی مہاراج Ł†Ų§ŚÆŁ¾ŁˆŲ± ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ą¤Øą¤¾ą¤—ą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤øą¤‚ą¤¤ ą¤¤ą„ą¤•ą¤”ą„‹ą¤œą„€ महाराज ą¤Øą¤¾ą¤—ą¤Ŗą„‚ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą®Øą®¾ą®•ąÆą®ŖąÆ‚ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(113746, 'https://ror.org/04etzz842', 'pt', 1, 'https://ror.org/04etzz842 Instituto de Direito Penal e CiĆŖncias Criminais'),
(113747, 'https://ror.org/04evsam41', 'en', 1, 'https://ror.org/04evsam41 Mount Royal University'),
(113748, 'https://ror.org/04evvyd49', 'en', 1, 'https://ror.org/04evvyd49 Modelica Association'),
(113749, 'https://ror.org/04eyc6d95', 'en', 1, 'https://ror.org/04eyc6d95 Universidad de Antofagasta University of Antofagasta'),
(113750, 'https://ror.org/04ez83p88', 'en', 1, 'https://ror.org/04ez83p88 Okinawa Hokubu Hospital ę²–ēø„ēœŒē«‹åŒ—éƒØē—…é™¢'),
(113751, 'https://ror.org/04f0mr516', 'en', 1, 'https://ror.org/04f0mr516 Japan Karatedo Federation å…¬ē›Šč²”å›£ę³•äŗŗå…Øę—„ęœ¬ē©ŗę‰‹é“é€£ē›Ÿ'),
(113752, 'https://ror.org/04f7jrb21', 'en', 1, 'https://ror.org/04f7jrb21 Institut für Translationale Medizin Institute of Translational Medicine'),
(113753, 'https://ror.org/04f7pyb58', 'ca', 1, 'https://ror.org/04f7pyb58 Hospital Universitari Sant Joan de Reus University Hospital Sant Joan de Reus'),
(113754, 'https://ror.org/04f7vj627', 'no_lang_code', 1, 'https://ror.org/04f7vj627 University of Kragujevac Универзитет у ŠšŃ€Š°Š³ŃƒŃ˜ŠµŠ²Ń†Ńƒ'),
(113755, 'https://ror.org/04f8vwg61', 'en', 1, 'https://ror.org/04f8vwg61 Japan Property Management Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č³ƒč²øä½å®…ē®”ē†å”ä¼š'),
(113756, 'https://ror.org/04f8zmj78', 'en', 1, 'https://ror.org/04f8zmj78 Kyoto Yamashiro General Medical Center äŗ¬éƒ½å±±åŸŽē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(113757, 'https://ror.org/04f9q6692', 'pt', 1, 'https://ror.org/04f9q6692 Centro de Estudos de História Religiosa'),
(113758, 'https://ror.org/04f9wq675', 'es', 1, 'https://ror.org/04f9wq675 Servicios de Salud de YucatƔn'),
(113759, 'https://ror.org/04f9xr902', 'en', 1, 'https://ror.org/04f9xr902 Japan Sports Medicine Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„ę²»ē™‚åŒ»å­¦ē ”ē©¶ä¼š'),
(113760, 'https://ror.org/04fa64g55', 'en', 1, 'https://ror.org/04fa64g55 Hang Seng University of Hong Kong é¦™ęøÆę’ē”Ÿå¤§å­ø'),
(113761, 'https://ror.org/04fac6491', 'es', 1, 'https://ror.org/04fac6491 Instituto de Investigaciones sobre la Universidad y la Educación'),
(113762, 'https://ror.org/04fb0kf32', 'pt', 1, 'https://ror.org/04fb0kf32 Centro de Competências em Envelhecimento Ativo e SaudÔvel'),
(113763, 'https://ror.org/04fbr3m90', 'en', 1, 'https://ror.org/04fbr3m90 Allectra GmbH Allectra Limited, Allectra Limited (Germany)'),
(113764, 'https://ror.org/04fcqnd54', 'en', 1, 'https://ror.org/04fcqnd54 Ottery St Mary Hospital'),
(113765, 'https://ror.org/04fev5t41', 'en', 1, 'https://ror.org/04fev5t41 Institut für Energie- und Verfahrenstechnik Institute of Energy and Process Engineering'),
(113766, 'https://ror.org/04ff7hb94', 'en', 1, 'https://ror.org/04ff7hb94 Seaton Hospital'),
(113767, 'https://ror.org/04fhg0w34', 'en', 1, 'https://ror.org/04fhg0w34 ALERT Geomaterials – Alliance of Laboratories in Europe for Education, Research and Technology'),
(113768, '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)'),
(113769, 'https://ror.org/04fjwpp27', 'en', 1, 'https://ror.org/04fjwpp27 ArtCenter College of Design'),
(113770, 'https://ror.org/04fk8gw96', 'pt', 1, 'https://ror.org/04fk8gw96 Centro de Medicina Laboratorial Germano de Sousa Germano de Sousa Centre for Laboratory Medicine'),
(113771, 'https://ror.org/04fkwzm96', 'eu', 1, 'https://ror.org/04fkwzm96 Donostiako Unibertsitate Ospitalea Hospital Universitario de Donostia University Hospital Donostia'),
(113772, 'https://ror.org/04fmw2x94', 'pt', 1, 'https://ror.org/04fmw2x94 Infraestrutura Nacional de Investigação para Energia Solar de Concentração'),
(113773, 'https://ror.org/04fnrxr62', 'en', 1, 'https://ror.org/04fnrxr62 Haverford College'),
(113774, 'https://ror.org/04fpn4067', 'en', 1, 'https://ror.org/04fpn4067 Japan Technology Transfer Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·„ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(113775, 'https://ror.org/04frnva71', 'en', 1, 'https://ror.org/04frnva71 World Climate Research Programme'),
(113776, 'https://ror.org/04fv0zf35', 'en', 1, 'https://ror.org/04fv0zf35 Shiga Prefecture Agricultural Technology Promotion Center ę»‹č³€ēœŒč¾²ę„­ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(113777, 'https://ror.org/04fvb7v36', 'en', 1, 'https://ror.org/04fvb7v36 European Maritime Safety Agency'),
(113778, 'https://ror.org/04fxxe129', 'en', 1, 'https://ror.org/04fxxe129 Botany Foundation'),
(113779, 'https://ror.org/04fz66x85', 'en', 1, 'https://ror.org/04fz66x85 The Accessible Design Foundation of Japan å…¬ē›Šč²”å›£ę³•äŗŗå…±ē”Øå“ęŽØé€²ę©Ÿę§‹'),
(113780, 'https://ror.org/04g3scy39', 'en', 1, 'https://ror.org/04g3scy39 Government of South Australia'),
(113781, 'https://ror.org/04g6bbq64', 'en', 1, 'https://ror.org/04g6bbq64 Adam Mickiewicz University in Poznań Uniwersytet im. Adama Mickiewicza w Poznaniu'),
(113782, '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'),
(113783, 'https://ror.org/04g8ye561', 'en', 1, 'https://ror.org/04g8ye561 United States European Command'),
(113784, 'https://ror.org/04g9wgp02', 'en', 1, 'https://ror.org/04g9wgp02 University of Kotli, Azad Jammu and Kashmir'),
(113785, 'https://ror.org/04g9zpa43', 'en', 1, 'https://ror.org/04g9zpa43 S. C. Institute of Health Science and Research ć•ć„ćŸć¾åø‚å„åŗ·ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(113786, 'https://ror.org/04ga8mt87', 'pt', 1, 'https://ror.org/04ga8mt87 Plataforma Tecnológica Portuguesa da Construção'),
(113787, 'https://ror.org/04gbzm373', 'fr', 0, 'https://ror.org/04gbzm373 Universite de Bordeaux II Victor Segalen, UniversitƩ Bordeaux II, UniversitƩ Bordeaux Segalen'),
(113788, 'https://ror.org/04gd29w40', 'en', 1, 'https://ror.org/04gd29w40 The Society for Teaching Japanese as a Foreign Language å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čŖžę•™č‚²å­¦ä¼š'),
(113789, 'https://ror.org/04gd5dx40', 'no_lang_code', 1, 'https://ror.org/04gd5dx40 Dinabook National Book Distributor, Dinalivro Distribuidora Nacional de Livros (Portugal)'),
(113790, 'https://ror.org/04gdybn86', 'no_lang_code', 1, 'https://ror.org/04gdybn86 AstraZeneca (Poland)'),
(113791, 'https://ror.org/04gdzy103', 'en', 1, 'https://ror.org/04gdzy103 Center of Research for Environment, Energy and Water वातावरण, ą¤‰ą¤°ą„ą¤œą¤¾ तऄा जल ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(113792, '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'),
(113793, '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'),
(113794, 'https://ror.org/04gg5rd67', 'en', 1, 'https://ror.org/04gg5rd67 Wakayama Prefectural Livestock Experiment Station å’Œę­Œå±±ēœŒē•œē”£č©¦éØ“å “'),
(113795, 'https://ror.org/04gg6ne93', 'fr', 1, 'https://ror.org/04gg6ne93 Génétique Physiologie et Systèmes d''Elevage'),
(113796, 'https://ror.org/04ggnw234', 'pt', 1, 'https://ror.org/04ggnw234 LabComIFP - Comunicação Filosofia e Humanidades, LabComIFP'),
(113797, 'https://ror.org/04ghsqz27', 'en', 1, 'https://ror.org/04ghsqz27 U.S. Virgin Islands Department of Planning and Natural Resources'),
(113798, 'https://ror.org/04gkesc36', 'en', 1, 'https://ror.org/04gkesc36 The Japan Association of Rural Solutions for Environmental Conservation and Resource Recycling äø€čˆ¬ē¤¾å›£ę³•äŗŗåœ°åŸŸē’°å¢ƒč³‡ęŗć‚»ćƒ³ć‚æćƒ¼'),
(113799, 'https://ror.org/04gkha250', 'pt', 1, 'https://ror.org/04gkha250 Universidade SENAI CIMATEC'),
(113800, 'https://ror.org/04gm7z490', 'en', 1, 'https://ror.org/04gm7z490 Asia Technology Research Institute'),
(113801, 'https://ror.org/04gmdfj30', 'no_lang_code', 1, 'https://ror.org/04gmdfj30 Biotronik (Germany)'),
(113802, 'https://ror.org/04gmtj115', 'id', 1, 'https://ror.org/04gmtj115 Institut Pendidikan Indonesia'),
(113803, 'https://ror.org/04gnwaz35', 'pt', 1, 'https://ror.org/04gnwaz35 Paróquia de Nossa Senhora do Cabo de Linda-a-Velha'),
(113804, 'https://ror.org/04gp5yv64', 'en', 1, 'https://ror.org/04gp5yv64 Westmead Hospital'),
(113805, 'https://ror.org/04gpjfg13', 'en', 1, 'https://ror.org/04gpjfg13 International Centre for Materials Physics äø­å›½ē§‘å­¦é™¢å›½é™…ęę–™ē‰©ē†äø­åæƒ'),
(113806, 'https://ror.org/04gqg1a07', 'fr', 1, 'https://ror.org/04gqg1a07 UniversitƩ Savoie Mont Blanc'),
(113807, 'https://ror.org/04gr4te78', 'en', 1, 'https://ror.org/04gr4te78 Marquette University Universidad Marquette'),
(113808, 'https://ror.org/04gtv2261', 'pt', 1, 'https://ror.org/04gtv2261 Centro de Estudos AvanƧados em Direito Francisco SuƔrez'),
(113809, 'https://ror.org/04gwbew76', 'en', 1, 'https://ror.org/04gwbew76 Ministry of Ecology and Environment äø­åŽäŗŗę°‘å…±å’Œå›½ēŽÆå¢ƒäæęŠ¤éƒØ'),
(113810, 'https://ror.org/04gwnkw13', 'es', 1, 'https://ror.org/04gwnkw13 Centro Nacional de TecnologĆ­a QuĆ­mica'),
(113811, 'https://ror.org/04gzand64', 'en', 1, 'https://ror.org/04gzand64 New Glass Forum äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ‹ćƒ„ćƒ¼ć‚¬ćƒ©ć‚¹ćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(113812, 'https://ror.org/04gzb3214', 'en', 1, 'https://ror.org/04gzb3214 Yamazaki University of Animal Health Technology ćƒ¤ćƒžć‚¶ć‚­å‹•ē‰©ēœ‹č­·å¤§å­¦'),
(113813, 'https://ror.org/04gzwnm37', 'en', 1, 'https://ror.org/04gzwnm37 Hatsutomi Hoken Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£äø€åæƒä¼šåˆåÆŒäæå„ē—…é™¢'),
(113814, 'https://ror.org/04h1h0y33', 'fr', 1, 'https://ror.org/04h1h0y33 Centre National d''Ɖtudes Spatiales National Centre for Space Studies'),
(113815, 'https://ror.org/04h1kaf55', 'en', 1, 'https://ror.org/04h1kaf55 Nagano Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé•·é‡ŽēœŒåŒ»åø«ä¼š'),
(113816, 'https://ror.org/04h27a546', 'no_lang_code', 1, 'https://ror.org/04h27a546 Lightning Packs (United States)'),
(113817, 'https://ror.org/04h3c2e31', 'en', 1, 'https://ror.org/04h3c2e31 Institute of Fluid Flow-Machinery Instytut Maszyn Przepływowych'),
(113818, 'https://ror.org/04h3h5b09', 'en', 1, 'https://ror.org/04h3h5b09 Institute of Physics Belgrade'),
(113819, 'https://ror.org/04h5jjv17', 'en', 1, 'https://ror.org/04h5jjv17 Japan Ship Technology Research Association äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬čˆ¹čˆ¶ęŠ€č”“ē ”ē©¶å”ä¼š'),
(113820, 'https://ror.org/04h9xka55', 'id', 1, 'https://ror.org/04h9xka55 Teknologi Pendidikan ID (Indonesia)'),
(113821, 'https://ror.org/04hasps36', 'en', 1, 'https://ror.org/04hasps36 ALT Университет имени ŠœŃƒŃ…амеГжана Š¢Ń‹Š½Ń‹ŃˆŠæŠ°ŠµŠ²Š° Mukhametzhan Tynyshbayev ALT University ŠœŅ±Ń…Š°Š¼ŠµŃ‚Š¶Š°Š½ Š¢Ń‹Š½Ń‹ŃˆŠ±Š°ŠµŠ² атынГағы ALT ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(113822, 'https://ror.org/04hd12s89', 'en', 1, 'https://ror.org/04hd12s89 Tsurumi Junior College é¶“č¦‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(113823, 'https://ror.org/04hd1a463', 'en', 1, 'https://ror.org/04hd1a463 Jawaharlal Nehru Technological University-Gurajada, Vizianagaram'),
(113824, 'https://ror.org/04hdhz511', 'no_lang_code', 1, 'https://ror.org/04hdhz511 Pierre Fabre (France)'),
(113825, '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'),
(113826, 'https://ror.org/04hf92r68', 'no_lang_code', 1, 'https://ror.org/04hf92r68 Valmet (Portugal)'),
(113827, 'https://ror.org/04hjvxe87', 'id', 1, 'https://ror.org/04hjvxe87 Politeknik Pariwisata NHI Bandung'),
(113828, 'https://ror.org/04hmhe775', 'en', 1, 'https://ror.org/04hmhe775 Institute for Balkan Studies SASA Š‘Š°Š»ŠŗŠ°Š½Š¾Š»Š¾ŃˆŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚, Š‘Š°Š»ŠŗŠ°Š½Š¾Š»Š¾ŃˆŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дрпске акаГемије наука Šø ŃƒŠ¼ŠµŃ‚Š½Š¾ŃŃ‚Šø'),
(113829, 'https://ror.org/04hmn8g73', 'no_lang_code', 1, 'https://ror.org/04hmn8g73 Bayer (Germany)'),
(113830, 'https://ror.org/04hmssf27', 'en', 1, 'https://ror.org/04hmssf27 Advanced Remanufacturing & Technology Centre'),
(113831, 'https://ror.org/04hp42s89', 'en', 1, 'https://ror.org/04hp42s89 Institute of International Relations Prague Ústav mezinÔrodních vztahů, v. v. i.'),
(113832, 'https://ror.org/04hrs9369', 'fr', 1, 'https://ror.org/04hrs9369 DƩlƩgation Languedoc Roussillon'),
(113833, 'https://ror.org/04hsvrj60', 'en', 1, 'https://ror.org/04hsvrj60 Arkansas Game and Fish Commission'),
(113834, 'https://ror.org/04ht9dx76', 'de', 1, 'https://ror.org/04ht9dx76 Vorarlberger Landesbibliothek'),
(113835, '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'),
(113836, 'https://ror.org/04hvb2270', 'en', 1, 'https://ror.org/04hvb2270 KOBE Tourism Bureau äø€čˆ¬č²”å›£ę³•äŗŗē„žęˆøč¦³å…‰å±€'),
(113837, 'https://ror.org/04hwn5841', 'en', 1, 'https://ror.org/04hwn5841 Nusmetics Pte Ltd (Singapore)'),
(113838, 'https://ror.org/04hypz134', 'en', 1, 'https://ror.org/04hypz134 Kyiv Zoological Park of National Importance'),
(113839, 'https://ror.org/04j198w64', 'en', 1, 'https://ror.org/04j198w64 UniversitƩ de western michigan Western Michigan University'),
(113840, 'https://ror.org/04j3k7769', 'en', 1, 'https://ror.org/04j3k7769 Monetary Authority of Singapore'),
(113841, 'https://ror.org/04j43p132', 'en', 1, 'https://ror.org/04j43p132 National Ecological Observatory Network'),
(113842, '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̇'),
(113843, 'https://ror.org/04j4kfb22', 'en', 1, 'https://ror.org/04j4kfb22 Centre for Advanced Laser Applications'),
(113844, 'https://ror.org/04j5zna81', 'en', 1, 'https://ror.org/04j5zna81 Kyoto Prefectural Institute for Northern Industry äŗ¬éƒ½åŗœē¹”ē‰©ćƒ»ę©Ÿę¢°é‡‘å±žęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(113845, 'https://ror.org/04j9a9128', 'en', 1, 'https://ror.org/04j9a9128 KAISEI Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤§ęØ¹ä¼šē·åˆē—…é™¢å›žē”Ÿē—…é™¢'),
(113846, 'https://ror.org/04jan8q76', 'es', 1, 'https://ror.org/04jan8q76 Dirección General de Bibliotecas y Servicios Digitales de Información'),
(113847, 'https://ror.org/04jb37t29', 'es', 1, 'https://ror.org/04jb37t29 Centro de Emergencias Sanitarias 061'),
(113848, 'https://ror.org/04jdthe46', 'es', 1, 'https://ror.org/04jdthe46 Hospital de ClĆ­nicas'),
(113849, 'https://ror.org/04jecwn30', 'de', 1, 'https://ror.org/04jecwn30 Anstalt für Verbrennungskraftmaschinen List (United Kingdom)'),
(113850, 'https://ror.org/04jexp049', 'es', 1, 'https://ror.org/04jexp049 Dirección General de Publicaciones y Fomento Editorial'),
(113851, 'https://ror.org/04jfpax71', 'en', 1, 'https://ror.org/04jfpax71 Industrial Technology Center of Nagasaki é•·å“ŽēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(113852, 'https://ror.org/04jfsqd34', 'en', 1, 'https://ror.org/04jfsqd34 Alupe University'),
(113853, 'https://ror.org/04jghfn91', 'de', 1, 'https://ror.org/04jghfn91 Berufsbildungswerk Leipzig für Hör- und Sprachgeschädigte gGmbH'),
(113854, 'https://ror.org/04jkwt097', 'fr', 1, 'https://ror.org/04jkwt097 Institut Michel Villey pour la Culture Juridique et la Philosophie du Droit'),
(113855, 'https://ror.org/04jp88086', 'ca', 1, 'https://ror.org/04jp88086 Escola Superior d''Infermeria del Mar'),
(113856, 'https://ror.org/04jt1bz85', 'en', 1, 'https://ror.org/04jt1bz85 Advanced Micro Devices (Singapore), Advanced Micro Devices (Singapore) Pte Ltd'),
(113857, 'https://ror.org/04jt24b73', 'fr', 1, 'https://ror.org/04jt24b73 CLESTHIA - Langage, systĆØmes, discours'),
(113858, 'https://ror.org/04jt3r546', 'en', 1, 'https://ror.org/04jt3r546 Kamagaya General Hospital ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē¤¾å›£ęœØäø‹ä¼šéŽŒć‚±č°·ē·åˆē—…é™¢'),
(113859, 'https://ror.org/04jthgw29', 'en', 1, 'https://ror.org/04jthgw29 Center for Digital Narrative Senter for digitale fortellinger'),
(113860, 'https://ror.org/04jvphv53', 'en', 1, 'https://ror.org/04jvphv53 Government Post Graduate College, Karak ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ پوسٹ گریجویٹ کالج کرک'),
(113861, 'https://ror.org/04jxcqr50', 'en', 1, 'https://ror.org/04jxcqr50 International Glaciological Society'),
(113862, 'https://ror.org/04jy6j173', 'en', 1, 'https://ror.org/04jy6j173 Alandalus University For Science & Technology Ų¬Ų§Ł…Ų¹Ų© الأندلس Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(113863, 'https://ror.org/04jybm820', 'en', 1, 'https://ror.org/04jybm820 Wadi Alshatti University Ų¬Ų§Ł…Ų¹Ų© وادي الؓاطئ'),
(113864, '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'),
(113865, 'https://ror.org/04jzmdh37', 'en', 1, 'https://ror.org/04jzmdh37 Centre for Economic Policy Research'),
(113866, 'https://ror.org/04k0x5034', 'no_lang_code', 1, 'https://ror.org/04k0x5034 Startup Madeira More Than Ideas (Portugal)'),
(113867, 'https://ror.org/04k13ej84', 'en', 1, 'https://ror.org/04k13ej84 Society for Promotion of Space Science å…¬ē›Šč²”å›£ę³•äŗŗå®‡å®™ē§‘å­¦ęŒÆčˆˆä¼š'),
(113868, 'https://ror.org/04k1v1a87', 'it', 1, 'https://ror.org/04k1v1a87 Fondazione Paolo Procacci'),
(113869, 'https://ror.org/04k21pf91', 'es', 1, 'https://ror.org/04k21pf91 Universidad Naval'),
(113870, 'https://ror.org/04k2ezm16', 'en', 1, 'https://ror.org/04k2ezm16 Okanagan College'),
(113871, 'https://ror.org/04k49my20', 'pt', 1, 'https://ror.org/04k49my20 Sociedade Portuguesa de Neuropediatria'),
(113872, 'https://ror.org/04k56w561', 'en', 1, 'https://ror.org/04k56w561 Japan Sediments Management Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę°“åŗ•č³Ŗęµ„åŒ–ęŠ€č”“å”ä¼š'),
(113873, 'https://ror.org/04k9m3424', 'it', 1, 'https://ror.org/04k9m3424 Fondation Montagne Sùre Fondazione Montagna Sicura'),
(113874, 'https://ror.org/04karqd05', 'en', 1, 'https://ror.org/04karqd05 Bolan University of Medical and Health Sciences ŲØŁˆŁ„Ų§Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŚˆŪŒŚ©Ł„ Ų§ŪŒŁ†Śˆ ŪŪŒŁ„ŲŖŚ¾ سائنسز'),
(113875, 'https://ror.org/04kd6c783', 'no_lang_code', 1, 'https://ror.org/04kd6c783 Advanced Micro Devices (United States)'),
(113876, 'https://ror.org/04kdfz702', 'fr', 1, 'https://ror.org/04kdfz702 Institut National des Sciences de l''Univers'),
(113877, 'https://ror.org/04kdvm687', 'no_lang_code', 1, 'https://ror.org/04kdvm687 Blue Geo Lighthouse (Portugal)'),
(113878, 'https://ror.org/04kgp9g48', 'es', 1, 'https://ror.org/04kgp9g48 Universidad de Ciencias MƩdicas de la Habana'),
(113879, 'https://ror.org/04kkx4y96', 'en', 1, 'https://ror.org/04kkx4y96 United Nations University'),
(113880, 'https://ror.org/04kkyet53', 'en', 1, 'https://ror.org/04kkyet53 ESSCA School of Management'),
(113881, 'https://ror.org/04km2r075', 'no_lang_code', 1, 'https://ror.org/04km2r075 Lusomedicamenta (Portugal), Lusomedicamenta, S.A.'),
(113882, 'https://ror.org/04kmb0727', 'en', 1, 'https://ror.org/04kmb0727 Stem Cell Evaluation Technology Research Association å¹¹ē“°čƒžč©•ä¾”åŸŗē›¤ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(113883, 'https://ror.org/04kn38436', 'en', 1, 'https://ror.org/04kn38436 Japanese Society of Radiological Technology å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę”¾å°„ē·šęŠ€č”“å­¦ä¼š'),
(113884, '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'),
(113885, 'https://ror.org/04kqxbr46', 'en', 1, 'https://ror.org/04kqxbr46 American Quarter Horse Association'),
(113886, 'https://ror.org/04krhg278', 'en', 1, 'https://ror.org/04krhg278 Asian Office of Aerospace Research and Development'),
(113887, 'https://ror.org/04kt5vk53', 'en', 1, 'https://ror.org/04kt5vk53 Obninsk Institute for Nuclear Power Engineering ŠžŠ‘ŠŠ˜ŠŠ”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŠ¢ŠžŠœŠŠžŠ™ Š­ŠŠ•Š Š“Š•Š¢Š˜ŠšŠ˜'),
(113888, 'https://ror.org/04kt8mw18', 'pt', 1, 'https://ror.org/04kt8mw18 Madeira N-Lincs'),
(113889, 'https://ror.org/04kwn1e80', 'en', 1, 'https://ror.org/04kwn1e80 Saitama International Association å…¬ē›Šč²”å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(113890, 'https://ror.org/04m01e293', 'en', 1, 'https://ror.org/04m01e293 Prifysgol Efrog University of York'),
(113891, 'https://ror.org/04m06f066', 'de', 1, 'https://ror.org/04m06f066 TÜV Association TÜV-Verband'),
(113892, 'https://ror.org/04m1b9565', 'en', 1, 'https://ror.org/04m1b9565 Japan Telework Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ†ćƒ¬ćƒÆćƒ¼ć‚Æå”ä¼š'),
(113893, 'https://ror.org/04m2z6m32', 'pt', 1, 'https://ror.org/04m2z6m32 Biblioteca PĆŗblica de Braga'),
(113894, 'https://ror.org/04m3cqq68', 'en', 1, 'https://ror.org/04m3cqq68 UPF Barcelona School of Management'),
(113895, 'https://ror.org/04m8g9b03', 'pt', 1, 'https://ror.org/04m8g9b03 Centro CiĆŖncia Viva do Algarve'),
(113896, 'https://ror.org/04m9s0y85', 'pt', 1, 'https://ror.org/04m9s0y85 Cooperativa de Ensino UniversitƔrio CRL'),
(113897, 'https://ror.org/04ma40g91', 'en', 1, 'https://ror.org/04ma40g91 Japan Robot Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ­ćƒœćƒƒćƒˆå·„ę„­ä¼š'),
(113898, 'https://ror.org/04mag0y45', 'en', 1, 'https://ror.org/04mag0y45 Japan Boiler Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒœć‚¤ćƒ©å”ä¼š'),
(113899, 'https://ror.org/04mb1pr47', 'en', 1, 'https://ror.org/04mb1pr47 Kano Independent Research Centre Trust'),
(113900, 'https://ror.org/04mb4bg59', 'en', 1, 'https://ror.org/04mb4bg59 AMSolutions Inc., AMSolutions Inc. (Korea)'),
(113901, 'https://ror.org/04mc23283', 'en', 1, 'https://ror.org/04mc23283 Tartu Observatoorium Tartu Observatory'),
(113902, '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'),
(113903, 'https://ror.org/04mdct971', 'en', 1, 'https://ror.org/04mdct971 Japan Society for Safety Engineering ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗå®‰å…Øå·„å­¦ä¼š'),
(113904, 'https://ror.org/04me94w47', 'en', 1, 'https://ror.org/04me94w47 SingHealth'),
(113905, 'https://ror.org/04meywz55', 'en', 1, 'https://ror.org/04meywz55 THE Osaka Medical Research Foundation For Intractable Diseases å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗé›£ē—…ē ”ē©¶č²”å›£'),
(113906, '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)'),
(113907, 'https://ror.org/04mg6x265', 'en', 1, 'https://ror.org/04mg6x265 Rocky Mountain Humanistic Counseling and Psychological Association'),
(113908, 'https://ror.org/04mgnp447', 'fr', 1, 'https://ror.org/04mgnp447 Centre d''Ʃtudes et de recherches comparƩes sur la crƩation'),
(113909, 'https://ror.org/04mmhqs73', 'no_lang_code', 1, 'https://ror.org/04mmhqs73 Medjournal, Medjournal (Portugal)'),
(113910, 'https://ror.org/04mn0nr69', 'fr', 1, 'https://ror.org/04mn0nr69 Interactions, Corpus, Apprentissages, ReprƩsentations'),
(113911, 'https://ror.org/04mn32j67', 'de', 1, 'https://ror.org/04mn32j67 alchemia-nova research and innovation gemeinnützige GmbH'),
(113912, 'https://ror.org/04mnzd349', 'pt', 1, 'https://ror.org/04mnzd349 Escola de Moda do Porto'),
(113913, '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'),
(113914, 'https://ror.org/04mpvff38', 'en', 1, 'https://ror.org/04mpvff38 Japan Lubricating Oil Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę½¤ę»‘ę²¹å”ä¼š'),
(113915, 'https://ror.org/04mq2px33', 'fr', 1, 'https://ror.org/04mq2px33 GeoRessources'),
(113916, 'https://ror.org/04mqb0968', 'en', 1, 'https://ror.org/04mqb0968 Princess Alexandra Hospital'),
(113917, 'https://ror.org/04mqemp48', 'en', 1, 'https://ror.org/04mqemp48 Shenyang Maternity and Child Health Hospital ę²ˆé˜³åø‚å¦‡å¹¼äæå„é™¢'),
(113918, 'https://ror.org/04mrps332', 'pt', 1, 'https://ror.org/04mrps332 Sociedade Portuguesa de NeurociĆŖncias'),
(113919, 'https://ror.org/04msypa27', 'en', 1, 'https://ror.org/04msypa27 Health and Welfare Information Association äø€čˆ¬č²”å›£ę³•äŗŗäæå„ē¦ē„‰åŗƒå ±å”ä¼š'),
(113920, 'https://ror.org/04mtej177', 'en', 1, 'https://ror.org/04mtej177 Al-Kunooze University ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁ†ŁˆŲ² الجامعة'),
(113921, 'https://ror.org/04mthze50', 'en', 1, 'https://ror.org/04mthze50 Millennium Institute for Care Research'),
(113922, 'https://ror.org/04mv1z119', 'fr', 1, 'https://ror.org/04mv1z119 La Rochelle UniversitƩ'),
(113923, 'https://ror.org/04mx33r94', 'en', 1, 'https://ror.org/04mx33r94 Atria Institute of Technology'),
(113924, 'https://ror.org/04mxxkb11', 'es', 1, 'https://ror.org/04mxxkb11 Universidad de CƔdiz Universitat de Cadis University of CƔdiz'),
(113925, 'https://ror.org/04mymyn49', 'en', 1, 'https://ror.org/04mymyn49 Federal Polytechnic Wannune'),
(113926, 'https://ror.org/04mzqjs78', 'fr', 1, 'https://ror.org/04mzqjs78 BiogƩosciences'),
(113927, 'https://ror.org/04n00c532', 'de', 1, 'https://ror.org/04n00c532 Ministerium für Kultur und Wissenschaft des Landes Nordrhein-Westfalen'),
(113928, 'https://ror.org/04n0g0b29', 'ca', 1, 'https://ror.org/04n0g0b29 Pompeu Fabra University Universidad Pompeu Fabra Universitat Pompeu Fabra'),
(113929, 'https://ror.org/04n0kzv11', 'pt', 1, 'https://ror.org/04n0kzv11 Direção Geral do Território'),
(113930, 'https://ror.org/04n0tpv32', 'no_lang_code', 1, 'https://ror.org/04n0tpv32 J. Pereira da Cruz, S.A .(Portugal)'),
(113931, 'https://ror.org/04n210m18', 'it', 1, 'https://ror.org/04n210m18 Agenzia Provinciale per l’ambiente e la tutela del clima'),
(113932, 'https://ror.org/04n35qp23', 'en', 1, 'https://ror.org/04n35qp23 Institut für Pharmazeutische Wissenschaften Institute of Pharmaceutical Sciences'),
(113933, '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'),
(113934, 'https://ror.org/04n6qsf08', 'es', 1, 'https://ror.org/04n6qsf08 Universidad De Santander University of Santander'),
(113935, 'https://ror.org/04nd0xd48', 'en', 1, 'https://ror.org/04nd0xd48 Haute Ɖcole de Lucerne Hochschule Luzern Lucerne University of Applied Sciences and Arts'),
(113936, 'https://ror.org/04nefcs44', 'en', 1, 'https://ror.org/04nefcs44 Nepal College of Management'),
(113937, 'https://ror.org/04neydj61', 'en', 1, 'https://ror.org/04neydj61 Institut für Robotik und Intelligente Systeme Institute of Robotics and Intelligent Systems'),
(113938, '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'),
(113939, 'https://ror.org/04nfmp149', 'en', 1, 'https://ror.org/04nfmp149 Bharathiyar Institute of Engineering for Women'),
(113940, 'https://ror.org/04ngktm18', 'pt', 1, 'https://ror.org/04ngktm18 Sociedade Portuguesa de Psicodrama'),
(113941, 'https://ror.org/04nh1dc89', 'en', 1, 'https://ror.org/04nh1dc89 Division of Advanced Cyberinfrastructure'),
(113942, 'https://ror.org/04njjy449', 'es', 1, 'https://ror.org/04njjy449 Granadako Unibertsitatea Universidad de Granada University of Granada'),
(113943, 'https://ror.org/04nk3ny21', 'fr', 1, 'https://ror.org/04nk3ny21 Centre d''Investigation Clinique de BesanƧon'),
(113944, 'https://ror.org/04nkhqe34', 'en', 1, 'https://ror.org/04nkhqe34 United States Army Intelligence and Security Command'),
(113945, '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'),
(113946, 'https://ror.org/04nqts970', 'en', 1, 'https://ror.org/04nqts970 Latakia University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł„Ų§Ų°Ł‚ŁŠŲ©'),
(113947, 'https://ror.org/04nrhwg12', 'fr', 1, 'https://ror.org/04nrhwg12 Laboratoire de MathƩmatiques de BesanƧon'),
(113948, 'https://ror.org/04ntaar48', 'en', 1, 'https://ror.org/04ntaar48 Takarazuka Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå®å”šåø‚åŒ»åø«ä¼š'),
(113949, 'https://ror.org/04nwrc387', 'ca', 1, 'https://ror.org/04nwrc387 Institut CatalƠ d''Arqueologia ClƠssica Instituto CatalƔn de Arqueologƭa ClƔsica'),
(113950, 'https://ror.org/04p12m446', 'id', 1, 'https://ror.org/04p12m446 Bina Bangsa School Pantai Indah Kapuk'),
(113951, 'https://ror.org/04p2fa809', 'en', 1, 'https://ror.org/04p2fa809 Institut für Maschinelles Lernen Institute for Machine Learning'),
(113952, 'https://ror.org/04p3g7x29', 'en', 1, 'https://ror.org/04p3g7x29 Sapporo Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗęœ­å¹Œåø‚åŒ»åø«ä¼š'),
(113953, 'https://ror.org/04p4e8t29', 'en', 1, 'https://ror.org/04p4e8t29 Research Organization of Information and Systems ęƒ…å ±ćƒ»ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę©Ÿę§‹'),
(113954, 'https://ror.org/04p800546', 'en', 1, 'https://ror.org/04p800546 Commission des subventions aux universitĆ©s University Grants Commission ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤…ą¤Øą„ą¤¦ą¤¾ą¤Ø ą¤†ą¤Æą„‹ą¤— ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą¦®ą¦žą§ą¦œą§ą¦°ą¦æ কমিশন ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ąØ—ą©ąØ°ąØ¾ąØ‚ąØŸ ਕਮਿਸ਼ਨ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®• ą®®ą®¾ą®©ą®æą®Æą®•ąÆ குஓு ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą“—ąµą“°ą“¾ą“Øąµą“±ąµą“øąµ ą“•ą“®ąµą“®ąµ€ą“·ąµ»'),
(113955, 'https://ror.org/04p8h4609', 'pt', 1, 'https://ror.org/04p8h4609 Arquivo Histórico Municipal do Porto'),
(113956, 'https://ror.org/04pa29242', 'pt', 1, 'https://ror.org/04pa29242 Biblioteca da Ajuda'),
(113957, 'https://ror.org/04pazve79', 'en', 1, 'https://ror.org/04pazve79 Wyss Zurich Translational Center'),
(113958, 'https://ror.org/04pcv1x85', 'pt', 1, 'https://ror.org/04pcv1x85 Entidade Reguladora da SaĆŗde'),
(113959, 'https://ror.org/04pd1hv08', 'en', 1, 'https://ror.org/04pd1hv08 Ukrainian Research Institute of Design and Ergonomics of the National Aviation University Š£ŠŗŃ€ŠŠ”Š† ДЕ ŠŠŠ£'),
(113960, 'https://ror.org/04pe0yv43', 'en', 1, 'https://ror.org/04pe0yv43 Dnipro State University of Internal Affairs Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(113961, 'https://ror.org/04pe1sa24', 'es', 1, 'https://ror.org/04pe1sa24 Ecotec University Universidad Ecotec'),
(113962, 'https://ror.org/04pf17v09', 'no_lang_code', 1, 'https://ror.org/04pf17v09 Medtronic (Switzerland)'),
(113963, 'https://ror.org/04pfr1b11', 'fr', 1, 'https://ror.org/04pfr1b11 European Institute for Marine Studies Institut Universitaire EuropƩen de la Mer'),
(113964, 'https://ror.org/04pg51e30', 'en', 1, 'https://ror.org/04pg51e30 Government Pension Investment Fund å¹“é‡‘ē©ē«‹é‡‘ē®”ē†é‹ē”Øē‹¬ē«‹č”Œę”æę³•äŗŗ'),
(113965, 'https://ror.org/04phre941', 'en', 1, 'https://ror.org/04phre941 TerezĆ­n Memorial'),
(113966, 'https://ror.org/04pjvvb04', 'en', 1, 'https://ror.org/04pjvvb04 Yamazaki Professional College of Animal Health Technology ćƒ¤ćƒžć‚¶ć‚­å‹•ē‰©ēœ‹č­·å°‚é–€č·ēŸ­ęœŸå¤§å­¦'),
(113967, 'https://ror.org/04pjzv747', 'no_lang_code', 1, 'https://ror.org/04pjzv747 LG Chem (South Korea) LG화학'),
(113968, 'https://ror.org/04pk7zz41', 'en', 1, 'https://ror.org/04pk7zz41 Arctic Long Term Ecological Research'),
(113969, 'https://ror.org/04pmg2p90', 'en', 1, 'https://ror.org/04pmg2p90 Zhangjiang Laboratory å¼ ę±Ÿå®žéŖŒå®¤'),
(113970, 'https://ror.org/04pn6vp43', 'fr', 1, 'https://ror.org/04pn6vp43 Centre Hospitalier Universitaire de Saint-Ɖtienne'),
(113971, 'https://ror.org/04pqetg36', 'en', 1, 'https://ror.org/04pqetg36 Ministry of Health and Family Welfare'),
(113972, 'https://ror.org/04psz6g86', 'en', 1, 'https://ror.org/04psz6g86 International Lead and Zinc Study Group'),
(113973, 'https://ror.org/04pt40967', 'en', 1, 'https://ror.org/04pt40967 Imam Ali University'),
(113974, 'https://ror.org/04pvv2m50', 'en', 1, 'https://ror.org/04pvv2m50 JAē§‹ē”°åŽšē”Ÿé€£čƒ½ä»£åŽšē”ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ Noshiro Kousei Medical Center'),
(113975, 'https://ror.org/04pvzxy78', 'en', 1, 'https://ror.org/04pvzxy78 European Association for Higher Education Advancement'),
(113976, 'https://ror.org/04pyh8443', 'pt', 1, 'https://ror.org/04pyh8443 Escola de Comunicação Arquitectura Artes e Tecnologias da Informação'),
(113977, 'https://ror.org/04pzdfg37', 'pt', 1, 'https://ror.org/04pzdfg37 Centro de Toxicogenómica e Saúde Humana'),
(113978, 'https://ror.org/04q0a4f84', 'en', 1, 'https://ror.org/04q0a4f84 Economic and Social Research Institute'),
(113979, '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'),
(113980, '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'),
(113981, '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'),
(113982, 'https://ror.org/04q6rd425', 'en', 1, 'https://ror.org/04q6rd425 Japan Atomic Industrial Forum, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŽŸå­åŠ›ē”£ę„­å”ä¼š'),
(113983, 'https://ror.org/04q6w3b25', 'en', 1, 'https://ror.org/04q6w3b25 Society of Automotive Engineers of Japan, Inc. å…¬ē›Šē¤¾å›£ę³•äŗŗč‡Ŗå‹•č»ŠęŠ€č”“ä¼š'),
(113984, '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)'),
(113985, 'https://ror.org/04q88r129', 'es', 1, 'https://ror.org/04q88r129 Instituto de GeofĆ­sica'),
(113986, 'https://ror.org/04q8yne12', 'en', 1, 'https://ror.org/04q8yne12 Navoi State University Navoiy davlat universiteti'),
(113987, 'https://ror.org/04q970a97', 'en', 1, 'https://ror.org/04q970a97 Vladivostok State University ВлаГивостокский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(113988, 'https://ror.org/04qb2qm38', 'fr', 1, 'https://ror.org/04qb2qm38 UniversitƩ Paris-PanthƩon-Assas'),
(113989, 'https://ror.org/04qbh3z77', 'en', 1, 'https://ror.org/04qbh3z77 Japan International Cooperation System äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å›½éš›å”åŠ›ć‚·ć‚¹ćƒ†ćƒ '),
(113990, 'https://ror.org/04qc94066', 'pt', 1, 'https://ror.org/04qc94066 Centro de Investigação em Ciências Geo-Espaciais'),
(113991, 'https://ror.org/04qdeja70', 'pt', 1, 'https://ror.org/04qdeja70 Associação Portuguesa de Estudantes de Agricultura'),
(113992, 'https://ror.org/04qdrz239', 'en', 1, 'https://ror.org/04qdrz239 DeSci Foundation'),
(113993, 'https://ror.org/04qghrn10', 'en', 1, 'https://ror.org/04qghrn10 Institut für Kartografie und Geoinformation Institute of Cartography and Geoinformation');
INSERT INTO `rors` VALUES
(113994, 'https://ror.org/04qgk0f68', 'en', 1, 'https://ror.org/04qgk0f68 NHK Engineering System, Inc. äø€čˆ¬č²”å›£ę³•äŗŗNHKć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ć‚·ć‚¹ćƒ†ćƒ '),
(113995, 'https://ror.org/04qgwd705', 'pt', 1, 'https://ror.org/04qgwd705 Associação Fibrenamics'),
(113996, 'https://ror.org/04qhdzv22', 'en', 1, 'https://ror.org/04qhdzv22 Agriculture University, Jodhpur'),
(113997, 'https://ror.org/04qjbkj27', 'ca', 1, 'https://ror.org/04qjbkj27 Gobierno de las Islas Baleares Govern de les Illes Balears'),
(113998, 'https://ror.org/04qvk8036', 'en', 1, 'https://ror.org/04qvk8036 GENESIS Hospital ĪšĪ»Ī¹Ī½Ī¹ĪŗĪ®Ļ‚ Ī“Ī•ĪĪ•Ī£Ī™Ī£'),
(113999, 'https://ror.org/04qw24q55', 'en', 1, 'https://ror.org/04qw24q55 Wageningen University & Research Wageningen University & Research centre'),
(114000, 'https://ror.org/04qxnmv42', 'en', 1, 'https://ror.org/04qxnmv42 Palacký University Olomouc Univerzita Palackého Univerzita Palackého v Olomouci'),
(114001, 'https://ror.org/04qymaz42', 'en', 1, 'https://ror.org/04qymaz42 Space Systems Command'),
(114002, 'https://ror.org/04qz4qy85', 'fr', 1, 'https://ror.org/04qz4qy85 Laboratoire de Recherche Historique RhƓne-Alpes'),
(114003, 'https://ror.org/04r3kq386', 'en', 1, 'https://ror.org/04r3kq386 Uniformed Services University of the Health Sciences'),
(114004, 'https://ror.org/04r3nef08', 'en', 1, 'https://ror.org/04r3nef08 State University of Medical and Applied Sciences'),
(114005, 'https://ror.org/04r478t60', 'de', 1, 'https://ror.org/04r478t60 Reha Zentrum Münster Betriebs GmbH'),
(114006, 'https://ror.org/04r6ndt39', 'es', 1, 'https://ror.org/04r6ndt39 FUNDECYT PCTEX'),
(114007, 'https://ror.org/04r8cg910', 'pt', 1, 'https://ror.org/04r8cg910 Sociedade Portuguesa de Cirurgia Cardƭaca TorƔcica e Vascular'),
(114008, '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'),
(114009, 'https://ror.org/04r9s9m52', 'en', 1, 'https://ror.org/04r9s9m52 United States Central Command'),
(114010, 'https://ror.org/04raf6v53', 'en', 1, 'https://ror.org/04raf6v53 Colorado School of Mines'),
(114011, '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'),
(114012, '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Ʃ'),
(114013, 'https://ror.org/04rdz6f84', 'pt', 1, 'https://ror.org/04rdz6f84 Confederação do Comércio e Serviços de Portugal'),
(114014, 'https://ror.org/04renyd42', 'en', 1, 'https://ror.org/04renyd42 The University of Shimane Junior College å³¶ę ¹ēœŒē«‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(114015, 'https://ror.org/04rfh4r06', 'es', 1, 'https://ror.org/04rfh4r06 Armada de Chile Armada do Chile Chilean Navy Marine chilienne'),
(114016, 'https://ror.org/04rh0vg05', 'en', 1, 'https://ror.org/04rh0vg05 Littoral Power Systems, Inc., Littoral Power Systems, Inc. (United States)'),
(114017, 'https://ror.org/04rk2jc83', 'pt', 1, 'https://ror.org/04rk2jc83 União da Floresta Mediterrânica'),
(114018, 'https://ror.org/04rkbtw40', 'en', 1, 'https://ror.org/04rkbtw40 Institute of Health Management Research Bangalore'),
(114019, 'https://ror.org/04rkh0096', 'fr', 0, 'https://ror.org/04rkh0096 Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles'),
(114020, 'https://ror.org/04rm24644', 'en', 1, 'https://ror.org/04rm24644 Naval Aerospace Medical Institute'),
(114021, 'https://ror.org/04rmr1278', 'en', 1, 'https://ror.org/04rmr1278 Research Institute for Advancement of Living Standards å…¬ē›Šč²”å›£ę³•äŗŗé€£åˆē·åˆē”Ÿę“»é–‹ē™ŗē ”ē©¶ę‰€'),
(114022, 'https://ror.org/04rnfrn04', 'en', 1, 'https://ror.org/04rnfrn04 Center for Psychobiology and Behavioral Medicine Institut für Psychobiologie und Verhaltensmedizin'),
(114023, 'https://ror.org/04rnn2c07', 'en', 1, 'https://ror.org/04rnn2c07 Dr. Subhash University'),
(114024, 'https://ror.org/04rq5mt64', 'en', 1, 'https://ror.org/04rq5mt64 University of Maryland, Baltimore'),
(114025, 'https://ror.org/04rqt6703', 'en', 1, 'https://ror.org/04rqt6703 Precision Health Research, Singapore'),
(114026, 'https://ror.org/04rr75245', 'en', 1, 'https://ror.org/04rr75245 ERN TRANSPLANT-CHILD'),
(114027, 'https://ror.org/04rsfzy06', 'no_lang_code', 1, 'https://ror.org/04rsfzy06 ISQe (Portugal), ISQe, S.A.'),
(114028, 'https://ror.org/04rswrd78', 'en', 1, 'https://ror.org/04rswrd78 Iowa State University Universidad Estatal de Iowa UniversitĆ© d''Ɖtat de l''Iowa'),
(114029, 'https://ror.org/04s1m4564', 'en', 1, 'https://ror.org/04s1m4564 AuScope'),
(114030, 'https://ror.org/04s42pp05', 'pt', 1, 'https://ror.org/04s42pp05 Sociedade Portuguesa para o Estudo da SaĆŗde Mental'),
(114031, 'https://ror.org/04sbq4036', 'fr', 1, 'https://ror.org/04sbq4036 MusƩe national d''archƩologie, d''historie et d''art'),
(114032, 'https://ror.org/04ses8e30', 'en', 1, 'https://ror.org/04ses8e30 Institut für virtuelle Produktion Institute of Virtual Manufacturing'),
(114033, 'https://ror.org/04sff9874', 'pt', 1, 'https://ror.org/04sff9874 CĆ¢mara Municipal de Sever do Vouga'),
(114034, 'https://ror.org/04sg8wn78', 'no_lang_code', 1, 'https://ror.org/04sg8wn78 AEROMEC, AEROMEC (Portugal)'),
(114035, 'https://ror.org/04shcr998', 'en', 1, 'https://ror.org/04shcr998 Shenzhen Municipal Human Resources and Social Security Bureau ę·±åœ³åø‚äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœå±€'),
(114036, 'https://ror.org/04shwth06', 'en', 1, 'https://ror.org/04shwth06 Centre Universitaire de Maghnia University Centre of Maghnia Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł…ŲŗŁ†ŁŠŲ©'),
(114037, 'https://ror.org/04sjchr03', 'fr', 1, 'https://ror.org/04sjchr03 Laval University UniversitƩ Laval'),
(114038, 'https://ror.org/04sk0bj73', 'no_lang_code', 1, 'https://ror.org/04sk0bj73 Fresenius Medical Care (Germany)'),
(114039, 'https://ror.org/04skveq52', 'pt', 1, 'https://ror.org/04skveq52 GeoBioTec - GeobiociĆŖncias Geotecnologias e Geo-engenharias'),
(114040, 'https://ror.org/04sm24z48', 'en', 1, 'https://ror.org/04sm24z48 Institut für Biogeochemie und Schadstoffdynamik Institute of Biogeochemistry and Pollutant Dynamics'),
(114041, 'https://ror.org/04srehp09', 'en', 1, 'https://ror.org/04srehp09 Pakistan Science Foundation'),
(114042, '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'),
(114043, 'https://ror.org/04sv2e820', 'en', 1, 'https://ror.org/04sv2e820 VeleučiliŔte u Šibeniku Šibenik University of Applied Sciences'),
(114044, 'https://ror.org/04swqsn39', 'en', 1, 'https://ror.org/04swqsn39 The Calamity Science Institute äø€čˆ¬č²”å›£ę³•äŗŗē½å®³ē§‘å­¦ē ”ē©¶ę‰€'),
(114045, 'https://ror.org/04swvgk67', 'hu', 1, 'https://ror.org/04swvgk67 Budapest Neutron Centre'),
(114046, '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'),
(114047, 'https://ror.org/04t2mbr50', 'en', 1, 'https://ror.org/04t2mbr50 S. G. Balekundri Institute of Technology Belagavi'),
(114048, 'https://ror.org/04t3sm733', 'fr', 1, 'https://ror.org/04t3sm733 Centre Energie Environnement ProcĆ©dĆ©s, Mines Paris, UniversitĆ© PSL, Centre Ɖnergie Environnement ProcĆ©dĆ©s (CEEP) Mines Paris, PSL University, Centre for Energy, Environment & Processes (CEEP)'),
(114049, 'https://ror.org/04t46h467', 'no_lang_code', 1, 'https://ror.org/04t46h467 Maldral Science, Maldral Scientia (Portugal), Maldral Scientia, S.A.'),
(114050, 'https://ror.org/04t512h04', 'en', 1, 'https://ror.org/04t512h04 Swedish National Space Agency'),
(114051, 'https://ror.org/04t5phd24', 'en', 1, 'https://ror.org/04t5phd24 Fachhochschule Südwestfalen South Westphalia University of Applied Sciences'),
(114052, 'https://ror.org/04t6b9824', 'pt', 1, 'https://ror.org/04t6b9824 Arquidiocese de Braga'),
(114053, 'https://ror.org/04t7c7a05', 'en', 1, 'https://ror.org/04t7c7a05 Dr. D. Y. Patil B-School'),
(114054, 'https://ror.org/04t89f389', 'fr', 1, 'https://ror.org/04t89f389'),
(114055, 'https://ror.org/04t9sje43', 'en', 1, 'https://ror.org/04t9sje43 Japanese Heart Rhythm Society ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬äøę•“č„ˆåæƒé›»å­¦ä¼š'),
(114056, 'https://ror.org/04tb38061', 'no_lang_code', 1, 'https://ror.org/04tb38061 LeYa, LeYa (Portugal)'),
(114057, 'https://ror.org/04td3ys19', 'en', 1, 'https://ror.org/04td3ys19 Quadram Institute'),
(114058, 'https://ror.org/04tdjhc40', 'pt', 1, 'https://ror.org/04tdjhc40 Sociedade Portuguesa de Esclerose MĆŗltipla'),
(114059, 'https://ror.org/04teye511', 'es', 1, 'https://ror.org/04teye511 Pontifical Catholic University of Chile Pontificia Universidad Católica de Chile'),
(114060, 'https://ror.org/04tgr1802', 'en', 1, 'https://ror.org/04tgr1802 Functional Genomics Center Zurich'),
(114061, 'https://ror.org/04tgrx733', 'en', 1, 'https://ror.org/04tgrx733 Gazipur Agricultural University ą¦—ą¦¾ą¦œą§€ą¦Ŗą§ą¦° ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą§Ÿ'),
(114062, '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'),
(114063, 'https://ror.org/04tje1v24', 'es', 1, 'https://ror.org/04tje1v24 Centro de Estudios e Investigaciones Laborales'),
(114064, 'https://ror.org/04tjt3j49', 'en', 1, 'https://ror.org/04tjt3j49 National Institute of Biologicals'),
(114065, 'https://ror.org/04tmh0n51', 'fr', 1, 'https://ror.org/04tmh0n51 Institut FranƧais de l''Ɖducation'),
(114066, 'https://ror.org/04tqen686', 'en', 1, 'https://ror.org/04tqen686 Japan Productivity Center å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿē”£ę€§ęœ¬éƒØ'),
(114067, 'https://ror.org/04tsk2644', 'en', 1, 'https://ror.org/04tsk2644 Ruhr University Bochum Ruhr-UniversitƤt Bochum'),
(114068, 'https://ror.org/04tt6wm54', 'es', 1, 'https://ror.org/04tt6wm54 Centro de Investigación y Conservación Marina'),
(114069, 'https://ror.org/04ttwk906', 'en', 1, 'https://ror.org/04ttwk906 Ships of Exploration and Discovery Research'),
(114070, 'https://ror.org/04txrm941', 'en', 1, 'https://ror.org/04txrm941 Japanese Association of Medical Technologists äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡ØåŗŠč”›ē”Ÿę¤œęŸ»ęŠ€åø«ä¼š'),
(114071, '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'),
(114072, 'https://ror.org/04tz4vh74', 'en', 1, 'https://ror.org/04tz4vh74 University Ahmed Zabana of Relizane Ų¬Ų§Ł…Ų¹Ų© Ų£Ų­Ł…ŲÆ زبانة - ŲŗŁ„ŁŠŲ²Ų§Ł†'),
(114073, 'https://ror.org/04v022284', 'en', 1, 'https://ror.org/04v022284 Osun State College of Education, Ila-Orangun'),
(114074, 'https://ror.org/04v27rh38', 'es', 1, 'https://ror.org/04v27rh38 Asociación para la Conservación y el Desarrollo Sostenible Sallqa Perú'),
(114075, 'https://ror.org/04v2q5g49', 'en', 1, 'https://ror.org/04v2q5g49 Lisbon Institute of Global Mental Health'),
(114076, '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'),
(114077, 'https://ror.org/04v5axh10', 'en', 1, 'https://ror.org/04v5axh10 IRYO Sosei University åŒ»ē™‚å‰µē”Ÿå¤§å­¦'),
(114078, 'https://ror.org/04v7xgm25', 'en', 1, 'https://ror.org/04v7xgm25 Dalian Science and Technology Bureau å¤§čæžåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(114079, 'https://ror.org/04v90xq82', 'en', 1, 'https://ror.org/04v90xq82 Federal Polytechnic Orogun'),
(114080, 'https://ror.org/04v9m3h35', 'en', 1, 'https://ror.org/04v9m3h35 ARC Centre of Excellence for All-sky Astrophysics'),
(114081, 'https://ror.org/04vc81p87', 'en', 1, 'https://ror.org/04vc81p87 University of Sannio UniversitĆ  degli Studi del Sannio'),
(114082, 'https://ror.org/04vd4xz14', 'en', 1, 'https://ror.org/04vd4xz14 Shizuoka Prefectural Government é™å²”ēœŒåŗ'),
(114083, 'https://ror.org/04vfs2w97', 'fr', 1, 'https://ror.org/04vfs2w97 University of Lorraine UniversitƩ de Lorraine'),
(114084, 'https://ror.org/04vg4mg18', 'de', 1, 'https://ror.org/04vg4mg18 Heinrich-Barth-Institut'),
(114085, 'https://ror.org/04vgqjj36', 'en', 1, 'https://ror.org/04vgqjj36 Sahlgrenska Universitetssjukhuset Sahlgrenska University Hospital'),
(114086, 'https://ror.org/04vjq8z95', 'de', 1, 'https://ror.org/04vjq8z95 Museum Burg Golling'),
(114087, 'https://ror.org/04vm13460', 'pt', 1, 'https://ror.org/04vm13460 CĆ¢mara Municipal de Braga'),
(114088, 'https://ror.org/04vmkfw91', 'en', 1, 'https://ror.org/04vmkfw91 The Fluoromatics Lab'),
(114089, 'https://ror.org/04vtb5f91', 'en', 1, 'https://ror.org/04vtb5f91 Ibaraki Prefectural Environmental Radiation Monitoring Center čŒØåŸŽēœŒē’°å¢ƒę”¾å°„ē·šē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(114090, 'https://ror.org/04vtp9n41', 'en', 1, 'https://ror.org/04vtp9n41 Southern Institute of Ecology Viện Sinh thĆ”i hį»c Miền Nam'),
(114091, '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'),
(114092, 'https://ror.org/04vv8tv34', 'en', 1, 'https://ror.org/04vv8tv34 Hasuda Hospital åŒ»ē™‚ę³•äŗŗé”•ę­£ä¼šč“®ē”°ē—…é™¢'),
(114093, 'https://ror.org/04vxejn53', 'en', 1, 'https://ror.org/04vxejn53 Fukui Prefectural Sea Farming Center ē¦äŗ•ēœŒę ½åŸ¹ę¼ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(114094, 'https://ror.org/04vxq1969', 'en', 1, 'https://ror.org/04vxq1969 Naval Medical Center Portsmouth'),
(114095, 'https://ror.org/04vyex278', 'en', 1, 'https://ror.org/04vyex278 Ministry of Urban Development'),
(114096, 'https://ror.org/04w0rgq42', 'eu', 1, 'https://ror.org/04w0rgq42 LEA ARTIBAI Ikastetxea'),
(114097, 'https://ror.org/04w12t635', 'en', 1, 'https://ror.org/04w12t635 Mokhuri Oriental Medicine Hospital ėŖØģ»¤ė¦¬ķ•œė°©ė³‘ģ›'),
(114098, 'https://ror.org/04w2ds943', 'en', 1, 'https://ror.org/04w2ds943 Institut für Elektrische Energieübertragung und Hochspannungstechnik Power Systems and High Voltage Laboratory'),
(114099, 'https://ror.org/04w3vhe37', 'en', 1, 'https://ror.org/04w3vhe37 Simmaron Research'),
(114100, 'https://ror.org/04w5h0820', 'en', 1, 'https://ror.org/04w5h0820 Japan Farriery Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č£…å‰Šč¹„å”ä¼š'),
(114101, 'https://ror.org/04w5vxn39', 'pt', 1, 'https://ror.org/04w5vxn39 Parque Tecnológico de Ɠbidos'),
(114102, 'https://ror.org/04w6pnc49', 'en', 1, 'https://ror.org/04w6pnc49 Hungarian Research Network Magyar KutatÔsi HÔlózat'),
(114103, 'https://ror.org/04w6y2z35', 'en', 1, 'https://ror.org/04w6y2z35 Sydney Local Health District'),
(114104, 'https://ror.org/04w8f9k94', 'fr', 1, 'https://ror.org/04w8f9k94 Maison des Sciences de l’Homme et de lā€˜Environnement Claude Nicolas Ledoux'),
(114105, 'https://ror.org/04w8z7f34', 'en', 1, 'https://ror.org/04w8z7f34 National Research Nuclear University MEPhI ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃŠ“ŠµŃ€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ МИФИ'),
(114106, 'https://ror.org/04w8znj39', 'no_lang_code', 1, 'https://ror.org/04w8znj39 Cofina SGPS (Portugal), Cofina SGPS, S.A.'),
(114107, 'https://ror.org/04w9pag91', 'en', 1, 'https://ror.org/04w9pag91 Shimadzu Science Foundation å…¬ē›Šč²”å›£ę³•äŗŗå³¶ę“„ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(114108, 'https://ror.org/04w9xep10', 'en', 1, 'https://ror.org/04w9xep10 Kyoto Min-iren Chuo Hospital å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½äæå„ä¼šäŗ¬éƒ½ę°‘åŒ»é€£äø­å¤®ē—…é™¢'),
(114109, 'https://ror.org/04wc4pz32', 'en', 1, 'https://ror.org/04wc4pz32 International Patient Organisation for Primary Immunodeficiencies'),
(114110, 'https://ror.org/04wdpa646', 'en', 1, 'https://ror.org/04wdpa646 Forschungsinstitut für Mathematik Institute for Mathematical Research'),
(114111, 'https://ror.org/04wew1t29', 'it', 1, 'https://ror.org/04wew1t29 Agenzia Regionale per la Protezione dell''Ambiente della Basilicata'),
(114112, 'https://ror.org/04wffgt70', 'pt', 1, 'https://ror.org/04wffgt70 State University of Campinas (UNICAMP) Universidade Estadual de Campinas (UNICAMP)'),
(114113, 'https://ror.org/04wkkwk59', 'en', 1, 'https://ror.org/04wkkwk59 Institute of Mathematics National Academy of Science of Tajikistan Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ°Ń‚ŠµŠ¼Š°Ń‚ŠøŠŗŠø ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ АкаГемии ŠŠ°ŃƒŠŗ ТаГжикистана'),
(114114, 'https://ror.org/04wn6w972', 'de', 1, 'https://ror.org/04wn6w972 Förderverein Institut für Medizintechnik Dresden'),
(114115, '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'),
(114116, 'https://ror.org/04wpw8x71', 'pt', 1, 'https://ror.org/04wpw8x71 Sociedade de Ɖtica Ambiental'),
(114117, 'https://ror.org/04wqh1h93', 'en', 1, 'https://ror.org/04wqh1h93 Gandaki Medical College'),
(114118, 'https://ror.org/04wr3ta36', 'es', 1, 'https://ror.org/04wr3ta36 Universidad de Ciencias MƩdicas de Matanzas'),
(114119, 'https://ror.org/04wrhg795', 'en', 1, 'https://ror.org/04wrhg795 Indiana University Fort Wayne'),
(114120, 'https://ror.org/04ww2n633', 'en', 1, 'https://ror.org/04ww2n633 Fushun Seismological Bureau ęŠšé”ŗåø‚åœ°éœ‡å±€'),
(114121, 'https://ror.org/04ww8nw62', 'en', 1, 'https://ror.org/04ww8nw62 China Science and Technology Publishing & Media äø­å›½ē§‘ęŠ€å‡ŗē‰ˆä¼ åŖ’č‚”ä»½ęœ‰é™å…¬åø'),
(114122, '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'),
(114123, 'https://ror.org/04x02q560', 'en', 1, 'https://ror.org/04x02q560 Bochum University of Applied Sciences Hochschule Bochum'),
(114124, 'https://ror.org/04x10nc27', 'fr', 1, 'https://ror.org/04x10nc27 GloNeuro'),
(114125, '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)'),
(114126, 'https://ror.org/04x2ddb07', 'de', 1, 'https://ror.org/04x2ddb07 ERKNet'),
(114127, 'https://ror.org/04x3ta798', 'en', 1, 'https://ror.org/04x3ta798 ERN EURO-NMD'),
(114128, 'https://ror.org/04x4znw66', 'en', 1, 'https://ror.org/04x4znw66 Pierre Auger Observatory'),
(114129, 'https://ror.org/04x6yts59', 'en', 1, 'https://ror.org/04x6yts59 United Lutheran Seminary'),
(114130, 'https://ror.org/04x763b43', 'no_lang_code', 1, 'https://ror.org/04x763b43 Fresenius Kabi Pharma Portugal (Portugal)'),
(114131, 'https://ror.org/04x9a0q46', 'fr', 1, 'https://ror.org/04x9a0q46 Triangle. Action, discourses, economic and political thought'),
(114132, 'https://ror.org/04x9p9g72', 'en', 1, 'https://ror.org/04x9p9g72 Satellite Application Center for Ecology and Environment ē”Ÿę€ēŽÆå¢ƒéƒØå«ę˜ŸēŽÆå¢ƒåŗ”ē”Øäø­åæƒ'),
(114133, 'https://ror.org/04xb2d077', 'pt', 1, 'https://ror.org/04xb2d077 Instituto de Estudos Medievais'),
(114134, 'https://ror.org/04xcb6q52', 'pt', 1, 'https://ror.org/04xcb6q52 Escola de Pós-Graduação em Saúde e Gestão'),
(114135, 'https://ror.org/04xcmds50', 'en', 1, 'https://ror.org/04xcmds50 Lifecare Hospital'),
(114136, 'https://ror.org/04xdx3z73', 'en', 1, 'https://ror.org/04xdx3z73 Center for Media Research - Nepal'),
(114137, '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'),
(114138, 'https://ror.org/04xf77m96', 'pt', 1, 'https://ror.org/04xf77m96 Fundação António Quadros Cultura e Pensamento'),
(114139, 'https://ror.org/04xfre028', 'en', 1, 'https://ror.org/04xfre028 Group on Earth Observations'),
(114140, 'https://ror.org/04xftk194', 'en', 1, 'https://ror.org/04xftk194 De La Salle University'),
(114141, 'https://ror.org/04xfxym47', 'en', 1, 'https://ror.org/04xfxym47 Finlands LƤkarfƶrbund Finnish Medical Association Suomen LƤƤkƤriliitto'),
(114142, 'https://ror.org/04xgzv028', 'en', 1, 'https://ror.org/04xgzv028 Cooperative Institute for Great Lakes Research'),
(114143, 'https://ror.org/04xhba395', 'no_lang_code', 1, 'https://ror.org/04xhba395 Formasau Formação e Saúde (Portugal), Formasau Training and Health Limited'),
(114144, 'https://ror.org/04xk08052', 'it', 1, 'https://ror.org/04xk08052 Agenzia Regionale per la Protezione dell''Ambiente della Sardegna'),
(114145, 'https://ror.org/04xkqms46', 'en', 1, 'https://ror.org/04xkqms46 European Multidisciplinary Seafloor and water column Observatory'),
(114146, 'https://ror.org/04xm4jh96', 'it', 1, 'https://ror.org/04xm4jh96 Agenzia Regionale per la Protezione ambientale Molise'),
(114147, 'https://ror.org/04xn08160', 'en', 1, 'https://ror.org/04xn08160 Tatra National Park Tatrzański Park Narodowy'),
(114148, 'https://ror.org/04xnb3798', 'es', 1, 'https://ror.org/04xnb3798 Sinergias Alianzas EstratƩgicas para la Salud y el Desarrollo Social'),
(114149, 'https://ror.org/04xr5we72', 'es', 1, 'https://ror.org/04xr5we72 Universidad CientĆ­fica del Sur'),
(114150, 'https://ror.org/04xr90796', 'no_lang_code', 1, 'https://ror.org/04xr90796 Mulher Avestruz ProduƧƵes e Eventos (Portugal), Ostrich Woman Productions and Events'),
(114151, 'https://ror.org/04xrh1s08', 'en', 1, 'https://ror.org/04xrh1s08 Saint Gabriel College'),
(114152, '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'),
(114153, 'https://ror.org/04xtznh26', 'en', 1, 'https://ror.org/04xtznh26 Bishkek Academy of Finance and Economics Š‘ŠøŃˆŠŗŠµŠŗŃŠŗŠ°Ń Финансово – Š­ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(114154, 'https://ror.org/04xwh9695', 'en', 1, 'https://ror.org/04xwh9695 Ionosphere Institute Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š˜Š¾Š½Š¾ŃŃ„ŠµŃ€Ń‹'),
(114155, 'https://ror.org/04xwksx09', 'en', 1, 'https://ror.org/04xwksx09 Chaoyang University of Technology'),
(114156, 'https://ror.org/04xxc1193', 'en', 1, 'https://ror.org/04xxc1193 Zimbabwe Library Association (ZimLA)'),
(114157, 'https://ror.org/04y0q2a96', 'en', 1, 'https://ror.org/04y0q2a96 Zimbabwe University Libraries Consortium'),
(114158, 'https://ror.org/04y2jhf44', 'en', 1, 'https://ror.org/04y2jhf44 Nissho å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę¶ˆé˜²å”ä¼š'),
(114159, 'https://ror.org/04y31xb63', 'en', 1, 'https://ror.org/04y31xb63 Center for Better Living äø€čˆ¬č²”å›£ę³•äŗŗćƒ™ć‚æćƒ¼ćƒŖćƒ“ćƒ³ć‚°'),
(114160, 'https://ror.org/04y5gfw04', 'pt', 1, 'https://ror.org/04y5gfw04 Sociedade das Ciências Médicas de Lisboa'),
(114161, 'https://ror.org/04y6n3q27', 'en', 1, 'https://ror.org/04y6n3q27 Institute for High Energy Physics'),
(114162, 'https://ror.org/04y9a5y12', 'en', 1, 'https://ror.org/04y9a5y12 Civil Aviation Authority of Singapore'),
(114163, 'https://ror.org/04ya1kq07', 'fr', 1, 'https://ror.org/04ya1kq07 QuƩbec-OcƩan'),
(114164, 'https://ror.org/04ydm6t76', 'en', 1, 'https://ror.org/04ydm6t76 Malcolm Grow Medical Clinic'),
(114165, 'https://ror.org/04ydnv789', 'en', 1, 'https://ror.org/04ydnv789 Vancouver Foundation'),
(114166, 'https://ror.org/04yev3f93', 'en', 1, 'https://ror.org/04yev3f93 International Space Centre'),
(114167, 'https://ror.org/04yfmyg44', 'pt', 1, 'https://ror.org/04yfmyg44 Instituto de Comunicação da Nova'),
(114168, 'https://ror.org/04yggzp50', 'en', 1, 'https://ror.org/04yggzp50 Space Training and Readiness Command'),
(114169, 'https://ror.org/04yh84372', 'en', 1, 'https://ror.org/04yh84372 Nexcelom, Nexcelom (United States)'),
(114170, 'https://ror.org/04yhfw911', 'en', 1, 'https://ror.org/04yhfw911 Sabratha University'),
(114171, 'https://ror.org/04yk3xm91', 'en', 1, 'https://ror.org/04yk3xm91 National Examinations Council'),
(114172, 'https://ror.org/04ykvv917', 'fr', 1, 'https://ror.org/04ykvv917 ESCA Ecole de Management'),
(114173, 'https://ror.org/04ykwra43', 'en', 1, 'https://ror.org/04ykwra43 First Capital University of Bangladesh ą¦«ą¦¾ą¦°ą§ą¦øą§ą¦Ÿ ą¦•ą§ą¦Æą¦¾ą¦Ŗą¦æą¦Ÿą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব বাংলাদেশ'),
(114174, 'https://ror.org/04yn30r61', 'en', 1, 'https://ror.org/04yn30r61 A P J Abdul Kalam Technological University'),
(114175, 'https://ror.org/04yrt0z65', 'en', 1, 'https://ror.org/04yrt0z65 The Institute of Administrative Information Systems äø€čˆ¬ē¤¾å›£ę³•äŗŗč”Œę”æęƒ…å ±ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę‰€'),
(114176, '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'),
(114177, '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Ā» Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ науково-технічного ŠæŠ¾Ń‚ŠµŠ½Ń†Ń–Š°Š»Ńƒ та історії науки ім. Š“. М. Доброва ŠŠŠ України»'),
(114178, 'https://ror.org/04ysp6769', 'en', 1, 'https://ror.org/04ysp6769 Patna University पटना ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ পটনা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ਪਟਨਾ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(114179, 'https://ror.org/04ytn6v31', 'pt', 1, 'https://ror.org/04ytn6v31 CĆ¢mara Municipal de Mafra'),
(114180, 'https://ror.org/04yvax419', 'fr', 1, 'https://ror.org/04yvax419 Centre hospitalier universitaire d''OrlƩans'),
(114181, 'https://ror.org/04yve5w51', 'en', 1, 'https://ror.org/04yve5w51 All India Institute of Medical Sciences Gorakhpur'),
(114182, 'https://ror.org/04yx2rq03', 'fr', 1, 'https://ror.org/04yx2rq03 Centre Thucydide - Analyse et Recherche en Relations Internationales'),
(114183, 'https://ror.org/04yyk0258', 'en', 1, 'https://ror.org/04yyk0258 Naga College Foundation, Inc.'),
(114184, 'https://ror.org/04yzd7z34', 'en', 1, 'https://ror.org/04yzd7z34 Fire and Emergency New Zealand'),
(114185, 'https://ror.org/04yznqr36', 'fr', 1, 'https://ror.org/04yznqr36 Jean Monnet University UniversitƩ Jean Monnet'),
(114186, 'https://ror.org/04z01sb73', 'en', 1, 'https://ror.org/04z01sb73 Foraminifera.eu Lab'),
(114187, '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'),
(114188, 'https://ror.org/04z22qz54', 'fr', 1, 'https://ror.org/04z22qz54 Institut des Sciences de l''Information et de leurs Interactions'),
(114189, 'https://ror.org/04z4kmw33', 'en', 1, 'https://ror.org/04z4kmw33 Melbourne Health'),
(114190, 'https://ror.org/04z553m34', 'no_lang_code', 1, 'https://ror.org/04z553m34 UltraWise (Portugal)'),
(114191, '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'),
(114192, 'https://ror.org/04z60tq39', 'tr', 1, 'https://ror.org/04z60tq39 Bezmialem Vakıf University Bezmiâlem Vakıf Üniversitesi'),
(114193, 'https://ror.org/04z7k2h16', 'pt', 1, 'https://ror.org/04z7k2h16 Açores Direção Regional da Educação'),
(114194, 'https://ror.org/04z8jg394', 'en', 1, 'https://ror.org/04z8jg394 GFZ Helmholtz Centre for Geosciences GFZ Helmholtz-Zentrum für Geoforschung'),
(114195, 'https://ror.org/04za5zm41', 'en', 1, 'https://ror.org/04za5zm41 University Hospital Carl Gustav Carus UniversitƤtsklinikum Carl Gustav Carus Dresden'),
(114196, 'https://ror.org/04zbcdm10', 'en', 1, 'https://ror.org/04zbcdm10 The Zoological Society of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©å­¦ä¼š'),
(114197, 'https://ror.org/04ze00805', 'en', 1, 'https://ror.org/04ze00805 Konya City Hospital Konya Şehir Hastanesi'),
(114198, 'https://ror.org/04zee8776', 'en', 1, 'https://ror.org/04zee8776 International Consortium on Landslides ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗå›½éš›ę–œę–œé¢ē½å®³ē ”ē©¶ę©Ÿę§‹'),
(114199, 'https://ror.org/04zerf618', 'en', 1, 'https://ror.org/04zerf618 European Forest Institute'),
(114200, 'https://ror.org/04zf66g39', 'en', 1, 'https://ror.org/04zf66g39 Sumgayit State University Sumqayıt Dƶvlət Universiteti Š”ŃƒŠ¼Š³Š°ŠøŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114201, 'https://ror.org/04zfaj906', 'en', 1, 'https://ror.org/04zfaj906 Catalan Institute for Water Research Instituto Catalan de Investigacion del Agua'),
(114202, 'https://ror.org/04zj3ra44', 'en', 1, 'https://ror.org/04zj3ra44 Westmead Institute for Medical Research'),
(114203, 'https://ror.org/04zjebc86', 'en', 1, 'https://ror.org/04zjebc86 Bangabasi Morning College'),
(114204, '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'),
(114205, 'https://ror.org/04zmssz18', 'fr', 1, 'https://ror.org/04zmssz18 Ɖcole Normale SupĆ©rieure de Lyon'),
(114206, 'https://ror.org/0500kmp11', 'de', 1, 'https://ror.org/0500kmp11 Salzburger Landeskliniken'),
(114207, 'https://ror.org/05011v920', 'en', 1, 'https://ror.org/05011v920 Shibata Gakuen University Junior College ęŸ“ē”°å­¦åœ’å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(114208, 'https://ror.org/05015xk23', 'pt', 1, 'https://ror.org/05015xk23 CĆ¢mara Municipal de Matosinhos'),
(114209, 'https://ror.org/0501pvx50', 'pt', 1, 'https://ror.org/0501pvx50 Biblioteca Victor de SĆ”'),
(114210, 'https://ror.org/05037p730', 'en', 1, 'https://ror.org/05037p730 Economic Scientific Research Institute İqtisadi Elmi Tədqiqat İnstitutu'),
(114211, 'https://ror.org/0503rna79', 'en', 1, 'https://ror.org/0503rna79 National Surimi Manufacturers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ć™ć‚Ščŗ«å”ä¼š'),
(114212, 'https://ror.org/05071e455', 'en', 1, 'https://ror.org/05071e455 Japan Swimming Federation å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę°“ę³³é€£ē›Ÿ'),
(114213, 'https://ror.org/05083wh51', 'en', 1, 'https://ror.org/05083wh51 United States Pacific Fleet'),
(114214, 'https://ror.org/0508kew31', 'en', 1, 'https://ror.org/0508kew31 Department of Water and Environmental Regulation'),
(114215, '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'),
(114216, 'https://ror.org/050cc1579', 'es', 1, 'https://ror.org/050cc1579 Consejería de Inclusión Social, Juventud, Familias e Igualdad'),
(114217, 'https://ror.org/050cgqa20', 'en', 1, 'https://ror.org/050cgqa20 Center for Emergency Situations and Disaster Risk Reduction'),
(114218, 'https://ror.org/050et2s91', 'en', 1, 'https://ror.org/050et2s91 Statistics Poland'),
(114219, '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'),
(114220, 'https://ror.org/050gjdz33', 'en', 1, 'https://ror.org/050gjdz33 Federal Polytechnic Ohodo'),
(114221, 'https://ror.org/050j5t898', 'pt', 1, 'https://ror.org/050j5t898 Republica Portuguesa Direção-Geral do Livro dos Arquivos e das Bibliotecas'),
(114222, 'https://ror.org/050jcm728', 'fr', 1, 'https://ror.org/050jcm728 Institut National des Sciences MathƩmatiques et de leurs Interactions'),
(114223, 'https://ror.org/050kvkr25', 'en', 1, 'https://ror.org/050kvkr25 Ebara Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗčåŽŸåŒ»åø«ä¼š'),
(114224, 'https://ror.org/050mzen17', 'no_lang_code', 1, 'https://ror.org/050mzen17 Manitoba Portugal'),
(114225, 'https://ror.org/050p6gz73', 'en', 1, 'https://ror.org/050p6gz73 Indian Association for the Cultivation of Science ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦…ą§ą¦Æą¦¾ą¦øą§‹ą¦øą¦æą¦Æą¦¼ą§‡ą¦¶ą¦Ø ফর ą¦¦ą§ą¦Æ ą¦•ą¦¾ą¦²ą¦Ÿą¦æą¦­ą§‡ą¦¶ą¦Ø অফ ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą®‡ą®ØąÆą®¤ą®æą®Æ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®µą®³ą®°ąÆą®šąÆą®šą®æą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“…ą“øąµ‹ą“øą“æą“Æąµ‡ą“·ąµ» ą“«ąµ‹ąµ¼ ą“¦ą“æ ą“•ąµ¾ą“Ÿąµą“Ÿą“æą“µąµ‡ą“·ąµ» ą““ą“«ąµ ą“øą“Æąµ»ą“øąµ'),
(114226, 'https://ror.org/050pq4m56', 'ms', 1, 'https://ror.org/050pq4m56 Tunku Abdul Rahman University Universiti Tunku Abdul Rahman ą®¤ąÆą®™ąÆą®•ąÆ ą®…ą®ŖąÆą®¤ąÆą®²ąÆ ą®°ą®•ąÆą®®ą®¾ą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(114227, 'https://ror.org/050rsje66', 'en', 1, 'https://ror.org/050rsje66 Mochida Memorial Foundation For Medical And Pharmaceutical Research å…¬ē›Šč²”å›£ę³•äŗŗęŒē”°čØ˜åæµåŒ»å­¦č–¬å­¦ęŒÆčˆˆč²”å›£'),
(114228, 'https://ror.org/050trge43', 'en', 1, 'https://ror.org/050trge43 Denau Institute of Entrepreneurship and Pedagogy Denov tadbirkorlik va pedagogika instituti Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° Šø пеГагогики имени Денова ŲÆŪŒŁ†ŁˆŁ ŲÆ Ł…ŲŖŲ“ŲØŲ«ŪŒŲŖ او تدریس Ų§Ł†Ų³Ł¼ŪŒŁ¼ŪŒŁˆŁ¼'),
(114229, 'https://ror.org/050w9j879', 'en', 1, 'https://ror.org/050w9j879 Kuban State Technological University Кубанский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114230, '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) äø­å›½å»ŗē­‘ē¬¬å…­å·„ēØ‹å±€ęœ‰é™å…¬åø'),
(114231, 'https://ror.org/05102hs19', 'en', 1, 'https://ror.org/05102hs19 The Japanese Association of Rural Medicine äø€čˆ¬ē¤¾å›£ę³•äŗŗč¾²ę‘åŒ»å­¦ä¼š'),
(114232, 'https://ror.org/0510mg863', 'en', 1, 'https://ror.org/0510mg863 Reiwa Health Sciences University ä»¤å’Œå„åŗ·ē§‘å­¦å¤§å­¦'),
(114233, 'https://ror.org/0511qfq70', 'fr', 1, 'https://ror.org/0511qfq70 Centre de Recherches Interdisciplinaires et Transculturelles'),
(114234, 'https://ror.org/051307376', 'pt', 1, 'https://ror.org/051307376 Sociedade Portuguesa de Recursos GenƩticos Animais'),
(114235, 'https://ror.org/051316d77', 'en', 1, 'https://ror.org/051316d77 National Film Archive NÔrodní filmový archiv'),
(114236, 'https://ror.org/05141h569', 'es', 1, 'https://ror.org/05141h569 Instituto Nacional de Capacitación Profesional'),
(114237, 'https://ror.org/0516ek610', 'en', 1, 'https://ror.org/0516ek610 Tottori Prefectural Education Center é³„å–ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(114238, 'https://ror.org/0518nb352', 'en', 1, 'https://ror.org/0518nb352 Nelson University'),
(114239, 'https://ror.org/0518tra10', 'fr', 1, 'https://ror.org/0518tra10 UAR Data Terra'),
(114240, 'https://ror.org/05192rv21', 'en', 1, 'https://ror.org/05192rv21 Assam Science and Technology University'),
(114241, 'https://ror.org/05193xx52', 'es', 1, 'https://ror.org/05193xx52 TecnoCampus'),
(114242, 'https://ror.org/051c1vb08', 'fr', 1, 'https://ror.org/051c1vb08 PHEN X - Physiopathologie, Environnement et Exposome'),
(114243, 'https://ror.org/051d04622', 'en', 1, 'https://ror.org/051d04622 ETH Institut für Theoretische Studien ETH Institute for Theoretical Studies'),
(114244, 'https://ror.org/051dasd51', 'en', 1, 'https://ror.org/051dasd51 Oliva Creative Factory'),
(114245, 'https://ror.org/051ea1411', 'en', 1, 'https://ror.org/051ea1411 HUN-REN Centre for Economic and Regional Studies HUN-REN KözgazdasÔg- és RegionÔlis TudomÔnyi Kutatóközpont'),
(114246, 'https://ror.org/051exe838', 'en', 1, 'https://ror.org/051exe838 Army Infantry College of PLA 中国人民解放军陆军歄兵学院'),
(114247, 'https://ror.org/051fsqe52', 'en', 1, 'https://ror.org/051fsqe52 Kanagawa International Foundation å…¬ē›Šč²”å›£ę³•äŗŗć‹ćŖćŒć‚å›½éš›äŗ¤ęµč²”å›£'),
(114248, 'https://ror.org/051fx1c67', 'no_lang_code', 1, 'https://ror.org/051fx1c67 Escrever Escrever (Portugal)'),
(114249, 'https://ror.org/051fzrb60', 'pt', 1, 'https://ror.org/051fzrb60 Centro de MatemƔtica Computacional e EstocƔstica'),
(114250, 'https://ror.org/051j1ed22', 'en', 1, 'https://ror.org/051j1ed22 ACTRIS ERIC - Aerosol, Cloud and Trace Gases Research Infrastructure'),
(114251, 'https://ror.org/051m4vc48', 'en', 1, 'https://ror.org/051m4vc48 Appalachian State University'),
(114252, 'https://ror.org/051nvp675', 'en', 1, 'https://ror.org/051nvp675 Temuco Catholic University Universidad Católica de Temuco'),
(114253, 'https://ror.org/051p4mw04', 'es', 1, 'https://ror.org/051p4mw04 Universidad Antropológica de Guadalajara'),
(114254, 'https://ror.org/051t7v989', 'pt', 1, 'https://ror.org/051t7v989 Laboratório de Educação a Distância e E-learning'),
(114255, 'https://ror.org/051tvxa49', 'is', 1, 'https://ror.org/051tvxa49 NƔtturustofa Suưurlands'),
(114256, 'https://ror.org/051ycea61', 'en', 1, 'https://ror.org/051ycea61 European Clinical Research Infrastructure Network'),
(114257, 'https://ror.org/051ykjw41', 'fr', 1, 'https://ror.org/051ykjw41 Institut de Recherche pour le DƩveloppement'),
(114258, 'https://ror.org/052023y69', 'pt', 1, 'https://ror.org/052023y69 Laboratório Hercules Herança Cultural Estudos e Salvaguarda'),
(114259, 'https://ror.org/0520mfp02', 'pt', 1, 'https://ror.org/0520mfp02 Marinha Portuguesa'),
(114260, 'https://ror.org/0524sp257', 'en', 1, 'https://ror.org/0524sp257 Prifysgol Bryste University of Bristol'),
(114261, 'https://ror.org/05258q350', 'fr', 1, 'https://ror.org/05258q350 Institut MĆ©diterranĆ©en d’OcĆ©anologie Mediterranean Institute of Oceanography'),
(114262, 'https://ror.org/0526cz443', 'no_lang_code', 1, 'https://ror.org/0526cz443 Henkel (Germany)'),
(114263, 'https://ror.org/0526kmt93', 'es', 1, 'https://ror.org/0526kmt93 Tecnológico de Estudios Superiores de Tianguistenco'),
(114264, 'https://ror.org/0528pfx89', 'pt', 1, 'https://ror.org/0528pfx89 Unidade de Investigação Educação e Desenvolvimento'),
(114265, 'https://ror.org/0528tq312', 'pt', 1, 'https://ror.org/0528tq312 Faculdade de Tecnologia da Zona Leste'),
(114266, 'https://ror.org/052ay8m85', 'en', 1, 'https://ror.org/052ay8m85 Federal Medical-Biological Agency Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ меГико-биологическое агентство'),
(114267, 'https://ror.org/052czxv31', 'en', 1, 'https://ror.org/052czxv31 Massey University'),
(114268, 'https://ror.org/052g2se33', 'en', 1, 'https://ror.org/052g2se33 Mongolian National Institute for Educational Research Š‘ŠžŠ»Š¾Š²ŃŃ€Š¾Š»Ń‹Š½ Š”ŃƒŠ“Š°Š»Š³Š°Š°Š½Ń‹ Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Š„ŅÆŃ€ŃŃŠ»ŃŠ½'),
(114269, 'https://ror.org/052gg0110', 'en', 1, 'https://ror.org/052gg0110 Prifysgol Rhydychen University of Oxford'),
(114270, 'https://ror.org/052ha6r03', 'en', 1, 'https://ror.org/052ha6r03 Hokkaido Building Engineering Association äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“å»ŗēÆ‰ęŠ€č”“å”ä¼š'),
(114271, 'https://ror.org/052hbrn62', 'fr', 1, 'https://ror.org/052hbrn62 Office pour les insectes et leur environnement (Opie)'),
(114272, 'https://ror.org/052hbwv48', 'en', 1, 'https://ror.org/052hbwv48 LJ University'),
(114273, 'https://ror.org/052jffj50', 'no_lang_code', 1, 'https://ror.org/052jffj50 Lusodoc Documentação Técnico-Científica (Portugal), Lusodoc Technical-Scientific Documentation'),
(114274, 'https://ror.org/052jj4m32', 'en', 1, 'https://ror.org/052jj4m32 EGI'),
(114275, 'https://ror.org/052p6n135', 'en', 1, 'https://ror.org/052p6n135 Kanagawa Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗē„žå„ˆå·ēœŒēœ‹č­·å”ä¼š'),
(114276, 'https://ror.org/052qcyn36', 'pt', 1, 'https://ror.org/052qcyn36 Centro de Formação Interação UBI Tecido Empresarial'),
(114277, 'https://ror.org/052r2xn60', 'en', 1, 'https://ror.org/052r2xn60 Johannes Kepler University of Linz Johannes Kepler UniversitƤt Linz'),
(114278, 'https://ror.org/052rv9321', 'pt', 1, 'https://ror.org/052rv9321 Câmara Municipal de Portimão'),
(114279, 'https://ror.org/052tpj472', 'es', 1, 'https://ror.org/052tpj472 Instituto de IngenierĆ­a'),
(114280, 'https://ror.org/052wj6v68', 'en', 1, 'https://ror.org/052wj6v68 Griffith College Limerick'),
(114281, 'https://ror.org/052xgjt73', 'en', 1, 'https://ror.org/052xgjt73 Airbus Defence and Space GmbH, Airbus Defence and Space GmbH (Germany)'),
(114282, 'https://ror.org/052xmb466', 'pt', 1, 'https://ror.org/052xmb466 APHVIN GEHVID - Associação Portuguesa de História da Vinha e do Vinho'),
(114283, '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'),
(114284, 'https://ror.org/052z7nw84', 'en', 1, 'https://ror.org/052z7nw84 University of Education ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§ŪŒŲ¬ŁˆŚ©ŪŒŲ“Ł†'),
(114285, 'https://ror.org/0530evv80', 'en', 1, 'https://ror.org/0530evv80 Japan Lighting Manufacturers Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē…§ę˜Žå·„ę„­ä¼š'),
(114286, 'https://ror.org/0531smp09', 'en', 1, 'https://ror.org/0531smp09 Kitasato Research Center of Environmental Sciences äø€čˆ¬č²”å›£ę³•äŗŗåŒ—é‡Œē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(114287, 'https://ror.org/0531xjy14', 'no_lang_code', 1, 'https://ror.org/0531xjy14 Krantiguru Shyamji Krishna Verma Kachchh University ąŖ•ą«ąŖ°ąŖ¾ąŖ‚ąŖ¤ąŖæąŖ—ą«ąŖ°ą« ąŖ¶ą«ąŖÆąŖ¾ąŖ®ąŖœą«€ ąŖ•ą«ƒąŖ·ą«ąŖ£ąŖµąŖ°ą«ąŖ®ąŖ¾ ąŖ•ąŖšą«ąŖ› ąŖµąŖæąŖ¶ą«ąŖµąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖ²ąŖÆ ą°•ą±ą°°ą°¾ą°‚ą°¤ą°æą°—ą±ą°°ą±‚ ą°¶ą±ą°Æą°¾ą°®ą±ą°œą°æ ą°•ą±ƒą°·ą±ą°£ ą°µą±†ą°°ą±ą°® ą°•ą°¾ą°šą±ą°šą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(114288, 'https://ror.org/053364k84', 'en', 1, 'https://ror.org/053364k84 The Academy of Clinical Dentistry ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬é”Žå’¬åˆå­¦ä¼š'),
(114289, 'https://ror.org/0533nhm89', 'en', 1, 'https://ror.org/0533nhm89 Institut für Polymere Institute of Polymers'),
(114290, 'https://ror.org/0535jz951', 'en', 1, 'https://ror.org/0535jz951 Emissions Reduction Alberta'),
(114291, 'https://ror.org/0535vdw70', 'en', 1, 'https://ror.org/0535vdw70 National Institute of Education, Sri Lanka'),
(114292, 'https://ror.org/0537fzf45', 'en', 1, 'https://ror.org/0537fzf45 MyFace Clinic'),
(114293, 'https://ror.org/0538k6829', 'fr', 1, 'https://ror.org/0538k6829 Laboratoire Culture, Sport, SantƩ, SociƩtƩ'),
(114294, 'https://ror.org/0539h2w52', 'en', 1, 'https://ror.org/0539h2w52 Naval Facilities Engineering Systems Command'),
(114295, 'https://ror.org/053avzc18', 'en', 1, 'https://ror.org/053avzc18 Akademie věd ČeskĆ© republiky Czech Academy of Sciences'),
(114296, 'https://ror.org/053brmk41', 'fr', 1, 'https://ror.org/053brmk41 Association des Annales de l''institut Fourier'),
(114297, 'https://ror.org/053fs4039', 'en', 1, 'https://ror.org/053fs4039 Bệnh Viện Ung Bướu HĆ  Nį»™i Hanoi Oncology Hospital'),
(114298, 'https://ror.org/053gs7z03', 'en', 1, 'https://ror.org/053gs7z03 Showa University of Music ę˜­å’ŒéŸ³ę„½å¤§å­¦'),
(114299, 'https://ror.org/053gv9453', 'en', 1, 'https://ror.org/053gv9453 Department for Environment and Water'),
(114300, 'https://ror.org/053mfxd72', 'en', 1, 'https://ror.org/053mfxd72 ARC Centre of Excellence for Children and Families over the Life Course'),
(114301, 'https://ror.org/053r7b732', 'no_lang_code', 1, 'https://ror.org/053r7b732 ASCENZA, ASCENZA AGRO (Portugal), ASCENZA AGRO, S.A.'),
(114302, 'https://ror.org/053sn3a32', 'en', 1, 'https://ror.org/053sn3a32 VectorB2B'),
(114303, 'https://ror.org/053ts2049', 'en', 1, 'https://ror.org/053ts2049 Institut für Bewegungswissenschaften und Sport Institute of Human Movement Sciences and Sport'),
(114304, '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'),
(114305, 'https://ror.org/053vrqh41', 'en', 1, 'https://ror.org/053vrqh41 Wigwe University'),
(114306, 'https://ror.org/053wack18', 'fr', 1, 'https://ror.org/053wack18'),
(114307, 'https://ror.org/053wq6q28', 'en', 1, 'https://ror.org/053wq6q28 Northern Virginia Mental Health Institute'),
(114308, 'https://ror.org/053ytd308', 'pt', 1, 'https://ror.org/053ytd308 Serviço de Documentação e Bibliotecas'),
(114309, 'https://ror.org/05416tz41', 'pt', 1, 'https://ror.org/05416tz41 Republica Portuguesa Direção-Geral do Património Cultural'),
(114310, 'https://ror.org/054225q67', 'en', 1, 'https://ror.org/054225q67 Cancer Research UK'),
(114311, 'https://ror.org/0542gd495', 'en', 1, 'https://ror.org/0542gd495 Hellenic Agricultural Organization - DIMITRA Ī•Ī›Ī›Ī—ĪĪ™ĪšĪŸĪ£ Ī“Ī•Ī©Ī”Ī“Ī™ĪšĪŸĪ£ ĪŸĪ”Ī“Ī‘ĪĪ™Ī£ĪœĪŸĪ£ - Ī”Ī—ĪœĪ—Ī¤Ī”Ī‘'),
(114312, 'https://ror.org/0542j0w74', 'en', 1, 'https://ror.org/0542j0w74 Ministry of Municipality وزارة Ų§Ł„ŲØŁ„ŲÆŁŠŲ©'),
(114313, 'https://ror.org/05433te07', 'en', 1, 'https://ror.org/05433te07 Coalition for Advancing Research Assessment'),
(114314, 'https://ror.org/0543jzn83', 'pt', 1, 'https://ror.org/0543jzn83 Fórum Oceano Associação da Economia do Mar'),
(114315, 'https://ror.org/0543paf14', 'pt', 1, 'https://ror.org/0543paf14 Unidade Local de SaĆŗde do Arco Ribeirinho'),
(114316, 'https://ror.org/0549rra43', 'en', 1, 'https://ror.org/0549rra43 Inuvialuit Regional Corporation'),
(114317, 'https://ror.org/054ajk512', 'en', 1, 'https://ror.org/054ajk512 Naval Air Systems Command'),
(114318, 'https://ror.org/054by0y65', 'en', 1, 'https://ror.org/054by0y65 Bayelsa Medical University'),
(114319, 'https://ror.org/054ca2x66', 'en', 1, 'https://ror.org/054ca2x66 Adler'),
(114320, 'https://ror.org/054crwb12', 'en', 1, 'https://ror.org/054crwb12 International Association of Traffic and Safety Sciences å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›äŗ¤é€šå®‰å…Øå­¦ä¼š'),
(114321, 'https://ror.org/054gwrv13', 'pt', 1, 'https://ror.org/054gwrv13 Sociedade Portuguesa de Psicoterapias Construtivistas'),
(114322, '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'),
(114323, 'https://ror.org/054kzvr89', 'de', 1, 'https://ror.org/054kzvr89 Centre of Further Education Zentrum Weiterbildung'),
(114324, 'https://ror.org/054m2wy71', 'en', 1, 'https://ror.org/054m2wy71 Smart University College for Modern Education Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų°ŁƒŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų­ŲÆŁŠŲ«'),
(114325, 'https://ror.org/054m9m571', 'en', 1, 'https://ror.org/054m9m571 Maeda Ippoen Foundation äø€čˆ¬č²”å›£ę³•äŗŗå‰ē”°äø€ę­©åœ’č²”å›£'),
(114326, 'https://ror.org/054mh5j79', 'pt', 1, 'https://ror.org/054mh5j79 Câmara Municipal de São João da Madeira'),
(114327, 'https://ror.org/054mwza93', 'es', 1, 'https://ror.org/054mwza93 Fundación para el Desarrollo de las Ciencias Físicas, MatemÔticas y Naturales'),
(114328, 'https://ror.org/054n84d53', 'no_lang_code', 1, 'https://ror.org/054n84d53 L''Oreal (United States)'),
(114329, 'https://ror.org/054pv6659', 'de', 1, 'https://ror.org/054pv6659 SveučiliÅ”te u Innsbrucku University of Innsbruck UniversitƤt Innsbruck Univerza v Innsbrucku'),
(114330, 'https://ror.org/054qdnd47', 'en', 1, 'https://ror.org/054qdnd47 State Key Laboratory of Metal Corrosion and Protection é‡‘å±žč…čš€äøŽé˜²ęŠ¤å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114331, 'https://ror.org/054qv7y42', 'fr', 1, 'https://ror.org/054qv7y42 Institut Polytechnique de Bordeaux'),
(114332, 'https://ror.org/054vgcb65', 'en', 1, 'https://ror.org/054vgcb65 Wakayama Prefectural Kokoro Medical Center å’Œę­Œå±±ēœŒē«‹ć“ć“ć‚ć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(114333, 'https://ror.org/054w7b348', 'no_lang_code', 1, 'https://ror.org/054w7b348 SHL Portugal, SHL Portugal (Portugal)'),
(114334, 'https://ror.org/054wnct40', 'en', 1, 'https://ror.org/054wnct40 Japan Family Care Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å®¶åŗ­ē”Ÿę“»ē ”ē©¶å”ä¼š'),
(114335, 'https://ror.org/054yran63', 'en', 1, 'https://ror.org/054yran63 Bihar National College'),
(114336, 'https://ror.org/054yyhg83', 'en', 1, 'https://ror.org/054yyhg83 Research Institute for Environmental Development äø€čˆ¬ē¤¾å›£ę³•äŗŗē’°å¢ƒę–‡åŒ–ē ”ē©¶ę‰€'),
(114337, 'https://ror.org/054z15n55', 'en', 1, 'https://ror.org/054z15n55 United States Naval Special Warfare Command'),
(114338, 'https://ror.org/055263j93', 'en', 1, 'https://ror.org/055263j93 IUCN Commission on Education and Communication'),
(114339, 'https://ror.org/05528ey35', 'en', 1, 'https://ror.org/05528ey35 Instruct-ERIC'),
(114340, 'https://ror.org/05534qc24', 'no_lang_code', 1, 'https://ror.org/05534qc24 SAGE Publishing (United States)'),
(114341, 'https://ror.org/05555bn28', 'en', 1, 'https://ror.org/05555bn28 CodeDay'),
(114342, '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'),
(114343, 'https://ror.org/0555gjx72', 'en', 1, 'https://ror.org/0555gjx72 Avient Colorants Singapore Pte. Ltd., Avient Colorants Singapore Pte. Ltd. (Singapore)'),
(114344, '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'),
(114345, 'https://ror.org/0556as610', 'en', 1, 'https://ror.org/0556as610 Institut für Mikrobiologie Institute of Microbiology'),
(114346, 'https://ror.org/0556bdk88', 'en', 1, 'https://ror.org/0556bdk88 The University of Nagano é•·é‡ŽēœŒē«‹å¤§å­¦'),
(114347, 'https://ror.org/0556v4357', 'en', 1, 'https://ror.org/0556v4357 Strategic Systems Programs'),
(114348, 'https://ror.org/0557mft23', 'fr', 1, 'https://ror.org/0557mft23 Formation, Innovation, Recherche, Services et Transfert en Temps-FrƩquence'),
(114349, 'https://ror.org/055a87x75', 'fr', 1, 'https://ror.org/055a87x75 Ministère de l''Enseignement Supérieur et de la Recherche'),
(114350, 'https://ror.org/055fjg955', 'en', 1, 'https://ror.org/055fjg955 KEC Electronic Industry Development Center äø€čˆ¬ē¤¾å›£ę³•äŗŗKECé–¢č„æé›»å­å·„ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(114351, 'https://ror.org/055g2p018', 'en', 1, 'https://ror.org/055g2p018 Scientific Certification Services, Inc., Scientific Certification Services, Inc. (United States)'),
(114352, 'https://ror.org/055g3mw61', 'pt', 1, 'https://ror.org/055g3mw61 CĆ¢mara Municipal de Ɖvora'),
(114353, 'https://ror.org/055gja518', 'en', 1, 'https://ror.org/055gja518 Center for Economic Research on Governance, Inequality and Conflict'),
(114354, 'https://ror.org/055j8ya05', 'no_lang_code', 1, 'https://ror.org/055j8ya05 RELX Group (United Kingdom)'),
(114355, 'https://ror.org/055pg0t11', 'en', 1, 'https://ror.org/055pg0t11 K. Matsushita Foundation');
INSERT INTO `rors` VALUES
(114356, '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)'),
(114357, 'https://ror.org/055sbzs47', 'no_lang_code', 1, 'https://ror.org/055sbzs47 Syngenta (Canada)'),
(114358, 'https://ror.org/055vdn769', 'no_lang_code', 1, 'https://ror.org/055vdn769 Terraprima, Terraprima (Portugal)'),
(114359, 'https://ror.org/055yg0521', 'en', 1, 'https://ror.org/055yg0521 University of Maryland School of Medicine'),
(114360, 'https://ror.org/055z4ja82', 'en', 1, 'https://ror.org/055z4ja82 Japanese Society of Nutrition and Food Science å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę „é¤Šćƒ»é£Ÿē³§å­¦ä¼š'),
(114361, 'https://ror.org/055zp1089', 'no_lang_code', 1, 'https://ror.org/055zp1089 EU-OPENSCREEN'),
(114362, 'https://ror.org/0560stp04', 'en', 1, 'https://ror.org/0560stp04 Nalla Narasimha Reddy Education Society''s Group of Institutions'),
(114363, 'https://ror.org/056274550', 'pt', 1, 'https://ror.org/056274550 Enercoutim - Associação Empresarial de Energia Solar de Alcoutim, Enercoutim'),
(114364, 'https://ror.org/0564cd633', 'no_lang_code', 1, 'https://ror.org/0564cd633 Lundbeck (Denmark)'),
(114365, 'https://ror.org/056530580', 'pt', 1, 'https://ror.org/056530580 Escolas do Turismo de Portugal'),
(114366, 'https://ror.org/0565zqf96', 'en', 1, 'https://ror.org/0565zqf96 Institut für Technologie in der Architektur ITA Institute for Technology in Architecture'),
(114367, 'https://ror.org/0566a8c54', 'en', 1, 'https://ror.org/0566a8c54 University of North Carolina System UniversitƩ de caroline du nord'),
(114368, 'https://ror.org/0566rpx77', 'en', 1, 'https://ror.org/0566rpx77 United States Strategic Command'),
(114369, 'https://ror.org/0566yhn94', 'en', 1, 'https://ror.org/0566yhn94 Jan Długosz University Uniwersytet Jana Długosza wCzęstochowie'),
(114370, 'https://ror.org/056a6x975', 'en', 1, 'https://ror.org/056a6x975 Ministerie van Infrastructuur en Milieu Ministry of Infrastructure and the Environment'),
(114371, 'https://ror.org/056a73h57', 'en', 1, 'https://ror.org/056a73h57 Fraunhofer Center for Smart Agriculture and Water Management – AWAM'),
(114372, 'https://ror.org/056c57m96', 'en', 1, 'https://ror.org/056c57m96 Czech Literary Bibliography ČeskÔ literÔrní bibliografie'),
(114373, 'https://ror.org/056d91m78', 'en', 1, 'https://ror.org/056d91m78 U.S. Army Aviation and Missile Command'),
(114374, 'https://ror.org/056gkfq80', 'pt', 1, 'https://ror.org/056gkfq80 Unidade Local de Saúde de Santo António EPE'),
(114375, 'https://ror.org/056hgwq51', 'en', 1, 'https://ror.org/056hgwq51 Embry-Riddle Aeronautical University Worldwide & Online'),
(114376, 'https://ror.org/056hy2s79', 'en', 1, 'https://ror.org/056hy2s79 Institute for Areal Studies, Foundation äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸé–‹ē™ŗē ”ē©¶ę‰€'),
(114377, 'https://ror.org/056j70537', 'es', 1, 'https://ror.org/056j70537 Instituto Superior Tecnológico Portoviejo con condición Superior Universitario "ITSUP"'),
(114378, 'https://ror.org/056m9zn95', 'de', 1, 'https://ror.org/056m9zn95 Institut für Biotechnologie und Wirkstoff-Forschung Institute of Biotechnology and Drug Research'),
(114379, 'https://ror.org/056ncc580', 'en', 1, 'https://ror.org/056ncc580 The Align Foundation'),
(114380, 'https://ror.org/056qj1t15', 'en', 1, 'https://ror.org/056qj1t15 Institut für Automatisierungstechnik Institute of Automation'),
(114381, 'https://ror.org/056r65c22', 'en', 1, 'https://ror.org/056r65c22 Nunavut Wildlife Management Board'),
(114382, 'https://ror.org/056rfe452', 'en', 1, 'https://ror.org/056rfe452 Zimbabwe National Defence University'),
(114383, 'https://ror.org/056s15d10', 'en', 1, 'https://ror.org/056s15d10 Maritime Disaster Prevention Center äø€čˆ¬č²”å›£ę³•äŗŗęµ·äøŠē½å®³é˜²ę­¢ć‚»ćƒ³ć‚æćƒ¼'),
(114384, 'https://ror.org/056texh07', 'en', 1, 'https://ror.org/056texh07 The Nature Center at Steele Creek Park'),
(114385, 'https://ror.org/056w4jg78', 'en', 1, 'https://ror.org/056w4jg78 United States Indo-Pacific Command'),
(114386, 'https://ror.org/056wyhh33', 'en', 1, 'https://ror.org/056wyhh33 National Institute of Technology Patna ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø पटना'),
(114387, 'https://ror.org/056x4q282', 'en', 1, 'https://ror.org/056x4q282 Japanese Society of Animal Science å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē•œē”£å­¦ä¼š'),
(114388, 'https://ror.org/05701wm02', 'en', 1, 'https://ror.org/05701wm02 Equator University of Science and Technology'),
(114389, 'https://ror.org/0570csa90', 'en', 1, 'https://ror.org/0570csa90 General Hanamaki Hospital å…¬ē›Šč²”å›£ę³•äŗŗē·åˆčŠ±å·»ē—…é™¢'),
(114390, 'https://ror.org/057216j94', 'en', 1, 'https://ror.org/057216j94 Kanagawa Physical Therapy Association å…¬ē›Šē¤¾å›£ę³•äŗŗē„žå„ˆå·ēœŒē†å­¦ē™‚ę³•å£«ä¼š'),
(114391, 'https://ror.org/0575jwx13', 'pl', 1, 'https://ror.org/0575jwx13 Academic Computer Centre Cyfronet AGH Akademickie Centrum Komputerowe Cyfronet AGH'),
(114392, 'https://ror.org/0575ttm03', 'en', 1, 'https://ror.org/0575ttm03 Mehran University of Engineering and Technology مھراڻ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ آف Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ł†ŚÆ Ų§ŁŠŁ†ŚŠ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ'),
(114393, 'https://ror.org/057a09f21', 'es', 1, 'https://ror.org/057a09f21 Instituto para la Conservación de Especies Amenazadas'),
(114394, 'https://ror.org/057abda04', 'pt', 1, 'https://ror.org/057abda04 Ordem dos Enfermeiros'),
(114395, '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'),
(114396, 'https://ror.org/057ch1y38', 'en', 1, 'https://ror.org/057ch1y38 ENCell Corp., ENCell Corp. (Korea)'),
(114397, 'https://ror.org/057g0ax13', 'et', 1, 'https://ror.org/057g0ax13 MPhysX OÜ'),
(114398, 'https://ror.org/057g1dn72', 'en', 1, 'https://ror.org/057g1dn72 Kumamoto Chuo Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šē†Šęœ¬äø­å¤®ē—…é™¢'),
(114399, '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)'),
(114400, 'https://ror.org/057htmp57', 'en', 1, 'https://ror.org/057htmp57 Free Economic Society of Russia Š’Š¾Š»ŃŒŠ½Š¾Šµ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Šµ общество России'),
(114401, 'https://ror.org/057j7nx65', 'en', 1, 'https://ror.org/057j7nx65 Wakayama Prefectural Fruit Tree Experiment Station å’Œę­Œå±±ēœŒęžœęØ¹č©¦éØ“å “'),
(114402, 'https://ror.org/057m0at44', 'en', 1, 'https://ror.org/057m0at44 Japan Pest Control Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒšć‚¹ćƒˆć‚³ćƒ³ćƒˆćƒ­ćƒ¼ćƒ«å”ä¼š'),
(114403, 'https://ror.org/057mgcy61', 'en', 1, 'https://ror.org/057mgcy61 Michigan Space Grant Consortium'),
(114404, 'https://ror.org/057mgfd18', 'en', 1, 'https://ror.org/057mgfd18 PT OPENSCREEN National Infrastructure for Chemical Biology and Genetics'),
(114405, 'https://ror.org/057mkdb21', 'no_lang_code', 1, 'https://ror.org/057mkdb21 Biogen (Portugal)'),
(114406, 'https://ror.org/057py8t43', 'en', 1, 'https://ror.org/057py8t43 Seismological Facility for the Advancement of Geoscience'),
(114407, 'https://ror.org/057r2zn69', 'no_lang_code', 1, 'https://ror.org/057r2zn69 Biotronik (Portugal)'),
(114408, 'https://ror.org/057rvn534', 'en', 1, 'https://ror.org/057rvn534 Institut für Geochemie und Petrologie Institute of Geochemistry and Petrology'),
(114409, 'https://ror.org/057sz6r47', 'pt', 1, 'https://ror.org/057sz6r47 Legale Educacional'),
(114410, 'https://ror.org/057tezk82', 'en', 1, 'https://ror.org/057tezk82 Northland Regional Council Te Kaunihera Ć  rohe o Te Taitokerau'),
(114411, 'https://ror.org/057vybt25', 'no_lang_code', 1, 'https://ror.org/057vybt25 Plansee (Germany)'),
(114412, 'https://ror.org/057wbqz50', 'en', 1, 'https://ror.org/057wbqz50 Tottori Prefectural Animal Husbandry Experiment Station é³„å–ēœŒē•œē”£č©¦éØ“å “'),
(114413, 'https://ror.org/057xcsb04', 'en', 1, 'https://ror.org/057xcsb04 Society for Agricultural Education Research Development Abroad äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–č¾²ę„­ę•™č‚²ćƒ»ē ”ē©¶é–‹ē™ŗå”ä¼š'),
(114414, 'https://ror.org/057xz1h85', 'en', 0, 'https://ror.org/057xz1h85 CSIRO Land and Water'),
(114415, 'https://ror.org/057yw0190', 'en', 1, 'https://ror.org/057yw0190 Social Insurance Institution'),
(114416, 'https://ror.org/05813w841', 'fr', 1, 'https://ror.org/05813w841 Ɖcole Nationale SupĆ©rieure de MĆ©canique et des Microtechniques'),
(114417, 'https://ror.org/05814ha56', 'en', 1, 'https://ror.org/05814ha56 Japan Dairy Association äø€čˆ¬ē¤¾å›£ę³•äŗŗJćƒŸćƒ«ć‚Æ'),
(114418, 'https://ror.org/0581acv95', 'pt', 1, 'https://ror.org/0581acv95 CĆ¢mara Municipal de Tavira'),
(114419, 'https://ror.org/0589fsf57', 'en', 1, 'https://ror.org/0589fsf57 Japanese Association of Zoos and Aquariums å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©åœ’ę°“ę—é¤Øå”ä¼š'),
(114420, 'https://ror.org/058dvej55', 'pt', 1, 'https://ror.org/058dvej55 Centro de MatemƔtica e AplicaƧƵes'),
(114421, 'https://ror.org/058e2tg06', 'pt', 1, 'https://ror.org/058e2tg06 Laboratório para a Ciência da Computação e InformÔtica'),
(114422, 'https://ror.org/058k6gb21', 'pt', 1, 'https://ror.org/058k6gb21 Centro de Investigação de MatemÔtica e Aplicações'),
(114423, 'https://ror.org/058kv9q68', 'pt', 1, 'https://ror.org/058kv9q68 Centro de MatemƔtica'),
(114424, 'https://ror.org/058p20n09', 'en', 1, 'https://ror.org/058p20n09 Henan Science and Technology Department ę²³å—ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(114425, 'https://ror.org/058p72x50', 'no_lang_code', 1, 'https://ror.org/058p72x50 AromƔticas Vivas (Portugal)'),
(114426, 'https://ror.org/058xdtn86', 'en', 1, 'https://ror.org/058xdtn86 ARC Centre of Excellence for Plant Success in Nature and Agriculture'),
(114427, 'https://ror.org/058ytyc05', 'pt', 1, 'https://ror.org/058ytyc05 Sociedade Portuguesa de Défice de Atenção'),
(114428, 'https://ror.org/058z19632', 'pt', 1, 'https://ror.org/058z19632 Sociedade Portuguesa de Imunologia'),
(114429, 'https://ror.org/0593xbv16', 'en', 1, 'https://ror.org/0593xbv16 United States Army Futures Command'),
(114430, 'https://ror.org/0595wsj36', 'en', 1, 'https://ror.org/0595wsj36 Japan Forest Recreation Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ę£®ęž—ćƒ¬ć‚ÆćƒŖć‚Øćƒ¼ć‚·ćƒ§ćƒ³å”ä¼š'),
(114431, 'https://ror.org/0597csq05', 'pt', 1, 'https://ror.org/0597csq05 Laboratório de Sistemas InformÔticos de Grande Escala'),
(114432, 'https://ror.org/0597yw556', 'en', 1, 'https://ror.org/0597yw556 Florida Native Plant Society'),
(114433, 'https://ror.org/059bdq320', 'en', 1, 'https://ror.org/059bdq320 Autonomous a2z Corporation, Autonomous a2z Corporation (South Korea)'),
(114434, 'https://ror.org/059fvxn54', 'en', 1, 'https://ror.org/059fvxn54 Phasecraft Inc., Phasecraft Inc. (United States)'),
(114435, 'https://ror.org/059fwb810', 'en', 1, 'https://ror.org/059fwb810 Portuguese Research Infrastructure of Scientific Collections'),
(114436, 'https://ror.org/059g0vd42', 'fr', 1, 'https://ror.org/059g0vd42 Laboratoire de bioimagerie et pathologies'),
(114437, 'https://ror.org/059hk2233', 'en', 1, 'https://ror.org/059hk2233 University Center of Illizi'),
(114438, 'https://ror.org/059hmwv16', 'en', 1, 'https://ror.org/059hmwv16 Qaujigiartiit Health Research Centre'),
(114439, 'https://ror.org/059j2wh09', 'en', 1, 'https://ror.org/059j2wh09 United States Naval Forces Central Command'),
(114440, 'https://ror.org/059jw6v13', 'en', 1, 'https://ror.org/059jw6v13 The Organization for Industrial, Spiritual and Cultural Advancement-International å…¬ē›Šč²”å›£ę³•äŗŗć‚Ŗć‚¤ć‚¹ć‚«'),
(114441, 'https://ror.org/059n54003', 'fr', 1, 'https://ror.org/059n54003 National Institute of Advanced Technologies of Brittany Ɖcole nationale supĆ©rieure de techniques avancĆ©es Bretagne'),
(114442, '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'),
(114443, 'https://ror.org/059sbnj83', 'en', 1, 'https://ror.org/059sbnj83 Sona College of Technology'),
(114444, 'https://ror.org/059swyb75', 'en', 1, 'https://ror.org/059swyb75 Japan Association for Clinical Engineers å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č‡ØåŗŠå·„å­¦ęŠ€å£«ä¼š'),
(114445, 'https://ror.org/059sz6q14', 'fr', 1, 'https://ror.org/059sz6q14 Centre International de Recherche en Infectiologie International Center for Infectiology Research'),
(114446, 'https://ror.org/059v2tb26', 'en', 1, 'https://ror.org/059v2tb26 Japan Housing & Wood Technology Center å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä½å®…ćƒ»ęœØęęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(114447, 'https://ror.org/059vwwb84', 'en', 1, 'https://ror.org/059vwwb84 United States Fleet Cyber Command'),
(114448, 'https://ror.org/059vyyn23', 'no_lang_code', 1, 'https://ror.org/059vyyn23 L''OrƩal (India)'),
(114449, 'https://ror.org/059wkht85', 'en', 1, 'https://ror.org/059wkht85 Hokkaido Club å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“å€¶ę„½éƒØ'),
(114450, 'https://ror.org/059wmd288', 'es', 1, 'https://ror.org/059wmd288 Universidad Nacional de Chimborazo'),
(114451, 'https://ror.org/059ygsz90', 'en', 1, 'https://ror.org/059ygsz90 Computer Vision Laboratory Institut für Bildverarbeitung'),
(114452, 'https://ror.org/059zr1469', 'fr', 1, 'https://ror.org/059zr1469 Lexicons, Texts, Speeches, Dictionaries Lexiques, Textes, Discours, Dictionnaires'),
(114453, 'https://ror.org/05a0ya142', 'en', 1, 'https://ror.org/05a0ya142 Broad Institute El Instituto Broad'),
(114454, 'https://ror.org/05a27za87', 'de', 1, 'https://ror.org/05a27za87 ERN-RND'),
(114455, 'https://ror.org/05a28rw58', 'en', 1, 'https://ror.org/05a28rw58 ETH Zurich ETH Zürich ETH di Zurigo'),
(114456, 'https://ror.org/05a3rjz27', 'hi', 1, 'https://ror.org/05a3rjz27 Balagarh Bijoy Krishna Mahavidyalaya বলাগঔ় ą¦¬ą¦æą¦œą¦Æą¦¼ą¦•ą§ƒą¦·ą§ą¦£ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(114457, 'https://ror.org/05a4pj207', 'en', 1, 'https://ror.org/05a4pj207 SUNY Cortland'),
(114458, 'https://ror.org/05a5k9h08', 'it', 1, 'https://ror.org/05a5k9h08 Istituto Nazionale di Statistica National Institute of Statistics'),
(114459, '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'),
(114460, 'https://ror.org/05a733z41', 'en', 1, 'https://ror.org/05a733z41 Federal Housing Finance Agency'),
(114461, 'https://ror.org/05a778a43', 'en', 1, 'https://ror.org/05a778a43 Presence Foundation Stichting Presentie'),
(114462, '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'),
(114463, 'https://ror.org/05a7rhx54', 'no_lang_code', 1, 'https://ror.org/05a7rhx54 Ericsson (Sweden)'),
(114464, 'https://ror.org/05a856n95', 'en', 1, 'https://ror.org/05a856n95 Australian Centre for Sustainable Development Research & Innovation'),
(114465, 'https://ror.org/05a8vs978', 'pt', 1, 'https://ror.org/05a8vs978 PORTUCALEA - Associação Florestal do Grande Porto'),
(114466, 'https://ror.org/05acchb91', 'en', 1, 'https://ror.org/05acchb91 Association of Food Technology, Turkey Gıda Teknolojisi Derneği'),
(114467, 'https://ror.org/05acs9g96', 'nl', 1, 'https://ror.org/05acs9g96 Karel de Grote Hogeschool KdG University of Applied Sciences and Arts'),
(114468, 'https://ror.org/05ag2zv50', 'en', 1, 'https://ror.org/05ag2zv50 Srusti Academy of Management'),
(114469, 'https://ror.org/05amc2t75', 'en', 1, 'https://ror.org/05amc2t75 IBADAT International University Islamabad'),
(114470, 'https://ror.org/05ap9rf45', 'en', 1, 'https://ror.org/05ap9rf45 G.B. Pant Institute of Himalayan Environment and Development'),
(114471, 'https://ror.org/05aqjsn79', 'no_lang_code', 1, 'https://ror.org/05aqjsn79 Nestle (Portugal)'),
(114472, 'https://ror.org/05arvb276', 'en', 1, 'https://ror.org/05arvb276 Indian National Academy of Engineering'),
(114473, 'https://ror.org/05asdy483', 'en', 1, 'https://ror.org/05asdy483 U-M Rogel Cancer Center'),
(114474, 'https://ror.org/05av4ht18', 'pt', 1, 'https://ror.org/05av4ht18 NĆŗcleo Empresarial da RegiĆ£o de Ɖvora'),
(114475, 'https://ror.org/05awjvv42', 'en', 1, 'https://ror.org/05awjvv42 Physics Research Initiatives'),
(114476, 'https://ror.org/05awykg63', 'en', 1, 'https://ror.org/05awykg63 Seiyo Municipal Hospital č„æäŗˆåø‚ē«‹č„æäŗˆåø‚ę°‘ē—…é™¢'),
(114477, 'https://ror.org/05b035a98', 'en', 1, 'https://ror.org/05b035a98 Xindu District People''s Hospital of Chengdu ęˆéƒ½åø‚ę–°éƒ½åŒŗäŗŗę°‘åŒ»é™¢'),
(114478, 'https://ror.org/05b1yn577', 'en', 1, 'https://ror.org/05b1yn577 Royal Metropolitan University'),
(114479, '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)'),
(114480, 'https://ror.org/05b2w9c34', 'en', 1, 'https://ror.org/05b2w9c34 Japan Institute of Electronics Packaging äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹å®Ÿč£…å­¦ä¼š'),
(114481, 'https://ror.org/05b30wy30', 'en', 1, 'https://ror.org/05b30wy30 UmeƄ Marine Sciences Centre'),
(114482, 'https://ror.org/05b367g49', 'pt', 1, 'https://ror.org/05b367g49 Faculdades Nova EsperanƧa'),
(114483, 'https://ror.org/05b5c0584', 'fr', 1, 'https://ror.org/05b5c0584 Jean Moulin University Lyon 3 UniversitƩ Jean Moulin Lyon III'),
(114484, 'https://ror.org/05b5gb044', 'en', 1, 'https://ror.org/05b5gb044 Environmental Science Research Center Of Yamagata Prefecture å±±å½¢ēœŒē’°å¢ƒē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(114485, 'https://ror.org/05b6h5f79', 'pt', 1, 'https://ror.org/05b6h5f79 Secretaria Regional do Turismo e Cultura'),
(114486, 'https://ror.org/05b8dr220', 'en', 1, 'https://ror.org/05b8dr220 Women Fund Tanzania Trust'),
(114487, 'https://ror.org/05b8ssq51', 'en', 1, 'https://ror.org/05b8ssq51 Yokohama City Industrial Technical Support Center ęØŖęµœåø‚å·„ę„­ęŠ€č”“ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(114488, 'https://ror.org/05b9pgt88', 'en', 1, 'https://ror.org/05b9pgt88 Advanced Centre for Treatment, Research and Education in Cancer'),
(114489, 'https://ror.org/05bb9ty69', 'en', 1, 'https://ror.org/05bb9ty69 Institute of Public Administration معهد ال؄دارة العامة'),
(114490, 'https://ror.org/05bd5qd97', 'pt', 1, 'https://ror.org/05bd5qd97 Escola Artística do Conservatório de Música Calouste Gulbenkian de Braga'),
(114491, 'https://ror.org/05bgxxb69', 'en', 1, 'https://ror.org/05bgxxb69 CSIRO Environment'),
(114492, 'https://ror.org/05bkmv847', 'id', 1, 'https://ror.org/05bkmv847 Universitas Islam Negeri Sultan Aji Muhammad Idris Samarinda'),
(114493, 'https://ror.org/05bn3m307', 'fr', 1, 'https://ror.org/05bn3m307 University of Technology of Belfort-MontbƩliard UniversitƩ de technologie de belfort-montbƩliard'),
(114494, 'https://ror.org/05bnk7418', 'en', 1, 'https://ror.org/05bnk7418 Naval Medical Research Unit EURAFCENT'),
(114495, 'https://ror.org/05bqach95', 'en', 1, 'https://ror.org/05bqach95 National Taiwan University'),
(114496, 'https://ror.org/05brv9741', 'de', 1, 'https://ror.org/05brv9741 PƤdagogische Hochschule Vorarlberg'),
(114497, 'https://ror.org/05bznkw77', 'fr', 1, 'https://ror.org/05bznkw77 BruyĆØre'),
(114498, 'https://ror.org/05bzz1e33', 'en', 1, 'https://ror.org/05bzz1e33 Institut für Atmosphäre und Klima Institute for Atmospheric and Climate Science'),
(114499, 'https://ror.org/05c196m06', 'en', 1, 'https://ror.org/05c196m06 National Blood Authority'),
(114500, 'https://ror.org/05c2vjs51', 'no_lang_code', 1, 'https://ror.org/05c2vjs51 VilaWork Barcelos Business Center, VilaWork Barcelos Business Center (Portugal)'),
(114501, 'https://ror.org/05c30h479', 'en', 1, 'https://ror.org/05c30h479 Virginia Department of Behavioral Health and Developmental Services'),
(114502, 'https://ror.org/05c68ap48', 'pt', 1, 'https://ror.org/05c68ap48 Centro de Investigação Paula Frassinetti'),
(114503, 'https://ror.org/05c7r3091', 'pt', 1, 'https://ror.org/05c7r3091 Instituto de Investigação em Arte Design e Sociedade'),
(114504, 'https://ror.org/05c85ns62', 'en', 1, 'https://ror.org/05c85ns62 Kanazawa Seiryo University é‡‘ę²¢ę˜ŸēØœå¤§å­¦'),
(114505, 'https://ror.org/05c9qnd49', 'en', 1, 'https://ror.org/05c9qnd49 Amsterdam Cardiovascular Sciences'),
(114506, 'https://ror.org/05cb5rq39', 'no_lang_code', 1, 'https://ror.org/05cb5rq39 Isurgical3D (Portugal)'),
(114507, 'https://ror.org/05cc98565', 'en', 1, 'https://ror.org/05cc98565 Bank of Canada Banque du Canada'),
(114508, 'https://ror.org/05cczs510', 'en', 0, 'https://ror.org/05cczs510 Ukrainian Medical Stomatological Academy Š£ŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń ŃŃ‚Š¾Š¼Š°Ń‚Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° меГична стоматологічна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(114509, 'https://ror.org/05cd3cw56', 'en', 1, 'https://ror.org/05cd3cw56 Association of New Urban Housing Technology äø€čˆ¬ē¤¾å›£ę³•äŗŗę–°éƒ½åø‚ćƒć‚¦ć‚øćƒ³ć‚°å”ä¼š'),
(114510, '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 Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Российский центр суГебно-меГицинской ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(114511, 'https://ror.org/05cfanb60', 'de', 1, 'https://ror.org/05cfanb60 St. Josef-Stift Sendenhorst'),
(114512, 'https://ror.org/05chsdq22', 'pt', 1, 'https://ror.org/05chsdq22 Direção Regional de Agricultura e Pescas do Centro'),
(114513, 'https://ror.org/05cj0mj74', 'en', 1, 'https://ror.org/05cj0mj74 Institute for Protein Physics'),
(114514, 'https://ror.org/05ck8hg96', 'en', 1, 'https://ror.org/05ck8hg96 University of Technology and Applied Sciences'),
(114515, 'https://ror.org/05ckf9v85', 'en', 1, 'https://ror.org/05ckf9v85 The Japan Society for Oriental Medicine äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę±ę“‹åŒ»å­¦ä¼š'),
(114516, 'https://ror.org/05cn0b378', 'en', 1, 'https://ror.org/05cn0b378 Prague Asterix Laser System'),
(114517, 'https://ror.org/05cncd958', 'en', 1, 'https://ror.org/05cncd958 Cranfield University Prifysgol Cranfield'),
(114518, 'https://ror.org/05csczx38', 'en', 1, 'https://ror.org/05csczx38 SIA StarBridge, SIA StarBridge (Latvia)'),
(114519, 'https://ror.org/05cx2q110', 'en', 1, 'https://ror.org/05cx2q110 St Joseph''s University, Bengaluru, India'),
(114520, 'https://ror.org/05cx8cy07', 'en', 1, 'https://ror.org/05cx8cy07 European Innovation Council'),
(114521, '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'),
(114522, 'https://ror.org/05czf9j81', 'es', 1, 'https://ror.org/05czf9j81 Escuela Nacional de Lenguas, Lingüística y Traducción'),
(114523, 'https://ror.org/05d0z1h60', 'en', 1, 'https://ror.org/05d0z1h60 APEF å…¬ē›Šč²”å›£ę³•äŗŗćƒ•ćƒ©ćƒ³ć‚¹čŖžę•™č‚²ęŒÆčˆˆå”ä¼š'),
(114524, 'https://ror.org/05d1de378', 'en', 1, 'https://ror.org/05d1de378 Civil Engineering Center Tokyo Metropolitan Government ę±äŗ¬éƒ½åœŸęœØęŠ€č”“ę”Æę“ćƒ»äŗŗęč‚²ęˆć‚»ćƒ³ć‚æćƒ¼'),
(114525, 'https://ror.org/05d1kkh39', 'en', 1, 'https://ror.org/05d1kkh39 International Business University'),
(114526, 'https://ror.org/05d442434', 'no_lang_code', 1, 'https://ror.org/05d442434 Bondalti (Portugal)'),
(114527, 'https://ror.org/05d49bv37', 'it', 1, 'https://ror.org/05d49bv37 Institute of Polar Sciences Istituto di Scienze Polari'),
(114528, 'https://ror.org/05d78xc36', 'en', 1, 'https://ror.org/05d78xc36 Euro-BioImaging ERIC'),
(114529, 'https://ror.org/05d7x7x53', 'en', 1, 'https://ror.org/05d7x7x53 Japan Gas Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¬ć‚¹å”ä¼š'),
(114530, 'https://ror.org/05dafkr85', 'en', 1, 'https://ror.org/05dafkr85 Ethiopian Roads Administration'),
(114531, '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)'),
(114532, 'https://ror.org/05db4en82', 'en', 1, 'https://ror.org/05db4en82 SOWA Hospital åŒ»ē™‚ę³•äŗŗč²”å›£ę„›ę…ˆä¼šē›øå’Œē—…é™¢'),
(114533, 'https://ror.org/05dbj6g52', 'en', 1, 'https://ror.org/05dbj6g52 Austin Health'),
(114534, 'https://ror.org/05dc6w374', 'en', 1, 'https://ror.org/05dc6w374 Research Data Alliance'),
(114535, 'https://ror.org/05ddx0m09', 'en', 1, 'https://ror.org/05ddx0m09 Research Infrastructure on Integration of Solar Energy Systems in Buildings'),
(114536, 'https://ror.org/05de6h762', 'fr', 1, 'https://ror.org/05de6h762 Maison de l''Orient et de la MƩditerranƩe Jean Pouilloux'),
(114537, 'https://ror.org/05desj304', 'es', 1, 'https://ror.org/05desj304 El Colegio de San Luis, A.C.'),
(114538, 'https://ror.org/05dfa2347', 'en', 1, 'https://ror.org/05dfa2347 Kailai Technology (Shenzhen) Co., Ltd., Kailai Technology (Shenzhen) Co., Ltd. (China)'),
(114539, 'https://ror.org/05dhs9b36', 'en', 1, 'https://ror.org/05dhs9b36 THE Oita Prefectural Organization For Industry Creation å…¬ē›Šč²”å›£ę³•äŗŗå¤§åˆ†ēœŒē”£ę„­å‰µé€ ę©Ÿę§‹'),
(114540, 'https://ror.org/05djkc225', 'no_lang_code', 1, 'https://ror.org/05djkc225 Daiichi Sankyo (Portugal)'),
(114541, 'https://ror.org/05djn7t12', 'en', 1, 'https://ror.org/05djn7t12 Toxicology Excellence for Risk Assessment'),
(114542, 'https://ror.org/05dk0ce17', 'en', 1, 'https://ror.org/05dk0ce17 Universidad Estatal de Washington UniversitĆ© d''Ɖtat de washington Washington State University'),
(114543, 'https://ror.org/05dpybt35', 'en', 1, 'https://ror.org/05dpybt35 Association of Urban Housing Sciences å…¬ē›Šē¤¾å›£ę³•äŗŗéƒ½åø‚ä½å®…å­¦ä¼š'),
(114544, 'https://ror.org/05dq4pp56', 'en', 1, 'https://ror.org/05dq4pp56 Internationaal Instituut voor Sociale Geschiedenis International Institute of Social History'),
(114545, 'https://ror.org/05dsdbp53', 'pt', 1, 'https://ror.org/05dsdbp53 Centro de FĆ­sica Computacional'),
(114546, 'https://ror.org/05dt05430', 'fr', 1, 'https://ror.org/05dt05430 Groupe de Recherche sur la Socialisation'),
(114547, 'https://ror.org/05dtxsf72', 'pt', 1, 'https://ror.org/05dtxsf72 ClĆ­nica do Bom Jesus'),
(114548, 'https://ror.org/05dzwvx76', 'en', 1, 'https://ror.org/05dzwvx76 Royal Perth Bentley Group'),
(114549, 'https://ror.org/05e06xw13', 'en', 1, 'https://ror.org/05e06xw13 International Nature Farming Research Center å…¬ē›Šč²”å›£ę³•äŗŗč‡Ŗē„¶č¾²ę³•å›½éš›ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(114550, 'https://ror.org/05e0gzh77', 'no_lang_code', 1, 'https://ror.org/05e0gzh77 Medac (Germany)'),
(114551, 'https://ror.org/05e0s9394', 'en', 1, 'https://ror.org/05e0s9394 JAäø‰é‡åŽšē”Ÿé€£éˆ“é¹æåŽšē”Ÿē—…é™¢ Suzuka Kosei Hospital'),
(114552, 'https://ror.org/05e15a779', 'en', 1, 'https://ror.org/05e15a779 AIIMS Jodhpur, All India Institute of Medical Sciences Jodhpur अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤œą„‹ą¤§ą¤Ŗą„ą¤°'),
(114553, 'https://ror.org/05e1k0d14', 'de', 1, 'https://ror.org/05e1k0d14 Deutsche Arthrose-Hilfe'),
(114554, 'https://ror.org/05e1sg358', 'pt', 1, 'https://ror.org/05e1sg358 Sociedade Portuguesa de Angiologia e Cirurgia Vascular'),
(114555, 'https://ror.org/05e2mfb24', 'no_lang_code', 1, 'https://ror.org/05e2mfb24 medac (Portugal), medac Sucursal em Portugal'),
(114556, 'https://ror.org/05e4f1b55', 'en', 1, 'https://ror.org/05e4f1b55 Bionics Institute'),
(114557, 'https://ror.org/05e5ahc59', 'en', 1, 'https://ror.org/05e5ahc59 Royal Devon University Healthcare NHS Foundation Trust'),
(114558, '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'),
(114559, 'https://ror.org/05e7w0f38', 'en', 1, 'https://ror.org/05e7w0f38 Ministry of External Affairs'),
(114560, 'https://ror.org/05e8gmx74', 'no_lang_code', 1, 'https://ror.org/05e8gmx74 Skyros Conferences, Skyros Congressos, Skyros Congressos (Portugal)'),
(114561, 'https://ror.org/05e93vc61', 'en', 1, 'https://ror.org/05e93vc61 Institut für Fluiddynamik Institute of Fluid Dynamics'),
(114562, 'https://ror.org/05e94de73', 'en', 1, 'https://ror.org/05e94de73 Sarov Institute of Physics and Technology Даровский Š³Š¾ŃŃƒŠ“арственный физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(114563, 'https://ror.org/05ee6mp02', 'pt', 1, 'https://ror.org/05ee6mp02 Centro de Arqueologia'),
(114564, 'https://ror.org/05ef68207', 'en', 1, 'https://ror.org/05ef68207 Transparent Products, Inc., Transparent Products, Inc. (United States)'),
(114565, 'https://ror.org/05egqah77', 'en', 1, 'https://ror.org/05egqah77 Naval Medical Research Unit DAYTON'),
(114566, 'https://ror.org/05ejpqr48', 'en', 1, 'https://ror.org/05ejpqr48 Worcester Polytechnic Institute'),
(114567, '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'),
(114568, 'https://ror.org/05emvfn26', 'en', 1, 'https://ror.org/05emvfn26 National Defense University'),
(114569, 'https://ror.org/05enegw32', 'en', 1, 'https://ror.org/05enegw32 Niigata Prefectural Institute of Environmental Radiation Monitoring ę–°ę½ŸēœŒę”¾å°„ē·šē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(114570, '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'),
(114571, 'https://ror.org/05ern7v24', 'pt', 1, 'https://ror.org/05ern7v24 Ordem dos MƩdicos VeterinƔrios'),
(114572, 'https://ror.org/05est4g74', 'en', 1, 'https://ror.org/05est4g74 Guru Nanak First Grade College Bidar'),
(114573, 'https://ror.org/05f0azc76', 'it', 1, 'https://ror.org/05f0azc76 Azienda Regionale per la protezione dell''ambiente Lombardia Regional environmental protection for Lombardia'),
(114574, 'https://ror.org/05f0grf58', 'en', 1, 'https://ror.org/05f0grf58 Gritstone Oncology, Inc, Gritstone Oncology, Inc (United States)'),
(114575, 'https://ror.org/05f11g639', 'en', 1, 'https://ror.org/05f11g639 International Institute of Information Technology, Hyderabad ą¤…ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(114576, 'https://ror.org/05f1jmk63', 'pt', 1, 'https://ror.org/05f1jmk63 Hospital de Cascais Dr JosƩ de Almeida'),
(114577, 'https://ror.org/05f421b09', 'en', 1, 'https://ror.org/05f421b09 Naval Medical Research Command'),
(114578, 'https://ror.org/05f659z64', 'en', 1, 'https://ror.org/05f659z64 Japan Agricultural Development and Extension Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½č¾²ę„­ę”¹č‰Æę™®åŠę”Æę“å”ä¼š'),
(114579, 'https://ror.org/05f7dn964', 'en', 1, 'https://ror.org/05f7dn964 International University named after K.Sh.Toktomamatov'),
(114580, 'https://ror.org/05f82e368', 'fr', 1, 'https://ror.org/05f82e368 UniversitƩ Paris CitƩ'),
(114581, 'https://ror.org/05f8g2610', 'en', 1, 'https://ror.org/05f8g2610 Hanawa Kousei Hospital JAē¦å³¶åŽšē”Ÿé€£å”™åŽšē”Ÿē—…é™¢'),
(114582, 'https://ror.org/05f8gg818', 'en', 1, 'https://ror.org/05f8gg818 Russian Association of Computer Science in Sport ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ ŠŗŠ¾Š¼ŠæŃŒŃŽŃ‚ŠµŃ€Š½Ń‹Ń… наук в спорте'),
(114583, 'https://ror.org/05f9vtt89', 'en', 1, 'https://ror.org/05f9vtt89 Kingsley Ozumba Mbadiwe University'),
(114584, 'https://ror.org/05f9ze865', 'en', 1, 'https://ror.org/05f9ze865 Nippon Badminton Association å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒćƒ‰ćƒŸćƒ³ćƒˆćƒ³å”ä¼š'),
(114585, 'https://ror.org/05fb7v315', 'en', 1, 'https://ror.org/05fb7v315 CTA Observatory'),
(114586, 'https://ror.org/05fbs9e55', 'en', 1, 'https://ror.org/05fbs9e55 Taiwan Banana Research Institute å°ē£é¦™č•‰ē ”ē©¶ę‰€'),
(114587, 'https://ror.org/05fdzxt48', 'en', 1, 'https://ror.org/05fdzxt48 International Institute of Socionics'),
(114588, 'https://ror.org/05fe6qm90', 'nl', 1, 'https://ror.org/05fe6qm90 Nederlands Instituut Publieke Veiligheid Netherlands Institute for Public Safety'),
(114589, 'https://ror.org/05fe7ax82', 'fr', 1, 'https://ror.org/05fe7ax82 Institut d''Etudes Politiques de Paris, Sciences Po'),
(114590, 'https://ror.org/05fg7k674', 'en', 1, 'https://ror.org/05fg7k674 Japan Wellness Foundation äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¦ć‚Øćƒ«ćƒć‚¹å”ä¼š'),
(114591, 'https://ror.org/05fhwqj89', 'en', 1, 'https://ror.org/05fhwqj89 Institut für Chemie- und Bioingenieurwissenschaften Institute for Chemical and Bioengineering'),
(114592, 'https://ror.org/05fj8cf83', 'es', 1, 'https://ror.org/05fj8cf83 Universidad Autónoma de Ciudad JuÔrez'),
(114593, 'https://ror.org/05fk72r68', 'en', 1, 'https://ror.org/05fk72r68 Esfarayen University of Technology Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ ŁŁ†ŪŒ و Ł…Ł‡Ł†ŲÆŲ³ŪŒ Ų§Ų³ŁŲ±Ų§ŪŒŁ†'),
(114594, 'https://ror.org/05fkmcx91', 'pt', 1, 'https://ror.org/05fkmcx91 Centro de AnƔlise Funcional Estruturas Lineares e AplicaƧƵes'),
(114595, 'https://ror.org/05fmbse12', 'no_lang_code', 1, 'https://ror.org/05fmbse12 Euromedice Medical Publishing, EuromƩdice EdiƧƵes MƩdicas (Portugal)'),
(114596, 'https://ror.org/05fpx4038', 'en', 1, 'https://ror.org/05fpx4038 Koto Medical Association å…¬ē›Šē¤¾å›£ę³•äŗŗę±Ÿę±åŒŗåŒ»åø«ä¼š'),
(114597, 'https://ror.org/05fvfp460', 'en', 1, 'https://ror.org/05fvfp460 Kanadevia, Kanadevia (Japan) ć‚«ćƒŠćƒ‡ćƒ“ć‚¢ę Ŗå¼ä¼šē¤¾'),
(114598, 'https://ror.org/05fx63164', 'en', 1, 'https://ror.org/05fx63164 The International Maglev Board'),
(114599, 'https://ror.org/05fz31p11', 'no_lang_code', 1, 'https://ror.org/05fz31p11 Printipo Graphic Design, Printipo Indústrias GrÔficas (Portugal)'),
(114600, 'https://ror.org/05g13zd79', 'en', 1, 'https://ror.org/05g13zd79 Toronto Metropolitan University'),
(114601, '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'),
(114602, 'https://ror.org/05g3svt72', 'pt', 1, 'https://ror.org/05g3svt72 Centro da Ciências e Tecnologias Mecânicas e Aeroespaciais'),
(114603, 'https://ror.org/05g4ym745', 'en', 1, 'https://ror.org/05g4ym745 YEZO Deer Association äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚Øć‚¾ć‚·ć‚«å”ä¼š'),
(114604, 'https://ror.org/05g6gfq40', 'pt', 1, 'https://ror.org/05g6gfq40 CENERTEC Centro de Energia e Tecnologia'),
(114605, 'https://ror.org/05g8xwk07', 'en', 1, 'https://ror.org/05g8xwk07 Sultan Qaboos Comprehensive Cancer Care & Research Center'),
(114606, 'https://ror.org/05gbd1t94', 'en', 1, 'https://ror.org/05gbd1t94 Mishuku Hospital å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šäø‰å®æē—…é™¢'),
(114607, 'https://ror.org/05gcgh726', 'en', 1, 'https://ror.org/05gcgh726 All India Institute of Medical Sciences, Mangalagiri'),
(114608, 'https://ror.org/05getq675', 'en', 1, 'https://ror.org/05getq675 Center for Studies in Ethnobiology Biodiversity & Sustainability'),
(114609, 'https://ror.org/05ggn0a85', 'en', 1, 'https://ror.org/05ggn0a85 University of Chemistry and Technology, Prague VysokÔ Ŕkola chemicko-technologickÔ v Praze'),
(114610, 'https://ror.org/05ghbjx71', 'fr', 1, 'https://ror.org/05ghbjx71 Centre intégré de santé et de services sociaux de Chaudière-Appalaches'),
(114611, 'https://ror.org/05gpvde20', 'en', 1, 'https://ror.org/05gpvde20 Royal Prince Alfred Hospital'),
(114612, 'https://ror.org/05gq02987', 'en', 1, 'https://ror.org/05gq02987 Brown University Universidad Brown'),
(114613, 'https://ror.org/05gr4mx33', 'en', 1, 'https://ror.org/05gr4mx33 Tashkent State Agrarian University Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114614, 'https://ror.org/05gsxrt27', 'en', 1, 'https://ror.org/05gsxrt27 BGI Research åŽå¤§ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(114615, 'https://ror.org/05gvja138', 'en', 1, 'https://ror.org/05gvja138 Centenary Institute'),
(114616, 'https://ror.org/05gxnyn08', 'en', 0, 'https://ror.org/05gxnyn08 Indiana University – Purdue University Indianapolis'),
(114617, 'https://ror.org/05gzceg21', 'no_lang_code', 1, 'https://ror.org/05gzceg21 Kasetsart University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøąø©ąø•ąø£ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(114618, 'https://ror.org/05h13a661', 'en', 1, 'https://ror.org/05h13a661 Korea Football Association'),
(114619, 'https://ror.org/05h2s3g06', 'en', 1, 'https://ror.org/05h2s3g06 Nissenken Quality Evaluation Center äø€čˆ¬č²”å›£ę³•äŗŗćƒ‹ćƒƒć‚»ćƒ³ć‚±ćƒ³å“č³Ŗč©•ä¾”ć‚»ćƒ³ć‚æćƒ¼'),
(114620, 'https://ror.org/05h3g8k59', 'pt', 1, 'https://ror.org/05h3g8k59 CoLAB VORTEX'),
(114621, 'https://ror.org/05h61fg48', 'fr', 1, 'https://ror.org/05h61fg48 Ɖlisabeth BruyĆØre Hospital'),
(114622, 'https://ror.org/05h929866', 'fr', 1, 'https://ror.org/05h929866 Laboratoire des Sciences de l''Environnement Marin'),
(114623, 'https://ror.org/05hcacp57', 'en', 1, 'https://ror.org/05hcacp57 Agricultural Research Center'),
(114624, 'https://ror.org/05hd91813', 'en', 1, 'https://ror.org/05hd91813 Urban Design Center å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚ć„ćć‚Šćƒ‘ćƒ–ćƒŖćƒƒć‚Æćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(114625, 'https://ror.org/05he0t313', 'pl', 1, 'https://ror.org/05he0t313 University of Kalisz Uniwersytet Kaliski im. Prezydenta Stanisława Wojciechowskiego'),
(114626, 'https://ror.org/05hf24p52', 'pt', 1, 'https://ror.org/05hf24p52 Sociedade Portuguesa de Relatividade e Gravitação'),
(114627, 'https://ror.org/05hg47c09', 'en', 1, 'https://ror.org/05hg47c09 KV Institute of Management and Information Studies'),
(114628, 'https://ror.org/05hjmfb58', 'en', 1, 'https://ror.org/05hjmfb58 Egyptian Ministry of Environment وزارة Ų§Ł„ŲØŁŠŲ¦Ų©- جهاز Ų“Ų¦ŁˆŁ† Ų§Ł„ŲØŁŠŲ¦Ų©Ų§Ł„Ł…Ų¹Ų§ŲÆŁ‰'),
(114629, 'https://ror.org/05hkenk96', 'pt', 1, 'https://ror.org/05hkenk96 Unidade de Investigação e Desenvolvimento Cardiovascular'),
(114630, 'https://ror.org/05hkkdn48', 'en', 1, 'https://ror.org/05hkkdn48 Fraunhofer Society Fraunhofer-Gesellschaft zur Fƶrderung der angewandten Forschung e. V.'),
(114631, 'https://ror.org/05hrn3e05', 'en', 1, 'https://ror.org/05hrn3e05 Center for Systems Biology Dresden'),
(114632, 'https://ror.org/05ht7qn52', 'en', 1, 'https://ror.org/05ht7qn52 Xinghua People''s Hospital Affiliated to Yangzhou University å…“åŒ–åø‚äŗŗę°‘åŒ»é™¢'),
(114633, 'https://ror.org/05htjr371', 'en', 1, 'https://ror.org/05htjr371 Portage College'),
(114634, 'https://ror.org/05htqpy51', 'en', 1, 'https://ror.org/05htqpy51 International Association of Computer Science in Sport'),
(114635, 'https://ror.org/05htt1s44', 'en', 1, 'https://ror.org/05htt1s44 Japan Association for Safety of Hazardous Materials äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½å±é™ŗē‰©å®‰å…Øå”ä¼š'),
(114636, 'https://ror.org/05hwn7849', 'en', 0, 'https://ror.org/05hwn7849 Minnesota Project'),
(114637, 'https://ror.org/05hy3tk52', 'fr', 1, 'https://ror.org/05hy3tk52 Ɖcole Polytechnique'),
(114638, 'https://ror.org/05hygey35', 'en', 1, 'https://ror.org/05hygey35 Institute of Genetics and Cancer'),
(114639, 'https://ror.org/05hys2498', 'no_lang_code', 1, 'https://ror.org/05hys2498 Widex Reabilitação Auditiva Unip (Portugal)'),
(114640, 'https://ror.org/05j00sy30', 'en', 1, 'https://ror.org/05j00sy30 Idorsia Pharmaceuticals Ltd, Idorsia Pharmaceuticals Ltd (Switzerland)'),
(114641, 'https://ror.org/05j0vwh63', 'en', 1, 'https://ror.org/05j0vwh63 Bangladesh Institute of Governance and Management'),
(114642, 'https://ror.org/05j136930', 'es', 1, 'https://ror.org/05j136930 Universidad de las Fuerzas Armadas ESPE University of the Armed Forces (ESPE)'),
(114643, 'https://ror.org/05j2f5w22', 'pt', 1, 'https://ror.org/05j2f5w22 Sistema Nacional de Informação de Recursos Hídricos'),
(114644, 'https://ror.org/05j2h7h24', 'en', 1, 'https://ror.org/05j2h7h24 Zambia Information and Communications Technology Authority, Zambia Information and Communications Technology Authority (ZICTA)'),
(114645, 'https://ror.org/05j2hty04', 'en', 1, 'https://ror.org/05j2hty04 Oda Bultum University'),
(114646, 'https://ror.org/05j3atf73', 'fr', 1, 'https://ror.org/05j3atf73'),
(114647, 'https://ror.org/05j6fvn87', 'en', 1, 'https://ror.org/05j6fvn87 Singapore University of Technology and Design ę–°åŠ å”ē§‘ęŠ€č®¾č®”å¤§å­¦'),
(114648, 'https://ror.org/05j8ejf75', 'id', 1, 'https://ror.org/05j8ejf75 Universitas Islam Negeri Sulthan Thaha Saifuddin Jambi'),
(114649, 'https://ror.org/05jatax32', 'no_lang_code', 1, 'https://ror.org/05jatax32 MSD (Portugal)'),
(114650, 'https://ror.org/05jc8b719', 'en', 1, 'https://ror.org/05jc8b719 Royal Birmingham Conservatoire'),
(114651, 'https://ror.org/05jcmg235', 'pt', 1, 'https://ror.org/05jcmg235 Sociedade Portuguesa do Acidente Vascular Cerebral'),
(114652, 'https://ror.org/05je79696', 'fr', 1, 'https://ror.org/05je79696 Interdisciplinary Laboratory for Continental Environments Laboratoire Interdisciplinaire des Environnements Continentaux'),
(114653, 'https://ror.org/05jet6f92', 'fr', 1, 'https://ror.org/05jet6f92 Centre de Recherche de Droit International PrivƩ et du Commerce International'),
(114654, 'https://ror.org/05jewg405', 'en', 1, 'https://ror.org/05jewg405 Kaminari Medical, Kaminari Medical (Netherlands)'),
(114655, 'https://ror.org/05jg29s84', 'en', 1, 'https://ror.org/05jg29s84 Hachioji Medical Association äø€čˆ¬ē¤¾å›£ę³•äŗŗå…«ēŽ‹å­åø‚åŒ»åø«ä¼š'),
(114656, 'https://ror.org/05jjkap67', 'en', 1, 'https://ror.org/05jjkap67 Institute for Information and Communications Policy ē·å‹™ēœęƒ…å ±é€šäæ”ę”æē­–ē ”ē©¶ę‰€'),
(114657, 'https://ror.org/05jjtbe25', 'en', 1, 'https://ror.org/05jjtbe25 Sagami Chemical Research Institute ē›øęØ”äø­å¤®åŒ–å­¦ē ”ē©¶ę‰€'),
(114658, 'https://ror.org/05jna1677', 'es', 1, 'https://ror.org/05jna1677 ClĆ­nica privada de Ojos Dr. Enrique Alza Dr. Enrique Alza Private Eye Clinic'),
(114659, 'https://ror.org/05jnvbc31', 'en', 1, 'https://ror.org/05jnvbc31 Astana IT University'),
(114660, 'https://ror.org/05jp5ja73', 'pt', 1, 'https://ror.org/05jp5ja73 Centro de Estudos de História do Atlântico Alberto Vieira'),
(114661, 'https://ror.org/05jpvfw41', 'pt', 1, 'https://ror.org/05jpvfw41 TecMinho'),
(114662, 'https://ror.org/05jv76h83', 'en', 1, 'https://ror.org/05jv76h83 Japan Society for Atmospheric Environment å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§ę°—ē’°å¢ƒå­¦ä¼š'),
(114663, 'https://ror.org/05jvzd424', 'pt', 1, 'https://ror.org/05jvzd424 Centro de Estudos JudiciƔrios'),
(114664, 'https://ror.org/05jxd4z48', 'en', 1, 'https://ror.org/05jxd4z48 The Society for Biotechnology, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”Ÿē‰©å·„å­¦ä¼š'),
(114665, 'https://ror.org/05jxfge78', 'fr', 1, 'https://ror.org/05jxfge78 Institut national de l’information gĆ©ographique et forestiĆØre National Geographic Institute'),
(114666, 'https://ror.org/05k000j23', 'fr', 1, 'https://ror.org/05k000j23 Laboratoire de MĆ©canique et d''EnergĆ©tique d''Ɖvry'),
(114667, 'https://ror.org/05k0jdv03', 'pt', 1, 'https://ror.org/05k0jdv03 Pólo de Inovação em Engenharia de Polímeros'),
(114668, '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'),
(114669, 'https://ror.org/05k0s5494', 'en', 1, 'https://ror.org/05k0s5494 Children''s Hospital at Westmead'),
(114670, 'https://ror.org/05k0wa595', 'es', 1, 'https://ror.org/05k0wa595 Consejo Mexiquense de Ciencia y TecnologĆ­a'),
(114671, 'https://ror.org/05k0zs997', 'en', 1, 'https://ror.org/05k0zs997 Sofar Ocean, Sofar Ocean (United States)'),
(114672, 'https://ror.org/05k12ah57', 'en', 1, 'https://ror.org/05k12ah57 Japan Camera Industry Institute äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚«ćƒ”ćƒ©č²”å›£'),
(114673, 'https://ror.org/05k2sd416', 'fr', 1, 'https://ror.org/05k2sd416 Centre de Recherche en Economie et Droit Paris Center for Law and Economics'),
(114674, 'https://ror.org/05k4wb327', 'en', 1, 'https://ror.org/05k4wb327 Maharashtra Institute of Dental Science and Research'),
(114675, 'https://ror.org/05k65ce46', 'nl', 1, 'https://ror.org/05k65ce46 Parkinson Vereniging'),
(114676, 'https://ror.org/05k6dh252', 'es', 1, 'https://ror.org/05k6dh252 Centro Peninsular en Humanidades y Ciencias Sociales'),
(114677, 'https://ror.org/05k6f2980', 'en', 1, 'https://ror.org/05k6f2980 Hyogo Prefectural Center for Advanced Science and Technonogy å…µåŗ«ēœŒē«‹å…ˆē«Æē§‘å­¦ęŠ€č”“ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(114678, 'https://ror.org/05k9wmt43', 'fr', 1, 'https://ror.org/05k9wmt43 Formation et apprentissages professionnels'),
(114679, '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'),
(114680, 'https://ror.org/05kapbh20', 'en', 1, 'https://ror.org/05kapbh20 Niigata Prefectural Government ę–°ę½ŸēœŒåŗ'),
(114681, 'https://ror.org/05kay3028', 'en', 1, 'https://ror.org/05kay3028 SU Tech Elsewedy University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŁŠŲÆŁŠ Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(114682, 'https://ror.org/05kb8h459', 'en', 1, 'https://ror.org/05kb8h459 UmeƄ Universitet UmeƄ University Uumajan Yliopisto'),
(114683, 'https://ror.org/05kbhwa49', 'en', 1, 'https://ror.org/05kbhwa49 Vlatacom Institute, Vlatacom Institute (Serbia) Vlatacom institut visokih tehnologija d.o.o.'),
(114684, 'https://ror.org/05kc6dc21', 'en', 1, 'https://ror.org/05kc6dc21 Tianshui Normal University å¤©ę°“åøˆčŒƒå­¦é™¢ę¬¢čæŽę‚Ø'),
(114685, 'https://ror.org/05ke5hb07', 'en', 1, 'https://ror.org/05ke5hb07 Paul Langerhans Institut Dresden Paul Langerhans Institute Dresden'),
(114686, 'https://ror.org/05ke6rn16', 'en', 1, 'https://ror.org/05ke6rn16 Eduvos'),
(114687, 'https://ror.org/05kf0bf77', 'en', 1, 'https://ror.org/05kf0bf77 Canadian University of Bangladesh'),
(114688, 'https://ror.org/05kh1qs05', 'en', 1, 'https://ror.org/05kh1qs05 Institut für Angewandte Manuelle Therapie Institute for Applied Manual Therapy'),
(114689, 'https://ror.org/05khzk066', 'en', 1, 'https://ror.org/05khzk066 Association for Water and Rural Development'),
(114690, 'https://ror.org/05kph4940', 'en', 1, 'https://ror.org/05kph4940 Forskningsinstitutet fƶr informationsteknologi Helsinki Institute for Information Technology Tietotekniikan tutkimuslaitos'),
(114691, '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'),
(114692, 'https://ror.org/05kqr5637', 'en', 1, 'https://ror.org/05kqr5637 The Association for Promotion of Advanced Broadcasting Services äø€čˆ¬ē¤¾å›£ę³•äŗŗę”¾é€ć‚µćƒ¼ćƒ“ć‚¹é«˜åŗ¦åŒ–ęŽØé€²å”ä¼š'),
(114693, 'https://ror.org/05krs5044', 'en', 1, 'https://ror.org/05krs5044 Prifysgol Sheffield University of Sheffield'),
(114694, 'https://ror.org/05kt9ar58', 'en', 1, 'https://ror.org/05kt9ar58 Research Institute of Construction and Economy äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ēµŒęøˆē ”ē©¶ę‰€'),
(114695, 'https://ror.org/05ktbsm52', 'en', 1, 'https://ror.org/05ktbsm52 Burnet Institute'),
(114696, 'https://ror.org/05ktpad22', 'fr', 1, 'https://ror.org/05ktpad22 Centre Pierre Naville'),
(114697, 'https://ror.org/05m1y4204', 'en', 1, 'https://ror.org/05m1y4204 Serbian Academy of Sciences and Arts'),
(114698, 'https://ror.org/05m2a2x14', 'en', 1, 'https://ror.org/05m2a2x14 Le ministère de la Santé Saskatchewan Health'),
(114699, 'https://ror.org/05m35m789', 'es', 1, 'https://ror.org/05m35m789 Universidad Europea de Valencia'),
(114700, 'https://ror.org/05m37v666', 'en', 1, 'https://ror.org/05m37v666 PƤdagogische Hochschule St.Gallen St.Gallen University of Teacher Education'),
(114701, 'https://ror.org/05m3rf228', 'en', 1, 'https://ror.org/05m3rf228 KMEA Engineering College'),
(114702, 'https://ror.org/05m5b8x20', 'en', 1, 'https://ror.org/05m5b8x20 Sidney Kimmel Comprehensive Cancer Center'),
(114703, 'https://ror.org/05m5trf73', 'en', 1, 'https://ror.org/05m5trf73 General Hospital Uzice ЗГравствени центар Ужице'),
(114704, 'https://ror.org/05m7sjn28', 'en', 1, 'https://ror.org/05m7sjn28 Japanese Society of Pediatric Cardiology and Cardiac Surgery ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å°å…å¾Ŗē’°å™Øå­¦ä¼š'),
(114705, 'https://ror.org/05m83tk71', 'en', 1, 'https://ror.org/05m83tk71 M S Ramaiah Institute of Management'),
(114706, 'https://ror.org/05m8pzq90', 'en', 1, 'https://ror.org/05m8pzq90 Institut de Recherches Cliniques de MontrƩal, Montreal Clinical Research Institute'),
(114707, 'https://ror.org/05m92zc22', 'en', 1, 'https://ror.org/05m92zc22 Czech Centre for Phenogenomics České centrum pro fenogenomiku'),
(114708, 'https://ror.org/05maz1p71', 'en', 1, 'https://ror.org/05maz1p71 The London Interdisciplinary School'),
(114709, 'https://ror.org/05mbb3g87', 'en', 1, 'https://ror.org/05mbb3g87 Akitsu Kounoike Hospital åŒ»ē™‚ę³•äŗŗé“»ę± ä¼šē§‹ę“„é“»ę± ē—…é™¢'),
(114710, 'https://ror.org/05mdm6g98', 'en', 1, 'https://ror.org/05mdm6g98 Federal Budgetary Institution "Research Center for Applied Metrology - Rostest" Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр приклаГной метрологии – Ростест»'),
(114711, 'https://ror.org/05me1j380', 'pt', 1, 'https://ror.org/05me1j380 CĆ¢mara Municipal da Amadora'),
(114712, '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'),
(114713, 'https://ror.org/05mf37487', 'en', 1, 'https://ror.org/05mf37487 U.S. Virgin Islands Division of Fish and Wildlife'),
(114714, 'https://ror.org/05mhc7495', 'en', 1, 'https://ror.org/05mhc7495 The Japan Diabetes Society äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē³–å°æē—…å­¦ä¼š'),
(114715, 'https://ror.org/05mhx5h16', 'fr', 1, 'https://ror.org/05mhx5h16 Ɖcole Nationale SupĆ©rieure d''Architecture de Lyon'),
(114716, 'https://ror.org/05mjmsc11', 'en', 1, 'https://ror.org/05mjmsc11 Northern Hospital'),
(114717, 'https://ror.org/05mk2jr28', 'es', 1, 'https://ror.org/05mk2jr28 Instituto de Investigaciones Sociales'),
(114718, 'https://ror.org/05mm0t389', 'pt', 1, 'https://ror.org/05mm0t389 Escola de Pós-Graduação e Formação Avançada'),
(114719, 'https://ror.org/05mmg7t28', 'en', 1, 'https://ror.org/05mmg7t28 Universidad del Pacifico University of the Pacific');
INSERT INTO `rors` VALUES
(114720, 'https://ror.org/05mqwtr17', 'fr', 1, 'https://ror.org/05mqwtr17 Histoire, ArchƩologie, LittƩratures des Mondes ChrƩtiens et Musulmans MƩdiƩvaux'),
(114721, 'https://ror.org/05mr2mp15', 'en', 1, 'https://ror.org/05mr2mp15 Surya Sen Mahavidyalaya'),
(114722, 'https://ror.org/05mt63e64', 'no_lang_code', 1, 'https://ror.org/05mt63e64 AstraZeneca (Portugal)'),
(114723, 'https://ror.org/05mwex884', 'no_lang_code', 1, 'https://ror.org/05mwex884 CIENGIS (Portugal), CIENGIS, S.A.'),
(114724, 'https://ror.org/05mx0bp18', 'en', 1, 'https://ror.org/05mx0bp18 Ministry of Interior'),
(114725, 'https://ror.org/05mzhke23', 'en', 1, 'https://ror.org/05mzhke23 Kansai Photon Science Institute 関脿光科学研究所'),
(114726, 'https://ror.org/05mzxk449', 'fr', 1, 'https://ror.org/05mzxk449 Association pour la diffusion de la recherche francophone en intelligence artificielle'),
(114727, 'https://ror.org/05n0rxa32', 'en', 1, 'https://ror.org/05n0rxa32 The Association of Powder Process Industry and Engineering, JAPAN äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē²‰ä½“å·„ę„­ęŠ€č”“å”ä¼š'),
(114728, 'https://ror.org/05n2cz176', 'en', 1, 'https://ror.org/05n2cz176 Muğla Sıtkı Koçman Üniversitesi Muğla University'),
(114729, 'https://ror.org/05n3gf051', 'en', 1, 'https://ror.org/05n3gf051 Abdulrahman Al-Sumait University Ų¬Ų§Ł…Ų¹Ų© عبدالرحمن Ų§Ł„Ų³Ł…ŁŠŲ·'),
(114730, 'https://ror.org/05n3san77', 'pt', 1, 'https://ror.org/05n3san77 Sociedade Portuguesa da Psicanalise'),
(114731, 'https://ror.org/05n694h24', 'pt', 1, 'https://ror.org/05n694h24 Biblioteca UniversitÔria João Paulo II'),
(114732, 'https://ror.org/05n7r7c91', 'en', 1, 'https://ror.org/05n7r7c91 International Society of Biomechanics in Sports'),
(114733, 'https://ror.org/05n7xcf53', 'es', 1, 'https://ror.org/05n7xcf53 Instituto de Investigación Sanitaria de Santiago'),
(114734, 'https://ror.org/05n86fa68', 'es', 1, 'https://ror.org/05n86fa68 Center or Research on North America Centro de Investigaciones sobre AmƩrica del Norte'),
(114735, 'https://ror.org/05n8tts92', 'ms', 1, 'https://ror.org/05n8tts92 MARA University of Technology Universiti Teknologi MARA'),
(114736, 'https://ror.org/05nan2a61', 'id', 1, 'https://ror.org/05nan2a61 Sekolah Tinggi Ilmu Pemerintahan Abdi Negara'),
(114737, 'https://ror.org/05nfch282', 'en', 1, 'https://ror.org/05nfch282 BillionToOne, BillionToOne (United States)'),
(114738, 'https://ror.org/05ng8e884', 'en', 1, 'https://ror.org/05ng8e884 Institute of Economics Magyar TudomƔnyos AkadƩmia KƶzgazdasƔgtudomƔnyi IntƩzet'),
(114739, 'https://ror.org/05nghbc66', 'no_lang_code', 1, 'https://ror.org/05nghbc66 Smartwatt (Portugal), Smartwatt, S.A.'),
(114740, 'https://ror.org/05ngwf943', 'pt', 1, 'https://ror.org/05ngwf943 Instituto Superior TƩcnico Biblioteca'),
(114741, 'https://ror.org/05nksec02', 'en', 1, 'https://ror.org/05nksec02 Shirahama Foundation for Health and Welfare å…¬ē›Šč²”å›£ę³•äŗŗē™½ęµœåŒ»ē™‚ē¦ē„‰č²”å›£'),
(114742, 'https://ror.org/05nm3t079', 'en', 1, 'https://ror.org/05nm3t079 University of the City of Muntinlupa'),
(114743, 'https://ror.org/05nn4ph13', 'en', 1, 'https://ror.org/05nn4ph13 Hata Kenmin Hospital é«˜ēŸ„ēœŒē«‹å¹”å¤šć‘ć‚“ćæć‚“ē—…é™¢'),
(114744, 'https://ror.org/05nrn5x84', 'en', 1, 'https://ror.org/05nrn5x84 Institut für Intelligente interaktive Systeme Institute for Intelligent Interactive Systems'),
(114745, 'https://ror.org/05p0gmm10', 'pt', 1, 'https://ror.org/05p0gmm10 Sociedade Portuguesa de FĆ­sica'),
(114746, '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'),
(114747, 'https://ror.org/05p1j8758', 'en', 1, 'https://ror.org/05p1j8758 Kansas State University Universidad Estatal de Kansas UniversitĆ© d''Ɖtat du kansas'),
(114748, 'https://ror.org/05p1kkx35', 'en', 1, 'https://ror.org/05p1kkx35 Ellison Institute of Technology'),
(114749, 'https://ror.org/05p30rt34', 'no_lang_code', 1, 'https://ror.org/05p30rt34 SGS (Switzerland) SociƩtƩ GƩnƩrale de Surveillance'),
(114750, 'https://ror.org/05p4ndd12', 'en', 1, 'https://ror.org/05p4ndd12 U.S. Army Sustainment Command'),
(114751, 'https://ror.org/05p4q8207', 'en', 1, 'https://ror.org/05p4q8207 Tripler Army Medical Center'),
(114752, 'https://ror.org/05p52kj31', 'en', 1, 'https://ror.org/05p52kj31 Royal Brisbane and Women''s Hospital'),
(114753, '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'),
(114754, 'https://ror.org/05p83r381', 'en', 1, 'https://ror.org/05p83r381 Aichi Seaside Environment Center å…¬ē›Šč²”å›£ę³•äŗŗę„›ēŸ„č‡Øęµ·ē’°å¢ƒę•“å‚™ć‚»ćƒ³ć‚æćƒ¼'),
(114755, 'https://ror.org/05p8nb362', 'en', 1, 'https://ror.org/05p8nb362 Health Canada SantƩ Canada'),
(114756, 'https://ror.org/05p8z3f47', 'en', 1, 'https://ror.org/05p8z3f47 Purdue University System'),
(114757, 'https://ror.org/05pckj715', 'en', 1, 'https://ror.org/05pckj715 University of North Carolina at Pembroke'),
(114758, 'https://ror.org/05pe30f54', 'en', 1, 'https://ror.org/05pe30f54 Japan Society for Reproductive Medicine äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”Ÿę®–åŒ»å­¦ä¼š'),
(114759, 'https://ror.org/05pep2321', 'fr', 1, 'https://ror.org/05pep2321 Laboratoire de Droit Social'),
(114760, 'https://ror.org/05pf27s53', 'tr', 1, 'https://ror.org/05pf27s53 Alata BahƧe Kültürleri̇ Araştirma Ensti̇tüsü Müdürlüğü'),
(114761, 'https://ror.org/05pfa7h42', 'en', 1, 'https://ror.org/05pfa7h42 The Academy of Pharmaceutical Science and Technology, Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬å‰¤å­¦ä¼š'),
(114762, 'https://ror.org/05pgbm483', 'en', 1, 'https://ror.org/05pgbm483 WHO Association of Japan å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬WHO協会'),
(114763, 'https://ror.org/05pkv7077', 'en', 1, 'https://ror.org/05pkv7077 Superconducting Sensing Technology Research Association č¶…é›»å°Žć‚»ćƒ³ć‚·ćƒ³ć‚°ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(114764, 'https://ror.org/05pm2wj74', 'en', 1, 'https://ror.org/05pm2wj74 Royal School of Languages'),
(114765, 'https://ror.org/05pmj3x43', 'no_lang_code', 1, 'https://ror.org/05pmj3x43 Jacobs (United States)'),
(114766, 'https://ror.org/05pn3fc68', 'en', 1, 'https://ror.org/05pn3fc68 M&S Research Hub'),
(114767, 'https://ror.org/05pnwvj86', 'en', 0, 'https://ror.org/05pnwvj86 Institute of Marine Research Instituto de Investigaciones Marinas'),
(114768, 'https://ror.org/05ppf7q77', 'fr', 1, 'https://ror.org/05ppf7q77 Laboratoire atmosphĆØres, milieux, observations spatiales'),
(114769, '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'),
(114770, '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'),
(114771, 'https://ror.org/05pr9ef24', 'pt', 1, 'https://ror.org/05pr9ef24 Autoridade para a Prevenção e o Combate à Violência no Desporto'),
(114772, 'https://ror.org/05ps48151', 'es', 1, 'https://ror.org/05ps48151 Polytechnic University of Tlaxcala Universidad PolitƩcnica de Tlaxcala'),
(114773, 'https://ror.org/05pskjt78', 'en', 1, 'https://ror.org/05pskjt78 Akita International Association å…¬ē›Šč²”å›£ę³•äŗŗē§‹ē”°ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(114774, 'https://ror.org/05psqqq26', 'en', 1, 'https://ror.org/05psqqq26 Equity Trustees'),
(114775, 'https://ror.org/05pv70v72', 'no_lang_code', 1, 'https://ror.org/05pv70v72 Exigo Consultants, Exigo Consultores, Exigo Consultores (Portugal)'),
(114776, 'https://ror.org/05pwkex33', 'fr', 1, 'https://ror.org/05pwkex33 Observatoire des Sciences de l''Environnement de Rennes'),
(114777, '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.'),
(114778, 'https://ror.org/05pzmc409', 'en', 1, 'https://ror.org/05pzmc409 Okinawa Prefectural Police ę²–ēø„ēœŒč­¦åÆŸ'),
(114779, 'https://ror.org/05q1k5n27', 'no_lang_code', 1, 'https://ror.org/05q1k5n27 Omniservices Representations and Services, OmniserviƧos RepresentaƧƵes e ServiƧos (Portugal)'),
(114780, 'https://ror.org/05q1qnx50', 'en', 1, 'https://ror.org/05q1qnx50 Hamamatsu City Institute of Health and Environment ęµœę¾åø‚äæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(114781, 'https://ror.org/05q26tj83', 'en', 1, 'https://ror.org/05q26tj83 Consumer Co-operative Institute of Japan å…¬ē›Šč²”å›£ę³•äŗŗē”Ÿå”ē·åˆē ”ē©¶ę‰€'),
(114782, 'https://ror.org/05q27qy76', 'fr', 1, 'https://ror.org/05q27qy76 Technologie Hoola One Inc., Technologie Hoola One Inc. (Canada)'),
(114783, 'https://ror.org/05q2acf12', 'en', 1, 'https://ror.org/05q2acf12 Indian Institute of Management Mumbai ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą„ą¤‚ą¤¬ą¤ˆ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą„ą¤Æą¤µą¤øą„ą¤„ą¤¾ą¤Ŗą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¤®ą„ą¤‚ą¤¬ą¤ˆ'),
(114784, 'https://ror.org/05q2cwx50', 'en', 1, 'https://ror.org/05q2cwx50 Institut für Molecular Health Sciences Institute of Molecular Health Sciences'),
(114785, 'https://ror.org/05q2jm224', 'no_lang_code', 1, 'https://ror.org/05q2jm224 Octapharma Pharmaceutical Products, Octapharma Produtos FarmacĆŖuticos (Portugal)'),
(114786, 'https://ror.org/05q3eyj09', 'en', 1, 'https://ror.org/05q3eyj09 Aerosol d.o.o., Aerosol d.o.o. (Slovenia)'),
(114787, 'https://ror.org/05q49dx47', 'pt', 1, 'https://ror.org/05q49dx47 Centro Interdisciplinar de Estudos de GƩnero'),
(114788, 'https://ror.org/05q4tey07', 'no_lang_code', 1, 'https://ror.org/05q4tey07 Blue Quills University University nuhelot''ine thaiyots''i nistameyimâkanak Blue Quills'),
(114789, 'https://ror.org/05q9c5395', 'pt', 1, 'https://ror.org/05q9c5395 Rede Nacional de Computação Avançada'),
(114790, 'https://ror.org/05q9m0937', 'en', 1, 'https://ror.org/05q9m0937 University of Klagenfurt UniversitƤt Klagenfurt Univerza v Celovcu'),
(114791, 'https://ror.org/05qehkd24', 'en', 1, 'https://ror.org/05qehkd24 Ahmadi Hospital-Kuwait Oil Company'),
(114792, 'https://ror.org/05qfavd56', 'en', 1, 'https://ror.org/05qfavd56 University of Sciences and Arts in Lebanon Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„Ų¢ŲÆŲ§ŲØ Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ©'),
(114793, 'https://ror.org/05qfzn664', 'no_lang_code', 1, 'https://ror.org/05qfzn664 Pharol SGPS (Portugal), Pharol SGPS, S.A.'),
(114794, 'https://ror.org/05qg1fd04', 'en', 1, 'https://ror.org/05qg1fd04 Fukuoka Agriculture and Forestry Research Center ē¦å²”ēœŒč¾²ęž—ę„­ē·åˆč©¦éØ“å “'),
(114795, 'https://ror.org/05qhz9f36', 'pt', 1, 'https://ror.org/05qhz9f36 Academia ClĆ­nica Espregueira'),
(114796, 'https://ror.org/05qjwb041', 'en', 1, 'https://ror.org/05qjwb041 All India Institute of Medical Sciences Rishikesh अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‹ą¤·ą¤æą¤•ą„‡ą¤¶'),
(114797, 'https://ror.org/05qkemg93', 'en', 1, 'https://ror.org/05qkemg93 National Healthcare Group'),
(114798, 'https://ror.org/05qmj7q47', 'pt', 1, 'https://ror.org/05qmj7q47 Centro UniversitƔrio Ateneu'),
(114799, 'https://ror.org/05qmny332', 'de', 1, 'https://ror.org/05qmny332 Institut Schule und Profession Institute of Education and Professional Studies'),
(114800, 'https://ror.org/05qnjvk36', 'pt', 1, 'https://ror.org/05qnjvk36 Sociedade Portuguesa de CiĆŖncias FarmacĆŖuticas'),
(114801, 'https://ror.org/05qqr4176', 'en', 1, 'https://ror.org/05qqr4176 Center for Environmental Creative Studies äø€čˆ¬ē¤¾å›£ę³•äŗŗē’°å¢ƒå‰µé€ ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(114802, 'https://ror.org/05qqsty43', 'pt', 1, 'https://ror.org/05qqsty43 Centro de Estudos M Manuela Eloi International Language School'),
(114803, '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'),
(114804, 'https://ror.org/05qrfxd25', 'en', 1, 'https://ror.org/05qrfxd25 Russian Academy of Sciences Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук'),
(114805, 'https://ror.org/05qwb1e82', 'pt', 1, 'https://ror.org/05qwb1e82 Centro de Investigação em Educação de Adultos e Intervenção ComunitÔria'),
(114806, 'https://ror.org/05qwgg493', 'en', 1, 'https://ror.org/05qwgg493 Boston University Universidad de Boston UniversitƩ de Boston'),
(114807, 'https://ror.org/05qxybn54', 'en', 1, 'https://ror.org/05qxybn54 Kyoto Saga Art College åµÆå³Øē¾Žč”“ēŸ­ęœŸå¤§å­¦'),
(114808, 'https://ror.org/05qz1p375', 'es', 1, 'https://ror.org/05qz1p375 Centro de Estudios Sociales de AmƩrica Latina'),
(114809, 'https://ror.org/05qz4qd45', 'fr', 1, 'https://ror.org/05qz4qd45 Centre de droit public comparƩ'),
(114810, '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'),
(114811, 'https://ror.org/05r7da694', 'en', 1, 'https://ror.org/05r7da694 Fukushima Prefectural Environmental Center ē¦å³¶ēœŒē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(114812, 'https://ror.org/05r91p430', 'de', 1, 'https://ror.org/05r91p430 Praxisklinik Rennbahn AG'),
(114813, 'https://ror.org/05r94ab93', 'en', 1, 'https://ror.org/05r94ab93 Midway University'),
(114814, 'https://ror.org/05rcfc739', 'en', 1, 'https://ror.org/05rcfc739 Shenzhen Municipal People''s Government'),
(114815, 'https://ror.org/05rcyr649', 'en', 1, 'https://ror.org/05rcyr649 Japan Steel Constructors Association äø€čˆ¬ē¤¾å›£ę³•äŗŗé‰„éŖØå»ŗčØ­ę„­å”ä¼š'),
(114816, 'https://ror.org/05rdan836', 'eu', 1, 'https://ror.org/05rdan836 Leartiker'),
(114817, 'https://ror.org/05rfg0242', 'en', 1, 'https://ror.org/05rfg0242 Marmara Environmental Monitoring Project'),
(114818, 'https://ror.org/05rfqv493', 'en', 1, 'https://ror.org/05rfqv493 East Tennessee State University'),
(114819, 'https://ror.org/05rgdc794', 'no_lang_code', 1, 'https://ror.org/05rgdc794 Banco Santander (Portugal), Banco Santander Portugal, Santander Portugal Bank'),
(114820, 'https://ror.org/05rke5d69', 'ca', 1, 'https://ror.org/05rke5d69 Barcelona Institute of International Studies Institut Barcelona d''Estudis Internacionals'),
(114821, 'https://ror.org/05rkrf147', 'en', 1, 'https://ror.org/05rkrf147 Seminar for Statistics Seminar für Statistik'),
(114822, 'https://ror.org/05rmjys46', 'de', 1, 'https://ror.org/05rmjys46 Salzburg Research Forschungsgesellschaft mbH, Salzburg Research Forschungsgesellschaft mbH (Austria)'),
(114823, 'https://ror.org/05rn5n623', 'pt', 1, 'https://ror.org/05rn5n623 Centro de Estudos em Inovação Tecnologia e Políticas de Desenvolvimento'),
(114824, 'https://ror.org/05rq5rv71', 'de', 1, 'https://ror.org/05rq5rv71 CHASE center Competence Center CHASE GmbH, Competence Center CHASE GmbH (Austria)'),
(114825, 'https://ror.org/05rqwc876', 'en', 1, 'https://ror.org/05rqwc876 Cognitive & Affective Sciences Laboratory, Sciences Cognitives et Sciences Affectives'),
(114826, 'https://ror.org/05rrcem69', 'en', 1, 'https://ror.org/05rrcem69 Universidad de California en Davis University of California, Davis UniversitƩ de Californie Ơ Davis'),
(114827, 'https://ror.org/05rrfpt58', 'en', 1, 'https://ror.org/05rrfpt58 Ahi Evran University Ahi Evran Üniversitesi'),
(114828, 'https://ror.org/05rs7tq63', 'no_lang_code', 0, 'https://ror.org/05rs7tq63 Fresenius Medical Care North America (United States)'),
(114829, '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.'),
(114830, 'https://ror.org/05rsfvf53', 'en', 1, 'https://ror.org/05rsfvf53 Forward College'),
(114831, 'https://ror.org/05rtm6v16', 'en', 1, 'https://ror.org/05rtm6v16 Shandiz Institute of Higher Education Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų“Ų§Ł†ŲÆŪŒŲ² مؓهد'),
(114832, 'https://ror.org/05rwrfh97', 'fr', 1, 'https://ror.org/05rwrfh97 Institut Fourier'),
(114833, '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'),
(114834, 'https://ror.org/05s1rff82', 'fr', 1, 'https://ror.org/05s1rff82 Centre des Sciences du Goƻt et de l''Alimentation'),
(114835, 'https://ror.org/05s33m053', 'en', 1, 'https://ror.org/05s33m053 St. Francis Institute of Management and Research'),
(114836, 'https://ror.org/05s4b1t72', 'es', 1, 'https://ror.org/05s4b1t72 Hospital Universitari Joan XXIII de Tarragona'),
(114837, 'https://ror.org/05s4nk876', 'en', 1, 'https://ror.org/05s4nk876 Endo-ERN'),
(114838, 'https://ror.org/05s4p3019', 'en', 1, 'https://ror.org/05s4p3019 Sustainable Futures Collaborative'),
(114839, 'https://ror.org/05s5aag36', 'en', 1, 'https://ror.org/05s5aag36 Department of Primary Industries'),
(114840, 'https://ror.org/05s5t4n42', 'pt', 1, 'https://ror.org/05s5t4n42 Centro de Investigação em Ciências Históricas'),
(114841, 'https://ror.org/05s6rge65', 'fr', 1, 'https://ror.org/05s6rge65 Ɖcole Centrale de Lyon'),
(114842, 'https://ror.org/05s7cev82', 'de', 1, 'https://ror.org/05s7cev82 Tumor Zentrum Aarau AG, Tumor Zentrum Aargau'),
(114843, 'https://ror.org/05s8rbp47', 'en', 1, 'https://ror.org/05s8rbp47 SBI Graduate School SBI大学院大学'),
(114844, 'https://ror.org/05s8x7560', 'no_lang_code', 1, 'https://ror.org/05s8x7560 PerkinElmer (United States)'),
(114845, 'https://ror.org/05s9k3969', 'en', 1, 'https://ror.org/05s9k3969 Joshibi University of Art and Design å„³å­ē¾Žč”“å¤§å­¦'),
(114846, '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'),
(114847, 'https://ror.org/05sat2s07', 'fr', 1, 'https://ror.org/05sat2s07 Littoral, Environnement, TƩlƩdƩtection, GƩomatique'),
(114848, 'https://ror.org/05sb3ve62', 'en', 1, 'https://ror.org/05sb3ve62 The Japan Muscular Dystrophy Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē­‹ć‚øć‚¹ćƒˆćƒ­ćƒ•ć‚£ćƒ¼å”ä¼š'),
(114849, 'https://ror.org/05sb81p75', 'en', 1, 'https://ror.org/05sb81p75 Association for Rainwater Storage and Infiltration Technology å…¬ē›Šē¤¾å›£ę³•äŗŗé›Øę°“č²Æē•™ęµøé€ęŠ€č”“å”ä¼š'),
(114850, 'https://ror.org/05sbt2524', 'fr', 1, 'https://ror.org/05sbt2524 Grenoble Institute of Technology Institut polytechnique de Grenoble'),
(114851, 'https://ror.org/05scdje39', 'en', 1, 'https://ror.org/05scdje39 Association for the Conservation of Biodiversity of Kazakhstan'),
(114852, 'https://ror.org/05scq4290', 'no_lang_code', 1, 'https://ror.org/05scq4290 DXC Technology (United States)'),
(114853, 'https://ror.org/05scxf493', 'en', 1, 'https://ror.org/05scxf493 University of Al Maarif ŁƒŁ„ŁŠŲ© المعارف الجامعة'),
(114854, 'https://ror.org/05sd1pp77', 'en', 1, 'https://ror.org/05sd1pp77 International Centre for Radio Astronomy Research'),
(114855, 'https://ror.org/05sd8gr95', 'pt', 1, 'https://ror.org/05sd8gr95 Centro de Investigação e Desenvolvimento em Ciências Jurídicas Ratio Legis'),
(114856, 'https://ror.org/05se46277', 'pt', 1, 'https://ror.org/05se46277 Novotecna - Associação para o Desenvolvimento Tecnológico, Novotecna'),
(114857, 'https://ror.org/05sfvzs47', 'en', 1, 'https://ror.org/05sfvzs47 Ministry of Justice, Iran وزارت دادگستری Ų¬Ł…Ł‡ŁˆŲ±ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(114858, '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 ŠŸŃ€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Республики Узбекистан'),
(114859, 'https://ror.org/05sh9gw40', 'en', 1, 'https://ror.org/05sh9gw40 Woogene B&G Co., Ltd., Woogene B&G Co., Ltd. (South Korea) ģš°ģ§„ė¹„ģ•¤ģ§€ ģ£¼ģ‹ķšŒģ‚¬'),
(114860, 'https://ror.org/05shmma62', 'en', 1, 'https://ror.org/05shmma62 Institute of Public Health of Sabac Zavod za javno zdravlje Å abac'),
(114861, 'https://ror.org/05sj3cj25', 'no_lang_code', 1, 'https://ror.org/05sj3cj25 SPEMD Eventos CientĆ­ficos e Culturais (Portugal), SPEMD Scientific and Cultural Events'),
(114862, 'https://ror.org/05sjjha49', 'en', 1, 'https://ror.org/05sjjha49 Kohzu Precision Co., Ltd., Kohzu Precision Co., Ltd. (Japan) ē„žę“„ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(114863, 'https://ror.org/05smn7x89', 'en', 1, 'https://ror.org/05smn7x89 Sree Abirami College of Occupational Therapy'),
(114864, 'https://ror.org/05sqj2j86', 'en', 1, 'https://ror.org/05sqj2j86 Sanmu Medical Center åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗć•ć‚“ć‚€åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(114865, 'https://ror.org/05sqjae09', 'fr', 1, 'https://ror.org/05sqjae09 HƓpital HƓtel-Dieu de LƩvis'),
(114866, 'https://ror.org/05sx2xv92', 'en', 1, 'https://ror.org/05sx2xv92 Institut für Programmiersprachen und -systeme Institute for Programming Languages and Systems'),
(114867, 'https://ror.org/05sxfrm39', 'en', 1, 'https://ror.org/05sxfrm39 GlobalNeurology'),
(114868, 'https://ror.org/05sz0hh57', 'en', 1, 'https://ror.org/05sz0hh57 Karabakh University'),
(114869, 'https://ror.org/05t153d32', 'en', 1, 'https://ror.org/05t153d32 JFE Engineering Corporation, JFE Engineering Corporation (Japan) JFEć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚° ę Ŗå¼ä¼šē¤¾'),
(114870, 'https://ror.org/05t1ev189', 'en', 1, 'https://ror.org/05t1ev189 The Japan Refrigeration and Air Conditioning Industry Association äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡ē©ŗčŖæå·„ę„­ä¼š'),
(114871, 'https://ror.org/05t256516', 'pt', 1, 'https://ror.org/05t256516 Sociedade Portuguesa de Cardiologia VeterinƔria'),
(114872, 'https://ror.org/05t3x2m13', 'en', 1, 'https://ror.org/05t3x2m13 Japan Water Works Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“é“å”ä¼š'),
(114873, 'https://ror.org/05t43vz03', 'en', 1, 'https://ror.org/05t43vz03 Far Eastern Branch of the Russian Academy of Sciences Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø процессов ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(114874, 'https://ror.org/05t4ema23', 'en', 1, 'https://ror.org/05t4ema23 RV University'),
(114875, 'https://ror.org/05t5p8x70', 'no_lang_code', 0, 'https://ror.org/05t5p8x70 AmpliPhi Biosciences (United States)'),
(114876, 'https://ror.org/05t6xmn93', 'en', 1, 'https://ror.org/05t6xmn93 LINQ management, LINQ management (Germany)'),
(114877, 'https://ror.org/05t6zk898', 'pt', 1, 'https://ror.org/05t6zk898 Alto Comissariado para as MigraƧƵes'),
(114878, 'https://ror.org/05t7hrn58', 'en', 1, 'https://ror.org/05t7hrn58 Princess Elizabeth Orthopaedic Centre'),
(114879, 'https://ror.org/05t810027', 'pt', 1, 'https://ror.org/05t810027 Central Clinic Povoa Santa Iria Clínica Central Póvoa Santa Iria Lda, Clínica Central Póvoa Santa Iria Lda (Portugal)'),
(114880, 'https://ror.org/05t8y2r12', 'en', 1, 'https://ror.org/05t8y2r12 Soochow University č‹å·žå¤§å­¦'),
(114881, 'https://ror.org/05tc4vc39', 'en', 1, 'https://ror.org/05tc4vc39 Dr. Babasaheb Ambedkar Technological University ą¤”ą„‰. ą¤¬ą¤¾ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤†ą¤‚ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(114882, 'https://ror.org/05tc8mw15', 'en', 1, 'https://ror.org/05tc8mw15 LoveYourself Inc.'),
(114883, 'https://ror.org/05tewj457', 'en', 1, 'https://ror.org/05tewj457 Shanghai Municipal Education Commission'),
(114884, 'https://ror.org/05tfx2624', 'pt', 1, 'https://ror.org/05tfx2624 Estação Nacional de Fruticultura Vieira Natividade'),
(114885, 'https://ror.org/05tgyyk02', 'en', 1, 'https://ror.org/05tgyyk02 Research Institute of Communication in Art Výzkumný Ćŗstav komunikace v uměnĆ­'),
(114886, 'https://ror.org/05tj8pb04', 'fr', 1, 'https://ror.org/05tj8pb04 Abdou Moumouni University UniversitƩ Abdou Moumouni'),
(114887, 'https://ror.org/05tjew235', 'pt', 1, 'https://ror.org/05tjew235 Centro de Informação Europeia Jacques Delors'),
(114888, 'https://ror.org/05tkcgz23', 'en', 1, 'https://ror.org/05tkcgz23 Crediton Hospital'),
(114889, 'https://ror.org/05tkyf982', 'en', 1, 'https://ror.org/05tkyf982 Ben-Gurion University of the Negev ××•× ×™×‘×Ø×”×™×˜×Ŗ בן-×’×•×Ø×™×•×Ÿ בנגב Ų¬Ų§Ł…Ų¹Ų© بن ŲŗŁˆŲ±ŁŠŁˆŁ†'),
(114890, 'https://ror.org/05tme3j70', 'en', 1, 'https://ror.org/05tme3j70 Chiba Meitoku College åƒč‘‰ę˜Žå¾³ēŸ­ęœŸå¤§å­¦'),
(114891, 'https://ror.org/05tqa9940', 'en', 1, 'https://ror.org/05tqa9940 University of Kerala UniversitĆ© du kerala কেরল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ கேரளா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“•ąµ‡ą“°ą“³ ą“øąµ¼ ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(114892, 'https://ror.org/05tqgjy81', 'en', 1, 'https://ror.org/05tqgjy81 Ministry of Education وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ©'),
(114893, 'https://ror.org/05ttb7q93', 'en', 1, 'https://ror.org/05ttb7q93 Manitoba Geological Survey'),
(114894, '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)'),
(114895, 'https://ror.org/05tw07694', 'pt', 1, 'https://ror.org/05tw07694 Rede de Investigação sobre Condições de Trabalho'),
(114896, 'https://ror.org/05twwhs70', 'no_lang_code', 1, 'https://ror.org/05twwhs70 State Grid Corporation of China (China) å›½å®¶ē”µē½‘å…¬åø'),
(114897, 'https://ror.org/05txewa23', 'en', 1, 'https://ror.org/05txewa23 Okehampton Hospital'),
(114898, 'https://ror.org/05tzrdd39', 'no_lang_code', 1, 'https://ror.org/05tzrdd39 Leo Pharma (Denmark)'),
(114899, 'https://ror.org/05v01mk25', 'en', 1, 'https://ror.org/05v01mk25 Division of Earth Sciences'),
(114900, 'https://ror.org/05v0eqq44', 'id', 1, 'https://ror.org/05v0eqq44 Universitas Harapan Bangsa'),
(114901, 'https://ror.org/05v10bv14', 'no_lang_code', 1, 'https://ror.org/05v10bv14 Researcherenye Wappayalawangka - Central Australia Academic Health Science Network'),
(114902, 'https://ror.org/05v10js27', 'fr', 1, 'https://ror.org/05v10js27 CEAO - Centre des Etudes Arabes et Orientales, Centre des Etudes Arabes et Orientales'),
(114903, 'https://ror.org/05v1yhp25', 'pt', 1, 'https://ror.org/05v1yhp25 Laboratório Colaborativo para a Bioeconomia Azul'),
(114904, 'https://ror.org/05v4dza81', 'id', 1, 'https://ror.org/05v4dza81 Syiah Kuala University Universitas Syiah Kuala'),
(114905, 'https://ror.org/05v54wa38', 'en', 1, 'https://ror.org/05v54wa38 The Asahi Glass Foundation å…¬ē›Šč²”å›£ę³•äŗŗę—­ē”å­č²”å›£'),
(114906, 'https://ror.org/05v78qy15', 'en', 1, 'https://ror.org/05v78qy15 Naval Medical Research Unit INDO PACIFIC'),
(114907, 'https://ror.org/05v7vr423', 'pt', 1, 'https://ror.org/05v7vr423 Sociedade Portuguesa de Antropologia e Etnologia'),
(114908, 'https://ror.org/05v8m3s60', 'id', 1, 'https://ror.org/05v8m3s60 Nusamandiri University Universitas Nusa Mandiri'),
(114909, 'https://ror.org/05v8zes35', 'en', 1, 'https://ror.org/05v8zes35 Broadcast Programming Center of Japan å…¬ē›Šč²”å›£ę³•äŗŗę”¾é€ē•Ŗēµ„ć‚»ćƒ³ć‚æćƒ¼'),
(114910, 'https://ror.org/05v9jgm78', 'no_lang_code', 1, 'https://ror.org/05v9jgm78 MyFace Academy, MyFace Academy (Portugal)'),
(114911, 'https://ror.org/05vg07g77', 'en', 1, 'https://ror.org/05vg07g77 Aravind Eye Hospital'),
(114912, 'https://ror.org/05vgzn161', 'es', 1, 'https://ror.org/05vgzn161 Central Institute of Pedagogical Sciences Instituto Central de Ciencias Pedagógicas'),
(114913, 'https://ror.org/05vmx1h48', 'en', 1, 'https://ror.org/05vmx1h48 The Microsampling Laboratory'),
(114914, 'https://ror.org/05vmyz452', 'de', 0, 'https://ror.org/05vmyz452 Deutsches Historisches Institut Moskau German Historical Institute Moscow Германский исторический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ в Москве'),
(114915, 'https://ror.org/05vrgj110', 'en', 1, 'https://ror.org/05vrgj110 Baptist College of Theology, Obinze'),
(114916, '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'),
(114917, 'https://ror.org/05vzafd60', 'en', 1, 'https://ror.org/05vzafd60 Georgetown University Universidad de Georgetown UniversitƩ de Georgetown'),
(114918, 'https://ror.org/05w2bye72', 'es', 1, 'https://ror.org/05w2bye72 Grupo de Ecología y Conservación de Islas, A.C.'),
(114919, 'https://ror.org/05w3vvc59', 'fr', 1, 'https://ror.org/05w3vvc59 Interactions HƓte-Greffon-Tumeur & IngƩnierie Cellulaire et GƩnique'),
(114920, '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'),
(114921, 'https://ror.org/05w5gh811', 'en', 1, 'https://ror.org/05w5gh811 GBS/CIDP Foundation International'),
(114922, 'https://ror.org/05w5m7541', 'en', 1, 'https://ror.org/05w5m7541 The Mori Memorial Foundation äø€čˆ¬č²”å›£ę³•äŗŗę£®čØ˜åæµč²”å›£'),
(114923, 'https://ror.org/05w758267', 'pt', 1, 'https://ror.org/05w758267 Sociedade Portuguesa de QuĆ­mica'),
(114924, 'https://ror.org/05w75gv97', 'en', 1, 'https://ror.org/05w75gv97 National Football League'),
(114925, 'https://ror.org/05w9erc61', 'en', 1, 'https://ror.org/05w9erc61 Chongqing Science and Technology Commission'),
(114926, 'https://ror.org/05wa8m537', 'no_lang_code', 1, 'https://ror.org/05wa8m537 AG da Cunha Ferreira (Portugal)'),
(114927, 'https://ror.org/05wag9297', 'en', 1, 'https://ror.org/05wag9297 Van der Waals-Zeeman Institute'),
(114928, 'https://ror.org/05wdzdd31', 'en', 1, 'https://ror.org/05wdzdd31 The Japanese Midwives Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŠ©ē”£åø«ä¼š'),
(114929, 'https://ror.org/05weqsy81', 'en', 1, 'https://ror.org/05weqsy81 CoLab4Food'),
(114930, 'https://ror.org/05wf13d42', 'pt', 1, 'https://ror.org/05wf13d42 CoLAB BIOREF'),
(114931, 'https://ror.org/05wf1w785', 'en', 1, 'https://ror.org/05wf1w785 Hope Foundation'),
(114932, 'https://ror.org/05wg0mj66', 'en', 1, 'https://ror.org/05wg0mj66 Global Mountain Action'),
(114933, 'https://ror.org/05whd1183', 'en', 1, 'https://ror.org/05whd1183 Ventio, Ventio (France)'),
(114934, 'https://ror.org/05wjjh025', 'en', 1, 'https://ror.org/05wjjh025 American Society for Inclusion, Diversity, and Equity in Healthcare (ASIDE)'),
(114935, 'https://ror.org/05wk90v81', 'en', 1, 'https://ror.org/05wk90v81 Central Research Institute for Machine Building Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(114936, 'https://ror.org/05wke6r62', 'pt', 1, 'https://ror.org/05wke6r62 Centro de Ɖtica Polƭtica e Sociedade'),
(114937, 'https://ror.org/05wkfym33', 'en', 1, 'https://ror.org/05wkfym33 Cystic Fibrosis Ireland'),
(114938, 'https://ror.org/05wkmpm88', 'en', 1, 'https://ror.org/05wkmpm88 EDF LAB Singapore Pte Ltd, EDF LAB Singapore Pte Ltd (Singapore)'),
(114939, 'https://ror.org/05wm6p530', 'pt', 1, 'https://ror.org/05wm6p530 Universidade Portucalense'),
(114940, 'https://ror.org/05wma2347', 'it', 1, 'https://ror.org/05wma2347 SocietĆ  Italiana dell’Ipertensione Arteriosa'),
(114941, 'https://ror.org/05wn7r715', 'en', 1, 'https://ror.org/05wn7r715 Western Washington University'),
(114942, 'https://ror.org/05wnp9598', 'en', 1, 'https://ror.org/05wnp9598 Air Education and Training Command'),
(114943, 'https://ror.org/05wq91d49', 'sv', 1, 'https://ror.org/05wq91d49 Region JƤmtland HƤrjedalen'),
(114944, 'https://ror.org/05wqert96', 'pt', 1, 'https://ror.org/05wqert96 Arquivo Nacional da Torre do Tombo'),
(114945, 'https://ror.org/05ws4bn80', 'pl', 1, 'https://ror.org/05ws4bn80 Polskie Towarzystwo Teologiczne'),
(114946, 'https://ror.org/05wsqf852', 'en', 1, 'https://ror.org/05wsqf852 Rokko Island Kohnan Hospital å…¬ē›Šč²”å›£ę³•äŗŗē”²å—ä¼šå…­ē”²ć‚¢ć‚¤ćƒ©ćƒ³ćƒ‰ē”²å—ē—…é™¢, å…­ē”²ć‚¢ć‚¤ćƒ©ćƒ³ćƒ‰ē”²å—ē—…é™¢'),
(114947, 'https://ror.org/05wswj918', 'en', 1, 'https://ror.org/05wswj918 HUN-REN Centre for Energy Research HUN-REN EnergiatudomÔnyi Kutatóközpont'),
(114948, 'https://ror.org/05wvpxv85', 'en', 1, 'https://ror.org/05wvpxv85 Tufts University'),
(114949, 'https://ror.org/05wxj1991', 'en', 1, 'https://ror.org/05wxj1991 The Graduate School of Social Design ē¤¾ä¼šę§‹ęƒ³å¤§å­¦é™¢å¤§å­¦'),
(114950, 'https://ror.org/05wykb893', 'en', 1, 'https://ror.org/05wykb893 Elliniki Archi Geologikon Kai Metalleftikon Erevnon, Ελληνική Αρχή Ī“ĪµĻ‰Ī»ĪæĪ³Ī¹ĪŗĻŽĪ½ & ĪœĪµĻ„Ī±Ī»Ī»ĪµĻ…Ļ„Ī¹ĪŗĻŽĪ½ Ī•ĻĪµĻ…Ī½ĻŽĪ½ Hellenic Survey of Geology and Mineral Exploration'),
(114951, 'https://ror.org/05wzf8525', 'en', 1, 'https://ror.org/05wzf8525 Energy Institute for Higher Education Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų§Ł†Ų±Ś˜ŪŒ'),
(114952, 'https://ror.org/05x0g9h76', 'en', 1, 'https://ror.org/05x0g9h76 DunaújvÔrosi Egyetem University of DunaújvÔros'),
(114953, 'https://ror.org/05x14st26', 'pt', 1, 'https://ror.org/05x14st26 Direção de História e Cultura Militar'),
(114954, 'https://ror.org/05x2bcf33', 'en', 1, 'https://ror.org/05x2bcf33 Carnegie Mellon University'),
(114955, 'https://ror.org/05x3m4218', 'en', 1, 'https://ror.org/05x3m4218 BGI Research, Wuhan ę­¦ę±‰åŽå¤§ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(114956, 'https://ror.org/05x3w7z93', 'en', 1, 'https://ror.org/05x3w7z93 Express Highway Research Foundation of Japan å…¬ē›Šč²”å›£ę³•äŗŗé«˜é€Ÿé“č·ÆčŖæęŸ»ä¼š'),
(114957, 'https://ror.org/05x4gcn89', 'en', 1, 'https://ror.org/05x4gcn89 College of Technical Sciences Derna ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŁŁ†ŁŠŲ© درنة'),
(114958, 'https://ror.org/05xbwdt61', 'en', 1, 'https://ror.org/05xbwdt61 Ibaraki Nursing Association å…¬ē›Šē¤¾å›£ę³•äŗŗčŒØåŸŽēœŒēœ‹č­·å”ä¼š'),
(114959, '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'),
(114960, 'https://ror.org/05xde4j27', 'en', 1, 'https://ror.org/05xde4j27 United States Naval Hospital Okinawa ē±³å›½ęµ·č»ē—…é™¢'),
(114961, 'https://ror.org/05xdkcv71', 'en', 1, 'https://ror.org/05xdkcv71 Strategies for Open Science (Stratos)'),
(114962, 'https://ror.org/05xejcn14', 'en', 1, 'https://ror.org/05xejcn14 The Japanese Orthopaedic Association å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę•“å½¢å¤–ē§‘å­¦ä¼š'),
(114963, 'https://ror.org/05xjn4769', 'no_lang_code', 1, 'https://ror.org/05xjn4769 Topcon (Netherlands)'),
(114964, 'https://ror.org/05xk1kx14', 'en', 1, 'https://ror.org/05xk1kx14 Dynamic Ideas, Dynamic Ideas (United States)'),
(114965, 'https://ror.org/05xnn8353', 'en', 1, 'https://ror.org/05xnn8353 Japan Greenery Research and Development Center äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē·‘åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(114966, 'https://ror.org/05xq5xh16', 'en', 1, 'https://ror.org/05xq5xh16 Central Research Services, Inc. äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å¤®čŖæęŸ»ē¤¾'),
(114967, 'https://ror.org/05xs1pz44', 'en', 1, 'https://ror.org/05xs1pz44 Uekusa Gakuen Junior College ę¤č‰å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(114968, 'https://ror.org/05xtcg731', 'en', 1, 'https://ror.org/05xtcg731 Fukuchiyama City Hospital åø‚ē«‹ē¦ēŸ„å±±åø‚ę°‘ē—…é™¢'),
(114969, 'https://ror.org/05xtthp47', 'pt', 1, 'https://ror.org/05xtthp47 Parques de Sintra Monte da Lua SA'),
(114970, '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'),
(114971, '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'),
(114972, '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) Ā«ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ среГств меГицинского ŠæŃ€ŠøŠ¼ŠµŠ½ŠµŠ½ŠøŃĀ» ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации (ФГБУ Ā«ŠŠ¦Š­Š”ŠœŠŸĀ» ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России)'),
(114973, 'https://ror.org/05y03jg42', 'en', 1, 'https://ror.org/05y03jg42 Exmouth Hospital'),
(114974, 'https://ror.org/05y050b06', 'en', 1, 'https://ror.org/05y050b06 Society for AgroEnvironmental Sustainability'),
(114975, 'https://ror.org/05y121968', 'en', 1, 'https://ror.org/05y121968 Afro-American University of Central Africa'),
(114976, 'https://ror.org/05y184w12', 'en', 1, 'https://ror.org/05y184w12 New Energy Foundation äø€čˆ¬č²”å›£ę³•äŗŗę–°ć‚Øćƒćƒ«ć‚®ćƒ¼č²”å›£'),
(114977, 'https://ror.org/05y2y7178', 'en', 1, 'https://ror.org/05y2y7178 Fun Languages'),
(114978, 'https://ror.org/05y381977', 'no_lang_code', 1, 'https://ror.org/05y381977 Pfizer (Ireland)'),
(114979, 'https://ror.org/05y39br74', 'pt', 1, 'https://ror.org/05y39br74 Unidade Local de SaĆŗde de Braga'),
(114980, 'https://ror.org/05y3vhx59', 'no_lang_code', 1, 'https://ror.org/05y3vhx59 Brainanswer (Portugal)'),
(114981, 'https://ror.org/05y4bwy94', 'es', 1, 'https://ror.org/05y4bwy94 Escuela Normal de San Felipe del Progreso'),
(114982, 'https://ror.org/05y6sxq90', 'en', 1, 'https://ror.org/05y6sxq90 Osaka Tokiwakai Junior College 大阪常磐会大学短期大学部'),
(114983, 'https://ror.org/05y762451', 'en', 1, 'https://ror.org/05y762451 Institut für Quantenelektronik Institute for Quantum Electronics'),
(114984, 'https://ror.org/05y7zcx10', 'en', 1, 'https://ror.org/05y7zcx10 Tokyo Shinagawa Hospital åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·‘é‡Žä¼šę±äŗ¬å“å·ē—…é™¢'),
(114985, 'https://ror.org/05y8y6598', 'en', 1, 'https://ror.org/05y8y6598 FIRST Center for Micro- and Nanoscience'),
(114986, 'https://ror.org/05y9nn961', 'en', 1, 'https://ror.org/05y9nn961 EVICR Network'),
(114987, 'https://ror.org/05ya3ee02', 'en', 1, 'https://ror.org/05ya3ee02 David Grant USAF Medical Center'),
(114988, 'https://ror.org/05ybfpg54', 'fr', 1, 'https://ror.org/05ybfpg54 SociƩtƩ de MathƩmatiques AppliquƩes et Industrielles'),
(114989, 'https://ror.org/05yck4460', 'id', 1, 'https://ror.org/05yck4460 Sekolah Tinggi Pastoral - Yayasan Institut Pastoral Indonesia Malang'),
(114990, 'https://ror.org/05yd19040', 'fr', 1, 'https://ror.org/05yd19040 Higher institute for environmental engineering and management - ISIGE, Mines Paris, PSL University, Higher institute for environmental engineering and management (ISIGE) Institut SupĆ©rieur d''IngĆ©nierie et Gestion de l''Environnement - ISIGE, Mines Paris, UniversitĆ© PSL, Institut SupĆ©rieur d’IngĆ©nierie et Gestion de l''Environnement (ISIGE)'),
(114991, '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'),
(114992, 'https://ror.org/05yehah71', 'en', 1, 'https://ror.org/05yehah71 Kyoto City International Foundation å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½åø‚å›½éš›äŗ¤ęµå”ä¼š'),
(114993, 'https://ror.org/05yemb122', 'en', 1, 'https://ror.org/05yemb122 United States Africa Command'),
(114994, 'https://ror.org/05yf8st19', 'en', 1, 'https://ror.org/05yf8st19 Naval Medical Research Unit San Antonio'),
(114995, 'https://ror.org/05ygfpx91', 'de', 0, 'https://ror.org/05ygfpx91 SRH Fernhochschule Riedlingen'),
(114996, 'https://ror.org/05ygqar59', 'en', 1, 'https://ror.org/05ygqar59 Maharshi Dayanand Science College, Porbandar'),
(114997, 'https://ror.org/05yj2y557', 'fr', 1, 'https://ror.org/05yj2y557 DƩpartement de Recherche en IngƩnierie des VƩhicules pour l''Environnement'),
(114998, 'https://ror.org/05ykkaq96', 'pt', 1, 'https://ror.org/05ykkaq96 Pavilhão do Conhecimento-Centro Ciência Viva'),
(114999, 'https://ror.org/05ymfsn43', 'no_lang_code', 1, 'https://ror.org/05ymfsn43 EnviSolutions, EnviSolutions (Portugal)'),
(115000, 'https://ror.org/05ynxx418', 'en', 1, 'https://ror.org/05ynxx418 Linkƶping University Linkƶpingin Yliopisto Linkƶpings Universitet'),
(115001, 'https://ror.org/0000n5x09', 'fr', 1, 'https://ror.org/0000n5x09 Agropolymer Engineering and Emerging Technologies Ingénierie des Agropolymères et Technologies Emergentes'),
(115002, 'https://ror.org/0005c8d42', 'no_lang_code', 1, 'https://ror.org/0005c8d42 Starmark (United States)'),
(115003, 'https://ror.org/000e0be47', 'en', 1, 'https://ror.org/000e0be47 Northwestern University'),
(115004, 'https://ror.org/000kkaz97', 'en', 1, 'https://ror.org/000kkaz97 Odesa State Agrarian University ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Гержавний аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115005, 'https://ror.org/000n2a918', 'de', 1, 'https://ror.org/000n2a918 EcoAustria Institut für Wirtschaftsforschung'),
(115006, 'https://ror.org/000nbj923', 'en', 1, 'https://ror.org/000nbj923 Medical Colleges of Northern Philippines'),
(115007, 'https://ror.org/000t1x690', 'en', 1, 'https://ror.org/000t1x690 International Centre for Water Security and Sustainable Management ģœ ė„¤ģŠ¤ģ½” 물 ģ•ˆė³“ źµ­ģ œģ—°źµ¬źµģœ”ģ„¼ķ„°'),
(115008, 'https://ror.org/001040111', 'en', 1, 'https://ror.org/001040111 National Academy of Agrarian Sciences of Ukraine ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠ ŠŠšŠŠ”Š•ŠœŠ†ŠÆ ŠŠ“Š ŠŠ ŠŠ˜Š„ ŠŠŠ£Šš Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(115009, 'https://ror.org/00131es19', 'pt', 1, 'https://ror.org/00131es19 Centro de Estudos Interculturais'),
(115010, 'https://ror.org/0013hqd91', 'pt', 1, 'https://ror.org/0013hqd91 Centro Interdisciplinar de Estudos Educacionais'),
(115011, 'https://ror.org/0013p0655', 'en', 1, 'https://ror.org/0013p0655 Ankaful Psychiatric Hospital'),
(115012, 'https://ror.org/00147fj93', 'en', 1, 'https://ror.org/00147fj93 Rashtriya Raksha University'),
(115013, 'https://ror.org/001cqv036', 'fr', 1, 'https://ror.org/001cqv036 Terres Inovia'),
(115014, 'https://ror.org/001gcc176', 'de', 1, 'https://ror.org/001gcc176 FHWien der WKW'),
(115015, 'https://ror.org/001h1y284', 'no_lang_code', 1, 'https://ror.org/001h1y284 Prosport - Rocha, Moreira, Pinto & Soares (Portugal)'),
(115016, 'https://ror.org/001j26r80', 'fr', 1, 'https://ror.org/001j26r80 Health and Services of Polynesian Ecosystems Santé et Services des Ecosytèmes Polynésiens'),
(115017, 'https://ror.org/001tjjt60', 'en', 1, 'https://ror.org/001tjjt60 AOI Universal Hospital AOIå›½éš›ē—…é™¢'),
(115018, 'https://ror.org/0020x0a87', 'pt', 1, 'https://ror.org/0020x0a87 Centro de Estudos Internacionais'),
(115019, 'https://ror.org/00227f603', 'no_lang_code', 1, 'https://ror.org/00227f603 Elia (Belgium)'),
(115020, 'https://ror.org/0022v2454', 'en', 1, 'https://ror.org/0022v2454 Educational Department of Liaoning Province č¾½å®ēœę•™č‚²åŽ…'),
(115021, 'https://ror.org/0024cnj47', 'no_lang_code', 1, 'https://ror.org/0024cnj47 Boehringer Ingelheim (Portugal)'),
(115022, 'https://ror.org/0027z3756', 'en', 1, 'https://ror.org/0027z3756 Gezhouba Central Hospital of Sinopharm å›½čÆč‘›ę“²åäø­åæƒåŒ»é™¢'),
(115023, '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)'),
(115024, 'https://ror.org/002h8g185', 'en', 1, 'https://ror.org/002h8g185 University of Bath'),
(115025, 'https://ror.org/002v1jc79', 'en', 0, 'https://ror.org/002v1jc79 United States Air Force Electronic Systems Center'),
(115026, 'https://ror.org/0032jvj22', 'en', 1, 'https://ror.org/0032jvj22 Regenerative NanoMedicine'),
(115027, 'https://ror.org/0032wgp28', 'en', 1, 'https://ror.org/0032wgp28 Islamic Azad University Sari Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ساری'),
(115028, 'https://ror.org/0033rtn64', 'no_lang_code', 1, 'https://ror.org/0033rtn64 Gedeon Richter (Hungary) Richter Gedeon Nyrt'),
(115029, 'https://ror.org/0034eay46', 'en', 1, 'https://ror.org/0034eay46 Sistema Universitario Texas A&M Texas A&M University System'),
(115030, 'https://ror.org/0034eez47', 'en', 1, 'https://ror.org/0034eez47 Utkal University ą¤‰ą¤¤ą„ą¤•ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(115031, 'https://ror.org/00389wp47', 'en', 1, 'https://ror.org/00389wp47 South Carolina Department of Public Health'),
(115032, 'https://ror.org/003byr264', 'es', 1, 'https://ror.org/003byr264 Universidad Adventista del Plata'),
(115033, 'https://ror.org/003ccjg76', 'pt', 1, 'https://ror.org/003ccjg76 Centro de FĆ­sica das Universidades do Minho e do Porto'),
(115034, 'https://ror.org/003g03329', 'en', 1, 'https://ror.org/003g03329 Flux50'),
(115035, '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'),
(115036, 'https://ror.org/0040r6f76', 'en', 1, 'https://ror.org/0040r6f76 Te Herenga Waka Victoria University of Wellington'),
(115037, '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'),
(115038, 'https://ror.org/004s18446', 'en', 1, 'https://ror.org/004s18446 Instituto PolitƩcnico de Castelo Branco Polytechnic Institute of Castelo Branco'),
(115039, '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 ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний центр Ń–Š½Š“ŃƒŃŃ‚Ń€Ń–Š°Š»ŃŒŠ½ŠøŃ… проблем Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(115040, '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'),
(115041, 'https://ror.org/0057w2a90', 'en', 1, 'https://ror.org/0057w2a90 CoE MARBLE - Centre of Excellence in Maritime Robotics and Technologies for Sustainable Blue Economy'),
(115042, 'https://ror.org/005caq902', 'fr', 1, 'https://ror.org/005caq902 ACCompagnement Pluriprofessionnel PatienT'),
(115043, 'https://ror.org/005cmms77', 'en', 1, 'https://ror.org/005cmms77 CancerCare Manitoba'),
(115044, 'https://ror.org/005gk0s47', 'en', 0, 'https://ror.org/005gk0s47 University of the Pacific'),
(115045, 'https://ror.org/005k7hp45', 'en', 1, 'https://ror.org/005k7hp45 Medical University of Silesia Śląski Uniwersytet Medyczny w Katowicach'),
(115046, 'https://ror.org/005m6rn77', 'no_lang_code', 0, 'https://ror.org/005m6rn77 Fiat Chrysler Automobiles (Italy)'),
(115047, 'https://ror.org/005t7z309', 'en', 1, 'https://ror.org/005t7z309 The Exploratory Research Center on Life and Living Systems ē”Ÿå‘½å‰µęˆęŽ¢ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(115048, 'https://ror.org/005t9n460', 'no_lang_code', 1, 'https://ror.org/005t9n460 Saxion'),
(115049, 'https://ror.org/005x56091', 'en', 1, 'https://ror.org/005x56091 Tezpur University ą¤¤ą„‡ą¤œą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¦¤ą§‡ą¦œą¦Ŗą§ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(115050, 'https://ror.org/005xxh676', 'en', 1, 'https://ror.org/005xxh676 IPDT Tourism (Portugal)'),
(115051, 'https://ror.org/0060cvv29', 'no_lang_code', 1, 'https://ror.org/0060cvv29 AcademyGate AcademyGate (Azerbaijan)'),
(115052, 'https://ror.org/0060vt104', 'en', 1, 'https://ror.org/0060vt104 Tech University of Korea ķ•œźµ­ź³µķ•™ėŒ€ķ•™źµ'),
(115053, 'https://ror.org/006556814', 'pt', 1, 'https://ror.org/006556814 Hospital Cruz Vermelha'),
(115054, 'https://ror.org/0065r7453', 'no_lang_code', 1, 'https://ror.org/0065r7453 Ferring Pharmaceuticals (Portugal)'),
(115055, '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'),
(115056, 'https://ror.org/006abnv46', 'en', 1, 'https://ror.org/006abnv46 Combined Military Hospital Kohat مؓترکہ فوجی ہسپتال کوہاٹ'),
(115057, 'https://ror.org/006ennj27', 'id', 1, 'https://ror.org/006ennj27 Batam Institute of Technology Institut Teknologi Batam'),
(115058, 'https://ror.org/006gmme17', 'en', 1, 'https://ror.org/006gmme17 United States Air Force'),
(115059, 'https://ror.org/006m4q736', 'en', 1, 'https://ror.org/006m4q736 Azerbaijan National Academy of Sciences Azərbaycan Milli Elmlər Akademiyası ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук АзербайГжана'),
(115060, 'https://ror.org/006mtxa58', 'en', 1, 'https://ror.org/006mtxa58 Xiamen Municipal Bureau of Science and Technology åŽ¦é—Øē§‘å­¦ęŠ€ęœÆå±…'),
(115061, 'https://ror.org/006xh4k10', 'pt', 1, 'https://ror.org/006xh4k10 Fundação Portugal África'),
(115062, 'https://ror.org/0073npr77', 'pt', 1, 'https://ror.org/0073npr77 Instituto UniversitƔrio JustiƧa e Paz, Justice and Peace University Institute'),
(115063, 'https://ror.org/0075hvk77', 'en', 1, 'https://ror.org/0075hvk77 Heuristics and Diagnostics for Complex Systems Heuristique et Diagnostic des SystĆØmes Complexes'),
(115064, 'https://ror.org/0075yd342', 'no_lang_code', 1, 'https://ror.org/0075yd342 Fresh Ideas Design and Multimedia, Ideias Frescas Design e MultimƩdia (Portugal)'),
(115065, 'https://ror.org/007dshj79', 'de', 1, 'https://ror.org/007dshj79 KinderKunstLabor für zeitgenƶssische Kunst, NƖ Kulturlandeshauptstadt St. Pƶlten GmbH'),
(115066, 'https://ror.org/007dy3y92', 'fr', 1, 'https://ror.org/007dy3y92 Institut d''Asie Orientale'),
(115067, 'https://ror.org/007jk3x13', 'en', 1, 'https://ror.org/007jk3x13 Military Institute of Science and Technology মিলিটারি ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą“øąµˆą“Øą“æą“• ą“¶ą“¾ą“øąµą“¤ąµą“°ą“øą“¾ą“™ąµą“•ąµ‡ą“¤ą“æą“• ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“Ÿąµą“Æąµ‚ą“Ÿąµą“Ÿąµ, ą“¬ą“‚ą“—ąµą“²ą“¾ą“¦ąµ‡ą“¶ąµ'),
(115068, 'https://ror.org/007nyh531', 'de', 1, 'https://ror.org/007nyh531 Documentation Centre of Austrian Resistance Dokumentationsarchiv des ƶsterreichischen Widerstandes'),
(115069, 'https://ror.org/007p4nf03', 'fr', 1, 'https://ror.org/007p4nf03 Laboratoire de PhonƩtique et Phonologie'),
(115070, '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'),
(115071, 'https://ror.org/007wk7062', 'en', 1, 'https://ror.org/007wk7062 William James Center for Research'),
(115072, 'https://ror.org/007xckb65', 'en', 1, 'https://ror.org/007xckb65 Institute for Neurodegenerative Diseases');
INSERT INTO `rors` VALUES
(115073, 'https://ror.org/007xn7v02', 'en', 1, 'https://ror.org/007xn7v02 Japanese-French Laboratory for Informatics ę—„ä»ęƒ…å ±å­¦é€£ęŗē ”ē©¶ę‹ ē‚¹'),
(115074, 'https://ror.org/0087gn380', 'en', 1, 'https://ror.org/0087gn380 Electrochem Technologies & Materials Inc., Electrochem Technologies & Materials Inc. (Canada)'),
(115075, 'https://ror.org/008d2qg16', 'en', 1, 'https://ror.org/008d2qg16 International Leadership University'),
(115076, 'https://ror.org/008fnwb73', 'en', 1, 'https://ror.org/008fnwb73 Alliance for Decision Education'),
(115077, 'https://ror.org/008gcn350', 'en', 1, 'https://ror.org/008gcn350 Advanced Institute for Wildlife Conservation ą®‰ą®Æą®°ąÆą®Øą®æą®²ąÆˆ வன ą®‰ą®Æą®æą®°ą®æą®©ą®ŖąÆ ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(115078, 'https://ror.org/008gy9p72', 'de', 1, 'https://ror.org/008gy9p72 Bayerische Akademie für Naturschutz und Landschaftspflege'),
(115079, 'https://ror.org/008kn4z11', 'fr', 1, 'https://ror.org/008kn4z11 DƩlƩgation Ile-de-France Villejuif'),
(115080, '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'),
(115081, 'https://ror.org/008qdx283', 'en', 1, 'https://ror.org/008qdx283 Manipal Academy of Higher Education, Dubai'),
(115082, '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'),
(115083, 'https://ror.org/008xxew50', 'nl', 1, 'https://ror.org/008xxew50 Vrije Universiteit Amsterdam'),
(115084, 'https://ror.org/008y7px84', 'fr', 1, 'https://ror.org/008y7px84 Groupe de recherche et d''accueil en droit et Ʃconomie de la santƩ'),
(115085, 'https://ror.org/008yzrs90', 'pt', 1, 'https://ror.org/008yzrs90 Instituto de Plasmas e Fusão Nuclear'),
(115086, 'https://ror.org/0091g1j61', 'en', 1, 'https://ror.org/0091g1j61 oDocs Eye Care Research Institute, oDocs Eye Care Research Institute (New Zealand)'),
(115087, 'https://ror.org/0091vmj44', 'en', 1, 'https://ror.org/0091vmj44 Shahid Beheshti University دانؓگاه Ų“Ł‡ŪŒŲÆ ŲØŁ‡Ų“ŲŖŪŒ'),
(115088, '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)'),
(115089, 'https://ror.org/00990e921', 'de', 1, 'https://ror.org/00990e921 Sigmund Freud Private University - Campus Milano Sigmund Freud PrivatuniversitƤt - Standort Mailand'),
(115090, '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)'),
(115091, 'https://ror.org/009m4mk40', 'en', 1, 'https://ror.org/009m4mk40 One Hundred Seventy-Ninth School Š“Š‘ŠžŠ£ "Школа ā„–179"'),
(115092, 'https://ror.org/009m7cp22', 'es', 1, 'https://ror.org/009m7cp22 Autonomous University of the West Universidad Autónoma de Occidente'),
(115093, 'https://ror.org/009p3kk18', 'es', 1, 'https://ror.org/009p3kk18 Centro de Desarrollo Tecnológico Naval'),
(115094, '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'),
(115095, 'https://ror.org/009vhk114', 'nl', 1, 'https://ror.org/009vhk114 SURF'),
(115096, 'https://ror.org/009xfkq89', 'en', 1, 'https://ror.org/009xfkq89 Tehatta Sadananda Mahavidyalaya ą¦¤ą§‡ą¦¹ą¦¾ą¦¤ą¦Ÿą¦¾ ą¦øą¦¦ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ą¦¾'),
(115097, 'https://ror.org/00a2n7220', 'fr', 1, 'https://ror.org/00a2n7220 Ɖtudes sur les Sciences et les Techniques'),
(115098, 'https://ror.org/00a4kne42', 'en', 1, 'https://ror.org/00a4kne42 NSS College of Engineering Palakkad'),
(115099, 'https://ror.org/00a61zv30', 'pt', 1, 'https://ror.org/00a61zv30 Inova-Ria Associação de Empresas para uma Rede de Inovação em Aveiro'),
(115100, 'https://ror.org/00a775j83', 'en', 1, 'https://ror.org/00a775j83 Welsh Blood Service'),
(115101, 'https://ror.org/00a7zdw53', 'en', 1, 'https://ror.org/00a7zdw53 Artificial Engineering, Artificial Engineering (Italy)'),
(115102, 'https://ror.org/00anwhm62', 'en', 1, 'https://ror.org/00anwhm62 The Brain Institute of America, The Brain Institute of America (United States)'),
(115103, 'https://ror.org/00awn3k11', 'fr', 1, 'https://ror.org/00awn3k11 Laboratoire IngĆ©nierie des Fluides SystĆØmes ƉnergĆ©tiques Laboratory Fluids Engineering Energy Systems'),
(115104, 'https://ror.org/00axf5s51', 'en', 1, 'https://ror.org/00axf5s51 State Scientific and Production Enterprise Ā«KartographiaĀ» Державне науково-виробниче піГприємство Ā«ŠšŠ°Ń€Ń‚Š¾Š³Ń€Š°Ń„Ń–ŃĀ»'),
(115105, 'https://ror.org/00azp8t92', 'en', 0, 'https://ror.org/00azp8t92 Gachon University Gil Hospital'),
(115106, 'https://ror.org/00b0abc98', 'de', 1, 'https://ror.org/00b0abc98 Sigmund Freud Private University - Campus Paris Sigmund Freud PrivatuniversitƤt - Standort Paris'),
(115107, 'https://ror.org/00b252v89', 'en', 1, 'https://ror.org/00b252v89 Mitsubishi Electric (China) Corporation, Mitsubishi Electric (China) Corporation (China) äø‰č±ē”µęœŗļ¼ˆäø­å›½ļ¼‰å®˜ę–¹ē½‘ē«™'),
(115108, 'https://ror.org/00b3mhg89', 'en', 1, 'https://ror.org/00b3mhg89 Tamil Nadu Dr. M.G.R. Medical University ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®Ÿą®¾ą®•ąÆą®Ÿą®°ąÆ ą®Žą®®ąÆ.ஜி.ą®†ą®°ąÆ. ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(115109, 'https://ror.org/00b78v464', 'de', 1, 'https://ror.org/00b78v464 Akademische Raumfahrt Initiative Schweiz'),
(115110, 'https://ror.org/00b7dkt53', 'it', 1, 'https://ror.org/00b7dkt53 Centro Ricerche FIAT'),
(115111, 'https://ror.org/00b8b0v21', 'en', 1, 'https://ror.org/00b8b0v21 Center of Research on International Business and Strategy'),
(115112, 'https://ror.org/00b9fry24', 'en', 0, 'https://ror.org/00b9fry24 United States Air Force Logistics Command'),
(115113, 'https://ror.org/00bb5py04', 'no_lang_code', 1, 'https://ror.org/00bb5py04 Sociedade de Gestão de Projectos Internacionais (Portugal)'),
(115114, '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'),
(115115, 'https://ror.org/00by9h273', 'fr', 1, 'https://ror.org/00by9h273 Eau Environnement Limoges'),
(115116, 'https://ror.org/00byfqq14', 'no_lang_code', 1, 'https://ror.org/00byfqq14 Buchholz Bookshop, Livraria Buchholz (Portugal)'),
(115117, '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'),
(115118, 'https://ror.org/00c0q8820', 'pt', 1, 'https://ror.org/00c0q8820 Sociedade Brasileira de Pediatria'),
(115119, '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'),
(115120, 'https://ror.org/00c7kvd80', 'en', 1, 'https://ror.org/00c7kvd80 Christian Medical College, Vellore ą¦–ą§ą¦°ą¦æą¦øą§ą¦Ÿą¦¾ą¦Ø মেঔিকেল ą¦•ą¦²ą§‡ą¦œ ভেলোর ą®µąÆ‡ą®²ąÆ‚ą®°ąÆ ą®•ą®æą®±ą®æą®øąÆą®¤ą®µ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(115121, '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'),
(115122, 'https://ror.org/00cb23x68', 'en', 1, 'https://ror.org/00cb23x68 Kwame Nkrumah University of Science and Technology'),
(115123, 'https://ror.org/00cdteb39', 'de', 1, 'https://ror.org/00cdteb39 Kanton Zürich'),
(115124, 'https://ror.org/00cg73391', 'es', 1, 'https://ror.org/00cg73391 Instituto de Cultura, Sociedad y Estado'),
(115125, 'https://ror.org/00cjer453', 'pt', 1, 'https://ror.org/00cjer453 InnovPlantProtect'),
(115126, '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'),
(115127, 'https://ror.org/00ckvhj86', 'pt', 1, 'https://ror.org/00ckvhj86 Centro de Estudos em Educação Tecnologia e Saúde'),
(115128, 'https://ror.org/00cpdar66', 'fr', 1, 'https://ror.org/00cpdar66 Laboratoire d''Ɖtude de l''Univers et des PhĆ©nomĆØnes ExtrĆŖmes'),
(115129, 'https://ror.org/00cvxb145', 'en', 1, 'https://ror.org/00cvxb145 Universidad de Washington University of Washington UniversitƩ de Washington'),
(115130, 'https://ror.org/00d1g0h88', 'en', 1, 'https://ror.org/00d1g0h88 Heliophysics Digital Resource Library'),
(115131, 'https://ror.org/00dexcn42', 'es', 1, 'https://ror.org/00dexcn42 Escuela Naval de Cadetes "Almirante Padilla"'),
(115132, 'https://ror.org/00dey0g77', 'en', 1, 'https://ror.org/00dey0g77 Breakthrough Prize, Breakthrough Prize Foundation'),
(115133, 'https://ror.org/00dfbfw84', 'en', 1, 'https://ror.org/00dfbfw84 Kherson State Maritime Academy Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠ° Гержавна Š¼Š¾Ń€ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(115134, 'https://ror.org/00dhpdx54', 'en', 1, 'https://ror.org/00dhpdx54 Guangxi Science and Technology Department å¹æč„æå£®ę—č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(115135, 'https://ror.org/00dks4e03', 'en', 1, 'https://ror.org/00dks4e03 Asgar Ali Hospital'),
(115136, 'https://ror.org/00dmfq477', 'en', 1, 'https://ror.org/00dmfq477 University of California Office of the President'),
(115137, 'https://ror.org/00dmpgj58', 'en', 1, 'https://ror.org/00dmpgj58 University of Sousse UniversitĆ© de Sousse Ų¬Ų§Ł…Ų¹Ų© سوسة'),
(115138, 'https://ror.org/00dx9kg40', 'pt', 1, 'https://ror.org/00dx9kg40 Santa Casa da Misericórdia de Lisboa'),
(115139, 'https://ror.org/00e37es74', 'en', 1, 'https://ror.org/00e37es74 WiseThorough (Portugal), WiseThorough, Urban Creativity'),
(115140, 'https://ror.org/00e3rec75', 'no_lang_code', 1, 'https://ror.org/00e3rec75 HUBER Diffraktionstechnik GmbH & Co. KG HUBER Diffraktionstechnik GmbH & Co. KG (Germany)'),
(115141, 'https://ror.org/00e4pqm50', 'fr', 1, 'https://ror.org/00e4pqm50 Laboratoire de GƩographie Physique et Environnementale'),
(115142, 'https://ror.org/00e94h574', 'en', 1, 'https://ror.org/00e94h574 Ajay Kumar Garg Institute of Management'),
(115143, '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'),
(115144, 'https://ror.org/00eb63538', 'en', 1, 'https://ror.org/00eb63538 Greater Lisbon Christian Academy'),
(115145, 'https://ror.org/00enr3s27', 'en', 1, 'https://ror.org/00enr3s27 Jiangxi Provincial Institute of Traditional Chinese Medicine ę±Ÿč„æēœäø­åŒ»čÆē ”ē©¶é™¢'),
(115146, 'https://ror.org/00evec309', 'it', 1, 'https://ror.org/00evec309 European International State School "Altiero Spinelli" Scuola Internazionale Europea Statale "Altiero Spinelli"'),
(115147, 'https://ror.org/00ew3x319', 'no_lang_code', 1, 'https://ror.org/00ew3x319 An-Nan Hospital'),
(115148, 'https://ror.org/00f5fa103', 'en', 1, 'https://ror.org/00f5fa103 Ocean First Institute'),
(115149, 'https://ror.org/00f5trc45', 'id', 1, 'https://ror.org/00f5trc45 STAI Al-Anwar Sarang Rembang'),
(115150, 'https://ror.org/00f7hpc57', 'de', 1, 'https://ror.org/00f7hpc57 Friedrich-Alexander-University Erlangen-Nürnberg Friedrich-Alexander-Universität Erlangen-Nürnberg'),
(115151, 'https://ror.org/00fd30e02', 'en', 1, 'https://ror.org/00fd30e02 Indo Soviet Friendship College of Pharmacy'),
(115152, 'https://ror.org/00fdrg150', 'de', 1, 'https://ror.org/00fdrg150 Bundesprogramm Ɩkologischer Landbau'),
(115153, 'https://ror.org/00fwme054', 'pt', 1, 'https://ror.org/00fwme054 Centre for Organizational and Social Studies Centro de Estudos Organizacionais e Sociais'),
(115154, 'https://ror.org/00fxswh37', 'no_lang_code', 1, 'https://ror.org/00fxswh37 Mondragon Corporation (Spain)'),
(115155, 'https://ror.org/00g1rv562', 'pt', 1, 'https://ror.org/00g1rv562 Centro de Investigação e Intervenção na Leitura'),
(115156, 'https://ror.org/00g325k81', 'en', 1, 'https://ror.org/00g325k81 University of Veterinary and Animal Sciences ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŁˆŪŒŁ¹Ų±Ł†Ų±ŪŒ Ų§ŪŒŁ†Śˆ Ų§ŪŒŁ†ŪŒŁ…Ł„ سائنسز'),
(115157, 'https://ror.org/00g5sqv46', 'ca', 1, 'https://ror.org/00g5sqv46 Universidad Rovira i Virgili Universitat Rovira i Virgili'),
(115158, 'https://ror.org/00g669j87', 'fr', 1, 'https://ror.org/00g669j87 Laboratoire de MathƩmatiques et de leurs Applications Laboratory of Mathematics and their Applications'),
(115159, 'https://ror.org/00g700j37', 'fr', 1, 'https://ror.org/00g700j37 UniversitƩ Bourgogne Europe'),
(115160, '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'),
(115161, 'https://ror.org/00gbmjg44', 'pt', 1, 'https://ror.org/00gbmjg44 Museu Nacional de História Natural e Ciência'),
(115162, 'https://ror.org/00gg6zc85', 'en', 1, 'https://ror.org/00gg6zc85 International Centre on Qanats and Historic Hydraulic Structures مرکز ŲØŪŒŁ†Ų§Ł„Ł…Ł„Ł„ŪŒ قنات و Ų³Ų§Ų²Ł‡Ł‡Ų§ŪŒ آبی تاریخی'),
(115163, 'https://ror.org/00gnnx384', 'en', 1, 'https://ror.org/00gnnx384 kassel university press, kassel university press GmbH'),
(115164, 'https://ror.org/00gt6pp04', 'en', 1, 'https://ror.org/00gt6pp04 University of Health Sciences Lahore ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŪŪŒŁ„ŲŖŚ¾ Ų³Ų§Ų¦ŪŒŁ†Ų³ Ł„Ų§ŪŁˆŲ±ā€Ž'),
(115165, 'https://ror.org/00h6t8180', 'pt', 1, 'https://ror.org/00h6t8180 Gabinete de Planeamento Estratégia Avaliação e Relações Internacionais'),
(115166, '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'),
(115167, 'https://ror.org/00hbc1k35', 'fr', 1, 'https://ror.org/00hbc1k35 Laboratoire Bourguignon des MatƩriaux et ProcƩdƩs'),
(115168, 'https://ror.org/00hcf7151', 'en', 1, 'https://ror.org/00hcf7151 Information Processing and Telecommunications Center'),
(115169, 'https://ror.org/00hg1tm72', 'en', 1, 'https://ror.org/00hg1tm72 Biosphere Reserves Institute'),
(115170, 'https://ror.org/00hhhr502', 'fr', 1, 'https://ror.org/00hhhr502 Laboratoire AntiDopage FranƧais'),
(115171, 'https://ror.org/00hhjz250', 'en', 1, 'https://ror.org/00hhjz250 NSF NCAR Atmospheric Chemistry Observations & Modeling'),
(115172, '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'),
(115173, 'https://ror.org/00hpnfm55', 'en', 1, 'https://ror.org/00hpnfm55 Union of Concerned Scientists'),
(115174, 'https://ror.org/00htggt94', 'no_lang_code', 1, 'https://ror.org/00htggt94 Pasqal, Pasqal (France)'),
(115175, 'https://ror.org/00hx57361', 'en', 1, 'https://ror.org/00hx57361 Princeton University Universidad de Princeton UniversitƩ de princeton'),
(115176, 'https://ror.org/00j0rk173', 'en', 1, 'https://ror.org/00j0rk173 Marconi University UniversitƠ degli Studi Guglielmo Marconi UniversitƩ des Ʃtudes guglielmo marconi'),
(115177, 'https://ror.org/00jdryp44', 'en', 1, 'https://ror.org/00jdryp44 Chuo Kikuu cha Sokoine cha Kilimo Sokoine University of Agriculture'),
(115178, 'https://ror.org/00je4t102', 'en', 1, 'https://ror.org/00je4t102 Narodowa Akademia Nauk Ukrainy National Academy of Sciences of Ukraine ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Украины ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń наук України'),
(115179, 'https://ror.org/00jmfr291', 'en', 1, 'https://ror.org/00jmfr291 University of Michigan, University of Michigan–Ann Arbor UniversitĆ© du Michigan'),
(115180, 'https://ror.org/00js76g45', 'pt', 1, 'https://ror.org/00js76g45'),
(115181, 'https://ror.org/00jsay989', 'en', 1, 'https://ror.org/00jsay989 Shenzhen Medical Academy of Research and Translation ę·±åœ³åŒ»å­¦ē§‘å­¦é™¢'),
(115182, 'https://ror.org/00jsv7j98', 'en', 1, 'https://ror.org/00jsv7j98 Electrophysiology and Heart Modeling Institute L’Institut de Rythmologie et ModĆ©lisation Cardiaque'),
(115183, 'https://ror.org/00jxdjq56', 'en', 1, 'https://ror.org/00jxdjq56 Rani Lakshmi Bai Central Agricultural University, Jhansi ą¤°ą¤¾ą¤Øą„€ ą¤²ą¤•ą„ą¤·ą„ą¤®ą„€ą¤¬ą¤¾ą¤ˆ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤ą¤¾ą¤‚ą¤øą„€'),
(115184, 'https://ror.org/00jxnh380', 'en', 1, 'https://ror.org/00jxnh380 Sri Lanka Council For Agricultural Research Policy'),
(115185, 'https://ror.org/00jxzny32', 'no_lang_code', 1, 'https://ror.org/00jxzny32 Innovation Hospital Care (Portugal)'),
(115186, 'https://ror.org/00k0fnn97', 'no_lang_code', 0, 'https://ror.org/00k0fnn97 Novabase SGPS SA Matosinhos (Portugal)'),
(115187, 'https://ror.org/00k0vnk02', 'en', 1, 'https://ror.org/00k0vnk02 National Oil Corporation, National Oil Corporation (Libya) المؤسسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للنفط'),
(115188, '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'),
(115189, 'https://ror.org/00k4n6c32', 'en', 1, 'https://ror.org/00k4n6c32 Commission europƩenne European Commission Europese Commissie EuropƤische Kommission'),
(115190, 'https://ror.org/00k4v9x79', 'es', 1, 'https://ror.org/00k4v9x79 Higher University of San AndrƩs Universidad Mayor de San AndrƩs'),
(115191, 'https://ror.org/00kazde95', 'en', 1, 'https://ror.org/00kazde95 Institute of Innovation Development Strategies and Knowledge Transfer Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стратегій інноваційного Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ і Ń‚Ń€Š°Š½ŃŃ„ŠµŃ€Ńƒ знань'),
(115192, 'https://ror.org/00kbtzj92', 'en', 1, 'https://ror.org/00kbtzj92 Behavioral Science Research Institute, Inc.'),
(115193, 'https://ror.org/00kc9pf87', 'en', 1, 'https://ror.org/00kc9pf87 State Scientific and Technical Center for Nuclear and Radiation Safety Державний науково-технічний центр Š· ŃŠ“ŠµŃ€Š½Š¾Ń— та раГіаційної безпеки'),
(115194, 'https://ror.org/00kcjks51', 'es', 1, 'https://ror.org/00kcjks51 Fundación Universidad de América, Universidad de América University of America'),
(115195, 'https://ror.org/00ke0xj02', 'fr', 1, 'https://ror.org/00ke0xj02 Espaces Humains et Interactions Culturelles'),
(115196, 'https://ror.org/00keh9s20', 'no_lang_code', 1, 'https://ror.org/00keh9s20 Consiglio Nazionale delle Ricerche - Istituto di Ricerca sugli Ecosistemi Terrestri'),
(115197, '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'),
(115198, 'https://ror.org/00kq5zs47', 'en', 1, 'https://ror.org/00kq5zs47 MediaKind, MediaKind (United States)'),
(115199, 'https://ror.org/00ktm1v71', 'id', 1, 'https://ror.org/00ktm1v71 Akademi Teknik Alat Berat Indonesia Indonesian Heavy Equipment Technical Academy'),
(115200, 'https://ror.org/00ktq1636', 'en', 1, 'https://ror.org/00ktq1636 Finnish National Agency for Education Opetushallitus Utbildningsstyrelsen'),
(115201, 'https://ror.org/00kybxq39', 'fr', 1, 'https://ror.org/00kybxq39 UniversitƩ de Sherbrooke'),
(115202, 'https://ror.org/00kzrp571', 'en', 1, 'https://ror.org/00kzrp571 University of Derna جـــامــــعـــة درنــــة'),
(115203, 'https://ror.org/00m5mvp27', 'pt', 1, 'https://ror.org/00m5mvp27 Núcleo de Investigação e Desenvolvimento em Educação'),
(115204, 'https://ror.org/00mbmxf83', 'pt', 1, 'https://ror.org/00mbmxf83 Centro de Investigação em Educação'),
(115205, 'https://ror.org/00mfpxb84', 'fr', 1, 'https://ror.org/00mfpxb84 University of Avignon UniversitƩ d''Avignon et des Pays de Vaucluse'),
(115206, 'https://ror.org/00mhxaf94', 'en', 1, 'https://ror.org/00mhxaf94 U.S. Army Cyber Center of Excellence'),
(115207, 'https://ror.org/00mpfbp90', 'en', 1, 'https://ror.org/00mpfbp90 Foundation for Renewable Energy & Environment'),
(115208, 'https://ror.org/00mv6h241', 'en', 1, 'https://ror.org/00mv6h241 University of Ajdabiya Ų¬Ų§Ł…Ų¹Ų© اجدابيا'),
(115209, 'https://ror.org/00mwcg389', 'no_lang_code', 1, 'https://ror.org/00mwcg389 Ferrer Grupo (Spain)'),
(115210, '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'),
(115211, 'https://ror.org/00myww245', 'no_lang_code', 1, 'https://ror.org/00myww245 Foresight Institute of Research and Translation'),
(115212, 'https://ror.org/00mznnx78', 'de', 1, 'https://ror.org/00mznnx78 Auguste-Viktoria-Klinik'),
(115213, 'https://ror.org/00n1dbb71', 'en', 1, 'https://ror.org/00n1dbb71 City Space Architecture'),
(115214, 'https://ror.org/00n3pea85', 'no_lang_code', 1, 'https://ror.org/00n3pea85 GlaxoSmithKline (Belgium)'),
(115215, 'https://ror.org/00n7swc17', 'en', 1, 'https://ror.org/00n7swc17 Rajiv Gandhi Institute of Petroleum Technology'),
(115216, 'https://ror.org/00n8d6z93', 'fr', 1, 'https://ror.org/00n8d6z93 Centre Inria de l''UniversitƩ Grenoble Alpes'),
(115217, 'https://ror.org/00nfs4461', 'no_lang_code', 1, 'https://ror.org/00nfs4461 Systembolaget (Sweden) Systembolaget Aktiebolag'),
(115218, 'https://ror.org/00ngcze84', 'en', 1, 'https://ror.org/00ngcze84 Agence d''Ʃvaluation d''impact du Canada Impact Assessment Agency of Canada'),
(115219, 'https://ror.org/00nj2dc54', 'en', 0, 'https://ror.org/00nj2dc54 United States Air Force Aeronautical Systems Center'),
(115220, 'https://ror.org/00nm9rw58', 'en', 1, 'https://ror.org/00nm9rw58 International Association for Development of the Information Society'),
(115221, 'https://ror.org/00nnxx647', 'en', 1, 'https://ror.org/00nnxx647 People''s Dental College and Hospital'),
(115222, 'https://ror.org/00npbs606', 'pt', 1, 'https://ror.org/00npbs606 Centro de LĆ­nguas Literaturas e Culturas'),
(115223, 'https://ror.org/00nqhfc30', 'fr', 1, 'https://ror.org/00nqhfc30'),
(115224, 'https://ror.org/00nrc9e09', 'no_lang_code', 1, 'https://ror.org/00nrc9e09 Thoughtventions Unlimited (United States)'),
(115225, 'https://ror.org/00nt41z93', 'en', 1, 'https://ror.org/00nt41z93 Universidade de Aveiro University of Aveiro'),
(115226, 'https://ror.org/00nyrjc53', 'es', 1, 'https://ror.org/00nyrjc53 Departament de Salut, Departamento de Salud Department of Health'),
(115227, 'https://ror.org/00p7fpt19', 'en', 1, 'https://ror.org/00p7fpt19 Military Technological College'),
(115228, 'https://ror.org/00p9xg744', 'no_lang_code', 1, 'https://ror.org/00p9xg744 Jose Alves'' Library, Livraria de JosƩ Alves (Portugal)'),
(115229, 'https://ror.org/00pbmyh42', 'es', 1, 'https://ror.org/00pbmyh42 Centro Universitario San Isidoro'),
(115230, 'https://ror.org/00pfj7a95', 'en', 1, 'https://ror.org/00pfj7a95 Ellison Medical Institute'),
(115231, 'https://ror.org/00pg5jh14', 'fr', 1, 'https://ror.org/00pg5jh14 Assistance Publique – HĆ“pitaux de Paris'),
(115232, 'https://ror.org/00pggkr55', 'en', 1, 'https://ror.org/00pggkr55 UK Centre for Ecology & Hydrology'),
(115233, 'https://ror.org/00phht511', 'en', 1, 'https://ror.org/00phht511 Tashkent Institute of Architecture and Civil Engineering Toshkent Arxitektura Qurilish Universiteti'),
(115234, 'https://ror.org/00pkvys92', 'en', 1, 'https://ror.org/00pkvys92 Ministry of Health'),
(115235, 'https://ror.org/00ppaw753', 'en', 1, 'https://ror.org/00ppaw753 World Wide Fund for Nature'),
(115236, 'https://ror.org/00praab34', 'no_lang_code', 1, 'https://ror.org/00praab34 Energias de Portugal (Portugal)'),
(115237, 'https://ror.org/00prsav78', 'en', 1, 'https://ror.org/00prsav78 Instituto PolitƩcnico de BraganƧa Polytechnic Institute of BraganƧa'),
(115238, 'https://ror.org/00prvqp73', 'fr', 1, 'https://ror.org/00prvqp73 Institut RhÓnalpin des Systèmes Complexes'),
(115239, 'https://ror.org/00pt8r998', 'en', 1, 'https://ror.org/00pt8r998 National University of the Littoral Universidad Nacional del Litoral UniversitƩ Nationale du Littoral'),
(115240, 'https://ror.org/00pyh2y32', 'en', 1, 'https://ror.org/00pyh2y32 University of Gour Banga ą¦—ą§Œą¦”ą¦¼ą¦¬ą¦™ą§ą¦— ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(115241, 'https://ror.org/00q2tt650', 'en', 1, 'https://ror.org/00q2tt650 National Supercomputing Center in Jinan å›½å®¶č¶…ēŗ§č®”ē®—ęµŽå—äø­åæƒ'),
(115242, 'https://ror.org/00q32j219', 'no_lang_code', 1, 'https://ror.org/00q32j219 Boehringer Ingelheim (Germany)'),
(115243, 'https://ror.org/00q5cbf13', 'pt', 1, 'https://ror.org/00q5cbf13 Hospital Dr. NƩlio MendonƧa'),
(115244, 'https://ror.org/00q9bwh14', 'pl', 1, 'https://ror.org/00q9bwh14 Górnośląska Wyższa Szkoła Handlowa im. Wojciecha Korfantego'),
(115245, 'https://ror.org/00qbpyp73', 'en', 1, 'https://ror.org/00qbpyp73 Fondation des Maladies du Cœur et de l''AVC Heart and Stroke Foundation'),
(115246, 'https://ror.org/00qf76b12', 'pt', 1, 'https://ror.org/00qf76b12 Instituto Empresarial do TĆ¢mega'),
(115247, 'https://ror.org/00qg2m632', 'en', 0, 'https://ror.org/00qg2m632 South Carolina Department of Health and Environmental Control'),
(115248, 'https://ror.org/00qpqrv96', 'no_lang_code', 1, 'https://ror.org/00qpqrv96 Ubiquity Press (United Kingdom)'),
(115249, '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'),
(115250, 'https://ror.org/00r0fgm05', 'en', 1, 'https://ror.org/00r0fgm05 Arab Planning Institute المعهد Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ł„ŲŖŲ®Ų·ŁŠŲ·'),
(115251, '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 Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ свинарства і агропромислового виробництва ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(115252, 'https://ror.org/00r6gdp61', 'es', 1, 'https://ror.org/00r6gdp61 Instituto Nacional de Investigaciones Forestales AgrĆ­colas y Pecuarias'),
(115253, 'https://ror.org/00r7b5b77', 'pt', 1, 'https://ror.org/00r7b5b77 Instituto PortuguĆŖs de Oncologia Francisco Gentil Portuguese Oncology Institute'),
(115254, 'https://ror.org/00r80yr56', 'en', 1, 'https://ror.org/00r80yr56 Australian College of Perioperative Nurses'),
(115255, 'https://ror.org/00r8amq78', 'fr', 1, 'https://ror.org/00r8amq78 LIttoral ENvironnement et SociƩtƩs'),
(115256, 'https://ror.org/00rpmx650', 'es', 1, 'https://ror.org/00rpmx650 Escuela Naval del PerĆŗ'),
(115257, 'https://ror.org/00rqfzz65', 'en', 1, 'https://ror.org/00rqfzz65 Ministry of Labour and Employment ą¤¶ą„ą¤°ą¤® ą¤ą¤µą¤‚ ą¤°ą„‹ą¤œą¤—ą¤¾ą¤° ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(115258, 'https://ror.org/00rrjp493', 'es', 1, 'https://ror.org/00rrjp493 SecretarĆ­a de Ambiente de Quito'),
(115259, 'https://ror.org/00rw1dq87', 'fr', 1, 'https://ror.org/00rw1dq87 UniversitƩ des patients'),
(115260, 'https://ror.org/00rydyx93', 'fr', 1, 'https://ror.org/00rydyx93 Institut des Sciences Biologiques Institute of Biological Sciences'),
(115261, 'https://ror.org/00ryjtt64', 'en', 1, 'https://ror.org/00ryjtt64 Space Physics Data Facility'),
(115262, 'https://ror.org/00s765g78', 'en', 1, 'https://ror.org/00s765g78 Ministry of Finance č²”ę”æéƒØ'),
(115263, 'https://ror.org/00sarvh59', 'en', 1, 'https://ror.org/00sarvh59 ALT School of Theology Akademi fƶr Ledarskap och Teologi'),
(115264, 'https://ror.org/00sda7m35', 'tr', 1, 'https://ror.org/00sda7m35 Fethi̇ye Devlet Hastanesi̇'),
(115265, 'https://ror.org/00se00q44', 'it', 1, 'https://ror.org/00se00q44 Accademia Albertina delle Belle Arti Albertina Academy of Fine Arts'),
(115266, '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'),
(115267, 'https://ror.org/00sv48x88', 'en', 1, 'https://ror.org/00sv48x88 Institute of Industrial Economics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економіки промисловості'),
(115268, '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'),
(115269, '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'),
(115270, 'https://ror.org/00t2w7350', 'pt', 1, 'https://ror.org/00t2w7350 idD Portugal'),
(115271, 'https://ror.org/00t4vnv68', 'it', 1, 'https://ror.org/00t4vnv68 IRCCS Azienda Ospedliero-Universitaria di Bologna Policlinico di Sant''Orsola'),
(115272, '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'),
(115273, 'https://ror.org/00thqtb16', 'en', 1, 'https://ror.org/00thqtb16 Centro MƩdico de la Universidad de Nebraska University of Nebraska Medical Center'),
(115274, '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'),
(115275, 'https://ror.org/00tjzgn92', 'en', 1, 'https://ror.org/00tjzgn92 Department of Science and Technology of Guangdong Province å¹æäøœēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(115276, 'https://ror.org/00tkdj896', 'en', 1, 'https://ror.org/00tkdj896 GenomePT'),
(115277, 'https://ror.org/00tt7hm51', 'ca', 1, 'https://ror.org/00tt7hm51 Centre d’Estudis Superiors de l’Aviació'),
(115278, 'https://ror.org/00tvate34', 'es', 1, 'https://ror.org/00tvate34 Universidad San Pablo CEU Universidade San Pablo CEU'),
(115279, 'https://ror.org/00ty2a548', 'en', 1, 'https://ror.org/00ty2a548 Idaho National Laboratory Laboratoire national de l''idaho Laboratorio Nacional de Idaho'),
(115280, 'https://ror.org/00tykrx49', 'en', 1, 'https://ror.org/00tykrx49 Longwood Gardens'),
(115281, 'https://ror.org/00tzk1s92', 'en', 1, 'https://ror.org/00tzk1s92 Khatam Al-Nabieen University دانؓگاه Ų®Ų§ŲŖŁ… Ų§Ł„Ł†ŲØŪŒŪŒŁ†'),
(115282, 'https://ror.org/00v2cdz24', 'fr', 1, 'https://ror.org/00v2cdz24 CELPHEDIA'),
(115283, 'https://ror.org/00v452281', 'fr', 1, 'https://ror.org/00v452281 Centre international de recherche sur le cancer International Agency for Research on Cancer'),
(115284, 'https://ror.org/00v49t918', 'pt', 1, 'https://ror.org/00v49t918 Fundação Escola Americana de Lisboa'),
(115285, 'https://ror.org/00v4yb702', 'en', 1, 'https://ror.org/00v4yb702 Rochester Institute of Technology'),
(115286, 'https://ror.org/00v52fx68', 'pt', 1, 'https://ror.org/00v52fx68 Bibliotecas da Universidade do Porto'),
(115287, 'https://ror.org/00v7kzy54', 'no_lang_code', 1, 'https://ror.org/00v7kzy54 Grünenthal (Portugal)'),
(115288, 'https://ror.org/00vc9b171', 'en', 1, 'https://ror.org/00vc9b171 Rising Tide Foundation'),
(115289, 'https://ror.org/00vnmde96', 'en', 1, 'https://ror.org/00vnmde96 Aqua Kompetanse AS, Aqua Kompetanse AS (Norway)'),
(115290, 'https://ror.org/00vtgdb53', 'en', 1, 'https://ror.org/00vtgdb53 Oilthigh Ghlaschu Prifysgol Glasgow University of Glasgow'),
(115291, 'https://ror.org/00vv27t93', 'es', 1, 'https://ror.org/00vv27t93 Mid Atlantic University Universidad del AtlƔntico Medio'),
(115292, 'https://ror.org/00vxrhz27', 'en', 1, 'https://ror.org/00vxrhz27 Dataking Consulting, Dataking Consulting (Ghana)'),
(115293, 'https://ror.org/00w53b262', 'pt', 1, 'https://ror.org/00w53b262 Instituto Superior de Entre Douro e Vouga'),
(115294, 'https://ror.org/00w78qy64', 'fr', 1, 'https://ror.org/00w78qy64 Institut Pasteur of Shanghai äøŠęµ·å·“ę–Æå¾·ē ”ē©¶ę‰€'),
(115295, 'https://ror.org/00w9skz30', 'en', 1, 'https://ror.org/00w9skz30 International University of Erbil Ų¬Ų§Ł…Ų¹Ų© Ų§Ų±ŲØŁŠŁ„ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ų²Ų§Ł†ŁƒŪ†ŪŒ Ų¦Ł‡Ų±ŲØŪŒŁ„ŪŒ Ł†ŪŽŁˆŲÆŁ‡ŁˆŚµŁ‡ŲŖŪŒ'),
(115296, 'https://ror.org/00wftym42', 'en', 1, 'https://ror.org/00wftym42 Burrell College of Osteopathic Medicine'),
(115297, 'https://ror.org/00wge5k78', 'en', 1, 'https://ror.org/00wge5k78 UiT Norges arktiske universitet UiT Norgga ÔrktalaŔ universitehta'),
(115298, 'https://ror.org/00wkh9a76', 'es', 0, 'https://ror.org/00wkh9a76 Governo Civil de Viana do Castelo'),
(115299, 'https://ror.org/00wpg9430', 'en', 1, 'https://ror.org/00wpg9430 TCC International Centre for Innovation, Manufacturing, Technology Transfer and Entrepreneurship, KNUST, Kumasi'),
(115300, 'https://ror.org/00wq7h592', 'fr', 0, 'https://ror.org/00wq7h592 Fondation des Maladies du Cœur et de l''AVC'),
(115301, 'https://ror.org/00wrnm709', 'fr', 1, 'https://ror.org/00wrnm709 Institut de MƩcanique et d''IngƩnierie Institute of Mechanics and Engineering'),
(115302, 'https://ror.org/00wvqgd19', 'eu', 1, 'https://ror.org/00wvqgd19 Mondragon Unibertsitatea Mondragon University Universidad de Mondragón Universidade de Mondragón'),
(115303, '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'),
(115304, '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'),
(115305, 'https://ror.org/00x1cgf82', 'pt', 1, 'https://ror.org/00x1cgf82 Centro de Espectrometria de Massa Mass Spectrometry Centre'),
(115306, 'https://ror.org/00x21nt47', 'pt', 1, 'https://ror.org/00x21nt47 Fundação Engenheiro António de Almeida'),
(115307, 'https://ror.org/00xcryt71', 'en', 1, 'https://ror.org/00xcryt71 University of Arkansas for Medical Sciences'),
(115308, 'https://ror.org/00xp3z794', 'es', 1, 'https://ror.org/00xp3z794 Facultad Latinoamericana de Ciencias Sociales Argentina Latin American Faculty of Social Sciences Argentina'),
(115309, 'https://ror.org/00xz5w759', 'pt', 1, 'https://ror.org/00xz5w759 Incubadora de Empresas da Figueira da Foz – Associação para o Desenvolvimento Empresarial'),
(115310, 'https://ror.org/00ydx1s47', 'en', 1, 'https://ror.org/00ydx1s47 Astera Institute'),
(115311, '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'),
(115312, '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'),
(115313, 'https://ror.org/00yncr324', 'en', 1, 'https://ror.org/00yncr324 Monash University Malaysia'),
(115314, 'https://ror.org/00yphsh03', 'fr', 1, 'https://ror.org/00yphsh03 Espaces, Nature et Culture'),
(115315, 'https://ror.org/00z298720', 'pt', 1, 'https://ror.org/00z298720 Fundação Bomfim'),
(115316, 'https://ror.org/00z7z7a14', 'en', 1, 'https://ror.org/00z7z7a14 Cygnet Godden Green'),
(115317, 'https://ror.org/00za53h95', 'en', 1, 'https://ror.org/00za53h95 Johns Hopkins University Universidad Johns Hopkins'),
(115318, 'https://ror.org/00zb4qh40', 'en', 1, 'https://ror.org/00zb4qh40 City University Ajman Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŲÆŁŠŁ†Ų© عجمان'),
(115319, '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'),
(115320, 'https://ror.org/00zpzcf38', 'de', 1, 'https://ror.org/00zpzcf38 Bioforschung Austria'),
(115321, 'https://ror.org/00zsk2t64', 'en', 1, 'https://ror.org/00zsk2t64 European Holocaust Research Infrastructure'),
(115322, '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 ą¤Øą¤°ą„‡ą¤‚ą¤¦ą„ą¤° ą¤¦ą„‡ą¤µą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤—ą„ą¤°ą„€ą¤•ą¤²ą„ą¤šą¤° ą¤ą¤‚ą¤” ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€ ą¤•ą„ą¤®ą¤¾ą¤°ą¤—ą¤‚ą¤œ ą¤«ą¤¼ą„ˆą¤œą¤¼ą¤¾ą¤¬ą¤¾ą¤¦'),
(115323, 'https://ror.org/00zyx2j96', 'pt', 1, 'https://ror.org/00zyx2j96 Centro de Inovação da Mouraria'),
(115324, 'https://ror.org/0100b4v88', 'fr', 1, 'https://ror.org/0100b4v88'),
(115325, 'https://ror.org/0101er145', 'it', 1, 'https://ror.org/0101er145 Ministero dell''Economia e delle Finanze Ministry of Economy and Finance'),
(115326, 'https://ror.org/0103bf245', 'en', 1, 'https://ror.org/0103bf245 Kenya Association of Urological Surgeons'),
(115327, 'https://ror.org/0104paa34', 'pt', 1, 'https://ror.org/0104paa34 Instituto de História Contemporânea'),
(115328, 'https://ror.org/01070mq45', 'en', 1, 'https://ror.org/01070mq45 Universidad Estatal Wayne UniversitƩ de Wayne State Wayne State University'),
(115329, 'https://ror.org/0108mwc04', 'es', 1, 'https://ror.org/0108mwc04 Universidad del Rosario'),
(115330, 'https://ror.org/010de4288', 'en', 1, 'https://ror.org/010de4288 Research Institute of Food Science and Technology Ł…ŁˆŲ³Ų³Ł‡ Ł¾Ś˜ŁˆŁ‡Ų“ŪŒ Ų¹Ł„ŁˆŁ… و ŲµŁ†Ų§ŪŒŲ¹ غذایی'),
(115331, 'https://ror.org/010dvvh94', 'pt', 1, 'https://ror.org/010dvvh94 Instituto PolitƩcnico de Leiria Polytechnic Institute of Leiria'),
(115332, 'https://ror.org/010g64j43', 'es', 1, 'https://ror.org/010g64j43 Museo Nacional de Historia Natural de Cuba Natural History National Museum of Cuba'),
(115333, 'https://ror.org/010kha811', 'fr', 1, 'https://ror.org/010kha811 Laboratoire ActivitƩ Connaissance Transmission Education'),
(115334, 'https://ror.org/010nd4p40', 'de', 1, 'https://ror.org/010nd4p40 Tiroler Landesmuseen-Betriebsgesellschaft M.B.H.'),
(115335, 'https://ror.org/010q4q527', 'en', 1, 'https://ror.org/010q4q527 Gouvernement du Canada Government of Canada'),
(115336, 'https://ror.org/010rgx680', 'ms', 1, 'https://ror.org/010rgx680 Kolej Matrikulasi Selangor Selangor Matriculation College'),
(115337, 'https://ror.org/010twtk45', 'en', 1, 'https://ror.org/010twtk45 Sadiya College'),
(115338, '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'),
(115339, 'https://ror.org/01114f477', 'pt', 1, 'https://ror.org/01114f477 Escola UniversitƔria Vasco da Gama'),
(115340, 'https://ror.org/0111er030', 'no_lang_code', 1, 'https://ror.org/0111er030 Whitaker International Europe Business Strategy, Whitaker International Europe EstratƩgia Empresarial (Portugal)'),
(115341, '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'),
(115342, 'https://ror.org/0117a2k50', 'en', 1, 'https://ror.org/0117a2k50 Manav Rachna University'),
(115343, 'https://ror.org/011cp4r12', 'pt', 1, 'https://ror.org/011cp4r12 Center of Intelligent Systems Centro de Sistemas Inteligentes'),
(115344, 'https://ror.org/011jzyk83', 'en', 1, 'https://ror.org/011jzyk83 Kulyash Bayseyitova Kazakh National University of Arts К. Байсейітова атынГағы ŅšŠ°Š·Š°Ņ› ұлттық өнер ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² имени ŠšŃƒŠ»ŃŃˆ Байсеитовой ŠšŠ°Š·Š°Ń…ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ мистецтв'),
(115345, 'https://ror.org/011saky36', 'en', 1, 'https://ror.org/011saky36 International Research and Training Centre on Erosion and Sedimentation å›½é™…ę³„ę²™ē ”ē©¶åŸ¹č®­äø­åæƒäø»åŠž'),
(115346, 'https://ror.org/011teq312', 'no_lang_code', 1, 'https://ror.org/011teq312 PSPC Active Living and Environment, PSPC Vida Activa e Ambiente (Portugal)'),
(115347, 'https://ror.org/011vxgd24', 'en', 1, 'https://ror.org/011vxgd24 Universidad de Virginia Occidental West Virginia University'),
(115348, 'https://ror.org/011wcsv83', 'no_lang_code', 1, 'https://ror.org/011wcsv83 Stellantis, Stellantis NV Stellantis (Netherlands)'),
(115349, 'https://ror.org/011y3sy88', 'en', 1, 'https://ror.org/011y3sy88 Zhangjiakou City Science and Technology and Seismological Bureau å¼ å®¶å£åø‚ē§‘å­¦ęŠ€ęœÆå’Œåœ°éœ‡å±€'),
(115350, 'https://ror.org/0120hrx64', 'en', 1, 'https://ror.org/0120hrx64 Institute of Water Problems and Land Reclamation Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГних проблем і меліорації ŠŠŠŠ, Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГних проблем і меліорації ŠŠŠŠ України'),
(115351, 'https://ror.org/01215r597', 'fr', 1, 'https://ror.org/01215r597 Laboratoire d''Informatique, Signaux et SystĆØmes de Sophia Antipolis'),
(115352, 'https://ror.org/0128rnm65', 'en', 1, 'https://ror.org/0128rnm65 Regional Centre for Renewable Energy and Energy Efficiency Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų„Ł‚Ł„ŁŠŁ…ŁŠ للطاقة المتجددة وكفاؔة'),
(115353, 'https://ror.org/01298dc11', 'en', 1, 'https://ror.org/01298dc11 Chuiko Institute of Surface Chemistry Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ хімії поверхні ім. Šž.Šž. Чуйка ŠŠŠ України'),
(115354, 'https://ror.org/012avmg86', 'en', 1, 'https://ror.org/012avmg86 Atria University'),
(115355, 'https://ror.org/012bmcn87', 'pt', 1, 'https://ror.org/012bmcn87 Editora Mundos Sociais'),
(115356, 'https://ror.org/012e1xn46', 'fr', 1, 'https://ror.org/012e1xn46 Centre de MathƩmatiques AppliquƩes'),
(115357, 'https://ror.org/012f0ja90', 'pt', 1, 'https://ror.org/012f0ja90 Hospital Doutor João de Almada'),
(115358, 'https://ror.org/012h1pw83', 'pt', 1, 'https://ror.org/012h1pw83 Unimais'),
(115359, 'https://ror.org/012j9yt19', 'pt', 1, 'https://ror.org/012j9yt19 Centro de Investigação em Contabilidade e Fiscalidade'),
(115360, 'https://ror.org/012rct222', 'en', 1, 'https://ror.org/012rct222 Changchun Institute of Optics, Fine Mechanics and Physics äø­å›½ē§‘å­¦é™¢é•æę˜„å…‰å­¦ē²¾åÆ†ęœŗę¢°äøŽē‰©ē†ē ”ē©¶ę‰€'),
(115361, 'https://ror.org/012zh9h13', 'en', 1, 'https://ror.org/012zh9h13 Institut de Recerca i Tecnologia AgroalimentĆ ries Institute of Agrifood Research and Technology'),
(115362, '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'),
(115363, 'https://ror.org/0134qgb15', 'en', 1, 'https://ror.org/0134qgb15 West African Science Service Centre on Climate Change and Adapted Land Use'),
(115364, 'https://ror.org/0138n7g46', 'en', 1, 'https://ror.org/0138n7g46 Islamic Azad University, Saghez Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سقز'),
(115365, 'https://ror.org/013948m30', 'fr', 1, 'https://ror.org/013948m30 Ɖcole Nationale SupĆ©rieure des IngĆ©nieurs en Arts Chimiques et Technologiques'),
(115366, 'https://ror.org/013bkhk48', 'fr', 1, 'https://ror.org/013bkhk48 Paris Nanterre University UniversitƩ Paris Nanterre'),
(115367, 'https://ror.org/013cr3v30', 'en', 1, 'https://ror.org/013cr3v30 Pluto Journals'),
(115368, 'https://ror.org/013dngs07', 'fr', 1, 'https://ror.org/013dngs07 Pharmacologie et Transplantation'),
(115369, 'https://ror.org/013f0wm52', 'pt', 1, 'https://ror.org/013f0wm52 Fundação Energias de Portugal'),
(115370, 'https://ror.org/013fn6665', 'en', 1, 'https://ror.org/013fn6665 Samara University'),
(115371, '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'),
(115372, 'https://ror.org/013nwbx64', 'pt', 1, 'https://ror.org/013nwbx64 Fundação Montepio'),
(115373, 'https://ror.org/013vgfn32', 'pt', 1, 'https://ror.org/013vgfn32 Galeria Municipal do Porto'),
(115374, 'https://ror.org/013wmr868', 'en', 1, 'https://ror.org/013wmr868 EX Research Institute, EX Research Institute (Japan)'),
(115375, 'https://ror.org/013x8r926', 'pt', 1, 'https://ror.org/013x8r926 Applied Artificial Intelligence Laboratory Laboratório de Inteligência Artificial Aplicada'),
(115376, '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'),
(115377, 'https://ror.org/013yhdf48', 'es', 1, 'https://ror.org/013yhdf48 CIES Salud Sexual - Salud Reproductiva'),
(115378, 'https://ror.org/013yqne57', 'en', 1, 'https://ror.org/013yqne57 Giza Engineering Institute معهد Ų§Ł„Ų¬ŁŠŲ²Ų© العالى للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(115379, 'https://ror.org/013z4qk72', 'no_lang_code', 1, 'https://ror.org/013z4qk72 AXA (France)'),
(115380, 'https://ror.org/0140d9d30', 'de', 1, 'https://ror.org/0140d9d30 SWILD - Stadtƶkologie, Wildtierforschung, Kommunikation SWILD - Urban Ecology & Wildlife Research'),
(115381, 'https://ror.org/0141vgj39', 'en', 1, 'https://ror.org/0141vgj39 Katanov Khakass State University Єакасский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š. Ф. ŠšŠ°Ń‚Š°Š½Š¾Š²Š°'),
(115382, 'https://ror.org/0146tv827', 'en', 1, 'https://ror.org/0146tv827 Heilongjiang Earthquake Agency é»‘é¾™ę±Ÿēœåœ°éœ‡å±€'),
(115383, 'https://ror.org/014837179', 'pt', 1, 'https://ror.org/014837179 Iscte – Instituto UniversitĆ”rio de Lisboa Iscte – University Institute of Lisbon'),
(115384, 'https://ror.org/0148ay426', 'pt', 1, 'https://ror.org/0148ay426 Poder JudiciƔrio do Estado de RondƓnia Tribunal de JustiƧa'),
(115385, 'https://ror.org/0149nzz61', 'pt', 1, 'https://ror.org/0149nzz61 Centro Internacional de Investigação Epistemologia e Reflexão Transdisciplinar'),
(115386, 'https://ror.org/014g34x36', 'en', 1, 'https://ror.org/014g34x36 Universidade do Algarve University of Algarve'),
(115387, 'https://ror.org/014kh0147', 'tr', 1, 'https://ror.org/014kh0147 Başakşehir Belediyesi'),
(115388, 'https://ror.org/014ns9811', 'es', 1, 'https://ror.org/014ns9811 Departament de Cultura, Departamento de Cultura Ministry of Culture'),
(115389, 'https://ror.org/014pnzh29', 'no_lang_code', 1, 'https://ror.org/014pnzh29 HeartGenetics Genetics and Biotechnology (Portugal), HeartGenetics Genetics and Biotechnology, S.A.'),
(115390, 'https://ror.org/014s45j06', 'pt', 1, 'https://ror.org/014s45j06 Autonomous Systems Laboratory Laboratório de Sistemas Autónomos'),
(115391, 'https://ror.org/014tx0036', 'fr', 1, 'https://ror.org/014tx0036 Centre de Recherches SƩmiotiques'),
(115392, 'https://ror.org/014z21s47', 'en', 1, 'https://ror.org/014z21s47 ZaoZhuang Vocational College of Science and Technology ęž£åŗ„ē§‘ęŠ€čŒäøšå­¦é™¢'),
(115393, 'https://ror.org/0152wf839', 'fr', 1, 'https://ror.org/0152wf839 Dynamique des Cellules Tumorales Tumor cell dynamics'),
(115394, 'https://ror.org/0153tk833', 'en', 1, 'https://ror.org/0153tk833 Universidad de Virginia University of Virginia UniversitƩ de virginie'),
(115395, 'https://ror.org/0154n7s58', 'pt', 1, 'https://ror.org/0154n7s58 Escola de Sociologia e PolĆ­ticas PĆŗblicas'),
(115396, 'https://ror.org/015d72457', 'fr', 1, 'https://ror.org/015d72457 Laboratoire de mécanique des structures et des systèmes couplés'),
(115397, 'https://ror.org/015fskz95', 'en', 1, 'https://ror.org/015fskz95 National Medical Research Center for Hematology ФГБУ Ā«ŠŠœŠ˜Š¦ Гематологии» ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России, Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ «Гематологический Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр» ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Российской ФеГерации'),
(115398, 'https://ror.org/015h0qg34', 'en', 1, 'https://ror.org/015h0qg34 Maria Curie-Skłodowska University Uniwersytet Marii Curie-Skłodowskiej w Lublinie'),
(115399, 'https://ror.org/015m7wh34', 'fr', 1, 'https://ror.org/015m7wh34 University of Rennes UniversitƩ de Rennes'),
(115400, 'https://ror.org/015nj5y87', 'pt', 1, 'https://ror.org/015nj5y87 Instituto de Tecnologia e LideranƧa'),
(115401, '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'),
(115402, 'https://ror.org/015tefs60', 'en', 1, 'https://ror.org/015tefs60 International Research Centre on Karst č”åˆå›½ę•™ē§‘ę–‡ē»„ē»‡å›½é™…å²©ęŗ¶ē ”ē©¶äø­åæƒ'),
(115403, 'https://ror.org/015vzk543', 'es', 1, 'https://ror.org/015vzk543 Centro Regional de Seguridad HĆ­drica Regional Centre on Water Security'),
(115404, 'https://ror.org/0166xf875', 'sk', 1, 'https://ror.org/0166xf875 National Institute of Children’s Diseases NĆ”rodný Ćŗstav detských chorĆ“b'),
(115405, 'https://ror.org/016btc076', 'fr', 1, 'https://ror.org/016btc076 Observatoire des Mutations Institutionnelles et Juridiques'),
(115406, 'https://ror.org/016fdky84', 'en', 1, 'https://ror.org/016fdky84 Directorate General of Mines Safety'),
(115407, 'https://ror.org/016hqe888', 'en', 1, 'https://ror.org/016hqe888 Beaver Creek Analytical, LLC, Beaver Creek Analytical, LLC (United States)'),
(115408, 'https://ror.org/016sbja37', 'en', 1, 'https://ror.org/016sbja37 STRA LLC - Sci Tac Research Associates, STRA LLC - Sci Tac Research Associates (United States)'),
(115409, 'https://ror.org/016va0r53', 'no_lang_code', 1, 'https://ror.org/016va0r53 Livraria Portugal (Portugal), Portugal Bookshop'),
(115410, 'https://ror.org/016vzeb02', 'fr', 1, 'https://ror.org/016vzeb02 Maison des Sciences de l''Homme'),
(115411, 'https://ror.org/016w95s77', 'pt', 1, 'https://ror.org/016w95s77 Centro de Inovação em Engenharia e Tecnologia Industrial'),
(115412, 'https://ror.org/016z02n57', 'no_lang_code', 1, 'https://ror.org/016z02n57 Suprema Imaginação Unipessoal (Portugal)'),
(115413, 'https://ror.org/017579j39', 'pt', 1, 'https://ror.org/017579j39 Centro de Sangue e da Transplantação de Lisboa Área Funcional do Sangue'),
(115414, 'https://ror.org/0175hh227', 'fr', 1, 'https://ror.org/0175hh227 Conservatoire National des Arts et MƩtiers National Conservatory of Arts and Crafts');
INSERT INTO `rors` VALUES
(115415, 'https://ror.org/0179h0y45', 'de', 1, 'https://ror.org/0179h0y45 International Gustav Mahler Society Internationale Gustav Mahler Gesellschaft'),
(115416, 'https://ror.org/017b7qd04', 'no_lang_code', 1, 'https://ror.org/017b7qd04 Innovation Services (Portugal)'),
(115417, 'https://ror.org/017gpzf77', 'pt', 1, 'https://ror.org/017gpzf77 Santa Casa da Misericórdia de Fafe'),
(115418, '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'),
(115419, 'https://ror.org/017kdxe49', 'id', 1, 'https://ror.org/017kdxe49 Politeknik Bina Trada Semarang'),
(115420, 'https://ror.org/017kx4966', 'fr', 1, 'https://ror.org/017kx4966 Higher Normal School of Bou Saada Ɖcole Normale SupĆ©rieure de Bou Saada المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ببوسعادة'),
(115421, 'https://ror.org/017mdc710', 'es', 1, 'https://ror.org/017mdc710 Comillas Pontifical University Universidad Pontificia Comillas Universidade Pontificia Comillas Universitat PontifĆ­cia de Comillas'),
(115422, 'https://ror.org/017pgz739', 'id', 1, 'https://ror.org/017pgz739 Universitas Widya Gama Malang'),
(115423, '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'),
(115424, 'https://ror.org/017s0zm38', 'en', 1, 'https://ror.org/017s0zm38 OMF Publishing, LLC, OMF Publishing, LLC (Ukraine) Š¢ŠžŠ’ "ŠžŠœŠ¤ ŠŸŠ°Š±Š»Ń–ŃˆŠøŠ½Š³"'),
(115425, 'https://ror.org/017vwpy33', 'fr', 1, 'https://ror.org/017vwpy33 Méthodes basées sur les données et modèles en santé pour l''acquisition de connaissances'),
(115426, 'https://ror.org/017x7n237', 'en', 1, 'https://ror.org/017x7n237 Sidho-Kanho-Birsha University সিধো কানো বিরসা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(115427, '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'),
(115428, 'https://ror.org/0181xkt10', 'no_lang_code', 1, 'https://ror.org/0181xkt10 PLMJ Advogados (Portugal), PLMJ Transformative Legal Experts'),
(115429, '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'),
(115430, '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'),
(115431, 'https://ror.org/0187kwz08', 'en', 1, 'https://ror.org/0187kwz08 National Institute for Health Research'),
(115432, 'https://ror.org/018bzp792', 'en', 1, 'https://ror.org/018bzp792 Hogeschool voor de Kunsten Utrecht University of the Arts Utrecht'),
(115433, 'https://ror.org/018fv4x96', 'de', 1, 'https://ror.org/018fv4x96 Naturkundemuseum Bamberg'),
(115434, 'https://ror.org/018g8by31', 'no_lang_code', 1, 'https://ror.org/018g8by31 Solkeys Solkeys (Spain)'),
(115435, 'https://ror.org/018mejw64', 'de', 1, 'https://ror.org/018mejw64 Deutsche Forschungsgemeinschaft German Research Foundation'),
(115436, 'https://ror.org/018n39k75', 'en', 1, 'https://ror.org/018n39k75 Aalborg Centre for Problem Based Learning in Engineering Science and Sustainability'),
(115437, 'https://ror.org/018pkmj73', 'en', 1, 'https://ror.org/018pkmj73 Kaliyaganj College'),
(115438, 'https://ror.org/018pp1107', 'fr', 1, 'https://ror.org/018pp1107 Arts et MƩtiers'),
(115439, 'https://ror.org/0190ehg68', 'en', 1, 'https://ror.org/0190ehg68 Ukrainian Hydrometeorological Institute'),
(115440, 'https://ror.org/0190t5s25', 'en', 1, 'https://ror.org/0190t5s25 Sustainable Prosperity Initiative Nepal'),
(115441, 'https://ror.org/019379q74', 'no_lang_code', 1, 'https://ror.org/019379q74 Marka - Marketing Aplicado (Portugal)'),
(115442, 'https://ror.org/0196q1421', 'en', 1, 'https://ror.org/0196q1421 Mahatma Gandhi Ayurved College Hospital and Research Centre'),
(115443, 'https://ror.org/019e4ht86', 'pt', 1, 'https://ror.org/019e4ht86 Centro de Fƭsica do Instituto PolitƩcnico de Lisboa'),
(115444, 'https://ror.org/019frx870', 'en', 1, 'https://ror.org/019frx870 Govt. Sundarban Adarsha College, Khulna সরকারি ą¦øą§ą¦Øą§ą¦¦ą¦°ą¦¬ą¦Ø ą¦†ą¦¦ą¦°ą§ą¦¶ ą¦•ą¦²ą§‡ą¦œ, খুলনা'),
(115445, 'https://ror.org/019gw3w69', 'no_lang_code', 1, 'https://ror.org/019gw3w69 Diaverum (Portugal)'),
(115446, 'https://ror.org/019sdck14', 'en', 1, 'https://ror.org/019sdck14 International Knowledge Centre for Engineering Sciences and Technology å›½é™…å·„ēØ‹ē§‘ęŠ€ēŸ„čÆ†äø­åæƒ'),
(115447, 'https://ror.org/019tcpt25', 'fr', 1, 'https://ror.org/019tcpt25 CentraleSupƩlec'),
(115448, 'https://ror.org/019v0g155', 'pt', 1, 'https://ror.org/019v0g155 Instituto CRIAP'),
(115449, 'https://ror.org/019yg0716', 'pt', 1, 'https://ror.org/019yg0716 ISPA - Instituto UniversitƔrio'),
(115450, 'https://ror.org/01a0mk874', 'en', 1, 'https://ror.org/01a0mk874 Tekirdağ Namık Kemal University Teki̇rdağ Namik Kemal Üni̇versi̇tesi̇'),
(115451, 'https://ror.org/01a2wsa50', 'eu', 1, 'https://ror.org/01a2wsa50 Biogipuzkoa Health Research Institute'),
(115452, 'https://ror.org/01a61tf67', 'en', 1, 'https://ror.org/01a61tf67 Office RƩgional de la SantƩ de Winnipeg Winnipeg Regional Health Authority'),
(115453, 'https://ror.org/01a8ajp46', 'fr', 1, 'https://ror.org/01a8ajp46 University of Clermont Auvergne UniversitƩ Clermont Auvergne'),
(115454, 'https://ror.org/01a9g9931', 'no_lang_code', 1, 'https://ror.org/01a9g9931 MinistƩrio das FinanƧas (Portugal), Portuguese Republic Government Ministry of Finance'),
(115455, 'https://ror.org/01ad57y24', 'pt', 1, 'https://ror.org/01ad57y24 Centro de Investigação em Psicologia'),
(115456, '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'),
(115457, 'https://ror.org/01agh0847', 'de', 1, 'https://ror.org/01agh0847 Deutsche Gesetzliche Unfallversicherung'),
(115458, 'https://ror.org/01aht8z37', 'en', 1, 'https://ror.org/01aht8z37 Demartino Public Hospital'),
(115459, 'https://ror.org/01ahxvn85', 'es', 1, 'https://ror.org/01ahxvn85 IFMIF-DONES EspaƱa'),
(115460, 'https://ror.org/01akr3654', 'pt', 1, 'https://ror.org/01akr3654 Ministra Adjunta e dos Assuntos Parlamentares'),
(115461, 'https://ror.org/01an7q238', 'en', 1, 'https://ror.org/01an7q238 Universidad de California en Berkeley University of California, Berkeley UniversitƩ de Californie Ơ Berkeley'),
(115462, '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'),
(115463, 'https://ror.org/01av3a615', 'ca', 1, 'https://ror.org/01av3a615 Institut d''Investigació Sanitària Pere Virgili Pere Virgili Institute'),
(115464, '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'),
(115465, 'https://ror.org/01awx2523', 'de', 1, 'https://ror.org/01awx2523 Forschungsinstitut für politisch-historische Studien der Dr.-Wilfried-Haslauer-Bibliothek'),
(115466, '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'),
(115467, 'https://ror.org/01b11d975', 'en', 1, 'https://ror.org/01b11d975 Iranian Light Source Facility'),
(115468, 'https://ror.org/01b2cn516', 'es', 1, 'https://ror.org/01b2cn516 Hospital Rafael MƩndez'),
(115469, 'https://ror.org/01b3jg951', 'en', 1, 'https://ror.org/01b3jg951 Agrolabo S.p.A.'),
(115470, 'https://ror.org/01b61x679', 'en', 1, 'https://ror.org/01b61x679 Army Cyber Institute at West Point'),
(115471, 'https://ror.org/01b6rns71', 'pt', 1, 'https://ror.org/01b6rns71 Unidade de Investigação e Internacionalização do ISVOUGA'),
(115472, 'https://ror.org/01b8h3982', 'fr', 1, 'https://ror.org/01b8h3982 UniversitƩ de Bretagne Occidentale'),
(115473, 'https://ror.org/01bbf9m56', 'fr', 1, 'https://ror.org/01bbf9m56 FƩdƩration Francilienne de MƩcanique - MatƩriaux, Structures, ProcƩdƩs'),
(115474, 'https://ror.org/01bdy0k56', 'en', 1, 'https://ror.org/01bdy0k56 Maryland Quantum Materials Center'),
(115475, 'https://ror.org/01bg62x04', 'ca', 1, 'https://ror.org/01bg62x04 Generalidad de CataluƱa Generalitat de Catalunya Government of Catalonia Kataluniako Generalitatea'),
(115476, 'https://ror.org/01bm50s04', 'tr', 1, 'https://ror.org/01bm50s04 Eskişehir Anadolu Lisesi'),
(115477, 'https://ror.org/01bnjb948', 'en', 1, 'https://ror.org/01bnjb948 Nederlandse Organisatie voor Toegepast Natuurwetenschappelijk Onderzoek Netherlands Organisation for Applied Scientific Research'),
(115478, 'https://ror.org/01bpsk167', 'fr', 1, 'https://ror.org/01bpsk167 Centre de recherche sur le vieillissement Research Centre on Aging'),
(115479, '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 éš†å®‰å·„ę„­ē¶“ęæŸå¤§å­ø'),
(115480, 'https://ror.org/01bqtpd23', 'no_lang_code', 1, 'https://ror.org/01bqtpd23 Coinscrap Finance, Coinscrap Finance SL Coinscrap Finance SL (Spain)'),
(115481, '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'),
(115482, 'https://ror.org/01bvjz807', 'pt', 1, 'https://ror.org/01bvjz807 Instituto Politecnico de Setubal Polytechnic Institute of SetĆŗbal'),
(115483, 'https://ror.org/01bvmtn27', 'en', 1, 'https://ror.org/01bvmtn27 Oxford College of Engineering and Management'),
(115484, 'https://ror.org/01bw5rm87', 'en', 1, 'https://ror.org/01bw5rm87 Bangladesh Atomic Energy Commission বাংলাদেশ পরমাণু ą¦¶ą¦•ą§ą¦¤ą¦æ কমিশন'),
(115485, 'https://ror.org/01by29f02', 'en', 1, 'https://ror.org/01by29f02 St. Thomas College (Autonomous) ą“øąµ†ą“Øąµą“±ąµ ą“¤ąµ‹ą“®ą“øąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“¤ąµƒą“¶ąµ‚ąµ¼'),
(115486, 'https://ror.org/01c27hj86', 'en', 1, 'https://ror.org/01c27hj86 Universidade de Lisboa University of Lisbon'),
(115487, 'https://ror.org/01c8rcg82', 'fr', 1, 'https://ror.org/01c8rcg82 Grenoble Computer Science Laboratory Laboratoire d''Informatique de Grenoble'),
(115488, 'https://ror.org/01cd4f636', 'fr', 1, 'https://ror.org/01cd4f636 Laboratoire de Philosophies et RationalitƩs'),
(115489, 'https://ror.org/01ch2yn61', 'en', 1, 'https://ror.org/01ch2yn61 Met Office'),
(115490, 'https://ror.org/01cqa1772', 'en', 1, 'https://ror.org/01cqa1772 Irish Thoracic Society'),
(115491, 'https://ror.org/01cqkb585', 'tr', 1, 'https://ror.org/01cqkb585 Ataşehir Adıgüzel Meslek Yüksekokulu'),
(115492, 'https://ror.org/01d7kqy13', 'pt', 1, 'https://ror.org/01d7kqy13 Centro de Reabilitação de Paralisia Cerebral do Porto'),
(115493, 'https://ror.org/01d88se56', 'en', 1, 'https://ror.org/01d88se56 UCLA Health'),
(115494, 'https://ror.org/01d8vw515', 'en', 1, 'https://ror.org/01d8vw515 South China Institute of Frontier Science (Guangdong)'),
(115495, 'https://ror.org/01db6n192', 'en', 1, 'https://ror.org/01db6n192 Department of Climate Change, Energy, the Environment and Water'),
(115496, 'https://ror.org/01dbmzx78', 'en', 1, 'https://ror.org/01dbmzx78 The Kids Research Institute Australia'),
(115497, 'https://ror.org/01dhvva97', 'en', 1, 'https://ror.org/01dhvva97 Markey Cancer Center'),
(115498, 'https://ror.org/01dr6c206', 'en', 1, 'https://ror.org/01dr6c206 Polish Academy of Sciences Polska Akademia Nauk'),
(115499, 'https://ror.org/01dx9yw21', 'en', 1, 'https://ror.org/01dx9yw21 Jabir Ibn Hayyan University for Medical and Pharmaceutical Sciences Ų¬Ų§ŲØŲ± بن Ų­ŁŠŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„ŲµŁŠŲÆŁ„Ų§Ł†ŁŠŲ©'),
(115500, 'https://ror.org/01e26yv04', 'fr', 1, 'https://ror.org/01e26yv04'),
(115501, 'https://ror.org/01e312d09', 'en', 1, 'https://ror.org/01e312d09 Indo-German Science & Technology Centre'),
(115502, 'https://ror.org/01e4q9134', 'en', 1, 'https://ror.org/01e4q9134 Min-On Music Research Institute'),
(115503, 'https://ror.org/01e65z464', 'en', 1, 'https://ror.org/01e65z464 University of Technology and Applied Sciences - Ibra Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© Ų„ŲØŲ±Ų§Ų”'),
(115504, 'https://ror.org/01e67se92', 'no_lang_code', 1, 'https://ror.org/01e67se92 Institute of Business Management (Portugal)'),
(115505, 'https://ror.org/01e70gy59', 'en', 1, 'https://ror.org/01e70gy59 Department of Science and Technology of Anhui Province å®‰å¾½ēœē§‘ęŠ€åŽ…'),
(115506, 'https://ror.org/01e8wn134', 'en', 1, 'https://ror.org/01e8wn134 Belmont Forum'),
(115507, 'https://ror.org/01ebs6k31', 'es', 1, 'https://ror.org/01ebs6k31 Instituto de Ciencias'),
(115508, 'https://ror.org/01ehk9611', 'es', 1, 'https://ror.org/01ehk9611 Facultad Latinoamericana de Ciencias Sociales Latin American Faculty of Social Sciences'),
(115509, 'https://ror.org/01encsj80', 'no_lang_code', 1, 'https://ror.org/01encsj80 University of Botswana'),
(115510, 'https://ror.org/01evzkn27', 'pt', 1, 'https://ror.org/01evzkn27 Fundación Getulio Vargas Fundação Getulio Vargas Getúlio Vargas Foundation'),
(115511, 'https://ror.org/01f2qa203', 'es', 1, 'https://ror.org/01f2qa203 Centro Nacional de Ɓreas Protegidas'),
(115512, 'https://ror.org/01f5ytq51', 'en', 1, 'https://ror.org/01f5ytq51 Texas A&M University'),
(115513, 'https://ror.org/01f80g185', 'en', 1, 'https://ror.org/01f80g185 Organisation Mondiale de la SantƩ Organizzazione Mondiale della SanitƠ Weltgesundheitsorganisation World Health Organization'),
(115514, 'https://ror.org/01f83q676', 'pt', 1, 'https://ror.org/01f83q676 MinistƩrio do Planejamento e das Infraestruturas'),
(115515, 'https://ror.org/01fva0642', 'en', 1, 'https://ror.org/01fva0642 Netrokona University ą¦Øą§‡ą¦¤ą§ą¦°ą¦•ą§‹ą¦£ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(115516, 'https://ror.org/01fwb5927', 'en', 1, 'https://ror.org/01fwb5927 Naval Safety Command'),
(115517, 'https://ror.org/01fyg2222', 'no_lang_code', 1, 'https://ror.org/01fyg2222 Seber Portuguesa FarmacĆŖutica (Portugal), Seber Portuguese Pharmaceutical'),
(115518, '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'),
(115519, 'https://ror.org/01g6qcm52', 'en', 1, 'https://ror.org/01g6qcm52 Institute of Earth Sciences Jarðvísindastofnun HÔskólans'),
(115520, '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'),
(115521, 'https://ror.org/01gkfbh21', 'pt', 1, 'https://ror.org/01gkfbh21 Fundação Ensino e Cultura Fernando Pessoa'),
(115522, 'https://ror.org/01gw3vg45', 'no_lang_code', 1, 'https://ror.org/01gw3vg45 Kupu'),
(115523, 'https://ror.org/01gwm7a05', 'en', 1, 'https://ror.org/01gwm7a05 Government of South Africa'),
(115524, 'https://ror.org/01gyxrk03', 'fr', 1, 'https://ror.org/01gyxrk03 Universitat de Picardia University of Picardie Jules Verne UniversitƩ de Picardie Jules Verne'),
(115525, 'https://ror.org/01h07p820', 'pt', 1, 'https://ror.org/01h07p820 Embaixada do PanamĆ” em Portugal'),
(115526, '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'),
(115527, 'https://ror.org/01h67hk15', 'fr', 1, 'https://ror.org/01h67hk15 Groupe de Recherches Sociologiques sur les sociƩtƩs Contemporaines'),
(115528, 'https://ror.org/01h8t7c63', 'pt', 1, 'https://ror.org/01h8t7c63 Universidade de Aveiro Incubator'),
(115529, 'https://ror.org/01h9ygv15', 'pt', 1, 'https://ror.org/01h9ygv15 Unidade de Investigação em Media Artes e Design'),
(115530, 'https://ror.org/01hg13988', 'fr', 1, 'https://ror.org/01hg13988 Centre d''Ɖtudes et de Recherches sur le DĆ©veloppement International'),
(115531, 'https://ror.org/01hgxez56', 'no_lang_code', 1, 'https://ror.org/01hgxez56 Arla Foods (Denmark)'),
(115532, 'https://ror.org/01hje9742', 'en', 1, 'https://ror.org/01hje9742 Global Research and Training Centre for Internationally Designated Areas ģœ ė„¤ģŠ¤ģ½” źµ­ģ œė³“ķ˜øģ§€ģ—­ źø€ė”œė²Œ ģ—°źµ¬Ā·ķ›ˆė Øģ„¼ķ„°'),
(115533, 'https://ror.org/01hjg2702', 'no_lang_code', 1, 'https://ror.org/01hjg2702 Instituto Eletrotécnico Português (Portugal), Portuguese Electronic Institute'),
(115534, 'https://ror.org/01hqy5n02', 'en', 1, 'https://ror.org/01hqy5n02 State Educational Institution "Academy of Education" Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ā«ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ ŠžŠ‘Š ŠŠ—ŠžŠ’ŠŠŠ˜ŠÆĀ» Š”Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń ŃžŃŃ‚Š°Š½Š¾Š²Š° Š°Š“ŃƒŠŗŠ°Ń†Ń‹Ń– Ā«ŠŠšŠŠ”Š­ŠœŠ†ŠÆ ŠŠ”Š£ŠšŠŠ¦Š«Š†Ā»'),
(115535, 'https://ror.org/01htsap06', 'en', 0, 'https://ror.org/01htsap06 Geological Survey of Estonia'),
(115536, 'https://ror.org/01hvaky50', 'en', 1, 'https://ror.org/01hvaky50 Ibn Sina University of Medical and Pharmaceutical Sciences Ų¬Ų§Ł…Ų¹Ų© ابن Ų³ŁŠŁ†Ų§ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„ŲµŁŠŲÆŁ„Ų§Ł†ŁŠŲ©'),
(115537, 'https://ror.org/01hwhm419', 'de', 0, 'https://ror.org/01hwhm419 Hessian University for Police and Administration Hessische Hochschule für Polizei und Verwaltung'),
(115538, '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'),
(115539, 'https://ror.org/01j308435', 'pt', 1, 'https://ror.org/01j308435 Galeria Geraldes da Silva'),
(115540, 'https://ror.org/01j3jyr88', 'en', 1, 'https://ror.org/01j3jyr88 School of Management Sciences, Lucknow'),
(115541, 'https://ror.org/01j87z370', 'en', 1, 'https://ror.org/01j87z370 Junior Academy of Sciences Мала Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń наук України'),
(115542, 'https://ror.org/01jc17w92', 'pt', 1, 'https://ror.org/01jc17w92 Centro de Investigação Prof Doutor Joaquim Veríssimo Serrão'),
(115543, 'https://ror.org/01jdpyv68', 'en', 1, 'https://ror.org/01jdpyv68 Saarland University UniversitƤt des Saarlandes'),
(115544, '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'),
(115545, 'https://ror.org/01jfp4b04', 'en', 1, 'https://ror.org/01jfp4b04 Al-Esraa University لجامعة الاسراؔ'),
(115546, 'https://ror.org/01jfz6618', 'en', 1, 'https://ror.org/01jfz6618 Bangladesh Bioethics Society বাংলাদেশ ą¦¬ą¦¾ą¦Æą¦¼ą§‹ą¦ą¦„ą¦æą¦•ą§ą¦ø ą¦øą§‹ą¦øą¦¾ą¦‡ą¦Ÿą¦æ, ą¦¬ą¦æą¦¬ą¦æą¦ą¦ø'),
(115547, 'https://ror.org/01jgt3r49', 'no_lang_code', 1, 'https://ror.org/01jgt3r49 Momento Medico Publishing House, Momento MƩdico Editora de PublicaƧƵes (Portugal)'),
(115548, 'https://ror.org/01jjwvs48', 'en', 1, 'https://ror.org/01jjwvs48 Carl Remigius Medical School'),
(115549, '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'),
(115550, 'https://ror.org/01jmxt844', 'en', 1, 'https://ror.org/01jmxt844 University of Otago'),
(115551, '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'),
(115552, 'https://ror.org/01js43d58', 'pt', 1, 'https://ror.org/01js43d58 Instituto de Artes Visuais, Design e Marketing'),
(115553, 'https://ror.org/01jvqnd16', 'fr', 0, 'https://ror.org/01jvqnd16 Centre Technique Interprofessionnel des OlƩagineux MƩtropolitains'),
(115554, 'https://ror.org/01jwcme05', 'en', 1, 'https://ror.org/01jwcme05 Fontys Hogeschool Fontys University of Applied Sciences'),
(115555, 'https://ror.org/01k0j3535', 'en', 1, 'https://ror.org/01k0j3535 ETC Group, ETC Group - Action Group on Erosion, Technology and Concentration'),
(115556, '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'),
(115557, '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'),
(115558, 'https://ror.org/01k6wxv57', 'fr', 1, 'https://ror.org/01k6wxv57 ROMEO'),
(115559, 'https://ror.org/01kknrc90', 'id', 1, 'https://ror.org/01kknrc90 Universitas Sumatera Utara University of North Sumatra'),
(115560, 'https://ror.org/01ks4c961', 'fr', 1, 'https://ror.org/01ks4c961 Laboratoire Angevin de MƩcanique, ProcƩdƩs et InnovAtion'),
(115561, 'https://ror.org/01ksk4k18', 'en', 1, 'https://ror.org/01ksk4k18 Department of Education Shandong Province å±±äøœēœę•™č‚²åŽ…ļ¼ˆēœå§”ę•™č‚²å·„å§”ļ¼‰'),
(115562, 'https://ror.org/01kzn7k21', 'en', 1, 'https://ror.org/01kzn7k21 Islamic Azad University, Tehran دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ'),
(115563, 'https://ror.org/01m3ry316', 'es', 1, 'https://ror.org/01m3ry316 Centro de Producción e Investigación en Artes'),
(115564, 'https://ror.org/01m8xrn95', 'pt', 1, 'https://ror.org/01m8xrn95 Centro de Estudos de Comunicação e Cultura'),
(115565, 'https://ror.org/01md9v276', 'en', 1, 'https://ror.org/01md9v276 U.S. Army Intelligence Center of Excellence'),
(115566, 'https://ror.org/01mdyhz69', 'en', 1, 'https://ror.org/01mdyhz69 Pan African Thoracic Society'),
(115567, 'https://ror.org/01mehdc51', 'pt', 1, 'https://ror.org/01mehdc51 Fundação Professor Francisco Pulido Valente'),
(115568, 'https://ror.org/01mfest76', 'en', 1, 'https://ror.org/01mfest76 ICMR - National Institute of Immunohaemotology आय ą¤øą„€ ą¤ą¤® आर - ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¤ą¤æą¤°ą¤•ą„ą¤·ą¤¾ ą¤°ą„ą¤§ą¤æą¤° ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(115569, 'https://ror.org/01mhm6x57', 'en', 1, 'https://ror.org/01mhm6x57 Ethiopian Institute of Agricultural Research į‹ØįŠ¢į‰µį‹®įŒµį‹« į‹ØįŒį‰„įˆ­įŠ“ įˆįˆ­įˆįˆ­ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(115570, 'https://ror.org/01mk44223', 'no_lang_code', 1, 'https://ror.org/01mk44223 IQVIA (United States)'),
(115571, 'https://ror.org/01mkht758', 'en', 1, 'https://ror.org/01mkht758 Netversity International'),
(115572, 'https://ror.org/01mwsm621', 'no_lang_code', 1, 'https://ror.org/01mwsm621 AnamĆŖ Health Design AnamĆŖ Health Design (Brazil)'),
(115573, 'https://ror.org/01mwwwn80', 'en', 1, 'https://ror.org/01mwwwn80 Koninklijk Conservatorium Royal Conservatory The Hague'),
(115574, 'https://ror.org/01mz7kc73', 'en', 1, 'https://ror.org/01mz7kc73 ICAR-Directorate of Rapeseed-Mustard Research, Bharatpur ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ-ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą¤°ą¤øą„‹ą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(115575, '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'),
(115576, 'https://ror.org/01n6r0e97', 'en', 1, 'https://ror.org/01n6r0e97 Leibniz Association Leibniz-Gemeinschaft'),
(115577, 'https://ror.org/01na3y974', 'en', 1, 'https://ror.org/01na3y974 Seychelles Public Health Authority'),
(115578, 'https://ror.org/01nk6sj42', 'en', 1, 'https://ror.org/01nk6sj42 Ankara Etlik City Hospital Ankara Etlik Şehir Hastanesi مستؓفى Ł…ŲÆŁŠŁ†Ų© Ų„ŲŖŁ„ŁŠŁƒ'),
(115579, 'https://ror.org/01nrtdp55', 'fr', 1, 'https://ror.org/01nrtdp55'),
(115580, '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'),
(115581, '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'),
(115582, 'https://ror.org/01nzkaw91', 'fr', 1, 'https://ror.org/01nzkaw91 Inria Sophia Antipolis - MƩditerranƩe, Research Centre Inria Sophia Antipolis - MƩditerranƩe'),
(115583, 'https://ror.org/01nzrgp81', 'en', 1, 'https://ror.org/01nzrgp81 Chirchik State Pedagogical University'),
(115584, 'https://ror.org/01p08rg37', 'uz', 1, 'https://ror.org/01p08rg37 Andijan State Technical Institute Andijon davlat texnika insituti АнГижанского Š³Š¾ŃŃƒŠ“арственного технического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š°'),
(115585, 'https://ror.org/01p1q1f66', 'en', 1, 'https://ror.org/01p1q1f66 Sustainment Center of Excellence'),
(115586, 'https://ror.org/01p825v31', 'en', 1, 'https://ror.org/01p825v31 Alliance for Education on Probiotics'),
(115587, 'https://ror.org/01pck0x04', 'fr', 1, 'https://ror.org/01pck0x04 Centre National de la Propriété Forestière'),
(115588, 'https://ror.org/01pd41442', 'en', 1, 'https://ror.org/01pd41442 FiberCop, FiberCop (Italy)'),
(115589, 'https://ror.org/01pjhvt09', 'fr', 1, 'https://ror.org/01pjhvt09 Transgénèse pour les études fonctionnelles sur les organismes modèles - Paris-Saclay'),
(115590, 'https://ror.org/01prbq409', 'pt', 1, 'https://ror.org/01prbq409 Egaz Moniz School of Health and Science Escola Superior de SaĆŗde Egas Moniz'),
(115591, 'https://ror.org/01pspve98', 'pt', 1, 'https://ror.org/01pspve98 Instituto PortuguĆŖs do Ritmo CardĆ­aco'),
(115592, 'https://ror.org/01pvj8f56', 'no_lang_code', 1, 'https://ror.org/01pvj8f56 X2 Science Solutions (Portugal)'),
(115593, 'https://ror.org/01pwpsf61', 'en', 1, 'https://ror.org/01pwpsf61 Homs University Ų¬ŁŽŲ§Ł…ŁŲ¹ŁŽŲ© حِمْص'),
(115594, 'https://ror.org/01q600m51', 'no_lang_code', 1, 'https://ror.org/01q600m51 Kironfarma Pharmaceutical Products, Kironfarma Produtos FarmacĆŖuticos (Portugal)'),
(115595, 'https://ror.org/01q8csw59', 'sv', 1, 'https://ror.org/01q8csw59 Halland County Council Region Halland'),
(115596, 'https://ror.org/01qg1af66', 'en', 1, 'https://ror.org/01qg1af66 Army Institute of Business Administration, Sylhet ą¦†ą¦°ą§ą¦®ą¦æ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø ą¦ą¦”ą¦®ą¦æą¦Øą¦æą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦¶ą¦Ø, ą¦øą¦æą¦²ą§‡ą¦Ÿ'),
(115597, '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'),
(115598, 'https://ror.org/01qgrh175', 'fr', 1, 'https://ror.org/01qgrh175 Prevention of Chemical Risks PrƩvention du risque chimique'),
(115599, 'https://ror.org/01qv8fp92', 'en', 1, 'https://ror.org/01qv8fp92 Louisiana State University Health Sciences Center New Orleans'),
(115600, 'https://ror.org/01qwh7a74', 'en', 1, 'https://ror.org/01qwh7a74 Chinese Aeronautical Establishment äø­å›½čˆŖē©ŗē ”ē©¶é™¢'),
(115601, 'https://ror.org/01r4aq231', 'en', 1, 'https://ror.org/01r4aq231 East Africa Institute for Fundamental Research, ICTP - East Africa Institute for Fundamental Research'),
(115602, 'https://ror.org/01r9z8p25', 'es', 1, 'https://ror.org/01r9z8p25 Universidad de La Laguna Universidade de La Laguna University of La Laguna'),
(115603, 'https://ror.org/01rba9m50', 'pt', 1, 'https://ror.org/01rba9m50 INCUB“UP ANPME'),
(115604, 'https://ror.org/01rc60n61', 'en', 1, 'https://ror.org/01rc60n61 Centre for the Sustainable Management of Water Resources in the Caribbean Island Sates'),
(115605, 'https://ror.org/01rdv4660', 'en', 1, 'https://ror.org/01rdv4660 Nurses Specialized in Wound, Ostomy and Continence Canada'),
(115606, 'https://ror.org/01red3556', 'en', 1, 'https://ror.org/01red3556 East Texas A&M University'),
(115607, 'https://ror.org/01rn8rf71', 'en', 0, 'https://ror.org/01rn8rf71 KLA Corporation, KLA Corporation (United States)'),
(115608, '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)'),
(115609, 'https://ror.org/01rp22j96', 'fr', 1, 'https://ror.org/01rp22j96 Centre de Recherche en Odontologie Clinique'),
(115610, 'https://ror.org/01rrvyp50', 'fr', 1, 'https://ror.org/01rrvyp50 Outils de RƩsolution AlgƩbriques pour la GƩomƩtrie et ses Applications'),
(115611, 'https://ror.org/01rs1gy10', 'fr', 1, 'https://ror.org/01rs1gy10 CEA Cadarache, Centre de Cadarache'),
(115612, 'https://ror.org/01rsvh545', 'en', 1, 'https://ror.org/01rsvh545 Army University'),
(115613, 'https://ror.org/01rv9gx86', 'en', 1, 'https://ror.org/01rv9gx86 Jisc'),
(115614, 'https://ror.org/01ryg1n93', 'pt', 1, 'https://ror.org/01ryg1n93 Laboratório de Ciências Forenses e Psicológicas Egas Moniz'),
(115615, 'https://ror.org/01ryrwk91', 'en', 1, 'https://ror.org/01ryrwk91 Autonomous University of Lisbon Universidade Autónoma de Lisboa'),
(115616, 'https://ror.org/01s1hnr07', 'ro', 1, 'https://ror.org/01s1hnr07 Academia RomĆ¢nă, Filiala Iași Romanian Academy, Iași Divison'),
(115617, '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'),
(115618, 'https://ror.org/01s8kfg79', 'en', 1, 'https://ror.org/01s8kfg79 WWF-Pakistan'),
(115619, 'https://ror.org/01sabsj32', 'pt', 1, 'https://ror.org/01sabsj32 Centro de Investigação Desenvolvimento e Inovação da Academia Militar'),
(115620, 'https://ror.org/01sbq1a82', 'en', 1, 'https://ror.org/01sbq1a82 Universidad de Delaware University of Delaware UniversitƩ du Delaware'),
(115621, 'https://ror.org/01sdhtm90', 'en', 1, 'https://ror.org/01sdhtm90 Quezon City University'),
(115622, 'https://ror.org/01sdrjx85', 'en', 1, 'https://ror.org/01sdrjx85 Institut de Fisica d''Altes Energies Institute for High Energy Physics'),
(115623, 'https://ror.org/01sgp7065', 'en', 1, 'https://ror.org/01sgp7065 Singapore Baptist Theological Seminary ę–°åŠ å”ęµøäæ”ä¼šē„žå­¦é™¢'),
(115624, 'https://ror.org/01sgwka45', 'fr', 1, 'https://ror.org/01sgwka45 Microscopie Fonctionnelle du Vivant'),
(115625, 'https://ror.org/01sn1yx84', 'en', 1, 'https://ror.org/01sn1yx84 University of Nigeria YunifĆ”sĆ­tƬ ilẹ̀ NƠƬjĆ­rĆ­Ć '),
(115626, 'https://ror.org/01snj4592', 'en', 1, 'https://ror.org/01snj4592 Czech Social Science Data Archive Český sociĆ”lněvědnĆ­ datový archiv'),
(115627, 'https://ror.org/01snnxs56', 'pt', 1, 'https://ror.org/01snnxs56 Instituto das Comunidades Educativas'),
(115628, 'https://ror.org/01sxmzj91', 'de', 0, 'https://ror.org/01sxmzj91 Zürcher Fachhochschule'),
(115629, 'https://ror.org/01t1agx36', 'en', 1, 'https://ror.org/01t1agx36 Central University of South Bihar ą¤¦ą¤•ą„ą¤·ą¤æą¤£ बिहार ą¤•ą„‡ą¤Øą„ā€ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(115630, 'https://ror.org/01t3s1q45', 'en', 1, 'https://ror.org/01t3s1q45 Regional Experimental Centre for Sanitation Technologies'),
(115631, 'https://ror.org/01t466c14', 'es', 1, 'https://ror.org/01t466c14 National University of Costa Rica Universidad Nacional'),
(115632, 'https://ror.org/01t6whv16', 'en', 1, 'https://ror.org/01t6whv16 Gobabeb Namib Research Institute'),
(115633, 'https://ror.org/01th0qt14', 'no_lang_code', 1, 'https://ror.org/01th0qt14 Prizmakat (Portugal)'),
(115634, 'https://ror.org/01th9t868', 'pt', 1, 'https://ror.org/01th9t868 Instituto para o Desenvolvimento AgrÔrio da Região Norte'),
(115635, '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'),
(115636, 'https://ror.org/01tk4y529', 'es', 1, 'https://ror.org/01tk4y529 Sociedad Española de Endocrinología y Nutrición'),
(115637, 'https://ror.org/01tkwzk77', 'en', 1, 'https://ror.org/01tkwzk77 Livingstone Center for Prevention and Translational Science'),
(115638, 'https://ror.org/01tnxwc41', 'en', 1, 'https://ror.org/01tnxwc41'),
(115639, 'https://ror.org/01tp1c480', 'fr', 1, 'https://ror.org/01tp1c480 Biologie des Organismes et ƉcosystĆØmes Aquatiques'),
(115640, 'https://ror.org/01tqf6a73', 'de', 1, 'https://ror.org/01tqf6a73 Institut für Geschichte des ländlichen Raumes Institute of Rural History'),
(115641, '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)'),
(115642, 'https://ror.org/01tzqyt58', 'no_lang_code', 1, 'https://ror.org/01tzqyt58 Takeda (Portugal)'),
(115643, 'https://ror.org/01v1h3m62', 'en', 1, 'https://ror.org/01v1h3m62 Jagannath International Management School, Vasant Kunj, New Delhi'),
(115644, 'https://ror.org/01v1jam04', 'de', 1, 'https://ror.org/01v1jam04 Ludwig Boltzmann Gesellschaft'),
(115645, 'https://ror.org/01v2hty12', 'en', 1, 'https://ror.org/01v2hty12 Dmytro Motornyi Tavria State Agrotechnological University Š¢Š°Š²Ń€Ń–Š¹ŃŃŒŠŗŠøŠ¹ Гержавний агротехнологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Дмитра ŠœŠ¾Ń‚орного'),
(115646, 'https://ror.org/01v6shv96', 'fr', 1, 'https://ror.org/01v6shv96 Institut de Recherche de l’École Navale Naval Academy Research Institute'),
(115647, 'https://ror.org/01vgbcw83', 'pt', 1, 'https://ror.org/01vgbcw83 Escola Superior ArtĆ­stica do Porto'),
(115648, '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'),
(115649, 'https://ror.org/01vkp3w06', 'en', 1, 'https://ror.org/01vkp3w06 Inter-American Institute'),
(115650, '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'),
(115651, 'https://ror.org/01vmzej98', 'fr', 1, 'https://ror.org/01vmzej98 Centre Michel de l’Hospital'),
(115652, 'https://ror.org/01vn94n11', 'en', 1, 'https://ror.org/01vn94n11 Berlin International University of Applied Sciences'),
(115653, 'https://ror.org/01vpa2k04', 'en', 1, 'https://ror.org/01vpa2k04 U.S. Army Medical Center of Excellence'),
(115654, 'https://ror.org/01vpv3z28', 'no_lang_code', 1, 'https://ror.org/01vpv3z28 InterContinental Lisboa (Portugal), InterContinental Lisbon'),
(115655, 'https://ror.org/01vsrcf54', 'pt', 1, 'https://ror.org/01vsrcf54 Escola Superior de Actividades ImobiliƔrias'),
(115656, 'https://ror.org/01vvenv09', 'en', 1, 'https://ror.org/01vvenv09 GreenCoLab'),
(115657, 'https://ror.org/01vzrbc95', 'en', 1, 'https://ror.org/01vzrbc95 Maaref University of Applied Sciences Ų¬Ų§Ł…Ų¹Ų© المعارف Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(115658, 'https://ror.org/01w01n720', 'en', 1, 'https://ror.org/01w01n720 Academia de Științe a Moldovei Academy of Sciences of Moldova ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук МолГавии'),
(115659, 'https://ror.org/01w5pyt41', 'en', 1, 'https://ror.org/01w5pyt41 European Severe Storms Laboratory - Science and Training'),
(115660, 'https://ror.org/01we7jp47', 'pt', 1, 'https://ror.org/01we7jp47 MaiĆŖutica Cooperativa de Ensino Superior'),
(115661, 'https://ror.org/01wghy068', 'no_lang_code', 1, 'https://ror.org/01wghy068 EGOR Group, Grupo EGOR (Portugal)'),
(115662, 'https://ror.org/01wsw8g60', 'en', 1, 'https://ror.org/01wsw8g60 Asociația Independent Research Independent Research Association'),
(115663, 'https://ror.org/01wtcdw56', 'en', 1, 'https://ror.org/01wtcdw56 National Alliance against Disparities in Patient Health'),
(115664, 'https://ror.org/01wv9cn34', 'en', 1, 'https://ror.org/01wv9cn34 European Spallation Source'),
(115665, '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'),
(115666, 'https://ror.org/01x2d9f70', 'en', 1, 'https://ror.org/01x2d9f70 Amsterdam Neuroscience Researchsites Amsterdam'),
(115667, 'https://ror.org/01x8hew03', 'en', 1, 'https://ror.org/01x8hew03 Bulgar Bilimler Akademisi Bulgarian Academy of Sciences Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ на Š½Š°ŃƒŠŗŠøŃ‚е'),
(115668, 'https://ror.org/01xbtjm93', 'en', 1, 'https://ror.org/01xbtjm93 Islamic Azad University, Fasa Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŁˆŲ§Ų­ŲÆ فسا'),
(115669, 'https://ror.org/01xd0ys45', 'fr', 1, 'https://ror.org/01xd0ys45 Laboratoire de Conception Fabrication Commande Laboratory of design, manufacturing and control'),
(115670, 'https://ror.org/01xdxns91', 'ca', 1, 'https://ror.org/01xdxns91 Universitat de Girona'),
(115671, 'https://ror.org/01xhc9d78', 'ca', 1, 'https://ror.org/01xhc9d78 Agencia per a la Competitivit de l''Empresa'),
(115672, 'https://ror.org/01xjag017', 'es', 1, 'https://ror.org/01xjag017 Armada de Colombia Colombian National Navy'),
(115673, 'https://ror.org/01xm1pt56', 'es', 1, 'https://ror.org/01xm1pt56 Fundación GESICA'),
(115674, 'https://ror.org/01xm30661', 'en', 1, 'https://ror.org/01xm30661 International Space Science Institute'),
(115675, 'https://ror.org/01xsq9m65', 'en', 1, 'https://ror.org/01xsq9m65 National Scientific Center Ā«ŠŠ¾n. Prof. М.S. Bokarius Forensic Science InstituteĀ» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃƒŠ“Š¾Š²ŠøŃ… експертиз ім. Засл. проф. М.Š”. Š‘Š¾ŠŗŠ°Ń€Ń–ŃƒŃŠ°Ā»'),
(115676, 'https://ror.org/01xvwxv41', 'en', 1, 'https://ror.org/01xvwxv41 University of Balamand UniversitĆ© de Balamand Ų¬Ų§Ł…Ų¹Ų© البلمند'),
(115677, 'https://ror.org/01xx18q52', 'en', 1, 'https://ror.org/01xx18q52 NingboTech University 浙大宁波理巄学院'),
(115678, 'https://ror.org/01xy6f245', 'en', 1, 'https://ror.org/01xy6f245 Nuclear Energy Agency'),
(115679, 'https://ror.org/01y11b825', 'en', 0, 'https://ror.org/01y11b825 Central Forensic Laboratory of the Police Centralne Laboratorium Kryminalistyczne Policji'),
(115680, 'https://ror.org/01y2kdt21', 'en', 1, 'https://ror.org/01y2kdt21 Osaka Medical and Pharmaceutical University å¤§é˜ŖåŒ»ē§‘č–¬ē§‘å¤§å­¦'),
(115681, 'https://ror.org/01y55wc83', 'pt', 1, 'https://ror.org/01y55wc83 Centro de Estudos Interdisciplinares do SƩculo XX'),
(115682, 'https://ror.org/01y5nr239', 'en', 1, 'https://ror.org/01y5nr239 International Training Network, Bangladesh University of Engineering and Technology'),
(115683, 'https://ror.org/01yaj9a77', 'en', 1, 'https://ror.org/01yaj9a77 ZonMw, The Dutch Organisation for knowledge and innovation in health, healthcare and well-being'),
(115684, 'https://ror.org/01yc7t268', 'en', 1, 'https://ror.org/01yc7t268 Universidad Washington en San Luis UniversitƩ Washington Ơ Saint-louis Washington University in St. Louis'),
(115685, 'https://ror.org/01yvark48', 'en', 1, 'https://ror.org/01yvark48 NOAA Integrated Ocean Observing System'),
(115686, 'https://ror.org/01z9q7v15', 'id', 1, 'https://ror.org/01z9q7v15 Universitas Sembilanbelas November Kolaka'),
(115687, 'https://ror.org/01ze10m80', 'es', 1, 'https://ror.org/01ze10m80 Facultad Latinoamericana de Ciencias Sociales Costa Rica Latin American Faculty of Social Sciences Costa Rica'),
(115688, 'https://ror.org/01zj5sk64', 'fr', 1, 'https://ror.org/01zj5sk64 Institut droit Ʃthique patrimoine'),
(115689, 'https://ror.org/01zk3ma76', 'de', 1, 'https://ror.org/01zk3ma76 Deutsche Gesellschaft für Neurologie German Neurological Society'),
(115690, 'https://ror.org/01zk8e745', 'pt', 1, 'https://ror.org/01zk8e745 CÔtedra Educação Cidadania e Diversidade Cultural'),
(115691, 'https://ror.org/01zphyp78', 'en', 1, 'https://ror.org/01zphyp78 Bangladesh University of Professionals বাংলাদেশ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦Ŗą§ą¦°ą¦«ą§‡ą¦¶ą¦Øą¦¾ą¦²ą¦ø'),
(115692, 'https://ror.org/01zq65v31', 'en', 1, 'https://ror.org/01zq65v31 Evercare Hospital Dhaka'),
(115693, 'https://ror.org/01zy7yh11', 'de', 1, 'https://ror.org/01zy7yh11 Bundesinstitut für Bau-, Stadt- und Raumforschung'),
(115694, 'https://ror.org/01zz2zk94', 'en', 1, 'https://ror.org/01zz2zk94 International Training Centre in Astronomy ąøØąø¹ąø™ąø¢ą¹Œąøąø¶ąøąø­ąøšąø£ąø”ąø”ąø²ąø£ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ąø ąø²ąø¢ą¹ƒąø•ą¹‰ąø¢ąø¹ą¹€ąø™ąøŖą¹‚ąø'),
(115695, 'https://ror.org/01zz3bg18', 'pt', 1, 'https://ror.org/01zz3bg18 Centro de Reabilitação de Paralisia Cerebral Calouste Gulbenkian'),
(115696, 'https://ror.org/02005jv13', 'no_lang_code', 1, 'https://ror.org/02005jv13 Grupo Martifer (Portugal), Martifer Group'),
(115697, 'https://ror.org/0200mm479', 'en', 1, 'https://ror.org/0200mm479 African Regional Centre for Ecohydrology'),
(115698, 'https://ror.org/0201zh494', 'no_lang_code', 1, 'https://ror.org/0201zh494 Moreirense Football Club, Moreirense Futebol Clube (Portugal)'),
(115699, 'https://ror.org/0203gyr63', 'no_lang_code', 1, 'https://ror.org/0203gyr63 GfK Portugal Marketing Services (Portugal), GfK Portugal Marketing Services, S.A.'),
(115700, 'https://ror.org/020787x82', 'de', 1, 'https://ror.org/020787x82 Deutsches Institut für Gesundheitsforschung, Deutsches Institut für Gesundheitsforschung gGmbH'),
(115701, 'https://ror.org/020a03t90', 'pt', 1, 'https://ror.org/020a03t90 Centro de Estudos sobre a Mudança Socioeconómica e o Território'),
(115702, 'https://ror.org/020a9ab42', 'en', 1, 'https://ror.org/020a9ab42 U.S. Army Maneuver Center of Excellence'),
(115703, 'https://ror.org/020jynt45', 'fr', 1, 'https://ror.org/020jynt45 Centre Pays de la Loire'),
(115704, 'https://ror.org/020qm1538', 'en', 1, 'https://ror.org/020qm1538 California State University System Universidad Estatal de California UniversitĆ© d''Ɖtat de californie'),
(115705, 'https://ror.org/020r51985', 'fr', 1, 'https://ror.org/020r51985 Centre Hospitalier Universitaire de Sherbrooke'),
(115706, 'https://ror.org/020s2ee41', 'en', 1, 'https://ror.org/020s2ee41 Institute of Bioenergy Crops and Sugar Beet Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біоенергетичних ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ і Ń†ŃƒŠŗŃ€Š¾Š²ŠøŃ… Š±ŃƒŃ€ŃŠŗŃ–Š²'),
(115707, 'https://ror.org/020sr6z07', 'pt', 0, 'https://ror.org/020sr6z07 Centro Hospitalar Lisboa Norte'),
(115708, 'https://ror.org/020xs5r81', 'en', 1, 'https://ror.org/020xs5r81 Belgian Nuclear Research Centre Centre d''Ɖtude de l''Ć©nergie NuclĆ©aire Studiecentrum voor Kernenergie Studienzentrum für Kernenergie'),
(115709, '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'),
(115710, 'https://ror.org/02125p091', 'fr', 1, 'https://ror.org/02125p091 Sciences et Technologies des Cultures et SociƩtƩs NumƩriques'),
(115711, 'https://ror.org/0213tsk84', 'en', 1, 'https://ror.org/0213tsk84 Mayanei Hayeshua Medical Center ×ž×Ø×›×– רפואי מעיני הישועה'),
(115712, 'https://ror.org/021k7qh53', 'en', 1, 'https://ror.org/021k7qh53 We and AI, We and AI Ltd'),
(115713, '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'),
(115714, 'https://ror.org/022b6wh61', 'es', 1, 'https://ror.org/022b6wh61 Laboratorio Nacional de GeoInteligencia'),
(115715, 'https://ror.org/022fs9h90', 'en', 1, 'https://ror.org/022fs9h90 University of Fribourg UniversitƠ di Friburgo UniversitƤt Freiburg UniversitƩ de Fribourg'),
(115716, 'https://ror.org/022gakr41', 'en', 1, 'https://ror.org/022gakr41 Inria Lyon Centre'),
(115717, 'https://ror.org/022hwxg26', 'en', 1, 'https://ror.org/022hwxg26 Ambika Prasad Research Foundation'),
(115718, 'https://ror.org/022je8241', 'en', 1, 'https://ror.org/022je8241 Openscapes, Openscapes (United States)'),
(115719, 'https://ror.org/02302gs61', 'en', 0, 'https://ror.org/02302gs61 Gesellschaft fuer klinische Forschung Society for Clinical Research'),
(115720, 'https://ror.org/0230zs006', 'nl', 1, 'https://ror.org/0230zs006 Hogeschool iPabo'),
(115721, 'https://ror.org/0235kxk33', 'en', 1, 'https://ror.org/0235kxk33 Instituto PolitƩcnico de Viseu Polytechnic Institute of Viseu'),
(115722, 'https://ror.org/0238k3s54', 'es', 1, 'https://ror.org/0238k3s54 Centro de Estudios Sociales Interdisciplinarios del Litoral'),
(115723, 'https://ror.org/023abrt21', 'en', 1, 'https://ror.org/023abrt21 Al Ain University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹ŁŠŁ† Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(115724, 'https://ror.org/023deh932', 'it', 1, 'https://ror.org/023deh932 University Ambrosiana UniversitĆ  Ambrosiana'),
(115725, 'https://ror.org/023x52d96', 'pt', 1, 'https://ror.org/023x52d96 Valoriza Centro de Investigação para a Valorização de Recursos Endógenos'),
(115726, 'https://ror.org/023y7b165', 'es', 1, 'https://ror.org/023y7b165 Centro Interdisciplinario de Estudios sobre Desarrollo'),
(115727, 'https://ror.org/0245c5212', 'en', 1, 'https://ror.org/0245c5212 Academia Militar Portuguese Military Academy'),
(115728, 'https://ror.org/0249sb656', 'en', 1, 'https://ror.org/0249sb656 Lira University'),
(115729, 'https://ror.org/024brep87', 'en', 1, 'https://ror.org/024brep87 International Centre for Integrated Mountain Development'),
(115730, 'https://ror.org/024c3xj78', 'fr', 1, 'https://ror.org/024c3xj78 Diseases and Hormones of the Nervous System Maladies et hormones du systĆØme nerveux'),
(115731, 'https://ror.org/024d4px27', 'en', 1, 'https://ror.org/024d4px27 Central Police Hospital ą¦•ą§‡ą¦Øą§ą¦¦ą§ą¦°ą§€ą§Ÿ পুলিশ হাসপাতাল'),
(115732, 'https://ror.org/024hnwe62', 'fr', 0, 'https://ror.org/024hnwe62 Developmental Biology Laboratory Laboratoire de Biologie du DƩveloppement'),
(115733, 'https://ror.org/024j6hc19', 'no_lang_code', 1, 'https://ror.org/024j6hc19 Cihan University - Duhok Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ‡Ų§Ł† - ŲÆŁ‡ŁˆŁƒ'),
(115734, 'https://ror.org/024mw5h28', 'en', 1, 'https://ror.org/024mw5h28 Universidad de Chicago University of Chicago UniversitƩ de chicago'),
(115735, 'https://ror.org/024n8kn26', 'en', 1, 'https://ror.org/024n8kn26 Land and Forest Iceland Land og skógur'),
(115736, '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'),
(115737, 'https://ror.org/024w0ge69', 'en', 1, 'https://ror.org/024w0ge69 Ministry of Health and Welfare'),
(115738, 'https://ror.org/02521wj37', 'en', 1, 'https://ror.org/02521wj37 Dr. Hilla Limann Technical University'),
(115739, 'https://ror.org/0257ekp23', 'en', 1, 'https://ror.org/0257ekp23 Imo State University YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ ƍmò'),
(115740, 'https://ror.org/0258apj61', 'en', 1, 'https://ror.org/0258apj61 Amsterdam Public Health'),
(115741, 'https://ror.org/025qvcy11', 'en', 1, 'https://ror.org/025qvcy11 Adesh Medical College & Hospital'),
(115742, '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'),
(115743, 'https://ror.org/025vp2923', 'fr', 1, 'https://ror.org/025vp2923 Institut Mines-TƩlƩcom, Institut TƩlƩcom'),
(115744, 'https://ror.org/025z1vr32', 'en', 1, 'https://ror.org/025z1vr32 Geo, Geo (Denmark)'),
(115745, 'https://ror.org/025zn3p72', 'en', 1, 'https://ror.org/025zn3p72 Knowledge Exchange'),
(115746, 'https://ror.org/0260bjh30', 'fr', 1, 'https://ror.org/0260bjh30 Laboratoire des Agroressources, BiomolĆ©cules et Chimie pour l’Innovation en SantĆ©'),
(115747, 'https://ror.org/0260qqv98', 'de', 1, 'https://ror.org/0260qqv98 Barkhausen Institut, Barkhausen Institut gGmbH'),
(115748, 'https://ror.org/02631h019', 'no_lang_code', 1, 'https://ror.org/02631h019 Lightbook, Livroluz (Portugal)'),
(115749, 'https://ror.org/0264sz467', 'en', 1, 'https://ror.org/0264sz467 Geological Survey of the Netherlands'),
(115750, 'https://ror.org/0266k9652', 'en', 1, 'https://ror.org/0266k9652 Akademια Mazowiecka w Płocku Mazovian University in Płock'),
(115751, 'https://ror.org/0266vkh91', 'pt', 1, 'https://ror.org/0266vkh91 Instituto Nacional de CiĆŖncia e Tecnologia em Nanomateriais de Carbono'),
(115752, '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'),
(115753, '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'),
(115754, 'https://ror.org/026cgcq38', 'pt', 1, 'https://ror.org/026cgcq38 Health Cluster Portugal'),
(115755, 'https://ror.org/026e19k63', 'nl', 1, 'https://ror.org/026e19k63 Stichting Aeres Groep'),
(115756, 'https://ror.org/026exqw73', 'no_lang_code', 1, 'https://ror.org/026exqw73 National Instruments (United States)'),
(115757, 'https://ror.org/026ny0e17', 'en', 1, 'https://ror.org/026ny0e17 Environment and Climate Change Canada Environnement et Changement Climatique Canada'),
(115758, 'https://ror.org/026xdv168', 'no_lang_code', 1, 'https://ror.org/026xdv168 De Gruyter Brill, De Gruyter Brill (Germany)'),
(115759, 'https://ror.org/026zar759', 'en', 1, 'https://ror.org/026zar759 U.S. Army Combat Capabilities Development Command Ground Vehicle System Center'),
(115760, 'https://ror.org/02754py23', 'no_lang_code', 1, 'https://ror.org/02754py23 Mercator Ocean (France)'),
(115761, 'https://ror.org/0275ye937', 'fr', 1, 'https://ror.org/0275ye937 Centre Hospitalier Universitaire de NƮmes'),
(115762, 'https://ror.org/02771np58', 'en', 1, 'https://ror.org/02771np58 IB-Cancer Research Foundation');
INSERT INTO `rors` VALUES
(115763, 'https://ror.org/027e56k73', 'en', 1, 'https://ror.org/027e56k73 Lyceum of the Philippines University'),
(115764, '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'),
(115765, 'https://ror.org/027p1me18', 'en', 1, 'https://ror.org/027p1me18 LEAD College of Management, LEAD College of Management (Autonomous)'),
(115766, 'https://ror.org/027rw9342', 'en', 1, 'https://ror.org/027rw9342 National Astronomical Research Institute of Thailand'),
(115767, 'https://ror.org/027s68j25', 'en', 1, 'https://ror.org/027s68j25 Ministry of Science and Technology of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½ē§‘å­¦ęŠ€ęœÆéƒØ'),
(115768, 'https://ror.org/027wh3z10', 'de', 1, 'https://ror.org/027wh3z10 Centre for Media, Communication and Information Research Zentrum für Medien-, Kommunikations- und Informationsforschung'),
(115769, 'https://ror.org/027xhdf25', 'en', 1, 'https://ror.org/027xhdf25 Mary Baldwin University'),
(115770, 'https://ror.org/027y41g36', 'en', 1, 'https://ror.org/027y41g36 Ministry of Education and Culture, Ministry of Education and Culture – Government of Samoa'),
(115771, 'https://ror.org/028ebfc83', 'en', 1, 'https://ror.org/028ebfc83 West Virginia University Institute of Technology'),
(115772, 'https://ror.org/028h22z81', 'pt', 1, 'https://ror.org/028h22z81 Ponteditora'),
(115773, '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'),
(115774, 'https://ror.org/028paz341', 'en', 1, 'https://ror.org/028paz341 Central and Northern California Ocean Observing System'),
(115775, 'https://ror.org/028s4q594', 'en', 1, 'https://ror.org/028s4q594 Deutsches Zentrum für Infektionsforschung German Center for Infection Research'),
(115776, 'https://ror.org/0290a6k23', 'en', 1, 'https://ror.org/0290a6k23 Region Syddanmark Region Süddänemark Region of Southern Denmark'),
(115777, 'https://ror.org/0290nn447', 'en', 1, 'https://ror.org/0290nn447 Institute of Mechanics of Continua and Mathematical Sciences'),
(115778, 'https://ror.org/0292pya81', 'en', 1, 'https://ror.org/0292pya81 Afghan Telecom, Afghan Telecom (Afghanistan)'),
(115779, 'https://ror.org/0295vxe02', 'it', 1, 'https://ror.org/0295vxe02 Liceo Scientifico Statale "S. Cannizzaro" di Palermo'),
(115780, 'https://ror.org/0297cew58', 'no_lang_code', 0, 'https://ror.org/0297cew58 Joalvi Commercial Textiles Ltd, Joalvi Comércio Têxteis Unipessoal (Portugal)'),
(115781, 'https://ror.org/029jcsg20', 'pt', 1, 'https://ror.org/029jcsg20 CƔtedra de Estudos Sefarditas Alberto Benveniste'),
(115782, 'https://ror.org/029jy7238', 'en', 1, 'https://ror.org/029jy7238 Myriad USA'),
(115783, 'https://ror.org/029kbaf30', 'en', 1, 'https://ror.org/029kbaf30 Federal Medical Centre Abuja'),
(115784, 'https://ror.org/029nkcm90', 'fr', 1, 'https://ror.org/029nkcm90 Observatoire de Paris Observatori de ParĆ­s Paris Observatory Parisko Behatokia'),
(115785, 'https://ror.org/029nzk735', 'en', 1, 'https://ror.org/029nzk735 Shree Somnath Sanskrit University'),
(115786, 'https://ror.org/029rc9g37', 'no_lang_code', 1, 'https://ror.org/029rc9g37 Virtual Vehicle Research GmbH'),
(115787, 'https://ror.org/029s7f567', 'de', 1, 'https://ror.org/029s7f567 Bundesministerium für Familien und Jugend Federal Ministry of Families and Youth'),
(115788, 'https://ror.org/029v1c965', 'pt', 1, 'https://ror.org/029v1c965 Hospital Distrital Pombal'),
(115789, 'https://ror.org/029wqbx83', 'pt', 1, 'https://ror.org/029wqbx83 Fundação Dr António Cupertino de Miranda'),
(115790, 'https://ror.org/029yaft79', 'en', 0, 'https://ror.org/029yaft79 Osaka University of Pharmaceutical Sciences å¤§é˜Ŗč–¬ē§‘å¤§å­¦'),
(115791, 'https://ror.org/029zfa075', 'no_lang_code', 1, 'https://ror.org/029zfa075 Yenepoya University'),
(115792, 'https://ror.org/029zh7t58', 'en', 1, 'https://ror.org/029zh7t58 International Biosecurity and Biosafety Initiative for Science'),
(115793, 'https://ror.org/02a849f66', 'fr', 1, 'https://ror.org/02a849f66 Signalisation, radiobiologie et cancer'),
(115794, '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.'),
(115795, 'https://ror.org/02aga1t67', 'no_lang_code', 1, 'https://ror.org/02aga1t67 Emerson (United States)'),
(115796, 'https://ror.org/02aj2pb82', 'pt', 1, 'https://ror.org/02aj2pb82 Instituto de Investigação Desenvolvimento e Estudos Avançados'),
(115797, 'https://ror.org/02am44w88', 'nl', 1, 'https://ror.org/02am44w88 Koning Boudewijnstichting'),
(115798, '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'),
(115799, 'https://ror.org/02anr8k37', 'en', 1, 'https://ror.org/02anr8k37 International Research and Training Centre for Science and Technology Strategy äø­å›½ē§‘å­¦ęŠ€ęœÆå‘å±•ęˆ˜ē•„ē ”ē©¶é™¢'),
(115800, 'https://ror.org/02apwhd52', 'en', 1, 'https://ror.org/02apwhd52 Abu Dhabi School of Management ŁƒŁ„ŁŠŲ© أبوظبي لل؄دارة'),
(115801, 'https://ror.org/02ar29j81', 'en', 1, 'https://ror.org/02ar29j81 Hogeschool Viaa Viaa Christian University of Applied Sciences'),
(115802, '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'),
(115803, 'https://ror.org/02b5m3n83', 'en', 1, 'https://ror.org/02b5m3n83 Instytut Medycyny Pracy imienia prof. dra med. Jerzego Nofera Nofer Institute of Occupational Medicine'),
(115804, 'https://ror.org/02b5sc606', 'en', 1, 'https://ror.org/02b5sc606 NSF NCAR Earth Observing Laboratory'),
(115805, 'https://ror.org/02b9d0n72', 'en', 1, 'https://ror.org/02b9d0n72 SupƩlec ONERA DSTA Research Alliance'),
(115806, 'https://ror.org/02bd6dy50', 'pt', 1, 'https://ror.org/02bd6dy50 Centro de Investigação e Estudos de Sociologia'),
(115807, 'https://ror.org/02bj0z236', 'en', 1, 'https://ror.org/02bj0z236 Anhui Broadcasting Movie and Television College å®‰å¾½å¹æę’­å½±č§†čŒäøšęŠ€ęœÆå­¦é™¢'),
(115808, 'https://ror.org/02c0rrp38', 'pt', 1, 'https://ror.org/02c0rrp38 Escola de Administração de Empresas de São Paulo'),
(115809, 'https://ror.org/02c5jsm26', 'en', 1, 'https://ror.org/02c5jsm26 Forschungsinstitut f molekulare Pathologie GesmbH Research Institute of Molecular Pathology'),
(115810, 'https://ror.org/02c798j29', 'en', 1, 'https://ror.org/02c798j29 Academy of Technical and Art Applied Studies АкаГемија техничко-ŃƒŠ¼ŠµŃ‚Š½ŠøŃ‡ŠŗŠøŃ… ŃŃ‚Ń€ŃƒŠŗŠ¾Š²Š½ŠøŃ… ŃŃ‚ŃƒŠ“ŠøŃ˜Š°'),
(115811, 'https://ror.org/02c8sqt04', 'en', 1, 'https://ror.org/02c8sqt04 Marine and Freshwater Research Institute'),
(115812, 'https://ror.org/02cbymn47', 'pt', 1, 'https://ror.org/02cbymn47 Mato Grosso State University Universidade do Estado de Mato Grosso'),
(115813, 'https://ror.org/02cd98b83', 'en', 1, 'https://ror.org/02cd98b83 Center for Southeast Asian Studies Centre Asie du Sud-Est'),
(115814, 'https://ror.org/02cezmk53', 'en', 1, 'https://ror.org/02cezmk53 Institute of Hydromechanics of National Academy of Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гіГромеханіки ŠŠŠ України'),
(115815, 'https://ror.org/02cnsac56', 'fr', 1, 'https://ror.org/02cnsac56 Institut national d''Ʃtudes dƩmographiques National Institute for Demographic Studies'),
(115816, 'https://ror.org/02cp04407', 'fr', 1, 'https://ror.org/02cp04407 University of Limoges UniversitƩ de Limoges'),
(115817, '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'),
(115818, 'https://ror.org/02csscj62', 'pt', 1, 'https://ror.org/02csscj62 Serviço de Saúde da Região Autónoma da Madeira'),
(115819, 'https://ror.org/02cte4b68', 'fr', 1, 'https://ror.org/02cte4b68 Institut de Chimie'),
(115820, 'https://ror.org/02cvd7c90', 'es', 1, 'https://ror.org/02cvd7c90 Instituto Mexicano del Transporte'),
(115821, 'https://ror.org/02cwe0496', 'no_lang_code', 1, 'https://ror.org/02cwe0496 Vejchewin Research Institute ą¤µą„‡ą¤œą„ą¤œą„€ą¤µą¤æą¤Øą„ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(115822, 'https://ror.org/02d21x239', 'pt', 1, 'https://ror.org/02d21x239 Gabinete de Projetos e Inovação'),
(115823, 'https://ror.org/02d9h1y41', 'en', 1, 'https://ror.org/02d9h1y41 International House Porto Foz'),
(115824, 'https://ror.org/02da7q954', 'en', 1, 'https://ror.org/02da7q954 Nirmala College for Women ą®Øą®æą®°ąÆą®®ą®²ą®¾ ą®®ą®•ą®³ą®æą®°ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(115825, 'https://ror.org/02dayf324', 'en', 1, 'https://ror.org/02dayf324 Pokhara University'),
(115826, 'https://ror.org/02dcnef98', 'pt', 1, 'https://ror.org/02dcnef98 NERSANT - Associação Empresarial da Região de Santarém'),
(115827, 'https://ror.org/02decng19', 'en', 1, 'https://ror.org/02decng19 University of Engineering & Management ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦‡ą¦žą§ą¦œą¦æą¦Øą¦æą¦Æą¦¼ą¦¾ą¦°ą¦æą¦‚ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ'),
(115828, 'https://ror.org/02dh19c23', 'en', 1, 'https://ror.org/02dh19c23 Phan Chau Trinh University TrĘ°į»ng ĐẔi Hį»c Phan ChĆ¢u Trinh'),
(115829, 'https://ror.org/02dhqpx10', 'pt', 1, 'https://ror.org/02dhqpx10 Centro de Investigação em Estudos Interdisciplinares Interdisciplinary Studies Research Center'),
(115830, 'https://ror.org/02dkz1149', 'ca', 1, 'https://ror.org/02dkz1149 Departament d''Educació Departamento de Edicación'),
(115831, 'https://ror.org/02dkzc548', 'no_lang_code', 1, 'https://ror.org/02dkzc548 Grupo RAR (Portugal), RAR Group'),
(115832, 'https://ror.org/02dqehb95', 'en', 1, 'https://ror.org/02dqehb95 Purdue University West Lafayette UniversitƩ de Purdue'),
(115833, 'https://ror.org/02dqhhq58', 'en', 1, 'https://ror.org/02dqhhq58 Regional Centre for Shared Aquifer Resources Management'),
(115834, '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'),
(115835, 'https://ror.org/02e1a0y45', 'no_lang_code', 1, 'https://ror.org/02e1a0y45 Irmãs Hospitaleiras (Portugal), Sisters Hospitaller'),
(115836, 'https://ror.org/02e1c4h55', 'en', 1, 'https://ror.org/02e1c4h55 Secretariat of Public Education Secretaría de Educación Pública'),
(115837, 'https://ror.org/02e24yw40', 'en', 1, 'https://ror.org/02e24yw40 Donostia International Physics Center'),
(115838, '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'),
(115839, 'https://ror.org/02e4dkh70', 'fr', 1, 'https://ror.org/02e4dkh70 Centre d''excellence en microscience Centre of Excellence in Microscience'),
(115840, 'https://ror.org/02e5sbe24', 'en', 0, 'https://ror.org/02e5sbe24 Institute of Agricultural Biology and Biotechnology Istituto di Biologia e Biotecnologia Agraria'),
(115841, 'https://ror.org/02e91jd64', 'ms', 1, 'https://ror.org/02e91jd64 Universiti Putra Malaysia ą®®ą®²ąÆ‡ą®šą®æą®Æ ą®ŖąÆą®¤ąÆą®°ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ åšē‰¹ę‹‰å¤§å­¦'),
(115842, 'https://ror.org/02eb12f53', 'en', 1, 'https://ror.org/02eb12f53 Yew Chung Yew Wah Education Network č€€äø­č€€åŽę•™č‚²ē½‘ē»œ'),
(115843, 'https://ror.org/02ecj1n50', 'de', 1, 'https://ror.org/02ecj1n50 Hilfe für krebskranke Kinder Frankfurt'),
(115844, 'https://ror.org/02ecn7b85', 'en', 1, 'https://ror.org/02ecn7b85 Khamai Foundation'),
(115845, 'https://ror.org/02ee5f207', 'es', 1, 'https://ror.org/02ee5f207 Instituto Tecnológico Superior Oriente'),
(115846, 'https://ror.org/02ef88m96', 'en', 1, 'https://ror.org/02ef88m96 Centre commun de recherche Gemeinsame Forschungsstelle Joint Research Center'),
(115847, 'https://ror.org/02ejkey04', 'en', 1, 'https://ror.org/02ejkey04 Hochschule für Wirtschaft Zürich Zurich University of Applied Sciences in Business Administration'),
(115848, 'https://ror.org/02emb2322', 'de', 0, 'https://ror.org/02emb2322 Institut für Angewandte manuelle Therapie'),
(115849, 'https://ror.org/02en5vm52', 'fr', 1, 'https://ror.org/02en5vm52 Sorbonne University Sorbonne UniversitƩ'),
(115850, 'https://ror.org/02etvq888', 'en', 1, 'https://ror.org/02etvq888 Software Heritage'),
(115851, 'https://ror.org/02exh3e86', 'en', 1, 'https://ror.org/02exh3e86 NSF NCAR Mesoscale & Microscale Meteorology Laboratory'),
(115852, 'https://ror.org/02f3k4e87', 'pt', 1, 'https://ror.org/02f3k4e87 Centro para o Desenvolvimento de CompetĆŖncias Digitais'),
(115853, 'https://ror.org/02f53da92', 'no_lang_code', 1, 'https://ror.org/02f53da92 Gedeon Richter (Portugal)'),
(115854, 'https://ror.org/02f81g417', 'en', 1, 'https://ror.org/02f81g417 King Saud University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ سعود'),
(115855, 'https://ror.org/02fe5jg47', 'pt', 1, 'https://ror.org/02fe5jg47 Fundação INATEL, Instituto Nacional para o Aproveitamento dos Tempos Livres dos Trabalhadores'),
(115856, 'https://ror.org/02feahw73', 'fr', 1, 'https://ror.org/02feahw73 Centre National de la Recherche Scientifique French National Centre for Scientific Research'),
(115857, 'https://ror.org/02frbs640', 'de', 1, 'https://ror.org/02frbs640 Sigmund Freud Private University - Campus Linz Sigmund Freud PrivatuniversitƤt - Standort Linz'),
(115858, 'https://ror.org/02g02v883', 'en', 1, 'https://ror.org/02g02v883 BioLuster Research Center Ltd'),
(115859, 'https://ror.org/02g6avh54', 'en', 1, 'https://ror.org/02g6avh54 Ministero della Difesa Ministry of Defence'),
(115860, 'https://ror.org/02g6kcr15', 'no_lang_code', 1, 'https://ror.org/02g6kcr15 Generis FarmacĆŖutica (Portugal), Generis FarmacĆŖutica, S.A., Generis Pharmaceutical'),
(115861, 'https://ror.org/02gccas13', 'cs', 1, 'https://ror.org/02gccas13 TƔbor Zoo ZOO TƔbor'),
(115862, 'https://ror.org/02gf21x28', 'en', 1, 'https://ror.org/02gf21x28 International Federation for Systems Research'),
(115863, 'https://ror.org/02gfys938', 'en', 1, 'https://ror.org/02gfys938 University of Manitoba UniversitƩ du manitoba'),
(115864, 'https://ror.org/02gg6pa94', 'en', 1, 'https://ror.org/02gg6pa94 Kerala Forest Research Institute கேரள வன ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ ą“•ąµ‡ą“°ą“³ ą“µą“Øą“—ą“µąµ‡ą“·ą“£ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(115865, 'https://ror.org/02gnbsh21', 'en', 1, 'https://ror.org/02gnbsh21 Switzerland Innovation Park Biel/Bienne'),
(115866, 'https://ror.org/02gnwjv43', 'en', 1, 'https://ror.org/02gnwjv43 State Key Laboratory for Spintronic Devices and Technologies'),
(115867, 'https://ror.org/02grjkp95', 'en', 1, 'https://ror.org/02grjkp95 KSCSTE - Institute for Climate Change Studies'),
(115868, 'https://ror.org/02grkyz14', 'en', 1, 'https://ror.org/02grkyz14 UniversitƩ de Western Ontario Western University'),
(115869, 'https://ror.org/02gs8md51', 'en', 1, 'https://ror.org/02gs8md51 International Competence Centre for Mining-Engineering Education, Russia ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ центр компетенций в горнотехническом образовании поГ ŃŠ³ŠøŠ“Š¾Š¹ Š®ŠŠ•Š”ŠšŠž'),
(115870, 'https://ror.org/02gwsdp44', 'it', 1, 'https://ror.org/02gwsdp44 Azienda Sanitaria Locale Salerno'),
(115871, 'https://ror.org/02gy1r431', 'fr', 1, 'https://ror.org/02gy1r431 Centre de Recherches sur les LittƩratures et la SociopoƩtique'),
(115872, 'https://ror.org/02gyps716', 'en', 1, 'https://ror.org/02gyps716 Universidade de Ɖvora University of Ɖvora'),
(115873, 'https://ror.org/02h1e8605', 'en', 1, 'https://ror.org/02h1e8605 Erzincan Binali Yıldırım University Erzincan Binali Yıldırım Üniversitesi'),
(115874, 'https://ror.org/02h3fqt03', 'es', 1, 'https://ror.org/02h3fqt03 Sistema Nacional de Investigadores'),
(115875, 'https://ror.org/02h5dpj70', 'es', 1, 'https://ror.org/02h5dpj70 Escuela Normal Fronteriza Tijuana'),
(115876, 'https://ror.org/02h7kd997', 'en', 1, 'https://ror.org/02h7kd997 U.S. Army Command, Control, Communications, Computers, Cyber, Intelligence, Surveillance and Reconnaissance Center'),
(115877, 'https://ror.org/02h8zn861', 'en', 1, 'https://ror.org/02h8zn861 e-Infrastructure of the Czech Republic e-Infrastruktura CZ'),
(115878, 'https://ror.org/02hb2jr20', 'no_lang_code', 1, 'https://ror.org/02hb2jr20 Linguaterra School of English (Portugal)'),
(115879, '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'),
(115880, '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'),
(115881, 'https://ror.org/02hkzs489', 'en', 1, 'https://ror.org/02hkzs489 Bayer Foundation Bayer-Studienstiftung'),
(115882, 'https://ror.org/02hnjd848', 'en', 1, 'https://ror.org/02hnjd848 Fujian Academy of Chinese Medicine Sciences ē¦å»ŗēœäø­åŒ»čÆē§‘å­¦é™¢'),
(115883, 'https://ror.org/02hp31992', 'fr', 1, 'https://ror.org/02hp31992 Empenn'),
(115884, 'https://ror.org/02hrx0m28', 'en', 1, 'https://ror.org/02hrx0m28 TU Delft OPEN Publishing'),
(115885, 'https://ror.org/02ht1tz09', 'en', 1, 'https://ror.org/02ht1tz09 Molecular Microbiology'),
(115886, 'https://ror.org/02j2xmd27', 'en', 1, 'https://ror.org/02j2xmd27 Swedish Geotechnical Institute'),
(115887, 'https://ror.org/02j46qs45', 'en', 1, 'https://ror.org/02j46qs45 Masaryk University Masarykova univerzita'),
(115888, '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)'),
(115889, 'https://ror.org/02jnxpg76', 'en', 1, 'https://ror.org/02jnxpg76 Ministry of Finance of the People''s Republic of China äø­åŽäŗŗę°‘å…±å’Œå›½č“¢ę”æéƒØ'),
(115890, 'https://ror.org/02jp62t23', 'en', 1, 'https://ror.org/02jp62t23 UNM Sandoval Regional Medical Center'),
(115891, 'https://ror.org/02jz4aj89', 'en', 1, 'https://ror.org/02jz4aj89 Maastricht University Universiteit Maastricht'),
(115892, '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'),
(115893, 'https://ror.org/02k40bc56', 'en', 1, 'https://ror.org/02k40bc56 Indiana University Bloomington Universidad de Indiana Bloomington UniversitƩ de l''Indiana Ơ Bloomington'),
(115894, 'https://ror.org/02k4kfh71', 'no_lang_code', 1, 'https://ror.org/02k4kfh71 Clever Advertising (Portugal)'),
(115895, 'https://ror.org/02k7a6666', 'id', 1, 'https://ror.org/02k7a6666 Politeknik Manufaktur Bandung'),
(115896, 'https://ror.org/02kek8d34', 'pt', 1, 'https://ror.org/02kek8d34 Hospital Bernardino Lopes de Oliveira AlcobaƧa'),
(115897, 'https://ror.org/02kf4r633', 'en', 1, 'https://ror.org/02kf4r633 Manav Rachna International Institute of Research and Studies मानव रचना ą¤‡ą¤‚ą¤Ÿą¤°ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤ą¤‚ą¤” ą¤øą„ą¤Ÿą¤”ą„€ą¤ø'),
(115898, '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'),
(115899, 'https://ror.org/02khwtc20', 'en', 1, 'https://ror.org/02khwtc20 Fourth Institute of Oceanography č‡Ŗē„¶čµ„ęŗč‡Ŗē„¶čµ„ęŗéƒØē¬¬å››ęµ·ę“‹ē ”ē©¶ę‰€'),
(115900, 'https://ror.org/02kkvpp62', 'en', 1, 'https://ror.org/02kkvpp62 Technical University of Munich Technische Universität München'),
(115901, 'https://ror.org/02knc1802', 'en', 1, 'https://ror.org/02knc1802 Alexander T. Augusta Military Medical Center'),
(115902, 'https://ror.org/02kvbt343', 'en', 1, 'https://ror.org/02kvbt343 ZEN University ZEN大学'),
(115903, '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'),
(115904, 'https://ror.org/02kxhqs80', 'en', 1, 'https://ror.org/02kxhqs80 University of Gharyan Ų¬Ų§Ł…Ų¹Ų© ŲŗŲ±ŁŠŲ§Ł†'),
(115905, 'https://ror.org/02kxqx159', 'en', 1, 'https://ror.org/02kxqx159 Ministry of Natural Resources äø­åŽäŗŗę°‘å…±å’Œå›½č‡Ŗē„¶čµ„ęŗéƒØ'),
(115906, 'https://ror.org/02m4c1x70', 'en', 1, 'https://ror.org/02m4c1x70 U.S. Air Force Materiel Command'),
(115907, 'https://ror.org/02mhbdp94', 'es', 1, 'https://ror.org/02mhbdp94 Universidad de Los Andes University of Los Andes'),
(115908, 'https://ror.org/02mm7dt19', 'es', 1, 'https://ror.org/02mm7dt19 Agencia Nacional de Empleo'),
(115909, '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'),
(115910, 'https://ror.org/02mxmh518', 'en', 0, 'https://ror.org/02mxmh518 Okanagan University College'),
(115911, 'https://ror.org/02my5ky04', 'pt', 1, 'https://ror.org/02my5ky04 Fundação Spes'),
(115912, 'https://ror.org/02n0h0a52', 'en', 1, 'https://ror.org/02n0h0a52 International Centre for Biotechnology, UNESCO International Centre for Biotechnology'),
(115913, 'https://ror.org/02n1hzn07', 'en', 1, 'https://ror.org/02n1hzn07 Middle Tennessee State University'),
(115914, 'https://ror.org/02n3mew76', 'en', 1, 'https://ror.org/02n3mew76 Bioenergy and Business Incubator of Portalegre'),
(115915, 'https://ror.org/02n6s8k31', 'tr', 1, 'https://ror.org/02n6s8k31 Central Fisheries Research Institute (SUMAE) Su Ürünleri Merkez Araştırma Enstitüsü'),
(115916, 'https://ror.org/02n85j827', 'en', 1, 'https://ror.org/02n85j827 National Research Centre Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł‚ŁˆŁ…ŁŠ Ł„Ł„ŲØŲ­ŁˆŲ«'),
(115917, 'https://ror.org/02n9j6f76', 'es', 1, 'https://ror.org/02n9j6f76 Universidad Del Pacifico University of the Pacific'),
(115918, 'https://ror.org/02n9tn974', 'en', 0, 'https://ror.org/02n9tn974 UNAVCO'),
(115919, 'https://ror.org/02n9z0v62', 'en', 1, 'https://ror.org/02n9z0v62 Amity University ą¤ą¤®ą¤æą¤Ÿą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(115920, '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'),
(115921, 'https://ror.org/02ncgfj77', 'en', 1, 'https://ror.org/02ncgfj77 Danish Ministry of Defence Forsvarsministeriet'),
(115922, 'https://ror.org/02ndqas38', 'en', 1, 'https://ror.org/02ndqas38 Institute of Applied Problems of Physics'),
(115923, 'https://ror.org/02nfq4215', 'pt', 1, 'https://ror.org/02nfq4215 Biblioteca das CiĆŖncias da SaĆŗde'),
(115924, '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̇'),
(115925, 'https://ror.org/02nrqs528', 'de', 1, 'https://ror.org/02nrqs528 Deutscher Wetterdienst'),
(115926, 'https://ror.org/02ns6se93', 'pt', 1, 'https://ror.org/02ns6se93 Universidade de Rio Verde'),
(115927, 'https://ror.org/02ny82a28', 'fr', 1, 'https://ror.org/02ny82a28 Institut de Recherche MƩdias, Cultures, Communication et NumƩrique'),
(115928, 'https://ror.org/02p811x92', 'pt', 1, 'https://ror.org/02p811x92 Instituto PortuguĆŖs de Naturologia'),
(115929, 'https://ror.org/02p8ayf63', 'en', 1, 'https://ror.org/02p8ayf63 Hainan 301 Hospital č§£ę”¾å†›ę€»åŒ»é™¢ęµ·å—åŒ»é™¢'),
(115930, 'https://ror.org/02pc8sa31', 'no_lang_code', 1, 'https://ror.org/02pc8sa31 Galp Energia SGPS (Portugal), Galp Energia SGPS, S.A.'),
(115931, 'https://ror.org/02pgsjq66', 'fr', 1, 'https://ror.org/02pgsjq66 Centre de Neurosciences de Sorbonne UniversitƩ, Neuro-SU Centre of Neurosciences of Sorbonne UniversitƩ'),
(115932, 'https://ror.org/02pnc0262', 'en', 1, 'https://ror.org/02pnc0262 Ministry of Transportation and Communications äø­čÆę°‘åœ‹äŗ¤é€šéƒØ'),
(115933, 'https://ror.org/02pqn3g31', 'de', 1, 'https://ror.org/02pqn3g31 Deutschen Konsortium für Translationale Krebsforschung German Cancer Consortium'),
(115934, 'https://ror.org/02prz6q96', 'en', 1, 'https://ror.org/02prz6q96 One Mind'),
(115935, 'https://ror.org/02ps7mh93', 'pt', 1, 'https://ror.org/02ps7mh93 Startup SantarƩm'),
(115936, 'https://ror.org/02pttbw34', 'en', 1, 'https://ror.org/02pttbw34 Baylor College of Medicine Escuela de Medicina de Baylor'),
(115937, 'https://ror.org/02py5p643', 'pt', 1, 'https://ror.org/02py5p643 Instituto Brasileiro de Direito Processual Penal'),
(115938, 'https://ror.org/02q5jeq02', 'en', 1, 'https://ror.org/02q5jeq02 International Sustainable Energy Development Centre ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ центр ŃƒŃŃ‚Š¾Š¹Ń‡ŠøŠ²Š¾Š³Š¾ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ поГ ŃŠ³ŠøŠ“Š¾Š¹ Š®ŠŠ•Š”ŠšŠž'),
(115939, 'https://ror.org/02qaxpe77', 'en', 1, 'https://ror.org/02qaxpe77 Arab Institution of Knowledge Management المؤسسة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© ل؄دارة المعرفة'),
(115940, 'https://ror.org/02qjyba57', 'en', 1, 'https://ror.org/02qjyba57 Central Laboratory of Applied Physics'),
(115941, 'https://ror.org/02qjybw03', 'en', 1, 'https://ror.org/02qjybw03 Government Medical College Omandurar ą®…ą®°ą®šąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®“ą®®ą®ØąÆą®¤ąÆ‚ą®°ą®°ąÆ'),
(115942, 'https://ror.org/02qsmb048', 'en', 1, 'https://ror.org/02qsmb048 University of Belgrade Univerzitet u Beogradu Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ'),
(115943, 'https://ror.org/02qt0xs84', 'en', 1, 'https://ror.org/02qt0xs84 Cal Poly Humboldt'),
(115944, 'https://ror.org/02qy8ba98', 'pt', 1, 'https://ror.org/02qy8ba98 Instituto Lusófono de Investigação e Desenvolvimento'),
(115945, 'https://ror.org/02qyprq35', 'pt', 1, 'https://ror.org/02qyprq35 Museu de Arqueologia D Diogo de Sousa'),
(115946, 'https://ror.org/02qzfnk68', 'pt', 1, 'https://ror.org/02qzfnk68 Instituto Pedro Nunes'),
(115947, 'https://ror.org/02r109517', 'en', 1, 'https://ror.org/02r109517 Weill Cornell Medicine'),
(115948, 'https://ror.org/02r1kz177', 'fr', 1, 'https://ror.org/02r1kz177 Bioinformatique MolƩculaire'),
(115949, 'https://ror.org/02r396328', 'no_lang_code', 1, 'https://ror.org/02r396328 Velvet Smile (Portugal)'),
(115950, 'https://ror.org/02r8brs23', 'pt', 1, 'https://ror.org/02r8brs23 Instituto Portugues do Sangue e da Transplantacao, IP'),
(115951, 'https://ror.org/02rdcxd75', 'id', 1, 'https://ror.org/02rdcxd75 Politeknik Negeri Cilacap'),
(115952, 'https://ror.org/02re7jk37', 'en', 1, 'https://ror.org/02re7jk37 Putra Business School'),
(115953, 'https://ror.org/02rg1r889', 'en', 1, 'https://ror.org/02rg1r889 Tribhuvan University'),
(115954, 'https://ror.org/02rn1d663', 'es', 1, 'https://ror.org/02rn1d663 Colegio Superior Agropecuario del Estado de Guerrero'),
(115955, 'https://ror.org/02rqhpa98', 'no_lang_code', 1, 'https://ror.org/02rqhpa98 KLA (United States)'),
(115956, 'https://ror.org/02ryfmr77', 'fr', 1, 'https://ror.org/02ryfmr77 University of the French Antilles UniversitƩ des Antilles'),
(115957, 'https://ror.org/02rz0r794', 'es', 1, 'https://ror.org/02rz0r794 Facultad Latinoamericana de Ciencias Sociales Ecuador Latin American Faculty of Social Sciences Ecuador'),
(115958, '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'),
(115959, 'https://ror.org/02s7sax82', 'es', 1, 'https://ror.org/02s7sax82 Comisión de Investigaciones Científicas'),
(115960, 'https://ror.org/02sc3r913', 'en', 1, 'https://ror.org/02sc3r913 Griffith University'),
(115961, 'https://ror.org/02sfax819', 'pt', 1, 'https://ror.org/02sfax819 Ministério do Ambiente, Ordenamento do Território e Energia'),
(115962, 'https://ror.org/02sgeh698', 'pt', 1, 'https://ror.org/02sgeh698 MinistƩrio do Trabalho Solidariedade e SeguranƧa Social'),
(115963, 'https://ror.org/02shpj718', 'en', 1, 'https://ror.org/02shpj718 Indian Institute of Management Jammu'),
(115964, 'https://ror.org/02skkz355', 'en', 1, 'https://ror.org/02skkz355 Army Sustainment University'),
(115965, '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'),
(115966, 'https://ror.org/02smred28', 'en', 1, 'https://ror.org/02smred28 International Institute of Tropical Agriculture'),
(115967, 'https://ror.org/02snf8m58', 'fr', 1, 'https://ror.org/02snf8m58 Laboratoire des Sciences du NumƩrique de Nantes'),
(115968, 'https://ror.org/02sp3q482', 'en', 1, 'https://ror.org/02sp3q482 The University of Agriculture, Peshawar زرعی جامعہ پؓاور'),
(115969, 'https://ror.org/02srcnm40', 'en', 1, 'https://ror.org/02srcnm40 American College of Clinical Pharmacy'),
(115970, 'https://ror.org/02sxhjt61', 'pt', 1, 'https://ror.org/02sxhjt61 CÔtedra Poesia e Transcendência Sophia de Mello Breyner Andresen'),
(115971, 'https://ror.org/02t7y5s37', 'en', 1, 'https://ror.org/02t7y5s37 U.S. Army Training and Doctrine Command'),
(115972, 'https://ror.org/02tpb5702', 'en', 1, 'https://ror.org/02tpb5702 Pluto Press'),
(115973, 'https://ror.org/02tpccc26', 'pt', 1, 'https://ror.org/02tpccc26 Centro da Mulher'),
(115974, 'https://ror.org/02tpk0p14', 'en', 1, 'https://ror.org/02tpk0p14 Masinde Muliro University of Science and Technology'),
(115975, 'https://ror.org/02ts0wj93', 'en', 1, 'https://ror.org/02ts0wj93 Submarine Force, Atlantic'),
(115976, 'https://ror.org/02v6n0329', 'fr', 1, 'https://ror.org/02v6n0329'),
(115977, 'https://ror.org/02v7vsy25', 'en', 1, 'https://ror.org/02v7vsy25 International Viticulture and Enology Society'),
(115978, '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)'),
(115979, 'https://ror.org/02vfy7g92', 'en', 1, 'https://ror.org/02vfy7g92 Bayworld'),
(115980, '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'),
(115981, 'https://ror.org/02vk1k895', 'en', 1, 'https://ror.org/02vk1k895 Fezzan University لجامعة فزان'),
(115982, 'https://ror.org/02vm5rt34', 'en', 1, 'https://ror.org/02vm5rt34 Vanderbilt University'),
(115983, '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'),
(115984, 'https://ror.org/02vpdtj36', 'no_lang_code', 1, 'https://ror.org/02vpdtj36 Instituto de Alimentação Becel (Portugal)'),
(115985, 'https://ror.org/02vzc7q68', 'no_lang_code', 1, 'https://ror.org/02vzc7q68 LivaNova (United Kingdom)'),
(115986, 'https://ror.org/02w0ma450', 'en', 1, 'https://ror.org/02w0ma450 Agence de l''eau du Canada Canada Water Agency'),
(115987, 'https://ror.org/02w0vb190', 'fr', 1, 'https://ror.org/02w0vb190 Observatoire des Sciences de l''Univers Nantes Atlantique'),
(115988, 'https://ror.org/02w2nhy22', 'en', 1, 'https://ror.org/02w2nhy22 Institute for Science Application in Agriculture Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠæŃ€ŠøŠ¼ŠµŠ½Ńƒ науке у пољопривреГи'),
(115989, 'https://ror.org/02w4gwv87', 'en', 1, 'https://ror.org/02w4gwv87 Oniversiten''Antananarivo University of Antananarivo UniversitƩ d''Antananarivo'),
(115990, 'https://ror.org/02w5kge70', 'en', 1, 'https://ror.org/02w5kge70 IES-Social Business School'),
(115991, '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'),
(115992, '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'),
(115993, 'https://ror.org/02wc0kq10', 'en', 1, 'https://ror.org/02wc0kq10 Space Research Organisation Netherlands Stichting Ruimteonderzoek Nederland'),
(115994, 'https://ror.org/02wd5d093', 'en', 1, 'https://ror.org/02wd5d093 Universa, Universa Investments, Universa Investments L.P., Universa Investments L.P. (United States)'),
(115995, 'https://ror.org/02wdjwg88', 'es', 1, 'https://ror.org/02wdjwg88 Facultad Latinoamericana de Ciencias Sociales MƩxico Latin American Faculty of Social Sciences Mexico'),
(115996, 'https://ror.org/02we8vm03', 'no_lang_code', 1, 'https://ror.org/02we8vm03 Fiat Chrysler Automobiles (United Kingdom)'),
(115997, 'https://ror.org/02wfxqa76', 'de', 1, 'https://ror.org/02wfxqa76 Berufsgenossenschaftliche Unfallklinik Ludwigshafen'),
(115998, 'https://ror.org/02wht1c60', 'no_lang_code', 1, 'https://ror.org/02wht1c60 Livraria do Centro Comercial Arco ƍris (Portugal), Rainbow Shopping Centre Bookstore'),
(115999, 'https://ror.org/02whw0x72', 'en', 1, 'https://ror.org/02whw0x72 Pluto Educational Trust'),
(116000, 'https://ror.org/02whzxb57', 'en', 1, 'https://ror.org/02whzxb57 National Supercomputing Center in Chengdu å›½å®¶č¶…ēŗ§č®”ē®—ęˆéƒ½äø­åæƒ'),
(116001, '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'),
(116002, 'https://ror.org/02wwd9h37', 'pt', 1, 'https://ror.org/02wwd9h37 Hospital JosƩ Luciano de Castro Anadia'),
(116003, 'https://ror.org/02wwzvj46', 'fr', 1, 'https://ror.org/02wwzvj46 University of Tours UniversitƩ de Tours'),
(116004, 'https://ror.org/02x2mx074', 'en', 1, 'https://ror.org/02x2mx074 Bailey-Matthews National Shell Museum, Bailey-Matthews National Shell Museum & Aquarium'),
(116005, 'https://ror.org/02x2v6p15', 'en', 1, 'https://ror.org/02x2v6p15 Bukaresti Egyetem Universitatea din București University of Bucharest'),
(116006, 'https://ror.org/02x3zr378', 'en', 1, 'https://ror.org/02x3zr378 Office of the Chief of Naval Operations'),
(116007, 'https://ror.org/02x4b0932', 'en', 1, 'https://ror.org/02x4b0932 Cleveland Clinic Lerner College of Medicine'),
(116008, 'https://ror.org/02x7kb876', 'pt', 1, 'https://ror.org/02x7kb876 Instituto Padre António Vieira'),
(116009, 'https://ror.org/02xankh89', 'pt', 1, 'https://ror.org/02xankh89 Universidade Nova de Lisboa'),
(116010, 'https://ror.org/02xerpt86', 'en', 1, 'https://ror.org/02xerpt86 St. Boniface Hospital'),
(116011, 'https://ror.org/02xjdvd91', 'no_lang_code', 1, 'https://ror.org/02xjdvd91 Noah ComƩrcio de MobiliƔrio (Portugal), Noah Furniture Trade'),
(116012, 'https://ror.org/02xmyxb72', 'fr', 1, 'https://ror.org/02xmyxb72 Laboratoire de Recherche sur le Langage'),
(116013, 'https://ror.org/02xq0x374', 'fr', 1, 'https://ror.org/02xq0x374 Institut de Recherche en Horticulture et Semences Institute of Research in Horticulture and Seeds'),
(116014, 'https://ror.org/02xzytt36', 'en', 1, 'https://ror.org/02xzytt36 Manipal Academy of Higher Education UniversitƩ de Manipal'),
(116015, 'https://ror.org/02y086m63', 'en', 1, 'https://ror.org/02y086m63 Admiralty University of Nigeria'),
(116016, 'https://ror.org/02y2c2646', 'fr', 1, 'https://ror.org/02y2c2646 Adaptation Biologique et Vieillissement'),
(116017, 'https://ror.org/02y8kge02', 'pt', 1, 'https://ror.org/02y8kge02 Gabinete de Documentacao e Direito Comparado'),
(116018, 'https://ror.org/02ycs5538', 'en', 1, 'https://ror.org/02ycs5538 Parkinson''s Research and Education Foundation, Parkinson’s & Alzheimer’s Research and Education Foundation'),
(116019, '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'),
(116020, 'https://ror.org/02yg1ds16', 'en', 1, 'https://ror.org/02yg1ds16 Bekaa Hospital مستؓفى البقاع'),
(116021, 'https://ror.org/02yhj4v17', 'en', 1, 'https://ror.org/02yhj4v17 Czech Academy of Sciences, Institute of Physics FyzikĆ”lnĆ­ Ćŗstav AV ČR, FyzikĆ”lnĆ­ Ćŗstav AV ČR, v. v. i., FyzikĆ”lnĆ­ Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(116022, 'https://ror.org/02yjrws02', 'en', 1, 'https://ror.org/02yjrws02 Jagannath International Management School, Kalkaji, New Delhi'),
(116023, 'https://ror.org/02ykxvx09', 'en', 1, 'https://ror.org/02ykxvx09 Mighty Crow, Mighty Crow (United States)'),
(116024, 'https://ror.org/02ynn6218', 'de', 1, 'https://ror.org/02ynn6218 Sigmund Freud Private University - Campus Berlin Sigmund Freud PrivatuniversitƤt - Standort Berlin'),
(116025, 'https://ror.org/02ys9r941', 'it', 1, 'https://ror.org/02ys9r941 Aequitas Magazine Associazione culturale di Ricerca e Studi giuridici'),
(116026, 'https://ror.org/02ywsaa19', 'no_lang_code', 1, 'https://ror.org/02ywsaa19 SenSiC GmbH SenSiC GmbH (Switzerland)'),
(116027, 'https://ror.org/02z0cah89', 'es', 1, 'https://ror.org/02z0cah89 Nafarroako Unibertsitate Publikoa Public University of Navarre Universidad Publica de Navarra'),
(116028, 'https://ror.org/02z5nhe81', 'en', 1, 'https://ror.org/02z5nhe81 Administración Nacional OceÔnica y Atmosférica National Oceanic and Atmospheric Administration'),
(116029, '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'),
(116030, 'https://ror.org/02z9hby18', 'pt', 1, 'https://ror.org/02z9hby18 Instituto da Mobilidade e dos Transportes'),
(116031, 'https://ror.org/02zh2vx86', 'fr', 1, 'https://ror.org/02zh2vx86 ContrƓle de la RƩponse Immune B et LymphoprolifƩrations'),
(116032, 'https://ror.org/02zjzr085', 'id', 1, 'https://ror.org/02zjzr085 Bina Insan University Universitas Bina Insan'),
(116033, 'https://ror.org/02zk23548', 'pt', 1, 'https://ror.org/02zk23548 Instituto PortuguĆŖs de Fotografia'),
(116034, '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'),
(116035, 'https://ror.org/02zp1rf72', 'en', 1, 'https://ror.org/02zp1rf72 Hama University Ų¬Ų§Ł…Ų¹Ų© Ų­Ł…Ų§Ų©'),
(116036, 'https://ror.org/02zs48f23', 'fr', 1, 'https://ror.org/02zs48f23 Conditions Extrêmes et Matériaux Haute Température et Irradiation'),
(116037, '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'),
(116038, 'https://ror.org/02zv4ka60', 'en', 1, 'https://ror.org/02zv4ka60 Australian Museum'),
(116039, 'https://ror.org/0300qkv14', 'en', 1, 'https://ror.org/0300qkv14 Zanzibar Health Research Institute (ZAHRI)'),
(116040, 'https://ror.org/0300ws552', 'en', 1, 'https://ror.org/0300ws552 University of Internal Affairs of Mongolia Монгол Улсын Єууль Š”Š°Ń…ŠøŃƒŠ»Š°Ń…Ń‹Š½ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(116041, 'https://ror.org/0301be148', 'no_lang_code', 1, 'https://ror.org/0301be148 STLab s.r.l. STLab s.r.l. (Italy)'),
(116042, 'https://ror.org/03031sb11', 'pt', 1, 'https://ror.org/03031sb11 Unidade de e-Learning e Inovação Pedagógica'),
(116043, 'https://ror.org/0306brh86', 'pt', 1, 'https://ror.org/0306brh86 Rainha Njinga a Mbande University Universidade Rainha Njinga a Mbande'),
(116044, 'https://ror.org/0309msh52', 'de', 1, 'https://ror.org/0309msh52 Wehrwissenschaftliches Institut für Werk- und Betriebsstoffe'),
(116045, 'https://ror.org/030andk23', 'en', 1, 'https://ror.org/030andk23 Ministry of Justice äø­čÆę°‘åœ‹ę³•å‹™éƒØ'),
(116046, '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.'),
(116047, 'https://ror.org/030fy4q75', 'en', 1, 'https://ror.org/030fy4q75 Kerala State Council for Science, Technology and Environment'),
(116048, 'https://ror.org/030hj3061', 'fr', 1, 'https://ror.org/030hj3061 IMT Atlantique'),
(116049, 'https://ror.org/030ndkt55', 'pt', 1, 'https://ror.org/030ndkt55 Inspeção-Geral da Administração Interna'),
(116050, 'https://ror.org/030sqvy05', 'fr', 1, 'https://ror.org/030sqvy05 Laboratoire de Signalisation et Physiopathologie Cardiovasculaire Laboratory of Signalling and Cardiovascular Pathophysiology'),
(116051, 'https://ror.org/030t3sv08', 'no_lang_code', 1, 'https://ror.org/030t3sv08 Trinoma, Trinoma (France)'),
(116052, 'https://ror.org/0311zp875', 'no_lang_code', 1, 'https://ror.org/0311zp875 Ginkgo Bioworks, Inc.'),
(116053, 'https://ror.org/0315e5x55', 'fr', 1, 'https://ror.org/0315e5x55 Inria Saclay - Ǝle de France Inria Saclay - Ǝle-de-France Research Centre'),
(116054, 'https://ror.org/0316ej306', 'en', 1, 'https://ror.org/0316ej306 Weizmann Institute of Science מכון ויצמן למדע معهد ŁˆŲ§ŁŠŲ²Ł…Ų§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ…'),
(116055, 'https://ror.org/0316g0z65', 'pt', 1, 'https://ror.org/0316g0z65 Centro de Ecofisiologia BioquĆ­mica e Biotecnologia Vegetal'),
(116056, 'https://ror.org/0319xgg25', 'en', 1, 'https://ror.org/0319xgg25 One Earth'),
(116057, 'https://ror.org/031d0m432', 'pt', 1, 'https://ror.org/031d0m432 Centro UniversitÔrio do Rio São Francisco'),
(116058, 'https://ror.org/031fvak76', 'en', 1, 'https://ror.org/031fvak76 European Bioplastics'),
(116059, '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'),
(116060, 'https://ror.org/031n2c920', 'es', 1, 'https://ror.org/031n2c920 Aragon Nanoscience and Materials Institute Instituto de Nanociencia y Materiales de Aragón'),
(116061, 'https://ror.org/031q4ft47', 'pt', 1, 'https://ror.org/031q4ft47 Fundação LIGA'),
(116062, 'https://ror.org/031t5w623', 'en', 1, 'https://ror.org/031t5w623 Deutsches Zentrum für Herz-Kreislauf-Forschung German Centre for Cardiovascular Research'),
(116063, 'https://ror.org/031vecd37', 'pt', 1, 'https://ror.org/031vecd37 Instituto Superior de CiĆŖncias Empresariais e do Turismo'),
(116064, 'https://ror.org/0320fj966', 'en', 1, 'https://ror.org/0320fj966 ICEE, International Centre for Engineering Education ęœŖę„ē§‘ęŠ€ę•™č‚²åŸŗåœ°'),
(116065, 'https://ror.org/0321g0743', 'fr', 1, 'https://ror.org/0321g0743 Institut Gustave Roussy, Institut Gustave-Roussy'),
(116066, 'https://ror.org/0326g9440', 'en', 1, 'https://ror.org/0326g9440 Kazan State Power Engineering University Казанский Š³Š¾ŃŃƒŠ“арственный ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116067, 'https://ror.org/0327f0k08', 'fr', 1, 'https://ror.org/0327f0k08 Handicap, ActivitƩ, Vieillissement, Autonomie, Environnement'),
(116068, 'https://ror.org/032db5x82', 'en', 1, 'https://ror.org/032db5x82 Universidad del Sur de Florida University of South Florida UniversitƩ de floride du sud'),
(116069, 'https://ror.org/032qwy987', 'pt', 1, 'https://ror.org/032qwy987 CƔtedra Energias RenovƔveis'),
(116070, 'https://ror.org/032wd5c37', 'en', 1, 'https://ror.org/032wd5c37 Mongolian Natural History Museum ŠœŠ¾Š½Š³Š¾Š»Ń‹Š½ Байгалийн Түүхийн Музей'),
(116071, 'https://ror.org/032x6kp45', 'en', 0, 'https://ror.org/032x6kp45 Research Institute for Road and Street äø€čˆ¬č²”å›£ę—„ęœ¬ćæć”ē ”ē©¶ę‰€'),
(116072, 'https://ror.org/03302rx63', 'pt', 1, 'https://ror.org/03302rx63 Centro de Estatƭstica e AplicaƧƵes'),
(116073, 'https://ror.org/0332t5716', 'no_lang_code', 1, 'https://ror.org/0332t5716 Give U Design Art (Portugal)'),
(116074, 'https://ror.org/03344ty51', 'en', 1, 'https://ror.org/03344ty51 Miyagi National Hospital'),
(116075, 'https://ror.org/0335fsx71', 'en', 1, 'https://ror.org/0335fsx71 German University of Digital Science'),
(116076, 'https://ror.org/033p9g875', 'fr', 1, 'https://ror.org/033p9g875 Institut National Polytechnique de Toulouse National Polytechnic Institute of Toulouse'),
(116077, 'https://ror.org/033pfj584', 'en', 1, 'https://ror.org/033pfj584 Dr. Babasaheb Ambedkar Marathwada University ą¤”ą„‰. ą¤¬ą¤¾ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤†ą¤‚ą¤¬ą„‡ą¤”ą¤•ą¤° मराठवाऔा ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(116078, 'https://ror.org/033t7vz72', 'fr', 0, 'https://ror.org/033t7vz72 Processus d''Activation SĆ©lective par Transfert d''Ɖnergie Uni-Ć©lectronique ou Radiatif'),
(116079, 'https://ror.org/033y26782', 'no_lang_code', 1, 'https://ror.org/033y26782 Mitsubishi Electric (Japan) äø‰č±é›»ę©Ÿ'),
(116080, 'https://ror.org/033yvsr74', 'pt', 1, 'https://ror.org/033yvsr74 Laboratório de Reabilitação Psicossocial Psychosocial Rehabilitation Laboratory'),
(116081, 'https://ror.org/033z8ms94', 'pt', 1, 'https://ror.org/033z8ms94 Tribunal de JustiƧa do Estado de GoiƔs'),
(116082, 'https://ror.org/0346k0491', 'en', 1, 'https://ror.org/0346k0491 Gulbenkian Institute for Molecular Medicine'),
(116083, 'https://ror.org/0349bsm71', 'en', 1, 'https://ror.org/0349bsm71 Hong Kong Metropolitan University é¦™ęøÆéƒ½ęœƒå¤§å­ø'),
(116084, 'https://ror.org/034amdq04', 'pt', 1, 'https://ror.org/034amdq04 Sociedade Portuguesa de Neurologia'),
(116085, 'https://ror.org/034b4g685', 'no_lang_code', 1, 'https://ror.org/034b4g685 Nuclear Research and Consultancy Group'),
(116086, '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)'),
(116087, 'https://ror.org/034dv1544', 'pt', 1, 'https://ror.org/034dv1544 Centro de Investigação em Saúde e Ambiente'),
(116088, 'https://ror.org/034q1za58', 'en', 1, 'https://ror.org/034q1za58 Guru Gobind Singh Indraprastha University اندارپراسٹہ Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ ą¤—ą„ą¤°ą„ ą¤—ą„‹ą¤¬ą¤æą¤Øą„ą¤¦ सिंह ą¤‡ą¤Øą„ą¤¦ą„ą¤°ą¤Ŗą„ą¤°ą¤øą„ą¤„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(116089, 'https://ror.org/034thb936', 'es', 1, 'https://ror.org/034thb936 Fundación Española para la Ciencia y Tecnología Spanish Foundation for Science and Technology'),
(116090, 'https://ror.org/034wa7719', 'en', 1, 'https://ror.org/034wa7719 The National Lottery Community Fund'),
(116091, 'https://ror.org/034xs3n22', 'en', 1, 'https://ror.org/034xs3n22 Islamic Azad University, Naragh Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد نراق'),
(116092, '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 Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø ŠšŠ¾Š¼ŠøŃ‚ŠµŃ‚Š° науки ŠœŠøŠ½ŠøŃŃ‚ерства науки Šø Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ РК Экономика ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹ ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ғылым және жоғары білім министрлігінің Ғылым комитеті'),
(116093, 'https://ror.org/03594dm11', 'en', 1, 'https://ror.org/03594dm11 Ambassade du Canada Ć  Washington, D.C Embassy of Canada in Washington, D.C'),
(116094, 'https://ror.org/035ahym13', 'en', 1, 'https://ror.org/035ahym13 Renaissance Educational University Renessans ta’lim universiteti ŠžŠ±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ренессанс'),
(116095, 'https://ror.org/035b05819', 'en', 1, 'https://ror.org/035b05819 Københavns Universitet University of Copenhagen Universität Kopenhagen'),
(116096, 'https://ror.org/035b18p12', 'en', 1, 'https://ror.org/035b18p12 CBM Bethel Hospital'),
(116097, 'https://ror.org/035c70a92', 'en', 1, 'https://ror.org/035c70a92 Arnold P Gold Foundation'),
(116098, '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'),
(116099, 'https://ror.org/035e2s580', 'no_lang_code', 1, 'https://ror.org/035e2s580 EvoLogics GmbH EvoLogics GmbH (Germany)'),
(116100, 'https://ror.org/035hfz097', 'id', 1, 'https://ror.org/035hfz097 Akademi Komunitas Negeri Pacitan'),
(116101, 'https://ror.org/035pkj773', 'en', 1, 'https://ror.org/035pkj773 Universitatea Ștefan cel Mare din Suceava Ştefan cel Mare University of Suceava'),
(116102, 'https://ror.org/035t8zc32', 'en', 1, 'https://ror.org/035t8zc32 The University of Osaka 大阪大学'),
(116103, 'https://ror.org/035w1gb98', 'en', 1, 'https://ror.org/035w1gb98 Departamento del EjƩrcito de los Estados Unidos United States Department of the Army'),
(116104, 'https://ror.org/035zg3a51', 'en', 1, 'https://ror.org/035zg3a51 ISCTE Business School'),
(116105, 'https://ror.org/0360xra57', 'en', 1, 'https://ror.org/0360xra57 Dewu 得物'),
(116106, 'https://ror.org/0361bwx64', 'en', 1, 'https://ror.org/0361bwx64 United Kingdom Atomic Energy Authority'),
(116107, 'https://ror.org/0368tgm64', 'no', 1, 'https://ror.org/0368tgm64 FƦrder Kommune'),
(116108, 'https://ror.org/036d3mg02', 'fr', 1, 'https://ror.org/036d3mg02 President Joseph Kasa-Vubu University UniversitƩ PrƩsident Joseph Kasa-Vubu'),
(116109, 'https://ror.org/036dwbr90', 'en', 1, 'https://ror.org/036dwbr90 Geological Survey of Norway NGU, Noregs geologiske undersĆøking NGU, Norges geologiske undersĆøkelse'),
(116110, 'https://ror.org/036k3ee35', 'en', 0, 'https://ror.org/036k3ee35 Windesheim Flevoland'),
(116111, 'https://ror.org/036nfer12', 'en', 1, 'https://ror.org/036nfer12 Universidad de Florida Central University of Central Florida'),
(116112, 'https://ror.org/036qacm67', 'en', 1, 'https://ror.org/036qacm67 Gour Mahavidyalaya ą¦—ą§Œą¦”ą¦¼ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(116113, 'https://ror.org/0370bpp07', 'ca', 1, 'https://ror.org/0370bpp07 Institut Universitari d''Investigació en Atenció Primària Jordi Gol'),
(116114, 'https://ror.org/0371sxw13', 'de', 1, 'https://ror.org/0371sxw13 StƤdtische Bibliotheken Dresden');
INSERT INTO `rors` VALUES
(116115, 'https://ror.org/03773p874', 'en', 1, 'https://ror.org/03773p874 NSF NCAR High Altitude Observatory'),
(116116, 'https://ror.org/0378szg41', 'fr', 1, 'https://ror.org/0378szg41 Djillali Liabes University Sidi Bel AbbĆØs UniversitĆ© Djilali de Sidi Bel AbbĆØs Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ„Ų§Ł„ŁŠ Ł„ŁŠŲ§ŲØŲ³ سيدي بلعباس - Ų¬Ł…ŁŠŲ¹ Ų§Ł„Ų­Ł‚ŁˆŁ‚ Ł…Ų­ŁŁˆŲøŲ©'),
(116117, 'https://ror.org/037b36v23', 'es', 1, 'https://ror.org/037b36v23 Sanatorio Adventista del Plata'),
(116118, 'https://ror.org/037ejjy86', 'en', 1, 'https://ror.org/037ejjy86 Wannan Medical College ēš–å—åŒ»å­¦é™¢'),
(116119, 'https://ror.org/037g0y787', 'pt', 1, 'https://ror.org/037g0y787 Instituto Design Guimarães'),
(116120, 'https://ror.org/037gm3x52', 'pt', 1, 'https://ror.org/037gm3x52 Fundação MÔrio Soares e Maria Barroso'),
(116121, 'https://ror.org/037r6xs74', 'pt', 1, 'https://ror.org/037r6xs74 Centro de CiĆŖncias e Tecnologias Nucleares'),
(116122, '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'),
(116123, 'https://ror.org/037wpkx04', 'en', 1, 'https://ror.org/037wpkx04 Universidade do Minho University of Minho'),
(116124, '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'),
(116125, 'https://ror.org/037z3rx48', 'en', 1, 'https://ror.org/037z3rx48 Namangan State Pedagogical Institute Namanganskij gosudarstvennyj pedagogičeskij institut'),
(116126, 'https://ror.org/0380g1485', 'no_lang_code', 1, 'https://ror.org/0380g1485 Future Balloons, Future Balloons (Portugal)'),
(116127, 'https://ror.org/038586y26', 'pt', 1, 'https://ror.org/038586y26 Audax ISCTE'),
(116128, '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'),
(116129, '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 Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ узбекского ŃŠ·Ń‹ŠŗŠ° Šø Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ имени ŠŠ»ŠøŃˆŠµŃ€Š° ŠŠ°Š²Š¾Šø Š¢Š°ŃˆŠŗÓ™Š½Ń‚ Гәүләт үзбәк теле һәм Ó™Š“Ó™Š±ŠøŃŃ‚Ń‹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(116130, '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'),
(116131, 'https://ror.org/038b18w37', 'pt', 1, 'https://ror.org/038b18w37 Centro de Informação e Vigilância Sismovulcânica dos Açores'),
(116132, 'https://ror.org/038f2eq15', 'en', 1, 'https://ror.org/038f2eq15 Jawahar Medical Foundation''s Annasaheb Chudaman Patil Memorial Medical College & Hospital'),
(116133, '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'),
(116134, 'https://ror.org/038pa9k74', 'en', 1, 'https://ror.org/038pa9k74 Children’s Health Research Institute'),
(116135, 'https://ror.org/038t36y30', 'en', 1, 'https://ror.org/038t36y30 Heidelberg University Ruprecht-Karls-UniversitƤt Heidelberg'),
(116136, 'https://ror.org/038x32w97', 'fr', 1, 'https://ror.org/038x32w97 ChronothƩrapie, cancers et transplantation'),
(116137, 'https://ror.org/038y7fs10', 'no_lang_code', 1, 'https://ror.org/038y7fs10 Maia Dias - Consultório Médico (Portugal), Maia Dias - Medical Office Ltd'),
(116138, 'https://ror.org/038yc9530', 'fr', 1, 'https://ror.org/038yc9530 Institut de Technologie Agroalimentaire'),
(116139, 'https://ror.org/03936xk86', 'pt', 1, 'https://ror.org/03936xk86 Laboratório de Engenharia MatemÔtica do Instituto Politécnico do Porto'),
(116140, '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'),
(116141, 'https://ror.org/0398kcw49', 'fr', 1, 'https://ror.org/0398kcw49 Terres Univia'),
(116142, 'https://ror.org/039a3rs54', 'en', 1, 'https://ror.org/039a3rs54 U.S. Army Fires Center of Excellence'),
(116143, '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'),
(116144, 'https://ror.org/039bqpr70', 'no_lang_code', 1, 'https://ror.org/039bqpr70 Insia Information systems, Insia Sistemas de Informação (Portugal)'),
(116145, 'https://ror.org/039rg7508', 'en', 1, 'https://ror.org/039rg7508 Shiv Nadar University, Chennai'),
(116146, 'https://ror.org/039s43t96', 'en', 1, 'https://ror.org/039s43t96 Conservancy of Southwest Florida'),
(116147, 'https://ror.org/039v3q173', 'en', 1, 'https://ror.org/039v3q173 Shmuel Harofeh Hospital בית החולים שמואל הרופא'),
(116148, 'https://ror.org/039zdhk64', 'es', 1, 'https://ror.org/039zdhk64 Centro de Innovación Aplicada en Tecnologías Competitivas'),
(116149, 'https://ror.org/03a62bv60', 'en', 1, 'https://ror.org/03a62bv60 University of Malta'),
(116150, 'https://ror.org/03aaw7g70', 'pt', 1, 'https://ror.org/03aaw7g70 Centro Regional de Investigação Pesqueira do Sul'),
(116151, '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'),
(116152, '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'),
(116153, 'https://ror.org/03ap74s16', 'en', 1, 'https://ror.org/03ap74s16 U.S. Army Aviation Center of Excellence'),
(116154, 'https://ror.org/03ar0mv07', 'en', 1, 'https://ror.org/03ar0mv07 United States Department of the Navy'),
(116155, 'https://ror.org/03ar63e27', 'en', 1, 'https://ror.org/03ar63e27 Bangladesh Institute of Capital Market'),
(116156, 'https://ror.org/03arvsj30', 'en', 1, 'https://ror.org/03arvsj30 NGO ā€œResearch And Educational Innovation Center of Social Transformationsā€ Š“Šž Ā«ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ŠžŃŠ²Ń–Ń‚Š½Ń–Š¹ Інноваційний Центр Š”ŃƒŃŠæŃ–Š»ŃŒŠ½ŠøŃ… Трансформацій»'),
(116157, 'https://ror.org/03ay56170', 'en', 1, 'https://ror.org/03ay56170 Ministry of National Defense äø­čÆę°‘åœ‹åœ‹é˜²éƒØ'),
(116158, 'https://ror.org/03ay59x86', 'en', 1, 'https://ror.org/03ay59x86 University of French Polynesia UniversitƩ de la polynƩsie franƧaise'),
(116159, 'https://ror.org/03azxga02', 'en', 1, 'https://ror.org/03azxga02 Nebraska Medical Center'),
(116160, 'https://ror.org/03b9snr86', 'pt', 1, 'https://ror.org/03b9snr86 Universidade Católica Portuguesa'),
(116161, 'https://ror.org/03ba1t516', 'it', 1, 'https://ror.org/03ba1t516 Sistema Nazionale per la Protezione dell''Ambiente'),
(116162, 'https://ror.org/03bbyax37', 'en', 1, 'https://ror.org/03bbyax37 Spintronics Research Network of Japan'),
(116163, 'https://ror.org/03bhs4y95', 'en', 1, 'https://ror.org/03bhs4y95 Summit University, Offa'),
(116164, 'https://ror.org/03bq05s23', 'en', 1, 'https://ror.org/03bq05s23 U.S. Army Research Institute for the Behavioral and Social Sciences'),
(116165, 'https://ror.org/03bvtv586', 'pt', 1, 'https://ror.org/03bvtv586 Instituto PortuguĆŖs do Desporto e Juventude IP'),
(116166, 'https://ror.org/03bw8ys89', 'en', 1, 'https://ror.org/03bw8ys89 Sainsbury Family Charitable Trusts'),
(116167, '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'),
(116168, 'https://ror.org/03c1e5w32', 'en', 1, 'https://ror.org/03c1e5w32 State Scientific Research Institute of Armament and Military Equipment Testing and Certification Державний науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²ŠøŠæŃ€Š¾Š±ŃƒŠ²Š°Š½ŃŒ і сертифікації Š¾Š·Š±Ń€Š¾Ń”Š½Š½Ń та Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾Ń— техніки'),
(116169, 'https://ror.org/03c52pz66', 'en', 1, 'https://ror.org/03c52pz66 Indian Institute of Information Technology, Sonepat ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤øą„‹ą¤Øą„€ą¤Ŗą¤¤'),
(116170, 'https://ror.org/03c62s410', 'en', 1, 'https://ror.org/03c62s410 Canadian-Pacific Robotic Ocean Observing Facility'),
(116171, '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)'),
(116172, 'https://ror.org/03canf739', 'en', 1, 'https://ror.org/03canf739 Regional Centre for Integrated River Basin Management'),
(116173, 'https://ror.org/03cf87p34', 'en', 1, 'https://ror.org/03cf87p34 Center for Engineering and Industrial Development Centro de IngenierĆ­a y Desarrollo Industrial'),
(116174, 'https://ror.org/03cjm2544', 'fr', 1, 'https://ror.org/03cjm2544 Centre Inria de Sorbonne UniversitƩ Inria Paris Centre at Sorbonne University'),
(116175, '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'),
(116176, 'https://ror.org/03cve4549', 'en', 1, 'https://ror.org/03cve4549 Tsinghua University ęø…åŽå¤§å­¦'),
(116177, 'https://ror.org/03cvzf910', 'pt', 1, 'https://ror.org/03cvzf910 MARE - Centro de CiĆŖncias do Mar e do Ambiente'),
(116178, 'https://ror.org/03d5egc95', 'no_lang_code', 1, 'https://ror.org/03d5egc95 GHEbavaria Maschinen GmbH GHEbavaria Maschinen GmbH (Germany)'),
(116179, 'https://ror.org/03d5w9863', 'fr', 1, 'https://ror.org/03d5w9863 Ɖcole Nationale SupĆ©rieure Agronomique de Toulouse'),
(116180, 'https://ror.org/03d77hy23', 'es', 1, 'https://ror.org/03d77hy23 Sociedad Argentina de AnÔlisis Filosófico'),
(116181, 'https://ror.org/03dapab36', 'en', 1, 'https://ror.org/03dapab36 Bangladesh Betar বাংলাদেশ বেতার'),
(116182, 'https://ror.org/03db2by73', 'pt', 1, 'https://ror.org/03db2by73 Instituto Superior TƩcnico'),
(116183, 'https://ror.org/03dcwgh33', 'no_lang_code', 1, 'https://ror.org/03dcwgh33 Intellegibilis (Portugal)'),
(116184, 'https://ror.org/03dkygb08', 'en', 1, 'https://ror.org/03dkygb08 Primate Expertise'),
(116185, 'https://ror.org/03dnnmg11', 'en', 1, 'https://ror.org/03dnnmg11 Quantic School of Business and Technology'),
(116186, 'https://ror.org/03dvx1426', 'pl', 1, 'https://ror.org/03dvx1426 Academy of Silesia Akademia Śląska'),
(116187, 'https://ror.org/03dx11k66', 'en', 1, 'https://ror.org/03dx11k66 Deutsches Zentrum für Lungenforschung German Center for Lung Research'),
(116188, 'https://ror.org/03e2dsv41', 'es', 1, 'https://ror.org/03e2dsv41 Instituto de Investigaciones en Humanidades y Ciencias Sociales'),
(116189, '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 المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ في Ų§Ł„ŲØŁŠŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(116190, 'https://ror.org/03e5e7w20', 'fr', 1, 'https://ror.org/03e5e7w20 ContrĆ“le de l’Activation cellulaire, Progression Tumorale et RĆ©sistance thĆ©rapeutique'),
(116191, 'https://ror.org/03e75qp68', 'fr', 1, 'https://ror.org/03e75qp68 Immunologie anti-tumorale et immunothƩrapie des cancers Immunology of tumors and cancer immunotherapy'),
(116192, 'https://ror.org/03eaxvz05', 'en', 1, 'https://ror.org/03eaxvz05 Institute of Applied Physics'),
(116193, 'https://ror.org/03ed7y723', 'en', 1, 'https://ror.org/03ed7y723 Ministrstvo za Notranje Zadeve Ministry of the Interior'),
(116194, 'https://ror.org/03ef0j886', 'fr', 1, 'https://ror.org/03ef0j886 Analyse molƩculaire, modƩlisation et imagerie de la maladie cancƩreuse'),
(116195, 'https://ror.org/03eh14z46', 'en', 1, 'https://ror.org/03eh14z46 University of Chitral'),
(116196, 'https://ror.org/03eh3y714', 'en', 1, 'https://ror.org/03eh3y714 Institut Paul Scherrer Paul Scherrer Institute'),
(116197, 'https://ror.org/03ehgrz61', 'en', 1, 'https://ror.org/03ehgrz61 Ministrstvo za zdravje Ministry of Health'),
(116198, 'https://ror.org/03ekjqf86', 'en', 1, 'https://ror.org/03ekjqf86 State Darwin Museum Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Дарвиновский музей'),
(116199, 'https://ror.org/03eqm6y13', 'fr', 1, 'https://ror.org/03eqm6y13 LabEx PERSYVAL-Lab'),
(116200, 'https://ror.org/03exthx58', 'fr', 1, 'https://ror.org/03exthx58 UniDistance Suisse'),
(116201, 'https://ror.org/03eyga648', 'pt', 1, 'https://ror.org/03eyga648 Centro de Investigação Interdisciplinar em Saúde'),
(116202, 'https://ror.org/03f0f6041', 'en', 1, 'https://ror.org/03f0f6041 University of Technology Sydney'),
(116203, 'https://ror.org/03f0nev63', 'en', 1, 'https://ror.org/03f0nev63 Danish e-Infrastructure Cooperation'),
(116204, '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 Š’Ń‹ŃŃˆŠµŠµ авиационное ŃƒŃ‡ŠµŠ±Š½Š¾Šµ завеГение "ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ авиационный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени И.АбГраимова"'),
(116205, 'https://ror.org/03f6zdx21', 'en', 1, 'https://ror.org/03f6zdx21 General Hospital of Laconia Γενικο ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪ¹Īæ Λακωνιας'),
(116206, 'https://ror.org/03f7dts09', 'en', 1, 'https://ror.org/03f7dts09 Jesselton University College, Kolej Universiti Jesselton'),
(116207, 'https://ror.org/03f7kee28', 'pt', 1, 'https://ror.org/03f7kee28 Gabinete de EstratƩgia e Estudos'),
(116208, 'https://ror.org/03fcjvn64', 'fr', 1, 'https://ror.org/03fcjvn64 Centre Inria de l''UniversitƩ de Lorraine'),
(116209, 'https://ror.org/03fjwmt07', 'pt', 1, 'https://ror.org/03fjwmt07 Group for Lasers and Plasmas Grupo de Lasers e Plasmas'),
(116210, 'https://ror.org/03fqcyc11', 'es', 1, 'https://ror.org/03fqcyc11 Facultad Latinoamericana de Ciencias Sociales Latin American Faculty of Social Sciences'),
(116211, 'https://ror.org/03ftn5w97', 'en', 1, 'https://ror.org/03ftn5w97 Basque Culinary Center'),
(116212, 'https://ror.org/03fx0zp19', 'en', 1, 'https://ror.org/03fx0zp19 State University of Intelligent Technologies and Telecommunications Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń–Š½Ń‚ŠµŠ»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½ŠøŃ… технологій і зв''ŃŠ·ŠŗŃƒ'),
(116213, 'https://ror.org/03fx7vd72', 'en', 1, 'https://ror.org/03fx7vd72 P. R. Pote Patil College of Engineering & Management, Amravati'),
(116214, 'https://ror.org/03g0h0k24', 'ca', 1, 'https://ror.org/03g0h0k24 Institut CatalĆ  de les Dones'),
(116215, 'https://ror.org/03g57ef97', 'en', 1, 'https://ror.org/03g57ef97 Joint Evaluated Fission and Fusion'),
(116216, 'https://ror.org/03gatys88', 'es', 1, 'https://ror.org/03gatys88 Ministerio de Salud PĆŗblica y Bienestar Social'),
(116217, 'https://ror.org/03gewjm80', 'en', 1, 'https://ror.org/03gewjm80 Evolutionary Engineering & Distributed Information Systems Laboratory'),
(116218, 'https://ror.org/03gkf0p07', 'fr', 1, 'https://ror.org/03gkf0p07 Montpellier-Ecologie, Evolution, BiodiversitƩ'),
(116219, 'https://ror.org/03gng8t46', 'en', 1, 'https://ror.org/03gng8t46 Bundesministerium für Bildung, Wissenschaft und Forschung Federal Ministry of Education, Science and Research'),
(116220, 'https://ror.org/03gq89z78', 'en', 1, 'https://ror.org/03gq89z78 Rani Channamma University, Belagavi ರಾಣಿ ą²šą³†ą²Øą³ą²Øą²®ą³ą²® ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ಬೆಳಗಾವಿ'),
(116221, 'https://ror.org/03gsfpp62', 'pt', 1, 'https://ror.org/03gsfpp62 Instituto PolitƩcnico de Tomar Polytechnic Institute of Tomar'),
(116222, 'https://ror.org/03gvm2667', 'fr', 1, 'https://ror.org/03gvm2667 Wave Propagation Mathematical Study and Simulation'),
(116223, 'https://ror.org/03h4rc418', 'es', 1, 'https://ror.org/03h4rc418 Dirección de Educación Policial Institución Universitaria de la Policía Nacional'),
(116224, 'https://ror.org/03h56sg55', 'en', 1, 'https://ror.org/03h56sg55 Dr. A.P.J. Abdul Kalam Technical University'),
(116225, 'https://ror.org/03h5jx394', 'en', 1, 'https://ror.org/03h5jx394 TWI (United Kingdom)'),
(116226, 'https://ror.org/03ha2q922', 'en', 1, 'https://ror.org/03ha2q922 Narodowe Centrum Nauki National Science Centre'),
(116227, 'https://ror.org/03hasqf61', 'ca', 1, 'https://ror.org/03hasqf61 Institut de CiĆØncia de Materials de Barcelona Institute of Materials Science of Barcelona'),
(116228, 'https://ror.org/03hdb9194', 'pt', 1, 'https://ror.org/03hdb9194 Centro de Investigação em Energia e Ambiente'),
(116229, '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'),
(116230, 'https://ror.org/03hjeqb56', 'en', 1, 'https://ror.org/03hjeqb56 International House Braga'),
(116231, 'https://ror.org/03hm91306', 'en', 1, 'https://ror.org/03hm91306 Meteorological Service of Catalonia Servei Meteorològic de Catalunya'),
(116232, 'https://ror.org/03hnm8b07', 'fr', 1, 'https://ror.org/03hnm8b07 Centre d''Ʃtudes des politiques Ʃconomiques'),
(116233, '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)'),
(116234, 'https://ror.org/03hypw319', 'fr', 1, 'https://ror.org/03hypw319 UniversitƩ de Reims Champagne-Ardenne'),
(116235, 'https://ror.org/03hzgjt93', 'pt', 1, 'https://ror.org/03hzgjt93 Linc Centros de Incubação'),
(116236, 'https://ror.org/03hzhqp45', 'en', 1, 'https://ror.org/03hzhqp45 Institute for Urban Excellence'),
(116237, 'https://ror.org/03j2hqv95', 'no_lang_code', 1, 'https://ror.org/03j2hqv95 Sourcecode Investigação Unipessoal (Portugal), Sourcecode Research Sole Proprietorship'),
(116238, 'https://ror.org/03j74rs53', 'en', 1, 'https://ror.org/03j74rs53 The Madura College ą®®ą®¤ąÆą®°ąÆˆą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(116239, '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 ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŁŠŲ© ŁˆŲ§Ł„ŲŖŲµŲ±Ł بصفاقس'),
(116240, 'https://ror.org/03jnx2c74', 'en', 1, 'https://ror.org/03jnx2c74 Aeres Hogeschool Aeres University of Applied Sciences'),
(116241, 'https://ror.org/03jnyk256', 'no_lang_code', 1, 'https://ror.org/03jnyk256 Houselab (Portugal)'),
(116242, 'https://ror.org/03jrmgg47', 'en', 1, 'https://ror.org/03jrmgg47 Alvin J. Siteman Cancer Center'),
(116243, 'https://ror.org/03jrrzr69', 'es', 1, 'https://ror.org/03jrrzr69 Universidad Andina Simón Bolívar'),
(116244, 'https://ror.org/03jse9f02', 'en', 1, 'https://ror.org/03jse9f02 Polyphony Digital Inc., Polyphony Digital Inc. (Japan) ę Ŗå¼ä¼šē¤¾ćƒćƒŖćƒ•ć‚©ćƒ‹ćƒ¼ćƒ»ćƒ‡ć‚øć‚æćƒ«'),
(116245, 'https://ror.org/03jv6w209', 'fr', 1, 'https://ror.org/03jv6w209 Maison de la Simulation'),
(116246, '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'),
(116247, 'https://ror.org/03kaab451', 'en', 1, 'https://ror.org/03kaab451 Maharshi Dayanand University ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤¦ą¤Æą¤¾ą¤Øą¤Øą„ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤°ą„‹ą¤¹ą¤¤ą¤•'),
(116248, 'https://ror.org/03kchyj69', 'en', 1, 'https://ror.org/03kchyj69 The Welding Institute'),
(116249, 'https://ror.org/03kgsv495', 'en', 1, 'https://ror.org/03kgsv495 Bar-Ilan University Ų¬Ų§Ł…Ų¹Ų© ŲØŲ§Ų± Ų„ŁŠŁ„Ų§Ł†'),
(116250, 'https://ror.org/03kh2rb68', 'fr', 1, 'https://ror.org/03kh2rb68 Higher Normal School of Kouba Ɖcole Normale SupĆ©rieure de Kouba المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة بالقبة'),
(116251, 'https://ror.org/03kwktj23', 'pt', 1, 'https://ror.org/03kwktj23 CĆ¢mara Municipal de Lisboa'),
(116252, 'https://ror.org/03kyeb689', 'pt', 1, 'https://ror.org/03kyeb689 Fundação Nossa Senhora do Bom Sucesso'),
(116253, 'https://ror.org/03m01yf64', 'en', 1, 'https://ror.org/03m01yf64 Ministry of Education'),
(116254, 'https://ror.org/03m09fn93', 'pt', 1, 'https://ror.org/03m09fn93 Instituto Brasileiro de CiĆŖncias Criminais'),
(116255, 'https://ror.org/03m21w409', 'en', 1, 'https://ror.org/03m21w409 National Blood Transfusion Service'),
(116256, '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.'),
(116257, 'https://ror.org/03m83wh67', 'en', 1, 'https://ror.org/03m83wh67 National Blood Service Ghana'),
(116258, 'https://ror.org/03m8e6y67', 'es', 1, 'https://ror.org/03m8e6y67 Hospital El Salvador'),
(116259, 'https://ror.org/03me10b26', 'pt', 1, 'https://ror.org/03me10b26 Unesp de MarĆ­lia'),
(116260, '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'),
(116261, 'https://ror.org/03mvmfx36', 'en', 1, 'https://ror.org/03mvmfx36 National Agriculture Research Center Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(116262, 'https://ror.org/03myraf72', 'en', 1, 'https://ror.org/03myraf72 Heliophysics Science Division'),
(116263, 'https://ror.org/03mzbmf11', 'en', 1, 'https://ror.org/03mzbmf11 Institute for Physics of Microstructures Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики Š¼ŠøŠŗŃ€Š¾ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€ Российской акаГемии наук'),
(116264, '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'),
(116265, 'https://ror.org/03n96hw58', 'en', 1, 'https://ror.org/03n96hw58 Daniel Alcides Carrión National University Universidad Nacional Daniel Alcides Carrión'),
(116266, 'https://ror.org/03nawhv43', 'en', 1, 'https://ror.org/03nawhv43 Universidad de California en Riverside University of California, Riverside UniversitƩ de Californie Ơ Riverside'),
(116267, 'https://ror.org/03nhjew95', 'fr', 1, 'https://ror.org/03nhjew95 UniversitƩ de Rouen Normandie'),
(116268, 'https://ror.org/03nqb0t90', 'en', 1, 'https://ror.org/03nqb0t90 MĆŗsaeim NĆ”isiĆŗnta TƉ National Museums NI'),
(116269, 'https://ror.org/03ntccx93', 'en', 1, 'https://ror.org/03ntccx93 National Hospital Organization ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹'),
(116270, '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)'),
(116271, 'https://ror.org/03p14d497', 'en', 1, 'https://ror.org/03p14d497 University of Augsburg UniversitƤt Augsburg'),
(116272, '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) äŗ‘å—äŗ‘å†…åŠØåŠ›ęœŗę¢°åˆ¶é€ ęœ‰é™å…¬åø'),
(116273, 'https://ror.org/03p3cw779', 'en', 1, 'https://ror.org/03p3cw779 Mongolian National Institute of Physical Education Š£Š½Š“ŃŃŠ½ŠøŠ¹ Биеийн Тамирын Š”ŃŃŠ“ Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(116274, 'https://ror.org/03p96ke84', 'fr', 1, 'https://ror.org/03p96ke84 Development, Adaptation and Ageing DƩveloppement Adaptation et Vieillissement'),
(116275, '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'),
(116276, 'https://ror.org/03pfsnq21', 'en', 1, 'https://ror.org/03pfsnq21 Rzeszów University Uniwersytet Rzeszowski'),
(116277, 'https://ror.org/03pjf9v33', 'en', 1, 'https://ror.org/03pjf9v33 Toyo Institute of Food Technology å…¬ē›Šč²”å›£ę³•äŗŗę±ę“‹é£Ÿå“ē ”ē©¶ę‰€, ę±ę“‹é£Ÿå“ē ”ē©¶ę‰€'),
(116278, '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'),
(116279, 'https://ror.org/03pn1y237', 'en', 1, 'https://ror.org/03pn1y237 Biomaz Infosearch'),
(116280, 'https://ror.org/03q11ek36', 'en', 1, 'https://ror.org/03q11ek36 Government College University Hyderabad ŚÆŁˆŲ±Ł†Ł…ŁŠŁ†Ł½ ŚŖŲ§Ł„ŁŠŲ¬ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ,حيدرآباد'),
(116281, '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)'),
(116282, 'https://ror.org/03q95nj24', 'en', 1, 'https://ror.org/03q95nj24 Rishihood University'),
(116283, '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'),
(116284, 'https://ror.org/03qjsrb10', 'en', 1, 'https://ror.org/03qjsrb10 Soonchunhyang University ģˆœģ²œķ–„ėŒ€ķ•™źµ'),
(116285, 'https://ror.org/03qkmpv48', 'en', 1, 'https://ror.org/03qkmpv48 Institute of Labor, Occupational Safety And Health, Ministry of Labor'),
(116286, 'https://ror.org/03qn7fc69', 'en', 1, 'https://ror.org/03qn7fc69 Ibn-e-Sina University'),
(116287, 'https://ror.org/03qqdf793', 'en', 1, 'https://ror.org/03qqdf793 Providence Health Care'),
(116288, 'https://ror.org/03qtdvp28', 'pt', 1, 'https://ror.org/03qtdvp28 Centro de Reabilitação de Paralisia Cerebral de Coimbra'),
(116289, 'https://ror.org/03qxff017', 'en', 1, 'https://ror.org/03qxff017 Hebrew University of Jerusalem ×”××•× ×™×‘×Ø×”×™×˜×” העברית ×‘×™×Ø×•×©×œ×™× الجامعة Ų§Ł„Ų¹ŲØŲ±ŁŠŲ© في القدس'),
(116290, 'https://ror.org/03qxrge70', 'no_lang_code', 0, 'https://ror.org/03qxrge70 Fiat Chrysler Automobiles (United States)'),
(116291, 'https://ror.org/03r0ha626', 'en', 1, 'https://ror.org/03r0ha626 Universidad de Utah University of Utah'),
(116292, 'https://ror.org/03r3ww479', 'no_lang_code', 1, 'https://ror.org/03r3ww479 Grünenthal Group (Germany)'),
(116293, 'https://ror.org/03r44cm77', 'en', 1, 'https://ror.org/03r44cm77 Mata Gujri Memorial Medical College & Lions Seva Kendra Hospital'),
(116294, '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'),
(116295, 'https://ror.org/03r83qv57', 'fr', 1, 'https://ror.org/03r83qv57 France Cohortes'),
(116296, 'https://ror.org/03r89qc03', 'es', 1, 'https://ror.org/03r89qc03 Centro de Investigaciones y Transferencia Tierra del Fuego'),
(116297, 'https://ror.org/03r9r2649', 'fr', 0, 'https://ror.org/03r9r2649 Laboratoire de chimie des substances naturelles'),
(116298, 'https://ror.org/03rdgwh02', 'pt', 1, 'https://ror.org/03rdgwh02 Fundação para o Estudo e Desenvolvimento da Região de Aveiro'),
(116299, 'https://ror.org/03rggar28', 'es', 1, 'https://ror.org/03rggar28 Centro Medico Nacional - Hospital Nacional'),
(116300, 'https://ror.org/03rkhwr46', 'en', 1, 'https://ror.org/03rkhwr46 Inter-University Council for East Africa'),
(116301, 'https://ror.org/03rmrcq20', 'en', 1, 'https://ror.org/03rmrcq20 University of British Columbia UniversitƩ de la colombie-britannique'),
(116302, 'https://ror.org/03rny4b03', 'fr', 1, 'https://ror.org/03rny4b03 Center for the History of "Space and Culture" Centre d''Histoire ā€œEspaces et Culturesā€'),
(116303, 'https://ror.org/03rrfep50', 'de', 1, 'https://ror.org/03rrfep50 Ministerium für Bildung, Wissenschaft, Weiterbildung und Kultur'),
(116304, 'https://ror.org/03rrh5171', 'pt', 1, 'https://ror.org/03rrh5171 Center for Interdisciplinary Research Centro de Investigação Interdisciplinar Egas Moniz'),
(116305, 'https://ror.org/03rsy5447', 'en', 1, 'https://ror.org/03rsy5447 Riskfuel, Riskfuel (Canada)'),
(116306, 'https://ror.org/03rvea339', 'en', 1, 'https://ror.org/03rvea339 Shared Health Inc., Shared Health Manitoba Soins communs Manitoba'),
(116307, 'https://ror.org/03rvzaf62', 'pt', 1, 'https://ror.org/03rvzaf62 Escola Superior de Música e das Artes do EspectÔculo'),
(116308, 'https://ror.org/03s9zdv09', 'en', 1, 'https://ror.org/03s9zdv09 Manipal Centre for Natural Sciences'),
(116309, 'https://ror.org/03sa30d69', 'pt', 1, 'https://ror.org/03sa30d69 Grupo de Estudos de Ordenamento do Território e Ambiente'),
(116310, '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'),
(116311, 'https://ror.org/03sbcey83', 'en', 1, 'https://ror.org/03sbcey83 TechForFuture'),
(116312, 'https://ror.org/03scae842', 'en', 1, 'https://ror.org/03scae842 United States Special Operations Command'),
(116313, 'https://ror.org/03sf55932', 'en', 1, 'https://ror.org/03sf55932 Badji Mokhtar-Annaba University UniversitĆ© Badji Mokhtar-Annaba Ų¬Ų§Ł…Ų¹Ų© باجي Ł…Ų®ŲŖŲ§Ų±-عنابة'),
(116314, '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'),
(116315, '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'),
(116316, 'https://ror.org/03sj9b840', 'en', 1, 'https://ror.org/03sj9b840 EOSC Association'),
(116317, 'https://ror.org/03sk27d45', 'en', 1, 'https://ror.org/03sk27d45 South Carolina Department of Environmental Services'),
(116318, 'https://ror.org/03skt0t88', 'fr', 1, 'https://ror.org/03skt0t88 Biometry and Evolutionary Biology Laboratory Laboratoire de BiomƩtrie et Biologie Evolutive'),
(116319, 'https://ror.org/03svthf85', 'en', 1, 'https://ror.org/03svthf85 Damanhour University Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ…Ł†Ł‡ŁˆŲ±'),
(116320, 'https://ror.org/03svwq685', 'it', 1, 'https://ror.org/03svwq685 University of Tuscia UniversitĆ  degli Studi della Tuscia'),
(116321, 'https://ror.org/03syhjw18', 'en', 0, 'https://ror.org/03syhjw18 Hlukhiv State Pedagogical University'),
(116322, 'https://ror.org/03synvw58', 'fr', 1, 'https://ror.org/03synvw58 Institut FranƧais de la Vigne et du Vin'),
(116323, 'https://ror.org/03t41q113', 'pt', 1, 'https://ror.org/03t41q113 Centro de Oceanografia'),
(116324, 'https://ror.org/03t8ra664', 'pt', 1, 'https://ror.org/03t8ra664 Fundação Professor Ernesto Morais'),
(116325, 'https://ror.org/03tcx6c30', 'en', 1, 'https://ror.org/03tcx6c30 Finnish Museum of Natural History Luonnontieteellinen keskusmuseo Naturhistoriska centralmuseet'),
(116326, 'https://ror.org/03tee2f33', 'en', 1, 'https://ror.org/03tee2f33 Ministry of Colleges and Universities'),
(116327, 'https://ror.org/03tfgky26', 'en', 1, 'https://ror.org/03tfgky26 Rajkiya Engineering College Mainpuri'),
(116328, '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)'),
(116329, 'https://ror.org/03tjcj052', 'fr', 1, 'https://ror.org/03tjcj052 Centre de Recherche Inria Bordeaux - Sud-Ouest Inria Bordeaux - Sud-Ouest Research Centre'),
(116330, 'https://ror.org/03tjsyq23', 'en', 1, 'https://ror.org/03tjsyq23 Department of Biotechnology'),
(116331, 'https://ror.org/03tr7gk60', 'pt', 1, 'https://ror.org/03tr7gk60 Centro Interdisciplinar em CiĆŖncias da SaĆŗde'),
(116332, 'https://ror.org/03twnjp38', 'en', 1, 'https://ror.org/03twnjp38 University of Global Village (UGV) ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦—ą§ą¦²ą§‹ą¦¬ą¦¾ą¦² ভিলেج (ą¦‡ą¦‰ą¦œą¦æą¦­ą¦æ)'),
(116333, 'https://ror.org/03twp6y34', 'pt', 1, 'https://ror.org/03twp6y34 Centro de Investigação em Modelação e Optimização de Sistemas Multifuncionais'),
(116334, 'https://ror.org/03vd4n772', 'fr', 1, 'https://ror.org/03vd4n772 Vieillissement, FragilitƩ, PrƩvention, e-SantƩ'),
(116335, 'https://ror.org/03vdgq770', 'en', 1, 'https://ror.org/03vdgq770 Kindai University Nara Hospital čæ‘ē•æå¤§å­¦å„ˆč‰Æē—…é™¢'),
(116336, 'https://ror.org/03vdvap73', 'pt', 0, 'https://ror.org/03vdvap73 Centro de Estudo do Movimento e Atividade Humana'),
(116337, 'https://ror.org/03vmmgg57', 'en', 1, 'https://ror.org/03vmmgg57 Singapore Immunology Network'),
(116338, 'https://ror.org/03vsgv549', 'en', 1, 'https://ror.org/03vsgv549 Government Ayurvedic College & Hospital, Balangir ସରକାରୀ ą¬†ą­Ÿą­ą¬°ą­ą¬¬ą­‡ą¬¦ ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿą­ ą¬¬ą¬²ą­ą¬™ą­ą¬—ą¬°ą­'),
(116339, 'https://ror.org/03vsp1s58', 'no_lang_code', 1, 'https://ror.org/03vsp1s58 Id Tour Unique Solutions (Portugal)'),
(116340, 'https://ror.org/03vw1kz33', 'no', 1, 'https://ror.org/03vw1kz33 HĆøgskulen for GrĆøn Utvikling Norwegian University College of Green Development'),
(116341, 'https://ror.org/03vx93323', 'no_lang_code', 1, 'https://ror.org/03vx93323 Norsk Hydro (Norway)'),
(116342, 'https://ror.org/03vyzg221', 'fr', 1, 'https://ror.org/03vyzg221 Groupe de SpectromƩtrie MolƩculaire et AtmosphƩrique Molecular and Atmospheric Spectrometry Group'),
(116343, 'https://ror.org/03w0wfe93', 'en', 1, 'https://ror.org/03w0wfe93 Institut Rhodanien'),
(116344, 'https://ror.org/03w2cmy34', 'de', 0, 'https://ror.org/03w2cmy34 FernUni Schweiz'),
(116345, 'https://ror.org/03w2w6331', 'en', 1, 'https://ror.org/03w2w6331 Mykolaiv regional organization of National Union of Lore Researchers of Ukraine ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠ° обласна Š¾Ń€Š³Š°Š½Ń–Š·Š°Ń†Ń–Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— спілки краєзнавців України'),
(116346, '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'),
(116347, 'https://ror.org/03w6kry90', 'en', 1, 'https://ror.org/03w6kry90 Polytechnic Institute of Viana do Castelo'),
(116348, 'https://ror.org/03w9ctg72', 'es', 1, 'https://ror.org/03w9ctg72 Laboratorio de Investigaciones del Territorio y el Ambiente'),
(116349, 'https://ror.org/03wb1xh22', 'en', 1, 'https://ror.org/03wb1xh22 Tianjin Municipal Science and Technology Commission'),
(116350, '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'),
(116351, 'https://ror.org/03wg7b808', 'en', 1, 'https://ror.org/03wg7b808 Soonchunhyang University Bucheon Hospital ģˆœģ²œķ–„ėŒ€ķ•™źµ ė¶€ģ† ė¶€ģ²œė³‘ģ›'),
(116352, 'https://ror.org/03wgaeq62', 'en', 1, 'https://ror.org/03wgaeq62 Al-Shamal Private University Ų¬Ų§Ł…Ų¹Ų© الؓمال الخاصة'),
(116353, 'https://ror.org/03whah770', 'en', 1, 'https://ror.org/03whah770 Liaoning Institute of Science and Technology č¾½å®ē§‘ęŠ€å­¦é™¢'),
(116354, 'https://ror.org/03wnawg76', 'en', 1, 'https://ror.org/03wnawg76 IRELEC, IRELEC (FRANCE)'),
(116355, 'https://ror.org/03x368n87', 'en', 1, 'https://ror.org/03x368n87 Abylkas Saginov Karaganda Technical University Ó˜Š±Ń–Š»Ņ›Š°Ń Дағынов атынГағы ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(116356, 'https://ror.org/03xbd7n63', 'en', 1, 'https://ror.org/03xbd7n63 Scientific-Research Institute of Intellectual Property ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ДосліГний Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š†Š½Ń‚ŠµŠ»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Š¾Ń— Власності'),
(116357, 'https://ror.org/03xj0st28', 'en', 1, 'https://ror.org/03xj0st28 InsideOutBio, InsideOutBio (United States)'),
(116358, 'https://ror.org/03xjwb503', 'fr', 1, 'https://ror.org/03xjwb503 Paris-Saclayko Unibertsitatea Universitat Parƭs-Saclay University of Paris-Saclay UniversitƩ Paris-Saclay'),
(116359, 'https://ror.org/03xk32b06', 'en', 1, 'https://ror.org/03xk32b06 Oli Health Magazine Organization'),
(116360, 'https://ror.org/03xpvwe80', 'en', 1, 'https://ror.org/03xpvwe80 Pandit Bhagwat Dayal Sharma University of Health Sciences'),
(116361, 'https://ror.org/03xrg8537', 'pt', 1, 'https://ror.org/03xrg8537 Instituto de Formação e Investigação da Língua Portuguesa'),
(116362, 'https://ror.org/03xxypa75', 'en', 1, 'https://ror.org/03xxypa75 European Health and Digital Executive Agency, Health and Digital Executive Agency'),
(116363, 'https://ror.org/03xzttv08', 'en', 1, 'https://ror.org/03xzttv08 International University of Technology Twintech Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†ŲŖŁƒ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(116364, 'https://ror.org/03y56t646', 'no_lang_code', 1, 'https://ror.org/03y56t646 PƔgina Transparente Unipessoal (Portugal), Transparent Page Sole Trader'),
(116365, 'https://ror.org/03y5egs41', 'en', 1, 'https://ror.org/03y5egs41 Pannon Egyetem University of Pannonia'),
(116366, 'https://ror.org/03ygmt427', 'no_lang_code', 1, 'https://ror.org/03ygmt427 Grupo SIBS, SIBS Partners in Payments (Portugal)'),
(116367, 'https://ror.org/03yj89h83', 'en', 1, 'https://ror.org/03yj89h83 Oulun yliopisto University of Oulu'),
(116368, 'https://ror.org/03ym7bm55', 'en', 1, 'https://ror.org/03ym7bm55 RITM Research Center in Economics & Management RƩseaux, Innovation, Territoires et Mondialisation'),
(116369, 'https://ror.org/03yrrjy16', 'en', 1, 'https://ror.org/03yrrjy16 Syddansk Universitet University of Southern Denmark'),
(116370, 'https://ror.org/03z6jp965', 'fr', 1, 'https://ror.org/03z6jp965 Sorbonne Nouvelle University UniversitƩ Sorbonne Nouvelle'),
(116371, 'https://ror.org/03zav0w05', 'fr', 1, 'https://ror.org/03zav0w05 Institut Universitaire de Technologie de Dijon/Auxerre'),
(116372, 'https://ror.org/03zb3rf33', 'en', 1, 'https://ror.org/03zb3rf33 RVS College of Engineering & Technology, Jamshedpur'),
(116373, '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)'),
(116374, 'https://ror.org/03zfteg02', 'en', 1, 'https://ror.org/03zfteg02 Mental Health Authority'),
(116375, 'https://ror.org/03zg8ak49', 'es', 1, 'https://ror.org/03zg8ak49 Universidad CEU Fernando III'),
(116376, 'https://ror.org/03zmqts64', 'es', 1, 'https://ror.org/03zmqts64 Instituto Superior Tecnológico San Antonio'),
(116377, 'https://ror.org/03zmsge54', 'en', 1, 'https://ror.org/03zmsge54 NSF’s NOIRLab'),
(116378, 'https://ror.org/03zpfpj30', 'pt', 1, 'https://ror.org/03zpfpj30 Fundação das Casas de Fronteira e Alorna'),
(116379, 'https://ror.org/03zzbzq91', 'fr', 1, 'https://ror.org/03zzbzq91 Laboratoire Communication et SociƩtƩs'),
(116380, 'https://ror.org/0402qmp47', 'en', 1, 'https://ror.org/0402qmp47 Clonal Heterogeneity, Leukemic environment, ThErapy Resistance of chronic leukemias'),
(116381, 'https://ror.org/04032fz76', 'pt', 1, 'https://ror.org/04032fz76 Hospitais da Universidade de Coimbra Hospitals of the University of Coimbra'),
(116382, 'https://ror.org/04040yw90', 'fr', 1, 'https://ror.org/04040yw90 Inria Rennes - Bretagne Atlantique, Inria Rennes - Bretagne Atlantique Research Centre'),
(116383, 'https://ror.org/04046pn04', 'pt', 1, 'https://ror.org/04046pn04 Hospital da Prelada'),
(116384, 'https://ror.org/040753f36', 'fr', 1, 'https://ror.org/040753f36 Centre Inria de l''UniversitƩ Paris-Saclay Inria Saclay Centre at UniversitƩ Paris-Saclay'),
(116385, 'https://ror.org/0409dgb37', 'pt', 1, 'https://ror.org/0409dgb37 Federal University of ViƧosa Universidade Federal de ViƧosa'),
(116386, 'https://ror.org/040d0cf15', 'no_lang_code', 1, 'https://ror.org/040d0cf15 Stellantis North America Stellantis North America (United States)'),
(116387, 'https://ror.org/040m5vj74', 'en', 1, 'https://ror.org/040m5vj74 Games Interaction and Learning Technologies'),
(116388, 'https://ror.org/040rsxp47', 'fr', 1, 'https://ror.org/040rsxp47 Neuropathies PƩriphƩriques et Innovations ThƩrapeutiques'),
(116389, 'https://ror.org/040wg7k59', 'en', 1, 'https://ror.org/040wg7k59 Chalmers University of Technology Chalmers tekniska hƶgskola Chalmersin teknillinen korkeakoulu'),
(116390, 'https://ror.org/040wqw555', 'en', 1, 'https://ror.org/040wqw555 Central Agency for Public Mobilization & Statistics الجهاز Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ للتعبئة العامة ŁˆŲ§Ł„Ų„Ų­ŲµŲ§Ų”'),
(116391, 'https://ror.org/040yeqy86', 'en', 1, 'https://ror.org/040yeqy86 Ludovika University of Public Service Nemzeti KƶzszolgƔlati Egyetem'),
(116392, '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'),
(116393, 'https://ror.org/0411txc13', 'pt', 1, 'https://ror.org/0411txc13 Centro de Investigação da Terra e do Espaço'),
(116394, 'https://ror.org/0412bhr24', 'pt', 1, 'https://ror.org/0412bhr24 UACOOPERA'),
(116395, 'https://ror.org/041471c24', 'en', 0, 'https://ror.org/041471c24 National Research Center for Hematology Russian Academy of Medical Sciences ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр гематологии'),
(116396, 'https://ror.org/04165bm54', 'es', 1, 'https://ror.org/04165bm54 Benemerita Escuela Normal Urbana Federal Fronteriza'),
(116397, 'https://ror.org/0419y0m35', 'en', 1, 'https://ror.org/0419y0m35 Isfahan Regional Center for Technology Incubators and Science Parks Development'),
(116398, 'https://ror.org/041awyd76', 'en', 1, 'https://ror.org/041awyd76 Hellenic Air Force Academy Σχολη Ικαρων'),
(116399, 'https://ror.org/041c9jk31', 'pt', 1, 'https://ror.org/041c9jk31 Centro de Investigação Cientifica da Construção e do ImobiliÔrio'),
(116400, 'https://ror.org/041hz9568', 'en', 1, 'https://ror.org/041hz9568 Korea Institute for Advanced Study 고등과학원'),
(116401, 'https://ror.org/041kmwe10', 'en', 1, 'https://ror.org/041kmwe10 Coleg Imperial Llundain Imperial College London'),
(116402, 'https://ror.org/041nz5a71', 'en', 1, 'https://ror.org/041nz5a71 Foundation for Partnership Initiatives in the Niger Delta'),
(116403, 'https://ror.org/041p8ws46', 'no_lang_code', 1, 'https://ror.org/041p8ws46 Chrysler (Canada)'),
(116404, '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.'),
(116405, 'https://ror.org/0424mzx13', 'en', 1, 'https://ror.org/0424mzx13 NSF-Simons AI Institute for Cosmic Origins'),
(116406, 'https://ror.org/04273hz96', 'en', 1, 'https://ror.org/04273hz96 Open Research Community Accelerator'),
(116407, 'https://ror.org/04276xd64', 'pt', 1, 'https://ror.org/04276xd64 Universidade dos AƧores University of the Azores'),
(116408, 'https://ror.org/0427vvt16', 'en', 1, 'https://ror.org/0427vvt16 Affaires Mondiales Canada Global Affairs Canada'),
(116409, 'https://ror.org/042949r55', 'fr', 1, 'https://ror.org/042949r55 HESAM UniversitƩ'),
(116410, 'https://ror.org/0429gcg78', 'fr', 1, 'https://ror.org/0429gcg78 Institut d''Etudes de Droit Public Institute of Public Law Studies'),
(116411, 'https://ror.org/042akwa68', 'pt', 1, 'https://ror.org/042akwa68 Centro de Investigação Interdisciplinar e Intervenção ComunitÔria'),
(116412, 'https://ror.org/042aqky30', 'de', 1, 'https://ror.org/042aqky30 TUD Dresden University of Technology Technische UniversitƤt Dresden'),
(116413, 'https://ror.org/042dqsh43', 'en', 1, 'https://ror.org/042dqsh43 Arrington Research, Inc., Arrington Research, Inc. (United States)'),
(116414, 'https://ror.org/042ezq693', 'en', 1, 'https://ror.org/042ezq693 Advanced Mining Technology Center Centro Avanzado de TecnologĆ­a para la MinerĆ­a'),
(116415, 'https://ror.org/042ge0913', 'en', 1, 'https://ror.org/042ge0913 Ministry of Economic Affairs'),
(116416, 'https://ror.org/042hqyj67', 'en', 1, 'https://ror.org/042hqyj67 Higher Technological Institute, 6th of October City المعهد Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ Ų§Ł„Ų¹Ų§Ł„ŁŠ بالسادس من أكتوبر'),
(116417, 'https://ror.org/042jn4x95', 'en', 0, 'https://ror.org/042jn4x95 GGD Amsterdam Public Health Service of Amsterdam'),
(116418, 'https://ror.org/042sjcz88', 'en', 1, 'https://ror.org/042sjcz88 NIHR Surgical Reconstruction and Microbiology Research Centre'),
(116419, 'https://ror.org/0433hjd74', 'no_lang_code', 1, 'https://ror.org/0433hjd74 LivaNova (Portugal)'),
(116420, '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įŗæ'),
(116421, 'https://ror.org/043b21242', 'no_lang_code', 1, 'https://ror.org/043b21242 Laboratório Normal Produtos Farmacêuticos (Portugal), Normal Laboratory Pharmaceutical Products'),
(116422, 'https://ror.org/043htjv09', 'fr', 1, 'https://ror.org/043htjv09 CY Cergy Paris University CY Cergy Paris UniversitƩ'),
(116423, 'https://ror.org/043j0f473', 'en', 1, 'https://ror.org/043j0f473 Deutsches Zentrum für Neurodegenerative Erkrankungen German Center for Neurodegenerative Diseases'),
(116424, 'https://ror.org/043k3s342', 'fr', 1, 'https://ror.org/043k3s342 Centre de Vision NumƩrique Centre for Visual Computing'),
(116425, 'https://ror.org/043mer456', 'en', 1, 'https://ror.org/043mer456 Universidad de Nebraska-Lincoln University of Nebraska–Lincoln UniversitĆ© du nebraska Ć  lincoln'),
(116426, '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'),
(116427, 'https://ror.org/043n4fm24', 'fr', 1, 'https://ror.org/043n4fm24 Laboratoire Paul PainlevƩ'),
(116428, 'https://ror.org/043pwc612', 'pt', 1, 'https://ror.org/043pwc612 Universidade do Porto University of Porto'),
(116429, 'https://ror.org/043z3jh59', 'es', 1, 'https://ror.org/043z3jh59 Secretaría de Educación Jalisco'),
(116430, 'https://ror.org/0440yjn92', 'en', 1, 'https://ror.org/0440yjn92 American University of Ras Al Khaimah الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ų±Ų£Ų³ Ų§Ł„Ų®ŁŠŁ…Ų©'),
(116431, 'https://ror.org/04439z919', 'no_lang_code', 1, 'https://ror.org/04439z919 Galderma (Portugal)'),
(116432, 'https://ror.org/04488qa52', 'pt', 1, 'https://ror.org/04488qa52 Centro Interdisciplinar de Investigação Psicossocial Interdisciplinary Center for Psychosocial Research'),
(116433, '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'),
(116434, 'https://ror.org/044cfnj78', 'fr', 1, 'https://ror.org/044cfnj78 GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de DonnƩes'),
(116435, 'https://ror.org/044dy7e28', 'pt', 1, 'https://ror.org/044dy7e28 Escola de CiĆŖncias Sociais e Humanas'),
(116436, 'https://ror.org/044frxc69', 'pt', 1, 'https://ror.org/044frxc69 Tech & Art Centro de Tecnologia Restauro e Valorização das Artes'),
(116437, 'https://ror.org/044g3rq92', 'pt', 1, 'https://ror.org/044g3rq92 Fundação Museu do Douro'),
(116438, 'https://ror.org/044g6d731', 'en', 1, 'https://ror.org/044g6d731 Savitribai Phule Pune University UniversitĆ© de pune ą¤Ŗą„ą¤£ą„‡ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  புனே ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ಪುಣೆ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(116439, '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'),
(116440, 'https://ror.org/044k31203', 'pt', 1, 'https://ror.org/044k31203 Instituto Piaget'),
(116441, 'https://ror.org/044qsaz69', 'no_lang_code', 1, 'https://ror.org/044qsaz69 GHENOVA GHENOVA (Spain)'),
(116442, 'https://ror.org/044t4x544', 'fr', 1, 'https://ror.org/044t4x544 University of NƮmes UniversitƩ de NƮmes'),
(116443, 'https://ror.org/044wk9m82', 'en', 1, 'https://ror.org/044wk9m82 Spiritan University Nneochi'),
(116444, 'https://ror.org/044wq1q96', 'de', 1, 'https://ror.org/044wq1q96 Deutsche Zentren der Gesundheitsforschung German Centers for Health Research'),
(116445, 'https://ror.org/044xk2674', 'en', 1, 'https://ror.org/044xk2674 Hellenic Air Force Πολεμική Αεροπορία'),
(116446, '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'),
(116447, 'https://ror.org/04562w448', 'pt', 1, 'https://ror.org/04562w448 Centro de Estudos Complexidade e Diversidade Humana'),
(116448, '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'),
(116449, 'https://ror.org/0457e3t07', 'en', 1, 'https://ror.org/0457e3t07 Regional Centre on Urban Water Management'),
(116450, 'https://ror.org/0458p8g61', 'fr', 1, 'https://ror.org/0458p8g61'),
(116451, 'https://ror.org/0459fdx51', 'fr', 1, 'https://ror.org/0459fdx51 FƩdƩration de Recherche sur l''Energie Solaire'),
(116452, 'https://ror.org/045m49j31', 'pt', 1, 'https://ror.org/045m49j31 Fundação Portuguesa das Comunicações'),
(116453, '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'),
(116454, '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'),
(116455, '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'),
(116456, 'https://ror.org/0467pvr81', 'pt', 1, 'https://ror.org/0467pvr81 Unidade de Investigação Nova SBE');
INSERT INTO `rors` VALUES
(116457, 'https://ror.org/046hw5281', 'en', 1, 'https://ror.org/046hw5281 Nova School of Business and Economics Library'),
(116458, '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'),
(116459, 'https://ror.org/046p9e825', 'fr', 1, 'https://ror.org/046p9e825 Laboratory Preuves, Programmes et SystĆØmes'),
(116460, 'https://ror.org/046qcse71', 'en', 1, 'https://ror.org/046qcse71 Institute of Gifted Child of National Academy of Educational Sciences of Ukraine Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ обГарованої Гитини ŠŠŠŸŠ України'),
(116461, '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'),
(116462, 'https://ror.org/046rtng78', 'en', 1, 'https://ror.org/046rtng78 Human Resources and Social Security Department of Guangdong Provice å¹æäøœēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(116463, 'https://ror.org/046sqxa62', 'ca', 1, 'https://ror.org/046sqxa62 Hospital de Tortosa Verge de la Cinta'),
(116464, 'https://ror.org/046tqzs73', 'pt', 1, 'https://ror.org/046tqzs73 Grupo de Estudos de Cancro da CabeƧa e do PescoƧo'),
(116465, 'https://ror.org/0475kvb92', 'en', 1, 'https://ror.org/0475kvb92 Moldova State University Universitatea de Stat din Moldova Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ¾Š»Š“Š¾Š²Ń‹'),
(116466, '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'),
(116467, 'https://ror.org/047f1xe49', 'en', 1, 'https://ror.org/047f1xe49 International Centre on Global-Scale Geochemistry č”åˆå›½ę•™ē§‘ę–‡ē»„ē»‡å…Øēƒå°ŗåŗ¦åœ°ēƒåŒ–å­¦å›½é™…ē ”ē©¶äø­åæƒ'),
(116468, 'https://ror.org/047fp3543', 'en', 1, 'https://ror.org/047fp3543 Higher National School of Renewable Energies, Environment & Sustainable Development المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للطاقات المتجددة ŁˆŲ§Ł„ŲØŁŠŲ¦Ų© ŁˆŲ§Ł„ŲŖŁ†Ł…ŁŠŲ© المستدامة'),
(116469, 'https://ror.org/047gc3g35', 'en', 1, 'https://ror.org/047gc3g35 Universidad de Chile University of Chile'),
(116470, 'https://ror.org/047gexf31', 'en', 1, 'https://ror.org/047gexf31 Mongolian National University of Education Монгол Улсын Боловсролын Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(116471, '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'),
(116472, 'https://ror.org/047qzfw27', 'fr', 1, 'https://ror.org/047qzfw27 Agence Spatiale AlgĆ©rienne Algerian Space Agency Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁŲ¶Ų§Ų¦ŁŠŲ© Ų§Ł„Ų¬Ų²Ų§Ų¦Ų±ŁŠŲ©'),
(116473, 'https://ror.org/047s2c258', 'en', 1, 'https://ror.org/047s2c258 Universidad de Maryland University of Maryland, College Park UniversitƩ du Maryland'),
(116474, 'https://ror.org/047s7ex42', 'en', 1, 'https://ror.org/047s7ex42 University of Utah Health Care'),
(116475, 'https://ror.org/0487m2n62', 'pt', 1, 'https://ror.org/0487m2n62 Instituto de Investigacao das Pescas e do Mar'),
(116476, 'https://ror.org/048a87296', 'en', 1, 'https://ror.org/048a87296 Uppsala University Uppsala universitet Uppsalan yliopisto'),
(116477, 'https://ror.org/048ank724', 'pt', 1, 'https://ror.org/048ank724 Centro de Investigação em Ciências Empresariais'),
(116478, 'https://ror.org/048ca6n16', 'en', 0, 'https://ror.org/048ca6n16 United States Air Force Systems Command'),
(116479, 'https://ror.org/048fyec77', 'en', 1, 'https://ror.org/048fyec77 Murdoch Children''s Research Institute'),
(116480, 'https://ror.org/048hf7w38', 'en', 1, 'https://ror.org/048hf7w38 Squad Medicine and Research (SMR)'),
(116481, 'https://ror.org/048sjjr07', 'en', 1, 'https://ror.org/048sjjr07 The East European Scientific Studies Center Центр ŃŃ…Ń–Š“Š½Š¾Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŃ… Š½Š°ŃƒŠŗŠ¾Š²ŠøŃ… ŃŃ‚ŃƒŠ“Ń–Š¹'),
(116482, 'https://ror.org/048vk1h54', 'en', 1, 'https://ror.org/048vk1h54 Kasturba Medical College, Mangalore'),
(116483, 'https://ror.org/048wtcr31', 'en', 1, 'https://ror.org/048wtcr31 Institute of Aviation Engineering & Technology'),
(116484, 'https://ror.org/0491yz035', 'en', 1, 'https://ror.org/0491yz035 Saha Institute of Nuclear Physics'),
(116485, 'https://ror.org/049234459', 'en', 1, 'https://ror.org/049234459 Cygnet Healthcare Ltd'),
(116486, 'https://ror.org/0492wrx28', 'en', 1, 'https://ror.org/0492wrx28 Indian Council of Medical Research'),
(116487, 'https://ror.org/0494zgc81', 'en', 1, 'https://ror.org/0494zgc81 Seoul National University Dental Hospital'),
(116488, 'https://ror.org/04954k862', 'pt', 1, 'https://ror.org/04954k862 Centro de Estudos Africanos'),
(116489, 'https://ror.org/0495f8j82', 'pt', 1, 'https://ror.org/0495f8j82 Hospital da Mulher SĆ£o Paulo'),
(116490, 'https://ror.org/04988re48', 'en', 1, 'https://ror.org/04988re48 Instituto PolitƩcnico do Porto Polytechnic Institute of Porto'),
(116491, 'https://ror.org/049c8eh51', 'en', 1, 'https://ror.org/049c8eh51 Central Washington University'),
(116492, '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'),
(116493, 'https://ror.org/049h51c33', 'no_lang_code', 1, 'https://ror.org/049h51c33 Health Products Research and Development (Portugal)'),
(116494, 'https://ror.org/049rejj19', 'tl', 1, 'https://ror.org/049rejj19 Dalubhasaan ng Lungsod ng Lucena'),
(116495, 'https://ror.org/049s0rh22', 'en', 1, 'https://ror.org/049s0rh22 Dartmouth College'),
(116496, 'https://ror.org/049tv2d57', 'en', 1, 'https://ror.org/049tv2d57 Southern University of Science and Technology å—ę–¹ē§‘ęŠ€å¤§å­¦'),
(116497, 'https://ror.org/049wsmj07', 'en', 1, 'https://ror.org/049wsmj07 Sensetime, Sensetime (China) å•†ę±¤é›†å›¢ęœ‰é™å…¬åø'),
(116498, 'https://ror.org/04a0dbe36', 'es', 1, 'https://ror.org/04a0dbe36 Fundación Universitaria San Pablo CEU'),
(116499, 'https://ror.org/04a1wt724', 'pt', 1, 'https://ror.org/04a1wt724 Oficina de Transferência de Tecnologia Inovação e Conhecimento'),
(116500, 'https://ror.org/04a9e1d62', 'id', 1, 'https://ror.org/04a9e1d62 Sekolah Tinggi Ilmu Ekonomi IBEK Pangkalpinang'),
(116501, 'https://ror.org/04abg5t05', 'en', 1, 'https://ror.org/04abg5t05 Russian Federal Space Agency Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ космическое агентство'),
(116502, 'https://ror.org/04ac5jv08', 'en', 0, 'https://ror.org/04ac5jv08 Saratov State Vavilov Agrarian University Даратовский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116503, 'https://ror.org/04afed728', 'fr', 1, 'https://ror.org/04afed728 Computer Science Laboratory of the Ɖcole Polytechnique Laboratoire d''Informatique de l''Ɖcole Polytechnique'),
(116504, 'https://ror.org/04afhv062', 'pt', 1, 'https://ror.org/04afhv062 Gabinete Emprego Empreendedorismo e Ligação às Empresas'),
(116505, 'https://ror.org/04agtv307', 'en', 1, 'https://ror.org/04agtv307 Saratov State Agrarian University named after N.I .Vavilov Даратовский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116506, 'https://ror.org/04aqg9s78', 'no_lang_code', 1, 'https://ror.org/04aqg9s78 Beiersdorf (Germany)'),
(116507, 'https://ror.org/04b8j4a33', 'en', 1, 'https://ror.org/04b8j4a33 Public Works Research Institute åœŸęœØē ”ē©¶ę‰€'),
(116508, 'https://ror.org/04bhk6583', 'it', 1, 'https://ror.org/04bhk6583 Azienda Ospedale - UniversitĆ  Padova'),
(116509, 'https://ror.org/04bsm4075', 'fr', 1, 'https://ror.org/04bsm4075'),
(116510, 'https://ror.org/04bxscs93', 'en', 1, 'https://ror.org/04bxscs93 Politeknik Negeri Indramayu'),
(116511, 'https://ror.org/04c2tm284', 'fr', 1, 'https://ror.org/04c2tm284'),
(116512, 'https://ror.org/04c34mc83', 'en', 1, 'https://ror.org/04c34mc83 Avicenna - Batumi Medical University įƒįƒ•įƒ˜įƒŖįƒ”įƒœįƒ - įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(116513, 'https://ror.org/04c8v4y49', 'no_lang_code', 1, 'https://ror.org/04c8v4y49 Centro de Estudos Arnaldo AraĆŗjo'),
(116514, 'https://ror.org/04ca50994', 'en', 1, 'https://ror.org/04ca50994 Bangladesh Naval Academy বাংলাদেশ নেভাল ą¦ą¦•ą¦¾ą¦”ą§‡ą¦®ą¦æ'),
(116515, 'https://ror.org/04cc84y45', 'pt', 1, 'https://ror.org/04cc84y45 Instituto de Pesquisas Científicas e Tecnológicas do Estado do AmapÔ'),
(116516, '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'),
(116517, 'https://ror.org/04ck23c90', 'en', 1, 'https://ror.org/04ck23c90 Ministry of Environment and Climate Change وزارة Ų§Ł„ŲØŁŠŲ¦Ų© ŁˆŲ§Ł„ŲŖŲŗŁŠŁ‘Ų± Ų§Ł„Ł…Ł†Ų§Ų®ŁŠ'),
(116518, 'https://ror.org/04cnjk665', 'pt', 1, 'https://ror.org/04cnjk665 Inspecção-Geral de Finanças'),
(116519, 'https://ror.org/04ctejd88', 'en', 1, 'https://ror.org/04ctejd88 Airlangga University Universitas Airlangga'),
(116520, 'https://ror.org/04cxp0t61', 'pt', 1, 'https://ror.org/04cxp0t61 Centro de Investigação do Instituto Português de Oncologia do Porto Francisco Gentil'),
(116521, 'https://ror.org/04czk1152', 'en', 1, 'https://ror.org/04czk1152 NOVAMath Center for Mathematics and Applications'),
(116522, 'https://ror.org/04d4sd432', 'en', 1, 'https://ror.org/04d4sd432 University of Sfax UniversitĆ© de Sfax Ų¬Ų§Ł…Ų¹Ų© صفاقس'),
(116523, 'https://ror.org/04d5mb615', 'en', 1, 'https://ror.org/04d5mb615 University of Nebraska at Kearney'),
(116524, 'https://ror.org/04d9wv909', 'en', 1, 'https://ror.org/04d9wv909 Cognition Behaviour Technology'),
(116525, 'https://ror.org/04dabqh73', 'en', 1, 'https://ror.org/04dabqh73 Waha Oil Company ؓركة Ų§Ł„ŁˆŲ§Ų­Ų© للنفط'),
(116526, 'https://ror.org/04danrt76', 'en', 1, 'https://ror.org/04danrt76 EarthScope Consortium'),
(116527, 'https://ror.org/04dkjtk04', 'es', 1, 'https://ror.org/04dkjtk04 Instituto de Cultura JurĆ­dica'),
(116528, 'https://ror.org/04dkp9463', 'en', 1, 'https://ror.org/04dkp9463 Universiteit van Amsterdam University of Amsterdam'),
(116529, 'https://ror.org/04dkt3v19', 'en', 1, 'https://ror.org/04dkt3v19 Centre d''Economie de l''ENS Paris-Saclay Centre for Economics at Paris-Saclay'),
(116530, 'https://ror.org/04dn8cr54', 'pt', 0, 'https://ror.org/04dn8cr54 Faculdades Nova EsperanƧa'),
(116531, 'https://ror.org/04dyzk191', 'en', 1, 'https://ror.org/04dyzk191 Islamic Azad University, Aras Branch دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§Ų±Ų³'),
(116532, 'https://ror.org/04dza7n80', 'de', 1, 'https://ror.org/04dza7n80 NABU|naturgucker geG, NABU|naturgucker gemeinnützige eG'),
(116533, 'https://ror.org/04e4j5d46', 'no_lang_code', 1, 'https://ror.org/04e4j5d46 Galapagos (Belgium)'),
(116534, 'https://ror.org/04e90ca47', 'en', 1, 'https://ror.org/04e90ca47 Faculty of Electrical Engineering and Computing in Zagreb Fakultet elektrotehnike i računarstva'),
(116535, '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'),
(116536, 'https://ror.org/04eej9726', 'fr', 1, 'https://ror.org/04eej9726 Centre de recherche Inria Lille - Nord Europe Inria research centre Lille - Nord Europe'),
(116537, 'https://ror.org/04eh3ff78', 'pt', 1, 'https://ror.org/04eh3ff78 Instituto de Inovação Tecnológica dos Açores'),
(116538, 'https://ror.org/04ek0a809', 'no_lang_code', 1, 'https://ror.org/04ek0a809 Gilead Sciences (Portugal)'),
(116539, 'https://ror.org/04ekaae20', 'pt', 1, 'https://ror.org/04ekaae20 Instituto PortuguĆŖs de Psicologia e Outras CiĆŖncias'),
(116540, 'https://ror.org/04em18c81', 'en', 1, 'https://ror.org/04em18c81 NOVA SBE Venture Lab'),
(116541, 'https://ror.org/04eq3m258', 'no_lang_code', 1, 'https://ror.org/04eq3m258 Piscicultura do Vale da Lama (Portugal)'),
(116542, 'https://ror.org/04ers2y35', 'en', 1, 'https://ror.org/04ers2y35 University of Bremen UniversitƤt Bremen'),
(116543, 'https://ror.org/04ett5b41', 'fr', 1, 'https://ror.org/04ett5b41 Laboratoire Jean Kuntzmann'),
(116544, 'https://ror.org/04ewgsz80', 'en', 1, 'https://ror.org/04ewgsz80 Guangdong Provincial Key Laboratory of Geophysical High-resolution Imaging Technology å¹æäøœēœåœ°ēƒē‰©ē†é«˜ē²¾åŗ¦ęˆåƒęŠ€ęœÆé‡ē‚¹å®žéŖŒå®¤'),
(116545, 'https://ror.org/04ex24z53', 'fr', 1, 'https://ror.org/04ex24z53 CollĆØge de France'),
(116546, 'https://ror.org/04eyv5322', 'pt', 1, 'https://ror.org/04eyv5322 Fundação da Casa de Mateus'),
(116547, 'https://ror.org/04f57t081', 'de', 1, 'https://ror.org/04f57t081 Internationale Joseph Haydn Privatstiftung Eisenstadt'),
(116548, 'https://ror.org/04f6rmh40', 'en', 1, 'https://ror.org/04f6rmh40 Tenement Museum'),
(116549, 'https://ror.org/04f9hsx44', 'no_lang_code', 1, 'https://ror.org/04f9hsx44 Vontobel (Switzerland)'),
(116550, 'https://ror.org/04fht8c22', 'en', 1, 'https://ror.org/04fht8c22 Bharathiar University भरतिआर ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą„ą¤Æą¤¾ą¤²ą¤Æ ą®Ŗą®¾ą®°ą®¤ą®æą®Æą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“­ą“¾ą“°ą“¤ą“æą“Æą“¾ąµ¼ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(116551, 'https://ror.org/04fw54a43', 'en', 1, 'https://ror.org/04fw54a43 Indian Council of Agricultural Research ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø परिषद ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µąÆ‡ą®³ą®¾ą®£ąÆ ą®†ą®ÆąÆą®µąÆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(116552, 'https://ror.org/04g07g074', 'en', 1, 'https://ror.org/04g07g074 Radiation Protection, Safety, Dismantling engineering ingénierie Radioprotection Sûreté Démantèlement'),
(116553, 'https://ror.org/04g2pxh42', 'en', 1, 'https://ror.org/04g2pxh42 Korea Astronomy and Space Science Institute ķ•œźµ­ģ²œė¬øģ—°źµ¬ģ›'),
(116554, 'https://ror.org/04g6gva85', 'en', 1, 'https://ror.org/04g6gva85 Centre for Advancing Health Outcomes'),
(116555, 'https://ror.org/04g6y8x69', 'pt', 1, 'https://ror.org/04g6y8x69 Procuradoria-Geral da Fazenda Nacional'),
(116556, 'https://ror.org/04gac9b55', 'en', 1, 'https://ror.org/04gac9b55 Learning Transitions'),
(116557, 'https://ror.org/04gbbq803', 'nl', 1, 'https://ror.org/04gbbq803 GGD Amsterdam, Geneeskundige en Gezondheidsdienst Amsterdam Public Health Service of Amsterdam'),
(116558, 'https://ror.org/04gmmfj60', 'en', 1, 'https://ror.org/04gmmfj60 University of Limassol Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī›ĪµĪ¼ĪµĻƒĪæĻ Университет Лимассола'),
(116559, 'https://ror.org/04gn37s26', 'id', 1, 'https://ror.org/04gn37s26 Akademi Komunitas Industri Tekstil dan Produk Tekstil Surakarta'),
(116560, 'https://ror.org/04gnxkq03', 'en', 1, 'https://ror.org/04gnxkq03 KwaZulu-Natal Department of Community Safety & Liaison'),
(116561, 'https://ror.org/04gpsrx13', 'fr', 1, 'https://ror.org/04gpsrx13 Œuvre Nationale, Œuvre Nationale de Secours Grande-Duchesse Charlotte'),
(116562, 'https://ror.org/04gq6mn61', 'en', 1, 'https://ror.org/04gq6mn61 Ministerio de Salud del PerĆŗ Ministry of Health'),
(116563, 'https://ror.org/04grkj883', 'en', 1, 'https://ror.org/04grkj883 Maharashtra University of Health Sciences'),
(116564, 'https://ror.org/04gtrgv98', 'en', 1, 'https://ror.org/04gtrgv98 Embassy of the United States Lisbon'),
(116565, 'https://ror.org/04gyf1771', 'en', 1, 'https://ror.org/04gyf1771 Universidad de California en Irvine University of California, Irvine UniversitƩ de Californie Ơ Irvine'),
(116566, 'https://ror.org/04gz78964', 'es', 1, 'https://ror.org/04gz78964 Instituto Tecnológico Superior ARGOS'),
(116567, 'https://ror.org/04gzz8859', 'pt', 1, 'https://ror.org/04gzz8859 Centro de Investigação em Saúde e Tecnologia Health and Technology Research Center'),
(116568, 'https://ror.org/04h3efr78', 'en', 1, 'https://ror.org/04h3efr78 Arunachal Pradesh University'),
(116569, 'https://ror.org/04h3rfa52', 'en', 1, 'https://ror.org/04h3rfa52 Mata Gujri University'),
(116570, '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'),
(116571, 'https://ror.org/04h50g296', 'es', 1, 'https://ror.org/04h50g296 Instituto de Antropología de Córdoba'),
(116572, 'https://ror.org/04h8e7606', 'en', 1, 'https://ror.org/04h8e7606 Fernando Pessoa University Universidade Fernando Pessoa'),
(116573, 'https://ror.org/04h9pn542', 'en', 1, 'https://ror.org/04h9pn542 Seoul National University ģ„œģšøėŒ€ķ•™źµ'),
(116574, 'https://ror.org/04hdbav23', 'es', 1, 'https://ror.org/04hdbav23 Gordon Academic College of Education, Instituto de Educación Superior Gordon College ×”××§×“×ž×™×Ŗ ×’×•×Ø×“×•×Ÿ'),
(116575, 'https://ror.org/04he1c034', 'en', 1, 'https://ror.org/04he1c034 Office of Carbon Management'),
(116576, 'https://ror.org/04hft8h57', 'es', 1, 'https://ror.org/04hft8h57 El Colegio de la Frontera Norte'),
(116577, 'https://ror.org/04hjbmv12', 'no_lang_code', 1, 'https://ror.org/04hjbmv12 Takeda Takeda (Japan) 武田薬品巄愭'),
(116578, 'https://ror.org/04hkkk014', 'pt', 1, 'https://ror.org/04hkkk014 Centro de Investigação em Turismo Sustentabilidade e Bem-Estar'),
(116579, 'https://ror.org/04hkqw151', 'pt', 1, 'https://ror.org/04hkqw151 Hospital São José de Fafe'),
(116580, 'https://ror.org/04hkvc554', 'es', 1, 'https://ror.org/04hkvc554 Instituto Superior Tecnológico Consulting Group Ecuador-Esculapio'),
(116581, 'https://ror.org/04hrtv807', 'no_lang_code', 1, 'https://ror.org/04hrtv807 Soginfer Investimentos ImobiliƔrios (Portugal), Soginfer Real Estate Investments'),
(116582, 'https://ror.org/04hrvh150', 'no_lang_code', 1, 'https://ror.org/04hrvh150 Grupo Pedago (Portugal), Pedago Group'),
(116583, 'https://ror.org/04hskk338', 'en', 1, 'https://ror.org/04hskk338 (주)ė™ė‚Øģ˜ķ™”ķ•™ģ—°źµ¬ģ›ģ€ Southeast Medi-Chem Institute, Southeast Medi-Chem Institute (South Korea)'),
(116584, 'https://ror.org/04hwbg047', 'de', 1, 'https://ror.org/04hwbg047 Sigmund Freud Private University Vienna Sigmund Freud PrivatuniversitƤt Wien'),
(116585, 'https://ror.org/04hxjdv47', 'en', 1, 'https://ror.org/04hxjdv47 International House Viseu'),
(116586, 'https://ror.org/04hztmn48', 'fr', 1, 'https://ror.org/04hztmn48 Laboratoire Conception de Produits et Innovation'),
(116587, 'https://ror.org/04j5jqy92', 'en', 1, 'https://ror.org/04j5jqy92 Conseil de Recherches en Sciences Humaines Social Sciences and Humanities Research Council'),
(116588, 'https://ror.org/04j8mn309', 'fr', 1, 'https://ror.org/04j8mn309 ƉcoCirta'),
(116589, 'https://ror.org/04jc3ew84', 'en', 1, 'https://ror.org/04jc3ew84 Dracaena Draco Research Farm Melbourne'),
(116590, 'https://ror.org/04jjpxe06', 'en', 1, 'https://ror.org/04jjpxe06 Bangladesh Atomic Energy Regulatory Authority বাংলাদেশ পরমাণু ą¦¶ą¦•ą§ą¦¤ą¦æ ą¦Øą¦æą§Ÿą¦Øą§ą¦¤ą§ą¦°ą¦£ ą¦•ą¦°ą§ą¦¤ą§ƒą¦Ŗą¦•ą§ą¦·'),
(116591, 'https://ror.org/04jk2xb11', 'no_lang_code', 1, 'https://ror.org/04jk2xb11 Serum Institute of India (India)'),
(116592, 'https://ror.org/04jr1s763', 'en', 1, 'https://ror.org/04jr1s763 University of Florence UniversitƠ degli Studi di Firenze UniversitƤt Florenz UniversitƩ de Florence'),
(116593, 'https://ror.org/04jr43q89', 'pt', 1, 'https://ror.org/04jr43q89 Centro de Ecologia Aplicada Prof Baeta Neves'),
(116594, 'https://ror.org/04jsz6e67', 'en', 1, 'https://ror.org/04jsz6e67 Dutch Research Council Nederlandse Organisatie voor Wetenschappelijk Onderzoek'),
(116595, 'https://ror.org/04jtw9y77', 'fr', 1, 'https://ror.org/04jtw9y77 Centre d''Ʃtudes de l''emploi'),
(116596, 'https://ror.org/04jw21793', 'en', 1, 'https://ror.org/04jw21793 Bundesministerium für Ernährung und Landwirtschaft Federal Ministry of Food and Agriculture'),
(116597, '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)'),
(116598, 'https://ror.org/04k1xjf56', 'en', 1, 'https://ror.org/04k1xjf56 Clinic for Special Children'),
(116599, 'https://ror.org/04k20kq32', 'en', 1, 'https://ror.org/04k20kq32 University of Manara Ų¬Ų§Ł…Ų¹Ų© المنارة'),
(116600, 'https://ror.org/04k7exg05', 'en', 1, 'https://ror.org/04k7exg05 Mymensingh Engineering College'),
(116601, 'https://ror.org/04k9nv771', 'en', 1, 'https://ror.org/04k9nv771 Regional Centre on Capacity Development and Research in Water Harvesting'),
(116602, '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)'),
(116603, 'https://ror.org/04kfn4587', 'en', 1, 'https://ror.org/04kfn4587 Mount Sinai Health System'),
(116604, 'https://ror.org/04khwmr87', 'en', 1, 'https://ror.org/04khwmr87 Vienna Biocenter'),
(116605, 'https://ror.org/04kjehf08', 'fr', 1, 'https://ror.org/04kjehf08 Laboratoire d''Activation MolƩculaire'),
(116606, 'https://ror.org/04kjrtp25', 'pl', 1, 'https://ror.org/04kjrtp25 Central Forensic Laboratory of the Police Centralne Laboratorium Kryminalistyczne Policji'),
(116607, 'https://ror.org/04kmgtr65', 'en', 1, 'https://ror.org/04kmgtr65 Guru Nanak Institute of Management Studies'),
(116608, 'https://ror.org/04kpgmg94', 'en', 1, 'https://ror.org/04kpgmg94 Manipur International University'),
(116609, 'https://ror.org/04kq4yy23', 'en', 1, 'https://ror.org/04kq4yy23 Joint Institute for Nuclear Astrophysics'),
(116610, 'https://ror.org/04kxtb734', 'en', 1, 'https://ror.org/04kxtb734 Gates Ventures'),
(116611, 'https://ror.org/04m24yn62', 'en', 1, 'https://ror.org/04m24yn62 National Radio Astronomy Observatory'),
(116612, 'https://ror.org/04m5j1k67', 'en', 1, 'https://ror.org/04m5j1k67 Aalborg Universitet Aalborg University'),
(116613, 'https://ror.org/04m7cgp86', 'en', 1, 'https://ror.org/04m7cgp86 London Health Sciences Centre Research Institute'),
(116614, 'https://ror.org/04m8m1253', 'no_lang_code', 1, 'https://ror.org/04m8m1253 CSC - IT Center for Science (Finland)'),
(116615, 'https://ror.org/04magv453', 'es', 1, 'https://ror.org/04magv453 Centro de Estudios de Innovación Institucional'),
(116616, 'https://ror.org/04mgfat68', 'no_lang_code', 1, 'https://ror.org/04mgfat68 E&Q Engineering, E&Q Engineering Solutions & Innovation S.L. E&Q Engineering (Spain)'),
(116617, 'https://ror.org/04mhzgx49', 'en', 1, 'https://ror.org/04mhzgx49 Tel Aviv University Ų¬Ų§Ł…Ų¹Ų© ŲŖŁ„ أبيب'),
(116618, 'https://ror.org/04mj80311', 'ja', 1, 'https://ror.org/04mj80311 National Instruments (Japan)'),
(116619, 'https://ror.org/04mktej28', 'en', 1, 'https://ror.org/04mktej28 Dhaka Chamber of Commerce & Industry ঢাকা ą¦šą§‡ą¦®ą§ą¦¬ą¦¾ą¦° অব ą¦•ą¦®ą¦¾ą¦°ą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦‡ą¦Øą§ą¦”ą¦¾ą¦øą§ą¦Ÿą§ą¦°ą¦æ'),
(116620, 'https://ror.org/04mqc6b03', 'fr', 1, 'https://ror.org/04mqc6b03 MinistĆØre de l''Agriculture, des PĆŖcheries et de l''Alimentation'),
(116621, 'https://ror.org/04mrb6c22', 'en', 1, 'https://ror.org/04mrb6c22 Inova Health System'),
(116622, 'https://ror.org/04msnz457', 'fr', 1, 'https://ror.org/04msnz457 Laboratoire de l''Informatique du ParallƩlisme'),
(116623, 'https://ror.org/04mvswa78', 'es', 1, 'https://ror.org/04mvswa78 Universidad Metropolitana para la Educación y el Trabajo'),
(116624, 'https://ror.org/04mxdhb79', 'en', 1, 'https://ror.org/04mxdhb79 Phillip Island Nature Parks'),
(116625, 'https://ror.org/04n1jm588', 'en', 1, 'https://ror.org/04n1jm588 National Academy of Culture and Arts Management'),
(116626, 'https://ror.org/04n4q3s42', 'pt', 1, 'https://ror.org/04n4q3s42 Galeria ze dos Bois'),
(116627, 'https://ror.org/04n64pm61', 'en', 1, 'https://ror.org/04n64pm61 Bezos Earth Fund'),
(116628, 'https://ror.org/04n97g567', 'fr', 1, 'https://ror.org/04n97g567'),
(116629, 'https://ror.org/04n9van71', 'fr', 1, 'https://ror.org/04n9van71 Cultures et Environnements. PrĆ©histoire, AntiquitĆ©, Moyen Ƃge'),
(116630, 'https://ror.org/04nmpkv11', 'pt', 1, 'https://ror.org/04nmpkv11 Hospital da Luz Coimbra'),
(116631, 'https://ror.org/04nmsb180', 'no_lang_code', 1, 'https://ror.org/04nmsb180 Partnia (Portugal)'),
(116632, 'https://ror.org/04npze968', 'no_lang_code', 1, 'https://ror.org/04npze968 ConocoPhillips (Qatar)'),
(116633, 'https://ror.org/04nz36f20', 'fr', 1, 'https://ror.org/04nz36f20'),
(116634, 'https://ror.org/04p1n4n05', 'fr', 1, 'https://ror.org/04p1n4n05 MatƩriaux et santƩ'),
(116635, 'https://ror.org/04p491231', 'en', 1, 'https://ror.org/04p491231 Pennsylvania State University Universidad Estatal de Pensilvania UniversitĆ© d''Ɖtat de Pennsylvanie'),
(116636, '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'),
(116637, 'https://ror.org/04p9jqf87', 'en', 1, 'https://ror.org/04p9jqf87 New Horizon College of Engineering'),
(116638, 'https://ror.org/04pdpxj40', 'fr', 0, 'https://ror.org/04pdpxj40 Union Nationale Interprofessionnelle des plantes riches en ProtƩines'),
(116639, 'https://ror.org/04pe73709', 'es', 1, 'https://ror.org/04pe73709 Ministerio de Salud Ministry of Health'),
(116640, 'https://ror.org/04pq6be62', 'no_lang_code', 1, 'https://ror.org/04pq6be62 Azevedos Group, Grupo Azevedos (Portugal)'),
(116641, 'https://ror.org/04prmqc97', 'en', 1, 'https://ror.org/04prmqc97 KAT General Hospital of Attica Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Αττικής ĪšĪ‘Ī¤'),
(116642, 'https://ror.org/04pya0t36', 'fr', 1, 'https://ror.org/04pya0t36 Laboratoire d''Etudes Sociologiques sur la Construction et la Reproduction Sociales'),
(116643, 'https://ror.org/04pz7b180', 'de', 1, 'https://ror.org/04pz7b180 Bundesministerium für Forschung, Technologie und Raumfahrt Federal Ministry of Research, Technology and Space'),
(116644, 'https://ror.org/04pznsd21', 'en', 1, 'https://ror.org/04pznsd21 American University of Beirut UniversitĆ© amĆ©ricaine de beyrouth Ō²Õ„ÕµÖ€ÕøÖ‚Õ©Õ« Õ”Õ“Õ„Ö€Õ«ÕÆÕµÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶ الجامعة Ų§Ł„Ų£Ł…ŁŠŲ±ŁƒŁŠŲ© في بيروت'),
(116645, 'https://ror.org/04q12yn84', 'en', 1, 'https://ror.org/04q12yn84 OsloMet – Oslo Metropolitan University OsloMet – storbyuniversitetet'),
(116646, 'https://ror.org/04q2bzq33', 'fr', 1, 'https://ror.org/04q2bzq33 Physiologie et pathologie moléculaires des rétrovirus endogènes et infectieux'),
(116647, 'https://ror.org/04q65x027', 'da', 1, 'https://ror.org/04q65x027 Krankenhaus SĆønderjylland Sygehus SĆønderjylland University Hospital of Southern Denmark, Hospital Sonderjylland'),
(116648, 'https://ror.org/04qagr784', 'en', 1, 'https://ror.org/04qagr784 University of Agriculture and Environmental Sciences, Umuagwo'),
(116649, 'https://ror.org/04qatz820', 'es', 1, 'https://ror.org/04qatz820 Instituto de Investigación de Vivienda y HÔbitat'),
(116650, 'https://ror.org/04qb8nc58', 'en', 1, 'https://ror.org/04qb8nc58 Clausthal University of Technology Technische UniversitƤt Clausthal'),
(116651, 'https://ror.org/04qq88z54', 'en', 1, 'https://ror.org/04qq88z54 Deutsche Zentrum für Diabetesforschung German Center for Diabetes Research'),
(116652, 'https://ror.org/04qrtty26', 'en', 1, 'https://ror.org/04qrtty26 HemoNED - Dutch Hemophilia Registry'),
(116653, 'https://ror.org/04qzfn040', 'en', 1, 'https://ror.org/04qzfn040 University of KwaZulu-Natal'),
(116654, 'https://ror.org/04r08fn92', 'no_lang_code', 1, 'https://ror.org/04r08fn92 Global Health Platform (Portugal), Global Health Platform, S.A.'),
(116655, 'https://ror.org/04r0g9114', 'fr', 1, 'https://ror.org/04r0g9114 Laboratoire d''Informatique de l''URCA'),
(116656, 'https://ror.org/04r3v4q69', 'en', 1, 'https://ror.org/04r3v4q69 International House Coimbra - Olivais | Santa Clara'),
(116657, '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'),
(116658, 'https://ror.org/04rkgkn20', 'en', 1, 'https://ror.org/04rkgkn20 Ministry of Health'),
(116659, 'https://ror.org/04rvfc379', 'en', 1, 'https://ror.org/04rvfc379 Solar Data Analysis Center'),
(116660, 'https://ror.org/04rvw8791', 'fr', 1, 'https://ror.org/04rvw8791 Institut Ɖlie Cartan de Lorraine'),
(116661, 'https://ror.org/04rwqq797', 'en', 1, 'https://ror.org/04rwqq797 International Centre for Research of Physics, International Centre of Physics'),
(116662, 'https://ror.org/04s5mat29', 'en', 1, 'https://ror.org/04s5mat29 University of Victoria UniversitƩ de victoria'),
(116663, 'https://ror.org/04s60rj63', 'es', 1, 'https://ror.org/04s60rj63 South Colombian University Universidad Surcolombiana'),
(116664, 'https://ror.org/04s9rz084', 'pt', 1, 'https://ror.org/04s9rz084 Infraestrutura Nacional de Computação Distribuída / Centro Nacional de Computação Avançada.'),
(116665, 'https://ror.org/04sbg3r30', 'fr', 1, 'https://ror.org/04sbg3r30 NMS Berne'),
(116666, 'https://ror.org/04shhzf53', 'de', 1, 'https://ror.org/04shhzf53 PH NMS Bern, PƤdagogische Hochschulinstitut NMS University of Teacher Education NMS Bern'),
(116667, 'https://ror.org/04smp4393', 'es', 1, 'https://ror.org/04smp4393 Fundación Biosfera'),
(116668, 'https://ror.org/04ssfa057', 'pt', 1, 'https://ror.org/04ssfa057 Centro de Polƭmeros BiomƩdicos'),
(116669, 'https://ror.org/04t0chd16', 'no_lang_code', 1, 'https://ror.org/04t0chd16 Livraria Minho Ferreira e Salgado (Portugal), Minho Bookshop'),
(116670, 'https://ror.org/04t0gwh46', 'fr', 1, 'https://ror.org/04t0gwh46 Institute Curie'),
(116671, 'https://ror.org/04t0ycd05', 'en', 1, 'https://ror.org/04t0ycd05 Swisssem'),
(116672, 'https://ror.org/04t35mq24', 'fr', 1, 'https://ror.org/04t35mq24 Laboratoire de GƩnie des ProcƩdƩs et MatƩriaux'),
(116673, 'https://ror.org/04t4vzy93', 'pt', 1, 'https://ror.org/04t4vzy93 Inspeção-Geral da Educação e Ciência'),
(116674, 'https://ror.org/04tb23024', 'fr', 1, 'https://ror.org/04tb23024 Laboratoire MƩdiations'),
(116675, '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'),
(116676, 'https://ror.org/04tezbw68', 'no_lang_code', 1, 'https://ror.org/04tezbw68 Hub de Negócios de Impacto Português, Impact Hub Lisbon (Portugal)'),
(116677, 'https://ror.org/04tkj7h48', 'pt', 1, 'https://ror.org/04tkj7h48 Instituto do Cinema e do Audiovisual'),
(116678, 'https://ror.org/04tpvzp22', 'en', 1, 'https://ror.org/04tpvzp22 European Severe Storms Laboratory'),
(116679, 'https://ror.org/04ttwvv57', 'pt', 1, 'https://ror.org/04ttwvv57 Fundação Eugénio de Almeida'),
(116680, 'https://ror.org/04v0m1m23', 'id', 1, 'https://ror.org/04v0m1m23 Politeknik Kota Malang'),
(116681, 'https://ror.org/04v2jp439', 'pt', 1, 'https://ror.org/04v2jp439 Fundação Serra Henriques Serra Henriques Foundation'),
(116682, 'https://ror.org/04v3p2s41', 'en', 1, 'https://ror.org/04v3p2s41 Ethiopian Defence University'),
(116683, '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'),
(116684, 'https://ror.org/04vddbq17', 'en', 1, 'https://ror.org/04vddbq17 Ajay Kumar Garg Engineering College'),
(116685, 'https://ror.org/04vgsxx78', 'en', 1, 'https://ror.org/04vgsxx78 International Research and Training Centre on Urban Drainage'),
(116686, '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'),
(116687, 'https://ror.org/04vkd2013', 'en', 1, 'https://ror.org/04vkd2013 Teerthanker Mahaveer University ą¤¤ą„€ą¤°ą„ą¤„ą¤‚ą¤•ą¤° ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(116688, 'https://ror.org/04vkybr09', 'en', 1, 'https://ror.org/04vkybr09 Philippine Nurses Association of America, Philippine Nurses Association of America, Inc.'),
(116689, 'https://ror.org/04vn2za59', 'fr', 1, 'https://ror.org/04vn2za59 SantƩ de l''Homme'),
(116690, 'https://ror.org/04vnthv83', 'en', 1, 'https://ror.org/04vnthv83 B.V. Raju College'),
(116691, 'https://ror.org/04vrzee53', 'en', 1, 'https://ror.org/04vrzee53 United States Army Medical Command'),
(116692, 'https://ror.org/04vvd5f15', 'no_lang_code', 0, 'https://ror.org/04vvd5f15 Zimmer (Switzerland)'),
(116693, 'https://ror.org/04vyrqf62', 'en', 1, 'https://ror.org/04vyrqf62 National Institute for the Empowerment of Persons with Intellectual Disabilities ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤¬ą„Œą¤¦ą„ą¤§ą¤æą¤• ą¤¦ą¤æą¤µą„ą¤Æą¤¾ą¤‚ą¤—ą¤œą¤Ø ą¤øą¤¶ą¤•ą„ą¤¤ą¤æą¤•ą¤°ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(116694, 'https://ror.org/04w2bqf56', 'en', 1, 'https://ror.org/04w2bqf56 Asia-Pacific Centre for Ecohydrology'),
(116695, 'https://ror.org/04w46c814', 'en', 1, 'https://ror.org/04w46c814 United States Fleet Forces Command'),
(116696, 'https://ror.org/04w49cs59', 'en', 1, 'https://ror.org/04w49cs59 Dienst Wegverkeer Netherlands Vehicle Authority'),
(116697, 'https://ror.org/04w61vh47', 'fr', 1, 'https://ror.org/04w61vh47 Laboratoire Reproduction et DƩveloppement des Plantes'),
(116698, 'https://ror.org/04w7zn912', 'en', 1, 'https://ror.org/04w7zn912 Marcus Foundation'),
(116699, 'https://ror.org/04w8f2338', 'en', 1, 'https://ror.org/04w8f2338 Research Institute for Road and Street äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćæć”ē ”ē©¶ę‰€'),
(116700, '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'),
(116701, 'https://ror.org/04wbdez64', 'fr', 1, 'https://ror.org/04wbdez64 Laboratoire Alexander Grothendieck'),
(116702, 'https://ror.org/04wk25q62', 'en', 1, 'https://ror.org/04wk25q62 University of Constantine 3 UniversitĆ© de Constantine 3 Ų¬Ų§Ł…Ų¹Ų© Ł‚Ų³Ł†ŲøŁŠŁ†Ų© 3'),
(116703, 'https://ror.org/04wkdwp52', 'ca', 1, 'https://ror.org/04wkdwp52 Institut CatalĆ  de la Salut'),
(116704, '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'),
(116705, 'https://ror.org/04wyyg856', 'en', 1, 'https://ror.org/04wyyg856 British Geriatrics Society'),
(116706, 'https://ror.org/04x483560', 'pt', 1, 'https://ror.org/04x483560 Fundação Grünenthal'),
(116707, 'https://ror.org/04x5wnb75', 'en', 1, 'https://ror.org/04x5wnb75 Academic Center for Dentistry Amsterdam Academisch Centrum Tandheelkunde Amsterdam'),
(116708, 'https://ror.org/04x7ccp17', 'en', 1, 'https://ror.org/04x7ccp17 Babasaheb Bhimrao Ambedkar University ą¤¬ą¤¾ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤­ą„€ą¤®ą¤°ą¤¾ą¤µ ą¤…ą¤‚ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą®…ą®®ąÆą®ŖąÆ‡ą®¤ąÆą®•ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(116709, 'https://ror.org/04x8g4m03', 'pt', 1, 'https://ror.org/04x8g4m03 Centro Investigação Vasco da Gama'),
(116710, 'https://ror.org/04xbq1n92', 'en', 1, 'https://ror.org/04xbq1n92 Heliophysics Data and Modeling Consortium'),
(116711, 'https://ror.org/04xjkmz40', 'es', 1, 'https://ror.org/04xjkmz40 Universidad CuauhtƩmoc San Luis Potosƭ'),
(116712, 'https://ror.org/04xkdwy10', 'en', 1, 'https://ror.org/04xkdwy10 Instituto Superior Miguel Torga'),
(116713, 'https://ror.org/04xmteb38', 'fr', 1, 'https://ror.org/04xmteb38 Laboratoire Jacques-Louis Lions'),
(116714, 'https://ror.org/04xrm3t06', 'en', 1, 'https://ror.org/04xrm3t06 Institut Nacional d''Educació Física de Catalunya National Institute of Physical Education of Catalonia'),
(116715, 'https://ror.org/04xs15c78', 'en', 1, 'https://ror.org/04xs15c78 Karshi State Technical University'),
(116716, 'https://ror.org/04y76z183', 'en', 1, 'https://ror.org/04y76z183 Information Society Research Laboratory'),
(116717, 'https://ror.org/04y8cs423', 'fr', 1, 'https://ror.org/04y8cs423 Mines Paris, PSL University Ɖcole Nationale SupĆ©rieure des Mines de Paris'),
(116718, 'https://ror.org/04yeez720', 'no_lang_code', 1, 'https://ror.org/04yeez720 Grupo Urbanos (Portugal), Urbanos Group'),
(116719, 'https://ror.org/04yf4aj88', 'en', 1, 'https://ror.org/04yf4aj88 Universitas Nusa Cendana University of Nusa Cendana'),
(116720, 'https://ror.org/04yrdjv67', 'en', 1, 'https://ror.org/04yrdjv67 M.M. Gryshko National Botanical Garden of National Academy of Sciences of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ботанічний саГ імені М. М. Š“Ń€ŠøŃˆŠŗŠ° ŠŠŠ України'),
(116721, 'https://ror.org/04yrkc140', 'en', 1, 'https://ror.org/04yrkc140 University of Nebraska at Omaha UniversitƩ du nebraska Ơ omaha'),
(116722, 'https://ror.org/04yrqp957', 'fr', 1, 'https://ror.org/04yrqp957 University of Angers UniversitƩ d''Angers'),
(116723, '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'),
(116724, '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'),
(116725, 'https://ror.org/04z1ebj23', 'no', 1, 'https://ror.org/04z1ebj23 Finnmarkssykehuset'),
(116726, 'https://ror.org/04z6c2n17', 'en', 1, 'https://ror.org/04z6c2n17 University of Johannesburg'),
(116727, 'https://ror.org/04z8k9a98', 'en', 1, 'https://ror.org/04z8k9a98 Universidade de Coimbra University of Coimbra'),
(116728, 'https://ror.org/04zaypm56', 'en', 1, 'https://ror.org/04zaypm56 Conseil National de la Recherche Consiglio Nazionale delle Ricerche National Research Council'),
(116729, 'https://ror.org/04zc7p361', 'en', 1, 'https://ror.org/04zc7p361 University of Kassel UniversitƤt Kassel'),
(116730, 'https://ror.org/04zhhyn23', 'en', 1, 'https://ror.org/04zhhyn23 University Corporation for Atmospheric Research'),
(116731, 'https://ror.org/04zkdpw71', 'id', 1, 'https://ror.org/04zkdpw71 Raharja University Universitas Raharja'),
(116732, 'https://ror.org/04zkjzt52', 'ro', 1, 'https://ror.org/04zkjzt52 Institutul Clinic de Urologie și Transplant Renal Cluj'),
(116733, 'https://ror.org/04zmc0e16', 'en', 1, 'https://ror.org/04zmc0e16 Windesheim Windesheim University of Applied Sciences'),
(116734, 'https://ror.org/04zn69b90', 'no_lang_code', 1, 'https://ror.org/04zn69b90 Ludomedia (Portugal)'),
(116735, 'https://ror.org/04zn7j940', 'en', 1, 'https://ror.org/04zn7j940 Joint Special Operations University'),
(116736, 'https://ror.org/04zp24820', 'en', 1, 'https://ror.org/04zp24820 Chennai Mathematical Institute ą®šąÆ†ą®©ąÆą®©ąÆˆ ą®•ą®£ą®æą®¤ą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(116737, 'https://ror.org/0500awy95', 'hr', 1, 'https://ror.org/0500awy95 Evanđeosko teoloÅ”ko veleučiliÅ”te'),
(116738, 'https://ror.org/0500xsz18', 'en', 1, 'https://ror.org/0500xsz18 Centre of Excellence in Biodiversity and Natural Resources Management'),
(116739, 'https://ror.org/05078rg59', 'en', 1, 'https://ror.org/05078rg59 Institute of Mathematical Sciences ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤®ą„‡ą¤„ą„‡ą¤®ą„‡ą¤Ÿą¤æą¤•ą¤² ą¤øą¤¾ą¤‡ą¤‚ą¤øą„‡ą¤ø गणित ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø கணித ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(116740, 'https://ror.org/0507hag42', 'fr', 1, 'https://ror.org/0507hag42 Ecole Superieure en Informatique 08 May 1945 - Sidi Bel AbbĆØs Higher School of Computer Science 08 May 1945 - Sidi Bel Abbes المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للاعلام Ų§Ł„Ų§Ł„ŁŠ - سيدي بلعباس'),
(116741, 'https://ror.org/0508zfg64', 'pt', 1, 'https://ror.org/0508zfg64 Centro Hospitalar Conde de Ferreira'),
(116742, 'https://ror.org/050dkka69', 'cs', 1, 'https://ror.org/050dkka69 CESNET, zÔjmové sdružení prÔvnických osob'),
(116743, 'https://ror.org/050e1k935', 'it', 1, 'https://ror.org/050e1k935 Consorzio di Ricerca Gian Pietro Ballatore'),
(116744, 'https://ror.org/050ebfn24', 'en', 1, 'https://ror.org/050ebfn24 National Center for Educational Research and Development Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł‚ŁˆŁ…ŁŠ Ł„Ł„ŲØŲ­ŁˆŲ« Ų§Ł„ŲŖŲ±ŲØŁˆŁŠŲ© ŁˆŲ§Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(116745, 'https://ror.org/050jn9y42', 'fr', 1, 'https://ror.org/050jn9y42 Institut National des Sciences AppliquƩes de Lyon'),
(116746, 'https://ror.org/050m0b055', 'en', 1, 'https://ror.org/050m0b055 People''s Government of Guangdong Province'),
(116747, 'https://ror.org/050xe8986', 'en', 1, 'https://ror.org/050xe8986 Guimaras State University Kolehiyong Estatal ng Guimaras'),
(116748, 'https://ror.org/050zc9t80', 'en', 1, 'https://ror.org/050zc9t80 50Hertz Transmission GmbH, 50Hertz Transmission GmbH (Germany)'),
(116749, 'https://ror.org/0518hs626', 'id', 1, 'https://ror.org/0518hs626 Politeknik Bumi Akpelni'),
(116750, 'https://ror.org/051axzw70', 'en', 1, 'https://ror.org/051axzw70 Allergia- ja Astmaliitto Allergy and Asthma Federation'),
(116751, 'https://ror.org/051ce0b09', 'en', 1, 'https://ror.org/051ce0b09 Independent Electricity System Operator'),
(116752, 'https://ror.org/051djhv63', 'es', 1, 'https://ror.org/051djhv63 Instituto Superior Tecnológico Edupraxis'),
(116753, 'https://ror.org/051e7s436', 'en', 1, 'https://ror.org/051e7s436 ARC Centre of Excellence in Advanced Molecular Imaging'),
(116754, 'https://ror.org/051escj72', 'fr', 1, 'https://ror.org/051escj72 University of Montpellier UniversitƩ de Montpellier'),
(116755, 'https://ror.org/051fd9666', 'en', 1, 'https://ror.org/051fd9666 Case Western Reserve University'),
(116756, 'https://ror.org/051g75b06', 'en', 1, 'https://ror.org/051g75b06 Kharkiv State Academy of Design and Arts Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Гизайну і мистецтв'),
(116757, 'https://ror.org/051jbqs24', 'no_lang_code', 1, 'https://ror.org/051jbqs24 Relato LouvƔvel (Portugal)'),
(116758, 'https://ror.org/051kpcy16', 'fr', 1, 'https://ror.org/051kpcy16 University of Caen Normandy UniversitƩ de Caen Normandie'),
(116759, 'https://ror.org/05210hx76', 'no_lang_code', 1, 'https://ror.org/05210hx76 The Super Coder Code Academy (Portugal)'),
(116760, 'https://ror.org/0522sfr70', 'en', 1, 'https://ror.org/0522sfr70 ADJURIS – International Academic Publisher'),
(116761, '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'),
(116762, 'https://ror.org/0524qb764', 'en', 1, 'https://ror.org/0524qb764 Ministry of Labor å‹žå‹•éƒØ'),
(116763, 'https://ror.org/052ad0f33', 'es', 1, 'https://ror.org/052ad0f33 Centro de Estudios del Habitar Popular'),
(116764, 'https://ror.org/052aws486', 'en', 1, 'https://ror.org/052aws486 Center for Integrated and Multidisciplinary Water Resources Management'),
(116765, 'https://ror.org/052bk0b97', 'uz', 1, 'https://ror.org/052bk0b97 Oriental Universiteti Oriental University'),
(116766, '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'),
(116767, 'https://ror.org/052nj3835', 'en', 1, 'https://ror.org/052nj3835 School of Management Sciences, Varanasi'),
(116768, 'https://ror.org/052rhgg57', 'fr', 1, 'https://ror.org/052rhgg57 Institut Biomédical du Val de Bièvre'),
(116769, 'https://ror.org/052vhkx86', 'en', 1, 'https://ror.org/052vhkx86 University of Africa Toru-Orua'),
(116770, 'https://ror.org/0530svb92', 'fr', 1, 'https://ror.org/0530svb92 Centre de Recherche sur l’Entreprise, les Organisations et le Patrimoine'),
(116771, 'https://ror.org/05336nh10', 'en', 1, 'https://ror.org/05336nh10 Hospital Ana Nery'),
(116772, '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'),
(116773, 'https://ror.org/0537tge94', 'pt', 1, 'https://ror.org/0537tge94 Gabinete de História Económica e Social'),
(116774, 'https://ror.org/053dxh363', 'fr', 1, 'https://ror.org/053dxh363 University of UƩlƩ UniversitƩ de l''UƩlƩ'),
(116775, 'https://ror.org/053gdvc84', 'fr', 1, 'https://ror.org/053gdvc84 Institut de BiomƩcanique Humaine Georges Charpak'),
(116776, 'https://ror.org/053mqrf26', 'en', 1, 'https://ror.org/053mqrf26 Prince Sultan University Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± سلطان'),
(116777, 'https://ror.org/0540dcv15', 'pt', 1, 'https://ror.org/0540dcv15 Centro de Investigação em Psicologia'),
(116778, 'https://ror.org/0540ewb14', 'en', 1, 'https://ror.org/0540ewb14 Reuth TLV Rehabilitation Hospital רעות תל-אביב בית חולים שיקומי'),
(116779, 'https://ror.org/0541t3460', 'no_lang_code', 1, 'https://ror.org/0541t3460 BETAR Group, Grupo BETAR (Portugal)'),
(116780, 'https://ror.org/0541v8n46', 'it', 1, 'https://ror.org/0541v8n46 Museo di Archeologia e Scienze Naturali ''G. Zannato'''),
(116781, 'https://ror.org/054224v54', 'de', 1, 'https://ror.org/054224v54 BG Hospitals BG Kliniken, BG Kliniken – Klinikverbund der gesetzlichen Unfallversicherung gGmbH'),
(116782, 'https://ror.org/0545qzj69', 'en', 1, 'https://ror.org/0545qzj69 Centre for Nanomaterials and Biotechnology Centrum nanomateriÔlů a biotechnologií'),
(116783, 'https://ror.org/054abx977', 'pt', 0, 'https://ror.org/054abx977 Centro de Estudos de Antropologia Social'),
(116784, 'https://ror.org/054bfvp24', 'en', 1, 'https://ror.org/054bfvp24 Cooperative Institute for Climate, Ocean, & Ecosystem Studies'),
(116785, 'https://ror.org/054bkz707', 'en', 1, 'https://ror.org/054bkz707 Research Lab in Computer Science'),
(116786, 'https://ror.org/054d77k59', 'en', 1, 'https://ror.org/054d77k59 University of Agriculture Faisalabad جامعہ زرعیہ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(116787, 'https://ror.org/054edew91', 'en', 1, 'https://ror.org/054edew91 Defence Services Medical Research Centre'),
(116788, 'https://ror.org/054f5fc35', 'fr', 1, 'https://ror.org/054f5fc35 FƩdƩration Informatique de Lyon'),
(116789, 'https://ror.org/054kb3y86', 'en', 1, 'https://ror.org/054kb3y86 Jordan Center for Disease Control Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł…ŁƒŲ§ŁŲ­Ų© Ų§Ł„Ų§ŁˆŲØŲ¦Ų© ŁˆŲ§Ł„Ų§Ł…Ų±Ų§Ų¶ Ų§Ł„Ų³Ų§Ų±ŁŠŲ©'),
(116790, 'https://ror.org/054zcfj38', 'en', 1, 'https://ror.org/054zcfj38 International Centre for Water Hazard and Risk Management ę°“ē½å®³ćƒ»ćƒŖć‚¹ć‚Æćƒžćƒć‚øćƒ”ćƒ³ćƒˆå›½éš›ć‚»ćƒ³ć‚æ'),
(116791, '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'),
(116792, 'https://ror.org/055449294', 'fr', 1, 'https://ror.org/055449294 Laboratoire d’IngĆ©nierie des SystĆØmes Physiques et NumĆ©riques'),
(116793, 'https://ror.org/05591te55', 'de', 1, 'https://ror.org/05591te55 Ludwig-Maximilians-Universität München Ludwig-Maximilians-Universität in Munich'),
(116794, 'https://ror.org/055gmxq47', 'en', 1, 'https://ror.org/055gmxq47 Bio Suisse'),
(116795, 'https://ror.org/055hegm02', 'no_lang_code', 1, 'https://ror.org/055hegm02 Hydro Aluminium Extrusion Portugal (Portugal)'),
(116796, 'https://ror.org/055j2zg87', 'es', 1, 'https://ror.org/055j2zg87 Escuela Universitaria de Magisterio Fray Luis de León'),
(116797, 'https://ror.org/055knhw20', 'no_lang_code', 1, 'https://ror.org/055knhw20 Baixa''s Bookstore, Livraria da Baixa (Portugal)'),
(116798, 'https://ror.org/055mxh123', 'pt', 1, 'https://ror.org/055mxh123 Institut Français du Portugal Instituto Francês de Portugal'),
(116799, 'https://ror.org/055tcab57', 'no_lang_code', 0, 'https://ror.org/055tcab57 In-Uteis Design, In-Uteis Design (Portugal)'),
(116800, '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'),
(116801, 'https://ror.org/0561n6946', 'en', 1, 'https://ror.org/0561n6946 Romanian Academy'),
(116802, 'https://ror.org/0563ebm96', 'en', 0, 'https://ror.org/0563ebm96 United States Air Force Air Armament Center'),
(116803, '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'),
(116804, 'https://ror.org/056546b03', 'no_lang_code', 1, 'https://ror.org/056546b03 Gilead Sciences (United States)'),
(116805, 'https://ror.org/056d27308', 'en', 1, 'https://ror.org/056d27308 Manomet Conservation Sciences'),
(116806, '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)'),
(116807, 'https://ror.org/056gpyn03', 'en', 1, 'https://ror.org/056gpyn03 National Research Council Nepal ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤Ŗą¤°ą¤æą¤·ą¤¦ą„ ą¤Øą„‡ą¤Ŗą¤¾ą¤²'),
(116808, 'https://ror.org/056k09r13', 'no_lang_code', 1, 'https://ror.org/056k09r13 Stellantis Canada Stellantis Canada (Canada)'),
(116809, 'https://ror.org/056kkbk56', 'de', 1, 'https://ror.org/056kkbk56 Sigmund Freud Private University - Campus Ljubljana Sigmund Freud PrivatuniversitƤt - Standort Ljubljana'),
(116810, 'https://ror.org/056mff334', 'pt', 1, 'https://ror.org/056mff334 Centro de Investigação em Educação BÔsica'),
(116811, 'https://ror.org/056qw0m61', 'pt', 1, 'https://ror.org/056qw0m61 Instituto Nacional de Ciências e Tecnologias Analíticas Avançadas'),
(116812, 'https://ror.org/056t2ab10', 'en', 1, 'https://ror.org/056t2ab10 Wisconsin Lutheran Seminary'),
(116813, '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'),
(116814, 'https://ror.org/056v2rs36', 'pt', 1, 'https://ror.org/056v2rs36 Centro de Fisƭca e Engenharia de Materiais AvanƧados'),
(116815, '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');
INSERT INTO `rors` VALUES
(116816, 'https://ror.org/056xz7b30', 'pt', 1, 'https://ror.org/056xz7b30 Infraestrutura de Investigação para as Ciências Sociais, artes e humanidades ROSSIO'),
(116817, 'https://ror.org/0571r1m86', 'es', 1, 'https://ror.org/0571r1m86 Hospital Juan Domingo Perón, Tartagal'),
(116818, 'https://ror.org/0572x6v90', 'en', 1, 'https://ror.org/0572x6v90 Research Institute of Environment and Nature Conservation Technologies'),
(116819, 'https://ror.org/0573qkz50', 'en', 1, 'https://ror.org/0573qkz50 Federal College of Medical Laboratory Science and Technology'),
(116820, 'https://ror.org/05747a161', 'en', 1, 'https://ror.org/05747a161 Association for Research in Infant and Child Development'),
(116821, 'https://ror.org/0575ycz84', 'en', 1, 'https://ror.org/0575ycz84 Prince of Songkla University ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŖąø‡ąø‚ąø„ąø²ąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(116822, 'https://ror.org/05775sm20', 'pt', 1, 'https://ror.org/05775sm20 Fundação Casa da Música'),
(116823, 'https://ror.org/057qpr032', 'fr', 1, 'https://ror.org/057qpr032 Bordeleko Unibertsitatea University of Bordeaux UniversitƩ de Bordeaux'),
(116824, 'https://ror.org/057rhqk62', 'en', 1, 'https://ror.org/057rhqk62 Uppsala Monitoring Centre'),
(116825, 'https://ror.org/057sddq63', 'no_lang_code', 1, 'https://ror.org/057sddq63 Inovapotek Pharmaceutical Research and Development (Portugal)'),
(116826, 'https://ror.org/0581m7006', 'no_lang_code', 1, 'https://ror.org/0581m7006 Teravix Pharmaceutical Services, Teravix Servicos Farmaceuticos (Portugal)'),
(116827, 'https://ror.org/0583fqk10', 'fr', 1, 'https://ror.org/0583fqk10 UniversitƩ des Antilles PƓle Martinique'),
(116828, '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'),
(116829, 'https://ror.org/0585hkk81', 'fr', 1, 'https://ror.org/0585hkk81 Centre de Recherche et de Documentation sur les AmƩriques'),
(116830, 'https://ror.org/05862k391', 'id', 1, 'https://ror.org/05862k391 Muhammadiyah Bandung University UM Bandung, Universitas Muhammadiyah Bandung'),
(116831, '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'),
(116832, 'https://ror.org/058sk9j54', 'pt', 1, 'https://ror.org/058sk9j54 Incubadora de Empresas de Vouzela'),
(116833, 'https://ror.org/058y9e160', 'pt', 1, 'https://ror.org/058y9e160 Pólo da Madeira do Centro de Ciências do Mar e do Ambiente'),
(116834, 'https://ror.org/058yhnv51', 'en', 1, 'https://ror.org/058yhnv51 Central Asian Regional Glaciological Centre ŠžŃ€Ń‚Š°Š»Ń‹Ņ› ŠŠ·ŠøŃ Өңірлік Š³Š»ŃŃ†ŠøŠ¾Š»Š¾Š³ŠøŃŠ»Ń‹Ņ› ŠžŃ€Ń‚Š°Š»Ń‹Ņ“Ń‹'),
(116835, 'https://ror.org/0595f4b08', 'en', 1, 'https://ror.org/0595f4b08 U.S. Air Force Life Cycle Management Center'),
(116836, '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'),
(116837, 'https://ror.org/059btw256', 'en', 1, 'https://ror.org/059btw256 Chang Guang Satellite Technology Co., Ltd. é•æå…‰å«ę˜ŸęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(116838, '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'),
(116839, 'https://ror.org/059hjeb83', 'fr', 1, 'https://ror.org/059hjeb83 Institut supĆ©rieur de documentation المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„ŲŖŁˆŲ«ŁŠŁ‚'),
(116840, 'https://ror.org/059jx7q58', 'fr', 1, 'https://ror.org/059jx7q58 Fluid Dynamics Laboratory Laboratoire de Dynamique des Fluides'),
(116841, 'https://ror.org/059md9404', 'en', 1, 'https://ror.org/059md9404 Jiangsu Education Department ę±Ÿč‹ēœę•™č‚²åŽ…'),
(116842, 'https://ror.org/059vc0x72', 'en', 1, 'https://ror.org/059vc0x72 Holetta Agricultural Research Center į‹Øįˆ†įˆˆį‰³ įŒį‰„įˆ­įŠ“ įˆįˆ­įˆįˆ­ įˆ›į‹•įŠØįˆ'),
(116843, 'https://ror.org/059wd2y60', 'fr', 1, 'https://ror.org/059wd2y60 Laboratoires des Adaptations MƩtaboliques Ơ l''Exercice en conditions Physiologiques et Pathologiques'),
(116844, 'https://ror.org/059x9zv24', 'no_lang_code', 1, 'https://ror.org/059x9zv24 Letras e Livros Bookshop, Letras e Livros Livraria (Portugal)'),
(116845, 'https://ror.org/059ynac98', 'fr', 1, 'https://ror.org/059ynac98 Centre Atlantique de Philosophie'),
(116846, 'https://ror.org/05a0dhs15', 'fr', 1, 'https://ror.org/05a0dhs15 Ɖcole Normale SupĆ©rieure - PSL'),
(116847, 'https://ror.org/05a1qpv97', 'en', 1, 'https://ror.org/05a1qpv97 Bangladesh University of Engineering and Technology বাংলাদেশ ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(116848, 'https://ror.org/05a3vdg66', 'pt', 1, 'https://ror.org/05a3vdg66 Incubadora de Iniciativas Empresariais Inovadoras'),
(116849, 'https://ror.org/05aev7j66', 'en', 1, 'https://ror.org/05aev7j66 National Institute of Carpology (Gaertnerian Institution) ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карпологии (Гертнеровский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚)'),
(116850, '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'),
(116851, 'https://ror.org/05ayqqv15', 'en', 1, 'https://ror.org/05ayqqv15 Vivensa Foundation'),
(116852, 'https://ror.org/05az93f25', 'en', 1, 'https://ror.org/05az93f25 ArtEZ University of the Arts'),
(116853, 'https://ror.org/05b1rsv17', 'es', 1, 'https://ror.org/05b1rsv17 Catholic University of Murcia Universidad Católica de Murcia ē©†å°”č„æäŗšåœ£å®‰äøœå°¼å„„å¤©äø»ę•™å¤§å­¦'),
(116854, 'https://ror.org/05b793h63', 'fr', 1, 'https://ror.org/05b793h63 Histoire des technosciences en sociƩtƩ'),
(116855, 'https://ror.org/05bgatk16', 'fr', 1, 'https://ror.org/05bgatk16 Genetic Stability and Oncogenesis IntƩgritƩ du gƩnome et cancers'),
(116856, 'https://ror.org/05bnh6r87', 'en', 1, 'https://ror.org/05bnh6r87 Cornell University Universidad Cornell'),
(116857, 'https://ror.org/05bnrs208', 'en', 1, 'https://ror.org/05bnrs208 International Research and Publishing Academy, International Research and Publishing Academy (Pakistan)'),
(116858, 'https://ror.org/05bnw9805', 'no_lang_code', 1, 'https://ror.org/05bnw9805 Livraria Lopes da Silva (Portugal), Lopes da Silva Bookshop'),
(116859, 'https://ror.org/05bpb0y22', 'es', 1, 'https://ror.org/05bpb0y22 El Colegio de la Frontera Sur'),
(116860, 'https://ror.org/05bq01106', 'pt', 1, 'https://ror.org/05bq01106 Instituto Superior Técnico Instituto de Engenharia Mecânica'),
(116861, 'https://ror.org/05br64h13', 'en', 1, 'https://ror.org/05br64h13 SciPost'),
(116862, 'https://ror.org/05bxtha84', 'en', 1, 'https://ror.org/05bxtha84 Guangdong Provincial Health Commission å¹æäøœēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(116863, 'https://ror.org/05byvp690', 'en', 1, 'https://ror.org/05byvp690 The University of Texas Southwestern Medical Center'),
(116864, 'https://ror.org/05bz2z050', 'en', 1, 'https://ror.org/05bz2z050 Euro-Argo ERIC, Euro-Argo European Research Infrastructure Consortium'),
(116865, 'https://ror.org/05c0n7t28', 'fr', 1, 'https://ror.org/05c0n7t28 Laboratoire d''Analyse et de Prospective Economiques'),
(116866, 'https://ror.org/05c2qg481', 'fr', 1, 'https://ror.org/05c2qg481 Institut des Sciences et Technologies de Paris, ParisTech'),
(116867, 'https://ror.org/05c9p1x46', 'fr', 1, 'https://ror.org/05c9p1x46 BicĆŖtre Hospital, Hospice de la Vieillesse Hommes'),
(116868, 'https://ror.org/05cayv663', 'no_lang_code', 1, 'https://ror.org/05cayv663 Stone Circuit Boards, Stone Circuitos Impressos (Portugal)'),
(116869, 'https://ror.org/05cjqtz98', 'no_lang_code', 1, 'https://ror.org/05cjqtz98 Vasconcelos Xavier ServiƧos MƩdicos (Portugal)'),
(116870, 'https://ror.org/05ckg3w11', 'en', 1, 'https://ror.org/05ckg3w11 Education Department of Hunan Province'),
(116871, 'https://ror.org/05ckss308', 'fr', 1, 'https://ror.org/05ckss308 France UniversitƩs'),
(116872, 'https://ror.org/05ckt8b96', 'en', 1, 'https://ror.org/05ckt8b96 Ministry of Agriculture and Rural Affairs äø­åŽäŗŗę°‘å…±å’Œå›½å†œäøšå†œę‘éƒØ'),
(116873, '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'),
(116874, 'https://ror.org/05cq64r17', 'en', 1, 'https://ror.org/05cq64r17 University of Łódź Uniwersytet Łódzki'),
(116875, 'https://ror.org/05cr76371', 'it', 1, 'https://ror.org/05cr76371 Museo di Storia Naturale di Milano Natural History Museum of Milan'),
(116876, 'https://ror.org/05cs8k179', 'en', 1, 'https://ror.org/05cs8k179 Uniwersytet Przyrodniczy we Wrocławiu Wrocław University of Environmental and Life Sciences'),
(116877, 'https://ror.org/05cvfcr44', 'en', 1, 'https://ror.org/05cvfcr44 NSF National Center for Atmospheric Research'),
(116878, 'https://ror.org/05cyd8v32', 'en', 1, 'https://ror.org/05cyd8v32 University of Burdwan ą¦¬ą¦°ą§ą¦§ą¦®ą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(116879, 'https://ror.org/05d1e6v30', 'fr', 1, 'https://ror.org/05d1e6v30 Institut des BiomolƩcules Max Mousseron'),
(116880, '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'),
(116881, 'https://ror.org/05d755m86', 'en', 0, 'https://ror.org/05d755m86 Brightwood College'),
(116882, 'https://ror.org/05d8e6004', 'es', 1, 'https://ror.org/05d8e6004 Fundación Escuela Tecnológica de Neiva'),
(116883, 'https://ror.org/05dbapj97', 'no_lang_code', 1, 'https://ror.org/05dbapj97 Schaeffler (Germany)'),
(116884, 'https://ror.org/05detrt70', 'en', 1, 'https://ror.org/05detrt70 NSF NCAR Research Applications Laboratory'),
(116885, 'https://ror.org/05dxps055', 'en', 1, 'https://ror.org/05dxps055 California Institute of Technology Instituto de TecnologĆ­a de California'),
(116886, 'https://ror.org/05dz0mr61', 'en', 1, 'https://ror.org/05dz0mr61 Shenzhen Pregene Biopharma Co., Ltd., Shenzhen Pregene Biopharma Co., Ltd. (China) ę·±åœ³ę™®ē‘žé‡‘ē”Ÿē‰©čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(116887, 'https://ror.org/05e4xkm09', 'en', 1, 'https://ror.org/05e4xkm09 Czech National Corpus Český nÔrodní korpus'),
(116888, 'https://ror.org/05e6z8230', 'en', 1, 'https://ror.org/05e6z8230 BioMark Sensor Research'),
(116889, 'https://ror.org/05ebxsr90', 'fr', 1, 'https://ror.org/05ebxsr90 Chimie Physique et Chimie du Vivant'),
(116890, 'https://ror.org/05ect4e57', 'en', 1, 'https://ror.org/05ect4e57 Louisiana State University Universidad Estatal de Luisiana UniversitĆ© d''Ɖtat de Louisiane'),
(116891, 'https://ror.org/05ehbhp30', 'pt', 1, 'https://ror.org/05ehbhp30 Coordenação Interdisciplinar para a Investigação e Inovação'),
(116892, 'https://ror.org/05emsba88', 'en', 1, 'https://ror.org/05emsba88 Association of European Research Libraries Ligue des Bibliothèques Européennes de Recherche'),
(116893, 'https://ror.org/05eyd5d35', 'fr', 1, 'https://ror.org/05eyd5d35 Centre Inria de Paris Inria Paris Centre'),
(116894, 'https://ror.org/05eze5936', 'en', 0, 'https://ror.org/05eze5936 Andijan Machine-building Institute Andijon Mashinasozlik instituti АнГижанский ŠœŠ°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(116895, 'https://ror.org/05f05cy37', 'en', 1, 'https://ror.org/05f05cy37 National University of Avellaneda Universidad Nacional de Avellaneda'),
(116896, 'https://ror.org/05f6x5242', 'de', 1, 'https://ror.org/05f6x5242 Schweizerischer Forstverein Società forestale svizzera Société forestière suisse Swiss Forestry Society'),
(116897, 'https://ror.org/05fj1je62', 'en', 1, 'https://ror.org/05fj1je62 CADT - Cambodia Academy of Digital Technology, Cambodia Academy of Digital Technology (CADT)'),
(116898, 'https://ror.org/05fkq5j19', 'pt', 1, 'https://ror.org/05fkq5j19 Centro de Investigação em Ciência Psicológica Research Center for Psychological Science'),
(116899, 'https://ror.org/05frret15', 'pt', 1, 'https://ror.org/05frret15 Centro de Estudos de Fenómenos de Transporte Transport Phenomena Research Center'),
(116900, 'https://ror.org/05fs6jp91', 'en', 1, 'https://ror.org/05fs6jp91 Universidad de Nuevo MƩxico University of New Mexico UniversitƩ du Nouveau-Mexique'),
(116901, 'https://ror.org/05fswdm20', 'no_lang_code', 1, 'https://ror.org/05fswdm20 Galderma (Switzerland)'),
(116902, 'https://ror.org/05fw72335', 'fr', 1, 'https://ror.org/05fw72335 GIS-Institut pour la Recherche en SantƩ Publique'),
(116903, 'https://ror.org/05fyr1y23', 'en', 1, 'https://ror.org/05fyr1y23 Lyceum of the Philippines University Laguna'),
(116904, 'https://ror.org/05g46av80', 'en', 1, 'https://ror.org/05g46av80 BRB Hospitals LTD বিআরবি হসপিটালস ą¦²ą¦æą¦®ą¦æą¦Ÿą§‡ą¦”'),
(116905, 'https://ror.org/05g772c20', 'pt', 1, 'https://ror.org/05g772c20 Biblioteca Geral da Universidade de Coimbra'),
(116906, 'https://ror.org/05gb5xf93', 'en', 1, 'https://ror.org/05gb5xf93 Asia International University Osiyo xalqaro universiteti Азиатский ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет'),
(116907, 'https://ror.org/05gmfdj98', 'no', 0, 'https://ror.org/05gmfdj98 NĆøtterĆøy Kommune'),
(116908, 'https://ror.org/05grdyy37', 'en', 1, 'https://ror.org/05grdyy37 Amsterdam Universitair Medische Centra Amsterdam University Medical Centers'),
(116909, 'https://ror.org/05h1pdj54', 'en', 1, 'https://ror.org/05h1pdj54 National Academy of Educational Sciences of Ukraine ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń пеГагогічних наук України'),
(116910, 'https://ror.org/05h1v3r89', 'en', 1, 'https://ror.org/05h1v3r89 Ministère de la Santé Ontario Ministry of Health'),
(116911, 'https://ror.org/05h9f1789', 'pt', 1, 'https://ror.org/05h9f1789 Rede CUF'),
(116912, '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)'),
(116913, 'https://ror.org/05hdb5q36', 'en', 1, 'https://ror.org/05hdb5q36 International House Torres Vedras | Lisbon'),
(116914, 'https://ror.org/05hpgga53', 'hu', 1, 'https://ror.org/05hpgga53 Flór Ferenc Hospital Kistarcsai Flór Ferenc KórhÔz'),
(116915, 'https://ror.org/05hs6h993', 'en', 1, 'https://ror.org/05hs6h993 Michigan State University UniversitĆ© d''Ɖtat du michigan'),
(116916, 'https://ror.org/05htk5m33', 'en', 1, 'https://ror.org/05htk5m33 Hunan University ę¹–å—å¤§å­¦'),
(116917, 'https://ror.org/05hv3c612', 'fr', 1, 'https://ror.org/05hv3c612 Genomics, Bioinformatics, and Molecular Chemistry GƩnomique, bioinformatique et chimie molƩculaire'),
(116918, 'https://ror.org/05j00sr48', 'en', 1, 'https://ror.org/05j00sr48 Council for Scientific and Industrial Research Wetenskaplike en Nywerheidnavorsingsraad'),
(116919, 'https://ror.org/05j5mt352', 'no_lang_code', 1, 'https://ror.org/05j5mt352 IQVIA (Portugal)'),
(116920, 'https://ror.org/05j7zcm59', 'pt', 1, 'https://ror.org/05j7zcm59 Bibliotecas do Instituto PolitƩcnico de Castelo Branco'),
(116921, 'https://ror.org/05j8mvd88', 'pt', 1, 'https://ror.org/05j8mvd88 Laboratório Colaborativo para o Trabalho, Emprego e Proteção Social'),
(116922, 'https://ror.org/05jekdj60', 'fr', 1, 'https://ror.org/05jekdj60 Centre d''Imagerie Multimodale'),
(116923, 'https://ror.org/05jnf3k06', 'en', 1, 'https://ror.org/05jnf3k06 National Supercomputing Center In Zhengzhou å›½å®¶č¶…ēŗ§č®”ē®—éƒ‘å·žäø­åæƒ'),
(116924, 'https://ror.org/05jp74k96', 'en', 1, 'https://ror.org/05jp74k96 NHO Kinki Chuo Chest Medical Center NHOčæ‘ē•æäø­å¤®å‘¼åøå™Øć‚»ćƒ³ć‚æćƒ¼, å›½ē«‹ē—…é™¢ę©Ÿę§‹čæ‘ē•æäø­å¤®čƒøéƒØē–¾ę‚£ć‚»ćƒ³ć‚æćƒ¼'),
(116925, 'https://ror.org/05jra0838', 'en', 1, 'https://ror.org/05jra0838 T.K. Zhurgenov Kazakh National Academy of Arts ŠšŠ°Š·Š°Ń…ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š² имени Темирбека Жүргенова Š¢.Қ. Жүргенов атынГағы ŅšŠ°Š·Š°Ņ› ұлттық өнер Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(116926, 'https://ror.org/05jw2mx52', 'de', 1, 'https://ror.org/05jw2mx52 BG Klinikum Hamburg'),
(116927, 'https://ror.org/05jw9dg17', 'fr', 1, 'https://ror.org/05jw9dg17 Inter RhƓne, Inter-RhƓne'),
(116928, 'https://ror.org/05jwcsm16', 'en', 1, 'https://ror.org/05jwcsm16 Air University'),
(116929, 'https://ror.org/05k4c0m35', 'en', 1, 'https://ror.org/05k4c0m35 Observatory Sciences Ltd., Observatory Sciences Ltd. (United Kingdom)'),
(116930, 'https://ror.org/05k9ds907', 'fr', 1, 'https://ror.org/05k9ds907 Institut SupƩrieur d''Informatique et des Technologies de Communication de Hammam Sousse'),
(116931, 'https://ror.org/05kaje043', 'pt', 1, 'https://ror.org/05kaje043 Business Research Unit Unidade de Investigação em Desenvolvimento Empresarial'),
(116932, 'https://ror.org/05kdbps11', 'pt', 1, 'https://ror.org/05kdbps11 Centro de Geologia'),
(116933, 'https://ror.org/05kh85b59', 'id', 1, 'https://ror.org/05kh85b59 Insitut Kesehatan Immanuel'),
(116934, 'https://ror.org/05km0fn42', 'no_lang_code', 1, 'https://ror.org/05km0fn42 HM Consultants Centre for Business Studies, HM Consultores (Portugal)'),
(116935, 'https://ror.org/05kt9ap64', 'en', 1, 'https://ror.org/05kt9ap64 Kindai University 近畿大学'),
(116936, 'https://ror.org/05kvtff09', 'en', 1, 'https://ror.org/05kvtff09 National Supercomputing Changsha Center å›½å®¶č¶…ēŗ§č®”ē®—é•æę²™äø­åæƒ'),
(116937, 'https://ror.org/05ky1y595', 'no_lang_code', 1, 'https://ror.org/05ky1y595 Nanopower (Portugal)'),
(116938, 'https://ror.org/05kyx6f64', 'en', 1, 'https://ror.org/05kyx6f64 U.S. Army Combined Arms Support Command'),
(116939, 'https://ror.org/05m107x33', 'no_lang_code', 1, 'https://ror.org/05m107x33 Qu & Co. (Netherlands)'),
(116940, 'https://ror.org/05m3r1b84', 'fr', 1, 'https://ror.org/05m3r1b84 Institut de MathƩmatiques de Bordeaux'),
(116941, 'https://ror.org/05mdg8117', 'fr', 1, 'https://ror.org/05mdg8117 Laboratoire interdisciplinaire de recherches en sciences de l''action'),
(116942, 'https://ror.org/05mecez53', 'en', 1, 'https://ror.org/05mecez53 Kazakhstan Institute for Strategic Studies under the President of the Republic of Kazakhstan ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Ń– жанынГағы ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½Š½Ń‹Ņ£ ŃŃ‚Ń€Š°Ń‚ŠµŠ³ŠøŃŠ»Ń‹Ņ› Š·ŠµŃ€Ń‚Ń‚ŠµŃƒŠ»ŠµŃ€ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(116943, 'https://ror.org/05mpe3728', 'en', 1, 'https://ror.org/05mpe3728 International Society of City and Regional Planners'),
(116944, 'https://ror.org/05n21n105', 'fr', 1, 'https://ror.org/05n21n105 UnitƩ de MathƩmatiques Pures et AppliquƩes'),
(116945, 'https://ror.org/05n7yzd13', 'fr', 1, 'https://ror.org/05n7yzd13 HƓpital Paul-Brousse'),
(116946, 'https://ror.org/05nbtzd04', 'it', 1, 'https://ror.org/05nbtzd04 Fondazione Lombardia per l’Ambiente'),
(116947, 'https://ror.org/05nebqd66', 'pt', 1, 'https://ror.org/05nebqd66 Centro Interdisciplinar de História Culturas e Sociedades'),
(116948, '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'),
(116949, 'https://ror.org/05nn56080', 'pt', 1, 'https://ror.org/05nn56080 Grupo de Reação e AnÔlises Químicas'),
(116950, 'https://ror.org/05nw5qw03', 'pt', 1, 'https://ror.org/05nw5qw03 Hospital LusĆ­adas Porto'),
(116951, 'https://ror.org/05nwrf687', 'en', 1, 'https://ror.org/05nwrf687 D. G. Khan Medical College'),
(116952, 'https://ror.org/05nxds205', 'es', 1, 'https://ror.org/05nxds205 Fundación Pablo CasarÔ'),
(116953, 'https://ror.org/05p2t3578', 'en', 1, 'https://ror.org/05p2t3578 University of Engineering & Management, Jaipur'),
(116954, 'https://ror.org/05p53ep46', 'fr', 1, 'https://ror.org/05p53ep46 Analyse IntƩgrƩe Multimodale en SantƩ'),
(116955, 'https://ror.org/05p5z9518', 'no_lang_code', 1, 'https://ror.org/05p5z9518 Dentsply Sirona (Sweden)'),
(116956, 'https://ror.org/05p80rh40', 'fr', 1, 'https://ror.org/05p80rh40 MusƩe d''Anthropologie prƩhistorique de Monaco'),
(116957, 'https://ror.org/05pmsvm27', 'en', 1, 'https://ror.org/05pmsvm27 ZHAW Zurich University of Applied Sciences ZHAW Zürcher Hochschule für Angewandte Wissenschaften'),
(116958, 'https://ror.org/05pr37258', 'en', 1, 'https://ror.org/05pr37258 Health Sciences Centre'),
(116959, 'https://ror.org/05pv4tx93', 'pt', 1, 'https://ror.org/05pv4tx93 Instituto Superior de SaĆŗde do Alto Ave'),
(116960, 'https://ror.org/05pv75449', 'fr', 1, 'https://ror.org/05pv75449 Psychiatrie-ComorbiditƩs-Addictions'),
(116961, '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'),
(116962, 'https://ror.org/05pwqr258', 'fr', 1, 'https://ror.org/05pwqr258'),
(116963, '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'),
(116964, 'https://ror.org/05q3vnk25', 'fr', 1, 'https://ror.org/05q3vnk25 Institut de Recherche pour le DƩveloppement Institute of Research for Development'),
(116965, 'https://ror.org/05q785t81', 'en', 1, 'https://ror.org/05q785t81 Eesti Geoloogiateenistus Geological Survey of Estonia'),
(116966, 'https://ror.org/05qaamg61', 'en', 1, 'https://ror.org/05qaamg61 Iraqi Association for Medical Research and Studies'),
(116967, 'https://ror.org/05qrz8r95', 'en', 1, 'https://ror.org/05qrz8r95 Alice & Bob, Alice & Bob (France)'),
(116968, 'https://ror.org/05qvvsf76', 'en', 1, 'https://ror.org/05qvvsf76 International Centre for Capacity Development, Sustainability and Societal Change ƞekkingarmiưstƶư þróunarsamvinnu'),
(116969, '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'),
(116970, 'https://ror.org/05r1jm831', 'en', 1, 'https://ror.org/05r1jm831 Federal Ministry of Agriculture and Rural Development'),
(116971, 'https://ror.org/05rb43d91', 'en', 1, 'https://ror.org/05rb43d91 Laser & Health Academy'),
(116972, 'https://ror.org/05rnn8t74', 'en', 1, 'https://ror.org/05rnn8t74 Osaka University Hospital å¤§é˜Ŗå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(116973, 'https://ror.org/05rpr6785', 'en', 1, 'https://ror.org/05rpr6785 Landstuhl Regional Medical Center'),
(116974, 'https://ror.org/05rpv7f61', 'es', 1, 'https://ror.org/05rpv7f61 Ministerio del Ambiente, Agua y Transición Ecológica'),
(116975, 'https://ror.org/05rtg8f23', 'en', 1, 'https://ror.org/05rtg8f23 Arxeologiya və Antropologiya İnstitutu Institute of Archaeology and Anthropology'),
(116976, 'https://ror.org/05s6mpv98', 'en', 1, 'https://ror.org/05s6mpv98 State Key Laboratory of Urban Water Resources and Water Environment åŸŽåø‚ę°“čµ„ęŗäøŽę°“ēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116977, 'https://ror.org/05safxn82', 'pt', 1, 'https://ror.org/05safxn82 Centro de Estudos de Ciencia Animal'),
(116978, 'https://ror.org/05sn8wf81', 'es', 1, 'https://ror.org/05sn8wf81 National University of Cuyo'),
(116979, 'https://ror.org/05sqf9v67', 'no_lang_code', 1, 'https://ror.org/05sqf9v67 Safran (France)'),
(116980, 'https://ror.org/05swbnm48', 'en', 1, 'https://ror.org/05swbnm48 Association for Molecular Pathology'),
(116981, 'https://ror.org/05sxmgf12', 'en', 0, 'https://ror.org/05sxmgf12 Brightwood College'),
(116982, 'https://ror.org/05t0w3074', 'en', 1, 'https://ror.org/05t0w3074 Government of the Republic of China äø­čÆę°‘åœ‹ę”æåŗœ'),
(116983, 'https://ror.org/05t4nb462', 'en', 1, 'https://ror.org/05t4nb462 Guangzhou Science, Technology and Innovation Commission å¹æå·žåø‚ē§‘ęŠ€åˆ›ę–°å§”å‘˜ä¼š'),
(116984, 'https://ror.org/05t56sj93', 'en', 1, 'https://ror.org/05t56sj93 Federal University Gashua'),
(116985, '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'),
(116986, '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'),
(116987, 'https://ror.org/05tngq747', 'es', 1, 'https://ror.org/05tngq747 CIATEQ'),
(116988, 'https://ror.org/05tpdng73', 'fr', 1, 'https://ror.org/05tpdng73 UniversitƩ des Antilles PƓle Guadeloupe'),
(116989, 'https://ror.org/05ts7ya70', 'en', 0, 'https://ror.org/05ts7ya70 Kazan State Energy University'),
(116990, 'https://ror.org/05tt55065', 'en', 1, 'https://ror.org/05tt55065 Departement Mobiliteit en Openbare Werken Department Mobility and Public Works'),
(116991, 'https://ror.org/05tyne317', 'en', 1, 'https://ror.org/05tyne317 Ministry of Science and Higher Education of the Republic of Kazakhstan ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ науки Šø Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Республики ŠšŠ°Š·Š°Ń…стан ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ғылым және жоғары білім министрлігі'),
(116992, 'https://ror.org/05tyrdn58', 'de', 1, 'https://ror.org/05tyrdn58 res publica Wissenschaftsverlag, res publica Wissenschaftsverlag (Germany)'),
(116993, '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 وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(116994, 'https://ror.org/05v3ej173', 'fr', 1, 'https://ror.org/05v3ej173 Education et DiversitƩs en espaces Francophones'),
(116995, 'https://ror.org/05v4f3f05', 'en', 1, 'https://ror.org/05v4f3f05 International House'),
(116996, 'https://ror.org/05v727m31', 'fr', 1, 'https://ror.org/05v727m31 CommunautƩ UniversitƩ Grenoble Alpes Community University Grenoble Alps'),
(116997, 'https://ror.org/05v8z6a72', 'bm', 1, 'https://ror.org/05v8z6a72 Kementerian Pendidikan Malaysia Ministry of Education Malaysia'),
(116998, 'https://ror.org/05vd6h165', 'fr', 0, 'https://ror.org/05vd6h165 Laboratoire des BiomolƩcules'),
(116999, 'https://ror.org/05vgk4s73', 'en', 1, 'https://ror.org/05vgk4s73 Walter AG, Walter AG (Germany)'),
(117000, 'https://ror.org/05vjwz959', 'fr', 1, 'https://ror.org/05vjwz959 Centre de Recherche Interdisciplinaire en Histoire, Histoire de l’art et Musicologie'),
(117001, 'https://ror.org/05vnksv67', 'en', 1, 'https://ror.org/05vnksv67 Instituto PolitƩcnico de Portalegre Polytechnic Institute of Portalegre'),
(117002, 'https://ror.org/05vrs3189', 'fr', 1, 'https://ror.org/05vrs3189 Centre de Recherche en Informatique, Signal et Automatique de Lille'),
(117003, 'https://ror.org/05vt9qd57', 'en', 1, 'https://ror.org/05vt9qd57 Rutgers, The State University of New Jersey'),
(117004, 'https://ror.org/05vwg1891', 'no_lang_code', 1, 'https://ror.org/05vwg1891 SHI Accelerator Service Ltd. SHI Accelerator Service Ltd. (Japan) ä½é‡åŠ é€Ÿå™Øć‚µćƒ¼ćƒ“ć‚¹ę Ŗå¼ä¼šē¤¾'),
(117005, 'https://ror.org/05w4grc49', 'en', 1, 'https://ror.org/05w4grc49 HyLab Green Hydrogen Collaborative Laboratory'),
(117006, 'https://ror.org/05w6fhk97', 'en', 1, 'https://ror.org/05w6fhk97 CBS International Business School'),
(117007, 'https://ror.org/05w7zwn86', 'en', 1, 'https://ror.org/05w7zwn86 Amaltas University'),
(117008, 'https://ror.org/05wa62164', 'en', 1, 'https://ror.org/05wa62164 Catholic University of Ávila Universidad Católica de Ávila'),
(117009, 'https://ror.org/05wgann87', 'de', 1, 'https://ror.org/05wgann87 Deutsches Stiftungszentrum'),
(117010, 'https://ror.org/05whw7f42', 'es', 1, 'https://ror.org/05whw7f42 Universitario Tecnológico Universitam'),
(117011, 'https://ror.org/05wmdej13', 'pt', 1, 'https://ror.org/05wmdej13 Centro de Negócios e Inovação de Rio Maior'),
(117012, 'https://ror.org/05wv2vq37', 'en', 1, 'https://ror.org/05wv2vq37 University of Dhaka ঢাকা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(117013, 'https://ror.org/05wy89733', 'fr', 1, 'https://ror.org/05wy89733 UniLaSalle'),
(117014, 'https://ror.org/05wzskb47', 'en', 1, 'https://ror.org/05wzskb47 Centre commun de recherche Centro Comune di Ricerca Gemeinsame Forschungsstelle Joint Research Centre'),
(117015, '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'),
(117016, 'https://ror.org/05x7vmp26', 'en', 1, 'https://ror.org/05x7vmp26 Iris Energy LLC, Iris Energy LLC (United States)'),
(117017, 'https://ror.org/05x8ajk28', 'en', 1, 'https://ror.org/05x8ajk28 United States Army Command and General Staff College'),
(117018, '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ехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠžŃŃ‚Ń€Š°Š²Š°'),
(117019, 'https://ror.org/05xc0qp17', 'en', 1, 'https://ror.org/05xc0qp17 NSF NCAR Computational & Information Systems Laboratory'),
(117020, 'https://ror.org/05xcj1e13', 'id', 1, 'https://ror.org/05xcj1e13 Yayasan Penelitian Dan Pengembangan Obstetri Indonesia'),
(117021, 'https://ror.org/05xe12881', 'fr', 1, 'https://ror.org/05xe12881 ModƩlisation mathƩmatique et numƩrique'),
(117022, 'https://ror.org/05xg72x27', 'en', 1, 'https://ror.org/05xg72x27 Norges Teknisk-Naturvitenskapelige Universitet Norjan teknis-luonnontieteellinen yliopisto Norwegian University of Science and Technology'),
(117023, 'https://ror.org/05xkn9s74', 'en', 0, 'https://ror.org/05xkn9s74 Incorporated Research Institutions For Seismology'),
(117024, 'https://ror.org/05xmg2z40', 'en', 1, 'https://ror.org/05xmg2z40 V.M. Glushkov Institute of Cybernetics Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кібернетики імені Š’.М. Š“Š»ŃƒŃˆŠŗŠ¾Š²Š° ŠŠŠ України'),
(117025, 'https://ror.org/05xmt4746', 'en', 0, 'https://ror.org/05xmt4746 Hainan 301 Hospital č§£ę”¾å†›ę€»åŒ»é™¢ęµ·å—åŒ»é™¢'),
(117026, 'https://ror.org/05xpskt80', 'en', 1, 'https://ror.org/05xpskt80 American Transportation Research Institute'),
(117027, 'https://ror.org/05xsb5925', 'en', 1, 'https://ror.org/05xsb5925 United States Army Combined Arms Center'),
(117028, 'https://ror.org/05xvwhv53', 'en', 1, 'https://ror.org/05xvwhv53 Osaka International Cancer Institute å¤§é˜Ŗå›½éš›ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(117029, 'https://ror.org/05xxfer42', 'pt', 1, 'https://ror.org/05xxfer42 Lusophone University of Humanities and Technologies Universidade Lusófona'),
(117030, 'https://ror.org/05xxrw222', 'no_lang_code', 1, 'https://ror.org/05xxrw222 Hidrosoph (Portugal)'),
(117031, 'https://ror.org/05y6rqs46', 'fr', 1, 'https://ror.org/05y6rqs46 DƩpartement d''Informatique'),
(117032, 'https://ror.org/05y8yz623', 'en', 1, 'https://ror.org/05y8yz623 Bayworld Centre for Research and Education'),
(117033, 'https://ror.org/05yeh3g67', 'en', 1, 'https://ror.org/05yeh3g67 University of Calicut UniversitĆ© de calicut ą®•ąÆ‹ą®“ą®æą®•ąÆą®•ąÆ‹ą®ŸąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ ą“•ą“¾ą“²ą“æą“•ąµą“•ą“±ąµą“±ąµ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(117034, 'https://ror.org/05yfdxt86', 'en', 1, 'https://ror.org/05yfdxt86 Korean Society of Cardiology'),
(117035, 'https://ror.org/05yj3y977', 'en', 1, 'https://ror.org/05yj3y977 Science and Technology Department of Zhejiang Province ęµ™ę±Ÿēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(117036, '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'),
(117037, 'https://ror.org/05ynkz779', 'pt', 0, 'https://ror.org/05ynkz779 Instituto Superior de Estudos Interculturais e Transdisciplinares de Mirandela');

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

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

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

INSERT INTO `ror_settings` VALUES
(1, 1, 'en', 'name', 'National University of RĆ­o Cuarto'),
(2, 1, 'es', 'name', 'Universidad Nacional de RĆ­o Cuarto'),
(3, 2, 'no_lang_code', 'name', 'Bundelkhand University'),
(4, 3, 'en', 'name', 'Hokuyukai Neurology Hospital'),
(5, 3, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåŒ—ē„ä¼š åŒ—ē„ä¼šē„žēµŒå†…ē§‘ē—…é™¢'),
(6, 4, 'en', 'name', 'First Affiliated Hospital of Xiamen University'),
(7, 4, 'zh', 'name', 'åŽ¦é—Øå¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(8, 5, 'en', 'name', 'Liverpool Heart and Chest Hospital'),
(9, 6, 'en', 'name', 'Piedmont Atlanta Hospital'),
(10, 7, 'en', 'name', 'Autonomous University of San Luis PotosĆ­'),
(11, 7, 'es', 'name', 'Universidad Autónoma de San Luis Potosí'),
(12, 8, 'en', 'name', 'Centre for European Policy Studies'),
(13, 9, 'no_lang_code', 'name', 'Biomarker Technologies (China)'),
(14, 9, 'zh', 'name', 'ē™¾čæˆå®¢ē”Ÿē‰©ē§‘ęŠ€'),
(15, 10, 'de', 'name', 'Max-Planck-Institut für Medizinische Forschung'),
(16, 10, 'en', 'name', 'Max Planck Institute for Medical Research'),
(17, 11, 'ar', 'name', 'مستؓفى Ų§Ł„Ų¹ŁŠŁ†'),
(18, 11, 'en', 'name', 'Al Ain Hospital'),
(19, 12, 'en', 'name', 'Sawai Man Singh Hospital'),
(20, 13, 'en', 'name', 'Saint Vincent Hospital'),
(21, 14, 'en', 'name', 'Queen Sirikit National Institute of Child Health'),
(22, 15, 'ar', 'name', 'مستؓفى المفرق'),
(23, 15, 'no_lang_code', 'name', 'Mafraq Hospital'),
(24, 16, 'bn', 'name', 'ময়মনসিংহ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(25, 16, 'en', 'name', 'Mymensingh Medical College Hospital'),
(26, 17, 'en', 'name', 'Western Galilee Hospital'),
(27, 18, 'en', 'name', 'National Skin Centre'),
(28, 19, 'en', 'name', 'Baptist Hospital of Miami'),
(29, 20, 'en', 'name', 'Korea University of Science and Technology'),
(30, 20, 'ko', 'name', 'ź³¼ķ•™źø°ģˆ ģ—°ķ•©ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(31, 21, 'en', 'name', 'VA Connecticut Healthcare System'),
(32, 22, 'fr', 'name', 'HƓpital de la Providence'),
(33, 23, 'no_lang_code', 'name', 'Medical Decision Logic'),
(34, 24, 'fr', 'name', 'Centre Hospitalier Saint-Charles'),
(35, 25, 'ar', 'name', 'مستؓفى Ų±ŁŁŠŁ‚ Ų§Ł„Ų­Ų±ŁŠŲ±ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠā€Žā€Ž'),
(36, 25, 'no_lang_code', 'name', 'Rafik Hariri University Hospital'),
(37, 26, 'en', 'name', 'Health & Medical Publishing Group'),
(38, 27, 'en', 'name', 'Memphis VA Medical Center'),
(39, 28, 'en', 'name', 'Social Insurance Yokohama Central Hospital'),
(40, 28, 'ja', 'name', 'ęØŖęµœäø­å¤®ē—…é™¢'),
(41, 29, 'en', 'name', 'Institute of Public Health'),
(42, 29, 'sq', 'name', 'Instituti i Shƫndetit Publik'),
(43, 30, 'en', 'name', 'Bridgeport Hospital'),
(44, 31, 'en', 'name', 'NHS Tayside'),
(45, 32, 'en', 'name', 'Franklin W. Olin College of Engineering'),
(46, 33, 'en', 'name', 'Saint Agnes Hospital'),
(47, 34, 'en', 'name', 'University of Tennessee Health Science Center'),
(48, 35, 'en', 'name', 'Hannah Research Foundation'),
(49, 36, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å¤§å”šē—…é™¢'),
(50, 36, 'no_lang_code', 'name', 'Tokyo Metropolitan Ohtsuka Hospital'),
(51, 37, 'en', 'name', 'Government Medical College Bhavnagar'),
(52, 38, 'no_lang_code', 'name', 'Ballard Power Systems (Canada)'),
(53, 39, 'en', 'name', 'Northwestern Health Sciences University'),
(54, 40, 'en', 'name', 'Gajara Raja Medical College'),
(55, 41, 'en', 'name', 'National Center for Complementary and Integrative Health'),
(56, 42, 'en', 'name', 'National University of Trujillo'),
(57, 42, 'es', 'name', 'Universidad Nacional de Trujillo'),
(58, 43, 'en', 'name', 'Centennial Medical Center'),
(59, 44, 'ro', 'name', 'Unitatea Executiva Pentru Finantarea Invatamantului Superior Si A Cercetarii Stiintifice Universitare'),
(60, 45, 'en', 'name', 'University of Science and Arts of Oklahoma'),
(61, 46, 'en', 'name', 'New Britain General Hospital'),
(62, 47, 'en', 'name', 'Medical Technology and Practice Patterns Institute'),
(63, 48, 'en', 'name', 'Toyota Technological Institute'),
(64, 48, 'ja', 'name', 'č±Šē”°å·„ę„­å¤§å­¦'),
(65, 49, 'en', 'name', 'Capital Regional District'),
(66, 50, 'en', 'name', 'Darent Valley Hospital'),
(67, 51, 'no_lang_code', 'name', 'State of The Art'),
(68, 52, 'tr', 'name', 'Eskişehir Osmangazi Üniversitesi Tıp Fakültesi Hastanesi'),
(69, 53, 'en', 'name', 'The Fourth People''s Hospital'),
(70, 54, 'fr', 'name', 'HIA du Val-de-Grâce à Paris, HÓpital d''instruction des armées du Val-de-Grâce'),
(71, 55, 'en', 'name', 'St Mary''s Hospital'),
(72, 56, 'en', 'name', 'Covenant Health'),
(73, 57, 'en', 'name', 'Kuang Tien General Hospital'),
(74, 57, 'zh', 'name', 'å…‰ē”°ē¶œåˆé†«é™¢'),
(75, 58, 'en', 'name', 'Institute for Interdisciplinary Studies of Austrian Universities'),
(76, 59, 'en', 'name', 'Aberdeen Maternity Hospital'),
(77, 60, 'en', 'name', 'Hunter Medical Research Institute'),
(78, 61, 'en', 'name', 'Nottingham City Hospital'),
(79, 62, 'en', 'name', 'Monroe Community Hospital'),
(80, 63, 'en', 'name', 'National Institute of Public Health'),
(81, 63, 'ja', 'name', 'å›½ē«‹äæå„åŒ»ē™‚ē§‘å­¦é™¢'),
(82, 64, 'en', 'name', 'Bir Hospital'),
(83, 64, 'ne', 'name', 'ą¤¬ą„€ą¤° ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(84, 65, 'no_lang_code', 'name', 'TIBCO Software (United States)'),
(85, 66, 'en', 'name', 'Luigi Sacco Hospital'),
(86, 66, 'it', 'name', 'Ospedale Luigi Sacco'),
(87, 67, 'it', 'name', 'Ospedale San Paolo'),
(88, 68, 'ko', 'name', 'ė¶€ķ‰ ķž˜ģ°¬ė³‘ģ›'),
(89, 68, 'no_lang_code', 'name', 'Himchan Hospital'),
(90, 69, 'en', 'name', 'Community Medical Center'),
(91, 70, 'en', 'name', 'California Pacific University'),
(92, 71, 'en', 'name', 'Geological Society of America'),
(93, 72, 'en', 'name', 'Southern Taiwan University of Science and Technology'),
(94, 73, 'de', 'name', 'München Klinik Schwabing'),
(95, 74, 'en', 'name', 'Avila University'),
(96, 75, 'en', 'name', 'Inoue Hospital'),
(97, 75, 'ja', 'name', 'äŗ•äøŠē—…é™¢'),
(98, 76, 'pt', 'name', 'Instituto Superior de Educação e Trabalho'),
(99, 77, 'en', 'name', 'Tufts Medical Center'),
(100, 78, 'en', 'name', 'Vikram University'),
(101, 78, 'hi', 'name', 'ą¤µą¤æą¤•ą„ą¤°ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(102, 79, 'en', 'name', 'Mary Crowley Cancer Research Center'),
(103, 80, 'en', 'name', 'Seoul Medical Center'),
(104, 80, 'ko', 'name', 'ģ„œģšø ģ˜ė£Œģ›'),
(105, 81, 'en', 'name', 'Henrietta Egleston Hospital for Children'),
(106, 82, 'ja', 'name', '青山学院大学'),
(107, 82, 'no_lang_code', 'name', 'Aoyama Gakuin University'),
(108, 83, 'en', 'name', 'Shaikh Zayed Hospital'),
(109, 84, 'tr', 'name', 'Mareşal Ƈakmak Askeri Hastanesi'),
(110, 85, 'en', 'name', 'Kuakini Medical Center'),
(111, 86, 'en', 'name', 'Waikato Hospital'),
(112, 87, 'en', 'name', 'Ganesh Shankar Vidyarthi Memorial Medical College'),
(113, 87, 'hi', 'name', 'ą¤—ą¤£ą„‡ą¤¶ शंकर ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤°ą„ą¤„ą„€ ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(114, 88, 'en', 'name', 'Goa Medical College'),
(115, 88, 'pt', 'name', 'Escola Médico-Cirúrgica de Goa'),
(116, 89, 'en', 'name', 'Henan Provincial Institute of Occupational Health'),
(117, 89, 'zh', 'name', 'čŒäøšå„åŗ·ę²³å—ēœē ”ē©¶ę‰€'),
(118, 90, 'en', 'name', 'Hankyong National University'),
(119, 90, 'ko', 'name', 'ķ•œź²½ėŒ€ķ•™źµ'),
(120, 91, 'en', 'name', 'Chubu National Hospital'),
(121, 91, 'ja', 'name', 'äø­éƒØå›½ē«‹ē—…é™¢'),
(122, 92, 'ja', 'name', 'ē”²å­åœ’å¤§å­¦'),
(123, 92, 'no_lang_code', 'name', 'Koshien University'),
(124, 93, 'en', 'name', 'National Institute of Biomedical Imaging and Bioengineering'),
(125, 94, 'en', 'name', 'Exploratorium'),
(126, 95, 'en', 'name', 'Newman University'),
(127, 96, 'ko', 'name', 'ź“‘ģ£¼źø°ė…ė³‘ģ›'),
(128, 96, 'no_lang_code', 'name', 'Kwangju Christian Hospital'),
(129, 97, 'en', 'name', 'Walsh University'),
(130, 98, 'fr', 'name', 'Centre Technique Des Industries De La Fonderie'),
(131, 99, 'no_lang_code', 'name', 'Litron Laboratories (United States)'),
(132, 100, 'it', 'name', 'Ospedale Antonio Cardarelli'),
(133, 101, 'pt', 'name', 'Hospital Madre Teresa'),
(134, 102, 'en', 'name', 'Haskins Laboratories'),
(135, 103, 'en', 'name', 'Advocate Health Care'),
(136, 104, 'en', 'name', 'Michigan Public Health Institute'),
(137, 105, 'pt', 'name', 'Instituto Superior de Administração e Línguas'),
(138, 106, 'no_lang_code', 'name', 'Lourdes Hospital'),
(139, 107, 'en', 'name', 'St. Luke''s Hospital'),
(140, 107, 'mt', 'name', 'L-Isptar San Luqa'),
(141, 108, 'en', 'name', 'Christchurch Hospital'),
(142, 109, 'en', 'name', 'Holy Spirit Northside Private Hospital'),
(143, 110, 'de', 'name', 'Oldenburger Institut für Informatik'),
(144, 110, 'en', 'name', 'Institute for Information Technology'),
(145, 111, 'en', 'name', 'Tianjin Medical University General Hospital'),
(146, 111, 'zh', 'name', 'å¤©ę“„åŒ»ē§‘å¤§å­¦ę€»åŒ»é™¢'),
(147, 112, 'en', 'name', 'Soroka Medical Center'),
(148, 113, 'en', 'name', 'Agruicultural Research Institute'),
(149, 114, 'en', 'name', 'Inland Hospital'),
(150, 114, 'no', 'name', 'Sykehuset Innlandet'),
(151, 115, 'en', 'name', 'Glenbrook Hospital'),
(152, 116, 'en', 'name', 'University of Burundi'),
(153, 116, 'fr', 'name', 'UniversitƩ du Burundi'),
(154, 117, 'en', 'name', 'University of Teacher Education Fukuoka'),
(155, 117, 'ja', 'name', 'ē¦å²”ę•™č‚²å¤§å­¦'),
(156, 118, 'no_lang_code', 'name', 'Profilarbed (Luxembourg)'),
(157, 119, 'es', 'name', 'Hospital San Agustin'),
(158, 120, 'en', 'name', 'Sendai Red Cross Hospital'),
(159, 120, 'ja', 'name', 'ä»™å°čµ¤åå­—ē—…é™¢'),
(160, 121, 'en', 'name', 'Rady Children''s Hospital-San Diego'),
(161, 122, 'en', 'name', 'Sultanah Aminah Hospital'),
(162, 122, 'ms', 'name', 'Hospital Sultanah Aminah'),
(163, 123, 'en', 'name', 'Saint Vincent Hospital'),
(164, 124, 'en', 'name', 'Tianjin Beichen Hospital'),
(165, 125, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© النجاح Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(166, 125, 'en', 'name', 'An-Najah National University'),
(167, 126, 'it', 'name', 'Ospedale del Ceppo'),
(168, 127, 'en', 'name', 'Kookmin University'),
(169, 127, 'ko', 'name', 'źµ­ėÆ¼ėŒ€ķ•™źµ'),
(170, 128, 'sv', 'name', 'Blekingesjukhuset'),
(171, 129, 'en', 'name', 'King''s Cross Hospital'),
(172, 130, 'en', 'name', 'Kursk State Medical University'),
(173, 130, 'ru', 'name', 'ŠšŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(174, 131, 'no_lang_code', 'name', 'Technical Resources International (United States)'),
(175, 132, 'de', 'name', 'Landeskrankenhaus Feldkirch'),
(176, 133, 'en', 'name', 'Swedish Medical Center'),
(177, 134, 'en', 'name', 'Maricopa County Community College District'),
(178, 135, 'en', 'name', 'Barnet Hospital'),
(179, 136, 'no_lang_code', 'name', 'Technical Research Associates (United States)'),
(180, 137, 'es', 'name', 'Hospital General De Segovia'),
(181, 138, 'en', 'name', 'Masonic Medical Research Laboratory'),
(182, 139, 'en', 'name', 'Abilene Christian University'),
(183, 139, 'es', 'name', 'Universidad Cristiana de Abilene'),
(184, 140, 'en', 'name', 'North Park University'),
(185, 141, 'ja', 'name', 'ē·åˆē—…é™¢ åœŸęµ¦å”åŒē—…é™¢'),
(186, 141, 'no_lang_code', 'name', 'Tsuchiura Kyodo General Hospital'),
(187, 142, 'en', 'name', 'Holy Family Hospital'),
(188, 143, 'en', 'name', 'Third Affiliated Hospital of Southern Medical University'),
(189, 143, 'zh', 'name', 'å—ę–¹åŒ»ē§‘å¤§å­¦ē¬¬äø‰é™„å±žåŒ»é™¢'),
(190, 144, 'it', 'name', 'Centro Studi Sui Sistemi Di Trasporto Spa'),
(191, 145, 'en', 'name', 'Royal Hallamshire Hospital'),
(192, 146, 'en', 'name', 'South Carolina State University'),
(193, 147, 'en', 'name', 'United States Air Force Academy'),
(194, 147, 'es', 'name', 'Academia de la Fuerza AƩrea de los Estados Unidos'),
(195, 148, 'en', 'name', 'Mercy San Juan Medical Center'),
(196, 149, 'en', 'name', 'John D. Dingell VA Medical Center'),
(197, 150, 'en', 'name', 'Indian Institute of Technology Roorkee'),
(198, 150, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą„ą¤”ą¤¼ą¤•ą„€'),
(199, 150, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“±ąµ‚ąµ¼ą“•ąµą“•ą“æ'),
(200, 150, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®°ąÆ‚ą®°ąÆą®•ąÆą®•ą®æ'),
(201, 150, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°°ą±‚ą°°ą±ą°•ą±€'),
(202, 151, 'en', 'name', 'Ching Kuo Institute of Management and Health'),
(203, 151, 'zh', 'name', 'ē¶“åœ‹ē®”ē†ęšØå„åŗ·å­øé™¢'),
(204, 152, 'en', 'name', 'Prefectural University of Hiroshima'),
(205, 152, 'ja', 'name', 'ēœŒē«‹åŗƒå³¶å¤§å­¦'),
(206, 153, 'fr', 'name', 'HƓpital Farhat Hached'),
(207, 154, 'no_lang_code', 'name', 'NEC (United Kingdom)'),
(208, 155, 'en', 'name', 'Eulji University'),
(209, 155, 'ko', 'name', 'ģ„ģ§€ėŒ€ķ•™źµ'),
(210, 156, 'en', 'name', 'South-West State University'),
(211, 156, 'ru', 'name', 'Юго-ЗапаГный Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(212, 157, 'en', 'name', 'Dayanand Medical College & Hospital'),
(213, 158, 'en', 'name', 'National Changhua University of Education'),
(214, 158, 'zh', 'name', 'åœ‹ē«‹å½°åŒ–åø«ēÆ„å¤§å­ø'),
(215, 159, 'en', 'name', 'Metropolitan Hospital Center'),
(216, 160, 'en', 'name', 'Government Medical College'),
(217, 161, 'en', 'name', 'Wakayama Medical University'),
(218, 161, 'ja', 'name', 'å’Œę­Œå±±ēœŒē«‹åŒ»ē§‘å¤§å­¦'),
(219, 162, 'en', 'name', 'Munson Medical Center'),
(220, 163, 'en', 'name', 'Royal Derby Hospital'),
(221, 164, 'it', 'name', 'Azienda Ospedaliera Ospedale San Carlo Borromeo'),
(222, 165, 'en', 'name', 'Antrim Area Hospital'),
(223, 166, 'en', 'name', 'University Clinical Center of Kosovo'),
(224, 167, 'en', 'name', 'Lawrence University'),
(225, 167, 'es', 'name', 'Universidad Lawrence'),
(226, 168, 'en', 'name', 'Children''s Hospital Mansoura University'),
(227, 169, 'no_lang_code', 'name', 'STAR Analytical Services'),
(228, 170, 'en', 'name', 'Friends University'),
(229, 171, 'en', 'name', 'Southern Nazarene University'),
(230, 172, 'en', 'name', 'United States National Library of Medicine'),
(231, 172, 'es', 'name', 'Biblioteca Nacional de Medicina'),
(232, 173, 'en', 'name', 'Center for Studying Health System Change'),
(233, 174, 'es', 'name', 'Hospital Costa del Sol'),
(234, 175, 'ko', 'name', 'ģ›ź“‘ėŒ€ķ•™źµ'),
(235, 175, 'no_lang_code', 'name', 'Wonkwang University'),
(236, 176, 'en', 'name', 'Missouri Baptist Medical Center'),
(237, 177, 'en', 'name', 'Detroit Receiving Hospital'),
(238, 178, 'en', 'name', 'Tokushima Breast Care Clinic'),
(239, 178, 'ja', 'name', 'ćØćć—ć¾ćƒ–ćƒ¬ć‚¹ćƒˆć‚±ć‚¢ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(240, 179, 'en', 'name', 'Hengyang Normal University'),
(241, 180, 'en', 'name', 'UK Material Technology Research Institute'),
(242, 181, 'no_lang_code', 'name', 'Intelligent Hearing Systems (United States)'),
(243, 182, 'en', 'name', 'Social Science Research Council'),
(244, 183, 'en', 'name', 'Duchess of Kent Children''s Hospital'),
(245, 183, 'zh', 'name', 'å¤§å£ē’°ę ¹å¾·å…¬ēˆµå¤«äŗŗå…’ē«„é†«é™¢'),
(246, 184, 'en', 'name', 'Birmingham–Southern College'),
(247, 185, 'en', 'name', 'Meijo Hospital'),
(248, 185, 'ja', 'name', 'ååŸŽē—…é™¢'),
(249, 186, 'en', 'name', 'North Dakota Department of Health'),
(250, 187, 'en', 'name', 'Georgia Department of Human Services'),
(251, 188, 'en', 'name', 'University of Colorado Hospital'),
(252, 188, 'es', 'name', 'Hospital de la Universidad de Colorado'),
(253, 189, 'en', 'name', 'Bond University'),
(254, 190, 'de', 'name', 'Universitätsklinikum Düsseldorf'),
(255, 190, 'en', 'name', 'Düsseldorf University Hospital'),
(256, 191, 'es', 'name', 'Instituto Tecnológico del Calzado y Conexas'),
(257, 192, 'en', 'name', 'Mackenzie Presbyterian University'),
(258, 192, 'pt', 'name', 'Universidade Presbiteriana Mackenzie'),
(259, 193, 'en', 'name', 'Ambrose Alli University'),
(260, 193, 'yo', 'name', 'YunifƔsƭtƬ Ambrose Alli'),
(261, 194, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹ē—…é™¢'),
(262, 194, 'no_lang_code', 'name', 'Fukui Prefectural Hospital'),
(263, 195, 'pt', 'name', 'Universidade do Sul de Santa Catarina'),
(264, 196, 'no_lang_code', 'name', 'FORCE Technology (Denmark)'),
(265, 197, 'en', 'name', 'LeTourneau University'),
(266, 198, 'en', 'name', 'National Institute of Engineering, Technology and Innovation'),
(267, 198, 'pt', 'name', 'Instituto Nacional de Engenharia, Tecnologia e Inovação'),
(268, 199, 'no_lang_code', 'name', 'Koronis Biomedical Technologies (United States)'),
(269, 200, 'nl', 'name', 'Geneeskundige en Gezondheidsdienst'),
(270, 201, 'en', 'name', 'James A. Haley Veterans'' Hospital'),
(271, 202, 'en', 'name', 'Keesler Medical Center'),
(272, 203, 'en', 'name', 'Min Sheng General Hospital'),
(273, 203, 'zh', 'name', 'ę•ē››ē¶œåˆé†«é™¢'),
(274, 204, 'en', 'name', 'John F. Kennedy Medical Center'),
(275, 205, 'en', 'name', 'Queen Elizabeth II Medical Centre'),
(276, 206, 'no_lang_code', 'name', 'Barlow Scientific'),
(277, 207, 'en', 'name', 'Greater Baltimore Medical Center'),
(278, 208, 'en', 'name', 'Manitoba Health'),
(279, 209, 'en', 'name', 'Iowa Department of Human Services'),
(280, 210, 'en', 'name', 'National Polytechnic University of Armenia'),
(281, 210, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ ÕŗÕøÕ¬Õ«ÕæÕ„Õ­Õ¶Õ«ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(282, 211, 'en', 'name', 'Bloomsburg University'),
(283, 212, 'en', 'name', 'Miyagi Children''s Hospital'),
(284, 212, 'ja', 'name', 'å®®åŸŽēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(285, 213, 'en', 'name', 'Cooper Medical School of Rowan University'),
(286, 214, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŲŗŲÆŲ§ŲÆ'),
(287, 214, 'en', 'name', 'University of Baghdad'),
(288, 215, 'en', 'name', 'Government Medical College'),
(289, 215, 'ml', 'name', 'ą“—ą“µąµŗą“®ąµ†ą“Øąµą“±ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“¤ą“æą“°ąµą“µą“Øą“Øąµą“¤ą“Ŗąµą“°ą“‚'),
(290, 216, 'en', 'name', 'VA Salt Lake City Healthcare System'),
(291, 217, 'en', 'name', 'University of Tampa'),
(292, 217, 'es', 'name', 'Universidad de Tampa'),
(293, 218, 'fr', 'name', 'HƓpital Saint Lazare'),
(294, 219, 'en', 'name', 'Society For Developmental Biology'),
(295, 220, 'en', 'name', 'Purdue Research Foundation'),
(296, 221, 'en', 'name', 'INTEGRIS Baptist Medical Center'),
(297, 222, 'en', 'name', 'Seton Hall University'),
(298, 223, 'en', 'name', 'North Karelia Central Hospital'),
(299, 223, 'fi', 'name', 'Pohjois-Karjalan Sairaanhoito- Ja Sosiaalipalvelujen KuntayhtymƤ'),
(300, 224, 'en', 'name', 'Center for Devices and Radiological Health'),
(301, 225, 'en', 'name', 'The Health Council of the Netherlands'),
(302, 225, 'nl', 'name', 'Gezondheidsraad'),
(303, 226, 'de', 'name', 'Klinikum Klagenfurt'),
(304, 227, 'en', 'name', 'John Radcliffe Hospital'),
(305, 228, 'en', 'name', 'Acadia University'),
(306, 229, 'tr', 'name', 'Bayındır Hastanesi'),
(307, 230, 'fr', 'name', 'Centre Hospitalier Universitaire de BesanƧon'),
(308, 231, 'en', 'name', 'Arnold Palmer Hospital for Children'),
(309, 232, 'en', 'name', 'University of Sargodha'),
(310, 233, 'en', 'name', 'Manhattan Eye, Ear and Throat Hospital'),
(311, 234, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę–°ē™ŗē”°ē—…é™¢'),
(312, 234, 'no_lang_code', 'name', 'Niigata Prefectural Shibata Hospital'),
(313, 235, 'fr', 'name', 'HƓpital Ophtalmique Jules-Gonin'),
(314, 236, 'en', 'name', 'East–West Center'),
(315, 237, 'en', 'name', 'JILA, Joint Institute for Laboratory Astrophysics'),
(316, 238, 'en', 'name', 'Aintree University Hospital'),
(317, 239, 'fr', 'name', 'HƩma-QuƩbec'),
(318, 240, 'en', 'name', 'Lamar University'),
(319, 241, 'en', 'name', 'Guangdong Province Stomatological Hospital'),
(320, 241, 'zh', 'name', 'å¹æäøœēœå£č…”åŒ»é™¢'),
(321, 242, 'en', 'name', 'Florida Memorial University'),
(322, 243, 'en', 'name', 'Louisiana State University Hospital'),
(323, 244, 'en', 'name', 'Lata Medical Research Foundation'),
(324, 245, 'pt', 'name', 'Instituto Superior de CiĆŖncias Educativas'),
(325, 246, 'de', 'name', 'UniversitƤt Antwerpen'),
(326, 246, 'en', 'name', 'University of Antwerp'),
(327, 246, 'fr', 'name', 'UniversitƩ d''Anvers'),
(328, 246, 'nl', 'name', 'Universiteit Antwerpen'),
(329, 247, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ŲØŁ‚ŪŒŲ©Ų§Ł„Ł„Ł‡'),
(330, 247, 'no_lang_code', 'name', 'Hospital Bqyhallh'),
(331, 248, 'en', 'name', 'Mercy Health System'),
(332, 249, 'en', 'name', 'Hackensack University Medical Center'),
(333, 250, 'en', 'name', 'Oita Medical Center'),
(334, 250, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ å¤§åˆ†åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(335, 251, 'no_lang_code', 'name', 'Sanaria'),
(336, 252, 'en', 'name', 'Ashikaga Red Cross Hospital'),
(337, 252, 'ja', 'name', 'č¶³åˆ©čµ¤åå­—ē—…é™¢'),
(338, 253, 'en', 'name', 'National Central University'),
(339, 254, 'en', 'name', 'Kurashiki Central Hospital'),
(340, 254, 'ja', 'name', '倉敷中央病院'),
(341, 255, 'en', 'name', 'Jinnah Postgraduate Medical Center'),
(342, 256, 'en', 'name', 'Northwestern Memorial Hospital'),
(343, 257, 'ja', 'name', 'ę„½å¤©ę Ŗå¼ä¼šē¤¾'),
(344, 257, 'no_lang_code', 'name', 'Rakuten (Japan)'),
(345, 258, 'en', 'name', 'Sardar Patel Medical College'),
(346, 259, 'en', 'name', 'Provincial Laboratory of Public Health'),
(347, 260, 'fr', 'name', 'HƓpital Laveran'),
(348, 261, 'en', 'name', 'Intermountain Medical Center'),
(349, 262, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ² Ų§Ł„Ų·ŲØŁŠŲ© للحرس Ų§Ł„ŁˆŲ·Ł†ŁŠ'),
(350, 262, 'en', 'name', 'King Abdulaziz Medical City'),
(351, 263, 'en', 'name', 'Sun Moon University'),
(352, 263, 'ko', 'name', 'ģ„ ė¬øėŒ€ķ•™źµ'),
(353, 264, 'en', 'name', 'Falun Hospital'),
(354, 265, 'en', 'name', 'Sharp Rees-Stealy Medical Group'),
(355, 266, 'pl', 'name', 'Szpital im Tadeusza Marciniaka'),
(356, 267, 'en', 'name', 'Malabar Institute of Medical Sciences'),
(357, 268, 'pt', 'name', 'Hospital Moinhos de Vento'),
(358, 269, 'en', 'name', 'Grady Memorial Hospital'),
(359, 270, 'en', 'name', 'Northern Health'),
(360, 271, 'fr', 'name', 'Centre Hospitalier Universitaire Mohammed VI'),
(361, 272, 'en', 'name', 'Tilka Manjhi Bhagalpur University'),
(362, 272, 'hi', 'name', 'तिलका ą¤®ą¤¾ą¤‚ą¤ą„€ ą¤­ą¤¾ą¤—ą¤²ą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(363, 273, 'no_lang_code', 'name', 'Virogenomics BioDevelopment (United States)'),
(364, 274, 'en', 'name', 'Lehigh Valley Hospital Muhlenberg'),
(365, 275, 'en', 'name', 'Mercy Medical Center'),
(366, 276, 'en', 'name', 'Inova Loudoun Hospital'),
(367, 277, 'en', 'name', 'Royal Liverpool and Broadgreen University Hospital NHS Trust'),
(368, 278, 'en', 'name', 'Armed Forces Health Surveillance Center'),
(369, 279, 'en', 'name', 'Churchill Hospital'),
(370, 280, 'en', 'name', 'University Children’s Hospital'),
(371, 280, 'pl', 'name', 'Uniwersytecki Szpital Dziecięcy'),
(372, 281, 'en', 'name', 'Cook Children''s Medical Center'),
(373, 282, 'en', 'name', 'London School of Hygiene & Tropical Medicine'),
(374, 283, 'en', 'name', 'MultiCare Good Samaritan Hospital'),
(375, 284, 'en', 'name', 'Eastern State Hospital'),
(376, 285, 'en', 'name', 'Ya''an Polytechnic College'),
(377, 285, 'zh', 'name', 'é›…å®‰čŒäøšęŠ€ęœÆå­¦é™¢'),
(378, 286, 'en', 'name', 'Cancer Hospital of Shantou University Medical College'),
(379, 286, 'zh', 'name', 'ę±•å¤“å¤§å­¦åŒ»å­¦é™¢é™„å±žč‚æē˜¤åŒ»é™¢'),
(380, 287, 'en', 'name', 'Royal United Hospital'),
(381, 288, 'en', 'name', 'Korea Institute of Radiological and Medical Sciences'),
(382, 288, 'ko', 'name', 'ķ•œźµ­ 방사선 과학 ģ—°źµ¬ģ†Œ'),
(383, 289, 'en', 'name', 'Second Affiliated Hospital of Guangzhou Medical University'),
(384, 289, 'zh', 'name', 'å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(385, 290, 'no_lang_code', 'name', 'GABO:mi'),
(386, 291, 'pt', 'name', 'Instituto Superior Autónomo de Estudos Politécnicos'),
(387, 292, 'no_lang_code', 'name', 'Performance Plants (Canada)'),
(388, 293, 'en', 'name', 'London Metropolitan University'),
(389, 294, 'en', 'name', 'Isfahan University of Technology'),
(390, 294, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ اصفهان'),
(391, 295, 'tr', 'name', 'Dr. BehƧet Uz Ƈocuk Hastalıkları Hastanesi'),
(392, 296, 'es', 'name', 'Hospital General San Juan de Dios'),
(393, 297, 'en', 'name', 'Sejong University'),
(394, 297, 'ko', 'name', 'ģ„øģ¢…ėŒ€ķ•™źµ'),
(395, 298, 'en', 'name', 'Martha Jefferson Hospital'),
(396, 299, 'en', 'name', 'Computing Research Association'),
(397, 300, 'tr', 'name', 'Gaziantep Onkoloji Hastanesi'),
(398, 301, 'en', 'name', 'UK Water Industry Research'),
(399, 302, 'en', 'name', 'Kettering Medical Center'),
(400, 302, 'fr', 'name', 'Centre mƩdical de kettering'),
(401, 303, 'en', 'name', 'Privolzhsky Research Medical University'),
(402, 303, 'ru', 'name', 'ŠŸŃ€ŠøŠ²Š¾Š»Š¶ŃŠŗŠøŠ¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(403, 304, 'en', 'name', 'Milwaukee Public Museum'),
(404, 305, 'en', 'name', 'Florida Hospital Cancer Institute'),
(405, 306, 'en', 'name', 'Accreditation Council for Graduate Medical Education'),
(406, 307, 'en', 'name', 'Chubu Rosai Hospital'),
(407, 307, 'ja', 'name', 'äø­éƒØć‚ć†ć•ć„ē—…é™¢'),
(408, 308, 'en', 'name', 'Health and Safety Executive'),
(409, 309, 'en', 'name', 'The Graduate Center, CUNY'),
(410, 310, 'no_lang_code', 'name', 'Swedish Nuclear Fuel and Waste Management (Sweden)'),
(411, 311, 'en', 'name', 'Loewenstein Hospital Rehabilitation Center'),
(412, 312, 'en', 'name', 'North Shore Medical Center'),
(413, 313, 'en', 'name', 'Shadyside Hospital'),
(414, 314, 'en', 'name', 'Prefectural University of Kumamoto'),
(415, 314, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹å¤§å­¦'),
(416, 315, 'de', 'name', 'Klinik Schillerhƶhe'),
(417, 316, 'en', 'name', 'Rood and Riddle Equine Hospital'),
(418, 317, 'en', 'name', 'National Human Genome Research Institute'),
(419, 318, 'en', 'name', 'Vladivostok State Medical University'),
(420, 318, 'ru', 'name', 'Тихоокеанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(421, 319, 'en', 'name', 'Guru Angad Dev Veterinary and Animal Sciences University'),
(422, 319, 'pa', 'name', 'ਗੁਰੂ ਅੰਗਦ ਦੇਵ ąØµą©ˆąØŸąØØąØ°ą©€ ਅਤੇ ਐਨੀਮਲ ąØøąØ¾ąØ‡ą©°ąØøąØœąØ¼ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(423, 320, 'en', 'name', 'Glasgow Royal Infirmary'),
(424, 321, 'de', 'name', 'Fraunhofer Institut für Mikrotechnik und Mikrosysteme'),
(425, 321, 'en', 'name', 'Fraunhofer Institute for Microengineering and Microsystems'),
(426, 322, 'en', 'name', 'Emma Children’s Hospital'),
(427, 322, 'nl', 'name', 'Emma Kinderziekenhuis'),
(428, 323, 'en', 'name', 'Gembloux Agro-Bio Tech'),
(429, 324, 'it', 'name', 'Ospedale San Paolo'),
(430, 325, 'es', 'name', 'Hospital Italiano de Buenos Aires'),
(431, 326, 'ja', 'name', 'é’ę£®ēœŒē«‹äø­å¤®ē—…é™¢'),
(432, 326, 'no_lang_code', 'name', 'Aomori Prefectural Central Hospital'),
(433, 327, 'ja', 'name', 'é•·å“ŽćæćŖćØćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼åø‚ę°‘ē—…é™¢'),
(434, 327, 'no_lang_code', 'name', 'Nagasaki Municipal Hospital'),
(435, 328, 'en', 'name', 'Kanchi Mamunivar Centre for Post Graduate Studies'),
(436, 329, 'en', 'name', 'Ireland Army Community Hospital'),
(437, 330, 'en', 'name', 'Newark Beth Israel Medical Center'),
(438, 331, 'en', 'name', 'Hosei University'),
(439, 331, 'ja', 'name', '法政大学'),
(440, 332, 'en', 'name', 'Coombe Women & Infants University Hospital'),
(441, 332, 'ga', 'name', 'Ospidéal Ollscoile Ban agus NaíonÔn an Chúim'),
(442, 333, 'en', 'name', 'Vidant Medical Center'),
(443, 334, 'no_lang_code', 'name', 'MTU Aero Engines (Germany)'),
(444, 335, 'en', 'name', 'National Science Teachers Association'),
(445, 336, 'en', 'name', 'University of Dubuque'),
(446, 336, 'fr', 'name', 'UniversitƩ de dubuque'),
(447, 337, 'en', 'name', 'Dillard University'),
(448, 338, 'en', 'name', 'The Ohio State University Wexner Medical Center'),
(449, 339, 'en', 'name', 'Technical Centre for Mechanical Industry'),
(450, 339, 'fr', 'name', 'Centre Technique des Industries MƩcaniques'),
(451, 340, 'en', 'name', 'First People''s Hospital of Yunnan Province'),
(452, 340, 'zh', 'name', 'äŗ‘å—ēœē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(453, 341, 'en', 'name', 'Groote Schuur Hospital'),
(454, 342, 'tr', 'name', 'Gülhane Askerî Tıp Akademisi'),
(455, 343, 'en', 'name', 'Long Island Jewish Medical Center'),
(456, 344, 'en', 'name', 'Merlin Park University Hospital'),
(457, 345, 'en', 'name', 'American Dental Association'),
(458, 346, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¹ŁŠŁ† Ų“Ł…Ų³'),
(459, 346, 'en', 'name', 'Ain Shams University'),
(460, 347, 'en', 'name', 'University of Western SĆ£o Paulo'),
(461, 347, 'pt', 'name', 'Universidade do Oeste Paulista'),
(462, 348, 'en', 'name', 'Southern Polytechnic State University'),
(463, 349, 'en', 'name', 'Frontier Medical College'),
(464, 349, 'ur', 'name', 'ŁŲ±Ł†Ł¹ŪŒŲ¦Ų± Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(465, 350, 'en', 'name', 'Shanghai Children''s Medical Center'),
(466, 350, 'zh', 'name', 'äøŠęµ·å„æē«„åŒ»å­¦äø­åæƒ'),
(467, 351, 'en', 'name', 'Freeman Hospital'),
(468, 352, 'es', 'name', 'Hospital General Universitario Santa MarĆ­a del Rosell'),
(469, 353, 'en', 'name', 'Hiratsuka City Hospital'),
(470, 353, 'ja', 'name', 'å¹³å”šåø‚ę°‘ē—…é™¢'),
(471, 354, 'en', 'name', 'Royal Cornwall Hospital'),
(472, 355, 'es', 'name', 'Hospital General Universitario Morales Meseguer'),
(473, 356, 'en', 'name', 'TRTech'),
(474, 357, 'en', 'name', 'Bhabha Atomic Research Center Hospital'),
(475, 358, 'en', 'name', 'Seoul National University of Science and Technology'),
(476, 358, 'ko', 'name', 'ģ„œģšøź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(477, 359, 'en', 'name', 'Gaia Regional Conservatory Foundation'),
(478, 359, 'pt', 'name', 'Fundação Conservatório Regional de Gaia'),
(479, 360, 'it', 'name', 'Azienda Ospedaliera G.Rummo'),
(480, 361, 'de', 'name', 'Krankenhaus Bozen'),
(481, 361, 'it', 'name', 'Ospedale di Bolzano'),
(482, 362, 'en', 'name', 'St. Elizabeth''s Medical Center'),
(483, 363, 'da', 'name', 'Center for Klinisk Forskning og Forebyggelse'),
(484, 363, 'en', 'name', 'Center for Clinical Research and Prevention'),
(485, 364, 'en', 'name', 'Bristol City Council'),
(486, 365, 'en', 'name', 'Saint Vincent''s Catholic Medical Center'),
(487, 366, 'en', 'name', 'PƔl Heim Children''s Hospital'),
(488, 366, 'hu', 'name', 'Heim PÔl GyermekkórhÔz'),
(489, 367, 'ko', 'name', 'ģš°ė¦¬ė“¤ 병원'),
(490, 367, 'no_lang_code', 'name', 'Wooridul Hospital'),
(491, 368, 'en', 'name', 'Frederiksberg Hospital'),
(492, 369, 'en', 'name', 'Chang Gung University'),
(493, 370, 'en', 'name', 'Sƶdertƶrn University'),
(494, 370, 'sv', 'name', 'Sƶdertƶrns hƶgskola'),
(495, 371, 'en', 'name', 'Topiwala National Medical College & BYL Nair Charitable Hospital'),
(496, 372, 'en', 'name', 'Jiangxi Agricultural University'),
(497, 372, 'zh', 'name', 'ę±Ÿč„æå†œäøšå¤§å­¦'),
(498, 373, 'en', 'name', 'Pine Rest Christian Mental Health Services'),
(499, 374, 'en', 'name', 'Good Moonhwa Hospital'),
(500, 374, 'ko', 'name', 'ģ¢‹ģ€ė¬øķ™”ė³‘ģ›'),
(501, 375, 'en', 'name', 'American Meteorological Society'),
(502, 376, 'en', 'name', 'Hangzhou Center for Disease Control and Prevention'),
(503, 376, 'zh', 'name', 'ę­å·žåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(504, 377, 'en', 'name', 'Alcorn State University'),
(505, 378, 'en', 'name', 'Fukuoka Institute of Health and Environmental Sciences'),
(506, 378, 'ja', 'name', 'ē¦å²”ēœŒäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(507, 379, 'en', 'name', 'Argyll and Bute Hospital'),
(508, 380, 'no_lang_code', 'name', 'Experimental Pathology Laboratories'),
(509, 381, 'en', 'name', 'Sheppard Pratt Health System'),
(510, 382, 'en', 'name', 'Osun State University'),
(511, 383, 'en', 'name', 'China University of Political Science and Law'),
(512, 383, 'zh', 'name', '中国政法大学'),
(513, 384, 'en', 'name', 'Ross University School of Veterinary Medicine'),
(514, 385, 'ko', 'name', 'ėŒ€źµ¬ķŒŒķ‹°ė§ˆė³‘ģ›'),
(515, 385, 'no_lang_code', 'name', 'Daegu Fatima Hospital'),
(516, 386, 'en', 'name', 'Ingalls Memorial Hospital'),
(517, 387, 'en', 'name', 'Polytechnic University of the Philippines'),
(518, 388, 'en', 'name', 'University of Maine at Machias'),
(519, 389, 'en', 'name', 'Robert Wood Johnson University Hospital'),
(520, 390, 'en', 'name', 'Hebrew Hospital'),
(521, 391, 'ko', 'name', 'ķ™ģµėŒ€ķ•™źµ'),
(522, 391, 'no_lang_code', 'name', 'Hongik University'),
(523, 392, 'no_lang_code', 'name', 'E-Da Hospital'),
(524, 393, 'en', 'name', 'Bloodworks Northwest'),
(525, 394, 'en', 'name', 'Moscow State University of Civil Engineering'),
(526, 394, 'ru', 'name', 'Московский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š”Ń‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Университет'),
(527, 395, 'ko', 'name', 'ģš°ģ„ėŒ€ķ•™źµ'),
(528, 395, 'no_lang_code', 'name', 'Woosuk University'),
(529, 396, 'en', 'name', 'Kaohsiung Municipal Kai-Syuan Psychiatric Hospital'),
(530, 397, 'en', 'name', 'Aurelia Hospital'),
(531, 398, 'en', 'name', 'Greenlane Clinical Centre'),
(532, 399, 'en', 'name', 'Advocate Good Samaritan Hospital'),
(533, 400, 'en', 'name', 'University of Ribeirão Preto'),
(534, 400, 'pt', 'name', 'Universidade de Ribeirão Preto'),
(535, 401, 'en', 'name', 'Holy Family Hospital'),
(536, 401, 'ur', 'name', 'ŪŁˆŁ„ŪŒ ŁŪŒŁ…Ł„ŪŒ ہسپتال'),
(537, 402, 'en', 'name', 'Liverpool Women''s Hospital'),
(538, 403, 'no_lang_code', 'name', 'Robosoft (France)'),
(539, 404, 'en', 'name', 'Chonnam National University Hospital'),
(540, 405, 'en', 'name', 'Lankenau Medical Center'),
(541, 406, 'ja', 'name', '北里大学'),
(542, 406, 'no_lang_code', 'name', 'Kitasato University'),
(543, 407, 'en', 'name', 'Chesapeake Research Consortium'),
(544, 408, 'en', 'name', 'RAND Corporation'),
(545, 409, 'en', 'name', 'Gaziantep Children''s Hospital'),
(546, 409, 'tr', 'name', 'Gaziantep Ƈocuk Hastanesi'),
(547, 410, 'en', 'name', 'McKay Dee Hospital'),
(548, 411, 'en', 'name', 'GF Jooste Hospital'),
(549, 412, 'ja', 'name', 'č³›č‚²ä¼šē—…é™¢'),
(550, 412, 'no_lang_code', 'name', 'San-ikukai Hospital'),
(551, 413, 'no_lang_code', 'name', 'MBN Nanomaterialia (Italy)'),
(552, 414, 'en', 'name', 'Aomori Rosai Hospital'),
(553, 414, 'ja', 'name', 'é’ę£®åŠ“ē½ē—…é™¢'),
(554, 415, 'en', 'name', 'Krishna Institute of Medical Sciences'),
(555, 416, 'en', 'name', 'Daegu Catholic University Medical Center'),
(556, 416, 'ko', 'name', 'ėŒ€źµ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµė³‘ģ› ėŖØė°”ģ¼'),
(557, 417, 'en', 'name', 'Arcadia University'),
(558, 418, 'en', 'name', 'Kaiser Permanente San Diego Medical Center'),
(559, 419, 'no_lang_code', 'name', 'Hindu Rao Hospital'),
(560, 420, 'en', 'name', 'Vladimir State University for the Humanities'),
(561, 420, 'ru', 'name', 'ВлаГимирский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(562, 421, 'en', 'name', 'Good Samaritan Regional Medical Center'),
(563, 422, 'en', 'name', 'Kunming Children''s Hospital'),
(564, 422, 'zh', 'name', 'ę˜†ę˜Žåø‚å„æē«„åŒ»é™¢'),
(565, 423, 'en', 'name', 'Plastic Surgery Hospital'),
(566, 424, 'en', 'name', 'Hamburg Ship Model Basin'),
(567, 424, 'no_lang_code', 'name', 'Hamburgische Schiffbau-Versuchsanstalt (Germany)'),
(568, 425, 'en', 'name', 'John B. Pierce Laboratory'),
(569, 426, 'en', 'name', 'Kuopio University Hospital'),
(570, 427, 'en', 'name', 'Lankenau Heart Institute'),
(571, 428, 'en', 'name', 'Beebe Healthcare'),
(572, 429, 'en', 'name', 'Marion duPont Scott Equine Medical Center'),
(573, 430, 'en', 'name', 'Wesley Medical Center'),
(574, 431, 'en', 'name', 'Daping Hospital'),
(575, 431, 'zh', 'name', 'ē¬¬äø‰å†›åŒ»å¤§å­¦å¤§åŖåŒ»é™¢'),
(576, 432, 'en', 'name', 'University Dental Hospital on Cardiff University'),
(577, 433, 'en', 'name', 'MRC Laboratory for Molecular Cell Biology'),
(578, 434, 'en', 'name', 'Colby College'),
(579, 435, 'en', 'name', 'George Washington University Hospital'),
(580, 436, 'en', 'name', 'Lee University'),
(581, 437, 'no_lang_code', 'name', 'Novartis (China)'),
(582, 437, 'zh', 'name', 'åŒ—äŗ¬čÆŗåŽåˆ¶čÆęœ‰é™å…¬åø'),
(583, 438, 'de', 'name', 'HFR Freiburg Kantonsspital'),
(584, 439, 'en', 'name', 'Central DuPage Hospital'),
(585, 440, 'en', 'name', 'First Affiliated Hospital of Jiangxi Medical College'),
(586, 441, 'no_lang_code', 'name', 'Oregon Center For Applied Science (United States)'),
(587, 442, 'en', 'name', 'Chowan University'),
(588, 443, 'en', 'name', 'Maimonides Medical Center'),
(589, 444, 'en', 'name', 'Ferdowsi University of Mashhad'),
(590, 444, 'fa', 'name', 'دانؓگاه فردوسی مؓهد'),
(591, 445, 'en', 'name', 'Usmanu Danfodiyo University Teaching Hospital, Sokoto'),
(592, 446, 'en', 'name', 'Saint Agnes Medical Center'),
(593, 447, 'en', 'name', 'Sendai Nishitaga National Hospital'),
(594, 447, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ä»™å°č„æå¤šč³€ē—…é™¢'),
(595, 448, 'en', 'name', 'Gyeongsang National University Hospital'),
(596, 449, 'en', 'name', 'MESA Hospital'),
(597, 449, 'tr', 'name', 'Mesa Hastanesi'),
(598, 450, 'en', 'name', 'Vermont Department of Mental Health'),
(599, 451, 'ar', 'name', 'المستؓفى Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ الرابطة'),
(600, 451, 'fr', 'name', 'HƓpital La Rabta'),
(601, 452, 'en', 'name', 'Orel State University named after I.S. Turgenev'),
(602, 452, 'ru', 'name', 'ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. Š”. Š¢ŃƒŃ€Š³ŠµŠ½ŠµŠ²Š°'),
(603, 453, 'en', 'name', 'Midwestern Regional Medical Center'),
(604, 454, 'en', 'name', 'Lagos University Teaching Hospital'),
(605, 455, 'en', 'name', 'Tokai University Hachioji Hospital'),
(606, 455, 'ja', 'name', 'ę±ęµ·å¤§å­¦åŒ»å­¦éƒØä»˜å±žå…«ēŽ‹å­ē—…é™¢'),
(607, 456, 'en', 'name', 'Bellin Memorial Hospital'),
(608, 457, 'en', 'name', 'University of Pernambuco'),
(609, 457, 'pt', 'name', 'Universidade de Pernambuco'),
(610, 458, 'es', 'name', 'Hospital Barros Luco-Trudeau'),
(611, 459, 'en', 'name', 'King George''s Medical University'),
(612, 459, 'hi', 'name', 'ą¤›ą¤¤ą„ą¤°ą¤Ŗą¤¤ą¤æ ą¤¶ą¤¾ą¤¹ą„‚ą¤œą„€ महाराज ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(613, 460, 'en', 'name', 'Rotherham General Hospital'),
(614, 461, 'en', 'name', 'McNeese State University'),
(615, 462, 'fr', 'name', 'Centre Hospitalier Universitaire de Yopougon'),
(616, 463, 'en', 'name', 'Deaconess Hospital'),
(617, 464, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų­Ł„ŁˆŲ§Ł†'),
(618, 464, 'en', 'name', 'Helwan University'),
(619, 465, 'no_lang_code', 'name', 'Sensimetrics Corporation'),
(620, 466, 'no_lang_code', 'name', 'Tembec'),
(621, 467, 'pt', 'name', 'Instituto de Estudos Superiores Financeiros e Fiscais'),
(622, 468, 'en', 'name', 'MGMA Health Care Consulting Group'),
(623, 469, 'no_lang_code', 'name', 'Ecogenomics (Japan)'),
(624, 470, 'pt', 'name', 'Hospital FelĆ­cio Rocho'),
(625, 471, 'en', 'name', 'Jawaharlal Nehru Medical College'),
(626, 472, 'en', 'name', 'General Hospital of Guangzhou Military Command'),
(627, 472, 'zh', 'name', 'å¹æå·žå†›åŒŗå¹æå·žę€»åŒ»é™¢'),
(628, 473, 'en', 'name', 'Japan Society for the Promotion of Science'),
(629, 473, 'ja', 'name', 'ę—„ęœ¬å­¦č”“ęŒÆčˆˆä¼š'),
(630, 474, 'en', 'name', 'Royal Hampshire County Hospital'),
(631, 475, 'ja', 'name', '脿宮市立中央病院'),
(632, 475, 'no_lang_code', 'name', 'Nishinomiya Municipal Central Hospital'),
(633, 476, 'sv', 'name', 'Danderyds sjukhus'),
(634, 477, 'en', 'name', 'Barzilai Medical Center'),
(635, 478, 'en', 'name', 'Broomfield Hospital'),
(636, 479, 'no_lang_code', 'name', 'Luna Innovations (United States)'),
(637, 480, 'en', 'name', 'Mammoth Hospital'),
(638, 481, 'es', 'name', 'Hospital ClĆ­nico Universitario de Valencia'),
(639, 482, 'en', 'name', 'Ministry of Health'),
(640, 483, 'ar', 'name', 'الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ©'),
(641, 483, 'en', 'name', 'Lebanese American University'),
(642, 484, 'ja', 'name', 'é™å²”åø‚ē«‹ęø…ę°“ē—…é™¢'),
(643, 484, 'no_lang_code', 'name', 'Shizuoka City Shimizu Hospital'),
(644, 485, 'en', 'name', 'National University of Salta'),
(645, 485, 'es', 'name', 'Universidad Nacional de Salta'),
(646, 486, 'en', 'name', 'Baba Memorial Hospital'),
(647, 486, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗćƒšć‚¬ć‚µć‚¹ é¦¬å “čØ˜åæµē—…é™¢'),
(648, 487, 'tr', 'name', 'Ankara Fizik Tedavi ve Rehabilitasyon Eğitim ve Araştırma Hastanesi'),
(649, 488, 'en', 'name', 'Sasebo City General Hospital'),
(650, 488, 'ja', 'name', 'ä½äø–äæåø‚ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(651, 489, 'en', 'name', 'Sinai Grace Hospital'),
(652, 490, 'en', 'name', 'Regional Medical Research Center'),
(653, 490, 'hi', 'name', 'ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤—ą¤æą¤Øą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(654, 491, 'en', 'name', 'Alabama Department of Public Health'),
(655, 492, 'en', 'name', 'Narayana Dental College and Hospital'),
(656, 493, 'en', 'name', 'Virginia Department of Health'),
(657, 494, 'en', 'name', 'National Institute of Environmental Health Sciences'),
(658, 495, 'en', 'name', 'Maharaja Krishna Chandra Gajapati Medical College and Hospital'),
(659, 496, 'es', 'name', 'Hospital de Basurto'),
(660, 497, 'en', 'name', 'Swami Keshwanand Rajasthan Agricultural University'),
(661, 498, 'no_lang_code', 'name', 'Inflexxion (United States)'),
(662, 499, 'en', 'name', 'Cambridge Military Hospital'),
(663, 500, 'en', 'name', 'Sir Sayajirao General Hospital Medical College'),
(664, 501, 'en', 'name', 'Oslo University Hospital'),
(665, 502, 'es', 'name', 'Hospital Terrassa'),
(666, 503, 'en', 'name', 'Buffalo VA Medical Center'),
(667, 504, 'en', 'name', 'Central Baptist Hospital'),
(668, 505, 'en', 'name', 'PRIST University'),
(669, 506, 'en', 'name', 'New Mexico Department of Health'),
(670, 507, 'no_lang_code', 'name', 'Medical Protective'),
(671, 508, 'en', 'name', 'Regent University'),
(672, 509, 'en', 'name', 'Harvard–MIT Division of Health Sciences and Technology'),
(673, 510, 'en', 'name', 'The Hamner Institutes for Health Sciences'),
(674, 511, 'no_lang_code', 'name', 'TECO'),
(675, 512, 'pt', 'name', 'Instituto Superior Manuel Teixeira Gomes'),
(676, 513, 'en', 'name', 'Hillingdon Hospital'),
(677, 514, 'fr', 'name', 'Centre Hospitalier Universitaire de Tours'),
(678, 515, 'en', 'name', 'Cardinal Glennon Children’s Medical Center'),
(679, 516, 'en', 'name', 'Louisiana Board of Regents'),
(680, 517, 'nl', 'name', 'Slingeland Ziekenhuis'),
(681, 518, 'en', 'name', 'Gifu Prefectural Tajimi Hospital'),
(682, 518, 'ja', 'name', 'å²é˜œēœŒē«‹å¤šę²»č¦‹ē—…é™¢'),
(683, 519, 'en', 'name', 'Meitan General Hospital'),
(684, 519, 'zh', 'name', 'ē…¤ē‚­ę€»åŒ»é™¢'),
(685, 520, 'en', 'name', 'Capital University'),
(686, 521, 'en', 'name', 'Alfred I. duPont Hospital for Children'),
(687, 522, 'en', 'name', 'Astrakhan State Technical University'),
(688, 522, 'ru', 'name', 'Астраханский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(689, 523, 'en', 'name', 'Museum of Science'),
(690, 524, 'en', 'name', 'Grady Health System'),
(691, 525, 'no_lang_code', 'name', 'Oxford Biomedical Research'),
(692, 526, 'es', 'name', 'Hospital Virgen de la Luz'),
(693, 527, 'pt', 'name', 'Instituto Superior de Novas ProfissƵes'),
(694, 528, 'en', 'name', 'West Virginia University at Parkersburg'),
(695, 529, 'en', 'name', 'Molde Hospital'),
(696, 529, 'no', 'name', 'Molde sjukehus'),
(697, 530, 'en', 'name', 'Xuan Wu Hospital of the Capital Medical University'),
(698, 530, 'zh', 'name', 'åŒ—äŗ¬åø‚č€å¹“ē—…åŒ»ē–—ē ”ē©¶äø­åæƒ'),
(699, 531, 'en', 'name', 'California Animal Hospital'),
(700, 532, 'en', 'name', 'Ahmedabad Civil Hospital'),
(701, 533, 'en', 'name', 'Applied Technology Council'),
(702, 534, 'en', 'name', 'Sri Devaraj Urs Medical College'),
(703, 535, 'pt', 'name', 'Universidade Gama Filho, University Gama Filho'),
(704, 536, 'en', 'name', 'Lutheran University of Brazil'),
(705, 536, 'es', 'name', 'Universidad Luterana de Brasil'),
(706, 536, 'pt', 'name', 'Universidade Luterana do Brasil'),
(707, 537, 'en', 'name', 'Mito Red Cross Hospital'),
(708, 537, 'ja', 'name', 'ę°“ęˆøčµ¤åå­—ē—…é™¢'),
(709, 538, 'en', 'name', 'Women & Children''s Hospital of Buffalo'),
(710, 539, 'en', 'name', 'Hawaii Department of Health'),
(711, 540, 'en', 'name', 'Tokyo Gakugei University'),
(712, 540, 'ja', 'name', 'ę±äŗ¬å­¦čŠøå¤§å­¦'),
(713, 541, 'en', 'name', 'Hawke''s Bay Hospital'),
(714, 542, 'tr', 'name', 'Ankara Atatürk Eğitim ve Araştırma Hastanesi'),
(715, 543, 'no_lang_code', 'name', 'Hektoen Institute'),
(716, 544, 'en', 'name', 'UK Intelligent Systems Research Institute'),
(717, 545, 'en', 'name', 'Nippon Medical School'),
(718, 545, 'ja', 'name', 'ę—„ęœ¬åŒ»ē§‘å¤§å­¦'),
(719, 546, 'en', 'name', 'Kyoto Prefectural University'),
(720, 546, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹å¤§å­¦'),
(721, 547, 'no_lang_code', 'name', 'BT Group (United Kingdom)'),
(722, 548, 'en', 'name', 'Fukui Red Cross Hospital'),
(723, 548, 'ja', 'name', 'ē¦äŗ•čµ¤åå­—ē—…é™¢'),
(724, 549, 'en', 'name', 'VA Puget Sound Health Care System'),
(725, 550, 'no_lang_code', 'name', 'Gemite Group'),
(726, 551, 'en', 'name', 'Nippon Sport Science University'),
(727, 551, 'ja', 'name', 'ę—„ęœ¬ä½“č‚²å¤§å­¦'),
(728, 552, 'no_lang_code', 'name', 'CAE (Canada)'),
(729, 553, 'en', 'name', 'Archbold Biological Station'),
(730, 554, 'en', 'name', 'Holy Family Hospital Nazareth'),
(731, 555, 'en', 'name', 'Government Medical College'),
(732, 556, 'en', 'name', 'Christopher Newport University'),
(733, 557, 'en', 'name', 'Maebashi Red Cross Hospital'),
(734, 557, 'ja', 'name', 'å‰ę©‹čµ¤åå­—ē—…é™¢'),
(735, 558, 'en', 'name', 'Saint Joseph''s Hospital'),
(736, 559, 'en', 'name', 'St. Joseph''s Hospital and Medical Center'),
(737, 560, 'en', 'name', 'German Telecom'),
(738, 560, 'no_lang_code', 'name', 'Deutsche Telekom (Germany)'),
(739, 561, 'en', 'name', 'Kanazawa Medical Center'),
(740, 561, 'ja', 'name', 'é‡‘ę²¢åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(741, 562, 'en', 'name', 'Philadelphia College of Osteopathic Medicine'),
(742, 563, 'en', 'name', 'National Hospital Organization Mito Medical Center'),
(743, 563, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ę°“ęˆøåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(744, 564, 'en', 'name', 'Timescape Surveys'),
(745, 565, 'en', 'name', 'University Medical Center of Princeton'),
(746, 566, 'it', 'name', 'Ospedale San Giovanni Bellinzona'),
(747, 567, 'en', 'name', 'Mudanjiang Medical University'),
(748, 567, 'zh', 'name', 'ē‰”äø¹ę±ŸåŒ»å­¦é™¢'),
(749, 568, 'it', 'name', 'Ospedale Cisanello'),
(750, 569, 'en', 'name', 'John Muir Medical Center'),
(751, 570, 'en', 'name', 'National University of San Luis'),
(752, 570, 'es', 'name', 'Universidad Nacional de San Luis'),
(753, 571, 'en', 'name', 'Home for Relief of the Suffering'),
(754, 571, 'it', 'name', 'Casa Sollievo della Sofferenza'),
(755, 572, 'en', 'name', 'Naruto University of Education'),
(756, 572, 'ja', 'name', '鳓門教育大学'),
(757, 573, 'en', 'name', 'St. Lawrence River Institute of Environmental Sciences'),
(758, 574, 'en', 'name', 'St. Francis Hospital'),
(759, 575, 'en', 'name', 'Children''s Hospital Colorado'),
(760, 576, 'en', 'name', 'National School of Public Health'),
(761, 577, 'en', 'name', 'National Sun Yat-sen University'),
(762, 578, 'en', 'name', 'Mahatma Phule Krishi Vidyapeeth'),
(763, 579, 'en', 'name', 'Savannah State University'),
(764, 579, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Savannah'),
(765, 580, 'en', 'name', 'Ministry of Health'),
(766, 580, 'ms', 'name', 'Kementerian Kesihatan Singapura'),
(767, 580, 'ta', 'name', 'ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®šąÆą®•ą®¾ą®¤ą®¾ą®° ą®…ą®®ąÆˆą®šąÆą®šą®•ą®®ąÆ'),
(768, 580, 'zh', 'name', 'ę–°åŠ å”å«ē”ŸéƒØ'),
(769, 581, 'en', 'name', 'Ramkhamhaeng University'),
(770, 581, 'th', 'name', 'ดหาวณทยาคัยราดคำแหง'),
(771, 582, 'es', 'name', 'Hospital Nacional Cayetano Heredia'),
(772, 583, 'en', 'name', 'Hemwati Nandan Bahuguna Garhwal University'),
(773, 583, 'hi', 'name', 'गढ़वाल ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(774, 584, 'en', 'name', 'New York Academy of Medicine'),
(775, 584, 'fr', 'name', 'AcadƩmie new-yorkaise de mƩdecine'),
(776, 585, 'en', 'name', 'Mae Fah Luang University'),
(777, 585, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąø”ą¹ˆąøŸą¹‰ąø²ąø«ąø„ąø§ąø‡'),
(778, 586, 'no_lang_code', 'name', 'Glazer Medical Solutions (United States)'),
(779, 587, 'en', 'name', 'Boise VA Medical Center'),
(780, 588, 'en', 'name', 'Korea Polar Research Institute'),
(781, 588, 'ko', 'name', 'ź·¹ģ§€ģ—°źµ¬ģ†Œ'),
(782, 589, 'en', 'name', 'MedStar Union Memorial Hospital'),
(783, 590, 'en', 'name', 'Presbyterian Hospital'),
(784, 591, 'en', 'name', 'Takasaki University of Health and Welfare'),
(785, 591, 'ja', 'name', 'é«˜å“Žå„åŗ·ē¦ē„‰å¤§å­¦'),
(786, 592, 'en', 'name', 'Westmar University'),
(787, 593, 'en', 'name', 'Cho Ray Hospital'),
(788, 593, 'vi', 'name', 'Bệnh viện Chợ Rįŗ«y'),
(789, 594, 'en', 'name', 'Good Samaritan Hospital'),
(790, 595, 'no_lang_code', 'name', 'Ericsson (Canada)'),
(791, 596, 'en', 'name', 'Central Maine Medical Center'),
(792, 597, 'en', 'name', 'Indira Gandhi Medical College and Research Institute'),
(793, 598, 'en', 'name', 'Chapel Allerton Hospital'),
(794, 599, 'en', 'name', 'Arak University'),
(795, 599, 'fa', 'name', 'دانؓگاه Ų§Ų±Ų§Ś©'),
(796, 600, 'en', 'name', 'St Bartholomew''s Hospital'),
(797, 601, 'en', 'name', 'Juravinski Hospital'),
(798, 602, 'en', 'name', 'University of Maine at Presque Isle'),
(799, 603, 'en', 'name', 'James Paget University Hospital'),
(800, 604, 'en', 'name', 'University Medical Center of El Paso'),
(801, 605, 'en', 'name', 'Cama and Albless Hospital'),
(802, 606, 'en', 'name', 'VA Palo Alto Health Care System'),
(803, 607, 'en', 'name', 'Cattinara Hospital'),
(804, 607, 'it', 'name', 'Ospedale di Cattinara'),
(805, 608, 'it', 'name', 'Azienda Ospedaliero Universitaria San Giovanni Battista'),
(806, 609, 'en', 'name', 'King Edward Memorial Hospital'),
(807, 610, 'en', 'name', 'Omaha VA Medical Center'),
(808, 611, 'en', 'name', 'Geological Survey of India'),
(809, 611, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤­ą„‚ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤øą¤°ą„ą¤µą„‡ą¤•ą„ą¤·ą¤£'),
(810, 612, 'de', 'name', 'UniversitƤtsklinikum des Saarlandes'),
(811, 613, 'tr', 'name', 'İstanbul Eğitim ve Araştırma Hastanesi'),
(812, 614, 'en', 'name', 'Mater Research'),
(813, 615, 'en', 'name', 'HR Wallingford'),
(814, 616, 'bn', 'name', 'ą¦—ą§Œą¦¹ą¦¾ą¦Ÿą§€ ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(815, 616, 'en', 'name', 'Gauhati Medical College and Hospital'),
(816, 617, 'en', 'name', 'Peking University Cancer Hospital'),
(817, 617, 'zh', 'name', 'åŒ—äŗ¬å¤§å­¦č‚æē˜¤åŒ»é™¢'),
(818, 618, 'en', 'name', 'Ferrarotto Hospital'),
(819, 619, 'en', 'name', 'Antioch University New England'),
(820, 620, 'pt', 'name', 'Instituto Superior de Espinho'),
(821, 621, 'en', 'name', 'Southend Hospital'),
(822, 622, 'en', 'name', 'Salus University'),
(823, 623, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(824, 623, 'en', 'name', 'Belarusian State Medical University'),
(825, 623, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(826, 624, 'en', 'name', 'Karpov Institute of Physical Chemistry'),
(827, 624, 'ru', 'name', 'Акционерное общество ŠžŃ€Š“ена Š¢Ń€ŃƒŠ“ового ŠšŃ€Š°ŃŠ½Š¾Š³Š¾ Знамени Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ физико-химический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š›.ŠÆ. ŠšŠ°Ń€ŠæŠ¾Š²Š°'),
(828, 625, 'en', 'name', 'Natural History Museum of Los Angeles County'),
(829, 626, 'en', 'name', 'Bay Pines VA Healthcare System');
INSERT INTO `ror_settings` VALUES
(830, 627, 'en', 'name', 'Bauman Moscow State Technical University'),
(831, 627, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š­. Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(832, 628, 'cy', 'name', 'Yr Amgueddfa Brydeinig'),
(833, 628, 'en', 'name', 'British Museum'),
(834, 629, 'en', 'name', 'Chengdu University of Traditional Chinese Medicine'),
(835, 629, 'zh', 'name', 'ęˆéƒ½äø­åŒ»čÆå¤§å­¦'),
(836, 630, 'en', 'name', 'Sinclair Community College'),
(837, 631, 'en', 'name', 'Museum of Heilongjiang Province'),
(838, 631, 'zh', 'name', 'é»‘é¾™ę±Ÿēœåšē‰©é¦†'),
(839, 632, 'no_lang_code', 'name', 'Theragen'),
(840, 633, 'en', 'name', 'Francis Marion University'),
(841, 634, 'en', 'name', 'Al Noor Hospitals'),
(842, 635, 'en', 'name', 'SĆørlandet Hospital Arendal'),
(843, 635, 'no', 'name', 'SĆørlandet Sykehus HF'),
(844, 636, 'no_lang_code', 'name', 'Talisman Energy'),
(845, 637, 'no_lang_code', 'name', 'Alion Science and Technology (United States)'),
(846, 638, 'de', 'name', 'Univ. Klinikum Graz'),
(847, 638, 'en', 'name', 'Graz University Hospital'),
(848, 639, 'en', 'name', 'National Taiwan University of Science and Technology'),
(849, 640, 'no_lang_code', 'name', 'Lerdsin Hospital'),
(850, 640, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ą¹€ąø„ąø“ąø”ąøŖąø“ąø™'),
(851, 641, 'en', 'name', 'Plains Health Centre'),
(852, 642, 'en', 'name', 'Ellis Hospital'),
(853, 643, 'no_lang_code', 'name', 'Tianjin Huanhu Hospital'),
(854, 643, 'zh', 'name', 'å¤©ę“„åø‚ēŽÆę¹–åŒ»é™¢'),
(855, 644, 'en', 'name', 'South Tyneside District Hospital'),
(856, 645, 'en', 'name', 'Manipal College of Medical Sciences'),
(857, 646, 'ja', 'name', 'ę˜Ÿćƒ¶äø˜åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(858, 646, 'no_lang_code', 'name', 'Hoshigaoka Medical Center'),
(859, 647, 'en', 'name', 'Korea National Institute of Health'),
(860, 648, 'en', 'name', 'Middlesex Hospital'),
(861, 649, 'ja', 'name', '池田市立病院'),
(862, 649, 'no_lang_code', 'name', 'Ikeda Municipal Hospital'),
(863, 650, 'no_lang_code', 'name', 'PerkinElmer Biosignal'),
(864, 651, 'no_lang_code', 'name', 'Miltenyi Biotec (Germany)'),
(865, 652, 'en', 'name', 'Jessa Hospital'),
(866, 652, 'nl', 'name', 'Jessa Ziekenhuis'),
(867, 653, 'en', 'name', 'Nakamura Gakuen University'),
(868, 653, 'ja', 'name', 'äø­ę‘å­¦åœ’å¤§å­¦'),
(869, 654, 'en', 'name', 'Kindai University Hospital'),
(870, 654, 'ja', 'name', 'čæ‘ē•æå¤§å­¦åŒ»å­¦éƒØ é™„å±žē—…é™¢'),
(871, 655, 'en', 'name', 'King George Hospital'),
(872, 656, 'en', 'name', 'Amref Health Africa'),
(873, 657, 'it', 'name', 'Ospedale San Filippo Neri'),
(874, 658, 'no_lang_code', 'name', 'Arttic (France)'),
(875, 659, 'en', 'name', 'Doheny Eye Institute'),
(876, 660, 'no_lang_code', 'name', 'EA Technology'),
(877, 661, 'en', 'name', 'Chiba Institute of Technology'),
(878, 661, 'ja', 'name', 'åƒč‘‰å·„ę„­å¤§å­¦'),
(879, 662, 'en', 'name', 'University of North Carolina Health Care'),
(880, 663, 'no_lang_code', 'name', 'Quality Biological'),
(881, 664, 'en', 'name', 'Noor Eye Hospital'),
(882, 664, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ś†Ų“Ł…ā€ŒŁ¾Ų²Ų“Ś©ŪŒ Ł†ŁˆŲ±'),
(883, 665, 'en', 'name', 'Ascamm Technologic Center'),
(884, 665, 'es', 'name', 'Centro Tecnológico Ascamm'),
(885, 666, 'en', 'name', 'North Kansas City Hospital'),
(886, 667, 'en', 'name', 'Nenagh Hospital'),
(887, 667, 'ga', 'name', 'OspidƩal an Aonaigh'),
(888, 668, 'en', 'name', 'Western New Mexico University'),
(889, 669, 'en', 'name', 'Natural England'),
(890, 670, 'en', 'name', 'Second Affiliated Hospital of Chongqing Medical University'),
(891, 671, 'en', 'name', 'Oregon University System'),
(892, 672, 'en', 'name', 'Pennsylvania Department of Health'),
(893, 673, 'no_lang_code', 'name', 'General Electric (Canada)'),
(894, 674, 'en', 'name', 'Cameron University'),
(895, 675, 'en', 'name', 'Institute For Defense Analyses'),
(896, 675, 'es', 'name', 'Instituto de AnƔlisis de la Defensa'),
(897, 676, 'no_lang_code', 'name', 'TDA Research (United States)'),
(898, 677, 'en', 'name', 'Lilavati Hospital & Research Centre'),
(899, 678, 'en', 'name', 'Belvidere Hospital'),
(900, 679, 'en', 'name', 'King Edward VII Hospital'),
(901, 680, 'en', 'name', 'American Psychological Association'),
(902, 681, 'en', 'name', 'Gimpo Airport Wooridul Spine Hospital'),
(903, 681, 'ko', 'name', 'ģ„œģšøģš°ė¦¬ė“¤ė³‘ģ›'),
(904, 682, 'en', 'name', 'Mississippi Valley State University'),
(905, 683, 'cs', 'name', 'Institut postgraduĆ”lnĆ­ho vzdělĆ”vĆ”nĆ­ ve zdravotnictvĆ­'),
(906, 683, 'en', 'name', 'Institute for Postgraduate Medical Education'),
(907, 684, 'en', 'name', 'Operation PAR'),
(908, 685, 'en', 'name', 'Doctor NegrĆ­n University Hospital'),
(909, 685, 'es', 'name', 'Hospital Universitario de Gran Canaria Doctor NegrĆ­n'),
(910, 686, 'en', 'name', 'Instituto Superior Bissaya Barreto'),
(911, 687, 'en', 'name', 'Almirante Nef Naval Hospital'),
(912, 687, 'es', 'name', 'Hospital Naval Almirante Nef'),
(913, 688, 'pt', 'name', 'Universidade Vale do Rio Verde'),
(914, 689, 'en', 'name', 'Myongji University'),
(915, 689, 'ko', 'name', 'ėŖ…ģ§€ėŒ€ķ•™źµ'),
(916, 690, 'en', 'name', 'Sacred Heart Medical Center'),
(917, 691, 'en', 'name', 'Summit Oaks Hospital'),
(918, 692, 'en', 'name', 'Lehigh Valley Health Network'),
(919, 693, 'bn', 'name', 'ą¦¬ą§ą¦°ą§ą¦Æą¦¾ą¦• ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(920, 693, 'en', 'name', 'BRAC University'),
(921, 694, 'en', 'name', 'Southwestern Oregon Community College'),
(922, 695, 'en', 'name', 'PBMA''s H.V. Desai Eye Hospital'),
(923, 696, 'en', 'name', 'Colorado Department of Human Services'),
(924, 697, 'en', 'name', 'Fukuoka Women''s University'),
(925, 697, 'ja', 'name', 'ē¦å²”å„³å­å¤§å­¦'),
(926, 698, 'it', 'name', 'Azienda Ospedaliera Universitaria Integrata Verona'),
(927, 699, 'ja', 'name', '徳島文理大学'),
(928, 699, 'no_lang_code', 'name', 'Tokushima Bunri University'),
(929, 700, 'en', 'name', 'Shriners Hospitals for Children - Portland'),
(930, 701, 'no_lang_code', 'name', 'Whalen Biomedical'),
(931, 702, 'en', 'name', 'Los Angeles Medical Center'),
(932, 703, 'fr', 'name', 'Centre hospitalier Emile Roux'),
(933, 704, 'en', 'name', 'Gynuity Health Projects'),
(934, 705, 'ar', 'name', 'المستؓفى Ų§Ł„ŲµŲÆŲ±ŁŠ'),
(935, 705, 'en', 'name', 'Chest Diseases Hospital'),
(936, 706, 'en', 'name', 'Penn Presbyterian Medical Center'),
(937, 707, 'en', 'name', 'Harper University Hospital'),
(938, 708, 'pt', 'name', 'Escola Superior de Educadores de Infância Maria Ulrich'),
(939, 709, 'en', 'name', 'Kaplan Medical Center'),
(940, 709, 'he', 'name', '×ž×Ø×›×– רפואי קפלן'),
(941, 710, 'fr', 'name', 'HƓpital Kirchberg'),
(942, 711, 'da', 'name', 'Roskilde Sygehus'),
(943, 711, 'en', 'name', 'Roskilde Hospital'),
(944, 712, 'en', 'name', 'Midwestern State University'),
(945, 712, 'fr', 'name', 'UniversitĆ© d''Ɖtat du midwest'),
(946, 713, 'en', 'name', 'Lok Nayak Jai Prakash Narayan Hospital'),
(947, 714, 'en', 'name', 'Clayton State University'),
(948, 715, 'en', 'name', 'Kaiser Permanente'),
(949, 716, 'en', 'name', 'Ijinkai Takeda General Hospital'),
(950, 716, 'ja', 'name', 'ę­¦ē”°ē·åˆē—…é™¢ćÆ'),
(951, 717, 'en', 'name', 'University of South Carolina Upstate'),
(952, 718, 'en', 'name', 'Association of American Universities'),
(953, 718, 'es', 'name', 'Asociación de Universidades Americanas'),
(954, 718, 'fr', 'name', 'Association des universitƩs amƩricaines'),
(955, 719, 'en', 'name', 'American School Health Association'),
(956, 720, 'en', 'name', 'Kathmandu Medical College Teaching Hospital'),
(957, 721, 'es', 'name', 'Hospital FernƔndez'),
(958, 722, 'fi', 'name', 'Mikkelin keskussairaala'),
(959, 723, 'en', 'name', 'Center for Medical, Agricultural and Veterinary Entomology'),
(960, 724, 'no_lang_code', 'name', 'Aetna (United States)'),
(961, 725, 'en', 'name', 'Keimyung University'),
(962, 725, 'ko', 'name', 'ź³„ėŖ…ėŒ€ķ•™źµ'),
(963, 726, 'en', 'name', 'Gartnavel General Hospital'),
(964, 727, 'cy', 'name', 'Adran yr Amgylchedd, Bwyd a Materion Gwledig'),
(965, 727, 'en', 'name', 'Department for Environment Food and Rural Affairs'),
(966, 728, 'en', 'name', 'Suzuka University of Medical Science'),
(967, 728, 'ja', 'name', 'éˆ“é¹æåŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(968, 729, 'en', 'name', 'Shriners Hospitals for Children - Greenville'),
(969, 730, 'en', 'name', 'SRC'),
(970, 731, 'en', 'name', 'Public Dental Service VƤstra Gƶtaland'),
(971, 731, 'sv', 'name', 'FolktandvƄrden VƤstra Gƶtaland'),
(972, 732, 'en', 'name', 'MRC Laboratory of Molecular Biology'),
(973, 733, 'en', 'name', 'Teikyo University Hospital'),
(974, 733, 'ja', 'name', 'åøäŗ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(975, 734, 'en', 'name', 'Danish Maritime Institute'),
(976, 735, 'en', 'name', 'University of Dallas'),
(977, 735, 'es', 'name', 'Universidad de Dallas'),
(978, 735, 'fr', 'name', 'UniversitƩ de Dallas'),
(979, 736, 'en', 'name', 'Leeds Teaching Hospitals NHS Trust'),
(980, 737, 'en', 'name', 'Derriford Hospital'),
(981, 738, 'en', 'name', 'Calvary Hospital'),
(982, 739, 'en', 'name', 'University of Worcester'),
(983, 740, 'en', 'name', 'Mokpo National University'),
(984, 740, 'ko', 'name', 'ėŖ©ķ¬ėŒ€ķ•™źµ'),
(985, 741, 'en', 'name', 'Autonomous University of Queretaro'),
(986, 741, 'es', 'name', 'Universidad Autónoma de Querétaro'),
(987, 742, 'en', 'name', 'American Geophysical Union'),
(988, 743, 'en', 'name', 'Montgomery General Hospital'),
(989, 744, 'en', 'name', 'Catholic University of Santos'),
(990, 744, 'pt', 'name', 'Universidade Católica de Santos'),
(991, 745, 'en', 'name', 'Marywood University'),
(992, 746, 'en', 'name', 'Howard Payne University'),
(993, 747, 'en', 'name', 'Battle Hospital'),
(994, 748, 'en', 'name', 'Ministry of Health'),
(995, 749, 'en', 'name', 'University Malaya Medical Centre'),
(996, 750, 'en', 'name', 'Kyoritsu Women''s University'),
(997, 750, 'ja', 'name', '共立儳子大学'),
(998, 751, 'en', 'name', 'Seacroft Hospital'),
(999, 752, 'en', 'name', 'Tokyo Medical University Hachioji Medical Center'),
(1000, 752, 'ja', 'name', 'ę±äŗ¬åŒ»ē§‘å¤§å­¦å…«ēŽ‹å­åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1001, 753, 'en', 'name', 'Honolulu Community College'),
(1002, 754, 'no_lang_code', 'name', 'SMEC (Australia)'),
(1003, 755, 'ja', 'name', 'ē¦å²”ē—…é™¢'),
(1004, 755, 'no_lang_code', 'name', 'Fukuoka Hospital'),
(1005, 756, 'en', 'name', 'Sookmyung Women''s University'),
(1006, 756, 'ko', 'name', 'ģˆ™ėŖ…ģ—¬ģžėŒ€ķ•™źµ'),
(1007, 757, 'en', 'name', 'Lapland Central Hospital'),
(1008, 757, 'fi', 'name', 'Lapin keskussairaala'),
(1009, 758, 'de', 'name', 'Sternwarte Stuttgart, Stuttgart Observatory'),
(1010, 759, 'en', 'name', 'Eastern Health'),
(1011, 760, 'no_lang_code', 'name', 'Alpha Universe'),
(1012, 761, 'ja', 'name', 'åˆˆč°·č±Šē”°ē·åˆē—…é™¢'),
(1013, 761, 'no_lang_code', 'name', 'Kariya Toyota General Hospital'),
(1014, 762, 'no_lang_code', 'name', 'Sir Hurkisondas Nurrotumdas Medical Research Society'),
(1015, 763, 'en', 'name', 'Hyogo Prefectural Awaji Medical Center'),
(1016, 763, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ę·”č·ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1017, 764, 'en', 'name', 'National University of Health Sciences'),
(1018, 765, 'en', 'name', 'Institute of Nanostructured Materials'),
(1019, 765, 'it', 'name', 'Istituto per lo Studio dei Materiali Nanostrutturati'),
(1020, 766, 'en', 'name', 'American Society of Health-System Pharmacists'),
(1021, 767, 'en', 'name', 'America''s Health Insurance Plans'),
(1022, 768, 'fr', 'name', 'HƓpital Albert Calmette'),
(1023, 769, 'cs', 'name', 'Nemocnice Na Homolce'),
(1024, 769, 'en', 'name', 'Na Homolce Hospital'),
(1025, 770, 'en', 'name', 'College of Saint Benedict and Saint John''s University'),
(1026, 770, 'fr', 'name', 'Collège de saint benedict et université de saint jean'),
(1027, 771, 'en', 'name', 'University of Washington Medical Center'),
(1028, 772, 'en', 'name', 'University of LomƩ'),
(1029, 772, 'fr', 'name', 'UniversitƩ de LomƩ'),
(1030, 773, 'en', 'name', 'Women''s & Children''s Health Research Institute'),
(1031, 774, 'en', 'name', 'Hyogo University of Teacher Education'),
(1032, 774, 'ja', 'name', '兵庫教育大学'),
(1033, 775, 'en', 'name', 'Youjiang Medical College for Nationalities'),
(1034, 775, 'zh', 'name', 'å³ę±Ÿę°‘ę—åŒ»å­¦é™¢'),
(1035, 776, 'en', 'name', 'Charles Sturt University'),
(1036, 777, 'en', 'name', 'Minnesota Department of Human Services'),
(1037, 778, 'en', 'name', 'Royal University Hospital'),
(1038, 779, 'no_lang_code', 'name', 'BioTek (United States)'),
(1039, 780, 'da', 'name', 'Regionshospitalet Skive'),
(1040, 780, 'en', 'name', 'Skive Hospital'),
(1041, 781, 'en', 'name', 'Reinier de Graaf Hospital'),
(1042, 782, 'en', 'name', 'National Institute of Biological Sciences, Beijing'),
(1043, 782, 'zh', 'name', 'åŒ—äŗ¬ē”Ÿå‘½ē§‘å­¦ē ”ē©¶ę‰€'),
(1044, 783, 'en', 'name', 'Van Andel Institute'),
(1045, 784, 'en', 'name', 'American University of Beirut Medical Center'),
(1046, 785, 'en', 'name', 'University of Virginia Health System'),
(1047, 786, 'en', 'name', 'Grey Nuns Community Hospital'),
(1048, 787, 'en', 'name', 'Lutheran Medical Center'),
(1049, 788, 'en', 'name', 'Canterbury Health Laboratories'),
(1050, 789, 'no_lang_code', 'name', 'Westat (United States)'),
(1051, 790, 'en', 'name', 'Highland Hospital'),
(1052, 791, 'en', 'name', 'Governors State University'),
(1053, 792, 'en', 'name', 'Dongseo University'),
(1054, 792, 'ko', 'name', 'ė™ģ„œėŒ€ķ•™źµ'),
(1055, 793, 'en', 'name', 'Herlev Hospital'),
(1056, 794, 'en', 'name', 'Royal Alexandra Hospital'),
(1057, 795, 'en', 'name', 'St. Paul''s Hospital'),
(1058, 796, 'en', 'name', 'Ohio Cancer Research Associates'),
(1059, 797, 'en', 'name', 'Mendota Mental Health Institute'),
(1060, 798, 'en', 'name', 'Tomsk State Pedagogical University'),
(1061, 798, 'ru', 'name', 'Томский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1062, 799, 'en', 'name', 'Carroll College'),
(1063, 800, 'en', 'name', 'University of Wisconsin–La Crosse'),
(1064, 800, 'fr', 'name', 'UniversitĆ© du Wisconsin–La Crosse'),
(1065, 801, 'en', 'name', 'Southern Arizona VA Health Care System'),
(1066, 802, 'en', 'name', 'Punjabi University'),
(1067, 802, 'hi', 'name', 'ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1068, 802, 'pa', 'name', 'ąØŖą©°ąØœąØ¾ąØ¬ą©€ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(1069, 803, 'en', 'name', 'Seoul Veterans Hospital'),
(1070, 804, 'en', 'name', 'Ghent University Hospital'),
(1071, 804, 'nl', 'name', 'Universitair Ziekenhuis Gent'),
(1072, 805, 'en', 'name', 'Monmouth Medical Center'),
(1073, 806, 'pt', 'name', 'Hospital Alemão Oswaldo Cruz'),
(1074, 807, 'en', 'name', 'Grey''s Hospital'),
(1075, 808, 'en', 'name', 'Wyoming State Department of Health'),
(1076, 809, 'en', 'name', 'Federal Rural University of Rio de Janeiro'),
(1077, 809, 'pt', 'name', 'Universidade Federal Rural do Rio de Janeiro'),
(1078, 810, 'en', 'name', 'Kunming University of Science and Technology'),
(1079, 810, 'zh', 'name', 'ę˜†ę˜Žē†å·„å¤§å­¦'),
(1080, 811, 'fr', 'name', 'HƓpital rƩgional'),
(1081, 812, 'en', 'name', 'Auburn Community Hospital'),
(1082, 813, 'en', 'name', 'NIMTS Hospital'),
(1083, 814, 'en', 'name', 'Monroe Carell Jr. Children''s Hospital'),
(1084, 815, 'no_lang_code', 'name', 'Revolution Analytics (United States)'),
(1085, 816, 'en', 'name', 'University of Maine at Farmington'),
(1086, 817, 'no_lang_code', 'name', 'Compact Membrane Systems (United States)'),
(1087, 818, 'en', 'name', 'Kaiser Foundation Hospital'),
(1088, 819, 'en', 'name', 'Iranian Institute for Health Sciences Research'),
(1089, 820, 'en', 'name', 'Lake Superior State University'),
(1090, 820, 'fr', 'name', 'UniversitĆ© d''Ɖtat du lac supĆ©rieur'),
(1091, 821, 'en', 'name', 'Hendrix College'),
(1092, 822, 'en', 'name', 'Independent University of Moscow'),
(1093, 822, 'ru', 'name', 'ŠŠµŠ·Š°Š²ŠøŃŠøŠ¼Ń‹Š¹ Московский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1094, 823, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© قطر'),
(1095, 823, 'en', 'name', 'Qatar University'),
(1096, 823, 'es', 'name', 'Universidad de Catar'),
(1097, 824, 'en', 'name', 'Hunterdon Medical Center'),
(1098, 825, 'pt', 'name', 'Instituto Superior de Línguas e Administração'),
(1099, 826, 'pt', 'name', 'Hospital Militar Principal'),
(1100, 827, 'en', 'name', 'Udmurt State University'),
(1101, 827, 'ru', 'name', 'Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1102, 828, 'en', 'name', 'Nagaoka University of Technology'),
(1103, 828, 'ja', 'name', 'é•·å²”ęŠ€č”“ē§‘å­¦å¤§å­¦'),
(1104, 829, 'en', 'name', 'Institute of Post Graduate Medical Education and Research'),
(1105, 830, 'en', 'name', 'Prince George''s Community College'),
(1106, 831, 'en', 'name', 'Barnsley Hospital NHS Foundation Trust'),
(1107, 832, 'en', 'name', 'Silsoe Research Institute'),
(1108, 833, 'no_lang_code', 'name', 'Agnico Eagle (Canada)'),
(1109, 834, 'en', 'name', 'Saint Francis Hospital'),
(1110, 835, 'en', 'name', 'Santa Maria alle Scotte Hospital'),
(1111, 835, 'it', 'name', 'Ospedale Santa Maria alle Scotte'),
(1112, 836, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد Ł„Ł„Ł‚ŁˆŲ§ŲŖ المسلحة'),
(1113, 836, 'en', 'name', 'King Fahd Armed Forces Hospital'),
(1114, 837, 'it', 'name', 'Azienda ospedaliera "Bianchi-Melacrino-Morelli"'),
(1115, 838, 'en', 'name', 'University of Wisconsin–Superior'),
(1116, 838, 'fr', 'name', 'UniversitĆ© du Wisconsin–Superior'),
(1117, 839, 'pt', 'name', 'Hospital de Faro EPE'),
(1118, 840, 'pt', 'name', 'Escola Superior de Educação de Torres Novas'),
(1119, 841, 'en', 'name', 'Highland Hospital'),
(1120, 842, 'en', 'name', 'Butler Hospital'),
(1121, 843, 'en', 'name', 'Guangzhou Medical University'),
(1122, 843, 'zh', 'name', 'å¹æå·žåŒ»ē§‘å¤§å­¦'),
(1123, 844, 'en', 'name', 'Ural State University of Economics'),
(1124, 844, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1125, 845, 'es', 'name', 'Hospital Xeral Calde'),
(1126, 846, 'pt', 'name', 'Hospital de São José'),
(1127, 847, 'en', 'name', 'Vestfold University College'),
(1128, 848, 'en', 'name', 'National Tsing Hua University'),
(1129, 849, 'en', 'name', 'National Development and Research Institutes'),
(1130, 850, 'en', 'name', 'Tunghai University'),
(1131, 850, 'zh', 'name', 'ę±ęµ·å¤§å­ø'),
(1132, 851, 'tr', 'name', 'Dicle Üniversitesi Hastaneleri'),
(1133, 852, 'en', 'name', 'VA San Diego Healthcare System'),
(1134, 853, 'en', 'name', 'Nevill Hall Hospital'),
(1135, 854, 'en', 'name', 'General Hospital of Athens G. Genimatas'),
(1136, 855, 'es', 'name', 'Hospital del Salvador'),
(1137, 856, 'en', 'name', 'Al Amal Hospital Jeddah'),
(1138, 857, 'en', 'name', 'Latrobe Regional Hospital'),
(1139, 858, 'tr', 'name', 'Adana Numune Eğitim ve Araştırma Hastanesi'),
(1140, 859, 'es', 'name', 'Hospital Alto Deba'),
(1141, 860, 'en', 'name', 'Australian Centre for Sexual Health'),
(1142, 861, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒĻ‚ Ī•ĻĻ…ĪøĻĻŒĻ‚ Ī£Ļ„Ī±Ļ…ĻĻŒĻ‚'),
(1143, 861, 'en', 'name', 'Hellenic Red Cross'),
(1144, 862, 'en', 'name', 'Hollywood Private Hospital'),
(1145, 863, 'no_lang_code', 'name', 'Teleflex (Canada)'),
(1146, 864, 'no_lang_code', 'name', 'Shanghai Changzheng Hospital'),
(1147, 865, 'en', 'name', 'Golden Jubilee National Hospital'),
(1148, 866, 'fr', 'name', 'Centre Hospitalier Universitaire Amiens-Picardie'),
(1149, 867, 'en', 'name', 'Canisius College'),
(1150, 868, 'no_lang_code', 'name', 'Novogene Bioinformatics Institute'),
(1151, 869, 'en', 'name', 'Akron Children''s Hospital'),
(1152, 870, 'en', 'name', 'Shanghai Ninth People''s Hospital'),
(1153, 870, 'zh', 'name', 'äøŠęµ·ē¬¬ä¹äŗŗę°‘åŒ»é™¢'),
(1154, 871, 'en', 'name', 'Applied Research and Communications Fund'),
(1155, 872, 'en', 'name', 'Sri Ramachandra Institute of Higher Education and Research'),
(1156, 872, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤°ą¤¾ą¤®ą¤šą¤‚ą¤¦ą„ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤¾ą¤²ą¤æą¤œ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(1157, 872, 'ta', 'name', 'ą®šą®æą®±ąÆ€ ą®‡ą®°ą®¾ą®®ą®šąÆą®šą®ØąÆą®¤ą®æą®°ą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®ÆąÆą®µąÆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(1158, 873, 'en', 'name', 'University of West Alabama'),
(1159, 874, 'en', 'name', 'Michigan Health Council'),
(1160, 875, 'pt', 'name', 'Hospital Prof. Dr. Fernando Fonseca'),
(1161, 876, 'ja', 'name', 'ē­‘ę³¢čØ˜åæµē—…é™¢'),
(1162, 876, 'no_lang_code', 'name', 'Tsukuba Memorial Hospital'),
(1163, 877, 'it', 'name', 'Ospedale Sant''Anna'),
(1164, 878, 'no_lang_code', 'name', 'Praxis (United States)'),
(1165, 879, 'en', 'name', 'Government Medical College and Hospital'),
(1166, 880, 'en', 'name', 'Sikkim Manipal University'),
(1167, 881, 'no', 'name', 'BƦrum Sykehus'),
(1168, 882, 'no_lang_code', 'name', 'Integrated Plant Genetics (United States)'),
(1169, 883, 'it', 'name', 'Ospedale Sacro Cuore Don Calabria'),
(1170, 884, 'en', 'name', 'Embry–Riddle Aeronautical University'),
(1171, 885, 'en', 'name', 'National Institute of Agricultural Botany'),
(1172, 886, 'ja', 'name', 'äø­é€šē·åˆē—…é™¢'),
(1173, 886, 'no_lang_code', 'name', 'Nakadōri General Hospital'),
(1174, 887, 'en', 'name', 'Oklahoma City VA Medical Center'),
(1175, 888, 'en', 'name', 'Southeast Missouri State University'),
(1176, 889, 'en', 'name', 'Craig Hospital'),
(1177, 890, 'en', 'name', 'North Memorial Medical Center'),
(1178, 891, 'tr', 'name', 'Haseki Eğitim ve Araştırma Hastanesi'),
(1179, 892, 'en', 'name', 'South Infirmary Victoria University Hospital'),
(1180, 893, 'en', 'name', 'Nagatomi Neurosurgical Hospital'),
(1181, 893, 'ja', 'name', 'ę°øå†Øč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(1182, 894, 'it', 'name', 'Ospedale Maggiore Carlo Alberto Pizzardi'),
(1183, 895, 'en', 'name', 'Raja Isteri Pengiran Anak Saleha Hospital'),
(1184, 896, 'en', 'name', 'Kemerovo State Medical Academy'),
(1185, 896, 'ru', 'name', 'ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(1186, 897, 'en', 'name', 'Canadian Institute for Health Information'),
(1187, 898, 'en', 'name', 'San Salvatore Hospital'),
(1188, 898, 'it', 'name', 'Presidio Ospedaliero San Salvatore - Pesaro'),
(1189, 899, 'en', 'name', 'Graduate Hospital'),
(1190, 900, 'no_lang_code', 'name', 'Glsynthesis'),
(1191, 901, 'en', 'name', 'Glanrhyd Hospital'),
(1192, 902, 'fr', 'name', 'Centre Hospitalier Universitaire Brugmann'),
(1193, 903, 'fr', 'name', 'Centre Hospitalier Jean-Rostand'),
(1194, 904, 'en', 'name', 'Cheng Shiu University'),
(1195, 905, 'en', 'name', 'Dowling College'),
(1196, 906, 'en', 'name', 'St. Luke''s Hospital'),
(1197, 907, 'en', 'name', 'National Hospital of Sri Lanka'),
(1198, 908, 'en', 'name', 'CRUK/MRC Oxford Institute for Radiation Oncology'),
(1199, 909, 'en', 'name', 'Iranian Academy of Medical Sciences'),
(1200, 909, 'fa', 'name', 'فرهنگستان Ų¹Ł„ŁˆŁ… پزؓکی Ų¬Ł…Ł‡ŁˆŲ±ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ±Ų§Ł†ā€Žā€Ž'),
(1201, 910, 'en', 'name', 'Kaiser Permanente Walnut Creek Medical Center'),
(1202, 911, 'en', 'name', 'Prince Philip Dental Hospital'),
(1203, 911, 'zh', 'name', 'č²č‡˜ē‰™ē§‘é†«é™¢'),
(1204, 912, 'en', 'name', 'Riverview Medical Center'),
(1205, 913, 'en', 'name', 'Indira Gandhi Government Medical College & Hospital'),
(1206, 913, 'hi', 'name', 'इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ व ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(1207, 914, 'en', 'name', 'Linyi People''s Hospital'),
(1208, 914, 'zh', 'name', 'äø“ę²‚åø‚äŗŗę°‘åŒ»é™¢'),
(1209, 915, 'en', 'name', 'St. Luke''s-Roosevelt Hospital Center'),
(1210, 916, 'ja', 'name', 'ćƒ‘ćƒŠć‚½ćƒ‹ćƒƒć‚Æ'),
(1211, 916, 'no_lang_code', 'name', 'Panasonic (Japan)'),
(1212, 917, 'en', 'name', 'Queens Hospital Center'),
(1213, 918, 'de', 'name', 'München Klinik Bogenhausen'),
(1214, 919, 'en', 'name', 'Himeji Dokkyo University'),
(1215, 919, 'ja', 'name', 'å§«č·ÆēØå”å¤§å­¦'),
(1216, 920, 'en', 'name', 'Affiliated Hospital of Xuzhou Medical College'),
(1217, 921, 'en', 'name', 'University Clinic of Traumatology'),
(1218, 922, 'nl', 'name', 'Spaarne Ziekenhuis'),
(1219, 923, 'en', 'name', 'Muhlenberg Regional Medical Center'),
(1220, 924, 'en', 'name', 'Prince Philip Hospital'),
(1221, 925, 'en', 'name', 'University of Tennessee at Martin'),
(1222, 926, 'sv', 'name', 'Hallands sjukhus Kungsbacka'),
(1223, 927, 'de', 'name', 'Klinikum Region Hannover'),
(1224, 928, 'en', 'name', 'Anqing Normal University'),
(1225, 928, 'zh', 'name', 'å®‰åŗ†åøˆčŒƒå­¦é™¢'),
(1226, 929, 'no_lang_code', 'name', 'Italtel (Italy)'),
(1227, 930, 'fr', 'name', 'HƓpital 20 Aoƻt'),
(1228, 931, 'da', 'name', 'Medicinsk-historisk Museum i NƦstved'),
(1229, 932, 'en', 'name', 'University of Agriculture in Krakow'),
(1230, 932, 'pl', 'name', 'Uniwersytet Rolniczy im. Hugona Kołłątaja w Krakowie'),
(1231, 933, 'en', 'name', 'Rotorua Hospital'),
(1232, 934, 'pt', 'name', 'Universidade Cidade de SĆ£o Paulo'),
(1233, 935, 'pt', 'name', 'Hospital de Egas Moniz'),
(1234, 936, 'ja', 'name', 'ę“›å’Œä¼šéŸ³ē¾½ē—…é™¢'),
(1235, 936, 'no_lang_code', 'name', 'Rakuwakai Otowa Hospital'),
(1236, 937, 'en', 'name', 'St Vincent''s Health'),
(1237, 938, 'en', 'name', 'University of Groningen'),
(1238, 938, 'nl', 'name', 'Rijksuniversiteit Groningen'),
(1239, 939, 'ar', 'name', 'وزارة الصحة'),
(1240, 939, 'en', 'name', 'Ministry of Health'),
(1241, 940, 'en', 'name', 'Manitoba Pork Council'),
(1242, 941, 'en', 'name', 'Doctors Medical Center'),
(1243, 942, 'no_lang_code', 'name', 'Huadong Hospital'),
(1244, 942, 'zh', 'name', 'å¤ę—¦å¤§å­¦é™„å±žåŽäøœåŒ»é™¢'),
(1245, 943, 'no_lang_code', 'name', 'COM DEV International'),
(1246, 944, 'en', 'name', 'Delaware Division of Public Health'),
(1247, 945, 'en', 'name', 'SkellefteƄ Hospital'),
(1248, 945, 'sv', 'name', 'SkellefteƄ Lasarett'),
(1249, 946, 'no_lang_code', 'name', 'Yogi Vemana University'),
(1250, 946, 'ta', 'name', 'யோகி வேமனா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(1251, 946, 'te', 'name', 'యోగి వేమన ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(1252, 947, 'no_lang_code', 'name', 'Golder Associates (Canada)'),
(1253, 948, 'en', 'name', 'Gifu Municipal Hospital'),
(1254, 948, 'ja', 'name', 'å²é˜œåø‚ę°‘ē—…é™¢'),
(1255, 949, 'en', 'name', 'Beijing Technology and Business University'),
(1256, 949, 'zh', 'name', 'åŒ—äŗ¬å·„å•†å¤§å­¦'),
(1257, 950, 'en', 'name', 'Beijing Tongren Hospital'),
(1258, 950, 'zh', 'name', 'é¦–éƒ½åŒ»ē§‘å¤§å­¦é™„å±žåŒ—äŗ¬åŒä»åŒ»é™¢'),
(1259, 951, 'ko', 'name', '강북삼성병원'),
(1260, 951, 'no_lang_code', 'name', 'Kangbuk Samsung Hospital'),
(1261, 952, 'en', 'name', 'University of Alberta Hospital'),
(1262, 953, 'en', 'name', 'Lesley University'),
(1263, 954, 'en', 'name', 'Twin Cities Public Television'),
(1264, 955, 'en', 'name', 'Kazan State Medical University'),
(1265, 955, 'ru', 'name', 'Казанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1266, 956, 'en', 'name', 'Lewis & Clark College'),
(1267, 957, 'en', 'name', 'Universeum'),
(1268, 958, 'tr', 'name', 'Ankara Numune Eğitim ve Araştırma Hastanesi'),
(1269, 959, 'fr', 'name', 'HƓpital Mongi Slim'),
(1270, 960, 'en', 'name', 'Hiroshima General Hospital'),
(1271, 960, 'ja', 'name', 'åŗƒå³¶ē·åˆē—…é™¢'),
(1272, 961, 'en', 'name', 'Northwest Community Hospital'),
(1273, 962, 'de', 'name', 'Umweltbundesamt'),
(1274, 962, 'en', 'name', 'Environment Agency Austria'),
(1275, 963, 'en', 'name', 'Indraprastha Apollo Hospitals'),
(1276, 964, 'en', 'name', 'Yokohama Welfare Service Association'),
(1277, 965, 'en', 'name', 'Johns Hopkins All Children''s Hospital'),
(1278, 966, 'en', 'name', 'National University of Kaohsiung'),
(1279, 967, 'es', 'name', 'Hospital Universitario Fundación Alcorcón'),
(1280, 968, 'pt', 'name', 'Hospital do EspĆ­rito Santo'),
(1281, 969, 'pt', 'name', 'Universidade Santa Úrsula'),
(1282, 970, 'en', 'name', 'Cheng Hsin General Hospital'),
(1283, 971, 'en', 'name', 'Sojo University'),
(1284, 971, 'ja', 'name', '哇城大学'),
(1285, 972, 'en', 'name', 'University Health Care System'),
(1286, 973, 'ja', 'name', 'ē¦å²”å¾³ę“²ä¼šē—…é™¢'),
(1287, 973, 'no_lang_code', 'name', 'Fukuoka Tokushukai Hospital'),
(1288, 974, 'ja', 'name', 'åø‚ē«‹čˆžé¶“åø‚ę°‘ē—…é™¢'),
(1289, 974, 'no_lang_code', 'name', 'Maizuru Municipal Hospital'),
(1290, 975, 'en', 'name', 'Moscow State Aviation Technological University'),
(1291, 975, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. Š­. Циолковского'),
(1292, 976, 'es', 'name', 'Hospital Universitario Austral'),
(1293, 977, 'en', 'name', 'Crichton Royal Hospital'),
(1294, 978, 'en', 'name', 'Bangour Village Hospital'),
(1295, 979, 'en', 'name', 'Health Research Institute of the Hospital ClĆ­nico San Carlos'),
(1296, 979, 'es', 'name', 'Instituto de Investigación Sanitaria del Hospital Clínico San Carlos'),
(1297, 980, 'en', 'name', 'Shandong Pingyi Tianyu Museum of Natural History'),
(1298, 980, 'zh', 'name', 'å±±äøœēœå¤©å®‡č‡Ŗē„¶åšē‰©é¦†'),
(1299, 981, 'en', 'name', 'Jacksonville State University'),
(1300, 981, 'fr', 'name', 'UniversitĆ© d''Ɖtat de jacksonville'),
(1301, 982, 'de', 'name', 'Zentrum für Sonnenenergie- und Wasserstoff-Forschung Baden-Württemberg'),
(1302, 982, 'en', 'name', 'Centre for Solar Energy and Hydrogen Research Baden-Württemberg'),
(1303, 983, 'ko', 'name', 'ė³“ė¼ė§¤ 병원'),
(1304, 983, 'no_lang_code', 'name', 'Boramae Medical Center'),
(1305, 984, 'en', 'name', 'MedStar Franklin Square Medical Center'),
(1306, 985, 'bn', 'name', 'ঢাকা মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(1307, 985, 'en', 'name', 'Dhaka Medical College and Hospital'),
(1308, 986, 'en', 'name', 'Wested'),
(1309, 987, 'en', 'name', 'Health Sciences and Nutrition'),
(1310, 988, 'en', 'name', 'Tianjin Medical University Cancer Institute and Hospital'),
(1311, 988, 'zh', 'name', 'å¤©ę“„åŒ»ē§‘å¤§å­¦č‚æē˜¤åŒ»é™¢'),
(1312, 989, 'no_lang_code', 'name', 'Maharat Nakhon Ratchasima Hospital'),
(1313, 989, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø£ąø²ąøŠąø™ąø„ąø£ąø£ąø²ąøŠąøŖąøµąø”ąø²'),
(1314, 990, 'en', 'name', 'University of Azad Jammu and Kashmir'),
(1315, 991, 'en', 'name', 'South London and Maudsley NHS Foundation Trust'),
(1316, 992, 'en', 'name', 'St Peter''s Hospital'),
(1317, 993, 'en', 'name', 'York College, City University of New York'),
(1318, 994, 'no_lang_code', 'name', 'En Chu Kong Hospital'),
(1319, 994, 'zh', 'name', 'č”Œå¤©å®®é†«ē™‚åæ—ę„­é†«ē™‚č²”åœ˜ę³•äŗŗę©äø»å…¬é†«é™¢'),
(1320, 995, 'en', 'name', 'Mackay Memorial Hospital'),
(1321, 995, 'zh', 'name', '馬偕瓀念醫院'),
(1322, 996, 'en', 'name', 'Queen Elizabeth Hospital'),
(1323, 997, 'en', 'name', 'Madonna Rehabilitation Hospital'),
(1324, 998, 'en', 'name', 'Boston Public Health Commission'),
(1325, 999, 'en', 'name', 'English Heritage'),
(1326, 1000, 'no_lang_code', 'name', 'Kai Research (United States)'),
(1327, 1001, 'en', 'name', 'MRC Cancer Unit'),
(1328, 1002, 'en', 'name', 'Edith Nourse Rogers Memorial Veterans Hospital'),
(1329, 1003, 'de', 'name', 'Stiftung TierƤrztliche Hochschule Hannover'),
(1330, 1003, 'en', 'name', 'University of Veterinary Medicine Hannover, Foundation'),
(1331, 1004, 'en', 'name', 'Catholic University of Health and Allied Sciences'),
(1332, 1005, 'en', 'name', 'Hamanomachi Hospital'),
(1333, 1005, 'ja', 'name', 'ęµœć®ē”ŗē—…é™¢'),
(1334, 1006, 'en', 'name', 'Providence Portland Medical Center'),
(1335, 1007, 'en', 'name', 'Jeonju University'),
(1336, 1007, 'ko', 'name', 'ģ „ģ£¼ėŒ€ķ•™źµ'),
(1337, 1008, 'pt', 'name', 'Instituto Superior PolitƩcnico do Oeste'),
(1338, 1009, 'en', 'name', 'University of Toledo Medical Center'),
(1339, 1010, 'en', 'name', 'Kyoto City Hospital'),
(1340, 1010, 'ja', 'name', 'äŗ¬éƒ½åø‚ē«‹ē—…é™¢'),
(1341, 1011, 'en', 'name', 'Jefferson College of Health Sciences'),
(1342, 1012, 'de', 'name', 'Hanusch-Krankenhaus'),
(1343, 1012, 'en', 'name', 'Hanusch Hospital'),
(1344, 1013, 'es', 'name', 'Hospital San Juan de Dios'),
(1345, 1014, 'en', 'name', 'Affiliated Hospital of North Sichuan Medical College'),
(1346, 1014, 'zh', 'name', '川北医学院附属医院'),
(1347, 1015, 'no_lang_code', 'name', 'Exodus (Greece)'),
(1348, 1016, 'en', 'name', 'Mangla Hospital and Research Center'),
(1349, 1017, 'ja', 'name', '順天堂大学'),
(1350, 1017, 'no_lang_code', 'name', 'Juntendo University'),
(1351, 1018, 'el', 'name', '251 Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Αεροπορίας'),
(1352, 1018, 'en', 'name', 'Hellenic Airforce General Hospital'),
(1353, 1019, 'az', 'name', 'Azərbaycan Tibb Universiteti'),
(1354, 1019, 'en', 'name', 'Azerbaijan Medical University'),
(1355, 1019, 'ru', 'name', 'АзербайГжанский меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(1356, 1020, 'en', 'name', 'Hahnemann University Hospital'),
(1357, 1021, 'en', 'name', 'Kanagawa Prefectural Institute of Public Health'),
(1358, 1021, 'ja', 'name', 'ē„žå„ˆå·ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(1359, 1022, 'en', 'name', 'Ministry of Health'),
(1360, 1022, 'lo', 'name', 'ąøąø£ąø°ąø—ąø£ąø§ąø‡ąøŖąø²ąø˜ąø²ąø£ąø“ąøŖąøøąø‚'),
(1361, 1023, 'en', 'name', 'Sint Lucas Andreas Hospital'),
(1362, 1023, 'nl', 'name', 'Sint Lucas Andreas Ziekenhuis'),
(1363, 1024, 'en', 'name', 'Government Medical College'),
(1364, 1025, 'en', 'name', 'Morgan Stanley Children''s Hospital'),
(1365, 1026, 'en', 'name', 'Mercy Children''s Hospital'),
(1366, 1027, 'es', 'name', 'Hospital Universitario de Maracaibo'),
(1367, 1028, 'en', 'name', 'New Mexico Highlands University'),
(1368, 1029, 'es', 'name', 'Hospital Clínico de la Universidad Católica'),
(1369, 1030, 'en', 'name', 'Dakota State University'),
(1370, 1031, 'en', 'name', 'University of Ontario Institute of Technology'),
(1371, 1032, 'en', 'name', 'National Institute of Advanced Industrial Science and Technology'),
(1372, 1032, 'ja', 'name', 'ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(1373, 1033, 'no_lang_code', 'name', 'Iogen Corporation'),
(1374, 1034, 'sv', 'name', 'Gƶteborgs barnsjukhus'),
(1375, 1035, 'en', 'name', 'Aultman Hospital'),
(1376, 1036, 'en', 'name', 'Milwaukee VA Medical Center'),
(1377, 1037, 'en', 'name', 'Huston–Tillotson University'),
(1378, 1038, 'en', 'name', 'Gleneagles Hospital'),
(1379, 1039, 'no_lang_code', 'name', 'Hatyai Hospital'),
(1380, 1039, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø«ąø²ąø”ą¹ƒąø«ąøą¹ˆ'),
(1381, 1040, 'en', 'name', 'Federal University of Minas Gerais'),
(1382, 1040, 'fr', 'name', 'UniversitƩ fƩdƩrale du minas gerais'),
(1383, 1040, 'pt', 'name', 'Universidade Federal de Minas Gerais'),
(1384, 1041, 'en', 'name', 'Institute of Agrobiological Sciences'),
(1385, 1041, 'ja', 'name', 'ē”Ÿē‰©ę©Ÿčƒ½åˆ©ē”Øē ”ē©¶éƒØé–€'),
(1386, 1042, 'no_lang_code', 'name', 'Altera (United States)'),
(1387, 1043, 'en', 'name', 'University of North Carolina at Asheville'),
(1388, 1044, 'en', 'name', 'Burwood Hospital'),
(1389, 1045, 'en', 'name', 'Los Angeles County Department of Public Health'),
(1390, 1045, 'es', 'name', 'Departamento de Salud Pública del Condado de Los Ángeles'),
(1391, 1046, 'en', 'name', 'Municipality of Amaroussion'),
(1392, 1047, 'en', 'name', 'Kaiser Permanente Hayward Medical Center'),
(1393, 1048, 'en', 'name', 'Ehime University'),
(1394, 1048, 'ja', 'name', '愛媛大学'),
(1395, 1049, 'en', 'name', 'Kobe Central Hospital'),
(1396, 1049, 'ja', 'name', 'ē„žęˆøäø­å¤®ē—…é™¢'),
(1397, 1050, 'en', 'name', 'Fukuoka Children''s Hospital and Medical Center for Infectious Diseases'),
(1398, 1050, 'ja', 'name', 'ē¦å²”åø‚ē«‹ć“ć©ć‚‚ē—…é™¢'),
(1399, 1051, 'en', 'name', 'Health Policy Alternatives, Inc.'),
(1400, 1052, 'bg', 'name', 'Университет за национално Šø световно стопанство'),
(1401, 1052, 'en', 'name', 'University of National and World Economy'),
(1402, 1052, 'tr', 'name', 'Ulusal ve Uluslararası Ekonomi Üniversitesi'),
(1403, 1053, 'en', 'name', 'Urban Institute'),
(1404, 1054, 'en', 'name', 'Mercy University Hospital'),
(1405, 1055, 'fr', 'name', 'HƓpital Max Fourestier'),
(1406, 1056, 'no_lang_code', 'name', 'Ford (Germany)'),
(1407, 1057, 'en', 'name', 'University System of Georgia'),
(1408, 1058, 'en', 'name', 'Soongsil University'),
(1409, 1058, 'ko', 'name', 'ģˆ­ģ‹¤ėŒ€ķ•™źµ'),
(1410, 1059, 'en', 'name', 'San Francisco Department of Public Health'),
(1411, 1060, 'no_lang_code', 'name', 'Messerschmitt-Bƶlkow-Blohm (Germany)'),
(1412, 1061, 'en', 'name', 'American Academy of Arts and Sciences'),
(1413, 1062, 'en', 'name', 'Buena Vista University'),
(1414, 1063, 'en', 'name', 'Wonkwang University Medical Center'),
(1415, 1063, 'ko', 'name', 'ģ›ź“‘ėŒ€ķ•™źµė³‘ģ›'),
(1416, 1064, 'de', 'name', 'Steinbeis-Stiftung'),
(1417, 1064, 'en', 'name', 'Steinbeis Foundation'),
(1418, 1065, 'en', 'name', 'Nevada Department of Health and Human Services'),
(1419, 1066, 'en', 'name', 'John Hunter Hospital'),
(1420, 1067, 'en', 'name', 'Sparrow Hospital'),
(1421, 1068, 'en', 'name', 'Ministry of Health'),
(1422, 1068, 'km', 'name', 'įž€įŸ’įžšįžŸįž½įž„įžŸįž»įžįž¶įž—įž·įž”įž¶įž›'),
(1423, 1069, 'en', 'name', 'Baylor Medical Center at Garland'),
(1424, 1070, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹äø­å¤®ē—…é™¢'),
(1425, 1070, 'no_lang_code', 'name', 'Niigata Prefectural Central Hospital'),
(1426, 1071, 'en', 'name', 'Jewish Hospital'),
(1427, 1072, 'en', 'name', 'International Cooperative Administrative Support Services'),
(1428, 1073, 'en', 'name', 'VA Ann Arbor Healthcare System'),
(1429, 1074, 'en', 'name', 'Matsunami General Hospital'),
(1430, 1074, 'ja', 'name', 'ę¾ę³¢ē—…é™¢'),
(1431, 1075, 'es', 'name', 'Hospital General de Granollers'),
(1432, 1076, 'en', 'name', 'Henry Ford Hospital'),
(1433, 1076, 'fr', 'name', 'HƓpital henry ford'),
(1434, 1077, 'en', 'name', 'St. Luke''s Episcopal Hospital'),
(1435, 1078, 'en', 'name', 'Public Health Institute'),
(1436, 1079, 'en', 'name', 'Inje University Haeundae Paik Hospital'),
(1437, 1079, 'ko', 'name', 'ģøģ œ ėŒ€ķ•™źµ ķ•“ģš“ėŒ€ 백병원'),
(1438, 1080, 'no_lang_code', 'name', 'Metabolic Solutions'),
(1439, 1081, 'en', 'name', 'University Dental Hospital of Manchester'),
(1440, 1082, 'en', 'name', 'Clinical Center University of Sarajevo'),
(1441, 1083, 'en', 'name', 'Government Medical College'),
(1442, 1083, 'pa', 'name', 'ਸਰਕਾਰੀ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ąØ•ąØ¾ąØ²ąØœ'),
(1443, 1084, 'en', 'name', 'Erie County Medical Center'),
(1444, 1085, 'en', 'name', 'Royal Berkshire Hospital'),
(1445, 1086, 'en', 'name', 'St Helier Hospital'),
(1446, 1087, 'fr', 'name', 'Ɖnergie atomique du Canada'),
(1447, 1087, 'no_lang_code', 'name', 'Atomic Energy (Canada)'),
(1448, 1088, 'en', 'name', 'Brooklyn College'),
(1449, 1088, 'es', 'name', 'College de Brooklyn de la Universidad de la Ciudad de Nueva York'),
(1450, 1089, 'en', 'name', 'The University of Texas at Arlington'),
(1451, 1089, 'fr', 'name', 'UniversitƩ du Texas Ơ Arlington'),
(1452, 1090, 'en', 'name', 'Medical Group Management Association'),
(1453, 1091, 'en', 'name', 'Royal London Hospital'),
(1454, 1092, 'de', 'name', 'Krankenanstalt Rudolfstiftung der Stadt Wien'),
(1455, 1093, 'en', 'name', 'Colorado Department of Public Health and Environment'),
(1456, 1094, 'en', 'name', 'Montgomery County Department of Health and Human Services'),
(1457, 1095, 'en', 'name', 'Far Eastern Memorial Hospital'),
(1458, 1096, 'sv', 'name', 'Ersta sjukhus'),
(1459, 1097, 'en', 'name', 'Sheffield Hallam University'),
(1460, 1098, 'no_lang_code', 'name', 'Science and Engineering Services (United States)'),
(1461, 1099, 'en', 'name', 'National Taipei University of Nursing and Health Science'),
(1462, 1099, 'zh', 'name', 'åœ‹ē«‹č‡ŗåŒ—č­·ē†å„åŗ·å¤§å­ø'),
(1463, 1100, 'en', 'name', 'Mount Elizabeth Hospital'),
(1464, 1100, 'ta', 'name', 'ą®®ą®µąÆą®£ąÆą®ŸąÆ ą®Žą®²ą®æą®šą®ŖąÆ†ą®¤ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(1465, 1101, 'en', 'name', 'Upstate University Hospital'),
(1466, 1102, 'no_lang_code', 'name', 'Kingston Process Metallurgy (Canada)'),
(1467, 1103, 'en', 'name', 'Princess of Wales Hospital'),
(1468, 1104, 'no_lang_code', 'name', 'Ruttonjee Hospital'),
(1469, 1104, 'zh', 'name', '律敦治醫院'),
(1470, 1105, 'en', 'name', 'Pondicherry University'),
(1471, 1105, 'hi', 'name', 'ą¤Ŗą„‰ą¤Øą„ą¤”ą¤æą¤šą„‡ą¤°ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1472, 1105, 'ml', 'name', 'ą“Ŗąµ‹ą“£ąµą“Ÿą“æą“šąµą“šąµ‡ą“°ą“æ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(1473, 1105, 'ta', 'name', 'ą®ŖąÆą®¤ąÆą®µąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(1474, 1105, 'te', 'name', 'ą°Ŗą°¾ą°‚ą°”ą°æą°šą±ą°šą±‡ą°°ą°æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(1475, 1106, 'it', 'name', 'Ospedale Regionale di Locarno'),
(1476, 1107, 'no_lang_code', 'name', 'Aastrom Biosciences (United States)'),
(1477, 1108, 'en', 'name', 'Cantox Health Sciences International'),
(1478, 1109, 'en', 'name', 'Jawaharlal Nehru Medical College'),
(1479, 1110, 'en', 'name', 'Harry S. Truman Memorial Veterans'' Hospital'),
(1480, 1111, 'en', 'name', 'Hillel Yaffe Medical Center'),
(1481, 1112, 'no_lang_code', 'name', 'Seonam University'),
(1482, 1113, 'en', 'name', 'Shriners Hospitals for Children - Cincinnati'),
(1483, 1114, 'en', 'name', 'American Association of Physics Teachers'),
(1484, 1115, 'ar', 'name', 'مستؓفى Ų§Ł„ŁŲ±ŁˆŲ§Ł†ŁŠŲ©'),
(1485, 1115, 'no_lang_code', 'name', 'Farwaniya Hospital'),
(1486, 1116, 'no_lang_code', 'name', 'SomaGenics (United States)'),
(1487, 1117, 'en', 'name', 'John Paul II Hospital'),
(1488, 1117, 'pl', 'name', 'Krakowski Szpital Specjalistyczny im. Jana Pawła II'),
(1489, 1118, 'en', 'name', 'Uppsala University Hospital'),
(1490, 1118, 'sv', 'name', 'Akademiska sjukhuset'),
(1491, 1119, 'en', 'name', 'The Aerospace Corporation'),
(1492, 1120, 'en', 'name', 'Southeastern Oklahoma State University'),
(1493, 1121, 'en', 'name', 'Harrisburg Hospital'),
(1494, 1122, 'no_lang_code', 'name', 'Biotex (United States)'),
(1495, 1123, 'en', 'name', 'North Oaks Health System'),
(1496, 1124, 'en', 'name', 'Nagasaki Kawatana Medical Center'),
(1497, 1124, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹é•·å“Žå·ę£šåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1498, 1125, 'no_lang_code', 'name', 'Juniata College'),
(1499, 1126, 'en', 'name', 'Rajendra Hospital'),
(1500, 1127, 'es', 'name', 'Hospital Carmen y Severo Ochoa'),
(1501, 1128, 'ar', 'name', 'وزارة الصحة'),
(1502, 1128, 'en', 'name', 'Ministry of Health'),
(1503, 1129, 'en', 'name', 'Kowloon Hospital'),
(1504, 1129, 'zh', 'name', '九龍醫院'),
(1505, 1130, 'es', 'name', 'Hospital Sierrallana'),
(1506, 1131, 'en', 'name', 'New York State Office of Mental Health'),
(1507, 1132, 'no_lang_code', 'name', 'Nova Research Company (United States)'),
(1508, 1133, 'en', 'name', 'Garvan Institute of Medical Research'),
(1509, 1134, 'no_lang_code', 'name', 'Schlumberger (France)'),
(1510, 1135, 'hr', 'name', 'Klinička bolnica Merkur'),
(1511, 1136, 'en', 'name', 'Federal University of Santa Maria'),
(1512, 1136, 'es', 'name', 'Universidad Federal de Santa MarĆ­a'),
(1513, 1136, 'pt', 'name', 'Universidade Federal de Santa Maria'),
(1514, 1137, 'no_lang_code', 'name', 'Athens Technology Center (Greece)'),
(1515, 1138, 'en', 'name', 'National Cheng Kung University'),
(1516, 1139, 'en', 'name', 'Kyushu University of Health and Welfare'),
(1517, 1139, 'ja', 'name', 'ä¹å·žäæå„ē¦ē„‰å¤§å­¦'),
(1518, 1140, 'en', 'name', 'Fisk University'),
(1519, 1140, 'es', 'name', 'Universidad de Fisk'),
(1520, 1141, 'en', 'name', 'Basingstoke and North Hampshire Hospital'),
(1521, 1142, 'fr', 'name', 'Centre Hospitalier d''Orsay'),
(1522, 1143, 'en', 'name', 'Benenden Hospital'),
(1523, 1144, 'en', 'name', 'University of Guilan'),
(1524, 1144, 'fa', 'name', 'دانؓگاه ŚÆŪŒŁ„Ų§Ł†'),
(1525, 1145, 'no_lang_code', 'name', 'Hamad General Hospital'),
(1526, 1146, 'en', 'name', 'Affiliated Hospital of Chengde Medical College'),
(1527, 1146, 'zh', 'name', 'ę‰æå¾·åŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(1528, 1147, 'en', 'name', 'Southern Command Hospital'),
(1529, 1148, 'en', 'name', 'Chengdu Military General Hospital'),
(1530, 1148, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęˆéƒ½å†›åŒŗę€»åŒ»é™¢'),
(1531, 1149, 'pt', 'name', 'Hospital Heliópolis'),
(1532, 1150, 'en', 'name', 'Maesot General Hospital'),
(1533, 1150, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ą¹ąø”ą¹ˆąøŖąø­ąø”'),
(1534, 1151, 'en', 'name', 'Heritage Valley Beaver'),
(1535, 1152, 'es', 'name', 'Hospital Ramos MejĆ­a'),
(1536, 1153, 'en', 'name', 'Northwest Nazarene University'),
(1537, 1154, 'en', 'name', 'Northern Light Mercy Hospital'),
(1538, 1155, 'no_lang_code', 'name', 'Corixa Corporation'),
(1539, 1156, 'it', 'name', 'Ospedale San Giacomo Apostolo'),
(1540, 1157, 'no_lang_code', 'name', 'GIUNTI Intenational Division (Italy)'),
(1541, 1158, 'en', 'name', 'Academy of Georgofili'),
(1542, 1158, 'it', 'name', 'Accademia dei Georgofili'),
(1543, 1159, 'gu', 'name', 'મહારાજા ąŖøąŖÆąŖ¾ąŖœą«€ąŖ°ąŖ¾ąŖµ ąŖµąŖæąŖ¶ą«ąŖµąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖ²ąŖÆ'),
(1544, 1159, 'no_lang_code', 'name', 'Maharaja Sayajirao University of Baroda'),
(1545, 1159, 'ta', 'name', 'ą®®ą®•ą®¾ą®°ą®¾ą®œą®¾ ą®šą®¾ą®Æą®¾ą®œą®æą®°ą®¾ą®µąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(1546, 1160, 'en', 'name', 'Santa Casa Hospital'),
(1547, 1161, 'es', 'name', 'Fundación Hospital de Jove'),
(1548, 1162, 'no_lang_code', 'name', 'Automotive Fuel Cell Cooperation (Canada)'),
(1549, 1163, 'en', 'name', 'Ajou University Hospital'),
(1550, 1163, 'ko', 'name', '아주 ėŒ€ķ•™źµ 병원'),
(1551, 1164, 'en', 'name', 'Baystate Franklin Medical Center'),
(1552, 1165, 'tr', 'name', 'Dr Lütfi Kırdar Kartal Eğitim ve Araştırma Hastanesi'),
(1553, 1166, 'en', 'name', 'Shih Chien University'),
(1554, 1167, 'en', 'name', 'King Fahd Military Medical Complex'),
(1555, 1168, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī£ĪµĻĻĻŽĪ½'),
(1556, 1168, 'en', 'name', 'General Hospital of Serres'),
(1557, 1169, 'fr', 'name', 'Institut d''Ɖconomie Rurale'),
(1558, 1170, 'no_lang_code', 'name', 'STMicroelectronics (France)'),
(1559, 1171, 'no_lang_code', 'name', 'First Point Scientific'),
(1560, 1172, 'en', 'name', 'Royal Hospital for Children'),
(1561, 1173, 'en', 'name', 'Hutt Hospital'),
(1562, 1174, 'en', 'name', 'Mercy Hospital for Women'),
(1563, 1175, 'ja', 'name', 'é•·å“ŽåŠ“ē½ē—…é™¢'),
(1564, 1175, 'no_lang_code', 'name', 'Nagasaki Rousai Hospital'),
(1565, 1176, 'no_lang_code', 'name', 'Lickenbrock'),
(1566, 1177, 'no_lang_code', 'name', 'Materials Modification (United States)'),
(1567, 1178, 'en', 'name', 'McLaren Regional Medical Center'),
(1568, 1179, 'en', 'name', 'Rangsit University'),
(1569, 1179, 'th', 'name', 'ดหาวณทยาคัยรังสณต'),
(1570, 1180, 'ar', 'name', 'Ł…Ų±ŁƒŲ² هداسا Ų§Ł„Ų·ŲØŁŠ'),
(1571, 1180, 'en', 'name', 'Hadassah Medical Center'),
(1572, 1181, 'en', 'name', 'Italian Aerospace Research Centre'),
(1573, 1181, 'it', 'name', 'Centro Italiano Ricerche Aerospaziali'),
(1574, 1182, 'en', 'name', 'University of West Georgia'),
(1575, 1183, 'en', 'name', 'Triangle Coalition For Science and Technology Education'),
(1576, 1184, 'en', 'name', 'Royal Belfast Hospital for Sick Children'),
(1577, 1185, 'en', 'name', 'Fairfield Infectious Diseases Hospital'),
(1578, 1186, 'en', 'name', 'Hannam University'),
(1579, 1186, 'ko', 'name', 'ķ•œė‚ØėŒ€ķ•™źµ'),
(1580, 1187, 'pl', 'name', 'Centrum Medyczne Kształcenia Podyplomowego'),
(1581, 1188, 'en', 'name', 'Santa Maria Nuova Hospital'),
(1582, 1188, 'it', 'name', 'Ospedale di Santa Maria Nuova'),
(1583, 1189, 'en', 'name', 'Huzhou Central Hospital'),
(1584, 1189, 'zh', 'name', 'ę¹–å·žåø‚äø­åæƒåŒ»é™¢'),
(1585, 1190, 'bn', 'name', 'কেপিসি মেঔিকাল ą¦•ą¦²ą§‡ą¦œ ও কে ą¦ą¦ø রায় টিবি হাসপাতাল'),
(1586, 1190, 'en', 'name', 'KPC Medical College and Hospital'),
(1587, 1191, 'es', 'name', 'ClĆ­nica La Luz, Hospital La Luz'),
(1588, 1192, 'en', 'name', 'Furness General Hospital'),
(1589, 1193, 'en', 'name', 'Maternity and Children''s Hospital'),
(1590, 1194, 'no_lang_code', 'name', 'E-One Moli Energy (Canada)'),
(1591, 1195, 'en', 'name', 'Central Military Hospital'),
(1592, 1195, 'nl', 'name', 'Centraal Militair Hospitaal'),
(1593, 1196, 'ar', 'name', 'وزارة الصحة Ų§Ł„Ų„ŲŖŲ­Ų§ŲÆŁŠŲ©'),
(1594, 1196, 'en', 'name', 'Federal Ministry of Health'),
(1595, 1197, 'en', 'name', 'University of Sindh'),
(1596, 1197, 'ur', 'name', 'سندھ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(1597, 1198, 'it', 'name', 'Ospedale San Carlo'),
(1598, 1199, 'en', 'name', 'University Health System'),
(1599, 1200, 'ar', 'name', 'Ł‡ŁŠŲ¦Ų© الصحة بدبي'),
(1600, 1200, 'en', 'name', 'Dubai Health Authority'),
(1601, 1201, 'en', 'name', 'Sathyabama Institute of Science and Technology'),
(1602, 1201, 'ta', 'name', 'ą®šą®¤ąÆą®Æą®Ŗą®¾ą®®ą®¾ ą®Ŗā€Œą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(1603, 1201, 'te', 'name', 'ą°øą°¤ą±ą°Æą°­ą°¾ą°® ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(1604, 1202, 'en', 'name', 'Era''s Lucknow Medical College and Hospital'),
(1605, 1203, 'it', 'name', 'Ospedale Cristo Re'),
(1606, 1204, 'en', 'name', 'Rider University'),
(1607, 1204, 'es', 'name', 'Universidad Rider'),
(1608, 1204, 'fr', 'name', 'UniversitƩ de rider'),
(1609, 1205, 'no_lang_code', 'name', 'Dalsa Corporation'),
(1610, 1206, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å¢Øę±ē—…é™¢'),
(1611, 1206, 'no_lang_code', 'name', 'Tokyo Metropolitan Bokutoh Hospital'),
(1612, 1207, 'ja', 'name', 'åæƒč‡“č”€ē®”ć‚»ćƒ³ć‚æćƒ¼åŒ—ęµ·é“å¤§é‡Žē—…é™¢'),
(1613, 1207, 'no_lang_code', 'name', 'Cardiovascular Center Hokkaido Ohno Hospital'),
(1614, 1208, 'pt', 'name', 'Hospital Santa Izabel'),
(1615, 1209, 'en', 'name', 'Sabbatsberg Hospital'),
(1616, 1209, 'sv', 'name', 'Sabbatsbergs Sjukhus'),
(1617, 1210, 'en', 'name', 'Lexington VA Health Care System'),
(1618, 1211, 'en', 'name', 'Lakeshore Hospital'),
(1619, 1212, 'en', 'name', 'Shriners Hospitals for Children - Northern California'),
(1620, 1213, 'en', 'name', 'Scripps Memorial Hospital'),
(1621, 1214, 'cy', 'name', 'Ysbyty Clattebridge'),
(1622, 1214, 'en', 'name', 'Clatterbridge Hospital'),
(1623, 1215, 'en', 'name', 'Jiangxi Provincial People''s Hospital'),
(1624, 1215, 'zh', 'name', 'ę±Ÿč„æēœäŗŗę°‘åŒ»é™¢'),
(1625, 1216, 'en', 'name', 'Repatriation General Hospital'),
(1626, 1217, 'en', 'name', 'University Hospital Ayr'),
(1627, 1218, 'en', 'name', 'Sapporo Azabu Neurosurgical Hospital'),
(1628, 1218, 'ja', 'name', 'ęœ­å¹Œéŗ»ē”Ÿč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(1629, 1219, 'it', 'name', 'SocietĆ  Anonima Italiana Perforazioni E Montaggi'),
(1630, 1219, 'no_lang_code', 'name', 'Saipem (Italy)'),
(1631, 1220, 'en', 'name', 'Nara City Hospital'),
(1632, 1220, 'ja', 'name', 'åø‚ē«‹å„ˆč‰Æē—…é™¢'),
(1633, 1221, 'en', 'name', 'Prince George''s Hospital Center'),
(1634, 1222, 'fr', 'name', 'HƓpital Saint-Philibert'),
(1635, 1223, 'fr', 'name', 'HƓpital Saint Charles'),
(1636, 1224, 'en', 'name', 'Portland Community College'),
(1637, 1225, 'en', 'name', 'Priest Hospital'),
(1638, 1225, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąø‡ąø†ą¹Œ'),
(1639, 1226, 'no_lang_code', 'name', 'Nanomaterials Research (United States)'),
(1640, 1227, 'en', 'name', 'Oregon Museum of Science and Industry'),
(1641, 1228, 'en', 'name', 'Jaswant Rai Speciality Hospital'),
(1642, 1229, 'en', 'name', 'Jackson State University'),
(1643, 1229, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Jackson'),
(1644, 1230, 'en', 'name', 'Alabama State University'),
(1645, 1231, 'no_lang_code', 'name', 'Bell Helicopter Textron (Canada)');
INSERT INTO `ror_settings` VALUES
(1646, 1232, 'en', 'name', 'Beijing Chao-Yang Hospital'),
(1647, 1232, 'zh', 'name', 'åŒ—äŗ¬ęœé˜³åŒ»é™¢'),
(1648, 1233, 'en', 'name', 'Stetson University'),
(1649, 1234, 'en', 'name', 'Baptist Health System'),
(1650, 1235, 'no_lang_code', 'name', 'Nantong Tumor Hospital'),
(1651, 1235, 'zh', 'name', 'å—é€šåø‚č‚æē˜¤åŒ»é™¢'),
(1652, 1236, 'en', 'name', 'Sandviken Hospital'),
(1653, 1236, 'sv', 'name', 'Sandviken sykehus'),
(1654, 1237, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ Ų§Ł„Ų£ŁˆŁ„'),
(1655, 1237, 'en', 'name', 'Mohamed I University'),
(1656, 1237, 'fr', 'name', 'UniversitƩ Mohammed Ier'),
(1657, 1238, 'pl', 'name', '4. Wojskowy Szpital Kliniczny z Polikliniką'),
(1658, 1239, 'en', 'name', 'Blood Systems Research Institute'),
(1659, 1240, 'en', 'name', 'Konyang University Hospital'),
(1660, 1240, 'ko', 'name', 'ķ•œģ–‘ ėŒ€ķ•™źµ 병원'),
(1661, 1241, 'ja', 'name', 'ä½č³€ēœŒåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼å„½ē”Ÿé¤Ø'),
(1662, 1241, 'no_lang_code', 'name', 'Saga-Ken Medical Centre Koseikan'),
(1663, 1242, 'en', 'name', 'Mansfield University'),
(1664, 1243, 'pt', 'name', 'Hospital Pedro Hispano'),
(1665, 1244, 'en', 'name', 'Lady Reading Hospital'),
(1666, 1245, 'en', 'name', 'Hokko Memorial Hospital'),
(1667, 1245, 'ja', 'name', 'åŒ—å…‰čØ˜åæµē—…é™¢'),
(1668, 1246, 'no_lang_code', 'name', 'Northwest Media (United States)'),
(1669, 1247, 'en', 'name', 'Beijing Chest Hospital'),
(1670, 1248, 'es', 'name', 'Hospital MƩdica Sur'),
(1671, 1249, 'en', 'name', 'Portuguese Naval School'),
(1672, 1249, 'pt', 'name', 'Escola Naval'),
(1673, 1250, 'en', 'name', 'King University'),
(1674, 1251, 'en', 'name', 'Malcom Randall VA Medical Center'),
(1675, 1252, 'en', 'name', 'Kern Medical Center'),
(1676, 1253, 'en', 'name', 'College of Medical Sciences'),
(1677, 1254, 'en', 'name', 'Anyang Academy of Agricultural Sciences'),
(1678, 1254, 'zh', 'name', 'å®‰é˜³åø‚å†œäøšē§‘å­¦é™¢'),
(1679, 1255, 'en', 'name', 'Magee-Womens Hospital'),
(1680, 1256, 'en', 'name', 'Denver Health Medical Center'),
(1681, 1257, 'en', 'name', 'University of Montevallo'),
(1682, 1258, 'en', 'name', 'Maritime Research Institute Netherlands'),
(1683, 1259, 'en', 'name', 'Gaustad Hospital'),
(1684, 1259, 'no', 'name', 'Gaustad Sykehus'),
(1685, 1260, 'ar', 'name', 'مؓفى رمبام'),
(1686, 1260, 'en', 'name', 'Rambam Health Care Campus'),
(1687, 1260, 'he', 'name', '×Ø×ž×‘"ם - הקריה הרפואית ×œ×‘×Ø×™××•×Ŗ ×”××“×ā€Ž'),
(1688, 1261, 'ja', 'name', 'å¼˜å‰ę„›ęˆä¼šē—…é™¢'),
(1689, 1261, 'no_lang_code', 'name', 'Hirosakiaiseikai Hospital'),
(1690, 1262, 'en', 'name', 'Catholic University of Korea'),
(1691, 1262, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(1692, 1263, 'no_lang_code', 'name', 'Yuan Ze University'),
(1693, 1264, 'en', 'name', 'Tajen University'),
(1694, 1265, 'en', 'name', 'Presbyterian Medical Center'),
(1695, 1265, 'ko', 'name', 'ģ˜ˆģˆ˜ė³‘ģ›'),
(1696, 1266, 'en', 'name', 'Center for Health Care Law'),
(1697, 1267, 'en', 'name', 'Doshisha University'),
(1698, 1267, 'ja', 'name', 'åŒåæ—ē¤¾å¤§å­¦'),
(1699, 1268, 'en', 'name', 'Abbott Northwestern Hospital'),
(1700, 1269, 'en', 'name', 'Alice Ho Miu Ling Nethersole Hospital'),
(1701, 1269, 'zh', 'name', 'é›…éŗ—ę°ä½•å¦™é½”é‚£ę‰“ē“ é†«é™¢'),
(1702, 1270, 'en', 'name', 'International Union of Railways'),
(1703, 1270, 'fr', 'name', 'Union internationale des chemins de fer'),
(1704, 1271, 'pt', 'name', 'Instituto Superior de Gestão e Administração de Santarém'),
(1705, 1272, 'no_lang_code', 'name', 'BG Group (United Kingdom)'),
(1706, 1273, 'en', 'name', 'Mississippi Department of Mental Health'),
(1707, 1274, 'en', 'name', 'Northside Hospital'),
(1708, 1275, 'en', 'name', 'Mercer University Health Sciences Center'),
(1709, 1276, 'es', 'name', 'Hospital de HellĆ­n'),
(1710, 1277, 'en', 'name', 'Saint John''s Health Center'),
(1711, 1278, 'no_lang_code', 'name', 'Stantec (Canada)'),
(1712, 1279, 'en', 'name', 'Japanese Red Cross Medical Center'),
(1713, 1279, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē¤¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1714, 1280, 'en', 'name', 'Canadian Foundation for Healthcare Improvement'),
(1715, 1281, 'no_lang_code', 'name', 'Trevigen'),
(1716, 1282, 'ko', 'name', 'ģƒģ§€ėŒ€ķ•™źµ'),
(1717, 1282, 'no_lang_code', 'name', 'Sangji University'),
(1718, 1283, 'en', 'name', 'Center for Tuberculosis Control of Guangdong Province'),
(1719, 1283, 'zh', 'name', 'å¹æäøœēœē»“ę øē—…ęŽ§åˆ¶'),
(1720, 1284, 'en', 'name', 'Torrey Pines Institute For Molecular Studies'),
(1721, 1285, 'en', 'name', 'New York City Department of Health and Mental Hygiene'),
(1722, 1286, 'en', 'name', 'University of TaubatƩ'),
(1723, 1286, 'pt', 'name', 'Universidade de TaubatƩ'),
(1724, 1287, 'en', 'name', 'National Sagamihara Hospital'),
(1725, 1287, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ē›øęØ”åŽŸē—…é™¢'),
(1726, 1288, 'en', 'name', 'Christiana Hospital'),
(1727, 1289, 'en', 'name', 'Sharp Memorial Hospital'),
(1728, 1290, 'en', 'name', 'Kun Shan University'),
(1729, 1291, 'en', 'name', 'PBR Laboratories'),
(1730, 1292, 'en', 'name', 'Penn State Milton S. Hershey Medical Center'),
(1731, 1293, 'no_lang_code', 'name', 'Spartan Bioscience (Canada)'),
(1732, 1294, 'en', 'name', 'Birjand University of Medical Sciences'),
(1733, 1294, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŪŒŲ±Ų¬Ł†ŲÆ'),
(1734, 1295, 'en', 'name', 'Jewish Hospital'),
(1735, 1296, 'en', 'name', 'Transylvania University'),
(1736, 1297, 'no_lang_code', 'name', 'SurModics (United States)'),
(1737, 1298, 'no_lang_code', 'name', 'TXT e-solutions (Italy)'),
(1738, 1299, 'no_lang_code', 'name', 'Friday Systems (United States)'),
(1739, 1300, 'en', 'name', 'Mount Sinai Hospital'),
(1740, 1301, 'en', 'name', 'Princess Margaret Rose Orthopaedic Hospital'),
(1741, 1302, 'no_lang_code', 'name', 'Progenra (United States)'),
(1742, 1303, 'en', 'name', 'Cincinnati Children''s Hospital Medical Center'),
(1743, 1304, 'cs', 'name', 'Výzkumný Ústav ZdravĆ­ DĆ­těte'),
(1744, 1305, 'en', 'name', 'University of Benin Teaching Hospital'),
(1745, 1306, 'en', 'name', 'Hiroshima City Asa Citizens Hospital'),
(1746, 1306, 'ja', 'name', 'åŗƒå³¶åø‚ē«‹å®‰ä½åø‚ę°‘ē—…é™¢'),
(1747, 1307, 'en', 'name', 'Mississippi University for Women'),
(1748, 1308, 'en', 'name', 'St John''s Hospital'),
(1749, 1309, 'de', 'name', 'Gesellschaft für Chemische Technik und Biotechnologie'),
(1750, 1309, 'en', 'name', 'Society for Chemical Engineering and Biotechnology'),
(1751, 1310, 'en', 'name', 'Michigan Surgical Hospital'),
(1752, 1311, 'en', 'name', 'University of Minnesota, Duluth'),
(1753, 1312, 'no_lang_code', 'name', 'Neova Technologies Inc.'),
(1754, 1313, 'en', 'name', 'Chaudhary Charan Singh University'),
(1755, 1313, 'hi', 'name', 'ą¤šą„Œą¤§ą¤°ą„€ चरण सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1756, 1313, 'ta', 'name', 'சௌதரி ą®šą®°ą®£ąÆ ą®šą®æą®™ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(1757, 1314, 'en', 'name', 'University of Phoenix'),
(1758, 1314, 'es', 'name', 'Universidad de Phoenix'),
(1759, 1314, 'fr', 'name', 'UniversitƩ de phoenix'),
(1760, 1315, 'it', 'name', 'Ospedali Riuniti di Ancona'),
(1761, 1316, 'en', 'name', 'New York Hospital Queens'),
(1762, 1317, 'en', 'name', 'Kelowna General Hospital'),
(1763, 1318, 'ar', 'name', 'مستؓفئ Ų§Ł„Ų±Ų§Ų²ŁŠ'),
(1764, 1318, 'fr', 'name', 'HƓpital Razi de La Manouba'),
(1765, 1319, 'de', 'name', 'Leopoldina Krankenhaus Schweinfurt'),
(1766, 1320, 'tr', 'name', 'Dr Sami Ulus Ƈocuk Sağlığı ve Hastalıkları Eğitim ve Araştırma Hastanesi'),
(1767, 1321, 'en', 'name', 'Golmud People''s Hospital'),
(1768, 1321, 'zh', 'name', 'ę ¼å°”ęœØåø‚äŗŗę°‘åŒ»é™¢'),
(1769, 1322, 'en', 'name', 'District of Columbia Department of Health'),
(1770, 1323, 'en', 'name', 'Shimane University'),
(1771, 1323, 'ja', 'name', '島根大学'),
(1772, 1324, 'en', 'name', 'Kin-ikyo Chuo Hospital'),
(1773, 1324, 'ja', 'name', 'å‹¤åŒ»å”äø­å¤®ē—…é™¢'),
(1774, 1325, 'en', 'name', 'Berkeley Geochronology Center'),
(1775, 1326, 'fr', 'name', 'Centre Technique Industriel De La Construction Metallique'),
(1776, 1327, 'en', 'name', 'Pacific Institute For Research and Evaluation'),
(1777, 1328, 'en', 'name', 'Gosford Hospital'),
(1778, 1329, 'en', 'name', 'Istanbul Florence Nightingale Hospital'),
(1779, 1329, 'tr', 'name', 'İstanbul Florence Nightingale Hastanesi'),
(1780, 1330, 'en', 'name', 'Kishiwada City Hospital'),
(1781, 1330, 'ja', 'name', 'åø‚ē«‹å²øå’Œē”°åø‚ę°‘ē—…é™¢'),
(1782, 1331, 'pt', 'name', 'Hospital de Dona Estefânia'),
(1783, 1332, 'en', 'name', 'Hospital of the Holy Spirit'),
(1784, 1332, 'it', 'name', 'Ospedale di Santo Spirito, Ospedale di Santo Spirito in Sassia'),
(1785, 1333, 'en', 'name', 'Broward Health Medical Center'),
(1786, 1334, 'en', 'name', 'Banner Desert Medical Center'),
(1787, 1335, 'no_lang_code', 'name', 'Sirehna'),
(1788, 1336, 'en', 'name', 'Rochester General Hospital'),
(1789, 1337, 'en', 'name', 'Mission Heritage Medical Group'),
(1790, 1338, 'no_lang_code', 'name', 'TuTech Innovation (Germany)'),
(1791, 1339, 'en', 'name', 'Chuvash State University'),
(1792, 1339, 'ru', 'name', 'Чувашский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. Š. Š£Š»ŃŒŃŠ½Š¾Š²Š°'),
(1793, 1340, 'es', 'name', 'Hospital General Universitario de Elche'),
(1794, 1341, 'fr', 'name', 'HƓpital de Jolimont'),
(1795, 1342, 'en', 'name', 'Mediterranean Center for Environmental Studies'),
(1796, 1342, 'es', 'name', 'Centro de Estudios Ambientales del MediterrƔneo'),
(1797, 1343, 'en', 'name', 'Wayne Memorial Health System'),
(1798, 1344, 'ja', 'name', '大阪大谷大学'),
(1799, 1344, 'no_lang_code', 'name', 'Osaka Ohtani University'),
(1800, 1345, 'en', 'name', 'Mercy Catholic Medical Center'),
(1801, 1346, 'en', 'name', 'Ashworth College'),
(1802, 1347, 'ja', 'name', 'ē†Šęœ¬åŠ“ē½ē—…é™¢'),
(1803, 1347, 'no_lang_code', 'name', 'Kumamotorosaibyoin'),
(1804, 1348, 'no_lang_code', 'name', 'AUG Signals (Canada)'),
(1805, 1349, 'en', 'name', 'Dr. V. M. Government Medical College'),
(1806, 1349, 'mr', 'name', 'ą¤”ą„‰. ą¤µą„ˆą¤¶ą¤‚ą¤Ŗą¤¾ą¤Æą¤Ø ą¤øą„ą¤®ą„ƒą¤¤ą„€ ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(1807, 1350, 'en', 'name', 'Jan Evangelista Purkyně Military Medical Academy'),
(1808, 1351, 'en', 'name', 'Omsk State University'),
(1809, 1351, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ф. М. Достоевского'),
(1810, 1352, 'en', 'name', 'Hennepin County Medical Center'),
(1811, 1353, 'en', 'name', 'Keio University Hospital'),
(1812, 1353, 'ja', 'name', '慶應義唾大学病院'),
(1813, 1354, 'no_lang_code', 'name', 'Infinite Biomedical Technologies (United States)'),
(1814, 1355, 'en', 'name', 'Ugo Bordoni Foundation'),
(1815, 1355, 'it', 'name', 'Fondazione "Ugo Bordoni"'),
(1816, 1356, 'en', 'name', 'Kent Hospital'),
(1817, 1357, 'es', 'name', 'Hospital La Paloma'),
(1818, 1358, 'de', 'name', 'Battelle-Institut ev'),
(1819, 1359, 'no_lang_code', 'name', 'Electrical Geodesics (United States)'),
(1820, 1360, 'en', 'name', 'Second Affiliated Hospital of Kunming Medical College'),
(1821, 1360, 'zh', 'name', 'ę˜†ę˜ŽåŒ»ē§‘å¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(1822, 1361, 'en', 'name', 'Sansum Diabetes Research Institute'),
(1823, 1362, 'en', 'name', 'Kurihama Medical and Addiction Center'),
(1824, 1362, 'ja', 'name', 'ä¹…é‡ŒęµœåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1825, 1363, 'en', 'name', 'Rivers State University'),
(1826, 1364, 'en', 'name', 'University of Virginia Children''s Hospital'),
(1827, 1365, 'en', 'name', 'Seoul National University Children''s Hospital'),
(1828, 1365, 'ko', 'name', 'ģ„œģšøėŒ€ķ•™źµģ–“ė¦°ģ“ė³‘ģ›'),
(1829, 1366, 'en', 'name', 'McLean Hospital'),
(1830, 1367, 'no_lang_code', 'name', 'Ontario Power Generation'),
(1831, 1368, 'en', 'name', 'South Australia Pathology'),
(1832, 1369, 'no_lang_code', 'name', 'BGI Group (Japan)'),
(1833, 1370, 'no_lang_code', 'name', 'Atos (Spain)'),
(1834, 1371, 'pt', 'name', 'Hospital Federal dos Servidores do Estado'),
(1835, 1372, 'en', 'name', 'Qiqihar Medical University'),
(1836, 1372, 'zh', 'name', '齐齐哈尔医学院'),
(1837, 1373, 'en', 'name', 'Thiel College'),
(1838, 1374, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„ŲŖŲ®ŲµŲµŁŠ'),
(1839, 1374, 'en', 'name', 'King Fahad Specialist Hospital'),
(1840, 1375, 'en', 'name', 'University Hospital of Geneva'),
(1841, 1375, 'fr', 'name', 'HÓpitaux universitaires de Genève'),
(1842, 1376, 'en', 'name', 'Association Of Atlantic Universities'),
(1843, 1377, 'en', 'name', 'Copernicus Memorial Hospital'),
(1844, 1378, 'en', 'name', 'All India Institute of Hygiene and Public Health'),
(1845, 1378, 'hi', 'name', 'अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ जन ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(1846, 1379, 'no_lang_code', 'name', 'Smithers Pira'),
(1847, 1380, 'es', 'name', 'Hospital Central Dr. Ignacio Morones Prieto'),
(1848, 1381, 'en', 'name', 'Dauphin Island Sea Lab'),
(1849, 1382, 'en', 'name', 'Federation of American Societies for Experimental Biology'),
(1850, 1383, 'en', 'name', 'St Martha''s Regional Hospital'),
(1851, 1384, 'en', 'name', 'Government Kilpauk Medical College'),
(1852, 1384, 'ta', 'name', 'ą®•ąÆ€ą®“ąÆą®Ŗą®¾ą®•ąÆą®•ą®®ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(1853, 1385, 'es', 'name', 'Hospital Regional Universitario de MƔlaga'),
(1854, 1386, 'en', 'name', 'Federal University of Mato Grosso'),
(1855, 1386, 'pt', 'name', 'Universidade Federal de Mato Grosso'),
(1856, 1387, 'no_lang_code', 'name', 'Dornier Flugzeugwerke (Germany)'),
(1857, 1388, 'ar', 'name', 'مستؓفى العدان'),
(1858, 1388, 'no_lang_code', 'name', 'Adan Hospital'),
(1859, 1389, 'en', 'name', 'San Jacinto Methodist Hospital'),
(1860, 1390, 'en', 'name', 'First Affiliated Hospital of Guangzhou University of Chinese Medicine'),
(1861, 1391, 'en', 'name', 'Nayoro City General Hospital'),
(1862, 1391, 'ja', 'name', 'ååÆ„åø‚ē«‹ē·åˆē—…é™¢'),
(1863, 1392, 'en', 'name', 'Sivas State Hospital'),
(1864, 1392, 'tr', 'name', 'Sivas Devlet Hastanesi'),
(1865, 1393, 'en', 'name', 'Chu Shang Show Chwan Hospital'),
(1866, 1394, 'fr', 'name', 'HƓpital Aristide Le Dantec'),
(1867, 1395, 'en', 'name', 'Rancho Santa Ana Botanic Garden'),
(1868, 1396, 'en', 'name', 'Meyer Children''s Hospital'),
(1869, 1396, 'it', 'name', 'Ospedale Pediatrico Meyer'),
(1870, 1397, 'en', 'name', 'Forest Department Sarawak'),
(1871, 1398, 'en', 'name', 'Birmingham and Midland Eye Centre'),
(1872, 1399, 'pt', 'name', 'Escola Superior de Enfermagem S. Francisco das Misericórdias'),
(1873, 1400, 'no_lang_code', 'name', 'Bioqual'),
(1874, 1401, 'en', 'name', 'Rosie Hospital'),
(1875, 1402, 'en', 'name', 'Institute of Global Environment and Society'),
(1876, 1403, 'en', 'name', 'Charlie Norwood VA Medical Center'),
(1877, 1404, 'ja', 'name', 'åå¤å±‹ęŽ–ęøˆä¼šē—…é™¢'),
(1878, 1404, 'no_lang_code', 'name', 'Nagoya Ekisaikai Hospital'),
(1879, 1405, 'en', 'name', 'Froedtert Hospital'),
(1880, 1406, 'fr', 'name', 'Hydro-QuƩbec'),
(1881, 1407, 'en', 'name', 'Hinchingbrooke Hospital'),
(1882, 1408, 'en', 'name', 'Royal Alexandra Hospital'),
(1883, 1409, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ€Ī¹Ļ„Ī±Ļ‡Ļ…Ī½Ļ„Ī¹ĪŗĻŽĪ½ Ī£Ļ…ĻƒĻ„Ī·Ī¼Ī¬Ļ„Ļ‰Ī½ και Ī•Ļ†Ī±ĻĪ¼ĪæĪ³ĻŽĪ½'),
(1884, 1409, 'en', 'name', 'Institute of Accelerating Systems and Applications'),
(1885, 1410, 'en', 'name', 'National Ilan University'),
(1886, 1410, 'zh', 'name', 'åœ‹ē«‹å®œč˜­å¤§å­ø'),
(1887, 1411, 'no_lang_code', 'name', 'Aerodyne Research'),
(1888, 1412, 'en', 'name', 'Ljubljana University Medical Centre'),
(1889, 1413, 'es', 'name', 'Instituto Tecnologico Del Embalaje, Transporte Y Logistica'),
(1890, 1414, 'en', 'name', 'Shiga Medical Center for Children'),
(1891, 1414, 'ja', 'name', 'å­ä¾›ć®ćŸć‚ć®ę»‹č³€åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(1892, 1415, 'en', 'name', 'Vladimir State University'),
(1893, 1415, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ВлаГимирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени АлексанГра Š“Ń€ŠøŠ³Š¾Ń€ŃŒŠµŠ²ŠøŃ‡Š° Šø ŠŠøŠŗŠ¾Š»Š°Ń Š“Ń€ŠøŠ³Š¾Ń€ŃŒŠµŠ²ŠøŃ‡Š° Дтолетовых'),
(1894, 1416, 'en', 'name', 'Second Affiliated Hospital of Nanchang University'),
(1895, 1416, 'zh', 'name', 'å—ę˜Œå¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(1896, 1417, 'en', 'name', 'Oita University'),
(1897, 1417, 'ja', 'name', '大分大学'),
(1898, 1418, 'en', 'name', 'Breach Candy Hospital'),
(1899, 1419, 'en', 'name', 'Taoyuan Armed Forces General Hospital'),
(1900, 1419, 'zh', 'name', 'ę”ƒå›­ę­¦č£…éƒØé˜Ÿę€»åŒ»é™¢'),
(1901, 1420, 'en', 'name', 'Dickinson State University'),
(1902, 1421, 'en', 'name', 'Heilongjiang Center for Tuberculosis Control and Prevention'),
(1903, 1422, 'en', 'name', 'Kansas Wesleyan University'),
(1904, 1423, 'es', 'name', 'Hospital Universitari Arnau de Vilanova'),
(1905, 1424, 'en', 'name', 'Mississippi College'),
(1906, 1425, 'cy', 'name', 'Ysbyty Treforus'),
(1907, 1425, 'en', 'name', 'Morriston Hospital'),
(1908, 1426, 'it', 'name', 'Ospedale Amedeo di Savoia'),
(1909, 1427, 'en', 'name', 'University of Tabriz'),
(1910, 1427, 'fa', 'name', 'دانؓگاه تبریز'),
(1911, 1428, 'en', 'name', '302 Military Hospital of China'),
(1912, 1428, 'zh', 'name', '中国人民解放军第302医院'),
(1913, 1429, 'en', 'name', 'Boca Raton Regional Hospital'),
(1914, 1430, 'en', 'name', 'Akdeniz University Hospital'),
(1915, 1430, 'tr', 'name', 'Akdeniz Üniversitesi Hastanesi'),
(1916, 1431, 'en', 'name', 'Nordland Hospital'),
(1917, 1432, 'en', 'name', 'Eastbourne District General Hospital'),
(1918, 1433, 'en', 'name', 'Akashi Municipal City Hospital'),
(1919, 1433, 'ja', 'name', 'ę˜ŽēŸ³åø‚ē«‹åø‚ę°‘ē—…é™¢'),
(1920, 1434, 'en', 'name', 'South Nassau Communities Hospital'),
(1921, 1435, 'tr', 'name', 'Antalya Eğitim ve Araştırma Hastanesi'),
(1922, 1436, 'en', 'name', 'National Institute of Occupational Health'),
(1923, 1437, 'no_lang_code', 'name', 'Fountain Biopharma (Taiwan)'),
(1924, 1438, 'ja', 'name', 'ēŸ³åˆ‡ē”Ÿå–œē—…é™¢'),
(1925, 1438, 'no_lang_code', 'name', 'Ishikiriseiki Hospital'),
(1926, 1439, 'en', 'name', 'Bentley University'),
(1927, 1440, 'en', 'name', 'Sun Yat-sen Memorial Hospital'),
(1928, 1441, 'en', 'name', 'Meyer Children''s Hospital'),
(1929, 1442, 'en', 'name', 'Miyazaki Prefectural Hospital'),
(1930, 1442, 'ja', 'name', 'å®®å“ŽēœŒē«‹ē—…é™¢'),
(1931, 1443, 'en', 'name', 'Centre for Research in Medical Entomology'),
(1932, 1444, 'en', 'name', 'Inje University Busan Paik Hospital'),
(1933, 1445, 'eu', 'name', 'Hospital Txagorritxu'),
(1934, 1446, 'fr', 'name', 'HƓpital Pierre Wertheimer'),
(1935, 1447, 'en', 'name', 'Roper Hospital'),
(1936, 1448, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼Ī¹Ī±ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΑΧΕΠΑ'),
(1937, 1448, 'en', 'name', 'AHEPA University Hospital'),
(1938, 1449, 'en', 'name', 'Virginia Tech - Wake Forest University School of Biomedical Engineering & Sciences'),
(1939, 1450, 'en', 'name', 'Baystate Medical Center'),
(1940, 1451, 'en', 'name', 'State of Maine Department of Health and Human Services'),
(1941, 1451, 'es', 'name', 'Departamento de Salud y Servicios Sociales de los Estados Unidos'),
(1942, 1451, 'fr', 'name', 'DĆ©partement de la santĆ© et des services sociaux des Ɖtats-unis'),
(1943, 1452, 'no_lang_code', 'name', 'Hydro One (Canada)'),
(1944, 1453, 'no_lang_code', 'name', 'Al Omooma Hospital'),
(1945, 1454, 'it', 'name', 'Ospedale Garibaldi'),
(1946, 1455, 'nl', 'name', 'Elkerliek Ziekenhuis'),
(1947, 1456, 'no_lang_code', 'name', 'BASF (Germany)'),
(1948, 1457, 'en', 'name', 'Boys Town National Research Hospital'),
(1949, 1458, 'en', 'name', 'Papworth Hospital NHS Foundation Trust'),
(1950, 1459, 'en', 'name', 'Association of Academic Health Centers'),
(1951, 1460, 'no_lang_code', 'name', 'Mahosot Hospital'),
(1952, 1461, 'en', 'name', 'Mario Negri Sud Foundation'),
(1953, 1461, 'it', 'name', 'Fondazione Mario Negri Sud'),
(1954, 1462, 'en', 'name', 'Bryn Mawr Rehabilitation Hospital'),
(1955, 1463, 'en', 'name', 'Family and Social Services Administration'),
(1956, 1464, 'en', 'name', 'Ministry of Health'),
(1957, 1464, 'es', 'name', 'Ministerio de Salud de Chile'),
(1958, 1465, 'en', 'name', 'Manipal Teaching Hospital'),
(1959, 1465, 'ne', 'name', 'मणिपाल ą¤Ÿą„€ą¤šą¤æą¤‚ą¤— ą¤¹ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(1960, 1466, 'en', 'name', 'Sichuan Academy of Medical Sciences & Sichuan Provincial People''s Hospital'),
(1961, 1466, 'zh', 'name', 'å››å·ēœäø­åŒ»čÆē§‘å­¦é™¢'),
(1962, 1467, 'sv', 'name', 'VƤstmanlands sjukhus VƤsterƄs'),
(1963, 1468, 'en', 'name', 'Yuri Gagarin State Technical University of Saratov'),
(1964, 1468, 'ru', 'name', 'Даратовский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š®. А. Гагарина'),
(1965, 1469, 'es', 'name', 'Hospital EspaƱol'),
(1966, 1470, 'en', 'name', 'Regional Medical Research Centre'),
(1967, 1471, 'en', 'name', 'Tohoku Fukushi University'),
(1968, 1471, 'ja', 'name', 'ę±åŒ—ē¦ē„‰å¤§å­¦'),
(1969, 1472, 'en', 'name', 'Lithuanian Bioethics Committee'),
(1970, 1472, 'lt', 'name', 'Lietuvos Bioetikos Komitetas'),
(1971, 1473, 'en', 'name', 'Federal Office of Public Health'),
(1972, 1474, 'en', 'name', 'Technical University of Nova Scotia'),
(1973, 1475, 'en', 'name', 'University of Port Harcourt Teaching Hospital'),
(1974, 1476, 'no_lang_code', 'name', 'Universal Stabilization Technologies'),
(1975, 1477, 'en', 'name', 'Dominican University'),
(1976, 1478, 'en', 'name', 'Hoseo University'),
(1977, 1478, 'ko', 'name', 'ķ˜øģ„œėŒ€ķ•™źµ'),
(1978, 1479, 'en', 'name', 'Brighton and Sussex Medical School'),
(1979, 1480, 'en', 'name', 'Chung-Ang University'),
(1980, 1480, 'ko', 'name', 'ģ¤‘ģ•™ėŒ€ķ•™źµ'),
(1981, 1481, 'tr', 'name', 'Ankara Onkoloji Eğitim ve Araştırma Hastanesi'),
(1982, 1482, 'ja', 'name', 'å¹³å”šå…±ęøˆē—…é™¢'),
(1983, 1482, 'no_lang_code', 'name', 'Hiratsuka Kyosai Hospital'),
(1984, 1483, 'en', 'name', 'Saint John''s Hospital'),
(1985, 1484, 'tr', 'name', 'S.B. Keçiören Eğitim ve Araştırma Hastanesi'),
(1986, 1485, 'de', 'name', 'Von Karman Institut für Strömungsmechanik'),
(1987, 1485, 'en', 'name', 'Von Karman Institute for Fluid Dynamics'),
(1988, 1485, 'fr', 'name', 'Institut von karman de dynamique des fluides'),
(1989, 1486, 'en', 'name', 'Royal Victoria Regional Health Centre'),
(1990, 1487, 'en', 'name', 'Niigata City General Hospital'),
(1991, 1487, 'ja', 'name', 'ę–°ę½Ÿåø‚ę°‘ē—…é™¢'),
(1992, 1488, 'en', 'name', 'Bristol Hospital'),
(1993, 1489, 'en', 'name', 'Blackpool Victoria Hospital'),
(1994, 1490, 'pt', 'name', 'Hospital Nossa Senhora das GraƧas'),
(1995, 1491, 'en', 'name', 'Department of Human Services'),
(1996, 1492, 'no_lang_code', 'name', 'Inspiralia'),
(1997, 1493, 'sk', 'name', 'UniverzitnĆ” Nemocnica Louisa Pasteura'),
(1998, 1494, 'en', 'name', 'Shariati Hospital'),
(1999, 1494, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ؓریعتی'),
(2000, 1495, 'en', 'name', 'M. P. Shah Medical College'),
(2001, 1495, 'gu', 'name', 'ąŖ¶ą«ąŖ°ą«€ ąŖąŖ®ąŖŖą«€ શાહ સરકારી મેઔિકલ ąŖ•ą«‹ąŖ²ą«‡ąŖœ'),
(2002, 1496, 'en', 'name', 'Lee Memorial Hospital'),
(2003, 1497, 'es', 'name', 'Hospital Provincial de Conxo'),
(2004, 1498, 'en', 'name', 'Kangwon National University Hospital'),
(2005, 1498, 'ko', 'name', 'ź°•ģ›ėŒ€ķ•™źµė³‘ģ›'),
(2006, 1499, 'en', 'name', 'University of Alabama at Birmingham Hospital'),
(2007, 1500, 'ja', 'name', 'ēœŒē«‹åŗƒå³¶ē—…é™¢'),
(2008, 1500, 'no_lang_code', 'name', 'Hiroshima Prefectural Hospital'),
(2009, 1501, 'en', 'name', 'Ministry of Health and Medical Education'),
(2010, 1502, 'en', 'name', 'Mitate Hospital'),
(2011, 1502, 'ja', 'name', '見立病院'),
(2012, 1503, 'en', 'name', 'Military Hospital'),
(2013, 1504, 'en', 'name', 'Korea Institute of Materials Science'),
(2014, 1505, 'en', 'name', 'Ahvaz Jundishapur University of Medical Sciences'),
(2015, 1505, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų¬Ł†ŲÆŪŒā€ŒŲ“Ų§Ł¾ŁˆŲ± Ų§Ł‡ŁˆŲ§Ų²'),
(2016, 1506, 'pt', 'name', 'Guarulhos University'),
(2017, 1507, 'en', 'name', 'La Trobe University'),
(2018, 1508, 'no_lang_code', 'name', 'Balance Technology Consulting'),
(2019, 1509, 'en', 'name', 'Sentara Rockingham Memorial Hospital Medical Center'),
(2020, 1510, 'en', 'name', 'Inverclyde Royal Hospital'),
(2021, 1511, 'en', 'name', 'Nathan Kline Institute for Psychiatric Research'),
(2022, 1512, 'ja', 'name', 'é™å²”ęøˆē”Ÿä¼šē·åˆē—…é™¢'),
(2023, 1512, 'no_lang_code', 'name', 'Shizuoka Saiseikai General Hospital'),
(2024, 1513, 'en', 'name', 'Lunenfeld-Tanenbaum Research Institute'),
(2025, 1514, 'en', 'name', 'University Hospital of Larissa'),
(2026, 1515, 'en', 'name', 'Central Arkansas Veterans Healthcare System'),
(2027, 1516, 'en', 'name', 'Miyagi University of Education'),
(2028, 1516, 'ja', 'name', 'å®®åŸŽę•™č‚²å¤§å­¦'),
(2029, 1517, 'fr', 'name', 'Hotel Dieu Hospital'),
(2030, 1518, 'en', 'name', 'Lviv University'),
(2031, 1518, 'hu', 'name', 'Ivan Franko Nemzeti Egyetem Lviv'),
(2032, 1518, 'pl', 'name', 'Uniwersytet Lwowski'),
(2033, 1518, 'ru', 'name', 'Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ивана Франко'),
(2034, 1518, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана Франка'),
(2035, 1519, 'en', 'name', 'Eastern Oregon University'),
(2036, 1520, 'en', 'name', 'Kushiro Rosai Hospital'),
(2037, 1520, 'ja', 'name', 'é‡§č·Æć‚ć†ć•ć„ē—…é™¢'),
(2038, 1521, 'en', 'name', 'Trinitas Regional Medical Center'),
(2039, 1522, 'en', 'name', 'East Orange VA Medical Center'),
(2040, 1523, 'en', 'name', 'Millard Fillmore Suburban Hospital'),
(2041, 1524, 'en', 'name', 'Lower Manhattan Hospital'),
(2042, 1525, 'de', 'name', 'Bundesinstitut für gesundheitlichen Verbraucherschutz und Veterinärmedizin'),
(2043, 1525, 'en', 'name', 'Federal Institute for Health Protection of Consumers and Veterinary Medicine'),
(2044, 1526, 'en', 'name', 'Doctors Hospital'),
(2045, 1527, 'en', 'name', 'Arizona Department of Health Services'),
(2046, 1528, 'en', 'name', 'The University of Texas Health Science Center at Tyler'),
(2047, 1529, 'en', 'name', 'Ministry of Health'),
(2048, 1529, 'uk', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ охорони зГоров''я України'),
(2049, 1530, 'en', 'name', 'National Science Museum'),
(2050, 1531, 'it', 'name', 'Consorzio Pisa Ricerche'),
(2051, 1532, 'en', 'name', 'Arkansas Children''s Hospital'),
(2052, 1533, 'en', 'name', 'Central Chest Institute of Thailand'),
(2053, 1534, 'en', 'name', 'Regional Hospital Holstebro'),
(2054, 1535, 'en', 'name', 'Grantham Hospital'),
(2055, 1535, 'zh', 'name', 'č‘›é‡ę“Ŗé†«é™¢'),
(2056, 1536, 'en', 'name', 'Queen Fabiola Children''s University Hospital'),
(2057, 1536, 'fr', 'name', 'HƓpital Universitaire Des Enfants Reine Fabiola'),
(2058, 1537, 'en', 'name', 'St. Luke''s Hospital'),
(2059, 1538, 'en', 'name', 'Mary Free Bed Rehabilitation Hospital'),
(2060, 1539, 'en', 'name', 'Consortium of Universities for Research in Earthquake Engineering'),
(2061, 1540, 'en', 'name', 'University of Houston - Clear Lake'),
(2062, 1541, 'en', 'name', 'University of California San Francisco Medical Center'),
(2063, 1542, 'no_lang_code', 'name', 'Aurum Institute'),
(2064, 1543, 'hu', 'name', 'BÔcs-Kiskun Megyei KórhÔz'),
(2065, 1544, 'en', 'name', 'Dongshin University'),
(2066, 1544, 'ko', 'name', 'ė™ģ‹ ėŒ€ķ•™źµ'),
(2067, 1545, 'pt', 'name', 'Universidade Sagrado Coração'),
(2068, 1546, 'en', 'name', 'Montana State University Billings'),
(2069, 1547, 'en', 'name', 'Nagasaki International University'),
(2070, 1547, 'ja', 'name', '長哎国際大学'),
(2071, 1548, 'en', 'name', 'North Wales Hospital'),
(2072, 1549, 'en', 'name', 'Hayashi Eye Hospital'),
(2073, 1550, 'pt', 'name', 'Universidade Ibirapuera'),
(2074, 1551, 'en', 'name', 'Command Hospital'),
(2075, 1552, 'en', 'name', 'Children''s Medical Center'),
(2076, 1553, 'en', 'name', 'Saint Louis University Hospital'),
(2077, 1554, 'en', 'name', 'National Board of Health and Welfare'),
(2078, 1555, 'en', 'name', 'Autonomous University of Campeche'),
(2079, 1555, 'es', 'name', 'Universidad Autónoma de Campeche'),
(2080, 1556, 'en', 'name', 'Siena College'),
(2081, 1557, 'no_lang_code', 'name', 'Semex'),
(2082, 1558, 'en', 'name', 'Korea Maritime and Ocean University'),
(2083, 1558, 'ko', 'name', 'ķ•œźµ­ķ•“ģ–‘ėŒ€ķ•™źµ'),
(2084, 1559, 'en', 'name', 'National Sanyo Hospital'),
(2085, 1559, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å±±å£å®‡éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2086, 1560, 'en', 'name', 'Shriners Hospitals for Children - Galveston'),
(2087, 1561, 'en', 'name', 'Mie University Hospital'),
(2088, 1561, 'ja', 'name', 'äø‰é‡å¤§å­¦ē—…é™¢'),
(2089, 1562, 'en', 'name', 'Ibis Reproductive Health'),
(2090, 1563, 'en', 'name', 'Kyung Hee University Medical Center'),
(2091, 1564, 'en', 'name', 'Christian Medical College'),
(2092, 1565, 'bs', 'name', 'Federalni Zavod za geologiju'),
(2093, 1565, 'en', 'name', 'The Federal Institute for Geology'),
(2094, 1566, 'en', 'name', 'Rabin Medical Center'),
(2095, 1567, 'en', 'name', 'Eiju General Hospital'),
(2096, 1567, 'ja', 'name', 'ę°øåÆæē·åˆē—…é™¢'),
(2097, 1568, 'en', 'name', 'CARE Hospitals'),
(2098, 1569, 'ar', 'name', 'المستؓفى Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ بصفاقس'),
(2099, 1569, 'fr', 'name', 'Hopital Universitaire Hedi Chaker'),
(2100, 1570, 'en', 'name', 'Khyber Medical College'),
(2101, 1571, 'es', 'name', 'Hospital Pablo Tobon Uribe'),
(2102, 1572, 'en', 'name', 'King Abdul Aziz University Hospital'),
(2103, 1573, 'en', 'name', 'Addington Hospital'),
(2104, 1574, 'en', 'name', 'Korle Bu Teaching Hospital'),
(2105, 1575, 'en', 'name', 'University of Missouri–Kansas City'),
(2106, 1576, 'en', 'name', 'University of Maryland Global Campus'),
(2107, 1577, 'en', 'name', 'Arnot Ogden Medical Center'),
(2108, 1578, 'en', 'name', 'Lanzhou Army General Hospital'),
(2109, 1578, 'zh', 'name', '陆军总院'),
(2110, 1579, 'nl', 'name', 'Slotervaartziekenhuis'),
(2111, 1580, 'en', 'name', 'Buffalo Medical Group'),
(2112, 1581, 'en', 'name', 'Advanced Institute of Convergence Technology'),
(2113, 1581, 'ko', 'name', 'ģ°Øģ„øėŒ€ģœµķ•©źø°ģˆ ģ—°źµ¬ģ›'),
(2114, 1582, 'en', 'name', 'Gorgan University of Agricultural Sciences and Natural Resources'),
(2115, 1582, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… کؓاورزی و منابع طبیعی گرگان'),
(2116, 1583, 'en', 'name', 'Shizuoka University'),
(2117, 1583, 'ja', 'name', '静岔大学'),
(2118, 1584, 'en', 'name', 'Meriter Hospital'),
(2119, 1585, 'en', 'name', 'University of Oklahoma Medical Center'),
(2120, 1586, 'en', 'name', 'Providence Sacred Heart Medical Center'),
(2121, 1587, 'en', 'name', 'Joseph Eye Hospital'),
(2122, 1588, 'en', 'name', 'Bayfront Medical Center'),
(2123, 1589, 'en', 'name', 'The Alfred Hospital'),
(2124, 1590, 'en', 'name', 'Eastern Command Hospital'),
(2125, 1591, 'en', 'name', 'Kaiser Permanente Riverside Medical Center'),
(2126, 1592, 'en', 'name', 'Mokwon University'),
(2127, 1592, 'ko', 'name', 'ėŖ©ģ›ėŒ€ķ•™źµ'),
(2128, 1593, 'en', 'name', 'Nizam''s Institute of Medical Sciences'),
(2129, 1594, 'en', 'name', 'Atlanta University Center'),
(2130, 1595, 'en', 'name', 'Canadian Foundation For The International Space University'),
(2131, 1596, 'en', 'name', 'Lemuel Shattuck Hospital'),
(2132, 1597, 'en', 'name', 'Kyushu Sangyo University'),
(2133, 1597, 'ja', 'name', 'ä¹å·žē”£ę„­å¤§å­¦'),
(2134, 1598, 'en', 'name', 'Jersey City Medical Center'),
(2135, 1599, 'en', 'name', 'BongSeng Memorial Hospital'),
(2136, 1599, 'ko', 'name', 'ė“‰ģƒė³‘ģ›ģž…ė‹ˆė‹¤'),
(2137, 1600, 'en', 'name', 'Astley Ainslie Hospital'),
(2138, 1601, 'en', 'name', 'Katsushika Medical Center'),
(2139, 1601, 'ja', 'name', 'č‘›é£¾åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(2140, 1602, 'no_lang_code', 'name', 'Sir Ganga Ram Hospital'),
(2141, 1603, 'no_lang_code', 'name', 'Microsoft (Netherlands)'),
(2142, 1604, 'en', 'name', 'Annamalai University'),
(2143, 1604, 'hi', 'name', 'ą¤…ą¤Øą„ą¤Øą¤¾ą¤®ą¤²ą¤¾ą¤ˆ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2144, 1604, 'ml', 'name', 'ą“…ą“£ąµą“£ą“¾ą“®ą“²ąµˆ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(2145, 1604, 'pa', 'name', 'ąØ…ą©°ąØØąØ¾ąØ®ąØ²ąØ¾ąØˆ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(2146, 1604, 'ta', 'name', 'ą®…ą®£ąÆą®£ą®¾ą®®ą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2147, 1605, 'en', 'name', 'Lee Memorial Health System'),
(2148, 1606, 'en', 'name', 'Driscoll Children''s Hospital'),
(2149, 1607, 'en', 'name', 'Uzhhorod National University'),
(2150, 1607, 'pl', 'name', 'Użhorodzki Uniwersytet Narodowy'),
(2151, 1607, 'ru', 'name', 'УжгороГский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2152, 1607, 'uk', 'name', 'Š£Š¶Š³Š¾Ń€Š¾Š“ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2153, 1608, 'en', 'name', 'Sangmyung University'),
(2154, 1608, 'ko', 'name', 'ģƒėŖ…ėŒ€ķ•™źµ'),
(2155, 1609, 'en', 'name', 'HealthONE Spalding Rehabilitation Hospital'),
(2156, 1610, 'it', 'name', 'Ospedale di Santa Maria dei Battuti'),
(2157, 1611, 'en', 'name', 'Children''s & Women''s Health Centre of British Columbia'),
(2158, 1612, 'en', 'name', 'South Karelia Central Hospital'),
(2159, 1612, 'fi', 'name', 'EtelƤ-Karjalan keskussairaala'),
(2160, 1613, 'no_lang_code', 'name', 'Ension'),
(2161, 1614, 'en', 'name', 'Cabrini Medical Center'),
(2162, 1615, 'en', 'name', 'Flower Hospital'),
(2163, 1616, 'en', 'name', 'Summa Akron City Hospital'),
(2164, 1617, 'en', 'name', 'Southwest Washington Medical Center'),
(2165, 1618, 'en', 'name', 'Iwata City Hospital'),
(2166, 1618, 'ja', 'name', 'ē£ē”°åø‚ē«‹ē·åˆē—…é™¢'),
(2167, 1619, 'en', 'name', 'Jamaica Hospital'),
(2168, 1620, 'it', 'name', 'Azienda Ospedaliera San Gerardo'),
(2169, 1621, 'en', 'name', 'Fitzgerald Health Education Associates'),
(2170, 1622, 'en', 'name', 'Birmingham Dental Hospital'),
(2171, 1623, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أم القرى'),
(2172, 1623, 'en', 'name', 'Umm al-Qura University'),
(2173, 1624, 'de', 'name', 'UniversitƤts-Augenklinik Bonn'),
(2174, 1625, 'en', 'name', 'Health Promotion Board'),
(2175, 1625, 'zh', 'name', 'ę–°åŠ å”äæå„äæƒčæ›å±€'),
(2176, 1626, 'de', 'name', 'Schulthess-Klinik'),
(2177, 1627, 'en', 'name', 'Woodruff Health Sciences Center'),
(2178, 1628, 'en', 'name', 'Brandon Regional Health Authority'),
(2179, 1629, 'en', 'name', 'Fortis Escorts Hospital'),
(2180, 1630, 'en', 'name', 'Scarborough General Hospital'),
(2181, 1631, 'de', 'name', 'UniversitƤtsklinikum Bonn'),
(2182, 1631, 'en', 'name', 'University Hospital Bonn'),
(2183, 1632, 'en', 'name', 'Menninger Clinic'),
(2184, 1633, 'en', 'name', 'Hasbro Children''s Hospital'),
(2185, 1634, 'en', 'name', 'Haywood Community Hospital'),
(2186, 1635, 'en', 'name', 'Jaipur National University'),
(2187, 1636, 'no_lang_code', 'name', 'Sahara Hospital'),
(2188, 1637, 'en', 'name', 'Meenakshi Mission Hospital and Research Centre'),
(2189, 1638, 'fr', 'name', 'Institut Laue-Langevin'),
(2190, 1639, 'en', 'name', 'Northport VA Medical Center'),
(2191, 1640, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© طيبة'),
(2192, 1640, 'en', 'name', 'Taibah University'),
(2193, 1641, 'en', 'name', 'New York Blood Center'),
(2194, 1642, 'en', 'name', 'Kosair Children''s Hospital'),
(2195, 1643, 'en', 'name', 'National Institute of Nursing Research'),
(2196, 1644, 'en', 'name', 'Islamic Azad University, Karaj, Karaj Islamic Azad University'),
(2197, 1644, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کرج'),
(2198, 1645, 'en', 'name', 'Southwestern Oklahoma State University'),
(2199, 1646, 'bn', 'name', 'ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(2200, 1646, 'en', 'name', 'Chittagong Medical College'),
(2201, 1647, 'en', 'name', 'Sarawak General Hospital'),
(2202, 1647, 'ms', 'name', 'Hospital Umum Sarawak'),
(2203, 1648, 'en', 'name', 'Conference Board Math Sciences'),
(2204, 1649, 'en', 'name', 'University Hospital Complex Of Vigo'),
(2205, 1650, 'en', 'name', 'Dundee Dental Hospital'),
(2206, 1651, 'en', 'name', 'Royal Liverpool University Hospital'),
(2207, 1652, 'en', 'name', 'Kunming General Hospital of Chengdu Military Command'),
(2208, 1652, 'zh', 'name', 'ęˆéƒ½å†›åŒŗę˜†ę˜Žę€»åŒ»é™¢'),
(2209, 1653, 'en', 'name', 'Catalyst Health Economics Consultants Ltd'),
(2210, 1654, 'en', 'name', 'Sherman Hospital'),
(2211, 1655, 'en', 'name', 'National University of LujƔn'),
(2212, 1655, 'es', 'name', 'Universidad Nacional de LujƔn'),
(2213, 1656, 'en', 'name', 'Bemidji State University'),
(2214, 1657, 'en', 'name', 'Fulbourn Hospital'),
(2215, 1658, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ιωαννίνων "Ī“. Ī§Ī±Ļ„Ī¶Ī·ĪŗĻŽĻƒĻ„Ī±"'),
(2216, 1658, 'no_lang_code', 'name', 'General Hospital of Ioannina G. Hatzikosta'),
(2217, 1659, 'es', 'name', 'Hospital San Pedro de AlcƔntara'),
(2218, 1660, 'no_lang_code', 'name', 'Ecofys (Netherlands)'),
(2219, 1661, 'en', 'name', 'Kuban State University'),
(2220, 1661, 'ru', 'name', 'Кубанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2221, 1662, 'en', 'name', 'Baqiyatallah University of Medical Sciences'),
(2222, 1662, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŁ‚ŪŒŲ©Ų§Ł„Ł„Ł‡'),
(2223, 1663, 'ja', 'name', 'ä¹ę®µå‚ē—…é™¢'),
(2224, 1663, 'no_lang_code', 'name', 'Kudanzaka Hospital'),
(2225, 1664, 'en', 'name', 'Bnai Zion Medical Center'),
(2226, 1664, 'he', 'name', '×ž×Ø×›×– רפואי בני ציון'),
(2227, 1665, 'en', 'name', 'Queen Victoria Hospital'),
(2228, 1666, 'en', 'name', 'University Clinic of Pulmonary and Allergic Diseases Golnik'),
(2229, 1667, 'en', 'name', 'Kanagawa Rehabilitation Hospital'),
(2230, 1667, 'ja', 'name', 'ē„žå„ˆå·ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(2231, 1668, 'en', 'name', 'Wingate University'),
(2232, 1669, 'es', 'name', 'Hospital Central de la Cruz Roja San JosƩ y Santa Adela'),
(2233, 1670, 'en', 'name', 'Chung Hua University'),
(2234, 1671, 'en', 'name', 'Hubei Polytechnic University'),
(2235, 1671, 'zh', 'name', 'ę¹–åŒ—ē†å·„å­¦é™¢'),
(2236, 1672, 'en', 'name', 'Shriners Hospitals for Children - Canada'),
(2237, 1673, 'en', 'name', 'Schneider Children''s Medical Center'),
(2238, 1674, 'en', 'name', 'Seoul National University Hospital'),
(2239, 1674, 'ko', 'name', 'ģ„œģšøėŒ€ķ•™źµė³‘ģ›'),
(2240, 1675, 'en', 'name', 'Scripps Clinic Medical Group'),
(2241, 1676, 'tr', 'name', 'Diyarbakır Askeri Hastanesi'),
(2242, 1677, 'fr', 'name', 'Adi Valor'),
(2243, 1678, 'en', 'name', 'International Center for Public Health'),
(2244, 1679, 'en', 'name', 'Okazaki City Hospital'),
(2245, 1679, 'ja', 'name', 'å²”å“Žåø‚ę°‘ē—…é™¢'),
(2246, 1680, 'en', 'name', 'Lagos State University'),
(2247, 1680, 'yo', 'name', 'YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ ƈkó'),
(2248, 1681, 'fi', 'name', 'Keski-Satakunnan Terveydenhuollon kuntayhtymƤ'),
(2249, 1682, 'en', 'name', 'Meenakshi Ammal Dental College and Hospital'),
(2250, 1683, 'en', 'name', 'Royal South Hants Hospital'),
(2251, 1684, 'ja', 'name', 'å¤č³€ē—…é™¢'),
(2252, 1684, 'no_lang_code', 'name', 'Koga Hospital'),
(2253, 1685, 'en', 'name', 'Louisville VA Medical Center'),
(2254, 1686, 'en', 'name', 'Government Rajaji Hospital'),
(2255, 1687, 'en', 'name', 'National Taiwan Sport University'),
(2256, 1688, 'en', 'name', 'Mount Sinai Hospital'),
(2257, 1688, 'es', 'name', 'Hospital Monte SinaĆ­'),
(2258, 1689, 'it', 'name', 'Ospedale Santa Maria Annunziata'),
(2259, 1690, 'fi', 'name', 'Forssan Seudun Terveydenhuollon KuntayhtymƤ'),
(2260, 1691, 'en', 'name', 'Research Medical Center'),
(2261, 1692, 'en', 'name', 'Daegu University'),
(2262, 1692, 'ko', 'name', 'ėŒ€źµ¬ėŒ€ķ•™źµ'),
(2263, 1693, 'en', 'name', 'Kyung Hee University'),
(2264, 1693, 'ko', 'name', 'ź²½ķ¬ėŒ€ķ•™źµ'),
(2265, 1694, 'no_lang_code', 'name', 'Caritas Medical Centre'),
(2266, 1694, 'zh', 'name', 'ę˜Žę„›é†«é™¢'),
(2267, 1695, 'en', 'name', 'Colorado Center For Hospice and Palliative Care'),
(2268, 1696, 'en', 'name', 'Chosun University'),
(2269, 1696, 'ko', 'name', 'ģ”°ģ„ ėŒ€ķ•™źµ'),
(2270, 1697, 'en', 'name', 'Auckland University of Technology'),
(2271, 1698, 'en', 'name', 'Athens State University'),
(2272, 1698, 'fr', 'name', 'UniversitĆ© d''Ɖtat d''athens'),
(2273, 1699, 'en', 'name', 'Inje University Ilsan Paik Hospital'),
(2274, 1699, 'ko', 'name', 'ģøģ œ ėŒ€ķ•™źµ ģ¼ģ‚° 백병원'),
(2275, 1700, 'en', 'name', 'Harvard Pilgrim Health Care'),
(2276, 1701, 'en', 'name', 'North Tyneside General Hospital'),
(2277, 1702, 'el', 'name', '401 Ī“ĪµĪ½Ī¹ĪŗĻŒ Ī£Ļ„ĻĪ±Ļ„Ī¹Ļ‰Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(2278, 1702, 'en', 'name', '401 General Military Hospital of Athens'),
(2279, 1703, 'en', 'name', 'Musgrave Park Hospital'),
(2280, 1704, 'de', 'name', 'Papiertechnische Stiftung'),
(2281, 1705, 'en', 'name', 'Federation of American Hospitals'),
(2282, 1706, 'hr', 'name', 'Opća bolnica Karlovac'),
(2283, 1707, 'en', 'name', 'Institute For European Environmental Policy'),
(2284, 1708, 'en', 'name', 'Lowell Observatory'),
(2285, 1709, 'no_lang_code', 'name', 'Mirus Bio (United States)'),
(2286, 1710, 'en', 'name', 'Canadian Mathematical Society'),
(2287, 1711, 'en', 'name', 'Rajendra Memorial Research Institute of Medical Sciences'),
(2288, 1712, 'he', 'name', 'בית חולים הרצוג'),
(2289, 1712, 'no_lang_code', 'name', 'Herzog Hospital'),
(2290, 1713, 'en', 'name', 'Integrated Laboratory Systems, Inc.'),
(2291, 1714, 'en', 'name', 'Tbilisi State Medical University'),
(2292, 1714, 'hy', 'name', 'Ō¹Õ¢Õ«Õ¬Õ«Õ½Õ«Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ¢ÕŖÕ·ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(2293, 1714, 'ka', 'name', 'įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(2294, 1715, 'en', 'name', 'Foundation University Medical College'),
(2295, 1716, 'en', 'name', 'Autonomous Operator of Parisian Transports'),
(2296, 1716, 'no_lang_code', 'name', 'RƩgie Autonome des Transports Parisiens (France)'),
(2297, 1717, 'no_lang_code', 'name', 'Information Management Services'),
(2298, 1718, 'en', 'name', 'Bexar County Medical Examiner''s Office'),
(2299, 1719, 'pt', 'name', 'Instituto Superior de Ciências da Administração'),
(2300, 1720, 'en', 'name', 'University of Bangui'),
(2301, 1720, 'fr', 'name', 'UniversitƩ de Bangui'),
(2302, 1721, 'no_lang_code', 'name', 'DuPont (Canada)'),
(2303, 1722, 'tr', 'name', 'Konya Eğitim ve Araştırma Hastanesi'),
(2304, 1723, 'no_lang_code', 'name', 'Envirogen (United States)'),
(2305, 1724, 'en', 'name', 'Satakunta Central Hospital'),
(2306, 1725, 'en', 'name', 'Sheba Medical Center'),
(2307, 1726, 'en', 'name', 'Aomori University of Health and Welfare'),
(2308, 1726, 'ja', 'name', 'é’ę£®ēœŒē«‹äæå„å¤§å­¦'),
(2309, 1727, 'en', 'name', 'Roosevelt University'),
(2310, 1728, 'en', 'name', 'Huron Hospital'),
(2311, 1729, 'it', 'name', 'Azienda Ospedaliero Universitaria Ospedali Riuniti'),
(2312, 1730, 'en', 'name', 'Middlebury College'),
(2313, 1731, 'pt', 'name', 'Escola do Serviço de Saúde Militar'),
(2314, 1732, 'fr', 'name', 'HƓpital Saint-AndrƩ'),
(2315, 1733, 'en', 'name', 'Rush Children''s Hospital'),
(2316, 1734, 'en', 'name', 'Decision Research'),
(2317, 1735, 'fr', 'name', 'HƓpital Saint Joseph'),
(2318, 1736, 'en', 'name', 'New York City College of Technology'),
(2319, 1737, 'bn', 'name', 'ঔাঃ আর আহমেদ ą¦”ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ ও হাসপাতাল'),
(2320, 1737, 'en', 'name', 'Dr. R. Ahmed Dental College and Hospital'),
(2321, 1738, 'ja', 'name', 'åé‰„ē—…é™¢'),
(2322, 1738, 'no_lang_code', 'name', 'Meitetsu Hospital'),
(2323, 1739, 'da', 'name', 'Regionshospitalet Horsens'),
(2324, 1739, 'en', 'name', 'Regional Hospital Horsens'),
(2325, 1740, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁˆŁŠŲŖ'),
(2326, 1740, 'en', 'name', 'Kuwait University'),
(2327, 1741, 'it', 'name', 'Azienda Ospedaliera S.Giuseppe Moscati'),
(2328, 1742, 'en', 'name', 'Long Beach Memorial Medical Center'),
(2329, 1743, 'ja', 'name', 'å®ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(2330, 1743, 'no_lang_code', 'name', 'Takara (Japan)'),
(2331, 1744, 'bn', 'name', 'কলকাতা ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ ও হাসপাতাল'),
(2332, 1744, 'en', 'name', 'Medical College and Hospital, Kolkata'),
(2333, 1744, 'hi', 'name', 'ą¤•ą¤²ą¤•ą¤¤ą„ą¤¤ą¤¾ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(2334, 1745, 'no_lang_code', 'name', 'Physical Sciences (United States)'),
(2335, 1746, 'ca', 'name', 'Hospital Sant Pau i Santa Tecla'),
(2336, 1747, 'fr', 'name', 'HƓpital Fontmaure'),
(2337, 1748, 'no_lang_code', 'name', 'Qi2'),
(2338, 1749, 'en', 'name', 'Kirwan Health Campus'),
(2339, 1750, 'en', 'name', 'Norfolk and Norwich University Hospital'),
(2340, 1751, 'en', 'name', 'Evans Army Community Hospital'),
(2341, 1752, 'en', 'name', 'National Kyushu Medical Center'),
(2342, 1752, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ ä¹å·žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2343, 1753, 'it', 'name', 'Ospedaliero Sirai'),
(2344, 1754, 'en', 'name', 'Probity Medical Research'),
(2345, 1755, 'en', 'name', 'Eugene Applebaum College of Pharmacy and Health Sciences'),
(2346, 1756, 'en', 'name', 'Mahatma Gandhi Memorial Medical College'),
(2347, 1757, 'no_lang_code', 'name', 'Sociometrics Corporation'),
(2348, 1758, 'en', 'name', 'KK Women''s and Children''s Hospital'),
(2349, 1759, 'en', 'name', 'Massachusetts Mental Health Center'),
(2350, 1760, 'ja', 'name', 'ć„ć‚ćå…±ē«‹ē·åˆē—…é™¢'),
(2351, 1760, 'no_lang_code', 'name', 'Iwaki Kyoritsu General Hospital'),
(2352, 1761, 'en', 'name', 'Prince of Wales Hospital'),
(2353, 1762, 'de', 'name', 'Bundesforschungsinstitut für Kulturpflanzen, Julius Kühn-Institut'),
(2354, 1762, 'en', 'name', 'Federal Research Centre for Cultivated Plants'),
(2355, 1763, 'en', 'name', 'National Animal Husbandry Service'),
(2356, 1763, 'zh', 'name', 'å…Øå›½ē•œē‰§ę€»ē«™'),
(2357, 1764, 'en', 'name', 'de Duve Institute'),
(2358, 1764, 'fr', 'name', 'L''Institut de Duve'),
(2359, 1764, 'nl', 'name', 'De Duve Instituut'),
(2360, 1765, 'en', 'name', 'Louisiana State University System'),
(2361, 1766, 'en', 'name', 'Kanagawa Children''s Medical Center'),
(2362, 1766, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ć“ć©ć‚‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2363, 1767, 'en', 'name', 'Kamuzu Central Hospital'),
(2364, 1767, 'es', 'name', 'Hospital central de Kamuzu'),
(2365, 1768, 'en', 'name', 'Dallas Diabetes Research Center'),
(2366, 1769, 'no_lang_code', 'name', 'Taylor Wimpey (United Kingdom)'),
(2367, 1770, 'en', 'name', 'Nishi Eye Hospital'),
(2368, 1770, 'ja', 'name', 'č„æēœ¼ē§‘ē—…é™¢'),
(2369, 1771, 'en', 'name', 'Japanese Red Cross Fukuoka Hospital'),
(2370, 1771, 'ja', 'name', 'ē¦å²”čµ¤åå­—ē—…é™¢'),
(2371, 1772, 'en', 'name', 'Melbourne Centre for Nanofabrication'),
(2372, 1773, 'en', 'name', 'Brenau University'),
(2373, 1774, 'no_lang_code', 'name', 'Trojan Technologies (Canada)'),
(2374, 1775, 'en', 'name', 'National Brain Research Centre'),
(2375, 1775, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą¤øą„ą¤¤ą¤æą¤·ą„ą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°, ą¤®ą¤¾ą¤Øą„‡ą¤øą¤°, हरियाणा'),
(2376, 1776, 'el', 'name', 'ΑνΓρέας Ī£Ļ…Ī³Ī³ĻĻŒĻ‚ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(2377, 1776, 'en', 'name', 'Andreas Sygros Hospital'),
(2378, 1777, 'fr', 'name', 'HƓpital OrthopƩdique de la Suisse Romande'),
(2379, 1778, 'en', 'name', 'Centre for Technical Research and Studies'),
(2380, 1778, 'es', 'name', 'Centro de Estudios e Investigaciones TƩcnicas de Gipuzkoa'),
(2381, 1779, 'no_lang_code', 'name', 'Microbiotix (United States)'),
(2382, 1780, 'pt', 'name', 'Hospital UniversitƔrio EvangƩlico de Curitiba'),
(2383, 1781, 'en', 'name', 'University College Hospital, Ibadan'),
(2384, 1782, 'ar', 'name', 'مستؓفى Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„'),
(2385, 1782, 'en', 'name', 'King Fahd Hospital of the University'),
(2386, 1783, 'en', 'name', 'Lenox Hill Hospital'),
(2387, 1784, 'en', 'name', 'Lake Regional Hospital'),
(2388, 1785, 'es', 'name', 'Hospital de l''EsperanƧa'),
(2389, 1786, 'en', 'name', 'Raja Ramanna Centre for Advanced Technology'),
(2390, 1786, 'hi', 'name', 'राजा ą¤°ą¤¾ą¤®ą¤Øą„ą¤Øą¤¾ ą¤Ŗą„ą¤°ą¤—ą¤¤ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(2391, 1786, 'ml', 'name', 'ą“°ą“¾ą“œą“¾ ą“°ą“¾ą“®ą“£ąµą“£ ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“…ą“”ąµą“µą“¾ąµ»ą“øąµą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(2392, 1786, 'mr', 'name', 'राजा ą¤°ą¤¾ą¤®ą¤£ą„ą¤£ą¤¾ ą¤…ą¤¤ą„ą¤Æą¤¾ą¤§ą„ą¤Øą¤æą¤• ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(2393, 1787, 'en', 'name', 'Rajavithi Hospital'),
(2394, 1788, 'en', 'name', 'Institute for Theoretical and Experimental Physics'),
(2395, 1788, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ физики'),
(2396, 1789, 'en', 'name', 'Saint Petersburg State Electrotechnical University'),
(2397, 1789, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2398, 1790, 'en', 'name', 'Center for Epidemiology and Animal Health'),
(2399, 1791, 'en', 'name', 'Madrid Health Service'),
(2400, 1791, 'es', 'name', 'Servicio MadrileƱo de Salud'),
(2401, 1792, 'no_lang_code', 'name', 'DNA Link (South Korea)'),
(2402, 1793, 'en', 'name', 'Colchester Hospital'),
(2403, 1794, 'en', 'name', 'Güven Hospital'),
(2404, 1794, 'tr', 'name', 'Güven Hastanesi'),
(2405, 1795, 'en', 'name', 'East Georgia State College'),
(2406, 1796, 'en', 'name', 'St Richard''s Hospital'),
(2407, 1797, 'en', 'name', 'Memorial Hospital'),
(2408, 1798, 'en', 'name', 'National Institute for Agro-Environmental Sciences'),
(2409, 1798, 'ja', 'name', 'č¾²ę„­ē’°å¢ƒå¤‰å‹•ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(2410, 1799, 'en', 'name', 'Istanbul Bilim University'),
(2411, 1799, 'tr', 'name', 'İstanbul Bilim Üniversitesi'),
(2412, 1800, 'es', 'name', 'Hospital Santiago Apostol'),
(2413, 1801, 'en', 'name', 'Central Queensland University'),
(2414, 1802, 'en', 'name', 'Ignatius Hospital'),
(2415, 1802, 'nl', 'name', 'Sint Ignatiusziekenhuis'),
(2416, 1803, 'en', 'name', 'DeKalb Medical Center'),
(2417, 1804, 'en', 'name', 'Enterprise Ireland'),
(2418, 1805, 'en', 'name', 'St Petersburg University'),
(2419, 1805, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2420, 1806, 'en', 'name', 'Belfast City Hospital'),
(2421, 1807, 'en', 'name', 'National Center of Hygiene Medical Ecology and Nutrition'),
(2422, 1808, 'fr', 'name', 'Polyclinique de Bordeaux-Tondu'),
(2423, 1809, 'en', 'name', 'Gomal University'),
(2424, 1809, 'ur', 'name', 'جامعہ ŚÆŁˆŁ…Ł„'),
(2425, 1810, 'en', 'name', 'University of Minnesota, Waseca'),
(2426, 1811, 'en', 'name', 'Birmingham VA Medical Center'),
(2427, 1812, 'no_lang_code', 'name', 'Unilever (Netherlands)'),
(2428, 1813, 'en', 'name', 'Queen Astrid Military Hospital'),
(2429, 1813, 'nl', 'name', 'Militair Hospitaal Koningin Astrid'),
(2430, 1814, 'en', 'name', 'Adler Planetarium'),
(2431, 1815, 'en', 'name', 'Institute for Computer Science and Control'),
(2432, 1815, 'hu', 'name', 'Magyar TudomÔnyos Akadémia SzÔmítÔstechnikai és AutomatizÔlÔsi Kutatóintézete'),
(2433, 1816, 'en', 'name', 'Federal Agency for Health and Social Development');
INSERT INTO `ror_settings` VALUES
(2434, 1816, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ агентство по Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃŽ Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¼Ńƒ Ń€Š°Š·Š²ŠøŃ‚ŠøŃŽ'),
(2435, 1817, 'en', 'name', 'Casa Colina Centers for Rehabilitation'),
(2436, 1818, 'en', 'name', 'Sharif University of Technology'),
(2437, 1818, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ ؓریف'),
(2438, 1819, 'fr', 'name', 'Centre Hospitalier Philippe Pinel'),
(2439, 1820, 'no_lang_code', 'name', 'Social and Scientific Systems (United States)'),
(2440, 1821, 'en', 'name', 'Saint Barnabas Medical Center'),
(2441, 1822, 'en', 'name', 'Armed Forces Hospital'),
(2442, 1823, 'en', 'name', 'St. John''s Hospital'),
(2443, 1823, 'hu', 'name', 'Szent JÔnos KórhÔz'),
(2444, 1824, 'en', 'name', 'Hacettepe University Hospital'),
(2445, 1825, 'en', 'name', 'Kansai Rosai Hospital'),
(2446, 1825, 'ja', 'name', 'é–¢č„æć‚ć†ć•ć„ē—…é™¢'),
(2447, 1826, 'no_lang_code', 'name', 'ArcelorMittal (France)'),
(2448, 1827, 'en', 'name', 'Nashville VA Medical Center'),
(2449, 1828, 'en', 'name', 'Tottori University'),
(2450, 1828, 'ja', 'name', '鳄取大学'),
(2451, 1829, 'en', 'name', 'Sisters of Mercy Health System'),
(2452, 1830, 'en', 'name', 'Hunan Cancer Hospital'),
(2453, 1831, 'en', 'name', 'Saurashtra University'),
(2454, 1832, 'no_lang_code', 'name', 'Starks Associates'),
(2455, 1833, 'en', 'name', 'European Synchrotron Radiation Facility'),
(2456, 1834, 'en', 'name', 'Islamic Azad University, Arak'),
(2457, 1834, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ų±Ų§Ś©'),
(2458, 1835, 'es', 'name', 'Hospital de Galdakao'),
(2459, 1836, 'en', 'name', 'University Hospital Coventry'),
(2460, 1837, 'en', 'name', 'Kansas Department of Health and Environment'),
(2461, 1838, 'en', 'name', 'Rajendra Institute of Medical Sciences'),
(2462, 1839, 'en', 'name', 'The Military General Hospital of Beijing PLA'),
(2463, 1839, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›ę€»åŒ»é™¢'),
(2464, 1840, 'ja', 'name', 'å·å“Žåø‚ē«‹å·å“Žē—…é™¢'),
(2465, 1840, 'no_lang_code', 'name', 'Kawasaki Municipal Hospital'),
(2466, 1841, 'en', 'name', 'Marshfield Clinic'),
(2467, 1842, 'en', 'name', 'Children''s Hospital of Zhejiang University'),
(2468, 1843, 'ko', 'name', 'ź±“źµ­ėŒ€ķ•™źµ'),
(2469, 1843, 'no_lang_code', 'name', 'Konkuk University'),
(2470, 1844, 'en', 'name', 'Ripon College'),
(2471, 1845, 'en', 'name', 'Ho Chi Minh City Medicine and Pharmacy University'),
(2472, 1845, 'fr', 'name', 'UniversitƩ de pharmacie et mƩdecine d''hƓ-chi-minh-ville'),
(2473, 1845, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y Dược ThĆ nh phố Hồ ChĆ­ Minh'),
(2474, 1846, 'en', 'name', 'Adelphi University'),
(2475, 1847, 'no_lang_code', 'name', 'Canadian Natural Resources'),
(2476, 1848, 'en', 'name', 'George Eliot Hospital'),
(2477, 1849, 'es', 'name', 'Hospital General Dr. Manuel Gea Gonzalez'),
(2478, 1850, 'fr', 'name', 'Centre Hospitalier et Universitaire de Brazzaville'),
(2479, 1851, 'en', 'name', 'Queen Elizabeth Central Hospital'),
(2480, 1852, 'en', 'name', 'MRC Unit the Gambia'),
(2481, 1853, 'en', 'name', 'Oregon Social Learning Center'),
(2482, 1854, 'en', 'name', 'Public Health Ontario'),
(2483, 1854, 'fr', 'name', 'SantƩ publique Ontario'),
(2484, 1855, 'no_lang_code', 'name', 'NuroRestore (United States)'),
(2485, 1856, 'en', 'name', 'Chaudhary Charan Singh Haryana Agricultural University'),
(2486, 1856, 'hi', 'name', 'ą¤šą„Œą¤§ą¤°ą„€ चरण सिंह हरियाणा ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2487, 1856, 'ta', 'name', 'சௌதரி ą®šą®°ą®£ąÆ ą®šą®æą®™ąÆ அரியானா ą®µąÆ‡ą®³ą®¾ą®£ąÆą®®ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2488, 1857, 'en', 'name', 'National Research Mordovia State University'),
(2489, 1857, 'ru', 'name', 'ŠœŠ¾Ń€Š“Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. П. ŠžŠ³Š°Ń€Ń‘Š²Š°'),
(2490, 1858, 'no_lang_code', 'name', 'PTV Group (Germany)'),
(2491, 1859, 'en', 'name', 'Spalding University'),
(2492, 1860, 'en', 'name', 'Royal Aberdeen Children''s Hospital'),
(2493, 1861, 'no_lang_code', 'name', 'Safdarjang Hospital'),
(2494, 1862, 'en', 'name', 'St. Mary''s Hospital'),
(2495, 1863, 'es', 'name', 'Hospital Angeles Pedregal'),
(2496, 1864, 'en', 'name', 'Government Medical College'),
(2497, 1865, 'en', 'name', 'Union for International Cancer Control'),
(2498, 1865, 'fr', 'name', 'Union internationale contre le cancer'),
(2499, 1866, 'en', 'name', 'Federal Medical Centre'),
(2500, 1867, 'en', 'name', 'Affiliated Hospital of Qingdao University'),
(2501, 1868, 'en', 'name', 'Maryknoll Medical Center'),
(2502, 1868, 'ko', 'name', '메리놀병원'),
(2503, 1869, 'en', 'name', 'Chongqing Academy of Animal Science'),
(2504, 1869, 'zh', 'name', 'é‡åŗ†åø‚ē•œē‰§ē§‘å­¦é™¢'),
(2505, 1870, 'en', 'name', 'Cohen Children''s Medical Center'),
(2506, 1871, 'en', 'name', 'Memorial Health University Medical Center'),
(2507, 1872, 'tr', 'name', 'Zekai Tahir Burak Kadın Sağlığı Eğitim ve Araştırma Hastanesi'),
(2508, 1873, 'ja', 'name', 'ē¦å±±åø‚ę°‘ē—…é™¢'),
(2509, 1873, 'no_lang_code', 'name', 'Fukuyama City Hospital'),
(2510, 1874, 'en', 'name', 'West Virginia State Department of Health and Human Resources'),
(2511, 1875, 'en', 'name', 'Solapur University'),
(2512, 1875, 'mr', 'name', 'ą¤øą„‹ą¤²ą¤¾ą¤Ŗą„‚ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(2513, 1876, 'en', 'name', 'National Interuniversity Consortium for the Physical Sciences of Matter'),
(2514, 1877, 'en', 'name', 'Royal Cornwall Hospital Trust'),
(2515, 1878, 'no_lang_code', 'name', 'Assaf Harofeh Medical Center'),
(2516, 1879, 'en', 'name', 'Aurora University'),
(2517, 1880, 'en', 'name', 'Douglass Hanly Moir Pathology'),
(2518, 1881, 'en', 'name', 'University of Tennessee Medical Center'),
(2519, 1882, 'no_lang_code', 'name', 'Emergent BioSolutions (United States)'),
(2520, 1883, 'en', 'name', 'Dr. Ram Manohar Lohia Avadh University'),
(2521, 1883, 'hi', 'name', 'ą¤”ą„‰ राम ą¤®ą¤Øą„‹ą¤¹ą¤° ą¤²ą„‹ą¤¹ą¤æą¤Æą¤¾ अवध ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2522, 1884, 'no_lang_code', 'name', 'Kema International (Netherlands)'),
(2523, 1885, 'en', 'name', 'Bethesda Hospital East'),
(2524, 1886, 'tr', 'name', 'Ɩzel Ortadoğu 19 Mayıs Hastanesi'),
(2525, 1887, 'en', 'name', 'Shimonoseki City Hospital'),
(2526, 1887, 'ja', 'name', '下関市立市民病院'),
(2527, 1888, 'no_lang_code', 'name', 'Emmes (United States)'),
(2528, 1889, 'en', 'name', 'Inje University Sanggye Paik Hospital'),
(2529, 1890, 'de', 'name', 'Institut Universitaire Kurt Bƶsch'),
(2530, 1891, 'ja', 'name', 'ę¤™å±±å„³å­¦åœ’å¤§å­¦'),
(2531, 1891, 'no_lang_code', 'name', 'Sugiyama Jogakuen University'),
(2532, 1892, 'no_lang_code', 'name', 'INRAD (United States)'),
(2533, 1893, 'no_lang_code', 'name', 'S&N (Germany)'),
(2534, 1894, 'en', 'name', 'Alexandra Hospital'),
(2535, 1895, 'en', 'name', 'Salford Royal Hospital'),
(2536, 1896, 'no_lang_code', 'name', 'Radiation Monitoring Devices (United States)'),
(2537, 1897, 'en', 'name', 'Miller Children''s & Women''s Hospital'),
(2538, 1898, 'en', 'name', 'Eastern Maine Medical Center'),
(2539, 1899, 'no_lang_code', 'name', 'CAS Software (Germany)'),
(2540, 1900, 'en', 'name', 'El Paso County Public Health'),
(2541, 1901, 'hr', 'name', 'Klinički Bolnički Centar Rijeka'),
(2542, 1902, 'en', 'name', 'Mother Teresa Hospital'),
(2543, 1902, 'sq', 'name', 'Qendra Spitalore Universitare Nene Tereza'),
(2544, 1903, 'no_lang_code', 'name', 'Prapokklao Hospital'),
(2545, 1903, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøžąø£ąø°ąø›ąøą¹€ąøąø„ą¹‰ąø²'),
(2546, 1904, 'en', 'name', 'Pusan National University Hospital'),
(2547, 1905, 'en', 'name', 'Prince of Wales Hospital'),
(2548, 1906, 'bs', 'name', 'Univerzitet u Banja Luci'),
(2549, 1906, 'no_lang_code', 'name', 'University of Banja Luka'),
(2550, 1906, 'sr', 'name', 'Универзитет у Š‘Š°ŃšŠ¾Ń˜ Š›ŃƒŃ†Šø'),
(2551, 1907, 'en', 'name', 'Children''s Hospital of Orange County'),
(2552, 1908, 'en', 'name', 'Chia Nan University of Pharmacy and Science'),
(2553, 1909, 'en', 'name', 'Anne Arundel Medical Center'),
(2554, 1910, 'en', 'name', 'Behavioral Tech Research, Inc.'),
(2555, 1911, 'en', 'name', 'American Red Cross'),
(2556, 1911, 'es', 'name', 'Cruz Roja Americana'),
(2557, 1911, 'fr', 'name', 'Croix-rouge amƩricaine'),
(2558, 1912, 'fr', 'name', 'CitƩ Internationale Universitaire de Paris'),
(2559, 1913, 'nl', 'name', 'De Wever-Ziekenhuis'),
(2560, 1914, 'en', 'name', 'NTT Medical Center'),
(2561, 1914, 'ja', 'name', 'NTTę±ę—„ęœ¬é–¢ę±ē—…é™¢'),
(2562, 1915, 'en', 'name', 'Shaoguan University'),
(2563, 1915, 'zh', 'name', '韶关学院'),
(2564, 1916, 'no_lang_code', 'name', 'Siemens (United Kingdom)'),
(2565, 1917, 'no_lang_code', 'name', 'Sequella (United States)'),
(2566, 1918, 'en', 'name', 'Institute of Development Studies'),
(2567, 1919, 'es', 'name', 'Hospital El Bierzo'),
(2568, 1920, 'en', 'name', 'Dairy Farmers Of Canada'),
(2569, 1921, 'en', 'name', 'Kaiser Permanente Center for Health Research'),
(2570, 1922, 'de', 'name', 'UniversitƤtsklinikum Leipzig'),
(2571, 1922, 'en', 'name', 'University Hospital Leipzig'),
(2572, 1923, 'de', 'name', 'Ɩsterreichische Forschungsfƶrderungsgesellschaft'),
(2573, 1923, 'en', 'name', 'Austrian Research Promotion Agency'),
(2574, 1924, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© آل Ų§Ł„ŲØŁŠŲŖ'),
(2575, 1924, 'en', 'name', 'Al al-Bayt University'),
(2576, 1925, 'it', 'name', 'Ospedale Koelliker'),
(2577, 1926, 'en', 'name', 'Multnomah County Health Department'),
(2578, 1927, 'en', 'name', 'Affiliated Hospital of Jiangxi College of TCM'),
(2579, 1927, 'zh', 'name', 'ę±Ÿč„æäø­åŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(2580, 1928, 'en', 'name', 'Temple University Hospital'),
(2581, 1929, 'no_lang_code', 'name', 'PotashCorp (Canada)'),
(2582, 1930, 'no_lang_code', 'name', 'Vattenfall (Sweden)'),
(2583, 1931, 'en', 'name', 'East Surrey Hospital'),
(2584, 1932, 'en', 'name', 'Kyoto Prefectural University of Medicine'),
(2585, 1932, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹åŒ»ē§‘å¤§å­¦'),
(2586, 1933, 'en', 'name', 'Albert Schweitzer Hospital'),
(2587, 1933, 'fr', 'name', 'HƓpital albert-schweitzer'),
(2588, 1934, 'en', 'name', 'Hospital of the University of Pennsylvania'),
(2589, 1935, 'en', 'name', 'Asahikawa City Hospital'),
(2590, 1935, 'ja', 'name', 'åø‚ē«‹ę—­å·ē—…é™¢'),
(2591, 1936, 'en', 'name', 'University of Santo Tomas Hospital'),
(2592, 1937, 'en', 'name', 'NC Department of Health and Human Services'),
(2593, 1938, 'en', 'name', 'Laconia Women''s Health Center'),
(2594, 1939, 'en', 'name', 'St. Barnabas Hospital'),
(2595, 1940, 'no_lang_code', 'name', 'WNET (United States)'),
(2596, 1941, 'en', 'name', 'JA Toride Medical Center'),
(2597, 1941, 'ja', 'name', 'JAćØć‚Šć§ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(2598, 1942, 'en', 'name', 'Kaiser Permanente San Rafael Medical Center'),
(2599, 1943, 'en', 'name', 'University of Central Arkansas'),
(2600, 1944, 'en', 'name', 'Kijabe Hospital'),
(2601, 1945, 'en', 'name', 'Resurrection Medical Center'),
(2602, 1946, 'en', 'name', 'Alaska Native Tribal Health Consortium'),
(2603, 1947, 'en', 'name', 'Canadian Science Centre for Human and Animal Health'),
(2604, 1948, 'en', 'name', 'Semnan University'),
(2605, 1948, 'fa', 'name', 'دانؓگاه سمنان'),
(2606, 1949, 'en', 'name', 'Dunedin Public Hospital'),
(2607, 1950, 'en', 'name', 'Medical Society of Delaware'),
(2608, 1951, 'en', 'name', 'Alexandra Hospital'),
(2609, 1952, 'en', 'name', 'Rappaport Family Institute for Research in the Medical Sciences'),
(2610, 1953, 'en', 'name', 'Troy University'),
(2611, 1954, 'en', 'name', 'Perm State University'),
(2612, 1954, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2613, 1955, 'en', 'name', 'Levanger Hospital'),
(2614, 1955, 'no', 'name', 'Sykehuset Levanger'),
(2615, 1956, 'en', 'name', 'Federal Medical Centre'),
(2616, 1957, 'en', 'name', 'Cairns Hospital'),
(2617, 1958, 'no_lang_code', 'name', 'Xenon Pharmaceuticals (Canada)'),
(2618, 1959, 'en', 'name', 'St. Vincent''s University Hospital'),
(2619, 1960, 'en', 'name', 'Regina General Hospital'),
(2620, 1961, 'en', 'name', 'Our Lady of the Lake University'),
(2621, 1962, 'en', 'name', 'Sichuan Cancer Hospital'),
(2622, 1962, 'zh', 'name', 'å››å·ēœč‚æē˜¤ē ”ē©¶ę‰€'),
(2623, 1963, 'en', 'name', 'Regina Qu''Appelle Health Region'),
(2624, 1964, 'en', 'name', 'Blackburn College'),
(2625, 1965, 'en', 'name', 'Nagoya Memorial Hospital'),
(2626, 1965, 'ja', 'name', 'åå¤å±‹čØ˜åæµē—…é™¢'),
(2627, 1966, 'en', 'name', 'Health Services Academy'),
(2628, 1967, 'es', 'name', 'Hospital Universitario HM Madrid'),
(2629, 1968, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‡ŁˆŁ„ŁŠŲ± Ų§Ł„Ų·ŲØŁŠŲ©'),
(2630, 1968, 'en', 'name', 'Hawler Medical University'),
(2631, 1969, 'fr', 'name', 'UniversitƩ pontificale catholique de goiƔs'),
(2632, 1969, 'pt', 'name', 'Pontifícia Universidade Católica de GoiÔs'),
(2633, 1970, 'en', 'name', 'The People''s Hospital of Guangxi Zhuang Autonomous Region'),
(2634, 1970, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(2635, 1971, 'cy', 'name', 'Ysbyty Singleton'),
(2636, 1971, 'en', 'name', 'Singleton Hospital'),
(2637, 1972, 'no_lang_code', 'name', 'Doty Scientific (United States)'),
(2638, 1973, 'en', 'name', 'Nagoya City University Hospital'),
(2639, 1973, 'ja', 'name', 'åå¤å±‹åø‚ē«‹å¤§å­¦ē—…é™¢'),
(2640, 1974, 'pt', 'name', 'IADE Superior de Marketing e Publicidade'),
(2641, 1975, 'bn', 'name', 'যাদবপুর ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(2642, 1975, 'en', 'name', 'Jadavpur University'),
(2643, 1975, 'fr', 'name', 'UniversitƩ jadavpur'),
(2644, 1975, 'gu', 'name', 'જાદવપુર ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(2645, 1975, 'hi', 'name', 'ą¤Æą¤¾ą¤¦ą¤µą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2646, 1975, 'kn', 'name', 'ą²œą²¾ą²¦ą²µą³ ಪುರ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(2647, 1975, 'pa', 'name', 'ਜਾਦਵਪੁਰ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(2648, 1975, 'te', 'name', 'ą°œą°¾ą°¦ą°µą± ą°Ŗą±‚ą°°ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(2649, 1976, 'en', 'name', 'Karachi Medical and Dental College'),
(2650, 1977, 'en', 'name', 'Biomedical Primate Research Centre'),
(2651, 1978, 'en', 'name', 'St. Luke''s Hospital'),
(2652, 1979, 'en', 'name', 'Emory University Hospital Midtown'),
(2653, 1980, 'en', 'name', 'Trimbos Institute'),
(2654, 1980, 'nl', 'name', 'Trimbos instituut'),
(2655, 1981, 'ar', 'name', 'ؓبكة الجامعات Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(2656, 1981, 'en', 'name', 'Egyptian Universities Network'),
(2657, 1982, 'no_lang_code', 'name', 'Dassault Aviation (France)'),
(2658, 1983, 'en', 'name', 'Australian Centre for Disease Preparedness'),
(2659, 1984, 'en', 'name', 'Sarasota Memorial Hospital'),
(2660, 1985, 'es', 'name', 'Hospital Rio Carrion'),
(2661, 1986, 'no_lang_code', 'name', 'Barkatullah University'),
(2662, 1987, 'en', 'name', 'University of Health Sciences Vientiane'),
(2663, 1987, 'lo', 'name', 'ąŗ”ąŗ°ąŗ«ąŗ²ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ą»„ąŗ„ ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ąŗŖąŗ²ąŗ” ąŗŖąŗøąŗ‚ąŗ°ąŗžąŗ²ąŗš'),
(2664, 1988, 'de', 'name', 'UniversitƤres Cancer Center Hamburg'),
(2665, 1988, 'en', 'name', 'University Cancer Center Hamburg'),
(2666, 1989, 'en', 'name', 'Wilberforce University'),
(2667, 1989, 'fr', 'name', 'UniversitƩ de wilberforce'),
(2668, 1990, 'it', 'name', 'Ospedale Santa Maria'),
(2669, 1991, 'en', 'name', 'Abbasi Shaheed Hospital'),
(2670, 1991, 'ur', 'name', 'عباسی Ų“Ł‡ŁŠŲÆ ہسپتال'),
(2671, 1992, 'pt', 'name', 'Instituto Superior de Ciências da Informação e da Administração'),
(2672, 1993, 'en', 'name', 'American Anthropological Association'),
(2673, 1994, 'no_lang_code', 'name', 'Foxconn (Japan)'),
(2674, 1995, 'en', 'name', 'La Salle University'),
(2675, 1995, 'es', 'name', 'Universidad de la Salle'),
(2676, 1995, 'fr', 'name', 'UniversitƩ la Salle'),
(2677, 1996, 'en', 'name', 'Regions Hospital'),
(2678, 1997, 'en', 'name', 'Alaska Native Medical Center'),
(2679, 1998, 'es', 'name', 'Hospital Virgen de la Concha'),
(2680, 1999, 'en', 'name', 'River Oaks Hospital'),
(2681, 2000, 'en', 'name', 'National Defense Medical Center'),
(2682, 2001, 'en', 'name', 'First Affiliated Hospital of Shantou University Medical College'),
(2683, 2001, 'zh', 'name', 'ę±•å¤“å¤§å­¦åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(2684, 2002, 'en', 'name', 'Jerry L. Pettis Memorial VA Medical Center'),
(2685, 2003, 'en', 'name', 'Oklahoma City University'),
(2686, 2004, 'it', 'name', 'Ospedale ā€œM. Bufaliniā€ di Cesena'),
(2687, 2005, 'en', 'name', 'Academia Nacional Superior de Orquestra'),
(2688, 2006, 'en', 'name', 'Knoxville College'),
(2689, 2007, 'en', 'name', 'Kobe Rosai Hospital'),
(2690, 2007, 'ja', 'name', 'ē„žęˆøåŠ“ē½ē—…é™¢'),
(2691, 2008, 'en', 'name', 'Community Regional Medical Center'),
(2692, 2009, 'no_lang_code', 'name', 'Hiram College'),
(2693, 2010, 'en', 'name', 'Kaiser Permanente Redwood City Medical Center'),
(2694, 2011, 'en', 'name', 'Chengde Medical University'),
(2695, 2011, 'zh', 'name', 'ę‰æå¾·åŒ»å­¦é™¢'),
(2696, 2012, 'en', 'name', 'Magee Rehabilitation Hospital'),
(2697, 2013, 'en', 'name', 'Royal Inland Hospital'),
(2698, 2014, 'en', 'name', 'University of Ulsan'),
(2699, 2014, 'ko', 'name', 'ģšøģ‚°ėŒ€ķ•™źµ'),
(2700, 2015, 'en', 'name', 'James J. Peters VA Medical Center'),
(2701, 2016, 'el', 'name', 'Ī ĪµĻĪ¹Ļ†ĪµĻĪµĪ¹Ī±ĪŗĻŒ Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ - ĪœĪ±Ī¹ĪµĻ…Ļ„Ī®ĻĪ¹Īæ - "Ī•Ī›Ī•ĪĪ‘ Ī’Ī•ĪĪ™Ī–Ī•Ī›ĪŸĪ„"'),
(2702, 2016, 'en', 'name', 'General-Maternity District Hospital Helena Venizelou'),
(2703, 2017, 'no_lang_code', 'name', 'ArcelorMittal (Canada)'),
(2704, 2018, 'en', 'name', 'Fuzhou Dermatosis Prevention Hospital'),
(2705, 2018, 'zh', 'name', 'ē¦å·žåø‚ēš®č‚¤ē—…é˜²ę²»é™¢'),
(2706, 2019, 'es', 'name', 'Hospital Nacional Dos de Mayo'),
(2707, 2020, 'fr', 'name', 'HƓpital Debrousse'),
(2708, 2021, 'no_lang_code', 'name', 'Proportional Technologies'),
(2709, 2022, 'en', 'name', 'Prince Charles Hospital'),
(2710, 2023, 'en', 'name', 'Mississippi State Medical Association'),
(2711, 2024, 'pt', 'name', 'Hospital Pulido Valente'),
(2712, 2025, 'it', 'name', 'Azienda Ospedaliera Santa Maria Degli Angeli'),
(2713, 2026, 'da', 'name', 'Regionshospitalet Herning'),
(2714, 2026, 'en', 'name', 'Herning Regional Hospital'),
(2715, 2027, 'en', 'name', 'Raritan Bay Medical Center'),
(2716, 2028, 'en', 'name', 'Kerala Institute of Medical Sciences'),
(2717, 2029, 'el', 'name', '424 Ī“ĪµĪ½Ī¹ĪŗĻŒ Ī£Ļ„ĻĪ±Ļ„Ī¹Ļ‰Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(2718, 2029, 'en', 'name', '424 General Military Hospital'),
(2719, 2030, 'en', 'name', 'Counties Manukau District Health Board'),
(2720, 2031, 'no_lang_code', 'name', 'INRA Transfert (France)'),
(2721, 2032, 'en', 'name', 'Nottingham General Hospital'),
(2722, 2033, 'en', 'name', 'Singapore Eye Research Institute'),
(2723, 2034, 'en', 'name', 'Busan Medical Center'),
(2724, 2034, 'ko', 'name', 'ė¶€ģ‚°ģ˜ė£Œģ›'),
(2725, 2035, 'no_lang_code', 'name', 'Network Rail'),
(2726, 2036, 'en', 'name', 'John Brown University'),
(2727, 2037, 'en', 'name', 'Ishikawa Prefectural Central Hospital'),
(2728, 2037, 'ja', 'name', 'ēŸ³å·ēœŒē«‹äø­å¤®ē—…é™¢'),
(2729, 2038, 'en', 'name', 'Carmel Medical Center'),
(2730, 2039, 'en', 'name', 'SUNY Korea'),
(2731, 2039, 'ko', 'name', 'ķ•œźµ­ė‰“ģš•ģ£¼ė¦½ėŒ€ķ•™źµ'),
(2732, 2040, 'en', 'name', 'Positive University'),
(2733, 2040, 'pt', 'name', 'Universidade Positivo'),
(2734, 2041, 'de', 'name', 'UMIT - Private Universität für Gesundheitswissenschaften, Medizinische Informatik und Technik'),
(2735, 2042, 'en', 'name', 'Silpakorn University'),
(2736, 2042, 'th', 'name', 'ดหาวณทยาคัยศณคปากร'),
(2737, 2043, 'tr', 'name', 'Dokuz Eylül Üniversitesi Hastanesi'),
(2738, 2044, 'no_lang_code', 'name', 'Medical Physics Consultants'),
(2739, 2045, 'en', 'name', 'St Francis Medical Center'),
(2740, 2046, 'en', 'name', 'University Mental Health Research Institute'),
(2741, 2047, 'en', 'name', 'Sarojini Naidu Medical College'),
(2742, 2047, 'hi', 'name', 'ą¤øą¤°ą„‹ą¤œą¤æą¤Øą„€ ą¤Øą¤¾ą¤Æą¤”ą„‚ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2743, 2048, 'it', 'name', 'Consorzio Milano Ricerche'),
(2744, 2049, 'en', 'name', 'University of South Carolina Aiken'),
(2745, 2050, 'pt', 'name', 'Hospital São Teotónio'),
(2746, 2051, 'en', 'name', 'Central Texas Veterans Health Care System'),
(2747, 2052, 'no_lang_code', 'name', 'Bridgepoint (United Kingdom)'),
(2748, 2053, 'en', 'name', 'Southwest Baptist University'),
(2749, 2054, 'no_lang_code', 'name', 'Numerical Mechanics Applications International (Belgium)'),
(2750, 2055, 'en', 'name', 'Institute for Scientific Analysis'),
(2751, 2056, 'en', 'name', 'Providence St. Vincent Medical Center'),
(2752, 2057, 'en', 'name', 'Cornwall Regional Hospital'),
(2753, 2058, 'en', 'name', 'East Kent Hospitals University NHS Foundation Trust'),
(2754, 2059, 'en', 'name', 'Medical Radiological Research Center'),
(2755, 2059, 'ru', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ раГиологический Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(2756, 2060, 'en', 'name', 'Laiko General Hospital of Athens'),
(2757, 2061, 'no_lang_code', 'name', 'Bio Chem Analysis Corporation (United States)'),
(2758, 2062, 'en', 'name', 'Hokkaido University'),
(2759, 2062, 'ja', 'name', 'åŒ—ęµ·é“å¤§å­¦'),
(2760, 2063, 'en', 'name', 'Hauptman-Woodward Medical Research Institute'),
(2761, 2064, 'en', 'name', 'Maryland Department of Health'),
(2762, 2065, 'en', 'name', 'Western Infirmary'),
(2763, 2066, 'bn', 'name', 'কলিকাতা ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦†ą¦Æą¦¼ą§ą¦°ą§ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦®ą¦Øą§ą¦¦ą¦æą¦°'),
(2764, 2066, 'en', 'name', 'Calcutta National Medical College and Hospital'),
(2765, 2066, 'te', 'name', 'ą°œą°¾ą°¤ą±€ą°Æ ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(2766, 2067, 'en', 'name', 'Middlesex London Health Unit'),
(2767, 2068, 'en', 'name', 'Charlton Memorial Hospital'),
(2768, 2069, 'en', 'name', 'Helsinki University Hospital'),
(2769, 2070, 'en', 'name', 'Kwangwoon University'),
(2770, 2070, 'ko', 'name', 'ź“‘ģš“ėŒ€ķ•™źµ'),
(2771, 2071, 'en', 'name', 'Association for the Advancement of Artificial Intelligence'),
(2772, 2072, 'en', 'name', 'Rocky Mountain University of Health Professions'),
(2773, 2073, 'en', 'name', 'European Committee for Standardization'),
(2774, 2073, 'fr', 'name', 'ComitƩ EuropƩen de Normalisation'),
(2775, 2074, 'en', 'name', 'Kings County Hospital Center'),
(2776, 2075, 'en', 'name', 'Daejeon University'),
(2777, 2075, 'ko', 'name', 'ėŒ€ģ „ėŒ€ķ•™źµ'),
(2778, 2076, 'en', 'name', 'Lanzhou University Second Hospital'),
(2779, 2077, 'en', 'name', 'Children''s Hospital of New Orleans'),
(2780, 2078, 'pt', 'name', 'Escola Superior de Enfermagem de Santa Maria'),
(2781, 2079, 'en', 'name', 'Apollo Hospitals'),
(2782, 2080, 'en', 'name', 'Ministry of Health'),
(2783, 2081, 'en', 'name', 'Northwest Hospital and Medical Center'),
(2784, 2082, 'no_lang_code', 'name', 'Hungkuang University'),
(2785, 2083, 'es', 'name', 'Hospital General Universitario de Ciudad Real'),
(2786, 2084, 'pt', 'name', 'Hospital SĆ£o Rafael'),
(2787, 2085, 'en', 'name', 'Alexandra Hospital'),
(2788, 2085, 'zh', 'name', 'äŗšåŽ†å±±å¤§åŒ»é™¢'),
(2789, 2086, 'en', 'name', 'MRC Centre for Reproductive Health'),
(2790, 2087, 'fr', 'name', 'HƓpital Charles-Nicolle'),
(2791, 2088, 'en', 'name', 'Hanyang University Guri Hospital'),
(2792, 2088, 'ko', 'name', 'ķ•œģ–‘ėŒ€ķ•™źµźµ¬ė¦¬ė³‘ģ›'),
(2793, 2089, 'de', 'name', 'UniversitƤt Hildesheim'),
(2794, 2089, 'en', 'name', 'University of Hildesheim'),
(2795, 2090, 'en', 'name', 'Wildlife Conservation Society Indonesia'),
(2796, 2091, 'en', 'name', 'Ivanovo State University of Chemistry and Technology'),
(2797, 2091, 'ru', 'name', 'Ивановский Š³Š¾ŃŃƒŠ“арственный химико-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2798, 2092, 'fi', 'name', 'Kanta-HƤmeen Keskussairaala'),
(2799, 2093, 'en', 'name', 'Building Research Establishment'),
(2800, 2094, 'en', 'name', 'American Association For Cancer Research'),
(2801, 2095, 'en', 'name', 'Missouri Department of Mental Health'),
(2802, 2096, 'en', 'name', 'First Teaching Hospital of Tianjin University of Traditional Chinese Medicine'),
(2803, 2096, 'zh', 'name', 'äø­å›½ä¼ ē»ŸåŒ»čÆēš„å¤©ę“„å¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(2804, 2097, 'fr', 'name', 'HƓpital l''Archet'),
(2805, 2098, 'en', 'name', 'Mother Teresa Women''s University'),
(2806, 2098, 'ta', 'name', 'ą®…ą®©ąÆą®©ąÆˆ ą®¤ąÆ†ą®°ą®šą®¾ ą®®ą®•ą®³ą®æą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2807, 2099, 'en', 'name', 'Deenanath Mangeshkar Hospital and Research Center'),
(2808, 2099, 'mr', 'name', 'ą¤¦ą„€ą¤Øą¤¾ą¤Øą¤¾ą¤„ ą¤®ą¤‚ą¤—ą„‡ą¤¶ą¤•ą¤° ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(2809, 2100, 'es', 'name', 'Tecnalia'),
(2810, 2101, 'en', 'name', 'Spenshult Hospital'),
(2811, 2102, 'en', 'name', 'Canadian Agency for Drugs and Technologies in Health'),
(2812, 2103, 'en', 'name', 'Norwich University of the Arts'),
(2813, 2104, 'no_lang_code', 'name', 'Intelligent Automation (United States)'),
(2814, 2105, 'en', 'name', 'Kaiser Permanente San Francisco Medical Center'),
(2815, 2106, 'en', 'name', 'Sri Krishnadevaraya University'),
(2816, 2106, 'te', 'name', 'ą°¶ą±ą°°ą±€ ą°•ą±ƒą°·ą±ą°£ą°¦ą±‡ą°µą°°ą°¾ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(2817, 2107, 'en', 'name', 'Star General Hospital'),
(2818, 2107, 'ja', 'name', 'ę˜Ÿē·åˆē—…é™¢'),
(2819, 2108, 'en', 'name', 'American Statistical Association'),
(2820, 2109, 'en', 'name', 'First Affiliated Hospital of Kunming Medical University'),
(2821, 2110, 'en', 'name', 'Centers for Medicare and Medicaid Services'),
(2822, 2111, 'en', 'name', 'Cheongju St. Mary''s Hospital'),
(2823, 2111, 'ko', 'name', '청주 성모 병원'),
(2824, 2112, 'en', 'name', 'Amager Hospital'),
(2825, 2113, 'en', 'name', 'Shriners Hospitals for Children - Boston'),
(2826, 2114, 'en', 'name', 'Chris Hani Baragwanath Hospital'),
(2827, 2115, 'de', 'name', 'Gesellschaft Fur Mathematik Und Datenverarbeitung'),
(2828, 2116, 'en', 'name', 'Federal Medical Centre'),
(2829, 2117, 'en', 'name', 'Royal Cornhill Hospital'),
(2830, 2118, 'en', 'name', 'University Library in Bratislava'),
(2831, 2118, 'sk', 'name', 'UniverzitnÔ knižnica v Bratislave'),
(2832, 2119, 'en', 'name', 'Charing Cross Hospital'),
(2833, 2120, 'en', 'name', 'Scott & White Memorial Hospital'),
(2834, 2121, 'en', 'name', 'Federal University from Jequitinhonha and Mucuri''s Valleys'),
(2835, 2121, 'pt', 'name', 'Universidade Federal dos Vales do Jequitinhonha e Mucuri'),
(2836, 2122, 'en', 'name', 'Humber River Regional Hospital'),
(2837, 2123, 'en', 'name', 'Apollo Gleneagles Hospitals'),
(2838, 2124, 'en', 'name', 'St. Luke''s Magic Valley Medical Center'),
(2839, 2125, 'no_lang_code', 'name', 'Labor (Italy)'),
(2840, 2126, 'en', 'name', 'University of Arkansas – Fort Smith'),
(2841, 2127, 'en', 'name', 'Missouri Institute of Mental Health'),
(2842, 2128, 'en', 'name', 'Nakamura Memorial Hospital'),
(2843, 2128, 'ja', 'name', 'äø­ę‘čØ˜åæµē—…é™¢'),
(2844, 2129, 'en', 'name', 'Allegheny General Hospital'),
(2845, 2130, 'en', 'name', 'Seattle Pacific University'),
(2846, 2131, 'en', 'name', 'Taipei City Hospital'),
(2847, 2131, 'zh', 'name', 'č‡ŗåŒ—åø‚ę”æåŗœ'),
(2848, 2132, 'en', 'name', 'Matsudo City Hospital'),
(2849, 2132, 'ja', 'name', 'ę¾ęˆøåø‚ē«‹ē—…é™¢'),
(2850, 2133, 'en', 'name', 'University of the Andes'),
(2851, 2133, 'es', 'name', 'Universidad de Los Andes'),
(2852, 2134, 'en', 'name', 'Maternal and Child Health Care Hospital of Bao''an'),
(2853, 2134, 'zh', 'name', 'å®å®‰åŒŗå¦‡å¹¼äæå„é™¢'),
(2854, 2135, 'en', 'name', 'Beijing Anzhen Hospital'),
(2855, 2135, 'zh', 'name', 'åŒ—äŗ¬åø‚åæƒč‚ŗč”€ē®”ē–¾ē—…ē ”ē©¶ę‰€'),
(2856, 2136, 'en', 'name', 'St Vincent Medical Center'),
(2857, 2137, 'en', 'name', 'Quality Education for Minorities Network'),
(2858, 2138, 'en', 'name', 'Princess Margaret Hospital'),
(2859, 2139, 'en', 'name', 'Allen University'),
(2860, 2140, 'en', 'name', 'Ningxia Medical University'),
(2861, 2140, 'zh', 'name', 'å®å¤åŒ»ē§‘å¤§å­¦'),
(2862, 2141, 'en', 'name', 'Christiana Care Health System'),
(2863, 2142, 'en', 'name', 'San Joaquin General Hospital'),
(2864, 2143, 'no_lang_code', 'name', 'Airbus (United Kingdom)'),
(2865, 2144, 'es', 'name', 'Hospital de Clƭnicas "JosƩ de San Martƭn", Hospital de Clƭnicas JosƩ de San Martƭn'),
(2866, 2145, 'en', 'name', 'National Research Tomsk State University'),
(2867, 2145, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°ĢŠ»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµĢŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ То́мский Š³Š¾ŃŃƒŠ“а́рственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚'),
(2868, 2146, 'en', 'name', 'Northwick Park Institute for Medical Research'),
(2869, 2147, 'en', 'name', 'Rotterdam Eye Hospital'),
(2870, 2147, 'nl', 'name', 'Oogziekenhuis Rotterdam'),
(2871, 2148, 'no_lang_code', 'name', 'European Institute For Research and Strategic Studies In Telecommunications'),
(2872, 2149, 'en', 'name', 'Rocky Mountain Hospital for Children'),
(2873, 2150, 'en', 'name', 'Summa Barberton Hospital'),
(2874, 2151, 'en', 'name', 'Fukuoka University Tsukushi Hospital'),
(2875, 2151, 'ja', 'name', 'ē¦å²”å¤§å­¦ē­‘ē“«ē—…é™¢'),
(2876, 2152, 'en', 'name', 'Riverside Methodist Hospital'),
(2877, 2153, 'en', 'name', 'Shizuoka City Hospital'),
(2878, 2153, 'ja', 'name', 'é™å²”åø‚ē«‹é™å²”ē—…é™¢'),
(2879, 2154, 'no_lang_code', 'name', 'EIC Laboratories'),
(2880, 2155, 'nl', 'name', 'Ziekenhuis Bethesda'),
(2881, 2156, 'en', 'name', 'National Institute for Environmental Studies'),
(2882, 2156, 'ja', 'name', 'å›½ē«‹ē’°å¢ƒē ”ē©¶ę‰€'),
(2883, 2157, 'en', 'name', 'Memorial Medical Center'),
(2884, 2158, 'el', 'name', 'Ī™Ī±Ļ„ĻĪ¹ĪŗĻŒ Ī”Ī¹Ī±Ī²Ī±Ī»ĪŗĪ±Ī½Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ'),
(2885, 2158, 'en', 'name', 'Interbalkan Medical Center'),
(2886, 2159, 'no_lang_code', 'name', 'De Gezondheidsdienst voor Dieren'),
(2887, 2160, 'en', 'name', 'Center for Urban Population Health'),
(2888, 2161, 'no_lang_code', 'name', 'ArcelorMittal (Spain)'),
(2889, 2162, 'en', 'name', 'Grand River Hospital'),
(2890, 2163, 'en', 'name', 'John Muir Health'),
(2891, 2164, 'ja', 'name', 'é§’ęœØé‡Žē—…é™¢'),
(2892, 2164, 'no_lang_code', 'name', 'Komagino Hospital'),
(2893, 2165, 'be', 'name', 'ŠŠ°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń навук Š‘ŠµŠ»Š°Ń€ŃƒŃŃ–'),
(2894, 2165, 'en', 'name', 'National Academy of Sciences of Belarus'),
(2895, 2165, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(2896, 2166, 'en', 'name', 'Gulbarga University'),
(2897, 2166, 'hi', 'name', 'ą¤—ą„ą¤²ą¤¬ą¤°ą„ą¤—ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(2898, 2166, 'kn', 'name', 'ą²—ą³ą²²ą³ą²¬ą²°ą³ą²—ą²¾ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(2899, 2166, 'ta', 'name', 'ą®•ąÆą®²ąÆą®Ŗą®°ąÆą®•ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(2900, 2166, 'te', 'name', 'ą°—ą±ą°²ą±ą°¬ą°°ą±ą°—ą°¾ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(2901, 2167, 'en', 'name', 'Yuanpei University'),
(2902, 2167, 'zh', 'name', 'å…ƒåŸ¹é†«äŗ‹ē§‘ęŠ€å¤§å­ø'),
(2903, 2168, 'en', 'name', 'Moorgreen Hospital'),
(2904, 2169, 'en', 'name', 'Southeastern Universities Research Association'),
(2905, 2170, 'en', 'name', 'Gallup Indian Medical Center'),
(2906, 2171, 'en', 'name', 'Sacred Heart Hospital'),
(2907, 2172, 'en', 'name', 'Imam Khomeini International University'),
(2908, 2172, 'fa', 'name', 'دانؓگاه ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ Ų§Ł…Ų§Ł… Ų®Ł…ŪŒŁ†ŪŒ'),
(2909, 2173, 'en', 'name', 'Dade County Medical Examiner Department'),
(2910, 2174, 'no_lang_code', 'name', 'Artron Bioresearch (Canada)'),
(2911, 2175, 'da', 'name', 'Aalborg Universitetshospital'),
(2912, 2175, 'en', 'name', 'Aalborg University Hospital'),
(2913, 2176, 'en', 'name', 'Saratov State Medical University'),
(2914, 2176, 'ru', 'name', 'Даратовский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(2915, 2177, 'en', 'name', 'Riverview Psychiatric Center'),
(2916, 2178, 'en', 'name', 'Qingdao Municipal Hospital'),
(2917, 2179, 'en', 'name', 'Ursinus College'),
(2918, 2180, 'en', 'name', 'Institute for Energy Technology'),
(2919, 2181, 'en', 'name', 'Federico II University Hospital'),
(2920, 2181, 'it', 'name', 'Azienda Ospedaliera Universitaria Federico II'),
(2921, 2182, 'en', 'name', 'IBM Research - Zurich'),
(2922, 2183, 'en', 'name', 'Hanseo University'),
(2923, 2184, 'en', 'name', 'Diakonhjemmet Hospital'),
(2924, 2185, 'en', 'name', 'Kaiser Permanente Fontana Medical Center'),
(2925, 2186, 'en', 'name', 'Hammerfest Hospital'),
(2926, 2186, 'no', 'name', 'Hammerfest Sykehus'),
(2927, 2187, 'en', 'name', 'Port Moresby General Hospital'),
(2928, 2188, 'en', 'name', 'Matsuyama Red Cross Hospital'),
(2929, 2188, 'ja', 'name', 'ę¾å±±čµ¤åå­—ē—…é™¢'),
(2930, 2189, 'no_lang_code', 'name', 'Goroka Base Hospital'),
(2931, 2190, 'en', 'name', 'Makati Medical Center'),
(2932, 2191, 'en', 'name', 'Changes in Health Care Financing & Organization'),
(2933, 2192, 'en', 'name', 'Atlantic Health System'),
(2934, 2193, 'en', 'name', 'Children''s Hospital of Winnipeg'),
(2935, 2194, 'no_lang_code', 'name', 'Sankara Nethralaya'),
(2936, 2195, 'es', 'name', 'Hospital Luis Calvo Mackenna'),
(2937, 2196, 'en', 'name', 'Pfeiffer University'),
(2938, 2197, 'bn', 'name', 'ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(2939, 2197, 'en', 'name', 'Rajshahi Medical College'),
(2940, 2198, 'en', 'name', 'Helen Hayes Hospital'),
(2941, 2199, 'de', 'name', 'Klinikum Lüneburg'),
(2942, 2200, 'en', 'name', 'American Society for Cell Biology'),
(2943, 2201, 'no_lang_code', 'name', 'TagCyx Biotechnologies (Japan)'),
(2944, 2202, 'de', 'name', 'UniversitƤtskinderklinik Bern'),
(2945, 2202, 'en', 'name', 'University Children’s Hospital Bern'),
(2946, 2203, 'en', 'name', 'Earl K. Long Medical Center'),
(2947, 2204, 'en', 'name', 'MRC Human Immunology Unit'),
(2948, 2205, 'en', 'name', 'Tianjin Central Hospital of Gynecology Obstetrics'),
(2949, 2205, 'zh', 'name', 'å¤©ę“„åø‚äø­åæƒå¦‡äŗ§ē§‘åŒ»é™¢'),
(2950, 2206, 'en', 'name', 'Miami Valley Hospital'),
(2951, 2207, 'no_lang_code', 'name', 'AnyGen (South Korea)'),
(2952, 2208, 'en', 'name', 'University of La Verne'),
(2953, 2208, 'es', 'name', 'Universidad de La Verne'),
(2954, 2209, 'en', 'name', 'Institute of Electron Technology'),
(2955, 2210, 'pt', 'name', 'Instituto Superior de Comunicação Empresarial'),
(2956, 2211, 'en', 'name', 'American Bar Foundation'),
(2957, 2212, 'en', 'name', 'Creative England'),
(2958, 2213, 'en', 'name', 'Organization For Tropical Studies'),
(2959, 2214, 'it', 'name', 'Istituto Nazionale per la Fisica della Materia'),
(2960, 2215, 'en', 'name', 'Metropolitan Autonomous University'),
(2961, 2215, 'es', 'name', 'Universidad Autónoma Metropolitana'),
(2962, 2216, 'en', 'name', 'Karlstad Central Hospital'),
(2963, 2217, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ημαθίας'),
(2964, 2217, 'no_lang_code', 'name', 'Veria General Hospital'),
(2965, 2218, 'en', 'name', 'University of Akron'),
(2966, 2219, 'bg', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - ПловГив'),
(2967, 2219, 'de', 'name', 'Medizinischen UniversitƤt Plovdiv'),
(2968, 2219, 'en', 'name', 'Medical University Plovdiv'),
(2969, 2220, 'de', 'name', 'Klinikum Südstadt Rostock'),
(2970, 2221, 'de', 'name', 'Hochschule Furtwangen'),
(2971, 2221, 'en', 'name', 'Furtwangen University'),
(2972, 2222, 'no_lang_code', 'name', 'Taconic (United States)'),
(2973, 2223, 'ar', 'name', 'Ų§Ł„ŲÆŁƒŲŖŁˆŲ± Ų³Ł„ŁŠŁ…Ų§Ł† ŁŁ‚ŁŠŲ©'),
(2974, 2223, 'en', 'name', 'Soliman Fakeeh Hospital'),
(2975, 2224, 'de', 'name', 'Hochschule Kempten'),
(2976, 2224, 'en', 'name', 'Kempten University of Applied Sciences'),
(2977, 2225, 'no_lang_code', 'name', 'Dr. Balabhai Nanavati Hospital'),
(2978, 2226, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© قناة Ų§Ł„Ų³ŁˆŁŠŲ³'),
(2979, 2226, 'fr', 'name', 'UniversitƩ du Canal de Suez'),
(2980, 2226, 'no_lang_code', 'name', 'Suez Canal University'),
(2981, 2227, 'pt', 'name', 'Hospital de Santo António'),
(2982, 2228, 'en', 'name', 'Rawalpindi Medical University'),
(2983, 2229, 'en', 'name', 'Hampden–Sydney College'),
(2984, 2230, 'it', 'name', 'Azienda USL di Bologna'),
(2985, 2231, 'en', 'name', 'Tribhuvan University Teaching Hospital'),
(2986, 2232, 'fr', 'name', 'HƓpital Bonnet'),
(2987, 2233, 'en', 'name', 'Acharya Nagarjuna University'),
(2988, 2233, 'te', 'name', 'ą°†ą°šą°¾ą°°ą±ą°Æ ą°Øą°¾ą°—ą°¾ą°°ą±ą°œą±ą°Ø ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(2989, 2234, 'en', 'name', 'Winona Medical Cosmetic Center'),
(2990, 2234, 'zh', 'name', 'č–‡čÆŗåØœēš®č‚¤åŒ»ē–—ē¾Žå®¹äø­åæƒ'),
(2991, 2235, 'en', 'name', 'University of Hawaii at Hilo'),
(2992, 2235, 'es', 'name', 'Universidad de HawƔi en Hilo'),
(2993, 2235, 'fr', 'name', 'Université d''hawaï à hilo'),
(2994, 2236, 'no_lang_code', 'name', 'Creare (United States)'),
(2995, 2237, 'ja', 'name', 'é•·é‡Žåø‚ę°‘ē—…é™¢'),
(2996, 2237, 'no_lang_code', 'name', 'Nagano Municipal Hospital'),
(2997, 2238, 'en', 'name', 'Immaculata University'),
(2998, 2239, 'en', 'name', 'Kobe City Nishi-Kobe Medical Center'),
(2999, 2239, 'ja', 'name', 'ē„žęˆøåø‚ē«‹č„æē„žęˆøåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3000, 2240, 'en', 'name', 'Bradley Hospital'),
(3001, 2241, 'en', 'name', 'St Joseph''s Hospital Health Center'),
(3002, 2242, 'en', 'name', 'Hubei University of Chinese Medicine'),
(3003, 2242, 'zh', 'name', 'ę¹–åŒ—äø­åŒ»čÆå¤§å­¦'),
(3004, 2243, 'en', 'name', 'Maryville University'),
(3005, 2244, 'en', 'name', 'Long Beach Animal Hospital'),
(3006, 2245, 'en', 'name', 'AdventHealth Orlando'),
(3007, 2246, 'en', 'name', 'Koshigaya Municipal Hospital'),
(3008, 2246, 'ja', 'name', 'č¶Šč°·åø‚ē«‹ē—…é™¢'),
(3009, 2247, 'en', 'name', 'University of New England'),
(3010, 2248, 'en', 'name', 'Elizabeth City State University'),
(3011, 2249, 'en', 'name', 'Victoria General Hospital'),
(3012, 2250, 'no_lang_code', 'name', 'Coanda Research and Development Corporation (Canada)'),
(3013, 2251, 'en', 'name', 'Cheyney University of Pennsylvania'),
(3014, 2251, 'es', 'name', 'Universidad de Cheyney de Pensilvania'),
(3015, 2251, 'fr', 'name', 'UniversitƩ cheyney de pennsylvanie'),
(3016, 2252, 'en', 'name', 'Children''s Medical Center'),
(3017, 2253, 'en', 'name', 'Evanston Hospital'),
(3018, 2254, 'en', 'name', 'Shimane Prefectural Institute of Public Health and Environmental Sciences'),
(3019, 2254, 'ja', 'name', 'å³¶ę ¹ēœŒäæå„ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(3020, 2255, 'no_lang_code', 'name', 'BMT Group (United Kingdom)'),
(3021, 2256, 'en', 'name', 'Letterman Army Medical Center'),
(3022, 2257, 'en', 'name', 'Center for Biologics Evaluation and Research'),
(3023, 2258, 'en', 'name', 'Chestnut Hill Hospital'),
(3024, 2259, 'en', 'name', 'National Aeronautical Research Institute'),
(3025, 2259, 'sv', 'name', 'Flygtekniska fƶrsƶksanstalten'),
(3026, 2260, 'en', 'name', 'Institute for Clinical Efectiveness and Health Policy'),
(3027, 2260, 'es', 'name', 'Instituto de Efectividad ClĆ­nica y Sanitaria'),
(3028, 2261, 'en', 'name', 'College of New Jersey'),
(3029, 2262, 'en', 'name', 'Funabashi Municipal Medical Center'),
(3030, 2262, 'ja', 'name', 'čˆ¹ę©‹åø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3031, 2263, 'en', 'name', 'Science Museum of Minnesota'),
(3032, 2264, 'es', 'name', 'Hospital Luis Vernaza'),
(3033, 2265, 'en', 'name', 'Kent and Canterbury Hospital'),
(3034, 2266, 'de', 'name', 'Kaiser-Franz-Josef-Spital'),
(3035, 2267, 'en', 'name', 'Treatment Research Institute'),
(3036, 2268, 'en', 'name', 'Blood Center of Zhejiang Province'),
(3037, 2268, 'zh', 'name', 'ęµ™ę±Ÿēœč”€ę¶²äø­åæƒ'),
(3038, 2269, 'en', 'name', 'Moncton Hospital'),
(3039, 2270, 'en', 'name', 'Monilek Hospital and Research Center'),
(3040, 2271, 'en', 'name', 'University of Cincinnati Medical Center'),
(3041, 2272, 'en', 'name', 'K S Hegde Medical Academy'),
(3042, 2273, 'en', 'name', 'Concord Hospital'),
(3043, 2274, 'en', 'name', 'Hutzel Women''s Hospital'),
(3044, 2275, 'en', 'name', 'Archimedes Foundation'),
(3045, 2276, 'tr', 'name', 'Bahriye Merkez Hastanesi, Kasımpaşa Asker Hastanesi'),
(3046, 2277, 'fr', 'name', 'HƓpital LƩon BƩrard'),
(3047, 2278, 'de', 'name', 'Krankenhaus der Elisabethinen'),
(3048, 2279, 'no_lang_code', 'name', 'Immunomedics (United States)'),
(3049, 2280, 'no_lang_code', 'name', 'Nongwoo Bio (South Korea)'),
(3050, 2281, 'es', 'name', 'Hospital Casa de Salud'),
(3051, 2282, 'en', 'name', 'University of Aizu'),
(3052, 2282, 'ja', 'name', '会擄大学'),
(3053, 2283, 'en', 'name', 'Ming Chuan University'),
(3054, 2284, 'de', 'name', 'Fraunhofer-Institut für Windenergiesysteme'),
(3055, 2284, 'en', 'name', 'Fraunhofer Institute for Wind Energy Systems'),
(3056, 2285, 'en', 'name', 'St George Hospital'),
(3057, 2286, 'no_lang_code', 'name', 'Deschutes Research'),
(3058, 2287, 'en', 'name', 'Punjab Government Dental College and Hospital'),
(3059, 2288, 'es', 'name', 'Hospital Universitario Son Dureta'),
(3060, 2289, 'en', 'name', 'Lions Gate Hospital'),
(3061, 2290, 'en', 'name', 'Health Resources Unlimited'),
(3062, 2291, 'en', 'name', 'St. Cloud VA Health Care System'),
(3063, 2292, 'no_lang_code', 'name', 'Suncor Energy (Canada)'),
(3064, 2293, 'no_lang_code', 'name', 'Sinte Gleska University'),
(3065, 2294, 'no_lang_code', 'name', 'Tangam Gaming Inc'),
(3066, 2295, 'cy', 'name', 'Prifysgol Newydd Swydd Buckingham'),
(3067, 2295, 'en', 'name', 'Buckinghamshire New University'),
(3068, 2296, 'en', 'name', 'Kaiser Permanente Sacramento Medical Center'),
(3069, 2297, 'en', 'name', 'Henderson State University'),
(3070, 2297, 'fr', 'name', 'UniversitĆ© d''Ɖtat henderson'),
(3071, 2298, 'fr', 'name', 'Institut Technologique ForĆŖt Cellulose Bois-Construction Ameublement'),
(3072, 2299, 'en', 'name', 'American Institute of Physics'),
(3073, 2300, 'en', 'name', 'Shotley Bridge Hospital'),
(3074, 2301, 'en', 'name', 'Somerset Medical Center'),
(3075, 2302, 'en', 'name', 'Geisinger Health System'),
(3076, 2303, 'en', 'name', 'University of Louisiana at Monroe'),
(3077, 2303, 'fr', 'name', 'UniversitƩ de Louisiane Ơ Monroe'),
(3078, 2304, 'en', 'name', 'Tacoma Community College'),
(3079, 2305, 'en', 'name', 'Sardar Patel Post Graduate Institute of Dental and Medical Sciences'),
(3080, 2306, 'de', 'name', 'Zentrum für Europäische Wirtschaftsforschung'),
(3081, 2306, 'en', 'name', 'Centre for European Economic Research'),
(3082, 2307, 'en', 'name', 'Walden University'),
(3083, 2308, 'en', 'name', 'Jaipur Golden Hospital'),
(3084, 2309, 'no_lang_code', 'name', 'Alstom (United Kingdom)'),
(3085, 2310, 'en', 'name', 'Nagasaki Medical Center'),
(3086, 2310, 'ja', 'name', 'é•·å“ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3087, 2311, 'no_lang_code', 'name', 'Aretaeio Hospital'),
(3088, 2312, 'en', 'name', 'First Affiliated Hospital of Xinjiang Medical University'),
(3089, 2312, 'zh', 'name', 'ę–°ē–†åŒ»ē§‘å¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(3090, 2313, 'en', 'name', 'People''s Hospital of Xinjiang Uygur Autonomous Region'),
(3091, 2313, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(3092, 2314, 'en', 'name', 'Polyclinic Medical Center'),
(3093, 2315, 'en', 'name', 'Saraswati Dental College and Hospital'),
(3094, 2316, 'en', 'name', 'Kaiser Permanente Vallejo Medical Center'),
(3095, 2317, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų­Ų³ŁŠŁ† Ų§Ł„Ų·ŲØŁŠŲ©'),
(3096, 2317, 'en', 'name', 'King Hussein Medical Center'),
(3097, 2318, 'pt', 'name', 'Hospital de Santa Cruz'),
(3098, 2319, 'en', 'name', 'Babol University of Medical Sciences'),
(3099, 2319, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŲ§ŲØŁ„'),
(3100, 2320, 'no_lang_code', 'name', 'Thermal Technologies (United States)'),
(3101, 2321, 'en', 'name', 'University of Jammu'),
(3102, 2321, 'hi', 'name', 'ą¤œą¤®ą„ą¤®ą„‚ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(3103, 2322, 'ja', 'name', '島田市民病院'),
(3104, 2322, 'no_lang_code', 'name', 'Shimada Municipal Hospital'),
(3105, 2323, 'en', 'name', 'Southwest Bahia State University'),
(3106, 2323, 'es', 'name', 'Universidad Estatal del Sudoeste de BahĆ­a'),
(3107, 2323, 'pt', 'name', 'Universidade Estadual do Sudoeste da Bahia'),
(3108, 2324, 'en', 'name', 'Madonna University'),
(3109, 2324, 'fr', 'name', 'UniversitƩ madonna'),
(3110, 2325, 'en', 'name', 'Mulago Hospital'),
(3111, 2326, 'en', 'name', 'Nishtar Medical College and Hospital'),
(3112, 2327, 'en', 'name', 'Princess Mary Maternity Hospital'),
(3113, 2328, 'ar', 'name', 'مستؓفى Ų§Ł„ŁƒŁˆŲ±Ł†ŁŠŲ“ Ł„Ł„Ų£Ł…ŁˆŁ…Ų©'),
(3114, 2328, 'en', 'name', 'Corniche Hospital'),
(3115, 2329, 'en', 'name', 'Queen''s Hospital'),
(3116, 2330, 'en', 'name', 'King Edward Medical University'),
(3117, 2330, 'ur', 'name', 'کنگ ایڈورڈ Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(3118, 2331, 'en', 'name', 'Point Loma Nazarene University'),
(3119, 2332, 'en', 'name', 'Misericordia Community Hospital'),
(3120, 2333, 'en', 'name', 'Bai Jerbai Wadia Hospital for Children'),
(3121, 2334, 'en', 'name', 'Agency for the Promotion of European Research'),
(3122, 2334, 'it', 'name', 'Agenzia per la Promozione della Ricerca Europea'),
(3123, 2335, 'en', 'name', 'Indiana University South Bend'),
(3124, 2336, 'en', 'name', 'New Hanover Regional Medical Center'),
(3125, 2337, 'en', 'name', 'Chang Jung Christian University'),
(3126, 2338, 'ar', 'name', 'مستؓفى Ų§Ł„Ł‚Ų·ŁŠŁ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(3127, 2338, 'en', 'name', 'Qatif Central Hospital'),
(3128, 2339, 'en', 'name', 'Conquest Hospital'),
(3129, 2340, 'en', 'name', 'Calgary General Hospital'),
(3130, 2341, 'en', 'name', 'Himachal Pradesh University'),
(3131, 2342, 'en', 'name', 'Circolo Hospital and Macchi Foundation'),
(3132, 2342, 'it', 'name', 'Ospedale di Circolo e Fondazione Macchi'),
(3133, 2343, 'en', 'name', 'University of Bamako'),
(3134, 2343, 'fr', 'name', 'UniversitƩ de Bamako'),
(3135, 2344, 'en', 'name', 'Fourth Affiliated Hospital of Harbin Medical University'),
(3136, 2344, 'zh', 'name', 'å“ˆå°”ę»ØåŒ»ē§‘å¤§å­¦ē¬¬å››é™„å±žåŒ»é™¢'),
(3137, 2345, 'it', 'name', 'Azienda Ospedaliera Universitaria Senese'),
(3138, 2346, 'es', 'name', 'Hospital Arnau de Vilanova'),
(3139, 2347, 'en', 'name', 'Thammasat University Hospital'),
(3140, 2347, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø˜ąø£ąø£ąø”ąøØąø²ąøŖąø•ąø£ą¹Œą¹€ąø‰ąø„ąø“ąø”ąøžąø£ąø°ą¹€ąøąøµąø¢ąø£ąø•ąø“'),
(3141, 2348, 'en', 'name', 'PVS Memorial Hospital'),
(3142, 2349, 'fr', 'name', 'Centre Hospitalier de Mulhouse'),
(3143, 2350, 'en', 'name', 'Kaleida Health'),
(3144, 2351, 'en', 'name', 'American Association of Geographers'),
(3145, 2352, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ інфарматыкі і Ń€Š°Š“Ń‹Ń‘ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Ń–ŠŗŃ–'),
(3146, 2352, 'en', 'name', 'Belarusian State University of Informatics and Radioelectronics'),
(3147, 2352, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ информатики Šø Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(3148, 2353, 'en', 'name', 'Versiti Blood Center of Wisconsin'),
(3149, 2354, 'tr', 'name', 'Bakırköy Dr.Sadi Konuk Eğitim ve Araştırma Hastanesi'),
(3150, 2355, 'en', 'name', 'Birmingham City Hospital'),
(3151, 2356, 'pt', 'name', 'Hospital Nossa Senhora da Conceição'),
(3152, 2357, 'en', 'name', 'Toyota Technological Institute at Chicago'),
(3153, 2358, 'en', 'name', 'University Hospital, Newark'),
(3154, 2359, 'en', 'name', 'Burke Medical Research Institute'),
(3155, 2360, 'en', 'name', 'Royal Jubilee Hospital'),
(3156, 2361, 'en', 'name', 'Erzurum Regional Training and Research Hospital'),
(3157, 2361, 'tr', 'name', 'Erzurum Bölge Eğitim ve Araştırma Hastanesi'),
(3158, 2362, 'en', 'name', 'Kansai Electric Power Hospital'),
(3159, 2362, 'ja', 'name', 'é–¢č„æé›»åŠ›ē—…é™¢'),
(3160, 2363, 'en', 'name', 'Emerson Hospital'),
(3161, 2364, 'en', 'name', 'National Hospital Niamey'),
(3162, 2364, 'fr', 'name', 'HƓpital National de Niamey'),
(3163, 2365, 'en', 'name', 'Kyushu Central Hospital of the Mutual Aid Association of Public School Teachers'),
(3164, 2365, 'ja', 'name', 'å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆ ä¹å·žäø­å¤®ē—…é™¢'),
(3165, 2366, 'en', 'name', 'Mercy Hospital'),
(3166, 2367, 'ko', 'name', 'ėŒ€ķ•­ė³‘ģ›'),
(3167, 2367, 'no_lang_code', 'name', 'Daehang Hospital'),
(3168, 2368, 'en', 'name', 'Hirosaki University'),
(3169, 2368, 'ja', 'name', '弘前大学'),
(3170, 2369, 'en', 'name', 'Methodist Hospital'),
(3171, 2370, 'en', 'name', 'University of North Carolina Wilmington'),
(3172, 2370, 'es', 'name', 'Universidad de Carolina del Norte en Wilmington'),
(3173, 2370, 'fr', 'name', 'UniversitƩ de wilmington'),
(3174, 2371, 'en', 'name', 'Regional Institute of Medical Sciences'),
(3175, 2372, 'en', 'name', 'Sejong General Hospital'),
(3176, 2372, 'ko', 'name', '세종 병원'),
(3177, 2373, 'no_lang_code', 'name', 'Radikal Therapeutics'),
(3178, 2374, 'en', 'name', 'Lakehead Psychiatric Hospital'),
(3179, 2375, 'no_lang_code', 'name', 'Adipogen (South Korea)'),
(3180, 2376, 'it', 'name', 'Azienda Ospedaliera S.Maria'),
(3181, 2377, 'no_lang_code', 'name', 'University Research Co (United States)'),
(3182, 2378, 'en', 'name', 'Irish Universities Association'),
(3183, 2378, 'ga', 'name', 'Cumann Ollscoileanna Ɖireann'),
(3184, 2379, 'en', 'name', 'Xinjiang Academy of Animal Science'),
(3185, 2379, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē•œē‰§ē§‘å­¦é™¢'),
(3186, 2380, 'tr', 'name', 'Fırat Üniversitesi Hastanesi'),
(3187, 2381, 'en', 'name', 'Belfast Health and Social Care Trust'),
(3188, 2382, 'en', 'name', 'La Rabida Children''s Hospital'),
(3189, 2383, 'en', 'name', 'Sydney Children''s Hospital'),
(3190, 2384, 'en', 'name', 'Institute for Systems Biology'),
(3191, 2385, 'en', 'name', 'National Cancer Center'),
(3192, 2386, 'en', 'name', 'Bryn Mawr Hospital'),
(3193, 2387, 'ja', 'name', 'å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆé–¢ę±äø­å¤®ē—…é™¢'),
(3194, 2387, 'no_lang_code', 'name', 'Kanto Central Hospital'),
(3195, 2388, 'en', 'name', 'New School'),
(3196, 2388, 'es', 'name', 'La Nueva Escuela'),
(3197, 2389, 'en', 'name', 'Riverside Research Institute'),
(3198, 2390, 'en', 'name', 'Clemente Ɓlvarez Emergency Hospital'),
(3199, 2390, 'es', 'name', 'Hospital de Emergencias Dr. Clemente Ɓlvarez'),
(3200, 2391, 'en', 'name', 'Robinson Memorial Hospital'),
(3201, 2392, 'fr', 'name', 'HƓpital Louis-H Lafontaine'),
(3202, 2393, 'en', 'name', 'MRC/CSO Social and Public Health Sciences Unit'),
(3203, 2394, 'en', 'name', 'Portland VA Medical Center'),
(3204, 2395, 'en', 'name', 'St David''s Medical Center'),
(3205, 2396, 'ar', 'name', 'مستؓفى Ų®ŁˆŁ„Ų©'),
(3206, 2396, 'no_lang_code', 'name', 'Khoula Hospital'),
(3207, 2397, 'en', 'name', 'Santa Clara Valley Medical Center'),
(3208, 2398, 'no_lang_code', 'name', 'Guru Teg Bahadur Hospital'),
(3209, 2399, 'ko', 'name', 'ź±“ģ–‘ėŒ€ķ•™źµ'),
(3210, 2399, 'no_lang_code', 'name', 'Konyang University'),
(3211, 2400, 'en', 'name', 'Madras Medical Mission'),
(3212, 2401, 'en', 'name', 'Geneva College'),
(3213, 2402, 'no_lang_code', 'name', 'ThyssenKrupp (Germany)'),
(3214, 2403, 'en', 'name', 'Administration of Occupational Safety and Health'),
(3215, 2403, 'is', 'name', 'Vinnueftirlitiư'),
(3216, 2404, 'no_lang_code', 'name', 'EstƔcio (Brazil)'),
(3217, 2405, 'en', 'name', 'Chang Gung Memorial Hospital'),
(3218, 2406, 'en', 'name', 'Charleston Area Medical Center'),
(3219, 2407, 'en', 'name', 'Kinki Central Hospital'),
(3220, 2407, 'ja', 'name', '近畿中央病院'),
(3221, 2408, 'en', 'name', 'Kumamoto University Hospital'),
(3222, 2408, 'ja', 'name', 'ē†Šęœ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢');
INSERT INTO `ror_settings` VALUES
(3223, 2409, 'en', 'name', 'Zhangzhou Normal University'),
(3224, 2409, 'zh', 'name', 'é—½å—åøˆčŒƒå¤§å­¦'),
(3225, 2410, 'en', 'name', 'Fort Sanders Regional Medical Center'),
(3226, 2411, 'en', 'name', 'Ulyanovsk State University'),
(3227, 2411, 'ru', 'name', 'Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(3228, 2412, 'nl', 'name', 'Streekziekenhuis Koningin Beatrix'),
(3229, 2413, 'en', 'name', 'Mills Peninsula Health Services'),
(3230, 2414, 'en', 'name', 'James Cook University Hospital'),
(3231, 2415, 'en', 'name', 'Jen-Ai Hospital'),
(3232, 2415, 'zh', 'name', 'ä»ę„›é†«ē™‚č²”åœ˜ę³•äŗŗ'),
(3233, 2416, 'en', 'name', 'Reina Sofia Hospital'),
(3234, 2416, 'es', 'name', 'Hospital Universitario Reina SofĆ­a'),
(3235, 2417, 'en', 'name', 'Allen Hospital'),
(3236, 2418, 'en', 'name', 'Smolensk University for Humanities'),
(3237, 2418, 'ru', 'name', 'Дмоленский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(3238, 2419, 'en', 'name', 'London South Bank University'),
(3239, 2420, 'no_lang_code', 'name', 'Fortis Hospital'),
(3240, 2421, 'en', 'name', 'Fairview Southdale Hospital'),
(3241, 2422, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عدن'),
(3242, 2422, 'en', 'name', 'University of Aden'),
(3243, 2423, 'en', 'name', 'Bashkir State Medical University'),
(3244, 2423, 'ru', 'name', 'Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(3245, 2424, 'en', 'name', 'Ruchill Hospital'),
(3246, 2425, 'fr', 'name', 'HƓpital Gui de Chauliac'),
(3247, 2426, 'en', 'name', 'Keller Army Community Hospital'),
(3248, 2427, 'en', 'name', 'Silla University'),
(3249, 2427, 'ko', 'name', 'ģ‹ ė¼ėŒ€ķ•™źµ'),
(3250, 2428, 'as', 'name', 'অসম ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(3251, 2428, 'en', 'name', 'Assam Medical College'),
(3252, 2429, 'en', 'name', 'Assiut University Hospitals'),
(3253, 2430, 'en', 'name', 'Datta Meghe Institute of Medical Sciences'),
(3254, 2431, 'en', 'name', 'Royal Surrey County Hospital'),
(3255, 2432, 'en', 'name', 'Shriners Hospitals for Children - Tampa'),
(3256, 2433, 'en', 'name', 'Chung Yuan Christian University'),
(3257, 2434, 'en', 'name', 'Lagos State University Teaching Hospital'),
(3258, 2435, 'en', 'name', 'Eye & ENT Hospital of Fudan University'),
(3259, 2436, 'en', 'name', 'Larkin Community Hospital'),
(3260, 2437, 'en', 'name', 'Catholic Health Association of the United States'),
(3261, 2438, 'no_lang_code', 'name', 'Keskuslaboratorio'),
(3262, 2439, 'no_lang_code', 'name', 'GenVec'),
(3263, 2440, 'en', 'name', 'Chidicon Medical Center'),
(3264, 2441, 'fr', 'name', 'Produits forestiers RƩsolu'),
(3265, 2441, 'no_lang_code', 'name', 'Resolute Forest Products (Canada)'),
(3266, 2442, 'en', 'name', 'Grant Medical Center'),
(3267, 2443, 'en', 'name', 'Miyake Eye Hospital'),
(3268, 2443, 'ja', 'name', 'ēœ¼ē§‘äø‰å®…ē—…é™¢'),
(3269, 2444, 'pt', 'name', 'Fundacao Universitaria Jose Bonifacio'),
(3270, 2445, 'en', 'name', 'Mazandaran University of Medical Sciences'),
(3271, 2445, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی مازندران'),
(3272, 2446, 'es', 'name', 'Hospital General Yagüe'),
(3273, 2447, 'en', 'name', 'Chungbuk National University'),
(3274, 2447, 'ko', 'name', 'ģ¶©ė¶ėŒ€ķ•™źµ'),
(3275, 2448, 'en', 'name', 'Saskatchewan Health Authority'),
(3276, 2449, 'en', 'name', 'Chesterfield Royal Hospital'),
(3277, 2450, 'no_lang_code', 'name', 'Echelon Biosciences'),
(3278, 2451, 'fr', 'name', 'HƓpital Militaire Moulay Ismail'),
(3279, 2452, 'en', 'name', 'St. John’s Health Sciences Centre'),
(3280, 2453, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† حافظ'),
(3281, 2453, 'no_lang_code', 'name', 'Hafez Hospital'),
(3282, 2454, 'en', 'name', 'Pontifical Catholic University of ParanĆ”'),
(3283, 2454, 'es', 'name', 'Pontificia Universidad Católica de ParanÔ'),
(3284, 2454, 'fr', 'name', 'UniversitƩ pontificale catholique du paranƔ'),
(3285, 2454, 'pt', 'name', 'Pontifícia Universidade Católica do ParanÔ'),
(3286, 2455, 'en', 'name', 'Millersville University'),
(3287, 2456, 'en', 'name', 'Florida Medical Entomology Laboratory'),
(3288, 2457, 'no_lang_code', 'name', 'Personal Improvement Computer Systems'),
(3289, 2458, 'en', 'name', 'Sawai ManSingh Medical College and Hospital'),
(3290, 2459, 'en', 'name', 'Bridgewater State University'),
(3291, 2459, 'fr', 'name', 'UniversitĆ© d''Ɖtat de bridgewater'),
(3292, 2460, 'pt', 'name', 'Hospital Geral de Bonsucesso'),
(3293, 2461, 'fr', 'name', 'HƓpital Pellegrin'),
(3294, 2462, 'en', 'name', 'University of Electro-Communications'),
(3295, 2462, 'ja', 'name', 'é›»ę°—é€šäæ”å¤§å­¦'),
(3296, 2463, 'en', 'name', 'Peter the Great St. Petersburg Polytechnic University'),
(3297, 2463, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŸŠµŃ‚Ń€Š° Великого'),
(3298, 2464, 'en', 'name', 'Brooklyn Hospital Center'),
(3299, 2465, 'en', 'name', 'Eastern New Mexico University'),
(3300, 2466, 'en', 'name', 'North Manchester General Hospital'),
(3301, 2467, 'en', 'name', 'JSS Medical College and Hospital'),
(3302, 2468, 'en', 'name', 'Incheon National University'),
(3303, 2468, 'ko', 'name', 'ģøģ²œėŒ€ķ•™źµ'),
(3304, 2469, 'en', 'name', 'Hanil General Hospital'),
(3305, 2469, 'ko', 'name', 'ķ•œģ „ė³‘ģ›'),
(3306, 2470, 'en', 'name', 'University of Prince Edward Island'),
(3307, 2470, 'fr', 'name', 'UniversitĆ© de l''Ǝle-du-prince-Ɖdouard'),
(3308, 2471, 'pt', 'name', 'Universidade Veiga de Almeida'),
(3309, 2472, 'en', 'name', 'Kosin University Gospel Hospital'),
(3310, 2472, 'ko', 'name', 'ź³ ģ‹ ėŒ€ķ•™źµ ė³µģŒė³‘ģ›'),
(3311, 2473, 'en', 'name', 'Queen Mary Hospital'),
(3312, 2473, 'zh', 'name', '瑪麗醫院'),
(3313, 2474, 'en', 'name', 'Kibi International University'),
(3314, 2474, 'ja', 'name', '吉備国際大学'),
(3315, 2475, 'no_lang_code', 'name', 'Micronet (United States)'),
(3316, 2476, 'es', 'name', 'Hospital ClĆ­nico de la Universidad de Chile'),
(3317, 2477, 'en', 'name', 'Muhimbili National Hospital'),
(3318, 2478, 'en', 'name', 'Sisters of Charity Hospital'),
(3319, 2479, 'no_lang_code', 'name', 'FEV (Germany)'),
(3320, 2480, 'en', 'name', 'National Council of Teachers of Mathematics'),
(3321, 2481, 'ja', 'name', 'åŒ—ęµ·é“ē—…é™¢'),
(3322, 2481, 'no_lang_code', 'name', 'Hokkaido hospital'),
(3323, 2482, 'en', 'name', 'Gannon University'),
(3324, 2483, 'en', 'name', 'Jackson Memorial Hospital'),
(3325, 2484, 'en', 'name', 'George Eliot Hospital NHS Trust'),
(3326, 2485, 'en', 'name', 'Pravara Institute of Medical Sciences'),
(3327, 2486, 'en', 'name', 'General Leonard Wood Army Community Hospital'),
(3328, 2487, 'en', 'name', 'Chi Mei Medical Center'),
(3329, 2488, 'en', 'name', 'Lovelace Medical Center'),
(3330, 2489, 'pt', 'name', 'Hospital Infantil Joana de Gusmão'),
(3331, 2490, 'en', 'name', 'Morehouse College'),
(3332, 2491, 'en', 'name', 'University of Nairobi'),
(3333, 2491, 'sw', 'name', 'Chuo Kikuu cha Nairobi'),
(3334, 2492, 'pt', 'name', 'Hospital de SĆ£o Bernardo'),
(3335, 2493, 'en', 'name', 'Shenyang Medical College'),
(3336, 2493, 'zh', 'name', 'ę²ˆé˜³åŒ»å­¦é™¢'),
(3337, 2494, 'no_lang_code', 'name', 'Electrosonics Medical'),
(3338, 2495, 'en', 'name', 'Dongzhimen Hospital Affiliated to Beijing University of Chinese Medicine'),
(3339, 2495, 'zh', 'name', 'åŒ—äŗ¬äø­åŒ»čÆå¤§å­¦äøœē›“é—ØåŒ»é™¢'),
(3340, 2496, 'es', 'name', 'Universidad Nacional Experimental Francisco de Miranda'),
(3341, 2497, 'en', 'name', 'Health Sciences Authority'),
(3342, 2497, 'ms', 'name', 'Penguasa Sains Kesihatan'),
(3343, 2498, 'en', 'name', 'Civil Hospital Karachi'),
(3344, 2499, 'en', 'name', 'Program for Appropriate Technology in Health'),
(3345, 2500, 'en', 'name', 'Keystone Symposia On Molecular and Cellular Biology'),
(3346, 2501, 'en', 'name', 'Carroll University'),
(3347, 2502, 'en', 'name', 'International Vaccine Institute'),
(3348, 2503, 'en', 'name', 'Interfaith Medical Center'),
(3349, 2504, 'en', 'name', 'Kunsan National University'),
(3350, 2504, 'ko', 'name', 'źµ°ģ‚°ėŒ€ķ•™źµ'),
(3351, 2505, 'en', 'name', 'Princess Anne Hospital'),
(3352, 2506, 'en', 'name', 'Savannah Technical College'),
(3353, 2507, 'en', 'name', 'Razi University'),
(3354, 2507, 'fa', 'name', 'دانؓگاه رازی'),
(3355, 2508, 'en', 'name', 'Oklahoma Department of Mental Health and Substance Abuse Services'),
(3356, 2509, 'tr', 'name', 'Kayseri Eğitim ve Araştırma Hastanesi'),
(3357, 2510, 'de', 'name', 'Bundesamt für Strahlenschutz'),
(3358, 2510, 'en', 'name', 'Federal Office for Radiation Protection'),
(3359, 2511, 'en', 'name', 'Palmetto Health Richland'),
(3360, 2512, 'en', 'name', 'University of Miami Hospital'),
(3361, 2513, 'en', 'name', 'Borders General Hospital'),
(3362, 2514, 'en', 'name', 'Mercy Medical Center North Iowa'),
(3363, 2515, 'no_lang_code', 'name', 'Kyowa-kako (Japan)'),
(3364, 2516, 'no_lang_code', 'name', 'Spire Corporation (United States)'),
(3365, 2517, 'en', 'name', 'Zhongshan Hospital of Xiamen University'),
(3366, 2517, 'zh', 'name', 'åŽ¦é—Øå¤§å­¦é™„å±žäø­å±±åŒ»é™¢'),
(3367, 2518, 'en', 'name', 'Yunnan Academy of Agricultural Sciences'),
(3368, 2518, 'zh', 'name', 'äŗ‘å—ēœå†œäøšē§‘å­¦é™¢'),
(3369, 2519, 'en', 'name', 'Wheeling Jesuit University'),
(3370, 2520, 'en', 'name', 'University of Charleston'),
(3371, 2520, 'fr', 'name', 'UniversitƩ de Charleston'),
(3372, 2521, 'en', 'name', 'College of Idaho'),
(3373, 2522, 'en', 'name', 'Japanese Red Cross Katsushika Maternity Hospital'),
(3374, 2522, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē¤¾č‘›é£¾ćƒžć‚æćƒ‹ćƒ†ć‚£ē—…é™¢'),
(3375, 2523, 'tr', 'name', 'Izmir Bozyaka Eğitim ve Araştırma Hastanesi'),
(3376, 2524, 'en', 'name', 'Exempla Saint Joseph Hospital'),
(3377, 2525, 'en', 'name', 'Mayo General Hospital'),
(3378, 2526, 'en', 'name', 'Dr. Mohan''s Diabetes Specialities Centre'),
(3379, 2527, 'en', 'name', 'BJC HealthCare'),
(3380, 2528, 'es', 'name', 'Universidad AnƔhuac'),
(3381, 2529, 'en', 'name', 'Bethlem Royal Hospital'),
(3382, 2530, 'en', 'name', 'Babol Noshirvani University of Technology'),
(3383, 2530, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ł†ŁˆŲ“ŪŒŲ±ŁˆŲ§Ł†ŪŒ ŲØŲ§ŲØŁ„'),
(3384, 2531, 'en', 'name', 'Tufts Children''s Hospital'),
(3385, 2532, 'en', 'name', 'National Institute of Public Health'),
(3386, 2532, 'sl', 'name', 'Nacionalni InŔtitut za Javno Zdravje'),
(3387, 2533, 'en', 'name', 'Leicester General Hospital'),
(3388, 2534, 'en', 'name', 'Vancouver General Hospital'),
(3389, 2535, 'en', 'name', 'National Registry of Emergency Medical Technicians'),
(3390, 2536, 'en', 'name', 'Beijing Museum of Natural History'),
(3391, 2536, 'zh', 'name', 'åŒ—äŗ¬č‡Ŗē„¶åšē‰©é¦†'),
(3392, 2537, 'ja', 'name', 'ę—„ęœ¬é›»å­'),
(3393, 2537, 'no_lang_code', 'name', 'JEOL (Japan)'),
(3394, 2538, 'no_lang_code', 'name', 'INTRASOFT International (Luxembourg)'),
(3395, 2539, 'it', 'name', 'Ospedale Santa Maria della Misericordia di Udine'),
(3396, 2540, 'en', 'name', 'University of Bahr El-Ghazal'),
(3397, 2541, 'en', 'name', 'National University of Comahue'),
(3398, 2541, 'es', 'name', 'Universidad Nacional del Comahue'),
(3399, 2542, 'en', 'name', 'Hamad Medical Corporation'),
(3400, 2543, 'en', 'name', 'Sharp Grossmont Hospital'),
(3401, 2544, 'en', 'name', 'Virginia Union University'),
(3402, 2545, 'no_lang_code', 'name', 'Profectus Biosciences (United States)'),
(3403, 2546, 'en', 'name', 'Mayo Clinic Health System'),
(3404, 2547, 'it', 'name', 'Ospedale San Giovanni Bosco'),
(3405, 2548, 'en', 'name', 'Bahian School of Medicine and Public Health'),
(3406, 2548, 'pt', 'name', 'Escola Bahiana de Medicina e SaĆŗde PĆŗblica'),
(3407, 2549, 'en', 'name', 'AC Camargo Hospital'),
(3408, 2550, 'en', 'name', 'Levine Children''s Hospital'),
(3409, 2551, 'en', 'name', 'Durban University of Technology'),
(3410, 2551, 'zu', 'name', 'Inyuvesi yasethekwini yezobuchwepheshe'),
(3411, 2552, 'en', 'name', 'Harrogate District Hospital'),
(3412, 2553, 'pt', 'name', 'Instituto Superior de ServiƧo Social do Porto'),
(3413, 2554, 'no_lang_code', 'name', 'MatTek Corporation (United States)'),
(3414, 2555, 'en', 'name', 'Association of Commonwealth Universities'),
(3415, 2556, 'no_lang_code', 'name', 'Enerkem (Canada)'),
(3416, 2557, 'en', 'name', 'Higher Institute of Police Sciences and Homeland Security'),
(3417, 2557, 'pt', 'name', 'Instituto Superior de Ciências Policiais e Segurança Interna'),
(3418, 2558, 'no_lang_code', 'name', '123 Certification (Canada)'),
(3419, 2559, 'en', 'name', 'Royal Oldham Hospital'),
(3420, 2560, 'en', 'name', 'First Affiliated Hospital of Fujian Medical University'),
(3421, 2560, 'zh', 'name', 'ē¦å»ŗåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(3422, 2561, 'en', 'name', 'Lankenau Institute for Medical Research'),
(3423, 2562, 'en', 'name', 'Northwick Park Hospital'),
(3424, 2563, 'en', 'name', 'Yunnan Nationalities University'),
(3425, 2563, 'zh', 'name', 'äŗ‘å—ę°‘ę—å¤§å­¦'),
(3426, 2564, 'en', 'name', 'Alessandro Manzoni Hospital'),
(3427, 2564, 'it', 'name', 'Ospedale Alessandro Manzoni'),
(3428, 2565, 'en', 'name', 'Tatung University'),
(3429, 2565, 'zh', 'name', '大同大學'),
(3430, 2566, 'en', 'name', 'Ralph H. Johnson VA Medical Center'),
(3431, 2567, 'en', 'name', 'Robert Jones and Agnes Hunt Orthopaedic Hospital'),
(3432, 2568, 'no_lang_code', 'name', 'Cleveland Medical Devices'),
(3433, 2569, 'no_lang_code', 'name', 'Univax (United States)'),
(3434, 2570, 'en', 'name', 'Norfolk State University'),
(3435, 2570, 'fr', 'name', 'UniversitĆ© d''Ɖtat de norfolk'),
(3436, 2571, 'en', 'name', 'National Police Hospital'),
(3437, 2571, 'ko', 'name', '국립경찰병원'),
(3438, 2572, 'en', 'name', 'University of the Philippines Los BaƱos'),
(3439, 2573, 'en', 'name', 'First Affiliated Hospital of GuangXi Medical University'),
(3440, 2574, 'en', 'name', 'Rocky Mountain Biological Laboratory'),
(3441, 2575, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ± Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(3442, 2575, 'en', 'name', 'Misr International University'),
(3443, 2576, 'en', 'name', 'Finnish Institute of Occupational Health'),
(3444, 2577, 'en', 'name', 'University Hospital of Heraklion'),
(3445, 2578, 'en', 'name', 'Başkent University Hospital'),
(3446, 2579, 'en', 'name', 'Children''s Hospital Agia Sophia'),
(3447, 2580, 'en', 'name', 'Payame Noor University'),
(3448, 2580, 'fa', 'name', 'دانؓگاه Ł¾ŪŒŲ§Ł… Ł†ŁˆŲ±'),
(3449, 2581, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(3450, 2581, 'en', 'name', 'University of Bahrain'),
(3451, 2582, 'no_lang_code', 'name', 'Bastyr University'),
(3452, 2583, 'en', 'name', 'City College of San Francisco'),
(3453, 2584, 'no_lang_code', 'name', 'Lucigen Corporation'),
(3454, 2585, 'de', 'name', 'UniversitƤt Mannheim'),
(3455, 2585, 'en', 'name', 'University of Mannheim'),
(3456, 2586, 'es', 'name', 'Universidad del Norte'),
(3457, 2587, 'en', 'name', 'Autonomous University of Hidalgo State'),
(3458, 2587, 'es', 'name', 'Universidad Autónoma del Estado de Hidalgo'),
(3459, 2588, 'no_lang_code', 'name', 'Dow Chemical (Canada)'),
(3460, 2589, 'en', 'name', 'Tokyo Medical University Ibaraki Medical Center'),
(3461, 2589, 'ja', 'name', 'ę±äŗ¬åŒ»ē§‘å¤§å­¦čŒØåŸŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3462, 2590, 'en', 'name', 'Chung Hwa University of Medical Technology'),
(3463, 2590, 'zh', 'name', 'äø­čÆé†«äŗ‹ē§‘ęŠ€å¤§å­ø'),
(3464, 2591, 'en', 'name', 'Second Affiliated Hospital of Chengdu University of Traditional Chinese'),
(3465, 2591, 'zh', 'name', 'ęˆéƒ½äø­åŒ»čÆå¤§å­¦'),
(3466, 2592, 'en', 'name', 'Bedford Hospital NHS Trust'),
(3467, 2593, 'en', 'name', 'Dakota Wesleyan University'),
(3468, 2594, 'no_lang_code', 'name', 'Boehringer Ingelheim (Canada)'),
(3469, 2595, 'en', 'name', 'Tulane Medical Center'),
(3470, 2596, 'en', 'name', 'Sound Shore Medical Center'),
(3471, 2597, 'en', 'name', 'Social Security Children''s Hospital'),
(3472, 2598, 'fr', 'name', 'Institut Universitaire de GƩriatrie de MontrƩal'),
(3473, 2599, 'en', 'name', 'City Hospital'),
(3474, 2600, 'en', 'name', 'MRIGlobal'),
(3475, 2601, 'it', 'name', 'Ospedale San Giovanni Antica Sede'),
(3476, 2602, 'it', 'name', 'Azienda Ospedaliera Sant''Andrea'),
(3477, 2603, 'en', 'name', 'Spartanburg Regional Medical Center'),
(3478, 2604, 'en', 'name', 'Kitakyushu Municipal Medical Center'),
(3479, 2604, 'ja', 'name', 'åŒ—ä¹å·žåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3480, 2605, 'en', 'name', 'Ahmadu Bello University Teaching Hospital'),
(3481, 2606, 'en', 'name', 'Anhui Agricultural University'),
(3482, 2606, 'zh', 'name', 'å®‰å¾½å†œäøšå¤§å­¦'),
(3483, 2607, 'no_lang_code', 'name', 'Gweru Provincial Hospital'),
(3484, 2608, 'en', 'name', 'Mind Research Network'),
(3485, 2609, 'en', 'name', 'Tan Tock Seng Hospital'),
(3486, 2609, 'ms', 'name', 'Hospital Tan Tock Seng'),
(3487, 2609, 'ta', 'name', 'ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆą®Æą®æą®²ąÆą®²ąÆ'),
(3488, 2609, 'zh', 'name', 'é™ˆē¬ƒē”ŸåŒ»é™¢'),
(3489, 2610, 'en', 'name', 'Urmia University'),
(3490, 2610, 'fa', 'name', 'دانؓگاه Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(3491, 2611, 'en', 'name', 'Kettering General Hospital'),
(3492, 2612, 'en', 'name', 'Mayville State University'),
(3493, 2613, 'en', 'name', 'Rani Durgavati University'),
(3494, 2614, 'en', 'name', 'Iowa Department of Public Health'),
(3495, 2615, 'en', 'name', 'RTI Health Solutions'),
(3496, 2616, 'no', 'name', 'Privatsykehuset Haugesund'),
(3497, 2617, 'en', 'name', 'American Academy of Orthopaedic Surgeons'),
(3498, 2618, 'en', 'name', 'Michigan State Medical Society'),
(3499, 2619, 'en', 'name', 'Kaiser Permanente South San Francisco Medical Center'),
(3500, 2620, 'en', 'name', 'Zhongshan Hospital'),
(3501, 2620, 'zh', 'name', 'äø­å±±åŒ»é™¢'),
(3502, 2621, 'en', 'name', 'Kyonggi University'),
(3503, 2621, 'ko', 'name', 'ź²½źø°ėŒ€ķ•™źµ'),
(3504, 2622, 'bg', 'name', 'ВоенномеГицинска Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(3505, 2622, 'en', 'name', 'Military Medical Academy'),
(3506, 2623, 'en', 'name', 'Bronson Methodist Hospital'),
(3507, 2624, 'ja', 'name', 'å®®ē”°ēœ¼ē§‘ē—…é™¢'),
(3508, 2624, 'no_lang_code', 'name', 'Miyata Eye Hospital'),
(3509, 2625, 'no_lang_code', 'name', 'McPhee Research (United States)'),
(3510, 2626, 'no_lang_code', 'name', 'Suez (Canada)'),
(3511, 2627, 'en', 'name', 'Institute of Higher Studies of Fafe'),
(3512, 2627, 'pt', 'name', 'Instituto de Estudos Superiores de Fafe LDA'),
(3513, 2628, 'en', 'name', 'Tokushima Red Cross Hospital'),
(3514, 2628, 'ja', 'name', 'å¾³å³¶čµ¤åå­—ē—…é™¢'),
(3515, 2629, 'en', 'name', 'Fukuyama Cardiovascular Hospital'),
(3516, 2629, 'ja', 'name', 'ē¦å±±å¾Ŗē’°å™Øē—…é™¢'),
(3517, 2630, 'en', 'name', 'Royal Hospital Haslar'),
(3518, 2631, 'no_lang_code', 'name', 'Creusot-Loire Entreprises (France)'),
(3519, 2632, 'bg', 'name', 'Лесотехнически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(3520, 2632, 'en', 'name', 'University of Forestry'),
(3521, 2633, 'en', 'name', 'Institute of Dermatology & Venereology of the Yunnan Province'),
(3522, 2634, 'en', 'name', 'Belmont University'),
(3523, 2635, 'es', 'name', 'Tekniker'),
(3524, 2636, 'it', 'name', 'Policlinico Universitario di Catania'),
(3525, 2637, 'en', 'name', 'General Hospital of Shenyang Military Region'),
(3526, 2637, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ę²ˆé˜³å†›åŒŗę€»åŒ»é™¢'),
(3527, 2638, 'en', 'name', 'Changzhi Medical College'),
(3528, 2638, 'zh', 'name', 'é•æę²»åŒ»å­¦é™¢'),
(3529, 2639, 'ja', 'name', 'ę±äŗ¬éƒ½ęøˆē”Ÿä¼šäø­å¤®ē—…é™¢'),
(3530, 2639, 'no_lang_code', 'name', 'Saiseikai Central Hospital'),
(3531, 2640, 'en', 'name', 'Durham VA Medical Center'),
(3532, 2641, 'en', 'name', 'Maine Medical Center'),
(3533, 2642, 'en', 'name', 'Amarillo VA Health Care System'),
(3534, 2643, 'en', 'name', 'Chandka Medical College'),
(3535, 2644, 'en', 'name', 'Utah Department of Health'),
(3536, 2645, 'no_lang_code', 'name', 'NuvOx Pharma (United States)'),
(3537, 2646, 'de', 'name', 'Empirica. Gesellschaft für Kommunikations- und Technologieforschung'),
(3538, 2646, 'en', 'name', 'empirica - Communication and Technology Research'),
(3539, 2647, 'en', 'name', 'Dallas VA Medical Center'),
(3540, 2648, 'en', 'name', 'North Carolina Division of Public Health'),
(3541, 2649, 'tr', 'name', 'Ɩzel Trakya Hastanesi'),
(3542, 2650, 'en', 'name', 'Orenburg State Medical Academy'),
(3543, 2650, 'ru', 'name', 'ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(3544, 2651, 'tr', 'name', 'Ergani Devlet Hastanesi'),
(3545, 2652, 'en', 'name', 'Shinkyo Hospital'),
(3546, 2653, 'pt', 'name', 'Hospital Curry Cabral'),
(3547, 2654, 'en', 'name', 'Sydney South West Area Health Service'),
(3548, 2655, 'no_lang_code', 'name', 'Kinexus Bioinformatics Corporation (Canada)'),
(3549, 2656, 'en', 'name', 'Medical Products Agency'),
(3550, 2656, 'sv', 'name', 'LƤkemedelsverket'),
(3551, 2657, 'en', 'name', 'Ministry of Health'),
(3552, 2658, 'en', 'name', 'Lincoln Medical Center'),
(3553, 2659, 'en', 'name', 'World Health Organization - Australia'),
(3554, 2660, 'no_lang_code', 'name', 'Tecnatom (Spain)'),
(3555, 2661, 'no_lang_code', 'name', 'Orange (France)'),
(3556, 2662, 'en', 'name', 'New York Hall of Science'),
(3557, 2663, 'en', 'name', 'Hyogo Social Welfare Corporation'),
(3558, 2663, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³äø­å¤®ē—…é™¢'),
(3559, 2664, 'no_lang_code', 'name', 'Membrane Technology & Research (United States)'),
(3560, 2665, 'en', 'name', 'Security Forces Hospital'),
(3561, 2666, 'en', 'name', 'St John of Jerusalem Eye Hospital Group'),
(3562, 2667, 'en', 'name', 'Keimyung University Dongsan Medical Center'),
(3563, 2667, 'ko', 'name', 'ź³„ėŖ…ėŒ€ķ•™źµ ė™ģ‚°ģ˜ė£Œģ›'),
(3564, 2668, 'en', 'name', 'Kunming University'),
(3565, 2668, 'zh', 'name', 'ę˜†ę˜Žå­¦é™¢'),
(3566, 2669, 'en', 'name', 'Beijing Jishuitan Hospital'),
(3567, 2669, 'zh', 'name', 'åŒ—äŗ¬åø‚åˆ›ä¼¤éŖØē§‘ē ”ē©¶ę‰€'),
(3568, 2670, 'de', 'name', 'Kinderspital Zürich'),
(3569, 2670, 'en', 'name', 'University Children''s Hospital Zurich'),
(3570, 2671, 'en', 'name', 'Al-Sabah Hospital'),
(3571, 2672, 'en', 'name', 'Audie L. Murphy Memorial VA Hospital'),
(3572, 2673, 'en', 'name', 'Consortium For Mathematics & Its Applications'),
(3573, 2674, 'en', 'name', 'Eastern Illinois University'),
(3574, 2674, 'fr', 'name', 'UniversitƩ de l''illinois de l''est'),
(3575, 2675, 'en', 'name', 'Oklahoma Medical Research Foundation'),
(3576, 2676, 'en', 'name', 'LDS Hospital'),
(3577, 2677, 'en', 'name', 'Ministry of Health'),
(3578, 2678, 'nl', 'name', 'Stichting Technasium'),
(3579, 2679, 'en', 'name', 'Denizli State Hospital'),
(3580, 2679, 'tr', 'name', 'Denizli Devlet Hastanesi'),
(3581, 2680, 'no_lang_code', 'name', 'HEF Groupe (France)'),
(3582, 2681, 'en', 'name', 'Eulji University Hospital'),
(3583, 2681, 'ko', 'name', 'ģ„ģ§€ėŒ€ķ•™źµė³‘ģ›'),
(3584, 2682, 'en', 'name', 'East Central University'),
(3585, 2683, 'nl', 'name', 'Atrium Medisch Centrum Parkstad'),
(3586, 2684, 'en', 'name', 'China Medical University Hospital'),
(3587, 2685, 'no_lang_code', 'name', 'Nanchang Hangkong University'),
(3588, 2685, 'zh', 'name', 'å—ę˜ŒčˆŖē©ŗå¤§å­¦'),
(3589, 2686, 'en', 'name', 'Slippery Rock University'),
(3590, 2687, 'en', 'name', 'Baltimore VA Medical Center'),
(3591, 2688, 'en', 'name', 'Washington University Medical Center'),
(3592, 2689, 'en', 'name', 'Niigata Prefectural Museum of History'),
(3593, 2689, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(3594, 2690, 'pt', 'name', 'Hospital do Desterro'),
(3595, 2691, 'es', 'name', 'Hospital Santa Caterina'),
(3596, 2692, 'en', 'name', 'Banff Mineral Springs Hospital'),
(3597, 2693, 'en', 'name', 'Ministry of Health'),
(3598, 2694, 'en', 'name', 'Carilion Roanoke Memorial Hospital'),
(3599, 2695, 'en', 'name', 'Greenwich Hospital'),
(3600, 2696, 'en', 'name', 'Monash Medical Centre'),
(3601, 2697, 'en', 'name', 'Southern Arkansas University'),
(3602, 2698, 'en', 'name', 'Educational Commission for Foreign Medical Graduates'),
(3603, 2699, 'ar', 'name', 'مستؓفى الأردن'),
(3604, 2699, 'no_lang_code', 'name', 'Jordan Hospital'),
(3605, 2700, 'en', 'name', 'Kemerovo State University'),
(3606, 2700, 'ru', 'name', 'ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(3607, 2701, 'pt', 'name', 'Fundação Ricardo do Espírito Santo Silva'),
(3608, 2702, 'en', 'name', 'Gifu Pharmaceutical University'),
(3609, 2702, 'ja', 'name', 'å²é˜œč–¬ē§‘å¤§å­¦'),
(3610, 2703, 'en', 'name', 'Kongju National University'),
(3611, 2703, 'ko', 'name', 'ź³µģ£¼ėŒ€ķ•™źµ'),
(3612, 2704, 'en', 'name', 'Children''s Hospital of Pittsburgh'),
(3613, 2705, 'en', 'name', 'Haskell Indian Nations University'),
(3614, 2706, 'en', 'name', 'Catholic University of Pelotas'),
(3615, 2706, 'pt', 'name', 'Universidade Católica de Pelotas'),
(3616, 2707, 'en', 'name', 'Lewis University'),
(3617, 2708, 'en', 'name', 'Himeji Medical Center'),
(3618, 2708, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē—…é™¢ę©Ÿę§‹ å§«č·ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3619, 2709, 'en', 'name', 'Handa City Hospital'),
(3620, 2709, 'ja', 'name', 'åŠē”°åø‚ē«‹åŠē”°ē—…é™¢'),
(3621, 2710, 'en', 'name', 'Nizhny Novgorod State Technical University'),
(3622, 2710, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(3623, 2711, 'en', 'name', 'Shriners Hospitals for Children - Houston'),
(3624, 2712, 'en', 'name', 'Regional West Medical Center'),
(3625, 2713, 'en', 'name', 'Japanese Red Cross Asahikawa Hospital'),
(3626, 2713, 'ja', 'name', 'ę—­å·čµ¤åå­—ē—…é™¢'),
(3627, 2714, 'no_lang_code', 'name', 'Pera (United Kingdom)'),
(3628, 2715, 'no_lang_code', 'name', 'Xstrata (United Kingdom)'),
(3629, 2716, 'no_lang_code', 'name', 'Pinnacle Technology'),
(3630, 2717, 'no_lang_code', 'name', 'Physical Optics Corporation'),
(3631, 2718, 'en', 'name', 'Buddhist Tzu Chi General Hospital'),
(3632, 2719, 'en', 'name', 'National Academy of Agricultural Science'),
(3633, 2719, 'ko', 'name', 'źµ­ė¦½ė†ģ—…ź³¼ķ•™ģ›'),
(3634, 2720, 'en', 'name', 'Shatin Hospital'),
(3635, 2720, 'zh', 'name', '沙田醫院'),
(3636, 2721, 'en', 'name', 'Imelda Hospital'),
(3637, 2721, 'nl', 'name', 'Imelda ziekenhuis'),
(3638, 2722, 'en', 'name', 'Memorial Hermann Institute for Rehabilitation and Research Foundation'),
(3639, 2723, 'en', 'name', 'University of the District of Columbia'),
(3640, 2723, 'fr', 'name', 'UniversitƩ du district de columbia'),
(3641, 2724, 'de', 'name', 'Klinikum Ludwigshafen'),
(3642, 2725, 'en', 'name', 'Kolding Hospital'),
(3643, 2726, 'en', 'name', 'Baptist Medical Center Jacksonville'),
(3644, 2727, 'tr', 'name', 'Etlik Zübeyde Hanım Kadın Hastalıkları Eğitim ve Araştırma Hastanesi'),
(3645, 2728, 'en', 'name', 'Ealing Hospital NHS Trust'),
(3646, 2729, 'es', 'name', 'Hospital Riotinto'),
(3647, 2730, 'en', 'name', 'Nambu University'),
(3648, 2731, 'en', 'name', 'Dr Gray''s Hospital'),
(3649, 2732, 'en', 'name', 'Gladstone Institutes'),
(3650, 2733, 'en', 'name', 'National Center for Drug Screening'),
(3651, 2733, 'zh', 'name', 'å›½å®¶ę–°čÆē­›é€‰äø­åæƒ'),
(3652, 2734, 'en', 'name', 'Guangxi Maternal and Child Health Hospital'),
(3653, 2734, 'zh', 'name', 'å¹æč„æå¦‡å¹¼äæå„é™¢'),
(3654, 2735, 'en', 'name', 'Center for High Pressure Science and Technology Advanced Research'),
(3655, 2735, 'zh', 'name', 'åŒ—äŗ¬é«˜åŽ‹ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(3656, 2736, 'en', 'name', 'Altai State Technical University'),
(3657, 2736, 'ru', 'name', 'Алтайский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. И. Ползунова'),
(3658, 2737, 'en', 'name', 'Okayama Prefectural University'),
(3659, 2737, 'ja', 'name', 'å²”å±±ēœŒē«‹å¤§å­¦'),
(3660, 2738, 'en', 'name', 'Kunming Medical University'),
(3661, 2738, 'zh', 'name', 'ę˜†ę˜ŽåŒ»ē§‘å¤§å­¦'),
(3662, 2739, 'en', 'name', 'Poudre Valley Hospital'),
(3663, 2740, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ćƒć‚«'),
(3664, 2740, 'no_lang_code', 'name', 'Kaneka (Japan)'),
(3665, 2741, 'en', 'name', 'Northrop University'),
(3666, 2742, 'en', 'name', 'National Wildlife Health Center'),
(3667, 2743, 'hi', 'name', 'ą¤•ą„ą¤®ą¤¾ą¤Šą¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(3668, 2743, 'no_lang_code', 'name', 'Kumaun University'),
(3669, 2743, 'ta', 'name', 'ą®•ąÆą®®ą®¾ą®µąÆą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(3670, 2744, 'en', 'name', 'Shinmatsudo Central General Hospital'),
(3671, 2744, 'ja', 'name', 'ę–°ę¾ęˆøäø­å¤®ē·åˆē—…é™¢'),
(3672, 2745, 'en', 'name', 'UPMC Hamot'),
(3673, 2746, 'en', 'name', 'National Satellite Ocean Application Service'),
(3674, 2746, 'zh', 'name', 'å›½å®¶å«ę˜Ÿęµ·ę“‹åŗ”ē”Øäø­åæƒ'),
(3675, 2747, 'tr', 'name', 'Izmir Tepecik Eğitim ve Araştırma Hastanesi'),
(3676, 2748, 'en', 'name', 'Shanghai Institute of Hypertension'),
(3677, 2749, 'en', 'name', 'Natividad Medical Center'),
(3678, 2750, 'en', 'name', 'National Academy of Sciences'),
(3679, 2751, 'no_lang_code', 'name', 'Nerviano Medical Sciences'),
(3680, 2752, 'en', 'name', 'Olivet Nazarene University'),
(3681, 2753, 'en', 'name', 'Lovelace Respiratory Research Institute'),
(3682, 2754, 'no_lang_code', 'name', 'IM Systems (United States)'),
(3683, 2755, 'en', 'name', 'Rapid City Regional Hospital'),
(3684, 2756, 'en', 'name', 'Delaware County Memorial Hospital'),
(3685, 2757, 'en', 'name', 'Charles R. Drew University of Medicine and Science'),
(3686, 2758, 'en', 'name', 'Inner Mongolia Medical College Hospital'),
(3687, 2758, 'zh', 'name', 'å†…č’™å¤åŒ»ē§‘å¤§å­¦é™„å±žåŒ»é™¢'),
(3688, 2759, 'en', 'name', 'Kaiser Permanente Santa Clara Medical Center'),
(3689, 2760, 'en', 'name', 'Youngstown State University'),
(3690, 2761, 'no_lang_code', 'name', 'Habib hospital Thameur'),
(3691, 2762, 'en', 'name', 'Allergy and Asthma Medical Group and Research Center'),
(3692, 2763, 'en', 'name', 'Borgess Medical Center'),
(3693, 2764, 'fr', 'name', 'HƓpital Louis Pradel'),
(3694, 2765, 'en', 'name', 'First Affiliated Hospital of Chinese PLA General Hospital'),
(3695, 2765, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ę€»åŒ»é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(3696, 2766, 'en', 'name', 'Clark Atlanta University'),
(3697, 2767, 'es', 'name', 'Hospital MuƱiz, Hospital de Infecciosas ā€œDr. Francisco Javier MuƱiz"'),
(3698, 2768, 'no_lang_code', 'name', 'Weyerhauser (Canada)'),
(3699, 2769, 'it', 'name', 'Ospedale Infermi di Rimini'),
(3700, 2770, 'en', 'name', 'Ninewells Hospital'),
(3701, 2771, 'no_lang_code', 'name', 'Dhaka Shishu Hospital'),
(3702, 2772, 'en', 'name', 'LeMoyne–Owen College'),
(3703, 2773, 'pt', 'name', 'Instituto Português de Administração de Marketing'),
(3704, 2774, 'en', 'name', 'Municipal Institute for Medical Research'),
(3705, 2775, 'en', 'name', 'Springfield Technical Community College'),
(3706, 2776, 'en', 'name', 'Capital and Coast District Health Board'),
(3707, 2777, 'en', 'name', 'Bangkok Hospital'),
(3708, 2777, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(3709, 2778, 'en', 'name', 'Third Affiliated Hospital of Zhengzhou University'),
(3710, 2778, 'zh', 'name', 'éƒ‘å·žå¤§å­¦ē¬¬äø‰é™„å±žåŒ»é™¢'),
(3711, 2779, 'en', 'name', 'Dongduk Women''s University'),
(3712, 2779, 'ko', 'name', 'ė™ė•ģ—¬ģžėŒ€ķ•™źµ'),
(3713, 2780, 'en', 'name', 'Edward Francis Small Teaching Hospital'),
(3714, 2781, 'be', 'name', 'ГроГзенскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃƒŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(3715, 2781, 'en', 'name', 'Grodno State Medical University'),
(3716, 2781, 'ru', 'name', 'ГроГненский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(3717, 2782, 'en', 'name', 'County Hospital'),
(3718, 2783, 'en', 'name', 'Sri Venkateswara Institute of Medical Sciences'),
(3719, 2784, 'en', 'name', 'Sree Balaji Dental College and Hospital'),
(3720, 2785, 'en', 'name', 'Queen Elizabeth the Queen Mother Hospital'),
(3721, 2786, 'en', 'name', 'University Institute of European Studies'),
(3722, 2786, 'it', 'name', 'Istituto Universitario di Studi Europei'),
(3723, 2787, 'en', 'name', 'Jikei University School of Medicine'),
(3724, 2787, 'ja', 'name', 'ę±äŗ¬ę…ˆęµä¼šåŒ»ē§‘å¤§å­¦'),
(3725, 2788, 'en', 'name', 'Integral University'),
(3726, 2788, 'fr', 'name', 'UniversitƩ intƩgrale de lucknow'),
(3727, 2788, 'hi', 'name', 'ą¤‡ą¤‚ą¤Ÿą„€ą¤—ą„ą¤°ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(3728, 2789, 'en', 'name', 'Canadian Space Agency'),
(3729, 2789, 'fr', 'name', 'Agence spatiale canadienne'),
(3730, 2790, 'en', 'name', 'KƤtilƶopisto Maternity Hospital'),
(3731, 2791, 'en', 'name', 'Health Protection Surveillance Centre'),
(3732, 2791, 'ga', 'name', 'LƔrionad Faire um Chosaint SlƔinte'),
(3733, 2792, 'en', 'name', 'Augustana University'),
(3734, 2793, 'en', 'name', 'Queensborough Community College, CUNY'),
(3735, 2794, 'pt', 'name', 'Universidade do Oeste de Santa Catarina'),
(3736, 2795, 'en', 'name', 'Lurie Children''s Hospital'),
(3737, 2796, 'es', 'name', 'Hospital Del Mar'),
(3738, 2797, 'en', 'name', 'KLE University'),
(3739, 2798, 'en', 'name', 'American Society For Engineering Education'),
(3740, 2799, 'en', 'name', 'North Memorial Health Care'),
(3741, 2800, 'pt', 'name', 'Universidade Estadual de CiĆŖncias da SaĆŗde de Alagoas'),
(3742, 2801, 'no_lang_code', 'name', 'Allied Technology (United States)'),
(3743, 2802, 'sv', 'name', 'Helsingborgs lasarett'),
(3744, 2803, 'en', 'name', 'Christian Brothers University'),
(3745, 2804, 'en', 'name', 'Queen''s Medical Centre'),
(3746, 2805, 'en', 'name', 'Martin Luther King, Jr. Multi-Service Ambulatory Care Center'),
(3747, 2806, 'en', 'name', 'Coney Island Hospital'),
(3748, 2807, 'en', 'name', 'University of California San Diego Medical Center'),
(3749, 2808, 'no_lang_code', 'name', 'Arup Group (United States)'),
(3750, 2809, 'en', 'name', 'Police General Hospital'),
(3751, 2809, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø•ąø³ąø£ąø§ąøˆ'),
(3752, 2810, 'en', 'name', 'Kagawa Nutrition University'),
(3753, 2810, 'ja', 'name', 'å„³å­ę „é¤Šå¤§å­¦'),
(3754, 2811, 'en', 'name', 'Ayub Medical College'),
(3755, 2812, 'en', 'name', 'Diana Princess of Wales Hospital'),
(3756, 2813, 'en', 'name', 'Saint Michael''s College'),
(3757, 2814, 'es', 'name', 'Hospital Padre Hurtado'),
(3758, 2815, 'en', 'name', 'University of Mary Washington'),
(3759, 2815, 'fr', 'name', 'UniversitƩ de mary washington'),
(3760, 2816, 'en', 'name', 'Educational Testing Service'),
(3761, 2817, 'en', 'name', 'Southern University System'),
(3762, 2818, 'es', 'name', 'Hospital Vargas'),
(3763, 2819, 'en', 'name', 'Colmery-O''Neil VA Medical Center'),
(3764, 2820, 'en', 'name', 'Post Graduate Medical Institute'),
(3765, 2821, 'en', 'name', 'Ladoke Akintola University of Technology Teaching Hospital'),
(3766, 2822, 'en', 'name', 'Arkansas Tech University'),
(3767, 2823, 'en', 'name', 'Beckman Laser Institute and Medical Clinic'),
(3768, 2824, 'en', 'name', 'American Public Health Association'),
(3769, 2825, 'no_lang_code', 'name', 'Tata Steel (United Kingdom)'),
(3770, 2826, 'en', 'name', 'Institute for Medical Research'),
(3771, 2827, 'no_lang_code', 'name', 'Barrick Gold (Canada)'),
(3772, 2828, 'no_lang_code', 'name', 'National Institute of Technology'),
(3773, 2829, 'en', 'name', 'Queen Victoria Hospital NHS Foundation Trust'),
(3774, 2830, 'en', 'name', 'Shaukat Khanum Memorial Cancer Hospital and Research Center'),
(3775, 2830, 'ur', 'name', 'ؓوکت خانم یادگاری سرطان ؓفاخانہ اور مرکز ŲŖŲ­Ł‚ŪŒŁ‚'),
(3776, 2831, 'en', 'name', 'National Taiwan Ocean University'),
(3777, 2832, 'it', 'name', 'Fondazione Eni Enrico Mattei'),
(3778, 2833, 'en', 'name', 'Slovak National Library'),
(3779, 2833, 'sk', 'name', 'Slovenska Narodna Kniznica, SlovenskÔ nÔrodnÔ knižnica'),
(3780, 2834, 'en', 'name', 'Kyushu Dental University'),
(3781, 2834, 'ja', 'name', 'ä¹å·žę­Æē§‘å¤§å­¦'),
(3782, 2835, 'en', 'name', 'Cancer Prevention Institute of California'),
(3783, 2836, 'en', 'name', 'Chonbuk National University Hospital'),
(3784, 2837, 'en', 'name', 'Clarke University'),
(3785, 2838, 'en', 'name', 'UPMC Montefiore'),
(3786, 2839, 'en', 'name', '175th Hospital of People''s Liberation Army'),
(3787, 2839, 'zh', 'name', '解放军第175医院'),
(3788, 2840, 'no_lang_code', 'name', 'One Cell Systems (United States)'),
(3789, 2841, 'en', 'name', 'Gifu Prefectural General Medical Center'),
(3790, 2841, 'ja', 'name', 'å²é˜œēœŒē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3791, 2842, 'en', 'name', 'General University Hospital of Patras'),
(3792, 2843, 'en', 'name', 'National Academy for State Health Policy'),
(3793, 2844, 'en', 'name', 'Ehime Prefectural Central Hospital'),
(3794, 2844, 'ja', 'name', 'ę„›åŖ›ēœŒē«‹äø­å¤®ē—…é™¢'),
(3795, 2845, 'en', 'name', 'Sri Aurobindo Institute of Medical Sciences'),
(3796, 2846, 'en', 'name', 'Cathay General Hospital'),
(3797, 2847, 'en', 'name', 'Sewickley Valley Hospital'),
(3798, 2848, 'en', 'name', 'University of Western States'),
(3799, 2849, 'tr', 'name', 'SSK İhtisas Hastanesi'),
(3800, 2850, 'en', 'name', 'Lakeland Regional Medical Center'),
(3801, 2851, 'en', 'name', 'Nassau University Medical Center'),
(3802, 2852, 'en', 'name', 'California Institute for Medical Research'),
(3803, 2853, 'en', 'name', 'VA Sierra Nevada Health Care System'),
(3804, 2854, 'ja', 'name', 'å·å“Žē—…é™¢'),
(3805, 2854, 'no_lang_code', 'name', 'Kawasaki Hospital'),
(3806, 2855, 'en', 'name', 'Coe College'),
(3807, 2856, 'en', 'name', 'Hope College'),
(3808, 2857, 'en', 'name', 'Royal Hospital'),
(3809, 2858, 'pt', 'name', 'Hospital Municipal Souza Aguiar'),
(3810, 2859, 'en', 'name', 'Craigavon Area Hospital'),
(3811, 2860, 'en', 'name', 'Connecticut Department of Public Health'),
(3812, 2861, 'en', 'name', 'Muhlenberg College'),
(3813, 2862, 'pt', 'name', 'Universidade Estadual do Centro-Oeste'),
(3814, 2863, 'en', 'name', 'First Affiliated Hospital of Wenzhou Medical University'),
(3815, 2864, 'no_lang_code', 'name', 'Electrosynthesis Company (United States)'),
(3816, 2865, 'no_lang_code', 'name', 'Epoch Biosciences (United States)'),
(3817, 2866, 'en', 'name', 'Maine Medical Center Research Institute'),
(3818, 2867, 'en', 'name', 'Central Taiwan University of Science and Technology'),
(3819, 2868, 'fr', 'name', 'HƓpital Xavier Arnozan'),
(3820, 2869, 'en', 'name', 'National Neuroscience Institute'),
(3821, 2870, 'pt', 'name', 'Escola Superior de Enfermagem de São José de Cluny'),
(3822, 2871, 'en', 'name', 'Karnataka Institute of Medical Sciences'),
(3823, 2871, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²µą³†ą³–ą²¦ą³ą²Æą²•ą²æą³•ą²Æ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(3824, 2872, 'no_lang_code', 'name', 'Ross Video (Canada)'),
(3825, 2873, 'en', 'name', 'Princess Royal University Hospital'),
(3826, 2874, 'en', 'name', 'Illinois State Museum'),
(3827, 2875, 'en', 'name', 'Northeast Radio Observatory Corporation'),
(3828, 2876, 'en', 'name', 'Alaska Department of Health and Social Services'),
(3829, 2877, 'no_lang_code', 'name', 'Pyrogenesis (Canada)'),
(3830, 2878, 'en', 'name', 'Anhui Provincial Center for Disease Control and Prevention'),
(3831, 2878, 'zh', 'name', 'å®‰å¾½ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(3832, 2879, 'en', 'name', 'Research Centre for Medical Genetics'),
(3833, 2880, 'it', 'name', 'Ospedale Generale Regionale Francesco Miulli'),
(3834, 2881, 'en', 'name', 'Association of Science-Technology Centers'),
(3835, 2882, 'en', 'name', 'East Jefferson General Hospital'),
(3836, 2883, 'no_lang_code', 'name', 'Artann Laboratories, Inc.'),
(3837, 2884, 'en', 'name', 'Grant Medical College and Sir Jamshedjee Jeejeebhoy Group of Hospitals'),
(3838, 2885, 'en', 'name', 'Christ Hospital'),
(3839, 2886, 'no_lang_code', 'name', 'Scimar Engineering Ltd'),
(3840, 2887, 'en', 'name', 'Salem University'),
(3841, 2888, 'no_lang_code', 'name', 'Systems, Applications & Products in Data Processing (Germany)'),
(3842, 2889, 'ca', 'name', 'Hospital Mare de Déu de la Mercè'),
(3843, 2890, 'en', 'name', 'Elazig Education and Research Hospital'),
(3844, 2890, 'tr', 'name', 'Elazığ Eğitim ve Araştırma Hastanesi'),
(3845, 2891, 'en', 'name', 'Maulana Azad Medical College'),
(3846, 2891, 'ta', 'name', 'மௌலானா ą®†ą®šą®¾ą®¤ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(3847, 2892, 'no_lang_code', 'name', 'Jamia Hamdard'),
(3848, 2893, 'en', 'name', 'Royal National Orthopaedic Hospital NHS Trust'),
(3849, 2894, 'en', 'name', 'DSO National Laboratories'),
(3850, 2895, 'en', 'name', 'University of Minnesota Medical Center'),
(3851, 2896, 'en', 'name', 'Florida Department of Health'),
(3852, 2897, 'en', 'name', 'Donetsk State University of Management'),
(3853, 2897, 'ru', 'name', 'Донецкий Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(3854, 2897, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(3855, 2898, 'no_lang_code', 'name', 'Naresuan University'),
(3856, 2898, 'th', 'name', 'ดหาวณทยาคัยนเรศวร'),
(3857, 2899, 'en', 'name', 'ABC Medical Center'),
(3858, 2899, 'es', 'name', 'Centro MƩdico ABC'),
(3859, 2900, 'en', 'name', 'Federal Medical Centre'),
(3860, 2901, 'en', 'name', 'Gunma Prefectural Institute of Public Health and Environmental Sciences'),
(3861, 2901, 'ja', 'name', 'ē¾¤é¦¬ēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(3862, 2902, 'de', 'name', 'Potsdam-Institut für Klimafolgenforschung'),
(3863, 2902, 'en', 'name', 'Potsdam Institute for Climate Impact Research'),
(3864, 2903, 'en', 'name', 'Bethesda North Hospital'),
(3865, 2904, 'en', 'name', 'Boys Town'),
(3866, 2905, 'en', 'name', 'Bogomolets National Medical University'),
(3867, 2905, 'pl', 'name', 'Narodowy Medyczny Uniwersytet im. O.Bohomolca'),
(3868, 2905, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. А. Š‘Š¾Š³Š¾Š¼Š¾Š»ŃŒŃ†Š°'),
(3869, 2905, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠžŠ»ŠµŠŗŃŠ°Š½Š“Ń€Š° Š‘Š¾Š³Š¾Š¼Š¾Š»ŃŒŃ†Ń'),
(3870, 2906, 'en', 'name', 'Teikyo University Chiba Medical Center'),
(3871, 2906, 'ja', 'name', 'åøäŗ¬å¤§å­¦ć”ć°ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3872, 2907, 'it', 'name', 'A. O. Ordine Mauriziano di Torino'),
(3873, 2908, 'en', 'name', 'Shanghai Changning Mental Health Center'),
(3874, 2908, 'zh', 'name', 'é•æå®åŒŗē²¾ē„žå«ē”Ÿäø­åæƒ'),
(3875, 2909, 'pt', 'name', 'Hospital de ClĆ­nicas Universidade Federal do ParanĆ”'),
(3876, 2910, 'en', 'name', 'Winthrop-University Hospital'),
(3877, 2911, 'en', 'name', 'Antioch University'),
(3878, 2912, 'en', 'name', 'California State University, Fresno'),
(3879, 2912, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Californie Ć  Fresno'),
(3880, 2913, 'da', 'name', 'Dronning Ingrids Hospital'),
(3881, 2913, 'en', 'name', 'Queen Ingrid''s Hospital'),
(3882, 2914, 'en', 'name', 'Moisio Hospital'),
(3883, 2914, 'fi', 'name', 'Moision Sairaala'),
(3884, 2915, 'en', 'name', 'Loma Linda University Medical Center'),
(3885, 2915, 'fr', 'name', 'Centre mƩdical universitaire de loma linda'),
(3886, 2916, 'en', 'name', 'East Tennessee Children''s Hospital'),
(3887, 2917, 'en', 'name', 'Ewha Womans University Medical Center'),
(3888, 2917, 'ko', 'name', 'ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ ėŖ©ė™ė³‘ģ›'),
(3889, 2918, 'en', 'name', 'Littlemore Hospital'),
(3890, 2919, 'en', 'name', 'Iwate Biotechnology Research Center'),
(3891, 2919, 'ja', 'name', '貔団法人 å²©ę‰‹ē”Ÿē‰©å·„å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(3892, 2920, 'en', 'name', 'Saint Thomas Midtown Hospital'),
(3893, 2921, 'en', 'name', 'National University of Asuncion'),
(3894, 2921, 'es', 'name', 'Universidad Nacional de Asunción'),
(3895, 2922, 'en', 'name', 'Somali National University'),
(3896, 2922, 'it', 'name', 'UniversitĆ  nazionale somala'),
(3897, 2922, 'so', 'name', 'Jaamacada Ummada Soomaaliyeed'),
(3898, 2923, 'ja', 'name', 'ę¦›åŽŸē·åˆē—…é™¢'),
(3899, 2923, 'no_lang_code', 'name', 'Haibara General Hospital'),
(3900, 2924, 'en', 'name', 'Museum of the Earth'),
(3901, 2925, 'pt', 'name', 'Instituto Superior Dom Afonso III'),
(3902, 2926, 'en', 'name', 'Methodist University'),
(3903, 2927, 'en', 'name', 'Colorado Permanente Medical Group'),
(3904, 2928, 'no_lang_code', 'name', 'Bombardier (Canada)'),
(3905, 2929, 'en', 'name', 'Providence University'),
(3906, 2929, 'zh', 'name', 'éœå®œå¤§å­ø'),
(3907, 2930, 'en', 'name', 'Tougaloo College'),
(3908, 2931, 'en', 'name', 'Hardin–Simmons University'),
(3909, 2932, 'en', 'name', 'Kagawa National Children''s Hospital'),
(3910, 2932, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹é¦™å·å°å…ē—…é™¢'),
(3911, 2933, 'en', 'name', 'Novant Health Presbyterian Medical Center'),
(3912, 2934, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŲŗŲ§Ų²ŁŠ'),
(3913, 2934, 'en', 'name', 'University of Benghazi'),
(3914, 2935, 'en', 'name', 'Center for Molecular Medicine and Immunology'),
(3915, 2936, 'en', 'name', 'University of the West Indies'),
(3916, 2937, 'en', 'name', 'Black Hills State University'),
(3917, 2938, 'es', 'name', 'Hospital Juan Ramón Jiménez'),
(3918, 2939, 'en', 'name', 'University of Uyo Teaching Hospital'),
(3919, 2940, 'en', 'name', 'Institute of Fundamental Technological Research'),
(3920, 2940, 'pl', 'name', 'Instytut Podstawowych Problemów Techniki'),
(3921, 2941, 'en', 'name', 'Saitama International Medical Center'),
(3922, 2941, 'ja', 'name', 'åŸ¼ēŽ‰åŒ»ē§‘å¤§å­¦å›½éš›åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(3923, 2942, 'en', 'name', 'Lokmanya Tilak Municipal General Hospital and Lokmanya Tilak Municipal Medical College'),
(3924, 2943, 'en', 'name', 'Baptist Health Louisville'),
(3925, 2944, 'en', 'name', 'Sentara Norfolk General Hospital'),
(3926, 2945, 'en', 'name', 'Shanghai Institute of Hematology'),
(3927, 2945, 'zh', 'name', 'äøŠęµ·č”€ę¶²å­¦ē ”ē©¶ę‰€'),
(3928, 2946, 'hu', 'name', 'Markusovszky Egyetemi OktatókórhÔz'),
(3929, 2947, 'es', 'name', 'Hospital Universitari Sagrat Cor'),
(3930, 2948, 'no_lang_code', 'name', '3M (Canada)'),
(3931, 2949, 'en', 'name', 'Delaware State University'),
(3932, 2950, 'en', 'name', 'University of Birjand'),
(3933, 2950, 'fa', 'name', 'دانؓگاه ŲØŪŒŲ±Ų¬Ł†ŲÆ'),
(3934, 2951, 'fi', 'name', 'Keski-Pohjanmaan keskussairaala'),
(3935, 2952, 'el', 'name', 'Ī Ī‘ĪĪ•Ī Ī™Ī£Ī¤Ī—ĪœĪ™Ī‘ĪšĪŸ Ī“Ī•ĪĪ™ĪšĪŸ ĪĪŸĪ£ĪŸĪšĪŸĪœĪ•Ī™ĪŸ "Ī‘Ī¤Ī¤Ī™ĪšĪŸĪ"'),
(3936, 2952, 'en', 'name', 'University General Hospital Attikon'),
(3937, 2953, 'en', 'name', 'Holmes Regional Medical Center'),
(3938, 2954, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų“ŁŠŲ® Ų®Ł„ŁŠŁŲ© Ų§Ł„Ų·ŲØŁŠŲ©'),
(3939, 2954, 'en', 'name', 'Shaikh Khalifa Medical City'),
(3940, 2955, 'en', 'name', 'Sher-i-Kashmir Institute of Medical Sciences'),
(3941, 2955, 'ur', 'name', 'ؓیرِ Ś©Ų“Ł…ŪŒŲ± Ų§Ł†Ų³Ł¹ŪŒŚ†ŪŒŁˆŁ¹ آف Ł…ŪŒŚˆŪŒŚ©Ł„ سائنسز'),
(3942, 2956, 'en', 'name', 'Al-Ameen Medical College'),
(3943, 2957, 'en', 'name', 'Sheppard and Enoch Pratt Hospital'),
(3944, 2958, 'en', 'name', 'Nordic School of Public Health'),
(3945, 2959, 'no_lang_code', 'name', 'Sierra Wireless (Canada)'),
(3946, 2960, 'en', 'name', 'Kaohsiung Medical University'),
(3947, 2961, 'en', 'name', 'World Technology Evaluation Center'),
(3948, 2962, 'en', 'name', 'Jacobs Institute of Women''s Health'),
(3949, 2963, 'en', 'name', 'University Centre of Legal Medicine'),
(3950, 2964, 'en', 'name', 'Clinical Emergency Hospital Bucharest'),
(3951, 2964, 'ro', 'name', 'Spitalul Clinic de Urgenta Bucuresti'),
(3952, 2965, 'en', 'name', 'Diego Portales University'),
(3953, 2965, 'es', 'name', 'Universidad Diego Portales'),
(3954, 2966, 'no_lang_code', 'name', 'Edendale Hospital'),
(3955, 2967, 'it', 'name', 'Ospedale Annunziata di Cosenza'),
(3956, 2968, 'en', 'name', 'Argerich Hospital'),
(3957, 2969, 'en', 'name', 'Saint Francis Hospital & Medical Center'),
(3958, 2970, 'en', 'name', 'Oxford University Hospitals NHS Trust'),
(3959, 2971, 'no_lang_code', 'name', 'MatƩriaux Blanchet'),
(3960, 2972, 'es', 'name', 'Hospital PediƔtrico Moctezuma'),
(3961, 2973, 'en', 'name', 'Lehigh Valley Hospital'),
(3962, 2974, 'en', 'name', 'Connolly Hospital Blanchardstown'),
(3963, 2974, 'ga', 'name', 'OspidƩal Uƭ Chonghaile, Baile BhlainsƩir'),
(3964, 2975, 'en', 'name', 'University of Massachusetts Lowell'),
(3965, 2975, 'es', 'name', 'Universidad de Massachusetts Lowell'),
(3966, 2976, 'fr', 'name', 'UniversitƩ FƩlix Houphouƫt-Boigny'),
(3967, 2977, 'no_lang_code', 'name', 'Therapeutics Systems Research Laboratories (United States)'),
(3968, 2978, 'it', 'name', 'Ospedale Sandro Pertini'),
(3969, 2979, 'en', 'name', 'Legacy Emanuel Medical Center'),
(3970, 2980, 'no_lang_code', 'name', 'Advanced Liquid Logic'),
(3971, 2981, 'en', 'name', 'Newton Wellesley Hospital'),
(3972, 2982, 'en', 'name', 'Bibra International'),
(3973, 2983, 'en', 'name', 'UCSF Benioff Children''s Hospital'),
(3974, 2984, 'en', 'name', 'Harvard Vanguard Medical Associates'),
(3975, 2985, 'en', 'name', 'Philadelphia VA Medical Center'),
(3976, 2986, 'en', 'name', 'Slade Hospital'),
(3977, 2987, 'en', 'name', 'Beijing Great Wall Hospital'),
(3978, 2987, 'zh', 'name', 'åŒ—äŗ¬åø‚é•æåŸŽåŒ»é™¢'),
(3979, 2988, 'en', 'name', 'Magellan Health'),
(3980, 2989, 'en', 'name', 'University HealthSystem Consortium'),
(3981, 2990, 'en', 'name', 'Mater Mothers'' Hospital'),
(3982, 2991, 'el', 'name', '''''ΚαραμανΓάνειο'''' Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΠαίΓων Ī Ī±Ļ„ĻĻŽĪ½'),
(3983, 2991, 'en', 'name', 'General Hospital Pediatric Karamandanio'),
(3984, 2992, 'en', 'name', 'M.S. Ramaiah Medical College'),
(3985, 2993, 'fr', 'name', 'HƓpital Ambroise-ParƩ'),
(3986, 2994, 'en', 'name', 'Kaiser Foundation Hospital'),
(3987, 2995, 'en', 'name', 'Shizuoka Red Cross Hospital'),
(3988, 2995, 'ja', 'name', 'é™å²”čµ¤åå­—ē—…é™¢'),
(3989, 2996, 'ja', 'name', 'åŒ—ęµ·é“äø­å¤®ē—…é™¢'),
(3990, 2996, 'no_lang_code', 'name', 'Hokkaido Central Hospital'),
(3991, 2997, 'en', 'name', 'Geisinger Medical Center'),
(3992, 2998, 'en', 'name', 'MedStar Georgetown University Hospital'),
(3993, 2999, 'en', 'name', 'Doctors Hospital'),
(3994, 3000, 'en', 'name', 'Elliot Hospital'),
(3995, 3001, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł…ŪŒŁ„Ų§ŲÆ'),
(3996, 3001, 'no_lang_code', 'name', 'Milad Hospital'),
(3997, 3002, 'en', 'name', 'Dwight D. Eisenhower VA Medical Center'),
(3998, 3003, 'en', 'name', 'First Affiliated Hospital of Chengdu Medical College'),
(3999, 3003, 'zh', 'name', 'ęˆéƒ½åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(4000, 3004, 'en', 'name', 'National Maternity Hospital'),
(4001, 3005, 'en', 'name', 'Kobe Children''s Hospital'),
(4002, 3005, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(4003, 3006, 'it', 'name', 'Ospedale G.B. Morgagni - L.Pierantoni'),
(4004, 3007, 'en', 'name', 'Luodong Poh-Ai Hospital'),
(4005, 3007, 'zh', 'name', 'ē¾…ę±åšę„›é†«é™¢'),
(4006, 3008, 'en', 'name', 'Cone Health'),
(4007, 3009, 'en', 'name', 'Shigei Medical Research Institute'),
(4008, 3009, 'ja', 'name', 'é‡äŗ•åŒ»å­¦ē ”ē©¶ę‰€'),
(4009, 3010, 'en', 'name', 'Dorothea Dix Hospital'),
(4010, 3011, 'en', 'name', 'Abington Memorial Hospital'),
(4011, 3012, 'en', 'name', 'Center for Information Technology'),
(4012, 3013, 'en', 'name', 'Museum Of Northern Arizona'),
(4013, 3014, 'en', 'name', 'Motilal Nehru Medical College'),
(4014, 3015, 'en', 'name', 'Agency for Healthcare Research and Quality'),
(4015, 3016, 'en', 'name', 'Guangdong General Hospital'),
(4016, 3016, 'zh', 'name', 'å¹æäøœēœč€å¹“åŒ»å­¦ē ”ē©¶ę‰€'),
(4017, 3017, 'cy', 'name', 'Ysbyty Glan Clwyd'),
(4018, 3017, 'en', 'name', 'Glan Clwyd Hospital'),
(4019, 3018, 'pt', 'name', 'Instituto de Soldadura e Qualidade'),
(4020, 3019, 'pt', 'name', 'Hospital da Luz'),
(4021, 3020, 'no_lang_code', 'name', 'GlaxoSmithKline (China)');
INSERT INTO `ror_settings` VALUES
(4022, 3021, 'en', 'name', 'University of Agricultural Sciences, Bangalore'),
(4023, 3022, 'pt', 'name', 'Dr. Euryclides Hospital de Jesus Zerbini'),
(4024, 3023, 'de', 'name', 'UniversitƤtskliniken Salzburg'),
(4025, 3024, 'no_lang_code', 'name', 'Lynntech (United States)'),
(4026, 3025, 'no_lang_code', 'name', 'Aphios Corporation'),
(4027, 3026, 'en', 'name', 'The Open University of Japan'),
(4028, 3026, 'ja', 'name', '放送大学'),
(4029, 3027, 'no_lang_code', 'name', 'SNC-Lavalin (Canada)'),
(4030, 3028, 'en', 'name', 'Indiana State Department of Education'),
(4031, 3029, 'en', 'name', 'National Center of Biomedical Analysis'),
(4032, 3029, 'zh', 'name', 'å›½å®¶ē”Ÿē‰©åŒ»å­¦åˆ†ęžäø­åæƒ'),
(4033, 3030, 'en', 'name', 'Friarage Hospital'),
(4034, 3031, 'el', 'name', 'Ī“ĪµĻ‰Ļ€ĪæĪ½Ī¹ĪŗĻŒ Ļ€Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Τιράνων'),
(4035, 3031, 'en', 'name', 'Agricultural University of Tirana'),
(4036, 3031, 'sq', 'name', 'Universiteti Bujqƫsor i Tiranƫs'),
(4037, 3032, 'en', 'name', 'Health South Rehabilitation Hospital'),
(4038, 3033, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦Ŗą§ą¦°ą¦¾ą¦£ą§€ ও ą¦®ą§Žą¦øą§ą¦Æą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(4039, 3033, 'en', 'name', 'West Bengal University of Animal and Fishery Sciences'),
(4040, 3033, 'hi', 'name', 'ą¤Ŗą¤¶ą„ą¤šą¤æą¤® बंगाल ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤ą¤µą¤‚ ą¤Ŗą¤¶ą„ą¤Ŗą¤¾ą¤²ą¤Ø ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(4041, 3034, 'en', 'name', 'National Institute of Statistical Sciences'),
(4042, 3035, 'en', 'name', 'Iwakuni Medical Center'),
(4043, 3035, 'ja', 'name', 'å²©å›½åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4044, 3036, 'en', 'name', 'University of Southern Maine'),
(4045, 3037, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© العرب Ų§Ł„Ų·ŲØŁŠŲ©'),
(4046, 3037, 'en', 'name', 'Al-Arab Medical University'),
(4047, 3038, 'en', 'name', 'Genome Research Foundation'),
(4048, 3039, 'en', 'name', 'Pondicherry Institute of Medical Sciences'),
(4049, 3040, 'en', 'name', 'New Jersey Department of Health'),
(4050, 3040, 'es', 'name', 'Departamento de Salud y Servicios para las Personas Mayores del Estado de Nueva Jersey'),
(4051, 3041, 'en', 'name', 'Herttoniemi Hospital'),
(4052, 3042, 'en', 'name', 'MRC Unit for Lifelong Health and Ageing'),
(4053, 3043, 'en', 'name', 'Inova Alexandria Hospital'),
(4054, 3044, 'no_lang_code', 'name', 'MPC Computers (United States)'),
(4055, 3045, 'bn', 'name', 'আলিগঔ় মুসলিম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(4056, 3045, 'en', 'name', 'Aligarh Muslim University'),
(4057, 3045, 'fr', 'name', 'UniversitƩ musulmane d''aligarh'),
(4058, 3045, 'hi', 'name', 'ą¤…ą¤²ą„€ą¤—ą¤¢ą¤¼ ą¤®ą„ą¤øą„ą¤²ą¤æą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(4059, 3045, 'kn', 'name', 'ą²…ą²²ą²æą²˜ą²°ą³ ą²®ą³ą²øą³ą²²ą²æą²®ą³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(4060, 3045, 'ml', 'name', 'ą“…ą“²ą“æą“—ą“¢ąµ ą“®ąµą“øąµą“²ą“æą“‚ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(4061, 3045, 'pa', 'name', 'ąØ…ąØ²ą©€ąØ—ą©œ ਮੁਸਲਿਮ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(4062, 3045, 'ta', 'name', 'ą®…ą®²ą®æą®•ą®¾ą®°ąÆ ą®®ąÆą®øąÆą®²ą®æą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(4063, 3045, 'te', 'name', 'ą°…ą°²ą±€ą°˜ą°°ą± ą°®ą±ą°øą±ą°²ą°æą°‚ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(4064, 3045, 'ur', 'name', 'جامعہ Ų¹Ł„ŪŒ گڑھ'),
(4065, 3046, 'en', 'name', 'MedStar Good Samaritan Hospital'),
(4066, 3047, 'de', 'name', 'UniversitƤtsklinikum Magdeburg'),
(4067, 3047, 'en', 'name', 'University Hospital Magdeburg'),
(4068, 3048, 'fr', 'name', 'Centre Hospitalier Universitaire Hassan II'),
(4069, 3049, 'en', 'name', 'Marianjoy Rehabilitation Hospital'),
(4070, 3050, 'en', 'name', 'Morristown Medical Center'),
(4071, 3051, 'en', 'name', 'Nebraska Department of Health and Human Services'),
(4072, 3052, 'en', 'name', 'Lehman College'),
(4073, 3053, 'en', 'name', 'Aichi University of Education'),
(4074, 3053, 'ja', 'name', 'ę„›ēŸ„ę•™č‚²å¤§å­¦'),
(4075, 3054, 'tr', 'name', 'Izmir Atatürk Eğitim ve Araştırma Hastanesi'),
(4076, 3055, 'en', 'name', 'Lahey Hospital and Medical Center'),
(4077, 3056, 'en', 'name', 'Derbyshire Children''s Hospital'),
(4078, 3057, 'en', 'name', 'Amala Institute of Medical Sciences'),
(4079, 3057, 'ml', 'name', 'ą“…ą“®ą“² ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“Ÿąµą“Ÿąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“øą“Æąµ»ą“øą“øąµ'),
(4080, 3058, 'en', 'name', 'Hokushin General Hospital'),
(4081, 3058, 'ja', 'name', 'åŒ—äæ”ē·åˆē—…é™¢'),
(4082, 3059, 'en', 'name', 'King County Medical Examiner''s Office'),
(4083, 3060, 'en', 'name', 'Hangzhou Red Cross Hospital'),
(4084, 3060, 'zh', 'name', 'ę­å·žåø‚ēŗ¢åå­—ä¼šåŒ»é™¢'),
(4085, 3061, 'en', 'name', 'Mater Health Services'),
(4086, 3062, 'no_lang_code', 'name', 'Blackberry (Canada)'),
(4087, 3063, 'en', 'name', 'University of Wisconsin–Eau Claire'),
(4088, 3063, 'fr', 'name', 'UniversitƩ du Wisconsin Ơ Eau Claire'),
(4089, 3064, 'en', 'name', 'Metropolitan State University of Denver'),
(4090, 3065, 'en', 'name', 'MSPCA-Angell'),
(4091, 3066, 'en', 'name', 'Minnesota State University Moorhead'),
(4092, 3066, 'fr', 'name', 'UniversitĆ© d''Ɖtat du minnesota'),
(4093, 3067, 'de', 'name', 'Europäisches Laboratorium für Molekularbiologie'),
(4094, 3067, 'en', 'name', 'European Molecular Biology Laboratory'),
(4095, 3068, 'en', 'name', 'Lyndon Baines Johnson Hospital'),
(4096, 3069, 'es', 'name', 'Hospital San Juan de Dios'),
(4097, 3070, 'it', 'name', 'Ospedale Cannizzaro'),
(4098, 3071, 'no_lang_code', 'name', 'Arthur D. Little (Czechia)'),
(4099, 3072, 'en', 'name', 'HCI International Medical Centre'),
(4100, 3073, 'en', 'name', 'Ministry of Health Labour and Welfare'),
(4101, 3073, 'ja', 'name', 'åŽšē”ŸåŠ“åƒēœ'),
(4102, 3074, 'en', 'name', 'Charleston Southern University'),
(4103, 3075, 'es', 'name', 'Hospital Montecelo'),
(4104, 3076, 'en', 'name', 'Children''s Hospital at Montefiore'),
(4105, 3077, 'ms', 'name', 'Hospital Kuala Lumpur'),
(4106, 3078, 'en', 'name', 'Awadhesh Pratap Singh University'),
(4107, 3078, 'hi', 'name', 'ą¤…ą¤µą¤§ą„‡ą¤¶ ą¤Ŗą„ą¤°ą¤¤ą¤¾ą¤Ŗ सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(4108, 3079, 'en', 'name', 'South Texas Veterans Health Care System'),
(4109, 3080, 'en', 'name', 'Elmhurst Hospital Center'),
(4110, 3081, 'no_lang_code', 'name', 'Shuguang Hospital'),
(4111, 3082, 'en', 'name', 'Medwin Hospital'),
(4112, 3083, 'en', 'name', 'Anhui Provincial Hospital'),
(4113, 3084, 'it', 'name', 'Ospedale G.F. Ingrassia'),
(4114, 3085, 'no_lang_code', 'name', 'Ricerca sul Sistema Energetico (Italy)'),
(4115, 3086, 'fr', 'name', 'HƓpital Avicenne'),
(4116, 3087, 'es', 'name', 'Hospital Militar Dr. Carlos Arvelo'),
(4117, 3088, 'ja', 'name', 'ęØŖęµœåŠ“ē½ē—…é™¢'),
(4118, 3088, 'no_lang_code', 'name', 'Yokohama Rosai Hospital'),
(4119, 3089, 'fr', 'name', 'HÓpital Mère-Enfant'),
(4120, 3090, 'en', 'name', 'Matsue Red Cross Hospital'),
(4121, 3090, 'ja', 'name', 'ę¾ę±Ÿčµ¤åå­—ē—…é™¢'),
(4122, 3091, 'no_lang_code', 'name', 'Jordanian Universities Network (Jordan)'),
(4123, 3092, 'no_lang_code', 'name', 'Charles River Laboratories (United States)'),
(4124, 3093, 'en', 'name', 'Flushing Hospital Medical Center'),
(4125, 3094, 'en', 'name', 'Houston Health and Human Services Department'),
(4126, 3095, 'en', 'name', 'University of Trinidad and Tobago'),
(4127, 3095, 'es', 'name', 'Universidad de Trinidad y Tobago'),
(4128, 3096, 'en', 'name', 'Queen Elizabeth Hospital'),
(4129, 3097, 'ar', 'name', 'مستؓفى Ų§Ł„Ł‚ŁˆŲ§ŲŖ المسلحة ŲØŲ§Ł„Ų“Ł…Ų§Ł„ŁŠŲ©'),
(4130, 3097, 'en', 'name', 'North West Armed Forces Hospital'),
(4131, 3098, 'en', 'name', 'Centinela Hospital Medical Center'),
(4132, 3099, 'no_lang_code', 'name', 'General Electric (Denmark)'),
(4133, 3100, 'en', 'name', 'National Taiwan University Hospital'),
(4134, 3101, 'en', 'name', 'Shimane University Hospital'),
(4135, 3101, 'ja', 'name', '島根大学病院'),
(4136, 3102, 'en', 'name', 'Alberta Hospital Edmonton'),
(4137, 3103, 'no_lang_code', 'name', 'NovoMedix (United States)'),
(4138, 3104, 'en', 'name', 'Cruces University Hospital'),
(4139, 3104, 'es', 'name', 'Hospital de Cruces'),
(4140, 3105, 'en', 'name', 'Health Net'),
(4141, 3106, 'no_lang_code', 'name', 'Danya International, Inc.'),
(4142, 3107, 'en', 'name', 'Lincoln County Hospital'),
(4143, 3108, 'ms', 'name', 'Hospital Selayang'),
(4144, 3109, 'en', 'name', 'Lanzhou University of Technology'),
(4145, 3109, 'zh', 'name', 'å…°å·žē†å·„å¤§å­¦'),
(4146, 3110, 'tr', 'name', 'Haydarpaşa Numune Eğitim ve Araştırma Hastanesi'),
(4147, 3111, 'en', 'name', 'Fooyin University'),
(4148, 3112, 'en', 'name', 'Dhahran Health Center'),
(4149, 3113, 'en', 'name', 'Kumamoto Health Science University'),
(4150, 3113, 'ja', 'name', 'ē†Šęœ¬äæå„ē§‘å­¦å¤§å­¦'),
(4151, 3114, 'ja', 'name', 'ē„žé‹¼čØ˜åæµē—…é™¢'),
(4152, 3114, 'no_lang_code', 'name', 'Shinko Hospital'),
(4153, 3115, 'en', 'name', 'Asian Institute of Gastroenterology'),
(4154, 3116, 'en', 'name', 'Halton General Hospital'),
(4155, 3117, 'sl', 'name', 'SploŔna BolniŔnica Celje'),
(4156, 3118, 'en', 'name', 'National Academy of Medical Sciences'),
(4157, 3119, 'no_lang_code', 'name', 'Gangneung Asan Hospital'),
(4158, 3120, 'en', 'name', 'Auburn University System'),
(4159, 3121, 'en', 'name', 'Zoological Society of London'),
(4160, 3122, 'en', 'name', 'Alberta Health'),
(4161, 3123, 'it', 'name', 'Azienda Sanitaria Ospedaliera S.Croce e Carle Cuneo'),
(4162, 3124, 'da', 'name', 'Sydvestjysk Sygehus'),
(4163, 3124, 'en', 'name', 'Hospital South West Jutland'),
(4164, 3125, 'en', 'name', 'Fujieda Municipal General Hospital'),
(4165, 3125, 'ja', 'name', 'č—¤ęžåø‚ē«‹ē·åˆē—…é™¢'),
(4166, 3126, 'es', 'name', 'Hospital Can Misses'),
(4167, 3127, 'no_lang_code', 'name', 'Neoleukin Therapeutics (Canada)'),
(4168, 3128, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القاهرة'),
(4169, 3128, 'en', 'name', 'Cairo University'),
(4170, 3128, 'fr', 'name', 'UniversitƩ du Caire'),
(4171, 3129, 'en', 'name', 'MedStar National Rehabilitation Hospital'),
(4172, 3130, 'en', 'name', 'Huizhou University'),
(4173, 3130, 'zh', 'name', 'ęƒ å·žå­¦é™¢'),
(4174, 3131, 'en', 'name', 'South Dakota Foundation for Medical Care'),
(4175, 3132, 'en', 'name', 'Haga Hospital'),
(4176, 3132, 'nl', 'name', 'HagaZiekenhuis'),
(4177, 3133, 'en', 'name', 'Ibaraki Prefectural Central Hospital'),
(4178, 3133, 'ja', 'name', 'čŒØåŸŽēœŒē«‹äø­å¤®ē—…é™¢'),
(4179, 3134, 'sv', 'name', 'Capio Lundby Sjukhus'),
(4180, 3135, 'ja', 'name', 'ēŸ³å·»å°‚äæ®å¤§å­¦'),
(4181, 3135, 'no_lang_code', 'name', 'Ishinomaki Senshu University'),
(4182, 3136, 'es', 'name', 'Universidad Centroccidental Lisandro Alvarado'),
(4183, 3137, 'en', 'name', 'Dayton VA Medical Center'),
(4184, 3138, 'en', 'name', 'Korea National University of Transportation'),
(4185, 3138, 'ko', 'name', 'ķ•œźµ­źµķ†µėŒ€ķ•™źµ'),
(4186, 3139, 'en', 'name', 'Heilongjiang Provincial Hospital'),
(4187, 3139, 'zh', 'name', 'é»‘é¾™ę±ŸēœåŒ»é™¢'),
(4188, 3140, 'en', 'name', 'Hirosaki National Hospital'),
(4189, 3140, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å¼˜å‰ē—…é™¢'),
(4190, 3141, 'el', 'name', '΄γεία'),
(4191, 3141, 'no_lang_code', 'name', 'Hygeia Hospital'),
(4192, 3142, 'en', 'name', 'Dong-A University'),
(4193, 3142, 'ko', 'name', 'ė™ģ•„ėŒ€ķ•™źµ'),
(4194, 3143, 'en', 'name', 'Duran i Reynals Hospital'),
(4195, 3144, 'pt', 'name', 'Hospital of St. Francis Xavier'),
(4196, 3145, 'en', 'name', 'Little Company of Mary Hospital'),
(4197, 3146, 'no_lang_code', 'name', 'Photon Imaging (United States)'),
(4198, 3147, 'en', 'name', 'Idaho Department of Health and Welfare'),
(4199, 3148, 'en', 'name', 'Robert Morris University'),
(4200, 3148, 'es', 'name', 'Universidad Robert Morris'),
(4201, 3149, 'de', 'name', 'Israelitisches Krankenhaus'),
(4202, 3150, 'en', 'name', 'Ministry of Health'),
(4203, 3150, 'id', 'name', 'Kementerian Kesehatan'),
(4204, 3151, 'en', 'name', 'King Edward VIII Hospital'),
(4205, 3152, 'en', 'name', 'Syrian-Lebanese Hospital'),
(4206, 3152, 'pt', 'name', 'Hospital SĆ­rio-LibanĆŖs'),
(4207, 3153, 'en', 'name', 'Institute of Occupational Medicine'),
(4208, 3154, 'en', 'name', 'Cambridge Hospital'),
(4209, 3155, 'en', 'name', 'Saint Alphonsus Regional Medical Center'),
(4210, 3156, 'en', 'name', 'Bronovo Hospital'),
(4211, 3156, 'nl', 'name', 'Bronovo Ziekenhuis'),
(4212, 3157, 'en', 'name', 'Tulane Lakeside Hospital'),
(4213, 3158, 'en', 'name', 'Monmouth College'),
(4214, 3159, 'en', 'name', 'Northampton General Hospital'),
(4215, 3160, 'en', 'name', 'Day General Hospital'),
(4216, 3160, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† دی'),
(4217, 3161, 'en', 'name', 'Good Samaritan Hospital'),
(4218, 3162, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ© بالقاهرة'),
(4219, 3162, 'en', 'name', 'German University in Cairo'),
(4220, 3163, 'en', 'name', 'Children''s Hospital Zagreb'),
(4221, 3163, 'hr', 'name', 'Klinika za Djecje bolesti Zagreb'),
(4222, 3164, 'en', 'name', 'Aga Khan University Hospital Nairobi'),
(4223, 3165, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹äø­å¤®ē—…é™¢'),
(4224, 3165, 'no_lang_code', 'name', 'Shimane Prefectural Central Hospital'),
(4225, 3166, 'en', 'name', 'Royal Victoria Hospital'),
(4226, 3167, 'en', 'name', 'Ivanovo State University'),
(4227, 3167, 'ru', 'name', 'Ивановский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4228, 3168, 'en', 'name', 'Armstrong Atlantic State University'),
(4229, 3169, 'en', 'name', 'University of South Carolina System'),
(4230, 3170, 'en', 'name', 'Maryland State Medical Society'),
(4231, 3171, 'en', 'name', 'Carraway Methodist Medical Center'),
(4232, 3172, 'it', 'name', 'Ospedale L. Bonomo'),
(4233, 3173, 'en', 'name', 'Lancaster General Hospital'),
(4234, 3174, 'en', 'name', 'Kawasaki University of Medical Welfare'),
(4235, 3174, 'ja', 'name', 'å·å“ŽåŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(4236, 3175, 'en', 'name', 'Queen Elizabeth II Hospital'),
(4237, 3176, 'it', 'name', 'Ospedale Bassini'),
(4238, 3177, 'en', 'name', 'St Mary''s Hospital'),
(4239, 3177, 'fr', 'name', 'Centre hospitalier de St- Mary'),
(4240, 3178, 'en', 'name', 'Asan Medical Center'),
(4241, 3178, 'ko', 'name', 'ģ„œģšøģ•„ģ‚°ė³‘ģ›'),
(4242, 3179, 'en', 'name', 'VA NY Harbor Healthcare System'),
(4243, 3180, 'en', 'name', 'Second Affiliated Hospital of Harbin Medical University'),
(4244, 3181, 'en', 'name', 'HealthPartners'),
(4245, 3182, 'no_lang_code', 'name', 'Kwong Wah Hospital'),
(4246, 3182, 'zh', 'name', 'å»£čÆé†«é™¢'),
(4247, 3183, 'fr', 'name', 'Centre Hospitalier Universitaire Ibn Rochd'),
(4248, 3184, 'en', 'name', 'Hallym University'),
(4249, 3184, 'ko', 'name', 'ķ•œė¦¼ėŒ€ķ•™źµ'),
(4250, 3185, 'en', 'name', 'Hitachi General Hospital'),
(4251, 3185, 'ja', 'name', 'ę—„ē«‹ē·åˆē—…é™¢'),
(4252, 3186, 'en', 'name', 'Royal Orthopaedic Hospital'),
(4253, 3187, 'en', 'name', 'University of SĆ£o Paulo Faculty of Medicine Clinics Hospital'),
(4254, 3187, 'pt', 'name', 'Hospital das ClĆ­nicas da Faculdade de Medicina da Universidade de SĆ£o Paulo'),
(4255, 3188, 'en', 'name', 'Showa Women''s University'),
(4256, 3188, 'ja', 'name', 'ę˜­å’Œå„³å­å¤§å­¦'),
(4257, 3189, 'en', 'name', 'Rockefeller Foundation'),
(4258, 3190, 'en', 'name', 'BC Cancer Agency'),
(4259, 3191, 'en', 'name', 'Kazan State Technological University'),
(4260, 3191, 'ru', 'name', 'Казанский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(4261, 3192, 'en', 'name', 'Inouye Eye Hospital'),
(4262, 3192, 'ja', 'name', 'äŗ•äøŠēœ¼ē§‘ē—…é™¢'),
(4263, 3193, 'en', 'name', 'Point Blue Conservation Science'),
(4264, 3194, 'en', 'name', 'Genesys Regional Medical Center'),
(4265, 3195, 'en', 'name', 'Kagoshima University'),
(4266, 3195, 'ja', 'name', '鹿児島大学'),
(4267, 3196, 'en', 'name', 'University of Mobile'),
(4268, 3196, 'fr', 'name', 'UniversitƩ de mobile'),
(4269, 3197, 'en', 'name', 'Ottawa County Health Department'),
(4270, 3198, 'es', 'name', 'Hospital General Universitario De Valencia'),
(4271, 3199, 'en', 'name', 'International Women''s Health Coalition'),
(4272, 3200, 'en', 'name', 'First Affiliated Hospital of Anhui Medical University'),
(4273, 3201, 'en', 'name', 'Rancho Los Amigos National Rehabilitation Center'),
(4274, 3202, 'en', 'name', 'Substance Abuse and Mental Health Services Administration'),
(4275, 3203, 'no_lang_code', 'name', 'Hypres (United States)'),
(4276, 3204, 'ro', 'name', 'Spitalul Clinic de Urgenta Sfantul Ioan'),
(4277, 3205, 'en', 'name', 'Regional Medical Center'),
(4278, 3206, 'en', 'name', 'Public Health Foundation Enterprises'),
(4279, 3207, 'en', 'name', 'Rampton Hospital'),
(4280, 3208, 'en', 'name', 'Shandong Eye Institute & Hospital'),
(4281, 3208, 'zh', 'name', 'å±±äøœēœēœ¼ē§‘ē ”ē©¶ę‰€é’å²›äøŽåŒ»é™¢'),
(4282, 3209, 'en', 'name', 'University of the Philippines Diliman'),
(4283, 3210, 'en', 'name', 'Ohio Department of Mental Health & Addiction Services'),
(4284, 3211, 'en', 'name', 'Rex Hospital'),
(4285, 3212, 'it', 'name', 'Azienda Ospedaliera Universitaria Policlinico "G. Martino"'),
(4286, 3213, 'es', 'name', 'Hospital Vega Baja'),
(4287, 3214, 'en', 'name', 'Odisha University of Agriculture and Technology'),
(4288, 3214, 'ne', 'name', 'उऔिसा ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(4289, 3215, 'en', 'name', 'American Type Culture Collection'),
(4290, 3216, 'en', 'name', 'Meikai University'),
(4291, 3216, 'ja', 'name', 'ę˜Žęµ·å¤§å­¦'),
(4292, 3217, 'el', 'name', 'Σισμανόγλειο-Αμαλία Φλέμινγκ Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(4293, 3217, 'en', 'name', 'Simanogleio-Amalia Fleming General Hospital'),
(4294, 3218, 'en', 'name', 'Western Oklahoma State College'),
(4295, 3219, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بنها'),
(4296, 3219, 'en', 'name', 'Benha University'),
(4297, 3219, 'fr', 'name', 'UniversitƩ de Banha'),
(4298, 3220, 'en', 'name', 'Geha Mental Health Center'),
(4299, 3220, 'he', 'name', '×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש גהה'),
(4300, 3221, 'en', 'name', 'Sachs'' Children and Youth Hospital'),
(4301, 3222, 'en', 'name', 'Narayan Medical College and Hospital'),
(4302, 3223, 'en', 'name', 'University of Life Sciences in Poznań'),
(4303, 3223, 'pl', 'name', 'Uniwersytet Przyrodniczy w Poznaniu'),
(4304, 3224, 'en', 'name', 'Fairfield General Hospital'),
(4305, 3225, 'en', 'name', 'Hunan Entry-Exit Inspection and Quarantine Bureau'),
(4306, 3226, 'en', 'name', 'Alexian Brothers Medical Center'),
(4307, 3227, 'en', 'name', 'Earthquake Engineering Research Institute'),
(4308, 3228, 'en', 'name', 'Damghan University'),
(4309, 3228, 'fa', 'name', 'دانؓگاه دامغان'),
(4310, 3229, 'en', 'name', 'Moses Taylor Hospital'),
(4311, 3230, 'no_lang_code', 'name', 'Metaxa Hospital'),
(4312, 3231, 'en', 'name', 'Central University Hospital of Asturias'),
(4313, 3232, 'en', 'name', 'National Interuniversity Consortium for Informatics'),
(4314, 3232, 'it', 'name', 'Consorzio Interuniversitario Nazionale per l''Informatica'),
(4315, 3233, 'en', 'name', 'MRC University of Glasgow Centre for Virus Research'),
(4316, 3234, 'en', 'name', 'County Durham and Darlington NHS Foundation Trust'),
(4317, 3235, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© تكساس أي اند Ų„Ł…'),
(4318, 3235, 'en', 'name', 'Texas A&M University at Qatar'),
(4319, 3236, 'en', 'name', 'Cappagh National Orthopaedic Hospital'),
(4320, 3237, 'en', 'name', 'Osaka Bio Headquarters'),
(4321, 3238, 'en', 'name', 'Kitasato University Medical Center'),
(4322, 3238, 'ja', 'name', 'åŒ—é‡Œå¤§å­¦ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(4323, 3239, 'en', 'name', 'AtlantiCare'),
(4324, 3240, 'hr', 'name', 'Klinički bolnički centar Osijek'),
(4325, 3241, 'no_lang_code', 'name', 'Ichor Medical Systems (United States)'),
(4326, 3242, 'ja', 'name', 'ę—­å·å¤§å­¦'),
(4327, 3242, 'no_lang_code', 'name', 'Asahikawa University'),
(4328, 3243, 'en', 'name', 'San Francicso Brain Research Institute & SAM Technology'),
(4329, 3244, 'en', 'name', 'Beijing Dao Pei Hospital'),
(4330, 3244, 'zh', 'name', 'åŒ—äŗ¬é“åŸ¹åŒ»é™¢'),
(4331, 3245, 'en', 'name', 'Shanghai Tenth People''s Hospital'),
(4332, 3245, 'zh', 'name', 'äøŠęµ·ē¬¬åäŗŗę°‘åŒ»é™¢'),
(4333, 3246, 'en', 'name', 'Batra Hospital and Medical Research Centre'),
(4334, 3247, 'en', 'name', 'Nagara Medical Center'),
(4335, 3247, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹é•·č‰ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4336, 3248, 'en', 'name', 'Missouri Western State University'),
(4337, 3249, 'no_lang_code', 'name', 'Maxwell Sensors'),
(4338, 3250, 'en', 'name', 'Duke Children''s Hospital & Health Center'),
(4339, 3251, 'en', 'name', 'Transport for London'),
(4340, 3252, 'en', 'name', 'Hayatabad Medical Complex'),
(4341, 3253, 'en', 'name', 'Ministry of Health and Social Welfare'),
(4342, 3254, 'fr', 'name', 'HƓpital Saint-Vincent-de-Paul'),
(4343, 3255, 'ja', 'name', 'äø­å›½åŠ“ē½ē—…é™¢'),
(4344, 3255, 'no_lang_code', 'name', 'Chugoku Rosai Hospital'),
(4345, 3256, 'en', 'name', 'Ziauddin University'),
(4346, 3257, 'de', 'name', 'UniversitƤtsklinikum Freiburg'),
(4347, 3257, 'en', 'name', 'University Medical Center Freiburg'),
(4348, 3258, 'en', 'name', 'Hospital for Special Care'),
(4349, 3259, 'en', 'name', 'Einstein Medical Center Philadelphia'),
(4350, 3260, 'en', 'name', 'Beijing Sport University'),
(4351, 3260, 'zh', 'name', 'åŒ—äŗ¬ä½“č‚²å¤§å­¦'),
(4352, 3261, 'en', 'name', 'Army Medical College'),
(4353, 3262, 'es', 'name', 'El Hospital General de Agudos Carlos G. Durand'),
(4354, 3263, 'no_lang_code', 'name', 'Molecular GPS Technologies (United States)'),
(4355, 3264, 'en', 'name', 'Alta Bates Summit Medical Center'),
(4356, 3265, 'en', 'name', 'Brigham and Women''s Faulkner Hospital'),
(4357, 3266, 'en', 'name', 'Adventist University of Health Sciences'),
(4358, 3267, 'en', 'name', 'Rega Institute for Medical Research'),
(4359, 3268, 'en', 'name', 'Bendigo Health'),
(4360, 3269, 'no_lang_code', 'name', 'Yibin University'),
(4361, 3270, 'en', 'name', 'Mater Private Hospital'),
(4362, 3271, 'bg', 'name', 'Университетска Š°ŠŗŃƒŃˆŠµŃ€Š¾-гинекологична болница ā€œŠœŠ°Š¹Ń‡ŠøŠ½ Š“Š¾Š¼ā€'),
(4363, 3271, 'no_lang_code', 'name', 'Maichin Dom'),
(4364, 3272, 'en', 'name', 'Jessop Hospital'),
(4365, 3273, 'no_lang_code', 'name', 'Southwest Sciences (United States)'),
(4366, 3274, 'en', 'name', 'Eginition Hospital'),
(4367, 3275, 'en', 'name', 'Sema Hospital'),
(4368, 3275, 'tr', 'name', 'Sema Hastanesi'),
(4369, 3276, 'en', 'name', 'Hamilton Medical Center'),
(4370, 3277, 'no_lang_code', 'name', 'Barron Associates (United States)'),
(4371, 3278, 'no_lang_code', 'name', 'Beijing HuiLongGuan Hospital'),
(4372, 3278, 'zh', 'name', 'åŒ—äŗ¬å›žé¾™č§‚åŒ»é™¢'),
(4373, 3279, 'de', 'name', 'Vereinigte Stahlhütten Burbach-Eich-Düdelingen'),
(4374, 3279, 'lb', 'name', 'AciƩries RƩunies de Burbach-Eich-Dudelange'),
(4375, 3279, 'no_lang_code', 'name', 'Arbed (Luxembourg)'),
(4376, 3280, 'en', 'name', 'National Eye Institute'),
(4377, 3281, 'no_lang_code', 'name', 'Anandaban Hospital'),
(4378, 3282, 'no_lang_code', 'name', 'Novelis (Canada)'),
(4379, 3283, 'en', 'name', 'North Medical Center'),
(4380, 3283, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹åŒ»ē§‘å¤§å­¦é™„å±žåŒ—éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4381, 3284, 'en', 'name', 'Milpark Hospital'),
(4382, 3285, 'en', 'name', 'Mount Carmel Health'),
(4383, 3286, 'en', 'name', 'Pacific Northwest Diabetes Research Institute'),
(4384, 3287, 'en', 'name', 'Central China Normal University'),
(4385, 3287, 'zh', 'name', 'åŽäø­åøˆčŒƒå¤§å­¦'),
(4386, 3288, 'no_lang_code', 'name', 'Sant Parmanand Hospital'),
(4387, 3289, 'de', 'name', 'Bundesanstalt für Materialforschung und -prüfung'),
(4388, 3289, 'en', 'name', 'Federal Institute For Materials Research and Testing'),
(4389, 3290, 'en', 'name', 'Lady Hardinge Medical College'),
(4390, 3291, 'el', 'name', 'ĪĪ±Ļ…Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(4391, 3291, 'en', 'name', 'Athens Naval & Veterans Hospital'),
(4392, 3292, 'en', 'name', 'Kansai University'),
(4393, 3292, 'ja', 'name', '関脿大学'),
(4394, 3293, 'en', 'name', 'Toyama Prefectural University'),
(4395, 3293, 'ja', 'name', 'åÆŒå±±ēœŒē«‹å¤§å­¦'),
(4396, 3294, 'ar', 'name', 'وزارة الصحة'),
(4397, 3294, 'en', 'name', 'Ministry of Health'),
(4398, 3295, 'en', 'name', 'Central State University'),
(4399, 3296, 'en', 'name', 'Chongqing Emergency Medical Center'),
(4400, 3296, 'zh', 'name', 'é‡åŗ†åø‚ę€„ę•‘åŒ»ē–—äø­åæƒ'),
(4401, 3297, 'en', 'name', 'Cleveland Clinic'),
(4402, 3298, 'en', 'name', 'Central Police University'),
(4403, 3299, 'en', 'name', 'Bombay Hospital'),
(4404, 3300, 'en', 'name', 'Nebraska Wesleyan University'),
(4405, 3301, 'en', 'name', 'Shizuoka Medical Center'),
(4406, 3301, 'ja', 'name', 'é™å²”åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4407, 3302, 'en', 'name', 'Wakasa History and Folklore Museum'),
(4408, 3302, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹ č‹„ē‹­ę­“å²åšē‰©é¤Ø'),
(4409, 3303, 'en', 'name', 'Nicolae Testemițanu State University of Medicine and Pharmacy'),
(4410, 3303, 'ro', 'name', 'Universitatea de Medicină și Farmacie Nicolae Testemițanu din Chișinău'),
(4411, 3303, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ меГицины Šø фармакологии имени ŠŠøŠŗŠ¾Š»Š°Ń Š¢ŠµŃŃ‚ŠµŠ¼ŠøŃ†ŃŠ½Ńƒ'),
(4412, 3304, 'ja', 'name', 'ę¹˜å—éŽŒå€‰ē·åˆē—…é™¢'),
(4413, 3304, 'no_lang_code', 'name', 'Shonan Kamakura General Hospital'),
(4414, 3305, 'en', 'name', 'HyvinkƤƤ Hospital'),
(4415, 3306, 'tr', 'name', 'Gƶztepe Şafak Hastanesi'),
(4416, 3307, 'en', 'name', 'Infectious Disease Research Institute'),
(4417, 3308, 'it', 'name', 'Ospedale Santa Maria della Misericordia di Rovigo'),
(4418, 3309, 'en', 'name', 'Matsushita Memorial Hospital'),
(4419, 3309, 'ja', 'name', 'ę¾äø‹čØ˜åæµē—…é™¢'),
(4420, 3310, 'en', 'name', 'University of Wisconsin System'),
(4421, 3310, 'es', 'name', 'Sistema Universitario de Wisconsin'),
(4422, 3310, 'fr', 'name', 'UniversitƩ du Wisconsin'),
(4423, 3311, 'es', 'name', 'Hospital AlemƔn'),
(4424, 3312, 'en', 'name', 'Alice Springs Hospital'),
(4425, 3313, 'en', 'name', 'University of Findlay'),
(4426, 3314, 'fr', 'name', 'Centre Hospitalier National Universitaire de Fann'),
(4427, 3315, 'en', 'name', 'Center for Interuniversity Research and Analysis on Organizations'),
(4428, 3316, 'en', 'name', 'Institute of Child Health'),
(4429, 3317, 'no_lang_code', 'name', 'Ansaldo (Italy)'),
(4430, 3318, 'no_lang_code', 'name', 'Renji Hospital'),
(4431, 3318, 'zh', 'name', 'äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žä»ęµŽåŒ»é™¢'),
(4432, 3319, 'en', 'name', 'University of Suwon'),
(4433, 3319, 'ko', 'name', 'ģˆ˜ģ›ėŒ€ķ•™źµ'),
(4434, 3320, 'en', 'name', 'Electronics and Telecommunications Research Institute'),
(4435, 3320, 'ko', 'name', 'ķ•œźµ­ģ „ģžķ†µģ‹ ģ—°źµ¬ģ›'),
(4436, 3321, 'en', 'name', 'Kasumigaura Medical Center'),
(4437, 3321, 'ja', 'name', 'éœžćƒ¶ęµ¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4438, 3322, 'en', 'name', 'North Shore Hospital'),
(4439, 3323, 'no_lang_code', 'name', '3C Institute'),
(4440, 3324, 'en', 'name', 'Mysore Medical College'),
(4441, 3325, 'it', 'name', 'Ospedale Regina Apostolorum'),
(4442, 3326, 'ko', 'name', 'ė¶„ė‹¹ģ œģƒė³‘ģ›'),
(4443, 3326, 'no_lang_code', 'name', 'Bundang Jesaeng Hospital'),
(4444, 3327, 'en', 'name', 'University of San Simón'),
(4445, 3327, 'es', 'name', 'Universidad Mayor de San Simón'),
(4446, 3328, 'en', 'name', 'Dewsbury and District Hospital'),
(4447, 3329, 'de', 'name', 'Lindenhofspital'),
(4448, 3330, 'es', 'name', 'Hospital Materno-Infantil'),
(4449, 3331, 'en', 'name', 'Women & Infants Hospital of Rhode Island'),
(4450, 3332, 'en', 'name', 'Frenchay Hospital'),
(4451, 3333, 'en', 'name', 'Princess Margaret Cancer Centre'),
(4452, 3334, 'ja', 'name', 'ē„žęˆøęœę—„ē—…é™¢'),
(4453, 3334, 'no_lang_code', 'name', 'Kobe Asahi Hospital'),
(4454, 3335, 'it', 'name', 'Consorzio Universitario In Ingegneria Della Qualita'),
(4455, 3336, 'en', 'name', 'Horton General Hospital'),
(4456, 3337, 'en', 'name', 'Easton Hospital'),
(4457, 3338, 'en', 'name', 'Kyoto University of Education'),
(4458, 3338, 'ja', 'name', 'äŗ¬éƒ½ę•™č‚²å¤§å­¦'),
(4459, 3339, 'en', 'name', 'London Chest Hospital'),
(4460, 3340, 'en', 'name', 'Population Council'),
(4461, 3341, 'en', 'name', 'Luton and Dunstable University Hospital NHS Foundation Trust'),
(4462, 3342, 'en', 'name', 'Good Samaritan Hospital'),
(4463, 3343, 'en', 'name', 'University Teaching Hospital'),
(4464, 3344, 'no_lang_code', 'name', 'Bikur Cholim Hospital'),
(4465, 3345, 'en', 'name', 'Kingston General Hospital'),
(4466, 3345, 'fr', 'name', 'HƓpital gƩnƩral de kingston'),
(4467, 3346, 'bg', 'name', 'Технически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Варна'),
(4468, 3346, 'en', 'name', 'Technical University of Varna'),
(4469, 3347, 'en', 'name', 'Hanwa Memorial Hospital'),
(4470, 3347, 'ja', 'name', 'é˜Ŗå’ŒčØ˜åæµē—…é™¢'),
(4471, 3348, 'en', 'name', 'University of Arkansas at Pine Bluff'),
(4472, 3348, 'fr', 'name', 'UniversitƩ de l''arkansas Ơ pine bluff'),
(4473, 3349, 'en', 'name', 'Randolph–Macon College'),
(4474, 3350, 'en', 'name', 'WellStar Kennestone Hospital'),
(4475, 3351, 'en', 'name', 'Macclesfield District General Hospital'),
(4476, 3352, 'en', 'name', 'University Hospital of Ioannina'),
(4477, 3353, 'en', 'name', 'AcademyHealth'),
(4478, 3354, 'en', 'name', 'Fields Institute for Research in Mathematical Sciences'),
(4479, 3355, 'en', 'name', 'Nishinomiya Kyoritsu Neurosurgical Hospital'),
(4480, 3355, 'ja', 'name', 'č„æå®®å”ē«‹č„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(4481, 3356, 'de', 'name', 'Klinikum im Friedrichshain'),
(4482, 3357, 'en', 'name', 'Tohoku Medical Megabank Organization'),
(4483, 3357, 'ja', 'name', 'ę±åŒ—ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ćƒ»ćƒ”ć‚¬ćƒćƒ³ć‚Æę©Ÿę§‹'),
(4484, 3358, 'en', 'name', 'Liverpool Hospital'),
(4485, 3359, 'en', 'name', 'La Jolla Institute For Molecular Medicine'),
(4486, 3360, 'en', 'name', 'Guglielmo da Saliceto Hospital'),
(4487, 3361, 'en', 'name', 'Austral University'),
(4488, 3361, 'es', 'name', 'Universidad Austral'),
(4489, 3362, 'en', 'name', 'Mercy Medical Center'),
(4490, 3363, 'ja', 'name', 'ē·“é¦¬ē·åˆē—…é™¢'),
(4491, 3363, 'no_lang_code', 'name', 'Nerima General Hospital'),
(4492, 3364, 'en', 'name', 'Saint Ambrose University'),
(4493, 3364, 'fr', 'name', 'UniversitƩ saint ambroise'),
(4494, 3365, 'en', 'name', 'B.J. Medical College'),
(4495, 3366, 'en', 'name', 'Delaware Department of Health and Social Services'),
(4496, 3367, 'en', 'name', 'University of Cartagena'),
(4497, 3367, 'es', 'name', 'Universidad de Cartagena'),
(4498, 3368, 'pt', 'name', 'Hospital de SĆ£o Marcos'),
(4499, 3369, 'en', 'name', 'Community Health Network'),
(4500, 3370, 'en', 'name', 'Pennington Biomedical Research Center'),
(4501, 3371, 'no_lang_code', 'name', 'Starlab Barcelona Sl'),
(4502, 3372, 'no_lang_code', 'name', 'Senvion SE (Germany)'),
(4503, 3373, 'en', 'name', 'Istanbul Memorial Hospital'),
(4504, 3374, 'en', 'name', 'Santobono Children''s Hospital'),
(4505, 3375, 'ja', 'name', 'ēŠ¬å±±äø­å¤®ē—…é™¢'),
(4506, 3375, 'no_lang_code', 'name', 'Inuyama Chuo Hospital'),
(4507, 3376, 'en', 'name', 'Borough of Manhattan Community College'),
(4508, 3377, 'fr', 'name', 'Centre Hospitalier de Saint Jean de Dieu'),
(4509, 3378, 'en', 'name', 'Samuel Merritt University'),
(4510, 3379, 'en', 'name', 'Skaraborg Hospital'),
(4511, 3379, 'sv', 'name', 'Skaraborgs Sjukhus'),
(4512, 3380, 'hu', 'name', 'Baranya Megyei KórhÔz'),
(4513, 3381, 'en', 'name', 'West China Medical Center of Sichuan University'),
(4514, 3381, 'zh', 'name', 'å››å·å¤§å­¦åŽč„æåŒ»å­¦äø­åæƒ'),
(4515, 3382, 'en', 'name', 'Aomori University'),
(4516, 3382, 'ja', 'name', 'é’ę£®å¤§å­¦'),
(4517, 3383, 'en', 'name', 'G.V. (Sonny) Montgomery VA Medical Center'),
(4518, 3384, 'hi', 'name', 'ą¤›ą¤¤ą„ą¤°ą¤Ŗą¤¤ą¤æ ą¤¶ą¤¾ą¤¹ą„‚ą¤œą„€ महाराज ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(4519, 3384, 'no_lang_code', 'name', 'Chhatrapati Shahu Ji Maharaj University'),
(4520, 3384, 'ta', 'name', 'ą®šą®¤ąÆą®°ą®Ŗą®¤ą®æ ą®·ą®¾ą®•ąÆą®œą®æ ą®®ą®•ą®°ą®¾ą®œąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(4521, 3385, 'da', 'name', 'Skejby Sygehus'),
(4522, 3385, 'en', 'name', 'Aarhus University Hospital'),
(4523, 3386, 'en', 'name', 'North West Regional Hospital'),
(4524, 3387, 'en', 'name', 'University of Houston System'),
(4525, 3388, 'fi', 'name', 'Kainuun keskussairaala'),
(4526, 3389, 'en', 'name', 'Ragas Dental College & Hospital'),
(4527, 3390, 'en', 'name', 'Ecpi University'),
(4528, 3391, 'es', 'name', 'Hospital Universitario Lucus Augusti'),
(4529, 3392, 'de', 'name', 'Institut für Rundfunktechnik'),
(4530, 3393, 'en', 'name', 'Korea Basic Science Institute'),
(4531, 3394, 'en', 'name', 'Setsunan University'),
(4532, 3394, 'ja', 'name', 'ę‘‚å—å¤§å­¦'),
(4533, 3395, 'en', 'name', 'University of Florida Health Science Center'),
(4534, 3396, 'en', 'name', 'China Three Gorges University'),
(4535, 3396, 'zh', 'name', '三峔大学'),
(4536, 3397, 'no_lang_code', 'name', 'Olympus (Australia)'),
(4537, 3398, 'ja', 'name', 'é–¢ę±å­¦é™¢å¤§å­¦'),
(4538, 3398, 'no_lang_code', 'name', 'Kanto Gakuin University'),
(4539, 3399, 'en', 'name', 'Bhumibol Adulyadej Hospital'),
(4540, 3399, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø ąø¹ąø”ąø“ąøžąø„ąø­ąø”ąøøąø„ąø¢ą¹€ąø”ąøŠ'),
(4541, 3400, 'en', 'name', 'University Hospital Crosshouse'),
(4542, 3401, 'en', 'name', 'Countess of Chester Hospital'),
(4543, 3402, 'en', 'name', 'University of San Carlos'),
(4544, 3403, 'en', 'name', 'Selly Oak Hospital'),
(4545, 3404, 'en', 'name', 'Providence VA Medical Center'),
(4546, 3405, 'no_lang_code', 'name', 'Fisher Bioservices (United States)'),
(4547, 3406, 'ja', 'name', 'äæ”ę„½åœ’ē—…é™¢'),
(4548, 3406, 'no_lang_code', 'name', 'Shinrakuen Hospital'),
(4549, 3407, 'en', 'name', 'LungenClinic Grosshansdorf'),
(4550, 3408, 'en', 'name', 'University of Havana'),
(4551, 3408, 'es', 'name', 'Universidad de La Habana'),
(4552, 3409, 'en', 'name', 'Silver Cross Hospital'),
(4553, 3410, 'ja', 'name', 'č¤‡åå­—ē—…é™¢'),
(4554, 3410, 'no_lang_code', 'name', 'Fukujuji Hospital'),
(4555, 3411, 'en', 'name', 'Scripps Whittier Diabetes Institute'),
(4556, 3412, 'en', 'name', 'Medical City Children''s Hospital'),
(4557, 3413, 'no_lang_code', 'name', 'NeuroComp Systems (United States)'),
(4558, 3414, 'en', 'name', 'Maharani Laxmi Bai Medical College'),
(4559, 3415, 'en', 'name', 'China Animal Health and Epidemiology Center'),
(4560, 3415, 'zh', 'name', 'äø­å›½åŠØē‰©å«ē”ŸäøŽęµč”Œē—…å­¦äø­åæƒ'),
(4561, 3416, 'en', 'name', 'Castle Hill Hospital'),
(4562, 3417, 'en', 'name', 'MCNC Research and Development Institute'),
(4563, 3418, 'en', 'name', 'Nova Southeastern University'),
(4564, 3418, 'es', 'name', 'Universidad de Nova Southeastern'),
(4565, 3419, 'en', 'name', 'Swedish Steel'),
(4566, 3419, 'no_lang_code', 'name', 'Svenskt StƄl (Finland)'),
(4567, 3420, 'en', 'name', 'Burdwan Medical College & Hospital'),
(4568, 3421, 'en', 'name', 'Hyogo Ion Beam Medical Center'),
(4569, 3421, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ē²’å­ē·šåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4570, 3422, 'en', 'name', 'Research Foundation For Mental Hygiene'),
(4571, 3423, 'fr', 'name', 'Multitel'),
(4572, 3424, 'en', 'name', 'Musgrove Park Hospital'),
(4573, 3425, 'en', 'name', 'Air Force General Hospital PLA'),
(4574, 3426, 'bn', 'name', 'ą¦¬ą¦™ą§ą¦—ą¦¬ą¦Øą§ą¦§ą§ শেখ মুজিব মেঔিকেল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(4575, 3426, 'en', 'name', 'Bangabandhu Sheikh Mujib Medical University'),
(4576, 3427, 'el', 'name', 'Ī£Ī™Ī”Ī•ĪĪŸĪ”'),
(4577, 3427, 'no_lang_code', 'name', 'Sidenor (Greece)'),
(4578, 3428, 'en', 'name', 'Ministry of Health'),
(4579, 3428, 'my', 'name', 'į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€į€”į€ŗį€€į€¼į€®į€øį€Œį€¬į€”'),
(4580, 3429, 'en', 'name', 'Nissan Tamagawa Hospital'),
(4581, 3429, 'ja', 'name', 'ę—„ē”£åŽšē”Ÿä¼š ēŽ‰å·ē—…é™¢'),
(4582, 3430, 'en', 'name', 'Manly Hospital'),
(4583, 3431, 'pt', 'name', 'Instituto Superior de Educação e Ciências'),
(4584, 3432, 'en', 'name', 'Jos University Teaching Hospital'),
(4585, 3433, 'pt', 'name', 'Escola Superior de Enfermagem Dr. José Timóteo Montalvão Machado'),
(4586, 3434, 'en', 'name', 'McKendree University'),
(4587, 3435, 'en', 'name', 'University of Roehampton'),
(4588, 3436, 'fr', 'name', 'HƓpital Riviera-Chablais'),
(4589, 3437, 'en', 'name', 'Gunma Children''s Medical Center'),
(4590, 3437, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹å°å…åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4591, 3438, 'en', 'name', 'Guangdong Academy of Medical Sciences'),
(4592, 3439, 'en', 'name', 'Ashford Hospital'),
(4593, 3440, 'en', 'name', 'K.N.Toosi University of Technology'),
(4594, 3440, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų®ŁˆŲ§Ų¬Ł‡ Ł†ŲµŪŒŲ±Ų§Ł„ŲÆŪŒŁ† طوسی'),
(4595, 3441, 'en', 'name', 'Pukyong National University'),
(4596, 3441, 'ko', 'name', 'ė¶€ź²½ėŒ€ķ•™źµ'),
(4597, 3442, 'en', 'name', 'Chungnam National University Hospital'),
(4598, 3443, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ηρακλείου "Βενιζέλειο - Πανάνειο"'),
(4599, 3443, 'en', 'name', 'The General Hospital of Heraklion "Venizeleio-Pananio"'),
(4600, 3444, 'en', 'name', 'Kuo General Hospital'),
(4601, 3444, 'zh', 'name', 'éƒ­ē»¼åˆåŒ»é™¢'),
(4602, 3445, 'en', 'name', 'Rehabilitation Hospital of Indiana'),
(4603, 3446, 'no_lang_code', 'name', 'Microfab Technologies (United States)'),
(4604, 3447, 'en', 'name', 'Civil Aerospace Medical Institute'),
(4605, 3448, 'en', 'name', 'Henan Cancer Hospital'),
(4606, 3448, 'zh', 'name', 'ę²³å—ēœč‚æē˜¤åŒ»é™¢'),
(4607, 3449, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ĪĪÆĪŗĪ±Ī¹Ī±Ļ‚'),
(4608, 3449, 'en', 'name', 'General Hospital of Nikea'),
(4609, 3450, 'en', 'name', 'Akita Red Cross Hospital'),
(4610, 3450, 'ja', 'name', 'ē§‹ē”°čµ¤åå­—ē—…é™¢'),
(4611, 3451, 'en', 'name', 'Royal National Orthopaedic Hospital'),
(4612, 3452, 'en', 'name', 'Sunchon National University'),
(4613, 3452, 'ko', 'name', 'ģˆœģ²œėŒ€ķ•™źµ'),
(4614, 3453, 'en', 'name', 'Povisa Hospital'),
(4615, 3453, 'es', 'name', 'Hospital Povisa'),
(4616, 3454, 'en', 'name', 'Institute For Community Research'),
(4617, 3455, 'en', 'name', 'Beaumont Hospital'),
(4618, 3456, 'en', 'name', 'JR Tokyo General Hospital'),
(4619, 3456, 'ja', 'name', 'JRę±äŗ¬ē·åˆē—…é™¢'),
(4620, 3457, 'it', 'name', 'Ospedale San Donato'),
(4621, 3458, 'en', 'name', 'Arbor Research Collaborative for Health'),
(4622, 3459, 'no_lang_code', 'name', 'Profactor (Austria)'),
(4623, 3460, 'en', 'name', 'Eastern Hepatobiliary Surgery Hospital'),
(4624, 3460, 'zh', 'name', 'äøœę–¹č‚čƒ†å¤–ē§‘åŒ»é™¢'),
(4625, 3461, 'en', 'name', 'Carney Hospital'),
(4626, 3462, 'en', 'name', 'The Evergreen State College'),
(4627, 3463, 'en', 'name', 'Central India Institute of Medical Sciences'),
(4628, 3464, 'fr', 'name', 'HƓpital Sahloul'),
(4629, 3465, 'en', 'name', 'Birmingham Accident Hospital'),
(4630, 3466, 'en', 'name', 'National University of Life and Environmental Sciences of Ukraine'),
(4631, 3466, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±ŠøŠ¾Ń€ŠµŃŃƒŃ€ŃŠ¾Š² Šø ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ'),
(4632, 3466, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±Ń–Š¾Ń€ŠµŃŃƒŃ€ŃŃ–Š² і ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń України'),
(4633, 3467, 'en', 'name', 'Bucheon St. Mary''s Hospital'),
(4634, 3468, 'fr', 'name', 'HƓpital des Diaconesses'),
(4635, 3469, 'en', 'name', 'Western Kentucky University'),
(4636, 3470, 'en', 'name', 'Oklahoma Panhandle State University'),
(4637, 3471, 'en', 'name', 'University of Miyazaki'),
(4638, 3471, 'ja', 'name', '宮哎大学'),
(4639, 3472, 'en', 'name', 'Prairie View A&M University'),
(4640, 3473, 'en', 'name', 'University of the Incarnate Word'),
(4641, 3473, 'es', 'name', 'Universidad del Verbo Encarnado'),
(4642, 3473, 'fr', 'name', 'UniversitƩ du verbe incarnƩ'),
(4643, 3474, 'en', 'name', 'Ministry of Health and Child Welfare'),
(4644, 3475, 'en', 'name', 'Tennessee Department of Mental Health and Substance Abuse Services'),
(4645, 3476, 'en', 'name', 'Ministry of Natural Resources and Wildlife'),
(4646, 3476, 'fr', 'name', 'MinistĆØre de l''Ɖnergie et des Ressources naturelles'),
(4647, 3477, 'en', 'name', 'Rhode Island Department of Behavioral Healthcare, Developmental Disabilities and Hospitals'),
(4648, 3478, 'fr', 'name', 'HƓpital des Enfants'),
(4649, 3479, 'en', 'name', 'Severance Hospital'),
(4650, 3479, 'ko', 'name', 'ģ„øėøŒėž€ģŠ¤ 병원'),
(4651, 3480, 'sv', 'name', 'AlbaNova'),
(4652, 3481, 'en', 'name', 'Vidant Health'),
(4653, 3482, 'no_lang_code', 'name', 'Mycologics'),
(4654, 3483, 'en', 'name', 'University of Mississippi Medical Center'),
(4655, 3484, 'en', 'name', 'Georgia Southwestern State University'),
(4656, 3485, 'en', 'name', 'Holy Family Hospital'),
(4657, 3486, 'en', 'name', 'Ouachita Baptist University'),
(4658, 3487, 'en', 'name', 'Hanoi School Of Public Health'),
(4659, 3487, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y tįŗæ cĆ“ng cį»™ng'),
(4660, 3488, 'en', 'name', 'Japanese Red Cross Society, Japan'),
(4661, 3488, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē¤¾'),
(4662, 3489, 'en', 'name', 'Frere Hospital'),
(4663, 3490, 'es', 'name', 'Centro de Alta Resolución San MillÔn'),
(4664, 3491, 'en', 'name', 'Advocate Children''s Hospital'),
(4665, 3492, 'en', 'name', 'Tokushima University'),
(4666, 3492, 'ja', 'name', '徳島大学'),
(4667, 3493, 'no_lang_code', 'name', 'Laniado Hospital'),
(4668, 3494, 'en', 'name', 'Boone Hospital Center'),
(4669, 3495, 'en', 'name', 'Queen Mary''s Hospital Sidcup'),
(4670, 3496, 'it', 'name', 'Ospedale dei Bambini Vittore Buzzi'),
(4671, 3497, 'en', 'name', 'Uganda Virus Research Institute'),
(4672, 3498, 'en', 'name', 'National Society of French Railways'),
(4673, 3498, 'no_lang_code', 'name', 'SociƩtƩ Nationale des Chemins de Fer FranƧais (France)'),
(4674, 3499, 'en', 'name', 'Ministry of Health'),
(4675, 3500, 'en', 'name', 'Bishop Auckland Hospital'),
(4676, 3501, 'ja', 'name', 'ęœ‰é™ä¼šē¤¾ HREM'),
(4677, 3501, 'no_lang_code', 'name', 'HREM Research (Japan)'),
(4678, 3502, 'en', 'name', 'Acıbadem Kadıkƶy Hospital'),
(4679, 3502, 'tr', 'name', 'Kadıkƶy Hastanesi'),
(4680, 3503, 'en', 'name', 'University of Oklahoma Health Sciences Center'),
(4681, 3504, 'en', 'name', 'Geisinger Wyoming Valley Medical Center'),
(4682, 3505, 'en', 'name', 'University of San Francisco'),
(4683, 3505, 'pt', 'name', 'Universidade SĆ£o Francisco'),
(4684, 3506, 'en', 'name', 'Mamata Medical College'),
(4685, 3507, 'en', 'name', 'Cape Fear Valley Medical Center'),
(4686, 3508, 'tr', 'name', 'Ulucanlar Göz Eğitim ve Araştırma Hastanesi'),
(4687, 3509, 'en', 'name', 'Iowa Methodist Medical Center'),
(4688, 3510, 'no_lang_code', 'name', 'Portiuncula Hospital'),
(4689, 3511, 'en', 'name', 'Armed Forces Capital Hospital'),
(4690, 3511, 'ko', 'name', 'źµ­źµ°ģˆ˜ė„ė³‘ģ›'),
(4691, 3511, 'zh', 'name', 'åœ‹č»é¦–éƒ½ē—…é™¢'),
(4692, 3512, 'de', 'name', 'Max Rubner Institut'),
(4693, 3513, 'en', 'name', 'Cooperative Research Centre for Polymers'),
(4694, 3514, 'en', 'name', 'Kyoto Medical Center'),
(4695, 3514, 'ja', 'name', 'äŗ¬éƒ½åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4696, 3515, 'bn', 'name', 'ą¦”ą¦æą¦¬ą§ą¦°ą§ą¦—ą¦”ą¦¼ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(4697, 3515, 'no_lang_code', 'name', 'Dibrugarh University'),
(4698, 3516, 'en', 'name', 'Moses H Cone Memorial Hospital'),
(4699, 3517, 'nl', 'name', 'Tergooi'),
(4700, 3518, 'en', 'name', 'Ubon Ratchathani University'),
(4701, 3518, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(4702, 3519, 'en', 'name', 'Cincinnati VA Medical Center'),
(4703, 3520, 'en', 'name', 'American Sociological Association'),
(4704, 3521, 'en', 'name', 'Kentucky Cabinet For Health and Family Services'),
(4705, 3522, 'ja', 'name', 'ę±Ÿę±ē—…é™¢'),
(4706, 3522, 'no_lang_code', 'name', 'Koto Hospital'),
(4707, 3523, 'en', 'name', 'Bedford Hospital'),
(4708, 3524, 'en', 'name', 'Chicago Department of Public Health'),
(4709, 3525, 'en', 'name', 'University of Ilorin Teaching Hospital'),
(4710, 3526, 'en', 'name', 'Daegu Haany University'),
(4711, 3526, 'ko', 'name', 'ėŒ€źµ¬ķ•œģ˜ėŒ€ķ•™źµ'),
(4712, 3527, 'en', 'name', 'McMurry University'),
(4713, 3528, 'en', 'name', 'Netaji Subhash Chandra Bose Medical College'),
(4714, 3529, 'el', 'name', 'Ī•Ī„Ī“Ī•ĪĪ™Ī”Ī•Ī™ĪŸ Ī˜Ī•Ī”Ī‘Ī Ī•Ī„Ī¤Ī—Ī”Ī™ĪŸ'),
(4715, 3529, 'en', 'name', 'Eugenides Hospital'),
(4716, 3530, 'en', 'name', 'Sacred Heart Hospital'),
(4717, 3531, 'en', 'name', 'Kyoto first Red Cross hospital'),
(4718, 3531, 'ja', 'name', 'äŗ¬éƒ½ē¬¬äø€čµ¤åå­—ē—…é™¢'),
(4719, 3532, 'en', 'name', 'Gangneung–Wonju National University'),
(4720, 3532, 'ko', 'name', 'ź°•ė¦‰ģ›ģ£¼ėŒ€ķ•™źµ'),
(4721, 3533, 'no_lang_code', 'name', 'G. Papanikolaou General Hospital'),
(4722, 3534, 'en', 'name', 'Muskingum University'),
(4723, 3535, 'en', 'name', 'Beppu Medical Center'),
(4724, 3535, 'ja', 'name', 'åˆ„åŗœåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(4725, 3536, 'en', 'name', 'Kobe City Medical Center West Hospital'),
(4726, 3536, 'ja', 'name', 'ē„žęˆøåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼č„æåø‚ę°‘ē—…é™¢'),
(4727, 3537, 'it', 'name', 'Ospedale di Belcolle'),
(4728, 3538, 'ko', 'name', 'ķ•œģ–‘ėŒ€ķ•™źµ'),
(4729, 3538, 'no_lang_code', 'name', 'Hanyang University'),
(4730, 3539, 'en', 'name', 'Space Science Institute'),
(4731, 3540, 'es', 'name', 'Hospital de NiƱos de la Santƭsima Trinidad'),
(4732, 3541, 'en', 'name', 'Lock Haven University'),
(4733, 3542, 'en', 'name', 'Government Medical College, Amritsar'),
(4734, 3542, 'pa', 'name', 'ਸਰਕਾਰੀ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ąØ•ąØ¾ąØ²ąØœ'),
(4735, 3543, 'en', 'name', 'Guangzhou Medical University Cancer Hospital'),
(4736, 3543, 'zh', 'name', 'å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žč‚æē˜¤åŒ»é™¢'),
(4737, 3544, 'en', 'name', 'Sioux Valley Hospital'),
(4738, 3545, 'en', 'name', 'St Lawrence Hospital'),
(4739, 3546, 'en', 'name', 'Kentucky Community and Technical College System'),
(4740, 3547, 'en', 'name', 'The Heart Research Institute'),
(4741, 3548, 'en', 'name', 'Gunma University'),
(4742, 3548, 'ja', 'name', '群馬大学'),
(4743, 3549, 'en', 'name', 'Dandenong Hospital'),
(4744, 3550, 'en', 'name', 'Tri-Service General Hospital Songshan Branch'),
(4745, 3551, 'en', 'name', 'Mayo Hospital'),
(4746, 3552, 'en', 'name', 'University of Virginia Medical Center'),
(4747, 3553, 'en', 'name', 'St Mary''s Hospital'),
(4748, 3554, 'de', 'name', 'St. Josef-Hospital'),
(4749, 3555, 'en', 'name', 'MRC Biostatistics Unit'),
(4750, 3556, 'it', 'name', 'Azienda Ospedaliera Ospedale Civile di Legnano'),
(4751, 3557, 'es', 'name', 'Hospital Virgen del Camino'),
(4752, 3558, 'en', 'name', 'The 309th Hospital of Chinese People''s Liberation Army'),
(4753, 3558, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬äø‰ć€‡ä¹åŒ»é™¢'),
(4754, 3559, 'en', 'name', 'Heartland Regional Medical Center'),
(4755, 3560, 'fr', 'name', 'HƓpital Principal de Dakar'),
(4756, 3561, 'en', 'name', 'Capella University'),
(4757, 3562, 'en', 'name', 'Tainan Municipal Hospital'),
(4758, 3562, 'zh', 'name', 'å°å—åø‚ē«‹é†«é™¢'),
(4759, 3563, 'no_lang_code', 'name', 'Srinakharinwirot University'),
(4760, 3563, 'th', 'name', 'ดหาวณทยาคัยศรีนครณนทรวณโรฒ'),
(4761, 3564, 'en', 'name', 'Taurida National V.I. Vernadsky University'),
(4762, 3564, 'pl', 'name', 'Tawrijski Uniwersytet Narodowy im. Władimira Wiernadskiego'),
(4763, 3564, 'ru', 'name', 'Таврический Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. И. ВернаГского'),
(4764, 3564, 'uk', 'name', 'Š¢Š°Š²Ń€Ń–Š¹ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’. І. Š’ŠµŃ€Š½Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(4765, 3565, 'ja', 'name', '金城学院大学'),
(4766, 3565, 'no_lang_code', 'name', 'Kinjo Gakuin University'),
(4767, 3566, 'tr', 'name', 'GATA Haydarpaşa Eğitim Hastanesi'),
(4768, 3567, 'en', 'name', 'Roger Williams Medical Center'),
(4769, 3568, 'en', 'name', 'Medical Research Institute of New Zealand'),
(4770, 3569, 'nl', 'name', 'Juliana Kinderziekenhuis'),
(4771, 3570, 'en', 'name', 'Eastern Nazarene College'),
(4772, 3571, 'en', 'name', 'Hesperia Hospital'),
(4773, 3572, 'en', 'name', 'Kaiser Permanente Anaheim Medical Center'),
(4774, 3573, 'en', 'name', 'South Dakota Department of Health'),
(4775, 3574, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأزهر في ŲŗŲ²Ų©'),
(4776, 3574, 'en', 'name', 'Al-Azhar University – Gaza'),
(4777, 3575, 'es', 'name', 'Hospital CƩsar Milstein'),
(4778, 3576, 'en', 'name', 'Aichi Prefectural University'),
(4779, 3576, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å¤§å­¦'),
(4780, 3577, 'en', 'name', 'South Carolina State Governor''s Office'),
(4781, 3578, 'en', 'name', 'Himeji Red Cross Hospital'),
(4782, 3578, 'ja', 'name', 'å§«č·Æčµ¤åå­—ē—…é™¢'),
(4783, 3579, 'en', 'name', 'Coastal Area Health Education Center'),
(4784, 3580, 'en', 'name', 'Maidstone Hospital'),
(4785, 3581, 'no_lang_code', 'name', 'MATIMOP'),
(4786, 3582, 'en', 'name', 'Johannesburg Hospital'),
(4787, 3583, 'tr', 'name', 'Malatya Devlet Hastanesi'),
(4788, 3584, 'en', 'name', 'Catholic University of America'),
(4789, 3584, 'es', 'name', 'Universidad Católica de América'),
(4790, 3584, 'fr', 'name', 'UniversitƩ catholique d''amƩrique'),
(4791, 3585, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© الطب'),
(4792, 3585, 'en', 'name', 'Baghdad Medical City'),
(4793, 3586, 'en', 'name', 'Semiconductor Research Corporation'),
(4794, 3587, 'es', 'name', 'Empresarios Agrupados'),
(4795, 3588, 'en', 'name', 'Carolinas Medical Center'),
(4796, 3589, 'en', 'name', 'Box Hill Hospital'),
(4797, 3590, 'en', 'name', 'Hairmyres Hospital'),
(4798, 3591, 'en', 'name', 'Cardiff and Vale University Health Board'),
(4799, 3592, 'en', 'name', 'Glenfield Hospital'),
(4800, 3593, 'en', 'name', 'Miami Children''s Hospital'),
(4801, 3594, 'en', 'name', 'Frostburg State University'),
(4802, 3594, 'fr', 'name', 'UniversitĆ© d''Ɖtat de frostburg'),
(4803, 3595, 'en', 'name', 'Health Research and Educational Trust'),
(4804, 3596, 'fr', 'name', 'Centre Hospitalier Universitaire de Cocody'),
(4805, 3597, 'en', 'name', 'Joseph Brant Hospital'),
(4806, 3598, 'en', 'name', 'National Aerospace University – Kharkiv Aviation Institute'),
(4807, 3598, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾'),
(4808, 3598, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аерокосмічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені М. Š„. Š–ŃƒŠŗŠ¾Š²ŃŃŒŠŗŠ¾Š³Š¾ Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ авіаційний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(4809, 3599, 'en', 'name', 'American Health Information Management Association'),
(4810, 3600, 'en', 'name', 'Fulton County Medical Examiner''s Office'),
(4811, 3601, 'en', 'name', 'AdventHealth Celebration'),
(4812, 3602, 'en', 'name', 'National Association of County and City Health Officials'),
(4813, 3603, 'en', 'name', 'Children''s Research Hospital'),
(4814, 3603, 'ja', 'name', 'å°å…ē ”ē©¶ē—…é™¢'),
(4815, 3604, 'en', 'name', 'NewYork–Presbyterian Brooklyn Methodist Hospital'),
(4816, 3605, 'ja', 'name', 'åÆŒå£«ćƒ•ć‚¤ćƒ«ćƒ ę Ŗå¼ä¼šē¤¾'),
(4817, 3605, 'no_lang_code', 'name', 'Fujifilm (Japan)'),
(4818, 3606, 'no_lang_code', 'name', 'Lallemand (Canada)'),
(4819, 3607, 'en', 'name', 'National Institute on Minority Health and Health Disparities'),
(4820, 3608, 'en', 'name', 'Carl T. Hayden Veterans Affairs Medical Center'),
(4821, 3609, 'en', 'name', 'Millsaps College'),
(4822, 3610, 'en', 'name', 'Guangxi University for Nationalities'),
(4823, 3610, 'zh', 'name', 'å¹æč„æę°‘ę—å¤§å­¦');
INSERT INTO `ror_settings` VALUES
(4824, 3611, 'es', 'name', 'Hospital Municipal de Badalona'),
(4825, 3612, 'en', 'name', 'Taishan Medical University'),
(4826, 3612, 'zh', 'name', 'ę³°å±±åŒ»å­¦é™¢'),
(4827, 3613, 'be', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(4828, 3613, 'en', 'name', 'Ministry of Health'),
(4829, 3614, 'en', 'name', 'Bezmialem Foundation University Medical Faculty Hospital'),
(4830, 3614, 'tr', 'name', 'Bezmiâlem Vakıf Üniversitesi Tıp Fakültesi Hastanesi'),
(4831, 3615, 'en', 'name', 'Northwestern State University'),
(4832, 3615, 'fr', 'name', 'UniversitĆ© d''Ɖtat northwestern'),
(4833, 3616, 'de', 'name', 'Joanneum Research Forschungsgesellschaft mbH'),
(4834, 3616, 'en', 'name', 'Joanneum Research'),
(4835, 3617, 'en', 'name', 'Children''s Hospital of Wisconsin'),
(4836, 3618, 'en', 'name', 'Ningxia Medical University General Hospital'),
(4837, 3618, 'zh', 'name', 'å®å¤åŒ»ē§‘å¤§å­¦ę€»åŒ»é™¢'),
(4838, 3619, 'en', 'name', 'Henry Mayo Newhall Memorial Hospital'),
(4839, 3620, 'en', 'name', 'Shriners Hospitals for Children - St. Louis'),
(4840, 3621, 'en', 'name', 'Indira Gandhi Institute of Medical Sciences'),
(4841, 3622, 'en', 'name', 'San Francisco VA Medical Center'),
(4842, 3623, 'en', 'name', 'Kent State University'),
(4843, 3623, 'fr', 'name', 'UniversitĆ© d''Ɖtat de kent'),
(4844, 3624, 'en', 'name', 'Anqing City Hospital'),
(4845, 3625, 'en', 'name', 'Chiba Rosai Hospital'),
(4846, 3625, 'ja', 'name', 'åƒč‘‰åŠ“ē½ē—…é™¢'),
(4847, 3626, 'en', 'name', 'Doernbecher Children''s Hospital'),
(4848, 3627, 'en', 'name', 'Cooper University Hospital'),
(4849, 3628, 'en', 'name', 'Shaw University'),
(4850, 3629, 'ar', 'name', 'مستؓفى Ų¬Ų§Ł…Ų¹Ų© السلطان Ł‚Ų§ŲØŁˆŲ³'),
(4851, 3629, 'en', 'name', 'Sultan Qaboos University Hospital'),
(4852, 3630, 'en', 'name', 'Winston-Salem State University'),
(4853, 3631, 'en', 'name', 'Houston Medical Center'),
(4854, 3632, 'en', 'name', 'Communications and Information Technology Ontario'),
(4855, 3633, 'en', 'name', 'Robert Jones and Agnes Hunt Orthopaedic Hospital NHS Trust'),
(4856, 3634, 'en', 'name', 'Shanghai Sixth People''s Hospital'),
(4857, 3634, 'zh', 'name', 'äøŠęµ·åø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(4858, 3635, 'bg', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Плевен'),
(4859, 3635, 'en', 'name', 'Medical University Pleven'),
(4860, 3636, 'en', 'name', 'St. Mary''s Hospital'),
(4861, 3637, 'en', 'name', 'Hispanic Health Council'),
(4862, 3638, 'en', 'name', 'Seton Medical Center'),
(4863, 3639, 'no_lang_code', 'name', 'Airbus (Germany)'),
(4864, 3640, 'en', 'name', 'Hospital General Universitario de Albacete'),
(4865, 3640, 'es', 'name', 'Complejo Hospitalario Universitario de Albacete'),
(4866, 3641, 'pt', 'name', 'Centro UniversitÔrio São Camilo'),
(4867, 3642, 'en', 'name', 'Radiolabs'),
(4868, 3643, 'en', 'name', 'Andrews University'),
(4869, 3643, 'es', 'name', 'Universidad Andrews'),
(4870, 3644, 'no_lang_code', 'name', 'Israel Aerospace Industries (Israel)'),
(4871, 3645, 'es', 'name', 'Hospital Ruber Internacional'),
(4872, 3646, 'pt', 'name', 'Hospital Santo António dos Capuchos'),
(4873, 3647, 'en', 'name', 'Brookings Institution'),
(4874, 3647, 'es', 'name', 'Institución Brookings'),
(4875, 3648, 'en', 'name', 'Mount Vernon Hospital'),
(4876, 3649, 'en', 'name', 'Instituto Superior D. Dinis'),
(4877, 3650, 'no_lang_code', 'name', 'Hlabisa Hospital'),
(4878, 3651, 'en', 'name', 'Kingston Hospital'),
(4879, 3652, 'cs', 'name', 'Univerzita Obrany'),
(4880, 3652, 'en', 'name', 'University of Defence'),
(4881, 3653, 'en', 'name', 'Jichi Medical University Hospital'),
(4882, 3653, 'ja', 'name', 'č‡Ŗę²»åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(4883, 3654, 'en', 'name', 'Poriya Medical Center'),
(4884, 3654, 'he', 'name', 'בית חולים ×‘×Ø×•×š פדה'),
(4885, 3655, 'en', 'name', 'Wolfson Medical Center'),
(4886, 3655, 'he', 'name', '×ž×Ø×›×– רפואי וולפהון'),
(4887, 3656, 'en', 'name', 'Guangdong University of Technology'),
(4888, 3656, 'zh', 'name', '广东巄业大学'),
(4889, 3657, 'en', 'name', 'Government Medical College'),
(4890, 3657, 'ml', 'name', 'ą“—ą“µąµŗą“®ąµ†ą“Øąµą“±ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“•ąµ‹ą““ą“æą“•ąµą“•ąµ‹ą“Ÿąµ'),
(4891, 3657, 'ta', 'name', 'ą®•ąÆ‹ą®“ą®æą®•ąÆą®•ąÆ‹ą®ŸąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(4892, 3658, 'en', 'name', 'Imakiire General Hospital'),
(4893, 3658, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę˜­å’Œä¼š ä»Šēµ¦é»Žē·åˆē—…é™¢'),
(4894, 3659, 'es', 'name', 'Hospital General de Elda'),
(4895, 3660, 'en', 'name', 'Seoul Women''s University'),
(4896, 3660, 'ko', 'name', 'ģ„œģšøģ—¬ģžėŒ€ķ•™źµ'),
(4897, 3661, 'ar', 'name', 'مستؓفى Ų±Ų§Ų“ŲÆ'),
(4898, 3661, 'en', 'name', 'Rashid Hospital'),
(4899, 3662, 'en', 'name', 'Social Sciences Innovations'),
(4900, 3663, 'en', 'name', 'Green Pastures Hospital and Rehabilitation Centre'),
(4901, 3664, 'en', 'name', 'Santa Barbara Cottage Hospital'),
(4902, 3665, 'en', 'name', 'Yamaguchi Prefectural University'),
(4903, 3665, 'ja', 'name', 'å±±å£ēœŒē«‹å¤§å­¦'),
(4904, 3666, 'bg', 'name', 'ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ŃŠŗŠ° болница ā€žŠŠ»ŠµŠŗŃŠ°Š½Š“Ń€Š¾Š²ŃŠŗŠ°'),
(4905, 3666, 'no_lang_code', 'name', 'Alexandrovska Hospital'),
(4906, 3667, 'no_lang_code', 'name', 'MC3 (United States)'),
(4907, 3668, 'en', 'name', 'European University of Lisbon'),
(4908, 3668, 'pt', 'name', 'Universidade Europeia'),
(4909, 3669, 'en', 'name', 'University of Balochistan'),
(4910, 3669, 'ur', 'name', 'جامعہ ŲØŁ„ŁˆŚ†Ų³ŲŖŲ§Ł†'),
(4911, 3670, 'en', 'name', 'Saint Thomas West Hospital'),
(4912, 3671, 'en', 'name', 'Stowers Institute for Medical Research'),
(4913, 3672, 'en', 'name', 'Ministry of Public Health'),
(4914, 3672, 'fr', 'name', 'Ministère de la Santé Publique du Cameroun'),
(4915, 3673, 'tr', 'name', 'Dışkapı Yıldırım Beyazıt Eğitim ve Araştırma Hastanesi'),
(4916, 3674, 'en', 'name', 'Genesis Medical Center'),
(4917, 3675, 'en', 'name', 'Walsall Manor Hospital'),
(4918, 3676, 'no_lang_code', 'name', 'Pingtung Christian Hospital'),
(4919, 3676, 'zh', 'name', 'å±ę±åŸŗē£ę•™é†«é™¢'),
(4920, 3677, 'pt', 'name', 'Escola Superior de SaĆŗde Ribeiro Sanches'),
(4921, 3678, 'en', 'name', 'Commonwealth Medical College'),
(4922, 3679, 'en', 'name', 'Mercy General Hospital'),
(4923, 3680, 'en', 'name', 'Institute of Mental Health'),
(4924, 3681, 'en', 'name', 'Memorial Hospital of Rhode Island'),
(4925, 3682, 'en', 'name', 'Truckee Meadows Community College'),
(4926, 3683, 'en', 'name', 'Services Institute of Medical Sciences'),
(4927, 3683, 'pa', 'name', 'ਸੈਰਵਿਸਜ਼ ąØ‡ą©°ąØøąØŸąØæąØŸąØæąØŠąØŸ ਆਫ਼ ąØ®ą©ˆąØ”ą©€ąØ•ąØ² ਸਾਈਨਸਜ਼'),
(4928, 3683, 'ur', 'name', 'سروسز Ų§Ł†Ų³Ł¹ŪŒŁ¹ŁˆŁ¹ آف Ł…ŪŒŚˆŪŒŚ©Ł„ سائنسز'),
(4929, 3684, 'en', 'name', 'PSG Institute of Medical Sciences & Research'),
(4930, 3685, 'es', 'name', 'Hospital Monte Naranco'),
(4931, 3686, 'en', 'name', 'St. James''s Hospital'),
(4932, 3687, 'no_lang_code', 'name', 'P2D Bioscience (United States)'),
(4933, 3688, 'en', 'name', 'Scottish Rite Hospital'),
(4934, 3689, 'en', 'name', 'Ca'' Foncello Hospital'),
(4935, 3690, 'es', 'name', 'Hospital Universitario Insular de Gran Canaria'),
(4936, 3691, 'en', 'name', 'Iwate University'),
(4937, 3691, 'ja', 'name', '岩手大学'),
(4938, 3692, 'bn', 'name', 'কাশী ą¦¹ą¦æą¦Øą§ą¦¦ą§ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(4939, 3692, 'en', 'name', 'Banaras Hindu University'),
(4940, 3692, 'fr', 'name', 'Université hindoue de bénarès'),
(4941, 3692, 'gu', 'name', 'બનારસ હિંદુ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(4942, 3692, 'hi', 'name', 'ą¤•ą¤¾ą¤¶ą„€ ą¤¹ą¤æą¤Øą„ą¤¦ą„‚ ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(4943, 3692, 'kn', 'name', 'ą²¬ą²Øą²¾ą²°ą²øą³ ಹಿಂದೂ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(4944, 3692, 'ml', 'name', 'ą“¬ą“Øą“¾ą“±ą“øąµ ą“¹ą“æą“Øąµą“¦ąµ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(4945, 3692, 'ta', 'name', 'பனாரசு ą®‡ą®ØąÆą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(4946, 3692, 'te', 'name', 'ą°¬ą±†ą°Øą°¾ą°°ą°øą± హిందూ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(4947, 3693, 'es', 'name', 'Hospital JuƔrez de MƩxico'),
(4948, 3694, 'en', 'name', 'University of Vermont Medical Center'),
(4949, 3695, 'da', 'name', 'HolbƦk Sygehus'),
(4950, 3696, 'no_lang_code', 'name', 'Shanghai GenomePilot Technology (China)'),
(4951, 3696, 'zh', 'name', 'äøŠęµ·ä½°ēœŸē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(4952, 3697, 'en', 'name', 'Atmospheric and Environmental Research'),
(4953, 3698, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆŲ§Ł„Ų¹Ų²ŁŠ'),
(4954, 3698, 'en', 'name', 'King Abdulaziz Hospital'),
(4955, 3699, 'no_lang_code', 'name', 'Honeywell (Canada)'),
(4956, 3700, 'en', 'name', 'Sri Manakula Vinayagar Medical College and Hospital'),
(4957, 3701, 'fr', 'name', 'HƓpital Laennec'),
(4958, 3702, 'en', 'name', 'University of the Arts London'),
(4959, 3703, 'en', 'name', 'Bess Kaiser Hospital'),
(4960, 3704, 'en', 'name', 'Southern Illinois University Edwardsville'),
(4961, 3705, 'en', 'name', 'Mahatma Gandhi Institute of Medical Sciences'),
(4962, 3705, 'hi', 'name', 'ą¤®ą¤¹ą¤¾ą¤¤ą„ą¤®ą¤¾ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(4963, 3706, 'no_lang_code', 'name', 'Charoenkrung Pracharak Hospital'),
(4964, 3706, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ą¹€ąøˆąø£ąø“ąøąøąø£ąøøąø‡ąø›ąø£ąø°ąøŠąø²ąø£ąø±ąøąø©ą¹Œ'),
(4965, 3707, 'it', 'name', 'Ospedale Maria Vittoria'),
(4966, 3708, 'en', 'name', 'Inner Mongolia University for Nationalities'),
(4967, 3709, 'en', 'name', 'Australian Catholic University'),
(4968, 3710, 'es', 'name', 'Hospital de Mataró'),
(4969, 3711, 'en', 'name', 'General de Jesus College'),
(4970, 3712, 'ar', 'name', 'مستؓفى ŲÆŲØŁ€Ł€Ł€ŁŠ'),
(4971, 3712, 'en', 'name', 'Dubai Hospital'),
(4972, 3713, 'en', 'name', 'Shaare Zedek Medical Center'),
(4973, 3713, 'he', 'name', '×ž×Ø×›×– רפואי שערי צדק'),
(4974, 3714, 'fr', 'name', 'HƓpital du Hasenrain'),
(4975, 3715, 'fr', 'name', 'SociƩtƩ de MathƩmatiques AppliquƩes et de Sciences Humaines'),
(4976, 3716, 'en', 'name', 'Lawrence Technological University'),
(4977, 3716, 'fr', 'name', 'UniversitƩ technologique lawrence'),
(4978, 3717, 'de', 'name', 'Europäisches Institut für Energieforschung'),
(4979, 3717, 'en', 'name', 'European Institute for Energy Research'),
(4980, 3718, 'en', 'name', 'Aurora Health Care'),
(4981, 3719, 'en', 'name', 'Red Cross War Memorial Children''s Hospital'),
(4982, 3720, 'en', 'name', 'I-Shou University'),
(4983, 3721, 'it', 'name', 'Azienda Ospedaliera Universitaria "San Martino", Ospedale Policlinico San Martino'),
(4984, 3722, 'en', 'name', 'VA Eastern Colorado Health Care System'),
(4985, 3723, 'en', 'name', 'Doai Memorial Hospital'),
(4986, 3723, 'ja', 'name', 'åŒę„›čØ˜åæµē—…é™¢'),
(4987, 3724, 'en', 'name', 'Sankt Hans Hospital'),
(4988, 3725, 'de', 'name', 'Klinik Donaustauf'),
(4989, 3726, 'en', 'name', 'Fujisawa City Hospital'),
(4990, 3726, 'ja', 'name', '藤沢市民病院'),
(4991, 3727, 'no_lang_code', 'name', 'Biorem Technologies (Canada)'),
(4992, 3728, 'en', 'name', 'Heidelberg Repatriation Hospital'),
(4993, 3729, 'en', 'name', 'Buenos Aires British Hospital'),
(4994, 3729, 'es', 'name', 'Hospital BritƔnico de Buenos Aires'),
(4995, 3730, 'de', 'name', 'UniversitƤtsmedizin Rostock'),
(4996, 3731, 'fr', 'name', 'HƓpital de la Tour'),
(4997, 3732, 'en', 'name', 'American University of Armenia'),
(4998, 3732, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ“Õ„Ö€Õ«ÕÆÕµÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(4999, 3733, 'en', 'name', 'Brighton General Hospital'),
(5000, 3734, 'en', 'name', 'Burke Rehabilitation Hospital'),
(5001, 3735, 'en', 'name', 'Hangang Sacred Heart Hospital'),
(5002, 3735, 'ko', 'name', 'ķ•œź°• 성심 병원'),
(5003, 3736, 'en', 'name', 'Beth Israel Deaconess Medical Center'),
(5004, 3737, 'ja', 'name', 'å›½éš›åŒ»ē™‚ē¦ē„‰å¤§å­¦äø‰ē”°ē—…é™¢'),
(5005, 3737, 'no_lang_code', 'name', 'Mita Hospital'),
(5006, 3738, 'en', 'name', 'Military Medical Academy'),
(5007, 3738, 'sr', 'name', 'Š’Š¾Ń˜Š½Š¾Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ° акаГемија'),
(5008, 3739, 'en', 'name', 'Mount Desert Island Biological Laboratory'),
(5009, 3740, 'en', 'name', 'Tanglewood Research'),
(5010, 3741, 'en', 'name', 'Nanning Normal University'),
(5011, 3741, 'zh', 'name', 'å—å®åøˆčŒƒå¤§å­¦'),
(5012, 3742, 'en', 'name', 'Exeter Hospital'),
(5013, 3743, 'en', 'name', 'National Health Promotion Associates'),
(5014, 3744, 'en', 'name', 'Hackensack University Medical Center Mountainside'),
(5015, 3745, 'en', 'name', 'XinHua Hospital'),
(5016, 3745, 'zh', 'name', 'äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žę–°åŽåŒ»é™¢'),
(5017, 3746, 'en', 'name', 'Bethune-Cookman University'),
(5018, 3747, 'fr', 'name', 'HƓpital d''Hautepierre'),
(5019, 3748, 'en', 'name', 'Croydon University Hospital'),
(5020, 3749, 'en', 'name', 'Lala Lajpat Rai Memorial Medical College'),
(5021, 3750, 'ja', 'name', 'å…¬ē«‹å—äø¹ē—…é™¢'),
(5022, 3750, 'no_lang_code', 'name', 'Nantan General Hospital'),
(5023, 3751, 'en', 'name', 'American Society of Mechanical Engineers'),
(5024, 3752, 'en', 'name', 'Institute for Medical Informatics and Biostatistics'),
(5025, 3753, 'no_lang_code', 'name', 'King Fahad Hospital Hufūf'),
(5026, 3754, 'en', 'name', 'Regina Margherita hospital'),
(5027, 3754, 'it', 'name', 'Ospedale Regina Margherita'),
(5028, 3755, 'de', 'name', 'Helmut-Schmidt-UniversitƤt'),
(5029, 3755, 'en', 'name', 'Helmut Schmidt University'),
(5030, 3756, 'en', 'name', 'Hyogo Prefectural Amagasaki General Medical Center'),
(5031, 3756, 'ja', 'name', 'å…µåŗ«ēœŒē«‹å°¼å“Žē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5032, 3757, 'en', 'name', 'Northeastern Illinois University'),
(5033, 3758, 'en', 'name', 'Ecologic Institute'),
(5034, 3759, 'en', 'name', 'Zhejiang Chinese Medical University'),
(5035, 3759, 'zh', 'name', 'ęµ™ę±Ÿäø­åŒ»čÆå¤§å­¦'),
(5036, 3760, 'en', 'name', 'European Science Foundation'),
(5037, 3761, 'en', 'name', 'Imam Hossein University'),
(5038, 3761, 'fa', 'name', 'دانؓگاه Ų§Ł…Ų§Ł… Ų­Ų³ŪŒŁ†'),
(5039, 3762, 'en', 'name', 'Allina Health'),
(5040, 3763, 'en', 'name', 'Virginia State University'),
(5041, 3763, 'fr', 'name', 'UniversitĆ© d''Ɖtat de virginie'),
(5042, 3764, 'no_lang_code', 'name', 'Beijing YouAn Hospital'),
(5043, 3764, 'zh', 'name', 'åŒ—äŗ¬ä½‘å®‰åŒ»é™¢'),
(5044, 3765, 'it', 'name', 'Consorzio Nazionale Interuniversitario per i Trasporti e la Logistica'),
(5045, 3766, 'pt', 'name', 'Instituto Superior de Paços de Brandão'),
(5046, 3767, 'en', 'name', 'Toyohashi University of Technology'),
(5047, 3767, 'ja', 'name', 'č±Šę©‹ęŠ€č”“ē§‘å­¦å¤§å­¦'),
(5048, 3768, 'tr', 'name', 'Medeniyet Üniversitesi Göztepe Eğitim ve Araştırma Hastanesi'),
(5049, 3769, 'it', 'name', 'Polo Universitario CittĆ  di Prato'),
(5050, 3770, 'pt', 'name', 'Centro UniversitƔrio FiladƩlfia'),
(5051, 3771, 'en', 'name', 'Hospital Labbafinejad'),
(5052, 3771, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł„ŲØŲ§ŁŪŒā€ŒŁ†Ś˜'),
(5053, 3772, 'pt', 'name', 'Instituto Superior da Maia'),
(5054, 3773, 'en', 'name', 'Palo Alto University'),
(5055, 3774, 'es', 'name', 'Hospital de Especialidades'),
(5056, 3775, 'no_lang_code', 'name', 'Ganga Hospital'),
(5057, 3776, 'ar', 'name', 'وزارة الصحة - الصفحة Ų§Ł„Ų±Ų¦ŁŠŲ³ŁŠŲ©'),
(5058, 3776, 'en', 'name', 'Ministry of Health and Population'),
(5059, 3777, 'sv', 'name', 'Hallands sjukhus Halmstad'),
(5060, 3778, 'en', 'name', 'West Virginia University Hospitals'),
(5061, 3779, 'en', 'name', 'Dorset County Hospital'),
(5062, 3780, 'en', 'name', 'Methodist University Hospital'),
(5063, 3781, 'en', 'name', 'Hospital Colentina'),
(5064, 3781, 'ro', 'name', 'Spitalul Clinic Colentina'),
(5065, 3782, 'en', 'name', 'Hunter Holmes McGuire VA Medical Center'),
(5066, 3783, 'en', 'name', 'National University Hospital'),
(5067, 3784, 'en', 'name', 'Iowa Medical Society'),
(5068, 3785, 'en', 'name', 'Institute of Medical Biology'),
(5069, 3786, 'en', 'name', 'Lakewood Regional Medical Center'),
(5070, 3787, 'en', 'name', 'American Health Care Association'),
(5071, 3788, 'en', 'name', 'Shri Maharaja Hari Singh Hospital'),
(5072, 3789, 'en', 'name', 'Harefield Hospital'),
(5073, 3790, 'en', 'name', 'International Goodwill Hospital'),
(5074, 3790, 'ja', 'name', 'å›½éš›č¦Ŗå–„ē·åˆē—…é™¢'),
(5075, 3791, 'en', 'name', 'Catholic University of Daegu'),
(5076, 3791, 'ko', 'name', 'ėŒ€źµ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(5077, 3792, 'en', 'name', 'Nagoya Central Hospital'),
(5078, 3792, 'ja', 'name', 'åå¤å±‹ć‚»ćƒ³ćƒˆćƒ©ćƒ«ē—…é™¢'),
(5079, 3793, 'en', 'name', 'University of Cauca'),
(5080, 3793, 'es', 'name', 'Universidad del Cauca'),
(5081, 3794, 'en', 'name', 'Minami Wakayama Medical Center'),
(5082, 3794, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å—å’Œę­Œå±±åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(5083, 3795, 'en', 'name', 'MultiCare Health System'),
(5084, 3796, 'ca', 'name', 'Hospital Universitari de Girona Doctor Josep Trueta'),
(5085, 3796, 'es', 'name', 'Residencia Sanitaria de la Seguridad Social de Gerona'),
(5086, 3797, 'en', 'name', 'Birmingham General Hospital'),
(5087, 3798, 'en', 'name', 'Norrkƶping Hospital'),
(5088, 3799, 'en', 'name', 'Massachusetts Eye and Ear Infirmary'),
(5089, 3800, 'sv', 'name', 'LƤnssjukhuset i Kalmar'),
(5090, 3801, 'en', 'name', 'Kanchi Kamakoti CHILDS Trust Hospital'),
(5091, 3802, 'en', 'name', 'Minnesota Department of Health'),
(5092, 3803, 'en', 'name', 'First Pavlov State Medical University of St. Petersburg'),
(5093, 3803, 'ru', 'name', 'ŠŸŠµŃ€Š²Ń‹Š¹ Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика И. П. Павлова'),
(5094, 3804, 'en', 'name', 'North Maharashtra University'),
(5095, 3804, 'hi', 'name', 'ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(5096, 3805, 'en', 'name', 'Holy Cross Hospital'),
(5097, 3806, 'en', 'name', 'Legacy Health'),
(5098, 3807, 'en', 'name', 'Montreal General Hospital'),
(5099, 3807, 'fr', 'name', 'HƓpital GƩnƩral de MontrƩal'),
(5100, 3808, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ų§Ł„Ų¹Ų±ŲØŁŠ'),
(5101, 3808, 'en', 'name', 'Arabian Gulf University'),
(5102, 3808, 'fa', 'name', 'دانؓگاه Ų®Ł„ŪŒŲ¬ عربی'),
(5103, 3809, 'en', 'name', 'Southern Utah University'),
(5104, 3810, 'en', 'name', 'Mount Gould Hospital'),
(5105, 3811, 'el', 'name', 'Ī¹Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ υγείας του Ļ€Ī±Ī¹Ī“Ī¹ĪæĻ'),
(5106, 3811, 'en', 'name', 'Institute of Child Health'),
(5107, 3812, 'en', 'name', 'Banner Sun Health Research Institute'),
(5108, 3813, 'en', 'name', 'National Chiayi University'),
(5109, 3813, 'zh', 'name', 'åœ‹ē«‹å˜‰ē¾©å¤§å­ø'),
(5110, 3814, 'he', 'name', '×žÖ“×©Ö°×‚×’ÖøÖ¼×‘ ×œÖ·×“ÖøÖ¼×šÖ°'),
(5111, 3814, 'no_lang_code', 'name', 'Misgav Ladach'),
(5112, 3815, 'en', 'name', 'AnMed Health Medical Center'),
(5113, 3816, 'en', 'name', 'Japan Women''s University'),
(5114, 3816, 'ja', 'name', 'ę—„ęœ¬å„³å­å¤§å­¦'),
(5115, 3817, 'nl', 'name', 'Elisabeth-TweeSteden Ziekenhuis'),
(5116, 3818, 'en', 'name', 'Campus Bio-Medico University'),
(5117, 3818, 'it', 'name', 'UniversitĆ  Campus Bio-Medico'),
(5118, 3819, 'en', 'name', 'Chung-Ang University Hospital'),
(5119, 3819, 'ko', 'name', 'ģ¤‘ģ•™ėŒ€ķ•™źµģ˜ė£Œģ›'),
(5120, 3820, 'no_lang_code', 'name', 'Ingenieria Y Economia Del Transporte'),
(5121, 3821, 'da', 'name', 'Sjællands universitetshospital, Køge'),
(5122, 3821, 'en', 'name', 'Zealand University Hospital KĆøge'),
(5123, 3822, 'sv', 'name', 'Lasarettet i Motala'),
(5124, 3823, 'fr', 'name', 'Centre Hospitalier Victor Dupouy'),
(5125, 3824, 'en', 'name', 'Amirkabir University of Technology'),
(5126, 3824, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ł…ŪŒŲ±Ś©ŲØŪŒŲ±'),
(5127, 3825, 'no_lang_code', 'name', 'Rolls-Royce (United Kingdom)'),
(5128, 3826, 'en', 'name', 'Imo State University Teaching Hospital'),
(5129, 3827, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų®Ł„ŪŒŁ„ŪŒ'),
(5130, 3827, 'no_lang_code', 'name', 'Khalili Hospital'),
(5131, 3828, 'en', 'name', 'Pilgrim Hospital'),
(5132, 3829, 'en', 'name', 'Canberra Hospital'),
(5133, 3830, 'en', 'name', 'Soon Chun Hyang University Cheonan Hospital'),
(5134, 3830, 'ko', 'name', 'ģˆœģ²œķ–„ėŒ€ķ•™źµ ģ²œģ•ˆė³‘ģ›'),
(5135, 3831, 'en', 'name', 'Meiji University of Integrative Medicine'),
(5136, 3831, 'ja', 'name', 'ę˜Žę²»å›½éš›åŒ»ē™‚å¤§å­¦'),
(5137, 3832, 'en', 'name', 'Punjab Medical College'),
(5138, 3833, 'en', 'name', 'Alameda Health System'),
(5139, 3834, 'en', 'name', 'Iowa City VA Health Care System'),
(5140, 3835, 'no_lang_code', 'name', 'Pivotal Labs'),
(5141, 3836, 'en', 'name', 'Staten Island University Hospital'),
(5142, 3837, 'en', 'name', 'University of Matanzas, University of Matanzas "Camilo Cienfuegos"'),
(5143, 3837, 'es', 'name', 'Universidad de Matanzas "Camilo Cienfuegos"'),
(5144, 3838, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ Ń†ŠµŠ½Ń‚ŃŠŃ€ по обществено зГраве Šø анализи'),
(5145, 3838, 'en', 'name', 'National Center of Public Health and Analyses'),
(5146, 3839, 'en', 'name', 'University of Mogi das Cruzes'),
(5147, 3839, 'pt', 'name', 'Universidade de Mogi das Cruzes'),
(5148, 3840, 'no_lang_code', 'name', 'National Grid (United Kingdom)'),
(5149, 3841, 'en', 'name', 'Rangaraya Medical College'),
(5150, 3842, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القدس'),
(5151, 3842, 'en', 'name', 'Al-Quds University'),
(5152, 3842, 'he', 'name', '××•× ×™×‘×Ø×”×™×˜×Ŗ אל-קודה'),
(5153, 3843, 'en', 'name', 'National Institute for Occupational Health'),
(5154, 3844, 'fr', 'name', 'Centre Hospitalier Edmond Garcin'),
(5155, 3845, 'en', 'name', 'Porter Adventist Hospital'),
(5156, 3845, 'fr', 'name', 'HƓpital adventiste porter'),
(5157, 3846, 'fr', 'name', 'HƓpital Boucicaut'),
(5158, 3847, 'en', 'name', 'Chase Farm Hospital'),
(5159, 3848, 'bn', 'name', 'ইসলামী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(5160, 3848, 'en', 'name', 'Islamic University'),
(5161, 3849, 'en', 'name', 'Tianjin Medical University Eye Hospital'),
(5162, 3850, 'en', 'name', 'Tokyo Teishin Hospital'),
(5163, 3850, 'ja', 'name', 'ę±äŗ¬é€“äæ”ē—…é™¢'),
(5164, 3851, 'en', 'name', 'Children''s Hospital & Medical Center'),
(5165, 3852, 'en', 'name', 'Hunan University of Technology'),
(5166, 3853, 'en', 'name', 'University Park Pathology Associates'),
(5167, 3854, 'en', 'name', 'Akashi Medical Center'),
(5168, 3854, 'ja', 'name', 'ę˜ŽēŸ³åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5169, 3855, 'en', 'name', 'Have Dreams'),
(5170, 3856, 'en', 'name', 'Saint Francis Health System'),
(5171, 3857, 'no_lang_code', 'name', 'Prime Focus World'),
(5172, 3858, 'de', 'name', 'BG UniversitƤtsklinikum Bergmannsheil Bochum'),
(5173, 3858, 'en', 'name', 'BG University Hospital Bergmannsheil Bochum'),
(5174, 3859, 'no_lang_code', 'name', 'UK Coal'),
(5175, 3860, 'es', 'name', 'Hospital Metropolitano'),
(5176, 3861, 'en', 'name', 'Aaron Diamond AIDS Research Center'),
(5177, 3862, 'en', 'name', 'Cheikh Anta Diop University'),
(5178, 3862, 'fr', 'name', 'UniversitƩ Cheikh Anta Diop'),
(5179, 3863, 'en', 'name', 'Washington State Board of Education'),
(5180, 3864, 'no_lang_code', 'name', 'Western Forest Products'),
(5181, 3865, 'en', 'name', 'Simpson College'),
(5182, 3866, 'en', 'name', 'Center for Infectious Disease Research'),
(5183, 3867, 'no_lang_code', 'name', 'IQuum (United States)'),
(5184, 3868, 'pt', 'name', 'Hospital Garcia de Orta'),
(5185, 3869, 'en', 'name', 'Royal Darwin Hospital'),
(5186, 3870, 'ja', 'name', '一橋大学'),
(5187, 3870, 'no_lang_code', 'name', 'Hitotsubashi University'),
(5188, 3871, 'en', 'name', 'Ifakara Health Institute'),
(5189, 3872, 'no_lang_code', 'name', 'XMG Studio (Canada)'),
(5190, 3873, 'no_lang_code', 'name', 'Process Research Ortech (Canada)'),
(5191, 3874, 'en', 'name', 'Royal Edinburgh Hospital'),
(5192, 3875, 'en', 'name', 'Yehuda Abarbanel Mental Health Center'),
(5193, 3875, 'he', 'name', '××‘×Ø×‘× ××œ - ×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש'),
(5194, 3876, 'en', 'name', 'Center for Research and Telecommunication Experimentation for Networked Communities'),
(5195, 3877, 'en', 'name', 'Peking Union Medical College Hospital'),
(5196, 3877, 'zh', 'name', 'åŒ—äŗ¬åå’ŒåŒ»é™¢'),
(5197, 3878, 'en', 'name', 'Chaudhary Sarwan Kumar Himachal Pradesh Krishi Vishvavidyalaya'),
(5198, 3879, 'en', 'name', 'Buskerud University College'),
(5199, 3880, 'en', 'name', 'Saint Luke''s Hospital'),
(5200, 3881, 'en', 'name', 'Maccabi Health Care Services'),
(5201, 3881, 'he', 'name', 'מכבי שירותי ×‘×Ø×™××•×Ŗā€Ž'),
(5202, 3882, 'pt', 'name', 'Instituto Superior PolitƩcnico Gaya'),
(5203, 3883, 'en', 'name', 'Ronald Reagan UCLA Medical Center'),
(5204, 3884, 'en', 'name', 'Scripps Mercy Hospital'),
(5205, 3885, 'en', 'name', 'Beijing Hua Xin Hospital'),
(5206, 3885, 'zh', 'name', 'åŒ—äŗ¬åŽäæ”åŒ»é™¢'),
(5207, 3886, 'en', 'name', 'Saudi Aramco Medical Services Organization'),
(5208, 3887, 'en', 'name', 'Alliant International University'),
(5209, 3888, 'es', 'name', 'Hospital de Sagunto'),
(5210, 3889, 'no_lang_code', 'name', 'Phylonix (United States)'),
(5211, 3890, 'en', 'name', 'Pusan National University Yangsan Hospital'),
(5212, 3890, 'ko', 'name', 'ģ–‘ģ‚°ė¶€ģ‚°ėŒ€ķ•™źµė³‘ģ›'),
(5213, 3891, 'no_lang_code', 'name', 'Voestalpine (Austria)'),
(5214, 3892, 'en', 'name', 'Kaiser Permanente Santa Rosa Medical Center'),
(5215, 3893, 'en', 'name', 'Reading Hospital'),
(5216, 3894, 'en', 'name', 'Kilimanjaro Christian Medical Centre'),
(5217, 3894, 'sw', 'name', 'KCMC'),
(5218, 3895, 'tr', 'name', 'Etimesgut Asker Hastanesi'),
(5219, 3896, 'no_lang_code', 'name', 'Materials and Electrochemical Research (United States)'),
(5220, 3897, 'en', 'name', 'Resurrection Health Care'),
(5221, 3898, 'no_lang_code', 'name', 'Vaexjoe Energi Ab'),
(5222, 3899, 'no_lang_code', 'name', 'Beijing Chuiyangliu Hospital'),
(5223, 3899, 'zh', 'name', 'åŒ—äŗ¬åø‚åž‚ęØęŸ³åŒ»é™¢'),
(5224, 3900, 'no_lang_code', 'name', 'Agropur cooperative'),
(5225, 3901, 'it', 'name', 'Ospedale Sant''Anna'),
(5226, 3902, 'en', 'name', 'Maryland Science Center'),
(5227, 3903, 'pt', 'name', 'Centro UniversitƔrio de Belo Horizonte, Centro UniversitƔrio de belo Horizonte'),
(5228, 3904, 'fr', 'name', 'Centre Hospitalier Universitaire Henri-Mondor'),
(5229, 3905, 'en', 'name', 'Froedtert Menomonee Falls Hospital'),
(5230, 3906, 'en', 'name', 'Georgian Court University'),
(5231, 3907, 'no_lang_code', 'name', 'Advanced Fuel Research (United States)'),
(5232, 3908, 'en', 'name', 'Harris Health System'),
(5233, 3909, 'fi', 'name', 'ReumasƤƤtiƶn sairaala'),
(5234, 3910, 'no_lang_code', 'name', 'Olivieri Foods'),
(5235, 3911, 'tr', 'name', 'Rize Devlet Hastanesi'),
(5236, 3912, 'en', 'name', 'Scientific Committee On Oceanic Research'),
(5237, 3913, 'no_lang_code', 'name', 'Eurofins (France)'),
(5238, 3914, 'en', 'name', 'Credit Valley Hospital'),
(5239, 3915, 'en', 'name', 'Institute of Occupational Medicine and Environmental Health'),
(5240, 3915, 'pl', 'name', 'Instytut Medycyny Pracy i Zdrowia Środowiskowego'),
(5241, 3916, 'en', 'name', 'Smithsonian Astrophysical Observatory'),
(5242, 3916, 'es', 'name', 'Observatorio AstrofĆ­sico Smithsonian'),
(5243, 3917, 'en', 'name', 'National Institute on Deafness and Other Communication Disorders'),
(5244, 3918, 'es', 'name', 'Red Universitaria Nacional'),
(5245, 3919, 'en', 'name', 'Novant Health Forsyth Medical Center'),
(5246, 3920, 'en', 'name', 'Winthrop University'),
(5247, 3921, 'pt', 'name', 'Instituto de Engenharia de Sistemas e Computadores Investigação e Desenvolvimento'),
(5248, 3922, 'en', 'name', 'University of Wisconsin American Family Children''s Hospital'),
(5249, 3923, 'en', 'name', 'Gerontological Society of America'),
(5250, 3924, 'en', 'name', 'Al-Makassed Islamic Charitable Society Hospital'),
(5251, 3925, 'en', 'name', 'Leighton Hospital'),
(5252, 3926, 'en', 'name', 'Mater Children''s Hospital'),
(5253, 3927, 'en', 'name', 'Centre of Advanced Studies'),
(5254, 3928, 'en', 'name', 'Ardabil University of Medical Sciences'),
(5255, 3928, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§Ų±ŲÆŲØŪŒŁ„'),
(5256, 3929, 'en', 'name', 'Military Hospital of Tunis'),
(5257, 3930, 'en', 'name', 'Hanyang University Seoul Hospital'),
(5258, 3931, 'en', 'name', 'New Mexico VA Health Care System'),
(5259, 3932, 'en', 'name', 'Institute of Studies for the Integration of Systems'),
(5260, 3932, 'it', 'name', 'l’Istituto di Studi per l’Integrazione dei Sistemi'),
(5261, 3933, 'en', 'name', 'Colonial War Memorial Hospital'),
(5262, 3934, 'en', 'name', 'Sharp Mary Birch Hospital for Women & Newborns'),
(5263, 3935, 'en', 'name', 'Saint Michael''s Medical Center'),
(5264, 3936, 'en', 'name', 'Franciscan Hospital for Children'),
(5265, 3937, 'en', 'name', 'Park University'),
(5266, 3938, 'en', 'name', 'Buffalo General Medical Center'),
(5267, 3939, 'en', 'name', 'German Kazakh University'),
(5268, 3939, 'kk', 'name', 'Kazakhstan-Nemis Universitet'),
(5269, 3940, 'be', 'name', 'ŠœŠ°Š³Ń–Š»Ń‘ŃžŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń…Š°Ń€Ń‡Š°Š²Š°Š½Š½Ń'),
(5270, 3940, 'en', 'name', 'Mogilev State University of Food Technologies'),
(5271, 3941, 'en', 'name', 'Animal Health Trust'),
(5272, 3942, 'en', 'name', 'Gandhi Medical College'),
(5273, 3942, 'hi', 'name', 'ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤­ą„‹ą¤Ŗą¤¾ą¤²'),
(5274, 3942, 'te', 'name', 'గాంధీ ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(5275, 3943, 'en', 'name', 'Coriell Institute For Medical Research'),
(5276, 3944, 'no_lang_code', 'name', 'Intracom Telecom (Greece)'),
(5277, 3945, 'en', 'name', 'Lynn University'),
(5278, 3946, 'es', 'name', 'Hospital Vozandes'),
(5279, 3947, 'en', 'name', 'Shanghai Agrobiological Gene Center'),
(5280, 3947, 'zh', 'name', 'äøŠęµ·åø‚å†œäøšē”Ÿē‰©åŸŗå› äø­åæƒ'),
(5281, 3948, 'en', 'name', 'Helen Joseph Hospital'),
(5282, 3949, 'en', 'name', 'Fukuoka University'),
(5283, 3949, 'ja', 'name', 'ē¦å²”å¤§å­¦'),
(5284, 3950, 'en', 'name', 'Yeungnam University Medical Center'),
(5285, 3950, 'ko', 'name', 'ģ˜ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(5286, 3951, 'en', 'name', 'Oklahoma Baptist University'),
(5287, 3952, 'en', 'name', 'Shanghai Center For Bioinformation Technology'),
(5288, 3952, 'zh', 'name', 'äøŠęµ·ē”Ÿē‰©äæ”ęÆęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(5289, 3953, 'it', 'name', 'Ospedale San Luigi Gonzaga'),
(5290, 3954, 'en', 'name', 'Library of Congress'),
(5291, 3954, 'es', 'name', 'Biblioteca del Congreso de Estados Unidos'),
(5292, 3954, 'fr', 'name', 'BibliothĆØque du CongrĆØs'),
(5293, 3955, 'en', 'name', 'Hakodate Central General Hospital'),
(5294, 3955, 'ja', 'name', '函館中央病院'),
(5295, 3956, 'fr', 'name', 'HƓpital Jean-Verdier'),
(5296, 3957, 'en', 'name', 'Meir Medical Center'),
(5297, 3957, 'he', 'name', '×ž×Ø×›×– רפואי ×ž××™×Ø'),
(5298, 3958, 'en', 'name', 'Kempegowda Institute of Medical Sciences'),
(5299, 3958, 'kn', 'name', 'ą²•ą³†ą²‚ą²Ŗą³†ą³•ą²—ą³Œą²” ą²µą³†ą³–ą²¦ą³ą²Æą²•ą²æą³•ą²Æ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(5300, 3959, 'no_lang_code', 'name', 'Doosan (United Kingdom)'),
(5301, 3960, 'en', 'name', 'Louisiana State University at Eunice'),
(5302, 3960, 'fr', 'name', 'UniversitĆ© d''Ɖtat de louisiane Ć  eunice'),
(5303, 3961, 'en', 'name', 'Seirei Social Welfare Community'),
(5304, 3962, 'en', 'name', 'Norton Medical Centre'),
(5305, 3963, 'en', 'name', 'National Medical Center'),
(5306, 3964, 'en', 'name', 'San Giovanni Addolorata Hospital'),
(5307, 3964, 'it', 'name', 'Azienda Ospedaliera San Giovanni Addolorata'),
(5308, 3965, 'en', 'name', 'Guilan University of Medical Sciences'),
(5309, 3965, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŚÆŪŒŁ„Ų§Ł†'),
(5310, 3966, 'en', 'name', 'Johns Hopkins Bayview Medical Center'),
(5311, 3967, 'en', 'name', 'Jiangsu Province Hospital'),
(5312, 3967, 'zh', 'name', 'ę±Ÿč‹ēœäŗŗę°‘åŒ»é™¢'),
(5313, 3968, 'en', 'name', 'International Flame Research Foundation'),
(5314, 3968, 'it', 'name', 'Fondazione Internazionale per la Ricerca Sulla Combustione'),
(5315, 3969, 'en', 'name', 'Southern California University of Health Sciences'),
(5316, 3970, 'en', 'name', 'Lady Ridgeway Hospital for Children'),
(5317, 3970, 'si', 'name', 'ą¶»ą·’ą¶¢ą·Šą·€ą·š ą¶†ą¶»ą·Šą¶ŗą· ą·…ą¶øą· ą¶»ą·ą·„ą¶½'),
(5318, 3970, 'ta', 'name', 'ą®²ąÆ‡ą®Ÿą®æ ą®°ą®æą®ŸąÆą®œąÆą®µąÆ‡ ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆą®Æą®æą®²ąÆ'),
(5319, 3971, 'en', 'name', 'National Institute of General Medical Sciences'),
(5320, 3972, 'en', 'name', 'Henry M. Jackson Foundation'),
(5321, 3973, 'en', 'name', 'Southport and Formby District General Hospital'),
(5322, 3974, 'en', 'name', 'UK Health and Environment Research Institute'),
(5323, 3975, 'es', 'name', 'Hospital Clinico San Borja Arriaran, Hospital San Borja ArriarƔn'),
(5324, 3976, 'en', 'name', 'Medical Education Institute'),
(5325, 3977, 'en', 'name', 'University Hospital of North Durham'),
(5326, 3978, 'de', 'name', 'Lukaskrankenhaus'),
(5327, 3979, 'en', 'name', 'Brentwood Biomedical Research Institute'),
(5328, 3980, 'en', 'name', 'Conemaugh Memorial Medical Center'),
(5329, 3981, 'en', 'name', 'National Yunlin University of Science and Technology'),
(5330, 3982, 'he', 'name', 'אהותא ×ž×Ø×›×–×™× ×Ø×¤×•××™×™×'),
(5331, 3982, 'no_lang_code', 'name', 'Assuta Medical Center'),
(5332, 3983, 'en', 'name', 'Philadelphia Department of Public Health'),
(5333, 3984, 'pt', 'name', 'Hospital Pró-Cardíaco'),
(5334, 3985, 'en', 'name', 'VA St. Louis Health Care System'),
(5335, 3986, 'en', 'name', 'Kyungpook National University Hospital'),
(5336, 3986, 'ko', 'name', 'ź²½ė¶ėŒ€ķ•™źµė³‘ģ›'),
(5337, 3987, 'en', 'name', 'Resources For The Future'),
(5338, 3988, 'en', 'name', 'Russells Hall Hospital'),
(5339, 3989, 'en', 'name', 'Bozok University'),
(5340, 3989, 'tr', 'name', 'Bozok Universitesi'),
(5341, 3990, 'no_lang_code', 'name', 'BASF (Canada)'),
(5342, 3991, 'en', 'name', 'Redeemer University College'),
(5343, 3992, 'en', 'name', 'Baker University'),
(5344, 3993, 'da', 'name', 'Sundhedsstyrelsen'),
(5345, 3993, 'en', 'name', 'Danish Health and Medicines Authority, National Board of Health'),
(5346, 3994, 'de', 'name', 'FH Kufstein'),
(5347, 3994, 'en', 'name', 'University of Applied Sciences Kufstein'),
(5348, 3995, 'en', 'name', 'Guy''s Hospital'),
(5349, 3996, 'en', 'name', 'Sleep and Human Health Institute'),
(5350, 3997, 'en', 'name', 'Kokushikan University'),
(5351, 3997, 'ja', 'name', 'å›½å£«čˆ˜å¤§å­¦'),
(5352, 3998, 'en', 'name', 'Kudret Eye Hospital'),
(5353, 3998, 'tr', 'name', 'Kudret Gƶz Hastanesi'),
(5354, 3999, 'en', 'name', 'Queen Alexandra Hospital'),
(5355, 4000, 'en', 'name', 'Obstetrics and Gynecology Hospital of Fudan University'),
(5356, 4000, 'zh', 'name', 'å¤ę—¦å¤§å­¦é™„å±žå¦‡äŗ§ē§‘åŒ»é™¢'),
(5357, 4001, 'en', 'name', 'Olabisi Onabanjo University Teaching Hospital'),
(5358, 4002, 'en', 'name', 'Isra University'),
(5359, 4003, 'en', 'name', 'Boston Biomedical Research Institute'),
(5360, 4004, 'nl', 'name', 'Jeroen Bosch Ziekenhuis'),
(5361, 4005, 'no_lang_code', 'name', 'Stemcell Technologies'),
(5362, 4006, 'en', 'name', 'University of Agronomic Sciences and Veterinary Medicine of Bucharest'),
(5363, 4006, 'ro', 'name', 'Universitatea de Științe Agronomice și Medicină Veterinară din București'),
(5364, 4007, 'en', 'name', 'Southland Hospital'),
(5365, 4008, 'es', 'name', 'Hospital Nuestra SeƱora de Alarcos'),
(5366, 4009, 'en', 'name', 'Sansum Medical Clinic'),
(5367, 4010, 'no_lang_code', 'name', 'Cell and Tissue Systems (United States)'),
(5368, 4011, 'en', 'name', 'Letterkenny University Hospital'),
(5369, 4011, 'ga', 'name', 'OspidƩal GinearƔlta Leitir Ceanainn'),
(5370, 4012, 'en', 'name', 'Chelyabinsk State University'),
(5371, 4012, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(5372, 4013, 'en', 'name', 'Omar Bongo University'),
(5373, 4013, 'fr', 'name', 'UniversitƩ Omar Bongo'),
(5374, 4014, 'en', 'name', 'Science Research Laboratory'),
(5375, 4015, 'no_lang_code', 'name', 'Beta Technology Limited'),
(5376, 4016, 'en', 'name', 'University Hospital of the West Indies'),
(5377, 4017, 'en', 'name', 'Quaid-i-Azam University'),
(5378, 4017, 'ur', 'name', 'جامعہ قائداعظم'),
(5379, 4018, 'en', 'name', 'Indira Gandhi Institute of Child Health'),
(5380, 4019, 'no_lang_code', 'name', 'HÓpital Antoine-Béclère'),
(5381, 4020, 'en', 'name', 'Bhavnagar University'),
(5382, 4021, 'es', 'name', 'Hospital Universitario de Fuenlabrada'),
(5383, 4022, 'en', 'name', 'Alfred Health'),
(5384, 4023, 'en', 'name', 'Qazvin University of Medical Sciences'),
(5385, 4023, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓكي و Ų®ŲÆŁ…Ų§ŲŖ ŲÆŲ±Ł…Ų§Ł†ŁŠ Ł‚Ų²ŁˆŪŒŁ†'),
(5386, 4024, 'fr', 'name', 'Centre Hospitalier Universitaire Pointe-Ć -Pitre'),
(5387, 4025, 'en', 'name', 'Funabashi Central Hospital'),
(5388, 4025, 'ja', 'name', 'čˆ¹ę©‹äø­å¤®ē—…é™¢'),
(5389, 4026, 'pt', 'name', 'Hospital Santa Marcelina'),
(5390, 4027, 'en', 'name', 'Starship Children''s Health'),
(5391, 4028, 'en', 'name', 'Chinese Culture University'),
(5392, 4028, 'zh', 'name', 'äø­åœ‹ę–‡åŒ–å¤§å­ø'),
(5393, 4029, 'en', 'name', 'Daisy Hill Hospital'),
(5394, 4029, 'ga', 'name', 'Otharlann Chnoc na Nóiníní'),
(5395, 4030, 'pt', 'name', 'Hospital da Restauração'),
(5396, 4031, 'en', 'name', 'University of New Mexico Hospital'),
(5397, 4031, 'es', 'name', 'Hospital de la Universidad de Nuevo MƩxico'),
(5398, 4032, 'en', 'name', 'University of Louisville Hospital'),
(5399, 4033, 'no_lang_code', 'name', 'Seeders (South Korea)'),
(5400, 4034, 'en', 'name', 'Tzu Chi University'),
(5401, 4034, 'zh', 'name', 'ę…ˆęæŸå¤§å­ø'),
(5402, 4035, 'es', 'name', 'Hospital Virgen de los Lirios'),
(5403, 4036, 'en', 'name', 'The Association of the European Rail Industry,'),
(5404, 4036, 'fr', 'name', 'Union des Industries Ferroviaires EuropƩennes'),
(5405, 4037, 'fr', 'name', 'HƓtel-Dieu de Lyon'),
(5406, 4038, 'en', 'name', 'Sarah Lawrence College'),
(5407, 4039, 'fr', 'name', 'Centre Hospitalier Universitaire de Rabat-SalƩ'),
(5408, 4040, 'en', 'name', 'Yonsei University Health System'),
(5409, 4041, 'en', 'name', 'Guangzhou Chest Hospital'),
(5410, 4041, 'zh', 'name', 'å¹æå·žåø‚čƒøē§‘åŒ»é™¢'),
(5411, 4042, 'fr', 'name', 'HƓpital Civil de Charleroi'),
(5412, 4043, 'en', 'name', 'Father Muller Medical College Hospital'),
(5413, 4043, 'hi', 'name', 'फादर ą¤®ą„ą¤Æą„ą¤²ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(5414, 4043, 'kn', 'name', 'ą²«ą²¾ą²¦ą³†ą²°ą³ ą²®ą³ą²²ą³ą²²ą²°ą³ ą²®ą³†ą²”ą²æą²•ą²²ą³ ą²•ą²¾ą²³ą²œą³'),
(5415, 4043, 'ml', 'name', 'ą“«ą“¾ą“¦ąµ¼ ą“®ąµą“³ąµą“³ąµ†ąµ¼ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(5416, 4043, 'ta', 'name', 'ą®Ŗą®¾ą®¤ą®°ąÆ ą®®ąÆą®²ąÆą®²ąÆ†ą®°ąÆ ą®®ąÆ†ą®Ÿą®æą®•ąÆą®•ą®²ąÆ ą®•ą®¾ą®²ąÆ‡ą®œąÆ'),
(5417, 4043, 'te', 'name', 'ą°«ą°¾ą°¦ą°°ą± ą°®ą±ą°²ą±ą°²ą±†ą°°ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°•ą°¾ą°²ą±‡ą°œą±'),
(5418, 4044, 'en', 'name', 'Notre Dame Seishin University'),
(5419, 4044, 'ja', 'name', 'ćƒŽćƒ¼ćƒˆćƒ«ćƒ€ćƒ ęø…åæƒå„³å­å¤§å­¦'),
(5420, 4045, 'en', 'name', 'International Space University'),
(5421, 4046, 'en', 'name', 'University Hospitals Geneva Medical Center'),
(5422, 4047, 'en', 'name', 'Hospital Ludovica'),
(5423, 4047, 'es', 'name', 'Hospital de NiƱos Superiora Sor Marƭa Ludovica'),
(5424, 4048, 'en', 'name', 'Beijing Computational Science Research Center'),
(5425, 4048, 'zh', 'name', 'åŒ—äŗ¬č®”ē®—ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(5426, 4049, 'en', 'name', 'Pinderfields Hospital'),
(5427, 4050, 'en', 'name', 'Sichuan Provincial Academy of Natural Resource Sciences'),
(5428, 4050, 'zh', 'name', 'å››å·ēœč‡Ŗē„¶čµ„ęŗē§‘å­¦é™¢'),
(5429, 4051, 'no_lang_code', 'name', 'Tamkang University'),
(5430, 4051, 'zh', 'name', '淔江大學'),
(5431, 4052, 'en', 'name', 'Third Affiliated Hospital of Sun Yat-sen University'),
(5432, 4053, 'en', 'name', 'Harold Wood Hospital'),
(5433, 4054, 'en', 'name', 'Nippon Steel Yawata Memorial Hospital'),
(5434, 4054, 'ja', 'name', 'č£½é‰„čØ˜åæµå…«å¹”ē—…é™¢'),
(5435, 4055, 'en', 'name', 'Health Sciences University of Hokkaido'),
(5436, 4055, 'ja', 'name', 'åŒ—ęµ·é“åŒ»ē™‚å¤§å­¦'),
(5437, 4056, 'en', 'name', 'Sequoia Hospital'),
(5438, 4057, 'en', 'name', 'Changwon National University'),
(5439, 4057, 'ko', 'name', 'ģ°½ģ›ėŒ€ķ•™źµ'),
(5440, 4058, 'en', 'name', 'RMIT University'),
(5441, 4059, 'en', 'name', 'National United University'),
(5442, 4060, 'en', 'name', 'Missouri Botanical Garden'),
(5443, 4061, 'en', 'name', 'VA Boston Healthcare System'),
(5444, 4062, 'tr', 'name', 'Dr. Siyami Ersek Göğüs Kalp Ve Damar Cerrahisi Eğitim Ve Araştırma Hastanesi'),
(5445, 4063, 'no_lang_code', 'name', 'Advanced Bioscience Laboratories (United States)'),
(5446, 4064, 'en', 'name', 'Saint Mary''s University of Minnesota'),
(5447, 4065, 'en', 'name', 'Interuniversity Consortium for Magnetic Resonance'),
(5448, 4065, 'it', 'name', 'Consorzio Interuniversitario Risonanze Magnetiche di Metallo Proteine'),
(5449, 4066, 'es', 'name', 'Complejo Hospitalario TorrecƔrdenas'),
(5450, 4067, 'no_lang_code', 'name', 'Renault (France)'),
(5451, 4068, 'en', 'name', 'Killingbeck'),
(5452, 4069, 'en', 'name', 'Lev Hasharon Hospital'),
(5453, 4069, 'he', 'name', '×ž×Ø×›×– רפואי ×œ×‘×Ø×™××•×Ŗ הנפש לב ×”×©×Ø×•×Ÿ'),
(5454, 4070, 'nl', 'name', 'Medisch Centrum Alkmaar'),
(5455, 4071, 'en', 'name', 'Mission Hospital'),
(5456, 4072, 'en', 'name', 'Catholic University of the Maule'),
(5457, 4072, 'es', 'name', 'Universidad Católica del Maule'),
(5458, 4073, 'en', 'name', 'National Institutes of Health Clinical Center'),
(5459, 4074, 'no_lang_code', 'name', 'Teer Coatings (United Kingdom)'),
(5460, 4075, 'en', 'name', 'Ibaraki Prefectural University of Health Sciences'),
(5461, 4075, 'ja', 'name', 'čŒØåŸŽēœŒē«‹åŒ»ē™‚å¤§å­¦'),
(5462, 4076, 'en', 'name', 'Allama Iqbal Medical College'),
(5463, 4076, 'ur', 'name', 'علامہ اقبال Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(5464, 4077, 'ja', 'name', 'ę—­å·åŽšē”Ÿē—…é™¢'),
(5465, 4077, 'no_lang_code', 'name', 'Asahikawa Kosei Hospital'),
(5466, 4078, 'en', 'name', 'UCLA Medical Center'),
(5467, 4079, 'en', 'name', 'Social Insurance Saitama Chuo Hospital'),
(5468, 4079, 'ja', 'name', 'åŸ¼ēŽ‰ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(5469, 4080, 'en', 'name', 'Far Eastern State Medical University'),
(5470, 4080, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(5471, 4081, 'en', 'name', 'Behavioral Health Research Center of the Southwest'),
(5472, 4082, 'en', 'name', 'University of Malawi'),
(5473, 4083, 'ko', 'name', 'ģ‚¼ģœ”ėŒ€ķ•™źµ'),
(5474, 4083, 'no_lang_code', 'name', 'Sahmyook University'),
(5475, 4084, 'en', 'name', 'University of Zulia'),
(5476, 4084, 'es', 'name', 'La Universidad del Zulia'),
(5477, 4085, 'fr', 'name', 'HƓtel-Dieu de France'),
(5478, 4086, 'ja', 'name', 'äŗ¬éƒ½ę”‚ē—…é™¢'),
(5479, 4086, 'no_lang_code', 'name', 'Kyoto Katsura Hospital'),
(5480, 4087, 'en', 'name', 'Abderrahmane Mami Hospital'),
(5481, 4088, 'en', 'name', 'Kuban State Medical University'),
(5482, 4088, 'ru', 'name', 'Кубанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(5483, 4089, 'en', 'name', 'Tamil Nadu Veterinary and Animal Sciences University'),
(5484, 4089, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®•ą®¾ą®²ąÆą®Øą®ŸąÆˆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(5485, 4090, 'pl', 'name', 'Wojewódzki Szpital Zespolony'),
(5486, 4091, 'en', 'name', 'Nambour General Hospital'),
(5487, 4092, 'en', 'name', 'Montreal Children''s Hospital'),
(5488, 4092, 'fr', 'name', 'HƓpital de MontrƩal pour enfants'),
(5489, 4093, 'en', 'name', 'Andong National University'),
(5490, 4093, 'ko', 'name', 'ģ•ˆė™ėŒ€ķ•™źµ'),
(5491, 4094, 'no_lang_code', 'name', 'CFD Research Corporation (United States)'),
(5492, 4095, 'en', 'name', 'Memorial Hospital of South Bend'),
(5493, 4096, 'en', 'name', 'Selma University'),
(5494, 4097, 'en', 'name', 'Sandwell General Hospital'),
(5495, 4098, 'en', 'name', 'University of Tulsa'),
(5496, 4098, 'fr', 'name', 'UniversitƩ de tulsa'),
(5497, 4099, 'en', 'name', 'University Heights Center'),
(5498, 4100, 'en', 'name', 'Education Development Center'),
(5499, 4101, 'fr', 'name', 'HƓpital d''Instruction des ArmƩes Sainte-Anne'),
(5500, 4102, 'en', 'name', 'Memorial Regional Hospital'),
(5501, 4103, 'el', 'name', 'ĪŸĻ†ĪøĪ±Ī»Ī¼ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(5502, 4103, 'en', 'name', 'Athens Eye Hospital'),
(5503, 4104, 'en', 'name', 'Sanford USD Medical Center'),
(5504, 4105, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد ŲØŲ¬ŲÆŲ©'),
(5505, 4105, 'en', 'name', 'King Fahad Hospital Jeddah'),
(5506, 4106, 'en', 'name', 'Saint Xavier University'),
(5507, 4107, 'en', 'name', 'Southern General Hospital'),
(5508, 4108, 'no_lang_code', 'name', 'Biomedware (United States)'),
(5509, 4109, 'ar', 'name', 'مستؓفى الدمام Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(5510, 4109, 'no_lang_code', 'name', 'Dammam Central Hospital'),
(5511, 4110, 'en', 'name', 'Seokyeong University'),
(5512, 4110, 'ko', 'name', 'ģ„œź²½ėŒ€ķ•™źµ'),
(5513, 4111, 'en', 'name', 'Connecticut Department of Mental Health and Addiction Services'),
(5514, 4112, 'no_lang_code', 'name', 'Invotek'),
(5515, 4113, 'ar', 'name', 'مستؓفى النهضة'),
(5516, 4113, 'no_lang_code', 'name', 'Al Nahdha Hospital'),
(5517, 4114, 'en', 'name', 'Ibis Reproductive Health'),
(5518, 4115, 'en', 'name', 'Mercy St. Vincent Medical Center'),
(5519, 4116, 'en', 'name', 'Baby Memorial Hospital'),
(5520, 4117, 'en', 'name', 'Rainbow Babies & Children''s Hospital'),
(5521, 4118, 'no_lang_code', 'name', 'Nova Chemicals (Canada)'),
(5522, 4119, 'en', 'name', 'Shin Kong WHS Memorial Hospital'),
(5523, 4120, 'de', 'name', 'Institut für Mobil- und Satellitenfunktechnik'),
(5524, 4120, 'en', 'name', 'Institute for Mobile and Satellite Communication Technology'),
(5525, 4121, 'no_lang_code', 'name', 'Academic Edge'),
(5526, 4122, 'en', 'name', 'Great Western Hospital'),
(5527, 4123, 'en', 'name', 'Shenzhen Third People’s Hospital'),
(5528, 4123, 'zh', 'name', 'ę·±åœ³åø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(5529, 4124, 'ja', 'name', 'å…µåŗ«ēœŒē«‹č„æå®®ē—…é™¢'),
(5530, 4124, 'no_lang_code', 'name', 'Hyogo Prefectural Nishinomiya Hospital'),
(5531, 4125, 'en', 'name', 'Khyber Teaching Hospital'),
(5532, 4126, 'en', 'name', 'Southern Hills Medical Center'),
(5533, 4127, 'en', 'name', 'Telethon Foundation'),
(5534, 4127, 'it', 'name', 'Fondazione Telethon'),
(5535, 4128, 'en', 'name', 'American Society for Microbiology'),
(5536, 4129, 'en', 'name', 'Manchester Royal Eye Hospital'),
(5537, 4130, 'en', 'name', 'The Pirbright Institute'),
(5538, 4131, 'en', 'name', 'Sin-Lau Christian Hospital'),
(5539, 4132, 'no_lang_code', 'name', 'Apption'),
(5540, 4133, 'en', 'name', 'R. K. Khan Hospital'),
(5541, 4134, 'no_lang_code', 'name', 'Nokia (Belgium)'),
(5542, 4135, 'en', 'name', 'LAC+USC Medical Center'),
(5543, 4136, 'no_lang_code', 'name', 'SOLINET'),
(5544, 4137, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ بجازان'),
(5545, 4137, 'en', 'name', 'King Fahad Central Hospital'),
(5546, 4138, 'ar', 'name', 'المستؓفى Ų§Ł„Ų£Ł…ŁŠŲ±ŁŠ'),
(5547, 4138, 'no_lang_code', 'name', 'Amiri Hospital'),
(5548, 4139, 'en', 'name', 'University Hospital Limerick'),
(5549, 4139, 'ga', 'name', 'OspidƩal na hOllscoile, Luimneach'),
(5550, 4140, 'en', 'name', 'Arkansas State Department of Human Services'),
(5551, 4141, 'en', 'name', 'Southern University at Shreveport'),
(5552, 4142, 'en', 'name', 'Government Medical College'),
(5553, 4143, 'en', 'name', 'Wuhan Medical Center for Women and Children'),
(5554, 4144, 'en', 'name', 'Stavropol State Medical University'),
(5555, 4144, 'ru', 'name', 'Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(5556, 4145, 'cy', 'name', 'Prifysgol Westminster'),
(5557, 4145, 'en', 'name', 'University of Westminster'),
(5558, 4146, 'en', 'name', 'Cape Cod Hospital'),
(5559, 4147, 'en', 'name', 'California Baptist University'),
(5560, 4148, 'en', 'name', 'Central Institute for the Deaf'),
(5561, 4149, 'en', 'name', 'Launceston General Hospital'),
(5562, 4150, 'it', 'name', 'Ospedale di Livorno'),
(5563, 4151, 'en', 'name', 'Osaka University of Health and Sport Sciences'),
(5564, 4151, 'ja', 'name', 'å¤§é˜Ŗä½“č‚²å¤§å­¦'),
(5565, 4152, 'no_lang_code', 'name', 'New England Biolabs (United States)'),
(5566, 4153, 'en', 'name', 'Caroline Chisholm Centre for Health Ethics'),
(5567, 4154, 'en', 'name', 'Centre for Mental Health'),
(5568, 4155, 'no_lang_code', 'name', 'Pilkington (United Kingdom)'),
(5569, 4156, 'no_lang_code', 'name', 'Jennerex Biotherapeutics (Canada)'),
(5570, 4157, 'no_lang_code', 'name', 'Encana (Canada)'),
(5571, 4158, 'fr', 'name', 'Institut SƩnƩgalais de Recherches Agricoles'),
(5572, 4159, 'en', 'name', 'Carlo Forlanini Hospital'),
(5573, 4160, 'en', 'name', 'Alder Hey Children''s Hospital'),
(5574, 4161, 'en', 'name', 'St.John''s Medical College Hospital'),
(5575, 4162, 'en', 'name', 'Atlanta VA Medical Center'),
(5576, 4163, 'no_lang_code', 'name', 'Xerox (Canada)'),
(5577, 4164, 'en', 'name', 'American Hospital Association'),
(5578, 4165, 'no_lang_code', 'name', 'Pouliadis Associates Corporation'),
(5579, 4166, 'en', 'name', 'Yunnan University of Traditional Chinese Medicine'),
(5580, 4166, 'zh', 'name', 'äŗ‘å—äø­åŒ»čÆå¤§å­¦'),
(5581, 4167, 'de', 'name', 'Leibniz-Institut für Festkörper- und Werkstoffforschung Dresden'),
(5582, 4167, 'en', 'name', 'Leibniz Institute for Solid State and Materials Research'),
(5583, 4168, 'no_lang_code', 'name', 'Kantar Health (United States)'),
(5584, 4169, 'en', 'name', 'National Hispanic University'),
(5585, 4170, 'en', 'name', 'Children''s Mercy Hospital'),
(5586, 4171, 'en', 'name', 'Health Protection Scotland'),
(5587, 4172, 'en', 'name', 'Guthrie Hospice'),
(5588, 4173, 'no_lang_code', 'name', 'PSA Peugeot Citroƫn (France)'),
(5589, 4174, 'en', 'name', 'Thomas Jefferson University Hospital'),
(5590, 4175, 'en', 'name', 'Clalit Health Services'),
(5591, 4175, 'he', 'name', 'שירותי בריאות ×›×œ×œ×™×Ŗ'),
(5592, 4176, 'en', 'name', 'University Hospital of Alexandroupolis'),
(5593, 4177, 'en', 'name', 'Public Health Solutions'),
(5594, 4178, 'en', 'name', 'Shahid Bahonar University of Kerman'),
(5595, 4178, 'fa', 'name', 'دانؓگاه Ų“Ł‡ŪŒŲÆ باهنر کرمان'),
(5596, 4179, 'en', 'name', 'Pennsylvania Department of Human Services'),
(5597, 4180, 'en', 'name', 'Nil Ratan Sircar Medical College and Hospital'),
(5598, 4180, 'ne', 'name', 'ą¤Øą„€ą¤² रतन सरकार ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ र ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(5599, 4181, 'en', 'name', 'Wise & Munro Learning Research'),
(5600, 4182, 'en', 'name', 'Fenway Health'),
(5601, 4183, 'en', 'name', 'National Cheng Kung University Hospital'),
(5602, 4184, 'en', 'name', 'Canadian Dairy Network'),
(5603, 4185, 'no_lang_code', 'name', 'Baylis Medical (Canada)'),
(5604, 4186, 'en', 'name', 'Airedale General Hospital'),
(5605, 4187, 'pt', 'name', 'Universidade de Franca'),
(5606, 4188, 'en', 'name', 'KIST Medical College'),
(5607, 4189, 'en', 'name', 'Kintampo Health Research Centre'),
(5608, 4190, 'en', 'name', 'SRM Institute of Science and Technology');
INSERT INTO `ror_settings` VALUES
(5609, 4190, 'ta', 'name', 'திரு. ą®‡ą®°ą®¾ą®®ą®šą®¾ą®®ą®æ ą®Øą®æą®©ąÆˆą®µąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(5610, 4191, 'en', 'name', 'Taipei Medical University'),
(5611, 4192, 'en', 'name', 'Polyclinic General Hospital'),
(5612, 4193, 'en', 'name', 'Hizen Psychiatric Center'),
(5613, 4193, 'ja', 'name', 'č‚„å‰ē²¾ē„žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5614, 4194, 'no_lang_code', 'name', 'Airbus (Spain)'),
(5615, 4195, 'ja', 'name', 'ę—„ęœ¬åŒ»ē§‘å¤§å­¦åƒč‘‰åŒ—ē·ē—…é™¢'),
(5616, 4195, 'no_lang_code', 'name', 'Chiba Hokusou Hospital'),
(5617, 4196, 'en', 'name', 'Sriram Chandra Bhanja Medical College Hospital'),
(5618, 4196, 'or', 'name', 'ą¬¶ą­ą¬°ą­€ą¬°ą¬¾ą¬® ą¬šą¬Øą­ą¬¦ą­ą¬° ą¬­ą¬žą­ą¬œ ą¬­ą­‡ą¬·ą¬œ ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(5619, 4197, 'en', 'name', 'Hunter New England Local Health District'),
(5620, 4198, 'en', 'name', 'Mater Hospital'),
(5621, 4199, 'en', 'name', 'Royal Surrey NHS Foundation Trust'),
(5622, 4200, 'en', 'name', 'Massachusetts Department of Public Health'),
(5623, 4201, 'en', 'name', 'St Mary''s Hospital'),
(5624, 4202, 'en', 'name', 'Washington DC VA Medical Center'),
(5625, 4203, 'en', 'name', 'Hokkaido Institute of Public Health'),
(5626, 4203, 'ja', 'name', 'åŒ—ęµ·é“ē«‹č”›ē”Ÿē ”ē©¶ę‰€'),
(5627, 4204, 'en', 'name', 'Bangalore University'),
(5628, 4204, 'fr', 'name', 'UniversitƩ de bangalore'),
(5629, 4204, 'hi', 'name', 'ą¤¬ą¤‚ą¤—ą¤²ą„Œą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(5630, 4204, 'kn', 'name', 'ಬೆಂಗಳೂರು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(5631, 4204, 'mr', 'name', 'ą¤¬ą¤‚ą¤—ą¤³ą„ą¤°ą„‚ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(5632, 4204, 'ta', 'name', 'ą®ŖąÆ†ą®™ąÆą®•ą®³ąÆ‚ą®°ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(5633, 4204, 'te', 'name', 'బెంగుళూరు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(5634, 4205, 'nl', 'name', 'Altrecht GGZ'),
(5635, 4206, 'en', 'name', 'Global Medical Imaging'),
(5636, 4207, 'en', 'name', 'Kansas City VA Medical Center'),
(5637, 4208, 'en', 'name', 'Oita University Hospital'),
(5638, 4208, 'ja', 'name', 'å¤§åˆ†å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(5639, 4209, 'en', 'name', 'MRC Human Nutrition Research'),
(5640, 4210, 'no_lang_code', 'name', 'Bolder Biotechnology, Inc.'),
(5641, 4211, 'en', 'name', 'Botsford Hospital'),
(5642, 4212, 'en', 'name', 'Jacksonville University'),
(5643, 4212, 'es', 'name', 'Universidad de Jacksonville'),
(5644, 4212, 'fr', 'name', 'UniversitƩ de jacksonville'),
(5645, 4213, 'en', 'name', 'Scunthorpe General Hospital'),
(5646, 4214, 'no_lang_code', 'name', 'Inovamais'),
(5647, 4215, 'en', 'name', 'Eisenhower Medical Center'),
(5648, 4216, 'no_lang_code', 'name', 'D''Appolonia (Italy)'),
(5649, 4217, 'en', 'name', 'Madras Medical College'),
(5650, 4217, 'ta', 'name', 'மதராசு ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(5651, 4217, 'te', 'name', 'ą°®ą°¦ą±ą°°ą°¾ą°øą± ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(5652, 4218, 'el', 'name', 'ĪšĪ©ĪĪ£Ī¤Ī‘ĪĪ¤ĪŸĪ ĪŸĪ„Ī›Ī•Ī™ĪŸ Ī“Ī•ĪĪ™ĪšĪŸ ĪĪŸĪ£ĪŸĪšĪŸĪœĪ•Ī™ĪŸ ĪĪ•Ī‘Ī£ Ī™Ī©ĪĪ™Ī‘Ī£'),
(5653, 4218, 'en', 'name', 'Agia Olga Hospital'),
(5654, 4219, 'ar', 'name', 'أطفال مستؓفى ŲŖŁˆŁ†Ų³'),
(5655, 4219, 'en', 'name', 'Children''s Hospital'),
(5656, 4220, 'fr', 'name', 'HƓpital Albert-Chenevier'),
(5657, 4221, 'en', 'name', 'Dartmouth Institute for Health Policy and Clinical Practice'),
(5658, 4222, 'en', 'name', 'Tumaini University'),
(5659, 4222, 'sw', 'name', 'Chuo Kikuu cha Tumaini'),
(5660, 4223, 'en', 'name', 'American Academy of Pediatrics'),
(5661, 4224, 'en', 'name', 'Kootenai Medical Center'),
(5662, 4225, 'en', 'name', 'Mercy Medical Center'),
(5663, 4226, 'en', 'name', 'The Graduate University for Advanced Studies, SOKENDAI'),
(5664, 4226, 'ja', 'name', 'ē·åˆē ”ē©¶å¤§å­¦é™¢å¤§å­¦'),
(5665, 4227, 'no_lang_code', 'name', 'National Nuclear Corporation (United Kingdom)'),
(5666, 4228, 'en', 'name', 'Frankston Hospital'),
(5667, 4229, 'it', 'name', 'Ospedale Martini'),
(5668, 4230, 'es', 'name', 'Hospital General de La Rioja'),
(5669, 4231, 'en', 'name', 'Fatima Jinnah Medical University'),
(5670, 4231, 'ur', 'name', 'فاطمہ جناح Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(5671, 4232, 'en', 'name', 'Gentofte Hospital'),
(5672, 4233, 'it', 'name', 'Ospedale Buccheri la Ferla Fatebenefratelli'),
(5673, 4234, 'en', 'name', 'Jiangsu Normal University'),
(5674, 4234, 'zh', 'name', 'ę±Ÿč‹åøˆčŒƒå¤§å­¦'),
(5675, 4235, 'en', 'name', 'Minot State University'),
(5676, 4235, 'fr', 'name', 'UniversitĆ© d''Ɖtat de minot'),
(5677, 4236, 'ja', 'name', 'å¤§é˜Ŗę•™č‚²å¤§å­¦'),
(5678, 4236, 'no_lang_code', 'name', 'Osaka Kyoiku University'),
(5679, 4237, 'en', 'name', 'Garrahan Hospital'),
(5680, 4238, 'en', 'name', 'Tumor Hospital of Guangxi Medical University'),
(5681, 4238, 'zh', 'name', 'å¹æč„æåŒ»ē§‘å¤§å­¦č‚æē˜¤åŒ»é™¢'),
(5682, 4239, 'es', 'name', 'Institut d''Investigació Aplicada de l''Automòbil'),
(5683, 4239, 'no_lang_code', 'name', 'Applus+ IDIADA (Spain)'),
(5684, 4240, 'fr', 'name', 'HƓpital Universitaire Dupuytren'),
(5685, 4241, 'no_lang_code', 'name', 'Micralyne'),
(5686, 4242, 'en', 'name', 'The University of Texas of the Permian Basin'),
(5687, 4243, 'en', 'name', 'Department of Defence'),
(5688, 4244, 'en', 'name', 'Stockholm Environment Institute'),
(5689, 4245, 'ja', 'name', 'ćƒšćƒ—ćƒćƒ‰ćƒŖćƒ¼ćƒ '),
(5690, 4245, 'no_lang_code', 'name', 'Peptidream (Japan)'),
(5691, 4246, 'no_lang_code', 'name', 'Sinhgad Dental College and Hospital'),
(5692, 4247, 'cy', 'name', 'Ysbyty Stoke Mandeville'),
(5693, 4247, 'en', 'name', 'Stoke Mandeville Hospital'),
(5694, 4248, 'en', 'name', 'MRC Epidemiology Unit'),
(5695, 4249, 'en', 'name', 'New Mexico Regional Federal Medical Center'),
(5696, 4250, 'en', 'name', 'Nishijin Hospital'),
(5697, 4250, 'ja', 'name', '脿陣病院'),
(5698, 4251, 'en', 'name', 'Gelre Hospitals'),
(5699, 4251, 'nl', 'name', 'Gelre Ziekenhuizen'),
(5700, 4252, 'es', 'name', 'Hospital del NiƱo'),
(5701, 4253, 'en', 'name', 'Temple Street Children''s University Hospital'),
(5702, 4254, 'en', 'name', 'Ohio Northern University'),
(5703, 4255, 'en', 'name', 'Greenville Memorial Hospital'),
(5704, 4256, 'no_lang_code', 'name', 'Enel (Italy)'),
(5705, 4257, 'fr', 'name', 'Hopital Universitaire Habib Bourguiba'),
(5706, 4258, 'pl', 'name', 'Wojewódzki Szpital Zespolony im. Jędrzeja Śniadeckiego'),
(5707, 4259, 'en', 'name', 'Shodair Children''s Hospital'),
(5708, 4260, 'en', 'name', 'Michael E. DeBakey VA Medical Center'),
(5709, 4261, 'en', 'name', 'Sinai Hospital'),
(5710, 4262, 'en', 'name', 'Royal Manchester Children''s Hospital'),
(5711, 4263, 'en', 'name', 'Liaocheng People''s Hospital'),
(5712, 4263, 'zh', 'name', 'čŠåŸŽåø‚äŗŗę°‘åŒ»é™¢'),
(5713, 4264, 'no_lang_code', 'name', 'Jaslok Hospital'),
(5714, 4265, 'fr', 'name', 'HƓpital Saint-Jacques'),
(5715, 4266, 'en', 'name', 'Shuto General Hospital'),
(5716, 4266, 'ja', 'name', 'å‘Øę±ē·åˆē—…é™¢'),
(5717, 4267, 'en', 'name', 'Institute for Medical Research and Occupational Health'),
(5718, 4268, 'en', 'name', 'Southeastern Louisiana University'),
(5719, 4268, 'es', 'name', 'Universidad del Sudeste de Luisiana'),
(5720, 4269, 'en', 'name', 'Hermanos Ameijeiras Hospital'),
(5721, 4269, 'es', 'name', 'Hospital ClĆ­nico QuirĆŗrgico "Hermanos Ameijeiras"'),
(5722, 4270, 'en', 'name', 'Deaconess Hospital'),
(5723, 4271, 'en', 'name', 'Guangzhou Eighth People''s Hospital'),
(5724, 4271, 'zh', 'name', 'å¹æå·žåø‚ē¬¬å…«äŗŗę°‘åŒ»é™¢'),
(5725, 4272, 'en', 'name', 'Tamil University'),
(5726, 4272, 'ml', 'name', 'ą“¤ą“®ą“æą““ąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(5727, 4272, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®¤ą®žąÆą®šą®¾ą®µąÆ‚ą®°ąÆ'),
(5728, 4273, 'ar', 'name', 'مستؓفى ابن Ų³ŁŠŁ†Ų§'),
(5729, 4273, 'no_lang_code', 'name', 'Ibn Sina Hospital'),
(5730, 4274, 'bn', 'name', 'আসাম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(5731, 4274, 'en', 'name', 'Assam University'),
(5732, 4274, 'hi', 'name', 'असम ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(5733, 4275, 'en', 'name', 'Kanazawa Medical University'),
(5734, 4275, 'ja', 'name', 'é‡‘ę²¢åŒ»ē§‘å¤§å­¦'),
(5735, 4276, 'en', 'name', 'MRC Toxicology Unit'),
(5736, 4277, 'en', 'name', 'Mitsubishi Kyoto Hospital'),
(5737, 4277, 'ja', 'name', 'äø‰č±äŗ¬éƒ½ē—…é™¢'),
(5738, 4278, 'en', 'name', 'Institute of the Pupils of the Army'),
(5739, 4278, 'pt', 'name', 'Instituto dos Pupilos do ExƩrcito'),
(5740, 4279, 'en', 'name', 'University of South Alabama Medical Center'),
(5741, 4280, 'no_lang_code', 'name', 'STMicroelectronics (Italy)'),
(5742, 4281, 'en', 'name', 'East Texas Medical Center'),
(5743, 4282, 'en', 'name', 'International University of Health and Welfare'),
(5744, 4282, 'ja', 'name', 'å›½éš›åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(5745, 4283, 'en', 'name', 'Kyung Hee University East-West Neo Medical Center'),
(5746, 4283, 'ko', 'name', 'ź²½ķ¬ėŒ€ķ•™źµ ė™ģ„œģ‹ ģ˜ķ•™ė³‘ģ› - ķ˜‘ģ§„ģ§„ė£Œģ„¼ķ„°'),
(5747, 4284, 'en', 'name', 'Martha-Maria Hospital'),
(5748, 4285, 'en', 'name', 'Los Alamos Medical Center'),
(5749, 4286, 'en', 'name', 'Miriam Hospital'),
(5750, 4287, 'en', 'name', 'Princess Royal Maternity Hospital'),
(5751, 4288, 'en', 'name', 'Benedictine University'),
(5752, 4289, 'en', 'name', 'Ewha Womans University'),
(5753, 4289, 'ko', 'name', 'ģ“ķ™”ģ—¬ģžėŒ€ķ•™źµ'),
(5754, 4290, 'en', 'name', 'Royal Bolton Hospital'),
(5755, 4291, 'en', 'name', 'Sichuan University of Science and Engineering'),
(5756, 4291, 'zh', 'name', 'å››å·ē†å·„å­¦é™¢'),
(5757, 4292, 'tr', 'name', 'Pamukkale Üniversitesi Hastaneleri'),
(5758, 4293, 'en', 'name', 'Primary Children''s Hospital'),
(5759, 4294, 'en', 'name', 'Osaka Dental University'),
(5760, 4294, 'ja', 'name', 'å¤§é˜Ŗę­Æē§‘å¤§å­¦'),
(5761, 4295, 'en', 'name', 'Sevastopol National Technical University'),
(5762, 4295, 'ru', 'name', 'Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(5763, 4295, 'uk', 'name', 'Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(5764, 4296, 'no_lang_code', 'name', 'Fujitsu (United Kingdom)'),
(5765, 4297, 'en', 'name', 'Kenyatta National Hospital'),
(5766, 4298, 'no_lang_code', 'name', 'Biomedical Development Corporation'),
(5767, 4299, 'en', 'name', 'Santa Maria Nuova Hospital'),
(5768, 4299, 'it', 'name', 'Ospedale di Santa Maria Nuova'),
(5769, 4300, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ خالد'),
(5770, 4300, 'en', 'name', 'King Khaled Hospital'),
(5771, 4301, 'en', 'name', 'Ryhov Hospital Jƶnkƶping'),
(5772, 4302, 'ja', 'name', 'č‰åŠ åø‚ē«‹ē—…é™¢'),
(5773, 4302, 'no_lang_code', 'name', 'Soka Municipal Hospital'),
(5774, 4303, 'en', 'name', 'University Children''s Hospital, Belgrade'),
(5775, 4303, 'sr', 'name', 'Univerzitetska dečja klinika u Beogradu'),
(5776, 4304, 'en', 'name', 'Lviv Polytechnic National University'),
(5777, 4304, 'pl', 'name', 'Politechnika Lwowska'),
(5778, 4304, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š›ŃŒŠ²Š¾Š²ŃŠŗŠ°Ń политехника»'),
(5779, 4304, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° політехніка»'),
(5780, 4305, 'en', 'name', 'Public Health – Seattle & King County'),
(5781, 4306, 'en', 'name', 'New Jersey City University'),
(5782, 4307, 'tr', 'name', 'Ankara Atatürk Göğüs Hastalıkları Ve Göğüs Cerrahisi Eğitim Ve Araştırma Hastanesi'),
(5783, 4308, 'en', 'name', 'Gifu Red Cross Hospital'),
(5784, 4308, 'ja', 'name', 'å²é˜œčµ¤åå­—ē—…é™¢'),
(5785, 4309, 'fr', 'name', 'HƓpital Maison Blanche'),
(5786, 4310, 'no_lang_code', 'name', 'Universal Hi-Tech Development'),
(5787, 4311, 'en', 'name', 'Chang Gung Children''s Hospital'),
(5788, 4312, 'en', 'name', 'Queen Margaret Hospital'),
(5789, 4313, 'en', 'name', 'Framingham Union Hospital'),
(5790, 4314, 'en', 'name', 'Central Connecticut State University'),
(5791, 4314, 'es', 'name', 'Universidad Estatal de Connecticut Central'),
(5792, 4315, 'en', 'name', 'Holy Cross Hospital'),
(5793, 4316, 'en', 'name', 'Clinical Centre of Kragujevac'),
(5794, 4316, 'sr', 'name', 'ŠšŠ»ŠøŠ½ŠøŃ‡ŠŗŠø центар ŠšŃ€Š°Š³ŃƒŃ˜ŠµŠ²Š°Ń†'),
(5795, 4317, 'en', 'name', 'Arkansas Department of Health'),
(5796, 4318, 'en', 'name', 'Ningbo No.6 Hospital'),
(5797, 4318, 'zh', 'name', 'å®ę³¢åø‚ē¬¬å…­åŒ»é™¢'),
(5798, 4319, 'en', 'name', 'Hera General Hospital'),
(5799, 4320, 'no_lang_code', 'name', 'Glencore (Switzerland)'),
(5800, 4321, 'en', 'name', 'Chungbuk National University Hospital'),
(5801, 4322, 'en', 'name', 'Ministry of Health'),
(5802, 4322, 'vi', 'name', 'Bį»™ Y tįŗæ (Việt Nam)'),
(5803, 4323, 'en', 'name', 'Association of European Renewable Energy Research Centres'),
(5804, 4324, 'nl', 'name', 'Kiwa'),
(5805, 4325, 'no_lang_code', 'name', 'CRE Group (United States)'),
(5806, 4326, 'fr', 'name', 'HƓpital de Sion'),
(5807, 4327, 'en', 'name', 'MRC Cognition and Brain Sciences Unit'),
(5808, 4328, 'en', 'name', 'Middlemore Hospital'),
(5809, 4329, 'en', 'name', 'Arkansas Foundation for Medical Care'),
(5810, 4330, 'ba', 'name', 'Юғары иҔтисаГ мәктәбе'),
(5811, 4330, 'en', 'name', 'National Research University Higher School of Economics'),
(5812, 4330, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń школа ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(5813, 4331, 'no_lang_code', 'name', 'Nimbus Landscape Materials (United States)'),
(5814, 4332, 'en', 'name', 'Union Hospital'),
(5815, 4333, 'no_lang_code', 'name', 'Ada Technologies (United States)'),
(5816, 4334, 'en', 'name', 'Oregon Department of Human Services'),
(5817, 4335, 'en', 'name', 'Baltimore County Department of Health'),
(5818, 4336, 'en', 'name', 'North Eastern Hill University'),
(5819, 4336, 'ur', 'name', 'نارتھ ایسٹ ہل ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(5820, 4337, 'en', 'name', 'Earth and Space Research'),
(5821, 4338, 'en', 'name', 'Saint Peter''s University Hospital'),
(5822, 4339, 'es', 'name', 'Hospital General Universitario de Albacete'),
(5823, 4340, 'it', 'name', 'Azienda Ospedaliera di Desio e Vimercate'),
(5824, 4341, 'en', 'name', 'Addenbrooke''s Hospital'),
(5825, 4342, 'de', 'name', 'Ɩsterreichische Agentur für Gesundheit und ErnƤhrungssicherheit'),
(5826, 4342, 'en', 'name', 'Austrian Agency for Health and Food Safety'),
(5827, 4343, 'en', 'name', 'Rose Medical Center'),
(5828, 4344, 'no_lang_code', 'name', 'Klein Buendel (United States)'),
(5829, 4345, 'en', 'name', 'John Innes Centre'),
(5830, 4346, 'it', 'name', 'Ospedale Monaldi'),
(5831, 4347, 'en', 'name', 'DR. B.R.A. Institute Rotary Cancer Hospital'),
(5832, 4348, 'en', 'name', 'University Hospital Medical Center at Treichville'),
(5833, 4348, 'fr', 'name', 'Centre Hospitalier Universitaire de Treichville'),
(5834, 4349, 'en', 'name', 'United States Office of Personnel Management'),
(5835, 4350, 'en', 'name', 'Stanley Medical College'),
(5836, 4350, 'ta', 'name', 'ą®‡ą®šąÆą®Ÿą®¾ą®©ąÆą®²ą®æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(5837, 4351, 'en', 'name', 'Bowie State University'),
(5838, 4352, 'en', 'name', 'Connecticut Mental Health Center'),
(5839, 4353, 'no_lang_code', 'name', 'Nanoprobes (United States)'),
(5840, 4354, 'en', 'name', 'Seoul St. Mary''s Hospital'),
(5841, 4355, 'no_lang_code', 'name', 'Applied Biological Materials (Canada)'),
(5842, 4356, 'en', 'name', 'Health Forecasting'),
(5843, 4357, 'en', 'name', 'Siksha O Anusandhan University'),
(5844, 4358, 'en', 'name', 'Children''s Hospital at Dartmouth Hitchcock'),
(5845, 4359, 'en', 'name', 'Aurora Sinai Medical Center'),
(5846, 4360, 'ar', 'name', 'مستؓفى عسير Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(5847, 4360, 'en', 'name', 'Asir Central Hospital'),
(5848, 4361, 'it', 'name', 'Ospedale di Monfalcone'),
(5849, 4362, 'en', 'name', 'SSM Health Care'),
(5850, 4363, 'en', 'name', 'The Keystone Center'),
(5851, 4364, 'es', 'name', 'Hospital Doctor HernƔn Henrƭquez Aravena'),
(5852, 4365, 'en', 'name', 'Penza State University'),
(5853, 4365, 'ru', 'name', 'Пензенский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(5854, 4366, 'en', 'name', 'Indira Gandhi Medical College'),
(5855, 4367, 'en', 'name', 'Metropolitan State University'),
(5856, 4368, 'no_lang_code', 'name', 'Virtually Better'),
(5857, 4369, 'en', 'name', 'Council of Chief State School Officers'),
(5858, 4370, 'ja', 'name', 'ć‚‚ć‚Šć®ćæć‚„ ć»ļ½“ć“ćŸļ½Œ'),
(5859, 4370, 'no_lang_code', 'name', 'Morinomiya Hospital'),
(5860, 4371, 'no_lang_code', 'name', 'Fortis Hospital'),
(5861, 4372, 'de', 'name', 'Kantonsspital Aarau'),
(5862, 4373, 'en', 'name', 'Nicosia General Hospital'),
(5863, 4374, 'en', 'name', 'Le Bonheur Children''s Hospital'),
(5864, 4375, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī Ī±Ļ„ĻĻŽĪ½'),
(5865, 4375, 'no_lang_code', 'name', 'Agios Andreas Hospital'),
(5866, 4376, 'fr', 'name', 'HƓpital Mustapha Pacha'),
(5867, 4377, 'en', 'name', 'Jinnah University for Women'),
(5868, 4377, 'ur', 'name', 'جناح ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ†'),
(5869, 4378, 'en', 'name', 'Gujarat Ayurved University'),
(5870, 4378, 'gu', 'name', 'ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖ†ąŖÆą«ąŖ°ą«ąŖµą«‡ąŖ¦ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(5871, 4378, 'hi', 'name', 'ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤†ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(5872, 4379, 'tr', 'name', 'Farabi Hastanesi'),
(5873, 4380, 'en', 'name', 'Princess Royal Hospital'),
(5874, 4381, 'ro', 'name', 'Spitalul Clinic de Recuperare'),
(5875, 4382, 'en', 'name', 'Sree Chitra Thirunal Institute for Medical Sciences and Technology'),
(5876, 4383, 'ja', 'name', '相澤病院'),
(5877, 4383, 'no_lang_code', 'name', 'Aizawa Hospital'),
(5878, 4384, 'en', 'name', 'Smith-Kettlewell Eye Research Institute'),
(5879, 4385, 'en', 'name', 'Metropolitan University of Educational Sciences'),
(5880, 4385, 'es', 'name', 'Universidad Metropolitana de Ciencias de la Educación'),
(5881, 4386, 'no_lang_code', 'name', 'Kestrel Corporation'),
(5882, 4387, 'pt', 'name', 'Hospital Maria Pia'),
(5883, 4388, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Σισμανόγλειο'),
(5884, 4388, 'en', 'name', 'Sismanoglio General Hospital'),
(5885, 4389, 'en', 'name', 'Kohat University of Science and Technology'),
(5886, 4390, 'en', 'name', 'University of Massachusetts Donahue Institute'),
(5887, 4391, 'en', 'name', 'Tokyo Yamate Medical Center'),
(5888, 4391, 'ja', 'name', 'ę±äŗ¬å±±ę‰‹ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(5889, 4392, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹äø­å¤®ē—…é™¢'),
(5890, 4392, 'no_lang_code', 'name', 'Kochi Municipal Central Hospital'),
(5891, 4393, 'en', 'name', 'IIT Research Institute'),
(5892, 4394, 'ar', 'name', 'وزارة الصحة'),
(5893, 4394, 'en', 'name', 'Ministry of Health'),
(5894, 4395, 'en', 'name', 'West Virginia Wesleyan College'),
(5895, 4396, 'en', 'name', 'Affiliated Hospital of Guangdong Medical College Hospital'),
(5896, 4397, 'es', 'name', 'Hospital del Trabajador'),
(5897, 4398, 'en', 'name', 'Hospital for Sick Children'),
(5898, 4399, 'ja', 'name', 'å‹åˆē—…é™¢'),
(5899, 4399, 'no_lang_code', 'name', 'Katsumata Hospital'),
(5900, 4400, 'en', 'name', 'Franklin Institute'),
(5901, 4401, 'fr', 'name', 'HƓpital Saint-Michel'),
(5902, 4402, 'fr', 'name', 'HƓpital Paule de Viguier'),
(5903, 4403, 'en', 'name', 'Hamamatsu University'),
(5904, 4403, 'ja', 'name', 'ęµœę¾å¤§å­¦'),
(5905, 4404, 'fr', 'name', 'Centre hospitalier Robert-Ballanger'),
(5906, 4405, 'en', 'name', 'Canadian Medical Association'),
(5907, 4405, 'fr', 'name', 'Association MƩdicale Canadienne'),
(5908, 4406, 'en', 'name', 'National Institute of Biomedical Genomics'),
(5909, 4407, 'en', 'name', 'Kansas Department for Children and Families'),
(5910, 4408, 'en', 'name', 'Punjab Institute of Medical Sciences'),
(5911, 4409, 'en', 'name', 'Medical Research Institute'),
(5912, 4410, 'en', 'name', 'Republic of Palau Ministry of Health'),
(5913, 4411, 'en', 'name', 'Northwest Research Associates'),
(5914, 4412, 'en', 'name', 'University of North Alabama'),
(5915, 4413, 'no_lang_code', 'name', 'Clinical Tools, Inc.'),
(5916, 4414, 'en', 'name', 'Southport and Ormskirk Hospital NHS Trust'),
(5917, 4415, 'no_lang_code', 'name', 'Nexeon (United Kingdom)'),
(5918, 4416, 'en', 'name', 'McGill University and GƩnome QuƩbec Innovation Centre'),
(5919, 4417, 'no_lang_code', 'name', 'Atom Sciences'),
(5920, 4418, 'en', 'name', 'Govind Ballabh Pant Hospital'),
(5921, 4419, 'en', 'name', 'Oral Roberts University'),
(5922, 4420, 'en', 'name', 'Hospital of Lithuanian University of Health Sciences Kaunas Clinics'),
(5923, 4420, 'lt', 'name', 'Lietuvos sveikatos mokslų universiteto ligoninė Kauno klinikos'),
(5924, 4421, 'no_lang_code', 'name', 'Qurient (South Korea)'),
(5925, 4422, 'en', 'name', 'Fujian Provincial Cancer Hospital'),
(5926, 4422, 'zh', 'name', 'ē¦å»ŗēœč‚æē˜¤åŒ»é™¢'),
(5927, 4423, 'en', 'name', 'VA Long Beach Healthcare System'),
(5928, 4424, 'ko', 'name', 'ė‹Øźµ­ėŒ€ķ•™źµ'),
(5929, 4424, 'no_lang_code', 'name', 'Dankook University'),
(5930, 4425, 'en', 'name', 'Sharp Cabrillo Hospital'),
(5931, 4426, 'en', 'name', 'Shaikh Zayed Postgraduate Medical Institute'),
(5932, 4426, 'ur', 'name', 'ؓیخ زید پوسٹ گریجویٹ Ł…ŪŒŚˆŪŒŚ©Ł„ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(5933, 4427, 'en', 'name', 'Medical Trust Hospital'),
(5934, 4428, 'en', 'name', 'BGS Global Hospital'),
(5935, 4429, 'en', 'name', 'Niabi Zoological Society'),
(5936, 4430, 'en', 'name', 'University Hospital of North Tees'),
(5937, 4431, 'en', 'name', 'Public Health Foundation of India'),
(5938, 4431, 'te', 'name', 'భారత ą°Ŗą±ą°°ą°œą°¾ą°°ą±‹ą°—ą±ą°Æ ą°øą°®ą°¾ą°–ą±ą°Æ'),
(5939, 4432, 'en', 'name', 'Promotion of Operational Links With Integrated Services'),
(5940, 4433, 'fr', 'name', 'HƓpital Foch'),
(5941, 4434, 'en', 'name', 'Des Moines University'),
(5942, 4434, 'fr', 'name', 'UniversitƩ de des moines'),
(5943, 4435, 'en', 'name', 'Royal United Hospital Bath NHS Trust'),
(5944, 4436, 'en', 'name', 'Kingston Hospital NHS Trust'),
(5945, 4437, 'en', 'name', 'Kaiser Foundation Hospital'),
(5946, 4438, 'en', 'name', 'Nikko Memorial Hospital'),
(5947, 4438, 'ja', 'name', 'ę—„é‹¼čØ˜åæµē—…é™¢'),
(5948, 4439, 'en', 'name', 'University of Gondar'),
(5949, 4440, 'en', 'name', 'Kaweah Delta Health Care District'),
(5950, 4441, 'en', 'name', 'Kent Hospital'),
(5951, 4441, 'tr', 'name', 'Kent Hastanesi'),
(5952, 4442, 'en', 'name', 'Cambridge Health Alliance'),
(5953, 4443, 'en', 'name', 'Second Affiliated Hospital of Zhejiang University'),
(5954, 4444, 'en', 'name', 'National Taiwan Normal University'),
(5955, 4445, 'en', 'name', 'American Chemical Society'),
(5956, 4446, 'es', 'name', 'Hospital Universitario de San Vicente Fundación'),
(5957, 4447, 'en', 'name', 'Polish Mother’s Memorial Hospital Research Institute'),
(5958, 4447, 'pl', 'name', 'Instytut Centrum Zdrowia Matki Polki w Łodzi'),
(5959, 4448, 'en', 'name', 'Ministry of Health'),
(5960, 4449, 'en', 'name', 'Dong-Eui University'),
(5961, 4449, 'ko', 'name', 'ė™ģ˜ėŒ€ķ•™źµ'),
(5962, 4450, 'en', 'name', 'Muljibhai Patel Urological Hospital'),
(5963, 4451, 'en', 'name', 'Harborview Medical Center'),
(5964, 4452, 'fr', 'name', 'Centre hospitalier rƩgional de la Citadelle'),
(5965, 4453, 'en', 'name', 'Japan Agency for Marine-Earth Science and Technology'),
(5966, 4453, 'ja', 'name', 'ęµ·ę“‹ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(5967, 4454, 'en', 'name', 'Karakalpak State University'),
(5968, 4455, 'en', 'name', 'Nishi Niigata Chuo National Hospital'),
(5969, 4455, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹č„æę–°ę½Ÿäø­å¤®ē—…é™¢'),
(5970, 4456, 'en', 'name', 'University of Yamanashi'),
(5971, 4456, 'ja', 'name', '山梨大学'),
(5972, 4457, 'ko', 'name', 'ģ„ģ§€ėŒ€ķ•™źµė³‘ģ›'),
(5973, 4457, 'no_lang_code', 'name', 'Eulji General Hospital'),
(5974, 4458, 'en', 'name', 'Akron General Medical Center'),
(5975, 4459, 'en', 'name', 'Eastern Mennonite University'),
(5976, 4460, 'en', 'name', 'Christ Hospital'),
(5977, 4461, 'en', 'name', 'Central College'),
(5978, 4462, 'en', 'name', 'Mater Dei Hospital'),
(5979, 4463, 'no_lang_code', 'name', 'Caisson Laboratories (United States)'),
(5980, 4464, 'en', 'name', 'Samsung Medical Center'),
(5981, 4465, 'en', 'name', 'Crouse Hospital'),
(5982, 4466, 'no_lang_code', 'name', 'Metropolitan Hospital'),
(5983, 4467, 'no_lang_code', 'name', 'Format International Ltd'),
(5984, 4468, 'no_lang_code', 'name', 'Bhatia Hospital'),
(5985, 4469, 'en', 'name', 'Providence Health & Services Oregon and Southwest Washington'),
(5986, 4470, 'en', 'name', 'Ealing Hospital'),
(5987, 4471, 'en', 'name', 'Shumei University'),
(5988, 4471, 'ja', 'name', 'ē§€ę˜Žå¤§å­¦'),
(5989, 4472, 'de', 'name', 'Franziskus Hospital Bielefeld'),
(5990, 4472, 'en', 'name', 'Francis Hospital'),
(5991, 4473, 'en', 'name', 'Governador Celso Ramos Hospital'),
(5992, 4474, 'en', 'name', 'Sapporo National Hospital'),
(5993, 4474, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹åŒ—ęµ·é“ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(5994, 4475, 'en', 'name', 'Amersham Hospital'),
(5995, 4476, 'en', 'name', 'Japanese Red Cross Society Wakayama Medical Center'),
(5996, 4476, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē¤¾å’Œę­Œå±±åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(5997, 4477, 'en', 'name', 'St Mark''s Hospital'),
(5998, 4478, 'en', 'name', 'Raigmore Hospital'),
(5999, 4479, 'en', 'name', 'Ayrshire Central Hospital'),
(6000, 4480, 'en', 'name', 'University of Rajasthan'),
(6001, 4480, 'fr', 'name', 'UniversitƩ du rajasthan'),
(6002, 4480, 'hi', 'name', 'ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(6003, 4480, 'pa', 'name', 'ਰਾਜਸ਄ਾਨ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(6004, 4481, 'en', 'name', 'MedStar Health'),
(6005, 4482, 'en', 'name', 'East Stroudsburg University'),
(6006, 4482, 'fr', 'name', 'UniversitƩ de pennsylvanie d''east stroudsburg'),
(6007, 4483, 'en', 'name', 'Sri Dharmasthala Manjunatheshwara College of Dental Sciences & Hospital'),
(6008, 4484, 'en', 'name', 'Southlake Regional Health Center'),
(6009, 4485, 'de', 'name', 'Augusta Krankenhaus'),
(6010, 4486, 'en', 'name', 'Piedmont Athens Regional'),
(6011, 4487, 'en', 'name', 'Subang Jaya Medical Centre'),
(6012, 4488, 'en', 'name', 'Center for Forensic Mental Health, Chiba University'),
(6013, 4488, 'ja', 'name', 'åƒč‘‰å¤§å­¦ ē¤¾ä¼šē²¾ē„žäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(6014, 4489, 'en', 'name', 'Regional Environmental Center for Central and Eastern Europe'),
(6015, 4490, 'no_lang_code', 'name', 'Volvo (Sweden)'),
(6016, 4490, 'sv', 'name', 'Volvokoncernen'),
(6017, 4491, 'en', 'name', 'Luton and Dunstable Hospital'),
(6018, 4492, 'en', 'name', 'Barnsley Hospital'),
(6019, 4493, 'en', 'name', 'Shanghai Mental Health Center'),
(6020, 4493, 'zh', 'name', 'äøŠęµ·åø‚ē²¾ē„žå«ē”Ÿäø­åæƒ'),
(6021, 4494, 'en', 'name', '458th Hospital PLA'),
(6022, 4494, 'zh', 'name', '中国人民解放军第四五八'),
(6023, 4495, 'no_lang_code', 'name', 'Sibtech (United States)'),
(6024, 4496, 'en', 'name', 'MetroWest Medical Center'),
(6025, 4497, 'en', 'name', 'Forrest General Hospital'),
(6026, 4498, 'en', 'name', 'John F. Kennedy Medical Center'),
(6027, 4499, 'tr', 'name', 'Okmeydanı Eğitim ve Araştırma Hastanesi'),
(6028, 4500, 'no_lang_code', 'name', 'University of Veterinary Medicine in KoŔice'),
(6029, 4500, 'sk', 'name', 'Univerzita veterinÔrskeho lekÔrstva a farmÔcie v KoŔiciach'),
(6030, 4501, 'en', 'name', 'Utsunomiya University'),
(6031, 4501, 'ja', 'name', '宇都宮大学'),
(6032, 4502, 'no_lang_code', 'name', 'Academia Sinica'),
(6033, 4502, 'zh', 'name', '中央研究院'),
(6034, 4503, 'en', 'name', 'California State Polytechnic University'),
(6035, 4503, 'es', 'name', 'Universidad Estatal PolitƩcnica de California, Pomona'),
(6036, 4503, 'fr', 'name', 'UniversitĆ© d''Ɖtat polytechnique de californie Ć  pomona'),
(6037, 4504, 'pt', 'name', 'Hospital de Santa Maria'),
(6038, 4505, 'ja', 'name', 'å®‰åŸŽę›“ē”Ÿē—…é™¢'),
(6039, 4505, 'no_lang_code', 'name', 'Anjo Kosei Hospital'),
(6040, 4506, 'hi', 'name', 'Devi Ahilya Vishwavidyalaya, ą¤¦ą„‡ą¤µą¤æ ą¤…ą¤¹ą¤æą¤²ą„ą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(6041, 4507, 'en', 'name', 'Governor''s Institutes of Vermont'),
(6042, 4508, 'en', 'name', 'B.C. Women''s Hospital & Health Centre'),
(6043, 4509, 'en', 'name', 'Ashland University'),
(6044, 4510, 'ja', 'name', 'ęøˆē”Ÿä¼šē¦å²”ē·åˆē—…é™¢'),
(6045, 4510, 'no_lang_code', 'name', 'Saiseikai Fukuoka General Hospital'),
(6046, 4511, 'en', 'name', 'Edward Hospital'),
(6047, 4512, 'no_lang_code', 'name', 'Teck (Canada)'),
(6048, 4513, 'en', 'name', 'SangStat Medical Corporation'),
(6049, 4514, 'en', 'name', 'Tokyo University of Agriculture'),
(6050, 4514, 'ja', 'name', 'ę±äŗ¬č¾²ę„­å¤§å­¦'),
(6051, 4515, 'en', 'name', 'Periyar University'),
(6052, 4515, 'ta', 'name', 'ą®ŖąÆ†ą®°ą®æą®Æą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(6053, 4516, 'en', 'name', 'Greenslopes Private Hospital'),
(6054, 4517, 'en', 'name', 'Banner Estrella Medical Center'),
(6055, 4518, 'no_lang_code', 'name', 'Lanxess (Canada)'),
(6056, 4519, 'pt', 'name', 'Hospital de Santa Marta'),
(6057, 4520, 'en', 'name', 'Riverview Hospital'),
(6058, 4521, 'en', 'name', 'Command Hospital Air Force'),
(6059, 4522, 'en', 'name', 'Alabama Department of Mental Health'),
(6060, 4523, 'en', 'name', 'First Hospital of Lanzhou University'),
(6061, 4524, 'en', 'name', 'Iwate Prefectural Kamaishi Hospital'),
(6062, 4525, 'en', 'name', 'Southmead Hospital'),
(6063, 4526, 'en', 'name', 'First Affiliated Hospital of Jinan University'),
(6064, 4526, 'zh', 'name', 'ęšØå—å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(6065, 4527, 'es', 'name', 'Hospital Militar de Santiago'),
(6066, 4528, 'fr', 'name', 'HƓpital Manchester'),
(6067, 4529, 'en', 'name', 'Saifee Hospital'),
(6068, 4530, 'en', 'name', 'Changhua Christian Hospital'),
(6069, 4531, 'no_lang_code', 'name', 'Mpilo Central Hospital'),
(6070, 4532, 'en', 'name', 'New Jewish Home'),
(6071, 4533, 'en', 'name', 'Warren Spring Laboratory'),
(6072, 4534, 'en', 'name', 'Huntsman Marine Science Centre'),
(6073, 4535, 'en', 'name', 'Mount Sinai Hospital'),
(6074, 4536, 'en', 'name', 'Tianjin University of Traditional Chinese Medicine'),
(6075, 4536, 'zh', 'name', 'å¤©ę“„äø­åŒ»čÆå¤§å­¦'),
(6076, 4537, 'en', 'name', 'Aultman Health Foundation'),
(6077, 4538, 'es', 'name', 'Hospital Universitario Infanta SofĆ­a'),
(6078, 4539, 'no_lang_code', 'name', 'Kinan Hospital'),
(6079, 4540, 'de', 'name', 'Hochschule Kaiserslautern'),
(6080, 4540, 'en', 'name', 'University of Applied Sciences Kaiserslautern'),
(6081, 4541, 'en', 'name', 'Emory University Hospital'),
(6082, 4542, 'en', 'name', 'Institute of Child and Mother Health'),
(6083, 4543, 'de', 'name', 'VDI/VDE Innovation + Technik'),
(6084, 4544, 'en', 'name', 'Creative Health Care Management'),
(6085, 4545, 'en', 'name', 'Pai Chai University'),
(6086, 4545, 'ko', 'name', 'ė°°ģž¬ėŒ€ķ•™źµ'),
(6087, 4546, 'en', 'name', 'Hawaii Permanente Medical Group'),
(6088, 4547, 'en', 'name', 'Hollins University'),
(6089, 4548, 'hu', 'name', 'Békés Megyei Központi KórhÔz'),
(6090, 4549, 'en', 'name', 'Minnesota Medical Association'),
(6091, 4550, 'en', 'name', 'Dr. Agarwal''s Eye Hospital'),
(6092, 4551, 'no', 'name', 'Helse FĆørde'),
(6093, 4552, 'en', 'name', 'Shalvata Mental Health Center'),
(6094, 4552, 'he', 'name', '×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש ×©×œ×•×•×Ŗ×”'),
(6095, 4553, 'en', 'name', 'Morristown Hamblen Hospital Foundation'),
(6096, 4554, 'en', 'name', 'Munroe Regional Medical Center'),
(6097, 4555, 'en', 'name', 'Sweet Briar College'),
(6098, 4556, 'en', 'name', 'Auckland City Hospital'),
(6099, 4557, 'en', 'name', 'Methodist Dallas Medical Center'),
(6100, 4558, 'en', 'name', 'Bįŗ”ch Mai Hospital'),
(6101, 4558, 'vi', 'name', 'Bệnh viện Bįŗ”ch Mai'),
(6102, 4559, 'en', 'name', 'Archbishop Makarios III Hospital'),
(6103, 4560, 'fr', 'name', 'Centre Hospitalier Saint-Denis'),
(6104, 4561, 'en', 'name', 'Queen Elizabeth Hospital'),
(6105, 4562, 'en', 'name', 'Jimma University'),
(6106, 4563, 'no_lang_code', 'name', 'Bellbrook Labs (United States)'),
(6107, 4564, 'en', 'name', 'Grochowski Hospital'),
(6108, 4565, 'en', 'name', 'Prince Charles Hospital'),
(6109, 4566, 'en', 'name', 'Estonian Interuniversity Population Research Centre'),
(6110, 4567, 'no_lang_code', 'name', 'Cameco (Canada)'),
(6111, 4568, 'en', 'name', 'Kyoto Women''s University'),
(6112, 4568, 'ja', 'name', '京都儳子大学'),
(6113, 4569, 'en', 'name', 'Foundation for Advancement of International Medical Education and Research'),
(6114, 4570, 'en', 'name', 'Chicago State University'),
(6115, 4570, 'fr', 'name', 'UniversitĆ© d''Ɖtat de chicago'),
(6116, 4571, 'en', 'name', 'University of Seoul'),
(6117, 4571, 'ko', 'name', 'ģ„œģšøģ‹œė¦½ėŒ€ķ•™źµ'),
(6118, 4572, 'en', 'name', 'Asahi University'),
(6119, 4572, 'ja', 'name', 'ęœę—„å¤§å­¦'),
(6120, 4573, 'en', 'name', 'Gold Coast Hospital'),
(6121, 4574, 'en', 'name', 'Veterans Health Administration'),
(6122, 4575, 'en', 'name', 'Lander University'),
(6123, 4576, 'en', 'name', 'Athens Information Technology'),
(6124, 4577, 'en', 'name', 'Soonchunhyang University Hospital'),
(6125, 4578, 'en', 'name', 'Cheng Ching Hospital'),
(6126, 4578, 'zh', 'name', 'ę¾„ęø…ę¹–åŒ»é™¢'),
(6127, 4579, 'en', 'name', 'B.P. Koirala Institute of Health Sciences'),
(6128, 4579, 'ne', 'name', 'ą¤µą¤æą¤Ŗą„€ ą¤•ą„‹ą¤‡ą¤°ą¤¾ą¤²ą¤¾ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(6129, 4580, 'en', 'name', 'Secretariat of the Pacific Community'),
(6130, 4581, 'en', 'name', 'Coppin State University'),
(6131, 4582, 'en', 'name', 'Charles Clifford Dental Hospital'),
(6132, 4583, 'hr', 'name', 'Klinika za psihijatriju Vrapče'),
(6133, 4584, 'en', 'name', 'Shaughnessy Hospital'),
(6134, 4585, 'pt', 'name', 'Instituto Superior de Administração e Gestão'),
(6135, 4586, 'it', 'name', 'Ospedale San Pietro Fatebenefratelli'),
(6136, 4587, 'en', 'name', 'Oregon National Primate Research Center'),
(6137, 4588, 'en', 'name', 'University Hospital Llandough'),
(6138, 4589, 'en', 'name', 'Hampton University'),
(6139, 4589, 'fr', 'name', 'UniversitƩ de hampton'),
(6140, 4590, 'en', 'name', 'Royal Sussex County Hospital'),
(6141, 4591, 'es', 'name', 'Hospital Central Militar'),
(6142, 4592, 'en', 'name', 'Bassett Medical Center'),
(6143, 4593, 'fr', 'name', 'HƓpital Civil, Strasbourg'),
(6144, 4594, 'tr', 'name', 'Şişli Etfal Eğitim ve Araştırma Hastanesi'),
(6145, 4595, 'en', 'name', 'Holy Name Medical Center'),
(6146, 4596, 'en', 'name', 'Jorvi Hospital'),
(6147, 4596, 'fi', 'name', 'Jorvin sairaala'),
(6148, 4597, 'en', 'name', 'St. Jerome''s University'),
(6149, 4598, 'en', 'name', 'University of Nigeria Teaching Hospital'),
(6150, 4599, 'en', 'name', 'R. G. Kar Medical College and Hospital'),
(6151, 4600, 'it', 'name', 'Ospedale Bellaria, Ospedale Bellaria "Carlo Alberto Pizzardi"'),
(6152, 4601, 'en', 'name', 'Hebei Normal University of Science and Technology'),
(6153, 4601, 'zh', 'name', 'ę²³åŒ—ē§‘ęŠ€åøˆčŒƒå­¦é™¢'),
(6154, 4602, 'en', 'name', 'Acıbadem Adana Hospital'),
(6155, 4603, 'en', 'name', 'Minoh City Hospital'),
(6156, 4603, 'ja', 'name', 'ē®•é¢åø‚ē«‹ē—…é™¢'),
(6157, 4604, 'en', 'name', 'Asanogawa General Hospital'),
(6158, 4604, 'ja', 'name', 'ęµ…ćƒŽå·ē·åˆē—…é™¢'),
(6159, 4605, 'en', 'name', 'Long Beach City College'),
(6160, 4606, 'no_lang_code', 'name', 'Hewlett-Packard (United Kingdom)'),
(6161, 4607, 'en', 'name', 'Burnley General Teaching Hospital'),
(6162, 4608, 'en', 'name', 'Armed Forces Medical College'),
(6163, 4608, 'ml', 'name', 'ą“†ą“‚ą“”ąµ ą“«ąµ‹ą““ąµą“øą“øąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(6164, 4609, 'ja', 'name', 'ć‚Ŗćƒ¼ć‚¬ćƒ³ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(6165, 4609, 'no_lang_code', 'name', 'Organ Technologies (Japan)'),
(6166, 4610, 'en', 'name', 'Russian University of Transport'),
(6167, 4610, 'ru', 'name', 'Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ транспорта'),
(6168, 4611, 'no_lang_code', 'name', 'Sotiria General Hospital'),
(6169, 4612, 'en', 'name', 'First Affiliated Hospital of Nanchang University'),
(6170, 4612, 'zh', 'name', 'å—ę˜Œå¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(6171, 4613, 'en', 'name', 'Dong-A University Hospital'),
(6172, 4613, 'ko', 'name', 'ė™ģ•„ėŒ€ķ•™źµģ˜ė£Œģ›'),
(6173, 4614, 'en', 'name', 'Detroit Medical Center'),
(6174, 4615, 'en', 'name', 'Base Hospital'),
(6175, 4615, 'pt', 'name', 'Hospital de Base'),
(6176, 4616, 'en', 'name', 'CSI Holdsworth Memorial Hospital'),
(6177, 4617, 'en', 'name', 'Yamagata University Hospital'),
(6178, 4617, 'ja', 'name', 'å±±å½¢å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(6179, 4618, 'en', 'name', 'Jinnah Medical & Dental College'),
(6180, 4619, 'en', 'name', 'Gloucestershire Royal Hospital'),
(6181, 4620, 'ja', 'name', 'å²øå’Œē”°å¾³ę“²ä¼šē—…é™¢'),
(6182, 4620, 'no_lang_code', 'name', 'Kishiwada Tokushukai Hospital'),
(6183, 4621, 'es', 'name', 'Hospital de León'),
(6184, 4622, 'en', 'name', 'Interuniversity Consortium for Nanoelectronics'),
(6185, 4622, 'it', 'name', 'Consorzio Nazionale Interuniversitario per la Nanoelettronica'),
(6186, 4623, 'ja', 'name', 'ę–°å°å€‰ē—…é™¢'),
(6187, 4623, 'no_lang_code', 'name', 'ShinKokura Hospital'),
(6188, 4624, 'en', 'name', 'Aspen Center For Physics'),
(6189, 4624, 'fr', 'name', 'Centre pour la physique d''aspen'),
(6190, 4625, 'no_lang_code', 'name', 'Vala Sciences (United States)'),
(6191, 4626, 'en', 'name', 'Evergreen Health Medical Center'),
(6192, 4627, 'pt', 'name', 'Escola Superior de Saúde do Alcoitão'),
(6193, 4628, 'en', 'name', 'C. S. Mott Children''s Hospital'),
(6194, 4629, 'en', 'name', 'Saint Francis Memorial Hospital'),
(6195, 4630, 'no_lang_code', 'name', 'Talaria (United States)'),
(6196, 4631, 'en', 'name', 'Harbor–UCLA Medical Center'),
(6197, 4632, 'no_lang_code', 'name', 'Bugando Medical Centre'),
(6198, 4633, 'fr', 'name', 'HƓpital Broussais'),
(6199, 4634, 'en', 'name', 'Kyungsung University'),
(6200, 4634, 'ko', 'name', 'ź²½ģ„±ėŒ€ķ•™źµ'),
(6201, 4635, 'en', 'name', 'Agricultural Research Organization'),
(6202, 4635, 'he', 'name', 'מנהל ×”×ž×—×§×Ø החקלאי - ×ž×Ø×›×– וולקני'),
(6203, 4636, 'no_lang_code', 'name', 'IBM (United States)'),
(6204, 4637, 'bn', 'name', 'শাহজালাল ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(6205, 4637, 'en', 'name', 'Shahjalal University of Science and Technology'),
(6206, 4638, 'en', 'name', 'Good Samaritan Hospital'),
(6207, 4639, 'en', 'name', 'Poultry Industry Council'),
(6208, 4640, 'en', 'name', 'Lincoln University - Missouri'),
(6209, 4641, 'en', 'name', 'Jeju National University'),
(6210, 4641, 'ko', 'name', 'ģ œģ£¼ėŒ€ķ•™źµ'),
(6211, 4642, 'en', 'name', 'Riverside Regional Medical Center'),
(6212, 4643, 'en', 'name', 'American Association of University Women'),
(6213, 4644, 'en', 'name', 'Lister Hospital'),
(6214, 4645, 'en', 'name', 'Mathematical Sciences Research Institute'),
(6215, 4646, 'en', 'name', 'Social Insurance Futase Hospital'),
(6216, 4646, 'ja', 'name', 'ē¤¾ä¼šäæé™ŗ äŗŒē€¬ē—…é™¢'),
(6217, 4647, 'en', 'name', 'Loma Linda University Children''s Hospital'),
(6218, 4648, 'en', 'name', 'Spring Branch Medical Center'),
(6219, 4649, 'pt', 'name', 'Universidade de Uberaba'),
(6220, 4650, 'en', 'name', 'American Association For The Advancement of Science'),
(6221, 4650, 'es', 'name', 'Asociación Estadounidense para el Avance de la Ciencia'),
(6222, 4650, 'fr', 'name', 'Association amƩricaine pour l''avancement de la science'),
(6223, 4651, 'en', 'name', 'Erasmus Hospital'),
(6224, 4651, 'fr', 'name', 'HĆ“pital Ɖrasme'),
(6225, 4651, 'nl', 'name', 'Erasmus Ziekenhuis'),
(6226, 4652, 'en', 'name', 'South Western Sydney Local Health District'),
(6227, 4653, 'en', 'name', 'MetroHealth Medical Center'),
(6228, 4654, 'en', 'name', 'Sir Paul Boffa Hospital'),
(6229, 4655, 'en', 'name', 'McLaughlin Research Institute'),
(6230, 4656, 'en', 'name', 'Halifax Health Medical Center'),
(6231, 4657, 'en', 'name', 'Gaylord Hospital'),
(6232, 4658, 'en', 'name', 'American Physical Society'),
(6233, 4658, 'fr', 'name', 'SociƩtƩ amƩricaine de physique'),
(6234, 4659, 'en', 'name', 'Sinai Health System'),
(6235, 4660, 'en', 'name', 'Oregon Research Institute'),
(6236, 4661, 'en', 'name', 'Wilson College'),
(6237, 4662, 'en', 'name', 'HatanpƤƤ Hospital'),
(6238, 4662, 'fi', 'name', 'Hatanpaan Sairaala'),
(6239, 4663, 'en', 'name', 'University of Arkansas at Fayetteville'),
(6240, 4663, 'es', 'name', 'Universidad de Arkansas'),
(6241, 4663, 'fr', 'name', 'UniversitƩ de l''arkansas'),
(6242, 4664, 'no_lang_code', 'name', 'Gastops (Canada)'),
(6243, 4665, 'en', 'name', 'University of Minnesota Children''s Hospital'),
(6244, 4666, 'en', 'name', 'King Chulalongkorn Memorial Hospital'),
(6245, 4666, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøˆąøøąø¬ąø²ąø„ąø‡ąøąø£ąø“ą¹Œ'),
(6246, 4667, 'no_lang_code', 'name', 'Rolls-Royce (Germany)'),
(6247, 4668, 'en', 'name', 'Scottish Universities Environmental Research Centre'),
(6248, 4669, 'en', 'name', 'Hammersmith Hospital'),
(6249, 4670, 'en', 'name', 'Memorial Hospital'),
(6250, 4671, 'en', 'name', 'Nihon University'),
(6251, 4671, 'ja', 'name', 'ę—„ęœ¬å¤§å­¦'),
(6252, 4672, 'en', 'name', 'Self-Defense Forces Central Hospital'),
(6253, 4672, 'ja', 'name', 'č‡Ŗč”›éšŠäø­å¤®ē—…é™¢'),
(6254, 4673, 'no_lang_code', 'name', 'Advanced Medical Electronics (United States)'),
(6255, 4674, 'it', 'name', 'Ospedale Santa Corona'),
(6256, 4675, 'en', 'name', 'Milton Keynes Hospital'),
(6257, 4676, 'no_lang_code', 'name', 'Thermo Fisher Scientific (China)'),
(6258, 4677, 'en', 'name', 'Eltron Research'),
(6259, 4678, 'ja', 'name', '恘悃 恗恚恊恋 恓恛恄悌悓 恈悓恗悅 ć»ļ½“ć“ćŸļ½Œ'),
(6260, 4678, 'no_lang_code', 'name', 'JA Shizuoka Koseiren ENSHU hospital'),
(6261, 4679, 'en', 'name', 'Good Samaritan Hospital Medical Center'),
(6262, 4680, 'no_lang_code', 'name', 'Eesti Innovatsiooni Instituut'),
(6263, 4681, 'en', 'name', 'Henrico Doctors'' Hospital'),
(6264, 4682, 'en', 'name', 'McMaster University Medical Centre'),
(6265, 4683, 'en', 'name', 'Gay Men''s Health Crisis'),
(6266, 4684, 'en', 'name', 'Texas Health Dallas'),
(6267, 4685, 'en', 'name', 'Saint John Regional Hospital'),
(6268, 4686, 'en', 'name', 'Statistics Canada'),
(6269, 4686, 'fr', 'name', 'Statistique Canada'),
(6270, 4687, 'en', 'name', 'Shriners Hospitals for Children Medical Center - Lexington'),
(6271, 4688, 'no_lang_code', 'name', 'Microsoft Research (United Kingdom)'),
(6272, 4689, 'no_lang_code', 'name', 'Western Research Company, Inc.'),
(6273, 4690, 'pt', 'name', 'Universidade Cruzeiro do Sul'),
(6274, 4691, 'en', 'name', 'Marietta Memorial Hospital'),
(6275, 4692, 'it', 'name', 'Consorzio Interuniversitario Per L''Ottimizzazione E La Ricerca Operativa'),
(6276, 4693, 'en', 'name', 'NHS Greater Glasgow and Clyde'),
(6277, 4694, 'en', 'name', 'University of South Carolina Beaufort'),
(6278, 4695, 'fr', 'name', 'HƓpital Albert Michallon'),
(6279, 4696, 'ar', 'name', 'مستؓفى الجهراؔ'),
(6280, 4696, 'no_lang_code', 'name', 'Jahra Hospital'),
(6281, 4697, 'en', 'name', 'Government Medical College'),
(6282, 4697, 'mr', 'name', 'ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ व ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ, औरंगाबाद'),
(6283, 4698, 'en', 'name', 'Royal Preston Hospital'),
(6284, 4699, 'en', 'name', 'Georgia College & State University'),
(6285, 4700, 'en', 'name', 'Komfo Anokye Teaching Hospital'),
(6286, 4701, 'en', 'name', 'William Woods University'),
(6287, 4702, 'no_lang_code', 'name', 'Adenosine Therapeutics (United States)'),
(6288, 4703, 'es', 'name', 'Hospital Perpetuo Socorro'),
(6289, 4704, 'en', 'name', 'Narayana Health'),
(6290, 4705, 'hu', 'name', 'Bajcsy-Zsilinszky KórhĆ”z Ć©s RendelőintĆ©zet'),
(6291, 4706, 'en', 'name', 'Kwai Chung Hospital'),
(6292, 4706, 'zh', 'name', 'č‘µę¶Œé†«é™¢'),
(6293, 4707, 'en', 'name', 'Nara Advanced Teachers College for Women, Nara Women''s University'),
(6294, 4707, 'ja', 'name', 'å„ˆč‰Æå„³å­å¤§å­¦'),
(6295, 4708, 'ja', 'name', 'åå¤å±‹å…±ē«‹ē—…é™¢'),
(6296, 4708, 'no_lang_code', 'name', 'Nagoya Kyouritsu Hospital'),
(6297, 4709, 'en', 'name', 'Chonnam National University'),
(6298, 4709, 'ko', 'name', 'ģ „ė‚ØėŒ€ķ•™źµ'),
(6299, 4710, 'no_lang_code', 'name', 'Motorola (France)'),
(6300, 4711, 'en', 'name', 'Ipswich Hospital'),
(6301, 4712, 'ja', 'name', 'ēÆ ćƒŽäŗ•ē·åˆē—…é™¢'),
(6302, 4712, 'no_lang_code', 'name', 'Shinonoi General Hospital'),
(6303, 4713, 'en', 'name', 'Makassed General Hospital'),
(6304, 4714, 'en', 'name', 'Nepal Medical College Teaching Hospital'),
(6305, 4714, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤²ą„‡ą¤œ'),
(6306, 4715, 'en', 'name', 'Steel Construction Institute'),
(6307, 4716, 'en', 'name', 'Monklands Hospital'),
(6308, 4717, 'it', 'name', 'Ospedale San Giuseppe'),
(6309, 4718, 'en', 'name', 'Capital District Health Authority'),
(6310, 4719, 'no_lang_code', 'name', 'Rio Tinto (United Kingdom)'),
(6311, 4720, 'en', 'name', 'North Shore University Hospital'),
(6312, 4721, 'en', 'name', 'University of the Pacific'),
(6313, 4721, 'es', 'name', 'Universidad del PacĆ­fico'),
(6314, 4721, 'fr', 'name', 'UniversitƩ du pacifique'),
(6315, 4722, 'en', 'name', 'Northwest Missouri State University'),
(6316, 4723, 'en', 'name', 'MedStar Harbor Hospital'),
(6317, 4724, 'pt', 'name', 'Hospital Geral de Fortaleza'),
(6318, 4725, 'no_lang_code', 'name', 'Innovation Research and Training'),
(6319, 4726, 'en', 'name', 'Englewood Hospital and Medical Center'),
(6320, 4727, 'ja', 'name', 'å¹³é¹æē·åˆē—…é™¢'),
(6321, 4727, 'no_lang_code', 'name', 'Hiraka General Hospital'),
(6322, 4728, 'en', 'name', 'Kushiro City General Hospital'),
(6323, 4728, 'ja', 'name', 'åø‚ē«‹é‡§č·Æē·åˆē—…é™¢'),
(6324, 4729, 'en', 'name', 'University of Houston - Downtown'),
(6325, 4729, 'es', 'name', 'Universidad de Houston-Downtown'),
(6326, 4730, 'en', 'name', 'Nizhny Novgorod State Pedagogical University'),
(6327, 4730, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š . Š•. Алексеева'),
(6328, 4731, 'fi', 'name', 'Kymenlaakson keskussairaala'),
(6329, 4732, 'en', 'name', 'Grambling State University'),
(6330, 4732, 'fr', 'name', 'UniversitĆ© d''Ɖtat de grambling'),
(6331, 4733, 'no_lang_code', 'name', 'Applica Sprl'),
(6332, 4734, 'en', 'name', 'Catawba Valley Medical Center'),
(6333, 4735, 'no_lang_code', 'name', 'Manipal Hospital'),
(6334, 4736, 'en', 'name', 'Sheffield Children''s Hospital'),
(6335, 4737, 'en', 'name', 'Legacy Good Samaritan Medical Center'),
(6336, 4738, 'en', 'name', 'Rebecca Sieff Hospital'),
(6337, 4739, 'en', 'name', 'Miami VA Healthcare System'),
(6338, 4740, 'en', 'name', 'Skokie Hospital'),
(6339, 4741, 'fr', 'name', 'HƓpital El Ayachi'),
(6340, 4742, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„ Ų§Ł„ŲŖŲ®ŲµŲµŁŠ'),
(6341, 4742, 'en', 'name', 'King Faisal Specialist Hospital & Research Centre'),
(6342, 4743, 'en', 'name', 'Children''s Hospital of Fudan University'),
(6343, 4744, 'en', 'name', 'Latifa Hospital'),
(6344, 4745, 'en', 'name', 'Nagahama City Hospital'),
(6345, 4745, 'ja', 'name', 'é•·ęµœåø‚ē—…é™¢'),
(6346, 4746, 'en', 'name', 'George E. Wahlen Department of VA Medical Center'),
(6347, 4747, 'en', 'name', 'Henry Dunant Hospital'),
(6348, 4748, 'en', 'name', 'Eduardo Mondlane University'),
(6349, 4748, 'pt', 'name', 'Universidade Eduardo Mondlane'),
(6350, 4749, 'en', 'name', 'Milwaukee County Medical Complex'),
(6351, 4750, 'en', 'name', 'North Mississippi Medical Center'),
(6352, 4751, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† قائم'),
(6353, 4751, 'no_lang_code', 'name', 'Ghaem Hospital'),
(6354, 4752, 'en', 'name', 'Mercy Medical Center'),
(6355, 4753, 'en', 'name', 'Ideta Eye Hospital'),
(6356, 4753, 'ja', 'name', 'å‡ŗē”°ēœ¼ē§‘ē—…é™¢'),
(6357, 4754, 'en', 'name', 'Bhopal Memorial Hospital & Research Centre'),
(6358, 4755, 'en', 'name', 'Sam Higginbottom Institute of Agriculture'),
(6359, 4755, 'hi', 'name', 'ą¤øą„ˆą¤® ą¤¹ą¤æą¤—ą„ą¤—ą¤æą¤Øą¤¬ą„‰ą¤Ÿą¤® ą¤•ą„ƒą¤·ą¤æ, ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6360, 4755, 'ml', 'name', 'ą“…ą“²ą“¹ą“¬ą“¾ą“¦ąµ ą“…ą“—ąµą“°ą“æą“•ąµ¾ą“šąµą“šą“±ąµ½ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(6361, 4756, 'en', 'name', 'University of Sioux Falls'),
(6362, 4757, 'en', 'name', 'Saint Petersburg Academic University'),
(6363, 4757, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ акаГемический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ — Š½Š°ŃƒŃ‡Š½Š¾-Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Š¹ центр нанотехнологий'),
(6364, 4758, 'en', 'name', 'Kent and Sussex Hospital'),
(6365, 4759, 'es', 'name', 'Hospital Universitario Infanta Leonor'),
(6366, 4760, 'no_lang_code', 'name', 'Ambergen (United States)'),
(6367, 4761, 'tr', 'name', 'Bursa Yuksek Ihtisas Egitim Ve Arastirma Hastanesi'),
(6368, 4762, 'en', 'name', 'Mubarak Al Kabeer Hospital'),
(6369, 4763, 'en', 'name', 'Hoag Memorial Hospital Presbyterian'),
(6370, 4764, 'bn', 'name', 'বাঁকুঔ়া ą¦øą¦®ą§ą¦®ą¦æą¦²ą¦Øą§€ ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ'),
(6371, 4764, 'en', 'name', 'Bankura Sammilani Medical College'),
(6372, 4765, 'en', 'name', 'Foundation for Medical Research'),
(6373, 4766, 'en', 'name', 'West Australian Sleep Disorders Research Institute'),
(6374, 4767, 'no_lang_code', 'name', 'Abratech Corporation'),
(6375, 4768, 'en', 'name', 'Children''s Hospital of Eastern Ontario'),
(6376, 4768, 'fr', 'name', 'Centre hospitalier pour enfants de l''est de l''Ontario'),
(6377, 4769, 'en', 'name', 'Avera Health'),
(6378, 4770, 'en', 'name', 'University of Eswatini'),
(6379, 4771, 'pt', 'name', 'Universidade de Santo Amaro'),
(6380, 4772, 'en', 'name', 'Baoji University of Arts and Sciences'),
(6381, 4772, 'zh', 'name', 'å®éø”ę–‡ē†å­¦é™¢'),
(6382, 4773, 'de', 'name', 'Asklepios Klinik Barmbek'),
(6383, 4773, 'en', 'name', 'Asklepios Hospital Barmbek'),
(6384, 4774, 'pl', 'name', 'Okręgowy Szpital Kolejowy'),
(6385, 4775, 'en', 'name', 'Cardinal Stritch University'),
(6386, 4776, 'en', 'name', 'Royal Glamorgan Hospital'),
(6387, 4777, 'en', 'name', 'Glostrup Hospital'),
(6388, 4778, 'en', 'name', 'Huntington Medical Research Institutes'),
(6389, 4779, 'it', 'name', 'Azienda Ospedaliera Universitaria Policlinico "Paolo Giaccone" di Palermo'),
(6390, 4780, 'en', 'name', 'Hubei Cancer Hospital'),
(6391, 4780, 'zh', 'name', 'ę¹–åŒ—ēœč‚æē˜¤åŒ»é™¢'),
(6392, 4781, 'en', 'name', 'Northern California Institute for Research and Education'),
(6393, 4782, 'en', 'name', 'University of the West Indies'),
(6394, 4783, 'en', 'name', 'American Geosciences Institute'),
(6395, 4784, 'no_lang_code', 'name', 'Petro-Canada'),
(6396, 4785, 'es', 'name', 'Hospital Virgen del Puerto'),
(6397, 4786, 'ja', 'name', '脿田病院'),
(6398, 4786, 'no_lang_code', 'name', 'Nishida Hospital'),
(6399, 4787, 'en', 'name', 'Crozer-Keystone Health System'),
(6400, 4788, 'en', 'name', 'Queen Elizabeth Hospital'),
(6401, 4789, 'en', 'name', 'CTO Hospital'),
(6402, 4789, 'it', 'name', 'Ospedale Centro Traumatologico Ortopedico'),
(6403, 4790, 'en', 'name', 'Ningbo First Hospital'),
(6404, 4790, 'zh', 'name', 'å®ę³¢åø‚ē¬¬äø€åŒ»é™¢'),
(6405, 4791, 'en', 'name', 'Haifa Medical Center'),
(6406, 4792, 'en', 'name', 'National Hsinchu University of Education'),
(6407, 4793, 'no_lang_code', 'name', 'IQ Solutions'),
(6408, 4794, 'en', 'name', 'National Centre for Research and Development');
INSERT INTO `ror_settings` VALUES
(6409, 4795, 'en', 'name', 'Hangzhou First People''s Hospital'),
(6410, 4795, 'zh', 'name', 'ę­å·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(6411, 4796, 'en', 'name', 'Lebanon Valley College'),
(6412, 4797, 'no_lang_code', 'name', 'ISA Associate'),
(6413, 4798, 'no_lang_code', 'name', 'Evangelismos Hospital'),
(6414, 4799, 'en', 'name', 'South African Medical Research Council'),
(6415, 4800, 'en', 'name', 'Kennedy Krieger Institute'),
(6416, 4801, 'en', 'name', 'South African Institute for Medical Research'),
(6417, 4802, 'en', 'name', 'Saint Joseph''s University'),
(6418, 4802, 'es', 'name', 'Universidad de San JosƩ'),
(6419, 4802, 'fr', 'name', 'UniversitƩ saint-joseph de philadelphie'),
(6420, 4803, 'en', 'name', 'Southern University at New Orleans'),
(6421, 4804, 'en', 'name', 'Hamilton General Hospital'),
(6422, 4805, 'no_lang_code', 'name', 'Siga Technologies (United States)'),
(6423, 4806, 'en', 'name', 'Montana Department of Public Health and Human Services'),
(6424, 4807, 'en', 'name', 'Greenbrier Valley Medical Center'),
(6425, 4808, 'en', 'name', 'University of Calabar'),
(6426, 4808, 'yo', 'name', 'YunifÔsítì ìlú Calabar'),
(6427, 4809, 'ja', 'name', 'ęŸåø‚ē«‹ęŸē—…é™¢'),
(6428, 4809, 'no_lang_code', 'name', 'Kashiwa Municipal Hospital'),
(6429, 4810, 'en', 'name', 'St Clara Hospital'),
(6430, 4810, 'nl', 'name', 'Sint Clara Ziekenhuis'),
(6431, 4811, 'en', 'name', 'Lu''an First People''s Hospital'),
(6432, 4812, 'en', 'name', 'Malta Council for Science and Technology'),
(6433, 4813, 'en', 'name', 'Government General Hospital'),
(6434, 4814, 'no_lang_code', 'name', 'Engi-Mat (United States)'),
(6435, 4815, 'en', 'name', 'Five Branches University'),
(6436, 4816, 'no_lang_code', 'name', 'Guelph Chemical Labs'),
(6437, 4817, 'en', 'name', 'Bangalore Medical College and Research Institute'),
(6438, 4817, 'kn', 'name', 'ಬೆಂಗಳೂರು ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(6439, 4818, 'en', 'name', 'California Lutheran University'),
(6440, 4819, 'ga', 'name', 'Forbairt'),
(6441, 4820, 'no_lang_code', 'name', 'HealthMark Multimedia'),
(6442, 4821, 'en', 'name', 'Mercy Hospital'),
(6443, 4822, 'de', 'name', 'Bundeswehrkrankenhaus'),
(6444, 4823, 'it', 'name', 'Azienda Ospedaliera Carlo Poma'),
(6445, 4824, 'en', 'name', 'Northern General Hospital'),
(6446, 4825, 'en', 'name', 'Sewanee: The University of the South'),
(6447, 4826, 'en', 'name', 'Physicians for a National Health Program'),
(6448, 4827, 'ja', 'name', '白鷺病院'),
(6449, 4827, 'no_lang_code', 'name', 'Shirasagi Hospital'),
(6450, 4828, 'en', 'name', 'Gordon Research Conferences'),
(6451, 4829, 'en', 'name', 'Queen Elizabeth Hospital'),
(6452, 4830, 'en', 'name', 'European Road Transport Telematics Implementation Co-Ordination'),
(6453, 4831, 'no_lang_code', 'name', 'DELL (United States)'),
(6454, 4832, 'en', 'name', 'Kaiser Permanente Oakland Medical Center'),
(6455, 4833, 'en', 'name', 'Aquatic Animal Health Research Laboratory'),
(6456, 4834, 'ja', 'name', 'č™Žć®é–€ē—…é™¢'),
(6457, 4834, 'no_lang_code', 'name', 'Toranomon Hospital'),
(6458, 4835, 'ms', 'name', 'Hospital Tengku Ampuan Afzan'),
(6459, 4836, 'en', 'name', 'Dominican Hospital'),
(6460, 4837, 'en', 'name', '303 Hospital of People''s Liberation Army'),
(6461, 4837, 'zh', 'name', '中国人民解放军303医院'),
(6462, 4838, 'ja', 'name', 'åŒ—é‡Žē—…é™¢'),
(6463, 4838, 'no_lang_code', 'name', 'Kitano Hospital'),
(6464, 4839, 'en', 'name', 'CHA Gangnam Medical Center'),
(6465, 4840, 'en', 'name', 'Royal University of Phnom Penh'),
(6466, 4840, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įž—įŸ’įž“įŸ†įž–įŸįž‰'),
(6467, 4841, 'en', 'name', 'Oglethorpe University'),
(6468, 4842, 'en', 'name', 'IBM Research - Haifa'),
(6469, 4843, 'en', 'name', 'MedStar Washington Hospital Center'),
(6470, 4844, 'en', 'name', 'Euresearch Association'),
(6471, 4845, 'en', 'name', 'Smt. N.H.L. Municipal Medical College'),
(6472, 4845, 'gu', 'name', 'ąŖ¶ą«ąŖ°ą«€ąŖ®ąŖ¤ą«€. ąŖąŖØąŖąŖšąŖąŖ² ąŖ®ą«ąŖÆą«ąŖØąŖæąŖøąŖæąŖŖąŖ² મેઔિકલ ąŖ•ą«‹ąŖ²ą«‡ąŖœ'),
(6473, 4846, 'en', 'name', 'University of the Ryukyus University Hospital'),
(6474, 4846, 'ja', 'name', 'ē‰ēƒå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(6475, 4847, 'en', 'name', 'Favaloro University'),
(6476, 4847, 'es', 'name', 'Universidad Favaloro'),
(6477, 4848, 'en', 'name', 'Morton Plant Hospital'),
(6478, 4849, 'es', 'name', 'Hospital Universitario Severo Ochoa'),
(6479, 4850, 'en', 'name', 'Oakwood University'),
(6480, 4851, 'no_lang_code', 'name', 'Lucideon (United Kingdom)'),
(6481, 4852, 'en', 'name', 'University of Wisconsin–Parkside'),
(6482, 4852, 'fr', 'name', 'UniversitĆ© du Wisconsin–Parkside'),
(6483, 4853, 'en', 'name', 'Aishin Memorial Hospital'),
(6484, 4853, 'ja', 'name', 'ę„›åæƒćƒ”ćƒ¢ćƒŖć‚¢ćƒ«ē—…é™¢'),
(6485, 4854, 'en', 'name', 'Hungarian Institute of Occupational Health'),
(6486, 4854, 'hu', 'name', 'OrszÔgos Munkahigiénés és FoglalkozÔsegészségügyi Intézet'),
(6487, 4855, 'es', 'name', 'Instituto Tecnológico de Aragón'),
(6488, 4856, 'fr', 'name', 'MinistĆØre des Transports'),
(6489, 4857, 'en', 'name', 'Doctors Medical Center'),
(6490, 4858, 'en', 'name', 'Evangel University'),
(6491, 4859, 'en', 'name', 'University of Carabobo'),
(6492, 4859, 'es', 'name', 'Universidad de Carabobo'),
(6493, 4860, 'en', 'name', 'Association of Schools of Allied Health Professions'),
(6494, 4861, 'en', 'name', 'Rutland Regional Medical Center'),
(6495, 4862, 'en', 'name', 'Hospital Authority'),
(6496, 4862, 'zh', 'name', '醫院箔理局'),
(6497, 4863, 'en', 'name', 'State University System of Florida'),
(6498, 4863, 'es', 'name', 'Sistema universitario estatal de Florida'),
(6499, 4864, 'en', 'name', 'University of Wisconsin–Stevens Point'),
(6500, 4864, 'fr', 'name', 'UniversitĆ© du Wisconsin–Stevens Point'),
(6501, 4865, 'en', 'name', 'Kumamoto Medical Center'),
(6502, 4865, 'ja', 'name', 'ē†Šęœ¬åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(6503, 4866, 'en', 'name', 'Natural Resources Institute'),
(6504, 4867, 'no_lang_code', 'name', 'Rotunda Hospital'),
(6505, 4868, 'en', 'name', 'Sophiahemmet Hospital'),
(6506, 4868, 'sv', 'name', 'Sophiahemmet Sjukhus'),
(6507, 4869, 'en', 'name', 'University of California Davis Medical Center'),
(6508, 4870, 'en', 'name', 'Kyoto Sangyo University'),
(6509, 4870, 'ja', 'name', 'äŗ¬éƒ½ē”£ę„­å¤§å­¦'),
(6510, 4871, 'en', 'name', 'Institute for Cancer Prevention'),
(6511, 4872, 'en', 'name', 'Saddleback Memorial Medical Center'),
(6512, 4873, 'en', 'name', 'Touro University Nevada'),
(6513, 4873, 'fr', 'name', 'UniversitƩ touro du nevada'),
(6514, 4874, 'en', 'name', 'Judge Baker Children''s Center'),
(6515, 4875, 'en', 'name', 'Matsuyama University'),
(6516, 4875, 'ja', 'name', 'ę¾å±±å¤§å­¦'),
(6517, 4876, 'en', 'name', 'Biological Sciences Curriculum Study'),
(6518, 4877, 'es', 'name', 'Hospital General de NiƱos Ricardo Gutierrez'),
(6519, 4878, 'es', 'name', 'Centro Agronomico Tropical de Investigacion y Ensenanza Catie'),
(6520, 4879, 'en', 'name', 'American Society of Civil Engineers'),
(6521, 4880, 'en', 'name', 'Hanyang University Medical Center'),
(6522, 4880, 'ko', 'name', 'ķ•œģ–‘ėŒ€ķ•™źµė³‘ģ› ģ‘źø‰ģ‹¤'),
(6523, 4881, 'en', 'name', 'Northern State Medical University'),
(6524, 4881, 'ru', 'name', 'Деверный Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(6525, 4882, 'ko', 'name', '(주)ģøģ‹¤ė¦¬ģ½”ģ  '),
(6526, 4882, 'no_lang_code', 'name', 'Insilicogen (South Korea)'),
(6527, 4883, 'en', 'name', 'Canterbury District Health Board'),
(6528, 4884, 'en', 'name', 'VA Northern California Health Care System'),
(6529, 4885, 'de', 'name', 'Ostschweizer Kinderspital'),
(6530, 4885, 'en', 'name', 'Children''s Hospital in Eastern Switzerland'),
(6531, 4886, 'en', 'name', 'Jehangir Hospital'),
(6532, 4887, 'es', 'name', 'Hospital General de Agudos Dr. TEODORO ALVAREZ'),
(6533, 4888, 'es', 'name', 'Hospital Universitario Infanta Cristina'),
(6534, 4889, 'en', 'name', 'Federal Teaching Hospital Abakaliki'),
(6535, 4890, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁƒŲ³Ł„Ų§'),
(6536, 4890, 'en', 'name', 'Kassala University'),
(6537, 4891, 'en', 'name', 'Dankook University Hospital'),
(6538, 4891, 'ko', 'name', 'ė‹Øźµ­ėŒ€ķ•™źµģ˜ź³¼ėŒ€ķ•™ė¶€ģ†ė³‘ģ›'),
(6539, 4892, 'en', 'name', 'China Jiliang University'),
(6540, 4893, 'en', 'name', 'Southampton Hospital'),
(6541, 4894, 'en', 'name', 'Mahatma Gandhi Medical College and Research Institute'),
(6542, 4895, 'en', 'name', 'Canniesburn Hospital'),
(6543, 4896, 'it', 'name', 'Azienda Ospedaliera Fatebenefratelli e Oftalmico'),
(6544, 4897, 'en', 'name', 'Memorial Hospital'),
(6545, 4898, 'en', 'name', 'Shaoxing People''s Hospital'),
(6546, 4898, 'zh', 'name', 'ē»å…“åø‚äŗŗę°‘åŒ»é™¢'),
(6547, 4899, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½ Ιπποκράτειο'),
(6548, 4899, 'en', 'name', 'Hippocration General Hospital'),
(6549, 4900, 'en', 'name', 'Shanghai Skin Disease Hospital'),
(6550, 4900, 'zh', 'name', 'äøŠęµ·ēš®č‚¤ē—…åŒ»é™¢é•æå®åŒŗé—ØčÆŠéƒØ'),
(6551, 4901, 'no_lang_code', 'name', 'Resodyn Corporation (United States)'),
(6552, 4902, 'tr', 'name', 'Fatih Sultan Mehmet Eğitim Ve Araştırma Hastanesi'),
(6553, 4903, 'en', 'name', 'Atlanta Medical Center'),
(6554, 4904, 'no_lang_code', 'name', 'IRIS Educational Media'),
(6555, 4905, 'en', 'name', 'South Essex Partnership University Foundation NHS Trust'),
(6556, 4906, 'en', 'name', 'Royal National Hospital for Rheumatic Diseases'),
(6557, 4907, 'nl', 'name', 'Rijnland Ziekenhuis'),
(6558, 4908, 'ja', 'name', 'åŽšē”Ÿé€£é«˜å²”ē—…é™¢'),
(6559, 4908, 'no_lang_code', 'name', 'Kouseiren Takaoka Hospital'),
(6560, 4909, 'en', 'name', 'Deaconess Hospital'),
(6561, 4910, 'en', 'name', 'University of Tehran'),
(6562, 4910, 'fa', 'name', 'دانؓگاه تهران'),
(6563, 4911, 'pl', 'name', 'Szpital Uniwersytecki w Krakowie'),
(6564, 4912, 'en', 'name', 'Feng Chia University'),
(6565, 4913, 'en', 'name', 'National Chung Hsing University'),
(6566, 4914, 'en', 'name', 'Children''s Hospital of Richmond at VCU'),
(6567, 4915, 'en', 'name', 'Deaconess Hospital'),
(6568, 4916, 'en', 'name', 'University of Kentucky HealthCare'),
(6569, 4917, 'en', 'name', 'Cheil General Hospital and Women''s Healthcare Center'),
(6570, 4918, 'en', 'name', 'American Mathematical Society'),
(6571, 4918, 'es', 'name', 'Sociedad Estadounidense de MatemƔtica'),
(6572, 4919, 'en', 'name', 'First Affiliated Hospital of Harbin Medical University'),
(6573, 4920, 'en', 'name', 'Southern Illinois University System'),
(6574, 4920, 'fr', 'name', 'UniversitƩ de l''illinois du sud'),
(6575, 4921, 'en', 'name', 'Yeditepe University Hospital'),
(6576, 4921, 'tr', 'name', 'Yeditepe Üniversitesi Hastanesi'),
(6577, 4922, 'en', 'name', 'University of Minnesota Morris'),
(6578, 4922, 'fr', 'name', 'UniversitƩ du minnesota Ơ morris'),
(6579, 4923, 'en', 'name', 'Shenandoah University'),
(6580, 4924, 'en', 'name', 'Israel Defense Forces Medical Corps'),
(6581, 4925, 'en', 'name', 'New Cross Hospital'),
(6582, 4926, 'ro', 'name', 'Institutul Clinic Fundeni'),
(6583, 4927, 'en', 'name', 'Government Medical College'),
(6584, 4928, 'en', 'name', 'Chonburi Hospital'),
(6585, 4928, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŠąø„ąøšąøøąø£ąøµ'),
(6586, 4929, 'en', 'name', 'Khoo Teck Puat Hospital'),
(6587, 4930, 'en', 'name', 'University Clinical Hospital Mostar'),
(6588, 4930, 'hr', 'name', 'SveučiliŔna klinička bolnica Mostar'),
(6589, 4931, 'en', 'name', 'Research Corporation of The University of Hawaii'),
(6590, 4932, 'it', 'name', 'Ospedale San Bortolo'),
(6591, 4933, 'en', 'name', 'Inje University Seoul Paik Hospital'),
(6592, 4933, 'ko', 'name', 'ģøģ œėŒ€ķ•™źµė°±ė³‘ģ›'),
(6593, 4934, 'en', 'name', 'Sri Venkateswara University'),
(6594, 4934, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤µą„‡ą¤‚ą¤•ą¤Ÿą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(6595, 4934, 'ta', 'name', 'ą®šą®æą®±ąÆ€ ą®µąÆ†ą®™ąÆą®•ą®ŸąÆ‡ą®šąÆą®µą®°ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(6596, 4934, 'te', 'name', 'ą°¶ą±ą°°ą±€ ą°µą±‡ą°‚ą°•ą°Ÿą±‡ą°¶ą±ą°µą°° ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(6597, 4934, 'ur', 'name', 'جامعہ سری ŁˆŪŒŁ†Ś©Ł¹ŪŒŲ“ŁˆŲ±Ų§'),
(6598, 4935, 'en', 'name', 'Bronglais General Hospital'),
(6599, 4936, 'en', 'name', 'American Hospital'),
(6600, 4936, 'tr', 'name', 'Amerikan Hastanesi'),
(6601, 4937, 'en', 'name', 'University Hospital Innsbruck'),
(6602, 4938, 'en', 'name', 'Goa Dental College and Hospital'),
(6603, 4939, 'en', 'name', 'Aminu Kano Teaching Hospital'),
(6604, 4940, 'en', 'name', 'Mater Adult Hospital'),
(6605, 4941, 'en', 'name', 'Wakayama University'),
(6606, 4941, 'ja', 'name', 'å’Œę­Œå±±å¤§å­¦'),
(6607, 4942, 'en', 'name', 'Andalusian School of Public Health'),
(6608, 4942, 'es', 'name', 'Escuela Andaluza de Salud PĆŗblica'),
(6609, 4943, 'en', 'name', 'Obihiro National Hospital'),
(6610, 4943, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹åøÆåŗƒē—…é™¢'),
(6611, 4944, 'no_lang_code', 'name', 'Canon (Canada)'),
(6612, 4945, 'en', 'name', 'Municipal Hirakata City Hospital'),
(6613, 4945, 'ja', 'name', 'åø‚ē«‹ęžšę–¹åø‚ę°‘ē—…é™¢'),
(6614, 4946, 'en', 'name', 'Kings Mill Hospital'),
(6615, 4947, 'en', 'name', 'Stony Brook University Hospital'),
(6616, 4948, 'en', 'name', 'Ratchaburi Hospital'),
(6617, 4948, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø£ąø²ąøŠąøšąøøąø£ąøµ'),
(6618, 4949, 'no_lang_code', 'name', 'Shaanxi Yulin Energy Group'),
(6619, 4950, 'en', 'name', 'Gallaecia Higher School'),
(6620, 4950, 'pt', 'name', 'Escola Superior Gallaecia'),
(6621, 4951, 'en', 'name', 'Higashi Nagoya National Hospital'),
(6622, 4951, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ę±åå¤å±‹ē—…é™¢'),
(6623, 4952, 'no_lang_code', 'name', 'Inotek Pharmaceuticals (United States)'),
(6624, 4953, 'en', 'name', 'Mennonite Christian Hospital'),
(6625, 4953, 'zh', 'name', '門諾醫院'),
(6626, 4954, 'en', 'name', 'Calderdale Royal Hospital'),
(6627, 4955, 'en', 'name', 'Crittenton Hospital Medical Center'),
(6628, 4956, 'ar', 'name', 'الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ©'),
(6629, 4956, 'en', 'name', 'Lebanese University'),
(6630, 4956, 'fr', 'name', 'UniversitƩ Libanaise'),
(6631, 4957, 'es', 'name', 'Hospital Valle del Nalón'),
(6632, 4958, 'fr', 'name', 'HƓpital de La Grave'),
(6633, 4959, 'en', 'name', 'Govt. Dental College & Hospital'),
(6634, 4960, 'en', 'name', 'Odessa National Polytechnic University'),
(6635, 4960, 'ru', 'name', 'ŠžŠ“ŠµŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(6636, 4960, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ політехнічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(6637, 4961, 'en', 'name', 'Royal Alexandra Children''s Hospital'),
(6638, 4962, 'en', 'name', 'Aga Khan University Hospital'),
(6639, 4963, 'en', 'name', 'Loyola University Medical Center'),
(6640, 4964, 'en', 'name', 'Cheltenham General Hospital'),
(6641, 4965, 'en', 'name', 'Advocate Children''s Hospital'),
(6642, 4966, 'no_lang_code', 'name', 'Curtiss-Wright (Canada)'),
(6643, 4967, 'en', 'name', 'South Carolina State Department of Mental Health'),
(6644, 4968, 'en', 'name', 'Kettering General Hospital NHS Trust'),
(6645, 4969, 'en', 'name', 'Gastroenterology Medical Center and Hospital'),
(6646, 4970, 'bn', 'name', 'ą¦Øą¦°ą§ą¦„ą¦¬ą§‡ą¦™ą§ą¦—ą¦² ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦•ą¦²ą§‡ą¦œ'),
(6647, 4970, 'en', 'name', 'North Bengal Medical College and Hospital'),
(6648, 4971, 'en', 'name', 'St Gƶran''s Children''s Hospital'),
(6649, 4972, 'en', 'name', 'Lovelace Health System'),
(6650, 4973, 'es', 'name', 'Centro Sociosanitario Nuestra SeƱora del Pino'),
(6651, 4974, 'en', 'name', 'University of Arkansas at Monticello'),
(6652, 4975, 'en', 'name', 'Choithram Hospital and Research Centre'),
(6653, 4976, 'bn', 'name', 'খুলনা মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(6654, 4976, 'en', 'name', 'Khulna Medical College'),
(6655, 4977, 'en', 'name', 'National Defense Academy of Japan'),
(6656, 4977, 'ja', 'name', 'é˜²č”›å¤§å­¦ę ”'),
(6657, 4978, 'en', 'name', 'Baptist Memorial Hospital'),
(6658, 4979, 'en', 'name', 'Baptist Medical Center Beaches'),
(6659, 4980, 'tr', 'name', 'Ege Üniversitesi Tıp Fakültesi Hastanesi'),
(6660, 4981, 'pt', 'name', 'Escola Superior de Educação de Almeida Garrett'),
(6661, 4982, 'en', 'name', 'Altnagelvin Area Hospital'),
(6662, 4983, 'en', 'name', 'Kessler Institute for Rehabilitation'),
(6663, 4984, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© السادس من أكتوبر'),
(6664, 4984, 'en', 'name', 'October 6 University'),
(6665, 4985, 'pt', 'name', 'Universidade Regional do Cariri'),
(6666, 4986, 'es', 'name', 'Universidad del Desarrollo'),
(6667, 4987, 'en', 'name', 'Suffolk University'),
(6668, 4987, 'es', 'name', 'Universidad de Suffolk'),
(6669, 4988, 'en', 'name', 'Heritage University'),
(6670, 4989, 'ko', 'name', 'ģ‚¼ģœ”ģ˜ė£Œģ›ģ„œģšøė³‘ģ›'),
(6671, 4989, 'no_lang_code', 'name', 'Sahmyook Medical Center'),
(6672, 4990, 'no_lang_code', 'name', 'TPL (United States)'),
(6673, 4991, 'pt', 'name', 'Hospital MĆ£e de Deus'),
(6674, 4992, 'en', 'name', 'Mater Dei Hospital'),
(6675, 4993, 'en', 'name', 'Yeungnam University'),
(6676, 4993, 'ko', 'name', 'ģ˜ė‚ØėŒ€ķ•™źµ'),
(6677, 4994, 'en', 'name', 'Urho Kaleva Kekkonen Institute'),
(6678, 4995, 'en', 'name', 'Hallym University Medical Center'),
(6679, 4995, 'ko', 'name', 'ķ•œė¦¼ėŒ€ķ•™źµģ˜ė£Œģ›'),
(6680, 4996, 'en', 'name', 'Sendai Kousei Hospital'),
(6681, 4996, 'ja', 'name', 'ä»™å°åŽšē”Ÿē—…é™¢'),
(6682, 4997, 'en', 'name', 'University Medical Center Rizk Hospital'),
(6683, 4998, 'en', 'name', 'Unity Hospital'),
(6684, 4999, 'en', 'name', 'Gansu Agricultural University'),
(6685, 4999, 'zh', 'name', 'ē”˜č‚ƒå†œäøšå¤§å­¦'),
(6686, 5000, 'en', 'name', 'Royal Columbian Hospital'),
(6687, 5001, 'no_lang_code', 'name', 'Galenea (United States)'),
(6688, 5002, 'en', 'name', 'York Hospital'),
(6689, 5003, 'no_lang_code', 'name', 'SignalChem (Canada)'),
(6690, 5004, 'en', 'name', 'Centre for innovative process engineering'),
(6691, 5005, 'no_lang_code', 'name', 'Alpha Technologies (Canada)'),
(6692, 5006, 'en', 'name', 'Oak Crest Institute of Science'),
(6693, 5007, 'ja', 'name', 'åÆŒę°øē—…é™¢'),
(6694, 5007, 'no_lang_code', 'name', 'Tominaga hospital'),
(6695, 5008, 'en', 'name', 'Hearthstone Alzheimer Care'),
(6696, 5009, 'en', 'name', 'Native American Cancer Research'),
(6697, 5010, 'no_lang_code', 'name', 'Fianium (United Kingdom)'),
(6698, 5011, 'en', 'name', 'Philadelphia Fire Department'),
(6699, 5012, 'no_lang_code', 'name', 'Aradigm (United States)'),
(6700, 5013, 'no_lang_code', 'name', 'iProgen Biotech (Canada)'),
(6701, 5014, 'no_lang_code', 'name', 'Stratonics (United States)'),
(6702, 5015, 'no_lang_code', 'name', 'Scientific Solutions (United States)'),
(6703, 5016, 'tr', 'name', 'Türkiye Yüksek İhtisas Hastanesi'),
(6704, 5017, 'es', 'name', 'Instituto de Salud PĆŗblica de Navarra'),
(6705, 5018, 'en', 'name', 'California Rural Indian Health Board'),
(6706, 5019, 'en', 'name', 'Fresno Unified School District'),
(6707, 5020, 'no_lang_code', 'name', 'ECBio (Portugal)'),
(6708, 5021, 'en', 'name', 'Park Centre for Mental Health'),
(6709, 5022, 'no_lang_code', 'name', 'Morinaga Institute of Biological Science'),
(6710, 5023, 'en', 'name', 'National Institute of Agricultural Science and Technology'),
(6711, 5024, 'no_lang_code', 'name', 'Biodynamic Research Corporation (United States)'),
(6712, 5025, 'en', 'name', 'Center for Naval Analyses'),
(6713, 5026, 'no_lang_code', 'name', 'Nanoco Technologies (United Kingdom)'),
(6714, 5027, 'gd', 'name', 'Banca RƬoghail na h-Alba'),
(6715, 5027, 'no_lang_code', 'name', 'Royal Bank of Scotland (United Kingdom)'),
(6716, 5028, 'en', 'name', 'American Indian Center'),
(6717, 5029, 'en', 'name', 'Community Connections'),
(6718, 5030, 'de', 'name', 'Deutsche Klinik für Diagnostik'),
(6719, 5031, 'no_lang_code', 'name', 'Ultra Electronics (Canada)'),
(6720, 5032, 'en', 'name', 'Zübeyde Hanim Maternity Hospital'),
(6721, 5033, 'no_lang_code', 'name', 'EcoMetrix'),
(6722, 5034, 'no_lang_code', 'name', 'Tucker-Davis Technologies (United States)'),
(6723, 5035, 'no_lang_code', 'name', 'Implant Sciences (United States)'),
(6724, 5036, 'no_lang_code', 'name', 'KCTS 9 (United States)'),
(6725, 5037, 'en', 'name', 'Des Moines Area Community College'),
(6726, 5038, 'no_lang_code', 'name', 'Liminal BioSciences (Canada)'),
(6727, 5039, 'en', 'name', 'Foundation for Blood Research'),
(6728, 5040, 'en', 'name', 'Mt. Hood Community College'),
(6729, 5041, 'no_lang_code', 'name', 'DeltaMetrics (United States)'),
(6730, 5042, 'en', 'name', 'Central Aerohydrodynamic Institute'),
(6731, 5042, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š°ŃŃ€Š¾Š³ŠøŠ“Ń€Š¾Š“ŠøŠ½Š°Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени профессора Š.Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾'),
(6732, 5043, 'no_lang_code', 'name', 'Wilson Wolf Manufacturing (United States)'),
(6733, 5044, 'no_lang_code', 'name', 'Decision Demographics (United States)'),
(6734, 5045, 'en', 'name', 'Communication Matters'),
(6735, 5046, 'en', 'name', 'Blood Transfusion Centre of Slovenia'),
(6736, 5047, 'no_lang_code', 'name', 'Cambridge Scientific (United States)'),
(6737, 5048, 'no_lang_code', 'name', 'Ivoclar Vivadent (Liechtenstein)'),
(6738, 5049, 'no_lang_code', 'name', 'Actelion (Switzerland)'),
(6739, 5050, 'en', 'name', 'National Evolutionary Synthesis Center'),
(6740, 5051, 'no_lang_code', 'name', 'Scarab Genomics (United States)'),
(6741, 5052, 'no_lang_code', 'name', 'Allozyne (United States)'),
(6742, 5053, 'en', 'name', 'Singapore Science Park'),
(6743, 5053, 'ms', 'name', 'Taman Sains Singapura'),
(6744, 5053, 'zh', 'name', 'ę–°åŠ å”ē§‘å­¦å›­'),
(6745, 5054, 'en', 'name', 'Food Research Institute'),
(6746, 5055, 'no_lang_code', 'name', 'Stottler Henke Associates (United States)'),
(6747, 5056, 'no_lang_code', 'name', 'NeurAxon (Canada)'),
(6748, 5057, 'no_lang_code', 'name', 'Cell Culture Company (United States)'),
(6749, 5058, 'en', 'name', 'Orange County Research Center'),
(6750, 5059, 'pt', 'name', 'Fundação de Medicina Tropical'),
(6751, 5060, 'no_lang_code', 'name', 'Carterra (United States)'),
(6752, 5061, 'en', 'name', 'Bostwick Laboratories'),
(6753, 5062, 'en', 'name', 'Harrisburg Area Community College'),
(6754, 5063, 'en', 'name', 'National Medical Products Administration'),
(6755, 5064, 'no_lang_code', 'name', 'Online Technologies (United States)'),
(6756, 5065, 'no_lang_code', 'name', 'Xention (United Kingdom)'),
(6757, 5066, 'en', 'name', 'Passaic County Community College'),
(6758, 5067, 'en', 'name', 'Bandim Health Project'),
(6759, 5067, 'pt', 'name', 'Projecto de SaĆŗde Bandim'),
(6760, 5068, 'en', 'name', 'Dick Young Productions'),
(6761, 5069, 'en', 'name', 'Pima Prevention Partnership'),
(6762, 5070, 'no_lang_code', 'name', 'SciberQuest (United States)'),
(6763, 5071, 'en', 'name', 'Madison Area Technical College'),
(6764, 5072, 'no_lang_code', 'name', 'BASF (United States)'),
(6765, 5073, 'no_lang_code', 'name', 'ABB (Sweden)'),
(6766, 5074, 'en', 'name', 'Department of Community and Human Services'),
(6767, 5075, 'it', 'name', 'Consorzio per Valutazioni Biologiche e Farmacologiche'),
(6768, 5076, 'no_lang_code', 'name', 'Altravax (United States)'),
(6769, 5077, 'en', 'name', 'Perm State Medical Academy'),
(6770, 5077, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(6771, 5078, 'en', 'name', 'National Microelectronics Institute'),
(6772, 5079, 'no_lang_code', 'name', 'Fujirebio (Belgium)'),
(6773, 5080, 'en', 'name', 'Mount Carmel College of Nursing'),
(6774, 5081, 'en', 'name', 'Amarillo College'),
(6775, 5082, 'no_lang_code', 'name', 'TMO Renewables (United Kingdom)'),
(6776, 5083, 'en', 'name', 'VA New Jersey Health Care System'),
(6777, 5084, 'en', 'name', 'MotherToBaby'),
(6778, 5085, 'en', 'name', 'Macedonian Academy of Sciences and Arts'),
(6779, 5086, 'en', 'name', 'St. Joseph''s Hospital'),
(6780, 5087, 'en', 'name', 'Health & Safety Laboratory'),
(6781, 5088, 'en', 'name', 'St. Elisabeth Hospital'),
(6782, 5089, 'pt', 'name', 'Irmandade da Santa Casa de Misericórdia de São Paulo'),
(6783, 5090, 'no_lang_code', 'name', 'Vestas (Denmark)'),
(6784, 5091, 'en', 'name', 'Peijas Hospital'),
(6785, 5091, 'fi', 'name', 'Peijaksen sairaala'),
(6786, 5092, 'en', 'name', 'Arizona Office of the Governor'),
(6787, 5093, 'it', 'name', 'Istituto Nanoscienze'),
(6788, 5094, 'no_lang_code', 'name', 'Danaher (United Kingdom)'),
(6789, 5095, 'en', 'name', 'National Institute of Dental and Craniofacial Research'),
(6790, 5096, 'en', 'name', 'South Carolina HIV/AIDS Council'),
(6791, 5097, 'en', 'name', 'Orthopaedic Center'),
(6792, 5098, 'ja', 'name', 'åÆŒå±±ēœŒē«‹äø­å¤®ē—…é™¢'),
(6793, 5098, 'no_lang_code', 'name', 'Toyama Prefectural Central Hospital'),
(6794, 5099, 'en', 'name', 'National Defense Medical College Hospital'),
(6795, 5099, 'ja', 'name', 'é˜²č”›åŒ»ē§‘å¤§å­¦ę ”ē—…é™¢'),
(6796, 5100, 'no_lang_code', 'name', 'Aerpio Pharmaceuticals (United States)'),
(6797, 5101, 'no_lang_code', 'name', 'Red Hill Studios'),
(6798, 5102, 'en', 'name', 'Canadian Fitness and Lifestyle Research Institute'),
(6799, 5103, 'en', 'name', 'Southeast Community College'),
(6800, 5104, 'no_lang_code', 'name', 'Theageneio General Hospital'),
(6801, 5105, 'en', 'name', 'Overlake Hospital Medical Center'),
(6802, 5106, 'no_lang_code', 'name', 'Impact Assessment'),
(6803, 5107, 'en', 'name', 'New England Center for Children'),
(6804, 5108, 'en', 'name', 'Cedars-Sinai Kerlan-Jobe Institute'),
(6805, 5109, 'en', 'name', 'New York College of Podiatric Medicine'),
(6806, 5110, 'pt', 'name', 'Biocant'),
(6807, 5111, 'no_lang_code', 'name', 'Modellium (Canada)'),
(6808, 5112, 'es', 'name', 'Centro MƩdico Nacional La Raza'),
(6809, 5113, 'no_lang_code', 'name', 'Siloam Biosciences (United States)'),
(6810, 5114, 'en', 'name', 'Guthrie Foundation'),
(6811, 5115, 'en', 'name', 'St. John Medical Center'),
(6812, 5116, 'no_lang_code', 'name', 'Ingenza (United Kingdom)'),
(6813, 5117, 'no_lang_code', 'name', 'Universal Sensors (United States)'),
(6814, 5118, 'no_lang_code', 'name', 'Intelligent Optical Systems (United States)'),
(6815, 5119, 'en', 'name', 'KKR Tohoku Kosai Hospital'),
(6816, 5119, 'ja', 'name', 'ę±åŒ—å…¬ęøˆē—…é™¢'),
(6817, 5120, 'en', 'name', 'BOOMHealth'),
(6818, 5121, 'it', 'name', 'Ospedale Maggiore'),
(6819, 5122, 'ja', 'name', 'åø‚ē«‹č±Šäø­ē—…é™¢'),
(6820, 5122, 'no_lang_code', 'name', 'Toyonaka Municipal Hospital'),
(6821, 5123, 'en', 'name', 'Philander Smith College'),
(6822, 5124, 'no_lang_code', 'name', 'La Jolla Science Applications (United States)'),
(6823, 5125, 'no_lang_code', 'name', 'Integrity Testing Laboratory (Canada)'),
(6824, 5126, 'en', 'name', 'Shea Ear Clinic'),
(6825, 5127, 'en', 'name', 'Saudi Center for Organ Transplantation'),
(6826, 5128, 'en', 'name', 'Hawaii Agriculture Research Center'),
(6827, 5129, 'en', 'name', 'St.Petersburg V.M.Bekhterev Psychoneurological Research Institute'),
(6828, 5129, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ психоневрологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.М. Бехтерева'),
(6829, 5130, 'no_lang_code', 'name', 'Nanoptics (United States)'),
(6830, 5131, 'en', 'name', 'Austen Riggs Center'),
(6831, 5132, 'en', 'name', 'Pathfinder International'),
(6832, 5133, 'en', 'name', 'University of Arkansas Medical Center'),
(6833, 5134, 'no_lang_code', 'name', 'GC Image (United States)'),
(6834, 5135, 'no_lang_code', 'name', 'Bridge12 Technologies (United States)'),
(6835, 5136, 'en', 'name', 'Harvard Affiliated Emergency Medicine Residency'),
(6836, 5137, 'no_lang_code', 'name', 'Phrixus Pharmaceuticals (United States)'),
(6837, 5138, 'no_lang_code', 'name', 'Cabezon Group (United States)'),
(6838, 5139, 'en', 'name', 'Harlem United'),
(6839, 5140, 'fr', 'name', 'Institut Arnault Tzanck'),
(6840, 5141, 'en', 'name', 'American Association for the Study of Liver Diseases'),
(6841, 5142, 'en', 'name', 'Opotek Incorporation'),
(6842, 5142, 'no_lang_code', 'name', 'Opotek (United States)'),
(6843, 5143, 'no_lang_code', 'name', 'Alliance Pharmaceutical (United States)'),
(6844, 5144, 'en', 'name', 'Norwich Research Park'),
(6845, 5145, 'en', 'name', 'Glasgow Life'),
(6846, 5146, 'no_lang_code', 'name', 'National Instruments (United Kingdom)'),
(6847, 5147, 'en', 'name', 'Environmental Research Institute of Michigan'),
(6848, 5148, 'no_lang_code', 'name', 'Agricultural Development Advisory Service (United Kingdom)'),
(6849, 5149, 'en', 'name', 'Monterey Peninsula College'),
(6850, 5150, 'de', 'name', 'Unfallkrankenhaus Wien Lorenz Bƶhler'),
(6851, 5151, 'no_lang_code', 'name', 'Cemka-Eval (France)'),
(6852, 5152, 'no_lang_code', 'name', 'Toxikon (United States)'),
(6853, 5153, 'no_lang_code', 'name', 'Stoelting (United States)'),
(6854, 5154, 'no_lang_code', 'name', 'rEVO Biologics (United States)'),
(6855, 5155, 'no_lang_code', 'name', 'Roche (Canada)'),
(6856, 5156, 'it', 'name', 'Azienda Ospedaliera di Perugia'),
(6857, 5157, 'no_lang_code', 'name', 'TriboFilm Research (United States)'),
(6858, 5158, 'it', 'name', 'Centro Cardiologico Monzino'),
(6859, 5159, 'no_lang_code', 'name', 'BlueInGreen (United States)'),
(6860, 5160, 'en', 'name', 'Mahatma Gandhi Kashi Vidyapith'),
(6861, 5160, 'hi', 'name', 'ą¤®ą¤¹ą¤¾ą¤¤ą„ą¤®ą¤¾ ą¤—ą¤¾ą¤ą¤§ą„€ ą¤•ą¤¾ą¤¶ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(6862, 5160, 'ta', 'name', 'ą®®ą®•ą®¾ą®¤ąÆą®®ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ ą®•ą®¾ą®šą®æ ą®µą®æą®¤ąÆą®Æą®¾ą®ŖąÆ€ą®Ÿą®®ąÆ'),
(6863, 5161, 'no_lang_code', 'name', 'Integran (Canada)'),
(6864, 5162, 'no_lang_code', 'name', 'BioLegend (United States)'),
(6865, 5163, 'no_lang_code', 'name', 'VinTech (United States)'),
(6866, 5164, 'en', 'name', 'National Institute of Arthritis and Musculoskeletal and Skin Diseases'),
(6867, 5165, 'en', 'name', 'Latino Health Institute (United States)'),
(6868, 5166, 'no_lang_code', 'name', 'Okino Computer Graphics (Canada)'),
(6869, 5167, 'en', 'name', 'Saskatchewan Hospice Palliative Care Association'),
(6870, 5168, 'no_lang_code', 'name', 'Aster'),
(6871, 5169, 'no_lang_code', 'name', 'Indus Instruments (United States)'),
(6872, 5170, 'en', 'name', 'Loud Crow Interactive'),
(6873, 5171, 'no_lang_code', 'name', 'Sharp Laboratories of Europe (United Kingdom)'),
(6874, 5172, 'en', 'name', 'Healthcare Technology Systems'),
(6875, 5173, 'en', 'name', 'Gyeongsangnam-do Agricultural Research and Extension Services'),
(6876, 5173, 'ko', 'name', 'ź²½ģƒė‚Øė„ė†ģ—…źø°ģˆ ģ›'),
(6877, 5174, 'no_lang_code', 'name', 'Cochlear (Switzerland)'),
(6878, 5175, 'ar', 'name', 'مستؓفى ŲŖŁˆŲ§Ł…'),
(6879, 5175, 'en', 'name', 'Tawam Hospital'),
(6880, 5176, 'en', 'name', 'Highline College'),
(6881, 5177, 'no_lang_code', 'name', 'Neuroscript (United States)'),
(6882, 5178, 'no_lang_code', 'name', 'KeraNetics (United States)'),
(6883, 5179, 'en', 'name', 'Association of State and Territorial Health Officials'),
(6884, 5180, 'en', 'name', 'Kanagawa Institute of Technology'),
(6885, 5180, 'ja', 'name', 'ē„žå„ˆå·å·„ē§‘å¤§å­¦'),
(6886, 5181, 'en', 'name', 'Hubbs-Sea World Research Institute'),
(6887, 5182, 'no_lang_code', 'name', 'Bio-Synthesis (United States)'),
(6888, 5183, 'no_lang_code', 'name', 'Prototypes (United States)'),
(6889, 5184, 'no_lang_code', 'name', 'Oceanit (United States)'),
(6890, 5185, 'en', 'name', 'Wellington Hospital'),
(6891, 5186, 'en', 'name', 'Maine Maritime Academy'),
(6892, 5187, 'en', 'name', 'Diamond Headache Clinic'),
(6893, 5188, 'pt', 'name', 'Centro de GenƩtica Clƭnica'),
(6894, 5189, 'it', 'name', 'Istituto per lo Studio e la Prevenzione Oncologica'),
(6895, 5190, 'no_lang_code', 'name', 'Companhia União Fabril'),
(6896, 5191, 'en', 'name', 'Huddersfield Royal Infirmary'),
(6897, 5192, 'no_lang_code', 'name', 'JEOL (United Kingdom)'),
(6898, 5193, 'no_lang_code', 'name', 'Addcomp (Netherlands)'),
(6899, 5194, 'no_lang_code', 'name', 'Watershed Associates'),
(6900, 5195, 'sv', 'name', 'Sunderby sjukhus'),
(6901, 5196, 'en', 'name', 'City of Bradford Metropolitan District Council'),
(6902, 5197, 'en', 'name', 'International Neuroscience Institute'),
(6903, 5198, 'de', 'name', 'Max-Planck-Institut für Dynamik und Selbstorganisation'),
(6904, 5198, 'en', 'name', 'Max Planck Institute for Dynamics and Self-Organization'),
(6905, 5199, 'no_lang_code', 'name', 'NeuroDx Development (United States)'),
(6906, 5200, 'da', 'name', 'Regionshospitalet Viborg'),
(6907, 5200, 'en', 'name', 'Viborg Regional Hospital'),
(6908, 5201, 'en', 'name', 'Institute of Theoretical and Experimental Biophysics'),
(6909, 5201, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ биофизики Российской акаГемии наук'),
(6910, 5202, 'pt', 'name', 'Centro Brasileiro de Estudos em Dermatologia'),
(6911, 5203, 'en', 'name', 'American Nurses Association'),
(6912, 5204, 'no_lang_code', 'name', 'Boston Applied Technologies (United States)'),
(6913, 5205, 'en', 'name', 'Central Council for Research in Ayurvedic Science'),
(6914, 5206, 'en', 'name', 'Sunnybrook Hospital'),
(6915, 5207, 'no_lang_code', 'name', 'Monteco (Canada)'),
(6916, 5208, 'no_lang_code', 'name', 'Premier Foods (United Kingdom)'),
(6917, 5209, 'no_lang_code', 'name', 'MediSpectra (United States)'),
(6918, 5210, 'en', 'name', 'Sunderland Eye Infirmary'),
(6919, 5211, 'en', 'name', 'Zensa Hospital'),
(6920, 5212, 'en', 'name', 'American Society for Reproductive Medicine'),
(6921, 5213, 'no_lang_code', 'name', 'Inscent (United States)'),
(6922, 5214, 'en', 'name', 'Tianjin Third Central Hospital'),
(6923, 5214, 'zh', 'name', 'å¤©ę“„åø‚ē¬¬äø‰äø­åæƒåŒ»é™¢'),
(6924, 5215, 'en', 'name', 'Confederation of National Associations of Tanners and Dressers of the European Community'),
(6925, 5216, 'en', 'name', 'Ontario Ministry of Labour'),
(6926, 5216, 'fr', 'name', 'MinistĆØre du Travail'),
(6927, 5217, 'en', 'name', 'Philosophy of Science Association'),
(6928, 5218, 'en', 'name', 'National Association of School Nurses'),
(6929, 5219, 'no_lang_code', 'name', 'MAX Mobility (United States)'),
(6930, 5220, 'no_lang_code', 'name', 'ChemGreen Innovation (Canada)'),
(6931, 5221, 'no_lang_code', 'name', 'MacConnell Research (United States)'),
(6932, 5222, 'no_lang_code', 'name', 'Hitachi (United Kingdom)'),
(6933, 5223, 'en', 'name', 'Red Rocks Community College'),
(6934, 5224, 'it', 'name', 'Figli Adottivi e Genitori Naturali'),
(6935, 5225, 'en', 'name', 'Edinburgh Royal Infirmary'),
(6936, 5226, 'no_lang_code', 'name', 'Jet Process Corporation (United States)'),
(6937, 5227, 'en', 'name', 'National Institute of Health and Family Welfare'),
(6938, 5227, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ और परिवार ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6939, 5228, 'no_lang_code', 'name', '360pi (Canada)'),
(6940, 5229, 'en', 'name', 'National Renewable Energy Centre'),
(6941, 5230, 'it', 'name', 'Fondazione Istituto Neurologico Nazionale Casimiro Mondino'),
(6942, 5231, 'no_lang_code', 'name', 'Picarro (United States)'),
(6943, 5232, 'en', 'name', 'Institute of Livestock and Grassland Science'),
(6944, 5232, 'ja', 'name', 'ē•œē”£ē ”ē©¶éƒØé–€'),
(6945, 5233, 'no_lang_code', 'name', 'Integrated DNA Technologies (United States)'),
(6946, 5234, 'no_lang_code', 'name', 'Chembio (United States)'),
(6947, 5235, 'en', 'name', 'Western General Hospital'),
(6948, 5236, 'pt', 'name', 'Instituto H. Ellis'),
(6949, 5237, 'no_lang_code', 'name', 'Advanced Circulatory System (United States)'),
(6950, 5238, 'en', 'name', 'American College of Surgeons'),
(6951, 5239, 'no_lang_code', 'name', 'StataCorp (United States)'),
(6952, 5240, 'en', 'name', 'St. Joseph Medical Center'),
(6953, 5241, 'en', 'name', 'Central Institute of Psychiatry'),
(6954, 5241, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤®ą¤Øą¤¶ą„ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(6955, 5242, 'en', 'name', 'The Tech Interactive'),
(6956, 5243, 'en', 'name', 'San Francisco Film Society'),
(6957, 5244, 'en', 'name', 'Pamela Youde Nethersole Eastern Hospital'),
(6958, 5244, 'zh', 'name', 'ę±å€å°¤å¾·å¤«äŗŗé‚£ę‰“ē“ é†«é™¢'),
(6959, 5245, 'en', 'name', 'Rollins College'),
(6960, 5246, 'no_lang_code', 'name', 'Sema Construction (United States)'),
(6961, 5247, 'no_lang_code', 'name', 'GVD Corporation (United States)'),
(6962, 5248, 'en', 'name', 'F.D. Ovcharenko Institute of Biocolloidal Chemistry'),
(6963, 5248, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біоколоїГної хімії ім. Ф. Š”. ŠžŠ²Ń‡Š°Ń€ŠµŠ½ŠŗŠ°'),
(6964, 5249, 'no_lang_code', 'name', 'Area Detector Systems Corporation (United States)'),
(6965, 5250, 'en', 'name', 'Toyama Institute of Health'),
(6966, 5250, 'ja', 'name', 'åÆŒå±±ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(6967, 5251, 'no_lang_code', 'name', 'Dyson (United Kingdom)'),
(6968, 5252, 'en', 'name', 'Philippine General Hospital'),
(6969, 5253, 'en', 'name', 'P. D. Hinduja Hospital and Medical Research Centre'),
(6970, 5254, 'no_lang_code', 'name', 'Nature Technology Corporation (United States)'),
(6971, 5255, 'no_lang_code', 'name', 'Ion Physics (United States)'),
(6972, 5256, 'en', 'name', 'W.M. Keck Observatory'),
(6973, 5257, 'en', 'name', 'William Beaumont Army Medical Center'),
(6974, 5258, 'fr', 'name', 'CollĆØge Shawinigan'),
(6975, 5259, 'de', 'name', 'StƤdtisches Klinikum Karlsruhe'),
(6976, 5260, 'en', 'name', 'Capital Allergy and Respiratory Disease Center'),
(6977, 5261, 'no_lang_code', 'name', 'Adasa (Spain)'),
(6978, 5262, 'en', 'name', 'Queen Saovabha Memorial Institute'),
(6979, 5263, 'no_lang_code', 'name', 'Atlas Elektronik (Germany)'),
(6980, 5264, 'no_lang_code', 'name', 'Phcc (United States)'),
(6981, 5265, 'en', 'name', 'Saint Vincent College'),
(6982, 5266, 'no_lang_code', 'name', 'SonaCare Medical (United States)'),
(6983, 5267, 'en', 'name', 'Ministry of Justice'),
(6984, 5268, 'no_lang_code', 'name', 'P&P Optica (Canada)'),
(6985, 5269, 'en', 'name', 'Island Peer Review Organization'),
(6986, 5270, 'en', 'name', 'Florence–Darlington Technical College'),
(6987, 5271, 'no_lang_code', 'name', 'Performance Polymer Solutions (United States)'),
(6988, 5272, 'en', 'name', 'Center for Science in the Public Interest (United States)'),
(6989, 5273, 'no_lang_code', 'name', 'FFA Sciences (United States)'),
(6990, 5274, 'en', 'name', 'Wakayama Rosai Hospital'),
(6991, 5274, 'ja', 'name', 'å’Œę­Œå±±ć‚ć†ć•ć„ē—…é™¢'),
(6992, 5275, 'fr', 'name', 'Institut de Virologie'),
(6993, 5276, 'no_lang_code', 'name', 'BM-Science'),
(6994, 5277, 'en', 'name', 'Vision Eye Institute'),
(6995, 5278, 'no_lang_code', 'name', 'InnerSea Technology (United States)'),
(6996, 5279, 'en', 'name', 'Rancho Santiago Community College District'),
(6997, 5280, 'no_lang_code', 'name', 'Mandel Scientific (Canada)'),
(6998, 5281, 'en', 'name', 'Fond du Lac Tribal and Community College'),
(6999, 5282, 'en', 'name', 'St. Francis Hospital'),
(7000, 5283, 'en', 'name', 'Association for Symbolic Logic'),
(7001, 5284, 'en', 'name', 'Wexford General Hospital'),
(7002, 5284, 'ga', 'name', 'OspidƩal GinearƔlta Loch Garman'),
(7003, 5285, 'no_lang_code', 'name', 'Stallergenes Greer (France)'),
(7004, 5286, 'en', 'name', 'American Academy of Dermatology'),
(7005, 5287, 'no_lang_code', 'name', 'Local Data Company (United Kingdom)'),
(7006, 5288, 'no_lang_code', 'name', 'Juvaris BioTherapeutics (United States)'),
(7007, 5289, 'ja', 'name', 'ę—„ęœ¬é›»äæ”é›»č©±ę Ŗå¼ä¼šē¤¾'),
(7008, 5289, 'no_lang_code', 'name', 'NTT (Japan)'),
(7009, 5290, 'no_lang_code', 'name', 'Cooperative Resources International (United States)'),
(7010, 5291, 'no_lang_code', 'name', 'Endacea (United States)'),
(7011, 5292, 'no_lang_code', 'name', 'Endomedix (United States)'),
(7012, 5293, 'en', 'name', 'Royal Institute of British Architects'),
(7013, 5294, 'en', 'name', 'St. James Hospital and Health Centers'),
(7014, 5295, 'en', 'name', 'Fukuoka Institute of Technology'),
(7015, 5295, 'ja', 'name', 'ē¦å²”å·„ę„­å¤§å­¦'),
(7016, 5296, 'en', 'name', 'North Sydney Orthopaedic and Sports Medicine Centre'),
(7017, 5297, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(7018, 5298, 'en', 'name', 'National Partnership for Environmental Technology Education'),
(7019, 5299, 'en', 'name', 'Merrimack College'),
(7020, 5300, 'no_lang_code', 'name', 'Blackrock Microsystems (United States)'),
(7021, 5301, 'en', 'name', 'Institute of Experimental Cardiology'),
(7022, 5302, 'en', 'name', 'Cascade AIDS Project'),
(7023, 5303, 'no_lang_code', 'name', 'Allocadia (Canada)'),
(7024, 5304, 'en', 'name', 'Food Research Institute'),
(7025, 5304, 'ja', 'name', 'é£Ÿå“ē·åˆē ”ē©¶ę‰€'),
(7026, 5305, 'en', 'name', 'Botanical Society of America'),
(7027, 5306, 'en', 'name', 'Penrose Hospital'),
(7028, 5307, 'no_lang_code', 'name', '21st Century Therapeutics (United States)'),
(7029, 5308, 'en', 'name', 'Institute for Advanced Studies in Basic Sciences'),
(7030, 5308, 'fa', 'name', 'مرکز ŲŖŲ­ŲµŪŒŁ„Ų§ŲŖ ŲŖŚ©Ł…ŪŒŁ„ŪŒ ŲÆŲ± Ų¹Ł„ŁˆŁ… Ł¾Ų§ŪŒŁ‡ زنجان'),
(7031, 5309, 'no_lang_code', 'name', 'Boulder Language Technologies (United States)'),
(7032, 5310, 'en', 'name', 'Academy of Medical Sciences'),
(7033, 5311, 'no_lang_code', 'name', 'ABB (United States)'),
(7034, 5312, 'no_lang_code', 'name', 'ANI Pharmaceuticals (United States)'),
(7035, 5313, 'no_lang_code', 'name', 'Virscio (United States)'),
(7036, 5314, 'en', 'name', 'University of California, Irvine Medical Center'),
(7037, 5315, 'en', 'name', 'Connecticut Business and Industry Association'),
(7038, 5316, 'it', 'name', 'Istituto Neurologico Mediterraneo'),
(7039, 5317, 'no_lang_code', 'name', 'Capstone Therapeutics (United States)'),
(7040, 5318, 'en', 'name', 'Yaroslavl State Medical Academy'),
(7041, 5318, 'ru', 'name', 'Ярославский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(7042, 5319, 'en', 'name', 'National Institute of PerinatologĆ­a Isidro Espinosa de los Reyes'),
(7043, 5319, 'es', 'name', 'Instituto Nacional de PerinatologĆ­a'),
(7044, 5320, 'en', 'name', 'BioNB'),
(7045, 5321, 'bn', 'name', 'ভারতীয় মহাকাশ গবেষণা ą¦øą¦‚ą¦øą§ą¦„ą¦¾'),
(7046, 5321, 'en', 'name', 'Indian Space Research Organisation'),
(7047, 5321, 'gu', 'name', 'ઇસરો'),
(7048, 5321, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤…ą¤‚ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø संगठन'),
(7049, 5321, 'kn', 'name', 'ಭಾರತೀಯ ą²¬ą²¾ą²¹ą³ą²Æą²¾ą²•ą²¾ą²¶ ಸಂಶೋಧನೆ ą²øą²‚ą²øą³ą²„ą³†'),
(7050, 5321, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“øąµą“Ŗąµ‡ą“øąµ ą“±ą“æą“øąµ¼ą“šąµą“šąµ ą““ąµ¼ą“—ą“Øąµˆą“øąµ‡ą“·ąµ»'),
(7051, 5321, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ अंतराळ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(7052, 5321, 'ne', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤…ą¤Øą„ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø संगठन'),
(7053, 5321, 'pa', 'name', 'ਇਸਰੋ'),
(7054, 5321, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µą®æą®£ąÆą®µąÆ†ą®³ą®æ ą®†ą®ÆąÆą®µąÆ ą®®ąÆˆą®Æą®®ąÆ'),
(7055, 5321, 'te', 'name', 'భారతీయ ą°…ą°‚ą°¤ą°°ą°æą°•ą±ą°· పరిశోధనా ą°øą°‚ą°øą±ą°„'),
(7056, 5322, 'no_lang_code', 'name', 'Recombinant Technologies (United States)'),
(7057, 5323, 'no_lang_code', 'name', 'Parsons Brinckerhoff'),
(7058, 5324, 'en', 'name', 'Langley Environmental Partners Society'),
(7059, 5325, 'ja', 'name', 'ęØŖęµœå—å…±ęøˆē—…é™¢'),
(7060, 5325, 'no_lang_code', 'name', 'Yokohama Minami Kyosai Hospital'),
(7061, 5326, 'no_lang_code', 'name', 'PLx Pharma (United States)'),
(7062, 5327, 'en', 'name', 'Misericordia University'),
(7063, 5328, 'en', 'name', 'Archaeology Southwest'),
(7064, 5329, 'no_lang_code', 'name', 'Aspen Aerogels (United States)'),
(7065, 5330, 'en', 'name', 'Central Laboratory for Radiological Protection'),
(7066, 5330, 'pl', 'name', 'Centralnego Laboratorium Ochrony Radiologicznej'),
(7067, 5331, 'no_lang_code', 'name', 'Haematologic Technologies (United States)'),
(7068, 5332, 'en', 'name', 'St. Vincent Charity Hospital'),
(7069, 5333, 'en', 'name', 'National Marine Mammal Foundation'),
(7070, 5334, 'en', 'name', 'Allen Institute for Brain Science'),
(7071, 5335, 'en', 'name', 'Refugee and Immigrant Center'),
(7072, 5336, 'en', 'name', 'Administrative Staff College of India'),
(7073, 5337, 'no_lang_code', 'name', 'Thermal-Lube (Canada)'),
(7074, 5338, 'no_lang_code', 'name', 'TRIA Bioscience (United States)'),
(7075, 5339, 'no_lang_code', 'name', 'Gooch & Housego (United Kingdom)'),
(7076, 5340, 'en', 'name', 'Foothill College'),
(7077, 5341, 'en', 'name', 'Colorado Judicial Branch'),
(7078, 5342, 'no_lang_code', 'name', 'Oxford Lasers (United Kingdom)'),
(7079, 5343, 'en', 'name', 'New York City Health and Hospitals Corporation'),
(7080, 5344, 'fr', 'name', 'Science pour tous'),
(7081, 5345, 'en', 'name', 'Notre Dame of Maryland University'),
(7082, 5346, 'en', 'name', 'National Council on Ethics in Human Research'),
(7083, 5346, 'fr', 'name', 'Conseil national d''Ʃthique en recherche chez l''humain'),
(7084, 5347, 'it', 'name', 'Oasi Maria SS'),
(7085, 5348, 'en', 'name', 'Texas State Technical College Harlingen'),
(7086, 5349, 'en', 'name', 'BC Research (Canada)'),
(7087, 5350, 'en', 'name', 'Sustrans'),
(7088, 5351, 'no_lang_code', 'name', 'Amplimmune (United States)'),
(7089, 5352, 'en', 'name', 'Hernia Center'),
(7090, 5353, 'no_lang_code', 'name', 'Hsiri Therapeutics (United States)'),
(7091, 5354, 'no_lang_code', 'name', 'Sterling Research Group (United States)'),
(7092, 5355, 'no_lang_code', 'name', 'Rowan Williams Davies & Irwin (Canada)'),
(7093, 5356, 'en', 'name', 'Agile Mind'),
(7094, 5357, 'en', 'name', 'Hipple Cancer Research Center'),
(7095, 5358, 'en', 'name', 'St. Davnet''s Hospital'),
(7096, 5358, 'ga', 'name', 'OspidƩal Naomh Damhnait'),
(7097, 5359, 'en', 'name', 'Arapahoe House'),
(7098, 5360, 'no_lang_code', 'name', 'Springboard (Canada)'),
(7099, 5361, 'da', 'name', 'Vejle Sygehus'),
(7100, 5361, 'en', 'name', 'Vejle Hospital'),
(7101, 5362, 'en', 'name', 'Center for Clinical Studies'),
(7102, 5363, 'it', 'name', 'Ospedale degli Infermi'),
(7103, 5364, 'en', 'name', 'Academy of Radiology Research'),
(7104, 5365, 'en', 'name', 'Chief Dull Knife College'),
(7105, 5366, 'en', 'name', 'Institute of Physiology and Pathology of Hearing'),
(7106, 5367, 'no_lang_code', 'name', 'BioMedomics (United States)'),
(7107, 5368, 'en', 'name', 'National Environmental Health Association'),
(7108, 5369, 'no_lang_code', 'name', 'Horizon Research (United States)'),
(7109, 5370, 'pt', 'name', 'Instituto de Infectologia EmĆ­lio Ribas'),
(7110, 5371, 'en', 'name', 'Hamilton Regional Laboratory Medicine Program'),
(7111, 5372, 'no_lang_code', 'name', 'Capital Consulting Corporation (United States)'),
(7112, 5373, 'en', 'name', 'Center for Complex Infectious Diseases'),
(7113, 5374, 'en', 'name', 'National Audit Office'),
(7114, 5375, 'en', 'name', 'Columbia College - South Carolina'),
(7115, 5376, 'en', 'name', 'Matsumoto Livestock Hygiene Service Center'),
(7116, 5377, 'en', 'name', 'Australian Red Cross Lifeblood'),
(7117, 5378, 'no_lang_code', 'name', 'MycoLogic (Canada)'),
(7118, 5379, 'en', 'name', 'Joint Center for Structural Genomics'),
(7119, 5380, 'en', 'name', 'KentuckyOne Health'),
(7120, 5381, 'en', 'name', 'St. Luke''s Cataract and Laser Institute'),
(7121, 5382, 'no_lang_code', 'name', 'NVE Corporation (United States)'),
(7122, 5383, 'en', 'name', 'Wakefield Hospital'),
(7123, 5384, 'en', 'name', 'Swedish Medical Center'),
(7124, 5385, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠµŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŃ Šø енергийни системи'),
(7125, 5385, 'en', 'name', 'Institute of Electrochemistry and Energy Systems'),
(7126, 5386, 'en', 'name', 'Third Affiliated Hospital of Guangzhou Medical University'),
(7127, 5386, 'zh', 'name', 'å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø‰åŒ»é™¢'),
(7128, 5387, 'no_lang_code', 'name', 'Air Canada'),
(7129, 5388, 'no_lang_code', 'name', 'Pacific Biosciences (United States)'),
(7130, 5389, 'no_lang_code', 'name', 'Adif (Spain)'),
(7131, 5390, 'no_lang_code', 'name', 'Yecuris (United States)'),
(7132, 5391, 'en', 'name', 'National Institute of Blood Transfusion'),
(7133, 5391, 'fr', 'name', 'Institut National de la Transfusion Sanguine'),
(7134, 5392, 'en', 'name', 'Christian Community Health Center'),
(7135, 5393, 'no_lang_code', 'name', 'GigaGen (United States)'),
(7136, 5394, 'en', 'name', 'Academy of Medicine'),
(7137, 5395, 'en', 'name', 'Clinical Center of Vojvodina'),
(7138, 5395, 'sr', 'name', 'Klinički centar Vojvodine'),
(7139, 5396, 'en', 'name', 'National Institute on Drug Abuse'),
(7140, 5397, 'en', 'name', 'Community Health Awareness Group'),
(7141, 5398, 'no_lang_code', 'name', 'Woomera Therapeutics'),
(7142, 5399, 'en', 'name', 'University of British Columbia Hospital'),
(7143, 5400, 'en', 'name', 'St. Francis Hospital'),
(7144, 5401, 'en', 'name', 'TRAIN Consortium'),
(7145, 5401, 'it', 'name', 'Consorzio TRAIN'),
(7146, 5402, 'es', 'name', 'Hospital Quirón Teknon'),
(7147, 5403, 'en', 'name', 'Newcastle City Council'),
(7148, 5404, 'en', 'name', 'Center for Research in Environmental Epidemiology'),
(7149, 5404, 'es', 'name', 'Centro de Investigación en Epidemiología Ambiental'),
(7150, 5405, 'no_lang_code', 'name', 'Moberg Research (United States)'),
(7151, 5406, 'en', 'name', 'Manchester VA Medical Center'),
(7152, 5407, 'no_lang_code', 'name', 'WinProbe (United States)'),
(7153, 5408, 'en', 'name', 'PHS Commissioned Officers Foundation'),
(7154, 5409, 'no_lang_code', 'name', 'Ford Motor Company (United States)'),
(7155, 5410, 'no_lang_code', 'name', 'Cornerstone Systems Northwest (United States)'),
(7156, 5411, 'no_lang_code', 'name', 'Taiga Biotechnologies (United States)'),
(7157, 5412, 'no_lang_code', 'name', 'Front Range Scientific Computations'),
(7158, 5413, 'en', 'name', 'Texas Endosurgery Institute'),
(7159, 5414, 'en', 'name', 'Hughston Clinic'),
(7160, 5415, 'en', 'name', 'Zunyi Medical University'),
(7161, 5415, 'zh', 'name', '遵义医学院'),
(7162, 5416, 'no_lang_code', 'name', 'Asuragen (United States)'),
(7163, 5417, 'en', 'name', 'Calgary Laboratory Services'),
(7164, 5418, 'en', 'name', 'Gansu University of Traditional Chinese Medicine'),
(7165, 5418, 'zh', 'name', 'ē”˜č‚ƒäø­åŒ»å­¦é™¢'),
(7166, 5419, 'no_lang_code', 'name', 'Columbus Technologies and Services (United States)'),
(7167, 5420, 'no_lang_code', 'name', 'Y Touring Theatre Company'),
(7168, 5421, 'en', 'name', 'Biomedical Research Foundation of the Academy of Athens'),
(7169, 5422, 'en', 'name', 'National Center on Institutions and Alternatives'),
(7170, 5423, 'no_lang_code', 'name', 'Novartis (France)'),
(7171, 5424, 'no_lang_code', 'name', 'Nordic Life Science Pipeline (Canada)'),
(7172, 5425, 'no_lang_code', 'name', 'Therapyx (United States)'),
(7173, 5426, 'sk', 'name', 'NÔrodný Onkologický Ústav'),
(7174, 5427, 'fr', 'name', 'Centre Hospitalier FrĆØderic-Henri ManhĆØs'),
(7175, 5428, 'it', 'name', 'Ospedale regionale di Lugano'),
(7176, 5429, 'en', 'name', 'National Institute of Cardiovascular Diseases'),
(7177, 5430, 'en', 'name', 'Institute of Chemical Biology and Fundamental Medicine');
INSERT INTO `ror_settings` VALUES
(7178, 5430, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической биологии Šø Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(7179, 5431, 'no_lang_code', 'name', 'Malesci (Italy)'),
(7180, 5432, 'en', 'name', 'Oita Red Cross Hospital'),
(7181, 5432, 'ja', 'name', 'å¤§åˆ†čµ¤åå­—ē—…é™¢'),
(7182, 5433, 'en', 'name', 'Valencian Infertility Institute'),
(7183, 5434, 'en', 'name', 'Progress Educational Trust'),
(7184, 5435, 'en', 'name', 'East Bay Community Recovery Project'),
(7185, 5436, 'no_lang_code', 'name', 'Fugro (United States)'),
(7186, 5437, 'en', 'name', 'Bienestar'),
(7187, 5438, 'nl', 'name', 'AZ Klina'),
(7188, 5439, 'no_lang_code', 'name', 'Swami Vivekananda Yoga Anusandhana Samsthana'),
(7189, 5440, 'en', 'name', 'Denver Center for the Performing Arts'),
(7190, 5441, 'en', 'name', 'Sri Jayadeva Institute of Cardiovascular Sciences and Research'),
(7191, 5442, 'en', 'name', 'Hispanic Association of Colleges and Universities'),
(7192, 5443, 'no_lang_code', 'name', 'Arrayomics (United States)'),
(7193, 5444, 'en', 'name', 'Toyota Memorial Hospital'),
(7194, 5444, 'ja', 'name', 'ćƒˆćƒØć‚æčØ˜åæµē—…é™¢'),
(7195, 5445, 'no_lang_code', 'name', 'Film and Video Umbrella (United Kingdom)'),
(7196, 5446, 'no_lang_code', 'name', 'Adherent Technologies (United States)'),
(7197, 5447, 'no_lang_code', 'name', 'Advanced Mechanical Technology (United States)'),
(7198, 5448, 'en', 'name', 'Community College of Philadelphia'),
(7199, 5449, 'no_lang_code', 'name', 'Applied Research Corporation (United States)'),
(7200, 5450, 'en', 'name', 'Seattle Central College'),
(7201, 5451, 'no_lang_code', 'name', 'AAC (United States)'),
(7202, 5452, 'no_lang_code', 'name', 'Tianjin Nankai Hospital'),
(7203, 5452, 'zh', 'name', 'å¤©ę“„åø‚å—å¼€åŒ»é™¢'),
(7204, 5453, 'en', 'name', 'National Institute for Children’s Health Quality'),
(7205, 5454, 'en', 'name', 'Osmania Medical College'),
(7206, 5454, 'te', 'name', 'ą°‰ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ ą°®ą±†ą°”ą°æą°•ą°²ą± ą°•ą°¾ą°²ą±‡ą°œą±€'),
(7207, 5454, 'ur', 'name', 'Ų¹Ų«Ł…Ų§Ł†ŪŒŪ Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(7208, 5455, 'en', 'name', 'Emory Eye Center'),
(7209, 5456, 'no_lang_code', 'name', 'Science Approach (United States)'),
(7210, 5457, 'no_lang_code', 'name', 'Biothermal (United States)'),
(7211, 5458, 'no_lang_code', 'name', 'Wave 80 Biosciences (United States)'),
(7212, 5459, 'fr', 'name', 'Association Nationale de la Recherche et de la Technologie'),
(7213, 5460, 'en', 'name', 'Paine College'),
(7214, 5461, 'no_lang_code', 'name', 'Icogenex (United States)'),
(7215, 5462, 'no_lang_code', 'name', 'DEKK-TEC (United States)'),
(7216, 5463, 'no_lang_code', 'name', 'Source Signal Imaging'),
(7217, 5464, 'en', 'name', 'Russian Academy of Natural Sciences'),
(7218, 5465, 'no_lang_code', 'name', 'Plastic Logic (United Kingdom)'),
(7219, 5466, 'en', 'name', 'Rural Alaska Community Action Program'),
(7220, 5467, 'en', 'name', 'Guy''s and St Thomas'' NHS Foundation Trust'),
(7221, 5468, 'no_lang_code', 'name', 'Optym (United States)'),
(7222, 5469, 'en', 'name', 'W. Alton Jones Cell Science Center'),
(7223, 5470, 'fr', 'name', 'Laboratoire d''Enzymologie et Biochimie Structurales'),
(7224, 5471, 'no_lang_code', 'name', 'TMD Technologies (United Kingdom)'),
(7225, 5472, 'no_lang_code', 'name', 'GlySens (United States)'),
(7226, 5473, 'en', 'name', 'LRS Institute of Tuberculosis and Respiratory Diseases'),
(7227, 5474, 'en', 'name', 'New World Laboratories'),
(7228, 5475, 'en', 'name', 'European Chemical Industry Council'),
(7229, 5475, 'fr', 'name', 'Conseil EuropƩen des FƩdƩrations de l''Industrie Chimique'),
(7230, 5476, 'it', 'name', 'Azienda Ospedaliera San Camillo-Forlanini, Ospedale Carlo Forlanini'),
(7231, 5477, 'no_lang_code', 'name', 'Monsanto (United States)'),
(7232, 5478, 'no_lang_code', 'name', 'GT Advanced Technologies (United States)'),
(7233, 5479, 'no_lang_code', 'name', 'Metabolic Technologies (United States)'),
(7234, 5480, 'no_lang_code', 'name', 'KGL Skin Study Center'),
(7235, 5481, 'en', 'name', 'Salisbury NHS Foundation Trust'),
(7236, 5482, 'no_lang_code', 'name', 'Sensonics International (United States)'),
(7237, 5483, 'en', 'name', 'Oglala Sioux Tribal Council'),
(7238, 5484, 'en', 'name', 'National Center for Environmental Health'),
(7239, 5485, 'en', 'name', 'Mississippi Sports Medicine and Orthopaedic Center'),
(7240, 5486, 'no_lang_code', 'name', 'Information Ventures (United States)'),
(7241, 5487, 'en', 'name', 'Algebra Project'),
(7242, 5488, 'en', 'name', 'New Mexico Clinical Research & Osteoporosis Center'),
(7243, 5489, 'ja', 'name', '大擄市民病院'),
(7244, 5489, 'no_lang_code', 'name', 'Otsu Municipal Hospital'),
(7245, 5490, 'en', 'name', 'National Quality Forum'),
(7246, 5491, 'de', 'name', 'Klinikum Aschaffenburg'),
(7247, 5492, 'en', 'name', 'American Board of Internal Medicine'),
(7248, 5493, 'en', 'name', 'Suburban Hospital'),
(7249, 5494, 'no_lang_code', 'name', 'Flexion Therapeutics (United States)'),
(7250, 5495, 'en', 'name', 'Maulana Azad Institute of Dental Sciences'),
(7251, 5496, 'no_lang_code', 'name', 'Centurion Biofuels (Canada)'),
(7252, 5497, 'en', 'name', 'BC Centre for Aquatic Health Sciences'),
(7253, 5498, 'en', 'name', 'Cooper Clinic'),
(7254, 5499, 'en', 'name', 'United States Congress'),
(7255, 5500, 'en', 'name', 'Austin Diagnostic Clinic'),
(7256, 5501, 'en', 'name', 'Dr. Bhim Rao Ambedkar University'),
(7257, 5502, 'en', 'name', 'South Dakota Academy of Science'),
(7258, 5503, 'no_lang_code', 'name', 'Tianjin Tianhe Hospital'),
(7259, 5503, 'zh', 'name', 'å¤©ę“„åø‚å¤©å’ŒåŒ»é™¢'),
(7260, 5504, 'pt', 'name', 'Centro Hospitalar de Lisboa Central'),
(7261, 5505, 'es', 'name', 'Instituto Nacional de Investigaciones Nucleares'),
(7262, 5506, 'no_lang_code', 'name', '5T Torino (Italy)'),
(7263, 5507, 'en', 'name', 'Huntingdon College'),
(7264, 5508, 'fr', 'name', 'Agence de MƩdecine PrƩventive'),
(7265, 5509, 'en', 'name', 'Ogori Daiichi General Hospital'),
(7266, 5509, 'ja', 'name', 'å°éƒ”ē¬¬äø€ē·åˆē—…é™¢'),
(7267, 5510, 'en', 'name', 'American Federation of Mineralogical Societies'),
(7268, 5511, 'en', 'name', 'Boreskov Institute of Catalysis, Institute of Catalysis'),
(7269, 5511, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ катализа им. Š“.К. Борескова Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(7270, 5512, 'it', 'name', 'Consorzio Venezia Ricerche'),
(7271, 5513, 'en', 'name', 'Ideon Science Park'),
(7272, 5514, 'no_lang_code', 'name', 'Pfizer (Sweden)'),
(7273, 5515, 'en', 'name', 'National Centre for Research'),
(7274, 5516, 'no_lang_code', 'name', 'Heska (United States)'),
(7275, 5517, 'en', 'name', 'Finlay Institute'),
(7276, 5518, 'no_lang_code', 'name', 'ABB (Switzerland)'),
(7277, 5519, 'no_lang_code', 'name', 'Seralogix (United States)'),
(7278, 5520, 'en', 'name', 'Weil Institute of Critical Care Medicine'),
(7279, 5521, 'it', 'name', 'Istituto Nazionale per le Malattie Infettive Lazzaro Spallanzani'),
(7280, 5522, 'no_lang_code', 'name', 'Tri Y Environmental Research Institute (Canada)'),
(7281, 5523, 'en', 'name', 'Council on Social Work Education'),
(7282, 5524, 'es', 'name', 'Instituto Valenciano de Investigaciones Agrarias'),
(7283, 5525, 'en', 'name', 'Clinical Orthopaedics and Related Research'),
(7284, 5526, 'en', 'name', 'Traffic Injury Research Foundation'),
(7285, 5526, 'fr', 'name', 'Fondation de recherches sur les blessures de la route'),
(7286, 5527, 'en', 'name', 'Cincinnati Museum Center'),
(7287, 5528, 'en', 'name', 'Kennedy Center'),
(7288, 5529, 'en', 'name', 'Center for Research and Technology Thessaly'),
(7289, 5530, 'no_lang_code', 'name', 'PricewaterhouseCoopers (Canada)'),
(7290, 5531, 'en', 'name', 'Mental Health Center of Denver'),
(7291, 5532, 'en', 'name', 'Iona College'),
(7292, 5533, 'en', 'name', 'Trinity Mother Frances Hospitals and Clinics'),
(7293, 5534, 'en', 'name', 'St. Mary''s Hospital'),
(7294, 5535, 'en', 'name', 'Society for Advancement of Chicanos and Native Americans in Science'),
(7295, 5536, 'en', 'name', 'Carter Center'),
(7296, 5537, 'en', 'name', 'United States Consumer Product Safety Commission'),
(7297, 5537, 'es', 'name', 'Comisión para la Seguridad de los Productos de Consumo de los Estados Unidos'),
(7298, 5538, 'no_lang_code', 'name', 'Advanced Technology and Research Corporation (United States)'),
(7299, 5539, 'no_lang_code', 'name', 'Virtalis (United Kingdom)'),
(7300, 5540, 'en', 'name', 'Applied Computer Security Associates'),
(7301, 5541, 'en', 'name', 'Wheelock College'),
(7302, 5542, 'en', 'name', 'St. Luke''s Hospital'),
(7303, 5543, 'en', 'name', 'St. Vincent''s Hospital'),
(7304, 5543, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ„±ė¹ˆģ„¼ķŠøė³‘ģ›'),
(7305, 5544, 'no_lang_code', 'name', 'Superconductor Technologies (United States)'),
(7306, 5545, 'en', 'name', 'American Academy of Neurology'),
(7307, 5546, 'en', 'name', 'Neuropsychiatric Research Institute'),
(7308, 5547, 'en', 'name', 'Warde Medical Laboratory'),
(7309, 5548, 'en', 'name', 'Itasca Community College'),
(7310, 5549, 'no_lang_code', 'name', 'Giner (United States)'),
(7311, 5550, 'en', 'name', 'American Aging Association'),
(7312, 5551, 'en', 'name', 'St Mary''s University College'),
(7313, 5552, 'en', 'name', 'Takamatsu Red Cross Hospital'),
(7314, 5552, 'ja', 'name', 'é«˜ę¾čµ¤åå­—ē—…é™¢'),
(7315, 5553, 'no_lang_code', 'name', 'Tioma Therapeutics (United States)'),
(7316, 5554, 'it', 'name', 'Centro di Riferimento Oncologico della Basilicata'),
(7317, 5555, 'no_lang_code', 'name', 'Bayer (Belgium)'),
(7318, 5556, 'no_lang_code', 'name', 'Ambulatory Monitoring (United States)'),
(7319, 5557, 'no_lang_code', 'name', 'EcoSynthetix (Canada)'),
(7320, 5558, 'no_lang_code', 'name', 'Meadowlark Optics (United States)'),
(7321, 5559, 'no_lang_code', 'name', 'Continental (France)'),
(7322, 5560, 'no_lang_code', 'name', 'Novozymes (United Kingdom)'),
(7323, 5561, 'en', 'name', 'St. Andrews University'),
(7324, 5562, 'en', 'name', 'Chulabhorn Research Institute'),
(7325, 5562, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø§ąø“ąøˆąø±ąø¢ąøˆąøøąø¬ąø²ąø ąø£ąø“ą¹Œ'),
(7326, 5563, 'no_lang_code', 'name', 'Vida Health Communications (United States)'),
(7327, 5564, 'en', 'name', 'Australian Council of Learned Academies'),
(7328, 5565, 'en', 'name', 'Women Medical College'),
(7329, 5566, 'en', 'name', 'Stockholm South General Hospital'),
(7330, 5567, 'en', 'name', 'New York Structural Biology Center'),
(7331, 5568, 'ja', 'name', 'å±±å½¢åø‚ē«‹ē—…é™¢ęøˆē”Ÿé¤Ø'),
(7332, 5568, 'no_lang_code', 'name', 'Yamagata City Hospital Saiseikan'),
(7333, 5569, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Sweden)'),
(7334, 5570, 'no_lang_code', 'name', 'PCAS (Canada)'),
(7335, 5571, 'en', 'name', 'Mount Auburn Hospital'),
(7336, 5572, 'en', 'name', 'Discovery Place'),
(7337, 5573, 'en', 'name', 'Benjamin Rose Institute on Aging'),
(7338, 5574, 'en', 'name', 'Red Cross Hospital'),
(7339, 5575, 'en', 'name', 'National Research Institute of Chinese Medicine'),
(7340, 5575, 'zh', 'name', 'åœ‹ē«‹äø­åœ‹é†«č—„ē ”ē©¶ę‰€'),
(7341, 5576, 'en', 'name', 'Philadelphia Fight'),
(7342, 5577, 'en', 'name', 'COMSATS University Islamabad'),
(7343, 5577, 'ur', 'name', 'Ś©ŁˆŁ…Ų³Ł¹Ų³ Ų§Ł†Ų³Ł¹ŪŒŁ¹ŪŒŁˆŁ¹ آف Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(7344, 5578, 'en', 'name', 'Pushpawati Singhania Research Institute'),
(7345, 5579, 'no_lang_code', 'name', 'Edge Enterprises (United States)'),
(7346, 5580, 'no_lang_code', 'name', 'Aeiforia (Italy)'),
(7347, 5581, 'en', 'name', 'College of Saint Rose'),
(7348, 5582, 'no_lang_code', 'name', 'PlastiPure (United States)'),
(7349, 5583, 'en', 'name', 'Australia and New Zealand Dialysis and Transplant Registry'),
(7350, 5584, 'no_lang_code', 'name', 'HyperMed (United States)'),
(7351, 5585, 'en', 'name', 'Office of the Medical Examiner of Cook County'),
(7352, 5586, 'en', 'name', 'Center of Technology and Engineering for Nuclear Projects'),
(7353, 5587, 'en', 'name', 'Alder Hey Children''s NHS Foundation Trust'),
(7354, 5588, 'no_lang_code', 'name', 'Amphora NDT (United Kingdom)'),
(7355, 5589, 'ar', 'name', 'Ł‡ŁŠŲ¦Ų© Ų§Ł„ŲØŁŠŲ¦Ų©'),
(7356, 5589, 'en', 'name', 'Environment Agency Abu Dhabi'),
(7357, 5590, 'en', 'name', 'Virus Unit'),
(7358, 5591, 'en', 'name', 'Education Connection'),
(7359, 5592, 'no_lang_code', 'name', 'Agriculture Environmental Renewal Canada (Canada)'),
(7360, 5593, 'it', 'name', 'Ospedale Civile di Giaveno'),
(7361, 5594, 'en', 'name', 'Desert Botanical Garden'),
(7362, 5595, 'no_lang_code', 'name', 'Saaten Union (United Kingdom)'),
(7363, 5596, 'en', 'name', 'Cape Shoulder Institute'),
(7364, 5597, 'no_lang_code', 'name', 'EDJ Associates'),
(7365, 5598, 'no_lang_code', 'name', 'Sainsbury''s (United Kingdom)'),
(7366, 5599, 'en', 'name', 'City of Scientific Research and Technological Applications'),
(7367, 5600, 'en', 'name', 'Delaware Technical Community College'),
(7368, 5601, 'en', 'name', 'Eurotransplant'),
(7369, 5602, 'en', 'name', 'Northwest Clinical Research Center'),
(7370, 5603, 'en', 'name', 'Southern Arizona AIDS Foundation'),
(7371, 5604, 'en', 'name', 'Faculty of Medicine of MarĆ­lia'),
(7372, 5604, 'pt', 'name', 'Faculdade de Medicina de MarĆ­lia'),
(7373, 5605, 'en', 'name', 'Camden County College'),
(7374, 5606, 'en', 'name', 'Ohio Dominican University'),
(7375, 5607, 'en', 'name', 'American Educational Research Association'),
(7376, 5608, 'en', 'name', 'Concordia College - Minnesota'),
(7377, 5609, 'en', 'name', 'Society of Toxicology'),
(7378, 5610, 'no_lang_code', 'name', 'Grove Instruments (United States)'),
(7379, 5611, 'en', 'name', 'UMass Memorial Health Care'),
(7380, 5612, 'no_lang_code', 'name', 'Eli Lilly (United Kingdom)'),
(7381, 5613, 'en', 'name', 'Cornea Research Foundation of America'),
(7382, 5614, 'de', 'name', 'Max-Planck-Institut für Kolloid- und Grenzflächenforschung'),
(7383, 5614, 'en', 'name', 'Max Planck Institute of Colloids and Interfaces'),
(7384, 5615, 'en', 'name', 'Yukon Kuskokwim Health Corporation'),
(7385, 5616, 'no_lang_code', 'name', 'TeraView (United Kingdom)'),
(7386, 5617, 'en', 'name', 'Institute of Radiation Protection and Dosimetry'),
(7387, 5617, 'pt', 'name', 'Instituto de Radioproteção e Dosimetria'),
(7388, 5618, 'en', 'name', 'Abisko Scientific Research Station'),
(7389, 5619, 'no_lang_code', 'name', 'Murty Pharmaceuticals (United States)'),
(7390, 5620, 'no_lang_code', 'name', 'Leap of Faith Technologies (United States)'),
(7391, 5621, 'no_lang_code', 'name', 'Larus Technologies (Canada)'),
(7392, 5622, 'no_lang_code', 'name', 'Campden BRI (United Kingdom)'),
(7393, 5623, 'no_lang_code', 'name', 'Innovative Targeting Solutions (Canada)'),
(7394, 5624, 'no_lang_code', 'name', '23andMe (United States)'),
(7395, 5625, 'es', 'name', 'Fundación Cardiovascular de Colombia'),
(7396, 5626, 'no_lang_code', 'name', 'AST Products (United States)'),
(7397, 5627, 'en', 'name', 'Committee on Climate Change'),
(7398, 5628, 'en', 'name', 'County of Mendocino'),
(7399, 5629, 'no_lang_code', 'name', 'ARTSCO (United States)'),
(7400, 5630, 'no_lang_code', 'name', 'ECI Biotech (United States)'),
(7401, 5631, 'no_lang_code', 'name', 'Atkins (United Kingdom)'),
(7402, 5632, 'de', 'name', 'Wilhelminenspital'),
(7403, 5632, 'en', 'name', 'Wilhelminen Hospital'),
(7404, 5633, 'no_lang_code', 'name', 'Orphagen Pharmaceuticals (United States)'),
(7405, 5634, 'no_lang_code', 'name', 'PicoCal (United States)'),
(7406, 5635, 'en', 'name', 'Plant Biotechnology Institute'),
(7407, 5636, 'en', 'name', 'Chris O’Brien Lifehouse'),
(7408, 5637, 'no_lang_code', 'name', 'Vcom3D (United States)'),
(7409, 5638, 'es', 'name', 'Colegio de Postgraduados'),
(7410, 5639, 'no_lang_code', 'name', 'Elsoms (United Kingdom)'),
(7411, 5640, 'no_lang_code', 'name', 'Actelion (United States)'),
(7412, 5641, 'en', 'name', 'East Midlands Development Agency'),
(7413, 5642, 'nl', 'name', 'Sticares InterACT'),
(7414, 5643, 'no_lang_code', 'name', 'Atactic Technologies (United States)'),
(7415, 5644, 'no_lang_code', 'name', 'Mikro Systems (United States)'),
(7416, 5645, 'en', 'name', 'New England Aquarium'),
(7417, 5646, 'en', 'name', 'East Los Angeles College'),
(7418, 5647, 'no_lang_code', 'name', 'ElectroChem (United States)'),
(7419, 5648, 'no_lang_code', 'name', 'Ion Beam Applications (United States)'),
(7420, 5649, 'no_lang_code', 'name', 'Techshot (United States)'),
(7421, 5650, 'en', 'name', 'San Mateo County Community College District'),
(7422, 5651, 'no_lang_code', 'name', 'INC Research (United States)'),
(7423, 5652, 'no_lang_code', 'name', 'Egis Pharmaceuticals (Hungary)'),
(7424, 5653, 'no_lang_code', 'name', 'Contento Trade (Italy)'),
(7425, 5654, 'en', 'name', 'Washington County Youth Service Bureau'),
(7426, 5655, 'en', 'name', 'Baranov Central Institute of Aviation Motor Development'),
(7427, 5655, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационного Š¼Š¾Ń‚Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ им. П.И. Баранова'),
(7428, 5656, 'en', 'name', 'Michigan Headache and Neurological Institute'),
(7429, 5657, 'en', 'name', 'St. Joseph''s Hospital'),
(7430, 5658, 'en', 'name', 'Europdonor Foundation'),
(7431, 5659, 'no_lang_code', 'name', 'Centro Radiológico Computarizado Corporació Sanitària (Spain)'),
(7432, 5660, 'en', 'name', 'Center for Community Alternatives'),
(7433, 5661, 'no_lang_code', 'name', 'Thales (United Kingdom)'),
(7434, 5662, 'en', 'name', 'Women''s Hospital'),
(7435, 5663, 'no_lang_code', 'name', 'Orbital Research (United States)'),
(7436, 5664, 'en', 'name', 'Mental Health Association of Southeastern Pennsylvania'),
(7437, 5665, 'no_lang_code', 'name', 'ImmunoPrecise (Canada)'),
(7438, 5666, 'no_lang_code', 'name', 'Cenix BioScience (Germany)'),
(7439, 5667, 'en', 'name', 'Salem Hospital'),
(7440, 5668, 'en', 'name', 'Miami Dade College'),
(7441, 5669, 'no_lang_code', 'name', 'Tracer Technologies (United States)'),
(7442, 5670, 'en', 'name', 'St. Vincent Hospital'),
(7443, 5671, 'en', 'name', 'Cuban Neuroscience Center'),
(7444, 5672, 'no_lang_code', 'name', 'Synta Pharmaceuticals (United States)'),
(7445, 5673, 'no_lang_code', 'name', 'Guru Nanak Eye Centre'),
(7446, 5674, 'no_lang_code', 'name', 'NYSERNet (United States)'),
(7447, 5675, 'no_lang_code', 'name', 'Cyberkinetics (United States)'),
(7448, 5676, 'en', 'name', 'American Association for Dental Research'),
(7449, 5677, 'no_lang_code', 'name', 'Sorbent Technologies (United States)'),
(7450, 5678, 'no_lang_code', 'name', 'Lockheed Martin (Canada)'),
(7451, 5679, 'ja', 'name', 'č±Šå·åø‚ę°‘ē—…é™¢'),
(7452, 5679, 'no_lang_code', 'name', 'Toyokawa City Hospital'),
(7453, 5680, 'no_lang_code', 'name', 'Vidasym (United States)'),
(7454, 5681, 'en', 'name', 'Indian Institute of Horticultural Research'),
(7455, 5682, 'no_lang_code', 'name', 'Innovative Surface Technologies (United States)'),
(7456, 5683, 'no_lang_code', 'name', 'INVIDI Technologies (Canada)'),
(7457, 5684, 'en', 'name', 'Society for Risk Analysis'),
(7458, 5685, 'en', 'name', 'Arctic Research Consortium of the United States'),
(7459, 5686, 'en', 'name', 'Via Christi Hospital St. Francis'),
(7460, 5687, 'no_lang_code', 'name', 'Asahi Chemical & Industry (Japan)'),
(7461, 5688, 'en', 'name', 'Polisher Research Institute'),
(7462, 5689, 'en', 'name', 'European Centre for Disease Prevention and Control'),
(7463, 5689, 'sv', 'name', 'Europeiskt centrum fƶr fƶrebyggande och kontroll av sjukdomar'),
(7464, 5690, 'en', 'name', 'American Urological Association'),
(7465, 5691, 'en', 'name', 'Miwa Hospital'),
(7466, 5691, 'ja', 'name', '三輪病院'),
(7467, 5692, 'en', 'name', 'Theiss Research'),
(7468, 5693, 'en', 'name', 'Edward Via College of Osteopathic Medicine'),
(7469, 5694, 'en', 'name', 'Center for Innovative Public Health Research'),
(7470, 5695, 'no_lang_code', 'name', 'Turner Consulting Group (United States)'),
(7471, 5696, 'no_lang_code', 'name', 'Orkla (Sweden)'),
(7472, 5697, 'no_lang_code', 'name', 'Syngenta (United States)'),
(7473, 5698, 'en', 'name', 'Northern Ohio Recovery Association'),
(7474, 5699, 'de', 'name', 'Deutsches Rheuma-Forschungszentrum Berlin'),
(7475, 5699, 'en', 'name', 'German Rheumatism Research Centre'),
(7476, 5700, 'no_lang_code', 'name', 'Precision Therapeutics (United States)'),
(7477, 5701, 'pt', 'name', 'Prefeitura da Cidade do Rio de Janeiro'),
(7478, 5702, 'en', 'name', 'Institute For Ecology of Industrial Areas'),
(7479, 5702, 'pl', 'name', 'Instytut Ekologii Terenów Uprzemysłowionych'),
(7480, 5703, 'de', 'name', 'Münchner Leukämielabor'),
(7481, 5703, 'no_lang_code', 'name', 'Munich Leukemia Laboratory (Germany)'),
(7482, 5704, 'en', 'name', 'Saitama Children''s Medical Center'),
(7483, 5704, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹å°å…åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(7484, 5705, 'no_lang_code', 'name', 'Wavetrend (United Kingdom)'),
(7485, 5706, 'en', 'name', 'National Committee for Quality Assurance'),
(7486, 5707, 'no_lang_code', 'name', 'Behavioral Assessment Incorporation (United States)'),
(7487, 5708, 'no_lang_code', 'name', 'Colibri Technologies (Canada)'),
(7488, 5709, 'it', 'name', 'Ospedale di Rivoli'),
(7489, 5710, 'es', 'name', 'Centro Oncológico de Galicia'),
(7490, 5711, 'no_lang_code', 'name', 'Ford Motor Company (United Kingdom)'),
(7491, 5712, 'no_lang_code', 'name', 'HealthSim (United States)'),
(7492, 5713, 'en', 'name', 'National Network of Public Health Institutes'),
(7493, 5714, 'en', 'name', 'Hospital del Tórax'),
(7494, 5714, 'es', 'name', 'Instituto Nacional del Tórax'),
(7495, 5715, 'en', 'name', 'British Council'),
(7496, 5716, 'no_lang_code', 'name', 'Emerson (United Kingdom)'),
(7497, 5717, 'en', 'name', 'Africare'),
(7498, 5718, 'en', 'name', 'Institute for Biological Sciences'),
(7499, 5719, 'hr', 'name', 'Klinička bolnica "Sveti Duh"'),
(7500, 5720, 'en', 'name', 'Center for Scientific Studies'),
(7501, 5720, 'es', 'name', 'Centro de Estudios CientĆ­ficos'),
(7502, 5721, 'en', 'name', 'Emory Clinic'),
(7503, 5722, 'no_lang_code', 'name', 'PAI Life Sciences (United States)'),
(7504, 5723, 'en', 'name', 'New York Eye and Ear Infirmary'),
(7505, 5724, 'no_lang_code', 'name', 'Polaris (United States)'),
(7506, 5725, 'en', 'name', 'Arizona Heart Institute'),
(7507, 5726, 'en', 'name', 'Porter Brook Medical Centre'),
(7508, 5727, 'en', 'name', 'Association of Information Technology Companies of Northern Greece'),
(7509, 5728, 'no_lang_code', 'name', 'Novosibirsk Institute of Organic Chemistry'),
(7510, 5728, 'ru', 'name', 'Š˜ŃŃ‚Š¾Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń справка ŠŠ˜ŠžŠ„'),
(7511, 5729, 'en', 'name', 'San Antonio Fighting Back'),
(7512, 5730, 'en', 'name', 'American Nurses Credentialing Center'),
(7513, 5731, 'no_lang_code', 'name', 'SimBiotic Software (United States)'),
(7514, 5732, 'en', 'name', 'World Health Organization - Denmark'),
(7515, 5732, 'fr', 'name', 'Organisation mondiale de la santƩ'),
(7516, 5732, 'ru', 'name', 'Š’ŃŠµŠ¼ŠøŃ€Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(7517, 5733, 'no_lang_code', 'name', 'PTAC (United States)'),
(7518, 5734, 'en', 'name', 'Tongde Hospital of Zhejiang Province'),
(7519, 5734, 'zh', 'name', 'ęµ™ę±Ÿēœē«‹åŒå¾·åŒ»é™¢'),
(7520, 5735, 'de', 'name', 'Fraunhofer-Institut für Algorithmen und Wissenschaftliches Rechnen SCAI'),
(7521, 5735, 'en', 'name', 'Fraunhofer Institute for Algorithms and Scientific Computing'),
(7522, 5736, 'en', 'name', 'Croatian Institute of Transfusion Medicine'),
(7523, 5736, 'hr', 'name', 'Hrvatski Zavod za Transfuzijsku Medicinu'),
(7524, 5737, 'no_lang_code', 'name', 'Clarovita Nutrition (Canada)'),
(7525, 5738, 'en', 'name', 'Rochdale Infirmary'),
(7526, 5739, 'en', 'name', 'Prairie Agricultural Machinery Institute'),
(7527, 5740, 'en', 'name', 'St. Luke''s Hospital Foundation'),
(7528, 5741, 'en', 'name', 'Richmond Community College'),
(7529, 5742, 'en', 'name', 'Bakersfield College'),
(7530, 5743, 'no_lang_code', 'name', 'RC Electronics (United States)'),
(7531, 5744, 'en', 'name', 'National Transplant Organization'),
(7532, 5744, 'es', 'name', 'Organización Nacional de Trasplantes'),
(7533, 5745, 'no_lang_code', 'name', 'Biopsy Sciences (United States)'),
(7534, 5746, 'ja', 'name', 'ę±äŗ¬éƒ½äæå„åŒ»ē™‚å…¬ē¤¾čåŽŸē—…é™¢'),
(7535, 5746, 'no_lang_code', 'name', 'Ebara Hospital'),
(7536, 5747, 'en', 'name', 'Baptist Health South Florida'),
(7537, 5748, 'no_lang_code', 'name', 'Cytograft Tissue Engineering (United States)'),
(7538, 5749, 'en', 'name', 'Centre of Studies on Geography and Spatial Planning'),
(7539, 5749, 'pt', 'name', 'Centro de Estudos em Geografia e Ordenamento do Territorio'),
(7540, 5750, 'en', 'name', 'Public Health Management Corporation'),
(7541, 5751, 'en', 'name', 'College of Alameda'),
(7542, 5752, 'en', 'name', 'Arizona Geological Survey'),
(7543, 5753, 'en', 'name', 'Foundation for Advancements in Science and Education'),
(7544, 5754, 'no_lang_code', 'name', 'Marker Gene Technologies (United States)'),
(7545, 5755, 'en', 'name', 'Franklin County Genealogical & Historical Society'),
(7546, 5756, 'en', 'name', 'National Institute of Pathology'),
(7547, 5757, 'fr', 'name', 'Centre Hospitalier Universitaire de Tokoin'),
(7548, 5758, 'en', 'name', 'Edmonds Community College'),
(7549, 5759, 'no_lang_code', 'name', 'Immusoft (United States)'),
(7550, 5760, 'en', 'name', 'California Western School of Law'),
(7551, 5761, 'en', 'name', 'Dudley Observatory'),
(7552, 5762, 'en', 'name', 'Laser and Skin Surgery Center of Indiana'),
(7553, 5763, 'en', 'name', 'St. Petersburg College'),
(7554, 5764, 'no_lang_code', 'name', 'Aronora (United States)'),
(7555, 5765, 'en', 'name', 'University Rehabilitation Institute'),
(7556, 5765, 'sl', 'name', 'Univerzitetni Rehabilitacijski InŔtitut'),
(7557, 5766, 'en', 'name', 'Community Anti Drug Coalitions of America'),
(7558, 5767, 'en', 'name', 'Elizabeth Glaser Pediatric AIDS Foundation'),
(7559, 5768, 'no_lang_code', 'name', 'Apex Biomedical (United States)'),
(7560, 5769, 'en', 'name', 'RG Stone Urology & Laparoscopy Hospital'),
(7561, 5769, 'hi', 'name', 'ą¤†ą¤°ą¤œą„€ ą¤øą„ą¤Ÿą„‹ą¤Ø ą¤Æą„‚ą¤°ą„‹ą¤²ą„‰ą¤œą„€ और ą¤²ą„ˆą¤Ŗą„ą¤°ą„‹ą¤øą„ą¤•ą„‹ą¤Ŗą„€ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(7562, 5770, 'no_lang_code', 'name', 'Vical (United States)'),
(7563, 5771, 'no_lang_code', 'name', '6WIND (France)'),
(7564, 5772, 'no_lang_code', 'name', 'Advanced MRI Technologies (United States)'),
(7565, 5773, 'en', 'name', 'Institute of Nuclear Chemistry and Technology'),
(7566, 5773, 'pl', 'name', 'Instytut Chemii i Techniki Jądrowej'),
(7567, 5774, 'en', 'name', 'Great Lakes Inter Tribal Council'),
(7568, 5775, 'en', 'name', 'Coalition for a Drug Free Hawaii'),
(7569, 5776, 'en', 'name', 'EdLab Group'),
(7570, 5777, 'en', 'name', 'Mississippi School for Mathematics and Science'),
(7571, 5778, 'no_lang_code', 'name', 'Kane Biotech (Canada)'),
(7572, 5779, 'en', 'name', 'New Mexico Resonance'),
(7573, 5780, 'no_lang_code', 'name', 'Johnson Matthey (United States)'),
(7574, 5781, 'no_lang_code', 'name', 'Environmental Consultants and Contractors'),
(7575, 5782, 'en', 'name', 'Mount Marty College'),
(7576, 5783, 'no_lang_code', 'name', 'KCI (United States)'),
(7577, 5784, 'no_lang_code', 'name', 'Genlantis (United States)'),
(7578, 5785, 'no_lang_code', 'name', 'Menssana Research (United States)'),
(7579, 5786, 'en', 'name', 'Chemical Diversity Research Institute'),
(7580, 5786, 'ru', 'name', 'Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Єимического Š Š°Š·Š½Š¾Š¾Š±Ń€Š°Š·ŠøŃ'),
(7581, 5787, 'en', 'name', 'Carthage College'),
(7582, 5788, 'no_lang_code', 'name', 'Quintessence Biosciences (United States)'),
(7583, 5789, 'no_lang_code', 'name', 'Electronic BioSciences (United States)'),
(7584, 5790, 'en', 'name', 'South Carolina Technical College System'),
(7585, 5791, 'no_lang_code', 'name', 'Tejas Networks (India)'),
(7586, 5792, 'pt', 'name', 'Associacao Protectora dos Diabeticos de Portugal'),
(7587, 5793, 'fr', 'name', 'Institut RƩgional de MƩdecine Physique et de RƩadaptation'),
(7588, 5794, 'en', 'name', 'International Centers for Excellence in Research'),
(7589, 5795, 'en', 'name', 'Tourette Association of America'),
(7590, 5796, 'en', 'name', 'Nezhat Medical Center'),
(7591, 5797, 'pt', 'name', 'Instituto GeogrÔfico Português'),
(7592, 5798, 'fr', 'name', 'Institut Calot'),
(7593, 5799, 'it', 'name', 'Ospedale Civile Edoardo Agnelli'),
(7594, 5800, 'no_lang_code', 'name', 'Oralys (Canada)'),
(7595, 5801, 'en', 'name', 'Whitchurch Hospital'),
(7596, 5802, 'en', 'name', 'Association of Health Care Journalists'),
(7597, 5803, 'en', 'name', 'Birmingham Women''s Hospital'),
(7598, 5804, 'en', 'name', 'National Institute of Medical Sciences and Nutrition Salvador ZubirƔn'),
(7599, 5804, 'es', 'name', 'Instituto Nacional de Ciencias Médicas y Nutrición Salvador ZubirÔn'),
(7600, 5805, 'en', 'name', 'Tanzania Food and Nutrition Center'),
(7601, 5806, 'en', 'name', 'Child Trends'),
(7602, 5807, 'en', 'name', 'Czech Environmental Information Agency'),
(7603, 5808, 'en', 'name', 'American Society for Pharmacology and Experimental Therapeutics'),
(7604, 5809, 'en', 'name', 'Epsom and St Helier University Hospitals NHS Trust'),
(7605, 5810, 'en', 'name', 'Our Lady of Lourdes Regional Medical Center'),
(7606, 5811, 'en', 'name', 'Hudson Valley Regional Emergency Medical Services Council'),
(7607, 5812, 'no_lang_code', 'name', 'LC Resources (United States)'),
(7608, 5813, 'en', 'name', 'Hough Ear Institute'),
(7609, 5814, 'en', 'name', 'Ohio Department of Agriculture'),
(7610, 5815, 'no_lang_code', 'name', 'RxBio (United States)'),
(7611, 5816, 'no_lang_code', 'name', 'Kelly Services (United States)'),
(7612, 5817, 'no_lang_code', 'name', 'Aeon Imaging (United States)'),
(7613, 5818, 'en', 'name', 'Fatima Jinnah Dental College'),
(7614, 5819, 'en', 'name', 'Royal Society of Canada'),
(7615, 5819, 'fr', 'name', 'La SociƩtƩ royale du Canada'),
(7616, 5820, 'ja', 'name', 'ęøˆē”Ÿä¼šē†Šęœ¬ē—…é™¢'),
(7617, 5820, 'no_lang_code', 'name', 'Saiseikai Kumamoto Hospital'),
(7618, 5821, 'en', 'name', 'Ohkawara Neurosurgical Hospital'),
(7619, 5821, 'ja', 'name', 'å¤§å·åŽŸč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(7620, 5822, 'en', 'name', 'Eye and Ear Foundation'),
(7621, 5823, 'en', 'name', 'Wrightington Hospital'),
(7622, 5824, 'no_lang_code', 'name', 'Merck (France)'),
(7623, 5825, 'en', 'name', 'Tachikawa Medical Center'),
(7624, 5825, 'ja', 'name', 'ē«‹å·ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(7625, 5826, 'en', 'name', 'Shepherd University'),
(7626, 5827, 'no_lang_code', 'name', 'Intertek (Canada)'),
(7627, 5828, 'en', 'name', 'Informed Families'),
(7628, 5829, 'en', 'name', 'National Association for Biomedical Research'),
(7629, 5830, 'it', 'name', 'Istituto Nazionale di Ricerca per gli Alimenti e la Nutrizione'),
(7630, 5831, 'en', 'name', 'Research and Productivity Council'),
(7631, 5832, 'en', 'name', 'AeroSpace and Defence Industries Association of Europe'),
(7632, 5833, 'en', 'name', 'Unity Health System'),
(7633, 5834, 'en', 'name', 'Worthing Hospital'),
(7634, 5835, 'en', 'name', 'Tauranga Hospital'),
(7635, 5836, 'no_lang_code', 'name', 'AccelLab (Canada)'),
(7636, 5837, 'en', 'name', 'Mission to the Street for Christ'),
(7637, 5838, 'no_lang_code', 'name', 'Sierra Nevada Corporation (United States)'),
(7638, 5839, 'no_lang_code', 'name', 'Opmedic Group (Canada)'),
(7639, 5840, 'en', 'name', 'Ome Municipal General Hospital'),
(7640, 5840, 'ja', 'name', 'é’ę¢…åø‚ē«‹ē·åˆē—…é™¢'),
(7641, 5841, 'en', 'name', 'College of St. Scholastica'),
(7642, 5842, 'en', 'name', 'Wyckoff Heights Medical Center'),
(7643, 5843, 'en', 'name', 'Southern California Coastal Water Research Project'),
(7644, 5844, 'ja', 'name', 'ć‚­ćƒƒć‚³ćƒ¼ćƒžćƒ³ę Ŗå¼ä¼šē¤¾'),
(7645, 5844, 'no_lang_code', 'name', 'Kikkoman (Japan)'),
(7646, 5845, 'en', 'name', 'Harper Adams University'),
(7647, 5846, 'no_lang_code', 'name', 'Abbott (Canada)'),
(7648, 5847, 'en', 'name', 'State Research Center of Virology and Biotechnology VECTOR'),
(7649, 5847, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø Šø биотехнологии Вектор'),
(7650, 5848, 'no_lang_code', 'name', 'Advanced Photonic Crystals (United States)'),
(7651, 5849, 'no_lang_code', 'name', 'Clancy Docwra (United Kingdom)'),
(7652, 5850, 'no_lang_code', 'name', 'Premiere Global Services (United States)'),
(7653, 5851, 'en', 'name', 'St. Patrick Hospital'),
(7654, 5852, 'no_lang_code', 'name', 'MetaMedia Training International (United States)'),
(7655, 5853, 'no_lang_code', 'name', 'Kryton International (Canada)'),
(7656, 5854, 'no_lang_code', 'name', 'SWITCH Materials (Canada)'),
(7657, 5855, 'no_lang_code', 'name', 'Avensys (Canada)'),
(7658, 5856, 'nl', 'name', 'Onze Lieve Vrouwziekenhuis Hospital'),
(7659, 5857, 'en', 'name', 'Capital Institute of Pediatrics'),
(7660, 5857, 'zh', 'name', 'é¦–éƒ½å„æē§‘ē ”ē©¶ę‰€'),
(7661, 5858, 'en', 'name', 'Cope Community Services'),
(7662, 5859, 'no_lang_code', 'name', 'Gratings Incorporated (United States)'),
(7663, 5860, 'no_lang_code', 'name', 'Molecular LogiX (United States)'),
(7664, 5861, 'no_lang_code', 'name', 'Biotest (Germany)'),
(7665, 5862, 'en', 'name', 'Arapahoe Community College'),
(7666, 5863, 'no_lang_code', 'name', 'Alacron (United States)'),
(7667, 5864, 'en', 'name', 'College of DuPage'),
(7668, 5865, 'en', 'name', 'City College'),
(7669, 5865, 'fr', 'name', 'La CitƩ CollƩgiale'),
(7670, 5866, 'en', 'name', 'International Craniofacial Institute'),
(7671, 5867, 'en', 'name', 'High Institute for Education and Research in Transfusion Medicine'),
(7672, 5867, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¹Ų§Ł„ŪŒ Ų¢Ł…ŁˆŲ²Ų“ŪŒ و Ł¾Ś˜ŁˆŁ‡Ų“ŪŒ Ų·ŲØ انتقال Ų®ŁˆŁ†'),
(7673, 5868, 'en', 'name', 'Hopkins Architects'),
(7674, 5868, 'fr', 'name', 'Hopkins Architectes'),
(7675, 5869, 'en', 'name', 'Deborah Heart and Lung Center'),
(7676, 5870, 'no_lang_code', 'name', 'Conestoga Meat Packers (Canada)'),
(7677, 5871, 'no_lang_code', 'name', 'Syandus (United States)'),
(7678, 5872, 'no_lang_code', 'name', 'Viocare (United States)'),
(7679, 5873, 'en', 'name', 'Tianjin Economic-Technological Development Area'),
(7680, 5873, 'zh', 'name', 'å¤©ę“„ē»ęµŽęŠ€ęœÆå¼€å‘åŒŗ'),
(7681, 5874, 'en', 'name', 'Toronto Public Health'),
(7682, 5875, 'no_lang_code', 'name', 'Dynamis Pharmaceuticals (United States)'),
(7683, 5876, 'no_lang_code', 'name', 'Inverness Research (United States)'),
(7684, 5877, 'en', 'name', 'Society for Canadian Women in Science and Technology'),
(7685, 5878, 'en', 'name', 'Danish Institute against Torture'),
(7686, 5879, 'de', 'name', 'Klinikum Nürnberg'),
(7687, 5879, 'en', 'name', 'Nuremberg Hospital'),
(7688, 5880, 'no_lang_code', 'name', 'Halma Water Management (United Kingdom)'),
(7689, 5881, 'en', 'name', 'York General Hospital'),
(7690, 5882, 'en', 'name', 'Memphis Fire Services'),
(7691, 5883, 'en', 'name', 'Farmingdale State College'),
(7692, 5884, 'no_lang_code', 'name', 'Apotex Pharmachem (Canada)'),
(7693, 5885, 'no_lang_code', 'name', 'Aurora Flight Sciences (United States)'),
(7694, 5886, 'no_lang_code', 'name', 'Industrial Tomography Systems (United Kingdom)'),
(7695, 5887, 'en', 'name', 'Positive Living Society of British Columbia'),
(7696, 5888, 'no_lang_code', 'name', 'Cryomagnetics (United States)'),
(7697, 5889, 'en', 'name', 'Nine Circles Community Health Centre'),
(7698, 5890, 'no_lang_code', 'name', 'MASSolutions (Canada)'),
(7699, 5891, 'en', 'name', 'National Institute of Epidemiology'),
(7700, 5892, 'no_lang_code', 'name', 'Prediction Sciences (United States)'),
(7701, 5893, 'no_lang_code', 'name', 'Aptagen (United States)'),
(7702, 5894, 'no_lang_code', 'name', 'MMTC (United States)'),
(7703, 5895, 'no_lang_code', 'name', 'BIT-TECH (United States)'),
(7704, 5896, 'en', 'name', 'Australian Academy of the Humanities'),
(7705, 5897, 'it', 'name', 'Policlinico Umberto I'),
(7706, 5898, 'en', 'name', 'American Planning Association'),
(7707, 5899, 'no_lang_code', 'name', 'PortaScience (United States)'),
(7708, 5900, 'en', 'name', 'UPMC Health System'),
(7709, 5901, 'en', 'name', 'Urology Associates'),
(7710, 5902, 'en', 'name', 'National Cancer Institute of Thailand'),
(7711, 5902, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø”ąø°ą¹€ąø£ą¹‡ąø‡ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(7712, 5903, 'en', 'name', 'American College of Healthcare Executives'),
(7713, 5904, 'fr', 'name', 'CĆ©gep de la GaspĆ©sie et des Ǝles'),
(7714, 5905, 'en', 'name', 'International Prevention Research Institute'),
(7715, 5906, 'en', 'name', 'Carlow University'),
(7716, 5907, 'en', 'name', 'Kentucky Science Center'),
(7717, 5908, 'no_lang_code', 'name', 'Geospace Research (United States)'),
(7718, 5909, 'en', 'name', 'New York Law School'),
(7719, 5910, 'en', 'name', 'American Legacy Foundation'),
(7720, 5911, 'it', 'name', 'IRCCS Policlinico San Donato'),
(7721, 5912, 'en', 'name', 'Terasaki Foundation'),
(7722, 5913, 'en', 'name', 'EMO GVM Centro Cuore Columbus'),
(7723, 5914, 'en', 'name', 'AgResearch'),
(7724, 5915, 'no_lang_code', 'name', 'OmegaChem (Canada)'),
(7725, 5916, 'no_lang_code', 'name', 'Noble (United States)'),
(7726, 5917, 'en', 'name', 'Ferrum College'),
(7727, 5918, 'en', 'name', 'National Institute of Biological Resources'),
(7728, 5919, 'no_lang_code', 'name', 'Cerner (United States)'),
(7729, 5920, 'no_lang_code', 'name', 'JWK Corporation (United States)'),
(7730, 5921, 'no_lang_code', 'name', 'Gradient Lens Corporation (United States)'),
(7731, 5922, 'en', 'name', 'Neighborhood House'),
(7732, 5923, 'no_lang_code', 'name', 'Architecture Technology Corporation (United States)'),
(7733, 5924, 'en', 'name', 'Zabok General Hospital'),
(7734, 5924, 'hr', 'name', 'Opća bolnica Zabok'),
(7735, 5925, 'en', 'name', 'G. B. Bietti Foundation'),
(7736, 5925, 'it', 'name', 'Fondazione G.B. Bietti'),
(7737, 5926, 'en', 'name', 'Bethel College'),
(7738, 5927, 'en', 'name', 'Santa Fe College'),
(7739, 5928, 'no_lang_code', 'name', 'Seacoast Science (United States)'),
(7740, 5929, 'en', 'name', 'Cegep of Saint JƩrƓme'),
(7741, 5929, 'fr', 'name', 'Cegep de Saint Jerome, CƩgep de saint-jƩrƓme'),
(7742, 5930, 'en', 'name', 'LAM Foundation'),
(7743, 5931, 'en', 'name', 'Oglala Lakota College'),
(7744, 5932, 'no_lang_code', 'name', 'Energy Science Laboratories (United States)'),
(7745, 5933, 'en', 'name', 'Tokyo Dental College Ichikawa General Hospital'),
(7746, 5933, 'ja', 'name', 'ę±äŗ¬ę­Æē§‘å¤§å­¦ åø‚å·ē·åˆē—…é™¢'),
(7747, 5934, 'en', 'name', 'Vaccine Research Institute of San Diego'),
(7748, 5935, 'en', 'name', 'Biomedical Research and Training Institute'),
(7749, 5936, 'en', 'name', 'WestCare Foundation'),
(7750, 5937, 'no_lang_code', 'name', 'Air Products (United Kingdom)'),
(7751, 5938, 'fr', 'name', 'Institut National d''Oncologie'),
(7752, 5939, 'en', 'name', 'Worcester Memorial Hospital'),
(7753, 5940, 'en', 'name', 'St. Joseph Hospital'),
(7754, 5941, 'no_lang_code', 'name', 'Orolia (United States)'),
(7755, 5942, 'en', 'name', 'Montgomery County Community College'),
(7756, 5943, 'en', 'name', 'Russian Research Center for Molecular Diagnostics and Therapy'),
(7757, 5944, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© دبي Ł„Ł„ŲµŁŠŲÆŁ„Ų©'),
(7758, 5944, 'en', 'name', 'Dubai Pharmacy College'),
(7759, 5945, 'no_lang_code', 'name', 'Synopsys (United States)'),
(7760, 5946, 'no_lang_code', 'name', 'Cel-Sci (United States)'),
(7761, 5947, 'en', 'name', 'American College of Physician Executives'),
(7762, 5948, 'no_lang_code', 'name', 'Surgical Specialties (Canada)'),
(7763, 5949, 'en', 'name', 'Council on Competitiveness'),
(7764, 5950, 'no_lang_code', 'name', 'Plexon (United States)'),
(7765, 5951, 'en', 'name', 'Wisconsin Heart Hospital'),
(7766, 5952, 'no_lang_code', 'name', 'Perrigo (United States)'),
(7767, 5953, 'en', 'name', 'American Association of Poison Control Centers'),
(7768, 5954, 'it', 'name', 'Istituto Scientifico Romagnolo per lo Studio e la Cura dei Tumori'),
(7769, 5955, 'no_lang_code', 'name', 'Baxter (Austria)'),
(7770, 5956, 'en', 'name', 'Yokohama City Seibu Hospital'),
(7771, 5957, 'en', 'name', 'Anixter Center'),
(7772, 5958, 'en', 'name', 'National Institute for Food and Nutrition Science'),
(7773, 5959, 'no_lang_code', 'name', 'TRS Technologies (United States)'),
(7774, 5960, 'en', 'name', 'WAMC Northeast Public Radio'),
(7775, 5961, 'en', 'name', 'Zhejiang Cancer Hospital'),
(7776, 5961, 'zh', 'name', 'ęµ™ę±Ÿēœč‚æē˜¤åŒ»é™¢'),
(7777, 5962, 'no_lang_code', 'name', 'Iomai (United States)'),
(7778, 5963, 'en', 'name', 'Foundation for the Fight against Pediatric Neurological Disease'),
(7779, 5963, 'es', 'name', 'Fundación para la Lucha contra las Enfermedades Neurológicas de la Infancia'),
(7780, 5964, 'en', 'name', 'Wellmont Health Systems'),
(7781, 5965, 'en', 'name', 'Henan Provincial Center for Disease Control and Prevention'),
(7782, 5965, 'zh', 'name', 'ę²³å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(7783, 5966, 'el', 'name', 'Κλινική Άγιος Λουκάς'),
(7784, 5966, 'en', 'name', 'St. Luke''s Hospital'),
(7785, 5967, 'en', 'name', 'Midwest Cardiovascular Research Foundation'),
(7786, 5968, 'en', 'name', 'United States Department of Housing and Urban Development'),
(7787, 5968, 'es', 'name', 'Departamento de Vivienda y Desarrollo Urbano de los Estados Unidos'),
(7788, 5968, 'fr', 'name', 'DĆ©partement du logement et du dĆ©veloppement urbain des Ɖtats-unis'),
(7789, 5969, 'ja', 'name', 'ć‚¢ć‚µćƒ’ćƒ“ćƒ¼ćƒ«ę Ŗå¼ä¼šē¤¾'),
(7790, 5969, 'no_lang_code', 'name', 'Asahi Breweries (Japan)'),
(7791, 5970, 'es', 'name', 'Instituto de Estudios Avanzados'),
(7792, 5971, 'no_lang_code', 'name', 'Lucerna (United States)'),
(7793, 5972, 'de', 'name', 'Klinik Hirslanden'),
(7794, 5973, 'en', 'name', 'St. Louis VA Medical Center'),
(7795, 5974, 'no_lang_code', 'name', 'Environment and Health Group (United States)'),
(7796, 5975, 'en', 'name', 'Institute of Particle Physics'),
(7797, 5976, 'no_lang_code', 'name', 'PerkinElmer (United Kingdom)'),
(7798, 5977, 'en', 'name', 'Office of Disease Prevention and Health Promotion'),
(7799, 5978, 'no_lang_code', 'name', 'Lend Lease (United Kingdom)'),
(7800, 5979, 'en', 'name', 'National Hospital Abuja'),
(7801, 5980, 'no_lang_code', 'name', 'LAC Group (United States)'),
(7802, 5981, 'no_lang_code', 'name', 'Chelsea Technologies (United Kingdom)'),
(7803, 5982, 'ja', 'name', 'å ŗåø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(7804, 5982, 'no_lang_code', 'name', 'Sakai Municipal Hospital'),
(7805, 5983, 'en', 'name', 'American Society of Nephrology'),
(7806, 5984, 'no_lang_code', 'name', 'Gradient (United States)'),
(7807, 5985, 'en', 'name', 'Sarah Cannon'),
(7808, 5986, 'en', 'name', 'Loma Linda Veterans Association for Research and Education'),
(7809, 5987, 'en', 'name', 'Victoria Hospital'),
(7810, 5988, 'no_lang_code', 'name', 'Systems Control (United States)'),
(7811, 5989, 'en', 'name', 'Genesis Laboratories'),
(7812, 5990, 'no_lang_code', 'name', 'Ateliers Nic. Georges (Luxembourg)'),
(7813, 5991, 'no_lang_code', 'name', 'Compuware (United States)'),
(7814, 5992, 'no_lang_code', 'name', 'TiNi Alloy (United States)'),
(7815, 5993, 'fr', 'name', 'FƩdƩration des cƩgeps'),
(7816, 5994, 'en', 'name', 'Veterinary and Agrochemical Research Centre'),
(7817, 5994, 'fr', 'name', 'Centre d''Ɖtude et de Recherches VĆ©tĆ©rinaires et Agrochimiques'),
(7818, 5994, 'nl', 'name', 'Centrum voor Onderzoek in Diergeneeskunde en Agrochemie'),
(7819, 5995, 'da', 'name', 'BĆørneklinikken Randers'),
(7820, 5996, 'en', 'name', 'Cleveland Clinic Florida'),
(7821, 5997, 'no_lang_code', 'name', 'ICF International (United States)'),
(7822, 5998, 'en', 'name', 'Second Affiliated Hospital & Yuying Children''s Hospital of Wenzhou Medical University'),
(7823, 5998, 'zh', 'name', 'ęø©å·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(7824, 5999, 'en', 'name', 'Rajiv Gandhi University of Health Sciences'),
(7825, 5999, 'hi', 'name', 'ą¤°ą¤¾ą¤œą„€ą¤µ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(7826, 6000, 'en', 'name', 'Korea Institute of Toxicology'),
(7827, 6000, 'ko', 'name', 'ģ•ˆģ „ģ„±ķ‰ź°€ģ—°źµ¬ģ†Œ'),
(7828, 6001, 'en', 'name', 'National Institute for Health and Care Excellence'),
(7829, 6002, 'en', 'name', 'Western State Hospital'),
(7830, 6003, 'en', 'name', 'North Dakota State College of Science'),
(7831, 6004, 'en', 'name', 'Vale of Leven District General Hospital'),
(7832, 6005, 'no_lang_code', 'name', 'Upsight (Canada)'),
(7833, 6006, 'en', 'name', 'Atlanta Allergy and Asthma Clinic'),
(7834, 6007, 'en', 'name', 'Niagara College'),
(7835, 6008, 'en', 'name', 'American Association of Physicists in Medicine'),
(7836, 6009, 'en', 'name', 'Chippewa Valley Technical College'),
(7837, 6010, 'en', 'name', 'Alabama Southern Community College'),
(7838, 6011, 'no_lang_code', 'name', 'Orcca Technology (United States)'),
(7839, 6012, 'fr', 'name', 'Centre Hospitalier Intercommunal de Poissy'),
(7840, 6013, 'en', 'name', 'Nordic Institute of Dental Materials'),
(7841, 6014, 'en', 'name', 'Hong Kong Jockey Club'),
(7842, 6014, 'zh', 'name', 'é¦™ęøÆč³½é¦¬ęœƒ'),
(7843, 6015, 'en', 'name', 'Forensic Sciences Department'),
(7844, 6016, 'fr', 'name', 'Cegep de Sept Iles, CĆ©gep de sept-Ǝles'),
(7845, 6017, 'no_lang_code', 'name', 'BioSci Research Canada (Canada)'),
(7846, 6018, 'no_lang_code', 'name', 'Robotiq (Canada)'),
(7847, 6019, 'no_lang_code', 'name', 'Tertl Studos (United States)'),
(7848, 6020, 'en', 'name', 'Gamalei Institute of Epidemiology and Microbiology'),
(7849, 6020, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии имени почётного акаГемика Š. Ф. Гамалеи'),
(7850, 6021, 'no_lang_code', 'name', 'EnviroSim (Canada)'),
(7851, 6022, 'no_lang_code', 'name', 'Ogikubo Hospital'),
(7852, 6023, 'no_lang_code', 'name', 'Behringwerke (Germany)'),
(7853, 6024, 'en', 'name', 'Vijayanagara Institute of Medical Sciences'),
(7854, 6024, 'kn', 'name', 'ą²µą²æą²œą²Æą²Øą²—ą²° ą²µą³†ą³–ą²¦ą³ą²Æą²•ą²æą³•ą²Æ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(7855, 6025, 'en', 'name', 'Papageorgiou General Hospital'),
(7856, 6026, 'en', 'name', 'Asian and Pacific Islander American Health Forum'),
(7857, 6027, 'en', 'name', 'St. Margaret''s Hospital for Women'),
(7858, 6028, 'no_lang_code', 'name', 'Futures Group (United States)'),
(7859, 6029, 'de', 'name', 'Apherese Forschungsinstitut'),
(7860, 6030, 'no_lang_code', 'name', 'BioReliance (United States)'),
(7861, 6031, 'ja', 'name', 'ä½ć€…ęœØē ”ē©¶ę‰€'),
(7862, 6031, 'no_lang_code', 'name', 'Sasaki Institute'),
(7863, 6032, 'es', 'name', 'Complejo Hospitalario de Pontevedra'),
(7864, 6033, 'en', 'name', 'Methodist Healthcare'),
(7865, 6034, 'en', 'name', 'Waterbury Hospital'),
(7866, 6035, 'en', 'name', 'Institute of Biomedical Problems'),
(7867, 6035, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской ФеГерации - Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГико-биологических проблем Российской акаГемии наук'),
(7868, 6036, 'no_lang_code', 'name', 'Centre for Technology Research & Innovation (Cyprus)'),
(7869, 6037, 'no_lang_code', 'name', 'MandalMed (United States)'),
(7870, 6038, 'no_lang_code', 'name', 'Ventria Bioscience (United States)'),
(7871, 6039, 'no_lang_code', 'name', 'Vi Technology (United States)'),
(7872, 6040, 'en', 'name', 'Franciscan Hammond Clinic'),
(7873, 6041, 'en', 'name', 'Society of British Water and Wastewater Industries'),
(7874, 6042, 'no_lang_code', 'name', 'TopoGEN (United States)'),
(7875, 6043, 'no_lang_code', 'name', 'Axcelon Biopolymers (Canada)'),
(7876, 6044, 'en', 'name', 'Amity Foundation'),
(7877, 6045, 'en', 'name', 'Morton Arboretum'),
(7878, 6046, 'de', 'name', 'Tiroler Krebsforschungsinstitut'),
(7879, 6046, 'en', 'name', 'Tyrolean Cancer Research Institute'),
(7880, 6047, 'no_lang_code', 'name', 'Quasars (United States)'),
(7881, 6048, 'no_lang_code', 'name', 'PENTAX Medical Company (United States)'),
(7882, 6049, 'en', 'name', 'North Riding Infirmary'),
(7883, 6050, 'en', 'name', 'Western Technical College'),
(7884, 6051, 'en', 'name', 'Genomics Institute of the Novartis Research Foundation'),
(7885, 6052, 'en', 'name', 'Family Research Institute'),
(7886, 6053, 'en', 'name', 'Nottingham City Council'),
(7887, 6054, 'no_lang_code', 'name', 'Servelec Technologies (United Kingdom)'),
(7888, 6055, 'no_lang_code', 'name', 'Pasadero (United States)'),
(7889, 6056, 'en', 'name', 'Royal Dutch Kentalis'),
(7890, 6056, 'nl', 'name', 'Koninklijke Kentalis'),
(7891, 6057, 'en', 'name', 'International Institute for Population Sciences'),
(7892, 6058, 'en', 'name', 'Department of Alcohol, Drug, and Mental Health Services'),
(7893, 6059, 'en', 'name', 'Zuoying Armed Forces General Hospital'),
(7894, 6059, 'zh', 'name', 'åœ‹č»é«˜é›„ēø½é†«é™¢'),
(7895, 6060, 'en', 'name', 'Ruby Hall Clinic'),
(7896, 6061, 'es', 'name', 'Instituto Nacional de Enfermedades Respiratorias, Instituto Nacional de Enfermedades Respiratorias Ismael CosĆ­o Villegas'),
(7897, 6062, 'it', 'name', 'Ospedale Humanitas Gradenigo'),
(7898, 6063, 'en', 'name', 'National Institute for Research in Reproductive Health'),
(7899, 6063, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤œą¤Øą¤Ø ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(7900, 6064, 'no_lang_code', 'name', 'NXP (United Kingdom)'),
(7901, 6065, 'en', 'name', 'D.I. Ivanovsky Institute of Virology Russian Academy of Medical Sciences'),
(7902, 6065, 'ru', 'name', 'ŠŠ˜Š˜ Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø имени Š”. И. Ивановского Š ŠŠœŠ'),
(7903, 6066, 'no_lang_code', 'name', 'Vega Wave Systems (United States)'),
(7904, 6067, 'no_lang_code', 'name', 'LI-COR Biosciences (United States)'),
(7905, 6068, 'no_lang_code', 'name', 'Aker Arctic (Canada)'),
(7906, 6069, 'no_lang_code', 'name', 'SciAps (United States)'),
(7907, 6070, 'he', 'name', 'קומפיוג''ן'),
(7908, 6070, 'no_lang_code', 'name', 'Compugen (Israel)'),
(7909, 6071, 'en', 'name', 'Ornskƶldsvik Hospital'),
(7910, 6071, 'sv', 'name', 'Ɩrnskƶldsviks sjukhus'),
(7911, 6072, 'en', 'name', 'TiFN'),
(7912, 6073, 'no_lang_code', 'name', 'CW Optics (United States)'),
(7913, 6074, 'en', 'name', 'Montana Council of Teachers of Mathematics'),
(7914, 6075, 'en', 'name', 'Australian Academy of Science'),
(7915, 6076, 'de', 'name', 'Isar-Amper-Klinikum München-Ost'),
(7916, 6077, 'en', 'name', 'National Institute of Cholera and Enteric Diseases'),
(7917, 6078, 'en', 'name', 'Earlham Institute'),
(7918, 6079, 'en', 'name', 'Health Media Lab'),
(7919, 6080, 'en', 'name', 'Denver VA Medical Center'),
(7920, 6081, 'pt', 'name', 'Escola Superior de Tecnologia da SaĆŗde de Coimbra'),
(7921, 6082, 'en', 'name', 'Wesley Hospital'),
(7922, 6083, 'en', 'name', 'Human BioMolecular Research Institute'),
(7923, 6084, 'no_lang_code', 'name', 'Advanced Computer System (Italy)');
INSERT INTO `ror_settings` VALUES
(7924, 6085, 'no_lang_code', 'name', 'Tuen Mun Hospital'),
(7925, 6085, 'zh', 'name', '屯門醫院'),
(7926, 6086, 'en', 'name', 'Lexington Richland Alcohol And Drug Abuse Council'),
(7927, 6087, 'no_lang_code', 'name', 'General Motors (Germany)'),
(7928, 6088, 'en', 'name', 'Massachusetts Bay Community College'),
(7929, 6089, 'en', 'name', 'Missouri Bone and Joint Center'),
(7930, 6090, 'fr', 'name', 'CollĆØge d''Alma'),
(7931, 6091, 'it', 'name', 'Ospedale di San DonĆ  di Piave'),
(7932, 6092, 'no_lang_code', 'name', 'General Electric (Sweden)'),
(7933, 6093, 'en', 'name', 'Access Community Health Network'),
(7934, 6094, 'de', 'name', 'Max-Planck-Institut für Stoffwechselforschung'),
(7935, 6094, 'en', 'name', 'Max Planck Institute for Metabolism Research'),
(7936, 6095, 'no_lang_code', 'name', 'Cerestech (Canada)'),
(7937, 6096, 'en', 'name', 'Southern Governors Association'),
(7938, 6097, 'en', 'name', 'Guangzhou Blood Center'),
(7939, 6098, 'no_lang_code', 'name', 'Ionwerks (United States)'),
(7940, 6099, 'no_lang_code', 'name', 'New York Audio Productions (United States)'),
(7941, 6100, 'no_lang_code', 'name', 'Quest Clinical Research (United States)'),
(7942, 6101, 'en', 'name', 'Utah Valley Regional Medical Center'),
(7943, 6102, 'en', 'name', 'Central Potato Research Institute'),
(7944, 6103, 'no_lang_code', 'name', 'Jazz Pharmaceuticals (United States)'),
(7945, 6104, 'no_lang_code', 'name', 'Altana (Germany)'),
(7946, 6105, 'en', 'name', 'Uwajima City Hospital'),
(7947, 6105, 'ja', 'name', 'å®‡å’Œå³¶åø‚ē—…é™¢'),
(7948, 6106, 'en', 'name', 'Astronomical Society of the Pacific'),
(7949, 6107, 'en', 'name', 'Science East Association'),
(7950, 6108, 'no_lang_code', 'name', 'Nesher Technologies (United States)'),
(7951, 6109, 'no_lang_code', 'name', 'Siemens (Portugal)'),
(7952, 6110, 'no_lang_code', 'name', 'Sri Gokulam Hospital'),
(7953, 6111, 'en', 'name', 'Institute of Basic Biological Problems'),
(7954, 6111, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Ń… проблем биологии Š ŠŠ'),
(7955, 6112, 'no_lang_code', 'name', 'LNKChemsolutions'),
(7956, 6113, 'en', 'name', 'Central Electricity Generating Board'),
(7957, 6114, 'no_lang_code', 'name', 'Cytobank (United States)'),
(7958, 6115, 'en', 'name', 'The Langton Grammar School for Boys'),
(7959, 6116, 'en', 'name', 'Latvian Institute of Organic Synthesis'),
(7960, 6116, 'lv', 'name', 'Latvijas Organiskās Sintēzes Institūts'),
(7961, 6117, 'en', 'name', 'National Perinatal Information Center'),
(7962, 6118, 'en', 'name', 'Council on Undergraduate Research'),
(7963, 6119, 'it', 'name', 'Semeion Centro Ricerche di Scienze della Comunicazione'),
(7964, 6120, 'no_lang_code', 'name', 'Reaction Biology Corporation (United States)'),
(7965, 6121, 'it', 'name', 'Ospedale A. Perrino'),
(7966, 6122, 'en', 'name', 'Canadian AIDS Society'),
(7967, 6122, 'fr', 'name', 'SociƩtƩ Canadienne du Sida'),
(7968, 6123, 'en', 'name', 'Centre for Process Innovation'),
(7969, 6124, 'en', 'name', 'Cook Inlet Tribal Council'),
(7970, 6125, 'es', 'name', 'Centro Rosarino de Estudios Perinatales'),
(7971, 6126, 'en', 'name', 'Institute for Healthcare Improvement'),
(7972, 6127, 'en', 'name', 'United States Army Aeromedical Research Lab'),
(7973, 6128, 'de', 'name', 'v. Bodelschwinghsche Stiftungen Bethel'),
(7974, 6128, 'en', 'name', 'v. Bodelschwing Foundation Bethel'),
(7975, 6129, 'no_lang_code', 'name', 'Sanofi (Canada)'),
(7976, 6130, 'no_lang_code', 'name', 'ImmuNext (United States)'),
(7977, 6131, 'no_lang_code', 'name', 'Sparos (Portugal)'),
(7978, 6132, 'en', 'name', 'Jean Hailes'),
(7979, 6133, 'en', 'name', 'Japan Biological Informatics Consortium'),
(7980, 6133, 'ja', 'name', 'čˆ¬ē¤¾å›£ę³•äŗŗćƒć‚¤ć‚Ŗē”£ę„­ęƒ…å ±åŒ–ć‚³ćƒ³ć‚½ćƒ¼ć‚·ć‚¢ćƒ '),
(7981, 6134, 'no_lang_code', 'name', 'CustomKYnetics (United States)'),
(7982, 6135, 'no_lang_code', 'name', 'Alternative Futures Associates'),
(7983, 6136, 'en', 'name', 'Together'),
(7984, 6137, 'en', 'name', 'APT Foundation'),
(7985, 6138, 'en', 'name', 'Hull and East Yorkshire Hospitals NHS Trust'),
(7986, 6139, 'en', 'name', 'Greater Manchester STEM Centre'),
(7987, 6140, 'en', 'name', 'National Institute of Clinical Neurosciences'),
(7988, 6140, 'hu', 'name', 'OrszƔgos IdegsebƩszeti TudomƔnyos IntƩzet'),
(7989, 6141, 'en', 'name', 'Greenfield Community College'),
(7990, 6142, 'en', 'name', 'Visions of Science Network for Learning'),
(7991, 6143, 'fr', 'name', 'Institut de Recherche en Opthalmologie'),
(7992, 6144, 'en', 'name', 'Shonan Institute of Technology'),
(7993, 6144, 'ja', 'name', 'ę¹˜å—å·„ē§‘å¤§å­¦'),
(7994, 6145, 'de', 'name', 'Max-Planck-Institut für Physik Komplexer Systeme'),
(7995, 6145, 'en', 'name', 'Max Planck Institute for the Physics of Complex Systems'),
(7996, 6146, 'en', 'name', 'Erskine College'),
(7997, 6147, 'en', 'name', 'National Institute for Biotechnology and Genetic Engineering'),
(7998, 6148, 'no_lang_code', 'name', 'GNS Healthcare (United States)'),
(7999, 6149, 'en', 'name', 'Waterwise'),
(8000, 6150, 'ja', 'name', 'å¾³å³¶ēœŒē«‹äø­å¤®ē—…é™¢'),
(8001, 6150, 'no_lang_code', 'name', 'Tokushima Prefectural Central Hospital'),
(8002, 6151, 'en', 'name', 'Wireless Innovation Forum'),
(8003, 6152, 'de', 'name', 'GP Forschungsgruppe, Instituts für Grundlagen und Programmforschung'),
(8004, 6153, 'no_lang_code', 'name', 'Photodigm (United States)'),
(8005, 6154, 'no_lang_code', 'name', 'Global Relay (Canada)'),
(8006, 6155, 'en', 'name', 'Park Plaza Hospital'),
(8007, 6156, 'no_lang_code', 'name', 'InstaRecon (United States)'),
(8008, 6157, 'no_lang_code', 'name', 'Autoimmune Technologies (United States)'),
(8009, 6158, 'en', 'name', 'Environmental Law Institute'),
(8010, 6159, 'no_lang_code', 'name', 'Dynavax Technologies (United States)'),
(8011, 6160, 'en', 'name', 'University of Health Sciences and Pharmacy'),
(8012, 6161, 'en', 'name', 'Central Oregon Community College'),
(8013, 6162, 'no_lang_code', 'name', 'Rigaku (United Kingdom)'),
(8014, 6163, 'en', 'name', 'Indian Agricultural Research Institute'),
(8015, 6163, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(8016, 6163, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µąÆ‡ą®³ą®¾ą®£ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(8017, 6164, 'no_lang_code', 'name', 'Acumen (United States)'),
(8018, 6165, 'no_lang_code', 'name', 'Maine Molecular Quality Controls (United States)'),
(8019, 6166, 'it', 'name', 'Nuovo Ospedale San Giovanni di Dio'),
(8020, 6167, 'en', 'name', 'Genetics and IVF Institute'),
(8021, 6168, 'no_lang_code', 'name', 'OcuMetrics (United States)'),
(8022, 6169, 'no_lang_code', 'name', 'Kent Displays (United States)'),
(8023, 6170, 'en', 'name', 'Proteogenomics Research Institute for Systems Medicine'),
(8024, 6171, 'es', 'name', 'Instituto de Neurologia Y Neurocirugia'),
(8025, 6172, 'en', 'name', 'Prince Albert Grand Council'),
(8026, 6173, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Canada)'),
(8027, 6174, 'en', 'name', 'National Institute for Pharmaceutical Research and Development'),
(8028, 6175, 'fr', 'name', 'Institut pour la Recherche sur le Cancer de Lille'),
(8029, 6176, 'de', 'name', 'Max-Planck-Institut für Chemische Physik Fester Stoffe'),
(8030, 6176, 'en', 'name', 'Max Planck Institute for Chemical Physics of Solids'),
(8031, 6177, 'no_lang_code', 'name', 'ImQuest BioSciences (United States)'),
(8032, 6178, 'en', 'name', 'Fortis Escorts Heart Institute'),
(8033, 6179, 'en', 'name', 'American Indian Science and Engineering Society'),
(8034, 6180, 'no_lang_code', 'name', 'Robin Medical (United States)'),
(8035, 6181, 'en', 'name', 'Marie Selby Botanical Gardens'),
(8036, 6182, 'no_lang_code', 'name', 'Ingegneria dei Sistemi (United Kingdom)'),
(8037, 6183, 'no_lang_code', 'name', 'DiscoveryBioMed (United States)'),
(8038, 6184, 'en', 'name', 'Bradford Royal Infirmary'),
(8039, 6185, 'en', 'name', 'Whittington Hospital'),
(8040, 6186, 'no_lang_code', 'name', 'Institute for Learning Innovation (United States)'),
(8041, 6187, 'en', 'name', 'Morris Brown College'),
(8042, 6188, 'cy', 'name', 'Ysbyty Cyffredinol Glangwili'),
(8043, 6188, 'en', 'name', 'Glangwili General Hospital'),
(8044, 6189, 'en', 'name', 'Palmerston North Hospital'),
(8045, 6190, 'de', 'name', 'Stiftung Patientensicherheit Schweiz'),
(8046, 6190, 'fr', 'name', 'Fondation pour la SƩcuritƩ des Patients'),
(8047, 6191, 'en', 'name', 'Shanghai Blood Center'),
(8048, 6192, 'en', 'name', 'Wesley Guild Hospital'),
(8049, 6193, 'ja', 'name', 'å°ęØ½åø‚ē«‹ē—…é™¢'),
(8050, 6193, 'no_lang_code', 'name', 'Otaru Municipal Hospital'),
(8051, 6194, 'en', 'name', 'Samaritan Center'),
(8052, 6195, 'no_lang_code', 'name', 'Technology For Magnetic Resonance (United States)'),
(8053, 6196, 'en', 'name', 'International Institute of Anthropology'),
(8054, 6197, 'en', 'name', 'Worcestershire Royal Hospital'),
(8055, 6198, 'en', 'name', 'FernƔndez-Vega Ophthalmological Institute'),
(8056, 6199, 'en', 'name', 'Montrose Center'),
(8057, 6200, 'en', 'name', 'Paul Smith''s College'),
(8058, 6201, 'no_lang_code', 'name', 'NuvoGen Research (United States)'),
(8059, 6202, 'fr', 'name', 'Centre Ophtalmologique d''Imagerie et de Laser'),
(8060, 6203, 'no_lang_code', 'name', 'Constructions Industrielles de la MƩditerranƩe (France)'),
(8061, 6204, 'no_lang_code', 'name', 'Dianon (United States)'),
(8062, 6205, 'no_lang_code', 'name', 'Condax (United States)'),
(8063, 6206, 'en', 'name', 'Institute of Bioorganic Chemistry'),
(8064, 6206, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биоорганической химии им. акаГемиков М.М. ŠØŠµŠ¼ŃŠŗŠøŠ½Š° Šø Š®.А. ŠžŠ²Ń‡ŠøŠ½Š½ŠøŠŗŠ¾Š²Š° Российской акаГемии наук'),
(8065, 6207, 'ja', 'name', 'å±±å£ēœŒęøˆē”Ÿä¼šäø‹é–¢ē·åˆē—…é™¢'),
(8066, 6207, 'no_lang_code', 'name', 'Saiseikai Shimonoseki General Hospital'),
(8067, 6208, 'no_lang_code', 'name', 'Hauser (United States)'),
(8068, 6209, 'no_lang_code', 'name', 'Advanced Lightweight Engineering (Netherlands)'),
(8069, 6210, 'pt', 'name', 'Instituto Lauro de Souza Lima'),
(8070, 6211, 'en', 'name', 'Pasadena City College'),
(8071, 6212, 'en', 'name', 'City Colleges of Chicago'),
(8072, 6212, 'es', 'name', 'Colegios Comunitarios de Chicago'),
(8073, 6213, 'no_lang_code', 'name', 'Alethia Biotherapeutics (Canada)'),
(8074, 6214, 'en', 'name', 'Roessingh Research and Development'),
(8075, 6215, 'no_lang_code', 'name', 'International Rectifier (United Kingdom)'),
(8076, 6216, 'no_lang_code', 'name', 'Indium Corporation (United States)'),
(8077, 6217, 'no_lang_code', 'name', 'MicroLink Devices (United States)'),
(8078, 6218, 'it', 'name', 'Ospedale Civile di Vittorio Veneto'),
(8079, 6219, 'en', 'name', 'College of Family Physicians of Canada'),
(8080, 6219, 'fr', 'name', 'Le Collège des Médecins de Famille du Canada'),
(8081, 6220, 'en', 'name', 'Talladega College'),
(8082, 6221, 'en', 'name', 'Combustion Institute'),
(8083, 6222, 'no_lang_code', 'name', 'Cell Gate (United States)'),
(8084, 6223, 'it', 'name', 'Istituto di Biomedicina e di Immunologia Molecolare Alberto Monroy'),
(8085, 6224, 'en', 'name', 'Institute of Organic Chemistry'),
(8086, 6224, 'pl', 'name', 'Instytut Chemii Organicznej PAN'),
(8087, 6225, 'fr', 'name', 'HƓpital de l''Antiquaille'),
(8088, 6226, 'no_lang_code', 'name', 'Mapp Biopharmaceutical (United States)'),
(8089, 6227, 'en', 'name', 'Baylor College of Medicine Children’s Foundation'),
(8090, 6228, 'en', 'name', 'Indian Institute of Toxicology Research'),
(8091, 6228, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤·ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(8092, 6229, 'no_lang_code', 'name', 'SRK Healthcare (United States)'),
(8093, 6230, 'en', 'name', 'American Ceramic Society'),
(8094, 6231, 'it', 'name', 'Fondazione Salvatore Maugeri'),
(8095, 6232, 'en', 'name', 'Northern New Mexico College'),
(8096, 6233, 'en', 'name', 'Oregon Clinic'),
(8097, 6234, 'no_lang_code', 'name', 'LungLife AI (United States)'),
(8098, 6235, 'no_lang_code', 'name', 'Sirnaomics (United States)'),
(8099, 6236, 'no_lang_code', 'name', 'Kardium (Canada)'),
(8100, 6237, 'en', 'name', 'Methodist Richardson Medical Center'),
(8101, 6238, 'no_lang_code', 'name', 'Analogue Theatre (United Kingdom)'),
(8102, 6239, 'en', 'name', 'Cystic Fibrosis Research Foundation'),
(8103, 6240, 'no_lang_code', 'name', 'Sensei Biotherapeutics (United States)'),
(8104, 6241, 'en', 'name', 'American Association of Variable Star Observers'),
(8105, 6242, 'fr', 'name', 'Centre hospitalier de Rouffach'),
(8106, 6243, 'en', 'name', 'Special Health Resources for Texas'),
(8107, 6244, 'no_lang_code', 'name', 'Indian Drugs and Pharmaceuticals Limited'),
(8108, 6245, 'no_lang_code', 'name', 'Gateway Community Services (United States)'),
(8109, 6246, 'en', 'name', 'Stone Child College'),
(8110, 6247, 'en', 'name', 'Educational Service District 112'),
(8111, 6248, 'en', 'name', 'H2O 4 All'),
(8112, 6249, 'no_lang_code', 'name', 'Agennix (United States)'),
(8113, 6250, 'en', 'name', 'National Maritime Museum'),
(8114, 6251, 'en', 'name', 'Riekes Center for Human Enhancement'),
(8115, 6252, 'en', 'name', 'Ministry of Food and Drug Safety'),
(8116, 6253, 'en', 'name', 'National Institute of Metrology Quality and Technology'),
(8117, 6253, 'pt', 'name', 'Instituto Nacional de Metrologia, Qualidade e Tecnologia'),
(8118, 6254, 'no_lang_code', 'name', 'MicroOptical Engineering (United States)'),
(8119, 6255, 'de', 'name', 'Max-Planck-Institut für molekulare Pflanzenphysiologie'),
(8120, 6255, 'en', 'name', 'Max Planck Institute of Molecular Plant Physiology'),
(8121, 6256, 'no_lang_code', 'name', 'BioChem Technology (United States)'),
(8122, 6257, 'no_lang_code', 'name', 'Synthecon (United States)'),
(8123, 6258, 'no_lang_code', 'name', 'Ribonomics (United States)'),
(8124, 6259, 'en', 'name', 'Confederation of European Forest Owners'),
(8125, 6259, 'fr', 'name', 'ConfƩdƩration EuropƩenne des PropriƩtaires Forestiers'),
(8126, 6260, 'no_lang_code', 'name', 'DSM (Switzerland)'),
(8127, 6261, 'en', 'name', 'Chicago Institute for Psychoanalysis'),
(8128, 6262, 'es', 'name', 'Fundación Instituto Valenciano de Oncología'),
(8129, 6263, 'en', 'name', 'Sacred Space Foundation'),
(8130, 6264, 'en', 'name', 'St. Joseph''s Hospital'),
(8131, 6265, 'pt', 'name', 'Instituto de Botânica'),
(8132, 6266, 'no_lang_code', 'name', 'Cytel (United States)'),
(8133, 6267, 'no_lang_code', 'name', 'Earth Images Foundation (United States)'),
(8134, 6268, 'en', 'name', 'National Hemophilia Foundation'),
(8135, 6269, 'en', 'name', 'Converse College'),
(8136, 6270, 'no_lang_code', 'name', 'Carter Printing Company (United States)'),
(8137, 6271, 'no_lang_code', 'name', 'Trudell Medical International (Canada)'),
(8138, 6272, 'no_lang_code', 'name', 'Transfusion and Transplantation Technologies (United States)'),
(8139, 6273, 'en', 'name', 'International Technology and Engineering Educators Association'),
(8140, 6274, 'en', 'name', 'Vanha Vaasa hospital'),
(8141, 6274, 'fi', 'name', 'Vanhan Vaasan Sairaala'),
(8142, 6275, 'en', 'name', 'Institute of Minerals and Materials Technology'),
(8143, 6276, 'en', 'name', 'Washington Department of Social and Health Services'),
(8144, 6277, 'en', 'name', 'Center for Image Processing in Education'),
(8145, 6278, 'it', 'name', 'Consorzio Catania Ricerche'),
(8146, 6279, 'en', 'name', 'Federal Emergency Management Agency'),
(8147, 6279, 'es', 'name', 'Agencia Federal para el Manejo de Emergencias'),
(8148, 6280, 'no_lang_code', 'name', 'Cochlear (United States)'),
(8149, 6281, 'pt', 'name', 'Centro de Biotecnologia AgrĆ­cola e Agro Alimentar do Alentejo'),
(8150, 6282, 'no_lang_code', 'name', 'South Carolina ETV (United States)'),
(8151, 6283, 'en', 'name', 'Latvian Biomedical Research and Study Centre'),
(8152, 6283, 'lv', 'name', 'Latvijas Biomedicīnas Pētījumu un Studiju Centrs'),
(8153, 6284, 'no_lang_code', 'name', 'Agave BioSystems (United States)'),
(8154, 6285, 'no_lang_code', 'name', 'Center of Molecular Immunology (Cuba)'),
(8155, 6286, 'no_lang_code', 'name', 'National One Call (United Kingdom)'),
(8156, 6287, 'no_lang_code', 'name', 'Kapteyn Murnane Laboratories'),
(8157, 6288, 'en', 'name', 'North American Association of Central Cancer Registries'),
(8158, 6289, 'hu', 'name', 'PĆ©terfy SĆ”ndor Utcai KórhĆ”z-RendelőintĆ©zet Ć©s Baleseti Kƶzpont'),
(8159, 6290, 'fr', 'name', 'Association pour le DƩveloppement de la Recherche et de l''Innovation du QuƩbec'),
(8160, 6291, 'no_lang_code', 'name', 'Second Foundation (United States)'),
(8161, 6292, 'en', 'name', 'El Paso Community College'),
(8162, 6293, 'fr', 'name', 'HƓpital d''Enfants'),
(8163, 6294, 'no_lang_code', 'name', 'Advanced Genetic Systems (United States)'),
(8164, 6295, 'en', 'name', 'Energy Saving Trust'),
(8165, 6296, 'en', 'name', 'Research Institute of Ophthalmology'),
(8166, 6297, 'no_lang_code', 'name', 'Tata Motors (United Kingdom)'),
(8167, 6298, 'no_lang_code', 'name', 'Meridian Instrument (United States)'),
(8168, 6299, 'no_lang_code', 'name', 'Medical Decision Modeling (United States)'),
(8169, 6300, 'en', 'name', 'St. Mark''s Hospital'),
(8170, 6301, 'it', 'name', 'MultiMedica'),
(8171, 6302, 'no_lang_code', 'name', 'Touch of Life Technologies (United States)'),
(8172, 6303, 'no_lang_code', 'name', 'FMC (United States)'),
(8173, 6304, 'en', 'name', 'Zeynep Kamil Hospital'),
(8174, 6304, 'tr', 'name', 'Zeynep Kamil Kadın ve Ƈocuk Hastalıkları Eğitim Ve Araştırma Hastanesi'),
(8175, 6305, 'en', 'name', 'Franciscan Health'),
(8176, 6306, 'en', 'name', 'San Antonio College'),
(8177, 6307, 'no_lang_code', 'name', 'Signum Biosciences (United States)'),
(8178, 6308, 'en', 'name', 'Northland College'),
(8179, 6309, 'en', 'name', 'National Azulejo Museum'),
(8180, 6309, 'pt', 'name', 'Museu Nacional do Azulejo'),
(8181, 6310, 'no_lang_code', 'name', 'EKOS Corporation'),
(8182, 6311, 'no_lang_code', 'name', 'Regis Technologies (United States)'),
(8183, 6312, 'en', 'name', 'Catawba College'),
(8184, 6313, 'en', 'name', 'Tygerberg Hospital'),
(8185, 6314, 'en', 'name', 'Institute of Primate Research'),
(8186, 6315, 'en', 'name', 'Northern Illinois Council on Alcohol and Substance Abuse'),
(8187, 6316, 'en', 'name', 'Volunteers of America Los Angeles'),
(8188, 6317, 'en', 'name', 'Children''s Tumor Foundation'),
(8189, 6318, 'no_lang_code', 'name', 'Meticube (Portugal)'),
(8190, 6319, 'en', 'name', 'Westminster College - Pennsylvania'),
(8191, 6320, 'no_lang_code', 'name', 'OriGene (United States)'),
(8192, 6321, 'no_lang_code', 'name', 'Evotec (United States)'),
(8193, 6322, 'no_lang_code', 'name', 'InnoSense (United States)'),
(8194, 6323, 'en', 'name', 'Zane State College'),
(8195, 6324, 'en', 'name', 'Orlando Regional Medical Center'),
(8196, 6325, 'es', 'name', 'Instituto Costarricense de Investigación y Enseñanza en Nutrición y Salud'),
(8197, 6326, 'en', 'name', 'A.V. Topchiev Institute of Petrochemical Synthesis'),
(8198, 6326, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефтехимического синтеза им. А.Š’.Топчиева'),
(8199, 6327, 'no_lang_code', 'name', 'OSI Systems (United States)'),
(8200, 6328, 'no_lang_code', 'name', 'Advanticsys (Spain)'),
(8201, 6329, 'en', 'name', 'Alaska Federation of Natives'),
(8202, 6330, 'en', 'name', 'Jarvis Christian College'),
(8203, 6331, 'no_lang_code', 'name', 'Cirrascale (United States)'),
(8204, 6332, 'no_lang_code', 'name', 'Argonon (United Kingdom)'),
(8205, 6333, 'no_lang_code', 'name', 'QUAD Engineering (Canada)'),
(8206, 6334, 'no_lang_code', 'name', 'DiscoveRx (United States)'),
(8207, 6335, 'en', 'name', 'International Society for Computational Biology'),
(8208, 6336, 'de', 'name', 'Hochrhein Institut für Rehabilitationsforschung'),
(8209, 6337, 'ja', 'name', 'ćƒŽćƒćƒ«ćƒ†ć‚£ć‚¹ ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(8210, 6337, 'no_lang_code', 'name', 'Novartis (Japan)'),
(8211, 6338, 'de', 'name', 'Klinikum Braunschweig'),
(8212, 6339, 'no_lang_code', 'name', 'Vancouver Biotech (Canada)'),
(8213, 6340, 'sr', 'name', 'Institut za kardiovaskularne bolesti Dedinje'),
(8214, 6341, 'en', 'name', 'Saint Francis Medical Center'),
(8215, 6342, 'en', 'name', 'Fuller Theological Seminary'),
(8216, 6342, 'es', 'name', 'Seminario Teológico Fuller'),
(8217, 6343, 'fr', 'name', 'Centre Hospitalier de l''AgglomƩration de Nevers'),
(8218, 6344, 'no_lang_code', 'name', 'UNICOM Global (United States)'),
(8219, 6345, 'en', 'name', 'St. Peter''s Hospital'),
(8220, 6346, 'en', 'name', 'Belgian Centre for Corrosion Study'),
(8221, 6346, 'fr', 'name', 'Centre Belge d''Etude de la Corrosion'),
(8222, 6347, 'en', 'name', 'Shelton State Community College'),
(8223, 6348, 'no_lang_code', 'name', 'A Thinking Ape (Canada)'),
(8224, 6349, 'no_lang_code', 'name', 'Potomac Photonics (United States)'),
(8225, 6350, 'no_lang_code', 'name', 'Altarum Institute'),
(8226, 6351, 'en', 'name', 'National Center for Disease Control'),
(8227, 6351, 'mr', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą¤°ą„ą¤—ą¤œą¤Øą„ą¤Æ ą¤°ą„‹ą¤— ą¤Øą¤æą¤Æą¤‚ą¤¤ą„ą¤°ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(8228, 6352, 'en', 'name', 'Kurashiki Medical Center'),
(8229, 6352, 'ja', 'name', 'å€‰ę•·ęˆäŗŗē—…ć‚»ćƒ³ć‚æćƒ¼'),
(8230, 6353, 'no_lang_code', 'name', 'Dimension Technologies (United States)'),
(8231, 6354, 'no_lang_code', 'name', 'Aktiv-Dry (United States)'),
(8232, 6355, 'en', 'name', 'Lahey Medical Center'),
(8233, 6356, 'no_lang_code', 'name', 'Ateknea Solutions (Spain)'),
(8234, 6357, 'no_lang_code', 'name', 'BlueRISC (United States)'),
(8235, 6358, 'en', 'name', 'Orthopaedic Hospital'),
(8236, 6359, 'no_lang_code', 'name', 'Sun Innovations (United States)'),
(8237, 6360, 'en', 'name', 'American Council on Education'),
(8238, 6361, 'en', 'name', 'Richmond University Medical Center'),
(8239, 6362, 'no_lang_code', 'name', 'HEICO (United States)'),
(8240, 6363, 'en', 'name', 'Arts Council England'),
(8241, 6364, 'no_lang_code', 'name', 'Kestrel Labs (United States)'),
(8242, 6365, 'en', 'name', 'Nuclear Decommissioning Authority'),
(8243, 6366, 'no_lang_code', 'name', 'Limagrain (United Kingdom)'),
(8244, 6367, 'es', 'name', 'Complejo Hospitalario de CƔceres'),
(8245, 6368, 'de', 'name', 'Paul Drude Institut für Festkörperelektronik'),
(8246, 6368, 'en', 'name', 'Paul Drude Institute for Solid State Electronics'),
(8247, 6369, 'en', 'name', 'UPMC Altoona'),
(8248, 6370, 'no_lang_code', 'name', 'D-Wave Systems (Canada)'),
(8249, 6371, 'no_lang_code', 'name', 'Palatin Technologies (United States)'),
(8250, 6372, 'en', 'name', 'Central Research Institute of Epidemiology'),
(8251, 6372, 'ru', 'name', 'Š¤Š‘Š£Š Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ˜Š˜ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø РоспотребнаГзора'),
(8252, 6373, 'no_lang_code', 'name', 'Biogate Laboratories (Canada)'),
(8253, 6374, 'en', 'name', 'Institute of Biophysics'),
(8254, 6374, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики клетки Российской акаГемии наук'),
(8255, 6375, 'no_lang_code', 'name', 'Bio Signal Group (United States)'),
(8256, 6376, 'ja', 'name', 'ć‚µćƒ³ć‚¹ć‚æćƒ¼'),
(8257, 6376, 'no_lang_code', 'name', 'Sunstar (Japan)'),
(8258, 6377, 'en', 'name', 'Cicatelli Associates'),
(8259, 6378, 'no_lang_code', 'name', 'Simpleware (United Kingdom)'),
(8260, 6379, 'it', 'name', 'Casa di Cura Villa Garda'),
(8261, 6380, 'en', 'name', 'Hastings College'),
(8262, 6381, 'en', 'name', 'National Kidney Foundation'),
(8263, 6382, 'en', 'name', 'United States Agency for International Development'),
(8264, 6382, 'es', 'name', 'Agencia de los Estados Unidos para el Desarrollo Internacional'),
(8265, 6382, 'fr', 'name', 'Agence des Ɖtats-Unis pour le DĆ©veloppement International'),
(8266, 6383, 'no_lang_code', 'name', 'Gerber Technology (United States)'),
(8267, 6384, 'en', 'name', 'Forth Valley Royal Hospital'),
(8268, 6385, 'no_lang_code', 'name', 'KDH Research & Communication (United States)'),
(8269, 6386, 'fr', 'name', 'Clinique de Genolier'),
(8270, 6387, 'en', 'name', 'Swedish Institute for Health Economics'),
(8271, 6387, 'sv', 'name', 'Institutet fƶr HƤlso- och SjukvƄrdsekonomi'),
(8272, 6388, 'no_lang_code', 'name', 'A K Industries (United Kingdom)'),
(8273, 6389, 'en', 'name', 'Japan Women''s College of Physical Education'),
(8274, 6389, 'ja', 'name', 'ę—„ęœ¬å„³å­ä½“č‚²å¤§å­¦'),
(8275, 6390, 'en', 'name', 'Mesa Community College'),
(8276, 6391, 'no_lang_code', 'name', 'VitaCyte (United States)'),
(8277, 6392, 'no_lang_code', 'name', 'Workplace Technologies Research'),
(8278, 6393, 'en', 'name', 'Headache & Pain Center of Palm Beach'),
(8279, 6394, 'it', 'name', 'Ospedale Civile Di Ivrea'),
(8280, 6395, 'ja', 'name', 'ęøˆē”Ÿä¼šč‹„č‰ē—…é™¢'),
(8281, 6395, 'no_lang_code', 'name', 'Saiseikai Wakakusa Hospital'),
(8282, 6396, 'en', 'name', 'VA North Texas Health Care System'),
(8283, 6397, 'no_lang_code', 'name', 'CDM Group (United States)'),
(8284, 6398, 'no_lang_code', 'name', 'Chemat Technology (United States)'),
(8285, 6399, 'en', 'name', 'Royal Victoria Infirmary'),
(8286, 6400, 'en', 'name', 'Institute of Cytology'),
(8287, 6400, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цитологии Российской акаГемии наук'),
(8288, 6401, 'en', 'name', 'American Lung Association'),
(8289, 6402, 'no_lang_code', 'name', 'ANDE (United States)'),
(8290, 6403, 'en', 'name', 'National Center for Genome Resources'),
(8291, 6404, 'en', 'name', 'National Vaccine and Serum Institute'),
(8292, 6405, 'it', 'name', 'Cooperativa Sociale COOSS Marche Onlus'),
(8293, 6406, 'no_lang_code', 'name', 'FuelCell Energy (Canada)'),
(8294, 6407, 'pt', 'name', 'Faculdade de Ciências Médicas de Minas Gerais'),
(8295, 6408, 'no_lang_code', 'name', 'Adamis Pharmaceuticals (United States)'),
(8296, 6409, 'en', 'name', 'National Technical Information Service'),
(8297, 6410, 'en', 'name', 'College of Exploration'),
(8298, 6411, 'no_lang_code', 'name', 'Diamond Materials (United States)'),
(8299, 6412, 'en', 'name', 'Mediterranean Agronomic Institute of Chania'),
(8300, 6413, 'en', 'name', 'Association of Women''s Health Obstetric and Neonatal Nurses'),
(8301, 6414, 'en', 'name', 'Estonian Academy of Sciences'),
(8302, 6415, 'en', 'name', 'Cambridge City Council'),
(8303, 6416, 'no_lang_code', 'name', 'Nutreco (Canada)'),
(8304, 6417, 'no_lang_code', 'name', 'Vista Photonics (United States)'),
(8305, 6418, 'en', 'name', 'Kazan Institute of Biochemistry and Biophysics'),
(8306, 6418, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Казанский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø биофизики Казанского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(8307, 6419, 'en', 'name', 'Toneyama National Hospital'),
(8308, 6419, 'ja', 'name', 'åˆ€ę ¹å±±å›½ē«‹ē—…é™¢'),
(8309, 6420, 'en', 'name', 'Bennington College'),
(8310, 6421, 'en', 'name', 'Island Institute'),
(8311, 6422, 'fr', 'name', 'Institut National d''HygiĆØne du Maroc'),
(8312, 6423, 'pl', 'name', 'Samodzielny Publiczny Centralny Szpital Kliniczny'),
(8313, 6424, 'en', 'name', 'Acadia Institute of Oceanography'),
(8314, 6425, 'en', 'name', 'United States Army Medical Research Institute of Infectious Diseases'),
(8315, 6426, 'en', 'name', 'Boxer Wachler Vision Institute'),
(8316, 6427, 'en', 'name', 'Schizophrenia Research Foundation'),
(8317, 6428, 'en', 'name', 'Royal Armouries'),
(8318, 6429, 'no_lang_code', 'name', 'Simonsen Laboratories'),
(8319, 6430, 'ja', 'name', 'ä½ä¹…ē·åˆē—…é™¢'),
(8320, 6430, 'no_lang_code', 'name', 'Saku Central Hospital'),
(8321, 6431, 'no_lang_code', 'name', 'STMicroelectronics (Canada)'),
(8322, 6432, 'en', 'name', 'Passport to Knowledge'),
(8323, 6433, 'no_lang_code', 'name', 'Goldwind (China)'),
(8324, 6434, 'en', 'name', 'Central Electrochemical Research Institute'),
(8325, 6435, 'no_lang_code', 'name', 'zuChem (United States)'),
(8326, 6436, 'no_lang_code', 'name', 'Caterpillar (United States)'),
(8327, 6437, 'en', 'name', 'Forestry Commission Scotland'),
(8328, 6438, 'no_lang_code', 'name', 'Fonterra (New Zealand)'),
(8329, 6439, 'no_lang_code', 'name', 'Lpath (United States)'),
(8330, 6440, 'no_lang_code', 'name', 'JS Genetics (United States)'),
(8331, 6441, 'en', 'name', 'San Diego Biomedical Research Institute'),
(8332, 6442, 'en', 'name', 'New Mexico Consortium'),
(8333, 6443, 'en', 'name', 'Foundation for Advanced Education in the Sciences'),
(8334, 6444, 'en', 'name', 'Sirris'),
(8335, 6445, 'en', 'name', 'Miyagi Prefectural Hospital Organization'),
(8336, 6445, 'ja', 'name', 'å®®åŸŽēœŒē«‹ē—…é™¢ę©Ÿę§‹'),
(8337, 6446, 'en', 'name', 'Agricultural Biotechnology Institute'),
(8338, 6447, 'en', 'name', 'Holland College'),
(8339, 6447, 'fr', 'name', 'CollĆØge holland'),
(8340, 6448, 'no_lang_code', 'name', 'Mascoma (Canada)'),
(8341, 6449, 'en', 'name', 'Sterling Hospitals'),
(8342, 6450, 'en', 'name', 'Karachi Institute of Radiotherapy and Nuclear Medicine'),
(8343, 6451, 'en', 'name', 'Washington Adventist Hospital'),
(8344, 6452, 'en', 'name', 'Bogomoletz Institute of Physiology'),
(8345, 6452, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізіології ім. Šž.Šž. Š‘Š¾Š³Š¾Š¼Š¾Š»ŃŒŃ†Ń'),
(8346, 6453, 'no_lang_code', 'name', 'Consorcio Regional de Transportes de Madrid'),
(8347, 6454, 'no_lang_code', 'name', 'Fluxion Biosciences (United States)'),
(8348, 6455, 'no_lang_code', 'name', 'Arkema (United States)'),
(8349, 6456, 'no_lang_code', 'name', 'Galderma (United States)'),
(8350, 6457, 'ja', 'name', 'å…«å°¾å¾³ę“²ä¼šē·åˆē—…é™¢'),
(8351, 6457, 'no_lang_code', 'name', 'Yao Tokushukai General Hospital'),
(8352, 6458, 'en', 'name', 'New Hampshire Hospital'),
(8353, 6459, 'no_lang_code', 'name', 'Seashell Technology (United States)'),
(8354, 6460, 'fr', 'name', 'Centre d''Ɖtude du Polymorphisme Humain, Fondation Jean Dausset-CEPH'),
(8355, 6461, 'no_lang_code', 'name', 'SimQuest (United States)'),
(8356, 6462, 'no_lang_code', 'name', 'Applied Photonics (United Kingdom)'),
(8357, 6463, 'no_lang_code', 'name', 'Nautilus Biosciences (Canada)'),
(8358, 6464, 'es', 'name', 'Instituto de Diagnóstico e Investigaciones Metabólicas'),
(8359, 6465, 'no_lang_code', 'name', 'G & A Technical Software (United States)'),
(8360, 6466, 'no_lang_code', 'name', 'Fluidity Software (United States)'),
(8361, 6467, 'en', 'name', 'Institute of Molecular Biology and Genetics'),
(8362, 6467, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Ń— біології і генетики'),
(8363, 6468, 'en', 'name', 'White Memorial Medical Center'),
(8364, 6469, 'en', 'name', 'Lycoming College'),
(8365, 6470, 'pt', 'name', 'Instituto de Medicina Integral Professor Fernando Figueira'),
(8366, 6471, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ ęž—åŽŸ'),
(8367, 6471, 'no_lang_code', 'name', 'Hayashibara (Japan)'),
(8368, 6472, 'en', 'name', 'Operation UNITE'),
(8369, 6473, 'en', 'name', 'Tarzana Treatment Centers'),
(8370, 6474, 'no_lang_code', 'name', 'Science Take-Out (United States)'),
(8371, 6475, 'en', 'name', 'World Health Organization Regional Office for Europe'),
(8372, 6475, 'fr', 'name', 'Bureau rĆ©gional de l’OMS pour l’Europe'),
(8373, 6475, 'nl', 'name', 'Regionalbüro für Europa'),
(8374, 6476, 'en', 'name', 'American College of Radiology'),
(8375, 6477, 'en', 'name', 'Center for Practical Bioethics'),
(8376, 6478, 'en', 'name', 'Chicago Association for Research and Education in Science'),
(8377, 6479, 'no_lang_code', 'name', 'Barrett Technology (United States)'),
(8378, 6480, 'en', 'name', 'Society of Automotive Engineers International'),
(8379, 6481, 'no_lang_code', 'name', 'AureoGen Biosciences (United States)'),
(8380, 6482, 'en', 'name', 'National Institute of Neurological Disorders and Stroke'),
(8381, 6483, 'no_lang_code', 'name', 'Tengion (United States)'),
(8382, 6484, 'en', 'name', 'West Virginia School of Osteopathic Medicine'),
(8383, 6485, 'no_lang_code', 'name', 'Incell Corporation (United States)'),
(8384, 6486, 'en', 'name', 'Parker University'),
(8385, 6487, 'en', 'name', 'Presbyterian College'),
(8386, 6488, 'en', 'name', 'Institute of Cardiology'),
(8387, 6488, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карГиологии'),
(8388, 6489, 'no_lang_code', 'name', 'Jeremy Benn Associates (United Kingdom)'),
(8389, 6490, 'en', 'name', 'Institute of Immunological Engineering'),
(8390, 6491, 'no_lang_code', 'name', 'Feilden Clegg Bradley Studios (United Kingdom)'),
(8391, 6492, 'en', 'name', 'Merit Network'),
(8392, 6493, 'en', 'name', 'Cuyahoga Community College'),
(8393, 6494, 'en', 'name', 'Red Deer College'),
(8394, 6495, 'en', 'name', 'Treasury Board of Canada Secretariat'),
(8395, 6495, 'fr', 'name', 'SecrƩtariat du Conseil du TrƩsor du Canada'),
(8396, 6496, 'no_lang_code', 'name', 'Pharmaceutical Product Development (United States)'),
(8397, 6497, 'en', 'name', 'Tallahassee Community College'),
(8398, 6498, 'ja', 'name', 'ę—„ē”£åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(8399, 6498, 'no_lang_code', 'name', 'Nissan Chemical Corporation (Japan)'),
(8400, 6499, 'en', 'name', 'Swiss Paraplegic Center'),
(8401, 6500, 'en', 'name', 'Center for Dermatology and Laser Surgery'),
(8402, 6501, 'no_lang_code', 'name', 'ImageCat (United States)'),
(8403, 6502, 'no_lang_code', 'name', 'Geninov (Canada)'),
(8404, 6503, 'sr', 'name', 'Klinički centar NiÅ”, ŠšŠ»ŠøŠ½ŠøŃ‡ŠŗŠø центар ŠŠøŃˆ'),
(8405, 6504, 'en', 'name', 'Croatian Veterinary Institute'),
(8406, 6504, 'hr', 'name', 'Hrvatski veterinarski institut Zagreb'),
(8407, 6505, 'en', 'name', 'Howard Brown Health Center'),
(8408, 6506, 'en', 'name', 'Fond du Lac Reservation'),
(8409, 6507, 'en', 'name', 'Toyama City Hospital'),
(8410, 6507, 'ja', 'name', 'åÆŒå±±åø‚ē«‹åÆŒå±±åø‚ę°‘ē—…é™¢'),
(8411, 6508, 'en', 'name', 'National Conference on Interstate Milk Shipments'),
(8412, 6509, 'de', 'name', 'Klinikum Oldenburg'),
(8413, 6510, 'no_lang_code', 'name', 'Verafin (Canada)'),
(8414, 6511, 'en', 'name', 'Sri Ramakrishna Institute of Paramedical Sciences'),
(8415, 6512, 'no_lang_code', 'name', 'MBio Diagnostics (United States)'),
(8416, 6513, 'no_lang_code', 'name', 'Treatment Innovations (United States)'),
(8417, 6514, 'en', 'name', 'Houston Independent School District'),
(8418, 6515, 'en', 'name', 'Shriners Hospitals for Children - Spokane'),
(8419, 6516, 'en', 'name', 'Regis College'),
(8420, 6517, 'en', 'name', 'Conestoga College'),
(8421, 6518, 'en', 'name', 'Yvette clinic'),
(8422, 6518, 'fr', 'name', 'Clinique de l''Yvette'),
(8423, 6519, 'no_lang_code', 'name', 'White Point Systems (United States)'),
(8424, 6520, 'en', 'name', 'Healthcare Education Associates'),
(8425, 6521, 'en', 'name', 'Park Nicollet Health Services'),
(8426, 6522, 'en', 'name', 'City of York Council'),
(8427, 6523, 'no_lang_code', 'name', 'Alpha Genesis (United States)'),
(8428, 6524, 'en', 'name', 'Florida Orthopaedic Institute'),
(8429, 6525, 'no_lang_code', 'name', 'Circle Solutions'),
(8430, 6526, 'en', 'name', 'National Institute Of Hygiene And Epidemiology'),
(8431, 6526, 'vi', 'name', 'Viện Vệ sinh dịch tį»… Trung ʰʔng'),
(8432, 6527, 'en', 'name', 'Institute for Family Health'),
(8433, 6528, 'ja', 'name', 'ę£®ę°øč£½č“ę Ŗå¼ä¼šē¤¾'),
(8434, 6528, 'no_lang_code', 'name', 'Morinaga (Japan)'),
(8435, 6529, 'fr', 'name', 'HƓpital privƩ Clairval'),
(8436, 6530, 'pt', 'name', 'Fundação UniversitÔria de Cardiologia, Instituto de Cardiologia do Rio Grande do Sul'),
(8437, 6531, 'en', 'name', 'Biotechnical Services'),
(8438, 6532, 'no_lang_code', 'name', 'Prism Clinical Imaging (United States)'),
(8439, 6533, 'en', 'name', 'Surrey Place Centre'),
(8440, 6534, 'no_lang_code', 'name', 'Alberti''s Window (United States)'),
(8441, 6535, 'en', 'name', 'Valley Hospital'),
(8442, 6536, 'no_lang_code', 'name', 'Operational Technologies Corporation (United States)'),
(8443, 6537, 'en', 'name', 'Shanghai Cancer Institute'),
(8444, 6538, 'en', 'name', 'Institute for Biological Instrumentation'),
(8445, 6538, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологического ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ Š ŠŠ'),
(8446, 6539, 'en', 'name', 'Watford General Hospital'),
(8447, 6540, 'ja', 'name', 'å”©é‡Žē¾©č£½č–¬'),
(8448, 6540, 'no_lang_code', 'name', 'Shionogi (Japan)'),
(8449, 6541, 'no_lang_code', 'name', 'Sizewise (United States)'),
(8450, 6542, 'en', 'name', 'Engineering Conferences International'),
(8451, 6543, 'no_lang_code', 'name', 'NanoCellect Biomedical (United States)'),
(8452, 6544, 'no_lang_code', 'name', 'Sarver and Associates (United States)'),
(8453, 6545, 'no_lang_code', 'name', '3D-Micromac (Germany)'),
(8454, 6546, 'en', 'name', 'Northlake Medical Center'),
(8455, 6547, 'en', 'name', 'NEC Corporation of America'),
(8456, 6547, 'no_lang_code', 'name', 'NEC (United States)'),
(8457, 6548, 'no_lang_code', 'name', 'Interklinik'),
(8458, 6549, 'no_lang_code', 'name', 'RadioMedix (United States)'),
(8459, 6550, 'no_lang_code', 'name', 'Bracco (Switzerland)'),
(8460, 6551, 'ja', 'name', '中外製薬'),
(8461, 6551, 'no_lang_code', 'name', 'Roche (Japan)'),
(8462, 6552, 'no_lang_code', 'name', 'Immune Response BioPharma (United States)'),
(8463, 6553, 'en', 'name', 'Mississippi Gulf Coast Community College'),
(8464, 6554, 'no_lang_code', 'name', 'Cadence Biomedical (United States)'),
(8465, 6555, 'sk', 'name', 'Onkologický Ústav Svätej Alžbety'),
(8466, 6556, 'en', 'name', 'Valley Medical Center'),
(8467, 6557, 'en', 'name', 'National Migraine Centre'),
(8468, 6558, 'no_lang_code', 'name', 'Merck Serono (Switzerland)'),
(8469, 6559, 'en', 'name', 'Center for Economic and Policy Research'),
(8470, 6560, 'en', 'name', 'State Science and Technology Institute'),
(8471, 6561, 'no_lang_code', 'name', 'PhosphorTech (United States)'),
(8472, 6562, 'en', 'name', 'Torbay Hospital'),
(8473, 6563, 'no_lang_code', 'name', 'Cytex Therapeutics (United States)'),
(8474, 6564, 'en', 'name', 'Roland Institute of Pharmaceutical Sciences'),
(8475, 6565, 'no_lang_code', 'name', 'CHI Associates (United States)'),
(8476, 6566, 'en', 'name', 'Citadel'),
(8477, 6566, 'fr', 'name', 'AcadƩmie militaire de caroline du sud'),
(8478, 6567, 'it', 'name', 'Istituto Ortopedico Galeazzi'),
(8479, 6568, 'en', 'name', 'National Tuberculosis Institute'),
(8480, 6569, 'de', 'name', 'Max-Planck-Institut für Informatik'),
(8481, 6569, 'en', 'name', 'Max Planck Institute for Informatics'),
(8482, 6570, 'no_lang_code', 'name', 'ACRI Group (France)'),
(8483, 6571, 'no_lang_code', 'name', 'Phoenix Science and Technology (United States)'),
(8484, 6572, 'no_lang_code', 'name', 'Naprogenix (United States)'),
(8485, 6573, 'en', 'name', 'Tri-County Health Department'),
(8486, 6574, 'en', 'name', 'Pharmo Institute'),
(8487, 6575, 'en', 'name', 'Area Cooperative Education Services'),
(8488, 6576, 'en', 'name', 'Raghudeep Eye Hospital'),
(8489, 6577, 'en', 'name', 'National Center for HIV/AIDS Viral Hepatitis STD and TB Prevention'),
(8490, 6578, 'no_lang_code', 'name', 'Foster-Miller (United States)'),
(8491, 6579, 'en', 'name', 'Central Research Institute'),
(8492, 6579, 'hi', 'name', 'ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(8493, 6580, 'en', 'name', 'Chinese National Human Genome Center'),
(8494, 6581, 'en', 'name', 'Institute for Animal Production System in Mediterranean Environment'),
(8495, 6581, 'it', 'name', 'Istituto per il Sistema Produzione Animale in Ambiente Mediterraneo'),
(8496, 6582, 'en', 'name', 'National Centre for Atmospheric Science'),
(8497, 6583, 'en', 'name', 'New York City Department of Education'),
(8498, 6583, 'es', 'name', 'Departamento de Educación de la Ciudad de Nueva York'),
(8499, 6583, 'fr', 'name', 'DĆ©partement de l''Ɖducation de la ville de new york'),
(8500, 6584, 'en', 'name', 'Maria Cecilia Hospital'),
(8501, 6585, 'ja', 'name', 'å›½ē«‹ć•ćć‚‰ē—…é™¢'),
(8502, 6585, 'no_lang_code', 'name', 'Kunitachi Sakura Hospital'),
(8503, 6586, 'fr', 'name', 'Centre International de Recherches MƩdicales de Franceville'),
(8504, 6587, 'fr', 'name', 'Coalition des Organismes Communautaires QuƩbƩcois de Lutte Contre le Sida'),
(8505, 6588, 'no_lang_code', 'name', 'Saneron CCEL Therapeutics (United States)'),
(8506, 6589, 'en', 'name', 'West Cumberland Hospital'),
(8507, 6590, 'no_lang_code', 'name', 'DesignMedix (United States)'),
(8508, 6591, 'no_lang_code', 'name', 'SC Solutions (United States)'),
(8509, 6592, 'en', 'name', 'Tianjin People''s Hospital'),
(8510, 6592, 'zh', 'name', 'å¤©ę“„åø‚äŗŗę°‘åŒ»é™¢'),
(8511, 6593, 'en', 'name', 'Hillsborough Community College'),
(8512, 6594, 'en', 'name', 'National Center for Environmental Assessment (EPA)'),
(8513, 6595, 'no_lang_code', 'name', 'ManTech International (United States)'),
(8514, 6596, 'no_lang_code', 'name', 'NovaSterilis (United States)'),
(8515, 6597, 'en', 'name', 'Papua New Guinea Institute of Medical Research'),
(8516, 6598, 'en', 'name', 'Saint Elizabeth Regional Medical Center'),
(8517, 6599, 'en', 'name', 'American Society For Testing and Materials'),
(8518, 6600, 'no_lang_code', 'name', 'Cairn Research (United Kingdom)'),
(8519, 6601, 'en', 'name', 'Korea Atomic Energy Research Institute'),
(8520, 6601, 'ko', 'name', 'ķ•œźµ­ģ›ģžė „ģ—°źµ¬ģ›'),
(8521, 6602, 'en', 'name', 'National Association of State Mental Health Program Directors'),
(8522, 6603, 'no_lang_code', 'name', 'Weifang People''s Hospital'),
(8523, 6603, 'zh', 'name', 'ę½åŠåø‚äŗŗę°‘åŒ»é™¢'),
(8524, 6604, 'ja', 'name', 'ę—„ęœ¬ćŸć°ć“ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(8525, 6604, 'no_lang_code', 'name', 'Japan Tobacco (Japan)'),
(8526, 6605, 'en', 'name', 'National Institute of Amazonian Research'),
(8527, 6605, 'pt', 'name', 'Instituto Nacional de Pesquisas da AmazƓnia'),
(8528, 6606, 'en', 'name', 'VA West Los Angeles Medical Center'),
(8529, 6607, 'en', 'name', 'Academy of Sciences Republic of Uzbekistan'),
(8530, 6607, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Узбекистана'),
(8531, 6607, 'tg', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŠø илмҳои Ӯзбакистон'),
(8532, 6607, 'uz', 'name', 'Oʻzbekiston Respublikasi Fanlar Akademiyasi'),
(8533, 6608, 'no_lang_code', 'name', 'Nicoya Lifesciences (Canada)'),
(8534, 6609, 'no_lang_code', 'name', 'WisdomTools (United States)'),
(8535, 6610, 'no_lang_code', 'name', 'Carl Zeiss (United States)'),
(8536, 6611, 'no_lang_code', 'name', 'Team Industrial Services (United States)'),
(8537, 6612, 'no_lang_code', 'name', 'Robert Olson Consulting (United States)'),
(8538, 6613, 'en', 'name', 'University of Jamestown'),
(8539, 6614, 'no_lang_code', 'name', 'OFM Research (United States)'),
(8540, 6615, 'no_lang_code', 'name', 'Seamon (United States)'),
(8541, 6616, 'en', 'name', 'Elizabethtown College'),
(8542, 6617, 'en', 'name', 'St. Mary''s College of Maryland'),
(8543, 6618, 'en', 'name', 'Spine Institute of Louisiana'),
(8544, 6619, 'no_lang_code', 'name', 'Raptamer Discovery Group (United States)'),
(8545, 6620, 'as', 'name', 'ą¦†ą¦žą§ą¦šą¦²ą¦æą¦• ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ গৱেষণা ą¦•ą§‡ą¦Øą§ą¦¦ą§ą§°, ą¦”ą¦æą¦¬ą§ą§°ą§ą¦—ą¦”ą¦¼'),
(8546, 6620, 'en', 'name', 'Regional Medical Research Centre'),
(8547, 6621, 'no_lang_code', 'name', 'Technology Dynamics (United States)'),
(8548, 6622, 'en', 'name', 'Dominican College of Blauvelt'),
(8549, 6623, 'de', 'name', 'Max Planck Institut für Chemische Energiekonversion'),
(8550, 6623, 'en', 'name', 'Max Planck Institute for Chemical Energy Conversion'),
(8551, 6624, 'en', 'name', 'Yodogawa Christian Hospital'),
(8552, 6624, 'ja', 'name', 'ę·€å·ć‚­ćƒŖć‚¹ćƒˆę•™ē—…é™¢'),
(8553, 6625, 'fr', 'name', 'Centre EugĆØne Marquis'),
(8554, 6626, 'it', 'name', 'CSI Piemonte'),
(8555, 6627, 'no_lang_code', 'name', 'American Life Science Pharmaceuticals (United States)'),
(8556, 6628, 'en', 'name', 'Design Council'),
(8557, 6629, 'en', 'name', 'Waukesha Memorial Hospital'),
(8558, 6630, 'no_lang_code', 'name', 'Sensor Electronics (United States)'),
(8559, 6631, 'en', 'name', 'Pacific Medical Research Foundation'),
(8560, 6632, 'en', 'name', 'Institute of Gene Biology'),
(8561, 6632, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии гена'),
(8562, 6633, 'en', 'name', 'European Molecular Biology Laboratory'),
(8563, 6634, 'en', 'name', 'Guttmacher Institute'),
(8564, 6635, 'no_lang_code', 'name', 'NORAM (Canada)'),
(8565, 6636, 'no_lang_code', 'name', 'Viasystems (United States)'),
(8566, 6637, 'no_lang_code', 'name', 'Anacomp (United States)'),
(8567, 6638, 'es', 'name', 'Instituto Nacional de Rehabilitación Psicofísica'),
(8568, 6639, 'de', 'name', 'Forschungsinstitut für Kinderernährung'),
(8569, 6640, 'no_lang_code', 'name', 'Guild Associates (United States)'),
(8570, 6641, 'en', 'name', 'Italian Scientific Institute for the Spine'),
(8571, 6641, 'it', 'name', 'Istituto Scientifico Italiano Colonna Vertebrale'),
(8572, 6642, 'en', 'name', 'ZNA Middelheim Hospital'),
(8573, 6643, 'pt', 'name', 'Faculdade de Ciências Médicas da Santa Casa de São Paulo'),
(8574, 6644, 'no_lang_code', 'name', 'Millar (United States)'),
(8575, 6645, 'no_lang_code', 'name', 'Technology Assessment and Transfer (United States)'),
(8576, 6646, 'en', 'name', 'Ottawa Regional Cancer Foundation'),
(8577, 6647, 'en', 'name', 'Diabetes & Glandular Disease Clinic'),
(8578, 6648, 'no_lang_code', 'name', 'Modulim (United States)'),
(8579, 6649, 'en', 'name', 'Baptist Health Care'),
(8580, 6650, 'en', 'name', 'Office of the Chief Medical Examiner'),
(8581, 6651, 'en', 'name', 'Yuan''s General Hospital'),
(8582, 6651, 'zh', 'name', 'é˜®ē¶œåˆé†«é™¢'),
(8583, 6652, 'fr', 'name', 'Centre MƩdical de Vidy'),
(8584, 6653, 'no_lang_code', 'name', 'Theradex Oncology (United States)'),
(8585, 6654, 'en', 'name', 'Renal Association'),
(8586, 6655, 'it', 'name', 'Ospedale Psichiatrico Paolo Pini'),
(8587, 6656, 'en', 'name', 'Institute for Marine Biosciences'),
(8588, 6657, 'no_lang_code', 'name', 'INFICON (United States)'),
(8589, 6658, 'no_lang_code', 'name', 'Alere (United States)'),
(8590, 6659, 'en', 'name', 'Indian Institute of Integrative Medicine'),
(8591, 6660, 'en', 'name', 'Linn Benton Community College'),
(8592, 6661, 'it', 'name', 'Istituto di Tipizzazione Tissutale e Problemi della Dialisi'),
(8593, 6662, 'tr', 'name', 'Türkiye Cumhuriyeti Devlet Demiryolları Hastanesi'),
(8594, 6663, 'en', 'name', 'Children’s Discovery Museum of San Jose'),
(8595, 6664, 'no_lang_code', 'name', 'Insmed (United States)'),
(8596, 6665, 'no_lang_code', 'name', 'EarthSky'),
(8597, 6666, 'no_lang_code', 'name', 'Oncor (United States)'),
(8598, 6667, 'en', 'name', 'Nashville State Community College'),
(8599, 6668, 'en', 'name', 'Parkland Memorial Hospital'),
(8600, 6669, 'de', 'name', 'Max-Planck-Institut für die Physik des Lichts'),
(8601, 6669, 'en', 'name', 'Max Planck Institute for the Science of Light'),
(8602, 6670, 'no_lang_code', 'name', 'Proton (United Kingdom)'),
(8603, 6671, 'en', 'name', 'Oakton Community College'),
(8604, 6672, 'en', 'name', 'Global Hospitals'),
(8605, 6673, 'en', 'name', 'Gimbel Eye Centre'),
(8606, 6674, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° карГиологична болница'),
(8607, 6674, 'en', 'name', 'National Heart Hospital'),
(8608, 6675, 'no_lang_code', 'name', 'Mosaiques Diagnostics and Therapeutics (Germany)'),
(8609, 6676, 'en', 'name', 'Holy Names University'),
(8610, 6677, 'en', 'name', 'United States Public Health Service Commissioned Officers Association'),
(8611, 6678, 'no_lang_code', 'name', 'NDI Group (United States)'),
(8612, 6679, 'it', 'name', 'Ospedale dei Pellegrini'),
(8613, 6680, 'en', 'name', 'Student Assistance Services'),
(8614, 6681, 'en', 'name', 'Merici College'),
(8615, 6681, 'fr', 'name', 'Collège Mérici'),
(8616, 6682, 'no_lang_code', 'name', 'DIApedia (United States)'),
(8617, 6683, 'no_lang_code', 'name', 'Cybernet Systems Corporation (United States)'),
(8618, 6684, 'en', 'name', 'Center for Applied Linguistics'),
(8619, 6685, 'en', 'name', 'Premier Community Health'),
(8620, 6686, 'en', 'name', 'Shibaura Institute of Technology'),
(8621, 6686, 'ja', 'name', 'čŠęµ¦å·„ę„­å¤§å­¦'),
(8622, 6687, 'no_lang_code', 'name', 'Spectris (United Kingdom)'),
(8623, 6688, 'no_lang_code', 'name', 'Lord Corporation (United States)'),
(8624, 6689, 'en', 'name', 'Alberta Community Council on HIV'),
(8625, 6690, 'en', 'name', 'Filippo Del Ponte Hospital'),
(8626, 6690, 'it', 'name', 'Ospedale Filippo Del Ponte Varese'),
(8627, 6691, 'en', 'name', 'National Metallurgical Laboratory'),
(8628, 6692, 'en', 'name', 'Chiba Cancer Center'),
(8629, 6692, 'ja', 'name', 'åƒč‘‰ēœŒćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(8630, 6693, 'no_lang_code', 'name', 'DesignBuilder Software (United Kingdom)'),
(8631, 6694, 'en', 'name', 'Inova Fairfax Hospital'),
(8632, 6695, 'no_lang_code', 'name', 'Medical Imaging Applications (United States)'),
(8633, 6696, 'en', 'name', 'Aspen Global Change Institute'),
(8634, 6697, 'no_lang_code', 'name', 'Karo Pharma (Sweden)'),
(8635, 6698, 'en', 'name', 'Royal College of Surgeons of Edinburgh'),
(8636, 6699, 'en', 'name', 'Northern Territory Health Services'),
(8637, 6700, 'en', 'name', 'Adelphi Research'),
(8638, 6701, 'en', 'name', 'Noto General Hospital'),
(8639, 6701, 'ja', 'name', 'å…¬ē«‹čƒ½ē™»ē·åˆē—…é™¢'),
(8640, 6702, 'no_lang_code', 'name', 'International Trypanotolerance Centre'),
(8641, 6703, 'no_lang_code', 'name', 'Diacon (Canada)'),
(8642, 6704, 'no_lang_code', 'name', 'National Integrated Solutions (United Kingdom)'),
(8643, 6705, 'no_lang_code', 'name', 'MGS Research (United States)'),
(8644, 6706, 'no_lang_code', 'name', 'Novus Biologicals (United States)'),
(8645, 6707, 'en', 'name', 'National Environmental Engineering Research Institute'),
(8646, 6708, 'en', 'name', 'National Center for Chronic Disease Prevention and Health Promotion'),
(8647, 6709, 'no_lang_code', 'name', 'Nicolet Chartrand Knoll (Canada)'),
(8648, 6710, 'en', 'name', 'El Camino College'),
(8649, 6711, 'en', 'name', 'Posnick Center for Facial Plastic Surgery'),
(8650, 6712, 'no_lang_code', 'name', 'Center For Remote Sensing (United States)'),
(8651, 6713, 'no_lang_code', 'name', 'Evolutionary Genomics (United States)'),
(8652, 6714, 'ro', 'name', 'Institutul Oncologic Bucuresti'),
(8653, 6715, 'no_lang_code', 'name', 'South Australian Water Corporation'),
(8654, 6716, 'no_lang_code', 'name', 'Ajinomoto Althea (United States)'),
(8655, 6717, 'no_lang_code', 'name', 'Beneficial Designs (United States)'),
(8656, 6718, 'en', 'name', 'Taste and Smell Clinic'),
(8657, 6719, 'en', 'name', 'Nazareth College'),
(8658, 6720, 'en', 'name', 'St. Mary''s Medical Center'),
(8659, 6721, 'no_lang_code', 'name', 'Honda (Germany)'),
(8660, 6722, 'ja', 'name', 'å¤§å”šēœ¼ē§‘ē—…é™¢'),
(8661, 6722, 'no_lang_code', 'name', 'Ohtsuka Eye Hospital'),
(8662, 6723, 'en', 'name', 'Family Health Centers of San Diego');
INSERT INTO `ror_settings` VALUES
(8663, 6724, 'no_lang_code', 'name', 'New Span Opto-Technology (United States)'),
(8664, 6725, 'no_lang_code', 'name', 'Hexcel (United Kingdom)'),
(8665, 6726, 'en', 'name', 'Santa Barbara City College'),
(8666, 6727, 'de', 'name', 'Max-Planck-Institut für Entwicklungsbiologie'),
(8667, 6727, 'en', 'name', 'Max Planck Institute for Developmental Biology'),
(8668, 6728, 'no_lang_code', 'name', 'Philip Morris International (Germany)'),
(8669, 6729, 'en', 'name', 'Grewal Eye Institute'),
(8670, 6730, 'en', 'name', 'Tzu Chi Foundation'),
(8671, 6731, 'pt', 'name', 'Instituto de Engenharia de Sistemas e Computadores Microsistemas e Nanotecnologias'),
(8672, 6732, 'en', 'name', 'Institute of Transplantation Sciences'),
(8673, 6733, 'en', 'name', 'Chicago Public Schools'),
(8674, 6734, 'en', 'name', 'County College of Morris'),
(8675, 6735, 'en', 'name', 'Steadman Clinic'),
(8676, 6736, 'en', 'name', 'Pavlov Institute of Physiology of the Russian Academy of Sciences'),
(8677, 6736, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии им. И.П. Павлова Российской акаГемии наук'),
(8678, 6737, 'no_lang_code', 'name', 'Planet Biotechnology (United States)'),
(8679, 6738, 'en', 'name', 'University of Mount Union'),
(8680, 6738, 'fr', 'name', 'UniversitƩ de mount union'),
(8681, 6739, 'no_lang_code', 'name', 'Tanner Research (United States)'),
(8682, 6740, 'es', 'name', 'EsSALUD, Seguro Social de Salud del PerĆŗ'),
(8683, 6741, 'no_lang_code', 'name', 'HydraTek (Canada)'),
(8684, 6742, 'en', 'name', 'Institute for Safe Medication Practices'),
(8685, 6743, 'en', 'name', 'Akebono Clinic'),
(8686, 6744, 'no_lang_code', 'name', 'Petrobras (Brazil)'),
(8687, 6745, 'en', 'name', 'Let''s Talk Science'),
(8688, 6746, 'de', 'name', 'Max-Planck-Institut für Marine Mikrobiologie'),
(8689, 6746, 'en', 'name', 'Max Planck Institute for Marine Microbiology'),
(8690, 6747, 'no_lang_code', 'name', 'GeneTrace Systems (United States)'),
(8691, 6748, 'en', 'name', 'East Bay Institute for Research & Education'),
(8692, 6749, 'en', 'name', 'Southeast Alaska Regional Health Consortium'),
(8693, 6750, 'fr', 'name', 'Centre d''Exploration et de Recherche MƩdicale par Emission de Positons'),
(8694, 6751, 'no_lang_code', 'name', 'Agenta Biotechnologies (United States)'),
(8695, 6752, 'no_lang_code', 'name', 'QED Labs'),
(8696, 6753, 'en', 'name', 'Michigan Department of Agriculture and Rural Development'),
(8697, 6754, 'en', 'name', 'National Association for Public Health Statistics and Information Systems'),
(8698, 6755, 'en', 'name', 'St. Thomas Hospital'),
(8699, 6756, 'no_lang_code', 'name', 'Johnson & Johnson (Germany)'),
(8700, 6757, 'no_lang_code', 'name', 'Onconova Therapeutics (United States)'),
(8701, 6758, 'no_lang_code', 'name', 'ON Semiconductor (Canada)'),
(8702, 6759, 'en', 'name', 'International Hearing Foundation'),
(8703, 6760, 'en', 'name', 'Sisseton Wahpeton College'),
(8704, 6761, 'no_lang_code', 'name', 'Hoare Lea (United Kingdom)'),
(8705, 6762, 'no_lang_code', 'name', 'INRIX (United Kingdom)'),
(8706, 6763, 'en', 'name', 'Nova Scotia Community College'),
(8707, 6764, 'no_lang_code', 'name', 'EKF Diagnostics (United States)'),
(8708, 6765, 'en', 'name', 'National Agriculture and Food Research Organization'),
(8709, 6765, 'ja', 'name', 'č¾²ę„­ćƒ»é£Ÿå“ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę©Ÿę§‹'),
(8710, 6766, 'en', 'name', 'University of Health Sciences İstanbul Ümranyie Training and Research Hospital'),
(8711, 6766, 'tr', 'name', 'Ümraniye Eğitim ve Araştırma Hastanesi'),
(8712, 6767, 'it', 'name', 'Casa di Cura Columbus'),
(8713, 6768, 'no_lang_code', 'name', 'Canadian Electric Vehicles (Canada)'),
(8714, 6769, 'en', 'name', 'Biophysical Society'),
(8715, 6770, 'en', 'name', 'Neuroscience Institute'),
(8716, 6770, 'it', 'name', 'Istituto di Neuroscienze'),
(8717, 6771, 'en', 'name', 'Boston VA Research Institute'),
(8718, 6772, 'en', 'name', 'Orthopedic Foot & Ankle Center'),
(8719, 6773, 'de', 'name', 'Max Planck Institut für Biologie'),
(8720, 6773, 'en', 'name', 'Max Planck Institute for Biology'),
(8721, 6774, 'no_lang_code', 'name', 'Molsoft (United States)'),
(8722, 6775, 'no_lang_code', 'name', 'Optron Systems (United States)'),
(8723, 6776, 'en', 'name', 'Christus Health'),
(8724, 6777, 'en', 'name', 'Kuwait Cancer Control Center'),
(8725, 6778, 'no_lang_code', 'name', 'ALD NanoSolutions (United States)'),
(8726, 6779, 'en', 'name', 'Phoenix VA Health Care System'),
(8727, 6780, 'no_lang_code', 'name', 'Provid Pharmaceuticals (United States)'),
(8728, 6781, 'en', 'name', 'London Women''s Clinic'),
(8729, 6782, 'no_lang_code', 'name', 'Natural Selection (United States)'),
(8730, 6783, 'es', 'name', 'Administración Nacional de Laboratorios e Institutos de Salud'),
(8731, 6784, 'no_lang_code', 'name', 'Auritec Pharmaceuticals (United States)'),
(8732, 6785, 'en', 'name', 'Taiwan Adventist Hospital'),
(8733, 6785, 'zh', 'name', '台安医院'),
(8734, 6786, 'en', 'name', 'Nuffield Council on Bioethics'),
(8735, 6787, 'en', 'name', 'Conservation International'),
(8736, 6788, 'no_lang_code', 'name', 'Thermalin Diabetes (United States)'),
(8737, 6789, 'en', 'name', 'John Wesley Community Health Institute'),
(8738, 6790, 'en', 'name', 'Portland Cement Association'),
(8739, 6791, 'en', 'name', 'Warrington Hospital'),
(8740, 6792, 'no_lang_code', 'name', 'SeaWell Networks (Canada)'),
(8741, 6793, 'no_lang_code', 'name', 'Antigen Discovery (United States)'),
(8742, 6794, 'no_lang_code', 'name', 'Greenfield Research (Canada)'),
(8743, 6795, 'en', 'name', 'Institute for Veterinary Medical Research'),
(8744, 6795, 'hu', 'name', 'Ɓllatorvos TudomƔnyi IntƩzet'),
(8745, 6796, 'en', 'name', 'Doane University'),
(8746, 6797, 'no_lang_code', 'name', 'Severn Trent (United Kingdom)'),
(8747, 6798, 'en', 'name', 'Children''s Health Ireland at Crumlin'),
(8748, 6798, 'ga', 'name', 'SlĆ”inte LeanaĆ­ Ɖireann ag Cromghlinn'),
(8749, 6799, 'en', 'name', 'Deep River Science Academy'),
(8750, 6800, 'no_lang_code', 'name', 'IONICS Mass Spectrometry (Canada)'),
(8751, 6801, 'en', 'name', 'Lille Catholic University'),
(8752, 6801, 'fr', 'name', 'UniversitƩ Catholique de Lille'),
(8753, 6802, 'en', 'name', 'Heart Clinic of Louisiana'),
(8754, 6803, 'no_lang_code', 'name', 'GlaxoSmithKline (United States)'),
(8755, 6804, 'en', 'name', 'Tri-City Medical Center'),
(8756, 6805, 'en', 'name', 'Royal Astronomical Society of Canada'),
(8757, 6806, 'en', 'name', 'Clinical Immunology Society'),
(8758, 6807, 'en', 'name', 'Arizona Academy of Science'),
(8759, 6808, 'no_lang_code', 'name', 'BioFusionary Corporation (United States)'),
(8760, 6809, 'no_lang_code', 'name', 'Anvik Corporation (United States)'),
(8761, 6810, 'no_lang_code', 'name', 'Center for Value Based Medicine (United States)'),
(8762, 6811, 'fr', 'name', 'HƓpital RenƩ Huguenin'),
(8763, 6812, 'no_lang_code', 'name', 'Advanced Materials Technology (United States)'),
(8764, 6813, 'en', 'name', 'Norton Healthcare'),
(8765, 6814, 'no_lang_code', 'name', 'CyberFluor and Kronen Systems Incorporated'),
(8766, 6815, 'en', 'name', 'Global HIV Vaccine Enterprise'),
(8767, 6816, 'en', 'name', 'Sitaram Bhartia Institute of Science and Research'),
(8768, 6817, 'en', 'name', 'Montana Wyoming Tribal Leaders Council'),
(8769, 6818, 'no_lang_code', 'name', 'Tinderbox Consultants (United Kingdom)'),
(8770, 6819, 'no_lang_code', 'name', 'UT Dots (United States)'),
(8771, 6820, 'en', 'name', 'Oxford Centre for Computational Neuroscience'),
(8772, 6821, 'en', 'name', 'Productive Rehabilitation Institute of Dallas for Ergonomics'),
(8773, 6822, 'en', 'name', 'St. Joseph Hospital'),
(8774, 6823, 'en', 'name', 'Hazardous Materials Training and Research Institute'),
(8775, 6824, 'de', 'name', 'Max-Planck-Institut für Biologische Kybernetik'),
(8776, 6824, 'en', 'name', 'Max Planck Institute for Biological Cybernetics'),
(8777, 6825, 'no_lang_code', 'name', 'CytoCure (United States)'),
(8778, 6826, 'no_lang_code', 'name', 'Geron (United States)'),
(8779, 6827, 'no_lang_code', 'name', 'Biopeptide (United States)'),
(8780, 6828, 'no_lang_code', 'name', 'Assystem (Germany)'),
(8781, 6829, 'no_lang_code', 'name', 'Harrington Software Associates'),
(8782, 6830, 'no_lang_code', 'name', 'NeoClone (United States)'),
(8783, 6831, 'no_lang_code', 'name', 'Passat (Canada)'),
(8784, 6832, 'en', 'name', 'National Aquarium'),
(8785, 6833, 'en', 'name', 'South Dakota Department of Social Services'),
(8786, 6834, 'en', 'name', 'Institute of Cytology and Genetics'),
(8787, 6834, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цитологии Šø генетики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(8788, 6835, 'no_lang_code', 'name', 'Boston Medical Products (United States)'),
(8789, 6836, 'en', 'name', 'Victorian Order of Nurses'),
(8790, 6837, 'no_lang_code', 'name', 'Aedas (United Kingdom)'),
(8791, 6838, 'no_lang_code', 'name', 'Integrated BioTherapeutics (United States)'),
(8792, 6839, 'en', 'name', 'Tabba Heart Institute'),
(8793, 6840, 'fr', 'name', 'Institut de la Main'),
(8794, 6841, 'en', 'name', 'Canadian Obesity Network'),
(8795, 6841, 'fr', 'name', 'RĆ©seau Canadien en l’ObĆ©sitĆ©'),
(8796, 6842, 'no_lang_code', 'name', 'Chemica Technologies (United States)'),
(8797, 6843, 'en', 'name', 'Obihiro Kosei General Hospital'),
(8798, 6843, 'ja', 'name', 'åøÆåŗƒåŽšē”Ÿē—…é™¢'),
(8799, 6844, 'en', 'name', 'New Economics Foundation'),
(8800, 6845, 'hu', 'name', 'Állami SzívkórhÔz'),
(8801, 6846, 'en', 'name', 'Kidwai Memorial Institute of Oncology'),
(8802, 6847, 'no_lang_code', 'name', 'AlertMe (United Kingdom)'),
(8803, 6848, 'en', 'name', 'Engelhardt Institute of Molecular Biology'),
(8804, 6848, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ биологии им. Š’.А. Š­Š½Š³ŠµŠ»ŃŒŠ³Š°Ń€Š“Ń‚Š° Российской акаГемии наук'),
(8805, 6849, 'no_lang_code', 'name', 'Quantum Simulations (United States)'),
(8806, 6850, 'en', 'name', 'Salem VA Medical Center'),
(8807, 6851, 'no_lang_code', 'name', 'Capcom Vancouver (Canada)'),
(8808, 6852, 'en', 'name', 'Centre for Life'),
(8809, 6853, 'ja', 'name', 'ę˜Žę²»'),
(8810, 6853, 'no_lang_code', 'name', 'Meiji (Japan)'),
(8811, 6854, 'no_lang_code', 'name', 'Celdara Medical (United States)'),
(8812, 6855, 'en', 'name', 'Institute for Broadening Participation'),
(8813, 6856, 'en', 'name', 'Nuffield Foundation'),
(8814, 6857, 'no_lang_code', 'name', 'Promiliad Biopharma (United States)'),
(8815, 6858, 'en', 'name', 'Tenshi Hospital'),
(8816, 6858, 'ja', 'name', '天使病院'),
(8817, 6859, 'ja', 'name', 'ęµ“é¢Øä¼šē—…é™¢'),
(8818, 6859, 'no_lang_code', 'name', 'Yokufukai Hospital'),
(8819, 6860, 'no_lang_code', 'name', 'Applied System Technologies (United States)'),
(8820, 6861, 'no_lang_code', 'name', 'SaskTel (Canada)'),
(8821, 6862, 'no_lang_code', 'name', '21st Century Medicine (United States)'),
(8822, 6863, 'en', 'name', 'Kyoto Research Park'),
(8823, 6863, 'ja', 'name', 'äŗ¬éƒ½ćƒŖć‚µćƒ¼ćƒćƒ‘ćƒ¼ć‚Æ'),
(8824, 6864, 'en', 'name', 'Society for Academic Emergency Medicine'),
(8825, 6865, 'no_lang_code', 'name', 'Unicon Research (United States)'),
(8826, 6866, 'en', 'name', 'Hartwick College'),
(8827, 6867, 'no_lang_code', 'name', 'Telesensory (United States)'),
(8828, 6868, 'en', 'name', 'Belgian Road Research Centre'),
(8829, 6869, 'es', 'name', 'Administracion de los Servicios de Salud del Estado'),
(8830, 6870, 'no_lang_code', 'name', 'VisionQuest Biomedical (United States)'),
(8831, 6871, 'en', 'name', 'Clark Planetarium'),
(8832, 6872, 'no_lang_code', 'name', 'SVT Associates (United States)'),
(8833, 6873, 'en', 'name', 'Center for Clinical & Basic Research'),
(8834, 6874, 'en', 'name', 'Santa Clara Valley Health and Hospital System'),
(8835, 6875, 'en', 'name', 'Black Women’s Health Imperative'),
(8836, 6876, 'en', 'name', 'Science North'),
(8837, 6877, 'en', 'name', 'European Monitoring Centre for Drugs and Drug Addiction'),
(8838, 6877, 'pt', 'name', 'Observatório Europeu da Droga e da Toxicodependência'),
(8839, 6878, 'en', 'name', 'Chabot Space and Science Center'),
(8840, 6879, 'no_lang_code', 'name', 'MagneSensors (United States)'),
(8841, 6880, 'no_lang_code', 'name', 'Pipehawk (United Kingdom)'),
(8842, 6881, 'en', 'name', 'Indian Institute of Science Education and Research Pune'),
(8843, 6881, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤Ŗą„ą¤£ą„‡'),
(8844, 6882, 'en', 'name', 'Government Dental College & Research Institute'),
(8845, 6883, 'en', 'name', 'Policy Research Associates'),
(8846, 6884, 'en', 'name', 'United States Department of the Treasury'),
(8847, 6884, 'es', 'name', 'Departamento del Tesoro de los Estados Unidos'),
(8848, 6884, 'fr', 'name', 'DĆ©partement du trĆ©sor des Ɖtats-unis'),
(8849, 6885, 'en', 'name', 'Kirkwood Community College'),
(8850, 6886, 'fr', 'name', 'Centre de Recherche et d’Information sur la DĆ©mocratie et l''Autonomie'),
(8851, 6887, 'no_lang_code', 'name', 'Applied Behavioral Research (United States)'),
(8852, 6888, 'no_lang_code', 'name', 'STATegics (United States)'),
(8853, 6889, 'en', 'name', 'Institute of Life Sciences'),
(8854, 6890, 'ja', 'name', 'ćƒ”ćƒ«ć‚Æ'),
(8855, 6890, 'no_lang_code', 'name', 'Merck (Japan)'),
(8856, 6891, 'no_lang_code', 'name', 'Droplet Measurement Technologies (United States)'),
(8857, 6892, 'en', 'name', 'Latino Commission on AIDS'),
(8858, 6892, 'es', 'name', 'La Comisión Latina sobre el SIDA'),
(8859, 6893, 'en', 'name', 'Seminole State College of Florida'),
(8860, 6894, 'en', 'name', 'Iowa Department of Inspections and Appeals'),
(8861, 6895, 'en', 'name', 'Valencia College'),
(8862, 6896, 'fi', 'name', 'Orion Oyj'),
(8863, 6896, 'no_lang_code', 'name', 'Orion Corporation (Finland)'),
(8864, 6897, 'en', 'name', 'Korea Institute of Energy Research'),
(8865, 6898, 'en', 'name', 'Voorhees College'),
(8866, 6899, 'no_lang_code', 'name', 'Kromek (United States)'),
(8867, 6900, 'no_lang_code', 'name', 'Interlab (United States)'),
(8868, 6901, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹ē—…é™¢'),
(8869, 6901, 'no_lang_code', 'name', 'Oita Prefectural Hospital'),
(8870, 6902, 'no_lang_code', 'name', 'Cook General BioTechnology (United States)'),
(8871, 6903, 'no_lang_code', 'name', 'Muprime Technology (Canada)'),
(8872, 6904, 'no_lang_code', 'name', 'Ash Stevens (United States)'),
(8873, 6905, 'en', 'name', 'Singapore National Eye Center'),
(8874, 6906, 'en', 'name', 'Williams LifeSkills'),
(8875, 6907, 'en', 'name', 'Our Lady of Lourdes Hospital'),
(8876, 6907, 'ga', 'name', 'OspidƩal Mhuire Lourdes'),
(8877, 6908, 'en', 'name', 'European Neuroscience Institute Gƶttingen'),
(8878, 6909, 'en', 'name', 'Aquinas Institute of Theology'),
(8879, 6910, 'no_lang_code', 'name', 'Edenspace Systems (United States)'),
(8880, 6911, 'en', 'name', 'Society of General Physiologists'),
(8881, 6912, 'en', 'name', 'Salt Lake Community College'),
(8882, 6913, 'no_lang_code', 'name', 'Springer Nature (New Zealand)'),
(8883, 6914, 'en', 'name', 'Central Rice Research Institute'),
(8884, 6915, 'en', 'name', 'Tianjin Children''s Hospital'),
(8885, 6915, 'zh', 'name', 'å¤©ę“„åø‚å„æē«„åŒ»é™¢'),
(8886, 6916, 'en', 'name', 'Columbia Education'),
(8887, 6917, 'de', 'name', 'Max-Planck-Institut für Evolutionäre Anthropologie'),
(8888, 6917, 'en', 'name', 'Max Planck Institute for Evolutionary Anthropology'),
(8889, 6918, 'no_lang_code', 'name', 'Sasol (South Africa)'),
(8890, 6919, 'no_lang_code', 'name', 'Navigen (United States)'),
(8891, 6920, 'en', 'name', 'Sequoia Foundation'),
(8892, 6921, 'en', 'name', 'Research Institute for Olympic Sports'),
(8893, 6922, 'de', 'name', 'Fraunhofer-Institut für Angewandte Optik und Feinmechanik'),
(8894, 6922, 'en', 'name', 'Fraunhofer Institute for Applied Optics and Precision Engineering'),
(8895, 6923, 'en', 'name', 'National Institute of Indian Medical Heritage'),
(8896, 6923, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø संपदा ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(8897, 6924, 'en', 'name', 'Midwest Eye Institute'),
(8898, 6925, 'es', 'name', 'Centro Hospitalario Pereira Rossell, Hospital Pereira Rossell'),
(8899, 6926, 'en', 'name', 'Marie Curie'),
(8900, 6927, 'en', 'name', 'HIV Netherlands Australia Thailand Research Collaboration'),
(8901, 6928, 'no_lang_code', 'name', 'Enapter (Italy)'),
(8902, 6929, 'no_lang_code', 'name', 'Palladian Partners'),
(8903, 6930, 'no_lang_code', 'name', 'Fresenius Medical Care (United States)'),
(8904, 6931, 'en', 'name', 'Gansu Provincial Hospital'),
(8905, 6931, 'zh', 'name', 'ē”˜č‚ƒēœäŗŗę°‘åŒ»é™¢'),
(8906, 6932, 'en', 'name', 'Santa Fe Community College'),
(8907, 6933, 'en', 'name', 'National Sanitation Foundation International'),
(8908, 6934, 'en', 'name', 'Pakistan Health Research Council'),
(8909, 6934, 'ur', 'name', 'مجلس Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų·ŲØŁŠŲ© في ŲØŲ§ŁƒŲ³ŲŖŲ§Ł†'),
(8910, 6935, 'en', 'name', 'Roskamp Institute'),
(8911, 6936, 'en', 'name', 'National Food Administration'),
(8912, 6937, 'en', 'name', 'AID Atlanta'),
(8913, 6938, 'ro', 'name', 'Institutul Național de Endocrinologie C.I. Parhon'),
(8914, 6939, 'it', 'name', 'Istituto Dermopatico dell''Immacolata'),
(8915, 6940, 'en', 'name', 'Coastal Bend Wellness Foundation'),
(8916, 6941, 'no_lang_code', 'name', 'Novasentis (United States)'),
(8917, 6942, 'no_lang_code', 'name', 'Convergent Manufacturing Technologies (Canada)'),
(8918, 6943, 'en', 'name', 'H. R. MacMillan Space Centre'),
(8919, 6944, 'en', 'name', 'American College of Chest Physicians'),
(8920, 6945, 'no_lang_code', 'name', 'Polysciences (United States)'),
(8921, 6946, 'en', 'name', 'Osaka Rosai Hospital'),
(8922, 6946, 'ja', 'name', 'å¤§é˜ŖåŠ“ē½ē—…é™¢'),
(8923, 6947, 'en', 'name', 'Hokkaido Agricultural Research Center'),
(8924, 6947, 'ja', 'name', 'åŒ—ęµ·é“č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(8925, 6948, 'es', 'name', 'Asociación Civil Impacta Salud y Educación'),
(8926, 6949, 'en', 'name', 'Russell Sage College'),
(8927, 6950, 'no_lang_code', 'name', 'Omneuron (United States)'),
(8928, 6951, 'no_lang_code', 'name', 'Southeast TechInventures (United States)'),
(8929, 6952, 'en', 'name', 'China Rehabilitation Research Center'),
(8930, 6953, 'en', 'name', 'Institute of Human Behaviour and Allied Sciences'),
(8931, 6954, 'it', 'name', 'Istituto Ortopedico Gaetano Pini'),
(8932, 6955, 'en', 'name', 'House Clinic'),
(8933, 6956, 'en', 'name', 'American Medical Informatics Association'),
(8934, 6957, 'en', 'name', 'Center for Telepsychology'),
(8935, 6958, 'no_lang_code', 'name', 'Mo Sci Corporation (United States)'),
(8936, 6959, 'no_lang_code', 'name', 'GLC Biotechnology (United States)'),
(8937, 6960, 'en', 'name', 'Woodland Hills Medical Center'),
(8938, 6961, 'de', 'name', 'Fraunhofer Institut für Toxikologie und Experimentelle Medizin'),
(8939, 6961, 'en', 'name', 'Fraunhofer Institute for Toxicology and Experimental Medicine'),
(8940, 6962, 'en', 'name', 'Howard Community College'),
(8941, 6963, 'no_lang_code', 'name', 'Martec (Canada)'),
(8942, 6964, 'de', 'name', 'Leibniz-Institut für Präventionsforschung und Epidemiologie - BIPS'),
(8943, 6964, 'en', 'name', 'Leibniz Institute for Prevention Research and Epidemiology - BIPS'),
(8944, 6965, 'en', 'name', 'Northwest Indian College'),
(8945, 6966, 'en', 'name', 'Associated Skin Care Specialists'),
(8946, 6967, 'en', 'name', 'Northeastern Oklahoma A&M College'),
(8947, 6968, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š±ŠøŠ¾Š»Š¾Š³ŠøŃ Šø ŠøŠ¼ŃƒŠ½Š¾Š»Š¾Š³ŠøŃ на размножаването'),
(8948, 6968, 'en', 'name', 'Institute of Biology and Immunology of Reproduction'),
(8949, 6969, 'en', 'name', 'National Public Radio'),
(8950, 6970, 'en', 'name', 'St. Joseph’s University Medical Center'),
(8951, 6971, 'en', 'name', 'Community Rehabilitation Center'),
(8952, 6972, 'en', 'name', 'Collaborative Research Group'),
(8953, 6973, 'no_lang_code', 'name', 'Proto Corporation (United States)'),
(8954, 6974, 'en', 'name', 'Osaka Occupational Health Research Center'),
(8955, 6974, 'ja', 'name', 'å¤§é˜ŖåŠ“åƒč”›ē”Ÿē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(8956, 6975, 'fr', 'name', 'Centre Hospitalier de Tourcoing'),
(8957, 6976, 'en', 'name', 'Defense Advanced Research Projects Agency'),
(8958, 6977, 'en', 'name', 'Department of Services for Children Youth and their Families'),
(8959, 6978, 'de', 'name', 'OrthopƤdisches Spital Speising'),
(8960, 6978, 'en', 'name', 'Orthopaedic Hospital Speising'),
(8961, 6979, 'fr', 'name', 'HƓpital Militaire Avicenne'),
(8962, 6980, 'no_lang_code', 'name', 'Watershed'),
(8963, 6981, 'en', 'name', 'Tianjin First Center Hospital'),
(8964, 6981, 'zh', 'name', 'å¤©ę“„åø‚ē¬¬äø€äø­åæƒåŒ»é™¢'),
(8965, 6982, 'ja', 'name', 'ēŽ‹å­ē·åˆē—…é™¢'),
(8966, 6982, 'no_lang_code', 'name', 'Oji General Hospital'),
(8967, 6983, 'en', 'name', 'My Brother''s Keeper'),
(8968, 6984, 'en', 'name', 'St. Joseph''s Hospital'),
(8969, 6985, 'sv', 'name', 'Uddevalla sjukhus'),
(8970, 6986, 'no_lang_code', 'name', 'IMRIS (Canada)'),
(8971, 6987, 'no_lang_code', 'name', 'Polestar Technologies (United States)'),
(8972, 6988, 'en', 'name', 'Thames Valley Children''s Centre'),
(8973, 6989, 'en', 'name', 'Wollongong Hospital'),
(8974, 6990, 'no_lang_code', 'name', 'CCS Associates (United States)'),
(8975, 6991, 'no_lang_code', 'name', 'Virginia Technologies (United States)'),
(8976, 6992, 'no_lang_code', 'name', 'Transgene (France)'),
(8977, 6993, 'en', 'name', 'GF Strong Rehabilitation Centre'),
(8978, 6994, 'en', 'name', 'Sound Health Options'),
(8979, 6995, 'no_lang_code', 'name', 'Baxter (United States)'),
(8980, 6996, 'no_lang_code', 'name', 'Consad (United States)'),
(8981, 6997, 'en', 'name', 'Yokkaichi Social Insurance Hospital'),
(8982, 6997, 'ja', 'name', 'å››ę—„åø‚ē¾½ę“„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(8983, 6998, 'en', 'name', 'Institute for Social Security and Services for State Workers'),
(8984, 6998, 'es', 'name', 'Instituto de Seguridad y Servicios Sociales de los Trabajadores del Estado'),
(8985, 6999, 'en', 'name', 'Henry Ford College'),
(8986, 7000, 'it', 'name', 'Centro San Giovanni di Dio Fatebenefratelli'),
(8987, 7001, 'en', 'name', 'Psychological Health Associates'),
(8988, 7002, 'no_lang_code', 'name', 'SeraCare Life Sciences (United States)'),
(8989, 7003, 'no_lang_code', 'name', 'TDIC (United States)'),
(8990, 7004, 'en', 'name', 'National Museum of Ancient Art'),
(8991, 7004, 'pt', 'name', 'Museu Nacional de Arte Antiga'),
(8992, 7005, 'en', 'name', 'National Council for Science and the Environment'),
(8993, 7006, 'no_lang_code', 'name', 'Minerva Biotechnologies (United States)'),
(8994, 7007, 'en', 'name', 'Electric Power Research Institute'),
(8995, 7008, 'en', 'name', 'Stepping Hill Hospital'),
(8996, 7009, 'no_lang_code', 'name', 'Element Six (United Kingdom)'),
(8997, 7010, 'en', 'name', 'New York Heart Research Foundation'),
(8998, 7011, 'sr', 'name', 'Institut za Zdravstvenu Zastitu Majke i Deteta'),
(8999, 7012, 'en', 'name', 'Amrith Educational and Cultural Society'),
(9000, 7013, 'en', 'name', 'Del Mar College'),
(9001, 7014, 'no_lang_code', 'name', 'Corning (France)'),
(9002, 7015, 'en', 'name', 'Kettering Foundation'),
(9003, 7016, 'en', 'name', 'Glendale Community College'),
(9004, 7017, 'en', 'name', 'Don Carlo Gnocchi Foundation'),
(9005, 7018, 'en', 'name', 'American Cancer Society'),
(9006, 7019, 'de', 'name', 'Barmherzige Brüder Klinikum St. Elisabeth in Straubing'),
(9007, 7020, 'en', 'name', 'Oncology Nursing Society'),
(9008, 7021, 'en', 'name', 'Mount Mercy University'),
(9009, 7022, 'no_lang_code', 'name', 'Galen Research (United Kingdom)'),
(9010, 7023, 'no_lang_code', 'name', 'Inframat Corporation (United States)'),
(9011, 7024, 'en', 'name', 'Ontario AIDS Network'),
(9012, 7025, 'no_lang_code', 'name', 'Ligand Pharmaceuticals (United States)'),
(9013, 7026, 'no_lang_code', 'name', 'GT Urological (United States)'),
(9014, 7027, 'no_lang_code', 'name', 'BioFormatix (United States)'),
(9015, 7028, 'en', 'name', 'MUJHU Research Collaboration'),
(9016, 7029, 'en', 'name', 'Mendez National Institute of Transplantation'),
(9017, 7030, 'en', 'name', 'North Central College'),
(9018, 7031, 'ar', 'name', 'مستؓفى زايد Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠ'),
(9019, 7031, 'en', 'name', 'Zayed Military Hospital'),
(9020, 7032, 'en', 'name', 'Mercy Medical Center'),
(9021, 7033, 'en', 'name', 'EuroEspes Biomedical Research Center'),
(9022, 7034, 'fr', 'name', 'Cegep Edouard Montpetit, CollĆØge Ɖdouard-Montpetit'),
(9023, 7035, 'en', 'name', 'Center for Renewable Energy Sources and Saving'),
(9024, 7036, 'no_lang_code', 'name', 'Royan Institute'),
(9025, 7037, 'en', 'name', 'Wartburg College'),
(9026, 7038, 'en', 'name', 'Uijeongbu St. Mary''s Hospital'),
(9027, 7039, 'no_lang_code', 'name', 'Amgen (Germany)'),
(9028, 7040, 'en', 'name', 'Fertility Medical Group'),
(9029, 7041, 'no_lang_code', 'name', 'OG Technologies (United States)'),
(9030, 7042, 'en', 'name', 'Adrian College'),
(9031, 7043, 'no_lang_code', 'name', 'Luminex (Canada)'),
(9032, 7044, 'no_lang_code', 'name', 'CleverSys (United States)'),
(9033, 7045, 'en', 'name', 'Webb Institute'),
(9034, 7046, 'no_lang_code', 'name', 'Blue Spurs (Canada)'),
(9035, 7047, 'en', 'name', 'Coastline Community College'),
(9036, 7048, 'no_lang_code', 'name', 'Regeneron (United States)'),
(9037, 7049, 'en', 'name', 'Tamworth Hospital'),
(9038, 7050, 'en', 'name', 'Presentation College'),
(9039, 7051, 'en', 'name', 'Transitional Learning Center'),
(9040, 7052, 'de', 'name', 'Deutsches Primatenzentrum'),
(9041, 7052, 'en', 'name', 'German Primate Center'),
(9042, 7053, 'en', 'name', 'Randolph College'),
(9043, 7054, 'en', 'name', 'Shanghai Research Center for Acupuncture and Meridians'),
(9044, 7054, 'zh', 'name', 'äøŠęµ·åø‚é’ˆēøē»ē»œē ”ē©¶äø­åæƒ'),
(9045, 7055, 'no_lang_code', 'name', 'Fluorous Technologies (United States)'),
(9046, 7056, 'no_lang_code', 'name', 'Degenkolb (United States)'),
(9047, 7057, 'en', 'name', 'National Nutrition and Food Technology Research Institute'),
(9048, 7058, 'no_lang_code', 'name', 'Endres Machining Innovations (United States)'),
(9049, 7059, 'no_lang_code', 'name', 'X-ray Instrumentation Associates (United States)'),
(9050, 7060, 'no_lang_code', 'name', 'Delcam (United Kingdom)'),
(9051, 7061, 'no_lang_code', 'name', 'Affinity Water (United Kingdom)'),
(9052, 7062, 'en', 'name', 'Wangjing Hospital of China Academy of Chinese Medical Sciences'),
(9053, 7062, 'zh', 'name', 'äø­å›½äø­åŒ»ē§‘å­¦é™¢ęœ›äŗ¬åŒ»é™¢'),
(9054, 7063, 'en', 'name', 'Kentucky Wesleyan College'),
(9055, 7064, 'no_lang_code', 'name', 'FoodChek Systems (Canada)'),
(9056, 7065, 'it', 'name', 'CTO Andrea Alesini'),
(9057, 7066, 'en', 'name', 'UK Biobank'),
(9058, 7067, 'en', 'name', 'Tung Wah Eastern Hospital'),
(9059, 7067, 'zh', 'name', 'ę±čÆę±é™¢'),
(9060, 7068, 'no_lang_code', 'name', 'Organisation de Coordination pour la lutte contre les EndƩmies en Afrique Centrale'),
(9061, 7069, 'en', 'name', 'Heritage Foundation'),
(9062, 7070, 'en', 'name', 'Discovery Centre'),
(9063, 7071, 'no_lang_code', 'name', 'Curis (United States)'),
(9064, 7072, 'en', 'name', 'Global Neuroscience Initiative Foundation'),
(9065, 7073, 'es', 'name', 'Instituto Zaldivar'),
(9066, 7074, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (United Kingdom)'),
(9067, 7075, 'en', 'name', 'Community Based Research Centre'),
(9068, 7076, 'el', 'name', 'Ī©ĪĪ‘Ī£Ī•Ī™ĪŸ ĪšĪ‘Ī”Ī”Ī™ĪŸĪ§Ī•Ī™Ī”ĪŸĪ„Ī”Ī“Ī™ĪšĪŸ ĪšĪ•ĪĪ¤Ī”ĪŸ'),
(9069, 7076, 'en', 'name', 'Onassis Cardiac Surgery Center'),
(9070, 7077, 'en', 'name', 'Saint Joseph''s College of Maine'),
(9071, 7078, 'en', 'name', 'Royal Society of Medicine'),
(9072, 7079, 'no_lang_code', 'name', 'DCS Corporation (United States)'),
(9073, 7080, 'ja', 'name', '擄山中央病院'),
(9074, 7080, 'no_lang_code', 'name', 'Tsuyama Chuo Hospital'),
(9075, 7081, 'en', 'name', 'Ofwat'),
(9076, 7082, 'en', 'name', 'Shriners Hospitals for Children - Erie'),
(9077, 7083, 'no_lang_code', 'name', 'Optra (United States)'),
(9078, 7084, 'en', 'name', 'Thai Red Cross Society'),
(9079, 7085, 'no_lang_code', 'name', 'Medigen (United States)'),
(9080, 7086, 'no_lang_code', 'name', 'Koester Performance Research (United States)'),
(9081, 7087, 'no_lang_code', 'name', 'Tissue Genesis (United States)'),
(9082, 7088, 'no_lang_code', 'name', 'M-Solv (United Kingdom)'),
(9083, 7089, 'no_lang_code', 'name', 'Aecom (United States)'),
(9084, 7090, 'hu', 'name', 'Toldy Ferenc KórhÔz'),
(9085, 7091, 'en', 'name', 'American Dental Education Association'),
(9086, 7092, 'en', 'name', 'Everett Community College'),
(9087, 7093, 'no_lang_code', 'name', 'bioMƩrieux (United States)'),
(9088, 7094, 'no_lang_code', 'name', 'Laing O''Rourke (United Kingdom)'),
(9089, 7095, 'en', 'name', 'St. Anthony Hospital'),
(9090, 7096, 'en', 'name', 'Association of State Supervisors of Mathematics'),
(9091, 7097, 'no_lang_code', 'name', 'Mohawk Innovative Technology (United States)'),
(9092, 7098, 'en', 'name', 'Brain Trauma Foundation'),
(9093, 7099, 'fr', 'name', 'Centre National Hospitalier et Universitaire Hubert Koutoukou MAGA'),
(9094, 7100, 'no_lang_code', 'name', 'Spencer Technologies (United States)'),
(9095, 7101, 'de', 'name', 'Max-Planck-Institut für Hirnforschung'),
(9096, 7101, 'en', 'name', 'Max Planck Institute for Brain Research'),
(9097, 7102, 'en', 'name', 'Monterey County Health Department'),
(9098, 7103, 'en', 'name', 'Contra Costa Health Services'),
(9099, 7104, 'en', 'name', 'American College of Medical Genetics'),
(9100, 7105, 'en', 'name', 'St. Luke''s Medical Center'),
(9101, 7106, 'nl', 'name', 'Vincent Van Gogh Voor Geestelijke Gezondheidszorg'),
(9102, 7107, 'en', 'name', 'Okayama Red Cross General Hospital'),
(9103, 7107, 'ja', 'name', 'å²”å±±čµ¤åå­—ē—…é™¢'),
(9104, 7108, 'no_lang_code', 'name', 'Crinetics Pharmaceuticals (United States)'),
(9105, 7109, 'en', 'name', 'Georgia Department of Community Health'),
(9106, 7110, 'no_lang_code', 'name', 'Educational Film Center (United States)'),
(9107, 7111, 'en', 'name', 'AARP'),
(9108, 7112, 'en', 'name', 'United Hospital'),
(9109, 7113, 'no_lang_code', 'name', 'NewsHour Productions (United States)'),
(9110, 7114, 'ja', 'name', 'ć‚µćƒƒćƒćƒ­ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(9111, 7114, 'no_lang_code', 'name', 'Sapporo Holdings (Japan)'),
(9112, 7115, 'en', 'name', 'Dumfries and Galloway Royal Infirmary'),
(9113, 7116, 'no_lang_code', 'name', 'Covance (United States)'),
(9114, 7117, 'no_lang_code', 'name', 'American Superconductor (United States)'),
(9115, 7118, 'no_lang_code', 'name', 'Medtronic (Netherlands)'),
(9116, 7119, 'en', 'name', 'Center for Environment and Development for the Arab Region and Europe'),
(9117, 7120, 'no_lang_code', 'name', 'MRF Geosystems (Canada)'),
(9118, 7121, 'en', 'name', 'National Institute of Health'),
(9119, 7121, 'it', 'name', 'Istituto Superiore di SanitĆ '),
(9120, 7122, 'no_lang_code', 'name', 'A4F-Algafuel (Portugal)'),
(9121, 7123, 'no_lang_code', 'name', 'Creatv MicroTech (United States)'),
(9122, 7124, 'en', 'name', 'Princeton Baptist Medical Center'),
(9123, 7125, 'en', 'name', 'Clinical Trial Investigators'),
(9124, 7126, 'en', 'name', 'Central Veterinary Research Laboratory'),
(9125, 7127, 'no_lang_code', 'name', 'Prentke Romich Company (United States)'),
(9126, 7128, 'en', 'name', 'AIDS and Clinical Immunology Research Center'),
(9127, 7129, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ صنعت نفت'),
(9128, 7129, 'no_lang_code', 'name', 'National Iranian Oil Company (Iran)'),
(9129, 7130, 'en', 'name', 'Vivekananda Institute of Medical Sciences'),
(9130, 7131, 'en', 'name', 'Institute of Dermatology'),
(9131, 7131, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ą¹‚ąø£ąø„ąøœąø“ąø§ąø«ąø™ąø±ąø‡'),
(9132, 7132, 'no_lang_code', 'name', 'FONA International (Canada)'),
(9133, 7133, 'en', 'name', 'Woodend Hospital'),
(9134, 7134, 'en', 'name', 'Immunization Action Coalition'),
(9135, 7135, 'en', 'name', 'Connecticut Pre Engineering Program'),
(9136, 7136, 'en', 'name', 'Corporation for National Research Initiatives'),
(9137, 7137, 'el', 'name', 'ĪœĻ€ĪµĪ½Ī¬ĪŗĪµĪ¹Īæ Ī¦Ļ…Ļ„ĪæĻ€Ī±ĪøĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ'),
(9138, 7137, 'en', 'name', 'Benaki Phytopathological Institute'),
(9139, 7138, 'en', 'name', 'Broward College'),
(9140, 7139, 'en', 'name', 'Ministry of Foreign Affairs and International Cooperation'),
(9141, 7139, 'it', 'name', 'Ministero degli Affari Esteri'),
(9142, 7140, 'en', 'name', 'Department of Agriculture and Food Western Australia'),
(9143, 7141, 'en', 'name', 'Centre for Chronic Disease Control'),
(9144, 7142, 'fr', 'name', 'Cegep regional de Lanaudiere, Cégep Régional de Lanaudière'),
(9145, 7143, 'no_lang_code', 'name', 'Sinmat (United States)'),
(9146, 7144, 'no_lang_code', 'name', 'Takara (United States)'),
(9147, 7145, 'no_lang_code', 'name', 'Policy Analysis (United States)'),
(9148, 7146, 'no_lang_code', 'name', 'Ondine Biopharma (United States)'),
(9149, 7147, 'en', 'name', 'National Institute on Alcohol Abuse and Alcoholism'),
(9150, 7148, 'en', 'name', 'Institute of Human Genetics'),
(9151, 7148, 'pl', 'name', 'Instytutu Genetyki Człowieka PAN'),
(9152, 7149, 'en', 'name', 'Academy of Scientific Research and Technology'),
(9153, 7150, 'en', 'name', 'Matrix Institute on Addictions'),
(9154, 7151, 'no_lang_code', 'name', 'BioDetection Instruments (United States)'),
(9155, 7152, 'en', 'name', 'PRA Health Sciences'),
(9156, 7153, 'no_lang_code', 'name', 'Analiza (United States)'),
(9157, 7154, 'en', 'name', 'Saskatchewan Seniors Mechanism'),
(9158, 7155, 'en', 'name', 'Blackfeet Community College'),
(9159, 7156, 'en', 'name', 'American Academy of Family Physicians'),
(9160, 7157, 'no_lang_code', 'name', 'United Environment and Energy (United States)'),
(9161, 7158, 'en', 'name', 'National Institute of Oncology'),
(9162, 7159, 'en', 'name', 'United Tribes Technical College'),
(9163, 7160, 'en', 'name', 'Central Leather Research Institute'),
(9164, 7161, 'no_lang_code', 'name', 'Telesage (United States)'),
(9165, 7162, 'fr', 'name', 'Château Gombert'),
(9166, 7163, 'en', 'name', 'Computer History Museum'),
(9167, 7164, 'no_lang_code', 'name', 'Hartley & Associates'),
(9168, 7165, 'en', 'name', 'European School of Oncology'),
(9169, 7166, 'no_lang_code', 'name', 'Certara (United States)'),
(9170, 7167, 'en', 'name', 'Zhejiang Hospital'),
(9171, 7167, 'zh', 'name', 'ęµ™ę±ŸåŒ»é™¢'),
(9172, 7168, 'en', 'name', 'Diabetes Care Center'),
(9173, 7169, 'no_lang_code', 'name', 'Prodrive (United Kingdom)'),
(9174, 7170, 'en', 'name', 'Centenary College of Louisiana'),
(9175, 7171, 'no_lang_code', 'name', 'Concepts NREC (United States)'),
(9176, 7172, 'no_lang_code', 'name', 'EEI Communications (United States)'),
(9177, 7173, 'en', 'name', 'European Committee of Professional Diving Instructors'),
(9178, 7173, 'fr', 'name', 'ComitƩ EuropƩen des Instructeurs de PlongƩe Professionnels'),
(9179, 7174, 'en', 'name', 'Navajo Nation Division of Health'),
(9180, 7175, 'fr', 'name', 'Cegep de La Pocatiere, Cégep de la pocatière'),
(9181, 7176, 'no_lang_code', 'name', 'CytRx (United States)'),
(9182, 7177, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä½å‹ē—…é™¢'),
(9183, 7177, 'no_lang_code', 'name', 'Sumitomo Hospital'),
(9184, 7178, 'fr', 'name', 'Fondation Ophtalmologique Adolphe de Rothschild'),
(9185, 7179, 'en', 'name', 'National Center for Biotechnology Information'),
(9186, 7180, 'no_lang_code', 'name', 'Digital Payment Technologies (Canada)'),
(9187, 7181, 'en', 'name', 'Critical Path Institute'),
(9188, 7182, 'no_lang_code', 'name', 'Fermalogic (United States)'),
(9189, 7183, 'en', 'name', 'Wiley College'),
(9190, 7184, 'en', 'name', 'Zhujiang Hospital'),
(9191, 7185, 'en', 'name', 'Turtle Mountain Community College'),
(9192, 7186, 'no_lang_code', 'name', 'Applied Thin Films (United States)'),
(9193, 7187, 'en', 'name', 'Framingham State University'),
(9194, 7187, 'fr', 'name', 'UniversitĆ© d''Ɖtat de framingham'),
(9195, 7188, 'en', 'name', 'Daejeon Sun Hospital'),
(9196, 7188, 'ko', 'name', 'ėŒ€ģ „ģ„ ė³‘ģ›'),
(9197, 7189, 'en', 'name', 'National Institute of Neurology Mongi-Ben Hamida'),
(9198, 7189, 'fr', 'name', 'Institut National de Neurologie Mongi-Ben Hamida'),
(9199, 7190, 'no_lang_code', 'name', 'Parirenyatwa Hospital'),
(9200, 7191, 'en', 'name', 'Association VinƧotte Nuclear, Nuclear Safety Institute'),
(9201, 7192, 'it', 'name', 'Consorzio per la Ricerca e l''Educazione Permanente'),
(9202, 7193, 'no_lang_code', 'name', 'Xemed (United States)'),
(9203, 7194, 'no_lang_code', 'name', 'Bioanalytical Systems (United States)'),
(9204, 7195, 'en', 'name', 'Canadian Association of Psychosocial Oncology'),
(9205, 7196, 'no_lang_code', 'name', 'Junk King (United States)'),
(9206, 7197, 'no_lang_code', 'name', 'SRA International (United States)'),
(9207, 7198, 'no_lang_code', 'name', 'Pearson (United States)'),
(9208, 7199, 'en', 'name', 'Lady of Mercy Medical Center'),
(9209, 7200, 'no_lang_code', 'name', 'Innovative Chemical and Environmental Technologies (United States)'),
(9210, 7201, 'en', 'name', 'Pittsburgh Public Schools'),
(9211, 7202, 'en', 'name', 'DHHS Alliance'),
(9212, 7203, 'en', 'name', 'Hull Royal Infirmary'),
(9213, 7204, 'en', 'name', 'Institute of Problems of Chemical Physics'),
(9214, 7204, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем химической физики'),
(9215, 7205, 'en', 'name', 'Air & Waste Management Association'),
(9216, 7206, 'en', 'name', 'City Eye Centre'),
(9217, 7207, 'es', 'name', 'Instituto Venezolano de Investigaciones CientĆ­ficas'),
(9218, 7208, 'en', 'name', 'Wycombe General Hospital'),
(9219, 7209, 'en', 'name', 'American Society of Hematology'),
(9220, 7210, 'en', 'name', 'American International College'),
(9221, 7211, 'no_lang_code', 'name', 'Simulations Plus (United States)'),
(9222, 7212, 'en', 'name', 'DGA Partners'),
(9223, 7213, 'no_lang_code', 'name', 'Insilicos (United States)'),
(9224, 7214, 'en', 'name', 'Mount Wachusett Community College'),
(9225, 7215, 'fr', 'name', 'CƩgep de l''Abitibi TƩmiscamingue, CƩgep de l''abitibi-tƩmiscamingue'),
(9226, 7216, 'en', 'name', 'National Vital Statistics System'),
(9227, 7217, 'no_lang_code', 'name', 'Actian (United States)'),
(9228, 7218, 'de', 'name', 'Klinikum Lippe'),
(9229, 7219, 'no_lang_code', 'name', 'Affinergy (United States)'),
(9230, 7220, 'no_lang_code', 'name', 'HBP (United States)'),
(9231, 7221, 'no_lang_code', 'name', 'BioSense (United States)'),
(9232, 7222, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ тепло- Šø массообмена имени А.Š’. Лыкова ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(9233, 7222, 'en', 'name', 'A.V. Luikov Heat and Mass Transfer Institute'),
(9234, 7223, 'no_lang_code', 'name', 'Aridis Pharmaceuticals (United States)'),
(9235, 7224, 'en', 'name', 'Theda Clark Medical Center'),
(9236, 7225, 'en', 'name', 'Hastings Center'),
(9237, 7226, 'en', 'name', 'Aliviane'),
(9238, 7227, 'en', 'name', 'American Foundation for Donation and Transplantation'),
(9239, 7228, 'en', 'name', 'Texas State Technical College Waco'),
(9240, 7229, 'no_lang_code', 'name', 'AntiCancer (United States)'),
(9241, 7230, 'en', 'name', 'Holon Institute of Technology'),
(9242, 7231, 'en', 'name', 'National Action Council for Minorities in Engineering'),
(9243, 7232, 'fr', 'name', 'Groupe Hospitalier du Havre'),
(9244, 7233, 'fr', 'name', 'Centre Jean Perrin'),
(9245, 7234, 'no_lang_code', 'name', 'DxRay (United States)'),
(9246, 7235, 'no_lang_code', 'name', 'Sensor Research and Development Corporation (United States)'),
(9247, 7236, 'en', 'name', 'Taos Orthopaedic Institute'),
(9248, 7237, 'en', 'name', 'Environmental Mutagenesis and Genomics Society'),
(9249, 7238, 'en', 'name', 'Cooperative Research Centre for Tissue Growth and Repair'),
(9250, 7239, 'en', 'name', 'Aberdeen Royal Infirmary'),
(9251, 7240, 'en', 'name', 'Peterborough City Hospital'),
(9252, 7241, 'no_lang_code', 'name', 'Akina (United States)'),
(9253, 7242, 'en', 'name', 'Diablo Valley College'),
(9254, 7243, 'en', 'name', 'Kobe City College of Technology'),
(9255, 7243, 'ja', 'name', 'ē„žęˆøåø‚ē«‹å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(9256, 7244, 'no_lang_code', 'name', 'Real Time Analyzers (United States)'),
(9257, 7245, 'en', 'name', 'Royal Institution of Chartered Surveyors'),
(9258, 7246, 'no_lang_code', 'name', 'Gold Standard Simulations (United Kingdom)'),
(9259, 7247, 'no_lang_code', 'name', 'Tornado Spectral Systems (Canada)'),
(9260, 7248, 'ro', 'name', 'Institutul Cantacuzino'),
(9261, 7249, 'no_lang_code', 'name', 'AiCure (United States)'),
(9262, 7250, 'en', 'name', 'Connecticut Department of Children and Families'),
(9263, 7251, 'en', 'name', 'Iowa Lakes Community College'),
(9264, 7252, 'no_lang_code', 'name', 'Immersion (United States)'),
(9265, 7253, 'en', 'name', 'Mason Parks & Recreation Foundation'),
(9266, 7254, 'no_lang_code', 'name', 'Natus (United States)'),
(9267, 7255, 'en', 'name', 'North Jersey Community Research Initiative'),
(9268, 7256, 'en', 'name', 'JMI Laboratories'),
(9269, 7257, 'en', 'name', 'Confederation of European Forest Owners'),
(9270, 7258, 'en', 'name', 'The Eastman Institute'),
(9271, 7258, 'sv', 'name', 'Eastmaninstitutet'),
(9272, 7259, 'no_lang_code', 'name', 'FJE Enterprises (United States)'),
(9273, 7260, 'it', 'name', 'Ospedale Sant''Orsola di Brescia'),
(9274, 7261, 'no_lang_code', 'name', 'Vista Scientific (United States)'),
(9275, 7262, 'no_lang_code', 'name', 'Intel (Ireland)'),
(9276, 7263, 'no_lang_code', 'name', 'Qiagen (Germany)'),
(9277, 7264, 'no_lang_code', 'name', 'Loccioni (Italy)'),
(9278, 7265, 'no_lang_code', 'name', 'Wright Medical Technology (United States)'),
(9279, 7266, 'en', 'name', 'Max Planck Florida Institute for Neuroscience'),
(9280, 7267, 'no_lang_code', 'name', 'Platypus Technologies (United States)'),
(9281, 7268, 'en', 'name', 'Emmanuel College - Massachusetts'),
(9282, 7269, 'en', 'name', 'Overseas Development Institute'),
(9283, 7270, 'en', 'name', 'Moraine Valley Community College'),
(9284, 7271, 'no_lang_code', 'name', 'Apath (United States)'),
(9285, 7272, 'en', 'name', 'Alaska Department of Fish and Game'),
(9286, 7273, 'en', 'name', 'NatureServe'),
(9287, 7274, 'en', 'name', 'Press Ganey'),
(9288, 7275, 'no_lang_code', 'name', 'Uken (Canada)'),
(9289, 7276, 'en', 'name', 'St Vincent''s Clinic'),
(9290, 7277, 'no_lang_code', 'name', 'Glyndwr Innovations (United Kingdom)'),
(9291, 7278, 'no_lang_code', 'name', 'Wright Materials Research (United States)'),
(9292, 7279, 'no_lang_code', 'name', 'D. E. Shaw Research'),
(9293, 7280, 'en', 'name', 'Sunderland Royal Hospital'),
(9294, 7281, 'en', 'name', 'Varberg Hospital'),
(9295, 7281, 'sv', 'name', 'Hallands Sjukhus Varberg'),
(9296, 7282, 'en', 'name', 'Eastern Oklahoma State College'),
(9297, 7283, 'no_lang_code', 'name', 'Nokia (Portugal)'),
(9298, 7284, 'no_lang_code', 'name', 'VenatoRx Pharmaceuticals (United States)'),
(9299, 7285, 'no_lang_code', 'name', 'HemoShear (United States)'),
(9300, 7286, 'no_lang_code', 'name', 'DeltaQuest Foundation (United States)'),
(9301, 7287, 'en', 'name', 'Spinal Diagnostics and Treatment Center'),
(9302, 7288, 'no_lang_code', 'name', 'Dawkins Productions (United States)'),
(9303, 7289, 'en', 'name', 'Regional Hospital of Bellinzona and Valleys'),
(9304, 7289, 'it', 'name', 'Ospedale Regionale di Bellinzona e Valli'),
(9305, 7290, 'en', 'name', 'Valley Breast Care & Woman''s Health Center'),
(9306, 7291, 'en', 'name', 'Waynesburg University'),
(9307, 7292, 'no_lang_code', 'name', 'Active Motif (United States)'),
(9308, 7293, 'en', 'name', 'Inova Children''s Hospital'),
(9309, 7294, 'no_lang_code', 'name', 'Applied Human Factors (United States)'),
(9310, 7295, 'en', 'name', 'Institute of Materials Research and Engineering'),
(9311, 7296, 'no_lang_code', 'name', 'AFC Energy (United Kingdom)'),
(9312, 7297, 'no_lang_code', 'name', 'SynZyme Technologies (United States)'),
(9313, 7298, 'en', 'name', 'California Family Health Council'),
(9314, 7299, 'no_lang_code', 'name', 'Wicab (United States)'),
(9315, 7300, 'en', 'name', 'Western Consortium for Public Health'),
(9316, 7301, 'en', 'name', 'Podiatry Institute'),
(9317, 7302, 'no_lang_code', 'name', 'Oxonica (United Kingdom)'),
(9318, 7303, 'en', 'name', 'Trafford General Hospital'),
(9319, 7304, 'en', 'name', 'National Institute for Women in Trades, Technology & Sciences'),
(9320, 7305, 'no_lang_code', 'name', 'Membrane Reactor Technologies (Canada)'),
(9321, 7306, 'en', 'name', 'St. Charles Medical Center'),
(9322, 7307, 'en', 'name', 'Victoria Hospital'),
(9323, 7308, 'en', 'name', 'National Acoustic Laboratories'),
(9324, 7309, 'en', 'name', 'Pain Management Center of Paducah'),
(9325, 7310, 'no_lang_code', 'name', 'Manhattan Scientifics (United States)'),
(9326, 7311, 'no_lang_code', 'name', 'ArmaGen (United States)'),
(9327, 7312, 'en', 'name', 'New England College of Optometry'),
(9328, 7313, 'en', 'name', 'Burdenko Neurosurgery Institute'),
(9329, 7313, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ автономное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø имени акаГемика Š.Š. Š‘ŃƒŃ€Š“ŠµŠ½ŠŗŠ¾ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(9330, 7314, 'en', 'name', 'Palm Beach State College'),
(9331, 7315, 'en', 'name', 'Rust College'),
(9332, 7316, 'no_lang_code', 'name', 'Photozig (United States)'),
(9333, 7317, 'en', 'name', 'Connecticut Agricultural Experiment Station'),
(9334, 7318, 'no_lang_code', 'name', 'Minnetronix (United States)'),
(9335, 7319, 'en', 'name', 'City of Edinburgh Council'),
(9336, 7320, 'en', 'name', 'Peninsula Regional Medical Center'),
(9337, 7321, 'en', 'name', 'Centerforce'),
(9338, 7322, 'en', 'name', 'Dartmouth Psychiatric Research Center'),
(9339, 7323, 'no_lang_code', 'name', 'Mirna Therapeutics (United States)'),
(9340, 7324, 'no_lang_code', 'name', 'Corning (United States)'),
(9341, 7325, 'en', 'name', 'Allegany College of Maryland'),
(9342, 7326, 'no_lang_code', 'name', 'Danaher (United States)'),
(9343, 7327, 'en', 'name', 'National Eisteddfod of Wales'),
(9344, 7328, 'it', 'name', 'Fondazione Ospedale Salesi'),
(9345, 7329, 'no_lang_code', 'name', 'En''Urga (United States)'),
(9346, 7330, 'no_lang_code', 'name', 'International Severity Information Systems (United States)'),
(9347, 7331, 'en', 'name', 'William Harvey Hospital'),
(9348, 7332, 'ca', 'name', 'Institut Municipal d''AssistĆØncia SanitĆ ria'),
(9349, 7333, 'no_lang_code', 'name', 'Agilent Technologies (United States)'),
(9350, 7334, 'en', 'name', 'National Association of Biology Teachers'),
(9351, 7335, 'no_lang_code', 'name', 'Plantvax (United States)'),
(9352, 7336, 'no_lang_code', 'name', 'Chem-Space Associates (United States)'),
(9353, 7337, 'en', 'name', 'West Suffolk Hospital'),
(9354, 7338, 'no_lang_code', 'name', 'dbaza health (United States)'),
(9355, 7339, 'en', 'name', 'Electrical and Computer Engineering Department Heads Association'),
(9356, 7340, 'en', 'name', 'Piedmont Virginia Community College'),
(9357, 7341, 'en', 'name', 'Aerospace Valley'),
(9358, 7342, 'de', 'name', 'Leibniz-Institut DSMZ-Deutsche Sammlung von Mikroorganismen und Zellkulturen'),
(9359, 7342, 'en', 'name', 'Leibniz Institute DSMZ – German Collection of Microorganisms and Cell Cultures'),
(9360, 7343, 'no_lang_code', 'name', 'Aston Martin Lagonda (United Kingdom)'),
(9361, 7344, 'en', 'name', 'All Africa Leprosy Tuberculosis and Rehabilitation Training Centre'),
(9362, 7345, 'ja', 'name', 'ę±ē”°ē·åˆē—…é™¢'),
(9363, 7345, 'no_lang_code', 'name', 'Shioda General Hospital'),
(9364, 7346, 'en', 'name', 'Royal Albert Edward Infirmary'),
(9365, 7347, 'fr', 'name', 'Centre hospitalier Etterbeek-Ixelles'),
(9366, 7348, 'ja', 'name', '大鵬薬品巄愭'),
(9367, 7348, 'no_lang_code', 'name', 'Taiho Pharmaceutical (Japan)'),
(9368, 7349, 'en', 'name', 'Institute of Liver and Biliary Sciences'),
(9369, 7350, 'no_lang_code', 'name', 'Intelligent Fiber Optic Systems (United States)'),
(9370, 7351, 'no_lang_code', 'name', 'Ametek (United States)'),
(9371, 7352, 'en', 'name', 'Sea Education Association'),
(9372, 7353, 'en', 'name', 'CGH Medical Center'),
(9373, 7354, 'en', 'name', 'Campbell Clinic'),
(9374, 7355, 'no_lang_code', 'name', 'Avacta (United Kingdom)'),
(9375, 7356, 'no_lang_code', 'name', 'Verizon (United States)'),
(9376, 7357, 'en', 'name', 'Project HOPE'),
(9377, 7358, 'en', 'name', 'Institute of Evolutionary Physiology and Biochemistry'),
(9378, 7358, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ²Š¾Š»ŃŽŃ†ŠøŠ¾Š½Š½Š¾Š¹ физиологии Šø биохимии им. И.М. Деченова Российской акаГемии наук'),
(9379, 7359, 'en', 'name', 'Lynn Health Science Institute'),
(9380, 7360, 'en', 'name', 'New Mexico Department of Human Services'),
(9381, 7361, 'en', 'name', 'Freshwater Fisheries Society of BC'),
(9382, 7362, 'en', 'name', 'United Christian Hospital'),
(9383, 7363, 'no_lang_code', 'name', 'SciTech Development (United States)'),
(9384, 7364, 'bg', 'name', 'национална многопрофилна транспортна болница цар борис ііі'),
(9385, 7364, 'en', 'name', 'National Transport Hospital "Tzar Boris III"'),
(9386, 7365, 'no_lang_code', 'name', 'Synergy Enterprises (United States)'),
(9387, 7366, 'no_lang_code', 'name', '4D Soft (Hungary)'),
(9388, 7367, 'en', 'name', 'International Society for Infectious Diseases'),
(9389, 7368, 'en', 'name', 'Centre for Infectious Disease Research in Zambia'),
(9390, 7369, 'no_lang_code', 'name', 'Fusion (United States)'),
(9391, 7370, 'en', 'name', 'Latvian Academy of Sciences'),
(9392, 7371, 'en', 'name', 'Interstate Shellfish Sanitation Conference'),
(9393, 7372, 'es', 'name', 'Centro Medico Nacional Siglo XXI'),
(9394, 7373, 'no_lang_code', 'name', 'InterDigital (United States)'),
(9395, 7374, 'no_lang_code', 'name', 'PhysioGenix (United States)'),
(9396, 7375, 'en', 'name', 'Forum for the Future'),
(9397, 7376, 'de', 'name', 'UniversitƤts-Herzzentrum Freiburg-Bad Krozingen'),
(9398, 7376, 'en', 'name', 'University Heart Center Freiburg'),
(9399, 7377, 'en', 'name', 'Philippe Pinel Institute'),
(9400, 7377, 'fr', 'name', 'Institut Philippe Pinel de MontrƩal'),
(9401, 7378, 'ja', 'name', 'åƒč‘‰ēœŒč„³č”€ē®”ć‚»ćƒ³ć‚æ'),
(9402, 7378, 'no_lang_code', 'name', 'Chiba Cerebral and Cardiovascular Center'),
(9403, 7379, 'en', 'name', 'Suita Municipal Hospital'),
(9404, 7379, 'ja', 'name', '市立吹田市民病院'),
(9405, 7380, 'en', 'name', 'Association of Dutch Burn Centres'),
(9406, 7380, 'nl', 'name', 'Vereniging Samenwerkende Brandwondencentra'),
(9407, 7381, 'no_lang_code', 'name', 'Schafer Corporation (United States)'),
(9408, 7382, 'en', 'name', 'Jerusalem Mental Health Center'),
(9409, 7382, 'he', 'name', '×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש ×™×Ø×•×©×œ×™×');
INSERT INTO `ror_settings` VALUES
(9410, 7383, 'no_lang_code', 'name', 'Learning in Motion (United States)'),
(9411, 7384, 'no_lang_code', 'name', 'QM Power (United States)'),
(9412, 7385, 'no_lang_code', 'name', 'Social Solutions International (United States)'),
(9413, 7386, 'no_lang_code', 'name', 'Biomomentum (Canada)'),
(9414, 7387, 'fr', 'name', 'Service RƩgional Vaudois de Transfusion Sanguine'),
(9415, 7388, 'en', 'name', 'Notre Dame College'),
(9416, 7389, 'pt', 'name', 'Instituto Adolfo Lutz'),
(9417, 7390, 'de', 'name', 'Herz- und Diabeteszentrum Nordrhein-Westfalen'),
(9418, 7390, 'en', 'name', 'Heart and Diabetes Center North Rhine-Westphalia'),
(9419, 7391, 'en', 'name', 'Takatsuki Red Cross Hospital'),
(9420, 7391, 'ja', 'name', 'é«˜ę§»čµ¤åå­—ē—…é™¢'),
(9421, 7392, 'no_lang_code', 'name', 'DNA Polymerase Technology (United States)'),
(9422, 7393, 'no_lang_code', 'name', 'ParaTechs (United States)'),
(9423, 7394, 'no_lang_code', 'name', 'Montserrat Volcano Observatory'),
(9424, 7395, 'no_lang_code', 'name', 'Inflazyme (Canada)'),
(9425, 7396, 'en', 'name', 'Spanish Centre for Pharmacoepidemiologic Research'),
(9426, 7396, 'es', 'name', 'Centro Español de Investigación Farmacoepidemiológica'),
(9427, 7397, 'en', 'name', 'Botanical Research Institute of Texas'),
(9428, 7398, 'no_lang_code', 'name', 'Dynamic Graphics (United States)'),
(9429, 7399, 'no_lang_code', 'name', 'Colibri Software (Canada)'),
(9430, 7400, 'en', 'name', 'Grand Forks Human Nutrition Research Center'),
(9431, 7401, 'no_lang_code', 'name', 'Chemring Technology Solutions (United Kingdom)'),
(9432, 7402, 'no_lang_code', 'name', 'Carepayment (United States)'),
(9433, 7403, 'en', 'name', 'Belgian Ceramic Research Centre'),
(9434, 7404, 'en', 'name', 'National Association of State Boards of Education'),
(9435, 7405, 'en', 'name', 'Transcultural Mental Health Institute'),
(9436, 7406, 'en', 'name', 'Ann Becker and Associates'),
(9437, 7407, 'en', 'name', 'Hampton VA Medical Center'),
(9438, 7408, 'no_lang_code', 'name', 'CASI Pharmaceuticals (United States)'),
(9439, 7409, 'en', 'name', 'San Jacinto College'),
(9440, 7410, 'ja', 'name', 'å±±å½¢ēœŒē«‹äø­å¤®ē—…é™¢'),
(9441, 7410, 'no_lang_code', 'name', 'Yamagata Prefectural Central Hospital'),
(9442, 7411, 'no_lang_code', 'name', 'XRSciences (United States)'),
(9443, 7412, 'no_lang_code', 'name', 'Bio Products Laboratory (United Kingdom)'),
(9444, 7413, 'en', 'name', 'American Board of Emergency Medicine'),
(9445, 7414, 'no_lang_code', 'name', 'Consarc Design Group (United Kingdom)'),
(9446, 7415, 'en', 'name', 'LaserVision'),
(9447, 7416, 'no_lang_code', 'name', 'Intelligent Mechatronic Systems (Canada)'),
(9448, 7417, 'fr', 'name', 'HĆ“pital de Ville-Ɖvrard'),
(9449, 7418, 'en', 'name', 'Wheeling Hospital'),
(9450, 7419, 'it', 'name', 'Ospedale San Bassiano'),
(9451, 7420, 'en', 'name', 'Southern College of Optometry'),
(9452, 7421, 'no_lang_code', 'name', 'Ashwin-Ushas (United States)'),
(9453, 7422, 'no_lang_code', 'name', 'Incom (United States)'),
(9454, 7423, 'no_lang_code', 'name', 'XL Sci-Tech (United States)'),
(9455, 7424, 'no_lang_code', 'name', 'Lifepharms (United States)'),
(9456, 7425, 'no_lang_code', 'name', 'Cubist Pharmaceuticals (United States)'),
(9457, 7426, 'fr', 'name', 'Neurocentre Magendie'),
(9458, 7427, 'no_lang_code', 'name', 'HedgePath Pharmaceuticals (United States)'),
(9459, 7428, 'en', 'name', 'Indian Institute of Management Bangalore'),
(9460, 7428, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¬ą„‡ą¤‚ą¤—ą¤²ą„‚ą¤°'),
(9461, 7428, 'kn', 'name', 'ą²‡ą²‚ą²”ą²æą²Æą²Øą³ā€Œ ą²‡ą²Øą³ā€Œą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ā€Œ ą²†ą²«ą³ā€Œ ą²®ą³ą²Æą²¾ą²Øą³‡ą²œą³ā€Œą²®ą³†ą²‚ą²Ÿą³ā€Œ ಬೆಂಗಳೂರು'),
(9462, 7428, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ą“¾ą“Øąµ‡ą“œąµā€Œą“®ąµ†ą“Øąµą“±ąµ, ą“¬ą“¾ą“‚ą“—ąµą“²ąµ‚ąµ¼'),
(9463, 7428, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ ą®ŖąÆ†ą®™ąÆą®•ą®³ąÆ‚ą®°ąÆ'),
(9464, 7428, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ā€Œą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°®ą±‡ą°Øą±‡ą°œą±ā€Œą°®ą±†ą°‚ą°Ÿą± బెంగుళూరు'),
(9465, 7429, 'en', 'name', 'Fatima Mata National College'),
(9466, 7429, 'ml', 'name', 'ą“«ą“¾ą“¤ąµą“¤ą“æą“® ą“®ą“¾ą“¤ą“¾ ą“Øą“¾ą“·ą“£ąµ½ ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(9467, 7430, 'en', 'name', 'Children''s Heart Center Nevada'),
(9468, 7431, 'en', 'name', 'Telus World of Science'),
(9469, 7432, 'en', 'name', 'MentorNet'),
(9470, 7433, 'no_lang_code', 'name', 'Prognosys Biosciences (United States)'),
(9471, 7434, 'en', 'name', 'Phoebe Putney Memorial Hospital'),
(9472, 7435, 'no_lang_code', 'name', 'ImmuneXcite (United States)'),
(9473, 7436, 'en', 'name', 'Canadian Council on Animal Care'),
(9474, 7437, 'no_lang_code', 'name', 'Collagen Matrix (United States)'),
(9475, 7438, 'en', 'name', 'Ohio County Behavioral Health Authorities'),
(9476, 7439, 'no_lang_code', 'name', 'Life Prediction Technologies (Canada)'),
(9477, 7440, 'en', 'name', 'Vokkaligara Sangha Dental College & Hospital'),
(9478, 7441, 'en', 'name', 'Quebec Consortium for Industrial Bioprocess Research and Innovation'),
(9479, 7441, 'fr', 'name', 'Consortium de Recherche et Innovations en BioprocƩdƩs Industriels au QuƩbec'),
(9480, 7442, 'es', 'name', 'Profamilia'),
(9481, 7443, 'no_lang_code', 'name', 'ABS Materials (United States)'),
(9482, 7444, 'it', 'name', 'Gruppo di Ricerca Geriatrica'),
(9483, 7445, 'fr', 'name', 'Fondation de Rothschild'),
(9484, 7446, 'no_lang_code', 'name', 'Public Data Queries (United States)'),
(9485, 7447, 'en', 'name', 'Russell Sage Foundation'),
(9486, 7448, 'en', 'name', 'Western Pennsylvania Hospital'),
(9487, 7449, 'no_lang_code', 'name', 'Pharis Biotec (Germany)'),
(9488, 7450, 'en', 'name', 'Blast Theory'),
(9489, 7451, 'en', 'name', 'Milwaukee Area Technical College'),
(9490, 7452, 'en', 'name', 'Robert Wood Johnson Foundation'),
(9491, 7453, 'en', 'name', 'Clinical Trials and Surveys Corporation'),
(9492, 7454, 'en', 'name', 'American Indian Higher Education Consortium'),
(9493, 7455, 'no_lang_code', 'name', 'Data Voice Exchange (United States)'),
(9494, 7456, 'en', 'name', 'All-China Sports Federation'),
(9495, 7457, 'en', 'name', 'Development Center for Biotechnology'),
(9496, 7458, 'en', 'name', 'American Society for Cybernetics'),
(9497, 7459, 'en', 'name', 'Central New Mexico Community College'),
(9498, 7460, 'no_lang_code', 'name', 'Biomedical Frontiers (United States)'),
(9499, 7461, 'no_lang_code', 'name', 'Epigen Biosciences (United States)'),
(9500, 7462, 'no_lang_code', 'name', 'Quanser (Canada)'),
(9501, 7463, 'no_lang_code', 'name', 'NovelMed Therapeutics (United States)'),
(9502, 7464, 'no_lang_code', 'name', 'Infrared Fiber Systems (United States)'),
(9503, 7465, 'en', 'name', 'CeMM Research Center for Molecular Medicine'),
(9504, 7466, 'no_lang_code', 'name', 'Rockland Immunochemicals (United States)'),
(9505, 7467, 'no_lang_code', 'name', 'Vancouver Enterprise Forum'),
(9506, 7468, 'en', 'name', 'American Political Science Association'),
(9507, 7469, 'en', 'name', 'Red River College'),
(9508, 7470, 'no_lang_code', 'name', 'IPL (Canada)'),
(9509, 7471, 'en', 'name', 'Warwick Hospital'),
(9510, 7472, 'en', 'name', 'Mountain Home VA Healthcare System'),
(9511, 7473, 'no_lang_code', 'name', 'Systex (United States)'),
(9512, 7474, 'de', 'name', 'Institut für Klinische Forschung und Entwicklung'),
(9513, 7475, 'sv', 'name', 'LƤnssjukhuset Sundsvall-HƤrnƶsand'),
(9514, 7476, 'en', 'name', 'Tapestry Health'),
(9515, 7477, 'en', 'name', 'Menorah Park Center for Senior Living'),
(9516, 7478, 'en', 'name', 'Ministry of Agriculture, Forestry and Fisheries'),
(9517, 7478, 'ja', 'name', 'č¾²ęž—ę°“ē”£ēœ'),
(9518, 7479, 'en', 'name', 'Ackerman Institute for the Family'),
(9519, 7480, 'en', 'name', 'Hand and Wrist Center of Houston'),
(9520, 7481, 'en', 'name', 'West Virginia High Technology Consortium Foundation'),
(9521, 7482, 'en', 'name', 'Thompson Cancer Survival Center'),
(9522, 7483, 'en', 'name', 'Cincinnati Eye Institute'),
(9523, 7484, 'en', 'name', 'Institute of Immunology'),
(9524, 7485, 'en', 'name', 'Applied Genetics Laboratories'),
(9525, 7486, 'it', 'name', 'Casa di cura Pierangeli'),
(9526, 7487, 'en', 'name', 'Medical Care Development'),
(9527, 7488, 'en', 'name', 'Butte College'),
(9528, 7489, 'en', 'name', 'Institute for Facial Esthetics'),
(9529, 7490, 'no_lang_code', 'name', 'GlaxoSmithKline (Canada)'),
(9530, 7491, 'en', 'name', 'Wuhan Asia Heart Hospital'),
(9531, 7491, 'zh', 'name', 'ę­¦ę±‰äŗšę“²åæƒč„ē—…åŒ»é™¢'),
(9532, 7492, 'en', 'name', 'Education Training And Research'),
(9533, 7493, 'en', 'name', 'Sussex Eye Hospital'),
(9534, 7494, 'no_lang_code', 'name', 'CyberLogic (United States)'),
(9535, 7495, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Lithuania)'),
(9536, 7496, 'no_lang_code', 'name', 'Interactive Drama (United States)'),
(9537, 7497, 'no_lang_code', 'name', 'Seccuris (Canada)'),
(9538, 7498, 'no_lang_code', 'name', 'JBS International (United States)'),
(9539, 7499, 'no_lang_code', 'name', 'DNAtrix (United States)'),
(9540, 7500, 'en', 'name', 'Carter Center'),
(9541, 7501, 'en', 'name', 'Anderson Orthopaedic Clinic'),
(9542, 7502, 'no_lang_code', 'name', 'RiboMed Biotechnologies (United States)'),
(9543, 7503, 'en', 'name', 'International Laser Center'),
(9544, 7504, 'no_lang_code', 'name', 'Proton OnSite (United States)'),
(9545, 7505, 'no_lang_code', 'name', 'Aecom (United Kingdom)'),
(9546, 7506, 'en', 'name', 'Uzsoki Hospital'),
(9547, 7506, 'hu', 'name', 'Uzsoki Utcai KórhÔz'),
(9548, 7507, 'en', 'name', 'Albertus Magnus College'),
(9549, 7508, 'en', 'name', 'Hachinohe National College of Technology'),
(9550, 7508, 'ja', 'name', 'å…«ęˆøå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ” 庶務課'),
(9551, 7509, 'no_lang_code', 'name', 'Orbis Biosciences (United States)'),
(9552, 7510, 'en', 'name', 'Louisville Metabolic and Atherosclerosis Research Center'),
(9553, 7511, 'no_lang_code', 'name', 'RAGT Seeds (United Kingdom)'),
(9554, 7512, 'no_lang_code', 'name', 'Sun Pharma (India)'),
(9555, 7513, 'no_lang_code', 'name', 'Sunovion (United States)'),
(9556, 7514, 'no_lang_code', 'name', 'TomoWave Laboratories (United States)'),
(9557, 7515, 'no_lang_code', 'name', 'Synageva BioPharma (United States)'),
(9558, 7516, 'no_lang_code', 'name', 'PharmaSeq (United States)'),
(9559, 7517, 'en', 'name', 'Massachusetts Eye Research and Surgery Institute'),
(9560, 7518, 'en', 'name', 'Math Learning Center'),
(9561, 7519, 'fr', 'name', 'Centre de MƩdecine PrƩventive'),
(9562, 7520, 'en', 'name', 'Sheldon Jackson College'),
(9563, 7521, 'el', 'name', '΄πουργείο Ī”Ī·Ī¼ĻŒĻƒĪ¹Ī±Ļ‚ Τάξης και Ī ĻĪæĻƒĻ„Ī±ĻƒĪÆĪ±Ļ‚ του Πολίτη'),
(9564, 7521, 'en', 'name', 'Ministry of Public Order and Citizen Protection'),
(9565, 7522, 'no_lang_code', 'name', 'Peter Brett Associates'),
(9566, 7523, 'en', 'name', 'Saskatchewan Health Quality Council'),
(9567, 7524, 'no_lang_code', 'name', 'Gene Check (United States)'),
(9568, 7525, 'en', 'name', 'DaVinci Institute'),
(9569, 7526, 'en', 'name', 'Department of Justice'),
(9570, 7527, 'no_lang_code', 'name', 'Sea Run Holdings (United States)'),
(9571, 7528, 'el', 'name', 'Διεθνής Αερολιμένας Ī‘ĪøĪ·Ī½ĻŽĪ½ «Ελευθέριος Βενιζέλος»'),
(9572, 7528, 'en', 'name', 'Athens International Airport'),
(9573, 7529, 'en', 'name', 'Peru State College'),
(9574, 7530, 'en', 'name', 'National Institute of Malaria Research'),
(9575, 7530, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą¤²ą„‡ą¤°ą¤æą¤Æą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(9576, 7531, 'de', 'name', 'Katholisches Klinikum Koblenz'),
(9577, 7532, 'en', 'name', 'Bangur Institute of Neurosciences'),
(9578, 7533, 'no_lang_code', 'name', 'Alexion Pharmaceuticals (United States)'),
(9579, 7534, 'en', 'name', 'Centre for Interdisciplinary Research in Rehabilitation'),
(9580, 7534, 'fr', 'name', 'Centre de Recherche Interdisciplinaire en RƩadaptation'),
(9581, 7535, 'no_lang_code', 'name', 'Dynex Semiconductor (United Kingdom)'),
(9582, 7536, 'en', 'name', 'National Center for Healthy Housing'),
(9583, 7537, 'no_lang_code', 'name', 'Radiant Creative Group'),
(9584, 7538, 'fi', 'name', 'Kuopion LiikuntalƤƤketieteen Tutkimuslaitos'),
(9585, 7539, 'en', 'name', 'Indepth Network'),
(9586, 7540, 'no_lang_code', 'name', 'Audiology (United States)'),
(9587, 7541, 'no_lang_code', 'name', 'SoyMeds (United States)'),
(9588, 7542, 'no_lang_code', 'name', 'Lakes Environmental (Canada)'),
(9589, 7543, 'en', 'name', 'Waikato District Health Board'),
(9590, 7544, 'en', 'name', 'St. Patrick''s Hospital'),
(9591, 7545, 'no_lang_code', 'name', 'InBios International (United States)'),
(9592, 7546, 'no_lang_code', 'name', 'Caldic (Canada)'),
(9593, 7547, 'en', 'name', 'Gordon-Conwell Theological Seminary'),
(9594, 7548, 'no_lang_code', 'name', 'Hawaii Biotech (United States)'),
(9595, 7549, 'ja', 'name', 'å‚å¤©č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(9596, 7549, 'no_lang_code', 'name', 'Santen (Japan)'),
(9597, 7550, 'no_lang_code', 'name', 'Shifa Biomedical (United States)'),
(9598, 7551, 'en', 'name', 'Cooperative Research Centre for Beef Genetic Technologies'),
(9599, 7552, 'no_lang_code', 'name', 'Shasta Crystals (United States)'),
(9600, 7553, 'en', 'name', 'Research Institute for Production Development'),
(9601, 7553, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗē”Ÿē”£é–‹ē™ŗē§‘å­¦ē ”ē©¶ę‰€'),
(9602, 7554, 'no_lang_code', 'name', 'State Volunteer Mutual Insurance (United States)'),
(9603, 7555, 'en', 'name', 'IntraHealth International'),
(9604, 7556, 'no_lang_code', 'name', 'Senecio Software (United States)'),
(9605, 7557, 'nl', 'name', 'Zaans Medisch Centrum'),
(9606, 7558, 'en', 'name', 'Syracuse VA Medical Center'),
(9607, 7559, 'no_lang_code', 'name', 'AugmenTech (United States)'),
(9608, 7560, 'no_lang_code', 'name', 'Lentigen Technology (United States)'),
(9609, 7561, 'en', 'name', 'Otsu Red Cross Hospital'),
(9610, 7561, 'ja', 'name', 'å¤§ę“„čµ¤åå­—ē—…é™¢'),
(9611, 7562, 'it', 'name', 'Ospedaliera di Piacenza'),
(9612, 7563, 'en', 'name', 'Pittsburgh Tissue Engineering Initiative'),
(9613, 7564, 'en', 'name', 'Southcentral Foundation'),
(9614, 7565, 'no_lang_code', 'name', 'Intuitive Biosciences (United States)'),
(9615, 7566, 'en', 'name', 'Green Valley High School'),
(9616, 7567, 'en', 'name', 'Shriners Hospitals for Children - Chicago'),
(9617, 7568, 'no_lang_code', 'name', 'Omicia (United States)'),
(9618, 7569, 'no_lang_code', 'name', 'Cardiome (Canada)'),
(9619, 7570, 'cy', 'name', 'Yr Archifau Cenedlaethol'),
(9620, 7570, 'en', 'name', 'National Archives'),
(9621, 7571, 'ja', 'name', 'ē¾¤é¦¬ēœŒęøˆē”Ÿä¼šå‰ę©‹ē—…é™¢'),
(9622, 7571, 'no_lang_code', 'name', 'Gunma Saiseikai Maebashi Hospital'),
(9623, 7572, 'en', 'name', 'California Institute for Regenerative Medicine'),
(9624, 7573, 'it', 'name', 'Ospedale per gli Infermi'),
(9625, 7574, 'no_lang_code', 'name', 'Polyglot Systems (United States)'),
(9626, 7575, 'ja', 'name', '大正製薬'),
(9627, 7575, 'no_lang_code', 'name', 'Taisho Pharmaceutical (Japan)'),
(9628, 7576, 'en', 'name', 'Cypress Health Region'),
(9629, 7577, 'no_lang_code', 'name', 'Halsall (Canada)'),
(9630, 7578, 'en', 'name', 'Park Nicollet Methodist Hospital'),
(9631, 7579, 'en', 'name', 'Prestera Center'),
(9632, 7580, 'no_lang_code', 'name', 'Unisys (United States)'),
(9633, 7581, 'en', 'name', 'Ministry of Agriculture, Food and Rural Affairs'),
(9634, 7581, 'fr', 'name', 'MinistĆØre de l''Agriculture, de l''Alimenntation et des Affaires Rurales'),
(9635, 7582, 'en', 'name', 'Alaska Department of Environmental Conservation'),
(9636, 7583, 'en', 'name', 'Wentworth Douglass Hospital'),
(9637, 7584, 'en', 'name', 'Dorn Research Institute'),
(9638, 7585, 'en', 'name', 'OrthoCarolina'),
(9639, 7586, 'no_lang_code', 'name', 'Evident Point (Canada)'),
(9640, 7587, 'en', 'name', 'Rothamsted Research'),
(9641, 7588, 'no_lang_code', 'name', 'InXsol (United States)'),
(9642, 7589, 'en', 'name', 'Calhoun Community College'),
(9643, 7590, 'no_lang_code', 'name', 'Copernicus Therapeutics (United States)'),
(9644, 7591, 'no_lang_code', 'name', 'Precision Combustion (United States)'),
(9645, 7592, 'en', 'name', 'Oklahoma Foundation for Digestive Research'),
(9646, 7593, 'en', 'name', 'Marin Health and Human Services'),
(9647, 7594, 'no_lang_code', 'name', 'eSpin Technologies (United States)'),
(9648, 7595, 'cy', 'name', 'Amgueddfa Victoria ac Albert'),
(9649, 7595, 'en', 'name', 'Victoria and Albert Museum'),
(9650, 7596, 'no_lang_code', 'name', 'Educational Service Incorporation'),
(9651, 7597, 'ja', 'name', 'č”Œå²”ē—…é™¢'),
(9652, 7597, 'no_lang_code', 'name', 'Yukioka Hospital'),
(9653, 7598, 'en', 'name', 'Aletheia House'),
(9654, 7599, 'no_lang_code', 'name', 'Galderma (France)'),
(9655, 7600, 'en', 'name', 'Royal Berkshire NHS Foundation Trust'),
(9656, 7601, 'en', 'name', 'Bard College at Simon''s Rock'),
(9657, 7602, 'en', 'name', 'Dallas County Community College District'),
(9658, 7602, 'es', 'name', 'Colegios Comunitarios del Condado de Dallas'),
(9659, 7603, 'en', 'name', 'Academy for Educational Development'),
(9660, 7604, 'en', 'name', 'Yokohama Municipal Citizen''s Hospital'),
(9661, 7604, 'ja', 'name', 'ęØŖęµœåø‚å–¶åø‚ę°‘ē—…é™¢'),
(9662, 7605, 'no_lang_code', 'name', 'Rehabtek (United States)'),
(9663, 7606, 'en', 'name', 'European Organisation for Research and Treatment of Cancer'),
(9664, 7606, 'fr', 'name', 'Organisation europƩenne pour la recherche et le traitement du cancer'),
(9665, 7607, 'en', 'name', 'Information and Communication Technologies Centre'),
(9666, 7608, 'en', 'name', 'United States Food and Drug Administration'),
(9667, 7609, 'en', 'name', 'Winchester Science Centre'),
(9668, 7610, 'en', 'name', 'New York State Office of Alcoholism and Substance Abuse Services'),
(9669, 7611, 'no_lang_code', 'name', 'Lineage Cell Therapeutics (United States)'),
(9670, 7612, 'en', 'name', 'River Region Human Services'),
(9671, 7613, 'en', 'name', 'American Occupational Therapy Association'),
(9672, 7614, 'en', 'name', 'Dr. Daneshbod Labratory'),
(9673, 7615, 'ar', 'name', 'مستؓفى السلطان Ł‚Ų§ŲØŁˆŲ³'),
(9674, 7615, 'en', 'name', 'Sultan Qaboos Hospital'),
(9675, 7616, 'no_lang_code', 'name', 'Canadian Green Tech (Canada)'),
(9676, 7617, 'en', 'name', 'Trinity Washington University'),
(9677, 7617, 'es', 'name', 'Universidad Trinity Washington'),
(9678, 7618, 'no_lang_code', 'name', 'Clearpath Robotics (Canada)'),
(9679, 7619, 'no_lang_code', 'name', 'System Biosciences (United States)'),
(9680, 7620, 'en', 'name', 'Pakistan Institute of Medical Sciences'),
(9681, 7620, 'ur', 'name', 'پاکستان طبی سائنس Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(9682, 7621, 'no_lang_code', 'name', 'ImmuRx (United States)'),
(9683, 7622, 'no_lang_code', 'name', 'Continental (Germany)'),
(9684, 7623, 'en', 'name', 'Lorain County Community College'),
(9685, 7624, 'en', 'name', 'Foundation for Research into Traditional Chinese Medicine'),
(9686, 7625, 'no_lang_code', 'name', 'National Recovery Technologies (United States)'),
(9687, 7626, 'no_lang_code', 'name', 'Scisys (United Kingdom)'),
(9688, 7627, 'en', 'name', 'Sage College of Albany'),
(9689, 7628, 'en', 'name', 'Scientific Consulting Group'),
(9690, 7629, 'en', 'name', 'Trenton Psychiatric Hospital'),
(9691, 7630, 'en', 'name', 'College of American Pathologists'),
(9692, 7631, 'en', 'name', 'Shepherd Center'),
(9693, 7632, 'en', 'name', 'Washington Adventist University'),
(9694, 7632, 'fr', 'name', 'UniversitƩ adventiste de washington'),
(9695, 7633, 'en', 'name', 'M.G. Kholodny Institute of Botany'),
(9696, 7634, 'en', 'name', 'Micro and Nanotechnology Innovation Centre'),
(9697, 7635, 'no_lang_code', 'name', 'Bellus Health (Canada)'),
(9698, 7636, 'no_lang_code', 'name', 'E.ON (United States)'),
(9699, 7637, 'no_lang_code', 'name', 'MassTech (United States)'),
(9700, 7638, 'no_lang_code', 'name', 'Urigen Pharmaceuticals (United States)'),
(9701, 7639, 'en', 'name', 'Family and Medical Counseling Service'),
(9702, 7640, 'en', 'name', 'Indiana Academy of Science'),
(9703, 7641, 'en', 'name', 'United Engineering Foundation'),
(9704, 7642, 'en', 'name', 'Association of Chief Police Officers'),
(9705, 7643, 'no_lang_code', 'name', 'Geotechnical Observations (United Kingdom)'),
(9706, 7644, 'en', 'name', 'American College of Physicians'),
(9707, 7645, 'es', 'name', 'Instituto Nacional de Enfermedades NeoplƔsicas'),
(9708, 7646, 'en', 'name', 'Tao Yuan General Hospital'),
(9709, 7646, 'zh', 'name', 'ę”ƒåœ’é†«é™¢'),
(9710, 7647, 'no_lang_code', 'name', 'NestlƩ (United States)'),
(9711, 7648, 'en', 'name', 'Techniquest'),
(9712, 7649, 'en', 'name', 'American Association of Blood Banks'),
(9713, 7650, 'no_lang_code', 'name', 'Vion Pharmaceuticals (United States)'),
(9714, 7651, 'no_lang_code', 'name', 'Human Computer Interaction (Switzerland)'),
(9715, 7652, 'no_lang_code', 'name', 'Renewable Energy Systems (United States)'),
(9716, 7653, 'en', 'name', 'Ministry of Manpower'),
(9717, 7653, 'zh', 'name', 'ę–°åŠ å”äŗŗåŠ›éƒØ'),
(9718, 7654, 'en', 'name', 'Dean McGee Eye Institute'),
(9719, 7655, 'en', 'name', 'Institute of Contemporary Psychoanalysis'),
(9720, 7656, 'no_lang_code', 'name', 'Compound Semiconductor Technologies (United Kingdom)'),
(9721, 7657, 'en', 'name', 'Karnataka Veterinary Animal and Fisheries Sciences University'),
(9722, 7657, 'ne', 'name', 'ą¤•ą¤°ą„ą¤Øą¤¾ą¤Ÿą¤• ą¤µą„‡ą¤Ÿą„‡ą¤°ą¤æą¤Øą¤°ą„€, ą¤®ą¤¤ą„ą¤øą„ą¤Æ पालन र ą¤Ŗą¤¶ą„ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(9723, 7658, 'en', 'name', 'Academy for Science and Design'),
(9724, 7659, 'en', 'name', 'Southern Nevada Health District'),
(9725, 7660, 'no_lang_code', 'name', 'SFC Fluidics (United States)'),
(9726, 7661, 'en', 'name', 'Bishop State Community College'),
(9727, 7662, 'en', 'name', 'Bio Behavioral Institute'),
(9728, 7663, 'no_lang_code', 'name', 'ProteinSimple (United States)'),
(9729, 7664, 'en', 'name', 'Tyne and Wear Archives and Museums'),
(9730, 7665, 'en', 'name', 'North American Primary Care Research Group'),
(9731, 7666, 'en', 'name', 'Northwestern Medical Faculty Foundation'),
(9732, 7667, 'pt', 'name', 'Centro Hospitalar de Lisboa Ocidental'),
(9733, 7668, 'en', 'name', 'Shriners Hospitals for Children - Philadelphia'),
(9734, 7669, 'en', 'name', 'United States Drug Testing Laboratories'),
(9735, 7670, 'en', 'name', 'Institute for the Study of Learning and Expertise'),
(9736, 7671, 'en', 'name', 'Yedikule Teaching Hospital'),
(9737, 7671, 'tr', 'name', 'Yedikule Göğüs Hastalıkları ve Göğüs Cerrahisi Eğitim ve Araştırma Hastanesi'),
(9738, 7672, 'it', 'name', 'Istituto Zooprofilattico Sperimentale della Sardegna'),
(9739, 7673, 'no_lang_code', 'name', 'Optum (United States)'),
(9740, 7674, 'en', 'name', 'National Institute of Rehabilitation'),
(9741, 7674, 'es', 'name', 'Instituto Nacional de Rehabilitación'),
(9742, 7675, 'en', 'name', 'Virginia Museum of Natural History'),
(9743, 7676, 'en', 'name', 'Gunma Prefectural Cardiovascular Center'),
(9744, 7676, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹åæƒč‡“č”€ē®”ć‚»ćƒ³ć‚æćƒ¼'),
(9745, 7677, 'no_lang_code', 'name', 'ReproCELL (United States)'),
(9746, 7678, 'no_lang_code', 'name', 'Jim Metzner Productions (United States)'),
(9747, 7679, 'en', 'name', 'Alzheimer''s Association'),
(9748, 7680, 'ja', 'name', 'ć•ć„ćŸć¾åø‚ē«‹ē—…é™¢'),
(9749, 7680, 'no_lang_code', 'name', 'Saitama Municipal Hospital'),
(9750, 7681, 'en', 'name', 'Animal and Plant Health Agency'),
(9751, 7682, 'en', 'name', 'Nyack Hospital'),
(9752, 7683, 'no_lang_code', 'name', 'Kimberly-Clark (United States)'),
(9753, 7684, 'en', 'name', 'Tri County Technical College'),
(9754, 7685, 'no_lang_code', 'name', 'Synedgen (United States)'),
(9755, 7686, 'no_lang_code', 'name', 'Global Convergence (United States)'),
(9756, 7687, 'en', 'name', 'Guangzhou Institute of Dermatology'),
(9757, 7688, 'en', 'name', 'Wishaw General Hospital'),
(9758, 7689, 'sv', 'name', 'Centrallasarettet VƤxjƶ'),
(9759, 7690, 'en', 'name', 'William Jewell College'),
(9760, 7691, 'en', 'name', 'Royal Institution of Great Britain'),
(9761, 7692, 'en', 'name', 'American Sports Medicine Institute'),
(9762, 7693, 'no_lang_code', 'name', 'Biomedical Research Models (United States)'),
(9763, 7694, 'no_lang_code', 'name', 'Amunix (United States)'),
(9764, 7695, 'en', 'name', 'Ohta Nishinouchi Hospital'),
(9765, 7695, 'ja', 'name', 'å¤Ŗē”°č„æćƒŽå†…ē—…é™¢'),
(9766, 7696, 'en', 'name', 'Teaching Hospital Kandy'),
(9767, 7696, 'si', 'name', 'මහනුවර ą·ą·’ą¶šą·Šą·‚ą¶« ą¶»ą·ą·„ą¶½'),
(9768, 7697, 'en', 'name', 'William S. Middleton Memorial Veterans Hospital'),
(9769, 7698, 'en', 'name', 'Chitose Institute of Science and Technology'),
(9770, 7698, 'ja', 'name', 'åƒę­³ē§‘å­¦ęŠ€č”“å¤§å­¦'),
(9771, 7699, 'no_lang_code', 'name', 'Talaris Therapeutics (United States)'),
(9772, 7700, 'en', 'name', 'West Park Healthcare Centre'),
(9773, 7701, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę¾ę²¢ē—…é™¢'),
(9774, 7701, 'no_lang_code', 'name', 'Tokyo Metropolitan Matsuzawa Hospital'),
(9775, 7702, 'no_lang_code', 'name', 'OEpic Semiconductors (United States)'),
(9776, 7703, 'no_lang_code', 'name', 'Public Health Television (United States)'),
(9777, 7704, 'en', 'name', 'Police Forensic Science Laboratory Dundee'),
(9778, 7705, 'no_lang_code', 'name', 'Boston Scientific (United States)'),
(9779, 7706, 'no_lang_code', 'name', 'Advaxis (United States)'),
(9780, 7707, 'en', 'name', 'Middlesex County College'),
(9781, 7708, 'de', 'name', 'Max-Planck-Institut für Kognitions- und Neurowissenschaften'),
(9782, 7708, 'en', 'name', 'Max Planck Institute for Human Cognitive and Brain Sciences'),
(9783, 7709, 'no_lang_code', 'name', 'Advanced Diamond Technologies (United States)'),
(9784, 7710, 'en', 'name', 'Allegheny Valley Hospital'),
(9785, 7711, 'no_lang_code', 'name', 'Cygnus (United States)'),
(9786, 7712, 'ja', 'name', 'åÆŒå£«é€šę Ŗå¼ä¼šē¤¾'),
(9787, 7712, 'no_lang_code', 'name', 'Fujitsu (Japan)'),
(9788, 7713, 'no_lang_code', 'name', 'EMT Associates (United States)'),
(9789, 7714, 'no_lang_code', 'name', 'Lockheed Martin Orincon (United States)'),
(9790, 7715, 'en', 'name', 'CARE USA'),
(9791, 7716, 'en', 'name', 'Western Attica General Hospital'),
(9792, 7717, 'en', 'name', 'Centerstone'),
(9793, 7718, 'no_lang_code', 'name', 'Alkermes (United States)'),
(9794, 7719, 'en', 'name', 'Pacific Tower'),
(9795, 7720, 'en', 'name', 'Sher Fertility'),
(9796, 7721, 'en', 'name', 'Psychiatric Foundation of North Carolina'),
(9797, 7722, 'en', 'name', 'Hydrologic Research Center'),
(9798, 7723, 'ja', 'name', 'åøäŗŗę Ŗå¼ä¼šē¤¾'),
(9799, 7723, 'no_lang_code', 'name', 'Teijin (Japan)'),
(9800, 7724, 'en', 'name', 'D.F. Chebotarev Institute of Gerontology'),
(9801, 7724, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геронтології ім. Š”.Ф.Š§ŠµŠ±Š¾Ń‚Š°Ń€ŃŒŠ¾Š²Š°'),
(9802, 7725, 'no_lang_code', 'name', 'AdipoGenix (United States)'),
(9803, 7726, 'no_lang_code', 'name', 'Ciencia (United States)'),
(9804, 7727, 'no_lang_code', 'name', 'Takeda (Norway)'),
(9805, 7728, 'no_lang_code', 'name', 'Mantech (Canada)'),
(9806, 7729, 'en', 'name', 'Las Vegas Institute'),
(9807, 7730, 'en', 'name', 'University Teaching Hospital of Kigali'),
(9808, 7730, 'fr', 'name', 'Centre Hospitalier Universitaire de Kigali'),
(9809, 7731, 'no_lang_code', 'name', 'Norgen Biotek Corporation (Canada)'),
(9810, 7732, 'en', 'name', 'Institute for Atomic and Molecular Physics'),
(9811, 7733, 'no_lang_code', 'name', 'Viro Dynamics (United States)'),
(9812, 7734, 'en', 'name', 'Organization of American States'),
(9813, 7734, 'es', 'name', 'Organización de los Estados Americanos'),
(9814, 7734, 'fr', 'name', 'Organisation des Ɖtats AmĆ©ricains'),
(9815, 7734, 'pt', 'name', 'Organização dos Estados Americanos'),
(9816, 7735, 'en', 'name', 'HealthCare Interactive'),
(9817, 7736, 'no_lang_code', 'name', 'Stemmatters (Portugal)'),
(9818, 7737, 'no_lang_code', 'name', 'Cooper and Company (United States)'),
(9819, 7738, 'no_lang_code', 'name', 'United Utilities (United Kingdom)'),
(9820, 7739, 'no_lang_code', 'name', 'Motorola (United Kingdom)'),
(9821, 7740, 'en', 'name', 'Kenya Agricultural Research Institute'),
(9822, 7741, 'en', 'name', 'McREL International'),
(9823, 7742, 'en', 'name', 'National Audubon Society'),
(9824, 7743, 'en', 'name', 'Bamfield Marine Sciences Centre'),
(9825, 7744, 'en', 'name', 'Central Glass and Ceramic Research Institute'),
(9826, 7745, 'en', 'name', 'Institute of Cellular and Intracellular Symbiosis'),
(9827, 7745, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики клетки Российской акаГемии наук'),
(9828, 7746, 'en', 'name', 'At Bristol'),
(9829, 7747, 'fr', 'name', 'Centre hospitalier de Tulle'),
(9830, 7748, 'en', 'name', 'Ono Clinic'),
(9831, 7748, 'ja', 'name', 'å°é‡Žć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(9832, 7749, 'no_lang_code', 'name', 'MedShape (United States)'),
(9833, 7750, 'en', 'name', 'Korea Electronics Technology Institute'),
(9834, 7751, 'en', 'name', 'T. D. Medical College'),
(9835, 7752, 'en', 'name', 'Moss Rehabilitation Hospital'),
(9836, 7753, 'en', 'name', 'Federal Correctional Institution Schuylkill'),
(9837, 7754, 'no_lang_code', 'name', 'Novartis (United Kingdom)'),
(9838, 7755, 'ja', 'name', 'é«˜é‡Žē—…é™¢'),
(9839, 7755, 'no_lang_code', 'name', 'Takano Hospital'),
(9840, 7756, 'en', 'name', 'Piedmont Technical College'),
(9841, 7757, 'en', 'name', 'Linguistic Society of America'),
(9842, 7758, 'en', 'name', 'Long Island Association for AIDS Care'),
(9843, 7759, 'no_lang_code', 'name', 'AdvR (United States)'),
(9844, 7760, 'en', 'name', 'Lynchburg Family Medicine'),
(9845, 7761, 'ja', 'name', 'ęøˆē”Ÿä¼šå®‡éƒ½å®®ē—…é™¢'),
(9846, 7761, 'no_lang_code', 'name', 'Saiseikai Utsunomiya hospital'),
(9847, 7762, 'en', 'name', 'Pelosi Medical Center'),
(9848, 7763, 'en', 'name', 'Houston Institute for Clinical Research'),
(9849, 7764, 'en', 'name', 'Saitama Cancer Center'),
(9850, 7764, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(9851, 7765, 'no_lang_code', 'name', 'Faraday Technology (United States)'),
(9852, 7766, 'en', 'name', 'Valley Hospital Medical Center'),
(9853, 7767, 'en', 'name', 'United States Pharmacopeial Convention'),
(9854, 7767, 'es', 'name', 'Convención de la Farmacopea de Estados Unidos'),
(9855, 7768, 'en', 'name', 'National JALMA Institute for Leprosy & Other Mycobacterial Diseases'),
(9856, 7769, 'no_lang_code', 'name', 'Adrianor'),
(9857, 7770, 'no_lang_code', 'name', 'Cortex Pharmaceuticals (United States)'),
(9858, 7771, 'no_lang_code', 'name', 'BioPAL (United States)'),
(9859, 7772, 'en', 'name', 'Education Coordinating Council'),
(9860, 7773, 'it', 'name', 'Ospedale di Circolo di Busto Arsizio'),
(9861, 7774, 'pt', 'name', 'Secretaria da SaĆŗde'),
(9862, 7775, 'no_lang_code', 'name', 'Hyperion Technologies (Canada)'),
(9863, 7776, 'en', 'name', 'Coker College'),
(9864, 7777, 'no_lang_code', 'name', 'Sommer Materials Research (United States)'),
(9865, 7778, 'en', 'name', 'National Dairy Research Institute'),
(9866, 7778, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤”ą„‡ą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(9867, 7779, 'en', 'name', 'Institute of Molecular Genetics'),
(9868, 7779, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ генетики Российской акаГемии наук'),
(9869, 7780, 'de', 'name', 'Max-Planck-Institut für Molekulare Genetik'),
(9870, 7780, 'en', 'name', 'Max Planck Institute for Molecular Genetics'),
(9871, 7781, 'no_lang_code', 'name', 'Germinal (United Kingdom)'),
(9872, 7782, 'en', 'name', 'Entomological Society of America'),
(9873, 7783, 'en', 'name', 'Council of State and Territorial Epidemiologists'),
(9874, 7784, 'en', 'name', 'European Brain Research Institute'),
(9875, 7785, 'en', 'name', 'Scotch Whisky Research Institute'),
(9876, 7786, 'en', 'name', 'Bethel College - Kansas'),
(9877, 7787, 'en', 'name', 'Family Medicine Residency of Idaho'),
(9878, 7788, 'fr', 'name', 'Laboratoire National Henri Becquerel'),
(9879, 7789, 'en', 'name', 'Headache Wellness Center'),
(9880, 7790, 'no_lang_code', 'name', 'Genia Photonics (Canada)'),
(9881, 7791, 'de', 'name', 'UniversitƤtsklinikum Augsburg'),
(9882, 7791, 'en', 'name', 'University Hospital Augsburg'),
(9883, 7792, 'en', 'name', 'Baltimore City Community College'),
(9884, 7793, 'de', 'name', 'Paul Gerhardt Diakonie'),
(9885, 7794, 'no_lang_code', 'name', 'Dakota Technologies (United States)'),
(9886, 7795, 'en', 'name', 'Liberty Science Center'),
(9887, 7796, 'en', 'name', 'University of Utah Hospital'),
(9888, 7796, 'es', 'name', 'Hospital de la Universidad de Utah'),
(9889, 7797, 'no_lang_code', 'name', 'Epitope (United States)'),
(9890, 7798, 'en', 'name', 'Society of General Internal Medicine'),
(9891, 7799, 'en', 'name', 'Fleet Science Center'),
(9892, 7800, 'en', 'name', 'Southern California Alcohol and Drug Programs'),
(9893, 7801, 'en', 'name', 'Finnish Brain Research and Rehabilitation Center Neuron'),
(9894, 7802, 'fr', 'name', 'Centre Hospitalier du Mans'),
(9895, 7803, 'en', 'name', 'Susquehanna Health'),
(9896, 7804, 'it', 'name', 'Centro Diagnostico Italiano'),
(9897, 7805, 'en', 'name', 'Lyndon State College'),
(9898, 7806, 'en', 'name', 'Boston Public Schools'),
(9899, 7807, 'no_lang_code', 'name', 'Thermo Fisher Scientific (United Kingdom)'),
(9900, 7808, 'en', 'name', 'College of Menominee Nation'),
(9901, 7809, 'no_lang_code', 'name', 'Infosys (India)'),
(9902, 7810, 'no_lang_code', 'name', 'Tsubame Rosai Hospital'),
(9903, 7811, 'ja', 'name', '沼擄市立病院'),
(9904, 7811, 'no_lang_code', 'name', 'Numazu City Hospital'),
(9905, 7812, 'en', 'name', 'National Space Centre'),
(9906, 7813, 'en', 'name', 'Association for Women in Science'),
(9907, 7814, 'en', 'name', 'Wagner College'),
(9908, 7815, 'fr', 'name', 'CƩgep AndrƩ Laurendeau, CƩgep andrƩ-laurendeau'),
(9909, 7816, 'en', 'name', 'ę­¦ē”°č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾, Takeda Yakuhin Kōgyō kabushiki gaisha'),
(9910, 7816, 'no_lang_code', 'name', 'Takeda (United States)'),
(9911, 7817, 'en', 'name', 'Bedford Institute of Oceanography'),
(9912, 7818, 'en', 'name', 'Gwinnett Coalition for Health & Human Services'),
(9913, 7819, 'es', 'name', 'Ministerio de Salud'),
(9914, 7820, 'en', 'name', 'Armed Forces Institute of Pathology'),
(9915, 7821, 'en', 'name', 'Yamaguchi Red Cross Hospital'),
(9916, 7821, 'ja', 'name', 'å±±å£čµ¤åå­—ē—…é™¢'),
(9917, 7822, 'en', 'name', 'Lyon College'),
(9918, 7823, 'en', 'name', 'Wake Technical Community College'),
(9919, 7824, 'no_lang_code', 'name', 'Scottish Water (United Kingdom)'),
(9920, 7825, 'en', 'name', 'South Carolina Research Authority'),
(9921, 7826, 'en', 'name', 'McMaster Children''s Hospital'),
(9922, 7827, 'en', 'name', 'Florida Department of Children and Families'),
(9923, 7828, 'en', 'name', 'Women in Engineering ProActive Network'),
(9924, 7829, 'no_lang_code', 'name', 'QR Pharma (United States)'),
(9925, 7830, 'en', 'name', 'National Institute of Genetic Engineering and Biotechnology'),
(9926, 7830, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł…Ł„ŁŠ Ł…Ł‡Ł†ŲÆŲ³ŁŠ Ś˜Ł†ŲŖŁŠŁƒ و زيست ŁŁ†Ų§ŁˆŲ±ŁŠ'),
(9927, 7831, 'en', 'name', 'Haymarket Center'),
(9928, 7832, 'no_lang_code', 'name', 'IB Innovation Consortium (Italy)'),
(9929, 7833, 'no_lang_code', 'name', 'Costain (United Kingdom)'),
(9930, 7834, 'en', 'name', 'Greater Manchester Police'),
(9931, 7835, 'no_lang_code', 'name', 'Morgan Stanley (United Kingdom)'),
(9932, 7836, 'en', 'name', 'Bronx Veterans Medical Research Foundation'),
(9933, 7837, 'en', 'name', 'Women''s College Hospital'),
(9934, 7838, 'en', 'name', 'Curry College'),
(9935, 7839, 'en', 'name', 'Istanbul Eye Hospital'),
(9936, 7839, 'tr', 'name', 'İstanbul Gƶz Hastanesi'),
(9937, 7840, 'no_lang_code', 'name', '3E (Belgium)'),
(9938, 7841, 'no_lang_code', 'name', 'Vivo Biosciences (United States)'),
(9939, 7842, 'no_lang_code', 'name', 'Walsh Group'),
(9940, 7843, 'no_lang_code', 'name', 'CanAm Bioresearch (Canada)'),
(9941, 7844, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č³‡ē”Ÿå ‚'),
(9942, 7844, 'no_lang_code', 'name', 'Shiseido Group (Japan)'),
(9943, 7845, 'en', 'name', 'St. John''s College'),
(9944, 7846, 'no_lang_code', 'name', 'ArchieMD (United States)'),
(9945, 7847, 'no_lang_code', 'name', 'XOMA (United States)'),
(9946, 7848, 'no_lang_code', 'name', 'TimeDomain CVD (United States)'),
(9947, 7849, 'no_lang_code', 'name', 'Arthur D. Little (United States)'),
(9948, 7850, 'no_lang_code', 'name', 'Qinetiq (United States)'),
(9949, 7851, 'no_lang_code', 'name', 'Agilent Technologies (United Kingdom)'),
(9950, 7852, 'no_lang_code', 'name', 'VirRx (United States)'),
(9951, 7853, 'en', 'name', 'Nagano College of Nursing'),
(9952, 7853, 'ja', 'name', 'é•·é‡ŽēœŒēœ‹č­·å¤§å­¦'),
(9953, 7854, 'en', 'name', 'Research Institute for Fragrance Materials'),
(9954, 7855, 'no_lang_code', 'name', 'MPI Research (United States)'),
(9955, 7856, 'en', 'name', 'Winter Haven Hospital'),
(9956, 7857, 'en', 'name', 'Fraunhofer USA Center for Molecular Biotechnology'),
(9957, 7858, 'no_lang_code', 'name', 'Agenus (United States)'),
(9958, 7859, 'en', 'name', 'National Geophysical Research Institute'),
(9959, 7859, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤­ą„‚ą¤­ą„Œą¤¤ą¤æą¤•ą„€ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(9960, 7859, 'ml', 'name', 'ą“Øą“¾ą“·ą“£ąµ½ ą“œą“æą“Æąµ‹ą“«ą“æą“øą“æą“•ąµą“•ąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ,ą“¹ąµˆą“¦ą“°ą“¾ą“¬ą“¾ą“¦ąµ'),
(9961, 7859, 'te', 'name', 'ą°œą°¾ą°¤ą±€ą°Æ ą°­ą±‚ą°­ą±Œą°¤ą°æą°• పరిశోధనా ą°øą°‚ą°øą±ą°„'),
(9962, 7860, 'es', 'name', 'Instituto de la Visión'),
(9963, 7861, 'en', 'name', 'Bevill State Community College'),
(9964, 7862, 'en', 'name', 'Tanzania Commission for Science and Technology'),
(9965, 7862, 'sw', 'name', 'Tume ya Sayansi na Teknolojia Tanzania'),
(9966, 7863, 'no_lang_code', 'name', 'Intelligent Energy (United Kingdom)'),
(9967, 7864, 'no_lang_code', 'name', 'Materials and Systems Research (United States)'),
(9968, 7865, 'en', 'name', 'Saint Louis Science Center'),
(9969, 7866, 'en', 'name', 'Molecular Cardiology and Neuromuscular Institute'),
(9970, 7867, 'no_lang_code', 'name', 'ProteoSys (Germany)'),
(9971, 7868, 'en', 'name', 'Budker Institute of Nuclear Physics'),
(9972, 7868, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ физики'),
(9973, 7869, 'en', 'name', 'People’s University'),
(9974, 7870, 'no_lang_code', 'name', 'MetroLaser (United States)'),
(9975, 7871, 'en', 'name', 'St. Luke’s Boise Medical Center'),
(9976, 7872, 'en', 'name', 'Tochigi Cancer Center'),
(9977, 7872, 'ja', 'name', 'ę ƒęœØēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(9978, 7873, 'no_lang_code', 'name', 'DMetrix (United States)'),
(9979, 7874, 'en', 'name', 'Guangxi Veterinary Research Institute'),
(9980, 7875, 'ja', 'name', 'å¤§é˜Ŗåŗœęøˆē”Ÿä¼šå¹ē”°ē—…é™¢'),
(9981, 7875, 'no_lang_code', 'name', 'Saiseikai Suita Hospital'),
(9982, 7876, 'en', 'name', 'Wisconsin Department of Agriculture Trade and Consumer Protection'),
(9983, 7877, 'da', 'name', 'Dansk Sundhedsinstitut, Dansk Sygehus Institut'),
(9984, 7878, 'en', 'name', 'St. Francis Medical Center'),
(9985, 7879, 'en', 'name', 'Quincy College'),
(9986, 7880, 'en', 'name', 'Iowa Central Community College'),
(9987, 7881, 'en', 'name', 'Orange County Healthcare Agency'),
(9988, 7882, 'no_lang_code', 'name', 'iQmetrix (Canada)'),
(9989, 7883, 'en', 'name', 'Center for Culture and Experience Economy'),
(9990, 7884, 'fr', 'name', 'Clinique de la DƩfense'),
(9991, 7885, 'en', 'name', 'Research Triangle Park Foundation'),
(9992, 7886, 'no_lang_code', 'name', 'Critical Software (Portugal)'),
(9993, 7887, 'no_lang_code', 'name', 'Syncrotronics Corporation (United States)'),
(9994, 7888, 'en', 'name', 'Association for Institutional Research'),
(9995, 7889, 'no_lang_code', 'name', 'Teva Pharmaceuticals (United States)'),
(9996, 7890, 'no_lang_code', 'name', 'LightBridge Healthcare Research (United States)'),
(9997, 7891, 'es', 'name', 'Corporación para Investigaciones Biológicas'),
(9998, 7892, 'no_lang_code', 'name', 'Neocera (United States)'),
(9999, 7893, 'en', 'name', 'St. Joseph Hospital'),
(10000, 7894, 'ja', 'name', 'åÆŒå£«ćƒ¬ćƒ“ć‚Ŗę Ŗå¼ä¼šē¤¾'),
(10001, 7894, 'no_lang_code', 'name', 'Fujirebio (Japan)'),
(10002, 7895, 'en', 'name', 'Vaccine & Gene Therapy Institute of Florida'),
(10003, 7896, 'es', 'name', 'Fundación Santa Fe de BogotÔ'),
(10004, 7897, 'no_lang_code', 'name', 'Evans Analytical Group (United States)'),
(10005, 7898, 'no_lang_code', 'name', 'Fillauer (United States)'),
(10006, 7899, 'en', 'name', 'ECRI Institute'),
(10007, 7900, 'da', 'name', 'Det Nationale Forskningscenter for ArbejdsmiljĆø'),
(10008, 7900, 'en', 'name', 'National Research Centre for the Working Environment'),
(10009, 7901, 'en', 'name', 'Basic NWFL'),
(10010, 7902, 'en', 'name', 'Canadian Institute for Energy Training'),
(10011, 7902, 'fr', 'name', 'Institut Canadien de Formation en Energie'),
(10012, 7903, 'en', 'name', 'Durham College'),
(10013, 7904, 'no_lang_code', 'name', 'A&G Pharmaceutical (United States)'),
(10014, 7905, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦øą§ą¦¬ą¦¾ą¦øą§ą¦„ą§ą¦Æą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(10015, 7905, 'en', 'name', 'West Bengal University of Health Sciences'),
(10016, 7905, 'hi', 'name', 'ą¤Ŗą¤¶ą„ą¤šą¤æą¤® बंगाल ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(10017, 7906, 'en', 'name', 'St. Stephen’s Hospital'),
(10018, 7907, 'no_lang_code', 'name', 'Dassault SystĆØmes (United States)'),
(10019, 7908, 'en', 'name', 'Westchester Medical Center'),
(10020, 7909, 'no_lang_code', 'name', 'Lake Shore Cryotronics (United States)'),
(10021, 7910, 'no_lang_code', 'name', 'Luminex (United States)'),
(10022, 7911, 'es', 'name', 'Instituto Ramón y Cajal de Investigación Sanitaria'),
(10023, 7912, 'no_lang_code', 'name', 'BioMarin (United States)'),
(10024, 7913, 'en', 'name', 'Canadian AIDS Treatment Information Exchange'),
(10025, 7914, 'no_lang_code', 'name', 'ProteoTech (United States)'),
(10026, 7915, 'en', 'name', 'Valley Baptist Medical Center'),
(10027, 7916, 'no_lang_code', 'name', 'Sigmovir Biosystems (United States)'),
(10028, 7917, 'no_lang_code', 'name', 'PricewaterhouseCoopers (United States)'),
(10029, 7918, 'no_lang_code', 'name', 'Tascon Industries (United States)'),
(10030, 7919, 'no_lang_code', 'name', 'Emergent BioSolutions (Canada)'),
(10031, 7920, 'en', 'name', 'Casa Esperanza'),
(10032, 7921, 'en', 'name', 'Cincinnati Sportsmedicine and Orthopaedic Center'),
(10033, 7922, 'en', 'name', 'Texas Scottish Rite Hospital for Children'),
(10034, 7923, 'no_lang_code', 'name', 'Optimum Technologies (United States)'),
(10035, 7924, 'no_lang_code', 'name', 'Advanced MicroLabs (United States)'),
(10036, 7925, 'en', 'name', 'West Palm Beach VA Medical Center'),
(10037, 7926, 'no_lang_code', 'name', 'Biostruxs (United States)'),
(10038, 7927, 'en', 'name', 'Education and Research Institute'),
(10039, 7928, 'no_lang_code', 'name', 'Mabvax Therapeutics (United States)'),
(10040, 7929, 'en', 'name', 'National Conference of State Legislatures'),
(10041, 7930, 'en', 'name', 'National Institute for Health Development'),
(10042, 7930, 'et', 'name', 'Tervise Arengu Instituut'),
(10043, 7931, 'en', 'name', 'Baycrest Hospital'),
(10044, 7932, 'no_lang_code', 'name', 'Tetramer Technologies (United States)'),
(10045, 7933, 'fr', 'name', 'Centre OrthopƩdique Santy'),
(10046, 7934, 'no_lang_code', 'name', 'Computational Physics (United States)'),
(10047, 7935, 'en', 'name', 'Texas Lutheran University'),
(10048, 7936, 'no_lang_code', 'name', 'Market Intelligence Strategy Centre (Australia)'),
(10049, 7937, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Ń„ŠøŠ·ŠøŠ¾Š»Š¾Š³ŠøŃ на Ń€Š°ŃŃ‚ŠµŠ½ŠøŃŃ‚Š° Šø генетика'),
(10050, 7937, 'en', 'name', 'Institute of Plant Physiology and Genetics'),
(10051, 7938, 'no_lang_code', 'name', 'Socratech (United States)'),
(10052, 7939, 'es', 'name', 'Instituto Nacional de Salud'),
(10053, 7940, 'no_lang_code', 'name', 'ALK-Abelló (Denmark)'),
(10054, 7941, 'no_lang_code', 'name', 'Zywie (United States)'),
(10055, 7942, 'en', 'name', 'Illinois Department of Human Services'),
(10056, 7943, 'en', 'name', 'St. Eugenio Hospital'),
(10057, 7943, 'it', 'name', 'Ospedale S. Eugenio'),
(10058, 7944, 'no_lang_code', 'name', 'L3Harris (Canada)'),
(10059, 7945, 'no_lang_code', 'name', 'OptoSonics (United States)'),
(10060, 7946, 'no_lang_code', 'name', 'DNA Software (United States)'),
(10061, 7947, 'no_lang_code', 'name', 'Medicago (Canada)'),
(10062, 7948, 'no_lang_code', 'name', 'Response Biomedical (Canada)'),
(10063, 7949, 'en', 'name', 'Fowler Kennedy Sport Medicine Clinic'),
(10064, 7950, 'en', 'name', 'Developmental Studies Center'),
(10065, 7951, 'no_lang_code', 'name', 'Conecta'),
(10066, 7952, 'en', 'name', 'Didi Hirsch Mental Health Services'),
(10067, 7953, 'no_lang_code', 'name', 'H & N Instruments (United States)'),
(10068, 7954, 'no_lang_code', 'name', 'CPS Research'),
(10069, 7955, 'no_lang_code', 'name', 'Forecasting International (United States)'),
(10070, 7956, 'no_lang_code', 'name', 'Mircom Technologies (Canada)'),
(10071, 7957, 'en', 'name', 'New North Citizens Council'),
(10072, 7958, 'no_lang_code', 'name', 'Aegera Therapeutics (Canada)'),
(10073, 7959, 'en', 'name', 'Health and Hospital Corporation'),
(10074, 7960, 'pt', 'name', 'Instituto Nacional de SaĆŗde'),
(10075, 7961, 'en', 'name', 'Society for Public Health Education'),
(10076, 7962, 'en', 'name', 'National Coalition of STD Directors'),
(10077, 7963, 'fr', 'name', 'Centre Hospitalier de la CƓte Basque'),
(10078, 7964, 'no_lang_code', 'name', 'Westinghouse Electric (Sweden)'),
(10079, 7965, 'en', 'name', 'Quality of Life Research Center'),
(10080, 7966, 'no_lang_code', 'name', 'Scott Sabolich Prosthetics And Research (United States)'),
(10081, 7967, 'en', 'name', 'Sheffield Kidney Institute'),
(10082, 7968, 'no_lang_code', 'name', 'ViewPlus (United States)'),
(10083, 7969, 'no_lang_code', 'name', 'DSM (United States)'),
(10084, 7970, 'no_lang_code', 'name', 'Nitek (United States)'),
(10085, 7971, 'no_lang_code', 'name', 'Lipella Pharmaceuticals (United States)'),
(10086, 7972, 'no_lang_code', 'name', 'Omega Optics (United States)'),
(10087, 7973, 'en', 'name', 'St. Joseph''s Children''s Hospital'),
(10088, 7974, 'de', 'name', 'Fraunhofer-Institut für Molekularbiologie und Angewandte Oekologie'),
(10089, 7974, 'en', 'name', 'Fraunhofer Institute for Molecular Biology and Applied Ecology'),
(10090, 7975, 'no_lang_code', 'name', 'Ocutech (United States)'),
(10091, 7976, 'de', 'name', 'Max-Born-Institut für Nichtlineare Optik und Kurzzeitspektroskopie'),
(10092, 7976, 'en', 'name', 'Max-Born-Institute for Nonlinear Optics and Short Pulse Spectroscopy'),
(10093, 7977, 'en', 'name', 'Daytona State College'),
(10094, 7978, 'en', 'name', 'United Hospital Fund'),
(10095, 7979, 'en', 'name', 'V.P. Komisarenko Institute of Endocrinology and Metabolism'),
(10096, 7979, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ енГокринології та Š¾Š±Š¼Ń–Š½Ńƒ речовин ім. Š’.П. ŠšŠ¾Š¼Ń–ŃŠ°Ń€ŠµŠ½ŠŗŠ°'),
(10097, 7980, 'no_lang_code', 'name', 'Behavioral Research Incorporated (United States)'),
(10098, 7981, 'de', 'name', 'Institut für biologische Forschung'),
(10099, 7982, 'en', 'name', 'Canadian Memorial Chiropractic College'),
(10100, 7983, 'en', 'name', 'Southeast Louisiana Veterans Health Care System'),
(10101, 7984, 'en', 'name', 'Shriners Hospitals for Children - Honolulu'),
(10102, 7985, 'no_lang_code', 'name', 'Astri Polska (Poland)'),
(10103, 7986, 'en', 'name', 'Algonquin College'),
(10104, 7986, 'fr', 'name', 'CollĆØge Algonquin'),
(10105, 7987, 'en', 'name', 'Leicester Royal Infirmary'),
(10106, 7988, 'en', 'name', 'Lines for Life'),
(10107, 7989, 'en', 'name', 'Natural Science Collections Alliance'),
(10108, 7990, 'no_lang_code', 'name', 'Scottish and Southern Energy (United Kingdom)'),
(10109, 7991, 'fr', 'name', 'Association francophone pour le savoir'),
(10110, 7992, 'no_lang_code', 'name', 'Christie (Canada)'),
(10111, 7993, 'no_lang_code', 'name', 'DOSECC Exploration Services (United States)'),
(10112, 7994, 'en', 'name', 'China Institute of Veterinary Drug Control'),
(10113, 7994, 'zh', 'name', 'äø­å›½å…½åŒ»čÆå“ē›‘åÆŸę‰€'),
(10114, 7995, 'no_lang_code', 'name', 'Natural Pharmacia International (United States)'),
(10115, 7996, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų£Ų³ŲØŲ§ŁŠŲ±ā€Ž'),
(10116, 7996, 'en', 'name', 'Aspire Academy'),
(10117, 7997, 'it', 'name', 'Consorzio Roma Ricerche'),
(10118, 7998, 'no_lang_code', 'name', 'Xerox (United States)'),
(10119, 7999, 'en', 'name', 'University of Abuja Teaching Hospital'),
(10120, 8000, 'en', 'name', 'Thunder Bay Regional Health Sciences Centre'),
(10121, 8001, 'en', 'name', 'Zhejiang Provincial People''s Hospital'),
(10122, 8002, 'no_lang_code', 'name', 'Polaris Motion (Canada)'),
(10123, 8003, 'ja', 'name', '市立四旄市病院'),
(10124, 8003, 'no_lang_code', 'name', 'Yokkaichi Municipal Hospital'),
(10125, 8004, 'en', 'name', 'American Society of Andrology'),
(10126, 8005, 'no_lang_code', 'name', 'NovoBiotic Pharmaceuticals'),
(10127, 8006, 'no_lang_code', 'name', 'Cell Signaling Technology (United States)'),
(10128, 8007, 'cy', 'name', 'Ysbyty Cyffredinol Llwynhelyg'),
(10129, 8007, 'en', 'name', 'Withybush General Hospital'),
(10130, 8008, 'no_lang_code', 'name', 'MicroTransponder (United States)'),
(10131, 8009, 'en', 'name', 'St. Mary''s Medical Center'),
(10132, 8010, 'en', 'name', 'Royal Geographical Society'),
(10133, 8011, 'ja', 'name', 'å°ē”°åŽŸåø‚ē«‹ē—…é™¢'),
(10134, 8011, 'no_lang_code', 'name', 'Odawara Municipal Hospital'),
(10135, 8012, 'en', 'name', 'Center for Environmental Health'),
(10136, 8013, 'de', 'name', 'Fritz-Haber-Institut der Max-Planck-Gesellschaft'),
(10137, 8013, 'en', 'name', 'Fritz Haber Institute of the Max Planck Society'),
(10138, 8014, 'no_lang_code', 'name', 'FTSE (Japan)'),
(10139, 8015, 'no_lang_code', 'name', 'Eutropics Pharmaceuticals (United States)'),
(10140, 8016, 'no_lang_code', 'name', 'Immersion (Canada)'),
(10141, 8017, 'en', 'name', 'American Society for Parenteral and Enteral Nutrition'),
(10142, 8018, 'no_lang_code', 'name', 'Welichem Biotech (Canada)'),
(10143, 8019, 'no_lang_code', 'name', 'Auerbach Associates (United States)'),
(10144, 8020, 'en', 'name', 'Virginia Wesleyan College'),
(10145, 8021, 'no_lang_code', 'name', 'Weinberg Medical Physics (United States)'),
(10146, 8022, 'en', 'name', 'Kennedy Space Center'),
(10147, 8022, 'es', 'name', 'Centro Espacial John F. Kennedy'),
(10148, 8023, 'en', 'name', 'Clinicians Report Foundation'),
(10149, 8024, 'no_lang_code', 'name', 'Athersys (United States)'),
(10150, 8025, 'en', 'name', 'Visiting Nurse Service of New York'),
(10151, 8026, 'en', 'name', 'Manchester Royal Infirmary'),
(10152, 8027, 'it', 'name', 'Centro di Riferimento Oncologico'),
(10153, 8028, 'no_lang_code', 'name', 'Mitre (United States)'),
(10154, 8029, 'en', 'name', 'H.T. Harvey & Associates');
INSERT INTO `ror_settings` VALUES
(10155, 8030, 'no_lang_code', 'name', 'Astro-Med (United States)'),
(10156, 8031, 'no_lang_code', 'name', 'Antigen Express (United States)'),
(10157, 8032, 'en', 'name', 'Rothman Institute'),
(10158, 8033, 'no_lang_code', 'name', 'Plentyoffish Media (Canada)'),
(10159, 8034, 'no_lang_code', 'name', 'Reliable Biopharmaceutical Corporation (United States)'),
(10160, 8035, 'en', 'name', 'Suffolk County Department of Health Services'),
(10161, 8036, 'en', 'name', 'Nagahama Institute of Bio-Science and Technology'),
(10162, 8036, 'ja', 'name', 'é•·ęµœćƒć‚¤ć‚Ŗå¤§å­¦'),
(10163, 8037, 'no_lang_code', 'name', 'Zen Bio (United States)'),
(10164, 8038, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Denmark)'),
(10165, 8039, 'en', 'name', 'Bay ZoltƔn Foundation for Applied Research'),
(10166, 8039, 'hu', 'name', 'Bay ZoltÔn Alkalmazott KutatÔsi Közhasznú Nonprofit Kft'),
(10167, 8040, 'en', 'name', 'Tilganga Institute of Ophthalmology'),
(10168, 8040, 'ne', 'name', 'तिलगंगा ą¤†ą¤ą¤–ą¤¾ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(10169, 8041, 'no_lang_code', 'name', 'Advantagene (United States)'),
(10170, 8042, 'es', 'name', 'Direccion General de Epidemiologia'),
(10171, 8043, 'en', 'name', 'National Trust'),
(10172, 8044, 'no_lang_code', 'name', 'Bechtel (United States)'),
(10173, 8045, 'no_lang_code', 'name', 'BioStrategies (United States)'),
(10174, 8046, 'en', 'name', 'Manchester College'),
(10175, 8047, 'en', 'name', 'Fort Worth Museum of Science and History'),
(10176, 8048, 'en', 'name', 'Abacus Health Solutions'),
(10177, 8049, 'hu', 'name', 'OrszÔgos PszichiÔtriai és Neurológiai Intézet'),
(10178, 8050, 'en', 'name', 'Occupational Safety & Health Administration'),
(10179, 8051, 'no_lang_code', 'name', 'Lundin Mining (Portugal)'),
(10180, 8052, 'en', 'name', 'Okinawa Prefectural Chubu Hospital'),
(10181, 8052, 'ja', 'name', 'ę²–ēø„ēœŒē«‹äø­éƒØē—…é™¢'),
(10182, 8053, 'en', 'name', 'TB Alliance'),
(10183, 8054, 'en', 'name', 'Steadman Philippon Research Institute'),
(10184, 8055, 'en', 'name', 'Pennsylvania Hospital'),
(10185, 8056, 'no_lang_code', 'name', 'GrammaTech (United States)'),
(10186, 8057, 'en', 'name', 'National Institute of Health Dr. Ricardo Jorge'),
(10187, 8057, 'pt', 'name', 'Instituto Nacional de SaĆŗde Dr. Ricardo Jorge'),
(10188, 8058, 'en', 'name', 'Tomah VA Medical Center'),
(10189, 8059, 'en', 'name', 'Onslow Memorial Hospital'),
(10190, 8060, 'no_lang_code', 'name', 'Consolidated Safety Services-Dynamac (United States)'),
(10191, 8061, 'tr', 'name', 'Adli Tıp Kurumu'),
(10192, 8062, 'en', 'name', 'Dallas County'),
(10193, 8063, 'en', 'name', 'Fort Peck Community College'),
(10194, 8064, 'es', 'name', 'Hospital Intermutual de Levante'),
(10195, 8065, 'no_lang_code', 'name', 'AgentSheets (United States)'),
(10196, 8066, 'no_lang_code', 'name', 'Avanti Polar Lipids (United States)'),
(10197, 8067, 'en', 'name', 'Millennium Pain Center'),
(10198, 8068, 'no_lang_code', 'name', 'Capsugel (United States)'),
(10199, 8069, 'no_lang_code', 'name', 'Applied BioPhysics (United States)'),
(10200, 8070, 'en', 'name', 'Overton Brooks VA Medical Center'),
(10201, 8071, 'en', 'name', 'Delaware County Community College'),
(10202, 8072, 'no_lang_code', 'name', 'ActionDog (United Kingdom)'),
(10203, 8073, 'en', 'name', 'Reformar'),
(10204, 8074, 'en', 'name', 'Kagoshima Medical Center'),
(10205, 8074, 'ja', 'name', 'é¹æå…å³¶åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(10206, 8075, 'en', 'name', 'Fairview Developmental Center'),
(10207, 8076, 'it', 'name', 'Ospedale Microcitemico'),
(10208, 8077, 'no_lang_code', 'name', 'Terpenoid Therapeutics (United States)'),
(10209, 8078, 'no_lang_code', 'name', 'Advanced Cooling Technologies (United States)'),
(10210, 8079, 'en', 'name', 'Yukon River Inter Tribal Watershed Council'),
(10211, 8080, 'no_lang_code', 'name', 'Sabbagh Associates'),
(10212, 8081, 'en', 'name', 'Paradise Valley Hospital'),
(10213, 8082, 'en', 'name', 'Georgia Department of Agriculture'),
(10214, 8083, 'de', 'name', 'Wunschbaby Institut für Kinderwunsch'),
(10215, 8084, 'no_lang_code', 'name', 'CorpoGen (Colombia)'),
(10216, 8085, 'no_lang_code', 'name', 'Willis Towers Watson (United Kingdom)'),
(10217, 8086, 'no_lang_code', 'name', 'Advanced Brain Monitoring (United States)'),
(10218, 8087, 'no_lang_code', 'name', 'Orthocare Innovations (United States)'),
(10219, 8088, 'en', 'name', 'Ministry of Justice'),
(10220, 8088, 'tr', 'name', 'Adalet Bakanlığı'),
(10221, 8089, 'no_lang_code', 'name', 'MetaMateria (United States)'),
(10222, 8090, 'no_lang_code', 'name', 'Celaya, Emparanza y Galdos Internacional (Spain)'),
(10223, 8091, 'en', 'name', 'Bethany College - Kansas'),
(10224, 8092, 'no_lang_code', 'name', 'Sigma Technologies (United States)'),
(10225, 8093, 'en', 'name', 'Reproductive Medicine Associates of New Jersey'),
(10226, 8094, 'no_lang_code', 'name', 'Geotab (Canada)'),
(10227, 8095, 'en', 'name', 'Cooperative Clinical Drug Research and Development'),
(10228, 8096, 'no_lang_code', 'name', 'NanoComposix (United States)'),
(10229, 8097, 'en', 'name', 'National Center for Health Statistics'),
(10230, 8098, 'no_lang_code', 'name', 'Envigo (Germany)'),
(10231, 8099, 'no_lang_code', 'name', 'Cell Preservation Services (United States)'),
(10232, 8100, 'en', 'name', 'Greenwood Genetic Center'),
(10233, 8101, 'en', 'name', 'Summa Health System'),
(10234, 8102, 'en', 'name', 'Australian Institute of Nuclear Science and Engineering'),
(10235, 8103, 'no_lang_code', 'name', 'Altor BioScience (United States)'),
(10236, 8104, 'fr', 'name', 'Institut Claudius Regaud'),
(10237, 8105, 'en', 'name', 'Surgical Materials Testing Laboratory'),
(10238, 8106, 'de', 'name', 'München Klinik'),
(10239, 8106, 'en', 'name', 'Munich Municipal Hospital Group'),
(10240, 8107, 'no_lang_code', 'name', 'Edvotek (United States)'),
(10241, 8108, 'en', 'name', 'Bristol Institute for Transfusion Sciences'),
(10242, 8109, 'en', 'name', 'American College of Cardiology'),
(10243, 8110, 'en', 'name', 'Wolters Kluwer Health'),
(10244, 8111, 'ja', 'name', 'å¤§é˜Ŗåŗœęøˆē”Ÿä¼šäø­ę“„ē—…é™¢'),
(10245, 8111, 'no_lang_code', 'name', 'Saiseikai Nakatsu Hospital'),
(10246, 8112, 'en', 'name', 'Shriners for Children Medical Center - Pasadena'),
(10247, 8113, 'en', 'name', 'Canadian College of Naturopathic Medicine'),
(10248, 8114, 'en', 'name', 'Beatson West of Scotland Cancer Centre'),
(10249, 8115, 'en', 'name', 'Defence Food Research Laboratory'),
(10250, 8115, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤–ą¤¾ą¤¦ą„ą¤Æ ą¤¶ą„‹ą¤§ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(10251, 8116, 'en', 'name', 'Asbury University'),
(10252, 8117, 'en', 'name', 'Southern Regional Area Health Education Centers'),
(10253, 8118, 'fr', 'name', 'Institut de MƩdecine Tropicale du Service de SantƩ des ArmƩes'),
(10254, 8119, 'en', 'name', 'Hebrew Home of Greater Washington'),
(10255, 8120, 'en', 'name', 'International Food Policy Research Institute'),
(10256, 8120, 'es', 'name', 'Instituto Internacional de Investigación sobre Políticas Alimentarias'),
(10257, 8120, 'fr', 'name', 'Institut International de Recherche sur les Politiques Alimentaires'),
(10258, 8121, 'en', 'name', 'Youth Science Canada'),
(10259, 8122, 'en', 'name', 'National Institute of Ayurveda'),
(10260, 8122, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(10261, 8123, 'no_lang_code', 'name', 'Active Signal Technologies (United States)'),
(10262, 8124, 'no_lang_code', 'name', 'iTherX (United States)'),
(10263, 8125, 'no_lang_code', 'name', 'ING Robotic Aviation'),
(10264, 8126, 'no_lang_code', 'name', 'DMH Associates (United States)'),
(10265, 8127, 'no_lang_code', 'name', 'Colgate-Palmolive (United States)'),
(10266, 8128, 'no_lang_code', 'name', 'Conversion Energy Enterprises (United States)'),
(10267, 8129, 'no_lang_code', 'name', 'Schlumberger (United Kingdom)'),
(10268, 8130, 'no_lang_code', 'name', 'Cirrus Logic (United Kingdom)'),
(10269, 8131, 'en', 'name', 'Tachikawa Hospital'),
(10270, 8131, 'ja', 'name', 'ē«‹å·ē—…é™¢'),
(10271, 8132, 'en', 'name', 'Vrinnevi Hospital'),
(10272, 8132, 'sv', 'name', 'Vrinnevisjukhuset i Norrkƶping'),
(10273, 8133, 'en', 'name', 'Military Institute of Hygiene and Epidemiology'),
(10274, 8133, 'pl', 'name', 'Wojskowy Instytut Higieny i Epidemiologii'),
(10275, 8134, 'no_lang_code', 'name', 'Beckham Company (United States)'),
(10276, 8135, 'no_lang_code', 'name', 'Tristan Technologies (United States)'),
(10277, 8136, 'en', 'name', 'Anderson Orthopaedic Research Institute'),
(10278, 8137, 'no_lang_code', 'name', 'Epirus Biopharmaceuticals (United States)'),
(10279, 8138, 'en', 'name', 'West Jefferson Medical Center'),
(10280, 8139, 'en', 'name', 'Gila River Indian Community'),
(10281, 8140, 'no_lang_code', 'name', 'Novozymes (United States)'),
(10282, 8141, 'no_lang_code', 'name', 'Polaris Health Direction'),
(10283, 8142, 'no_lang_code', 'name', 'Steris (United States)'),
(10284, 8143, 'sv', 'name', 'VƄrdcentralen Teleborg'),
(10285, 8144, 'en', 'name', 'Institute of Molecular Genetics Luigi Luca Cavalli-Sforza'),
(10286, 8144, 'it', 'name', 'Istituto di Genetica Molecolare'),
(10287, 8145, 'no_lang_code', 'name', 'QLT (Canada)'),
(10288, 8146, 'en', 'name', 'Progeria Research Foundation'),
(10289, 8147, 'no_lang_code', 'name', 'Giro (Canada)'),
(10290, 8148, 'en', 'name', 'Notre Dame de Namur University'),
(10291, 8148, 'fr', 'name', 'UniversitƩ notre-dame-de-namur'),
(10292, 8149, 'no_lang_code', 'name', 'Kodak (United Kingdom)'),
(10293, 8150, 'no_lang_code', 'name', 'Transposagen Biopharmaceuticals (United States)'),
(10294, 8151, 'en', 'name', 'National Disease Research Interchange'),
(10295, 8152, 'en', 'name', 'Valley Presbyterian Hospital'),
(10296, 8153, 'en', 'name', 'Wayne Memorial Hospital'),
(10297, 8154, 'en', 'name', 'Center for Genetic Engineering and Biotechnology'),
(10298, 8154, 'es', 'name', 'Centro de Ingenierƭa GenƩtica y Biotecnologƭa'),
(10299, 8155, 'en', 'name', 'Council of State Governments'),
(10300, 8156, 'en', 'name', 'Inter-Tribal Council of Michigan'),
(10301, 8157, 'no_lang_code', 'name', 'PowerWorld (United States)'),
(10302, 8158, 'no_lang_code', 'name', 'Abeome Corporation (United States)'),
(10303, 8159, 'en', 'name', 'AIDS Committee of Toronto'),
(10304, 8160, 'no_lang_code', 'name', 'Michigan Molecular Institute (United States)'),
(10305, 8161, 'no_lang_code', 'name', 'Noble Life Sciences (United States)'),
(10306, 8162, 'no_lang_code', 'name', 'Etubics (United States)'),
(10307, 8163, 'en', 'name', 'National Suicide Research Foundation'),
(10308, 8164, 'en', 'name', 'DinƩ College'),
(10309, 8165, 'no_lang_code', 'name', 'MyScience (United Kingdom)'),
(10310, 8166, 'no_lang_code', 'name', 'Parallel Synthesis Technologies (United States)'),
(10311, 8167, 'en', 'name', 'QuƩbec International'),
(10312, 8168, 'no_lang_code', 'name', 'Peake DeLancey Printers (United States)'),
(10313, 8169, 'en', 'name', 'Chemical Pharmaceutical Research Institute'),
(10314, 8170, 'en', 'name', 'Rath Research Institute'),
(10315, 8171, 'it', 'name', 'Ospedale di Mirano'),
(10316, 8172, 'no_lang_code', 'name', 'Thromgen (United States)'),
(10317, 8173, 'de', 'name', 'Allgemeine Unfallversicherungsanstalt'),
(10318, 8174, 'en', 'name', 'Materials Science & Engineering'),
(10319, 8175, 'no_lang_code', 'name', 'Levret'),
(10320, 8176, 'en', 'name', 'AIDS Service Center of New York City'),
(10321, 8177, 'en', 'name', 'Bacone College'),
(10322, 8178, 'no_lang_code', 'name', 'CyberTech (United States)'),
(10323, 8179, 'ja', 'name', 'ę”œę©‹ęø”č¾ŗē—…é™¢'),
(10324, 8179, 'no_lang_code', 'name', 'Sakurabashi Watanabe Hospital'),
(10325, 8180, 'en', 'name', 'Computer Aids for Chemical Engineering'),
(10326, 8181, 'no_lang_code', 'name', 'DuPont (United Kingdom)'),
(10327, 8182, 'no_lang_code', 'name', 'KMS Fusion (United States)'),
(10328, 8183, 'no_lang_code', 'name', 'Utsi Electronics (United Kingdom)'),
(10329, 8184, 'en', 'name', 'Hyogo Brain and Heart Center'),
(10330, 8184, 'ja', 'name', 'å…µåŗ«ēœŒē«‹å§«č·Æå¾Ŗē’°å™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(10331, 8185, 'no_lang_code', 'name', 'VideoMining (United States)'),
(10332, 8186, 'no_lang_code', 'name', 'Nanomaterials & Nanofabrication Laboratories (United States)'),
(10333, 8187, 'en', 'name', 'New England Board of Higher Education'),
(10334, 8188, 'no_lang_code', 'name', 'Nottingham Scientific (United Kingdom)'),
(10335, 8189, 'no_lang_code', 'name', 'Continuum Dynamics (United States)'),
(10336, 8190, 'en', 'name', 'Tacoma/Valley Radiation Oncology Centers'),
(10337, 8191, 'no_lang_code', 'name', 'Exocell (United States)'),
(10338, 8192, 'no_lang_code', 'name', 'Panasonic (United Kingdom)'),
(10339, 8193, 'en', 'name', 'China University of Science and Technology'),
(10340, 8193, 'zh', 'name', 'äø­čÆē§‘ęŠ€å¤§å­ø'),
(10341, 8194, 'en', 'name', 'La Jolla Bioengineering Institute'),
(10342, 8195, 'en', 'name', 'China Institute of Sport Science'),
(10343, 8195, 'zh', 'name', '国家体育总局体育科学研究所'),
(10344, 8196, 'en', 'name', 'Stanley Street Treatment and Resources'),
(10345, 8197, 'en', 'name', 'Hope Heart Institute'),
(10346, 8198, 'no_lang_code', 'name', 'Phenomenome Discoveries (Canada)'),
(10347, 8199, 'en', 'name', 'Joint Commission'),
(10348, 8200, 'en', 'name', 'Toronto East General Hospital'),
(10349, 8201, 'it', 'name', 'SocietĆ  Italiana di Medicina Generale'),
(10350, 8202, 'en', 'name', 'New Victoria Theatre'),
(10351, 8203, 'no_lang_code', 'name', 'GlaxoSmithKline (Switzerland)'),
(10352, 8204, 'en', 'name', 'Retina Foundation of the Southwest'),
(10353, 8205, 'de', 'name', 'Medizinisches Versorgungszentrum'),
(10354, 8205, 'en', 'name', 'Center for HIV and Hepatogastroenterology'),
(10355, 8206, 'no_lang_code', 'name', 'World Precision Instruments (United States)'),
(10356, 8207, 'no_lang_code', 'name', 'Jarvik Heart (United States)'),
(10357, 8208, 'en', 'name', 'Health Services Center'),
(10358, 8209, 'no_lang_code', 'name', 'FibroGen (United States)'),
(10359, 8210, 'fr', 'name', 'Images & RƩseaux'),
(10360, 8211, 'en', 'name', 'Kunming Institute of Precious Metals'),
(10361, 8212, 'it', 'name', 'IRCCS Materno Infantile Burlo Garofolo, Ospedale Infantile Burlo Garofolo'),
(10362, 8213, 'en', 'name', 'International Society for Experimental Hematology'),
(10363, 8214, 'en', 'name', 'DairyNZ'),
(10364, 8215, 'en', 'name', 'Livingstone College'),
(10365, 8216, 'en', 'name', 'Yuli Veterans Hospital'),
(10366, 8216, 'zh', 'name', 'äøƒęœˆé€€ä¼å†›äŗŗåŒ»é™¢'),
(10367, 8217, 'en', 'name', 'St. Joseph Health System'),
(10368, 8218, 'en', 'name', 'Utah Department of Human Services'),
(10369, 8219, 'no_lang_code', 'name', 'Umpqua Research Company (United States)'),
(10370, 8220, 'en', 'name', 'Malawi-Liverpool-Wellcome Trust Clinical Research Programme'),
(10371, 8221, 'no_lang_code', 'name', 'Ocular Surface Center'),
(10372, 8222, 'no_lang_code', 'name', 'Tactus Technology (United States)'),
(10373, 8223, 'en', 'name', 'Swedish Covenant Hospital'),
(10374, 8224, 'no_lang_code', 'name', 'Translink (United Kingdom)'),
(10375, 8225, 'en', 'name', 'Stillman College'),
(10376, 8226, 'en', 'name', 'Tsukuba Medical Center Hospital'),
(10377, 8226, 'ja', 'name', 'ē­‘ę³¢ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼ē—…é™¢'),
(10378, 8227, 'no_lang_code', 'name', 'Pro Change Behavior Systems (United States)'),
(10379, 8228, 'en', 'name', 'Gundersen Lutheran Hospital'),
(10380, 8229, 'en', 'name', 'Environmental Protection Agency'),
(10381, 8230, 'en', 'name', 'White Mountains Community College'),
(10382, 8231, 'no_lang_code', 'name', 'Saint-Gobain (United States)'),
(10383, 8232, 'no_lang_code', 'name', 'Vesticon (United States)'),
(10384, 8233, 'en', 'name', 'St. Luke''s Hospital'),
(10385, 8234, 'no_lang_code', 'name', 'Sharklet Technologies (United States)'),
(10386, 8235, 'no_lang_code', 'name', 'Enzo Biochem (United States)'),
(10387, 8236, 'en', 'name', 'Maaruti College of Dental sciences & Research Center'),
(10388, 8237, 'en', 'name', 'Colorado Center for Reproductive Medicine'),
(10389, 8238, 'en', 'name', 'International Center for Research on Women'),
(10390, 8239, 'no_lang_code', 'name', 'WRc (United Kingdom)'),
(10391, 8240, 'no_lang_code', 'name', 'ProSci Incorporated (United States)'),
(10392, 8241, 'en', 'name', 'Swami Devi Dyal Hospital and Dental College'),
(10393, 8242, 'en', 'name', 'Trillium Health Centre'),
(10394, 8243, 'en', 'name', 'International Rescue Committee'),
(10395, 8244, 'en', 'name', 'Girls Incorporated'),
(10396, 8245, 'no_lang_code', 'name', 'Atmel (United States)'),
(10397, 8246, 'no_lang_code', 'name', 'Isowater Corporation (Canada)'),
(10398, 8247, 'no_lang_code', 'name', 'Crosslight Software (Canada)'),
(10399, 8248, 'no_lang_code', 'name', 'Dot Metrics Technologies (United States)'),
(10400, 8249, 'fr', 'name', 'Centre d''Etudes Prospectives et d''Informations Internationales'),
(10401, 8250, 'en', 'name', 'Alwar Pharmacy College'),
(10402, 8251, 'en', 'name', 'Block Center'),
(10403, 8252, 'no_lang_code', 'name', 'Safran Electronics (Canada)'),
(10404, 8253, 'en', 'name', 'Galiano Conservancy Association'),
(10405, 8254, 'en', 'name', 'State Research Center for Applied Microbiology and Biotechnology'),
(10406, 8254, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр приклаГной микробиологии Šø биотехнологии'),
(10407, 8255, 'de', 'name', 'Max-Planck-Institut für Molekulare Physiologie'),
(10408, 8255, 'en', 'name', 'Max Planck Institute of Molecular Physiology'),
(10409, 8256, 'en', 'name', 'Lancaster Theological Seminary, United Church of Christ'),
(10410, 8257, 'hu', 'name', 'Petz AladÔr Megyei Oktató KórhÔz'),
(10411, 8258, 'en', 'name', 'Cardiopulmonary Research Science and Technology Institute'),
(10412, 8259, 'no_lang_code', 'name', 'NeuroBioTex (United States)'),
(10413, 8260, 'en', 'name', 'Northwest Portland Area Indian Health Board'),
(10414, 8261, 'no_lang_code', 'name', 'EyePoint Pharmaceuticals (United States)'),
(10415, 8262, 'en', 'name', 'Burton Hospitals NHS Foundation Trust'),
(10416, 8263, 'no_lang_code', 'name', 'Exponents (United States)'),
(10417, 8264, 'no_lang_code', 'name', 'InPore Vape Technologies (United States)'),
(10418, 8265, 'no_lang_code', 'name', 'Simbex (United States)'),
(10419, 8266, 'en', 'name', 'Libreville Hospital'),
(10420, 8266, 'fr', 'name', 'Centre Hospitalier de Libreville'),
(10421, 8267, 'no_lang_code', 'name', 'ASL Analytical (United States)'),
(10422, 8268, 'no_lang_code', 'name', 'Vortant Technologies (United States)'),
(10423, 8269, 'en', 'name', 'Eastern Iowa Community College'),
(10424, 8270, 'pt', 'name', 'Estrutura de Missão para os Assuntos do Mar'),
(10425, 8271, 'no_lang_code', 'name', 'Innovative Micro Technology (United States)'),
(10426, 8272, 'en', 'name', 'National Dental Centre of Singapore'),
(10427, 8273, 'en', 'name', 'Upsala College'),
(10428, 8274, 'en', 'name', 'Southwest Tennessee Community College'),
(10429, 8275, 'en', 'name', 'Saddleback College'),
(10430, 8276, 'en', 'name', 'Warneford Hospital'),
(10431, 8277, 'no_lang_code', 'name', 'United Therapeutics (United States)'),
(10432, 8278, 'en', 'name', 'VA Central California Health Care System'),
(10433, 8279, 'en', 'name', 'Fairbanks Native Association'),
(10434, 8280, 'no_lang_code', 'name', 'LaunchPoint Technologies (United States)'),
(10435, 8281, 'en', 'name', 'Tennessee Department of Health'),
(10436, 8282, 'no_lang_code', 'name', 'Iridian Spectral Technologies (Canada)'),
(10437, 8283, 'cy', 'name', 'Y Gymdeithas Frenhinol'),
(10438, 8283, 'en', 'name', 'Royal Society'),
(10439, 8284, 'ja', 'name', 'ęø“ä»ä¼šć‚°ćƒ«ćƒ¼ćƒ—'),
(10440, 8284, 'no_lang_code', 'name', 'Teine Keijinkai Hospital'),
(10441, 8285, 'no_lang_code', 'name', 'Greater Saskatoon Chamber of Commerce'),
(10442, 8286, 'no_lang_code', 'name', 'BioSurfaces (United States)'),
(10443, 8287, 'no_lang_code', 'name', 'NovaLipids (Canada)'),
(10444, 8288, 'en', 'name', 'Institute for Disabilities Research and Training'),
(10445, 8289, 'en', 'name', 'Victoria General Hospital'),
(10446, 8290, 'no_lang_code', 'name', 'Mt. San Antonio College'),
(10447, 8291, 'en', 'name', 'Institute of Nutrition of Central America and Panama'),
(10448, 8291, 'es', 'name', 'Instituto de Nutrición de Centro América y PanamÔ'),
(10449, 8292, 'en', 'name', 'Population Services International'),
(10450, 8293, 'en', 'name', 'Indian Grassland and Fodder Research Institute'),
(10451, 8294, 'en', 'name', 'Recovery Consultants of Atlanta'),
(10452, 8295, 'en', 'name', 'Consortium GARR'),
(10453, 8296, 'no_lang_code', 'name', 'PSIwebware (United States)'),
(10454, 8297, 'en', 'name', 'Institute of Himalayan Bioresource Technology'),
(10455, 8298, 'en', 'name', 'Mexican Social Security Institute'),
(10456, 8298, 'es', 'name', 'Instituto Mexicano del Seguro Social'),
(10457, 8299, 'en', 'name', 'Human Resources Research Organization'),
(10458, 8300, 'no_lang_code', 'name', 'NanoSonic (United States)'),
(10459, 8301, 'en', 'name', 'Colorado Center for Bone Research'),
(10460, 8302, 'no_lang_code', 'name', 'Carl Zeiss (United Kingdom)'),
(10461, 8303, 'no_lang_code', 'name', 'Doctors Company (United States)'),
(10462, 8304, 'no_lang_code', 'name', 'Electrovaya (Canada)'),
(10463, 8305, 'en', 'name', 'Applied Science and Technology Research Institute'),
(10464, 8306, 'no_lang_code', 'name', 'NexTalk (United States)'),
(10465, 8307, 'no_lang_code', 'name', 'MƩdiMabs (Canada)'),
(10466, 8308, 'no_lang_code', 'name', 'DiaMedica (Canada)'),
(10467, 8309, 'en', 'name', 'Institute of Noetic Sciences'),
(10468, 8310, 'no_lang_code', 'name', 'BioLinx (United States)'),
(10469, 8311, 'es', 'name', 'Comisión Honoraria de Lucha contra el cÔncer'),
(10470, 8312, 'en', 'name', 'Rural Development Administration'),
(10471, 8313, 'en', 'name', 'European Society for Medical Oncology'),
(10472, 8314, 'no_lang_code', 'name', 'Pacific Design Technologies (United States)'),
(10473, 8315, 'en', 'name', 'Institute of Ocular Microsurgery'),
(10474, 8315, 'es', 'name', 'Instituto de MicrocirugĆ­a Ocular'),
(10475, 8316, 'en', 'name', 'Behavior Therapy Associates'),
(10476, 8317, 'en', 'name', 'Tropical Diseases Research Centre'),
(10477, 8318, 'no_lang_code', 'name', 'Daniel H. Wagner Associates (United States)'),
(10478, 8319, 'en', 'name', 'Veterans Biomedical Research Institute'),
(10479, 8320, 'no_lang_code', 'name', 'Acadian Seaplants (Canada)'),
(10480, 8321, 'no_lang_code', 'name', 'Pulse Biosciences (United States)'),
(10481, 8322, 'no_lang_code', 'name', 'Albany Molecular Research (United States)'),
(10482, 8323, 'de', 'name', 'Kinderwunsch Zentrum Linz'),
(10483, 8323, 'en', 'name', 'Women''s General Hospital'),
(10484, 8324, 'en', 'name', 'Northern Ƅlvsborg county hospital'),
(10485, 8324, 'sv', 'name', 'Norra Ƅlvsborgs LƤnssjukhus'),
(10486, 8325, 'no_lang_code', 'name', 'L.B. Foster Rail Technologies (Canada)'),
(10487, 8326, 'no_lang_code', 'name', 'PDL BioPharma (United States)'),
(10488, 8327, 'no_lang_code', 'name', 'Cell2B (Portugal)'),
(10489, 8328, 'bg', 'name', 'Дпециализираната Болница за Активно лечение по ŠžŠ½ŠŗŠ¾Š»Š¾Š³ŠøŃ'),
(10490, 8328, 'en', 'name', 'Specialised Hospital for Active Treatment of Oncology'),
(10491, 8329, 'en', 'name', 'Maria Mitchell Association'),
(10492, 8330, 'en', 'name', 'Wordsley Hospital'),
(10493, 8331, 'en', 'name', 'Beijing Red Cross Blood Center'),
(10494, 8332, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗ ē¦äŗ•åæƒč‡“č”€åœ§ć‚»ćƒ³ć‚æćƒ¼ ē¦äŗ•å¾Ŗē’°å™Øē—…é™¢'),
(10495, 8332, 'no_lang_code', 'name', 'Fukui CardioVascular Center'),
(10496, 8333, 'no_lang_code', 'name', 'AbleNet (United States)'),
(10497, 8334, 'no_lang_code', 'name', 'Summit (United Kingdom)'),
(10498, 8335, 'no_lang_code', 'name', 'Motion Control (United States)'),
(10499, 8336, 'no_lang_code', 'name', 'Insight Genetics (United States)'),
(10500, 8337, 'en', 'name', 'University of Missouri Health System'),
(10501, 8338, 'fr', 'name', 'Centre de SantƩ et de Services Sociaux Cavendish'),
(10502, 8339, 'en', 'name', 'Biomedical Research Institute'),
(10503, 8340, 'no_lang_code', 'name', 'Genomas (United States)'),
(10504, 8341, 'no_lang_code', 'name', 'E.ON (United Kingdom)'),
(10505, 8342, 'en', 'name', 'Employee Benefit Research Institute'),
(10506, 8343, 'no_lang_code', 'name', 'Cisco Systems (United States)'),
(10507, 8344, 'no_lang_code', 'name', 'Sanofi (Germany)'),
(10508, 8345, 'en', 'name', 'Arizona Department of Education'),
(10509, 8346, 'en', 'name', 'American Society of International Law'),
(10510, 8347, 'no_lang_code', 'name', 'ABS Consulting (United States)'),
(10511, 8348, 'no_lang_code', 'name', 'ProThera Biologics (United States)'),
(10512, 8349, 'no_lang_code', 'name', 'Pharmaceutical Formulations (United States)'),
(10513, 8350, 'pl', 'name', 'Instytut Ekspertyz Sądowych'),
(10514, 8351, 'no_lang_code', 'name', 'Actuated Medical (United States)'),
(10515, 8352, 'en', 'name', 'Center for Occupational and Environmental Neurology'),
(10516, 8353, 'no_lang_code', 'name', 'FHC (United States)'),
(10517, 8354, 'en', 'name', 'VA Loma Linda Healthcare System'),
(10518, 8355, 'no_lang_code', 'name', 'Accelopment (Switzerland)'),
(10519, 8356, 'en', 'name', 'Norwich Community Hospital'),
(10520, 8357, 'cs', 'name', 'Ústav pro PĆ©Äi o Matku a DĆ­tě'),
(10521, 8357, 'en', 'name', 'Institute for the Care of Mother and Child'),
(10522, 8358, 'en', 'name', 'American Enterprise Institute'),
(10523, 8359, 'en', 'name', 'Kaiser Family Foundation'),
(10524, 8360, 'en', 'name', 'San Gallicano Hospital'),
(10525, 8361, 'no_lang_code', 'name', 'Primorigen Biosciences (United States)'),
(10526, 8362, 'en', 'name', 'Vardhman Mahavir Medical College & Safdarjung Hospital'),
(10527, 8362, 'hi', 'name', 'ą¤µą¤°ą„ą¤§ą¤®ą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ और ą¤øą¤«ą¤¦ą¤°ą¤œą¤‚ą¤— ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(10528, 8363, 'no_lang_code', 'name', 'Gaudenzia (United States)'),
(10529, 8364, 'en', 'name', 'Sutter Medical Center'),
(10530, 8365, 'no_lang_code', 'name', 'SeaStar Solutions (Canada)'),
(10531, 8366, 'no_lang_code', 'name', 'MayaTech (United States)'),
(10532, 8367, 'en', 'name', 'The Society for Post-Acute and Long-Term Care Medicine'),
(10533, 8368, 'en', 'name', 'Twin Cities Spine Center'),
(10534, 8369, 'no_lang_code', 'name', 'ID-FISH Technology (United States)'),
(10535, 8370, 'en', 'name', 'National Business Group on Health'),
(10536, 8371, 'no_lang_code', 'name', 'LabCorp (United States)'),
(10537, 8372, 'no_lang_code', 'name', 'White Design (United Kingdom)'),
(10538, 8373, 'en', 'name', 'Association of Asian Pacific Community Health Organizations'),
(10539, 8374, 'en', 'name', 'Royal Society of Arts'),
(10540, 8375, 'sk', 'name', 'OcnĆ” klinika'),
(10541, 8376, 'es', 'name', 'Centro Nacional de Investigaciones CientĆ­ficas'),
(10542, 8377, 'en', 'name', 'Laser and Skin Surgery Center of New York'),
(10543, 8378, 'no_lang_code', 'name', 'Vivonics (United States)'),
(10544, 8379, 'en', 'name', 'Withington Community Hospital'),
(10545, 8380, 'no_lang_code', 'name', 'Hiden Analytical (United Kingdom)'),
(10546, 8381, 'en', 'name', 'Institution of Civil Engineers'),
(10547, 8382, 'en', 'name', 'Asian Institute of Technology'),
(10548, 8382, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹ąø«ą¹ˆąø‡ą¹€ąø­ą¹€ąøŠąøµąø¢'),
(10549, 8383, 'it', 'name', 'Cassa di Risparmio in Bologna'),
(10550, 8384, 'en', 'name', 'College Board'),
(10551, 8385, 'en', 'name', 'Institute of Environmental Science and Research'),
(10552, 8386, 'en', 'name', 'Human Media'),
(10553, 8387, 'en', 'name', 'National Food and Nutrition Institute'),
(10554, 8387, 'pl', 'name', 'Instytut Zywnosci Zywienia'),
(10555, 8388, 'en', 'name', 'National Organization for Drug Control and Research'),
(10556, 8389, 'en', 'name', 'Electrochemical Society'),
(10557, 8390, 'en', 'name', 'Arthritis and Rheumatology Clinics of Kansas'),
(10558, 8391, 'en', 'name', 'Indian Institute of Chemical Technology'),
(10559, 8391, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ą“±ą“æą“±ą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“•ąµ†ą“®ą“æą“•ąµą“•ąµ½ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ, ą“¹ąµˆą“¦ąµą“°ą“¬ą“¾ą“¦ąµ'),
(10560, 8391, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą°æą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°•ą±†ą°®ą°æą°•ą°²ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€'),
(10561, 8392, 'en', 'name', 'National Institute of Rheumatic Diseases'),
(10562, 8393, 'en', 'name', 'Tuscaloosa VA Medical Center'),
(10563, 8394, 'en', 'name', 'Texas Orthopedic Hospital'),
(10564, 8395, 'en', 'name', 'Little Big Horn College'),
(10565, 8396, 'en', 'name', 'Serving Children and Adults in Need'),
(10566, 8397, 'fr', 'name', 'Cegep de Matane, CƩgep de matane'),
(10567, 8398, 'no_lang_code', 'name', 'JP Laboratories (United States)'),
(10568, 8399, 'en', 'name', 'Kirklees Council'),
(10569, 8400, 'no_lang_code', 'name', 'Cenergia (Denmark)'),
(10570, 8401, 'en', 'name', 'Hackensack University Medical Center at Pascack Valley'),
(10571, 8402, 'en', 'name', 'Mount St. Mary''s University'),
(10572, 8403, 'en', 'name', 'Yukon University'),
(10573, 8404, 'en', 'name', 'Institute of Biomedical Chemistry'),
(10574, 8404, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биомеГицинской химии имени Š’.Š. ŠžŃ€ŠµŃ…Š¾Š²ŠøŃ‡Š°'),
(10575, 8405, 'en', 'name', 'Greenville Technical College'),
(10576, 8406, 'nl', 'name', 'AZ Sint-Blasius'),
(10577, 8407, 'no_lang_code', 'name', 'EstƩe Lauder (United States)'),
(10578, 8408, 'en', 'name', 'Peterson & Smith Equine Hospital'),
(10579, 8409, 'no_lang_code', 'name', 'Expression Therapeutics (United States)'),
(10580, 8410, 'en', 'name', 'Houston Advanced Research Center'),
(10581, 8411, 'en', 'name', 'Kanagawa Cardiovascular and Respiratory Center'),
(10582, 8411, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹å¾Ŗē’°å™Øå‘¼åøå™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(10583, 8412, 'en', 'name', 'College of Physicians of Philadelphia'),
(10584, 8413, 'en', 'name', 'Association For Women in Mathematics'),
(10585, 8414, 'en', 'name', 'Iolani School'),
(10586, 8415, 'no_lang_code', 'name', 'Petro Geotech (Canada)'),
(10587, 8416, 'no_lang_code', 'name', 'Photonic BioSystems (United States)'),
(10588, 8417, 'en', 'name', 'National Institute of Pharmaceutical Education and Research'),
(10589, 8417, 'hi', 'name', 'ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤«ą¤¾ą¤°ą„ą¤®ą¤¾ą¤øą„ą¤Æą„‚ą¤Ÿą¤æą¤•ą¤² ą¤ą¤œą„ą¤•ą„‡ą¤¶ą¤Ø ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š'),
(10590, 8417, 'te', 'name', 'ą°Øą±‡ą°·ą°Øą°²ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°«ą°¾ą°°ą±ą°®ą°øą±ą°Æą±‚ą°Ÿą°æą°•ą°²ą± ą°Žą°”ą±ą°Æą±ą°•ą±‡ą°·ą°Øą±'),
(10591, 8418, 'ja', 'name', 'å—é’å±±ć‚¢ć‚¤ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(10592, 8418, 'no_lang_code', 'name', 'Minamiaoyama Eye Clinic'),
(10593, 8419, 'en', 'name', 'Galveston College'),
(10594, 8420, 'en', 'name', 'Her Majesty''s Government Communications Centre'),
(10595, 8421, 'no_lang_code', 'name', 'Cambrian Innovation (United States)'),
(10596, 8422, 'no_lang_code', 'name', 'ImmuneChem (Canada)'),
(10597, 8423, 'de', 'name', 'Otto Wagner Spital'),
(10598, 8423, 'en', 'name', 'Otto Wagner Hospital'),
(10599, 8424, 'en', 'name', 'San Juan College'),
(10600, 8425, 'en', 'name', 'Central Research Institute of Electric Power Industry'),
(10601, 8425, 'ja', 'name', 'é›»åŠ›äø­å¤®ē ”ē©¶ę‰€'),
(10602, 8426, 'en', 'name', 'Wellborn Road Veterinary Medical Center'),
(10603, 8427, 'no_lang_code', 'name', 'SolPowered Energy Corporation (Canada)'),
(10604, 8428, 'no_lang_code', 'name', 'Comply (United States)'),
(10605, 8429, 'en', 'name', 'Audubon Nature Institute'),
(10606, 8430, 'en', 'name', 'Community Health Action of Staten Island'),
(10607, 8431, 'en', 'name', 'Whatcom Community College'),
(10608, 8432, 'en', 'name', 'Taipei Municipal Women and Children''s Hospital'),
(10609, 8433, 'no_lang_code', 'name', 'MagMutual (United States)'),
(10610, 8434, 'en', 'name', 'Upton Hospital'),
(10611, 8435, 'en', 'name', 'Nutrition Foundation of India'),
(10612, 8436, 'it', 'name', 'Istituto Giannina Gaslini'),
(10613, 8437, 'en', 'name', 'Social Science Education Consortium'),
(10614, 8438, 'en', 'name', 'Central Remedial Clinic'),
(10615, 8439, 'en', 'name', 'National Institute of Cardiovascular Diseases'),
(10616, 8440, 'no_lang_code', 'name', 'IMMCO Diagnostics (United States)'),
(10617, 8441, 'no_lang_code', 'name', 'W. L. Gore & Associates (United States)'),
(10618, 8442, 'no_lang_code', 'name', 'Centrose (United States)'),
(10619, 8443, 'no_lang_code', 'name', 'Fujimoto Pharmaceutical Corporation (Japan)'),
(10620, 8444, 'en', 'name', 'Southwestern College - California'),
(10621, 8445, 'en', 'name', 'North Carolina Institute of Medicine'),
(10622, 8446, 'en', 'name', 'New Jersey Department of Environmental Protection'),
(10623, 8446, 'fr', 'name', 'DƩpartement de la protection de l''environnement du new jersey'),
(10624, 8447, 'en', 'name', 'Bismarck State College'),
(10625, 8448, 'no_lang_code', 'name', 'Molecules for Health (United States)'),
(10626, 8449, 'no_lang_code', 'name', 'Nikon (United Kingdom)'),
(10627, 8450, 'no_lang_code', 'name', 'Global Vaccines (United States)'),
(10628, 8451, 'no_lang_code', 'name', 'Imaging Systems Technology (United States)'),
(10629, 8452, 'pt', 'name', 'Centro Hospitalar de Vila Nova de Gaia'),
(10630, 8453, 'no_lang_code', 'name', 'BiologicsMD (United States)'),
(10631, 8454, 'en', 'name', 'Association for the Development of Education and Research on Corporate Social Responsibility'),
(10632, 8454, 'fr', 'name', 'ADERSE, Association pour le DƩveloppement de l''Enseignement et de la Recherche sur la ResponsabilitƩ Sociale de l''Entreprise'),
(10633, 8455, 'en', 'name', 'Tanana Chiefs Conference'),
(10634, 8456, 'en', 'name', 'Methodist Rehabilitation Center'),
(10635, 8457, 'no_lang_code', 'name', 'Virtual Centre of Excellence In Mobile and Personal Communications'),
(10636, 8458, 'no_lang_code', 'name', 'HTG Molecular Diagnostics (United States)'),
(10637, 8459, 'pl', 'name', 'Instytut GruÅŗlicy i Chorób Płuc'),
(10638, 8460, 'en', 'name', 'Southern California Institute for Research and Education'),
(10639, 8461, 'fr', 'name', 'CƩgep Garneau'),
(10640, 8462, 'en', 'name', 'San Dieguito Alliance'),
(10641, 8463, 'en', 'name', 'Wisconsin Medical Society'),
(10642, 8464, 'no_lang_code', 'name', 'Decision Systems (United States)'),
(10643, 8465, 'no_lang_code', 'name', 'Auxagen (United States)'),
(10644, 8466, 'ja', 'name', 'é³„å–ēœŒē«‹äø­å¤®ē—…é™¢'),
(10645, 8466, 'no_lang_code', 'name', 'Tottori Prefectural Central Hospital'),
(10646, 8467, 'en', 'name', 'Auburn School District'),
(10647, 8468, 'no_lang_code', 'name', 'Oceans Limited (Canada)'),
(10648, 8469, 'it', 'name', 'Istituto Nazionale Biostrutture e Biosistemi'),
(10649, 8470, 'en', 'name', 'American Society for Neurochemistry'),
(10650, 8471, 'no_lang_code', 'name', 'AstraZeneca (United States)'),
(10651, 8472, 'en', 'name', 'Glynn Hospitality Group'),
(10652, 8473, 'en', 'name', 'Technological Assistance Institute for Intellectual Disability'),
(10653, 8474, 'en', 'name', 'Institute of Mathematical Statistics'),
(10654, 8475, 'en', 'name', 'Spring Hill College'),
(10655, 8476, 'no_lang_code', 'name', 'Precigen (United States)'),
(10656, 8477, 'en', 'name', 'San Antonio State Chest Hospital'),
(10657, 8478, 'en', 'name', 'Fetal Medicine Foundation of America'),
(10658, 8479, 'en', 'name', 'MRC Prion Unit'),
(10659, 8480, 'no_lang_code', 'name', 'Isto Biologics (United States)'),
(10660, 8481, 'no_lang_code', 'name', 'OPKO Health (Canada)'),
(10661, 8482, 'en', 'name', 'Washington Educational Telecommunications Association'),
(10662, 8483, 'en', 'name', 'Murray State College'),
(10663, 8484, 'en', 'name', 'Ohio Heart & Vascular Center'),
(10664, 8485, 'no_lang_code', 'name', 'atesio (Germany)'),
(10665, 8486, 'en', 'name', 'Society for Neuroscience'),
(10666, 8487, 'no_lang_code', 'name', 'STMicroelectronics (United Kingdom)'),
(10667, 8488, 'it', 'name', 'Istituto Zooprofilattico Sperimentale dell''Umbria e delle Marche'),
(10668, 8489, 'no_lang_code', 'name', 'Institute of Bioengineering Technologies (United States)'),
(10669, 8490, 'en', 'name', 'International Development Research Centre'),
(10670, 8490, 'fr', 'name', 'Centre de recherches pour le dƩveloppement international'),
(10671, 8491, 'ar', 'name', 'مجمع Ų§Ł„Ų³Ł„Ł…Ų§Ł†ŁŠŲ© Ų§Ł„Ų·ŲØŁŠ'),
(10672, 8491, 'en', 'name', 'Salmaniya Medical Complex'),
(10673, 8492, 'no_lang_code', 'name', 'Ross Laboratories (United States)'),
(10674, 8493, 'en', 'name', 'International Epidemiology Institute'),
(10675, 8494, 'en', 'name', 'Graduate School Neurosciences Amsterdam Rotterdam'),
(10676, 8495, 'en', 'name', 'Turgut Ozal Medical Center'),
(10677, 8495, 'tr', 'name', 'Turgut Ɩzal Tıp Merkezi'),
(10678, 8496, 'no_lang_code', 'name', 'United Biomedical (United States)'),
(10679, 8497, 'en', 'name', 'Insall Scott Kelly Institute'),
(10680, 8498, 'no_lang_code', 'name', 'Helicos Biosciences (United States)'),
(10681, 8499, 'de', 'name', 'Max-Planck-Institut für Pflanzenzüchtungsforschung'),
(10682, 8499, 'en', 'name', 'Max Planck Institute for Plant Breeding Research'),
(10683, 8500, 'en', 'name', 'Institute of Statistical Science, Academia Sinica'),
(10684, 8500, 'zh', 'name', '中央研究院 ēµ±čØˆē§‘å­øē ”ē©¶ę‰€'),
(10685, 8501, 'no_lang_code', 'name', 'Analysis Group (United States)'),
(10686, 8502, 'no_lang_code', 'name', 'Cynosure (United States)'),
(10687, 8503, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Αθήνας'),
(10688, 8503, 'en', 'name', 'Technological Educational Institute of Athens'),
(10689, 8504, 'fr', 'name', 'Association FranƧaise de Normalisation'),
(10690, 8505, 'no_lang_code', 'name', 'MEG-3 (Canada)'),
(10691, 8506, 'en', 'name', 'North American Vascular Biology Organization'),
(10692, 8507, 'en', 'name', 'Substance Abuse Foundation'),
(10693, 8508, 'en', 'name', 'Austin Community College'),
(10694, 8509, 'en', 'name', 'Toronto Centre for Phenogenomics'),
(10695, 8510, 'en', 'name', 'National Institute of Health of Thailand'),
(10696, 8510, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø§ąø“ąøˆąø±ąø¢ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹ŒąøŖąø²ąø˜ąø²ąø£ąø“ąøŖąøøąø‚'),
(10697, 8511, 'en', 'name', 'Peggy Notebaert Nature Museum'),
(10698, 8512, 'en', 'name', 'Swedish Council on Technology Assessment in Health Care'),
(10699, 8512, 'sv', 'name', 'Svenska beredning fƶr medicinsk utvƤrdering Health Care'),
(10700, 8513, 'no_lang_code', 'name', 'REALITY Publishing (United States)'),
(10701, 8514, 'no_lang_code', 'name', 'Tungs'' Taichung MetroHarbor Hospital'),
(10702, 8514, 'zh', 'name', 'ē«„ē¶œåˆé†«é™¢'),
(10703, 8515, 'fr', 'name', 'Institut Cardiovasculaire Paris Sud'),
(10704, 8516, 'no_lang_code', 'name', 'VWR International (United States)'),
(10705, 8517, 'en', 'name', 'National Cancer Center of Georgia'),
(10706, 8518, 'no_lang_code', 'name', 'RxSight (United States)'),
(10707, 8519, 'en', 'name', 'Tamil Nadu Government Dental College and Hospital'),
(10708, 8520, 'no_lang_code', 'name', 'Transcendent Endeavors (United States)'),
(10709, 8521, 'de', 'name', 'Klinikum Ludwigsburg'),
(10710, 8522, 'en', 'name', 'Capitol Technology University'),
(10711, 8523, 'it', 'name', 'SocietĆ  per l’Assistenza al Malato Oncologico Terminale'),
(10712, 8524, 'en', 'name', 'Sundaram Medical Foundation'),
(10713, 8525, 'no_lang_code', 'name', 'Terragon Environmental Technologies (Canada)'),
(10714, 8526, 'no_lang_code', 'name', 'Twin Star Medical (United States)'),
(10715, 8527, 'no_lang_code', 'name', 'Athena Group (United States)'),
(10716, 8528, 'no_lang_code', 'name', 'Bossa Nova Technologies (United States)'),
(10717, 8529, 'no_lang_code', 'name', 'Symbiotech (United States)'),
(10718, 8530, 'no_lang_code', 'name', 'Amorfix (Canada)'),
(10719, 8531, 'no_lang_code', 'name', 'Bioo Scientific (United States)'),
(10720, 8532, 'no_lang_code', 'name', 'Intrafinity (Canada)'),
(10721, 8533, 'en', 'name', 'Leicestershire Partnership NHS Trust'),
(10722, 8534, 'en', 'name', 'American Osteopathic Association'),
(10723, 8535, 'en', 'name', 'Lambton College'),
(10724, 8536, 'en', 'name', 'Al-Ameen College of Pharmacy'),
(10725, 8537, 'en', 'name', 'Neurosciences Institute'),
(10726, 8538, 'no_lang_code', 'name', 'CorSolutions (United States)'),
(10727, 8539, 'no_lang_code', 'name', 'ChemMotif (United States)'),
(10728, 8540, 'en', 'name', 'King''s College - Pennsylvania'),
(10729, 8541, 'no_lang_code', 'name', 'Trinity Investments (Japan)'),
(10730, 8542, 'no_lang_code', 'name', 'Optivia Biotechnology (United States)'),
(10731, 8543, 'no_lang_code', 'name', 'PRP Architects (United Kingdom)'),
(10732, 8544, 'en', 'name', 'St. Mary Medical Center'),
(10733, 8545, 'en', 'name', 'Lake Erie College of Osteopathic Medicine'),
(10734, 8546, 'en', 'name', 'Indiana Hand to Shoulder Center'),
(10735, 8547, 'en', 'name', 'Institute of Psychiatry and Neurology'),
(10736, 8548, 'no_lang_code', 'name', 'URS Corporation (United Kingdom)'),
(10737, 8549, 'it', 'name', 'Cefriel'),
(10738, 8550, 'en', 'name', 'Cumberland Infirmary'),
(10739, 8551, 'en', 'name', 'Healthcare Financial Management Association'),
(10740, 8552, 'no_lang_code', 'name', 'Micro Magnetics (United States)'),
(10741, 8553, 'no_lang_code', 'name', 'SABMiller (United Kingdom)'),
(10742, 8554, 'en', 'name', 'La Clinica del Pueblo'),
(10743, 8555, 'no_lang_code', 'name', 'Material Sciences (United States)'),
(10744, 8556, 'en', 'name', 'Eden Medical'),
(10745, 8557, 'en', 'name', 'Defence Research Laboratory'),
(10746, 8557, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(10747, 8558, 'en', 'name', 'Tzaneion General Hospital'),
(10748, 8559, 'no_lang_code', 'name', 'MWH (United Kingdom)'),
(10749, 8560, 'en', 'name', 'Cardiff Royal Infirmary'),
(10750, 8561, 'en', 'name', 'RCSI & UCD Malaysia Campus'),
(10751, 8562, 'en', 'name', 'International Center of Neurologic Restoration'),
(10752, 8562, 'es', 'name', 'Centro Internacional de Restauración Neurológica'),
(10753, 8563, 'no_lang_code', 'name', 'Fox Learning Systems (United States)'),
(10754, 8564, 'no_lang_code', 'name', 'PharmaIN (United States)'),
(10755, 8565, 'en', 'name', 'Guangxi Center for Disease Prevention and Control'),
(10756, 8565, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(10757, 8566, 'en', 'name', 'Taleghani General Hospital'),
(10758, 8566, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų·Ų§Ł„Ł‚Ų§Ł†ŪŒ تهران'),
(10759, 8567, 'no_lang_code', 'name', 'Advanced Imaging Research (United States)'),
(10760, 8568, 'en', 'name', 'Wuhan Children''s Hospital'),
(10761, 8568, 'zh', 'name', 'ę­¦ę±‰åø‚å„æē«„åŒ»é™¢'),
(10762, 8569, 'en', 'name', 'Sunny Hill Health Centre for Children'),
(10763, 8570, 'en', 'name', 'Campbellsville University'),
(10764, 8570, 'fr', 'name', 'UniversitƩ de campbellsville'),
(10765, 8571, 'en', 'name', 'Virginia Department of Agriculture and Consumer Services'),
(10766, 8572, 'no_lang_code', 'name', 'Integrated Environmental Solutions (United Kingdom)'),
(10767, 8573, 'no_lang_code', 'name', 'Vaccinex (United States)'),
(10768, 8574, 'no_lang_code', 'name', 'Jacobs (United Kingdom)'),
(10769, 8575, 'no_lang_code', 'name', 'InSituTec (United States)'),
(10770, 8576, 'bn', 'name', 'বারঔেম'),
(10771, 8576, 'en', 'name', 'Bangladesh Institute of Research and Rehabilitation for Diabetes Endocrine and Metabolic Disorders'),
(10772, 8577, 'no_lang_code', 'name', 'Aerosol Dynamics (United States)'),
(10773, 8578, 'en', 'name', 'Taipei Municipal YangMing Hospital'),
(10774, 8578, 'zh', 'name', 'å°åŒ—åø‚ē«‹é˜³ę˜ŽåŒ»é™¢'),
(10775, 8579, 'no_lang_code', 'name', 'Patheon (Canada)'),
(10776, 8580, 'no_lang_code', 'name', 'Cellecta (United States)'),
(10777, 8581, 'en', 'name', 'Central Forensic Science Laboratory'),
(10778, 8582, 'no_lang_code', 'name', 'Nano-C (United States)'),
(10779, 8583, 'en', 'name', 'Ise Red Cross Hospital'),
(10780, 8583, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē¤¾ ä¼Šå‹¢čµ¤åå­—ē—…é™¢'),
(10781, 8584, 'pt', 'name', 'Faculdade de Medicina do ABC'),
(10782, 8585, 'no_lang_code', 'name', 'Wilson Energy (United Kingdom)'),
(10783, 8586, 'en', 'name', 'Fairmont State University'),
(10784, 8586, 'fr', 'name', 'UniversitĆ© d''Ɖtat de fairmont'),
(10785, 8587, 'no_lang_code', 'name', 'MIRA (United Kingdom)'),
(10786, 8588, 'no_lang_code', 'name', 'NeurOp (United States)'),
(10787, 8589, 'no_lang_code', 'name', 'Chimera Technologies (United States)'),
(10788, 8590, 'en', 'name', 'Orlando Health'),
(10789, 8591, 'fr', 'name', 'Centre Hospitalier de Cannes'),
(10790, 8592, 'no_lang_code', 'name', 'Targazyme (United States)'),
(10791, 8593, 'en', 'name', 'Institute of Protein Research'),
(10792, 8593, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ белка Российской акаГемии наук'),
(10793, 8594, 'no_lang_code', 'name', 'Osel (United States)'),
(10794, 8595, 'en', 'name', 'Taipei Municipal Jen-Ai Hospital'),
(10795, 8596, 'fr', 'name', 'Groupe Hospitalier Intercommunal Le Raincy Montfermeil'),
(10796, 8597, 'fr', 'name', 'Centre d''Enseignement et de Recherches des Industries Alimentaires et Chimiques'),
(10797, 8598, 'no_lang_code', 'name', 'GenProMarkers (United States)'),
(10798, 8599, 'nl', 'name', 'AZ Maria Middelares'),
(10799, 8600, 'en', 'name', 'Regional Plant Resource Centre'),
(10800, 8601, 'en', 'name', 'Eindhoven Cancer Registry'),
(10801, 8602, 'en', 'name', 'John Hunter Children''s Hospital'),
(10802, 8603, 'en', 'name', 'Florence Nightingale Museum'),
(10803, 8604, 'no_lang_code', 'name', 'Cellex (United States)'),
(10804, 8605, 'en', 'name', 'Albany Law School'),
(10805, 8605, 'fr', 'name', 'FacultƩ de droit d''albany'),
(10806, 8606, 'no_lang_code', 'name', 'Waters (United Kingdom)'),
(10807, 8607, 'no_lang_code', 'name', 'Exelus (United States)'),
(10808, 8608, 'no_lang_code', 'name', 'Thermofin (Canada)'),
(10809, 8609, 'no_lang_code', 'name', 'Epigenomics (Germany)'),
(10810, 8610, 'en', 'name', 'Wildlife Trusts'),
(10811, 8611, 'no_lang_code', 'name', 'Celerion (Canada)'),
(10812, 8612, 'en', 'name', 'Western Interstate Commission for Higher Education'),
(10813, 8613, 'de', 'name', 'Max-Planck-Institut für Wissenschaftsgeschichte'),
(10814, 8613, 'en', 'name', 'Max Planck Institute for the History of Science'),
(10815, 8614, 'en', 'name', 'Richmond Behavioral Health Authority'),
(10816, 8615, 'en', 'name', 'Canadian Breast Cancer Network'),
(10817, 8616, 'no_lang_code', 'name', 'wTe Corporation (United States)'),
(10818, 8617, 'no_lang_code', 'name', 'Key Tech (United States)'),
(10819, 8618, 'no_lang_code', 'name', 'Extrel (United States)'),
(10820, 8619, 'en', 'name', 'Kelsey-Seybold Clinic'),
(10821, 8620, 'no_lang_code', 'name', 'Azevan Pharmaceuticals (United States)'),
(10822, 8621, 'en', 'name', 'South African Brain Research Institute'),
(10823, 8622, 'no_lang_code', 'name', 'Teledyne Technologies (France)'),
(10824, 8623, 'no_lang_code', 'name', 'Essex and Suffolk Water (United Kingdom)'),
(10825, 8624, 'en', 'name', 'Tuality Community Hospital'),
(10826, 8625, 'no_lang_code', 'name', 'Molecular Kinetics (United States)'),
(10827, 8626, 'no_lang_code', 'name', 'Spectrasonics (United States)'),
(10828, 8627, 'no_lang_code', 'name', 'AbsInt (Germany)'),
(10829, 8628, 'no_lang_code', 'name', 'Acoustic MedSystems (United States)'),
(10830, 8629, 'en', 'name', 'National Archives'),
(10831, 8629, 'ga', 'name', 'Cartlann NĆ”isiĆŗnta na hƉireann'),
(10832, 8630, 'en', 'name', 'Sturdy Memorial Hospital'),
(10833, 8631, 'en', 'name', 'National Institute of Child Health'),
(10834, 8632, 'no_lang_code', 'name', 'Skanska (United Kingdom)'),
(10835, 8633, 'no_lang_code', 'name', 'Science Education Solutions (United States)'),
(10836, 8634, 'en', 'name', 'Institute for the Future'),
(10837, 8635, 'no_lang_code', 'name', 'Kelda Group (United Kingdom)'),
(10838, 8636, 'en', 'name', 'Ackerman Academy of Dermatopathology'),
(10839, 8637, 'en', 'name', 'Royal National Institute of Blind'),
(10840, 8638, 'ja', 'name', 'ęØŖé ˆč³€å…±ęøˆē—…é™¢'),
(10841, 8638, 'no_lang_code', 'name', 'Yokosuka Kyosai Hospital'),
(10842, 8639, 'en', 'name', 'VA Central Iowa Health Care System'),
(10843, 8640, 'no_lang_code', 'name', 'Oxford Instruments (United Kingdom)'),
(10844, 8641, 'en', 'name', 'Koo Foundation Sun Yat-Sen Cancer Center'),
(10845, 8642, 'en', 'name', 'St. Margaret Memorial Hospital'),
(10846, 8643, 'no_lang_code', 'name', 'Environmental Design Solutions Limited (United Kingdom)'),
(10847, 8644, 'no_lang_code', 'name', 'FM Technologies (United States)'),
(10848, 8645, 'no_lang_code', 'name', 'Lundbeck (United States)'),
(10849, 8646, 'en', 'name', 'TMJ Association'),
(10850, 8647, 'en', 'name', 'Toyama Rosai Hospital'),
(10851, 8647, 'ja', 'name', 'åÆŒå±±åŠ“ē½ē—…é™¢'),
(10852, 8648, 'no_lang_code', 'name', 'Magellan BioScience (United States)'),
(10853, 8649, 'no_lang_code', 'name', 'Neostem (United States)'),
(10854, 8650, 'en', 'name', 'Bethany College - West Virginia'),
(10855, 8651, 'en', 'name', 'Orange County Bar Foundation'),
(10856, 8652, 'no_lang_code', 'name', 'Orkla (Norway)'),
(10857, 8653, 'en', 'name', 'Drug Safety Research Unit'),
(10858, 8654, 'no_lang_code', 'name', 'Waterloo CFD Engineering Consulting'),
(10859, 8655, 'en', 'name', 'EngenderHealth'),
(10860, 8656, 'no_lang_code', 'name', 'Celator Pharmaceuticals (Canada)'),
(10861, 8657, 'no_lang_code', 'name', 'Mound Laser & Photonics Center (United States)'),
(10862, 8658, 'no_lang_code', 'name', 'Chung Hsiao Municipal Hospital'),
(10863, 8659, 'no_lang_code', 'name', 'ENVIRON (United States)'),
(10864, 8660, 'en', 'name', 'Kronos Longevity Research Institute'),
(10865, 8661, 'no_lang_code', 'name', 'Originus (United States)'),
(10866, 8662, 'no_lang_code', 'name', 'TheraSource (United States)'),
(10867, 8663, 'en', 'name', 'Moscow State University of Fine Chemical Technologies'),
(10868, 8663, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ тонких химических технологий имени М. Š’. Ломоносова'),
(10869, 8664, 'en', 'name', 'Texas Back Institute'),
(10870, 8665, 'no_lang_code', 'name', 'Talking Lights (United States)'),
(10871, 8666, 'no_lang_code', 'name', 'Siemens (United States)'),
(10872, 8667, 'no_lang_code', 'name', 'KineMed (United States)'),
(10873, 8668, 'en', 'name', 'Harper College'),
(10874, 8668, 'fr', 'name', 'CollĆØge harper'),
(10875, 8669, 'en', 'name', 'National Institute for Viral Disease Control and Prevention'),
(10876, 8670, 'no_lang_code', 'name', 'InterScience (United States)'),
(10877, 8671, 'no_lang_code', 'name', 'Collaborative Drug Discovery (United States)'),
(10878, 8672, 'no_lang_code', 'name', 'ISCA Technologies (United States)'),
(10879, 8673, 'en', 'name', 'Tokyo Rinkai Hospital'),
(10880, 8673, 'ja', 'name', 'ę±äŗ¬č‡Øęµ·ē—…é™¢'),
(10881, 8674, 'en', 'name', 'Wm. Jennings Bryan Dorn VA Medical Center'),
(10882, 8675, 'en', 'name', 'Fortune Society'),
(10883, 8676, 'en', 'name', 'Saint George Hospital');
INSERT INTO `ror_settings` VALUES
(10884, 8677, 'fr', 'name', 'Institut OcƩanographique'),
(10885, 8678, 'en', 'name', 'International Centre for Infectious Diseases'),
(10886, 8679, 'no_lang_code', 'name', 'Ameriprise Financial (United States)'),
(10887, 8680, 'en', 'name', 'Allegheny County'),
(10888, 8681, 'en', 'name', 'Pakistan Institute of Nuclear Science and Technology'),
(10889, 8682, 'no_lang_code', 'name', 'Structured Materials Industries (United States)'),
(10890, 8683, 'en', 'name', 'National Geographic Society'),
(10891, 8684, 'no_lang_code', 'name', 'Bionetics (United States)'),
(10892, 8685, 'no_lang_code', 'name', 'Infotech Soft (United States)'),
(10893, 8686, 'fr', 'name', 'CollĆØge Lionel Groulx, CollĆØge lionel-groulx'),
(10894, 8687, 'en', 'name', 'USMMA Alumni Association and Foundation'),
(10895, 8688, 'en', 'name', 'FrƩdƩric Joliot-Curie National Research Institute for Radiobiology and Radiohygiene'),
(10896, 8689, 'no_lang_code', 'name', 'Nanotek Instruments (United States)'),
(10897, 8690, 'en', 'name', 'Eunice Kennedy Shriver National Institute of Child Health and Human Development'),
(10898, 8691, 'no_lang_code', 'name', 'ElSohly Laboratories (United States)'),
(10899, 8692, 'en', 'name', 'Olympic Park Sports Medicine Centre'),
(10900, 8693, 'fr', 'name', 'Centre Hospitalier Le Vinatier'),
(10901, 8694, 'en', 'name', 'Orthopaedic Research of Virginia'),
(10902, 8695, 'no_lang_code', 'name', 'Megger (United Kingdom)'),
(10903, 8696, 'en', 'name', 'Israelite Hospital'),
(10904, 8696, 'it', 'name', 'Ospedale Israelitico'),
(10905, 8697, 'en', 'name', 'College of the North Atlantic'),
(10906, 8698, 'en', 'name', 'Seattle Institute for Biomedical and Clinical Research'),
(10907, 8699, 'de', 'name', 'Krankenhaus Salem'),
(10908, 8700, 'no_lang_code', 'name', 'Kent SeaTech Corporation (United States)'),
(10909, 8701, 'en', 'name', 'Aberdeen City Council'),
(10910, 8702, 'no_lang_code', 'name', 'Lonza (United Kingdom)'),
(10911, 8703, 'en', 'name', 'Ministry of Social Affairs and Social Services'),
(10912, 8703, 'he', 'name', '×ž×©×Ø×“ הרווחה ×•×”×©×™×Ø×•×Ŗ×™× ×”×—×‘×Ø×Ŗ×™×™×ā€Ž'),
(10913, 8704, 'en', 'name', 'American Society for Nutrition'),
(10914, 8705, 'en', 'name', 'American College of Gastroenterology'),
(10915, 8706, 'no_lang_code', 'name', 'APT Therapeutics (United States)'),
(10916, 8707, 'en', 'name', 'Meiho University'),
(10917, 8708, 'en', 'name', 'Okayama Rosai Hospital'),
(10918, 8708, 'ja', 'name', 'å²”å±±åŠ“ē½ē—…é™¢'),
(10919, 8709, 'no_lang_code', 'name', '20/20 GeneSystem (United States)'),
(10920, 8710, 'pl', 'name', 'Krakowskie Centrum Rehabilitacji'),
(10921, 8711, 'en', 'name', 'Parkview Health'),
(10922, 8712, 'en', 'name', 'Australian Academy of Technological Sciences and Engineering'),
(10923, 8713, 'no_lang_code', 'name', 'Banyan Biomarkers (United States)'),
(10924, 8714, 'en', 'name', 'Council for Chemical Research'),
(10925, 8715, 'no_lang_code', 'name', 'Systems Technology (United States)'),
(10926, 8716, 'en', 'name', 'Special Service for Groups'),
(10927, 8717, 'en', 'name', 'American Institute of Architects'),
(10928, 8718, 'it', 'name', 'CoRiTeL'),
(10929, 8719, 'no_lang_code', 'name', 'CarboMer (United States)'),
(10930, 8720, 'no_lang_code', 'name', 'Optimum Therapeutics (United States)'),
(10931, 8721, 'en', 'name', 'Center for Medical Education and Clinical Research Norberto Quirno'),
(10932, 8721, 'es', 'name', 'Centro de Educación Médica e Investigaciones Clínicas Norberto Quirno'),
(10933, 8722, 'en', 'name', 'Association of Public Health Laboratories'),
(10934, 8723, 'en', 'name', 'St. Paul''s Hospital'),
(10935, 8724, 'no_lang_code', 'name', 'Odyssey Trust'),
(10936, 8725, 'en', 'name', 'Glasgow Science Centre'),
(10937, 8726, 'ja', 'name', 'ćƒ–ćƒŖć‚¹ćƒˆćƒ«ćƒ»ćƒžć‚¤ćƒ¤ćƒ¼ć‚ŗ ć‚¹ć‚Æć‚¤ćƒ–'),
(10938, 8726, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Japan)'),
(10939, 8727, 'no_lang_code', 'name', 'Magellan Aerospace (Canada)'),
(10940, 8728, 'fr', 'name', 'Centre Hospitalier Intercommunal de Villeneuve-Saint-Georges'),
(10941, 8729, 'en', 'name', 'Kestrel Institute'),
(10942, 8730, 'en', 'name', 'Human Gene Therapy Research Institute'),
(10943, 8731, 'no_lang_code', 'name', 'SatCon Technology Corporation (United States)'),
(10944, 8732, 'no_lang_code', 'name', 'OncoImmune (United States)'),
(10945, 8733, 'no_lang_code', 'name', 'Cellerant Therapeutics (United States)'),
(10946, 8734, 'no_lang_code', 'name', 'Procter & Gamble (United States)'),
(10947, 8735, 'en', 'name', 'Birmingham City Council'),
(10948, 8736, 'no_lang_code', 'name', 'Vesuvius (United Kingdom)'),
(10949, 8737, 'no_lang_code', 'name', 'IMPCO Technologies (Canada)'),
(10950, 8738, 'de', 'name', 'Max-Planck-Institut für Psychiatrie'),
(10951, 8738, 'en', 'name', 'Max Planck Institute of Psychiatry'),
(10952, 8739, 'en', 'name', 'Vector Control Research Centre'),
(10953, 8740, 'pt', 'name', 'Faculdade EvangƩlica do ParanƔ'),
(10954, 8741, 'fr', 'name', 'Centre de Chirurgie Plastique'),
(10955, 8742, 'no_lang_code', 'name', 'HemoCleanse (United States)'),
(10956, 8743, 'is', 'name', 'ƍslensk erfưagreining'),
(10957, 8743, 'no_lang_code', 'name', 'deCODE Genetics (Iceland)'),
(10958, 8744, 'no_lang_code', 'name', 'NovaFlux (United States)'),
(10959, 8745, 'no_lang_code', 'name', 'C-Tech Innovation (United Kingdom)'),
(10960, 8746, 'en', 'name', 'Occupational Health and Safety Research Institute'),
(10961, 8746, 'fr', 'name', 'Institut de Recherche Robert-SauvƩ en SantƩ et en SƩcuritƩ du Travail'),
(10962, 8747, 'en', 'name', 'Maryville College'),
(10963, 8748, 'no_lang_code', 'name', 'Pennon Group (United Kingdom)'),
(10964, 8749, 'no_lang_code', 'name', 'Rocky Mountain Bicycles (Canada)'),
(10965, 8750, 'en', 'name', 'Collinge and Associates'),
(10966, 8751, 'no_lang_code', 'name', 'Zynex (United States)'),
(10967, 8752, 'no_lang_code', 'name', 'Lectenz Bio (United States)'),
(10968, 8753, 'no_lang_code', 'name', 'Associated Compiler Experts (Netherlands)'),
(10969, 8754, 'en', 'name', 'Energy and Resources Institute'),
(10970, 8754, 'ta', 'name', 'ą®†ą®±ąÆą®±ą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®³ą®™ąÆą®•ą®³ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(10971, 8755, 'de', 'name', 'Max Grundig Klinik'),
(10972, 8755, 'en', 'name', 'Max Grundig Hospital'),
(10973, 8756, 'en', 'name', 'Moredun Foundation'),
(10974, 8757, 'en', 'name', 'Tokyo Metropolitan Geriatric Hospital'),
(10975, 8757, 'ja', 'name', 'ę±äŗ¬éƒ½å„åŗ·é•·åÆæåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(10976, 8758, 'no_lang_code', 'name', 'Charles River Associates'),
(10977, 8759, 'en', 'name', 'American Society of Human Genetics'),
(10978, 8760, 'en', 'name', 'Arts Catalyst'),
(10979, 8761, 'no_lang_code', 'name', 'Nanotherapeutics (United States)'),
(10980, 8762, 'en', 'name', 'College of New Rochelle'),
(10981, 8763, 'en', 'name', 'Institute of Education Sciences'),
(10982, 8764, 'no_lang_code', 'name', 'QuantTera (United States)'),
(10983, 8765, 'no_lang_code', 'name', 'Vajira Hospital'),
(10984, 8765, 'th', 'name', 'ąø§ąøŠąø“ąø£ąøžąø¢ąø²ąøšąø²ąø„'),
(10985, 8766, 'no_lang_code', 'name', 'Dendritech (United States)'),
(10986, 8767, 'no_lang_code', 'name', 'Bruker (Germany)'),
(10987, 8768, 'en', 'name', 'Los Angeles Unified School District'),
(10988, 8769, 'nl', 'name', 'Adelante'),
(10989, 8770, 'es', 'name', 'Complejo Hospitalario de Ourense'),
(10990, 8771, 'no_lang_code', 'name', 'Fundação Estadual de Produção e Pesquisa em Saúde'),
(10991, 8772, 'en', 'name', 'St. Jude Medical Center'),
(10992, 8773, 'no_lang_code', 'name', 'LumArray (United States)'),
(10993, 8774, 'no_lang_code', 'name', 'Innovative BioTherapies (United States)'),
(10994, 8775, 'en', 'name', 'American Society of Plant Biologists'),
(10995, 8776, 'en', 'name', 'National Center for Nanoscience and Technology'),
(10996, 8776, 'zh', 'name', 'å›½å®¶ēŗ³ē±³ē§‘å­¦äø­åæƒ'),
(10997, 8777, 'no_lang_code', 'name', 'Mediomics (United States)'),
(10998, 8778, 'no_lang_code', 'name', 'Micropharma (Canada)'),
(10999, 8779, 'no_lang_code', 'name', 'Sensor Electronic Technology (United States)'),
(11000, 8780, 'en', 'name', 'Pellissippi State Community College'),
(11001, 8781, 'en', 'name', 'Aspire Health Partners'),
(11002, 8782, 'en', 'name', 'Tata Main Hospital'),
(11003, 8783, 'no_lang_code', 'name', 'Consulectra (Germany)'),
(11004, 8784, 'no_lang_code', 'name', 'SeaLite Engineering (United States)'),
(11005, 8785, 'de', 'name', 'Helios Kliniken'),
(11006, 8786, 'no_lang_code', 'name', 'Novan Therapeutics (United States)'),
(11007, 8787, 'en', 'name', 'Rehabilitation Engineering and Assistive Technology Society of North America'),
(11008, 8788, 'en', 'name', 'Cleveland University'),
(11009, 8789, 'en', 'name', 'Brevard County Board of County Commissioners'),
(11010, 8790, 'en', 'name', 'Center for Creative Leadership'),
(11011, 8791, 'en', 'name', 'Netherlands Pharmacovigilance Centre Lareb'),
(11012, 8791, 'nl', 'name', 'Bijwerkingen Centrum Lareb'),
(11013, 8792, 'no_lang_code', 'name', 'TLC Precision Wafer Technology (United States)'),
(11014, 8793, 'en', 'name', 'Society of Hispanic Professional Engineers Foundation'),
(11015, 8794, 'en', 'name', 'Palmetto General Hospital'),
(11016, 8795, 'en', 'name', 'Hungarian Institute for Forensic Sciences'),
(11017, 8795, 'hu', 'name', 'Bűnügyi SzakĆ©rtői Ć©s KutatóintĆ©zet'),
(11018, 8796, 'it', 'name', 'Ospedale Vito Fazzi'),
(11019, 8797, 'no_lang_code', 'name', 'Phoenicia Biosciences (United States)'),
(11020, 8798, 'en', 'name', 'Defence Institute of Physiology and Allied Sciences'),
(11021, 8798, 'hi', 'name', 'ą¤•ą¤¾ą¤°ą„ą¤Æą¤•ą„€ और ą¤øą¤‚ą¤¬ą¤¦ą„ą¤§ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤°ą¤•ą„ą¤·ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(11022, 8799, 'no_lang_code', 'name', 'Ag-West Bio (Canada)'),
(11023, 8800, 'no_lang_code', 'name', 'Rogue Research (Canada)'),
(11024, 8801, 'en', 'name', 'National Institute of Occupational Health'),
(11025, 8802, 'fr', 'name', 'SociƩtƩ FranƧaise de Rhumatologie'),
(11026, 8803, 'en', 'name', 'Institute for Health and Recovery'),
(11027, 8804, 'no_lang_code', 'name', 'Lonza (United States)'),
(11028, 8805, 'en', 'name', 'Saskatchewan Disease Control Laboratory'),
(11029, 8806, 'no_lang_code', 'name', 'Quidel Corporation (United States)'),
(11030, 8807, 'en', 'name', 'Syrian Center for Tobacco Studies'),
(11031, 8808, 'en', 'name', 'Our Lady of Lourdes Medical Center'),
(11032, 8809, 'no_lang_code', 'name', 'Levin Group (United States)'),
(11033, 8810, 'en', 'name', 'Bloomfield College'),
(11034, 8811, 'en', 'name', 'San Diego Museum of Man'),
(11035, 8812, 'no_lang_code', 'name', 'Degge Group (United States)'),
(11036, 8813, 'en', 'name', 'Adelphi Laboratory Center'),
(11037, 8814, 'en', 'name', 'American Congress of Obstetricians and Gynecologists'),
(11038, 8815, 'no_lang_code', 'name', 'Thomas Keating Ltd'),
(11039, 8816, 'no_lang_code', 'name', 'Knowledge Based Systems (United States)'),
(11040, 8817, 'no_lang_code', 'name', 'VHA (United States)'),
(11041, 8818, 'no_lang_code', 'name', 'Advanced Scientific Concepts (United States)'),
(11042, 8819, 'no_lang_code', 'name', 'Material Methods (United States)'),
(11043, 8820, 'no_lang_code', 'name', 'TRUMPF (United Kingdom)'),
(11044, 8821, 'en', 'name', 'Sesame Workshop'),
(11045, 8822, 'no_lang_code', 'name', 'CorTechs Labs (United States)'),
(11046, 8823, 'en', 'name', 'National Veterinary Research Institute'),
(11047, 8824, 'en', 'name', 'Visiting Nurse Associations of America'),
(11048, 8825, 'en', 'name', 'Institute of Genetics and Biophysics'),
(11049, 8825, 'it', 'name', 'Istituto di Genetica e Biofisica'),
(11050, 8826, 'no_lang_code', 'name', 'Bridger Photonics (United States)'),
(11051, 8827, 'en', 'name', 'Frontier Science & Technology Research Foundation'),
(11052, 8828, 'en', 'name', 'Wisconsin Division of Public Health'),
(11053, 8829, 'it', 'name', 'Ospedale SS. Annunziata'),
(11054, 8830, 'en', 'name', 'Tokyo Metropolitan Children''s Medical Center'),
(11055, 8830, 'ja', 'name', 'ę±äŗ¬éƒ½å­ä¾›ć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(11056, 8831, 'no_lang_code', 'name', 'AquaTerra (United Kingdom)'),
(11057, 8832, 'en', 'name', 'Netherlands Institute for Innovative Ocular Surgery'),
(11058, 8833, 'no_lang_code', 'name', 'Dover (United States)'),
(11059, 8834, 'la', 'name', 'Civita'),
(11060, 8835, 'no_lang_code', 'name', 'Bionova Holding Corporation (United States)'),
(11061, 8836, 'en', 'name', 'Leeds General Infirmary'),
(11062, 8837, 'no_lang_code', 'name', 'Pattern Discovery Technologies (Canada)'),
(11063, 8838, 'en', 'name', 'Center for Disease Control'),
(11064, 8839, 'no_lang_code', 'name', 'Critical Pharmaceuticals (United Kingdom)'),
(11065, 8840, 'no_lang_code', 'name', 'Pall Corporation (United Kingdom)'),
(11066, 8841, 'en', 'name', 'National Institute of Water and Atmospheric Research'),
(11067, 8842, 'no_lang_code', 'name', 'Immtech Pharmaceuticals (United States)'),
(11068, 8843, 'en', 'name', 'Barraquer Opthalmology Center'),
(11069, 8843, 'es', 'name', 'Clínica Oftalmológica Barraquer'),
(11070, 8844, 'en', 'name', 'Change Happens'),
(11071, 8845, 'en', 'name', 'San Antonio Uniformed Services Health Education Consortium'),
(11072, 8846, 'en', 'name', 'Clinical and Laboratory Standards Institute'),
(11073, 8847, 'it', 'name', 'Istituti Fisioterapici Ospitalieri'),
(11074, 8848, 'en', 'name', 'Thrombosis and Atherosclerosis Research Institute'),
(11075, 8849, 'en', 'name', 'Tianjin Hospital'),
(11076, 8849, 'zh', 'name', 'å¤©ę“„åø‚å¤©ę“„åŒ»é™¢'),
(11077, 8850, 'en', 'name', 'Graham International Implant Institute'),
(11078, 8851, 'en', 'name', 'Osborne Head and Neck Institute'),
(11079, 8852, 'ja', 'name', '岔山中央病院'),
(11080, 8852, 'no_lang_code', 'name', 'Okayama Central Hospital'),
(11081, 8853, 'en', 'name', 'Tirat Carmel Mental Health Center'),
(11082, 8853, 'he', 'name', '×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש'),
(11083, 8854, 'no_lang_code', 'name', 'Serco (United Kingdom)'),
(11084, 8855, 'en', 'name', 'Swiss Paraplegic Research'),
(11085, 8856, 'en', 'name', 'Stratheden Hospital'),
(11086, 8857, 'en', 'name', 'TriHealth'),
(11087, 8858, 'en', 'name', 'Museum of Science and Industry'),
(11088, 8859, 'no_lang_code', 'name', 'Data Management Services (United States)'),
(11089, 8860, 'no_lang_code', 'name', 'COI Ceramics (United States)'),
(11090, 8861, 'en', 'name', 'Saving Sight'),
(11091, 8862, 'en', 'name', 'Defence Science and Technology Laboratory'),
(11092, 8863, 'no_lang_code', 'name', 'TechLab (United States)'),
(11093, 8864, 'no_lang_code', 'name', 'Hyper Tech Research (United States)'),
(11094, 8865, 'no_lang_code', 'name', 'Atmospheric and Space Technology Research Associates (United States)'),
(11095, 8866, 'no_lang_code', 'name', 'General Dynamics (United Kingdom)'),
(11096, 8867, 'no_lang_code', 'name', 'Q-Track Corporation (United States)'),
(11097, 8868, 'de', 'name', 'Sana Klinikum Offenbach'),
(11098, 8869, 'no_lang_code', 'name', 'CJ America (United States)'),
(11099, 8870, 'no_lang_code', 'name', 'King Shaw Associates (United Kingdom)'),
(11100, 8871, 'no_lang_code', 'name', 'Pelamis Wave Power (United Kingdom)'),
(11101, 8872, 'en', 'name', 'Ministry of Health'),
(11102, 8872, 'pt', 'name', 'Ministério da Saúde'),
(11103, 8873, 'no_lang_code', 'name', 'MD Precision (Canada)'),
(11104, 8874, 'en', 'name', 'Waterford Institute'),
(11105, 8875, 'en', 'name', 'Foundation for Independent Higher Education'),
(11106, 8876, 'da', 'name', 'Svendborg Sygehus'),
(11107, 8877, 'en', 'name', 'Biocor Institute'),
(11108, 8877, 'es', 'name', 'Biocor Instituto'),
(11109, 8878, 'en', 'name', 'St Louis Community College'),
(11110, 8879, 'en', 'name', 'Eye Institute of Utah'),
(11111, 8880, 'pt', 'name', 'AgĆŖncia Para a Energia'),
(11112, 8881, 'en', 'name', 'Amyotrophic Lateral Sclerosis Therapy Development Institute'),
(11113, 8882, 'no_lang_code', 'name', 'GlobeImmune (United States)'),
(11114, 8883, 'no_lang_code', 'name', 'North East of England Process Industry Cluster (United Kingdom)'),
(11115, 8884, 'en', 'name', 'Silesian Center for Heart Disease'),
(11116, 8885, 'en', 'name', 'Local Government Commission'),
(11117, 8886, 'ja', 'name', 'ęØŖęµœåø‚ē«‹ćæćŖćØčµ¤åå­—ē—…é™¢'),
(11118, 8886, 'no_lang_code', 'name', 'Yokohama Municipal Minato Red Cross Hospital'),
(11119, 8887, 'no_lang_code', 'name', 'IPAC Chemicals (Canada)'),
(11120, 8888, 'no_lang_code', 'name', 'Philips (United Kingdom)'),
(11121, 8889, 'no_lang_code', 'name', 'Magor (Canada)'),
(11122, 8890, 'en', 'name', 'St. Joseph''s Hospital'),
(11123, 8891, 'no_lang_code', 'name', 'Genomatica (United States)'),
(11124, 8892, 'en', 'name', 'Seven Counties Services'),
(11125, 8893, 'no_lang_code', 'name', 'Pd Ld (United States)'),
(11126, 8894, 'en', 'name', 'EAC Network'),
(11127, 8895, 'en', 'name', 'Sports Science Institute of South Africa'),
(11128, 8896, 'en', 'name', 'Methodist Sports Medicine'),
(11129, 8897, 'en', 'name', 'Miles College'),
(11130, 8898, 'no_lang_code', 'name', 'Morphonix (United States)'),
(11131, 8899, 'en', 'name', 'Molecular Biology Consortium'),
(11132, 8900, 'no_lang_code', 'name', 'Syntrix Biosystems (United States)'),
(11133, 8901, 'no_lang_code', 'name', 'Gencoa (United Kingdom)'),
(11134, 8902, 'en', 'name', 'Ministry of Agriculture, Livestock, and Food Supply'),
(11135, 8902, 'pt', 'name', 'MinistƩrio da Agricultura, PecuƔria e Abastecimento'),
(11136, 8903, 'en', 'name', 'Museum of Life and Science'),
(11137, 8904, 'en', 'name', 'Chadron State College'),
(11138, 8905, 'en', 'name', 'Wholistic Stress Control Institute'),
(11139, 8906, 'en', 'name', 'Chartered Institution of Civil Engineering Surveyors'),
(11140, 8907, 'no_lang_code', 'name', 'Stratus Aeronautics (Canada)'),
(11141, 8908, 'en', 'name', 'Turku City Hospital'),
(11142, 8908, 'fi', 'name', 'Turun kaupunginsairaala'),
(11143, 8909, 'en', 'name', 'Silverstein Institute'),
(11144, 8910, 'es', 'name', 'Instituto de NeurologĆ­a de Buenos Aires'),
(11145, 8911, 'en', 'name', 'National Egg Regulatory Officials'),
(11146, 8912, 'en', 'name', 'Point Richmond Tech Center'),
(11147, 8913, 'en', 'name', 'Thai Moogambigai Dental College and Hospital'),
(11148, 8914, 'no_lang_code', 'name', 'Owlstone Medical (United Kingdom)'),
(11149, 8915, 'no_lang_code', 'name', 'RWE (United Kingdom)'),
(11150, 8916, 'en', 'name', 'National Institute of Fitness and Sports in Kanoya'),
(11151, 8916, 'ja', 'name', '鹿屋体育大学'),
(11152, 8917, 'en', 'name', 'Rochester Area Foundation'),
(11153, 8918, 'en', 'name', 'American Pain Society'),
(11154, 8919, 'en', 'name', 'National Institute for Mathematical Sciences'),
(11155, 8920, 'no_lang_code', 'name', 'Alchem Laboratories (United States)'),
(11156, 8921, 'no_lang_code', 'name', 'eHuman (United States)'),
(11157, 8922, 'en', 'name', 'Town and Country Planning Association'),
(11158, 8923, 'no_lang_code', 'name', 'Buffalo BioLabs'),
(11159, 8924, 'fr', 'name', 'Centre Muraz'),
(11160, 8925, 'en', 'name', 'Heartland Health Region'),
(11161, 8926, 'no_lang_code', 'name', 'Santec Systems (United States)'),
(11162, 8927, 'en', 'name', 'Lake County'),
(11163, 8928, 'no_lang_code', 'name', 'Humanitas (United States)'),
(11164, 8929, 'ja', 'name', 'å²”å±±ęøˆē”Ÿä¼šē·åˆē—…é™¢'),
(11165, 8929, 'no_lang_code', 'name', 'Okayama Saiseikai General Hospital'),
(11166, 8930, 'no_lang_code', 'name', 'Advanced Materials and Devices (United States)'),
(11167, 8931, 'no_lang_code', 'name', 'CSL (Germany)'),
(11168, 8932, 'no_lang_code', 'name', 'Leatherhead Food Research'),
(11169, 8933, 'fr', 'name', 'Centre d’Étude et de Valorisation des Algues'),
(11170, 8934, 'en', 'name', 'Taichung Armed Forces General Hospital'),
(11171, 8934, 'zh', 'name', 'åœ‹č»č‡ŗäø­ēø½é†«é™¢'),
(11172, 8935, 'en', 'name', 'Council for the Advancement of Science Writing'),
(11173, 8936, 'en', 'name', 'Research Institute of Innovative Technology for the Earth'),
(11174, 8936, 'ja', 'name', 'åœ°ēƒē’°å¢ƒē”£ę„­ęŠ€č”“ē ”ē©¶ę©Ÿę§‹'),
(11175, 8937, 'en', 'name', 'Montshire Museum of Science'),
(11176, 8938, 'en', 'name', 'Carbon Trust'),
(11177, 8939, 'no_lang_code', 'name', 'Scott Instrument Company (United States)'),
(11178, 8940, 'no_lang_code', 'name', 'HiretheWorld (Canada)'),
(11179, 8941, 'en', 'name', 'Ducks Unlimited Canada'),
(11180, 8941, 'fr', 'name', 'Canards IllimitƩs Canada'),
(11181, 8942, 'no_lang_code', 'name', 'Brain Insights (United States)'),
(11182, 8943, 'en', 'name', 'St. John''s Hospital'),
(11183, 8944, 'no_lang_code', 'name', 'Westinghouse Electric (United States)'),
(11184, 8945, 'de', 'name', 'Sozialstiftung Bamberg'),
(11185, 8946, 'no_lang_code', 'name', 'ScienceScope (United Kingdom)'),
(11186, 8947, 'en', 'name', 'Orthopedic Specialty Hospital'),
(11187, 8948, 'en', 'name', 'Stobhill Hospital'),
(11188, 8949, 'en', 'name', 'Actua'),
(11189, 8950, 'en', 'name', 'American Council of Learned Societies'),
(11190, 8951, 'en', 'name', 'Wolters Kluwer Health'),
(11191, 8952, 'pt', 'name', 'Instituto de MolƩstias Cardiovasculares'),
(11192, 8953, 'en', 'name', 'Sasha Bruce Youthwork'),
(11193, 8954, 'en', 'name', 'Illinois College of Optometry'),
(11194, 8955, 'en', 'name', 'Ulster Hospital'),
(11195, 8956, 'en', 'name', 'Detroit Area Pre College Engineering Program'),
(11196, 8957, 'no_lang_code', 'name', 'Arbutus Biopharma (Canada)'),
(11197, 8958, 'no_lang_code', 'name', 'Field Diagnostic Services (United States)'),
(11198, 8959, 'en', 'name', 'Lexington Clinic'),
(11199, 8960, 'pt', 'name', 'Instituto de Neurologia de Curitiba'),
(11200, 8961, 'en', 'name', 'Zoological Society of San Diego'),
(11201, 8962, 'no_lang_code', 'name', '3T Ophthalmics (United States)'),
(11202, 8963, 'no_lang_code', 'name', 'Atmel (France)'),
(11203, 8964, 'no_lang_code', 'name', 'CardioFocus (United States)'),
(11204, 8965, 'en', 'name', 'Myers-JDC-Brookdale Institute'),
(11205, 8966, 'no_lang_code', 'name', 'Integra LifeSciences (United States)'),
(11206, 8967, 'en', 'name', 'Institute of Bioinformatics and Applied Biotechnology'),
(11207, 8968, 'en', 'name', 'Bourn Hall Clinic'),
(11208, 8969, 'no_lang_code', 'name', 'Social Sectors Development Strategies (United States)'),
(11209, 8970, 'en', 'name', 'National Veterinary Research and Quarantine Service'),
(11210, 8971, 'en', 'name', 'National Hospital of Pediatrics'),
(11211, 8972, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(11212, 8972, 'en', 'name', 'West Bengal State University'),
(11213, 8973, 'en', 'name', 'Peralta Community College District'),
(11214, 8974, 'es', 'name', 'Institut Kaplan'),
(11215, 8975, 'no_lang_code', 'name', 'Fortis Hospital'),
(11216, 8976, 'no_lang_code', 'name', 'Split Engineering (United States)'),
(11217, 8977, 'en', 'name', 'Independent Colleges Office'),
(11218, 8978, 'en', 'name', 'Rhode Island Spine Center'),
(11219, 8979, 'en', 'name', 'DigiBC (Canada)'),
(11220, 8980, 'en', 'name', 'California Institute for Biomedical Research'),
(11221, 8981, 'fr', 'name', 'ADERA'),
(11222, 8982, 'en', 'name', 'Oklahoma Foundation for Medical Quality'),
(11223, 8983, 'ja', 'name', 'å¤§é˜Ŗåŗœęøˆē”Ÿä¼ščŒØęœØē—…é™¢'),
(11224, 8983, 'no_lang_code', 'name', 'Saiseikai Ibaraki Hospital'),
(11225, 8984, 'no_lang_code', 'name', 'Bruker (United States)'),
(11226, 8985, 'no_lang_code', 'name', 'AstraZeneca (United Kingdom)'),
(11227, 8986, 'no_lang_code', 'name', 'Wellstat (United States)'),
(11228, 8987, 'no_lang_code', 'name', 'Cumberland Pharmaceuticals (United States)'),
(11229, 8988, 'no_lang_code', 'name', 'Heidelberg University'),
(11230, 8989, 'no_lang_code', 'name', 'Eion (Canada)'),
(11231, 8990, 'en', 'name', 'Alberta Science Network'),
(11232, 8991, 'no_lang_code', 'name', 'Perceptronics Solutions (United States)'),
(11233, 8992, 'no_lang_code', 'name', 'Phytronix (Canada)'),
(11234, 8993, 'no_lang_code', 'name', 'Kodak (United States)'),
(11235, 8994, 'no_lang_code', 'name', 'Apogee Biotechnology (United States)'),
(11236, 8995, 'en', 'name', 'Parkland Health & Hospital System'),
(11237, 8996, 'no_lang_code', 'name', 'Molecular Oncology (United States)'),
(11238, 8997, 'en', 'name', 'North Carolina State Education Assistance Authority'),
(11239, 8998, 'en', 'name', 'Joseph Rowntree Foundation'),
(11240, 8999, 'en', 'name', 'Central Tuber Crops Research Institute'),
(11241, 9000, 'en', 'name', 'Muroran Institute of Technology'),
(11242, 9000, 'ja', 'name', '室蘭巄愭大学'),
(11243, 9001, 'en', 'name', 'Defiance College'),
(11244, 9002, 'en', 'name', 'Asian American Recovery Services'),
(11245, 9003, 'en', 'name', 'Nevada Division of Public and Behavioral Health'),
(11246, 9004, 'no_lang_code', 'name', 'CemeCon (Germany)'),
(11247, 9005, 'en', 'name', 'Netherlands Forensic Institute'),
(11248, 9005, 'nl', 'name', 'Nederlands Forensisch Instituut'),
(11249, 9006, 'en', 'name', 'Macomb Community College'),
(11250, 9007, 'no_lang_code', 'name', 'Qiagen (United States)'),
(11251, 9008, 'no_lang_code', 'name', 'Circulatory Technology (United States)'),
(11252, 9009, 'en', 'name', 'Tate'),
(11253, 9010, 'en', 'name', 'Hindu College of Pharmacy'),
(11254, 9011, 'en', 'name', 'St. Francis Medical Center'),
(11255, 9012, 'ja', 'name', 'å¤§ę—„ęœ¬ä½å‹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(11256, 9012, 'no_lang_code', 'name', 'Sumitomo Dainippon Pharma (Japan)'),
(11257, 9013, 'no_lang_code', 'name', 'Clod Ensemble (United Kingdom)'),
(11258, 9014, 'no_lang_code', 'name', 'ITI Energy (United Kingdom)'),
(11259, 9015, 'en', 'name', 'Gabrichevsky Institute of Epidemiology and Microbiology'),
(11260, 9015, 'ru', 'name', 'Московский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии им.Š“.Š.Габричевского'),
(11261, 9016, 'no_lang_code', 'name', 'TechEn (United States)'),
(11262, 9017, 'en', 'name', 'Museum of Science and Industry'),
(11263, 9018, 'en', 'name', 'Contra Costa Community College District'),
(11264, 9019, 'no_lang_code', 'name', 'EP (United States)'),
(11265, 9020, 'en', 'name', 'Defence Research and Development Establishment'),
(11266, 9020, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ąÆ‡ą®®ąÆą®Ŗą®¾ą®ŸąÆą®ŸąÆ ą®¤ąÆŠą®“ą®æą®²ą®•ą®®ąÆ'),
(11267, 9021, 'no_lang_code', 'name', 'Altria (United States)'),
(11268, 9022, 'en', 'name', 'Tusculum College'),
(11269, 9023, 'en', 'name', 'Fast Track Drugs and Biologics'),
(11270, 9024, 'no_lang_code', 'name', 'Ogilvy Public Relations (United States)'),
(11271, 9025, 'pt', 'name', 'Instituto Dante Pazzanese de Cardiologia'),
(11272, 9026, 'no_lang_code', 'name', 'Luxfer Group (United Kingdom)'),
(11273, 9027, 'en', 'name', 'Cabrillo College'),
(11274, 9028, 'no_lang_code', 'name', 'Weidlinger Associates (United States)'),
(11275, 9029, 'fr', 'name', 'Centre Hospitalier Laennec'),
(11276, 9030, 'cs', 'name', 'Endokrinologický ústav'),
(11277, 9030, 'en', 'name', 'Institute of Endocrinology'),
(11278, 9031, 'en', 'name', 'Winchester Medical Center'),
(11279, 9032, 'en', 'name', 'Vancouver Aquarium'),
(11280, 9033, 'no_lang_code', 'name', 'Mimosa Acoustics (United States)'),
(11281, 9034, 'no_lang_code', 'name', 'Medical Discovery Partners (United States)'),
(11282, 9035, 'en', 'name', 'Inter-American Tropical Tuna Commission'),
(11283, 9035, 'es', 'name', 'Comisión Interamericana del Atún Tropical'),
(11284, 9036, 'en', 'name', 'AdventHealth Tampa'),
(11285, 9037, 'it', 'name', 'Sapienza Innovazione'),
(11286, 9038, 'no_lang_code', 'name', 'Araim Pharmaceuticals (United States)'),
(11287, 9039, 'en', 'name', 'National Institute of Mental Health'),
(11288, 9039, 'ja', 'name', 'å›½ē«‹ē²¾ē„žč”›ē”Ÿē ”ē©¶ę‰€'),
(11289, 9040, 'en', 'name', 'National Institute of Nutrition'),
(11290, 9040, 'vi', 'name', 'Viện Dinh DưỔng Quốc Gia'),
(11291, 9041, 'no_lang_code', 'name', 'Novartis (Austria)'),
(11292, 9042, 'no_lang_code', 'name', 'GlycoMira Therapeutics (United States)'),
(11293, 9043, 'no_lang_code', 'name', 'Molecular Design International (United States)'),
(11294, 9044, 'en', 'name', 'Appalachian College Association'),
(11295, 9045, 'en', 'name', 'Central Drug Research Institute'),
(11296, 9045, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ औषधि ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(11297, 9045, 'te', 'name', 'ą°•ą±‡ą°‚ą°¦ą±ą°°ą±€ą°Æ ఔషధ పరిశోధనా ą°øą°‚ą°øą±ą°„'),
(11298, 9046, 'no_lang_code', 'name', 'Protein Potential (United States)'),
(11299, 9047, 'no_lang_code', 'name', 'Sofina Foods (Canada)'),
(11300, 9048, 'en', 'name', 'Mountain Empire Community College'),
(11301, 9049, 'no_lang_code', 'name', 'Pipeline Industries Guild (United Kingdom)'),
(11302, 9050, 'no_lang_code', 'name', 'Control Technology Incorporation (United States)'),
(11303, 9051, 'en', 'name', 'Zhengzhou People''s Hospital'),
(11304, 9051, 'zh', 'name', 'éƒ‘å·žäŗŗę°‘åŒ»é™¢ē½‘ē«™'),
(11305, 9052, 'en', 'name', 'Michigan Ear Institute'),
(11306, 9053, 'en', 'name', 'BPP University'),
(11307, 9054, 'no_lang_code', 'name', 'Herman Miller (United States)'),
(11308, 9055, 'en', 'name', 'Alcohol Research Group'),
(11309, 9056, 'ja', 'name', 'č±Šå²”ē—…é™¢'),
(11310, 9056, 'no_lang_code', 'name', 'Toyooka Hospital'),
(11311, 9057, 'en', 'name', 'Asian Cultural Council'),
(11312, 9058, 'no_lang_code', 'name', 'Viva Pharmaceutical (Canada)'),
(11313, 9059, 'no_lang_code', 'name', 'Advanced Tissue (United States)'),
(11314, 9060, 'no_lang_code', 'name', 'A&L Canada Laboratories (Canada)'),
(11315, 9061, 'no_lang_code', 'name', 'Saltire Software (United States)'),
(11316, 9062, 'no_lang_code', 'name', 'Poly Med (United States)'),
(11317, 9063, 'nl', 'name', 'Rijndam Revalidatiecentrum'),
(11318, 9064, 'fr', 'name', 'Centre National de la MƩdecine et des Sciences des Sports'),
(11319, 9065, 'en', 'name', 'Eastern Florida State College'),
(11320, 9066, 'en', 'name', 'Institute of Nutrition and Food Hygiene'),
(11321, 9066, 'es', 'name', 'Instituto de Nutricion e Higiene de los Alimentos'),
(11322, 9067, 'no_lang_code', 'name', 'Superconducting Systems (United States)'),
(11323, 9068, 'no_lang_code', 'name', 'Karyopharm Therapeutics (United States)'),
(11324, 9069, 'no_lang_code', 'name', 'ITN Energy Systems (United States)'),
(11325, 9070, 'no_lang_code', 'name', 'Ebert and Associates'),
(11326, 9071, 'en', 'name', 'Tarrant County College'),
(11327, 9072, 'en', 'name', 'Tucson Orthopaedic Institute'),
(11328, 9073, 'en', 'name', 'Sumitomo Besshi Hospital'),
(11329, 9073, 'ja', 'name', 'ä½å‹åˆ„å­ē—…é™¢'),
(11330, 9074, 'no_lang_code', 'name', 'Biosearch Technologies (United States)'),
(11331, 9075, 'en', 'name', 'Bank Street College of Education'),
(11332, 9076, 'no_lang_code', 'name', 'Fu Associates (United States)'),
(11333, 9077, 'en', 'name', 'Fukuoka Industrial Technology Center'),
(11334, 9077, 'ja', 'name', 'ē¦å²”ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(11335, 9078, 'no_lang_code', 'name', 'Convergent Engineering (United States)'),
(11336, 9079, 'en', 'name', 'Mohave Community College'),
(11337, 9080, 'no_lang_code', 'name', 'Applied Energetics (United States)'),
(11338, 9081, 'en', 'name', 'Cheltenham Festivals'),
(11339, 9082, 'no_lang_code', 'name', 'NovaDigm Therapeutics (United States)'),
(11340, 9083, 'no_lang_code', 'name', 'BioVectra (Canada)'),
(11341, 9084, 'en', 'name', 'Belmont Center for Comprehensive Treatment'),
(11342, 9085, 'de', 'name', 'Friedrich Miescher Laboratory, Friedrich-Miescher-Laboratorium für Biologische Arbeitsgruppen in der Max-Planck-Gesellschaft'),
(11343, 9086, 'nl', 'name', 'Crucell'),
(11344, 9086, 'no_lang_code', 'name', 'Johnson & Johnson (Netherlands)'),
(11345, 9087, 'en', 'name', 'Pinkus Dermatopathology Laboratory'),
(11346, 9088, 'en', 'name', 'International Water Management Institute'),
(11347, 9089, 'no_lang_code', 'name', 'Applied Research Associates (United States)'),
(11348, 9090, 'ja', 'name', 'ć‚Øćƒ¼ć‚¶ć‚¤ę Ŗå¼ä¼šē¤¾'),
(11349, 9090, 'no_lang_code', 'name', 'Eisai (Japan)'),
(11350, 9091, 'no_lang_code', 'name', 'Ansun BioPharma (United States)'),
(11351, 9092, 'en', 'name', 'Constructing Excellence'),
(11352, 9093, 'en', 'name', 'Orange County Heart Institute and Research Center'),
(11353, 9094, 'ja', 'name', 'å®å”šåø‚ē«‹ē—…é™¢'),
(11354, 9094, 'no_lang_code', 'name', 'Takarazuka City Hospital'),
(11355, 9095, 'en', 'name', 'LaGrange College'),
(11356, 9096, 'no_lang_code', 'name', 'Diffinity Genomics (United States)'),
(11357, 9097, 'en', 'name', 'Centre For Irish and European Security'),
(11358, 9098, 'en', 'name', 'MalariaGEN'),
(11359, 9099, 'no_lang_code', 'name', 'Rohde & Schwarz (United Kingdom)'),
(11360, 9100, 'no_lang_code', 'name', 'Nanospectra Biosciences (United States)'),
(11361, 9101, 'en', 'name', 'Candiolo Cancer Institute'),
(11362, 9101, 'fr', 'name', 'Istituto di Candiolo'),
(11363, 9102, 'no_lang_code', 'name', 'ABB (United Kingdom)'),
(11364, 9103, 'en', 'name', 'Center for Crisis Psychology'),
(11365, 9103, 'no', 'name', 'Senter for Krisepsykologi'),
(11366, 9104, 'no_lang_code', 'name', 'La Jolla Pharmaceutical (United States)'),
(11367, 9105, 'en', 'name', 'Standing to Achieve New Directions'),
(11368, 9106, 'de', 'name', 'Klinikum Saarbrücken'),
(11369, 9107, 'en', 'name', 'Gold Skin Care Center'),
(11370, 9108, 'en', 'name', 'impulse.brussels'),
(11371, 9109, 'en', 'name', 'Nordland Hospital Trust'),
(11372, 9109, 'no', 'name', 'Nordlandssykehuset'),
(11373, 9110, 'no_lang_code', 'name', 'Sengenia (United Kingdom)'),
(11374, 9111, 'en', 'name', 'Phoenix Houses of New England'),
(11375, 9112, 'en', 'name', 'Pacific Health Foundation'),
(11376, 9113, 'no_lang_code', 'name', 'Mercator MedSystems (United States)'),
(11377, 9114, 'de', 'name', 'Belgische Wissenschaftsinstitut für Ɩffentliche Gesundheit'),
(11378, 9114, 'en', 'name', 'Scientific Institute of Public Health'),
(11379, 9114, 'fr', 'name', 'Institut Scientifique de SantƩ Publique'),
(11380, 9114, 'nl', 'name', 'Wetenschappelijk Instituut Volksgezondheid'),
(11381, 9115, 'en', 'name', 'Civil Aviation Authority'),
(11382, 9116, 'no_lang_code', 'name', 'AstraZeneca (Sweden)'),
(11383, 9117, 'it', 'name', 'Azienda Ospedaliera Sant’Antonio Abate di Gallarate'),
(11384, 9118, 'en', 'name', 'Northern Virginia Community College'),
(11385, 9119, 'en', 'name', 'Rhode Island Department of Children, Youth & Families'),
(11386, 9120, 'en', 'name', 'Tokyo Rosai Hospital'),
(11387, 9120, 'ja', 'name', 'ę±äŗ¬åŠ“ē½ē—…é™¢'),
(11388, 9121, 'no_lang_code', 'name', 'Istituto De Angeli (Italy)'),
(11389, 9122, 'en', 'name', 'Dutch College of General Practitioners'),
(11390, 9122, 'nl', 'name', 'Nederlands Huisartsen Genootschap'),
(11391, 9123, 'en', 'name', 'Piedmont HealthCare'),
(11392, 9124, 'en', 'name', 'Captain James A. Lovell Federal Health Care Center'),
(11393, 9125, 'en', 'name', 'Skin and Cancer Foundation'),
(11394, 9126, 'no_lang_code', 'name', 'Lasmed (United States)'),
(11395, 9127, 'no_lang_code', 'name', 'Pfizer (United Kingdom)'),
(11396, 9128, 'no_lang_code', 'name', 'Sunny BioDiscovery (United States)'),
(11397, 9129, 'no_lang_code', 'name', 'Aptose Biosciences (Canada)'),
(11398, 9130, 'cy', 'name', 'Cyfoeth Naturiol Cymru'),
(11399, 9130, 'en', 'name', 'Natural Resources Wales'),
(11400, 9131, 'en', 'name', 'Triton College'),
(11401, 9132, 'en', 'name', 'DDL Diagnostic Laboratory'),
(11402, 9133, 'en', 'name', 'National Institute of Mental Health'),
(11403, 9133, 'es', 'name', 'Instituto Nacional de Salud Mental'),
(11404, 9134, 'no_lang_code', 'name', 'Reveo (United States)'),
(11405, 9135, 'no_lang_code', 'name', 'Fox Chase Chemical Diversity Center'),
(11406, 9136, 'no_lang_code', 'name', 'Aptuit (Italy)'),
(11407, 9137, 'en', 'name', 'Elms College'),
(11408, 9138, 'no_lang_code', 'name', 'PermSelect (United States)'),
(11409, 9139, 'pt', 'name', 'Instituto Evandro Chagas'),
(11410, 9140, 'de', 'name', 'Chemotherapeutisches Forschungsinstitut Georg-Speyer-Haus, Georg Speyer Haus'),
(11411, 9141, 'no_lang_code', 'name', 'NeuroWave Systems (United States)'),
(11412, 9142, 'en', 'name', 'Institute for Research in Fundamental Sciences'),
(11413, 9142, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ ŲÆŲ§Ł†Ų“ā€ŒŁ‡Ų§ŪŒ ŲØŁ†ŪŒŲ§ŲÆŪŒ'),
(11414, 9143, 'en', 'name', 'Academy of the Social Sciences in Australia'),
(11415, 9144, 'no_lang_code', 'name', 'Genesegues (United States)'),
(11416, 9145, 'en', 'name', 'Institute for Myeloma & Bone Cancer Research'),
(11417, 9146, 'de', 'name', 'Max-Planck-Institut für Biologie des Alterns'),
(11418, 9146, 'en', 'name', 'Max Planck Institute for Biology of Ageing'),
(11419, 9147, 'no_lang_code', 'name', 'Caelum Research Corporation (United States)'),
(11420, 9148, 'en', 'name', 'Oasis of Hope Hospital'),
(11421, 9149, 'no_lang_code', 'name', 'Sitar (United States)'),
(11422, 9150, 'no_lang_code', 'name', 'Xoran Technologies (United States)'),
(11423, 9151, 'en', 'name', 'Bucks County Division of Human Services'),
(11424, 9152, 'fr', 'name', 'Laboratoire National de SantƩ'),
(11425, 9153, 'no_lang_code', 'name', 'Aciont (United States)'),
(11426, 9154, 'am', 'name', 'įŒ„į‰įˆ­ įŠ įŠ•į‰ įˆ³ įˆ†įˆµį’į‰³įˆ'),
(11427, 9154, 'en', 'name', 'Tikur Anbessa Hospital'),
(11428, 9155, 'es', 'name', 'Centro MƩdico Docente La Trinidad'),
(11429, 9156, 'en', 'name', 'Montana State University–Northern'),
(11430, 9157, 'en', 'name', 'Cure Spinal Muscular Atrophy'),
(11431, 9158, 'en', 'name', 'Child and Family Research Institute'),
(11432, 9159, 'no_lang_code', 'name', 'APD Life Sciences (United States)'),
(11433, 9160, 'en', 'name', 'National Rehabilitation Center'),
(11434, 9160, 'ko', 'name', 'źµ­ė¦½ģž¬ķ™œģ›'),
(11435, 9161, 'no_lang_code', 'name', 'Demtroys (Canada)'),
(11436, 9162, 'no_lang_code', 'name', 'Reaction Engineering International (United States)'),
(11437, 9163, 'en', 'name', 'Tosei General Hospital'),
(11438, 9163, 'ja', 'name', 'å…¬ē«‹é™¶ē”Ÿē—…é™¢'),
(11439, 9164, 'en', 'name', 'European Society of Concurrent Enterprising Network'),
(11440, 9164, 'it', 'name', 'SocietĆ  Europea di Rete Concorrente Simultanea'),
(11441, 9165, 'no_lang_code', 'name', 'Neurobehavioral Research (United States)'),
(11442, 9166, 'no_lang_code', 'name', 'James Cropper (United Kingdom)'),
(11443, 9167, 'en', 'name', 'Cardiovascular Research Foundation'),
(11444, 9168, 'en', 'name', 'Animal Diseases Research Institute'),
(11445, 9169, 'no_lang_code', 'name', 'Monsanto (United Kingdom)'),
(11446, 9170, 'no_lang_code', 'name', 'Janssen (Belgium)'),
(11447, 9171, 'en', 'name', 'College of the Mainland'),
(11448, 9172, 'no_lang_code', 'name', 'Detroit R&D (United States)'),
(11449, 9173, 'en', 'name', 'Whittier College'),
(11450, 9173, 'fr', 'name', 'CollĆØge whittier'),
(11451, 9174, 'no_lang_code', 'name', 'Spectros Corporation (United States)'),
(11452, 9175, 'no_lang_code', 'name', 'Cogmation Robotics (Canada)'),
(11453, 9176, 'en', 'name', 'National Health Service Scotland'),
(11454, 9177, 'en', 'name', 'Conference Board'),
(11455, 9178, 'en', 'name', 'National Association of Health Data Organizations'),
(11456, 9179, 'en', 'name', 'Ibaraki Prefectural Livestock Center'),
(11457, 9179, 'ja', 'name', 'ē•œē”£ć‚»ćƒ³ć‚æćƒ¼ļ¼čŒØåŸŽēœŒ'),
(11458, 9180, 'no_lang_code', 'name', 'Applied Sciences (United States)'),
(11459, 9181, 'en', 'name', 'Franklin Regional Council of Governments'),
(11460, 9182, 'en', 'name', 'Metropolitan Police Service'),
(11461, 9183, 'en', 'name', 'Osys Technology'),
(11462, 9184, 'en', 'name', 'Arthritis Foundation'),
(11463, 9185, 'en', 'name', 'Fukuoka Dental College'),
(11464, 9185, 'ja', 'name', 'ē¦å²”ę­Æē§‘å¤§å­¦'),
(11465, 9186, 'en', 'name', 'Cankdeska Cikana Community College'),
(11466, 9187, 'no_lang_code', 'name', 'Neurotronics (United States)'),
(11467, 9188, 'de', 'name', 'Klinikum Ernst von Bergmann'),
(11468, 9189, 'en', 'name', 'National Co-ordinating Centre for Public Engagement'),
(11469, 9190, 'en', 'name', 'Pacific Resources for Education and Learning'),
(11470, 9191, 'no_lang_code', 'name', 'Predictive Biology (United States)'),
(11471, 9192, 'en', 'name', 'National Institute of Plant Genome Research'),
(11472, 9193, 'no_lang_code', 'name', 'Arzeda (United States)'),
(11473, 9194, 'en', 'name', 'National Institute for Occupational Safety and Health'),
(11474, 9195, 'es', 'name', 'Parque Tecnológico de la Salud'),
(11475, 9196, 'no_lang_code', 'name', 'Affymax (United States)'),
(11476, 9197, 'no_lang_code', 'name', 'Cardno (United States)'),
(11477, 9198, 'no_lang_code', 'name', 'STRATA Skin Sciences (United States)'),
(11478, 9199, 'no_lang_code', 'name', 'Porter Novelli (United States)'),
(11479, 9200, 'en', 'name', 'Fertility Center of Las Vegas'),
(11480, 9201, 'no_lang_code', 'name', 'Neuro Device Innovations (United States)'),
(11481, 9202, 'en', 'name', 'National Alliance for Hispanic Health'),
(11482, 9203, 'no_lang_code', 'name', 'Ajinomoto (Russia)'),
(11483, 9203, 'ru', 'name', 'АГжиномото'),
(11484, 9204, 'no_lang_code', 'name', 'Health Decisions (United States)'),
(11485, 9205, 'no_lang_code', 'name', 'Arbor Vita (United States)'),
(11486, 9206, 'en', 'name', 'Accents On Health'),
(11487, 9207, 'en', 'name', 'Nemours Children''s Clinic'),
(11488, 9208, 'no_lang_code', 'name', 'Technology International Incorporated of Virginia (United States)'),
(11489, 9209, 'no_lang_code', 'name', 'NeuroNexus (United States)'),
(11490, 9210, 'en', 'name', 'Association of Occupational and Environmental Clinics'),
(11491, 9211, 'no_lang_code', 'name', 'Enzon Pharmaceuticals (United States)'),
(11492, 9212, 'es', 'name', 'Instituto de CardiologĆ­a y CirugĆ­a Cardiovascular'),
(11493, 9213, 'en', 'name', 'Ohio Academy of Science'),
(11494, 9214, 'no_lang_code', 'name', 'Tasktop Technologies (Canada)'),
(11495, 9215, 'no_lang_code', 'name', 'BrightOutcome (United States)'),
(11496, 9216, 'en', 'name', 'Age UK'),
(11497, 9217, 'en', 'name', 'Lane Community College'),
(11498, 9218, 'en', 'name', 'National Forensic Institute'),
(11499, 9219, 'no_lang_code', 'name', 'TerraBioGen (Canada)'),
(11500, 9220, 'en', 'name', 'HealthRIGHT 360'),
(11501, 9221, 'no_lang_code', 'name', 'Newton Labs (United States)'),
(11502, 9222, 'nl', 'name', 'Stichting Epilepsie Instellingen Nederland'),
(11503, 9223, 'no_lang_code', 'name', 'McGuireWoods'),
(11504, 9224, 'no_lang_code', 'name', 'Sartorius (United Kingdom)'),
(11505, 9225, 'no_lang_code', 'name', 'NuPotential (United States)'),
(11506, 9226, 'en', 'name', 'Massachusetts Executive Office of Health and Human Services'),
(11507, 9227, 'en', 'name', 'Kidney Centre'),
(11508, 9228, 'no_lang_code', 'name', 'Thoratec Corporation (United States)'),
(11509, 9229, 'en', 'name', 'Waianae Coast Comprehensive Health Center'),
(11510, 9230, 'hu', 'name', 'OrszÔgos KorÔnyi Tbc és Pulmonológiai Intézet'),
(11511, 9231, 'de', 'name', 'St. Franziskus Hospital'),
(11512, 9232, 'en', 'name', 'National Institute of Animal Health'),
(11513, 9232, 'ja', 'name', 'å‹•ē‰©č”›ē”Ÿē ”ē©¶éƒØé–€'),
(11514, 9233, 'en', 'name', 'Yamaguchi Prefecture Central Hospital'),
(11515, 9233, 'ja', 'name', 'å±±å£ēœŒē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(11516, 9234, 'en', 'name', 'Boston Children''s Museum'),
(11517, 9235, 'no_lang_code', 'name', 'Site Vision Surveys (United Kingdom)'),
(11518, 9236, 'no_lang_code', 'name', 'Chrysalis BioTherapeutics (United States)'),
(11519, 9237, 'no_lang_code', 'name', 'Biolog (United States)'),
(11520, 9238, 'en', 'name', 'Lincoln University - Pennsylvania'),
(11521, 9238, 'es', 'name', 'Universidad Lincoln'),
(11522, 9239, 'en', 'name', 'Wesley Long Hospital'),
(11523, 9240, 'no_lang_code', 'name', 'Electro Energy (United States)'),
(11524, 9241, 'en', 'name', 'Sindh Institute of Urology and Transplantation'),
(11525, 9242, 'no_lang_code', 'name', 'Chiral Photonics (United States)'),
(11526, 9243, 'en', 'name', 'Royal Blackburn Teaching Hospital'),
(11527, 9244, 'no_lang_code', 'name', 'Athens Research and Technology (United States)'),
(11528, 9245, 'no_lang_code', 'name', 'Thrombodyne (United States)'),
(11529, 9246, 'en', 'name', 'Central Institute of Medicinal and Aromatic Plants'),
(11530, 9246, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤”ą¤·ą¤§ą„€ą¤Æ ą¤ą¤µą¤‚ सगंध ą¤Ŗą„Œą¤§ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(11531, 9246, 'ml', 'name', 'ą“øąµ†ąµ»ą“Ÿąµą“°ąµ½ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ąµ†ą“”ą“æą“øą“æą“Øąµ½ ą“†ą“Øąµą“±ąµ ą“…ą“°ąµ‹ą“®ą“¾ą“±ąµą“±ą“æą“•ąµ ą“Ŗąµą“²ą“¾ąµ»ą“±ąµą“øąµ'),
(11532, 9247, 'fr', 'name', 'Centre de GƩnƩtique MolƩculaire'),
(11533, 9248, 'en', 'name', 'Panagiotis & Aglaia Kyriakou Children''s Hospital'),
(11534, 9249, 'no_lang_code', 'name', 'Active Space Technologies (Portugal)'),
(11535, 9250, 'en', 'name', 'National Institute of Oceanography and Fisheries'),
(11536, 9251, 'en', 'name', 'Vocational Instruction Project Community Services'),
(11537, 9252, 'de', 'name', 'Museum für Naturkunde'),
(11538, 9252, 'en', 'name', 'Museum für Naturkunde - Leibniz Institute for Evolution and Biodiversity Science'),
(11539, 9253, 'no_lang_code', 'name', 'CHI Systems (United States)'),
(11540, 9254, 'en', 'name', 'Faculty of Medicine of São José do Rio Preto'),
(11541, 9254, 'pt', 'name', 'Faculdade de Medicina de São José do Rio Preto'),
(11542, 9255, 'en', 'name', 'Arkansas Academy of Science'),
(11543, 9256, 'no_lang_code', 'name', 'Hepatitis B Foundation'),
(11544, 9257, 'en', 'name', 'Nuclear Threat Initiative'),
(11545, 9258, 'no_lang_code', 'name', 'Polatomic (United States)'),
(11546, 9259, 'en', 'name', 'Austin College'),
(11547, 9260, 'no_lang_code', 'name', 'Organix (United States)'),
(11548, 9261, 'en', 'name', 'Institute of Chemical Kinetics and Combustion'),
(11549, 9261, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической кинетики Šø Š³Š¾Ń€ŠµŠ½ŠøŃ им. Š’.Š’. ВоевоГского Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(11550, 9262, 'no_lang_code', 'name', 'MAST Carbon (United Kingdom)'),
(11551, 9263, 'no_lang_code', 'name', 'DSM (Canada)'),
(11552, 9264, 'no_lang_code', 'name', 'Linde (United Kingdom)'),
(11553, 9265, 'en', 'name', 'St. Joseph Medical Center'),
(11554, 9266, 'no_lang_code', 'name', 'Total Child Health (United States)'),
(11555, 9267, 'en', 'name', 'Foundation for Applied Molecular Evolution'),
(11556, 9268, 'en', 'name', 'Trident Technical College'),
(11557, 9269, 'en', 'name', 'Asian and Pacific Islander Wellness Center'),
(11558, 9270, 'en', 'name', 'National Center for Clinical Laboratories'),
(11559, 9271, 'en', 'name', 'Actuarial Research Corporation'),
(11560, 9272, 'no_lang_code', 'name', 'LKT Laboratories (United States)'),
(11561, 9273, 'it', 'name', 'Ospedale Eugenio Morelli'),
(11562, 9274, 'fr', 'name', 'Centre Cardiologique du Nord'),
(11563, 9275, 'pt', 'name', 'Secretaria Municipal de SaĆŗde'),
(11564, 9276, 'en', 'name', 'Mitsubishi Chemical Holdings'),
(11565, 9276, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äø‰č±ć‚±ćƒŸć‚«ćƒ«ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(11566, 9276, 'no_lang_code', 'name', 'Mitsubishi Chemical Holdings (Japan)'),
(11567, 9277, 'en', 'name', 'Jawaharlal Nehru Centre for Advanced Scientific Research'),
(11568, 9278, 'ja', 'name', 'ęøˆē”Ÿä¼šę»‹č³€ēœŒē—…é™¢'),
(11569, 9278, 'no_lang_code', 'name', 'Saiseikai Shigaken Hospital'),
(11570, 9279, 'en', 'name', 'School for Advanced Research'),
(11571, 9280, 'en', 'name', 'American Academy of Cosmetic Dentistry'),
(11572, 9281, 'en', 'name', 'New England Complex Systems Institute'),
(11573, 9282, 'no_lang_code', 'name', 'Osmania General Hospital'),
(11574, 9282, 'te', 'name', 'ą°‰ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ ą°œą°Øą°°ą°²ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(11575, 9283, 'ja', 'name', '吉焄寺あさひ病院は'),
(11576, 9283, 'no_lang_code', 'name', 'Toujinkai Hospital'),
(11577, 9284, 'no_lang_code', 'name', 'Fractal Systems (Canada)'),
(11578, 9285, 'no_lang_code', 'name', 'Precision Optics Corporation (United States)'),
(11579, 9286, 'no_lang_code', 'name', 'Airak (United States)'),
(11580, 9287, 'en', 'name', 'Favaloro Foundation'),
(11581, 9288, 'no_lang_code', 'name', 'Photek (United Kingdom)'),
(11582, 9289, 'en', 'name', 'Institute of Crop Science'),
(11583, 9289, 'ja', 'name', 'ę¬”äø–ä»£ä½œē‰©é–‹ē™ŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(11584, 9290, 'en', 'name', 'Swami Vivekanand Subharti University'),
(11585, 9291, 'en', 'name', 'Institute for Molecular Medicine'),
(11586, 9292, 'no_lang_code', 'name', 'Vescent Photonics (United States)'),
(11587, 9293, 'en', 'name', 'Center for Severe Weather Research'),
(11588, 9294, 'en', 'name', 'Canadian Coalition for Global Health Research'),
(11589, 9295, 'no_lang_code', 'name', 'MATECH (United States)'),
(11590, 9296, 'no_lang_code', 'name', 'Beryllium (United States)'),
(11591, 9297, 'en', 'name', 'Institute for Infocomm Research'),
(11592, 9298, 'no_lang_code', 'name', 'Advanta Seeds (Netherlands)'),
(11593, 9299, 'en', 'name', 'Economic Policy Institute'),
(11594, 9300, 'en', 'name', 'St. Luke''s Hospital'),
(11595, 9301, 'en', 'name', 'Whiston Hospital'),
(11596, 9302, 'fr', 'name', 'Institut Alfred Fournier'),
(11597, 9303, 'en', 'name', 'Pandit Bhagwat Dayal Sharma Post Graduate Institute of Medical Sciences'),
(11598, 9304, 'en', 'name', 'Takayama Red Cross Hospital'),
(11599, 9304, 'ja', 'name', 'é«˜å±±čµ¤åå­—ē—…é™¢'),
(11600, 9305, 'no_lang_code', 'name', 'Sasken (India)'),
(11601, 9306, 'en', 'name', 'International Crops Research Institute for the Semi-Arid Tropics'),
(11602, 9307, 'no_lang_code', 'name', 'Guided Therapeutics (United States)'),
(11603, 9308, 'en', 'name', 'Brookhaven Science Associates'),
(11604, 9309, 'en', 'name', 'Alamo Colleges'),
(11605, 9310, 'no_lang_code', 'name', 'PAREXEL International (France)'),
(11606, 9311, 'es', 'name', 'Instituto Cardiovascular de Buenos Aires'),
(11607, 9312, 'en', 'name', 'American Thoracic Society'),
(11608, 9313, 'no_lang_code', 'name', 'DNASTAR (United States)'),
(11609, 9314, 'no_lang_code', 'name', 'Dimera (United States)'),
(11610, 9315, 'no_lang_code', 'name', 'Quantronix (United States)'),
(11611, 9316, 'en', 'name', 'Council of Graduate Schools'),
(11612, 9317, 'en', 'name', 'Center for American Archeology'),
(11613, 9318, 'no_lang_code', 'name', 'Toshiba (United Kingdom)'),
(11614, 9319, 'no_lang_code', 'name', 'Advanced Ceramics Manufacturing (United States)'),
(11615, 9320, 'en', 'name', 'Western Institute For Biomedical Research'),
(11616, 9321, 'no_lang_code', 'name', 'Envigo (United States)'),
(11617, 9322, 'en', 'name', 'San Francisco Community Clinic Consortium'),
(11618, 9323, 'en', 'name', 'Innovative Designs in Environments for an Aging Society'),
(11619, 9324, 'en', 'name', 'Institute of Biochemistry'),
(11620, 9325, 'en', 'name', 'Oregon Health Authority'),
(11621, 9326, 'en', 'name', 'Aspirus Wausau Hospital'),
(11622, 9327, 'en', 'name', 'Southern Colorado Clinic'),
(11623, 9328, 'en', 'name', 'Native American Rehabilitation Association'),
(11624, 9329, 'no_lang_code', 'name', 'InDevR (United States)'),
(11625, 9330, 'no_lang_code', 'name', 'Supercon (United States)'),
(11626, 9331, 'it', 'name', 'Istituto di Analisi dei Sistemi ed Informatica Antonio Ruberti'),
(11627, 9332, 'en', 'name', 'Hyogo Prefectural Cancer Center'),
(11628, 9332, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼');
INSERT INTO `ror_settings` VALUES
(11629, 9333, 'no_lang_code', 'name', 'Ateknea Solutions (Hungary)'),
(11630, 9334, 'no_lang_code', 'name', 'MultiCell Technologies (United States)'),
(11631, 9335, 'en', 'name', 'Samuel S Fels Fund'),
(11632, 9336, 'en', 'name', 'Georgia Department of Behavioral Health and Developmental Disabilities'),
(11633, 9337, 'en', 'name', 'International Institute of Tropical Agriculture'),
(11634, 9337, 'fr', 'name', 'Institut International d''Agriculture Tropicale'),
(11635, 9338, 'en', 'name', 'Teratology Society'),
(11636, 9339, 'en', 'name', 'Manchester City Council'),
(11637, 9340, 'en', 'name', 'Gatorade Sports Science Institute'),
(11638, 9341, 'it', 'name', 'Servizio Sanitario Nazionale'),
(11639, 9342, 'el', 'name', 'ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī‘Ļ†ĻĪæĪ“Ī¹ĻƒĪÆĻ‰Ī½ & Ī”ĪµĻĪ¼Ī±Ļ„Ī¹ĪŗĻŽĪ½ ĪĻŒĻƒĻ‰Ī½ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(11640, 9342, 'en', 'name', 'Hospital Venereal and Skin Diseases Thessaloniki'),
(11641, 9343, 'no_lang_code', 'name', 'Neuros Medical (United States)'),
(11642, 9344, 'en', 'name', 'Pankey Institute'),
(11643, 9345, 'en', 'name', 'United States Breastfeeding Committee'),
(11644, 9346, 'no_lang_code', 'name', 'Centre for Computational Continuum Mechanics (Slovenia)'),
(11645, 9347, 'en', 'name', 'Carlsberg Laboratory'),
(11646, 9348, 'no_lang_code', 'name', 'Walter Knoll (Germany)'),
(11647, 9349, 'no_lang_code', 'name', 'ADVA Optical Networking (Germany)'),
(11648, 9350, 'en', 'name', 'Southern New England Rehabilitation Center'),
(11649, 9351, 'ja', 'name', 'å¤§ä¹…äæē—…é™¢'),
(11650, 9351, 'no_lang_code', 'name', 'Ohkubo Hospital'),
(11651, 9352, 'en', 'name', 'Wentworth Hospital'),
(11652, 9353, 'fr', 'name', 'Les Scientifines'),
(11653, 9354, 'en', 'name', 'Ontario Tobacco Research Unit'),
(11654, 9354, 'fr', 'name', 'Unite de Recherche sur le Tabac de L''Ontario'),
(11655, 9355, 'no_lang_code', 'name', 'EpiVax (United States)'),
(11656, 9356, 'no_lang_code', 'name', 'Analogic (Canada)'),
(11657, 9357, 'en', 'name', 'Headache Care Center'),
(11658, 9358, 'en', 'name', 'Hellenic Center for Disease Control & Prevention'),
(11659, 9359, 'en', 'name', 'World Health Organization - Egypt'),
(11660, 9359, 'fr', 'name', 'Organisation mondiale de la santƩ'),
(11661, 9359, 'ru', 'name', 'Š’ŃŠµŠ¼ŠøŃ€Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(11662, 9360, 'en', 'name', 'Roy Castle Lung Cancer Foundation'),
(11663, 9361, 'en', 'name', 'Phillips Academy'),
(11664, 9362, 'no_lang_code', 'name', 'Industrial Science & Technology Network (United States)'),
(11665, 9363, 'pl', 'name', 'Instytut Farmaceutyczny'),
(11666, 9364, 'en', 'name', 'Sterling College - Vermont'),
(11667, 9365, 'en', 'name', 'Imperial College Healthcare NHS Trust'),
(11668, 9366, 'no_lang_code', 'name', 'Huawei Technologies (United Kingdom)'),
(11669, 9367, 'it', 'name', 'Ospedale degli Infermi'),
(11670, 9368, 'en', 'name', 'Punjab Institute of Cardiology'),
(11671, 9369, 'en', 'name', 'Cooper University Health Care'),
(11672, 9370, 'en', 'name', 'Royal Lancaster Infirmary'),
(11673, 9371, 'no_lang_code', 'name', 'Agile Sciences (United States)'),
(11674, 9372, 'en', 'name', 'National Disaster Medical Center'),
(11675, 9372, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ē½å®³åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(11676, 9373, 'en', 'name', 'Preferred Family Healthcare'),
(11677, 9374, 'en', 'name', 'Northern Alberta Institute of Technology'),
(11678, 9375, 'en', 'name', 'New Zealand College of Chiropractic'),
(11679, 9376, 'en', 'name', 'Korea Center for Disease Control and Prevention'),
(11680, 9377, 'no_lang_code', 'name', 'Targeson (United States)'),
(11681, 9378, 'fr', 'name', 'QuƩbec Science (Canada)'),
(11682, 9379, 'en', 'name', 'Newberry College'),
(11683, 9380, 'no_lang_code', 'name', 'Ansys (United Kingdom)'),
(11684, 9381, 'no_lang_code', 'name', 'Kinder Magic Software (United States)'),
(11685, 9382, 'en', 'name', 'Houston Headache & Neurological Institute'),
(11686, 9383, 'no_lang_code', 'name', 'Recon Instruments (Canada)'),
(11687, 9384, 'no_lang_code', 'name', '2B Technologies (United States)'),
(11688, 9385, 'no_lang_code', 'name', '3D Molecular Designs (United States)'),
(11689, 9386, 'en', 'name', 'Tochigi Medical Center'),
(11690, 9386, 'ja', 'name', 'ę ƒęœØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(11691, 9387, 'no_lang_code', 'name', 'Pall Corporation (United States)'),
(11692, 9388, 'en', 'name', 'Hungarian Meat Research Institute'),
(11693, 9389, 'en', 'name', 'Vitalant'),
(11694, 9390, 'no_lang_code', 'name', 'Titanium Metals Corporation (United Kingdom)'),
(11695, 9391, 'en', 'name', 'Institute of Higher Nervous Activity and Neurophysiology'),
(11696, 9391, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŃˆŠµŠ¹ нервной Š“ŠµŃŃ‚ŠµŠ»ŃŒŠ½Š¾ŃŃ‚Šø Šø нейрофизиологии Российской акаГемии наук'),
(11697, 9392, 'en', 'name', 'Lee College'),
(11698, 9393, 'en', 'name', 'Foundation for Health Care Quality'),
(11699, 9394, 'en', 'name', 'Lloyd''s Register Foundation'),
(11700, 9395, 'no_lang_code', 'name', 'McKesson (United States)'),
(11701, 9396, 'no_lang_code', 'name', 'AdvanSource Biomaterials (United States)'),
(11702, 9397, 'en', 'name', 'Tai Po Hospital'),
(11703, 9397, 'zh', 'name', '大埔醫院'),
(11704, 9398, 'no_lang_code', 'name', 'Papa Ola Lokahi'),
(11705, 9399, 'en', 'name', 'Virginia Commonwealth University Medical Center'),
(11706, 9400, 'en', 'name', 'Island Health'),
(11707, 9401, 'no_lang_code', 'name', 'Pro Ed (United States)'),
(11708, 9402, 'it', 'name', 'Frascati Scienza'),
(11709, 9403, 'en', 'name', 'Fleming College'),
(11710, 9404, 'en', 'name', 'North Dakota Department of Human Services'),
(11711, 9405, 'en', 'name', 'Strong Memorial Hospital'),
(11712, 9406, 'en', 'name', 'Hagerstown Community College'),
(11713, 9407, 'no_lang_code', 'name', 'EndoShape (United States)'),
(11714, 9408, 'ja', 'name', 'ć‚­ćƒŖćƒ³ę Ŗå¼ä¼šē¤¾'),
(11715, 9408, 'no_lang_code', 'name', 'Kirin (Japan)'),
(11716, 9409, 'en', 'name', 'Los Angeles Community College District'),
(11717, 9410, 'en', 'name', 'Neuroscience Education Institute'),
(11718, 9411, 'en', 'name', 'Beijing Center for Disease Prevention and Control'),
(11719, 9411, 'zh', 'name', 'åŒ—äŗ¬åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(11720, 9412, 'no_lang_code', 'name', 'Bio Concept Laboratories (United States)'),
(11721, 9413, 'no_lang_code', 'name', 'Endocyte (United States)'),
(11722, 9414, 'no_lang_code', 'name', 'Sion Power (United States)'),
(11723, 9415, 'no_lang_code', 'name', 'Vemco (Canada)'),
(11724, 9416, 'no_lang_code', 'name', 'Empirical Technologies (United States)'),
(11725, 9417, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ Ń†ŠµŠ½Ń‚ŃŠŃ€ по Ń€Š°Š“ŠøŠ¾Š±ŠøŠ¾Š»Š¾Š³ŠøŃ Šø раГиационна защита'),
(11726, 9417, 'en', 'name', 'National Center of Radiobiology and Radiation Protection'),
(11727, 9418, 'en', 'name', 'Logan University'),
(11728, 9419, 'en', 'name', 'New York State Unified Court System'),
(11729, 9420, 'fr', 'name', 'HƓpital Saint Roch'),
(11730, 9421, 'no_lang_code', 'name', 'Laureate Learning Systems (United States)'),
(11731, 9422, 'en', 'name', 'Central Leprosy Teaching & Research Institute'),
(11732, 9423, 'it', 'name', 'Casa di Cura Villa Bianca'),
(11733, 9424, 'en', 'name', 'Voluntary Health Services Hospital'),
(11734, 9425, 'en', 'name', 'Baltimore Washington Center for Psychoanalysis'),
(11735, 9426, 'en', 'name', 'African Field Epidemiology Network'),
(11736, 9427, 'en', 'name', 'Michigan Psychoanalytic Institute'),
(11737, 9428, 'en', 'name', 'International Rice Research Institute'),
(11738, 9429, 'en', 'name', 'Institute of Occupational Safety'),
(11739, 9429, 'sl', 'name', 'Zavod za varstvo pri delu'),
(11740, 9430, 'no_lang_code', 'name', 'TransGenex Nanobiotech (United States)'),
(11741, 9431, 'en', 'name', 'Council on Environmental Quality'),
(11742, 9432, 'en', 'name', 'Indian Institute of Spices Research'),
(11743, 9433, 'no_lang_code', 'name', 'Therapeutic Proteins International (United States)'),
(11744, 9434, 'no_lang_code', 'name', 'Imperial Innovations (United Kingdom)'),
(11745, 9435, 'en', 'name', 'Lone Star College'),
(11746, 9436, 'de', 'name', 'Klinikum Stuttgart'),
(11747, 9437, 'en', 'name', 'Reitan Neuropsychology Laboratory'),
(11748, 9438, 'no_lang_code', 'name', 'ActivBiotics (United States)'),
(11749, 9439, 'en', 'name', 'Rocky Mountain MS Center'),
(11750, 9440, 'en', 'name', 'National Institute of Veterinary Research'),
(11751, 9441, 'en', 'name', 'New Jersey Department of Human Services'),
(11752, 9442, 'no_lang_code', 'name', 'Conciaricerca'),
(11753, 9443, 'en', 'name', 'Johnson County Community College'),
(11754, 9444, 'no_lang_code', 'name', 'Hewlett-Packard (United States)'),
(11755, 9445, 'no_lang_code', 'name', 'Ekso Bionics (United States)'),
(11756, 9446, 'en', 'name', 'National Polytechnic Institute'),
(11757, 9446, 'es', 'name', 'Instituto PolitƩcnico Nacional'),
(11758, 9447, 'ja', 'name', 'é«˜ę§»ē—…é™¢'),
(11759, 9447, 'no_lang_code', 'name', 'Takatsuki General Hospital'),
(11760, 9448, 'no_lang_code', 'name', 'MYcroarray (United States)'),
(11761, 9449, 'no_lang_code', 'name', 'Covance (United Kingdom)'),
(11762, 9450, 'en', 'name', 'Gujarat Technological University'),
(11763, 9451, 'en', 'name', 'Society for Prevention Research'),
(11764, 9452, 'no_lang_code', 'name', 'Balfour Beatty (United Kingdom)'),
(11765, 9453, 'en', 'name', 'Georgetown College'),
(11766, 9454, 'no_lang_code', 'name', 'TandemLaunch (Canada)'),
(11767, 9455, 'en', 'name', 'Meta House'),
(11768, 9456, 'en', 'name', 'Gadsden State Community College'),
(11769, 9457, 'en', 'name', 'National Museum Wales'),
(11770, 9458, 'no_lang_code', 'name', 'Pulmokine (United States)'),
(11771, 9459, 'no_lang_code', 'name', 'Aquilent (United States)'),
(11772, 9460, 'no_lang_code', 'name', 'Schrodinger (United States)'),
(11773, 9461, 'no_lang_code', 'name', 'BioPhyZica (United States)'),
(11774, 9462, 'en', 'name', 'Osteogenesis Imperfecta Foundation'),
(11775, 9463, 'en', 'name', 'Dakota County Technical College'),
(11776, 9464, 'es', 'name', 'Instituto de Medicina Tropical ā€œPedro KourĆ­ā€'),
(11777, 9465, 'en', 'name', 'Centre of Biotechnology of Sfax'),
(11778, 9466, 'no_lang_code', 'name', 'Alceon Corporation (United States)'),
(11779, 9467, 'no_lang_code', 'name', 'General Motors (United States)'),
(11780, 9468, 'en', 'name', 'D''Youville College'),
(11781, 9469, 'en', 'name', 'Mary Bird Perkins Cancer Center'),
(11782, 9470, 'no_lang_code', 'name', 'Tekna Plasma Systems (Canada)'),
(11783, 9471, 'en', 'name', 'Korea National Tuberculosis Association'),
(11784, 9472, 'no_lang_code', 'name', 'Biological Monitoring Incorporated (United States)'),
(11785, 9473, 'en', 'name', 'Bellin College'),
(11786, 9474, 'no_lang_code', 'name', 'Therametric Technologies (United States)'),
(11787, 9475, 'no_lang_code', 'name', 'Astraea Therapeutics (United States)'),
(11788, 9476, 'en', 'name', 'Billings Clinic'),
(11789, 9477, 'en', 'name', 'Tokyo National Hospital'),
(11790, 9477, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ę±äŗ¬ē—…é™¢'),
(11791, 9478, 'en', 'name', 'Center for Human Reproduction'),
(11792, 9479, 'en', 'name', 'Pulmonary Hypertension Association'),
(11793, 9480, 'en', 'name', 'VA Maryland Health Care System'),
(11794, 9481, 'en', 'name', 'Indian River State College'),
(11795, 9482, 'en', 'name', 'New York Psychoanalytic Society and Institute'),
(11796, 9483, 'en', 'name', 'Alta Bates Summit Medical Center'),
(11797, 9484, 'no_lang_code', 'name', 'Sciencetech (Canada)'),
(11798, 9485, 'en', 'name', 'GateWay Community College'),
(11799, 9486, 'en', 'name', 'Houston Area Community Services'),
(11800, 9487, 'en', 'name', 'Transport Scotland'),
(11801, 9488, 'en', 'name', 'Normandale Community College'),
(11802, 9489, 'it', 'name', 'Azienda Ospedaliera Ospedali Riuniti Papardo Piemonte'),
(11803, 9490, 'no_lang_code', 'name', 'Process Simulations Limited (Canada)'),
(11804, 9491, 'no_lang_code', 'name', 'Nordion (Canada)'),
(11805, 9492, 'en', 'name', 'Ludwik Hirszfeld Institute of Immunology and Experimental Therapy'),
(11806, 9492, 'pl', 'name', 'Instytut Immunologii i Terapii Doświadczalnej'),
(11807, 9493, 'de', 'name', 'Max-Planck-Institut für Molekulare Zellbiologie und Genetik'),
(11808, 9493, 'en', 'name', 'Max Planck Institute of Molecular Cell Biology and Genetics'),
(11809, 9494, 'no_lang_code', 'name', 'Premitec (United States)'),
(11810, 9495, 'no_lang_code', 'name', 'BioStar Systems (United States)'),
(11811, 9496, 'no_lang_code', 'name', 'BioFine International (Canada)'),
(11812, 9497, 'en', 'name', 'Center for Occupational Research and Development'),
(11813, 9498, 'en', 'name', 'Okinawa Prefectural Institute of Health and Environment'),
(11814, 9498, 'ja', 'name', 'å„åŗ·ćØē’°å¢ƒć®ę²–ēø„ēœŒē«‹å¤§å­¦'),
(11815, 9499, 'no_lang_code', 'name', 'AlphaVax (United States)'),
(11816, 9500, 'en', 'name', 'National Taichung University of Science and Technology'),
(11817, 9501, 'fr', 'name', 'Centre d’Economie rurale'),
(11818, 9502, 'en', 'name', 'Scripps Health'),
(11819, 9503, 'en', 'name', 'Korea Forest Service'),
(11820, 9504, 'en', 'name', 'Chestnut Hill College'),
(11821, 9505, 'en', 'name', 'Center for Cancer Research'),
(11822, 9506, 'no_lang_code', 'name', 'Biota Pharmaceuticals (United States)'),
(11823, 9507, 'en', 'name', 'National Institute for Interdisciplinary Science and Technology'),
(11824, 9507, 'ml', 'name', 'ą“Øą“¾ą“·ą“£ąµ½ ą“‡ąµ»ą“øąµą“±ą“±ą“æą“±ą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą“«ąµ‹ąµ¼ ą“‡ąµ»ą“±ąµ¼ ą“”ą“æą“øą“æą“Ŗąµą“³ą“æą“Øą“±ą“æ ą“øą“Æąµ»ą“øąµ ą“…ąµ»ą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ, ą“¤ą“æą“°ąµą“µą“Øą“Øąµą“¤ą“Ŗąµą“°ą“‚'),
(11825, 9508, 'no_lang_code', 'name', 'Maxeler Technologies (United Kingdom)'),
(11826, 9509, 'en', 'name', 'Patricia and Phillip Frost Museum of Science'),
(11827, 9510, 'no_lang_code', 'name', 'Norbord (Canada)'),
(11828, 9511, 'en', 'name', 'Tokyo Metropolitan Kiyose Children''s Hospital'),
(11829, 9511, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å°å…ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(11830, 9512, 'en', 'name', 'European Network of Science Centres and Museums'),
(11831, 9513, 'fr', 'name', 'Cegep de Victoriaville, CƩgep de victoriaville'),
(11832, 9514, 'en', 'name', 'National Academy of Medicine'),
(11833, 9515, 'en', 'name', 'Salisbury District Hospital'),
(11834, 9516, 'es', 'name', 'Instituto de Investigación Nutricional'),
(11835, 9517, 'no_lang_code', 'name', 'Romny Scientific (United States)'),
(11836, 9518, 'no_lang_code', 'name', 'MPB Technologies & Communications (Canada)'),
(11837, 9519, 'no_lang_code', 'name', 'Cedrat Technologies (France)'),
(11838, 9520, 'no_lang_code', 'name', 'Thomas Swan (United Kingdom)'),
(11839, 9521, 'no_lang_code', 'name', 'Immunovaccine (Canada)'),
(11840, 9522, 'no_lang_code', 'name', 'Genaera (United States)'),
(11841, 9523, 'no_lang_code', 'name', 'Atkinson Noland and Associates (United States)'),
(11842, 9524, 'no_lang_code', 'name', 'Agiltron (United States)'),
(11843, 9525, 'en', 'name', 'United States Military Entrance Processing Command'),
(11844, 9526, 'no_lang_code', 'name', 'Bentley (Canada)'),
(11845, 9527, 'en', 'name', 'Southwest College of Naturopathic Medicine & Health Sciences'),
(11846, 9528, 'no_lang_code', 'name', 'Predictive Science (United States)'),
(11847, 9529, 'no_lang_code', 'name', 'ATiT (Belgium)'),
(11848, 9530, 'en', 'name', 'Gerald P. Murphy Cancer Foundation'),
(11849, 9531, 'en', 'name', 'Association of Bay Area Governments'),
(11850, 9532, 'no_lang_code', 'name', 'Theralogix (United States)'),
(11851, 9533, 'en', 'name', 'Association of Maternal and Child Health Programs'),
(11852, 9534, 'no_lang_code', 'name', 'AeroVironment (United States)'),
(11853, 9535, 'it', 'name', 'Fondazione Andrea Cesalpino'),
(11854, 9536, 'no_lang_code', 'name', 'Tekion (Canada)'),
(11855, 9537, 'en', 'name', 'Princess Alexandra Hospital'),
(11856, 9538, 'en', 'name', 'American Association of Engineering Societies'),
(11857, 9539, 'pt', 'name', 'Fundação Pró-Sangue Hemocentro de São Paulo'),
(11858, 9540, 'nl', 'name', 'Instituut voor Landbouw en Visserijonderzoek'),
(11859, 9541, 'no_lang_code', 'name', 'Newton Scientific Incorporation (United States)'),
(11860, 9542, 'no_lang_code', 'name', 'Molecular Targeting Technologies (United States)'),
(11861, 9543, 'no_lang_code', 'name', 'Xijing Hospital'),
(11862, 9543, 'zh', 'name', 'č„æäŗ¬åŒ»é™¢'),
(11863, 9544, 'en', 'name', 'Prescott College'),
(11864, 9545, 'no_lang_code', 'name', 'Mendel Biotechnology (United States)'),
(11865, 9546, 'en', 'name', 'Beijing Academy of Science and Technology'),
(11866, 9546, 'zh', 'name', 'åŒ—äŗ¬åø‚ē”µåŠ å·„ē ”ē©¶ę‰€'),
(11867, 9547, 'en', 'name', 'Walton Centre'),
(11868, 9548, 'no_lang_code', 'name', 'StemCells (United States)'),
(11869, 9549, 'en', 'name', 'Cambrian College'),
(11870, 9550, 'no_lang_code', 'name', 'Ecovative Design (United States)'),
(11871, 9551, 'ja', 'name', 'å…Øå›½č¾²ę„­å”åŒēµ„åˆé€£åˆä¼š'),
(11872, 9551, 'no_lang_code', 'name', 'Zen-Noh (Japan)'),
(11873, 9552, 'no_lang_code', 'name', 'Neural Signals (United States)'),
(11874, 9553, 'no_lang_code', 'name', 'Advanced Cell Technology (United States)'),
(11875, 9554, 'no_lang_code', 'name', 'BLH Technologies (United States)'),
(11876, 9555, 'no_lang_code', 'name', 'Sani Marc (Canada)'),
(11877, 9556, 'en', 'name', 'Lawson State Community College'),
(11878, 9557, 'en', 'name', 'Wesleyan College'),
(11879, 9558, 'en', 'name', 'Plano Orthopedic Sports Medicine & Spine Center'),
(11880, 9559, 'en', 'name', 'Truman Medical Center'),
(11881, 9560, 'es', 'name', 'Sociedad EspaƱola de Cardiologƭa'),
(11882, 9561, 'en', 'name', 'San Francisco Center for Psychoanalysis'),
(11883, 9562, 'no_lang_code', 'name', 'Suraj Eye Institute'),
(11884, 9563, 'nl', 'name', 'Nederlands Instituut Voor Zuivel Oonderzoek'),
(11885, 9564, 'no_lang_code', 'name', 'Ganeden Biotech (United States)'),
(11886, 9565, 'fr', 'name', 'Centre de Robotique IntƩgrƩe d''Ile de France'),
(11887, 9566, 'en', 'name', 'AltaMed'),
(11888, 9567, 'de', 'name', 'IFT Institut für Therapieforschung'),
(11889, 9567, 'en', 'name', 'Institute for Therapy and Health Research'),
(11890, 9568, 'en', 'name', 'Academy of Nutrition and Dietetics'),
(11891, 9569, 'en', 'name', 'Kumoh National Institute of Technology'),
(11892, 9569, 'ko', 'name', 'źøˆģ˜¤ź³µź³¼ėŒ€ķ•™źµ'),
(11893, 9570, 'nl', 'name', 'Ziekenhuisnetwerk Antwerpen Stuivenberg'),
(11894, 9571, 'es', 'name', 'Instituto Chileno de Medicina Reproductiva'),
(11895, 9572, 'no_lang_code', 'name', 'GMA Industries (United States)'),
(11896, 9573, 'en', 'name', 'National Center for Epidemiology'),
(11897, 9573, 'hu', 'name', 'OrszÔgos Epidemiológiai Központ'),
(11898, 9574, 'it', 'name', 'Ospedale Civile di Venezia'),
(11899, 9575, 'en', 'name', 'Boston Psychoanalytic Society and Institute'),
(11900, 9576, 'it', 'name', 'Fondazione IRCCS Istituto Nazionale dei Tumori'),
(11901, 9577, 'en', 'name', 'Knowle West Media Centre'),
(11902, 9578, 'en', 'name', 'Bristol Community College'),
(11903, 9579, 'no_lang_code', 'name', 'Ophir Corporation (United States)'),
(11904, 9580, 'no_lang_code', 'name', 'Exemplar Genetics (United States)'),
(11905, 9581, 'en', 'name', 'Lovelace Clinic Foundation Research'),
(11906, 9582, 'no_lang_code', 'name', 'Skyre (United States)'),
(11907, 9583, 'en', 'name', 'Cuyahoga County Board of Health'),
(11908, 9584, 'en', 'name', 'Elmhurst College'),
(11909, 9585, 'no_lang_code', 'name', 'Creative Electron (United States)'),
(11910, 9586, 'fr', 'name', 'Institut Jules Bordet'),
(11911, 9587, 'no_lang_code', 'name', 'Dynaflow (United States)'),
(11912, 9588, 'en', 'name', 'Roseman University of Health Sciences'),
(11913, 9589, 'en', 'name', 'Big Little Science Centre'),
(11914, 9590, 'en', 'name', 'Riverside Community College District'),
(11915, 9591, 'en', 'name', 'St. John Fisher College'),
(11916, 9592, 'en', 'name', 'DNA EpiCenter'),
(11917, 9593, 'en', 'name', 'Institute of Genomics and Integrative Biology'),
(11918, 9594, 'en', 'name', 'Taranaki Base Hospital'),
(11919, 9595, 'en', 'name', 'National Minority AIDS Council'),
(11920, 9596, 'no_lang_code', 'name', 'Cytoskeleton (United States)'),
(11921, 9597, 'no_lang_code', 'name', 'Parion Sciences (United States)'),
(11922, 9598, 'en', 'name', 'Fraunhofer Portugal Research'),
(11923, 9599, 'no_lang_code', 'name', 'Segue Corporation (United States)'),
(11924, 9600, 'en', 'name', 'National AIDS Research Institute'),
(11925, 9601, 'fr', 'name', 'L’École SupĆ©rieure de Biotechnologie de Strasbourg, Ɖcole SupĆ©rieure de Biotechnologie de Strasbourg'),
(11926, 9602, 'en', 'name', 'Alberta Centre for Advanced MNT Products (Canada)'),
(11927, 9603, 'en', 'name', 'La Jolla Infectious Disease Institute'),
(11928, 9604, 'no_lang_code', 'name', 'Council on Alcohol and Drugs (United States)'),
(11929, 9605, 'no_lang_code', 'name', 'Rocky Mountain Research (United States)'),
(11930, 9606, 'en', 'name', 'Lincoln Land Community College'),
(11931, 9607, 'en', 'name', 'Crohn''s and Colitis Foundation'),
(11932, 9608, 'en', 'name', 'Chemeketa Community College'),
(11933, 9609, 'no_lang_code', 'name', 'Visual Health Solutions (United States)'),
(11934, 9610, 'no_lang_code', 'name', 'M Squared Lasers (United Kingdom)'),
(11935, 9611, 'no_lang_code', 'name', 'PharmIdeas (Canada)'),
(11936, 9612, 'en', 'name', 'Rothberg Institute For Childhood Diseases'),
(11937, 9613, 'en', 'name', 'Tucson Medical Center'),
(11938, 9614, 'en', 'name', 'Institute of Biocybernetics and Biomedical Engineering'),
(11939, 9615, 'en', 'name', 'Woman''s Hospital'),
(11940, 9616, 'no_lang_code', 'name', 'UTRON Kinetics (United States)'),
(11941, 9617, 'en', 'name', 'Midwest Orthopaedic Research Foundation'),
(11942, 9618, 'no_lang_code', 'name', 'Cancer Genetics (United States)'),
(11943, 9619, 'no_lang_code', 'name', 'Light Age (United States)'),
(11944, 9620, 'en', 'name', 'Charitable Infirmary'),
(11945, 9621, 'no_lang_code', 'name', 'Radisys (Canada)'),
(11946, 9622, 'en', 'name', 'Merri Creek Management Committee'),
(11947, 9623, 'no_lang_code', 'name', 'Photoswitch Biosciences (United States)'),
(11948, 9624, 'en', 'name', 'International Tomography Center'),
(11949, 9624, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ томографический центр Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(11950, 9625, 'en', 'name', 'Tzu Chi College of Technology'),
(11951, 9625, 'zh', 'name', 'ę…ˆęæŸęŠ€č”“å­øé™¢'),
(11952, 9626, 'en', 'name', 'Endocrine Society'),
(11953, 9627, 'no_lang_code', 'name', 'Intuitive Surgical (United States)'),
(11954, 9628, 'en', 'name', 'Netcare Sunninghill Hospital'),
(11955, 9629, 'no_lang_code', 'name', 'KWS (United Kingdom)'),
(11956, 9630, 'hu', 'name', 'OrszÔgos Reumatológiai és FizioterÔpiÔs Intézet'),
(11957, 9631, 'en', 'name', 'Institute of Cell Biophysics'),
(11958, 9631, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики клетки Российской акаГемии наук'),
(11959, 9632, 'en', 'name', 'Whittemore Peterson Institute'),
(11960, 9633, 'en', 'name', 'Clatterbridge Cancer Centre NHS Foundation Trust'),
(11961, 9634, 'no_lang_code', 'name', 'InterPhases Solar (United States)'),
(11962, 9635, 'no_lang_code', 'name', 'GlaxoSmithKline (Germany)'),
(11963, 9636, 'en', 'name', 'Bradford Teaching Hospitals NHS Foundation Trust'),
(11964, 9637, 'en', 'name', 'Parkland College'),
(11965, 9638, 'no_lang_code', 'name', 'HeartVista (United States)'),
(11966, 9639, 'en', 'name', 'Center for Applied Special Technology'),
(11967, 9640, 'no_lang_code', 'name', 'Repligen (United States)'),
(11968, 9641, 'no_lang_code', 'name', 'Protasis (United States)'),
(11969, 9642, 'it', 'name', 'Istituto Cantonale di Patologia'),
(11970, 9643, 'en', 'name', 'Bellevue College'),
(11971, 9644, 'en', 'name', 'Aichi Prefectural Government'),
(11972, 9644, 'ja', 'name', 'ę„›ēŸ„ēœŒ'),
(11973, 9645, 'en', 'name', 'Advocates for Youth'),
(11974, 9646, 'en', 'name', 'National Institute of Health'),
(11975, 9647, 'no_lang_code', 'name', 'SciMed Technologies (Canada)'),
(11976, 9648, 'no_lang_code', 'name', 'Allied Innovative Systems (United States)'),
(11977, 9649, 'en', 'name', 'Mount Saint Mary College'),
(11978, 9650, 'en', 'name', 'Association of Food and Drug Officials'),
(11979, 9651, 'ja', 'name', 'ē¦å²”ēœŒęøˆē”Ÿä¼šå…«å¹”ē·åˆē—…é™¢'),
(11980, 9651, 'no_lang_code', 'name', 'Saiseikai Yahata General Hospital'),
(11981, 9652, 'de', 'name', 'Nationaal Instituut voor Criminalistiek en Criminologie'),
(11982, 9652, 'fr', 'name', 'Institut National de Criminalistique et de Criminologie'),
(11983, 9653, 'no_lang_code', 'name', 'Diagnostics for the Real World (United States)'),
(11984, 9654, 'en', 'name', 'Kessler Foundation'),
(11985, 9655, 'en', 'name', 'Palladin Institute of Biochemistry'),
(11986, 9655, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біохімії ім Šž.Š’ ŠŸŠ°Š»Š»Š°Š“Ń–Š½Š°'),
(11987, 9656, 'no_lang_code', 'name', 'Arietis (United States)'),
(11988, 9657, 'no_lang_code', 'name', 'Immunotope (United States)'),
(11989, 9658, 'en', 'name', 'Calspan-University of Buffalo Research Center'),
(11990, 9659, 'it', 'name', 'Azienda di Rilievo Nazionale ed Alta Specializzazione'),
(11991, 9660, 'no_lang_code', 'name', 'Vista Engineering (United States)'),
(11992, 9661, 'no_lang_code', 'name', 'Walker (United States)'),
(11993, 9662, 'ja', 'name', 'ęØŖęµœę „å…±ęøˆē—…é™¢'),
(11994, 9662, 'no_lang_code', 'name', 'Yokohama Sakae Kyosai Hospital'),
(11995, 9663, 'en', 'name', 'Baptist Hospital'),
(11996, 9663, 'ko', 'name', '침딀병원'),
(11997, 9664, 'no_lang_code', 'name', 'Loadpoint (United Kingdom)'),
(11998, 9665, 'fr', 'name', 'Centre Antoine Lacassagne'),
(11999, 9666, 'en', 'name', 'Shorter University'),
(12000, 9667, 'no_lang_code', 'name', 'Puresyn (United States)'),
(12001, 9668, 'en', 'name', 'Student Pugwash USA'),
(12002, 9669, 'no_lang_code', 'name', 'Genetika'),
(12003, 9669, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетики Šø селекции ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Ń‹Ń… микроорганизмов'),
(12004, 9670, 'en', 'name', 'Institute of Cytology and Preventive Oncology'),
(12005, 9671, 'no_lang_code', 'name', 'Potomac Affinity Proteins (United States)'),
(12006, 9672, 'no_lang_code', 'name', 'Oxford Instruments (Canada)'),
(12007, 9673, 'en', 'name', 'Indiana Hemophilia and Thrombosis Center'),
(12008, 9674, 'de', 'name', 'Klinikum Bremen-Mitte'),
(12009, 9675, 'en', 'name', 'Northampton Community College'),
(12010, 9676, 'en', 'name', 'Western Maine Health'),
(12011, 9677, 'en', 'name', 'El Dorado Hills Community Vision'),
(12012, 9678, 'en', 'name', 'Saitama Red Cross Hospital'),
(12013, 9678, 'ja', 'name', 'ć•ć„ćŸć¾čµ¤åå­—ē—…é™¢'),
(12014, 9679, 'no_lang_code', 'name', 'Innoval Technology (United Kingdom)'),
(12015, 9680, 'es', 'name', 'Instituto MƩdico La Floresta'),
(12016, 9681, 'en', 'name', 'San Francisco General Hospital'),
(12017, 9682, 'en', 'name', 'Museum of Man'),
(12018, 9682, 'fr', 'name', 'MusƩe de l''Homme'),
(12019, 9683, 'fr', 'name', 'Centre Hospitalier RƩgional de Huy'),
(12020, 9684, 'no_lang_code', 'name', 'Rimage Corporation (United States)'),
(12021, 9685, 'en', 'name', 'Joliet Junior College'),
(12022, 9686, 'en', 'name', 'National Center for Immunization and Respiratory Diseases'),
(12023, 9687, 'en', 'name', 'Ohlone College'),
(12024, 9688, 'en', 'name', 'Butterfly Conservation'),
(12025, 9689, 'en', 'name', 'Plant Industry'),
(12026, 9690, 'no_lang_code', 'name', 'Meso Scale Discovery (United States)'),
(12027, 9691, 'en', 'name', 'San Antonio Metropolitan Health District'),
(12028, 9692, 'en', 'name', 'New Mexico Museum of Natural History Foundation'),
(12029, 9693, 'no_lang_code', 'name', 'Thinktank'),
(12030, 9694, 'en', 'name', 'Stamford Hospital'),
(12031, 9695, 'en', 'name', 'Evergreen Valley College'),
(12032, 9696, 'en', 'name', 'National Institute of Medical Rehabilitation'),
(12033, 9696, 'hu', 'name', 'OrszÔgos Orvosi RehabilitÔciós Intézet'),
(12034, 9697, 'no_lang_code', 'name', 'Terra Nova Learning Systems (United States)'),
(12035, 9698, 'no_lang_code', 'name', 'Evergen Biotechnologies (United States)'),
(12036, 9699, 'no_lang_code', 'name', 'Layton BioScience (United States)'),
(12037, 9700, 'cs', 'name', 'Nemocnice Å ternberk'),
(12038, 9701, 'no_lang_code', 'name', 'Human Genome Sciences (United States)'),
(12039, 9702, 'no_lang_code', 'name', 'ACTeon Environment (France)'),
(12040, 9703, 'en', 'name', 'Buenos Aires National Academy of Medicine'),
(12041, 9703, 'es', 'name', 'Academia Nacional de Medicina'),
(12042, 9704, 'en', 'name', 'National Kidney and Transplant Institute'),
(12043, 9705, 'en', 'name', 'National Institute of Neurology and Neurosurgery'),
(12044, 9705, 'es', 'name', 'Instituto Nacional de NeurologĆ­a y NeurocirugĆ­a'),
(12045, 9706, 'en', 'name', 'Clinical Research Management'),
(12046, 9707, 'en', 'name', 'La Frontera Arizona'),
(12047, 9708, 'no_lang_code', 'name', 'Sony Corporation (United States)'),
(12048, 9709, 'fr', 'name', 'Banque Populaire'),
(12049, 9710, 'no_lang_code', 'name', 'Boehringer Ingelheim (United States)'),
(12050, 9711, 'en', 'name', 'Agrifood Research Finland'),
(12051, 9712, 'no_lang_code', 'name', 'Fairfield Crystal Technology (United States)'),
(12052, 9713, 'no_lang_code', 'name', 'Glycobia (United States)'),
(12053, 9714, 'no_lang_code', 'name', 'Hexagon (United Kingdom)'),
(12054, 9715, 'no_lang_code', 'name', 'ProSensus (Canada)'),
(12055, 9716, 'de', 'name', 'Profil Institut für Stoffwechselforschung'),
(12056, 9716, 'en', 'name', 'Profil Institute for Metabolic Research'),
(12057, 9717, 'no_lang_code', 'name', 'East Malling Research (United Kingdom)'),
(12058, 9718, 'no_lang_code', 'name', 'Sunnyside Sea Farms (United States)'),
(12059, 9719, 'en', 'name', 'The AIDS Support Organization'),
(12060, 9720, 'en', 'name', 'Scripps Clinic'),
(12061, 9721, 'en', 'name', 'Hertfordshire County Council'),
(12062, 9722, 'en', 'name', 'York Central Hospital'),
(12063, 9723, 'no_lang_code', 'name', 'TRW Automotive (United Kingdom)'),
(12064, 9724, 'sr', 'name', 'Institut za zdravstvenu zaŔtitu dece i omladine Vojvodine'),
(12065, 9725, 'en', 'name', 'University of Saint Joseph'),
(12066, 9725, 'fr', 'name', 'UniversitƩ saint joseph'),
(12067, 9726, 'en', 'name', 'St. Tammany Parish Public School System'),
(12068, 9727, 'no_lang_code', 'name', 'Tianjin haihe hospital'),
(12069, 9727, 'zh', 'name', 'å¤©ę“„åø‚ęµ·ę²³åŒ»é™¢'),
(12070, 9728, 'ja', 'name', 'å¤§ę‰‹å‰ē—…é™¢'),
(12071, 9728, 'no_lang_code', 'name', 'Otemae Hospital'),
(12072, 9729, 'en', 'name', 'London First'),
(12073, 9730, 'en', 'name', 'United States Department of Labor'),
(12074, 9730, 'es', 'name', 'Departamento de Trabajo de los Estados Unidos'),
(12075, 9730, 'fr', 'name', 'DĆ©partement du travail des Ɖtats-unis'),
(12076, 9731, 'en', 'name', 'Ecosystem Sciences'),
(12077, 9732, 'en', 'name', 'Southern California Orthopedic Institute'),
(12078, 9733, 'no_lang_code', 'name', 'Medpace (United States)'),
(12079, 9734, 'en', 'name', 'Stroke Association'),
(12080, 9735, 'no_lang_code', 'name', 'Salford Systems (United States)'),
(12081, 9736, 'no_lang_code', 'name', 'BioElectronics (United States)'),
(12082, 9737, 'no_lang_code', 'name', 'John Lewis Partnership (United Kingdom)'),
(12083, 9738, 'no_lang_code', 'name', 'K&A Wireless (United States)'),
(12084, 9739, 'en', 'name', 'National Safety Council'),
(12085, 9740, 'en', 'name', 'Sheffield City Council'),
(12086, 9741, 'en', 'name', 'Center for Facial Appearances'),
(12087, 9742, 'en', 'name', 'Center for Prevention and Counseling'),
(12088, 9743, 'es', 'name', 'Complejo Asistencial Universitario de Palencia'),
(12089, 9744, 'no_lang_code', 'name', 'Ultramet (United States)'),
(12090, 9745, 'en', 'name', 'Papworth Hospital'),
(12091, 9746, 'no_lang_code', 'name', 'De La Rue (United Kingdom)'),
(12092, 9747, 'no_lang_code', 'name', 'Ocean NanoTech (United States)'),
(12093, 9748, 'de', 'name', 'Klinikum Leverkusen'),
(12094, 9749, 'no_lang_code', 'name', 'Phifer Smith (United States)'),
(12095, 9750, 'no_lang_code', 'name', 'Baxter (Sweden)'),
(12096, 9751, 'no_lang_code', 'name', 'CD-adapco (United Kingdom)'),
(12097, 9752, 'no_lang_code', 'name', 'Martingale Research (United States)'),
(12098, 9753, 'en', 'name', 'Molecular Research Institute'),
(12099, 9754, 'no_lang_code', 'name', 'Unilever (United Kingdom)'),
(12100, 9755, 'no_lang_code', 'name', 'ImmuCell (United States)'),
(12101, 9756, 'en', 'name', 'Sichuan Center for Disease Control and Prevention'),
(12102, 9756, 'zh', 'name', 'å››å·ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(12103, 9757, 'no_lang_code', 'name', 'Synergy Pharmaceuticals (United States)'),
(12104, 9758, 'no_lang_code', 'name', 'Encode Bio (United States)'),
(12105, 9759, 'no_lang_code', 'name', 'AvantGen (United States)'),
(12106, 9760, 'no_lang_code', 'name', 'Vascular Vision Pharmaceutical (United States)'),
(12107, 9761, 'it', 'name', 'Ospedale Valduce'),
(12108, 9762, 'en', 'name', 'Reproductive Genetics Institute'),
(12109, 9763, 'no_lang_code', 'name', 'Adelard'),
(12110, 9764, 'en', 'name', 'Institute for Fermentation'),
(12111, 9764, 'ja', 'name', '発酵研究所'),
(12112, 9765, 'en', 'name', 'Preventive Medicine Research Institute'),
(12113, 9766, 'en', 'name', 'Onomichi General Hospital'),
(12114, 9766, 'ja', 'name', 'å°¾é“ē·åˆē—…é™¢'),
(12115, 9767, 'en', 'name', 'Perth Royal Infirmary'),
(12116, 9768, 'en', 'name', 'Arizona Institute for Bone & Joint Disorders'),
(12117, 9769, 'no_lang_code', 'name', 'Hans Tech (United States)'),
(12118, 9770, 'en', 'name', 'Tokyo Metropolitan Police Hospital'),
(12119, 9770, 'ja', 'name', 'ę±äŗ¬č­¦åÆŸē—…é™¢'),
(12120, 9771, 'no_lang_code', 'name', 'James Bell Associates (United States)'),
(12121, 9772, 'no_lang_code', 'name', 'Akonni Biosystems (United States)'),
(12122, 9773, 'no_lang_code', 'name', 'AbleLink Technologies (United States)'),
(12123, 9774, 'no_lang_code', 'name', 'Wound Care Strategies (United States)'),
(12124, 9775, 'en', 'name', 'Newcastle upon Tyne Hospitals NHS Foundation Trust'),
(12125, 9776, 'en', 'name', 'Stockholm Gerontology Research Center Foundation'),
(12126, 9777, 'en', 'name', 'Biological Institute'),
(12127, 9777, 'pt', 'name', 'Instituto Biológico'),
(12128, 9778, 'no_lang_code', 'name', 'BioSpeech (United States)'),
(12129, 9779, 'en', 'name', 'St. Luke''s General Hospital'),
(12130, 9779, 'ga', 'name', 'Ospidéal GinearÔlta Naomh LúcÔs'),
(12131, 9780, 'en', 'name', 'Centre for Innovation Studies'),
(12132, 9781, 'no_lang_code', 'name', 'Aixtron (United Kingdom)'),
(12133, 9782, 'en', 'name', 'Vancouver Hospital and Health Sciences Centre'),
(12134, 9783, 'no_lang_code', 'name', 'Eli Lilly (Canada)'),
(12135, 9784, 'en', 'name', 'Courtesy Travel Service'),
(12136, 9785, 'en', 'name', 'Bluffton University'),
(12137, 9785, 'es', 'name', 'Universidad de Bluffton'),
(12138, 9786, 'no_lang_code', 'name', 'Tung Wah Hospital'),
(12139, 9786, 'zh', 'name', 'ę±čÆé†«é™¢'),
(12140, 9787, 'no_lang_code', 'name', 'Minnow Environmental (Canada)'),
(12141, 9788, 'no_lang_code', 'name', 'John Snow (United States)'),
(12142, 9789, 'en', 'name', 'Action for Boston Community Development'),
(12143, 9790, 'bn', 'name', 'ą¦†ą¦‡ą¦†ą¦‡ą¦Ÿą¦æ কানপুর'),
(12144, 9790, 'en', 'name', 'Indian Institute of Technology Kanpur'),
(12145, 9790, 'fr', 'name', 'Institut indien de technologie de kanpur'),
(12146, 9790, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤¾ą¤Øą¤Ŗą„ą¤°'),
(12147, 9790, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“•ą“¾ąµŗą“Ŗąµ‚ąµ¼'),
(12148, 9790, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾, ą¤•ą¤¾ą¤Øą¤Ŗą„‚ą¤°'),
(12149, 9790, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®¾ą®©ąÆą®ŖąÆ‚ą®°ąÆ'),
(12150, 9791, 'el', 'name', 'Άλφα Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī’Ī¹ĪæĻŠĪ±Ļ„ĻĪ¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½'),
(12151, 9791, 'en', 'name', 'Alfa Institute of Biomedical Sciences'),
(12152, 9792, 'fr', 'name', 'Union chimique belge'),
(12153, 9792, 'no_lang_code', 'name', 'UCB Pharma (Germany)'),
(12154, 9793, 'en', 'name', 'New Hampshire Department of Health and Human Services'),
(12155, 9794, 'no_lang_code', 'name', 'SIMmersion (United States)'),
(12156, 9795, 'no_lang_code', 'name', 'Iris AO (United States)'),
(12157, 9796, 'ja', 'name', 'ćƒ•ć‚”ć‚¤ć‚¶'),
(12158, 9796, 'no_lang_code', 'name', 'Pfizer (Japan)'),
(12159, 9797, 'en', 'name', 'National Association of State Alcohol and Drug Abuse Directors'),
(12160, 9798, 'en', 'name', 'Beijing Proteome Research Center'),
(12161, 9799, 'en', 'name', 'Vermont Agency of Human Services'),
(12162, 9800, 'no_lang_code', 'name', 'NEI Corporation (United States)'),
(12163, 9801, 'no_lang_code', 'name', 'Nanosys (United States)'),
(12164, 9802, 'en', 'name', 'Ministry of Health'),
(12165, 9802, 'fr', 'name', 'Ministère de la Santé'),
(12166, 9802, 'rw', 'name', 'Minisiteri y''Ubuzima'),
(12167, 9803, 'no_lang_code', 'name', 'Centre d''Expertise du BĆ¢timent et des Travaux Publics (France)'),
(12168, 9804, 'en', 'name', 'Santa Barbara Museum of Natural History'),
(12169, 9805, 'no_lang_code', 'name', 'Astellas Pharma (United States)'),
(12170, 9806, 'en', 'name', 'Denver Federal Center'),
(12171, 9807, 'no_lang_code', 'name', 'Kent Optronics (United States)'),
(12172, 9808, 'en', 'name', 'National Governors Association'),
(12173, 9809, 'en', 'name', 'SoundVision Productions'),
(12174, 9810, 'no_lang_code', 'name', 'Ricardo (United Kingdom)'),
(12175, 9811, 'en', 'name', 'World Health Organization - Philippines'),
(12176, 9812, 'en', 'name', 'Bogolyubov Institute for Theoretical Physics'),
(12177, 9812, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретичної фізики ім. М.М. Š‘Š¾Š³Š¾Š»ŃŽŠ±Š¾Š²Š°'),
(12178, 9813, 'no_lang_code', 'name', 'Tantalus Systems (Canada)'),
(12179, 9814, 'no_lang_code', 'name', 'SINTX Technologies (United States)'),
(12180, 9815, 'no_lang_code', 'name', 'Morpho (United States)'),
(12181, 9816, 'no_lang_code', 'name', 'PhiloMetron (United States)'),
(12182, 9817, 'en', 'name', 'Center For Reconstructive Urethral Surgery'),
(12183, 9817, 'it', 'name', 'Centro di Chirurgia Ricostruttiva dell''Uretra'),
(12184, 9818, 'en', 'name', 'Scientists in School'),
(12185, 9819, 'en', 'name', 'Lisbon Geographic Society'),
(12186, 9819, 'pt', 'name', 'Sociedade de Geografia de Lisboa'),
(12187, 9820, 'en', 'name', 'Stark State College'),
(12188, 9821, 'en', 'name', 'Olmsted Medical Center'),
(12189, 9822, 'no_lang_code', 'name', 'Allele Biotechnology (United States)'),
(12190, 9823, 'no_lang_code', 'name', 'Reynolds American (United States)'),
(12191, 9824, 'no_lang_code', 'name', 'HealthMedia (United States)'),
(12192, 9825, 'en', 'name', 'St. Vincent''s Medical Center'),
(12193, 9826, 'no_lang_code', 'name', 'Scott Bader (United Kingdom)'),
(12194, 9827, 'en', 'name', 'American Association of Community Colleges'),
(12195, 9828, 'en', 'name', 'Sitting Bull College'),
(12196, 9829, 'cs', 'name', 'OcnĆ­ klinika'),
(12197, 9830, 'en', 'name', 'Manhattanville College'),
(12198, 9831, 'no_lang_code', 'name', 'Cosmos Corporation (United States)'),
(12199, 9832, 'fr', 'name', 'Institut Jean Godinot'),
(12200, 9833, 'no_lang_code', 'name', '21c Consultancy (United Kingdom)'),
(12201, 9834, 'en', 'name', 'Consortium for Health and Social Catalonia'),
(12202, 9834, 'es', 'name', 'Consorcio de Salud y Social de CataluƱa'),
(12203, 9835, 'no_lang_code', 'name', 'Opal-Rt Technologies (Canada)'),
(12204, 9836, 'fr', 'name', 'CafƩ Scientifique'),
(12205, 9837, 'en', 'name', 'Lehigh Carbon Community College'),
(12206, 9838, 'en', 'name', 'Education Commission of the States'),
(12207, 9839, 'en', 'name', 'Construction Industry Research and Information Association'),
(12208, 9840, 'en', 'name', 'Western Hospital'),
(12209, 9841, 'no_lang_code', 'name', 'IntraMedical Imaging (United States)'),
(12210, 9842, 'it', 'name', 'Istituto di Ricerche Chimiche e Biochimiche G. Ronzoni'),
(12211, 9843, 'en', 'name', 'Duluth Clinic'),
(12212, 9844, 'no_lang_code', 'name', 'Ineos (United Kingdom)'),
(12213, 9845, 'en', 'name', 'Accreditation Board for Engineering and Technology'),
(12214, 9846, 'en', 'name', 'Yamanashi Prefectural Central Hospital'),
(12215, 9846, 'ja', 'name', 'å±±ę¢ØēœŒē«‹äø­å¤®ē—…é™¢'),
(12216, 9847, 'en', 'name', 'Bunker Hill Community College'),
(12217, 9848, 'no_lang_code', 'name', 'Organizational Wellness and Learning Systems'),
(12218, 9849, 'no_lang_code', 'name', 'Synthasome (United States)'),
(12219, 9850, 'it', 'name', 'Istituto Zooprofilattico Sperimentale del Mezzogiorno'),
(12220, 9851, 'pl', 'name', 'Instytut Sportu'),
(12221, 9852, 'en', 'name', 'Borgess Health'),
(12222, 9853, 'en', 'name', 'Segawa Neurological Clinic for Children'),
(12223, 9853, 'ja', 'name', 'å­ä¾›ć®ćŸć‚ć®ē€¬å·ē„žēµŒå­¦ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(12224, 9854, 'en', 'name', 'Tianjin Chest Hospital'),
(12225, 9854, 'zh', 'name', 'å¤©ę“„åø‚čƒøē§‘åŒ»é™¢'),
(12226, 9855, 'no_lang_code', 'name', 'American Express (United States)'),
(12227, 9856, 'it', 'name', 'Fondazione Santa Lucia'),
(12228, 9857, 'en', 'name', 'AIDS United'),
(12229, 9858, 'no_lang_code', 'name', 'Bio Tissue (United States)'),
(12230, 9859, 'no_lang_code', 'name', 'National Underground Assets Group'),
(12231, 9860, 'en', 'name', 'Overlook Medical Center'),
(12232, 9861, 'no_lang_code', 'name', '3D Systems (United States)'),
(12233, 9862, 'en', 'name', 'Winn Army Community Hospital'),
(12234, 9863, 'en', 'name', 'Animal, Food and Health Sciences'),
(12235, 9864, 'no_lang_code', 'name', 'ACell (United States)'),
(12236, 9865, 'en', 'name', 'Israel Oceanographic and Limnological Research'),
(12237, 9866, 'it', 'name', 'Ospedali Riuniti Umberto I'),
(12238, 9867, 'no_lang_code', 'name', 'Logical Semantics (United States)'),
(12239, 9868, 'no_lang_code', 'name', 'NanoScale Corporation (United States)'),
(12240, 9869, 'no_lang_code', 'name', 'TriLink BioTechnologies (United States)'),
(12241, 9870, 'en', 'name', 'APLA Health'),
(12242, 9871, 'en', 'name', 'Centre of Documentation, Research and Experimentation on Accidental Water Pollution'),
(12243, 9871, 'fr', 'name', 'Centre de Documentation de Recherche et d''ExpƩrimentation sur les Pollutions Accidentelles des Eaux'),
(12244, 9872, 'no_lang_code', 'name', 'Epicenter Software (United States)'),
(12245, 9873, 'en', 'name', 'Tanabe Research Laboratories'),
(12246, 9874, 'no_lang_code', 'name', 'PMD Scientific (United States)'),
(12247, 9875, 'en', 'name', 'Native American Health Center'),
(12248, 9876, 'no_lang_code', 'name', 'Philips (Germany)'),
(12249, 9877, 'en', 'name', 'Montgomery County Public Schools'),
(12250, 9878, 'no_lang_code', 'name', 'Consulintel (Spain)'),
(12251, 9879, 'en', 'name', 'Cleveland Metropolitan School District'),
(12252, 9880, 'en', 'name', 'Centre for Cellular and Molecular Biology'),
(12253, 9880, 'ml', 'name', 'ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“øąµ†ą“²ąµą“²ąµą“²ą“¾ąµ¼ ą“†ą“Øąµą“±ąµ ą“®ąµ‹ą“³ą“æą“•ąµą“Æąµą“²ąµ¼ ą“¬ą“Æąµ‹ą“³ą“œą“æ'),
(12254, 9880, 'ta', 'name', 'உயிரணு ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®®ąÆ‚ą®²ą®•ąÆą®•ąÆ‚ą®±ąÆ ą®‰ą®Æą®æą®°ą®æą®Æą®²ąÆ ą®®ąÆˆą®Æą®®ąÆ'),
(12255, 9881, 'no_lang_code', 'name', 'Digestive Care (United States)'),
(12256, 9882, 'no_lang_code', 'name', 'Soligenix (United States)'),
(12257, 9883, 'en', 'name', 'Palomar Medical Center'),
(12258, 9884, 'en', 'name', 'Chelyabinsk State Medical Academy'),
(12259, 9884, 'ru', 'name', 'Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(12260, 9885, 'en', 'name', 'Maine Mathematics and Science Alliance'),
(12261, 9886, 'en', 'name', 'Tampa Bay Research Institute'),
(12262, 9887, 'en', 'name', 'Pacific Health Research and Education Institute'),
(12263, 9888, 'en', 'name', 'Shanghai Academy of Environmental Sciences'),
(12264, 9888, 'zh', 'name', 'äøŠęµ·åø‚ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(12265, 9889, 'no_lang_code', 'name', 'Psychology Software Tools (United States)'),
(12266, 9890, 'en', 'name', 'San Jose City College'),
(12267, 9891, 'no_lang_code', 'name', 'Oxford Gene Technology (United Kingdom)'),
(12268, 9892, 'en', 'name', 'Industrial Technology Research Institute'),
(12269, 9892, 'zh', 'name', 'å·„ę„­ęŠ€č”“ē”ē©¶é™¢'),
(12270, 9893, 'it', 'name', 'Azienda Ospedaliera G. Brotzu'),
(12271, 9894, 'no_lang_code', 'name', 'Tissue Genetics (United States)'),
(12272, 9895, 'fr', 'name', 'HƓpital Universitaire Fattouma-Bourguiba de Monastir'),
(12273, 9895, 'no_lang_code', 'name', 'Hospital Fatuma Bourguiba Monastir'),
(12274, 9896, 'en', 'name', 'Miami Hand Center'),
(12275, 9897, 'en', 'name', 'Colorado Center for Nursing Excellence'),
(12276, 9898, 'en', 'name', 'Northern Arizona VA Health Care System'),
(12277, 9899, 'en', 'name', 'Suwa Red Cross Hospital'),
(12278, 9899, 'ja', 'name', 'č«čØŖčµ¤åå­—ē—…é™¢'),
(12279, 9900, 'no_lang_code', 'name', 'Resonance Research (United States)'),
(12280, 9901, 'en', 'name', 'American College of Emergency Physicians'),
(12281, 9902, 'en', 'name', 'Self Reliance Foundation'),
(12282, 9903, 'en', 'name', 'Bath Institute for Rheumatic Diseases'),
(12283, 9904, 'no_lang_code', 'name', 'Charlesson (United States)'),
(12284, 9905, 'en', 'name', 'Shady Grove Fertility Center'),
(12285, 9906, 'en', 'name', 'College of the Canyons'),
(12286, 9907, 'en', 'name', 'Insurance Institute for Highway Safety'),
(12287, 9908, 'en', 'name', 'Texas Nerve and Paralysis Institute'),
(12288, 9909, 'en', 'name', 'AGE Platform Europe'),
(12289, 9910, 'en', 'name', 'Ministry of Justice'),
(12290, 9910, 'ja', 'name', 'ę³•å‹™ēœ'),
(12291, 9911, 'no_lang_code', 'name', 'DiagnoCure (Canada)'),
(12292, 9912, 'en', 'name', 'Jefferson State Community College'),
(12293, 9913, 'fi', 'name', 'Oulun diakonissalaitos'),
(12294, 9913, 'no_lang_code', 'name', 'Oulu Deaconess Institute'),
(12295, 9914, 'fr', 'name', 'Institut Louis MalardƩ'),
(12296, 9915, 'no_lang_code', 'name', 'Fermionics (United States)'),
(12297, 9916, 'no_lang_code', 'name', 'Brooks Automation (United States)'),
(12298, 9917, 'en', 'name', 'Tropical Population Health Unit'),
(12299, 9918, 'it', 'name', 'Centro Neurolesi Bonino Pulejo'),
(12300, 9919, 'en', 'name', 'Piedmont Reference Center for Epidemiology and Cancer Prevention'),
(12301, 9920, 'fr', 'name', 'Centre de Recherches et des Technologies des Eaux'),
(12302, 9921, 'it', 'name', 'Nuovo Ospedale di Prato'),
(12303, 9922, 'en', 'name', 'Animal Technology Institute Taiwan'),
(12304, 9923, 'no_lang_code', 'name', 'Takanoko Hospital'),
(12305, 9924, 'no_lang_code', 'name', 'Kopin Corporation (United States)'),
(12306, 9925, 'no_lang_code', 'name', 'iSign Solutions (United States)'),
(12307, 9926, 'en', 'name', 'Office of Chief Medical Examiner'),
(12308, 9927, 'no_lang_code', 'name', 'West Portal Software (United States)'),
(12309, 9928, 'en', 'name', 'World Health Organization - India'),
(12310, 9928, 'fr', 'name', 'Organisation mondiale de la santƩ'),
(12311, 9928, 'ru', 'name', 'Š’ŃŠµŠ¼ŠøŃ€Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(12312, 9929, 'en', 'name', 'American Rock Mechanics Association'),
(12313, 9930, 'no_lang_code', 'name', 'Trophogen (United States)'),
(12314, 9931, 'en', 'name', 'American Psychiatric Association'),
(12315, 9932, 'en', 'name', 'College Ahuntsic'),
(12316, 9932, 'fr', 'name', 'CollĆØge ahuntsic'),
(12317, 9933, 'en', 'name', 'Council on Prevention and Education: Substances'),
(12318, 9934, 'no_lang_code', 'name', 'Synkera Technologies (United States)'),
(12319, 9935, 'en', 'name', 'Society of American Foresters'),
(12320, 9936, 'no_lang_code', 'name', 'Lipman Hearne (United States)'),
(12321, 9937, 'en', 'name', 'Biotechnology Research Institute'),
(12322, 9937, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(12323, 9938, 'en', 'name', 'Pakistan Council of Scientific & Industrial Research'),
(12324, 9939, 'en', 'name', 'Frankfurt Institute for Advanced Studies'),
(12325, 9940, 'en', 'name', 'Wythenshawe Hospital'),
(12326, 9941, 'en', 'name', 'National Museums Liverpool'),
(12327, 9942, 'en', 'name', 'Nanaji Deshmukh Veterinary Science University'),
(12328, 9943, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½ŠøŃŃ‚ Ń†ŠµŠ½Ń‚ŃŠŃ€ по заразни Šø паразитни болести'),
(12329, 9943, 'en', 'name', 'National Center of Infectious and Parasitic Diseases'),
(12330, 9944, 'en', 'name', 'Planetary Science Institute'),
(12331, 9945, 'it', 'name', 'Istituti Ospitalieri di Cremona'),
(12332, 9946, 'en', 'name', 'Parkinson''s Institute and Clinical Center'),
(12333, 9947, 'it', 'name', 'Policlinico San Matteo Fondazione'),
(12334, 9948, 'no_lang_code', 'name', 'Senex Biotechnology (United States)'),
(12335, 9949, 'fr', 'name', 'RƩseau Technoscience'),
(12336, 9950, 'en', 'name', 'Bhabha Atomic Research Centre'),
(12337, 9950, 'fr', 'name', 'Centre de recherche atomique de bhabha'),
(12338, 9950, 'hi', 'name', 'भाभा ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(12339, 9950, 'kn', 'name', 'ಭಾಭಾ ಅಣು ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(12340, 9950, 'ml', 'name', 'ą“­ą“¾ą“­ą“¾ ą“†ą“£ą“µ ą“—ą“µąµ‡ą“·ą“£ ą“•ąµ‡ą“Øąµą“¦ąµą“°ą“‚'),
(12341, 9950, 'mr', 'name', 'भाभा ą¤…ą¤£ą„ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(12342, 9950, 'ta', 'name', 'பாபா அணு ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ąÆˆą®Æą®®ąÆ'),
(12343, 9951, 'no_lang_code', 'name', 'Texas Retina Associates (United States)'),
(12344, 9952, 'en', 'name', 'Stollery Children''s Hospital'),
(12345, 9953, 'no_lang_code', 'name', 'Gallomanor (United Kingdom)'),
(12346, 9954, 'en', 'name', 'Lakeland College'),
(12347, 9955, 'no_lang_code', 'name', 'Fuel Theatre (United Kingdom)'),
(12348, 9956, 'no_lang_code', 'name', 'CrossChasm Technologies (Canada)'),
(12349, 9957, 'en', 'name', 'National Energy Foundation'),
(12350, 9958, 'no_lang_code', 'name', 'Bruce Technologies (United States)'),
(12351, 9959, 'no_lang_code', 'name', 'Tepha (United States)'),
(12352, 9960, 'no_lang_code', 'name', 'Optelian (Canada)'),
(12353, 9961, 'no_lang_code', 'name', 'Abcam (United Kingdom)'),
(12354, 9962, 'en', 'name', 'Santa Barbara Botanic Garden'),
(12355, 9963, 'no_lang_code', 'name', 'Information Management Consultants (United States)'),
(12356, 9964, 'no_lang_code', 'name', 'NexTech Materials (United States)'),
(12357, 9965, 'en', 'name', 'St. Louis Testing Laboratories'),
(12358, 9966, 'en', 'name', 'St. Mary''s Hospital'),
(12359, 9967, 'en', 'name', 'Central Environmental and Food Science Research Institute'),
(12360, 9968, 'no_lang_code', 'name', 'Aviagen (United Kingdom)');
INSERT INTO `ror_settings` VALUES
(12361, 9969, 'en', 'name', 'Metropolitan Drug Commission'),
(12362, 9970, 'en', 'name', 'United States Public Health Service'),
(12363, 9971, 'en', 'name', 'Partnership Group for Science and Engineering'),
(12364, 9972, 'en', 'name', 'St. Mary''s Health Center'),
(12365, 9973, 'en', 'name', 'Swiss Epilepsy Center'),
(12366, 9974, 'no_lang_code', 'name', 'Network Technologies (United States)'),
(12367, 9975, 'no_lang_code', 'name', 'TechniScan (United States)'),
(12368, 9976, 'en', 'name', 'Ministry of the Environment and Water Resources'),
(12369, 9976, 'zh', 'name', 'ę–°åŠ å”ēŽÆå¢ƒåŠę°“ęŗéƒØ'),
(12370, 9977, 'es', 'name', 'ClĆ­nica Ruiz'),
(12371, 9978, 'no_lang_code', 'name', 'Photon Etc (Canada)'),
(12372, 9979, 'no_lang_code', 'name', 'Gamma Medica (United States)'),
(12373, 9980, 'el', 'name', 'ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΠαίΓων Πεντέλης'),
(12374, 9980, 'en', 'name', 'Penteli General Children''s Hospital'),
(12375, 9981, 'no_lang_code', 'name', 'Octane (Canada)'),
(12376, 9982, 'en', 'name', 'Royal Rehabilitation Centre'),
(12377, 9983, 'it', 'name', 'Ospedale Maggiore di Chieri'),
(12378, 9984, 'no_lang_code', 'name', 'Transonic Systems (United States)'),
(12379, 9985, 'en', 'name', 'Italian Plastics and Rubber Processing Machinery and Moulds Manufacturers'' Association'),
(12380, 9985, 'it', 'name', 'Associazione Nazionale Costruttori di Macchine e Stampi per Materie Plastiche e Gomma, Assocomaplast'),
(12381, 9986, 'en', 'name', 'Agricultural Institute'),
(12382, 9986, 'hu', 'name', 'Magyar TudomĆ”nyos AkadĆ©mia MezőgazdasĆ”gi Kutató IntĆ©zet'),
(12383, 9987, 'en', 'name', 'Forest Preserves of Cook County'),
(12384, 9988, 'no_lang_code', 'name', 'Biomedica Management (United States)'),
(12385, 9989, 'en', 'name', 'Santa Fe University of Art and Design'),
(12386, 9989, 'es', 'name', 'Universidad de Arte y DiseƱo de Santa Fe'),
(12387, 9990, 'en', 'name', 'Institute for Medical Research'),
(12388, 9991, 'en', 'name', 'Henri Gastaut Hospital'),
(12389, 9992, 'en', 'name', 'Varian Associates'),
(12390, 9992, 'no_lang_code', 'name', 'Varian Medical Systems (United States)'),
(12391, 9993, 'en', 'name', 'Northwest College'),
(12392, 9994, 'no_lang_code', 'name', 'Spangle Associates'),
(12393, 9995, 'no_lang_code', 'name', 'ABB (Germany)'),
(12394, 9996, 'en', 'name', 'Science Museum'),
(12395, 9997, 'en', 'name', 'Food Industry Research and Development Institute'),
(12396, 9998, 'no_lang_code', 'name', 'Simulent (Canada)'),
(12397, 9999, 'en', 'name', 'SĆørlandet Hospital'),
(12398, 9999, 'no', 'name', 'SĆørlandet Sykehus'),
(12399, 10000, 'en', 'name', 'Genetica DNA Laboratories'),
(12400, 10001, 'no_lang_code', 'name', 'Tethers Unlimited (United States)'),
(12401, 10002, 'no_lang_code', 'name', 'Rescoll (France)'),
(12402, 10003, 'en', 'name', 'National Institute of Hydrology and Water Management'),
(12403, 10003, 'ro', 'name', 'Institutul National de Hidrologie si Gospodarire a Apelor'),
(12404, 10004, 'en', 'name', 'Ele''s Place'),
(12405, 10005, 'no_lang_code', 'name', 'Studsvik (Sweden)'),
(12406, 10006, 'no_lang_code', 'name', 'BioWorks (United States)'),
(12407, 10007, 'en', 'name', 'BreakOUT'),
(12408, 10008, 'en', 'name', 'Georgia Breast Cancer Coalition Fund'),
(12409, 10009, 'en', 'name', 'A N Bach Institute of Biochemistry'),
(12410, 10009, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии им. А.Š.Баха'),
(12411, 10010, 'en', 'name', 'Health Effects Institute'),
(12412, 10011, 'no_lang_code', 'name', 'Syngenta (United Kingdom)'),
(12413, 10012, 'no_lang_code', 'name', 'Panasonic (Germany)'),
(12414, 10013, 'no_lang_code', 'name', 'Sequans Communications (France)'),
(12415, 10014, 'no_lang_code', 'name', 'Myostin Therapeutics (Australia)'),
(12416, 10015, 'no_lang_code', 'name', 'Inhibikase Therapeutics (United States)'),
(12417, 10016, 'en', 'name', 'Burke County Public Schools'),
(12418, 10017, 'no_lang_code', 'name', 'AVEO Oncology (United States)'),
(12419, 10018, 'en', 'name', 'Swedish National Board of Fisheries'),
(12420, 10019, 'en', 'name', 'Marymount Manhattan College'),
(12421, 10020, 'no_lang_code', 'name', 'Schott (Germany)'),
(12422, 10021, 'en', 'name', 'Qualifications and Curriculum Authority'),
(12423, 10022, 'en', 'name', 'American Federation for Aging Research'),
(12424, 10023, 'en', 'name', 'Habitat for Humanity of Greater Charlottesville'),
(12425, 10024, 'en', 'name', 'Connecting to Care'),
(12426, 10025, 'en', 'name', 'Research Institute for Fisheries and Aquaculture'),
(12427, 10025, 'hu', 'name', 'HalĆ”szati Ć©s ƖntƶzĆ©si KutatóintĆ©zet'),
(12428, 10026, 'no_lang_code', 'name', 'Satellite Observing Systems (United Kingdom)'),
(12429, 10027, 'en', 'name', 'Institute of Physics'),
(12430, 10027, 'pl', 'name', 'Instytut Fizyki PAN'),
(12431, 10028, 'en', 'name', 'Manitoga'),
(12432, 10029, 'en', 'name', 'Center for Information and Study on Clinical Research Participation'),
(12433, 10030, 'no_lang_code', 'name', 'Rupprecht Consult - Forschung & Beratung'),
(12434, 10031, 'en', 'name', 'Maine Hospice Council'),
(12435, 10032, 'no_lang_code', 'name', 'Sensonor (Norway)'),
(12436, 10033, 'de', 'name', 'Rheinisch-Westfälische Technische Überwachungsverein'),
(12437, 10033, 'no_lang_code', 'name', 'RWTÜV (Germany)'),
(12438, 10034, 'en', 'name', 'Institute of Food Science'),
(12439, 10035, 'en', 'name', 'Cognitive Systems Research Institute'),
(12440, 10036, 'no_lang_code', 'name', 'Lisnave (Portugal)'),
(12441, 10037, 'en', 'name', 'First In Families of North Carolina'),
(12442, 10038, 'en', 'name', 'Strategic Solutions International'),
(12443, 10039, 'en', 'name', 'Building Services Research and Information Association'),
(12444, 10040, 'en', 'name', 'Cal Poly Corporation'),
(12445, 10041, 'no_lang_code', 'name', 'Microsoft (Germany)'),
(12446, 10042, 'no_lang_code', 'name', 'Heckmann (Germany)'),
(12447, 10043, 'no_lang_code', 'name', 'Biomass Technology Group (Netherlands)'),
(12448, 10044, 'it', 'name', 'Istituto per la Ricerca Sociale'),
(12449, 10045, 'en', 'name', 'Boston Back Bay Plastic Surgery'),
(12450, 10046, 'en', 'name', 'Inter-Faith Food Shuttle'),
(12451, 10047, 'no_lang_code', 'name', 'Avanzare (Spain)'),
(12452, 10048, 'no_lang_code', 'name', 'FIT Consulting (Italy)'),
(12453, 10049, 'en', 'name', 'International Scientific Council for Island Development'),
(12454, 10050, 'it', 'name', 'Creativa Impresa di Comunicazione srl'),
(12455, 10050, 'no_lang_code', 'name', 'Creativa (Italy)'),
(12456, 10051, 'en', 'name', 'Abilities In Motion'),
(12457, 10052, 'en', 'name', 'Independent Living Resources'),
(12458, 10053, 'en', 'name', 'Re:Vision'),
(12459, 10054, 'en', 'name', 'Athens Land Trust'),
(12460, 10055, 'en', 'name', 'Flashes of Hope'),
(12461, 10056, 'no_lang_code', 'name', 'TƩcnicas Reunidas (Spain)'),
(12462, 10057, 'no_lang_code', 'name', 'NanoMed Targeting Systems (United States)'),
(12463, 10058, 'en', 'name', 'National Ageing Research Institute'),
(12464, 10059, 'en', 'name', 'Nightingales Medical Trust'),
(12465, 10060, 'en', 'name', 'NeuroMedical Center'),
(12466, 10061, 'no_lang_code', 'name', 'Qiagen (Denmark)'),
(12467, 10062, 'en', 'name', 'Trilateral Research & Consulting'),
(12468, 10063, 'en', 'name', 'Math for America'),
(12469, 10064, 'nl', 'name', 'Novay'),
(12470, 10065, 'en', 'name', 'Energy Cities'),
(12471, 10066, 'en', 'name', 'WateReuse Association'),
(12472, 10067, 'no_lang_code', 'name', 'INTRASOFT International (Greece)'),
(12473, 10068, 'en', 'name', 'Note-Able Music Therapy Services'),
(12474, 10069, 'no_lang_code', 'name', 'Battelle Ingenieurtechnik (Germany)'),
(12475, 10070, 'no_lang_code', 'name', 'Lonza (Switzerland)'),
(12476, 10071, 'en', 'name', 'Australian Foundation for Diabetes Research'),
(12477, 10072, 'en', 'name', 'MelroseWakefield Healthcare'),
(12478, 10073, 'no_lang_code', 'name', 'Hexis (Switzerland)'),
(12479, 10074, 'en', 'name', 'Center Point'),
(12480, 10075, 'no_lang_code', 'name', 'BC Platforms (Finland)'),
(12481, 10076, 'no_lang_code', 'name', 'EntroGen (United States)'),
(12482, 10077, 'en', 'name', 'Catholic Charities'),
(12483, 10078, 'en', 'name', 'Andalusian Public Foundation for Health Research in Biomedicine and Malaga'),
(12484, 10078, 'es', 'name', 'Fundación Pública Andaluza para la Investigación de MÔlaga en Biomedicina y Salud'),
(12485, 10079, 'en', 'name', 'Princeton Child Development Institute'),
(12486, 10080, 'en', 'name', 'Mercy Clinic Neurology'),
(12487, 10081, 'en', 'name', 'Community Health Works'),
(12488, 10082, 'de', 'name', 'Institut für Weltraumforschung'),
(12489, 10082, 'en', 'name', 'Space Research Institute'),
(12490, 10083, 'en', 'name', 'Young Foundation'),
(12491, 10084, 'no_lang_code', 'name', 'Gruppo Riva (Italy)'),
(12492, 10085, 'no_lang_code', 'name', 'Schneider Electric (France)'),
(12493, 10086, 'en', 'name', 'Fulbright Association'),
(12494, 10087, 'en', 'name', 'Tubman'),
(12495, 10088, 'en', 'name', 'Southeast Georgia Health System'),
(12496, 10089, 'no_lang_code', 'name', 'ComputIT (Norway)'),
(12497, 10090, 'en', 'name', 'Ministry of Finance'),
(12498, 10090, 'sv', 'name', 'Finansdepartementet'),
(12499, 10091, 'no_lang_code', 'name', 'Farmington Pharma Development (United States)'),
(12500, 10092, 'no_lang_code', 'name', 'Cvergenx (United States)'),
(12501, 10093, 'no_lang_code', 'name', 'Avantune (Italy)'),
(12502, 10094, 'en', 'name', 'Wye College'),
(12503, 10095, 'no_lang_code', 'name', 'Owl Biomedical (United States)'),
(12504, 10096, 'no_lang_code', 'name', 'Diehl (Germany)'),
(12505, 10097, 'en', 'name', 'Chess in the Schools'),
(12506, 10098, 'en', 'name', 'Central Council of the Tlingit and Haida Indian Tribes of Alaska'),
(12507, 10099, 'en', 'name', 'Nothing But Nets'),
(12508, 10100, 'no_lang_code', 'name', 'Sylics (Netherlands)'),
(12509, 10101, 'en', 'name', 'Institute of Computer Science'),
(12510, 10101, 'pl', 'name', 'Instytut Podstaw Informatyki'),
(12511, 10102, 'no_lang_code', 'name', 'Hellenic Petroleum (Greece)'),
(12512, 10103, 'en', 'name', 'BC Wheelchair Sports Association'),
(12513, 10104, 'en', 'name', 'Camden Children''s Garden'),
(12514, 10105, 'nl', 'name', 'Gemeente Amsterdam'),
(12515, 10106, 'no_lang_code', 'name', 'EnerSys (United States)'),
(12516, 10107, 'no_lang_code', 'name', 'Principia (France)'),
(12517, 10108, 'en', 'name', 'National Hospice Foundation'),
(12518, 10109, 'no_lang_code', 'name', 'British Airways (United Kingdom)'),
(12519, 10110, 'en', 'name', 'Institute of American Indian Arts'),
(12520, 10111, 'en', 'name', 'Drummond Public Schools'),
(12521, 10112, 'no_lang_code', 'name', 'SMR Engineering and Development (Switzerland)'),
(12522, 10113, 'no_lang_code', 'name', 'Visidyne (United States)'),
(12523, 10114, 'en', 'name', 'Tift County School District'),
(12524, 10115, 'no_lang_code', 'name', 'Saphyrion (Switzerland)'),
(12525, 10116, 'en', 'name', 'Breathe California Golden Gate Public Health Partnership'),
(12526, 10117, 'en', 'name', 'Bristlecone Family Resources'),
(12527, 10118, 'en', 'name', 'General Electricity Company'),
(12528, 10118, 'no_lang_code', 'name', 'Allgemeine ElektrizitƤts Gesellschaft (Germany)'),
(12529, 10119, 'en', 'name', 'Providence Alaska Medical Center'),
(12530, 10120, 'en', 'name', 'International Brain Research Organization'),
(12531, 10120, 'fr', 'name', 'Organisation internationale de recherche sur le cerveau'),
(12532, 10121, 'no_lang_code', 'name', 'Nivalis Therapeutics (United States)'),
(12533, 10122, 'no_lang_code', 'name', 'Conceptivity (Switzerland)'),
(12534, 10123, 'no_lang_code', 'name', 'GEA Group (Germany)'),
(12535, 10124, 'no_lang_code', 'name', 'Gwent Group (United Kingdom)'),
(12536, 10125, 'en', 'name', 'American Himalayan Foundation'),
(12537, 10126, 'no_lang_code', 'name', 'Tecnologƭas Servicios TelemƔticos y Sistemas'),
(12538, 10127, 'no_lang_code', 'name', 'Hewlett-Packard (France)'),
(12539, 10128, 'no_lang_code', 'name', 'Otto Group (Germany)'),
(12540, 10129, 'da', 'name', 'Det Nationale Forskningscenter for VelfƦrd'),
(12541, 10129, 'en', 'name', 'Danish National Centre for Social Research'),
(12542, 10130, 'no_lang_code', 'name', 'Keshet Dance Company (United States)'),
(12543, 10131, 'no_lang_code', 'name', 'Luxilon (Belgium)'),
(12544, 10132, 'no_lang_code', 'name', 'Innovation (Latvia)'),
(12545, 10133, 'en', 'name', 'Clara Martin Center'),
(12546, 10134, 'no_lang_code', 'name', 'Software (Germany)'),
(12547, 10135, 'no_lang_code', 'name', 'Solaronix (Switzerland)'),
(12548, 10136, 'no_lang_code', 'name', 'Pacific Biodiesel (United States)'),
(12549, 10137, 'en', 'name', 'Cambodian Association of America'),
(12550, 10138, 'en', 'name', 'CNL World'),
(12551, 10139, 'en', 'name', 'Resources for Independence Central Valley'),
(12552, 10140, 'no_lang_code', 'name', 'Dornier (Germany)'),
(12553, 10141, 'en', 'name', 'United Charitable'),
(12554, 10142, 'en', 'name', 'Concern Worldwide'),
(12555, 10143, 'fr', 'name', 'Centre National de Recherches MƩtƩorologiques'),
(12556, 10144, 'en', 'name', 'Winston County Self Help Cooperative'),
(12557, 10145, 'en', 'name', 'Community Breast Care Project'),
(12558, 10146, 'en', 'name', 'Mighty4 Arts Foundation'),
(12559, 10147, 'no_lang_code', 'name', 'Microvi Biotechnologies (United States)'),
(12560, 10148, 'en', 'name', 'Any Baby Can'),
(12561, 10149, 'en', 'name', 'Beacon Health System'),
(12562, 10150, 'no_lang_code', 'name', 'SES (Luxembourg)'),
(12563, 10151, 'no_lang_code', 'name', 'Telscom (Switzerland)'),
(12564, 10152, 'en', 'name', 'Arkana Laboratories'),
(12565, 10153, 'en', 'name', 'Children''s Brain Tumor Foundation'),
(12566, 10154, 'no_lang_code', 'name', 'Italsolar (Italy)'),
(12567, 10155, 'en', 'name', 'Desi Geestman Foundation'),
(12568, 10156, 'no_lang_code', 'name', 'Solintel (Spain)'),
(12569, 10157, 'en', 'name', 'Yakima Valley Community College'),
(12570, 10158, 'no_lang_code', 'name', 'Prima Industrie (Italy)'),
(12571, 10159, 'no_lang_code', 'name', 'Enertechnix (United States)'),
(12572, 10160, 'no_lang_code', 'name', 'Kjobenhavns Telefon Aktieselskab (Denmark)'),
(12573, 10161, 'en', 'name', 'FishBase Information and Research Group'),
(12574, 10162, 'no_lang_code', 'name', 'Biocentras (Lithuania)'),
(12575, 10163, 'no_lang_code', 'name', 'Ente Nazionale Assistenza al Volo (Italy)'),
(12576, 10164, 'en', 'name', 'Bay Mills Community College'),
(12577, 10165, 'no_lang_code', 'name', 'Technology Holding (United States)'),
(12578, 10166, 'en', 'name', 'Institute for Applied Ecology'),
(12579, 10166, 'eu', 'name', 'Oeko Institut'),
(12580, 10167, 'es', 'name', 'Fondo Centroamericano de Mujeres'),
(12581, 10168, 'no_lang_code', 'name', 'Enviscope (Germany)'),
(12582, 10169, 'en', 'name', 'North Country Hospital'),
(12583, 10170, 'no_lang_code', 'name', 'Norsk Elektro Optikk (Norway)'),
(12584, 10171, 'en', 'name', 'Luxinnovation'),
(12585, 10172, 'no_lang_code', 'name', 'ISRA Vision Parsytec (Germany)'),
(12586, 10173, 'en', 'name', 'Men''s Health Network'),
(12587, 10174, 'en', 'name', 'Adelante Mujeres'),
(12588, 10175, 'en', 'name', 'Haitian American Association Against Cancer'),
(12589, 10176, 'en', 'name', 'Arizona Sonora Desert Museum'),
(12590, 10177, 'en', 'name', 'Allen Temple Baptist Church'),
(12591, 10178, 'en', 'name', 'LAND studio'),
(12592, 10179, 'en', 'name', 'Global Autism Project'),
(12593, 10180, 'no_lang_code', 'name', 'Terradue (Italy)'),
(12594, 10181, 'en', 'name', 'Institute of Applied Mathematics and Mechanics'),
(12595, 10182, 'en', 'name', 'President''s Council of Advisors on Science and Technology'),
(12596, 10183, 'en', 'name', 'Joint Institute for VLBI ERIC'),
(12597, 10184, 'en', 'name', 'University of California Hastings College of the Law'),
(12598, 10184, 'fr', 'name', 'Ɖcole de droit hastings de l''universitĆ© de californie'),
(12599, 10185, 'en', 'name', 'Boca Raton Museum of Art'),
(12600, 10186, 'en', 'name', 'Institute for Physics and Power Engineering'),
(12601, 10186, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской ФеГерации Физико-ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚, Š“ŠŠ¦ РФ-ФЭИ'),
(12602, 10187, 'en', 'name', 'Community Reach of Montgomery County'),
(12603, 10188, 'no_lang_code', 'name', 'Omniform (Belgium)'),
(12604, 10189, 'no_lang_code', 'name', 'Veolia (Denmark)'),
(12605, 10190, 'no_lang_code', 'name', 'Synergie Informatique'),
(12606, 10191, 'it', 'name', 'Istituto di Sociologia Internazionale di Gorizia'),
(12607, 10192, 'no_lang_code', 'name', 'Metos (Austria)'),
(12608, 10193, 'no_lang_code', 'name', 'NVision Solutions (United States)'),
(12609, 10194, 'en', 'name', 'Breast Cancer Care and Research Fund'),
(12610, 10195, 'no_lang_code', 'name', 'Separex (France)'),
(12611, 10196, 'en', 'name', 'AbilityPLUS'),
(12612, 10197, 'en', 'name', 'Australasia Paediatric Endocrine Group'),
(12613, 10198, 'de', 'name', 'Hochschule Anhalt'),
(12614, 10198, 'en', 'name', 'Anhalt University of Applied Sciences'),
(12615, 10199, 'no_lang_code', 'name', 'Mobycon'),
(12616, 10200, 'en', 'name', 'Door to Hope'),
(12617, 10201, 'en', 'name', 'Greater Faith Baptist Church'),
(12618, 10202, 'en', 'name', 'Cardinal Ritter Senior Services'),
(12619, 10203, 'no_lang_code', 'name', 'Kala Pharmaceuticals (United States)'),
(12620, 10204, 'no_lang_code', 'name', 'Coastal Anesthesiology Consultants (United States)'),
(12621, 10205, 'en', 'name', 'NC Little Memorial Hospice'),
(12622, 10206, 'en', 'name', 'Leonia Public Schools'),
(12623, 10207, 'no_lang_code', 'name', 'Arecor (United Kingdom)'),
(12624, 10208, 'no_lang_code', 'name', 'DanSteel (Denmark)'),
(12625, 10209, 'en', 'name', 'LivingWell Cancer Resource Center'),
(12626, 10210, 'en', 'name', 'Regional Center for Information and Scientific Development'),
(12627, 10211, 'en', 'name', 'Department of Health and Wellness Promotion'),
(12628, 10212, 'en', 'name', 'Endeavor Charter School'),
(12629, 10213, 'en', 'name', 'Augusta University Health'),
(12630, 10214, 'en', 'name', 'National Bone Marrow Transplant Link'),
(12631, 10215, 'en', 'name', 'Los Angeles Neighborhood Land Trust'),
(12632, 10216, 'no_lang_code', 'name', 'Piksel (Italy)'),
(12633, 10217, 'en', 'name', 'Orthopaedic Research Laboratories'),
(12634, 10218, 'no_lang_code', 'name', 'Ottobock (Germany)'),
(12635, 10219, 'en', 'name', 'Cathedral Church of Saint John the Divine'),
(12636, 10220, 'en', 'name', 'CĆ­rculo de Vida'),
(12637, 10221, 'no_lang_code', 'name', 'Brimatech (Austria)'),
(12638, 10222, 'en', 'name', 'Texas Tech University System'),
(12639, 10223, 'de', 'name', 'Fraunhofer-Institut für Angewandte Festkörperphysik'),
(12640, 10223, 'en', 'name', 'Fraunhofer Institute for Applied Solid State Physics'),
(12641, 10224, 'no_lang_code', 'name', 'Wask Engineering (United States)'),
(12642, 10225, 'no_lang_code', 'name', 'Ricardo AEA (Netherlands)'),
(12643, 10226, 'de', 'name', 'Forschungsinstitut für Edelmetalle und Metallchemie'),
(12644, 10226, 'en', 'name', 'Research Institute for Precious Metals and Metal Chemistry'),
(12645, 10227, 'en', 'name', 'Comanche County Juvenile Bureau'),
(12646, 10228, 'en', 'name', 'HealthNet TPO'),
(12647, 10229, 'no_lang_code', 'name', 'In JeT ApS (Denmark)'),
(12648, 10230, 'no_lang_code', 'name', 'JosƩ Mateo Ballet Theatre (United States)'),
(12649, 10231, 'no_lang_code', 'name', 'KitoZyme (Belgium)'),
(12650, 10232, 'en', 'name', 'Hinds Community College'),
(12651, 10233, 'en', 'name', 'Palo Alto Veterans Institute for Research'),
(12652, 10234, 'no_lang_code', 'name', 'Ionicon Analytik (Austria)'),
(12653, 10235, 'en', 'name', 'Carmel Research Center'),
(12654, 10236, 'no_lang_code', 'name', 'Project in Solar Energy (Germany)'),
(12655, 10237, 'en', 'name', 'Renown Children''s Hospital'),
(12656, 10238, 'en', 'name', 'Sampson County Schools'),
(12657, 10239, 'en', 'name', 'Central Coast Center for Independent Living'),
(12658, 10240, 'en', 'name', 'Children''s Hospital Srebrnjak'),
(12659, 10240, 'hr', 'name', 'Dječja Bolnica Srebrnjak'),
(12660, 10241, 'en', 'name', 'Inland Empire Concerned African American Churches'),
(12661, 10242, 'en', 'name', 'Memorial Medical Center'),
(12662, 10243, 'en', 'name', 'National Council of Negro Women'),
(12663, 10244, 'no_lang_code', 'name', 'Buck Consultants International'),
(12664, 10245, 'en', 'name', 'Galilee Missionary Baptist Church'),
(12665, 10246, 'en', 'name', 'New America'),
(12666, 10247, 'en', 'name', 'Hospital Universiti Sains Malaysia, Universiti Sains Malaysia School of Medical Science'),
(12667, 10248, 'no_lang_code', 'name', 'Eramet (France)'),
(12668, 10249, 'no_lang_code', 'name', 'Applied Nanotech (United States)'),
(12669, 10250, 'en', 'name', 'Breast International Group'),
(12670, 10251, 'en', 'name', 'Shields Valley Public Schools'),
(12671, 10252, 'no_lang_code', 'name', 'Luossavaara-Kiirunavaara Aktiebolag (Sweden)'),
(12672, 10253, 'no_lang_code', 'name', 'Dancing Wheels (United States)'),
(12673, 10254, 'no_lang_code', 'name', 'N8 Medical (United States)'),
(12674, 10255, 'en', 'name', 'New England Cancer Specialists'),
(12675, 10256, 'it', 'name', 'Consorzio Multi-Ente per la promozione e l''adozione di Tecnologie di calcolo Avanzato'),
(12676, 10257, 'en', 'name', 'Newark Museum'),
(12677, 10258, 'en', 'name', 'Alicia Rose Victorious Foundation'),
(12678, 10259, 'en', 'name', 'Northwest Georgia Regional Cancer Coalition'),
(12679, 10260, 'en', 'name', 'Pangaea Global AIDS Foundation'),
(12680, 10261, 'no_lang_code', 'name', 'Toulon Var Technologies (France)'),
(12681, 10262, 'en', 'name', 'Nick Simons Institute'),
(12682, 10263, 'no_lang_code', 'name', 'PureTemp (United States)'),
(12683, 10264, 'no_lang_code', 'name', 'Ferioli & Gianotti (Italy)'),
(12684, 10265, 'no_lang_code', 'name', 'Uniscan Instruments (United Kingdom)'),
(12685, 10266, 'en', 'name', 'SLO Food Bank'),
(12686, 10267, 'en', 'name', 'Teach For America'),
(12687, 10268, 'en', 'name', 'La Porte Hospital'),
(12688, 10269, 'en', 'name', 'Arthur Ashe Learning Center'),
(12689, 10270, 'no_lang_code', 'name', 'TecnologĆ­a Navarra de Nanoproductos (Spain)'),
(12690, 10271, 'en', 'name', 'Capital Region Medical Center'),
(12691, 10272, 'no_lang_code', 'name', 'Bax & Willems'),
(12692, 10273, 'no_lang_code', 'name', 'Housey Pharmaceutical Research Laboratories'),
(12693, 10274, 'en', 'name', 'State Hermitage Museum'),
(12694, 10274, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Эрмита́ж'),
(12695, 10275, 'no_lang_code', 'name', 'Rete Europea Dell’Innovazione (Italy)'),
(12696, 10276, 'en', 'name', 'CombiMatrix'),
(12697, 10277, 'en', 'name', 'Lars Research Institute'),
(12698, 10278, 'no_lang_code', 'name', 'Terres OlƩoPro (France)'),
(12699, 10279, 'en', 'name', 'International Society for Augmentative and Alternative Communication'),
(12700, 10280, 'en', 'name', 'Howard Area Community Center'),
(12701, 10281, 'no_lang_code', 'name', 'Paragon (Malta)'),
(12702, 10282, 'en', 'name', 'Community Support Network'),
(12703, 10283, 'no_lang_code', 'name', 'France DƩveloppement Conseil (France)'),
(12704, 10284, 'en', 'name', 'Aspira'),
(12705, 10285, 'it', 'name', 'Istituto Nazionale per Studi ed Esperienze di Architettura Navale'),
(12706, 10286, 'en', 'name', 'Consolidated Tribal Health Project'),
(12707, 10287, 'no_lang_code', 'name', 'Oxford Computer Consultants (United Kingdom)'),
(12708, 10288, 'en', 'name', 'Capital City Area Health Education Center'),
(12709, 10289, 'en', 'name', 'Paint Research Association'),
(12710, 10290, 'en', 'name', 'Belmont Abbey College'),
(12711, 10291, 'el', 'name', 'Περιφέρεια Δυτικής ΕλλάΓας'),
(12712, 10291, 'en', 'name', 'Region of Western Greece'),
(12713, 10292, 'no_lang_code', 'name', 'Raidió TeilifĆ­s Ɖireann (Ireland)'),
(12714, 10293, 'no_lang_code', 'name', 'Saaten Union (Germany)'),
(12715, 10294, 'no_lang_code', 'name', 'Edelweiss Gestão Empresarial (Brazil)'),
(12716, 10295, 'no_lang_code', 'name', 'Softeam Cadextan'),
(12717, 10296, 'en', 'name', 'Cystic Fibrosis Foundation'),
(12718, 10297, 'no_lang_code', 'name', 'METALogic (Belgium)'),
(12719, 10298, 'no_lang_code', 'name', 'El.En. Group (Italy)'),
(12720, 10299, 'en', 'name', 'Austrian Broadcasting'),
(12721, 10299, 'no_lang_code', 'name', 'Ɩsterreichischer Rundfunk'),
(12722, 10300, 'en', 'name', 'Indian Health Council'),
(12723, 10301, 'en', 'name', 'Krasnoyarsk State Medical University'),
(12724, 10301, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени профессора Š’.Ф. Войно-Ясенецкого ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(12725, 10302, 'no_lang_code', 'name', 'Asper Biotech (Estonia)'),
(12726, 10303, 'en', 'name', 'Elixir Fund'),
(12727, 10304, 'en', 'name', 'United Way of Greater Portland'),
(12728, 10305, 'no_lang_code', 'name', 'Oncos Therapeutics (Finland)'),
(12729, 10306, 'no_lang_code', 'name', 'Praxis'),
(12730, 10307, 'no_lang_code', 'name', 'Orion Genomics (United States)'),
(12731, 10308, 'no_lang_code', 'name', 'Keraplast Technologies (United States)'),
(12732, 10309, 'en', 'name', 'Bon Secours Health System'),
(12733, 10310, 'pt', 'name', 'Centro Tecnológico do Calçado de Portugal'),
(12734, 10311, 'no_lang_code', 'name', 'iFyber (United States)'),
(12735, 10312, 'no_lang_code', 'name', 'Logit Systems (Norway)'),
(12736, 10313, 'en', 'name', 'International Society for Optical Engineering'),
(12737, 10314, 'en', 'name', 'Pildo Labs'),
(12738, 10315, 'no_lang_code', 'name', 'Intelligentsia Consultants'),
(12739, 10316, 'en', 'name', 'HP Family Medical Clinic'),
(12740, 10317, 'no_lang_code', 'name', 'FOV Fabrics (Sweden)'),
(12741, 10318, 'en', 'name', 'European Trade Union Confederation'),
(12742, 10319, 'no_lang_code', 'name', 'Mƶlnlycke Health Care (United States)'),
(12743, 10320, 'en', 'name', 'Afghan Coalition'),
(12744, 10321, 'en', 'name', 'Literacy for Environmental Justice'),
(12745, 10322, 'en', 'name', 'Communities In Schools of Orange County'),
(12746, 10323, 'en', 'name', 'Health Care Management Group'),
(12747, 10324, 'en', 'name', 'Maine-Dartmouth Family Medicine Residency'),
(12748, 10325, 'en', 'name', 'West Virginia Department of Agriculture'),
(12749, 10326, 'no_lang_code', 'name', 'Capgemini (Belgium)'),
(12750, 10327, 'en', 'name', 'Genesis Counseling Centers'),
(12751, 10328, 'en', 'name', 'HaitiChildren'),
(12752, 10329, 'en', 'name', 'European Respiratory Society'),
(12753, 10330, 'no_lang_code', 'name', 'Engie (Belgium)'),
(12754, 10331, 'no_lang_code', 'name', 'BIC Bratislava (Slovakia)'),
(12755, 10332, 'en', 'name', 'Bedford VA Research Corporation'),
(12756, 10333, 'no_lang_code', 'name', 'Eco Composites (United States)'),
(12757, 10334, 'en', 'name', 'Oregon College of Oriental Medicine'),
(12758, 10335, 'en', 'name', 'Italian Union of the Blind and Partially Sighted'),
(12759, 10335, 'it', 'name', 'Unione Italiana dei Ciechi e degli Ipovedenti'),
(12760, 10336, 'no_lang_code', 'name', 'Motorola (Italy)'),
(12761, 10337, 'no_lang_code', 'name', 'Berliner Nanotest und Design'),
(12762, 10338, 'no_lang_code', 'name', 'Infor (Netherlands)'),
(12763, 10339, 'no_lang_code', 'name', 'Centre Technique Cuir Chaussure Maroquinerie (France)'),
(12764, 10340, 'en', 'name', 'Charles County Public Schools'),
(12765, 10341, 'en', 'name', 'Region One Mental Health'),
(12766, 10342, 'no_lang_code', 'name', 'ISA Pharmaceuticals (Netherlands)'),
(12767, 10343, 'en', 'name', 'Local Government Management Agency'),
(12768, 10344, 'no_lang_code', 'name', 'Endocrine Technology (United States)'),
(12769, 10345, 'en', 'name', 'Madras Diabetes Research Foundation'),
(12770, 10346, 'en', 'name', 'Reel Recovery'),
(12771, 10347, 'no_lang_code', 'name', 'Technology Application Network (United Kingdom)'),
(12772, 10348, 'en', 'name', 'Kendra''s Kisses'),
(12773, 10349, 'no_lang_code', 'name', 'Bekaert (Belgium)'),
(12774, 10350, 'en', 'name', 'GrassrootsHealth'),
(12775, 10351, 'no_lang_code', 'name', 'Oncomatryx (Spain)'),
(12776, 10352, 'en', 'name', 'PENTA Foundation'),
(12777, 10353, 'en', 'name', 'Maine Adaptive Sports & Recreation'),
(12778, 10354, 'en', 'name', 'George Eliava Institute of Bacteriophage, Microbiology and Virology'),
(12779, 10355, 'it', 'name', 'Agenzia dei Trasporti Autoferrotranviari del Comune'),
(12780, 10356, 'no_lang_code', 'name', 'NTT (Italy)'),
(12781, 10357, 'no_lang_code', 'name', 'Kostopulos Dream Foundation'),
(12782, 10358, 'no_lang_code', 'name', 'Envisa (France)'),
(12783, 10359, 'en', 'name', 'New Jersey Department of Agriculture'),
(12784, 10360, 'no_lang_code', 'name', 'Dantec Dynamics (Germany)'),
(12785, 10361, 'en', 'name', 'American Childhood Cancer Organization'),
(12786, 10362, 'no_lang_code', 'name', 'Compagnie Maritime d''Expertises (France)'),
(12787, 10363, 'en', 'name', 'Baptist Health Floyd'),
(12788, 10364, 'en', 'name', 'Health Trust'),
(12789, 10365, 'en', 'name', 'Kathmandu Valley Preservation Trust'),
(12790, 10366, 'en', 'name', 'Helsinki Children''s Hospital'),
(12791, 10366, 'fi', 'name', 'Lastenlinna'),
(12792, 10366, 'sv', 'name', 'Barnets borg'),
(12793, 10367, 'en', 'name', 'Sustainable Food Center'),
(12794, 10368, 'en', 'name', 'Baltimore Medical System'),
(12795, 10369, 'en', 'name', 'Placer School for Adults'),
(12796, 10370, 'en', 'name', 'Malta Information Technology Agency'),
(12797, 10371, 'en', 'name', 'Mobile County Public Schools'),
(12798, 10372, 'en', 'name', 'British Plastics Federation'),
(12799, 10373, 'no_lang_code', 'name', 'Rijk Zwaan (Netherlands)'),
(12800, 10374, 'en', 'name', 'Care International Sri Lanka'),
(12801, 10375, 'en', 'name', 'ManageBGL'),
(12802, 10376, 'de', 'name', 'Kuratorium für Technik und Bauwesen in der Landwirtschaft'),
(12803, 10377, 'fr', 'name', 'Ministère de la Santé Publique et Action Sociale'),
(12804, 10378, 'en', 'name', 'Angel Flight South Central'),
(12805, 10379, 'no_lang_code', 'name', 'Capstan (United States)'),
(12806, 10380, 'no_lang_code', 'name', 'LUSAS (United Kingdom)'),
(12807, 10381, 'no_lang_code', 'name', 'Xnano Sciences (United States)'),
(12808, 10382, 'en', 'name', 'Eyes Wide Open International'),
(12809, 10383, 'no_lang_code', 'name', 'Blue Sun (United States)'),
(12810, 10384, 'en', 'name', 'Heritage Ranch'),
(12811, 10385, 'en', 'name', 'Cancer Family Care'),
(12812, 10386, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Ń„ŠøŠ·ŠøŠŗŠ¾Ń…ŠøŠ¼ŠøŃ'),
(12813, 10386, 'en', 'name', 'Institute of Physical Chemistry'),
(12814, 10387, 'en', 'name', 'Chinese Christian Herald Crusades'),
(12815, 10388, 'en', 'name', 'Cultural Humanitarian Fund Sukhumi'),
(12816, 10389, 'no_lang_code', 'name', 'Troutlodge (United States)'),
(12817, 10390, 'en', 'name', 'Cancer Services of Northeast Indiana'),
(12818, 10391, 'no_lang_code', 'name', 'HKV (Netherlands)'),
(12819, 10392, 'en', 'name', 'Arizona Veterans Research and Education Foundation'),
(12820, 10393, 'no_lang_code', 'name', 'Cosytec (France)'),
(12821, 10394, 'no_lang_code', 'name', 'Primmbiotech (Italy)'),
(12822, 10395, 'no_lang_code', 'name', 'PhoeniX Software (Netherlands)'),
(12823, 10396, 'en', 'name', 'Agri Analysis'),
(12824, 10397, 'en', 'name', 'Coconino Community College Foundation'),
(12825, 10398, 'en', 'name', 'Anti Domestic Violence Coalition'),
(12826, 10399, 'es', 'name', 'Asociación para el Desarrollo Integral Comunitario'),
(12827, 10400, 'no_lang_code', 'name', 'Babcock & Wilcox (Denmark)'),
(12828, 10401, 'en', 'name', 'NextSteps Chicago'),
(12829, 10402, 'no_lang_code', 'name', 'Malsch TechnoValuation'),
(12830, 10403, 'en', 'name', 'O''Brien Institute'),
(12831, 10404, 'no_lang_code', 'name', 'Eurosense (Belgium)'),
(12832, 10405, 'en', 'name', 'Pain and Rehabilitation Medicine'),
(12833, 10406, 'en', 'name', 'Nemours Children’s Clinic'),
(12834, 10407, 'en', 'name', 'National Institute of Aerospace'),
(12835, 10408, 'en', 'name', 'Institute of High Pressure Physics'),
(12836, 10408, 'pl', 'name', 'Instytut Wysokich Ciśnień'),
(12837, 10409, 'en', 'name', 'Arcetri Astrophysical Observatory'),
(12838, 10409, 'it', 'name', 'Osservatorio Astrofisico di Arcetri'),
(12839, 10410, 'en', 'name', 'Institute for Security Studies'),
(12840, 10411, 'no_lang_code', 'name', 'Technical Software Consulting'),
(12841, 10412, 'no_lang_code', 'name', 'synergo'),
(12842, 10413, 'en', 'name', 'American Folk Art Museum'),
(12843, 10414, 'en', 'name', 'Mazor Mental Health Center'),
(12844, 10414, 'he', 'name', '×”×ž×Ø×›×– הרפואי ×œ×‘×Ø×™××•×Ŗ הנפש ×ž×–×•×Ø'),
(12845, 10415, 'no_lang_code', 'name', 'ActiveSite Pharmaceuticals (United States)'),
(12846, 10416, 'en', 'name', 'Calmar Pain Relief'),
(12847, 10417, 'en', 'name', 'Pathways Behavioral Services'),
(12848, 10418, 'en', 'name', 'National September 11 Memorial and Museum'),
(12849, 10419, 'en', 'name', 'Georgian Research and Educational Networking Association'),
(12850, 10420, 'no_lang_code', 'name', 'Micro Resist Technology (Germany)'),
(12851, 10421, 'en', 'name', 'Observa Science in Society'),
(12852, 10422, 'en', 'name', 'Foundation of the Hellenic World'),
(12853, 10423, 'no_lang_code', 'name', 'Veneto Nanotech (Italy)'),
(12854, 10424, 'no_lang_code', 'name', 'Inmarsat (United Kingdom)'),
(12855, 10425, 'en', 'name', 'African American Health Institute of San Bernardino County'),
(12856, 10426, 'no_lang_code', 'name', 'Mainstream Engineering Corporation (United States)'),
(12857, 10427, 'en', 'name', 'Institute of Logistics and Warehousing'),
(12858, 10428, 'en', 'name', 'Fremont County Public Health'),
(12859, 10429, 'de', 'name', 'Leibniz-Institut für Neue Materialien'),
(12860, 10429, 'en', 'name', 'Leibniz-Institute for New Materials'),
(12861, 10430, 'no_lang_code', 'name', 'Varian Medical Systems (United Kingdom)'),
(12862, 10431, 'en', 'name', 'LGI Consulting'),
(12863, 10432, 'no_lang_code', 'name', 'Lucchini Idromeccanica (Italy)'),
(12864, 10433, 'en', 'name', 'Global Technology Community'),
(12865, 10434, 'en', 'name', 'Lone Star Paralysis Foundation'),
(12866, 10435, 'en', 'name', 'Mvskoke Food Sovereignty Initiative'),
(12867, 10436, 'no_lang_code', 'name', 'Opexa Therapeutics (United States)'),
(12868, 10437, 'de', 'name', 'Thüringisches Institut für Textil- und Kunststoff-Forschung Rudolstadt'),
(12869, 10437, 'en', 'name', 'Thuringian Institute of Textile and Plastics Research'),
(12870, 10438, 'no_lang_code', 'name', 'BioPulping International (United States)'),
(12871, 10439, 'en', 'name', 'Our School at Blair Grocery'),
(12872, 10440, 'no_lang_code', 'name', 'Advanced Biological Marketing (United States)'),
(12873, 10441, 'no_lang_code', 'name', 'Sandvik (United States)'),
(12874, 10442, 'en', 'name', 'La Semilla Food Center'),
(12875, 10443, 'no_lang_code', 'name', 'Istituto Giordano'),
(12876, 10444, 'no_lang_code', 'name', 'Renewable Energy Systems (United Kingdom)'),
(12877, 10445, 'no_lang_code', 'name', 'Biotronics (United States)'),
(12878, 10446, 'en', 'name', 'Ministry of Agriculture Nature and Food Quality'),
(12879, 10447, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по геофизика, Š³ŠµŠ¾Š“ŠµŠ·ŠøŃ Šø Š³ŠµŠ¾Š³Ń€Š°Ń„ŠøŃ'),
(12880, 10447, 'en', 'name', 'National Institute of Geophysics, Geodesy and Geography'),
(12881, 10448, 'en', 'name', 'Hospitality Homes'),
(12882, 10449, 'no_lang_code', 'name', 'Mitergy (United States)'),
(12883, 10450, 'no_lang_code', 'name', 'Flowtech International (Sweden)'),
(12884, 10451, 'no_lang_code', 'name', 'Soil Born Farms Urban Agriculture & Education Project (United States)'),
(12885, 10452, 'en', 'name', 'Danube Delta National Institute for Research and Development'),
(12886, 10452, 'ro', 'name', 'Institutul National de Cercetare Dezvoltare Delta Dunarii'),
(12887, 10453, 'no_lang_code', 'name', 'Arelis (France)'),
(12888, 10454, 'en', 'name', 'Finnish Transport Agency'),
(12889, 10455, 'en', 'name', 'National Institute of Child Health'),
(12890, 10455, 'hu', 'name', 'OrszÔgos Gyermek Egészségügyi Intézet'),
(12891, 10456, 'de', 'name', 'Kƶnigliche Sternwarte von Belgien'),
(12892, 10456, 'en', 'name', 'Royal Observatory of Belgium'),
(12893, 10456, 'fr', 'name', 'Observatoire royal de belgique'),
(12894, 10456, 'nl', 'name', 'Koninklijke Sterrenwacht van Belgiƫ'),
(12895, 10457, 'no_lang_code', 'name', 'Eolas (Ireland)'),
(12896, 10458, 'en', 'name', 'Guiding Lights Caregiver Support Center'),
(12897, 10459, 'en', 'name', 'University of Maryland Charles Regional Medical Center'),
(12898, 10460, 'no_lang_code', 'name', 'Morgan Advanced Materials (United Kingdom)'),
(12899, 10461, 'no_lang_code', 'name', 'Murmansk Marine Biological Institute'),
(12900, 10462, 'no_lang_code', 'name', 'Radex Heraklith Industriebeteiligungs (Germany)'),
(12901, 10463, 'en', 'name', 'Meridian Plastic Surgeons'),
(12902, 10464, 'en', 'name', 'Cradle of Forestry'),
(12903, 10465, 'de', 'name', 'Deutsches Institut für Normung'),
(12904, 10465, 'en', 'name', 'German Institute for Standardization'),
(12905, 10466, 'en', 'name', 'Helping Hands Monkey Helpers'),
(12906, 10467, 'no_lang_code', 'name', 'Rivertop Renewables (United States)'),
(12907, 10468, 'en', 'name', 'Ethiopian Community Development Council'),
(12908, 10469, 'no_lang_code', 'name', 'Syngenta (Netherlands)'),
(12909, 10470, 'no_lang_code', 'name', 'Innovative System und Informationstechnologien (Germany)'),
(12910, 10471, 'en', 'name', 'Pain Relief and Palliative Care Society'),
(12911, 10472, 'no_lang_code', 'name', 'Collegium Budapest'),
(12912, 10473, 'en', 'name', 'California Teaching Fellows Foundation'),
(12913, 10474, 'en', 'name', 'Indian Health Care Resource Center of Tulsa'),
(12914, 10475, 'en', 'name', 'Scientific and Technical Information Service'),
(12915, 10475, 'fr', 'name', 'Service d''Information Scientifique et Technique'),
(12916, 10475, 'nl', 'name', 'Dienst voor Wetenschappelijke en Technische Informatie'),
(12917, 10476, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по органична Ń…ŠøŠ¼ŠøŃ с Š¦ŠµŠ½Ń‚ŃŠŃ€ по Ń„ŠøŃ‚Š¾Ń…ŠøŠ¼ŠøŃ'),
(12918, 10476, 'en', 'name', 'Institute of Organic Chemistry with Centre of Phytochemistry'),
(12919, 10477, 'en', 'name', 'Ecumenical Ministries of Oregon'),
(12920, 10478, 'no_lang_code', 'name', 'Comarch (Poland)'),
(12921, 10479, 'no_lang_code', 'name', 'Altaeros (United States)'),
(12922, 10480, 'no_lang_code', 'name', 'MolMed (Italy)'),
(12923, 10481, 'en', 'name', 'Indiana Cancer Registrars Association'),
(12924, 10482, 'en', 'name', 'Iowa City VA Medical Research Foundation'),
(12925, 10483, 'en', 'name', 'North East Community Center'),
(12926, 10484, 'en', 'name', 'St. Patrick Catholic High School'),
(12927, 10485, 'no_lang_code', 'name', 'MerMec (Italy)'),
(12928, 10486, 'en', 'name', 'Carteret County Public School System'),
(12929, 10487, 'en', 'name', 'Institute for Reproductive Health'),
(12930, 10488, 'en', 'name', 'Court Appointed Special Advocates of Union County'),
(12931, 10489, 'no_lang_code', 'name', 'Gradalis (United States)'),
(12932, 10490, 'en', 'name', 'National Wild Turkey Federation'),
(12933, 10491, 'no_lang_code', 'name', 'Cancer Targeted Technology (United States)'),
(12934, 10492, 'no_lang_code', 'name', 'RTC North (United Kingdom)'),
(12935, 10493, 'en', 'name', 'Foundation for the National Institutes of Health'),
(12936, 10494, 'no_lang_code', 'name', 'Amrita Therapeutics (India)'),
(12937, 10495, 'no_lang_code', 'name', 'LioniX (Netherlands)'),
(12938, 10496, 'en', 'name', 'Onslow County School System'),
(12939, 10497, 'no_lang_code', 'name', 'Hexagon (Belgium)'),
(12940, 10498, 'en', 'name', 'Granada Hills Community Hospital'),
(12941, 10499, 'en', 'name', 'Setauket Neighborhood House'),
(12942, 10500, 'no_lang_code', 'name', 'Sensing & Control Systems (Spain)'),
(12943, 10501, 'en', 'name', 'Rend Lake College'),
(12944, 10502, 'no_lang_code', 'name', 'Bionovo (United States)'),
(12945, 10503, 'no_lang_code', 'name', 'Sonoma Technology (United States)'),
(12946, 10504, 'no_lang_code', 'name', 'Altos Therapeutics (United States)'),
(12947, 10505, 'en', 'name', 'HealthEast Care System'),
(12948, 10506, 'no_lang_code', 'name', 'TransFurans Chemicals (Belgium)'),
(12949, 10507, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Πειραιά'),
(12950, 10507, 'en', 'name', 'Technological Educational Institute of Piraeus'),
(12951, 10508, 'en', 'name', 'Rafiki Coalition'),
(12952, 10509, 'nl', 'name', 'GZA Ziekenhuizen Campus Sint-Augustinus'),
(12953, 10510, 'no_lang_code', 'name', 'My25'),
(12954, 10511, 'no_lang_code', 'name', 'Optoelectronica-2001 (Romania)'),
(12955, 10512, 'no_lang_code', 'name', 'Ingenierƭa de Sistemas para la Defensa de EspaƱa'),
(12956, 10513, 'en', 'name', 'Grassroots Gardens WNY'),
(12957, 10514, 'no_lang_code', 'name', 'Meiko (United Kingdom)'),
(12958, 10515, 'en', 'name', 'Kenosha County Department of Human Services'),
(12959, 10516, 'no_lang_code', 'name', 'Intel (Germany)'),
(12960, 10517, 'en', 'name', 'Neurology Associates of Arlington'),
(12961, 10518, 'no_lang_code', 'name', 'Custodix (Belgium)'),
(12962, 10519, 'no_lang_code', 'name', 'Masilamea Press (New Zealand)'),
(12963, 10520, 'it', 'name', 'Fondazione Idis CittĆ  della Scienza'),
(12964, 10521, 'en', 'name', 'WV Caring'),
(12965, 10522, 'en', 'name', 'Brea Fire Department'),
(12966, 10523, 'no_lang_code', 'name', 'Sika (Switzerland)'),
(12967, 10524, 'no_lang_code', 'name', 'Subsea 7 (France)'),
(12968, 10525, 'no_lang_code', 'name', 'Alkeus Pharmaceuticals (United States)'),
(12969, 10526, 'no_lang_code', 'name', 'Targeting Innovation'),
(12970, 10527, 'no_lang_code', 'name', 'Grontmij (Denmark)'),
(12971, 10528, 'no_lang_code', 'name', 'Heliophysics'),
(12972, 10529, 'en', 'name', 'Institute of Ecology and Botany'),
(12973, 10529, 'hu', 'name', 'Ɩkológiai Ć©s Botanikai IntĆ©zet'),
(12974, 10530, 'no_lang_code', 'name', 'BPE Unternehmensbeteiligungen (Germany)'),
(12975, 10531, 'en', 'name', 'Miles Perret Cancer Services'),
(12976, 10532, 'en', 'name', 'Cities On Internet Association'),
(12977, 10533, 'en', 'name', 'Northern Neurosciences'),
(12978, 10534, 'en', 'name', 'IḷisaĔvik College'),
(12979, 10535, 'en', 'name', 'South Dakota Discovery Center'),
(12980, 10536, 'en', 'name', 'ScienceSouth'),
(12981, 10537, 'en', 'name', 'Heart of Passion'),
(12982, 10538, 'no_lang_code', 'name', 'Veolia (Sweden)'),
(12983, 10539, 'en', 'name', 'Institute of Electronics, Computer and Telecommunication Engineering'),
(12984, 10539, 'it', 'name', 'Istituto di Elettronica e di lngegneria dell''Informazione e delle Telecomunicazioni'),
(12985, 10540, 'en', 'name', 'OSF HealthCare'),
(12986, 10541, 'en', 'name', 'Natividad Foundation'),
(12987, 10542, 'no_lang_code', 'name', 'Neuro-Zone (Italy)'),
(12988, 10543, 'no_lang_code', 'name', 'Napa (Finland)'),
(12989, 10544, 'no_lang_code', 'name', 'Beta-O2 Technologies (Israel)'),
(12990, 10545, 'en', 'name', 'Danish Technological Institute'),
(12991, 10546, 'pt', 'name', 'MinistƩrio da JustiƧa'),
(12992, 10547, 'no_lang_code', 'name', 'BD Technologie (United States)'),
(12993, 10548, 'no_lang_code', 'name', 'Ocean Renewable Power Company (United States)'),
(12994, 10549, 'no_lang_code', 'name', 'Nokia (Spain)'),
(12995, 10550, 'en', 'name', 'Creating Hope'),
(12996, 10551, 'no_lang_code', 'name', 'ManRos Therapeutics (France)'),
(12997, 10552, 'no_lang_code', 'name', 'CeramTec (Germany)'),
(12998, 10553, 'es', 'name', 'Centro Nacional de Información GeogrÔfica'),
(12999, 10554, 'en', 'name', 'Brazosport Health Foundation'),
(13000, 10555, 'en', 'name', 'Federation of Southern Cooperatives Land Assistance Fund'),
(13001, 10556, 'no_lang_code', 'name', 'Ozmosis Research (Canada)'),
(13002, 10557, 'en', 'name', 'Baltimore Adapted Recreation and Sports'),
(13003, 10558, 'no_lang_code', 'name', 'Funkwerk (Germany)'),
(13004, 10559, 'en', 'name', 'Mount Nittany Medical Center'),
(13005, 10560, 'no_lang_code', 'name', 'Scriba Nanotecnologie (Italy)'),
(13006, 10561, 'fr', 'name', 'Association de Coordination Technique Pour l''Industrie Agroalimentaire'),
(13007, 10562, 'en', 'name', 'Cincinnati Health Department'),
(13008, 10563, 'en', 'name', 'French Institute of International Relations'),
(13009, 10563, 'fr', 'name', 'Institut FranƧais des Relations Internationales'),
(13010, 10564, 'en', 'name', 'Bluegrass Care Navigators'),
(13011, 10565, 'en', 'name', 'Austrian Society for Systems Engineering and Automation'),
(13012, 10566, 'de', 'name', 'Institut für die Wissenschaften vom Menschen'),
(13013, 10566, 'en', 'name', 'Institute of Human Sciences'),
(13014, 10567, 'en', 'name', 'Calallen Independent School District'),
(13015, 10568, 'no_lang_code', 'name', 'Amphos 21 (Spain)'),
(13016, 10569, 'no_lang_code', 'name', 'Mountain Meadow Wool Mill (United States)'),
(13017, 10570, 'en', 'name', 'Paralyzed Veterans of America'),
(13018, 10571, 'no_lang_code', 'name', 'Ion Beam Applications (Belgium)'),
(13019, 10572, 'no_lang_code', 'name', 'Ponimanie'),
(13020, 10573, 'en', 'name', 'Institute of Geodesy and Cartography'),
(13021, 10574, 'en', 'name', 'IEA Clean Coal Centre'),
(13022, 10575, 'en', 'name', 'The Entrepreneurs Foundation of Central Texas'),
(13023, 10576, 'no_lang_code', 'name', 'Transport & Mobility Leuven (Belgium)'),
(13024, 10577, 'en', 'name', 'Partners in Care Foundation'),
(13025, 10578, 'no_lang_code', 'name', 'Daithi O’Murchu Marine Research Station'),
(13026, 10579, 'en', 'name', 'Dr Dozo Laboratories'),
(13027, 10580, 'pt', 'name', 'Hospital do CĆ¢ncer III'),
(13028, 10581, 'no_lang_code', 'name', 'Panasonic (United States)'),
(13029, 10582, 'en', 'name', 'Agriculture and Land Based Training Association'),
(13030, 10583, 'en', 'name', 'Diagnostics For All'),
(13031, 10584, 'en', 'name', 'European Telecommunications Standards Institute'),
(13032, 10585, 'en', 'name', 'Allergy, Asthma and Clinical Research Center'),
(13033, 10586, 'lv', 'name', 'Latvijas Valsts Agrārās Ekonomikas Institūts'),
(13034, 10587, 'en', 'name', 'Opportunity Foundation of America'),
(13035, 10588, 'no_lang_code', 'name', 'Optimat (United Kingdom)'),
(13036, 10589, 'en', 'name', 'Community In Action'),
(13037, 10590, 'en', 'name', 'Regional Agency for Energy and Environment of the Autonomous Region of Madeira'),
(13038, 10590, 'pt', 'name', 'Agencia Regional da Energia e Ambiente da Regiao Autonoma da Madeira'),
(13039, 10591, 'en', 'name', 'Felicity House'),
(13040, 10592, 'no_lang_code', 'name', 'Hispasat (Spain)'),
(13041, 10593, 'en', 'name', 'Millennium Health and Human Services'),
(13042, 10594, 'en', 'name', 'New Frontier'),
(13043, 10595, 'en', 'name', 'Ministry of Health of the Republic of Uzbekistan'),
(13044, 10595, 'uz', 'name', 'ŠŽŠ·Š±ŠµŠŗŠøŃŃ‚Š¾Š½ Республикаси Доғлиқни ŃŠ°Ņ›Š»Š°Ńˆ вазирлиги'),
(13045, 10596, 'no_lang_code', 'name', 'Dimos Athinaion Epicheirisi Michanografisis (Greece)'),
(13046, 10597, 'no_lang_code', 'name', 'ICI Caldaie (Italy)'),
(13047, 10598, 'no_lang_code', 'name', 'BioTracking (United States)'),
(13048, 10599, 'en', 'name', 'WindEurope'),
(13049, 10600, 'no_lang_code', 'name', 'Language Technology Centre'),
(13050, 10601, 'en', 'name', 'Europa Donna'),
(13051, 10602, 'en', 'name', 'Nordic Folkecenter for Renewable Energy'),
(13052, 10603, 'no_lang_code', 'name', 'Metallisation (United Kingdom)'),
(13053, 10604, 'en', 'name', 'International Symposium on Neural Regeneration'),
(13054, 10605, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ фізікі Ń–Š¼Ń Š‘.І. Š”Ń†ŃŠæŠ°Š½Š°Š²Š°'),
(13055, 10605, 'en', 'name', 'B.I. Stepanov Institute of Physics'),
(13056, 10606, 'no_lang_code', 'name', 'Edif Group (United Kingdom)'),
(13057, 10607, 'no_lang_code', 'name', 'Trellis Growing Systems'),
(13058, 10608, 'no_lang_code', 'name', 'Biozoon (Germany)'),
(13059, 10609, 'no_lang_code', 'name', 'VSN International (United Kingdom)'),
(13060, 10610, 'en', 'name', 'Club Young Scientists'),
(13061, 10611, 'en', 'name', 'British Science Association'),
(13062, 10612, 'no_lang_code', 'name', 'Piaggio (Italy)'),
(13063, 10613, 'no_lang_code', 'name', 'Sea and Reef Aquaculture (United States)'),
(13064, 10614, 'en', 'name', 'Caporal Assistance Network'),
(13065, 10615, 'de', 'name', 'Fricke und Mallah Microwave Technology GmbH'),
(13066, 10615, 'no_lang_code', 'name', 'Fricke und Mallah Microwave Technology (Germany)'),
(13067, 10616, 'en', 'name', 'Evergreen Behavioral Health'),
(13068, 10617, 'ar', 'name', 'وزارة الأمن Ų§Ł„ŲÆŲ§Ų®Ł„ŁŠ'),
(13069, 10617, 'en', 'name', 'Ministry of Public Security'),
(13070, 10617, 'he', 'name', '×”×ž×©×Ø×“ לביטחון הפנים'),
(13071, 10618, 'en', 'name', 'Museum and Institute of Zoology'),
(13072, 10618, 'pl', 'name', 'Muzeum i Instytut Zoologii PAN'),
(13073, 10619, 'no_lang_code', 'name', 'Magneto Special Anodes (Netherlands)'),
(13074, 10620, 'no_lang_code', 'name', 'TriaGnoSys (Germany)'),
(13075, 10621, 'it', 'name', 'Istituto per lo Sviluppo della Formazione Professionale dei Lavoratori'),
(13076, 10622, 'en', 'name', 'Agency for Science, Innovation and Technology'),
(13077, 10623, 'en', 'name', 'The Garden Church'),
(13078, 10624, 'en', 'name', 'Services for Independent Living'),
(13079, 10625, 'no_lang_code', 'name', 'Upper Austrian Research'),
(13080, 10626, 'no_lang_code', 'name', 'Prisma Electronics (Greece)'),
(13081, 10627, 'en', 'name', 'McLaren Macomb'),
(13082, 10628, 'en', 'name', 'Lithuanian Innovation Centre'),
(13083, 10629, 'en', 'name', 'Hillcrest Clinics'),
(13084, 10630, 'en', 'name', 'Comprehensive Autism and related Disabilities Education and Training'),
(13085, 10631, 'no_lang_code', 'name', 'Caregiver Technologies (United States)'),
(13086, 10632, 'en', 'name', 'European Food Information Resource'),
(13087, 10633, 'en', 'name', 'Indigenous Education Institute'),
(13088, 10634, 'en', 'name', 'St. Alexius Heart and Lung Clinic'),
(13089, 10635, 'en', 'name', 'Journey Museum'),
(13090, 10636, 'en', 'name', 'Child Health Corporation of America'),
(13091, 10637, 'en', 'name', 'Child Guidance Center'),
(13092, 10638, 'en', 'name', 'Institute of Earthquake Prediction Theory and Mathematical Geophysics'),
(13093, 10638, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теории прогноза Š·ŠµŠ¼Š»ŠµŃ‚Ń€ŃŃŠµŠ½ŠøŠ¹ Šø математической геофизики Российской акаГемии наук (Š˜Š¢ŠŸŠ— Š ŠŠ)'),
(13094, 10639, 'en', 'name', 'Fairmont City Library Center'),
(13095, 10640, 'en', 'name', 'Institute of Molecular Bioimaging and Physiology'),
(13096, 10640, 'it', 'name', 'Istituto di Bioimmagini e Fisiologia Molecolare'),
(13097, 10641, 'en', 'name', 'Accessible Space'),
(13098, 10642, 'en', 'name', 'Karla J. Williams Foundation'),
(13099, 10643, 'no_lang_code', 'name', 'Integrasys (Spain)'),
(13100, 10644, 'no_lang_code', 'name', 'Decom (Slovakia)'),
(13101, 10645, 'no_lang_code', 'name', 'Telmat (France)'),
(13102, 10646, 'en', 'name', 'Loma Linda University Health Care'),
(13103, 10647, 'no_lang_code', 'name', 'HiTec Marketing');
INSERT INTO `ror_settings` VALUES
(13104, 10648, 'no_lang_code', 'name', 'Natex Prozesstechnologie (Austria)'),
(13105, 10649, 'no_lang_code', 'name', 'Beactica (Sweden)'),
(13106, 10650, 'no_lang_code', 'name', 'Siemens (Romania)'),
(13107, 10651, 'en', 'name', 'Oakville Public Library'),
(13108, 10652, 'no_lang_code', 'name', 'Horiba (France)'),
(13109, 10653, 'en', 'name', 'International Partnership for Microbicides'),
(13110, 10654, 'en', 'name', 'National Rehabilitation Association'),
(13111, 10655, 'no_lang_code', 'name', 'Lewis and Clark Pharmaceuticals (United States)'),
(13112, 10656, 'no_lang_code', 'name', 'MyTeam Triumph'),
(13113, 10657, 'no_lang_code', 'name', 'Eclexys (Switzerland)'),
(13114, 10658, 'en', 'name', 'Friends of Scott'),
(13115, 10659, 'no_lang_code', 'name', 'Alstom (Germany)'),
(13116, 10660, 'en', 'name', 'Houston County'),
(13117, 10661, 'no_lang_code', 'name', 'Fidia (Italy)'),
(13118, 10662, 'no_lang_code', 'name', 'ANA Aeroportos de Portugal (Portugal)'),
(13119, 10663, 'no_lang_code', 'name', 'Agdia (United States)'),
(13120, 10664, 'no_lang_code', 'name', 'Innovation Engineering (Italy)'),
(13121, 10665, 'no_lang_code', 'name', 'AquaGreen (United States)'),
(13122, 10666, 'no_lang_code', 'name', 'Bioazul (Spain)'),
(13123, 10667, 'en', 'name', 'Gardens at Post Hill'),
(13124, 10668, 'no_lang_code', 'name', 'Research and Environmental Devices (Italy)'),
(13125, 10669, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š° Š±ŠøŠ¾Š»Š¾Š³ŠøŃ'),
(13126, 10669, 'en', 'name', 'Institute of Molecular Biology'),
(13127, 10670, 'no_lang_code', 'name', 'Geonardo (Hungary)'),
(13128, 10671, 'no_lang_code', 'name', 'Toptica Photonics (Germany)'),
(13129, 10672, 'no_lang_code', 'name', 'Materialise (Belgium)'),
(13130, 10673, 'no_lang_code', 'name', 'SIVECO (Romania)'),
(13131, 10674, 'en', 'name', 'Valley Forge Military Academy and College'),
(13132, 10675, 'es', 'name', 'Fundación Ramón Domínguez'),
(13133, 10676, 'no_lang_code', 'name', 'Alsa Corporation (United States)'),
(13134, 10677, 'no_lang_code', 'name', 'Open Knowledge (United Kingdom)'),
(13135, 10678, 'en', 'name', 'Centexbel'),
(13136, 10679, 'en', 'name', 'Mixteco IndĆ­gena Community Organizing Project'),
(13137, 10680, 'no_lang_code', 'name', 'Thin Air Nitrogen Solutions (United States)'),
(13138, 10681, 'no_lang_code', 'name', 'DeskArtes (Finland)'),
(13139, 10682, 'no_lang_code', 'name', 'Elisa (Finland)'),
(13140, 10683, 'no_lang_code', 'name', 'Galson Sciences'),
(13141, 10684, 'en', 'name', 'Mathematics Foundation of America'),
(13142, 10685, 'no_lang_code', 'name', 'Pasquali Macchine Agricole (Italy)'),
(13143, 10686, 'en', 'name', 'Homer Soil and Water Conservation District'),
(13144, 10687, 'no_lang_code', 'name', 'Bureau van Dijk (Belgium)'),
(13145, 10688, 'no_lang_code', 'name', 'Noldus Information Technology'),
(13146, 10689, 'no_lang_code', 'name', 'InnospeXion (Denmark)'),
(13147, 10690, 'no_lang_code', 'name', 'Ab Medica (Italy)'),
(13148, 10691, 'en', 'name', 'National Wheelchair Basketball Association'),
(13149, 10692, 'no_lang_code', 'name', 'Indoor Biotechnologies (United States)'),
(13150, 10693, 'en', 'name', 'Women’s Environmental Institute'),
(13151, 10694, 'no_lang_code', 'name', 'Visual Components (Finland)'),
(13152, 10695, 'en', 'name', 'Achieve Tahoe'),
(13153, 10696, 'en', 'name', 'Museum of Science and Industry'),
(13154, 10697, 'eu', 'name', 'Matia Fundazioa'),
(13155, 10698, 'en', 'name', 'EASN Technology Innovation Services BVBA'),
(13156, 10699, 'es', 'name', 'Forem'),
(13157, 10700, 'en', 'name', 'Kaiser Permanente Castle Medical Center'),
(13158, 10701, 'en', 'name', 'European Centre for Information on Marine Science and Technology'),
(13159, 10702, 'en', 'name', 'Community Health Centers of Pinellas'),
(13160, 10703, 'en', 'name', 'East Palo Alto Kids Foundation'),
(13161, 10704, 'en', 'name', 'Agricultural Information Management'),
(13162, 10705, 'no_lang_code', 'name', 'Indra (Spain)'),
(13163, 10706, 'en', 'name', 'Cornerstone Evaluation Associates'),
(13164, 10707, 'en', 'name', 'European Research and Project Office'),
(13165, 10708, 'no_lang_code', 'name', 'Kōkua Kalihi Valley'),
(13166, 10709, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Š¼Š°Ń‚ŃŠ¼Š°Ń‚Ń‹ŠŗŃ– ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŃ–'),
(13167, 10709, 'en', 'name', 'Institute of Mathematics'),
(13168, 10710, 'en', 'name', 'Maryland State Department of Education'),
(13169, 10711, 'no_lang_code', 'name', 'Agora Systems (Spain)'),
(13170, 10712, 'en', 'name', 'Milwaukee Teacher Education Center'),
(13171, 10713, 'en', 'name', 'Archdiocese of New Orleans'),
(13172, 10714, 'en', 'name', 'Lesotho Planned Parenthood Association'),
(13173, 10715, 'en', 'name', 'Mercy Hospital'),
(13174, 10716, 'en', 'name', 'ProMedica Charles and Virginia Hickman Hospital'),
(13175, 10717, 'en', 'name', 'Renown Health'),
(13176, 10718, 'no_lang_code', 'name', 'Exide Technologies (Spain)'),
(13177, 10719, 'no_lang_code', 'name', 'Water Insight (Netherlands)'),
(13178, 10720, 'de', 'name', 'Landwirtschaftliche Untersuchungs- und Forschungsanstalt Speyer'),
(13179, 10721, 'no_lang_code', 'name', 'Breakthrough'),
(13180, 10722, 'en', 'name', 'Interfaith Center of New York'),
(13181, 10723, 'no_lang_code', 'name', 'Kineta (United States)'),
(13182, 10724, 'en', 'name', 'National Institute for Research and Development in Environmental Protection'),
(13183, 10724, 'ro', 'name', 'Institutul Național de Cercetare-Dezvoltare Pentru Protecția Mediului'),
(13184, 10725, 'en', 'name', 'Inland Northwest Health Services'),
(13185, 10726, 'en', 'name', 'STEM Forward'),
(13186, 10727, 'en', 'name', 'New Haven Family Alliance'),
(13187, 10728, 'en', 'name', 'IHE Europe'),
(13188, 10729, 'en', 'name', 'MIND Research Institute'),
(13189, 10730, 'no_lang_code', 'name', 'DuPont (Netherlands)'),
(13190, 10731, 'no_lang_code', 'name', 'Lamellar Biomedical (United Kingdom)'),
(13191, 10732, 'no_lang_code', 'name', 'OndaVia (United States)'),
(13192, 10733, 'en', 'name', 'Appalachian Mountain Advocates'),
(13193, 10734, 'en', 'name', 'Community Partners of South Florida'),
(13194, 10735, 'no_lang_code', 'name', 'LafargeHolcim (Greece)'),
(13195, 10736, 'no_lang_code', 'name', 'STMicroelectronics (Switzerland)'),
(13196, 10737, 'no_lang_code', 'name', 'Quantech ATZ (Spain)'),
(13197, 10738, 'en', 'name', 'Federal College of Education, Kano'),
(13198, 10739, 'no_lang_code', 'name', 'Innovhub (Italy)'),
(13199, 10740, 'no_lang_code', 'name', 'Element Materials Technology (United Kingdom)'),
(13200, 10741, 'en', 'name', 'Cancer Services of Grant County'),
(13201, 10742, 'no_lang_code', 'name', 'Catator (Sweden)'),
(13202, 10743, 'no_lang_code', 'name', 'Skytek (Ireland)'),
(13203, 10744, 'en', 'name', 'Instituto Familiar de la Raza'),
(13204, 10745, 'no_lang_code', 'name', 'Vodafone (Spain)'),
(13205, 10746, 'en', 'name', 'Bryan Health'),
(13206, 10747, 'en', 'name', 'Basavatarakam Indo American Cancer Hospital and Research Institute'),
(13207, 10748, 'no_lang_code', 'name', 'Jobst Technologies (Germany)'),
(13208, 10749, 'no_lang_code', 'name', 'Artelia (France)'),
(13209, 10750, 'en', 'name', 'American Association on Health and Disability'),
(13210, 10751, 'no_lang_code', 'name', 'CARSA (Spain)'),
(13211, 10752, 'en', 'name', 'Clinica Sierra Vista'),
(13212, 10753, 'no_lang_code', 'name', 'ImmuneWorks (United States)'),
(13213, 10754, 'en', 'name', 'National Institute of Population Studies'),
(13214, 10755, 'no_lang_code', 'name', 'Lumicell (United States)'),
(13215, 10756, 'no_lang_code', 'name', 'Everest Technologies (United States)'),
(13216, 10757, 'no_lang_code', 'name', 'CSK Food Enrichment (Netherlands)'),
(13217, 10758, 'no_lang_code', 'name', 'NanotecMARIN (Germany)'),
(13218, 10759, 'no_lang_code', 'name', 'Thermo Technologies (United Kingdom)'),
(13219, 10760, 'no_lang_code', 'name', 'ONA Electroerosion (Spain)'),
(13220, 10761, 'en', 'name', 'Camp Quality New Jersey'),
(13221, 10762, 'en', 'name', 'Bipartisan Policy Center'),
(13222, 10763, 'en', 'name', 'Institute of Agricultural Economics'),
(13223, 10764, 'en', 'name', 'North Country Home Health & Hospice Agency'),
(13224, 10765, 'en', 'name', 'Care India'),
(13225, 10766, 'no_lang_code', 'name', 'Color Line (Norway)'),
(13226, 10767, 'no_lang_code', 'name', 'Solvay (Italy)'),
(13227, 10768, 'en', 'name', 'Cancer Care Association Sri Lanka'),
(13228, 10769, 'en', 'name', 'Alliance for Community Research and Development'),
(13229, 10770, 'en', 'name', 'Partners In Care'),
(13230, 10771, 'en', 'name', 'Pushing Boundaries'),
(13231, 10772, 'en', 'name', 'Delmont Public Library'),
(13232, 10773, 'en', 'name', 'The Brooklyn Rail'),
(13233, 10774, 'en', 'name', 'Tulsa Economic Development Corporation'),
(13234, 10775, 'nl', 'name', 'Ministerie van de Vlaamse Gemeenschap'),
(13235, 10776, 'en', 'name', 'European rail Research Network of EXcellence'),
(13236, 10777, 'en', 'name', 'Central Asia Institute'),
(13237, 10778, 'no_lang_code', 'name', 'Arvens Technology (United States)'),
(13238, 10779, 'en', 'name', 'Community Health for Asian Americans'),
(13239, 10780, 'no_lang_code', 'name', 'DonorsChoose'),
(13240, 10781, 'en', 'name', 'Midwest Organic & Sustainable Education Service'),
(13241, 10782, 'en', 'name', 'Ride 2 Recovery'),
(13242, 10783, 'en', 'name', 'Police Service of Northern Ireland'),
(13243, 10784, 'no_lang_code', 'name', 'Curewize Health'),
(13244, 10785, 'no_lang_code', 'name', 'C2N Diagnostics (United States)'),
(13245, 10786, 'no_lang_code', 'name', 'Gasera (Finland)'),
(13246, 10787, 'de', 'name', 'Paul Ehrlich Institut, Paul-Ehrlich-Institut – Bundesinstitut für Impfstoffe und biomedizinische Arzneimittel'),
(13247, 10788, 'en', 'name', 'Indo-American Center'),
(13248, 10789, 'no_lang_code', 'name', 'Accelerated Medical Diagnostics (United States)'),
(13249, 10790, 'en', 'name', 'Institute for Language and Speech Processing'),
(13250, 10791, 'no_lang_code', 'name', 'Vinci (United Kingdom)'),
(13251, 10792, 'en', 'name', 'Institute for Transport Sciences'),
(13252, 10793, 'en', 'name', 'Common Good City Farm'),
(13253, 10794, 'en', 'name', 'Family Service League'),
(13254, 10795, 'no_lang_code', 'name', 'Magna (Austria)'),
(13255, 10796, 'en', 'name', 'Burlington School District'),
(13256, 10797, 'no_lang_code', 'name', 'Beacon Tech (Israel)'),
(13257, 10798, 'no_lang_code', 'name', 'TIE Kinetix (Netherlands)'),
(13258, 10799, 'en', 'name', 'Food System Economic Partnership'),
(13259, 10800, 'en', 'name', 'Radiophysical Research Institute'),
(13260, 10800, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ раГиофизический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(13261, 10801, 'no_lang_code', 'name', 'Smart Homes'),
(13262, 10802, 'en', 'name', 'United Nations Interregional Crime and Justice Research Institute'),
(13263, 10803, 'no_lang_code', 'name', 'Anotec Engineering (Spain)'),
(13264, 10804, 'en', 'name', 'Singleimage'),
(13265, 10805, 'no_lang_code', 'name', 'Marion Technologies (France)'),
(13266, 10806, 'en', 'name', 'Lindholmen Science Park'),
(13267, 10807, 'en', 'name', 'Larta Institute'),
(13268, 10808, 'en', 'name', 'Disabled Sailing Association of British Columbia'),
(13269, 10809, 'en', 'name', 'International Information Management Corporation'),
(13270, 10810, 'no_lang_code', 'name', 'Sinergis (Italy)'),
(13271, 10811, 'no_lang_code', 'name', 'Flexiant (United Kingdom)'),
(13272, 10812, 'es', 'name', 'Fundación Severo Ochoa'),
(13273, 10813, 'en', 'name', 'Mid Atlantic Wheelchair Athletic Association'),
(13274, 10814, 'en', 'name', 'Global and Regional Asperger Syndrome Partnership'),
(13275, 10815, 'no_lang_code', 'name', 'Watchfrog (France)'),
(13276, 10816, 'no_lang_code', 'name', 'Ikv++ Technologies (Germany)'),
(13277, 10817, 'en', 'name', 'Baltimore City Public Schools'),
(13278, 10818, 'en', 'name', 'Advanced Health Care of Aurora'),
(13279, 10819, 'en', 'name', 'ASK Childhood Cancer Foundation'),
(13280, 10820, 'en', 'name', 'Dutch Railways'),
(13281, 10820, 'no_lang_code', 'name', 'Nederlandse Spoorwegen'),
(13282, 10821, 'en', 'name', 'Jameson Memorial Hospital'),
(13283, 10822, 'no_lang_code', 'name', 'Swarco (Italy)'),
(13284, 10823, 'no_lang_code', 'name', 'PCA Engineers'),
(13285, 10824, 'en', 'name', 'Alliance of People with disAbilities'),
(13286, 10825, 'en', 'name', 'European Technology Development'),
(13287, 10826, 'no_lang_code', 'name', 'Cisco Systems (Netherlands)'),
(13288, 10827, 'no_lang_code', 'name', 'Makaha Studios (United States)'),
(13289, 10828, 'en', 'name', 'University of Colorado Health'),
(13290, 10829, 'no_lang_code', 'name', 'Vaillant (Germany)'),
(13291, 10830, 'no_lang_code', 'name', 'Bluegreen Strategy (Italy)'),
(13292, 10831, 'no_lang_code', 'name', 'TES Electronic Solutions (Germany)'),
(13293, 10832, 'en', 'name', 'Champlain Valley Physicians Hospital'),
(13294, 10833, 'en', 'name', 'Health Education Council'),
(13295, 10834, 'no_lang_code', 'name', 'KGHM Cuprum (Poland)'),
(13296, 10834, 'pl', 'name', 'KGHM Cuprum sp. z o.o. Centrum Badawczo - Rozwojowe'),
(13297, 10835, 'no_lang_code', 'name', 'IPCOS (Netherlands)'),
(13298, 10836, 'no_lang_code', 'name', 'EIM Sensor (United States)'),
(13299, 10837, 'en', 'name', 'Frantsevich Institute for Problems in Materials Science'),
(13300, 10837, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ проблем матеріалознавства ім. І.М. Францевича'),
(13301, 10838, 'no_lang_code', 'name', 'GeoVille (Austria)'),
(13302, 10839, 'es', 'name', 'Association Instituto Tecnológico MetalmecÔnico'),
(13303, 10840, 'en', 'name', 'Community Food Bank'),
(13304, 10841, 'no_lang_code', 'name', 'Firsthand Foods (United States)'),
(13305, 10842, 'en', 'name', 'Childhood Leukemia Foundation'),
(13306, 10843, 'en', 'name', 'NHS Highland'),
(13307, 10844, 'no_lang_code', 'name', 'Controlled Chemicals (United States)'),
(13308, 10845, 'en', 'name', 'Camp Twin Lakes'),
(13309, 10846, 'en', 'name', 'Des Moines University Osteopathic Medical Center'),
(13310, 10847, 'no_lang_code', 'name', 'Energy and Environmental Consultancy'),
(13311, 10848, 'en', 'name', 'Iringa Development of Youth Disabled and Children Care'),
(13312, 10849, 'no_lang_code', 'name', 'NortonLifeLock (Ireland)'),
(13313, 10850, 'en', 'name', 'Gorlin Syndrome Alliance'),
(13314, 10851, 'no_lang_code', 'name', 'ALFA PI (Greece)'),
(13315, 10852, 'en', 'name', 'Center for Independent Living'),
(13316, 10853, 'en', 'name', 'Foundation Fighting Blindness'),
(13317, 10854, 'en', 'name', 'EXPAND Beyond'),
(13318, 10855, 'en', 'name', 'Mars Society'),
(13319, 10856, 'en', 'name', 'Athens Nurses Clinic'),
(13320, 10857, 'en', 'name', 'Marine Hydrophysical Institute'),
(13321, 10858, 'en', 'name', 'New Hanover County Schools'),
(13322, 10859, 'fr', 'name', 'Centre Hospito Universitaire de SƩtif'),
(13323, 10860, 'en', 'name', 'Regional Cancer Center, Thiruvananthapuram'),
(13324, 10861, 'en', 'name', 'La Casa Norte'),
(13325, 10862, 'en', 'name', 'Newton Symphony Orchestra'),
(13326, 10863, 'no_lang_code', 'name', 'Omniox (United States)'),
(13327, 10864, 'no_lang_code', 'name', 'Ericsson (Serbia)'),
(13328, 10865, 'no_lang_code', 'name', 'Atlantia (Italy)'),
(13329, 10866, 'no_lang_code', 'name', 'I2 air fluid innovation (United States)'),
(13330, 10867, 'no_lang_code', 'name', 'Greentech (France)'),
(13331, 10868, 'no_lang_code', 'name', 'Exelis (United States)'),
(13332, 10869, 'no_lang_code', 'name', 'Smart High Tech (Sweden)'),
(13333, 10870, 'no_lang_code', 'name', 'SAIL LABS Technology (Austria)'),
(13334, 10871, 'en', 'name', 'Carolina Veterinary Specialists'),
(13335, 10872, 'en', 'name', 'Groundwork Hudson Valley'),
(13336, 10873, 'no_lang_code', 'name', 'TopGaN (Poland)'),
(13337, 10874, 'en', 'name', 'Albuquerque Area Indian Health Board'),
(13338, 10875, 'pl', 'name', 'Instytut Budownictwa Mechanizacji i Elektryfikacji Rolnictwa'),
(13339, 10876, 'no_lang_code', 'name', 'Equipos Nucleares (Spain)'),
(13340, 10877, 'en', 'name', 'Technological Centre for the Portuguese Textile and Clothing Industry'),
(13341, 10877, 'pt', 'name', 'Centro Tecnológico das Indústrias Têxtil e do VestuÔrio de Portugal'),
(13342, 10878, 'en', 'name', 'Rio Grande Valley Science Association'),
(13343, 10879, 'no_lang_code', 'name', 'Honeywell (United Kingdom)'),
(13344, 10880, 'en', 'name', 'EuroHealthNet'),
(13345, 10881, 'en', 'name', 'Polish National Energy Conservation Agency'),
(13346, 10882, 'no_lang_code', 'name', 'JRC Capital Management (Germany)'),
(13347, 10883, 'en', 'name', 'National Biodiesel Board'),
(13348, 10884, 'en', 'name', 'Menlo School'),
(13349, 10885, 'en', 'name', 'INTEGRIS Southwest Medical Center'),
(13350, 10886, 'en', 'name', 'Flathead Valley Community College'),
(13351, 10887, 'no_lang_code', 'name', 'Agilent Technologies (Belgium)'),
(13352, 10888, 'no_lang_code', 'name', 'Space Systems Finland (Finland)'),
(13353, 10889, 'en', 'name', 'OhioHealth'),
(13354, 10890, 'cy', 'name', 'Bwrdd Iechyd Lleol Hywel Dda'),
(13355, 10890, 'en', 'name', 'Hywel Dda University Health Board'),
(13356, 10891, 'no_lang_code', 'name', 'E.ON Sverige (Sweden)'),
(13357, 10892, 'en', 'name', 'Gateway Confluence Wheelchair Sports Foundation'),
(13358, 10893, 'en', 'name', 'Horizon Home Care and Hospice'),
(13359, 10894, 'no_lang_code', 'name', 'National Air Traffic Services (United Kingdom)'),
(13360, 10895, 'no_lang_code', 'name', 'GKN (Germany)'),
(13361, 10896, 'no_lang_code', 'name', 'DIAD Group (Italy)'),
(13362, 10897, 'no_lang_code', 'name', 'Net7 (Italy)'),
(13363, 10898, 'no_lang_code', 'name', 'Menck (Germany)'),
(13364, 10899, 'en', 'name', 'The Lower Eastside Girls Club'),
(13365, 10900, 'no_lang_code', 'name', 'Worm Power (United States)'),
(13366, 10901, 'fr', 'name', 'Institut de Microbiologie de la MƩditerranƩe'),
(13367, 10902, 'es', 'name', 'Fundación Universidad Empresa'),
(13368, 10903, 'no_lang_code', 'name', 'Zueblin (Germany)'),
(13369, 10904, 'no_lang_code', 'name', 'CINAR (Greece)'),
(13370, 10905, 'no_lang_code', 'name', 'OrphageniX (United States)'),
(13371, 10906, 'en', 'name', 'Kent County Health Department'),
(13372, 10907, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Switzerland)'),
(13373, 10908, 'en', 'name', 'Children''s Therapy Center'),
(13374, 10909, 'no_lang_code', 'name', 'Centro Ricerche Produzioni Animali'),
(13375, 10910, 'en', 'name', 'Make-A-Wish Foundation'),
(13376, 10911, 'en', 'name', 'Franklin County Community Development Corporation'),
(13377, 10912, 'en', 'name', 'Foundation for International Environmental Law and Development'),
(13378, 10913, 'en', 'name', 'Harlem Children''s Zone'),
(13379, 10914, 'en', 'name', 'Old Westbury Gardens'),
(13380, 10915, 'en', 'name', 'Planned Parenthood Hudson Peconic'),
(13381, 10916, 'en', 'name', 'Kohala Center'),
(13382, 10917, 'en', 'name', 'Denver Hospice'),
(13383, 10918, 'en', 'name', 'Missouri Farm Bureau'),
(13384, 10919, 'no_lang_code', 'name', 'Sirti (Italy)'),
(13385, 10920, 'no_lang_code', 'name', 'E.ON (Germany)'),
(13386, 10921, 'no_lang_code', 'name', 'GKI Economic Research (Hungary)'),
(13387, 10922, 'no_lang_code', 'name', 'Cellular Engineering Technologies (United States)'),
(13388, 10923, 'en', 'name', 'Illinois Area Health Education Center'),
(13389, 10924, 'no_lang_code', 'name', 'IRD Fuel Cells (Denmark)'),
(13390, 10925, 'no_lang_code', 'name', 'Terna (Italy)'),
(13391, 10926, 'en', 'name', 'Chapel Hill Training Outreach Project'),
(13392, 10927, 'en', 'name', 'Jewish Community Center in Manhattan'),
(13393, 10928, 'en', 'name', 'Community Servings'),
(13394, 10929, 'no_lang_code', 'name', 'General Electric (Austria)'),
(13395, 10930, 'en', 'name', 'Winer Observatory'),
(13396, 10931, 'en', 'name', 'Hartnell College'),
(13397, 10932, 'en', 'name', 'Saginaw Chippewa Indian Tribal Council'),
(13398, 10933, 'no_lang_code', 'name', 'Cientive Group (United States)'),
(13399, 10934, 'no_lang_code', 'name', 'InsectiGen (United States)'),
(13400, 10935, 'no_lang_code', 'name', 'RISA Sicherheitsanalysen'),
(13401, 10936, 'en', 'name', 'Gillette Children''s Specialty Healthcare'),
(13402, 10937, 'en', 'name', 'Baba Farid University of Health Sciences'),
(13403, 10937, 'pa', 'name', 'ਬਾਬਾ ਫਰੀਦ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ਆਫ਼ ਹੈਲ਄ ąØøąØ¾ąØ‡ą©°ąØøąØæąØœąØ¼'),
(13404, 10938, 'en', 'name', 'Cheshire Medical Center'),
(13405, 10939, 'en', 'name', 'Brain and Spinal Injury Trust Fund Commission'),
(13406, 10940, 'en', 'name', 'Texas/Mexico Border Coalition'),
(13407, 10941, 'en', 'name', 'Boston Cancer Policy Institute'),
(13408, 10942, 'en', 'name', 'Long Island Junior Soccer League'),
(13409, 10943, 'no_lang_code', 'name', 'Liebherr (France)'),
(13410, 10944, 'en', 'name', 'Catapult'),
(13411, 10945, 'no_lang_code', 'name', 'Prometheus Research (United States)'),
(13412, 10946, 'en', 'name', 'George Mark Children''s House'),
(13413, 10947, 'en', 'name', 'Sanilac Intermediate School District'),
(13414, 10948, 'en', 'name', 'Chemo Comfort'),
(13415, 10949, 'no_lang_code', 'name', 'CyberColloids'),
(13416, 10950, 'en', 'name', 'La Clinica de La Raza'),
(13417, 10951, 'no_lang_code', 'name', 'ZOZ Group (Germany)'),
(13418, 10952, 'en', 'name', 'White Plains Hospital'),
(13419, 10953, 'de', 'name', 'Fƶderaler Ɩffentlichter Dienst Informations- und Kommunikationstechnologie'),
(13420, 10953, 'en', 'name', 'Information and Communication Technology Federal Public Service'),
(13421, 10953, 'fr', 'name', 'Service Public FƩdƩral Technologie de l''Information et de la Communication'),
(13422, 10953, 'nl', 'name', 'Federal Overheidsdienst voor Informatie - en Communicatietechnologie'),
(13423, 10954, 'en', 'name', 'Elder Services of the Merrimack Valley'),
(13424, 10955, 'en', 'name', 'Patient-Centered Outcomes Research Institute'),
(13425, 10956, 'en', 'name', 'Ministry of Justice'),
(13426, 10956, 'it', 'name', 'Ministero della Giustizia'),
(13427, 10957, 'en', 'name', 'Neighborhood Health'),
(13428, 10958, 'en', 'name', 'Hosparus'),
(13429, 10959, 'no_lang_code', 'name', 'All Things Bugs (United States)'),
(13430, 10960, 'en', 'name', 'Institute for Economic Research'),
(13431, 10960, 'sl', 'name', 'InŔtitut za Ekonomska Raziskovanja'),
(13432, 10961, 'en', 'name', 'Dream Foundation'),
(13433, 10962, 'de', 'name', 'Deutsche Bundespost'),
(13434, 10962, 'en', 'name', 'German Federal Post Office'),
(13435, 10963, 'en', 'name', 'New England Disabled Sports'),
(13436, 10964, 'en', 'name', 'Caroline Church of Brookhaven'),
(13437, 10965, 'en', 'name', 'Goryeb Children''s Hospital'),
(13438, 10966, 'no_lang_code', 'name', 'Quad County Corn Processors (United States)'),
(13439, 10967, 'it', 'name', 'Fondazione Mons Arrigo Mazzali'),
(13440, 10968, 'en', 'name', 'Cancer Research And Biostatistics'),
(13441, 10969, 'en', 'name', 'Mahoning County Educational Service Center'),
(13442, 10970, 'no_lang_code', 'name', 'Cowi (Norway)'),
(13443, 10971, 'no_lang_code', 'name', 'Vermon (France)'),
(13444, 10972, 'en', 'name', 'Community Care Partners'),
(13445, 10973, 'no_lang_code', 'name', 'Agfa-Gevaert (Belgium)'),
(13446, 10974, 'en', 'name', 'United Medical Center'),
(13447, 10975, 'en', 'name', 'Patients First'),
(13448, 10976, 'en', 'name', 'Candlelighters of West Texas & Southern New Mexico'),
(13449, 10977, 'en', 'name', 'Gallery North'),
(13450, 10978, 'no_lang_code', 'name', 'Warrington Certification (United Kingdom)'),
(13451, 10979, 'no_lang_code', 'name', 'NANOfutures (Belgium)'),
(13452, 10980, 'no_lang_code', 'name', 'BLC Leather Technology Centre'),
(13453, 10981, 'no_lang_code', 'name', 'Gruppo CLAS (Italy)'),
(13454, 10982, 'no_lang_code', 'name', 'MS Biotec (United States)'),
(13455, 10983, 'no_lang_code', 'name', 'Juniper Networks (Ireland)'),
(13456, 10984, 'en', 'name', 'Balarat Outdoor Education'),
(13457, 10985, 'es', 'name', 'Centro de Investigación en Alimentación y Desarrollo'),
(13458, 10986, 'no_lang_code', 'name', 'Taylor Shellfish Farms (United States)'),
(13459, 10987, 'no_lang_code', 'name', 'Atos (France)'),
(13460, 10988, 'no_lang_code', 'name', 'Work Research Centre'),
(13461, 10989, 'en', 'name', 'Children''s Music Fund'),
(13462, 10990, 'no_lang_code', 'name', 'Pintail (Ireland)'),
(13463, 10991, 'no_lang_code', 'name', 'Green Tech Labs (United States)'),
(13464, 10992, 'en', 'name', 'ChangeLab Solutions'),
(13465, 10993, 'de', 'name', 'Entwicklungszentrum für Schiffstechnik und Transportsysteme, Versuchsanstalt für Binnenschiffbau'),
(13466, 10993, 'en', 'name', 'Development Centre for Ship Technology and Transport Systems'),
(13467, 10994, 'no_lang_code', 'name', 'Stam (Italy)'),
(13468, 10995, 'no_lang_code', 'name', 'CF consulting Finanziamenti Unione Europea'),
(13469, 10996, 'en', 'name', 'Hope Through Grace'),
(13470, 10997, 'fr', 'name', 'ComitƩ Scientifique et Technique des Industries Climatiques'),
(13471, 10998, 'en', 'name', 'For Inspiration and Recognition of Science and Technology'),
(13472, 10999, 'en', 'name', 'Challenge Alaska'),
(13473, 11000, 'en', 'name', 'Carolyn Dorfman Dance Company'),
(13474, 11001, 'no_lang_code', 'name', 'Eltropuls (United Kingdom)'),
(13475, 11002, 'en', 'name', 'Catholic Family Center'),
(13476, 11003, 'no_lang_code', 'name', 'Computerised Information Technology (United Kingdom)'),
(13477, 11004, 'no_lang_code', 'name', 'HS-Art Digital Service (Austria)'),
(13478, 11005, 'no_lang_code', 'name', 'Uni Research (Norway)'),
(13479, 11006, 'no_lang_code', 'name', 'Teks (France)'),
(13480, 11007, 'no_lang_code', 'name', 'CognIT (Norway)'),
(13481, 11008, 'en', 'name', 'Lennox-Gastaut Syndrome Foundation'),
(13482, 11009, 'no_lang_code', 'name', 'Vienna Consulting Engineers (Austria)'),
(13483, 11010, 'no_lang_code', 'name', 'Prometheus Energy (United States)'),
(13484, 11011, 'en', 'name', 'EvergreenHealth Foundation'),
(13485, 11012, 'no_lang_code', 'name', 'SGS (Netherlands)'),
(13486, 11013, 'en', 'name', 'National Advocates for Pregnant Women'),
(13487, 11014, 'en', 'name', 'Friends of the North Carolina Maritime Museum'),
(13488, 11015, 'no_lang_code', 'name', 'Pan Genome Systems (United States)'),
(13489, 11016, 'no_lang_code', 'name', 'Correanayak (Spain)'),
(13490, 11017, 'no_lang_code', 'name', 'Alstom (Switzerland)'),
(13491, 11018, 'no_lang_code', 'name', 'MEI Research (United States)'),
(13492, 11019, 'en', 'name', 'Promise Project'),
(13493, 11020, 'no_lang_code', 'name', 'Flabeg (Germany)'),
(13494, 11021, 'no_lang_code', 'name', 'Electricity Authority of Cyprus (Cyprus)'),
(13495, 11022, 'it', 'name', 'Fondazione Golgi Cenci'),
(13496, 11023, 'no_lang_code', 'name', 'AkzoNobel (Netherlands)'),
(13497, 11024, 'no_lang_code', 'name', 'Caprion (Canada)'),
(13498, 11025, 'no_lang_code', 'name', 'INTRASOFT International (Belgium)'),
(13499, 11026, 'en', 'name', 'Covenant Children''s Hospital'),
(13500, 11027, 'no_lang_code', 'name', 'Ambiente Italia (Italy)'),
(13501, 11028, 'en', 'name', 'B.P. Koirala Memorial Cancer Hospital'),
(13502, 11028, 'ne', 'name', 'ą¤¬ą„€.ą¤Ŗą„€. ą¤•ą„‹ą¤‡ą¤°ą¤¾ą¤²ą¤¾ ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤•ą„ą¤Æą¤¾ą¤Øą„ą¤øą¤° ą¤¹ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(13503, 11029, 'en', 'name', 'Pro Bono Counseling Project'),
(13504, 11030, 'en', 'name', 'Verwey Jonker Institute'),
(13505, 11031, 'no_lang_code', 'name', 'Technopolis'),
(13506, 11032, 'en', 'name', 'Cheshire Home'),
(13507, 11033, 'en', 'name', 'Bladen County Schools'),
(13508, 11034, 'no_lang_code', 'name', 'OneGift'),
(13509, 11035, 'en', 'name', 'VATT Institute for Economic Research'),
(13510, 11036, 'no_lang_code', 'name', 'Genoway (France)'),
(13511, 11037, 'no_lang_code', 'name', 'Air Liquide (Germany)'),
(13512, 11038, 'en', 'name', 'Fighting Chance'),
(13513, 11039, 'no_lang_code', 'name', 'Angimmune (United States)'),
(13514, 11040, 'en', 'name', 'Northeast Organic Farming Association of New Jersey'),
(13515, 11041, 'no_lang_code', 'name', 'Stichting Hout Research (Netherlands)'),
(13516, 11042, 'en', 'name', 'Staunton Creative Community Fund'),
(13517, 11043, 'en', 'name', 'Group For Research and Technology Exchanges'),
(13518, 11043, 'fr', 'name', 'Groupe de Recherches et d''Echanges Technologiques'),
(13519, 11044, 'en', 'name', 'MaineHealth'),
(13520, 11045, 'en', 'name', 'Brain Injury Association of Mississippi'),
(13521, 11046, 'en', 'name', 'Ability Production'),
(13522, 11047, 'en', 'name', 'Irion & Junker Project Management'),
(13523, 11047, 'no_lang_code', 'name', 'Irion and Junker Projektmanagement'),
(13524, 11048, 'en', 'name', 'Alzheimer''s Drug Discovery Foundation'),
(13525, 11049, 'no_lang_code', 'name', 'TDF (France)'),
(13526, 11050, 'no_lang_code', 'name', 'Sigma Space (United States)'),
(13527, 11051, 'en', 'name', 'Walton County School District'),
(13528, 11052, 'no_lang_code', 'name', 'Tritecc (Romania)'),
(13529, 11053, 'en', 'name', 'Penn Highlands Healthcare'),
(13530, 11054, 'en', 'name', 'Coyote Canyon Rehabilitation Center'),
(13531, 11055, 'en', 'name', 'Bhubaneswar Borooah Cancer Institute'),
(13532, 11056, 'no_lang_code', 'name', 'WLB Limited (Cyprus)'),
(13533, 11057, 'no_lang_code', 'name', 'Roal (Finland)'),
(13534, 11058, 'no_lang_code', 'name', 'InterSoft (Slovakia)'),
(13535, 11059, 'no_lang_code', 'name', 'MJC2 (United Kingdom)'),
(13536, 11060, 'en', 'name', 'Centre for Research in Engineering Surface Technology'),
(13537, 11061, 'no_lang_code', 'name', 'PreSens Precision Sensing (Germany)'),
(13538, 11062, 'no_lang_code', 'name', 'IFC Research (United Kingdom)'),
(13539, 11063, 'en', 'name', 'Deutsch Institute'),
(13540, 11064, 'no_lang_code', 'name', 'Rapita Systems (United Kingdom)'),
(13541, 11065, 'en', 'name', 'Power Paws Assistance Dogs'),
(13542, 11066, 'en', 'name', 'Mazumdar Shaw Medical Centre'),
(13543, 11067, 'no_lang_code', 'name', 'Xsens (Netherlands)'),
(13544, 11068, 'no_lang_code', 'name', 'Satways (Greece)'),
(13545, 11069, 'en', 'name', 'Ocean Classroom'),
(13546, 11070, 'no_lang_code', 'name', 'Concentration Heat and Momentum (United Kingdom)'),
(13547, 11071, 'el', 'name', 'Εταιρεία'),
(13548, 11071, 'no_lang_code', 'name', 'Materials Industrial Research and Technology Development Centre (Greece)'),
(13549, 11072, 'en', 'name', 'Society for In Vitro Biology'),
(13550, 11073, 'no_lang_code', 'name', 'Protection des MƩtaux (France)'),
(13551, 11074, 'en', 'name', 'Breckenridge Outdoor Education Center'),
(13552, 11075, 'en', 'name', 'Shipbuilders & Shiprepairers Association'),
(13553, 11076, 'en', 'name', 'Granite State Independent Living'),
(13554, 11077, 'no_lang_code', 'name', 'Ormazabal (Switzerland)'),
(13555, 11078, 'no_lang_code', 'name', 'Specim (Finland)'),
(13556, 11079, 'no_lang_code', 'name', 'Paratek Pharmaceuticals (United States)'),
(13557, 11080, 'en', 'name', 'FareStart'),
(13558, 11081, 'en', 'name', 'Emmanuel Cancer Foundation'),
(13559, 11082, 'en', 'name', 'Hospice of the Upstate'),
(13560, 11083, 'en', 'name', 'Capital of Texas Team Survivor'),
(13561, 11084, 'en', 'name', 'Conway Regional Health System'),
(13562, 11085, 'no_lang_code', 'name', 'Technosam (Romania)'),
(13563, 11086, 'en', 'name', 'HOPE European Hospital and Healthcare Federation'),
(13564, 11087, 'no_lang_code', 'name', 'L-Up'),
(13565, 11088, 'en', 'name', 'Essentia Health'),
(13566, 11089, 'no_lang_code', 'name', 'Faseroptische Systeme Messtechnik (Germany)'),
(13567, 11090, 'no_lang_code', 'name', 'Triphase (Belgium)'),
(13568, 11091, 'no_lang_code', 'name', 'Kraftanlagen (Germany)'),
(13569, 11092, 'no_lang_code', 'name', 'Axxam (Italy)'),
(13570, 11093, 'no_lang_code', 'name', 'Intertek (Sweden)'),
(13571, 11094, 'en', 'name', 'South Routt School District'),
(13572, 11095, 'no_lang_code', 'name', 'Allakos (United States)'),
(13573, 11096, 'no_lang_code', 'name', 'Planetek Italia'),
(13574, 11097, 'en', 'name', 'Institute for Nuclear Research'),
(13575, 11097, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(13576, 11098, 'en', 'name', 'Lili Claire Foundation'),
(13577, 11099, 'no_lang_code', 'name', 'Advanced Management Solutions (Greece)'),
(13578, 11100, 'en', 'name', 'Center of International Projects'),
(13579, 11100, 'ro', 'name', 'Centrul de Proiecte Internaţionale'),
(13580, 11101, 'en', 'name', 'Colorado Cattlemen''s Association'),
(13581, 11102, 'no_lang_code', 'name', 'WƤrtsilƤ (Germany)'),
(13582, 11103, 'de', 'name', 'Forschungsinstitut für schnellwachsende Baumarten'),
(13583, 11104, 'no_lang_code', 'name', 'Fluidda (United States)'),
(13584, 11105, 'no_lang_code', 'name', 'Stresstech (Finland)'),
(13585, 11106, 'en', 'name', 'Planned Parenthood Association of Liberia'),
(13586, 11107, 'en', 'name', 'Mark Codner, MD Plastic Surgery'),
(13587, 11108, 'no_lang_code', 'name', 'Prototech (Norway)'),
(13588, 11109, 'no_lang_code', 'name', 'Orgelbau Mühleisen (Germany)'),
(13589, 11110, 'no_lang_code', 'name', 'Global Security Intelligence (United Kingdom)'),
(13590, 11111, 'no_lang_code', 'name', 'Nanologica (Sweden)'),
(13591, 11112, 'no_lang_code', 'name', 'Dendritic Cell Research (India)'),
(13592, 11113, 'no_lang_code', 'name', 'Cell Machines (United States)'),
(13593, 11114, 'en', 'name', 'New Orleans Musicians Assistance Foundation'),
(13594, 11115, 'en', 'name', 'Bloomington Health Foundation'),
(13595, 11116, 'en', 'name', 'Baptist Health Foundation'),
(13596, 11117, 'en', 'name', 'St. Patrick Roman Catholic Church'),
(13597, 11118, 'en', 'name', 'Horizons Community Solutions'),
(13598, 11119, 'no_lang_code', 'name', 'Larco (Greece)'),
(13599, 11120, 'en', 'name', 'Citizens United for Research in Epilepsy'),
(13600, 11121, 'no_lang_code', 'name', 'VERO Biotech (United States)'),
(13601, 11122, 'en', 'name', 'St Mary''s Hospital'),
(13602, 11123, 'en', 'name', 'CentraState Healthcare Foundation'),
(13603, 11124, 'no_lang_code', 'name', 'Plumbline Coaching & Consulting (United States)'),
(13604, 11125, 'en', 'name', 'Parent Advocacy Coalition for Educational Rights'),
(13605, 11126, 'it', 'name', 'Fondazione Gimema Onlus'),
(13606, 11127, 'en', 'name', 'Institute of Mathematics and Informatics'),
(13607, 11128, 'en', 'name', 'iXscient'),
(13608, 11129, 'ga', 'name', 'An Garda SƭochƔna'),
(13609, 11130, 'no_lang_code', 'name', 'WhyHunger'),
(13610, 11131, 'no_lang_code', 'name', 'Biopico Systems (United States)'),
(13611, 11132, 'en', 'name', 'East Harlem Tutorial Program'),
(13612, 11133, 'en', 'name', 'Pink Ribbons Project'),
(13613, 11134, 'no_lang_code', 'name', 'Celsus Therapeutics (United Kingdom)'),
(13614, 11135, 'en', 'name', 'St. Luke''s Clinic'),
(13615, 11136, 'en', 'name', 'Los Angeles Centers for Alcohol and Drug Abuse'),
(13616, 11137, 'en', 'name', 'Afterschool Alliance'),
(13617, 11138, 'no_lang_code', 'name', 'FeyeCon (Netherlands)'),
(13618, 11139, 'no_lang_code', 'name', 'Nutrition 21 (United States)'),
(13619, 11140, 'en', 'name', 'Arms Wide Open Community Development Corporation'),
(13620, 11141, 'pt', 'name', 'Gestos'),
(13621, 11142, 'en', 'name', 'Teens Living with Cancer'),
(13622, 11143, 'en', 'name', 'Centre for Technological Research of Crete'),
(13623, 11144, 'no_lang_code', 'name', 'PE International (Germany)'),
(13624, 11145, 'no_lang_code', 'name', 'Hudson Simulation Service'),
(13625, 11146, 'no_lang_code', 'name', 'MBDA (France)'),
(13626, 11147, 'no_lang_code', 'name', 'Lantiq (Germany)'),
(13627, 11148, 'en', 'name', 'Gila Regional Medical Center'),
(13628, 11149, 'no_lang_code', 'name', 'IMIX Vision Support Systems (Netherlands)'),
(13629, 11150, 'no_lang_code', 'name', 'Glƶtzl (Germany)'),
(13630, 11151, 'en', 'name', 'Life University'),
(13631, 11152, 'no_lang_code', 'name', 'OSRAM (Germany)'),
(13632, 11153, 'no_lang_code', 'name', 'Advanced Inhalation Therapies (Israel)'),
(13633, 11154, 'no_lang_code', 'name', 'Biodel (United States)'),
(13634, 11155, 'en', 'name', 'Miracle League of Blair County'),
(13635, 11156, 'no_lang_code', 'name', 'Kiksapa Consulting (United States)'),
(13636, 11157, 'en', 'name', 'Heroes on Horseback'),
(13637, 11158, 'en', 'name', 'Institute of Cognitive and Brain Sciences'),
(13638, 11159, 'en', 'name', 'Great Northern Services'),
(13639, 11160, 'no_lang_code', 'name', 'Castle Rock Geotech (United Kingdom)'),
(13640, 11161, 'no_lang_code', 'name', 'Danone (Netherlands)'),
(13641, 11162, 'no_lang_code', 'name', 'EnBiotix (United States)'),
(13642, 11163, 'no_lang_code', 'name', 'Space (Italy)'),
(13643, 11164, 'en', 'name', 'Elizabeth City Pasquotank Public Schools'),
(13644, 11165, 'en', 'name', 'The House of Praise'),
(13645, 11166, 'en', 'name', 'Parker Jewish Institute for Health Care and Rehabilitation'),
(13646, 11167, 'en', 'name', 'United Institute of Informatics Problems'),
(13647, 11168, 'en', 'name', 'San Diego Hospice and The Institute for Palliative Medicine'),
(13648, 11169, 'no_lang_code', 'name', 'GAF AG'),
(13649, 11170, 'it', 'name', 'Azienda Sanitaria di Firenze'),
(13650, 11171, 'fr', 'name', 'HouillĆØres de Lorraine'),
(13651, 11172, 'en', 'name', 'Brunswick County Schools'),
(13652, 11173, 'no_lang_code', 'name', 'SupraPolix (Netherlands)'),
(13653, 11174, 'en', 'name', 'Institute for Washington’s Future'),
(13654, 11175, 'en', 'name', 'Dream Catchers Therapeutic Riding'),
(13655, 11176, 'en', 'name', 'Methodist Le Bonheur Healthcare'),
(13656, 11177, 'fr', 'name', 'Institut de l’Elevage'),
(13657, 11178, 'no_lang_code', 'name', 'Nedstack fuel cell technology (Netherlands)'),
(13658, 11179, 'no_lang_code', 'name', 'Vodafone (Greece)'),
(13659, 11180, 'en', 'name', 'Northeast Health'),
(13660, 11181, 'en', 'name', 'Chiricahua Community Health Centers'),
(13661, 11182, 'en', 'name', 'Leducq Foundation'),
(13662, 11182, 'fr', 'name', 'Fondation Leducq'),
(13663, 11183, 'en', 'name', 'Florida West Coast Resource Conservation and Development'),
(13664, 11184, 'en', 'name', 'Regional Health'),
(13665, 11185, 'en', 'name', 'Desert AIDS Project'),
(13666, 11186, 'en', 'name', 'Burroughs Wellcome Fund'),
(13667, 11187, 'pt', 'name', 'Fundmed Pesquisa, Ensino e Inovacao'),
(13668, 11188, 'no_lang_code', 'name', 'Rolling Hills Research (United States)'),
(13669, 11189, 'en', 'name', 'First Giving'),
(13670, 11190, 'en', 'name', 'Girls Educational and Mentoring Services'),
(13671, 11191, 'fr', 'name', 'Centre Technique de l''Industrie du Bois'),
(13672, 11192, 'no_lang_code', 'name', 'Tech4i2'),
(13673, 11193, 'en', 'name', 'McLoughlin Consulting'),
(13674, 11194, 'no_lang_code', 'name', 'Help Service - Remote Sensing (Czechia)'),
(13675, 11195, 'it', 'name', 'Fondazione Matilde Tettamanti Menotti De Marchi'),
(13676, 11196, 'en', 'name', 'Hydrogen Fuel Cells and Electro-Mobility in European Regions'),
(13677, 11197, 'en', 'name', 'Mines Rescue Service'),
(13678, 11198, 'en', 'name', 'Breathe California of Los Angeles County'),
(13679, 11199, 'en', 'name', 'Solid Ground'),
(13680, 11200, 'no_lang_code', 'name', 'Sparqle International (Netherlands)'),
(13681, 11201, 'en', 'name', 'Project Open Hand'),
(13682, 11202, 'no_lang_code', 'name', 'Sirma Group (Bulgaria)'),
(13683, 11203, 'no_lang_code', 'name', 'KeraNor (Norway)'),
(13684, 11204, 'en', 'name', 'DAWN Center for Independent Living'),
(13685, 11205, 'en', 'name', 'Centre for Community Justice and Development'),
(13686, 11206, 'no_lang_code', 'name', 'SensL (Ireland)'),
(13687, 11207, 'no_lang_code', 'name', 'Athira Pharma (United States)'),
(13688, 11208, 'en', 'name', 'Southern New Hampshire Services'),
(13689, 11209, 'en', 'name', 'Medical Center Hospital'),
(13690, 11210, 'no_lang_code', 'name', 'Exelixis (United States)'),
(13691, 11211, 'en', 'name', 'Frontier Science Foundation'),
(13692, 11212, 'no_lang_code', 'name', 'Selected Electronic Technologies (Germany)'),
(13693, 11213, 'it', 'name', 'La Forza del Silenzio'),
(13694, 11214, 'en', 'name', 'Brown County Public Health Department'),
(13695, 11215, 'en', 'name', 'Greater Kansas City Spinal Cord Injury Association'),
(13696, 11216, 'en', 'name', 'Aspen University'),
(13697, 11217, 'no_lang_code', 'name', 'Technikon (Austria)'),
(13698, 11218, 'no_lang_code', 'name', 'Optel (Poland)'),
(13699, 11219, 'en', 'name', 'Florida Technical College'),
(13700, 11220, 'pt', 'name', 'Grupo Realizar'),
(13701, 11221, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(13702, 11221, 'en', 'name', 'Ministry of Higher Education and Scientific Research'),
(13703, 11221, 'fr', 'name', 'Ministère de l''Enseignement supérieur et de la Recherche scientifique'),
(13704, 11222, 'en', 'name', 'Sam Schmidt Paralysis Foundation'),
(13705, 11223, 'en', 'name', 'Orpheus Chamber Orchestra'),
(13706, 11224, 'en', 'name', 'Eastern Oregon Center for Independent Living'),
(13707, 11225, 'en', 'name', 'Can Do Multiple Sclerosis'),
(13708, 11226, 'no_lang_code', 'name', 'Biopac (United Kingdom)'),
(13709, 11227, 'en', 'name', 'Northwest Hospital'),
(13710, 11228, 'en', 'name', 'Lexington Medical Center'),
(13711, 11229, 'no_lang_code', 'name', 'Vitrociset (Italy)'),
(13712, 11230, 'no_lang_code', 'name', 'Monocrom (Spain)'),
(13713, 11231, 'en', 'name', 'Erie Neighborhood House'),
(13714, 11232, 'no_lang_code', 'name', 'Saarstahl (Germany)'),
(13715, 11233, 'no_lang_code', 'name', 'Capital Meeting Planning'),
(13716, 11234, 'no_lang_code', 'name', 'DKI Plast (Denmark)'),
(13717, 11235, 'de', 'name', 'Wiener Wissenschafts Forschungs und Technologiefonds'),
(13718, 11235, 'en', 'name', 'Vienna Science and Technology Fund'),
(13719, 11236, 'no_lang_code', 'name', 'Oclaro (United Kingdom)'),
(13720, 11237, 'no_lang_code', 'name', 'BOC (Austria)'),
(13721, 11238, 'no_lang_code', 'name', 'Danaher (France)'),
(13722, 11239, 'no_lang_code', 'name', 'Tractebel Engineering (Belgium)'),
(13723, 11240, 'en', 'name', 'Guam Communications Network'),
(13724, 11241, 'en', 'name', 'Cathedral Health Services'),
(13725, 11242, 'no_lang_code', 'name', 'Outokumpu (Finland)'),
(13726, 11243, 'en', 'name', 'United Teen Equality Center'),
(13727, 11244, 'en', 'name', 'Breast Cancer Association Netherlands'),
(13728, 11244, 'nl', 'name', 'Borstkankervereniging Nederland'),
(13729, 11245, 'no_lang_code', 'name', 'Urban Tilth'),
(13730, 11246, 'de', 'name', 'Unabhängige Landeszentrum für Datenschutz Schleswig-Holstein'),
(13731, 11246, 'en', 'name', 'Independent Centre for Privacy Protection'),
(13732, 11247, 'no_lang_code', 'name', 'Calzoni (Italy)'),
(13733, 11248, 'en', 'name', 'Lady of the Sea General Hospital'),
(13734, 11249, 'en', 'name', 'Baikov Institute of Metallurgy and Materials Science'),
(13735, 11249, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Šø Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ им. А.А. Байкова Российской акаГемии наук'),
(13736, 11250, 'en', 'name', 'Zhejiang Energy Research Institute'),
(13737, 11250, 'zh', 'name', 'ęµ™ę±Ÿēœčƒ½ęŗē ”ē©¶ę‰€'),
(13738, 11251, 'en', 'name', 'Pisgah Astronomical Research Institute'),
(13739, 11252, 'no_lang_code', 'name', 'BMT Group (Netherlands)'),
(13740, 11253, 'no_lang_code', 'name', 'Ascepion Pharmaceuticals (China)'),
(13741, 11254, 'en', 'name', 'Netaji Subhas Chandra Bose Cancer Research Institute'),
(13742, 11255, 'no_lang_code', 'name', 'Sigma Orionis (France)'),
(13743, 11256, 'no_lang_code', 'name', 'JobTrain'),
(13744, 11257, 'en', 'name', 'Joint Muscle Medical Care and Research Institute'),
(13745, 11258, 'en', 'name', 'HCG Cancer Hospital'),
(13746, 11258, 'kn', 'name', 'ą²¹ą³†ą²²ą³ą²¤ą³ą²•ą³†ą³•ą²°ą³ ą²—ą³ą²²ą³†ą³‚ą³•ą²¬ą²²ą³ ą²Žą²‚ą²Ÿą²°ą³ą²Ŗą³ą²°ą³†ą³–ą²øą²øą³ ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(13747, 11259, 'no_lang_code', 'name', 'Contax (United States)'),
(13748, 11260, 'en', 'name', 'Eastside Technical Center'),
(13749, 11261, 'en', 'name', 'Help Hope Live'),
(13750, 11262, 'en', 'name', 'Rural Resources'),
(13751, 11263, 'es', 'name', 'FundAyuda'),
(13752, 11264, 'no_lang_code', 'name', 'Falcon Genomics (United States)'),
(13753, 11265, 'en', 'name', 'Journey''s End Refugee Services'),
(13754, 11266, 'fr', 'name', 'Institut Scientifique de Service Public'),
(13755, 11267, 'en', 'name', 'Climate Central'),
(13756, 11268, 'no_lang_code', 'name', 'iCo Therapeutics (Canada)'),
(13757, 11269, 'en', 'name', 'VASCOG Society'),
(13758, 11270, 'en', 'name', 'CARE Canada'),
(13759, 11271, 'no_lang_code', 'name', 'Hubble Telemedical (United States)'),
(13760, 11272, 'no_lang_code', 'name', 'Alluvium Biosciences (United States)'),
(13761, 11273, 'no_lang_code', 'name', 'Eutema Technology Management'),
(13762, 11274, 'no_lang_code', 'name', 'Cognisense Labs (United States)'),
(13763, 11275, 'no_lang_code', 'name', 'Martel'),
(13764, 11276, 'no_lang_code', 'name', 'Ropardo (Romania)'),
(13765, 11277, 'en', 'name', 'Autoimmunity Research Foundation'),
(13766, 11278, 'en', 'name', 'H.Buniatian Institute of Biochemistry'),
(13767, 11279, 'no_lang_code', 'name', 'BYG Systems (United Kingdom)'),
(13768, 11280, 'no_lang_code', 'name', 'Linnet Biopharmaceuticals (United States)'),
(13769, 11281, 'en', 'name', 'DC Cancer Consortium'),
(13770, 11282, 'en', 'name', 'Georgia Regents Medical Center'),
(13771, 11283, 'en', 'name', 'Mashantucket Pequot Tribal Nation'),
(13772, 11284, 'no_lang_code', 'name', 'Prolong Pharmaceuticals (United States)'),
(13773, 11285, 'en', 'name', 'Community Involved in Sustaining Agriculture'),
(13774, 11286, 'en', 'name', 'E.O. Paton Electric Welding Institute'),
(13775, 11286, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠµŠ»ŠµŠŗŃ‚Ń€Š¾Š·Š²Š°Ń€ŃŽŠ²Š°Š½Š½Ń ім.Š„.Šž.ŠŸŠ°Ń‚Š¾Š½Š°'),
(13776, 11287, 'no_lang_code', 'name', 'Hoerbiger (Sweden)'),
(13777, 11288, 'no_lang_code', 'name', 'Asher Consulting (United States)'),
(13778, 11289, 'no_lang_code', 'name', 'Compliment Corporation (United States)'),
(13779, 11290, 'en', 'name', 'Minnesota Association of Deaf Citizens'),
(13780, 11291, 'no_lang_code', 'name', 'Rio Tinto (France)'),
(13781, 11292, 'en', 'name', 'Jobs for the Future'),
(13782, 11293, 'no_lang_code', 'name', 'Gestione Sistemi per l’Informatica (Italy)'),
(13783, 11294, 'en', 'name', 'Chocowinity Primary School'),
(13784, 11295, 'no_lang_code', 'name', 'Ericsson (Netherlands)'),
(13785, 11296, 'no_lang_code', 'name', 'Teledyne Technologies (Denmark)'),
(13786, 11297, 'no_lang_code', 'name', 'Ascometal (France)'),
(13787, 11298, 'en', 'name', 'Institute of Metals and Technology'),
(13788, 11298, 'sl', 'name', 'InŔtitut za Kovinske Materiale in Tehnologije'),
(13789, 11299, 'en', 'name', 'Clear Creek Independent School District'),
(13790, 11300, 'en', 'name', 'TuBerculosis Vaccine Initiative'),
(13791, 11301, 'no_lang_code', 'name', 'Sony (Germany)'),
(13792, 11302, 'no_lang_code', 'name', 'Westscape Wholesale Nursery (United States)'),
(13793, 11303, 'en', 'name', 'Marian University - Wisconsin'),
(13794, 11304, 'en', 'name', 'Eastern Cooperative Oncology Group'),
(13795, 11305, 'en', 'name', 'Capital District Center for Independence'),
(13796, 11306, 'en', 'name', 'Central Connecticut Regional Planning Agency'),
(13797, 11307, 'no_lang_code', 'name', 'Teletel (Greece)'),
(13798, 11308, 'no_lang_code', 'name', 'Efkon (Austria)'),
(13799, 11309, 'es', 'name', 'Fundación de Estudios de Economía Aplicada'),
(13800, 11310, 'en', 'name', 'CARE International in Vietnam'),
(13801, 11311, 'no_lang_code', 'name', 'SarTec (United States)'),
(13802, 11312, 'en', 'name', 'Albany Research Institute'),
(13803, 11313, 'en', 'name', 'Pfeiffer Medical Center'),
(13804, 11314, 'no_lang_code', 'name', 'Texinov (France)'),
(13805, 11315, 'en', 'name', 'Institute of Geography'),
(13806, 11315, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географии Российской АкаГемии наук'),
(13807, 11316, 'en', 'name', 'Mitochondria Research and Medicine Society'),
(13808, 11317, 'no_lang_code', 'name', 'Mesurex (Spain)'),
(13809, 11318, 'no_lang_code', 'name', 'GVS (Italy)'),
(13810, 11319, 'en', 'name', 'Atlanta Diabetes Associates'),
(13811, 11320, 'en', 'name', 'Dalton State College'),
(13812, 11321, 'en', 'name', 'Potomac Massage Training Institute'),
(13813, 11322, 'en', 'name', 'Dwight School'),
(13814, 11323, 'en', 'name', 'Open Group'),
(13815, 11324, 'no_lang_code', 'name', 'SuGanit Systems (United States)'),
(13816, 11325, 'no_lang_code', 'name', 'Native American Cancer Initiatives (United States)'),
(13817, 11326, 'no_lang_code', 'name', 'Nutrient Recovery and Upcycling (United States)'),
(13818, 11327, 'en', 'name', 'Children''s Home and Aid'),
(13819, 11328, 'en', 'name', 'Mount Sinai Queens'),
(13820, 11329, 'en', 'name', 'Sofia Energy Centre'),
(13821, 11330, 'no_lang_code', 'name', 'Exquadrum (United States)'),
(13822, 11331, 'en', 'name', 'Semenov Institute of Chemical Physics'),
(13823, 11331, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической физики имени Š. Š. Демёнова'),
(13824, 11332, 'no_lang_code', 'name', 'AskBio (United States)'),
(13825, 11333, 'no_lang_code', 'name', 'Environmental Protection Engineering (Greece)'),
(13826, 11334, 'en', 'name', 'Baltimore Healthy Start'),
(13827, 11335, 'en', 'name', 'CAMC Health Education and Research Institute'),
(13828, 11336, 'no_lang_code', 'name', 'Sulzer (Switzerland)'),
(13829, 11337, 'no_lang_code', 'name', 'Greencore (Ireland)'),
(13830, 11338, 'en', 'name', 'Magnesium Research Institute'),
(13831, 11339, 'en', 'name', 'Kalpana Chawla Government Medical College and Hospital'),
(13832, 11339, 'hi', 'name', 'ą¤•ą¤²ą„ą¤Ŗą¤Øą¤¾ चावला ą¤—ą¤µą¤°ą„ą¤Øą¤®ą„‡ą¤‚ą¤Ÿ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ व ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(13833, 11340, 'en', 'name', 'IPM Institute of North America'),
(13834, 11341, 'no_lang_code', 'name', 'UmbraGroup (Italy)'),
(13835, 11342, 'en', 'name', 'Equal Hope'),
(13836, 11343, 'it', 'name', 'Istituto Superiore delle Comunicazioni e delle Tecnologie Dell''Informazione'),
(13837, 11344, 'en', 'name', 'Asheboro City Schools'),
(13838, 11345, 'en', 'name', 'North Shore Child & Family Guidance Center'),
(13839, 11346, 'no_lang_code', 'name', 'CSL (United States)'),
(13840, 11347, 'no_lang_code', 'name', 'Autoliv (Sweden)'),
(13841, 11348, 'no_lang_code', 'name', 'Solvay (France)'),
(13842, 11349, 'nl', 'name', 'Stichting Academisch Rekencentrum Amsterdam'),
(13843, 11349, 'no_lang_code', 'name', 'SURFsara (Netherlands)'),
(13844, 11350, 'no_lang_code', 'name', 'NeuroHealing Pharmaceuticals (United States)'),
(13845, 11351, 'en', 'name', 'Canadian Centre on Disability Studies'),
(13846, 11352, 'en', 'name', 'Alberta Cancer Foundation'),
(13847, 11353, 'en', 'name', 'Integrate Autism Employment Advisors'),
(13848, 11354, 'no_lang_code', 'name', 'Nutrasorb (United States)'),
(13849, 11355, 'no_lang_code', 'name', 'Endo Pharmaceuticals (United States)'),
(13850, 11356, 'en', 'name', 'Marshall Medical Center'),
(13851, 11357, 'no_lang_code', 'name', 'Colibri (Netherlands)'),
(13852, 11358, 'en', 'name', 'AdMeTech Foundation'),
(13853, 11359, 'no_lang_code', 'name', 'TÜV SÜD (Germany)'),
(13854, 11360, 'no_lang_code', 'name', 'Exact Sciences (United States)'),
(13855, 11361, 'en', 'name', 'Corvallis Environmental Center'),
(13856, 11362, 'no_lang_code', 'name', 'Geotek (United Kingdom)'),
(13857, 11363, 'no_lang_code', 'name', 'Internal Systems Limited (United Kingdom)'),
(13858, 11364, 'en', 'name', 'Baton Rouge General Foundation');
INSERT INTO `ror_settings` VALUES
(13859, 11365, 'no_lang_code', 'name', 'B''nai Jeshurun'),
(13860, 11366, 'no_lang_code', 'name', 'Grupo Inmark'),
(13861, 11367, 'en', 'name', 'Children''s Home Association of Illinois'),
(13862, 11368, 'no_lang_code', 'name', 'Madatech'),
(13863, 11369, 'en', 'name', 'New Pisgah Community Service Organization'),
(13864, 11370, 'en', 'name', 'Leonia United'),
(13865, 11371, 'en', 'name', 'Research Institute for Endocrine Sciences'),
(13866, 11371, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… ŲŗŲÆŲÆ ŲÆŲ±ŁˆŁ† ریز و Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŲ³Ł…'),
(13867, 11372, 'no_lang_code', 'name', 'Bio-Nucleonics (United States)'),
(13868, 11373, 'no_lang_code', 'name', 'HJ Science and Technology (United States)'),
(13869, 11374, 'no_lang_code', 'name', 'LagardĆØre (France)'),
(13870, 11375, 'no_lang_code', 'name', 'Teamwork Technology (Netherlands)'),
(13871, 11376, 'en', 'name', 'Danish Emergency Management Agency'),
(13872, 11377, 'no_lang_code', 'name', 'WWOZ'),
(13873, 11378, 'no_lang_code', 'name', 'KPN (Netherlands)'),
(13874, 11379, 'en', 'name', 'Double ARC'),
(13875, 11380, 'no_lang_code', 'name', 'Chaperone Therapeutics (United States)'),
(13876, 11381, 'en', 'name', 'Evergreen Community Charter School'),
(13877, 11382, 'en', 'name', 'Indiana Cancer Consortium'),
(13878, 11383, 'no_lang_code', 'name', 'European Transonic Windtunnel (Germany)'),
(13879, 11384, 'es', 'name', 'Ente Vasco de la EnergĆ­a'),
(13880, 11385, 'en', 'name', 'Bayhealth Foundation'),
(13881, 11386, 'en', 'name', 'Palm Beach Children''s Hospital'),
(13882, 11387, 'en', 'name', 'International Society for Biosafety Research'),
(13883, 11388, 'en', 'name', 'Institute of Hydroengineering'),
(13884, 11388, 'pl', 'name', 'Instytut Budownictwa Wodnego PAN'),
(13885, 11389, 'en', 'name', 'The Blue Hill Meteorological Observatory'),
(13886, 11390, 'no_lang_code', 'name', 'Sigmoid Pharma (Ireland)'),
(13887, 11391, 'en', 'name', 'Institute for Macromolecular Studies'),
(13888, 11391, 'it', 'name', 'Istituto per lo Studio delle Macromolecole'),
(13889, 11392, 'no_lang_code', 'name', 'Novaphos (United States)'),
(13890, 11393, 'en', 'name', 'Native American Advocacy Program'),
(13891, 11394, 'no_lang_code', 'name', 'AgSquared (United States)'),
(13892, 11395, 'en', 'name', 'Columbia County Commission on Children and Families'),
(13893, 11396, 'no_lang_code', 'name', 'Subsea Technologies (United Kingdom)'),
(13894, 11397, 'no_lang_code', 'name', 'Transportes Inovação e Sistemas (Portugal)'),
(13895, 11398, 'en', 'name', 'Golisano Foundation'),
(13896, 11399, 'no_lang_code', 'name', 'Knowledge Centre for Agriculture'),
(13897, 11400, 'no_lang_code', 'name', 'Enterprise Science and Computing (United States)'),
(13898, 11401, 'no_lang_code', 'name', 'Chr. Hansen (Denmark)'),
(13899, 11402, 'pt', 'name', 'Agencia de Inovacao, Agência Nacional de Inovação'),
(13900, 11403, 'en', 'name', 'Cultivating Community'),
(13901, 11404, 'en', 'name', 'Akbaraly Foundation'),
(13902, 11405, 'en', 'name', 'Research Institute for Knowledge Systems'),
(13903, 11406, 'no_lang_code', 'name', 'Synapse (Spain)'),
(13904, 11407, 'en', 'name', 'Statistics Finland'),
(13905, 11407, 'fi', 'name', 'Tilastokeskus'),
(13906, 11407, 'sv', 'name', 'Statistikcentralen'),
(13907, 11408, 'en', 'name', 'Ovarian Cancer National Alliance'),
(13908, 11409, 'no_lang_code', 'name', 'Forschungsgesellschaft Kraftfahrwesen Aachen (Germany)'),
(13909, 11410, 'no_lang_code', 'name', 'Paragon (Greece)'),
(13910, 11411, 'en', 'name', 'CenterState Chamber of Commerce'),
(13911, 11412, 'de', 'name', 'Deutsche Nationalbibliothek'),
(13912, 11412, 'en', 'name', 'German National Library'),
(13913, 11413, 'no_lang_code', 'name', 'Holland Institute of Traffic Technology'),
(13914, 11414, 'no_lang_code', 'name', 'Dunreidy Engneering (Ireland)'),
(13915, 11415, 'en', 'name', 'Joyce Theater'),
(13916, 11416, 'no_lang_code', 'name', 'Longevity Biotech (United States)'),
(13917, 11417, 'en', 'name', 'Blue Ridge Independent Living Center'),
(13918, 11418, 'no_lang_code', 'name', 'LNL Technology (Turkey)'),
(13919, 11419, 'en', 'name', 'Pike County Health Department'),
(13920, 11420, 'no_lang_code', 'name', 'Modern e Technologies (Lithuania)'),
(13921, 11421, 'en', 'name', 'Hurley Foundation'),
(13922, 11422, 'en', 'name', 'Euclid Network'),
(13923, 11423, 'no_lang_code', 'name', 'Philogen (Italy)'),
(13924, 11424, 'no_lang_code', 'name', 'Just Food (United States)'),
(13925, 11425, 'en', 'name', 'California Consortium of Addiction Programs and Professionals'),
(13926, 11426, 'no_lang_code', 'name', 'Inasco (Greece)'),
(13927, 11427, 'en', 'name', 'Bedford Research Foundation'),
(13928, 11428, 'en', 'name', 'Reset Therapeutics'),
(13929, 11429, 'no_lang_code', 'name', 'Space Hellas (Greece)'),
(13930, 11430, 'en', 'name', 'Institute of Molecular Biology and Pathology'),
(13931, 11430, 'it', 'name', 'Istituto di Biologia e Patologia Molecolare'),
(13932, 11431, 'en', 'name', 'Genesis Foundation'),
(13933, 11432, 'en', 'name', 'Aquarium of the Pacific'),
(13934, 11433, 'en', 'name', 'HealthRight International'),
(13935, 11434, 'es', 'name', 'Fundación Ciencia and Vida'),
(13936, 11435, 'en', 'name', 'Athletes Joined Against Spondylitis'),
(13937, 11436, 'en', 'name', 'Children''s Cancer and Blood Foundation'),
(13938, 11437, 'no_lang_code', 'name', 'IMA Materialforschung und Anwendungstechnik'),
(13939, 11438, 'no_lang_code', 'name', 'Biomarker Strategies (United States)'),
(13940, 11439, 'he', 'name', 'חברת החשמל ×œ×™×©×Ø××œ'),
(13941, 11439, 'no_lang_code', 'name', 'Israel Electric (Israel)'),
(13942, 11440, 'no_lang_code', 'name', 'Clean Plus (United States)'),
(13943, 11441, 'en', 'name', 'Walla Walla Community College'),
(13944, 11442, 'en', 'name', 'Brickhouse Equestrian Center'),
(13945, 11443, 'en', 'name', 'Attogen Biomedical Research'),
(13946, 11444, 'en', 'name', 'Open Door Family Medical Center'),
(13947, 11445, 'no_lang_code', 'name', 'Vermicon (Germany)'),
(13948, 11446, 'en', 'name', 'Multidisciplinary Association for Psychedelic Studies'),
(13949, 11447, 'no_lang_code', 'name', 'JustGive'),
(13950, 11448, 'no_lang_code', 'name', 'Smart Material (Germany)'),
(13951, 11449, 'hu', 'name', 'Orszagos Kornyezetegeszsegugyi Intezet'),
(13952, 11450, 'de', 'name', 'Biochemisches Institut für Umweltcarcinogene'),
(13953, 11451, 'en', 'name', 'BlazeSports America'),
(13954, 11452, 'no_lang_code', 'name', 'Precision BioSciences (United States)'),
(13955, 11453, 'fr', 'name', 'Centre Interprofessionnel de Techniques d''Ɖtudes de la Pollution AtmosphĆ©rique'),
(13956, 11454, 'no_lang_code', 'name', 'Tyrolit (Austria)'),
(13957, 11455, 'en', 'name', 'Epilepsy Foundation'),
(13958, 11456, 'no_lang_code', 'name', 'Innovation Pathways'),
(13959, 11457, 'no_lang_code', 'name', 'Wood Group Kenny'),
(13960, 11458, 'en', 'name', 'Treasure Valley Community College'),
(13961, 11459, 'no_lang_code', 'name', 'Avanti (United Kingdom)'),
(13962, 11460, 'en', 'name', 'Ben Archer Health Centers'),
(13963, 11461, 'no_lang_code', 'name', 'International Mining Consultants'),
(13964, 11462, 'en', 'name', 'Delaware Department of Education'),
(13965, 11463, 'no_lang_code', 'name', 'Inflammatory Response Research (United States)'),
(13966, 11464, 'en', 'name', 'Ibis Reproductive Health'),
(13967, 11465, 'no_lang_code', 'name', 'Devan (Portugal)'),
(13968, 11466, 'en', 'name', 'Cyprus Institute'),
(13969, 11467, 'en', 'name', 'Sea Europe'),
(13970, 11468, 'no_lang_code', 'name', 'COMHAR'),
(13971, 11469, 'fr', 'name', 'RƩseau Africain pour le DƩveloppement IntƩgrƩ'),
(13972, 11470, 'en', 'name', 'Institute for Clinical Social Work'),
(13973, 11471, 'en', 'name', 'Diocese of Lansing'),
(13974, 11472, 'en', 'name', 'Global Opportunities Unlimited'),
(13975, 11473, 'no_lang_code', 'name', 'Chulabhorn Hospital'),
(13976, 11473, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøˆąøøąø¬ąø²ąø ąø£ąø“ą¹Œ'),
(13977, 11474, 'en', 'name', 'Rural Community Development Resources'),
(13978, 11475, 'el', 'name', 'ĪŒĪ¼Ī¹Ī»ĪæĻ‚ Ī¤ĻƒĪ¹Ī¼Ī­Ī½Ļ„Ļ‰Ī½ Τιτάν'),
(13979, 11475, 'no_lang_code', 'name', 'Titan Cement (Greece)'),
(13980, 11476, 'no_lang_code', 'name', 'Euroimmun Medizinische Labordiagnostika (Germany)'),
(13981, 11477, 'pt', 'name', 'Fundação do Câncer'),
(13982, 11478, 'en', 'name', 'European Small Hydropower Association'),
(13983, 11479, 'en', 'name', 'Partnership for Health Analytic Research'),
(13984, 11480, 'en', 'name', 'Center for Diagnosis and Research on Alzheimer''s Disease'),
(13985, 11480, 'fr', 'name', 'Centre Diagnostique & Recherche en Alzheimer'),
(13986, 11481, 'no_lang_code', 'name', 'Environics Oy (Finland)'),
(13987, 11482, 'no_lang_code', 'name', 'Deutsche Telekom (Spain)'),
(13988, 11483, 'no_lang_code', 'name', 'Esbensen Consulting Engineers (Denmark)'),
(13989, 11484, 'no_lang_code', 'name', 'FirstString Research (United States)'),
(13990, 11485, 'no_lang_code', 'name', 'Magillem Design Services'),
(13991, 11486, 'no_lang_code', 'name', 'Digital Development Communications International (United States)'),
(13992, 11487, 'en', 'name', 'International Network for Cancer Treatment and Research'),
(13993, 11488, 'en', 'name', 'Chicago Child Care Society'),
(13994, 11489, 'en', 'name', 'Lori Arquilla Andersen Foundation'),
(13995, 11490, 'de', 'name', 'Europäische Südsternwarte'),
(13996, 11490, 'en', 'name', 'European Southern Observatory'),
(13997, 11491, 'en', 'name', 'European School of Haematology'),
(13998, 11492, 'no_lang_code', 'name', 'Insects Limited (United States)'),
(13999, 11493, 'en', 'name', 'Institute of Agrophysics, Polish Academy of Sciences'),
(14000, 11494, 'no_lang_code', 'name', 'Prairie Gold (United States)'),
(14001, 11495, 'en', 'name', 'Center for Wellness and Achievement in Education'),
(14002, 11496, 'en', 'name', 'John F. Kennedy Memorial Foundation'),
(14003, 11497, 'en', 'name', 'Soil Science and Conservation Research Institute'),
(14004, 11497, 'sk', 'name', 'Výskumný Ústav PÓdoznalectva a Ochrany PÓdy'),
(14005, 11498, 'no_lang_code', 'name', 'Grace (Germany)'),
(14006, 11499, 'en', 'name', 'Ministry of State'),
(14007, 11499, 'fr', 'name', 'MinistĆØre d''Ɖtat'),
(14008, 11500, 'no_lang_code', 'name', 'Annam Biosciences (United States)'),
(14009, 11501, 'es', 'name', 'Instituto de la Memoria Depresión y Enfermedades de Riesgo'),
(14010, 11502, 'no_lang_code', 'name', 'Hewlett-Packard (Italy)'),
(14011, 11503, 'no_lang_code', 'name', 'Nederlandse Gasunie (Netherlands)'),
(14012, 11504, 'no_lang_code', 'name', 'Tea Spot (United States)'),
(14013, 11505, 'en', 'name', 'BioFact Environmental Health Research Center'),
(14014, 11506, 'no_lang_code', 'name', 'Nokia (Netherlands)'),
(14015, 11507, 'en', 'name', 'Healthy African American Families II'),
(14016, 11508, 'no_lang_code', 'name', 'Evektor (Czechia)'),
(14017, 11509, 'fi', 'name', 'Heureka'),
(14018, 11510, 'en', 'name', 'Marian Regional Medical Center'),
(14019, 11511, 'no_lang_code', 'name', 'Kerntechnische Hilfsdienst (Germany)'),
(14020, 11512, 'no_lang_code', 'name', 'Sefar (Switzerland)'),
(14021, 11513, 'it', 'name', 'Fondazione Politecnico di Milano'),
(14022, 11514, 'no_lang_code', 'name', 'Security Technology Competence Centre'),
(14023, 11515, 'en', 'name', 'First Descents'),
(14024, 11516, 'no_lang_code', 'name', 'BioRealm (United States)'),
(14025, 11517, 'no_lang_code', 'name', 'Lionex (Germany)'),
(14026, 11518, 'no_lang_code', 'name', 'Lighting Innovation (United States)'),
(14027, 11519, 'en', 'name', 'National Academy of Sciences of the Republic of Kazakhstan'),
(14028, 11519, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ Ұлттық ғылым Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(14029, 11519, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук ŠšŠ°Š·Š°Ń…стана'),
(14030, 11520, 'en', 'name', 'Ministry of Transport'),
(14031, 11520, 'nb', 'name', 'Samferdselsdepartementet'),
(14032, 11520, 'no', 'name', 'Samferdsledepartementet'),
(14033, 11521, 'en', 'name', 'IndependenceFirst'),
(14034, 11522, 'en', 'name', 'Cultural Heritage Agency of Netherlands'),
(14035, 11522, 'nl', 'name', 'Instituut Collectie Nederland'),
(14036, 11523, 'no_lang_code', 'name', 'NeurAccel Biosciences (United States)'),
(14037, 11524, 'en', 'name', 'Federal Planning Bureau'),
(14038, 11524, 'fr', 'name', 'Bureau fƩdƩral du Plan'),
(14039, 11524, 'nl', 'name', 'Het Federaal Planbureau'),
(14040, 11525, 'en', 'name', 'Women''s Community Revitalization Project'),
(14041, 11526, 'en', 'name', 'International Alliance of ALS/MND Associations'),
(14042, 11527, 'en', 'name', 'Keiser University'),
(14043, 11528, 'en', 'name', 'Aragon Hydrogen Foundation'),
(14044, 11528, 'es', 'name', 'Fundación Hidrógeno Aragón'),
(14045, 11529, 'no_lang_code', 'name', 'Process Systems Enterprise (United Kingdom)'),
(14046, 11530, 'de', 'name', 'Nova Institut'),
(14047, 11531, 'no_lang_code', 'name', 'KickinNutrition.TV (United States)'),
(14048, 11532, 'en', 'name', 'Affinity Medical Group'),
(14049, 11533, 'ro', 'name', 'Administraţia Naţională de Meteorologie'),
(14050, 11534, 'no_lang_code', 'name', 'Altium''s (Netherlands)'),
(14051, 11535, 'no_lang_code', 'name', 'Ardeje (France)'),
(14052, 11536, 'no_lang_code', 'name', 'Euram (United Kingdom)'),
(14053, 11537, 'no_lang_code', 'name', 'Cambridge Environmental Research Consultants (United Kingdom)'),
(14054, 11538, 'no_lang_code', 'name', 'Zenon (Greece)'),
(14055, 11539, 'no_lang_code', 'name', 'Connexios (India)'),
(14056, 11540, 'es', 'name', 'Instituto CatalƔn de Tecnologƭa'),
(14057, 11541, 'en', 'name', 'Nia Association'),
(14058, 11542, 'no_lang_code', 'name', 'D2S International (Belgium)'),
(14059, 11543, 'no_lang_code', 'name', 'Rhea (Belgium)'),
(14060, 11544, 'en', 'name', 'Oklahoma Brain Tumor Foundation'),
(14061, 11545, 'no_lang_code', 'name', 'Stratec (Belgium)'),
(14062, 11546, 'no_lang_code', 'name', 'Pacific World Discovery (United States)'),
(14063, 11547, 'en', 'name', 'Aging in America'),
(14064, 11548, 'en', 'name', 'International Life Sciences Institute Europe'),
(14065, 11549, 'it', 'name', 'Istituto Nazionale per l''Assicurazione Contro gli Infortuni sul Lavoro'),
(14066, 11550, 'en', 'name', 'Association for Liberty and Equality of Gender'),
(14067, 11550, 'ro', 'name', 'Asociatia pentru libertate si egalitate de gen'),
(14068, 11551, 'no_lang_code', 'name', 'GrassRoots Biotechnology (United States)'),
(14069, 11552, 'no_lang_code', 'name', 'Quanta System (Italy)'),
(14070, 11553, 'en', 'name', 'Rocky Mountain College'),
(14071, 11554, 'en', 'name', 'Centre for European Security Strategies'),
(14072, 11555, 'en', 'name', 'National Nurses Association of Kenya'),
(14073, 11556, 'no_lang_code', 'name', 'Medtronic (Spain)'),
(14074, 11557, 'no_lang_code', 'name', 'Alfamicro (Portugal)'),
(14075, 11558, 'en', 'name', 'Norwegian Knowledge Centre for the Health Services'),
(14076, 11558, 'no', 'name', 'Nasjonalt Kunnskapssenter for Helsetjenesten'),
(14077, 11559, 'no_lang_code', 'name', 'Biosensor (Italy)'),
(14078, 11560, 'en', 'name', 'Wessex Institute of Technology'),
(14079, 11561, 'no_lang_code', 'name', 'Multi-Duti Manufacturing (United States)'),
(14080, 11562, 'en', 'name', 'National Police Services Agency'),
(14081, 11562, 'nl', 'name', 'Korps Landelijke Politiediensten'),
(14082, 11563, 'en', 'name', 'General Union of Workers'),
(14083, 11563, 'es', 'name', 'Unión General de Trabajadores'),
(14084, 11564, 'en', 'name', 'European Center for Information and Communication Technologies'),
(14085, 11565, 'es', 'name', 'Instituto Canario de Ciencias Marinas'),
(14086, 11566, 'no_lang_code', 'name', 'Solartec (Czechia)'),
(14087, 11567, 'no_lang_code', 'name', 'DormaTarg (United States)'),
(14088, 11568, 'en', 'name', 'Alleghany County Schools'),
(14089, 11569, 'en', 'name', 'New Hellenic Radio, Internet and Television'),
(14090, 11570, 'en', 'name', 'Jazz Foundation of America'),
(14091, 11571, 'en', 'name', 'Uncommon Good'),
(14092, 11572, 'en', 'name', 'Florida A&M University - Florida State University College of Engineering'),
(14093, 11573, 'en', 'name', 'Community Teamwork'),
(14094, 11574, 'en', 'name', 'Cigarette Butt Pollution Project'),
(14095, 11575, 'no_lang_code', 'name', 'Aries Scientific (United States)'),
(14096, 11576, 'en', 'name', 'Community Health and Emergency Services'),
(14097, 11577, 'en', 'name', 'Facial Plastics Surgery Associates'),
(14098, 11578, 'no_lang_code', 'name', 'Software Research and Development Consulting'),
(14099, 11579, 'no_lang_code', 'name', 'Kasiak Research (India)'),
(14100, 11580, 'no_lang_code', 'name', 'Klƶckner (Germany)'),
(14101, 11581, 'no_lang_code', 'name', 'AOA Apparatebau Gauting (Germany)'),
(14102, 11582, 'en', 'name', 'Yerevan State Medical University'),
(14103, 11582, 'hy', 'name', 'ŌµÖ€Ö‡Õ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ¢ÕŖÕ·ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(14104, 11583, 'no_lang_code', 'name', 'Remote Sensing Systems (United States)'),
(14105, 11584, 'no_lang_code', 'name', 'Hope Afloat'),
(14106, 11585, 'en', 'name', 'Colby Community College'),
(14107, 11586, 'no_lang_code', 'name', 'Stora Enso (Finland)'),
(14108, 11587, 'en', 'name', 'Avalon Nature Preserve'),
(14109, 11588, 'en', 'name', 'Dorothy Jemison Foundation for Excellence'),
(14110, 11589, 'no_lang_code', 'name', 'ASML (Netherlands)'),
(14111, 11590, 'en', 'name', 'The Recovery Center'),
(14112, 11591, 'no_lang_code', 'name', 'Immunome (United States)'),
(14113, 11592, 'en', 'name', 'First Step Foundation'),
(14114, 11593, 'it', 'name', 'Federazione delle Associazioni Scientifiche e Tecniche'),
(14115, 11594, 'en', 'name', 'Lorain County Joint Vocational School'),
(14116, 11595, 'no_lang_code', 'name', 'Belgonucleaire (Belgium)'),
(14117, 11596, 'no_lang_code', 'name', 'QPS (Austria)'),
(14118, 11597, 'no_lang_code', 'name', 'Amyndas Pharmaceuticals (United States)'),
(14119, 11598, 'no_lang_code', 'name', 'Schneider Electric (Spain)'),
(14120, 11599, 'en', 'name', 'Applied Research Institute for Prospective Technologies'),
(14121, 11600, 'no_lang_code', 'name', 'Naturalia & Biologia'),
(14122, 11601, 'no_lang_code', 'name', 'Boliden (Sweden)'),
(14123, 11602, 'no_lang_code', 'name', 'Mastercard (Belgium)'),
(14124, 11603, 'no_lang_code', 'name', 'Rübig (Austria)'),
(14125, 11604, 'en', 'name', 'Combined Community Action'),
(14126, 11605, 'no_lang_code', 'name', 'Tofwerk (Switzerland)'),
(14127, 11606, 'en', 'name', 'Hellenic Foundation for European and Foreign Policy'),
(14128, 11607, 'en', 'name', 'Prince George''s County Health Department'),
(14129, 11608, 'en', 'name', 'Chapel Haven Schleifer Center'),
(14130, 11609, 'en', 'name', 'Center on Race, Poverty and the Environment'),
(14131, 11610, 'no_lang_code', 'name', 'AFRY (Austria)'),
(14132, 11611, 'en', 'name', 'Pathway School'),
(14133, 11612, 'no_lang_code', 'name', 'OHB (Italy)'),
(14134, 11613, 'en', 'name', 'Earth Learning'),
(14135, 11614, 'en', 'name', 'Mille Lacs Band of Ojibwe'),
(14136, 11615, 'en', 'name', 'Aunt Martha’s Health and Wellness'),
(14137, 11616, 'en', 'name', 'Northern Nevada Children''s Cancer Foundation'),
(14138, 11617, 'es', 'name', 'Instituto Andaluz de TecnologĆ­a'),
(14139, 11618, 'no_lang_code', 'name', 'Roche (Italy)'),
(14140, 11619, 'no_lang_code', 'name', 'Granta Design (United Kingdom)'),
(14141, 11620, 'en', 'name', 'Land For Good'),
(14142, 11621, 'no_lang_code', 'name', 'Harley-Davidson (United States)'),
(14143, 11622, 'en', 'name', 'Fatebenefratelli Hospital'),
(14144, 11622, 'it', 'name', 'Ospedale San Giovanni Calibita Fatebenefratelli'),
(14145, 11623, 'no_lang_code', 'name', 'Genias Benelux (Netherlands)'),
(14146, 11624, 'no_lang_code', 'name', 'Webraska (France)'),
(14147, 11625, 'en', 'name', 'Crossroads Community Hospital'),
(14148, 11626, 'en', 'name', 'New Mexico Mathematics, Engineering, and Science Achievement'),
(14149, 11627, 'no_lang_code', 'name', 'Modern Meadow (United States)'),
(14150, 11628, 'no_lang_code', 'name', 'Youngstown Neighborhood Development Corporation (United States)'),
(14151, 11629, 'no_lang_code', 'name', 'Ilva (Italy)'),
(14152, 11630, 'no_lang_code', 'name', 'Innovative Orbital Design (United States)'),
(14153, 11631, 'en', 'name', 'Bhagwan Mahaveer Cancer Hospital and Research Centre'),
(14154, 11632, 'en', 'name', 'CancerCare'),
(14155, 11633, 'no_lang_code', 'name', 'Ocean Era (United States)'),
(14156, 11634, 'en', 'name', 'Bay Area Community Health Advisory Council'),
(14157, 11635, 'no_lang_code', 'name', 'Logistics Management Institute (United States)'),
(14158, 11636, 'en', 'name', 'Community Medical Center'),
(14159, 11637, 'no_lang_code', 'name', 'One River Grants (United States)'),
(14160, 11638, 'en', 'name', 'Astella Development'),
(14161, 11639, 'no_lang_code', 'name', 'Solvay (Germany)'),
(14162, 11640, 'en', 'name', 'Mercer County Health Department'),
(14163, 11641, 'en', 'name', 'Institute for Magnetospheric Physics'),
(14164, 11642, 'de', 'name', 'VDEh-Betriebsforschungsinstitut'),
(14165, 11643, 'no_lang_code', 'name', 'SKF (Netherlands)'),
(14166, 11644, 'en', 'name', 'All Out Adventures'),
(14167, 11645, 'no_lang_code', 'name', 'Europäisches Centrum für Mechatronik (Germany)'),
(14168, 11646, 'en', 'name', 'Astraea Lesbian Foundation For Justice'),
(14169, 11647, 'en', 'name', 'Resource Foundation'),
(14170, 11648, 'en', 'name', 'DeKalb County Health Department'),
(14171, 11649, 'en', 'name', 'National 4-H Council'),
(14172, 11650, 'en', 'name', 'Hertz Foundation'),
(14173, 11651, 'no_lang_code', 'name', 'GlycoMimetics (United States)'),
(14174, 11652, 'en', 'name', 'Institute of Neurological Sciences'),
(14175, 11652, 'it', 'name', 'Istituto di Scienze Neurologiche'),
(14176, 11653, 'en', 'name', 'Child Protection Network'),
(14177, 11654, 'en', 'name', 'European Forum for Good Clinical Practice'),
(14178, 11655, 'en', 'name', 'Cancer Alliance of Naples'),
(14179, 11656, 'en', 'name', 'Innocence Project'),
(14180, 11657, 'no_lang_code', 'name', '4Cs Breeding Technologies (United States)'),
(14181, 11658, 'es', 'name', 'HM Hospitales'),
(14182, 11659, 'no_lang_code', 'name', 'Intellicell Biosciences (United States)'),
(14183, 11660, 'en', 'name', 'Little Angels Early Childhood Center'),
(14184, 11661, 'no_lang_code', 'name', 'LivaNova (Italy)'),
(14185, 11662, 'en', 'name', 'Laboratory for Personalized Molecular Medicine'),
(14186, 11663, 'en', 'name', 'C. Thomas Clagett, Jr. Memorial Clinic and Regatta'),
(14187, 11664, 'en', 'name', 'Move United'),
(14188, 11665, 'en', 'name', 'Jannus'),
(14189, 11666, 'en', 'name', 'Nuestras Raices'),
(14190, 11667, 'no_lang_code', 'name', 'Finovatis (France)'),
(14191, 11668, 'en', 'name', 'National Center for Disease Control and Public Health'),
(14192, 11668, 'ka', 'name', 'įƒ“įƒįƒįƒ•įƒįƒ“įƒ”įƒ‘įƒįƒ—įƒ įƒ™įƒįƒœįƒ¢įƒ įƒįƒšįƒ˜įƒ”įƒ įƒ“įƒ įƒ”įƒįƒ–įƒįƒ’įƒįƒ“įƒįƒ”įƒ‘įƒ įƒ˜įƒ•įƒ˜ įƒÆįƒįƒœįƒ›įƒ įƒ—įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜'),
(14193, 11669, 'no_lang_code', 'name', 'Prana Biotechnology (Australia)'),
(14194, 11670, 'no_lang_code', 'name', 'Genedata (Switzerland)'),
(14195, 11671, 'en', 'name', 'Cancer Patients Alliance for Clinical Trials & Survivorship'),
(14196, 11672, 'no_lang_code', 'name', 'National Center for Defense Manufacturing and Machining (United States)'),
(14197, 11673, 'en', 'name', 'College Opportunity Resources for Education'),
(14198, 11674, 'de', 'name', 'Verein Deutscher Zementwerke'),
(14199, 11674, 'en', 'name', 'German Cement Works Association'),
(14200, 11675, 'en', 'name', 'Cape Fear Museum'),
(14201, 11676, 'en', 'name', 'National Alliance on Mental Illness'),
(14202, 11677, 'en', 'name', 'Chippewa County Health Department'),
(14203, 11678, 'en', 'name', 'Emilio Nares Foundation'),
(14204, 11679, 'en', 'name', 'Legacy of Legends Foundation'),
(14205, 11680, 'en', 'name', 'EmpowerTech'),
(14206, 11681, 'en', 'name', 'LIFE/RUN Center for Independent Living'),
(14207, 11682, 'en', 'name', 'Clay County Health Department'),
(14208, 11683, 'en', 'name', 'Empire State Honey Producers Association'),
(14209, 11684, 'en', 'name', 'Chapters Health System'),
(14210, 11685, 'no_lang_code', 'name', 'Digital Dispatch (Finland)'),
(14211, 11686, 'no_lang_code', 'name', 'Fugro (Norway)'),
(14212, 11687, 'en', 'name', 'Addario Lung Cancer Medical Institute'),
(14213, 11688, 'bs', 'name', 'Prirodnjacki Muzej Crne Gore'),
(14214, 11688, 'en', 'name', 'Natural History Museum of Montenegro'),
(14215, 11689, 'en', 'name', 'Center for Research on the Changing Earth System'),
(14216, 11690, 'no_lang_code', 'name', 'Julia Group'),
(14217, 11691, 'en', 'name', 'Irv and Shellys Fresh Picks'),
(14218, 11692, 'no_lang_code', 'name', 'Pemaquid Oyster Company (United States)'),
(14219, 11693, 'en', 'name', 'CRDF Global'),
(14220, 11694, 'en', 'name', 'CHRISTUS St. Michael Health System'),
(14221, 11695, 'no_lang_code', 'name', 'Permafuels (United States)'),
(14222, 11696, 'no_lang_code', 'name', 'Fincantieri (Italy)'),
(14223, 11697, 'en', 'name', 'Recirculating Farms Coalition'),
(14224, 11698, 'no_lang_code', 'name', 'Innovative Space Propulsion Systems (United States)'),
(14225, 11699, 'no_lang_code', 'name', 'Link Consulting'),
(14226, 11700, 'en', 'name', 'Gathering 4 Gardner'),
(14227, 11701, 'no_lang_code', 'name', 'Airial Conseil (France)'),
(14228, 11702, 'en', 'name', 'Coalition for Compassionate Care of California'),
(14229, 11703, 'en', 'name', 'Illinois Valley Ear Nose and Throat'),
(14230, 11704, 'en', 'name', 'Port Jefferson Lions Club'),
(14231, 11705, 'en', 'name', 'Hospital District of Helsinki and Uusimaa'),
(14232, 11705, 'fi', 'name', 'Helsingin ja Uudenmaan Sairaanhoitopiiri'),
(14233, 11706, 'no_lang_code', 'name', 'Q Free (Norway)'),
(14234, 11707, 'no_lang_code', 'name', 'SAES Group (Italy)'),
(14235, 11708, 'en', 'name', 'NextStep Fitness'),
(14236, 11709, 'no_lang_code', 'name', 'Takara (Sweden)'),
(14237, 11710, 'en', 'name', 'Ohio Pain Initiative'),
(14238, 11711, 'no_lang_code', 'name', 'Symphony Technology (United States)'),
(14239, 11712, 'no_lang_code', 'name', 'NCC (Sweden)'),
(14240, 11713, 'en', 'name', 'Camp Aldersgate'),
(14241, 11714, 'en', 'name', 'AISECT University'),
(14242, 11714, 'hi', 'name', 'ą¤†ą¤ˆą¤øą„‡ą¤•ą„ą¤Ÿ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(14243, 11715, 'en', 'name', 'NEOMED Institute'),
(14244, 11716, 'it', 'name', 'Agenzia per l''Italia Digitale'),
(14245, 11717, 'en', 'name', 'Helping Hand Society'),
(14246, 11718, 'no_lang_code', 'name', 'Safran (Belgium)'),
(14247, 11719, 'en', 'name', 'Childline South Africa'),
(14248, 11720, 'en', 'name', 'Pine Belt Mental Healthcare Resources'),
(14249, 11721, 'en', 'name', 'American Phytopathological Society'),
(14250, 11722, 'no_lang_code', 'name', 'ON Semiconductor (Belgium)'),
(14251, 11723, 'no_lang_code', 'name', 'Empresa de Desenvolvimento Mineiro (Portugal)'),
(14252, 11724, 'en', 'name', 'Gaston County Schools'),
(14253, 11725, 'en', 'name', 'City Parks Foundation'),
(14254, 11726, 'no_lang_code', 'name', '3C Cattle Feeders (United States)'),
(14255, 11727, 'no_lang_code', 'name', 'Biogas and Electric (United States)'),
(14256, 11728, 'en', 'name', 'Institute for Sociology'),
(14257, 11728, 'hu', 'name', 'MTA TÔrsadalomtudomÔnyi Kutatóközpont Szociológiai Intézet'),
(14258, 11729, 'de', 'name', 'Verein Deutscher Ingenieure'),
(14259, 11729, 'en', 'name', 'Association of German Engineers'),
(14260, 11730, 'en', 'name', 'Bombay College of Pharmacy'),
(14261, 11731, 'en', 'name', 'New York Collaborates for Autism'),
(14262, 11732, 'no_lang_code', 'name', 'Siempelkamp (Germany)'),
(14263, 11733, 'en', 'name', 'Florida Agriculture in the Classroom'),
(14264, 11734, 'en', 'name', 'Parents With A Purpose'),
(14265, 11735, 'no_lang_code', 'name', 'Schunk (Germany)'),
(14266, 11736, 'en', 'name', 'No Wooden Nickels'),
(14267, 11737, 'no_lang_code', 'name', 'Mb Air Systems (United Kingdom)'),
(14268, 11738, 'no_lang_code', 'name', 'Ajat (Finland)'),
(14269, 11739, 'no_lang_code', 'name', 'Exactheat (United States)'),
(14270, 11740, 'en', 'name', 'Legal Clinic for the Disabled'),
(14271, 11741, 'no_lang_code', 'name', 'BCT (Germany)'),
(14272, 11742, 'en', 'name', 'JD Breast Cancer Foundation'),
(14273, 11743, 'hu', 'name', 'Bethesda GyermekkórhÔz, MagyarorszÔgi ReformÔtus EgyhÔz Bethesda GyermekkórhÔza'),
(14274, 11744, 'es', 'name', 'Centro de Información y Desarrollo de la Mujer'),
(14275, 11745, 'no_lang_code', 'name', 'GTD (Spain)'),
(14276, 11746, 'no_lang_code', 'name', 'ZF Friedrichshafen (Germany)'),
(14277, 11747, 'en', 'name', 'Horry County Schools'),
(14278, 11748, 'no_lang_code', 'name', 'Synopsys (Germany)'),
(14279, 11749, 'en', 'name', 'World Foundation for Medical Research and Prevention'),
(14280, 11750, 'en', 'name', 'Maine Organic Farmers and Gardeners Association'),
(14281, 11751, 'en', 'name', 'Adaptive Adventures'),
(14282, 11752, 'en', 'name', 'Leather Technological Center'),
(14283, 11752, 'pt', 'name', 'Centro Tecnológico das Indústrias do Couro'),
(14284, 11753, 'en', 'name', 'Piraeus Port Authority'),
(14285, 11754, 'en', 'name', 'Halleck Creek Ranch'),
(14286, 11755, 'en', 'name', 'Heartland Head Start'),
(14287, 11756, 'en', 'name', 'Health Alliance International'),
(14288, 11757, 'no_lang_code', 'name', 'AOS Products (United Kingdom)'),
(14289, 11758, 'en', 'name', 'Health Promotion Council'),
(14290, 11759, 'no_lang_code', 'name', 'Alpha Thames Subsea (United Kingdom)'),
(14291, 11760, 'no_lang_code', 'name', 'Venezia Tecnologie (Italy)'),
(14292, 11761, 'en', 'name', 'Elizabethtown Community Hospital'),
(14293, 11762, 'en', 'name', 'FRIDA The Young Feminist Fund'),
(14294, 11763, 'en', 'name', 'Mount Hagen Provincial Hospital'),
(14295, 11764, 'en', 'name', 'Breast and GYN Health Project'),
(14296, 11765, 'no_lang_code', 'name', 'TetraPlan'),
(14297, 11766, 'en', 'name', 'Hope House Ministries'),
(14298, 11767, 'en', 'name', 'Bay Clinic'),
(14299, 11768, 'en', 'name', 'Stone Barns Center for Food & Agriculture'),
(14300, 11769, 'en', 'name', 'MaineGeneral Medical Center'),
(14301, 11770, 'es', 'name', 'Centro EspaƱol de Metrologƭa'),
(14302, 11771, 'en', 'name', 'PathStone'),
(14303, 11772, 'en', 'name', 'Colorado Consortium for Earth and Space Science Education'),
(14304, 11773, 'en', 'name', 'Amsterdam Nursing Home'),
(14305, 11774, 'no_lang_code', 'name', 'AccuDava (United States)'),
(14306, 11775, 'en', 'name', 'Institute for Environmental Protection and Research'),
(14307, 11775, 'it', 'name', 'Istituto Superiore per la Protezione e la Ricerca Ambientale'),
(14308, 11776, 'no_lang_code', 'name', 'Earth Networks (United States)'),
(14309, 11777, 'no_lang_code', 'name', 'RAG Aktiengesellschaft (Germany)'),
(14310, 11778, 'no_lang_code', 'name', 'Innovision (Denmark)'),
(14311, 11779, 'no_lang_code', 'name', 'Follica (United States)'),
(14312, 11780, 'no_lang_code', 'name', 'Pennsylvania Center for Beef Excellence'),
(14313, 11781, 'en', 'name', 'Southern Ute Community Action Programs'),
(14314, 11782, 'no_lang_code', 'name', 'Brain Tools (United States)'),
(14315, 11783, 'no_lang_code', 'name', 'Liebherr (Germany)'),
(14316, 11784, 'no_lang_code', 'name', 'Carnival Corporation (United Kingdom)'),
(14317, 11785, 'no_lang_code', 'name', 'Bombardier (Germany)'),
(14318, 11786, 'no_lang_code', 'name', 'BioEnergetics (United States)'),
(14319, 11787, 'en', 'name', 'Ministry of Agricultural, Food and Forestry Policies'),
(14320, 11787, 'it', 'name', 'Ministero delle Politiche Agricole, Alimentari e Forestali'),
(14321, 11788, 'en', 'name', 'Ministry of Science'),
(14322, 11788, 'hr', 'name', 'Ministarstvo nauke'),
(14323, 11789, 'no_lang_code', 'name', 'WƤrtsilƤ (Switzerland)'),
(14324, 11790, 'no_lang_code', 'name', 'Technology and Management Services (Switzerland)'),
(14325, 11791, 'en', 'name', 'Rehabilitation Institute of Kansas City'),
(14326, 11792, 'no_lang_code', 'name', 'AurimMed (United States)'),
(14327, 11793, 'en', 'name', 'Ivano-Frankivsk National Medical University'),
(14328, 11793, 'uk', 'name', 'Івано-Š¤Ń€Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(14329, 11794, 'en', 'name', 'Industrial Economics Institute'),
(14330, 11794, 'fr', 'name', 'Institut d''Ɖconomie Industrielle'),
(14331, 11795, 'en', 'name', 'Live Healthy DeKalb County'),
(14332, 11796, 'no_lang_code', 'name', 'Dyadic (Netherlands)'),
(14333, 11797, 'no_lang_code', 'name', 'Olink Bioscience (Sweden)'),
(14334, 11798, 'en', 'name', 'Long Island Association'),
(14335, 11799, 'no_lang_code', 'name', 'Archetypon'),
(14336, 11800, 'en', 'name', 'Advanced ENT and Allergy'),
(14337, 11801, 'en', 'name', 'Republican Oncological Clinical Dispensary'),
(14338, 11801, 'ru', 'name', 'Республиканский клинический онкологический Гиспансер'),
(14339, 11802, 'en', 'name', 'Ashe Memorial Hospital'),
(14340, 11803, 'en', 'name', 'Linking Employment, Abilities and Potential'),
(14341, 11804, 'en', 'name', 'NorthEast Ohio Neighborhood Health Services'),
(14342, 11805, 'en', 'name', 'Al Shehab institution for Comprehensive Development'),
(14343, 11806, 'en', 'name', 'AmeriCares'),
(14344, 11807, 'fr', 'name', 'Association Shifa des Maladies NeuroMusculaires'),
(14345, 11808, 'en', 'name', 'Pennsylvania Horticultural Society'),
(14346, 11809, 'en', 'name', 'Gibson Area Hospital and Health Services'),
(14347, 11810, 'en', 'name', 'Whittier Street Health Center'),
(14348, 11811, 'es', 'name', 'Sociedad Española de Automóviles de Turismo'),
(14349, 11811, 'no_lang_code', 'name', 'Seat (Spain)'),
(14350, 11812, 'en', 'name', 'Living Independently Now Center'),
(14351, 11813, 'en', 'name', 'Chez Panisse Restaurant and Cafe'),
(14352, 11814, 'no_lang_code', 'name', 'GenXPro (Germany)'),
(14353, 11815, 'en', 'name', 'French Institute of Textiles and Clothing'),
(14354, 11815, 'fr', 'name', 'Institut FranƧais du Textile et de l''Habillement'),
(14355, 11816, 'pt', 'name', 'Agencia para a Modernizacao Administrativa'),
(14356, 11817, 'pt', 'name', 'Lisboa E-Nova - AgĆŖncia Municipal de Energia e Ambiente'),
(14357, 11818, 'no_lang_code', 'name', 'PrimeTel (Cyprus)'),
(14358, 11819, 'en', 'name', 'Girls on the Run of Central Illinois'),
(14359, 11820, 'en', 'name', 'Hendrick Medical Center'),
(14360, 11821, 'en', 'name', 'Orange County Public Schools'),
(14361, 11822, 'no_lang_code', 'name', 'NDT Consultants (United Kingdom)'),
(14362, 11823, 'no_lang_code', 'name', 'Star Roses and Plants (United States)'),
(14363, 11824, 'en', 'name', 'Aquinas College - Michigan'),
(14364, 11825, 'en', 'name', 'International Anesthesia Research Society'),
(14365, 11826, 'en', 'name', 'Bike and Build'),
(14366, 11827, 'en', 'name', 'Cooke School and Institute'),
(14367, 11828, 'no_lang_code', 'name', 'In2 Search Interfaces Development (United Kingdom)'),
(14368, 11829, 'en', 'name', 'Institute of Software Systems'),
(14369, 11829, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ програмних систем'),
(14370, 11830, 'en', 'name', 'Lincoln Parish School Board'),
(14371, 11831, 'en', 'name', 'Cancer Resource Centers of Mendocino County'),
(14372, 11832, 'en', 'name', 'Angelic Organics Learning Center'),
(14373, 11833, 'no_lang_code', 'name', 'Volkswagen Group (Czechia)'),
(14374, 11834, 'en', 'name', 'Parkland Foundation'),
(14375, 11835, 'no_lang_code', 'name', 'Smithers Rapra (United Kingdom)'),
(14376, 11836, 'en', 'name', 'New England Anti-Vivisection Society'),
(14377, 11837, 'en', 'name', 'Collections Trust'),
(14378, 11838, 'en', 'name', 'Guardian Angel Homes'),
(14379, 11839, 'en', 'name', 'Punjab Technical University'),
(14380, 11839, 'pa', 'name', 'ਪੰਜਾਬ ąØŸą©ˆąØ•ąØØą©€ąØ•ąØ² ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(14381, 11840, 'en', 'name', 'ProMedica Russell J. Ebeid Children''s Hospital'),
(14382, 11841, 'no_lang_code', 'name', 'LivaNova (France)'),
(14383, 11842, 'en', 'name', 'Dean Health Systems'),
(14384, 11843, 'no_lang_code', 'name', 'Teleport Sachsen-Anhalt'),
(14385, 11844, 'no_lang_code', 'name', 'Harmon Brook Farm (United States)'),
(14386, 11845, 'no_lang_code', 'name', 'Holmes Halls Processors (United Kingdom)'),
(14387, 11846, 'en', 'name', 'Wayne County Regional Educational Service Agency'),
(14388, 11847, 'en', 'name', 'Research Institute of the Finnish Economy'),
(14389, 11848, 'en', 'name', 'Science Center of Iowa'),
(14390, 11849, 'no_lang_code', 'name', 'Abertis Infraestructuras (Spain)'),
(14391, 11850, 'no_lang_code', 'name', 'Slot Consulting'),
(14392, 11851, 'no_lang_code', 'name', 'NXP (Germany)'),
(14393, 11852, 'no_lang_code', 'name', 'Melissa Food'),
(14394, 11853, 'en', 'name', 'The Wildlife Society'),
(14395, 11854, 'en', 'name', 'AutismCare Nepal Society'),
(14396, 11855, 'no_lang_code', 'name', 'Tova Industries (United States)'),
(14397, 11856, 'no_lang_code', 'name', 'Sims Brothers (United States)'),
(14398, 11857, 'en', 'name', 'Swedish Institute of Steel Construction'),
(14399, 11858, 'no_lang_code', 'name', 'Institut de Soudure'),
(14400, 11859, 'no_lang_code', 'name', 'Space Environment Technologies (United States)'),
(14401, 11860, 'no_lang_code', 'name', 'Grado Zero Espace (Italy)'),
(14402, 11861, 'es', 'name', 'Ayuntamiento de Madrid'),
(14403, 11862, 'en', 'name', 'HOPE Clinic'),
(14404, 11863, 'no_lang_code', 'name', 'Spectral Sciences (United States)'),
(14405, 11864, 'en', 'name', 'Mission Children''s Hospital'),
(14406, 11865, 'en', 'name', 'Regional Energy and Environment Egency'),
(14407, 11865, 'fr', 'name', 'RhƓnalpƩnergie Environnement'),
(14408, 11866, 'en', 'name', 'North Fork Breast Health Coalition'),
(14409, 11867, 'en', 'name', 'Alpine Learning Group'),
(14410, 11868, 'no_lang_code', 'name', 'Ɩssur (Iceland)'),
(14411, 11869, 'de', 'name', 'Forschungszentrum Telekommunikation Wien'),
(14412, 11869, 'en', 'name', 'Telecommunications Research Center Vienna'),
(14413, 11870, 'en', 'name', 'Illinois Stewardship Alliance'),
(14414, 11871, 'en', 'name', 'Goodwill of Orange County'),
(14415, 11872, 'no_lang_code', 'name', 'Stab Vida (Portugal)'),
(14416, 11873, 'en', 'name', 'St. Francis Medical Center'),
(14417, 11874, 'en', 'name', 'Boonshoft Museum of Discovery'),
(14418, 11875, 'no_lang_code', 'name', 'Figo (Netherlands)'),
(14419, 11876, 'no_lang_code', 'name', 'Procter & Gamble (Belgium)'),
(14420, 11877, 'en', 'name', 'Children''s Health & Research Foundation'),
(14421, 11878, 'en', 'name', 'Central Institute for the Union Catalogue of Italian Libraries and for Bibliographic Information'),
(14422, 11878, 'it', 'name', 'Istituto Centrale per il Catalogo Unico delle Biblioteche Italiane e per le Informazioni Bibliografiche'),
(14423, 11879, 'no_lang_code', 'name', 'Ericsson (Italy)'),
(14424, 11880, 'en', 'name', 'Space Frontier Foundation'),
(14425, 11881, 'en', 'name', 'Northeast Organic Farming Association of New York'),
(14426, 11882, 'en', 'name', 'Madrid Institute for Advanced Studies'),
(14427, 11883, 'en', 'name', 'American Association of Neuropathologists'),
(14428, 11884, 'en', 'name', 'Jewish Hospital and St. Mary''s HealthCare'),
(14429, 11885, 'en', 'name', 'Trust IT Services'),
(14430, 11886, 'en', 'name', 'Organic Seed Alliance'),
(14431, 11887, 'no_lang_code', 'name', 'Reflective X Ray Optics'),
(14432, 11888, 'no_lang_code', 'name', 'DuPont (Norway)'),
(14433, 11889, 'no_lang_code', 'name', 'Trialog (France)'),
(14434, 11890, 'en', 'name', 'Latvian State Institute of Wood Chemistry'),
(14435, 11891, 'en', 'name', 'Spinal Cord Injury Alberta'),
(14436, 11892, 'no_lang_code', 'name', 'Genesis Biotechnologies (United States)'),
(14437, 11893, 'en', 'name', 'Mediterranean Agronomic Institute of Bari'),
(14438, 11893, 'it', 'name', 'Istituto Agronomico Mediterraneo di Bari'),
(14439, 11894, 'no_lang_code', 'name', 'ITPEnergised Group (United Kingdom)'),
(14440, 11895, 'en', 'name', 'National Institute for Pure and Applied Mathematics'),
(14441, 11895, 'pt', 'name', 'Instituto Nacional de MatemƔtica Pura e Aplicada'),
(14442, 11896, 'en', 'name', 'Practical Farmers of Iowa'),
(14443, 11897, 'en', 'name', 'Mercy Care Foundation'),
(14444, 11897, 'es', 'name', 'Fundación Mercy Care'),
(14445, 11898, 'en', 'name', 'Boat People SOS'),
(14446, 11899, 'en', 'name', 'New York Sustainable Agriculture Working Group'),
(14447, 11900, 'en', 'name', 'Jefferson University Hospitals'),
(14448, 11901, 'en', 'name', 'McDowell County Schools'),
(14449, 11902, 'en', 'name', 'Long Beach Unified School District'),
(14450, 11902, 'es', 'name', 'Distrito Escolar Unificado de Long Beach'),
(14451, 11903, 'no_lang_code', 'name', 'Biothera (United States)'),
(14452, 11904, 'no_lang_code', 'name', 'Ibeo Automotive Systems (Germany)'),
(14453, 11905, 'no_lang_code', 'name', 'Safibra (Czechia)'),
(14454, 11906, 'no_lang_code', 'name', 'Tecnitest (Spain)'),
(14455, 11907, 'en', 'name', 'Planned Parenthood of Metropolitan Washington'),
(14456, 11908, 'en', 'name', 'Global AIDS Interfaith Alliance'),
(14457, 11909, 'no_lang_code', 'name', 'Belden (United Kingdom)'),
(14458, 11910, 'no_lang_code', 'name', 'GMI Aero (France)'),
(14459, 11911, 'no_lang_code', 'name', 'PV Crystalox Solar (United Kingdom)'),
(14460, 11912, 'en', 'name', 'Cape Fear Valley Health System'),
(14461, 11913, 'en', 'name', 'Gifts to Share'),
(14462, 11914, 'en', 'name', 'Coastal Steward Long Island'),
(14463, 11915, 'no_lang_code', 'name', 'GeoVantage (United States)'),
(14464, 11916, 'no_lang_code', 'name', 'Honeywell (Czechia)'),
(14465, 11917, 'en', 'name', 'City Bar Justice Center'),
(14466, 11918, 'en', 'name', 'Cancer Institute of New South Wales'),
(14467, 11919, 'de', 'name', 'Ɩsterreichische Energieagentur'),
(14468, 11919, 'en', 'name', 'Austrian Energy Agency'),
(14469, 11920, 'en', 'name', 'Calhoun County Health Department'),
(14470, 11921, 'en', 'name', 'Foundation for Rehabilitation Equipment and Endowment'),
(14471, 11922, 'en', 'name', 'Ministry of Internal Affairs'),
(14472, 11922, 'ro', 'name', 'Ministerul Afacerilor Interne'),
(14473, 11923, 'en', 'name', 'Arts For Life'),
(14474, 11924, 'it', 'name', 'Servizio sanitario dell''Emilia-Romagna'),
(14475, 11925, 'en', 'name', 'Centers for New Horizons'),
(14476, 11926, 'en', 'name', 'Centre for Social Innovation'),
(14477, 11927, 'en', 'name', 'AIDS Community Research Consortium'),
(14478, 11928, 'en', 'name', 'Royal Scientific Society'),
(14479, 11929, 'en', 'name', 'DeWitt County Human Resource Center'),
(14480, 11930, 'en', 'name', 'AdventHealth Gordon'),
(14481, 11931, 'en', 'name', 'Girlstart'),
(14482, 11932, 'en', 'name', 'Janus Youth Programs'),
(14483, 11933, 'it', 'name', 'Centro Tessile Cotoniero e Abbigliamento'),
(14484, 11934, 'en', 'name', 'Aguilas El Ambiente'),
(14485, 11934, 'es', 'name', 'Asamblea Gay Unida Impactando Latinos A Superarse'),
(14486, 11935, 'en', 'name', 'European Business and Innovation Centre Network'),
(14487, 11936, 'en', 'name', 'Research Institute of Pomology and Floriculture'),
(14488, 11937, 'en', 'name', 'Home for Little Wanderers'),
(14489, 11938, 'en', 'name', 'Homes for Our Troops'),
(14490, 11939, 'no_lang_code', 'name', 'Institute of Mechanics of Materials and Geostructures'),
(14491, 11940, 'en', 'name', 'Institute of Economics of the Polish Academy of Sciences'),
(14492, 11940, 'pl', 'name', 'Instytut Nauk Ekonomicznych'),
(14493, 11941, 'en', 'name', 'OSF Saint Francis Foundation'),
(14494, 11942, 'en', 'name', 'Reconstruction of a Survivor'),
(14495, 11943, 'en', 'name', 'American India Foundation'),
(14496, 11944, 'no_lang_code', 'name', 'Procter & Gamble (United Kingdom)'),
(14497, 11945, 'no_lang_code', 'name', 'PT Inovação e Sistemas (Portugal)'),
(14498, 11946, 'en', 'name', 'Institute of Biochemistry and Genetics of Ufa Scientific Centre'),
(14499, 11946, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø генетики'),
(14500, 11947, 'en', 'name', 'Italian Confederation of Workers'' Trade Unions'),
(14501, 11947, 'it', 'name', 'Confederazione Italiana Sindacati Lavoratori'),
(14502, 11948, 'no_lang_code', 'name', 'Photon Systems (United States)'),
(14503, 11949, 'en', 'name', 'Calhoun Conservation District'),
(14504, 11950, 'no_lang_code', 'name', 'Spectra-Physics (Austria)'),
(14505, 11951, 'no_lang_code', 'name', 'Aixtron (Germany)'),
(14506, 11952, 'no_lang_code', 'name', 'Corbus Pharmaceuticals (United States)'),
(14507, 11953, 'no_lang_code', 'name', 'World Centric (United States)'),
(14508, 11954, 'en', 'name', 'Lincoln Center for the Performing Arts'),
(14509, 11955, 'en', 'name', 'Latvian Council of Science'),
(14510, 11956, 'no_lang_code', 'name', 'Ƙrsted (Denmark)'),
(14511, 11957, 'no_lang_code', 'name', 'Sally Ride Science (United States)'),
(14512, 11958, 'en', 'name', 'Parelli Foundation'),
(14513, 11959, 'no_lang_code', 'name', 'Audi (Germany)'),
(14514, 11960, 'no_lang_code', 'name', 'Triumph Adler (Germany)'),
(14515, 11961, 'en', 'name', 'Institute of Theoretical and Applied Mechanics'),
(14516, 11961, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø приклаГной механики им. Š”.А. Єристиановича Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(14517, 11962, 'no_lang_code', 'name', 'PharmaBioSource (United States)'),
(14518, 11963, 'en', 'name', 'Hawkeye Community College'),
(14519, 11964, 'no_lang_code', 'name', 'Quantis (Switzerland)'),
(14520, 11965, 'no_lang_code', 'name', 'Mediterranean Broadband Infrastructure (Italy)'),
(14521, 11966, 'it', 'name', 'Texclubtec'),
(14522, 11967, 'no_lang_code', 'name', 'Expedeon (Germany)'),
(14523, 11968, 'en', 'name', 'Prosperity Gardens'),
(14524, 11969, 'en', 'name', 'Lucas County Board of Developmental Disabilities'),
(14525, 11970, 'en', 'name', 'European Neuro Muscular Centre'),
(14526, 11971, 'no_lang_code', 'name', 'Exergia, Energy, Management and Information Technology'),
(14527, 11972, 'no_lang_code', 'name', 'C5•6 Technologies (United States)'),
(14528, 11973, 'no_lang_code', 'name', 'ArcelorMittal (Luxembourg)'),
(14529, 11974, 'no_lang_code', 'name', 'Hagar International'),
(14530, 11975, 'en', 'name', 'Cookeville Regional Medical Center'),
(14531, 11976, 'en', 'name', 'Gulu Women with Disabilities Union'),
(14532, 11977, 'en', 'name', 'Gorge Grown Food Network'),
(14533, 11978, 'en', 'name', 'British Hydromechanics Research Group'),
(14534, 11979, 'en', 'name', 'Capital Area Human Services'),
(14535, 11980, 'en', 'name', 'Chicago Association of Black Social Workers'),
(14536, 11981, 'no_lang_code', 'name', 'Carmeq (Germany)'),
(14537, 11982, 'en', 'name', 'DĆ­a de la Mujer Latina'),
(14538, 11983, 'no_lang_code', 'name', 'Renewable Spirits (United States)'),
(14539, 11984, 'en', 'name', 'Caribbean Environmental Health Institute'),
(14540, 11985, 'no_lang_code', 'name', 'Heusch Boesefeldt (Germany)'),
(14541, 11986, 'no_lang_code', 'name', 'Exact Dynamics (Netherlands)'),
(14542, 11987, 'en', 'name', 'Guangzhou Institutes of Biomedicine and Health'),
(14543, 11987, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¹æå·žē”Ÿē‰©åŒ»čÆäøŽå„åŗ·ē ”ē©¶é™¢'),
(14544, 11988, 'es', 'name', 'Hospital Nacional de NiƱos Bloom'),
(14545, 11989, 'en', 'name', 'Fitzgibbon Hospital'),
(14546, 11990, 'no_lang_code', 'name', 'Trenitalia (Italy)'),
(14547, 11991, 'no_lang_code', 'name', 'Sigint Solutions (Cyprus)'),
(14548, 11992, 'no_lang_code', 'name', 'Hella (Germany)'),
(14549, 11993, 'no_lang_code', 'name', 'Attana (Sweden)'),
(14550, 11994, 'no_lang_code', 'name', 'Dose Safety (United States)'),
(14551, 11995, 'en', 'name', 'Californians for Disability Rights'),
(14552, 11996, 'en', 'name', 'Institutes of Science and Development'),
(14553, 11996, 'zh', 'name', 'ē§‘ęŠ€ęˆ˜ē•„å’ØčÆ¢ē ”ē©¶é™¢'),
(14554, 11997, 'fr', 'name', 'Association Robert DebrƩ'),
(14555, 11998, 'no_lang_code', 'name', 'Impel Neuropharma (United States)'),
(14556, 11999, 'fi', 'name', 'Turku Science Park'),
(14557, 12000, 'no_lang_code', 'name', 'Inno (Germany)'),
(14558, 12001, 'no_lang_code', 'name', 'Analysis and Monitoring of Environmental Risk'),
(14559, 12002, 'no_lang_code', 'name', 'Visual Tools (Spain)'),
(14560, 12003, 'en', 'name', 'Juvenile Myelomonocytic Leukemia Foundation'),
(14561, 12004, 'en', 'name', 'Valenciaport Foundation'),
(14562, 12004, 'es', 'name', 'Fundación Valenciaport'),
(14563, 12005, 'en', 'name', 'Equestrian Aid Foundation'),
(14564, 12006, 'en', 'name', 'East Texas Baptist University'),
(14565, 12007, 'en', 'name', 'Institute of Flight'),
(14566, 12008, 'no_lang_code', 'name', 'Winrock International (United States)'),
(14567, 12009, 'en', 'name', 'Genetic Research Institute of the Desert'),
(14568, 12010, 'pt', 'name', 'Hospital SĆ£o Vicente'),
(14569, 12011, 'en', 'name', 'GeoHazards International'),
(14570, 12012, 'no_lang_code', 'name', 'ITI (United Kingdom)'),
(14571, 12013, 'no_lang_code', 'name', 'GreenWood Resources (United States)'),
(14572, 12014, 'en', 'name', 'Emergency Services College'),
(14573, 12014, 'fi', 'name', 'Pelastusopisto'),
(14574, 12015, 'en', 'name', 'Law and Advocacy for Women in Uganda'),
(14575, 12016, 'no_lang_code', 'name', 'Geoprobe (United States)'),
(14576, 12017, 'no_lang_code', 'name', 'DiaSorin (Ireland)'),
(14577, 12018, 'en', 'name', 'Boys & Girls Clubs of America'),
(14578, 12019, 'en', 'name', 'American College of Sports Medicine'),
(14579, 12020, 'en', 'name', 'United States Satellite Laboratory'),
(14580, 12021, 'en', 'name', 'New Media Studio'),
(14581, 12022, 'en', 'name', 'CHRISTUS Spohn Hospital Corpus Christi - Memorial'),
(14582, 12023, 'no_lang_code', 'name', 'iRepertoire (United States)'),
(14583, 12024, 'en', 'name', 'California Aquatic Therapy and Wellness Center'),
(14584, 12025, 'en', 'name', 'Burn Institute'),
(14585, 12026, 'en', 'name', 'Center for Courageous Kids'),
(14586, 12027, 'en', 'name', 'Institute of Genetic and Biomedical Research'),
(14587, 12027, 'it', 'name', 'Istituto di Ricerca Genetica e Biomedica'),
(14588, 12028, 'en', 'name', 'International Automobile Federation'),
(14589, 12028, 'fr', 'name', 'FƩdƩration Internationale de l''Automobile'),
(14590, 12029, 'no_lang_code', 'name', 'Zachrome (United Kingdom)'),
(14591, 12030, 'no_lang_code', 'name', 'Endesa (Spain)'),
(14592, 12031, 'no_lang_code', 'name', 'Marrone Bio Innovations (United States)'),
(14593, 12032, 'no_lang_code', 'name', 'Colorobbia (Italy)'),
(14594, 12033, 'en', 'name', 'Life Goes On-Home Improvement'),
(14595, 12034, 'en', 'name', 'California FarmLink'),
(14596, 12035, 'en', 'name', 'Energy Center of Wisconsin'),
(14597, 12036, 'no_lang_code', 'name', 'Minerva Consulting and Communication'),
(14598, 12037, 'no_lang_code', 'name', 'CCS Global Group'),
(14599, 12038, 'en', 'name', 'Las Animas Helping Hands'),
(14600, 12039, 'en', 'name', 'Massachusetts School Nurse Research Network'),
(14601, 12040, 'en', 'name', 'ORT France'),
(14602, 12041, 'en', 'name', 'Human Resources Development Institute'),
(14603, 12042, 'en', 'name', 'Ohio Aerospace Institute'),
(14604, 12043, 'no_lang_code', 'name', 'e2e Materials (United States)'),
(14605, 12044, 'no_lang_code', 'name', 'EV Group (Austria)'),
(14606, 12045, 'en', 'name', 'All-Ukrainian Charitable Foundation Coalition of HIV-Service Organizations');
INSERT INTO `ror_settings` VALUES
(14607, 12046, 'no_lang_code', 'name', 'Bombardier (Sweden)'),
(14608, 12047, 'no_lang_code', 'name', 'Transferzentrum Mikroelektronik (Germany)'),
(14609, 12048, 'no_lang_code', 'name', 'JB Life Sciences (United States)'),
(14610, 12049, 'en', 'name', 'Christine M. Kleinert Institute'),
(14611, 12050, 'en', 'name', 'Highland Council'),
(14612, 12051, 'en', 'name', 'Novokuznetsk State Institute of Advanced Medical Education'),
(14613, 12051, 'ru', 'name', 'ŠŠ¾Š²Š¾ŠŗŃƒŠ·Š½ŠµŃ†ŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŃŠ¾Š²ŠµŃ€ŃˆŠµŠ½ŃŃ‚Š²Š¾Š²Š°Š½ŠøŃ врачей'),
(14614, 12052, 'no_lang_code', 'name', 'Metroeconomica (United Kingdom)'),
(14615, 12053, 'no_lang_code', 'name', 'Melt Organic (United States)'),
(14616, 12054, 'no_lang_code', 'name', 'Satra (United Kingdom)'),
(14617, 12055, 'no_lang_code', 'name', 'Cyntelix (Netherlands)'),
(14618, 12056, 'no_lang_code', 'name', 'LISA laser products (Germany)'),
(14619, 12057, 'no_lang_code', 'name', 'SCITEK Consultants (United Kingdom)'),
(14620, 12058, 'no_lang_code', 'name', 'Amplitude SystĆØmes (France)'),
(14621, 12059, 'en', 'name', 'Family Health Center of Worcester'),
(14622, 12060, 'no_lang_code', 'name', 'Software (Spain)'),
(14623, 12061, 'en', 'name', 'In The Meantime Men’s Group'),
(14624, 12062, 'no_lang_code', 'name', 'Papenmeier (Germany)'),
(14625, 12063, 'en', 'name', 'ErinoakKids Centre for Treatment and Development'),
(14626, 12064, 'en', 'name', 'British Columbia Easter Seals Society for Children with Disabilities'),
(14627, 12065, 'en', 'name', 'Memorial Foundation'),
(14628, 12066, 'no_lang_code', 'name', '3M (France)'),
(14629, 12067, 'no_lang_code', 'name', 'Softeco Sismat (Italy)'),
(14630, 12068, 'en', 'name', 'University of Virginia Hospital'),
(14631, 12069, 'en', 'name', 'No Barriers Youth'),
(14632, 12070, 'en', 'name', 'East Georgia Cancer Coalition'),
(14633, 12071, 'en', 'name', 'National Space Grant Foundation'),
(14634, 12072, 'en', 'name', 'ENT and Allergy Associates of Florida'),
(14635, 12073, 'en', 'name', 'Technical Education Research Centers'),
(14636, 12074, 'no_lang_code', 'name', 'SolarPrint (Ireland)'),
(14637, 12075, 'en', 'name', 'Living Beyond Breast Cancer'),
(14638, 12076, 'no_lang_code', 'name', 'Triplan (Italy)'),
(14639, 12077, 'no_lang_code', 'name', 'Campden BRI (Hungary)'),
(14640, 12078, 'en', 'name', 'The Harris Center for Mental Health and IDD'),
(14641, 12079, 'en', 'name', 'Ohio''s Hospice of Dayton'),
(14642, 12080, 'en', 'name', 'Cris Collinsworth ProScan Fund'),
(14643, 12081, 'no_lang_code', 'name', 'Ian Catling Consultancy'),
(14644, 12082, 'no_lang_code', 'name', 'NCC (Denmark)'),
(14645, 12083, 'no_lang_code', 'name', 'AITIA International (Hungary)'),
(14646, 12084, 'no_lang_code', 'name', 'DunavNET (Serbia)'),
(14647, 12085, 'en', 'name', 'Eastern Shore of Virginia Broadband Authority'),
(14648, 12086, 'en', 'name', 'Guards of The Earth and The Vulnerable'),
(14649, 12087, 'en', 'name', 'Institute of Scientific and Technological Research in Aeronautics and Mechanical Engineering'),
(14650, 12088, 'el', 'name', '΄πουργείο Ī ĪæĪ»Ī¹Ļ„Ī¹ĻƒĪ¼ĪæĻ και Ī‘ĪøĪ»Ī·Ļ„Ī¹ĻƒĪ¼ĪæĻ'),
(14651, 12088, 'en', 'name', 'Hellenic Ministry of Culture and Sports'),
(14652, 12089, 'en', 'name', 'Center for Health Consultation and Community Development'),
(14653, 12089, 'vi', 'name', 'Trung tĆ¢m tʰ vįŗ„n sức khį»e vĆ  phĆ”t triển cį»™ng đồng'),
(14654, 12090, 'no_lang_code', 'name', 'Gisat (Czechia)'),
(14655, 12091, 'no_lang_code', 'name', 'Afraxis (United States)'),
(14656, 12092, 'en', 'name', 'Mission Health'),
(14657, 12093, 'en', 'name', 'Israel Cancer Association USA'),
(14658, 12094, 'en', 'name', 'The Food Trust'),
(14659, 12095, 'no_lang_code', 'name', 'Domain Therapeutics (France)'),
(14660, 12096, 'no_lang_code', 'name', 'Intermarine (Italy)'),
(14661, 12097, 'en', 'name', 'CLIC Sargent'),
(14662, 12098, 'en', 'name', 'Chelsea and Westminster Hospital NHS Foundation Trust'),
(14663, 12099, 'en', 'name', 'Erikson Institute'),
(14664, 12100, 'en', 'name', 'Michigan Food & Farming Systems'),
(14665, 12101, 'no_lang_code', 'name', 'M.C. Townsend Associates (United States)'),
(14666, 12102, 'en', 'name', 'California Prostitutes Education Project'),
(14667, 12103, 'en', 'name', 'Greater Lansing Food Bank'),
(14668, 12104, 'no_lang_code', 'name', 'Rockfield (United Kingdom)'),
(14669, 12105, 'no_lang_code', 'name', 'Applied GeoSolutions (United States)'),
(14670, 12106, 'en', 'name', 'Holy Redeemer'),
(14671, 12107, 'en', 'name', 'MemorialCare Health System'),
(14672, 12108, 'no_lang_code', 'name', 'Vergnet (France)'),
(14673, 12109, 'no_lang_code', 'name', 'Cibus (United States)'),
(14674, 12110, 'en', 'name', 'Breast Cancer Resource Centre of Austin'),
(14675, 12111, 'en', 'name', 'Intertribal Agriculture Council'),
(14676, 12112, 'en', 'name', 'Clark Family Breast Cancer Services'),
(14677, 12113, 'en', 'name', 'Institute for Culture and Ecology'),
(14678, 12114, 'en', 'name', 'Adena Health System'),
(14679, 12115, 'en', 'name', 'National Mining Hall of Fame and Museum'),
(14680, 12116, 'no_lang_code', 'name', 'Liberty Media (United States)'),
(14681, 12117, 'en', 'name', 'Georgia Canines for Independence'),
(14682, 12118, 'pl', 'name', 'Instytut Kolejnictwa'),
(14683, 12119, 'no_lang_code', 'name', 'Bioneer (Denmark)'),
(14684, 12120, 'no_lang_code', 'name', 'Argos Therapeutics (United States)'),
(14685, 12121, 'no_lang_code', 'name', 'Biotrend (Portugal)'),
(14686, 12122, 'no_lang_code', 'name', 'VIC Technology Venture Development (United States)'),
(14687, 12123, 'en', 'name', 'Coming Home Connection'),
(14688, 12124, 'de', 'name', 'Gesellschaft für Fertigungstechnik und Entwicklung'),
(14689, 12125, 'no_lang_code', 'name', 'Mariskone (Spain)'),
(14690, 12126, 'no_lang_code', 'name', 'Forgital (Italy)'),
(14691, 12127, 'no_lang_code', 'name', 'Alpha Cancer Technologies'),
(14692, 12128, 'en', 'name', 'Brain Injury Association of Louisiana'),
(14693, 12129, 'en', 'name', 'Icelandic Meteorological Office'),
(14694, 12130, 'en', 'name', 'Butte County Office of Education'),
(14695, 12131, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© و Ų§Ł„ŲŖŁƒŁˆŁŠŁ† Ų§Ł„Ł…Ł‡Ł†ŁŠ و Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ و البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(14696, 12131, 'fr', 'name', 'MinistĆØre de l''Ɖducation Nationale, de la Formation Professionnelle, de l''Enseignement SupĆ©rieur et de la Recherche Scientifique'),
(14697, 12132, 'en', 'name', 'Maine Farmland Trust'),
(14698, 12133, 'no_lang_code', 'name', 'Telekom Austria'),
(14699, 12134, 'en', 'name', 'Dellon Institutes for Peripheral Nerve Surgery'),
(14700, 12135, 'en', 'name', 'Jupiter Medical Center'),
(14701, 12136, 'ro', 'name', 'Institutul de Cercetari Electrotehnice'),
(14702, 12137, 'en', 'name', 'Disabled Athlete Sports Association'),
(14703, 12138, 'en', 'name', 'Pacific Crest Trail Association'),
(14704, 12139, 'no_lang_code', 'name', 'IdMind (Portugal)'),
(14705, 12140, 'en', 'name', 'Nevada Cancer Research Foundation'),
(14706, 12141, 'no_lang_code', 'name', 'Galilaeus (Finland)'),
(14707, 12142, 'en', 'name', 'Cancer Association of Anderson'),
(14708, 12143, 'en', 'name', 'Bittersweet Farms'),
(14709, 12144, 'no_lang_code', 'name', 'TRW Automotive (Germany)'),
(14710, 12145, 'en', 'name', 'Geographical Institute'),
(14711, 12145, 'hu', 'name', 'FöldrajztudomÔnyi Kutatóintézet'),
(14712, 12146, 'en', 'name', 'National Society of Genetic Counselors'),
(14713, 12147, 'no_lang_code', 'name', 'Smith-Root (United States)'),
(14714, 12148, 'de', 'name', 'Institut für Textil- und Verfahrenstechnik Denkendorf'),
(14715, 12148, 'en', 'name', 'Institute of Textile Technology and Process Engineering'),
(14716, 12149, 'en', 'name', 'HOPE Organization'),
(14717, 12150, 'en', 'name', 'Children’s Clinics'),
(14718, 12151, 'en', 'name', 'Hope Chest for Breast Cancer'),
(14719, 12152, 'no_lang_code', 'name', 'e GEOS (Italy)'),
(14720, 12153, 'en', 'name', 'Institute for Global Environmental Strategies'),
(14721, 12154, 'en', 'name', 'Leicester City Council'),
(14722, 12155, 'en', 'name', 'Felicita and Enrico Bignaschi and Sons Foundation'),
(14723, 12155, 'it', 'name', 'Fondazione Bignaschi'),
(14724, 12156, 'en', 'name', 'John Paul II Medical Research Institute'),
(14725, 12157, 'no_lang_code', 'name', 'Prometeia (Italy)'),
(14726, 12158, 'en', 'name', 'Cancer Support Center'),
(14727, 12159, 'en', 'name', 'Center for Rural Affairs'),
(14728, 12160, 'en', 'name', 'Community Action Duluth'),
(14729, 12161, 'no_lang_code', 'name', 'Elecnor (Spain)'),
(14730, 12162, 'en', 'name', 'Alkaptonuria Society'),
(14731, 12163, 'en', 'name', 'North Bay Cancer Alliance'),
(14732, 12164, 'no_lang_code', 'name', 'Grind For Life (United States)'),
(14733, 12165, 'no_lang_code', 'name', 'Smartex (Italy)'),
(14734, 12166, 'en', 'name', 'CASA for Kids'),
(14735, 12167, 'en', 'name', 'Care 2 Tri'),
(14736, 12168, 'no_lang_code', 'name', 'Nereus Life Sciences (United States)'),
(14737, 12169, 'en', 'name', 'Park Nicollet Clinic'),
(14738, 12170, 'en', 'name', 'Life Rolls On Foundation'),
(14739, 12171, 'en', 'name', 'Light and Salt Association'),
(14740, 12172, 'no_lang_code', 'name', 'Siena Biotech (Italy)'),
(14741, 12173, 'no_lang_code', 'name', 'ADispell (United States)'),
(14742, 12174, 'en', 'name', 'Aurora St. Luke''s Medical Center'),
(14743, 12175, 'no_lang_code', 'name', 'M&I/Partners'),
(14744, 12176, 'en', 'name', 'Museum of Aviation'),
(14745, 12177, 'it', 'name', 'Regione Campania'),
(14746, 12178, 'no_lang_code', 'name', 'Hybrid Catalysis (Netherlands)'),
(14747, 12179, 'no_lang_code', 'name', 'STMicroelectronics (Belgium)'),
(14748, 12180, 'nl', 'name', 'Louis Bolk Instituut'),
(14749, 12181, 'en', 'name', 'Women Food and Agriculture Network'),
(14750, 12182, 'no_lang_code', 'name', 'IntuiLab (France)'),
(14751, 12183, 'en', 'name', 'Kentucky Court of Justice'),
(14752, 12184, 'no_lang_code', 'name', 'Technobiochip (Italy)'),
(14753, 12185, 'no_lang_code', 'name', 'Cepsa (Spain)'),
(14754, 12186, 'en', 'name', 'Cancer and Chronic Disease Consortium'),
(14755, 12187, 'en', 'name', 'International Management Institute'),
(14756, 12188, 'en', 'name', 'Partners for Cancer Care and Prevention'),
(14757, 12189, 'en', 'name', 'Cincinnati Observatory'),
(14758, 12190, 'en', 'name', 'St. Luke''s Children''s Hospital'),
(14759, 12191, 'en', 'name', 'Clinica de Pneumologie Iaşi'),
(14760, 12192, 'cs', 'name', 'Český Metrologický Institut'),
(14761, 12192, 'en', 'name', 'Czech Metrology Institute'),
(14762, 12193, 'en', 'name', 'Council On Aging of Central Oregon'),
(14763, 12194, 'no_lang_code', 'name', 'Scenic Valley Farms'),
(14764, 12195, 'en', 'name', 'Institute of Nanotechnology'),
(14765, 12196, 'no_lang_code', 'name', 'CESI (Italy)'),
(14766, 12197, 'no_lang_code', 'name', 'Deutsche Telekom (Poland)'),
(14767, 12198, 'no_lang_code', 'name', 'NexImmune (United States)'),
(14768, 12199, 'no_lang_code', 'name', 'Mosaic'),
(14769, 12200, 'pt', 'name', 'Projecto Desenvolvimento Manutenção Formação e Consultadoria'),
(14770, 12201, 'en', 'name', 'Global Abilities Foundation'),
(14771, 12202, 'no_lang_code', 'name', 'Sopra (France)'),
(14772, 12203, 'en', 'name', 'Building Blocks Learning Academy'),
(14773, 12204, 'nl', 'name', 'Veiligheids- en Gezondheidsregio Gelderland-Midden'),
(14774, 12205, 'en', 'name', 'Research and Production Association Typhoon'),
(14775, 12206, 'no_lang_code', 'name', 'Janus Biotherapeutics (United States)'),
(14776, 12207, 'no_lang_code', 'name', 'Synthema (Italy)'),
(14777, 12208, 'en', 'name', 'Adagio Health'),
(14778, 12209, 'no_lang_code', 'name', 'SoftBank Robotics (France)'),
(14779, 12210, 'en', 'name', 'Hope Worldwide Monterrey'),
(14780, 12211, 'no_lang_code', 'name', 'Hoosier Cancer Research Network (United States)'),
(14781, 12212, 'no_lang_code', 'name', 'Argus Umweltbiotechnologie (Germany)'),
(14782, 12213, 'no_lang_code', 'name', 'Micronit Microfluidics (Netherlands)'),
(14783, 12214, 'no_lang_code', 'name', 'Downstream Strategies (United States)'),
(14784, 12215, 'en', 'name', 'Advanced Cancer Therapeutics'),
(14785, 12216, 'no_lang_code', 'name', 'Greenwood Clean Energy (United States)'),
(14786, 12217, 'en', 'name', 'Food Bank of North Alabama'),
(14787, 12218, 'no_lang_code', 'name', 'Courtagen Life Sciences (United States)'),
(14788, 12219, 'en', 'name', 'International Center for Agricultural Research in the Dry Areas'),
(14789, 12220, 'no_lang_code', 'name', 'Anacapa Sciences (United States)'),
(14790, 12221, 'en', 'name', 'Community Health Development'),
(14791, 12222, 'en', 'name', 'Children''s Aid Society'),
(14792, 12223, 'en', 'name', 'Nathan Adelson Hospice'),
(14793, 12224, 'en', 'name', 'NAACP Legal Defense and Educational Fund'),
(14794, 12225, 'en', 'name', 'Sama Resource Group for Women and Health'),
(14795, 12226, 'en', 'name', 'Susan G. Komen Breast Cancer Foundation'),
(14796, 12227, 'en', 'name', 'Florida Institute for Human and Machine Cognition'),
(14797, 12228, 'en', 'name', 'Casting for Recovery'),
(14798, 12229, 'en', 'name', 'Center for Pan Asian Community Services'),
(14799, 12230, 'en', 'name', 'Gateways Hospital and Mental Health Center'),
(14800, 12231, 'en', 'name', 'Macoupin County Public Health Department'),
(14801, 12232, 'no_lang_code', 'name', 'Xenics (Belgium)'),
(14802, 12233, 'en', 'name', 'Northeast Florida Healthy Start Coalition'),
(14803, 12234, 'en', 'name', 'Amref Health Africa'),
(14804, 12235, 'no_lang_code', 'name', 'Mercy Corps Northwest (United States)'),
(14805, 12236, 'en', 'name', 'GrowNYC'),
(14806, 12237, 'en', 'name', 'Food and Friends'),
(14807, 12238, 'de', 'name', 'Europäische Informationszentrum für Lebensmittel'),
(14808, 12238, 'en', 'name', 'European Food Information Council'),
(14809, 12238, 'es', 'name', 'Europeo de Información sobre la Alimentación'),
(14810, 12238, 'fr', 'name', 'Conseil EuropƩen de l''Information sur l''Alimentation'),
(14811, 12239, 'en', 'name', 'Art Science Research Laboratory'),
(14812, 12240, 'no_lang_code', 'name', 'Meteorologie Consult (Germany)'),
(14813, 12241, 'en', 'name', 'Firefighter Cancer Support Network'),
(14814, 12242, 'en', 'name', 'National Council on Radiation Protection and Measurements'),
(14815, 12243, 'en', 'name', 'Shawnee Community College'),
(14816, 12244, 'en', 'name', 'Bridge II Sports'),
(14817, 12245, 'no_lang_code', 'name', 'Centro Laser'),
(14818, 12246, 'en', 'name', 'Asperger/Autism Network'),
(14819, 12247, 'en', 'name', 'John T. Mather Memorial Hospital'),
(14820, 12248, 'no_lang_code', 'name', 'T6 (Italy)'),
(14821, 12249, 'en', 'name', 'Plan International Tanzania'),
(14822, 12250, 'en', 'name', 'Dalton School'),
(14823, 12251, 'en', 'name', 'New England Coalition for Cancer Survivorship'),
(14824, 12252, 'no_lang_code', 'name', 'Marathon Kids'),
(14825, 12253, 'no_lang_code', 'name', 'KWS Saat (Germany)'),
(14826, 12254, 'en', 'name', 'Krell Institute'),
(14827, 12255, 'no_lang_code', 'name', 'OPKO Health (United States)'),
(14828, 12256, 'no_lang_code', 'name', 'Huntsman (Switzerland)'),
(14829, 12257, 'es', 'name', 'Centro Nacional de Sanidad Agropecuaria'),
(14830, 12258, 'en', 'name', 'Open Arms of Minnesota'),
(14831, 12259, 'en', 'name', 'La Crosse Medical Health Science Consortium'),
(14832, 12260, 'en', 'name', 'Community Services Unlimited'),
(14833, 12261, 'no_lang_code', 'name', 'Avrygen (United States)'),
(14834, 12262, 'en', 'name', 'Oklahoma Department of Human Services'),
(14835, 12263, 'en', 'name', 'Abilities Unlimited of the Carolinas'),
(14836, 12264, 'no_lang_code', 'name', 'Industry Vision Automation (United States)'),
(14837, 12265, 'de', 'name', 'Gemeinsame Forschungsstelle'),
(14838, 12265, 'en', 'name', 'Joint Research Centre'),
(14839, 12266, 'no_lang_code', 'name', 'Isojet Equipements (France)'),
(14840, 12267, 'en', 'name', 'Grossmont Hospital Foundation'),
(14841, 12268, 'en', 'name', 'Florida Cancer Specialists & Research Institute'),
(14842, 12269, 'en', 'name', 'Ministry of Interior'),
(14843, 12269, 'it', 'name', 'Ministero dell''Interno'),
(14844, 12270, 'en', 'name', 'Regional Environmental Council'),
(14845, 12271, 'en', 'name', 'American Friends Service Committee'),
(14846, 12272, 'en', 'name', 'Mineral and Energy Economy Research Institute of the Polish Academy of Sciences'),
(14847, 12272, 'pl', 'name', 'Instytut Gospodarki Surowcami Mineralnymi i Energią Polskiej Akademii Nauk'),
(14848, 12273, 'no_lang_code', 'name', 'Secor Strategies (United States)'),
(14849, 12274, 'en', 'name', 'San Bernardino County Department of Public Health'),
(14850, 12275, 'en', 'name', 'ExploreMars'),
(14851, 12276, 'en', 'name', 'Dillard Academy'),
(14852, 12277, 'no_lang_code', 'name', 'Aterica (Canada)'),
(14853, 12278, 'no_lang_code', 'name', 'Factum'),
(14854, 12279, 'en', 'name', 'Michigan Institute for Neurological Disorders'),
(14855, 12280, 'en', 'name', 'Malta Resources Authority'),
(14856, 12281, 'en', 'name', 'European Union Road Federation'),
(14857, 12282, 'no_lang_code', 'name', 'Rikola (Finland)'),
(14858, 12283, 'en', 'name', 'Brooklyn Technical High School'),
(14859, 12284, 'en', 'name', 'Minnesota Epilepsy Group'),
(14860, 12285, 'no_lang_code', 'name', 'Plansee (Austria)'),
(14861, 12286, 'no_lang_code', 'name', 'Busek (United States)'),
(14862, 12287, 'no_lang_code', 'name', 'Azienda Trasporti Milanesi (Italy)'),
(14863, 12288, 'no_lang_code', 'name', 'Mitra Biotech (India)'),
(14864, 12289, 'it', 'name', 'Lega Italiana per la Lotta ai Tumori'),
(14865, 12290, 'en', 'name', 'European Incoherent Scatter Scientific Association'),
(14866, 12291, 'bs', 'name', 'Prona'),
(14867, 12292, 'no_lang_code', 'name', 'Adbroncus (Spain)'),
(14868, 12293, 'no_lang_code', 'name', 'Metaclipse Therapeutics (United States)'),
(14869, 12294, 'no_lang_code', 'name', 'Algoritmos Procesos y Disenos (Spain)'),
(14870, 12295, 'en', 'name', 'Institute of Telecommunication and Information Technologies'),
(14871, 12295, 'no_lang_code', 'name', 'Instytut Technik Telekomunikacyjnych i Informatycznych (Poland)'),
(14872, 12296, 'en', 'name', 'North Florida/South Georgia Veterans Health System'),
(14873, 12297, 'en', 'name', 'Friends of L''Arche Long Island'),
(14874, 12298, 'no_lang_code', 'name', 'Wilks (United States)'),
(14875, 12299, 'en', 'name', 'International Women''s Development Agency'),
(14876, 12300, 'en', 'name', 'Disability Rights and Resources'),
(14877, 12301, 'no_lang_code', 'name', 'CISSOID (Belgium)'),
(14878, 12302, 'it', 'name', 'Presidenza Del Consiglio Dei Ministri'),
(14879, 12303, 'no_lang_code', 'name', 'Alma Consulting Group'),
(14880, 12304, 'de', 'name', 'Hahn-Schickard-Gesellschaft für angewandte Forschung'),
(14881, 12305, 'en', 'name', 'Center for Women Policy'),
(14882, 12306, 'en', 'name', 'Barnert Temple'),
(14883, 12307, 'es', 'name', 'PoliclĆ­nica Gipuzkoa'),
(14884, 12308, 'en', 'name', 'National Council for the Blind of Ireland'),
(14885, 12309, 'no_lang_code', 'name', 'Yield10 Bioscience (United States)'),
(14886, 12310, 'en', 'name', 'Candlelighters Childhood Cancer Foundation of Nevada'),
(14887, 12311, 'no_lang_code', 'name', 'ProFishent (United States)'),
(14888, 12312, 'en', 'name', 'Friends of Karen'),
(14889, 12313, 'no_lang_code', 'name', 'Synovo (Germany)'),
(14890, 12314, 'en', 'name', 'Institute for EthnoMedicine'),
(14891, 12315, 'en', 'name', 'Ignite Adaptive Sports'),
(14892, 12316, 'en', 'name', 'American Indian Cancer Foundation'),
(14893, 12317, 'no_lang_code', 'name', 'Marimatech (Denmark)'),
(14894, 12318, 'en', 'name', 'Center for Dairy Excellence'),
(14895, 12319, 'en', 'name', 'Mandela Partners'),
(14896, 12320, 'en', 'name', 'The Big Garden'),
(14897, 12321, 'en', 'name', 'Lassen County'),
(14898, 12322, 'no_lang_code', 'name', 'SMK Plants (United States)'),
(14899, 12323, 'en', 'name', 'The Carolinas Center'),
(14900, 12324, 'no_lang_code', 'name', 'LMG Marin (Norway)'),
(14901, 12325, 'en', 'name', 'Beads of Courage'),
(14902, 12326, 'en', 'name', 'William H Miner Agricultural Research Institute'),
(14903, 12327, 'no_lang_code', 'name', 'SSS Optical Technologies'),
(14904, 12328, 'es', 'name', 'Centro de Estudios y Experimentación de Obras Públicas'),
(14905, 12329, 'en', 'name', 'Meadows Regional Medical Center'),
(14906, 12330, 'en', 'name', 'Ural Branch of the Russian Academy of Sciences'),
(14907, 12330, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŠø Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(14908, 12331, 'no_lang_code', 'name', 'Azienda Trasporti Consorziali di Bologna'),
(14909, 12332, 'en', 'name', 'Foundation for Strategic Research'),
(14910, 12332, 'fr', 'name', 'Fondation pour la Recherche StratƩgique'),
(14911, 12333, 'en', 'name', 'Maasai Wilderness Conservation Trust'),
(14912, 12334, 'no_lang_code', 'name', 'Gesellschaft für Elektrometallurgie (Germany)'),
(14913, 12335, 'no_lang_code', 'name', 'Stamatopoulos and Associates (Greece)'),
(14914, 12336, 'en', 'name', 'Massachusetts Pain Initiative'),
(14915, 12337, 'no_lang_code', 'name', 'Enterprise Estonia (Estonia)'),
(14916, 12338, 'en', 'name', 'Eastchester Center for Cancer Care'),
(14917, 12339, 'he', 'name', 'חברת ×¤×Ø×•× ×˜×• דיאגנוהטיקה'),
(14918, 12339, 'no_lang_code', 'name', 'Pronto Diagnostics (Israel)'),
(14919, 12340, 'en', 'name', 'Fort Collins Rowing Association'),
(14920, 12341, 'no_lang_code', 'name', 'Jonah’s Just Begun'),
(14921, 12342, 'es', 'name', 'Asociación de Investigación y Cooperación Industrial de Andalucía'),
(14922, 12343, 'en', 'name', 'Rio Puerco & Jemez Watershed Alliance'),
(14923, 12344, 'no_lang_code', 'name', 'SYSTRA (United Kingdom)'),
(14924, 12345, 'en', 'name', 'Pilipino Senior Resource Center'),
(14925, 12346, 'en', 'name', 'Leading Age'),
(14926, 12347, 'en', 'name', 'European Institute for Biomedical Imaging Research'),
(14927, 12348, 'en', 'name', 'Hauppauge Public School'),
(14928, 12349, 'no_lang_code', 'name', 'Inspire'),
(14929, 12350, 'no_lang_code', 'name', 'Etrel (Slovenia)'),
(14930, 12351, 'en', 'name', 'Child Aid Organization Kenya'),
(14931, 12352, 'no_lang_code', 'name', 'Idetra (Spain)'),
(14932, 12353, 'en', 'name', 'Collinsville Area Recreation District'),
(14933, 12354, 'en', 'name', 'Institute of Baltic Studies'),
(14934, 12355, 'en', 'name', 'Office of the Prime Minister of Malta'),
(14935, 12355, 'it', 'name', 'Primo Ministro di Malta'),
(14936, 12356, 'no_lang_code', 'name', 'Lagerwey Wind (Netherlands)'),
(14937, 12357, 'en', 'name', 'Greater Holy Temple Church Of God In Christ'),
(14938, 12358, 'en', 'name', 'The Princeton Festival'),
(14939, 12359, 'en', 'name', 'Cancer Wellness Center'),
(14940, 12360, 'en', 'name', 'Institute of Bioorganic Chemistry and Petrochemistry V.P. Kukhar'),
(14941, 12361, 'en', 'name', 'Global Climate Forum'),
(14942, 12362, 'en', 'name', 'Ono Academic College'),
(14943, 12362, 'he', 'name', 'הקריה ×”××§×“×ž×™×Ŗ אונו'),
(14944, 12363, 'en', 'name', 'Ascension Via Christi Hospital'),
(14945, 12364, 'en', 'name', 'National Law Enforcement and Firefighters Children’s Foundation'),
(14946, 12365, 'no_lang_code', 'name', 'Picosun (Finland)'),
(14947, 12366, 'no_lang_code', 'name', 'Akka Technologies (France)'),
(14948, 12367, 'en', 'name', 'Adirondack Medical Center'),
(14949, 12368, 'en', 'name', 'Regional Arab Network against AIDS'),
(14950, 12369, 'no_lang_code', 'name', 'Sea Bird Electronics (United States)'),
(14951, 12370, 'en', 'name', 'New York State Office of Children and Family Services'),
(14952, 12371, 'no_lang_code', 'name', 'Sandvik (United Kingdom)'),
(14953, 12372, 'no_lang_code', 'name', 'GF Machining Solutions (Sweden)'),
(14954, 12373, 'en', 'name', 'Saitama Medical University Hospital'),
(14955, 12373, 'ja', 'name', 'åŸ¼ēŽ‰åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(14956, 12374, 'no_lang_code', 'name', 'Imerys (Germany)'),
(14957, 12375, 'en', 'name', 'San Ysidro Health'),
(14958, 12376, 'en', 'name', 'Indiana Association of United Ways'),
(14959, 12377, 'no_lang_code', 'name', 'Olympus (United States)'),
(14960, 12378, 'en', 'name', 'Max Healthcare'),
(14961, 12379, 'en', 'name', 'Strategic Design Scenarios'),
(14962, 12380, 'no_lang_code', 'name', 'PRĆ© Consultants'),
(14963, 12381, 'no_lang_code', 'name', 'Aircraft Research Association'),
(14964, 12382, 'en', 'name', 'Elijah House'),
(14965, 12383, 'no_lang_code', 'name', 'Esaote (Italy)'),
(14966, 12384, 'en', 'name', 'Columbus Regional Healthcare System'),
(14967, 12385, 'no_lang_code', 'name', 'Neurotez (United States)'),
(14968, 12386, 'en', 'name', 'Hospice of the Western Reserve'),
(14969, 12387, 'no_lang_code', 'name', 'MicroLIQUID (Spain)'),
(14970, 12388, 'no', 'name', 'Norsar'),
(14971, 12389, 'en', 'name', 'Clubhouse International'),
(14972, 12390, 'no_lang_code', 'name', 'European Telecommunications Satellite Organization'),
(14973, 12391, 'no_lang_code', 'name', 'JENAer Meßtechnik (Germany)'),
(14974, 12392, 'en', 'name', 'Camp Boggy Creek'),
(14975, 12393, 'no_lang_code', 'name', 'Bruel & Kjaer Sound and Vibration Measurement (Denmark)'),
(14976, 12394, 'no_lang_code', 'name', 'Triqua (Netherlands)'),
(14977, 12395, 'en', 'name', 'Harford Research Institute'),
(14978, 12396, 'el', 'name', 'Ελληνική Ī£Ļ„Ī±Ļ„Ī¹ĻƒĻ„Ī¹ĪŗĪ® Αρχή'),
(14979, 12396, 'en', 'name', 'Hellenic Statistical Authority'),
(14980, 12397, 'en', 'name', 'Institute of Metallurgy and Materials Science'),
(14981, 12397, 'pl', 'name', 'Instytut Metalurgii i Inżynierii Materiałowej PAN'),
(14982, 12398, 'en', 'name', 'Illinois Farm Bureau'),
(14983, 12399, 'en', 'name', 'Fund for Park Avenue'),
(14984, 12400, 'en', 'name', 'Institute of Physics'),
(14985, 12400, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики ŠŠŠ Украины'),
(14986, 12400, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізики ŠŠŠ України'),
(14987, 12401, 'en', 'name', 'Cancer Services of New Mexico'),
(14988, 12402, 'no_lang_code', 'name', 'AquaBioTech Group (Malta)'),
(14989, 12403, 'no_lang_code', 'name', 'Foster and Partners (United Kingdom)'),
(14990, 12404, 'en', 'name', 'Lutheran Hospital'),
(14991, 12405, 'no_lang_code', 'name', 'IBM (France)'),
(14992, 12406, 'en', 'name', 'Science Centre AHHAA'),
(14993, 12407, 'no_lang_code', 'name', 'LPW Technology (United Kingdom)'),
(14994, 12408, 'no_lang_code', 'name', 'Safinah (United Kingdom)'),
(14995, 12409, 'en', 'name', 'Neurological Recovery House'),
(14996, 12410, 'en', 'name', 'The Salvation Army United States'),
(14997, 12411, 'en', 'name', 'African Institute for Development Policy'),
(14998, 12412, 'en', 'name', 'Technological Institute of the Canary Islands'),
(14999, 12412, 'no_lang_code', 'name', 'Instituto Tecnológico de Canarias'),
(15000, 12413, 'en', 'name', 'Turing Institute'),
(15001, 12414, 'no_lang_code', 'name', 'Oasis Diagnostics (United States)'),
(15002, 12415, 'en', 'name', 'Ministry of Education Culture and Science'),
(15003, 12415, 'nl', 'name', 'Ministerie van Onderwijs, Cultuur en Wetenschappe'),
(15004, 12416, 'no_lang_code', 'name', 'E.ON (France)'),
(15005, 12417, 'es', 'name', 'Fundacion Favaloro Hospital Universitario'),
(15006, 12418, 'en', 'name', 'Lifeline Hospital'),
(15007, 12419, 'en', 'name', 'European Cancer Prevention'),
(15008, 12420, 'no_lang_code', 'name', 'ALD Vacuum Technologies (Germany)'),
(15009, 12421, 'en', 'name', 'Proof Alliance'),
(15010, 12422, 'de', 'name', 'OƖ Energiesparverband'),
(15011, 12423, 'en', 'name', 'Metropolitan Research Institute'),
(15012, 12424, 'en', 'name', 'Center for Accessible Living'),
(15013, 12425, 'no_lang_code', 'name', 'Terma (Denmark)'),
(15014, 12426, 'no_lang_code', 'name', 'Tecos (Slovenia)'),
(15015, 12427, 'no_lang_code', 'name', 'In Silico Biosciences (United States)'),
(15016, 12428, 'no_lang_code', 'name', 'Ball (United States)'),
(15017, 12429, 'en', 'name', 'Seaberry Farm'),
(15018, 12430, 'en', 'name', 'Cohoes Family Care'),
(15019, 12431, 'en', 'name', 'Bay Area Houston Economic Partnership'),
(15020, 12432, 'de', 'name', 'Keller und Knappich Augsburg'),
(15021, 12432, 'no_lang_code', 'name', 'KUKA (Germany)'),
(15022, 12433, 'en', 'name', 'Upstate Freshwater Institute'),
(15023, 12434, 'en', 'name', 'HorseAbility'),
(15024, 12435, 'en', 'name', 'Comer Children''s Hospital'),
(15025, 12436, 'no_lang_code', 'name', 'HM3 Energy'),
(15026, 12437, 'no_lang_code', 'name', 'Engie (France)'),
(15027, 12438, 'en', 'name', 'Pine Cobble School'),
(15028, 12439, 'no_lang_code', 'name', 'Area I (United States)'),
(15029, 12440, 'no_lang_code', 'name', 'Calista Therapeutics (United States)'),
(15030, 12441, 'en', 'name', 'Tohono O''odham Community Action'),
(15031, 12442, 'en', 'name', 'Chugach School District'),
(15032, 12443, 'en', 'name', 'McIntosh Sustainable Environment and Economic Development'),
(15033, 12444, 'en', 'name', 'Douglas Gardens Hospital'),
(15034, 12445, 'no_lang_code', 'name', 'EVECO Brno (Czechia)'),
(15035, 12446, 'en', 'name', 'Texas Health Harris Methodist Hospital Fort Worth'),
(15036, 12447, 'en', 'name', 'Chase Brexton Health Care'),
(15037, 12448, 'en', 'name', 'Illinois College'),
(15038, 12449, 'en', 'name', 'Central Park Conservancy'),
(15039, 12450, 'en', 'name', 'Plan International'),
(15040, 12451, 'en', 'name', 'Society for Nutrition Education and Behavior'),
(15041, 12452, 'en', 'name', 'Center for Asthma, Allergy and Respiratory Disease'),
(15042, 12453, 'en', 'name', 'Higher Ground Sun Valley'),
(15043, 12454, 'no_lang_code', 'name', 'ArƧelik (Turkey)'),
(15044, 12455, 'no_lang_code', 'name', 'Intelligent Sensing Anywhere (Portugal)'),
(15045, 12456, 'en', 'name', 'Cypress Hills Local Development Corporation'),
(15046, 12457, 'en', 'name', 'Faraja Cancer Support Trust'),
(15047, 12458, 'en', 'name', 'Girls Power Initiative'),
(15048, 12459, 'no_lang_code', 'name', 'PRO DV (Germany)'),
(15049, 12460, 'no_lang_code', 'name', 'Analytical Imaging and Geophysics (United States)'),
(15050, 12461, 'no_lang_code', 'name', 'Temis (France)'),
(15051, 12462, 'en', 'name', 'National Research Institute of Rural Engineering, Water and Forests'),
(15052, 12463, 'el', 'name', 'Dimitra'),
(15053, 12464, 'no_lang_code', 'name', 'EMC Microcollections (Germany)'),
(15054, 12465, 'en', 'name', 'ANT Foundation Italy Onlus'),
(15055, 12465, 'it', 'name', 'Fondazione ANT Italia ONLUS'),
(15056, 12466, 'en', 'name', 'Cultural Site Research and Management'),
(15057, 12467, 'en', 'name', 'Johnston Memorial Hospital'),
(15058, 12468, 'en', 'name', 'Our Family Services'),
(15059, 12469, 'es', 'name', 'Asociación de la Industria Navarra'),
(15060, 12470, 'no_lang_code', 'name', 'Forest Concepts (United States)'),
(15061, 12471, 'en', 'name', 'Health Information Management'),
(15062, 12472, 'no_lang_code', 'name', 'FEG Textiltechnik (Germany)'),
(15063, 12473, 'no_lang_code', 'name', 'Transport & Travel Research (United Kingdom)'),
(15064, 12474, 'en', 'name', 'Ministry of the Internal Administration'),
(15065, 12474, 'pt', 'name', 'Ministério da Administração Interna'),
(15066, 12475, 'en', 'name', 'Harris County Hospital District Foundation'),
(15067, 12476, 'en', 'name', 'Ntengwe for Community Development'),
(15068, 12477, 'de', 'name', 'Institut für Zukunftsstudien und Technologiebewertung'),
(15069, 12478, 'en', 'name', 'National Audiovisual Institute'),
(15070, 12478, 'fr', 'name', 'Institut National de l''Audiovisuel'),
(15071, 12479, 'en', 'name', 'Family Service Center of Galveston County'),
(15072, 12480, 'en', 'name', 'Innova HealthCare Services'),
(15073, 12481, 'no_lang_code', 'name', 'KeyGene (Netherlands)'),
(15074, 12482, 'en', 'name', 'National Multiple Sclerosis Society'),
(15075, 12483, 'de', 'name', 'Deutsche Gesellschaft für Holzforschung'),
(15076, 12484, 'en', 'name', 'Lustgarten Foundation'),
(15077, 12485, 'en', 'name', 'Autism Science Foundation'),
(15078, 12486, 'no_lang_code', 'name', 'Siegert Electronic (Germany)'),
(15079, 12487, 'no_lang_code', 'name', 'Lixte (United States)'),
(15080, 12488, 'nl', 'name', 'Kennisland'),
(15081, 12489, 'en', 'name', 'Construction Cluster of Slovenia'),
(15082, 12489, 'sl', 'name', 'Slovenski Gradbeni Grozd'),
(15083, 12490, 'de', 'name', 'Zentrum für Foren in der Grafischen Datenverarbeitung'),
(15084, 12491, 'en', 'name', 'Agricultural institute of Slovenia'),
(15085, 12492, 'en', 'name', 'All Kinds Of Minds'),
(15086, 12493, 'en', 'name', 'Human Relief Foundation'),
(15087, 12494, 'en', 'name', 'Rhode Island Association of Conservation Districts'),
(15088, 12495, 'en', 'name', 'Direct Relief'),
(15089, 12496, 'no_lang_code', 'name', 'EDMA Innova'),
(15090, 12497, 'no_lang_code', 'name', 'Coherent Logix (United States)'),
(15091, 12498, 'en', 'name', 'Afrihealth Optonet Association'),
(15092, 12499, 'no_lang_code', 'name', 'Solar Stream (United States)'),
(15093, 12500, 'no_lang_code', 'name', 'Electrovac (Austria)'),
(15094, 12501, 'no_lang_code', 'name', 'syncom'),
(15095, 12502, 'en', 'name', 'Dragonfly Forest'),
(15096, 12503, 'no_lang_code', 'name', 'Dune (Italy)'),
(15097, 12504, 'en', 'name', 'KVC Health Systems'),
(15098, 12505, 'no_lang_code', 'name', 'Oncotide Pharmaceuticals (United States)'),
(15099, 12506, 'en', 'name', 'Local Agricultural Community Exchange'),
(15100, 12507, 'en', 'name', 'Latinas Contra Cancer'),
(15101, 12508, 'en', 'name', 'Cardinal Hill Rehabilitation Hospital'),
(15102, 12509, 'no_lang_code', 'name', 'Tun Abdul Razak Research Centre'),
(15103, 12510, 'en', 'name', 'Babylon Breast Cancer Coalition'),
(15104, 12511, 'no_lang_code', 'name', 'Jan de Rijk Logistics (Netherlands)'),
(15105, 12512, 'de', 'name', 'Deutsche Welle'),
(15106, 12513, 'en', 'name', 'Betty Jean Kerr People’s Health Centers'),
(15107, 12514, 'no_lang_code', 'name', 'Precitec (Germany)'),
(15108, 12515, 'en', 'name', 'European Coordination Committee of the Radiological, Electromedical and Healthcare IT Industry'),
(15109, 12516, 'en', 'name', 'European Centre for Nature Conservation'),
(15110, 12517, 'no_lang_code', 'name', 'MicroVacuum (Hungary)'),
(15111, 12518, 'no_lang_code', 'name', 'Fiberstar (United States)'),
(15112, 12519, 'en', 'name', 'Disability Rights Legal Center'),
(15113, 12520, 'fr', 'name', 'Arvalis - Institut du VƩgƩtal'),
(15114, 12521, 'en', 'name', 'McCabe Centre for Law and Cancer'),
(15115, 12522, 'en', 'name', 'Clinical Directors Network'),
(15116, 12523, 'en', 'name', 'Florida Certified Organic Growers'),
(15117, 12524, 'no_lang_code', 'name', 'Jenrin Discovery (United States)'),
(15118, 12525, 'no_lang_code', 'name', 'TƁRKI Social Research Institute'),
(15119, 12526, 'no_lang_code', 'name', 'Hellenic Telecommunications Organization (Greece)'),
(15120, 12527, 'no_lang_code', 'name', 'Biosensores (Spain)'),
(15121, 12528, 'no_lang_code', 'name', 'Siemens (Denmark)'),
(15122, 12529, 'no_lang_code', 'name', 'AMS (Germany)'),
(15123, 12530, 'en', 'name', 'Doctors of the World'),
(15124, 12530, 'fr', 'name', 'MĆ©decins du Monde, medsÉ›Ģƒ dy mÉ”Ģƒd'),
(15125, 12531, 'en', 'name', 'City School District of New Rochelle'),
(15126, 12532, 'en', 'name', 'Fund for the City of New York'),
(15127, 12533, 'en', 'name', 'Hospice of Metropolitan Erie'),
(15128, 12534, 'no_lang_code', 'name', 'Alloksys (Netherlands)'),
(15129, 12535, 'no_lang_code', 'name', 'Jobs (Italy)'),
(15130, 12536, 'en', 'name', 'Royal Museums of Art and History'),
(15131, 12536, 'fr', 'name', 'MusƩes royaux d''Art et d''Histoire'),
(15132, 12536, 'nl', 'name', 'Koninklijke Musea voor Kunst en Geschiedenis'),
(15133, 12537, 'no_lang_code', 'name', 'Axios Biosciences (United States)'),
(15134, 12538, 'no_lang_code', 'name', 'NXP (Belgium)'),
(15135, 12539, 'en', 'name', 'African Organisation for Research and Training in Cancer'),
(15136, 12540, 'no_lang_code', 'name', 'Thales (Germany)'),
(15137, 12541, 'en', 'name', 'National Aphasia Association'),
(15138, 12542, 'en', 'name', 'Community Development and Sustainability Organization'),
(15139, 12543, 'en', 'name', 'Los Angeles Pink Dragons'),
(15140, 12544, 'no_lang_code', 'name', 'Open Window Productions (United States)'),
(15141, 12545, 'no_lang_code', 'name', 'Biobase (Germany)'),
(15142, 12546, 'no_lang_code', 'name', 'Amicus Therapeutics (United States)'),
(15143, 12547, 'en', 'name', 'Challenger Center for Space Science Education'),
(15144, 12548, 'no_lang_code', 'name', 'European Apparel and Textile Confederation'),
(15145, 12549, 'en', 'name', 'Holos Institute'),
(15146, 12550, 'no_lang_code', 'name', 'Inspira'),
(15147, 12551, 'no_lang_code', 'name', 'Highlight Therapeutics (Spain)'),
(15148, 12552, 'en', 'name', 'Challenge Aspen'),
(15149, 12553, 'en', 'name', 'Cherokee Central Schools'),
(15150, 12554, 'en', 'name', 'El Dorado County Health and Human Services Agency'),
(15151, 12555, 'en', 'name', 'Chicago Board of Education'),
(15152, 12556, 'no_lang_code', 'name', 'Bee Power (United States)'),
(15153, 12557, 'en', 'name', 'Community GroundWorks'),
(15154, 12558, 'no_lang_code', 'name', 'NOVAMINA Innovative Technology Centre'),
(15155, 12559, 'en', 'name', 'National Institute of Agricultural Economics'),
(15156, 12559, 'it', 'name', 'Istituto Nazionale di Economia Agraria'),
(15157, 12560, 'en', 'name', 'Bangladesh Medical Association of North America'),
(15158, 12561, 'en', 'name', 'Norwegian Geotechnical Institute'),
(15159, 12562, 'no_lang_code', 'name', 'Total (Belgium)'),
(15160, 12563, 'en', 'name', 'Neurology Center of Southern California'),
(15161, 12564, 'no_lang_code', 'name', 'Cardiavent (United States)'),
(15162, 12565, 'no_lang_code', 'name', 'Oncoceutics (United States)'),
(15163, 12566, 'no_lang_code', 'name', 'Ceratizit (Luxembourg)'),
(15164, 12567, 'en', 'name', 'Black Women for Wellness'),
(15165, 12568, 'en', 'name', 'Oakland Symphony'),
(15166, 12569, 'no_lang_code', 'name', 'Thales (Netherlands)'),
(15167, 12570, 'de', 'name', 'Bundesnetzagentur'),
(15168, 12570, 'en', 'name', 'Federal Network Agency'),
(15169, 12571, 'en', 'name', 'Telecommunication Systems Research Institute'),
(15170, 12572, 'en', 'name', 'New Hampshire Hospice and Palliative Care Organization'),
(15171, 12573, 'en', 'name', 'Resources for Children with Special Needs'),
(15172, 12574, 'en', 'name', 'Nepal Ambulance Service'),
(15173, 12575, 'en', 'name', 'Montreat College'),
(15174, 12576, 'no_lang_code', 'name', 'Dakota Rural Action (United States)'),
(15175, 12577, 'en', 'name', 'Fishing Has No Boundaries'),
(15176, 12578, 'no_lang_code', 'name', 'Thales (Spain)'),
(15177, 12579, 'en', 'name', 'Buckelew Programs'),
(15178, 12580, 'en', 'name', 'Eurocontrol'),
(15179, 12581, 'no_lang_code', 'name', 'FutureSoft (United States)'),
(15180, 12582, 'no_lang_code', 'name', 'Skolex Biotechnologies (United States)'),
(15181, 12583, 'en', 'name', 'Hospice of Charles County'),
(15182, 12584, 'en', 'name', 'Lupus Foundation of America'),
(15183, 12585, 'no_lang_code', 'name', 'Mitel (United Kingdom)'),
(15184, 12586, 'en', 'name', 'Hamot Health Foundation'),
(15185, 12587, 'en', 'name', 'Finnish Society of Automation'),
(15186, 12588, 'en', 'name', 'San Mateo County Probation'),
(15187, 12589, 'no_lang_code', 'name', 'Kemakta Konsult'),
(15188, 12590, 'no_lang_code', 'name', 'Cogito (United States)'),
(15189, 12591, 'en', 'name', 'Harm Reduction Services'),
(15190, 12592, 'no_lang_code', 'name', 'Xerox (France)'),
(15191, 12593, 'en', 'name', 'Collaborating Centre on Sustainable Consumption and Production'),
(15192, 12594, 'no_lang_code', 'name', 'Metabolon (United States)'),
(15193, 12595, 'en', 'name', 'State Laboratory'),
(15194, 12596, 'en', 'name', 'Hispanic Family Center of Southern New Jersey'),
(15195, 12597, 'en', 'name', 'Partners for Youth with Disabilities'),
(15196, 12598, 'en', 'name', 'Anne Arundel County Public Schools'),
(15197, 12599, 'no_lang_code', 'name', 'Technaid (Spain)'),
(15198, 12600, 'de', 'name', 'Forschungsinstitut für Leder und Kunststoffbahnen'),
(15199, 12601, 'en', 'name', 'Nebraska Department of Education'),
(15200, 12602, 'it', 'name', 'Avantea'),
(15201, 12603, 'no_lang_code', 'name', 'Nanocyl (Belgium)'),
(15202, 12604, 'no_lang_code', 'name', 'AGADA Biosciences'),
(15203, 12605, 'en', 'name', 'Big Brothers Big Sisters of Vermilion County'),
(15204, 12606, 'en', 'name', 'Epilepsy Support and Education Services'),
(15205, 12607, 'en', 'name', 'National Future Farmers of America Organization'),
(15206, 12608, 'en', 'name', 'Islamic Shura Council of Southern California'),
(15207, 12609, 'en', 'name', 'Breast Cancer Research Foundation'),
(15208, 12610, 'no_lang_code', 'name', 'TDC (Denmark)'),
(15209, 12611, 'en', 'name', 'Meridian Behavioral Healthcare'),
(15210, 12612, 'no_lang_code', 'name', 'Rodan Development (Poland)'),
(15211, 12613, 'no_lang_code', 'name', '3F (United States)'),
(15212, 12614, 'en', 'name', 'Chatham County Schools'),
(15213, 12615, 'no_lang_code', 'name', 'Merrimack Pharmaceuticals (United States)'),
(15214, 12616, 'en', 'name', 'Quincy Medical Center'),
(15215, 12617, 'en', 'name', 'Institute of Microelectronics Technology and High Purity Materials'),
(15216, 12617, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем технологии Š¼ŠøŠŗŃ€Š¾ŃŠ»ŠµŠŗŃ‚роники Šø особо чистых материалов'),
(15217, 12618, 'en', 'name', 'Greensboro Science Center'),
(15218, 12619, 'en', 'name', 'Institute of Mathematical Machines and Systems Problems'),
(15219, 12619, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем математичних машин і систем ŠŠŠ України'),
(15220, 12620, 'no_lang_code', 'name', 'Athenex (United States)'),
(15221, 12621, 'no_lang_code', 'name', 'PyroGenesis (Greece)'),
(15222, 12622, 'es', 'name', 'Asociación DemogrÔfica Costarricense'),
(15223, 12623, 'en', 'name', 'Sound Rivers'),
(15224, 12624, 'en', 'name', 'Bay Area Cancer Connections'),
(15225, 12625, 'en', 'name', 'Disabled Veterans Insurance Careers'),
(15226, 12626, 'no_lang_code', 'name', 'Airstreams Renewables (United States)'),
(15227, 12627, 'en', 'name', 'Arkansas Land and Farm Development Corporation'),
(15228, 12628, 'en', 'name', 'Institute of Neurology, Psychiatry and Narcology'),
(15229, 12628, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неврології, психіатрії та наркології ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń—'),
(15230, 12629, 'no_lang_code', 'name', 'Havstovan'),
(15231, 12630, 'en', 'name', 'Mind Body Solutions'),
(15232, 12631, 'en', 'name', 'Center for Independent Living of Broward'),
(15233, 12632, 'en', 'name', 'Global Health Council'),
(15234, 12633, 'en', 'name', 'Kansas Bioscience Authority'),
(15235, 12634, 'no_lang_code', 'name', 'United Monolithic Semiconductor (France)'),
(15236, 12635, 'ca', 'name', 'AgĆØncia Espacial Italiana'),
(15237, 12635, 'en', 'name', 'Italian Space Agency'),
(15238, 12635, 'fr', 'name', 'Agence spatiale italienne'),
(15239, 12635, 'it', 'name', 'Agenzia Spaziale Italiana'),
(15240, 12636, 'en', 'name', 'College of Central Florida'),
(15241, 12637, 'no_lang_code', 'name', 'Oxford Catalysts Group (United States)'),
(15242, 12638, 'no_lang_code', 'name', 'MSNW (United States)'),
(15243, 12639, 'no_lang_code', 'name', 'Berand (Ireland)'),
(15244, 12640, 'en', 'name', 'Pathlight'),
(15245, 12641, 'en', 'name', 'University of North Carolina Hospitals'),
(15246, 12642, 'en', 'name', 'Spinal Cord Injury BC'),
(15247, 12643, 'en', 'name', 'Swedish Energy Agency'),
(15248, 12644, 'no_lang_code', 'name', 'CheminPharma (United States)'),
(15249, 12645, 'en', 'name', 'Apollo Hospitals'),
(15250, 12645, 'te', 'name', 'అపోలో ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±ą°øą±'),
(15251, 12646, 'no_lang_code', 'name', 'United Monolithic Semiconductors (Germany)'),
(15252, 12647, 'en', 'name', 'META Health'),
(15253, 12648, 'en', 'name', 'Cancer Lifeline'),
(15254, 12649, 'no_lang_code', 'name', 'Rofin (Germany)'),
(15255, 12650, 'en', 'name', 'Elkhart Clinic'),
(15256, 12651, 'en', 'name', 'Manpower Demonstration Research Corporation'),
(15257, 12652, 'en', 'name', 'Lithuanian Institute of Agrarian Economics'),
(15258, 12653, 'en', 'name', 'League Against Cancer'),
(15259, 12654, 'en', 'name', 'League of Conservation Voters'),
(15260, 12655, 'en', 'name', 'European Intermodal Association'),
(15261, 12656, 'en', 'name', 'Friends of Patan Hospital'),
(15262, 12657, 'no_lang_code', 'name', 'Roffer’s Ocean Fishing Forecasting Service'),
(15263, 12658, 'en', 'name', 'Blue Ridge Area Health Education Center'),
(15264, 12659, 'en', 'name', 'Kansas City Hospice and Palliative Care'),
(15265, 12660, 'en', 'name', 'Comer Family Foundation'),
(15266, 12661, 'no_lang_code', 'name', 'British Nuclear Fuel Limited (United Kingdom)'),
(15267, 12662, 'en', 'name', 'School District of Philadelphia'),
(15268, 12662, 'es', 'name', 'Distrito escolar de Filadelfia'),
(15269, 12662, 'fr', 'name', 'District scolaire de Philadelphie'),
(15270, 12663, 'no_lang_code', 'name', 'Biofaction (Austria)'),
(15271, 12664, 'en', 'name', 'Anne Arundel Community College'),
(15272, 12665, 'en', 'name', 'Golisano Children''s Hospital of Southwest Florida'),
(15273, 12666, 'no_lang_code', 'name', 'Efacec (Portugal)'),
(15274, 12667, 'no_lang_code', 'name', 'Danaher (Netherlands)'),
(15275, 12668, 'en', 'name', 'Mesilla Valley Hospice'),
(15276, 12669, 'no_lang_code', 'name', 'FastOpt (Germany)'),
(15277, 12670, 'en', 'name', 'International Pre-Autistic Network'),
(15278, 12671, 'en', 'name', 'Front Line Defenders'),
(15279, 12672, 'no_lang_code', 'name', 'CinecittĆ  Luce'),
(15280, 12673, 'no_lang_code', 'name', 'Ceramics and Refractories Technological Development Company (Greece)'),
(15281, 12674, 'en', 'name', 'International Association of Public Transport'),
(15282, 12675, 'es', 'name', 'Centro de Epilepsia y NeurocirugĆ­a Funcional'),
(15283, 12676, 'no_lang_code', 'name', 'Linguatec (Germany)'),
(15284, 12677, 'en', 'name', 'Europeana Foundation'),
(15285, 12677, 'nl', 'name', 'Stichting Europeana'),
(15286, 12678, 'no_lang_code', 'name', 'USE2ACES (Netherlands)'),
(15287, 12679, 'no_lang_code', 'name', 'Re/genT (Netherlands)'),
(15288, 12680, 'en', 'name', 'Harbor Beach Community Hospital'),
(15289, 12681, 'en', 'name', 'County Councils on Aging'),
(15290, 12682, 'no_lang_code', 'name', 'Mantis Deposition (United Kingdom)'),
(15291, 12683, 'en', 'name', 'WirelessInfo'),
(15292, 12684, 'en', 'name', 'American Society of Regional Anesthesia and Pain Medicine'),
(15293, 12685, 'en', 'name', 'Children''s Specialty Group'),
(15294, 12686, 'en', 'name', 'Maryland Ravens'),
(15295, 12687, 'en', 'name', 'Mid Atlantic Epilepsy and Sleep Center'),
(15296, 12688, 'en', 'name', 'Leukemia Research Foundation'),
(15297, 12689, 'de', 'name', 'Ludwig-Bƶlkow-Systemtechnik'),
(15298, 12690, 'no_lang_code', 'name', 'Nemetschek Bulgaria (Bulgaria)'),
(15299, 12691, 'en', 'name', 'American MedChem'),
(15300, 12692, 'en', 'name', 'First To Serve'),
(15301, 12693, 'no_lang_code', 'name', 'Imperial Consultants'),
(15302, 12694, 'no_lang_code', 'name', 'Kalashnikov Group (Russia)'),
(15303, 12694, 'ru', 'name', 'акционерное общество Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ оптический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”.И.Вавилова'),
(15304, 12695, 'no_lang_code', 'name', 'Siemens (Austria)'),
(15305, 12696, 'en', 'name', 'Croatian Chamber of Economy'),
(15306, 12697, 'en', 'name', 'Friends of Firefighters'),
(15307, 12698, 'en', 'name', 'Foundation for Scientific Cooperation'),
(15308, 12698, 'fr', 'name', 'Fondation de CoopƩration Scientifique'),
(15309, 12699, 'it', 'name', 'Istituto di Ricerche Economiche per la Pesca e l''Acquacoltura'),
(15310, 12700, 'en', 'name', 'American Society of Pediatric Hemotology Oncology'),
(15311, 12701, 'no_lang_code', 'name', 'Algaen (United States)'),
(15312, 12702, 'no_lang_code', 'name', 'Artemisia BioMedical (United States)'),
(15313, 12703, 'no_lang_code', 'name', 'Ecological Consultancy Services (Ireland)'),
(15314, 12704, 'en', 'name', 'Helen Hay Whitney Foundation'),
(15315, 12705, 'no_lang_code', 'name', 'iCons'),
(15316, 12706, 'de', 'name', 'Deutsche Wissenschaftliche Gesellschaft für Erdöl Erdgas und Kohle'),
(15317, 12706, 'en', 'name', 'German Society for Petroleum and Coal Science and Technology'),
(15318, 12707, 'no_lang_code', 'name', 'Yenkin Majestic Industrial Coatings Division (United States)'),
(15319, 12708, 'en', 'name', 'Adaptive Sports and Recreation Association'),
(15320, 12709, 'en', 'name', 'I & T Nardoni Institute'),
(15321, 12710, 'en', 'name', 'MGH Institute of Health Professions'),
(15322, 12711, 'en', 'name', 'City Harvest'),
(15323, 12712, 'en', 'name', 'Training and Employment Authority'),
(15324, 12712, 'ga', 'name', 'Foras Ɓiseanna Saothair'),
(15325, 12713, 'no_lang_code', 'name', 'Q PLAN International (Greece)'),
(15326, 12714, 'en', 'name', 'Glens Falls Hospital'),
(15327, 12715, 'en', 'name', 'RAND Europe'),
(15328, 12716, 'no_lang_code', 'name', 'Eurokleis'),
(15329, 12717, 'no_lang_code', 'name', 'Thomas Miller (United Kingdom)'),
(15330, 12718, 'en', 'name', 'Kerr Center for Sustainable Agriculture'),
(15331, 12719, 'no_lang_code', 'name', 'Ripple Rock Fish Farms (United States)'),
(15332, 12720, 'en', 'name', 'Renown South Meadows Medical Center'),
(15333, 12721, 'en', 'name', 'Northeast Wisconsin Technical College'),
(15334, 12722, 'fr', 'name', 'Fondation Asile des Aveugles'),
(15335, 12723, 'en', 'name', 'Head-Royce School'),
(15336, 12724, 'no_lang_code', 'name', 'Nuance Communications (Italy)'),
(15337, 12725, 'en', 'name', 'Illinois Public Health Institute'),
(15338, 12726, 'de', 'name', 'Centrum für die Untersuchung und Realisierung Endbenutzerorientierter Interaktiver Systeme'),
(15339, 12726, 'en', 'name', 'Center for Usability Research and Engineering'),
(15340, 12727, 'no_lang_code', 'name', 'International Chemical Investors (Germany)'),
(15341, 12728, 'en', 'name', 'Ministry of Industry and Information Technology'),
(15342, 12728, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å·„äøšå’Œäæ”ęÆåŒ–éƒØ'),
(15343, 12729, 'no_lang_code', 'name', 'Ala-Septic Pharmaceutical Research (United States)'),
(15344, 12730, 'no_lang_code', 'name', 'Finceramica (Italy)'),
(15345, 12731, 'en', 'name', 'Africa Health and Development International'),
(15346, 12732, 'en', 'name', 'Bulgarian Chamber of Commerce and Industry'),
(15347, 12733, 'no_lang_code', 'name', 'Huawei Technologies (Germany)'),
(15348, 12734, 'no_lang_code', 'name', 'EnginSoft (Italy)'),
(15349, 12735, 'en', 'name', 'ACIES Consulting Group'),
(15350, 12736, 'en', 'name', 'Cancer Support Foundation'),
(15351, 12737, 'no_lang_code', 'name', 'Pininfarina (Italy)'),
(15352, 12738, 'en', 'name', 'Denver Indian Center'),
(15353, 12739, 'no_lang_code', 'name', 'This Old Farm (United States)'),
(15354, 12740, 'es', 'name', 'Casita de Mausi'),
(15355, 12741, 'de', 'name', 'Deutsches Forschungsnetz, Verein zur Fƶrderung eines Deutschen Forschungsnetzes'),
(15356, 12741, 'en', 'name', 'German Research Network'),
(15357, 12742, 'en', 'name', 'Myrtle Avenue Brooklyn Partnership'),
(15358, 12743, 'no_lang_code', 'name', 'AVM Biotechnology (United States)'),
(15359, 12744, 'en', 'name', 'Grace Church of The Nazarene'),
(15360, 12745, 'en', 'name', 'American Society of Gene Therapy and Cell Therapy');
INSERT INTO `ror_settings` VALUES
(15361, 12746, 'no_lang_code', 'name', 'Applechem (United States)'),
(15362, 12747, 'en', 'name', 'Claxton-Hepburn Medical Center'),
(15363, 12748, 'en', 'name', 'European Nuclear Education Network'),
(15364, 12748, 'fr', 'name', 'RĆ©seau EuropĆ©en pour l’Enseignement des Sciences NuclĆ©aires'),
(15365, 12749, 'en', 'name', 'Production Engineering Research Association'),
(15366, 12750, 'en', 'name', 'National Test Pilot School'),
(15367, 12751, 'en', 'name', 'Bronx Independent Living Services'),
(15368, 12752, 'en', 'name', 'Project Angel Heart'),
(15369, 12753, 'en', 'name', 'Faces of Courage Foundation'),
(15370, 12754, 'no_lang_code', 'name', 'Micro Materials (United Kingdom)'),
(15371, 12755, 'en', 'name', 'Lukasiewicz Research Network - Krakow Institute of Technology'),
(15372, 12755, 'pl', 'name', 'Łukasiewicz -Krakowski Instytut Technologiczny'),
(15373, 12756, 'en', 'name', 'Semantic Technology Institute International'),
(15374, 12757, 'no_lang_code', 'name', 'BioTalentum (Hungary)'),
(15375, 12758, 'no_lang_code', 'name', 'Oberthur Technologies (France)'),
(15376, 12759, 'en', 'name', 'California Black Health Network'),
(15377, 12760, 'no_lang_code', 'name', 'Scientific Research and Development (Germany)'),
(15378, 12761, 'en', 'name', 'Leech Lake Tribal College'),
(15379, 12762, 'no_lang_code', 'name', 'ArcelorMittal (Germany)'),
(15380, 12763, 'en', 'name', 'Lancaster County Medical Society'),
(15381, 12764, 'en', 'name', 'Providence Medford Medical Center'),
(15382, 12765, 'no_lang_code', 'name', 'Micron (Italy)'),
(15383, 12766, 'no_lang_code', 'name', 'Danfoss (Denmark)'),
(15384, 12767, 'no_lang_code', 'name', 'European Plastics Converters'),
(15385, 12768, 'en', 'name', 'Arcadia International'),
(15386, 12769, 'no_lang_code', 'name', 'Aptiv (Germany)'),
(15387, 12770, 'de', 'name', 'Forschungsinstitut für Biologischen Landbau'),
(15388, 12770, 'en', 'name', 'Research Institute of Organic Agriculture'),
(15389, 12771, 'en', 'name', 'Harrington Regional Medical Center'),
(15390, 12772, 'en', 'name', 'Child and Family Services of New Hampshire'),
(15391, 12773, 'en', 'name', 'National Research Fund Luxembourg'),
(15392, 12773, 'fr', 'name', 'Fonds National de la Recherche'),
(15393, 12774, 'en', 'name', 'Coastal Health District'),
(15394, 12775, 'en', 'name', 'Institute of Agricultural Research for Development'),
(15395, 12775, 'fr', 'name', 'Institut de Recherche Agricole pour le DƩveloppement'),
(15396, 12776, 'en', 'name', 'Restorative Justice Centre'),
(15397, 12777, 'no_lang_code', 'name', 'Wellness Telecom (Spain)'),
(15398, 12778, 'no_lang_code', 'name', 'Lincis (Portugal)'),
(15399, 12779, 'fr', 'name', 'Observatoire MĆ©diterranĆ©en de l’Energie'),
(15400, 12780, 'en', 'name', 'Third Judicial Circuit of Florida'),
(15401, 12781, 'no_lang_code', 'name', 'HI Iberia (Spain)'),
(15402, 12782, 'en', 'name', 'Lymphatic Education & Research Network'),
(15403, 12783, 'en', 'name', 'Resources for Human Development'),
(15404, 12784, 'en', 'name', 'Illinois Central College'),
(15405, 12785, 'no_lang_code', 'name', 'Capgemini (Netherlands)'),
(15406, 12786, 'no_lang_code', 'name', 'SEMA (Germany)'),
(15407, 12787, 'en', 'name', 'Being Adept'),
(15408, 12788, 'en', 'name', 'New York Legal Assistance Group'),
(15409, 12789, 'en', 'name', 'White Earth Tribal and Community College'),
(15410, 12790, 'no_lang_code', 'name', 'Genos (Croatia)'),
(15411, 12791, 'no_lang_code', 'name', 'Sword Group (Luxembourg)'),
(15412, 12792, 'en', 'name', 'Council for Jewish Elderly'),
(15413, 12793, 'no_lang_code', 'name', 'BHP Laboratories'),
(15414, 12794, 'no_lang_code', 'name', 'Swasthya Diabetes Care'),
(15415, 12795, 'no_lang_code', 'name', 'ID Quantique (Switzerland)'),
(15416, 12796, 'en', 'name', 'American Institute for Cancer Research'),
(15417, 12797, 'en', 'name', 'Noble'),
(15418, 12798, 'en', 'name', 'Olive View-UCLA Medical Center'),
(15419, 12799, 'no_lang_code', 'name', 'Stork (Netherlands)'),
(15420, 12800, 'it', 'name', 'AutoritĆ  Portuale di Genova'),
(15421, 12801, 'en', 'name', 'Cares Community Health'),
(15422, 12802, 'it', 'name', 'SocietĆ  Italiana di Fisica'),
(15423, 12803, 'en', 'name', 'Institute for Chemical Processing of Coal'),
(15424, 12804, 'no_lang_code', 'name', 'College of Micronesia-FSM'),
(15425, 12805, 'no_lang_code', 'name', 'Community of European Shipyards Associations'),
(15426, 12806, 'no_lang_code', 'name', 'Cellana (United States)'),
(15427, 12807, 'no_lang_code', 'name', 'Mostostal Warszawa (Poland)'),
(15428, 12808, 'en', 'name', 'Centre for Rights Education and Awareness'),
(15429, 12809, 'no_lang_code', 'name', 'IBM (Belgium)'),
(15430, 12810, 'en', 'name', 'Foundation for Community Empowerment'),
(15431, 12811, 'no_lang_code', 'name', 'SGS Institut Fresenius (Germany)'),
(15432, 12812, 'en', 'name', 'Salt Lake County Parks and Recreation'),
(15433, 12813, 'en', 'name', 'Keystone College'),
(15434, 12814, 'no_lang_code', 'name', 'Erdyn (France)'),
(15435, 12815, 'no_lang_code', 'name', 'XCR Diagnostics (United States)'),
(15436, 12816, 'no_lang_code', 'name', 'Ramboll (Finland)'),
(15437, 12817, 'en', 'name', 'Building Bridges Child Development Center'),
(15438, 12818, 'en', 'name', 'Jewish Community Center of Fort Lee'),
(15439, 12819, 'no_lang_code', 'name', 'Kontron (Germany)'),
(15440, 12820, 'en', 'name', 'Brent''s Place'),
(15441, 12821, 'en', 'name', 'Cerebral Palsy Research Foundation'),
(15442, 12822, 'en', 'name', 'South Georgia Medical Center'),
(15443, 12823, 'en', 'name', 'National Center for Farmworker Health'),
(15444, 12824, 'en', 'name', 'Sanford Medical Center'),
(15445, 12825, 'en', 'name', 'Hmong American Partnership'),
(15446, 12826, 'no_lang_code', 'name', 'Ericsson (Hungary)'),
(15447, 12827, 'no_lang_code', 'name', 'Schlaich Bergermann und Partner (Germany)'),
(15448, 12828, 'de', 'name', 'Europäische Vereinigung für Erneuerbare Energien Eurosolar'),
(15449, 12828, 'en', 'name', 'European Association for Renewable Energy'),
(15450, 12829, 'no_lang_code', 'name', 'BoxModul (Sweden)'),
(15451, 12830, 'no_lang_code', 'name', 'Fratelli Alinari (Italy)'),
(15452, 12831, 'en', 'name', 'McCarton Foundation'),
(15453, 12832, 'en', 'name', 'Boone County Health Department'),
(15454, 12833, 'en', 'name', 'Alzforum'),
(15455, 12834, 'no_lang_code', 'name', 'Vertech Group'),
(15456, 12835, 'no_lang_code', 'name', 'BioMedicure (United States)'),
(15457, 12836, 'no_lang_code', 'name', 'Azavea (United States)'),
(15458, 12837, 'en', 'name', 'Polk County Public Schools'),
(15459, 12838, 'no_lang_code', 'name', 'Metrocrops'),
(15460, 12839, 'no_lang_code', 'name', 'RWP (Germany)'),
(15461, 12840, 'en', 'name', 'EvergreenHealth'),
(15462, 12841, 'no_lang_code', 'name', 'Motiva (Finland)'),
(15463, 12842, 'no_lang_code', 'name', 'Global Blood Therapeutics (United States)'),
(15464, 12843, 'no_lang_code', 'name', 'Sony (France)'),
(15465, 12844, 'en', 'name', 'Governance Links Tanzania'),
(15466, 12845, 'en', 'name', 'Center for Neurorehabilitation Services'),
(15467, 12846, 'no_lang_code', 'name', 'Laser Expertise (United Kingdom)'),
(15468, 12847, 'no_lang_code', 'name', 'TUI (Germany)'),
(15469, 12848, 'en', 'name', 'Cancer Association of Greater New Orleans'),
(15470, 12849, 'no_lang_code', 'name', 'Würth Elektronik (Germany)'),
(15471, 12850, 'en', 'name', 'North Colorado Medical Center Foundation'),
(15472, 12851, 'en', 'name', 'Black Sea Regional Energy Centre'),
(15473, 12852, 'en', 'name', 'Michigan Science Center'),
(15474, 12853, 'no_lang_code', 'name', 'MyeloRx (United States)'),
(15475, 12854, 'en', 'name', 'Community Rowing'),
(15476, 12855, 'no_lang_code', 'name', 'Evotec (Germany)'),
(15477, 12856, 'no_lang_code', 'name', 'Corbion (Netherlands)'),
(15478, 12857, 'en', 'name', 'Estonian E Health Foundation'),
(15479, 12858, 'en', 'name', 'Independent Living Resource Center San Francisco'),
(15480, 12859, 'no_lang_code', 'name', 'Ortin Laboratories (India)'),
(15481, 12860, 'en', 'name', 'American Society of Animal Science'),
(15482, 12861, 'no_lang_code', 'name', 'HaCon (Germany)'),
(15483, 12862, 'no_lang_code', 'name', 'Intrinsiq Materials (United Kingdom)'),
(15484, 12863, 'en', 'name', 'East Harlem School'),
(15485, 12864, 'en', 'name', 'Blue Marble Space'),
(15486, 12865, 'de', 'name', 'Ɩsterreichische Nationalbibliothek'),
(15487, 12865, 'en', 'name', 'Austrian National Library'),
(15488, 12866, 'en', 'name', 'European Health Telematics Association'),
(15489, 12867, 'fr', 'name', 'SociƩtƩ des Transports Intercommunaux de Bruxelles'),
(15490, 12867, 'nl', 'name', 'Maatschappij voor het Intercommunaal Vervoer te Brussel'),
(15491, 12867, 'no_lang_code', 'name', 'Brussels Intercommunal Transport Company'),
(15492, 12868, 'no_lang_code', 'name', 'Vinci (France)'),
(15493, 12869, 'en', 'name', 'Nigerian Christian Hospital'),
(15494, 12870, 'en', 'name', 'Alliance for Community Trees'),
(15495, 12871, 'no_lang_code', 'name', 'BIO Intelligence Service (France)'),
(15496, 12872, 'no_lang_code', 'name', 'Neuromathix (Australia)'),
(15497, 12873, 'en', 'name', 'Autism360'),
(15498, 12874, 'en', 'name', 'Catskill Regional Medical Center'),
(15499, 12875, 'no_lang_code', 'name', 'Photon Systems Instruments (Czechia)'),
(15500, 12876, 'no_lang_code', 'name', 'Bergamo Technologies (Poland)'),
(15501, 12877, 'en', 'name', 'Aliis Inserviendo Consumor Foundation'),
(15502, 12878, 'no_lang_code', 'name', 'Pirelli (Italy)'),
(15503, 12879, 'no_lang_code', 'name', 'GGG (France)'),
(15504, 12880, 'no_lang_code', 'name', 'AquaTT (Ireland)'),
(15505, 12881, 'en', 'name', 'Institute for Deciduous Fruit, Vines and Wine'),
(15506, 12882, 'en', 'name', 'Institute of Protein Biochemistry'),
(15507, 12882, 'it', 'name', 'Istituto di Biochimica delle Proteine'),
(15508, 12883, 'en', 'name', 'Rosselli Foundation'),
(15509, 12883, 'it', 'name', 'Fondazione Rosselli'),
(15510, 12884, 'en', 'name', 'Gulf Relief Foundation'),
(15511, 12885, 'no_lang_code', 'name', 'Uninett (Norway)'),
(15512, 12886, 'en', 'name', 'Institute of Biodiversity and Ecosystem Research'),
(15513, 12887, 'no_lang_code', 'name', 'Heartsong'),
(15514, 12888, 'en', 'name', 'Norte Maar'),
(15515, 12889, 'en', 'name', 'Flathead City County Health Department'),
(15516, 12890, 'no_lang_code', 'name', 'IQE (United Kingdom)'),
(15517, 12891, 'en', 'name', 'Iowa Children''s Museum'),
(15518, 12892, 'no_lang_code', 'name', 'Vita Group (United Kingdom)'),
(15519, 12893, 'en', 'name', 'National Domestic Workers Alliance'),
(15520, 12894, 'en', 'name', 'Charleston Breast Center'),
(15521, 12895, 'no_lang_code', 'name', 'Emilia Romagna Valorizzazione Economica Territorio (Italy)'),
(15522, 12896, 'en', 'name', 'Lutheran Family Health Centers'),
(15523, 12897, 'en', 'name', 'Bricks + Books Foundation'),
(15524, 12898, 'en', 'name', 'Ministry of Gender and Development'),
(15525, 12899, 'en', 'name', 'Gov2u'),
(15526, 12900, 'it', 'name', 'Fondazione Centro Marino Internazionale'),
(15527, 12901, 'en', 'name', 'European Emergency Number Association'),
(15528, 12902, 'no_lang_code', 'name', 'InvivoGen (France)'),
(15529, 12903, 'no_lang_code', 'name', 'GlaxoSmithKline (Italy)'),
(15530, 12904, 'en', 'name', 'Healthy Communities Coalition'),
(15531, 12905, 'es', 'name', 'Supera'),
(15532, 12906, 'no_lang_code', 'name', 'Tetra Tech (United States)'),
(15533, 12907, 'no_lang_code', 'name', 'Beneq (Finland)'),
(15534, 12908, 'en', 'name', 'Yurok Tribe Environmental Program'),
(15535, 12909, 'no_lang_code', 'name', 'Nanovis (United States)'),
(15536, 12910, 'en', 'name', 'Community Counseling Services'),
(15537, 12911, 'hu', 'name', 'Asklepios Kliniken'),
(15538, 12911, 'no_lang_code', 'name', 'Asklepios'),
(15539, 12912, 'en', 'name', 'Paraquad'),
(15540, 12913, 'no_lang_code', 'name', 'Trama TecnoAmbiental (Spain)'),
(15541, 12914, 'en', 'name', 'Ochin'),
(15542, 12915, 'en', 'name', 'Cancer Society of the Bahamas'),
(15543, 12916, 'en', 'name', 'Alzheimer''s and Related Disorders Society of India'),
(15544, 12917, 'no_lang_code', 'name', 'Exsulin (United States)'),
(15545, 12918, 'no_lang_code', 'name', 'ProDigest (Belgium)'),
(15546, 12919, 'en', 'name', 'Brodarski Institute'),
(15547, 12920, 'en', 'name', 'Food Outreach'),
(15548, 12921, 'en', 'name', 'National Development and Reform Commission Energy Research Institute'),
(15549, 12921, 'zh', 'name', 'å›½å®¶å‘å±•å’Œę”¹é©å§”å‘˜ä¼ščƒ½ęŗē ”ē©¶ę‰€'),
(15550, 12922, 'no_lang_code', 'name', 'Blinn College'),
(15551, 12923, 'no_lang_code', 'name', 'Global Graphics (United Kingdom)'),
(15552, 12924, 'no_lang_code', 'name', 'Berliner Verkehrsbetriebe (Germany)'),
(15553, 12925, 'no_lang_code', 'name', 'ALS Biopharma (United States)'),
(15554, 12926, 'es', 'name', 'Centro Tecnológico del Mar'),
(15555, 12927, 'en', 'name', 'Primary Care Coalition of Montgomery County'),
(15556, 12928, 'no_lang_code', 'name', 'Engedi Science (United Kingdom)'),
(15557, 12929, 'en', 'name', 'Growing Power'),
(15558, 12930, 'no_lang_code', 'name', 'Cambridge Econometrics (United Kingdom)'),
(15559, 12931, 'no_lang_code', 'name', 'SinapTec (France)'),
(15560, 12932, 'da', 'name', 'Uddannelses- og Forskningsministeriet'),
(15561, 12932, 'en', 'name', 'Danish Ministry of Higher Education and Science'),
(15562, 12933, 'en', 'name', 'Farm to Table'),
(15563, 12934, 'no_lang_code', 'name', 'Ancitel (Italy)'),
(15564, 12935, 'de', 'name', 'Institut für Bioprozess- und Analysenmesstechnik'),
(15565, 12935, 'en', 'name', 'Institute for Bioprocessing and Analytical Measurement Techniques'),
(15566, 12936, 'en', 'name', 'Capital Rowing Club'),
(15567, 12937, 'no_lang_code', 'name', 'Infosys (France)'),
(15568, 12938, 'es', 'name', 'Fundacion de Neurociencias'),
(15569, 12939, 'no_lang_code', 'name', 'Nextworks (Italy)'),
(15570, 12940, 'no_lang_code', 'name', 'CNet (Sweden)'),
(15571, 12941, 'en', 'name', 'Fredericksburg Independent School District'),
(15572, 12942, 'no_lang_code', 'name', 'Nymirum (United States)'),
(15573, 12943, 'no_lang_code', 'name', 'Stellar Solutions (United States)'),
(15574, 12944, 'no_lang_code', 'name', 'Spensa Technologies (United States)'),
(15575, 12945, 'no_lang_code', 'name', 'Vdlconsult'),
(15576, 12946, 'en', 'name', 'Bauer Research Foundation'),
(15577, 12947, 'no_lang_code', 'name', 'Aker (Finland)'),
(15578, 12948, 'no_lang_code', 'name', 'A2A (Italy)'),
(15579, 12949, 'en', 'name', 'Murray Hill Neighborhood Association'),
(15580, 12950, 'no_lang_code', 'name', 'Magwel (Belgium)'),
(15581, 12951, 'en', 'name', 'Frick Collection'),
(15582, 12952, 'de', 'name', 'Studiengesellschaft für den Kombinierten Verkehr e.V.'),
(15583, 12953, 'no_lang_code', 'name', 'Open Hand'),
(15584, 12954, 'en', 'name', 'Bellingham Technical College'),
(15585, 12955, 'en', 'name', 'Autism Treatment Center'),
(15586, 12956, 'en', 'name', 'Baby Buggy'),
(15587, 12957, 'en', 'name', 'Environment, Resources and Development'),
(15588, 12957, 'no_lang_code', 'name', 'Ambiente Risorse Sviluppo'),
(15589, 12958, 'no_lang_code', 'name', 'WholeTrees (United States)'),
(15590, 12959, 'no_lang_code', 'name', 'Ikerlan'),
(15591, 12960, 'en', 'name', 'Otero Junior College'),
(15592, 12961, 'ga', 'name', 'Bord SolƔthair an Leictreacha'),
(15593, 12961, 'no_lang_code', 'name', 'Electricity Supply Board (Ireland)'),
(15594, 12962, 'no_lang_code', 'name', 'ASCO Industries (Belgium)'),
(15595, 12963, 'it', 'name', 'Ratio Consulta'),
(15596, 12964, 'en', 'name', 'Hendrick Hospice Care'),
(15597, 12965, 'en', 'name', 'California Foundation for Agriculture in the Classroom'),
(15598, 12966, 'no_lang_code', 'name', 'ASSIST Software (Romania)'),
(15599, 12967, 'en', 'name', 'Korean Community Services of Metropolitan New York'),
(15600, 12968, 'en', 'name', 'Cecil County Health Department'),
(15601, 12969, 'en', 'name', 'International Medical Corps'),
(15602, 12970, 'no_lang_code', 'name', 'Organix (United States)'),
(15603, 12971, 'en', 'name', 'Centre for Sexuality and Health Research and Policy'),
(15604, 12972, 'en', 'name', 'Limbs For Life Foundation'),
(15605, 12973, 'cs', 'name', 'Ministerstvo průmyslu a obchodu České republiky'),
(15606, 12973, 'en', 'name', 'Ministry of Industry and Trade'),
(15607, 12974, 'en', 'name', 'International Centre for Genetic Engineering and Biotechnology'),
(15608, 12975, 'en', 'name', 'The Common Market'),
(15609, 12976, 'no_lang_code', 'name', 'Hauzer (Netherlands)'),
(15610, 12977, 'no_lang_code', 'name', 'Sweco (Norway)'),
(15611, 12978, 'no_lang_code', 'name', 'Vision Robotics Corporation (United States)'),
(15612, 12979, 'de', 'name', 'Ɩsterreichische Bundesbahnen'),
(15613, 12979, 'en', 'name', 'Austrian Federal Railways'),
(15614, 12980, 'no_lang_code', 'name', 'Tilde (Latvia)'),
(15615, 12981, 'no_lang_code', 'name', 'AXIS Dance (United States)'),
(15616, 12982, 'en', 'name', 'Education and Research Network'),
(15617, 12983, 'en', 'name', 'i3gb Foundation'),
(15618, 12984, 'no_lang_code', 'name', 'LifeSplice Pharma (United States)'),
(15619, 12985, 'no_lang_code', 'name', 'Technical Support for European Organisations'),
(15620, 12986, 'no_lang_code', 'name', 'Epitel (United States)'),
(15621, 12987, 'no_lang_code', 'name', 'Kirin (United States)'),
(15622, 12988, 'en', 'name', 'Dup15q Alliance'),
(15623, 12989, 'en', 'name', 'Institute of Electronic Materials Technology'),
(15624, 12990, 'en', 'name', 'Prevent Cancer Foundation'),
(15625, 12991, 'no_lang_code', 'name', 'Deep Blue (Italy)'),
(15626, 12992, 'de', 'name', 'Fachhochschule Oberƶsterreich'),
(15627, 12992, 'en', 'name', 'University of Applied Sciences Upper Austria'),
(15628, 12993, 'no_lang_code', 'name', 'EEG Info'),
(15629, 12994, 'en', 'name', 'Have A Heart Community Trust'),
(15630, 12995, 'en', 'name', 'Barnes-Jewish College'),
(15631, 12996, 'es', 'name', 'Equipo Latinoamericano de Justicia y GƩnero'),
(15632, 12997, 'no_lang_code', 'name', 'Teulades i FaƧanes Multifuncionals (Spain)'),
(15633, 12998, 'en', 'name', 'Public Policy Institute of California'),
(15634, 12999, 'en', 'name', 'Babble Tree'),
(15635, 13000, 'no_lang_code', 'name', 'Inte:Ligand (Austria)'),
(15636, 13001, 'no_lang_code', 'name', 'Imasonic'),
(15637, 13002, 'no_lang_code', 'name', 'Integrated Nano-Technologies (United States)'),
(15638, 13003, 'en', 'name', 'St. Anthony’s Hospital'),
(15639, 13004, 'en', 'name', 'Chase Foundation'),
(15640, 13005, 'no_lang_code', 'name', 'Danish Gas Technology Centre (Denmark)'),
(15641, 13006, 'en', 'name', 'DeKalb County School District'),
(15642, 13007, 'no_lang_code', 'name', 'NovaBay Pharmaceuticals (United States)'),
(15643, 13008, 'en', 'name', 'Four Directions Development Corporation'),
(15644, 13009, 'no_lang_code', 'name', 'Ellinogermaniki Agogi'),
(15645, 13010, 'it', 'name', 'Fondazione Intergruppo Italiano Linfomi Onlus'),
(15646, 13011, 'it', 'name', 'Camera di commercio di Milano'),
(15647, 13012, 'en', 'name', 'National Space Grant Alliance'),
(15648, 13013, 'en', 'name', 'Coalition of Immokalee Workers'),
(15649, 13014, 'no_lang_code', 'name', 'Piacenza Cashmere (Italy)'),
(15650, 13015, 'no_lang_code', 'name', 'Wallwork (United Kingdom)'),
(15651, 13016, 'en', 'name', 'Arizona Spinal Cord Injury Association'),
(15652, 13017, 'no_lang_code', 'name', 'Chimar Hellas (Greece)'),
(15653, 13018, 'it', 'name', 'Sardegna Agricoltura'),
(15654, 13019, 'en', 'name', 'Forest Research Institute'),
(15655, 13019, 'pl', 'name', 'Instytut Badawczy Leśnictwa'),
(15656, 13020, 'en', 'name', 'New York Harbor School'),
(15657, 13021, 'no_lang_code', 'name', 'Bƶhler Edelstahl (Austria)'),
(15658, 13022, 'en', 'name', 'Pain Clinic of India'),
(15659, 13023, 'en', 'name', 'Institute for High Energy Physics'),
(15660, 13023, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики высоких ŃŠ½ŠµŃ€Š³ŠøŠ¹'),
(15661, 13024, 'en', 'name', 'Friends of IHES'),
(15662, 13025, 'en', 'name', 'Systema Transport Planning & Engineering Consultants'),
(15663, 13026, 'en', 'name', 'Adventist Health Glendale'),
(15664, 13027, 'no_lang_code', 'name', 'Technova Corporation (United States)'),
(15665, 13028, 'no_lang_code', 'name', 'Zeus Consulting (Greece)'),
(15666, 13029, 'en', 'name', 'Food Bank of Delaware'),
(15667, 13030, 'en', 'name', 'Eurocities'),
(15668, 13031, 'en', 'name', 'American Jewish World Service'),
(15669, 13032, 'no_lang_code', 'name', 'Ericsson (Germany)'),
(15670, 13033, 'no_lang_code', 'name', 'Genogen (United States)'),
(15671, 13034, 'en', 'name', 'Coatings Research Institute'),
(15672, 13035, 'no_lang_code', 'name', 'Coloplast (Denmark)'),
(15673, 13036, 'no_lang_code', 'name', 'Schlumberger (Norway)'),
(15674, 13037, 'nl', 'name', 'Gemeente Rotterdam'),
(15675, 13038, 'en', 'name', 'Egyptian American Medical Center'),
(15676, 13039, 'no_lang_code', 'name', 'Reply (Italy)'),
(15677, 13040, 'no_lang_code', 'name', 'Eurogentec (Belgium)'),
(15678, 13041, 'no_lang_code', 'name', 'ITM Power (United Kingdom)'),
(15679, 13042, 'no_lang_code', 'name', 'Synopsys (Switzerland)'),
(15680, 13043, 'en', 'name', 'San Joaquin Valley Public Health Consortium'),
(15681, 13044, 'no_lang_code', 'name', 'Detection Limit (United States)'),
(15682, 13045, 'el', 'name', '΄πουργείο ΄γείας'),
(15683, 13045, 'en', 'name', 'Ministry of Health'),
(15684, 13046, 'no_lang_code', 'name', 'Epsilon Net (Greece)'),
(15685, 13047, 'no_lang_code', 'name', 'Inburex Consulting'),
(15686, 13048, 'no_lang_code', 'name', 'Kingston Computer Consultancy (United Kingdom)'),
(15687, 13049, 'no_lang_code', 'name', 'Signal Genetics (United States)'),
(15688, 13050, 'no_lang_code', 'name', 'Infineon Technologies (Austria)'),
(15689, 13051, 'no_lang_code', 'name', 'Novacule (United States)'),
(15690, 13052, 'no_lang_code', 'name', 'Veolia (France)'),
(15691, 13053, 'en', 'name', 'Samaritan Hospital'),
(15692, 13054, 'no_lang_code', 'name', 'Synthetic Genomics (United States)'),
(15693, 13055, 'en', 'name', 'Lakes Region General Hospital'),
(15694, 13056, 'en', 'name', 'Challenger Learning Center of Alaska'),
(15695, 13057, 'no_lang_code', 'name', 'Shadow Robot (United Kingdom)'),
(15696, 13058, 'no_lang_code', 'name', 'SATA Application Advanced Technologies (Italy)'),
(15697, 13059, 'en', 'name', 'Furniture Industry Research Association'),
(15698, 13060, 'en', 'name', 'Los Angeles County Office of Education'),
(15699, 13061, 'no_lang_code', 'name', 'MedGenesis Therapeutix (Canada)'),
(15700, 13062, 'en', 'name', 'Lincoln Charter School'),
(15701, 13063, 'en', 'name', 'Children''s Institute of Pittsburgh'),
(15702, 13064, 'en', 'name', 'Gothenburg Municipality'),
(15703, 13064, 'sv', 'name', 'Gƶteborgs Stads'),
(15704, 13065, 'no_lang_code', 'name', 'IRBM Science Park'),
(15705, 13066, 'en', 'name', 'Mather LifeWays'),
(15706, 13067, 'en', 'name', 'Urban Tree Connection'),
(15707, 13068, 'no_lang_code', 'name', 'DiagnoSwiss (Switzerland)'),
(15708, 13069, 'no_lang_code', 'name', 'Google (Ireland)'),
(15709, 13070, 'no_lang_code', 'name', 'STX Europe (France)'),
(15710, 13071, 'no_lang_code', 'name', 'Itaconix (United States)'),
(15711, 13072, 'en', 'name', 'Quest Center for Integrative Health'),
(15712, 13073, 'en', 'name', 'Institutes for Behavior Resources'),
(15713, 13074, 'no_lang_code', 'name', 'Marzotto Group (Italy)'),
(15714, 13075, 'no_lang_code', 'name', 'Tao Systems (United States)'),
(15715, 13076, 'ro', 'name', 'Asociaţia Femeilor de Afaceri'),
(15716, 13077, 'en', 'name', 'Elite Wellness'),
(15717, 13078, 'no_lang_code', 'name', 'Canon (Netherlands)'),
(15718, 13079, 'no_lang_code', 'name', 'CreaGen (United States)'),
(15719, 13080, 'en', 'name', 'Matson & Associates'),
(15720, 13081, 'no_lang_code', 'name', 'Fortum (Finland)'),
(15721, 13082, 'en', 'name', 'Gems of Hope'),
(15722, 13083, 'en', 'name', 'Praxis Spinal Cord Institute'),
(15723, 13083, 'fr', 'name', 'Institut Rick Hansen'),
(15724, 13084, 'no_lang_code', 'name', 'Ascom (Switzerland)'),
(15725, 13085, 'en', 'name', 'Bridging Bionics Foundation'),
(15726, 13086, 'en', 'name', 'Plan International Regional Office of the Americas'),
(15727, 13087, 'en', 'name', 'Avalon University School of Medicine'),
(15728, 13088, 'no_lang_code', 'name', 'Green Heron Tools (United States)'),
(15729, 13089, 'no_lang_code', 'name', 'Re Lab (Italy)'),
(15730, 13090, 'en', 'name', 'Alliance Community Services'),
(15731, 13091, 'en', 'name', 'Community of Mediterranean Universities'),
(15732, 13092, 'no_lang_code', 'name', 'CGI (Netherlands)'),
(15733, 13093, 'no_lang_code', 'name', 'AkibaUhaki Foundation'),
(15734, 13094, 'no_lang_code', 'name', 'Poli Model (Italy)'),
(15735, 13095, 'en', 'name', 'Cumberland County Schools'),
(15736, 13096, 'en', 'name', 'Disability Resource Association'),
(15737, 13097, 'en', 'name', 'Ofcom'),
(15738, 13098, 'no_lang_code', 'name', 'Califia Bio (United States)'),
(15739, 13099, 'no_lang_code', 'name', 'Western Laboratories (United States)'),
(15740, 13100, 'no_lang_code', 'name', 'Biolution (Austria)'),
(15741, 13101, 'no_lang_code', 'name', 'AustriaTech (Austria)'),
(15742, 13102, 'en', 'name', 'Bay Pines Foundation'),
(15743, 13103, 'no_lang_code', 'name', 'Science and Sensors Technologies (United States)'),
(15744, 13104, 'en', 'name', 'Capital Region Action Against Breast Cancer'),
(15745, 13105, 'en', 'name', 'Fund for Scientific Research'),
(15746, 13105, 'fr', 'name', 'Fonds de la Recherche Scientifique'),
(15747, 13106, 'en', 'name', 'CSU Ventures'),
(15748, 13107, 'en', 'name', 'SF LGBT Center'),
(15749, 13108, 'en', 'name', 'Goddard Riverside'),
(15750, 13109, 'no_lang_code', 'name', 'CIMA Software Corporation (United States)'),
(15751, 13110, 'no_lang_code', 'name', 'Prokazyme (Iceland)'),
(15752, 13111, 'en', 'name', 'FirstHealth of the Carolinas'),
(15753, 13112, 'en', 'name', 'Indiana Minority Health Coalition'),
(15754, 13113, 'en', 'name', 'European Broadcasting Union'),
(15755, 13113, 'fr', 'name', 'Union europƩenne de radio-tƩlƩvision'),
(15756, 13114, 'en', 'name', 'Carondelet Health'),
(15757, 13115, 'en', 'name', 'European Materials Research Society'),
(15758, 13116, 'no_lang_code', 'name', 'EMI Construction Quality Control (Hungary)'),
(15759, 13117, 'no_lang_code', 'name', 'Drip Research Technology Services (United States)'),
(15760, 13118, 'en', 'name', 'Coastal Land Trust'),
(15761, 13119, 'es', 'name', 'Fundación Oncohematología Infantil'),
(15762, 13120, 'es', 'name', 'Hospital Donación Francisco Santojanni'),
(15763, 13121, 'no_lang_code', 'name', 'Neuron BioPharma (Spain)'),
(15764, 13122, 'no_lang_code', 'name', 'Epigem (United Kingdom)'),
(15765, 13123, 'en', 'name', 'NeuroLinx Research Institute'),
(15766, 13124, 'en', 'name', 'Achilles International'),
(15767, 13125, 'no_lang_code', 'name', 'Stratton Park Engineering Company (United States)'),
(15768, 13126, 'no_lang_code', 'name', 'Applied Biotechnology Institute'),
(15769, 13127, 'no_lang_code', 'name', 'Johnson & Johnson (United Kingdom)'),
(15770, 13128, 'no_lang_code', 'name', 'Capgemini (France)'),
(15771, 13129, 'no_lang_code', 'name', 'Eyenuk (United States)'),
(15772, 13130, 'en', 'name', 'New Yorkers for Parks'),
(15773, 13131, 'no_lang_code', 'name', 'InferMed'),
(15774, 13132, 'no_lang_code', 'name', 'PathoVacs (United States)'),
(15775, 13133, 'en', 'name', 'Hospice Buffalo'),
(15776, 13134, 'en', 'name', 'San Diego Youth Services'),
(15777, 13135, 'en', 'name', 'Litani River Authority'),
(15778, 13136, 'no_lang_code', 'name', 'Klett Gruppe (Germany)'),
(15779, 13137, 'es', 'name', 'Fundación Arturo López Pérez, Instituto Oncológico FALP'),
(15780, 13138, 'en', 'name', 'Institute e-Austria Timisoara'),
(15781, 13139, 'en', 'name', 'Myotubular Myopathy Resource Group'),
(15782, 13140, 'no_lang_code', 'name', 'Vestaron (United States)'),
(15783, 13141, 'no_lang_code', 'name', 'CAPTEC (Ireland)'),
(15784, 13142, 'no_lang_code', 'name', 'Epigenetix (United States)'),
(15785, 13143, 'en', 'name', 'Healthy Functions'),
(15786, 13144, 'en', 'name', 'Mountain Home Montana'),
(15787, 13145, 'en', 'name', 'Slovak Organization for Research and Development Activities'),
(15788, 13146, 'no_lang_code', 'name', 'IdroGeo'),
(15789, 13147, 'no_lang_code', 'name', 'Sener (Spain)'),
(15790, 13148, 'en', 'name', 'West Hills Community College District'),
(15791, 13149, 'no_lang_code', 'name', 'Sudamin Rohstoff (Germany)'),
(15792, 13150, 'en', 'name', 'Jewish Family Service of San Diego'),
(15793, 13151, 'en', 'name', 'Center for Independent Living of Central Pennsylvania'),
(15794, 13152, 'en', 'name', 'Project Freedom'),
(15795, 13153, 'en', 'name', 'Cherokee Boys Club'),
(15796, 13154, 'en', 'name', 'European Aquaculture Society'),
(15797, 13155, 'en', 'name', 'Media Arts Center San Diego'),
(15798, 13156, 'en', 'name', 'Jewish Women''s Archive'),
(15799, 13157, 'en', 'name', 'Benefis Health System Foundation'),
(15800, 13158, 'en', 'name', 'Northern California Indian Development Council'),
(15801, 13159, 'en', 'name', 'Community Access'),
(15802, 13160, 'no_lang_code', 'name', 'Bio, Tech and Beyond (United States)'),
(15803, 13161, 'en', 'name', 'French Institue of Navigation'),
(15804, 13161, 'fr', 'name', 'Institut FranƧais de Navigation'),
(15805, 13162, 'en', 'name', 'Health Choice Network'),
(15806, 13163, 'en', 'name', 'European Forum of Farm Animal Breeders'),
(15807, 13164, 'no_lang_code', 'name', 'Munogenics (United States)'),
(15808, 13165, 'no_lang_code', 'name', 'Forthnet (Greece)'),
(15809, 13166, 'en', 'name', 'Aquitaine Europe Communication'),
(15810, 13167, 'no_lang_code', 'name', 'Athenese (United States)'),
(15811, 13168, 'no_lang_code', 'name', 'Cognosci (United States)'),
(15812, 13169, 'en', 'name', 'Cardio-Facio-Cutaneous International'),
(15813, 13170, 'en', 'name', 'International Sonoran Desert Alliance'),
(15814, 13171, 'no_lang_code', 'name', 'Trasporti e Territorio'),
(15815, 13172, 'en', 'name', 'Asian Pacific AIDS Intervention Team'),
(15816, 13173, 'en', 'name', 'Divers 4 Heroes'),
(15817, 13174, 'en', 'name', 'Fractured Atlas'),
(15818, 13175, 'no_lang_code', 'name', 'Goodyear (Luxembourg)'),
(15819, 13176, 'en', 'name', 'Marion Local Schools'),
(15820, 13177, 'en', 'name', 'National Museum of Mathematics'),
(15821, 13178, 'no_lang_code', 'name', 'Freedom Photonics (United States)'),
(15822, 13179, 'en', 'name', 'Rowan-Salisbury School System'),
(15823, 13180, 'no_lang_code', 'name', 'Prüf- und Forschungsinstitut Pirmasens (Germany)'),
(15824, 13181, 'en', 'name', 'Greater Baden Medical Services'),
(15825, 13182, 'en', 'name', 'Rowan College at Gloucester County'),
(15826, 13183, 'no_lang_code', 'name', 'NewLink Genetics (United States)'),
(15827, 13184, 'no_lang_code', 'name', 'Ingegneria dei Sistemi (Italy)'),
(15828, 13185, 'ar', 'name', 'Ł…Ų³ŲŖŲ“ŁŁŠŲ§ŲŖ Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŁˆŁŁŠŲ©'),
(15829, 13185, 'en', 'name', 'Menoufia University Hospitals'),
(15830, 13186, 'no_lang_code', 'name', 'OpenLink Software (United Kingdom)'),
(15831, 13187, 'en', 'name', 'Henry Street Settlement'),
(15832, 13188, 'en', 'name', 'Paralyzed Veterans of America, Cal-Diego Chapter'),
(15833, 13189, 'no_lang_code', 'name', 'Nanometics (United States)'),
(15834, 13190, 'en', 'name', 'Pancreatic Cancer Action Network'),
(15835, 13191, 'no_lang_code', 'name', 'Cogne (Italy)'),
(15836, 13192, 'no_lang_code', 'name', 'Wroclaw Research Centre EIT+ (Poland)'),
(15837, 13193, 'en', 'name', 'Institute of Molecular Biology'),
(15838, 13194, 'en', 'name', 'Rush Copley Foundation'),
(15839, 13195, 'en', 'name', 'Institute of Translational Pharmacology'),
(15840, 13195, 'it', 'name', 'Istituto di Farmacologia Traslazionale'),
(15841, 13196, 'en', 'name', 'Environment Park'),
(15842, 13197, 'en', 'name', 'Fresno Metro Ministry'),
(15843, 13198, 'en', 'name', 'Operation Samahan'),
(15844, 13199, 'fr', 'name', 'Forem'),
(15845, 13200, 'no_lang_code', 'name', 'CertiCon (Czechia)'),
(15846, 13201, 'en', 'name', 'PA Breast Cancer Coalition'),
(15847, 13202, 'no_lang_code', 'name', 'Agendia (Netherlands)'),
(15848, 13203, 'en', 'name', 'Negev Foundation'),
(15849, 13204, 'no_lang_code', 'name', 'GDA (United States)'),
(15850, 13205, 'no_lang_code', 'name', 'Mandelli (Italy)'),
(15851, 13206, 'no_lang_code', 'name', 'Space Applications Services (Belgium)'),
(15852, 13207, 'en', 'name', 'Institute for Microstructural Sciences'),
(15853, 13208, 'no_lang_code', 'name', 'Vertilas (Germany)'),
(15854, 13209, 'no_lang_code', 'name', 'Svalbard Global Seed Vault'),
(15855, 13210, 'no_lang_code', 'name', 'TTI (Spain)'),
(15856, 13211, 'en', 'name', 'Cancer Services'),
(15857, 13212, 'en', 'name', 'Rhode Island Department of Administration'),
(15858, 13213, 'no_lang_code', 'name', 'Prism Biolab Corporation (Japan)'),
(15859, 13214, 'no_lang_code', 'name', 'Fidelity Biosciences (United States)'),
(15860, 13215, 'no_lang_code', 'name', 'Irepa Laser (France)'),
(15861, 13216, 'no_lang_code', 'name', 'Pepscan (Netherlands)'),
(15862, 13217, 'en', 'name', 'Illinois CancerCare'),
(15863, 13218, 'en', 'name', 'Center for Biomedical Research of La Rioja'),
(15864, 13218, 'es', 'name', 'Centro de Investigación Biomédica de La Rioja'),
(15865, 13219, 'it', 'name', 'Unioncamere Veneto'),
(15866, 13220, 'en', 'name', 'Polistes Foundation'),
(15867, 13221, 'en', 'name', 'Cobb and Douglas County Community Services Board'),
(15868, 13222, 'en', 'name', 'Changing Life Education Initiative'),
(15869, 13223, 'en', 'name', 'Project Concern International'),
(15870, 13224, 'en', 'name', 'Mercy Medical Center Sioux City'),
(15871, 13225, 'en', 'name', 'Omak School District'),
(15872, 13226, 'no_lang_code', 'name', 'Vichem Chemie (Hungary)'),
(15873, 13227, 'no_lang_code', 'name', 'Belgoprocess (Belgium)'),
(15874, 13228, 'no_lang_code', 'name', 'Castle Group (United Kingdom)'),
(15875, 13229, 'en', 'name', 'St. Charles Hospital'),
(15876, 13230, 'en', 'name', 'Connecticut Center for Advanced Technology'),
(15877, 13231, 'no_lang_code', 'name', 'AMS (Austria)'),
(15878, 13232, 'en', 'name', 'Disabled Sports Eastern Sierra'),
(15879, 13233, 'en', 'name', 'Project Food, Land and People'),
(15880, 13234, 'en', 'name', 'Leather and Tanning Materials Experimental Station'),
(15881, 13234, 'it', 'name', 'Stazione Sperimentale per l''Industria delle Pelli e delle Materie Concianti'),
(15882, 13235, 'nl', 'name', 'Gemeente Den Haag'),
(15883, 13236, 'en', 'name', 'Freedom Service Dogs'),
(15884, 13237, 'no_lang_code', 'name', 'Gas Natural Fenosa (Spain)'),
(15885, 13238, 'en', 'name', 'College of the Ozarks'),
(15886, 13239, 'en', 'name', 'Cancer Care Connection'),
(15887, 13240, 'fr', 'name', 'Observatoire des Sciences et des Techniques'),
(15888, 13241, 'no_lang_code', 'name', 'Databank (Italy)'),
(15889, 13242, 'en', 'name', 'St. David''s Round Rock Medical Center'),
(15890, 13243, 'en', 'name', 'Hays Medical Center'),
(15891, 13244, 'en', 'name', 'Pressing On'),
(15892, 13245, 'en', 'name', 'Greyston'),
(15893, 13246, 'en', 'name', 'India Health Action Trust'),
(15894, 13247, 'de', 'name', 'Rundfunk Berlin-Brandenburg'),
(15895, 13247, 'en', 'name', 'Berlin-Brandenburg Broadcasting'),
(15896, 13248, 'en', 'name', 'Health and Human Services Agency'),
(15897, 13249, 'en', 'name', 'Choate Rosemary Hall'),
(15898, 13250, 'no_lang_code', 'name', 'Delta (Denmark)'),
(15899, 13251, 'no_lang_code', 'name', 'Z4 Energy Systems (United States)'),
(15900, 13252, 'en', 'name', 'Geographical Information System International Group'),
(15901, 13253, 'en', 'name', 'Movember'),
(15902, 13254, 'en', 'name', 'Holistic Management International'),
(15903, 13255, 'en', 'name', 'Lou Ruvo Brain Institute'),
(15904, 13256, 'no_lang_code', 'name', 'Marine Information Service (Netherlands)'),
(15905, 13257, 'en', 'name', 'Hospice By The Bay'),
(15906, 13258, 'en', 'name', 'National Hispanic Council on Aging'),
(15907, 13259, 'no_lang_code', 'name', 'Posiva (Finland)'),
(15908, 13260, 'en', 'name', 'Multiple Myeloma Research Foundation'),
(15909, 13261, 'en', 'name', 'Beth C. Wright Cancer Resource Center'),
(15910, 13262, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за космически ŠøŠ·ŃŠ»ŠµŠ“Š²Š°Š½ŠøŃ към'),
(15911, 13262, 'en', 'name', 'Space Research and Technology Institute'),
(15912, 13263, 'no_lang_code', 'name', 'Pfizer (Spain)'),
(15913, 13264, 'pt', 'name', 'Instituto de Ciências da Terra e do Espaço'),
(15914, 13265, 'it', 'name', 'Laboratorio di Scienze della Cittadinanza'),
(15915, 13266, 'en', 'name', 'Georgia Department of Education'),
(15916, 13267, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по механика'),
(15917, 13267, 'en', 'name', 'Institute of Mechanics'),
(15918, 13268, 'en', 'name', 'Netherlands Standardization Institute'),
(15919, 13268, 'nl', 'name', 'Nederlands Normalisatie Instituut'),
(15920, 13269, 'no_lang_code', 'name', 'Signosis'),
(15921, 13270, 'no_lang_code', 'name', 'Tataa Biocenter (Sweden)'),
(15922, 13271, 'no_lang_code', 'name', 'CDG Therapeutics (United States)'),
(15923, 13272, 'en', 'name', 'AIDS Research Alliance'),
(15924, 13273, 'en', 'name', 'New Horizons Independent Living Center'),
(15925, 13274, 'en', 'name', 'Institute for Music and Neurologic Function'),
(15926, 13275, 'no_lang_code', 'name', 'Science Systems and Applications (United States)'),
(15927, 13276, 'no_lang_code', 'name', 'Taber International (United States)'),
(15928, 13277, 'en', 'name', 'ArtThread Foundation'),
(15929, 13278, 'no_lang_code', 'name', 'Soltech (Belgium)'),
(15930, 13279, 'en', 'name', 'Medical Care Development International'),
(15931, 13280, 'de', 'name', 'Deutsches Jugendinstitut'),
(15932, 13280, 'en', 'name', 'German Youth Institute'),
(15933, 13281, 'no_lang_code', 'name', 'Cerulean Pharma (United States)'),
(15934, 13282, 'en', 'name', 'Tompkins-Seneca-Tioga Board of Cooperative Educational Services'),
(15935, 13283, 'en', 'name', 'Bowery Mission'),
(15936, 13284, 'en', 'name', 'Maryland Agricultural Education Foundation'),
(15937, 13285, 'no_lang_code', 'name', 'CSP Innovazione nelle ICT (Italy)'),
(15938, 13286, 'no_lang_code', 'name', 'Marel (Iceland)'),
(15939, 13287, 'en', 'name', 'Memorial Health System'),
(15940, 13288, 'en', 'name', 'California Adaptive Rowing Program'),
(15941, 13289, 'en', 'name', 'European Federation of Food Science and Technology'),
(15942, 13290, 'en', 'name', 'Continua Health Alliance'),
(15943, 13291, 'en', 'name', 'Neurologic Disease Foundation'),
(15944, 13292, 'en', 'name', 'American Society for Reproductive Immunology'),
(15945, 13293, 'no_lang_code', 'name', 'Inotex (Czechia)'),
(15946, 13294, 'no_lang_code', 'name', 'Scientific Fishery Systems (United States)'),
(15947, 13295, 'en', 'name', 'Mountain Empire Older Citizens'),
(15948, 13296, 'no_lang_code', 'name', 'Grenada National Organisation of Women'),
(15949, 13297, 'en', 'name', 'Public Broadcasting Service'),
(15950, 13298, 'en', 'name', 'Radiant Health Centers'),
(15951, 13299, 'no_lang_code', 'name', 'Terrenew (United States)'),
(15952, 13300, 'no_lang_code', 'name', 'Babcock & Wilcox (United States)'),
(15953, 13301, 'en', 'name', 'Miriam''s Kitchen'),
(15954, 13302, 'en', 'name', 'Central Arkansas Radiation Therapy Institute'),
(15955, 13303, 'no_lang_code', 'name', 'BELECTRIC (Germany)'),
(15956, 13304, 'en', 'name', 'Inter-Psy'),
(15957, 13305, 'no_lang_code', 'name', 'Nutrition Sciences (Belgium)'),
(15958, 13306, 'no_lang_code', 'name', 'Timber Research and Development Association (United Kingdom)'),
(15959, 13307, 'en', 'name', 'Advanced Barber College & Hair Design'),
(15960, 13308, 'en', 'name', 'Centre for Liberal Strategies'),
(15961, 13309, 'en', 'name', 'Norfolk County Agricultural High School'),
(15962, 13310, 'no_lang_code', 'name', 'Intelligent Software Components (Spain)'),
(15963, 13311, 'de', 'name', 'Senatsverwaltung für Stadtentwicklung und Wohnen'),
(15964, 13311, 'en', 'name', 'Senate Department for Urban Development and the Environment'),
(15965, 13312, 'en', 'name', 'Texas Neurology'),
(15966, 13313, 'no_lang_code', 'name', 'EpitoGenesis (United States)'),
(15967, 13314, 'en', 'name', 'Maryland Department of Commerce'),
(15968, 13315, 'en', 'name', 'Texas Nurses Association'),
(15969, 13316, 'es', 'name', 'Asociación de Investigación de la Industria Agroalimentaria'),
(15970, 13317, 'en', 'name', 'Whitman-Walker Health'),
(15971, 13318, 'no_lang_code', 'name', 'Sciessent (United States)'),
(15972, 13319, 'no_lang_code', 'name', 'Cognition Therapeutics (United States)'),
(15973, 13320, 'en', 'name', 'Eagle Mount'),
(15974, 13321, 'az', 'name', 'Վ.Ō±. Õ–Õ”Õ¶Õ”Ö€Õ»ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ուռուցքՔբՔնությՔն Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(15975, 13321, 'en', 'name', 'VA Fanarjian National Center of Oncology'),
(15976, 13322, 'no_lang_code', 'name', 'Agrifutur (Italy)'),
(15977, 13323, 'en', 'name', 'Cody Foundation'),
(15978, 13324, 'fr', 'name', 'Plastipolis'),
(15979, 13325, 'en', 'name', 'Bronson Health Foundation'),
(15980, 13326, 'no_lang_code', 'name', 'Jernkontoret (Sweden)'),
(15981, 13327, 'no_lang_code', 'name', 'Gorge Group (France)'),
(15982, 13328, 'no_lang_code', 'name', 'Pemaquid Mussel Farms (United States)'),
(15983, 13329, 'no_lang_code', 'name', 'Plexcera Therapeutics (United States)'),
(15984, 13330, 'en', 'name', 'Association for Womens Rights in Development'),
(15985, 13331, 'en', 'name', 'Gila River Healthcare'),
(15986, 13332, 'en', 'name', 'Iowa Valley Community College District'),
(15987, 13333, 'fr', 'name', 'Institut National de Recherche Halieutique'),
(15988, 13334, 'en', 'name', 'Filmmakers Collaborative'),
(15989, 13335, 'no_lang_code', 'name', 'Pulsar Informatics (United States)'),
(15990, 13336, 'en', 'name', 'North Coast Opportunities'),
(15991, 13337, 'en', 'name', 'Freeman Sheldon Research Group'),
(15992, 13338, 'en', 'name', 'Areufit Health Services'),
(15993, 13339, 'en', 'name', 'Northwest Regional Planning Commission'),
(15994, 13340, 'sk', 'name', 'Energy Centre Bratislava'),
(15995, 13341, 'no_lang_code', 'name', 'SePRO (United States)'),
(15996, 13342, 'no_lang_code', 'name', 'Revoind Industriale (Italy)'),
(15997, 13343, 'no_lang_code', 'name', 'iKnowHow (Greece)'),
(15998, 13344, 'no_lang_code', 'name', 'Velti (Greece)'),
(15999, 13345, 'en', 'name', 'Great Ormond Street Hospital for Children NHS Foundation Trust'),
(16000, 13346, 'no_lang_code', 'name', 'M Welborn Group (United States)'),
(16001, 13347, 'no_lang_code', 'name', 'Plex Pharmaceuticals (United States)'),
(16002, 13348, 'en', 'name', 'Hospice of Orleans'),
(16003, 13349, 'en', 'name', 'Genesis HealthCare System'),
(16004, 13350, 'en', 'name', 'Dharmais Cancer Hospital'),
(16005, 13350, 'id', 'name', 'RS Kanker Dharmais'),
(16006, 13351, 'bg', 'name', 'Геологически ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "Š”Ń‚Ń€Š°ŃˆŠøŠ¼ŠøŃ€ Димитров"'),
(16007, 13351, 'en', 'name', 'Geological Institute Strashimir Dimitrov'),
(16008, 13352, 'en', 'name', 'Neural Repair Institute'),
(16009, 13353, 'en', 'name', 'Community Medical Centers'),
(16010, 13354, 'no_lang_code', 'name', 'Guger Technologies (Austria)'),
(16011, 13355, 'en', 'name', 'Fieldstone Farm Therapeutic Riding Center'),
(16012, 13356, 'no_lang_code', 'name', 'Deltamarin (Finland)'),
(16013, 13357, 'no_lang_code', 'name', 'Aptiv (Italy)'),
(16014, 13358, 'en', 'name', 'American Jewish Joint Distribution Committee'),
(16015, 13359, 'no_lang_code', 'name', 'Harmonex (United States)'),
(16016, 13360, 'no_lang_code', 'name', 'Lohocla Research Corporation (United States)'),
(16017, 13361, 'no_lang_code', 'name', 'InnoPhage (Portugal)'),
(16018, 13362, 'en', 'name', 'Alpha Omega Veterans Services'),
(16019, 13363, 'es', 'name', 'Ecoserveis'),
(16020, 13364, 'no_lang_code', 'name', 'NKT Therapeutics (United States)'),
(16021, 13365, 'en', 'name', 'Institute of Cell Biology and Neurobiology'),
(16022, 13365, 'it', 'name', 'Istituto di Biologia Cellulare e Neurobiologia'),
(16023, 13366, 'no_lang_code', 'name', 'Herbalife (Australia)'),
(16024, 13367, 'de', 'name', 'Agaplesion Bethanien Krankenhaus'),
(16025, 13368, 'en', 'name', 'National Latina Institute for Reproductive Health'),
(16026, 13369, 'en', 'name', 'Foundation for Integrated Rural Development'),
(16027, 13370, 'no_lang_code', 'name', 'Ficosa International (Spain)'),
(16028, 13371, 'en', 'name', 'God''s Love We Deliver'),
(16029, 13372, 'pt', 'name', 'Sindicato dos Trabalhadores de Escritório'),
(16030, 13373, 'no_lang_code', 'name', 'Technical Design (United States)'),
(16031, 13374, 'en', 'name', 'Eastern Nebraska Wheelchair Athletic Association'),
(16032, 13375, 'no_lang_code', 'name', 'EnteraTech (United States)'),
(16033, 13376, 'en', 'name', 'Iringa Mercy Organization'),
(16034, 13377, 'no_lang_code', 'name', 'AparnaBio (United States)'),
(16035, 13378, 'pt', 'name', 'Instituto Noos'),
(16036, 13379, 'en', 'name', 'Adhikaar'),
(16037, 13380, 'en', 'name', 'Bay Area Pediatric Pulmonary Medical Corporation'),
(16038, 13381, 'no_lang_code', 'name', 'Solvionic (France)'),
(16039, 13382, 'no_lang_code', 'name', 'Energie Baden-Württemberg (Germany)'),
(16040, 13383, 'no_lang_code', 'name', 'StormCenter Communications (United States)'),
(16041, 13384, 'en', 'name', 'Beatitudes Campus'),
(16042, 13385, 'en', 'name', 'Project Walk Orlando'),
(16043, 13386, 'en', 'name', 'Adventist HealthCare'),
(16044, 13387, 'no_lang_code', 'name', 'CVD Technologies (United Kingdom)'),
(16045, 13388, 'en', 'name', 'Columbus City Schools'),
(16046, 13389, 'no_lang_code', 'name', 'ArcelorMittal (Belgium)'),
(16047, 13390, 'en', 'name', 'Hospice of the Valley'),
(16048, 13391, 'no_lang_code', 'name', 'Bureau Veritas (Italy)'),
(16049, 13392, 'fr', 'name', 'Conseil Economique et social de la Region de Bruxelles Capitale, Conseil Ʃconomique et social de la RƩgion de Bruxelles-Capitale'),
(16050, 13392, 'nl', 'name', 'Economische en Sociale Raad voor het Brussels Hoofdstedelijk Gewest'),
(16051, 13393, 'no_lang_code', 'name', 'DairySight (United States)'),
(16052, 13394, 'en', 'name', 'Council on Food, Agricultural and Resource Economics'),
(16053, 13395, 'it', 'name', 'InnovaPuglia'),
(16054, 13396, 'no_lang_code', 'name', 'BioBlast Pharma (Israel)'),
(16055, 13397, 'en', 'name', 'British Association of Public Safety Communications Officials'),
(16056, 13398, 'en', 'name', 'Girl Scouts of the USA'),
(16057, 13399, 'no_lang_code', 'name', 'Tekever (Portugal)'),
(16058, 13400, 'no_lang_code', 'name', 'British Textile Technology Group'),
(16059, 13401, 'en', 'name', 'CancerLINC'),
(16060, 13402, 'en', 'name', 'Christopher and Dana Reeve Foundation'),
(16061, 13403, 'no_lang_code', 'name', 'Air Liquide (France)'),
(16062, 13404, 'en', 'name', 'BioInfoBank Institute'),
(16063, 13405, 'no_lang_code', 'name', 'Alstom (Belgium)'),
(16064, 13406, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Italy)'),
(16065, 13407, 'no_lang_code', 'name', 'Panorama Research (United States)'),
(16066, 13408, 'no_lang_code', 'name', 'ServiceXS (Netherlands)'),
(16067, 13409, 'no_lang_code', 'name', 'Devicix (United States)'),
(16068, 13410, 'no_lang_code', 'name', 'Glialogix (United States)'),
(16069, 13411, 'en', 'name', 'Chicago Heights Park District'),
(16070, 13412, 'no_lang_code', 'name', 'Agrobioinstitute'),
(16071, 13413, 'en', 'name', 'Community Foundation for Northeast Michigan'),
(16072, 13414, 'en', 'name', 'Center for Advanced Diagnostics, Evaluation and Therapeutics'),
(16073, 13415, 'en', 'name', 'Institute of Chemistry and Chemical Technology'),
(16074, 13416, 'en', 'name', 'International Centre for Genetic Engineering and Biotechnology'),
(16075, 13417, 'en', 'name', 'Lexington City Schools'),
(16076, 13418, 'en', 'name', 'Denver School of Nursing'),
(16077, 13419, 'en', 'name', 'Neuchâtel Observatory'),
(16078, 13419, 'fr', 'name', 'Observatoire Cantonal de Neuchâtel'),
(16079, 13420, 'no_lang_code', 'name', 'Dv Tecnologie d''Avanguardia (Italy)'),
(16080, 13421, 'no_lang_code', 'name', 'SignalGeneriX (Cyprus)'),
(16081, 13422, 'no_lang_code', 'name', 'World Winds (United States)'),
(16082, 13423, 'no_lang_code', 'name', 'Stollmann (Germany)'),
(16083, 13424, 'en', 'name', 'Institute for the Application of Geospatial Technology'),
(16084, 13425, 'no_lang_code', 'name', 'Rio Culebra Cooperative (United States)'),
(16085, 13426, 'en', 'name', 'Muslim Community Center Medical Clinic'),
(16086, 13427, 'no_lang_code', 'name', 'Catalyst Pharmaceuticals (United States)'),
(16087, 13428, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Germany)'),
(16088, 13429, 'en', 'name', 'Zenger Farm'),
(16089, 13430, 'en', 'name', 'Maintaining Active Citizens'),
(16090, 13431, 'en', 'name', 'Florida Neuroscience Center'),
(16091, 13432, 'en', 'name', 'Child Abuse Prevention Services of Tuscaloosa'),
(16092, 13433, 'no_lang_code', 'name', 'Vodera (United Kingdom)'),
(16093, 13434, 'no_lang_code', 'name', 'Dillinger Hütte (Germany)'),
(16094, 13435, 'en', 'name', 'Ankhkasta Natural Healing'),
(16095, 13436, 'en', 'name', 'Florida Hospital Medical Group'),
(16096, 13437, 'en', 'name', 'Bristol Bay Area Health Corporation'),
(16097, 13438, 'no_lang_code', 'name', 'NeuroVista (United States)'),
(16098, 13439, 'no_lang_code', 'name', 'Lygos (United States)'),
(16099, 13440, 'no_lang_code', 'name', 'BlueBotics (Switzerland)'),
(16100, 13441, 'no_lang_code', 'name', 'Testaluna'),
(16101, 13442, 'en', 'name', 'Catholic Charities of the Diocese of St. Cloud'),
(16102, 13443, 'no_lang_code', 'name', 'Pera (Denmark)'),
(16103, 13444, 'no_lang_code', 'name', 'Research!America (United States)'),
(16104, 13445, 'no_lang_code', 'name', 'Ansys (France)'),
(16105, 13446, 'no_lang_code', 'name', 'Vodafone (Germany)'),
(16106, 13447, 'en', 'name', 'Museum of Arts and Design'),
(16107, 13448, 'en', 'name', 'Golden Valley Health Centers'),
(16108, 13449, 'en', 'name', 'Erebouni Medical Center'),
(16109, 13450, 'en', 'name', 'Bay Area Community Resources'),
(16110, 13451, 'fr', 'name', 'Centre international de recherche-dƩveloppement sur l''elevage en zone subhumide'),
(16111, 13452, 'fr', 'name', 'Service Public FĆ©dĆ©ral Ɖconomie'),
(16112, 13452, 'nl', 'name', 'Federale Overheidsdienst Economie, K.M.O., Middenstand en Energie'),
(16113, 13453, 'en', 'name', 'OMNI Institute'),
(16114, 13454, 'no_lang_code', 'name', 'Cowi (Denmark)'),
(16115, 13455, 'no_lang_code', 'name', 'Motorola (Germany)'),
(16116, 13456, 'de', 'name', 'Kernkraftwerk Gundremmingen'),
(16117, 13457, 'en', 'name', 'Pilates of Marin'),
(16118, 13458, 'en', 'name', 'North Carolina Society of Hispanic Professionals'),
(16119, 13459, 'no_lang_code', 'name', 'Empolis (Germany)'),
(16120, 13460, 'no_lang_code', 'name', 'INTECS (Italy)'),
(16121, 13461, 'no_lang_code', 'name', 'BAMO International (France)'),
(16122, 13462, 'en', 'name', 'European Journalism Centre'),
(16123, 13463, 'en', 'name', 'Dreams for Kids'),
(16124, 13464, 'no_lang_code', 'name', 'ATLAS Neuroengineering (Belgium)'),
(16125, 13465, 'en', 'name', 'Madison County Public Schools'),
(16126, 13466, 'en', 'name', 'International Road Transport Union'),
(16127, 13467, 'no_lang_code', 'name', 'Bioclear Earth (Netherlands)'),
(16128, 13468, 'en', 'name', 'JourneyCare'),
(16129, 13469, 'en', 'name', 'IPC Healthcare'),
(16130, 13470, 'no_lang_code', 'name', 'Chugachmiut (United States)'),
(16131, 13471, 'no_lang_code', 'name', 'GlobalFoundries (Germany)'),
(16132, 13472, 'no_lang_code', 'name', 'Microfluidic ChipShop (Germany)'),
(16133, 13473, 'no_lang_code', 'name', 'Fibertek (United States)'),
(16134, 13474, 'en', 'name', 'Chula Vista Community Collaborative');
INSERT INTO `ror_settings` VALUES
(16135, 13475, 'en', 'name', 'Ann Arbor Center for Independent Living'),
(16136, 13476, 'en', 'name', 'HeadNorth'),
(16137, 13477, 'no_lang_code', 'name', 'Archer Technicoat Limited (United Kingdom)'),
(16138, 13478, 'no_lang_code', 'name', 'FACC (Austria)'),
(16139, 13479, 'en', 'name', 'American Institute for Voice and Ear Research'),
(16140, 13480, 'no_lang_code', 'name', 'Agri Processing Services (United States)'),
(16141, 13481, 'en', 'name', 'Robotics Education and Competition Foundation'),
(16142, 13482, 'da', 'name', 'Nationalmuseet'),
(16143, 13482, 'en', 'name', 'National Museum of Denmark'),
(16144, 13483, 'en', 'name', 'Athlete''s for Education'),
(16145, 13484, 'no_lang_code', 'name', 'Kyocera (Germany)'),
(16146, 13485, 'en', 'name', 'GardenShare'),
(16147, 13486, 'en', 'name', 'Pacific Gateway Center'),
(16148, 13487, 'en', 'name', 'Community Health Resource Center'),
(16149, 13488, 'en', 'name', 'Eilenburger Electrolysis and Environmental Engineering'),
(16150, 13488, 'no_lang_code', 'name', 'Eilenburger Elektrolyse - und Umwelttechnik (Germany)'),
(16151, 13489, 'no_lang_code', 'name', 'ƅF (Switzerland)'),
(16152, 13490, 'no_lang_code', 'name', 'Epsilon International (Greece)'),
(16153, 13491, 'en', 'name', 'Education in Action'),
(16154, 13492, 'en', 'name', 'Leonia Lions Club'),
(16155, 13493, 'no_lang_code', 'name', 'Modulation Therapeutics (United States)'),
(16156, 13494, 'be', 'name', 'Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŠ°Š½ŃŠŗŃ– навукова-практычны Ń†ŃŠ½Ń‚Ń€ Š“Š·Ń–Ń†ŃŃ‡Š°Š¹ анкалогіі, гематалогіі і Ń–Š¼ŃƒŠ½Š°Š»Š¾Š³Ń–Ń–'),
(16157, 13494, 'en', 'name', 'Belarusian Research Center For Pediatric Oncology and Hematology'),
(16158, 13494, 'ru', 'name', 'Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр Гетской онкологии, гематологии Šø иммунологии'),
(16159, 13495, 'no_lang_code', 'name', 'BRCR Global (Peru)'),
(16160, 13496, 'az', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии имени А.И. ŠšŠ°Ń€Š°ŠµŠ²Š°'),
(16161, 13496, 'en', 'name', 'A.I Karaev Institute of Physiology'),
(16162, 13497, 'en', 'name', 'Planned Parenthood Southeast'),
(16163, 13498, 'en', 'name', 'California Ear Institute'),
(16164, 13499, 'en', 'name', 'Franklin County Schools'),
(16165, 13500, 'en', 'name', 'Children''s Cancer Association'),
(16166, 13501, 'no_lang_code', 'name', 'Carlebach Shul'),
(16167, 13502, 'de', 'name', 'Institut für Energie- und Umweltforschung Heidelberg'),
(16168, 13502, 'en', 'name', 'Institute for Energy and Environmental Research'),
(16169, 13503, 'en', 'name', 'Indian Cancer Society'),
(16170, 13504, 'de', 'name', 'Institut für ökologische Wirtschaftsforschung'),
(16171, 13504, 'en', 'name', 'Institute for Environmental Management and Economics'),
(16172, 13505, 'no_lang_code', 'name', 'SSAB (Sweden)'),
(16173, 13506, 'en', 'name', 'Bridgeport Hospital Foundation'),
(16174, 13507, 'no_lang_code', 'name', 'United Animal Health (United States)'),
(16175, 13508, 'no_lang_code', 'name', 'StratiCELL (Belgium)'),
(16176, 13509, 'en', 'name', 'Hertie School'),
(16177, 13510, 'en', 'name', 'Blank Children''s Hospital'),
(16178, 13511, 'en', 'name', 'Group for Organizational Effectiveness'),
(16179, 13512, 'no_lang_code', 'name', 'Bioarray Genetics (United States)'),
(16180, 13513, 'en', 'name', 'Augusta Victoria Hospital'),
(16181, 13514, 'no_lang_code', 'name', 'Microsharp (United Kingdom)'),
(16182, 13515, 'en', 'name', 'Medanta The Medicity'),
(16183, 13516, 'en', 'name', 'Orelena Hawks Puckett Institute'),
(16184, 13517, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по паралелна обработка'),
(16185, 13517, 'en', 'name', 'Institute for Parallel Processing'),
(16186, 13518, 'en', 'name', 'Illinois Action for Children'),
(16187, 13519, 'en', 'name', 'Bloomfield Science Museum Jerusalem'),
(16188, 13520, 'en', 'name', 'Restorix Foundation'),
(16189, 13521, 'en', 'name', 'National Council on Indepedent Living'),
(16190, 13522, 'en', 'name', 'European Renewable Energy Council'),
(16191, 13523, 'de', 'name', 'Salzgitter AG'),
(16192, 13523, 'no_lang_code', 'name', 'Salzgitter Group (Germany)'),
(16193, 13524, 'no_lang_code', 'name', 'Biojenc (United States)'),
(16194, 13525, 'no_lang_code', 'name', 'Devan Chemicals (Belgium)'),
(16195, 13526, 'en', 'name', 'Children''s Center'),
(16196, 13527, 'en', 'name', 'Swedish Space Corporation'),
(16197, 13528, 'en', 'name', 'Cuyahoga County Juvenile Court'),
(16198, 13529, 'en', 'name', 'Citizens Committee for New York City'),
(16199, 13530, 'no_lang_code', 'name', 'Stadtwerke Straubing (Germany)'),
(16200, 13531, 'en', 'name', 'Children''s Research Triangle'),
(16201, 13532, 'no_lang_code', 'name', 'Coatema (Germany)'),
(16202, 13533, 'no_lang_code', 'name', 'Moerae Matrix (United States)'),
(16203, 13534, 'en', 'name', 'Association House of Chicago'),
(16204, 13535, 'no_lang_code', 'name', 'Podiceps (Netherlands)'),
(16205, 13536, 'el', 'name', '΄πουργείο Γεωργίας'),
(16206, 13536, 'en', 'name', 'Ministry of Agriculture, Natural Resources and Environment'),
(16207, 13537, 'no_lang_code', 'name', 'Edison Pharmaceuticals (United States)'),
(16208, 13538, 'en', 'name', 'Bhaktapur Cancer Hospital'),
(16209, 13538, 'ne', 'name', 'ą¤­ą¤•ą„ą¤¤ą¤Ŗą„ą¤° ą¤•ą„ą¤Æą¤¾ą¤Øą„ą¤øą¤° ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(16210, 13539, 'no_lang_code', 'name', 'Rohde & Schwarz (Germany)'),
(16211, 13540, 'en', 'name', 'Nepal Cancer Hospital and Research Center'),
(16212, 13540, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą„ą¤Æą¤¾ą¤Øą„ą¤øą¤° ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² र ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(16213, 13541, 'en', 'name', 'Communicating for Agriculture Education Programs'),
(16214, 13542, 'no_lang_code', 'name', 'BP (Germany)'),
(16215, 13543, 'no_lang_code', 'name', 'Miltech Hellas (Greece)'),
(16216, 13544, 'de', 'name', 'ZukunftsAgentur Brandenburg'),
(16217, 13544, 'en', 'name', 'Brandenburg Economic Development Board'),
(16218, 13545, 'no_lang_code', 'name', 'Euroquality'),
(16219, 13546, 'en', 'name', 'Breast Cancer Family Foundation'),
(16220, 13547, 'en', 'name', 'Asian American Community Services'),
(16221, 13548, 'no_lang_code', 'name', 'Ontotext (Bulgaria)'),
(16222, 13549, 'en', 'name', 'Delaware AeroSpace Education Foundation'),
(16223, 13550, 'no_lang_code', 'name', 'Integrated Resources Management Company (Malta)'),
(16224, 13551, 'no_lang_code', 'name', 'Uljanik (Croatia)'),
(16225, 13552, 'no_lang_code', 'name', 'Granit Technologies (Switzerland)'),
(16226, 13553, 'en', 'name', 'National Scientific Center for Medical and Biotechnical Research'),
(16227, 13553, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²ŠøŠ¹ центр Š· меГико-біотехнічних проблем'),
(16228, 13554, 'no_lang_code', 'name', 'Eurofins (Denmark)'),
(16229, 13555, 'en', 'name', 'Minnesota Agriculture in the Classroom Foundation'),
(16230, 13556, 'no_lang_code', 'name', 'SSP Consult Beratende Ingenieure (Germany)'),
(16231, 13557, 'en', 'name', 'Habilitative Systems'),
(16232, 13558, 'no_lang_code', 'name', 'Zanasi & Partners (Italy)'),
(16233, 13559, 'en', 'name', 'Memorial Hermann'),
(16234, 13560, 'no_lang_code', 'name', 'Alten (France)'),
(16235, 13561, 'en', 'name', 'San Diego American Indian Health Center'),
(16236, 13562, 'en', 'name', 'Anna C. Scott School'),
(16237, 13563, 'en', 'name', 'Mariposa Community Health Center'),
(16238, 13564, 'no_lang_code', 'name', 'Ernst & Young (Israel)'),
(16239, 13565, 'en', 'name', 'European Photovoltaic Industry Association'),
(16240, 13566, 'en', 'name', 'Wilshire Health and Community Services'),
(16241, 13567, 'en', 'name', 'Hunts Point Alliance for Children'),
(16242, 13568, 'en', 'name', 'Joni and Friends'),
(16243, 13569, 'en', 'name', 'CAPEable Adventures'),
(16244, 13570, 'no_lang_code', 'name', 'Alpha Scents (United States)'),
(16245, 13571, 'no_lang_code', 'name', 'TÜV SÜD (United Kingdom)'),
(16246, 13572, 'de', 'name', 'Gesellschaft fuer Wirtschaftliche Strukturforschung'),
(16247, 13572, 'en', 'name', 'Institute of Economic Structures Research'),
(16248, 13573, 'en', 'name', 'Migrant Clinicians Network'),
(16249, 13574, 'no_lang_code', 'name', 'ODTÜ Teknokent (Turkey)'),
(16250, 13575, 'en', 'name', 'CareerSource Brevard'),
(16251, 13576, 'it', 'name', 'CentroScienza Onlus'),
(16252, 13577, 'en', 'name', 'Children''s Leukaemia Research Project'),
(16253, 13578, 'en', 'name', 'San Francisco AIDS Foundation'),
(16254, 13579, 'en', 'name', 'Millennium Charter Academy'),
(16255, 13580, 'no_lang_code', 'name', 'InConTec (Germany)'),
(16256, 13581, 'no_lang_code', 'name', 'Caixa MƔgica Software (Portugal)'),
(16257, 13582, 'en', 'name', 'Louisiana Art & Science Museum'),
(16258, 13583, 'en', 'name', 'Mecosta County Medical Center'),
(16259, 13584, 'no_lang_code', 'name', 'Plant Integrity (United Kingdom)'),
(16260, 13585, 'en', 'name', 'Newark Community Health Centers'),
(16261, 13586, 'no_lang_code', 'name', 'Cronus (United States)'),
(16262, 13587, 'en', 'name', 'Aldersgate Camp and Retreat Center'),
(16263, 13588, 'en', 'name', 'Pacific Cancer Foundation'),
(16264, 13589, 'no_lang_code', 'name', 'TomTom (Netherlands)'),
(16265, 13590, 'en', 'name', 'Centre for Science, Society and Citizenship'),
(16266, 13591, 'no_lang_code', 'name', 'Infocarto'),
(16267, 13592, 'no_lang_code', 'name', 'FISBA OPTIK (Switzerland)'),
(16268, 13593, 'en', 'name', 'Sound Watershed Consulting'),
(16269, 13594, 'en', 'name', 'Southside Community Land Trust'),
(16270, 13595, 'no_lang_code', 'name', 'Advanced Imaging Projects (United States)'),
(16271, 13596, 'en', 'name', 'European Association for the Promotion of Cogeneration'),
(16272, 13597, 'en', 'name', 'International Center of New York'),
(16273, 13598, 'en', 'name', 'UDAAN for the Disabled'),
(16274, 13599, 'en', 'name', 'Lupus Research Institute'),
(16275, 13600, 'no_lang_code', 'name', 'Nodality (United States)'),
(16276, 13601, 'en', 'name', 'Breast Cancer Foundation of the Ozarks'),
(16277, 13602, 'en', 'name', 'Organic Research Centre'),
(16278, 13603, 'en', 'name', 'Children with Cancer UK'),
(16279, 13604, 'ro', 'name', 'Institutul Naţional de Cercetare Dezvoltare Marină Grigore Antipa'),
(16280, 13605, 'no_lang_code', 'name', 'Montana Gluten Free (United States)'),
(16281, 13606, 'en', 'name', 'Wilson''s Cedar Point Farm'),
(16282, 13607, 'en', 'name', 'Centre for Omic Sciences'),
(16283, 13608, 'en', 'name', 'Institute for Earth Science Research and Education'),
(16284, 13609, 'no_lang_code', 'name', 'WorldFish'),
(16285, 13610, 'no_lang_code', 'name', 'UtvecklingsbyrƄn'),
(16286, 13611, 'en', 'name', 'San Joaquin County Public Health Services'),
(16287, 13612, 'en', 'name', 'Breast Cancer Help'),
(16288, 13613, 'no_lang_code', 'name', 'Bee Alert Technology (United States)'),
(16289, 13614, 'no_lang_code', 'name', 'TÜV (Austria)'),
(16290, 13615, 'en', 'name', 'Autism Speaks'),
(16291, 13616, 'no_lang_code', 'name', 'Hottinger Baldwin Messtechnik (Portugal)'),
(16292, 13617, 'no_lang_code', 'name', 'Ericsson (Croatia)'),
(16293, 13618, 'fr', 'name', 'Forêt Méditerranéenne'),
(16294, 13619, 'no_lang_code', 'name', 'Rakuten (United States)'),
(16295, 13620, 'en', 'name', 'Pike High School'),
(16296, 13621, 'en', 'name', 'Electronic Chips & Systems Design Initiative'),
(16297, 13622, 'no_lang_code', 'name', 'ARMGO Pharma (United States)'),
(16298, 13623, 'no_lang_code', 'name', 'Enkam (Denmark)'),
(16299, 13624, 'en', 'name', 'Rapides Regional Medical Center'),
(16300, 13625, 'en', 'name', 'Association to Benefit Children'),
(16301, 13626, 'no_lang_code', 'name', 'Eicas Automazione (Italy)'),
(16302, 13627, 'en', 'name', 'New Wave Innovation'),
(16303, 13628, 'fr', 'name', 'SociƩtƩ du Canal de Provence'),
(16304, 13629, 'no_lang_code', 'name', 'Industrial Design Consultancy'),
(16305, 13630, 'no_lang_code', 'name', 'NanoBioMatters (Spain)'),
(16306, 13631, 'no_lang_code', 'name', 'Affinityfilms (United States)'),
(16307, 13632, 'en', 'name', 'Lambrakis Research Foundation'),
(16308, 13633, 'en', 'name', 'California Institute For Rural Studies'),
(16309, 13634, 'en', 'name', 'Ministry of Food Agriculture and Livestock'),
(16310, 13634, 'tr', 'name', 'Türkiye Cumhuriyeti Gıda, Tarım ve Hayvancılık Bakanlığı'),
(16311, 13635, 'en', 'name', 'OAK Orthopedics'),
(16312, 13636, 'no_lang_code', 'name', 'Energid Technologies (United States)'),
(16313, 13637, 'no_lang_code', 'name', 'Raffinerie Tirlemontoise (Belgium)'),
(16314, 13638, 'en', 'name', 'Ormylia Foundation'),
(16315, 13639, 'no_lang_code', 'name', 'Regen BioPharma (United States)'),
(16316, 13640, 'no_lang_code', 'name', 'Sociedade Portuguesa de Inovação'),
(16317, 13641, 'no_lang_code', 'name', 'Lenzing (Austria)'),
(16318, 13642, 'no_lang_code', 'name', 'JCP Connect (France)'),
(16319, 13643, 'en', 'name', 'Community Farm Alliance'),
(16320, 13644, 'en', 'name', 'Institute for Advanced Learning and Research'),
(16321, 13645, 'en', 'name', 'Cranfield Impact Centre'),
(16322, 13646, 'no_lang_code', 'name', 'Kivulini Women’s Rights Organisation'),
(16323, 13647, 'en', 'name', 'Exercise and Survivorship Education Cancer Foundation'),
(16324, 13648, 'no_lang_code', 'name', 'Centus'),
(16325, 13649, 'no_lang_code', 'name', 'Kansas Environmental Management Associates (United States)'),
(16326, 13650, 'it', 'name', 'Fondazione Umberto Di Mario'),
(16327, 13651, 'no_lang_code', 'name', 'ResilTech (Italy)'),
(16328, 13652, 'en', 'name', 'Newton-Conover Health and Science High School'),
(16329, 13653, 'no_lang_code', 'name', 'ASIO spol (Czechia)'),
(16330, 13654, 'en', 'name', 'The Children''s Museum'),
(16331, 13655, 'el', 'name', '΄πουργείο Εθνικής Άμυνας'),
(16332, 13655, 'en', 'name', 'Ministry of National Defence'),
(16333, 13656, 'no_lang_code', 'name', 'SMA Solar Technology (Germany)'),
(16334, 13657, 'en', 'name', 'Champions Made From Adversity'),
(16335, 13658, 'no_lang_code', 'name', 'Holografika (Hungary)'),
(16336, 13659, 'en', 'name', 'Dempsey Center'),
(16337, 13660, 'en', 'name', 'Greek Atomic Energy Commission'),
(16338, 13661, 'en', 'name', 'American Friends of Tel Aviv University'),
(16339, 13662, 'en', 'name', 'Paraguayan Center for Population Studies'),
(16340, 13662, 'es', 'name', 'Centro Paraguayo de Estudios de Población -'),
(16341, 13663, 'en', 'name', 'Immigrant and Refugee Community Organization'),
(16342, 13664, 'en', 'name', 'College of the Desert'),
(16343, 13665, 'no_lang_code', 'name', 'Archimedia (Greece)'),
(16344, 13666, 'en', 'name', 'Kingsley House'),
(16345, 13667, 'nl', 'name', 'Gemeente Eindhoven'),
(16346, 13668, 'en', 'name', 'Challenged Athletes Foundation'),
(16347, 13669, 'en', 'name', 'Public Safety Communication Europe Forum'),
(16348, 13670, 'en', 'name', 'State Higher Vocational School in Nowy Sacz'),
(16349, 13670, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Nowym Sączu'),
(16350, 13671, 'en', 'name', 'Day Kimball Healthcare'),
(16351, 13672, 'en', 'name', 'HER2 Support Group'),
(16352, 13673, 'no_lang_code', 'name', 'Danaos (Cyprus)'),
(16353, 13674, 'no_lang_code', 'name', 'Galapagos (Netherlands)'),
(16354, 13675, 'en', 'name', 'Assistive Technology of Alaska'),
(16355, 13676, 'en', 'name', 'Kennedy Memorial Hospital'),
(16356, 13677, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒĻ‚ ĪĪ·ĪæĪ³Ī½ĻŽĪ¼Ļ‰Ī½'),
(16357, 13677, 'en', 'name', 'Hellenic Register of Shipping'),
(16358, 13678, 'en', 'name', 'HopeLab'),
(16359, 13679, 'en', 'name', 'Project Walk Paralysis Recovery Centers'),
(16360, 13680, 'en', 'name', 'Daily Bread Soup Kitchen'),
(16361, 13681, 'en', 'name', 'Hospice Nepal'),
(16362, 13682, 'en', 'name', 'Friedreich''s Ataxia Research Alliance'),
(16363, 13683, 'en', 'name', 'Cloud Security Alliance'),
(16364, 13684, 'en', 'name', 'Association for Driver Rehabilitation Specialists'),
(16365, 13685, 'no_lang_code', 'name', 'Gesellschaft für Nuklear Service (Germany)'),
(16366, 13686, 'en', 'name', 'I''m Still Here Foundation'),
(16367, 13687, 'no_lang_code', 'name', 'ASM Centre for Research and Analysis Market (Poland)'),
(16368, 13687, 'pl', 'name', 'ASM - Centrum Badań i Analiz Rynku Sp. z oo'),
(16369, 13688, 'en', 'name', 'Institute of Biomedical Technologies'),
(16370, 13688, 'it', 'name', 'Istituto di Tecnologie Biomediche'),
(16371, 13689, 'no_lang_code', 'name', 'Tecnologia Energia Ambiente Materiali (Italy)'),
(16372, 13690, 'en', 'name', 'Thessaloniki Port Authority'),
(16373, 13691, 'en', 'name', 'Red Cloud Indian School'),
(16374, 13692, 'no_lang_code', 'name', 'CuraVac (United States)'),
(16375, 13693, 'en', 'name', 'Chronic Disease Fund'),
(16376, 13694, 'no_lang_code', 'name', 'NAMSA (France)'),
(16377, 13695, 'en', 'name', 'Arie Crown Hebrew Day School'),
(16378, 13696, 'en', 'name', 'Fridtjof Nansen Institute'),
(16379, 13697, 'en', 'name', 'Detroit Clinical Research Center'),
(16380, 13698, 'en', 'name', 'Plaza Community Services'),
(16381, 13699, 'en', 'name', 'Ovarian Cancer Institute'),
(16382, 13700, 'no_lang_code', 'name', 'AFRY (Sweden)'),
(16383, 13701, 'no_lang_code', 'name', 'Polkom Badania'),
(16384, 13702, 'no_lang_code', 'name', 'Ingenieurgruppe IVV (Germany)'),
(16385, 13703, 'en', 'name', 'American Society for Gravitational and Space Research'),
(16386, 13704, 'en', 'name', 'Jamestown Education Foundation'),
(16387, 13705, 'en', 'name', 'Alameda County Office of Education'),
(16388, 13706, 'no_lang_code', 'name', 'Bayer (Greece)'),
(16389, 13707, 'en', 'name', 'Alpha One'),
(16390, 13708, 'en', 'name', 'Mendocino Community Health Clinic'),
(16391, 13709, 'en', 'name', 'American Diabetes Association'),
(16392, 13710, 'no_lang_code', 'name', 'Aptitude Medical Systems'),
(16393, 13711, 'no_lang_code', 'name', 'Siemens (Italy)'),
(16394, 13712, 'no_lang_code', 'name', 'EmergenTec (Austria)'),
(16395, 13713, 'de', 'name', 'Fraunhofer-Institut für Digitale Medizin'),
(16396, 13713, 'en', 'name', 'Fraunhofer Institute for Digital Medicine'),
(16397, 13714, 'en', 'name', 'Edith P. Wright Breast Cancer Foundation'),
(16398, 13715, 'en', 'name', 'Delaware Breast Cancer Coalition'),
(16399, 13716, 'en', 'name', 'St Peter''s Hospital'),
(16400, 13717, 'no_lang_code', 'name', 'Express Scripts Holding Company (United States)'),
(16401, 13718, 'no_lang_code', 'name', 'Agrivida (United States)'),
(16402, 13719, 'no_lang_code', 'name', 'User Interface Design (Germany)'),
(16403, 13720, 'en', 'name', 'Vernon Verona Sherrill School District'),
(16404, 13721, 'no_lang_code', 'name', 'Sistemi Innovativi per Il Controllo del Traffico Aereo'),
(16405, 13722, 'no_lang_code', 'name', 'Candy’s Place'),
(16406, 13723, 'no_lang_code', 'name', 'Warrant Hub (Italy)'),
(16407, 13724, 'en', 'name', 'Greater Los Angeles Agency on Deafness'),
(16408, 13725, 'en', 'name', 'Pal-O-Mine Equestrian'),
(16409, 13726, 'en', 'name', 'Minnesota Department of Corrections'),
(16410, 13727, 'en', 'name', 'Health Research Alliance'),
(16411, 13728, 'en', 'name', 'Centre for Research in Pure and Applied Mathematics'),
(16412, 13728, 'it', 'name', 'Centro di Ricerca in Matematica Pura ed Applicata'),
(16413, 13729, 'no_lang_code', 'name', 'TessArae (United States)'),
(16414, 13730, 'no_lang_code', 'name', 'Sony (United Kingdom)'),
(16415, 13731, 'en', 'name', 'American Society of Clinical Oncology'),
(16416, 13732, 'no_lang_code', 'name', 'Xpand Biotechnology (Netherlands)'),
(16417, 13733, 'no_lang_code', 'name', 'Noxxon Pharma (Germany)'),
(16418, 13734, 'no_lang_code', 'name', 'Dbe Technology (Germany)'),
(16419, 13735, 'no_lang_code', 'name', 'MEO (Portugal)'),
(16420, 13736, 'en', 'name', 'Journey Forward'),
(16421, 13737, 'it', 'name', 'Progemisa'),
(16422, 13738, 'en', 'name', 'Firelands Regional Medical Center'),
(16423, 13739, 'en', 'name', 'McWane Science Center'),
(16424, 13740, 'no_lang_code', 'name', 'GATC Biotech (Germany)'),
(16425, 13741, 'en', 'name', 'San Francisco VA Health Care System'),
(16426, 13742, 'en', 'name', 'National Center for Appropriate Technology'),
(16427, 13743, 'no_lang_code', 'name', 'Kongsberg Satellite Services (Norway)'),
(16428, 13744, 'it', 'name', 'Synesis'),
(16429, 13745, 'no_lang_code', 'name', 'Norsk Hydro (Germany)'),
(16430, 13746, 'en', 'name', 'Farmworker Association of Florida'),
(16431, 13747, 'no_lang_code', 'name', 'System Simulation (United Kingdom)'),
(16432, 13748, 'en', 'name', 'Texas Freedom Network'),
(16433, 13749, 'en', 'name', 'Cancer Connection'),
(16434, 13750, 'en', 'name', 'Mid-Atlantic Broadband Cooperative'),
(16435, 13751, 'no_lang_code', 'name', 'Metallopharm (United States)'),
(16436, 13752, 'no_lang_code', 'name', 'United Technologies Corporation (Poland)'),
(16437, 13753, 'en', 'name', 'Lady Mavericks Wheelchair Basketball'),
(16438, 13754, 'en', 'name', 'Center for Development Services'),
(16439, 13755, 'en', 'name', 'California Hospital Medical Center Foundation'),
(16440, 13756, 'no_lang_code', 'name', 'Hillhurst Biopharmaceuticals (United States)'),
(16441, 13757, 'en', 'name', 'Faxton St. Luke''s Healthcare'),
(16442, 13758, 'no_lang_code', 'name', 'BearingPoint (Austria)'),
(16443, 13759, 'en', 'name', 'Mobility Unlimited'),
(16444, 13760, 'no_lang_code', 'name', 'Carolus Therapeutics (United States)'),
(16445, 13761, 'en', 'name', 'ECO City Farms'),
(16446, 13762, 'no_lang_code', 'name', 'Walt Disney (Switzerland)'),
(16447, 13763, 'no_lang_code', 'name', 'Mycosynthetix (United States)'),
(16448, 13764, 'en', 'name', 'Motion Picture & Television Fund'),
(16449, 13765, 'en', 'name', 'Cancer Services Network'),
(16450, 13766, 'en', 'name', 'Mendocino County AIDS / Viral Hepatitis Network'),
(16451, 13767, 'no_lang_code', 'name', 'Custom Data (United States)'),
(16452, 13768, 'no_lang_code', 'name', 'LaVision (Germany)'),
(16453, 13769, 'en', 'name', 'Egyptian Atomic Energy Authority'),
(16454, 13770, 'en', 'name', 'Southwestern Indian Polytechnic Institute'),
(16455, 13771, 'no_lang_code', 'name', 'CuriRx (United States)'),
(16456, 13772, 'no_lang_code', 'name', 'Eurotech (Italy)'),
(16457, 13773, 'en', 'name', 'Odyssey School'),
(16458, 13774, 'no_lang_code', 'name', 'Neurosoft (Poland)'),
(16459, 13775, 'en', 'name', 'Elks Rehabilitation Hospital'),
(16460, 13776, 'no_lang_code', 'name', 'KLA (Israel)'),
(16461, 13777, 'en', 'name', 'Arkansas Prostate Cancer Foundation'),
(16462, 13778, 'en', 'name', 'Dublin Independent School District'),
(16463, 13779, 'en', 'name', 'Nemours Children''s Clinic'),
(16464, 13780, 'en', 'name', 'Mission Neighborhood Health Center'),
(16465, 13781, 'en', 'name', 'Kennebec Valley Community College'),
(16466, 13782, 'no_lang_code', 'name', 'Prover Technology (Sweden)'),
(16467, 13783, 'en', 'name', 'Gardner''s House'),
(16468, 13784, 'en', 'name', 'HYDROMOD Scientific Consulting'),
(16469, 13785, 'en', 'name', 'New Beginnings Community Center'),
(16470, 13786, 'en', 'name', 'Florida State Association of Rehabilitation Nurses'),
(16471, 13787, 'en', 'name', 'Eureka Scientific'),
(16472, 13788, 'no_lang_code', 'name', 'Transports Metropolitans de Barcelona (Spain)'),
(16473, 13789, 'en', 'name', 'VGB PowerTech'),
(16474, 13790, 'no_lang_code', 'name', 'Air Vehicle Integrated Design (United States)'),
(16475, 13791, 'en', 'name', 'London Borough of Southwark'),
(16476, 13792, 'en', 'name', 'American Forage and Grassland Council'),
(16477, 13793, 'en', 'name', 'ACTION'),
(16478, 13794, 'en', 'name', 'Foundation Medical Partners'),
(16479, 13795, 'en', 'name', 'California Hospital Association'),
(16480, 13796, 'en', 'name', 'Discovery Cube Orange County'),
(16481, 13797, 'no_lang_code', 'name', 'Nippon Sheet Glass (United Kingdom)'),
(16482, 13798, 'no_lang_code', 'name', 'Xylem (United States)'),
(16483, 13799, 'no_lang_code', 'name', 'Oahu Community Recycling (United States)'),
(16484, 13800, 'no_lang_code', 'name', 'NET Nowak Energie & Technologie (Switzerland)'),
(16485, 13801, 'no_lang_code', 'name', 'Element Energy (United Kingdom)'),
(16486, 13802, 'en', 'name', 'North Shore Pro Musica'),
(16487, 13803, 'no_lang_code', 'name', 'Assured Bio (United States)'),
(16488, 13804, 'en', 'name', 'Texoma Neurology Associates'),
(16489, 13805, 'en', 'name', 'National Association of E. E. Smith Alumni and Friends'),
(16490, 13806, 'en', 'name', 'North Central Florida Neurodiagnostic Services'),
(16491, 13807, 'en', 'name', 'Capital Caring'),
(16492, 13808, 'no_lang_code', 'name', 'TTTech Computertechnik (Austria)'),
(16493, 13809, 'en', 'name', 'Community Cancer Center'),
(16494, 13810, 'en', 'name', 'IBM Research - Ireland'),
(16495, 13811, 'no_lang_code', 'name', 'Fordesi (Portugal)'),
(16496, 13812, 'en', 'name', 'EspeRare Foundation'),
(16497, 13813, 'en', 'name', 'Access Northern California'),
(16498, 13814, 'en', 'name', 'Council on Alcohol and Drug Abuse Coastal Bend'),
(16499, 13815, 'en', 'name', 'Great Lakes Science Center'),
(16500, 13816, 'no_lang_code', 'name', 'Quantalux (United States)'),
(16501, 13817, 'no_lang_code', 'name', 'SocietĆ  Esercizi Aeroportuali (Italy)'),
(16502, 13818, 'en', 'name', 'Newport Festivals Foundation'),
(16503, 13819, 'en', 'name', 'Intractable Childhood Epilepsy Alliance'),
(16504, 13820, 'no_lang_code', 'name', 'Creative Scientist (United States)'),
(16505, 13821, 'no_lang_code', 'name', 'ViaSim Solutions'),
(16506, 13822, 'no_lang_code', 'name', 'NX PharmaGen (United States)'),
(16507, 13823, 'en', 'name', 'Metropolitan Detroit Research and Education Foundation'),
(16508, 13824, 'en', 'name', 'Plumas Rural Services'),
(16509, 13825, 'en', 'name', 'Sitka Sound Science Center'),
(16510, 13826, 'en', 'name', 'Poly Prep Country Day School'),
(16511, 13827, 'en', 'name', 'Project Empower'),
(16512, 13828, 'no_lang_code', 'name', 'Napo Pharmaceuticals (United States)'),
(16513, 13829, 'en', 'name', 'Patient Advocate Foundation'),
(16514, 13830, 'no_lang_code', 'name', 'MerLion Pharma (Germany)'),
(16515, 13831, 'en', 'name', 'Active Disabled Americans'),
(16516, 13832, 'no_lang_code', 'name', 'Blueroof Technologies (United States)'),
(16517, 13833, 'en', 'name', 'Durham County Department of Public Health'),
(16518, 13834, 'no_lang_code', 'name', 'Mitsubishi Electric (Netherlands)'),
(16519, 13835, 'no_lang_code', 'name', 'Elyros (Belgium)'),
(16520, 13836, 'en', 'name', 'Land Stewardship Project'),
(16521, 13837, 'no_lang_code', 'name', 'TransGenada (United States)'),
(16522, 13838, 'no_lang_code', 'name', 'Coastside Bio Resources (United States)'),
(16523, 13839, 'no_lang_code', 'name', 'BlueSky Designs (United States)'),
(16524, 13840, 'en', 'name', 'Asian Services In Action'),
(16525, 13841, 'en', 'name', 'Living Classrooms'),
(16526, 13842, 'en', 'name', 'Ability Found'),
(16527, 13843, 'en', 'name', 'Nueva Vida'),
(16528, 13844, 'no_lang_code', 'name', 'Cambridge CMOS Sensors (United Kingdom)'),
(16529, 13845, 'no_lang_code', 'name', 'Ingenieurbüro Kleehammer Gruppe (Germany)'),
(16530, 13846, 'no_lang_code', 'name', 'Serious Games Interactive (Denmark)'),
(16531, 13847, 'no_lang_code', 'name', 'Airborne International (Netherlands)'),
(16532, 13848, 'no_lang_code', 'name', 'CropDesign (Belgium)'),
(16533, 13849, 'fr', 'name', 'SociƩtƩ FranƧaise de CƩramique'),
(16534, 13850, 'it', 'name', 'Azienda Sanitaria Locale N. 2 Savonese'),
(16535, 13851, 'pt', 'name', 'Promundo'),
(16536, 13852, 'en', 'name', 'Leukemia and Lymphoma Society'),
(16537, 13853, 'no_lang_code', 'name', 'Privo Technologies (United States)'),
(16538, 13854, 'en', 'name', 'Broward County Public Schools'),
(16539, 13855, 'bg', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠž ŠŸŠžŠ§Š’ŠžŠ—ŠŠŠŠ˜Š• "ŠŠ˜ŠšŠžŠ›Š ŠŸŠ£ŠØŠšŠŠ ŠžŠ’"'),
(16540, 13855, 'en', 'name', 'Institute of Soil Science ā€œNikola Poushkarovā€'),
(16541, 13856, 'no_lang_code', 'name', 'Micronic Technologies (United States)'),
(16542, 13857, 'en', 'name', 'Freedom to Live'),
(16543, 13858, 'no_lang_code', 'name', 'SpaceWorks Enterprises (United States)'),
(16544, 13859, 'en', 'name', 'Harry Gregg Foundation'),
(16545, 13860, 'no_lang_code', 'name', 'NanoWorld Services (Germany)'),
(16546, 13861, 'en', 'name', 'Our Bodies Ourselves'),
(16547, 13862, 'no_lang_code', 'name', 'Avecia (United Kingdom)'),
(16548, 13863, 'en', 'name', 'Amsterdam Economic Board'),
(16549, 13864, 'no_lang_code', 'name', 'HW Communications (United Kingdom)'),
(16550, 13865, 'el', 'name', 'Ελληνική Αεροπορική Βιομηχανία'),
(16551, 13865, 'no_lang_code', 'name', 'Hellenic Aerospace Industry (Greece)'),
(16552, 13866, 'no_lang_code', 'name', 'Enerdata (France)'),
(16553, 13867, 'no_lang_code', 'name', 'North West Textiles Network (United Kingdom)'),
(16554, 13868, 'en', 'name', 'Rebuilding Together NYC'),
(16555, 13869, 'no_lang_code', 'name', 'HEAD Acoustics (Germany)'),
(16556, 13870, 'en', 'name', 'Farmers Legal Action Group'),
(16557, 13871, 'en', 'name', 'Cancer Institute of Florida'),
(16558, 13872, 'de', 'name', 'Wiener Institut für Internationale Wirtschaftsvergleiche'),
(16559, 13872, 'en', 'name', 'Vienna Institute for International Economic Studies'),
(16560, 13873, 'no_lang_code', 'name', 'Rubicon Foods (United States)'),
(16561, 13874, 'en', 'name', 'North Shore Animal League America'),
(16562, 13875, 'en', 'name', 'Lucia''s Angels'),
(16563, 13876, 'no_lang_code', 'name', 'Ariadne Diagnostics (United States)'),
(16564, 13877, 'no_lang_code', 'name', 'Mutadis'),
(16565, 13878, 'en', 'name', 'New England Handicapped Sports Association'),
(16566, 13879, 'no_lang_code', 'name', 'Saniona (Denmark)'),
(16567, 13880, 'no_lang_code', 'name', 'CPL Scientific Publishing Services (United Kingdom)'),
(16568, 13881, 'no_lang_code', 'name', 'Q-Biologicals (Belgium)'),
(16569, 13882, 'en', 'name', 'Interdisciplinary Centre for Comparative Research Foundation'),
(16570, 13883, 'no_lang_code', 'name', 'AstraZeneca (Canada)'),
(16571, 13884, 'en', 'name', 'Mineral Industry Research Organisation'),
(16572, 13885, 'en', 'name', 'Agency of Sustainable Development and Eurointegration'),
(16573, 13886, 'no_lang_code', 'name', 'IP Israel Patents (Israel)'),
(16574, 13887, 'el', 'name', '΄πουργείο Ψηφιακής Ī”Ī¹Ī±ĪŗĻ…Ī²Ī­ĻĪ½Ī·ĻƒĪ·Ļ‚'),
(16575, 13887, 'en', 'name', 'Ministry of Digital Governance'),
(16576, 13888, 'no_lang_code', 'name', 'Nanoplus (Germany)'),
(16577, 13889, 'no_lang_code', 'name', 'ArtHaus (Macedonia)'),
(16578, 13890, 'no_lang_code', 'name', 'Roughan & O''Donovan Innovative Solutions'),
(16579, 13891, 'en', 'name', 'Community Cancer Services'),
(16580, 13892, 'en', 'name', 'Livestrong Foundation'),
(16581, 13893, 'en', 'name', 'Atlantic Cancer Research Institute'),
(16582, 13893, 'fr', 'name', 'Institut Atlantique de recherche sur le cancer'),
(16583, 13894, 'no_lang_code', 'name', 'GKN (Sweden)'),
(16584, 13895, 'en', 'name', 'Pathways'),
(16585, 13896, 'no_lang_code', 'name', 'ProCrysta Biologix (United States)'),
(16586, 13897, 'no_lang_code', 'name', 'Youris.com (Belgium)'),
(16587, 13898, 'en', 'name', 'Southwest Georgia Project for Community Education'),
(16588, 13899, 'en', 'name', 'Leaps of Faith Adaptive Skiers'),
(16589, 13900, 'en', 'name', 'Canine Assistants'),
(16590, 13901, 'en', 'name', 'Harris County Department of Education'),
(16591, 13902, 'en', 'name', 'Association of Pediatric Hematology/Oncology Nurses'),
(16592, 13903, 'en', 'name', 'Empower Spinal Cord Injury'),
(16593, 13904, 'en', 'name', 'Bioethics International'),
(16594, 13905, 'en', 'name', 'Rehabilitation Institute of Michigan'),
(16595, 13906, 'en', 'name', 'Charlotte-Mecklenburg Schools'),
(16596, 13907, 'en', 'name', 'PNA Center for Neurological Research'),
(16597, 13908, 'en', 'name', 'Planting Justice'),
(16598, 13909, 'en', 'name', 'Possible Health'),
(16599, 13910, 'no_lang_code', 'name', 'SCM Group (Italy)'),
(16600, 13911, 'en', 'name', 'Restorix Health'),
(16601, 13912, 'en', 'name', 'Alzheimer''s Disease Association of the Philippines'),
(16602, 13913, 'no_lang_code', 'name', 'FluGen (United States)'),
(16603, 13914, 'en', 'name', 'Brevard College'),
(16604, 13915, 'en', 'name', 'All Star Volleyball Association'),
(16605, 13916, 'no_lang_code', 'name', 'Fate Therapeutics (United States)'),
(16606, 13917, 'no_lang_code', 'name', 'Mermayde'),
(16607, 13918, 'de', 'name', 'WestfƤlische Hochschule'),
(16608, 13919, 'no_lang_code', 'name', 'Neovision (Czechia)'),
(16609, 13920, 'en', 'name', 'Lakeshore Foundation'),
(16610, 13921, 'no_lang_code', 'name', 'Hewlett-Packard (Germany)'),
(16611, 13922, 'no_lang_code', 'name', 'DLF Trifolium (Denmark)'),
(16612, 13923, 'no_lang_code', 'name', 'Prove IT (United States)'),
(16613, 13924, 'en', 'name', 'Alaska Neurology Center'),
(16614, 13925, 'en', 'name', 'Heifer International'),
(16615, 13926, 'en', 'name', 'Healthy Start Coalition of Flagler & Volusia Counties'),
(16616, 13927, 'no_lang_code', 'name', 'c-LEcta (Germany)'),
(16617, 13928, 'en', 'name', 'Cape Cod Healthcare'),
(16618, 13929, 'en', 'name', 'Florida Alliance for Assistive Services and Technology'),
(16619, 13930, 'no_lang_code', 'name', 'Mesaphotonics (United States)'),
(16620, 13931, 'no_lang_code', 'name', 'Nor-tek'),
(16621, 13932, 'no_lang_code', 'name', 'Meyer Werft (Germany)'),
(16622, 13933, 'en', 'name', 'National Center for Advancing Translational Sciences'),
(16623, 13934, 'no_lang_code', 'name', 'NetComposites (United Kingdom)'),
(16624, 13935, 'en', 'name', 'Hudson Valley Youth Chorale'),
(16625, 13936, 'en', 'name', 'Covenant Health System'),
(16626, 13937, 'en', 'name', 'CliniWorks'),
(16627, 13938, 'en', 'name', 'Glenville State College'),
(16628, 13939, 'en', 'name', 'Active Transportation Alliance'),
(16629, 13940, 'en', 'name', 'American Society of Plastic Surgeons'),
(16630, 13941, 'no_lang_code', 'name', 'R.U.Robots (United Kingdom)'),
(16631, 13942, 'no_lang_code', 'name', 'APC Composite (Sweden)'),
(16632, 13943, 'en', 'name', 'Institute for Development, Research, Advocacy and Applied Care'),
(16633, 13944, 'no_lang_code', 'name', 'Noblis'),
(16634, 13945, 'en', 'name', 'Jacob''s Heart Children''s Cancer Support Services'),
(16635, 13946, 'en', 'name', 'Neurology Centers of the Carolinas'),
(16636, 13947, 'no_lang_code', 'name', 'Siemens (France)'),
(16637, 13948, 'no_lang_code', 'name', 'Vuje (Slovakia)'),
(16638, 13949, 'no_lang_code', 'name', 'Andritz (Switzerland)'),
(16639, 13950, 'es', 'name', 'Institut de Cultura de Barcelona'),
(16640, 13951, 'no_lang_code', 'name', 'ALTA (Italy)'),
(16641, 13952, 'en', 'name', 'Brevard Public Schools'),
(16642, 13953, 'en', 'name', 'Northwest Florida Hematology Oncology'),
(16643, 13954, 'en', 'name', 'Community Assistance Network'),
(16644, 13955, 'no_lang_code', 'name', 'Applied Food Technologies (United States)'),
(16645, 13956, 'en', 'name', 'St. Joseph’s Children’s Hospital'),
(16646, 13957, 'en', 'name', 'Focused Ultrasound Foundation'),
(16647, 13958, 'en', 'name', 'New York Public Radio'),
(16648, 13959, 'en', 'name', 'Centre for the AIDS Programme of Research in South Africa'),
(16649, 13960, 'en', 'name', 'Arizona Disabled Sports'),
(16650, 13961, 'no_lang_code', 'name', 'Domtar (United States)'),
(16651, 13962, 'en', 'name', 'Bassett Healthcare Network'),
(16652, 13963, 'en', 'name', 'Mothers’ Milk Bank'),
(16653, 13964, 'no_lang_code', 'name', 'Spectrum Brands (Germany)'),
(16654, 13965, 'en', 'name', 'Helen Keller International'),
(16655, 13966, 'no_lang_code', 'name', 'Brockmann Consult (Germany)'),
(16656, 13967, 'en', 'name', 'NeuroDevNet'),
(16657, 13968, 'en', 'name', 'Agricultural Research Council of South Africa'),
(16658, 13969, 'en', 'name', 'Neil Squire Society'),
(16659, 13970, 'en', 'name', 'Rising Ground'),
(16660, 13971, 'en', 'name', 'Not-Me!'),
(16661, 13972, 'en', 'name', 'Chinese Community Health Resource Center'),
(16662, 13973, 'no_lang_code', 'name', 'Acetylon Pharmaceuticals (United States)'),
(16663, 13974, 'no_lang_code', 'name', 'Quasar Energy Group (United States)'),
(16664, 13975, 'en', 'name', 'Adirondack Mountain Club'),
(16665, 13976, 'en', 'name', 'Chapel Hill Carrboro City Schools'),
(16666, 13977, 'en', 'name', 'Cancer Survivors'' Fund'),
(16667, 13978, 'no_lang_code', 'name', 'Skanska (Norway)'),
(16668, 13979, 'en', 'name', 'Citizens of Lake County for Health Care'),
(16669, 13980, 'no_lang_code', 'name', 'Arqtech Laboratories (Ireland)'),
(16670, 13981, 'en', 'name', 'Singularity University'),
(16671, 13981, 'es', 'name', 'Universidad de la Singularidad'),
(16672, 13982, 'no_lang_code', 'name', 'Lewin Group (United States)'),
(16673, 13983, 'no_lang_code', 'name', 'Energiewerke Nord (Germany)'),
(16674, 13984, 'en', 'name', 'Children''s Cancer Center'),
(16675, 13985, 'no_lang_code', 'name', 'MetronomX (United States)'),
(16676, 13986, 'no_lang_code', 'name', 'Valeo (France)'),
(16677, 13987, 'no_lang_code', 'name', 'Humanetics (Germany)'),
(16678, 13988, 'no_lang_code', 'name', 'NewGen Therapeutics (United States)'),
(16679, 13989, 'en', 'name', 'Tavistock Institute'),
(16680, 13990, 'de', 'name', 'Medien- und Filmgesellschaft Baden-Württemberg'),
(16681, 13991, 'en', 'name', 'Turku University of Applied Sciences'),
(16682, 13991, 'fi', 'name', 'Turun ammattikorkeakoulu'),
(16683, 13991, 'sv', 'name', 'ƅbo yrkeshƶgskola'),
(16684, 13992, 'no_lang_code', 'name', 'Innova (Italy)'),
(16685, 13993, 'no_lang_code', 'name', 'Enercon (Germany)'),
(16686, 13994, 'en', 'name', 'National Ambucs'),
(16687, 13995, 'en', 'name', 'Howard County Health Department'),
(16688, 13996, 'en', 'name', 'Israel Science Foundation'),
(16689, 13997, 'de', 'name', 'Institut für Seeverkehrswirtschaft und Logistik'),
(16690, 13997, 'en', 'name', 'Institute of Shipping Economics and Logistics'),
(16691, 13998, 'en', 'name', 'Beaufort Memorial Hospital'),
(16692, 13999, 'no_lang_code', 'name', 'Syndesis (Greece)'),
(16693, 14000, 'en', 'name', 'National Museums of Kenya'),
(16694, 14001, 'it', 'name', 'Fondazione IRET ONLUS'),
(16695, 14002, 'en', 'name', 'Institute of Neurobiology and Molecular Medicine'),
(16696, 14002, 'it', 'name', 'Istituto di Neurobiologia e Medicina Molecolare'),
(16697, 14003, 'en', 'name', 'Prescott Center for the Arts'),
(16698, 14004, 'en', 'name', 'Durham Public Schools'),
(16699, 14005, 'en', 'name', 'Wayne County Public Schools'),
(16700, 14006, 'en', 'name', 'Kanzius Cancer Research Foundation'),
(16701, 14007, 'en', 'name', 'Observatory of renewable energies'),
(16702, 14007, 'fr', 'name', 'Observatoire des Ʃnergies renouvelables'),
(16703, 14008, 'en', 'name', 'Official State Gazette'),
(16704, 14008, 'es', 'name', 'BoletĆ­n Oficial del Estado'),
(16705, 14009, 'en', 'name', 'Hephzibah Children’s Association'),
(16706, 14010, 'en', 'name', 'Conversations! The International Ovarian Cancer Connection'),
(16707, 14011, 'en', 'name', 'KISS Institute for Practical Robotics'),
(16708, 14012, 'no_lang_code', 'name', 'Innovative Technology and Science (United Kingdom)'),
(16709, 14013, 'en', 'name', 'Erlanger Health System'),
(16710, 14014, 'en', 'name', 'Lincoln Fencing Club'),
(16711, 14015, 'no_lang_code', 'name', 'Swisscom (Switzerland)'),
(16712, 14016, 'en', 'name', 'Hiller Aviation Museum'),
(16713, 14017, 'en', 'name', 'Worshipful Society of Apothecaries'),
(16714, 14018, 'en', 'name', 'Colorado Foundation for Agriculture'),
(16715, 14019, 'en', 'name', 'CentraCare Health System'),
(16716, 14020, 'en', 'name', 'Autism Partnership Foundation'),
(16717, 14021, 'en', 'name', 'Sustainable Agriculture Education'),
(16718, 14022, 'no_lang_code', 'name', 'Forschungs- und Technologietransfer (Austria)'),
(16719, 14023, 'no_lang_code', 'name', 'Remote Sensing Solutions (United States)'),
(16720, 14024, 'no_lang_code', 'name', 'Technology Transfer System (Italy)'),
(16721, 14025, 'en', 'name', 'Limnological Institute'),
(16722, 14025, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Лимнологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук (Š›Š˜Š Š”Šž Š ŠŠ)'),
(16723, 14026, 'en', 'name', 'Department of Public Health'),
(16724, 14027, 'en', 'name', 'Center for the Study of Healthcare Provider Behavior'),
(16725, 14028, 'no_lang_code', 'name', 'Datastar (United States)'),
(16726, 14029, 'no_lang_code', 'name', 'Saint Onge Orchids (United States)'),
(16727, 14030, 'en', 'name', 'The Epsilon Group'),
(16728, 14031, 'en', 'name', 'Russian Technology Transfer Network'),
(16729, 14032, 'pt', 'name', 'Hospital Adventista Silvestre'),
(16730, 14033, 'no_lang_code', 'name', 'Kite Solutions (Italy)'),
(16731, 14034, 'no_lang_code', 'name', 'Ericsson (Spain)'),
(16732, 14035, 'en', 'name', 'Joe DiMaggio Children''s Hospital'),
(16733, 14036, 'no_lang_code', 'name', 'Hadassah'),
(16734, 14037, 'en', 'name', 'The Center on Colfax'),
(16735, 14038, 'en', 'name', 'Habitat for Humanity Fiji'),
(16736, 14039, 'en', 'name', 'Asian Health Services'),
(16737, 14040, 'en', 'name', 'MODUL University Vienna'),
(16738, 14041, 'no_lang_code', 'name', 'MC2 Therapeutics (Denmark)'),
(16739, 14042, 'no_lang_code', 'name', 'Intezyne (United States)'),
(16740, 14043, 'no_lang_code', 'name', 'Netronix (United States)'),
(16741, 14044, 'no_lang_code', 'name', 'geniaLab (Germany)'),
(16742, 14045, 'no_lang_code', 'name', 'Aquaplus (Belgium)'),
(16743, 14046, 'en', 'name', 'Crosswinds Equine Rescue'),
(16744, 14047, 'en', 'name', 'The Bretton Woods Committee'),
(16745, 14048, 'no_lang_code', 'name', 'Spacebel (Belgium)'),
(16746, 14049, 'en', 'name', 'Friends of North Carolina Public Libraries'),
(16747, 14050, 'de', 'name', 'SƤchsisches Textilforschungsinstitut'),
(16748, 14051, 'no_lang_code', 'name', 'Sairem (France)'),
(16749, 14052, 'no_lang_code', 'name', 'Brandtex (Denmark)'),
(16750, 14053, 'en', 'name', 'Access Living'),
(16751, 14054, 'no_lang_code', 'name', 'Tp21 (Germany)'),
(16752, 14055, 'it', 'name', 'Centro Internazionale Studi Diabete'),
(16753, 14056, 'en', 'name', 'National Center for Learning Disabilities'),
(16754, 14057, 'no_lang_code', 'name', 'Tre Altamira (Spain)'),
(16755, 14058, 'no_lang_code', 'name', 'AML Superconductivity and Magnetics (United States)'),
(16756, 14059, 'en', 'name', 'Institute for Political Sciences'),
(16757, 14059, 'hu', 'name', 'MTA TÔrsadalomtudomÔnyi Kutatóközpont PolitikatudomÔnyi Intézet'),
(16758, 14060, 'en', 'name', 'Global Ministries'),
(16759, 14061, 'no_lang_code', 'name', 'Mississippi Delta Council for Farm Worker Opportunities'),
(16760, 14062, 'no_lang_code', 'name', 'Cato BioVentures (United States)'),
(16761, 14063, 'es', 'name', 'CECOLFES'),
(16762, 14064, 'en', 'name', 'Cleveland County Schools'),
(16763, 14065, 'no_lang_code', 'name', 'Ericsson (Finland)'),
(16764, 14066, 'en', 'name', 'Weeksville Heritage Center'),
(16765, 14067, 'no_lang_code', 'name', 'Lego (Denmark)'),
(16766, 14068, 'no_lang_code', 'name', 'United Technologies Research Center'),
(16767, 14069, 'no_lang_code', 'name', 'Cryogenic Industries (United States)'),
(16768, 14070, 'en', 'name', 'Exploreum Science Center'),
(16769, 14071, 'en', 'name', 'Grant A Wish'),
(16770, 14072, 'no_lang_code', 'name', 'Hƶvding (Sweden)'),
(16771, 14073, 'en', 'name', 'First Nations Development Institute'),
(16772, 14074, 'en', 'name', 'Global Health Research Center of Central Asia'),
(16773, 14075, 'no_lang_code', 'name', 'CINAR (United Kingdom)'),
(16774, 14076, 'en', 'name', 'Adventist HealthCare Rehabilitation'),
(16775, 14077, 'en', 'name', 'American Youth Soccer Organization'),
(16776, 14078, 'no_lang_code', 'name', 'Siemens (Belgium)'),
(16777, 14079, 'en', 'name', 'Contra Costa County Office of Education'),
(16778, 14080, 'az', 'name', 'Türkiyə Elmi və Texnoloji Tədqiqat Şurası'),
(16779, 14080, 'en', 'name', 'Scientific and Technological Research Council of Turkey'),
(16780, 14081, 'en', 'name', 'Carnegie Hill Neighbors'),
(16781, 14082, 'no_lang_code', 'name', 'Compagnie Industrielle d''Applications Thermiques (France)'),
(16782, 14083, 'en', 'name', 'Northern Research Institute'),
(16783, 14084, 'no_lang_code', 'name', 'Diagenode (Belgium)'),
(16784, 14085, 'no_lang_code', 'name', 'InteSys (United Kingdom)'),
(16785, 14086, 'no_lang_code', 'name', 'Bitron (Italy)'),
(16786, 14087, 'en', 'name', 'Kōkua Mau'),
(16787, 14088, 'en', 'name', 'Community Food Security Coalition'),
(16788, 14089, 'en', 'name', 'Alderson Broaddus University'),
(16789, 14090, 'en', 'name', 'Dublin City Council'),
(16790, 14091, 'en', 'name', 'Hawaii Children''s Cancer Foundation'),
(16791, 14092, 'en', 'name', 'Space Florida'),
(16792, 14093, 'en', 'name', 'Tranquility Base Massage & Day Spa'),
(16793, 14094, 'en', 'name', 'Federation of European Aquaculture Producers'),
(16794, 14095, 'no_lang_code', 'name', 'Nokia (Italy)'),
(16795, 14096, 'en', 'name', 'Corporation for Findlay Market'),
(16796, 14097, 'en', 'name', 'Psychiatric Medical Center'),
(16797, 14098, 'en', 'name', 'Make A Hero'),
(16798, 14099, 'en', 'name', 'Freedom from Hunger'),
(16799, 14100, 'no_lang_code', 'name', 'Noliac (Denmark)'),
(16800, 14101, 'en', 'name', 'Seattle Aquarium'),
(16801, 14102, 'en', 'name', 'Southeastern Consortium for Minorities in Engineering'),
(16802, 14103, 'en', 'name', 'Community Impact'),
(16803, 14104, 'no_lang_code', 'name', 'Catabasis Pharmaceuticals (United States)'),
(16804, 14105, 'en', 'name', 'Alameda County Community Food Bank'),
(16805, 14106, 'de', 'name', 'Bundesdeutsche Arbeitskreis für Umweltbewußtes Management e.V'),
(16806, 14106, 'en', 'name', 'Baum Consult'),
(16807, 14107, 'en', 'name', 'Experimental Station for Glass'),
(16808, 14107, 'it', 'name', 'Stazione Sperimentale del Vetro'),
(16809, 14108, 'no_lang_code', 'name', 'XLAB (Slovenia)'),
(16810, 14109, 'en', 'name', 'The Parenting Cottage'),
(16811, 14110, 'no_lang_code', 'name', 'Lamik (Spain)'),
(16812, 14111, 'no_lang_code', 'name', 'Polymage (France)'),
(16813, 14112, 'en', 'name', 'CoxHealth Foundation'),
(16814, 14113, 'en', 'name', 'Neighborhood House Association'),
(16815, 14114, 'no_lang_code', 'name', 'CFS Engineering (Switzerland)'),
(16816, 14115, 'en', 'name', 'CHRISTUS St. Patrick Hospital'),
(16817, 14116, 'en', 'name', 'Denver Urban Gardens'),
(16818, 14117, 'en', 'name', 'Angelica Patient Assistance Program'),
(16819, 14118, 'no_lang_code', 'name', 'Altran (Italy)'),
(16820, 14119, 'no_lang_code', 'name', 'WSP (Finland)'),
(16821, 14120, 'en', 'name', 'North Carolina Science, Mathematics, and Technology Education Center'),
(16822, 14121, 'en', 'name', 'National Consumer Research Centre'),
(16823, 14122, 'no_lang_code', 'name', 'Azyp (United States)'),
(16824, 14123, 'en', 'name', 'Jack and Jill Late Stage Cancer Foundation'),
(16825, 14124, 'en', 'name', 'Greek Association of Alzheimer''s Disease and Related Disorders'),
(16826, 14125, 'en', 'name', 'Crescent Development Foundation'),
(16827, 14126, 'en', 'name', 'Athletics Canada'),
(16828, 14126, 'fr', 'name', 'AthlƩtisme Canada'),
(16829, 14127, 'en', 'name', 'Cancer Care Services'),
(16830, 14128, 'no_lang_code', 'name', 'AppliCote Associates (United States)'),
(16831, 14129, 'en', 'name', 'Ovar''coming Together'),
(16832, 14130, 'no_lang_code', 'name', 'Inlecom Systems (United Kingdom)'),
(16833, 14131, 'en', 'name', 'AIDS Project Of The East Bay'),
(16834, 14132, 'en', 'name', 'Cornucopia Cancer Support Center'),
(16835, 14133, 'en', 'name', 'American Kennel Club Canine Health Foundation'),
(16836, 14134, 'no_lang_code', 'name', 'Modulight (Finland)'),
(16837, 14135, 'no_lang_code', 'name', 'Coventor (France)'),
(16838, 14136, 'no_lang_code', 'name', 'Biomedisyn (United States)'),
(16839, 14137, 'no_lang_code', 'name', 'Petards Group (United Kingdom)'),
(16840, 14138, 'en', 'name', 'Central Wisconsin Community Action Council'),
(16841, 14139, 'en', 'name', 'Lac Courte Oreilles Ojibwa Community College'),
(16842, 14140, 'en', 'name', 'Samaritan Healthcare and Hospice'),
(16843, 14141, 'en', 'name', 'Ministry of Education, Sports and Youth'),
(16844, 14141, 'sq', 'name', 'Ministria e Arsimit, Sportit dhe Rinisƫ'),
(16845, 14142, 'no_lang_code', 'name', 'Intralytix (United States)'),
(16846, 14143, 'no_lang_code', 'name', 'Keystone Nano (United States)'),
(16847, 14144, 'en', 'name', 'AdventHealth Foundation Central Florida'),
(16848, 14145, 'de', 'name', 'Forschungsgesellschaft MobilitƤt'),
(16849, 14145, 'no_lang_code', 'name', 'Austrian Mobility Research'),
(16850, 14146, 'no_lang_code', 'name', 'Hitachi (France)'),
(16851, 14147, 'it', 'name', 'Centro RIcerche Plast-Optica'),
(16852, 14148, 'no_lang_code', 'name', 'NeuroNascent (United States)'),
(16853, 14149, 'en', 'name', 'American Historical Association'),
(16854, 14150, 'en', 'name', 'Central Coast Resource Conservation and Development'),
(16855, 14151, 'no_lang_code', 'name', 'Gilat Satellite Networks (Israel)'),
(16856, 14152, 'fr', 'name', 'Technofi'),
(16857, 14153, 'no_lang_code', 'name', 'Cap Sciences (France)'),
(16858, 14154, 'en', 'name', 'Long Island Community Hospital'),
(16859, 14155, 'fr', 'name', 'Institution de la Recherche et de l’Enseignement SupĆ©rieur Agricoles'),
(16860, 14156, 'no_lang_code', 'name', 'Bretagne Innovation (France)'),
(16861, 14157, 'en', 'name', 'Western Norway Research Institute'),
(16862, 14157, 'no', 'name', 'Vestlandsforsking'),
(16863, 14158, 'no_lang_code', 'name', 'Mayaterials (United States)'),
(16864, 14159, 'no_lang_code', 'name', 'Cryptomathic (Denmark)'),
(16865, 14160, 'en', 'name', 'McAlister Institute'),
(16866, 14161, 'no_lang_code', 'name', 'Andritz (Austria)'),
(16867, 14162, 'no_lang_code', 'name', 'Prestige World Genetics Pte (Singapore)'),
(16868, 14163, 'en', 'name', 'Living Springs Community Church'),
(16869, 14164, 'no_lang_code', 'name', 'Europe Unlimited (Belgium)'),
(16870, 14165, 'no_lang_code', 'name', 'Baker Hughes (Germany)'),
(16871, 14166, 'en', 'name', 'Center for American Progress'),
(16872, 14167, 'no_lang_code', 'name', 'YellowMap (Germany)'),
(16873, 14168, 'he', 'name', '×ž×§×•×Ø×•×Ŗ'),
(16874, 14168, 'no_lang_code', 'name', 'Mekorot (Israel)'),
(16875, 14169, 'no_lang_code', 'name', 'Kybertec (Czechia)'),
(16876, 14170, 'en', 'name', 'Italian Biomass Association'),
(16877, 14171, 'en', 'name', 'Army Hospital Research and Referral'),
(16878, 14171, 'hi', 'name', 'ą¤†ą¤°ą„ą¤®ą„€ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤ą¤‚ą¤” ą¤°ą„‡ą¤«ą„‡ą¤°ą„ą¤°ą¤²'),
(16879, 14172, 'no_lang_code', 'name', 'Harms & Wende (Germany)'),
(16880, 14173, 'en', 'name', 'Asylum Access'),
(16881, 14174, 'en', 'name', 'LRGHealthcare'),
(16882, 14175, 'no_lang_code', 'name', 'CytoSorbents (United States)'),
(16883, 14176, 'en', 'name', 'Appalachian Native Plants'),
(16884, 14177, 'en', 'name', 'HCG NCHRI Cancer Centre'),
(16885, 14178, 'en', 'name', 'Nikolaev Institute of Inorganic Chemistry'),
(16886, 14178, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неорганической химии им. А.Š’.ŠŠøŠŗŠ¾Š»Š°ŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(16887, 14179, 'no_lang_code', 'name', 'NKT Holding (Denmark)'),
(16888, 14180, 'no_lang_code', 'name', 'MedCom'),
(16889, 14181, 'no_lang_code', 'name', 'Xiomas Technologies (United States)'),
(16890, 14182, 'en', 'name', 'Texas Medical Association');
INSERT INTO `ror_settings` VALUES
(16891, 14183, 'el', 'name', '΄πουργείο ΠαιΓείας, ĪˆĻĪµĻ…Ī½Ī±Ļ‚ και Ī˜ĻĪ·ĻƒĪŗĪµĻ…Ī¼Ī¬Ļ„Ļ‰Ī½'),
(16892, 14183, 'en', 'name', 'Ministry of Education and Religious Affairs'),
(16893, 14184, 'de', 'name', 'Ɩsterreichisches Forschungsinstitut für Chemie und Technik'),
(16894, 14185, 'no_lang_code', 'name', 'Ceramiques Techniques et Industrielles (France)'),
(16895, 14186, 'no_lang_code', 'name', 'Saft (France)'),
(16896, 14187, 'no_lang_code', 'name', 'IDEC'),
(16897, 14188, 'de', 'name', 'Hertie-Institut für klinische Hirnforschung'),
(16898, 14188, 'en', 'name', 'Hertie Institute for Clinical Brain Research'),
(16899, 14189, 'no_lang_code', 'name', 'Flensburger Schiffbau Gesellschaft (Germany)'),
(16900, 14190, 'en', 'name', 'Employment Opportunity and Training Center'),
(16901, 14191, 'no_lang_code', 'name', 'LIG Science (United States)'),
(16902, 14192, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ł†ŁˆŲØŲ©'),
(16903, 14192, 'en', 'name', 'Manouba University'),
(16904, 14192, 'fr', 'name', 'UniversitƩ de la manouba'),
(16905, 14193, 'en', 'name', 'Annaswamy Mudaliar General Hospital'),
(16906, 14194, 'no_lang_code', 'name', 'Avaris (Sweden)'),
(16907, 14195, 'en', 'name', 'COPE Health Solutions'),
(16908, 14196, 'no_lang_code', 'name', 'Invent (Germany)'),
(16909, 14197, 'en', 'name', 'VNA of Care New England'),
(16910, 14198, 'en', 'name', 'National Association of Extension 4-H Agents'),
(16911, 14199, 'no_lang_code', 'name', 'InterInnov (France)'),
(16912, 14200, 'no_lang_code', 'name', 'Imerys (Greece)'),
(16913, 14201, 'no_lang_code', 'name', 'Chersco (United States)'),
(16914, 14202, 'no_lang_code', 'name', 'Magen David Adom'),
(16915, 14203, 'no_lang_code', 'name', 'Nanogate (Germany)'),
(16916, 14204, 'bn', 'name', 'ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦•ą§ą¦Æą¦¾ą¦Øą§ą¦øą¦¾ą¦° গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ ও হাসপাতাল'),
(16917, 14204, 'en', 'name', 'National Institute of Cancer Research and Hospital'),
(16918, 14205, 'no_lang_code', 'name', 'Groupe Cahors (France)'),
(16919, 14206, 'en', 'name', 'Radiological Protection Institute of Ireland'),
(16920, 14207, 'en', 'name', 'National Archives of Sweden'),
(16921, 14207, 'sv', 'name', 'Riksarkivet'),
(16922, 14208, 'en', 'name', 'AEE Institute for Sustainable Technologies'),
(16923, 14209, 'no_lang_code', 'name', 'Gorenje (Slovenia)'),
(16924, 14210, 'no_lang_code', 'name', 'Saet (Italy)'),
(16925, 14211, 'en', 'name', 'Eurocontrol'),
(16926, 14212, 'no_lang_code', 'name', 'Heinz Optical Engineering (United States)'),
(16927, 14213, 'en', 'name', 'Geological Survey of Sweden'),
(16928, 14213, 'fi', 'name', 'Ruotsin geologinen tutkimuslaitos'),
(16929, 14213, 'sv', 'name', 'Sveriges geologiska undersƶkning'),
(16930, 14214, 'no_lang_code', 'name', 'Summit Seed (United States)'),
(16931, 14215, 'en', 'name', 'Dünyagöz Hospital'),
(16932, 14216, 'no_lang_code', 'name', 'Agilent Technologies (Denmark)'),
(16933, 14217, 'no_lang_code', 'name', 'Humanetics Innovative Solutions (Netherlands)'),
(16934, 14218, 'en', 'name', 'Virginia Air and Space Center'),
(16935, 14219, 'en', 'name', 'Reading and Beyond'),
(16936, 14220, 'el', 'name', 'Αγροτική Τράπεζα της ΕλλάΓος'),
(16937, 14220, 'no_lang_code', 'name', 'ATEbank (Greece)'),
(16938, 14221, 'no_lang_code', 'name', 'Invention House (United States)'),
(16939, 14222, 'no_lang_code', 'name', 'DuPont (Denmark)'),
(16940, 14223, 'en', 'name', 'Rezekne Higher Education Institution'),
(16941, 14223, 'lv', 'name', 'Rēzeknes Augstskola'),
(16942, 14224, 'el', 'name', 'ĪœĪ‘Ī”Ī‘Īš Ηλεκτρονική'),
(16943, 14224, 'no_lang_code', 'name', 'Marac (Greece)'),
(16944, 14225, 'en', 'name', 'Harvey Brooks Motivation and Development Foundation'),
(16945, 14226, 'en', 'name', 'European Centre for Social Welfare Policy and Research'),
(16946, 14227, 'en', 'name', 'National Brain Tumor Society'),
(16947, 14228, 'no_lang_code', 'name', 'Microsoft (Belgium)'),
(16948, 14229, 'no_lang_code', 'name', 'MentiNova (United States)'),
(16949, 14230, 'no_lang_code', 'name', 'Fluidtime (Austria)'),
(16950, 14231, 'no_lang_code', 'name', 'Eternity Bioscience (United States)'),
(16951, 14232, 'en', 'name', 'Ministry of Education and Research'),
(16952, 14233, 'en', 'name', 'Jackson County Public Schools'),
(16953, 14234, 'no_lang_code', 'name', 'Necton (Portugal)'),
(16954, 14235, 'en', 'name', 'Farm Credit Council'),
(16955, 14236, 'no_lang_code', 'name', 'Prospex (Belgium)'),
(16956, 14237, 'en', 'name', 'Astronomical Research Institute'),
(16957, 14238, 'en', 'name', 'First Affiliated Hospital of Soochow University'),
(16958, 14238, 'zh', 'name', 'č‹å·žå¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(16959, 14239, 'no_lang_code', 'name', 'Mikey’s Way Foundation'),
(16960, 14240, 'en', 'name', 'Children''s Museum of Indianapolis'),
(16961, 14241, 'en', 'name', 'Little Bit Therapeutic Riding Center'),
(16962, 14242, 'en', 'name', 'St. Luke''s Mountain States Tumor Institute'),
(16963, 14243, 'no_lang_code', 'name', 'Thetis'),
(16964, 14244, 'en', 'name', 'Arctic and Antarctic Research Institute'),
(16965, 14244, 'ru', 'name', 'Арктический Šø антарктический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(16966, 14245, 'no_lang_code', 'name', 'McCarthy Modernization (United States)'),
(16967, 14246, 'en', 'name', 'Korean Health Education, Information, and Research Center'),
(16968, 14247, 'no_lang_code', 'name', 'Genkyotex (Switzerland)'),
(16969, 14248, 'en', 'name', 'Kadlec Regional Medical Center'),
(16970, 14249, 'no_lang_code', 'name', 'HƶganƤs (Sweden)'),
(16971, 14250, 'en', 'name', 'Coda Alliance'),
(16972, 14251, 'no_lang_code', 'name', 'Atos (Germany)'),
(16973, 14252, 'en', 'name', 'Legal Aid of Nebraska'),
(16974, 14253, 'no_lang_code', 'name', 'Statnett (Norway)'),
(16975, 14254, 'it', 'name', 'Fondazione GraphiTech'),
(16976, 14255, 'no_lang_code', 'name', 'Avails Medical (United States)'),
(16977, 14256, 'no_lang_code', 'name', 'e-Trikala (Greece)'),
(16978, 14257, 'en', 'name', 'Nebraska Indian Community College'),
(16979, 14258, 'en', 'name', 'Nevada Childhood Cancer Foundation'),
(16980, 14259, 'en', 'name', 'The University of Arizona Global Campus'),
(16981, 14260, 'no_lang_code', 'name', 'Multiform Harvest (United States)'),
(16982, 14261, 'en', 'name', 'Park Avenue Synagogue'),
(16983, 14262, 'en', 'name', 'San Francisco Unified School District'),
(16984, 14263, 'no_lang_code', 'name', 'Prodo Laboratories (United States)'),
(16985, 14264, 'en', 'name', 'Clinicas de Salud del Pueblo'),
(16986, 14265, 'en', 'name', 'Ibaraki Children''s Hospital'),
(16987, 14265, 'ja', 'name', 'čŒØåŸŽēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(16988, 14266, 'en', 'name', 'HIV Education and Prevention Project of Alameda County'),
(16989, 14267, 'en', 'name', 'Plant Protection Institute'),
(16990, 14267, 'hu', 'name', 'NƶvƩnyvƩdelmi IntƩzete'),
(16991, 14268, 'en', 'name', 'North Carolina Aquarium'),
(16992, 14269, 'en', 'name', 'Granville County Public Schools'),
(16993, 14270, 'fr', 'name', 'Institut National de la Recherche Agronomique de Tunisie'),
(16994, 14271, 'de', 'name', 'Wirtschaftsfƶrderung Region Stuttgart'),
(16995, 14272, 'no_lang_code', 'name', 'Septentrio (Belgium)'),
(16996, 14273, 'no_lang_code', 'name', 'Inno (France)'),
(16997, 14274, 'en', 'name', 'Our Lady of Perpetual Help'),
(16998, 14275, 'en', 'name', 'BioLink Life Sciences'),
(16999, 14276, 'no_lang_code', 'name', 'Olema Pharmaceuticals (United States)'),
(17000, 14277, 'no_lang_code', 'name', 'Sonatest (United Kingdom)'),
(17001, 14278, 'no_lang_code', 'name', 'BIOS Bioenergiesysteme (Austria)'),
(17002, 14279, 'en', 'name', 'Council for the Welfare of Children'),
(17003, 14280, 'no_lang_code', 'name', 'Ecorys (United Kingdom)'),
(17004, 14281, 'en', 'name', 'Brain Injury Alliance of Oregon'),
(17005, 14282, 'no_lang_code', 'name', 'Linde (Germany)'),
(17006, 14283, 'no_lang_code', 'name', 'Giesecke and Devrient (Germany)'),
(17007, 14284, 'no_lang_code', 'name', 'Organic Waste Systems (Belgium)'),
(17008, 14285, 'en', 'name', 'Center for Health and Learning'),
(17009, 14286, 'en', 'name', 'Charlotte Maxwell Clinic'),
(17010, 14287, 'en', 'name', 'Kelsey Research Foundation'),
(17011, 14288, 'en', 'name', 'Ministry of Education and Science'),
(17012, 14289, 'en', 'name', 'Rural Coalition'),
(17013, 14289, 'es', 'name', 'Coalición Rural'),
(17014, 14290, 'en', 'name', 'Allan Hancock College'),
(17015, 14291, 'de', 'name', 'Vereinigung der Kooperativen Forschungseinrichtungen der ƶsterreichischen Wirtschaft'),
(17016, 14291, 'en', 'name', 'Austrian Cooperative Research'),
(17017, 14292, 'en', 'name', 'Child Care Resource & Referral'),
(17018, 14293, 'en', 'name', 'European Council for Maritime Applied R&D Association'),
(17019, 14294, 'en', 'name', 'Positive Resource Center'),
(17020, 14295, 'nl', 'name', 'Nederlands Meetinstituut'),
(17021, 14296, 'en', 'name', 'Maternal Child and Family Health'),
(17022, 14297, 'es', 'name', 'Fundacion Centro De Investigacion De Enfermedades Neurologicas'),
(17023, 14298, 'en', 'name', 'OSF Saint Anthony Medical Center'),
(17024, 14299, 'fr', 'name', 'Laboratoire d''Ɖvaluation des MatĆ©riels Implantables'),
(17025, 14300, 'no_lang_code', 'name', 'Epsilon (Italy)'),
(17026, 14301, 'no_lang_code', 'name', 'Nationaal Archief of the Netherlands'),
(17027, 14302, 'no_lang_code', 'name', 'Frequentis (Austria)'),
(17028, 14303, 'en', 'name', 'Uniresearch'),
(17029, 14304, 'no_lang_code', 'name', 'CareWheels'),
(17030, 14305, 'en', 'name', 'Michael Ryan Pattison Foundation'),
(17031, 14306, 'en', 'name', 'Clean Needles Now'),
(17032, 14307, 'en', 'name', 'Mercy Health'),
(17033, 14308, 'fr', 'name', 'Institut de l''Audiovisuel et des TƩlƩcommunications en Europe'),
(17034, 14309, 'no_lang_code', 'name', 'Quinary (Italy)'),
(17035, 14310, 'en', 'name', 'Ministry of Finance'),
(17036, 14310, 'nl', 'name', 'Ministerie van Financiƫn'),
(17037, 14311, 'ar', 'name', 'لمؤسسة مستؓفى سرطان الأطفال'),
(17038, 14311, 'en', 'name', 'Children Cancer Hospital'),
(17039, 14312, 'fr', 'name', 'Institut du DƩveloppement Durable et des Ressources Aquatiques'),
(17040, 14313, 'no_lang_code', 'name', 'Energinet (Denmark)'),
(17041, 14314, 'it', 'name', 'Unione Nazionale Industria Conciaria'),
(17042, 14315, 'en', 'name', 'St Thomas'' Hospital'),
(17043, 14316, 'no_lang_code', 'name', 'Eisai (United Kingdom)'),
(17044, 14317, 'no_lang_code', 'name', 'Instituttet for Produktudvikling (Denmark)'),
(17045, 14318, 'no_lang_code', 'name', 'NsGene (Denmark)'),
(17046, 14319, 'en', 'name', 'Himalayan Cataract Project'),
(17047, 14320, 'no_lang_code', 'name', 'Ingenasa (Spain)'),
(17048, 14321, 'no_lang_code', 'name', 'IMC Information Multimedia Communication (Germany)'),
(17049, 14322, 'en', 'name', 'Orange County School'),
(17050, 14323, 'en', 'name', 'Community Health Partnership'),
(17051, 14324, 'no_lang_code', 'name', 'Industrial Control Solutions'),
(17052, 14325, 'no_lang_code', 'name', 'Schillinger Genetics (United States)'),
(17053, 14326, 'no_lang_code', 'name', 'TopSolid (France)'),
(17054, 14327, 'no_lang_code', 'name', 'CECIMO (Belgium)'),
(17055, 14328, 'en', 'name', 'First Baptist Church-West'),
(17056, 14329, 'en', 'name', 'National Youth Science Foundation'),
(17057, 14330, 'en', 'name', 'San Diego Unified School District'),
(17058, 14331, 'no_lang_code', 'name', 'Teamnet (Romania)'),
(17059, 14332, 'en', 'name', 'World Health Organization - Italy'),
(17060, 14333, 'en', 'name', 'Baptist Hospital'),
(17061, 14334, 'en', 'name', 'genHkids Coalition'),
(17062, 14335, 'no_lang_code', 'name', 'TIE Kinetix (Germany)'),
(17063, 14336, 'no_lang_code', 'name', 'Clay Technology (Sweden)'),
(17064, 14337, 'no_lang_code', 'name', 'Biovista (United States)'),
(17065, 14338, 'no_lang_code', 'name', 'Avia-GIS (Belgium)'),
(17066, 14339, 'en', 'name', 'Global Alliance Against Traffic in Women'),
(17067, 14340, 'no_lang_code', 'name', 'Rolls-Royce (Sweden)'),
(17068, 14341, 'no_lang_code', 'name', 'Ensemble Therapeutics (United States)'),
(17069, 14342, 'no_lang_code', 'name', 'Frog AGV Systems (Netherlands)'),
(17070, 14343, 'en', 'name', 'Black Oaks Center'),
(17071, 14344, 'no_lang_code', 'name', 'Ashima Group (United States)'),
(17072, 14345, 'en', 'name', 'American Association for Aerosol Research'),
(17073, 14346, 'no_lang_code', 'name', 'Phase Change Material Products (United Kingdom)'),
(17074, 14347, 'no_lang_code', 'name', 'Chemtex (Italy)'),
(17075, 14348, 'en', 'name', 'Leonard J. Chabert Medical Center'),
(17076, 14349, 'no_lang_code', 'name', 'Diligent Consulting (United States)'),
(17077, 14350, 'en', 'name', 'Adaptive Sports Program of Ohio'),
(17078, 14351, 'en', 'name', 'Chenango Health Network'),
(17079, 14352, 'no_lang_code', 'name', 'Packed (Belgium)'),
(17080, 14353, 'no_lang_code', 'name', 'Idronaut (Italy)'),
(17081, 14354, 'no_lang_code', 'name', 'Zuken (United Kingdom)'),
(17082, 14355, 'en', 'name', 'Cancer Survivor Center'),
(17083, 14356, 'en', 'name', 'Nanotechnology Industries Association'),
(17084, 14357, 'no_lang_code', 'name', 'Daiichi Sankyo (United States)'),
(17085, 14358, 'en', 'name', 'European Research Consortium for Informatics and Mathematics'),
(17086, 14359, 'no_lang_code', 'name', 'Polyphor (Switzerland)'),
(17087, 14360, 'no_lang_code', 'name', 'Engineering Solutions International (Ireland)'),
(17088, 14361, 'no_lang_code', 'name', 'Bouygues (France)'),
(17089, 14362, 'en', 'name', 'Adesh Charitable Cancer Hospital'),
(17090, 14363, 'no_lang_code', 'name', 'Aurelius AG (Germany)'),
(17091, 14364, 'no_lang_code', 'name', 'NorthStar Cooperative (United States)'),
(17092, 14365, 'no_lang_code', 'name', 'Rina Services (Italy)'),
(17093, 14366, 'no_lang_code', 'name', 'Mira Telecom (Romania)'),
(17094, 14367, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по металознание техника Šø технологии'),
(17095, 14367, 'en', 'name', 'Institute of Metal Science, Equipment and Technologies'),
(17096, 14368, 'ar', 'name', 'ŁƒŁ„ŁŠŲ§ŲŖ الغد Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲµŲ­ŁŠŲ©'),
(17097, 14368, 'en', 'name', 'Al-Ghad International Health Sciences Colleges'),
(17098, 14369, 'en', 'name', 'Blanchfield Army Community Hospital'),
(17099, 14370, 'en', 'name', 'Iranian Homeopathic Association'),
(17100, 14371, 'no_lang_code', 'name', 'Avalon Pharma (United States)'),
(17101, 14372, 'en', 'name', 'Boy Scouts of America Greater New York Councils'),
(17102, 14373, 'en', 'name', 'Discovery Center Museum'),
(17103, 14374, 'no_lang_code', 'name', 'Orpro Therapeutics (United States)'),
(17104, 14375, 'no_lang_code', 'name', 'Orbsen Therapeutics (Ireland)'),
(17105, 14376, 'it', 'name', 'Istituto e Museo di Storia della Scienza, Museo Galileo'),
(17106, 14377, 'en', 'name', 'New York Restoration Project'),
(17107, 14378, 'no_lang_code', 'name', 'Ibs (France)'),
(17108, 14379, 'en', 'name', 'Cancer Legal Care'),
(17109, 14380, 'en', 'name', 'Stockholm Environment Institute'),
(17110, 14381, 'en', 'name', 'New Americans Community Services'),
(17111, 14382, 'en', 'name', 'American Academy of Otolaryngology — Head and Neck Surgery'),
(17112, 14383, 'no_lang_code', 'name', 'Synelixis (Greece)'),
(17113, 14384, 'en', 'name', 'Heritage Malta'),
(17114, 14385, 'no_lang_code', 'name', 'Concentris (Germany)'),
(17115, 14386, 'en', 'name', 'Center for Black Women’s Wellness'),
(17116, 14387, 'no_lang_code', 'name', 'SBS CyberSecurity (United States)'),
(17117, 14388, 'no_lang_code', 'name', 'Microbial Robotics (United States)'),
(17118, 14389, 'no_lang_code', 'name', 'Isotest Engineering (Italy)'),
(17119, 14390, 'en', 'name', 'Alive Hospice'),
(17120, 14391, 'no_lang_code', 'name', 'Mergenet Medical (United States)'),
(17121, 14392, 'no_lang_code', 'name', 'HyPerspectives (United States)'),
(17122, 14393, 'no_lang_code', 'name', 'PolyOne (United States)'),
(17123, 14394, 'no_lang_code', 'name', 'Promolding (Netherlands)'),
(17124, 14395, 'en', 'name', 'Fullerton College'),
(17125, 14396, 'en', 'name', 'Great Plains Tribal Chairmen’s Health Board'),
(17126, 14397, 'en', 'name', 'Horizon Health Network'),
(17127, 14398, 'no_lang_code', 'name', 'Arup Group (United Kingdom)'),
(17128, 14399, 'en', 'name', 'Clonexpress'),
(17129, 14400, 'no_lang_code', 'name', 'Composite Technology Development (United States)'),
(17130, 14401, 'no_lang_code', 'name', 'Cooper Tire & Rubber Company (United States)'),
(17131, 14402, 'en', 'name', 'Good Shepherd Rehabilitation'),
(17132, 14403, 'no_lang_code', 'name', 'NeuroVigil (United States)'),
(17133, 14404, 'en', 'name', 'Digital Renaissance Foundation'),
(17134, 14404, 'it', 'name', 'Fondazione Rinascimento Digitale'),
(17135, 14405, 'en', 'name', 'Cancer Resource Center of the Desert'),
(17136, 14406, 'en', 'name', 'Building and Civil Engineering Institute'),
(17137, 14406, 'no_lang_code', 'name', 'Gradbeni InŔtitut Zrmk d.o.o'),
(17138, 14407, 'en', 'name', 'Cottage Health'),
(17139, 14408, 'en', 'name', 'World Food Program USA'),
(17140, 14409, 'en', 'name', 'El/La Para TransLatinas'),
(17141, 14410, 'no_lang_code', 'name', 'Forum Virium (Finland)'),
(17142, 14411, 'en', 'name', 'National Children''s Cancer Society'),
(17143, 14412, 'no_lang_code', 'name', 'It’s The Journey'),
(17144, 14413, 'no_lang_code', 'name', 'Cycloptics Technologies (United States)'),
(17145, 14414, 'no_lang_code', 'name', 'Alstom (Sweden)'),
(17146, 14415, 'en', 'name', 'Pachyonychia Congenita Project'),
(17147, 14416, 'en', 'name', 'ARC Community Services'),
(17148, 14417, 'en', 'name', 'Faith Equestrian Therapeutic Center'),
(17149, 14418, 'no_lang_code', 'name', 'NEC Technologies (United Kingdom)'),
(17150, 14419, 'no_lang_code', 'name', 'Stora Enso (Germany)'),
(17151, 14420, 'es', 'name', 'Instituto Nacional del CƔncer'),
(17152, 14421, 'it', 'name', 'Istituto Psicoanalitico per le Ricerche Sociali'),
(17153, 14422, 'no_lang_code', 'name', 'Europe for Business'),
(17154, 14423, 'en', 'name', 'Canine Companions for Independence'),
(17155, 14424, 'en', 'name', 'United Nations Industrial Development Organization'),
(17156, 14425, 'en', 'name', 'Museum of American Finance'),
(17157, 14426, 'no_lang_code', 'name', 'Institut d''AssistĆØncia SanitĆ ria'),
(17158, 14427, 'no_lang_code', 'name', 'Project Automation (Italy)'),
(17159, 14428, 'en', 'name', 'The Green Scheme'),
(17160, 14429, 'en', 'name', 'Catholic Charities of Northeast Kansas'),
(17161, 14430, 'en', 'name', 'Florida Department of Juvenile Justice'),
(17162, 14431, 'en', 'name', 'Thanksgiving Point'),
(17163, 14432, 'no_lang_code', 'name', 'Publicis Groupe (Germany)'),
(17164, 14433, 'en', 'name', 'Mountain Park Health Center'),
(17165, 14434, 'no_lang_code', 'name', 'Cisco Systems (France)'),
(17166, 14435, 'fr', 'name', 'Chambre de Commerce et d''Industrie de Bourgogne Franche-ComtƩ'),
(17167, 14436, 'en', 'name', 'Experimental Station for the Food Preserving Industry'),
(17168, 14436, 'it', 'name', 'Stazione Sperimentale per l’Industria delle Conserve Alimentari'),
(17169, 14437, 'en', 'name', 'Cook County Health and Hospitals System'),
(17170, 14438, 'en', 'name', 'Action Network'),
(17171, 14439, 'en', 'name', 'New Jersey Department of Education'),
(17172, 14439, 'es', 'name', 'Departamento de Educación de Nueva Jersey'),
(17173, 14440, 'no_lang_code', 'name', 'KromaTiD (United States)'),
(17174, 14441, 'en', 'name', 'Aware Girls'),
(17175, 14442, 'no_lang_code', 'name', 'Integrated Radiological Services (United Kingdom)'),
(17176, 14443, 'en', 'name', 'Hawaii Department of Business Economic Development and Tourism'),
(17177, 14444, 'en', 'name', 'Cooper Clinic'),
(17178, 14445, 'de', 'name', 'Max-Planck-Institut für Immunobiologie und Epigenetik'),
(17179, 14445, 'en', 'name', 'Max Planck Institute of Immunobiology and Epigenetics'),
(17180, 14446, 'no_lang_code', 'name', 'Gradient Biomodeling (United States)'),
(17181, 14447, 'no_lang_code', 'name', 'Logimatic (Denmark)'),
(17182, 14448, 'en', 'name', 'Prostate Cancer Prevention Foundation'),
(17183, 14449, 'no_lang_code', 'name', 'EpaleX (United States)'),
(17184, 14450, 'en', 'name', 'Latino Economic Development Center'),
(17185, 14451, 'en', 'name', 'International Centre for Reproductive Health Kenya'),
(17186, 14452, 'no_lang_code', 'name', 'Fumatech (Germany)'),
(17187, 14453, 'en', 'name', 'Carolinas Healthcare System'),
(17188, 14454, 'no_lang_code', 'name', 'Gühring (Germany)'),
(17189, 14455, 'en', 'name', 'Necessities Bag'),
(17190, 14456, 'en', 'name', 'Behavioral Health Services'),
(17191, 14457, 'de', 'name', 'Bundesanstalt für Bergbauernfragen'),
(17192, 14457, 'en', 'name', 'Federal Institute for Less-Favoured and Mountainous Areas'),
(17193, 14458, 'en', 'name', 'Arkansas Spinal Cord Commission'),
(17194, 14459, 'no_lang_code', 'name', 'IBS Precision Engineering (Netherlands)'),
(17195, 14460, 'no_lang_code', 'name', 'Geoimaging (Cyprus)'),
(17196, 14461, 'en', 'name', 'Edgar County Public Health Department'),
(17197, 14462, 'en', 'name', 'Cornerstone Community Development Corporation'),
(17198, 14463, 'en', 'name', 'Morton Plant Mease'),
(17199, 14464, 'en', 'name', 'Medical City Dallas Hospital'),
(17200, 14465, 'en', 'name', 'Professional Association of Therapeutic Horsemanship International'),
(17201, 14466, 'en', 'name', 'North Carolina Zoo Society'),
(17202, 14467, 'en', 'name', 'Horizon Behavioral Health'),
(17203, 14468, 'no_lang_code', 'name', 'Alpha MOS (France)'),
(17204, 14469, 'nl', 'name', 'Maastro Clinic'),
(17205, 14470, 'en', 'name', 'Genesis Health System'),
(17206, 14471, 'no_lang_code', 'name', 'Acclima (United States)'),
(17207, 14472, 'no_lang_code', 'name', 'Semelab (United Kingdom)'),
(17208, 14473, 'no_lang_code', 'name', 'ProActive Solutions (United States)'),
(17209, 14474, 'no_lang_code', 'name', 'Astrobotic (United States)'),
(17210, 14475, 'en', 'name', 'National Federation of the Blind'),
(17211, 14476, 'en', 'name', 'Habitot Children''s Museum'),
(17212, 14477, 'no_lang_code', 'name', 'Opsona Therapeutics (Ireland)'),
(17213, 14478, 'en', 'name', 'Appalachian Sustainable Agriculture Project'),
(17214, 14479, 'no_lang_code', 'name', 'Pharmidex (United Kingdom)'),
(17215, 14480, 'en', 'name', 'Prayer of Faith International Ministries'),
(17216, 14481, 'en', 'name', 'Alliance of Health Organizations'),
(17217, 14482, 'no_lang_code', 'name', 'Wiser Systems (United States)'),
(17218, 14483, 'no_lang_code', 'name', 'Tetronics (United Kingdom)'),
(17219, 14484, 'en', 'name', 'Broward Health'),
(17220, 14485, 'no_lang_code', 'name', 'ViaCyte (United States)'),
(17221, 14486, 'en', 'name', 'Gillen Brewer School'),
(17222, 14487, 'no_lang_code', 'name', 'Almende (Netherlands)'),
(17223, 14488, 'en', 'name', 'Touch the Future'),
(17224, 14489, 'en', 'name', 'Good Shepherd Food Bank'),
(17225, 14490, 'no_lang_code', 'name', 'Brandywine Photonics (United States)'),
(17226, 14491, 'en', 'name', 'Backbones'),
(17227, 14492, 'en', 'name', 'Federation of Animal Science Societies'),
(17228, 14493, 'no_lang_code', 'name', 'Cosmo Pharmaceuticals (Italy)'),
(17229, 14494, 'en', 'name', 'New Mexico Cancer Center Foundation'),
(17230, 14495, 'en', 'name', 'The Hospice of Baton Rouge'),
(17231, 14496, 'en', 'name', 'Truly Living Well'),
(17232, 14497, 'no_lang_code', 'name', 'RHP Technology (Austria)'),
(17233, 14498, 'no_lang_code', 'name', 'Vattenfall (Germany)'),
(17234, 14499, 'en', 'name', 'Cancer Foundation for Life'),
(17235, 14500, 'en', 'name', 'International Breast Cancer Study Group'),
(17236, 14501, 'no_lang_code', 'name', 'Biomedal (Spain)'),
(17237, 14502, 'en', 'name', 'Iyengar Yoga Association of Greater New York'),
(17238, 14503, 'en', 'name', 'Salinas Valley Memorial Healthcare System'),
(17239, 14504, 'en', 'name', 'Consumers for Affordable Health Care'),
(17240, 14505, 'no_lang_code', 'name', 'Imerys (Switzerland)'),
(17241, 14506, 'en', 'name', 'Autistic Women & Nonbinary Network'),
(17242, 14507, 'it', 'name', 'Parco Tecnologico Padano'),
(17243, 14508, 'no_lang_code', 'name', 'Wastewater Compliance Systems (United States)'),
(17244, 14509, 'no_lang_code', 'name', 'Industrieanlagen Betriebsgesellschaft (Germany)'),
(17245, 14510, 'no_lang_code', 'name', 'PlasmaChem (Germany)'),
(17246, 14511, 'no_lang_code', 'name', 'Issy Media (France)'),
(17247, 14512, 'en', 'name', 'Lenoir–Rhyne University'),
(17248, 14513, 'en', 'name', 'Myrovlytis Trust'),
(17249, 14514, 'no_lang_code', 'name', 'AkzoNobel (United Kingdom)'),
(17250, 14515, 'no_lang_code', 'name', 'Philips (Belgium)'),
(17251, 14516, 'no_lang_code', 'name', 'Avaya (Germany)'),
(17252, 14517, 'en', 'name', 'Innovation To End Neglected Diseases'),
(17253, 14518, 'no_lang_code', 'name', 'Tetracore (United States)'),
(17254, 14519, 'no_lang_code', 'name', 'HansaBioMed (Estonia)'),
(17255, 14520, 'no_lang_code', 'name', 'Arcadia Biosciences (United States)'),
(17256, 14521, 'en', 'name', 'Cisco And Cisco Productions'),
(17257, 14522, 'en', 'name', 'CORE Foundation'),
(17258, 14523, 'no_lang_code', 'name', 'MediTox (Czechia)'),
(17259, 14524, 'en', 'name', 'Clinton Bush Haiti Fund'),
(17260, 14525, 'en', 'name', 'St. Mary''s Medical Center'),
(17261, 14526, 'no_lang_code', 'name', 'Cookson-Clal (France)'),
(17262, 14527, 'no_lang_code', 'name', 'Trivector (Sweden)'),
(17263, 14528, 'no_lang_code', 'name', 'IMGENEX India (India)'),
(17264, 14529, 'en', 'name', 'Integris Health'),
(17265, 14530, 'it', 'name', 'Iter'),
(17266, 14531, 'en', 'name', 'Professional Tutors of America'),
(17267, 14532, 'en', 'name', 'Human Rights Watch'),
(17268, 14533, 'en', 'name', 'Chai Lifeline'),
(17269, 14534, 'en', 'name', 'European Genetics Foundation'),
(17270, 14535, 'en', 'name', 'Pacific Center for Human Growth'),
(17271, 14536, 'no_lang_code', 'name', 'Technolution (Netherlands)'),
(17272, 14537, 'en', 'name', 'National Research Center for Maternal and Child Health'),
(17273, 14537, 'kk', 'name', 'Ана мен бала ұлттық ғылыми орталығы'),
(17274, 14538, 'en', 'name', 'National Office of Samoan Affairs'),
(17275, 14539, 'en', 'name', 'Newark Academy'),
(17276, 14540, 'no_lang_code', 'name', 'IT Consult'),
(17277, 14541, 'en', 'name', 'Goodman Community Center'),
(17278, 14542, 'en', 'name', 'Evaluations and Language resources Distribution Agency'),
(17279, 14543, 'en', 'name', 'Museum of Modern Art'),
(17280, 14544, 'en', 'name', 'Historic House Trust'),
(17281, 14545, 'no_lang_code', 'name', 'Mellitech (France)'),
(17282, 14546, 'en', 'name', 'Kids Konnected'),
(17283, 14547, 'no_lang_code', 'name', 'Long Branch Company (United States)'),
(17284, 14548, 'en', 'name', 'Hispanic Scholarship Fund'),
(17285, 14549, 'en', 'name', 'Seminole Public Schools'),
(17286, 14550, 'no_lang_code', 'name', 'Roma Servizi per la MobilitĆ  (Italy)'),
(17287, 14551, 'no_lang_code', 'name', 'Akashi Therapeutics (United States)'),
(17288, 14552, 'no_lang_code', 'name', 'Microchips Biotech (United States)'),
(17289, 14553, 'no_lang_code', 'name', 'Neurochlore (France)'),
(17290, 14554, 'no_lang_code', 'name', 'CIM-mes Project (Poland)'),
(17291, 14555, 'no_lang_code', 'name', 'Orange (Poland)'),
(17292, 14556, 'no_lang_code', 'name', 'PricewaterhouseCoopers (France)'),
(17293, 14557, 'no_lang_code', 'name', 'Kids ''n Kamp'),
(17294, 14558, 'no_lang_code', 'name', 'Alkor Bio (Russia)'),
(17295, 14559, 'en', 'name', 'Tennessee Department of Agriculture'),
(17296, 14560, 'en', 'name', 'Nursing Mothers Counsel'),
(17297, 14561, 'en', 'name', 'Communications Research Centre Canada'),
(17298, 14561, 'fr', 'name', 'Centre de Recherches sur les Communications Canada'),
(17299, 14562, 'en', 'name', 'International Association of Wildland Fire'),
(17300, 14563, 'en', 'name', 'British Columbia Mobility Opportunities Society'),
(17301, 14564, 'no_lang_code', 'name', 'Algosystems (Greece)'),
(17302, 14565, 'no_lang_code', 'name', 'Andarix Pharmaceuticals (United States)'),
(17303, 14566, 'no_lang_code', 'name', 'PNO Consultants (United Kingdom)'),
(17304, 14567, 'en', 'name', 'Holzer Heritage Foundation'),
(17305, 14568, 'en', 'name', 'Office National de l''Eau Potable'),
(17306, 14569, 'en', 'name', 'Slovenian Environment Agency'),
(17307, 14570, 'no_lang_code', 'name', 'Gevo (United States)'),
(17308, 14571, 'no_lang_code', 'name', 'ApeX Therapeutics (United States)'),
(17309, 14572, 'fr', 'name', 'Centre technique de l''Industrie HorlogĆØre'),
(17310, 14573, 'no_lang_code', 'name', 'Dynniq (Netherlands)'),
(17311, 14574, 'no_lang_code', 'name', 'Arbonaut (Finland)'),
(17312, 14575, 'es', 'name', 'Centro Uruguayo de ImagenologĆ­a Molecular'),
(17313, 14576, 'en', 'name', 'Hope HealthCare Services'),
(17314, 14577, 'no_lang_code', 'name', 'General Electric (Italy)'),
(17315, 14578, 'en', 'name', 'Florida Center for Change'),
(17316, 14579, 'en', 'name', 'Manovikas Kendra Rehabilitation and Research Institute'),
(17317, 14580, 'en', 'name', 'Chamber of Commerce and Industry of Slovenia'),
(17318, 14580, 'sl', 'name', 'Gospodarska zbornica Slovenije'),
(17319, 14581, 'it', 'name', 'SocietĆ  Generale d''Informatica'),
(17320, 14581, 'no_lang_code', 'name', 'Sogei (Italy)'),
(17321, 14582, 'en', 'name', 'East Bay Asian Youth Center'),
(17322, 14583, 'en', 'name', 'Conrad Foundation'),
(17323, 14584, 'en', 'name', 'Baruch S. Blumberg Institute'),
(17324, 14585, 'no_lang_code', 'name', 'Publicis Groupe (Switzerland)'),
(17325, 14586, 'no_lang_code', 'name', 'Norner (Norway)'),
(17326, 14587, 'en', 'name', 'Community Health Center'),
(17327, 14588, 'en', 'name', 'Future Generations University'),
(17328, 14589, 'no_lang_code', 'name', 'TE Connectivity (Netherlands)'),
(17329, 14590, 'en', 'name', 'Griffith Observatory'),
(17330, 14591, 'no_lang_code', 'name', 'Igan Biosciences (United States)'),
(17331, 14592, 'en', 'name', 'Community Service Society'),
(17332, 14593, 'en', 'name', 'Greenovate! Europe'),
(17333, 14594, 'en', 'name', 'Texas State Technical College West Texas'),
(17334, 14595, 'no_lang_code', 'name', 'TeliaSonera (Finland)'),
(17335, 14596, 'en', 'name', 'Friends-4-Cures'),
(17336, 14597, 'it', 'name', 'Fondazione Humanitas per la Ricerca'),
(17337, 14598, 'no_lang_code', 'name', 'Crile Carvey Consulting'),
(17338, 14599, 'no_lang_code', 'name', 'BioPlastic Polymers and Composites (United States)'),
(17339, 14600, 'en', 'name', 'Chronic Condition Information Network'),
(17340, 14601, 'no_lang_code', 'name', 'Huron (France)'),
(17341, 14602, 'en', 'name', 'Bay Area Outreach and Recreation Program'),
(17342, 14603, 'en', 'name', 'Kidney Cancer Association'),
(17343, 14604, 'no_lang_code', 'name', 'Optibase (Israel)'),
(17344, 14605, 'en', 'name', 'Portland Fruit Tree Project'),
(17345, 14606, 'en', 'name', 'Los Angeles LGBT Center'),
(17346, 14607, 'no_lang_code', 'name', 'CIRCA Group Europe (Ireland)'),
(17347, 14608, 'no_lang_code', 'name', 'Expression Drug Designs (United States)'),
(17348, 14609, 'no_lang_code', 'name', 'Bioproximity (United States)'),
(17349, 14610, 'en', 'name', 'Southampton City Council'),
(17350, 14611, 'en', 'name', 'Youth+Tech+Health'),
(17351, 14612, 'en', 'name', 'Health Care Without Harm'),
(17352, 14613, 'no_lang_code', 'name', 'Balance Therapeutics (United States)'),
(17353, 14614, 'no_lang_code', 'name', 'Istituto per le Piante da Legno e l''Ambiente'),
(17354, 14615, 'en', 'name', 'Adaptations Glassware Cooperative'),
(17355, 14616, 'en', 'name', 'Maui Economic Development Board'),
(17356, 14617, 'no_lang_code', 'name', 'Transelectrica (Romania)'),
(17357, 14618, 'no_lang_code', 'name', 'SynTouch (United States)'),
(17358, 14619, 'en', 'name', 'LifeBridge Health'),
(17359, 14620, 'en', 'name', 'KU Endowment'),
(17360, 14621, 'en', 'name', 'Waipa Foundation'),
(17361, 14622, 'en', 'name', 'International Society for Technology in Education'),
(17362, 14623, 'en', 'name', 'Doctors Without Borders, Médecins Sans Frontières'),
(17363, 14624, 'en', 'name', 'Nationalities Service Center'),
(17364, 14625, 'en', 'name', 'Lideres Campesinas'),
(17365, 14626, 'en', 'name', 'Elucid Bioimaging'),
(17366, 14627, 'no_lang_code', 'name', 'Malthe Winje (Norway)'),
(17367, 14628, 'en', 'name', 'Orange County Asian Pacific Islander Community Alliance'),
(17368, 14629, 'en', 'name', 'North Carolina Virtual Public School'),
(17369, 14630, 'no_lang_code', 'name', 'Barco (Belgium)'),
(17370, 14631, 'en', 'name', 'Council of Southeast Pennsylvania'),
(17371, 14632, 'no_lang_code', 'name', 'Arctik'),
(17372, 14633, 'pt', 'name', 'Fundação Bio Rio'),
(17373, 14634, 'en', 'name', 'Settlement Music School'),
(17374, 14635, 'no_lang_code', 'name', 'Elastopoli (Finland)'),
(17375, 14636, 'no_lang_code', 'name', 'Grupo ACS (Spain)'),
(17376, 14637, 'en', 'name', 'Friends of Cancer Research'),
(17377, 14638, 'en', 'name', 'South East European Research Centre'),
(17378, 14639, 'no_lang_code', 'name', 'Ridge Quest (United States)'),
(17379, 14640, 'en', 'name', 'Plasttechnics Cluster Slovenia'),
(17380, 14640, 'sl', 'name', 'Giz-Grozd Plasttehnika'),
(17381, 14641, 'no_lang_code', 'name', 'Top 10 Produce (United States)'),
(17382, 14642, 'no_lang_code', 'name', 'ApoVax (United States)'),
(17383, 14643, 'en', 'name', 'Misty Meadows Mitey Riders'),
(17384, 14644, 'en', 'name', 'Tri-State Wheelchair Athletic Association'),
(17385, 14645, 'en', 'name', 'Fondy Food Center'),
(17386, 14646, 'no_lang_code', 'name', 'Promoter (Italy)'),
(17387, 14647, 'en', 'name', 'Northeast Regional Cancer Institute'),
(17388, 14648, 'no_lang_code', 'name', 'Saarbrücken Stadtwerke (Germany)'),
(17389, 14649, 'no_lang_code', 'name', 'AFRY (Finland)'),
(17390, 14650, 'en', 'name', 'Odyssey of the Mind'),
(17391, 14651, 'de', 'name', 'Rheinisch-WestfƤlisches ElektrizitƤtswerk Aktiengesellschaft'),
(17392, 14651, 'en', 'name', 'Rhine-Westfalia Electricity Factory'),
(17393, 14651, 'no_lang_code', 'name', 'RWE (Germany)'),
(17394, 14652, 'en', 'name', 'Ventura County Health Care Agency'),
(17395, 14653, 'en', 'name', 'Research Advocacy Network'),
(17396, 14654, 'en', 'name', 'McDonough County Health Department'),
(17397, 14655, 'no_lang_code', 'name', 'Transman Consulting for Transport System Management'),
(17398, 14656, 'no_lang_code', 'name', 'Ekodoma (Latvia)'),
(17399, 14657, 'no_lang_code', 'name', 'Pall Corporation (Germany)'),
(17400, 14658, 'en', 'name', 'Partners Asia'),
(17401, 14659, 'no_lang_code', 'name', 'Machining Centers Manufacturing (Italy)'),
(17402, 14660, 'en', 'name', 'Arabkir Joint Medical Center'),
(17403, 14660, 'hy', 'name', 'Ō±Ö€Õ”Õ¢ÕÆÕ«Ö€ Ō²ÕŖÕ·ÕÆÕ”ÕÆÕ”Õ¶ Õ€Õ”Õ“Õ”Õ¬Õ«Ö€'),
(17404, 14661, 'no_lang_code', 'name', 'MAN (Germany)'),
(17405, 14662, 'no_lang_code', 'name', 'Imagination Computer Services (Austria)'),
(17406, 14663, 'en', 'name', 'ARC of Oswego County'),
(17407, 14664, 'en', 'name', 'Lufthansa German Airlines'),
(17408, 14664, 'no_lang_code', 'name', 'Lufthansa (Germany)'),
(17409, 14665, 'en', 'name', 'Demoiselle 2 Femme'),
(17410, 14666, 'no_lang_code', 'name', 'Lindgren Pitman (United States)'),
(17411, 14667, 'no_lang_code', 'name', 'PatientsLikeMe (United States)'),
(17412, 14668, 'no_lang_code', 'name', 'ANALYSIS System Research High-Tech (Greece)'),
(17413, 14669, 'en', 'name', 'Midwest Wheelchair Sport and Social Club'),
(17414, 14670, 'en', 'name', 'Citymeals on Wheels'),
(17415, 14671, 'en', 'name', 'Kenya Forestry Research Institute'),
(17416, 14672, 'en', 'name', 'Hunstad Kortesis Bharti Cosmetic Surgery'),
(17417, 14673, 'en', 'name', 'Chest Medicine Associates'),
(17418, 14674, 'en', 'name', 'Friend for Life'),
(17419, 14675, 'en', 'name', 'Hillsborough Jr. Raiders'),
(17420, 14676, 'no_lang_code', 'name', 'Infinite Enzymes (United States)'),
(17421, 14677, 'no_lang_code', 'name', 'Rebexsess (United States)'),
(17422, 14678, 'en', 'name', 'County of Sonoma Department of Health Services'),
(17423, 14679, 'en', 'name', 'Hungarian Meteorological Service'),
(17424, 14679, 'hu', 'name', 'OrszÔgos Meteorológiai SzolgÔlat'),
(17425, 14680, 'no_lang_code', 'name', 'Türk Otomobil Fabrikası (Turkey)'),
(17426, 14681, 'en', 'name', 'National Commission on Teaching and America’s Future'),
(17427, 14682, 'en', 'name', 'Water Resources Research Centre'),
(17428, 14683, 'en', 'name', 'Hospice Austin'),
(17429, 14684, 'en', 'name', 'Navajo Technical University'),
(17430, 14685, 'no_lang_code', 'name', 'Anaxomics (Spain)'),
(17431, 14686, 'en', 'name', 'Pleasant Hill Community Center'),
(17432, 14687, 'en', 'name', 'Boston Health Care for the Homeless Program'),
(17433, 14688, 'en', 'name', 'Governor''s Institute on Substance Abuse'),
(17434, 14689, 'en', 'name', 'CSUF Auxiliary Services'),
(17435, 14690, 'no_lang_code', 'name', 'Semilab (Hungary)'),
(17436, 14691, 'fr', 'name', 'Koninklijke Philips'),
(17437, 14691, 'no_lang_code', 'name', 'Philips (France)'),
(17438, 14692, 'de', 'name', 'Europäische Vereinigung für Tierproduktion'),
(17439, 14692, 'en', 'name', 'European Federation of Animal Science'),
(17440, 14692, 'fr', 'name', 'FƩdƩration EuropƩenne de Zootechnie'),
(17441, 14692, 'it', 'name', 'Federazione Europea di Zootecnia'),
(17442, 14693, 'en', 'name', 'Oxfam America'),
(17443, 14694, 'en', 'name', 'CARE of Southeastern Michigan'),
(17444, 14695, 'no_lang_code', 'name', 'Bnoat Oncology (United States)'),
(17445, 14696, 'en', 'name', 'Institute of Molecular and Cellular Pharmacology'),
(17446, 14696, 'fr', 'name', 'Institut de Pharmacologie MolƩculaire et Cellulaire'),
(17447, 14697, 'no_lang_code', 'name', 'Nitrate Elimination Company (United States)'),
(17448, 14698, 'no_lang_code', 'name', 'Advanced Neural Dynamics (United States)'),
(17449, 14699, 'en', 'name', 'Berklee College of Music'),
(17450, 14700, 'no_lang_code', 'name', 'Saladax Biomedical (United States)'),
(17451, 14701, 'en', 'name', 'African Women''s Cancer Awareness Association'),
(17452, 14702, 'no_lang_code', 'name', 'SociƩtƩs Anonyme Belge de Constructions AƩronautiques (Belgium)'),
(17453, 14703, 'no_lang_code', 'name', 'Norddeutsche Pflanzenzucht Hans-Georg Lembke (Germany)'),
(17454, 14704, 'no_lang_code', 'name', 'Ratier Figeac (France)'),
(17455, 14705, 'no_lang_code', 'name', 'Sonaca (Belgium)'),
(17456, 14706, 'no_lang_code', 'name', 'Ecorys (Netherlands)'),
(17457, 14707, 'en', 'name', 'Hebrew Health Care'),
(17458, 14708, 'en', 'name', 'Community Partners'),
(17459, 14709, 'en', 'name', 'Robeson Community College'),
(17460, 14710, 'en', 'name', 'Alaska Center for Children and Adults'),
(17461, 14711, 'en', 'name', 'Hope in Bloom'),
(17462, 14712, 'en', 'name', 'Leukaemia Foundation of Queensland'),
(17463, 14713, 'en', 'name', 'National Organization for Disorders of the Corpus Callosum'),
(17464, 14714, 'de', 'name', 'Institut für Mikroelektronik Stuttgart'),
(17465, 14715, 'en', 'name', 'Maritime and Coastguard Agency'),
(17466, 14716, 'en', 'name', 'Home Free Home'),
(17467, 14717, 'fr', 'name', 'Eiffage Ɖnergie SystĆØmes - Clemessy'),
(17468, 14717, 'no_lang_code', 'name', 'Clemessy (France)'),
(17469, 14718, 'no_lang_code', 'name', 'Syntax (Italy)'),
(17470, 14719, 'de', 'name', 'Institut für Molekulare Biologie'),
(17471, 14719, 'en', 'name', 'Institute of Molecular Biology'),
(17472, 14720, 'no_lang_code', 'name', 'Spinverse (Finland)'),
(17473, 14721, 'en', 'name', 'Yellowstone Ecological Research Center'),
(17474, 14722, 'no_lang_code', 'name', 'Phenotype Screening Corporation (United States)'),
(17475, 14723, 'en', 'name', 'Youth Farm'),
(17476, 14724, 'it', 'name', 'Centro Studi Luca d’Agliano'),
(17477, 14725, 'no_lang_code', 'name', 'Aaranya Biosciences (India)'),
(17478, 14726, 'en', 'name', 'Cleveland Cord Blood Center'),
(17479, 14727, 'es', 'name', 'Fundación para la Formación e Investigación Sanitarias de la Región de Murcia'),
(17480, 14728, 'no_lang_code', 'name', 'Abingdon Health (United Kingdom)'),
(17481, 14729, 'en', 'name', 'Microfinance and Community Development Institute'),
(17482, 14730, 'en', 'name', 'The African-American Historical & Cultural Museum of the SJV'),
(17483, 14731, 'no_lang_code', 'name', 'Iquadrat (Spain)'),
(17484, 14732, 'en', 'name', 'All Russia Petroleum Research Exploration Institute'),
(17485, 14732, 'ru', 'name', 'Всероссийский Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ геологоразвеГочный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(17486, 14733, 'en', 'name', 'Partnership Schools'),
(17487, 14734, 'en', 'name', 'ACT for Multiple Sclerosis'),
(17488, 14735, 'en', 'name', 'Tilth Alliance'),
(17489, 14736, 'de', 'name', 'Bundesforschungs- und Ausbildungszentrum für Wald, Naturgefahren und Landschaft'),
(17490, 14736, 'en', 'name', 'Austrian Research Centre for Forests'),
(17491, 14737, 'en', 'name', 'Executive Frameworks'),
(17492, 14738, 'no_lang_code', 'name', 'RTD Talos (Cyprus)'),
(17493, 14739, 'de', 'name', 'Milchwirtschaftliche Untersuchungs- und Versuchsanstalt Kempten'),
(17494, 14740, 'de', 'name', 'Internationales Paralympisches Komitee'),
(17495, 14740, 'en', 'name', 'International Paralympic Committee'),
(17496, 14741, 'en', 'name', 'Advocacy Alliance Center of Texas'),
(17497, 14742, 'no_lang_code', 'name', 'Bwcon (Germany)'),
(17498, 14743, 'fi', 'name', 'Neste Oyj'),
(17499, 14743, 'no_lang_code', 'name', 'Neste Oil (Finland)'),
(17500, 14744, 'en', 'name', 'MD Anderson Cancer Center Madrid'),
(17501, 14744, 'es', 'name', 'Fundación MD Anderson Cancer Center España'),
(17502, 14745, 'en', 'name', 'Ivy Hill Therapeutic Equestrian Center'),
(17503, 14746, 'en', 'name', 'Austin Children''s Chest Associates'),
(17504, 14747, 'en', 'name', 'Total Learning Research Institute'),
(17505, 14748, 'no_lang_code', 'name', 'Judex (Denmark)'),
(17506, 14749, 'en', 'name', 'Excelsior College'),
(17507, 14750, 'no_lang_code', 'name', 'Engineered Compost Systems (United States)'),
(17508, 14751, 'en', 'name', 'European Biomass Industry Association'),
(17509, 14752, 'no_lang_code', 'name', 'ABB (Italy)'),
(17510, 14753, 'no_lang_code', 'name', 'Oticon (Denmark)'),
(17511, 14754, 'no_lang_code', 'name', 'Biospherical Instruments (United States)'),
(17512, 14755, 'en', 'name', 'Indian Nations Conservation Alliance'),
(17513, 14756, 'en', 'name', 'Native Americans for Community Action'),
(17514, 14757, 'en', 'name', 'Pioneer Network'),
(17515, 14758, 'en', 'name', 'AIDS Healthcare Foundation'),
(17516, 14759, 'en', 'name', 'Dialogik (Germany)'),
(17517, 14760, 'no_lang_code', 'name', 'Applied Colloids (United States)'),
(17518, 14761, 'fr', 'name', 'Charbonnages de France'),
(17519, 14762, 'en', 'name', 'Life Sciences Research Partners'),
(17520, 14763, 'en', 'name', 'Community Service Council'),
(17521, 14764, 'no_lang_code', 'name', 'Invent Baltics'),
(17522, 14765, 'no_lang_code', 'name', 'JN Biosciences (United States)'),
(17523, 14766, 'no_lang_code', 'name', 'Nokia (Germany)'),
(17524, 14767, 'en', 'name', 'Academy of Science of Turkmenistan'),
(17525, 14767, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŠøŠø'),
(17526, 14768, 'en', 'name', 'Infrared Breast Health'),
(17527, 14769, 'en', 'name', 'Ministry of Communications and Information Technology'),
(17528, 14770, 'no_lang_code', 'name', 'SENTECH Instruments (Germany)'),
(17529, 14771, 'en', 'name', 'Red Feather Development Group'),
(17530, 14772, 'no_lang_code', 'name', 'EveryStep'),
(17531, 14773, 'no_lang_code', 'name', 'BioAge (Italy)'),
(17532, 14774, 'no_lang_code', 'name', 'Future Analytics'),
(17533, 14775, 'en', 'name', 'Georgia Organics'),
(17534, 14776, 'en', 'name', 'Department of Health and Human Services'),
(17535, 14777, 'en', 'name', 'Borough of Leonia'),
(17536, 14778, 'en', 'name', 'Ministry of Culture'),
(17537, 14778, 'et', 'name', 'Eesti Kultuuriministeerium'),
(17538, 14779, 'en', 'name', 'National Eating Disorders Association'),
(17539, 14780, 'en', 'name', 'Morningside College'),
(17540, 14781, 'en', 'name', 'Laredo Community College'),
(17541, 14781, 'es', 'name', 'Colegio Comunitario de Laredo'),
(17542, 14782, 'no_lang_code', 'name', 'Heat Biologics (United States)'),
(17543, 14783, 'en', 'name', 'Energy Therapies Alliance of Central Illinois'),
(17544, 14784, 'en', 'name', 'Schneider Children''s Hospital'),
(17545, 14785, 'en', 'name', 'Individual Differences'),
(17546, 14786, 'en', 'name', 'Institute for Chemical and Physical Processes'),
(17547, 14786, 'it', 'name', 'Istituto per i Processi Chimico Fisici'),
(17548, 14787, 'no_lang_code', 'name', 'SpaceTec Partners'),
(17549, 14788, 'en', 'name', 'European Organisation for Security'),
(17550, 14789, 'en', 'name', 'Korean Resource Center'),
(17551, 14790, 'en', 'name', 'Northern California Regional Land Trust'),
(17552, 14791, 'no_lang_code', 'name', 'HyGear (Netherlands)'),
(17553, 14792, 'no_lang_code', 'name', 'Nokia (Austria)'),
(17554, 14793, 'no_lang_code', 'name', 'Mary’s Center'),
(17555, 14794, 'no_lang_code', 'name', 'Funk Production (Denmark)'),
(17556, 14795, 'en', 'name', 'Angel Foundation'),
(17557, 14796, 'pt', 'name', 'Associação Ilumina'),
(17558, 14797, 'no_lang_code', 'name', 'Invercon (United States)'),
(17559, 14798, 'en', 'name', 'Genesys Hurley Cancer Institute'),
(17560, 14799, 'no_lang_code', 'name', 'Exergy (United Kingdom)'),
(17561, 14800, 'en', 'name', 'National Capital Baptist Convention'),
(17562, 14801, 'no_lang_code', 'name', 'Europus'),
(17563, 14802, 'en', 'name', 'Aloha Medical Mission'),
(17564, 14803, 'en', 'name', 'ETA-Florence Renewable Energies'),
(17565, 14804, 'no_lang_code', 'name', 'Acumen Pharmaceuticals (United States)'),
(17566, 14805, 'no_lang_code', 'name', 'Science and Technology Corporation (United States)'),
(17567, 14806, 'en', 'name', 'Catholic Charities of the Archdiocese of Chicago'),
(17568, 14807, 'en', 'name', 'Institute of Atomic Energy'),
(17569, 14807, 'pl', 'name', 'Instytut Energii Atomowej'),
(17570, 14808, 'no_lang_code', 'name', 'Lombardia Informatica (Italy)'),
(17571, 14809, 'en', 'name', 'Moveable Feast'),
(17572, 14810, 'no_lang_code', 'name', 'Swarco (Germany)'),
(17573, 14811, 'no_lang_code', 'name', 'Armadillo Aerospace (United States)'),
(17574, 14812, 'en', 'name', 'St. Luke''s Cystic Fibrosis Center of Idaho'),
(17575, 14813, 'no_lang_code', 'name', 'MKmetric (Germany)'),
(17576, 14814, 'no_lang_code', 'name', 'Aquaculture Systems Technologies (United States)'),
(17577, 14815, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š½ŠµŠ²Ń€Š¾Š±ŠøŠ¾Š»Š¾Š³ŠøŃ'),
(17578, 14815, 'en', 'name', 'Institute of Neurobiology'),
(17579, 14816, 'no_lang_code', 'name', 'Enide Solutions (Spain)'),
(17580, 14817, 'no_lang_code', 'name', 'Novavax (Sweden)'),
(17581, 14818, 'no_lang_code', 'name', 'ActoGeniX (Belgium)'),
(17582, 14819, 'en', 'name', 'Ashby House'),
(17583, 14820, 'en', 'name', 'Native American Kennels'),
(17584, 14821, 'de', 'name', 'Eidgenƶssisches Departement des Innern'),
(17585, 14821, 'en', 'name', 'Federal Department of Home Affairs'),
(17586, 14821, 'fr', 'name', 'DƩpartement fƩdƩral de l''intƩrieur'),
(17587, 14821, 'it', 'name', 'Dipartimento Federale dell''Interno'),
(17588, 14822, 'no_lang_code', 'name', 'Piaggio Aerospace (Italy)'),
(17589, 14823, 'en', 'name', 'Artistic Realization Technologies'),
(17590, 14824, 'en', 'name', 'Hurdle Jumpers'),
(17591, 14825, 'it', 'name', 'Istituto Zooprofilattico Sperimentale del Piemonte Liguria e Valle d''Aosta'),
(17592, 14826, 'en', 'name', 'Korean Community Service Center of Greater Washington'),
(17593, 14827, 'no_lang_code', 'name', 'Latitude Pharmaceuticals (United States)'),
(17594, 14828, 'en', 'name', 'European Virtual Institute for Integrated Risk Management'),
(17595, 14829, 'en', 'name', 'Celebration Stem Cell Centre'),
(17596, 14830, 'en', 'name', 'Pulmonary and Critical Care Associates'),
(17597, 14831, 'en', 'name', 'Rebuilding All Goals Efficiently'),
(17598, 14832, 'en', 'name', 'Estonian Public Broadcasting'),
(17599, 14832, 'et', 'name', 'Eesti RahvusringhƤƤling'),
(17600, 14833, 'en', 'name', 'Glynwood'),
(17601, 14834, 'no_lang_code', 'name', 'Valerion Therapeutics (United States)'),
(17602, 14835, 'en', 'name', 'Sustainable Europe Research Institute'),
(17603, 14836, 'en', 'name', 'Baylor Scott and White Hillcrest Medical Center'),
(17604, 14837, 'en', 'name', 'Pennsylvania Center For Intuitive Studies'),
(17605, 14838, 'no_lang_code', 'name', 'Imaginary (Italy)'),
(17606, 14839, 'en', 'name', 'United Nations Children''s Fund Canada'),
(17607, 14839, 'fr', 'name', 'Fonds des Nations Unies pour l''Enfance'),
(17608, 14840, 'en', 'name', 'San Mateo County Health System'),
(17609, 14841, 'no_lang_code', 'name', 'T4tech (Italy)'),
(17610, 14842, 'en', 'name', 'National Sports Center for the Disabled'),
(17611, 14843, 'de', 'name', 'BioMed zet Life Science'),
(17612, 14844, 'no_lang_code', 'name', 'HydroBio (United States)'),
(17613, 14845, 'no_lang_code', 'name', 'Radiotelevisione Italiana (Italy)'),
(17614, 14846, 'en', 'name', 'International Mathematical Union'),
(17615, 14847, 'en', 'name', 'Nutritional Oncology Research Institute'),
(17616, 14848, 'no_lang_code', 'name', 'Laser Scan Engineering (United Kingdom)'),
(17617, 14849, 'no_lang_code', 'name', 'Efficient Pharma Management (Taiwan)'),
(17618, 14850, 'en', 'name', 'California Health Collaborative'),
(17619, 14851, 'no_lang_code', 'name', 'Siemens (Spain)'),
(17620, 14852, 'no_lang_code', 'name', 'Dassault SystĆØmes (Canada)'),
(17621, 14853, 'no_lang_code', 'name', 'Euroconsultants (Greece)'),
(17622, 14854, 'en', 'name', 'ą°‡ą°‚ą°”ą°øą± ą°¬ą°æą°œą°æą°Øą±†ą°øą± ą°øą°æą°øą±ą°Ÿą°®ą±ą°øą± ą°²ą°æą°®ą°æą°Ÿą±†ą°”ą±'),
(17623, 14854, 'no_lang_code', 'name', 'Indus Business Systems (India)'),
(17624, 14855, 'no_lang_code', 'name', 'Ekahau (Finland)'),
(17625, 14856, 'en', 'name', 'Columbus Community Clinical Oncology Program'),
(17626, 14857, 'en', 'name', 'The First Republican Clinical Hospital of the Ministry of Health of the Udmurt Republic'),
(17627, 14857, 'ru', 'name', 'ŠŸŠµŃ€Š²Š°Ń Ń€ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠ¾Š¹ Республики'),
(17628, 14858, 'no_lang_code', 'name', 'BioCrea (Germany)'),
(17629, 14859, 'no_lang_code', 'name', 'Cofely (Switzerland)'),
(17630, 14860, 'en', 'name', 'National Telecommunications Network for Technology, Education and Research'),
(17631, 14860, 'fr', 'name', 'Renater, RƩseau National de TƩlƩcommunications pour la Technologie, l''Enseignement et la Recherche'),
(17632, 14861, 'en', 'name', 'Port of Rotterdam Authority'),
(17633, 14862, 'en', 'name', 'National Research Foundation'),
(17634, 14863, 'en', 'name', 'Premier Health Care'),
(17635, 14864, 'en', 'name', 'Central Florida Pulmonary Group'),
(17636, 14865, 'en', 'name', 'Fogarty Institute for Innovation'),
(17637, 14866, 'en', 'name', 'Saturday Academy'),
(17638, 14867, 'no_lang_code', 'name', 'Cross-Linked Enzyme Aggregates Technologies (Netherlands)'),
(17639, 14868, 'it', 'name', 'Centro Ceramico Bologna'),
(17640, 14869, 'no_lang_code', 'name', 'Roth and Rau (Germany)'),
(17641, 14870, 'en', 'name', 'Massachusetts Compassionate Care Coalition'),
(17642, 14871, 'no_lang_code', 'name', 'Institut Mikroelektronických Aplikací (Czechia)'),
(17643, 14872, 'no_lang_code', 'name', 'Paradigm Shift Therapeutics (United States)'),
(17644, 14873, 'en', 'name', 'Samaritan Health Services');
INSERT INTO `ror_settings` VALUES
(17645, 14874, 'no_lang_code', 'name', 'Applied Biomics (United States)'),
(17646, 14875, 'en', 'name', 'Interactive Technology Software and Media Association'),
(17647, 14876, 'no_lang_code', 'name', 'Searchlight Sensors (United States)'),
(17648, 14877, 'en', 'name', 'HealthPoint Communications'),
(17649, 14878, 'no_lang_code', 'name', 'Process Design Center (Netherlands)'),
(17650, 14879, 'no_lang_code', 'name', 'PFA Consulting (United States)'),
(17651, 14880, 'en', 'name', 'Encompass Health Rehabilitation Hospital of Tinton Falls'),
(17652, 14881, 'no_lang_code', 'name', 'Robert Miller Consulting'),
(17653, 14882, 'no_lang_code', 'name', 'Gamma Remote Sensing (Switzerland)'),
(17654, 14883, 'no_lang_code', 'name', 'Ricardo AEA (Germany)'),
(17655, 14884, 'en', 'name', 'Farm Safety For Just Kids'),
(17656, 14885, 'en', 'name', 'Hoag Orthopedic Institute'),
(17657, 14886, 'en', 'name', 'Coalition For A Safe Environment'),
(17658, 14887, 'no_lang_code', 'name', 'Novamont (Italy)'),
(17659, 14888, 'no_lang_code', 'name', 'Semafora Systems (Germany)'),
(17660, 14889, 'no_lang_code', 'name', 'Ariadna (Spain)'),
(17661, 14890, 'en', 'name', 'Supreme Court of Virginia'),
(17662, 14891, 'bg', 'name', 'Георги ŠŠ°Š“жаков Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по физика на Ń‚Š²ŃŠŃ€Š“Š¾Ń‚Š¾'),
(17663, 14891, 'en', 'name', 'Georgi Nadjakov Institute of Solid State Physics'),
(17664, 14892, 'de', 'name', 'Kompetenzzentrum für elektrochemische Oberflächentechnologie'),
(17665, 14892, 'en', 'name', 'Competence Centre for Electrochemical Surface Technology'),
(17666, 14893, 'en', 'name', 'Ship Design and Research Centre'),
(17667, 14893, 'pl', 'name', 'Centrum Techniki Okrętowej'),
(17668, 14894, 'en', 'name', 'Australasian Leukaemia and Lymphoma Group'),
(17669, 14895, 'en', 'name', 'Asthma and Allergy Specialists'),
(17670, 14896, 'no_lang_code', 'name', 'InSpark Technologies (United States)'),
(17671, 14897, 'en', 'name', 'Northeastern School District'),
(17672, 14898, 'en', 'name', 'Cancer Support Team'),
(17673, 14899, 'en', 'name', 'Ministry of Education, Science and Sport'),
(17674, 14900, 'en', 'name', 'Joliet Area Community Hospice'),
(17675, 14901, 'no_lang_code', 'name', 'Evoleo Technologies (Portugal)'),
(17676, 14902, 'en', 'name', 'Natural Resources Defense Council'),
(17677, 14903, 'no_lang_code', 'name', 'MSM Protein Technologies (United States)'),
(17678, 14904, 'en', 'name', 'National Cancer Council Malaysia'),
(17679, 14904, 'ms', 'name', 'Majlis Kanser Nasional'),
(17680, 14905, 'no_lang_code', 'name', 'TE Laboratories (Ireland)'),
(17681, 14906, 'en', 'name', 'European Association of Craft, Small and Medium-Sized Enterprises'),
(17682, 14907, 'en', 'name', 'National Women in Agriculture Association'),
(17683, 14908, 'en', 'name', 'Creative Aging Network-NC'),
(17684, 14909, 'en', 'name', 'Lewisham and Greenwich NHS Trust'),
(17685, 14910, 'en', 'name', 'Action for Autism'),
(17686, 14911, 'en', 'name', 'Neurology Specialists of Monmouth County'),
(17687, 14912, 'no_lang_code', 'name', 'Laviosa Minerals (Italy)'),
(17688, 14913, 'no_lang_code', 'name', 'Tecnaro (Germany)'),
(17689, 14914, 'en', 'name', 'Family Health Options Kenya'),
(17690, 14915, 'no_lang_code', 'name', 'TeliaSonera (Sweden)'),
(17691, 14916, 'no_lang_code', 'name', 'Cybion (Italy)'),
(17692, 14917, 'en', 'name', 'St. Mary''s Health System'),
(17693, 14918, 'fr', 'name', 'Centre Technique des Industries AƩrauliques et Thermiques'),
(17694, 14919, 'no_lang_code', 'name', 'Progenitor Cell Therapy (United States)'),
(17695, 14920, 'en', 'name', 'Forum of European National Highway Research Laboratories'),
(17696, 14920, 'fr', 'name', 'Forum des Laboratoires nationaux Europeens de Recherche Routiere'),
(17697, 14921, 'en', 'name', 'Eastern Maine Healthcare Systems'),
(17698, 14922, 'no_lang_code', 'name', 'Heartspring'),
(17699, 14923, 'en', 'name', 'Children''s Specialized Hospital'),
(17700, 14924, 'no_lang_code', 'name', 'Intelligence for Environment and Security (Italy)'),
(17701, 14925, 'no_lang_code', 'name', 'Kuehnle AgroSystems (United States)'),
(17702, 14926, 'no_lang_code', 'name', 'Brookes Bell (United Kingdom)'),
(17703, 14927, 'en', 'name', 'Guilford County Schools'),
(17704, 14928, 'en', 'name', 'Internet Memory Foundation'),
(17705, 14929, 'no_lang_code', 'name', 'EntreChem (Spain)'),
(17706, 14930, 'en', 'name', 'CGS Group'),
(17707, 14931, 'en', 'name', 'Neuro Assistance Foundation'),
(17708, 14932, 'en', 'name', 'European Network of Living Labs'),
(17709, 14933, 'en', 'name', 'ICLEI - Local Governments for Sustainability'),
(17710, 14934, 'en', 'name', 'Breathe California of Sacramento Emigrant Trails'),
(17711, 14935, 'en', 'name', 'East Netherlands Development Agency'),
(17712, 14935, 'nl', 'name', 'Ontwikkelingsmaatschappij Oost Nederland'),
(17713, 14936, 'en', 'name', 'Bergen Catholic High School'),
(17714, 14937, 'en', 'name', 'Mayland Community College'),
(17715, 14938, 'en', 'name', 'German Dutch Wind Tunnels'),
(17716, 14939, 'en', 'name', 'National LGBT Cancer Network'),
(17717, 14940, 'en', 'name', 'European Smart Card Industry Association'),
(17718, 14941, 'no_lang_code', 'name', 'TecnologĆ­as para la Salud y el Bienestar (Spain)'),
(17719, 14942, 'en', 'name', 'Council for Agricultural Science and Technology'),
(17720, 14943, 'en', 'name', 'Allegany County Health Department'),
(17721, 14944, 'en', 'name', 'Institute of Cognitive Sciences and Technologies'),
(17722, 14944, 'it', 'name', 'Istituto di Scienze e Tecnologie della Cognizione'),
(17723, 14945, 'fr', 'name', 'Brissonneau et Lotz'),
(17724, 14945, 'no_lang_code', 'name', 'Brissonneau and Lotz (France)'),
(17725, 14946, 'no_lang_code', 'name', 'PixarBio (United States)'),
(17726, 14947, 'no_lang_code', 'name', 'Adnet Systems (United States)'),
(17727, 14948, 'no_lang_code', 'name', 'I.Con. Innovation'),
(17728, 14949, 'no_lang_code', 'name', 'Oxley (United Kingdom)'),
(17729, 14950, 'en', 'name', 'Uganda Institute of Information & Communications Technology'),
(17730, 14951, 'en', 'name', 'Arlington Free Clinic'),
(17731, 14952, 'en', 'name', 'HealthNow New York'),
(17732, 14953, 'en', 'name', 'Inyo Mono Advocates for Community Action'),
(17733, 14954, 'en', 'name', 'Cotting School'),
(17734, 14955, 'en', 'name', 'Alternative Opportunities'),
(17735, 14956, 'no_lang_code', 'name', 'Generex Biotechnology (Canada)'),
(17736, 14957, 'en', 'name', 'Oregon Adaptive Sports'),
(17737, 14958, 'no_lang_code', 'name', 'ASM International (Finland)'),
(17738, 14959, 'no_lang_code', 'name', 'Demar Laser (Netherlands)'),
(17739, 14960, 'no_lang_code', 'name', 'HBLA (United States)'),
(17740, 14961, 'no_lang_code', 'name', 'Artemis Innovation (United States)'),
(17741, 14962, 'en', 'name', 'Mi Raza Community Center'),
(17742, 14963, 'no_lang_code', 'name', 'Perceptive Software (Germany)'),
(17743, 14964, 'no_lang_code', 'name', 'Harvard Bioscience (Germany)'),
(17744, 14965, 'en', 'name', 'University of Mount Olive'),
(17745, 14966, 'en', 'name', 'Pennsylvania Department of Education'),
(17746, 14967, 'no_lang_code', 'name', 'Graal Tech'),
(17747, 14968, 'no_lang_code', 'name', 'SingularLogic (Greece)'),
(17748, 14969, 'no_lang_code', 'name', 'Eureka Genomics (United States)'),
(17749, 14970, 'en', 'name', 'Nurse-Family Partnership'),
(17750, 14971, 'en', 'name', 'International Solvay Institutes'),
(17751, 14972, 'en', 'name', 'European Virtual Institute on Knowledge-based Multifunctional Materials'),
(17752, 14973, 'no_lang_code', 'name', 'Va-Q-tec (Germany)'),
(17753, 14974, 'en', 'name', 'Providence St. Peter Hospital'),
(17754, 14975, 'en', 'name', 'International Society for Clinical Densitometry'),
(17755, 14976, 'en', 'name', 'French Clinical Research Infrastructure Network'),
(17756, 14977, 'no_lang_code', 'name', 'Sampaş Nanotechnology (Turkey)'),
(17757, 14978, 'en', 'name', 'Łukasiewicz Research Network - Institute of Welding'),
(17758, 14978, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Instytut Spawalnictwa'),
(17759, 14979, 'no_lang_code', 'name', 'Organizzazione Sviluppo Vendite'),
(17760, 14980, 'en', 'name', 'Medscape'),
(17761, 14981, 'sv', 'name', 'FolkhƤlsans Forskningscentrum'),
(17762, 14982, 'en', 'name', 'Texas Health Resources Foundation'),
(17763, 14983, 'en', 'name', 'Palo Alto Center for Pulmonary Disease Prevention'),
(17764, 14984, 'en', 'name', 'Frontier Community Services'),
(17765, 14985, 'de', 'name', 'Forschungs- und Beratungsstelle Arbeitswelt'),
(17766, 14986, 'en', 'name', 'Singapore-MIT Alliance for Research and Technology'),
(17767, 14987, 'en', 'name', 'Boyne Research Institute'),
(17768, 14988, 'en', 'name', 'Bethel Elementary School'),
(17769, 14989, 'en', 'name', 'Healthy Start'),
(17770, 14990, 'no_lang_code', 'name', 'Chondrial Therapeutics (United States)'),
(17771, 14991, 'en', 'name', 'Baton Rouge Clinic'),
(17772, 14992, 'en', 'name', 'Northwest Community Health Center'),
(17773, 14993, 'en', 'name', 'The Doe Fund'),
(17774, 14994, 'no_lang_code', 'name', 'Celladon Corporation (United States)'),
(17775, 14995, 'it', 'name', 'Gruppi di Ricerca Economica Teorica ed Applicata'),
(17776, 14996, 'no_lang_code', 'name', 'Innora'),
(17777, 14997, 'en', 'name', 'Institute for Nuclear Research Pitesti'),
(17778, 14998, 'no_lang_code', 'name', 'VirTech (Bulgaria)'),
(17779, 14999, 'no_lang_code', 'name', 'AVEVA (Sweden)'),
(17780, 15000, 'no_lang_code', 'name', 'Inetec (Croatia)'),
(17781, 15001, 'no_lang_code', 'name', 'Crystal Research (United States)'),
(17782, 15002, 'no_lang_code', 'name', 'Beijing Software Enterprise Advisory Center (China)'),
(17783, 15002, 'zh', 'name', 'åŒ—äŗ¬č½Æåä¼äøšē®”ē†é”¾é—®äø­åæƒ'),
(17784, 15003, 'no_lang_code', 'name', 'JPT Peptide Technologies (Germany)'),
(17785, 15004, 'en', 'name', 'Censis Foundation - Center for Social Studies'),
(17786, 15004, 'it', 'name', 'Fondazione Censis - Centro Studi Investimenti Sociali'),
(17787, 15005, 'no_lang_code', 'name', 'BioMed Central (United Kingdom)'),
(17788, 15006, 'en', 'name', 'Sound Choice Pharmaceutical Institute'),
(17789, 15007, 'no_lang_code', 'name', 'Nyrstar Budel (Netherlands)'),
(17790, 15008, 'en', 'name', 'United States Olympic & Paralympic Committee'),
(17791, 15009, 'no_lang_code', 'name', 'Corporate Communications Group (United States)'),
(17792, 15010, 'en', 'name', 'Molecular Sciences Institute'),
(17793, 15011, 'en', 'name', 'Athens Technical College'),
(17794, 15012, 'en', 'name', 'Hospital for Sick Children Pediatric Center'),
(17795, 15013, 'en', 'name', 'John Wood Community College'),
(17796, 15014, 'en', 'name', 'National Park of Abruzzo'),
(17797, 15014, 'it', 'name', 'Parco Nazionale d''Abruzzo'),
(17798, 15015, 'no_lang_code', 'name', 'Clopinet'),
(17799, 15016, 'en', 'name', 'European Distributed Energy Resources Laboratories'),
(17800, 15017, 'en', 'name', 'European Institute of Women''s Health'),
(17801, 15018, 'en', 'name', 'American Trauma Society'),
(17802, 15019, 'en', 'name', 'Hillwood Estate, Museum and Garden'),
(17803, 15020, 'en', 'name', 'Land Quality Management'),
(17804, 15021, 'en', 'name', 'Consortium for Research in Automatic and Telecommunications'),
(17805, 15021, 'it', 'name', 'Consorzio per la Ricerca nell''Automatica e Telecomunicazioni'),
(17806, 15022, 'no_lang_code', 'name', 'Theranova (United States)'),
(17807, 15023, 'en', 'name', 'Lifelabs New York'),
(17808, 15024, 'en', 'name', 'Life Lab'),
(17809, 15025, 'no_lang_code', 'name', 'Serpin Pharma (United States)'),
(17810, 15026, 'en', 'name', 'Democenter'),
(17811, 15026, 'it', 'name', 'Fondazione Democenter'),
(17812, 15027, 'no_lang_code', 'name', 'Aernnova (Spain)'),
(17813, 15028, 'it', 'name', 'Azienda Ospedaliera Citta'' della Salute e della Scienza di Torino'),
(17814, 15029, 'en', 'name', 'Union of Agricultural Cooperatives of Peza'),
(17815, 15030, 'no_lang_code', 'name', 'Future Diagnostics (Netherlands)'),
(17816, 15031, 'no_lang_code', 'name', 'Applied Medical Technology (United States)'),
(17817, 15032, 'de', 'name', 'Deutsche Gesellschaft für Galvano- und Oberflächentechnik'),
(17818, 15033, 'no_lang_code', 'name', 'Knowledge Integration (United Kingdom)'),
(17819, 15034, 'en', 'name', 'East Thames Group'),
(17820, 15035, 'no_lang_code', 'name', 'Berlin Schalltechnisches Büro'),
(17821, 15036, 'pt', 'name', 'Centro Operativo e de Tecnologia de Regadio'),
(17822, 15037, 'en', 'name', 'Eyes of the World Media Group'),
(17823, 15038, 'no_lang_code', 'name', 'Murata (France)'),
(17824, 15039, 'no_lang_code', 'name', 'Mondelēz International (United Kingdom)'),
(17825, 15040, 'no_lang_code', 'name', 'Xeris Pharmaceuticals (United States)'),
(17826, 15041, 'no_lang_code', 'name', 'Electronic Arts (United Kingdom)'),
(17827, 15042, 'en', 'name', 'Alaska Department of Education and Early Development'),
(17828, 15043, 'en', 'name', 'Carrier Clinic'),
(17829, 15044, 'no_lang_code', 'name', 'Dynamic Boosting Systems (United Kingdom)'),
(17830, 15045, 'no_lang_code', 'name', 'Docobo (United Kingdom)'),
(17831, 15046, 'en', 'name', 'American Accounting Association'),
(17832, 15047, 'no_lang_code', 'name', 'Oesterreichs Energie'),
(17833, 15048, 'no_lang_code', 'name', 'Begell House (United States)'),
(17834, 15049, 'fr', 'name', 'Centre Hospitalier ChrƩtien'),
(17835, 15050, 'no_lang_code', 'name', 'Real Time Tomography (United States)'),
(17836, 15051, 'no_lang_code', 'name', 'Ciris IngƩnierie (France)'),
(17837, 15052, 'no_lang_code', 'name', 'AlphaMed (United States)'),
(17838, 15053, 'en', 'name', 'Institute for Employment Studies'),
(17839, 15054, 'no_lang_code', 'name', 'Compagnie EuropĆ©enne d’intelligence StratĆ©gique (France)'),
(17840, 15055, 'en', 'name', 'Tazewell County Health Department'),
(17841, 15056, 'no_lang_code', 'name', 'Medivir (Sweden)'),
(17842, 15057, 'no_lang_code', 'name', '5N Plus (United Kingdom)'),
(17843, 15058, 'en', 'name', 'Enterprise State Community College'),
(17844, 15059, 'fr', 'name', 'Laval Mayenne Technopole'),
(17845, 15060, 'en', 'name', 'South Puget Intertribal Planning Agency'),
(17846, 15061, 'no_lang_code', 'name', 'Federal Mogul (Sweden)'),
(17847, 15062, 'en', 'name', 'Library of Michigan'),
(17848, 15063, 'no_lang_code', 'name', 'Rheonix (United States)'),
(17849, 15064, 'no_lang_code', 'name', 'Aerospace & Advanced Composites (Austria)'),
(17850, 15065, 'no_lang_code', 'name', 'Humanetics Corporation (United States)'),
(17851, 15066, 'en', 'name', 'St. Luke''s International Hospital'),
(17852, 15066, 'ja', 'name', 'č–č·ÆåŠ å›½éš›ē—…é™¢'),
(17853, 15067, 'no_lang_code', 'name', 'Equens (Netherlands)'),
(17854, 15068, 'no_lang_code', 'name', 'Ingeteam (Spain)'),
(17855, 15069, 'no_lang_code', 'name', 'Qualcomm (United States)'),
(17856, 15070, 'en', 'name', 'Citizens for Responsibility and Ethics in Washington'),
(17857, 15071, 'no_lang_code', 'name', 'Advanced Process Combinatorics (United States)'),
(17858, 15072, 'en', 'name', 'Center for Success and Independence'),
(17859, 15073, 'no_lang_code', 'name', 'Ascora (Germany)'),
(17860, 15074, 'no_lang_code', 'name', 'Eidos (Italy)'),
(17861, 15075, 'en', 'name', 'Company of Biologists'),
(17862, 15076, 'en', 'name', 'Cincinnati Christian University'),
(17863, 15077, 'no_lang_code', 'name', 'Compart (Germany)'),
(17864, 15078, 'no_lang_code', 'name', 'Etas (Germany)'),
(17865, 15079, 'no_lang_code', 'name', 'Ilika (United Kingdom)'),
(17866, 15080, 'en', 'name', 'International Council for Building, International Council for Research and Innovation in Building and Construction'),
(17867, 15080, 'nl', 'name', 'Conseil International du BĆ¢timent'),
(17868, 15081, 'no_lang_code', 'name', 'Icosagen (Estonia)'),
(17869, 15082, 'no_lang_code', 'name', 'AFrame Digital (United States)'),
(17870, 15083, 'en', 'name', 'Black Sea NGO Network'),
(17871, 15084, 'it', 'name', 'Istituto di Ricerche Economiche e Sociali'),
(17872, 15085, 'de', 'name', 'Europäische Gesellschaft für Regionale und Internationale Sozialforschung'),
(17873, 15085, 'en', 'name', 'European Group for Integrated Social Research'),
(17874, 15086, 'no_lang_code', 'name', 'Latécoère (France)'),
(17875, 15087, 'no_lang_code', 'name', 'Caliber Imaging and Diagnostics (United States)'),
(17876, 15088, 'fr', 'name', 'Centre de Culture Scientifique, Technique et Industrielle'),
(17877, 15089, 'en', 'name', 'Institute for Research and Information in Health Economics'),
(17878, 15089, 'fr', 'name', 'Institut de Recherche et de Documentation en Ɖconomie de la SantĆ©'),
(17879, 15090, 'en', 'name', 'University of the West Indies'),
(17880, 15091, 'no_lang_code', 'name', 'Masmec (Italy)'),
(17881, 15092, 'no_lang_code', 'name', 'Ideko (Spain)'),
(17882, 15093, 'no_lang_code', 'name', 'Amethyst Research (United States)'),
(17883, 15094, 'no_lang_code', 'name', 'AkzoNobel (Sweden)'),
(17884, 15095, 'en', 'name', 'Ronald McDonald House Charities'),
(17885, 15096, 'en', 'name', 'Abraham Lincoln Presidential Library and Museum'),
(17886, 15097, 'en', 'name', 'Champlain Valley Union High School'),
(17887, 15098, 'en', 'name', 'Friends of Historic Boonville'),
(17888, 15099, 'en', 'name', 'Central Arizona College'),
(17889, 15100, 'en', 'name', 'The Roumel Group'),
(17890, 15101, 'en', 'name', 'University of the Third Age'),
(17891, 15102, 'no_lang_code', 'name', 'Agrii (United Kingdom)'),
(17892, 15103, 'no_lang_code', 'name', 'Lehnsgaard (Denmark)'),
(17893, 15104, 'en', 'name', 'AIDS Services of Austin'),
(17894, 15105, 'no_lang_code', 'name', 'IVL Audio (Canada)'),
(17895, 15106, 'de', 'name', 'Berliner Institut für Sozialforschung'),
(17896, 15107, 'no_lang_code', 'name', 'HMJ Corporation (United States)'),
(17897, 15108, 'no_lang_code', 'name', 'FM Mattsson (Sweden)'),
(17898, 15109, 'en', 'name', 'United States Tax Court'),
(17899, 15110, 'no_lang_code', 'name', 'BioBullets (United Kingdom)'),
(17900, 15111, 'no_lang_code', 'name', 'Advanced Science and Automation (United States)'),
(17901, 15112, 'pt', 'name', 'Instituto de Desenvolvimento e Inovação Tecnológica do Minho'),
(17902, 15113, 'no_lang_code', 'name', 'Eftas Remote Sensing Technology Transfer (Germany)'),
(17903, 15114, 'no_lang_code', 'name', 'Gentoo (United Kingdom)'),
(17904, 15115, 'no_lang_code', 'name', 'Helmed Spine Implants (Greece)'),
(17905, 15116, 'no_lang_code', 'name', 'InfoCamere (Italy)'),
(17906, 15117, 'no_lang_code', 'name', 'Farasis Energy (United States)'),
(17907, 15118, 'en', 'name', 'Kendall College'),
(17908, 15119, 'no_lang_code', 'name', 'Mediamobile (Finland)'),
(17909, 15120, 'no_lang_code', 'name', 'Fractal Systems (United States)'),
(17910, 15121, 'en', 'name', 'Youth Rights Media'),
(17911, 15122, 'en', 'name', 'Rhino Ark United States of America'),
(17912, 15123, 'no_lang_code', 'name', 'Lesprojekt (Czechia)'),
(17913, 15124, 'no_lang_code', 'name', 'CFN Precision'),
(17914, 15125, 'en', 'name', 'Birmingham Bloomfield Community Coalition'),
(17915, 15126, 'no_lang_code', 'name', 'BioPredict (United States)'),
(17916, 15127, 'en', 'name', 'Grace A. Dow Memorial Library'),
(17917, 15128, 'en', 'name', 'Institute of Biopolymers and Chemical Fibres'),
(17918, 15129, 'en', 'name', 'Dance Heritage Coalition'),
(17919, 15130, 'no_lang_code', 'name', 'Synthena (Switzerland)'),
(17920, 15131, 'no_lang_code', 'name', 'Isofoton (Spain)'),
(17921, 15132, 'no_lang_code', 'name', 'Internazionale Marmi e Macchine Carrara (Italy)'),
(17922, 15133, 'no_lang_code', 'name', 'Katchem (Czechia)'),
(17923, 15134, 'it', 'name', 'Comitato Termotecnico Italiano Energia e Ambiente'),
(17924, 15135, 'no_lang_code', 'name', 'Atlas Copco (United Kingdom)'),
(17925, 15136, 'en', 'name', 'Heartland Community College'),
(17926, 15137, 'es', 'name', 'Universidad Iberoamericana'),
(17927, 15138, 'no_lang_code', 'name', 'Faurecia (France)'),
(17928, 15139, 'no_lang_code', 'name', 'Materials Science International Services (Germany)'),
(17929, 15140, 'en', 'name', 'Tri-Cities Cancer Center'),
(17930, 15141, 'en', 'name', 'Rocky River Public Library'),
(17931, 15142, 'no_lang_code', 'name', 'Fluidhouse (Finland)'),
(17932, 15143, 'no_lang_code', 'name', 'PXBioVisioN (Germany)'),
(17933, 15144, 'no_lang_code', 'name', 'Christmann Informationstechnik + Medien (Germany)'),
(17934, 15145, 'en', 'name', 'Lottolab Studio'),
(17935, 15146, 'en', 'name', 'Chester County Hospital'),
(17936, 15147, 'no_lang_code', 'name', 'CDI Bioscience (United States)'),
(17937, 15148, 'no_lang_code', 'name', 'InfoConsult (Germany)'),
(17938, 15149, 'no_lang_code', 'name', 'BetaStem Therapeutics (United States)'),
(17939, 15150, 'fr', 'name', 'Celabor'),
(17940, 15151, 'no_lang_code', 'name', 'Circle (United States)'),
(17941, 15152, 'fr', 'name', 'Institut National de Recherche en SantƩ Publique'),
(17942, 15153, 'en', 'name', 'National Institutue of Research and Development for Earth’s Physics'),
(17943, 15153, 'ro', 'name', 'Institutul National de Cercetare si Dezvoltare pentru Fizica Pamantului'),
(17944, 15154, 'no_lang_code', 'name', 'Proximus (Belgium)'),
(17945, 15155, 'no_lang_code', 'name', 'Antenova (United Kingdom)'),
(17946, 15156, 'no_lang_code', 'name', 'ProterixBio (United States)'),
(17947, 15157, 'en', 'name', 'Kent District Library'),
(17948, 15158, 'en', 'name', 'International Virtual Laboratory for Enterprise Interoperability'),
(17949, 15159, 'en', 'name', 'Victorian Infectious Diseases Reference Laboratory'),
(17950, 15160, 'nl', 'name', 'Koninklijke BAM Groep'),
(17951, 15160, 'no_lang_code', 'name', 'Royal BAM Group (Netherlands)'),
(17952, 15161, 'en', 'name', 'Max Planck Digital Library'),
(17953, 15162, 'en', 'name', 'Irish Rail'),
(17954, 15163, 'en', 'name', 'Chicago Kent College of Law'),
(17955, 15164, 'no_lang_code', 'name', 'Internet Society Bulgaria'),
(17956, 15165, 'no_lang_code', 'name', 'Checkit (United Kingdom)'),
(17957, 15166, 'no_lang_code', 'name', 'Farran Technology (Ireland)'),
(17958, 15167, 'no_lang_code', 'name', 'Applied Materials (United Kingdom)'),
(17959, 15168, 'en', 'name', 'Mediterranean Institute of Fundamental Physics'),
(17960, 15169, 'no_lang_code', 'name', 'Applied Functional Materials (United Kingdom)'),
(17961, 15170, 'no_lang_code', 'name', 'Level 7 Systems (United Kingdom)'),
(17962, 15171, 'no_lang_code', 'name', 'Kepar Electronica (Spain)'),
(17963, 15172, 'no_lang_code', 'name', 'JBS Science (United States)'),
(17964, 15173, 'no_lang_code', 'name', 'ApplusVelosi (United Kingdom)'),
(17965, 15174, 'no_lang_code', 'name', 'Morris Leslie Group (United Kingdom)'),
(17966, 15175, 'no_lang_code', 'name', 'EngeniusMicro (United States)'),
(17967, 15176, 'no_lang_code', 'name', 'Glotech (United States)'),
(17968, 15177, 'no_lang_code', 'name', 'Goss Springs (United Kingdom)'),
(17969, 15178, 'no_lang_code', 'name', 'Allen Press (United States)'),
(17970, 15179, 'no_lang_code', 'name', 'Miller Canfield (United States)'),
(17971, 15180, 'no_lang_code', 'name', 'Interscience Communications (United Kingdom)'),
(17972, 15181, 'no_lang_code', 'name', 'Senso (Spain)'),
(17973, 15182, 'en', 'name', 'Daughters of the American Revolution'),
(17974, 15183, 'en', 'name', 'Wells College'),
(17975, 15184, 'sr', 'name', 'Zdravstveni centar'),
(17976, 15185, 'no_lang_code', 'name', 'Ashwoods Automotive (United Kingdom)'),
(17977, 15186, 'en', 'name', 'Illinois State Board of Education'),
(17978, 15187, 'no_lang_code', 'name', 'Regenerys (United Kingdom)'),
(17979, 15188, 'en', 'name', 'Dystonia Medical Research Foundation'),
(17980, 15189, 'no_lang_code', 'name', 'Engineering Acoustics (United States)'),
(17981, 15190, 'en', 'name', 'Jones County Junior College'),
(17982, 15191, 'en', 'name', 'Fond du Lac Historical Society'),
(17983, 15192, 'no_lang_code', 'name', 'Fimet (Finland)'),
(17984, 15193, 'en', 'name', 'National Optics Institute'),
(17985, 15193, 'fr', 'name', 'Institut National d''Optique'),
(17986, 15194, 'en', 'name', 'Fond du Lac School District'),
(17987, 15195, 'no_lang_code', 'name', 'Antec (Germany)'),
(17988, 15196, 'en', 'name', 'weSPARK Cancer Support Center'),
(17989, 15197, 'no_lang_code', 'name', 'Active Space Technologies (Germany)'),
(17990, 15198, 'en', 'name', 'Strength For Life'),
(17991, 15199, 'no_lang_code', 'name', 'ARIA Technologies'),
(17992, 15200, 'en', 'name', 'Empire State Library Network'),
(17993, 15201, 'no_lang_code', 'name', 'High Voltage Partial Discharge (United Kingdom)'),
(17994, 15202, 'no_lang_code', 'name', 'AbTech (United States)'),
(17995, 15203, 'en', 'name', 'Greek Rescue Team'),
(17996, 15204, 'no_lang_code', 'name', 'FocalCool (United States)'),
(17997, 15205, 'en', 'name', 'Walking With Anthony'),
(17998, 15206, 'en', 'name', 'United States Handcycle Federation'),
(17999, 15207, 'no_lang_code', 'name', 'CNH Industrial (Belgium)'),
(18000, 15208, 'no_lang_code', 'name', 'Ashton & Moore (United Kingdom)'),
(18001, 15209, 'en', 'name', 'Bay State Community Services'),
(18002, 15210, 'no_lang_code', 'name', 'Vastrata (United Kingdom)'),
(18003, 15211, 'en', 'name', 'Institute of Highway Engineers'),
(18004, 15212, 'no_lang_code', 'name', 'Clariant (Germany)'),
(18005, 15213, 'en', 'name', 'Wounded Artist Project'),
(18006, 15214, 'en', 'name', 'Challenge Center'),
(18007, 15215, 'no_lang_code', 'name', 'Cerebral Diagnostics (Canada)'),
(18008, 15216, 'no_lang_code', 'name', 'AcQ Inducom'),
(18009, 15217, 'en', 'name', 'Identity'),
(18010, 15218, 'en', 'name', 'National Federation of Electrotechnical and Electronics'),
(18011, 15218, 'it', 'name', 'Federazione ANIE, Federazione Nazionale Imprese Elettroniche ed Elettrotecniche'),
(18012, 15219, 'no_lang_code', 'name', 'Aylesford Newsprint (United Kingdom)'),
(18013, 15220, 'en', 'name', 'Flathead High School'),
(18014, 15221, 'en', 'name', 'Walk for Nepal'),
(18015, 15222, 'no_lang_code', 'name', 'BVT Technologies (Czechia)'),
(18016, 15223, 'en', 'name', 'United States Postal Service'),
(18017, 15223, 'es', 'name', 'Servicio Postal de los Estados Unidos'),
(18018, 15224, 'no_lang_code', 'name', 'Martech International (Belgium)'),
(18019, 15225, 'no_lang_code', 'name', 'Akyüz Plastik (Turkey)'),
(18020, 15226, 'en', 'name', 'Century College'),
(18021, 15227, 'it', 'name', 'AIAS Bologna'),
(18022, 15228, 'en', 'name', 'Cary Medical Center'),
(18023, 15229, 'no_lang_code', 'name', 'Korona (Slovenia)'),
(18024, 15230, 'en', 'name', 'IT''S TIME TEXAS'),
(18025, 15231, 'en', 'name', 'Barre Town Middle and Elementary School'),
(18026, 15232, 'no_lang_code', 'name', 'Kubota Research Associates (United States)'),
(18027, 15233, 'no_lang_code', 'name', 'Intellispeak (United States)'),
(18028, 15234, 'no_lang_code', 'name', 'Interface Biologics (Canada)'),
(18029, 15235, 'no_lang_code', 'name', 'ChemRoutes (Canada)'),
(18030, 15236, 'en', 'name', 'Urologic Research Institute'),
(18031, 15237, 'en', 'name', 'Columbus Law Library Association'),
(18032, 15238, 'en', 'name', 'Cyprus Police'),
(18033, 15239, 'no_lang_code', 'name', 'PTC (France)'),
(18034, 15240, 'en', 'name', 'Public Library of Science'),
(18035, 15241, 'en', 'name', 'Dean Associates'),
(18036, 15242, 'pl', 'name', 'Fundacja Inkubator'),
(18037, 15243, 'no_lang_code', 'name', 'Brimson Laboratories (United States)'),
(18038, 15244, 'en', 'name', 'Shawnee State University'),
(18039, 15245, 'en', 'name', 'Centre for Independent Social Research'),
(18040, 15245, 'ru', 'name', 'Центр независимых ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… исслеГований'),
(18041, 15246, 'en', 'name', 'Global Health Systems Solutions'),
(18042, 15247, 'en', 'name', 'Courtesy Associates'),
(18043, 15248, 'no_lang_code', 'name', 'Fives Landis (United Kingdom)'),
(18044, 15249, 'en', 'name', 'Community Colleges of Spokane'),
(18045, 15250, 'no_lang_code', 'name', 'Concawe'),
(18046, 15251, 'no_lang_code', 'name', 'RaNA Therapeutics (United States)'),
(18047, 15252, 'no_lang_code', 'name', 'DataMED (Italy)'),
(18048, 15253, 'no_lang_code', 'name', 'Demuris (United Kingdom)'),
(18049, 15254, 'no_lang_code', 'name', 'Dg Technology Service'),
(18050, 15255, 'en', 'name', 'Warren Newport Public Library'),
(18051, 15256, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(18052, 15256, 'en', 'name', 'Higher Institute for Applied Sciences and Technology'),
(18053, 15257, 'no_lang_code', 'name', 'CLOCKSS'),
(18054, 15258, 'en', 'name', 'Islenet'),
(18055, 15259, 'no_lang_code', 'name', 'E. Brƶll (Austria)'),
(18056, 15260, 'en', 'name', 'American Institute of Aeronautics and Astronautics'),
(18057, 15261, 'en', 'name', 'Library and Archives Canada'),
(18058, 15261, 'fr', 'name', 'BibliothĆØque et archives canada'),
(18059, 15262, 'en', 'name', 'Virginia Community College System'),
(18060, 15263, 'no_lang_code', 'name', 'Structure Based Design (United States)'),
(18061, 15264, 'no_lang_code', 'name', 'A-Gas International (United Kingdom)'),
(18062, 15265, 'no_lang_code', 'name', 'Data Numerica Institute (United States)'),
(18063, 15266, 'en', 'name', 'Bay Area Video Coalition'),
(18064, 15267, 'no_lang_code', 'name', 'Comsa Emte (Spain)'),
(18065, 15268, 'no_lang_code', 'name', 'Looking Glass Analytics (United States)'),
(18066, 15269, 'no_lang_code', 'name', 'Grassroots Arts and Research (Germany)'),
(18067, 15270, 'no_lang_code', 'name', 'TetraLogic Pharmaceuticals (United States)'),
(18068, 15271, 'no_lang_code', 'name', 'International Project Management, Plating and Materials (France)'),
(18069, 15272, 'no_lang_code', 'name', 'Cleopa (Germany)'),
(18070, 15273, 'no_lang_code', 'name', 'Axon (United States)'),
(18071, 15274, 'en', 'name', 'Institute of Mathematics and Mechanics'),
(18072, 15275, 'no_lang_code', 'name', 'Eurodecision (France)'),
(18073, 15276, 'no_lang_code', 'name', 'Impetus Consultants'),
(18074, 15277, 'no_lang_code', 'name', 'MBDA (United Kingdom)'),
(18075, 15278, 'nl', 'name', 'Goudappel Coffeng'),
(18076, 15279, 'en', 'name', 'The Institute for Therapeutic Discovery'),
(18077, 15280, 'no_lang_code', 'name', 'SKF (Italy)'),
(18078, 15281, 'no_lang_code', 'name', 'Danone (France)'),
(18079, 15282, 'en', 'name', 'London Borough of Islington'),
(18080, 15283, 'en', 'name', 'Historic Royal Palaces'),
(18081, 15284, 'en', 'name', 'Wintergreen Adaptive Sports'),
(18082, 15285, 'no_lang_code', 'name', 'Benteler (Austria)'),
(18083, 15286, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Ń‚ŃŃ…Š½Ń–Ń‡Š½Š°Š¹ Š°ŠŗŃƒŃŃ‚Ń‹ŠŗŃ–'),
(18084, 15286, 'en', 'name', 'Institute of Technical Acoustics'),
(18085, 15287, 'en', 'name', 'Texas State Library and Archives Commission'),
(18086, 15288, 'en', 'name', 'Columbus Zoo and Aquarium'),
(18087, 15289, 'no_lang_code', 'name', 'Imprima Costruzioni (Italy)'),
(18088, 15290, 'en', 'name', 'Institute of Laser Physics'),
(18089, 15290, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лазерной физики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(18090, 15291, 'no_lang_code', 'name', 'Industrial Optical Measurement Systems (United States)'),
(18091, 15292, 'no_lang_code', 'name', 'International Marine and Dredging Consultants'),
(18092, 15293, 'no_lang_code', 'name', 'Attagene'),
(18093, 15294, 'en', 'name', 'Penfold Patterson Research Institute'),
(18094, 15295, 'no_lang_code', 'name', 'Carlsberg Group (Denmark)'),
(18095, 15296, 'de', 'name', 'Chemisches und Veterinäruntersuchungsamt Münsterland-Emscher-Lippe'),
(18096, 15297, 'no_lang_code', 'name', 'Tivorsan Pharmaceuticals (United States)'),
(18097, 15298, 'no_lang_code', 'name', 'Azienda MobilitĆ  e Trasporti'),
(18098, 15299, 'en', 'name', 'SAMFund'),
(18099, 15300, 'no_lang_code', 'name', 'GMC (Italy)'),
(18100, 15301, 'en', 'name', 'Blessing Hospital'),
(18101, 15302, 'en', 'name', 'American Sexual Health Association'),
(18102, 15303, 'en', 'name', 'Aldebaran Marine Research and Broadcast'),
(18103, 15304, 'en', 'name', 'Food Safety Authority of Ireland'),
(18104, 15304, 'ga', 'name', 'ÚdarĆ”s SĆ”bhĆ”ilteachta Bia na hƉireann'),
(18105, 15305, 'en', 'name', 'Antioch College'),
(18106, 15306, 'no_lang_code', 'name', 'Mecanizados Escribano'),
(18107, 15307, 'en', 'name', 'Centre of Technological Resources in Chemistry'),
(18108, 15308, 'no_lang_code', 'name', 'Luxcontrol (Luxembourg)'),
(18109, 15309, 'en', 'name', 'Harford Community College'),
(18110, 15310, 'en', 'name', 'Executive Office of the President'),
(18111, 15310, 'es', 'name', 'Oficina Ejecutiva del Presidente de los Estados Unidos'),
(18112, 15310, 'fr', 'name', 'Bureau exĆ©cutif du prĆ©sident des Ɖtats-unis'),
(18113, 15311, 'en', 'name', 'Italian Publishers Association'),
(18114, 15311, 'it', 'name', 'Associazione Italiana Editori'),
(18115, 15312, 'no_lang_code', 'name', 'CUNA Mutual Group (United States)'),
(18116, 15313, 'no_lang_code', 'name', 'Huntington Consultancy (United States)'),
(18117, 15314, 'no_lang_code', 'name', 'Logisticon (Netherlands)'),
(18118, 15315, 'no_lang_code', 'name', 'Coherent (United Kingdom)'),
(18119, 15316, 'no_lang_code', 'name', 'Environmental Software and Services (Austria)'),
(18120, 15317, 'en', 'name', 'St. Louis County Library'),
(18121, 15318, 'no_lang_code', 'name', 'Lusotufo (Portugal)'),
(18122, 15319, 'en', 'name', 'South Shore Hospital'),
(18123, 15320, 'en', 'name', 'Milano Metropoli Development Agency'),
(18124, 15320, 'it', 'name', 'Agenzia Sviluppo Milano Metropoli S.P.A.'),
(18125, 15321, 'no_lang_code', 'name', 'Ergon Consulting Group (Greece)'),
(18126, 15322, 'en', 'name', 'European Foundation for Clinical Nanomedicine'),
(18127, 15323, 'en', 'name', 'Uncas Health District'),
(18128, 15324, 'de', 'name', 'Gesellschaft für wissenschaftliche Datenverarbeitung mbH Göttingen'),
(18129, 15325, 'no_lang_code', 'name', 'ApprenNet (United States)'),
(18130, 15326, 'no_lang_code', 'name', 'Altec (United States)'),
(18131, 15327, 'no_lang_code', 'name', 'Multidisciplinary Digital Publishing Institute (Switzerland)'),
(18132, 15328, 'en', 'name', 'Higher Education Institution Lucia de BrouckĆØre'),
(18133, 15328, 'fr', 'name', 'Haute Ɖcole Lucia de BrouckĆØre'),
(18134, 15329, 'no_lang_code', 'name', 'AretƩ Associates (United States)'),
(18135, 15330, 'en', 'name', 'Wasatch Adaptive Sports'),
(18136, 15331, 'en', 'name', 'Tapestri'),
(18137, 15332, 'en', 'name', 'American Vacuum Society'),
(18138, 15333, 'no_lang_code', 'name', 'Laitek (United States)'),
(18139, 15334, 'en', 'name', 'Living with Disability'),
(18140, 15335, 'en', 'name', 'Social Work Policy Institute'),
(18141, 15336, 'no_lang_code', 'name', 'Progress (Ireland)'),
(18142, 15337, 'no_lang_code', 'name', 'Design Science (United States)'),
(18143, 15338, 'es', 'name', 'Fundació Privada per a la Investigació Nutricional'),
(18144, 15339, 'no_lang_code', 'name', 'Eaton (United States)'),
(18145, 15340, 'no_lang_code', 'name', 'Ɖvaluation Technologique IngĆ©nierie and Applications (France)'),
(18146, 15341, 'en', 'name', 'Good Shepherd Penn Partners'),
(18147, 15342, 'no_lang_code', 'name', 'GeoX (Hungary)'),
(18148, 15343, 'no_lang_code', 'name', 'Ayanda Biosystems (Switzerland)'),
(18149, 15344, 'en', 'name', 'Ann Arbor Hands On Museum'),
(18150, 15345, 'en', 'name', 'European Council for Construction Research, Development and Innovation'),
(18151, 15346, 'no_lang_code', 'name', 'Bioscientifica (United Kingdom)'),
(18152, 15347, 'en', 'name', 'ETC International'),
(18153, 15348, 'no_lang_code', 'name', 'Cadence Design Systems (Germany)'),
(18154, 15349, 'en', 'name', 'Mediterranean Information Office for Environment Culture and Sustainable Development'),
(18155, 15350, 'en', 'name', 'Family Centre for Health and Wellness'),
(18156, 15351, 'no_lang_code', 'name', 'AMES Technology (United States)'),
(18157, 15352, 'no_lang_code', 'name', 'AccuStrata (United States)'),
(18158, 15353, 'no_lang_code', 'name', 'Institut für Getreideverarbeitung (Germany)'),
(18159, 15354, 'no_lang_code', 'name', 'Associated Dental Products (United Kingdom)'),
(18160, 15355, 'no_lang_code', 'name', 'Posti Group (Finland)'),
(18161, 15356, 'no_lang_code', 'name', 'Mass Spec Analytical (United Kingdom)'),
(18162, 15357, 'en', 'name', 'Plastic Surgery Foundation'),
(18163, 15358, 'no_lang_code', 'name', 'Almex (Netherlands)'),
(18164, 15359, 'en', 'name', 'Sarasota Memorial Health Care System'),
(18165, 15360, 'de', 'name', 'Institut für Forschung und Transfer'),
(18166, 15361, 'no_lang_code', 'name', 'Coris BioConcept (Belgium)'),
(18167, 15362, 'no_lang_code', 'name', 'Blendics (United States)'),
(18168, 15363, 'en', 'name', 'EBSCO Information Services'),
(18169, 15363, 'fr', 'name', 'Ebsco information services'),
(18170, 15363, 'no_lang_code', 'name', 'EBSCO Industries (United States)'),
(18171, 15364, 'en', 'name', 'Community Bridges'),
(18172, 15365, 'en', 'name', 'Reading Partners'),
(18173, 15366, 'en', 'name', 'Rockford Public Library'),
(18174, 15367, 'en', 'name', 'Lake Erie College'),
(18175, 15368, 'en', 'name', 'Wheeling Forward'),
(18176, 15369, 'en', 'name', 'Sutter Institute for Medical Research'),
(18177, 15370, 'en', 'name', 'EuroGeoSurveys'),
(18178, 15371, 'cs', 'name', 'Energy Centre Ceske Budejovice'),
(18179, 15372, 'en', 'name', 'Therapeutic Research Foundation'),
(18180, 15373, 'en', 'name', 'European Photonics Industry Consortium'),
(18181, 15374, 'no_lang_code', 'name', 'Eduworks (United States)'),
(18182, 15375, 'no_lang_code', 'name', 'Hood Laboratories (United States)'),
(18183, 15376, 'no_lang_code', 'name', 'Biocrede (United States)'),
(18184, 15377, 'no_lang_code', 'name', 'CentMa (Germany)'),
(18185, 15378, 'no_lang_code', 'name', 'Intellipro Group (United States)'),
(18186, 15379, 'en', 'name', 'Lane College'),
(18187, 15380, 'no_lang_code', 'name', 'ASCOMP (Switzerland)'),
(18188, 15381, 'no_lang_code', 'name', 'Mosaix Software (United States)'),
(18189, 15382, 'no_lang_code', 'name', 'Greenspace Scotland (United Kingdom)'),
(18190, 15383, 'no_lang_code', 'name', 'Delong Instruments (Czechia)'),
(18191, 15384, 'no_lang_code', 'name', 'New Hampshire Ball Bearings (Germany)'),
(18192, 15385, 'en', 'name', 'Alaska Youth and Family Network'),
(18193, 15386, 'no_lang_code', 'name', 'Ljubljana Passenger Transport'),
(18194, 15387, 'en', 'name', 'Documentary Educational Resources'),
(18195, 15388, 'no_lang_code', 'name', 'IFU (Germany)'),
(18196, 15389, 'it', 'name', 'Polo Innovazione Automotive'),
(18197, 15389, 'no_lang_code', 'name', 'Innovazione Automotive Metalmeccanica (Italy)'),
(18198, 15390, 'no_lang_code', 'name', 'Adelphi Group (United Kingdom)'),
(18199, 15391, 'en', 'name', 'Central Virginia Community College'),
(18200, 15392, 'en', 'name', 'Makin It Happen Coalition for Resilient Youth'),
(18201, 15393, 'en', 'name', 'Jackson Health System'),
(18202, 15394, 'en', 'name', 'European Federation of Railway Trackwork Contractors'),
(18203, 15395, 'en', 'name', 'Mental Health America of Oregon'),
(18204, 15396, 'en', 'name', 'Skyland Care Center'),
(18205, 15397, 'it', 'name', 'ASL Roma'),
(18206, 15398, 'no_lang_code', 'name', 'ATRP Solutions (United States)'),
(18207, 15399, 'no_lang_code', 'name', 'Beran Instruments (United Kingdom)'),
(18208, 15400, 'en', 'name', 'Sunshine Kids Foundation'),
(18209, 15401, 'en', 'name', 'Institute of Rural and Agricultural Development'),
(18210, 15401, 'pl', 'name', 'Instytut Rozwoju Wsi i Rolnictwa Polskiej Akademii Nauk'),
(18211, 15402, 'en', 'name', 'GeoScienceWorld'),
(18212, 15403, 'en', 'name', 'Delaware Coalition Against Domestic Violence'),
(18213, 15404, 'en', 'name', 'American Nuclear Society'),
(18214, 15405, 'en', 'name', 'Kirtland Community College'),
(18215, 15406, 'no_lang_code', 'name', 'Lab_Bell (Canada)'),
(18216, 15407, 'no_lang_code', 'name', 'Laser Tissue Welding (United States)'),
(18217, 15408, 'no_lang_code', 'name', 'Vidavo (Greece)'),
(18218, 15409, 'no_lang_code', 'name', 'Flying Bridge Technologies (United States)'),
(18219, 15410, 'no_lang_code', 'name', '2.-0 LCA Consultants (Denmark)'),
(18220, 15411, 'it', 'name', 'UniCredito Italiano'),
(18221, 15411, 'no_lang_code', 'name', 'UniCredit (Italy)'),
(18222, 15412, 'no_lang_code', 'name', 'Strohl Medical Technologies (United States)'),
(18223, 15413, 'no_lang_code', 'name', 'Carl Cloos Schweißtechnik (Germany)'),
(18224, 15414, 'no_lang_code', 'name', 'Flucon Fluid Control (Germany)'),
(18225, 15415, 'no_lang_code', 'name', 'ePack (United States)'),
(18226, 15416, 'de', 'name', 'Internationale Kommission zum Schutz der Donau'),
(18227, 15416, 'en', 'name', 'International Commission for the Protection of the Danube River'),
(18228, 15417, 'no_lang_code', 'name', 'Andritz (Finland)'),
(18229, 15418, 'no_lang_code', 'name', 'AdaCore (France)'),
(18230, 15419, 'no_lang_code', 'name', 'Inhouse Engineering (Germany)'),
(18231, 15420, 'en', 'name', 'European Council of Applied Sciences and Engineering'),
(18232, 15421, 'no_lang_code', 'name', 'ImmBio (United Kingdom)'),
(18233, 15422, 'en', 'name', 'Institute of Mathematics and Computer Science'),
(18234, 15423, 'en', 'name', 'Essential Partners'),
(18235, 15424, 'en', 'name', 'National Library of Education'),
(18236, 15425, 'no_lang_code', 'name', 'AbilityNet (United Kingdom)'),
(18237, 15426, 'en', 'name', 'AIDS Research Consortium of Atlanta'),
(18238, 15427, 'en', 'name', 'Youth & Opportunity United'),
(18239, 15428, 'en', 'name', 'Middletown Public Library'),
(18240, 15429, 'en', 'name', 'New York State Energy Research and Development Authority'),
(18241, 15430, 'no_lang_code', 'name', 'Triple Point Technology (Canada)'),
(18242, 15431, 'fr', 'name', 'Bureau de CoopƩration Interuniversitaire, ConfƩrence des Recteurs et des Principaux des UniversitƩs du QuƩbec'),
(18243, 15432, 'no_lang_code', 'name', 'Arisaph Pharmaceuticals (United States)'),
(18244, 15433, 'en', 'name', 'The Stillpoint Foundation'),
(18245, 15434, 'en', 'name', 'United States House of Representatives'),
(18246, 15435, 'en', 'name', 'Wolf Park'),
(18247, 15436, 'no', 'name', 'Direktoratet for forvaltning og IKT'),
(18248, 15437, 'en', 'name', 'Baylor Scott & White - Central Texas Foundation'),
(18249, 15438, 'en', 'name', 'Atmosphere Systems and Services'),
(18250, 15439, 'en', 'name', 'E-Seniors'),
(18251, 15440, 'en', 'name', 'Library of Birmingham'),
(18252, 15441, 'no_lang_code', 'name', 'Straumann (Sweden)'),
(18253, 15442, 'no_lang_code', 'name', 'Euskaltel (Spain)'),
(18254, 15443, 'en', 'name', 'Women Involved in Nurturing, Giving, Sharing'),
(18255, 15444, 'en', 'name', 'National Academy of St Cecilia'),
(18256, 15444, 'it', 'name', 'Accademia Nazionale di Santa Cecilia'),
(18257, 15445, 'en', 'name', 'Lexington College'),
(18258, 15446, 'en', 'name', 'Institute for International Political Studies'),
(18259, 15446, 'fr', 'name', 'Institut pour les Ʃtudes de politique internationale'),
(18260, 15447, 'de', 'name', 'Fraunhofer-Institut für Betriebsfestigkeit und Systemzuverlässigkeit'),
(18261, 15447, 'en', 'name', 'Fraunhofer Institute for Structural Durability and System Reliability'),
(18262, 15448, 'en', 'name', 'International Atomic Energy Agency'),
(18263, 15449, 'no_lang_code', 'name', 'Fon (Spain)'),
(18264, 15450, 'no_lang_code', 'name', 'ABIS (Poland)'),
(18265, 15451, 'it', 'name', 'Azienda UnitĆ  Sanitaria Locale 11 di Empoli'),
(18266, 15452, 'no_lang_code', 'name', 'Ausa (Spain)'),
(18267, 15453, 'no_lang_code', 'name', 'GALAB Laboratories (Germany)'),
(18268, 15454, 'no_lang_code', 'name', '3C Research (United Kingdom)'),
(18269, 15455, 'no_lang_code', 'name', 'Encore Pharmaceuticals (United States)'),
(18270, 15456, 'en', 'name', 'Children''s Health Fund'),
(18271, 15457, 'en', 'name', 'Washington Research Foundation'),
(18272, 15458, 'no_lang_code', 'name', 'StemSynergy Therapeutics (United States)'),
(18273, 15459, 'en', 'name', 'Her Majesty''s Revenue and Customs'),
(18274, 15460, 'en', 'name', 'International Association of Environmental Mutagenesis and Genomics Societies'),
(18275, 15461, 'no_lang_code', 'name', 'AeroTex UK (United Kingdom)'),
(18276, 15462, 'no_lang_code', 'name', 'Keraben Grupo (Spain)'),
(18277, 15463, 'no_lang_code', 'name', 'Jacobson Holman (United States)'),
(18278, 15464, 'no_lang_code', 'name', 'ET Enterprises (United Kingdom)'),
(18279, 15465, 'no_lang_code', 'name', 'Corac Group (United Kingdom)'),
(18280, 15466, 'no_lang_code', 'name', 'Q Therapeutics (United States)'),
(18281, 15467, 'fr', 'name', 'Maiz''Europ'''),
(18282, 15468, 'en', 'name', 'Community Chest of Leonia'),
(18283, 15469, 'no_lang_code', 'name', 'Aceites Malagon (Spain)'),
(18284, 15470, 'en', 'name', 'Institute for Behavior Change'),
(18285, 15471, 'no_lang_code', 'name', 'Ingenieurgesellschaft Auto und Verkehr (Germany)'),
(18286, 15472, 'en', 'name', 'Rocky Boy Health Board'),
(18287, 15473, 'de', 'name', 'Gematik Gesellschaft für Telematikanwendungen der Gesundheitskarte'),
(18288, 15474, 'no_lang_code', 'name', 'Intelligentsia Consultants (Luxembourg)'),
(18289, 15475, 'no_lang_code', 'name', 'APDM (United States)'),
(18290, 15476, 'no_lang_code', 'name', 'ImageCat (United Kingdom)'),
(18291, 15477, 'en', 'name', 'Law and Internet Foundation'),
(18292, 15478, 'no_lang_code', 'name', 'Charter Kontron (United Kingdom)'),
(18293, 15479, 'no_lang_code', 'name', 'Ab.Acus (Italy)'),
(18294, 15480, 'no_lang_code', 'name', 'Acos Group (Germany)'),
(18295, 15481, 'no_lang_code', 'name', 'BST Bio Sensor Technology (Germany)'),
(18296, 15482, 'en', 'name', 'Beijing Sanbo Brain Hospital'),
(18297, 15482, 'zh', 'name', 'åŒ—äŗ¬äø‰åšč„‘ē§‘åŒ»é™¢'),
(18298, 15483, 'en', 'name', 'Wilmington University'),
(18299, 15483, 'fr', 'name', 'UniversitƩ de Wilmington'),
(18300, 15484, 'no_lang_code', 'name', 'Amyris (United States)'),
(18301, 15485, 'en', 'name', 'Kansas State Department of Education'),
(18302, 15486, 'no_lang_code', 'name', 'Citard Services (Cyprus)'),
(18303, 15487, 'en', 'name', 'Young Women''s Christian Association'),
(18304, 15488, 'en', 'name', 'Variety The Children''s Charity'),
(18305, 15489, 'no_lang_code', 'name', 'Ion Linac Systems (United States)'),
(18306, 15490, 'en', 'name', 'Behavioral Health Systems'),
(18307, 15491, 'no_lang_code', 'name', 'China National Pharmaceutical Group Corporation (China)'),
(18308, 15491, 'zh', 'name', 'äø­å›½åŒ»čÆé›†å›¢ę€»å…¬åø'),
(18309, 15492, 'en', 'name', 'Clifford Chance'),
(18310, 15493, 'en', 'name', 'Institute of Terrestrial Magnetism Ionosphere and Radio Wave Propagation'),
(18311, 15493, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ земного магнетизма, ионосферы Šø Ń€Š°ŃŠæŃ€Š¾ŃŃ‚Ń€Š°Š½ŠµŠ½ŠøŃ раГиоволн им. Š. Š’. Пушкова'),
(18312, 15494, 'no_lang_code', 'name', 'Verda Bio (United States)'),
(18313, 15495, 'no_lang_code', 'name', 'Aeromechs (Italy)'),
(18314, 15496, 'no_lang_code', 'name', 'Ancile (United States)'),
(18315, 15497, 'en', 'name', 'University Center of Lake County'),
(18316, 15498, 'no_lang_code', 'name', 'Chemviron Carbon (United Kingdom)'),
(18317, 15499, 'no_lang_code', 'name', 'CirComp (Germany)'),
(18318, 15500, 'no_lang_code', 'name', 'Itasca Consultants (Germany)'),
(18319, 15501, 'no_lang_code', 'name', 'Brighten Optics (Canada)'),
(18320, 15502, 'en', 'name', 'Southern Maine Medical Center'),
(18321, 15503, 'en', 'name', 'British Poultry Council'),
(18322, 15504, 'no_lang_code', 'name', 'Van Wees (Netherlands)'),
(18323, 15505, 'no_lang_code', 'name', 'Air Products (Germany)'),
(18324, 15506, 'no_lang_code', 'name', 'InRay Solutions (Bulgaria)'),
(18325, 15507, 'no_lang_code', 'name', 'Breonics (United States)'),
(18326, 15508, 'no_lang_code', 'name', 'BDR Thermea (United Kingdom)'),
(18327, 15509, 'en', 'name', 'Athens Chamber of Commerce and Industry'),
(18328, 15510, 'no_lang_code', 'name', 'GMSbiotech (United States)'),
(18329, 15511, 'en', 'name', 'National Association of Team Survivor'),
(18330, 15512, 'no_lang_code', 'name', 'Colligo (Canada)'),
(18331, 15513, 'no_lang_code', 'name', '2D Formazione (Italy)'),
(18332, 15514, 'en', 'name', 'VitaValley Foundation'),
(18333, 15515, 'no_lang_code', 'name', 'Amplitude Technologies (France)'),
(18334, 15516, 'no_lang_code', 'name', 'LafargeHolcim (United Kingdom)'),
(18335, 15517, 'no_lang_code', 'name', 'SavvyDox (Canada)'),
(18336, 15518, 'no_lang_code', 'name', 'G24 Power (United Kingdom)'),
(18337, 15519, 'no_lang_code', 'name', 'Lhoist (United Kingdom)'),
(18338, 15520, 'en', 'name', 'European Projects & Management Agency'),
(18339, 15521, 'no_lang_code', 'name', 'Diasa Industrial (Spain)'),
(18340, 15522, 'en', 'name', 'Herzliya Medical Center'),
(18341, 15522, 'he', 'name', '×”×Ø×¦×œ×™×” מדיקל הנטר'),
(18342, 15523, 'no_lang_code', 'name', 'Gliamed (United States)'),
(18343, 15524, 'no_lang_code', 'name', 'Altera (United Kingdom)'),
(18344, 15525, 'en', 'name', 'Queensland Eye Institute'),
(18345, 15526, 'en', 'name', 'Federation of American Scientists'),
(18346, 15527, 'en', 'name', 'Self Determination Housing Project of Pennsylvania'),
(18347, 15528, 'no_lang_code', 'name', 'Materials Innovation Technologies (United States)'),
(18348, 15529, 'no_lang_code', 'name', 'Giraf PM (Germany)'),
(18349, 15530, 'en', 'name', 'American Association for Clinical Chemistry'),
(18350, 15531, 'en', 'name', 'Itawamba Community College'),
(18351, 15532, 'en', 'name', 'Unicorn Children''s Foundation'),
(18352, 15533, 'en', 'name', 'Phillips Collection'),
(18353, 15534, 'no_lang_code', 'name', 'Bepress (United States)'),
(18354, 15535, 'en', 'name', 'District of Columbia Public Library'),
(18355, 15536, 'no_lang_code', 'name', 'DxDiscovery (United States)'),
(18356, 15537, 'en', 'name', 'Shanti Project'),
(18357, 15538, 'en', 'name', 'Positively Pink Packages'),
(18358, 15539, 'no_lang_code', 'name', 'KloƩ (France)'),
(18359, 15540, 'en', 'name', 'Knowledge Systems Institute'),
(18360, 15541, 'no_lang_code', 'name', 'Holosonics (United States)'),
(18361, 15542, 'no_lang_code', 'name', 'Babcock & Wilcox (Spain)'),
(18362, 15543, 'en', 'name', 'Community Link'),
(18363, 15544, 'en', 'name', 'Community Health Councils'),
(18364, 15545, 'en', 'name', 'Amyotrophic Lateral Sclerosis Association'),
(18365, 15546, 'no_lang_code', 'name', 'KBR (United Kingdom)'),
(18366, 15547, 'de', 'name', 'Allgemeiner Deutscher Automobil Club'),
(18367, 15547, 'en', 'name', 'General German Automobile Club'),
(18368, 15548, 'en', 'name', 'Lincoln Park Zoo'),
(18369, 15549, 'no_lang_code', 'name', 'Arjowiggins (France)'),
(18370, 15550, 'en', 'name', 'United States Holocaust Memorial Museum'),
(18371, 15551, 'no_lang_code', 'name', 'Coexpair (Belgium)'),
(18372, 15552, 'no_lang_code', 'name', 'Bsoft (Italy)'),
(18373, 15553, 'en', 'name', 'Crawley Borough Council'),
(18374, 15554, 'en', 'name', 'Energy Institute of the Healing Arts Foundation'),
(18375, 15555, 'no_lang_code', 'name', 'Kopitarna Sevnica (Slovenia)'),
(18376, 15556, 'en', 'name', 'Culver Stockton College, Culver–Stockton College'),
(18377, 15557, 'no_lang_code', 'name', 'Environmental Institute'),
(18378, 15558, 'no_lang_code', 'name', 'Comexi Group (Spain)'),
(18379, 15559, 'en', 'name', 'Institute of Atmospheric Sciences and Climate'),
(18380, 15559, 'it', 'name', 'Istituto di Scienze dell''Atmosfera e del Clima'),
(18381, 15560, 'en', 'name', 'Serve Outdoors​ Texas Hill Country Chapter');
INSERT INTO `ror_settings` VALUES
(18382, 15561, 'no_lang_code', 'name', 'Metrohm Autolab (Netherlands)'),
(18383, 15562, 'no_lang_code', 'name', 'Inter Science Research Associates (United States)'),
(18384, 15563, 'fr', 'name', 'Association PƓle Environnement Sud Aquitaine'),
(18385, 15564, 'no_lang_code', 'name', 'Essrg (Hungary)'),
(18386, 15565, 'en', 'name', 'MidHudson Regional Hospital'),
(18387, 15566, 'en', 'name', 'Sudha Hospital and Medical Research Centre'),
(18388, 15567, 'no_lang_code', 'name', 'Brighton Technologies Group (United States)'),
(18389, 15568, 'no_lang_code', 'name', 'Inventys Thermal Technologies (Canada)'),
(18390, 15569, 'no_lang_code', 'name', 'CASON Engineering (Hungary)'),
(18391, 15570, 'el', 'name', 'Ī†Ī”Ī‘Ī¤ĪŸĪ£ Ī¤Ī•Ī§ĪĪŸĪ›ĪŸĪ“ĪŠĪ•Ī£'),
(18392, 15570, 'no_lang_code', 'name', 'Aratos Technologies (Greece)'),
(18393, 15571, 'no_lang_code', 'name', 'Gizelis Robotics (Greece)'),
(18394, 15572, 'en', 'name', 'Artez and Innovatie'),
(18395, 15573, 'no_lang_code', 'name', 'Meritor (United States)'),
(18396, 15574, 'en', 'name', 'Wisconsin Lutheran College'),
(18397, 15575, 'no_lang_code', 'name', 'Abqmr (United States)'),
(18398, 15576, 'en', 'name', 'Metropolitan Community College'),
(18399, 15577, 'no_lang_code', 'name', 'Cardboard Citizens (United Kingdom)'),
(18400, 15578, 'no_lang_code', 'name', 'I-Moss (Belgium)'),
(18401, 15579, 'no_lang_code', 'name', 'Blatchford (United Kingdom)'),
(18402, 15580, 'en', 'name', 'Larrabee Center'),
(18403, 15581, 'en', 'name', 'Southland Hispanic Leadership Council'),
(18404, 15582, 'no_lang_code', 'name', 'Medtrac Technologies (United States)'),
(18405, 15583, 'no_lang_code', 'name', 'Euroinks (Italy)'),
(18406, 15584, 'no_lang_code', 'name', 'CCC Diagnostics (United States)'),
(18407, 15585, 'no', 'name', 'Innovasjon Norge'),
(18408, 15585, 'no_lang_code', 'name', 'Innovation Norway (Norway)'),
(18409, 15586, 'no_lang_code', 'name', 'Ribbon Communications (Israel)'),
(18410, 15587, 'no_lang_code', 'name', 'Dekimo (Belgium)'),
(18411, 15588, 'en', 'name', 'Whiteside County Health Department'),
(18412, 15589, 'no_lang_code', 'name', 'Banss (Germany)'),
(18413, 15590, 'en', 'name', 'Queer African Youth Networking Center'),
(18414, 15591, 'fr', 'name', 'IFAPME'),
(18415, 15592, 'no_lang_code', 'name', 'Doximity (United States)'),
(18416, 15593, 'no_lang_code', 'name', 'Altairnano (United States)'),
(18417, 15594, 'no_lang_code', 'name', 'MA Systems and Control (United Kingdom)'),
(18418, 15595, 'no_lang_code', 'name', 'OmniVision Technologies (United States)'),
(18419, 15596, 'en', 'name', 'Boston Architectural College'),
(18420, 15597, 'en', 'name', 'Grwp Llandrillo Menai'),
(18421, 15598, 'no_lang_code', 'name', 'Eltek Semiconductors (United Kingdom)'),
(18422, 15599, 'no_lang_code', 'name', 'WeCanRow DC'),
(18423, 15600, 'en', 'name', 'National Gallery of Art'),
(18424, 15600, 'es', 'name', 'GalerĆ­a Nacional de Arte'),
(18425, 15601, 'no_lang_code', 'name', 'Impact Innovations (Germany)'),
(18426, 15602, 'en', 'name', 'National Ability Center'),
(18427, 15603, 'en', 'name', 'Navicent Health'),
(18428, 15604, 'en', 'name', 'ViteroRetinal Surgery'),
(18429, 15605, 'en', 'name', 'The Nelson-Atkins Museum of Art'),
(18430, 15606, 'en', 'name', 'St. James AME Zion Church'),
(18431, 15607, 'en', 'name', 'Florida Center for Early Childhood'),
(18432, 15608, 'es', 'name', 'Federación Española de Padres de Niños con CÔncer'),
(18433, 15609, 'no_lang_code', 'name', 'Crabbe Consulting'),
(18434, 15610, 'en', 'name', 'Fairmont Senior High School'),
(18435, 15611, 'en', 'name', 'The Painted Turtle'),
(18436, 15612, 'no_lang_code', 'name', 'Coaxial Power Systems (United Kingdom)'),
(18437, 15613, 'en', 'name', 'Academy for Healthcare Improvement'),
(18438, 15614, 'en', 'name', 'St. Mary’s Health Care System'),
(18439, 15615, 'en', 'name', 'Architectural Research Centers Consortium'),
(18440, 15616, 'en', 'name', 'Accelerace'),
(18441, 15617, 'en', 'name', 'Sunny Days Learning Center of Stickney'),
(18442, 15618, 'en', 'name', 'European Trade Union Institute'),
(18443, 15619, 'no_lang_code', 'name', 'Advanced Defence Materials (United Kingdom)'),
(18444, 15620, 'en', 'name', 'Women Alive'),
(18445, 15621, 'en', 'name', 'Council of State Archivists'),
(18446, 15622, 'en', 'name', 'Ministry of Transport and Communications'),
(18447, 15622, 'fi', 'name', 'liikenne- ja viestintƤministeriƶ'),
(18448, 15622, 'sv', 'name', 'kommunikationsministeriet'),
(18449, 15623, 'en', 'name', 'United American Indian Involvement'),
(18450, 15624, 'no_lang_code', 'name', 'BeTV (Belgium)'),
(18451, 15625, 'en', 'name', 'Canadian Coalition for Seniors Mental Health'),
(18452, 15626, 'en', 'name', 'Mercy Hospital Washington'),
(18453, 15627, 'no_lang_code', 'name', 'Valentia Biopharma (Spain)'),
(18454, 15628, 'no_lang_code', 'name', 'Evonik (United Kingdom)'),
(18455, 15629, 'no_lang_code', 'name', 'Exel Composites (United Kingdom)'),
(18456, 15630, 'en', 'name', 'International Centre for Black Sea Studies'),
(18457, 15631, 'pt', 'name', 'Centro De Formação Profissional Da Indústria Da Construção Civil E Obras Públicas Do Sul'),
(18458, 15632, 'no_lang_code', 'name', 'Covalab (France)'),
(18459, 15633, 'no_lang_code', 'name', 'Efficient Innovation (France)'),
(18460, 15634, 'en', 'name', 'Santa Fe Public Schools'),
(18461, 15635, 'en', 'name', 'Kalamazoo Valley Community College'),
(18462, 15636, 'es', 'name', 'Fundación INTRAS'),
(18463, 15637, 'en', 'name', 'AIDS Arms'),
(18464, 15638, 'fr', 'name', 'Institut des Sciences Agronomiques du Burundi'),
(18465, 15639, 'en', 'name', 'Asian American Drug Abuse Program'),
(18466, 15640, 'en', 'name', 'Mayor''s Fund to Advance New York City'),
(18467, 15641, 'no_lang_code', 'name', 'Laserlith (United States)'),
(18468, 15642, 'en', 'name', 'Portage County Public Library'),
(18469, 15643, 'no_lang_code', 'name', 'Centro Studi Industriali'),
(18470, 15644, 'no_lang_code', 'name', 'AM Testing (Italy)'),
(18471, 15645, 'no_lang_code', 'name', 'Castle Rock Edinvar (United Kingdom)'),
(18472, 15646, 'no_lang_code', 'name', 'DNAVision (Belgium)'),
(18473, 15647, 'no_lang_code', 'name', 'Hakkı Usta Ogulları Mak.San.Tic (Turkey)'),
(18474, 15648, 'en', 'name', 'Ministry of Education, Arts and Culture'),
(18475, 15649, 'en', 'name', 'Sanford Research'),
(18476, 15650, 'en', 'name', 'Franciscan University of Steubenville'),
(18477, 15651, 'no_lang_code', 'name', 'BASF (Netherlands)'),
(18478, 15652, 'no_lang_code', 'name', 'Essen BioScience (United States)'),
(18479, 15653, 'no_lang_code', 'name', 'Airlan (Spain)'),
(18480, 15654, 'en', 'name', 'Vigo County Public Library'),
(18481, 15655, 'no_lang_code', 'name', 'Guidance (United Kingdom)'),
(18482, 15656, 'no_lang_code', 'name', 'Ekspobalta (Lithuania)'),
(18483, 15657, 'de', 'name', 'Föderalagentur für die Sicherheit der Nahrungsmittelkette'),
(18484, 15657, 'en', 'name', 'Federal Agency for Food Chain Safety'),
(18485, 15657, 'fr', 'name', 'Agence Federale pour la Securite de la Chaine Alimentaire'),
(18486, 15657, 'nl', 'name', 'Federaal Agentschap voor de Veiligheid van de Voedselketen'),
(18487, 15658, 'no_lang_code', 'name', 'Maxygen (United States)'),
(18488, 15659, 'no_lang_code', 'name', 'Innotec (Italy)'),
(18489, 15660, 'no_lang_code', 'name', 'Algade (France)'),
(18490, 15661, 'fr', 'name', 'General Society of Surveillance'),
(18491, 15661, 'no_lang_code', 'name', 'SGS (France)'),
(18492, 15662, 'pt', 'name', 'Instituto de Linguística Teórica e Computacional'),
(18493, 15663, 'no_lang_code', 'name', 'Eurix (Italy)'),
(18494, 15664, 'en', 'name', 'Vital Research'),
(18495, 15665, 'en', 'name', 'Health and Safety Authority'),
(18496, 15666, 'en', 'name', 'Evaluation and Training Institute'),
(18497, 15667, 'en', 'name', 'ShowMe Aquatics & Fitness'),
(18498, 15668, 'no_lang_code', 'name', 'Finisar (Israel)'),
(18499, 15669, 'no_lang_code', 'name', 'Hela Spice Canada (Canada)'),
(18500, 15670, 'en', 'name', 'J.F. Drake State Community and Technical College'),
(18501, 15671, 'no_lang_code', 'name', 'Clinical Innovations (United States)'),
(18502, 15672, 'no_lang_code', 'name', 'LUX Assure (United Kingdom)'),
(18503, 15673, 'en', 'name', 'American Society of Law, Medicine and Ethics'),
(18504, 15674, 'no_lang_code', 'name', 'Tronox (Netherlands)'),
(18505, 15675, 'en', 'name', 'Young Empowered Survivors'),
(18506, 15676, 'no_lang_code', 'name', 'Zealand Pharma (Denmark)'),
(18507, 15677, 'no_lang_code', 'name', 'Argus International (United States)'),
(18508, 15678, 'en', 'name', 'Center for Clinical Care and Research in Nigeria'),
(18509, 15679, 'no_lang_code', 'name', 'Engitech (Cyprus)'),
(18510, 15680, 'no_lang_code', 'name', 'MVSystems (United States)'),
(18511, 15681, 'en', 'name', 'Scheer Memorial Adventist Hospital'),
(18512, 15681, 'ne', 'name', 'ą¤¶ą„€ą¤° ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² ą¤¬ą¤Øą„‡ą¤Ŗą¤¾'),
(18513, 15682, 'no_lang_code', 'name', 'Engineering Software Research and Development (United States)'),
(18514, 15683, 'en', 'name', 'United States Senate Library'),
(18515, 15684, 'en', 'name', 'Chartered Professional Accountants of Canada'),
(18516, 15684, 'fr', 'name', 'comptable professionnel agrƩƩ'),
(18517, 15685, 'no_lang_code', 'name', 'HRI Associates'),
(18518, 15686, 'en', 'name', 'Addison Public Library'),
(18519, 15687, 'en', 'name', 'Eagle Ridge Institute'),
(18520, 15688, 'en', 'name', 'Agropolis International'),
(18521, 15689, 'no_lang_code', 'name', 'Institute of Spring Technology'),
(18522, 15690, 'en', 'name', 'Delaware Valley College'),
(18523, 15691, 'no_lang_code', 'name', 'Celsion (United States)'),
(18524, 15692, 'en', 'name', 'State Fair Community College'),
(18525, 15693, 'no_lang_code', 'name', 'Advantage Forensics (Canada)'),
(18526, 15694, 'no_lang_code', 'name', 'BioVidria (United States)'),
(18527, 15695, 'en', 'name', 'Federal Reserve Board of Governors'),
(18528, 15696, 'no_lang_code', 'name', 'Ecoplan (Switzerland)'),
(18529, 15697, 'en', 'name', 'Inwood Community Services'),
(18530, 15698, 'no_lang_code', 'name', 'Inro Consultants (Canada)'),
(18531, 15699, 'no_lang_code', 'name', 'Kepstrum (Canada)'),
(18532, 15700, 'en', 'name', 'International Union of Crystallography'),
(18533, 15701, 'no_lang_code', 'name', 'OncoPlex Diagnostics (United States)'),
(18534, 15702, 'en', 'name', 'Austrian Foundry Research Institute'),
(18535, 15703, 'no_lang_code', 'name', 'Fibroline (France)'),
(18536, 15704, 'no_lang_code', 'name', 'GEPRO (Germany)'),
(18537, 15705, 'no_lang_code', 'name', 'Altair Engineering (France)'),
(18538, 15706, 'en', 'name', 'Marygrove College'),
(18539, 15707, 'en', 'name', 'Averett University'),
(18540, 15708, 'no_lang_code', 'name', 'KWJ Engineering (United States)'),
(18541, 15709, 'no_lang_code', 'name', 'AFS Entwicklungs und Vertriebs (Germany)'),
(18542, 15710, 'no_lang_code', 'name', 'Carley Technologies (United States)'),
(18543, 15711, 'no_lang_code', 'name', 'KALGEn Consultants (United States)'),
(18544, 15712, 'en', 'name', 'Trinity County Office of Education'),
(18545, 15713, 'ja', 'name', 'å…Øč–¬å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(18546, 15713, 'no_lang_code', 'name', 'Zenyaku Kogyo (Japan)'),
(18547, 15714, 'no_lang_code', 'name', 'Lenz Instruments (Spain)'),
(18548, 15715, 'no_lang_code', 'name', 'Exscien (United States)'),
(18549, 15716, 'en', 'name', 'Hesburgh Libraries'),
(18550, 15717, 'no_lang_code', 'name', 'Sertifitseerimiskeskus'),
(18551, 15718, 'en', 'name', 'Shimer College'),
(18552, 15719, 'en', 'name', 'Shriners Hospitals for Children - Springfield'),
(18553, 15720, 'en', 'name', 'Derry City Council'),
(18554, 15721, 'en', 'name', 'Fountaindale Public Library'),
(18555, 15722, 'en', 'name', 'Hungarian Association of Content Industry'),
(18556, 15723, 'no_lang_code', 'name', 'Dearman (United Kingdom)'),
(18557, 15724, 'no_lang_code', 'name', 'PerkinElmer (Germany)'),
(18558, 15725, 'en', 'name', 'Business Council for Sustainable Development UK'),
(18559, 15726, 'en', 'name', 'Phelan-McDermid Syndrome Foundation'),
(18560, 15727, 'en', 'name', 'Los Angeles Southwest College'),
(18561, 15728, 'fr', 'name', 'ARENE, Agence rĆ©gionale de l’environnement et des nouvelles Ć©nergies'),
(18562, 15729, 'en', 'name', 'Access Health Louisiana'),
(18563, 15730, 'no_lang_code', 'name', 'Angiogenesis Foundation'),
(18564, 15731, 'en', 'name', 'West Bay Pilipino Multi-Service Center'),
(18565, 15732, 'en', 'name', 'Newberry Library'),
(18566, 15733, 'pt', 'name', 'CĆ¢mara Municipal de Beja'),
(18567, 15734, 'no_lang_code', 'name', 'Comsis (France)'),
(18568, 15735, 'no_lang_code', 'name', 'MemPro (United States)'),
(18569, 15736, 'en', 'name', 'Norwegian Centre for Informatics in Health and Social Care'),
(18570, 15736, 'no_lang_code', 'name', 'KITH (Norway)'),
(18571, 15737, 'en', 'name', 'International Centre for Migration Policy Development'),
(18572, 15738, 'en', 'name', 'The Care Communities'),
(18573, 15739, 'en', 'name', 'Smile Train'),
(18574, 15740, 'no_lang_code', 'name', 'Emirates NBD'),
(18575, 15741, 'no_lang_code', 'name', 'Dantec Dynamics (United Kingdom)'),
(18576, 15742, 'no_lang_code', 'name', 'Quadrise Canada Corporation (Canada)'),
(18577, 15743, 'no_lang_code', 'name', 'DEMO Consultants'),
(18578, 15744, 'fi', 'name', 'Hermia Yrityskehitys'),
(18579, 15744, 'no_lang_code', 'name', 'Hermia Business Development (Finland)'),
(18580, 15745, 'no_lang_code', 'name', 'John Gill Technology (United Kingdom)'),
(18581, 15746, 'no_lang_code', 'name', 'All4tec (France)'),
(18582, 15747, 'es', 'name', 'Unidad de Artritis y Reumatismo'),
(18583, 15748, 'no_lang_code', 'name', 'Enigma Diagnostics (United Kingdom)'),
(18584, 15749, 'en', 'name', 'Federal Election Commission'),
(18585, 15749, 'es', 'name', 'Comisión electoral federal'),
(18586, 15749, 'fr', 'name', 'Commission Ʃlectorale fƩdƩrale'),
(18587, 15750, 'no_lang_code', 'name', 'Cadzow Communications Consulting (United Kingdom)'),
(18588, 15751, 'en', 'name', 'Hemophilia Federation of America'),
(18589, 15752, 'en', 'name', 'Alaska SeaLife Center'),
(18590, 15753, 'en', 'name', 'Agency for Mobility and EU Programmes'),
(18591, 15754, 'no_lang_code', 'name', 'TherimuneX Pharmaceuticals (United States)'),
(18592, 15755, 'en', 'name', 'Mead Public Library'),
(18593, 15756, 'no_lang_code', 'name', 'Econet (Spain)'),
(18594, 15757, 'en', 'name', 'Advocate Trinity Hospital'),
(18595, 15758, 'no_lang_code', 'name', 'FRE Composites (Canada)'),
(18596, 15759, 'no_lang_code', 'name', 'Hansa Industrie Mixer (Germany)'),
(18597, 15760, 'no_lang_code', 'name', 'Outokumpu (Sweden)'),
(18598, 15761, 'no_lang_code', 'name', 'CLMS (United Kingdom)'),
(18599, 15762, 'de', 'name', 'Bundesministerium für Bildung und Frauen'),
(18600, 15762, 'en', 'name', 'Federal Ministry for Education and Women'),
(18601, 15763, 'no_lang_code', 'name', 'BCN Biosciences (United States)'),
(18602, 15764, 'no_lang_code', 'name', 'Controle & Inspectie Bureau Brouwer (Netherlands)'),
(18603, 15765, 'en', 'name', 'Springhouse'),
(18604, 15766, 'no_lang_code', 'name', 'Flyby (Italy)'),
(18605, 15767, 'no_lang_code', 'name', 'Innovatia (Canada)'),
(18606, 15768, 'no_lang_code', 'name', 'Awaiba (Portugal)'),
(18607, 15769, 'ca', 'name', 'Institut d''EstadĆ­stica de Catalunya'),
(18608, 15769, 'en', 'name', 'Statistical Institute of Catalonia'),
(18609, 15770, 'no_lang_code', 'name', 'Data Fusion International (Ireland)'),
(18610, 15771, 'no_lang_code', 'name', 'Librt (Netherlands)'),
(18611, 15772, 'en', 'name', 'Counseling Center'),
(18612, 15773, 'no_lang_code', 'name', 'CCL Biomedical (United States)'),
(18613, 15774, 'no_lang_code', 'name', 'Betah Associates'),
(18614, 15775, 'en', 'name', 'Institute for Breathing and Sleep'),
(18615, 15776, 'pt', 'name', 'Centro de Estudos de Cultura Contemporânea'),
(18616, 15777, 'no_lang_code', 'name', 'Biomod (Canada)'),
(18617, 15778, 'it', 'name', 'Centro di Cultura Scientifica Alessandro Volta'),
(18618, 15779, 'de', 'name', 'Institut für regionale Studien in Europa'),
(18619, 15780, 'no_lang_code', 'name', 'Double Delta (Hungary)'),
(18620, 15781, 'no_lang_code', 'name', 'ELE Advanced Technologies (United Kingdom)'),
(18621, 15782, 'en', 'name', 'Asian Health Coalition'),
(18622, 15783, 'no_lang_code', 'name', 'Rare Partners (Italy)'),
(18623, 15784, 'en', 'name', 'Ministry for Sustainable Development the Environment and Climate change'),
(18624, 15785, 'no_lang_code', 'name', 'HepatoSys (United States)'),
(18625, 15786, 'no_lang_code', 'name', 'Innovia (United States)'),
(18626, 15787, 'en', 'name', 'Design Business Association'),
(18627, 15788, 'no_lang_code', 'name', 'Locus Systems (United States)'),
(18628, 15789, 'no_lang_code', 'name', 'Avilo Software (Canada)'),
(18629, 15790, 'no_lang_code', 'name', 'Ekspla (Lithuania)'),
(18630, 15791, 'en', 'name', 'In Vitro Testing Industrial Platform'),
(18631, 15792, 'no_lang_code', 'name', 'Lypro Biosciences (United States)'),
(18632, 15793, 'en', 'name', 'Landau Institute for Theoretical Physics'),
(18633, 15793, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической физики им. Š›. Š”. Š›Š°Š½Š“Š°Ńƒ'),
(18634, 15794, 'no_lang_code', 'name', 'Talon Pharmaceuticals (Canada)'),
(18635, 15795, 'en', 'name', 'Shriners Hospitals for Children - Shreveport'),
(18636, 15796, 'en', 'name', 'Canadian Science Publishing'),
(18637, 15797, 'no_lang_code', 'name', 'Bausch Health (United States)'),
(18638, 15798, 'en', 'name', 'Stephenson County Health Department'),
(18639, 15799, 'no_lang_code', 'name', 'APS Biocontrol (United Kingdom)'),
(18640, 15800, 'no_lang_code', 'name', 'IRGO Consulting (Slovenia)'),
(18641, 15800, 'sl', 'name', 'InŔtitut za rudarstvo, geotehnologijo in okolje'),
(18642, 15801, 'en', 'name', 'Arkansas State Hospital'),
(18643, 15802, 'no_lang_code', 'name', 'Healthways (United States)'),
(18644, 15803, 'en', 'name', 'Testaverde Fund for Spinal Cord Injury'),
(18645, 15804, 'no_lang_code', 'name', 'Biolinq (United States)'),
(18646, 15805, 'de', 'name', 'Institut für Bildungsforschung der Wirtschaft'),
(18647, 15806, 'no_lang_code', 'name', 'Art of Technology (Switzerland)'),
(18648, 15807, 'en', 'name', 'Community Prevention Partnership'),
(18649, 15808, 'en', 'name', 'Clermont County Public Library'),
(18650, 15809, 'no_lang_code', 'name', 'Convex Electrical (Ireland)'),
(18651, 15810, 'en', 'name', 'Advanced Threat Analysis'),
(18652, 15811, 'no_lang_code', 'name', 'Alitalia (Italy)'),
(18653, 15812, 'en', 'name', 'Quality Living'),
(18654, 15813, 'no_lang_code', 'name', 'DIAD (Italy)'),
(18655, 15814, 'fr', 'name', 'CƩgep de Sorel-Tracy'),
(18656, 15815, 'no_lang_code', 'name', 'ECD Architects'),
(18657, 15816, 'no_lang_code', 'name', 'Engineering Link (Canada)'),
(18658, 15817, 'no_lang_code', 'name', 'Beasy (United Kingdom)'),
(18659, 15818, 'ca', 'name', 'Departament de Territori i Sostenibilitat'),
(18660, 15819, 'en', 'name', 'Scharp-Lacy Research Institute'),
(18661, 15820, 'en', 'name', 'Elkhart Public Library'),
(18662, 15821, 'en', 'name', 'Toledo Museum of Art'),
(18663, 15822, 'en', 'name', 'Warriors on Wheels of Metropolitan Detroit'),
(18664, 15823, 'en', 'name', 'Seven Generations Ahead'),
(18665, 15824, 'no_lang_code', 'name', 'NORESCO (United States)'),
(18666, 15825, 'no_lang_code', 'name', 'Gesellschaft für Mikroelektronikanwendung Chemnitz (Germany)'),
(18667, 15826, 'no_lang_code', 'name', 'Dioxide Materials (United States)'),
(18668, 15827, 'en', 'name', 'Coles County Historical Society'),
(18669, 15828, 'no_lang_code', 'name', 'Culminatum Innovation (Finland)'),
(18670, 15829, 'no_lang_code', 'name', 'Knorr-Bremse (Germany)'),
(18671, 15830, 'no_lang_code', 'name', 'Life Systems (United States)'),
(18672, 15831, 'no_lang_code', 'name', 'Orchid (Switzerland)'),
(18673, 15832, 'no_lang_code', 'name', 'Biolog Life Science Institute'),
(18674, 15833, 'no_lang_code', 'name', 'Amec Foster Wheeler (Canada)'),
(18675, 15834, 'no_lang_code', 'name', 'Techno-Membranes (France)'),
(18676, 15835, 'no_lang_code', 'name', 'Aqon Water Solutions (Germany)'),
(18677, 15836, 'en', 'name', 'International center for Advancement of Research Technology and Innovation'),
(18678, 15837, 'en', 'name', 'Croatian Academic and Research Network'),
(18679, 15837, 'hr', 'name', 'Hrvatska akademska i istraživačka mreža'),
(18680, 15838, 'no_lang_code', 'name', 'Brugarolas (Spain)'),
(18681, 15839, 'no_lang_code', 'name', 'IBSmm (Czechia)'),
(18682, 15840, 'en', 'name', 'Family Cafe'),
(18683, 15841, 'no_lang_code', 'name', 'LVD (Belgium)'),
(18684, 15842, 'en', 'name', 'Latino Community Services'),
(18685, 15843, 'en', 'name', 'Northbrook Public Library'),
(18686, 15844, 'en', 'name', 'Woodrow Wilson Rehabilitation Center Foundation'),
(18687, 15845, 'en', 'name', 'Jasper County Public Library'),
(18688, 15846, 'en', 'name', 'Asia Society'),
(18689, 15847, 'en', 'name', 'Foundation for Applied Information Technology in Environment, Agriculture and Global Change'),
(18690, 15848, 'en', 'name', 'Earth Cryosphere Institute'),
(18691, 15848, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ криосферы Земли Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(18692, 15849, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Netherlands)'),
(18693, 15850, 'en', 'name', 'Institute for Single Crystals'),
(18694, 15851, 'no_lang_code', 'name', 'Envirup (United Kingdom)'),
(18695, 15852, 'no_lang_code', 'name', 'Rancho BioSciences (United States)'),
(18696, 15853, 'en', 'name', 'United States Patent and Trademark Office'),
(18697, 15853, 'es', 'name', 'Oficina de Patentes y Marcas de Estados Unidos'),
(18698, 15854, 'no_lang_code', 'name', 'Bionex Pharmaceuticals (United States)'),
(18699, 15855, 'no_lang_code', 'name', 'Anaxsys (United Kingdom)'),
(18700, 15856, 'no_lang_code', 'name', 'Biolytix (Switzerland)'),
(18701, 15857, 'en', 'name', 'Heather Hill Care Communities'),
(18702, 15858, 'en', 'name', 'Women of W.O.R.T.H.'),
(18703, 15859, 'no_lang_code', 'name', 'Forming Technologies (Canada)'),
(18704, 15860, 'en', 'name', 'French Polar Institute'),
(18705, 15860, 'fr', 'name', 'Institut Polaire FranƧais Paul Ɖmile Victor'),
(18706, 15861, 'en', 'name', 'Ulman Cancer Fund for Young Adults'),
(18707, 15862, 'cs', 'name', 'Automatizace železničnĆ­ dopravy Praha'),
(18708, 15862, 'no_lang_code', 'name', 'AŽD Praha (Czechia)'),
(18709, 15863, 'en', 'name', 'Bronx Health Link'),
(18710, 15864, 'en', 'name', 'The Center for the Biology of Chronic Disease'),
(18711, 15865, 'no_lang_code', 'name', 'Hybrid Plastics (United States)'),
(18712, 15866, 'no_lang_code', 'name', 'Greentronics (Romania)'),
(18713, 15867, 'en', 'name', 'RiverWatch Insitute of Alberta'),
(18714, 15868, 'no_lang_code', 'name', 'Avonwood (United Kingdom)'),
(18715, 15869, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الجزائر – بن يوسف بن خـدة'),
(18716, 15869, 'en', 'name', 'University of Algiers Benyoucef Benkhedda'),
(18717, 15870, 'en', 'name', 'Advanced Technology Centre for Renewable Energies'),
(18718, 15870, 'es', 'name', 'Centro Tecnológico Avanzado de Energías Renovables'),
(18719, 15871, 'no_lang_code', 'name', 'GeoSAS (Ethiopia)'),
(18720, 15872, 'en', 'name', 'Tri-City Health Center'),
(18721, 15873, 'en', 'name', 'Piers Park Sailing Center'),
(18722, 15874, 'no_lang_code', 'name', 'Antea Group (Belgium)'),
(18723, 15875, 'en', 'name', 'Council of State Science Supervisors'),
(18724, 15876, 'es', 'name', 'Agencia de Servicios Sociales y Dependencia de AndalucĆ­a'),
(18725, 15877, 'no_lang_code', 'name', 'HULVERSHORN Eisengiesserei (Germany)'),
(18726, 15878, 'no_lang_code', 'name', 'Brotherhood (United States)'),
(18727, 15879, 'no_lang_code', 'name', 'Arttic'),
(18728, 15880, 'no_lang_code', 'name', 'Denkstatt Bulgaria (Bulgaria)'),
(18729, 15881, 'no_lang_code', 'name', 'National Institute for Research and Development in Welding and Material Testing'),
(18730, 15882, 'en', 'name', 'Southeastern Community College - North Carolina'),
(18731, 15883, 'no_lang_code', 'name', 'Experian (United Kingdom)'),
(18732, 15884, 'en', 'name', 'China Academy of Transportation Sciences'),
(18733, 15884, 'zh', 'name', 'äŗ¤é€ščæč¾“éƒØē§‘å­¦ē ”ē©¶é™¢'),
(18734, 15885, 'en', 'name', 'Hormel Foundation'),
(18735, 15886, 'no_lang_code', 'name', 'Alfa Laval (Sweden)'),
(18736, 15887, 'en', 'name', 'Asia Foundation'),
(18737, 15888, 'no_lang_code', 'name', 'České Energetické ZÔvody (Czechia)'),
(18738, 15889, 'en', 'name', 'Institute of Solar-Terrestrial Physics'),
(18739, 15889, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ солнечно-земной физики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(18740, 15890, 'no_lang_code', 'name', 'Explora (Italy)'),
(18741, 15891, 'no_lang_code', 'name', 'CEA Systems (Netherlands)'),
(18742, 15892, 'no_lang_code', 'name', 'Smithfield BioScience (United States)'),
(18743, 15893, 'en', 'name', 'Sarem Cell Research Center'),
(18744, 15894, 'no_lang_code', 'name', 'Magnomatics (United Kingdom)'),
(18745, 15895, 'no_lang_code', 'name', 'Kinedyne (United States)'),
(18746, 15896, 'no_lang_code', 'name', 'Dow Chemical (Belgium)'),
(18747, 15897, 'no_lang_code', 'name', 'IAPETOS (Greece)'),
(18748, 15898, 'en', 'name', 'Knowledge Innovation Market'),
(18749, 15899, 'no_lang_code', 'name', 'Bridgepoint (Germany)'),
(18750, 15900, 'no_lang_code', 'name', 'Eni (Belgium)'),
(18751, 15901, 'no_lang_code', 'name', 'Dura Vermeer (Netherlands)'),
(18752, 15902, 'en', 'name', 'Institute for Market Economics'),
(18753, 15903, 'en', 'name', 'Orland Park Public Library'),
(18754, 15904, 'no_lang_code', 'name', 'Greenvest (Italy)'),
(18755, 15905, 'de', 'name', 'Leipziger Institut für Energie'),
(18756, 15906, 'no_lang_code', 'name', 'Broyce Control (United Kingdom)'),
(18757, 15907, 'no_lang_code', 'name', 'HMGene (United States)'),
(18758, 15908, 'en', 'name', 'Stone Clinic'),
(18759, 15909, 'en', 'name', 'European Forum on Nature Conservation and Pastoralism'),
(18760, 15910, 'en', 'name', 'Solutions of Artificial Intelligence Applications'),
(18761, 15911, 'no_lang_code', 'name', 'Acrion Technologies (United States)'),
(18762, 15912, 'en', 'name', 'Greenwich Public Schools'),
(18763, 15913, 'no_lang_code', 'name', 'Language Computer (United States)'),
(18764, 15914, 'no_lang_code', 'name', 'Eblana Photonics (Ireland)'),
(18765, 15915, 'no_lang_code', 'name', 'Fluxim (Switzerland)'),
(18766, 15916, 'no_lang_code', 'name', 'Woodward (Switzerland)'),
(18767, 15917, 'en', 'name', 'Champaign Public Library'),
(18768, 15918, 'en', 'name', 'Institute of Physics'),
(18769, 15919, 'it', 'name', 'Catas Laboratorio Analisi Legno Arredo Agroalimentare'),
(18770, 15919, 'no_lang_code', 'name', 'CATAS'),
(18771, 15920, 'no_lang_code', 'name', 'Damen Shipyards Group (Netherlands)'),
(18772, 15921, 'en', 'name', 'Center for Governmental Research'),
(18773, 15922, 'en', 'name', 'Institute for Information Transmission Problems'),
(18774, 15922, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем переГачи информации им. А.А. Єаркевича Российской акаГемии наук'),
(18775, 15923, 'de', 'name', 'Institut für Angewandte Wirtschaftsforschung'),
(18776, 15923, 'en', 'name', 'Institute for Applied Economic Research'),
(18777, 15924, 'no_lang_code', 'name', 'Beta 80 Group (Italy)'),
(18778, 15925, 'no_lang_code', 'name', 'Biopredic (France)'),
(18779, 15926, 'en', 'name', 'European State Forest Association'),
(18780, 15927, 'no_lang_code', 'name', 'Applied Materials (Israel)'),
(18781, 15928, 'no_lang_code', 'name', 'Assystem (United Kingdom)'),
(18782, 15929, 'no_lang_code', 'name', 'GrafTech (United States)'),
(18783, 15930, 'en', 'name', 'Shriners Hospitals for Children - Mexico'),
(18784, 15930, 'es', 'name', 'Hospitales Shriners para NiƱos'),
(18785, 15931, 'no_lang_code', 'name', 'Geosat'),
(18786, 15932, 'en', 'name', 'Disability Connection'),
(18787, 15933, 'de', 'name', 'Forschungsinstitut für Wärmeschutz München'),
(18788, 15934, 'en', 'name', 'Association of Learned and Professional Society Publishers'),
(18789, 15935, 'no_lang_code', 'name', 'GeoSpatiumLab (Spain)'),
(18790, 15936, 'no_lang_code', 'name', 'Kyos (Switzerland)'),
(18791, 15937, 'no_lang_code', 'name', 'Denn (Spain)'),
(18792, 15938, 'en', 'name', 'Capital Community College'),
(18793, 15939, 'it', 'name', 'Istituto Centrale per la Ricerca Scientifica e Tecnologica Applicata al Mare'),
(18794, 15940, 'en', 'name', 'Research Institute for Social and Health Improvement Foundation'),
(18795, 15940, 'kn', 'name', 'ಋಷಿ ą²«ą³Œą²‚ą²”ą³†ą³•ą²¶ą²Øą³'),
(18796, 15941, 'no_lang_code', 'name', '2i Industrial Informatics (Germany)'),
(18797, 15942, 'en', 'name', 'Cheboygan Otsego Presque Isle Educational Service District'),
(18798, 15943, 'no_lang_code', 'name', 'Engineering Data Management'),
(18799, 15944, 'en', 'name', 'European Public Law Center'),
(18800, 15945, 'en', 'name', 'University of Vermont Children’s Hospital'),
(18801, 15946, 'no_lang_code', 'name', 'Libertine FPE (United Kingdom)'),
(18802, 15947, 'en', 'name', 'Hebrew Home'),
(18803, 15948, 'en', 'name', 'Catholic Medical Mission Board'),
(18804, 15949, 'de', 'name', 'TH Kƶln'),
(18805, 15949, 'en', 'name', 'TH Kƶln - University of Applied Sciences'),
(18806, 15950, 'it', 'name', 'Legambiente'),
(18807, 15951, 'no_lang_code', 'name', 'AMREP (United States)'),
(18808, 15952, 'en', 'name', 'Kansas City CARE Clinic'),
(18809, 15953, 'en', 'name', 'European Institute of Public Administration'),
(18810, 15954, 'no_lang_code', 'name', 'Foreca (Finland)'),
(18811, 15955, 'en', 'name', 'Arnolfini'),
(18812, 15956, 'en', 'name', 'Assemblies of God Theological Seminary'),
(18813, 15957, 'en', 'name', 'Flint Community Schools'),
(18814, 15958, 'en', 'name', 'Indiana State Library'),
(18815, 15959, 'no_lang_code', 'name', 'Rand McNally (United States)'),
(18816, 15960, 'no_lang_code', 'name', 'Comelz (Italy)'),
(18817, 15961, 'en', 'name', 'American Bar Association'),
(18818, 15962, 'en', 'name', 'Springfield Greene County Library District'),
(18819, 15963, 'no_lang_code', 'name', 'Euromedica'),
(18820, 15964, 'no_lang_code', 'name', 'Taro Pharmaceuticals (United States)'),
(18821, 15965, 'no_lang_code', 'name', 'APR (Italy)'),
(18822, 15966, 'no_lang_code', 'name', 'European Safety Management Group'),
(18823, 15967, 'en', 'name', 'Aeras'),
(18824, 15968, 'no_lang_code', 'name', 'Costa Edutainment'),
(18825, 15969, 'no_lang_code', 'name', 'BIOTECmarin (Germany)'),
(18826, 15970, 'fr', 'name', 'Greta Lac'),
(18827, 15971, 'en', 'name', 'Post Acute Partners'),
(18828, 15972, 'en', 'name', 'Federal Reserve Bank of Kansas City'),
(18829, 15973, 'en', 'name', 'Youth Alive Uganda'),
(18830, 15974, 'no_lang_code', 'name', 'Ingenieurgesellschaft für Technische Software (Germany)'),
(18831, 15975, 'en', 'name', 'San Mateo Medical Center'),
(18832, 15976, 'no_lang_code', 'name', 'DSB (Denmark)'),
(18833, 15977, 'es', 'name', 'ANFACO-CECOPESCA'),
(18834, 15978, 'no_lang_code', 'name', 'Goknow (United States)'),
(18835, 15979, 'no_lang_code', 'name', 'Atlas Biolabs (Germany)'),
(18836, 15980, 'no_lang_code', 'name', 'Mayer Brown (United Kingdom)'),
(18837, 15981, 'no_lang_code', 'name', 'Gneuss (Germany)'),
(18838, 15982, 'en', 'name', 'Korea Institute for Advancement of Technology'),
(18839, 15983, 'de', 'name', 'Forschungsinstitut Technologie und Behinderung'),
(18840, 15983, 'en', 'name', 'Research Institute Technology and Disability'),
(18841, 15984, 'no_lang_code', 'name', 'EuroPhoton (Germany)'),
(18842, 15985, 'en', 'name', 'Iris House'),
(18843, 15986, 'de', 'name', 'IUF - Leibniz-Institut für umweltmedizinische Forschung'),
(18844, 15986, 'en', 'name', 'Leibniz Institute of Environmental Medicine'),
(18845, 15987, 'en', 'name', 'United Food and Commercial Workers'),
(18846, 15988, 'no_lang_code', 'name', 'Koba Institute'),
(18847, 15989, 'no_lang_code', 'name', 'Magma (Germany)'),
(18848, 15990, 'en', 'name', 'St. Clair County Library System'),
(18849, 15991, 'no_lang_code', 'name', 'Disy (Germany)'),
(18850, 15992, 'no_lang_code', 'name', 'Croda (United Kingdom)'),
(18851, 15993, 'en', 'name', 'National Institute for Research and Development in Forestry "Marin Drăcea"'),
(18852, 15993, 'ro', 'name', 'Institutul Național de Cercetare-Dezvoltare Ć®n Silvicultură ā€žMarin Drăceaā€'),
(18853, 15994, 'en', 'name', 'Carinthian Tech Research'),
(18854, 15995, 'no_lang_code', 'name', 'Cella Energy (United Kingdom)'),
(18855, 15996, 'no_lang_code', 'name', 'Voith (United Kingdom)'),
(18856, 15997, 'en', 'name', 'United States Power Soccer Association'),
(18857, 15998, 'no_lang_code', 'name', 'Base Protection (Italy)'),
(18858, 15999, 'no_lang_code', 'name', 'Nielsen (United States)'),
(18859, 16000, 'en', 'name', 'Des Plaines Public Library'),
(18860, 16001, 'no_lang_code', 'name', 'Altran (United Kingdom)'),
(18861, 16002, 'en', 'name', 'Noranda Income Fund'),
(18862, 16003, 'en', 'name', 'Craftspace'),
(18863, 16004, 'en', 'name', 'Aspen Institute'),
(18864, 16005, 'no_lang_code', 'name', 'Tribal Group'),
(18865, 16006, 'no_lang_code', 'name', 'Marvell (Spain)'),
(18866, 16007, 'en', 'name', 'Voices Against Brain Cancer'),
(18867, 16008, 'no_lang_code', 'name', 'BMI Association'),
(18868, 16009, 'no_lang_code', 'name', 'Summit Medical Group (United States)'),
(18869, 16010, 'no_lang_code', 'name', 'Informa (Italy)'),
(18870, 16011, 'no_lang_code', 'name', 'Ceremed (United States)'),
(18871, 16012, 'no_lang_code', 'name', 'Industrielle Steuerungstechnik (Germany)'),
(18872, 16013, 'en', 'name', 'Southeastern Illinois College'),
(18873, 16014, 'no_lang_code', 'name', 'EXPORTech (United States)'),
(18874, 16015, 'no_lang_code', 'name', 'First Light Diagnostics (United States)'),
(18875, 16016, 'en', 'name', 'Couleecap'),
(18876, 16017, 'no_lang_code', 'name', 'GeoSpectrum Technologies (Canada)'),
(18877, 16018, 'no_lang_code', 'name', 'Data Management (Italy)'),
(18878, 16019, 'no_lang_code', 'name', 'Azienda Industriali Municipali di Vicenza (Italy)'),
(18879, 16020, 'en', 'name', 'Veterans Research Foundation of Pittsburgh'),
(18880, 16021, 'no_lang_code', 'name', 'Infineon Technologies (United Kingdom)'),
(18881, 16022, 'en', 'name', 'National Association of Realtors'),
(18882, 16023, 'en', 'name', 'Washington State Chinese Cancer Network Association'),
(18883, 16024, 'no_lang_code', 'name', 'Mersen (France)'),
(18884, 16025, 'en', 'name', 'Wright Institute'),
(18885, 16026, 'no_lang_code', 'name', 'Avinet (Norway)'),
(18886, 16027, 'en', 'name', 'Tigerlily Foundation'),
(18887, 16028, 'no_lang_code', 'name', 'Finlombarda (Italy)'),
(18888, 16029, 'en', 'name', 'Mississippi Band of Choctaw Indians'),
(18889, 16030, 'en', 'name', 'Mazzoni Center'),
(18890, 16031, 'en', 'name', 'Florida Hospital Association'),
(18891, 16032, 'en', 'name', 'Institute for Physical Research'),
(18892, 16033, 'no_lang_code', 'name', 'Irecoop Emilia-Romagna (Italy)'),
(18893, 16034, 'no_lang_code', 'name', 'CSTI Acoustics (United States)'),
(18894, 16035, 'en', 'name', 'Children’s Cancer Foundation'),
(18895, 16036, 'no_lang_code', 'name', 'Protigen (United States)'),
(18896, 16037, 'en', 'name', 'Champaign County History Museum'),
(18897, 16038, 'en', 'name', 'STAR Council'),
(18898, 16039, 'no_lang_code', 'name', 'Institut IGH (Croatia)'),
(18899, 16040, 'en', 'name', 'The Kindness Connection'),
(18900, 16041, 'no_lang_code', 'name', 'Yara (Norway)'),
(18901, 16042, 'no_lang_code', 'name', 'FernwƤrme-Verbund Saar (Germany)'),
(18902, 16043, 'en', 'name', 'Texas Digital Library'),
(18903, 16044, 'en', 'name', 'Rubin Museum of Art'),
(18904, 16045, 'en', 'name', 'Strategic Initiative for Women in the Horn of Africa'),
(18905, 16046, 'no_lang_code', 'name', 'Imstar (France)'),
(18906, 16047, 'no_lang_code', 'name', 'Ambiental Technical Solutions (United Kingdom)'),
(18907, 16048, 'no_lang_code', 'name', 'Androme (Belgium)'),
(18908, 16049, 'en', 'name', 'South Carolina Cancer Alliance'),
(18909, 16050, 'no_lang_code', 'name', 'KE-Works (Netherlands)'),
(18910, 16051, 'en', 'name', 'ITT Technical Institute'),
(18911, 16052, 'no_lang_code', 'name', 'Manoir Industries (France)'),
(18912, 16053, 'fr', 'name', 'Institut de l''Environnement et Recherches Agricoles'),
(18913, 16054, 'no_lang_code', 'name', 'Knauf (Germany)'),
(18914, 16055, 'en', 'name', 'Alliance for Safe Kids'),
(18915, 16056, 'en', 'name', 'Quantum Leap Healthcare Collaborative'),
(18916, 16057, 'no_lang_code', 'name', 'Burnbrae Farms (Canada)'),
(18917, 16058, 'no_lang_code', 'name', 'Contech (Canada)'),
(18918, 16059, 'it', 'name', 'Istituto Sperimentale Modelli E Strutture'),
(18919, 16060, 'en', 'name', 'Lac du Flambeau Band of Lake Superior Chippewa Indians'),
(18920, 16061, 'no_lang_code', 'name', 'Puratos (Belgium)'),
(18921, 16062, 'en', 'name', 'Iron County Historical Museum'),
(18922, 16063, 'no_lang_code', 'name', 'Dürr (Germany)'),
(18923, 16064, 'en', 'name', 'Kettering College'),
(18924, 16064, 'fr', 'name', 'College des arts mƩdicaux de kettering'),
(18925, 16065, 'en', 'name', 'Electronic Privacy Information Center'),
(18926, 16066, 'no_lang_code', 'name', 'Buildair (Spain)'),
(18927, 16067, 'en', 'name', 'Sauk Valley Community College'),
(18928, 16068, 'en', 'name', 'Association for Computational Linguistics'),
(18929, 16069, 'no_lang_code', 'name', 'Linguamatics (United Kingdom)'),
(18930, 16070, 'fr', 'name', 'Traces'),
(18931, 16071, 'no_lang_code', 'name', 'Karmic (Switzerland)'),
(18932, 16072, 'en', 'name', 'Lake County Forest Preserves'),
(18933, 16073, 'no_lang_code', 'name', 'Huron Technologies (Canada)'),
(18934, 16074, 'en', 'name', 'G.V. Kurdyumov Institute for Metal Physics'),
(18935, 16074, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металлофизики ŠŠŠ Украины'),
(18936, 16074, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металофізики імені Š“. Š’. ŠšŃƒŃ€Š“ŃŽŠ¼Š¾Š²Š° ŠŠŠ України'),
(18937, 16075, 'no_lang_code', 'name', 'imaGeau (France)'),
(18938, 16076, 'no_lang_code', 'name', 'FVA New Media Research (Italy)'),
(18939, 16077, 'en', 'name', 'Wauconda Area Library'),
(18940, 16078, 'no_lang_code', 'name', 'Berry & Associates (United States)'),
(18941, 16079, 'no_lang_code', 'name', 'Falex Tribology (Belgium)'),
(18942, 16080, 'en', 'name', 'Chattanooga State Community College'),
(18943, 16081, 'no_lang_code', 'name', 'Kennametal (United Kingdom)'),
(18944, 16082, 'de', 'name', 'Bundesanstalt für Arbeitsschutz und Arbeitsmedizin'),
(18945, 16082, 'en', 'name', 'Federal Institute for Occupational Safety and Health'),
(18946, 16083, 'no_lang_code', 'name', 'ChemRegen (United States)'),
(18947, 16084, 'en', 'name', 'Ward Melville Heritage Organization'),
(18948, 16085, 'no_lang_code', 'name', 'Broadcom (Ireland)'),
(18949, 16086, 'en', 'name', 'USA Hockey Foundation'),
(18950, 16087, 'en', 'name', 'Prairie State College'),
(18951, 16088, 'no_lang_code', 'name', 'Anton Paar (Switzerland)'),
(18952, 16089, 'no_lang_code', 'name', 'Healionics (United States)'),
(18953, 16090, 'no_lang_code', 'name', 'Fluvius (Belgium)'),
(18954, 16091, 'en', 'name', 'Florida Coalition Against Domestic Violence'),
(18955, 16092, 'no_lang_code', 'name', 'Cameca (France)'),
(18956, 16093, 'no_lang_code', 'name', 'Ernst Basler + Partner (Switzerland)'),
(18957, 16094, 'no_lang_code', 'name', 'Freshseal Limited (United Kingdom)'),
(18958, 16095, 'en', 'name', 'Wadsworth Public Library'),
(18959, 16096, 'en', 'name', 'Trinity Christian College'),
(18960, 16097, 'no_lang_code', 'name', 'Artibal (Spain)'),
(18961, 16098, 'en', 'name', 'New York Says Thank You Foundation'),
(18962, 16099, 'no_lang_code', 'name', 'Cascade Technologies (United Kingdom)'),
(18963, 16100, 'en', 'name', 'Archdiocese of St. Louis'),
(18964, 16100, 'fr', 'name', 'ArchidiocĆØse Catholique de St. Louis'),
(18965, 16101, 'en', 'name', 'SAFE consortium'),
(18966, 16102, 'no_lang_code', 'name', 'Sanotron'),
(18967, 16103, 'en', 'name', 'William Alanson White Institute'),
(18968, 16104, 'no_lang_code', 'name', 'Fluigent (France)'),
(18969, 16105, 'en', 'name', 'Sinano Institute'),
(18970, 16106, 'en', 'name', 'Hudson River Museum'),
(18971, 16107, 'no_lang_code', 'name', 'Actigen (Norway)'),
(18972, 16108, 'no_lang_code', 'name', 'Chematur Engineering (Sweden)'),
(18973, 16109, 'no_lang_code', 'name', 'Sorrento Therapeutics (United States)'),
(18974, 16110, 'en', 'name', 'Ministry of Communications Science and Technology'),
(18975, 16111, 'no_lang_code', 'name', 'Geocontrol (Spain)'),
(18976, 16112, 'en', 'name', 'Council on Alcoholism and Drug Abuse'),
(18977, 16113, 'no_lang_code', 'name', 'Rhenovia (France)'),
(18978, 16114, 'no_lang_code', 'name', 'AMN Healthcare (United States)'),
(18979, 16115, 'en', 'name', 'One Earth Future Foundation'),
(18980, 16116, 'no_lang_code', 'name', 'Frantic Films (Canada)'),
(18981, 16117, 'no_lang_code', 'name', 'IGEA Clinical Biophysics (Italy)'),
(18982, 16118, 'no_lang_code', 'name', 'Quantum Applied Science and Research (United States)'),
(18983, 16119, 'en', 'name', 'ABCD'),
(18984, 16120, 'en', 'name', 'Agency for Electronic Communications'),
(18985, 16121, 'en', 'name', 'Tacoma Pierce County Health Department'),
(18986, 16122, 'en', 'name', 'Vector Physical Therapy & Aquatic Center'),
(18987, 16123, 'en', 'name', 'Westchester Putnam Council'),
(18988, 16124, 'no_lang_code', 'name', 'Global Digital Technologies (Greece)'),
(18989, 16125, 'no_lang_code', 'name', 'Lattanzio Group (Italy)'),
(18990, 16126, 'no_lang_code', 'name', 'InLight Solutions (United States)'),
(18991, 16127, 'en', 'name', 'South Suburban College'),
(18992, 16128, 'en', 'name', 'Riverstone Senior Life Services'),
(18993, 16129, 'en', 'name', 'Cleveland Hearing & Speech Center'),
(18994, 16130, 'no_lang_code', 'name', 'AGF Electronics (Italy)'),
(18995, 16131, 'en', 'name', 'Centre for Environmental Management and Decision Support'),
(18996, 16132, 'no_lang_code', 'name', 'HƉTFA Research Institute'),
(18997, 16133, 'en', 'name', 'United States Arctic Research Commission'),
(18998, 16134, 'no_lang_code', 'name', 'Berlitz (Germany)'),
(18999, 16135, 'no_lang_code', 'name', 'Visioncare Research'),
(19000, 16136, 'no_lang_code', 'name', 'FunderMax (Austria)'),
(19001, 16137, 'no_lang_code', 'name', 'Gerstel (Germany)'),
(19002, 16138, 'en', 'name', 'Institute for Management of Innovation and Technology'),
(19003, 16139, 'en', 'name', 'Toledo Lucas County Public Library'),
(19004, 16140, 'en', 'name', 'Health Resources in Action'),
(19005, 16141, 'de', 'name', 'Kulturrat Ɩsterreich'),
(19006, 16142, 'no_lang_code', 'name', 'IHI Corporation (United Kingdom)'),
(19007, 16143, 'fr', 'name', 'Hespul'),
(19008, 16144, 'it', 'name', 'Amitie'),
(19009, 16145, 'en', 'name', 'European Business Register'),
(19010, 16146, 'en', 'name', 'Central City Concern'),
(19011, 16147, 'no_lang_code', 'name', 'KiNNO'),
(19012, 16148, 'no_lang_code', 'name', 'Husqvarna (Belgium)'),
(19013, 16149, 'no_lang_code', 'name', 'Luceome Biotechnologies (United States)'),
(19014, 16150, 'no_lang_code', 'name', 'Vironika (United States)'),
(19015, 16151, 'no_lang_code', 'name', 'Eurohelp Consulting'),
(19016, 16152, 'en', 'name', 'Center for Economic Research and Environmental Strategy'),
(19017, 16153, 'no_lang_code', 'name', 'Emtele (Finland)'),
(19018, 16154, 'en', 'name', 'IN Financing & Project Management'),
(19019, 16155, 'no_lang_code', 'name', 'Chemetall (Germany)'),
(19020, 16156, 'en', 'name', 'British Transport Police'),
(19021, 16157, 'no_lang_code', 'name', 'Artaic (United States)'),
(19022, 16158, 'no_lang_code', 'name', 'Telefactor Robotics (United States)'),
(19023, 16159, 'en', 'name', 'Air France Consulting'),
(19024, 16160, 'ro', 'name', 'Institutul Geologic al României'),
(19025, 16161, 'en', 'name', 'Entertainment Industry Foundation'),
(19026, 16162, 'en', 'name', 'Colby–Sawyer College'),
(19027, 16163, 'en', 'name', 'Consortium of Academic and Research Libraries in Illinois'),
(19028, 16164, 'no_lang_code', 'name', 'CrossLang (Belgium)'),
(19029, 16165, 'no_lang_code', 'name', 'On Telecoms (Greece)'),
(19030, 16166, 'en', 'name', 'Children and Adults with Attention Deficit/Hyperactivity Disorder'),
(19031, 16167, 'de', 'name', 'EuropƤisches Migrationszentrum'),
(19032, 16167, 'en', 'name', 'European Migration Centre'),
(19033, 16168, 'no_lang_code', 'name', 'Quantason (United States)'),
(19034, 16169, 'no_lang_code', 'name', 'Munich Re (United States)'),
(19035, 16170, 'no_lang_code', 'name', 'Innoprot (Spain)'),
(19036, 16171, 'en', 'name', 'American Geriatrics Society'),
(19037, 16172, 'no_lang_code', 'name', 'EasyCGI (United States)'),
(19038, 16173, 'no_lang_code', 'name', 'QRx Pharma (United States)'),
(19039, 16174, 'de', 'name', 'Bundesverband der deutschen Fischindustrie und des Fischgroßhandels'),
(19040, 16175, 'en', 'name', 'Women''s and Children''s Health Network'),
(19041, 16176, 'en', 'name', 'European Learning Industry Group'),
(19042, 16177, 'en', 'name', 'Buffalo Society of Natural Sciences'),
(19043, 16178, 'no_lang_code', 'name', 'HƤmosan (Austria)'),
(19044, 16179, 'en', 'name', 'Vision Cooperative Research Centre'),
(19045, 16180, 'en', 'name', 'Spirituality For Kids International'),
(19046, 16181, 'en', 'name', 'Agrhymet Regional Centre'),
(19047, 16182, 'no_lang_code', 'name', 'Iren (Italy)'),
(19048, 16183, 'en', 'name', 'National Council for Gender Equality'),
(19049, 16184, 'no_lang_code', 'name', 'Codamotion (United Kingdom)'),
(19050, 16185, 'no_lang_code', 'name', 'Infrabel (Belgium)'),
(19051, 16186, 'no_lang_code', 'name', 'Edna Pasher Ph.D & Associates (Israel)'),
(19052, 16187, 'en', 'name', 'Madison County Historical Society'),
(19053, 16188, 'no_lang_code', 'name', 'LKSoftWare (Germany)'),
(19054, 16189, 'pt', 'name', 'Instituto do Emprego e Formação Profissional'),
(19055, 16190, 'en', 'name', 'Wuesthoff Health System'),
(19056, 16191, 'no_lang_code', 'name', 'Integrated Systems Incorporation (United States)'),
(19057, 16192, 'en', 'name', 'Survivorship A to Z'),
(19058, 16193, 'no_lang_code', 'name', 'GVS (United States)'),
(19059, 16194, 'no_lang_code', 'name', 'Elsyca (Belgium)'),
(19060, 16195, 'no_lang_code', 'name', 'Chiquita Brands International (United States)'),
(19061, 16196, 'no_lang_code', 'name', 'Vintage Capital Group (United States)'),
(19062, 16197, 'no_lang_code', 'name', 'Magneti Ljubljana (Slovenia)'),
(19063, 16198, 'en', 'name', 'Institute of Ionized Gas'),
(19064, 16198, 'it', 'name', 'Istituto Gas Ionizzati'),
(19065, 16199, 'no_lang_code', 'name', 'Biochemtex (Italy)'),
(19066, 16200, 'en', 'name', 'Benjamin Franklin Institute of Technology'),
(19067, 16201, 'en', 'name', 'Eurogas'),
(19068, 16202, 'no_lang_code', 'name', 'Ingenierƭa y Soluciones InformƔticas (Spain)'),
(19069, 16203, 'no_lang_code', 'name', 'Lymba (United States)'),
(19070, 16204, 'no_lang_code', 'name', 'Coretek (United States)'),
(19071, 16205, 'no_lang_code', 'name', 'Generation Biotech (United States)'),
(19072, 16206, 'en', 'name', 'M. Nodia Institute of Geophysics'),
(19073, 16207, 'no_lang_code', 'name', 'Barclays (United Kingdom)'),
(19074, 16208, 'no_lang_code', 'name', 'The Miracle Center (United States)'),
(19075, 16209, 'no_lang_code', 'name', 'ACS Biomarker (Netherlands)'),
(19076, 16210, 'no_lang_code', 'name', 'Daren Labs (Israel)'),
(19077, 16211, 'no_lang_code', 'name', 'Medical Engineering Innovations (United States)'),
(19078, 16212, 'en', 'name', 'Southwest Center for Chronic Disease'),
(19079, 16213, 'no_lang_code', 'name', 'Ingegneria dei Trasporti (Italy)'),
(19080, 16214, 'en', 'name', 'Missouri River Regional Library'),
(19081, 16215, 'en', 'name', 'BayCare Health System'),
(19082, 16216, 'no_lang_code', 'name', 'Curious Directive (United Kingdom)'),
(19083, 16217, 'en', 'name', 'Muscular Dystrophy Association'),
(19084, 16218, 'en', 'name', 'Tiburcio Vasquez Health Center'),
(19085, 16219, 'no_lang_code', 'name', 'Anvil Semiconductors (United Kingdom)'),
(19086, 16220, 'no_lang_code', 'name', 'Adarza BioSystems (United States)'),
(19087, 16221, 'no_lang_code', 'name', 'Frutarom (United Kingdom)'),
(19088, 16222, 'en', 'name', 'State of Connecticut Judicial Branch'),
(19089, 16223, 'no_lang_code', 'name', 'Starlab (United States)'),
(19090, 16224, 'no_lang_code', 'name', 'Aeristech (United Kingdom)'),
(19091, 16225, 'no_lang_code', 'name', 'Instrument Design Technology (United Kingdom)'),
(19092, 16226, 'no_lang_code', 'name', 'Artelys (France)'),
(19093, 16227, 'no_lang_code', 'name', 'Kraken Sonar (Canada)'),
(19094, 16228, 'no_lang_code', 'name', 'Therapure Biopharma (Canada)'),
(19095, 16229, 'en', 'name', 'Urgent Action Fund for Latin America and the Caribbean'),
(19096, 16229, 'es', 'name', 'Fondo de Acción Urgente América Latina y el Caribe'),
(19097, 16230, 'en', 'name', 'Southwestern Michigan College'),
(19098, 16231, 'en', 'name', 'West Town Bikes'),
(19099, 16232, 'en', 'name', 'Hebrew Theological College'),
(19100, 16233, 'en', 'name', 'Aims Community College'),
(19101, 16234, 'no_lang_code', 'name', 'DynaVox (United States)'),
(19102, 16235, 'en', 'name', 'Cincinnati State Technical and Community College'),
(19103, 16236, 'en', 'name', 'Institute of Ion Plasma Laser Technologies'),
(19104, 16237, 'no_lang_code', 'name', 'Fresti (Portugal)'),
(19105, 16238, 'en', 'name', 'Austin Independent School District'),
(19106, 16238, 'es', 'name', 'Distrito Escolar Independiente de Austin'),
(19107, 16239, 'en', 'name', 'Alcohol Drug Mental Health Board of Franklin County'),
(19108, 16240, 'fr', 'name', 'Laboratoire de Recherche des Monuments Historiques'),
(19109, 16241, 'en', 'name', 'Appalachian Regional Healthcare'),
(19110, 16242, 'en', 'name', 'Latina Center'),
(19111, 16243, 'no_lang_code', 'name', 'Coriant (Germany)'),
(19112, 16244, 'en', 'name', 'Ministry of Culture'),
(19113, 16244, 'sl', 'name', 'Ministrstvo za Kulturo'),
(19114, 16245, 'no_lang_code', 'name', 'GreatCell Solar (United Kingdom)'),
(19115, 16246, 'no_lang_code', 'name', 'Bio Molecular Technology (United States)'),
(19116, 16247, 'en', 'name', 'Institute of Chemical Engineering'),
(19117, 16248, 'no_lang_code', 'name', 'Hypertech (Greece)'),
(19118, 16249, 'no_lang_code', 'name', 'Ecobat Technologies (Germany)'),
(19119, 16250, 'de', 'name', 'Deutsche Angestellten-Gewerkschaft'),
(19120, 16250, 'en', 'name', 'German Union of Salaried Employees'),
(19121, 16251, 'en', 'name', 'Alaska Marine Safety Education Association'),
(19122, 16252, 'no_lang_code', 'name', 'Hyperion (Ireland)'),
(19123, 16253, 'no_lang_code', 'name', 'ƅAC Microtec (Sweden)'),
(19124, 16254, 'en', 'name', 'Rhode Island Health Center Association'),
(19125, 16255, 'en', 'name', 'Normal Public Library'),
(19126, 16256, 'no_lang_code', 'name', 'Biocatalysts (United Kingdom)'),
(19127, 16257, 'en', 'name', 'Protestant Reformed Churches in America'),
(19128, 16258, 'no_lang_code', 'name', 'Axon Automotive (United Kingdom)');
INSERT INTO `ror_settings` VALUES
(19129, 16259, 'es', 'name', 'Centro de Referencia Estatal de Autonomƭa Personal y Ayudas TƩcnicas'),
(19130, 16260, 'no_lang_code', 'name', 'Fiji Systems (United States)'),
(19131, 16261, 'no_lang_code', 'name', 'Waters (United States)'),
(19132, 16262, 'no_lang_code', 'name', 'JRI Orthopaedics (United Kingdom)'),
(19133, 16263, 'no_lang_code', 'name', 'Cyprus Research and Innovation Center (Cyprus)'),
(19134, 16264, 'en', 'name', 'Sloan*Longway'),
(19135, 16265, 'no_lang_code', 'name', 'Meggitt (United Kingdom)'),
(19136, 16266, 'en', 'name', 'Italian Shipowners Research Consortium'),
(19137, 16266, 'it', 'name', 'Consorzio Armatori per la Ricerca'),
(19138, 16267, 'no_lang_code', 'name', 'Hydrometeorological Innovative Solutions (Spain)'),
(19139, 16268, 'no_lang_code', 'name', 'Immuno-Mycologics'),
(19140, 16269, 'en', 'name', 'Waukesha County Technical College'),
(19141, 16270, 'en', 'name', 'Building Bridges'),
(19142, 16271, 'en', 'name', 'Kentucky Department of Education'),
(19143, 16272, 'en', 'name', 'Spertus Institute for Jewish Learning and Leadership'),
(19144, 16273, 'en', 'name', 'NS Kurnakova Institute of General and Inorganic Chemistry'),
(19145, 16273, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей Šø неорганической химии им. Š.Š”. ŠšŃƒŃ€Š½Š°ŠŗŠ¾Š²Š° Российской акаГемии наук'),
(19146, 16274, 'no_lang_code', 'name', 'Applied Nanodetectors (United Kingdom)'),
(19147, 16275, 'no_lang_code', 'name', 'Amber Waves Software (United States)'),
(19148, 16276, 'no_lang_code', 'name', 'FIRA International (United Kingdom)'),
(19149, 16277, 'en', 'name', 'Ave Maria School of Law'),
(19150, 16277, 'es', 'name', 'Escuela de Derecho Ave MarĆ­a'),
(19151, 16278, 'en', 'name', 'Gathering Place'),
(19152, 16279, 'no_lang_code', 'name', 'Mouchel (United Kingdom)'),
(19153, 16280, 'no_lang_code', 'name', 'AraVasc (United States)'),
(19154, 16281, 'en', 'name', 'Christus Santa Rosa Health System'),
(19155, 16282, 'no_lang_code', 'name', 'Joensuu Science Park'),
(19156, 16283, 'en', 'name', 'Health On The Net Foundation'),
(19157, 16284, 'no_lang_code', 'name', 'Acktar (Israel)'),
(19158, 16285, 'en', 'name', 'Biloxi Public Schools'),
(19159, 16286, 'no_lang_code', 'name', 'Leonardo Film (Germany)'),
(19160, 16287, 'no_lang_code', 'name', 'OnCore Biopharma (United States)'),
(19161, 16288, 'de', 'name', 'Internationale Organisation für Migration'),
(19162, 16288, 'en', 'name', 'International Organization for Migration'),
(19163, 16288, 'fr', 'name', 'Organisation internationale pour les migrations'),
(19164, 16288, 'it', 'name', 'Organizzazione Internazionale per le Migrazioni'),
(19165, 16289, 'no_lang_code', 'name', 'Azienda del Consorzio Trasporti Veneziano (Italy)'),
(19166, 16290, 'no_lang_code', 'name', 'IMS Maxims (Ireland)'),
(19167, 16291, 'en', 'name', 'Through the Looking Glass'),
(19168, 16292, 'no_lang_code', 'name', 'Enervana Technologies (United States)'),
(19169, 16293, 'no_lang_code', 'name', 'IBC Advanced Technologies (United States)'),
(19170, 16294, 'en', 'name', 'Retina Associates'),
(19171, 16295, 'no_lang_code', 'name', 'Advanced Coatings (Belgium)'),
(19172, 16296, 'no_lang_code', 'name', 'Danaos (Greece)'),
(19173, 16297, 'no_lang_code', 'name', 'Aurora Optics (United States)'),
(19174, 16298, 'no_lang_code', 'name', 'Dekati (Finland)'),
(19175, 16299, 'en', 'name', 'Federal Agency for Nuclear Control'),
(19176, 16299, 'fr', 'name', 'Agence fƩdƩrale de contrƓle nuclƩaire'),
(19177, 16299, 'nl', 'name', 'Federaal Agentschap voor Nucleaire Controle'),
(19178, 16300, 'en', 'name', 'Turnstone'),
(19179, 16301, 'en', 'name', 'Texas Partnership for End-of-Life Care'),
(19180, 16302, 'no_lang_code', 'name', 'Clevercherry (United Kingdom)'),
(19181, 16303, 'no_lang_code', 'name', 'Biographics (United States)'),
(19182, 16304, 'en', 'name', 'Mount Vernon Nazarene University'),
(19183, 16305, 'en', 'name', 'Wilmington College'),
(19184, 16306, 'en', 'name', 'Saint Joseph''s College'),
(19185, 16307, 'en', 'name', 'Studebaker National Museum'),
(19186, 16308, 'no_lang_code', 'name', 'Arjowiggins (United Kingdom)'),
(19187, 16309, 'no_lang_code', 'name', 'Bactest (United Kingdom)'),
(19188, 16310, 'no_lang_code', 'name', 'Container Finance (Finland)'),
(19189, 16311, 'it', 'name', 'Centro Europa Ricerche'),
(19190, 16312, 'no_lang_code', 'name', 'Genalyte (United States)'),
(19191, 16313, 'en', 'name', 'Realistic Education in Action Coalition to Foster Health'),
(19192, 16314, 'en', 'name', 'WellStar Health System'),
(19193, 16315, 'no_lang_code', 'name', 'Animal Monday (United Kingdom)'),
(19194, 16316, 'en', 'name', 'Institute for Medical BioMathematics'),
(19195, 16317, 'no_lang_code', 'name', '01 Pliroforiki (Greece)'),
(19196, 16318, 'no_lang_code', 'name', 'EUrelations (Switzerland)'),
(19197, 16319, 'en', 'name', 'Helicon Foundation'),
(19198, 16320, 'en', 'name', 'Wayne Country Day School'),
(19199, 16321, 'en', 'name', 'Thai Health And Information Services'),
(19200, 16322, 'fr', 'name', 'Chambre de Commerce et d''Industrie Occitanie PyrƩnƩes-MƩditerranƩe'),
(19201, 16323, 'no_lang_code', 'name', 'Electricidade dos AƧores (Portugal)'),
(19202, 16324, 'es', 'name', 'Fundación para el Desarrollo de la Función Social de las Comunicaciones'),
(19203, 16325, 'en', 'name', 'Canterbury Medical Research Foundation'),
(19204, 16326, 'en', 'name', 'Cedarburg Public Library'),
(19205, 16327, 'de', 'name', 'Statistisches Bundesamt'),
(19206, 16327, 'en', 'name', 'Federal Statistical Office'),
(19207, 16328, 'en', 'name', 'Engage'),
(19208, 16329, 'en', 'name', 'Alamo Area Council of Governments'),
(19209, 16330, 'fr', 'name', 'FĆ©dĆ©ration Nationale des Centres d''Initiatives pour Valoriser l’Agriculture et le Milieu Rural'),
(19210, 16331, 'en', 'name', 'Hospice Savannah'),
(19211, 16332, 'en', 'name', 'Peru Public Library'),
(19212, 16333, 'no_lang_code', 'name', 'Geostock (France)'),
(19213, 16334, 'en', 'name', 'Helena Public School District'),
(19214, 16335, 'no_lang_code', 'name', 'Lürssen (Germany)'),
(19215, 16336, 'no_lang_code', 'name', 'Ambient Systems (Netherlands)'),
(19216, 16337, 'en', 'name', 'Sector Skills Council for Science, Engineering and Manufacturing Technologies'),
(19217, 16338, 'no_lang_code', 'name', 'Median SCP (Spain)'),
(19218, 16339, 'fr', 'name', 'Ministère de la Santé'),
(19219, 16340, 'no_lang_code', 'name', 'Schmolz Bickenbach (Germany)'),
(19220, 16341, 'en', 'name', 'Washington County Schools'),
(19221, 16342, 'fr', 'name', 'Fondation MƩrieux'),
(19222, 16343, 'no_lang_code', 'name', 'Altoris (United States)'),
(19223, 16344, 'no_lang_code', 'name', 'Intrinsic LifeSciences (United States)'),
(19224, 16345, 'no_lang_code', 'name', 'Kleinewefers Kunststoffanlagen (Germany)'),
(19225, 16346, 'no_lang_code', 'name', 'Cellectis (United States)'),
(19226, 16347, 'no_lang_code', 'name', 'Knowledge Now (United Kingdom)'),
(19227, 16348, 'no_lang_code', 'name', 'Geoloc Systems (France)'),
(19228, 16349, 'no_lang_code', 'name', 'Capgemini (United States)'),
(19229, 16350, 'no_lang_code', 'name', 'Groenholland (Netherlands)'),
(19230, 16351, 'en', 'name', 'Vista Community Clinic'),
(19231, 16352, 'en', 'name', 'Contractor UK'),
(19232, 16353, 'no_lang_code', 'name', 'GeneCopoeia (United States)'),
(19233, 16354, 'en', 'name', 'Lebanese Association for Energy Saving & for Environment'),
(19234, 16354, 'fr', 'name', 'Association Libanaise pour la Maitrise de l’Energie et pour l’Environnement'),
(19235, 16355, 'no_lang_code', 'name', 'Dassault SystĆØmes (Germany)'),
(19236, 16356, 'en', 'name', 'European Center for Geodynamics and Seismology'),
(19237, 16356, 'fr', 'name', 'Centre EuropƩen de GƩodynamique et de SƩismologie'),
(19238, 16357, 'en', 'name', 'People Living Through Cancer'),
(19239, 16358, 'no_lang_code', 'name', 'Dotsoft (Greece)'),
(19240, 16359, 'en', 'name', 'eTraining Technology Academy'),
(19241, 16360, 'en', 'name', 'Pasadera Behavioral Health Network'),
(19242, 16361, 'no_lang_code', 'name', 'EagleBurgmann (Germany)'),
(19243, 16362, 'pt', 'name', 'Instituto da Conservação da Natureza e das Florestas'),
(19244, 16363, 'no_lang_code', 'name', 'Dr. Hƶnle (Germany)'),
(19245, 16364, 'en', 'name', 'Silicon Valley Independent Living Center'),
(19246, 16365, 'no_lang_code', 'name', 'Stantec (United States)'),
(19247, 16366, 'no_lang_code', 'name', 'Qualidigm (United States)'),
(19248, 16367, 'no_lang_code', 'name', 'Eminent Services Corporation (United States)'),
(19249, 16368, 'en', 'name', 'European Automobile Manufacturers Association'),
(19250, 16368, 'fr', 'name', 'Association des Constructeurs EuropƩens d''Automobiles'),
(19251, 16369, 'no_lang_code', 'name', 'Itasca Consultants (France)'),
(19252, 16370, 'no_lang_code', 'name', 'Scribd (United States)'),
(19253, 16371, 'en', 'name', 'Cleveland Heights University Heights Public Library'),
(19254, 16372, 'no_lang_code', 'name', 'Deutsches Institut für Feuerfest und Keramik'),
(19255, 16373, 'no_lang_code', 'name', 'Gale & Snowden Architects (United Kingdom)'),
(19256, 16374, 'no_lang_code', 'name', 'Etma (Greece)'),
(19257, 16375, 'no_lang_code', 'name', 'IBK (Germany)'),
(19258, 16376, 'en', 'name', 'Cornerstone University'),
(19259, 16377, 'no_lang_code', 'name', 'Health Care Service Corporation'),
(19260, 16378, 'en', 'name', 'WellSpan Health'),
(19261, 16379, 'en', 'name', 'Judson University'),
(19262, 16380, 'no_lang_code', 'name', 'Alpes Lasers (Switzerland)'),
(19263, 16381, 'en', 'name', 'Industrial Association Yarns Fabric Technical Textiles Industry'),
(19264, 16382, 'no_lang_code', 'name', 'AvantiCell Science (United Kingdom)'),
(19265, 16383, 'en', 'name', 'White Oak Library District'),
(19266, 16384, 'en', 'name', 'National Defense University'),
(19267, 16384, 'es', 'name', 'Universidad Nacional de Defensa'),
(19268, 16385, 'no_lang_code', 'name', 'ImmuVen (United States)'),
(19269, 16386, 'no_lang_code', 'name', 'Constructive Thinking Studio (United Kingdom)'),
(19270, 16387, 'en', 'name', 'Louth County Council'),
(19271, 16388, 'en', 'name', 'Waukesha County Museum'),
(19272, 16389, 'no_lang_code', 'name', 'Human Solutions (Germany)'),
(19273, 16390, 'no_lang_code', 'name', 'Hysytech (Italy)'),
(19274, 16391, 'no_lang_code', 'name', 'Trento RISE (Italy)'),
(19275, 16392, 'no_lang_code', 'name', 'Mecos Traxler (Switzerland)'),
(19276, 16393, 'no_lang_code', 'name', 'Fabes Forschungs (Germany)'),
(19277, 16394, 'en', 'name', 'Laucks Foundation'),
(19278, 16395, 'en', 'name', 'College of Saint Mary'),
(19279, 16396, 'no_lang_code', 'name', 'Aker (United Kingdom)'),
(19280, 16397, 'no_lang_code', 'name', 'Gamax (Hungary)'),
(19281, 16398, 'en', 'name', 'Xenobe Research Institute'),
(19282, 16399, 'no_lang_code', 'name', 'Composite Integration (United Kingdom)'),
(19283, 16400, 'no_lang_code', 'name', 'Global Maritime Services (United Kingdom)'),
(19284, 16401, 'en', 'name', 'Ministry of the Interior'),
(19285, 16401, 'tr', 'name', 'İçişleri Bakanlığı'),
(19286, 16402, 'no_lang_code', 'name', 'Celsense (United States)'),
(19287, 16403, 'no_lang_code', 'name', 'Kommunedata (Denmark)'),
(19288, 16404, 'no_lang_code', 'name', 'Eli Lilly (Germany)'),
(19289, 16405, 'no_lang_code', 'name', '3D Glass Solutions (United States)'),
(19290, 16406, 'en', 'name', 'American Academy of Child and Adolescent Psychiatry'),
(19291, 16407, 'en', 'name', 'Danish Film Institute'),
(19292, 16408, 'no_lang_code', 'name', 'Arvia Technology (United Kingdom)'),
(19293, 16409, 'no_lang_code', 'name', 'Invenio Imaging (United States)'),
(19294, 16410, 'it', 'name', 'Lega Italiana Protezione Uccelli'),
(19295, 16411, 'no_lang_code', 'name', 'Lassila & Tikanoja (Finland)'),
(19296, 16412, 'de', 'name', 'Forschungszentrum für Medizintechnik und Biotechnologie'),
(19297, 16412, 'en', 'name', 'Research Centre of Medical Technology and Biotechnology'),
(19298, 16413, 'no_lang_code', 'name', 'KSE (United States)'),
(19299, 16414, 'en', 'name', 'Greater Manchester Combined Authority'),
(19300, 16415, 'en', 'name', 'Tennessee Justice Center'),
(19301, 16416, 'en', 'name', 'Esther A. & Joseph Klingenstein Fund'),
(19302, 16417, 'en', 'name', 'Georgia Mental Health Consumer Network'),
(19303, 16418, 'no_lang_code', 'name', 'Atoutveille (France)'),
(19304, 16419, 'ro', 'name', 'Institutul de Bioresurse Alimentare'),
(19305, 16420, 'no_lang_code', 'name', 'Arccore (Sweden)'),
(19306, 16421, 'no_lang_code', 'name', 'BS Rotor Technic (United Kingdom)'),
(19307, 16422, 'no_lang_code', 'name', 'Kenaf Eco Fibers Italia (Italy)'),
(19308, 16423, 'en', 'name', 'Kozloduy Nuclear Power Plant'),
(19309, 16424, 'no_lang_code', 'name', 'ITRB (Cyprus)'),
(19310, 16425, 'pt', 'name', 'CĆ¢mara Municipal do Porto'),
(19311, 16426, 'no_lang_code', 'name', 'IVV Automação (Portugal)'),
(19312, 16427, 'en', 'name', 'European Association for Battery Hybrid and Fuel Cell Electric Vehicles'),
(19313, 16428, 'en', 'name', 'Blue Springs Historical Society'),
(19314, 16429, 'no_lang_code', 'name', 'Atomising Systems (United Kingdom)'),
(19315, 16430, 'en', 'name', 'Executive Unit for Financing Higher Education, Research, Development and Innovation'),
(19316, 16430, 'ro', 'name', 'Unitatea Executiva Pentru Finantarea Invatamantului Superior a Cercetarii Dezvoltarii si Inovarii'),
(19317, 16431, 'no_lang_code', 'name', 'Horton Levi (United Kingdom)'),
(19318, 16432, 'no_lang_code', 'name', 'Mars (United Kingdom)'),
(19319, 16433, 'es', 'name', 'Aspapel'),
(19320, 16434, 'en', 'name', 'Rogerson Communities'),
(19321, 16435, 'no_lang_code', 'name', 'Conference Management Services'),
(19322, 16436, 'en', 'name', 'Baylor School'),
(19323, 16437, 'no_lang_code', 'name', 'GeneSearch (United States)'),
(19324, 16438, 'fr', 'name', 'Ministre de la Santé, de la Population et de la Réforme Hospitalière, Ministère de la Santé'),
(19325, 16439, 'no_lang_code', 'name', 'Chalklabs (United States)'),
(19326, 16440, 'no_lang_code', 'name', 'Adva Optical Networking (Poland)'),
(19327, 16441, 'no_lang_code', 'name', 'Deliverics (United Kingdom)'),
(19328, 16442, 'en', 'name', 'International Chemical Workers Union'),
(19329, 16443, 'en', 'name', 'Hugo''s Restaurant'),
(19330, 16444, 'en', 'name', 'Best Answer for Cancer Foundation'),
(19331, 16445, 'en', 'name', 'World Science Festival'),
(19332, 16446, 'en', 'name', 'Marinette County Libraries'),
(19333, 16447, 'no_lang_code', 'name', 'Medknow (India)'),
(19334, 16448, 'no_lang_code', 'name', 'Boart Longyear (United States)'),
(19335, 16449, 'no_lang_code', 'name', 'CapSenze (Sweden)'),
(19336, 16450, 'no_lang_code', 'name', 'Ovako (Finland)'),
(19337, 16451, 'en', 'name', 'DeKalb County Board of Health'),
(19338, 16452, 'en', 'name', 'Prevea Health'),
(19339, 16453, 'en', 'name', 'Wisconsin Indianhead Technical College'),
(19340, 16454, 'en', 'name', 'Association of Environmental Health Academic Programs'),
(19341, 16455, 'no_lang_code', 'name', 'Biobyte Solutions (Germany)'),
(19342, 16456, 'en', 'name', 'Veteran Homestead'),
(19343, 16457, 'no_lang_code', 'name', 'Ionic (United States)'),
(19344, 16458, 'no_lang_code', 'name', 'Bio-K+ International (Canada)'),
(19345, 16459, 'no_lang_code', 'name', 'Gold Biotechnology (United States)'),
(19346, 16460, 'en', 'name', 'Families Together in New York State'),
(19347, 16461, 'no_lang_code', 'name', 'Amethyst Technologies (United States)'),
(19348, 16462, 'no_lang_code', 'name', 'InfraTec (Germany)'),
(19349, 16463, 'en', 'name', 'European Tyre Recycling Association'),
(19350, 16464, 'no_lang_code', 'name', 'KalVista Pharmaceuticals (United States)'),
(19351, 16465, 'en', 'name', 'Albany Stratton VA Medical Center Albany'),
(19352, 16466, 'en', 'name', 'American Federation of Teachers'),
(19353, 16467, 'en', 'name', 'Illinois Railway Museum'),
(19354, 16468, 'en', 'name', 'Arkansas Science & Technology'),
(19355, 16469, 'en', 'name', 'European Association of Automotive Suppliers'),
(19356, 16469, 'fr', 'name', 'Comité de Liaison Européen des fabricants d''équipements et de Pièces Automobiles'),
(19357, 16470, 'en', 'name', 'Genesee/Orleans Council on Alcoholism and Substance Abuse'),
(19358, 16471, 'en', 'name', 'Abbotsford Veterinary Clinic'),
(19359, 16472, 'no_lang_code', 'name', 'Moog (Netherlands)'),
(19360, 16473, 'en', 'name', 'Ministry of Economic Affairs and Communications'),
(19361, 16473, 'et', 'name', 'Majandus- ja Kommunikatsiooniministeerium'),
(19362, 16474, 'en', 'name', 'Zhejiang Police College'),
(19363, 16474, 'zh', 'name', 'ęµ™ę±Ÿč­¦åÆŸå­¦é™¢'),
(19364, 16475, 'en', 'name', 'Computer Network Information Center'),
(19365, 16475, 'zh', 'name', 'č®”ē®—ęœŗē½‘ē»œäæ”ęÆäø­åæƒ'),
(19366, 16476, 'no_lang_code', 'name', 'Hyundai Motors (Germany)'),
(19367, 16477, 'no_lang_code', 'name', 'BioSensics (United States)'),
(19368, 16478, 'es', 'name', 'Instituto de Fomento de la Región de Murcia'),
(19369, 16479, 'no_lang_code', 'name', 'IGI Technologies (United States)'),
(19370, 16480, 'en', 'name', 'Society for Biomedical Diabetes Research'),
(19371, 16481, 'en', 'name', 'Hellenic Federation of Enterprises'),
(19372, 16482, 'no_lang_code', 'name', 'AlphaLabs (France)'),
(19373, 16483, 'en', 'name', 'Catholic Theological Union'),
(19374, 16484, 'no_lang_code', 'name', 'Iznab (Poland)'),
(19375, 16485, 'no_lang_code', 'name', 'Carte Blanche Conseil'),
(19376, 16486, 'no_lang_code', 'name', 'nLIGHT (United States)'),
(19377, 16487, 'no_lang_code', 'name', 'Mediri (Germany)'),
(19378, 16488, 'no_lang_code', 'name', 'Cyberlightning (Finland)'),
(19379, 16489, 'no_lang_code', 'name', 'Inova Pro (Czechia)'),
(19380, 16490, 'en', 'name', 'Hull City Council'),
(19381, 16491, 'no_lang_code', 'name', 'Hummingbird Diagnostics (Germany)'),
(19382, 16492, 'no_lang_code', 'name', 'Health Technomics (United States)'),
(19383, 16493, 'en', 'name', 'Schwab Rehabilitation Hospital'),
(19384, 16494, 'no_lang_code', 'name', 'DRVision Technologies (United States)'),
(19385, 16495, 'no_lang_code', 'name', 'In Silico Toxicology (Switzerland)'),
(19386, 16496, 'no_lang_code', 'name', 'McCann Associates (United States)'),
(19387, 16497, 'en', 'name', 'Energy Agency of Plovdiv'),
(19388, 16498, 'no_lang_code', 'name', 'RealNetworks (Canada)'),
(19389, 16499, 'en', 'name', 'William Thomas Grant Foundation'),
(19390, 16500, 'no_lang_code', 'name', 'FemtoScale (United States)'),
(19391, 16501, 'en', 'name', 'Institute of Water Modelling'),
(19392, 16502, 'en', 'name', 'Susan B Allen Memorial Hospital'),
(19393, 16503, 'en', 'name', 'Healthy Northeast Pennsylvania Initiative'),
(19394, 16504, 'en', 'name', 'AIDS Resource Center of Wisconsin'),
(19395, 16505, 'en', 'name', 'Children''s Council'),
(19396, 16506, 'no_lang_code', 'name', 'Colorex Master Batch (Netherlands)'),
(19397, 16507, 'en', 'name', 'Federation of Families of South Carolina'),
(19398, 16508, 'no_lang_code', 'name', 'Cad Modelling Ergonomics (Italy)'),
(19399, 16509, 'en', 'name', 'Hocking College'),
(19400, 16510, 'en', 'name', 'Docklands Light Railway'),
(19401, 16511, 'en', 'name', 'Aurora Public Library'),
(19402, 16512, 'en', 'name', 'German Research School for Simulation Sciences'),
(19403, 16513, 'no_lang_code', 'name', 'Walmart (United Kingdom)'),
(19404, 16514, 'no_lang_code', 'name', 'Erlang Solutions (United Kingdom)'),
(19405, 16515, 'no_lang_code', 'name', 'Automated Cells & Equipment (United States)'),
(19406, 16516, 'en', 'name', 'Screen'),
(19407, 16517, 'en', 'name', 'Society for Mucosal Immunology'),
(19408, 16518, 'no_lang_code', 'name', 'Amis (Slovenia)'),
(19409, 16519, 'no_lang_code', 'name', 'A. Brito (Portugal)'),
(19410, 16520, 'en', 'name', 'South Holland Public Library'),
(19411, 16521, 'en', 'name', 'League of Dreams'),
(19412, 16522, 'no_lang_code', 'name', 'BioNanoNet'),
(19413, 16523, 'en', 'name', 'Michigan City Public Library'),
(19414, 16524, 'en', 'name', 'Yu.G. Shafer Institute of Cosmophysical Research and Aeronomy'),
(19415, 16524, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космофизических исслеГований Šø Š°ŃŃ€Š¾Š½Š¾Š¼ŠøŠø им. Š®.Š“.Шафера Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(19416, 16525, 'en', 'name', 'Sportable'),
(19417, 16526, 'en', 'name', 'PeaceHealth St. John Medical Center'),
(19418, 16527, 'no_lang_code', 'name', 'IDEA Bio-Medical (Israel)'),
(19419, 16528, 'en', 'name', 'SPARK Reproductive Justice NOW'),
(19420, 16529, 'en', 'name', 'South Central Family Health Center'),
(19421, 16530, 'en', 'name', 'Southern Poverty Law Center'),
(19422, 16531, 'en', 'name', 'Ability Center of Greater Toledo'),
(19423, 16532, 'de', 'name', 'Institut für Angewandte Systemtechnik Bremen'),
(19424, 16532, 'en', 'name', 'Institute for Applied Systems Technology Bremen'),
(19425, 16533, 'no_lang_code', 'name', 'Advanced Integrated Technology Solutions & Services'),
(19426, 16534, 'no_lang_code', 'name', 'ClimateWell (Sweden)'),
(19427, 16535, 'en', 'name', 'Team Taylor County'),
(19428, 16536, 'no_lang_code', 'name', 'The Meltech (United Kingdom)'),
(19429, 16537, 'en', 'name', 'Illinois State Archives'),
(19430, 16538, 'en', 'name', 'Obesity Society'),
(19431, 16539, 'en', 'name', 'Vigo County Historical Society & Museum'),
(19432, 16540, 'no_lang_code', 'name', 'Creative Systems Engineering (Greece)'),
(19433, 16541, 'no_lang_code', 'name', 'Kite Innovation (United Kingdom)'),
(19434, 16542, 'en', 'name', 'Finnish Real Estate Federation'),
(19435, 16543, 'it', 'name', 'Casa di Cura Villa Pini d’Abruzzo'),
(19436, 16544, 'bn', 'name', 'কলকাতা ą¦Ŗą§Œą¦°ą¦øą¦‚ą¦øą§ą¦„ą¦¾'),
(19437, 16544, 'en', 'name', 'Kolkata Municipal Corporation'),
(19438, 16545, 'en', 'name', 'Canadian Veterinary Medical Association'),
(19439, 16545, 'fr', 'name', 'Association canadienne des mƩdecins vƩtƩrinaires'),
(19440, 16546, 'en', 'name', 'Local Government Improvement and Development'),
(19441, 16547, 'en', 'name', 'Young Adult Institute'),
(19442, 16548, 'en', 'name', 'CIMA Research Foundation'),
(19443, 16549, 'no_lang_code', 'name', 'Lohmann Tierzucht (Germany)'),
(19444, 16550, 'no_lang_code', 'name', 'Ademtech (France)'),
(19445, 16551, 'en', 'name', 'Jackson District Library'),
(19446, 16552, 'no_lang_code', 'name', 'Barnard Microsystems (United Kingdom)'),
(19447, 16553, 'no_lang_code', 'name', 'Geotechnics (United Kingdom)'),
(19448, 16554, 'no_lang_code', 'name', 'Light Prescriptions Innovators (Spain)'),
(19449, 16555, 'en', 'name', 'Elk Grove Village Public Library'),
(19450, 16556, 'en', 'name', 'Anaerobic Digestion and Bioresources Association'),
(19451, 16557, 'en', 'name', 'Lord Fairfax Community College'),
(19452, 16558, 'en', 'name', 'Laser Institute of America'),
(19453, 16559, 'no_lang_code', 'name', 'Ikona (United States)'),
(19454, 16560, 'en', 'name', 'IDConsortium'),
(19455, 16561, 'no_lang_code', 'name', 'GTP Technology'),
(19456, 16562, 'en', 'name', 'Department of the Environment'),
(19457, 16563, 'no_lang_code', 'name', 'AP&T (Sweden)'),
(19458, 16564, 'en', 'name', 'Women''s International Network for Guatemalan Solutions'),
(19459, 16565, 'en', 'name', 'Foundation for Children with Cancer'),
(19460, 16566, 'en', 'name', 'Speedway Fire Rescue'),
(19461, 16567, 'en', 'name', 'Canadian Society for Exercise Physiology'),
(19462, 16568, 'pt', 'name', 'Instituto Terra e Memória'),
(19463, 16569, 'en', 'name', 'Federal Reserve Bank of Cleveland'),
(19464, 16570, 'no_lang_code', 'name', 'Compass Systems (United States)'),
(19465, 16571, 'no_lang_code', 'name', 'Animal Vegetable Mineral (United Kingdom)'),
(19466, 16572, 'en', 'name', 'Washington Center for Psychoanalysis'),
(19467, 16573, 'no_lang_code', 'name', 'Hungarian Central Statistical Office'),
(19468, 16574, 'de', 'name', 'Vivantes Klinikum'),
(19469, 16575, 'no_lang_code', 'name', 'Awite Bioenergie (Germany)'),
(19470, 16576, 'no_lang_code', 'name', 'Bcr Diagnostics (United States)'),
(19471, 16577, 'en', 'name', 'Cleveland Foundation'),
(19472, 16578, 'no_lang_code', 'name', 'GeneticaLens (United States)'),
(19473, 16579, 'no_lang_code', 'name', 'HAYC3'),
(19474, 16580, 'no_lang_code', 'name', 'IX-Factory (Germany)'),
(19475, 16581, 'no_lang_code', 'name', 'AIMES Grid Services (United Kingdom)'),
(19476, 16582, 'en', 'name', 'Jefferson Parish District Attorney'),
(19477, 16583, 'no_lang_code', 'name', 'DH Consultancy BVBA (Belgium)'),
(19478, 16584, 'en', 'name', 'European Association of Development Agencies'),
(19479, 16585, 'it', 'name', 'Biblioteca Italiana per i Ciechi "Regina Margherita" - ONLUS'),
(19480, 16586, 'en', 'name', 'Louisburg College'),
(19481, 16587, 'en', 'name', 'Cancer Resources for Elkhart County'),
(19482, 16588, 'no_lang_code', 'name', 'GenHunter (United States)'),
(19483, 16589, 'no_lang_code', 'name', 'Bauhaus Luftfahrt'),
(19484, 16590, 'no_lang_code', 'name', 'Alsitek (United Kingdom)'),
(19485, 16591, 'en', 'name', 'European Health Management Association'),
(19486, 16592, 'no_lang_code', 'name', 'Actinix (United States)'),
(19487, 16593, 'en', 'name', 'BC Non-Profit Housing Association'),
(19488, 16594, 'en', 'name', 'Columbus Metropolitan Library'),
(19489, 16595, 'no_lang_code', 'name', 'Leuco Ledermann (Germany)'),
(19490, 16596, 'no_lang_code', 'name', 'Hotpoint (United Kingdom)'),
(19491, 16597, 'ca', 'name', 'Reial Automòbil Club de Catalunya'),
(19492, 16598, 'en', 'name', 'Space for Life'),
(19493, 16598, 'fr', 'name', 'Espace pour la vie'),
(19494, 16599, 'en', 'name', 'BT Archives'),
(19495, 16600, 'en', 'name', 'Bone Marrow Foundation'),
(19496, 16601, 'no_lang_code', 'name', 'Horta (Italy)'),
(19497, 16602, 'no_lang_code', 'name', 'Biametrics (Germany)'),
(19498, 16603, 'en', 'name', 'Danville Area Community College'),
(19499, 16604, 'en', 'name', 'Habitat Acquisition Trust'),
(19500, 16605, 'en', 'name', 'Sacramento City Unified School District'),
(19501, 16606, 'no_lang_code', 'name', 'Europliroforissi'),
(19502, 16607, 'en', 'name', 'Baldwin Public Library'),
(19503, 16608, 'en', 'name', 'Texas Health and Human Services Commission'),
(19504, 16609, 'no_lang_code', 'name', 'Covesion (United Kingdom)'),
(19505, 16610, 'no_lang_code', 'name', 'Kaiam Corporation (United States)'),
(19506, 16611, 'no_lang_code', 'name', 'Banpil Photonics (United States)'),
(19507, 16612, 'en', 'name', 'Cody Unser First Step Foundation'),
(19508, 16613, 'en', 'name', 'Concordia University Ann Arbor'),
(19509, 16613, 'es', 'name', 'Universidad Concordia'),
(19510, 16614, 'en', 'name', 'United States Immunodeficiency Network'),
(19511, 16615, 'en', 'name', 'Davis & Elkins College'),
(19512, 16616, 'en', 'name', 'Federal Deposit Insurance Corporation'),
(19513, 16616, 'es', 'name', 'Corporación Federal de Seguro de Depósitos'),
(19514, 16617, 'en', 'name', 'The Schiele Museum of Natural History'),
(19515, 16618, 'pt', 'name', 'Centro Hospitalar de TrƔs os Montes e Alto Douro'),
(19516, 16619, 'no_lang_code', 'name', 'Biomer (Germany)'),
(19517, 16620, 'no_lang_code', 'name', 'Dragonfly Sales and Marketing Consulting (United States)'),
(19518, 16621, 'en', 'name', 'Catawba County Schools'),
(19519, 16622, 'fr', 'name', 'AlgoƩ'),
(19520, 16623, 'en', 'name', 'Sauk County Historical Society'),
(19521, 16624, 'no_lang_code', 'name', 'Euroscreen (Belgium)'),
(19522, 16625, 'no_lang_code', 'name', 'Tentnology (Canada)'),
(19523, 16626, 'en', 'name', 'Penrose-St. Francis Health Services'),
(19524, 16627, 'no_lang_code', 'name', 'Ramboll (United Kingdom)'),
(19525, 16628, 'no_lang_code', 'name', 'Bio-Technical Resources (United States)'),
(19526, 16629, 'en', 'name', 'Missouri Department of Social Services'),
(19527, 16630, 'no_lang_code', 'name', 'Econolyst (United Kingdom)'),
(19528, 16631, 'no_lang_code', 'name', 'Nuance Communications (Belgium)'),
(19529, 16632, 'no_lang_code', 'name', 'Genfit (France)'),
(19530, 16633, 'no_lang_code', 'name', 'Illinois Ventures (United States)'),
(19531, 16634, 'no_lang_code', 'name', 'SynDevRx (United States)'),
(19532, 16635, 'no_lang_code', 'name', 'Bavarian Nordic (Germany)'),
(19533, 16636, 'no_lang_code', 'name', 'Newable (United Kingdom)'),
(19534, 16637, 'no_lang_code', 'name', 'goHDR (United Kingdom)'),
(19535, 16638, 'de', 'name', 'Angewandte System Technik'),
(19536, 16638, 'no_lang_code', 'name', 'A.S.T. Group (Germany)'),
(19537, 16639, 'no_lang_code', 'name', 'John Wiley & Sons (United Kingdom)'),
(19538, 16640, 'de', 'name', 'Fachverband Elektronik Design'),
(19539, 16641, 'no_lang_code', 'name', 'Buckland & Taylor (Canada)'),
(19540, 16642, 'no_lang_code', 'name', 'British American Tobacco (United Kingdom)'),
(19541, 16643, 'no_lang_code', 'name', 'European Thermodynamics (United Kingdom)'),
(19542, 16644, 'en', 'name', 'Missouri Southern State University'),
(19543, 16645, 'no_lang_code', 'name', 'Chronos Technology (United Kingdom)'),
(19544, 16646, 'no_lang_code', 'name', 'Gordon Murray Design (United Kingdom)'),
(19545, 16647, 'no_lang_code', 'name', 'Avantes (Netherlands)'),
(19546, 16648, 'no_lang_code', 'name', 'Infobyte (Italy)'),
(19547, 16649, 'en', 'name', 'Earthquake Planning and Protection Organization'),
(19548, 16650, 'en', 'name', 'Oak Park Public Library'),
(19549, 16651, 'en', 'name', 'Holy Family University'),
(19550, 16652, 'en', 'name', 'Information Management Policies Assessment for City Transport Systems'),
(19551, 16653, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ للتراث'),
(19552, 16653, 'en', 'name', 'National Heritage Institute'),
(19553, 16653, 'fr', 'name', 'L''Institut national du patrimoine'),
(19554, 16654, 'no_lang_code', 'name', 'Geowatt (Switzerland)'),
(19555, 16655, 'en', 'name', 'Prof. Assen Zlatarov University'),
(19556, 16656, 'no_lang_code', 'name', 'Excellims (United States)'),
(19557, 16657, 'no_lang_code', 'name', 'PoƧo Bravo Marbles (Portugal)'),
(19558, 16658, 'en', 'name', 'Institute of Radio Astronomy'),
(19559, 16658, 'uk', 'name', 'РаГіоастрономічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(19560, 16659, 'en', 'name', 'Almaty University of Power Engineering and Telecommunications'),
(19561, 16659, 'kk', 'name', 'Алматы ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠ° және байланыс ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(19562, 16659, 'ru', 'name', 'Алматинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠø Šø ŃŠ²ŃŠ·Šø'),
(19563, 16660, 'no_lang_code', 'name', 'James Agee Film Project'),
(19564, 16661, 'no_lang_code', 'name', 'Medtronic (United Kingdom)'),
(19565, 16662, 'en', 'name', 'Black Metropolis Research Consortium'),
(19566, 16663, 'en', 'name', 'Gould Farm'),
(19567, 16664, 'no_lang_code', 'name', 'Stemnion (United States)'),
(19568, 16665, 'no_lang_code', 'name', 'ImaginAb (United States)'),
(19569, 16666, 'en', 'name', 'American Research Center in Egypt'),
(19570, 16667, 'en', 'name', 'Valley City State University'),
(19571, 16668, 'en', 'name', 'Racine Heritage Museum'),
(19572, 16669, 'no_lang_code', 'name', 'Mifne Center'),
(19573, 16670, 'en', 'name', 'Ohio State University Hospital'),
(19574, 16671, 'no_lang_code', 'name', 'Maritime Wirtschafts- und Schiffbauforschung (Germany)'),
(19575, 16672, 'no_lang_code', 'name', 'Iris Vernici (Italy)'),
(19576, 16673, 'en', 'name', 'Wall Las Memorias Project'),
(19577, 16674, 'en', 'name', 'Monroe County Public Library'),
(19578, 16675, 'no_lang_code', 'name', 'Velocity BioGroup (United States)'),
(19579, 16676, 'pt', 'name', 'Direcção Regional de Cultura do Alentejo'),
(19580, 16677, 'no_lang_code', 'name', 'Exide Technologies (United Kingdom)'),
(19581, 16678, 'en', 'name', 'Austin Health & Human Services Department'),
(19582, 16679, 'no_lang_code', 'name', 'LightMachinery (Canada)'),
(19583, 16680, 'no_lang_code', 'name', 'Limaging (United States)'),
(19584, 16681, 'no_lang_code', 'name', 'Autoflug (Germany)'),
(19585, 16682, 'en', 'name', 'European Solar Thermal Electricity Association'),
(19586, 16683, 'en', 'name', 'Victory Walk'),
(19587, 16684, 'en', 'name', 'Brookwood Baptist Health'),
(19588, 16685, 'en', 'name', 'Deafinitely Theatre'),
(19589, 16686, 'en', 'name', 'Association of Directors of Environment, Economy, Planning and Transport'),
(19590, 16687, 'no_lang_code', 'name', 'Menlo Systems (Germany)'),
(19591, 16688, 'de', 'name', 'Leibniz-Institut Hessische Stiftung Friedens- und Konfliktforschung'),
(19592, 16688, 'en', 'name', 'Peace Research Institute Frankfurt'),
(19593, 16689, 'en', 'name', 'Bonanza High School'),
(19594, 16690, 'no_lang_code', 'name', 'BioSciCon (United States)'),
(19595, 16691, 'en', 'name', 'ADS Group'),
(19596, 16692, 'no_lang_code', 'name', 'Airwave Solutions (United Kingdom)'),
(19597, 16693, 'no_lang_code', 'name', 'ConStat'),
(19598, 16694, 'no_lang_code', 'name', 'Aecom (Czechia)'),
(19599, 16695, 'no_lang_code', 'name', 'CalGavin (United Kingdom)'),
(19600, 16696, 'no_lang_code', 'name', 'Consultants for Environmental System Technologies'),
(19601, 16697, 'no_lang_code', 'name', 'Ceps (Czechia)'),
(19602, 16698, 'no_lang_code', 'name', 'Dinex (Finland)'),
(19603, 16699, 'no_lang_code', 'name', 'Meggitt (Switzerland)'),
(19604, 16700, 'en', 'name', 'Ministry of Education and Science'),
(19605, 16700, 'sq', 'name', 'Ministria e Arsimit dhe Shkencƫs'),
(19606, 16701, 'no_lang_code', 'name', 'ARServices (United States)'),
(19607, 16702, 'en', 'name', 'Dupage County Health Department'),
(19608, 16703, 'no_lang_code', 'name', 'Institute of Forest Ecosystem Research'),
(19609, 16704, 'no_lang_code', 'name', 'Credo Reference (United States)'),
(19610, 16705, 'en', 'name', 'Center for the promotion of science'),
(19611, 16705, 'sr', 'name', 'Centar za Promociju Nauke'),
(19612, 16706, 'en', 'name', 'MVV Energy'),
(19613, 16706, 'no_lang_code', 'name', 'MVV Energie (Germany)'),
(19614, 16707, 'no_lang_code', 'name', 'Pallium India'),
(19615, 16708, 'en', 'name', 'National Center for Manufacturing Sciences'),
(19616, 16709, 'no_lang_code', 'name', 'LiqTech (Denmark)'),
(19617, 16710, 'no_lang_code', 'name', 'Fent Innovative Software Solutions (Spain)'),
(19618, 16711, 'no_lang_code', 'name', 'Mechatronic Systemtechnik (Austria)'),
(19619, 16712, 'no_lang_code', 'name', 'Biomolecular Research Genomics (Italy)'),
(19620, 16713, 'en', 'name', 'Canadian Women''s Health Network'),
(19621, 16713, 'fr', 'name', 'RƩseau Canadien pour la SantƩ des Femmes'),
(19622, 16714, 'en', 'name', 'Appleton Public Library'),
(19623, 16715, 'de', 'name', 'Hochschule der Medien'),
(19624, 16715, 'en', 'name', 'Stuttgart Media University'),
(19625, 16716, 'no_lang_code', 'name', 'ITLink'),
(19626, 16717, 'en', 'name', 'Ministry of Health of the Republic of Kazakhstan'),
(19627, 16717, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ Š”ŠµŠ½ŃŠ°ŃƒŠ»Ń‹Ņ› ŃŠ°Ņ›Ń‚Š°Ńƒ министрлігі'),
(19628, 16718, 'en', 'name', 'Northcentral Technical College'),
(19629, 16719, 'en', 'name', 'Digital Europe'),
(19630, 16720, 'en', 'name', 'Sunlight Nutrition and Health Research Center'),
(19631, 16721, 'en', 'name', 'Foodbank'),
(19632, 16722, 'en', 'name', 'Save Ourselves Breast Cancer Organization'),
(19633, 16723, 'no_lang_code', 'name', 'Atlantis Consulting (Greece)'),
(19634, 16724, 'no_lang_code', 'name', 'Helmut Christmann (Germany)'),
(19635, 16725, 'en', 'name', 'Humber Bridge Board'),
(19636, 16726, 'no_lang_code', 'name', 'Alpiq (United Kingdom)'),
(19637, 16727, 'en', 'name', 'Glamorgan-Gwent Archaeological Trust'),
(19638, 16728, 'en', 'name', 'House Next Door'),
(19639, 16729, 'no_lang_code', 'name', 'Somelos (Portugal)'),
(19640, 16730, 'no_lang_code', 'name', 'GlobalSign (Belgium)'),
(19641, 16731, 'en', 'name', 'Quatela Center for Plastic Surgery'),
(19642, 16732, 'no_lang_code', 'name', 'Cup 2000 (Italy)'),
(19643, 16733, 'en', 'name', 'Lakeland Community College'),
(19644, 16734, 'en', 'name', 'Glen Ellyn Public Library'),
(19645, 16735, 'no_lang_code', 'name', 'AcrossLimits'),
(19646, 16736, 'no_lang_code', 'name', 'Measurement Specialties (Germany)'),
(19647, 16737, 'no_lang_code', 'name', 'IT+Robotics (Italy)'),
(19648, 16738, 'no_lang_code', 'name', 'Eidon (Italy)'),
(19649, 16739, 'no_lang_code', 'name', 'IDS Scheer (Czechia)'),
(19650, 16740, 'no_lang_code', 'name', 'EaglePicher (Canada)'),
(19651, 16741, 'en', 'name', 'Kankakee Community College'),
(19652, 16742, 'no_lang_code', 'name', 'Federal Mogul (France)'),
(19653, 16743, 'no_lang_code', 'name', 'Marshalls (United Kingdom)'),
(19654, 16744, 'en', 'name', 'Brod Group'),
(19655, 16745, 'no_lang_code', 'name', 'Import.io (United States)'),
(19656, 16746, 'en', 'name', 'Reference Center on Environmental Information'),
(19657, 16746, 'pt', 'name', 'Centro de Referência em Informação Ambiental'),
(19658, 16747, 'no_lang_code', 'name', 'Mace (United Kingdom)'),
(19659, 16748, 'en', 'name', 'Spiral Foundation'),
(19660, 16749, 'no_lang_code', 'name', 'Aviv Biomedical (United States)'),
(19661, 16750, 'en', 'name', 'Women’s Fund Asia'),
(19662, 16751, 'en', 'name', 'Folger Shakespeare Library'),
(19663, 16752, 'no_lang_code', 'name', 'JXT Applications (United States)'),
(19664, 16753, 'no_lang_code', 'name', 'Bioptix (United States)'),
(19665, 16754, 'no_lang_code', 'name', 'GECO (Portugal)'),
(19666, 16755, 'en', 'name', 'Florida Alcohol and Drug Abuse Association'),
(19667, 16756, 'no_lang_code', 'name', 'Mowi (Norway)'),
(19668, 16757, 'no_lang_code', 'name', 'Blutip (Canada)'),
(19669, 16758, 'nl', 'name', 'DCMR Milieudienst Rijnmond'),
(19670, 16759, 'en', 'name', 'United Health Services'),
(19671, 16760, 'en', 'name', 'Baltic Environmental Forum'),
(19672, 16760, 'lv', 'name', 'Baltijas Vides Forums'),
(19673, 16761, 'no_lang_code', 'name', 'Imathia Construcción (Spain)'),
(19674, 16762, 'no_lang_code', 'name', 'Rio Mobility (United States)'),
(19675, 16763, 'en', 'name', 'Centre for Studies in Social Sciences Calcutta'),
(19676, 16764, 'fr', 'name', 'Terre des Sciences'),
(19677, 16765, 'en', 'name', 'Illinois Mathematics and Science Academy'),
(19678, 16766, 'no_lang_code', 'name', 'Bremerhaven Dock (Germany)'),
(19679, 16767, 'en', 'name', 'European Ground Penetrating Radar Association'),
(19680, 16768, 'en', 'name', 'Trinity International University'),
(19681, 16769, 'no_lang_code', 'name', 'Certus Technology (United Kingdom)'),
(19682, 16770, 'no_lang_code', 'name', 'Ingram Content Group (United States)'),
(19683, 16771, 'en', 'name', 'European Center for Nanostructured Polymers'),
(19684, 16772, 'no_lang_code', 'name', 'TriStar Wellness Solutions (United States)'),
(19685, 16773, 'en', 'name', 'Baltic Innovation Agency'),
(19686, 16774, 'en', 'name', 'Washington Poison Center'),
(19687, 16775, 'no_lang_code', 'name', 'Aereco (France)'),
(19688, 16776, 'en', 'name', 'United Way of Greater Nashville'),
(19689, 16777, 'fr', 'name', 'Centre d''Ɖtudes et de Recherches Ɖconomiques sur l''Ɖnergie'),
(19690, 16778, 'en', 'name', 'Northwestern Michigan College'),
(19691, 16779, 'no_lang_code', 'name', 'Element Materials Technology (Sweden)'),
(19692, 16780, 'en', 'name', 'European Science Events Association'),
(19693, 16781, 'no_lang_code', 'name', 'Hydrogen Solar (United Kingdom)'),
(19694, 16782, 'de', 'name', 'Gesellschaft für Bioanalytik Münster'),
(19695, 16783, 'en', 'name', 'Experimental Aircraft Association'),
(19696, 16784, 'en', 'name', 'Defense Intelligence Agency'),
(19697, 16784, 'es', 'name', 'Agencia de Inteligencia de la Defensa'),
(19698, 16785, 'no_lang_code', 'name', 'Altus Technologies (United States)'),
(19699, 16786, 'en', 'name', 'Muscular Dystrophy Patients Welfare Association'),
(19700, 16787, 'en', 'name', 'Spoon River College'),
(19701, 16788, 'en', 'name', 'Glasgow City Council'),
(19702, 16789, 'en', 'name', 'Triumph Foundation'),
(19703, 16790, 'no_lang_code', 'name', 'Intempora (France)'),
(19704, 16791, 'en', 'name', 'Fife Council'),
(19705, 16792, 'en', 'name', 'Sunset Hill Educational Institute'),
(19706, 16793, 'no_lang_code', 'name', 'GeoMobile (Germany)'),
(19707, 16794, 'no_lang_code', 'name', 'Hamilton Thorne (United States)'),
(19708, 16795, 'en', 'name', 'Kids Cancer Center'),
(19709, 16796, 'en', 'name', 'General Confederation of Greek Workers'),
(19710, 16797, 'en', 'name', 'Indian Health Board'),
(19711, 16798, 'de', 'name', 'Verband kommunaler Unternehmen'),
(19712, 16799, 'en', 'name', 'Public Schools of Robeson County'),
(19713, 16800, 'no_lang_code', 'name', 'Hueck Folien (Austria)'),
(19714, 16801, 'no_lang_code', 'name', 'GSI Group (United Kingdom)'),
(19715, 16802, 'en', 'name', 'International Tin Research Institute'),
(19716, 16803, 'en', 'name', 'Holyoke Community College'),
(19717, 16804, 'en', 'name', 'Shad'),
(19718, 16805, 'en', 'name', 'Yonkers Partners in Education'),
(19719, 16806, 'no_lang_code', 'name', 'Thinkpath Engineering Services (Canada)'),
(19720, 16807, 'en', 'name', 'Cape Assist'),
(19721, 16808, 'en', 'name', 'Wheelchair Sports Federation'),
(19722, 16809, 'no_lang_code', 'name', 'AnthroTronix (United States)'),
(19723, 16810, 'en', 'name', 'Blaufuss Multimedia'),
(19724, 16811, 'no_lang_code', 'name', 'Corvinno Technology Transfer'),
(19725, 16812, 'en', 'name', 'Centralia College'),
(19726, 16813, 'en', 'name', 'Evanston Public Library'),
(19727, 16814, 'de', 'name', 'Institut für ZukunftsEnergie- und Stoffstromsysteme'),
(19728, 16815, 'en', 'name', 'Angeles Clinic Foundation'),
(19729, 16816, 'en', 'name', 'Public Health Dayton & Montgomery County'),
(19730, 16817, 'no_lang_code', 'name', 'Invisible Dust (United Kingdom)'),
(19731, 16818, 'en', 'name', 'Ministry of Education Science and Technology'),
(19732, 16819, 'en', 'name', 'English Courtyards'),
(19733, 16820, 'no_lang_code', 'name', 'KraussMaffei (Germany)'),
(19734, 16821, 'en', 'name', 'Impact Research and Development Organization'),
(19735, 16822, 'no_lang_code', 'name', 'Archeometra (Italy)'),
(19736, 16823, 'en', 'name', 'Minerva Educational Foundation'),
(19737, 16824, 'en', 'name', 'The Memorial Foundation'),
(19738, 16825, 'no_lang_code', 'name', 'iProov (United Kingdom)'),
(19739, 16826, 'no_lang_code', 'name', 'Acutech (Greece)'),
(19740, 16827, 'en', 'name', 'Department of Consumer Protection'),
(19741, 16828, 'no_lang_code', 'name', 'Plasma (Macedonia)'),
(19742, 16829, 'no_lang_code', 'name', 'Domca (Spain)'),
(19743, 16830, 'no_lang_code', 'name', 'Illumina (United Kingdom)'),
(19744, 16831, 'en', 'name', 'Vermont Program for Quality in Health Care'),
(19745, 16832, 'en', 'name', 'Warren County Schools'),
(19746, 16833, 'no_lang_code', 'name', 'Centre for Concepts in Mechatronics'),
(19747, 16834, 'no_lang_code', 'name', 'InnerOptic Technology (United States)'),
(19748, 16835, 'no_lang_code', 'name', 'Rubicon Biotechnology (United States)'),
(19749, 16836, 'en', 'name', 'California Partnership to End Domestic Violence'),
(19750, 16836, 'es', 'name', 'Asociación para Poner Fin a la Violencia Doméstica de California'),
(19751, 16837, 'en', 'name', 'Seward County Community College'),
(19752, 16838, 'no_lang_code', 'name', 'Bere (United Kingdom)'),
(19753, 16839, 'en', 'name', 'Willamette Valley Cancer Foundation'),
(19754, 16840, 'en', 'name', 'Institute of Physical Energetics'),
(19755, 16841, 'en', 'name', 'AIDS Prevention Initiative in Nigeria'),
(19756, 16842, 'en', 'name', 'Southwest Georgia Health Care'),
(19757, 16843, 'no_lang_code', 'name', 'Hydrocontrol (Italy)'),
(19758, 16844, 'no_lang_code', 'name', 'Cell Medica (United Kingdom)'),
(19759, 16845, 'fr', 'name', 'FƩdƩration de la Plasturgie'),
(19760, 16846, 'no_lang_code', 'name', 'Broadway Malyan (United Kingdom)'),
(19761, 16847, 'no_lang_code', 'name', 'Esciencia (Spain)'),
(19762, 16848, 'no_lang_code', 'name', 'Insiel (Italy)'),
(19763, 16849, 'de', 'name', 'Arbeitsgemeinschaft Sozialwissenschaftlicher Institute'),
(19764, 16850, 'en', 'name', 'Blue Mountain Community College'),
(19765, 16851, 'no_lang_code', 'name', 'Isomerase Therapeutics (United Kingdom)'),
(19766, 16852, 'no_lang_code', 'name', 'Jablite (United Kingdom)'),
(19767, 16853, 'en', 'name', 'Ontario Council of University Libraries'),
(19768, 16854, 'no_lang_code', 'name', 'Axerion Therapeutics (United States)'),
(19769, 16855, 'no_lang_code', 'name', 'Interpublic Group (United States)'),
(19770, 16856, 'en', 'name', 'University of Maryland Upper Chesapeake Health'),
(19771, 16857, 'en', 'name', 'LOBA - Customer Experience Design'),
(19772, 16858, 'no_lang_code', 'name', 'Maxxam (Canada)'),
(19773, 16859, 'en', 'name', 'University Muslim Medical Association Community Clinic'),
(19774, 16860, 'en', 'name', 'Illinois General Assembly'),
(19775, 16861, 'en', 'name', 'Ewing Marion Kauffman Foundation'),
(19776, 16862, 'en', 'name', 'Hayner Public Library District'),
(19777, 16863, 'nl', 'name', 'Gemeente Helmond'),
(19778, 16864, 'no_lang_code', 'name', 'Geltz Umwelt-Technologie (Germany)'),
(19779, 16865, 'en', 'name', 'Association of European Public Postal Operators'),
(19780, 16865, 'fr', 'name', 'Association des Operateurs Postaux Publics Europeens'),
(19781, 16866, 'nl', 'name', 'Crisisplan'),
(19782, 16867, 'no_lang_code', 'name', 'Dow Chemical (United Kingdom)'),
(19783, 16868, 'en', 'name', 'Fundacion Latinoamericana De Accion Social'),
(19784, 16869, 'el', 'name', '΄πουργείο ĪŸĪ¹ĪŗĪæĪ½ĪæĪ¼Ī¹ĪŗĻŽĪ½ ΕλλάΓας'),
(19785, 16869, 'en', 'name', 'Ministry of Finance'),
(19786, 16870, 'no_lang_code', 'name', 'CGI (United States)'),
(19787, 16871, 'en', 'name', 'Standing Committee of European Doctors'),
(19788, 16872, 'en', 'name', 'Chamber of Commerce and Industry of Romania'),
(19789, 16873, 'no_lang_code', 'name', 'Anova IT Consulting (Spain)'),
(19790, 16874, 'no_lang_code', 'name', 'McBurney (United Kingdom)'),
(19791, 16875, 'en', 'name', 'Raising Voices'),
(19792, 16876, 'en', 'name', 'International Center for Minority Studies and Intercultural Relations'),
(19793, 16877, 'no_lang_code', 'name', 'Fuchs (Germany)'),
(19794, 16878, 'en', 'name', 'Rock and Roll Hall of Fame and Museum'),
(19795, 16879, 'en', 'name', 'National Statistical Institute of Portugal'),
(19796, 16879, 'pt', 'name', 'Instituto Nacional de EstatĆ­stica'),
(19797, 16880, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по електроника'),
(19798, 16880, 'en', 'name', 'Institute of Electronics'),
(19799, 16881, 'no_lang_code', 'name', 'Mesoblast (United States)'),
(19800, 16882, 'no_lang_code', 'name', 'Front Edge Technology (United States)'),
(19801, 16883, 'en', 'name', 'Wind River Cancer Wellness Retreats and Programs'),
(19802, 16884, 'no_lang_code', 'name', 'Equipment Simulations (United States)'),
(19803, 16885, 'en', 'name', 'Health Level Seven International'),
(19804, 16886, 'en', 'name', 'Radiology Associates'),
(19805, 16887, 'no_lang_code', 'name', 'Alcyomics (United Kingdom)'),
(19806, 16888, 'en', 'name', 'Center for Social and Economic Research'),
(19807, 16889, 'no_lang_code', 'name', 'Jotne (Norway)'),
(19808, 16890, 'en', 'name', 'Eden Project'),
(19809, 16891, 'en', 'name', 'Swami Vivekanand College of Pharmacy'),
(19810, 16892, 'en', 'name', 'Circle Park'),
(19811, 16893, 'no_lang_code', 'name', 'Brenk Systemplanung (Germany)'),
(19812, 16894, 'en', 'name', 'Sierra Streams Institute'),
(19813, 16895, 'en', 'name', 'EuropaBio'),
(19814, 16896, 'no_lang_code', 'name', 'Appen (United States)'),
(19815, 16897, 'en', 'name', 'Baltic Centre for Contemporary Art'),
(19816, 16898, 'en', 'name', 'Cheyenne River Sioux Tribe Council'),
(19817, 16899, 'en', 'name', 'Nurse & Hospice of Fairfield County'),
(19818, 16900, 'en', 'name', 'URSA Institute'),
(19819, 16901, 'en', 'name', 'Norwegian Association of Local and Regional Authorities'),
(19820, 16901, 'no', 'name', 'Kommunenes Sentralforbund'),
(19821, 16902, 'en', 'name', 'Miami-Dade County Public Schools'),
(19822, 16903, 'it', 'name', 'Associazione Festival della Scienz'),
(19823, 16904, 'no_lang_code', 'name', 'ICON Technology & Process Consulting (United Kingdom)'),
(19824, 16905, 'en', 'name', 'National Academies Press'),
(19825, 16906, 'no_lang_code', 'name', 'Elvior (Estonia)'),
(19826, 16907, 'no_lang_code', 'name', 'Construcciones y Auxiliar de Ferrocarriles (Spain)'),
(19827, 16908, 'no_lang_code', 'name', 'Indutherm ErwƤrmungsanlagen (Germany)'),
(19828, 16909, 'en', 'name', 'Leather Archives and Museum'),
(19829, 16910, 'en', 'name', 'Circus World Museum'),
(19830, 16911, 'en', 'name', 'Tippecanoe County Public Library'),
(19831, 16912, 'no_lang_code', 'name', 'Bayou Biolabs'),
(19832, 16913, 'no_lang_code', 'name', 'Genewave (France)'),
(19833, 16914, 'en', 'name', 'Las Cumbres Observatory Global Telescope Network'),
(19834, 16915, 'en', 'name', 'Danish Geodata Agency'),
(19835, 16916, 'no_lang_code', 'name', 'ControlVet (Portugal)'),
(19836, 16917, 'no_lang_code', 'name', 'Biaffin (Germany)'),
(19837, 16918, 'en', 'name', 'European Institute for Participatory Media'),
(19838, 16919, 'no_lang_code', 'name', 'TechnipFMC (France)'),
(19839, 16920, 'en', 'name', 'University of St. Augustine for Health Sciences'),
(19840, 16921, 'no_lang_code', 'name', 'MiTeGen (United States)'),
(19841, 16922, 'en', 'name', 'European Centre for Soft Computing'),
(19842, 16923, 'no_lang_code', 'name', 'DZP Technologies (United Kingdom)'),
(19843, 16924, 'no_lang_code', 'name', 'Dekra (Germany)'),
(19844, 16925, 'no_lang_code', 'name', 'Hunosa (Spain)'),
(19845, 16926, 'pt', 'name', 'IrRADIARE'),
(19846, 16927, 'no_lang_code', 'name', 'Babraham Bioscience Technologies (United Kingdom)'),
(19847, 16928, 'no_lang_code', 'name', 'M3 Systems (France)'),
(19848, 16929, 'en', 'name', 'Susan G Komen Greater Atlanta'),
(19849, 16930, 'no_lang_code', 'name', 'ViOptix (United States)'),
(19850, 16931, 'en', 'name', 'Clackamas County Children''s Commission Head Start'),
(19851, 16932, 'no_lang_code', 'name', 'BioTronics (United States)'),
(19852, 16933, 'no_lang_code', 'name', 'Threshold Pharmaceuticals (United States)'),
(19853, 16934, 'en', 'name', 'Translational Research in Oncology'),
(19854, 16935, 'en', 'name', 'Sharp HealthCare Foundation'),
(19855, 16936, 'no_lang_code', 'name', 'AT&T (United States)'),
(19856, 16937, 'no_lang_code', 'name', 'Maxtech (Canada)'),
(19857, 16938, 'no_lang_code', 'name', 'Eikos (United States)'),
(19858, 16939, 'no_lang_code', 'name', 'BodiMojo'),
(19859, 16940, 'en', 'name', 'SeriousFun Children''s Network'),
(19860, 16941, 'en', 'name', 'CancerConnects'),
(19861, 16942, 'en', 'name', 'Indiana Historical Society'),
(19862, 16943, 'no_lang_code', 'name', 'Shook, Hardy & Bacon (United States)'),
(19863, 16944, 'no_lang_code', 'name', 'Interfusion Services (Cyprus)'),
(19864, 16945, 'no_lang_code', 'name', 'Synergenz BioScience (United States)'),
(19865, 16946, 'en', 'name', 'Institute of Precision Mechanics'),
(19866, 16947, 'en', 'name', 'Diocese of Brooklyn'),
(19867, 16948, 'en', 'name', 'Academic and Research Network of Slovenia'),
(19868, 16949, 'no_lang_code', 'name', 'Ellemedia Technologies (Greece)'),
(19869, 16950, 'no_lang_code', 'name', 'Innovation Energie DƩveloppement (France)'),
(19870, 16951, 'no_lang_code', 'name', 'Fomterv (Hungary)'),
(19871, 16952, 'en', 'name', 'Wild for Life'),
(19872, 16953, 'no_lang_code', 'name', 'Elbit Systems (Israel)');
INSERT INTO `ror_settings` VALUES
(19873, 16954, 'no_lang_code', 'name', 'Lesswire (Germany)'),
(19874, 16955, 'en', 'name', 'Delaware Academy of Medicine'),
(19875, 16956, 'no_lang_code', 'name', 'Van Putten-Gas Energy Observatory (Netherlands)'),
(19876, 16957, 'en', 'name', 'Wisconsin Veterans Museum'),
(19877, 16958, 'no_lang_code', 'name', 'Fiday Gestion (France)'),
(19878, 16959, 'en', 'name', 'Shaker Heights Public Library'),
(19879, 16960, 'fr', 'name', 'Groupe de Recherche en Agriculture Biologique'),
(19880, 16961, 'no_lang_code', 'name', 'Herry Consult (Austria)'),
(19881, 16962, 'en', 'name', 'State Building & Construction Trades Council of California'),
(19882, 16963, 'en', 'name', 'Young Survival Coalition'),
(19883, 16964, 'no_lang_code', 'name', 'Savara Pharmaceuticals (United States)'),
(19884, 16965, 'en', 'name', 'Trans Tasman Radiation Oncology Group'),
(19885, 16966, 'en', 'name', 'Upper Arlington Public Library'),
(19886, 16967, 'no_lang_code', 'name', 'Kirkstall (United Kingdom)'),
(19887, 16968, 'en', 'name', 'Rockingham County Schools'),
(19888, 16969, 'en', 'name', 'Swedish Research Council for Health Working Life and Welfare'),
(19889, 16970, 'no_lang_code', 'name', 'Smartrac (Germany)'),
(19890, 16971, 'no_lang_code', 'name', 'Bettergy (United States)'),
(19891, 16972, 'en', 'name', 'Human Services Research Institute'),
(19892, 16973, 'no_lang_code', 'name', 'Humacyte (United States)'),
(19893, 16974, 'en', 'name', 'Water Research Institute'),
(19894, 16974, 'it', 'name', 'Istituto di Ricerca sulle Acque'),
(19895, 16975, 'en', 'name', 'Ohio Attorney General''s Office'),
(19896, 16976, 'en', 'name', 'US Human Rights Network'),
(19897, 16977, 'fr', 'name', 'Centre de Recherche en Nutrition Humaine RhƓne-Alpes'),
(19898, 16978, 'en', 'name', 'Sinha Institute of Medical Science & Technology'),
(19899, 16979, 'en', 'name', 'Swope Art Museum'),
(19900, 16980, 'fr', 'name', 'Compagnie d''amƩnagement du Bas-RhƓne et du Languedoc'),
(19901, 16980, 'no_lang_code', 'name', 'Groupe BRL (France)'),
(19902, 16981, 'en', 'name', 'Estonian-Swedish Mental Health and Suicidology Institute'),
(19903, 16981, 'et', 'name', 'Eesti-Rootsi Vaimse Tervise ja Suitsidoloogia Instituut'),
(19904, 16982, 'no_lang_code', 'name', 'Koppert (Netherlands)'),
(19905, 16983, 'en', 'name', 'European Society for Therapeutic Radiology and Oncology'),
(19906, 16984, 'no_lang_code', 'name', 'Inmatech (United States)'),
(19907, 16985, 'en', 'name', 'Centre For Development Studies'),
(19908, 16986, 'no_lang_code', 'name', 'Kaleido Technology (Denmark)'),
(19909, 16987, 'en', 'name', 'Decatur Public Library'),
(19910, 16988, 'no_lang_code', 'name', 'Centronic (United Kingdom)'),
(19911, 16989, 'en', 'name', 'Wyoming Services for Independent Living'),
(19912, 16990, 'no_lang_code', 'name', 'Abcam (United States)'),
(19913, 16991, 'en', 'name', 'Monroe County Library System'),
(19914, 16992, 'de', 'name', 'Hochschule Trier'),
(19915, 16992, 'en', 'name', 'Trier University of Applied Sciences'),
(19916, 16993, 'no_lang_code', 'name', '5M (Czechia)'),
(19917, 16994, 'en', 'name', 'Institute for Higher Education Policy'),
(19918, 16995, 'no_lang_code', 'name', 'Beckers (United Kingdom)'),
(19919, 16996, 'en', 'name', 'Roc Institute for Arts and Sciences'),
(19920, 16997, 'no_lang_code', 'name', 'Gƶkser Makina (Turkey)'),
(19921, 16998, 'no_lang_code', 'name', 'Guilford Press (United States)'),
(19922, 16999, 'no_lang_code', 'name', 'Bristol Industrial and Research Associates (United Kingdom)'),
(19923, 17000, 'sl', 'name', 'Agencija za Radioaktivne Odpadke'),
(19924, 17001, 'no_lang_code', 'name', 'Global Phasing (United Kingdom)'),
(19925, 17002, 'en', 'name', 'Cranbrook Institute of Science'),
(19926, 17003, 'en', 'name', 'Quincy Museum'),
(19927, 17004, 'no_lang_code', 'name', 'Big Horn Valve'),
(19928, 17005, 'fr', 'name', 'Conseil EuropƩen de l''Industrie des Peintures des Encres d''Imprimerie et des Couleurs d''Art'),
(19929, 17006, 'en', 'name', 'Swedish Family Medicine Residency - Cherry Hill'),
(19930, 17007, 'en', 'name', 'Renewable Energy Development Center'),
(19931, 17007, 'fr', 'name', 'Centre de DƩveloppement des Energies Renouvelables'),
(19932, 17008, 'en', 'name', 'Belgian Road Safety Institute'),
(19933, 17008, 'fr', 'name', 'Institut Belge pour la Sécurité Routière'),
(19934, 17008, 'nl', 'name', 'Belgisch Instituut Voor de Verkeersveiligheid'),
(19935, 17009, 'no_lang_code', 'name', 'AT&T (Netherlands)'),
(19936, 17010, 'en', 'name', 'Pediatric Oncology Support Team'),
(19937, 17011, 'en', 'name', 'Southwest Wheelchair Athletic Association'),
(19938, 17012, 'en', 'name', 'Rodman Public Library'),
(19939, 17013, 'no_lang_code', 'name', 'Limbs Alive (United Kingdom)'),
(19940, 17014, 'en', 'name', 'Pontifical College Josephinum'),
(19941, 17015, 'no_lang_code', 'name', 'Domologic (Germany)'),
(19942, 17016, 'no_lang_code', 'name', 'Betonsteinwerk Heide (Germany)'),
(19943, 17017, 'no_lang_code', 'name', 'Cartes Bancaires (France)'),
(19944, 17018, 'no_lang_code', 'name', 'Beacon Energy (United Kingdom)'),
(19945, 17019, 'en', 'name', 'Southbury Clinic'),
(19946, 17020, 'en', 'name', 'South Carolina Department of Corrections'),
(19947, 17021, 'it', 'name', 'Cineca'),
(19948, 17022, 'no_lang_code', 'name', 'Fomento de Construcciones y Contratas (Spain)'),
(19949, 17023, 'no_lang_code', 'name', 'AvidCare (United States)'),
(19950, 17024, 'no_lang_code', 'name', 'Aratome (United States)'),
(19951, 17025, 'no_lang_code', 'name', 'Aero Sekur (Italy)'),
(19952, 17026, 'en', 'name', 'Entertainment Industries Council'),
(19953, 17027, 'en', 'name', 'Martin Township Public Library'),
(19954, 17028, 'no_lang_code', 'name', 'Matres (Italy)'),
(19955, 17029, 'en', 'name', 'Grand Rapids Community College'),
(19956, 17030, 'no_lang_code', 'name', 'Crystallume (United States)'),
(19957, 17031, 'en', 'name', 'R.E. Kavetsky Institute of Experimental Pathology, Oncology and Radiobiology'),
(19958, 17031, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠµŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Ń— патології, онкології і раГіобіології ім. Š .Š„. ŠšŠ°Š²ŠµŃ†ŃŒŠŗŠ¾Š³Š¾'),
(19959, 17032, 'no_lang_code', 'name', 'Wigs 4 Kids'),
(19960, 17033, 'en', 'name', 'American Crystallographic Association'),
(19961, 17034, 'en', 'name', 'Ursuline College'),
(19962, 17035, 'no_lang_code', 'name', 'Acpharis'),
(19963, 17036, 'en', 'name', 'Elmira College'),
(19964, 17037, 'en', 'name', 'Health Affairs'),
(19965, 17038, 'en', 'name', 'Quest for Life Foundation'),
(19966, 17039, 'no_lang_code', 'name', 'International Automotive Desig (United Kingdom)'),
(19967, 17040, 'en', 'name', 'European Biomass Association'),
(19968, 17040, 'fr', 'name', 'Association EuropƩenne pour la Biomasse'),
(19969, 17041, 'no_lang_code', 'name', 'Discovery Laboratories (United States)'),
(19970, 17042, 'en', 'name', 'St. Joseph''s College New York'),
(19971, 17043, 'en', 'name', 'China National Center for Biotechnology Development'),
(19972, 17044, 'no_lang_code', 'name', 'Celulose Beira Industrial (Portugal)'),
(19973, 17045, 'no_lang_code', 'name', 'Esaote (Netherlands)'),
(19974, 17046, 'en', 'name', 'One Nucleus'),
(19975, 17047, 'no_lang_code', 'name', 'Contipro (Czechia)'),
(19976, 17048, 'es', 'name', 'Centro de Investigacion de las Telecomunicaciones'),
(19977, 17049, 'no_lang_code', 'name', 'ERBA Diagnostics (United States)'),
(19978, 17050, 'en', 'name', 'Butte County Department of Behavioral Health'),
(19979, 17051, 'no_lang_code', 'name', 'CycloLab (Hungary)'),
(19980, 17052, 'no_lang_code', 'name', 'Targeted Cell Therapies (United States)'),
(19981, 17053, 'no_lang_code', 'name', 'NJ International (United States)'),
(19982, 17054, 'en', 'name', 'Chicago History Museum'),
(19983, 17055, 'no_lang_code', 'name', 'Pulmatrix (United States)'),
(19984, 17056, 'no_lang_code', 'name', '3M (United Kingdom)'),
(19985, 17057, 'no_lang_code', 'name', 'Inter-Euro Technology'),
(19986, 17058, 'en', 'name', 'Glenview Public Library'),
(19987, 17059, 'en', 'name', 'Inter-American Development Bank'),
(19988, 17059, 'es', 'name', 'Banco Interamericano de Desarrollo'),
(19989, 17059, 'fr', 'name', 'Banque interamƩricaine de dƩveloppement'),
(19990, 17059, 'pt', 'name', 'Banco Interamericano de Desenvolvimento'),
(19991, 17060, 'en', 'name', 'Abastumani Astrophysical Observatory'),
(19992, 17060, 'ka', 'name', 'įƒįƒ‘įƒįƒ”įƒ—įƒ£įƒ›įƒœįƒ˜įƒ” įƒįƒ”įƒ¢įƒ įƒįƒ¤įƒ˜įƒ–įƒ˜įƒ™įƒ£įƒ įƒ˜ įƒįƒ‘įƒ”įƒ”įƒ įƒ•įƒįƒ¢įƒįƒ įƒ˜įƒ'),
(19993, 17061, 'en', 'name', 'Smith Center for Healing and the Arts'),
(19994, 17062, 'no_lang_code', 'name', 'Lockheed Martin (United Kingdom)'),
(19995, 17063, 'no_lang_code', 'name', 'IonEdge Corporation (United States)'),
(19996, 17064, 'no_lang_code', 'name', 'Associated Bonded Cables (United Kingdom)'),
(19997, 17065, 'en', 'name', 'Allies with Families'),
(19998, 17066, 'en', 'name', 'YouthWorks'),
(19999, 17067, 'no_lang_code', 'name', 'Alliant Energy (United States)'),
(20000, 17068, 'en', 'name', 'Lincoln Christian University'),
(20001, 17069, 'no_lang_code', 'name', 'Intertanko (Norway)'),
(20002, 17070, 'en', 'name', 'Regional Cancer Center'),
(20003, 17071, 'en', 'name', 'Institute for Analytical Instrumentation'),
(20004, 17071, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аналитического ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(20005, 17072, 'en', 'name', 'Institutul National Victor Babes, Victor Babes Institute'),
(20006, 17073, 'en', 'name', 'Peoria Public Library'),
(20007, 17074, 'en', 'name', 'West Central Georgia Cancer Coalition'),
(20008, 17075, 'no_lang_code', 'name', 'Blinq Network (Canada)'),
(20009, 17076, 'en', 'name', 'Side by Side'),
(20010, 17077, 'no_lang_code', 'name', 'BollorƩ (France)'),
(20011, 17078, 'en', 'name', 'Spinal Muscular Atrophy Foundation'),
(20012, 17079, 'it', 'name', 'INiziative Conciarie ASsociate'),
(20013, 17080, 'no_lang_code', 'name', 'Aethlon Medical (United States)'),
(20014, 17081, 'no_lang_code', 'name', 'Harman (Germany)'),
(20015, 17082, 'en', 'name', 'Machine Science'),
(20016, 17083, 'no_lang_code', 'name', 'Agrico (Netherlands)'),
(20017, 17084, 'en', 'name', 'Fairfax Neonatal Associates'),
(20018, 17085, 'en', 'name', 'International Society for Environmental Protection'),
(20019, 17086, 'en', 'name', 'Conference of Radiation Control Program Directors'),
(20020, 17087, 'en', 'name', 'West Allis Public Library'),
(20021, 17088, 'no_lang_code', 'name', 'Biolitec (Germany)'),
(20022, 17089, 'no_lang_code', 'name', 'Lallemand (United Kingdom)'),
(20023, 17090, 'en', 'name', 'Asian Technology Information Program'),
(20024, 17091, 'fr', 'name', 'La CitƩ MƩdicale'),
(20025, 17092, 'en', 'name', 'Institute of Contemporary Arts'),
(20026, 17093, 'no_lang_code', 'name', 'El Corte InglƩs (Portugal)'),
(20027, 17094, 'fr', 'name', 'BoƮte Ơ science'),
(20028, 17095, 'en', 'name', 'Cuyahoga County Public Library'),
(20029, 17096, 'en', 'name', 'Career Trek'),
(20030, 17097, 'de', 'name', 'Max-Planck-Institut für Sonnensystemforschung'),
(20031, 17097, 'en', 'name', 'Max Planck Institute for Solar System Research'),
(20032, 17098, 'en', 'name', 'American Bankers Association'),
(20033, 17099, 'en', 'name', 'Kanlo Consultants'),
(20034, 17100, 'en', 'name', 'Gus Foundation'),
(20035, 17101, 'en', 'name', 'Spring Arbor University'),
(20036, 17102, 'en', 'name', 'WISE & Healthy Aging'),
(20037, 17103, 'en', 'name', 'European Federation of Allergy and Airways Diseases Patients Associations'),
(20038, 17104, 'en', 'name', 'American Theological Library Association'),
(20039, 17105, 'no_lang_code', 'name', 'Active Spectrum (United States)'),
(20040, 17106, 'en', 'name', 'Tarrant County Challenge'),
(20041, 17107, 'en', 'name', 'Creative Scotland'),
(20042, 17108, 'en', 'name', 'White Earth Nation'),
(20043, 17109, 'no_lang_code', 'name', 'Collagen Medical (United States)'),
(20044, 17110, 'en', 'name', 'European Disability Forum'),
(20045, 17111, 'no_lang_code', 'name', 'TransCure BioServices (France)'),
(20046, 17112, 'en', 'name', 'Ukrainian Museum-Archives'),
(20047, 17113, 'no_lang_code', 'name', 'Ibstock Brick (United Kingdom)'),
(20048, 17114, 'no_lang_code', 'name', 'CompleGen (United States)'),
(20049, 17115, 'no_lang_code', 'name', 'Biopure (United States)'),
(20050, 17116, 'no_lang_code', 'name', 'Finsa (Italy)'),
(20051, 17117, 'en', 'name', 'Federal Trade Commission'),
(20052, 17118, 'no_lang_code', 'name', 'e2e Services (United Kingdom)'),
(20053, 17119, 'en', 'name', 'Massachusetts Maritime Academy'),
(20054, 17119, 'fr', 'name', 'AcadƩmie de marine du massachusetts'),
(20055, 17120, 'en', 'name', 'Concordia University Chicago'),
(20056, 17120, 'fr', 'name', 'UniversitƩ concordia de chicago'),
(20057, 17121, 'en', 'name', 'National Library of Portugal'),
(20058, 17121, 'pt', 'name', 'Biblioteca Nacional de Portugal'),
(20059, 17122, 'no_lang_code', 'name', 'Cen Group (United Kingdom)'),
(20060, 17123, 'no_lang_code', 'name', 'Hyperstone (Germany)'),
(20061, 17124, 'en', 'name', 'Sacramento Asian Pacific Chamber of Commerce'),
(20062, 17125, 'en', 'name', 'Clark State Community College'),
(20063, 17126, 'en', 'name', 'Southern Rural Black Women''s Initiative'),
(20064, 17127, 'en', 'name', 'Agder Research'),
(20065, 17127, 'no', 'name', 'Agderforskning'),
(20066, 17128, 'no_lang_code', 'name', 'Harmonia (United States)'),
(20067, 17129, 'en', 'name', 'Thrive Together'),
(20068, 17130, 'en', 'name', 'Irvine Unified School District'),
(20069, 17131, 'no_lang_code', 'name', 'Inpria (United States)'),
(20070, 17132, 'no_lang_code', 'name', '3H Biomedical (Sweden)'),
(20071, 17133, 'no_lang_code', 'name', 'Amantys (United Kingdom)'),
(20072, 17134, 'no_lang_code', 'name', 'Invoke Labs (Canada)'),
(20073, 17135, 'en', 'name', 'Academy of Management'),
(20074, 17136, 'fr', 'name', 'Agence RƩgionale d''Ʃvaluation Environnement et Climat'),
(20075, 17137, 'no_lang_code', 'name', 'ACIC (Belgium)'),
(20076, 17138, 'en', 'name', 'Health Wagon'),
(20077, 17139, 'en', 'name', 'National Archives of Hungary'),
(20078, 17140, 'en', 'name', 'Ralph Lauren Center for Cancer Care and Prevention'),
(20079, 17141, 'no_lang_code', 'name', 'Missouri Breaks Industries Research (United States)'),
(20080, 17142, 'no_lang_code', 'name', 'Poweo (France)'),
(20081, 17143, 'de', 'name', 'Fraunhofer-Institut für Solare Energiesysteme'),
(20082, 17143, 'en', 'name', 'Fraunhofer Institute for Solar Energy Systems'),
(20083, 17144, 'no_lang_code', 'name', 'Kampakas (Greece)'),
(20084, 17145, 'no_lang_code', 'name', 'Institut für Gebirgsmechanik (Germany)'),
(20085, 17146, 'no_lang_code', 'name', 'Kelvin Nanotechnology (United Kingdom)'),
(20086, 17147, 'en', 'name', 'Chrysalis House'),
(20087, 17148, 'no_lang_code', 'name', 'Agilent Technologies (Austria)'),
(20088, 17149, 'de', 'name', 'Konsortium Deutsche Meeresforschung'),
(20089, 17149, 'en', 'name', 'German Marine Research Consortium'),
(20090, 17150, 'no_lang_code', 'name', 'Earlens (United States)'),
(20091, 17151, 'no_lang_code', 'name', 'Anco Engineers (United States)'),
(20092, 17152, 'en', 'name', 'Second Harvest Food Bank'),
(20093, 17153, 'no_lang_code', 'name', 'Human Reliability (United Kingdom)'),
(20094, 17154, 'no_lang_code', 'name', 'JSTOR'),
(20095, 17155, 'en', 'name', 'Sutter Santa Rosa Regional Hospital'),
(20096, 17156, 'no_lang_code', 'name', 'Lyven (France)'),
(20097, 17157, 'en', 'name', 'Jefferson County Department of Health'),
(20098, 17158, 'en', 'name', 'Holmes Community College'),
(20099, 17159, 'en', 'name', 'Cleveland Public Library'),
(20100, 17160, 'en', 'name', 'Thousand Waves Foundation'),
(20101, 17161, 'en', 'name', 'VanderCook College of Music'),
(20102, 17162, 'no_lang_code', 'name', 'Ennovatis (Germany)'),
(20103, 17163, 'en', 'name', 'Department of Atomic Energy'),
(20104, 17163, 'hi', 'name', 'ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤Šą¤°ą„ą¤œą¤¾ विभाग'),
(20105, 17163, 'ml', 'name', 'ą“†ą“£ą“µąµ‹ąµ¼ą“œąµą“œ ą“µą“•ąµą“Ŗąµą“Ŗąµ'),
(20106, 17163, 'ta', 'name', 'அணு ą®šą®•ąÆą®¤ą®æą®¤ąÆą®¤ąÆą®±ąÆˆ'),
(20107, 17164, 'no_lang_code', 'name', 'Geodiscover (Portugal)'),
(20108, 17165, 'en', 'name', 'Pennsylvania Academic Library Consortium'),
(20109, 17166, 'en', 'name', 'American Entomological Institute'),
(20110, 17167, 'no_lang_code', 'name', 'Toshiba (France)'),
(20111, 17168, 'en', 'name', 'Creative Educational Centre'),
(20112, 17168, 'sr', 'name', 'Kreativno Edukativni Centar'),
(20113, 17169, 'en', 'name', 'Yaddo'),
(20114, 17170, 'no_lang_code', 'name', 'Cryogel (France)'),
(20115, 17171, 'no_lang_code', 'name', 'Viasat (Switzerland)'),
(20116, 17172, 'en', 'name', 'Institute of Scientific and Technical Information'),
(20117, 17172, 'fr', 'name', 'Institut de l''Information Scientifique et Technique'),
(20118, 17173, 'en', 'name', 'Missouri Valley College'),
(20119, 17174, 'en', 'name', 'Saga Women''s Junior College'),
(20120, 17174, 'ja', 'name', 'ä½č³€å„³å­ēŸ­ęœŸå¤§å­¦'),
(20121, 17175, 'no_lang_code', 'name', 'Andermatt Biocontrol (Switzerland)'),
(20122, 17176, 'en', 'name', 'Todor Kableshkov University of Transport'),
(20123, 17177, 'de', 'name', 'Kuratorium fuer Verkehrssicherheit'),
(20124, 17177, 'en', 'name', 'Austrian Road Safety Board'),
(20125, 17178, 'no_lang_code', 'name', 'Lowri Beck (United Kingdom)'),
(20126, 17179, 'no_lang_code', 'name', 'Bruxton (United States)'),
(20127, 17180, 'en', 'name', 'American Academy of Allergy, Asthma and Immunology'),
(20128, 17181, 'en', 'name', 'St. Charles City County Library District'),
(20129, 17182, 'no_lang_code', 'name', 'Topigs Norsvin (Netherlands)'),
(20130, 17183, 'en', 'name', 'Memorial Hermann Northwest Hospital'),
(20131, 17184, 'no_lang_code', 'name', 'IBZ - Salzchemie (Germany)'),
(20132, 17185, 'no_lang_code', 'name', 'IBM (Italy)'),
(20133, 17186, 'en', 'name', 'Wheelin'' Team 457'),
(20134, 17187, 'en', 'name', 'Foundation for Innovation and Technology Transfer'),
(20135, 17188, 'no_lang_code', 'name', 'Estaleiros Navais de Peniche (Portugal)'),
(20136, 17189, 'fr', 'name', 'CitƩ des Sciences et de l''Industrie'),
(20137, 17190, 'en', 'name', 'Rochester Rehabilitation Center'),
(20138, 17191, 'en', 'name', 'Aesthetic Surgery Center'),
(20139, 17192, 'no_lang_code', 'name', 'Audiofile (United States)'),
(20140, 17193, 'en', 'name', 'Europace'),
(20141, 17194, 'en', 'name', 'Providence Health Foundation'),
(20142, 17195, 'no_lang_code', 'name', 'Alfa Imaging (Spain)'),
(20143, 17196, 'en', 'name', 'Committee on Institutional Cooperation'),
(20144, 17197, 'it', 'name', 'Consorzio del Formaggio Parmigiano-Reggiano'),
(20145, 17198, 'en', 'name', 'Lansing Community College'),
(20146, 17199, 'en', 'name', 'Riverside San Bernardino County Indian Health'),
(20147, 17200, 'en', 'name', 'Samuel Simmonds Memorial Hospital'),
(20148, 17201, 'en', 'name', 'UCHealth Yampa Valley Medical Center'),
(20149, 17202, 'no_lang_code', 'name', 'Celanese (Germany)'),
(20150, 17203, 'no_lang_code', 'name', 'Luminomics (United States)'),
(20151, 17204, 'no_lang_code', 'name', 'Avidity (United States)'),
(20152, 17205, 'en', 'name', 'Lakeland Library Cooperative'),
(20153, 17206, 'no_lang_code', 'name', 'Out Front (United States)'),
(20154, 17207, 'no_lang_code', 'name', 'Informatica Tecnologie e Servizi (Italy)'),
(20155, 17208, 'no_lang_code', 'name', 'Henry Schein (United States)'),
(20156, 17209, 'no_lang_code', 'name', 'Kromek (United Kingdom)'),
(20157, 17210, 'en', 'name', 'WellFlorida Council'),
(20158, 17211, 'en', 'name', 'Conference for Food Protection'),
(20159, 17212, 'no_lang_code', 'name', 'Agrovegetal (Spain)'),
(20160, 17213, 'en', 'name', 'Urgent Action Fund'),
(20161, 17214, 'en', 'name', 'Reynolds Community College'),
(20162, 17215, 'en', 'name', 'Clearfield-Jefferson Drug and Alcohol Commission'),
(20163, 17216, 'en', 'name', 'Wayside House'),
(20164, 17217, 'no_lang_code', 'name', 'Zenobia Therapeutics (United States)'),
(20165, 17218, 'no_lang_code', 'name', 'McDermott Will & Emery (United States)'),
(20166, 17219, 'fr', 'name', 'Chambre de Commerce et d''Industrie Lyon MĆ©tropole Saint-Ɖtienne Roanne'),
(20167, 17220, 'no_lang_code', 'name', 'Logit Systems (Belgium)'),
(20168, 17221, 'no_lang_code', 'name', 'Lufthansa Technical Training (Germany)'),
(20169, 17222, 'en', 'name', 'Tashkent Institute Of Postgraduate Medical Education'),
(20170, 17223, 'no_lang_code', 'name', 'CE Technologies (United Kingdom)'),
(20171, 17224, 'no_lang_code', 'name', 'Francisco MuƱoz Irles (Spain)'),
(20172, 17225, 'no_lang_code', 'name', 'Imagination Software Corporation (United States)'),
(20173, 17226, 'no_lang_code', 'name', 'FEO Solutions (United States)'),
(20174, 17227, 'ro', 'name', 'Centrul pentru Promovarea Energiei Curate si Eficiente in Romania'),
(20175, 17228, 'en', 'name', 'Illinois Supreme Court Library'),
(20176, 17229, 'en', 'name', 'Room to Read'),
(20177, 17230, 'en', 'name', 'Wheelchair and Ambulatory Sports USA'),
(20178, 17231, 'en', 'name', 'National Museum of Women in the Arts'),
(20179, 17232, 'no_lang_code', 'name', 'Agence MTDA'),
(20180, 17233, 'no_lang_code', 'name', 'Anect (Czechia)'),
(20181, 17234, 'no_lang_code', 'name', 'Dresden Elektronik Ingenieurtechnik (Germany)'),
(20182, 17235, 'en', 'name', 'Irish Business and Employers Confederation'),
(20183, 17236, 'no_lang_code', 'name', 'Austria Personal Service (Austria)'),
(20184, 17237, 'no_lang_code', 'name', 'Confederación de Empresarios de Zaragoza'),
(20185, 17238, 'no_lang_code', 'name', 'Galdos Systems (Canada)'),
(20186, 17239, 'en', 'name', 'Coexist Initiative'),
(20187, 17240, 'en', 'name', 'Birmingham Museum and Art Gallery'),
(20188, 17241, 'en', 'name', 'Birmingham Science City'),
(20189, 17242, 'no_lang_code', 'name', 'GeneXplain (Germany)'),
(20190, 17243, 'no_lang_code', 'name', 'Edacentrum'),
(20191, 17244, 'no_lang_code', 'name', 'HiQScreen (Switzerland)'),
(20192, 17245, 'en', 'name', 'Auburn Cord Duesenberg Automobile Museum'),
(20193, 17246, 'en', 'name', 'Brimfield Public Library'),
(20194, 17247, 'en', 'name', 'Mount Mary University'),
(20195, 17248, 'fr', 'name', 'MinistĆØre de l''Agriculture'),
(20196, 17249, 'no_lang_code', 'name', 'Roshydromet'),
(20197, 17250, 'no_lang_code', 'name', 'CeramOptec (Germany)'),
(20198, 17251, 'no_lang_code', 'name', 'Medica (Italy)'),
(20199, 17252, 'en', 'name', 'Shriners Hospitals for Children - Twin Cities'),
(20200, 17253, 'no_lang_code', 'name', 'Schenck Process (Norway)'),
(20201, 17254, 'en', 'name', 'Illinois State Library'),
(20202, 17255, 'en', 'name', 'Wakefield Orthopaedic Clinic'),
(20203, 17256, 'no_lang_code', 'name', 'Boeing (Germany)'),
(20204, 17257, 'en', 'name', 'Cambridge Community Library'),
(20205, 17258, 'no_lang_code', 'name', 'Capricorn Automotive (United Kingdom)'),
(20206, 17259, 'no_lang_code', 'name', 'GexCon (Norway)'),
(20207, 17260, 'no_lang_code', 'name', 'Lundin Mining (Ireland)'),
(20208, 17261, 'no_lang_code', 'name', 'Irvine Sensors (United States)'),
(20209, 17262, 'no_lang_code', 'name', 'AcXys Technologies (France)'),
(20210, 17263, 'no_lang_code', 'name', 'GenIbet (Portugal)'),
(20211, 17264, 'no_lang_code', 'name', 'General Innovations and Goods (United States)'),
(20212, 17265, 'en', 'name', 'Colorado Neurological Institute'),
(20213, 17266, 'no_lang_code', 'name', 'Herzog + Partner (Germany)'),
(20214, 17267, 'no_lang_code', 'name', 'European Media Laboratory (Germany)'),
(20215, 17268, 'en', 'name', 'Liberty Church'),
(20216, 17269, 'no_lang_code', 'name', 'Bloomberg (United States)'),
(20217, 17270, 'it', 'name', '2B'),
(20218, 17271, 'no_lang_code', 'name', 'Chemical Dynamics (United States)'),
(20219, 17272, 'en', 'name', 'Heroes Foundation'),
(20220, 17273, 'it', 'name', 'Istituto Nazionale di Documentazione Innovazione e Ricerca Educativa'),
(20221, 17274, 'no_lang_code', 'name', 'Hastoe Group (United Kingdom)'),
(20222, 17275, 'no_lang_code', 'name', 'Lenntech (Netherlands)'),
(20223, 17276, 'en', 'name', 'St. Rose Dominican Hospital'),
(20224, 17277, 'en', 'name', 'Long Beach Medical Center'),
(20225, 17278, 'no_lang_code', 'name', 'PixelMill (United Kingdom)'),
(20226, 17279, 'no_lang_code', 'name', 'Ingeniatrics TecnologĆ­as (Spain)'),
(20227, 17280, 'no_lang_code', 'name', 'VLP Therapeutics (United States)'),
(20228, 17281, 'en', 'name', 'Chippewa Valley Museum'),
(20229, 17282, 'no_lang_code', 'name', 'Albasolar (Spain)'),
(20230, 17283, 'en', 'name', 'Boys'' Club of New York'),
(20231, 17284, 'no_lang_code', 'name', 'Haines Lundberg and Waehler'),
(20232, 17285, 'no_lang_code', 'name', 'Rogers (Germany)'),
(20233, 17286, 'no_lang_code', 'name', 'Egnatia Odos (Greece)'),
(20234, 17287, 'de', 'name', 'Institut für ökologische Wirtschaftsforschung'),
(20235, 17287, 'en', 'name', 'Institute for Ecological Economy Research'),
(20236, 17288, 'en', 'name', 'Columbus State Community College'),
(20237, 17289, 'en', 'name', 'Allegheny County Department of Human Services'),
(20238, 17290, 'en', 'name', 'Devon County Council'),
(20239, 17291, 'no_lang_code', 'name', 'BSH ElectrodomƩsticos (Spain)'),
(20240, 17292, 'fr', 'name', 'La Maison LƩon-Provancher'),
(20241, 17293, 'no_lang_code', 'name', 'Fontanellas Y Marti (Spain)'),
(20242, 17294, 'en', 'name', 'Federal Reserve Bank of St. Louis'),
(20243, 17295, 'no_lang_code', 'name', 'Keep Solutions (Portugal)'),
(20244, 17296, 'en', 'name', 'London Borough of Tower Hamlets'),
(20245, 17297, 'en', 'name', 'Industrial Research Institute'),
(20246, 17298, 'en', 'name', 'York College of Pennsylvania'),
(20247, 17299, 'no_lang_code', 'name', 'Apotex Fermentation (Canada)'),
(20248, 17300, 'no_lang_code', 'name', 'Cleancarb (Luxembourg)'),
(20249, 17301, 'no_lang_code', 'name', 'LSI Solutions (United States)'),
(20250, 17302, 'no_lang_code', 'name', 'LiveU (Israel)'),
(20251, 17303, 'en', 'name', 'J. Iverson Riddle Developmental Center'),
(20252, 17304, 'en', 'name', 'Industrial Systems Institute'),
(20253, 17305, 'no_lang_code', 'name', 'Elia Life Technology (United States)'),
(20254, 17306, 'no_lang_code', 'name', 'BioAssay Systems (United States)'),
(20255, 17307, 'fr', 'name', 'Centre RƩgional Africain des Sciences et Technologies de l''Espace'),
(20256, 17308, 'no_lang_code', 'name', 'HeidelbergCement (United Kingdom)'),
(20257, 17309, 'en', 'name', 'University of Saint Mary of the Lake'),
(20258, 17310, 'no_lang_code', 'name', 'Dynamic Contours (United States)'),
(20259, 17311, 'no_lang_code', 'name', 'Ultradian Diagnostics (United States)'),
(20260, 17312, 'no_lang_code', 'name', 'Interactive Flow Studies (United States)'),
(20261, 17313, 'en', 'name', 'Wessex Regional Genetics Laboratory'),
(20262, 17314, 'en', 'name', 'IRC International Water and Sanitation Centre'),
(20263, 17315, 'en', 'name', 'European Institute for Advanced Studies in Management'),
(20264, 17316, 'en', 'name', 'Massachusetts Department of Elementary and Secondary Education'),
(20265, 17317, 'no_lang_code', 'name', 'General Electric (Germany)'),
(20266, 17318, 'no_lang_code', 'name', 'Introversion Software (United Kingdom)'),
(20267, 17319, 'de', 'name', 'Fraunhofer-Institut für Nachrichtentechnik, Heinrich-Hertz-Institut'),
(20268, 17319, 'en', 'name', 'Fraunhofer Institute for Telecommunications, Heinrich Hertz Institute'),
(20269, 17320, 'en', 'name', 'Los Angeles County Department of Mental Health'),
(20270, 17321, 'en', 'name', 'International Medical Equipment Collaborative'),
(20271, 17322, 'en', 'name', 'Visiting Nurse Association of Erie County'),
(20272, 17323, 'no_lang_code', 'name', 'McPhy Energy (France)'),
(20273, 17324, 'no_lang_code', 'name', 'Aruna Biomedical (United States)'),
(20274, 17325, 'no_lang_code', 'name', 'DTV Consultants (Netherlands)'),
(20275, 17326, 'de', 'name', 'Hessen Mobil – Straßen- und Verkehrsmanagement'),
(20276, 17327, 'no_lang_code', 'name', 'Kapsch (Austria)'),
(20277, 17328, 'no_lang_code', 'name', 'Grimm Aerosol Technik (Germany)'),
(20278, 17329, 'en', 'name', 'CHI St. Vincent'),
(20279, 17330, 'no_lang_code', 'name', 'KOAC'),
(20280, 17331, 'en', 'name', 'Centre for Cartography of Fauna and Flora'),
(20281, 17331, 'sl', 'name', 'Center za Kartografijo Favne in Flore'),
(20282, 17332, 'en', 'name', 'Engineering Employers'' Federation'),
(20283, 17333, 'en', 'name', 'American National Standards Institute'),
(20284, 17334, 'no_lang_code', 'name', 'Base Materials (United Kingdom)'),
(20285, 17335, 'no_lang_code', 'name', 'ABB (Canada)'),
(20286, 17336, 'en', 'name', 'Foundation for Research on Sexually Transmitted Diseases'),
(20287, 17337, 'no_lang_code', 'name', 'CertiFlyer (Netherlands)'),
(20288, 17338, 'en', 'name', 'Sixteenth Street Community Health Center'),
(20289, 17339, 'no_lang_code', 'name', 'Biomay (Austria)'),
(20290, 17340, 'en', 'name', 'Federation of the European Sporting Goods Industry'),
(20291, 17341, 'en', 'name', 'Horizon Human Services'),
(20292, 17342, 'en', 'name', 'Harrington College of Design'),
(20293, 17343, 'en', 'name', 'Institute for Fuels and Renewable Energy'),
(20294, 17344, 'en', 'name', 'SunServe'),
(20295, 17345, 'no_lang_code', 'name', 'Ultrawave Labs (United States)'),
(20296, 17346, 'en', 'name', 'Joliet Public Library'),
(20297, 17347, 'en', 'name', 'Federal Ministry of Health'),
(20298, 17348, 'en', 'name', 'Clifford Beers Clinic'),
(20299, 17349, 'no_lang_code', 'name', 'Agilent Technologies (Italy)'),
(20300, 17350, 'en', 'name', 'United States Government Accountability Office'),
(20301, 17351, 'no_lang_code', 'name', 'Sova Pharmaceuticals (United States)'),
(20302, 17352, 'en', 'name', 'Catlin Gabel School'),
(20303, 17353, 'en', 'name', 'Principia College'),
(20304, 17354, 'en', 'name', 'European Distribution System Operators for Smart Grids'),
(20305, 17355, 'en', 'name', 'Bachmann-Strauss Dystonia & Parkinson Foundation'),
(20306, 17356, 'no_lang_code', 'name', 'ECT Oekotoxikologie (Germany)'),
(20307, 17357, 'en', 'name', 'St. Joseph Museums'),
(20308, 17358, 'en', 'name', 'Elyria Public Library System'),
(20309, 17359, 'en', 'name', 'American Society for Virology'),
(20310, 17360, 'no_lang_code', 'name', 'BioMed Design (United States)'),
(20311, 17361, 'en', 'name', 'Ministry of Health of Romania'),
(20312, 17361, 'ro', 'name', 'Ministerul Sanatatii'),
(20313, 17362, 'en', 'name', 'Deerfield Public Library'),
(20314, 17363, 'no_lang_code', 'name', 'Aptiv (United Kingdom)'),
(20315, 17364, 'en', 'name', 'Medical Data Exchange'),
(20316, 17365, 'no_lang_code', 'name', 'Haemonetics (United States)'),
(20317, 17366, 'en', 'name', 'Pinky Swear Foundation'),
(20318, 17367, 'en', 'name', 'Vibrant Emotional Health'),
(20319, 17368, 'no_lang_code', 'name', 'Cavitation-Control Technology'),
(20320, 17369, 'no_lang_code', 'name', 'Isovolta (Austria)'),
(20321, 17370, 'en', 'name', 'Cape Cod Community College'),
(20322, 17371, 'no_lang_code', 'name', 'Arena Pharmaceuticals (United States)'),
(20323, 17372, 'no_lang_code', 'name', 'Guardian Chemicals (Canada)'),
(20324, 17373, 'en', 'name', 'Greek Solar Industry Association'),
(20325, 17374, 'en', 'name', 'Iceland GeoSurvey'),
(20326, 17374, 'is', 'name', 'ƍslenskar orkurannsóknir'),
(20327, 17375, 'en', 'name', 'El Centro Elementary School District'),
(20328, 17376, 'it', 'name', 'Fondazione Stella Maris'),
(20329, 17377, 'no_lang_code', 'name', 'Grainger and Worral (United Kingdom)'),
(20330, 17378, 'en', 'name', 'Lubbock Christian University'),
(20331, 17379, 'no_lang_code', 'name', 'ideXlab (France)'),
(20332, 17380, 'en', 'name', 'Leigh Yawkey Woodson Art Museum'),
(20333, 17381, 'en', 'name', 'State Geological Institute of Dionýz Štúr'),
(20334, 17382, 'de', 'name', 'Forschungsinstitut für Telekommunikation'),
(20335, 17382, 'en', 'name', 'Research Institute for Telecommunication Cooperation'),
(20336, 17383, 'pt', 'name', 'Instituto PortuguĆŖs de Malacologia'),
(20337, 17384, 'de', 'name', 'Landwirtschaftliche Fachschule Tulln'),
(20338, 17384, 'en', 'name', 'professional school for agriculture Tulln'),
(20339, 17385, 'en', 'name', 'Holy Wisdom Monastery'),
(20340, 17386, 'no_lang_code', 'name', 'Veolia (Italy)'),
(20341, 17387, 'no_lang_code', 'name', 'Integrated Systems Development (Greece)'),
(20342, 17388, 'en', 'name', 'Rajiv Poor People Welfare Society'),
(20343, 17389, 'en', 'name', 'Roanoke Rapids Graded School District'),
(20344, 17390, 'no_lang_code', 'name', 'Dytecna (United Kingdom)'),
(20345, 17391, 'es', 'name', 'Agencia de EnergĆ­a Nuclear y TecnologĆ­as de Avanzada'),
(20346, 17392, 'en', 'name', 'Leeds City Council'),
(20347, 17393, 'en', 'name', 'Zionsville Community High School'),
(20348, 17394, 'en', 'name', 'Instituto Multimedia'),
(20349, 17395, 'en', 'name', 'National Association of School Psychologists'),
(20350, 17396, 'no_lang_code', 'name', 'BioFluidix (Germany)'),
(20351, 17397, 'en', 'name', 'Weems Community Mental Health Center'),
(20352, 17398, 'en', 'name', 'Institute for Sustainable Development'),
(20353, 17399, 'en', 'name', 'Central Statistics Office'),
(20354, 17400, 'en', 'name', 'Federation of European Publishers'),
(20355, 17401, 'no_lang_code', 'name', 'Faculty of 1000 (United States)'),
(20356, 17402, 'no_lang_code', 'name', 'Kopoos Consulting (France)'),
(20357, 17403, 'no_lang_code', 'name', 'Clearfield (United States)'),
(20358, 17404, 'en', 'name', 'Queensland Children’s Medical Research Institute'),
(20359, 17405, 'en', 'name', 'Southern State Community College'),
(20360, 17406, 'en', 'name', 'Army and Navy Club'),
(20361, 17407, 'no_lang_code', 'name', 'Aerotek (Germany)'),
(20362, 17408, 'en', 'name', 'Housing & Care 21'),
(20363, 17409, 'en', 'name', 'Wilmette Public Library'),
(20364, 17410, 'no_lang_code', 'name', 'Bitgear (Serbia)'),
(20365, 17411, 'en', 'name', 'University of Divinity'),
(20366, 17412, 'en', 'name', 'Solving Kids'' Cancer'),
(20367, 17413, 'no_lang_code', 'name', 'Lonix (Finland)'),
(20368, 17414, 'no_lang_code', 'name', 'StemMed (United States)'),
(20369, 17415, 'no_lang_code', 'name', 'PREtest Consult (United States)'),
(20370, 17416, 'no_lang_code', 'name', 'Ericsson (Greece)'),
(20371, 17417, 'en', 'name', 'Harry Perkins Institute of Medical Research'),
(20372, 17418, 'no_lang_code', 'name', 'Irish Hydrodata (Ireland)'),
(20373, 17419, 'en', 'name', 'Setauket Fire Department'),
(20374, 17420, 'no_lang_code', 'name', 'Container Speditions und Transportgesellschaft (Germany)'),
(20375, 17421, 'de', 'name', 'Deutsches Rotes Kreuz'),
(20376, 17421, 'en', 'name', 'German Red Cross'),
(20377, 17422, 'en', 'name', 'The Center for Pranic Healing'),
(20378, 17423, 'no_lang_code', 'name', 'Bodymetrics (United Kingdom)'),
(20379, 17424, 'no_lang_code', 'name', 'Cohera Medical (United States)'),
(20380, 17425, 'ca', 'name', 'Foment del Treball Nacional'),
(20381, 17426, 'no_lang_code', 'name', 'Hidromod (Portugal)'),
(20382, 17427, 'en', 'name', 'Heartland Family Service'),
(20383, 17428, 'en', 'name', 'John D Bray MD'),
(20384, 17429, 'en', 'name', 'Flint and Saginaw Odyssey House'),
(20385, 17430, 'en', 'name', 'Elmhurst Public Library'),
(20386, 17431, 'en', 'name', 'HSBC Holdings'),
(20387, 17432, 'en', 'name', 'Hawaii State Department of Education'),
(20388, 17433, 'no_lang_code', 'name', 'ImaSight (Canada)'),
(20389, 17434, 'en', 'name', 'Catholic University of Cuyo'),
(20390, 17434, 'es', 'name', 'Universidad Católica de Cuyo'),
(20391, 17435, 'en', 'name', 'Louisiana Department of Education'),
(20392, 17436, 'en', 'name', 'Institute for Consultancy and Studies in Sustainable Development'),
(20393, 17436, 'fr', 'name', 'Institut de Conseil et d''Ɖtudes en DĆ©veloppement Durable'),
(20394, 17437, 'no_lang_code', 'name', 'Livos (Germany)'),
(20395, 17438, 'en', 'name', 'Wells Institute for Health Awareness'),
(20396, 17439, 'en', 'name', 'Anchorage School District'),
(20397, 17440, 'no_lang_code', 'name', 'Chart Industries (United Kingdom)'),
(20398, 17441, 'no_lang_code', 'name', 'Perscitus Biosciences (United States)'),
(20399, 17442, 'no_lang_code', 'name', 'Perle Bioscience (United States)'),
(20400, 17443, 'no_lang_code', 'name', 'Embedded Access (Canada)'),
(20401, 17444, 'en', 'name', 'Institute for Applied Environmental Economics'),
(20402, 17445, 'en', 'name', 'Centre for Sustainable Energy'),
(20403, 17446, 'en', 'name', 'Centre of Theoretical and Applied Ecology'),
(20404, 17446, 'it', 'name', 'Centro di Ecologia Teorica ed Applicata'),
(20405, 17447, 'en', 'name', 'DeVry University'),
(20406, 17448, 'no_lang_code', 'name', 'Translational Therapeutics (United States)'),
(20407, 17449, 'en', 'name', 'Polymer Science and Technology Institute'),
(20408, 17449, 'pt', 'name', 'Instituto de CiĆŖncia e Tecnologia de PolĆ­meros'),
(20409, 17450, 'en', 'name', 'Internet Archive'),
(20410, 17451, 'en', 'name', 'South Texas Institutes of Health'),
(20411, 17452, 'en', 'name', 'General Confederation of Labour'),
(20412, 17452, 'fr', 'name', 'ConfƩdƩration GƩnƩrale du Travail'),
(20413, 17453, 'no_lang_code', 'name', 'AFT Automation (Germany)'),
(20414, 17454, 'no_lang_code', 'name', 'Leotech Rapid Prototyping und Werkzeugbau (Germany)'),
(20415, 17455, 'en', 'name', 'Lithuanian Art Museum'),
(20416, 17455, 'lt', 'name', 'Lietuvos dailės muziejus'),
(20417, 17456, 'en', 'name', 'Hunterdon Prevention Resources'),
(20418, 17457, 'cy', 'name', 'Yr Adran Ddigidol, Diwylliant, Cyfryngau a Chwaraeon'),
(20419, 17457, 'en', 'name', 'Department for Digital, Culture, Media & Sport'),
(20420, 17458, 'no_lang_code', 'name', 'Hidrowatt (Spain)'),
(20421, 17459, 'en', 'name', 'Ray of Hope Cancer Foundation'),
(20422, 17460, 'no_lang_code', 'name', 'Joel Popkin and Company'),
(20423, 17461, 'no_lang_code', 'name', 'Rare Disease Therapeutics (United States)'),
(20424, 17462, 'no_lang_code', 'name', 'Eurospider Information Technology (Switzerland)'),
(20425, 17463, 'no_lang_code', 'name', 'Ateknea Solutions (Malta)'),
(20426, 17464, 'no_lang_code', 'name', 'DVST (United Kingdom)'),
(20427, 17465, 'en', 'name', 'iNets South West'),
(20428, 17466, 'en', 'name', 'Tuscarawas County Public Library'),
(20429, 17467, 'en', 'name', 'Kishwaukee College'),
(20430, 17468, 'en', 'name', 'Play Group Theatre'),
(20431, 17469, 'el', 'name', 'Ī™Ī±Ļ„ĻĪ¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(20432, 17469, 'en', 'name', 'Athens Medical Center'),
(20433, 17470, 'no_lang_code', 'name', 'Latham & Watkins (United States)'),
(20434, 17471, 'en', 'name', 'USTA Foundation'),
(20435, 17472, 'no_lang_code', 'name', 'Erbicol (Switzerland)'),
(20436, 17473, 'no_lang_code', 'name', 'Plant Health Care (United States)'),
(20437, 17474, 'no_lang_code', 'name', 'Bombardier (Portugal)'),
(20438, 17475, 'en', 'name', 'PreventionFirst'),
(20439, 17476, 'en', 'name', 'Institute of Museum and Library Services'),
(20440, 17477, 'en', 'name', 'Peace Winds America'),
(20441, 17478, 'es', 'name', 'Instituto Tecnológico de Materiales de Asturias'),
(20442, 17479, 'en', 'name', 'Fresh Pond Research Institute'),
(20443, 17480, 'no_lang_code', 'name', 'Discovery Air (Canada)'),
(20444, 17481, 'en', 'name', 'THETA Uganda'),
(20445, 17482, 'en', 'name', 'Children’s Village'),
(20446, 17483, 'en', 'name', 'Sail To Prevail'),
(20447, 17484, 'no_lang_code', 'name', 'Sea Lane Biotechnologies (United States)'),
(20448, 17485, 'en', 'name', 'Assyrian Universal Alliance Foundation'),
(20449, 17486, 'en', 'name', 'Worcestershire Acute Hospitals NHS Trust'),
(20450, 17487, 'no_lang_code', 'name', 'Hebridean Seaweed (United Kingdom)'),
(20451, 17488, 'no_lang_code', 'name', 'Artificial Cell Technologies (United States)'),
(20452, 17489, 'no_lang_code', 'name', 'LifeWatch (Israel)'),
(20453, 17490, 'no_lang_code', 'name', 'ANDalyze (United States)'),
(20454, 17491, 'en', 'name', 'Share and Care Foundation'),
(20455, 17492, 'no_lang_code', 'name', 'ReveraGen BioPharma (United States)'),
(20456, 17493, 'no_lang_code', 'name', 'MaxCyte (United States)'),
(20457, 17494, 'no_lang_code', 'name', 'Halliday James (United Kingdom)'),
(20458, 17495, 'no_lang_code', 'name', 'Carmell Therapeutics (United States)'),
(20459, 17496, 'en', 'name', 'PearlPoint Cancer Support'),
(20460, 17497, 'en', 'name', 'St Helens Hospital'),
(20461, 17498, 'en', 'name', 'Walking Miracles Family Foundation'),
(20462, 17499, 'no_lang_code', 'name', 'Toshiba (Switzerland)'),
(20463, 17500, 'no_lang_code', 'name', 'Becton Dickinson (Canada)'),
(20464, 17501, 'en', 'name', 'The Family Center'),
(20465, 17502, 'en', 'name', 'Indian Hills Community College'),
(20466, 17503, 'no_lang_code', 'name', 'Galaxy Biotech (United States)'),
(20467, 17504, 'no_lang_code', 'name', 'GlycoMar (United Kingdom)'),
(20468, 17505, 'de', 'name', 'Bayerische Staatsbibliothek'),
(20469, 17505, 'en', 'name', 'Bavarian State Library'),
(20470, 17506, 'en', 'name', 'Iowa Federation of Families for Children''s Mental Health'),
(20471, 17507, 'no_lang_code', 'name', 'Deltagen (United States)'),
(20472, 17508, 'no_lang_code', 'name', 'MARS Laser (Germany)'),
(20473, 17509, 'en', 'name', 'Riverside Unified School District'),
(20474, 17510, 'en', 'name', 'Cardiff Council'),
(20475, 17511, 'no_lang_code', 'name', 'Europa Media (Hungary)'),
(20476, 17512, 'no_lang_code', 'name', 'Linkra (Italy)'),
(20477, 17513, 'en', 'name', 'Mid-State Technical College'),
(20478, 17514, 'pl', 'name', 'Innowacja Polska'),
(20479, 17515, 'en', 'name', 'Animal Behavior Society'),
(20480, 17516, 'en', 'name', 'ComedyCures Foundation'),
(20481, 17517, 'de', 'name', 'Leonardo Büro Sachsen Anhalt'),
(20482, 17518, 'no_lang_code', 'name', 'Stavros'),
(20483, 17519, 'no_lang_code', 'name', 'Comité de Concertation et de Coordination de l''Apprentissage du Bâtiment et des Travaux Publics'),
(20484, 17520, 'en', 'name', 'Providence Pediatric Pulmonology & Cystic Fibrosis'),
(20485, 17521, 'no_lang_code', 'name', 'Arri (Germany)'),
(20486, 17522, 'en', 'name', 'European Centre for Knowledge and Technology Transfer'),
(20487, 17523, 'no_lang_code', 'name', 'Glycosyn (United States)'),
(20488, 17524, 'el', 'name', 'Ī›ĪŸĪ„Ī¦Ī‘ĪšĪ—Ī£ Ī§Ī—ĪœĪ™ĪšĪ‘'),
(20489, 17524, 'no_lang_code', 'name', 'Loufakis (Greece)'),
(20490, 17525, 'no_lang_code', 'name', 'Mahlo (Germany)'),
(20491, 17526, 'en', 'name', 'Department for Education'),
(20492, 17527, 'no_lang_code', 'name', 'Ferroday (United Kingdom)'),
(20493, 17528, 'en', 'name', 'The Salvation Army Zambia'),
(20494, 17529, 'no_lang_code', 'name', 'Geographic Information Management (Belgium)'),
(20495, 17530, 'no_lang_code', 'name', 'Coherent (Germany)'),
(20496, 17531, 'en', 'name', 'Vitiligo and Pigmentation Institute of Southern California'),
(20497, 17532, 'en', 'name', 'Douglas County Health Department'),
(20498, 17533, 'en', 'name', 'Society of Surgical Oncology'),
(20499, 17534, 'no_lang_code', 'name', 'Laser Optical Engineering (United Kingdom)'),
(20500, 17535, 'it', 'name', 'Consorzio Italiano per la Ricerca in Medicina'),
(20501, 17536, 'en', 'name', 'Summit School'),
(20502, 17537, 'no_lang_code', 'name', 'Clarifica (Canada)'),
(20503, 17538, 'no_lang_code', 'name', 'Invistics (United States)'),
(20504, 17539, 'no_lang_code', 'name', 'Max Fordham (United Kingdom)'),
(20505, 17540, 'no_lang_code', 'name', 'Expert System (Italy)'),
(20506, 17541, 'it', 'name', 'Fondazione Filarete'),
(20507, 17542, 'no_lang_code', 'name', 'IncreaseTime (Portugal)'),
(20508, 17543, 'no_lang_code', 'name', 'HiETA Technologies (United Kingdom)'),
(20509, 17544, 'no_lang_code', 'name', 'Albemarle (Belgium)'),
(20510, 17545, 'no_lang_code', 'name', 'Innoterm (Hungary)'),
(20511, 17546, 'no_lang_code', 'name', 'Fernando DomĆ­nguez (Spain)'),
(20512, 17547, 'no_lang_code', 'name', 'Britwind (United Kingdom)'),
(20513, 17548, 'en', 'name', 'European Community Shipowners'' Associations'),
(20514, 17549, 'no_lang_code', 'name', 'WPP (United States)'),
(20515, 17550, 'en', 'name', 'College of Saint Elizabeth'),
(20516, 17551, 'no_lang_code', 'name', 'Information & Image Management Systems (Spain)'),
(20517, 17552, 'it', 'name', 'Associazione Regionale Allevatori della Lombardia'),
(20518, 17553, 'no_lang_code', 'name', 'Takara (France)'),
(20519, 17554, 'no_lang_code', 'name', 'Brinker Technology (United Kingdom)'),
(20520, 17555, 'no_lang_code', 'name', 'Emcien (United States)'),
(20521, 17556, 'no_lang_code', 'name', 'Columbus NanoWorks (United States)'),
(20522, 17557, 'no_lang_code', 'name', 'EyeRx Research (United States)'),
(20523, 17558, 'en', 'name', 'Association for Research in Vision and Ophthalmology'),
(20524, 17559, 'en', 'name', 'WCA Hospital'),
(20525, 17560, 'en', 'name', 'Skin Cancer Foundation'),
(20526, 17561, 'no_lang_code', 'name', 'Fidelity Systems (United States)'),
(20527, 17562, 'en', 'name', 'Laskeek Bay Conservation Society'),
(20528, 17563, 'no_lang_code', 'name', 'Powerway (United States)'),
(20529, 17564, 'de', 'name', 'Fiedler optoelectronics'),
(20530, 17564, 'no_lang_code', 'name', 'Fiedler Optoelektronik (Germany)'),
(20531, 17565, 'no_lang_code', 'name', 'Cambridge Consultants (United Kingdom)'),
(20532, 17566, 'en', 'name', 'Cook County Law Library'),
(20533, 17567, 'en', 'name', 'Family & Children’s Services'),
(20534, 17568, 'en', 'name', 'Stairstep Foundation'),
(20535, 17569, 'no_lang_code', 'name', 'Advance Concepts for Interactive Technology (Germany)'),
(20536, 17570, 'no_lang_code', 'name', '3S Photonics (France)'),
(20537, 17571, 'no_lang_code', 'name', 'Inael (Spain)'),
(20538, 17572, 'en', 'name', 'Institute of Linguistics'),
(20539, 17572, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ·Ń‹ŠŗŠ¾Š·Š½Š°Š½ŠøŃ Российской акаГемии наук'),
(20540, 17573, 'en', 'name', 'New York State PTA'),
(20541, 17574, 'no_lang_code', 'name', 'Etiometry (United States)'),
(20542, 17575, 'en', 'name', 'Vermont Studio Center'),
(20543, 17576, 'en', 'name', 'St. Joseph’s Candler Hospital'),
(20544, 17577, 'en', 'name', 'The Centers'),
(20545, 17578, 'no_lang_code', 'name', 'Skulpt (United States)'),
(20546, 17579, 'en', 'name', 'Lincoln Library'),
(20547, 17580, 'en', 'name', 'Ministry of Interior'),
(20548, 17580, 'sk', 'name', 'Ministerstvo VnĆŗtra Slovenskej Republiky'),
(20549, 17581, 'en', 'name', 'Roanoke River Valley Education Consortium'),
(20550, 17582, 'no_lang_code', 'name', 'Industrial Systems and Control (United Kingdom)'),
(20551, 17583, 'en', 'name', 'Winston-Salem/Forsyth County Schools'),
(20552, 17584, 'en', 'name', 'IEEE Information Theory Society'),
(20553, 17585, 'en', 'name', 'Rochester City School District'),
(20554, 17586, 'no_lang_code', 'name', 'TRUMPF (Germany)'),
(20555, 17587, 'en', 'name', 'Strides To Success'),
(20556, 17588, 'no_lang_code', 'name', 'IBM (India)'),
(20557, 17589, 'no_lang_code', 'name', 'Centice (United States)'),
(20558, 17590, 'no_lang_code', 'name', 'Rofin (Switzerland)'),
(20559, 17591, 'en', 'name', 'London Regional Children''s Museum'),
(20560, 17592, 'en', 'name', 'Rockefeller Philanthropy Advisors'),
(20561, 17593, 'no_lang_code', 'name', 'Assystem (France)'),
(20562, 17594, 'no_lang_code', 'name', 'Telekom Srbija (Serbia)'),
(20563, 17595, 'en', 'name', 'Arab Center for the Studies of Arid Zones and Dry Lands'),
(20564, 17596, 'es', 'name', 'Centro Tecnológico Nacional de la Conserva y Alimentación'),
(20565, 17597, 'no_lang_code', 'name', 'International Medias Data Services (Canada)'),
(20566, 17598, 'en', 'name', 'European-Mediterranean Seismological Centre'),
(20567, 17599, 'no_lang_code', 'name', 'Evidentia Publishing (Netherlands)'),
(20568, 17600, 'no_lang_code', 'name', 'CloudSigma (Switzerland)'),
(20569, 17601, 'en', 'name', 'Sky Tavern Junior Ski Program'),
(20570, 17602, 'no_lang_code', 'name', 'Didael KTS (Italy)'),
(20571, 17603, 'no_lang_code', 'name', 'Advanced Network and Services (United States)'),
(20572, 17604, 'no_lang_code', 'name', 'Soltigua (Italy)'),
(20573, 17605, 'no_lang_code', 'name', 'Catalyse'),
(20574, 17606, 'no_lang_code', 'name', 'Volkswagen Group (United Kingdom)'),
(20575, 17607, 'no_lang_code', 'name', 'Idio (United Kingdom)'),
(20576, 17608, 'en', 'name', 'Justice & Public Safety Cabinet'),
(20577, 17609, 'no_lang_code', 'name', 'Highland Biosciences (United Kingdom)'),
(20578, 17610, 'no_lang_code', 'name', 'Hodos Media (United Kingdom)'),
(20579, 17611, 'no_lang_code', 'name', 'McGraw-Hill Education (United States)'),
(20580, 17612, 'en', 'name', 'National Labor Relations Board'),
(20581, 17613, 'en', 'name', 'Greater Western Library Alliance'),
(20582, 17614, 'en', 'name', 'JustCommunity'),
(20583, 17615, 'en', 'name', 'The QuadW Foundation'),
(20584, 17616, 'en', 'name', 'St. Christopher Iba Mar Diop College of Medicine'),
(20585, 17617, 'fr', 'name', 'Centre d''Etudes des Transports pour la MƩditerranƩe Occidentale'),
(20586, 17618, 'en', 'name', 'Cross-Border Research Association'),
(20587, 17619, 'no_lang_code', 'name', 'Abamotor Energia (Spain)'),
(20588, 17620, 'no_lang_code', 'name', 'Anheuser-Busch InBev (United States)'),
(20589, 17621, 'no_lang_code', 'name', 'Developmental Technologies (United States)'),
(20590, 17622, 'de', 'name', 'Emschergenossenschaft'),
(20591, 17623, 'no_lang_code', 'name', 'Qiagen (France)'),
(20592, 17624, 'en', 'name', 'St Vincent’s Private Hospital Brisbane'),
(20593, 17625, 'en', 'name', 'e-Forum'),
(20594, 17626, 'no_lang_code', 'name', 'Kompetente Werthaltige Ingenieurleistung (Austria)'),
(20595, 17627, 'no_lang_code', 'name', 'Argela (Turkey)'),
(20596, 17628, 'es', 'name', 'Centro Dr. Belluscio'),
(20597, 17629, 'en', 'name', 'MacGillivray Freeman Films'),
(20598, 17630, 'no_lang_code', 'name', 'Pharminox (United Kingdom)'),
(20599, 17631, 'en', 'name', 'Hands on Science Outreach'),
(20600, 17632, 'no_lang_code', 'name', 'Fluential (United States)'),
(20601, 17633, 'no_lang_code', 'name', 'eBOS Technologies (Cyprus)'),
(20602, 17634, 'no_lang_code', 'name', 'Innovative Design Labs (United States)'),
(20603, 17635, 'no_lang_code', 'name', 'Ceres Power (United Kingdom)'),
(20604, 17636, 'en', 'name', 'UPMC McKeesport'),
(20605, 17637, 'en', 'name', 'Johnson County Public Library'),
(20606, 17638, 'no_lang_code', 'name', 'EUnited (Belgium)'),
(20607, 17639, 'en', 'name', 'Sheridan Technical College'),
(20608, 17640, 'en', 'name', 'South Elgin FUNdation'),
(20609, 17641, 'en', 'name', 'Ministry of Agriculture Forestry and Food'),
(20610, 17642, 'en', 'name', 'Illinois Eastern Community Colleges'),
(20611, 17643, 'en', 'name', 'Alfred Mann Foundation'),
(20612, 17644, 'en', 'name', 'Fresno City College'),
(20613, 17645, 'en', 'name', 'Beamish Museum'),
(20614, 17646, 'no_lang_code', 'name', '3D Industries (United Kingdom)'),
(20615, 17647, 'en', 'name', 'Ministry of the Interior'),
(20616, 17647, 'fi', 'name', 'SisƤministeriƶ'),
(20617, 17648, 'no_lang_code', 'name', 'DM-STAT (United States)'),
(20618, 17649, 'en', 'name', 'Nazarene Theological Seminary'),
(20619, 17650, 'el', 'name', 'Τράπεζα Ī ĪµĪ¹ĻĪ±Ī¹ĻŽĻ‚'),
(20620, 17650, 'no_lang_code', 'name', 'Piraeus Bank'),
(20621, 17651, 'no_lang_code', 'name', 'Agricen (United States)'),
(20622, 17652, 'no_lang_code', 'name', 'Trana Discovery (United States)'),
(20623, 17653, 'no_lang_code', 'name', 'AB Agri'),
(20624, 17654, 'en', 'name', 'Sinnissippi Centers'),
(20625, 17655, 'no_lang_code', 'name', 'Kelliher & Associates (United States)'),
(20626, 17656, 'no_lang_code', 'name', 'PharmatrophiX (United States)');
INSERT INTO `ror_settings` VALUES
(20627, 17657, 'no_lang_code', 'name', 'Chipworks (Canada)'),
(20628, 17658, 'en', 'name', 'Canadian Lung Association'),
(20629, 17659, 'no_lang_code', 'name', 'Legendary Games (United Kingdom)'),
(20630, 17660, 'el', 'name', 'ĪšĪ­Ī½Ļ„ĻĪæ ĪŗĪ±Ī¹Ī½ĪæĻ„ĻŒĪ¼Ļ‰Ī½ Ļ„ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĻŽĪ½'),
(20631, 17660, 'no_lang_code', 'name', 'Innovative Technologies Center (Greece)'),
(20632, 17661, 'en', 'name', 'National Louis University'),
(20633, 17662, 'en', 'name', 'Association for the Promotion of Information on Science and Technology for All Countries'),
(20634, 17663, 'en', 'name', 'Sundance Research Institute'),
(20635, 17664, 'no_lang_code', 'name', 'Alteryx (United Kingdom)'),
(20636, 17665, 'en', 'name', 'National Counterterrorism Center'),
(20637, 17666, 'en', 'name', 'United Lincolnshire Hospitals NHS Trust'),
(20638, 17667, 'en', 'name', 'Association of Black Women Physicians'),
(20639, 17668, 'no_lang_code', 'name', 'Best High Pressure & Drilling Technology (Austria)'),
(20640, 17669, 'en', 'name', 'Wyoming Comprehensive Cancer Control Consortium'),
(20641, 17670, 'no_lang_code', 'name', 'Kombiverkehr (Germany)'),
(20642, 17671, 'en', 'name', 'North Florida Area Agency on Aging'),
(20643, 17672, 'no_lang_code', 'name', 'Collaborative Group (United States)'),
(20644, 17673, 'en', 'name', 'Women’s Rehabilitation Centre'),
(20645, 17674, 'no_lang_code', 'name', 'Fully Distributed Systems (United Kingdom)'),
(20646, 17675, 'en', 'name', 'European Games Developer Federation'),
(20647, 17676, 'no_lang_code', 'name', 'Doimak (Spain)'),
(20648, 17677, 'no_lang_code', 'name', '3d Scanners (United Kingdom)'),
(20649, 17678, 'cs', 'name', 'Ministerstvo Å”kolstvĆ­, mlĆ”deže a tělovýchovy ČeskĆ© republiky'),
(20650, 17678, 'en', 'name', 'Ministry of Education Youth and Sports'),
(20651, 17679, 'en', 'name', 'Raise Hope Foundation'),
(20652, 17680, 'en', 'name', 'Stanley Park'),
(20653, 17681, 'no_lang_code', 'name', 'Intelen (Cyprus)'),
(20654, 17682, 'en', 'name', 'International Union Against Tuberculosis and Lung Disease'),
(20655, 17683, 'de', 'name', 'Hamburgisches WeltWirtschafts Institut'),
(20656, 17683, 'en', 'name', 'Hamburg Institute of International Economics'),
(20657, 17684, 'en', 'name', 'Lurleen B Wallace Community College'),
(20658, 17685, 'no_lang_code', 'name', 'Promotora de Informaciones (Spain)'),
(20659, 17686, 'el', 'name', 'ĪœĪæĻ…ĻƒĪµĪÆĪæ ĪœĻ€ĪµĪ½Ī¬ĪŗĪ·'),
(20660, 17686, 'en', 'name', 'Benaki Museum'),
(20661, 17687, 'en', 'name', 'Park Ridge Public Library'),
(20662, 17688, 'de', 'name', 'Bundesamt für Eich- und Vermessungswesen'),
(20663, 17688, 'en', 'name', 'Federal Office of Metrology and Surveying'),
(20664, 17689, 'no_lang_code', 'name', 'ChemDiv (United States)'),
(20665, 17690, 'no_lang_code', 'name', 'ERS Steuerungstechnik (Germany)'),
(20666, 17691, 'en', 'name', 'Lancaster City Council'),
(20667, 17692, 'de', 'name', 'FIZ Karlsruhe - Leibniz-Institut für Informationsinfrastruktur'),
(20668, 17692, 'en', 'name', 'FIZ Karlsruhe – Leibniz Institute for Information Infrastructure'),
(20669, 17693, 'no_lang_code', 'name', 'Biothermica (Canada)'),
(20670, 17694, 'no_lang_code', 'name', 'Helitune (United Kingdom)'),
(20671, 17695, 'en', 'name', 'Community Services Institute'),
(20672, 17696, 'no_lang_code', 'name', 'Battery Ventures (United States)'),
(20673, 17697, 'en', 'name', 'Vannie E. Cook Jr. Cancer Foundation'),
(20674, 17698, 'en', 'name', 'Aspen Cancer Conference'),
(20675, 17699, 'no_lang_code', 'name', 'Extended Home Living Services'),
(20676, 17700, 'en', 'name', 'Alex''s Lemonade Stand Foundation'),
(20677, 17701, 'no_lang_code', 'name', 'Kentech Instruments (United Kingdom)'),
(20678, 17702, 'en', 'name', 'Centre of Polymer and Carbon Materials'),
(20679, 17703, 'en', 'name', 'Business Innovation Centre'),
(20680, 17704, 'fr', 'name', 'Institut Technique de l''Agriculture Biologique'),
(20681, 17705, 'en', 'name', 'Temple College'),
(20682, 17706, 'en', 'name', 'All Russian Research Institute of Hydrometeorological information World Data Center'),
(20683, 17706, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ России гиГрометеорологической информации ŠœŠøŃ€Š¾Š²Š¾Š¹ центр Ганных'),
(20684, 17707, 'fr', 'name', 'Ɖtudes MĆ©tallurgiques Traitements Thermiques'),
(20685, 17708, 'no_lang_code', 'name', 'Burness (United States)'),
(20686, 17709, 'en', 'name', 'London Institute for Mathematical Sciences'),
(20687, 17710, 'en', 'name', 'European Association for the Study of Obesity'),
(20688, 17711, 'en', 'name', 'Canadian Institute of Public Health Inspectors'),
(20689, 17712, 'no_lang_code', 'name', 'Idom (Spain)'),
(20690, 17713, 'no_lang_code', 'name', 'Altran (Austria)'),
(20691, 17714, 'no_lang_code', 'name', 'Maire Tecnimont (Italy)'),
(20692, 17715, 'no_lang_code', 'name', 'Flisom (Switzerland)'),
(20693, 17716, 'en', 'name', 'Roper St. Francis Healthcare'),
(20694, 17717, 'no_lang_code', 'name', 'Atos (Turkey)'),
(20695, 17718, 'en', 'name', 'United Way of Southeastern Idaho'),
(20696, 17719, 'no_lang_code', 'name', 'Bilfinger (Germany)'),
(20697, 17720, 'no_lang_code', 'name', 'Lafer (Italy)'),
(20698, 17721, 'no_lang_code', 'name', 'Automobile Association (United Kingdom)'),
(20699, 17722, 'en', 'name', 'Veterans Education and Research Association of Northern New England'),
(20700, 17723, 'en', 'name', 'Center for Asbestos Related Disease'),
(20701, 17724, 'no_lang_code', 'name', 'Viasat (United States)'),
(20702, 17725, 'no_lang_code', 'name', 'Ideasis (Greece)'),
(20703, 17726, 'no_lang_code', 'name', 'Lyncean Technologies (United States)'),
(20704, 17727, 'en', 'name', 'Phoebe Sumter Medical Center'),
(20705, 17728, 'no_lang_code', 'name', 'Granlund (Finland)'),
(20706, 17729, 'no_lang_code', 'name', 'LogĆ­stica y Acondicionamientos Industriales (Spain)'),
(20707, 17730, 'en', 'name', 'Westside Health Authority'),
(20708, 17731, 'en', 'name', 'Association of American State Geologists'),
(20709, 17732, 'en', 'name', 'European Welding Federation'),
(20710, 17733, 'no_lang_code', 'name', 'Getas Petrogeo (Italy)'),
(20711, 17734, 'en', 'name', 'Santander Port Authority'),
(20712, 17734, 'es', 'name', 'Autoridad Portuaria de Santander'),
(20713, 17735, 'en', 'name', 'Rhodes State College'),
(20714, 17736, 'no_lang_code', 'name', 'Keronite (United Kingdom)'),
(20715, 17737, 'no_lang_code', 'name', 'Capital Technology Information Services'),
(20716, 17738, 'en', 'name', 'Atlantic Union College'),
(20717, 17739, 'en', 'name', 'Community Network Services'),
(20718, 17740, 'no_lang_code', 'name', 'Cox Analytical Systems (Sweden)'),
(20719, 17741, 'es', 'name', 'Asociación Española de Fabricantes de Equipos y Componentes para Automoción'),
(20720, 17742, 'en', 'name', 'Moraine Park Technical College'),
(20721, 17743, 'fr', 'name', 'AcadƩmie de Montpellier'),
(20722, 17744, 'en', 'name', 'British Academy of Film and Television Arts'),
(20723, 17745, 'en', 'name', 'Harrington Cancer Center'),
(20724, 17746, 'en', 'name', 'Safe Horizon'),
(20725, 17747, 'no_lang_code', 'name', 'Coord3 Industries (Italy)'),
(20726, 17748, 'en', 'name', 'Signature Research Institute'),
(20727, 17749, 'no_lang_code', 'name', 'Innospec (United Kingdom)'),
(20728, 17750, 'en', 'name', 'Watauga Medical Center'),
(20729, 17751, 'no_lang_code', 'name', 'Costruzioni Apparecchiature Elettroniche Nucleari (Italy)'),
(20730, 17752, 'en', 'name', 'Wallace Laboratories'),
(20731, 17753, 'en', 'name', 'Reproductive Medicine Institute'),
(20732, 17754, 'en', 'name', 'Ars Electronica Center'),
(20733, 17755, 'en', 'name', 'International Organization for Migration'),
(20734, 17756, 'it', 'name', 'Formedil'),
(20735, 17757, 'en', 'name', 'Wheaton Public Library'),
(20736, 17758, 'fr', 'name', 'Ministère de la Santé Publique et de la Population'),
(20737, 17759, 'en', 'name', 'Warren-Trumbull County Public Library'),
(20738, 17760, 'no_lang_code', 'name', 'Geomer (Germany)'),
(20739, 17761, 'en', 'name', 'Institute of Global Climate and Ecology'),
(20740, 17761, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ глобального климата Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(20741, 17762, 'no_lang_code', 'name', 'Columbus Superconductors (Italy)'),
(20742, 17763, 'en', 'name', 'Alabama Department of Agriculture and Industries'),
(20743, 17764, 'en', 'name', 'USA Cares'),
(20744, 17765, 'en', 'name', 'Sisters of Providence Health System'),
(20745, 17766, 'no_lang_code', 'name', 'Advanced Energy Materials (United States)'),
(20746, 17767, 'en', 'name', 'Guilford Technical Community College'),
(20747, 17768, 'no_lang_code', 'name', 'Atrium Innovations (Canada)'),
(20748, 17769, 'en', 'name', 'Unlimited Abilities Foundation'),
(20749, 17770, 'no_lang_code', 'name', 'Contextual Change (United States)'),
(20750, 17771, 'no_lang_code', 'name', 'Circulomics (United States)'),
(20751, 17772, 'no_lang_code', 'name', 'Dolphin Design (France)'),
(20752, 17773, 'en', 'name', 'European Geothermal Energy Council'),
(20753, 17774, 'en', 'name', 'Center of Maritime Technologies'),
(20754, 17775, 'no_lang_code', 'name', 'Daher (France)'),
(20755, 17776, 'en', 'name', 'Vittal Mallya Scientific Research Foundation'),
(20756, 17777, 'fr', 'name', 'ATECA - Applications Technologie AvancƩe'),
(20757, 17778, 'en', 'name', 'German Breast group'),
(20758, 17779, 'fr', 'name', 'Centre National de l''Informatique'),
(20759, 17780, 'en', 'name', 'Southern Wesleyan University'),
(20760, 17781, 'en', 'name', 'Glasgow Victoria Infirmary'),
(20761, 17782, 'en', 'name', 'Wolfe Eye Clinic'),
(20762, 17783, 'fr', 'name', 'Federation Europeenne & Internationale des Industries de la Pierre Naturelle'),
(20763, 17783, 'no_lang_code', 'name', 'European & International Federation of Natural Stone Industries'),
(20764, 17784, 'en', 'name', 'East Central College'),
(20765, 17785, 'no_lang_code', 'name', 'Learning Express Toys (United States)'),
(20766, 17786, 'no_lang_code', 'name', 'Henkel (Netherlands)'),
(20767, 17787, 'no_lang_code', 'name', 'Benten Technologies (United States)'),
(20768, 17788, 'no_lang_code', 'name', 'ACMA Social Marketing'),
(20769, 17789, 'ca', 'name', 'Institut Cartogràfic i Geològic de Catalunya'),
(20770, 17790, 'no_lang_code', 'name', 'AnyWi Technologies (Netherlands)'),
(20771, 17791, 'no_lang_code', 'name', 'Shri Vile Parle Kelavani Mandal'),
(20772, 17792, 'en', 'name', 'Tuomey Healthcare System'),
(20773, 17793, 'no_lang_code', 'name', 'Espion (Ireland)'),
(20774, 17794, 'en', 'name', 'Waubonsee Community College'),
(20775, 17795, 'no_lang_code', 'name', 'E2S (Belgium)'),
(20776, 17796, 'en', 'name', 'Perinatal Institute'),
(20777, 17797, 'en', 'name', 'Whole Elephant Institute'),
(20778, 17798, 'es', 'name', 'Instituto Nacional del Agua'),
(20779, 17799, 'no_lang_code', 'name', 'Galorath (United Kingdom)'),
(20780, 17800, 'en', 'name', 'AEROTRON Research'),
(20781, 17801, 'no_lang_code', 'name', 'Scynexis (United States)'),
(20782, 17802, 'no_lang_code', 'name', 'Cellix (Ireland)'),
(20783, 17803, 'no_lang_code', 'name', 'Erothitan (Germany)'),
(20784, 17804, 'no_lang_code', 'name', 'Insulcon (Netherlands)'),
(20785, 17805, 'no_lang_code', 'name', 'AtriCure (United States)'),
(20786, 17806, 'en', 'name', 'The Arthroplasty Patient Foundation'),
(20787, 17807, 'en', 'name', 'Nunez Community College'),
(20788, 17808, 'en', 'name', 'Franklin Pierce University'),
(20789, 17809, 'en', 'name', 'South Australian Health and Medical Research Institute'),
(20790, 17810, 'en', 'name', 'Irish Congress of Trade Unions'),
(20791, 17811, 'no_lang_code', 'name', 'Formatec Technical Ceramics (Netherlands)'),
(20792, 17812, 'no_lang_code', 'name', 'Neogen Europe (United Kingdom)'),
(20793, 17813, 'no_lang_code', 'name', 'Belsim (Belgium)'),
(20794, 17814, 'en', 'name', 'Iowa Department of Education'),
(20795, 17815, 'no_lang_code', 'name', 'Etna Biotech (Italy)'),
(20796, 17816, 'no_lang_code', 'name', 'Bristol-Myers Squibb (United Kingdom)'),
(20797, 17817, 'no_lang_code', 'name', 'Haesevoets (Belgium)'),
(20798, 17818, 'en', 'name', 'Storrs Library'),
(20799, 17819, 'no_lang_code', 'name', 'SWAZ Potato Farms (United States)'),
(20800, 17820, 'no_lang_code', 'name', 'Stealth Biosciences (United States)'),
(20801, 17821, 'no_lang_code', 'name', 'Eurosolare (Italy)'),
(20802, 17822, 'no_lang_code', 'name', 'Delta Technologies Sud Ouest (France)'),
(20803, 17823, 'en', 'name', 'West Humboldt Park Development Council'),
(20804, 17824, 'en', 'name', 'Fife House'),
(20805, 17825, 'no_lang_code', 'name', 'FMC (Norway)'),
(20806, 17826, 'en', 'name', 'Washington Regional Medical Center'),
(20807, 17827, 'en', 'name', 'Zhejiang Center for Disease Control and Prevention'),
(20808, 17827, 'zh', 'name', 'ęµ™ę±Ÿēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(20809, 17828, 'fr', 'name', 'UniversitƩ des Sciences et Techniques de Masuku'),
(20810, 17829, 'en', 'name', 'Infectious Diseases Society of America'),
(20811, 17830, 'en', 'name', 'Exeter City Council'),
(20812, 17831, 'no_lang_code', 'name', 'BIA Separations (Slovenia)'),
(20813, 17832, 'en', 'name', 'Electrotechnical Institute'),
(20814, 17833, 'no_lang_code', 'name', 'Maus (Germany)'),
(20815, 17834, 'no_lang_code', 'name', 'InfoCulture (United States)'),
(20816, 17835, 'en', 'name', 'Canadian Association for Girls in Science'),
(20817, 17836, 'no_lang_code', 'name', 'Fatman (Finland)'),
(20818, 17837, 'no_lang_code', 'name', 'BP (France)'),
(20819, 17838, 'no_lang_code', 'name', 'Martechnic (Germany)'),
(20820, 17839, 'no_lang_code', 'name', 'ABB (Finland)'),
(20821, 17840, 'en', 'name', 'SSM Health Rehabilitation Hospital'),
(20822, 17841, 'no_lang_code', 'name', 'Elforlight (United Kingdom)'),
(20823, 17842, 'no_lang_code', 'name', 'DIARC-Technology (Finland)'),
(20824, 17843, 'no_lang_code', 'name', 'Sumitomo Chemical (United Kingdom)'),
(20825, 17844, 'en', 'name', 'Hoard Historical Museum'),
(20826, 17845, 'no_lang_code', 'name', 'AED-SICAD (Germany)'),
(20827, 17846, 'en', 'name', 'Roger C. Peace Rehabilitation Hospital'),
(20828, 17847, 'en', 'name', 'Star Neuroscience Foundation'),
(20829, 17848, 'no_lang_code', 'name', 'Albany Molecular Research (United Kingdom)'),
(20830, 17849, 'no_lang_code', 'name', 'Exalos (Switzerland)'),
(20831, 17850, 'no_lang_code', 'name', 'Bioergonomics (United States)'),
(20832, 17851, 'fr', 'name', 'Missions Publiques'),
(20833, 17852, 'no_lang_code', 'name', 'Aalborg Portland (Denmark)'),
(20834, 17853, 'en', 'name', 'Children’s Cause for Cancer Advocacy'),
(20835, 17854, 'fr', 'name', 'Centre d''Imagerie BioMedicale'),
(20836, 17855, 'no_lang_code', 'name', 'Total Quadran (France)'),
(20837, 17856, 'en', 'name', 'State Library of Ohio'),
(20838, 17857, 'en', 'name', 'Alpha Consulting Services'),
(20839, 17858, 'no_lang_code', 'name', 'RM Education (United Kingdom)'),
(20840, 17859, 'no_lang_code', 'name', 'Selecta Biosciences (United States)'),
(20841, 17860, 'en', 'name', 'Heritage Museum and Cultural Center'),
(20842, 17861, 'no_lang_code', 'name', 'BioAssessments (United States)'),
(20843, 17862, 'en', 'name', 'Wings Cancer Foundation'),
(20844, 17863, 'no_lang_code', 'name', 'Codeplay (United Kingdom)'),
(20845, 17864, 'en', 'name', 'Florida SouthWestern State College'),
(20846, 17865, 'en', 'name', 'Cancer Council Queensland'),
(20847, 17866, 'no_lang_code', 'name', 'BASF (Switzerland)'),
(20848, 17867, 'de', 'name', 'Ukrainisches Institut für Krebsbekämpfung'),
(20849, 17867, 'en', 'name', 'Ukrainian Anti Cancer Institute'),
(20850, 17868, 'en', 'name', 'National Center for Supercomputing Applications'),
(20851, 17869, 'no_lang_code', 'name', 'Airtren (Spain)'),
(20852, 17870, 'no_lang_code', 'name', 'Wockhardt Hospitals'),
(20853, 17871, 'en', 'name', 'U.S. Committee for Refugees and Immigrants'),
(20854, 17872, 'en', 'name', 'Washington State Department of Ecology'),
(20855, 17873, 'no_lang_code', 'name', 'Fuchs (Austria)'),
(20856, 17874, 'en', 'name', 'Hospital of Prato'),
(20857, 17875, 'en', 'name', 'Vincennes University'),
(20858, 17876, 'no_lang_code', 'name', 'Converspeech (United States)'),
(20859, 17877, 'en', 'name', 'SportsClub'),
(20860, 17878, 'en', 'name', 'youthSpark'),
(20861, 17879, 'no_lang_code', 'name', 'Cosmetic (Greece)'),
(20862, 17880, 'no_lang_code', 'name', 'IBK-Innovation (Germany)'),
(20863, 17881, 'no_lang_code', 'name', 'Icelandic New Energy (Iceland)'),
(20864, 17882, 'no_lang_code', 'name', 'Crowell & Moring (United States)'),
(20865, 17883, 'en', 'name', 'Athenaeum of Ohio'),
(20866, 17884, 'no_lang_code', 'name', 'Pillar (Ukraine)'),
(20867, 17885, 'no_lang_code', 'name', 'RJS Biologics (United States)'),
(20868, 17886, 'en', 'name', 'Youth Net and Counselling'),
(20869, 17887, 'no_lang_code', 'name', 'Metallurgische Verfahrenstechnik (Germany)'),
(20870, 17888, 'en', 'name', 'Santa Clara County Probation Department'),
(20871, 17889, 'en', 'name', 'St. Mary’s Healthcare System for Children'),
(20872, 17890, 'en', 'name', 'W.K. Kellogg Foundation'),
(20873, 17891, 'ar', 'name', 'المعمل Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ للمناخ Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠ'),
(20874, 17891, 'en', 'name', 'Central Laboratory for Agricultural Climate'),
(20875, 17892, 'en', 'name', 'Society for the Investigation of Early Pregnancy'),
(20876, 17893, 'en', 'name', 'Association of Schools and Programs of Public Health'),
(20877, 17894, 'en', 'name', 'Alliance for Positive Health'),
(20878, 17895, 'en', 'name', 'International Ecological Engineering Society'),
(20879, 17896, 'no_lang_code', 'name', 'Elite Bread Industry (Greece)'),
(20880, 17897, 'en', 'name', 'St. Baldrick''s Foundation'),
(20881, 17898, 'no_lang_code', 'name', 'C & L Instruments (United States)'),
(20882, 17899, 'no_lang_code', 'name', 'Cureveda (United States)'),
(20883, 17900, 'en', 'name', 'Rome National Central Library'),
(20884, 17900, 'it', 'name', 'Biblioteca Nazionale Centrale di Roma'),
(20885, 17901, 'no_lang_code', 'name', 'Acromas Holdings (United Kingdom)'),
(20886, 17902, 'no_lang_code', 'name', 'Medennium (United States)'),
(20887, 17903, 'en', 'name', 'Wake County Public School System'),
(20888, 17904, 'no_lang_code', 'name', 'Alligator Bioscience (Sweden)'),
(20889, 17905, 'no_lang_code', 'name', 'Idrodepurazione (Italy)'),
(20890, 17906, 'en', 'name', 'Road and Bridge Research Institute'),
(20891, 17907, 'no_lang_code', 'name', 'Craftsman Tools (United Kingdom)'),
(20892, 17908, 'no_lang_code', 'name', 'Facilia (Sweden)'),
(20893, 17909, 'no_lang_code', 'name', 'interactive instruments (Germany)'),
(20894, 17910, 'en', 'name', 'Pediatric Neurology Briefs'),
(20895, 17911, 'no_lang_code', 'name', 'Medvis (United States)'),
(20896, 17912, 'en', 'name', 'Italian Institute of Welding'),
(20897, 17912, 'it', 'name', 'Istituto Italiano della Saldatura'),
(20898, 17913, 'en', 'name', 'British Editorial Society of Bone & Joint Surgery'),
(20899, 17914, 'no_lang_code', 'name', 'Informatique Electromagnetisme Electronique Analyse Numerique (France)'),
(20900, 17915, 'no_lang_code', 'name', 'RMG Consultants (United States)'),
(20901, 17916, 'en', 'name', 'Edgewood Independent School District'),
(20902, 17917, 'en', 'name', 'Computer Emergency Response Team'),
(20903, 17918, 'no_lang_code', 'name', 'Paccar (United Kingdom)'),
(20904, 17919, 'en', 'name', 'Keuka College'),
(20905, 17920, 'en', 'name', 'Day One'),
(20906, 17921, 'no_lang_code', 'name', 'Avaxia Biologics (United States)'),
(20907, 17922, 'no_lang_code', 'name', 'Laser- und Medizin-Technologie (Germany)'),
(20908, 17923, 'no_lang_code', 'name', 'The SoundWell (United States)'),
(20909, 17924, 'en', 'name', 'YR Gaitonde Centre for AIDS Research and Education'),
(20910, 17925, 'en', 'name', 'Schoolcraft College'),
(20911, 17926, 'no_lang_code', 'name', 'Biopolis (Spain)'),
(20912, 17927, 'no_lang_code', 'name', 'Attocube Systems (Germany)'),
(20913, 17928, 'en', 'name', 'United Hospice'),
(20914, 17929, 'no_lang_code', 'name', 'Heart Imaging Technologies (United States)'),
(20915, 17930, 'en', 'name', 'Quality of Life Plus'),
(20916, 17931, 'en', 'name', 'Women for Peace and Democracy – Nepal'),
(20917, 17932, 'no_lang_code', 'name', 'CCTV User Group (United Kingdom)'),
(20918, 17933, 'de', 'name', 'Forschungszentrum für Kältetechnik und Wärmepumpen'),
(20919, 17934, 'en', 'name', 'Care Resource'),
(20920, 17935, 'no_lang_code', 'name', 'Helliniki Meletitiki (Greece)'),
(20921, 17936, 'no_lang_code', 'name', 'Innu-Science (Canada)'),
(20922, 17937, 'en', 'name', 'Seattle Cancer Care Alliance'),
(20923, 17938, 'no_lang_code', 'name', 'Bandvulc (United Kingdom)'),
(20924, 17939, 'en', 'name', 'Canadian Parks and Wilderness Society'),
(20925, 17939, 'fr', 'name', 'la SociƩtƩ pour la nature et les parcs du Canada'),
(20926, 17940, 'en', 'name', 'National Agency for the Development of Renewable Energy and Energy Efficiency'),
(20927, 17940, 'fr', 'name', 'Agence Nationale pour le DĆ©veloppement des Energies Renouvelables et l’EfficacitĆ© EnergĆ©tique'),
(20928, 17941, 'no_lang_code', 'name', 'Cambridge University Press'),
(20929, 17942, 'no_lang_code', 'name', 'Integrated Sensing Systems (United States)'),
(20930, 17943, 'no_lang_code', 'name', 'Microsoft (Norway)'),
(20931, 17944, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŲ¹Ų²'),
(20932, 17944, 'en', 'name', 'Taiz University'),
(20933, 17945, 'en', 'name', 'European Convention for Constructional Steelwork'),
(20934, 17946, 'en', 'name', 'A. N. Nesmeyanov Institute of Organoelement Compounds'),
(20935, 17946, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠ¼ŠµŠ½Ń‚Š¾Š¾Ń€Š³Š°Š½ŠøŃ‡ŠµŃŠŗŠøŃ… соеГинений им. А.Š.ŠŠµŃŠ¼ŠµŃŠ½Š¾Š²Š° Российской акаГемии наук'),
(20936, 17947, 'no_lang_code', 'name', 'Computer Technology Associates (United States)'),
(20937, 17948, 'en', 'name', 'British Empire and Commonwealth Museum'),
(20938, 17949, 'en', 'name', 'International Commission on Radiological Protection'),
(20939, 17950, 'en', 'name', 'Allen County Public Library'),
(20940, 17951, 'en', 'name', 'Philip Rogers Elementary School'),
(20941, 17952, 'no_lang_code', 'name', 'Flanders Color (Belgium)'),
(20942, 17953, 'en', 'name', 'Washtenaw Community College'),
(20943, 17954, 'no_lang_code', 'name', 'Lynkeus (Italy)'),
(20944, 17955, 'en', 'name', 'Finnish Marine Industries'),
(20945, 17956, 'en', 'name', 'Airborne Research Associates'),
(20946, 17957, 'no_lang_code', 'name', 'Keracol (United Kingdom)'),
(20947, 17958, 'en', 'name', 'District of Columbia Public School'),
(20948, 17958, 'fr', 'name', 'Ɖcoles publiques du district de Columbia'),
(20949, 17959, 'no_lang_code', 'name', 'Danish Power Systems (Denmark)'),
(20950, 17960, 'en', 'name', 'European Research Institute on Cooperative and Social Enterprise'),
(20951, 17961, 'en', 'name', 'Cerritos College'),
(20952, 17962, 'pt', 'name', 'Gabinete de Estudos Olisiponenses'),
(20953, 17963, 'sv', 'name', 'IQ SamhƤllsbyggnad'),
(20954, 17964, 'no_lang_code', 'name', 'Blatraden (Sweden)'),
(20955, 17965, 'no_lang_code', 'name', 'Konrad Fischer (Austria)'),
(20956, 17966, 'en', 'name', 'Department of Health and Social Affairs'),
(20957, 17967, 'en', 'name', 'John A. Hartford Foundation'),
(20958, 17968, 'en', 'name', 'Neurotech Networks'),
(20959, 17969, 'en', 'name', 'UF Health Shands Hospital'),
(20960, 17970, 'en', 'name', 'La Grange Public Library'),
(20961, 17971, 'en', 'name', 'Emerald Education Systems'),
(20962, 17972, 'no_lang_code', 'name', 'Ensco (United States)'),
(20963, 17973, 'en', 'name', 'Art Institute of Chicago'),
(20964, 17973, 'es', 'name', 'Instituto de Arte de Chicago'),
(20965, 17973, 'fr', 'name', 'Institut d''Art de Chicago'),
(20966, 17974, 'en', 'name', 'Wisconsin Historical Society'),
(20967, 17975, 'en', 'name', 'Uganda Health and Science Press Association'),
(20968, 17976, 'en', 'name', 'Winchester Hospital'),
(20969, 17977, 'en', 'name', 'Midstate College'),
(20970, 17978, 'en', 'name', 'Yo San University'),
(20971, 17979, 'no_lang_code', 'name', 'Michell Instruments (France)'),
(20972, 17980, 'no_lang_code', 'name', 'Arisan Therapeutics (United States)'),
(20973, 17981, 'en', 'name', 'Institute for Structural Research'),
(20974, 17982, 'en', 'name', 'Tahoe Forest Hospital'),
(20975, 17983, 'no_lang_code', 'name', 'GTD System & Software Engineering (Spain)'),
(20976, 17984, 'no_lang_code', 'name', '2 Sisters Food Group (United Kingdom)'),
(20977, 17985, 'no_lang_code', 'name', 'III-N Technology (United States)'),
(20978, 17986, 'ca', 'name', 'Centre d''Innovació i Desenvolupament Empresarial'),
(20979, 17987, 'no_lang_code', 'name', 'CS Transport (France)'),
(20980, 17988, 'en', 'name', 'Washington State Community College'),
(20981, 17989, 'no_lang_code', 'name', 'Elekta (United States)'),
(20982, 17990, 'en', 'name', 'Center for Advanced Aerospace Technologies'),
(20983, 17990, 'es', 'name', 'Centro Avanzado de TecnologĆ­as Aeroespaciales'),
(20984, 17991, 'no_lang_code', 'name', 'FormTech (Germany)'),
(20985, 17992, 'it', 'name', 'AutoritĆ  di bacino dei fiumi Isonzo, Tagliamento, Livenza, Piave, Brenta-Bacchiglione'),
(20986, 17993, 'no_lang_code', 'name', 'Greenbank Group (United Kingdom)'),
(20987, 17994, 'no_lang_code', 'name', 'Ironbound Films (United States)'),
(20988, 17995, 'no_lang_code', 'name', 'Ewos Innovation (Norway)'),
(20989, 17996, 'no_lang_code', 'name', 'KeraMed (United States)'),
(20990, 17997, 'no_lang_code', 'name', 'Hanover Scotland Housing Association (United Kingdom)'),
(20991, 17998, 'no_lang_code', 'name', 'DeWitt Tool (United States)'),
(20992, 17999, 'no_lang_code', 'name', 'BioAtlantis (Ireland)'),
(20993, 18000, 'en', 'name', 'Tetra Society of North America'),
(20994, 18001, 'fr', 'name', 'Ag Quest'),
(20995, 18002, 'no_lang_code', 'name', 'Mary Maguire Foundation'),
(20996, 18003, 'en', 'name', 'Stark County District Library'),
(20997, 18004, 'no_lang_code', 'name', 'Capita Translation and Interpreting (United Kingdom)'),
(20998, 18005, 'no_lang_code', 'name', 'iXpressGenes (United States)'),
(20999, 18006, 'pt', 'name', 'A Rocha'),
(21000, 18007, 'en', 'name', 'Thyroid Head and Neck Cancer Foundation'),
(21001, 18008, 'no_lang_code', 'name', 'Eight19 (United Kingdom)'),
(21002, 18009, 'en', 'name', 'Batchelor Institute of Indigenous Tertiary Education'),
(21003, 18010, 'en', 'name', 'Central American University'),
(21004, 18010, 'es', 'name', 'Universidad Centroamericana'),
(21005, 18011, 'en', 'name', 'New York Stem Cell Foundation'),
(21006, 18012, 'no_lang_code', 'name', 'OhioNET'),
(21007, 18013, 'en', 'name', 'Greeneville Community Hospital West'),
(21008, 18014, 'en', 'name', 'Columbus College of Art and Design'),
(21009, 18015, 'no_lang_code', 'name', 'Enpro Consult (Bulgaria)'),
(21010, 18016, 'en', 'name', 'Research Center for Natural Resources, Environment and Society'),
(21011, 18016, 'pt', 'name', 'Centro de Recursos Naturais, Ambiente e Sociedade'),
(21012, 18017, 'en', 'name', 'Federal Reserve Bank of Chicago'),
(21013, 18018, 'no_lang_code', 'name', 'ACAL Energy (United Kingdom)'),
(21014, 18019, 'no_lang_code', 'name', 'Aviointeriors (Italy)'),
(21015, 18020, 'no_lang_code', 'name', 'Brain Innovation (Netherlands)'),
(21016, 18021, 'no_lang_code', 'name', 'Doris Engineering (France)'),
(21017, 18022, 'no_lang_code', 'name', 'Green Tide Turbines (United Kingdom)'),
(21018, 18023, 'en', 'name', 'Dubuque County Safe Youth Coalition'),
(21019, 18024, 'en', 'name', 'United States Nuclear Regulatory Commission'),
(21020, 18024, 'es', 'name', 'Comisión Reguladora Nuclear de Estados Unidos'),
(21021, 18024, 'fr', 'name', 'Commission de rĆ©glementation nuclĆ©aire des Ɖtats-unis'),
(21022, 18025, 'no_lang_code', 'name', 'Saoirse (United States)'),
(21023, 18026, 'en', 'name', 'International Fishmeal and Oil Manufacturers Association'),
(21024, 18027, 'en', 'name', 'Public Library of Mount Vernon and Knox County'),
(21025, 18028, 'en', 'name', 'Oakland Community College'),
(21026, 18029, 'no_lang_code', 'name', 'Iris (Italy)'),
(21027, 18030, 'en', 'name', 'SS. Cyril & Methodius Seminary'),
(21028, 18031, 'no_lang_code', 'name', 'Fastcom Technology (Switzerland)'),
(21029, 18032, 'no_lang_code', 'name', 'E-Semble (Netherlands)'),
(21030, 18033, 'no_lang_code', 'name', 'Riverkeeper'),
(21031, 18034, 'no_lang_code', 'name', 'Keepmoat (United Kingdom)'),
(21032, 18035, 'en', 'name', 'Will2Walk Foundation'),
(21033, 18036, 'no_lang_code', 'name', 'Loake Shoemakers (United Kingdom)'),
(21034, 18037, 'no_lang_code', 'name', 'Probiodrug (Germany)'),
(21035, 18038, 'no_lang_code', 'name', 'Revlon (United States)'),
(21036, 18039, 'no_lang_code', 'name', 'ES Technology (United Kingdom)'),
(21037, 18040, 'en', 'name', 'Balzekas Museum of Lithuanian Culture'),
(21038, 18041, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° изслеГователска Šø образователна мрежа'),
(21039, 18041, 'en', 'name', 'Bulgarian Research and Education Network'),
(21040, 18042, 'no_lang_code', 'name', 'H-Cubed (United States)'),
(21041, 18043, 'no_lang_code', 'name', 'Datamat (Italy)'),
(21042, 18044, 'no_lang_code', 'name', 'Linagora (France)'),
(21043, 18045, 'no_lang_code', 'name', 'Evening Star Productions (United States)'),
(21044, 18046, 'en', 'name', 'National Research Development Institute for Animal Biology and Nutrition'),
(21045, 18047, 'en', 'name', 'Yuba City Unified School District'),
(21046, 18048, 'no_lang_code', 'name', 'Cyke (United States)'),
(21047, 18049, 'no_lang_code', 'name', 'Fdt Depuratori d'' Acqua (Italy)'),
(21048, 18050, 'de', 'name', 'Kooperationsstelle Hamburg'),
(21049, 18051, 'en', 'name', 'Community Foundation'),
(21050, 18052, 'fr', 'name', 'Centre d''Ɖtudes et de Recherches de l''Industrie du BĆ©ton'),
(21051, 18053, 'en', 'name', 'Red Devils'),
(21052, 18054, 'en', 'name', 'Women Against Rape'),
(21053, 18055, 'cs', 'name', 'ČeskÔ televize'),
(21054, 18055, 'en', 'name', 'Czech Television'),
(21055, 18056, 'no_lang_code', 'name', 'Films of Record'),
(21056, 18057, 'en', 'name', 'Belgian Institute of Management Accountants & Controllers'),
(21057, 18058, 'en', 'name', 'Danish Academy of Technical Sciences'),
(21058, 18059, 'no_lang_code', 'name', 'Zodiac Aerospace (United States)'),
(21059, 18060, 'en', 'name', 'Beijing Transportation Research Center'),
(21060, 18061, 'no_lang_code', 'name', 'Ericsson (United States)'),
(21061, 18062, 'en', 'name', 'St. Charles Foundation'),
(21062, 18063, 'en', 'name', 'Amistades'),
(21063, 18064, 'en', 'name', 'California Health and Human Services Agency'),
(21064, 18065, 'no_lang_code', 'name', 'EDI Group (United Kingdom)'),
(21065, 18066, 'en', 'name', 'Breakfast Club'),
(21066, 18067, 'pt', 'name', 'Centro de Formação Profissional para o Sector Alimentar'),
(21067, 18068, 'no_lang_code', 'name', 'ICTS (United Kingdom)'),
(21068, 18069, 'no_lang_code', 'name', 'Diversified Maintenance Systems (United States)'),
(21069, 18070, 'no_lang_code', 'name', 'Wolters Kluwer (Netherlands)'),
(21070, 18071, 'no_lang_code', 'name', 'Interaction Design (United Kingdom)'),
(21071, 18072, 'no_lang_code', 'name', 'Agora Conseil'),
(21072, 18073, 'en', 'name', 'Police Scotland'),
(21073, 18074, 'en', 'name', 'American Alliance of Museums'),
(21074, 18075, 'no_lang_code', 'name', 'Aluminium Surface Engineering (United Kingdom)'),
(21075, 18076, 'no_lang_code', 'name', 'ATARD Defense and Aerospace Industry'),
(21076, 18077, 'no_lang_code', 'name', 'GenetiVision (United States)'),
(21077, 18078, 'en', 'name', 'Council of Prairie and Pacific University Libraries'),
(21078, 18079, 'no_lang_code', 'name', 'DVC (Belgium)'),
(21079, 18080, 'en', 'name', 'Research Foundation - Flanders'),
(21080, 18080, 'nl', 'name', 'Fonds voor Wetenschappelijk Onderzoek - Vlaanderen'),
(21081, 18081, 'no_lang_code', 'name', 'PSI Group (Belgium)'),
(21082, 18082, 'en', 'name', 'Soledad Community Health Care District Foundation'),
(21083, 18083, 'no_lang_code', 'name', 'Amanova (Slovenia)'),
(21084, 18084, 'en', 'name', 'IS practice'),
(21085, 18085, 'en', 'name', 'Indiana Institute of Technology'),
(21086, 18086, 'en', 'name', 'Maine Audubon'),
(21087, 18087, 'no_lang_code', 'name', 'DAS Environmental Expert (Germany)'),
(21088, 18088, 'no_lang_code', 'name', 'Informatizacija Energetika Avtomatizacija (Slovenia)'),
(21089, 18089, 'no_lang_code', 'name', 'Clear Communication Associates'),
(21090, 18090, 'en', 'name', 'L.E. Phillips Memorial Public Library'),
(21091, 18091, 'en', 'name', 'Empower Abilities'),
(21092, 18092, 'en', 'name', 'Daniel Boone Regional Library'),
(21093, 18093, 'no_lang_code', 'name', 'Imagination Technologies (United Kingdom)'),
(21094, 18094, 'en', 'name', 'Zekel Healthcare'),
(21095, 18095, 'no_lang_code', 'name', 'Circadian (United States)'),
(21096, 18096, 'no_lang_code', 'name', 'Amcor (Switzerland)'),
(21097, 18097, 'en', 'name', 'StarRecreation'),
(21098, 18098, 'no_lang_code', 'name', 'Caesar Systems (United Kingdom)'),
(21099, 18099, 'de', 'name', 'Lebensmittelversuchsanstalt'),
(21100, 18099, 'no_lang_code', 'name', 'Austrian Competence Centre of Food Safety'),
(21101, 18100, 'en', 'name', 'Colorado Coalition for the Homeless'),
(21102, 18101, 'no_lang_code', 'name', 'HRS Spiratube (Spain)'),
(21103, 18102, 'en', 'name', 'Hannibal–LaGrange University'),
(21104, 18103, 'it', 'name', 'Confederazione Italiana della Piccola e Media Industria'),
(21105, 18104, 'en', 'name', 'Thohoyandou Victim Empowerment Programme'),
(21106, 18105, 'no_lang_code', 'name', 'Hero EspaƱa (Spain)'),
(21107, 18106, 'en', 'name', 'Missouri Department of Natural Resources'),
(21108, 18107, 'en', 'name', 'European Steel Association'),
(21109, 18108, 'en', 'name', 'Touro Infirmary Foundation'),
(21110, 18109, 'en', 'name', 'SBH Behavioral Health'),
(21111, 18110, 'en', 'name', 'Dallas Independent School District'),
(21112, 18111, 'en', 'name', 'Geauga County Public Library'),
(21113, 18112, 'no_lang_code', 'name', 'FilmLight (United Kingdom)'),
(21114, 18113, 'en', 'name', 'Grossmont Cuyamaca Community College District'),
(21115, 18114, 'en', 'name', 'Western DuPage Special Recreation Association'),
(21116, 18115, 'en', 'name', 'Community Counseling Institute'),
(21117, 18116, 'no_lang_code', 'name', 'Maxwell Technologies (Switzerland)'),
(21118, 18117, 'en', 'name', 'Arlington Heights Memorial Library'),
(21119, 18118, 'no_lang_code', 'name', 'Quantum Design (Germany)'),
(21120, 18119, 'no_lang_code', 'name', 'Applied Resources (United States)'),
(21121, 18120, 'no_lang_code', 'name', 'Diagnostic Biochips (United States)'),
(21122, 18121, 'no_lang_code', 'name', 'ioGenetics (United States)'),
(21123, 18122, 'en', 'name', 'Lancashire County Council'),
(21124, 18123, 'no_lang_code', 'name', 'CenterLine (Canada)'),
(21125, 18124, 'no_lang_code', 'name', 'Cellbond (United Kingdom)'),
(21126, 18125, 'no_lang_code', 'name', 'Cummins (United Kingdom)'),
(21127, 18126, 'no_lang_code', 'name', 'LifeTec Group (Netherlands)'),
(21128, 18127, 'en', 'name', 'Advocate South Suburban Hospital'),
(21129, 18128, 'en', 'name', 'WISPALS Library Consortium'),
(21130, 18129, 'no_lang_code', 'name', 'Imatecno (Italy)'),
(21131, 18130, 'en', 'name', 'Regional Medical Center'),
(21132, 18131, 'fr', 'name', 'Laboratoire d''Analyses Génétiques pour les Espèces Animales'),
(21133, 18132, 'no_lang_code', 'name', 'HydroLogic (Netherlands)'),
(21134, 18133, 'no_lang_code', 'name', 'Holonix (Italy)'),
(21135, 18134, 'no_lang_code', 'name', 'Virovek (United States)'),
(21136, 18135, 'no_lang_code', 'name', 'Royal BAM Group (United Kingdom)'),
(21137, 18136, 'no_lang_code', 'name', 'Ec3 NetWorks (Austria)'),
(21138, 18137, 'no_lang_code', 'name', 'Aalterpaint (Belgium)'),
(21139, 18138, 'no_lang_code', 'name', 'Gate Fuels (United States)'),
(21140, 18139, 'no_lang_code', 'name', 'BioClinica (United States)'),
(21141, 18140, 'no_lang_code', 'name', 'Lloyds Banking Group (United Kingdom)'),
(21142, 18141, 'no_lang_code', 'name', 'Clark-MXR (United States)'),
(21143, 18142, 'no_lang_code', 'name', 'Dairygold Co-Operative Society (Ireland)'),
(21144, 18143, 'no_lang_code', 'name', 'Elektrobit (Finland)'),
(21145, 18144, 'no_lang_code', 'name', 'Hessen Agentur (Germany)'),
(21146, 18145, 'no_lang_code', 'name', 'ChK Group (United States)'),
(21147, 18146, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за изслеГване на обществата Šø знанието'),
(21148, 18146, 'en', 'name', 'Institute for the Study of Societies and Knowledge'),
(21149, 18147, 'en', 'name', 'Cielo Institute'),
(21150, 18148, 'no_lang_code', 'name', 'Atlantic Industries (Canada)'),
(21151, 18149, 'no_lang_code', 'name', 'Aircraft Development and Systems Engineering (Netherlands)'),
(21152, 18150, 'en', 'name', 'Greater West Bloomfield Historical Society'),
(21153, 18151, 'en', 'name', 'College of Southern Maryland'),
(21154, 18152, 'en', 'name', 'Hartford Public Schools'),
(21155, 18153, 'en', 'name', 'Ministry of Culture and National Heritage'),
(21156, 18153, 'pl', 'name', 'Ministerstwo Kultury i Dziedzictwa Narodowego'),
(21157, 18154, 'no_lang_code', 'name', 'Holo3'),
(21158, 18155, 'no_lang_code', 'name', 'Midwest Tape (United States)'),
(21159, 18156, 'no_lang_code', 'name', 'Enkon (Turkey)'),
(21160, 18157, 'en', 'name', 'Congressional Budget Office'),
(21161, 18158, 'en', 'name', 'The Washington Institute for Near East Policy'),
(21162, 18159, 'no_lang_code', 'name', 'Materia (United States)'),
(21163, 18160, 'en', 'name', 'Gulf of Maine Research Institute'),
(21164, 18161, 'no_lang_code', 'name', 'Bruker (United Kingdom)'),
(21165, 18162, 'no_lang_code', 'name', 'Total (Italy)'),
(21166, 18163, 'no_lang_code', 'name', 'Link2Energy (United Kingdom)'),
(21167, 18164, 'no_lang_code', 'name', 'Electron Energy Corporation (United States)'),
(21168, 18165, 'en', 'name', 'Netherlands Food and Consumer Product Safety Authority'),
(21169, 18165, 'nl', 'name', 'Nederland Voedsel- en Waren Autoriteit'),
(21170, 18166, 'no_lang_code', 'name', 'Ella-Cs (Czechia)'),
(21171, 18167, 'en', 'name', 'Farmworker Justice'),
(21172, 18168, 'no_lang_code', 'name', 'Cidete (Spain)'),
(21173, 18169, 'en', 'name', 'Legacy Community Health Services'),
(21174, 18170, 'de', 'name', 'Bundesamt für Sicherheit in der Informationstechnik'),
(21175, 18170, 'en', 'name', 'Federal Office for Information Security'),
(21176, 18171, 'no_lang_code', 'name', 'Encraft (United Kingdom)'),
(21177, 18172, 'en', 'name', 'College of Lake County'),
(21178, 18173, 'no_lang_code', 'name', 'ATUM (United States)'),
(21179, 18174, 'en', 'name', 'California Coalition Against Sexual Assault'),
(21180, 18175, 'no_lang_code', 'name', 'Ripamonti'),
(21181, 18176, 'no_lang_code', 'name', 'Cezanne (Italy)'),
(21182, 18177, 'no_lang_code', 'name', 'Kongsberg Gruppen (Norway)'),
(21183, 18178, 'no_lang_code', 'name', 'BioSystem (Germany)'),
(21184, 18179, 'no_lang_code', 'name', 'Cementec Industries (Canada)'),
(21185, 18180, 'no_lang_code', 'name', 'Choc Edge (United Kingdom)'),
(21186, 18181, 'en', 'name', 'Species360'),
(21187, 18182, 'no_lang_code', 'name', 'Sapna NYC'),
(21188, 18183, 'en', 'name', 'Grand Rapids Public Museum'),
(21189, 18184, 'no_lang_code', 'name', 'Source BioScience (Germany)'),
(21190, 18185, 'fr', 'name', 'Association pour la Recherche-DƩveloppement de l''Enseignement MultimƩdia et Interactif'),
(21191, 18186, 'en', 'name', 'Connecticut Education Association'),
(21192, 18187, 'en', 'name', 'Complete Home Care'),
(21193, 18188, 'no_lang_code', 'name', 'GFI InformƔtica (Spain)'),
(21194, 18189, 'no_lang_code', 'name', 'Gram & Juhl (Denmark)'),
(21195, 18190, 'no_lang_code', 'name', 'Huntsman (Belgium)'),
(21196, 18191, 'no_lang_code', 'name', 'DuPont (Germany)'),
(21197, 18192, 'en', 'name', 'Maryland Public Television'),
(21198, 18193, 'no_lang_code', 'name', 'Magee Scientific (United States)'),
(21199, 18194, 'no_lang_code', 'name', 'Ecosil Technologies (United States)'),
(21200, 18195, 'en', 'name', 'Windber Research Institute'),
(21201, 18196, 'no_lang_code', 'name', 'Parrot (France)'),
(21202, 18197, 'no_lang_code', 'name', 'CarboNix (United States)'),
(21203, 18198, 'en', 'name', 'Robert Louis Stevenson School'),
(21204, 18199, 'no_lang_code', 'name', 'Innovative Solution In Space (Netherlands)'),
(21205, 18200, 'no_lang_code', 'name', 'FIP Industriale (Italy)'),
(21206, 18201, 'no_lang_code', 'name', 'Averbis (Germany)'),
(21207, 18202, 'en', 'name', 'Valencia Port'),
(21208, 18203, 'no_lang_code', 'name', 'J.M. Smucker Company (United States)'),
(21209, 18204, 'en', 'name', 'Massachusetts Department of Higher Education'),
(21210, 18205, 'en', 'name', 'IGAD Climate Prediction and Applications Center'),
(21211, 18206, 'en', 'name', 'Public Library of Cincinnati and Hamilton County'),
(21212, 18206, 'es', 'name', 'Biblioteca PĆŗblica de Cincinnati'),
(21213, 18207, 'no_lang_code', 'name', 'Stella Therapeutics (United States)'),
(21214, 18208, 'no_lang_code', 'name', 'RGenix (United States)'),
(21215, 18209, 'no_lang_code', 'name', 'Canam Group (Canada)'),
(21216, 18210, 'en', 'name', 'Morton College'),
(21217, 18211, 'en', 'name', 'College of the Redwoods'),
(21218, 18212, 'en', 'name', 'Phillips Graduate Institute'),
(21219, 18213, 'no_lang_code', 'name', 'Aciturri (Spain)'),
(21220, 18214, 'no_lang_code', 'name', 'Hamakua-Kohala Health'),
(21221, 18215, 'en', 'name', 'Decatur Memorial Hospital'),
(21222, 18216, 'no_lang_code', 'name', 'InterveXion Therapeutics (United States)'),
(21223, 18217, 'en', 'name', 'Florence Crittenton Agency'),
(21224, 18218, 'en', 'name', 'Public Libraries of Saginaw'),
(21225, 18219, 'no_lang_code', 'name', 'Diamond Aircraft Industries (Austria)'),
(21226, 18220, 'en', 'name', 'Georgia Parent Support Network'),
(21227, 18221, 'en', 'name', 'Canadian Forestry Association'),
(21228, 18221, 'fr', 'name', 'Association ForestiĆØre Canadienne'),
(21229, 18222, 'no_lang_code', 'name', 'Inaccess (Greece)'),
(21230, 18223, 'no_lang_code', 'name', 'European Research Services'),
(21231, 18224, 'en', 'name', 'Elgin Community College'),
(21232, 18225, 'no_lang_code', 'name', 'Dieffe (Italy)'),
(21233, 18226, 'en', 'name', 'Miami County Museum'),
(21234, 18227, 'no_lang_code', 'name', 'Aztec Systems (United States)'),
(21235, 18228, 'no_lang_code', 'name', 'GreenField Specialty Alcolhols (Canada)'),
(21236, 18229, 'no_lang_code', 'name', 'Cadauta Engineering (Italy)'),
(21237, 18230, 'no_lang_code', 'name', 'Novocaptis (Greece)'),
(21238, 18231, 'no_lang_code', 'name', 'Xen Biofluidx (United States)'),
(21239, 18232, 'no_lang_code', 'name', 'Hi-Z Technology (United States)'),
(21240, 18233, 'no_lang_code', 'name', 'PeerJ (United States)'),
(21241, 18234, 'en', 'name', 'Claremont Colleges'),
(21242, 18235, 'en', 'name', 'St. Clair County Community College'),
(21243, 18236, 'no_lang_code', 'name', 'Flame Spray (Italy)'),
(21244, 18237, 'no_lang_code', 'name', 'Cortexica (United Kingdom)'),
(21245, 18238, 'no_lang_code', 'name', 'Advanced Environmental Technologies (Portugal)'),
(21246, 18239, 'no_lang_code', 'name', 'HaloSource (United States)'),
(21247, 18240, 'no_lang_code', 'name', 'FerRobotics Compliant Robot Technology (Austria)'),
(21248, 18241, 'de', 'name', 'Hochtief Aktiengesellschaft'),
(21249, 18241, 'no_lang_code', 'name', 'Hochtief (Germany)'),
(21250, 18242, 'en', 'name', 'Terra State Community College'),
(21251, 18243, 'en', 'name', 'Roper St. Francis Foundation'),
(21252, 18244, 'cs', 'name', 'Cznic'),
(21253, 18245, 'no_lang_code', 'name', 'Jule (United States)'),
(21254, 18246, 'no_lang_code', 'name', 'Aeromet International (United Kingdom)'),
(21255, 18247, 'en', 'name', 'Peer Assistance Services'),
(21256, 18248, 'en', 'name', 'Distance Expert'),
(21257, 18249, 'no_lang_code', 'name', 'Environmental and Life Support Technology (United States)'),
(21258, 18250, 'en', 'name', 'Washington Township Fire Department'),
(21259, 18251, 'bg', 'name', 'Š˜ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š½Š°ŃƒŃ‡Š½Šø ŠøŠ·ŃŠ»ŠµŠ“Š²Š°Š½ŠøŃ'),
(21260, 18251, 'en', 'name', 'Economic Research Institute'),
(21261, 18252, 'en', 'name', 'St. Louis Public Library'),
(21262, 18253, 'en', 'name', 'Wellness House'),
(21263, 18254, 'no_lang_code', 'name', 'Prothelia (United States)'),
(21264, 18255, 'no_lang_code', 'name', 'Babcock Power (United Kingdom)'),
(21265, 18256, 'no_lang_code', 'name', 'DataFlow/Alaska (United States)'),
(21266, 18257, 'no_lang_code', 'name', 'Avitronics Research (Greece)'),
(21267, 18258, 'en', 'name', 'Council for Basic Education'),
(21268, 18259, 'en', 'name', 'Sierra Institute for Community and Environment'),
(21269, 18260, 'el', 'name', 'AGILIS Ī‘.Ī•. Ī£Ī¤Ī‘Ī¤Ī™Ī£Ī¤Ī™ĪšĪ—Ī£ ĪšĪ‘Ī™ Ī Ī›Ī—Ī”ĪŸĪ¦ĪŸĪ”Ī™ĪšĪ—Ī£'),
(21270, 18260, 'no_lang_code', 'name', 'Agilis (Greece)'),
(21271, 18261, 'en', 'name', 'South West Special Recreation Association'),
(21272, 18262, 'pt', 'name', 'Centro InteruniversitÔrio de História das Ciências e da Tecnologia'),
(21273, 18263, 'no_lang_code', 'name', 'Doduco (Germany)'),
(21274, 18264, 'no_lang_code', 'name', 'Neos Resources (United Kingdom)'),
(21275, 18265, 'en', 'name', 'Green Aviation Research and Development Network'),
(21276, 18266, 'no_lang_code', 'name', 'Blue Wave Semiconductors (United States)'),
(21277, 18267, 'no_lang_code', 'name', 'Hightec MC (Switzerland)'),
(21278, 18268, 'en', 'name', 'Lafayette School Corporation'),
(21279, 18269, 'no_lang_code', 'name', 'IGI Global (United States)'),
(21280, 18270, 'no_lang_code', 'name', 'Pittini Group (Italy)'),
(21281, 18271, 'en', 'name', 'Sanford Health Foundation'),
(21282, 18272, 'no_lang_code', 'name', 'CompaƱƭa IbƩrica De Paneles SintƩticos (Spain)'),
(21283, 18273, 'en', 'name', 'Rhode Island Cancer Council'),
(21284, 18274, 'no_lang_code', 'name', 'Camfridge (United Kingdom)'),
(21285, 18275, 'en', 'name', 'Educopia Institute'),
(21286, 18276, 'no_lang_code', 'name', 'Brainstorm (Spain)'),
(21287, 18277, 'fr', 'name', 'Chambre de Commerce et d''Industrie Pays de la Loire'),
(21288, 18278, 'no_lang_code', 'name', 'Atout Vent (France)'),
(21289, 18279, 'no_lang_code', 'name', 'CEI-Bois'),
(21290, 18280, 'es', 'name', 'Fundació Privada Centre CIM'),
(21291, 18281, 'en', 'name', 'American Association of State Colleges and Universities'),
(21292, 18282, 'en', 'name', 'Spectrum Neuroscience and Treatment Institute'),
(21293, 18283, 'no_lang_code', 'name', 'Cv Cryptovision (Germany)'),
(21294, 18284, 'no_lang_code', 'name', 'Qualiber (United States)'),
(21295, 18285, 'en', 'name', 'William S. Hall Psychiatric Institute'),
(21296, 18286, 'en', 'name', 'American Sokol'),
(21297, 18287, 'en', 'name', 'Institute for Cognitive Prosthetics'),
(21298, 18288, 'no_lang_code', 'name', 'Canadian Bank Note Company (Canada)'),
(21299, 18289, 'no_lang_code', 'name', 'Active Technologies (Italy)'),
(21300, 18290, 'en', 'name', 'Innovate Manitoba'),
(21301, 18291, 'en', 'name', 'Poway Unified School District'),
(21302, 18292, 'no_lang_code', 'name', 'Global Inkjet Systems (United Kingdom)'),
(21303, 18293, 'no_lang_code', 'name', 'Hirst Magnetic Instruments (United Kingdom)'),
(21304, 18294, 'no_lang_code', 'name', 'Fibre Extrusion Technology (United Kingdom)'),
(21305, 18295, 'no_lang_code', 'name', 'Basler & Hofmann (Switzerland)'),
(21306, 18296, 'en', 'name', 'Keys for Networking'),
(21307, 18297, 'no_lang_code', 'name', 'Barriquand (France)'),
(21308, 18298, 'en', 'name', 'European Aquaculture Technology and Innovation Platform'),
(21309, 18299, 'en', 'name', 'Valley Medical Center Foundation'),
(21310, 18300, 'no_lang_code', 'name', 'Elektrobit (Austria)'),
(21311, 18301, 'en', 'name', 'Waukesha Public Library'),
(21312, 18302, 'no_lang_code', 'name', 'Intelligent Mechatronic Systems (United States)'),
(21313, 18303, 'no_lang_code', 'name', 'Bühler (Germany)'),
(21314, 18304, 'it', 'name', 'Associazione Italiana Prove non Distruttive'),
(21315, 18305, 'en', 'name', 'Institute of Social Innovations'),
(21316, 18306, 'no_lang_code', 'name', 'Family Works'),
(21317, 18307, 'no_lang_code', 'name', 'HIT09 (Italy)'),
(21318, 18308, 'no_lang_code', 'name', 'IDI Eikon (Spain)'),
(21319, 18309, 'en', 'name', 'National Federation of Advanced Information Services'),
(21320, 18310, 'en', 'name', 'Luxembourg Institute of Socio-Economic Research'),
(21321, 18310, 'fr', 'name', 'Centre d''Ʃtudes de populations, de pauvretƩ et de politiques socio-Ʃconomiques'),
(21322, 18311, 'no_lang_code', 'name', 'AliƩnorEU'),
(21323, 18312, 'en', 'name', 'World Education'),
(21324, 18313, 'de', 'name', 'Rolandmühle'),
(21325, 18313, 'no_lang_code', 'name', 'Roland Mills United (Germany)'),
(21326, 18314, 'no_lang_code', 'name', 'Aurrenak (Spain)'),
(21327, 18315, 'no_lang_code', 'name', 'Class Editori (Italy)'),
(21328, 18316, 'fr', 'name', 'FƩdƩration des Plastiques et Alliances Composites'),
(21329, 18317, 'en', 'name', 'Porter County Public Library System'),
(21330, 18318, 'fr', 'name', 'Association Nationale pour la Formation Professionnelle des Adultes'),
(21331, 18319, 'en', 'name', 'Broward County Board'),
(21332, 18320, 'en', 'name', 'Coating Development'),
(21333, 18320, 'fr', 'name', 'Coating DƩveloppement'),
(21334, 18321, 'it', 'name', 'Fondazione per Adroterapia Oncologica'),
(21335, 18322, 'en', 'name', 'Idaho Federation of Families for Children''s Mental Health'),
(21336, 18323, 'en', 'name', 'Bay Area Tumor Institute'),
(21337, 18324, 'en', 'name', 'BioIndustry Association'),
(21338, 18325, 'no_lang_code', 'name', 'Hill Group (United States)'),
(21339, 18326, 'no_lang_code', 'name', 'Duferco (Belgium)'),
(21340, 18327, 'no_lang_code', 'name', 'ConMed (Finland)'),
(21341, 18328, 'no_lang_code', 'name', 'Institute for Renewable Energy (Poland)'),
(21342, 18329, 'no_lang_code', 'name', 'DrƤger (Germany)'),
(21343, 18330, 'en', 'name', 'Indiana University Kokomo'),
(21344, 18331, 'en', 'name', 'Cancer Connection'),
(21345, 18332, 'de', 'name', 'Internationale Gesellschaft für Getreidewissenschaft und -technologie'),
(21346, 18332, 'en', 'name', 'International Association for Cereal Science and Technology'),
(21347, 18333, 'it', 'name', 'Associazione per l''Alta Formazione Giuridico-Economica'),
(21348, 18334, 'no_lang_code', 'name', 'Creative Action (United States)'),
(21349, 18335, 'no_lang_code', 'name', 'EDALab (Italy)'),
(21350, 18336, 'en', 'name', 'Association of Village Council Presidents'),
(21351, 18337, 'en', 'name', 'Indigenous Peoples Task Force'),
(21352, 18338, 'no_lang_code', 'name', 'DHL (Spain)'),
(21353, 18339, 'no_lang_code', 'name', 'Barilla (Italy)'),
(21354, 18340, 'en', 'name', 'National Library of Estonia'),
(21355, 18340, 'et', 'name', 'Eesti Rahvusraamatukogu'),
(21356, 18340, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń библиотека Эстонии'),
(21357, 18341, 'no_lang_code', 'name', 'Friuli Innovazione (Italy)'),
(21358, 18342, 'en', 'name', 'Tallahassee Memorial HealthCare'),
(21359, 18343, 'en', 'name', 'Audrain County Historical Society'),
(21360, 18344, 'no_lang_code', 'name', 'CGI (Spain)'),
(21361, 18345, 'it', 'name', 'Centro Europeo Sviluppo Applicazioni Plastiche'),
(21362, 18346, 'no_lang_code', 'name', 'E-nema (Germany)'),
(21363, 18347, 'en', 'name', 'Cleveland Law Library Association'),
(21364, 18348, 'no_lang_code', 'name', 'ConocoPhillips (United Kingdom)');
INSERT INTO `ror_settings` VALUES
(21365, 18349, 'no_lang_code', 'name', 'Vanquish Oncology (United States)'),
(21366, 18350, 'no_lang_code', 'name', 'Mistras Group (Greece)'),
(21367, 18351, 'en', 'name', 'American Society for Photogrammetry and Remote Sensing'),
(21368, 18352, 'no_lang_code', 'name', 'Intune Networks (Ireland)'),
(21369, 18353, 'en', 'name', 'Washington School for the Deaf'),
(21370, 18354, 'no_lang_code', 'name', 'as2con (Croatia)'),
(21371, 18355, 'en', 'name', 'Lithuanian Research and Studies Center'),
(21372, 18356, 'no_lang_code', 'name', 'Heliatek (Germany)'),
(21373, 18357, 'en', 'name', 'Cuesta College'),
(21374, 18358, 'en', 'name', 'Agricultural Institute of Canada'),
(21375, 18359, 'en', 'name', 'Shoshone-Bannock Tribes'),
(21376, 18360, 'en', 'name', 'Canadian Science Writers Association'),
(21377, 18361, 'no_lang_code', 'name', 'ConfometRx (United States)'),
(21378, 18362, 'no_lang_code', 'name', 'Astato (France)'),
(21379, 18363, 'no_lang_code', 'name', 'IP Group (United Kingdom)'),
(21380, 18364, 'no_lang_code', 'name', 'Freudenberg (Germany)'),
(21381, 18365, 'en', 'name', 'Southern Vermont College'),
(21382, 18366, 'en', 'name', 'Derby City Council'),
(21383, 18367, 'en', 'name', 'Empowerment Program'),
(21384, 18368, 'en', 'name', 'Quadriplegics United Against Dependency'),
(21385, 18369, 'de', 'name', 'Berufsfƶrderungszentrum Essen'),
(21386, 18370, 'en', 'name', 'Women''s Hospital, School of Medicine, Zhejiang University'),
(21387, 18370, 'zh', 'name', 'ęµ™ę±Ÿå¤§å­¦åŒ»å­¦é™¢é™„å±žå¦‡äŗ§ē§‘åŒ»é™¢'),
(21388, 18371, 'no_lang_code', 'name', 'Centro de Innovación de Infraestructuras Inteligentes (Spain)'),
(21389, 18372, 'en', 'name', 'Iowa Wesleyan College'),
(21390, 18373, 'en', 'name', 'Florida Department of Environmental Protection'),
(21391, 18374, 'en', 'name', 'Scarsdale Public Schools'),
(21392, 18375, 'en', 'name', 'Hohenstein Institute'),
(21393, 18376, 'no_lang_code', 'name', 'Eppendorf (Belgium)'),
(21394, 18377, 'en', 'name', 'Scientific Electronic Library Online'),
(21395, 18378, 'no_lang_code', 'name', 'Lybradyn (United States)'),
(21396, 18379, 'en', 'name', 'La Palma Research Centre for Future Studies'),
(21397, 18380, 'no_lang_code', 'name', 'Itelsa (Spain)'),
(21398, 18381, 'en', 'name', 'NERL Consortium'),
(21399, 18382, 'en', 'name', 'China National Health Development Research Center'),
(21400, 18382, 'zh', 'name', 'å«ē”ŸéƒØå«ē”Ÿå‘å±•ē ”ē©¶äø­åæƒ'),
(21401, 18383, 'en', 'name', 'People for Parks'),
(21402, 18384, 'no_lang_code', 'name', 'Mega Electronics (Finland)'),
(21403, 18385, 'en', 'name', 'Association for Psychological Science'),
(21404, 18386, 'no_lang_code', 'name', 'Stryker (United States)'),
(21405, 18387, 'en', 'name', 'Architect of the Capitol'),
(21406, 18388, 'en', 'name', 'Lakeview College of Nursing'),
(21407, 18389, 'en', 'name', 'Experimentarium'),
(21408, 18390, 'no_lang_code', 'name', 'Gem Pharmaceuticals (United States)'),
(21409, 18391, 'no_lang_code', 'name', 'Innovative Biologics (United States)'),
(21410, 18392, 'en', 'name', 'Push to Walk'),
(21411, 18393, 'en', 'name', 'Medical Institute for Sexual Health'),
(21412, 18394, 'no_lang_code', 'name', 'Capita (United Kingdom)'),
(21413, 18395, 'en', 'name', 'Coalition for Networked Information'),
(21414, 18396, 'en', 'name', 'Dayton Metro Library'),
(21415, 18397, 'en', 'name', 'P.L. Kapitza Institute for Physical Problems'),
(21416, 18397, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физических проблем имени П. Š›. ŠšŠ°ŠæŠøŃ†Ń‹ Š ŠŠ'),
(21417, 18398, 'no_lang_code', 'name', 'European Institute of Printed Circuits'),
(21418, 18399, 'no_lang_code', 'name', 'Digirad (United States)'),
(21419, 18400, 'en', 'name', 'The School of Theoretical Modeling'),
(21420, 18401, 'no_lang_code', 'name', 'Chilworth Technology (United Kingdom)'),
(21421, 18402, 'no_lang_code', 'name', 'Europlasma (Belgium)'),
(21422, 18403, 'no_lang_code', 'name', 'Dynamic Systems (United States)'),
(21423, 18404, 'no_lang_code', 'name', 'Fomento de San SebastiƔn (Spain)'),
(21424, 18405, 'en', 'name', 'Hyde Housing Association'),
(21425, 18406, 'no_lang_code', 'name', 'Laryngograph (United Kingdom)'),
(21426, 18407, 'en', 'name', 'Starfleet Academy'),
(21427, 18408, 'en', 'name', 'Putnam County HomeCare & Hospice Auxiliary'),
(21428, 18409, 'no_lang_code', 'name', 'DTK Electronics (Bulgaria)'),
(21429, 18410, 'en', 'name', 'Morley Library'),
(21430, 18411, 'no_lang_code', 'name', 'ImaTx (United States)'),
(21431, 18412, 'no_lang_code', 'name', 'Now Publishers (United States)'),
(21432, 18413, 'de', 'name', 'Institut für Mikroelektronik- und Mechatronik-Systeme'),
(21433, 18414, 'en', 'name', 'Barrow Arctic Science Consortium'),
(21434, 18415, 'en', 'name', 'Education of Young Leaders Society for Training and Development'),
(21435, 18416, 'no_lang_code', 'name', 'IntelliView Technologies (Canada)'),
(21436, 18417, 'en', 'name', 'Society of Thoracic Surgeons'),
(21437, 18418, 'no_lang_code', 'name', 'BioPhage Pharma (Canada)'),
(21438, 18419, 'no_lang_code', 'name', 'Hephaestus Holdings (United Kingdom)'),
(21439, 18420, 'en', 'name', 'Hispanic Serving Health Professions Schools'),
(21440, 18421, 'no_lang_code', 'name', 'Agfa-Gevaert (Canada)'),
(21441, 18422, 'en', 'name', 'Harlow College'),
(21442, 18423, 'en', 'name', 'Visiting Nurse Association of South Central Connecticut'),
(21443, 18424, 'ar', 'name', 'وزارة Ų§Ł„Ł…ŁˆŲ§Ų±ŲÆ Ų§Ł„Ł…Ų§Ų¦ŁŠŲ© ŁˆŲ§Ł„Ų±ŁŠ'),
(21444, 18424, 'en', 'name', 'Ministry of Water Resources and Irrigation'),
(21445, 18425, 'en', 'name', 'South Bend Museum of Art'),
(21446, 18426, 'no_lang_code', 'name', 'Hycult Biotech (Netherlands)'),
(21447, 18427, 'en', 'name', 'Community College of Allegheny County'),
(21448, 18428, 'no_lang_code', 'name', 'Ayogo (Canada)'),
(21449, 18429, 'en', 'name', 'Gay-Straight Alliance Network'),
(21450, 18430, 'no_lang_code', 'name', 'Asius Technologies (United States)'),
(21451, 18431, 'en', 'name', 'Women''s Refugee Commission'),
(21452, 18432, 'no_lang_code', 'name', 'Cybermoor (United Kingdom)'),
(21453, 18433, 'no_lang_code', 'name', 'Concrete Repairs (United Kingdom)'),
(21454, 18434, 'it', 'name', 'Consorzio di Bioingegneria e Informatica Medica'),
(21455, 18435, 'no_lang_code', 'name', 'Cell Microsystems (United States)'),
(21456, 18436, 'no_lang_code', 'name', 'Advantech AMT (Canada)'),
(21457, 18437, 'en', 'name', 'Justice Resource Institute'),
(21458, 18438, 'en', 'name', 'Infant Trust'),
(21459, 18439, 'no_lang_code', 'name', 'Sri Ganapathi Sachchidananda Vagdevi Center'),
(21460, 18440, 'en', 'name', 'Institute of Plasma Physics and Laser Microfusion'),
(21461, 18441, 'en', 'name', 'Reaching Across Illinois Library System'),
(21462, 18442, 'no_lang_code', 'name', 'Borit (Belgium)'),
(21463, 18443, 'en', 'name', 'Lithuanian Scientific Society'),
(21464, 18443, 'lt', 'name', 'Lietuvos Mokslininkų Sąjungos'),
(21465, 18444, 'no_lang_code', 'name', 'SPEED BioSystems (United States)'),
(21466, 18445, 'no_lang_code', 'name', 'DILAS (Germany)'),
(21467, 18446, 'no_lang_code', 'name', 'FiveFocal (United States)'),
(21468, 18447, 'no_lang_code', 'name', 'EmbedRF (United States)'),
(21469, 18448, 'no_lang_code', 'name', 'Eonic Systems (Belgium)'),
(21470, 18449, 'no_lang_code', 'name', 'Eminate (United Kingdom)'),
(21471, 18450, 'no_lang_code', 'name', 'LETIPharma (Spain)'),
(21472, 18451, 'no_lang_code', 'name', 'AnsuR Technologies (Norway)'),
(21473, 18452, 'no_lang_code', 'name', 'Assing (Italy)'),
(21474, 18453, 'no_lang_code', 'name', 'MƩcanique et Engrenage Moderne (France)'),
(21475, 18454, 'no_lang_code', 'name', 'Seneb BioSciences (United States)'),
(21476, 18455, 'en', 'name', 'Pennsylvania Academy of Family Physicians and Foundation'),
(21477, 18456, 'en', 'name', 'Visitation Catholic School'),
(21478, 18457, 'en', 'name', 'St. Vincent Hospital'),
(21479, 18458, 'en', 'name', 'Hillsborough County Anti Drug Alliance’s'),
(21480, 18459, 'no_lang_code', 'name', 'Double S Instructional Systems'),
(21481, 18460, 'no_lang_code', 'name', 'Inmatec Technologies (Germany)'),
(21482, 18461, 'en', 'name', 'McLaren Greater Lansing'),
(21483, 18462, 'no_lang_code', 'name', 'Imtech Marine (Netherlands)'),
(21484, 18463, 'en', 'name', 'Women of Faith and Hope'),
(21485, 18464, 'no_lang_code', 'name', 'GarcĆ­aRama (Spain)'),
(21486, 18465, 'no_lang_code', 'name', 'Codrico (Netherlands)'),
(21487, 18466, 'en', 'name', 'International Centre of Biodynamics'),
(21488, 18467, 'no_lang_code', 'name', 'FCT Systeme (Germany)'),
(21489, 18468, 'en', 'name', 'Center and Courses of Advanced Technology on Image Analysis'),
(21490, 18468, 'es', 'name', 'Centro y Cursos de Tecnologƭa Avanzada de AnƔlisis de ImƔgenes'),
(21491, 18469, 'en', 'name', 'CB Wetlands & Environmental Specialists'),
(21492, 18470, 'no_lang_code', 'name', 'Insight Design Labs (Canada)'),
(21493, 18471, 'en', 'name', 'International Foundation of Employee Benefit Plans'),
(21494, 18472, 'no_lang_code', 'name', 'Competitive Design Network (Spain)'),
(21495, 18473, 'en', 'name', 'SkyTeam'),
(21496, 18474, 'en', 'name', 'St. Joseph County Public Library'),
(21497, 18475, 'no_lang_code', 'name', 'Siamab Therapeutics (United States)'),
(21498, 18476, 'no_lang_code', 'name', 'Mayer Brown (United States)'),
(21499, 18477, 'en', 'name', 'Pacific Clinics'),
(21500, 18478, 'no_lang_code', 'name', 'Kayser (Italy)'),
(21501, 18479, 'en', 'name', 'Office of Missouri Governor'),
(21502, 18480, 'no_lang_code', 'name', 'Gilden Photonics (United Kingdom)'),
(21503, 18481, 'en', 'name', 'Guerilla Science'),
(21504, 18482, 'en', 'name', 'Association of British HealthTech Industries'),
(21505, 18483, 'en', 'name', 'Adaptive Sports Foundation'),
(21506, 18484, 'no_lang_code', 'name', 'Dsan Research Solutions'),
(21507, 18485, 'no_lang_code', 'name', 'Mitel (Ireland)'),
(21508, 18486, 'no_lang_code', 'name', 'Bioengineering Technology and Systems (Italy)'),
(21509, 18487, 'no_lang_code', 'name', 'Careers Europe'),
(21510, 18488, 'no_lang_code', 'name', 'Aicas (Germany)'),
(21511, 18489, 'no_lang_code', 'name', 'EnSilica (United Kingdom)'),
(21512, 18490, 'en', 'name', 'Indiana University East'),
(21513, 18491, 'en', 'name', 'Prince George''s County Public Schools'),
(21514, 18492, 'en', 'name', 'Foundation for the Research Development and Application of Composite Materials'),
(21515, 18492, 'es', 'name', 'Fundación para la Investigación, Desarrollo y Aplicación de los Materiales Compuestos'),
(21516, 18493, 'en', 'name', 'Cancer Navigator'),
(21517, 18494, 'no_lang_code', 'name', 'Hummingbird Scientific (United States)'),
(21518, 18495, 'no_lang_code', 'name', 'Carcerano (Italy)'),
(21519, 18496, 'no_lang_code', 'name', 'Lakka (Finland)'),
(21520, 18497, 'no_lang_code', 'name', 'BioInvent (Sweden)'),
(21521, 18498, 'en', 'name', 'Community Connections'),
(21522, 18499, 'no_lang_code', 'name', 'Composites Evolution (United Kingdom)'),
(21523, 18500, 'no_lang_code', 'name', 'Ɓguas de Portugal (Portugal)'),
(21524, 18501, 'no_lang_code', 'name', 'Alpha Marine (Greece)'),
(21525, 18502, 'no_lang_code', 'name', 'Asymptote (United Kingdom)'),
(21526, 18503, 'no_lang_code', 'name', 'Functional Technologies (United Kingdom)'),
(21527, 18504, 'no_lang_code', 'name', 'Gilardoni Vittorio (Italy)'),
(21528, 18505, 'no_lang_code', 'name', 'Eco-Energy (NI) (United Kingdom)'),
(21529, 18506, 'no_lang_code', 'name', '3M (Germany)'),
(21530, 18507, 'en', 'name', 'Pender County Schools'),
(21531, 18508, 'en', 'name', 'Ministry for Education and Employment'),
(21532, 18509, 'no_lang_code', 'name', 'Everis (Spain)'),
(21533, 18510, 'no_lang_code', 'name', 'Celica (Slovenia)'),
(21534, 18511, 'no_lang_code', 'name', 'Aqua Consult Ingenieur (Germany)'),
(21535, 18512, 'en', 'name', 'International Bureau for Environmental Studies'),
(21536, 18513, 'no_lang_code', 'name', 'Bexion Pharmaceuticals (United States)'),
(21537, 18514, 'no_lang_code', 'name', 'Management Intelligenter Technologien (Germany)'),
(21538, 18515, 'en', 'name', 'Lisle Library District'),
(21539, 18516, 'en', 'name', 'Wicomico County Health Department'),
(21540, 18517, 'en', 'name', 'Institute of Non-ferrous and Rare Metals'),
(21541, 18518, 'no_lang_code', 'name', 'Aswega (Estonia)'),
(21542, 18519, 'en', 'name', 'Friendship College'),
(21543, 18520, 'no_lang_code', 'name', 'Lucid Technologies (United States)'),
(21544, 18521, 'en', 'name', 'Lorain Public Library System'),
(21545, 18522, 'en', 'name', 'Torrance Memorial Medical Center'),
(21546, 18523, 'en', 'name', 'Jewish Home'),
(21547, 18524, 'en', 'name', 'University Hospital Southampton NHS Foundation Trust'),
(21548, 18525, 'en', 'name', 'National Food Chain Safety Office'),
(21549, 18526, 'en', 'name', 'Italian National Unification'),
(21550, 18526, 'it', 'name', 'Ente nazionale italiano di unificazione'),
(21551, 18527, 'no_lang_code', 'name', 'Facit Research (Germany)'),
(21552, 18528, 'en', 'name', 'Federation of European Motorcyclists Associations'),
(21553, 18529, 'en', 'name', 'Hudson Library and Historical Society'),
(21554, 18530, 'no_lang_code', 'name', 'AXYS Technologies (Canada)'),
(21555, 18531, 'en', 'name', 'Tempe Union High School District'),
(21556, 18532, 'no_lang_code', 'name', 'Lucchini (Italy)'),
(21557, 18533, 'no_lang_code', 'name', 'Lanner Group (United Kingdom)'),
(21558, 18534, 'no_lang_code', 'name', 'Medicon (United States)'),
(21559, 18535, 'en', 'name', 'Brandywine Counseling & Community Services'),
(21560, 18536, 'en', 'name', 'Faulkner University'),
(21561, 18537, 'no_lang_code', 'name', 'Amphenol (United Kingdom)'),
(21562, 18538, 'it', 'name', 'Famiglia Artigiana Fratelli Ruffatti'),
(21563, 18539, 'no_lang_code', 'name', 'Vionyx (United States)'),
(21564, 18540, 'en', 'name', 'Lakeshore Technical College'),
(21565, 18541, 'fr', 'name', 'GDG Environnement'),
(21566, 18542, 'no_lang_code', 'name', 'MobiLife (United States)'),
(21567, 18543, 'en', 'name', 'McHenry County College'),
(21568, 18544, 'no_lang_code', 'name', 'Cambustion (United Kingdom)'),
(21569, 18545, 'en', 'name', 'Maine Parent Federation'),
(21570, 18546, 'no_lang_code', 'name', 'Advanced Sensor Technologies (United States)'),
(21571, 18547, 'en', 'name', 'Monroe County Historical Museum'),
(21572, 18548, 'no_lang_code', 'name', 'Centrotherm Photovoltaics (Germany)'),
(21573, 18549, 'no_lang_code', 'name', 'Imaging Biometrics (United States)'),
(21574, 18550, 'no_lang_code', 'name', 'LSVT Global (United States)'),
(21575, 18551, 'en', 'name', 'Women With A Vision'),
(21576, 18552, 'en', 'name', 'Detroit Recovery Project'),
(21577, 18553, 'en', 'name', 'Missouri Department of Elementary and Secondary Education'),
(21578, 18554, 'no_lang_code', 'name', 'Dykema (United States)'),
(21579, 18555, 'no_lang_code', 'name', 'Gel-Del Technologies (United States)'),
(21580, 18556, 'en', 'name', 'Basque Energy Cluster'),
(21581, 18556, 'es', 'name', 'Cluster de EnergĆ­a'),
(21582, 18557, 'en', 'name', 'Center for Health Care Services'),
(21583, 18558, 'en', 'name', 'Lebanese Agricultural Research Institute'),
(21584, 18559, 'no_lang_code', 'name', 'Globe Water (Sweden)'),
(21585, 18560, 'en', 'name', 'International Transports & Cargo Agency'),
(21586, 18561, 'no_lang_code', 'name', 'Breyer Group (United Kingdom)'),
(21587, 18562, 'no_lang_code', 'name', 'Heraeus (United Kingdom)'),
(21588, 18563, 'en', 'name', 'A.V. Shubnikov Institute of Crystallography'),
(21589, 18563, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кристаллографии им. А.Š’. Шубникова Российской акаГемии наук'),
(21590, 18564, 'no_lang_code', 'name', 'Treventis (United States)'),
(21591, 18565, 'no_lang_code', 'name', 'Acciai Speciali Terni (Italy)'),
(21592, 18566, 'en', 'name', 'Westlake Porter Public Library'),
(21593, 18567, 'en', 'name', 'Commonwealth Fund'),
(21594, 18568, 'no_lang_code', 'name', 'KPMG (United States)'),
(21595, 18569, 'no_lang_code', 'name', 'Materion (United Kingdom)'),
(21596, 18570, 'no_lang_code', 'name', 'Dow Chemical (Netherlands)'),
(21597, 18571, 'no_lang_code', 'name', 'Centre de Pyrolyse de Marienau (France)'),
(21598, 18572, 'en', 'name', 'Connecticut State Department of Education'),
(21599, 18573, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по инженерна Ń…ŠøŠ¼ŠøŃ'),
(21600, 18573, 'en', 'name', 'Institute of Chemical Engineering'),
(21601, 18574, 'no_lang_code', 'name', 'Lati Industria Termoplastici (Italy)'),
(21602, 18575, 'en', 'name', 'UF Health Shands Rehab Hospital'),
(21603, 18576, 'no_lang_code', 'name', 'Data Fusion Research Center'),
(21604, 18577, 'en', 'name', 'Tuscaloosa City Schools'),
(21605, 18578, 'no_lang_code', 'name', 'FACET Innovations (United States)'),
(21606, 18579, 'en', 'name', 'Asian Pacific Partners for Empowerment, Advocacy and Leadership'),
(21607, 18580, 'no_lang_code', 'name', 'Nissatech Innovation Centre (Serbia)'),
(21608, 18581, 'en', 'name', 'West County Health Centers'),
(21609, 18582, 'no_lang_code', 'name', 'I.CO.P (Italy)'),
(21610, 18583, 'no_lang_code', 'name', 'Omnicom Group (United States)'),
(21611, 18584, 'no_lang_code', 'name', 'Adaptronica (Poland)'),
(21612, 18585, 'en', 'name', 'Institute of Energy Problems of Chemical Physics'),
(21613, 18585, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… проблем химической физики им. Š’.Š›. Š¢Š°Š»ŃŒŃ€Š¾Š·Šµ Российской акаГемии наук'),
(21614, 18586, 'de', 'name', 'Institut für Automation und Kommunikation'),
(21615, 18587, 'no_lang_code', 'name', 'Information Highway Group (Spain)'),
(21616, 18588, 'en', 'name', 'National Institute of Marine Sciences and Technologies'),
(21617, 18588, 'fr', 'name', 'Institut National des Sciences et Technologies de la Mer'),
(21618, 18589, 'no_lang_code', 'name', 'DanTech (United Kingdom)'),
(21619, 18590, 'en', 'name', 'Stretch to Kindergarten'),
(21620, 18591, 'no_lang_code', 'name', 'Delfoi (Finland)'),
(21621, 18592, 'en', 'name', 'Roots Community Health Center'),
(21622, 18593, 'no_lang_code', 'name', 'Akira (France)'),
(21623, 18594, 'en', 'name', 'Computer Professionals for Social Responsibility'),
(21624, 18595, 'en', 'name', 'Federation of Industries of Northern Greece'),
(21625, 18596, 'en', 'name', 'European Jewellery Technology Network'),
(21626, 18597, 'no_lang_code', 'name', 'BioInVision (United States)'),
(21627, 18598, 'en', 'name', 'International Office for Water'),
(21628, 18598, 'es', 'name', 'Oficina Internacional del Agua'),
(21629, 18598, 'fr', 'name', 'Office International de l’Eau'),
(21630, 18599, 'en', 'name', 'Rensselaerville Institute'),
(21631, 18600, 'en', 'name', 'Matanuska-Susitna Borough School District'),
(21632, 18601, 'en', 'name', 'Bay County Library System'),
(21633, 18602, 'no_lang_code', 'name', 'Sefacor (United States)'),
(21634, 18603, 'en', 'name', 'Euclid Public Library'),
(21635, 18604, 'en', 'name', 'Environmental Protection Agency'),
(21636, 18604, 'lt', 'name', 'Aplinkos Apsaugos Agentura'),
(21637, 18605, 'no_lang_code', 'name', 'Celoxica (United Kingdom)'),
(21638, 18606, 'en', 'name', 'General Federation of Belgian Labour'),
(21639, 18606, 'fr', 'name', 'FƩdƩration GƩnƩrale du Travail de Belgique'),
(21640, 18607, 'no_lang_code', 'name', 'Energetiq Technology (United States)'),
(21641, 18608, 'en', 'name', 'St. Elizabeth Healthcare'),
(21642, 18609, 'en', 'name', 'Kaskaskia College'),
(21643, 18610, 'no_lang_code', 'name', 'ZeptoMetrix (United States)'),
(21644, 18611, 'no_lang_code', 'name', 'Canatu (Finland)'),
(21645, 18612, 'no_lang_code', 'name', 'Goodman Research Group (United States)'),
(21646, 18613, 'no_lang_code', 'name', 'A.S.Sadykov Institute of Bioorganic Chemistry'),
(21647, 18614, 'en', 'name', 'Wave Hill'),
(21648, 18615, 'no_lang_code', 'name', 'enablingMNT (Germany)'),
(21649, 18616, 'en', 'name', 'Shelby County Schools'),
(21650, 18617, 'en', 'name', 'Lake Land College'),
(21651, 18618, 'en', 'name', 'Federation of Greek Mariculture'),
(21652, 18619, 'en', 'name', 'Foresight Project'),
(21653, 18620, 'de', 'name', 'Business Upper Austria – OƖ Wirtschaftsagentur, OƖ Wirtschaftsagentur GmbH'),
(21654, 18621, 'en', 'name', 'Changzhou No.2 People''s Hospital'),
(21655, 18621, 'zh', 'name', 'åøøå·žåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(21656, 18622, 'no_lang_code', 'name', 'Medical Indicators (United States)'),
(21657, 18623, 'en', 'name', 'Washington Institute of Dermatologic Laser Surgery'),
(21658, 18624, 'no_lang_code', 'name', 'Fujifilm (United Kingdom)'),
(21659, 18625, 'en', 'name', 'La Roche College'),
(21660, 18626, 'no_lang_code', 'name', 'AccSys Technology (United States)'),
(21661, 18627, 'en', 'name', 'Transylvania County Schools'),
(21662, 18628, 'no_lang_code', 'name', 'Broadley James (United States)'),
(21663, 18629, 'no_lang_code', 'name', 'Morgan, Lewis & Bockius (United States)'),
(21664, 18630, 'no_lang_code', 'name', 'MAKScientific (United States)'),
(21665, 18631, 'en', 'name', 'To Help Everyone Health and Wellness Centers'),
(21666, 18632, 'no_lang_code', 'name', 'CoorsTek (United Kingdom)'),
(21667, 18633, 'en', 'name', 'USTA Intermountain Colorado'),
(21668, 18634, 'ca', 'name', 'Badalona Serveis Assistencials'),
(21669, 18635, 'no_lang_code', 'name', 'MagArray (United States)'),
(21670, 18636, 'no_lang_code', 'name', 'Haydale (United Kingdom)'),
(21671, 18637, 'en', 'name', 'Institute for Sustainability'),
(21672, 18638, 'no_lang_code', 'name', 'Future Carbon (Germany)'),
(21673, 18639, 'en', 'name', 'Academic College of Tel Aviv-Yafo'),
(21674, 18640, 'en', 'name', 'Brearley School'),
(21675, 18641, 'no_lang_code', 'name', 'Bio-Quick (United States)'),
(21676, 18642, 'en', 'name', 'Appalachian College of Pharmacy'),
(21677, 18643, 'no_lang_code', 'name', 'Hydrogenics (Belgium)'),
(21678, 18644, 'en', 'name', 'Institute of Animal Reproduction and Food Research'),
(21679, 18645, 'no_lang_code', 'name', 'Arctur (Slovenia)'),
(21680, 18646, 'no_lang_code', 'name', 'Surgisense'),
(21681, 18647, 'no_lang_code', 'name', 'Elumotion (United Kingdom)'),
(21682, 18648, 'en', 'name', 'Indiana Archives and Records Administration'),
(21683, 18649, 'en', 'name', 'Cornell Scott-Hill Health Center'),
(21684, 18650, 'no_lang_code', 'name', 'Medes (France)'),
(21685, 18651, 'no_lang_code', 'name', 'Google (Canada)'),
(21686, 18652, 'no_lang_code', 'name', 'Euro Heat Pipes (Belgium)'),
(21687, 18653, 'no_lang_code', 'name', 'Becs Technology (United States)'),
(21688, 18654, 'no_lang_code', 'name', 'Faust & Backhaus Environmental Consulting'),
(21689, 18655, 'en', 'name', 'Children''s Cancer Connection'),
(21690, 18656, 'de', 'name', 'Leibniz-Institut für Agrartechnik und Bioökonomie'),
(21691, 18656, 'en', 'name', 'Leibniz Institute for Agricultural Engineering and Bioeconomy'),
(21692, 18657, 'en', 'name', 'Estonian Educational and Research Network'),
(21693, 18658, 'en', 'name', 'Sydney Children’s Hospitals Network'),
(21694, 18659, 'no_lang_code', 'name', 'Codema (Ireland)'),
(21695, 18660, 'no_lang_code', 'name', 'Innovative Research (United States)'),
(21696, 18661, 'no_lang_code', 'name', 'KSB (Germany)'),
(21697, 18662, 'en', 'name', 'School of the Art Institute of Chicago'),
(21698, 18662, 'fr', 'name', 'Ɖcole de l''institut d''art de chicago'),
(21699, 18663, 'no_lang_code', 'name', 'Nuclea Biotechnologies (United States)'),
(21700, 18664, 'no_lang_code', 'name', 'ALA Scientific Instruments (United States)'),
(21701, 18665, 'en', 'name', 'Euro Inter'),
(21702, 18666, 'no_lang_code', 'name', 'Holscot Fluoroplastics (United Kingdom)'),
(21703, 18667, 'no_lang_code', 'name', 'Bioiliberis Research and Development (Spain)'),
(21704, 18668, 'no_lang_code', 'name', 'De Agostini (Italy)'),
(21705, 18669, 'no_lang_code', 'name', 'Claremont BioSolutions (United States)'),
(21706, 18670, 'en', 'name', 'Montel Williams MS Foundation'),
(21707, 18671, 'en', 'name', 'Career Education Corporation'),
(21708, 18672, 'no_lang_code', 'name', 'Bactiguard (Sweden)'),
(21709, 18673, 'en', 'name', 'Public School Forum of North Carolina'),
(21710, 18674, 'no_lang_code', 'name', 'Immucor (United States)'),
(21711, 18675, 'no_lang_code', 'name', 'HQ-Dielectrics (Germany)'),
(21712, 18676, 'en', 'name', 'Central Maine Community College'),
(21713, 18677, 'no_lang_code', 'name', 'Civilized Software (United States)'),
(21714, 18678, 'en', 'name', 'Masonry Society'),
(21715, 18679, 'no_lang_code', 'name', 'Genotype (Germany)'),
(21716, 18680, 'en', 'name', 'Arizona Youth Partnership'),
(21717, 18681, 'no_lang_code', 'name', 'Orano (United States)'),
(21718, 18682, 'en', 'name', 'Westbury Friends School'),
(21719, 18683, 'no_lang_code', 'name', 'Bio S&T (Canada)'),
(21720, 18684, 'no_lang_code', 'name', 'InSightec (Israel)'),
(21721, 18685, 'no_lang_code', 'name', 'HT Laser (Finland)'),
(21722, 18686, 'no_lang_code', 'name', 'AEC3 (United Kingdom)'),
(21723, 18687, 'en', 'name', 'Weldon City Schools'),
(21724, 18688, 'no_lang_code', 'name', 'Arge Vegetationsƶkologie und Landschaftsplanung'),
(21725, 18689, 'en', 'name', 'Clark County School District'),
(21726, 18690, 'no_lang_code', 'name', 'J. J. Keller & Associates (United States)'),
(21727, 18691, 'en', 'name', 'Tahirih Justice Center'),
(21728, 18692, 'en', 'name', 'Institute for Behavioral Medicine'),
(21729, 18693, 'no_lang_code', 'name', 'Smart Monitor (United States)'),
(21730, 18694, 'no_lang_code', 'name', 'DompƩ (Italy)'),
(21731, 18695, 'no_lang_code', 'name', 'Bayessoft (United States)'),
(21732, 18696, 'en', 'name', 'Ministry of Health'),
(21733, 18696, 'pt', 'name', 'Ministério da Saúde'),
(21734, 18697, 'no_lang_code', 'name', 'Amires (Czechia)'),
(21735, 18698, 'fr', 'name', 'RĆ©seau pour la Transition ƉnergĆ©tique'),
(21736, 18699, 'en', 'name', 'Wig Bank of Caldwell County'),
(21737, 18700, 'en', 'name', 'Center for Transboundary Cooperation'),
(21738, 18701, 'en', 'name', 'International Rehabilitation Forum'),
(21739, 18702, 'de', 'name', 'GründerRegio M'),
(21740, 18703, 'no_lang_code', 'name', 'Enco (Italy)'),
(21741, 18704, 'en', 'name', 'Wellness House'),
(21742, 18705, 'no_lang_code', 'name', 'InTouch (United Kingdom)'),
(21743, 18706, 'en', 'name', 'Lydia Project'),
(21744, 18707, 'en', 'name', 'Greenhope Services for Women'),
(21745, 18708, 'no_lang_code', 'name', 'ESP Central (United Kingdom)'),
(21746, 18709, 'no_lang_code', 'name', 'ClinInfo (France)'),
(21747, 18710, 'fr', 'name', 'Centre d''Etudes Superieures Industrielles'),
(21748, 18711, 'no_lang_code', 'name', 'LifeSensors (United States)'),
(21749, 18712, 'no_lang_code', 'name', 'Juice Technology (United Kingdom)'),
(21750, 18713, 'no_lang_code', 'name', 'BioNTech (Germany)'),
(21751, 18714, 'en', 'name', 'Jefferson College'),
(21752, 18715, 'no_lang_code', 'name', 'Generic Robotics (United Kingdom)'),
(21753, 18716, 'no_lang_code', 'name', 'Sicherheit, Informatik und Zentrale Services'),
(21754, 18717, 'no_lang_code', 'name', 'Intellijoint Surgical (Canada)'),
(21755, 18718, 'en', 'name', 'Leelanau Historical Society'),
(21756, 18719, 'en', 'name', 'Susan Cohan Colon Cancer Foundation'),
(21757, 18720, 'en', 'name', 'Cliff Funnell Associates'),
(21758, 18721, 'en', 'name', 'Virginia Hospital Center'),
(21759, 18722, 'fr', 'name', 'Association pour le Developpement de l''Institut de la Viande'),
(21760, 18723, 'no_lang_code', 'name', 'Krejci Engineering (Czechia)'),
(21761, 18724, 'en', 'name', 'Danish Agriculture and Food Council'),
(21762, 18725, 'en', 'name', 'Cook Memorial Public Library District'),
(21763, 18726, 'de', 'name', 'Gesellschaft zur Fƶrderung angewandter Informatik'),
(21764, 18727, 'no_lang_code', 'name', 'Graybug Vision (United States)'),
(21765, 18728, 'no_lang_code', 'name', 'Krones (Germany)'),
(21766, 18729, 'no_lang_code', 'name', 'Engineering Arts (United States)'),
(21767, 18730, 'en', 'name', 'Chipola College'),
(21768, 18731, 'en', 'name', 'Perinatal Treatment Services'),
(21769, 18732, 'hu', 'name', 'Innostart Nemzeti Üzleti és InnovÔciós Központ AlapítvÔny'),
(21770, 18732, 'no_lang_code', 'name', 'Innostart (Hungary)'),
(21771, 18733, 'no_lang_code', 'name', 'M.A. Turbo Engine (Canada)'),
(21772, 18734, 'en', 'name', 'Bangkok Metropolitan Administration'),
(21773, 18735, 'no_lang_code', 'name', 'Holland Renewable Energy Technologies (Netherlands)'),
(21774, 18736, 'en', 'name', 'South Florida Veterans Affairs Foundation for Research and Education'),
(21775, 18737, 'en', 'name', 'Community Education Group'),
(21776, 18738, 'en', 'name', 'European Organisation for Research and Treatment of Cancer'),
(21777, 18739, 'en', 'name', 'Society for the Preservation of Long Island Antiquities'),
(21778, 18740, 'no_lang_code', 'name', 'AirBoss Defense (Canada)'),
(21779, 18741, 'en', 'name', 'Southerners on New Ground'),
(21780, 18742, 'no_lang_code', 'name', 'Elusys Therapeutics (United States)'),
(21781, 18743, 'no_lang_code', 'name', 'Earthwise Construction (United Kingdom)'),
(21782, 18744, 'en', 'name', 'Illinois Archaeological Survey'),
(21783, 18745, 'no_lang_code', 'name', 'Digital Video (Italy)'),
(21784, 18746, 'en', 'name', 'Bay Medical Center'),
(21785, 18747, 'no_lang_code', 'name', 'Digipolis (Belgium)'),
(21786, 18748, 'no_lang_code', 'name', 'Evigia Systems (United States)'),
(21787, 18749, 'en', 'name', 'Green Mountain College'),
(21788, 18750, 'en', 'name', 'Nicholas Conor Institute'),
(21789, 18751, 'en', 'name', 'Forest-based Sector Technology Platform'),
(21790, 18752, 'de', 'name', 'Generaldirektion der Kommission'),
(21791, 18752, 'en', 'name', 'Directorate-General for Energy'),
(21792, 18752, 'fr', 'name', 'Direction GĆ©nĆ©rale Ɖnergie'),
(21793, 18753, 'en', 'name', 'Joint Institute for High Temperatures'),
(21794, 18753, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований Российской акаГемии наук'),
(21795, 18754, 'en', 'name', 'Fevered Sleep'),
(21796, 18755, 'en', 'name', 'Seabrook'),
(21797, 18756, 'en', 'name', 'Clay County Archives and Historical Library'),
(21798, 18757, 'en', 'name', 'Pentacle'),
(21799, 18758, 'no_lang_code', 'name', 'Critical Systems Labs'),
(21800, 18759, 'no_lang_code', 'name', 'Cyberce (Greece)'),
(21801, 18760, 'no_lang_code', 'name', '77 Elektronika (Hungary)'),
(21802, 18761, 'no_lang_code', 'name', 'Flentrop Orgelbouw (Netherlands)'),
(21803, 18762, 'en', 'name', 'Chimp Haven'),
(21804, 18763, 'no_lang_code', 'name', 'Betrieb für InformationsTechnologie'),
(21805, 18764, 'en', 'name', 'Waldo County Healthcare'),
(21806, 18765, 'no_lang_code', 'name', 'CIT Energy Management (Sweden)'),
(21807, 18766, 'no_lang_code', 'name', 'DSI Informationstechnik (Germany)'),
(21808, 18767, 'no_lang_code', 'name', 'Accessible Designs (United States)'),
(21809, 18768, 'no_lang_code', 'name', 'AmpTec (Germany)'),
(21810, 18769, 'en', 'name', 'Bath Labs'),
(21811, 18770, 'en', 'name', 'European Federation of Nurses Associations'),
(21812, 18771, 'en', 'name', 'Preble County District Library'),
(21813, 18772, 'no_lang_code', 'name', 'Information Today (United States)'),
(21814, 18773, 'no_lang_code', 'name', 'Association of French Motorway Companies'),
(21815, 18774, 'no_lang_code', 'name', 'Daat Research (United States)'),
(21816, 18775, 'no_lang_code', 'name', 'CertiChem (United States)'),
(21817, 18776, 'no_lang_code', 'name', 'Evidence (Italy)'),
(21818, 18777, 'en', 'name', 'Kokomo-Howard County Public Library'),
(21819, 18778, 'no_lang_code', 'name', 'Vinngroup (Sweden)'),
(21820, 18779, 'no_lang_code', 'name', 'Cognia (United States)'),
(21821, 18780, 'en', 'name', 'Supreme Court of Ohio'),
(21822, 18781, 'no_lang_code', 'name', 'INERCO (Spain)'),
(21823, 18782, 'en', 'name', 'Yale Griffin Prevention Research Center'),
(21824, 18783, 'en', 'name', 'Wisconsin Institute of Nutrition Research Foundation'),
(21825, 18784, 'en', 'name', 'Fairview Health Services'),
(21826, 18785, 'no_lang_code', 'name', 'IPCOS (Belgium)'),
(21827, 18786, 'en', 'name', 'Lunaria Association'),
(21828, 18787, 'no_lang_code', 'name', 'Gedex (Canada)'),
(21829, 18788, 'no_lang_code', 'name', 'Inox Pneumatic (Denmark)'),
(21830, 18789, 'en', 'name', 'Sapir College'),
(21831, 18789, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ הפיר'),
(21832, 18790, 'no_lang_code', 'name', 'BISDN (Germany)'),
(21833, 18791, 'en', 'name', 'Institute of Chemistry'),
(21834, 18792, 'no_lang_code', 'name', 'Magyar Posta'),
(21835, 18793, 'en', 'name', 'Institute of Ideas'),
(21836, 18794, 'de', 'name', 'Ɩsterreichisches Forschungsinstitut für Artificial Intelligence'),
(21837, 18794, 'en', 'name', 'Austrian Research Institute for Artificial Intelligence'),
(21838, 18795, 'no_lang_code', 'name', 'Eaker Epidemiology Enterprises (United States)'),
(21839, 18796, 'en', 'name', 'Department of Geodesy, Remote Sensing and Land Offices'),
(21840, 18796, 'hu', 'name', 'GeodƩzia, TƔvƩrzƩkelƩs Ʃs Fƶldhivatalok TanszƩk'),
(21841, 18797, 'en', 'name', 'St. Charles Community College'),
(21842, 18798, 'no_lang_code', 'name', 'Curtumes Aveneda (Portugal)'),
(21843, 18799, 'no_lang_code', 'name', 'DryScrub (United States)'),
(21844, 18800, 'en', 'name', 'Behavioral Health Network'),
(21845, 18801, 'no_lang_code', 'name', 'Biosensia (Ireland)'),
(21846, 18802, 'en', 'name', 'United States Government Publishing Office'),
(21847, 18803, 'no_lang_code', 'name', 'Global RNA (United States)'),
(21848, 18804, 'no_lang_code', 'name', 'Delap & Waller (Ireland)'),
(21849, 18805, 'no_lang_code', 'name', 'A E Solutions (United Kingdom)'),
(21850, 18806, 'no_lang_code', 'name', 'Dacord (United Kingdom)'),
(21851, 18807, 'no_lang_code', 'name', 'Clarity Biosolutions (United Kingdom)'),
(21852, 18808, 'en', 'name', 'Center for Discovery'),
(21853, 18809, 'no_lang_code', 'name', 'Delta T Devices (United Kingdom)'),
(21854, 18810, 'en', 'name', 'CaringFamily'),
(21855, 18811, 'en', 'name', 'I.I. Schmalhausen Institute of Zoology'),
(21856, 18811, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ зоології ім. І. І. Шмальгаузена ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(21857, 18812, 'en', 'name', 'Institute of World Economy and International Relations'),
(21858, 18812, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мировой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(21859, 18813, 'en', 'name', 'Cleveland State Community College'),
(21860, 18814, 'no_lang_code', 'name', 'LaserLeap Technologies (Portugal)'),
(21861, 18815, 'no_lang_code', 'name', 'Cellular Research (United States)'),
(21862, 18816, 'en', 'name', 'CoxHealth'),
(21863, 18817, 'en', 'name', 'National Healthcare Service Center'),
(21864, 18817, 'hu', 'name', 'Állami Egészségügyi EllÔtó Központ'),
(21865, 18818, 'en', 'name', 'Victory Christian International Ministries'),
(21866, 18819, 'en', 'name', 'Riverkids Pediatric Home Health'),
(21867, 18820, 'en', 'name', 'Vermont Cancer Support Network'),
(21868, 18821, 'en', 'name', 'Shaw Regional Cancer Center'),
(21869, 18822, 'en', 'name', 'Health Initiatives for Youth'),
(21870, 18823, 'en', 'name', 'Westside Institute for Science and Education'),
(21871, 18824, 'en', 'name', 'Archmere Academy'),
(21872, 18825, 'no_lang_code', 'name', 'Bitecic (United Kingdom)'),
(21873, 18826, 'no_lang_code', 'name', 'Bright Cloud International (United States)'),
(21874, 18827, 'no_lang_code', 'name', 'EnginSoft (United Kingdom)'),
(21875, 18828, 'en', 'name', 'Research Centre for Applied System Safety and Industrial Medicine'),
(21876, 18829, 'no_lang_code', 'name', 'CEDEO (Italy)'),
(21877, 18830, 'no_lang_code', 'name', 'Eisenmann (Germany)'),
(21878, 18831, 'no_lang_code', 'name', 'Hanzo Archives (United Kingdom)'),
(21879, 18832, 'no_lang_code', 'name', 'Ansys (Canada)'),
(21880, 18833, 'en', 'name', 'Center for Theoretical Physics'),
(21881, 18834, 'no_lang_code', 'name', 'Amron (United States)'),
(21882, 18835, 'en', 'name', 'Life Monologue Project'),
(21883, 18836, 'en', 'name', 'Excellence Community Education Welfare Scheme'),
(21884, 18837, 'en', 'name', 'Domus Academy'),
(21885, 18838, 'en', 'name', 'Military Electronic Industries'),
(21886, 18838, 'no_lang_code', 'name', 'Aselsan (Turkey)'),
(21887, 18838, 'tr', 'name', 'Askeri Elektronik Sanayi'),
(21888, 18839, 'en', 'name', 'Urbana University'),
(21889, 18840, 'no_lang_code', 'name', 'Applied Logic Laboratory (Hungary)'),
(21890, 18841, 'en', 'name', 'JKM Library'),
(21891, 18842, 'no_lang_code', 'name', 'HITEK Electronic Materials (United Kingdom)'),
(21892, 18843, 'no_lang_code', 'name', 'MEMX (United States)'),
(21893, 18844, 'no_lang_code', 'name', 'Datamed Systems Integration (Greece)'),
(21894, 18845, 'no_lang_code', 'name', 'Harmonic Drive (Germany)'),
(21895, 18846, 'no_lang_code', 'name', 'Exide Technologies (France)'),
(21896, 18847, 'fr', 'name', 'Centre de Suivi Ecologique'),
(21897, 18848, 'en', 'name', 'Wesley Theological Seminary'),
(21898, 18849, 'en', 'name', 'Family Health Enterprise'),
(21899, 18850, 'no_lang_code', 'name', 'Alterra Power (Canada)'),
(21900, 18851, 'no_lang_code', 'name', 'AppliFlex (United States)'),
(21901, 18852, 'en', 'name', 'Austin Travis County Integral Care'),
(21902, 18853, 'no_lang_code', 'name', 'BioTransformations (United Kingdom)'),
(21903, 18854, 'no_lang_code', 'name', 'Ergo (Greece)'),
(21904, 18855, 'fr', 'name', 'Institut de recherches Ʃconomiques et sociales'),
(21905, 18856, 'en', 'name', 'Bienvenidos Children''s Center'),
(21906, 18857, 'no_lang_code', 'name', 'GeoAdvice Engineering (Canada)'),
(21907, 18858, 'no_lang_code', 'name', 'IS Instruments (United Kingdom)'),
(21908, 18859, 'en', 'name', 'Dr Williams''s Library'),
(21909, 18860, 'en', 'name', 'Southeastern Wisconsin Information Technology Exchange Consortium'),
(21910, 18861, 'en', 'name', 'American Bowen Academy'),
(21911, 18862, 'no_lang_code', 'name', 'Bio Med Sciences (United States)'),
(21912, 18863, 'no_lang_code', 'name', 'Argans (United Kingdom)'),
(21913, 18864, 'en', 'name', 'Aluminium Valley'),
(21914, 18864, 'fr', 'name', 'SociƩtƩ de la VallƩe de l''Aluminium'),
(21915, 18865, 'no_lang_code', 'name', 'RTD Services (Austria)'),
(21916, 18866, 'no_lang_code', 'name', 'Emissions Reduzierungs Concepte (Germany)'),
(21917, 18867, 'en', 'name', 'Gloucestershire Hospitals NHS Foundation Trust'),
(21918, 18868, 'no_lang_code', 'name', 'Aquamarine Power (United Kingdom)'),
(21919, 18869, 'no_lang_code', 'name', 'James Kent (United Kingdom)'),
(21920, 18870, 'no_lang_code', 'name', 'PCAsso Diagnostics (United States)'),
(21921, 18871, 'en', 'name', 'Environmental Research Institute'),
(21922, 18872, 'en', 'name', 'Zibo Vocational Institute'),
(21923, 18873, 'en', 'name', 'Presence Saint Joseph Hospital'),
(21924, 18874, 'no_lang_code', 'name', 'Guifi.net'),
(21925, 18875, 'no_lang_code', 'name', 'BPM (Greece)'),
(21926, 18876, 'no_lang_code', 'name', 'Bridge 129 (Italy)'),
(21927, 18877, 'no_lang_code', 'name', 'Balcas (United Kingdom)'),
(21928, 18878, 'no_lang_code', 'name', 'Hamamatsu Photonics (United Kingdom)'),
(21929, 18879, 'no_lang_code', 'name', 'ALPhANOV (France)'),
(21930, 18880, 'no_lang_code', 'name', 'Hybrigenics (France)'),
(21931, 18881, 'no_lang_code', 'name', 'Energrid (Italy)'),
(21932, 18882, 'no_lang_code', 'name', 'FEIG Electronic (Germany)'),
(21933, 18883, 'en', 'name', 'National Library of St Mark'),
(21934, 18883, 'it', 'name', 'Biblioteca Nazionale Marciana'),
(21935, 18884, 'en', 'name', 'Chabot–Las Positas Community College District'),
(21936, 18885, 'en', 'name', 'Oshkosh Public Library'),
(21937, 18886, 'no_lang_code', 'name', 'FIT Biotech (Finland)'),
(21938, 18887, 'en', 'name', 'Limerick County Council'),
(21939, 18887, 'ga', 'name', 'Comhairle Contae Luimnigh'),
(21940, 18888, 'en', 'name', 'Hearing Health Foundation'),
(21941, 18889, 'en', 'name', 'FutureEverything'),
(21942, 18890, 'es', 'name', 'Fundación Chile'),
(21943, 18891, 'fr', 'name', 'Fidal'),
(21944, 18892, 'en', 'name', 'African Malaria Network Trust'),
(21945, 18893, 'fr', 'name', 'MinistĆØre de l''Ɖconomie et des Finances'),
(21946, 18894, 'en', 'name', 'South Asian American Digital Archive'),
(21947, 18895, 'no_lang_code', 'name', 'Biopharma Technology (United Kingdom)'),
(21948, 18896, 'en', 'name', 'Ministry of Security and Justice'),
(21949, 18896, 'nl', 'name', 'Ministerie van Justitie en Veiligheid'),
(21950, 18897, 'en', 'name', 'ISC Intelligence in Science'),
(21951, 18898, 'no_lang_code', 'name', 'Idropan dell’Orto Depuratori (Italy)'),
(21952, 18899, 'no_lang_code', 'name', 'Inbios (Italy)'),
(21953, 18900, 'no_lang_code', 'name', 'TRW Automotive (France)'),
(21954, 18901, 'no_lang_code', 'name', 'Delphinus Medical Technologies (United States)'),
(21955, 18902, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠø Š¦ŠµŠ½Ń‚ŃŠŃ€ по хиГро- Šø аероГинамика'),
(21956, 18902, 'en', 'name', 'Bulgarian Ship Hydrodynamics Centre'),
(21957, 18903, 'no_lang_code', 'name', 'TumorEnd (United States)'),
(21958, 18904, 'en', 'name', 'Fund for Global Human Rights'),
(21959, 18905, 'no_lang_code', 'name', 'Equipo de Tecnicos en Transporte y Territorio'),
(21960, 18906, 'en', 'name', 'Fort Wayne Museum of Art'),
(21961, 18907, 'en', 'name', 'Links Incorporated'),
(21962, 18908, 'no_lang_code', 'name', 'Englekirk (United States)'),
(21963, 18909, 'no_lang_code', 'name', 'Darlow Smithson Productions (United Kingdom)'),
(21964, 18910, 'en', 'name', 'Hearth'),
(21965, 18911, 'no_lang_code', 'name', 'ARES Energiesysteme (Germany)'),
(21966, 18912, 'no_lang_code', 'name', 'Camelot Biomedical Systems (Italy)'),
(21967, 18913, 'en', 'name', 'Dorset Green Technology Park'),
(21968, 18914, 'no_lang_code', 'name', 'Tecnicas Cientificas Para Laboratorio (Spain)'),
(21969, 18915, 'en', 'name', 'Maryland Coalition of Families'),
(21970, 18916, 'en', 'name', 'Evansville Vanderburgh Public Library'),
(21971, 18917, 'no_lang_code', 'name', 'Bac2 (United Kingdom)'),
(21972, 18918, 'en', 'name', 'Missouri History Museum'),
(21973, 18919, 'en', 'name', 'Executive Office of Governor'),
(21974, 18920, 'no_lang_code', 'name', 'Henkel (Belgium)'),
(21975, 18921, 'no_lang_code', 'name', 'IC Consulenten Ziviltechniker (Austria)'),
(21976, 18922, 'en', 'name', 'Leuven Security Excellence Consortium'),
(21977, 18923, 'en', 'name', 'Kansas City Public Library'),
(21978, 18924, 'no_lang_code', 'name', 'TVAX Biomedical (United States)'),
(21979, 18925, 'en', 'name', 'Bacon Street'),
(21980, 18926, 'no_lang_code', 'name', 'General Patent Corporation (United States)'),
(21981, 18927, 'en', 'name', 'Lakeshore Museum Center'),
(21982, 18928, 'en', 'name', 'Society for Research on Nicotine and Tobacco'),
(21983, 18929, 'no_lang_code', 'name', 'MakeBelieve Arts (United Kingdom)'),
(21984, 18930, 'no_lang_code', 'name', 'Glottal Enterprises (United States)'),
(21985, 18931, 'en', 'name', 'South Central Community Services'),
(21986, 18932, 'en', 'name', 'Wonders and Worries'),
(21987, 18933, 'no_lang_code', 'name', 'Trapeze (United Kingdom)'),
(21988, 18934, 'es', 'name', 'Instituto Tecnológico de la Energía'),
(21989, 18935, 'en', 'name', 'Williams County Public Library'),
(21990, 18936, 'no_lang_code', 'name', 'Fuchs (United Kingdom)'),
(21991, 18937, 'en', 'name', 'South Shore YMCA'),
(21992, 18938, 'en', 'name', 'Beverly Hospital'),
(21993, 18939, 'no_lang_code', 'name', 'Biosensor Applications (Sweden)'),
(21994, 18940, 'no_lang_code', 'name', 'Bumaga (Netherlands)'),
(21995, 18941, 'no_lang_code', 'name', 'ADRIA DƩveloppement'),
(21996, 18942, 'no_lang_code', 'name', 'Euro Projects (United Kingdom)'),
(21997, 18943, 'en', 'name', 'Trinity Lutheran Seminary'),
(21998, 18944, 'no_lang_code', 'name', 'Immatics Biotechnologies (Germany)'),
(21999, 18945, 'en', 'name', 'Regional Innovation Agency of Central Hungary'),
(22000, 18946, 'en', 'name', 'Westmont Public Library'),
(22001, 18947, 'no_lang_code', 'name', 'Magnetfabrik Bonn (Germany)'),
(22002, 18948, 'no_lang_code', 'name', 'Arcola Energy (United Kingdom)'),
(22003, 18949, 'en', 'name', 'Louisiana Federation of Families for Children''s Mental Health'),
(22004, 18950, 'no_lang_code', 'name', 'IVU Traffic Technologies (Germany)'),
(22005, 18951, 'no_lang_code', 'name', 'Jowat (Germany)'),
(22006, 18952, 'en', 'name', 'Southern Illinois Healthcare'),
(22007, 18953, 'en', 'name', 'Palatine Public Library District'),
(22008, 18954, 'no_lang_code', 'name', 'Halevi Dweck (Israel)'),
(22009, 18955, 'en', 'name', 'Institute of Economics'),
(22010, 18956, 'no_lang_code', 'name', 'Conoship International (Netherlands)'),
(22011, 18957, 'no_lang_code', 'name', 'Leeoat (United States)'),
(22012, 18958, 'en', 'name', 'Licking County Alcoholism Prevention Program'),
(22013, 18959, 'en', 'name', 'Dream of Hattiesburg'),
(22014, 18960, 'en', 'name', 'Skokie Public Library'),
(22015, 18961, 'no_lang_code', 'name', 'Braemar (United Kingdom)'),
(22016, 18962, 'no_lang_code', 'name', 'Colt International (Germany)'),
(22017, 18963, 'en', 'name', 'Center for Community Health Education Research and Service'),
(22018, 18964, 'no_lang_code', 'name', 'SV Health Investors (United States)'),
(22019, 18965, 'no_lang_code', 'name', 'Handy Chemicals (Canada)'),
(22020, 18966, 'en', 'name', 'Star Center'),
(22021, 18967, 'en', 'name', 'Centre for Expertise in the Treatment and Management of Water'),
(22022, 18967, 'fr', 'name', 'Centre d''Expertise en Traitement et Gestion de l''Eau'),
(22023, 18968, 'no_lang_code', 'name', 'WPP (United Kingdom)'),
(22024, 18969, 'en', 'name', 'Grosse Pointe Public Library'),
(22025, 18970, 'pt', 'name', 'Empresa Municipal de Mobilidade e Estacionamento de Lisboa'),
(22026, 18971, 'it', 'name', 'Ev-K2-Cnr'),
(22027, 18972, 'en', 'name', 'Georgian College'),
(22028, 18973, 'no_lang_code', 'name', 'CTVC (United Kingdom)'),
(22029, 18974, 'en', 'name', 'International Brotherhood of Teamsters'),
(22030, 18975, 'en', 'name', 'Gulf Research Center'),
(22031, 18976, 'en', 'name', 'Rancho Research Institute'),
(22032, 18977, 'en', 'name', 'Gateway ImpACT Coalition'),
(22033, 18978, 'en', 'name', 'Walton Foundation for Independence'),
(22034, 18979, 'en', 'name', 'A.P. Karpinsky Russian Geological Research Institute'),
(22035, 18979, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. А.П. ŠšŠ°Ń€ŠæŠøŠ½ŃŠŗŠ¾Š³Š¾'),
(22036, 18980, 'no_lang_code', 'name', 'Iberia (Spain)'),
(22037, 18981, 'no_lang_code', 'name', 'LS Plant Breeding (United Kingdom)'),
(22038, 18982, 'en', 'name', 'Dairyland Power Cooperative'),
(22039, 18983, 'en', 'name', 'Rochester College'),
(22040, 18984, 'no_lang_code', 'name', 'Volkswagen Group (Italy)'),
(22041, 18985, 'no_lang_code', 'name', 'Danish Micro Engineering (Denmark)'),
(22042, 18986, 'no_lang_code', 'name', 'Marathon Oil (United States)'),
(22043, 18987, 'en', 'name', 'Troy Public Library'),
(22044, 18988, 'en', 'name', 'Texans Care for Children'),
(22045, 18989, 'en', 'name', 'Hope Light Foundation'),
(22046, 18990, 'no_lang_code', 'name', 'Cogent Technology (United Kingdom)'),
(22047, 18991, 'en', 'name', 'Bartlett Public Library District'),
(22048, 18992, 'en', 'name', 'Studio Museum in Harlem'),
(22049, 18993, 'no_lang_code', 'name', 'LLA Instruments (Germany)'),
(22050, 18994, 'en', 'name', 'Jefferson County Library System'),
(22051, 18995, 'no_lang_code', 'name', 'Intercytex (United Kingdom)'),
(22052, 18996, 'no_lang_code', 'name', 'Ericsson (Ireland)'),
(22053, 18997, 'no_lang_code', 'name', 'Ivanhoe Energy (Canada)'),
(22054, 18998, 'en', 'name', 'Super Stars Literacy'),
(22055, 18999, 'no_lang_code', 'name', 'GALLOP Corporation (United States)'),
(22056, 19000, 'en', 'name', 'Quinn Community Outreach Corporation'),
(22057, 19001, 'en', 'name', 'Wilderness Inquiry'),
(22058, 19002, 'no_lang_code', 'name', 'Danya Institute'),
(22059, 19003, 'en', 'name', 'Archdiocese of Chicago'),
(22060, 19004, 'en', 'name', 'Wisconsin Legislative Reference Bureau'),
(22061, 19005, 'ja', 'name', 'ćƒ¤ćƒžć‚µé†¤ę²¹'),
(22062, 19005, 'no_lang_code', 'name', 'Yamasa Corporation (Japan)'),
(22063, 19006, 'en', 'name', 'Astronomical Observatory'),
(22064, 19006, 'sr', 'name', 'AstronomickĆ” Observatoř Bělehrad'),
(22065, 19007, 'no_lang_code', 'name', 'Lavrentyev Institute of Hydrodynamics'),
(22066, 19007, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГроГинамики им. М.А. Š›Š°Š²Ń€ŠµŠ½Ń‚ŃŒŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(22067, 19008, 'ro', 'name', 'Institutul Naţional de Cercetare Dezvoltare pentru Chimie si Petrochimie'),
(22068, 19009, 'en', 'name', 'American Board of Nuclear Medicine'),
(22069, 19010, 'en', 'name', 'European Centre for Executive Development'),
(22070, 19011, 'en', 'name', 'People’s Community Baptist Church'),
(22071, 19012, 'en', 'name', 'Sense of Security'),
(22072, 19013, 'no_lang_code', 'name', 'Kyorin (United States)'),
(22073, 19014, 'no_lang_code', 'name', 'Anton Paar (Austria)'),
(22074, 19015, 'no_lang_code', 'name', 'Aktive Arc (Switzerland)'),
(22075, 19016, 'de', 'name', 'FH Aachen'),
(22076, 19017, 'en', 'name', 'Bay College'),
(22077, 19018, 'en', 'name', 'China Association of Rural Energy Industry'),
(22078, 19019, 'fr', 'name', 'CRƉ de MontrĆ©al'),
(22079, 19020, 'en', 'name', 'St. Ann''s Episcopal Church'),
(22080, 19021, 'en', 'name', 'Indianapolis Public Schools'),
(22081, 19022, 'en', 'name', 'United States Association of Blind Athletes'),
(22082, 19023, 'no_lang_code', 'name', 'Henkel (Ireland)'),
(22083, 19024, 'en', 'name', 'The Sherkow Center for Child Development and Autism Spectrum Disorder'),
(22084, 19025, 'en', 'name', 'Economical and Social Research Centre'),
(22085, 19025, 'it', 'name', 'Centro Ricerche Economico Sociali'),
(22086, 19026, 'en', 'name', 'Eastern University'),
(22087, 19027, 'en', 'name', 'Institute of Physical and Organic Chemistry'),
(22088, 19028, 'no_lang_code', 'name', 'AndroScience (United States)'),
(22089, 19029, 'en', 'name', 'Illinois Valley Community College'),
(22090, 19030, 'no_lang_code', 'name', 'SunEdison (Italy)'),
(22091, 19031, 'en', 'name', 'The Beautiful Gate'),
(22092, 19032, 'no_lang_code', 'name', 'Harman Technology (United Kingdom)'),
(22093, 19033, 'no_lang_code', 'name', 'Bruhn NewTech (Denmark)'),
(22094, 19034, 'en', 'name', 'Community Health Center Association of Mississippi'),
(22095, 19035, 'no_lang_code', 'name', 'Enclavix (United States)'),
(22096, 19036, 'en', 'name', 'Wingate Institute'),
(22097, 19036, 'he', 'name', 'מכון וינגייט'),
(22098, 19037, 'no_lang_code', 'name', 'AlgaPlus (Portugal)'),
(22099, 19038, 'no_lang_code', 'name', 'Tracon Pharmaceuticals (United States)'),
(22100, 19039, 'no_lang_code', 'name', 'Meggitt (Denmark)'),
(22101, 19040, 'en', 'name', 'Autonomous Undersea Systems Institute'),
(22102, 19041, 'en', 'name', 'Portage County District Library'),
(22103, 19042, 'no_lang_code', 'name', 'Foreco (Netherlands)');
INSERT INTO `ror_settings` VALUES
(22104, 19043, 'en', 'name', 'Ruth Mott Foundation'),
(22105, 19044, 'no_lang_code', 'name', 'GeoVax (United States)'),
(22106, 19045, 'en', 'name', 'Vessel Work'),
(22107, 19046, 'no_lang_code', 'name', 'Alexza Pharmaceuticals (United States)'),
(22108, 19047, 'no_lang_code', 'name', 'Deutsche Telekom (Hungary)'),
(22109, 19048, 'no_lang_code', 'name', 'Aries Alliance (France)'),
(22110, 19049, 'en', 'name', 'Landmark College'),
(22111, 19050, 'no_lang_code', 'name', 'Fiberline Composites (Denmark)'),
(22112, 19051, 'no_lang_code', 'name', 'GF Machining Solutions (Switzerland)'),
(22113, 19052, 'en', 'name', 'Shanghai Municipal Center For Disease Control Prevention'),
(22114, 19052, 'zh', 'name', 'äøŠęµ·åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(22115, 19053, 'no_lang_code', 'name', 'Incogna (Canada)'),
(22116, 19054, 'en', 'name', 'Brooklyn Botanic Garden'),
(22117, 19055, 'no_lang_code', 'name', 'Element Six (Ireland)'),
(22118, 19056, 'en', 'name', 'Free Methodist Church'),
(22119, 19057, 'no_lang_code', 'name', 'Biostat (United States)'),
(22120, 19058, 'en', 'name', 'Student Sponsor Partners'),
(22121, 19059, 'no_lang_code', 'name', 'BioSentinel (United States)'),
(22122, 19060, 'en', 'name', 'International Security & Counter Terrorism Academy'),
(22123, 19061, 'en', 'name', 'Cornwall Council'),
(22124, 19062, 'no_lang_code', 'name', 'Aegis Rubber Engineering (United Kingdom)'),
(22125, 19063, 'en', 'name', 'European Molecular Biology Organization'),
(22126, 19064, 'no_lang_code', 'name', 'Cisco Systems (United Kingdom)'),
(22127, 19065, 'en', 'name', 'Goalistics'),
(22128, 19066, 'en', 'name', 'Tomorrows Children’s Fund'),
(22129, 19067, 'en', 'name', 'Canadian Institute for the Relief of Pain and Disability'),
(22130, 19068, 'en', 'name', 'Caribbean Public Health Agency'),
(22131, 19069, 'en', 'name', 'Azerbaijan Research Educational Network Association'),
(22132, 19070, 'no_lang_code', 'name', 'Connexor (Finland)'),
(22133, 19071, 'en', 'name', 'Slavic Assistance Center'),
(22134, 19072, 'en', 'name', 'The University of Vermont Health Network Home Health & Hospice'),
(22135, 19073, 'no_lang_code', 'name', 'Alpex Technologies'),
(22136, 19074, 'en', 'name', 'Biomedical Engineering Society'),
(22137, 19075, 'no_lang_code', 'name', 'Data-Mate (Finland)'),
(22138, 19076, 'no_lang_code', 'name', 'PetsDx Veterinary Imaging (United States)'),
(22139, 19077, 'en', 'name', 'Brown County Public Library'),
(22140, 19078, 'en', 'name', 'Pediatric Brain Tumor Consortium Foundation'),
(22141, 19079, 'no_lang_code', 'name', 'Innovation Strategies (Spain)'),
(22142, 19080, 'en', 'name', 'London TravelWatch'),
(22143, 19081, 'no_lang_code', 'name', 'Bioprojet (France)'),
(22144, 19082, 'it', 'name', 'ASSTRA - Associazione Trasporti'),
(22145, 19083, 'en', 'name', 'Ben Franklin Technology Partners'),
(22146, 19084, 'en', 'name', 'Eye Cancer Foundation'),
(22147, 19085, 'no_lang_code', 'name', 'Itrust Consulting'),
(22148, 19086, 'en', 'name', 'Cleveland Municipal Court'),
(22149, 19087, 'en', 'name', 'Graceland University'),
(22150, 19088, 'en', 'name', 'Hernando Community Coalition'),
(22151, 19089, 'en', 'name', 'Calvary Bible College'),
(22152, 19090, 'en', 'name', 'Institute of Mathematical Problems of Biology'),
(22153, 19090, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математических проблем биологии (Š˜ŠœŠŸŠ‘ Š ŠŠ)'),
(22154, 19091, 'no_lang_code', 'name', 'ForestRe (United Kingdom)'),
(22155, 19092, 'no_lang_code', 'name', 'LogControl (Germany)'),
(22156, 19093, 'en', 'name', 'Fairfield Hospital'),
(22157, 19094, 'fr', 'name', 'Association Française de Médecine Morpho-Esthétique et anti-âge'),
(22158, 19095, 'en', 'name', 'Trees and Timber Institute'),
(22159, 19095, 'it', 'name', 'Istituto per la Valorizzazione del Legno e delle Specie Arboree'),
(22160, 19096, 'en', 'name', 'GS1 Belgium & Luxembourg'),
(22161, 19097, 'en', 'name', 'Southwestern Illinois College'),
(22162, 19098, 'no_lang_code', 'name', 'Alcoa (United Kingdom)'),
(22163, 19099, 'no_lang_code', 'name', 'Lablogic Systems (United Kingdom)'),
(22164, 19100, 'tr', 'name', 'Moleküler Biyoloji Derneği'),
(22165, 19101, 'en', 'name', 'American Board of Medical Specialties'),
(22166, 19102, 'no_lang_code', 'name', 'Aeromics (United States)'),
(22167, 19103, 'no_lang_code', 'name', 'Perma-Fix (United States)'),
(22168, 19104, 'no_lang_code', 'name', '3dMD (United Kingdom)'),
(22169, 19105, 'en', 'name', 'University Of Medicine 1 Yangon'),
(22170, 19105, 'my', 'name', 'į€†į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ ၁ ရန်ကုန်'),
(22171, 19106, 'no_lang_code', 'name', 'Dacon (Norway)'),
(22172, 19107, 'en', 'name', 'St. Margaret Mary School'),
(22173, 19108, 'en', 'name', 'Ministry of Health'),
(22174, 19109, 'no_lang_code', 'name', 'Beicip Franlab (France)'),
(22175, 19110, 'en', 'name', 'Eureka College'),
(22176, 19111, 'no_lang_code', 'name', 'Interporto Bologna (Italy)'),
(22177, 19112, 'en', 'name', 'Czech Centre for Science and Society'),
(22178, 19113, 'no_lang_code', 'name', 'InHand Electronics (United States)'),
(22179, 19114, 'no_lang_code', 'name', 'A.P.E. Research (Italy)'),
(22180, 19115, 'no_lang_code', 'name', 'ChromoLogic (United States)'),
(22181, 19116, 'no_lang_code', 'name', 'Aixtooling (Germany)'),
(22182, 19117, 'en', 'name', 'Jane Coffin Childs Memorial Fund for Medical Research'),
(22183, 19118, 'no_lang_code', 'name', 'EOX IT Services (Austria)'),
(22184, 19119, 'no_lang_code', 'name', 'TransCure BioServices (Switzerland)'),
(22185, 19120, 'no_lang_code', 'name', 'Aquilus Pharmaceuticals (United States)'),
(22186, 19121, 'en', 'name', 'Three Village Garden Club'),
(22187, 19122, 'es', 'name', 'Confederacion EspaƱola De Fabricantes De Alimentos Compuestos Para Animales'),
(22188, 19123, 'no_lang_code', 'name', 'HemoGenix (United States)'),
(22189, 19124, 'no_lang_code', 'name', 'MedPharm (United Kingdom)'),
(22190, 19125, 'no_lang_code', 'name', 'Exfo Electro-Optical Engineering (Canada)'),
(22191, 19126, 'en', 'name', 'Wings of Hope Hospice'),
(22192, 19127, 'en', 'name', 'WORLD'),
(22193, 19128, 'no_lang_code', 'name', 'Ionic Software (Belgium)'),
(22194, 19129, 'en', 'name', 'EDItEUR'),
(22195, 19130, 'no_lang_code', 'name', 'Honeywell (Romania)'),
(22196, 19131, 'no_lang_code', 'name', 'Iren Acqua Gas (Italy)'),
(22197, 19132, 'no_lang_code', 'name', 'Current Water Technologies (Canada)'),
(22198, 19133, 'no_lang_code', 'name', 'Atos (Italy)'),
(22199, 19134, 'en', 'name', 'Unio Recovery Center'),
(22200, 19135, 'en', 'name', 'International Centre for Advanced Mediterranean Agronomic Studies'),
(22201, 19135, 'it', 'name', 'Centre International de Hautes Etudes Agronomiques MƩditerranƩennes'),
(22202, 19136, 'no_lang_code', 'name', 'InterSystems (United States)'),
(22203, 19137, 'en', 'name', 'Family Support Network'),
(22204, 19138, 'no_lang_code', 'name', 'GL Chemtec International (Canada)'),
(22205, 19139, 'en', 'name', 'Plymouth Historical Museum'),
(22206, 19140, 'no_lang_code', 'name', 'Eastern Analytical (United States)'),
(22207, 19141, 'no_lang_code', 'name', 'Ardaco (Slovakia)'),
(22208, 19142, 'en', 'name', 'National Legal Medicine Institute'),
(22209, 19142, 'pt', 'name', 'Instituto Nacional de Medicina'),
(22210, 19143, 'en', 'name', 'The Urbana Free Library'),
(22211, 19144, 'no_lang_code', 'name', 'McMillan and Moss Research'),
(22212, 19145, 'en', 'name', 'Sierra Nevada Memorial Hospital Foundation'),
(22213, 19146, 'no_lang_code', 'name', 'Actalia (France)'),
(22214, 19147, 'en', 'name', 'Detroit Public Library'),
(22215, 19148, 'en', 'name', 'Central Methodist University'),
(22216, 19149, 'en', 'name', 'Statewide California Electronic Library Consortium'),
(22217, 19150, 'en', 'name', 'Temple Missionary Baptist Church'),
(22218, 19151, 'en', 'name', 'Stockholm Environment Institute'),
(22219, 19151, 'et', 'name', 'SƤƤstva Eesti Instituut, Stockholmi Keskkonnainstituudi Tallinna Keskus'),
(22220, 19152, 'it', 'name', 'Centro Italiano Materiali di Applicazione Calzaturiera'),
(22221, 19153, 'no_lang_code', 'name', 'K&S Projektmanagement (Germany)'),
(22222, 19154, 'en', 'name', 'Sacramento VA Medical Center'),
(22223, 19155, 'en', 'name', 'Wichita Clinic'),
(22224, 19156, 'en', 'name', 'Institute of Thermophysics'),
(22225, 19156, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплофизики Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(22226, 19157, 'en', 'name', 'Pension Benefit Guaranty Corporation'),
(22227, 19158, 'no_lang_code', 'name', 'Lightpoint Medical (United Kingdom)'),
(22228, 19159, 'en', 'name', 'Shriners Hospitals for Children - Salt Lake City'),
(22229, 19160, 'no_lang_code', 'name', 'Huawei Technologies (Sweden)'),
(22230, 19161, 'no_lang_code', 'name', 'Senergy (United Kingdom)'),
(22231, 19162, 'no_lang_code', 'name', 'Endomag (United Kingdom)'),
(22232, 19163, 'no_lang_code', 'name', 'Castrol (United Kingdom)'),
(22233, 19164, 'no_lang_code', 'name', 'Spectrum Pharmaceuticals (United States)'),
(22234, 19165, 'en', 'name', 'Baltic Energy Conservation Agency'),
(22235, 19166, 'en', 'name', 'ASTER'),
(22236, 19166, 'fr', 'name', 'Aster, la station de vulgarisation et de loisirs scientifiques du Bas-Saint-Laurent'),
(22237, 19167, 'no_lang_code', 'name', 'Materials Solutions (United Kingdom)'),
(22238, 19168, 'en', 'name', 'Asian Community Mental Health Services'),
(22239, 19169, 'no_lang_code', 'name', 'Icometrix (Belgium)'),
(22240, 19170, 'no_lang_code', 'name', 'Sabinet (South Africa)'),
(22241, 19171, 'no_lang_code', 'name', 'AER Group (United States)'),
(22242, 19172, 'en', 'name', 'Brown Mackie College'),
(22243, 19173, 'no_lang_code', 'name', 'Interoud Innovation (Spain)'),
(22244, 19174, 'en', 'name', 'Wake County Human Services'),
(22245, 19175, 'en', 'name', 'Sanford Children''s Specialty Clinic'),
(22246, 19176, 'en', 'name', 'Life Science Association of Manitoba'),
(22247, 19177, 'no_lang_code', 'name', 'Crest Nicholson (United Kingdom)'),
(22248, 19178, 'no_lang_code', 'name', 'A2Dominion'),
(22249, 19179, 'en', 'name', 'Mars Hill University'),
(22250, 19180, 'no_lang_code', 'name', 'Citrix (United Kingdom)'),
(22251, 19181, 'no_lang_code', 'name', 'Kistler (Switzerland)'),
(22252, 19182, 'de', 'name', 'EuropƤische Patentorganisation'),
(22253, 19182, 'en', 'name', 'European Patent Organisation'),
(22254, 19183, 'en', 'name', 'Philippine Heart Center'),
(22255, 19184, 'de', 'name', 'Bayerisches Landesamt für Denkmalpflege'),
(22256, 19185, 'en', 'name', 'Confederation of Organisations in Road Transport Enforcement'),
(22257, 19186, 'no_lang_code', 'name', 'Romus (Spain)'),
(22258, 19187, 'no_lang_code', 'name', 'HireGround (Canada)'),
(22259, 19188, 'no_lang_code', 'name', 'European Multimedia Forum (United Kingdom)'),
(22260, 19189, 'en', 'name', 'Lake Michigan College'),
(22261, 19190, 'no_lang_code', 'name', 'Viamet Pharmaceuticals (United States)'),
(22262, 19191, 'no_lang_code', 'name', 'Advent Technologies (Greece)'),
(22263, 19192, 'no_lang_code', 'name', 'Black & Veatch (United Kingdom)'),
(22264, 19193, 'fr', 'name', 'Association Nationale de Parents d''Enfants DƩficients Auditifs'),
(22265, 19194, 'no_lang_code', 'name', 'IGE Therapeutics (United States)'),
(22266, 19195, 'no_lang_code', 'name', 'BP (United States)'),
(22267, 19196, 'no_lang_code', 'name', 'Biocrates Life Sciences (Austria)'),
(22268, 19197, 'en', 'name', 'Union Hospital'),
(22269, 19198, 'no_lang_code', 'name', 'Fenix TNT (Czechia)'),
(22270, 19199, 'en', 'name', 'Wright Memorial Public Library'),
(22271, 19200, 'en', 'name', 'EcoSpark'),
(22272, 19201, 'ar', 'name', 'Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(22273, 19201, 'en', 'name', 'Center for Documentation of Cultural and Natural Heritage'),
(22274, 19201, 'no_lang_code', 'name', 'Bibliotheca Alexandrina'),
(22275, 19202, 'en', 'name', 'Mississippi Department of Education'),
(22276, 19203, 'en', 'name', 'Academy of Entrepreneurship'),
(22277, 19204, 'en', 'name', 'Children''s Treehouse Foundation'),
(22278, 19205, 'no_lang_code', 'name', 'Avecom (Belgium)'),
(22279, 19206, 'no_lang_code', 'name', 'Lehigh Hanson (Canada)'),
(22280, 19207, 'en', 'name', 'Marathon County Public Library'),
(22281, 19208, 'en', 'name', 'CSIRO Publishing'),
(22282, 19209, 'en', 'name', 'Impression 5 Science Center'),
(22283, 19210, 'en', 'name', 'Institute for Economic Research on Firms and Growth'),
(22284, 19210, 'it', 'name', 'Istituto di Ricerca sull''Impresa e lo Sviluppo'),
(22285, 19211, 'no_lang_code', 'name', 'Egetaepper (Denmark)'),
(22286, 19212, 'no_lang_code', 'name', 'Constellation Technology (United States)'),
(22287, 19213, 'en', 'name', 'Elmhurst History Museum'),
(22288, 19214, 'en', 'name', 'Belmont College'),
(22289, 19215, 'no_lang_code', 'name', 'Thales (Portugal)'),
(22290, 19216, 'en', 'name', 'Gloucestershire County Council'),
(22291, 19217, 'en', 'name', 'Women''s Oncology Research and Dialogue'),
(22292, 19218, 'no_lang_code', 'name', 'Aspen Systems (United States)'),
(22293, 19219, 'no_lang_code', 'name', 'Esys (United Kingdom)'),
(22294, 19220, 'en', 'name', 'Rainbow Hospice and Palliative Care'),
(22295, 19221, 'en', 'name', 'Daniel Drake Center'),
(22296, 19222, 'it', 'name', 'Museo Nazionale della Scienza e della Tecnologia Leonardo da Vinci'),
(22297, 19223, 'en', 'name', 'Open Source Science Project'),
(22298, 19224, 'en', 'name', 'National Federation of Families for Children''s Mental Health'),
(22299, 19225, 'no_lang_code', 'name', 'Amorim Cork Composites (Portugal)'),
(22300, 19226, 'no_lang_code', 'name', 'Dr Matzat & Co (Germany)'),
(22301, 19227, 'en', 'name', 'RCAP Solutions'),
(22302, 19228, 'no_lang_code', 'name', 'Advanced Laser Technology (United Kingdom)'),
(22303, 19229, 'en', 'name', 'Canadian Meteorological and Oceanographic Society'),
(22304, 19229, 'fr', 'name', 'La SociƩtƩ canadienne de mƩtƩorologie et d''ocƩanographie'),
(22305, 19230, 'en', 'name', 'Muskegon Area District Library'),
(22306, 19231, 'no_lang_code', 'name', 'Magna Parva (United Kingdom)'),
(22307, 19232, 'en', 'name', 'Culex Environmental'),
(22308, 19233, 'no_lang_code', 'name', 'Oceaneering International (United Kingdom)'),
(22309, 19234, 'no_lang_code', 'name', 'Biomedical Enterprises (United States)'),
(22310, 19235, 'en', 'name', 'European Membrane House'),
(22311, 19236, 'no_lang_code', 'name', 'EnerTech (United States)'),
(22312, 19237, 'en', 'name', 'Milwaukee Public Library'),
(22313, 19238, 'no_lang_code', 'name', 'M Wright and Sons (United Kingdom)'),
(22314, 19239, 'no_lang_code', 'name', 'Avantium (Netherlands)'),
(22315, 19240, 'en', 'name', 'Michigan History Center'),
(22316, 19241, 'en', 'name', 'People''s Clinic of Morehead'),
(22317, 19242, 'en', 'name', 'Wallace-Kettering Neuroscience Institute'),
(22318, 19243, 'no_lang_code', 'name', 'Integrated Micro Sensors (United States)'),
(22319, 19244, 'no_lang_code', 'name', 'Tokyo Electron (Ireland)'),
(22320, 19245, 'no_lang_code', 'name', 'Bellicum Pharmaceuticals (United States)'),
(22321, 19246, 'no_lang_code', 'name', 'BioActor (Netherlands)'),
(22322, 19247, 'en', 'name', 'University Settlement'),
(22323, 19248, 'en', 'name', 'Behavioral Tech'),
(22324, 19249, 'en', 'name', 'Applied Information Management Institute'),
(22325, 19250, 'en', 'name', 'Office of Juvenile Justice and Delinquency Prevention'),
(22326, 19251, 'no_lang_code', 'name', 'Advanced Simulation & Design (Germany)'),
(22327, 19252, 'no_lang_code', 'name', 'Computercraft (United States)'),
(22328, 19253, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по оптически материали Šø технологии ā€œŠŠŗŠ°Š“. ЙорГан ŠœŠ°Š»ŠøŠ½Š¾Š²ŃŠŗŠøā€'),
(22329, 19253, 'en', 'name', 'Institute of Optical Materials and Technologies Jordan Malinowski'),
(22330, 19254, 'no_lang_code', 'name', 'Flying-Cam (Belgium)'),
(22331, 19255, 'pt', 'name', 'Lusa AgĆŖncia de NotĆ­cias de Portugal'),
(22332, 19256, 'en', 'name', 'European Genetic Alliances Network'),
(22333, 19257, 'no_lang_code', 'name', 'CS Communication & SystĆØmes (France)'),
(22334, 19258, 'no_lang_code', 'name', 'Green Biologics (United Kingdom)'),
(22335, 19259, 'en', 'name', 'Association of Research Libraries'),
(22336, 19260, 'en', 'name', 'Walnut Creek Hearing Aid Center'),
(22337, 19261, 'en', 'name', 'European Patients Forum'),
(22338, 19262, 'en', 'name', 'Los Angeles County Arboretum and Botanic Garden'),
(22339, 19263, 'en', 'name', 'American Veterinary Medical Association'),
(22340, 19264, 'no_lang_code', 'name', 'Hugin Expert (Denmark)'),
(22341, 19265, 'en', 'name', 'Shanta Foundation'),
(22342, 19266, 'en', 'name', 'Florence International Mediation Chamber'),
(22343, 19266, 'it', 'name', 'Camera di Commercio di Firenze'),
(22344, 19267, 'no_lang_code', 'name', 'Ingenico (France)'),
(22345, 19268, 'en', 'name', 'Grand Rapids Public Library'),
(22346, 19269, 'en', 'name', 'Susan G Komen Arkansas'),
(22347, 19270, 'no_lang_code', 'name', 'ADIRA (Portugal)'),
(22348, 19271, 'no_lang_code', 'name', 'Bunnell (United States)'),
(22349, 19272, 'no_lang_code', 'name', 'Innopole (Spain)'),
(22350, 19273, 'no_lang_code', 'name', 'BroadBit (Slovakia)'),
(22351, 19274, 'no_lang_code', 'name', 'Incogen (United States)'),
(22352, 19275, 'no_lang_code', 'name', 'European Dynamics (Greece)'),
(22353, 19276, 'no_lang_code', 'name', 'Applied DNA Sciences (United States)'),
(22354, 19277, 'no_lang_code', 'name', 'Agoria (Belgium)'),
(22355, 19278, 'en', 'name', 'Highland County District Library'),
(22356, 19279, 'ga', 'name', 'РУДАЛ'),
(22357, 19279, 'no_lang_code', 'name', 'Rusal (Ireland)'),
(22358, 19280, 'en', 'name', 'Cincinnati Public Schools'),
(22359, 19281, 'en', 'name', 'Warren Clinic'),
(22360, 19282, 'no_lang_code', 'name', 'Cap Eiger (Spain)'),
(22361, 19283, 'en', 'name', 'British Nutrition Foundation'),
(22362, 19284, 'en', 'name', 'Elephant Thoughts'),
(22363, 19285, 'no_lang_code', 'name', 'Bay Glass (United States)'),
(22364, 19286, 'en', 'name', 'Arc of High Point'),
(22365, 19287, 'en', 'name', 'Vollum Institute'),
(22366, 19288, 'no_lang_code', 'name', 'Informed Horizons Education (United States)'),
(22367, 19289, 'no_lang_code', 'name', 'Infinium (United States)'),
(22368, 19290, 'en', 'name', 'Greg Foundation'),
(22369, 19291, 'no_lang_code', 'name', 'Gesellschaft für Technologieförderung Itzehoe'),
(22370, 19292, 'en', 'name', 'Integrity House'),
(22371, 19293, 'no_lang_code', 'name', 'Cenex (United Kingdom)'),
(22372, 19294, 'no_lang_code', 'name', 'Innegra Technologies (United States)'),
(22373, 19295, 'en', 'name', 'GIS - Transfer Center Foundation'),
(22374, 19296, 'en', 'name', 'Tree House Humane Society'),
(22375, 19297, 'no_lang_code', 'name', 'Enig Associates (United States)'),
(22376, 19298, 'en', 'name', 'International Primatological Society'),
(22377, 19299, 'no_lang_code', 'name', 'Fluid Operations (Germany)'),
(22378, 19300, 'no_lang_code', 'name', 'Axsym (United Kingdom)'),
(22379, 19301, 'no_lang_code', 'name', 'Pharmaxis (Australia)'),
(22380, 19302, 'no_lang_code', 'name', 'Harineras Villamayor (Spain)'),
(22381, 19303, 'no_lang_code', 'name', 'Heartware International (United States)'),
(22382, 19304, 'en', 'name', 'Calumet College of Saint Joseph, Calumet College of St. Joseph'),
(22383, 19305, 'de', 'name', 'EuropƤische Fahrgastverband'),
(22384, 19305, 'en', 'name', 'European Passengers'' Federation'),
(22385, 19306, 'en', 'name', 'Manufacturers’ Representatives Educational Research Foundation'),
(22386, 19307, 'en', 'name', 'St. Francis Hospital'),
(22387, 19308, 'no_lang_code', 'name', 'Advirna (United States)'),
(22388, 19309, 'no_lang_code', 'name', 'DIERS International (Germany)'),
(22389, 19310, 'en', 'name', 'Davenport University'),
(22390, 19311, 'no_lang_code', 'name', 'Acme Express'),
(22391, 19312, 'no_lang_code', 'name', 'Barnett Technical Services (United States)'),
(22392, 19313, 'en', 'name', 'Mansfield Richland County Public Library'),
(22393, 19314, 'no_lang_code', 'name', 'Imagina (Spain)'),
(22394, 19315, 'de', 'name', 'Reichsdruckerei'),
(22395, 19315, 'no_lang_code', 'name', 'Bundesdruckerei (Germany)'),
(22396, 19316, 'no_lang_code', 'name', 'ITEMS International'),
(22397, 19317, 'no_lang_code', 'name', 'Qualizyme (Austria)'),
(22398, 19318, 'en', 'name', 'Visions'),
(22399, 19319, 'en', 'name', 'Sacred Heart Major Seminary'),
(22400, 19320, 'en', 'name', 'Chapter Arts Centre'),
(22401, 19321, 'no_lang_code', 'name', 'VizSeek (United States)'),
(22402, 19322, 'en', 'name', 'Wheaton Franciscan Healthcare'),
(22403, 19323, 'en', 'name', 'Stan Cassidy Foundation'),
(22404, 19323, 'fr', 'name', 'La Fondation Stan Cassidy'),
(22405, 19324, 'no_lang_code', 'name', 'Geosciences Consultants'),
(22406, 19325, 'en', 'name', 'Colchester School District'),
(22407, 19326, 'no_lang_code', 'name', 'Biotronics 3D (United Kingdom)'),
(22408, 19327, 'no_lang_code', 'name', '3T RPD (United Kingdom)'),
(22409, 19328, 'en', 'name', 'Calista Elders Council'),
(22410, 19329, 'en', 'name', 'Institute of Oriental Studies'),
(22411, 19329, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Š¾ŃŃ‚Š¾ŠŗŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(22412, 19330, 'en', 'name', 'UN Women’s Office for India, Bhutan, Maldives and Sri Lanka'),
(22413, 19331, 'en', 'name', 'Akron Art Museum'),
(22414, 19332, 'en', 'name', 'Wheels of Progress'),
(22415, 19333, 'no_lang_code', 'name', 'Coillte (Ireland)'),
(22416, 19334, 'en', 'name', 'Cervantes Institute'),
(22417, 19334, 'es', 'name', 'Instituto Cervantes'),
(22418, 19335, 'de', 'name', 'Kompetenzzentrum Wasser Berlin'),
(22419, 19335, 'en', 'name', 'Berlin Centre of Competence for Water'),
(22420, 19336, 'no_lang_code', 'name', 'Onxeo (France)'),
(22421, 19337, 'no_lang_code', 'name', 'JenLab (Germany)'),
(22422, 19338, 'en', 'name', 'Neuroworx'),
(22423, 19339, 'en', 'name', 'Sibley Memorial Hospital'),
(22424, 19340, 'no_lang_code', 'name', 'JÔfi-Autókut (Hungary)'),
(22425, 19341, 'no_lang_code', 'name', 'Jürging (Germany)'),
(22426, 19342, 'no_lang_code', 'name', 'Creme Global (Ireland)'),
(22427, 19343, 'en', 'name', 'Women''s Link Worldwide'),
(22428, 19344, 'no_lang_code', 'name', 'Rolled-Ribbon (United States)'),
(22429, 19345, 'no_lang_code', 'name', 'General Paints (Ireland)'),
(22430, 19346, 'en', 'name', 'The Seany Foundation'),
(22431, 19347, 'no_lang_code', 'name', 'Insilico Biotechnology (Germany)'),
(22432, 19348, 'pl', 'name', 'Fundusz Górnośląski S.A. Oddział w Katowicach'),
(22433, 19349, 'no_lang_code', 'name', 'ElectroCell (Sweden)'),
(22434, 19350, 'no_lang_code', 'name', 'Marsilio Editori (Italy)'),
(22435, 19351, 'en', 'name', 'Kola Science Centre'),
(22436, 19351, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Кольского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(22437, 19352, 'en', 'name', 'Lindamood-Bell'),
(22438, 19353, 'no_lang_code', 'name', 'Fire Safety Design'),
(22439, 19354, 'fr', 'name', 'Euro Inox'),
(22440, 19355, 'en', 'name', 'Women''s Center of Jacksonville'),
(22441, 19356, 'no_lang_code', 'name', 'Aquamarijn (Netherlands)'),
(22442, 19357, 'en', 'name', 'Community Healthlink'),
(22443, 19358, 'no_lang_code', 'name', 'El Corte InglƩs (Spain)'),
(22444, 19359, 'en', 'name', 'Holy Cross College'),
(22445, 19360, 'en', 'name', 'Umpqua Community College'),
(22446, 19361, 'no_lang_code', 'name', 'Applied Research Using OMIC Sciences (Spain)'),
(22447, 19362, 'no_lang_code', 'name', 'JR Technology (United Kingdom)'),
(22448, 19363, 'fr', 'name', 'Centre National de la Recherche AppliquƩe au Developpement Rural'),
(22449, 19364, 'en', 'name', 'Cabrini University'),
(22450, 19365, 'en', 'name', 'Delta College'),
(22451, 19366, 'no_lang_code', 'name', 'Cantine d''Alfonso del Sordo (Italy)'),
(22452, 19367, 'no_lang_code', 'name', 'IHS Markit (Canada)'),
(22453, 19368, 'en', 'name', 'Wolfson Children''s Hospital'),
(22454, 19369, 'en', 'name', 'Institute of Solid State Chemistry and Mechanochemistry'),
(22455, 19369, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии тверГого тела Šø механохимии Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(22456, 19370, 'en', 'name', 'Cleveland Museum of Art'),
(22457, 19371, 'en', 'name', 'Washington Hospital Healthcare System'),
(22458, 19372, 'no_lang_code', 'name', 'Zanardi Fonderie (Italy)'),
(22459, 19373, 'en', 'name', 'Centre for Planning and Economic Research'),
(22460, 19374, 'en', 'name', 'The Donna Foundation'),
(22461, 19375, 'no_lang_code', 'name', 'Atlantec Enterprise Solutions (Germany)'),
(22462, 19376, 'en', 'name', 'Baton Rouge Community College'),
(22463, 19377, 'no_lang_code', 'name', 'Energidalen (Sweden)'),
(22464, 19378, 'no_lang_code', 'name', 'Biomol Informatics (Spain)'),
(22465, 19379, 'en', 'name', 'Lenawee District Library'),
(22466, 19380, 'en', 'name', 'Gateway Community Services'),
(22467, 19381, 'en', 'name', 'Foundation for Science Technology and Civilisation'),
(22468, 19382, 'en', 'name', 'Copyright Licensing Agency'),
(22469, 19383, 'no_lang_code', 'name', 'Meloni Vini (Italy)'),
(22470, 19384, 'no_lang_code', 'name', 'Orflo Technologies (United States)'),
(22471, 19385, 'en', 'name', 'Crow Canyon Archaeological Center'),
(22472, 19386, 'fr', 'name', 'Chambre de Commerce et d''Industrie Auvergne-RhƓne-Alpes'),
(22473, 19387, 'en', 'name', 'European Network for Cyber Security'),
(22474, 19388, 'en', 'name', 'Illinois Community College Board'),
(22475, 19389, 'no_lang_code', 'name', 'Arranta Bio (United States)'),
(22476, 19390, 'en', 'name', 'SHIELDS for Families'),
(22477, 19391, 'en', 'name', 'Virtua Health'),
(22478, 19392, 'no_lang_code', 'name', 'Angiologica (Italy)'),
(22479, 19393, 'no_lang_code', 'name', 'Intel (United Kingdom)'),
(22480, 19394, 'no_lang_code', 'name', 'Ernst Wittner (Austria)'),
(22481, 19395, 'en', 'name', 'Center for Health Justice'),
(22482, 19396, 'no_lang_code', 'name', 'LifeGlimmer (Germany)'),
(22483, 19397, 'no_lang_code', 'name', 'General Marble (Greece)'),
(22484, 19398, 'en', 'name', 'Ministry of Justice'),
(22485, 19398, 'sl', 'name', 'Ministrstvo za pravosodje'),
(22486, 19399, 'en', 'name', 'La Crosse Public Library'),
(22487, 19400, 'no_lang_code', 'name', 'Breivoll Inspection Technologies (Norway)'),
(22488, 19401, 'no_lang_code', 'name', 'Innovative Sensor Technology (Switzerland)'),
(22489, 19402, 'en', 'name', 'Saint Paul’s Hospital Iloilo'),
(22490, 19403, 'pt', 'name', 'Escola SecundƔria de LoulƩ'),
(22491, 19404, 'en', 'name', 'Bulgarian European Community Studies Association'),
(22492, 19405, 'no_lang_code', 'name', 'Advanced Applications (United States)'),
(22493, 19406, 'en', 'name', 'RadioIsotope Therapy of America Foundation'),
(22494, 19407, 'en', 'name', 'Institute for Reproductive and Family Health'),
(22495, 19408, 'no_lang_code', 'name', 'ACI Plastics (United States)'),
(22496, 19409, 'en', 'name', 'Sensory Processing Disorder Foundation'),
(22497, 19410, 'no_lang_code', 'name', 'Gas Sensing Solutions (United Kingdom)'),
(22498, 19411, 'no_lang_code', 'name', 'Altair Engineering (United States)'),
(22499, 19412, 'no_lang_code', 'name', 'Abzyme Therapeutics (United States)'),
(22500, 19413, 'en', 'name', 'EMH Group'),
(22501, 19414, 'en', 'name', 'Chancellor University'),
(22502, 19415, 'en', 'name', 'St. Augustine College'),
(22503, 19416, 'no_lang_code', 'name', 'SIPX (United States)'),
(22504, 19417, 'en', 'name', 'St. Laurent Institute'),
(22505, 19418, 'en', 'name', 'Hamilton East Public Library'),
(22506, 19419, 'en', 'name', 'ING Bank'),
(22507, 19419, 'nl', 'name', 'Internationale Nederlanden Groep'),
(22508, 19420, 'no_lang_code', 'name', 'Mƶssner (Germany)'),
(22509, 19421, 'no_lang_code', 'name', 'Cavion (United States)'),
(22510, 19422, 'en', 'name', 'Alexandria Department of Community and Human Services'),
(22511, 19423, 'en', 'name', 'Rock County Historical Society'),
(22512, 19424, 'no_lang_code', 'name', 'Institut für Prüftechnik Gerätebau (Germany)'),
(22513, 19425, 'en', 'name', 'Mid-Continent Public Library'),
(22514, 19426, 'en', 'name', 'Tuality Healthcare'),
(22515, 19427, 'no_lang_code', 'name', 'Alpha Therm (Germany)'),
(22516, 19428, 'no_lang_code', 'name', 'AFRY (United Kingdom)'),
(22517, 19429, 'en', 'name', 'Glass Technology Services'),
(22518, 19430, 'de', 'name', 'Hochschule Osnabrück'),
(22519, 19430, 'en', 'name', 'Osnabrück University of Applied Sciences'),
(22520, 19431, 'de', 'name', 'Bayerisches Zentrum für Angewandte Energieforschung'),
(22521, 19431, 'en', 'name', 'Bavarian Center for Applied Energy Research'),
(22522, 19432, 'no_lang_code', 'name', 'Aquatest (Czechia)'),
(22523, 19433, 'en', 'name', 'Canadore College'),
(22524, 19434, 'en', 'name', 'Łukasiewicz Research Network - Institute of Mechanised Construction and Rock Mining'),
(22525, 19434, 'pl', 'name', 'Sieć Badawcza Łukasiewicz – Instytut Mechanizacji Budownictwa i Górnictwa Skalnego'),
(22526, 19435, 'no_lang_code', 'name', 'Delsys (United States)'),
(22527, 19436, 'pt', 'name', 'Hospital de Santo Espirito de Angra do HeroĆ­smo'),
(22528, 19437, 'no_lang_code', 'name', 'Fyodor Biotechnologies (United States)'),
(22529, 19438, 'no_lang_code', 'name', 'Energy Consulting Network (Denmark)'),
(22530, 19439, 'no_lang_code', 'name', 'Cyprus Chamber of Commerce and Industry (Cyprus)'),
(22531, 19440, 'en', 'name', 'American Institute for Medical and Biological Engineering'),
(22532, 19441, 'no_lang_code', 'name', 'Amar International (United States)'),
(22533, 19442, 'no_lang_code', 'name', 'Grupo Lederval (Spain)'),
(22534, 19443, 'no_lang_code', 'name', 'BioTechnica (United States)'),
(22535, 19444, 'en', 'name', 'ThinkFirst Foundation'),
(22536, 19445, 'no_lang_code', 'name', 'Elmos Semiconductor (Germany)'),
(22537, 19446, 'en', 'name', 'Community Resources for Justice'),
(22538, 19447, 'no_lang_code', 'name', 'Construction Solutions (United States)'),
(22539, 19448, 'no_lang_code', 'name', 'Fujifilm (Netherlands)'),
(22540, 19449, 'no_lang_code', 'name', 'Corpora Systems (United States)'),
(22541, 19450, 'en', 'name', 'Advances in Mineral Metabolism'),
(22542, 19451, 'en', 'name', 'Robin Hood Foundation'),
(22543, 19452, 'en', 'name', 'Shared Adventures'),
(22544, 19453, 'en', 'name', 'Watson Clinic'),
(22545, 19454, 'no_lang_code', 'name', 'McBride and Associates (United States)'),
(22546, 19455, 'en', 'name', 'Healthy Communities Initiative of St Joseph County'),
(22547, 19456, 'no_lang_code', 'name', 'AJ Plastic Components (Ireland)'),
(22548, 19457, 'no_lang_code', 'name', 'Sun Chemical (United Kingdom)'),
(22549, 19458, 'no_lang_code', 'name', 'Hocoma (Switzerland)'),
(22550, 19459, 'en', 'name', 'Covington and Burling'),
(22551, 19460, 'no_lang_code', 'name', 'AAC Clyde Space (United Kingdom)'),
(22552, 19461, 'en', 'name', 'Broadway'),
(22553, 19462, 'en', 'name', 'Association for Childrens Mental Health'),
(22554, 19463, 'no_lang_code', 'name', 'Ludger (United Kingdom)'),
(22555, 19464, 'no_lang_code', 'name', 'Advanced Optics Solutions (Germany)'),
(22556, 19465, 'no_lang_code', 'name', 'Aero Montreal (Canada)'),
(22557, 19466, 'en', 'name', 'Aurora College'),
(22558, 19467, 'no_lang_code', 'name', 'Sumitomo Chemical (United States)'),
(22559, 19468, 'no_lang_code', 'name', 'FM Management Consultancy'),
(22560, 19469, 'en', 'name', 'Durham County Council'),
(22561, 19470, 'en', 'name', 'Southwest Autism Research & Resource Center'),
(22562, 19471, 'en', 'name', 'Raising Spirits Foundation'),
(22563, 19472, 'de', 'name', 'Institut Wohnen und Umwelt'),
(22564, 19473, 'en', 'name', 'Indianapolis Public Library'),
(22565, 19474, 'no_lang_code', 'name', 'ATON-HT (Poland)'),
(22566, 19475, 'no_lang_code', 'name', 'Filtronic (United Kingdom)'),
(22567, 19476, 'en', 'name', 'Cimosa'),
(22568, 19477, 'no_lang_code', 'name', 'Inner Health'),
(22569, 19478, 'en', 'name', 'Canton Public Library'),
(22570, 19479, 'no_lang_code', 'name', 'Dynamic Systems Analysis (Canada)'),
(22571, 19480, 'no_lang_code', 'name', 'Companhia de Equipamentos Industriais'),
(22572, 19481, 'no_lang_code', 'name', 'BMT Group (Germany)'),
(22573, 19482, 'no_lang_code', 'name', 'Deutsche Energy Agency (Germany)'),
(22574, 19483, 'no_lang_code', 'name', 'Aquasium (United Kingdom)'),
(22575, 19484, 'no_lang_code', 'name', 'De Neef Chemical Processing (Belgium)'),
(22576, 19485, 'no_lang_code', 'name', 'Fronius (Austria)'),
(22577, 19486, 'en', 'name', 'Methodist Theological School in Ohio'),
(22578, 19487, 'no_lang_code', 'name', 'Aqui-S (New Zealand)'),
(22579, 19488, 'pl', 'name', 'Dolnośląski Park Innowacji i Nauki'),
(22580, 19489, 'en', 'name', 'South Suburban Genealogical and Historical Society'),
(22581, 19490, 'no_lang_code', 'name', 'Hill+Knowlton Strategies (Estonia)'),
(22582, 19491, 'no_lang_code', 'name', 'Etra (Spain)'),
(22583, 19492, 'en', 'name', 'ACLS Humanities E-Book'),
(22584, 19493, 'en', 'name', 'Wild Lens'),
(22585, 19494, 'en', 'name', 'Eurocarers'),
(22586, 19495, 'en', 'name', 'HealthInsight'),
(22587, 19496, 'en', 'name', 'The Center for Mind-Body Medicine'),
(22588, 19497, 'no_lang_code', 'name', 'AvanSci Bio (United States)'),
(22589, 19498, 'no_lang_code', 'name', 'LyngsĆø Marine (Denmark)'),
(22590, 19499, 'en', 'name', 'Italian Trade Promotion Agency'),
(22591, 19499, 'it', 'name', 'Agenzia per la Promozione All''estero e l''Internazionalizzazione Delle Imprese Italiane'),
(22592, 19500, 'no_lang_code', 'name', 'Lumiphore (United States)'),
(22593, 19501, 'en', 'name', 'British Institute of Radiology'),
(22594, 19502, 'no_lang_code', 'name', 'Edelweiss Connect (Switzerland)'),
(22595, 19503, 'no_lang_code', 'name', 'Elwood Landscape Design (United Kingdom)'),
(22596, 19504, 'en', 'name', 'SHARE'),
(22597, 19505, 'en', 'name', 'Ministry of Transport and Communications'),
(22598, 19506, 'no_lang_code', 'name', 'EcologicTech (United States)'),
(22599, 19507, 'fr', 'name', 'Agence Nationale des Technologies de l''Information et de la Communication'),
(22600, 19508, 'en', 'name', 'Ministry of Agriculture, Forestry and Rural Development'),
(22601, 19508, 'pt', 'name', 'MinistƩrio da Agricultura, MinistƩrio da Agricultura, Florestas e Desenvolvimento Rural'),
(22602, 19509, 'no_lang_code', 'name', 'Edinethics (United Kingdom)'),
(22603, 19510, 'en', 'name', 'Crimean Astrophysical Observatory'),
(22604, 19510, 'uk', 'name', 'ŠšŃ€Ń‹Š¼ŃŠŗŠ°Ń Š°ŃŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(22605, 19511, 'en', 'name', 'Greenville Children''s Hospital'),
(22606, 19512, 'en', 'name', 'Clean Air Action Group'),
(22607, 19513, 'no_lang_code', 'name', 'Licentia (Finland)'),
(22608, 19514, 'bg', 'name', 'Централна Š»Š°Š±Š¾Ń€Š°Ń‚Š¾Ń€ŠøŃ по обща ŠµŠŗŠ¾Š»Š¾Š³ŠøŃ'),
(22609, 19514, 'en', 'name', 'Central Laboratory of General Ecology'),
(22610, 19515, 'en', 'name', 'Community Mental Health Affiliates'),
(22611, 19516, 'en', 'name', 'University of Guyana'),
(22612, 19517, 'en', 'name', 'Idaho State Department of Education'),
(22613, 19518, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Chimie, de Biologie et de Physique'),
(22614, 19519, 'no_lang_code', 'name', 'Highland Fine Cheeses (United Kingdom)'),
(22615, 19520, 'no_lang_code', 'name', 'Lemvig VarmevƦrk (Denmark)'),
(22616, 19521, 'no_lang_code', 'name', 'Food Machinery EspaƱola (Spain)'),
(22617, 19522, 'en', 'name', 'Institute for Advanced Studies in Aging and Geriatric Medicine'),
(22618, 19523, 'no_lang_code', 'name', 'Quantum Spatial (United States)'),
(22619, 19524, 'en', 'name', 'Center for Research Libraries'),
(22620, 19525, 'fr', 'name', 'Alcimed'),
(22621, 19526, 'no_lang_code', 'name', 'Machinefabriek Otto Schouten (Netherlands)'),
(22622, 19527, 'en', 'name', 'Maritime Institute in Gdansk'),
(22623, 19527, 'pl', 'name', 'Instytut Morski w Gdańsku'),
(22624, 19528, 'en', 'name', 'Cooperative Educational Service Agencies'),
(22625, 19529, 'ms', 'name', 'Institut Penyelidikan Veterinar'),
(22626, 19530, 'en', 'name', 'Bakken Museum'),
(22627, 19531, 'no_lang_code', 'name', 'Advance Composite Fibers (Spain)'),
(22628, 19532, 'en', 'name', 'Capital Area District Libraries'),
(22629, 19533, 'en', 'name', 'Tampa Veterans Research and Education Foundation'),
(22630, 19534, 'no_lang_code', 'name', 'Silence Therapeutics (United States)'),
(22631, 19535, 'en', 'name', 'Balm In Gilead'),
(22632, 19536, 'no_lang_code', 'name', 'Vantia (United Kingdom)'),
(22633, 19537, 'en', 'name', 'Energy System Analysis and Planning'),
(22634, 19538, 'en', 'name', 'Papageno Foundation'),
(22635, 19538, 'nl', 'name', 'Stichting Papageno'),
(22636, 19539, 'en', 'name', 'Environmental and Ethical Certification Institute'),
(22637, 19539, 'it', 'name', 'Istituto per la Certificazione Etica ed Ambientale'),
(22638, 19540, 'no_lang_code', 'name', 'KBC Advanced Technologies (United Kingdom)'),
(22639, 19541, 'no_lang_code', 'name', 'Evestra (United States)'),
(22640, 19542, 'no_lang_code', 'name', 'DSVM Group (Denmark)'),
(22641, 19543, 'no_lang_code', 'name', 'IMET Corporation (United States)'),
(22642, 19544, 'en', 'name', 'European Heat Pump Association'),
(22643, 19545, 'no_lang_code', 'name', 'World Scientific (Singapore)'),
(22644, 19546, 'en', 'name', 'University of Louisville Physicians'),
(22645, 19547, 'en', 'name', 'South Karelia Social and Health Care District'),
(22646, 19547, 'fi', 'name', 'EtelƤ-Karjalan sosiaali ja terveyspiiri'),
(22647, 19548, 'no_lang_code', 'name', 'Intecsea (Canada)'),
(22648, 19549, 'en', 'name', 'Berkshire Record Office'),
(22649, 19550, 'no_lang_code', 'name', 'ABM SOLID (Poland)'),
(22650, 19551, 'no_lang_code', 'name', 'VOCK Maschinen- und Stahlbau (Germany)'),
(22651, 19552, 'no_lang_code', 'name', 'Electronic Systems Design (Malta)'),
(22652, 19553, 'en', 'name', 'Northwest State Community College'),
(22653, 19554, 'no_lang_code', 'name', 'Mectron (Italy)'),
(22654, 19555, 'no_lang_code', 'name', 'Home Group (United Kingdom)'),
(22655, 19556, 'da', 'name', 'Transportministeriet'),
(22656, 19556, 'en', 'name', 'Danish Ministry of Transport'),
(22657, 19557, 'no_lang_code', 'name', 'Applied Materials (Germany)'),
(22658, 19558, 'en', 'name', 'Thomas Edison State University'),
(22659, 19559, 'en', 'name', 'Vavilov Institute of General Genetics'),
(22660, 19559, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей генетики им. Š.И. Вавилова Российской акаГемии наук'),
(22661, 19560, 'no_lang_code', 'name', 'Eagle Engineering (United States)'),
(22662, 19561, 'en', 'name', 'Yankton Rural Area Health Education Center'),
(22663, 19562, 'en', 'name', 'Stop Calling It Autism'),
(22664, 19563, 'en', 'name', 'Berlin Energy Agency'),
(22665, 19563, 'no_lang_code', 'name', 'Berliner Energieagentur (Germany)'),
(22666, 19564, 'en', 'name', 'Wilderness Matters'),
(22667, 19565, 'no_lang_code', 'name', 'Stratasys (United States)'),
(22668, 19566, 'en', 'name', 'Thrive'),
(22669, 19567, 'no_lang_code', 'name', 'Consorzio CREO (Italy)'),
(22670, 19568, 'de', 'name', 'W.A.Trapeznikow Institut für Steuerungswissenschaften'),
(22671, 19568, 'en', 'name', 'V. A. Trapeznikov Institute of Control Sciences'),
(22672, 19568, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ им. Š’. А. Трапезникова Российской акаГемии наук'),
(22673, 19569, 'no_lang_code', 'name', 'Levitronix (United States)'),
(22674, 19570, 'en', 'name', 'Temecula Valley Unified School District'),
(22675, 19571, 'no_lang_code', 'name', 'Cargill (France)'),
(22676, 19572, 'en', 'name', 'Usher III Initiative'),
(22677, 19573, 'fr', 'name', 'CƩgep de Rimouski'),
(22678, 19574, 'no_lang_code', 'name', 'Ikusi (Spain)'),
(22679, 19575, 'en', 'name', 'Livonia Public Library'),
(22680, 19576, 'it', 'name', 'Confederazione Nazionale dell''Artigianato e Della Piccola e Media Impresa'),
(22681, 19577, 'no_lang_code', 'name', 'Knudsen Plast (Denmark)'),
(22682, 19578, 'no_lang_code', 'name', 'Ahlstrom-Munksjƶ (France)'),
(22683, 19579, 'de', 'name', 'Gas- und WƤrme-Institut Essen'),
(22684, 19580, 'no_lang_code', 'name', 'Elcriton (United States)'),
(22685, 19581, 'en', 'name', 'MacCormac College'),
(22686, 19582, 'no_lang_code', 'name', 'Aitek (Italy)'),
(22687, 19583, 'en', 'name', 'Chicago Theological Seminary'),
(22688, 19584, 'en', 'name', 'Racine Public Library'),
(22689, 19585, 'en', 'name', 'American Federation of State, County and Municipal Employees'),
(22690, 19586, 'en', 'name', 'Arise'),
(22691, 19587, 'en', 'name', 'Institute of Automation and Electrometry'),
(22692, 19587, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š¼ŠµŃ‚Ń€ŠøŠø Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(22693, 19588, 'no_lang_code', 'name', 'Nitto (United States)'),
(22694, 19589, 'no_lang_code', 'name', 'Eni (France)'),
(22695, 19590, 'no_lang_code', 'name', 'Lynx (Italy)'),
(22696, 19591, 'no_lang_code', 'name', 'inuTech (Germany)'),
(22697, 19592, 'no_lang_code', 'name', 'Vaxiion Therapeutics (United States)'),
(22698, 19593, 'en', 'name', 'Soldiers'' Angels'),
(22699, 19594, 'no_lang_code', 'name', 'Spero Therapeutics (United States)'),
(22700, 19595, 'no_lang_code', 'name', 'Blastech (United Kingdom)'),
(22701, 19596, 'no_lang_code', 'name', 'Activation Laboratories'),
(22702, 19597, 'en', 'name', 'Saint Anne''s Hospital'),
(22703, 19598, 'no_lang_code', 'name', 'Central Research Laboratories (United Kingdom)'),
(22704, 19599, 'no_lang_code', 'name', 'ImmersiveTouch (United States)'),
(22705, 19600, 'en', 'name', 'Coastal Horizons Center'),
(22706, 19601, 'en', 'name', 'Phoenix Indian Medical Center'),
(22707, 19602, 'en', 'name', 'Canmore Museum and Geoscience Centre'),
(22708, 19603, 'no_lang_code', 'name', 'Acelot (United States)'),
(22709, 19604, 'no_lang_code', 'name', 'Western Oncolytics (United States)'),
(22710, 19605, 'en', 'name', 'Sonke Gender Justice'),
(22711, 19606, 'no_lang_code', 'name', 'Conwal (United States)'),
(22712, 19607, 'en', 'name', 'Bloomfield Township Public Library'),
(22713, 19608, 'no_lang_code', 'name', 'Jenoptik (Germany)'),
(22714, 19609, 'no_lang_code', 'name', 'Jefar-Indústria De Calçado'),
(22715, 19610, 'en', 'name', 'Carl Sandburg College'),
(22716, 19611, 'en', 'name', 'Clatsop Community College'),
(22717, 19612, 'no_lang_code', 'name', 'iQur (United Kingdom)'),
(22718, 19613, 'no_lang_code', 'name', 'Vergnano (Italy)'),
(22719, 19614, 'en', 'name', 'Youth Action on Tobacco Control and Health'),
(22720, 19615, 'en', 'name', 'E-Connection'),
(22721, 19616, 'en', 'name', 'Task Group for the Extension of the Continental Shelf'),
(22722, 19616, 'pt', 'name', 'Estrutura de Missão para a Extensão da Plataforma Continental'),
(22723, 19617, 'en', 'name', 'Joint Clinical Research Centre'),
(22724, 19618, 'no_lang_code', 'name', 'Innolume (Germany)'),
(22725, 19619, 'en', 'name', 'Heartland Alliance'),
(22726, 19620, 'no_lang_code', 'name', 'IGNIS Innovation (Canada)'),
(22727, 19621, 'en', 'name', 'Life Raft Group'),
(22728, 19622, 'no_lang_code', 'name', 'Fraport (Germany)'),
(22729, 19623, 'en', 'name', 'Connecticut Center for Primary Care'),
(22730, 19624, 'no_lang_code', 'name', 'Crown Packaging (United Kingdom)'),
(22731, 19625, 'en', 'name', 'Telluride Adaptive Sports Program'),
(22732, 19626, 'en', 'name', 'College of General and Vocational Education'),
(22733, 19626, 'fr', 'name', 'Cégep de Jonquière'),
(22734, 19627, 'no_lang_code', 'name', 'IMS Nanofabrication (Austria)'),
(22735, 19628, 'no_lang_code', 'name', 'Double Helix (United States)'),
(22736, 19629, 'no_lang_code', 'name', 'Innova (Hungary)'),
(22737, 19630, 'no_lang_code', 'name', 'CLU (Italy)'),
(22738, 19631, 'no_lang_code', 'name', 'Infoport (Spain)'),
(22739, 19632, 'no_lang_code', 'name', 'Life & Brain (Germany)'),
(22740, 19633, 'en', 'name', 'Bio Nano Consulting'),
(22741, 19634, 'no_lang_code', 'name', 'Altec Software (Greece)'),
(22742, 19635, 'en', 'name', 'The Ohio State University at Mansfield'),
(22743, 19636, 'en', 'name', 'Scotland Memorial Hospital'),
(22744, 19637, 'no_lang_code', 'name', 'DNAmicroarray (United States)'),
(22745, 19638, 'pt', 'name', 'Administracao Central do Sistema de Saude'),
(22746, 19639, 'no_lang_code', 'name', 'Targepeutics (United States)'),
(22747, 19640, 'en', 'name', 'Massachusetts Department of Mental Health'),
(22748, 19641, 'en', 'name', 'Clearity Foundation'),
(22749, 19642, 'no_lang_code', 'name', 'Learning Multi Systems (United States)'),
(22750, 19643, 'en', 'name', 'Exploration Place Museum and Science Centre'),
(22751, 19644, 'fr', 'name', 'Airparif'),
(22752, 19645, 'en', 'name', 'Advanced Lead Acid Battery Consortium'),
(22753, 19646, 'no_lang_code', 'name', 'Corden Pharma (United States)'),
(22754, 19647, 'en', 'name', 'Association of British Science Writers'),
(22755, 19648, 'en', 'name', 'United States International Trade Commission'),
(22756, 19648, 'fr', 'name', 'Etats-unis. international trade commission'),
(22757, 19649, 'en', 'name', 'Touro College'),
(22758, 19650, 'no_lang_code', 'name', 'The Bridge (United States)'),
(22759, 19651, 'no_lang_code', 'name', 'Solvay (Netherlands)'),
(22760, 19652, 'no_lang_code', 'name', 'Astech Electronics (United Kingdom)'),
(22761, 19653, 'en', 'name', 'Autism Society of America'),
(22762, 19654, 'no_lang_code', 'name', 'Lucite International (United Kingdom)'),
(22763, 19655, 'en', 'name', 'Kista Photonics Research Center'),
(22764, 19656, 'no_lang_code', 'name', 'TeamBest (United States)'),
(22765, 19657, 'no_lang_code', 'name', 'SGH Martineau (United Kingdom)'),
(22766, 19658, 'no_lang_code', 'name', 'DuPont (Spain)'),
(22767, 19659, 'en', 'name', 'Quietmind Foundation'),
(22768, 19660, 'no_lang_code', 'name', 'Regio (Estonia)'),
(22769, 19661, 'en', 'name', 'Zero Breast Cancer'),
(22770, 19662, 'en', 'name', 'Cemit Center of Excellence in Medicine and IT'),
(22771, 19663, 'en', 'name', 'Mishawaka-Penn-Harris Public Library'),
(22772, 19664, 'no_lang_code', 'name', 'Artemis Intelligent Power (United Kingdom)'),
(22773, 19665, 'en', 'name', 'Pacific Breast Pathology'),
(22774, 19666, 'no_lang_code', 'name', 'Artes Biotechnology (Germany)'),
(22775, 19667, 'no_lang_code', 'name', 'Michael Baker International (United States)'),
(22776, 19668, 'en', 'name', 'Open The Government'),
(22777, 19669, 'no_lang_code', 'name', 'Biogas Fuel Cell (Spain)'),
(22778, 19670, 'en', 'name', 'German Games Industry Association'),
(22779, 19671, 'en', 'name', 'Rock Valley College'),
(22780, 19672, 'de', 'name', 'Institut für Europäische Politik'),
(22781, 19672, 'en', 'name', 'Institute for European Politics'),
(22782, 19673, 'en', 'name', 'Meadville Lombard Theological School'),
(22783, 19674, 'en', 'name', 'MultiCare Tacoma General Hospital'),
(22784, 19675, 'en', 'name', 'Health Promotion Services'),
(22785, 19676, 'no_lang_code', 'name', 'RELX Group (United States)'),
(22786, 19677, 'no_lang_code', 'name', 'Euroitalia (Italy)'),
(22787, 19678, 'en', 'name', 'Racine Art Museum'),
(22788, 19679, 'no_lang_code', 'name', 'Eurospital (Italy)'),
(22789, 19680, 'no_lang_code', 'name', 'ESTeam (Sweden)'),
(22790, 19681, 'en', 'name', 'Youth Unlimited Programs'),
(22791, 19682, 'no_lang_code', 'name', 'Brechtel (United States)'),
(22792, 19683, 'no_lang_code', 'name', 'Bio-Prodict (Netherlands)'),
(22793, 19684, 'no_lang_code', 'name', 'SOLIDpower (Switzerland)'),
(22794, 19685, 'no_lang_code', 'name', 'Trust Control International (France)'),
(22795, 19686, 'no_lang_code', 'name', 'Netsmart Technologies (United States)'),
(22796, 19687, 'en', 'name', 'Virginia Community Action Partnership'),
(22797, 19688, 'en', 'name', 'Hedberg Public Library'),
(22798, 19689, 'en', 'name', 'Innovation Initiatives Ontario North'),
(22799, 19690, 'no_lang_code', 'name', 'Carnego Systems (United Kingdom)'),
(22800, 19691, 'en', 'name', 'Healing Co-Operative'),
(22801, 19692, 'no_lang_code', 'name', 'Estanda (Spain)'),
(22802, 19693, 'en', 'name', 'Ministry of the Interior of the Republic of Lithuania'),
(22803, 19693, 'lt', 'name', 'Lietuvos Respublikos vidaus reikalų ministerija'),
(22804, 19694, 'en', 'name', 'Wood Hudson Cancer Research Laboratory'),
(22805, 19695, 'en', 'name', 'Westwood College'),
(22806, 19696, 'en', 'name', 'Start Treatment & Recovery Centers'),
(22807, 19697, 'en', 'name', 'National Stem Cell Foundation of Australia'),
(22808, 19698, 'en', 'name', 'Greater Bridgeport Area Prevention Program'),
(22809, 19699, 'en', 'name', 'Indiana Supreme Court'),
(22810, 19700, 'no_lang_code', 'name', 'EncyclopƦdia Britannica (United States)'),
(22811, 19701, 'no_lang_code', 'name', 'Engage (Germany)'),
(22812, 19702, 'en', 'name', 'St. Vincent''s HealthCare'),
(22813, 19703, 'en', 'name', 'Healthy Teen Network'),
(22814, 19704, 'no_lang_code', 'name', 'BioPharm (United Kingdom)'),
(22815, 19705, 'no_lang_code', 'name', 'Applied Microengineering Limited (United Kingdom)'),
(22816, 19706, 'no_lang_code', 'name', 'Berufsfortbildungswerk'),
(22817, 19707, 'no_lang_code', 'name', 'Sphinx (Netherlands)'),
(22818, 19708, 'no_lang_code', 'name', 'Interface Europe (Belgium)'),
(22819, 19709, 'en', 'name', 'Kankakee County Museum'),
(22820, 19710, 'en', 'name', 'Oak Lawn Public Library'),
(22821, 19711, 'no_lang_code', 'name', 'Bertec (United States)'),
(22822, 19712, 'en', 'name', 'Arthritis Research Institute of America'),
(22823, 19713, 'it', 'name', 'Federazione Italiana Lavoratori Commercio Albergo Mensa e Servizi'),
(22824, 19714, 'en', 'name', 'Brown County Library'),
(22825, 19715, 'no_lang_code', 'name', 'Diageo (Ireland)'),
(22826, 19716, 'no_lang_code', 'name', 'Delta Extinguishers (Belgium)'),
(22827, 19717, 'no_lang_code', 'name', 'Materials Development (United States)'),
(22828, 19718, 'en', 'name', 'Cork County Council'),
(22829, 19719, 'en', 'name', 'Help Committee'),
(22830, 19720, 'en', 'name', 'United Jewish Appeal Federation of New York'),
(22831, 19721, 'no_lang_code', 'name', 'GTC Kappelmeyer (Germany)'),
(22832, 19722, 'en', 'name', 'Children''s Home of Wheeling'),
(22833, 19723, 'en', 'name', 'Cape Fear Community College'),
(22834, 19724, 'en', 'name', 'Keweenaw Bay Ojibwa Community College'),
(22835, 19725, 'en', 'name', 'Wyoming Valley Alcohol and Drug Services'),
(22836, 19726, 'no_lang_code', 'name', 'Compugraphics (United Kingdom)'),
(22837, 19727, 'no_lang_code', 'name', 'Limetec (United Kingdom)'),
(22838, 19728, 'en', 'name', 'Hungarian Chemical Industry Association'),
(22839, 19729, 'no_lang_code', 'name', 'Af-cityplan (Czechia)'),
(22840, 19730, 'en', 'name', 'National Cancer Registration Service'),
(22841, 19731, 'no_lang_code', 'name', 'HalTech');
INSERT INTO `ror_settings` VALUES
(22842, 19732, 'no_lang_code', 'name', 'Drug Prevention Resources'),
(22843, 19733, 'en', 'name', 'Association of State Public Health Nutritionists'),
(22844, 19734, 'en', 'name', 'SUDEP Aware'),
(22845, 19735, 'en', 'name', 'Brookdale Community College'),
(22846, 19736, 'en', 'name', 'Alaska Network on Domestic Violence and Sexual Assault'),
(22847, 19737, 'en', 'name', 'Trinity United Church of Christ Child Care Centers'),
(22848, 19738, 'en', 'name', 'Massachusetts Technology Collaborative'),
(22849, 19739, 'en', 'name', 'Washington Radiology Associates'),
(22850, 19740, 'en', 'name', 'Babbage Institute for Knowledge and Information Technologies'),
(22851, 19741, 'en', 'name', 'Eiteljorg Museum of American Indians and Western Art'),
(22852, 19742, 'en', 'name', 'Wood River Ability Program'),
(22853, 19743, 'fr', 'name', 'Centre de Transfert de Technologie du Mans'),
(22854, 19744, 'no_lang_code', 'name', 'Maillefer (Switzerland)'),
(22855, 19745, 'no_lang_code', 'name', 'SipNose (Israel)'),
(22856, 19746, 'no_lang_code', 'name', 'Moog CSA Engineering (United States)'),
(22857, 19747, 'no_lang_code', 'name', 'Insoco (Spain)'),
(22858, 19748, 'en', 'name', 'Libby Ross Foundation'),
(22859, 19749, 'no_lang_code', 'name', 'BioMarck Pharmaceuticals (United States)'),
(22860, 19750, 'en', 'name', 'Northwestern College - Illinois'),
(22861, 19751, 'en', 'name', 'Winning Wheels'),
(22862, 19752, 'no_lang_code', 'name', 'ALcontrol Laboratories'),
(22863, 19753, 'en', 'name', 'Piemonte Agency for Investments, Export and Tourism'),
(22864, 19753, 'it', 'name', 'Centro Estero per l''Internazionalizzazione'),
(22865, 19754, 'fr', 'name', 'Fondation Sophia Antipolis'),
(22866, 19755, 'en', 'name', 'Lethbridge College'),
(22867, 19756, 'no_lang_code', 'name', 'Capgemini (Italy)'),
(22868, 19757, 'en', 'name', 'WellShare International'),
(22869, 19758, 'en', 'name', 'Velindre NHS Trust'),
(22870, 19759, 'en', 'name', 'UnityPoint Health'),
(22871, 19760, 'en', 'name', 'European Gravitational Observatory'),
(22872, 19761, 'en', 'name', 'ICE Publishing'),
(22873, 19762, 'en', 'name', 'National Archives Service'),
(22874, 19762, 'fi', 'name', 'Arkistolaitos'),
(22875, 19763, 'en', 'name', 'Goddard College'),
(22876, 19764, 'no_lang_code', 'name', 'D Addato Agroalimentare (Italy)'),
(22877, 19765, 'en', 'name', 'United States Quad Rugby Association'),
(22878, 19766, 'no_lang_code', 'name', 'Bisiach & Carru (Italy)'),
(22879, 19767, 'no_lang_code', 'name', 'Melodea (Israel)'),
(22880, 19768, 'en', 'name', 'Akron-Summit County Public Library'),
(22881, 19769, 'el', 'name', 'Ī Ī”ĪŸĪ—Ī“ĪœĪ•ĪĪ‘ ĪœĪ™ĪšĪ”ĪŸĪšĪ„ĪœĪ‘Ī¤Ī™ĪšĪ‘ Ī£Ī„Ī£Ī¤Ī—ĪœĪ‘Ī¤Ī‘ IKE'),
(22882, 19769, 'no_lang_code', 'name', 'Advanced Microwave Systems (Greece)'),
(22883, 19770, 'no_lang_code', 'name', 'Artificial Intelligence in Medicine (Canada)'),
(22884, 19771, 'no_lang_code', 'name', 'Culgi (Netherlands)'),
(22885, 19772, 'en', 'name', 'Union Graduate College'),
(22886, 19773, 'no_lang_code', 'name', 'Dickinson Wright (United States)'),
(22887, 19774, 'no_lang_code', 'name', 'Analog and Digital Peripherals (United States)'),
(22888, 19775, 'no_lang_code', 'name', 'BFI Betriebstechnik (Germany)'),
(22889, 19776, 'no_lang_code', 'name', 'Gammastamp (Italy)'),
(22890, 19777, 'no_lang_code', 'name', 'Tunstall (Ireland)'),
(22891, 19778, 'en', 'name', 'Fighting Back Partnership'),
(22892, 19779, 'no_lang_code', 'name', 'FlexTech Systems (United States)'),
(22893, 19780, 'no_lang_code', 'name', 'Tansna Theraputics (United States)'),
(22894, 19781, 'no_lang_code', 'name', 'LexRite (United States)'),
(22895, 19782, 'en', 'name', 'Laramie County Community College'),
(22896, 19783, 'no_lang_code', 'name', 'Biker Fashion Arena Hamburg'),
(22897, 19784, 'en', 'name', 'RiverStone Health'),
(22898, 19785, 'en', 'name', 'Tanner Health System'),
(22899, 19786, 'no_lang_code', 'name', 'CBRNE (United Kingdom)'),
(22900, 19787, 'en', 'name', 'Fontbonne University'),
(22901, 19788, 'en', 'name', 'John A. Logan College'),
(22902, 19789, 'no_lang_code', 'name', 'Hydrodata (Italy)'),
(22903, 19790, 'no_lang_code', 'name', 'Total (United Kingdom)'),
(22904, 19791, 'en', 'name', 'St. John''s Riverside Hospital'),
(22905, 19792, 'no_lang_code', 'name', 'Ilunion Consulting (Spain)'),
(22906, 19793, 'no_lang_code', 'name', 'Absynth Biologics (United Kingdom)'),
(22907, 19794, 'en', 'name', 'Asatrem'),
(22908, 19795, 'no_lang_code', 'name', 'Fullwell Mill (United Kingdom)'),
(22909, 19796, 'el', 'name', 'ĪšĪ­Ī½Ļ„ĻĪæ ĪœĪµĪ»ĪµĻ„ĻŽĪ½ Ī‘ĻƒĻ†Ī±Ī»ĪµĪÆĪ±Ļ‚'),
(22910, 19796, 'en', 'name', 'Center for Security Studies'),
(22911, 19797, 'en', 'name', 'Inuit Circumpolar Council'),
(22912, 19798, 'en', 'name', 'Spina Bifida Resource Network'),
(22913, 19799, 'da', 'name', 'Danmarks videncenter for brand og sikring'),
(22914, 19799, 'en', 'name', 'Danish Institute of Fire and Security Technology'),
(22915, 19800, 'no_lang_code', 'name', 'I+ (Italy)'),
(22916, 19801, 'no_lang_code', 'name', 'Adicep Technologies (United States)'),
(22917, 19802, 'el', 'name', 'ĪŠĪ“ĻĻ…Ī¼Ī± Ī˜Ī©Ī”Ī‘Īž'),
(22918, 19802, 'en', 'name', 'Thorax Foundation'),
(22919, 19803, 'no_lang_code', 'name', 'ABB (Norway)'),
(22920, 19804, 'en', 'name', 'Medina County District Library'),
(22921, 19805, 'en', 'name', 'National Network OF Services for Training and Employment Promotion'),
(22922, 19805, 'it', 'name', 'Ente Nazionale ACLI Istruzione Professionale'),
(22923, 19806, 'en', 'name', 'International Network for Advancing Science and Policy'),
(22924, 19807, 'en', 'name', 'Secondopinion'),
(22925, 19808, 'no_lang_code', 'name', 'CISC Semiconductor (Austria)'),
(22926, 19809, 'en', 'name', 'Contaminated Land: Applications in the Real Environments'),
(22927, 19810, 'no_lang_code', 'name', 'Giotto Biotech (Italy)'),
(22928, 19811, 'no_lang_code', 'name', 'Bord na Móna (Ireland)'),
(22929, 19812, 'en', 'name', 'Helio International'),
(22930, 19813, 'no_lang_code', 'name', 'Agentscape (Germany)'),
(22931, 19814, 'no_lang_code', 'name', 'ICF International (United Kingdom)'),
(22932, 19815, 'en', 'name', 'Annual Reviews'),
(22933, 19816, 'no_lang_code', 'name', 'H2 Logic (Denmark)'),
(22934, 19817, 'no_lang_code', 'name', 'Hummingbird Precision Machine (United States)'),
(22935, 19818, 'en', 'name', 'Genetic Alliance'),
(22936, 19819, 'no_lang_code', 'name', 'Elviex (Greece)'),
(22937, 19820, 'no_lang_code', 'name', 'Dynamic Concepts (United States)'),
(22938, 19821, 'en', 'name', 'Grand Forks Air Force Base'),
(22939, 19822, 'no_lang_code', 'name', 'Innowep (Germany)'),
(22940, 19823, 'en', 'name', 'Scotland County Schools'),
(22941, 19824, 'no_lang_code', 'name', 'Terapio (United States)'),
(22942, 19825, 'no_lang_code', 'name', 'KPMG (United Kingdom)'),
(22943, 19826, 'en', 'name', 'Delgado Community College'),
(22944, 19827, 'en', 'name', 'Barber–Scotia College'),
(22945, 19828, 'en', 'name', 'Wisconsin Maritime Museum'),
(22946, 19829, 'en', 'name', 'New Vista'),
(22947, 19830, 'en', 'name', 'Peninsula Library and Historical Society'),
(22948, 19831, 'no_lang_code', 'name', 'Life Length (Spain)'),
(22949, 19832, 'no_lang_code', 'name', 'Epleblomsten (Norway)'),
(22950, 19833, 'no_lang_code', 'name', 'Eos Neuroscience (United States)'),
(22951, 19834, 'no_lang_code', 'name', 'Receptors (United States)'),
(22952, 19835, 'en', 'name', 'Chanda Plan Foundation'),
(22953, 19836, 'en', 'name', 'West Michigan Cancer Center'),
(22954, 19837, 'no_lang_code', 'name', '451 Research (United Kingdom)'),
(22955, 19838, 'no_lang_code', 'name', 'dMetrics (United States)'),
(22956, 19839, 'en', 'name', 'Aplastic Anemia and MDS International Foundation'),
(22957, 19840, 'en', 'name', 'Tashkent Pediatric Medical Institute'),
(22958, 19841, 'en', 'name', 'International Union for Electricity applications'),
(22959, 19842, 'en', 'name', 'Bio Base Europe'),
(22960, 19843, 'no_lang_code', 'name', 'Folder Media'),
(22961, 19844, 'no_lang_code', 'name', 'Meccanica Nova (Italy)'),
(22962, 19845, 'en', 'name', 'Walsh College'),
(22963, 19846, 'en', 'name', 'Santa Clara County Behavioral Health Services'),
(22964, 19847, 'no_lang_code', 'name', 'MeaningCloud (Spain)'),
(22965, 19848, 'en', 'name', 'Institute of International Education'),
(22966, 19849, 'en', 'name', 'American Association for Higher Education and Accreditation'),
(22967, 19850, 'en', 'name', 'Birmingham Repertory Theatre'),
(22968, 19851, 'no_lang_code', 'name', 'Sycamore Entertainment Group (United States)'),
(22969, 19852, 'en', 'name', 'Dutch Institute for Healthcare Improvement'),
(22970, 19853, 'en', 'name', 'Netherlands Controlling Authority for Milk and Milk Products'),
(22971, 19853, 'nl', 'name', 'Centraal Orgaan voor Kwaliteitsaangelegenheden in de Zuivel'),
(22972, 19854, 'no_lang_code', 'name', 'Living Systems (United States)'),
(22973, 19855, 'en', 'name', 'College of Western Idaho'),
(22974, 19856, 'de', 'name', 'Handwerkskammer Trier'),
(22975, 19857, 'no_lang_code', 'name', 'Argo (Greece)'),
(22976, 19858, 'no_lang_code', 'name', 'Key Industrial Software Systems (United Kingdom)'),
(22977, 19859, 'no_lang_code', 'name', 'British Standards Institution'),
(22978, 19860, 'en', 'name', 'Brown Mackie College'),
(22979, 19861, 'en', 'name', 'Uganda Protestant Medical Bureau'),
(22980, 19862, 'no_lang_code', 'name', 'Materials Technology (United Kingdom)'),
(22981, 19863, 'en', 'name', 'Silver Lake College'),
(22982, 19864, 'en', 'name', 'Los Alamos Public Schools'),
(22983, 19865, 'en', 'name', 'Urals Research Center for Radiation Medicine'),
(22984, 19866, 'en', 'name', 'Institute for Social Research'),
(22985, 19867, 'no_lang_code', 'name', 'Eurofins (United States)'),
(22986, 19868, 'en', 'name', 'Massachusetts General Court'),
(22987, 19869, 'en', 'name', 'American Thrombosis and Hemostasis Network'),
(22988, 19870, 'en', 'name', 'Pingjin Hospital'),
(22989, 19870, 'zh', 'name', 'å¹³ę“„åŒ»é™¢'),
(22990, 19871, 'no_lang_code', 'name', 'Mannesmann Demag (Germany)'),
(22991, 19872, 'en', 'name', 'Cedarhurst Center For The Arts'),
(22992, 19873, 'el', 'name', 'Ī“Ī•Ī©Ī‘ĪĪ‘Ī›Ī„Ī£Ī—'),
(22993, 19873, 'no_lang_code', 'name', 'Geoanalysis (Greece)'),
(22994, 19874, 'en', 'name', 'Federation of Clinical Immunology Societies'),
(22995, 19875, 'fr', 'name', 'Institut National d’HygiĆØne Publique'),
(22996, 19876, 'no_lang_code', 'name', 'Agrobiogen (Germany)'),
(22997, 19877, 'no_lang_code', 'name', 'Hunting Energy Services (United Kingdom)'),
(22998, 19878, 'no_lang_code', 'name', 'MBC Research (United States)'),
(22999, 19879, 'no_lang_code', 'name', 'Deltatec (Belgium)'),
(23000, 19880, 'no_lang_code', 'name', 'Sparks & Co (France)'),
(23001, 19881, 'en', 'name', 'The Public Theater'),
(23002, 19882, 'no_lang_code', 'name', 'Baebies (United States)'),
(23003, 19883, 'en', 'name', 'Association for the Advancement of Mexican Americans'),
(23004, 19884, 'en', 'name', 'Mach4 Lab'),
(23005, 19885, 'no_lang_code', 'name', 'Ultra Electronics (United Kingdom)'),
(23006, 19886, 'pt', 'name', 'Agrupamento de Escolas de Caldas de Vizela'),
(23007, 19887, 'en', 'name', 'Volunteers of America Alaska'),
(23008, 19888, 'no_lang_code', 'name', 'LightForm (United States)'),
(23009, 19889, 'en', 'name', 'Concordia Seminary'),
(23010, 19889, 'es', 'name', 'Seminario Concordia'),
(23011, 19890, 'en', 'name', 'Max Perutz Library'),
(23012, 19891, 'fr', 'name', 'FƩdƩration des Parcs Naturels RƩgionaux'),
(23013, 19892, 'no_lang_code', 'name', 'COG Analytics (United States)'),
(23014, 19893, 'no_lang_code', 'name', 'DHL (Switzerland)'),
(23015, 19894, 'en', 'name', 'Joint Nature Conservation Committee'),
(23016, 19895, 'en', 'name', 'National Institute for Research and Development of Isotopic and Molecular Technologies'),
(23017, 19896, 'en', 'name', 'Midland University'),
(23018, 19897, 'no_lang_code', 'name', 'United Aircraft (Russia)'),
(23019, 19897, 'ru', 'name', 'ŠžŠ±ŃŠŠµŠ“ŠøŠ½Ń‘Š½Š½Š°Ń Š°Š²ŠøŠ°ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń ŠŗŠ¾Ń€ŠæŠ¾Ń€Š°Ń†ŠøŃ'),
(23020, 19898, 'fr', 'name', 'Centre International des Technologies de l''Environnement de Tunis'),
(23021, 19899, 'no_lang_code', 'name', 'Bluefrog Design (United Kingdom)'),
(23022, 19900, 'no_lang_code', 'name', 'Ipec (United Kingdom)'),
(23023, 19901, 'no_lang_code', 'name', 'Oryx International Growth Fund (Ireland)'),
(23024, 19902, 'no_lang_code', 'name', 'Hazen Research (United States)'),
(23025, 19903, 'en', 'name', 'Federal Energy Regulatory Commission'),
(23026, 19904, 'no_lang_code', 'name', 'FTL Systems (United Kingdom)'),
(23027, 19905, 'en', 'name', 'National Physician and Family Referral'),
(23028, 19906, 'en', 'name', 'International Dark Sky Association'),
(23029, 19907, 'en', 'name', 'Vincenzo Pansadoro Foundation'),
(23030, 19907, 'it', 'name', 'Fondazione Vincenzo Pansadoro'),
(23031, 19908, 'no_lang_code', 'name', 'TeloVISION (United States)'),
(23032, 19909, 'en', 'name', 'Technology Partners Foundation'),
(23033, 19910, 'no_lang_code', 'name', 'Duffy Engineering and Associates (United States)'),
(23034, 19911, 'no_lang_code', 'name', 'Cosmas (United States)'),
(23035, 19912, 'no_lang_code', 'name', 'Lakeshore Group (United States)'),
(23036, 19913, 'no_lang_code', 'name', 'FKuR Kunststoff (Germany)'),
(23037, 19914, 'no_lang_code', 'name', 'EnerSearch'),
(23038, 19915, 'en', 'name', 'Georgia Gwinnett College'),
(23039, 19916, 'en', 'name', 'Essex County Council'),
(23040, 19917, 'no_lang_code', 'name', 'Kompania Węglowa (Poland)'),
(23041, 19918, 'de', 'name', 'Bundesministerium für Gesundheit'),
(23042, 19918, 'en', 'name', 'Federal Ministry of Health'),
(23043, 19919, 'en', 'name', 'Natrona County School District'),
(23044, 19920, 'no_lang_code', 'name', 'Postnova Analytics (United States)'),
(23045, 19921, 'en', 'name', 'Hillsdale College'),
(23046, 19922, 'no_lang_code', 'name', 'Ansmart (United Kingdom)'),
(23047, 19923, 'en', 'name', 'Marylhurst University'),
(23048, 19924, 'en', 'name', 'Scioto County Juvenile Court'),
(23049, 19925, 'no_lang_code', 'name', 'DE Technologies (United States)'),
(23050, 19926, 'en', 'name', 'American InterContinental University'),
(23051, 19927, 'en', 'name', 'Coastal Behavioral Healthcare'),
(23052, 19928, 'cs', 'name', 'Ministerstvo vnitra'),
(23053, 19928, 'en', 'name', 'Ministry of the Interior'),
(23054, 19929, 'en', 'name', 'Cottey College'),
(23055, 19930, 'no_lang_code', 'name', 'Emergence Tech Limited (United Kingdom)'),
(23056, 19931, 'no_lang_code', 'name', 'Deimos Engenharia (Portugal)'),
(23057, 19932, 'no_lang_code', 'name', 'Kanthal (Sweden)'),
(23058, 19933, 'en', 'name', 'The People of the United Methodist Church'),
(23059, 19934, 'no_lang_code', 'name', 'Iron Pump (Denmark)'),
(23060, 19935, 'no_lang_code', 'name', 'Axion Biosystems (United States)'),
(23061, 19936, 'en', 'name', 'Drug Free Charlotte County'),
(23062, 19937, 'en', 'name', 'Fishermen and Scientists Research Society'),
(23063, 19938, 'en', 'name', 'Kansas Department for Aging and Disability Services'),
(23064, 19939, 'en', 'name', 'Gogebic Community College'),
(23065, 19940, 'en', 'name', 'Moody Bible Institute'),
(23066, 19940, 'fr', 'name', 'Institut biblique moody'),
(23067, 19941, 'en', 'name', 'Missouri Baptist University'),
(23068, 19942, 'en', 'name', 'Catholic Community Services Of Southern Arizona'),
(23069, 19943, 'en', 'name', 'GS1 Germany'),
(23070, 19944, 'no_lang_code', 'name', 'AdCapital (Germany)'),
(23071, 19945, 'fr', 'name', 'Association des Communicateurs Scientifiques du QuƩbec'),
(23072, 19946, 'en', 'name', 'Center For Social Innovation'),
(23073, 19947, 'en', 'name', 'Institute for Biotechnology and Bioengineering'),
(23074, 19948, 'no_lang_code', 'name', 'Dr. SchƤr (Italy)'),
(23075, 19949, 'en', 'name', 'Berwyn Public Library'),
(23076, 19950, 'no_lang_code', 'name', 'Invent (Italy)'),
(23077, 19951, 'no_lang_code', 'name', 'Ortec (France)'),
(23078, 19952, 'no_lang_code', 'name', 'Pyrexar Medical (United States)'),
(23079, 19953, 'en', 'name', 'Project Walk-Austin'),
(23080, 19954, 'no_lang_code', 'name', 'KCET'),
(23081, 19955, 'en', 'name', 'Richland Community College'),
(23082, 19956, 'en', 'name', 'United Fire Service Women'),
(23083, 19957, 'en', 'name', 'Women''s Cancer Resource Center'),
(23084, 19958, 'no_lang_code', 'name', 'International Biomedical (United States)'),
(23085, 19959, 'no_lang_code', 'name', 'John Caunt Scientific (United Kingdom)'),
(23086, 19960, 'no_lang_code', 'name', 'Matrasur Composites (France)'),
(23087, 19961, 'no_lang_code', 'name', 'CIM Group (Serbia)'),
(23088, 19962, 'en', 'name', 'Bay Path University'),
(23089, 19963, 'it', 'name', 'Azienda Sanitaria Locale Roma 3'),
(23090, 19964, 'en', 'name', 'Gail Borden Public Library District'),
(23091, 19965, 'fr', 'name', 'Centre de Recherche en Ɖconomie AppliquĆ©e pour le DĆ©veloppement'),
(23092, 19966, 'en', 'name', 'Tiffin University'),
(23093, 19967, 'en', 'name', 'Women''s International Leadership Institute'),
(23094, 19968, 'no_lang_code', 'name', 'Control 2K'),
(23095, 19969, 'no_lang_code', 'name', 'MemEx (Italy)'),
(23096, 19970, 'en', 'name', 'International and European Forum on Migration Research'),
(23097, 19970, 'it', 'name', 'Forum Internazionale ed Europeo di Ricerche sull’Immigrazione'),
(23098, 19971, 'no_lang_code', 'name', 'Clear Guide Medical (United States)'),
(23099, 19972, 'no_lang_code', 'name', 'ChromaDex (United States)'),
(23100, 19973, 'no_lang_code', 'name', 'Gridpoint solutions (United Kingdom)'),
(23101, 19974, 'en', 'name', 'Research Institute for Mineral and Metallic Materials Gemstones/Precious Metals'),
(23102, 19974, 'no_lang_code', 'name', 'Forschungsinstitut für Mineralische und Metallische Werkstoffe Edelsteine/Edemetalle'),
(23103, 19975, 'en', 'name', 'European Embedded Control Institute'),
(23104, 19975, 'fr', 'name', 'Institut EuropƩen de ContrƓle EmbarquƩ'),
(23105, 19976, 'no_lang_code', 'name', 'Angewandte Micro Messtechnik (Germany)'),
(23106, 19977, 'no_lang_code', 'name', 'Denso (Germany)'),
(23107, 19978, 'no_lang_code', 'name', 'Metabolomx (United States)'),
(23108, 19979, 'en', 'name', 'European Blind Union'),
(23109, 19980, 'de', 'name', 'Intelligent Transport Systems Niedersachsen'),
(23110, 19981, 'no_lang_code', 'name', 'Amos Media (United States)'),
(23111, 19982, 'pt', 'name', 'Centro Tecnológico da Pedra Natural de Portugal'),
(23112, 19983, 'en', 'name', 'Ministry of National Defense'),
(23113, 19983, 'pt', 'name', 'MinistƩrio da Defesa Nacional'),
(23114, 19984, 'en', 'name', 'Ancilla College'),
(23115, 19985, 'no_lang_code', 'name', 'Ai2 (United Kingdom)'),
(23116, 19986, 'no_lang_code', 'name', 'MP Biomedicals (United States)'),
(23117, 19987, 'no_lang_code', 'name', 'Delley Seeds and Plants (Switzerland)'),
(23118, 19988, 'pt', 'name', 'Hospital do Mar'),
(23119, 19989, 'no_lang_code', 'name', 'Aspen Products Group (United States)'),
(23120, 19990, 'en', 'name', 'Education Scotland'),
(23121, 19990, 'gd', 'name', 'Foghlam Alba'),
(23122, 19991, 'no_lang_code', 'name', 'Castor Technologies (Canada)'),
(23123, 19992, 'no_lang_code', 'name', 'Brainlab (Germany)'),
(23124, 19993, 'no_lang_code', 'name', 'Phylogeny (United States)'),
(23125, 19994, 'en', 'name', 'GEICAM – Spanish Breast Cancer Group'),
(23126, 19994, 'es', 'name', 'Grupo Español de Investigación en CÔncer de Mama'),
(23127, 19995, 'en', 'name', 'Stephen Gaynor School'),
(23128, 19996, 'no_lang_code', 'name', 'OS Alliance (Austria)'),
(23129, 19997, 'no_lang_code', 'name', 'Dyson Technical Ceramics (United Kingdom)'),
(23130, 19998, 'en', 'name', 'Liverpool City Council'),
(23131, 19999, 'en', 'name', 'Americas Commercial Transportation Research'),
(23132, 20000, 'en', 'name', 'Global Alliance of Mental Illness Advocacy Networks-Europe'),
(23133, 20001, 'es', 'name', 'Universidad ETAC'),
(23134, 20002, 'en', 'name', 'St Monicas Hospital'),
(23135, 20003, 'en', 'name', 'US Ignite'),
(23136, 20004, 'de', 'name', 'Hochschule Biberach'),
(23137, 20004, 'en', 'name', 'University of Applied Sciences Biberach'),
(23138, 20005, 'es', 'name', 'Universidad AmƩrica Latina'),
(23139, 20006, 'fr', 'name', 'Hautes Ɖtudes ChrĆ©tiennes de Management et de MathĆ©matiques AppliquĆ©es'),
(23140, 20007, 'en', 'name', 'Canada Foundation for Innovation'),
(23141, 20007, 'fr', 'name', 'Fondation canadienne pour l''innovation'),
(23142, 20008, 'fr', 'name', 'UniversitƩ Protestante d''Afrique de l''Ouest'),
(23143, 20009, 'en', 'name', 'St Vincent''s Hospital Sydney'),
(23144, 20010, 'da', 'name', 'Danmarks Statistik'),
(23145, 20010, 'en', 'name', 'Statistics Denmark'),
(23146, 20011, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł†ŲÆŁˆŲØŲ©'),
(23147, 20011, 'en', 'name', 'University of Jendouba'),
(23148, 20011, 'fr', 'name', 'UniversitƩ de jendouba'),
(23149, 20012, 'no_lang_code', 'name', 'Sequoia Scientific (United States)'),
(23150, 20013, 'no_lang_code', 'name', 'Synthesia Group (Spain)'),
(23151, 20014, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų²ŁŠŲ§Ł† عاؓور-الجلفة'),
(23152, 20014, 'en', 'name', 'Ziane Achour University of Djelfa'),
(23153, 20015, 'en', 'name', 'Calderstones Partnership NHS Foundation Trust'),
(23154, 20016, 'no_lang_code', 'name', 'Savcor (Finland)'),
(23155, 20017, 'es', 'name', 'Universidad AnƔhuac QuerƩtaro'),
(23156, 20018, 'en', 'name', 'Newport News Public Schools'),
(23157, 20019, 'en', 'name', 'Institute of Public Administration of Canada'),
(23158, 20020, 'es', 'name', 'Universidad Centro de Altos Estudios en Ciencias Exactas'),
(23159, 20021, 'no_lang_code', 'name', 'Ordecsys (Switzerland)'),
(23160, 20022, 'no_lang_code', 'name', 'SensoMotoric Instruments (Germany)'),
(23161, 20023, 'en', 'name', 'Ludlow Community Hospital'),
(23162, 20024, 'no_lang_code', 'name', 'Plaxica (United Kingdom)'),
(23163, 20025, 'es', 'name', 'Universidad Incca de Colombia'),
(23164, 20026, 'en', 'name', 'Byurakan Astrophysical Observatory'),
(23165, 20027, 'en', 'name', 'Dunston Hill Hospital'),
(23166, 20028, 'no_lang_code', 'name', 'Varsi (Slovenia)'),
(23167, 20029, 'no_lang_code', 'name', 'Monarch Media (United States)'),
(23168, 20030, 'fr', 'name', 'Ɖcole SupĆ©rieure des MultimĆ©dia, Informatique & RĆ©seaux'),
(23169, 20031, 'en', 'name', 'Kobe Medical Center'),
(23170, 20031, 'ja', 'name', 'ē„žęˆøåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(23171, 20032, 'no_lang_code', 'name', 'Safe Engineering Services & Technologies (Canada)'),
(23172, 20033, 'no_lang_code', 'name', 'OptiEnz Sensors (United States)'),
(23173, 20034, 'en', 'name', 'Virginia Western Community College'),
(23174, 20035, 'es', 'name', 'Universidad de Hermosillo'),
(23175, 20036, 'en', 'name', 'Administration for Children''s Services'),
(23176, 20037, 'en', 'name', 'Post and Telecom Administration'),
(23177, 20037, 'is', 'name', 'Póst og Fjarskiptastofnun'),
(23178, 20038, 'el', 'name', 'Ī“Ī¹ĪµĻ…ĻĻ‰Ļ€Ī±ĻŠĪŗĻŽĪ½ Ī£Ļ…Ī¼Ī²ĪæĻĪ»Ļ‰Ī½ ĪœĪµĻ„Ī±Ļ†ĪæĻĻŽĪ½, Ανάπτυξης και Πληροφορικής'),
(23179, 20038, 'no_lang_code', 'name', 'Transeuropean Consultants for Transport, Development and Information Technology (Greece)'),
(23180, 20039, 'no_lang_code', 'name', 'Phytodata'),
(23181, 20040, 'en', 'name', 'University of Cape Verde'),
(23182, 20040, 'pt', 'name', 'Universidade de Cabo Verde'),
(23183, 20041, 'pt', 'name', 'Universidade Unigranrio'),
(23184, 20042, 'en', 'name', 'Oregon Public Broadcasting'),
(23185, 20043, 'no_lang_code', 'name', 'Oracle (Spain)'),
(23186, 20044, 'es', 'name', 'Universidad Iberoamericana de Ciencias y TecnologĆ­a'),
(23187, 20045, 'fr', 'name', 'Institut Panafricain pour le DƩveloppement Afrique Centrale'),
(23188, 20046, 'no_lang_code', 'name', 'Zadig (Italy)'),
(23189, 20047, 'en', 'name', 'American Jewish University'),
(23190, 20048, 'en', 'name', 'University of Kara'),
(23191, 20048, 'fr', 'name', 'UniversitƩ de Kara'),
(23192, 20049, 'no_lang_code', 'name', 'NZI (Spain)'),
(23193, 20050, 'no_lang_code', 'name', 'Procoat Tecnologias (Spain)'),
(23194, 20051, 'en', 'name', 'Affiliated Hospital of Nantong University'),
(23195, 20051, 'zh', 'name', '南通大学附属医院'),
(23196, 20052, 'en', 'name', 'Turkish Society of HVAC and Sanitary Engineers'),
(23197, 20053, 'fr', 'name', 'Institut SupƩrieur de la Communication, des Affaires et du Management'),
(23198, 20054, 'no_lang_code', 'name', 'Metal Matrix Cast Composites (United States)'),
(23199, 20055, 'no_lang_code', 'name', 'Wave Dragon (Denmark)'),
(23200, 20056, 'en', 'name', 'Peer Services'),
(23201, 20057, 'en', 'name', 'Hyogo Chuo National Hospital'),
(23202, 20057, 'ja', 'name', '兵庫中央病院'),
(23203, 20058, 'no_lang_code', 'name', 'OPeNDAP'),
(23204, 20059, 'no_lang_code', 'name', 'Canadian Malartic (Canada)'),
(23205, 20060, 'en', 'name', 'Dominican University College'),
(23206, 20060, 'fr', 'name', 'CollĆØge universitaire dominicain'),
(23207, 20061, 'no_lang_code', 'name', 'TSD Projects (Italy)'),
(23208, 20062, 'en', 'name', 'Memorial Blood Centers'),
(23209, 20063, 'no_lang_code', 'name', 'Science Wares (United States)'),
(23210, 20064, 'en', 'name', 'FrontLine Service'),
(23211, 20065, 'ja', 'name', 'åƒč‘‰ēœŒęøˆē”Ÿä¼šēæ’åæ—é‡Žē—…é™¢'),
(23212, 20065, 'no_lang_code', 'name', 'Chibaken Saiseikai Narashino Hospital'),
(23213, 20066, 'es', 'name', 'Corporación Universitaria de Colombia Ideas'),
(23214, 20067, 'en', 'name', 'Whitchurch Community Hospital'),
(23215, 20068, 'no_lang_code', 'name', 'Sbs Byfornyelse'),
(23216, 20069, 'en', 'name', 'Concordia University Irvine'),
(23217, 20070, 'en', 'name', 'Akureyri Hospital'),
(23218, 20070, 'is', 'name', 'Sjúkrahúsið Ô Akureyri'),
(23219, 20071, 'es', 'name', 'Universidad Modelo'),
(23220, 20072, 'en', 'name', 'Abingdon Community Hospital'),
(23221, 20073, 'es', 'name', 'Instituto Universitario de Tecnologia y Humanidades'),
(23222, 20074, 'no_lang_code', 'name', 'Wolframcarb (Italy)'),
(23223, 20075, 'no_lang_code', 'name', 'Microtest (United Kingdom)'),
(23224, 20076, 'en', 'name', 'East Lancashire Hospitals NHS Trust'),
(23225, 20077, 'es', 'name', 'Universidad Partenón de Cozumel'),
(23226, 20078, 'no_lang_code', 'name', 'SMST Designers & Constructors (Netherlands)'),
(23227, 20079, 'no_lang_code', 'name', 'Resource (United States)'),
(23228, 20080, 'no_lang_code', 'name', 'Norton Hydraulics (United Kingdom)'),
(23229, 20081, 'en', 'name', 'Wharfedale Hospital'),
(23230, 20082, 'en', 'name', 'Copperstone University'),
(23231, 20083, 'no_lang_code', 'name', 'Syntiron (United States)'),
(23232, 20084, 'es', 'name', 'Universidad Nacional JosƩ Marƭa Arguedas'),
(23233, 20085, 'pt', 'name', 'Universidade Potiguar'),
(23234, 20086, 'en', 'name', 'St Leonards Community Hospital'),
(23235, 20087, 'pt', 'name', 'Centro UniversitÔrio Católico Salesiano Auxilium'),
(23236, 20088, 'en', 'name', 'Danetre Hospital'),
(23237, 20089, 'en', 'name', 'Ellesmere Port Hospital'),
(23238, 20090, 'en', 'name', 'Swanage Community Hospital'),
(23239, 20091, 'en', 'name', 'Silver Buffalo Consulting'),
(23240, 20092, 'es', 'name', 'Universidad Tecnológica del Sureste de Veracruz'),
(23241, 20093, 'no_lang_code', 'name', 'Software AG (Italy)'),
(23242, 20094, 'no_lang_code', 'name', 'Niagara Scientific Products (United States)'),
(23243, 20095, 'es', 'name', 'Universidad Católica Silva Henríquez'),
(23244, 20096, 'en', 'name', 'South West London and St George''s Mental Health NHS Trust'),
(23245, 20097, 'en', 'name', 'Royal Navy'),
(23246, 20098, 'no_lang_code', 'name', 'YIT (Finland)'),
(23247, 20099, 'en', 'name', 'Nuclear Physics European Collaboration Committee'),
(23248, 20100, 'no_lang_code', 'name', 'MicroDish (Netherlands)'),
(23249, 20101, 'pt', 'name', 'Universidade da AmazƓnia'),
(23250, 20102, 'es', 'name', 'Universitario Crandon'),
(23251, 20103, 'en', 'name', 'Toiyabe Indian Health Project'),
(23252, 20104, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الفاؓر'),
(23253, 20104, 'en', 'name', 'Al Fashir University'),
(23254, 20105, 'de', 'name', 'Hochschule Hólar'),
(23255, 20105, 'is', 'name', 'Hólaskóli - HÔskólinn Ô Hólum'),
(23256, 20105, 'no_lang_code', 'name', 'Hólar University College'),
(23257, 20106, 'no_lang_code', 'name', 'Naftosol (Greece)'),
(23258, 20107, 'pt', 'name', 'Centro UniversitĆ”rio ƍtalo Brasileiro'),
(23259, 20108, 'no_lang_code', 'name', 'Yara (United Kingdom)'),
(23260, 20109, 'no_lang_code', 'name', 'United Silicon Carbide (United States)'),
(23261, 20110, 'en', 'name', 'San Luis Obispo County Public Health Department'),
(23262, 20111, 'no_lang_code', 'name', 'Sigma Engineering (Germany)'),
(23263, 20112, 'en', 'name', 'National Stroke Foundation'),
(23264, 20113, 'fr', 'name', 'Centre Hospitalier Universitaire de La RƩunion'),
(23265, 20114, 'en', 'name', 'National University of Cajamarca'),
(23266, 20114, 'es', 'name', 'Universidad Nacional de Cajamarca'),
(23267, 20115, 'en', 'name', 'Danish National Police'),
(23268, 20116, 'en', 'name', 'Sheridan College'),
(23269, 20117, 'en', 'name', 'Mesoamerican University'),
(23270, 20117, 'es', 'name', 'Universidad Mesoamericana'),
(23271, 20118, 'no_lang_code', 'name', 'Studiengesellschaft für Eisenerzaufbereitung (Germany)'),
(23272, 20119, 'es', 'name', 'Universidad EvangƩlica del Paraguay'),
(23273, 20120, 'es', 'name', 'Universidad Privada de Santa Cruz de la Sierra'),
(23274, 20121, 'de', 'name', 'Katholisches Kinderkrankenhaus Wilhelmstift'),
(23275, 20122, 'no_lang_code', 'name', 'Source Production & Equipment Company (United States)'),
(23276, 20123, 'no_lang_code', 'name', 'Home Bank (United States)'),
(23277, 20124, 'no_lang_code', 'name', 'Micropyretics Heater International (United States)'),
(23278, 20125, 'es', 'name', 'Universidad Especializada del Contador PĆŗblico Autorizado'),
(23279, 20126, 'pt', 'name', 'Instituto Superior de Ciências Económicas e Empresariais'),
(23280, 20127, 'en', 'name', 'Marianopolis College'),
(23281, 20127, 'fr', 'name', 'CollĆØge marianopolis'),
(23282, 20128, 'en', 'name', 'Spire Cheshire Hospital'),
(23283, 20129, 'no_lang_code', 'name', 'Embraer (Portugal)'),
(23284, 20130, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure Casablanca'),
(23285, 20131, 'es', 'name', 'Universidad del Futbol y Ciencias del Deporte'),
(23286, 20132, 'no_lang_code', 'name', 'Arqiva (United Kingdom)'),
(23287, 20133, 'pt', 'name', 'Agostinho Neto University, Universidade Agostinho Neto'),
(23288, 20134, 'en', 'name', 'Airedale NHS Foundation Trust'),
(23289, 20135, 'en', 'name', 'Ohio Domestic Violence Network'),
(23290, 20136, 'en', 'name', 'Regenesys Business School'),
(23291, 20137, 'en', 'name', 'Raritan Valley Community College'),
(23292, 20138, 'no_lang_code', 'name', 'Visual Awareness Research Group (United States)'),
(23293, 20139, 'es', 'name', 'Universidad Estatal de BolĆ­var'),
(23294, 20140, 'en', 'name', 'Liverpool Community Health NHS Trust'),
(23295, 20141, 'no_lang_code', 'name', 'Vinidea'),
(23296, 20142, 'no_lang_code', 'name', 'Rolatube Technology (United Kingdom)'),
(23297, 20143, 'en', 'name', 'Bibliographical Society of Canada'),
(23298, 20143, 'fr', 'name', 'La SociƩtƩ Bibliographique du Canada'),
(23299, 20144, 'ja', 'name', 'å²é˜œå”ē«‹å¤§å­¦'),
(23300, 20144, 'no_lang_code', 'name', 'Gifu Kyoritsu University'),
(23301, 20145, 'es', 'name', 'Fundación Universitaria Bellas Artes'),
(23302, 20146, 'en', 'name', 'Yobe State University'),
(23303, 20147, 'no_lang_code', 'name', 'Tissue Regeneration Systems (United States)'),
(23304, 20148, 'no_lang_code', 'name', 'University of Lusaka'),
(23305, 20149, 'en', 'name', 'Troitsk Institute for Innovation and Fusion Research'),
(23306, 20149, 'ru', 'name', 'Троицкий ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инновационных Šø Ń‚ŠµŃ€Š¼Š¾ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(23307, 20150, 'no_lang_code', 'name', 'Hungarian Electricity Private (Hungary)'),
(23308, 20151, 'en', 'name', 'Kaduna State University'),
(23309, 20152, 'en', 'name', 'Jiujiang University'),
(23310, 20152, 'zh', 'name', 'ä¹ę±Ÿå­¦é™¢'),
(23311, 20153, 'no_lang_code', 'name', 'TTS (Sweden)'),
(23312, 20154, 'en', 'name', 'Mount Stromlo Observatory'),
(23313, 20155, 'no_lang_code', 'name', 'Peppermint (Germany)'),
(23314, 20156, 'en', 'name', 'Kebbi State University of Science and Technology'),
(23315, 20157, 'no_lang_code', 'name', 'Principia Ingenieros Consultores'),
(23316, 20158, 'no_lang_code', 'name', 'Tecnia'),
(23317, 20159, 'no_lang_code', 'name', 'Terminal San Giorgio (Italy)'),
(23318, 20160, 'en', 'name', 'Brookfields Hospital'),
(23319, 20161, 'en', 'name', 'Wellesley Institute'),
(23320, 20162, 'no_lang_code', 'name', 'Michelin (France)'),
(23321, 20163, 'en', 'name', 'Rivers Hospital'),
(23322, 20164, 'en', 'name', 'Scottish Agricultural Science Agency'),
(23323, 20165, 'en', 'name', 'College of Marin'),
(23324, 20166, 'en', 'name', 'Campo Catino Astronomical Observatory'),
(23325, 20166, 'es', 'name', 'Osservatorio Astronomico di Campo Catino'),
(23326, 20167, 'en', 'name', 'Philippine Educational Theater Association'),
(23327, 20168, 'en', 'name', 'Xinxiang Central Hospital'),
(23328, 20168, 'zh', 'name', 'ę–°ä¹”åø‚äø­åæƒåŒ»é™¢'),
(23329, 20169, 'pt', 'name', 'Centro UniversitÔrio da Fundação Educacional de Barretos'),
(23330, 20170, 'fr', 'name', 'Université Notre Dame d''Haïti'),
(23331, 20170, 'ht', 'name', 'University Notre Dame of Haiti'),
(23332, 20171, 'ar', 'name', 'الجامعة Ų§Ł„Ų­ŲÆŁŠŲ«Ų© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ'),
(23333, 20171, 'en', 'name', 'Modern University for Information and Technology'),
(23334, 20172, 'no_lang_code', 'name', 'Landauer (United States)'),
(23335, 20173, 'es', 'name', 'Universidad Hebraica'),
(23336, 20174, 'no_lang_code', 'name', 'Modelon (Sweden)'),
(23337, 20175, 'no_lang_code', 'name', 'McWane Technology (United Kingdom)'),
(23338, 20176, 'en', 'name', 'Physicians for a Smoke-Free Canada'),
(23339, 20177, 'no_lang_code', 'name', 'Oktal (France)'),
(23340, 20178, 'en', 'name', 'The Edgbaston Hospital'),
(23341, 20179, 'en', 'name', 'University of Pinar del RĆ­o'),
(23342, 20179, 'es', 'name', 'Universidad de Pinar del RĆ­o'),
(23343, 20180, 'es', 'name', 'Centro de Investigación Docencia y Consultoria Administrativa'),
(23344, 20181, 'en', 'name', 'Holy Cross Hospital'),
(23345, 20182, 'no_lang_code', 'name', 'NanoPhos (Greece)'),
(23346, 20183, 'en', 'name', 'Bognor Regis War Memorial Hospital'),
(23347, 20184, 'pt', 'name', 'Centro UniversitÔrio Salesiano de São Paulo'),
(23348, 20185, 'en', 'name', 'National Public Health Information Coalition'),
(23349, 20186, 'en', 'name', 'State University of Haiti, University of Haiti'),
(23350, 20186, 'fr', 'name', 'UniversitĆ© d''Ɖtat d''haĆÆti'),
(23351, 20187, 'no_lang_code', 'name', 'Surface Phenomena Researches Group (Russia)'),
(23352, 20188, 'es', 'name', 'Lamar Universidad'),
(23353, 20189, 'en', 'name', 'MPC Corporation'),
(23354, 20190, 'no_lang_code', 'name', 'Seafarm (Netherlands)'),
(23355, 20191, 'en', 'name', 'N.D. Zelinsky Institute of Organic Chemistry'),
(23356, 20191, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органической химии им. Š.Š”. Зелинского Российской акаГемии наук'),
(23357, 20192, 'pt', 'name', 'Centro UniversitƔrio de Lins'),
(23358, 20193, 'en', 'name', 'University of Vassouras'),
(23359, 20193, 'pt', 'name', 'Universidade de Vassouras'),
(23360, 20194, 'es', 'name', 'Universidad Bethesda'),
(23361, 20195, 'es', 'name', 'Universidad Regional del Sureste'),
(23362, 20196, 'en', 'name', 'University of the Isthmus'),
(23363, 20196, 'es', 'name', 'Universidad del Istmo'),
(23364, 20197, 'en', 'name', 'Ignace Deen Hospital'),
(23365, 20197, 'fr', 'name', 'HƓpital Ignace Deen'),
(23366, 20198, 'no_lang_code', 'name', 'Dustin (Norway)'),
(23367, 20199, 'en', 'name', 'Jorge Basadre Grohmann National University'),
(23368, 20199, 'es', 'name', 'Universidad Nacional Jorge Basadre Grohmann'),
(23369, 20200, 'es', 'name', 'Institución Universitaria Colegio Mayor del Cauca'),
(23370, 20201, 'no_lang_code', 'name', 'Risk Management Solutions (United Kingdom)'),
(23371, 20202, 'no_lang_code', 'name', 'Recore Systems (Netherlands)'),
(23372, 20203, 'es', 'name', 'Universidad Xicotepetl'),
(23373, 20204, 'ms', 'name', 'Sirim Berhad'),
(23374, 20205, 'no_lang_code', 'name', 'Navtech Radar (United Kingdom)'),
(23375, 20206, 'en', 'name', 'New England Wild Flower Society'),
(23376, 20207, 'en', 'name', 'Valley City Public School District'),
(23377, 20208, 'en', 'name', 'Siberian Center for Environmental Research and Training'),
(23378, 20208, 'ru', 'name', 'Дибирский центр климато-ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований Šø Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(23379, 20209, 'en', 'name', 'Central London Community Healthcare NHS Trust'),
(23380, 20210, 'no_lang_code', 'name', 'SynChem (United States)'),
(23381, 20211, 'es', 'name', 'Universidad Tecnológica Nicaragüense'),
(23382, 20212, 'no_lang_code', 'name', 'Ocera Therapeutics (United States)'),
(23383, 20213, 'no_lang_code', 'name', 'Metso (Finland)'),
(23384, 20214, 'fr', 'name', 'UniversitƩ Ouaga II'),
(23385, 20215, 'it', 'name', 'Ospedale di Sanremo'),
(23386, 20216, 'fr', 'name', 'UniversitƩ de Cepromad'),
(23387, 20217, 'en', 'name', 'Pathways to Housing'),
(23388, 20218, 'no_lang_code', 'name', 'Ossidian Technologies (Ireland)'),
(23389, 20219, 'en', 'name', 'Brixiis Astronomical Observatory'),
(23390, 20220, 'no_lang_code', 'name', 'MetaSystem (Italy)'),
(23391, 20221, 'no_lang_code', 'name', 'Proveca (United Kingdom)'),
(23392, 20222, 'no_lang_code', 'name', 'Moog (United Kingdom)'),
(23393, 20223, 'no_lang_code', 'name', 'Manpower Employment Organisation'),
(23394, 20224, 'no_lang_code', 'name', 'Robbe (France)'),
(23395, 20225, 'en', 'name', 'Tartu Science Park'),
(23396, 20226, 'en', 'name', 'Science, Technology, Engineering and Mathematics Network'),
(23397, 20227, 'en', 'name', 'Teignmouth Community Hospital'),
(23398, 20228, 'en', 'name', 'Cherkasy National University'),
(23399, 20228, 'uk', 'name', 'Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(23400, 20229, 'no_lang_code', 'name', 'Erka Group (Turkey)'),
(23401, 20230, 'en', 'name', 'PAU Education'),
(23402, 20231, 'en', 'name', 'Shaanxi Provincial People''s Hospital'),
(23403, 20231, 'zh', 'name', 'é™•č„æēœäŗŗę°‘åŒ»é™¢'),
(23404, 20232, 'en', 'name', 'Bells University of Technology'),
(23405, 20233, 'en', 'name', 'Pima County Health Department'),
(23406, 20234, 'no_lang_code', 'name', 'Nissan (United Kingdom)'),
(23407, 20235, 'no_lang_code', 'name', 'Rood Wit Blauw Water Services (Netherlands)'),
(23408, 20236, 'en', 'name', 'Arturo Michelena University'),
(23409, 20236, 'es', 'name', 'Universidad Arturo Michelena'),
(23410, 20237, 'no_lang_code', 'name', 'Sagivtech (Israel)'),
(23411, 20238, 'en', 'name', 'Los Andes Peruvian University'),
(23412, 20238, 'es', 'name', 'Universidad Peruana Los Andes'),
(23413, 20239, 'en', 'name', 'Oakland Family Services'),
(23414, 20240, 'no_lang_code', 'name', 'Modulex (Denmark)'),
(23415, 20241, 'en', 'name', 'Institute of Accountancy Arusha'),
(23416, 20242, 'no_lang_code', 'name', 'Transfer Devices (United States)'),
(23417, 20243, 'nl', 'name', 'Kenniscentrum Papier en Karton'),
(23418, 20244, 'en', 'name', 'National Open University of Nigeria'),
(23419, 20245, 'no_lang_code', 'name', 'Mitsubishi Heavy Industries (Italy)'),
(23420, 20246, 'es', 'name', 'Asociación Psicoanalítica del Uruguay'),
(23421, 20247, 'en', 'name', 'Franklin University'),
(23422, 20248, 'en', 'name', 'Bridlington Hospital'),
(23423, 20249, 'es', 'name', 'Instituto Profesional Ipg'),
(23424, 20250, 'en', 'name', 'Indian Maritime University'),
(23425, 20250, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æą®•ąÆ ą®•ą®Ÿą®²ąÆą®šą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(23426, 20251, 'en', 'name', 'Fountain University'),
(23427, 20252, 'en', 'name', 'Amateur Telescope Makers of Boston'),
(23428, 20253, 'en', 'name', 'Cygnet Hospital Beckton'),
(23429, 20254, 'en', 'name', 'Cheadle Community Hospital'),
(23430, 20255, 'pt', 'name', 'Centro UniversitƔrio Lusƭada'),
(23431, 20256, 'en', 'name', 'La CaƱada Observatory'),
(23432, 20256, 'es', 'name', 'Observatorio de La CaƱada'),
(23433, 20257, 'no_lang_code', 'name', 'William Demant Holding (Denmark)'),
(23434, 20258, 'pt', 'name', 'Centro Universitario de Araras Dr Edmunso Ulson'),
(23435, 20259, 'no_lang_code', 'name', 'Testmark Laboratories (Canada)'),
(23436, 20260, 'pt', 'name', 'Centro UniversitƔrio de GoiƔs'),
(23437, 20261, 'no_lang_code', 'name', 'Oval Window Audio (United States)'),
(23438, 20262, 'en', 'name', 'Triangle Universities Nuclear Laboratory'),
(23439, 20263, 'en', 'name', 'Rockland County Department of Mental Health'),
(23440, 20264, 'no_lang_code', 'name', 'Signo Motus (Italy)'),
(23441, 20265, 'en', 'name', 'Koujin Hospital'),
(23442, 20265, 'ja', 'name', 'ē“˜ä»ē—…é™¢'),
(23443, 20266, 'en', 'name', 'St. Paul''s University'),
(23444, 20267, 'de', 'name', 'Kinderkrankenhaus auf der Bult'),
(23445, 20268, 'es', 'name', 'Universidad Santa LucĆ­a'),
(23446, 20269, 'es', 'name', 'Universidad de Concepción del Uruguay'),
(23447, 20270, 'no_lang_code', 'name', 'Water Services Corporation (Malta)'),
(23448, 20271, 'en', 'name', 'County Hospital Louth'),
(23449, 20272, 'en', 'name', 'Government Finance Officers Association'),
(23450, 20273, 'de', 'name', 'Kantonsspital Baselland'),
(23451, 20274, 'de', 'name', 'Naturland'),
(23452, 20275, 'en', 'name', 'Bellevue University'),
(23453, 20276, 'en', 'name', 'Kumeu Observatory'),
(23454, 20277, 'en', 'name', 'Molina Center for Energy and the Environment'),
(23455, 20278, 'no_lang_code', 'name', 'Sensor-Technik Wiedemann (Germany)'),
(23456, 20279, 'no_lang_code', 'name', 'Water & Earth Technologie (United States)'),
(23457, 20280, 'en', 'name', 'NF Observatory'),
(23458, 20281, 'es', 'name', 'Universidad Autónoma de Centro América'),
(23459, 20282, 'en', 'name', 'Primary Care Development Corporation'),
(23460, 20283, 'en', 'name', 'National Composites Centre'),
(23461, 20284, 'no_lang_code', 'name', 'Arcadis (Canada)'),
(23462, 20285, 'en', 'name', 'Atlantic School of Theology'),
(23463, 20286, 'en', 'name', 'National University of Engineering'),
(23464, 20286, 'es', 'name', 'Universidad Nacional de IngenierĆ­a'),
(23465, 20287, 'no_lang_code', 'name', 'Opera North (United Kingdom)'),
(23466, 20288, 'en', 'name', 'Maryland Area Health Education Center West'),
(23467, 20289, 'no_lang_code', 'name', 'Selcom (Italy)'),
(23468, 20290, 'no_lang_code', 'name', 'PLS Consult (Denmark)'),
(23469, 20291, 'en', 'name', 'Tonbridge Cottage Hospital'),
(23470, 20292, 'nl', 'name', 'Vilans'),
(23471, 20293, 'fr', 'name', 'Institut SupƩrieur d''Etudes Sociales'),
(23472, 20294, 'en', 'name', 'Bishop''s Castle Community Hospital'),
(23473, 20295, 'no_lang_code', 'name', 'Econova (Sweden)'),
(23474, 20296, 'no_lang_code', 'name', 'Turbocoating (Italy)'),
(23475, 20297, 'en', 'name', 'Lambeth Hospital'),
(23476, 20298, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للاحصاؔ و الاقتصاد Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠ الجزائر'),
(23477, 20298, 'en', 'name', 'National Higher School of Statistics and Applied Economy'),
(23478, 20299, 'es', 'name', 'Universidad Metropolitana'),
(23479, 20300, 'en', 'name', 'St. Joseph''s Hospital'),
(23480, 20301, 'en', 'name', 'Malta Enterprise'),
(23481, 20302, 'en', 'name', 'Euxton Hall Hospital'),
(23482, 20303, 'en', 'name', 'Palomar College'),
(23483, 20304, 'es', 'name', 'Universidad Mariana'),
(23484, 20305, 'en', 'name', 'Royal Brompton Hospital'),
(23485, 20306, 'pt', 'name', 'Centro UniversitƔrio Claretiano'),
(23486, 20307, 'no_lang_code', 'name', 'Opticology (United States)'),
(23487, 20308, 'no_lang_code', 'name', 'Exceet Group (Germany)'),
(23488, 20309, 'es', 'name', 'Universidad Internacional'),
(23489, 20310, 'en', 'name', 'University for Peace'),
(23490, 20310, 'es', 'name', 'Universidad para la Paz'),
(23491, 20311, 'en', 'name', 'High Institute of Management and Entrepreneurship'),
(23492, 20311, 'fr', 'name', 'Institut de Management et de l'' Entrepreunariat'),
(23493, 20312, 'pt', 'name', 'Centro Hospitalar de Entre o Douro e Vouga E.P.E.'),
(23494, 20313, 'en', 'name', 'Barnet Enfield and Haringey Mental Health Trust'),
(23495, 20314, 'no_lang_code', 'name', 'Wind (Italy)'),
(23496, 20315, 'en', 'name', 'GPI Atlantic'),
(23497, 20316, 'es', 'name', 'Institución Universitaria Esumer'),
(23498, 20317, 'es', 'name', 'Universidad Tecnológica Boliviana'),
(23499, 20318, 'es', 'name', 'Universidad de la Cuenca del Plata, University of Cuenca del Plata'),
(23500, 20319, 'en', 'name', 'Coalville Community Hospital'),
(23501, 20320, 'tr', 'name', 'Uluslararası Nakliyeciler Derneği'),
(23502, 20321, 'no_lang_code', 'name', 'ProSensing (United States)'),
(23503, 20322, 'no_lang_code', 'name', 'Quantemol (United Kingdom)'),
(23504, 20323, 'en', 'name', 'St. Oswald''s Hospital'),
(23505, 20324, 'en', 'name', 'New England Institute of Addiction Studies'),
(23506, 20325, 'no_lang_code', 'name', 'Tokamak Energy (United Kingdom)'),
(23507, 20326, 'no_lang_code', 'name', 'METabolic Explorer (France)'),
(23508, 20327, 'en', 'name', 'Orsett Hospital'),
(23509, 20328, 'es', 'name', 'Universidad Chapultepec'),
(23510, 20329, 'es', 'name', 'Universidad Pedro de Gante'),
(23511, 20330, 'en', 'name', 'Poltair Community Hospital'),
(23512, 20331, 'pt', 'name', 'Instituto Superior de Comunicação e Imagem de Moçambique'),
(23513, 20332, 'es', 'name', 'Universidad Santiago de Cali'),
(23514, 20333, 'no_lang_code', 'name', 'Safran (United Kingdom)'),
(23515, 20334, 'no_lang_code', 'name', 'Vennsa Technologies (Canada)'),
(23516, 20335, 'no_lang_code', 'name', 'RenaSci (United Kingdom)'),
(23517, 20336, 'en', 'name', 'University of Eastern Africa, Baraton'),
(23518, 20337, 'no_lang_code', 'name', 'OmniGuide (United States)'),
(23519, 20338, 'no_lang_code', 'name', 'Scanimetrics (Canada)'),
(23520, 20339, 'en', 'name', 'Peyton Manning Children’s Hospital at St.Vincent'),
(23521, 20340, 'es', 'name', 'Universidad Tollancingo'),
(23522, 20341, 'no_lang_code', 'name', 'W.F. Baird & Associates Coastal Engineers (Canada)'),
(23523, 20342, 'es', 'name', 'Universidad Del PacĆ­fico Ecuador'),
(23524, 20343, 'no_lang_code', 'name', 'Performance Communications'),
(23525, 20344, 'no_lang_code', 'name', 'Unilever (Portugal)'),
(23526, 20345, 'en', 'name', 'Rutson Hospital'),
(23527, 20346, 'ar', 'name', 'Ł…Ų¬Ł…ŁˆŲ¹Ų© Ų§Ł„Ł‡ŁŠŲÆŲ±ŁˆŁ„ŁˆŲ¬ŁŠŁŠŁ† Ų§Ł„ŁŁ„Ų³Ų·ŁŠŁ†ŁŠŁŠŁ†'),
(23528, 20346, 'en', 'name', 'Palestinian Hydrology Group'),
(23529, 20347, 'es', 'name', 'Instituto Profesional AlemƔn Wilhelm von Humboldt'),
(23530, 20348, 'no_lang_code', 'name', 'Smart Software (United States)'),
(23531, 20349, 'en', 'name', 'Schreiner University'),
(23532, 20350, 'en', 'name', 'Patten University'),
(23533, 20351, 'en', 'name', 'North Middlesex Hospital'),
(23534, 20352, 'no_lang_code', 'name', 'Suttle-Straus (United States)'),
(23535, 20353, 'no_lang_code', 'name', 'NAVSYS (United States)'),
(23536, 20354, 'no_lang_code', 'name', 'Microsoft (Portugal)'),
(23537, 20355, 'es', 'name', 'Universidad Univer'),
(23538, 20356, 'it', 'name', 'Studio Ricerche Sociali'),
(23539, 20357, 'en', 'name', 'Sichuan University of Arts and Science'),
(23540, 20357, 'zh', 'name', 'å››å·ę–‡ē†å­¦é™¢'),
(23541, 20358, 'no_lang_code', 'name', 'Lab21 (United Kingdom)'),
(23542, 20359, 'es', 'name', 'Centro Universitario del PacĆ­fico Sur'),
(23543, 20360, 'en', 'name', 'Fairfield Independent Hospital'),
(23544, 20361, 'en', 'name', 'Corbett Hospital'),
(23545, 20362, 'no_lang_code', 'name', 'Pearlhill Technologies (United States)'),
(23546, 20363, 'no_lang_code', 'name', 'Ziplast (Italy)'),
(23547, 20364, 'en', 'name', 'Kaduna Polytechnic'),
(23548, 20365, 'en', 'name', 'West Park Hospital'),
(23549, 20366, 'no_lang_code', 'name', 'TeraPore Technologies (United States)'),
(23550, 20367, 'en', 'name', 'Surrey and Borders Partnership NHS Foundation Trust'),
(23551, 20368, 'en', 'name', 'Roane State Community College'),
(23552, 20369, 'no_lang_code', 'name', 'Wrap (United Kingdom)'),
(23553, 20370, 'es', 'name', 'Universidad de la Cordillera'),
(23554, 20371, 'en', 'name', 'Hospital for Tropical Diseases'),
(23555, 20372, 'no_lang_code', 'name', 'Wiener Stadtwerke (Austria)'),
(23556, 20373, 'en', 'name', 'Central University of Valle del Cauca'),
(23557, 20373, 'es', 'name', 'Unidad Central del Valle del Cauca'),
(23558, 20374, 'en', 'name', 'Hospital of St John & St Elizabeth'),
(23559, 20375, 'en', 'name', 'University of Belize'),
(23560, 20375, 'es', 'name', 'Universidad de Belice'),
(23561, 20376, 'no_lang_code', 'name', 'Solarplan (Denmark)'),
(23562, 20377, 'es', 'name', 'Centro Universitario Hidalguense'),
(23563, 20378, 'en', 'name', 'University of Mbuji Mayi'),
(23564, 20379, 'no_lang_code', 'name', 'Tessella (United Kingdom)'),
(23565, 20380, 'es', 'name', 'Universidad Nacional Experimental del TƔchira'),
(23566, 20381, 'en', 'name', 'Canadian Museums Association'),
(23567, 20381, 'fr', 'name', 'Association des MusƩes Canadiens'),
(23568, 20382, 'cy', 'name', 'Cymdeithas Addysg y Gweithwyr'),
(23569, 20382, 'en', 'name', 'Workers Educational Association'),
(23570, 20383, 'en', 'name', 'Nazareth Hospital'),
(23571, 20384, 'es', 'name', 'Universidad Andina NƩstor CƔceres VelƔsquez'),
(23572, 20385, 'no_lang_code', 'name', 'VORtech (Netherlands)'),
(23573, 20386, 'pt', 'name', 'Universidade Braz Cubas'),
(23574, 20387, 'no_lang_code', 'name', 'Engie (United Kingdom)'),
(23575, 20388, 'en', 'name', 'TeamPatent'),
(23576, 20389, 'no_lang_code', 'name', 'Vipap (Slovenia)'),
(23577, 20390, 'no_lang_code', 'name', 'SVUM (Czechia)'),
(23578, 20391, 'en', 'name', 'Bletchley Community Hospital'),
(23579, 20392, 'en', 'name', 'Metec Innovation Consulting'),
(23580, 20393, 'en', 'name', 'Phi Theta Kappa Honor Society'),
(23581, 20394, 'en', 'name', 'Private University of Angola'),
(23582, 20394, 'pt', 'name', 'Universidade Privada de Angola'),
(23583, 20395, 'en', 'name', 'Farm Cove Observatory'),
(23584, 20396, 'en', 'name', 'City University of SĆ£o Caetano do Sul'),
(23585, 20396, 'pt', 'name', 'Universidade Municipal de SĆ£o Caetano do Sul'),
(23586, 20397, 'en', 'name', 'Ounce of Prevention Fund'),
(23587, 20398, 'es', 'name', 'Universidad Emilio CƔrdenas'),
(23588, 20399, 'en', 'name', 'Thatcham Research'),
(23589, 20400, 'no_lang_code', 'name', 'Obducat (Sweden)'),
(23590, 20401, 'en', 'name', 'Royal Agricultural Society of England'),
(23591, 20402, 'no_lang_code', 'name', 'Plasma Quest (United Kingdom)'),
(23592, 20403, 'en', 'name', 'Wilson Hospital'),
(23593, 20404, 'no_lang_code', 'name', 'Data Sciences International (United States)'),
(23594, 20405, 'en', 'name', 'Amridge University'),
(23595, 20406, 'en', 'name', 'Walton Hospital'),
(23596, 20407, 'en', 'name', 'Responsible Retailing Forum'),
(23597, 20408, 'es', 'name', 'Colegio de Estudios Superiores de Administración'),
(23598, 20409, 'en', 'name', 'Urumqi 4th People''s Hospital'),
(23599, 20409, 'zh', 'name', 'ä¹Œé²ęœØé½åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(23600, 20410, 'no_lang_code', 'name', 'Ipsen (United Kingdom)'),
(23601, 20411, 'no_lang_code', 'name', 'OncoMark (Ireland)'),
(23602, 20412, 'es', 'name', 'Universidad TƩcnica de Comercio');
INSERT INTO `ror_settings` VALUES
(23603, 20413, 'no_lang_code', 'name', 'Peptides International (United States)'),
(23604, 20414, 'no_lang_code', 'name', 'TƩcnicas y Servicios de Ingenierƭa (Spain)'),
(23605, 20415, 'no_lang_code', 'name', 'SMS Siemag (Germany)'),
(23606, 20416, 'no_lang_code', 'name', 'Prometni institut Ljubljana'),
(23607, 20417, 'en', 'name', 'McCord Museum'),
(23608, 20417, 'fr', 'name', 'MusƩe McCord'),
(23609, 20418, 'en', 'name', 'Marlow Community Hospital'),
(23610, 20419, 'fr', 'name', 'SociƩtƩ Canadienne de Science Economique'),
(23611, 20420, 'en', 'name', 'Walton Community Hospital'),
(23612, 20421, 'no_lang_code', 'name', 'Linamar (Canada)'),
(23613, 20422, 'en', 'name', 'United Hospital Center'),
(23614, 20423, 'no_lang_code', 'name', 'Tauw Group (Netherlands)'),
(23615, 20424, 'he', 'name', 'החברה ×”×œ××•×ž×™×Ŗ ×œ×“×Ø×›×™× ×‘×™×©×Ø××œ'),
(23616, 20424, 'no_lang_code', 'name', 'Netivei Israel (Israel)'),
(23617, 20425, 'pt', 'name', 'Centro UniversitƔrio Euroamericano'),
(23618, 20426, 'no_lang_code', 'name', 'Noterik (Netherlands)'),
(23619, 20427, 'no_lang_code', 'name', 'Tanneries du Puy (France)'),
(23620, 20428, 'en', 'name', 'Tavistock Hospital'),
(23621, 20429, 'en', 'name', 'Anhanguera-Uniderp University'),
(23622, 20429, 'pt', 'name', 'Universidade Anhanguera Uniderp'),
(23623, 20430, 'no_lang_code', 'name', 'VivoSight (United Kingdom)'),
(23624, 20431, 'en', 'name', 'Allied American University'),
(23625, 20432, 'fr', 'name', 'Tourisme Transports Territoires Environnement Conseil'),
(23626, 20433, 'fr', 'name', 'UniversitƩ de Mahajanga'),
(23627, 20434, 'en', 'name', 'Technology Development Foundation of Turkey'),
(23628, 20434, 'tr', 'name', 'Turkiye Teknoloji Gelistirme Vakfi, Türkiye Teknoloji Geliştirme Vakfı'),
(23629, 20435, 'no_lang_code', 'name', 'Sensor Developments (United States)'),
(23630, 20436, 'en', 'name', 'Doctors Hospital of Laredo'),
(23631, 20437, 'en', 'name', 'Danish Maritime Authority'),
(23632, 20438, 'en', 'name', 'Crescent University'),
(23633, 20439, 'pt', 'name', 'Escola Superior de Jornalismo'),
(23634, 20440, 'en', 'name', 'Barking Community Hospital'),
(23635, 20441, 'pt', 'name', 'Centro UniversitĆ”rio Sant’Anna'),
(23636, 20442, 'en', 'name', 'Rolling Hills Observatory'),
(23637, 20443, 'no_lang_code', 'name', 'Sermes CRO (Spain)'),
(23638, 20444, 'en', 'name', 'TomƔs Frƭas Autonomous University'),
(23639, 20444, 'es', 'name', 'Universidad Autónoma TomÔs Frías'),
(23640, 20445, 'pt', 'name', 'Centro UniversitƔrio de JaraguƔ do Sul'),
(23641, 20446, 'es', 'name', 'Universidad Tecnológica de Honduras'),
(23642, 20447, 'fr', 'name', 'Institut SupƩrieur de Formation en Technologie Alimentaire'),
(23643, 20448, 'no_lang_code', 'name', 'SMT Machine (Sweden)'),
(23644, 20449, 'en', 'name', 'Nashua School District'),
(23645, 20450, 'fr', 'name', 'Sociologie et SociƩtƩs'),
(23646, 20451, 'no_lang_code', 'name', 'Sundew Technologies (United States)'),
(23647, 20452, 'no_lang_code', 'name', 'VasGene Therapeutics (United States)'),
(23648, 20453, 'fr', 'name', 'Ecole SupĆ©rieure d’Economie AppliquĆ©e'),
(23649, 20454, 'no_lang_code', 'name', 'SKA Polska (Poland)'),
(23650, 20455, 'es', 'name', 'Universidad Madero'),
(23651, 20456, 'pt', 'name', 'Universidade da Região de Joinville'),
(23652, 20457, 'en', 'name', 'Autonomous University of Manizales'),
(23653, 20457, 'es', 'name', 'Universidad Autonoma de Manizales'),
(23654, 20458, 'en', 'name', 'Kiriri Women''s University of Science and Technology'),
(23655, 20459, 'no_lang_code', 'name', 'Prometheus Biosciences (United States)'),
(23656, 20460, 'en', 'name', 'Kabul Education University of Rabbani'),
(23657, 20460, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų“Ł‡ŪŒŲÆ پروفیسور برهان Ų§Ł„ŲÆŪŒŁ† Ų±ŲØŲ§Ł†ŪŒ'),
(23658, 20460, 'ps', 'name', 'ŲÆ پروفیسور برهان Ų§Ł„ŲÆŪŒŁ† Ų±ŲØŲ§Ł†ŪŒ Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(23659, 20461, 'no_lang_code', 'name', 'Poeton Industries (United Kingdom)'),
(23660, 20462, 'pt', 'name', 'Terra Scenica'),
(23661, 20463, 'en', 'name', 'Bolsover Hospital'),
(23662, 20464, 'es', 'name', 'Universidad Westhill'),
(23663, 20465, 'en', 'name', 'Bealey Community Hospital'),
(23664, 20466, 'id', 'name', 'Universitas Ma Chung'),
(23665, 20467, 'de', 'name', 'Technische Hochschule Wildau'),
(23666, 20467, 'en', 'name', 'Technical University of Applied Sciences Wildau'),
(23667, 20468, 'no_lang_code', 'name', 'United Biscuits (United Kingdom)'),
(23668, 20469, 'no_lang_code', 'name', 'Vasade Biosciences (United States)'),
(23669, 20470, 'no_lang_code', 'name', 'Rockwell Automation (United Kingdom)'),
(23670, 20471, 'en', 'name', 'Chipping Norton War Memorial Community Hospital'),
(23671, 20472, 'en', 'name', 'Tetbury Hospital'),
(23672, 20473, 'no_lang_code', 'name', 'Grupo TTT (Spain)'),
(23673, 20474, 'no_lang_code', 'name', 'Glencore (Canada)'),
(23674, 20475, 'no_lang_code', 'name', 'Solidus Biosciences (United States)'),
(23675, 20476, 'no_lang_code', 'name', 'Applied Science Laboratories (United States)'),
(23676, 20477, 'en', 'name', 'West Yorkshire Police'),
(23677, 20478, 'en', 'name', 'Grantham and District Hospital'),
(23678, 20479, 'no_lang_code', 'name', 'VaxInnate (United States)'),
(23679, 20480, 'no_lang_code', 'name', 'PolyPeptide Group (United States)'),
(23680, 20481, 'no_lang_code', 'name', 'NestlƩ (United Kingdom)'),
(23681, 20482, 'en', 'name', 'Tolworth Hospital'),
(23682, 20483, 'en', 'name', 'Canadian Centre for Policy Alternatives'),
(23683, 20484, 'en', 'name', 'W.E. Upjohn Institute for Employment Research'),
(23684, 20485, 'es', 'name', 'Universidad Humanista de las AmƩricas'),
(23685, 20486, 'no_lang_code', 'name', 'Talking Fingers (United States)'),
(23686, 20487, 'es', 'name', 'Universidad del Mar'),
(23687, 20488, 'en', 'name', 'Central University of Nicaragua'),
(23688, 20488, 'es', 'name', 'Universidad Central de Nicaragua'),
(23689, 20489, 'en', 'name', 'Milford Hospital'),
(23690, 20490, 'no_lang_code', 'name', 'Vantage Power (United Kingdom)'),
(23691, 20491, 'fr', 'name', 'UniversitƩ Adam Barka d''AbƩchƩ'),
(23692, 20492, 'no_lang_code', 'name', 'TeselaGen Biotechnology (United States)'),
(23693, 20493, 'no_lang_code', 'name', 'Novarials (United States)'),
(23694, 20494, 'hu', 'name', 'OrszÔgos Gyógyintézeti Központ'),
(23695, 20495, 'ja', 'name', '市立敦賀病院'),
(23696, 20495, 'no_lang_code', 'name', 'Municipal Tsuruga Hospital'),
(23697, 20496, 'no_lang_code', 'name', 'Palomino System Innovations (Canada)'),
(23698, 20497, 'no_lang_code', 'name', 'Destia'),
(23699, 20498, 'no_lang_code', 'name', 'Zenotech (United Kingdom)'),
(23700, 20499, 'no_lang_code', 'name', 'Montana Molecular (United States)'),
(23701, 20500, 'no_lang_code', 'name', 'HeidelbergCement (Norway)'),
(23702, 20501, 'no_lang_code', 'name', 'Spectris (United States)'),
(23703, 20502, 'es', 'name', 'Universidad PolitƩcnica y Artƭstica del Paraguay'),
(23704, 20503, 'en', 'name', 'Alberta College of Art + Design'),
(23705, 20504, 'en', 'name', 'Open University of Mauritius'),
(23706, 20505, 'en', 'name', 'Arrowe Park Hospital'),
(23707, 20506, 'es', 'name', 'Universidad de Los Altos de Chiapas'),
(23708, 20507, 'no_lang_code', 'name', 'Wates (United Kingdom)'),
(23709, 20508, 'en', 'name', 'Moorpark College'),
(23710, 20509, 'no_lang_code', 'name', 'Sequoia Environmental Remediation (Canada)'),
(23711, 20510, 'no_lang_code', 'name', 'Nimesis Technology (France)'),
(23712, 20511, 'en', 'name', 'National Library of Latvia'),
(23713, 20511, 'lv', 'name', 'Latvijas Nacionālā bibliotēka'),
(23714, 20512, 'en', 'name', 'En''owkin Centre'),
(23715, 20513, 'en', 'name', 'The Acre'),
(23716, 20514, 'en', 'name', 'Clay Cross Hospital'),
(23717, 20515, 'no_lang_code', 'name', 'ProBiotix (United States)'),
(23718, 20516, 'en', 'name', 'Newton Abbot Community Hospital'),
(23719, 20517, 'en', 'name', 'National Archives of Estonia'),
(23720, 20517, 'et', 'name', 'Rahvusarhiiv'),
(23721, 20518, 'no_lang_code', 'name', 'Sagentia (United Kingdom)'),
(23722, 20519, 'es', 'name', 'Institución Universitaria Politecnico Grancolombiano, Politécnico Grancolombiano'),
(23723, 20520, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للهندسة Ų§Ł„Ł…Ų¹Ł…Ų§Ų±ŁŠŲ©'),
(23724, 20520, 'en', 'name', 'National School of Architecture'),
(23725, 20520, 'fr', 'name', 'Ecole Nationale d''Architecture'),
(23726, 20521, 'no_lang_code', 'name', 'NeuroSigma (United States)'),
(23727, 20522, 'no_lang_code', 'name', 'RR Donnelley (United States)'),
(23728, 20523, 'en', 'name', 'St Charles Hospital'),
(23729, 20524, 'en', 'name', 'New Mexico Museum of Natural History and Science'),
(23730, 20525, 'no_lang_code', 'name', 'RiNA (Germany)'),
(23731, 20526, 'en', 'name', 'Southlands Hospital'),
(23732, 20527, 'en', 'name', 'Seowon University'),
(23733, 20527, 'ko', 'name', 'ģ„œģ›ėŒ€ķ•™źµ'),
(23734, 20528, 'en', 'name', 'New Epsom and Ewell Community Hospital'),
(23735, 20529, 'en', 'name', 'Canadian Arthritis Network'),
(23736, 20530, 'en', 'name', 'Canadian Criminal Justice Association'),
(23737, 20530, 'fr', 'name', 'Association Canadienne de Justice PƩnale'),
(23738, 20531, 'no_lang_code', 'name', 'Omax (United States)'),
(23739, 20532, 'es', 'name', 'Universidad Popular Autónoma del Estado de Puebla'),
(23740, 20533, 'no_lang_code', 'name', 'TBZ PARIV (Germany)'),
(23741, 20534, 'no_lang_code', 'name', 'X-Treme Creations (Netherlands)'),
(23742, 20535, 'en', 'name', 'Ndejje University'),
(23743, 20536, 'no_lang_code', 'name', 'iTelescope.Net'),
(23744, 20537, 'no_lang_code', 'name', 'Innovation Ecology (Israel)'),
(23745, 20538, 'en', 'name', 'Paddocks Hospital'),
(23746, 20539, 'es', 'name', 'Universidad de CuautitlƔn Izcalli'),
(23747, 20540, 'no_lang_code', 'name', 'Sico Technology (Austria)'),
(23748, 20541, 'no_lang_code', 'name', 'Sviluppo Toscana (Italy)'),
(23749, 20542, 'en', 'name', 'Mount Washington Observatory'),
(23750, 20543, 'pt', 'name', 'Centro UniversitÔrio da Fundação de Ensino OctÔvio Bastos'),
(23751, 20544, 'en', 'name', 'Hokkaido Information University'),
(23752, 20544, 'ja', 'name', 'åŒ—ęµ·é“ęƒ…å ±å¤§å­¦'),
(23753, 20545, 'en', 'name', 'Okanagan Science Centre'),
(23754, 20546, 'pt', 'name', 'ColƩgio Metodista Bennett'),
(23755, 20547, 'en', 'name', 'Fuyang City People''s Hospital'),
(23756, 20547, 'zh', 'name', 'ęæ®é˜³åø‚äŗŗę°‘åŒ»é™¢'),
(23757, 20548, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(23758, 20548, 'en', 'name', 'Sudan International University'),
(23759, 20549, 'en', 'name', 'Elmleigh Hospital'),
(23760, 20550, 'no_lang_code', 'name', 'Synapse Biomedical (United States)'),
(23761, 20551, 'en', 'name', 'Queen Elizabeth Hospital'),
(23762, 20552, 'no_lang_code', 'name', 'Tunitas Therapeutics (United States)'),
(23763, 20553, 'en', 'name', 'St. Augustine University of Tanzania'),
(23764, 20553, 'sw', 'name', 'Chuo Kikuu cha Mtakatifu Agostino Tanzania'),
(23765, 20554, 'no_lang_code', 'name', 'Shellcase (Israel)'),
(23766, 20555, 'en', 'name', 'Spire Hull and East Riding Hospital'),
(23767, 20556, 'no_lang_code', 'name', 'NETvisor (Hungary)'),
(23768, 20557, 'en', 'name', 'Danish Meat Trade College'),
(23769, 20558, 'fr', 'name', 'UniversitĆ© d’Antsiranana'),
(23770, 20559, 'no_lang_code', 'name', 'RH Lyon (United States)'),
(23771, 20560, 'no_lang_code', 'name', 'Vicon (United Kingdom)'),
(23772, 20561, 'en', 'name', 'Knutsford and District Community Hospital'),
(23773, 20562, 'no_lang_code', 'name', 'Rizzo International (United States)'),
(23774, 20563, 'en', 'name', 'Canadian Centre for Community Renewal'),
(23775, 20564, 'no_lang_code', 'name', 'Neuro Kinetics (United States)'),
(23776, 20565, 'no_lang_code', 'name', 'Office Public d''Aménagement et de Construction de l''Isère (France)'),
(23777, 20566, 'no_lang_code', 'name', 'Victrex (United Kingdom)'),
(23778, 20567, 'en', 'name', 'Congress of Aboriginal Peoples'),
(23779, 20568, 'no_lang_code', 'name', 'Newomics (United States)'),
(23780, 20569, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†ŁˆŲ§ŁƒŲ“ŁˆŲ·'),
(23781, 20569, 'en', 'name', 'University of Nouakchott Al Aasriya'),
(23782, 20569, 'fr', 'name', 'UniversitƩ de Nouakchott Al Aasriya'),
(23783, 20570, 'en', 'name', 'Orange Coast College'),
(23784, 20571, 'en', 'name', 'Cheshunt Minor Injuries Unit'),
(23785, 20572, 'no_lang_code', 'name', 'Nuvation (Canada)'),
(23786, 20573, 'en', 'name', 'Suizhou Central Hospital'),
(23787, 20573, 'zh', 'name', 'éšå·žåø‚äø­åæƒåŒ»é™¢'),
(23788, 20574, 'en', 'name', 'Prevention Connections'),
(23789, 20575, 'no_lang_code', 'name', 'Skyworks Solutions (United Kingdom)'),
(23790, 20576, 'en', 'name', 'Cabrini Hospital'),
(23791, 20577, 'en', 'name', 'Southwest Virginia Community College'),
(23792, 20578, 'en', 'name', 'Pennsylvania Department of Drug and Alcohol Programs'),
(23793, 20579, 'es', 'name', 'Universidad Real'),
(23794, 20580, 'no_lang_code', 'name', 'Ursit (Bulgaria)'),
(23795, 20581, 'no_lang_code', 'name', 'Schulman, Ronca & Bucuvalas'),
(23796, 20582, 'en', 'name', 'Value-Driven Design Institute'),
(23797, 20583, 'ar', 'name', 'معهد Ų§Ł„Ų§Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ© العالى للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(23798, 20583, 'en', 'name', 'Alexandria Higher Institute of Engineering and Technology'),
(23799, 20584, 'de', 'name', 'Stiftung Verum'),
(23800, 20584, 'en', 'name', 'Verum - Foundation for Behaviour and Environment'),
(23801, 20585, 'es', 'name', 'Hospital de La Ribera'),
(23802, 20586, 'no_lang_code', 'name', 'Vorwerk (Germany)'),
(23803, 20587, 'no_lang_code', 'name', 'Photometrics (United States)'),
(23804, 20588, 'no_lang_code', 'name', 'Paraytec (United Kingdom)'),
(23805, 20589, 'no_lang_code', 'name', 'Sociedad Anónima Industrias Celulosa Aragonesa (Spain)'),
(23806, 20590, 'no_lang_code', 'name', 'Ecolyse (United States)'),
(23807, 20591, 'es', 'name', 'Universidad Nacional Experimental de Guayana'),
(23808, 20592, 'no_lang_code', 'name', 'Teollisuuden Voima (Finland)'),
(23809, 20592, 'sv', 'name', 'Industrins Kraft Abp'),
(23810, 20593, 'pt', 'name', 'Centro UniversitÔrio Barão de MauÔ'),
(23811, 20594, 'no_lang_code', 'name', 'Talent Systems (Greece)'),
(23812, 20595, 'en', 'name', 'Molecular Medicine Ireland'),
(23813, 20596, 'en', 'name', 'Bispham Hospital'),
(23814, 20597, 'en', 'name', 'Native American Management Services'),
(23815, 20598, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ تمنراست'),
(23816, 20598, 'fr', 'name', 'Centre Universitaire de Tamanrasset'),
(23817, 20599, 'no_lang_code', 'name', 'MultiD Analyses (Sweden)'),
(23818, 20600, 'es', 'name', 'Universidad de Morón'),
(23819, 20601, 'en', 'name', 'Amberstone Hospital'),
(23820, 20602, 'en', 'name', 'Chalfonts and Gerrards Cross Hospital'),
(23821, 20603, 'en', 'name', 'Progressive Life Center'),
(23822, 20604, 'es', 'name', 'Instituto Guillermo Subercaseaux'),
(23823, 20605, 'no_lang_code', 'name', 'Schneider Electric (United Kingdom)'),
(23824, 20606, 'en', 'name', 'Fifth Hospital of Shijiazhuang'),
(23825, 20607, 'no_lang_code', 'name', 'Metec (Germany)'),
(23826, 20608, 'en', 'name', 'BC Studies'),
(23827, 20609, 'en', 'name', 'Kamloops Art Gallery'),
(23828, 20610, 'en', 'name', 'Kochi University of Technology'),
(23829, 20610, 'ja', 'name', 'é«˜ēŸ„å·„ē§‘å¤§å­¦'),
(23830, 20611, 'no_lang_code', 'name', 'Wallenius Lines (Sweden)'),
(23831, 20612, 'en', 'name', 'Ohio Valley University'),
(23832, 20612, 'fr', 'name', 'UniversitƩ de la vallƩe de l''ohio'),
(23833, 20613, 'no_lang_code', 'name', 'Stena (Sweden)'),
(23834, 20614, 'en', 'name', 'Federation of Norwegian Industries'),
(23835, 20614, 'no_lang_code', 'name', 'Norsk Industri (Norway)'),
(23836, 20615, 'en', 'name', 'Rutherford + Chekene'),
(23837, 20616, 'pt', 'name', 'Centro UniversitƔrio de VƔrzea Grande'),
(23838, 20617, 'en', 'name', 'Victoria Community Hospital'),
(23839, 20618, 'no_lang_code', 'name', 'Nuvera (Italy)'),
(23840, 20619, 'no_lang_code', 'name', 'Nzytech (Portugal)'),
(23841, 20620, 'fr', 'name', 'UniversitƩ PrivƩe du Sud'),
(23842, 20621, 'en', 'name', 'Yellowhawk Tribal Health Center'),
(23843, 20622, 'en', 'name', 'Stretford Memorial Hospital'),
(23844, 20623, 'no_lang_code', 'name', 'Couniniotis Group (Greece)'),
(23845, 20624, 'en', 'name', 'NanoImaging Services'),
(23846, 20625, 'no_lang_code', 'name', 'Team Neurodynamics (United States)'),
(23847, 20626, 'no_lang_code', 'name', 'Soitec (France)'),
(23848, 20627, 'en', 'name', 'Hunan University of Humanities, Science and Technology'),
(23849, 20627, 'zh', 'name', 'ę¹–å—äŗŗę–‡ē§‘ęŠ€å­¦é™¢'),
(23850, 20628, 'en', 'name', 'Peasley Cross Hospital'),
(23851, 20629, 'no_lang_code', 'name', 'Rapport (United States)'),
(23852, 20630, 'en', 'name', 'North American Association for Environmental Education'),
(23853, 20631, 'es', 'name', 'Universidad Lucerna'),
(23854, 20632, 'en', 'name', 'Stardome Observatory'),
(23855, 20633, 'en', 'name', 'Canadian Society for Digital Humanities'),
(23856, 20633, 'fr', 'name', 'SociƩtƩ Canadienne pour les HumanitƩs NumƩriques.'),
(23857, 20634, 'en', 'name', 'Ehime Medical Center'),
(23858, 20634, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ ę„›åŖ›åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(23859, 20635, 'it', 'name', 'Sinform'),
(23860, 20636, 'no_lang_code', 'name', 'RÔdio e Televisão de Portugal (Portugal)'),
(23861, 20637, 'en', 'name', 'Croydon Health Services NHS Trust'),
(23862, 20638, 'no_lang_code', 'name', 'Rapanelli Fioravante (Italy)'),
(23863, 20639, 'en', 'name', 'Swedish National Land Survey'),
(23864, 20639, 'sv', 'name', 'LantmƤteriet'),
(23865, 20640, 'en', 'name', 'Canadian Association for Graduate Studies'),
(23866, 20641, 'no_lang_code', 'name', 'pH Matter (United States)'),
(23867, 20642, 'no_lang_code', 'name', 'Move Entwicklungs Infrastruktur und Service (Germany)'),
(23868, 20643, 'no_lang_code', 'name', 'Toscana Biomarkers (Italy)'),
(23869, 20644, 'no_lang_code', 'name', 'ORME (France)'),
(23870, 20645, 'no_lang_code', 'name', 'Tangshan Gongren Hospital'),
(23871, 20646, 'no_lang_code', 'name', 'Warburtons (United Kingdom)'),
(23872, 20647, 'en', 'name', 'Vale Community Hospital'),
(23873, 20648, 'es', 'name', 'Instituto Universitario Escuela Superior de Economía y Administración de Empresas'),
(23874, 20649, 'fr', 'name', 'UniversitƩ de Hearst'),
(23875, 20650, 'no_lang_code', 'name', 'PaneraTech (United States)'),
(23876, 20651, 'no_lang_code', 'name', 'Powerline Technologies (United Kingdom)'),
(23877, 20652, 'fr', 'name', 'Institut Facultaire des Sciences de l''Information et de la Communication'),
(23878, 20653, 'no_lang_code', 'name', 'Ashmore Energy International (United Kingdom)'),
(23879, 20654, 'en', 'name', 'Wuhu Fourth People Hospital'),
(23880, 20654, 'zh', 'name', 'čŠœę¹–åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(23881, 20655, 'es', 'name', 'Instituto Superior de Formación Docente Salomé Ureña'),
(23882, 20656, 'en', 'name', 'Oregon Coast Community College'),
(23883, 20657, 'pt', 'name', 'Universidade Tuiuti do ParanĆ”'),
(23884, 20658, 'pt', 'name', 'Centro UniversitƔrio Leonardo da Vinci'),
(23885, 20659, 'en', 'name', 'Cockermouth Community Hospital'),
(23886, 20660, 'fr', 'name', 'UniversitƩ Larbi TƩbessi'),
(23887, 20661, 'en', 'name', 'University of Morelia'),
(23888, 20661, 'es', 'name', 'Universidad de Morelia'),
(23889, 20662, 'en', 'name', 'Finchley Memorial Hospital'),
(23890, 20663, 'no_lang_code', 'name', 'VocaLink (United Kingdom)'),
(23891, 20664, 'es', 'name', 'Universidad Interamericana para el Desarrollo'),
(23892, 20665, 'no_lang_code', 'name', 'Affini Technology (United Kingdom)'),
(23893, 20666, 'en', 'name', 'Marien Ngouabi University'),
(23894, 20666, 'fr', 'name', 'UniversitƩ Marien Ngouabi'),
(23895, 20667, 'pt', 'name', 'Universidade SĆ£o Judas Tadeu'),
(23896, 20668, 'no_lang_code', 'name', 'Next Ingegneria dei Sistemi (Italy)'),
(23897, 20669, 'en', 'name', 'ViƱa del Mar University'),
(23898, 20669, 'es', 'name', 'Universidad ViƱa del Mar'),
(23899, 20670, 'en', 'name', 'Technology Innovation International'),
(23900, 20671, 'fr', 'name', 'Ɖcole Nationale d''Administration'),
(23901, 20672, 'fr', 'name', 'Institut SupĆ©rieur d’Art Dramatique et d’Animation Culturelle'),
(23902, 20673, 'es', 'name', 'Centro de Estudios Universitarios de Baja California'),
(23903, 20674, 'en', 'name', 'Polk State College'),
(23904, 20675, 'en', 'name', 'Conference Board of Canada'),
(23905, 20675, 'fr', 'name', 'Le Conference Board du Canada'),
(23906, 20676, 'no_lang_code', 'name', 'PBLH International Consulting'),
(23907, 20677, 'no_lang_code', 'name', 'Questel (France)'),
(23908, 20678, 'no_lang_code', 'name', 'Accenture (Italy)'),
(23909, 20679, 'es', 'name', 'Universidad MƩxico ContemporƔneo'),
(23910, 20680, 'no_lang_code', 'name', 'Telefónica (United Kingdom)'),
(23911, 20681, 'en', 'name', 'Welding Research Institute - Industrial Institute SR'),
(23912, 20682, 'en', 'name', 'Higher Institute on Territorial Systems for Innovation'),
(23913, 20682, 'it', 'name', 'Istituto Superiore sui Sistemi Territoriali per l’Innovazione'),
(23914, 20683, 'no_lang_code', 'name', 'Turner Designs (United States)'),
(23915, 20684, 'no_lang_code', 'name', 'Vihorlat Observatory'),
(23916, 20684, 'sk', 'name', 'VihorlatskÔ hvezdÔreň'),
(23917, 20685, 'pt', 'name', 'Instituto Metodista Izabela Hendrix'),
(23918, 20686, 'en', 'name', 'Jilin Province Tumor Hospital'),
(23919, 20686, 'zh', 'name', 'å‰ęž—ēœč‚æē˜¤åŒ»é™¢'),
(23920, 20687, 'en', 'name', 'Center for Innovation and Technology'),
(23921, 20687, 'no_lang_code', 'name', 'Zentrum für Innovation und Technik in Nordrhein-Westfalen'),
(23922, 20688, 'es', 'name', 'Universidad Salesiana de Bolivia'),
(23923, 20689, 'en', 'name', 'Galen University'),
(23924, 20689, 'es', 'name', 'Universidad de Galen'),
(23925, 20690, 'no_lang_code', 'name', 'Simmetrix (United States)'),
(23926, 20691, 'no_lang_code', 'name', 'Systran (France)'),
(23927, 20692, 'no_lang_code', 'name', 'Oragenics (United States)'),
(23928, 20693, 'de', 'name', 'Katholisches Klinikum Lünen/Werne , St.-Marien-Hospital Lünen'),
(23929, 20694, 'no_lang_code', 'name', 'Plantechno (Italy)'),
(23930, 20695, 'pt', 'name', 'Centro UniversitÔrio Adventista de São Paulo'),
(23931, 20696, 'ar', 'name', 'مستؓفى بقؓان'),
(23932, 20696, 'en', 'name', 'Bugshan Hospital'),
(23933, 20697, 'fr', 'name', 'Centre Universitaire de LabƩ'),
(23934, 20698, 'pt', 'name', 'Universidade Jean Piaget de MoƧambique'),
(23935, 20699, 'en', 'name', 'Zambian Open University'),
(23936, 20700, 'en', 'name', 'Vermont Agency of Education'),
(23937, 20701, 'no_lang_code', 'name', 'Sherbrooke O.E.M (Canada)'),
(23938, 20702, 'no_lang_code', 'name', 'NanoMEMS Research (United States)'),
(23939, 20703, 'en', 'name', 'Renz Addiction Counseling Center'),
(23940, 20704, 'no_lang_code', 'name', 'Talisman (United States)'),
(23941, 20705, 'no_lang_code', 'name', 'Ramboll (Denmark)'),
(23942, 20706, 'en', 'name', 'Briar Cliff University'),
(23943, 20707, 'no_lang_code', 'name', 'PSA (United States)'),
(23944, 20708, 'no_lang_code', 'name', 'NanoTecCenter Weiz Forschungsgesellschaft (Austria)'),
(23945, 20709, 'no_lang_code', 'name', 'MuthƩn & MuthƩn (United States)'),
(23946, 20710, 'en', 'name', 'Mount Vernon Hospital'),
(23947, 20711, 'en', 'name', 'Devizes Community Hospital'),
(23948, 20712, 'no_lang_code', 'name', 'MammaCare (United States)'),
(23949, 20713, 'en', 'name', 'Management Sciences for Health'),
(23950, 20714, 'en', 'name', 'Union County College'),
(23951, 20715, 'en', 'name', 'Osborne Association'),
(23952, 20716, 'en', 'name', 'Morpeth Cottage Hospital'),
(23953, 20717, 'en', 'name', 'wfk - Cleaning Technology Institute'),
(23954, 20718, 'en', 'name', 'University College Hospital'),
(23955, 20719, 'no_lang_code', 'name', 'Kemrock Industries And Exports (Italy)'),
(23956, 20720, 'en', 'name', 'Palestinian Energy and Environment Research Center'),
(23957, 20721, 'no_lang_code', 'name', 'Quick Reaction Corporation (United States)'),
(23958, 20722, 'no_lang_code', 'name', 'Singleton Birch (United Kingdom)'),
(23959, 20723, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲØŲ­Ų±ŁŠŲ©'),
(23960, 20723, 'fr', 'name', 'Institut SupĆ©rieur d''Ɖtudes Maritimes'),
(23961, 20724, 'en', 'name', 'Northwest Women''s and Children''s Hospital'),
(23962, 20724, 'zh', 'name', 'č„æåŒ—å¦‡å„³å„æē«„åŒ»é™¢'),
(23963, 20725, 'no_lang_code', 'name', 'Nanoforce Technology (United Kingdom)'),
(23964, 20726, 'no_lang_code', 'name', 'RedZinc (Ireland)'),
(23965, 20727, 'no_lang_code', 'name', 'Zipalog (United States)'),
(23966, 20728, 'en', 'name', 'American University of Health Sciences'),
(23967, 20729, 'en', 'name', 'Goodmayes Hospital'),
(23968, 20730, 'en', 'name', 'Student Biotechnology Network'),
(23969, 20731, 'en', 'name', 'Homerton University Hospital'),
(23970, 20732, 'no_lang_code', 'name', 'Nonwovens Innovation & Research Institute'),
(23971, 20733, 'fr', 'name', 'Ɖcole Nationale d''Administration'),
(23972, 20734, 'pt', 'name', 'Centro UniversitƔrio Campos de Andrade'),
(23973, 20735, 'es', 'name', 'Corporación Educativa del Litoral'),
(23974, 20736, 'en', 'name', 'Saint Gƶran Hospital'),
(23975, 20736, 'sv', 'name', 'Sankt Gƶrans sjukhus'),
(23976, 20737, 'es', 'name', 'Universidad Católica de Costa Rica'),
(23977, 20738, 'fr', 'name', 'UniversitĆ© ChrĆ©tienne du Nord d’HaĆÆti'),
(23978, 20739, 'ca', 'name', 'Petita i Mitjana Empresa de Catalunya'),
(23979, 20740, 'fr', 'name', 'Ɖcole SupĆ©rieure de Gestion'),
(23980, 20741, 'en', 'name', 'National Institute of Hospital Administration'),
(23981, 20741, 'zh', 'name', 'å«ē”ŸéƒØåŒ»é™¢ē®”ē†ē ”ē©¶ę‰€'),
(23982, 20742, 'en', 'name', 'TÜBİTAK National Observatory'),
(23983, 20742, 'tr', 'name', 'TÜBİTAK Ulusal Gözlemevi'),
(23984, 20743, 'en', 'name', 'Vasyl'' Stus Donetsk National University'),
(23985, 20743, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’Š°ŃŠøŠ»Ń Š”Ń‚ŃƒŃŠ°'),
(23986, 20744, 'en', 'name', 'Ideas Foundation'),
(23987, 20745, 'en', 'name', 'Oaks Hospital'),
(23988, 20746, 'en', 'name', 'Norfolk Community Health and Care NHS Trust'),
(23989, 20747, 'de', 'name', 'Senckenberg Gesellschaft für Naturforschung'),
(23990, 20747, 'en', 'name', 'Senckenberg Society for Nature Research'),
(23991, 20748, 'no_lang_code', 'name', 'Grupo Panorama (Spain)'),
(23992, 20749, 'en', 'name', 'Slovak Hydrometeorological Institute'),
(23993, 20750, 'en', 'name', 'Shanghai Huangpu District Central Hospital'),
(23994, 20750, 'zh', 'name', 'é»„ęµ¦åŒŗäø­åæƒåŒ»é™¢'),
(23995, 20751, 'es', 'name', 'Universidad Nacional del Este'),
(23996, 20752, 'no_lang_code', 'name', 'Naval Architecture Progress (Greece)'),
(23997, 20753, 'no_lang_code', 'name', 'Scanogen (United States)'),
(23998, 20754, 'en', 'name', 'Canadian Counselling and Psychotherapy Association'),
(23999, 20754, 'fr', 'name', 'Association Canadienne de Counseling et de PsychothƩrapie'),
(24000, 20755, 'es', 'name', 'Universidad CientĆ­fica Latinoamericana de Hidalgo'),
(24001, 20756, 'en', 'name', 'Northwest University'),
(24002, 20757, 'no_lang_code', 'name', 'Senceive (United Kingdom)'),
(24003, 20758, 'en', 'name', 'Newquay Community Hospital'),
(24004, 20759, 'en', 'name', 'Shanghai Second People''s Hospital'),
(24005, 20759, 'zh', 'name', 'äøŠęµ·åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(24006, 20760, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes Commerciales'),
(24007, 20761, 'es', 'name', 'Universidad Isidro Fabela de Toluca'),
(24008, 20762, 'no_lang_code', 'name', 'Systemexpert Consulting'),
(24009, 20763, 'no_lang_code', 'name', 'Nubad (United States)'),
(24010, 20764, 'no_lang_code', 'name', 'Verbund (Austria)'),
(24011, 20765, 'no_lang_code', 'name', 'Momatec (Germany)'),
(24012, 20766, 'en', 'name', 'Universities at Shady Grove'),
(24013, 20767, 'en', 'name', 'National Association of Local Boards of Health'),
(24014, 20768, 'no_lang_code', 'name', 'PragmatIC (United Kingdom)'),
(24015, 20769, 'en', 'name', 'International Union of Radioecology'),
(24016, 20770, 'en', 'name', 'National School of Business and Management in Settat'),
(24017, 20770, 'fr', 'name', 'Ɖcole Nationale de Commerce et de Gestion de Settat'),
(24018, 20771, 'en', 'name', 'Ministry of Culture'),
(24019, 20771, 'fr', 'name', 'MinistĆØre de la Culture'),
(24020, 20772, 'en', 'name', 'Sanexen Environmental Services'),
(24021, 20773, 'no_lang_code', 'name', 'SomaLogic (United States)'),
(24022, 20774, 'es', 'name', 'Universidad de Managua'),
(24023, 20775, 'en', 'name', 'Bushey Fields Hospital'),
(24024, 20776, 'en', 'name', 'University Hospital of Hartlepool'),
(24025, 20777, 'en', 'name', 'The Rotherham NHS Foundation Trust'),
(24026, 20778, 'es', 'name', 'Universidad Privada San Carlos'),
(24027, 20779, 'no_lang_code', 'name', 'Scientifica (United Kingdom)'),
(24028, 20780, 'en', 'name', 'Rothbury Community Hospital'),
(24029, 20781, 'ja', 'name', 'ę„›ēŸ„ę·‘å¾³å¤§å­¦'),
(24030, 20781, 'no_lang_code', 'name', 'Aichi Shukutoku University'),
(24031, 20782, 'no_lang_code', 'name', 'Momentum (United Kingdom)'),
(24032, 20783, 'no_lang_code', 'name', 'SEQUOIA (Italy)'),
(24033, 20784, 'en', 'name', 'Unity College'),
(24034, 20785, 'en', 'name', 'Sutton Hospital'),
(24035, 20786, 'en', 'name', 'Abdullah Gül University'),
(24036, 20786, 'tr', 'name', 'Abdullah Gül Üniversitesi'),
(24037, 20787, 'en', 'name', 'Odyssey House Louisiana'),
(24038, 20788, 'no_lang_code', 'name', 'Nokia (United Kingdom)'),
(24039, 20789, 'en', 'name', 'Wesley University'),
(24040, 20790, 'no_lang_code', 'name', 'Uvasol (United Kingdom)'),
(24041, 20791, 'en', 'name', 'Cranefield College'),
(24042, 20792, 'en', 'name', 'Xochicalco University'),
(24043, 20792, 'es', 'name', 'Centro de Estudios Universitarios Xochicalco'),
(24044, 20793, 'fa', 'name', 'دانؓگاه Ų­Ś©ŪŒŁ… سبزواری'),
(24045, 20793, 'no_lang_code', 'name', 'Hakim Sabzevari University'),
(24046, 20794, 'no_lang_code', 'name', 'Sisteplant (Spain)'),
(24047, 20795, 'en', 'name', 'Society for Socialist Studies'),
(24048, 20795, 'fr', 'name', 'SociƩtƩ dƩtudes socialistes'),
(24049, 20796, 'en', 'name', 'Research Canada'),
(24050, 20796, 'fr', 'name', 'Recherche Canada'),
(24051, 20797, 'en', 'name', 'BMI The London Independent Hospital'),
(24052, 20798, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³ Ų§Ł„Ų§ŁŲŖŲ±Ų§Ų¶ŁŠŲ©'),
(24053, 20798, 'en', 'name', 'Virtual University of Tunis'),
(24054, 20799, 'no_lang_code', 'name', 'De Lijn (Belgium)'),
(24055, 20800, 'en', 'name', 'Promotion Office for Inland Navigation in Flanders'),
(24056, 20800, 'nl', 'name', 'Promotie Binnenvaart Vlaanderen'),
(24057, 20801, 'no_lang_code', 'name', 'Quercus X-ray Technologies (United States)'),
(24058, 20802, 'no_lang_code', 'name', 'Spring Bank Pharmaceuticals (United States)'),
(24059, 20803, 'no_lang_code', 'name', 'Metronix (Germany)'),
(24060, 20804, 'es', 'name', 'Universidad Casa Blanca'),
(24061, 20805, 'no_lang_code', 'name', 'SAS Institute (United States)'),
(24062, 20806, 'en', 'name', 'Trident University International'),
(24063, 20807, 'no_lang_code', 'name', 'ORT Israel'),
(24064, 20808, 'no_lang_code', 'name', 'Zayer (Spain)'),
(24065, 20809, 'en', 'name', 'Ilfracombe Tyrrell Hospital'),
(24066, 20810, 'pt', 'name', 'Secretaria Regional do Ambiente e Recursos Naturais'),
(24067, 20811, 'no_lang_code', 'name', 'Seluxit (Denmark)'),
(24068, 20812, 'no_lang_code', 'name', 'Nenuphar (France)'),
(24069, 20813, 'en', 'name', 'Communitech'),
(24070, 20814, 'no_lang_code', 'name', 'Plastia (Spain)'),
(24071, 20815, 'en', 'name', 'Norwegian Metrology Service'),
(24072, 20816, 'no_lang_code', 'name', 'Helix Biopharma (Canada)'),
(24073, 20817, 'no_lang_code', 'name', 'Zeus Scientific (United States)'),
(24074, 20818, 'en', 'name', 'Purley War Memorial Hospital'),
(24075, 20819, 'en', 'name', 'Saint Martin University'),
(24076, 20819, 'es', 'name', 'Fundación Universitaria San Martín'),
(24077, 20820, 'es', 'name', 'Universidad Autónoma de Chile'),
(24078, 20821, 'en', 'name', 'Shijiazhuang Great Wall Hospital'),
(24079, 20821, 'zh', 'name', 'ēŸ³å®¶åŗ„é•æåŸŽåŒ»é™¢'),
(24080, 20822, 'no_lang_code', 'name', 'Sedia Biosciences (United States)'),
(24081, 20823, 'en', 'name', 'North Carolina Public Schools'),
(24082, 20824, 'en', 'name', 'National Merit Scholarship Corporation'),
(24083, 20825, 'es', 'name', 'Universidad TƩcnica Luis Vargas Torres'),
(24084, 20826, 'el', 'name', 'Ελληνικά Ī›Ī¹Ļ€Ī¬ĻƒĪ¼Ī±Ļ„Ī± και Χημικά'),
(24085, 20826, 'no_lang_code', 'name', 'ELFE Group (Greece)'),
(24086, 20827, 'de', 'name', 'Krankenhaus Bruneck'),
(24087, 20828, 'en', 'name', 'Cairn University'),
(24088, 20829, 'no_lang_code', 'name', 'WHM Group'),
(24089, 20830, 'no_lang_code', 'name', 'Virtual Open Systems (France)'),
(24090, 20831, 'en', 'name', 'Chiba Kaihin Municipal Hospital'),
(24091, 20831, 'ja', 'name', 'åƒč‘‰åø‚ē«‹ęµ·ęµœē—…é™¢'),
(24092, 20832, 'en', 'name', 'Leatherhead Community Hospital'),
(24093, 20833, 'en', 'name', 'Protestant University in Congo'),
(24094, 20833, 'fr', 'name', 'UniversitƩ Protestante au Congo'),
(24095, 20834, 'en', 'name', 'Perth Exoplanet Survey Telescope Observatory'),
(24096, 20835, 'no_lang_code', 'name', 'Cybernet Systems Corporation (Canada)'),
(24097, 20836, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ŁŠŁ†ŲØŲ¹ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(24098, 20836, 'en', 'name', 'Yanbu University College'),
(24099, 20837, 'es', 'name', 'Universidad Casa Grande'),
(24100, 20838, 'en', 'name', 'Hemel Hempstead Hospital'),
(24101, 20839, 'en', 'name', 'International University of Management'),
(24102, 20840, 'pt', 'name', 'Centro UniversitƔrio Padre Anchieta'),
(24103, 20841, 'en', 'name', 'Beccles & District War Memorial Hospital'),
(24104, 20842, 'en', 'name', 'First People''s Hospital of Chongqing'),
(24105, 20842, 'zh', 'name', 'é‡åŗ†åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(24106, 20843, 'en', 'name', 'Tianjin Anding Hospital'),
(24107, 20843, 'zh', 'name', 'å¤©ę“„åø‚å®‰å®šåŒ»é™¢'),
(24108, 20844, 'no_lang_code', 'name', 'Systematic (Netherlands)'),
(24109, 20845, 'en', 'name', 'Canadian Association for Commonwealth Literature and Language Studies'),
(24110, 20846, 'no_lang_code', 'name', 'Stratophase (United Kingdom)'),
(24111, 20847, 'no_lang_code', 'name', 'Sysgo (Czechia)'),
(24112, 20848, 'en', 'name', 'Daniel Langlois Foundation for Art Science and Technology'),
(24113, 20849, 'no_lang_code', 'name', 'Technomar (Germany)'),
(24114, 20850, 'en', 'name', 'Southwestern Law School'),
(24115, 20851, 'en', 'name', 'Superior Court of California'),
(24116, 20852, 'no_lang_code', 'name', 'William Ross (United Kingdom)'),
(24117, 20853, 'no_lang_code', 'name', 'Sensys Networks (United States)'),
(24118, 20854, 'pt', 'name', 'Centro UniversitƔrio de Caratinga'),
(24119, 20855, 'en', 'name', 'Little Plumstead Hospital'),
(24120, 20856, 'pt', 'name', 'Centro UniversitƔrio do ParƔ'),
(24121, 20857, 'en', 'name', 'Nez Perce Tribal Executive Committee'),
(24122, 20858, 'en', 'name', 'Jean Piaget University of Angola'),
(24123, 20858, 'pt', 'name', 'Universidade Jean Piaget de Angola'),
(24124, 20859, 'en', 'name', 'St Barnabas Hospital'),
(24125, 20860, 'no_lang_code', 'name', 'National Microelectronics Applications Centre (Ireland)'),
(24126, 20861, 'no_lang_code', 'name', 'Naneum (United Kingdom)'),
(24127, 20862, 'no_lang_code', 'name', 'NIL Technology (Denmark)'),
(24128, 20863, 'pt', 'name', 'Centro UniversitƔrio Franciscano do ParanƔ'),
(24129, 20864, 'no_lang_code', 'name', 'Techint (Italy)'),
(24130, 20865, 'en', 'name', 'San Luis Obispo County Drug and Alcohol Services'),
(24131, 20866, 'pt', 'name', 'Centro UniversitƔrio Newton Paiva'),
(24132, 20867, 'en', 'name', 'Youth Service Project'),
(24133, 20868, 'es', 'name', 'Instituto Profesional Latinoamericano de Comercio Exterior'),
(24134, 20869, 'en', 'name', 'National Consumers League'),
(24135, 20870, 'es', 'name', 'Centro Universitario Luis Donaldo Colosio Murrieta'),
(24136, 20871, 'no_lang_code', 'name', 'Prism Informatics (Italy)'),
(24137, 20872, 'es', 'name', 'Universidad San Gregorio de Portoviejo'),
(24138, 20873, 'en', 'name', 'National Communication Association'),
(24139, 20874, 'es', 'name', 'Universidad Lux'),
(24140, 20875, 'en', 'name', 'Woodbury University'),
(24141, 20876, 'no_lang_code', 'name', 'Vertically Integrated Systems (Germany)'),
(24142, 20877, 'en', 'name', 'Swope Health Services'),
(24143, 20878, 'es', 'name', 'Universidad Nacional Micaela Bastidas de Apurimac'),
(24144, 20879, 'no_lang_code', 'name', 'ThƩsame (France)'),
(24145, 20880, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للقضاؔ'),
(24146, 20880, 'fr', 'name', 'Institut supƩrieur de la Magistrature'),
(24147, 20881, 'no_lang_code', 'name', 'Centre for Imaging Technology Commercialization'),
(24148, 20882, 'en', 'name', 'FUMEC University'),
(24149, 20882, 'pt', 'name', 'Universidade Fundação Mineira de Educação e Cultura'),
(24150, 20883, 'en', 'name', 'Andover War Memorial Hospital'),
(24151, 20884, 'en', 'name', 'Maharishi Markandeshwar University, Mullana'),
(24152, 20884, 'hi', 'name', 'ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤®ą¤°ą„ą¤•ą¤‚ą¤¦ą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤®ą„ą¤²ą¤¾ą¤Øą¤¾'),
(24153, 20885, 'en', 'name', 'University of the Ozarks'),
(24154, 20886, 'no_lang_code', 'name', 'SignaBlok (United States)'),
(24155, 20887, 'en', 'name', 'Hertfordshire Community NHS Trust'),
(24156, 20888, 'en', 'name', 'Cassel Hospital'),
(24157, 20889, 'no_lang_code', 'name', 'Protein Express (United States)'),
(24158, 20890, 'no_lang_code', 'name', 'Storvik (Norway)'),
(24159, 20891, 'en', 'name', 'Castleberg Hospital'),
(24160, 20892, 'en', 'name', 'SEMI'),
(24161, 20893, 'es', 'name', 'Universidad del SinĆŗ'),
(24162, 20894, 'en', 'name', 'Pendle Community Hospital'),
(24163, 20895, 'it', 'name', 'Ricerca e Progetto'),
(24164, 20896, 'de', 'name', 'FƖD Finanzen'),
(24165, 20896, 'en', 'name', 'SPF Finances, Service Public Federal Finances'),
(24166, 20896, 'nl', 'name', 'FOD Financiƫn'),
(24167, 20897, 'en', 'name', 'Bassetlaw Hospital'),
(24168, 20898, 'no_lang_code', 'name', 'Semantic Web Company (Austria)'),
(24169, 20899, 'en', 'name', 'Business University of Costa Rica'),
(24170, 20899, 'es', 'name', 'Universidad Empresarial de Costa Rica'),
(24171, 20900, 'en', 'name', 'University of Santa Monica'),
(24172, 20901, 'no_lang_code', 'name', 'Mondragon Corporation (Germany)'),
(24173, 20902, 'no_lang_code', 'name', 'Cortech Solutions (United States)'),
(24174, 20903, 'no_lang_code', 'name', 'Pharmaxis (Canada)'),
(24175, 20904, 'no_lang_code', 'name', 'Suni Medical Imaging (United States)'),
(24176, 20905, 'no_lang_code', 'name', 'Novomer (United States)'),
(24177, 20906, 'no_lang_code', 'name', 'Synome (United Kingdom)'),
(24178, 20907, 'no_lang_code', 'name', 'Maxam (Spain)'),
(24179, 20908, 'no_lang_code', 'name', 'Vitkovice - Research and Development (Czechia)'),
(24180, 20909, 'en', 'name', 'Kampala University'),
(24181, 20910, 'en', 'name', 'San Diego Mesa College'),
(24182, 20911, 'en', 'name', 'Regional Energy Agency of Crete'),
(24183, 20912, 'no_lang_code', 'name', 'FitBionic (United States)'),
(24184, 20913, 'es', 'name', 'Universidad Privada de Tacna'),
(24185, 20914, 'en', 'name', 'Centre for Drug Research and Development'),
(24186, 20915, 'en', 'name', 'Queen Victoria Hospital'),
(24187, 20916, 'no_lang_code', 'name', 'Neoceram (Belgium)'),
(24188, 20917, 'es', 'name', 'Universidad Mexicana de Educación a Distancia'),
(24189, 20918, 'en', 'name', 'Sealaska Heritage Institute'),
(24190, 20919, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠ Ł„Ł„Ų³ŁŠŲ§Ų­Ų©'),
(24191, 20919, 'fr', 'name', 'Institut SupƩrieur International du Tourisme de Tanger'),
(24192, 20920, 'no_lang_code', 'name', 'Umicore (Germany)'),
(24193, 20921, 'pt', 'name', 'Universidade IguaƧu'),
(24194, 20922, 'en', 'name', 'Herts and Essex Hospital'),
(24195, 20923, 'pt', 'name', 'Centro UniversitƔrio Amparense'),
(24196, 20924, 'no_lang_code', 'name', 'Tecsol'),
(24197, 20925, 'en', 'name', 'Kandahar University'),
(24198, 20925, 'fa', 'name', 'دانؓگاه قندهار'),
(24199, 20926, 'fr', 'name', 'Groupe Institut des Hautes Ɖtudes Ɖconomiques et Sociales'),
(24200, 20927, 'no_lang_code', 'name', 'Unisoft (Romania)'),
(24201, 20928, 'en', 'name', 'Brescia University'),
(24202, 20929, 'no_lang_code', 'name', 'Resoltech (France)'),
(24203, 20930, 'no_lang_code', 'name', 'PBL Assay Science (United States)'),
(24204, 20931, 'en', 'name', 'National Energy Research Center'),
(24205, 20932, 'en', 'name', 'Texans Standing Tall'),
(24206, 20933, 'en', 'name', 'Chibune General Hospital'),
(24207, 20933, 'ja', 'name', 'åƒčˆ¹ē—…é™¢'),
(24208, 20934, 'es', 'name', 'Instituto Profesional Providencia'),
(24209, 20935, 'en', 'name', 'Tuesdays Children'),
(24210, 20936, 'en', 'name', 'Trevecca Nazarene University'),
(24211, 20937, 'es', 'name', 'Corporación Escuela Superior de Administración y Estudios Tecnológicos'),
(24212, 20938, 'es', 'name', 'Centro Universitario Emmanuel Kant'),
(24213, 20939, 'en', 'name', 'Learning Partnership'),
(24214, 20940, 'hu', 'name', 'Somogy Megyei Kaposi Mór Oktató KórhÔz'),
(24215, 20941, 'no_lang_code', 'name', 'RegeneMed (United States)'),
(24216, 20942, 'en', 'name', 'Quinsigamond Community College'),
(24217, 20943, 'no_lang_code', 'name', 'Phoenix Scientific Industries (United Kingdom)'),
(24218, 20944, 'no_lang_code', 'name', 'Weyerhaeuser (United States)'),
(24219, 20945, 'es', 'name', 'Corporación Universitaria Autónoma de Nariño'),
(24220, 20946, 'es', 'name', 'Universidad de Ciencias MƩdicas de Sancti Spƭritus'),
(24221, 20947, 'no_lang_code', 'name', 'NOVA Scientific (United States)'),
(24222, 20948, 'en', 'name', 'Hawkhurst Community Hospital'),
(24223, 20949, 'en', 'name', 'Federico Villarreal National University'),
(24224, 20949, 'es', 'name', 'Universidad Nacional Federico Villarreal'),
(24225, 20950, 'es', 'name', 'Corporación John F. Kennedy'),
(24226, 20951, 'en', 'name', 'Primrose Hill Hospital'),
(24227, 20952, 'no_lang_code', 'name', 'Noesis Solutions (Belgium)'),
(24228, 20953, 'en', 'name', 'Rhode Island Coalition Against Domestic Violence'),
(24229, 20954, 'en', 'name', 'MƩtis National Council'),
(24230, 20954, 'fr', 'name', 'Ralliement national des MƩtis'),
(24231, 20955, 'fr', 'name', 'Institut SupƩrieur de Technique MƩdicale'),
(24232, 20956, 'en', 'name', 'Pontifical Institute of Mediaeval Studies'),
(24233, 20956, 'fr', 'name', 'Institut Pontifical d''Ɖtudes MĆ©diĆ©vales'),
(24234, 20957, 'fr', 'name', 'Centre hospitalier Bretagne Atlantique'),
(24235, 20958, 'es', 'name', 'Instituto Profesional Valle Central'),
(24236, 20959, 'es', 'name', 'Centro de Estudios Universitarios Horacio ZuƱiga'),
(24237, 20960, 'es', 'name', 'Universidad Vizcaya de las AmƩricas'),
(24238, 20961, 'en', 'name', 'United Way of Anchorage'),
(24239, 20962, 'ja', 'name', 'ęØŖé ˆč³€ē±³ęµ·č»ē—…é™¢'),
(24240, 20962, 'no_lang_code', 'name', 'Naval Hospital Yokosuka Japan'),
(24241, 20963, 'en', 'name', 'Tartu Biotechnology Park'),
(24242, 20964, 'fr', 'name', 'Université du Sine Saloum El-Hâdj Ibrahima NIASS'),
(24243, 20965, 'ja', 'name', 'ęøˆē”Ÿä¼šé«˜å²”ē—…é™¢'),
(24244, 20965, 'no_lang_code', 'name', 'Saiseikai Takaoka Hospital'),
(24245, 20966, 'en', 'name', 'Khost University'),
(24246, 20966, 'fa', 'name', 'دانؓگاه خوست'),
(24247, 20967, 'en', 'name', 'Surrey County Council'),
(24248, 20968, 'es', 'name', 'Universidad SƤmann de Jalisco'),
(24249, 20969, 'pt', 'name', 'Centro UniversitƔrio FIEO'),
(24250, 20970, 'en', 'name', 'Royal Observatory'),
(24251, 20971, 'no_lang_code', 'name', 'Noble’s Hospital'),
(24252, 20972, 'no_lang_code', 'name', 'NOVASiC (France)'),
(24253, 20973, 'en', 'name', 'Buckingham Community Hospital'),
(24254, 20974, 'en', 'name', 'Whipps Cross University Hospital'),
(24255, 20975, 'es', 'name', 'Centro Universitario del Valle de Zacapu'),
(24256, 20976, 'no_lang_code', 'name', 'Rad Data Communications (Israel)'),
(24257, 20977, 'no_lang_code', 'name', 'Thales (Belgium)'),
(24258, 20978, 'fr', 'name', 'Institut SupƩrieur du GƩnie AppliquƩ'),
(24259, 20979, 'no_lang_code', 'name', 'Remmers Bouwchemie (Netherlands)'),
(24260, 20980, 'en', 'name', 'Potters Bar Community Hospital'),
(24261, 20981, 'es', 'name', 'Universidad Latinoamericana de Ciencia y TecnologĆ­a'),
(24262, 20982, 'en', 'name', 'Petrozavodsk State University'),
(24263, 20982, 'ru', 'name', 'ŠŸŠµŃ‚Ń€Š¾Š·Š°Š²Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(24264, 20983, 'en', 'name', 'Leeds Community Healthcare NHS Trust'),
(24265, 20984, 'es', 'name', 'Servicio AragonƩs de Salud'),
(24266, 20985, 'en', 'name', 'Horsham Hospital'),
(24267, 20986, 'en', 'name', 'Ashburton and Buckfastleigh Health and Wellbeing Centre'),
(24268, 20987, 'en', 'name', 'Leamington Spa Hospital'),
(24269, 20988, 'en', 'name', 'Hospital La Paz Institute for Health Research'),
(24270, 20989, 'en', 'name', 'Guisborough Primary Care Hospital'),
(24271, 20990, 'en', 'name', 'Centre for Agriculture and Environment Foundation'),
(24272, 20990, 'nl', 'name', 'Centrum voor Landbouw en Milieu'),
(24273, 20991, 'no_lang_code', 'name', 'Continental (United Kingdom)'),
(24274, 20992, 'es', 'name', 'Universidad Metropolitana de Ciencia y TecnologĆ­a'),
(24275, 20993, 'no_lang_code', 'name', 'Sogin (Italy)'),
(24276, 20994, 'de', 'name', 'Schweizerisches Forschungsinstitut für Hochgebirgsklima und Medizin'),
(24277, 20995, 'en', 'name', 'Higher Institute of Mining, Industry and Geology'),
(24278, 20995, 'fr', 'name', 'Ɖcole des Mines, de l''Industrie et de la GĆ©ologie'),
(24279, 20996, 'no_lang_code', 'name', 'Napper Architects (United Kingdom)'),
(24280, 20997, 'en', 'name', 'University of Northern Virginia'),
(24281, 20998, 'en', 'name', 'Point Park University'),
(24282, 20999, 'ar', 'name', 'الجامعة Ų§Ł„ŁŲ±Ł†Ų³ŁŠŲ© في Ł…ŲµŲ±'),
(24283, 20999, 'en', 'name', 'French University of Egypt'),
(24284, 20999, 'fr', 'name', 'UniversitĆ© franƧaise d''Ɖgypte'),
(24285, 21000, 'es', 'name', 'Universidad del Centro de Estudios Macroeconómicos de Argentina'),
(24286, 21000, 'fr', 'name', 'UniversitƩ du centre d''Ʃtudes macroeconomiques d''argentine'),
(24287, 21001, 'no_lang_code', 'name', 'Vaasaett (Finland)'),
(24288, 21002, 'es', 'name', 'Universidad MonteƔvila'),
(24289, 21003, 'es', 'name', 'Institución Universitaria Latina'),
(24290, 21004, 'en', 'name', 'North Carolina Families United'),
(24291, 21005, 'en', 'name', 'Kigali Independent University'),
(24292, 21005, 'fr', 'name', 'UniversitƩ libre de kigali'),
(24293, 21006, 'ja', 'name', 'ä¼Šå‹¢å“Žē¦å³¶ē—…é™¢'),
(24294, 21006, 'no_lang_code', 'name', 'Fukushimura Hospital'),
(24295, 21007, 'en', 'name', 'Geyserland Observatory'),
(24296, 21008, 'no_lang_code', 'name', 'Dunlap-Stone University'),
(24297, 21009, 'en', 'name', 'Sullivan Veterinary Clinic'),
(24298, 21010, 'es', 'name', 'Universidad del Mar'),
(24299, 21011, 'en', 'name', 'Franco Mexican University'),
(24300, 21011, 'es', 'name', 'Universidad Franco Mexicana'),
(24301, 21012, 'no_lang_code', 'name', 'RAFT Solutions (United Kingdom)'),
(24302, 21013, 'no_lang_code', 'name', 'Micromega Dynamics (Belgium)'),
(24303, 21014, 'en', 'name', 'Neurobehavioral Systems'),
(24304, 21015, 'en', 'name', 'Scope'),
(24305, 21016, 'en', 'name', 'New Jersey Department of Corrections'),
(24306, 21017, 'en', 'name', 'Flemish Public Employment Service'),
(24307, 21017, 'nl', 'name', 'Vlaamse Dienst voor Arbeidsbemiddeling en Beroepsopleiding'),
(24308, 21018, 'no_lang_code', 'name', 'Optotek (Slovenia)'),
(24309, 21019, 'no_lang_code', 'name', 'Ridgeback (Italy)'),
(24310, 21020, 'pt', 'name', 'Centro UniversitƔrio do Norte'),
(24311, 21021, 'en', 'name', 'North West Ambulance Service NHS Trust'),
(24312, 21022, 'no_lang_code', 'name', 'Sellafield (United Kingdom)'),
(24313, 21023, 'ar', 'name', 'المدرســـــة Ų§Ł„Ų¹Ł„ŁŠŁ€Ł€Ł€Ł€Ł€Ų§ للقضــــاؔ'),
(24314, 21023, 'fr', 'name', 'Ɖcole SupĆ©rieure de la Magistrature'),
(24315, 21024, 'fr', 'name', 'Ɖcole SupĆ©rieure des TĆ©lĆ©communications'),
(24316, 21025, 'en', 'name', 'Second Hospital of Liaohe Oilfield'),
(24317, 21026, 'no_lang_code', 'name', 'Starpharma (Australia)'),
(24318, 21027, 'en', 'name', 'Hazara University'),
(24319, 21027, 'ur', 'name', 'جامعہ ہزارہ'),
(24320, 21028, 'en', 'name', 'National Institute for Research and Development in Construction, Urban Planning and Sustainable Spatial Development'),
(24321, 21028, 'ro', 'name', 'Institutul Naţional de Cercetare-Dezvoltare in Construcţii Urbanism şi Dezvoltare Teritorială Durabilă'),
(24322, 21029, 'en', 'name', 'Chukwuemeka Odumegwu Ojukwu University'),
(24323, 21030, 'es', 'name', 'Universidad del Istmo'),
(24324, 21031, 'en', 'name', 'Manchester Digital Development Agency'),
(24325, 21032, 'fr', 'name', 'Ɖcole SupĆ©rieure Multinationale des TĆ©lĆ©communications'),
(24326, 21033, 'no_lang_code', 'name', 'TechnoVax (United States)'),
(24327, 21034, 'en', 'name', 'Getty Conservation Institute'),
(24328, 21035, 'en', 'name', 'South Baylo University'),
(24329, 21036, 'no_lang_code', 'name', 'Product Innovation and Engineering (United States)'),
(24330, 21037, 'no_lang_code', 'name', 'Vaxcel (United States)'),
(24331, 21038, 'en', 'name', 'Saint Thomas Aquinas North University'),
(24332, 21038, 'es', 'name', 'Universidad del Norte Santo TomƔs de Aquino'),
(24333, 21039, 'no_lang_code', 'name', 'Virtuelle Fabrik (Switzerland)'),
(24334, 21040, 'en', 'name', 'St. Joseph Youth Alliance'),
(24335, 21041, 'de', 'name', 'Süddeutsches Institut für Empirische Sozialforschung'),
(24336, 21041, 'en', 'name', 'Sine Institute'),
(24337, 21041, 'no', 'name', 'SINE-Institut'),
(24338, 21042, 'en', 'name', 'Oruro Technical University'),
(24339, 21042, 'es', 'name', 'Universidad TƩcnica de Oruro'),
(24340, 21043, 'en', 'name', 'Trinity College'),
(24341, 21044, 'no_lang_code', 'name', 'Touch Graphics (United States)'),
(24342, 21045, 'en', 'name', 'Petal School District'),
(24343, 21046, 'es', 'name', 'Escuela Superior de Ciencias Empresariales'),
(24344, 21047, 'es', 'name', 'Universidad Maya de las AmƩricas'),
(24345, 21048, 'no_lang_code', 'name', 'Positron Systems (United States)'),
(24346, 21049, 'en', 'name', 'Safe Blood for Africa Foundation'),
(24347, 21050, 'en', 'name', 'Yili Normal University'),
(24348, 21050, 'zh', 'name', 'ä¼ŠēŠåøˆčŒƒå­¦é™¢'),
(24349, 21051, 'en', 'name', 'St. Josefs Hospital'),
(24350, 21052, 'no_lang_code', 'name', 'Marben (France)'),
(24351, 21053, 'es', 'name', 'Fundación Centro de Educación Superior Investigación y Profesionalización'),
(24352, 21054, 'en', 'name', 'General Hospital of Jinan Military Command'),
(24353, 21055, 'no_lang_code', 'name', 'Biotage (Sweden)'),
(24354, 21056, 'no_lang_code', 'name', 'Pittards (United Kingdom)'),
(24355, 21057, 'no_lang_code', 'name', 'SOLIDpower (Italy)'),
(24356, 21058, 'en', 'name', 'Melton Mowbray Hospital'),
(24357, 21059, 'en', 'name', 'State and University Library'),
(24358, 21060, 'en', 'name', 'United Way of the Ozarks'),
(24359, 21061, 'fr', 'name', 'CollĆØge de Valleyfield'),
(24360, 21062, 'no_lang_code', 'name', 'Point L (Bulgaria)'),
(24361, 21063, 'en', 'name', 'Ishigaki Local Meteorological Observatory'),
(24362, 21064, 'en', 'name', 'Canadian Association of Learned Journals');
INSERT INTO `ror_settings` VALUES
(24363, 21064, 'fr', 'name', 'Association canadienne des revues savantes'),
(24364, 21065, 'no_lang_code', 'name', 'Putzier OberflƤchentechnik (Germany)'),
(24365, 21066, 'fr', 'name', 'Ɖcole SupĆ©rieure Vinci'),
(24366, 21067, 'es', 'name', 'Universidad Hispanoamerica'),
(24367, 21068, 'en', 'name', 'Benson Idahosa University'),
(24368, 21069, 'en', 'name', 'Westminster City Council'),
(24369, 21070, 'en', 'name', 'Victoria Heart Institute Foundation'),
(24370, 21071, 'no_lang_code', 'name', 'Anyang Eye Hospital'),
(24371, 21071, 'zh', 'name', 'å®‰é˜³åø‚ēœ¼ē§‘åŒ»é™¢'),
(24372, 21072, 'pt', 'name', 'Centro UniversitƔrio de Ensino Superior do Amazonas'),
(24373, 21073, 'no_lang_code', 'name', 'Thermacore (United Kingdom)'),
(24374, 21074, 'pt', 'name', 'Centro UniversitƔrio de Franca'),
(24375, 21075, 'en', 'name', 'National Policing Improvement Agency'),
(24376, 21076, 'pt', 'name', 'Universidade Salvador'),
(24377, 21077, 'es', 'name', 'Universidad de las Californias'),
(24378, 21078, 'en', 'name', 'Open Window School of Visual Communication'),
(24379, 21079, 'no_lang_code', 'name', 'Eckert & Ziegler (United States)'),
(24380, 21080, 'no_lang_code', 'name', 'NP Photonics (United States)'),
(24381, 21081, 'no_lang_code', 'name', 'New Metals and Chemicals (United Kingdom)'),
(24382, 21082, 'en', 'name', 'Viewpoints Research Institute'),
(24383, 21083, 'no_lang_code', 'name', 'TissueVision (United States)'),
(24384, 21084, 'en', 'name', 'Malvern Community Hospital'),
(24385, 21085, 'no_lang_code', 'name', 'Micromath (United States)'),
(24386, 21086, 'en', 'name', 'Office of Naval Research'),
(24387, 21087, 'en', 'name', 'Saint Martin''s University'),
(24388, 21088, 'es', 'name', 'Universidad Dorados'),
(24389, 21089, 'no_lang_code', 'name', 'Ubiquitous Energy (United States)'),
(24390, 21090, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الامام Ų§Ł„Ł…Ł‡ŲÆŁŠ'),
(24391, 21090, 'en', 'name', 'University of El Imam El Mahdi'),
(24392, 21091, 'en', 'name', 'The Technology House'),
(24393, 21091, 'sv', 'name', 'Teknikens Hus'),
(24394, 21092, 'no_lang_code', 'name', 'Wowbagger Productions'),
(24395, 21093, 'no_lang_code', 'name', 'Eliko Tehnoloogia Arenduskeskus'),
(24396, 21094, 'en', 'name', 'Union of the Baltic Cities'),
(24397, 21095, 'no_lang_code', 'name', 'Mesa Analytics & Computing (United States)'),
(24398, 21096, 'no_lang_code', 'name', 'Pacbrake (Canada)'),
(24399, 21097, 'en', 'name', 'Hue Central Hospital'),
(24400, 21097, 'vi', 'name', 'Bệnh viện Trung ĘÆĘ”ng Huįŗæ'),
(24401, 21098, 'es', 'name', 'Universidad Valle Continental'),
(24402, 21099, 'no_lang_code', 'name', 'Meritor (Germany)'),
(24403, 21100, 'no_lang_code', 'name', 'Gfi Informatique (France)'),
(24404, 21101, 'no_lang_code', 'name', 'SCI Engineered Materials (United States)'),
(24405, 21102, 'en', 'name', 'Haywards Heath Hospital'),
(24406, 21103, 'en', 'name', 'National Aids Education and Services for Minorities'),
(24407, 21104, 'en', 'name', 'Southern Astrophysical Research Telescope'),
(24408, 21105, 'no_lang_code', 'name', 'Roctest (Canada)'),
(24409, 21106, 'en', 'name', 'Quality Meat Scotland'),
(24410, 21107, 'en', 'name', 'Uplift'),
(24411, 21108, 'en', 'name', 'Petersfield Community Hospital'),
(24412, 21109, 'en', 'name', 'St Clement''s Hospital'),
(24413, 21110, 'en', 'name', 'University of Advancing Technology'),
(24414, 21111, 'en', 'name', 'Weymouth Community Hospital'),
(24415, 21112, 'no_lang_code', 'name', 'Vitec (France)'),
(24416, 21113, 'no_lang_code', 'name', 'LeadScope (United States)'),
(24417, 21114, 'en', 'name', 'Spire Cambridge Lea Hospital'),
(24418, 21115, 'en', 'name', 'BMI Healthcare'),
(24419, 21116, 'en', 'name', 'Nicaraguan University of Science and Technology'),
(24420, 21116, 'es', 'name', 'Universidad Nicaragüense de Ciencia y Tecnologia'),
(24421, 21117, 'en', 'name', 'Roberts Wesleyan College'),
(24422, 21118, 'no_lang_code', 'name', 'PalmSens (Netherlands)'),
(24423, 21119, 'en', 'name', 'Walters Public Schools'),
(24424, 21120, 'en', 'name', 'Netherlands Youth Institute'),
(24425, 21120, 'nl', 'name', 'Nederlands Jeugdinstituut'),
(24426, 21121, 'en', 'name', 'University of Fredericton'),
(24427, 21122, 'en', 'name', 'Natural Procreative Technology'),
(24428, 21123, 'en', 'name', 'College of The Bahamas'),
(24429, 21124, 'pt', 'name', 'Instituto Superior PolitƩcnico de Songo'),
(24430, 21125, 'no_lang_code', 'name', 'New World Medical (United States)'),
(24431, 21126, 'no_lang_code', 'name', 'Technostics (United Kingdom)'),
(24432, 21127, 'en', 'name', 'Queen Victoria Memorial Hospital'),
(24433, 21128, 'no_lang_code', 'name', 'Norton Aluminium (United Kingdom)'),
(24434, 21129, 'en', 'name', 'Parmenides Foundation'),
(24435, 21130, 'pt', 'name', 'Instituto MauĆ” de Tecnologia'),
(24436, 21131, 'en', 'name', 'Canadian Association for Social Work Education'),
(24437, 21132, 'no_lang_code', 'name', 'Belit (Serbia)'),
(24438, 21133, 'en', 'name', 'National Institute of Public Health'),
(24439, 21133, 'km', 'name', 'įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‡įž¶įžįž·įžŸįž»įžįž—įž¶įž–įžŸįž¶įž’įž¶įžšįžŽįŸˆ'),
(24440, 21134, 'en', 'name', 'Higher Institute of Social Service'),
(24441, 21135, 'no_lang_code', 'name', 'Sixteen Films (United Kingdom)'),
(24442, 21136, 'no_lang_code', 'name', 'Skunkwerks Software (Canada)'),
(24443, 21137, 'ja', 'name', 'ひだか病院'),
(24444, 21137, 'no_lang_code', 'name', 'Hidaka Hospital'),
(24445, 21138, 'es', 'name', 'Isae Universidad'),
(24446, 21139, 'en', 'name', 'Quebec Federation of University Students'),
(24447, 21140, 'no_lang_code', 'name', 'MitoHealth (United States)'),
(24448, 21141, 'en', 'name', 'Nuclear Regulatory Authority of the Slovak Republic'),
(24449, 21142, 'no_lang_code', 'name', 'Nanohmics (United States)'),
(24450, 21143, 'ar', 'name', 'المدرسة Ų§Ł„Ł…ŲŗŲ±ŲØŁŠŲ© Ł„Ų¹Ł„ŁˆŁ… الهندسة'),
(24451, 21143, 'fr', 'name', 'Ɖcole Marocaine des Sciences de l''IngĆ©nieur'),
(24452, 21144, 'no_lang_code', 'name', 'Smartec (Switzerland)'),
(24453, 21145, 'en', 'name', 'Voyager Sopris Learning'),
(24454, 21146, 'en', 'name', 'Sedgefield Community Hospital'),
(24455, 21147, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³ŁŠŁ†Ų§Ų”'),
(24456, 21147, 'en', 'name', 'Sinai University'),
(24457, 21148, 'fr', 'name', 'Ɖcole SupĆ©rieure de Psychologie'),
(24458, 21149, 'es', 'name', 'Universidad Del Valle De Cuernavaca'),
(24459, 21150, 'en', 'name', 'National Patient Safety Foundation'),
(24460, 21151, 'no_lang_code', 'name', 'Stan''s Cafe (United Kingdom)'),
(24461, 21152, 'no_lang_code', 'name', 'Worgas Bruciatori (Italy)'),
(24462, 21153, 'en', 'name', 'Thresholds'),
(24463, 21154, 'en', 'name', 'Royal Stoke University Hospital'),
(24464, 21155, 'no_lang_code', 'name', 'Nesch (United States)'),
(24465, 21156, 'en', 'name', 'Sidwell Friends School'),
(24466, 21157, 'en', 'name', 'Yan''an University'),
(24467, 21157, 'zh', 'name', '延安大学'),
(24468, 21158, 'pt', 'name', 'Universidade La Salle'),
(24469, 21159, 'en', 'name', 'Naga Municipal Hospital'),
(24470, 21159, 'ja', 'name', '公立那賀病院'),
(24471, 21160, 'en', 'name', 'Polish Institute of International Affairs'),
(24472, 21161, 'en', 'name', 'Wytheville Community College'),
(24473, 21162, 'no_lang_code', 'name', 'Seecon (Switzerland)'),
(24474, 21163, 'en', 'name', 'Trans European Policy Studies Association'),
(24475, 21164, 'en', 'name', 'Prevent of Brevard'),
(24476, 21165, 'no_lang_code', 'name', 'MicroLS (Germany)'),
(24477, 21166, 'en', 'name', 'Caltech Submillimeter Observatory'),
(24478, 21167, 'en', 'name', 'Seminole State College Oklahoma'),
(24479, 21168, 'fr', 'name', 'Ɖcole SupĆ©rieure de Design et des Arts Visuels'),
(24480, 21169, 'en', 'name', 'Parent Support Network of Rhode Island'),
(24481, 21170, 'no_lang_code', 'name', 'Stirling Dynamics (United Kingdom)'),
(24482, 21171, 'en', 'name', 'Ysbyty Gwynedd Hospital NHS Trust'),
(24483, 21172, 'en', 'name', 'Catholic University of Dry Tropic Farming and Livestock'),
(24484, 21172, 'es', 'name', 'Universidad Católica del Trópico Seco'),
(24485, 21173, 'es', 'name', 'Universidad YMCA'),
(24486, 21174, 'pt', 'name', 'Universidade do Estado do Rio Grande do Norte'),
(24487, 21175, 'pt', 'name', 'Universidade do Planalto Catarinense'),
(24488, 21176, 'fr', 'name', 'MinistĆØre de l’Éducation nationale, de l’Enfance et de la Jeunesse'),
(24489, 21177, 'no_lang_code', 'name', 'YTKO (United Kingdom)'),
(24490, 21178, 'en', 'name', 'Bridport Community Hospital'),
(24491, 21179, 'no_lang_code', 'name', 'Ruskinn Technology (United Kingdom)'),
(24492, 21180, 'no_lang_code', 'name', 'Nissan (Switzerland)'),
(24493, 21181, 'es', 'name', 'Universidad Católica Santa Rosa'),
(24494, 21182, 'no_lang_code', 'name', 'Midlands Aerospace Alliance'),
(24495, 21183, 'en', 'name', 'Redcar Primary Care Hospital'),
(24496, 21184, 'no_lang_code', 'name', 'Rheinmetall (Germany)'),
(24497, 21185, 'en', 'name', 'Northern Lincolnshire and Goole Hospitals NHS Foundation Trust'),
(24498, 21186, 'no_lang_code', 'name', 'SSPA (Sweden)'),
(24499, 21187, 'en', 'name', 'Catholic University of Madagascar'),
(24500, 21187, 'fr', 'name', 'UniversitƩ Catholique de Madagascar'),
(24501, 21187, 'mg', 'name', 'Oniversite Katolika eto Madagasikara'),
(24502, 21188, 'en', 'name', 'Wildlife Conservation Society Canada'),
(24503, 21189, 'es', 'name', 'Universidad Europea'),
(24504, 21190, 'en', 'name', 'Fresno Pacific University'),
(24505, 21191, 'no_lang_code', 'name', 'Uncopiers'),
(24506, 21192, 'en', 'name', 'Morgantown High School'),
(24507, 21193, 'no_lang_code', 'name', 'Raytek (Germany)'),
(24508, 21194, 'en', 'name', 'National Council for Voluntary Organisations'),
(24509, 21195, 'en', 'name', 'State Agency for the Prevention of Alcohol Related Problems'),
(24510, 21196, 'no_lang_code', 'name', 'Relight (Italy)'),
(24511, 21197, 'en', 'name', 'Zachary Merton Hospital'),
(24512, 21198, 'en', 'name', 'Didcot Community Hospital'),
(24513, 21199, 'en', 'name', 'Euro-Mediterranean Water Information System'),
(24514, 21199, 'fr', 'name', 'MƩditerranƩen d''Information sur les Savoir'),
(24515, 21200, 'es', 'name', 'Universidad de HuƔnuco'),
(24516, 21201, 'no_lang_code', 'name', 'Gilead Sciences (Canada)'),
(24517, 21202, 'no_lang_code', 'name', 'Pervatech (Netherlands)'),
(24518, 21203, 'no_lang_code', 'name', 'Sogesca (Italy)'),
(24519, 21204, 'en', 'name', 'Biggleswade Hospital Spring House'),
(24520, 21205, 'no_lang_code', 'name', 'Da Vinci Institute'),
(24521, 21206, 'fr', 'name', 'Ɖcole SupĆ©rieure des Ɖtudes Administratives et Commerciales'),
(24522, 21207, 'es', 'name', 'Universidad del Valle del Fuerte'),
(24523, 21208, 'no_lang_code', 'name', 'Protagen (Germany)'),
(24524, 21209, 'de', 'name', 'HafenCity UniversitƤt Hamburg'),
(24525, 21209, 'en', 'name', 'HafenCity University Hamburg'),
(24526, 21210, 'pt', 'name', 'Universidade Gregório Semedo'),
(24527, 21211, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ؄بن Ų®Ł„ŲÆŁˆŁ† الخاصّة'),
(24528, 21211, 'fr', 'name', 'UniversitƩ Ibn Khaldoun'),
(24529, 21212, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأحفاد للبنات'),
(24530, 21212, 'en', 'name', 'Ahfad University for Women'),
(24531, 21213, 'en', 'name', 'Research Institute for Tropical Medicine'),
(24532, 21214, 'no_lang_code', 'name', 'Talkamatic (Sweden)'),
(24533, 21215, 'en', 'name', 'Corby Community Hospital'),
(24534, 21216, 'no_lang_code', 'name', 'ProAmpac (Canada)'),
(24535, 21217, 'en', 'name', 'College Medical Center'),
(24536, 21218, 'en', 'name', 'Justo Sierra University'),
(24537, 21218, 'es', 'name', 'Universidad Justo Sierra'),
(24538, 21219, 'pt', 'name', 'Centro UniversitƔrio de Patos de Minas'),
(24539, 21220, 'en', 'name', 'Shandong Jianzhu University'),
(24540, 21220, 'zh', 'name', 'å±±äøœå»ŗē­‘å¤§å­¦'),
(24541, 21221, 'en', 'name', 'Hounslow and Richmond Community Healthcare NHS Trust'),
(24542, 21222, 'en', 'name', 'Central Michigan University Research Corporation'),
(24543, 21223, 'no_lang_code', 'name', 'Syntesa (Faroe Islands)'),
(24544, 21224, 'fr', 'name', 'Institut des Hautes Ɖtudes Bancaires et FinanciĆØres'),
(24545, 21225, 'no_lang_code', 'name', 'Ribocon (Germany)'),
(24546, 21226, 'no_lang_code', 'name', 'MHG Systems (Finland)'),
(24547, 21227, 'es', 'name', 'Universidad Internacional de La Paz'),
(24548, 21228, 'en', 'name', 'Hunan University of Arts and Science'),
(24549, 21228, 'zh', 'name', 'ę¹–å—ę–‡ē†å­¦é™¢'),
(24550, 21229, 'en', 'name', 'Tigard-Tualatin School District'),
(24551, 21230, 'en', 'name', 'Technical University of Angola'),
(24552, 21230, 'pt', 'name', 'Universidade TƩcnica de Angola'),
(24553, 21231, 'en', 'name', 'Cavendish Hospital'),
(24554, 21232, 'es', 'name', 'Universidad Hispanoamericana'),
(24555, 21233, 'en', 'name', 'National Postdoctoral Association'),
(24556, 21234, 'en', 'name', 'National Institute of Oceanography'),
(24557, 21234, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„ą¤¦ą„ą¤° ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(24558, 21234, 'ml', 'name', 'ą“Øą“¾ą“·ą“£ąµ½ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą““ą“·ąµą“Æą“¾ą“Øąµ‹ą“—ąµą“°ą“«ą“æ'),
(24559, 21234, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®•ą®Ÿą®²ą®æą®Æą®²ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(24560, 21235, 'es', 'name', 'Universidad de Ciencias y Artes de Chiapas'),
(24561, 21236, 'en', 'name', 'Nottingham Community Housing Association'),
(24562, 21237, 'en', 'name', 'Tarporley War Memorial Hospital'),
(24563, 21238, 'no_lang_code', 'name', 'Alfa Laval (France)'),
(24564, 21239, 'es', 'name', 'Universidad de Chiclayo'),
(24565, 21240, 'en', 'name', 'Osaka Sangyo University'),
(24566, 21240, 'ja', 'name', 'å¤§é˜Ŗē”£ę„­å¤§å­¦'),
(24567, 21241, 'es', 'name', 'Universidad Paccioli Xalapa'),
(24568, 21242, 'en', 'name', 'North Cambridgeshire Hospital'),
(24569, 21243, 'es', 'name', 'Universidad Católica Santo Toribio de Mogrovejo'),
(24570, 21244, 'no_lang_code', 'name', 'Valitor (United States)'),
(24571, 21245, 'es', 'name', 'Corporación Universitaria de Ciencia y Desarrollo'),
(24572, 21246, 'en', 'name', 'Torrington Hospital'),
(24573, 21247, 'no_lang_code', 'name', 'Ailleron (Poland)'),
(24574, 21248, 'es', 'name', 'Universidad del Cono Sur de las AmƩricas'),
(24575, 21249, 'es', 'name', 'Fundación Universitaria del Área Andina'),
(24576, 21250, 'en', 'name', 'ShenZhen People’s Hospital'),
(24577, 21250, 'zh', 'name', 'ę·±åœ³åø‚äŗŗę°‘åŒ»é™¢'),
(24578, 21251, 'no_lang_code', 'name', 'Valeport (United Kingdom)'),
(24579, 21252, 'no_lang_code', 'name', 'Smithers Group (United Kingdom)'),
(24580, 21253, 'no_lang_code', 'name', 'Scientific Software International (United States)'),
(24581, 21254, 'en', 'name', 'York Archaeological Trust'),
(24582, 21255, 'en', 'name', 'Julius Nyerere University of Kankan'),
(24583, 21255, 'fr', 'name', 'UniversitƩ Julius Nyerere de Kankan'),
(24584, 21256, 'en', 'name', 'Parent Project Muscular Dystrophy'),
(24585, 21257, 'pt', 'name', 'Instituto Superior de Transportes e ComunicaƧƵe'),
(24586, 21258, 'en', 'name', 'University of Science and Technology of Benin'),
(24587, 21258, 'fr', 'name', 'UniversitƩ des Sciences et Technologies du BƩnin'),
(24588, 21259, 'en', 'name', 'Northwood University'),
(24589, 21260, 'en', 'name', 'St Mary''s Hospital'),
(24590, 21261, 'en', 'name', 'Zrínyi Miklós National Defence University'),
(24591, 21262, 'no_lang_code', 'name', 'Repotec (Austria)'),
(24592, 21263, 'en', 'name', 'Financial University'),
(24593, 21263, 'ru', 'name', 'Финансовый ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ при ŠŸŃ€Š°Š²ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Šµ Российской ФеГерации'),
(24594, 21264, 'no_lang_code', 'name', 'Philochem (Switzerland)'),
(24595, 21265, 'en', 'name', 'National Society of Professional Engineers'),
(24596, 21266, 'en', 'name', 'Anyang Tumor Hospital'),
(24597, 21266, 'zh', 'name', 'å®‰é˜³åø‚č‚æē˜¤åŒ»é™¢'),
(24598, 21267, 'en', 'name', 'Wisconsin State Office of the Governor'),
(24599, 21268, 'no_lang_code', 'name', 'ObjectSecurity (United Kingdom)'),
(24600, 21269, 'en', 'name', 'Federal Food Safety and Veterinary Office'),
(24601, 21270, 'no_lang_code', 'name', 'First Sensor (Canada)'),
(24602, 21271, 'no_lang_code', 'name', 'Vanguard Foundry (United Kingdom)'),
(24603, 21272, 'es', 'name', 'Universidad Metropolitana de Asunción'),
(24604, 21273, 'en', 'name', 'Accrington Victoria Hospital'),
(24605, 21274, 'en', 'name', 'Prince Mohammed bin Abdulaziz Hospital'),
(24606, 21275, 'en', 'name', 'East Cheshire NHS Trust'),
(24607, 21276, 'no_lang_code', 'name', 'Lear (Spain)'),
(24608, 21277, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ų¹ŁŠŁ… Ų§Ł„Ų£Ų²Ł‡Ų±ŁŠ'),
(24609, 21277, 'no_lang_code', 'name', 'Alzaiem Alazhari University'),
(24610, 21278, 'no_lang_code', 'name', 'Nanothinx (Greece)'),
(24611, 21279, 'en', 'name', 'Chester le Street Community Hospital'),
(24612, 21280, 'en', 'name', 'WaterCampus'),
(24613, 21281, 'es', 'name', 'Corporación Universitaria del Huila'),
(24614, 21282, 'en', 'name', 'Liverpool Heart and Chest Hospital NHS Trust'),
(24615, 21283, 'pt', 'name', 'Centro UniversitÔrio do Triângulo'),
(24616, 21284, 'no_lang_code', 'name', 'Statiflo International (United Kingdom)'),
(24617, 21285, 'es', 'name', 'Universidad Privada de Pucallpa'),
(24618, 21286, 'en', 'name', 'Witney Community Hospital'),
(24619, 21287, 'no_lang_code', 'name', 'Cabot Microelectronics (United States)'),
(24620, 21288, 'en', 'name', 'Williams & Associates'),
(24621, 21289, 'en', 'name', 'Gaston Berger University'),
(24622, 21289, 'fr', 'name', 'UniversitƩ Gaston Berger'),
(24623, 21290, 'no_lang_code', 'name', 'Swanbarton (United Kingdom)'),
(24624, 21291, 'en', 'name', 'State Hydrometeorological Service'),
(24625, 21291, 'ro', 'name', 'Serviciul Hidrmetrologic de Stat'),
(24626, 21292, 'no_lang_code', 'name', 'Optimare (Germany)'),
(24627, 21293, 'en', 'name', 'Children''s Clinical University Hospital'),
(24628, 21293, 'lv', 'name', 'Bērnu klīniskā universitātes slimnīca'),
(24629, 21294, 'en', 'name', 'University College of Management Studies'),
(24630, 21295, 'en', 'name', 'Chase Acute Outpatients Hospital'),
(24631, 21296, 'es', 'name', 'Centro Universitario MƩxico Valle'),
(24632, 21297, 'en', 'name', 'Dr Edward Koch Foundation'),
(24633, 21298, 'no_lang_code', 'name', 'TRW Automotive (United States)'),
(24634, 21299, 'en', 'name', 'PLA 306 Hospital'),
(24635, 21299, 'zh', 'name', '解放军306医院'),
(24636, 21300, 'no_lang_code', 'name', 'Polytronix (United States)'),
(24637, 21301, 'en', 'name', 'Carter Bequest Primary Care Hospital'),
(24638, 21302, 'en', 'name', 'Hellesdon Hospital'),
(24639, 21303, 'en', 'name', 'Department of County ​Human Services'),
(24640, 21304, 'en', 'name', 'Association des CartothĆØques et Archives Cartographiques du Canada, Association of Canadian Map Libraries and Archives'),
(24641, 21305, 'en', 'name', 'Riverside County Superior Court'),
(24642, 21306, 'en', 'name', 'Xingming Observatory'),
(24643, 21307, 'no_lang_code', 'name', 'Sineurop Nanotech (Germany)'),
(24644, 21308, 'en', 'name', 'National Council for Geographic Education'),
(24645, 21309, 'en', 'name', 'Bohai University'),
(24646, 21309, 'zh', 'name', '渤海大学'),
(24647, 21310, 'no_lang_code', 'name', 'Microelectronica (Romania)'),
(24648, 21311, 'en', 'name', 'Aldeburgh Hospital'),
(24649, 21312, 'en', 'name', 'Minnesota Educational Computing Consortium'),
(24650, 21313, 'no_lang_code', 'name', 'VersuchsStollen Hagerbach (Switzerland)'),
(24651, 21314, 'en', 'name', 'Canadian Arctic Resources Committee'),
(24652, 21315, 'no_lang_code', 'name', 'Prysmian Group (Italy)'),
(24653, 21316, 'en', 'name', 'Ellinbank Observatory'),
(24654, 21317, 'en', 'name', 'National School Boards Association'),
(24655, 21318, 'no_lang_code', 'name', 'Microgen (United States)'),
(24656, 21319, 'en', 'name', 'Zamorano Pan-American Agricultural School'),
(24657, 21319, 'es', 'name', 'Escuela AgrĆ­cola Panamericana Zamorano'),
(24658, 21320, 'en', 'name', 'South Hams Hospital'),
(24659, 21321, 'es', 'name', 'Universidad Agroforestal Fernando Arturo de MeriƱo'),
(24660, 21322, 'en', 'name', 'Sejet Plant Breeding'),
(24661, 21323, 'es', 'name', 'Universidad Central'),
(24662, 21324, 'no_lang_code', 'name', 'eBaltics (Latvia)'),
(24663, 21325, 'no_lang_code', 'name', 'Zoetis (Canada)'),
(24664, 21326, 'en', 'name', 'Edward Hain Community Hospital'),
(24665, 21327, 'en', 'name', 'Tickhill Road Hospital'),
(24666, 21328, 'en', 'name', 'Prospect Park Hospital'),
(24667, 21329, 'en', 'name', 'Dutch Polymer Institute'),
(24668, 21330, 'no_lang_code', 'name', 'PrvnĆ­ BrněnskĆ” StrojĆ­rna VelkĆ” BĆ­teÅ” (Czechia)'),
(24669, 21331, 'no_lang_code', 'name', 'Thor Technologies (United States)'),
(24670, 21332, 'en', 'name', 'Oregon Observatory'),
(24671, 21333, 'en', 'name', 'Central University'),
(24672, 21333, 'es', 'name', 'Universidad Central'),
(24673, 21334, 'en', 'name', 'Agricultural University of Georgia'),
(24674, 21335, 'en', 'name', 'Center of Excellence in Energy Efficiency'),
(24675, 21336, 'en', 'name', 'Public Health Authority of the Slovak Republic'),
(24676, 21337, 'no_lang_code', 'name', 'Nottingham Express Transit (United Kingdom)'),
(24677, 21338, 'en', 'name', 'Soul City Institute for Health & Development Communication'),
(24678, 21339, 'no_lang_code', 'name', 'SKF (Germany)'),
(24679, 21340, 'no_lang_code', 'name', 'N.A.Software (United Kingdom)'),
(24680, 21341, 'fr', 'name', 'Hoffmann-La Roche'),
(24681, 21341, 'no_lang_code', 'name', 'Roche (France)'),
(24682, 21342, 'no_lang_code', 'name', 'Permobil (United States)'),
(24683, 21343, 'no_lang_code', 'name', 'Rescon Technologies (United Kingdom)'),
(24684, 21344, 'no_lang_code', 'name', 'Pallas (Germany)'),
(24685, 21345, 'en', 'name', 'Schiller International University'),
(24686, 21346, 'en', 'name', 'Helston Community Hospital'),
(24687, 21347, 'no_lang_code', 'name', 'WIND Hellas (Greece)'),
(24688, 21348, 'no_lang_code', 'name', 'Spok'),
(24689, 21349, 'no_lang_code', 'name', 'Tiger Optics (United States)'),
(24690, 21350, 'en', 'name', 'Parent/Professional Advocacy League'),
(24691, 21351, 'en', 'name', 'Oklahoma City Community College'),
(24692, 21352, 'en', 'name', 'Touring Club Italiano'),
(24693, 21353, 'pt', 'name', 'Uniabeu Centro UniversitƔrio'),
(24694, 21354, 'no_lang_code', 'name', 'Nordeconsult (Sweden)'),
(24695, 21355, 'no_lang_code', 'name', 'ZTS Výskumno-Vývojový Ústav (Slovakia)'),
(24696, 21356, 'no_lang_code', 'name', 'Transnet (South Africa)'),
(24697, 21357, 'no_lang_code', 'name', 'Tisec (Canada)'),
(24698, 21358, 'en', 'name', 'Ispat General Hospital'),
(24699, 21358, 'hi', 'name', 'ą¤‡ą¤øą¤Ŗą¤Ÿ जनरल ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(24700, 21359, 'en', 'name', 'Rye Winchelsea and District Memorial Hospital'),
(24701, 21360, 'no_lang_code', 'name', 'Mologic (United Kingdom)'),
(24702, 21361, 'en', 'name', 'Brixham Community Hospital'),
(24703, 21362, 'no_lang_code', 'name', 'Squaris'),
(24704, 21363, 'no_lang_code', 'name', 'Team Defence Information (United Kingdom)'),
(24705, 21364, 'ja', 'name', 'ę—„ęœ¬ęµ·ē·åˆē—…é™¢'),
(24706, 21364, 'no_lang_code', 'name', 'Nihonkai General Hospital'),
(24707, 21365, 'no_lang_code', 'name', 'OZ Optics (Canada)'),
(24708, 21366, 'en', 'name', 'Hebei General Hospital'),
(24709, 21366, 'zh', 'name', 'ę²³åŒ—ēœäŗŗę°‘åŒ»é™¢'),
(24710, 21367, 'en', 'name', 'Zaozhuang Municipal Hospital'),
(24711, 21367, 'zh', 'name', 'ęž£åŗ„åø‚ē«‹åŒ»é™¢'),
(24712, 21368, 'es', 'name', 'Universidad Evangelica Nicaraguense'),
(24713, 21369, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أكتوبر Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų­ŲÆŁŠŲ«Ų© ŁˆŲ§Ł„Ų¢ŲÆŲ§ŲØ'),
(24714, 21369, 'en', 'name', 'October University of Modern Sciences and Arts'),
(24715, 21370, 'it', 'name', 'Unioncamere Piemonte'),
(24716, 21371, 'no_lang_code', 'name', 'Polska Grupa Energetyczna (Poland)'),
(24717, 21372, 'no_lang_code', 'name', 'VBC Group (United Kingdom)'),
(24718, 21373, 'en', 'name', 'Columbia International University'),
(24719, 21374, 'en', 'name', 'St. Marien Hospital'),
(24720, 21375, 'no_lang_code', 'name', 'NeoCytex Biopharma (United States)'),
(24721, 21376, 'no_lang_code', 'name', 'Rapp (Switzerland)'),
(24722, 21377, 'en', 'name', 'Spire Bristol Hospital'),
(24723, 21378, 'fr', 'name', 'UniversitƩ des Grands Lacs'),
(24724, 21379, 'no_lang_code', 'name', 'Stellarray (United States)'),
(24725, 21380, 'no_lang_code', 'name', 'Molecular Sensing (United States)'),
(24726, 21381, 'es', 'name', 'Universidad del AtlƔntico'),
(24727, 21382, 'en', 'name', 'Johnson Community Hospital'),
(24728, 21383, 'no_lang_code', 'name', 'Acobiom (France)'),
(24729, 21384, 'en', 'name', 'Mid-America Christian University'),
(24730, 21385, 'en', 'name', 'Historical Studies in Education'),
(24731, 21385, 'fr', 'name', 'Revue d''histoire de l''Ʃducation'),
(24732, 21386, 'en', 'name', 'School District of Palm Beach County'),
(24733, 21387, 'es', 'name', 'Universidad Magister'),
(24734, 21388, 'en', 'name', 'Westchester County Department of Public Safety'),
(24735, 21389, 'es', 'name', 'Colegio Libre de Estudios Universitarios'),
(24736, 21390, 'no_lang_code', 'name', 'Otoconsult (Belgium)'),
(24737, 21391, 'pt', 'name', 'Universidade Castelo Branco'),
(24738, 21392, 'no_lang_code', 'name', 'Nexture Consulting'),
(24739, 21393, 'no', 'name', 'Norges Elektriske Materiellkontroll'),
(24740, 21393, 'no_lang_code', 'name', 'Nemko (Norway)'),
(24741, 21394, 'no_lang_code', 'name', 'Nuance Communications (Canada)'),
(24742, 21395, 'en', 'name', 'Huntercombe Hospital'),
(24743, 21396, 'es', 'name', 'Fundación Universitaria Colombo Internacional'),
(24744, 21397, 'en', 'name', 'Brampton War Memorial Hospital'),
(24745, 21398, 'en', 'name', 'New Hampshire Department of Education'),
(24746, 21399, 'it', 'name', 'Ospedale di Stato della Repubblica di San Marino'),
(24747, 21400, 'no_lang_code', 'name', 'ReProtect (United States)'),
(24748, 21401, 'no_lang_code', 'name', 'Glanbia (Ireland)'),
(24749, 21402, 'es', 'name', 'Universidad Privada de Oruro'),
(24750, 21403, 'en', 'name', 'Thurrock Community Hospital'),
(24751, 21404, 'no_lang_code', 'name', 'Blackstone (United States)'),
(24752, 21405, 'en', 'name', 'Toronto Arts Foundation'),
(24753, 21406, 'de', 'name', 'Privatklinikgruppe Hirslanden'),
(24754, 21406, 'en', 'name', 'Hirslanden Private Hospital Group'),
(24755, 21407, 'no_lang_code', 'name', 'Stichting Accessibility'),
(24756, 21408, 'no_lang_code', 'name', 'Porifera (United States)'),
(24757, 21409, 'no_lang_code', 'name', 'NCR (United Kingdom)'),
(24758, 21410, 'no_lang_code', 'name', 'Bƶrsenverein des Deutschen Buchhandels (Germany)'),
(24759, 21411, 'no_lang_code', 'name', 'Omm Scientific (United States)'),
(24760, 21412, 'en', 'name', 'Connecticut Science Center'),
(24761, 21413, 'en', 'name', 'Wiltshire Council'),
(24762, 21414, 'no_lang_code', 'name', 'Reconnecting Youth (United States)'),
(24763, 21415, 'no_lang_code', 'name', 'Stellar Biotechnologies (United States)'),
(24764, 21416, 'no_lang_code', 'name', 'Vicinay Cadenas (Spain)'),
(24765, 21417, 'no_lang_code', 'name', 'Tantalus Systems (United States)'),
(24766, 21418, 'no_lang_code', 'name', 'OsteoGeneX (United States)'),
(24767, 21419, 'no_lang_code', 'name', 'Vivid Technologies (United States)'),
(24768, 21420, 'no_lang_code', 'name', 'U-Hopper (Italy)'),
(24769, 21421, 'no_lang_code', 'name', 'MicroTEC (Germany)'),
(24770, 21422, 'en', 'name', 'La Gran Colombia University'),
(24771, 21422, 'es', 'name', 'Universidad La Gran Colombia'),
(24772, 21423, 'en', 'name', 'Madonna University'),
(24773, 21424, 'es', 'name', 'Universidad Centroamericana de Ciencias Sociales'),
(24774, 21425, 'no_lang_code', 'name', 'Ultima Foods (Canada)'),
(24775, 21426, 'es', 'name', 'Universidad Azteca, Universidad Azteca de Chalco'),
(24776, 21427, 'es', 'name', 'Universidad Abierta y a Distancia de PanamĆ”'),
(24777, 21428, 'en', 'name', 'Manitoba Environmental Industries Association'),
(24778, 21429, 'no_lang_code', 'name', 'Veneto Innovazione (Italy)'),
(24779, 21430, 'de', 'name', 'MRB Forschungszentrum für Magnet-Resonanz-Bayern'),
(24780, 21430, 'en', 'name', 'MRB Research Center for Magnetic Resonance Bavaria'),
(24781, 21431, 'en', 'name', 'Columbus University'),
(24782, 21432, 'no_lang_code', 'name', 'SSBV Aerospace & Technology Group (United Kingdom)'),
(24783, 21433, 'en', 'name', 'Development of Research and Technologies for Sustainable and Seismically Safe Building'),
(24784, 21434, 'en', 'name', 'Watts Health Center'),
(24785, 21435, 'en', 'name', 'Inner Mongolia Autonomous Region Meteorological Bureau'),
(24786, 21435, 'zh', 'name', 'å†…č’™å¤č‡Ŗę²»åŒŗę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(24787, 21436, 'no_lang_code', 'name', 'Pericle Communications (United States)'),
(24788, 21437, 'no_lang_code', 'name', 'Tolsa (Spain)'),
(24789, 21438, 'no_lang_code', 'name', 'Oltis Group (Czechia)'),
(24790, 21439, 'no_lang_code', 'name', 'Oerlikon (Liechtenstein)'),
(24791, 21440, 'no_lang_code', 'name', 'Przedsiębiorstwo Innowacyjno Wdrożeniowe Complex (Poland)'),
(24792, 21441, 'no_lang_code', 'name', 'Philips (Spain)'),
(24793, 21442, 'en', 'name', 'National Institute for Research and Development in Microtechnologies'),
(24794, 21443, 'es', 'name', 'Universidad Pedro de Valdivia'),
(24795, 21444, 'no_lang_code', 'name', 'Miba (United Kingdom)'),
(24796, 21445, 'no_lang_code', 'name', 'Müller BBM (Germany)'),
(24797, 21446, 'no_lang_code', 'name', 'Samaritan Pharmaceuticals (United States)'),
(24798, 21447, 'en', 'name', 'Silliman University'),
(24799, 21447, 'tl', 'name', 'Pamantasang Silliman'),
(24800, 21448, 'en', 'name', 'Pittsburgh AIDS Task Force'),
(24801, 21449, 'no_lang_code', 'name', 'Miraculins (Canada)'),
(24802, 21450, 'no_lang_code', 'name', 'Phase Motion Control (Italy)'),
(24803, 21451, 'no_lang_code', 'name', 'Polar Mobile (Canada)'),
(24804, 21452, 'no_lang_code', 'name', 'Surrey Satellite Technology (United Kingdom)'),
(24805, 21453, 'no_lang_code', 'name', 'Skanska (Sweden)'),
(24806, 21454, 'no_lang_code', 'name', 'Permanova Lasersystem (Sweden)'),
(24807, 21455, 'en', 'name', 'South Eastern Europe Telecommunications Academy'),
(24808, 21456, 'no_lang_code', 'name', 'Moixa Technology (United Kingdom)'),
(24809, 21457, 'en', 'name', 'Markham Stouffville Hospital'),
(24810, 21458, 'en', 'name', 'Yorkshire Ambulance Service NHS Trust'),
(24811, 21459, 'en', 'name', 'Catholic University of Colombia'),
(24812, 21459, 'es', 'name', 'Universidad Católica de Colombia'),
(24813, 21460, 'no_lang_code', 'name', 'Nomad Tech (Portugal)'),
(24814, 21461, 'en', 'name', 'Canadian Institute for Advanced Research'),
(24815, 21461, 'fr', 'name', 'Institut Canadien de Recherches AvancƩes'),
(24816, 21462, 'no_lang_code', 'name', 'Stabilitech BioPharma (United Kingdom)'),
(24817, 21463, 'fr', 'name', 'RƩunion des musƩes nationaux Grand Palais'),
(24818, 21464, 'pt', 'name', 'Universidade Ɠscar Ribas'),
(24819, 21465, 'no_lang_code', 'name', 'Torrecid (Spain)'),
(24820, 21466, 'no_lang_code', 'name', 'Ogilvy (Greece)'),
(24821, 21467, 'es', 'name', 'Corporación Escuela de Artes y Letras'),
(24822, 21468, 'es', 'name', 'Universidad Tecnológica Privada de Santa Cruz'),
(24823, 21469, 'fr', 'name', 'Centre Hospitalier Intercommunal AndrƩ GrƩgoire Montreuil'),
(24824, 21470, 'en', 'name', 'National Native American AIDS Prevention Center'),
(24825, 21471, 'es', 'name', 'Universidad Villasunción'),
(24826, 21472, 'no_lang_code', 'name', 'Optima Neuroscience (United States)'),
(24827, 21473, 'fr', 'name', 'UniversitƩ GƩnƩral Lansana ContƩ'),
(24828, 21474, 'no_lang_code', 'name', 'TwistDx (United Kingdom)'),
(24829, 21475, 'no_lang_code', 'name', 'Space Environment Corporation (United States)'),
(24830, 21476, 'en', 'name', 'Tokyo-Kita Medical Center'),
(24831, 21476, 'ja', 'name', 'ę±äŗ¬åŒ—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(24832, 21477, 'it', 'name', 'Trasferimento Tecnologico e Innovazione'),
(24833, 21477, 'no_lang_code', 'name', 'Technology Transfer and Innovation (Italy)'),
(24834, 21478, 'en', 'name', 'Adamawa State University'),
(24835, 21479, 'en', 'name', 'Strategic Community Services'),
(24836, 21480, 'en', 'name', 'Shellfish Association of Great Britain'),
(24837, 21481, 'fr', 'name', 'Association pour le DƩveloppement de la Mesure et de l''Evaluation en Education'),
(24838, 21482, 'no_lang_code', 'name', 'Manus Bio (United States)'),
(24839, 21483, 'en', 'name', 'Dresden International University'),
(24840, 21484, 'es', 'name', 'Universidad del Valle de Guadiana'),
(24841, 21485, 'en', 'name', 'Saffron Walden Community Hospital'),
(24842, 21486, 'en', 'name', 'Reading Borough Council'),
(24843, 21487, 'no_lang_code', 'name', 'Dalian Dermatosis Hospital'),
(24844, 21487, 'zh', 'name', 'å¤§čæžåø‚ēš®č‚¤ē—…åŒ»é™¢'),
(24845, 21488, 'no_lang_code', 'name', 'Procter & Gamble (Italy)'),
(24846, 21489, 'no_lang_code', 'name', 'Pulp and Paper Research Institute'),
(24847, 21490, 'es', 'name', 'Universidad de San Jose'),
(24848, 21491, 'en', 'name', 'Royal Dental Hospital of Melbourne'),
(24849, 21492, 'es', 'name', 'Universidad Maimónides'),
(24850, 21493, 'en', 'name', 'Fukui University of Technology'),
(24851, 21493, 'ja', 'name', 'ē¦äŗ•å·„ę„­å¤§å­¦'),
(24852, 21494, 'fr', 'name', 'Corporation d’AmĆ©nagement et de Protection de la Sainte-Anne'),
(24853, 21495, 'no_lang_code', 'name', 'Motorola Solutions (Israel)'),
(24854, 21496, 'en', 'name', 'Feilding Palmer Hospital'),
(24855, 21497, 'es', 'name', 'Universidad de Congreso'),
(24856, 21498, 'en', 'name', 'Mount Alvernia Hospital'),
(24857, 21499, 'en', 'name', 'Rowley Regis Hospital'),
(24858, 21500, 'en', 'name', 'Redeemer''s University'),
(24859, 21501, 'no_lang_code', 'name', 'Technical Database Services (United States)'),
(24860, 21502, 'en', 'name', 'Providence University College and Theological Seminary'),
(24861, 21503, 'en', 'name', 'Shawnee Mission Northwest High School'),
(24862, 21504, 'en', 'name', 'Victorian Aboriginal Health Service'),
(24863, 21505, 'en', 'name', 'University of the Coast'),
(24864, 21505, 'es', 'name', 'Universidad de la Costa'),
(24865, 21506, 'en', 'name', 'Department of General Services'),
(24866, 21507, 'es', 'name', 'Universidad Santa Paula'),
(24867, 21508, 'no_lang_code', 'name', 'QuantumBio (United States)'),
(24868, 21509, 'es', 'name', 'Centro Universitario Vasco de Quiroga de Huejutla'),
(24869, 21510, 'en', 'name', 'Children''s Hospital 2'),
(24870, 21510, 'vi', 'name', 'Bệnh viện Nhi đồng 2'),
(24871, 21511, 'no_lang_code', 'name', 'Unis (Czechia)'),
(24872, 21512, 'es', 'name', 'Universidad de Margarita'),
(24873, 21513, 'en', 'name', 'Balochistan University of Information Technology, Engineering and Management Sciences'),
(24874, 21514, 'en', 'name', 'Northgate Hospital'),
(24875, 21515, 'pt', 'name', 'Centro UniversitƔrio de Volta Redonda'),
(24876, 21516, 'no_lang_code', 'name', 'OAS (Germany)'),
(24877, 21517, 'en', 'name', 'Swiss Internet Security Alliance'),
(24878, 21518, 'es', 'name', 'Sistemas Expertos'),
(24879, 21519, 'en', 'name', 'Achievers University'),
(24880, 21520, 'no_lang_code', 'name', 'Morgan Innovation and Technology (United Kingdom)'),
(24881, 21521, 'no_lang_code', 'name', 'Motor Oil (Greece)'),
(24882, 21522, 'fr', 'name', 'Institut National des Sciences Comptables et de l’Administration d’Entreprises'),
(24883, 21523, 'en', 'name', 'Francisco de Paula Santander University'),
(24884, 21523, 'es', 'name', 'Universidad Francisco de Paula Santander'),
(24885, 21524, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بورسعيد'),
(24886, 21524, 'en', 'name', 'Port Said University'),
(24887, 21525, 'en', 'name', 'Eurelectric'),
(24888, 21526, 'no_lang_code', 'name', 'SimulTOF Systems (United States)'),
(24889, 21527, 'en', 'name', 'Hubert Kairuki Memorial University'),
(24890, 21527, 'sw', 'name', 'Chuo Kikuu cha Kumbukumbu cha Hubert Kairuki'),
(24891, 21528, 'no_lang_code', 'name', 'NETE (United States)'),
(24892, 21529, 'en', 'name', 'University of the Southern Caribbean'),
(24893, 21529, 'es', 'name', 'Universidad del Caribe del Sur'),
(24894, 21529, 'fr', 'name', 'Université de la caraïbe du sud'),
(24895, 21530, 'en', 'name', 'Seaford Day Hospital'),
(24896, 21531, 'no_lang_code', 'name', 'Sonnenkraft (Austria)'),
(24897, 21532, 'en', 'name', 'Gabriel RenƩ Moreno Autonomous University'),
(24898, 21532, 'es', 'name', 'Universidad Autónoma Gabriel René Moreno'),
(24899, 21533, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure - Marrakech'),
(24900, 21534, 'no_lang_code', 'name', 'SiMPore (United States)'),
(24901, 21535, 'pt', 'name', 'Centro UniversitƔrio Capital'),
(24902, 21536, 'no_lang_code', 'name', 'Wieland (Germany)'),
(24903, 21537, 'no_lang_code', 'name', 'Millab Consult (Norway)'),
(24904, 21538, 'no_lang_code', 'name', 'Exechon (Sweden)'),
(24905, 21539, 'no_lang_code', 'name', 'Schneider Electric (Germany)'),
(24906, 21540, 'pt', 'name', 'Universidade de MarĆ­lia'),
(24907, 21541, 'en', 'name', 'Freed–Hardeman University'),
(24908, 21542, 'no_lang_code', 'name', 'Raymor (Canada)'),
(24909, 21543, 'en', 'name', 'Manchester Airport'),
(24910, 21544, 'en', 'name', 'Wavefront Wireless Commercialization Centre'),
(24911, 21545, 'no_lang_code', 'name', 'Mesolight (United States)'),
(24912, 21546, 'no_lang_code', 'name', 'S. B. Barnes Associates (United States)'),
(24913, 21547, 'es', 'name', 'Universidad Loyola'),
(24914, 21548, 'en', 'name', 'Lings Bar Hospital'),
(24915, 21549, 'no_lang_code', 'name', 'Positron (United States)'),
(24916, 21550, 'fr', 'name', 'Institut SupĆ©rieur d’Electronique et des RĆ©seaux & TĆ©lĆ©communications'),
(24917, 21551, 'en', 'name', 'Golden Gate University'),
(24918, 21552, 'es', 'name', 'Universidad Central'),
(24919, 21553, 'no_lang_code', 'name', 'Bonnier Technology Group (Germany)'),
(24920, 21554, 'no_lang_code', 'name', 'Tobii (Sweden)'),
(24921, 21555, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„ الأزرق'),
(24922, 21555, 'en', 'name', 'Blue Nile University'),
(24923, 21556, 'fr', 'name', 'Centre Hospitalier de Niort'),
(24924, 21557, 'en', 'name', 'Alton Community Hospital'),
(24925, 21558, 'en', 'name', 'Langdon Hospital'),
(24926, 21559, 'no_lang_code', 'name', 'Zeno Semiconductor (United States)'),
(24927, 21560, 'en', 'name', 'Milford Elementary School'),
(24928, 21561, 'no_lang_code', 'name', 'Ocean Atmosphere Systems (Germany)'),
(24929, 21562, 'es', 'name', 'Universidad Cervantina'),
(24930, 21563, 'no_lang_code', 'name', 'Tribo Flow Separations (United States)'),
(24931, 21564, 'fr', 'name', 'Institut Marocain de Management'),
(24932, 21565, 'no_lang_code', 'name', 'NanoGriptech (United States)'),
(24933, 21566, 'en', 'name', 'Nuffield Health Bristol Hospital'),
(24934, 21567, 'en', 'name', 'Ministry of Education'),
(24935, 21567, 'hr', 'name', 'Ministarstvo Prosvjete'),
(24936, 21568, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³ قرطاج'),
(24937, 21568, 'fr', 'name', 'UniversitƩ Tunis Carthage'),
(24938, 21569, 'en', 'name', 'University of the West'),
(24939, 21570, 'ja', 'name', 'ä½œę–°å­¦é™¢å¤§å­¦'),
(24940, 21570, 'no_lang_code', 'name', 'Sakushin Gakuin University'),
(24941, 21571, 'en', 'name', 'Ziguinchor University'),
(24942, 21571, 'fr', 'name', 'UniversitƩ de ziguinchor'),
(24943, 21572, 'es', 'name', 'Centro Universitario Siglo XXI'),
(24944, 21573, 'no_lang_code', 'name', 'Team (Italy)'),
(24945, 21574, 'en', 'name', 'Un-Convention'),
(24946, 21575, 'en', 'name', 'Institution of Engineering and Technology'),
(24947, 21576, 'en', 'name', 'Society for the Study of Egyptian Antiquities'),
(24948, 21577, 'en', 'name', 'University of San Pedro Sula'),
(24949, 21577, 'es', 'name', 'Universidad de San Pedro Sula'),
(24950, 21578, 'en', 'name', 'Logistics University of People''s Armed Police Force'),
(24951, 21578, 'zh', 'name', 'äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜ŸåŽå‹¤å­¦é™¢'),
(24952, 21579, 'es', 'name', 'Universidad Empresarial Siglo 21'),
(24953, 21580, 'en', 'name', 'Wantage Community Hospital'),
(24954, 21581, 'en', 'name', 'St Helen''s Rehabilitation Hospital'),
(24955, 21582, 'no_lang_code', 'name', 'Zeeko (United Kingdom)'),
(24956, 21583, 'no_lang_code', 'name', 'Petroleum Helicopters International (United States)'),
(24957, 21584, 'no_lang_code', 'name', 'Prevas (Norway)'),
(24958, 21585, 'es', 'name', 'Instituto Profesional Helen Keller'),
(24959, 21586, 'es', 'name', 'Universidad Enrique Díaz de León'),
(24960, 21587, 'ar', 'name', 'المدرسة Ų§Ł„Ų­Ų³Ł†ŁŠŲ© للأؓغال Ų§Ł„Ų¹Ł…ŁˆŁ…ŁŠŲ©'),
(24961, 21587, 'en', 'name', 'Hassania School of Public Works'),
(24962, 21587, 'fr', 'name', 'Ɖcole Hassania des travaux publics'),
(24963, 21588, 'en', 'name', 'New York City Fire Department'),
(24964, 21589, 'es', 'name', 'Corporación Politécnico Colombo Andino'),
(24965, 21590, 'en', 'name', 'Mind'),
(24966, 21591, 'no_lang_code', 'name', 'ProControl (Italy)'),
(24967, 21592, 'en', 'name', 'Women in Government'),
(24968, 21593, 'es', 'name', 'Universidad del Soconusco'),
(24969, 21594, 'no_lang_code', 'name', 'StrateCision (United States)'),
(24970, 21595, 'en', 'name', 'Port Elizabeth Provincial Hospital'),
(24971, 21596, 'no_lang_code', 'name', 'Valdez & Associates (United States)'),
(24972, 21597, 'es', 'name', 'Universidad de Ciencias Pedagógicas José de la Luz Caballero'),
(24973, 21598, 'en', 'name', 'Green Lane Hospital'),
(24974, 21599, 'fr', 'name', 'Institut International des Sciences et de Technologie'),
(24975, 21600, 'no_lang_code', 'name', 'Nobatek'),
(24976, 21601, 'en', 'name', 'University of the Latin American Educational Center'),
(24977, 21601, 'es', 'name', 'Universidad del Centro Educativo Latinoamericano'),
(24978, 21602, 'en', 'name', 'Chichester Hospital'),
(24979, 21603, 'en', 'name', 'Dorking Community Hospital'),
(24980, 21604, 'pt', 'name', 'Universidade de CuiabĆ”'),
(24981, 21605, 'no_lang_code', 'name', 'Oxyrase (United States)'),
(24982, 21606, 'en', 'name', 'Oakwater Laboratories'),
(24983, 21607, 'es', 'name', 'Universidad Especializada de las AmƩricas'),
(24984, 21608, 'no_lang_code', 'name', 'Schafer-N (Denmark)'),
(24985, 21609, 'no_lang_code', 'name', 'Oxsensis (United Kingdom)'),
(24986, 21610, 'en', 'name', 'Alston Community Hospital'),
(24987, 21611, 'es', 'name', 'Unidades Tecnológicas de Santander'),
(24988, 21612, 'en', 'name', 'DMI St. Eugene University'),
(24989, 21613, 'no_lang_code', 'name', 'Tetra Corporation (United States)'),
(24990, 21614, 'en', 'name', 'National University of Catamarca'),
(24991, 21614, 'es', 'name', 'Universidad Nacional de Catamarca'),
(24992, 21615, 'cy', 'name', 'Post Brenhinol'),
(24993, 21615, 'gd', 'name', 'a'' Phuist RƬoghail'),
(24994, 21615, 'no_lang_code', 'name', 'Royal Mail Group (United Kingdom)'),
(24995, 21616, 'no_lang_code', 'name', 'SyntheZyme (United States)'),
(24996, 21617, 'en', 'name', 'Gravesham Community Hospital'),
(24997, 21618, 'it', 'name', 'TTS Italia'),
(24998, 21619, 'en', 'name', 'Portland Public Schools'),
(24999, 21620, 'no_lang_code', 'name', 'Next Limit Technologies (Spain)'),
(25000, 21621, 'en', 'name', 'Callington Road Hospital'),
(25001, 21622, 'no_lang_code', 'name', 'Walter Frank & Sons (United Kingdom)'),
(25002, 21623, 'en', 'name', 'Nelson Hospital'),
(25003, 21624, 'no_lang_code', 'name', 'Pensoft Publishers (Bulgaria)'),
(25004, 21625, 'en', 'name', 'Ministry of Education, Science and Technological Development'),
(25005, 21626, 'no_lang_code', 'name', 'Multimeric Biotherapeutics (United States)'),
(25006, 21627, 'es', 'name', 'Universidad Nacional Experimental Rafael MarĆ­a Baralt'),
(25007, 21628, 'en', 'name', 'Mayflower Community Hospital'),
(25008, 21629, 'no_lang_code', 'name', 'PDS (United States)'),
(25009, 21630, 'es', 'name', 'Escuela de Cadetes de PolicĆ­a General Santander'),
(25010, 21631, 'no_lang_code', 'name', 'African Methodist Episcopal University'),
(25011, 21632, 'no_lang_code', 'name', 'Silios Technologies (France)'),
(25012, 21633, 'en', 'name', 'Xi’an University'),
(25013, 21633, 'zh', 'name', '脿安文理学院'),
(25014, 21634, 'fr', 'name', 'Institut d''Histoire de l''AmƩrique FranƧaise'),
(25015, 21635, 'en', 'name', 'The Gordon Hospital'),
(25016, 21636, 'en', 'name', 'Octavia Housing'),
(25017, 21637, 'it', 'name', 'Osservatorio Astronomico Armenzano'),
(25018, 21638, 'en', 'name', 'Tansian University'),
(25019, 21639, 'en', 'name', 'Police Academy in Szczytno'),
(25020, 21640, 'no_lang_code', 'name', 'Organovo (United States)'),
(25021, 21641, 'no_lang_code', 'name', 'Salsnes Filter (Norway)'),
(25022, 21642, 'en', 'name', 'Newburgh Enlarged City School District'),
(25023, 21643, 'en', 'name', 'Queen Mary''s Hospital For Children'),
(25024, 21644, 'no_lang_code', 'name', 'PhaseSpace (United Kingdom)'),
(25025, 21645, 'en', 'name', 'Renaissance University'),
(25026, 21646, 'en', 'name', 'University of Arusha'),
(25027, 21646, 'sw', 'name', 'Chuo Kikuu cha Arusha'),
(25028, 21647, 'ja', 'name', 'äø‡ęˆē—…é™¢'),
(25029, 21647, 'no_lang_code', 'name', 'Mannari Hospital'),
(25030, 21648, 'en', 'name', 'Savernake Community Hospital'),
(25031, 21649, 'no_lang_code', 'name', 'Sir Robert McAlpine (United Kingdom)'),
(25032, 21650, 'no_lang_code', 'name', 'Subsea 7 (United Kingdom)'),
(25033, 21651, 'no_lang_code', 'name', 'Plasmaterm (Romania)'),
(25034, 21652, 'no_lang_code', 'name', 'Zyberwear (United States)'),
(25035, 21653, 'en', 'name', 'New Cairo Academy'),
(25036, 21654, 'no_lang_code', 'name', 'RVJ - Editores (Portugal)'),
(25037, 21655, 'es', 'name', 'Universidad Regional del Norte'),
(25038, 21656, 'en', 'name', 'Suor Orsola Benincasa University of Naples'),
(25039, 21656, 'fr', 'name', 'UniversitĆ© sœur-ursule-benincasa'),
(25040, 21656, 'it', 'name', 'UniversitĆ  degli Studi Suor Orsola Benincasa'),
(25041, 21657, 'no_lang_code', 'name', 'Velcourt (United Kingdom)'),
(25042, 21658, 'en', 'name', 'Intercontinental University'),
(25043, 21658, 'es', 'name', 'Universidad Intercontinental'),
(25044, 21659, 'no_lang_code', 'name', 'Tadiran Batteries (Germany)'),
(25045, 21660, 'en', 'name', 'Townlands Memorial Hospital'),
(25046, 21661, 'no_lang_code', 'name', 'Oracle (Germany)'),
(25047, 21662, 'en', 'name', 'Canadian Society for Italian Studies'),
(25048, 21662, 'fr', 'name', 'SociĆ©tĆ© Canadienne pour les Ɖtudes Italiennes'),
(25049, 21663, 'es', 'name', 'Colegio Metodista de Costa Rica'),
(25050, 21664, 'en', 'name', 'Withernsea Hospital'),
(25051, 21665, 'no_lang_code', 'name', 'Transvalor (France)'),
(25052, 21666, 'no_lang_code', 'name', 'Norac Pharma (United States)'),
(25053, 21667, 'es', 'name', 'Instituto Profesional Agrario Adolfo Matthei'),
(25054, 21668, 'en', 'name', 'WEGEMT'),
(25055, 21669, 'en', 'name', 'Stockport NHS Foundation Trust'),
(25056, 21670, 'no_lang_code', 'name', 'Oxfam'),
(25057, 21671, 'en', 'name', 'Finis Terrae University'),
(25058, 21671, 'es', 'name', 'Universidad Finis Terrae'),
(25059, 21672, 'en', 'name', 'NHS Blood and Transplant'),
(25060, 21673, 'en', 'name', 'Wellcome Collection'),
(25061, 21674, 'en', 'name', 'Jobu University'),
(25062, 21674, 'ja', 'name', '上武大学'),
(25063, 21675, 'en', 'name', 'Cannock Chase Hospital'),
(25064, 21676, 'en', 'name', 'University of Information Science'),
(25065, 21676, 'es', 'name', 'Universidad de las Ciencias InformƔticas'),
(25066, 21677, 'en', 'name', 'BMI The Ridgeway Hospital'),
(25067, 21678, 'no_lang_code', 'name', 'Optiwave Systems (Canada)'),
(25068, 21679, 'el', 'name', 'Γημόσια κεντρική βιβλιοθήκη βέροιας'),
(25069, 21679, 'en', 'name', 'Veria Central Public Library'),
(25070, 21680, 'en', 'name', 'San Juan County Partnership'),
(25071, 21681, 'en', 'name', 'West Cornwall Hospital'),
(25072, 21682, 'en', 'name', 'Michigan Coalition to End Domestic and Sexual Violence'),
(25073, 21683, 'en', 'name', 'New York State Senate'),
(25074, 21684, 'en', 'name', 'Spanish Autonomous University of Durango'),
(25075, 21684, 'es', 'name', 'Universidad Autónoma España de Durango'),
(25076, 21685, 'es', 'name', 'Instituto Universitario Asociación Cristiana de Jóvenes'),
(25077, 21686, 'no_lang_code', 'name', 'Sprout Design (United Kingdom)'),
(25078, 21687, 'en', 'name', 'Dongguan People’s Hospital'),
(25079, 21687, 'zh', 'name', 'äøœčŽžåø‚äŗŗę°‘åŒ»é™¢'),
(25080, 21688, 'es', 'name', 'Universidad Peruana de Ciencias e InformƔtica'),
(25081, 21689, 'es', 'name', 'Instituto Profesional Los Leones'),
(25082, 21690, 'he', 'name', 'או.אה.אמ. - דן בע"מ'),
(25083, 21690, 'no_lang_code', 'name', 'OSM DAN (Israel)'),
(25084, 21691, 'no_lang_code', 'name', 'Test Labs International (Canada)'),
(25085, 21692, 'no_lang_code', 'name', 'PlayGen (United Kingdom)'),
(25086, 21693, 'en', 'name', 'Crandall University'),
(25087, 21694, 'et', 'name', 'Miksike'),
(25088, 21695, 'en', 'name', 'Sarah Samuels Center for Public Health & Evaluation'),
(25089, 21696, 'en', 'name', 'Montana Office of Public Instruction'),
(25090, 21697, 'no_lang_code', 'name', 'Anglo American (United Kingdom)'),
(25091, 21698, 'no_lang_code', 'name', 'PharmaReview Corporation'),
(25092, 21699, 'no_lang_code', 'name', 'Enghouse Interactive (United Kingdom)'),
(25093, 21700, 'no_lang_code', 'name', 'ReNeuron (United Kingdom)'),
(25094, 21701, 'en', 'name', 'Wallingford Community Hospital'),
(25095, 21702, 'no_lang_code', 'name', 'Qserve Group (Netherlands)'),
(25096, 21703, 'fr', 'name', 'Ɖcole SupĆ©rieure de Communication et de PublicitĆ©'),
(25097, 21704, 'en', 'name', 'Medway Maritime Hospital'),
(25098, 21705, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أم درمان Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(25099, 21705, 'no_lang_code', 'name', 'Omdurman Ahlia University'),
(25100, 21706, 'en', 'name', 'Webber International University'),
(25101, 21706, 'es', 'name', 'Universidad Internacional Webber'),
(25102, 21707, 'no_lang_code', 'name', 'Remote Sensing Solutions (Germany)'),
(25103, 21708, 'en', 'name', 'Community Sector Council Newfoundland and Labrador'),
(25104, 21709, 'no_lang_code', 'name', 'Varta Microbattery (Germany)'),
(25105, 21710, 'en', 'name', 'Textile Research Institute'),
(25106, 21711, 'no_lang_code', 'name', 'Sidekick Studios (United Kingdom)'),
(25107, 21712, 'en', 'name', 'National Pedagogic University'),
(25108, 21712, 'es', 'name', 'Universidad Pedagógica Nacional'),
(25109, 21713, 'no_lang_code', 'name', 'Tektronix (Canada)'),
(25110, 21714, 'no_lang_code', 'name', 'Midland Valley Exploration (United Kingdom)'),
(25111, 21715, 'no_lang_code', 'name', 'Sitex 45 (Romania)'),
(25112, 21716, 'no_lang_code', 'name', 'TP Vision (Belgium)'),
(25113, 21717, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Denmark)'),
(25114, 21718, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© ŲÆŲ§Ų± Ų§Ł„Ų­ŲÆŁŠŲ« Ų§Ł„Ų­Ų³Ł†ŁŠŲ©'),
(25115, 21718, 'fr', 'name', 'Ɖtablissement Dar El Hadith El Hassania'),
(25116, 21719, 'no_lang_code', 'name', 'Supanetics (United Kingdom)'),
(25117, 21720, 'en', 'name', 'Skegness Hospital'),
(25118, 21721, 'es', 'name', 'Hospital Provincial de Rosario'),
(25119, 21722, 'no_lang_code', 'name', 'Vertellus Specialties (United Kingdom)'),
(25120, 21723, 'no_lang_code', 'name', 'NiTech Solutions (United Kingdom)'),
(25121, 21724, 'fr', 'name', 'Women''s and Gender Studies et Recherches FƩministes'),
(25122, 21725, 'no_lang_code', 'name', 'HBW-Gubesch Kunststoff-Engineering (Germany)'),
(25123, 21726, 'en', 'name', 'Wayland Baptist University'),
(25124, 21727, 'en', 'name', 'Kendray Hospital'),
(25125, 21728, 'en', 'name', 'Polytechnic University of San Luis PotosĆ­');
INSERT INTO `ror_settings` VALUES
(25126, 21728, 'es', 'name', 'Universidad PolitƩcnica de San Luis Potosƭ'),
(25127, 21729, 'en', 'name', 'Population Reference Bureau'),
(25128, 21730, 'no_lang_code', 'name', 'Ridan (Poland)'),
(25129, 21731, 'en', 'name', 'Northeast Communities Against Substance Abuse'),
(25130, 21732, 'en', 'name', 'Kyungil University'),
(25131, 21733, 'no_lang_code', 'name', 'Scytl (Spain)'),
(25132, 21734, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚ŁŠŲ±ŁˆŲ§Ł†'),
(25133, 21734, 'en', 'name', 'University of Kairouan'),
(25134, 21734, 'fr', 'name', 'UniversitƩ de kairouan'),
(25135, 21735, 'es', 'name', 'Universidad YacambĆŗ'),
(25136, 21736, 'en', 'name', 'Blakelands Hospital'),
(25137, 21737, 'en', 'name', 'Thames Valley Hospital'),
(25138, 21738, 'en', 'name', 'Jiaozuo University'),
(25139, 21738, 'zh', 'name', 'ē„¦ä½œå¤§å­¦'),
(25140, 21739, 'no_lang_code', 'name', 'Diebold Nixdorf (Germany)'),
(25141, 21740, 'no_lang_code', 'name', 'Red Electrica de Espana (Spain)'),
(25142, 21741, 'no_lang_code', 'name', 'Synyo (Austria)'),
(25143, 21742, 'pt', 'name', 'Centro UniversitƔrio de Lavras'),
(25144, 21743, 'en', 'name', 'The Princess Grace Hospital'),
(25145, 21744, 'en', 'name', 'Bradwell Community Hospital'),
(25146, 21745, 'en', 'name', 'Runnymede Trust'),
(25147, 21746, 'no_lang_code', 'name', 'Niadyne Pharma (United States)'),
(25148, 21747, 'pt', 'name', 'Centro UniversitƔrio de Desenvolvimento do Centro Oeste'),
(25149, 21748, 'no_lang_code', 'name', 'Oros (France)'),
(25150, 21749, 'no_lang_code', 'name', 'RUAG (Sweden)'),
(25151, 21750, 'en', 'name', 'Port Gamble S''Klallam Tribal Council'),
(25152, 21751, 'fr', 'name', 'UniversitƩ Catholique du Congo'),
(25153, 21752, 'en', 'name', 'Ukrainian Scientific and Research Institute of Ecological Problems'),
(25154, 21753, 'en', 'name', 'St George''s Hospital'),
(25155, 21754, 'es', 'name', 'Universidad Interamericana'),
(25156, 21755, 'es', 'name', 'Hospital Quirónsalud Barcelona'),
(25157, 21756, 'no_lang_code', 'name', 'Urba 2000'),
(25158, 21757, 'fr', 'name', 'UniversitƩ of 20 aoƻt 1955 of Skikda'),
(25159, 21757, 'no_lang_code', 'name', 'University of Skikda'),
(25160, 21758, 'no_lang_code', 'name', 'Services and Studies for Air Navigation and Aeronautical Safety'),
(25161, 21759, 'es', 'name', 'Centro Universitario Juana de Asbaje'),
(25162, 21760, 'en', 'name', 'Zimbabwe Association of Church-Related Hospitals'),
(25163, 21761, 'no_lang_code', 'name', '3D Systems (Belgium)'),
(25164, 21762, 'en', 'name', 'St Pancras Hospital'),
(25165, 21763, 'es', 'name', 'Universidad Interamericana de Educación a Distancia de PanamÔ'),
(25166, 21764, 'no_lang_code', 'name', 'NanoTechLabs (United States)'),
(25167, 21765, 'en', 'name', 'Shangqiu First People''s Hospital'),
(25168, 21765, 'zh', 'name', 'å•†äø˜åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(25169, 21766, 'no_lang_code', 'name', 'Plasma Coatings (United Kingdom)'),
(25170, 21767, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أم درمان Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(25171, 21767, 'en', 'name', 'Omdurman Islamic University'),
(25172, 21768, 'da', 'name', 'Statens Arkivers'),
(25173, 21768, 'en', 'name', 'Danish National Archives'),
(25174, 21769, 'en', 'name', 'North Cotswolds Hospital'),
(25175, 21770, 'no_lang_code', 'name', 'Red Hat (Ireland)'),
(25176, 21771, 'no_lang_code', 'name', 'Scientific Computing & Modelling (Netherlands)'),
(25177, 21772, 'en', 'name', 'National School of Built and Ground Works Engineering'),
(25178, 21773, 'no_lang_code', 'name', 'Pavemetrics Systems (Canada)'),
(25179, 21774, 'en', 'name', 'El Shorouk Academy'),
(25180, 21775, 'no_lang_code', 'name', 'Samo (Italy)'),
(25181, 21776, 'pt', 'name', 'Universidade do Vale do SapucaĆ­'),
(25182, 21777, 'en', 'name', 'Canadian Association for Studies in Co-operation'),
(25183, 21777, 'fr', 'name', 'Association Canadienne pour les Ɖtudes sur la Cooperation'),
(25184, 21778, 'en', 'name', 'NWT Literacy Council'),
(25185, 21779, 'es', 'name', 'Escuela Colombiana de Rehabilitación'),
(25186, 21780, 'en', 'name', 'Richmond Royal Hospital'),
(25187, 21781, 'en', 'name', 'Swindon Borough Council'),
(25188, 21782, 'en', 'name', 'St. Lawrence College'),
(25189, 21783, 'no_lang_code', 'name', 'Schüßler-Plan (Germany)'),
(25190, 21784, 'en', 'name', 'Alderney Hospital'),
(25191, 21785, 'fr', 'name', 'Ɖcole SupĆ©rieure des Industries du Textile et de l''Habillement'),
(25192, 21786, 'es', 'name', 'Universidad del Valle de Santiago'),
(25193, 21787, 'en', 'name', 'Marion General Hospital'),
(25194, 21788, 'en', 'name', 'Second Artillery General Hospital of Chinese People''s Liberation Army'),
(25195, 21788, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬äŗŒē‚®å…µę€»åŒ»é™¢'),
(25196, 21789, 'pt', 'name', 'Instituto Superior de CiĆŖncias e Tecnologia Alberto Chipande'),
(25197, 21790, 'no_lang_code', 'name', 'Merlin Circuit Technology (United Kingdom)'),
(25198, 21791, 'no_lang_code', 'name', 'Moixa (United Kingdom)'),
(25199, 21792, 'no_lang_code', 'name', 'Rofin (United Kingdom)'),
(25200, 21793, 'no_lang_code', 'name', 'Quality Electrodynamics (United States)'),
(25201, 21794, 'en', 'name', 'Erith and District Hospital'),
(25202, 21795, 'en', 'name', 'Scottish Universities Physics Alliance'),
(25203, 21796, 'no_lang_code', 'name', 'Tarp (United States)'),
(25204, 21797, 'no_lang_code', 'name', 'Y-Stress (United States)'),
(25205, 21798, 'en', 'name', 'University of the Valley of Atemajac'),
(25206, 21798, 'es', 'name', 'Universidad del Valle de Atemajac'),
(25207, 21799, 'fr', 'name', 'Ɖcole Africaine de la MĆ©tĆ©orologie et de l''Aviation Civile'),
(25208, 21800, 'en', 'name', 'William Howard Taft University'),
(25209, 21801, 'bg', 'name', 'астрономическа Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ Šø ŠæŠ»Š°Š½ŠµŃ‚Š°Ń€ŠøŃƒŠ¼ ā€žŠŠøŠŗŠ¾Š»Š°Š¹ ŠšŠ¾ŠæŠµŃ€Š½ŠøŠŗā€œ'),
(25210, 21801, 'no_lang_code', 'name', 'Astronomical Observatory Nicolaus Copernicus'),
(25211, 21802, 'en', 'name', 'Tewkesbury Community Hospital'),
(25212, 21803, 'en', 'name', 'Higher Institute for Cooperative and Administrative Studies'),
(25213, 21804, 'no_lang_code', 'name', 'NKE Instrumentation (France)'),
(25214, 21805, 'no_lang_code', 'name', 'Whirlpool (Italy)'),
(25215, 21806, 'en', 'name', 'Twyford Church of England High School'),
(25216, 21807, 'no_lang_code', 'name', 'Proactive Oral Solutions (United States)'),
(25217, 21808, 'no_lang_code', 'name', 'Naeva Tec (Spain)'),
(25218, 21809, 'en', 'name', 'Warminster Community Hospital'),
(25219, 21810, 'en', 'name', 'Catholic University of Santiago del Estero'),
(25220, 21810, 'es', 'name', 'Universidad Católica de Santiago del Estero'),
(25221, 21811, 'en', 'name', 'Maudsley Hospital'),
(25222, 21812, 'en', 'name', 'Bexhill Hospital'),
(25223, 21813, 'ar', 'name', 'معهد الفراعنة العالى للحاسب الألى ŁˆŁ†ŲøŁ… Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ ŁˆŲ§Ł„Ų„ŲÆŲ§Ų±Ų©'),
(25224, 21813, 'en', 'name', 'Pharaohs Higher Institute of Computer Information Systems and Management'),
(25225, 21814, 'en', 'name', 'Women in Resource Development'),
(25226, 21815, 'no_lang_code', 'name', 'Sioux Manufacturing (United States)'),
(25227, 21816, 'en', 'name', 'Shanghai Guanghua Hospital of Integrated Traditional Chinese and Western Medicine'),
(25228, 21816, 'zh', 'name', 'äøŠęµ·åø‚å…‰åŽäø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(25229, 21817, 'en', 'name', 'Learning Ally'),
(25230, 21818, 'en', 'name', 'Hunters Hill Observatory'),
(25231, 21819, 'en', 'name', 'York Teaching Hospital NHS Foundation Trust'),
(25232, 21820, 'en', 'name', 'Sutton Cottage Hospital'),
(25233, 21821, 'no_lang_code', 'name', 'Xigen (Switzerland)'),
(25234, 21822, 'en', 'name', 'Vanier College'),
(25235, 21823, 'no_lang_code', 'name', 'Picanol (Belgium)'),
(25236, 21824, 'de', 'name', 'Bundesamt für Statistik'),
(25237, 21824, 'en', 'name', 'Federal Statistical Office'),
(25238, 21824, 'fr', 'name', 'Office fƩdƩral de la statistique'),
(25239, 21824, 'it', 'name', 'Ufficio federale di statistica'),
(25240, 21824, 'rm', 'name', 'Uffizi federal da statistica'),
(25241, 21825, 'en', 'name', 'Monroe County Department of Human Services'),
(25242, 21826, 'no_lang_code', 'name', 'META Group'),
(25243, 21827, 'no_lang_code', 'name', 'Resensys (United States)'),
(25244, 21828, 'no_lang_code', 'name', 'Sidac (Italy)'),
(25245, 21829, 'es', 'name', 'Universidad Pedagógica Mariscal Sucre'),
(25246, 21830, 'es', 'name', 'Universidad EvangƩlica de las AmƩricas'),
(25247, 21831, 'no_lang_code', 'name', 'FitzGerald Nurseries (Ireland)'),
(25248, 21832, 'en', 'name', 'Pershore Community Hospital'),
(25249, 21833, 'no_lang_code', 'name', 'Mandala Biosciences (United States)'),
(25250, 21834, 'no_lang_code', 'name', 'NeuroSearch (Denmark)'),
(25251, 21835, 'en', 'name', 'National Research and Education Network'),
(25252, 21836, 'es', 'name', 'Universidad Chileno BritƔnica de Cultura'),
(25253, 21837, 'en', 'name', 'Kobatake Hospital'),
(25254, 21837, 'ja', 'name', 'å°ē• ē—…é™¢'),
(25255, 21838, 'no_lang_code', 'name', 'PhenoSystems (Belgium)'),
(25256, 21839, 'no_lang_code', 'name', 'GMV Innovating Solutions (Portugal)'),
(25257, 21840, 'en', 'name', 'Mid Essex Hospital Services NHS Trust'),
(25258, 21841, 'en', 'name', 'Concordia University Texas'),
(25259, 21841, 'es', 'name', 'Universidad Concordia Texas'),
(25260, 21842, 'no_lang_code', 'name', 'Gruppo Scienzia Machinale (Italy)'),
(25261, 21843, 'no_lang_code', 'name', 'Sofie Biosciences (United States)'),
(25262, 21844, 'no_lang_code', 'name', 'Coesia (Italy)'),
(25263, 21845, 'de', 'name', 'Deutsches Hygiene-Museum'),
(25264, 21845, 'en', 'name', 'German Hygiene Museum'),
(25265, 21846, 'en', 'name', 'West Virginia Department of Education'),
(25266, 21847, 'es', 'name', 'Fundación Academia de Dibujo Profesional'),
(25267, 21848, 'es', 'name', 'Instituto Profesional Escuela De Contadores Auditores De Santiago'),
(25268, 21849, 'en', 'name', 'Whitby Hospital'),
(25269, 21850, 'pt', 'name', 'Centro Universitario Toledo'),
(25270, 21851, 'es', 'name', 'Universidad Comunera'),
(25271, 21852, 'en', 'name', 'Spire Little Aston Hospital'),
(25272, 21853, 'en', 'name', 'Republican Research Center for Radiation Medicine and Human Ecology'),
(25273, 21854, 'es', 'name', 'Institución Universitaria Colegio Mayor de Antioquia'),
(25274, 21855, 'en', 'name', 'Shasta County Chemical People'),
(25275, 21856, 'es', 'name', 'Universidad Americana de Acapulco'),
(25276, 21857, 'en', 'name', 'Chartwell Diagnostic and Imaging Centre'),
(25277, 21858, 'es', 'name', 'Fundación Interamericana Técnica'),
(25278, 21859, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© وادي Ų§Ł„Ł†ŁŠŁ„'),
(25279, 21859, 'en', 'name', 'Nile Valley University'),
(25280, 21860, 'pt', 'name', 'Centro UniversitƔrio Nossa Senhora do Patrocƭnio'),
(25281, 21861, 'no_lang_code', 'name', 'Protein Technologies (United Kingdom)'),
(25282, 21862, 'no_lang_code', 'name', 'Platit (Switzerland)'),
(25283, 21863, 'no_lang_code', 'name', 'Shijiazhuang University'),
(25284, 21863, 'zh', 'name', 'ēŸ³å®¶åŗ„å­¦é™¢'),
(25285, 21864, 'no_lang_code', 'name', 'RSscan International (Belgium)'),
(25286, 21865, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes de Biotechnologie et de SantĆ©'),
(25287, 21866, 'es', 'name', 'Universidad JosƩ Carlos Mariategui'),
(25288, 21867, 'no_lang_code', 'name', 'Sustainable Energy Systems (United Kingdom)'),
(25289, 21868, 'no_lang_code', 'name', 'TerOpta (United Kingdom)'),
(25290, 21869, 'no_lang_code', 'name', 'France Rol (France)'),
(25291, 21870, 'no_lang_code', 'name', 'Nordic Transport Development'),
(25292, 21871, 'no_lang_code', 'name', 'Metabolic Solutions Development Company (United States)'),
(25293, 21872, 'en', 'name', 'National Cancer Registrars Association'),
(25294, 21873, 'en', 'name', 'Amberton University'),
(25295, 21873, 'es', 'name', 'Universidad Amberton'),
(25296, 21874, 'es', 'name', 'Universidad Católica de Pereira'),
(25297, 21875, 'no_lang_code', 'name', 'STM Products (Italy)'),
(25298, 21876, 'no_lang_code', 'name', 'SilicoLife (Portugal)'),
(25299, 21877, 'en', 'name', 'British Constructional Steelwork Association'),
(25300, 21878, 'pt', 'name', 'Centro UniversitƔrio Curitiba'),
(25301, 21879, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų„ŁŲ±ŁŠŁ‚ŁŠŲ§ Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(25302, 21879, 'en', 'name', 'International University of Africa'),
(25303, 21880, 'ar', 'name', 'الجامعة Ų§Ł„Ų±ŁˆŲ³ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(25304, 21880, 'en', 'name', 'Egyptian Russian University'),
(25305, 21881, 'cy', 'name', 'Ysbyty Arch Noa Plant Cymru'),
(25306, 21881, 'en', 'name', 'Noah''s Ark Children''s Hospital for Wales'),
(25307, 21882, 'no_lang_code', 'name', 'WesTest Engineering (United States)'),
(25308, 21883, 'en', 'name', 'Maine Department of Education'),
(25309, 21884, 'es', 'name', 'Instituto Profesional de Ciencias de la Computación'),
(25310, 21885, 'en', 'name', 'Remote Sensing Application Center'),
(25311, 21886, 'en', 'name', 'Genome Canada'),
(25312, 21887, 'en', 'name', 'Council of Ministers of Education'),
(25313, 21888, 'en', 'name', 'Zimbabwe National Quality Assurance Program'),
(25314, 21889, 'en', 'name', 'Spire Dunedin Hospital'),
(25315, 21890, 'en', 'name', 'Newmarket Hospital'),
(25316, 21891, 'es', 'name', 'Corporación Universitaria Republicana'),
(25317, 21892, 'es', 'name', 'Universidad Israel'),
(25318, 21893, 'en', 'name', 'Tetoora Road Observatory'),
(25319, 21894, 'fi', 'name', 'Tietotalo'),
(25320, 21895, 'es', 'name', 'Centro Universitario Latinoamericano de Morelos'),
(25321, 21896, 'no_lang_code', 'name', 'Microsemi (United Kingdom)'),
(25322, 21897, 'no_lang_code', 'name', 'Vizzuality (Spain)'),
(25323, 21898, 'fr', 'name', 'Observatoire de Dauban'),
(25324, 21899, 'no_lang_code', 'name', 'Trias (Greece)'),
(25325, 21900, 'en', 'name', 'University Center Augusto Motta'),
(25326, 21901, 'no_lang_code', 'name', 'LC Vision (United States)'),
(25327, 21902, 'en', 'name', 'National Society of Black Physicists'),
(25328, 21903, 'en', 'name', 'Wyoming Department of Education'),
(25329, 21904, 'en', 'name', 'Institute of Advanced Studies of Tunis'),
(25330, 21904, 'fr', 'name', 'Institut des Hautes Ɖtudes de Tunis'),
(25331, 21905, 'no_lang_code', 'name', 'Wapice (Finland)'),
(25332, 21906, 'no_lang_code', 'name', 'Northern Technologies International (United States)'),
(25333, 21907, 'en', 'name', 'European Society of Cardiology'),
(25334, 21908, 'en', 'name', 'Northeastern University'),
(25335, 21908, 'es', 'name', 'Universidad del Noreste'),
(25336, 21909, 'en', 'name', 'Canadian Catholic Historical Association'),
(25337, 21910, 'no_lang_code', 'name', 'Solems (France)'),
(25338, 21911, 'es', 'name', 'Universidad de Xalapa'),
(25339, 21912, 'en', 'name', 'Simon Kuznets Kharkiv National University of Economics'),
(25340, 21912, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25341, 21912, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25342, 21913, 'en', 'name', 'HCMC Hospital of Dermato Venereology'),
(25343, 21913, 'vi', 'name', 'Bệnh Viện Da Liį»…u ThĆ nh Phố Hồ ChĆ­ Minh'),
(25344, 21914, 'en', 'name', 'Kwara State Polytechnic'),
(25345, 21915, 'en', 'name', 'National Association of State Departments of Agriculture'),
(25346, 21916, 'es', 'name', 'Instituto de Ciencias Tecnológicas'),
(25347, 21917, 'en', 'name', 'Slovenian Institute for Adult Education'),
(25348, 21918, 'no_lang_code', 'name', 'Protein Metrics (United States)'),
(25349, 21919, 'no_lang_code', 'name', 'Triarii (Netherlands)'),
(25350, 21920, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الدلنج'),
(25351, 21920, 'no_lang_code', 'name', 'Dalanj University'),
(25352, 21921, 'pt', 'name', 'Universidade Zambeze'),
(25353, 21922, 'no_lang_code', 'name', 'Harvard Bioscience (United States)'),
(25354, 21923, 'en', 'name', 'Dartford And Gravesham NHS Trust'),
(25355, 21924, 'fi', 'name', 'Nokian Renkaat'),
(25356, 21924, 'no_lang_code', 'name', 'Nokian Tyres (Finland)'),
(25357, 21925, 'en', 'name', 'St Augustine College of South Africa'),
(25358, 21926, 'es', 'name', 'Universidad Nororiental Privada Gran Mariscal de Ayacucho'),
(25359, 21927, 'no_lang_code', 'name', 'Ai Corporation (United Kingdom)'),
(25360, 21928, 'es', 'name', 'Escuela PolitƩcnica Javeriana del Ecuador'),
(25361, 21929, 'no_lang_code', 'name', 'Souriau (France)'),
(25362, 21930, 'es', 'name', 'Universidad Católica de Santa Fe'),
(25363, 21931, 'es', 'name', 'Universidad Nueva Esparta'),
(25364, 21932, 'en', 'name', 'Society for Science & the Public'),
(25365, 21933, 'no_lang_code', 'name', 'ModellTechnik Rapid Prototyping (Germany)'),
(25366, 21934, 'no_lang_code', 'name', 'Audiprel (Spain)'),
(25367, 21935, 'en', 'name', 'Community Living Welland Pelham'),
(25368, 21936, 'no_lang_code', 'name', 'Plasticell (United Kingdom)'),
(25369, 21937, 'fr', 'name', 'UniversitƩ Simon Kimbangu'),
(25370, 21938, 'es', 'name', 'Universidad de Investigación y Desarrollo, Universitaria de Investigación y Desarrollo'),
(25371, 21939, 'en', 'name', 'Nye Communities Coalition'),
(25372, 21940, 'en', 'name', 'Canadian Evaluation Society'),
(25373, 21940, 'fr', 'name', 'SociƩtƩ Canadienne d''Ʃvaluation'),
(25374, 21941, 'en', 'name', 'Sea Studios Foundation'),
(25375, 21942, 'en', 'name', 'Hinckley and Bosworth Community Hospital'),
(25376, 21943, 'no_lang_code', 'name', 'Sciprom (Switzerland)'),
(25377, 21944, 'en', 'name', 'Ashfield Community Hospital'),
(25378, 21945, 'no_lang_code', 'name', 'NSK (United Kingdom)'),
(25379, 21946, 'no_lang_code', 'name', 'SunPower (Germany)'),
(25380, 21947, 'no_lang_code', 'name', 'Prospektiker (Spain)'),
(25381, 21948, 'en', 'name', 'Philadelphia Education Fund'),
(25382, 21949, 'es', 'name', 'Universidad Autónoma del Pacífico'),
(25383, 21950, 'en', 'name', 'Leicester Frith Hospital'),
(25384, 21951, 'en', 'name', 'Association for Science and Discovery Centres'),
(25385, 21952, 'en', 'name', 'Spire Gatwick Park Hospital'),
(25386, 21953, 'no_lang_code', 'name', 'Edison (Italy)'),
(25387, 21954, 'en', 'name', 'Union University'),
(25388, 21955, 'en', 'name', 'International Maritime University of Panama'),
(25389, 21955, 'es', 'name', 'Universidad MarĆ­tima Internacional de PanamĆ”'),
(25390, 21956, 'en', 'name', 'University of East-West Medicine'),
(25391, 21957, 'no_lang_code', 'name', 'Synthesis and Research (Greece)'),
(25392, 21958, 'no_lang_code', 'name', 'SMART Group (United Kingdom)'),
(25393, 21959, 'en', 'name', 'Seattle Public Schools'),
(25394, 21960, 'no_lang_code', 'name', 'Quretec (Estonia)'),
(25395, 21961, 'en', 'name', 'Newton Community Hospital'),
(25396, 21962, 'no_lang_code', 'name', 'Parker Hannifin (United Kingdom)'),
(25397, 21963, 'en', 'name', 'Suzhou Municipal Hospital'),
(25398, 21963, 'zh', 'name', 'č‹å·žåø‚ē«‹åŒ»é™¢'),
(25399, 21964, 'es', 'name', 'Universidad Americana de Morelos'),
(25400, 21965, 'en', 'name', 'Guangxi Zhuang Autonomous Region Brain Hospital'),
(25401, 21965, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗč„‘ē§‘åŒ»é™¢'),
(25402, 21966, 'no_lang_code', 'name', 'Nexor (United Kingdom)'),
(25403, 21967, 'no_lang_code', 'name', 'Oxford NanoSystems (United Kingdom)'),
(25404, 21968, 'no_lang_code', 'name', 'Syzygy Memory Plastics (United States)'),
(25405, 21969, 'en', 'name', 'Sergio Arboleda University'),
(25406, 21969, 'es', 'name', 'Universidad Sergio Arboleda'),
(25407, 21970, 'en', 'name', 'Kent Community Health NHS Foundation Trust'),
(25408, 21971, 'en', 'name', 'Blackberry Hill Hospital'),
(25409, 21972, 'no_lang_code', 'name', 'TRIM edicine (United States)'),
(25410, 21973, 'en', 'name', 'Daido University'),
(25411, 21973, 'ja', 'name', '大同大学'),
(25412, 21974, 'en', 'name', 'Regional Advisory and Information Centre Presov'),
(25413, 21975, 'en', 'name', 'Possum Observatory'),
(25414, 21976, 'en', 'name', 'Obong University'),
(25415, 21977, 'en', 'name', 'Montfort Hospital'),
(25416, 21977, 'fr', 'name', 'HƓpital Montfort'),
(25417, 21978, 'pt', 'name', 'Centro UniversitƔrio do Espƭrito Santo'),
(25418, 21979, 'en', 'name', 'University Ucinf'),
(25419, 21979, 'es', 'name', 'Universidad Ciencias de la InformƔtica'),
(25420, 21980, 'no_lang_code', 'name', 'Thales (Austria)'),
(25421, 21981, 'en', 'name', 'North Dakota Legislative Council'),
(25422, 21982, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŲ®ŲŖ الرضا'),
(25423, 21982, 'en', 'name', 'University of Bakhtalruda'),
(25424, 21983, 'no_lang_code', 'name', 'Sonic Concepts (United States)'),
(25425, 21984, 'en', 'name', 'National Alliance for Medication Assisted Recovery'),
(25426, 21985, 'en', 'name', 'Canadian Association for Leisure Studies'),
(25427, 21985, 'fr', 'name', 'Association canadienne d''Ʃtudes en loisir'),
(25428, 21986, 'no_lang_code', 'name', 'WS Energia (Portugal)'),
(25429, 21987, 'en', 'name', 'Maryport Victoria Cottage Hospital'),
(25430, 21988, 'no_lang_code', 'name', 'Vallon (Germany)'),
(25431, 21989, 'no_lang_code', 'name', 'Nanonex (United States)'),
(25432, 21990, 'en', 'name', 'North Staffordshire Combined Healthcare NHS Trust'),
(25433, 21991, 'en', 'name', 'International Centre for Comparative Criminology'),
(25434, 21992, 'es', 'name', 'Instituto Profesional La Araucana'),
(25435, 21993, 'en', 'name', 'University of Management and Technology'),
(25436, 21994, 'en', 'name', 'North Seattle College'),
(25437, 21995, 'lt', 'name', 'Aerogeodezijos institutas'),
(25438, 21995, 'no_lang_code', 'name', 'Institute of Aerial Geodesy (Lithuania)'),
(25439, 21996, 'no_lang_code', 'name', 'Nova Medical (United States)'),
(25440, 21997, 'no_lang_code', 'name', 'Nutech Industries (United States)'),
(25441, 21998, 'no_lang_code', 'name', 'Third Eye Diagnostics (United States)'),
(25442, 21999, 'es', 'name', 'Centro Diocesano de Estudio y Reflexión'),
(25443, 22000, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„ŁŁ†ŁˆŁ†ā€Ž'),
(25444, 22000, 'en', 'name', 'Academy of Arts'),
(25445, 22001, 'es', 'name', 'TICBioMed'),
(25446, 22002, 'en', 'name', 'Basildon Hospital'),
(25447, 22003, 'no_lang_code', 'name', 'ValveXchange (United States)'),
(25448, 22004, 'en', 'name', 'The Berkshire Independent Hospital'),
(25449, 22005, 'en', 'name', 'Itami City Hospital'),
(25450, 22005, 'ja', 'name', 'åø‚ē«‹ä¼Šäø¹ē—…é™¢'),
(25451, 22006, 'es', 'name', 'Universidad TajĆ­n'),
(25452, 22007, 'pt', 'name', 'Centro UniversitƔrio de Jales'),
(25453, 22008, 'en', 'name', 'Coleman University'),
(25454, 22009, 'en', 'name', 'Olympic Athletic Center of Athens "Spiros Louis"'),
(25455, 22010, 'en', 'name', 'The Foscote Hospital'),
(25456, 22011, 'fr', 'name', 'SantƩ Mentale au QuƩbec'),
(25457, 22012, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł…Ų­Ł…ŲÆ بوڤرة ŲØŁˆŁ…Ų±ŲÆŲ§Ų³'),
(25458, 22012, 'en', 'name', 'University of Boumerdes'),
(25459, 22013, 'de', 'name', 'Wirtschaftsfƶrderungsinstitut'),
(25460, 22014, 'no_lang_code', 'name', 'Manifattura Italiana del Brembo (Italy)'),
(25461, 22015, 'es', 'name', 'Sociedad Hispano Mundial'),
(25462, 22016, 'en', 'name', 'Alliance for Permanent Access'),
(25463, 22017, 'es', 'name', 'Instituto Universitario Centro de Estudio y Diagnóstico de las Disgnacias del Uruguay'),
(25464, 22018, 'en', 'name', 'Information Technology Foundation for Education'),
(25465, 22019, 'no_lang_code', 'name', 'Tunstall Healthcare (United Kingdom)'),
(25466, 22020, 'en', 'name', 'Mount Meru University'),
(25467, 22021, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© يحي فارس ŲØŲ§Ł„Ł…ŲÆŁŠŲ©'),
(25468, 22021, 'en', 'name', 'University Yahia Fares of Medea'),
(25469, 22022, 'no_lang_code', 'name', 'Serim Research Corporation (United States)'),
(25470, 22023, 'en', 'name', 'BMI The Runnymede Hospital'),
(25471, 22024, 'es', 'name', 'Universidad Liceo Cervantino'),
(25472, 22025, 'en', 'name', 'Rochford Community Hospital'),
(25473, 22026, 'en', 'name', 'Canadian Linguistic Association'),
(25474, 22026, 'fr', 'name', 'Association Canadienne de Linguistique'),
(25475, 22027, 'en', 'name', 'St Helens and Knowsley Teaching Hospitals NHS Trust'),
(25476, 22028, 'es', 'name', 'Universidad Intercultural del Estado de MƩxico'),
(25477, 22029, 'es', 'name', 'Instituto Universitario Italiano de Rosario'),
(25478, 22030, 'no_lang_code', 'name', 'Transpire (United States)'),
(25479, 22031, 'en', 'name', 'St. Albans School'),
(25480, 22032, 'no_lang_code', 'name', 'First Innovation Park'),
(25481, 22033, 'no_lang_code', 'name', 'Xandem Technology (United States)'),
(25482, 22034, 'es', 'name', 'Corporación Universitaria Rafael Nuñez'),
(25483, 22035, 'es', 'name', 'Instituto Profesional Diego Portales'),
(25484, 22036, 'no_lang_code', 'name', 'Vitas (Norway)'),
(25485, 22037, 'en', 'name', 'Rocky Mountain Virology Club'),
(25486, 22038, 'no_lang_code', 'name', 'Mark Group (United Kingdom)'),
(25487, 22039, 'en', 'name', 'Ohio County Together We Care Coalition'),
(25488, 22040, 'en', 'name', 'Duchy Hospital'),
(25489, 22041, 'no_lang_code', 'name', 'Planet'),
(25490, 22042, 'no_lang_code', 'name', 'Siet (Italy)'),
(25491, 22043, 'no_lang_code', 'name', 'Polyraz (Israel)'),
(25492, 22044, 'en', 'name', 'Nevada PEP'),
(25493, 22045, 'en', 'name', 'Museum of New Mexico'),
(25494, 22046, 'no_lang_code', 'name', 'Tigerlily Films (United Kingdom)'),
(25495, 22047, 'en', 'name', 'Science Fair Foundation of BC'),
(25496, 22048, 'no_lang_code', 'name', 'Peraso Technologies (Canada)'),
(25497, 22049, 'no_lang_code', 'name', 'J.Schneeberger Maschinen (Switzerland)'),
(25498, 22050, 'no_lang_code', 'name', 'X Flow (Netherlands)'),
(25499, 22051, 'en', 'name', 'Leigh House Hospital'),
(25500, 22052, 'en', 'name', 'Modern Academy'),
(25501, 22053, 'no_lang_code', 'name', 'Modern Water (United Kingdom)'),
(25502, 22054, 'no_lang_code', 'name', 'Verisante Technology (Canada)'),
(25503, 22055, 'no_lang_code', 'name', 'Xeros Technologies (United Kingdom)'),
(25504, 22056, 'es', 'name', 'Instituto Universitario Franco InglƩs de MƩxico'),
(25505, 22057, 'en', 'name', 'Kelling Hospital'),
(25506, 22058, 'es', 'name', 'Universidad Americana'),
(25507, 22059, 'no_lang_code', 'name', 'Sauf Consulting'),
(25508, 22060, 'en', 'name', 'John F. Kennedy Center for the Performing Arts'),
(25509, 22061, 'no_lang_code', 'name', 'Tribosonics (United Kingdom)'),
(25510, 22062, 'no_lang_code', 'name', 'Southern Biotechnology Associates'),
(25511, 22063, 'en', 'name', 'Canadian Association for the Advancement of Netherlandic Studies'),
(25512, 22063, 'fr', 'name', 'Association Canadienne pour l''Avancement des Ʃtudes NƩerlandaises'),
(25513, 22064, 'no_lang_code', 'name', 'NetSmart (Greece)'),
(25514, 22065, 'en', 'name', 'Safe Drinking Water Foundation'),
(25515, 22066, 'en', 'name', 'Mauritius Institute of Education'),
(25516, 22067, 'es', 'name', 'Universidad del Valle de Toluca'),
(25517, 22068, 'en', 'name', 'Guangxi University of Science and Technology'),
(25518, 22068, 'zh', 'name', 'å¹æč„æē§‘ęŠ€å¤§å­¦'),
(25519, 22069, 'fr', 'name', 'Institut SupƩrieur de Gestion des Entreprises'),
(25520, 22070, 'pt', 'name', 'Madeira Tecnopolo'),
(25521, 22071, 'no_lang_code', 'name', 'Rohrer (Switzerland)'),
(25522, 22072, 'es', 'name', 'Universidad Católica de Honduras Nuestra Señora Reina de la Paz'),
(25523, 22073, 'en', 'name', 'Penrith Community Hospital'),
(25524, 22074, 'no_lang_code', 'name', 'Trimek (Spain)'),
(25525, 22075, 'en', 'name', 'University of Livingstonia'),
(25526, 22076, 'en', 'name', 'University Pathologists'),
(25527, 22077, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų·ŁŠŲØŁ‡'),
(25528, 22077, 'en', 'name', 'Thebes Academy'),
(25529, 22078, 'en', 'name', 'Geoscience and Marine Research & Consulting'),
(25530, 22078, 'pl', 'name', 'Przedsiębiorstwo Badań i Doradztwa'),
(25531, 22079, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(25532, 22079, 'en', 'name', 'Sudan University of Science and Technology'),
(25533, 22080, 'es', 'name', 'Universidad Interamericana'),
(25534, 22081, 'ar', 'name', 'المدرسة Ų§Ł„Ł…ŲŖŁˆŲ³Ų·ŁŠŲ© للأعمال'),
(25535, 22081, 'en', 'name', 'Mediterranean School of Business'),
(25536, 22082, 'no_lang_code', 'name', 'SP Group (Denmark)'),
(25537, 22083, 'en', 'name', 'Wisconsin Department of Public Instruction'),
(25538, 22084, 'no_lang_code', 'name', 'Smart Reamer Drilling Systems (United Kingdom)'),
(25539, 22085, 'fr', 'name', 'Institut des Hautes Ɖtudes Commerciales et Ɖconomiques'),
(25540, 22086, 'fr', 'name', 'UniversitƩ Roi Henri Christophe'),
(25541, 22087, 'no_lang_code', 'name', 'Separation Design Group'),
(25542, 22088, 'ja', 'name', 'č–éš·ä½å€‰åø‚ę°‘ē—…é™¢'),
(25543, 22088, 'no_lang_code', 'name', 'Seirei Sakura Citizen Hospital'),
(25544, 22089, 'no_lang_code', 'name', 'Sembiosys Genetics (Canada)'),
(25545, 22090, 'no_lang_code', 'name', 'Yole DƩveloppement (France)'),
(25546, 22091, 'no_lang_code', 'name', 'PFP Cybersecurity (United States)'),
(25547, 22092, 'en', 'name', 'Red Crow Community College'),
(25548, 22093, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ لل؄حصاؔ ŁˆŲ§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŲ§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠ'),
(25549, 22093, 'fr', 'name', 'Institut National de Statistique et d''Economie AppliquƩe'),
(25550, 22094, 'no_lang_code', 'name', 'AstenJohnson (Belgium)'),
(25551, 22095, 'fr', 'name', 'Ɖcole Nationale de Management et de l''Administration de la SantĆ©'),
(25552, 22096, 'en', 'name', 'Polaris Observatory Association'),
(25553, 22097, 'es', 'name', 'Instituto Profesional Eatri'),
(25554, 22098, 'en', 'name', 'Lipscomb University'),
(25555, 22099, 'en', 'name', 'White Balance Projects Pool Agency'),
(25556, 22100, 'en', 'name', 'Bridgnorth Community Hospital'),
(25557, 22101, 'pt', 'name', 'Universidade Independente de Angola'),
(25558, 22102, 'en', 'name', 'Gardner–Webb University'),
(25559, 22103, 'en', 'name', 'Iberoamerican University'),
(25560, 22103, 'es', 'name', 'Universidad de IberoamƩrica'),
(25561, 22104, 'en', 'name', 'North Central University'),
(25562, 22105, 'no_lang_code', 'name', 'Mobics (Greece)'),
(25563, 22106, 'es', 'name', 'Consorcio Educativo Oxford'),
(25564, 22107, 'en', 'name', 'Priory Hospital Cheadle Royal'),
(25565, 22108, 'es', 'name', 'Centro Universitario Oriente de MƩxico'),
(25566, 22109, 'no_lang_code', 'name', 'ScanArc Plasma Technologies (Sweden)'),
(25567, 22110, 'no_lang_code', 'name', 'Narco Freedom (United States)'),
(25568, 22111, 'en', 'name', 'Swedish Chemicals Agency'),
(25569, 22112, 'en', 'name', 'Sheppey Community Hospital'),
(25570, 22113, 'es', 'name', 'Universidad Nacional Abierta'),
(25571, 22114, 'no_lang_code', 'name', 'Predict (France)'),
(25572, 22115, 'no_lang_code', 'name', 'Oliver Crispin Robotics (United Kingdom)'),
(25573, 22116, 'en', 'name', 'Musicians Union'),
(25574, 22117, 'no_lang_code', 'name', 'WIGeoGIS (Austria)'),
(25575, 22118, 'en', 'name', 'Canadian Society for Mesopotamian Studies'),
(25576, 22118, 'fr', 'name', 'SociƩtƩ Canadienne des Etudes MƩsopotamiennes'),
(25577, 22119, 'no_lang_code', 'name', 'Q linea (Sweden)'),
(25578, 22120, 'en', 'name', 'St. Leonards Hospital'),
(25579, 22121, 'en', 'name', 'Jorge Amado University Center'),
(25580, 22121, 'pt', 'name', 'Centro UniversitƔrio Jorge Amado'),
(25581, 22122, 'en', 'name', 'Sage Colleges'),
(25582, 22123, 'no_lang_code', 'name', 'SweTree Technologies (Sweden)'),
(25583, 22124, 'en', 'name', 'Matsubara Mayflower Hospital'),
(25584, 22124, 'ja', 'name', 'ę¾åŽŸćƒ”ć‚¤ćƒ•ćƒ©ćƒÆćƒ¼ē—…'),
(25585, 22125, 'en', 'name', 'Nebraska Educational Telecommunications'),
(25586, 22126, 'en', 'name', 'National Research University of Electronic Technology'),
(25587, 22126, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ МИЭТ'),
(25588, 22127, 'en', 'name', 'North Hennepin Community College'),
(25589, 22128, 'no_lang_code', 'name', 'Peacocks Medical Group (United Kingdom)'),
(25590, 22129, 'no_lang_code', 'name', 'Spree NDT'),
(25591, 22130, 'no_lang_code', 'name', 'Veiki-VNL (Hungary)'),
(25592, 22131, 'en', 'name', 'International Medical and Technological University'),
(25593, 22132, 'no_lang_code', 'name', 'THINK3 (France)'),
(25594, 22133, 'no_lang_code', 'name', 'OneSource (Portugal)'),
(25595, 22134, 'pt', 'name', 'Centro UniversitÔrio Belas Artes de São Paulo'),
(25596, 22135, 'pt', 'name', 'Universidade de Sorocaba'),
(25597, 22136, 'no_lang_code', 'name', 'Visual Dimension (Belgium)'),
(25598, 22137, 'en', 'name', 'Open Data Institute'),
(25599, 22138, 'de', 'name', 'Institut für Kooperationsmanagement und interdisziplinäre Forschung'),
(25600, 22138, 'en', 'name', 'Nexus Institute for Cooperation Management and Interdisciplinary Research'),
(25601, 22139, 'es', 'name', 'Universidad de Flores'),
(25602, 22140, 'en', 'name', 'United States Conference of Mayors'),
(25603, 22141, 'en', 'name', 'Longridge Community Hospital'),
(25604, 22142, 'en', 'name', 'Slovak Business Agency'),
(25605, 22143, 'en', 'name', 'Queen''s Hospital'),
(25606, 22144, 'en', 'name', 'Quest University Canada'),
(25607, 22145, 'en', 'name', 'Pudong New Area People''s Hospital'),
(25608, 22146, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes en IngĆ©nierie des SystĆØmes d''Information'),
(25609, 22147, 'no_lang_code', 'name', 'T-Connect (Italy)'),
(25610, 22148, 'fr', 'name', 'Ɖcole Polytechnique d''Architecture et d''Urbanisme'),
(25611, 22149, 'no_lang_code', 'name', 'Nanogap Sub-NM-Powder (Spain)'),
(25612, 22150, 'en', 'name', 'Kaili University'),
(25613, 22150, 'zh', 'name', 'å‡Æé‡Œå­¦é™¢'),
(25614, 22151, 'es', 'name', 'Universidad de las AmƩricas'),
(25615, 22152, 'ar', 'name', 'الجامعة Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠŲ© الخاصة'),
(25616, 22152, 'fr', 'name', 'UniversitƩ Centrale de Tunis'),
(25617, 22153, 'en', 'name', 'Zambia Centre for Accountancy Studies'),
(25618, 22154, 'en', 'name', 'Naval Aeronautical and Astronautical University'),
(25619, 22154, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›čˆŖē©ŗå·„ēØ‹å­¦é™¢'),
(25620, 22155, 'en', 'name', 'Dartmouth Hospital'),
(25621, 22156, 'no_lang_code', 'name', 'Polyphotonix (United Kingdom)'),
(25622, 22157, 'en', 'name', 'Oceanites'),
(25623, 22158, 'en', 'name', 'Dongguk University Los Angeles'),
(25624, 22159, 'no_lang_code', 'name', 'Simcyp (United Kingdom)'),
(25625, 22160, 'en', 'name', 'Lancashire Teaching Hospitals NHS Foundation Trust'),
(25626, 22161, 'no_lang_code', 'name', 'Alu-Releco Oy (Finland)'),
(25627, 22162, 'no_lang_code', 'name', 'Voicekey (United Kingdom)'),
(25628, 22163, 'no_lang_code', 'name', 'Phil Jones Associates (United Kingdom)'),
(25629, 22164, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ© Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(25630, 22164, 'en', 'name', 'German Jordanian University'),
(25631, 22165, 'en', 'name', 'Upper Iowa University'),
(25632, 22166, 'en', 'name', 'St Ann''s Hospital'),
(25633, 22167, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„ŲØŁŠŲ·Ų±Ų©'),
(25634, 22167, 'en', 'name', 'Higher National Veterinary School'),
(25635, 22168, 'en', 'name', 'St. John''s University of Tanzania'),
(25636, 22168, 'sw', 'name', 'Chuo Kikuu cha Mtakatifu Yohana Tanzania'),
(25637, 22169, 'it', 'name', 'Ospedale Madonna Delle Grazie'),
(25638, 22170, 'no_lang_code', 'name', 'Vixar (United States)'),
(25639, 22171, 'no_lang_code', 'name', 'NorChip (Norway)'),
(25640, 22172, 'en', 'name', 'South Tees Hospitals NHS Foundation Trust'),
(25641, 22173, 'en', 'name', 'North Walsham and District War Memorial Hospital'),
(25642, 22174, 'en', 'name', 'St Mary''s Hospital'),
(25643, 22175, 'no_lang_code', 'name', 'Vamp Tech (Italy)'),
(25644, 22176, 'fr', 'name', 'Institut Universitaire Siantou'),
(25645, 22177, 'en', 'name', 'Ida Darwin hospital'),
(25646, 22178, 'en', 'name', 'Management and Development for Health'),
(25647, 22179, 'nl', 'name', 'Stichting Technisch Centrum vd Keramische Industrie'),
(25648, 22180, 'no_lang_code', 'name', 'Tecmic (Portugal)'),
(25649, 22181, 'no_lang_code', 'name', 'RJ Lee Group (United States)'),
(25650, 22182, 'en', 'name', 'Guadarrama Observatory'),
(25651, 22183, 'ca', 'name', 'Hospital General de Catalunya'),
(25652, 22184, 'en', 'name', 'Marketing Science Institute'),
(25653, 22185, 'en', 'name', 'Society of Nuclear Medicine and Molecular Imaging'),
(25654, 22186, 'es', 'name', 'Universidad Rural de Guatemala'),
(25655, 22187, 'es', 'name', 'Universidad Metropolitana del Centro'),
(25656, 22188, 'fr', 'name', 'UniversitƩ Protestante de Lubumbashi'),
(25657, 22189, 'no_lang_code', 'name', 'Sherbrooke Innopole (Canada)'),
(25658, 22190, 'no_lang_code', 'name', 'TLS Technik Spezialpulver (Germany)'),
(25659, 22191, 'en', 'name', 'Kim Il-sung University'),
(25660, 22191, 'ko', 'name', 'ź¹€ģ¼ģ„±ģ¢…ķ•©ėŒ€ķ•™'),
(25661, 22192, 'en', 'name', 'Marine Scotland'),
(25662, 22193, 'es', 'name', 'Universidad de la Sierra'),
(25663, 22194, 'en', 'name', 'Falmouth Community Hospital'),
(25664, 22195, 'no_lang_code', 'name', 'Wittmann (Austria)'),
(25665, 22196, 'no_lang_code', 'name', 'Siemens (Greece)'),
(25666, 22197, 'fr', 'name', 'Institut des Hautes Ɖtudes Bancaires, FinanciĆØres et ManagĆ©riale'),
(25667, 22198, 'es', 'name', 'Universidad Alfred Nobel de Mexico'),
(25668, 22199, 'no_lang_code', 'name', 'Photonic Knowledge (Canada)'),
(25669, 22200, 'no_lang_code', 'name', 'Paradigm Pharmaceuticals (United States)'),
(25670, 22201, 'en', 'name', 'Newcastle Dental Hospital'),
(25671, 22202, 'no_lang_code', 'name', 'Pacific Insight Electronics (Canada)'),
(25672, 22203, 'en', 'name', 'American University of Nigeria'),
(25673, 22204, 'no_lang_code', 'name', 'Superform (United Kingdom)'),
(25674, 22205, 'en', 'name', 'University of Philosophical Research'),
(25675, 22206, 'no_lang_code', 'name', 'Videometer (Denmark)'),
(25676, 22207, 'en', 'name', 'Canada Council for the Arts'),
(25677, 22207, 'fr', 'name', 'Conseil des Arts du Canada'),
(25678, 22208, 'en', 'name', 'Children''s Society'),
(25679, 22209, 'en', 'name', 'Voronezh State Pedagogical University'),
(25680, 22209, 'ru', 'name', 'Воронежский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25681, 22210, 'no_lang_code', 'name', 'National Electric Vehicle Sweden (Sweden)'),
(25682, 22211, 'no_lang_code', 'name', 'RTZ Associates (United States)'),
(25683, 22212, 'en', 'name', 'Anton de Kom University of Suriname'),
(25684, 22212, 'nl', 'name', 'Anton de Kom Universiteit van Suriname'),
(25685, 22213, 'no_lang_code', 'name', 'Polykemi (Sweden)'),
(25686, 22214, 'no_lang_code', 'name', 'QuSpin (United States)'),
(25687, 22215, 'es', 'name', 'Universidad Latina de MƩxico'),
(25688, 22216, 'en', 'name', 'Canadian Society of Church History'),
(25689, 22216, 'fr', 'name', 'SociĆ©tĆ© Canadienne d’Histoire de l’Eglise'),
(25690, 22217, 'no_lang_code', 'name', 'Optivision (United States)'),
(25691, 22218, 'en', 'name', 'Guest Hospital'),
(25692, 22219, 'en', 'name', 'Students on Ice'),
(25693, 22220, 'en', 'name', 'Positive Impact'),
(25694, 22221, 'no_lang_code', 'name', 'Tetra Therapeutics (United States)'),
(25695, 22222, 'no_lang_code', 'name', 'Precical (Belgium)'),
(25696, 22223, 'en', 'name', 'NewOpera'),
(25697, 22224, 'no_lang_code', 'name', 'Velcura Therapeutics (United States)'),
(25698, 22225, 'en', 'name', 'Experimental Station for the Industry of the Essential Oils and Citrus Products'),
(25699, 22225, 'it', 'name', 'Stazione Sperimentale per le Industrie delle Essenze e dei Derivati dagli Agrumi'),
(25700, 22226, 'en', 'name', 'Technopolis'),
(25701, 22227, 'en', 'name', 'Govind Ballabh Pant University of Agriculture and Technology'),
(25702, 22227, 'hi', 'name', 'ą¤—ą„‹ą¤µą¤æą¤Øą„ą¤¦ ą¤¬ą¤²ą„ą¤²ą¤­ ą¤Ŗą¤Øą„ą¤¤ ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25703, 22228, 'no_lang_code', 'name', 'Siemens (Netherlands)'),
(25704, 22229, 'no_lang_code', 'name', 'Aqua Metrology Systems (United States)'),
(25705, 22230, 'no_lang_code', 'name', 'Ivchenko Progress (Ukraine)'),
(25706, 22230, 'uk', 'name', 'Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠµ Š¼Š°ŃˆŠøŠ½Š¾Š±ŃƒŠ“Ń–Š²Š½Šµ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŃŒŠŗŠµ Š±ŃŽŃ€Š¾'),
(25707, 22231, 'en', 'name', 'Pinal Hispanic Council'),
(25708, 22232, 'en', 'name', 'Holmevalley Memorial Hospital'),
(25709, 22233, 'en', 'name', 'University of Argentine Social Museum'),
(25710, 22233, 'es', 'name', 'Universidad del Museo Social Argentino'),
(25711, 22234, 'en', 'name', 'Adventist University of Central Africa'),
(25712, 22234, 'fr', 'name', 'Universite Adventiste d''Afrique Central'),
(25713, 22235, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(25714, 22235, 'en', 'name', 'Open University of Sudan'),
(25715, 22236, 'en', 'name', 'BMI The Highfield Hospital'),
(25716, 22237, 'no_lang_code', 'name', 'OXGENE (United Kingdom)'),
(25717, 22238, 'no_lang_code', 'name', 'Sciences Computers Consultants (France)'),
(25718, 22239, 'no_lang_code', 'name', 'Planer (United Kingdom)'),
(25719, 22240, 'en', 'name', 'Monroe County Department of Public Health'),
(25720, 22241, 'fr', 'name', 'UniversitƩ des Sciences et de la Technologie d''Oran Mohamed Boudiaf'),
(25721, 22242, 'da', 'name', 'Thomas B Thriges Fond'),
(25722, 22243, 'en', 'name', 'Westhaven Hospital'),
(25723, 22244, 'en', 'name', 'Queens University of Charlotte'),
(25724, 22245, 'en', 'name', 'Simón Bolívar University'),
(25725, 22245, 'es', 'name', 'Universidad Simón Bolívar'),
(25726, 22246, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes Commerciales Techniques et Informatiques'),
(25727, 22247, 'es', 'name', 'Universidad Tecnológica Indoamérica'),
(25728, 22248, 'es', 'name', 'Unión Americana de Educación Superior'),
(25729, 22249, 'es', 'name', 'Corporación Universitaria Reformada'),
(25730, 22250, 'ar', 'name', 'معهد Ų§Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(25731, 22250, 'en', 'name', 'Arab Studies and Research Institute'),
(25732, 22251, 'en', 'name', 'Ohio Christian University'),
(25733, 22252, 'es', 'name', 'Universidad del Cine'),
(25734, 22253, 'no_lang_code', 'name', 'Groupe Lacroix (France)'),
(25735, 22254, 'no_lang_code', 'name', 'Federal Polytechnic Nekede'),
(25736, 22255, 'en', 'name', 'Council of Canadians with Disabilities'),
(25737, 22256, 'en', 'name', 'Olathe Public Schools'),
(25738, 22257, 'en', 'name', 'Oaklands Hospital'),
(25739, 22258, 'no_lang_code', 'name', 'Solagro'),
(25740, 22259, 'es', 'name', 'Universidad Mexicana'),
(25741, 22260, 'es', 'name', 'Corporación Universitaria Cenda'),
(25742, 22261, 'en', 'name', 'Spire Wellesley Hospital'),
(25743, 22262, 'en', 'name', 'Siena Heights University'),
(25744, 22263, 'es', 'name', 'Universidad Tecnológica Iberoamericana'),
(25745, 22264, 'no_lang_code', 'name', 'Research Detectors (United States)'),
(25746, 22265, 'no_lang_code', 'name', 'Ori Martin (Italy)'),
(25747, 22266, 'no_lang_code', 'name', 'Spirent Communications (United Kingdom)'),
(25748, 22267, 'en', 'name', 'North-Eastern Federal University'),
(25749, 22267, 'ru', 'name', 'Деверо-Восточный Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(25750, 22268, 'es', 'name', 'Universidad AnƔhuac Puebla'),
(25751, 22269, 'en', 'name', 'University for International Integration of the Afro-Brazilian Lusophony'),
(25752, 22269, 'pt', 'name', 'Universidade da Integração Internacional da Lusofonia Afro-Brasileira'),
(25753, 22270, 'en', 'name', 'Nexus Research'),
(25754, 22271, 'ar', 'name', 'المعهد Ų§Ł„Ł…Ł„ŁƒŁŠ Ł„ŲŖŁƒŁˆŁŠŁ† Ų£Ų·Ų± Ų§Ł„Ų“ŲØŁŠŲØŲ© و Ų§Ł„Ų±ŁŠŲ§Ų¶Ų©'),
(25755, 22271, 'fr', 'name', 'Institut Royal de Formation des Cadres de la Jeunesse et des Sports'),
(25756, 22272, 'no_lang_code', 'name', 'Saturn Bioponics (United Kingdom)'),
(25757, 22273, 'en', 'name', 'Richardson Hospital'),
(25758, 22274, 'en', 'name', 'Stockport Metropolitan Borough Council'),
(25759, 22275, 'es', 'name', 'Universidad Gestalt'),
(25760, 22276, 'no_lang_code', 'name', 'Sunfire (Germany)'),
(25761, 22277, 'no_lang_code', 'name', 'Norwegian Veterinary Centre for Contract Research and Commercial Services'),
(25762, 22278, 'no_lang_code', 'name', 'SPTS Technologies (United Kingdom)'),
(25763, 22279, 'es', 'name', 'Universidad del Altiplano'),
(25764, 22280, 'en', 'name', 'Westmorland General Hospital'),
(25765, 22281, 'no_lang_code', 'name', 'Samputensili (Italy)'),
(25766, 22282, 'no_lang_code', 'name', 'Etegent Technologies (United States)'),
(25767, 22283, 'pt', 'name', 'Centro UniversitÔrio Fundação Santo André'),
(25768, 22284, 'no_lang_code', 'name', 'Trivisio Prototyping (Germany)'),
(25769, 22285, 'no_lang_code', 'name', 'Wetlands Incubator (Belgium)'),
(25770, 22286, 'no_lang_code', 'name', 'Prosys (Germany)'),
(25771, 22287, 'de', 'name', 'RWI – Leibniz-Institut für Wirtschaftsforschung'),
(25772, 22287, 'en', 'name', 'RWI – Leibniz Institute for Economic Research'),
(25773, 22288, 'en', 'name', 'Horncastle War Memorial Hospital'),
(25774, 22289, 'no_lang_code', 'name', 'TomTom (Germany)'),
(25775, 22290, 'pl', 'name', 'Urząd Miasta Krakowa'),
(25776, 22291, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للهندسة'),
(25777, 22291, 'en', 'name', 'Higher Institute of Engineering'),
(25778, 22292, 'no_lang_code', 'name', 'OyaGen (United States)'),
(25779, 22293, 'es', 'name', 'Universidad Católica de Oriente'),
(25780, 22294, 'en', 'name', 'United Way of Yellowstone County'),
(25781, 22295, 'en', 'name', 'Chengdu Second People''s Hospital'),
(25782, 22295, 'zh', 'name', 'ęˆéƒ½åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(25783, 22296, 'en', 'name', 'Bodmin Hospital'),
(25784, 22297, 'no_lang_code', 'name', 'Materialise (Germany)'),
(25785, 22298, 'es', 'name', 'Instituto Barraquer de AmƩrica'),
(25786, 22299, 'pt', 'name', 'Centro Regional UniversitƔrio de Espƭrito Santo do Pinhal'),
(25787, 22300, 'en', 'name', 'Colorado Women''s College'),
(25788, 22301, 'no_lang_code', 'name', 'Tordivel (Norway)'),
(25789, 22302, 'en', 'name', 'Transnational Family Research Institute'),
(25790, 22303, 'en', 'name', 'Briercrest College and Seminary'),
(25791, 22304, 'es', 'name', 'Instituto Universitario de Oaxaca'),
(25792, 22305, 'no_lang_code', 'name', 'Solari (Italy)'),
(25793, 22306, 'en', 'name', 'San Mateo County Human Services'),
(25794, 22307, 'es', 'name', 'Universidad TƩcnica de Manabƭ'),
(25795, 22308, 'en', 'name', 'Services, Industrial, Professional and Technical Union'),
(25796, 22309, 'en', 'name', 'Office of the Bronx District Attorney'),
(25797, 22310, 'fr', 'name', 'UniversitƩ de Moundou'),
(25798, 22311, 'no_lang_code', 'name', 'Safran (Germany)'),
(25799, 22312, 'no_lang_code', 'name', 'OceanWaveS (Germany)'),
(25800, 22313, 'en', 'name', 'Mzumbe University'),
(25801, 22313, 'sw', 'name', 'Chuo Kikuu cha Mzumbe'),
(25802, 22314, 'en', 'name', 'Women''s Health In Women''s Hands'),
(25803, 22315, 'fr', 'name', 'Centre Hospitalier de Valence'),
(25804, 22316, 'fr', 'name', 'Centre Hospitalier AndrƩe Rosemon'),
(25805, 22317, 'no_lang_code', 'name', 'Mobilaps (United States)'),
(25806, 22318, 'no_lang_code', 'name', 'WheelRight (United Kingdom)'),
(25807, 22319, 'en', 'name', 'Columbia Southern University'),
(25808, 22320, 'no_lang_code', 'name', 'Monition (United Kingdom)'),
(25809, 22321, 'no_lang_code', 'name', 'Chiang Mai Rajabhat University'),
(25810, 22321, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(25811, 22322, 'no_lang_code', 'name', 'STC Group (Netherlands)'),
(25812, 22323, 'es', 'name', 'Universidad Autónoma Juan Misael Saracho'),
(25813, 22324, 'en', 'name', 'Bisei Astronomical Observatory'),
(25814, 22325, 'en', 'name', 'Market Drayton Cottage Hospital'),
(25815, 22326, 'es', 'name', 'Instituto Profesional de Chile'),
(25816, 22327, 'en', 'name', 'Yancheng First People''s Hospital'),
(25817, 22327, 'zh', 'name', 'ē›åŸŽåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(25818, 22328, 'no_lang_code', 'name', 'Ghana Christian University College'),
(25819, 22329, 'en', 'name', 'Middlesex Community College'),
(25820, 22330, 'en', 'name', 'Scottsdale Community College'),
(25821, 22331, 'en', 'name', 'University of Minnesota Rochester'),
(25822, 22332, 'no_lang_code', 'name', 'RheoSense (United States)'),
(25823, 22333, 'fr', 'name', 'Institut SupĆ©rieur des Sciences de l''Ɖducation de GuinĆ©e'),
(25824, 22334, 'no_lang_code', 'name', 'Abzena (United Kingdom)'),
(25825, 22335, 'es', 'name', 'Universidad Nacional de Ucayali'),
(25826, 22336, 'en', 'name', 'Science and Technology Interactive Center'),
(25827, 22337, 'fr', 'name', 'Institut National de la Jeunesse et des Sports'),
(25828, 22338, 'en', 'name', 'Nesta'),
(25829, 22339, 'pt', 'name', 'Universidade Santa CecĆ­lia'),
(25830, 22340, 'no_lang_code', 'name', 'Descartes (Belgium)'),
(25831, 22341, 'no_lang_code', 'name', 'Development Delivery International'),
(25832, 22342, 'no_lang_code', 'name', 'Melexis (Germany)'),
(25833, 22343, 'es', 'name', 'Universidad de Puebla'),
(25834, 22344, 'en', 'name', 'Water Authority of Jordan'),
(25835, 22345, 'en', 'name', 'Society for the Study of Architecture in Canada'),
(25836, 22345, 'fr', 'name', 'SociĆ©tĆ© pour l''Ɖtude de l''Architecture au Canada'),
(25837, 22346, 'en', 'name', 'East and North Hertfordshire NHS Trust'),
(25838, 22347, 'no_lang_code', 'name', 'Trusted Positioning (Canada)'),
(25839, 22348, 'es', 'name', 'Universidad Cristóbal Colón'),
(25840, 22349, 'en', 'name', 'Swedish Maritime Administration'),
(25841, 22349, 'sv', 'name', 'Sjofartsverket'),
(25842, 22350, 'en', 'name', 'Workington Community Hospital'),
(25843, 22351, 'en', 'name', 'Agricultural University of Havana'),
(25844, 22352, 'en', 'name', 'Projects in Motion'),
(25845, 22353, 'no_lang_code', 'name', 'Prosolia (United States)'),
(25846, 22354, 'es', 'name', 'Universidad Pontificia de MƩxico'),
(25847, 22355, 'no_lang_code', 'name', 'Tracasa (Spain)'),
(25848, 22356, 'no_lang_code', 'name', 'Techin (Poland)'),
(25849, 22357, 'my', 'name', 'ရန်ကုန် နား နှာခေါင်း į€œį€Šį€ŗį€į€»į€±į€¬į€„į€ŗį€ø ဆေးရုံ'),
(25850, 22357, 'no_lang_code', 'name', 'Yangon ENT Hospital'),
(25851, 22358, 'en', 'name', 'Harplands Hospital'),
(25852, 22359, 'en', 'name', 'National Medical Association'),
(25853, 22360, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© زنجبار'),
(25854, 22360, 'en', 'name', 'Zanzibar University'),
(25855, 22360, 'sw', 'name', 'Chuo Kikuu cha Zanzibar'),
(25856, 22361, 'pt', 'name', 'Universidade SĆ£o Marcos'),
(25857, 22362, 'en', 'name', 'University of Rio Grande and Rio Grande Community College'),
(25858, 22363, 'no_lang_code', 'name', 'Future Electronics (Netherlands)'),
(25859, 22364, 'no_lang_code', 'name', 'MIL Corporation (United States)'),
(25860, 22365, 'en', 'name', 'Mongolian University of Science and Technology'),
(25861, 22365, 'mn', 'name', 'ŠØŠøŠ½Š¶Š»ŃŃ… Ухаан Технологийн Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(25862, 22366, 'no_lang_code', 'name', 'Pharmaplant (Germany)'),
(25863, 22367, 'es', 'name', 'Universidad de los Hemisferios'),
(25864, 22368, 'no_lang_code', 'name', 'Northrop Grumman (Norway)'),
(25865, 22369, 'no_lang_code', 'name', 'SokolovskĆ” UhelnĆ” (Czechia)'),
(25866, 22370, 'no_lang_code', 'name', 'Micro Systems Engineering (Germany)'),
(25867, 22371, 'en', 'name', 'Southwold Hospital'),
(25868, 22372, 'en', 'name', 'Norwegian Water Resources and Energy Directorate'),
(25869, 22373, 'no_lang_code', 'name', 'Positive Action'),
(25870, 22374, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأهرام Ų§Ł„ŁƒŁ†ŲÆŁŠŲ©'),
(25871, 22374, 'en', 'name', 'Ahram Canadian University');
INSERT INTO `ror_settings` VALUES
(25872, 22375, 'no_lang_code', 'name', 'Procarta Biosystems (United Kingdom)'),
(25873, 22376, 'es', 'name', 'Universidad Anglohispanomexicana'),
(25874, 22377, 'en', 'name', 'Aryabhatta Research Institute of Observational Sciences'),
(25875, 22378, 'no_lang_code', 'name', 'SoilVision Systems (Canada)'),
(25876, 22379, 'en', 'name', 'Icesi University'),
(25877, 22379, 'es', 'name', 'Universidad Icesi'),
(25878, 22380, 'no_lang_code', 'name', 'Pulsotronic (Germany)'),
(25879, 22381, 'en', 'name', 'Ontario Aggregate Resources Corporation'),
(25880, 22382, 'no_lang_code', 'name', 'Teem Photonics (France)'),
(25881, 22383, 'en', 'name', 'Odyssey House'),
(25882, 22384, 'no_lang_code', 'name', 'Sony (Sweden)'),
(25883, 22385, 'no_lang_code', 'name', 'Release Mobile (United Kingdom)'),
(25884, 22386, 'en', 'name', 'University of the Cloister of Sor Juana'),
(25885, 22386, 'es', 'name', 'Universidad del Claustro de Sor Juana'),
(25886, 22387, 'no_lang_code', 'name', 'SĆØleco (Italy)'),
(25887, 22388, 'no_lang_code', 'name', 'Photon Design (United Kingdom)'),
(25888, 22389, 'en', 'name', 'Lambert Memorial Community Hospital'),
(25889, 22390, 'en', 'name', 'Regent University College of Science and Technology'),
(25890, 22391, 'en', 'name', 'Clitheroe Community Hospital'),
(25891, 22392, 'en', 'name', 'Statistical Office of the Republic of Slovenia'),
(25892, 22393, 'en', 'name', 'Quisqueya University'),
(25893, 22393, 'fr', 'name', 'UniversitƩ Quisqueya'),
(25894, 22394, 'en', 'name', 'Bugema University'),
(25895, 22395, 'no_lang_code', 'name', 'Virtual Corporation (United States)'),
(25896, 22396, 'en', 'name', 'Pan-Atlantic University'),
(25897, 22397, 'en', 'name', 'Conservatory of Tolima'),
(25898, 22397, 'es', 'name', 'Conservatorio del Tolima'),
(25899, 22398, 'fr', 'name', 'Ɖcole Inter-Ɖtats des Sciences et MĆ©decine VĆ©tĆ©rinaires de Dakar'),
(25900, 22399, 'fi', 'name', 'PƤijƤt-HƤmeen Keskussairaala'),
(25901, 22400, 'no_lang_code', 'name', 'NetUnion (Switzerland)'),
(25902, 22401, 'no_lang_code', 'name', 'Softing (Germany)'),
(25903, 22402, 'no_lang_code', 'name', 'Nanova Biomaterials (United States)'),
(25904, 22403, 'es', 'name', 'Universidad Santo TomƔs'),
(25905, 22404, 'en', 'name', 'Swedish Institute of Assistive Technology'),
(25906, 22405, 'en', 'name', 'Sarah Bush Lincoln Health System'),
(25907, 22406, 'no_lang_code', 'name', 'Rational Biotechnology (United States)'),
(25908, 22407, 'es', 'name', 'Thomas More Universitas, Universidad Thomas More'),
(25909, 22408, 'en', 'name', 'Crawley Hospital'),
(25910, 22409, 'no_lang_code', 'name', 'Rio Tinto (United States)'),
(25911, 22410, 'en', 'name', 'Setting Priorities for Retirement Years Foundation'),
(25912, 22411, 'fr', 'name', 'Centre Hospitalier de Troyes'),
(25913, 22412, 'no_lang_code', 'name', 'Mulungushi University'),
(25914, 22413, 'en', 'name', 'Phoenix Programs'),
(25915, 22414, 'en', 'name', 'Folklore Studies Association of Canada'),
(25916, 22414, 'fr', 'name', 'Association Canadienne d''Ethnologie et de Folklore'),
(25917, 22415, 'en', 'name', 'Franklyn Community Hospital'),
(25918, 22416, 'no_lang_code', 'name', 'Planetek Hellas (Greece)'),
(25919, 22417, 'no_lang_code', 'name', 'In-Situ (United States)'),
(25920, 22418, 'en', 'name', 'Discovery Programme'),
(25921, 22419, 'en', 'name', 'Verification Research, Training and Information Centre'),
(25922, 22420, 'no_lang_code', 'name', 'Vorbeck (United States)'),
(25923, 22421, 'en', 'name', 'Winfield Hospital'),
(25924, 22422, 'en', 'name', 'University of Technology, Jamaica'),
(25925, 22423, 'en', 'name', 'Light University of Bujumbur'),
(25926, 22423, 'fr', 'name', 'Université lLumière de Bujumbura'),
(25927, 22424, 'es', 'name', 'Centro Universitario de Tenango del Valle'),
(25928, 22425, 'en', 'name', 'Newcastle upon Tyne Hospital'),
(25929, 22426, 'no_lang_code', 'name', 'Space Syntax (United Kingdom)'),
(25930, 22427, 'no_lang_code', 'name', 'MRC Holland (Netherlands)'),
(25931, 22428, 'no_lang_code', 'name', 'Stokast (Canada)'),
(25932, 22429, 'en', 'name', 'Space Telescope European Coordinating Facility'),
(25933, 22430, 'en', 'name', 'Shawnee Mission South High School'),
(25934, 22431, 'no_lang_code', 'name', 'Vybion (United States)'),
(25935, 22432, 'en', 'name', 'William Jessup University'),
(25936, 22433, 'no_lang_code', 'name', 'Micropore Technologies (United Kingdom)'),
(25937, 22434, 'es', 'name', 'Universidad JosƩ Vasconcelos de Oaxaca'),
(25938, 22435, 'no_lang_code', 'name', 'PhaseBio Pharmaceuticals (United States)'),
(25939, 22436, 'no_lang_code', 'name', 'HolidayCheck Group (Germany)'),
(25940, 22437, 'fr', 'name', 'Chateau Guiraud'),
(25941, 22438, 'no_lang_code', 'name', 'Unisense (Denmark)'),
(25942, 22439, 'en', 'name', 'Cumberland University'),
(25943, 22440, 'no_lang_code', 'name', 'OpTek Systems (United Kingdom)'),
(25944, 22441, 'no_lang_code', 'name', 'SQW Group (United Kingdom)'),
(25945, 22442, 'en', 'name', 'Mill View Hospital'),
(25946, 22443, 'no_lang_code', 'name', 'Optrak (United Kingdom)'),
(25947, 22444, 'en', 'name', 'Nakagawanosato Hospital for the Disabled'),
(25948, 22445, 'en', 'name', 'Shawnee Health Service and Development Corporation'),
(25949, 22446, 'en', 'name', 'Whitstable and Tankerton Hospital'),
(25950, 22447, 'es', 'name', 'Universidad Católica Santa María La Antigua'),
(25951, 22448, 'en', 'name', 'Bolivia Adventist University'),
(25952, 22448, 'es', 'name', 'Universidad Adventista de Bolivia'),
(25953, 22449, 'no_lang_code', 'name', 'Yankee Environmental System (United States)'),
(25954, 22450, 'en', 'name', 'Montagu Hospital'),
(25955, 22451, 'no_lang_code', 'name', 'Yamaha (Netherlands)'),
(25956, 22452, 'en', 'name', 'Stroud Maternity Hospital'),
(25957, 22453, 'en', 'name', 'Palo Alto Institute'),
(25958, 22454, 'en', 'name', 'National AIDS Commission'),
(25959, 22455, 'en', 'name', 'Joetsu University of Education'),
(25960, 22455, 'ja', 'name', 'äøŠč¶Šę•™č‚²å¤§å­¦'),
(25961, 22456, 'en', 'name', 'Ridge Lea Hospital'),
(25962, 22457, 'en', 'name', 'County Hospital'),
(25963, 22458, 'no_lang_code', 'name', 'Overspeed (Germany)'),
(25964, 22459, 'en', 'name', 'NIU Observatory'),
(25965, 22460, 'ja', 'name', 'ä»Šę‘ē—…é™¢'),
(25966, 22460, 'no_lang_code', 'name', 'Imamura Hospital'),
(25967, 22461, 'fr', 'name', 'Ɖcole SupĆ©rieure de Gestion et des Sciences de l''Informatique'),
(25968, 22462, 'en', 'name', 'New Horizons Community Service Board'),
(25969, 22463, 'no_lang_code', 'name', 'Seureco (France)'),
(25970, 22464, 'en', 'name', 'Essays on Canadian Writing'),
(25971, 22465, 'es', 'name', 'Universidad del Valle'),
(25972, 22466, 'en', 'name', 'MyFace'),
(25973, 22467, 'fr', 'name', 'Ɖcole Africaine des MĆ©tiers de l''Architecture et de l''Urbanisme'),
(25974, 22468, 'da', 'name', 'Billedkunst Skolerne Det Kongelige Danske Kunstakademis'),
(25975, 22468, 'en', 'name', 'Schools of Visual Arts, The Royal Danish Academy of Fine Arts'),
(25976, 22469, 'en', 'name', 'Regent College'),
(25977, 22470, 'no_lang_code', 'name', 'Yuzhnoye State Design Office (Ukraine)'),
(25978, 22470, 'uk', 'name', 'Державне ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŃŒŠŗŠµ Š±ŃŽŃ€Š¾ Ā«ŠŸŃ–Š²Š“ŠµŠ½Š½ŠµĀ» ім. М. К. ŠÆŠ½Š³ŠµŠ»Ń'),
(25979, 22471, 'bn', 'name', 'ą¦¬ą¦æą¦¶ą§ą¦¬ą¦­ą¦¾ą¦°ą¦¤ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(25980, 22471, 'en', 'name', 'Visva-Bharati University'),
(25981, 22471, 'hi', 'name', 'ą¤µą¤æą¤¶ą„ą¤µ-ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(25982, 22471, 'ml', 'name', 'ą“µą“æą“¶ąµą“µą“­ą“¾ą“°ą“¤ą“æ ą“øąµ¼ ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(25983, 22471, 'pa', 'name', 'ਵਿਸ਼ਵ ਭਾਰਤੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(25984, 22472, 'en', 'name', 'Lizard Hollow Observatory'),
(25985, 22473, 'en', 'name', 'Methodist University of Angola'),
(25986, 22473, 'pt', 'name', 'Universidade Metodista de Angola'),
(25987, 22474, 'en', 'name', 'State College of Florida Manatee-Sarasota'),
(25988, 22475, 'no_lang_code', 'name', 'Microlab Devices (United Kingdom)'),
(25989, 22476, 'en', 'name', 'Norwegian Seafood Association'),
(25990, 22477, 'pt', 'name', 'Instituto Superior de Ciências e Tecnologia de Moçambique'),
(25991, 22478, 'no_lang_code', 'name', 'MicroDiscovery (Germany)'),
(25992, 22479, 'en', 'name', 'National Archaeology Museum'),
(25993, 22479, 'pt', 'name', 'Museu Nacional de Arqueologia'),
(25994, 22480, 'no_lang_code', 'name', 'JDA Software (Canada)'),
(25995, 22481, 'no_lang_code', 'name', 'WƤrtsilƤ (Netherlands)'),
(25996, 22482, 'en', 'name', 'Kwame Nkrumah University'),
(25997, 22483, 'es', 'name', 'Universidad de la Empresa'),
(25998, 22484, 'en', 'name', 'The Beardwood Hospital'),
(25999, 22485, 'en', 'name', 'Inner Mongolia People''s Hospital'),
(26000, 22485, 'zh', 'name', 'å†…č’™å¤č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(26001, 22486, 'en', 'name', 'Maidstone and Tunbridge Wells NHS Trust'),
(26002, 22487, 'en', 'name', 'Association for the Advancement of Scandinavian Studies in Canada'),
(26003, 22487, 'fr', 'name', 'l''Association pour l''avancement des Ʃtudes scandinaves au Canada'),
(26004, 22488, 'en', 'name', 'Holsworthy Community Hospital'),
(26005, 22489, 'en', 'name', 'Zero Carbon Hub'),
(26006, 22490, 'no_lang_code', 'name', 'Piramal (Canada)'),
(26007, 22491, 'fr', 'name', 'Institut SupƩrieur de comptabilitƩ Audit et Finance'),
(26008, 22492, 'es', 'name', 'Universidad Tecnológica Americana'),
(26009, 22493, 'no_lang_code', 'name', 'Population and Social Policy Consultants'),
(26010, 22494, 'fr', 'name', 'UniversitƩ Libre de Luozi'),
(26011, 22495, 'no_lang_code', 'name', 'SocietĆ  Italiana Apparecchi Scientifici (Italy)'),
(26012, 22496, 'no_lang_code', 'name', 'Ruhrverband (Germany)'),
(26013, 22497, 'en', 'name', 'European Rail Research Institute'),
(26014, 22498, 'en', 'name', 'Jerusalem Institute for Israel Studies'),
(26015, 22499, 'en', 'name', 'Yosemite Community College District'),
(26016, 22500, 'no_lang_code', 'name', 'Sustainable Venture Development Partners (United Kingdom)'),
(26017, 22501, 'es', 'name', 'Universidad JosƩ Marƭa Vargas'),
(26018, 22502, 'en', 'name', 'Herbs for Horses'),
(26019, 22503, 'no_lang_code', 'name', 'AVL (France)'),
(26020, 22504, 'en', 'name', 'Public Health Foundation'),
(26021, 22505, 'en', 'name', 'Pennsylvania Institute of Technology'),
(26022, 22506, 'en', 'name', 'Canadian Psychological Association'),
(26023, 22507, 'no_lang_code', 'name', 'Prysmian Group (United Kingdom)'),
(26024, 22508, 'en', 'name', 'Schnƶrringen Telescope Science Institute'),
(26025, 22509, 'en', 'name', 'Hanzhong People''s Hospital'),
(26026, 22509, 'zh', 'name', 'ę±‰äø­åø‚äŗŗę°‘åŒ»é™¢'),
(26027, 22510, 'fr', 'name', 'Centre Hospitalier de BƩthune'),
(26028, 22511, 'en', 'name', 'McMaster Divinity College'),
(26029, 22512, 'no_lang_code', 'name', 'Resonon (United States)'),
(26030, 22513, 'no_lang_code', 'name', 'Vitamib (France)'),
(26031, 22514, 'no_lang_code', 'name', 'Sensap (Greece)'),
(26032, 22515, 'no_lang_code', 'name', 'Pacific Biomarkers (United States)'),
(26033, 22516, 'no_lang_code', 'name', 'TransƉnergie (France)'),
(26034, 22517, 'no_lang_code', 'name', 'Meyer Turku (Finland)'),
(26035, 22518, 'es', 'name', 'Universidad Continental de las Ciencias las Artes'),
(26036, 22519, 'en', 'name', 'Manila Observatory'),
(26037, 22520, 'en', 'name', 'Zubov State Oceanographic Institute'),
(26038, 22520, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ океанографический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š.Š.Š—ŃƒŠ±Š¾Š²Š°'),
(26039, 22521, 'en', 'name', 'Ukrainian scientific center of Ecology of Sea'),
(26040, 22522, 'pt', 'name', 'Universidade Salgado de Oliveira'),
(26041, 22523, 'no_lang_code', 'name', 'PostScriptum (Greece)'),
(26042, 22524, 'en', 'name', 'Stephens College'),
(26043, 22525, 'fr', 'name', 'UniversitƩ EvangƩlique en Afrique'),
(26044, 22526, 'no_lang_code', 'name', 'Optical Fiber Solutions (Denmark)'),
(26045, 22527, 'es', 'name', 'Universidad Champagnat'),
(26046, 22528, 'no_lang_code', 'name', 'Zymera (United States)'),
(26047, 22529, 'no_lang_code', 'name', 'XData Corporation (United States)'),
(26048, 22530, 'es', 'name', 'Universidad CuauhnƔhuac'),
(26049, 22531, 'es', 'name', 'Universidad Metropolitana de Monterrey'),
(26050, 22532, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ć•ć„ćŒćŸē—…é™¢'),
(26051, 22532, 'no_lang_code', 'name', 'Saigata National Hospital'),
(26052, 22533, 'en', 'name', 'Wotton Lawn Hospital'),
(26053, 22534, 'de', 'name', 'Kreiskliniken Reutlingen'),
(26054, 22535, 'no_lang_code', 'name', 'Stirling Cryogenics (Netherlands)'),
(26055, 22536, 'en', 'name', 'Virtual Dimension Center'),
(26056, 22537, 'no_lang_code', 'name', 'IMA (Italy)'),
(26057, 22538, 'no_lang_code', 'name', 'INES-Ruhengeri'),
(26058, 22538, 'rw', 'name', 'Institut d''Enseignement supƩrieur de Ruhengeri'),
(26059, 22539, 'no_lang_code', 'name', 'Tacchella Macchine (Italy)'),
(26060, 22540, 'es', 'name', 'Institución Universitaria Antonio José Camacho'),
(26061, 22541, 'es', 'name', 'Universidad Alejandro de Humboldt'),
(26062, 22542, 'es', 'name', 'Observatorio astronómico municipal de Murcia "La Murta"'),
(26063, 22543, 'no_lang_code', 'name', 'Northern Digital (Canada)'),
(26064, 22544, 'en', 'name', 'Mandalay University'),
(26065, 22544, 'my', 'name', 'į€™į€”į€¹į€į€œį€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(26066, 22545, 'en', 'name', 'New and Renewable Energy Authority'),
(26067, 22546, 'en', 'name', 'Research Institute of Industrial Economics'),
(26068, 22547, 'no_lang_code', 'name', 'REL (United States)'),
(26069, 22548, 'en', 'name', 'Orkney Fisheries Association'),
(26070, 22549, 'no_lang_code', 'name', 'Creation Technologies (United States)'),
(26071, 22550, 'no_lang_code', 'name', 'PricewaterhouseCoopers (Netherlands)'),
(26072, 22551, 'en', 'name', 'Minot Public Schools'),
(26073, 22552, 'en', 'name', 'Canadian Council on Social Development'),
(26074, 22553, 'no_lang_code', 'name', 'Floralis (France)'),
(26075, 22554, 'ja', 'name', 'é“å¾Œęø©ę³‰ē—…é™¢'),
(26076, 22554, 'no_lang_code', 'name', 'Dogo Onsen Hospital'),
(26077, 22555, 'no_lang_code', 'name', 'SimulConsult'),
(26078, 22556, 'es', 'name', 'Universidad Nacional Experimental de las Artes'),
(26079, 22557, 'en', 'name', 'Rafael Urdaneta University'),
(26080, 22557, 'es', 'name', 'Universidad Rafael Urdaneta'),
(26081, 22558, 'no_lang_code', 'name', 'Technologie Agentur Struktur Keramik (Germany)'),
(26082, 22559, 'no_lang_code', 'name', 'Software for Critical Systems (Spain)'),
(26083, 22560, 'es', 'name', 'Universidad Mesoamericana'),
(26084, 22561, 'en', 'name', 'Hinckley and District Hospital'),
(26085, 22562, 'en', 'name', 'Nunavik Regional Board of Health and Social Services'),
(26086, 22562, 'fr', 'name', 'RƩgie rƩgionale de la santƩ et des services sociaux du Nunavik'),
(26087, 22563, 'es', 'name', 'Escuela Superior Politécnica Ecológica Amazónica'),
(26088, 22564, 'de', 'name', 'Hochschule Worms'),
(26089, 22564, 'en', 'name', 'University of Applied Sciences Worms'),
(26090, 22565, 'no_lang_code', 'name', 'UbiVac (United States)'),
(26091, 22566, 'no_lang_code', 'name', 'SmileSonica (Canada)'),
(26092, 22567, 'fr', 'name', 'Universiapolis - UniversitƩ Internationale d''Agadir'),
(26093, 22568, 'no_lang_code', 'name', 'Veeco (United Kingdom)'),
(26094, 22569, 'en', 'name', 'Mossley Hill Hospital'),
(26095, 22570, 'no_lang_code', 'name', 'Coherent (United States)'),
(26096, 22571, 'es', 'name', 'Universidad Nacional de Piura'),
(26097, 22572, 'en', 'name', 'BrĆønnĆøysund Register Centre'),
(26098, 22573, 'no_lang_code', 'name', 'PassivSystems (United Kingdom)'),
(26099, 22574, 'es', 'name', 'Universidad del Valle de Orizaba'),
(26100, 22575, 'en', 'name', 'Nanjing University of Finance and Economics'),
(26101, 22575, 'zh', 'name', 'å—äŗ¬č“¢ē»å¤§å­¦'),
(26102, 22576, 'en', 'name', 'Faversham Cottage Hospital'),
(26103, 22577, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†ŁŠŲ§Ł„Ų§'),
(26104, 22577, 'en', 'name', 'University of Nyala'),
(26105, 22578, 'en', 'name', 'Polis'),
(26106, 22579, 'pt', 'name', 'Centro UniversitƔrio da Cidade'),
(26107, 22580, 'en', 'name', 'Krasnoyarsk Regional Clinical Hospital'),
(26108, 22580, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠ°Ń ŠŗŃ€Š°ŠµŠ²Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(26109, 22581, 'no_lang_code', 'name', 'Maniero Elettronica (Italy)'),
(26110, 22582, 'en', 'name', 'Olsztyn Planetarium and Astronomical Observatory'),
(26111, 22582, 'pl', 'name', 'Olsztyńskiego Planetarium i Obserwatorium Astronomicznego'),
(26112, 22583, 'en', 'name', 'Renal Research Institute'),
(26113, 22584, 'no_lang_code', 'name', 'Orthox (United Kingdom)'),
(26114, 22585, 'no_lang_code', 'name', 'Vossloh (Spain)'),
(26115, 22586, 'en', 'name', 'Colman Hospital'),
(26116, 22587, 'el', 'name', 'ĪœĪæĻ…ĻƒĪµĪÆĪæ ΓουλανΓρή Ī¦Ļ…ĻƒĪ¹ĪŗĪ®Ļ‚ Ī™ĻƒĻ„ĪæĻĪÆĪ±Ļ‚'),
(26117, 22587, 'en', 'name', 'Goulandris Natural History Museum'),
(26118, 22588, 'es', 'name', 'Centro Universitario Oparin'),
(26119, 22589, 'en', 'name', 'Society of Wetland Scientists'),
(26120, 22590, 'no_lang_code', 'name', 'TELINT RTD Consultancy Services (United Kingdom)'),
(26121, 22591, 'no_lang_code', 'name', 'WiCell'),
(26122, 22592, 'en', 'name', 'Pedagogical University'),
(26123, 22592, 'pt', 'name', 'Universidade Pedagógica'),
(26124, 22593, 'en', 'name', 'Hubei Provincial Women and Children''s Hospital'),
(26125, 22593, 'zh', 'name', 'ę¹–åŒ—ēœå¦‡å¹¼äæå„é™¢'),
(26126, 22594, 'en', 'name', 'Taurus Hill Observatory'),
(26127, 22594, 'fi', 'name', 'HƄRKƄMƄEN OBSERVATORIO'),
(26128, 22595, 'en', 'name', 'Millom Hospital'),
(26129, 22596, 'no_lang_code', 'name', 'Agroknow (Greece)'),
(26130, 22597, 'nl', 'name', 'Stichting Ecobaby'),
(26131, 22598, 'es', 'name', 'Universidad JosƩ Cecilio del Valle'),
(26132, 22599, 'no_lang_code', 'name', 'Teledyne Technologies (Canada)'),
(26133, 22600, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁ†ŲÆŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(26134, 22600, 'en', 'name', 'Canadian International College'),
(26135, 22601, 'ar', 'name', 'Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ų®ŲØŲ§Ų± Ų§Ł„ŁŠŁˆŁ…'),
(26136, 22601, 'en', 'name', 'Akhbar El Yom Academy'),
(26137, 22602, 'no_lang_code', 'name', 'Ball (Germany)'),
(26138, 22603, 'no_lang_code', 'name', 'Nano Liquid Devices (United States)'),
(26139, 22604, 'es', 'name', 'Universidad de Ciencias Medicas'),
(26140, 22605, 'en', 'name', 'Pima County Juvenile Court'),
(26141, 22606, 'en', 'name', 'Hebei Eye Hospital'),
(26142, 22606, 'zh', 'name', 'ę²³åŒ—ēœēœ¼ē§‘åŒ»é™¢'),
(26143, 22607, 'en', 'name', 'Kenya Methodist University'),
(26144, 22608, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Nouakchott'),
(26145, 22609, 'en', 'name', 'Babington Hospital'),
(26146, 22610, 'en', 'name', 'Tunisia Private University'),
(26147, 22610, 'fr', 'name', 'UniversitƩ libre de tunis'),
(26148, 22611, 'en', 'name', 'Invest Canada'),
(26149, 22612, 'en', 'name', 'Montefiore Hospital'),
(26150, 22613, 'en', 'name', 'Crowborough War Memorial Hospital'),
(26151, 22614, 'en', 'name', 'The Portland Hospital'),
(26152, 22615, 'en', 'name', 'Blackpool Teaching Hospitals NHS Foundation Trust'),
(26153, 22616, 'no_lang_code', 'name', 'Los Alamos Technical Associates (United States)'),
(26154, 22617, 'no_lang_code', 'name', 'Entellexi (Ireland)'),
(26155, 22618, 'no_lang_code', 'name', 'Origo (Iceland)'),
(26156, 22619, 'es', 'name', 'Instituto Gamma'),
(26157, 22620, 'en', 'name', 'Drug-Free NC'),
(26158, 22621, 'en', 'name', 'Environmental Studies Association of Canada'),
(26159, 22621, 'fr', 'name', 'Association Canadienne d''Etudes Environnementales'),
(26160, 22622, 'en', 'name', 'Society of Indian Automobile Manufacturers'),
(26161, 22623, 'en', 'name', 'Ocean Discovery Institute'),
(26162, 22624, 'no_lang_code', 'name', 'TE Connectivity (United States)'),
(26163, 22625, 'no_lang_code', 'name', 'Mountain View Clinical Research'),
(26164, 22626, 'no_lang_code', 'name', 'Vandurit (Italy)'),
(26165, 22627, 'no_lang_code', 'name', 'SecurityMatters (Netherlands)'),
(26166, 22628, 'no_lang_code', 'name', 'Sentinel Oncology (United Kingdom)'),
(26167, 22629, 'no_lang_code', 'name', 'Phio Pharmaceuticals (United States)'),
(26168, 22630, 'fr', 'name', 'UniversitƩ Sainte-Anne'),
(26169, 22631, 'en', 'name', 'National Health Information Center'),
(26170, 22631, 'sk', 'name', 'NƔrodnƩ Centrum Zdravotnƭckych InformƔciƭ'),
(26171, 22632, 'no_lang_code', 'name', 'Industrial Solar (Germany)'),
(26172, 22633, 'no_lang_code', 'name', 'Versarien Technologies (United Kingdom)'),
(26173, 22634, 'no_lang_code', 'name', 'Silanis Technology (Canada)'),
(26174, 22635, 'es', 'name', 'Universidad Anahuac Oaxaca'),
(26175, 22636, 'no_lang_code', 'name', 'MetaSensing (Netherlands)'),
(26176, 22637, 'it', 'name', 'Ospedale del Tigullio, Presidio Ospedaliero'),
(26177, 22638, 'ja', 'name', 'åøäŗ¬å¹³ęˆå¤§å­¦'),
(26178, 22638, 'no_lang_code', 'name', 'Teikyo Heisei University'),
(26179, 22639, 'no_lang_code', 'name', 'Perseus (Belgium)'),
(26180, 22640, 'es', 'name', 'Universidad del Norte'),
(26181, 22641, 'en', 'name', 'University of Commercial Sciences'),
(26182, 22641, 'es', 'name', 'Universidad de Ciencias Comerciales'),
(26183, 22642, 'es', 'name', 'Corporación Universitaria Empresarial de Salamanca'),
(26184, 22643, 'en', 'name', 'Antioch University Santa Barbara'),
(26185, 22644, 'fr', 'name', 'Ɖcole Nationale d''Administration et de Magistrature'),
(26186, 22645, 'en', 'name', 'Canadian Association for Business Economics'),
(26187, 22646, 'en', 'name', 'South Side Help Center'),
(26188, 22647, 'en', 'name', 'Changchun University of Chinese Medicine'),
(26189, 22648, 'no_lang_code', 'name', 'Mapper Lithography (Netherlands)'),
(26190, 22649, 'no_lang_code', 'name', 'Vanchem Performance Chemicals (Canada)'),
(26191, 22650, 'en', 'name', 'Canadian Society for the Study of Higher Education'),
(26192, 22651, 'en', 'name', 'Moscow State University of Geodesy and Cartography'),
(26193, 22651, 'ru', 'name', 'Моско́вский Š³Š¾ŃŃƒŠ“а́рственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ геоГе́зии Šø картогра́фии'),
(26194, 22652, 'pt', 'name', 'Universidade Metropolitana de Santos'),
(26195, 22653, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de l''Enseignement Technique de Mohammedia'),
(26196, 22654, 'en', 'name', 'Rhode Island League of Cities and Towns'),
(26197, 22655, 'en', 'name', 'St. Finbarr''s Hospital'),
(26198, 22655, 'ga', 'name', 'OspidƩal Naomh Fionnbarra'),
(26199, 22656, 'fr', 'name', 'Institut National SupƩrieur des Sciences et Techniques d''AbƩchƩ'),
(26200, 22657, 'en', 'name', 'Canadiana.org'),
(26201, 22658, 'en', 'name', 'University of Tourism'),
(26202, 22658, 'es', 'name', 'Universidad del Turismo'),
(26203, 22659, 'es', 'name', 'Universidad Marista'),
(26204, 22660, 'no_lang_code', 'name', 'Nexcis (France)'),
(26205, 22661, 'en', 'name', 'Lymington New Forest Hospital'),
(26206, 22662, 'en', 'name', 'Pir Mehr Ali Shah Arid Agriculture University'),
(26207, 22662, 'ur', 'name', 'پیر مہر Ų¹Ł„ŪŒ ؓاہ ŲØŲ§Ų±Ų§Ł†ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(26208, 22663, 'pt', 'name', 'Centro UniversitĆ”rio Serra dos ƓrgĆ£os'),
(26209, 22664, 'ja', 'name', 'äø­éƒØå­¦é™¢å¤§å­¦'),
(26210, 22664, 'no_lang_code', 'name', 'Chubu Gakuin University'),
(26211, 22665, 'lv', 'name', 'Tehnoloģiju Attīstības Forums'),
(26212, 22666, 'es', 'name', 'Instituto Centroamericano de Administración Pública'),
(26213, 22667, 'en', 'name', 'West Lane Hospital'),
(26214, 22668, 'es', 'name', 'Universidad Iberoamericana del Ecuador'),
(26215, 22669, 'en', 'name', 'Catholic University of Bolivia'),
(26216, 22669, 'es', 'name', 'Universidad Católica Bolivia San Pablo'),
(26217, 22670, 'en', 'name', 'Ridgeview'),
(26218, 22671, 'no_lang_code', 'name', 'Pars Makina (Turkey)'),
(26219, 22672, 'en', 'name', 'Dawlish Community Hospital'),
(26220, 22673, 'es', 'name', 'Universidad EvangƩlica Boliviana'),
(26221, 22674, 'en', 'name', 'Jean Piaget University of Cape Verde'),
(26222, 22674, 'pt', 'name', 'Universidade Jean Piaget de Cabo Verde'),
(26223, 22675, 'no_lang_code', 'name', 'Tony Gee and Partners'),
(26224, 22676, 'no_lang_code', 'name', 'Soft dB (Canada)'),
(26225, 22677, 'en', 'name', 'Supreme Council of Antiquities'),
(26226, 22678, 'en', 'name', 'University of Ngozi'),
(26227, 22678, 'fr', 'name', 'UniversitƩ de Ngozi'),
(26228, 22679, 'en', 'name', 'Places For People'),
(26229, 22680, 'en', 'name', 'West Berkshire Community Hospital'),
(26230, 22681, 'en', 'name', 'Education Northwest'),
(26231, 22682, 'it', 'name', 'Osservatorio Astronomico di Monte Agliale'),
(26232, 22683, 'en', 'name', 'Edenbridge and District War Memorial Hospital'),
(26233, 22684, 'en', 'name', 'Shri Mata Vaishno Devi University'),
(26234, 22684, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ माता ą¤µą„ˆą¤·ą„ą¤£ą„‹ ą¤¦ą„‡ą¤µą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(26235, 22685, 'en', 'name', 'Nassau Alcohol Crime Drug Abatement Coalition'),
(26236, 22686, 'no_lang_code', 'name', 'Systems, Applications & Products in Data Processing (Switzerland)'),
(26237, 22687, 'en', 'name', 'Prevention Links'),
(26238, 22688, 'es', 'name', 'Universidad Nacional de ItapĆŗa'),
(26239, 22689, 'no_lang_code', 'name', 'Supply Network Shannon (Ireland)'),
(26240, 22690, 'en', 'name', 'Bideford Medical Centre'),
(26241, 22691, 'es', 'name', 'Universidad Privada Boliviana'),
(26242, 22692, 'en', 'name', 'SƶdertƤlje Hospital'),
(26243, 22692, 'sv', 'name', 'SƶdertƤlje Sjukhus'),
(26244, 22693, 'en', 'name', 'Fareham Community Hospital'),
(26245, 22694, 'en', 'name', 'European Southern Observatory'),
(26246, 22695, 'en', 'name', 'Zhuhai Hospital of Integrated Traditional Chinese and Western Medicine'),
(26247, 22695, 'zh', 'name', 'ē ęµ·åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(26248, 22696, 'en', 'name', 'Regional Maritime University'),
(26249, 22697, 'en', 'name', 'Avon and Wiltshire Mental Health Partnership NHS Trust'),
(26250, 22698, 'en', 'name', 'Office of Science & Technology Austria'),
(26251, 22699, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(26252, 22699, 'en', 'name', 'Arab Open University'),
(26253, 22700, 'no_lang_code', 'name', 'Sivers IMA (Sweden)'),
(26254, 22701, 'en', 'name', 'Buckinghamshire Healthcare NHS Trust'),
(26255, 22702, 'no_lang_code', 'name', 'Iron Mountain (United States)'),
(26256, 22703, 'en', 'name', 'Moseley Hall Hospital'),
(26257, 22704, 'es', 'name', 'Corporación Universitaria Regional del Caribe'),
(26258, 22705, 'de', 'name', 'Evangelisches Krankenhaus Bethesda Mƶnchengladbach'),
(26259, 22706, 'es', 'name', 'Universidad Internacional de las AmƩricas'),
(26260, 22707, 'no_lang_code', 'name', 'PerkinElmer (Finland)'),
(26261, 22708, 'no_lang_code', 'name', 'NIS (United Kingdom)'),
(26262, 22709, 'en', 'name', 'Canadian Association for the Study of Adult Education'),
(26263, 22710, 'no_lang_code', 'name', 'Rups Consultancy and Project Management'),
(26264, 22711, 'en', 'name', 'Kyungnam University'),
(26265, 22711, 'ko', 'name', 'ź²½ė‚ØėŒ€ķ•™źµ'),
(26266, 22712, 'en', 'name', 'Sanford Medical Center'),
(26267, 22713, 'en', 'name', 'Milton Keynes Council'),
(26268, 22714, 'hu', 'name', 'Állattenyésztési és TakarmÔnyozÔsi Kutatóintézet'),
(26269, 22715, 'no_lang_code', 'name', 'XiO Photonics (Netherlands)'),
(26270, 22716, 'pt', 'name', 'Centro UniversitƔrio do Planalto de AraxƔ'),
(26271, 22717, 'no_lang_code', 'name', 'Diazyme (United States)'),
(26272, 22718, 'es', 'name', 'Instituto Universitario de la PolicĆ­a Federal Argentina'),
(26273, 22719, 'no_lang_code', 'name', 'R2M Solution (Italy)'),
(26274, 22720, 'no_lang_code', 'name', 'Trellis Bioscience (United States)'),
(26275, 22721, 'en', 'name', 'University of Yangon'),
(26276, 22721, 'my', 'name', 'į€›į€”į€ŗį€€į€Æį€”į€ŗį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(26277, 22722, 'de', 'name', 'Studiengesellschaft für Tunnel und Verkehrsanlagen'),
(26278, 22722, 'en', 'name', 'Research Association for Tunnels and Transport Facilities'),
(26279, 22723, 'en', 'name', 'Tanzania Youth Alliance'),
(26280, 22724, 'fr', 'name', 'UniversitƩ Arabe des Sciences'),
(26281, 22725, 'es', 'name', 'Universidad Laica Vicente Rocafuerte de Guayaquil'),
(26282, 22726, 'ar', 'name', 'معهد Ų§Ł„Ų®Ų±Ų·ŁˆŁ… Ų§Ł„ŲÆŁˆŁ„ŁŠ للغة Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(26283, 22726, 'en', 'name', 'Khartoum International Institute for Arabic Languague'),
(26284, 22727, 'es', 'name', 'Universidad ICEL'),
(26285, 22728, 'en', 'name', 'State University of Vale do AcaraĆŗ'),
(26286, 22728, 'pt', 'name', 'Universidade Estadual Vale do AcaraĆŗ'),
(26287, 22729, 'no_lang_code', 'name', 'SGG (Italy)'),
(26288, 22730, 'es', 'name', 'Universidad Adventista de Chile'),
(26289, 22731, 'en', 'name', 'Kyushu Nutrition Welfare University'),
(26290, 22731, 'ja', 'name', 'ä¹å·žę „é¤Šē¦ē„‰å¤§å­¦'),
(26291, 22732, 'no_lang_code', 'name', 'RDM Group (United Kingdom)'),
(26292, 22733, 'no_lang_code', 'name', 'Promau Engineering (Italy)'),
(26293, 22734, 'en', 'name', 'Altan Observatory'),
(26294, 22735, 'en', 'name', 'St Michael''s Hospital'),
(26295, 22736, 'de', 'name', 'Altonaer Kinderkrankenhaus'),
(26296, 22737, 'fr', 'name', 'Société de Protection des Forêts contre les Insectes et Maladies'),
(26297, 22738, 'no_lang_code', 'name', 'Prologia (France)'),
(26298, 22739, 'en', 'name', 'Environmental and Sustainable Construction Association'),
(26299, 22740, 'pt', 'name', 'Museu de Arte Pré-Histórica de Mação'),
(26300, 22741, 'en', 'name', 'University of Maine at Fort Kent'),
(26301, 22741, 'fr', 'name', 'L''UniversitƩ du Maine Ơ Fort Kent'),
(26302, 22742, 'es', 'name', 'Instituto Universitario AeronƔutico'),
(26303, 22743, 'no_lang_code', 'name', 'Sequoyah (Belgium)'),
(26304, 22744, 'en', 'name', 'Fujian Provincial People''s Hospital'),
(26305, 22744, 'zh', 'name', 'ē¦å»ŗēœäŗŗę°‘åŒ»é™¢'),
(26306, 22745, 'no_lang_code', 'name', 'MicronOptics (United States)'),
(26307, 22746, 'en', 'name', 'Chelsea and Westminster Hospital'),
(26308, 22747, 'no_lang_code', 'name', 'Zentrum für Rationelle Energieanwendung und Umwelt (Germany)'),
(26309, 22748, 'es', 'name', 'Centro Universitario Hispano Mexicano'),
(26310, 22749, 'no_lang_code', 'name', 'Inanna Publications and Education (Canada)'),
(26311, 22750, 'en', 'name', 'Skyline High School'),
(26312, 22751, 'en', 'name', 'Institute of Fisheries and Aquaculture'),
(26313, 22752, 'en', 'name', 'Yuxian People''s Hospital'),
(26314, 22752, 'zh', 'name', 'ē›‚åŽæäŗŗę°‘åŒ»é™¢'),
(26315, 22753, 'no_lang_code', 'name', 'Silicon Radar (Germany)'),
(26316, 22754, 'es', 'name', 'Universidad Nacional Experimental Simón Rodríguez'),
(26317, 22755, 'en', 'name', 'Weybridge Community Hospital'),
(26318, 22756, 'en', 'name', 'Austrian Institute of Spatial Planning'),
(26319, 22757, 'no_lang_code', 'name', 'Volterra (United Kingdom)'),
(26320, 22758, 'es', 'name', 'Universidad Fundepos'),
(26321, 22759, 'en', 'name', 'Science Health Allied Research Education'),
(26322, 22760, 'en', 'name', 'IMM Graduate School of Marketing'),
(26323, 22761, 'no_lang_code', 'name', 'Toppan (United Kingdom)'),
(26324, 22762, 'no_lang_code', 'name', 'Grammer (Germany)'),
(26325, 22763, 'en', 'name', 'Wuxi No.2 People''s Hospital'),
(26326, 22763, 'zh', 'name', 'ę— é””åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(26327, 22764, 'no_lang_code', 'name', 'Xintek (United States)'),
(26328, 22765, 'no_lang_code', 'name', 'SEA-invest (France)'),
(26329, 22766, 'fr', 'name', 'Topos Aquitaine'),
(26330, 22767, 'no_lang_code', 'name', 'OJ-Bio (United Kingdom)'),
(26331, 22768, 'no_lang_code', 'name', 'XSB (United States)'),
(26332, 22769, 'en', 'name', 'Autonomous University of Fresnillo'),
(26333, 22769, 'es', 'name', 'Universidad Autónoma de Fresnillo'),
(26334, 22770, 'it', 'name', 'Azienda Sanitaria Locale Alessandria'),
(26335, 22771, 'en', 'name', 'University of Saint Francis Xavier'),
(26336, 22771, 'es', 'name', 'Universidad Mayor Real y Pontificia San Francisco Xavier de Chuquisaca'),
(26337, 22772, 'en', 'name', 'Fourth People''s Hospital of Shenzhen'),
(26338, 22772, 'zh', 'name', 'ę·±åœ³åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(26339, 22773, 'en', 'name', 'Navarro College'),
(26340, 22774, 'no_lang_code', 'name', 'Nanoparticle BioChem (United States)'),
(26341, 22775, 'no_lang_code', 'name', 'Plastic Electronics (Netherlands)'),
(26342, 22776, 'no_lang_code', 'name', 'PathoFinder (Netherlands)'),
(26343, 22777, 'hu', 'name', 'CsillagÔszati és FöldtudomÔnyi Kutatóközpont Konkoly Thege Miklós CsillagÔszati Intézet'),
(26344, 22777, 'no_lang_code', 'name', 'Konkoly Observatory'),
(26345, 22778, 'es', 'name', 'Centro Universitario de Occidente'),
(26346, 22779, 'en', 'name', 'Practical Action'),
(26347, 22780, 'no_lang_code', 'name', 'Virtualware Group (Spain)'),
(26348, 22781, 'en', 'name', 'Josai International University'),
(26349, 22781, 'ja', 'name', 'åŸŽč„æå›½éš›å¤§å­¦'),
(26350, 22782, 'en', 'name', 'Norwalk Community College'),
(26351, 22783, 'no_lang_code', 'name', 'Polgenix (United States)'),
(26352, 22784, 'en', 'name', 'Patrick Stead Hospital'),
(26353, 22785, 'en', 'name', 'Leominster Community Hospital'),
(26354, 22786, 'en', 'name', 'Ranken Technical College'),
(26355, 22787, 'no_lang_code', 'name', 'Silverchair Information Systems (United States)'),
(26356, 22788, 'no_lang_code', 'name', 'Ziena Optimization (United States)'),
(26357, 22789, 'ar', 'name', 'الجامعة Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„ŲŖŁˆŁ†Ų³'),
(26358, 22789, 'fr', 'name', 'UniversitƩ Internationale de Tunis'),
(26359, 22790, 'no_lang_code', 'name', 'Light Chain Bioscience (Switzerland)'),
(26360, 22791, 'no_lang_code', 'name', 'Trasys International (Belgium)'),
(26361, 22792, 'en', 'name', 'Nara University'),
(26362, 22792, 'ja', 'name', 'å„ˆč‰Æå¤§å­¦'),
(26363, 22793, 'pt', 'name', 'Centro UniversitƔrio Unirondon'),
(26364, 22794, 'es', 'name', 'Universidad Nacional de Loja'),
(26365, 22795, 'no_lang_code', 'name', 'Grenson (United Kingdom)'),
(26366, 22796, 'en', 'name', 'Research Circle Associates'),
(26367, 22797, 'no_lang_code', 'name', 'New Dawn Enterprises (Canada)'),
(26368, 22798, 'en', 'name', 'Bulgarian Association of Software Companies'),
(26369, 22799, 'pt', 'name', 'Universidade Colinas de BoƩ'),
(26370, 22800, 'es', 'name', 'Fundación Universitaria del Espinal'),
(26371, 22801, 'en', 'name', 'Hitchin Hospital'),
(26372, 22802, 'es', 'name', 'Universidad Nacional Pedro Henrƭquez UreƱa'),
(26373, 22803, 'en', 'name', 'Queen Charlotte''s and Chelsea Hospital'),
(26374, 22804, 'en', 'name', 'Orpington Hospital'),
(26375, 22805, 'en', 'name', 'Bassano Bresciano Astronomical Observatory'),
(26376, 22805, 'it', 'name', 'Osservatorio Astronomico di Bassano Bresciano'),
(26377, 22806, 'no_lang_code', 'name', 'Smith & Nephew (United Kingdom)'),
(26378, 22807, 'es', 'name', 'Universidad Creativa'),
(26379, 22808, 'fr', 'name', 'Institut Sous-RƩgional de Statistique et d''Economie AppliquƩe'),
(26380, 22809, 'en', 'name', 'World Obesity Federation'),
(26381, 22810, 'en', 'name', 'Southwest Texas Junior College'),
(26382, 22811, 'en', 'name', 'Tokyo Keizai University'),
(26383, 22811, 'ja', 'name', 'ę±äŗ¬ēµŒęøˆå¤§å­¦'),
(26384, 22812, 'en', 'name', 'Moscow Regional Psychiatry Hospital No.5'),
(26385, 22812, 'ru', 'name', 'ŠŸŃŠøŃ…ŠøŠ°Ń‚Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–5'),
(26386, 22813, 'no_lang_code', 'name', 'Pellet Productions (United States)'),
(26387, 22814, 'en', 'name', 'Victoria Central Hospital'),
(26388, 22815, 'en', 'name', 'Balearic Islands Coastal Observing and Forecasting System'),
(26389, 22816, 'es', 'name', 'Universidad Jean Piaget'),
(26390, 22817, 'en', 'name', 'Saskatchewan Science Centre'),
(26391, 22818, 'en', 'name', 'Abdul Wali Khan University Mardan'),
(26392, 22819, 'es', 'name', 'Fundación Tecnológica Autónoma de BogotÔ'),
(26393, 22820, 'no_lang_code', 'name', 'Raisio (Finland)'),
(26394, 22821, 'en', 'name', 'Everest University'),
(26395, 22822, 'es', 'name', 'Universidad HernƔn CortƩs'),
(26396, 22823, 'en', 'name', 'Youth Development'),
(26397, 22824, 'es', 'name', 'Institución Universitaria Colombo Americana'),
(26398, 22825, 'no_lang_code', 'name', 'SeaOwl Technology Solutions (France)'),
(26399, 22826, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© دنقلا'),
(26400, 22826, 'en', 'name', 'University of Dongola'),
(26401, 22827, 'no_lang_code', 'name', 'Tesco (United Kingdom)'),
(26402, 22828, 'en', 'name', 'Castleford, Normanton and District Hospital'),
(26403, 22829, 'en', 'name', 'Centre for Community Based Research'),
(26404, 22830, 'no_lang_code', 'name', 'NanoVir (United States)'),
(26405, 22831, 'en', 'name', 'Farrington High School'),
(26406, 22832, 'de', 'name', 'Verband Technische Kunststoff-Produkte e.V.'),
(26407, 22832, 'no_lang_code', 'name', 'TecPart'),
(26408, 22833, 'pt', 'name', 'Centro UniversitƔrio Cesumar'),
(26409, 22834, 'pt', 'name', 'Centro UniversitÔrio da Fundação Educacional Guaxupé'),
(26410, 22835, 'es', 'name', 'Universidad de TecnologĆ­a y Comercio'),
(26411, 22836, 'pt', 'name', 'Centro UniversitƔrio de Votuporanga'),
(26412, 22837, 'en', 'name', 'HRH Princess Christian''s Hospital'),
(26413, 22838, 'no_lang_code', 'name', 'Soliani Emc (Italy)'),
(26414, 22839, 'en', 'name', 'Yasuda Women''s University'),
(26415, 22839, 'ja', 'name', '安田儳子大学'),
(26416, 22840, 'no_lang_code', 'name', 'Power Lake (Sweden)'),
(26417, 22841, 'en', 'name', 'Spire Hartswood Hospital'),
(26418, 22842, 'en', 'name', 'Tver State University'),
(26419, 22842, 'ru', 'name', 'Тверской Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26420, 22843, 'no_lang_code', 'name', 'Xerox (United Kingdom)'),
(26421, 22844, 'en', 'name', 'Korea National University of Education'),
(26422, 22844, 'ko', 'name', 'ķ•œźµ­źµģ›ėŒ€ķ•™źµ'),
(26423, 22845, 'no', 'name', 'Seniornett'),
(26424, 22846, 'en', 'name', 'Renacres Hospital'),
(26425, 22847, 'no_lang_code', 'name', 'Kƶrber (Germany)'),
(26426, 22848, 'pt', 'name', 'Museu da PresidĆŖncia da RepĆŗblica'),
(26427, 22849, 'en', 'name', 'Wokingham Hospital'),
(26428, 22850, 'en', 'name', 'Pyay Technological University'),
(26429, 22850, 'my', 'name', 'į€•į€¼į€Šį€ŗį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(26430, 22851, 'no_lang_code', 'name', 'Wardell Armstrong (United Kingdom)'),
(26431, 22852, 'es', 'name', 'Universidad Santa Fe'),
(26432, 22853, 'es', 'name', 'Universitario Bauhaus'),
(26433, 22854, 'es', 'name', 'Institución Universitaria Bellas Artes y Ciencias de Bolívar'),
(26434, 22855, 'no_lang_code', 'name', 'Norsk Hydro (Sweden)'),
(26435, 22856, 'no_lang_code', 'name', 'Elwyn'),
(26436, 22857, 'es', 'name', 'Universidad del Tacana'),
(26437, 22858, 'es', 'name', 'Instituto Superior de Educación Rural'),
(26438, 22859, 'no_lang_code', 'name', 'Parallel Consulting (United States)'),
(26439, 22860, 'no_lang_code', 'name', 'Progressive Energy (United Kingdom)'),
(26440, 22861, 'no_lang_code', 'name', 'Safoso (Switzerland)'),
(26441, 22862, 'no_lang_code', 'name', 'OZ Biosciences (France)'),
(26442, 22863, 'sk', 'name', 'TekovskÔ HvezdÔreň, TekovskÔ hvezdÔreň v Leviciach'),
(26443, 22864, 'no_lang_code', 'name', 'Immune Regulation (United Kingdom)'),
(26444, 22865, 'no_lang_code', 'name', 'Power Curbers (United States)'),
(26445, 22866, 'no_lang_code', 'name', 'WSP Sverige (Sweden)'),
(26446, 22867, 'en', 'name', 'National Observatory'),
(26447, 22867, 'pt', 'name', 'Observatório Nacional'),
(26448, 22868, 'es', 'name', 'Universidad JosƩ Antonio PƔez'),
(26449, 22869, 'no_lang_code', 'name', 'Tritech Group (United Kingdom)'),
(26450, 22870, 'en', 'name', 'Tantramar Wetlands Centre'),
(26451, 22871, 'en', 'name', 'Dilke Memorial Hospital'),
(26452, 22872, 'no_lang_code', 'name', 'Schlumberger (Netherlands)'),
(26453, 22873, 'es', 'name', 'Universidad Católica San Pablo'),
(26454, 22874, 'en', 'name', 'Association for Canadian and QuƩbec Literatures'),
(26455, 22874, 'fr', 'name', 'L’Association des littĆ©ratures canadiennes et quĆ©bĆ©coise'),
(26456, 22875, 'no_lang_code', 'name', 'Villeroy & Boch (Germany)'),
(26457, 22876, 'en', 'name', 'University of Qom'),
(26458, 22876, 'fa', 'name', 'دانؓگاه قم'),
(26459, 22877, 'no_lang_code', 'name', 'Q Sphere (United Kingdom)'),
(26460, 22878, 'en', 'name', 'Mikocheni Agricultural Research Institute'),
(26461, 22879, 'es', 'name', 'Universidad de San MartĆ­n de Porres, University of San MartĆ­n de Porres'),
(26462, 22880, 'en', 'name', 'West View Integrated Care Centre'),
(26463, 22881, 'en', 'name', 'Antioch University Los Angeles'),
(26464, 22882, 'no_lang_code', 'name', 'Oxford BioMedica (United Kingdom)'),
(26465, 22883, 'no_lang_code', 'name', 'Trustor Precision Components (Sweden)'),
(26466, 22884, 'en', 'name', 'Telecommunications Policy Research Conference'),
(26467, 22885, 'en', 'name', 'Aconcagua University'),
(26468, 22885, 'es', 'name', 'Universidad del Aconcagua'),
(26469, 22886, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Architecture d''IntĆ©rieur'),
(26470, 22887, 'en', 'name', 'Halstead Hospital'),
(26471, 22888, 'no_lang_code', 'name', 'Vascular Pharmaceuticals (United States)'),
(26472, 22889, 'en', 'name', 'Springfield Hospital'),
(26473, 22890, 'no_lang_code', 'name', 'ScienCentral (United States)'),
(26474, 22891, 'en', 'name', 'Hunan Children''s Hospital'),
(26475, 22891, 'zh', 'name', 'ę¹–å—ēœå„æē«„åŒ»é™¢'),
(26476, 22892, 'es', 'name', 'Centro Universitario Americano del Estado de Morelos'),
(26477, 22893, 'es', 'name', 'Universidad Argentina John F. Kennedy'),
(26478, 22894, 'en', 'name', 'West Hertfordshire Hospitals NHS Trust'),
(26479, 22895, 'en', 'name', 'Sylvia Lawry Centre for Multiple Sclerosis Research'),
(26480, 22896, 'no_lang_code', 'name', 'OptTek Systems (United States)'),
(26481, 22897, 'no_lang_code', 'name', 'Kelme (Spain)'),
(26482, 22898, 'es', 'name', 'Instituto Tolimense de Formación Técnica Profesional'),
(26483, 22899, 'fr', 'name', 'Institut Universitaire de la CƓte'),
(26484, 22900, 'fr', 'name', 'UniversitƩ Libre de Kinshasa'),
(26485, 22901, 'en', 'name', 'Kellokoski Hospital'),
(26486, 22901, 'fi', 'name', 'Kellokosken Sairaala'),
(26487, 22902, 'no_lang_code', 'name', 'THT Control Oy (Finland)'),
(26488, 22903, 'en', 'name', 'Advanced Applied Physics Solutions'),
(26489, 22904, 'no_lang_code', 'name', 'TiConUno (Italy)'),
(26490, 22905, 'en', 'name', 'PDC-ARGOS'),
(26491, 22906, 'no_lang_code', 'name', 'Zenalux Biomedical (United States)'),
(26492, 22907, 'es', 'name', 'Fundación Universitaria Juan de Castellanos'),
(26493, 22908, 'no_lang_code', 'name', 'Tadiso (United States)'),
(26494, 22909, 'no_lang_code', 'name', 'Municipality of Athens Development Agency'),
(26495, 22910, 'no_lang_code', 'name', 'Slider Studio (United Kingdom)'),
(26496, 22911, 'en', 'name', 'Women Accepting Responsibility'),
(26497, 22912, 'no_lang_code', 'name', 'RMC Research (United States)'),
(26498, 22913, 'no_lang_code', 'name', 'Spring Techno (Germany)'),
(26499, 22914, 'fr', 'name', 'Sup de Co Marrakech, Ɖcole SupĆ©rieure de Commerce de Marrakech'),
(26500, 22915, 'en', 'name', 'St. Gregory''s University'),
(26501, 22916, 'fr', 'name', 'Institut universitaire de technologie, Instituts Universitaires de Technologie'),
(26502, 22917, 'es', 'name', 'Universidad TƩcnica del Norte'),
(26503, 22918, 'no_lang_code', 'name', 'Foundry (United Kingdom)'),
(26504, 22919, 'no_lang_code', 'name', 'Confers (United Kingdom)'),
(26505, 22920, 'no_lang_code', 'name', 'Simulation Solutions (United Kingdom)'),
(26506, 22921, 'no_lang_code', 'name', 'Zumtobel Group (United Kingdom)'),
(26507, 22922, 'en', 'name', 'Greenside Design Center College of Design'),
(26508, 22923, 'no_lang_code', 'name', 'CompaƱƭa Mexicana de Radiologƭa (United States)'),
(26509, 22924, 'no_lang_code', 'name', 'Wind Technologies (United Kingdom)'),
(26510, 22925, 'en', 'name', 'Technical Chamber of Greece'),
(26511, 22926, 'en', 'name', 'Broadgreen Hospital'),
(26512, 22927, 'no_lang_code', 'name', 'Warwick Analytics (United Kingdom)'),
(26513, 22928, 'no_lang_code', 'name', 'Finisar (Sweden)'),
(26514, 22929, 'en', 'name', 'New Mexico Family Network'),
(26515, 22930, 'no_lang_code', 'name', 'Puracyp (United States)'),
(26516, 22931, 'es', 'name', 'Universidad San Pedro'),
(26517, 22932, 'de', 'name', 'Zentrum für angewandte Psychologie, Umwelt- und Sozialforschung'),
(26518, 22932, 'en', 'name', 'Centre for Applied Psychology, Environmental and Social Research'),
(26519, 22933, 'fr', 'name', 'Ɖcole d''Architecture de Casablanca'),
(26520, 22934, 'en', 'name', 'Copperbelt University'),
(26521, 22935, 'en', 'name', 'Cleary University'),
(26522, 22936, 'es', 'name', 'Universidad Cristiana de Bolivia'),
(26523, 22937, 'en', 'name', 'UK Data Archive'),
(26524, 22938, 'fr', 'name', 'Association Canadienne des Sociologues et Anthropologues de Langue FranƧaise'),
(26525, 22939, 'en', 'name', 'Odiham Cottage Hospital'),
(26526, 22940, 'no_lang_code', 'name', 'Türksat (Turkey)'),
(26527, 22940, 'tr', 'name', 'Türksat Uydu Haberleşme Kablo TV ve İşletme A.Ş.'),
(26528, 22941, 'fr', 'name', 'Centre Hospitalier d''Arras'),
(26529, 22942, 'en', 'name', 'National Penghu University of Science and Technology'),
(26530, 22942, 'zh', 'name', 'åœ‹ē«‹ę¾Žę¹–ē§‘ęŠ€å¤§å­ø'),
(26531, 22943, 'de', 'name', 'PROJEKTkompetenz'),
(26532, 22944, 'en', 'name', 'Northeast Iowa Dairy Foundation'),
(26533, 22945, 'es', 'name', 'Universidad AnÔhuac de Cancún'),
(26534, 22946, 'en', 'name', 'Palmer Community Hospital'),
(26535, 22947, 'en', 'name', 'Los Algarrobos Observatory'),
(26536, 22947, 'es', 'name', 'Observatorio Los Algarrobos'),
(26537, 22948, 'en', 'name', 'University of Toliara'),
(26538, 22948, 'fr', 'name', 'UniversitƩ de Toliara'),
(26539, 22949, 'en', 'name', 'University Hospitals of North Midlands NHS Trust'),
(26540, 22950, 'no_lang_code', 'name', 'Third Dimension Technologies (United States)'),
(26541, 22951, 'es', 'name', 'Universidad IndĆ­gena Quechua Boliviana Casimiro Huanca'),
(26542, 22952, 'es', 'name', 'Universidad de la Marina Mercante'),
(26543, 22953, 'pt', 'name', 'Centro UniversitƔrio do Norte Paulista'),
(26544, 22954, 'en', 'name', 'Living on Earth'),
(26545, 22955, 'en', 'name', 'Production Management Institute of Southern Africa'),
(26546, 22956, 'en', 'name', 'Spire Alexandra Hospital'),
(26547, 22957, 'en', 'name', 'Farnham Hospital & Centre For Health'),
(26548, 22958, 'no_lang_code', 'name', 'Analogic (United States)'),
(26549, 22959, 'es', 'name', 'Universidad Latinoamericana'),
(26550, 22960, 'en', 'name', 'PlasticsEurope'),
(26551, 22961, 'en', 'name', 'West Liberty University'),
(26552, 22962, 'no_lang_code', 'name', 'EduHintOVD (Netherlands)'),
(26553, 22963, 'en', 'name', 'Project Oceanology'),
(26554, 22964, 'no_lang_code', 'name', 'PLANCO Consulting (Germany)'),
(26555, 22965, 'en', 'name', 'University of NgaoundƩrƩ'),
(26556, 22965, 'fr', 'name', 'UniversitƩ de NgaoundƩrƩ'),
(26557, 22966, 'no_lang_code', 'name', 'Research & Diagnostic Antibodies (United States)'),
(26558, 22967, 'en', 'name', 'Damelin'),
(26559, 22968, 'en', 'name', 'Buckland Hospital'),
(26560, 22969, 'es', 'name', 'Universidad Interamericana de PanamĆ”'),
(26561, 22970, 'en', 'name', 'Science Museum Group'),
(26562, 22971, 'en', 'name', 'University of the Amazon'),
(26563, 22971, 'es', 'name', 'Universidad de la Amazonia'),
(26564, 22972, 'es', 'name', 'Universidad Xilotzingo'),
(26565, 22973, 'no_lang_code', 'name', 'Tecnologia e Engenharia de Materiais (Portugal)'),
(26566, 22974, 'no_lang_code', 'name', 'O-Ray Pharma (United States)'),
(26567, 22975, 'pt', 'name', 'Raiz - Instituto De Investigação Da Floresta E Papel'),
(26568, 22976, 'fr', 'name', 'Institut SupƩrieur de Statistique de Lubumbashi'),
(26569, 22977, 'en', 'name', 'Missoula County Public Schools'),
(26570, 22978, 'en', 'name', 'Social Development Commission'),
(26571, 22979, 'no_lang_code', 'name', 'ResearchWorks (United States)'),
(26572, 22980, 'en', 'name', 'Isebrook Hospital'),
(26573, 22981, 'es', 'name', 'Universidad Nacional de Huancavelica'),
(26574, 22982, 'es', 'name', 'Enac Instituto Profesional'),
(26575, 22983, 'pt', 'name', 'Instituto Superior Cristão'),
(26576, 22984, 'en', 'name', 'Trades Union Congress'),
(26577, 22985, 'es', 'name', 'Universidad Tec De Oriente'),
(26578, 22986, 'en', 'name', 'Western Piedmont Community College'),
(26579, 22987, 'fr', 'name', 'Armand Frappier Museum'),
(26580, 22988, 'en', 'name', 'North Carolina Biotechnology Center'),
(26581, 22989, 'en', 'name', 'The Polytechnic Ibadan'),
(26582, 22990, 'no_lang_code', 'name', 'NRU PrƤzisionstechnologie (Germany)'),
(26583, 22991, 'en', 'name', 'Radiation Protection Institute'),
(26584, 22992, 'en', 'name', 'Thomas Nelson Community College'),
(26585, 22993, 'no_lang_code', 'name', 'Xinyang Central Hospital'),
(26586, 22993, 'zh', 'name', 'äæ”é˜³åø‚äø­åæƒåŒ»é™¢'),
(26587, 22994, 'es', 'name', 'Centro Universitario de Ciudad JuƔrez'),
(26588, 22995, 'en', 'name', 'Northern Ostrobothnia Hospital District'),
(26589, 22995, 'fi', 'name', 'Pohjois-Pohjanmaan Sairaanhoitopiiri'),
(26590, 22996, 'no_lang_code', 'name', 'Pfizer (Italy)'),
(26591, 22997, 'en', 'name', 'Southwest Louisiana Area Health Education Center'),
(26592, 22998, 'no_lang_code', 'name', 'Novacta (United Kingdom)'),
(26593, 22999, 'no_lang_code', 'name', 'Prodyne (United States)'),
(26594, 23000, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القضارف'),
(26595, 23000, 'en', 'name', 'Gadarif University'),
(26596, 23001, 'no_lang_code', 'name', 'Micro Photon Devices'),
(26597, 23002, 'no_lang_code', 'name', 'REFAMED (Italy)'),
(26598, 23003, 'no_lang_code', 'name', 'Meta Vision Systems (United Kingdom)'),
(26599, 23004, 'en', 'name', 'Monterey Peninsula Unified School District'),
(26600, 23005, 'en', 'name', 'National University of Chilecito'),
(26601, 23005, 'es', 'name', 'Universidad Nacional de Chilecito'),
(26602, 23006, 'en', 'name', 'Clarke International University'),
(26603, 23007, 'no_lang_code', 'name', 'PA Consulting Group'),
(26604, 23008, 'en', 'name', 'Zenith University College'),
(26605, 23009, 'en', 'name', 'Rathbone Hospital'),
(26606, 23010, 'en', 'name', 'Bioindustrial Innovation Canada'),
(26607, 23011, 'en', 'name', 'Minnesota Zoo'),
(26608, 23012, 'no_lang_code', 'name', 'AudioCodes (Israel)'),
(26609, 23013, 'no_lang_code', 'name', 'Micro Optics Technologies (United States)'),
(26610, 23014, 'no_lang_code', 'name', 'Zubiola (Spain)'),
(26611, 23015, 'en', 'name', 'BMI Bishops Wood Hospital'),
(26612, 23016, 'es', 'name', 'Rafael LandĆ­var University, Universidad Rafael LandĆ­var'),
(26613, 23017, 'en', 'name', 'Senshu University'),
(26614, 23017, 'ja', 'name', '専修大学'),
(26615, 23018, 'no_lang_code', 'name', 'Trusted Renewables (United Kingdom)'),
(26616, 23019, 'no_lang_code', 'name', 'Orange (Belgium)'),
(26617, 23020, 'en', 'name', 'Indspire'),
(26618, 23021, 'es', 'name', 'Universidad Católica de La Plata'),
(26619, 23022, 'en', 'name', 'Ajayi Crowther University'),
(26620, 23023, 'en', 'name', 'Hopewood Park Hospital'),
(26621, 23024, 'no_lang_code', 'name', 'Seratec (Germany)'),
(26622, 23025, 'en', 'name', 'South Warwickshire NHS Foundation Trust'),
(26623, 23026, 'en', 'name', 'Florida State University-Panama'),
(26624, 23027, 'no_lang_code', 'name', 'Recupyl (France)'),
(26625, 23028, 'en', 'name', 'Tenbury Community Hospital');
INSERT INTO `ror_settings` VALUES
(26626, 23029, 'es', 'name', 'Instituto Departamental de Bellas Artes'),
(26627, 23030, 'en', 'name', 'St Mary''s Hospital'),
(26628, 23031, 'no_lang_code', 'name', 'Nemaura Pharma (United Kingdom)'),
(26629, 23032, 'en', 'name', 'Gloucestershire Health and Care NHS Foundation Trust'),
(26630, 23033, 'no_lang_code', 'name', 'Taitech (United States)'),
(26631, 23034, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŲ¬Ł„'),
(26632, 23034, 'en', 'name', 'University of Jijel'),
(26633, 23035, 'en', 'name', 'Peking University Shenzhen Hospital'),
(26634, 23035, 'zh', 'name', 'åŒ—äŗ¬å¤§å­¦ę·±åœ³åŒ»é™¢'),
(26635, 23036, 'ar', 'name', 'معهد أكتوبر Ų§Ł„Ų¹Ų§Ł„ŁŠ للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(26636, 23036, 'en', 'name', 'October High Institute For Enginnering and Technology'),
(26637, 23037, 'es', 'name', 'Universidad Nacional del Altiplano'),
(26638, 23038, 'es', 'name', 'Universidad Nuestra SeƱora de La Paz'),
(26639, 23039, 'no_lang_code', 'name', 'SpazioDati (Italy)'),
(26640, 23040, 'no_lang_code', 'name', 'New Generation Biogas'),
(26641, 23041, 'no_lang_code', 'name', 'Statistics Collaborative'),
(26642, 23042, 'no_lang_code', 'name', 'PinMed (United States)'),
(26643, 23043, 'no_lang_code', 'name', 'Turkish Electro Technology (Turkey)'),
(26644, 23044, 'nl', 'name', 'Nationaal ICT Instituut in de Zorg'),
(26645, 23045, 'fr', 'name', 'Pour la SolidaritƩ'),
(26646, 23046, 'no_lang_code', 'name', 'Navimetric (Spain)'),
(26647, 23047, 'no_lang_code', 'name', 'Roslin Cells (United Kingdom)'),
(26648, 23048, 'no_lang_code', 'name', 'Pro Optica (Romania)'),
(26649, 23049, 'no_lang_code', 'name', 'Sappi (Netherlands)'),
(26650, 23050, 'es', 'name', 'Universidad de Oriente'),
(26651, 23051, 'en', 'name', 'Braintree Community Hospital'),
(26652, 23052, 'es', 'name', 'Universidad de NorteamƩrica'),
(26653, 23053, 'en', 'name', 'William Penn University'),
(26654, 23054, 'en', 'name', 'National Laboratory of Health, Environment and Food'),
(26655, 23054, 'sl', 'name', 'Nacionalni laboratorij za zdravje, okolje in hrano'),
(26656, 23055, 'en', 'name', 'Indoc Research'),
(26657, 23056, 'es', 'name', 'Centro de Diseño, Arquitectura y Construcción'),
(26658, 23057, 'fr', 'name', 'Institut SupƩrieur de Statistiques de Kinshasa'),
(26659, 23058, 'no_lang_code', 'name', 'ProCertus BioPharm (United States)'),
(26660, 23059, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Informatique et de Management des Affaires'),
(26661, 23060, 'es', 'name', 'Grupo de Observadores Astronómicos de Tenerife'),
(26662, 23061, 'it', 'name', 'Ospedaliero Santa Barbara'),
(26663, 23062, 'no_lang_code', 'name', 'TYPSA Group (Spain)'),
(26664, 23063, 'no_lang_code', 'name', 'Personal Space Technologies (Netherlands)'),
(26665, 23064, 'es', 'name', 'Universidad Nacional Experimental PolitƩcnica "Antonio JosƩ de Sucre"'),
(26666, 23065, 'en', 'name', 'Central Middlesex Hospital'),
(26667, 23066, 'en', 'name', 'Museums Association'),
(26668, 23067, 'no_lang_code', 'name', 'Pixelligent (United States)'),
(26669, 23068, 'en', 'name', 'Lydney and District Hospital'),
(26670, 23069, 'en', 'name', 'Center Technological University'),
(26671, 23069, 'es', 'name', 'Universidad Tecnológica del Centro'),
(26672, 23070, 'en', 'name', 'The Concrete Centre'),
(26673, 23071, 'es', 'name', 'Universidad de Santander'),
(26674, 23072, 'fr', 'name', 'Institut SupƩrieur PƩdagogique Technique'),
(26675, 23073, 'es', 'name', 'Universidad ISA'),
(26676, 23074, 'no_lang_code', 'name', 'Meso (United States)'),
(26677, 23075, 'en', 'name', 'National Patient Safety Agency'),
(26678, 23076, 'es', 'name', 'Centro Universitario en Periodismo y Publicidad'),
(26679, 23077, 'en', 'name', 'Concrete Society'),
(26680, 23078, 'no_lang_code', 'name', 'Oryzon Genomics (Spain)'),
(26681, 23079, 'es', 'name', 'Universidad Católica Sedes Sapientiae'),
(26682, 23080, 'en', 'name', 'Canadian Industrial Relations Association'),
(26683, 23080, 'fr', 'name', 'Association canadienne des industrielles'),
(26684, 23081, 'en', 'name', 'Riverside County Department of Environmental Health'),
(26685, 23082, 'es', 'name', 'Universidad Boliviana de InformƔtica'),
(26686, 23083, 'no_lang_code', 'name', 'PJH (United Kingdom)'),
(26687, 23084, 'en', 'name', 'Society of Wood Science and Technology'),
(26688, 23085, 'no_lang_code', 'name', 'Rangen (United States)'),
(26689, 23086, 'ar', 'name', 'المدرسة Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ų§Ł„Ų¬ŁˆŁŠŲ©'),
(26690, 23086, 'fr', 'name', 'Ɖcole Royale de l''Air de Marrakech'),
(26691, 23087, 'no_lang_code', 'name', 'Optech (Canada)'),
(26692, 23088, 'es', 'name', 'Universidad Instituto Universitario del Estado de MƩxico'),
(26693, 23089, 'fr', 'name', 'UniversitƩ du Lac Tanganyika'),
(26694, 23090, 'no_lang_code', 'name', 'Nordic Bioscience (Denmark)'),
(26695, 23091, 'en', 'name', 'Concordia University'),
(26696, 23092, 'en', 'name', 'Roxbourne Medical Centre'),
(26697, 23093, 'es', 'name', 'Universidad Nacional de Pilar'),
(26698, 23094, 'no_lang_code', 'name', 'LDK (Greece)'),
(26699, 23095, 'en', 'name', 'Gorno-Altaisk State University'),
(26700, 23095, 'ru', 'name', 'Горно-Алтайский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(26701, 23096, 'es', 'name', 'Fundación Universitaria de PopayÔn'),
(26702, 23097, 'no_lang_code', 'name', 'Stocznia Gdynia (Poland)'),
(26703, 23098, 'en', 'name', 'Caritas University'),
(26704, 23099, 'no_lang_code', 'name', 'Microlime (Portugal)'),
(26705, 23100, 'en', 'name', 'Presbyterian Medical Services'),
(26706, 23101, 'en', 'name', 'Royal National Throat Nose and Ear Hospital'),
(26707, 23102, 'no_lang_code', 'name', 'NovAtel (Canada)'),
(26708, 23103, 'no_lang_code', 'name', 'SSM Computer Systems (Cyprus)'),
(26709, 23104, 'en', 'name', 'Mining Industry Human Resources Council'),
(26710, 23105, 'en', 'name', 'Islamic University in Uganda'),
(26711, 23106, 'no_lang_code', 'name', 'ZirChrom Separations (United States)'),
(26712, 23107, 'fr', 'name', 'Institut SupƩrieur de Commerce de Kinshasa'),
(26713, 23108, 'en', 'name', 'Loughborough Hospital'),
(26714, 23109, 'en', 'name', 'Campion College'),
(26715, 23110, 'no_lang_code', 'name', 'R&R Systems (Netherlands)'),
(26716, 23111, 'en', 'name', 'Centre for Probe Development and Commercialization'),
(26717, 23112, 'en', 'name', 'MindFuel'),
(26718, 23113, 'es', 'name', 'Universidad Internacional de Profesiones y Escuela Internacional de Turismo'),
(26719, 23114, 'no_lang_code', 'name', 'Boehringer Ingelheim (Sweden)'),
(26720, 23115, 'no_lang_code', 'name', 'Vecima Technology (United Kingdom)'),
(26721, 23116, 'en', 'name', 'BMI Goring Hall Hospital'),
(26722, 23117, 'en', 'name', 'St. Margaret''s Hospital'),
(26723, 23118, 'en', 'name', 'Niger Delta University'),
(26724, 23119, 'no_lang_code', 'name', 'Allied Vision Technologies (Canada)'),
(26725, 23120, 'pt', 'name', 'Centro UniversitƔrio Anhanguera'),
(26726, 23121, 'pt', 'name', 'Universidade Regional do Noroeste do Estado do Rio Grande do Sul'),
(26727, 23122, 'no_lang_code', 'name', 'Photonic Science (United Kingdom)'),
(26728, 23123, 'en', 'name', 'High-Tech Rabat-Agdal'),
(26729, 23124, 'no_lang_code', 'name', 'Nemetschek Allplan (Slovakia)'),
(26730, 23125, 'es', 'name', 'Corporación Universitaria Americana'),
(26731, 23126, 'es', 'name', 'Universidad de las Ciencias y el Arte de Costa Rica'),
(26732, 23127, 'en', 'name', 'Catholic University of Central Africa'),
(26733, 23127, 'fr', 'name', 'UniversitƩ catholique d''afrique centrale'),
(26734, 23128, 'es', 'name', 'Universidad Libre de Costa Rica'),
(26735, 23129, 'no_lang_code', 'name', 'Xaar (United Kingdom)'),
(26736, 23130, 'en', 'name', 'Midrand Graduate Institute'),
(26737, 23131, 'no_lang_code', 'name', 'Scour Prevention Systems (United Kingdom)'),
(26738, 23132, 'no_lang_code', 'name', 'Touchstone Research Laboratory (United States)'),
(26739, 23133, 'en', 'name', 'Association for Canadian Studies'),
(26740, 23134, 'es', 'name', 'Universidad Cristiana Autónoma de Nicaragua'),
(26741, 23135, 'no_lang_code', 'name', 'Huntsman (United Kingdom)'),
(26742, 23136, 'en', 'name', 'Western Community Hospital'),
(26743, 23137, 'no_lang_code', 'name', 'Vaxart (United States)'),
(26744, 23138, 'es', 'name', 'Universidad Loyola del PacĆ­fico'),
(26745, 23139, 'no_lang_code', 'name', 'SeaSpace (United States)'),
(26746, 23140, 'no_lang_code', 'name', 'Redes EnergƩticas Nacionais (Portugal)'),
(26747, 23141, 'en', 'name', 'South West Regional Authority'),
(26748, 23142, 'no_lang_code', 'name', 'TechnoFirst (France)'),
(26749, 23143, 'no_lang_code', 'name', 'Xilinx (Canada)'),
(26750, 23144, 'es', 'name', 'Corporación Escuela Tecnológica del Oriente'),
(26751, 23145, 'es', 'name', 'Universidad del Alica'),
(26752, 23146, 'es', 'name', 'Asociación Psicoanalítica de Buenos Aires'),
(26753, 23147, 'pt', 'name', 'Centro UniversitƔrio Plƭnio Leite'),
(26754, 23148, 'en', 'name', 'National Authority for Remote Sensing and Space Sciences'),
(26755, 23149, 'en', 'name', 'Canadian Communication Association'),
(26756, 23149, 'fr', 'name', 'Association Canadienne de Communication'),
(26757, 23150, 'bn', 'name', 'ঢাকা ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(26758, 23150, 'en', 'name', 'Dhaka University of Engineering & Technology'),
(26759, 23151, 'en', 'name', 'St Mary''s Hospital'),
(26760, 23152, 'es', 'name', 'Universidad de Tijuana'),
(26761, 23153, 'en', 'name', 'National Association of Research and Educational e-Infrastructures'),
(26762, 23154, 'en', 'name', 'Oklahoma Department of Agriculture Food and Forestry'),
(26763, 23155, 'en', 'name', 'Milton Keynes Hospital NHS Foundation Trust'),
(26764, 23156, 'es', 'name', 'Universidad Notarial Argentina'),
(26765, 23157, 'no_lang_code', 'name', 'South Yorkshire Passenger Transport Executive'),
(26766, 23158, 'en', 'name', 'Turgut Ɩzal University'),
(26767, 23158, 'tr', 'name', 'Turgut Ɩzal Ɯniversitesi'),
(26768, 23159, 'no_lang_code', 'name', 'Prolog Development Center'),
(26769, 23160, 'no_lang_code', 'name', 'Osiris Therapeutics (United States)'),
(26770, 23161, 'en', 'name', 'Linzhou Cancer Hospital'),
(26771, 23161, 'zh', 'name', 'ęž—å·žåø‚č‚æē˜¤åŒ»é™¢'),
(26772, 23162, 'no_lang_code', 'name', 'Sequenom (United States)'),
(26773, 23163, 'pt', 'name', 'Centro UniversitƔrio do Sul de Minas'),
(26774, 23164, 'en', 'name', 'Regional Youth Adult Social Action Partnership'),
(26775, 23165, 'en', 'name', 'Camborne Redruth Community Hospital'),
(26776, 23166, 'en', 'name', 'Bob Jones University'),
(26777, 23167, 'es', 'name', 'Universidad de Aconcagua'),
(26778, 23168, 'no_lang_code', 'name', 'Tecan (United Kingdom)'),
(26779, 23169, 'en', 'name', 'Williams Unified School District'),
(26780, 23170, 'es', 'name', 'Instituto de Estudios Universitarios'),
(26781, 23171, 'en', 'name', 'Yamhill County Public Health'),
(26782, 23172, 'en', 'name', 'Blandford Community Hospital'),
(26783, 23173, 'en', 'name', 'Antelope Hills Observatory'),
(26784, 23174, 'no_lang_code', 'name', 'Source BioScience (United Kingdom)'),
(26785, 23175, 'es', 'name', 'Universidad Albert Einstein'),
(26786, 23176, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± Ų¹ŲØŲÆ القادر'),
(26787, 23176, 'en', 'name', 'Emir Abdelkader University of Islamic Sciences'),
(26788, 23177, 'en', 'name', 'Women''s Treatment Center'),
(26789, 23178, 'es', 'name', 'Universidad de Especialidades'),
(26790, 23179, 'en', 'name', 'Swedish Foundry Association'),
(26791, 23180, 'no_lang_code', 'name', 'PowerCell (Sweden)'),
(26792, 23181, 'en', 'name', 'Youth and Family Services of Haddam Killingworth'),
(26793, 23182, 'en', 'name', 'Newark Hospital'),
(26794, 23183, 'no_lang_code', 'name', 'Pluservice (Italy)'),
(26795, 23184, 'no_lang_code', 'name', 'ULMA Embedded Solutions'),
(26796, 23185, 'en', 'name', 'Mountains of the Moon University'),
(26797, 23186, 'no_lang_code', 'name', 'Pinnacle Pharmaceuticals (United States)'),
(26798, 23187, 'no_lang_code', 'name', 'SGF International (Germany)'),
(26799, 23188, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المستقبل ŲØŁ…ŲµŲ±'),
(26800, 23188, 'en', 'name', 'Future University in Egypt'),
(26801, 23189, 'en', 'name', 'Shanxi Datong University'),
(26802, 23189, 'zh', 'name', '山脿大同大学'),
(26803, 23190, 'en', 'name', 'National Economists Club'),
(26804, 23191, 'en', 'name', 'International Islamic University Malaysia'),
(26805, 23191, 'ml', 'name', 'ą“‡ąµ»ą“±ąµ¼ą“Øą“¾ą“·ą“Øąµ½ ą“‡ą“øąµā€ą“²ą“¾ą“®ą“æą“•ąµ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµā€ą“øą“æą“±ąµą“±ą“æ ą“®ą“²ąµ‡ą“·ąµą“Æ'),
(26806, 23191, 'ms', 'name', 'Universiti Islam Antarabangsa Malaysia'),
(26807, 23192, 'no_lang_code', 'name', 'Take The Wind (Portugal)'),
(26808, 23193, 'no_lang_code', 'name', 'Scanwel (United Kingdom)'),
(26809, 23194, 'es', 'name', 'Universidad Femenina del Sagrado Corazón'),
(26810, 23195, 'no_lang_code', 'name', 'Molecular Innovations (United States)'),
(26811, 23196, 'en', 'name', 'Village for Families and Children'),
(26812, 23197, 'no_lang_code', 'name', 'Saltworks Technologies (Canada)'),
(26813, 23198, 'ar', 'name', 'المعهد العالى Ł„Ł„Ų³ŁŠŲ§Ų­Ų© ŁˆŲ§Ł„ŁŁ†Ų§ŲÆŁ‚ ŁˆŲ§Ł„Ų­Ų§Ų³ŲØ الآلى - Ų§Ł„Ų³ŁŠŁˆŁ / Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(26814, 23198, 'en', 'name', 'Higher Institute for Tourism, Hotels and Computer'),
(26815, 23199, 'en', 'name', 'Sittingbourne Memorial Hospital'),
(26816, 23200, 'fr', 'name', 'Haute Ɖcole de Commerce et de Management'),
(26817, 23201, 'en', 'name', 'Livingstone Community Hospital'),
(26818, 23202, 'no_lang_code', 'name', 'Marie Curie Association'),
(26819, 23203, 'no_lang_code', 'name', 'VHsquared (United Kingdom)'),
(26820, 23204, 'en', 'name', 'Carter Observatory'),
(26821, 23205, 'no_lang_code', 'name', 'Paralab (Portugal)'),
(26822, 23206, 'es', 'name', 'Universidad del Golfo'),
(26823, 23207, 'en', 'name', 'Roca'),
(26824, 23208, 'no_lang_code', 'name', 'Plastal (Italy)'),
(26825, 23209, 'en', 'name', 'Berkshire Healthcare NHS Foundation Trust'),
(26826, 23210, 'en', 'name', 'Pennine Care NHS Foundation Trust'),
(26827, 23211, 'ro', 'name', 'Institutul National de Cercetare Dezvoltare pentru Tehnologii Criogenice si Izotopice'),
(26828, 23212, 'en', 'name', 'Keiju Medical Center'),
(26829, 23212, 'ja', 'name', 'ęµåÆæē·åˆē—…é™¢'),
(26830, 23213, 'no_lang_code', 'name', 'Tiscali (Italy)'),
(26831, 23214, 'en', 'name', 'East Cleveland Primary Care Hospital'),
(26832, 23215, 'en', 'name', 'Hospital of St. Cross'),
(26833, 23216, 'en', 'name', 'Missouri Area Health Education Center'),
(26834, 23217, 'no_lang_code', 'name', 'VPIphotonics (Germany)'),
(26835, 23218, 'en', 'name', 'Spanish National Observatory'),
(26836, 23218, 'es', 'name', 'Observatorio Astronómico Nacional de España'),
(26837, 23219, 'en', 'name', 'Bolivarian University of Venezuela'),
(26838, 23219, 'es', 'name', 'Universidad Bolivariana de Venezuela'),
(26839, 23220, 'en', 'name', 'Innovate Niagara'),
(26840, 23221, 'no_lang_code', 'name', 'Burness Corlett Three Quays (United Kingdom)'),
(26841, 23222, 'no_lang_code', 'name', 'Viper RF (United Kingdom)'),
(26842, 23223, 'da', 'name', 'Syddansk Erhvervsskole'),
(26843, 23224, 'de', 'name', 'The Zentrum für BrennstoffzellenTechnik'),
(26844, 23224, 'en', 'name', 'The Hydrogen and Fuel Cell Center'),
(26845, 23225, 'no_lang_code', 'name', 'Probetex (United States)'),
(26846, 23226, 'es', 'name', 'Universidad Internacional San Isidro Labrador'),
(26847, 23227, 'fr', 'name', 'La BoƮte Ơ lettres'),
(26848, 23228, 'no_lang_code', 'name', 'Amerindian Research in Quebec (Canada)'),
(26849, 23229, 'no_lang_code', 'name', 'Merlexi (United States)'),
(26850, 23230, 'no_lang_code', 'name', 'Smiths Detection (France)'),
(26851, 23231, 'no_lang_code', 'name', 'Norcontel'),
(26852, 23232, 'en', 'name', 'Tunbridge Wells Hospital'),
(26853, 23233, 'en', 'name', 'University of Belgrano'),
(26854, 23233, 'es', 'name', 'Universidad de Belgrano'),
(26855, 23233, 'fr', 'name', 'UniversitƩ de belgrano'),
(26856, 23234, 'no_lang_code', 'name', 'Siemens (Sweden)'),
(26857, 23235, 'no_lang_code', 'name', 'Robinson Brothers (United Kingdom)'),
(26858, 23236, 'no_lang_code', 'name', 'Eurofins (Germany)'),
(26859, 23237, 'no_lang_code', 'name', 'TenCate (Netherlands)'),
(26860, 23238, 'en', 'name', 'Longton Cottage Hospital'),
(26861, 23239, 'en', 'name', 'Organisation for International Dialogue and Conflict Management'),
(26862, 23240, 'no_lang_code', 'name', 'Pflegewerk (Germany)'),
(26863, 23241, 'no_lang_code', 'name', 'Lion Capital (United Kingdom)'),
(26864, 23242, 'nl', 'name', 'Waste'),
(26865, 23243, 'en', 'name', 'Northrise University'),
(26866, 23244, 'en', 'name', 'Midhurst Community Hospital'),
(26867, 23245, 'en', 'name', 'University of Toamasina'),
(26868, 23245, 'fr', 'name', 'UniversitƩ de Toamasina'),
(26869, 23245, 'mg', 'name', 'Oniversite Toamasina'),
(26870, 23246, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń‚Ń€Š°Š½ŃŠæŠ°Ń€Ń‚Ńƒ'),
(26871, 23246, 'en', 'name', 'Belarusian State University of Transport'),
(26872, 23246, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ транспорта'),
(26873, 23247, 'en', 'name', 'Mersey Care NHS Trust'),
(26874, 23248, 'en', 'name', 'OpticsValley'),
(26875, 23249, 'en', 'name', 'Roane County Anti-Drug Coalition'),
(26876, 23250, 'es', 'name', 'Observatorio San Calixto'),
(26877, 23251, 'en', 'name', 'Juan AgustĆ­n Maza University'),
(26878, 23251, 'es', 'name', 'Universidad Juan AgustĆ­n Maza'),
(26879, 23252, 'no_lang_code', 'name', 'Technodyne International (United Kingdom)'),
(26880, 23253, 'no_lang_code', 'name', 'Manufacturas Serviplast (Spain)'),
(26881, 23254, 'en', 'name', 'Mico University College'),
(26882, 23255, 'en', 'name', 'Kitakashiwa Rehabilitation General Hospital'),
(26883, 23255, 'ja', 'name', 'åŒ—ęŸćƒŖćƒćƒ“ćƒŖē·åˆē—…é™¢'),
(26884, 23256, 'no_lang_code', 'name', 'Moma (Italy)'),
(26885, 23257, 'en', 'name', 'Western International University'),
(26886, 23258, 'es', 'name', 'Instituto Latinoamericano de Computación'),
(26887, 23259, 'en', 'name', 'The New World University'),
(26888, 23259, 'es', 'name', 'Universidad Nuevo Mundo'),
(26889, 23260, 'es', 'name', 'Universidad Nacional de Tumbes'),
(26890, 23261, 'no_lang_code', 'name', 'VIB Isolatietechniek (Netherlands)'),
(26891, 23262, 'en', 'name', 'Sendai Astronomical Observatory'),
(26892, 23263, 'es', 'name', 'Universidad Nacional Experimental de los Llanos Centrales Rómulo Gallegos'),
(26893, 23264, 'en', 'name', 'Stanley Park Ecology Society'),
(26894, 23265, 'es', 'name', 'Colegio FrancƩs Hidalgo de MƩxico'),
(26895, 23266, 'en', 'name', 'University FermĆ­n Toro'),
(26896, 23266, 'es', 'name', 'Universidad FermĆ­n Toro'),
(26897, 23267, 'no_lang_code', 'name', 'Smiths Group (Germany)'),
(26898, 23268, 'es', 'name', 'Universidad Privada del Valle'),
(26899, 23269, 'en', 'name', 'Morioka University'),
(26900, 23269, 'ja', 'name', '盛岔大学'),
(26901, 23270, 'fr', 'name', 'Ɖcole SupĆ©rieure AlgĆ©rienne des Affaires'),
(26902, 23271, 'en', 'name', 'Swiss Council for Accident Prevention'),
(26903, 23271, 'fr', 'name', 'Bureau suisse de prƩvention des accidents'),
(26904, 23272, 'no_lang_code', 'name', 'Regulus (Czechia)'),
(26905, 23273, 'es', 'name', 'Escuela Argentina de Negocios'),
(26906, 23274, 'no_lang_code', 'name', 'NovaMechanics (Cyprus)'),
(26907, 23275, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŁˆŁ„ŁŠŲŖŁƒŁ†Łƒ ŁŁ„Ų³Ų·ŁŠŁ†'),
(26908, 23275, 'en', 'name', 'Palestine Polytechnic University'),
(26909, 23276, 'es', 'name', 'Universidad Autónoma del Noreste'),
(26910, 23277, 'no_lang_code', 'name', 'Regens (Hungary)'),
(26911, 23278, 'no_lang_code', 'name', 'TagArray (United States)'),
(26912, 23279, 'en', 'name', 'Ministry of Finance'),
(26913, 23279, 'fi', 'name', 'Valtiovarainministeriƶ'),
(26914, 23279, 'sv', 'name', 'Finansministeriet'),
(26915, 23280, 'de', 'name', 'Bagnoud Observatory, Observatoire FranƧois-Xavier Bagnoud'),
(26916, 23281, 'no_lang_code', 'name', 'SiliCycle (Canada)'),
(26917, 23282, 'es', 'name', 'Facultad de Teologƭa del Uruguay MonseƱor Mariano Soler'),
(26918, 23283, 'es', 'name', 'Universidad Autónoma del Paraguay'),
(26919, 23284, 'fr', 'name', 'UniversitƩ Protestante d''Afrique Centrale'),
(26920, 23285, 'no_lang_code', 'name', 'Phoebus Optoelectronics (United States)'),
(26921, 23286, 'pt', 'name', 'Centro UniversitƔrio do Cerrado Patrocƭnio'),
(26922, 23287, 'en', 'name', 'New Orleans AIDS Task Force'),
(26923, 23288, 'en', 'name', 'East–West University'),
(26924, 23289, 'en', 'name', 'Wisconsin International University College'),
(26925, 23290, 'en', 'name', 'Italian Labour Union'),
(26926, 23290, 'it', 'name', 'Unione Italiana del Lavoro'),
(26927, 23291, 'en', 'name', 'Han Dan City Eye Hospital - The Third Hospital of Handan'),
(26928, 23291, 'zh', 'name', 'é‚Æéƒøåø‚ēœ¼ē§‘åŒ»é™¢ļ¼ˆé‚Æéƒøåø‚ē¬¬äø‰åŒ»é™¢ļ¼‰'),
(26929, 23292, 'en', 'name', 'Barking, Havering And Redbridge University Hospitals NHS Trust'),
(26930, 23293, 'en', 'name', 'Mount Wilson Observatory'),
(26931, 23293, 'es', 'name', 'Observatorio Monte Wilson'),
(26932, 23293, 'fr', 'name', 'Observatoire du mont wilson'),
(26933, 23294, 'en', 'name', 'Northland Pioneer College'),
(26934, 23295, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Constantine'),
(26935, 23296, 'en', 'name', 'World Health Organization - Zambia'),
(26936, 23297, 'fr', 'name', 'Time UniversitƩ'),
(26937, 23298, 'no_lang_code', 'name', 'Phoenix Technologies (Canada)'),
(26938, 23299, 'es', 'name', 'Universidad de Ciencias Pedagógicas Félix Varela Morales'),
(26939, 23300, 'en', 'name', 'Health International Private University'),
(26940, 23301, 'no_lang_code', 'name', 'Veris Technologies (United States)'),
(26941, 23302, 'en', 'name', 'Norton Sound Health Corporation'),
(26942, 23303, 'no_lang_code', 'name', 'Southeast'),
(26943, 23304, 'en', 'name', 'Shoreline Community College'),
(26944, 23305, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للمصرفة'),
(26945, 23305, 'fr', 'name', 'Ɖcole SupĆ©rieure de Banque'),
(26946, 23306, 'pt', 'name', 'Centro UniversitÔrio Monte Serrat, São Judas Campus Unimonte'),
(26947, 23307, 'no_lang_code', 'name', 'Unisys (Belgium)'),
(26948, 23308, 'en', 'name', 'Walnut Tree Hospital'),
(26949, 23309, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للتجارة ŁˆŲ§Ł„ŲŖŲ³ŁŠŁŠŲ± بطنجة'),
(26950, 23309, 'fr', 'name', 'Ɖcole Nationale de Commerce et de Gestion de Tanger'),
(26951, 23310, 'en', 'name', 'Wye Valley NHS Trust'),
(26952, 23311, 'pt', 'name', 'Centro Universitario FIAM FAAM'),
(26953, 23312, 'no_lang_code', 'name', 'MIDI (United States)'),
(26954, 23313, 'en', 'name', 'Changsha University of Science and Technology'),
(26955, 23313, 'zh', 'name', '长沙理巄大学'),
(26956, 23314, 'no_lang_code', 'name', 'UD-GenoMed (Hungary)'),
(26957, 23315, 'en', 'name', 'Grantham University'),
(26958, 23316, 'en', 'name', 'Nuclear Safety Research Institute'),
(26959, 23316, 'hu', 'name', 'NukleÔris BiztonsÔgi Kutatóintézet'),
(26960, 23317, 'no_lang_code', 'name', 'Cisco Systems (Israel)'),
(26961, 23318, 'es', 'name', 'Universidad Valle del Momboy'),
(26962, 23319, 'en', 'name', 'The South Cheshire Private Hospital'),
(26963, 23320, 'es', 'name', 'Universidad del PacĆ­fico'),
(26964, 23321, 'es', 'name', 'Universidad Pablo Guardado ChƔvez'),
(26965, 23322, 'no_lang_code', 'name', 'OceanWorks International (Canada)'),
(26966, 23323, 'no_lang_code', 'name', 'Imenco (Norway)'),
(26967, 23324, 'no_lang_code', 'name', 'Turbowinds (Belgium)'),
(26968, 23325, 'en', 'name', 'Henley-Putnam School of Strategic Security'),
(26969, 23326, 'no_lang_code', 'name', 'Techneat Engineering (United Kingdom)'),
(26970, 23327, 'no_lang_code', 'name', 'Protabit (United States)'),
(26971, 23328, 'en', 'name', 'Moorfields Eye Hospital NHS Foundation Trust'),
(26972, 23329, 'no_lang_code', 'name', 'Nasfine Photonics (United States)'),
(26973, 23330, 'en', 'name', 'Berrywood Hospital'),
(26974, 23331, 'en', 'name', 'Institute of Social Work'),
(26975, 23332, 'en', 'name', 'Lancashire Care NHS Foundation Trust'),
(26976, 23333, 'en', 'name', 'Royal Society of Tropical Medicine and Hygiene'),
(26977, 23334, 'en', 'name', 'Norfolk County Council'),
(26978, 23335, 'fr', 'name', 'Ɖcole SupĆ©rieure de Management AppliquĆ©'),
(26979, 23336, 'en', 'name', 'Santa Barbara County Public Health Department'),
(26980, 23337, 'en', 'name', 'Altrincham Hospital'),
(26981, 23338, 'no_lang_code', 'name', 'TecnologĆ­as y Equipos para el Medio Ambiente (Spain)'),
(26982, 23339, 'no_lang_code', 'name', 'Tractell (United States)'),
(26983, 23340, 'en', 'name', 'Uckfield Community Hospital'),
(26984, 23341, 'no_lang_code', 'name', 'CFI Technologies (United States)'),
(26985, 23342, 'no_lang_code', 'name', 'Microcosm (United States)'),
(26986, 23343, 'no_lang_code', 'name', 'Quantos (France)'),
(26987, 23344, 'no_lang_code', 'name', 'Manufacture d''Orgues Muhleisen (France)'),
(26988, 23345, 'en', 'name', 'South Carolina Sea Grant Consortium'),
(26989, 23346, 'en', 'name', 'South African College of Applied Psychology'),
(26990, 23347, 'no_lang_code', 'name', 'Oxitec (United Kingdom)'),
(26991, 23348, 'pt', 'name', 'Universidade Brasil'),
(26992, 23349, 'no_lang_code', 'name', 'Scholastic Corporation (United States)'),
(26993, 23350, 'no_lang_code', 'name', 'Substrakt (United Kingdom)'),
(26994, 23351, 'en', 'name', 'Quebec Labrador Foundation'),
(26995, 23352, 'es', 'name', 'Universidad Nacional José Faustino SÔnchez Carrión'),
(26996, 23353, 'no_lang_code', 'name', 'Xi''an Shiyou University'),
(26997, 23353, 'zh', 'name', 'č„æå®‰ēŸ³ę²¹å¤§å­¦'),
(26998, 23354, 'no_lang_code', 'name', 'Pemu (Hungary)'),
(26999, 23355, 'es', 'name', 'Universidad Experimental Felix Adam, Universidad Experimental FƩlix Adam'),
(27000, 23356, 'no_lang_code', 'name', 'Teknoloji Arastirma ve Gelistirme Endustriyel Urunler Bilisim Teknolojileri San Tic'),
(27001, 23357, 'en', 'name', 'Ashtead Hospital'),
(27002, 23358, 'es', 'name', 'Universidad Intercultural de Chiapas'),
(27003, 23359, 'no_lang_code', 'name', 'R-Biopharm (Germany)'),
(27004, 23360, 'es', 'name', 'Universidad de León'),
(27005, 23361, 'no_lang_code', 'name', 'Multicert (Portugal)'),
(27006, 23362, 'es', 'name', 'Universidad Nacional Experimental MarĆ­tima del Caribe'),
(27007, 23363, 'en', 'name', 'University of Cundinamarca'),
(27008, 23363, 'es', 'name', 'Universidad de Cundinamarca'),
(27009, 23364, 'no_lang_code', 'name', 'RSK Assessments (United States)'),
(27010, 23365, 'en', 'name', 'University of the Arts'),
(27011, 23366, 'no_lang_code', 'name', 'Oracle (Belgium)'),
(27012, 23367, 'en', 'name', 'Esperance Hospital'),
(27013, 23368, 'en', 'name', 'Dovedale Day Hospital'),
(27014, 23369, 'en', 'name', 'Ellen Badger Hospital'),
(27015, 23370, 'no_lang_code', 'name', 'Stirling Technology (United States)'),
(27016, 23371, 'en', 'name', 'Northeast Document Conservation Center'),
(27017, 23372, 'en', 'name', 'Huntington University'),
(27018, 23373, 'no_lang_code', 'name', 'Novo Nordisk (United Kingdom)'),
(27019, 23374, 'en', 'name', 'Western Massachusetts Training Consortium'),
(27020, 23375, 'en', 'name', 'Center for Technology & Innovation Management'),
(27021, 23376, 'fi', 'name', 'Yhtyneet Medix Laboratoriot'),
(27022, 23376, 'no_lang_code', 'name', 'United Medix Laboratories (Finland)'),
(27023, 23377, 'pt', 'name', 'Universidade TƩcnica de MoƧambique'),
(27024, 23378, 'en', 'name', 'Naugatuck Valley Community College'),
(27025, 23379, 'no_lang_code', 'name', 'Optomesures (France)'),
(27026, 23380, 'en', 'name', 'Melksham Community Hospital'),
(27027, 23381, 'en', 'name', 'University of Maine at Augusta'),
(27028, 23382, 'en', 'name', 'Hendon Hospital'),
(27029, 23383, 'en', 'name', 'Ecomuseum Zoo'),
(27030, 23383, 'fr', 'name', 'Zoo Ecomuseum'),
(27031, 23384, 'en', 'name', 'Eccleshill Community Hospital'),
(27032, 23385, 'en', 'name', 'Cambridgeshire Community Services NHS Trust'),
(27033, 23386, 'en', 'name', 'Partnership for Food Safety Education'),
(27034, 23387, 'en', 'name', 'Igbinedion University'),
(27035, 23388, 'no_lang_code', 'name', 'Nanocopoeia (United States)'),
(27036, 23389, 'es', 'name', 'Institución Universitaria Colegios de Colombia'),
(27037, 23390, 'no_lang_code', 'name', 'Paques (Netherlands)'),
(27038, 23391, 'en', 'name', 'InsPIRE Network for Environment'),
(27039, 23392, 'en', 'name', 'Prostate Centre’s Translational Research Initiative for Accelerated Discovery and Development'),
(27040, 23393, 'nl', 'name', 'Mariaziekenhuis'),
(27041, 23394, 'no_lang_code', 'name', 'Naturstoff-Technik (Germany)'),
(27042, 23395, 'no_lang_code', 'name', 'Feonic Technology (United Kingdom)'),
(27043, 23396, 'en', 'name', 'National Alliance of Healthcare Purchaser Coalitions'),
(27044, 23397, 'no_lang_code', 'name', 'PaxVax (United States)'),
(27045, 23398, 'en', 'name', 'Together Enhancing Awareness Coalition'),
(27046, 23399, 'es', 'name', 'Universidad Tecnológica de Aguascalientes'),
(27047, 23400, 'en', 'name', 'Geophysical Institute of Israel'),
(27048, 23400, 'he', 'name', 'המכון הגיאופיהי ×œ×™×©×Ø××œ'),
(27049, 23401, 'no_lang_code', 'name', 'Essent (Netherlands)'),
(27050, 23402, 'en', 'name', 'Bayside Hospital for Animals'),
(27051, 23403, 'no_lang_code', 'name', 'SimuTech Group (United States)'),
(27052, 23404, 'en', 'name', 'Rose State College'),
(27053, 23405, 'en', 'name', 'Xian Yang Central Hospital'),
(27054, 23405, 'zh', 'name', 'å’øé˜³åø‚äø­åæƒåŒ»é™¢'),
(27055, 23406, 'es', 'name', 'Las Campanas Observatory'),
(27056, 23407, 'en', 'name', 'Peruvian Union University'),
(27057, 23407, 'es', 'name', 'Universidad Peruana Unión'),
(27058, 23408, 'no_lang_code', 'name', 'OptoNet (United States)'),
(27059, 23409, 'en', 'name', 'Institute of Agricultural Economics and Information'),
(27060, 23410, 'en', 'name', 'Shanxi Provincial Children''s Hospital'),
(27061, 23410, 'zh', 'name', 'å±±č„æēœå¦‡å¹¼äæå„é™¢'),
(27062, 23411, 'no_lang_code', 'name', 'Oxis Energy (United Kingdom)'),
(27063, 23412, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų²Ų§Ł„Ł†Ų¬ŁŠ'),
(27064, 23412, 'en', 'name', 'University of Zalingei'),
(27065, 23413, 'es', 'name', 'Universidad Tamaulipeca'),
(27066, 23414, 'es', 'name', 'Universidad PolitƩcnica de Baja California'),
(27067, 23415, 'no_lang_code', 'name', 'Viotech Communications (France)'),
(27068, 23416, 'en', 'name', 'International Institute for Higher Education in Morocco'),
(27069, 23417, 'es', 'name', 'Fundación Tecnológica Antonio de Arévalo'),
(27070, 23418, 'en', 'name', 'National University of Education Enrique GuzmƔn y Valle'),
(27071, 23418, 'es', 'name', 'Universidad Nacional de Educación Enrique GuzmÔn y Valle'),
(27072, 23419, 'no_lang_code', 'name', 'Vukov Extra (Slovakia)'),
(27073, 23420, 'no_lang_code', 'name', 'Ylec Consultants'),
(27074, 23421, 'fr', 'name', 'UniversitƩ PƩdagogique Nationale'),
(27075, 23422, 'es', 'name', 'Corporación Universitaria Iberoamericana'),
(27076, 23423, 'no_lang_code', 'name', 'Romax Technology (United Kingdom)'),
(27077, 23424, 'en', 'name', 'Ashford Hospital'),
(27078, 23425, 'es', 'name', 'Instituto Universitario de Ciencias de la Salud - Fundación Héctor A. Barceló'),
(27079, 23426, 'no_lang_code', 'name', 'Sarmap (Switzerland)'),
(27080, 23427, 'es', 'name', 'Universidad Nacional Experimental de los Llanos Occidentales Ezequiel Zamora'),
(27081, 23428, 'en', 'name', 'Queen Mary''s Hospital'),
(27082, 23429, 'en', 'name', 'Goole and District Hospital'),
(27083, 23430, 'en', 'name', 'Chartered Institute of Marketing Ghana'),
(27084, 23431, 'pt', 'name', 'Centro UniversitƔrio de Formiga'),
(27085, 23432, 'no_lang_code', 'name', 'Pre Chasm Research Limited (United Kingdom)'),
(27086, 23433, 'en', 'name', 'Adventist University of Haiti'),
(27087, 23433, 'ht', 'name', 'Université Adventiste d''Haïti'),
(27088, 23434, 'es', 'name', 'Universidad Maya'),
(27089, 23435, 'no_lang_code', 'name', 'Proteome Sciences (United Kingdom)'),
(27090, 23436, 'en', 'name', 'Fowey Hospital'),
(27091, 23437, 'en', 'name', 'William F Ryan Community Health Center'),
(27092, 23438, 'en', 'name', 'Skipton General Hospital'),
(27093, 23439, 'en', 'name', 'Calderstones Hospital'),
(27094, 23440, 'en', 'name', 'University of Cruz Alta'),
(27095, 23440, 'pt', 'name', 'Universidade de Cruz Alta'),
(27096, 23441, 'en', 'name', 'Bethesda University'),
(27097, 23442, 'de', 'name', 'Prof. Hess Kinderklinik'),
(27098, 23443, 'en', 'name', 'Lead City University'),
(27099, 23444, 'en', 'name', 'Buxton Hospital'),
(27100, 23445, 'no_lang_code', 'name', 'University of Liberia'),
(27101, 23446, 'no_lang_code', 'name', 'Meteotest (Switzerland)'),
(27102, 23447, 'no_lang_code', 'name', 'Aer Lingus (Ireland)'),
(27103, 23448, 'en', 'name', 'Fuji Heavy Industries Health Insurance Society Ota Memorial Hospital'),
(27104, 23448, 'ja', 'name', 'ē·åˆå¤Ŗē”°ē—…é™¢'),
(27105, 23449, 'en', 'name', 'Tokyo University of Information Sciences'),
(27106, 23449, 'ja', 'name', 'ę±äŗ¬ęƒ…å ±å¤§å­¦'),
(27107, 23450, 'pt', 'name', 'Universidade São TomÔs de Moçambique'),
(27108, 23451, 'en', 'name', 'National Counter Terrorism Security Office'),
(27109, 23452, 'es', 'name', 'Universidad San Pablo'),
(27110, 23453, 'en', 'name', 'University Centre of Maranhão'),
(27111, 23453, 'pt', 'name', 'Centro UniversitÔrio do Maranhão'),
(27112, 23454, 'no_lang_code', 'name', 'R-Biopharm (United Kingdom)'),
(27113, 23455, 'no_lang_code', 'name', 'Phasex (United States)'),
(27114, 23456, 'en', 'name', 'State Hydrological Institute'),
(27115, 23456, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ гиГрологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(27116, 23457, 'no_lang_code', 'name', 'PolyGene'),
(27117, 23458, 'es', 'name', 'Universidad ContemporƔnea'),
(27118, 23459, 'nl', 'name', 'Dedicon, Federatie Nederlandse Blindenbibliotheken'),
(27119, 23460, 'en', 'name', 'Sanming University'),
(27120, 23460, 'zh', 'name', 'äø‰ę˜Žå­¦é™¢'),
(27121, 23461, 'en', 'name', 'Ureshino Medical Center'),
(27122, 23461, 'ja', 'name', 'å¬‰é‡ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(27123, 23462, 'en', 'name', 'Globe University'),
(27124, 23463, 'pt', 'name', 'NĆŗcleo Interactivo de Astronomia'),
(27125, 23464, 'ja', 'name', 'ę°—č±”åŗę¾ä»£åœ°éœ‡č¦³ęø¬ę‰€'),
(27126, 23464, 'no_lang_code', 'name', 'Matsushiro Seismological Observatory'),
(27127, 23465, 'en', 'name', 'National Foundation for Educational Research'),
(27128, 23466, 'en', 'name', 'Chippenham Community Hospital'),
(27129, 23467, 'no_lang_code', 'name', 'Polymark (Netherlands)'),
(27130, 23468, 'no_lang_code', 'name', 'Octane Wireless (United States)'),
(27131, 23469, 'ja', 'name', '岔山脿大寺病院'),
(27132, 23469, 'no_lang_code', 'name', 'Okayama Saidaiji Hospital'),
(27133, 23470, 'es', 'name', 'Universidad Hispana'),
(27134, 23471, 'no_lang_code', 'name', 'Food Machinery Company (United Kingdom)'),
(27135, 23472, 'no_lang_code', 'name', 'PolarOnyx (United States)'),
(27136, 23473, 'no_lang_code', 'name', 'Oxford Metrics (United Kingdom)'),
(27137, 23474, 'en', 'name', 'Polytechnical University of Kabul'),
(27138, 23474, 'fa', 'name', 'دکابل Ł¾ŁˆŁ„ŪŒ ŲŖŲ®Ł†ŪŒŚ© Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(27139, 23475, 'es', 'name', 'Instituto TƩcnico Agrƭcola'),
(27140, 23476, 'en', 'name', 'Women''s Health Research Institute'),
(27141, 23477, 'en', 'name', 'World Conservation Monitoring Centre'),
(27142, 23478, 'en', 'name', 'Cromer Hospital'),
(27143, 23479, 'en', 'name', 'OW2 Consortium'),
(27144, 23480, 'en', 'name', 'Special Olympics'),
(27145, 23481, 'no_lang_code', 'name', 'Xyken (United States)'),
(27146, 23482, 'no_lang_code', 'name', 'CJR Propulsion (United Kingdom)'),
(27147, 23483, 'no_lang_code', 'name', 'Zabala Innovation Consulting (Spain)'),
(27148, 23484, 'no_lang_code', 'name', 'Queues Enforth Development (United States)'),
(27149, 23485, 'en', 'name', 'Universities of Giessen and Marburg Lung Center'),
(27150, 23486, 'en', 'name', 'Volunteers of America Oregon'),
(27151, 23487, 'es', 'name', 'Instituto Universitario Anglo EspaƱol'),
(27152, 23488, 'en', 'name', 'University Center of BrasĆ­lia'),
(27153, 23488, 'pt', 'name', 'Centro UniversitƔrio de Brasƭlia'),
(27154, 23489, 'en', 'name', 'Mile End Hospital'),
(27155, 23490, 'no_lang_code', 'name', 'Nemetschek (Germany)'),
(27156, 23491, 'no_lang_code', 'name', 'Vitalus Nutrition (Canada)'),
(27157, 23492, 'en', 'name', 'Newham University Hospital'),
(27158, 23493, 'en', 'name', 'Cairo Higher Institute'),
(27159, 23494, 'en', 'name', 'University of Sierra Leone'),
(27160, 23495, 'en', 'name', 'The Beaumont Hospital'),
(27161, 23496, 'no_lang_code', 'name', 'Virtual Trip (Greece)'),
(27162, 23497, 'no_lang_code', 'name', 'Mosaic Films (United Kingdom)'),
(27163, 23498, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ł…Ų­Ł…ŲÆ السادس Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„Ų·ŁŠŲ±Ų§Ł† Ų§Ł„Ł…ŲÆŁ†ŁŠ'),
(27164, 23498, 'en', 'name', 'International Academy Mohammed VI of Civil Aviation'),
(27165, 23498, 'fr', 'name', 'AcadƩmie internationale mohammed vi de l''aviation civile'),
(27166, 23499, 'es', 'name', 'Universidad Nacional Evangelica'),
(27167, 23500, 'en', 'name', 'MaRS Innovation'),
(27168, 23501, 'en', 'name', 'Providence Center'),
(27169, 23502, 'en', 'name', 'Spire Regency Hospital'),
(27170, 23503, 'en', 'name', 'Confederation of British Metalforming'),
(27171, 23504, 'en', 'name', 'Bupa Cromwell Hospital'),
(27172, 23505, 'no_lang_code', 'name', 'Acentia (United States)'),
(27173, 23506, 'no_lang_code', 'name', 'RBC Investor & Treasury Services (France)'),
(27174, 23507, 'no_lang_code', 'name', 'ACOEM (France)'),
(27175, 23508, 'no_lang_code', 'name', 'Worldsensing (Spain)'),
(27176, 23509, 'en', 'name', 'Union of Metallurgies Industries'),
(27177, 23509, 'fr', 'name', 'Union des Industries et des MƩtiers de la MƩtallurgie'),
(27178, 23510, 'pt', 'name', 'Centro UniversitÔrio de União da Vitória'),
(27179, 23511, 'no_lang_code', 'name', 'Witt Industrial Electronics (Germany)'),
(27180, 23512, 'no_lang_code', 'name', 'Cicor (Germany)'),
(27181, 23513, 'no_lang_code', 'name', 'Offshore Monitoring (Cyprus)'),
(27182, 23514, 'en', 'name', 'Dynastee'),
(27183, 23515, 'da', 'name', 'A.P. MĆøller–MƦrsk A/S'),
(27184, 23515, 'no_lang_code', 'name', 'Maersk (Denmark)'),
(27185, 23516, 'no_lang_code', 'name', 'SKF (United Kingdom)'),
(27186, 23517, 'no_lang_code', 'name', 'Troux Technologies (Norway)'),
(27187, 23518, 'no_lang_code', 'name', 'Venture Chemicals (United States)'),
(27188, 23519, 'en', 'name', 'Golestan University'),
(27189, 23519, 'fa', 'name', 'دانؓگاه گلستان'),
(27190, 23520, 'en', 'name', 'Metropolitan University'),
(27191, 23520, 'es', 'name', 'Universidad Metropolitana'),
(27192, 23521, 'en', 'name', 'Bensham Hospital'),
(27193, 23522, 'es', 'name', 'Universidad Gastón Dachary'),
(27194, 23523, 'en', 'name', 'SkellefteƄ Municipality'),
(27195, 23524, 'en', 'name', 'St Michael''s Hospital'),
(27196, 23525, 'fr', 'name', 'Ɖcole Polytechnique de ThiĆØs'),
(27197, 23526, 'no_lang_code', 'name', 'Management Support Technology (United States)'),
(27198, 23527, 'fr', 'name', 'UniversitƩ libre des Pays des Grands Lacs'),
(27199, 23528, 'no_lang_code', 'name', 'Seagate (United Kingdom)'),
(27200, 23529, 'en', 'name', 'Peninsula College'),
(27201, 23530, 'no_lang_code', 'name', 'Nomor Research (Germany)'),
(27202, 23531, 'no_lang_code', 'name', 'NTN-SNR (France)'),
(27203, 23532, 'fr', 'name', 'Institut SupƩrieur PƩdagogique de Gitwe'),
(27204, 23533, 'no_lang_code', 'name', 'Moor Instruments (United Kingdom)'),
(27205, 23534, 'en', 'name', 'Center of Higher University Studies'),
(27206, 23534, 'es', 'name', 'Centro de Estudios Superiores Universitarios'),
(27207, 23535, 'en', 'name', 'Tioga County Partnership for Community Health'),
(27208, 23536, 'en', 'name', 'University of La Salle'),
(27209, 23536, 'es', 'name', 'Universidad de La Salle (BogotĆ”)'),
(27210, 23537, 'no_lang_code', 'name', 'Stavanger Installasjon (Norway)'),
(27211, 23538, 'no_lang_code', 'name', 'Sinhatech (United States)'),
(27212, 23539, 'en', 'name', 'Prospectors & Developers Association of Canada'),
(27213, 23540, 'fr', 'name', 'NanoQuƩbec (Canada)'),
(27214, 23541, 'no_lang_code', 'name', 'SNL (Sweden)'),
(27215, 23542, 'es', 'name', 'Universidad Mariano Galvez, Universidad Mariano GƔlvez de Guatemala'),
(27216, 23543, 'en', 'name', 'North University of China'),
(27217, 23543, 'zh', 'name', 'äø­åŒ—å¤§å­¦'),
(27218, 23544, 'en', 'name', 'South East Texas Council on Alcohol and Drug Abuse'),
(27219, 23545, 'en', 'name', 'Metro Wellness and Community Centers'),
(27220, 23546, 'en', 'name', 'Network Human Services'),
(27221, 23547, 'fr', 'name', 'OcƩanopolis'),
(27222, 23548, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Informatique AppliquĆ©e'),
(27223, 23549, 'no_lang_code', 'name', 'Within Technologies (United Kingdom)'),
(27224, 23550, 'en', 'name', 'Shrewsbury and Telford Hospital NHS Trust'),
(27225, 23551, 'en', 'name', 'Mineral Products Association'),
(27226, 23552, 'no_lang_code', 'name', 'VeraChem (United States)'),
(27227, 23553, 'es', 'name', 'Universidad Valle del Grijalva'),
(27228, 23554, 'en', 'name', 'University of Guayaquil'),
(27229, 23554, 'es', 'name', 'Universidad de Guayaquil'),
(27230, 23555, 'no_lang_code', 'name', 'Oxford Technologies (United Kingdom)'),
(27231, 23556, 'es', 'name', 'Universidad Metropolitana Latin Campus'),
(27232, 23557, 'no_lang_code', 'name', 'Moravek Biochemicals (United States)'),
(27233, 23558, 'en', 'name', 'Pan Africa Christian University'),
(27234, 23558, 'sw', 'name', 'Chuo Kikuu cha Kikristo cha Pan Africa'),
(27235, 23559, 'en', 'name', 'San Cristóbal of Huamanga University'),
(27236, 23559, 'es', 'name', 'Universidad Nacional de San Cristóbal de Huamanga'),
(27237, 23560, 'no_lang_code', 'name', 'Digital Equipment (Germany)'),
(27238, 23561, 'fr', 'name', 'UniversitƩ du Sahel'),
(27239, 23562, 'en', 'name', 'Peruvian University of Applied Sciences'),
(27240, 23562, 'es', 'name', 'Universidad Peruana de Ciencias Aplicadas'),
(27241, 23563, 'es', 'name', 'Institución Universitaria Salazar y Herrera'),
(27242, 23564, 'fr', 'name', 'Institut International des Assurances'),
(27243, 23565, 'en', 'name', 'Surrey and Sussex Healthcare NHS Trust'),
(27244, 23566, 'en', 'name', 'Public Entity Risk Institute'),
(27245, 23567, 'en', 'name', 'Pandit Ravishankar Shukla University'),
(27246, 23567, 'hi', 'name', 'पंऔित रविशंकर ą¤¶ą„ą¤•ą„ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(27247, 23568, 'en', 'name', 'Ghana Baptist University College'),
(27248, 23569, 'no_lang_code', 'name', 'Silex Microsystems (Sweden)'),
(27249, 23570, 'no_lang_code', 'name', 'Texas MicroPower (United States)'),
(27250, 23571, 'en', 'name', 'Bellatrix Astronomical Observatory'),
(27251, 23572, 'en', 'name', 'Portbase'),
(27252, 23573, 'en', 'name', 'North Middlesex University Hospital NHS Trust'),
(27253, 23574, 'no_lang_code', 'name', 'Sintec (Italy)'),
(27254, 23575, 'no_lang_code', 'name', 'Traficon (Finland)'),
(27255, 23576, 'fr', 'name', 'Institut SupƩrieur Agronomique et VƩtƩrinaire ValƩry Giscard d''Estaing'),
(27256, 23577, 'no_lang_code', 'name', 'Intersand (Canada)'),
(27257, 23578, 'en', 'name', 'National Hospital for Neurology and Neurosurgery'),
(27258, 23579, 'no_lang_code', 'name', 'TSM Control Systems (Ireland)'),
(27259, 23580, 'no_lang_code', 'name', 'NexusAB (United Kingdom)'),
(27260, 23581, 'no_lang_code', 'name', 'Soundprint Media Center'),
(27261, 23582, 'no_lang_code', 'name', 'Novatea (Italy)'),
(27262, 23583, 'no_lang_code', 'name', 'Youth Radio (United States)'),
(27263, 23584, 'en', 'name', 'Bicester Community Hospital'),
(27264, 23585, 'no_lang_code', 'name', 'Orla Protein Technologies (United Kingdom)'),
(27265, 23586, 'no_lang_code', 'name', 'Stone Ridge Technology (United States)'),
(27266, 23587, 'no_lang_code', 'name', 'Nortis (United States)'),
(27267, 23588, 'en', 'name', 'Omaha Nation Community Response Team'),
(27268, 23589, 'ar', 'name', 'مستؓفى أبو ظبي Ł„Ł„ŲµŁ‚ŁˆŲ±'),
(27269, 23589, 'en', 'name', 'Abu Dhabi Falcon Hospital'),
(27270, 23590, 'en', 'name', 'United States Naval Observatory'),
(27271, 23591, 'en', 'name', 'John Black Day Hospital'),
(27272, 23592, 'no_lang_code', 'name', 'Seedri Puukool'),
(27273, 23593, 'no_lang_code', 'name', 'Q Bioanalytic (Germany)'),
(27274, 23594, 'no_lang_code', 'name', 'Polysolar (United Kingdom)'),
(27275, 23595, 'no_lang_code', 'name', 'Treibacher (Austria)'),
(27276, 23596, 'en', 'name', 'Minnesota Association for Children''s Mental Health'),
(27277, 23597, 'en', 'name', 'Felixstowe Community Hospital'),
(27278, 23598, 'no_lang_code', 'name', 'Umbria Filler (Italy)'),
(27279, 23599, 'es', 'name', 'Universidad Villa Rica'),
(27280, 23600, 'de', 'name', 'Hochschule Harz'),
(27281, 23600, 'en', 'name', 'Harz University of Applied Sciences'),
(27282, 23601, 'en', 'name', 'Tapestry Institute'),
(27283, 23602, 'no_lang_code', 'name', 'Rosti (Denmark)'),
(27284, 23603, 'no_lang_code', 'name', 'Synthesites (Greece)'),
(27285, 23604, 'no_lang_code', 'name', 'Simcon kunststofftechnische Software (Germany)'),
(27286, 23605, 'no_lang_code', 'name', 'MOL Group (Hungary)'),
(27287, 23606, 'es', 'name', 'Instituto Nacional de Educación Superior Dr. Raúl Peña'),
(27288, 23607, 'no_lang_code', 'name', 'Stemina Biomarker Discovery (United States)'),
(27289, 23608, 'en', 'name', 'Kidderminster Hospital and Treatment Centre'),
(27290, 23609, 'en', 'name', 'Meridian Community College'),
(27291, 23610, 'en', 'name', 'Dereham Hospital'),
(27292, 23611, 'es', 'name', 'Universidad Rafael Belloso ChacĆ­n'),
(27293, 23612, 'en', 'name', 'European Committee of Environmental Technology Suppliers Associations'),
(27294, 23613, 'es', 'name', 'Universidad Veritas'),
(27295, 23614, 'en', 'name', 'Institute For Leadership And Communication Studies'),
(27296, 23615, 'es', 'name', 'Universidad MƩxico Americana del Norte'),
(27297, 23616, 'ja', 'name', 'ę©‹ęœ¬åø‚ę°‘ē—…é™¢'),
(27298, 23616, 'no_lang_code', 'name', 'Hashimoto Municipal Hospital'),
(27299, 23617, 'no_lang_code', 'name', 'SERE-Tech Innovation (United Kingdom)'),
(27300, 23618, 'en', 'name', 'South Carolina Department of Education'),
(27301, 23619, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ΑργολίΓας'),
(27302, 23619, 'en', 'name', 'General Hospital of Nafplio'),
(27303, 23620, 'no_lang_code', 'name', 'TheraTarget (United States)'),
(27304, 23621, 'it', 'name', 'Consorzio Interuniversitario Fisica Spaziale'),
(27305, 23622, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ ŠæŃ€ŠøŃ€Š¾Š“Š¾Š½Š°ŃƒŃ‡ŠµŠ½ музей'),
(27306, 23622, 'en', 'name', 'National Museum of Natural History'),
(27307, 23623, 'no_lang_code', 'name', 'Teleprime (United States)'),
(27308, 23624, 'en', 'name', 'Martin University'),
(27309, 23625, 'es', 'name', 'Universidad Norbert Wiener'),
(27310, 23626, 'no_lang_code', 'name', 'Unisign (Netherlands)'),
(27311, 23627, 'fr', 'name', 'Centre Africain d''Ɖtudes SupĆ©rieures en Gestion'),
(27312, 23628, 'pt', 'name', 'Centro UniversitƔrio Barriga Verde'),
(27313, 23629, 'no_lang_code', 'name', 'Stichting AlmereGrid'),
(27314, 23630, 'no_lang_code', 'name', 'Chienkuo Technology University'),
(27315, 23630, 'zh', 'name', 'å»ŗåœ‹ē§‘ęŠ€å¤§å­ø'),
(27316, 23631, 'en', 'name', 'Central Research Institute of Ferrous Metallurgy I P Bardina'),
(27317, 23631, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾ā€“ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ черной Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø им. И.П. БарГина'),
(27318, 23632, 'en', 'name', 'St Peter''s Hospital'),
(27319, 23633, 'en', 'name', 'Wesley College'),
(27320, 23634, 'en', 'name', 'Heritage Christian University'),
(27321, 23635, 'fr', 'name', 'Groupe Ɖcole SupĆ©rieure de Commerce de Dakar'),
(27322, 23636, 'no_lang_code', 'name', 'Opalux (Canada)'),
(27323, 23637, 'no_lang_code', 'name', 'Electricity Supply Board (United Kingdom)'),
(27324, 23638, 'no_lang_code', 'name', 'Robotronics (United States)'),
(27325, 23639, 'en', 'name', 'BMI Fawkham Manor Hospital'),
(27326, 23640, 'en', 'name', 'Nottinghamshire County Council'),
(27327, 23641, 'en', 'name', 'National Community Health Partners'),
(27328, 23642, 'no_lang_code', 'name', 'Vitech Systems (United States)'),
(27329, 23643, 'no_lang_code', 'name', 'Renson (Belgium)'),
(27330, 23644, 'en', 'name', 'Canadian Anthropology Society'),
(27331, 23645, 'en', 'name', 'Autonomous Intercultural University of Sinaloa'),
(27332, 23645, 'es', 'name', 'Universidad Autónoma Intercultural de Sinaloa'),
(27333, 23646, 'pt', 'name', 'Centro UniversitƔrio de Sete Lagoas'),
(27334, 23647, 'en', 'name', 'Snow College'),
(27335, 23648, 'en', 'name', 'Latin University of Panama'),
(27336, 23648, 'es', 'name', 'Universidad Latina de PanamĆ”'),
(27337, 23649, 'en', 'name', 'Evesham Community Hospital'),
(27338, 23650, 'es', 'name', 'Universidad de las Naciones'),
(27339, 23651, 'es', 'name', 'Universidad de San Miguel'),
(27340, 23652, 'en', 'name', 'Bristol Homeopathic Hospital'),
(27341, 23653, 'no_lang_code', 'name', 'Energieversorgungs und Verkehrsgesellschaft Aachen (Germany)'),
(27342, 23654, 'en', 'name', 'University of Science and Technology Bannu'),
(27343, 23654, 'ur', 'name', 'ŲØŁ†ŁˆŚŗ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف سائنس Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(27344, 23655, 'es', 'name', 'Universidad BĆ­blica Latinoamericana'),
(27345, 23656, 'no_lang_code', 'name', 'Thien eDrives (Austria)'),
(27346, 23657, 'en', 'name', 'Minnesota Department of Education'),
(27347, 23658, 'en', 'name', 'Manuela BeltrƔn University'),
(27348, 23658, 'es', 'name', 'Universidad Manuela BeltrƔn'),
(27349, 23659, 'en', 'name', 'Lytham Hospital'),
(27350, 23660, 'no_lang_code', 'name', 'Next Technology Tecnotessile (Italy)'),
(27351, 23661, 'no_lang_code', 'name', 'Cristal (United Kingdom)'),
(27352, 23662, 'no_lang_code', 'name', 'Trivella (Italy)'),
(27353, 23663, 'en', 'name', 'Association of European Science and Technology Transfer Professionals'),
(27354, 23664, 'en', 'name', 'Metropolitan University of Technology'),
(27355, 23664, 'es', 'name', 'Universidad Tecnológica Metropolitana'),
(27356, 23665, 'en', 'name', 'Bowmere Hospital'),
(27357, 23666, 'en', 'name', 'North Country Health Consortium'),
(27358, 23667, 'no_lang_code', 'name', 'Universal Technology Corporation (United States)'),
(27359, 23668, 'en', 'name', 'Kaiser Permanente San Leandro Medical Center'),
(27360, 23669, 'no_lang_code', 'name', 'Reagecon (Ireland)'),
(27361, 23670, 'en', 'name', 'National Police of Honduras'),
(27362, 23670, 'es', 'name', 'PolicĆ­a Nacional de Honduras'),
(27363, 23671, 'en', 'name', 'Substance Abuse Free Environment'),
(27364, 23672, 'no_lang_code', 'name', 'Precision BioLogic (Canada)'),
(27365, 23673, 'en', 'name', 'Wigton Community Hospital'),
(27366, 23674, 'no_lang_code', 'name', 'Projection Plasma SystĆØme (France)'),
(27367, 23675, 'es', 'name', 'Centro Universitario de Coatzacoalcos'),
(27368, 23676, 'no_lang_code', 'name', 'Modular Robotics (United States)'),
(27369, 23677, 'es', 'name', 'Universidad Marista de Guadalajara'),
(27370, 23678, 'en', 'name', 'Institute for Advanced Studies in Management'),
(27371, 23678, 'fr', 'name', 'Institut des Hautes Ɖtudes de Management');
INSERT INTO `ror_settings` VALUES
(27372, 23679, 'ro', 'name', 'Opinia'),
(27373, 23680, 'en', 'name', 'London Ambulance Service NHS Trust'),
(27374, 23681, 'no_lang_code', 'name', 'IHS Markit (Germany)'),
(27375, 23682, 'no_lang_code', 'name', 'Phoenix Systems (United States)'),
(27376, 23683, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© فاروس ŲØŲ§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(27377, 23683, 'en', 'name', 'Pharos University in Alexandria'),
(27378, 23684, 'no_lang_code', 'name', 'PY Automation (France)'),
(27379, 23685, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŲØŲ±ŁŠŲÆ ŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ŲŖ ال؄علام ŁˆŲ§Ł„Ų§ŲŖŲµŲ§Ł„'),
(27380, 23685, 'fr', 'name', 'Institut National de la Poste et des Technologies de l''Information et de la Communication'),
(27381, 23686, 'en', 'name', 'Tucson Unified School District'),
(27382, 23686, 'es', 'name', 'Distrito Escolar Unificado de Tucson'),
(27383, 23687, 'en', 'name', 'National Pedagogic University'),
(27384, 23687, 'es', 'name', 'Universidad Pedagógica Nacional'),
(27385, 23688, 'en', 'name', 'Regional Centre for Mapping of Resources for Development'),
(27386, 23689, 'es', 'name', 'Universidad Madero Papaloapan'),
(27387, 23690, 'en', 'name', 'London North West Healthcare NHS Trust'),
(27388, 23691, 'no_lang_code', 'name', 'Signum Computer (Germany)'),
(27389, 23692, 'en', 'name', 'Jinzhou Kangning Hospital'),
(27390, 23692, 'zh', 'name', 'é”¦å·žåø‚åŗ·å®åŒ»é™¢'),
(27391, 23693, 'no_lang_code', 'name', 'Randox (United Kingdom)'),
(27392, 23694, 'no_lang_code', 'name', 'Rinicom (United Kingdom)'),
(27393, 23695, 'no_lang_code', 'name', 'Sidasa Engineering (Spain)'),
(27394, 23696, 'es', 'name', 'Fundación de Estudios Superiores Universitarios de UrabÔ'),
(27395, 23697, 'en', 'name', 'Swedish Civil Contingencies Agency'),
(27396, 23697, 'sv', 'name', 'Myndigheten fƶr samhƤllsskydd och beredskap'),
(27397, 23698, 'en', 'name', 'Protein Society'),
(27398, 23699, 'en', 'name', 'STM Association'),
(27399, 23700, 'es', 'name', 'Universidad del Distrito Federal'),
(27400, 23701, 'en', 'name', 'Multiprofile Hospital for Active Treatment in Neurology and Psychiatry St. Naum'),
(27401, 23702, 'en', 'name', 'Ripon Community Hospital'),
(27402, 23703, 'en', 'name', 'Wolverhampton Hospital'),
(27403, 23704, 'en', 'name', 'Royston Hospital'),
(27404, 23705, 'no_lang_code', 'name', 'Sciarra Laboratories'),
(27405, 23706, 'no_lang_code', 'name', 'Prime Photonics (United States)'),
(27406, 23707, 'en', 'name', 'Monterey Institute for Research in Astronomy'),
(27407, 23708, 'en', 'name', 'British School at Rome'),
(27408, 23709, 'en', 'name', 'Bingham University'),
(27409, 23710, 'pt', 'name', 'Centro UniversitƔrio Una'),
(27410, 23711, 'no_lang_code', 'name', 'Tymora Analytical Operations (United States)'),
(27411, 23712, 'no_lang_code', 'name', 'Neogen (United States)'),
(27412, 23713, 'en', 'name', 'Russian State Hydrometeorological University'),
(27413, 23713, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Российский Š³Š¾ŃŃƒŠ“арственный гиГрометеорологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27414, 23714, 'en', 'name', 'South Great Plain Regional Innovation Agency'),
(27415, 23715, 'en', 'name', 'University of Pamplona'),
(27416, 23715, 'es', 'name', 'Universidad de Pamplona'),
(27417, 23716, 'en', 'name', 'Lifeline Hospital'),
(27418, 23716, 'ml', 'name', 'ą“²ąµˆą“«ąµ ą“²ąµˆąµ» ą“¹ąµ‡ą“¾ą“øąµą“Ŗą“æą“±ąµą“±ąµ½'),
(27419, 23717, 'no_lang_code', 'name', 'Psutec (Belgium)'),
(27420, 23718, 'en', 'name', 'Maritime Administration of Latvia'),
(27421, 23719, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ لل؄علام Ų§Ł„Ų£Ł„ŁŠ'),
(27422, 23719, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Informatique'),
(27423, 23720, 'no_lang_code', 'name', 'S&F Systemtechnik (Germany)'),
(27424, 23721, 'en', 'name', 'Doncaster Gate Hospital'),
(27425, 23722, 'es', 'name', 'Universidad La Salle Costa Rica'),
(27426, 23723, 'no_lang_code', 'name', 'Procter & Gamble (Switzerland)'),
(27427, 23724, 'no_lang_code', 'name', 'NorthWestNET'),
(27428, 23725, 'en', 'name', 'Society for Personality and Social Psychology'),
(27429, 23726, 'no_lang_code', 'name', 'Teinsa (Spain)'),
(27430, 23727, 'pt', 'name', 'Instituto Superior de Ciencias de Saude'),
(27431, 23728, 'en', 'name', 'Orleans Parish School Board'),
(27432, 23729, 'no_lang_code', 'name', 'RODAX Impex (Romania)'),
(27433, 23730, 'es', 'name', 'Universidad Autónoma de Asunción'),
(27434, 23731, 'no_lang_code', 'name', 'Optics Technology (United States)'),
(27435, 23732, 'en', 'name', 'Neumont University'),
(27436, 23733, 'es', 'name', 'Universidad Central de MƩxico'),
(27437, 23734, 'en', 'name', 'Cossham Hospital'),
(27438, 23735, 'en', 'name', 'Dallas Baptist University'),
(27439, 23736, 'no_lang_code', 'name', 'Turris (Canada)'),
(27440, 23737, 'no_lang_code', 'name', 'SocietĆ  Industrie Chimiche ITaliane (Italy)'),
(27441, 23738, 'en', 'name', 'Society for Muscle Biology'),
(27442, 23739, 'no_lang_code', 'name', 'Wherry & Sons (United Kingdom)'),
(27443, 23740, 'en', 'name', 'Partnership for Prevention'),
(27444, 23741, 'es', 'name', 'Universidad Nicaragüense de Estudios Humanisticos'),
(27445, 23742, 'ar', 'name', 'المعهد Ų§Ł„Ł…ŲµŲ±ŁŠ Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ© لل؄دارة ŁˆŲ§Ł„Ł…Ų­Ų§Ų³ŲØŲ©'),
(27446, 23742, 'en', 'name', 'Egyptian Institute of Alexandria Academy for Administration & Accounting'),
(27447, 23743, 'no_lang_code', 'name', 'Message Pharmaceuticals (United States)'),
(27448, 23744, 'en', 'name', 'FidƩlitas University'),
(27449, 23744, 'es', 'name', 'Universidad FidƩlitas'),
(27450, 23745, 'es', 'name', 'Universidad Unidad'),
(27451, 23746, 'en', 'name', 'Post University'),
(27452, 23747, 'en', 'name', 'Mercer Island School District'),
(27453, 23748, 'en', 'name', 'Autonomous University of Chiapas'),
(27454, 23748, 'es', 'name', 'Universidad Autónoma de Chiapas'),
(27455, 23749, 'no_lang_code', 'name', 'Texas Instruments (United Kingdom)'),
(27456, 23750, 'fr', 'name', 'Institut Universitaire du Congo'),
(27457, 23751, 'en', 'name', 'Nottinghamshire Healthcare NHS Foundation Trust'),
(27458, 23752, 'no_lang_code', 'name', 'Selective Genetics (United States)'),
(27459, 23753, 'es', 'name', 'Universidad Kino'),
(27460, 23754, 'es', 'name', 'Universidad PolitƩcnica de Chiapas'),
(27461, 23755, 'no_lang_code', 'name', 'Worldwide Fruit (United Kingdom)'),
(27462, 23756, 'en', 'name', 'Hornsea Cottage Hospital'),
(27463, 23757, 'no_lang_code', 'name', 'The Maltsters'' Association of Great Britain (United Kingdom)'),
(27464, 23758, 'no_lang_code', 'name', 'Synergetics (Belgium)'),
(27465, 23759, 'no_lang_code', 'name', 'SKF (France)'),
(27466, 23760, 'no_lang_code', 'name', 'Nemucore Medical Innovations (United States)'),
(27467, 23761, 'no_lang_code', 'name', 'Guideline Geo (Sweden)'),
(27468, 23762, 'en', 'name', 'Shirley Oaks Hospital'),
(27469, 23763, 'no_lang_code', 'name', 'Vestas (Netherlands)'),
(27470, 23764, 'es', 'name', 'Universidad Florencio del Castillo'),
(27471, 23765, 'no_lang_code', 'name', 'Teracom (Sweden)'),
(27472, 23766, 'no_lang_code', 'name', 'Skretting (Norway)'),
(27473, 23767, 'en', 'name', 'St. Stephen''s University'),
(27474, 23768, 'no_lang_code', 'name', 'Triple Ring Technologies (United States)'),
(27475, 23769, 'no_lang_code', 'name', 'Omgatech (Italy)'),
(27476, 23770, 'en', 'name', 'Retford Hospital'),
(27477, 23771, 'en', 'name', 'Weskoppies Psychiatric Hospital'),
(27478, 23772, 'pt', 'name', 'Centro UniversitÔrio Municipal de São José'),
(27479, 23773, 'en', 'name', 'Nordic Innovation'),
(27480, 23774, 'pt', 'name', 'Centro Universitario Fluminense'),
(27481, 23775, 'en', 'name', 'National Asian Pacific American Families Against Substance Abuse'),
(27482, 23776, 'no_lang_code', 'name', 'Symetrica Security (United Kingdom)'),
(27483, 23777, 'no_lang_code', 'name', 'Super Pulse (United States)'),
(27484, 23778, 'no_lang_code', 'name', 'PHIMECA (France)'),
(27485, 23779, 'en', 'name', 'Niger State Polytechnic'),
(27486, 23780, 'no_lang_code', 'name', 'Plassys (France)'),
(27487, 23781, 'en', 'name', 'The Wellington Hospital'),
(27488, 23782, 'no_lang_code', 'name', 'Manus Neurodynamica (United Kingdom)'),
(27489, 23783, 'es', 'name', 'Universidad de la CiƩnega'),
(27490, 23784, 'en', 'name', 'New Mexico Children Youth and Families Department'),
(27491, 23784, 'es', 'name', 'Departamento de NiƱos, Juventud y Familias de Nuevo MƩxico'),
(27492, 23785, 'pt', 'name', 'Instituto Superior PolitƩcnico de Manica'),
(27493, 23786, 'en', 'name', 'Javon Bea Hospital-Rockton'),
(27494, 23787, 'de', 'name', 'Verein Deutscher Werkzeugmaschinenfabriken'),
(27495, 23787, 'en', 'name', 'German Machine Tool Builders Association'),
(27496, 23788, 'en', 'name', 'Nature Conservancy of Canada'),
(27497, 23789, 'en', 'name', 'Farnham Road Hospital'),
(27498, 23790, 'en', 'name', 'The Silesian Planetarium'),
(27499, 23790, 'pl', 'name', 'Śląskie Planetarium i Obserwatorium Astronomiczne'),
(27500, 23791, 'en', 'name', 'Devon Partnership NHS Trust'),
(27501, 23792, 'en', 'name', 'Yuba Community College District'),
(27502, 23793, 'es', 'name', 'Universidad del Norte de Nicaragua'),
(27503, 23794, 'no_lang_code', 'name', 'Adlink (United Kingdom)'),
(27504, 23795, 'no_lang_code', 'name', 'Fiat Chrysler Automobiles (France)'),
(27505, 23796, 'en', 'name', 'University of Palermo'),
(27506, 23796, 'es', 'name', 'Universidad de Palermo'),
(27507, 23797, 'en', 'name', 'Western Eye Hospital'),
(27508, 23798, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Informatique AppliquĆ©e Ć  la Gestion'),
(27509, 23799, 'no_lang_code', 'name', 'Snam (Italy)'),
(27510, 23800, 'no_lang_code', 'name', 'Stromatec (United States)'),
(27511, 23801, 'en', 'name', 'Stratford Hospital'),
(27512, 23802, 'no_lang_code', 'name', 'S-Solar (Sweden)'),
(27513, 23803, 'en', 'name', 'Great Western Hospitals NHS Foundation Trust'),
(27514, 23804, 'es', 'name', 'Universidad de Ciencias Empresariales y Sociales'),
(27515, 23805, 'no_lang_code', 'name', 'VLP Biotech (United States)'),
(27516, 23806, 'no_lang_code', 'name', 'Mierij Meteo'),
(27517, 23807, 'no_lang_code', 'name', 'Volcano Corporation (United States)'),
(27518, 23808, 'pt', 'name', 'Centro UniversitƔrio de ItajubƔ'),
(27519, 23809, 'en', 'name', 'Black Swamp Bird Observatory'),
(27520, 23810, 'en', 'name', 'Presbyterian St. Luke''s Medical Center'),
(27521, 23811, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(27522, 23811, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Technologie'),
(27523, 23812, 'en', 'name', 'Prudhoe Hospital'),
(27524, 23813, 'no_lang_code', 'name', 'SocietĆ  Italiana Trasporti Automobilistici (Italy)'),
(27525, 23814, 'no_lang_code', 'name', 'Senstar (Canada)'),
(27526, 23815, 'pt', 'name', 'Centro UniversitƔrio Paulistano'),
(27527, 23816, 'no_lang_code', 'name', 'FiberLogix (United Kingdom)'),
(27528, 23817, 'no_lang_code', 'name', 'Xactagen (United States)'),
(27529, 23818, 'en', 'name', 'Barnet and Chase Farm NHS Hospitals Trust'),
(27530, 23819, 'no_lang_code', 'name', 'Yantric (United States)'),
(27531, 23820, 'de', 'name', 'Zentralinstitut für die Kassenärztliche Versorgung in der Bundesrepublik Deutschland'),
(27532, 23821, 'no_lang_code', 'name', 'Umweltsensortechnik (Germany)'),
(27533, 23822, 'en', 'name', 'Southwest Georgia Area Health Education Center'),
(27534, 23823, 'no_lang_code', 'name', 'Printed Electronics (United Kingdom)'),
(27535, 23824, 'no_lang_code', 'name', 'National Hyperbaric Centre'),
(27536, 23825, 'en', 'name', 'Stratton Community Hospital'),
(27537, 23826, 'en', 'name', 'Cobham Community Hospital'),
(27538, 23827, 'en', 'name', 'Koriyama Women''s University'),
(27539, 23827, 'ja', 'name', '郔山儳子大学'),
(27540, 23828, 'no_lang_code', 'name', 'International Game Technology (Canada)'),
(27541, 23829, 'fr', 'name', 'Ɖcole SupĆ©rieure Internationale de Gestion'),
(27542, 23830, 'no_lang_code', 'name', 'Surface Transforms (United Kingdom)'),
(27543, 23831, 'no_lang_code', 'name', 'Plastic Electronic (Austria)'),
(27544, 23832, 'en', 'name', 'National Down Syndrome Society'),
(27545, 23833, 'no_lang_code', 'name', 'Spartan Solutions (United Kingdom)'),
(27546, 23834, 'en', 'name', 'Tennessee Temple University'),
(27547, 23835, 'en', 'name', 'Saint Gregory''s Catholic College'),
(27548, 23836, 'es', 'name', 'Universidad del Caribe'),
(27549, 23837, 'no_lang_code', 'name', 'Onefive (Switzerland)'),
(27550, 23838, 'nl', 'name', 'Stichting Bouwresearch'),
(27551, 23839, 'no_lang_code', 'name', 'Microbial Insights (United States)'),
(27552, 23840, 'es', 'name', 'Universidad PolitƩcnica Hispano Mexicana'),
(27553, 23841, 'en', 'name', 'Youth & Family Services'),
(27554, 23842, 'en', 'name', 'Ross on Wye Hospital'),
(27555, 23843, 'no_lang_code', 'name', 'Seneca Productions (United Kingdom)'),
(27556, 23844, 'en', 'name', 'University of Virginia''s College at Wise'),
(27557, 23845, 'no_lang_code', 'name', 'Red Tail Hawk Corporation (United States)'),
(27558, 23846, 'no_lang_code', 'name', 'Oxford Nanopore Technologies (United Kingdom)'),
(27559, 23847, 'es', 'name', 'Instituto Centroamericano de Administración de Empresas'),
(27560, 23848, 'de', 'name', 'Hochschule Koblenz'),
(27561, 23848, 'en', 'name', 'Koblenz University of Applied Sciences'),
(27562, 23849, 'es', 'name', 'Centro Universitario Incarnate Word'),
(27563, 23850, 'no_lang_code', 'name', 'Meyer Burger Technology (Switzerland)'),
(27564, 23851, 'no_lang_code', 'name', 'Navidea Biopharmaceuticals (United States)'),
(27565, 23852, 'en', 'name', 'Rogers County Volunteers for Youth'),
(27566, 23853, 'ar', 'name', 'المعهد المصرى العالى Ł„Ł„Ų³ŁŠŲ§Ų­Ų© ŁˆŲ§Ł„ŁŁ†Ų§ŲÆŁ‚'),
(27567, 23853, 'en', 'name', 'Sinai Higher Institute for Tourism and Hotels'),
(27568, 23854, 'en', 'name', 'Kongo University'),
(27569, 23854, 'fr', 'name', 'UniversitƩ Kongo'),
(27570, 23855, 'en', 'name', 'Wareham Community Hospital'),
(27571, 23856, 'es', 'name', 'Centro UniversitƔrio Internacional'),
(27572, 23857, 'no_lang_code', 'name', 'SeaChange Pharmaceuticals (United States)'),
(27573, 23858, 'no_lang_code', 'name', 'Nanocerox (United States)'),
(27574, 23859, 'no_lang_code', 'name', 'Variation Biotechnologies (Canada)'),
(27575, 23860, 'en', 'name', 'Jingning County People''s Hospital'),
(27576, 23860, 'zh', 'name', 'ę™Æå®ē•²ę—č‡Ŗę²»åŽæäŗŗę°‘åŒ»é™¢'),
(27577, 23861, 'es', 'name', 'Universidad Iberoamericana'),
(27578, 23862, 'en', 'name', 'West Coast University'),
(27579, 23863, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ Ł…Ų·Ł‡Ų±ŪŒ'),
(27580, 23863, 'no_lang_code', 'name', 'Shahid Motahari Hospital'),
(27581, 23864, 'no_lang_code', 'name', 'Meridian Bioscience (United States)'),
(27582, 23865, 'es', 'name', 'Hospital de Braga'),
(27583, 23865, 'pt', 'name', 'Hospital Braga'),
(27584, 23866, 'en', 'name', 'Silicon Valley University'),
(27585, 23866, 'es', 'name', 'Universidad de Silicon Valley'),
(27586, 23867, 'en', 'name', 'Newcastle College'),
(27587, 23868, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© - Ų¬Ł†ŁŠŁ†'),
(27588, 23868, 'en', 'name', 'Arab American University'),
(27589, 23869, 'en', 'name', 'Academy of Art University'),
(27590, 23870, 'en', 'name', 'St Martin''s Hospital'),
(27591, 23871, 'en', 'name', 'Institute of Finance Management'),
(27592, 23872, 'es', 'name', 'Universidad Columbia del Paraguay'),
(27593, 23873, 'en', 'name', 'International Council for Canadian Studies'),
(27594, 23874, 'fr', 'name', 'Association des DƩmographes du QuƩbec'),
(27595, 23875, 'no_lang_code', 'name', 'Plasma Clean (United Kingdom)'),
(27596, 23876, 'pt', 'name', 'Centro UniversitÔrio Módulo'),
(27597, 23877, 'en', 'name', 'Hexham General Hospital'),
(27598, 23878, 'no_lang_code', 'name', 'Sound&Fury'),
(27599, 23879, 'en', 'name', 'Walsall Healthcare NHS Trust'),
(27600, 23880, 'pt', 'name', 'Centro UniversitƔrio de Barra Mansa'),
(27601, 23881, 'es', 'name', 'Universidad Don Vasco'),
(27602, 23882, 'ja', 'name', 'ä¼Šå‹¢å“Žē¦å³¶ē—…é™¢'),
(27603, 23882, 'no_lang_code', 'name', 'Isesaki Fukushima Hospital'),
(27604, 23883, 'en', 'name', 'John Coupland Hospital'),
(27605, 23884, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© البحر الأحمر'),
(27606, 23884, 'en', 'name', 'Red Sea University'),
(27607, 23885, 'no_lang_code', 'name', 'Systems, Applications & Products in Data Processing (United Kingdom)'),
(27608, 23886, 'no_lang_code', 'name', 'Optoscribe (United Kingdom)'),
(27609, 23887, 'es', 'name', 'Escuela Tecnológica Instituto Técnico Central'),
(27610, 23888, 'es', 'name', 'Corporación Universitaria Santa Rosa de Cabal'),
(27611, 23889, 'no_lang_code', 'name', 'Registro Internacional Naval (Portugal)'),
(27612, 23890, 'en', 'name', 'Woodstock Union High School & Middle School'),
(27613, 23891, 'no_lang_code', 'name', 'Target (Germany)'),
(27614, 23892, 'no_lang_code', 'name', 'BSD Crown (Israel)'),
(27615, 23893, 'en', 'name', 'Princess Alexandra Hospital NHS Trust'),
(27616, 23894, 'es', 'name', 'Petróleos de Venezuela'),
(27617, 23894, 'no_lang_code', 'name', 'Petroleum of Venezuela (Venezuela)'),
(27618, 23895, 'en', 'name', 'Canadian Co-operative Association'),
(27619, 23896, 'en', 'name', 'Julian Hospital'),
(27620, 23897, 'no_lang_code', 'name', 'Optronics Technologies (Greece)'),
(27621, 23898, 'es', 'name', 'Universidad Tecnológica Costarricense'),
(27622, 23899, 'no_lang_code', 'name', 'QCMetrix (United States)'),
(27623, 23900, 'en', 'name', 'Squamish Nation'),
(27624, 23901, 'de', 'name', 'Technologie-Transfer-Zentrum Bremerhaven'),
(27625, 23901, 'en', 'name', 'Technology Transfer Center Bremerhaven'),
(27626, 23902, 'en', 'name', 'Rogers State University'),
(27627, 23902, 'fr', 'name', 'UniversitĆ© d''Ɖtat de rogers'),
(27628, 23903, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سبها'),
(27629, 23903, 'en', 'name', 'Sebha University'),
(27630, 23904, 'en', 'name', 'Senac University Center'),
(27631, 23904, 'pt', 'name', 'Centro UniversitƔrio Senac'),
(27632, 23905, 'es', 'name', 'Fundación Universitaria Autónoma De Las Américas'),
(27633, 23906, 'it', 'name', 'Tecnoalimenti'),
(27634, 23907, 'no_lang_code', 'name', 'Polymem (France)'),
(27635, 23908, 'en', 'name', 'Wansbeck General Hospital'),
(27636, 23909, 'no_lang_code', 'name', 'Srico (United States)'),
(27637, 23910, 'en', 'name', 'Midlands Technical College'),
(27638, 23911, 'no_lang_code', 'name', 'Replicon (United States)'),
(27639, 23912, 'no_lang_code', 'name', 'Sarossa (United States)'),
(27640, 23913, 'en', 'name', 'Cyprus International University'),
(27641, 23913, 'tr', 'name', 'Uluslararası Kıbrıs Üniversitesi'),
(27642, 23914, 'en', 'name', 'Shri Siddhivinayak Ganapati Cancer Hospital'),
(27643, 23914, 'mr', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤øą¤æą¤¦ą„ą¤§ą¤æą¤µą¤æą¤Øą¤¾ą¤Æą¤• ą¤—ą¤£ą¤Ŗą¤¤ą„€ ą¤•ą„…ą¤Øą„ą¤øą¤° ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(27644, 23915, 'en', 'name', 'University of Defence'),
(27645, 23915, 'sr', 'name', 'Универзитет оГбране'),
(27646, 23916, 'no_lang_code', 'name', 'Strategic Solutions Consulting (United States)'),
(27647, 23917, 'es', 'name', 'Universidad PolitƩcnica Estatal del Carchi'),
(27648, 23918, 'es', 'name', 'Universidad del Desarrollo Profesional'),
(27649, 23919, 'en', 'name', 'Karachay-Cherkess State Pedagogical University'),
(27650, 23919, 'ru', 'name', 'ŠšŠ°Ń€Š°Ń‡Š°ŠµŠ²Š¾-Черкесский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27651, 23920, 'en', 'name', 'Chard & District Hospital'),
(27652, 23921, 'en', 'name', 'Welsh Centre for Printing and Coating'),
(27653, 23922, 'en', 'name', 'Department of Forestry'),
(27654, 23923, 'pt', 'name', 'Instituto Superior de Artes e Cultura'),
(27655, 23924, 'en', 'name', 'Bridgeways Day Hospital'),
(27656, 23925, 'no_lang_code', 'name', 'Meridian Medical Systems (United States)'),
(27657, 23926, 'en', 'name', 'Center of Informatization in the Sphere of Culture'),
(27658, 23927, 'en', 'name', 'Dorset County Hospital NHS Foundation Trust'),
(27659, 23928, 'it', 'name', 'Osservatorio Astronomico della Regione Autonoma Valle d''Aosta'),
(27660, 23929, 'es', 'name', 'Corporación Tecnológica de BogotÔ'),
(27661, 23930, 'en', 'name', 'University of St. Francis'),
(27662, 23930, 'es', 'name', 'Universidad de St. Francis'),
(27663, 23931, 'no_lang_code', 'name', 'Premix (Finland)'),
(27664, 23932, 'en', 'name', 'Kao Yuan University'),
(27665, 23932, 'zh', 'name', 'é«˜č‹‘ē§‘ęŠ€å¤§å­ø'),
(27666, 23933, 'en', 'name', 'University of Córdoba'),
(27667, 23933, 'es', 'name', 'Universidad de Córdoba'),
(27668, 23934, 'en', 'name', 'New Victoria Hospital'),
(27669, 23935, 'en', 'name', 'Association of Canadian College and University Teachers of English'),
(27670, 23936, 'no_lang_code', 'name', 'Solo Kleinmotoren (Germany)'),
(27671, 23937, 'en', 'name', 'Kwararafa University'),
(27672, 23938, 'no_lang_code', 'name', 'Ventiva (United States)'),
(27673, 23939, 'en', 'name', 'Enugu State University of Science and Technology'),
(27674, 23940, 'en', 'name', 'Blyth Community Hospital'),
(27675, 23941, 'no_lang_code', 'name', 'Stelar (Italy)'),
(27676, 23942, 'es', 'name', 'Universidad Benito JuƔrez Garcƭa'),
(27677, 23943, 'no_lang_code', 'name', 'Millidyne (Finland)'),
(27678, 23944, 'en', 'name', 'Clevedon Hospital'),
(27679, 23945, 'en', 'name', 'Teddington Memorial Hospital'),
(27680, 23946, 'en', 'name', 'Khanh Hoa General Hospital'),
(27681, 23946, 'vi', 'name', 'Bệnh viện đa khoa tỉnh KhĆ”nh Hòa'),
(27682, 23947, 'no_lang_code', 'name', 'Unimetrik (Spain)'),
(27683, 23948, 'es', 'name', 'Instituto Universitario Puebla'),
(27684, 23949, 'pt', 'name', 'Sociedade de Ensino UniversitƔrio do Nordeste'),
(27685, 23950, 'no_lang_code', 'name', 'Ratos (Sweden)'),
(27686, 23951, 'no_lang_code', 'name', 'Marksman Cellject (Canada)'),
(27687, 23952, 'en', 'name', 'Canadian Historical Association'),
(27688, 23952, 'fr', 'name', 'SociƩtƩ historique du Canada'),
(27689, 23953, 'es', 'name', 'Instituto Profesional Libertador de Los Andes'),
(27690, 23954, 'en', 'name', 'Dulwich Community Hospital'),
(27691, 23955, 'no_lang_code', 'name', 'Optomec (United States)'),
(27692, 23956, 'no_lang_code', 'name', 'Trueflaw (Finland)'),
(27693, 23957, 'no_lang_code', 'name', 'OnTo Technology (United States)'),
(27694, 23958, 'no_lang_code', 'name', 'Opway (Portugal)'),
(27695, 23959, 'no_lang_code', 'name', 'Numerical Algorithms Group (United Kingdom)'),
(27696, 23960, 'no_lang_code', 'name', 'Sievi (Finland)'),
(27697, 23961, 'en', 'name', 'Network of Aquaculture Centres in Asia-Pacific'),
(27698, 23962, 'no_lang_code', 'name', 'Speech Processing Solutions (United States)'),
(27699, 23963, 'en', 'name', 'Maine School Administrative District 1'),
(27700, 23964, 'no_lang_code', 'name', 'Pyramid Technical Consultants (United States)'),
(27701, 23965, 'en', 'name', 'Miami International University of Art & Design'),
(27702, 23965, 'es', 'name', 'Universidad Internacional de Miami de Arte & DiseƱo'),
(27703, 23966, 'no_lang_code', 'name', 'Smiths Detection (Canada)'),
(27704, 23967, 'pt', 'name', 'Centro UniversitÔrio de João Pessoa'),
(27705, 23968, 'no_lang_code', 'name', 'Pfaff Industriemaschinen (Germany)'),
(27706, 23969, 'no_lang_code', 'name', 'Rebellion (United Kingdom)'),
(27707, 23970, 'es', 'name', 'Universidad de Los Andes'),
(27708, 23971, 'no_lang_code', 'name', 'OptoSci (United Kingdom)'),
(27709, 23972, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de TĆ©touan'),
(27710, 23973, 'en', 'name', 'West Heath Hospital'),
(27711, 23974, 'en', 'name', 'Western Iowa Tech Community College'),
(27712, 23975, 'en', 'name', 'Wycliffe College'),
(27713, 23976, 'no_lang_code', 'name', 'Microsystems (United Kingdom)'),
(27714, 23977, 'en', 'name', 'BMI The Droitwich Spa Hospital'),
(27715, 23978, 'no_lang_code', 'name', 'Inspecta (Sweden)'),
(27716, 23979, 'en', 'name', 'Transport Systems Catapult'),
(27717, 23980, 'en', 'name', 'Internet Memory Foundation'),
(27718, 23981, 'en', 'name', 'Pennsylvania Coalition Against Rape'),
(27719, 23982, 'no_lang_code', 'name', 'Solvo Biotechnology (Hungary)'),
(27720, 23983, 'en', 'name', 'Caterham Dene Hospital'),
(27721, 23984, 'en', 'name', 'Safe States Alliance'),
(27722, 23985, 'en', 'name', 'Plymouth Hospital'),
(27723, 23986, 'fr', 'name', 'Ɖcole SupĆ©rieure de Management'),
(27724, 23987, 'no_lang_code', 'name', 'NanOasis Technologies (United States)'),
(27725, 23988, 'en', 'name', 'Yamagata Prefectural University of Health Sciences'),
(27726, 23988, 'ja', 'name', 'å±±å½¢ēœŒē«‹äæå„åŒ»ē™‚å¤§å­¦'),
(27727, 23989, 'no_lang_code', 'name', 'Nexus Engineering (Bulgaria)'),
(27728, 23990, 'en', 'name', 'West Valley College'),
(27729, 23991, 'no_lang_code', 'name', 'Swatch Group (Switzerland)'),
(27730, 23992, 'es', 'name', 'Universidad de Relaciones y Estudios Internacionales'),
(27731, 23993, 'no_lang_code', 'name', 'Nomisma (Italy)'),
(27732, 23994, 'en', 'name', 'Royal Oak Community Coalition'),
(27733, 23995, 'en', 'name', 'Saskatchewan Environment Industry and Managers Association'),
(27734, 23996, 'no_lang_code', 'name', 'Wellcore'),
(27735, 23997, 'es', 'name', 'Universidad Insurgentes'),
(27736, 23998, 'no_lang_code', 'name', 'Polycom (Slovenia)'),
(27737, 23999, 'en', 'name', 'Spire St Anthony’s Hospital'),
(27738, 24000, 'en', 'name', 'Minuteman High School'),
(27739, 24001, 'no_lang_code', 'name', 'Stadtwerke Bochum (Germany)'),
(27740, 24002, 'en', 'name', 'Hung Vuong Hospital'),
(27741, 24002, 'vi', 'name', 'Bệnh viện Hùng Vʰʔng'),
(27742, 24003, 'en', 'name', 'Central Hospital of Wuhan'),
(27743, 24003, 'zh', 'name', 'ę­¦ę±‰åø‚äø­åæƒåŒ»é™¢'),
(27744, 24004, 'no_lang_code', 'name', 'TriOS Mess und Datentechnik (Germany)'),
(27745, 24005, 'en', 'name', 'National Association of EMS Physicians'),
(27746, 24006, 'en', 'name', 'Informal logic (Canada)'),
(27747, 24007, 'es', 'name', 'Universitario Francisco de AsĆ­s'),
(27748, 24008, 'en', 'name', 'Nanao hospital'),
(27749, 24008, 'ja', 'name', 'äøƒå°¾ē—…é™¢'),
(27750, 24009, 'pt', 'name', 'Centro UniversitƔrio de Araraquara'),
(27751, 24010, 'en', 'name', 'Ocean County College'),
(27752, 24011, 'en', 'name', 'Yaroslav-the-Wise Novgorod State University'),
(27753, 24011, 'ru', 'name', 'ŠŠ¾Š²Š³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ярослава ŠœŃƒŠ“рого'),
(27754, 24012, 'en', 'name', 'Birmingham Community Healthcare NHS Trust'),
(27755, 24013, 'no_lang_code', 'name', 'Virtici (United States)'),
(27756, 24014, 'no_lang_code', 'name', 'Starfire Industries (United States)'),
(27757, 24015, 'no_lang_code', 'name', 'YDreams (Portugal)'),
(27758, 24016, 'pt', 'name', 'Universidade Vila Velha'),
(27759, 24017, 'ar', 'name', 'سيب مناجمنت'),
(27760, 24017, 'en', 'name', 'Sup Management'),
(27761, 24018, 'no_lang_code', 'name', 'ShapeSpace (United Kingdom)'),
(27762, 24019, 'no_lang_code', 'name', 'O.D. 260 (United States)'),
(27763, 24020, 'no_lang_code', 'name', 'VistaMed (Ireland)'),
(27764, 24021, 'es', 'name', 'Universidad Instituto Nacional de Ciencias Exactas'),
(27765, 24022, 'no_lang_code', 'name', 'Profusa (United States)'),
(27766, 24023, 'no_lang_code', 'name', 'Nanomotion (Israel)'),
(27767, 24024, 'en', 'name', 'Native Health'),
(27768, 24025, 'no_lang_code', 'name', 'United Science'),
(27769, 24026, 'en', 'name', 'Texas Center for Infectious Disease'),
(27770, 24027, 'no_lang_code', 'name', 'Molecular Networks (Germany)'),
(27771, 24028, 'en', 'name', 'Scottish Qualifications Authority'),
(27772, 24029, 'en', 'name', 'Fleet Community Hospital'),
(27773, 24030, 'en', 'name', 'Research Studios Austria'),
(27774, 24031, 'en', 'name', 'Tees, Esk and Wear Valleys NHS Foundation Trust'),
(27775, 24032, 'no_lang_code', 'name', 'Pretexo (France)'),
(27776, 24033, 'no_lang_code', 'name', 'Notox (Denmark)'),
(27777, 24034, 'es', 'name', 'Universidad Nacional del Oriente'),
(27778, 24035, 'es', 'name', 'Centro Universitario del Noreste'),
(27779, 24036, 'no', 'name', 'Tel-Tek'),
(27780, 24037, 'no_lang_code', 'name', 'Samsung (Germany)'),
(27781, 24038, 'es', 'name', 'Universidad Regiomontana'),
(27782, 24039, 'en', 'name', 'National Institute for Bioprocessing Research and Training'),
(27783, 24040, 'en', 'name', 'Newtown Hospital'),
(27784, 24041, 'no_lang_code', 'name', 'Piaggio (Spain)'),
(27785, 24042, 'en', 'name', 'European Social Observatory'),
(27786, 24043, 'no_lang_code', 'name', 'Hedgeye (United States)'),
(27787, 24044, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© السادات Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ©'),
(27788, 24044, 'en', 'name', 'Sadat Academy for Management Sciences'),
(27789, 24045, 'en', 'name', 'Newholme Hospital'),
(27790, 24046, 'no_lang_code', 'name', 'Mirasys (Finland)'),
(27791, 24047, 'pt', 'name', 'Instituto Superior de Ciencias Sociais e RelaƧƵes Internacionais'),
(27792, 24048, 'en', 'name', 'Hampshire Hospitals NHS Foundation Trust'),
(27793, 24049, 'no_lang_code', 'name', 'Avid (Germany)'),
(27794, 24050, 'en', 'name', 'Higher Knowledge Institute of Languages ​​and Translation'),
(27795, 24051, 'es', 'name', 'Hospital Nacional de NiƱos'),
(27796, 24052, 'no_lang_code', 'name', 'KLA (Ireland)'),
(27797, 24053, 'en', 'name', 'Canadian Association for Theatre Research'),
(27798, 24053, 'fr', 'name', 'Association Canadienne pour la Recherche Théâtrale'),
(27799, 24054, 'en', 'name', 'Plant Protection Institute'),
(27800, 24055, 'en', 'name', 'Ashworth Hospital'),
(27801, 24056, 'es', 'name', 'Centro Universitario de Mercadotecnia y Publicidad'),
(27802, 24057, 'en', 'name', 'East Riding Community Hospital'),
(27803, 24058, 'en', 'name', 'Maniilaq Association'),
(27804, 24059, 'es', 'name', 'Universidad Abierta'),
(27805, 24060, 'en', 'name', 'Southwestern College - Kansas'),
(27806, 24061, 'no_lang_code', 'name', 'Power Plus Communications (Germany)'),
(27807, 24062, 'en', 'name', 'Haslemere Hospital'),
(27808, 24063, 'sv', 'name', 'VƤsterbottens LƤns Landsting'),
(27809, 24064, 'no_lang_code', 'name', 'Reaction Engines (United Kingdom)'),
(27810, 24065, 'no_lang_code', 'name', 'Praevium Research (United States)'),
(27811, 24066, 'no_lang_code', 'name', 'Xiros (United Kingdom)'),
(27812, 24067, 'no_lang_code', 'name', 'Infor (United States)'),
(27813, 24068, 'en', 'name', 'Southern New Hampshire University'),
(27814, 24068, 'fr', 'name', 'UniversitƩ du sud du new hampshire'),
(27815, 24069, 'en', 'name', 'National Technological University'),
(27816, 24069, 'es', 'name', 'Universidad Tecnológica Nacional'),
(27817, 24070, 'en', 'name', 'Alfred Bean Hospital'),
(27818, 24071, 'en', 'name', 'Mansfield Community Hospital'),
(27819, 24072, 'no_lang_code', 'name', 'MathWorks (United Kingdom)'),
(27820, 24073, 'en', 'name', 'Yorkville University'),
(27821, 24074, 'en', 'name', 'Rossall Hospital'),
(27822, 24075, 'en', 'name', 'Joseph Ayo Babalola University'),
(27823, 24076, 'es', 'name', 'Escuela Universitaria de Fisioterapia de la ONCE'),
(27824, 24077, 'no_lang_code', 'name', 'Hua chiew hospital'),
(27825, 24077, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø«ąø±ąø§ą¹€ąø‰ąøµąø¢ąø§'),
(27826, 24078, 'ar', 'name', 'المعهد العالى Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ© ŲØŲ§Ł„Ł‚Ų·Ų§Ł…ŁŠŲ©'),
(27827, 24078, 'en', 'name', 'High Institute for Management Sciences'),
(27828, 24079, 'en', 'name', 'Wetlands International'),
(27829, 24080, 'es', 'name', 'Universitaria Agustiniana'),
(27830, 24081, 'es', 'name', 'Universidad de Zamora'),
(27831, 24082, 'es', 'name', 'Hospital Universitario de Móstoles'),
(27832, 24083, 'no_lang_code', 'name', 'QuanTech (United States)'),
(27833, 24084, 'no_lang_code', 'name', 'New Light Industries (United States)'),
(27834, 24085, 'en', 'name', 'Talcott Mountain Science Center for Student Involvement'),
(27835, 24086, 'en', 'name', 'East Sussex Healthcare NHS Trust'),
(27836, 24087, 'no_lang_code', 'name', 'Planet'),
(27837, 24088, 'en', 'name', 'Hillingdon Hospitals NHS Foundation Trust'),
(27838, 24089, 'no_lang_code', 'name', 'Fungisem (Spain)'),
(27839, 24090, 'en', 'name', 'Shanghai Pudong New Area Gongli Hospital'),
(27840, 24090, 'zh', 'name', 'äøŠęµ·åø‚ęµ¦äøœę–°åŒŗå…¬åˆ©åŒ»é™¢'),
(27841, 24091, 'no_lang_code', 'name', 'Plant Bioscience Limited (United Kingdom)'),
(27842, 24092, 'no_lang_code', 'name', 'Valencell (United States)'),
(27843, 24093, 'es', 'name', 'Centro Universitario Patria'),
(27844, 24094, 'no_lang_code', 'name', 'Microflown Technologies (Netherlands)'),
(27845, 24095, 'en', 'name', 'Paignton Health and Wellbeing Centre'),
(27846, 24096, 'es', 'name', 'Universidad del EjƩrcito y Fuerza AƩrea'),
(27847, 24097, 'ar', 'name', 'وزارة الفلاحة'),
(27848, 24097, 'en', 'name', 'Ministry of Agriculture'),
(27849, 24098, 'de', 'name', 'Technisches Museum Wien'),
(27850, 24098, 'en', 'name', 'Vienna Technical Museum'),
(27851, 24099, 'no_lang_code', 'name', 'Northern Lipids (Canada)'),
(27852, 24100, 'en', 'name', 'University Hospital Lewisham'),
(27853, 24101, 'es', 'name', 'Universidad Unión Bolivariana'),
(27854, 24102, 'en', 'name', 'Salesian University'),
(27855, 24102, 'es', 'name', 'Universidad Salesiana'),
(27856, 24103, 'de', 'name', 'Hochschule Magdeburg-Stendal'),
(27857, 24103, 'en', 'name', 'Magdeburg-Stendal University of Applied Sciences'),
(27858, 24104, 'en', 'name', 'Friary Community Hospital'),
(27859, 24105, 'en', 'name', 'Green IT Amsterdam'),
(27860, 24106, 'en', 'name', 'Spire Southampton Hospital'),
(27861, 24107, 'es', 'name', 'Universidad Estatal del Valle de Ecatepec'),
(27862, 24108, 'en', 'name', 'V. Bakul Institute for Superhard Materials'),
(27863, 24109, 'en', 'name', 'TESL Canada Federation'),
(27864, 24110, 'en', 'name', 'Warren Wilson College'),
(27865, 24111, 'no_lang_code', 'name', 'Vioryl (Greece)'),
(27866, 24112, 'en', 'name', 'Social and Environmental Research Institute'),
(27867, 24113, 'fr', 'name', 'RĆ©seau Trans-Tech’s'),
(27868, 24114, 'es', 'name', 'Sistemas Genómicos'),
(27869, 24115, 'no_lang_code', 'name', 'MLS Multimedia (Greece)'),
(27870, 24116, 'no_lang_code', 'name', 'Thalia Design Automation (United Kingdom)'),
(27871, 24117, 'en', 'name', 'Autonomous University of Durango'),
(27872, 24117, 'es', 'name', 'Universidad Autónoma de Durango'),
(27873, 24118, 'no_lang_code', 'name', 'Semapa (Portugal)'),
(27874, 24119, 'no_lang_code', 'name', 'Visual Acuity (United Kingdom)'),
(27875, 24120, 'en', 'name', 'Tambov State Technical University'),
(27876, 24120, 'ru', 'name', 'Тамбовский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(27877, 24121, 'en', 'name', 'Le Quy Don Technical University'),
(27878, 24121, 'vi', 'name', 'ĐẔi hį»c Kỹ thuįŗ­t LĆŖ Quý ĐƓn'),
(27879, 24122, 'pt', 'name', 'Universidade Nilton Lins'),
(27880, 24123, 'en', 'name', 'Police University College'),
(27881, 24123, 'fi', 'name', 'Poliisiammattikorkeakoulu'),
(27882, 24124, 'en', 'name', 'Office of Rail Regulation'),
(27883, 24125, 'no_lang_code', 'name', 'Orbital Biosciences (United States)'),
(27884, 24126, 'no_lang_code', 'name', 'Sirius Thinking (United States)'),
(27885, 24127, 'en', 'name', 'Port of Gothenburg'),
(27886, 24128, 'es', 'name', 'Universidad Internacional de la Integración de América Latina'),
(27887, 24129, 'en', 'name', 'Santa Fe Indian School'),
(27888, 24130, 'en', 'name', 'Canadian Cartographic Association'),
(27889, 24130, 'fr', 'name', 'L''Association Canadienne de Cartographie'),
(27890, 24131, 'en', 'name', 'EIA University'),
(27891, 24131, 'es', 'name', 'Universidad EIA'),
(27892, 24132, 'ar', 'name', 'Ł…ŲÆŲ±Ų³Ų© Ų¹Ł„ŁˆŁ… Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ'),
(27893, 24132, 'fr', 'name', 'Ɖcole des Sciences de I''information'),
(27894, 24133, 'no_lang_code', 'name', 'QED Technologies (United States)'),
(27895, 24134, 'en', 'name', 'Tidewater Community College'),
(27896, 24135, 'en', 'name', 'Pacific Environment'),
(27897, 24136, 'en', 'name', 'Technological University of Hermosillo'),
(27898, 24136, 'es', 'name', 'Universidad Tecnológica de Hermosillo'),
(27899, 24137, 'en', 'name', 'University of Saint Mary'),
(27900, 24138, 'en', 'name', 'Southern Adventist University'),
(27901, 24139, 'en', 'name', 'Ilkeston Hospital'),
(27902, 24140, 'no_lang_code', 'name', 'Mincon (Ireland)'),
(27903, 24141, 'ar', 'name', 'لمدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للفلاحة'),
(27904, 24141, 'en', 'name', 'Higher National Agronomic School'),
(27905, 24141, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure Agronomique'),
(27906, 24142, 'en', 'name', 'Northcentral University'),
(27907, 24143, 'no_lang_code', 'name', 'Polytec Research (Norway)'),
(27908, 24144, 'en', 'name', 'Wathwood Hospital'),
(27909, 24145, 'no_lang_code', 'name', 'Mirriad (United Kingdom)'),
(27910, 24146, 'en', 'name', 'Swedish National Police Board'),
(27911, 24147, 'en', 'name', 'Spire London East Hospital'),
(27912, 24148, 'no_lang_code', 'name', 'Teles (Germany)'),
(27913, 24149, 'no_lang_code', 'name', 'Südwestrundfunk (Germany)'),
(27914, 24150, 'el', 'name', 'Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(27915, 24150, 'en', 'name', 'European University Cyprus'),
(27916, 24151, 'en', 'name', 'University of Africa'),
(27917, 24152, 'en', 'name', 'Kurashiki University of Science and the Arts'),
(27918, 24152, 'ja', 'name', 'å€‰ę•·čŠøč”“ē§‘å­¦å¤§å­¦'),
(27919, 24153, 'es', 'name', 'Universidad del Sureste'),
(27920, 24154, 'no_lang_code', 'name', 'New Jersey Microsystems (United States)'),
(27921, 24155, 'es', 'name', 'Universidad Bicentenaria de Aragua'),
(27922, 24156, 'no_lang_code', 'name', 'Onyx Solar (Spain)'),
(27923, 24157, 'no_lang_code', 'name', 'TRX Systems (United States)'),
(27924, 24158, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ لل؄دارة'),
(27925, 24158, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de l''Administration'),
(27926, 24159, 'en', 'name', 'Dong Thap Hospital'),
(27927, 24159, 'vi', 'name', 'Bệnh Viện Đa Khoa Đồng ThĆ”p'),
(27928, 24160, 'no_lang_code', 'name', 'Precision Research (United States)'),
(27929, 24161, 'es', 'name', 'Universidad del Valle de Tlaxcala'),
(27930, 24162, 'en', 'name', 'Latin University of Costa Rica'),
(27931, 24162, 'es', 'name', 'Universidad Latina de Costa Rica'),
(27932, 24163, 'no_lang_code', 'name', 'PCB Piezotronics (United States)'),
(27933, 24164, 'en', 'name', 'General Secretariat for Research and Technology'),
(27934, 24165, 'no_lang_code', 'name', 'Xim (United Kingdom)'),
(27935, 24166, 'no_lang_code', 'name', 'Ghana Institute of Management and Public Administration'),
(27936, 24167, 'en', 'name', 'UK Energy Research Centre'),
(27937, 24168, 'en', 'name', 'Whitworth Hospital'),
(27938, 24169, 'ca', 'name', 'Fundació Observatori Esteve Duran'),
(27939, 24170, 'no_lang_code', 'name', 'Microbial ID (United States)'),
(27940, 24171, 'en', 'name', 'Atlantic University'),
(27941, 24172, 'en', 'name', 'Admiral Makarov National University of Shipbuilding'),
(27942, 24172, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŠ¾Ń€Š°Š±Š»ŠµŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ имени аГмирала ŠœŠ°ŠŗŠ°Ń€Š¾Š²Š°'),
(27943, 24172, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŠ¾Ń€Š°Š±Š»ŠµŠ±ŃƒŠ“ŃƒŠ²Š°Š½Š½Ń імені аГмірала ŠœŠ°ŠŗŠ°Ń€Š¾Š²Š°'),
(27944, 24173, 'en', 'name', 'Changzhou University'),
(27945, 24173, 'zh', 'name', 'åøøå·žå¤§å­¦'),
(27946, 24174, 'no_lang_code', 'name', 'MRK Systeme (Germany)'),
(27947, 24175, 'es', 'name', 'Instituto Profesional Carlos Casanueva'),
(27948, 24176, 'en', 'name', 'Northern Caribbean University'),
(27949, 24177, 'no_lang_code', 'name', 'SymTrend (United States)'),
(27950, 24178, 'no_lang_code', 'name', 'Avaya (Israel)'),
(27951, 24179, 'en', 'name', 'Mental Health Consumer Survivor Network'),
(27952, 24180, 'no_lang_code', 'name', 'Produtec (Germany)'),
(27953, 24181, 'no_lang_code', 'name', 'Workbook Publishing'),
(27954, 24182, 'en', 'name', 'Youth Services Bureau of Ottawa'),
(27955, 24182, 'fr', 'name', 'Bureau des Services Ć  la Jeunesse'),
(27956, 24183, 'en', 'name', 'Kings Park Hospital'),
(27957, 24184, 'no_lang_code', 'name', 'Mexel (France)'),
(27958, 24185, 'pt', 'name', 'Centro UniversitƔrio Herminio Ometto de Araras'),
(27959, 24186, 'no_lang_code', 'name', 'Phoenix Contact (Germany)'),
(27960, 24187, 'es', 'name', 'Universidad Blas Pascal'),
(27961, 24188, 'en', 'name', 'Mental Health Mental Retardation of Tarrant County'),
(27962, 24189, 'ja', 'name', 'ć™ć‚€ć®ć•ćØé«˜å°¾ē—…é™¢'),
(27963, 24189, 'no_lang_code', 'name', 'Takao Hospital'),
(27964, 24190, 'en', 'name', 'Ruby Lake Lagoon Nature Reserve Society'),
(27965, 24191, 'es', 'name', 'Universidad Centroamericana de Ciencias Empresariales'),
(27966, 24192, 'no_lang_code', 'name', 'Ohmatex (Denmark)'),
(27967, 24193, 'en', 'name', 'Thame Community Hospital'),
(27968, 24194, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁƒŲ±ŲÆŁŲ§Ł†'),
(27969, 24194, 'en', 'name', 'University of Kordofan'),
(27970, 24195, 'no_lang_code', 'name', 'Autoneum (Switzerland)'),
(27971, 24196, 'es', 'name', 'Universidad Vasco de Quiroga'),
(27972, 24197, 'en', 'name', 'Avataq Cultural Institute'),
(27973, 24198, 'en', 'name', 'Peabody'),
(27974, 24199, 'no_lang_code', 'name', 'MetraLabs (Germany)'),
(27975, 24200, 'no_lang_code', 'name', 'SRM Reti e MobilitĆ  (Italy)'),
(27976, 24201, 'en', 'name', 'Royal Commission on the Ancient and Historical Monuments of Wales'),
(27977, 24202, 'en', 'name', 'Switchboard of Miami'),
(27978, 24203, 'en', 'name', 'Canadian Nautical Research Society'),
(27979, 24203, 'fr', 'name', 'SociƩtƩ Canadienne Pour la Recherche Nautique'),
(27980, 24204, 'en', 'name', 'Abbey Ridge Observatory'),
(27981, 24205, 'no_lang_code', 'name', 'RoadNarrows (United States)'),
(27982, 24206, 'es', 'name', 'Grupo Universitario Modelo'),
(27983, 24207, 'en', 'name', 'International Research Institute of Stavanger'),
(27984, 24208, 'en', 'name', 'Catholic University College of Ghana'),
(27985, 24209, 'ja', 'name', 'ę±åŒ—å­¦é™¢å¤§å­¦'),
(27986, 24209, 'no_lang_code', 'name', 'Tohoku Gakuin University'),
(27987, 24210, 'no_lang_code', 'name', 'Vornia Biomaterials (Ireland)'),
(27988, 24211, 'en', 'name', 'Shahrekord University of Medical Sciences'),
(27989, 24211, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکي ؓهرکرد'),
(27990, 24212, 'no_lang_code', 'name', 'Omtaş (Turkey)'),
(27991, 24213, 'en', 'name', 'Michael Okpara University of Agriculture'),
(27992, 24214, 'en', 'name', 'Society for Research on Biological Rhythms'),
(27993, 24215, 'no_lang_code', 'name', 'SƤchsische BinnenhƤfen Oberelbe (Germany)'),
(27994, 24216, 'no_lang_code', 'name', 'Neumedicines (United States)'),
(27995, 24217, 'es', 'name', 'Universidad del Desarrollo Empresarial y Pedagógico'),
(27996, 24218, 'es', 'name', 'Universidad Privada Cumbre'),
(27997, 24219, 'en', 'name', 'Woodlands Hospital'),
(27998, 24220, 'no_lang_code', 'name', 'Texilia (Italy)'),
(27999, 24221, 'no_lang_code', 'name', 'Stansted Fluid Power (United Kingdom)'),
(28000, 24222, 'en', 'name', 'Jungwon University'),
(28001, 24223, 'en', 'name', 'Beijing Tsinghua Chang Gung Hospital'),
(28002, 24223, 'zh', 'name', 'åŒ—äŗ¬ęø…åŽé•æåŗšåŒ»é™¢'),
(28003, 24224, 'no_lang_code', 'name', 'Diodes (United Kingdom)'),
(28004, 24225, 'en', 'name', 'Knowledge Centre Wind turbine Materials and Constructions'),
(28005, 24226, 'en', 'name', 'Plateau State University'),
(28006, 24227, 'no_lang_code', 'name', 'Sirtres (Italy)'),
(28007, 24228, 'en', 'name', 'Herat University'),
(28008, 24228, 'fa', 'name', 'دانؓگاه هرات'),
(28009, 24229, 'en', 'name', 'BMI The Princess Margaret Hospital'),
(28010, 24230, 'no_lang_code', 'name', 'Socotec (France)'),
(28011, 24231, 'no_lang_code', 'name', 'Oncovir (United States)'),
(28012, 24232, 'no_lang_code', 'name', 'Sensor Coating Systems (United Kingdom)'),
(28013, 24233, 'en', 'name', 'St Albans City Hospital'),
(28014, 24234, 'en', 'name', 'Emsworth Hospital'),
(28015, 24235, 'en', 'name', 'Woodlands Hospital'),
(28016, 24236, 'en', 'name', 'Technical College of Applied Sciences'),
(28017, 24237, 'bg', 'name', 'Риск инженеринг'),
(28018, 24237, 'no_lang_code', 'name', 'Risk Engineering (Bulgaria)'),
(28019, 24238, 'no_lang_code', 'name', 'Nohms Technologies (United States)'),
(28020, 24239, 'en', 'name', 'House of Experiments'),
(28021, 24240, 'no_lang_code', 'name', 'VM Discovery (United States)'),
(28022, 24241, 'no_lang_code', 'name', 'Teledyne Princeton Instruments (United States)'),
(28023, 24242, 'en', 'name', 'University of Lahore'),
(28024, 24242, 'ur', 'name', 'جامعہ Ł„Ų§ŪŁˆŲ±'),
(28025, 24243, 'es', 'name', 'Universidad Santa MarĆ­a'),
(28026, 24244, 'en', 'name', 'Nipomo Health Center'),
(28027, 24245, 'es', 'name', 'Universidad del Centro de MƩxico'),
(28028, 24246, 'no_lang_code', 'name', 'Orthogonal (United States)'),
(28029, 24247, 'en', 'name', 'Ashford and St Peter''s Hospitals NHS Foundation Trust'),
(28030, 24248, 'fa', 'name', 'دانؓگاه ؓهرکرد'),
(28031, 24248, 'no_lang_code', 'name', 'Shahrekord University'),
(28032, 24249, 'en', 'name', 'Hundens Lane Day Hospital'),
(28033, 24250, 'no_lang_code', 'name', 'Pulmotect (United States)'),
(28034, 24251, 'de', 'name', 'Heraeus Konzern'),
(28035, 24251, 'no_lang_code', 'name', 'Heraeus (Germany)'),
(28036, 24252, 'en', 'name', 'Canadian Bioethics Society'),
(28037, 24252, 'fr', 'name', 'SociƩtƩ Canadienne de la BioƩthique MƩdicale'),
(28038, 24253, 'en', 'name', 'Simpson University'),
(28039, 24254, 'no_lang_code', 'name', 'Turkcell (Turkey)'),
(28040, 24255, 'es', 'name', 'Católica del Norte Fundación Universitaria'),
(28041, 24256, 'no_lang_code', 'name', 'Rusangu University'),
(28042, 24257, 'no_lang_code', 'name', '3R Agrocarbon (Hungary)'),
(28043, 24258, 'no_lang_code', 'name', 'Micromatica (Italy)'),
(28044, 24259, 'no_lang_code', 'name', 'Visup (Italy)'),
(28045, 24260, 'es', 'name', 'Colegiatura Colombiana Institución Universitaria'),
(28046, 24261, 'no_lang_code', 'name', 'Trillium Therapeutics (Canada)'),
(28047, 24262, 'no_lang_code', 'name', 'Vida Diagnostics (United States)'),
(28048, 24263, 'en', 'name', 'Oxford City Council'),
(28049, 24264, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŲØŲ±ŁŠŲÆ ŁˆŲ§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ'),
(28050, 24264, 'fr', 'name', 'Institut National des Postes et TƩlƩcommunications'),
(28051, 24265, 'en', 'name', 'Northwest Florida State College'),
(28052, 24266, 'es', 'name', 'Universidad del Pedregal'),
(28053, 24267, 'no_lang_code', 'name', 'Recylex (France)'),
(28054, 24268, 'no_lang_code', 'name', 'TBC Innovations (France)'),
(28055, 24269, 'no_lang_code', 'name', 'SelenBio (United States)'),
(28056, 24270, 'en', 'name', 'Spot Observatory'),
(28057, 24271, 'en', 'name', 'Bonn Science Shop'),
(28058, 24271, 'no_lang_code', 'name', 'Wissenschaftsladen'),
(28059, 24272, 'no_lang_code', 'name', 'On Our Own of Maryland (United States)'),
(28060, 24273, 'no_lang_code', 'name', 'WPP (Belgium)'),
(28061, 24274, 'no_lang_code', 'name', 'Span'),
(28062, 24275, 'fr', 'name', 'Pigier BƩnin'),
(28063, 24276, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ببوزريعة'),
(28064, 24276, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Bouzareah Alger'),
(28065, 24277, 'en', 'name', 'University of Mkar'),
(28066, 24278, 'en', 'name', 'San Luis Obispo County Mental Health Services'),
(28067, 24279, 'no_lang_code', 'name', 'RetroVirox (United States)'),
(28068, 24280, 'no_lang_code', 'name', 'Twickenham Plating Group (United Kingdom)'),
(28069, 24281, 'no_lang_code', 'name', 'RISC Software (Austria)'),
(28070, 24282, 'en', 'name', 'Soma Central Hospital'),
(28071, 24282, 'ja', 'name', 'čŒ¶ē•‘ä¼š 相馬中央病院'),
(28072, 24283, 'no_lang_code', 'name', 'Smart Polymers Research Corporation (United States)'),
(28073, 24284, 'en', 'name', 'Mental Health and Recovery Services Board'),
(28074, 24285, 'en', 'name', 'Busoga University'),
(28075, 24286, 'pt', 'name', 'Centro UniversitÔrio Assunção'),
(28076, 24287, 'es', 'name', 'Universidad Filadelfia de MƩxico'),
(28077, 24288, 'en', 'name', 'Haltwhistle War Memorial Hospital'),
(28078, 24289, 'en', 'name', 'Swaffham Community Hospital'),
(28079, 24290, 'en', 'name', 'The Holly Private Hospital'),
(28080, 24291, 'en', 'name', 'Korea University of Technology and Education'),
(28081, 24291, 'ko', 'name', 'ķ•œźµ­źø°ģˆ źµģœ”ėŒ€ķ•™źµ'),
(28082, 24292, 'en', 'name', 'V.I. Vernadsky Institute of Geochemistry and Analytical Chemistry'),
(28083, 24292, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠžŃ€Š“ена Ленина Šø ŠžŃ€Š“ŠµŠ½Š° ŠžŠŗŃ‚ŃŠ±Ń€ŃŒŃŠŗŠ¾Š¹ Š ŠµŠ²Š¾Š»ŃŽŃ†ŠøŠø Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геохимии Šø аналитической химии им. Š’.И. ВернаГского Российской акаГемии наук'),
(28084, 24293, 'no_lang_code', 'name', 'MAN (Denmark)'),
(28085, 24294, 'no_lang_code', 'name', 'Riegger Diamantwerkzeuge (Germany)'),
(28086, 24295, 'en', 'name', 'Perth Observatory'),
(28087, 24296, 'no_lang_code', 'name', 'Schauenburg (United Kingdom)'),
(28088, 24297, 'no_lang_code', 'name', 'Neotherix (United Kingdom)'),
(28089, 24298, 'no_lang_code', 'name', 'Renewable Energy Corporation (Norway)'),
(28090, 24299, 'en', 'name', 'St Martins Hospital'),
(28091, 24300, 'es', 'name', 'Facultad de TeologĆ­a Pontificia y Civil de Lima'),
(28092, 24301, 'es', 'name', 'Corporación Internacional para el Desarrollo Educativo'),
(28093, 24302, 'en', 'name', 'Public Technology Institute'),
(28094, 24303, 'no_lang_code', 'name', 'SAS Institute (United Kingdom)'),
(28095, 24304, 'es', 'name', 'Universidad Fray Luca Paccioli'),
(28096, 24305, 'en', 'name', 'Autonomous University of Santo Domingo'),
(28097, 24305, 'es', 'name', 'Universidad Autónoma de Santo Domingo'),
(28098, 24306, 'en', 'name', 'Catholic University of Angola'),
(28099, 24306, 'pt', 'name', 'Universidade Católica de Angola'),
(28100, 24307, 'en', 'name', 'St George''s Park'),
(28101, 24308, 'en', 'name', 'Federation of Canadian Demographers'),
(28102, 24308, 'fr', 'name', 'FƩdƩration Canadienne de DƩmographie'),
(28103, 24309, 'en', 'name', 'Waypoint Centre for Mental Health Care'),
(28104, 24309, 'fr', 'name', 'Waypoint Centre de Soins de SantƩ Mentale'),
(28105, 24310, 'en', 'name', 'Institute for Christian Studies'),
(28106, 24311, 'no_lang_code', 'name', 'PML Applications (United Kingdom)'),
(28107, 24312, 'en', 'name', 'Minghsin University of Science and Technology'),
(28108, 24312, 'zh', 'name', 'ę˜Žę–°ē§‘ęŠ€å¤§å­ø'),
(28109, 24313, 'no_lang_code', 'name', 'Techno Innovation South Tyrol (Italy)'),
(28110, 24314, 'pt', 'name', 'Centro UniversitƔrio Carioca'),
(28111, 24315, 'en', 'name', 'National Alliance for Partnerships in Equity'),
(28112, 24316, 'en', 'name', 'Bel Campus Technological University'),
(28113, 24316, 'fr', 'name', 'UniversitƩ Technologique Bel Campus'),
(28114, 24317, 'no_lang_code', 'name', 'Zoo Digital (United Kingdom)'),
(28115, 24318, 'en', 'name', 'Capital University of Physical Education and Sports'),
(28116, 24318, 'zh', 'name', 'é¦–éƒ½ä½“č‚²å­¦é™¢'),
(28117, 24319, 'en', 'name', 'Independence University'),
(28118, 24320, 'en', 'name', 'Jones International University');
INSERT INTO `ror_settings` VALUES
(28119, 24321, 'es', 'name', 'Escuela de Administración y Mercadotecnia del Quindío'),
(28120, 24322, 'en', 'name', 'National School of Public Health, Management and Professional Development'),
(28121, 24322, 'ro', 'name', 'Şcoala NaÅ£ională de Sănătate Publică, Management şi PerfecÅ£ionare Ć®n Domeniul Sanitar'),
(28122, 24323, 'es', 'name', 'Universidad Católica Nordestana'),
(28123, 24324, 'es', 'name', 'Universidad de Londres, University of London'),
(28124, 24325, 'en', 'name', 'Tufts Health Care Institute'),
(28125, 24326, 'no_lang_code', 'name', 'Touchstone Exploration (Canada)'),
(28126, 24327, 'en', 'name', 'Stroud General Hospital'),
(28127, 24328, 'en', 'name', 'Barton Community Health & Care Centre'),
(28128, 24329, 'en', 'name', 'Urban planning Institute of the Republic of Slovenia'),
(28129, 24329, 'sl', 'name', 'Urbanistični inŔtitut Republike Slovenije'),
(28130, 24330, 'no_lang_code', 'name', 'Segasist Technologies (Canada)'),
(28131, 24331, 'no_lang_code', 'name', 'Parabon Computation (United States)'),
(28132, 24332, 'no_lang_code', 'name', 'ProImmune (United Kingdom)'),
(28133, 24333, 'no_lang_code', 'name', 'Cohort (United Kingdom)'),
(28134, 24334, 'en', 'name', 'New Selby War Memorial Hospital'),
(28135, 24335, 'en', 'name', 'Molesey Hospital'),
(28136, 24336, 'no_lang_code', 'name', 'Proceed (United States)'),
(28137, 24337, 'en', 'name', 'Third People''s Hospital of Yunnan Province'),
(28138, 24337, 'zh', 'name', 'äŗ‘å—ēœē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(28139, 24338, 'en', 'name', 'Digital Heritage Netherlands'),
(28140, 24339, 'sl', 'name', 'InŔtitut za Celulozo in Papir Ljubljana'),
(28141, 24340, 'no_lang_code', 'name', 'Tescan (Czechia)'),
(28142, 24341, 'ar', 'name', 'Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„ŲŖŁˆŁ†Ų³ŁŠŲ© Ł„Ł„ŁƒŁ‡Ų±ŲØŲ§Ų” و الغاز'),
(28143, 24341, 'no_lang_code', 'name', 'SociƩtƩ Tunisienne de l''ElectricitƩ et du Gaz (Tunisia)'),
(28144, 24342, 'en', 'name', 'Cuttington University'),
(28145, 24343, 'en', 'name', 'Mental Health Systems'),
(28146, 24344, 'no_lang_code', 'name', 'Schoenfabriek Wed. J.P. van Bommel (Netherlands)'),
(28147, 24345, 'en', 'name', 'Michigan Department of Education'),
(28148, 24346, 'no_lang_code', 'name', 'EnServe Group (United Kingdom)'),
(28149, 24347, 'es', 'name', 'Universidad Católica Luis Amigó'),
(28150, 24348, 'en', 'name', 'Eastman Dental Hospital'),
(28151, 24349, 'en', 'name', 'GreenCentre Canada'),
(28152, 24350, 'en', 'name', 'Bridgewater Hospital'),
(28153, 24351, 'es', 'name', 'Corporación Universitaria Autónoma del Cauca'),
(28154, 24352, 'fr', 'name', 'Institut Universitaire de France'),
(28155, 24353, 'es', 'name', 'Fundación Universitaria Internacional del Tropico Américano'),
(28156, 24354, 'es', 'name', 'Universidad Colegio Mayor de Cundinamarca'),
(28157, 24355, 'en', 'name', 'Mercy Medical Center Merced'),
(28158, 24356, 'en', 'name', 'East Midlands Ambulance Service NHS Trust'),
(28159, 24357, 'en', 'name', 'Royal London Hospital for Integrated Medicine'),
(28160, 24358, 'en', 'name', 'Gosport War Memorial Hospital'),
(28161, 24359, 'en', 'name', 'Northumbria Specialist Emergency Care Hospital'),
(28162, 24360, 'no_lang_code', 'name', 'Shift (United Kingdom)'),
(28163, 24361, 'en', 'name', 'Sevenoaks Hospital'),
(28164, 24362, 'en', 'name', 'Bromyard Community Hospital'),
(28165, 24363, 'en', 'name', 'Samra University of Oriental Medicine'),
(28166, 24364, 'en', 'name', 'Norwegian Shipowners'' Association'),
(28167, 24365, 'en', 'name', 'Transport Research Institute'),
(28168, 24366, 'no_lang_code', 'name', 'Brookes Publishing (United States)'),
(28169, 24367, 'de', 'name', 'Stadtwerke Bad Urach (Germany)'),
(28170, 24368, 'en', 'name', 'Tennessee Wesleyan College'),
(28171, 24369, 'en', 'name', 'Leek Moorlands Hospital'),
(28172, 24370, 'es', 'name', 'Universidad Privada Abierta Latinoamericana'),
(28173, 24371, 'no_lang_code', 'name', 'Sol-Gel Solutions (United States)'),
(28174, 24372, 'es', 'name', 'PolitƩcnico de la Costa AtlƔntica'),
(28175, 24373, 'en', 'name', 'Shropshire Council'),
(28176, 24374, 'pt', 'name', 'Centro UniversitƔrio Central Paulista'),
(28177, 24375, 'no_lang_code', 'name', 'Kharkov Technologies'),
(28178, 24376, 'en', 'name', 'Federal University of Technology Minna'),
(28179, 24377, 'es', 'name', 'Universidad Santo Tomas de Oriente y Medio DĆ­a'),
(28180, 24378, 'en', 'name', 'Scottish Funding Council'),
(28181, 24379, 'no_lang_code', 'name', 'Aluminium Refining, Degassing and Filtering (Canada)'),
(28182, 24380, 'no_lang_code', 'name', 'Tesi (Italy)'),
(28183, 24381, 'en', 'name', 'George Moore Community Clinic'),
(28184, 24382, 'en', 'name', 'Vaughn College of Aeronautics and Technology'),
(28185, 24383, 'en', 'name', 'Salem University'),
(28186, 24384, 'es', 'name', 'PolitƩcnico Colombiano Jaime Isaza Cadavid'),
(28187, 24385, 'no_lang_code', 'name', 'Tele-Rilevamento Europa (Italy)'),
(28188, 24386, 'en', 'name', 'Regent Business School'),
(28189, 24387, 'en', 'name', 'Moors for the Future Partnership'),
(28190, 24388, 'en', 'name', 'Kentucky Christian University'),
(28191, 24389, 'pt', 'name', 'Universidade Presidente AntƓnio Carlos'),
(28192, 24390, 'en', 'name', 'Xenobiotic Detection Systems'),
(28193, 24391, 'en', 'name', 'Spire Manchester Hospital'),
(28194, 24392, 'no_lang_code', 'name', 'Norcada (Canada)'),
(28195, 24393, 'en', 'name', 'Tien Giang General Hospital'),
(28196, 24393, 'vi', 'name', 'Bệnh viện Đa khoa Trung tĆ¢m Tiền Giang'),
(28197, 24394, 'en', 'name', 'Terros'),
(28198, 24395, 'no_lang_code', 'name', 'Trentino Network (Italy)'),
(28199, 24396, 'no_lang_code', 'name', 'People Designs (United States)'),
(28200, 24397, 'en', 'name', 'Chantry House Day Hospital'),
(28201, 24398, 'no_lang_code', 'name', 'Rodenburg Biopolymers (Netherlands)'),
(28202, 24399, 'es', 'name', 'Universidad TƩcnica de Babahoyo'),
(28203, 24400, 'no_lang_code', 'name', 'Sunplugged (Austria)'),
(28204, 24401, 'es', 'name', 'Instituto Superior PolitƩcnico JosƩ Antonio Echeverrƭa, Polytechnic JosƩ Antonio Echeverrƭa'),
(28205, 24402, 'en', 'name', 'Sullivan University'),
(28206, 24403, 'en', 'name', 'Pacific Union College'),
(28207, 24404, 'es', 'name', 'Universidad Autónoma de Colombia'),
(28208, 24405, 'es', 'name', 'Universidad Olmeca'),
(28209, 24406, 'es', 'name', 'Instituto Profesional Esucomex'),
(28210, 24407, 'en', 'name', 'Severtsov Institute of Ecology and Evolution'),
(28211, 24407, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø ŃŠ²Š¾Š»ŃŽŃ†ŠøŠø им.А.Š. Деверцова Российской акаГемии наук'),
(28212, 24408, 'no_lang_code', 'name', 'National Institute of Public Administration'),
(28213, 24409, 'en', 'name', 'St Nicholas Hospital'),
(28214, 24410, 'en', 'name', 'Havant War Memorial Hospital'),
(28215, 24411, 'es', 'name', 'Universidad Jean-Jacques Rousseau'),
(28216, 24412, 'no_lang_code', 'name', 'Oxford Intelligent Machines (United Kingdom)'),
(28217, 24413, 'es', 'name', 'Universidad AnƔhuac MƩxico Sur, Universidad AnƔhuac del Sur'),
(28218, 24414, 'el', 'name', 'Εθνική Τράπεζα της ΕλλάΓος'),
(28219, 24414, 'no_lang_code', 'name', 'National Bank of Greece (Greece)'),
(28220, 24415, 'en', 'name', 'Liskeard Community Hospital'),
(28221, 24416, 'es', 'name', 'Universidad de Sotavento'),
(28222, 24417, 'es', 'name', 'Universidad Escuela Libre de Derecho'),
(28223, 24418, 'es', 'name', 'Universidad Mesoamericana de San AgustĆ­n'),
(28224, 24419, 'en', 'name', 'Minneapolis Public Schools'),
(28225, 24420, 'en', 'name', 'National Trust for Scotland'),
(28226, 24421, 'en', 'name', 'Technology Foundation STW'),
(28227, 24421, 'nl', 'name', 'Technologiestichting STW'),
(28228, 24422, 'en', 'name', 'Edgware Community Hospital'),
(28229, 24423, 'no_lang_code', 'name', 'Solidica (United States)'),
(28230, 24424, 'no_lang_code', 'name', 'Societate Comerciala Pentru Cercetare, Proiectare si Productie de Echipamente si Instalatii de Automatizare (Romania)'),
(28231, 24425, 'no_lang_code', 'name', 'Veolia (United Kingdom)'),
(28232, 24426, 'no_lang_code', 'name', 'Rochal Industries (United States)'),
(28233, 24427, 'no_lang_code', 'name', 'OHB (Germany)'),
(28234, 24428, 'de', 'name', 'Exzellenzcluster Universe'),
(28235, 24428, 'en', 'name', 'Excellence Cluster Universe'),
(28236, 24429, 'no_lang_code', 'name', 'nsm Norbert SchlƤfli (Switzerland)'),
(28237, 24430, 'no_lang_code', 'name', 'Datacorp (United States)'),
(28238, 24431, 'es', 'name', 'Escuela Moderna de MĆŗsica y Danza, Instituto Profesional Escuela Moderna De Musica'),
(28239, 24432, 'es', 'name', 'Centro Universitario de Sonora'),
(28240, 24433, 'en', 'name', 'The Chiltern Hospital'),
(28241, 24434, 'en', 'name', 'Antioch University Seattle'),
(28242, 24435, 'no_lang_code', 'name', 'Setas (Turkey)'),
(28243, 24436, 'en', 'name', 'Stamford and Rutland Hospital'),
(28244, 24437, 'en', 'name', 'Netcare Jakaranda Hospital'),
(28245, 24438, 'en', 'name', 'Auchi Polytechnic'),
(28246, 24439, 'no_lang_code', 'name', 'RGB Medical Devices (Spain)'),
(28247, 24440, 'no_lang_code', 'name', 'Chemsupply (Switzerland)'),
(28248, 24441, 'en', 'name', 'Grays Court Community Hospital'),
(28249, 24442, 'en', 'name', 'MidAmerica Nazarene University'),
(28250, 24443, 'no_lang_code', 'name', 'Railinfratrust (Netherlands)'),
(28251, 24444, 'en', 'name', 'Shipley Hospital'),
(28252, 24445, 'en', 'name', 'Bluefields Indian and Caribbean University'),
(28253, 24446, 'no_lang_code', 'name', 'Desso (Belgium)'),
(28254, 24447, 'no_lang_code', 'name', 'Rainbow Photonics (Switzerland)'),
(28255, 24448, 'no_lang_code', 'name', 'SiteOne Therapeutics (United States)'),
(28256, 24449, 'pt', 'name', 'Centro UniversitƔrio Moura Lacerda'),
(28257, 24450, 'no_lang_code', 'name', 'Mikron (Germany)'),
(28258, 24451, 'no_lang_code', 'name', 'Myasishchev Design Bureau (Russia)'),
(28259, 24452, 'no_lang_code', 'name', 'QuantLogic (United States)'),
(28260, 24453, 'en', 'name', 'New England College'),
(28261, 24454, 'no_lang_code', 'name', 'Management Science Associates (United States)'),
(28262, 24455, 'en', 'name', 'St Lukes Hospital'),
(28263, 24456, 'no_lang_code', 'name', 'MariLim (Germany)'),
(28264, 24457, 'fr', 'name', 'Ɖcole SupĆ©rieure des Sciences de l''IngĆ©nierie Commerciale'),
(28265, 24458, 'no_lang_code', 'name', 'Finisar (Germany)'),
(28266, 24459, 'no_lang_code', 'name', 'Rocky Research (United States)'),
(28267, 24460, 'es', 'name', 'Fundación de Estudios Superiores Comfanorte, Universidad FESC'),
(28268, 24461, 'en', 'name', 'Cygnet Hospital Wyke'),
(28269, 24462, 'en', 'name', 'University of Celaya'),
(28270, 24462, 'es', 'name', 'Universidad de Celaya'),
(28271, 24463, 'no_lang_code', 'name', 'TomTom (Belgium)'),
(28272, 24464, 'en', 'name', 'American Sentinel University'),
(28273, 24465, 'no_lang_code', 'name', 'RE Hydrogen (United Kingdom)'),
(28274, 24466, 'no_lang_code', 'name', 'Silver Lake Research (United States)'),
(28275, 24467, 'en', 'name', 'Gyeongnam National University of Science and Technology'),
(28276, 24467, 'ko', 'name', 'ź²½ė‚Øź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(28277, 24468, 'en', 'name', 'Viet Tri University of Industry'),
(28278, 24468, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghiệp Việt TrƬ'),
(28279, 24469, 'en', 'name', 'Responsive Centers For Psychology & Learning'),
(28280, 24470, 'it', 'name', 'Agenzia Regionale di SanitĆ  della Toscana'),
(28281, 24471, 'no_lang_code', 'name', 'Tangerine (United Kingdom)'),
(28282, 24472, 'en', 'name', 'Balkh University'),
(28283, 24472, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† بلخ'),
(28284, 24473, 'no_lang_code', 'name', 'Transfaction (United Kingdom)'),
(28285, 24474, 'en', 'name', 'Exeter Hospital'),
(28286, 24475, 'no_lang_code', 'name', 'Vertex Pharmaceuticals (Canada)'),
(28287, 24476, 'en', 'name', 'Methodist University College Ghana'),
(28288, 24477, 'es', 'name', 'Universidad Adventista de Nicaragua'),
(28289, 24478, 'en', 'name', 'Mayfair Day Hospital'),
(28290, 24479, 'en', 'name', 'Film Studies Association of Canada'),
(28291, 24479, 'fr', 'name', 'Association Canadienne d’études CinĆ©matographiques'),
(28292, 24480, 'no_lang_code', 'name', 'Runcom Technologies (Israel)'),
(28293, 24481, 'en', 'name', 'Claremont Private Hospital'),
(28294, 24482, 'no_lang_code', 'name', 'Sachtleben Bergbau (Germany)'),
(28295, 24483, 'no_lang_code', 'name', 'Novartis (Canada)'),
(28296, 24484, 'en', 'name', 'Geological Observatory of Coldigioco'),
(28297, 24484, 'it', 'name', 'Osservatorio Geologico di Coldigioco'),
(28298, 24485, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‚Ų§ŲµŲÆŁŠ Ł…Ų±ŲØŲ§Ų­'),
(28299, 24485, 'en', 'name', 'University of Ouargla'),
(28300, 24486, 'en', 'name', 'East of England Ambulance Service NHS Trust'),
(28301, 24487, 'en', 'name', 'Miguel de Cervantes University'),
(28302, 24487, 'es', 'name', 'Universidad Miguel de Cervantes'),
(28303, 24488, 'en', 'name', 'Office of Extramural Research'),
(28304, 24489, 'en', 'name', 'Guilin University of Electronic Technology'),
(28305, 24489, 'zh', 'name', 'ę”‚ęž—ē”µå­ē§‘ęŠ€å¤§å­¦'),
(28306, 24490, 'en', 'name', 'Texas Higher Education Coordinating Board'),
(28307, 24491, 'no_lang_code', 'name', 'O.N. Diagnostics (United States)'),
(28308, 24492, 'no_lang_code', 'name', 'Ramon.Space (Israel)'),
(28309, 24493, 'es', 'name', 'Fundación Universitaria San Alfonso'),
(28310, 24494, 'fr', 'name', 'Institut SupƩrieur de l''Information et de la Communication'),
(28311, 24495, 'no_lang_code', 'name', 'Polymer Chemistry Innovations (United States)'),
(28312, 24496, 'en', 'name', 'Liaoning University of Technology'),
(28313, 24496, 'zh', 'name', '辽宁巄业大学'),
(28314, 24497, 'no_lang_code', 'name', 'Solpros (Finland)'),
(28315, 24498, 'de', 'name', 'Verband Deutscher Maschinen- und Anlagenbau'),
(28316, 24499, 'en', 'name', 'Merseytravel'),
(28317, 24500, 'en', 'name', 'Orenburg State University'),
(28318, 24500, 'ru', 'name', 'ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28319, 24501, 'es', 'name', 'Universidad Nacional de Agricultura'),
(28320, 24502, 'en', 'name', 'Queen Victoria Memorial Hospital'),
(28321, 24503, 'en', 'name', 'Society of Behavioral Medicine'),
(28322, 24504, 'no_lang_code', 'name', 'Photonics Bretagne (France)'),
(28323, 24505, 'en', 'name', 'Ussuriysk Astrophysical Observatory'),
(28324, 24505, 'ru', 'name', 'Š£ŃŃŃƒŃ€ŠøŠ¹ŃŠŗŠ°Ń Š°ŃŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ Š”Š’Šž Š ŠŠ'),
(28325, 24506, 'en', 'name', 'Fordingbridge Hospital'),
(28326, 24507, 'no_lang_code', 'name', 'Schumacher Orgelbau (Belgium)'),
(28327, 24508, 'es', 'name', 'Universidad Alzate de Ozumba'),
(28328, 24509, 'en', 'name', 'South Thames College'),
(28329, 24510, 'en', 'name', 'Management College of Southern Africa'),
(28330, 24511, 'no_lang_code', 'name', 'Utility Systems Science and Software (United States)'),
(28331, 24512, 'fr', 'name', 'Association Canadienne d''Education de Langue FranƧaise'),
(28332, 24513, 'en', 'name', 'Surfactant Associates'),
(28333, 24514, 'en', 'name', 'Monkwearmouth Hospital'),
(28334, 24515, 'pt', 'name', 'Universidade Regional Integrada do Alto Uruguai e das MissƵes'),
(28335, 24516, 'en', 'name', 'Coddenham Astronomical Observatory'),
(28336, 24517, 'no_lang_code', 'name', 'S2 Grupo (Spain)'),
(28337, 24518, 'no_lang_code', 'name', 'Verax Biomedical (United States)'),
(28338, 24519, 'no_lang_code', 'name', 'Ridge and Partners (United Kingdom)'),
(28339, 24520, 'no_lang_code', 'name', 'ECW Press (Canada)'),
(28340, 24521, 'en', 'name', 'Tengku Ampuan Rahimah Hospital'),
(28341, 24521, 'ms', 'name', 'Hospital Tengku Ampuan Rahimah'),
(28342, 24522, 'en', 'name', 'Perm National Research Polytechnic University'),
(28343, 24522, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28344, 24523, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes Ɖconomiques et Commerciales'),
(28345, 24524, 'fr', 'name', 'Centre Hospitalier Intercommunal de FrƩjus Saint-Raphaƫl'),
(28346, 24525, 'en', 'name', 'Assumption University'),
(28347, 24526, 'en', 'name', 'Riverland Community College'),
(28348, 24527, 'no_lang_code', 'name', 'PCAS (France)'),
(28349, 24528, 'en', 'name', 'National Institute for Nuclear, Chemical and Biological Protection'),
(28350, 24529, 'fr', 'name', 'UniversitƩ Montplaisir Tunis'),
(28351, 24530, 'fr', 'name', 'Institut SupƩrieur de Commerce et d''Administration des Entreprises'),
(28352, 24531, 'en', 'name', 'Ibrahim Badamasi Babangida University'),
(28353, 24532, 'bg', 'name', 'Делскостопанска Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(28354, 24532, 'en', 'name', 'Agricultural Academy'),
(28355, 24533, 'fr', 'name', 'SociƩtƩ Canadienne de ThƩologie'),
(28356, 24534, 'en', 'name', 'Adventist University Cosendai'),
(28357, 24534, 'fr', 'name', 'UniversitƩ Adventiste Cosendai'),
(28358, 24535, 'es', 'name', 'Universidad Católica del TÔchira'),
(28359, 24536, 'es', 'name', 'Hospital Posadas'),
(28360, 24537, 'no_lang_code', 'name', 'TPF (Poland)'),
(28361, 24538, 'no_lang_code', 'name', 'Innovalia (Spain)'),
(28362, 24539, 'en', 'name', 'Monkton Hall Hospital'),
(28363, 24540, 'en', 'name', 'Woking Community Hospital'),
(28364, 24541, 'no_lang_code', 'name', 'Roland Hill (United Kingdom)'),
(28365, 24542, 'es', 'name', 'Universidad Privada del Estado de MƩxico'),
(28366, 24543, 'es', 'name', 'Instituto Universitario en Sistemas Administrativos de Monterrey'),
(28367, 24544, 'en', 'name', 'Harrison Middleton University'),
(28368, 24545, 'en', 'name', 'Jimo District Qingdao Hospital of Traditional Chinese Medicine'),
(28369, 24545, 'zh', 'name', 'é’å²›åø‚å³å¢ØåŒŗäø­åŒ»åŒ»é™¢'),
(28370, 24546, 'en', 'name', 'Ormskirk District General Hospital'),
(28371, 24547, 'no_lang_code', 'name', 'Willmott Dixon (United Kingdom)'),
(28372, 24548, 'en', 'name', 'NED University of Engineering and Technology'),
(28373, 24548, 'sd', 'name', 'Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś± Ū½ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ جي جامعہ Ų§ŁŠŁ† اي ŚŠŁŠā€Ž'),
(28374, 24548, 'ur', 'name', 'جامعہ Ų§ŪŒŁ† ای ڈی ŲØŲ±Ų§Ų¦Ū’ انجنئرنگ اور Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(28375, 24549, 'es', 'name', 'Universidad TƩcnica Privada Cosmos'),
(28376, 24550, 'no_lang_code', 'name', 'Tinsley Bridge Group'),
(28377, 24551, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ± Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(28378, 24551, 'en', 'name', 'Misr University for Science and Technology'),
(28379, 24552, 'en', 'name', 'Cirencester Hospital'),
(28380, 24553, 'en', 'name', 'Romanian Authority For Nuclear Activities'),
(28381, 24554, 'en', 'name', 'Midorigaoka Hospital'),
(28382, 24554, 'ja', 'name', 'ćæć©ć‚Šćƒ¶äø˜ē—…é™¢'),
(28383, 24555, 'en', 'name', 'Canadian Network for Innovation in Education'),
(28384, 24555, 'fr', 'name', 'RƩseau Canadien Pour l''innovation en Education'),
(28385, 24556, 'en', 'name', 'White Cross Court Rehabilitation Hospital'),
(28386, 24557, 'en', 'name', 'International University of America'),
(28387, 24557, 'es', 'name', 'Universidad Internacional de AmƩrica'),
(28388, 24558, 'no_lang_code', 'name', 'Metalografica (Spain)'),
(28389, 24559, 'en', 'name', 'MiningWatch Canada'),
(28390, 24560, 'en', 'name', 'Canadian Forum on Civil Justice'),
(28391, 24561, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„ŁŠŁ†'),
(28392, 24561, 'en', 'name', 'Al-Neelain University'),
(28393, 24562, 'en', 'name', 'National University of the Arts'),
(28394, 24562, 'es', 'name', 'Universidad Nacional de las Artes'),
(28395, 24563, 'en', 'name', 'Women In Need'),
(28396, 24564, 'es', 'name', 'Corporación Universitaria Unitec'),
(28397, 24565, 'en', 'name', 'Pan-Provincial Vaccine Enterprise'),
(28398, 24566, 'en', 'name', 'Highbury Hospital'),
(28399, 24567, 'en', 'name', 'Wright House Wellness Center'),
(28400, 24568, 'fr', 'name', 'Ɖcole Marocaine de Banque et de Commerce International'),
(28401, 24569, 'es', 'name', 'Universidad Privada Antonio Guillermo Urrelo'),
(28402, 24570, 'no_lang_code', 'name', 'Sintex (Czechia)'),
(28403, 24571, 'en', 'name', 'Westbourne Green Community Hospital'),
(28404, 24572, 'es', 'name', 'Universidad Católica Tecnológica de Barahona'),
(28405, 24573, 'en', 'name', 'Stockholm International Peace Research Institute'),
(28406, 24574, 'no_lang_code', 'name', 'Swamp Optics (United States)'),
(28407, 24575, 'en', 'name', 'Central American Adventist University'),
(28408, 24575, 'es', 'name', 'Universidad Adventista de Centro America'),
(28409, 24576, 'no_lang_code', 'name', 'Thunderhead Engineering (United States)'),
(28410, 24577, 'no_lang_code', 'name', 'PageFlip (United States)'),
(28411, 24578, 'no_lang_code', 'name', 'Pipistrel (Slovenia)'),
(28412, 24579, 'en', 'name', 'South Molton Medical Centre'),
(28413, 24580, 'ar', 'name', 'معهد Ų§Ł„ŲŖŲØŁŠŁ† للدراسات Ų§Ł„Ł…Ų¹ŲÆŁ†ŁŠŲ©'),
(28414, 24580, 'en', 'name', 'Tabbin Institute for Metallurgical Studies'),
(28415, 24581, 'de', 'name', 'Ɩsterreichische Gesellschaft für Umwelt und Technik'),
(28416, 24581, 'en', 'name', 'Austrian Society for Environment and Technology'),
(28417, 24582, 'en', 'name', 'Mountain Comprehensive Care Centre'),
(28418, 24583, 'no_lang_code', 'name', 'Phytolutions (Germany)'),
(28419, 24584, 'no_lang_code', 'name', 'Zansors (United States)'),
(28420, 24585, 'pt', 'name', 'Centro UniversitƔrio de Rio Preto'),
(28421, 24586, 'en', 'name', 'Tulsa Community College'),
(28422, 24587, 'pt', 'name', 'Centro UniversitÔrio Católico do Sudoeste do ParanÔ'),
(28423, 24588, 'en', 'name', 'Brentwood Community Hospital'),
(28424, 24589, 'no_lang_code', 'name', 'Skymark (United Kingdom)'),
(28425, 24590, 'no_lang_code', 'name', 'Simbiente (Portugal)'),
(28426, 24591, 'en', 'name', 'University Town of Shenzhen'),
(28427, 24591, 'zh', 'name', 'ę·±åœ³å¤§å­¦åŸŽ'),
(28428, 24592, 'no_lang_code', 'name', 'Noray Bioinformatics (Spain)'),
(28429, 24593, 'no_lang_code', 'name', 'W/E Consultants'),
(28430, 24594, 'en', 'name', 'Llandrindod Wells Hospital'),
(28431, 24595, 'ar', 'name', 'Ų§Ł„Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© للهندسة ŁˆŲ¹Ł„ŁˆŁ… الاعلام'),
(28432, 24595, 'en', 'name', 'International Academy for Engineering and Media Science'),
(28433, 24596, 'en', 'name', 'Paulton Hospital'),
(28434, 24597, 'en', 'name', 'Southend University Hospital NHS Foundation Trust'),
(28435, 24598, 'no_lang_code', 'name', 'Golder Associates (United Kingdom)'),
(28436, 24599, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ų¹Ł„ŁˆŁ… الآثار ŁˆŲ§Ł„ŲŖŲ±Ų§Ų«'),
(28437, 24599, 'fr', 'name', 'Institut National des Sciences de l''ArchƩologie et du Patrimoine'),
(28438, 24600, 'en', 'name', 'Volunteer Behavioral Health Care System'),
(28439, 24601, 'en', 'name', 'Canadian Political Science Association'),
(28440, 24601, 'fr', 'name', 'Association canadienne de science politique'),
(28441, 24602, 'en', 'name', 'West London Mental Health NHS Trust'),
(28442, 24603, 'en', 'name', 'University of Sancti Spƭritus JosƩ Martƭ PƩrez'),
(28443, 24603, 'es', 'name', 'Universidad de Sancti Spƭritus JosƩ Martƭ PƩrez'),
(28444, 24604, 'en', 'name', 'Students Commission'),
(28445, 24604, 'fr', 'name', 'La commission des Ʃtudiants'),
(28446, 24605, 'no_lang_code', 'name', 'Onteca (United Kingdom)'),
(28447, 24606, 'es', 'name', 'Universidad Realƭstica de MƩxico'),
(28448, 24607, 'en', 'name', 'Brooklands Hospital'),
(28449, 24608, 'en', 'name', 'Universities Art Association of Canada'),
(28450, 24608, 'fr', 'name', 'L''Association d''art des universitƩs du Canada'),
(28451, 24609, 'en', 'name', 'Lewes Victoria Hospital'),
(28452, 24610, 'no_lang_code', 'name', 'Teknimed (France)'),
(28453, 24611, 'en', 'name', 'North-Caucasus Federal University'),
(28454, 24611, 'ru', 'name', 'Деверо-Кавказский Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28455, 24612, 'no_lang_code', 'name', 'Plant (United States)'),
(28456, 24613, 'en', 'name', 'Mid Yorkshire Hospitals NHS Trust'),
(28457, 24614, 'no_lang_code', 'name', 'Systemite (Sweden)'),
(28458, 24615, 'en', 'name', 'Akwa Ibom State University'),
(28459, 24616, 'ar', 'name', 'المعهد Ų§Ł„Ł‚ŁˆŁ…Ł‰ للاتصالات'),
(28460, 24616, 'en', 'name', 'National Telecommunications Institute'),
(28461, 24617, 'fr', 'name', 'Institut SupƩrieur de Gestion'),
(28462, 24618, 'en', 'name', 'Pennine Acute Hospitals NHS Trust'),
(28463, 24619, 'en', 'name', 'Bolivarian University of Chile'),
(28464, 24619, 'es', 'name', 'Universidad Bolivariana de Chile'),
(28465, 24620, 'en', 'name', 'Association of Lunar and Planetary Observers'),
(28466, 24621, 'en', 'name', 'National Circus School'),
(28467, 24621, 'fr', 'name', 'Ɖcole nationale de cirque'),
(28468, 24622, 'no_lang_code', 'name', 'ProteinLogic (United Kingdom)'),
(28469, 24623, 'en', 'name', 'Catholic University of Trujillo'),
(28470, 24623, 'es', 'name', 'Universidad Católica de Trujillo'),
(28471, 24624, 'no_lang_code', 'name', 'eLEAF (Netherlands)'),
(28472, 24625, 'no_lang_code', 'name', 'Ubisense'),
(28473, 24626, 'en', 'name', 'Polytechnic University of the Valley of Mexico'),
(28474, 24626, 'es', 'name', 'Universidad PolitƩcnica del Valle de MƩxico'),
(28475, 24627, 'no_lang_code', 'name', 'Smart Metering Systems (United Kingdom)'),
(28476, 24628, 'no_lang_code', 'name', 'SEAS-NVE (Denmark)'),
(28477, 24629, 'no_lang_code', 'name', 'National Computing Centre (United Kingdom)'),
(28478, 24630, 'en', 'name', 'Nebraska Department of Agriculture'),
(28479, 24631, 'es', 'name', 'Universidad Autónoma del Caribe'),
(28480, 24632, 'no_lang_code', 'name', 'Predictek (United States)'),
(28481, 24633, 'en', 'name', 'Umaru Musa Yar''adua University'),
(28482, 24634, 'no_lang_code', 'name', 'SpectraGenetics (United States)'),
(28483, 24635, 'cs', 'name', 'Spolek pro chemickou a hutní výrobu'),
(28484, 24635, 'no_lang_code', 'name', 'Spolchemie (Czechia)'),
(28485, 24636, 'no_lang_code', 'name', 'Tesla Engineering (United Kingdom)'),
(28486, 24637, 'no_lang_code', 'name', 'Sciperio (United States)'),
(28487, 24638, 'fi', 'name', 'Hankasalmen observatorio, Hankasalmi Observatory'),
(28488, 24639, 'de', 'name', 'Vatikanische Sternwarte'),
(28489, 24639, 'en', 'name', 'Vatican Observatory'),
(28490, 24639, 'fr', 'name', 'Observatoire du vatican'),
(28491, 24639, 'it', 'name', 'Specola Vaticana'),
(28492, 24640, 'no_lang_code', 'name', 'Nutech (Germany)'),
(28493, 24641, 'de', 'name', 'Platte Consult'),
(28494, 24642, 'no_lang_code', 'name', 'Milagen (United States)'),
(28495, 24643, 'no_lang_code', 'name', 'TC Scientific (Canada)'),
(28496, 24644, 'no_lang_code', 'name', 'UCO Raymond Denim (Belgium)'),
(28497, 24645, 'es', 'name', 'Universidad Nacional de la AmazonĆ­a Peruana'),
(28498, 24646, 'no_lang_code', 'name', 'Vipem Hackert (Germany)'),
(28499, 24647, 'no_lang_code', 'name', 'WaterstofNet (Belgium)'),
(28500, 24648, 'es', 'name', 'Universidad del Valle de MƩxico'),
(28501, 24649, 'en', 'name', 'Hokkai Gakuen University'),
(28502, 24649, 'ja', 'name', 'åŒ—ęµ·å­¦åœ’å¤§å­¦'),
(28503, 24650, 'en', 'name', 'Willesden Community Rehabilitation Hospital'),
(28504, 24651, 'en', 'name', 'Lincolnshire Community Health Services NHS Trust'),
(28505, 24652, 'en', 'name', 'YangPu Geriatric Hospital'),
(28506, 24652, 'zh', 'name', 'äøŠęµ·åø‚ęØęµ¦č€å¹“åŒ»é™¢'),
(28507, 24653, 'en', 'name', 'Bronberg Observatory'),
(28508, 24654, 'es', 'name', 'Centro de Estudios Universitarios Arkos'),
(28509, 24655, 'no_lang_code', 'name', 'Sick (Germany)'),
(28510, 24656, 'es', 'name', 'Universidad del Centro del BajĆ­o'),
(28511, 24657, 'en', 'name', 'Sage Gateshead'),
(28512, 24658, 'en', 'name', 'Union of Dairy Beef Food Industrialists and Producers of Turkey'),
(28513, 24659, 'en', 'name', 'VADASKERT FOUNDATION FOR CHILDREN''S MENTAL HEALTH'),
(28514, 24659, 'hu', 'name', 'Vadaskert AlapƭtvƔny a Gyermekek Lelki EgƩszsƩgƩƩrt'),
(28515, 24660, 'es', 'name', 'Universidad Marista de MƩrida'),
(28516, 24661, 'be', 'name', 'Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(28517, 24661, 'en', 'name', 'Republican Research and Practical Center for Epidemiology and Microbiology'),
(28518, 24662, 'no_lang_code', 'name', 'Nice Systems (Israel)'),
(28519, 24663, 'en', 'name', 'Milpark Education'),
(28520, 24664, 'en', 'name', 'Orange County Board of Commissioners'),
(28521, 24665, 'no_lang_code', 'name', 'Hemanext (United States)'),
(28522, 24666, 'en', 'name', 'Finlandia University'),
(28523, 24666, 'fr', 'name', 'UniversitƩ finlandia'),
(28524, 24667, 'no_lang_code', 'name', 'Organogenesis (United States)'),
(28525, 24668, 'en', 'name', 'Naropa University'),
(28526, 24669, 'en', 'name', 'Peterlee Community Hospital'),
(28527, 24670, 'es', 'name', 'Universidad Latina de AmƩrica'),
(28528, 24671, 'no_lang_code', 'name', 'Q Bot (United Kingdom)'),
(28529, 24672, 'en', 'name', 'Springfield University Hospital'),
(28530, 24673, 'pt', 'name', 'Hospital de São Sebastião'),
(28531, 24674, 'no_lang_code', 'name', 'Innovation Pharmaceuticals (United States)'),
(28532, 24675, 'no_lang_code', 'name', 'Masermic (Spain)'),
(28533, 24676, 'no_lang_code', 'name', 'Progress Printing (United States)'),
(28534, 24677, 'no_lang_code', 'name', 'WS (Germany)'),
(28535, 24678, 'es', 'name', 'Universidad de la Comunicación'),
(28536, 24679, 'no_lang_code', 'name', 'Innovation Enterprise Impuls (Poland)'),
(28537, 24680, 'no_lang_code', 'name', 'Merinova (Finland)'),
(28538, 24681, 'no_lang_code', 'name', 'NanoIntegris (United States)'),
(28539, 24682, 'es', 'name', 'Institución Universitaria de Envigado'),
(28540, 24683, 'no_lang_code', 'name', 'Polinter (Spain)'),
(28541, 24684, 'en', 'name', 'Chelmsford and Essex Hospital'),
(28542, 24685, 'no_lang_code', 'name', 'Pedro Roquet (Spain)'),
(28543, 24686, 'fr', 'name', 'Centre Hospitalier RenƩ-Dubos'),
(28544, 24687, 'en', 'name', 'Cross Lane Hospital'),
(28545, 24688, 'en', 'name', 'Catholic University of Culiacan'),
(28546, 24688, 'es', 'name', 'Universidad Católica de CuliacÔn'),
(28547, 24689, 'no_lang_code', 'name', 'Optocap (United Kingdom)'),
(28548, 24690, 'no_lang_code', 'name', 'Technoport (Luxembourg)'),
(28549, 24691, 'no_lang_code', 'name', 'PBS Turbo (Czechia)'),
(28550, 24692, 'es', 'name', 'Universidad Abierta Para Adultos'),
(28551, 24693, 'no_lang_code', 'name', 'Omnisense (United Kingdom)'),
(28552, 24694, 'en', 'name', 'Children''s Hospital 1'),
(28553, 24694, 'vi', 'name', 'Bệnh viện Nhi đồng 1'),
(28554, 24695, 'no_lang_code', 'name', 'Surflay Nanotec (Germany)'),
(28555, 24696, 'en', 'name', 'Sonoda Women''s University'),
(28556, 24696, 'ja', 'name', 'åœ’ē”°å­¦åœ’å„³å­å¤§å­¦'),
(28557, 24697, 'en', 'name', 'Sierra College'),
(28558, 24698, 'en', 'name', 'Professional Engineers Ontario'),
(28559, 24699, 'en', 'name', 'University of the Cumberlands'),
(28560, 24700, 'en', 'name', 'Nasson College'),
(28561, 24701, 'es', 'name', 'Universidad Cristiana de PanamĆ”'),
(28562, 24702, 'no_lang_code', 'name', 'Pharos International (Belgium)'),
(28563, 24703, 'en', 'name', 'Samuel Johnson Community Hospital'),
(28564, 24704, 'no_lang_code', 'name', 'Vigo System (Poland)'),
(28565, 24705, 'de', 'name', 'Staatliches Museum für Naturkunde Stuttgart'),
(28566, 24705, 'en', 'name', 'State Museum of Natural History Stuttgart'),
(28567, 24706, 'no_lang_code', 'name', 'NBE Tech (United States)'),
(28568, 24707, 'no_lang_code', 'name', 'Where''s Everybody (Malta)'),
(28569, 24708, 'no_lang_code', 'name', 'R&D Systems (United States)'),
(28570, 24709, 'no_lang_code', 'name', 'Air Products (Spain)'),
(28571, 24710, 'no_lang_code', 'name', 'Yprema (France)'),
(28572, 24711, 'es', 'name', 'Universidad PĆŗblica de El Alto'),
(28573, 24712, 'es', 'name', 'Universidad APEC, Universidad Acción Pro-Educación y Cultura'),
(28574, 24713, 'en', 'name', 'Jefferson Hospital for Neuroscience'),
(28575, 24714, 'pt', 'name', 'Centro UniversitƔrio Celso Lisboa'),
(28576, 24715, 'es', 'name', 'Universidad Mundial'),
(28577, 24716, 'en', 'name', 'Three Rivers Community College'),
(28578, 24717, 'en', 'name', 'University of Cienfuegos'),
(28579, 24717, 'es', 'name', 'Universidad de Cienfuegos'),
(28580, 24718, 'no_lang_code', 'name', 'Duro Felguera (Spain)'),
(28581, 24719, 'no_lang_code', 'name', 'Microsens (Switzerland)'),
(28582, 24720, 'no_lang_code', 'name', 'Gnubila Technology (France)'),
(28583, 24721, 'en', 'name', 'Wichita Community Foundation'),
(28584, 24722, 'no_lang_code', 'name', 'Pulkovo Observatory'),
(28585, 24722, 'ru', 'name', 'ŠŸŃƒŠ»ŠŗŠ¾Š²ŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(28586, 24723, 'en', 'name', 'St Austell Community Hospital'),
(28587, 24724, 'ar', 'name', 'Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŁŠŲ±Ų§Ł†'),
(28588, 24724, 'en', 'name', 'Egyptian Aviation Academy'),
(28589, 24725, 'no_lang_code', 'name', 'Virtual Brands (United States)'),
(28590, 24726, 'no_lang_code', 'name', 'Almina (Portugal)'),
(28591, 24727, 'en', 'name', 'Spire Clare Park Hospital'),
(28592, 24728, 'no_lang_code', 'name', 'Sifam Tinsley (United Kingdom)'),
(28593, 24729, 'en', 'name', 'Colorado Christian University'),
(28594, 24730, 'no_lang_code', 'name', 'NanoWave (United States)'),
(28595, 24731, 'en', 'name', 'Dezhou University'),
(28596, 24731, 'zh', 'name', '德州学院'),
(28597, 24732, 'no_lang_code', 'name', 'Sunamp (United Kingdom)'),
(28598, 24733, 'no_lang_code', 'name', 'Star-Oddi (Iceland)'),
(28599, 24734, 'de', 'name', 'Agaplesion Diakonieklinikum Rotenburg'),
(28600, 24735, 'no_lang_code', 'name', 'Refind (Sweden)'),
(28601, 24736, 'es', 'name', 'Universidad Amazonica de Pando'),
(28602, 24737, 'en', 'name', 'Princess of Wales Community Hospital'),
(28603, 24738, 'en', 'name', 'Romsey Hospital'),
(28604, 24739, 'es', 'name', 'Universidad del Arte Ganexa'),
(28605, 24740, 'no_lang_code', 'name', 'TechnoPhage (Portugal)'),
(28606, 24741, 'en', 'name', 'Ripley Hospital'),
(28607, 24742, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ„Ų§Ł„ŁŠ ŲØŁˆŁ†Ų¹Ų§Ł…Ų© Ų®Ł…ŁŠŲ³ Ł…Ł„ŁŠŲ§Ł†Ų©'),
(28608, 24742, 'fr', 'name', 'UniversitƩ Djilali Bounaama Khemis Miliana'),
(28609, 24743, 'en', 'name', 'Nangarhar University'),
(28610, 24743, 'fa', 'name', 'دانؓگاه ننگرهار'),
(28611, 24744, 'en', 'name', 'West Valley High School'),
(28612, 24745, 'no_lang_code', 'name', 'SOLID (Austria)'),
(28613, 24746, 'fr', 'name', 'Institut National d''AmƩnagement et d''Urbanisme'),
(28614, 24747, 'en', 'name', 'Huangshi Central Hospital'),
(28615, 24747, 'zh', 'name', 'é»„ēŸ³åø‚äø­åæƒåŒ»é™¢'),
(28616, 24748, 'en', 'name', 'Swedish Civil Aviation Administration'),
(28617, 24748, 'no_lang_code', 'name', 'Luftfartsverket (Sweden)'),
(28618, 24749, 'pt', 'name', 'Centro UniversitƔrio da Grande Dourados'),
(28619, 24750, 'fr', 'name', 'MinistĆØre de l''Enseignement Superieur et de la Recherche'),
(28620, 24751, 'no_lang_code', 'name', 'Cegos (Italy)'),
(28621, 24752, 'en', 'name', 'Kwara State University'),
(28622, 24753, 'no_lang_code', 'name', 'Mirari Biosciences (United States)'),
(28623, 24754, 'no_lang_code', 'name', 'UK Power Networks'),
(28624, 24755, 'no_lang_code', 'name', 'Sorain Cecchini Tecno (Italy)'),
(28625, 24756, 'no_lang_code', 'name', 'Microtest (Spain)'),
(28626, 24757, 'en', 'name', 'Richmond Area Multi-Services'),
(28627, 24758, 'en', 'name', 'St Ann’s Hospital'),
(28628, 24759, 'en', 'name', 'Harwich And District Hospital'),
(28629, 24760, 'es', 'name', 'Universidad SeƱor de SipƔn'),
(28630, 24761, 'en', 'name', 'Canadian Research Institute for the Advancement of Women'),
(28631, 24761, 'fr', 'name', 'Institut Canadien de Recherches sur les Femmes'),
(28632, 24762, 'en', 'name', 'Tennessee Voices for Children'),
(28633, 24763, 'en', 'name', 'National Advanced School of Public Works'),
(28634, 24763, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Travaux Publics'),
(28635, 24764, 'es', 'name', 'Corporación Universitaria Centro Superior'),
(28636, 24765, 'es', 'name', 'Universidad de Matehuala'),
(28637, 24766, 'fr', 'name', 'Ɖcole Royale Navale'),
(28638, 24767, 'en', 'name', 'Radioactive Waste Repository Authority'),
(28639, 24768, 'en', 'name', 'Privy Council Office'),
(28640, 24768, 'fr', 'name', 'Bureau du Conseil privƩ'),
(28641, 24769, 'en', 'name', 'Mediterranean Network of Basin Organisations'),
(28642, 24770, 'en', 'name', 'Tibet University'),
(28643, 24770, 'zh', 'name', 'č„æč—å¤§å­¦'),
(28644, 24771, 'no_lang_code', 'name', 'Profile Associates (United States)'),
(28645, 24772, 'en', 'name', 'The Royal Wolverhampton NHS Trust'),
(28646, 24773, 'en', 'name', 'University Foundation Los Libertadores'),
(28647, 24773, 'es', 'name', 'Fundación Universitaria Los Libertadores'),
(28648, 24774, 'fr', 'name', 'Ɖcole Polyvalente SupĆ©rieure d''Informatique et d''Ɖlectronique'),
(28649, 24775, 'es', 'name', 'Universidad Estatal del Sur de Manabi'),
(28650, 24776, 'no_lang_code', 'name', 'Meggitt (France)'),
(28651, 24777, 'no_lang_code', 'name', 'Socialdata (Germany)'),
(28652, 24778, 'no_lang_code', 'name', 'Posit Science (United States)'),
(28653, 24779, 'en', 'name', 'Association of the Austrian Cement Industry'),
(28654, 24779, 'no_lang_code', 'name', 'Vereinigung der Ɩsterreichischen Zementindustrie'),
(28655, 24780, 'no_lang_code', 'name', 'NanoPET Pharma (Germany)'),
(28656, 24781, 'en', 'name', 'Udaipur Solar Observatory'),
(28657, 24782, 'en', 'name', 'Western Delta University'),
(28658, 24783, 'en', 'name', 'Hythe Hospital'),
(28659, 24784, 'no_lang_code', 'name', 'Nimbus (Italy)'),
(28660, 24785, 'sv', 'name', 'Visby lasarett'),
(28661, 24786, 'ja', 'name', 'åœ‹å­øé™¢å¤§å­ø'),
(28662, 24786, 'no_lang_code', 'name', 'Kokugakuin University'),
(28663, 24787, 'no_lang_code', 'name', 'Quviq (Sweden)'),
(28664, 24788, 'no_lang_code', 'name', 'Prototal (Sweden)'),
(28665, 24789, 'sv', 'name', 'NordGen'),
(28666, 24790, 'no_lang_code', 'name', 'PDS Biotechnology (United States)'),
(28667, 24791, 'no_lang_code', 'name', 'Mondeca (France)'),
(28668, 24792, 'no_lang_code', 'name', 'Progis Software (Austria)'),
(28669, 24793, 'es', 'name', 'Fundación Universitaria de San Gil'),
(28670, 24794, 'en', 'name', 'Wilkes-Barre General Hospital'),
(28671, 24795, 'es', 'name', 'Universidad Interamericana del Norte'),
(28672, 24796, 'en', 'name', 'Orchards Day Hospital'),
(28673, 24797, 'no_lang_code', 'name', 'Richmond Chemical (United States)'),
(28674, 24798, 'no_lang_code', 'name', 'Portic Barcelona'),
(28675, 24799, 'no_lang_code', 'name', 'Outotec (Finland)'),
(28676, 24800, 'no_lang_code', 'name', 'Silicon Audio (United States)'),
(28677, 24801, 'no_lang_code', 'name', 'Perceptive Engineering (United Kingdom)'),
(28678, 24802, 'en', 'name', 'Manchester Digital Laboratory'),
(28679, 24803, 'no_lang_code', 'name', 'Ogenx Therapeutics (United States)'),
(28680, 24804, 'en', 'name', 'Takushoku University'),
(28681, 24804, 'ja', 'name', 'ę‹“ę®– 大学'),
(28682, 24805, 'en', 'name', 'Southwestern Christian University'),
(28683, 24806, 'no_lang_code', 'name', 'MicroSurfaces (United States)'),
(28684, 24807, 'en', 'name', 'United States International University Africa'),
(28685, 24808, 'no_lang_code', 'name', 'Metropolitana Milanese (Italy)'),
(28686, 24809, 'en', 'name', 'Ohio Development Services Agency'),
(28687, 24810, 'en', 'name', 'Kyoto University Research Reactor Institute'),
(28688, 24810, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦č¤‡åˆåŽŸå­åŠ›ē§‘å­¦ē ”ē©¶ę‰€'),
(28689, 24811, 'no_lang_code', 'name', 'Poste Italiane (Italy)'),
(28690, 24812, 'no_lang_code', 'name', 'Ametek (United Kingdom)'),
(28691, 24813, 'es', 'name', 'Instituto Profesional De Ciencias Y Artes'),
(28692, 24814, 'en', 'name', 'Test Positive Aware Network'),
(28693, 24815, 'en', 'name', 'Ursa Astronomical Association'),
(28694, 24815, 'fi', 'name', 'TƤhtitieteellinen yhdistys Ursa ry'),
(28695, 24816, 'no_lang_code', 'name', 'XMOS (United Kingdom)'),
(28696, 24817, 'cy', 'name', 'Ysbyty Cymuned yr Wyddgrug'),
(28697, 24817, 'en', 'name', 'Mold Community Hospital'),
(28698, 24818, 'no_lang_code', 'name', 'Oikon (Croatia)'),
(28699, 24819, 'es', 'name', 'Universidad Autónoma de Piedras Negras'),
(28700, 24820, 'no_lang_code', 'name', 'Offshore Installation Services (United Kingdom)'),
(28701, 24821, 'no_lang_code', 'name', 'Nexans (Germany)'),
(28702, 24822, 'en', 'name', 'Society for Mathematical Psychology'),
(28703, 24823, 'es', 'name', 'Universidad del Valle de Puebla'),
(28704, 24824, 'no_lang_code', 'name', 'Newbiotechnic (Spain)'),
(28705, 24825, 'es', 'name', 'Universidad de la Integración de las Américas'),
(28706, 24826, 'en', 'name', 'University of Hawaii–West Oahu'),
(28707, 24827, 'es', 'name', 'Universidad Continental'),
(28708, 24828, 'en', 'name', 'African Institute of Science and Technology'),
(28709, 24829, 'en', 'name', 'University Psychiatric Hospital'),
(28710, 24829, 'sl', 'name', 'Univerzitetna psihiatrična klinika Ljubljana'),
(28711, 24830, 'no_lang_code', 'name', 'Valacta (Canada)'),
(28712, 24831, 'en', 'name', 'Department of Health'),
(28713, 24832, 'no_lang_code', 'name', 'OmniActive Health Technologies (Canada)'),
(28714, 24833, 'no_lang_code', 'name', 'Tapecon (United States)'),
(28715, 24834, 'no_lang_code', 'name', 'Polatis (United Kingdom)'),
(28716, 24835, 'es', 'name', 'Centro Universitario Columbia'),
(28717, 24836, 'en', 'name', 'Free University of Tbilisi'),
(28718, 24836, 'ka', 'name', 'įƒ—įƒįƒ•įƒ˜įƒ”įƒ£įƒ¤įƒįƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(28719, 24836, 'ru', 'name', 'ДвобоГный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Тбилиси'),
(28720, 24837, 'no_lang_code', 'name', 'Ripple (United States)'),
(28721, 24838, 'es', 'name', 'Universidad Pedagógica Nacional Francisco MorazÔn'),
(28722, 24839, 'en', 'name', 'Pocatello High School'),
(28723, 24840, 'no_lang_code', 'name', 'Visual Health Information'),
(28724, 24841, 'en', 'name', 'Saskatchewan Conservation Learning Centre'),
(28725, 24842, 'no_lang_code', 'name', 'Ultrasion (Spain)'),
(28726, 24843, 'en', 'name', 'Congleton War Memorial Hospital'),
(28727, 24844, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© النهضة'),
(28728, 24844, 'en', 'name', 'Nahda University'),
(28729, 24845, 'en', 'name', 'American Isthmus University'),
(28730, 24845, 'es', 'name', 'Universidad Istmo Americana'),
(28731, 24846, 'en', 'name', 'Novena University'),
(28732, 24847, 'en', 'name', 'Women in Science and Engineering Newfoundland and Labrador'),
(28733, 24848, 'no_lang_code', 'name', 'Plastic Flow (United States)'),
(28734, 24849, 'no_lang_code', 'name', 'Reach Technologies (Canada)'),
(28735, 24850, 'fr', 'name', 'Ɖcole Nationale d''Administration et de Magistrature'),
(28736, 24851, 'en', 'name', 'Research Institute for Genetic and Human Therapy'),
(28737, 24851, 'it', 'name', 'Istituto di Ricerca per la Terapia Genetica Umana'),
(28738, 24852, 'no_lang_code', 'name', 'mLED (United Kingdom)'),
(28739, 24853, 'no_lang_code', 'name', 'Tingtun (Norway)'),
(28740, 24854, 'en', 'name', 'Department of Behavioral Health and Intellectual Disability Services'),
(28741, 24855, 'en', 'name', 'Langley Green Hospital'),
(28742, 24856, 'no_lang_code', 'name', 'THAP Group (United States)'),
(28743, 24857, 'en', 'name', 'Orders of St John Care Trust'),
(28744, 24858, 'en', 'name', 'World Agency of Planetary Monitoring & Earthquake Risk Reduction'),
(28745, 24859, 'en', 'name', 'Morinomiya University of Medical Sciences'),
(28746, 24859, 'ja', 'name', 'ę£®ćƒŽå®®åŒ»ē™‚å¤§å­¦'),
(28747, 24860, 'no_lang_code', 'name', 'CTT Group (Canada)'),
(28748, 24861, 'no_lang_code', 'name', 'Zigpos (Germany)'),
(28749, 24862, 'no_lang_code', 'name', 'Schneeberger (Switzerland)'),
(28750, 24863, 'en', 'name', 'Malton Community Hospital'),
(28751, 24864, 'de', 'name', 'Steinkohlen-ElektrizitƤt'),
(28752, 24864, 'no_lang_code', 'name', 'STEAG (Germany)'),
(28753, 24865, 'es', 'name', 'Universidad Autónoma de La Laguna'),
(28754, 24866, 'no_lang_code', 'name', 'Reischauer (Germany)'),
(28755, 24867, 'en', 'name', 'National Institute of Building Sciences'),
(28756, 24868, 'en', 'name', 'Manor Hospital'),
(28757, 24869, 'no_lang_code', 'name', 'Scan Messtechnik (Austria)'),
(28758, 24870, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„ŁŁ†ŁˆŁ† Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(28759, 24870, 'en', 'name', 'Higher Institute of Applied Arts'),
(28760, 24871, 'es', 'name', 'Institución Tecnológica Cedesistemas'),
(28761, 24872, 'no_lang_code', 'name', 'Verdezyne (United States)'),
(28762, 24873, 'en', 'name', 'Six County Association of Governments'),
(28763, 24874, 'en', 'name', 'San Diego City College'),
(28764, 24875, 'no_lang_code', 'name', 'ZS-Handling (Germany)'),
(28765, 24876, 'en', 'name', 'American University of Paris'),
(28766, 24877, 'en', 'name', 'Wells Community Hospital'),
(28767, 24878, 'no_lang_code', 'name', 'Voxiva (United States)'),
(28768, 24879, 'no_lang_code', 'name', 'PhotoBiotics (United Kingdom)'),
(28769, 24880, 'es', 'name', 'Centro Universitario Interamericano'),
(28770, 24881, 'en', 'name', 'Social Work Institute in Cairo'),
(28771, 24882, 'en', 'name', 'New Charter University'),
(28772, 24883, 'en', 'name', 'GB Hunter Memorial Hospital'),
(28773, 24884, 'en', 'name', 'Troy Community Coalition'),
(28774, 24885, 'en', 'name', 'Kure Medical Center'),
(28775, 24885, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å‘‰åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(28776, 24886, 'en', 'name', 'York Technical College'),
(28777, 24887, 'en', 'name', 'Barnes Hospital'),
(28778, 24888, 'en', 'name', 'Clacton Hospital'),
(28779, 24889, 'en', 'name', 'Metropolitan Interdenominational Church'),
(28780, 24890, 'en', 'name', 'Komazawa University'),
(28781, 24890, 'ja', 'name', '駒澤大学'),
(28782, 24891, 'no_lang_code', 'name', 'Systèmes d''Information à Référence Spatiale (France)'),
(28783, 24892, 'fr', 'name', 'Fédération Hospitalière de France'),
(28784, 24893, 'es', 'name', 'Universidad Autónoma Latinoamericana'),
(28785, 24894, 'no_lang_code', 'name', 'UGN-Umwelttechnik (Germany)'),
(28786, 24895, 'es', 'name', 'Universidad Tecnológica Intercontinental'),
(28787, 24896, 'pt', 'name', 'Instituto Superior Politecnico de Tete'),
(28788, 24897, 'en', 'name', 'Africa Nazarene University'),
(28789, 24898, 'en', 'name', 'Oklahoma Wesleyan University'),
(28790, 24899, 'en', 'name', 'Native Women''s Association of Canada'),
(28791, 24900, 'en', 'name', 'Dongyang University'),
(28792, 24900, 'ko', 'name', 'ė™ģ–‘ėŒ€ķ•™źµ'),
(28793, 24901, 'es', 'name', 'Universidad Nacional de Moquegua'),
(28794, 24902, 'no_lang_code', 'name', 'Endeavour (United Kingdom)'),
(28795, 24903, 'no_lang_code', 'name', 'Prolon Control Systems (Denmark)'),
(28796, 24904, 'en', 'name', 'Paul Watkiss Associates'),
(28797, 24905, 'no_lang_code', 'name', 'Tekkva Consult (Denmark)'),
(28798, 24906, 'no_lang_code', 'name', 'Nutra Canada (Canada)'),
(28799, 24907, 'no_lang_code', 'name', 'Yuhuangding Hospital'),
(28800, 24907, 'zh', 'name', 'ēƒŸå°ęÆ“ē’œé”¶åŒ»é™¢'),
(28801, 24908, 'en', 'name', 'Zucker Hillside Hospital'),
(28802, 24909, 'en', 'name', 'Auckland Park Hospital'),
(28803, 24910, 'en', 'name', 'Fieldhead Hospital'),
(28804, 24911, 'es', 'name', 'Universidad Alva Edison'),
(28805, 24912, 'no_lang_code', 'name', 'Dana (Germany)'),
(28806, 24913, 'no_lang_code', 'name', 'Viewrope'),
(28807, 24914, 'en', 'name', 'Latin American University of Science and Technology'),
(28808, 24914, 'es', 'name', 'Universidad Latinoamericana de Ciencia y TecnologĆ­a'),
(28809, 24915, 'en', 'name', 'Alcoholism Center for Women'),
(28810, 24916, 'no_lang_code', 'name', 'Sistemas Y Redes Telematicas (Spain)'),
(28811, 24917, 'en', 'name', 'Us Helping Us People Into Living'),
(28812, 24918, 'no_lang_code', 'name', 'Steven Winter Associates (United States)'),
(28813, 24919, 'en', 'name', 'Doddington Hospital'),
(28814, 24920, 'en', 'name', 'Aichi Developmental Disability Center'),
(28815, 24920, 'ja', 'name', 'ę„›ēŸ„ēœŒåŒ»ē™‚ē™‚č‚²ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(28816, 24921, 'en', 'name', 'Milwaukee Public Schools'),
(28817, 24922, 'no_lang_code', 'name', 'Seekda (Austria)'),
(28818, 24923, 'no_lang_code', 'name', 'Oelheld (Germany)'),
(28819, 24924, 'en', 'name', 'National Blood Clot Alliance'),
(28820, 24925, 'no_lang_code', 'name', 'TQ Environmental (United Kingdom)'),
(28821, 24926, 'es', 'name', 'Universidad de Negocios ISEC'),
(28822, 24927, 'no_lang_code', 'name', 'Zylon (United States)'),
(28823, 24928, 'en', 'name', 'Leeds Dental Hospital'),
(28824, 24929, 'no_lang_code', 'name', 'Resonant Sensors (United States)'),
(28825, 24930, 'it', 'name', 'Osservatorio Astronomico di Gnosca'),
(28826, 24930, 'no_lang_code', 'name', '143-Gnosca'),
(28827, 24931, 'en', 'name', 'Riga Graduate School of Law'),
(28828, 24931, 'lt', 'name', 'Rygos aukÅ”toji teisės mokykla'),
(28829, 24931, 'ru', 'name', 'Š ŠøŠ¶ŃŠŗŠ°Ń Š²Ń‹ŃŃˆŠ°Ń школа права'),
(28830, 24932, 'no_lang_code', 'name', 'NextInput (United States)'),
(28831, 24933, 'no_lang_code', 'name', 'Specto Natura'),
(28832, 24934, 'no_lang_code', 'name', 'S2 Corporation (United States)'),
(28833, 24935, 'no_lang_code', 'name', 'Rockwood Lithium (Germany)'),
(28834, 24936, 'en', 'name', 'National University of Formosa'),
(28835, 24936, 'es', 'name', 'Universidad Nacional de Formosa'),
(28836, 24937, 'no_lang_code', 'name', 'Pultrall (Canada)'),
(28837, 24938, 'en', 'name', 'University College of Technology'),
(28838, 24939, 'no_lang_code', 'name', 'Mentor InterActive (United States)'),
(28839, 24940, 'no_lang_code', 'name', 'Western Systems Research (United States)'),
(28840, 24941, 'en', 'name', 'Chung Shan Hospital'),
(28841, 24941, 'zh', 'name', '中山醫院'),
(28842, 24942, 'no_lang_code', 'name', 'Nortek (Canada)'),
(28843, 24943, 'en', 'name', 'University of Navojoa'),
(28844, 24943, 'es', 'name', 'Universidad de Navojoa'),
(28845, 24944, 'no_lang_code', 'name', 'Sherwood Scientific (United Kingdom)'),
(28846, 24945, 'en', 'name', 'Totnes Community Hospital'),
(28847, 24946, 'fr', 'name', 'PƓle VƩhicule du Futur'),
(28848, 24947, 'fr', 'name', 'Institut SupĆ©rieur d’Informatique, Programmation et Analyse'),
(28849, 24948, 'no_lang_code', 'name', 'Gruppo Trombini (Italy)'),
(28850, 24949, 'en', 'name', 'Spire Washington Hospital'),
(28851, 24950, 'fa', 'name', 'دانؓگاه Ų§Ł„ŲØŪŒŲ±ŁˆŁ†ŪŒ'),
(28852, 24950, 'no_lang_code', 'name', 'Alberoni University'),
(28853, 24951, 'en', 'name', 'Fleetwood Hospital'),
(28854, 24952, 'no_lang_code', 'name', 'Stopford Energy & Environment (United Kingdom)'),
(28855, 24953, 'en', 'name', 'North Carolina Wesleyan College'),
(28856, 24954, 'en', 'name', 'North Dakota State Board of Higher Education'),
(28857, 24955, 'no_lang_code', 'name', 'Ommic (France)'),
(28858, 24956, 'no_lang_code', 'name', 'Vector Fabrics (Netherlands)'),
(28859, 24957, 'en', 'name', 'Tokyo Kasei University'),
(28860, 24957, 'ja', 'name', 'ę±äŗ¬å®¶ę”æå¤§å­¦'),
(28861, 24958, 'en', 'name', 'Libertador Experimental Pedagogical University'),
(28862, 24958, 'es', 'name', 'Universidad Pedagógica Experimental Libertador'),
(28863, 24959, 'no_lang_code', 'name', 'PhytoCeutica (United States)');
INSERT INTO `ror_settings` VALUES
(28864, 24960, 'en', 'name', 'Sir Robert Peel Community Hospital'),
(28865, 24961, 'en', 'name', 'Polytechnic University of Aguascalientes'),
(28866, 24961, 'es', 'name', 'Universidad PolitƩcnica de Aguascalientes'),
(28867, 24962, 'en', 'name', 'Fairford Hospital'),
(28868, 24963, 'no_lang_code', 'name', 'Mine Safety Appliances (United States)'),
(28869, 24964, 'no_lang_code', 'name', 'SR Technics (Ireland)'),
(28870, 24965, 'en', 'name', 'TB HIV Care Association'),
(28871, 24966, 'no_lang_code', 'name', 'Multimatic ILSA (Germany)'),
(28872, 24967, 'en', 'name', 'Grace University'),
(28873, 24968, 'en', 'name', 'Canada–France–Hawaii Telescope'),
(28874, 24969, 'lv', 'name', 'Ventspils Digitālais Centrs'),
(28875, 24970, 'es', 'name', 'Universidad del Desarrollo del Estado de Puebla'),
(28876, 24971, 'pt', 'name', 'Centro UniversitƔrio Geraldo Di Biase'),
(28877, 24972, 'es', 'name', 'Universidad La RepĆŗblica'),
(28878, 24973, 'es', 'name', 'Universidad de Tamazunchale'),
(28879, 24974, 'en', 'name', 'Keswick Community Hospital'),
(28880, 24975, 'no_lang_code', 'name', 'Union Biometrica (United States)'),
(28881, 24976, 'no_lang_code', 'name', 'Norton Cast Products (United Kingdom)'),
(28882, 24977, 'en', 'name', 'Okayama Ceramics Research Foundation'),
(28883, 24977, 'ja', 'name', 'å²”å±±ć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(28884, 24978, 'no_lang_code', 'name', 'Vanderpol''s Eggs (Canada)'),
(28885, 24979, 'no_lang_code', 'name', 'Tetra Tech (Canada)'),
(28886, 24980, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŗŲ±ŲØ ŁƒŲ±ŲÆŁŲ§Ł†'),
(28887, 24980, 'no_lang_code', 'name', 'West Kordofan University'),
(28888, 24981, 'nl', 'name', 'Stichting Lettinga Associates'),
(28889, 24982, 'no_lang_code', 'name', 'Mellon Technologies (Greece)'),
(28890, 24983, 'no_lang_code', 'name', 'Nanofiber Solutions (United States)'),
(28891, 24984, 'no_lang_code', 'name', 'Valtronic (Switzerland)'),
(28892, 24985, 'en', 'name', 'Banasthali University'),
(28893, 24985, 'hi', 'name', 'ą¤µą¤Øą¤øą„ą¤„ą¤²ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(28894, 24986, 'no_lang_code', 'name', 'Glintt (Portugal)'),
(28895, 24987, 'en', 'name', 'Hollins Park Hospital'),
(28896, 24988, 'de', 'name', 'Klinikum St. Marien Amberg'),
(28897, 24989, 'no_lang_code', 'name', 'Pontydysgu'),
(28898, 24990, 'no_lang_code', 'name', 'Manz (Germany)'),
(28899, 24991, 'en', 'name', 'Pham Ngoc Thach Hospital'),
(28900, 24991, 'vi', 'name', 'Bệnh viện Phįŗ”m Ngį»c Thįŗ”ch'),
(28901, 24992, 'en', 'name', 'College of African Wildlife Management'),
(28902, 24993, 'en', 'name', 'North Downs Hospital'),
(28903, 24994, 'en', 'name', 'Caribbean University'),
(28904, 24994, 'fr', 'name', 'Université Caraïbe'),
(28905, 24995, 'en', 'name', 'Uganda Management Institute'),
(28906, 24996, 'fi', 'name', 'ʋæiĢÆsƦlƦ'),
(28907, 24996, 'no_lang_code', 'name', 'Vaisala (Finland)'),
(28908, 24997, 'de', 'name', 'Salus-Fachklinikum Uchtspringe Klinik für Allgemeine Psychiatrie und Psychotherapie'),
(28909, 24998, 'en', 'name', 'Trowbridge Community Hospital'),
(28910, 24999, 'en', 'name', 'The Chagrin Valley Astronomical Society'),
(28911, 25000, 'pt', 'name', 'Centro UniversitƔrio do Leste de Minas Gerais'),
(28912, 25001, 'en', 'name', 'Martha''s Vineyard Museum'),
(28913, 25002, 'id', 'name', 'Universitas Suryadarma'),
(28914, 25003, 'en', 'name', 'Confederated Tribes of Warm Springs'),
(28915, 25004, 'en', 'name', 'University of Fiji'),
(28916, 25005, 'en', 'name', 'Bushnell University'),
(28917, 25006, 'en', 'name', 'Zhongkai University of Agriculture and Engineering'),
(28918, 25006, 'zh', 'name', 'ä»²ęŗå†œäøšå·„ēØ‹å­¦é™¢'),
(28919, 25007, 'en', 'name', 'Philadelphia History Museum'),
(28920, 25008, 'en', 'name', 'Muteesa I Royal University'),
(28921, 25009, 'en', 'name', 'Monmouth Museum'),
(28922, 25010, 'en', 'name', 'Saint Petersburg State Pediatric Medical University'),
(28923, 25010, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГиатрический меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28924, 25011, 'no_lang_code', 'name', 'Chemcomex (Czechia)'),
(28925, 25012, 'id', 'name', 'Universitas Soerjo Ngawi'),
(28926, 25013, 'en', 'name', 'Pułtusk Academy of Humanities'),
(28927, 25013, 'pl', 'name', 'Akademia Humanistyczna im. Aleksandra Gieysztora w Pułtusku'),
(28928, 25014, 'en', 'name', 'Trade Co-operative University of Moldova'),
(28929, 25014, 'ro', 'name', 'Universitatea Cooperatist-Comerciala din Moldova'),
(28930, 25015, 'no_lang_code', 'name', 'Zero Liquid Discharge (Czechia)'),
(28931, 25016, 'en', 'name', 'Humak University of Applied Sciences'),
(28932, 25016, 'fi', 'name', 'Humanistinen ammattikorkeakoulu'),
(28933, 25017, 'en', 'name', 'American Conservatory Theater'),
(28934, 25018, 'en', 'name', 'Springdale Public Library'),
(28935, 25019, 'en', 'name', 'Northeastern State University'),
(28936, 25019, 'ru', 'name', 'Деверный Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(28937, 25020, 'en', 'name', 'Pyongyang University of Science and Technology'),
(28938, 25020, 'ko', 'name', 'ķ‰ģ–‘ź³¼ķ•™źø°ģˆ ėŒ€ķ•™'),
(28939, 25021, 'en', 'name', 'Łódź Film School'),
(28940, 25021, 'pl', 'name', 'Państwowa Wyższa Szkoła Filmowa, Telewizyjna i Teatralna im. Leona Schillera'),
(28941, 25022, 'en', 'name', 'Texarkana Regional Arts and Humanities Council'),
(28942, 25023, 'en', 'name', 'Los Angeles Public Library'),
(28943, 25023, 'es', 'name', 'Biblioteca Pública de Los Ángeles'),
(28944, 25023, 'fr', 'name', 'BibliothĆØque publique de los angeles'),
(28945, 25024, 'no_lang_code', 'name', 'Brano Group (Czechia)'),
(28946, 25025, 'en', 'name', 'Russell Library'),
(28947, 25026, 'en', 'name', 'Kaliningrad Law Institute Ministry of Internal Affairs of the Russian Federation'),
(28948, 25026, 'ru', 'name', 'ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“ŃŠŗŠøŠ¹ Филиал Данкт - ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Š³Š¾ Университета ŠœŠ’Š” России'),
(28949, 25027, 'en', 'name', 'Foundation for Research on Information Technologies in Society'),
(28950, 25028, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الؓهباؔ'),
(28951, 25028, 'no_lang_code', 'name', 'Al-Shahbaa University'),
(28952, 25029, 'en', 'name', 'International Centre for Genetic Engineering and Biotechnology'),
(28953, 25030, 'en', 'name', 'Corpus Christi Public Libraries'),
(28954, 25031, 'en', 'name', 'Early Manuscripts Electronic Library'),
(28955, 25032, 'en', 'name', 'Boston Athenaeum'),
(28956, 25033, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القرآن Ų§Ł„ŁƒŲ±ŁŠŁ… ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(28957, 25033, 'en', 'name', 'University of the Holy Quran and Islamic Sciences'),
(28958, 25034, 'id', 'name', 'Universitas Alkhairaat'),
(28959, 25035, 'bn', 'name', 'ą¦¦ą§ą¦Æ পিপলস ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(28960, 25035, 'en', 'name', 'People''s University of Bangladesh'),
(28961, 25036, 'en', 'name', 'University of Pittsburgh at Bradford'),
(28962, 25037, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„Ł…ŁŠŁ†'),
(28963, 25037, 'en', 'name', 'AlAlamein International University'),
(28964, 25038, 'no_lang_code', 'name', 'Babu Banarasi Das University'),
(28965, 25038, 'te', 'name', 'బాబు బనారసీ ą°¦ą°¾ą°øą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(28966, 25039, 'en', 'name', 'Hiroshima City University'),
(28967, 25039, 'ja', 'name', 'åŗƒå³¶åø‚ē«‹å¤§å­¦'),
(28968, 25040, 'id', 'name', 'Universitas Muhammadiyah Luwuk Banggai'),
(28969, 25041, 'id', 'name', 'Universitas Al-washliyah Labuhanbatu'),
(28970, 25042, 'en', 'name', 'Santa Barbara Trust for Historic Preservation'),
(28971, 25043, 'en', 'name', 'Milligan College'),
(28972, 25044, 'en', 'name', 'Nagoya Women''s University'),
(28973, 25044, 'ja', 'name', '名古屋儳子大学'),
(28974, 25045, 'en', 'name', 'AMA Computer University'),
(28975, 25045, 'tl', 'name', 'Pamantasang Pangkompyuter ng AMA'),
(28976, 25046, 'en', 'name', 'Recreation and Conservation Office'),
(28977, 25047, 'en', 'name', 'South Dakota Department of Tourism'),
(28978, 25048, 'cs', 'name', 'Muzeum Vysočiny Jihlava'),
(28979, 25049, 'en', 'name', 'Save the Bay'),
(28980, 25050, 'en', 'name', 'Poughkeepsie Public Library District'),
(28981, 25051, 'en', 'name', 'Tula State Pedagogical University named after L.N. Tolstoy'),
(28982, 25051, 'ru', 'name', 'Тульский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š›. Š. Толстого'),
(28983, 25052, 'en', 'name', 'Hokusho University'),
(28984, 25052, 'ja', 'name', 'åŒ—ēæ”å¤§å­¦'),
(28985, 25053, 'en', 'name', 'Appalachian Mountain Club'),
(28986, 25054, 'no_lang_code', 'name', 'Palamuru University'),
(28987, 25054, 'te', 'name', 'పాలమూరు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(28988, 25055, 'en', 'name', 'Lunghwa University of Science and Technology'),
(28989, 25055, 'zh', 'name', 'é¾čÆē§‘ęŠ€å¤§å­ø'),
(28990, 25056, 'en', 'name', 'Ohr-O''Keefe Museum Of Art'),
(28991, 25057, 'en', 'name', 'Lviv National Musical Academy named after Mykola Lysenko'),
(28992, 25057, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŃƒŠ·ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń імені М. Š’. Лисенка'),
(28993, 25058, 'en', 'name', 'Vermont Public Radio'),
(28994, 25059, 'en', 'name', 'SeaWorld Entertainment'),
(28995, 25060, 'en', 'name', 'Society of Biblical Literature'),
(28996, 25061, 'en', 'name', 'University of Theatre and Cinema Ho Chi Minh City'),
(28997, 25061, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c SĆ¢n khįŗ„u – Điện įŗ£nh ThĆ nh phố Hồ ChĆ­ Minh'),
(28998, 25062, 'en', 'name', 'Christian Bilingual University of Congo'),
(28999, 25062, 'fr', 'name', 'UniversitƩ ChrƩtienne Bilingue du Congo'),
(29000, 25063, 'en', 'name', 'Meru University of Science and Technology'),
(29001, 25064, 'cs', 'name', 'Muzeum a Galerie Orlických Hor'),
(29002, 25065, 'no_lang_code', 'name', 'Compureg Plzen (Czechia)'),
(29003, 25066, 'no_lang_code', 'name', 'Vodni Zdroje (Czechia)'),
(29004, 25067, 'no_lang_code', 'name', 'Dicom (Czechia)'),
(29005, 25068, 'en', 'name', 'Collaborative for Educational Services'),
(29006, 25069, 'no_lang_code', 'name', 'Dakshina Bharat Hindi Prachar Sabha'),
(29007, 25070, 'en', 'name', 'Las Vegas Convention and Visitors Authority'),
(29008, 25071, 'en', 'name', 'Jilin Jianzhu University'),
(29009, 25071, 'zh', 'name', 'å‰ęž—å»ŗē­‘å¤§å­¦'),
(29010, 25072, 'no_lang_code', 'name', 'Hussite Museum Tabor'),
(29011, 25073, 'en', 'name', 'Business School Ostrava'),
(29012, 25074, 'km', 'name', 'įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“ įžœįŸ‰įž¶įž“įŸ‹įžŠįž¶'),
(29013, 25074, 'no_lang_code', 'name', 'Vanda Institute'),
(29014, 25075, 'en', 'name', 'Bangkok University'),
(29015, 25075, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(29016, 25076, 'en', 'name', 'Izhevsk State Agricultural Academy'),
(29017, 25076, 'ru', 'name', 'Š˜Š¶ŠµŠ²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29018, 25077, 'no_lang_code', 'name', 'Siemens (Czechia)'),
(29019, 25078, 'id', 'name', 'Universitas Tri Dharma'),
(29020, 25079, 'en', 'name', 'National University of Architecture and Construction of Armenia'),
(29021, 25079, 'hy', 'name', 'ÕƒÕ”Ö€ÕæÕ”Ö€Õ”ÕŗÕ„ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ և Õ·Õ«Õ¶Õ”Ö€Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(29022, 25080, 'en', 'name', 'Hawaiian Islands Land Trust'),
(29023, 25081, 'en', 'name', 'Turkmen Agricultural University Named after S.A. Niyazov'),
(29024, 25081, 'ru', 'name', 'Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. А. ŠŠøŃŠ·Š¾Š²Š°'),
(29025, 25082, 'en', 'name', 'Takming University of Science and Technology'),
(29026, 25082, 'zh', 'name', 'å¾·ę˜Žč²”ē¶“ē§‘ęŠ€å¤§å­ø'),
(29027, 25083, 'en', 'name', 'Dr. Babasaheb Ambedkar Open University'),
(29028, 25083, 'gu', 'name', 'ઔો. બાબાસાહેબ આંબેઔકર ąŖ“ąŖŖąŖØ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(29029, 25084, 'en', 'name', 'Rostov State Transport University'),
(29030, 25084, 'ru', 'name', 'Ростовский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(29031, 25085, 'en', 'name', 'Moscow Regional Institute of Management and Law'),
(29032, 25085, 'ru', 'name', 'Московский областной ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(29033, 25086, 'en', 'name', 'New York State Office of Parks, Recreation and Historic Preservation'),
(29034, 25087, 'en', 'name', 'Ural Institute of Economics, Management and Law'),
(29035, 25087, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(29036, 25088, 'en', 'name', 'Gulf of Maine Association'),
(29037, 25089, 'en', 'name', 'Howon University'),
(29038, 25089, 'ko', 'name', 'ķ˜øģ›ėŒ€ķ•™źµ'),
(29039, 25090, 'en', 'name', 'Hallmark University'),
(29040, 25091, 'en', 'name', 'Mahambet Otemiusly West Kazakhstan University'),
(29041, 25091, 'kk', 'name', 'ŠœŠ°Ń…Š°Š¼Š±ŠµŃ‚ Өтемісов атынГағы Батыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ ŠœŠµŠ¼Š»ŠµŠŗŠµŃ‚Ń‚Ń–Šŗ Университеті'),
(29042, 25092, 'en', 'name', 'Freeport Art Museum'),
(29043, 25093, 'en', 'name', 'Museum of the Cherokee Indian'),
(29044, 25094, 'id', 'name', 'Universitas Muhammadiyah Bengkulu'),
(29045, 25095, 'en', 'name', 'Rustavi Academy of Higher Education'),
(29046, 25096, 'ja', 'name', 'ę”œčŠ±å­¦åœ’å¤§å­¦'),
(29047, 25096, 'no_lang_code', 'name', 'Ohkagakuen University'),
(29048, 25097, 'en', 'name', 'Kyrgyz State University of Construction, Transport and Architecture named after N. Isanov'),
(29049, 25097, 'ky', 'name', 'Š.Исанов атынГагы ŠšŃ‹Ń€Š³Ń‹Š· мамлекеттик ŠŗŃƒŃ€ŃƒŠ»ŃƒŃˆ, транспорт жана Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š° ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(29050, 25097, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š°, транспорта Šø Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ им.Š.Исанова'),
(29051, 25098, 'en', 'name', 'Kyoto Bunkyo University'),
(29052, 25098, 'ja', 'name', 'äŗ¬éƒ½ę–‡ę•™å¤§å­¦'),
(29053, 25099, 'en', 'name', 'University of Muhammadiyah Mataram'),
(29054, 25099, 'id', 'name', 'UNIVERSITAS MUHAMMADIYAH MATARAM'),
(29055, 25100, 'en', 'name', 'Kentucky Historical Society'),
(29056, 25101, 'en', 'name', 'Saint Andrew First-Called Georgian University of the Patriarchate of Georgia'),
(29057, 25101, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒžįƒįƒ¢įƒ įƒ˜įƒįƒ įƒ„įƒįƒ” įƒ¬įƒ›įƒ˜įƒ“įƒ įƒįƒœįƒ“įƒ įƒ˜įƒ įƒžįƒ˜įƒ įƒ•įƒ”įƒšįƒ¬įƒįƒ“įƒ”įƒ‘įƒ£įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(29058, 25102, 'en', 'name', 'Volgograd Academy of the Russian Internal Affairs Ministry'),
(29059, 25102, 'ru', 'name', 'Š’Š¾Š»Š³Š¾Š³Ń€Š°Š“ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(29060, 25103, 'en', 'name', 'Bessemer Historical Society'),
(29061, 25104, 'en', 'name', 'Chinese Historical Society of America'),
(29062, 25105, 'en', 'name', 'University of Georgia Press'),
(29063, 25106, 'en', 'name', 'Rajamangala University of Technology Rattanakosin'),
(29064, 25106, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø£ąø±ąø•ąø™ą¹‚ąøąøŖąø“ąø™ąø—ąø£ą¹Œ'),
(29065, 25107, 'pl', 'name', 'Papieski Wydział Teologiczny we Wrocławiu'),
(29066, 25108, 'en', 'name', 'University of Valley Forge'),
(29067, 25109, 'id', 'name', 'Universitas Respati Yogyakarta'),
(29068, 25110, 'en', 'name', 'Pekin Public Library'),
(29069, 25111, 'en', 'name', 'State Historical Society of North Dakota'),
(29070, 25112, 'en', 'name', 'National-Louis University'),
(29071, 25113, 'en', 'name', 'WGBH Educational Foundation'),
(29072, 25114, 'en', 'name', 'Higher Institute of Management'),
(29073, 25114, 'ru', 'name', 'Š’Ń‹ŃŃˆŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(29074, 25115, 'ja', 'name', '四国学院大学'),
(29075, 25115, 'no_lang_code', 'name', 'Shikoku Gakuin University'),
(29076, 25116, 'en', 'name', 'Stony Brook School'),
(29077, 25117, 'en', 'name', 'Worcester Art Museum'),
(29078, 25118, 'en', 'name', 'Pennsylvania Historical and Museum Commission'),
(29079, 25119, 'am', 'name', 'į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆ²į‰Ŗįˆ įˆ°įˆ­į‰Ŗįˆµ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(29080, 25119, 'en', 'name', 'Ethiopian Civil Service University'),
(29081, 25120, 'en', 'name', 'Park City Museum'),
(29082, 25121, 'en', 'name', 'Southern Ute Museum'),
(29083, 25122, 'en', 'name', 'Takamatsu University'),
(29084, 25122, 'ja', 'name', 'é«˜ę¾å¤§å­¦'),
(29085, 25123, 'en', 'name', 'University of Makati'),
(29086, 25123, 'tl', 'name', 'Pamantasan ng Makati'),
(29087, 25124, 'en', 'name', 'National Kaohsiung University of Hospitality and Tourism'),
(29088, 25124, 'zh', 'name', 'åœ‹ē«‹é«˜é›„é¤ę—…å¤§å­ø'),
(29089, 25125, 'pl', 'name', 'Wyższa Szkoła Ekonomii, Prawa i Nauk Medycznych im. prof. Edwarda Lipińskiego'),
(29090, 25126, 'id', 'name', 'Universitas Iskandar Muda'),
(29091, 25127, 'en', 'name', 'Hainan Medical University'),
(29092, 25127, 'zh', 'name', 'ęµ·å—åŒ»å­¦é™¢'),
(29093, 25128, 'en', 'name', 'Phetchabun Rajabhat University'),
(29094, 25128, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøŽą¹€ąøžąøŠąø£ąøšąø¹ąø£ąø“ą¹Œ'),
(29095, 25129, 'no_lang_code', 'name', 'Gascontrol (Czechia)'),
(29096, 25130, 'en', 'name', 'Samuel S. Fleisher Art Memorial'),
(29097, 25131, 'bn', 'name', 'ą¦°ą¦¾ą¦™ą§ą¦—ą¦¾ą¦®ą¦¾ą¦Ÿą¦æ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29098, 25131, 'en', 'name', 'Rangamati Science and Technology University'),
(29099, 25132, 'en', 'name', 'Princeton Theological Seminary'),
(29100, 25133, 'en', 'name', 'Women''s Studio Workshop'),
(29101, 25134, 'no_lang_code', 'name', 'TL Ultralight (Czechia)'),
(29102, 25135, 'en', 'name', 'Idaho Governors Office of Species Conservation'),
(29103, 25136, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ų§Ł†Ų© Ų§Ł„Ų³ŁˆŲÆŲ§Ł†ŁŠŲ©'),
(29104, 25136, 'en', 'name', 'University of Science and Technology Omdurman'),
(29105, 25137, 'en', 'name', 'Herndon Home Museum'),
(29106, 25138, 'en', 'name', 'Orenburg State Agrarian University'),
(29107, 25138, 'ru', 'name', 'ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29108, 25139, 'en', 'name', 'International Budo University'),
(29109, 25139, 'ja', 'name', 'å›½éš›ę­¦é“å¤§å­¦'),
(29110, 25140, 'en', 'name', 'Haverford Township Free Library'),
(29111, 25141, 'en', 'name', 'Open University of Kaohsiung'),
(29112, 25141, 'zh', 'name', 'é«˜é›„åø‚ē«‹ē©ŗäø­å¤§å­ø'),
(29113, 25142, 'en', 'name', 'Museum of Innovation and Science'),
(29114, 25143, 'no_lang_code', 'name', 'Alfa Union (Czechia)'),
(29115, 25144, 'en', 'name', 'Chechen State University'),
(29116, 25144, 'ru', 'name', 'Чеченский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29117, 25145, 'no_lang_code', 'name', 'Naberezhnye Chelny State Pedagogical Institute'),
(29118, 25145, 'ru', 'name', 'ŠŠ°Š±ŠµŃ€ŠµŠ¶Š½Š¾Ń‡ŠµŠ»Š½ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29119, 25146, 'en', 'name', 'Tokiwa University'),
(29120, 25146, 'ja', 'name', '常磐大学'),
(29121, 25147, 'en', 'name', 'University of Bagamoyo'),
(29122, 25148, 'no_lang_code', 'name', 'Aero (Czechia)'),
(29123, 25149, 'bn', 'name', 'ą¦­ą¦æą¦•ą§ą¦Ÿą§‹ą¦°ą¦æą¦Æą¦¼ą¦¾ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(29124, 25149, 'en', 'name', 'Victoria University of Bangladesh'),
(29125, 25150, 'id', 'name', 'Universitas Malahayati'),
(29126, 25151, 'en', 'name', 'Monad University'),
(29127, 25152, 'en', 'name', 'Dr. Rajendra Prasad Central Agriculture University'),
(29128, 25152, 'hi', 'name', 'ą¤”ą„‰. ą¤°ą¤¾ą¤œą„‡ą¤‚ą¤¦ą„ą¤° ą¤Ŗą„ą¤°ą¤øą¤¾ą¤¦ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29129, 25153, 'en', 'name', 'St. Francis College'),
(29130, 25154, 'en', 'name', 'Pennsylvania Fish and Boat Commission'),
(29131, 25155, 'en', 'name', 'Museum of History & Industry'),
(29132, 25156, 'en', 'name', 'Holy Trinity University'),
(29133, 25157, 'no_lang_code', 'name', 'Lasak (Czechia)'),
(29134, 25158, 'en', 'name', 'Constantin BrĆ¢ncuși University of Targu Jiu'),
(29135, 25159, 'no_lang_code', 'name', 'Coming Plus (Czechia)'),
(29136, 25160, 'es', 'name', 'Universidad Interglobal'),
(29137, 25161, 'en', 'name', 'Sultan Idris Education University'),
(29138, 25161, 'ms', 'name', 'Universiti Pendidikan Sultan Idris'),
(29139, 25161, 'ta', 'name', 'ą®ŖąÆ†ą®£ąÆą®Ÿą®æą®Ÿą®æą®•ąÆą®•ą®¾ą®©ąÆ ą®šąÆą®²ąÆą®¤ą®¾ą®©ąÆ ą®‡ą®¤ąÆą®°ąÆ€ą®šąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(29140, 25162, 'en', 'name', 'University of Finance and Economics'),
(29141, 25162, 'mn', 'name', 'Данхүү ЭГийн Засгийн Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(29142, 25163, 'en', 'name', 'Mykolaiv V.O. Sukhomlynskyi National University'),
(29143, 25163, 'uk', 'name', 'ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’.Šž. Š”ŃƒŃ…Š¾Š¼Š»ŠøŠ½ŃŃŒŠŗŠ¾Š³Š¾'),
(29144, 25164, 'en', 'name', 'Burao University'),
(29145, 25164, 'so', 'name', 'Jaamacada Burco'),
(29146, 25165, 'en', 'name', 'San Diego Unified Port District'),
(29147, 25166, 'en', 'name', 'University Geomedi'),
(29148, 25166, 'ka', 'name', 'įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ įƒ’įƒ”įƒįƒ›įƒ”įƒ“įƒ˜'),
(29149, 25167, 'no_lang_code', 'name', 'Xinjiang Petroleum Society'),
(29150, 25167, 'zh', 'name', 'äø­å›½ēŸ³ę²¹å­¦ä¼š'),
(29151, 25168, 'en', 'name', 'Tajik State University of Law Business and Politics'),
(29152, 25168, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Давлатии Ņ²ŃƒŅ›ŃƒŅ›, Бизнес, ва Диёсати Тоҷикистон'),
(29153, 25169, 'en', 'name', 'Kurt Weill Foundation for Music'),
(29154, 25170, 'en', 'name', 'Tunica Museum'),
(29155, 25171, 'en', 'name', 'Samuel Adegboyega University'),
(29156, 25172, 'en', 'name', 'European Faculty of Law'),
(29157, 25172, 'sl', 'name', 'Evropska pravna fakulteta'),
(29158, 25173, 'en', 'name', 'Pennsylvania Academy of the Fine Arts'),
(29159, 25173, 'fr', 'name', 'Beaux-arts de pennsylvanie'),
(29160, 25174, 'hu', 'name', 'Bhaktivedanta HittudomĆ”nyi Főiskola'),
(29161, 25174, 'no_lang_code', 'name', 'Bhaktivedanta College'),
(29162, 25175, 'en', 'name', 'University of Arkansas Community College at Batesville'),
(29163, 25176, 'en', 'name', 'University of Ecology and Management in Warsaw'),
(29164, 25176, 'pl', 'name', 'Wyższa Szkoła Ekologii i Zarządzania w Warszawie'),
(29165, 25177, 'en', 'name', 'Earth Island Institute'),
(29166, 25178, 'id', 'name', 'Universitas Abulyatama'),
(29167, 25179, 'en', 'name', 'Saint-Petersburg State University of Technology and Design'),
(29168, 25180, 'en', 'name', 'Polonia University'),
(29169, 25180, 'pl', 'name', 'Akademia Polonijna'),
(29170, 25181, 'en', 'name', 'Mississippi Department of Archives and History'),
(29171, 25182, 'en', 'name', 'University of South Florida Sarasota–Manatee'),
(29172, 25183, 'en', 'name', 'W. H. Over Museum'),
(29173, 25184, 'en', 'name', 'Colorado Heights University'),
(29174, 25185, 'en', 'name', 'National Society of The Colonial Dames of America'),
(29175, 25186, 'en', 'name', 'Ludwik Solski Academy for the Dramatic Arts'),
(29176, 25186, 'pl', 'name', 'Państwowa Wyższa Szkoła Teatralna im. Ludwika Solskiego w Krakowie'),
(29177, 25187, 'en', 'name', 'Texas Marine Mammal Stranding Network'),
(29178, 25188, 'en', 'name', 'European School of Law and Administration'),
(29179, 25188, 'pl', 'name', 'Europejska Wyższa Szkoła Prawa i Administracji'),
(29180, 25189, 'en', 'name', 'Humane Society of the United States'),
(29181, 25190, 'en', 'name', 'Kwassui Women''s University'),
(29182, 25190, 'ja', 'name', '擻氓儳子大学'),
(29183, 25191, 'bn', 'name', 'ą¦•ą§ƒą¦·ą§ą¦£ą¦•ą¦¾ą¦Øą§ą¦¤ ą¦øą¦Øą§ą¦¦ą¦æą¦•ą§ˆ ą¦°ą¦¾ą¦œą§ą¦Æą¦æą¦• ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29184, 25191, 'en', 'name', 'Krishna Kanta Handiqui State Open University'),
(29185, 25192, 'cs', 'name', 'JihomoravskĆ© muzeum ve Znojmě, South Moravian Museum in Znojmo'),
(29186, 25193, 'en', 'name', 'Gangwon Provincial University'),
(29187, 25194, 'ko', 'name', 'ė°±ģ„ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(29188, 25194, 'no_lang_code', 'name', 'Baekseok Arts University'),
(29189, 25195, 'en', 'name', 'Idaho State Historical Society'),
(29190, 25196, 'en', 'name', 'Juraj Dobrila University of Pula'),
(29191, 25196, 'hr', 'name', 'SveučiliŔte Jurja Dobrile u Puli'),
(29192, 25196, 'sr', 'name', 'Универзитет ŠˆŃƒŃ€Š°Ń˜Š° Добриле у Пули'),
(29193, 25197, 'en', 'name', 'National University of Samoa'),
(29194, 25197, 'sm', 'name', 'Le Iunivesite Aoao o Samoa'),
(29195, 25198, 'en', 'name', 'Dallas Historical Society'),
(29196, 25199, 'en', 'name', 'Tom Lea Institute'),
(29197, 25200, 'no_lang_code', 'name', 'T-MAPY (Czechia)'),
(29198, 25201, 'en', 'name', 'Classic Private University'),
(29199, 25201, 'uk', 'name', 'ŠšŠ»Š°ŃŠøŃ‡Š½ŠøŠ¹ приватний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29200, 25202, 'no_lang_code', 'name', 'Unit Plus (Czechia)'),
(29201, 25203, 'en', 'name', 'National Taichung University of Education'),
(29202, 25203, 'zh', 'name', 'åœ‹ē«‹č‡ŗäø­ę•™č‚²å¤§å­ø'),
(29203, 25204, 'en', 'name', 'Harvard University Press'),
(29204, 25205, 'en', 'name', 'Korea National University of Cultural Heritage'),
(29205, 25205, 'ko', 'name', 'ķ•œźµ­ģ „ķ†µė¬øķ™”ėŒ€ķ•™źµ'),
(29206, 25206, 'en', 'name', 'Tallahassee Museum'),
(29207, 25207, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž„įŸ’įž‚įžš'),
(29208, 25207, 'no_lang_code', 'name', 'Angkor University'),
(29209, 25208, 'en', 'name', 'World Music Productions'),
(29210, 25209, 'no_lang_code', 'name', 'CKD Elektrotechnika (Czechia)'),
(29211, 25210, 'fa', 'name', 'دانؓگاه ŲŗŲ²Ł†ŪŒ'),
(29212, 25210, 'no_lang_code', 'name', 'Ghazni University'),
(29213, 25211, 'en', 'name', 'School of Economics and Management of Public Administration in Bratislava'),
(29214, 25211, 'sk', 'name', 'VysokÔ Ŕkola ekonómie a manažmentu verejnej sprÔvy v Bratislave'),
(29215, 25212, 'id', 'name', 'Universitas Persada Indonesia Yayasan Administrasi Indonesia'),
(29216, 25213, 'en', 'name', 'Smolensk State Agricultural Academy'),
(29217, 25213, 'ru', 'name', 'Š”Š¼Š¾Š»ŠµŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29218, 25214, 'en', 'name', 'Kansai University of Social Welfare'),
(29219, 25214, 'ja', 'name', 'é–¢č„æē¦ē„‰å¤§å­¦'),
(29220, 25215, 'en', 'name', 'Pacific Marine Mammal Center'),
(29221, 25216, 'en', 'name', 'Houghton Lake Public Library'),
(29222, 25217, 'en', 'name', 'Muhammadiyah University of North Maluku'),
(29223, 25217, 'id', 'name', 'Universitas Muhammadiyah Maluku Utara'),
(29224, 25218, 'en', 'name', 'Ecology Action'),
(29225, 25219, 'cs', 'name', 'GerontologickƩ Centrum'),
(29226, 25220, 'en', 'name', 'Tamil Nadu Teachers Education University'),
(29227, 25220, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®†ą®šą®æą®°ą®æą®Æą®°ąÆ ą®•ą®²ąÆą®µą®æą®Æą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(29228, 25221, 'no_lang_code', 'name', 'ERA (Czechia)'),
(29229, 25222, 'en', 'name', 'Gyeongin National University of Education'),
(29230, 25222, 'ko', 'name', 'ź²½ģøźµģœ”ėŒ€ķ•™źµ'),
(29231, 25223, 'en', 'name', 'Tver State Technical University'),
(29232, 25223, 'ru', 'name', 'Тверской Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29233, 25224, 'en', 'name', 'Saint Petersburg State University of Cinema and Television'),
(29234, 25224, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кино Šø Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ'),
(29235, 25225, 'en', 'name', 'Japan Center for Michigan Universities'),
(29236, 25225, 'ja', 'name', 'ćƒŸć‚·ć‚¬ćƒ³å·žē«‹å¤§å­¦é€£åˆę—„ęœ¬ć‚»ćƒ³ć‚æćƒ¼'),
(29237, 25226, 'en', 'name', 'Carbon County Museum'),
(29238, 25227, 'az', 'name', 'Azərbaycan Dƶvlət Mədəniyyət və İncəsənət Universiteti'),
(29239, 25227, 'en', 'name', 'Azerbaijan State University of Culture and Arts'),
(29240, 25227, 'ru', 'name', 'АзербайГжанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(29241, 25228, 'id', 'name', 'Universitas Kutai Kartanegara'),
(29242, 25229, 'ja', 'name', 'ę˜ŸåŸŽå¤§å­¦'),
(29243, 25229, 'no_lang_code', 'name', 'Seijoh University'),
(29244, 25230, 'en', 'name', 'Plains Art Museum'),
(29245, 25231, 'en', 'name', 'Rochester Historical Society'),
(29246, 25232, 'ja', 'name', 'ęµé€šēµŒęøˆå¤§å­¦'),
(29247, 25232, 'no_lang_code', 'name', 'Ryutsu Keizai University'),
(29248, 25233, 'pt', 'name', 'Universidade Sénior Contemporânea'),
(29249, 25234, 'en', 'name', 'Baddi University of Emerging Sciences and Technologies'),
(29250, 25234, 'hi', 'name', 'ą¤¬ą¤¦ą„ą¤¦ą„€ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤®ą„‡ą¤°ą„ą¤—ą¤æą¤‚ą¤— ą¤øą¤¾ą¤‡ą¤‚ą¤øą„‡ą¤ø और ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(29251, 25235, 'en', 'name', 'Pacific Shellfish Institute'),
(29252, 25236, 'ja', 'name', 'ę­¦č”µé‡ŽéŸ³ę„½å¤§å­¦'),
(29253, 25236, 'no_lang_code', 'name', 'Musashino Academia Musicae'),
(29254, 25237, 'en', 'name', 'Korea Nazarene University'),
(29255, 25237, 'ko', 'name', 'ė‚˜ģ‚¬ė ›ėŒ€ķ•™źµ'),
(29256, 25238, 'id', 'name', 'Universitas Islam Attahiriyah'),
(29257, 25239, 'en', 'name', 'National University of Modern Languages'),
(29258, 25239, 'ur', 'name', 'Ł‚ŁˆŁ…ŪŒ جامعہ ŲØŲ±Ų§Ų¦Ū’ جدید Ł„Ų³Ų§Ł†ŪŒŲ§ŲŖ'),
(29259, 25240, 'en', 'name', 'Cincinnati Art Museum'),
(29260, 25241, 'en', 'name', 'University of Computer Studies Mandalay'),
(29261, 25242, 'en', 'name', 'Jagadguru Rambhadracharya Handicapped University'),
(29262, 25242, 'gu', 'name', 'ąŖœąŖ—ąŖ¦ą«ąŖ—ą«ąŖ°ą« ąŖ°ąŖ¾ąŖ®ąŖ­ąŖ¦ą«ąŖ°ąŖ¾ąŖšąŖ¾ąŖ°ą«ąŖÆ વિકલાંગ ąŖµąŖæąŖ¶ą«ąŖµąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖ²ąŖÆ'),
(29263, 25242, 'hi', 'name', 'ą¤œą¤—ą¤¦ą„ą¤—ą„ą¤°ą„ ą¤°ą¤¾ą¤®ą¤­ą¤¦ą„ą¤°ą¤¾ą¤šą¤¾ą¤°ą„ą¤Æ विकलांग ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29264, 25243, 'en', 'name', 'Zetech University'),
(29265, 25244, 'en', 'name', 'Ontario County Historical Society'),
(29266, 25245, 'en', 'name', 'Canal Corridor Association'),
(29267, 25246, 'en', 'name', 'Yangon Technological University'),
(29268, 25246, 'my', 'name', 'į€›į€”į€ŗį€€į€Æį€”į€ŗį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29269, 25247, 'en', 'name', 'Western Heritage Center'),
(29270, 25248, 'en', 'name', 'Maymont Foundation'),
(29271, 25249, 'cs', 'name', 'ÚrazovÔ nemocnice'),
(29272, 25249, 'en', 'name', 'Trauma Hospital of Brno'),
(29273, 25250, 'en', 'name', 'Phitsanulok University'),
(29274, 25250, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø“ąø©ąø“ąøøą¹‚ąø„ąø'),
(29275, 25251, 'en', 'name', 'National Technical Training Institute'),
(29276, 25251, 'km', 'name', 'įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‡įž¶įžįž·įž”įžŽįŸ’įžįž»įŸ‡įž”įžŽįŸ’įžįž¶įž›įž”įž…įŸ’įž…įŸįž€įž‘įŸįžŸ'),
(29277, 25252, 'id', 'name', 'Universitas Islam Nusantara'),
(29278, 25253, 'en', 'name', 'St. John International University'),
(29279, 25254, 'en', 'name', 'Khabarovsk State Institute of Arts and Culture'),
(29280, 25254, 'ru', 'name', 'Єабаровский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(29281, 25255, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المستقبل'),
(29282, 25255, 'en', 'name', 'The Future University'),
(29283, 25256, 'id', 'name', 'Universitas Sultan Fatah'),
(29284, 25257, 'en', 'name', 'Orca Network'),
(29285, 25258, 'en', 'name', 'Chelyabinsk State Agroengineering Academy'),
(29286, 25258, 'ru', 'name', 'Южно-Š£Ń€Š°ĢŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ агра́рный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚'),
(29287, 25259, 'en', 'name', 'University of Management and Technology'),
(29288, 25259, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŁ†Ų¬Ł…Ł†Ł¹ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(29289, 25260, 'en', 'name', 'Wright-Patterson Air Force Base'),
(29290, 25261, 'en', 'name', 'Kharkiv National University of Construction and Architecture'),
(29291, 25261, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° й Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(29292, 25262, 'en', 'name', 'Moscow International Higher Business School'),
(29293, 25262, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š²Ń‹ŃŃˆŠ°Ń школа бизнеса'),
(29294, 25263, 'en', 'name', 'Martin Luther Christian University'),
(29295, 25264, 'en', 'name', 'Urals Institute of Management'),
(29296, 25264, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(29297, 25265, 'en', 'name', 'Kansai University of Nursing and Health Sciences'),
(29298, 25265, 'ja', 'name', 'é–¢č„æēœ‹č­·åŒ»ē™‚å¤§å­¦'),
(29299, 25266, 'en', 'name', 'Katonah Museum of Art'),
(29300, 25267, 'en', 'name', 'Sara Hightower Regional Library System'),
(29301, 25268, 'en', 'name', 'Dallas Heritage Village'),
(29302, 25269, 'bn', 'name', 'ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ কবি ą¦•ą¦¾ą¦œą§€ নজরুল ইসলাম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29303, 25269, 'en', 'name', 'Jatiya Kabi Kazi Nazrul Islam University'),
(29304, 25270, 'en', 'name', 'Kyrgyz Economic University'),
(29305, 25270, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š· Экономика ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø М. Š Ń‹ŃŠŗŃƒŠ»Š±ŠµŠŗŠ¾Š²'),
(29306, 25270, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. М. Š Ń‹ŃŠŗŃƒŠ»Š±ŠµŠŗŠ¾Š²Š°'),
(29307, 25271, 'en', 'name', 'Artsakh State University'),
(29308, 25271, 'hy', 'name', 'ԱրցՔխի ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶Õ« Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ ÕæÕ„Õ²Õ„ÕÆÕ”Õ£Õ«Ö€'),
(29309, 25271, 'ru', 'name', 'Арцахский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29310, 25272, 'ja', 'name', '追手門学院大学'),
(29311, 25272, 'no_lang_code', 'name', 'Otemon Gakuin University'),
(29312, 25273, 'en', 'name', 'Pacific Adventist University'),
(29313, 25274, 'en', 'name', 'Auburn City Schools'),
(29314, 25275, 'en', 'name', 'Tel Hai Academic College'),
(29315, 25275, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ תל-חי'),
(29316, 25276, 'en', 'name', 'La Consolacion University Philippines'),
(29317, 25276, 'tl', 'name', 'Pamantasang La Consolacion sa Pilipinas'),
(29318, 25277, 'en', 'name', 'National Maritime Museum of the Gulf of Mexico'),
(29319, 25278, 'no_lang_code', 'name', 'Stavexis (Czechia)'),
(29320, 25279, 'no_lang_code', 'name', 'Cross ZlĆ­n (Czechia)'),
(29321, 25280, 'en', 'name', 'Centre for Higher Education Studies'),
(29322, 25281, 'en', 'name', 'Notre Dame of Dadiangas University'),
(29323, 25282, 'en', 'name', 'Palm Springs Art Museum'),
(29324, 25283, 'en', 'name', 'California State Coastal Conservancy'),
(29325, 25284, 'en', 'name', 'Laurel University'),
(29326, 25285, 'en', 'name', 'Jewish Historical Society of Greater Washington'),
(29327, 25286, 'en', 'name', 'Maranatha Baptist University'),
(29328, 25287, 'en', 'name', 'EIILM University'),
(29329, 25287, 'hi', 'name', 'ई.आइ.आइ.ą¤ą¤².ą¤ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29330, 25288, 'en', 'name', 'Vistula School of Hospitality'),
(29331, 25288, 'pl', 'name', 'Szkoła Główna Turystyki i Hotelarstwa Vistula'),
(29332, 25289, 'no_lang_code', 'name', 'KRD (Czechia)'),
(29333, 25290, 'en', 'name', 'Caribbean Cultural Center African Diaspora Institute'),
(29334, 25291, 'en', 'name', 'Winterthur Museum Garden and Library'),
(29335, 25292, 'en', 'name', 'Niigata University of Rehabilitation'),
(29336, 25292, 'ja', 'name', 'ę–°ę½ŸćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å¤§å­¦'),
(29337, 25293, 'en', 'name', 'Telfair Museum of Art'),
(29338, 25294, 'en', 'name', 'Janardan Rai Nagar Rajasthan Vidyapeeth University'),
(29339, 25294, 'hi', 'name', 'ą¤œą¤Øą¤¾ą¤°ą„ą¤¦ą¤Ø राय नागर ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29340, 25295, 'en', 'name', 'Samarkand Institute of Economics and Service'),
(29341, 25295, 'uz', 'name', 'Samarqand iqtisodiyot va servis instituti'),
(29342, 25296, 'en', 'name', 'Anchorage Museum'),
(29343, 25297, 'en', 'name', 'Modern Language Association'),
(29344, 25298, 'en', 'name', 'Higher Education Centre Novo Mesto'),
(29345, 25298, 'sl', 'name', 'VisokoŔolsko SrediŔče Novo Mesto'),
(29346, 25299, 'en', 'name', 'Lummi Indian Business Council'),
(29347, 25300, 'pl', 'name', 'Akademia Sztuk Pięknych w Gdańsku'),
(29348, 25301, 'en', 'name', 'Western Museum of Mining & Industry'),
(29349, 25302, 'en', 'name', 'Amon Carter Museum of American Art'),
(29350, 25303, 'en', 'name', 'Salem College'),
(29351, 25304, 'en', 'name', 'Manuel L. Quezon University'),
(29352, 25304, 'tl', 'name', 'Pamantasang Manuel L. Quezon'),
(29353, 25305, 'en', 'name', 'Caucasus International University'),
(29354, 25306, 'en', 'name', 'Friends of Fellows Riverside Gardens'),
(29355, 25307, 'en', 'name', 'Minnesota Historical Society'),
(29356, 25308, 'en', 'name', 'Parkway School District'),
(29357, 25309, 'cs', 'name', 'HlasovƩ centrum Praha'),
(29358, 25309, 'no_lang_code', 'name', 'Medical Healthcom (Czechia)'),
(29359, 25310, 'en', 'name', 'Shri Jagannath Sanskrit University'),
(29360, 25310, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤œą¤—ą¤Øą„ą¤Øą¤¾ą¤„ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29361, 25310, 'or', 'name', 'ą¬¶ą­ą¬°ą­€ ą¬œą¬—ą¬Øą­ą¬Øą¬¾ą¬„ ą¬øą¬‚ą¬øą­ą¬•ą­ƒą¬¤ ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(29362, 25311, 'no_lang_code', 'name', 'Tramaz (Czechia)'),
(29363, 25312, 'bn', 'name', 'ą¦¶ą¦¾ą¦Øą§ą¦¤-মরিয়ম ą¦øą§ƒą¦œą¦Øą¦¶ą§€ą¦² ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29364, 25312, 'en', 'name', 'Shanto-Mariam University of Creative Technology'),
(29365, 25313, 'en', 'name', 'Andijan State University'),
(29366, 25313, 'uz', 'name', 'Andijon davlat universiteti'),
(29367, 25314, 'en', 'name', 'Kyrgyz State Medical Academy'),
(29368, 25315, 'en', 'name', 'Institute for Marine Mammal Studies'),
(29369, 25316, 'no_lang_code', 'name', 'Webnode (Czechia)'),
(29370, 25317, 'en', 'name', 'Washington National Opera'),
(29371, 25318, 'id', 'name', 'Universitas Sains dan Teknologi Jayapura'),
(29372, 25319, 'id', 'name', 'Universitas Pembinaan Masyarakat Indonesia Medan'),
(29373, 25320, 'en', 'name', 'Ethics and Public Policy Center'),
(29374, 25321, 'id', 'name', 'Universitas Muhammadiyah Parepare'),
(29375, 25322, 'en', 'name', 'Tennessee State Museum'),
(29376, 25323, 'de', 'name', 'Private Fachhochschule Wedel'),
(29377, 25323, 'en', 'name', 'University of Applied Sciences Wedel'),
(29378, 25324, 'en', 'name', 'Tampere University of Applied Sciences'),
(29379, 25324, 'fi', 'name', 'Tampereen Ammattikorkeakoulu'),
(29380, 25325, 'en', 'name', 'Gemological Centers'),
(29381, 25326, 'en', 'name', 'Arts, Sciences and Technology University in Lebanon'),
(29382, 25327, 'en', 'name', 'Christian Business Faculty Association'),
(29383, 25328, 'en', 'name', 'Taisho University'),
(29384, 25328, 'ja', 'name', '大正大学'),
(29385, 25329, 'no_lang_code', 'name', 'Generi Biotech (Czechia)'),
(29386, 25330, 'ja', 'name', 'é§æę²³å°å¤§å­¦'),
(29387, 25330, 'no_lang_code', 'name', 'Surugadai University'),
(29388, 25331, 'hi', 'name', 'Mahatma Gandhi Chitrakoot Gramodaya Vishwavidyalaya'),
(29389, 25332, 'en', 'name', 'Oklahoma Historical Society'),
(29390, 25333, 'en', 'name', 'Yessenov University'),
(29391, 25333, 'kk', 'name', 'ŠØ. Есенов атынГағы Университет'),
(29392, 25334, 'en', 'name', 'Changchun Normal University'),
(29393, 25334, 'zh', 'name', 'é•æę˜„åøˆčŒƒå¤§å­¦'),
(29394, 25335, 'en', 'name', 'Bridge University'),
(29395, 25336, 'no_lang_code', 'name', 'Formdesign (Czechia)'),
(29396, 25337, 'en', 'name', 'International Coalition of Sites of Conscience'),
(29397, 25338, 'bn', 'name', 'ą¦øą¦¾ą¦‰ą¦„ą¦‡ą¦øą§ą¦Ÿ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29398, 25338, 'en', 'name', 'Southeast University'),
(29399, 25339, 'en', 'name', 'Mission Inn Foundation'),
(29400, 25340, 'en', 'name', 'Buriram Rajabhat University'),
(29401, 25340, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøšąøøąø£ąøµąø£ąø±ąø”ąø¢ą¹Œ'),
(29402, 25341, 'en', 'name', 'Olney Carnegie Library'),
(29403, 25342, 'en', 'name', 'Abraham Lincoln University'),
(29404, 25343, 'no_lang_code', 'name', 'Upper Volga Institute'),
(29405, 25344, 'ja', 'name', '金沢学院大学'),
(29406, 25344, 'no_lang_code', 'name', 'Kanazawa Gakuin University'),
(29407, 25345, 'en', 'name', 'Center for Southern Folklore'),
(29408, 25346, 'en', 'name', 'Flagler College'),
(29409, 25347, 'en', 'name', 'Northeast Historic Film'),
(29410, 25348, 'id', 'name', 'Universitas Esa Unggul'),
(29411, 25349, 'cs', 'name', 'Akademie Sting'),
(29412, 25349, 'en', 'name', 'Sting Academy'),
(29413, 25350, 'id', 'name', 'Universitas Prof. Dr. Hazairin SH.'),
(29414, 25351, 'en', 'name', 'Linebaugh Public Library'),
(29415, 25352, 'no_lang_code', 'name', 'Komfi (Czechia)'),
(29416, 25353, 'en', 'name', 'Novosibirsk State Medical University'),
(29417, 25353, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29418, 25354, 'en', 'name', 'Chabot College'),
(29419, 25355, 'ja', 'name', '天理大学'),
(29420, 25355, 'no_lang_code', 'name', 'Tenri University'),
(29421, 25356, 'en', 'name', 'Henry Morrison Flagler Museum'),
(29422, 25357, 'en', 'name', 'Transbaikal State University'),
(29423, 25357, 'ru', 'name', 'Š—Š°Š±Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29424, 25358, 'id', 'name', 'Universitas Darul Ulum Islamic Centre Sudirman'),
(29425, 25359, 'no_lang_code', 'name', 'Seawater Greenhouse (United Kingdom)'),
(29426, 25360, 'en', 'name', 'Karelia University of Applied Sciences'),
(29427, 25360, 'fi', 'name', 'Karelia-ammattikorkeakoulu'),
(29428, 25361, 'en', 'name', 'Washburn Norlands Living History Center'),
(29429, 25362, 'dv', 'name', 'Ž‹ŽØŽˆŽ¬Ž€ŽØŽƒŽ§Ž‡Ž°Ž–Ž­ŽŽŽ¬ ޤައުމީ Ž”ŽŖŽ‚ŽØŽˆŽ¦ŽƒŽŽØŽ“Ž©'),
(29430, 25362, 'en', 'name', 'Maldives National University'),
(29431, 25363, 'my', 'name', 'ရတနာပုံ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(29432, 25363, 'no_lang_code', 'name', 'Yadanabon University'),
(29433, 25364, 'en', 'name', 'Thang Long University'),
(29434, 25364, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Thăng Long'),
(29435, 25365, 'no_lang_code', 'name', 'Education Management Corporation (United States)'),
(29436, 25366, 'en', 'name', 'Carnegie Trust for the Universities of Scotland'),
(29437, 25367, 'en', 'name', 'Anthology Film Archives'),
(29438, 25368, 'en', 'name', 'Fuji University'),
(29439, 25368, 'ja', 'name', '富士大学'),
(29440, 25369, 'cs', 'name', 'VýchodočeskĆ© muzeum v PardubicĆ­ch'),
(29441, 25369, 'en', 'name', 'East Bohemian Museum in Pardubice'),
(29442, 25370, 'en', 'name', 'Bishop John T. Walker National Learning Center'),
(29443, 25371, 'en', 'name', 'Coastal Resources Management Council'),
(29444, 25372, 'en', 'name', 'Carnegie Mellon University Australia'),
(29445, 25373, 'en', 'name', 'Takachiho University'),
(29446, 25373, 'ja', 'name', 'é«˜åƒē©‚å¤§å­¦'),
(29447, 25374, 'en', 'name', 'Institute of Foreign Languages'),
(29448, 25374, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иностранных ŃŠ·Ń‹ŠŗŠ¾Š²'),
(29449, 25375, 'id', 'name', 'Universitas Bale Bandung'),
(29450, 25376, 'en', 'name', 'Kurgan State Agricultural Academy by T S Maltsev'),
(29451, 25376, 'ru', 'name', 'ŠšŃƒŃ€Š³Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Š¢.Š”'),
(29452, 25377, 'en', 'name', 'Rudny Industrial Institute'),
(29453, 25377, 'kk', 'name', 'Š ŃƒŠ“Š½Ń‹Š¹ Š˜Š½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»Š“Ń‹Ņ› Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(29454, 25378, 'en', 'name', 'Sonoma County Library'),
(29455, 25379, 'en', 'name', 'Pryazovskyi State Technical University'),
(29456, 25379, 'pl', 'name', 'Przyazowski Państwowy Uniwersytet Techniczny'),
(29457, 25379, 'ru', 'name', 'ŠŸŃ€ŠøŠ°Š·Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29458, 25379, 'uk', 'name', 'ŠŸŃ€ŠøŠ°Š·Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29459, 25380, 'en', 'name', 'Turkmen State Institute of Transport and Communication'),
(29460, 25381, 'en', 'name', 'Kangnam University'),
(29461, 25381, 'ko', 'name', 'ź°•ė‚ØėŒ€ķ•™źµ'),
(29462, 25382, 'de', 'name', 'IMC Fachhochschule Krems'),
(29463, 25382, 'en', 'name', 'IMC University of Applied Sciences Krems'),
(29464, 25383, 'en', 'name', 'Dagestan State Agricultural Academy'),
(29465, 25384, 'en', 'name', 'Tbilisi Humanitarian Teaching University'),
(29466, 25384, 'ka', 'name', 'įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ°įƒ£įƒ›įƒįƒœįƒ˜įƒ¢įƒįƒ įƒ£įƒšįƒ˜ įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(29467, 25385, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų¹ŁŁ…Ų§Ł† Ų§Ł„Ų·ŲØŁŠŲ©'),
(29468, 25385, 'en', 'name', 'Oman Medical College'),
(29469, 25386, 'cs', 'name', 'Univerzita Jana Amose KomenskƩho Praha'),
(29470, 25386, 'en', 'name', 'Jan Amos Komensky University'),
(29471, 25387, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© الخاصة'),
(29472, 25387, 'en', 'name', 'Wadi International University'),
(29473, 25388, 'en', 'name', 'Indian Institute of Foreign Trade'),
(29474, 25388, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤¦ą„‡ą¤¶ ą¤µą„ą¤Æą¤¾ą¤Ŗą¤¾ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(29475, 25389, 'en', 'name', 'Bamyan University'),
(29476, 25389, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲØŲ§Ł…ŪŒŲ§Ł†ā€Ž'),
(29477, 25389, 'ps', 'name', 'ŲÆŲØŲ§Ł…ŪŒŲ§Ł† Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(29478, 25390, 'en', 'name', 'Karagandy State University'),
(29479, 25390, 'kk', 'name', 'Š•.А.Бөкетов атынГағы ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(29480, 25390, 'ru', 'name', 'ŠšŠ°Ń€Š°Š³Š°Š½Š“ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š•. А. Š‘ŃƒŠŗŠµŃ‚Š¾Š²Š°'),
(29481, 25391, 'en', 'name', 'Allameh Mohaddes Nouri University'),
(29482, 25391, 'fa', 'name', 'دانؓگاه علامه Ł…Ų­ŲÆŲ« Ł†ŁˆŲ±ŪŒ'),
(29483, 25392, 'en', 'name', 'Society for the Protection of New Hampshire Forests'),
(29484, 25393, 'no_lang_code', 'name', 'Pneukom (Czechia)'),
(29485, 25394, 'en', 'name', 'Caraga State University'),
(29486, 25395, 'bn', 'name', 'কুমাৰ ą¦­ą¦¾ą¦øą§ą¦•ą§° ą¦¬ą§°ą§ą¦®ą¦¾ ą¦øą¦‚ą¦øą§ą¦•ą§ƒą¦¤ আৰু পুৰাতন ą¦…ą¦§ą§ą¦Æą¦Æą¦¼ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29487, 25395, 'en', 'name', 'Kumar Bhaskar Varma Sanskrit and Ancient Studies University'),
(29488, 25395, 'hi', 'name', 'ą¤•ą„ą¤®ą¤¾ą¤° ą¤­ą¤¾ą¤øą„ą¤•ą¤° ą¤µą¤°ą„ą¤®ą¤¾ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¾ą¤¤ą¤Ø ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29489, 25396, 'en', 'name', 'English Speaking Union'),
(29490, 25397, 'en', 'name', 'Rattana Bundit University'),
(29491, 25397, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø±ąø•ąø™ąøšąø±ąø“ąø‘ąø“ąø•'),
(29492, 25398, 'en', 'name', 'Malama Kai Foundation'),
(29493, 25399, 'id', 'name', 'Universitas Simalungun'),
(29494, 25400, 'en', 'name', 'Harbin University'),
(29495, 25400, 'zh', 'name', 'å“ˆå°”ę»Øå­¦é™¢'),
(29496, 25401, 'en', 'name', 'Institute for Environmental Policy'),
(29497, 25402, 'en', 'name', 'Cape Ann Museum'),
(29498, 25403, 'no_lang_code', 'name', 'Oikos University'),
(29499, 25404, 'en', 'name', 'Hijiyama University'),
(29500, 25404, 'ja', 'name', '比治山大学'),
(29501, 25405, 'en', 'name', 'Los Angeles County Museum of Art'),
(29502, 25406, 'en', 'name', 'City Lore the New York Center for Urban Culture'),
(29503, 25407, 'id', 'name', 'Universitas Muhammadiyah Gresik'),
(29504, 25408, 'en', 'name', 'Washington State Historical Society'),
(29505, 25409, 'en', 'name', 'Providence Public Library'),
(29506, 25410, 'no_lang_code', 'name', 'Optokon (Czechia)'),
(29507, 25411, 'en', 'name', 'University of Applied Science Budapest'),
(29508, 25411, 'hu', 'name', 'Budapesti Metropolitan Egyetem'),
(29509, 25412, 'en', 'name', 'Ferghana Polytechnical Institute'),
(29510, 25412, 'ru', 'name', 'Ферганский ŠŸŠ¾Š»ŠøŃ‚ехнический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29511, 25412, 'uz', 'name', 'Fargʻona politexnika instituti'),
(29512, 25413, 'fr', 'name', 'Ɖcole d''Informatique, d''Ɖlectronique et d''Expertise Comptable'),
(29513, 25414, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų„ŲØ'),
(29514, 25414, 'en', 'name', 'Ibb University'),
(29515, 25415, 'en', 'name', 'North Carolina Wildlife Resources Commission'),
(29516, 25416, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الحصن'),
(29517, 25416, 'en', 'name', 'Alhosn University'),
(29518, 25417, 'en', 'name', 'Ural Law Institute Russian Ministry of Internal Affairs'),
(29519, 25417, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29520, 25418, 'en', 'name', 'Adirondack Museum'),
(29521, 25419, 'no_lang_code', 'name', 'MBT Metal (Czechia)'),
(29522, 25420, 'en', 'name', 'Alaska Fisheries Development Foundation'),
(29523, 25421, 'en', 'name', 'Riverside Metropolitan Museum'),
(29524, 25422, 'en', 'name', 'Daejeon Catholic University'),
(29525, 25423, 'en', 'name', 'Baba Ghulam Shah Badshah University'),
(29526, 25423, 'hi', 'name', 'बाबा ą¤—ą¤¼ą„ą¤²ą¤¾ą¤® शाह बादशाह ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(29527, 25423, 'ur', 'name', 'ŲØŲ§ŲØŲ§ ŲŗŁŁ„Ų§Ł… ؓاہ بادؓاہ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(29528, 25424, 'en', 'name', 'Fort Ross Conservancy'),
(29529, 25425, 'en', 'name', 'Birmingham Civil Rights Institute'),
(29530, 25426, 'ja', 'name', 'ę¾å±±ę±é›²å„³å­å¤§å­¦'),
(29531, 25426, 'no_lang_code', 'name', 'Matsuyama Shinonome College'),
(29532, 25427, 'en', 'name', 'Daegu Technical University'),
(29533, 25427, 'ko', 'name', 'ėŒ€źµ¬ź³µģ—…ėŒ€ķ•™źµ'),
(29534, 25428, 'en', 'name', 'Budapest Contemporary Dance Academy'),
(29535, 25428, 'hu', 'name', 'Budapest KortĆ”rstĆ”nc Főiskola'),
(29536, 25429, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų±Ų§ŲØŲ±ŁŠŁ†'),
(29537, 25429, 'en', 'name', 'University of Raparin'),
(29538, 25430, 'no_lang_code', 'name', 'Exbio (Czechia)'),
(29539, 25431, 'en', 'name', 'Portland Museum'),
(29540, 25432, 'en', 'name', 'Frank Lloyd Wright Trust'),
(29541, 25433, 'en', 'name', 'Defiant Requiem Foundation'),
(29542, 25434, 'en', 'name', 'Fakir Mohan University'),
(29543, 25435, 'en', 'name', 'Onomichi City University'),
(29544, 25435, 'ja', 'name', '尾道市立大学'),
(29545, 25436, 'en', 'name', 'Japanese Red Cross College of Nursing'),
(29546, 25436, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ēœ‹č­·å¤§å­¦'),
(29547, 25437, 'en', 'name', 'Almetyevsk State Oil Institute'),
(29548, 25437, 'ru', 'name', 'ŠŠ»ŃŒŠ¼ŠµŃ‚ŃŒŠµŠ²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29549, 25438, 'az', 'name', 'Azərbaycan Universiteti'),
(29550, 25438, 'en', 'name', 'Azerbaijan University');
INSERT INTO `ror_settings` VALUES
(29551, 25439, 'en', 'name', 'Samara State University of Social Sciences and Education'),
(29552, 25439, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29553, 25440, 'en', 'name', 'Arizona State Museum'),
(29554, 25441, 'en', 'name', 'Pandit Deendayal Upadhyaya Shekhawati University'),
(29555, 25441, 'hi', 'name', 'पंऔित ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤‰ą¤Ŗą¤¾ą¤§ą„ą¤Æą¤¾ą¤Æ ą¤¶ą„‡ą¤–ą¤¾ą¤µą¤¾ą¤Ÿą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29556, 25442, 'en', 'name', 'Institute of State and Law'),
(29557, 25442, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²Š° Šø права Российской акаГемии наук'),
(29558, 25443, 'en', 'name', 'Portland Art Museum'),
(29559, 25444, 'en', 'name', 'Institut Pertanian Malang'),
(29560, 25445, 'en', 'name', 'Lipeck Ecology-Humanitarian Institute'),
(29561, 25445, 'ru', 'name', 'Липецкий ŃŠŗŠ¾Š»Š¾Š³Š¾-Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29562, 25446, 'en', 'name', 'Peres Academic Center'),
(29563, 25446, 'he', 'name', '×”×ž×Ø×›×– האקדמי ×¤×Ø×”ā€Ž'),
(29564, 25447, 'en', 'name', 'Iakob Gogebashvili Telavi State University'),
(29565, 25447, 'ka', 'name', 'įƒ˜įƒįƒ™įƒįƒ‘ įƒ’įƒįƒ’įƒ”įƒ‘įƒįƒØįƒ•įƒ˜įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ—įƒ”įƒšįƒįƒ•įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ¢įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(29566, 25448, 'en', 'name', 'Deep Springs College'),
(29567, 25449, 'en', 'name', 'Unity Productions Foundation'),
(29568, 25450, 'en', 'name', 'Kotarbinski University of Information Technology and Management in Olsztyn'),
(29569, 25451, 'en', 'name', 'International Balkan University'),
(29570, 25452, 'en', 'name', 'Russian New University'),
(29571, 25453, 'en', 'name', 'Hanoi Open University'),
(29572, 25453, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Mở HĆ  Nį»™i'),
(29573, 25454, 'id', 'name', 'Universitas Sunan Giri'),
(29574, 25455, 'en', 'name', 'H.S. Skovoroda Kharkiv National Pedagogical University'),
(29575, 25455, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ДковороГы'),
(29576, 25455, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š“Ń€ŠøŠ³Š¾Ń€Ń–Ń ДковороГи'),
(29577, 25456, 'en', 'name', 'Marine Mammal Stranding Center'),
(29578, 25457, 'en', 'name', 'Brunswick-Glynn County Library'),
(29579, 25458, 'en', 'name', 'Morton Museum'),
(29580, 25459, 'en', 'name', 'Vologda State Milk Academy named after NV Vereshchagina'),
(29581, 25460, 'cs', 'name', 'Ústav ArcheologickĆ© PamĆ”tkovĆ© PĆ©Äe StřednĆ­ch Čech'),
(29582, 25461, 'en', 'name', 'National College of Arts'),
(29583, 25461, 'ur', 'name', 'Ł†ŪŒŲ“Ł†Ł„ کالج آف آرٹس'),
(29584, 25462, 'en', 'name', 'Nizhny Novgorod Commercial Institute'),
(29585, 25462, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ коммерческий ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29586, 25463, 'en', 'name', 'Gulf of Alaska Coastal Communities Coalition'),
(29587, 25464, 'en', 'name', 'Kent State University at Stark'),
(29588, 25465, 'en', 'name', 'West Pomeranian Business School in Szczecin'),
(29589, 25465, 'pl', 'name', 'Zachodniopomorska Szkoła Biznesu w Szczecinie'),
(29590, 25466, 'no_lang_code', 'name', 'Invos (Czechia)'),
(29591, 25467, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أما Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ų§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(29592, 25467, 'en', 'name', 'AMA International University'),
(29593, 25468, 'no_lang_code', 'name', 'Hexagon (Czechia)'),
(29594, 25469, 'en', 'name', 'Dallas Public Library'),
(29595, 25470, 'en', 'name', 'High Museum of Art'),
(29596, 25471, 'en', 'name', 'Fruitlands Museum'),
(29597, 25472, 'en', 'name', 'Historic Macon Foundation'),
(29598, 25473, 'en', 'name', 'Sakhalin State University'),
(29599, 25473, 'ru', 'name', 'Дахалинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29600, 25474, 'en', 'name', 'Kuzbass Institute of Economics and Law'),
(29601, 25474, 'ru', 'name', 'Кузбасский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(29602, 25475, 'cs', 'name', 'PodnikatelskĆ© InovačnĆ­ Centrum'),
(29603, 25475, 'no_lang_code', 'name', 'Business Innovation Centre (Czechia)'),
(29604, 25476, 'en', 'name', 'Kidscommons Columbus Community Children''s Museum'),
(29605, 25477, 'en', 'name', 'Volgograd State Pedagogical University'),
(29606, 25477, 'ru', 'name', 'ВолгограГский Š³Š¾ŃŃƒŠ“арственный ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29607, 25478, 'en', 'name', 'Kagawa Prefectural College of Health Sciences'),
(29608, 25478, 'ja', 'name', 'é¦™å·ēœŒē«‹äæå„åŒ»ē™‚å¤§å­¦'),
(29609, 25479, 'en', 'name', 'Africa Center'),
(29610, 25480, 'no_lang_code', 'name', 'CKD Blansko Engineering (Czechia)'),
(29611, 25481, 'en', 'name', 'Volgograd State Academy of Physical Culture'),
(29612, 25481, 'ru', 'name', 'Š’Š¾Š»Š³Š¾Š³Ń€Š°Š“ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(29613, 25482, 'en', 'name', 'John Wesley Theological College'),
(29614, 25482, 'hu', 'name', 'Wesley JĆ”nos LelkĆ©szkĆ©pző Főiskola'),
(29615, 25483, 'en', 'name', 'Bohol Island State University'),
(29616, 25484, 'id', 'name', 'Universitas Satyagama'),
(29617, 25485, 'en', 'name', 'University of Asia and the Pacific'),
(29618, 25485, 'tl', 'name', 'Pamantasan ng Asya at Pasipiko'),
(29619, 25486, 'en', 'name', 'Indus University'),
(29620, 25486, 'ur', 'name', 'Ų§Ł†ŚŠŲ³ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(29621, 25487, 'en', 'name', 'School of International Relations'),
(29622, 25487, 'fa', 'name', 'دانؓکده روابط ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ وزارت Ų§Ł…ŁˆŲ± Ų®Ų§Ų±Ų¬Ł‡ā€Ž'),
(29623, 25488, 'de', 'name', 'Leibniz-Institut für Deutsche Sprache'),
(29624, 25488, 'en', 'name', 'Leibniz Institute for the German Language'),
(29625, 25489, 'en', 'name', 'WTVS Detroit Public Television'),
(29626, 25490, 'en', 'name', 'Ulyanovsk State Pedagogical University Named After I. Ulyanov'),
(29627, 25490, 'ru', 'name', 'Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. Š. Š£Š»ŃŒŃŠ½Š¾Š²Š°'),
(29628, 25491, 'en', 'name', 'National Symphony Orchestra'),
(29629, 25492, 'en', 'name', 'McArthur Public Library'),
(29630, 25493, 'ko', 'name', 'ė™ģ–‘ėÆøėž˜ėŒ€ķ•™źµ'),
(29631, 25493, 'no_lang_code', 'name', 'Dongyang Mirae University'),
(29632, 25494, 'no_lang_code', 'name', 'Euroalarm (Czechia)'),
(29633, 25495, 'en', 'name', 'Sugino Fashion College'),
(29634, 25495, 'ja', 'name', 'ę‰é‡Žęœé£¾å¤§å­¦'),
(29635, 25496, 'en', 'name', 'American Jewish Archives'),
(29636, 25497, 'en', 'name', 'Northwest Indian Fisheries Commission'),
(29637, 25498, 'en', 'name', 'Sher-e-Kashmir University of Agricultural Sciences and Technology of Kashmir'),
(29638, 25498, 'hi', 'name', 'ą¤¶ą„‡ą¤°-ą¤-ą¤•ą¤¶ą„ą¤®ą„€ą¤° ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29639, 25499, 'en', 'name', 'Saint Mary''s University'),
(29640, 25500, 'en', 'name', 'John Paul the Great Catholic University'),
(29641, 25501, 'en', 'name', 'Voronezh State Academy of Arts'),
(29642, 25501, 'ru', 'name', 'Š’Š¾Ń€Š¾Š½ŠµŠ¶ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(29643, 25502, 'en', 'name', 'University of Business and Administration in Gdynia'),
(29644, 25502, 'pl', 'name', 'Wyższa Szkoła Administracji i Biznesu im. Eugeniusza Kwiatkowskiego w Gdyni'),
(29645, 25503, 'en', 'name', 'Hawaii Nature Center'),
(29646, 25504, 'en', 'name', 'Russian Institute of Theatre Arts'),
(29647, 25504, 'ru', 'name', 'Российский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠøŃŠŗŃƒŃŃŃ‚Š²Š°'),
(29648, 25505, 'en', 'name', 'Baekseok Culture University'),
(29649, 25505, 'ko', 'name', 'ė°±ģ„ė¬øķ™”ėŒ€ķ•™źµ'),
(29650, 25506, 'en', 'name', 'Shuya State Pedagogical University'),
(29651, 25506, 'ru', 'name', 'Шуйский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(29652, 25507, 'no_lang_code', 'name', 'Satturn HoleŔov (Czechia)'),
(29653, 25508, 'en', 'name', 'Chicago Humanities Festival'),
(29654, 25509, 'en', 'name', 'Northland Community and Technical College'),
(29655, 25510, 'en', 'name', 'John Jermain Memorial Library'),
(29656, 25511, 'en', 'name', 'University of Maryland Baltimore Washington Medical Center'),
(29657, 25512, 'en', 'name', 'Buryat State Academy of Agriculture'),
(29658, 25512, 'ru', 'name', 'Š‘ŃƒŃ€ŃŃ‚ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(29659, 25513, 'en', 'name', 'Far-Eastern Academy of Public Service'),
(29660, 25513, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹'),
(29661, 25514, 'en', 'name', 'University of the Philippines Open University'),
(29662, 25515, 'no_lang_code', 'name', 'LučebnĆ­ ZĆ”vody Draslovka (Czechia)'),
(29663, 25516, 'en', 'name', 'Bac Ha International University'),
(29664, 25516, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Quốc tįŗæ BįŗÆc HĆ '),
(29665, 25517, 'no_lang_code', 'name', 'Applus+ IDIADA (Czechia)'),
(29666, 25518, 'en', 'name', 'Caucasus Academic Centre'),
(29667, 25519, 'id', 'name', 'Institut Teknologi Minaesa'),
(29668, 25520, 'en', 'name', 'Society for Classical Studies'),
(29669, 25521, 'en', 'name', 'Bass Museum'),
(29670, 25522, 'en', 'name', 'Washington Performing Arts'),
(29671, 25523, 'en', 'name', 'Association for Documentary Editing'),
(29672, 25524, 'en', 'name', 'Aletheia University'),
(29673, 25524, 'zh', 'name', 'ēœŸē†å¤§å­ø'),
(29674, 25525, 'en', 'name', 'Digital Hollywood University'),
(29675, 25525, 'ja', 'name', 'ćƒ‡ć‚øć‚æćƒ«ćƒćƒŖć‚¦ćƒƒćƒ‰å¤§å­¦'),
(29676, 25526, 'en', 'name', 'Tabriz Islamic Arts University'),
(29677, 25526, 'fa', 'name', 'دانؓگاه هنر Ų§Ų³Ł„Ų§Ł…ŪŒ تبریز'),
(29678, 25527, 'id', 'name', 'Universitas Bhayangkara Jakarta Raya'),
(29679, 25528, 'no_lang_code', 'name', 'Medtec VOP (Czechia)'),
(29680, 25529, 'en', 'name', 'Heisei College of Music'),
(29681, 25529, 'ja', 'name', '平成音愽大学'),
(29682, 25530, 'en', 'name', 'Shahid Sattari University of Aeronautical Engineering'),
(29683, 25530, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† Ł‡ŁˆŲ§ŪŒŪŒ Ų“Ł‡ŪŒŲÆ ستاری'),
(29684, 25531, 'en', 'name', 'Durham Museum'),
(29685, 25532, 'id', 'name', 'Institut Kesenian Makassar'),
(29686, 25533, 'en', 'name', 'Ulyanovsk State Technical University'),
(29687, 25533, 'ru', 'name', 'Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29688, 25534, 'no_lang_code', 'name', 'Sand Team (Czechia)'),
(29689, 25535, 'en', 'name', 'Rise Adventures'),
(29690, 25536, 'no_lang_code', 'name', 'Tesla Blatna (Czechia)'),
(29691, 25537, 'en', 'name', 'China Foreign Affairs University'),
(29692, 25537, 'zh', 'name', '外交学院'),
(29693, 25538, 'en', 'name', 'National Italian American Foundation'),
(29694, 25539, 'no_lang_code', 'name', 'PoličskĆ© StrojĆ­rny (Czechia)'),
(29695, 25540, 'en', 'name', 'Rybinsk State Aviation Technological Academy'),
(29696, 25541, 'en', 'name', 'Asia Pacific International University, Asia-Pacific International University'),
(29697, 25541, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ą¹€ąø­ą¹€ąøŠąøµąø¢-ą¹ąø›ąø‹ąø“ąøŸąø“ąø'),
(29698, 25542, 'no_lang_code', 'name', 'Zasagt Khan institute'),
(29699, 25543, 'en', 'name', 'Seoul Theological University'),
(29700, 25543, 'ko', 'name', 'ģ„œģšøģ‹ ķ•™ėŒ€ķ•™źµ'),
(29701, 25544, 'en', 'name', 'Arunai Engineering College'),
(29702, 25544, 'ta', 'name', 'ą®…ą®°ąÆą®£ąÆˆ ą®ŖąÆ†ą®¾ą®±ą®æą®Æą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(29703, 25545, 'no_lang_code', 'name', 'Edip (Czechia)'),
(29704, 25546, 'id', 'name', 'Institut Ilmu Kesehatan Bhakti Wiyata'),
(29705, 25547, 'en', 'name', 'Moffatt-Ladd House and Garden'),
(29706, 25548, 'en', 'name', 'British University in Dubai'),
(29707, 25549, 'en', 'name', 'Dr. C. V. Raman University'),
(29708, 25549, 'hi', 'name', 'ą¤”ą„‰. ą¤øą„€.ą¤µą„€. रमन ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29709, 25550, 'en', 'name', 'Museum of the City of New York'),
(29710, 25551, 'en', 'name', 'Indira Gandhi Agricultural University'),
(29711, 25551, 'hi', 'name', 'इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29712, 25552, 'en', 'name', 'Namangan Engineering Pedagogical Institute'),
(29713, 25552, 'uz', 'name', 'Namangan muhandislik-pedagogika instituti'),
(29714, 25553, 'en', 'name', 'Lake Simcoe Region Conservation Authority'),
(29715, 25554, 'en', 'name', 'National History Day'),
(29716, 25555, 'en', 'name', 'Mount Vernon Hotel Museum & Garden'),
(29717, 25556, 'en', 'name', 'Bitlis Eren University'),
(29718, 25556, 'tr', 'name', 'Bitlis Eren Üniversitesi'),
(29719, 25557, 'en', 'name', 'Museum of Boulder'),
(29720, 25558, 'ja', 'name', 'åŗƒå³¶å›½éš›å­¦é™¢å¤§å­¦'),
(29721, 25558, 'no_lang_code', 'name', 'Hiroshima Kokusai Gakuin University'),
(29722, 25559, 'en', 'name', 'University of Mindanao'),
(29723, 25559, 'tl', 'name', 'Unibersidad ng Mindanaw'),
(29724, 25560, 'id', 'name', 'Universitas Samawa'),
(29725, 25561, 'en', 'name', 'Sault Ste. Marie Area Public Schools'),
(29726, 25562, 'en', 'name', 'Coonamessett Farm Foundation'),
(29727, 25563, 'en', 'name', 'Cleveland Community College'),
(29728, 25564, 'no_lang_code', 'name', 'Farmet (Czechia)'),
(29729, 25565, 'en', 'name', 'Youngsan University of Son Studies'),
(29730, 25565, 'ko', 'name', 'ģ˜ģ‚°ģ„ ķ•™ėŒ€ķ•™źµ'),
(29731, 25566, 'en', 'name', 'Berkshire Museum'),
(29732, 25567, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ аграрны Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(29733, 25567, 'en', 'name', 'Belarusian State Agrarian Technical University'),
(29734, 25568, 'en', 'name', 'St. Mary''s Seminary and University'),
(29735, 25569, 'en', 'name', 'New York Folklore Society'),
(29736, 25570, 'en', 'name', 'KCRW Foundation'),
(29737, 25571, 'en', 'name', 'Boston Public Library'),
(29738, 25572, 'en', 'name', 'Georgian State University of Subtropical Agriculture'),
(29739, 25572, 'ru', 'name', 'Š“Ń€ŃƒŠ·ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃƒŠ±Ń‚Ń€Š¾ŠæŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(29740, 25573, 'en', 'name', 'Corban University'),
(29741, 25574, 'en', 'name', 'Museum of Fine Arts, Houston'),
(29742, 25574, 'es', 'name', 'Museo de Bellas Artes de Houston'),
(29743, 25574, 'fr', 'name', 'MusƩe des beaux-arts de houston'),
(29744, 25575, 'en', 'name', 'De La Salle Araneta University'),
(29745, 25575, 'tl', 'name', 'Pamantasang De La Salle Araneta'),
(29746, 25576, 'en', 'name', 'Vinnytsia National Technical University'),
(29747, 25576, 'pl', 'name', 'Winnicki Narodowy Uniwersytet Techniczny'),
(29748, 25576, 'uk', 'name', 'Š’Ń–Š½Š½ŠøŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29749, 25577, 'en', 'name', 'Central Academy of Fine Arts'),
(29750, 25577, 'zh', 'name', 'äø­å¤®ē¾ŽęœÆå­¦é™¢'),
(29751, 25578, 'en', 'name', 'Walker Art Center'),
(29752, 25579, 'en', 'name', 'Belgorod State Agricultural University'),
(29753, 25579, 'ru', 'name', 'БелгороГский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29754, 25580, 'en', 'name', 'Riau University'),
(29755, 25580, 'id', 'name', 'Universitas Riau'),
(29756, 25581, 'en', 'name', 'Ingush State University'),
(29757, 25581, 'ru', 'name', 'Ингушский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(29758, 25582, 'en', 'name', 'St. Johnsbury Athenaeum'),
(29759, 25583, 'en', 'name', 'Moscow Financial Legal Institution'),
(29760, 25583, 'ru', 'name', 'Московский финансово-правовой ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29761, 25584, 'no_lang_code', 'name', 'Novosibirsk Humanitarian Institute'),
(29762, 25584, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29763, 25585, 'en', 'name', 'Rayalaseema University'),
(29764, 25585, 'te', 'name', 'రాయలసీమ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(29765, 25586, 'ja', 'name', 'ę–°ę½Ÿé’é™µå¤§å­¦'),
(29766, 25586, 'no_lang_code', 'name', 'Niigata Seiryo University'),
(29767, 25587, 'en', 'name', 'Museum of Fine Arts, Boston'),
(29768, 25588, 'no_lang_code', 'name', 'Museum of Casa Grande'),
(29769, 25589, 'en', 'name', 'Krasnoyarsk State Pedagogical University'),
(29770, 25589, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29771, 25590, 'en', 'name', 'Kansai University of International Studies'),
(29772, 25590, 'ja', 'name', 'é–¢č„æå›½éš›å¤§å­¦'),
(29773, 25591, 'en', 'name', 'New Bedford Whaling Museum'),
(29774, 25592, 'en', 'name', 'Kanazawa College of Art'),
(29775, 25592, 'ja', 'name', 'é‡‘ę²¢ē¾Žč”“å·„čŠøå¤§å­¦'),
(29776, 25593, 'en', 'name', 'Khyber Medical University'),
(29777, 25593, 'ur', 'name', 'جامعہ طبی Ų®ŪŒŲØŲ±ā€¬ā€Ž'),
(29778, 25594, 'en', 'name', 'International Research & Exchanges Board'),
(29779, 25595, 'fr', 'name', 'UniversitƩ Internationale de Casablanca'),
(29780, 25596, 'en', 'name', 'Cazenovia College'),
(29781, 25597, 'en', 'name', 'U15 Group of Canadian Research Universities'),
(29782, 25598, 'no_lang_code', 'name', 'PortƔl (Czechia)'),
(29783, 25599, 'en', 'name', 'Wyoming State Archives'),
(29784, 25600, 'no_lang_code', 'name', 'SIGMA Výzkumný a Vývojový Ústav (Czechia)'),
(29785, 25601, 'en', 'name', 'Cambridge Public School'),
(29786, 25602, 'no_lang_code', 'name', 'Romotop (Czechia)'),
(29787, 25603, 'en', 'name', 'Gyeongju University'),
(29788, 25603, 'ko', 'name', 'ź²½ģ£¼ėŒ€ķ•™źµ'),
(29789, 25604, 'en', 'name', 'Lodz International Studies Academy'),
(29790, 25604, 'pl', 'name', 'Wyższa Szkoła Studiów Międzynarodowych w Łodzi'),
(29791, 25605, 'en', 'name', 'Institute of Management and Business'),
(29792, 25605, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента Šø бизнеса'),
(29793, 25606, 'en', 'name', 'Otaru University of Commerce'),
(29794, 25606, 'ja', 'name', 'å°ęØ½å•†ē§‘å¤§å­¦'),
(29795, 25607, 'en', 'name', 'Historians of Netherlandish Art'),
(29796, 25608, 'en', 'name', 'Saint-Petersburg State University of Telecommunications'),
(29797, 25608, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹ имени проф. М. А. Бонч-Š‘Ń€ŃƒŠµŠ²ŠøŃ‡Š°'),
(29798, 25609, 'en', 'name', 'University of St. La Salle'),
(29799, 25610, 'no_lang_code', 'name', 'Vongchavalitkul University'),
(29800, 25610, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø§ąø‡ąø©ą¹ŒąøŠąø§ąø„ąø“ąø•ąøąøøąø„'),
(29801, 25611, 'en', 'name', 'Franklin County Historical and Museum Society'),
(29802, 25612, 'en', 'name', 'Historical Society of Rockland County'),
(29803, 25613, 'en', 'name', 'Vietnam University of Fine Arts'),
(29804, 25613, 'fr', 'name', 'Ɖcole des beaux-arts du viĆŖt nam'),
(29805, 25613, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Mỹ thuįŗ­t Việt Nam'),
(29806, 25614, 'id', 'name', 'Universitas Widya Dharma Klaten'),
(29807, 25615, 'en', 'name', 'Lalit Narayan Mithila University'),
(29808, 25615, 'hi', 'name', 'ललित नारायण मिऄिला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29809, 25616, 'en', 'name', 'Confederation of Industry of the Czech Republic'),
(29810, 25617, 'en', 'name', 'Xi''an Physical Education University'),
(29811, 25617, 'zh', 'name', '脿安体育学院'),
(29812, 25618, 'no_lang_code', 'name', 'Damodaram Sanjivayya National Law University'),
(29813, 25618, 'te', 'name', 'దామోదరం ą°øą°‚ą°œą±€ą°µą°Æą±ą°Æ ą°œą°¾ą°¤ą±€ą°Æ లా ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(29814, 25619, 'en', 'name', 'Bunka Fashion Graduate University'),
(29815, 25619, 'ja', 'name', 'ę–‡åŒ–ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³å¤§å­¦é™¢å¤§å­¦'),
(29816, 25620, 'bs', 'name', 'Univerzitet Donja Gorica'),
(29817, 25620, 'en', 'name', 'University of Donja Gorica'),
(29818, 25620, 'sr', 'name', 'Универзитет Š”Š¾ŃšŠ° Горица'),
(29819, 25621, 'en', 'name', 'Mircea cel Batran Naval Academy'),
(29820, 25621, 'ro', 'name', 'Academia Navală Mircea cel Bătrân'),
(29821, 25622, 'en', 'name', 'Dadabhoy Institute of Higher Education'),
(29822, 25622, 'ur', 'name', 'ŲÆŲ§ŲÆŲ§Ś€ŁˆŲ¦ŁŠ Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف Ł‡Ų§Ų¦ŁŠŲ± Ų§ŁŠŲ¬ŁˆŚŖŁŠŲ“Ł†'),
(29823, 25623, 'en', 'name', 'Virginia Aquarium & Marine Science Center'),
(29824, 25624, 'en', 'name', 'Gujarat National Law University'),
(29825, 25625, 'en', 'name', 'Kellogg Community College'),
(29826, 25626, 'en', 'name', 'Voronezh Institute of Economics and Social Management'),
(29827, 25626, 'ru', 'name', 'Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(29828, 25627, 'be', 'name', 'Віцебскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Š°Š»Š°Š³Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(29829, 25627, 'en', 'name', 'Vitebsk State Technological University'),
(29830, 25627, 'ru', 'name', 'Витебский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29831, 25628, 'en', 'name', 'The Ohio State University at Lima'),
(29832, 25629, 'id', 'name', 'Institut Seni Indonesia Padangpanjang'),
(29833, 25630, 'en', 'name', 'Chappaqua Central School District'),
(29834, 25631, 'en', 'name', 'Stockholm School of Economics in Riga'),
(29835, 25631, 'lt', 'name', 'Stokholmo ekonomikos aukŔtoji mokykla Rygoje'),
(29836, 25631, 'lv', 'name', 'Rīgas Ekonomikas augstskola'),
(29837, 25632, 'en', 'name', 'Getty Research Institute'),
(29838, 25633, 'en', 'name', 'Chicago Metro History Education Center'),
(29839, 25634, 'en', 'name', 'Mongolian National University'),
(29840, 25634, 'mn', 'name', 'Монгол Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(29841, 25635, 'en', 'name', 'EarthCorps'),
(29842, 25636, 'en', 'name', 'California Historical Society'),
(29843, 25637, 'id', 'name', 'Universitas Majalengka'),
(29844, 25638, 'en', 'name', 'Mercu Buana University'),
(29845, 25638, 'id', 'name', 'Universitas Mercu Buana'),
(29846, 25639, 'en', 'name', 'Association for Public Art'),
(29847, 25640, 'en', 'name', 'Center for Independent Documentary'),
(29848, 25641, 'ar', 'name', 'ŁƒŁ„ŁŠŁ‘Ų§ŲŖ Ų§Ł„ŲŖŁ‚Ł†ŁŠŁ‘Ų© Ų§Ł„Ų¹Ł„ŁŠŲ§'),
(29849, 25641, 'en', 'name', 'Higher Colleges of Technology'),
(29850, 25642, 'en', 'name', 'Ypsilanti District Library'),
(29851, 25643, 'de', 'name', 'PƤpstliche UniversitƤt der Salesianer'),
(29852, 25643, 'en', 'name', 'Salesian Pontifical University'),
(29853, 25643, 'fr', 'name', 'UniversitƩ pontificale salƩsienne'),
(29854, 25643, 'it', 'name', 'UniversitĆ  Pontificia Salesiana'),
(29855, 25644, 'en', 'name', 'St. Petersburg Institute of Jewish Studies'),
(29856, 25644, 'ru', 'name', 'ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ИуГаики'),
(29857, 25645, 'en', 'name', 'Rolling Hills Library'),
(29858, 25646, 'ro', 'name', 'Universitatea Danubius Galati'),
(29859, 25647, 'no_lang_code', 'name', 'Camea (Czechia)'),
(29860, 25648, 'en', 'name', 'Hanyang Women''s University'),
(29861, 25648, 'ko', 'name', 'ķ•œģ–‘ģ—¬ģžėŒ€ķ•™źµ'),
(29862, 25649, 'en', 'name', 'Petroleum University of Technology'),
(29863, 25649, 'fa', 'name', 'دانؓگاه صنعت نفت'),
(29864, 25650, 'no_lang_code', 'name', 'Pskov Volny Institute'),
(29865, 25650, 'ru', 'name', 'Псковский Š’Š¾Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(29866, 25651, 'en', 'name', 'University Hospital'),
(29867, 25652, 'en', 'name', 'Bostonian Society'),
(29868, 25653, 'en', 'name', 'Ibaraki Christian University'),
(29869, 25653, 'ja', 'name', 'čŒØåŸŽć‚­ćƒŖć‚¹ćƒˆę•™å¤§å­¦'),
(29870, 25654, 'en', 'name', 'Sendai University'),
(29871, 25654, 'ja', 'name', '仙台大学'),
(29872, 25655, 'en', 'name', 'Poplar Forest'),
(29873, 25656, 'en', 'name', 'Florida State College at Jacksonville'),
(29874, 25657, 'en', 'name', 'Pueblo of Pojoaque'),
(29875, 25658, 'bg', 'name', 'Š’ŠøŃŃˆŠµ строително ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ "Š›ŃŽŠ±ŠµŠ½ ŠšŠ°Ń€Š°Š²ŠµŠ»Š¾Š²"'),
(29876, 25658, 'en', 'name', 'University of Structural Engineering and Architecture Lyuben Karavelov'),
(29877, 25659, 'cs', 'name', 'TechnickĆ© muzeum v Brně'),
(29878, 25659, 'en', 'name', 'Technical museum in Brno'),
(29879, 25660, 'en', 'name', 'Capitol University Medical Center'),
(29880, 25661, 'en', 'name', 'Tangshan College'),
(29881, 25661, 'zh', 'name', '唐山学院'),
(29882, 25662, 'en', 'name', 'Baltimore Museum of Industry'),
(29883, 25663, 'en', 'name', 'American Jewish Committee'),
(29884, 25664, 'en', 'name', 'Almaty Management University'),
(29885, 25664, 'kk', 'name', 'Єалықаралық бизнес Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(29886, 25664, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ бизнеса'),
(29887, 25665, 'en', 'name', 'Peter Yegen Jr. Yellowstone County Museum'),
(29888, 25666, 'en', 'name', 'Ifugao State University'),
(29889, 25666, 'tl', 'name', 'Pamantasang Estado ng Ifugao'),
(29890, 25667, 'as', 'name', 'অসম ą¦”ą¦Øą¦¬ā€™ą¦øą§ą¦•ā€™ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29891, 25667, 'en', 'name', 'Assam Don Bosco University'),
(29892, 25668, 'en', 'name', 'Lushootseed Research'),
(29893, 25669, 'no_lang_code', 'name', 'ISATech (Czechia)'),
(29894, 25670, 'en', 'name', 'Bronx Museum of the Arts'),
(29895, 25671, 'en', 'name', 'Janusz Korczak Pedagogical University in Warsaw'),
(29896, 25671, 'pl', 'name', 'Wyższa Szkoła Pedagogiczna im. Janusza Korczaka w Warszawie'),
(29897, 25672, 'en', 'name', 'Azerbaijan International University'),
(29898, 25673, 'en', 'name', 'St. Louis County Historical Society'),
(29899, 25674, 'en', 'name', 'Asia Euro University'),
(29900, 25674, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ įž¢įž¶įžŸįŸŠįžø įž¢įžŗįžšįŸ‰įž»įž”'),
(29901, 25675, 'en', 'name', 'Newport Public Library'),
(29902, 25676, 'en', 'name', 'Visayas State University'),
(29903, 25677, 'en', 'name', 'Ukrainian National Forestry University'),
(29904, 25677, 'pl', 'name', 'Narodowy Uniwersytet Leśnictwa Ukrainy'),
(29905, 25677, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украины'),
(29906, 25677, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ лісотехнічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ України'),
(29907, 25678, 'en', 'name', 'American Sports University'),
(29908, 25679, 'en', 'name', 'Everglades University'),
(29909, 25680, 'en', 'name', 'Christian Theological Academy in Warsaw'),
(29910, 25680, 'pl', 'name', 'Warsaw Chrześcijańska Akademia Teologiczna w Warszawie'),
(29911, 25681, 'id', 'name', 'Universitas Iba'),
(29912, 25682, 'en', 'name', 'Shaheed Benazir Bhutto Women University'),
(29913, 25682, 'ur', 'name', 'ؓہید ŲØŪ’ Ł†ŲøŪŒŲ± بھٹو ŁˆŪŒŁ…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(29914, 25683, 'no_lang_code', 'name', 'HELP International Corporation (Malaysia)'),
(29915, 25684, 'no_lang_code', 'name', 'Sasol (United Kingdom)'),
(29916, 25685, 'en', 'name', 'Oregon Department of Land Conservation and Development'),
(29917, 25686, 'en', 'name', 'French-American Foundation'),
(29918, 25687, 'en', 'name', 'Hodges University'),
(29919, 25688, 'en', 'name', 'Faculty of Media'),
(29920, 25688, 'sl', 'name', 'Fakulteta za medije'),
(29921, 25689, 'en', 'name', 'Consortium of Universities of the Washington Metropolitan Area'),
(29922, 25690, 'az', 'name', 'Odlar Yurdu Universiteti'),
(29923, 25690, 'en', 'name', 'Odlar Yurdu University'),
(29924, 25691, 'en', 'name', 'Archaeological Conservancy'),
(29925, 25692, 'en', 'name', 'Lugansk National Agrarian University'),
(29926, 25692, 'uk', 'name', 'Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29927, 25693, 'en', 'name', 'International Higher School of Practical Psychology'),
(29928, 25693, 'lv', 'name', 'Starptautiskā Praktiskās Psiholoģijas Augstskola'),
(29929, 25694, 'cs', 'name', 'Observatory and planetarium ČeskĆ© Budějovice and Klet'' Observatory'),
(29930, 25695, 'am', 'name', 'į‹ØįŠ įˆ­į‰£ įˆįŠ•įŒ­ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(29931, 25695, 'en', 'name', 'Arba Minch University'),
(29932, 25696, 'en', 'name', 'Samara State Agrarian University'),
(29933, 25696, 'ru', 'name', 'Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(29934, 25697, 'bn', 'name', 'ą¦•ą§ą¦‡ą¦Øą§ą¦ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(29935, 25697, 'en', 'name', 'Queens University'),
(29936, 25698, 'no_lang_code', 'name', 'Alu Like'),
(29937, 25699, 'en', 'name', 'Charles River Museum of Industry & Innovation'),
(29938, 25700, 'en', 'name', 'American Council for Southern Asian Art'),
(29939, 25701, 'en', 'name', 'New Jersey Historical Society'),
(29940, 25702, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦”ą§‡ą¦­ą¦²ą¦Ŗą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦…ą¦²ą§ą¦Ÿą¦¾ą¦°ą¦Øą§‡ą¦Ÿą¦æą¦­'),
(29941, 25702, 'en', 'name', 'University of Development Alternative'),
(29942, 25703, 'en', 'name', 'University of Ragusa'),
(29943, 25703, 'it', 'name', 'UniversitĆ  di Ragusa'),
(29944, 25704, 'en', 'name', 'Strawbery Banke Museum'),
(29945, 25705, 'en', 'name', 'Bezalel Academy of Arts and Design'),
(29946, 25705, 'he', 'name', 'בצלאל, אקדמיה ×œ××ž× ×•×Ŗ ועיצוב'),
(29947, 25706, 'id', 'name', 'Institut Bisnis Nusantara'),
(29948, 25707, 'no_lang_code', 'name', 'Foton (Czechia)'),
(29949, 25708, 'no_lang_code', 'name', 'Pfeiffer Vacuum (France)'),
(29950, 25709, 'en', 'name', 'Baltic International Institute of Tourism'),
(29951, 25709, 'ru', 'name', 'Балтийский Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(29952, 25710, 'en', 'name', 'Barrington Public Library'),
(29953, 25711, 'no_lang_code', 'name', 'Debiopharm Group (Canada)'),
(29954, 25712, 'no_lang_code', 'name', 'Zetor (Czechia)'),
(29955, 25713, 'hu', 'name', 'GĆ”l Ferenc Főiskola'),
(29956, 25714, 'en', 'name', 'North Sumatra Islamic University'),
(29957, 25714, 'id', 'name', 'Universitas Islam Sumatera Utara'),
(29958, 25715, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ لل؄دارة العامة'),
(29959, 25715, 'en', 'name', 'National Institute of Public Administration'),
(29960, 25716, 'en', 'name', 'Ho Chi Minh City Open University'),
(29961, 25716, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Mở ThĆ nh phố Hồ ChĆ­ Minh'),
(29962, 25717, 'en', 'name', 'Adyghe State University'),
(29963, 25717, 'ru', 'name', 'АГыгейский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(29964, 25718, 'en', 'name', 'Ukrainian Academy of Banking of the National Bank of Ukraine'),
(29965, 25718, 'uk', 'name', 'ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠ¾Ń— справи ŠŠ‘Š£'),
(29966, 25719, 'en', 'name', 'Nagoya University of Commerce and Business'),
(29967, 25719, 'ja', 'name', 'åå¤å±‹å•†ē§‘å¤§å­¦'),
(29968, 25720, 'no_lang_code', 'name', 'Samara Medical Institute Reaviz'),
(29969, 25720, 'ru', 'name', 'Дамарский меГицинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Reavis'),
(29970, 25721, 'en', 'name', 'Oregon State University Cascades'),
(29971, 25722, 'en', 'name', 'Montpelier Foundation'),
(29972, 25723, 'en', 'name', 'Prydniprovs’ka State Academy of Civil Engineering and Architecture'),
(29973, 25723, 'uk', 'name', 'ŠŸŃ€ŠøŠ“Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° та Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(29974, 25724, 'en', 'name', 'Chanakya National Law University'),
(29975, 25724, 'hi', 'name', 'ą¤šą¤¾ą¤£ą¤•ą„ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(29976, 25725, 'en', 'name', 'Maikop State Technological University'),
(29977, 25725, 'ru', 'name', 'Майкопский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29978, 25726, 'no_lang_code', 'name', 'Stahl-Zentrum (Germany)'),
(29979, 25727, 'no_lang_code', 'name', 'Eldis Pardubice (Czechia)'),
(29980, 25728, 'en', 'name', 'University of Fairfax'),
(29981, 25729, 'en', 'name', 'St. Louis County Department of Parks and Recreation'),
(29982, 25730, 'en', 'name', 'National Institute of Business'),
(29983, 25730, 'km', 'name', 'įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įž‡įž¶įžįž·įž–įž¶įžŽįž·įž‡įŸ’įž‡įžŸįž¶įžŸįŸ’įžšįŸ’įžŠ'),
(29984, 25731, 'id', 'name', 'Universitas Ichsan Gorontalo'),
(29985, 25732, 'en', 'name', 'Technological University of the Philippines'),
(29986, 25732, 'tl', 'name', 'Teknolohikal na Unibersidad ng Pilipinas'),
(29987, 25733, 'no_lang_code', 'name', 'Dormer Pramet Tools (Czechia)'),
(29988, 25734, 'en', 'name', 'Tajik State University of Commerce'),
(29989, 25734, 'ru', 'name', 'ТаГжикский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ коммерции'),
(29990, 25734, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии тиҷорати Тоҷикистон'),
(29991, 25735, 'en', 'name', 'Marist School'),
(29992, 25736, 'en', 'name', 'Cure 4 The Kids Foundation'),
(29993, 25737, 'pl', 'name', 'Warszawska Szkoła Zarządzania - Szkoła Wyższa'),
(29994, 25738, 'en', 'name', 'United South End Settlements'),
(29995, 25739, 'en', 'name', 'Moscow University of Finance and Law'),
(29996, 25739, 'ru', 'name', 'Московский финансово-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(29997, 25740, 'en', 'name', 'Academician Yuriy Bugay International Scientific and Technical University'),
(29998, 25740, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ науково-технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені акаГеміка Š®Ń€Ń–я Š‘ŃƒŠ³Š°Ń'),
(29999, 25741, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© طرابلس لبنان'),
(30000, 25741, 'en', 'name', 'University of Tripoli Lebanon'),
(30001, 25742, 'no_lang_code', 'name', 'Kaziranga University'),
(30002, 25743, 'en', 'name', 'University of Bunda Mulia'),
(30003, 25743, 'id', 'name', 'Universitas Bunda Mulia'),
(30004, 25744, 'en', 'name', 'Văn Hiến University'),
(30005, 25744, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Văn Hiįŗæn'),
(30006, 25745, 'en', 'name', 'University of Singaperbangsa Karawang'),
(30007, 25745, 'id', 'name', 'Universitas Singaperbangsa Karawang'),
(30008, 25746, 'id', 'name', 'Universitas Mahendradatta'),
(30009, 25747, 'en', 'name', 'Potato Research Institute'),
(30010, 25748, 'en', 'name', 'American Jewish Historical Society'),
(30011, 25749, 'en', 'name', 'Maine State Museum'),
(30012, 25750, 'en', 'name', 'Modern University for the Humanities'),
(30013, 25750, 'ru', 'name', 'Š”Š¾Š²Ń€ŠµŠ¼ŠµŠ½Š½Š°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30014, 25751, 'en', 'name', 'American World University'),
(30015, 25752, 'en', 'name', 'Fairbanks North Star Borough Library'),
(30016, 25753, 'en', 'name', 'Petro Mohyla Black Sea National University'),
(30017, 25753, 'ru', 'name', 'Черноморский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ŠŸŠµŃ‚ра ŠœŠ¾Š³ŠøŠ»Ń‹'),
(30018, 25753, 'uk', 'name', 'Š§Š¾Ń€Š½Š¾Š¼Š¾Ń€ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠŸŠµŃ‚Ń€Š° Могили'),
(30019, 25754, 'en', 'name', 'North Ossetian State University'),
(30020, 25754, 'ru', 'name', 'Деверо-ŠžŃŠµŃ‚ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. Š›. Š„ŠµŃ‚Š°Š³ŃƒŃ€Š¾Š²Š°'),
(30021, 25755, 'en', 'name', 'International Islamic University College Selangor'),
(30022, 25755, 'ms', 'name', 'Kolej Universiti Islam Antarabangsa Selangor'),
(30023, 25756, 'no_lang_code', 'name', 'CereProc (United Kingdom)'),
(30024, 25757, 'ar', 'name', 'الجامعة Ų§Ł„Ų­ŲÆŁŠŲ«Ų© لل؄دارة ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ…'),
(30025, 25757, 'en', 'name', 'Modern University for Business and Science'),
(30026, 25758, 'id', 'name', 'Universitas 17 Agustus 1945 Jakarta'),
(30027, 25759, 'en', 'name', 'Shizuoka Institute of Science and Technology'),
(30028, 25759, 'ja', 'name', 'é™å²”ē†å·„ē§‘å¤§å­¦'),
(30029, 25760, 'en', 'name', 'Central University of Tibetan Studies'),
(30030, 25761, 'en', 'name', 'Arts and Science Center for Southeast Arkansas'),
(30031, 25762, 'en', 'name', 'Reinhardt University'),
(30032, 25763, 'en', 'name', 'National Association for Equal Opportunity in Higher Education'),
(30033, 25764, 'en', 'name', 'Chicago Public Library'),
(30034, 25764, 'es', 'name', 'Biblioteca PĆŗblica de Chicago'),
(30035, 25765, 'no_lang_code', 'name', 'Rigaku Innovative Technologies Europe (Czechia)'),
(30036, 25766, 'en', 'name', 'Oregon Department of Fish and Wildlife'),
(30037, 25767, 'en', 'name', 'Everson Museum of Art'),
(30038, 25768, 'fr', 'name', 'UniversitƩ Catholique du Graben'),
(30039, 25769, 'en', 'name', 'Pennsylvania Department of Environmental Protection'),
(30040, 25770, 'en', 'name', 'Foundation University'),
(30041, 25771, 'en', 'name', 'Joslyn Art Museum'),
(30042, 25772, 'no_lang_code', 'name', 'Chepos (Czechia)'),
(30043, 25773, 'en', 'name', 'Donetsk National Technical University'),
(30044, 25773, 'pl', 'name', 'Doniecki Narodowy Uniwersytet Techniczny'),
(30045, 25773, 'ru', 'name', 'Донецкий Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30046, 25773, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30047, 25774, 'en', 'name', 'Knox County Public Library'),
(30048, 25775, 'en', 'name', 'ETV Endowment of South Carolina'),
(30049, 25776, 'en', 'name', 'Utsunomiya Kyowa University'),
(30050, 25776, 'ja', 'name', '宇都宮共和大学'),
(30051, 25777, 'en', 'name', 'Concord Museum'),
(30052, 25778, 'en', 'name', 'Shobi University'),
(30053, 25778, 'ja', 'name', 'å°šē¾Žå­¦åœ’å¤§å­¦'),
(30054, 25779, 'en', 'name', 'St. Matthew''s University'),
(30055, 25780, 'no_lang_code', 'name', 'Energie - Stavební a BÔňskÔ (Czechia)'),
(30056, 25781, 'no_lang_code', 'name', 'Trexima (Czechia)'),
(30057, 25782, 'en', 'name', 'Washakie Museum & Cultural Center'),
(30058, 25783, 'en', 'name', 'National Taiwan University of Arts'),
(30059, 25783, 'zh', 'name', 'åœ‹ē«‹č‡ŗē£č—č”“å¤§å­ø'),
(30060, 25784, 'en', 'name', 'St. John''s University'),
(30061, 25784, 'zh', 'name', 'č–ē“„ēæ°ē§‘ęŠ€å¤§å­ø'),
(30062, 25785, 'en', 'name', 'Pratt Museum'),
(30063, 25786, 'en', 'name', 'New Hampshire State Library'),
(30064, 25787, 'en', 'name', 'Shizuoka Sangyo University'),
(30065, 25787, 'ja', 'name', 'é™å²”ē”£ę„­å¤§å­¦'),
(30066, 25788, 'en', 'name', 'George Eastman House'),
(30067, 25789, 'en', 'name', 'Southern Luzon State University'),
(30068, 25790, 'no_lang_code', 'name', 'Vakar (Czechia)'),
(30069, 25791, 'en', 'name', 'Don State Technical University'),
(30070, 25791, 'ru', 'name', 'ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Донской Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30071, 25792, 'en', 'name', 'Neural Stem Cell Institute'),
(30072, 25793, 'no_lang_code', 'name', 'VƭtkovickƩ SlƩvƔrny (Czechia)'),
(30073, 25794, 'en', 'name', 'New Jersey Community College Consortium For Workforce & Economic Development'),
(30074, 25795, 'en', 'name', 'Chuvash State Pedagogical University'),
(30075, 25795, 'ru', 'name', 'Чувашский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. ŠÆ. Яковлева'),
(30076, 25796, 'en', 'name', 'Adamson University'),
(30077, 25796, 'tl', 'name', 'Pamantasang Adamson'),
(30078, 25797, 'en', 'name', 'Pre Columbian Art Research Institute'),
(30079, 25798, 'en', 'name', 'Institute of Natural Sciences and Ecology'),
(30080, 25798, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ естественных наук Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(30081, 25799, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų„Ų±ŲØŲÆ Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(30082, 25799, 'en', 'name', 'Irbid National University'),
(30083, 25800, 'en', 'name', 'Mescalero Apache Tribe'),
(30084, 25801, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤µą„‡ą¤‚ą¤•ą¤Ÿą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(30085, 25801, 'no_lang_code', 'name', 'Shri Venkateshwara University'),
(30086, 25802, 'en', 'name', 'Taungoo University'),
(30087, 25802, 'my', 'name', 'į€į€±į€¬į€„į€ŗį€„į€°į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(30088, 25803, 'no_lang_code', 'name', 'JAP Industries (Czechia)'),
(30089, 25804, 'no_lang_code', 'name', 'Portland Stage (United States)'),
(30090, 25805, 'en', 'name', 'Alice Lloyd College'),
(30091, 25806, 'en', 'name', 'Pacific American Foundation'),
(30092, 25807, 'en', 'name', 'West Los Angeles College'),
(30093, 25808, 'en', 'name', 'Graduate Theological Union'),
(30094, 25809, 'en', 'name', 'Rochester Institute of Technology Kosovo'),
(30095, 25810, 'en', 'name', 'Ave Maria University'),
(30096, 25811, 'en', 'name', 'Kobe Shinwa Women''s University'),
(30097, 25811, 'ja', 'name', 'ē„žęˆøč¦Ŗå’Œå„³å­å¤§å­¦'),
(30098, 25812, 'en', 'name', 'Latvian Maritime Academy'),
(30099, 25812, 'lv', 'name', 'Latvijas Jūras Akadēmija'),
(30100, 25813, 'en', 'name', 'Richard J. Daley College'),
(30101, 25814, 'id', 'name', 'Universitas Bung Karno'),
(30102, 25815, 'en', 'name', 'Somaliland University of Technology'),
(30103, 25815, 'so', 'name', 'Jaamacadda Teknoolajiyadda Somaliland'),
(30104, 25816, 'en', 'name', 'Crimean State Engineering Pedagogical University'),
(30105, 25816, 'ru', 'name', 'ŠšŃ€Ń‹Š¼ŃŠŗŠøŠ¹ инженерно-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30106, 25816, 'uk', 'name', 'ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠøŠ¹ інженерно-пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30107, 25817, 'id', 'name', 'Universitas Nahdlatul Ulama Surakarta'),
(30108, 25818, 'en', 'name', 'Shiraz University of Arts'),
(30109, 25818, 'fa', 'name', 'دانؓگاه هنر ؓیراز'),
(30110, 25819, 'en', 'name', 'Vermont Folklife Center'),
(30111, 25820, 'en', 'name', 'Technological University of Tajikistan'),
(30112, 25820, 'ru', 'name', 'ТаГжикский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. ŠžŃŠøŠ¼Šø'),
(30113, 25820, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø техникии Тоҷикистон ба номи М.ŠžŃŠøŠ¼Ó£'),
(30114, 25821, 'en', 'name', 'Tokyo University of the Arts'),
(30115, 25821, 'ja', 'name', 'ę±äŗ¬čŠøč”“å¤§å­¦'),
(30116, 25822, 'en', 'name', 'Florida International University Alumni Association'),
(30117, 25823, 'en', 'name', 'Karnataka State Dr.Gangubai Hanagal Music and Performing Arts University'),
(30118, 25823, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ಔಾ. ಗಂಗೂಬಾಯಿ ą²¹ą²¾ą²Øą²—ą²²ą³ ಸಂಗೀತ ą²®ą²¤ą³ą²¤ą³ ą²Ŗą³ą²°ą²¦ą²°ą³ą²¶ą²• ಕಲೆಗಳ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(30119, 25824, 'no_lang_code', 'name', 'BD Sensors (Czechia)'),
(30120, 25825, 'en', 'name', 'Eastern Economics and Law Humanities'),
(30121, 25825, 'ru', 'name', 'Š’Š¾ŃŃ‚Š¾Ń‡Š½Š°Ń ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30122, 25826, 'ko', 'name', 'ģ“ˆė‹¹ėŒ€ķ•™źµ'),
(30123, 25826, 'no_lang_code', 'name', 'Chodang University'),
(30124, 25827, 'en', 'name', 'Institute of Technology and Business'),
(30125, 25828, 'en', 'name', 'MUSE Film and Television'),
(30126, 25829, 'no_lang_code', 'name', 'Universal Research Group (Pakistan)'),
(30127, 25830, 'id', 'name', 'Universitas Darussalam Ambon'),
(30128, 25831, 'en', 'name', 'Agora University'),
(30129, 25831, 'ro', 'name', 'Universitatea Agora'),
(30130, 25832, 'en', 'name', 'Donga College of Health'),
(30131, 25832, 'ko', 'name', 'ė™ģ•„ė³“ź±“ėŒ€ķ•™źµ'),
(30132, 25833, 'ja', 'name', '大阪成蹊大学'),
(30133, 25833, 'no_lang_code', 'name', 'Osaka Seikei University'),
(30134, 25834, 'ja', 'name', 'åå¤å±‹ę–‡ē†å¤§å­¦'),
(30135, 25834, 'no_lang_code', 'name', 'Nagoya Bunri University'),
(30136, 25835, 'en', 'name', 'Iliff School of Theology'),
(30137, 25836, 'en', 'name', 'Shin Ansan University'),
(30138, 25836, 'ko', 'name', 'ģ‹ ģ•ˆģ‚°ėŒ€ķ•™źµ'),
(30139, 25837, 'en', 'name', 'Jewish Theological Seminary'),
(30140, 25838, 'en', 'name', 'Magnitogorsk State University'),
(30141, 25838, 'ru', 'name', 'ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30142, 25839, 'en', 'name', 'Kühne Logistics University'),
(30143, 25840, 'en', 'name', 'Russian State Specialized Academy of Arts'),
(30144, 25840, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠæŠµŃ†ŠøŠ°Š»ŠøŠ·ŠøŃ€Š¾Š²Š°Š½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(30145, 25841, 'en', 'name', 'Living History Farms'),
(30146, 25842, 'en', 'name', 'Sokoto State University'),
(30147, 25843, 'en', 'name', 'Auro University'),
(30148, 25844, 'cs', 'name', 'ČeskĆ” lĆ©kařskĆ” společnost Jana Evangelisty Purkyně'),
(30149, 25844, 'en', 'name', 'Czech Medical Association of J.E. Purkyne'),
(30150, 25845, 'en', 'name', 'Songho University'),
(30151, 25845, 'ko', 'name', 'ģ†”ķ˜øėŒ€ķ•™źµ'),
(30152, 25846, 'en', 'name', 'Mattress Factory'),
(30153, 25847, 'en', 'name', 'Omsk State Institute of Service'),
(30154, 25847, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сервиса'),
(30155, 25848, 'en', 'name', 'San Antonio Public Library Foundation'),
(30156, 25849, 'en', 'name', 'University of Puthisastra'),
(30157, 25849, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ā€‹ įž–įž»įž‘įŸ’įž’įž·įžŸįž¶įžŸįŸ’įžįŸ’įžš'),
(30158, 25850, 'en', 'name', 'Moscow Region State University'),
(30159, 25850, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный областной ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30160, 25851, 'en', 'name', 'Carlyle House Historic Park'),
(30161, 25852, 'en', 'name', 'Delaware Department of Natural Resources and Environmental Control'),
(30162, 25853, 'ja', 'name', 'å„ˆč‰Æē”£ę„­å¤§å­¦'),
(30163, 25853, 'no_lang_code', 'name', 'Naragakuen University'),
(30164, 25854, 'en', 'name', 'National University of Pharmacy'),
(30165, 25854, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ фармацевтичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30166, 25855, 'en', 'name', 'Shevchenko Transnistria State University'),
(30167, 25855, 'ro', 'name', 'Universitatea de Stat din Transnistria'),
(30168, 25855, 'ru', 'name', 'ŠŸŃ€ŠøŠ“Š½ŠµŃŃ‚Ń€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Тараса Шевченко'),
(30169, 25856, 'en', 'name', 'Kannur University'),
(30170, 25856, 'ml', 'name', 'ą“•ą“£ąµą“£ąµ‚ąµ¼ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(30171, 25857, 'id', 'name', 'Universitas Tamansiswa, Universitas Tamansiswa Padang'),
(30172, 25858, 'en', 'name', 'Minnesota Public Radio'),
(30173, 25859, 'en', 'name', 'University of Maryland Rehabilitation & Orthopaedic Institute'),
(30174, 25860, 'en', 'name', 'Tama Art University'),
(30175, 25860, 'ja', 'name', 'å¤šę‘©ē¾Žč”“å¤§å­¦'),
(30176, 25861, 'no_lang_code', 'name', 'Archaia Brno (Czechia)'),
(30177, 25862, 'no_lang_code', 'name', 'ENKI (Czechia)'),
(30178, 25863, 'no_lang_code', 'name', 'Daiichi Sankyo (United Kingdom)'),
(30179, 25864, 'en', 'name', 'Karol Szymanowski Academy of Music'),
(30180, 25864, 'pl', 'name', 'Akademia Muzyczna im. Karola Szymanowskiego w Katowicach'),
(30181, 25865, 'en', 'name', 'Omsk State Pedagogical University'),
(30182, 25865, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30183, 25866, 'en', 'name', 'Donbas National Academy of Civil Engineering and Architecture'),
(30184, 25866, 'uk', 'name', 'Š”Š¾Š½Š±Š°ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(30185, 25867, 'en', 'name', 'Hyupsung University'),
(30186, 25867, 'ko', 'name', 'ķ˜‘ģ„±ėŒ€ķ•™źµ'),
(30187, 25868, 'en', 'name', 'Kharkiv State University of Food Technology and Trade'),
(30188, 25868, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŠøŃ‚Š°Š½ŠøŃ Šø торговли'),
(30189, 25868, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń…Š°Ń€Ń‡ŃƒŠ²Š°Š½Š½Ń та торгівлі'),
(30190, 25869, 'en', 'name', 'History Center of Olmsted County'),
(30191, 25870, 'en', 'name', 'Hubei Institute of Fine Arts'),
(30192, 25870, 'zh', 'name', 'ę¹–åŒ—ē¾ŽęœÆå­¦é™¢'),
(30193, 25871, 'en', 'name', 'Kuzbass State Pedagogical Academy'),
(30194, 25871, 'ru', 'name', 'Novokuzneckij Gosudarstvennyj Pedagogičeskij Institut'),
(30195, 25872, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ā€‹įžŸįŸ’įžœįž¶įž™įžšįŸ€įž„'),
(30196, 25872, 'no_lang_code', 'name', 'Svay Rieng University'),
(30197, 25873, 'ja', 'name', '清泉儳学院大学'),
(30198, 25873, 'no_lang_code', 'name', 'Seisen Jogakuin College'),
(30199, 25874, 'cs', 'name', 'Comenius Museum in Přerov, Muzeum KomenskĆ©ho v Přerově'),
(30200, 25875, 'en', 'name', 'Sanyo Gakuen University'),
(30201, 25875, 'ja', 'name', '山陽学園大学'),
(30202, 25876, 'en', 'name', 'Howard County Library System'),
(30203, 25877, 'en', 'name', 'Volgograd Municipal Institute of Arts'),
(30204, 25877, 'ru', 'name', 'Š’Š¾Š»Š³Š¾Š³Ń€Š°Š“ŃŠŗŠ°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени П. А. Š”ŠµŃ€ŠµŠ±Ń€ŃŠŗŠ¾Š²Š° [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(30205, 25878, 'en', 'name', 'Kyrgyz State National University'),
(30206, 25878, 'ky', 'name', 'И.Арабаев атынГагы ŠšŃ‹Ń€Š³Ń‹Š· мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(30207, 25879, 'en', 'name', 'Krasnodar State University of Culture and Arts'),
(30208, 25879, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(30209, 25880, 'cs', 'name', 'Výzkumný Ústav Pletařský'),
(30210, 25880, 'no_lang_code', 'name', 'VUP Medical (Czechia)'),
(30211, 25881, 'en', 'name', 'Kansas City Museum'),
(30212, 25882, 'en', 'name', 'Odessa National Medical University'),
(30213, 25882, 'ru', 'name', 'ŠžŠ“ŠµŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30214, 25882, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30215, 25883, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– ганГлёва-ŃŠŗŠ°Š½Š°Š¼Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ спажывецкай кааперацыі'),
(30216, 25883, 'en', 'name', 'Belarusian Trade-Economic University of Consumer Cooperation'),
(30217, 25884, 'en', 'name', 'Chester County Historical Society'),
(30218, 25885, 'en', 'name', 'Institute of Nuclear Physics'),
(30219, 25886, 'en', 'name', 'Baltimore City Life Museums'),
(30220, 25887, 'en', 'name', 'St. Petersburg University of the Ministry of Internal Affairs of Russia'),
(30221, 25887, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ’Š” России'),
(30222, 25888, 'en', 'name', 'Community Renewal Society'),
(30223, 25889, 'en', 'name', 'Institute for American Indian Studies'),
(30224, 25890, 'en', 'name', 'Moscow Banking Institute'),
(30225, 25890, 'ru', 'name', 'Московский банковский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30226, 25891, 'en', 'name', 'Catticus Corporation'),
(30227, 25892, 'en', 'name', 'Ho Chi Minh City University of Transport');
INSERT INTO `ror_settings` VALUES
(30228, 25892, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Giao thĆ“ng vįŗ­n tįŗ£i ThĆ nh phố Hồ ChĆ­ Minh'),
(30229, 25893, 'en', 'name', 'Changsha University'),
(30230, 25893, 'zh', 'name', '长沙学院'),
(30231, 25894, 'id', 'name', 'Universitas Trunajaya Bontang'),
(30232, 25895, 'en', 'name', 'Barrington Area Historical Society'),
(30233, 25896, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ„Ł…ŁˆŁ† Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(30234, 25896, 'en', 'name', 'Delmon University for Science & Technology'),
(30235, 25897, 'en', 'name', 'Cebu Doctors'' University'),
(30236, 25898, 'en', 'name', 'Federation of State Humanities Councils'),
(30237, 25899, 'en', 'name', 'Iona Senior Services'),
(30238, 25900, 'en', 'name', 'Rizal Technological University'),
(30239, 25901, 'hi', 'name', 'ą¤­ą„‚ą¤Ŗą„‡ą¤‚ą¤¦ą„ą¤° नारायण मंऔल ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(30240, 25901, 'no_lang_code', 'name', 'Bhupendra Narayan Mandal University'),
(30241, 25902, 'en', 'name', 'Maitama Sule University Kano'),
(30242, 25903, 'en', 'name', 'Tamil Nadu Dr. Ambedkar Law University'),
(30243, 25903, 'ta', 'name', 'ą®Ÿą®¾ą®•ąÆą®Ÿą®°ąÆ ą®…ą®®ąÆą®ŖąÆ‡ą®¤ąÆą®•ą®°ąÆ ą®šą®ŸąÆą®Ÿą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(30244, 25904, 'en', 'name', 'Leyte Normal University'),
(30245, 25905, 'en', 'name', 'Ƈankırı Karatekin University'),
(30246, 25905, 'tr', 'name', 'Ƈankırı Karatekin Üniversitesi'),
(30247, 25906, 'en', 'name', 'Otgontenger University'),
(30248, 25906, 'ru', 'name', 'ŠžŃ‚Š³Š¾Š½Ń‚ŃŠ½Š³ŃŃ€ ŠøŃ… ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(30249, 25907, 'en', 'name', 'Sunflower County Library'),
(30250, 25908, 'en', 'name', 'South Dakota Library Association'),
(30251, 25909, 'en', 'name', 'National Fish and Wildlife Foundation'),
(30252, 25910, 'en', 'name', 'National Museum Institute of the History of Art, Conservation and Museology'),
(30253, 25910, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø कला इतिहास, ą¤øą¤‚ą¤°ą¤•ą„ą¤·ą¤£ ą¤ą¤µą¤‚ ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø'),
(30254, 25911, 'en', 'name', 'East Meadow Public Library'),
(30255, 25912, 'en', 'name', 'Terrebonne Parish Library'),
(30256, 25913, 'en', 'name', 'Ipswich Historical Society'),
(30257, 25914, 'en', 'name', 'University of Economics and Innovation'),
(30258, 25914, 'pl', 'name', 'Wyższa Szkoła Ekonomii i Innowacjii w Lublinie'),
(30259, 25915, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦°ą§ą¦­ą¦¾ą¦øą¦æą¦Ÿą¦æ অব লিবারেল ą¦†ą¦°ą§ą¦Ÿą¦ø বাংলাদেশ'),
(30260, 25915, 'en', 'name', 'University of Liberal Arts Bangladesh'),
(30261, 25916, 'en', 'name', 'Papua New Guinea University of Technology'),
(30262, 25917, 'en', 'name', 'Hanoi University of Business and Technology'),
(30263, 25917, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kinh doanh vĆ  CĆ“ng nghệ HĆ  Nį»™i'),
(30264, 25918, 'en', 'name', 'Czech Association of Scientific and Technical Societies'),
(30265, 25919, 'no_lang_code', 'name', 'Variel (Czechia)'),
(30266, 25920, 'hi', 'name', 'Jai Prakash Vishwavidyalaya'),
(30267, 25921, 'en', 'name', 'Malawi Adventist University'),
(30268, 25922, 'cs', 'name', 'RegionĆ”lnĆ­ muzeum ve VysokĆ©m Mýtě, VysokĆ© Mýto Regional Museum'),
(30269, 25923, 'en', 'name', 'Foundation University Islamabad'),
(30270, 25923, 'ur', 'name', 'ŁŲ§Ų¤Ł†ŚˆŪŒŲ“Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ اسلام Ų¢ŲØŲ§ŲÆ'),
(30271, 25924, 'en', 'name', 'Chesapeake Bay Maritime Museum'),
(30272, 25925, 'en', 'name', 'Yangon University of Economics'),
(30273, 25926, 'cs', 'name', 'MuzejnĆ­ a VlastivědnĆ” Společnost v Brně'),
(30274, 25927, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المنار في طرابلس'),
(30275, 25927, 'en', 'name', 'City University'),
(30276, 25928, 'en', 'name', 'Jack Straw Cultural Center'),
(30277, 25929, 'en', 'name', 'Brandman University'),
(30278, 25930, 'en', 'name', 'Tamil Nadu Open University'),
(30279, 25930, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®¤ą®æą®±ą®ØąÆą®¤ą®Øą®æą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(30280, 25931, 'en', 'name', 'Tver State Medical University'),
(30281, 25931, 'ru', 'name', 'Š¢Š²ŠµŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30282, 25932, 'en', 'name', 'Vladikavkaz Institute of Management'),
(30283, 25932, 'ru', 'name', 'ВлаГикавказский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(30284, 25933, 'en', 'name', 'HITEC University'),
(30285, 25934, 'en', 'name', 'University of Medical Technology Yangon'),
(30286, 25935, 'en', 'name', 'Linguistics University of Nizhny Novgorod'),
(30287, 25935, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. А. Š”Š¾Š±Ń€Š¾Š»ŃŽŠ±Š¾Š²Š°'),
(30288, 25936, 'no_lang_code', 'name', 'Tanger computersystems'),
(30289, 25937, 'en', 'name', 'Izmir University'),
(30290, 25937, 'tr', 'name', 'İzmir Üniversitesi'),
(30291, 25938, 'de', 'name', 'Private HanseuniversitƤt'),
(30292, 25938, 'en', 'name', 'Hanseatic University Rostock'),
(30293, 25939, 'id', 'name', 'Universitas Wiralodra'),
(30294, 25940, 'en', 'name', 'East Baton Rouge Parish Library'),
(30295, 25941, 'en', 'name', 'Studio of Ecological Models'),
(30296, 25942, 'en', 'name', 'St James''s University Hospital'),
(30297, 25943, 'ar', 'name', 'جامعـــة ŲØŁ†Ł€Ł€Ł€Ų§ŲÆŲ±ā€Ž'),
(30298, 25943, 'en', 'name', 'Benadir University'),
(30299, 25943, 'so', 'name', 'Jaamacada Banaadir'),
(30300, 25944, 'en', 'name', 'San Francisco Public Library'),
(30301, 25944, 'es', 'name', 'Biblioteca PĆŗblica de San Francisco'),
(30302, 25944, 'fr', 'name', 'BibliothĆØque publique de san francisco'),
(30303, 25945, 'en', 'name', 'Fort Bend Museum'),
(30304, 25946, 'en', 'name', 'Presbyterian Historical Society'),
(30305, 25947, 'en', 'name', 'West Baton Rouge Museum'),
(30306, 25948, 'en', 'name', 'Siberian Institute of Business Management and Psychology'),
(30307, 25948, 'ru', 'name', 'Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø психологии'),
(30308, 25949, 'en', 'name', 'Lafayette Public Library'),
(30309, 25950, 'en', 'name', 'Ukrainian Academy of Printing'),
(30310, 25950, 'ru', 'name', 'Š£ŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ печати'),
(30311, 25950, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š“Ń€ŃƒŠŗŠ°Ń€ŃŃ‚Š²Š°'),
(30312, 25951, 'en', 'name', 'University of Management and Administration in Zamosc'),
(30313, 25951, 'pl', 'name', 'Wyższa Szkoła Zarządzania i Administracji'),
(30314, 25952, 'en', 'name', 'Turkmen State Power Engineering Institute'),
(30315, 25952, 'ru', 'name', 'Türkmenistanyñ Döwlet Energetika Instituty'),
(30316, 25953, 'en', 'name', 'Nagasaki Wesleyan University'),
(30317, 25953, 'ja', 'name', 'é•·å“Žć‚¦ć‚Øć‚¹ćƒ¬ćƒ¤ćƒ³å¤§å­¦'),
(30318, 25954, 'en', 'name', 'OASIS Institute'),
(30319, 25955, 'en', 'name', 'International Teaching University of Georgia'),
(30320, 25955, 'ka', 'name', 'įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ "įƒ’įƒįƒ įƒ’įƒįƒ”įƒįƒšįƒ˜"'),
(30321, 25956, 'en', 'name', 'Swinburne University of Technology Sarawak Campus'),
(30322, 25957, 'en', 'name', 'Dalat University'),
(30323, 25957, 'fr', 'name', 'UniversitƩ de Dalat'),
(30324, 25957, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c ĐƠ Lįŗ”t'),
(30325, 25957, 'zh', 'name', '大叻大学'),
(30326, 25958, 'de', 'name', 'Duale Hochschule Baden-Württemberg Ravensburg'),
(30327, 25958, 'en', 'name', 'Ravensburg University of Cooperative Education'),
(30328, 25959, 'no_lang_code', 'name', 'MSV Systems (Czechia)'),
(30329, 25960, 'en', 'name', 'Robert Morris University Illinois'),
(30330, 25961, 'en', 'name', 'Yelets State University named after Ivan Bunin'),
(30331, 25961, 'ru', 'name', 'Елецкий Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им.И.А. Š‘ŃƒŠ½ŠøŠ½Š°'),
(30332, 25962, 'en', 'name', 'Oryol State University of Economics and Trade'),
(30333, 25962, 'ru', 'name', 'ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø торговли'),
(30334, 25963, 'en', 'name', 'Alice Ferguson Foundation'),
(30335, 25964, 'en', 'name', 'J.C. Bose University of Science & Technology, YMCA'),
(30336, 25965, 'en', 'name', 'Fukuoka Prefectural University'),
(30337, 25965, 'ja', 'name', 'ē¦å²”ēœŒē«‹å¤§å­¦'),
(30338, 25966, 'en', 'name', 'Fairfax County Park Authority'),
(30339, 25967, 'en', 'name', 'Moscow State Mining University'),
(30340, 25967, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный горный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30341, 25968, 'en', 'name', 'Kobe College'),
(30342, 25968, 'ja', 'name', 'ē„žęˆøå„³å­¦é™¢å¤§å­¦'),
(30343, 25969, 'cs', 'name', 'ZdravotnĆ­ Ćŗstav se sĆ­dlem v Ostravě'),
(30344, 25969, 'en', 'name', 'Public Health Institute Ostrava'),
(30345, 25970, 'no_lang_code', 'name', 'Tedom (Czechia)'),
(30346, 25971, 'en', 'name', 'Ural State Forestry Engineering University'),
(30347, 25971, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30348, 25972, 'cs', 'name', 'VlastivědnĆ© Muzeum v Olomouci'),
(30349, 25972, 'en', 'name', 'Regional Museum in Olomouc'),
(30350, 25973, 'en', 'name', 'Imaginarium of South Texas'),
(30351, 25974, 'en', 'name', 'Council of Ontario Universities'),
(30352, 25974, 'fr', 'name', 'Conseil des universitƩs de l''Ontario'),
(30353, 25975, 'en', 'name', 'Moscow State Academy of Water Transport'),
(30354, 25975, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ воГного транспорта'),
(30355, 25976, 'en', 'name', 'Jāzeps Vītols Latvian Academy of Music'),
(30356, 25976, 'lt', 'name', 'Latvijos Jazepo Vytuolio muzikos akademija'),
(30357, 25976, 'lv', 'name', 'Jāzepa Vītola Latvijas Mūzikas akadēmija'),
(30358, 25976, 'ru', 'name', 'Š›Š°Ń‚Š²ŠøŠ¹ŃŠŗŠ°Ń Š¼ŃƒŠ·Ń‹ŠŗŠ°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Язепа Витола'),
(30359, 25977, 'en', 'name', 'President Ramon Magsaysay State University'),
(30360, 25978, 'ar', 'name', 'Ų§ŁˆŲ±Ł†ŁŠŁ…'),
(30361, 25978, 'en', 'name', 'Oranim Academic College of Education'),
(30362, 25978, 'he', 'name', '××•×Ø× ×™× - המכללה ×”××§×“×ž×™×Ŗ לחינוך'),
(30363, 25979, 'en', 'name', 'Santa Barbara Museum of Art'),
(30364, 25980, 'no_lang_code', 'name', 'Hanalei Watershed Hui'),
(30365, 25981, 'en', 'name', 'Tajik State Pedagogical University'),
(30366, 25981, 'ru', 'name', 'ТаГжикский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š”.Айни'),
(30367, 25981, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии омӯзгории Тоҷикистон ба номи ДаГриГГин Айнӣ'),
(30368, 25982, 'en', 'name', 'Luther University'),
(30369, 25982, 'ko', 'name', 'ė£Øķ„°ėŒ€ķ•™źµ'),
(30370, 25983, 'en', 'name', 'International Center of Photography'),
(30371, 25983, 'es', 'name', 'Centro internacional de FotografĆ­a'),
(30372, 25983, 'fr', 'name', 'Centre international de la photographie'),
(30373, 25984, 'en', 'name', 'Atlantic Council'),
(30374, 25985, 'en', 'name', 'Art Academy of Latvia'),
(30375, 25985, 'lt', 'name', 'Latvijos dailės akademija'),
(30376, 25985, 'lv', 'name', 'Latvijas Mākslas akadēmija'),
(30377, 25985, 'ru', 'name', 'Š›Š°Ń‚Š²ŠøŠ¹ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²'),
(30378, 25986, 'en', 'name', 'Penza State Agricultural Academy'),
(30379, 25986, 'ru', 'name', 'Пензенский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30380, 25987, 'id', 'name', 'Universitas Tribhuwana Tunggadewi'),
(30381, 25988, 'en', 'name', 'National University of Study and Research in Law'),
(30382, 25989, 'en', 'name', 'Italian Cultural Society of Washington D.C.'),
(30383, 25990, 'en', 'name', 'Webster University Thailand'),
(30384, 25990, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø§ąøšąøŖą¹€ąø•ąø­ąø£ą¹Œ'),
(30385, 25991, 'en', 'name', 'Three Village Historical Society'),
(30386, 25992, 'en', 'name', 'Tsukuba International University'),
(30387, 25992, 'ja', 'name', 'ć¤ćć°å›½éš›å¤§å­¦'),
(30388, 25993, 'en', 'name', 'East Hampton Historical Society'),
(30389, 25994, 'id', 'name', 'Universitas Nurtanio'),
(30390, 25995, 'en', 'name', 'California Marine Sanctuary Foundation'),
(30391, 25996, 'en', 'name', 'Humanitarian Institute of Television and Broadcasting M.A. LitovĆØina'),
(30392, 25996, 'ru', 'name', 'Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ Šø Ń€Š°Š“ŠøŠ¾Š²ŠµŃ‰Š°Š½ŠøŃ'),
(30393, 25997, 'en', 'name', 'Iloilo Science and Technology University'),
(30394, 25997, 'tl', 'name', 'Universitas Technologiae et Scientiarum Iloilensis'),
(30395, 25998, 'en', 'name', 'Preservation Society of Newport County'),
(30396, 25999, 'en', 'name', 'Jewish Publication Society'),
(30397, 26000, 'en', 'name', 'Moscow Technical University of Communication and Informatics'),
(30398, 26000, 'ru', 'name', 'Московский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ²ŃŠ·Šø Šø информатики'),
(30399, 26001, 'en', 'name', 'Transport and Telecommunication Institute'),
(30400, 26001, 'lv', 'name', 'Transporta un Sakaru Institūts'),
(30401, 26001, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Транспорта Šø Š”Š²ŃŠ·Šø'),
(30402, 26002, 'en', 'name', 'Aichi Mizuho College'),
(30403, 26002, 'ja', 'name', 'ę„›ēŸ„ćæćšć»å¤§å­¦'),
(30404, 26003, 'en', 'name', 'Kutafin Moscow State Law University'),
(30405, 26003, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Šž. Š•. ŠšŃƒŃ‚Š°Ń„ŠøŠ½Š°'),
(30406, 26004, 'en', 'name', 'Kenya Highlands University'),
(30407, 26005, 'cs', 'name', 'Výzkumné Centrum Selton'),
(30408, 26005, 'no_lang_code', 'name', 'Selton (Czechia)'),
(30409, 26006, 'en', 'name', 'Kabardino-Balkar State Agrarian University'),
(30410, 26006, 'ru', 'name', 'ŠšŠ°Š±Š°Ń€Š“ŠøŠ½Š¾-Балкарский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. М. Кокова'),
(30411, 26007, 'am', 'name', 'į‰£įˆ…įˆ­ į‹³įˆ­ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(30412, 26007, 'en', 'name', 'Bahir Dar University'),
(30413, 26008, 'de', 'name', 'Hochschule Ansbach'),
(30414, 26008, 'en', 'name', 'Ansbach University of Applied Sciences'),
(30415, 26009, 'en', 'name', 'Baptist University of the AmƩricas'),
(30416, 26010, 'en', 'name', 'Korea National University of Arts'),
(30417, 26010, 'ko', 'name', 'ķ•œźµ­ģ˜ˆģˆ ģ¢…ķ•©ķ•™źµ'),
(30418, 26011, 'en', 'name', 'Alecu Russo State University of Bălți'),
(30419, 26011, 'ro', 'name', 'Universitatea de Stat Alecu Russo din Bălți'),
(30420, 26011, 'ru', 'name', 'Š‘ŠµŠ»ŃŒŃ†ŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30421, 26012, 'en', 'name', 'International Pacific University'),
(30422, 26012, 'ja', 'name', '環太平擋大学'),
(30423, 26013, 'en', 'name', 'Pima County Public Library'),
(30424, 26014, 'en', 'name', 'Kent State University at Salem'),
(30425, 26015, 'en', 'name', 'Kansai University of Welfare Sciences'),
(30426, 26015, 'ja', 'name', 'é–¢č„æē¦ē„‰ē§‘å­¦å¤§å­¦'),
(30427, 26016, 'en', 'name', 'Freedom Trail Foundation'),
(30428, 26017, 'en', 'name', 'University of South Florida St. Petersburg'),
(30429, 26018, 'en', 'name', 'Takaoka University of Law'),
(30430, 26018, 'ja', 'name', 'é«˜å²”ę³•ē§‘å¤§å­¦'),
(30431, 26019, 'en', 'name', 'Gunma Prefectural Women''s University'),
(30432, 26019, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹å„³å­å¤§å­¦'),
(30433, 26020, 'no_lang_code', 'name', 'VĆ­tkovice Machinery Group (Czechia)'),
(30434, 26021, 'cs', 'name', 'ZĆ”padočeskĆ© Muzeum v Plzni'),
(30435, 26022, 'en', 'name', 'Columbia County Historical Society'),
(30436, 26023, 'no_lang_code', 'name', 'Dekra (Czechia)'),
(30437, 26024, 'id', 'name', 'Universitas Yudharta Pasuruan'),
(30438, 26025, 'en', 'name', 'Ukhta State Technical University'),
(30439, 26026, 'no_lang_code', 'name', 'Ing. Ivo Herman (Czechia)'),
(30440, 26027, 'en', 'name', 'Negros Oriental State University'),
(30441, 26027, 'tl', 'name', 'Pamantasang Estatal ng Negros Oriental'),
(30442, 26028, 'en', 'name', 'Komi State Pedagogical Institute'),
(30443, 26028, 'ru', 'name', 'Коми Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30444, 26029, 'en', 'name', 'Fort Mason Center'),
(30445, 26030, 'en', 'name', 'American Institute for Yemeni Studies'),
(30446, 26031, 'cs', 'name', 'Střízlivost'),
(30447, 26031, 'no_lang_code', 'name', 'Sobriety (Czechia)'),
(30448, 26032, 'en', 'name', 'Cambridge Arts Council'),
(30449, 26033, 'en', 'name', 'Doon University'),
(30450, 26033, 'hi', 'name', 'ą¤¦ą„‚ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(30451, 26034, 'en', 'name', 'Foreign Policy Association'),
(30452, 26035, 'en', 'name', 'Aichi University'),
(30453, 26035, 'ja', 'name', 'ę„›ēŸ„å¤§å­¦'),
(30454, 26036, 'en', 'name', 'Arellano University'),
(30455, 26037, 'en', 'name', 'Museum of the Moving Image'),
(30456, 26038, 'bn', 'name', 'ą¦•ą§‡ą¦Øą§ą¦¦ą§ą¦°ą§€ą¦Æą¦¼ মহিলা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(30457, 26038, 'en', 'name', 'Central Women''s University'),
(30458, 26039, 'en', 'name', 'Plains Indians & Pioneers Museum'),
(30459, 26040, 'en', 'name', 'Lahore School of Economics'),
(30460, 26041, 'en', 'name', 'Indus Valley School of Art and Architecture'),
(30461, 26041, 'sd', 'name', 'Ų§Ł†ŚŠŲ³ ŁˆŁŠŁ„ŁŠ Ų§Ų³ŚŖŁˆŁ„ آف آرٽ Ų§ŁŠŁ†ŚŠ Ų¢Ų±ŚŖŁŠŁ½ŁŠŚŖŚ†Ų±'),
(30462, 26042, 'en', 'name', 'Old Sturbridge Village'),
(30463, 26043, 'en', 'name', 'Upper Nile University'),
(30464, 26044, 'en', 'name', 'Des Moines Public Library'),
(30465, 26045, 'en', 'name', 'Kharkiv University of Humanities People’s Ukrainian Academy'),
(30466, 26045, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠŠ°Ń€Š¾Š“Š½Š°Ń ŃƒŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃĀ»'),
(30467, 26045, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠŠ°Ń€Š¾Š“Š½Š° ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ»'),
(30468, 26046, 'en', 'name', 'Massachusetts Library Association'),
(30469, 26047, 'hi', 'name', 'ą¤øą¤®ą„ą¤Ŗą„‚ą¤°ą„ą¤£ą¤¾ą¤Øą¤Øą„ą¤¦ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(30470, 26047, 'no_lang_code', 'name', 'Sampurnanand Sanskrit Vishwavidyalaya'),
(30471, 26047, 'ta', 'name', 'ą®šą®®ąÆą®ŖąÆ‚ą®°ąÆą®£ą®¾ą®©ą®ØąÆą®¤ąÆ ą®šą®®ą®šąÆą®•ą®æą®°ąÆą®¤ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(30472, 26048, 'en', 'name', 'Americas Society'),
(30473, 26049, 'en', 'name', 'University Medical Center of Southern Nevada'),
(30474, 26050, 'en', 'name', 'Orel State Agrarian University'),
(30475, 26050, 'ru', 'name', 'ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30476, 26051, 'no_lang_code', 'name', 'Singidunum University'),
(30477, 26051, 'sr', 'name', 'Универзитет ДингиГунум'),
(30478, 26052, 'en', 'name', 'Saratov State Academy of Law'),
(30479, 26052, 'ru', 'name', 'Š”Š°Ń€Š°Ń‚Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(30480, 26053, 'en', 'name', 'Alabama Public Library Service'),
(30481, 26054, 'en', 'name', 'S. Toraighyrov Pavlodar State University'),
(30482, 26054, 'kk', 'name', 'Торайғыров атынГағы ŠŸŠ°Š²Š»Š¾Š“Š°Ń€ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(30483, 26055, 'no_lang_code', 'name', 'TES Vsetƍn (Czechia)'),
(30484, 26056, 'no_lang_code', 'name', 'PPM Factum Research'),
(30485, 26057, 'en', 'name', 'Rhode Island Department of Environmental Management'),
(30486, 26058, 'id', 'name', 'Universitas Pendidikan Putra Indonesia Cianjur'),
(30487, 26059, 'no_lang_code', 'name', 'Teofilo Kisanji University'),
(30488, 26059, 'sw', 'name', 'Chuo Kikuu cha Teofilo Kisanji'),
(30489, 26060, 'en', 'name', 'Central Mindanao University'),
(30490, 26061, 'en', 'name', 'Nyenrode Business University'),
(30491, 26061, 'nl', 'name', 'Nyenrode Business Universiteit'),
(30492, 26062, 'en', 'name', 'Association for Recorded Sound Collections'),
(30493, 26063, 'en', 'name', 'Salt Lake City Public Library'),
(30494, 26064, 'en', 'name', 'Japanese American Citizens League'),
(30495, 26065, 'en', 'name', 'Adventist HealthCare Shady Grove Medical Center'),
(30496, 26066, 'no_lang_code', 'name', 'Advanced Hall Sensors (United Kingdom)'),
(30497, 26067, 'en', 'name', 'Texas Historical Commission'),
(30498, 26067, 'es', 'name', 'Comisión Histórica de Texas'),
(30499, 26068, 'en', 'name', 'Charleston Museum'),
(30500, 26069, 'en', 'name', 'Bataan Peninsula State University'),
(30501, 26070, 'en', 'name', 'Institute of Practical Oriental Studies'),
(30502, 26070, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ практического Š²Š¾ŃŃ‚Š¾ŠŗŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(30503, 26071, 'en', 'name', 'Jiaying University'),
(30504, 26071, 'zh', 'name', 'å˜‰åŗ”å­¦é™¢'),
(30505, 26072, 'ja', 'name', '種智院大学'),
(30506, 26072, 'no_lang_code', 'name', 'Shuchiin University'),
(30507, 26073, 'en', 'name', 'Krasnodar University of Ministry of Internal Affairs of Russia'),
(30508, 26073, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ’Š” России'),
(30509, 26074, 'en', 'name', 'Tashkent Financial Institute'),
(30510, 26074, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Финансовый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30511, 26074, 'uz', 'name', 'Toshkent Moliya Instituti'),
(30512, 26075, 'en', 'name', 'L. C. Bates Museum'),
(30513, 26076, 'en', 'name', 'Kainan University'),
(30514, 26076, 'zh', 'name', 'é–‹å—å¤§å­ø'),
(30515, 26077, 'en', 'name', 'Anyang University'),
(30516, 26077, 'ko', 'name', 'ģ•ˆģ–‘ėŒ€ķ•™źµ'),
(30517, 26078, 'be', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30518, 26078, 'en', 'name', 'International Humanitarian and Economic Institute'),
(30519, 26079, 'en', 'name', 'McGill-Queen''s University Press'),
(30520, 26080, 'id', 'name', 'Universitas Islam Batik'),
(30521, 26081, 'no_lang_code', 'name', 'ASICentrum (Czechia)'),
(30522, 26082, 'id', 'name', 'Universitas Gajayana Malang'),
(30523, 26083, 'no_lang_code', 'name', 'GeneProof (Czechia)'),
(30524, 26084, 'en', 'name', 'Hammond Castle Museum'),
(30525, 26085, 'id', 'name', 'Universitas Sains Al-Qur''an'),
(30526, 26086, 'en', 'name', 'Ocean County Library'),
(30527, 26087, 'en', 'name', 'Teton County Library'),
(30528, 26088, 'id', 'name', 'Universitas Kuningan'),
(30529, 26089, 'en', 'name', 'Hawaii Department of Defense'),
(30530, 26090, 'en', 'name', 'Columbia River Inter-Tribal Fish Commission'),
(30531, 26091, 'en', 'name', 'UCSI University'),
(30532, 26091, 'ms', 'name', 'Universiti UCSI'),
(30533, 26092, 'en', 'name', 'Tenshi College'),
(30534, 26092, 'ja', 'name', '天使大学'),
(30535, 26093, 'en', 'name', 'Faculty of Polymer Technology'),
(30536, 26093, 'sl', 'name', 'Fakulteta za Tehnologijo Polimerov'),
(30537, 26094, 'en', 'name', 'Lexington Historical Society'),
(30538, 26095, 'en', 'name', 'Cannon Cancer Ministry'),
(30539, 26096, 'en', 'name', 'Kyiv International University'),
(30540, 26096, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ міжнароГний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30541, 26097, 'en', 'name', 'Batangas State University'),
(30542, 26097, 'tl', 'name', 'Pambansang Pamantasan ng Batangas'),
(30543, 26098, 'en', 'name', 'International Tennis Hall of Fame'),
(30544, 26099, 'en', 'name', 'American Bar Association Fund for Justice and Education'),
(30545, 26100, 'en', 'name', 'Southwest University of Visual Arts'),
(30546, 26101, 'en', 'name', 'St. Paul University Manila'),
(30547, 26102, 'no_lang_code', 'name', 'Tieto (Czechia)'),
(30548, 26103, 'id', 'name', 'Universitas Boyolali'),
(30549, 26104, 'en', 'name', 'Wallenberg Institute of Special Education and Psychology'),
(30550, 26104, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ пеГагогики Šø психологии'),
(30551, 26105, 'en', 'name', 'Siberian State University of Telecommunications and Informatics'),
(30552, 26105, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹ Šø информатики'),
(30553, 26106, 'en', 'name', 'Minneapolis Institute of Arts'),
(30554, 26106, 'es', 'name', 'Instituto de Arte de MineƔpolis'),
(30555, 26107, 'en', 'name', 'Kyiv National Economic University named after Vadym Hetman'),
(30556, 26107, 'pl', 'name', 'Kijowski Narodowy Uniwersytet Ekonomiczny im. Wadyma Hetmana'),
(30557, 26107, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30558, 26107, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВаГима Š“ŠµŃ‚ŃŒŠ¼Š°Š½Š°'),
(30559, 26108, 'no_lang_code', 'name', 'STV Group (Czechia)'),
(30560, 26109, 'en', 'name', 'Dayton Art Institute'),
(30561, 26110, 'en', 'name', 'Moscow State Art and Industry Academy named after SG Stroganov'),
(30562, 26110, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š¾-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Š”. Š“. Дтроганова'),
(30563, 26111, 'en', 'name', 'American Littoral Society'),
(30564, 26112, 'no_lang_code', 'name', 'Fine (Czechia)'),
(30565, 26113, 'en', 'name', 'Harold Washington College'),
(30566, 26114, 'hi', 'name', 'मगध ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(30567, 26114, 'no_lang_code', 'name', 'Magadh University'),
(30568, 26115, 'es', 'name', 'Fundación Vía Libre'),
(30569, 26116, 'en', 'name', 'Polish Open University'),
(30570, 26116, 'pl', 'name', 'Wyższa Szkoła Zarządzania'),
(30571, 26117, 'en', 'name', 'World Turtle Trust'),
(30572, 26118, 'en', 'name', 'Eastern Liaoning University'),
(30573, 26118, 'zh', 'name', 'č¾½äøœå­¦é™¢'),
(30574, 26119, 'id', 'name', 'Universitas Methodist Indonesia'),
(30575, 26120, 'de', 'name', 'Hochschule für Fernsehen und Film München'),
(30576, 26120, 'en', 'name', 'University of Television and Film Munich'),
(30577, 26121, 'en', 'name', 'Enoch Pratt Free Library'),
(30578, 26122, 'en', 'name', 'Archaeology Society of Staten Island'),
(30579, 26123, 'bs', 'name', 'Internacionalni univerzitet u Sarajevu'),
(30580, 26123, 'en', 'name', 'International University of Sarajevo'),
(30581, 26123, 'hr', 'name', 'Međunarodno sveučiliÅ”te u Sarajevu'),
(30582, 26124, 'no_lang_code', 'name', 'Zbrojovka VsetĆ­n (Czechia)'),
(30583, 26125, 'en', 'name', 'Historic St. Mary’s City Commission'),
(30584, 26126, 'en', 'name', 'Herzegovina University'),
(30585, 26126, 'hr', 'name', 'SveučiliŔte Hercegovina'),
(30586, 26127, 'en', 'name', 'Vietnam National University of Agriculture'),
(30587, 26127, 'fr', 'name', 'Université d''agriculture de hanoï'),
(30588, 26127, 'vi', 'name', 'Hį»c viện NĆ“ng nghiệp Việt Nam'),
(30589, 26128, 'cs', 'name', 'Ústav ArcheologickĆ© PamĆ”tkovĆ© PĆ©Äe SeverozĆ”padnĆ­ch Čech'),
(30590, 26129, 'en', 'name', 'Gandhigram Rural Institute'),
(30591, 26129, 'hi', 'name', 'ą¤—ą„ą¤°ą¤¾ą¤ą¤§ą„€ą¤—ą„ą¤°ą¤¾ą¤® ą¤—ą„ą¤°ą¤¾ą¤®ą„€ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(30592, 26129, 'ml', 'name', 'ą“—ą“¾ą“Øąµą“§ą“æą“—ąµą“°ą“¾ą“‚ ą“•ą“²ąµą“Ŗą“æą“¤ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(30593, 26129, 'ta', 'name', 'ą®•ą®¾ą®ØąÆą®¤ą®æ ą®•ą®æą®°ą®¾ą®®ą®®ąÆ ą®•ą®æą®°ą®¾ą®®ą®æą®Æą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(30594, 26130, 'no_lang_code', 'name', 'Ortep (Czechia)'),
(30595, 26131, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŲŗŲŖŲ±ŲØŁŠŁ†'),
(30596, 26131, 'en', 'name', 'AlMughtaribeen University'),
(30597, 26132, 'en', 'name', 'Minnesota State Community and Technical College'),
(30598, 26133, 'en', 'name', 'Detroit Historical Society'),
(30599, 26134, 'id', 'name', 'Universitas Sjakhyakirti'),
(30600, 26135, 'en', 'name', 'National Constitution Center'),
(30601, 26136, 'en', 'name', 'Wayne County Community College District'),
(30602, 26137, 'en', 'name', 'National Transport University'),
(30603, 26137, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ транспортний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30604, 26138, 'ar', 'name', 'ŁƒŁ„ŁŠŲ©ŁˆŁ„Ų¬Ų§ŲŖ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(30605, 26138, 'en', 'name', 'Waljat Colleges of Applied Sciences'),
(30606, 26139, 'en', 'name', 'Vyatka State University'),
(30607, 26139, 'ru', 'name', 'Š’ŃŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30608, 26140, 'no_lang_code', 'name', 'Summa (Czechia)'),
(30609, 26141, 'no_lang_code', 'name', 'Dias Turnov (Czechia)'),
(30610, 26142, 'en', 'name', 'Chrysler Museum of Art'),
(30611, 26143, 'en', 'name', 'Tongmyong University'),
(30612, 26143, 'ko', 'name', 'ė™ėŖ… ėŒ€ķ•™źµ'),
(30613, 26144, 'en', 'name', 'Please Touch Museum'),
(30614, 26145, 'en', 'name', 'Peabody Institute Library'),
(30615, 26146, 'en', 'name', 'Baqir Al-Olum University'),
(30616, 26146, 'fa', 'name', 'دانؓگاه ŲØŲ§Ł‚Ų±Ų§Ł„Ų¹Ł„ŁˆŁ…'),
(30617, 26147, 'en', 'name', 'Lakeland College'),
(30618, 26148, 'en', 'name', 'Calvert Marine Museum'),
(30619, 26149, 'en', 'name', 'Malcolm X College'),
(30620, 26150, 'en', 'name', 'Telkom Institute of Management'),
(30621, 26150, 'id', 'name', 'Institut Manajemen Telkom'),
(30622, 26151, 'en', 'name', 'Daegu Arts University'),
(30623, 26151, 'ko', 'name', 'ėŒ€źµ¬ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(30624, 26152, 'en', 'name', 'Academy of Fine Arts in Katowice'),
(30625, 26152, 'pl', 'name', 'Akademia Sztuk Pięknych w Katowicach'),
(30626, 26153, 'en', 'name', 'Nukus State Pedagogical Institute named after Ajiniyaz'),
(30627, 26153, 'uz', 'name', 'AJINIYOZ NOMIDAGI NUKUS DAVLAT PEDAGOGIKA INSTITUTI'),
(30628, 26154, 'en', 'name', 'Arhoolie Foundation'),
(30629, 26155, 'en', 'name', 'Poltava University of Economics and Trade'),
(30630, 26155, 'ru', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø торговли'),
(30631, 26155, 'uk', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ економіки і торгівлі'),
(30632, 26156, 'no_lang_code', 'name', 'University Hospital Center Dr DragiÅ”a MiÅ”ović'),
(30633, 26156, 'sr', 'name', 'ŠšŠ»ŠøŠ½ŠøŃ‡ŠŗŠ¾-болнички центар Др Š”Ń€Š°Š³ŠøŃˆŠ° ŠœŠøŃˆŠ¾Š²ŠøŃ›-Š”ŠµŠ“ŠøŃšŠµ'),
(30634, 26157, 'no_lang_code', 'name', 'Edinburgh Instruments (United Kingdom)'),
(30635, 26158, 'en', 'name', 'Municipal Art Society of New York'),
(30636, 26159, 'id', 'name', 'Universitas Musi Rawas'),
(30637, 26160, 'id', 'name', 'Institut Teknologi Nasional Malang'),
(30638, 26161, 'no_lang_code', 'name', 'ING Corporation (Czechia)'),
(30639, 26162, 'en', 'name', 'Bryan College'),
(30640, 26163, 'en', 'name', 'Moscow New Law Institute'),
(30641, 26163, 'ru', 'name', 'Московский ŠŠ¾Š²Ń‹Š¹ ЮриГический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(30642, 26164, 'en', 'name', 'Gelato University'),
(30643, 26165, 'en', 'name', 'International University in Moscow'),
(30644, 26165, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Москве'),
(30645, 26166, 'en', 'name', 'Tashkent State Technical University named after Islam Karimov'),
(30646, 26166, 'uz', 'name', 'Islom Karimov nomidagi Toshkent davlat texnika universiteti'),
(30647, 26167, 'en', 'name', 'Rochester Hills Public Library'),
(30648, 26168, 'en', 'name', 'Berkeley Public Library'),
(30649, 26169, 'en', 'name', 'Aklan State University'),
(30650, 26170, 'no_lang_code', 'name', 'HVM Plasma (Czechia)'),
(30651, 26171, 'en', 'name', 'Philippine Women''s University'),
(30652, 26172, 'en', 'name', 'Quchan University of Advanced Technology'),
(30653, 26172, 'fa', 'name', 'دانؓگاه Ł…Ł‡Ł†ŲÆŲ³ŪŒ ŁŁ†Ų§ŁˆŲ±ŪŒā€ŒŁ‡Ų§ŪŒ Ł†ŁˆŪŒŁ† Ł‚ŁˆŚ†Ų§Ł†'),
(30654, 26173, 'no_lang_code', 'name', 'SHM (Czechia)'),
(30655, 26174, 'id', 'name', 'Universitas Katolik Santo Thomas'),
(30656, 26175, 'no_lang_code', 'name', 'Dekonta (Czechia)'),
(30657, 26176, 'en', 'name', 'Hansei University'),
(30658, 26176, 'ko', 'name', 'ķ•œģ„øėŒ€ķ•™źµ'),
(30659, 26177, 'en', 'name', 'University of Management TISBI'),
(30660, 26177, 'ru', 'name', 'Университет Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ "Š¢Š˜Š”Š‘Š˜"'),
(30661, 26178, 'en', 'name', 'Chugye University for the Arts'),
(30662, 26178, 'ko', 'name', 'ģ¶”ź³„ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(30663, 26179, 'en', 'name', 'Spring Lake District Library'),
(30664, 26180, 'en', 'name', 'Center for Anti-Slavery Studies'),
(30665, 26181, 'en', 'name', 'International Association for Continuing Engineering Education'),
(30666, 26181, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ•ŠŠ•Š”Š–ŠœŠ•ŠŠ¢Š И Š Š«ŠŠšŠ'),
(30667, 26182, 'en', 'name', 'Alaska State Library'),
(30668, 26183, 'en', 'name', 'State University of Land Use Planning'),
(30669, 26183, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ по Š·ŠµŠ¼Š»ŠµŃƒŃŃ‚Ń€Š¾Š¹ŃŃ‚Š²Ńƒ'),
(30670, 26184, 'id', 'name', 'Universitas Darwan Ali'),
(30671, 26185, 'en', 'name', 'Bulacan State University'),
(30672, 26185, 'tl', 'name', 'Pamantasang Pampamahalaang Bulacan'),
(30673, 26186, 'en', 'name', 'Holy Name University'),
(30674, 26187, 'en', 'name', 'North Dakota Superintendent of Public Instruction'),
(30675, 26188, 'en', 'name', 'Gretsa University'),
(30676, 26189, 'no_lang_code', 'name', 'PrimeCell Therapeutics (Czechia)'),
(30677, 26190, 'no_lang_code', 'name', 'Associated British Foods (United Kingdom)'),
(30678, 26191, 'en', 'name', 'Far Eastern University'),
(30679, 26191, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŸąø²ąø£ą¹Œąø­ąøµąøŖą¹€ąø—ąø­ąø£ą¹Œąø™'),
(30680, 26192, 'en', 'name', 'Globis University Graduate School of Management'),
(30681, 26192, 'ja', 'name', 'ć‚°ćƒ­ćƒ¼ćƒ“ć‚¹ēµŒå–¶å¤§å­¦é™¢å¤§å­¦'),
(30682, 26193, 'en', 'name', 'St. George''s School'),
(30683, 26194, 'no_lang_code', 'name', 'Ashiwi Awan Museum and Heritage Center'),
(30684, 26195, 'en', 'name', 'Hibbing Public Library'),
(30685, 26196, 'en', 'name', 'Jain University'),
(30686, 26197, 'en', 'name', 'Fatoni University'),
(30687, 26197, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŸąø²ąøąø­ąø™ąøµ'),
(30688, 26198, 'en', 'name', 'North Dakota State Railroad Museum'),
(30689, 26199, 'en', 'name', 'Connecticut River Joint Commissions'),
(30690, 26200, 'en', 'name', 'Asia University'),
(30691, 26200, 'ja', 'name', '亜瓰亜大学'),
(30692, 26201, 'pl', 'name', 'Wyższa Szkoła Zarządzania i Administracji w Opolu'),
(30693, 26202, 'en', 'name', 'Virginia Department of Conservation and Recreation'),
(30694, 26203, 'en', 'name', 'Stillwater Public Library'),
(30695, 26204, 'de', 'name', 'Deutsche Universität für Verwaltungswissenschaften Speyer'),
(30696, 26204, 'en', 'name', 'German University of Administrative Sciences'),
(30697, 26205, 'en', 'name', 'Kwik Kian Gie School of Business'),
(30698, 26205, 'id', 'name', 'Institut Bisnis dan Informatika Kwik Kian Gie'),
(30699, 26206, 'en', 'name', 'Phetchaburi Rajabhat University'),
(30700, 26206, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąøžąøŠąø£ąøšąøøąø£ąøµ'),
(30701, 26207, 'en', 'name', 'University of New York Tirana'),
(30702, 26208, 'en', 'name', 'Prince William County Public Schools'),
(30703, 26209, 'no_lang_code', 'name', 'VodohospodÔřský Rozvoj a Výstavba'),
(30704, 26210, 'en', 'name', 'Shoshone Episcopal Mission'),
(30705, 26211, 'no_lang_code', 'name', 'Hajvery University'),
(30706, 26211, 'ur', 'name', 'جامعہ ہجویری'),
(30707, 26212, 'en', 'name', 'Siberian State Industrial University'),
(30708, 26212, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30709, 26213, 'en', 'name', 'National Open University'),
(30710, 26213, 'zh', 'name', 'åœ‹ē«‹ē©ŗäø­å¤§å­ø'),
(30711, 26214, 'en', 'name', 'Japan Lutheran College'),
(30712, 26214, 'ja', 'name', 'ćƒ«ćƒ¼ćƒ†ćƒ«å­¦é™¢å¤§å­¦'),
(30713, 26215, 'en', 'name', 'Bashkir Academy of Public Administration and Management under the Head of the Republic of Bashkortostan'),
(30714, 26215, 'ru', 'name', 'Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при Главе Республики Š‘Š°ŃˆŠŗŠ¾Ń€Ń‚Š¾ŃŃ‚Š°Š½'),
(30715, 26216, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(30716, 26216, 'en', 'name', 'Gulf University'),
(30717, 26217, 'en', 'name', 'De Anza College'),
(30718, 26218, 'en', 'name', 'Saskatchewan Registered Nurses Association'),
(30719, 26219, 'en', 'name', 'BaiCheng Normal University'),
(30720, 26219, 'zh', 'name', 'ē™½åŸŽåøˆčŒƒå­¦é™¢'),
(30721, 26220, 'en', 'name', 'Newton Public Schools'),
(30722, 26221, 'en', 'name', 'Historic Northampton'),
(30723, 26222, 'en', 'name', 'American Film Institute'),
(30724, 26223, 'en', 'name', 'University Memory and Aging Center'),
(30725, 26224, 'en', 'name', 'Shelburne Museum'),
(30726, 26225, 'en', 'name', 'University of Novi Pazar'),
(30727, 26225, 'no_lang_code', 'name', 'Univerzitet u Novom Pazaru'),
(30728, 26226, 'en', 'name', 'National Museum of African Art'),
(30729, 26227, 'cs', 'name', 'Vojenský Výzkumný Ústav'),
(30730, 26227, 'no_lang_code', 'name', 'Military Research Institute'),
(30731, 26228, 'en', 'name', 'University of East'),
(30732, 26228, 'ur', 'name', 'ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ آف Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś±ŲŒ آرٽس، سائنس Ų§ŁŠŁ†ŚŠ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠā€Ž'),
(30733, 26229, 'en', 'name', 'China Youth University for Political Sciences'),
(30734, 26229, 'zh', 'name', 'äø­å›½é’å¹“ę”æę²»å­¦é™¢'),
(30735, 26230, 'en', 'name', 'Vasile Goldis Western University of Arad'),
(30736, 26230, 'ro', 'name', 'Universitatea de Vest Vasile Goldiș din Arad'),
(30737, 26231, 'no_lang_code', 'name', 'ƚVP Běchovice (Czechia)'),
(30738, 26232, 'en', 'name', 'Point University'),
(30739, 26233, 'en', 'name', 'Oregon Zoo'),
(30740, 26234, 'en', 'name', 'White House Historical Association'),
(30741, 26235, 'no_lang_code', 'name', 'Elko Ep (Czechia)'),
(30742, 26236, 'en', 'name', 'Armenian State University of Economics'),
(30743, 26236, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ ÕæÕ¶ÕæÕ„Õ½Õ”Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(30744, 26237, 'en', 'name', 'La Salle University'),
(30745, 26237, 'tl', 'name', 'Pamantasang La Salle ng Ozamis'),
(30746, 26238, 'en', 'name', 'Philippine Christian University'),
(30747, 26238, 'tl', 'name', 'Pamantasang Kristiyano ng Pilipinas'),
(30748, 26239, 'en', 'name', 'Himalayan University'),
(30749, 26240, 'en', 'name', 'New Hanover County Public Library'),
(30750, 26241, 'en', 'name', 'Magic Valley Arts Council'),
(30751, 26242, 'en', 'name', 'Potomac River Fisheries Commission'),
(30752, 26243, 'en', 'name', 'Nevada Department of Tourism and Cultural Affairs'),
(30753, 26244, 'en', 'name', 'Tarlac State University'),
(30754, 26244, 'tl', 'name', 'Pambansang Pamantasan ng Tarlac'),
(30755, 26245, 'en', 'name', 'Camden County Historical Society'),
(30756, 26246, 'en', 'name', 'Louisiana Baptist University'),
(30757, 26247, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± فهد بن سلطان'),
(30758, 26247, 'en', 'name', 'Fahd bin Sultan University'),
(30759, 26248, 'en', 'name', 'James V Brown Library'),
(30760, 26249, 'en', 'name', 'Thousand Islands Museum'),
(30761, 26250, 'en', 'name', 'Tyumen State Academy of World Economics, Management and Law'),
(30762, 26250, 'ru', 'name', 'Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ мировой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(30763, 26251, 'en', 'name', 'Donbas State Technical University'),
(30764, 26251, 'ru', 'name', 'Донбасский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30765, 26251, 'uk', 'name', 'Š”Š¾Š½Š±Š°ŃŃŒŠŗŠøŠ¹ Гержавний технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30766, 26252, 'en', 'name', 'Oregon Department of State Lands'),
(30767, 26253, 'en', 'name', 'Tokyo Fuji University'),
(30768, 26253, 'ja', 'name', 'ę±äŗ¬åÆŒå£«å¤§å­¦'),
(30769, 26254, 'en', 'name', 'Polish University Abroad'),
(30770, 26255, 'en', 'name', 'International University of Business and Law'),
(30771, 26255, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±Ń–Š·Š½ŠµŃŃƒ і права'),
(30772, 26256, 'en', 'name', 'Russian State Vocational Pedagogical University'),
(30773, 26256, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30774, 26257, 'ja', 'name', 'ē¦å±±å¹³ęˆå¤§å­¦'),
(30775, 26257, 'no_lang_code', 'name', 'Fukuyama Heisei University'),
(30776, 26258, 'en', 'name', 'Interregional Academy of Personnel Management'),
(30777, 26258, 'pl', 'name', 'Międzyregionalna Akademia Zarządzania Personelem w Kijowie'),
(30778, 26258, 'ru', 'name', 'ŠœŠµŠ¶Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ персоналом'),
(30779, 26258, 'uk', 'name', 'ŠœŃ–Š¶Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń персоналом'),
(30780, 26259, 'en', 'name', 'Saigon University'),
(30781, 26259, 'fr', 'name', 'UniversitƩ de saigon'),
(30782, 26259, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c SĆ i Gòn'),
(30783, 26259, 'zh', 'name', '脿蓔大学'),
(30784, 26260, 'en', 'name', 'Ivano-Frankivsk National Technical University of Oil and Gas'),
(30785, 26260, 'uk', 'name', 'Івано-Š¤Ń€Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ нафти і газу'),
(30786, 26261, 'en', 'name', 'Cedar Rapids Public Library'),
(30787, 26262, 'en', 'name', 'Center for Asian American Media'),
(30788, 26263, 'en', 'name', 'Friends of the Saint Paul Public Library'),
(30789, 26264, 'en', 'name', 'Mindanao State University Naawan'),
(30790, 26265, 'en', 'name', 'Massachusetts Archives'),
(30791, 26266, 'en', 'name', 'Delaware County Historical Association'),
(30792, 26267, 'en', 'name', 'Saint Petersburg State University of Architecture and Civil Engineering'),
(30793, 26267, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30794, 26268, 'en', 'name', 'Pontifical University of St. Bonaventure'),
(30795, 26268, 'fr', 'name', 'FacultƩ pontificale de thƩologie saint-bonaventure'),
(30796, 26268, 'it', 'name', 'Pontificia FacoltĆ  Teologica San Bonaventura'),
(30797, 26269, 'en', 'name', 'Caulfield Hospital'),
(30798, 26270, 'en', 'name', 'Campbell Center for Historic Preservation Studies'),
(30799, 26271, 'en', 'name', 'University of Kamina'),
(30800, 26271, 'fr', 'name', 'UniversitƩ de Kamina'),
(30801, 26272, 'en', 'name', 'Cambridge University Health Partners'),
(30802, 26273, 'no_lang_code', 'name', 'Stavus (Czechia)'),
(30803, 26274, 'en', 'name', 'John Cabot University'),
(30804, 26275, 'en', 'name', 'Lesgaft National State University of Physical Education, Sport and Health'),
(30805, 26275, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Š·Š“Š¾Ń€Š¾Š²ŃŒŃ им. Лесгафта'),
(30806, 26276, 'id', 'name', 'Universitas Islam Jember'),
(30807, 26277, 'en', 'name', 'Czech Moravian Psychological Society, Czech-Moravian Psychological Society'),
(30808, 26278, 'en', 'name', 'Far East University'),
(30809, 26279, 'en', 'name', 'Techno Global University'),
(30810, 26279, 'hi', 'name', 'ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ ą¤—ą„ą¤²ą„‹ą¤¬ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€, ą¤øą¤æą¤°ą„‹ą¤‚ą¤œ'),
(30811, 26280, 'en', 'name', 'Shimonoseki City University'),
(30812, 26280, 'ja', 'name', '下関市立大学'),
(30813, 26281, 'no_lang_code', 'name', 'DHA Suffa University'),
(30814, 26281, 'ur', 'name', 'ڊي Ų§ŁŠŚ‡ اي سفا ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(30815, 26282, 'no_lang_code', 'name', 'Józef Piłsudski Institute of America'),
(30816, 26283, 'en', 'name', 'Private University of Trujillo'),
(30817, 26283, 'es', 'name', 'Universidad Privada de Trujillo'),
(30818, 26284, 'en', 'name', 'Salam University'),
(30819, 26284, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų³Ł„Ų§Ł…ā€Ž)'),
(30820, 26284, 'ps', 'name', 'سلام Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†ā€Ž'),
(30821, 26285, 'bn', 'name', 'ą¦øą§ą¦Ÿą§‡ą¦Ÿ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(30822, 26285, 'en', 'name', 'State University of Bangladesh'),
(30823, 26286, 'en', 'name', 'Whitney Museum of American Art'),
(30824, 26287, 'en', 'name', 'Cincinnati Fire Museum'),
(30825, 26288, 'id', 'name', 'Universitas Informatika dan Bisnis Indonesia'),
(30826, 26289, 'en', 'name', 'Andijan State Medical Institute'),
(30827, 26289, 'uz', 'name', 'Andijon Davlat Tibbiyot Instituti'),
(30828, 26290, 'ko', 'name', 'ź“‘ģ£¼ėŒ€ķ•™źµ'),
(30829, 26290, 'no_lang_code', 'name', 'Gwangju University'),
(30830, 26291, 'en', 'name', 'Hewlett Woodmere Public Library'),
(30831, 26292, 'en', 'name', 'Electronic Literature Organization'),
(30832, 26293, 'en', 'name', 'Victorian Society in America'),
(30833, 26294, 'en', 'name', 'Miyazaki Municipal University'),
(30834, 26294, 'ja', 'name', 'å®®å“Žå…¬ē«‹å¤§å­¦'),
(30835, 26295, 'en', 'name', 'Velikie Luki State Academy of Physical Culture and Sports'),
(30836, 26295, 'ru', 'name', 'Š’ŠµŠ»ŠøŠŗŠ¾Š»ŃƒŠŗŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(30837, 26296, 'gu', 'name', 'ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖŖą«€ąŖ '),
(30838, 26296, 'hi', 'name', 'Gujarat Vidyapith, ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(30839, 26296, 'ta', 'name', 'ą®•ąÆą®œą®°ą®¾ą®¤ąÆ ą®µą®æą®¤ąÆą®Æą®¾ą®ŖąÆ€ą®Ÿą®®ąÆ'),
(30840, 26297, 'en', 'name', 'Wolf Hollow Wildlife Rehabilitation Center'),
(30841, 26298, 'en', 'name', 'Delhi Historical Society'),
(30842, 26299, 'en', 'name', 'Samudra University'),
(30843, 26299, 'id', 'name', 'Universitas Samudra'),
(30844, 26300, 'no_lang_code', 'name', 'RPC Promens (Czechia)'),
(30845, 26301, 'en', 'name', 'Griot Museum of Black History & Culture'),
(30846, 26302, 'en', 'name', 'Kyoei University'),
(30847, 26302, 'ja', 'name', '共栄大学'),
(30848, 26303, 'kk', 'name', 'Єалықаралық қазақ-түрік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(30849, 26303, 'no_lang_code', 'name', 'Ahmet Yesevi University'),
(30850, 26303, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ казахско-Ń‚ŃƒŃ€ŠµŃ†ŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š„. А. Яссави'),
(30851, 26304, 'en', 'name', 'Samara Institute of Management'),
(30852, 26304, 'ru', 'name', 'Дамарский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(30853, 26305, 'en', 'name', 'Mandalay Technological University'),
(30854, 26305, 'my', 'name', 'į€™į€”į€¹į€į€œį€±į€øį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(30855, 26306, 'id', 'name', 'Institut Pertanian Stiper'),
(30856, 26307, 'fr', 'name', 'UniversitĆ© pour Ɖtrangers de Reggio de Calabre'),
(30857, 26307, 'it', 'name', 'UniversitĆ  per Stranieri Dante Alighieri'),
(30858, 26308, 'en', 'name', 'University of Liepāja'),
(30859, 26308, 'lv', 'name', 'Liepājas Universitāte'),
(30860, 26309, 'en', 'name', 'Chicago Film Archives'),
(30861, 26310, 'en', 'name', 'Wake County Public Libraries'),
(30862, 26311, 'en', 'name', 'Litchfield Historical Society'),
(30863, 26312, 'en', 'name', 'Aryabhatta Knowledge University'),
(30864, 26312, 'hi', 'name', 'ą¤†ą¤°ą„ą¤Æą¤­ą¤Ÿą„ą¤Ÿ ą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(30865, 26313, 'en', 'name', 'International University of Kagoshima'),
(30866, 26313, 'ja', 'name', 'é¹æå…å³¶å›½éš›å¤§å­¦'),
(30867, 26314, 'en', 'name', 'South Street Seaport Museum'),
(30868, 26315, 'ar', 'name', 'الجامعة Ų§Ł„Ų³ŁˆŲ±ŁŠŲ© الخاصة'),
(30869, 26315, 'en', 'name', 'Syrian Private University'),
(30870, 26316, 'en', 'name', 'Panzhihua University'),
(30871, 26316, 'zh', 'name', 'ę”€ęžčŠ±å­¦é™¢'),
(30872, 26317, 'en', 'name', 'Japanese Red Cross Kyushu International College of Nursing'),
(30873, 26317, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ä¹å·žå›½éš›ēœ‹č­·å¤§å­¦'),
(30874, 26318, 'en', 'name', 'Ranchi University'),
(30875, 26318, 'hi', 'name', 'ą¤°ą¤¾ą¤‚ą¤šą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(30876, 26319, 'en', 'name', 'Ittihad University'),
(30877, 26320, 'en', 'name', 'Islamic Azad University, Komijan Branch'),
(30878, 26320, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ś©Ł…ŪŒŲ¬Ų§Ł†'),
(30879, 26321, 'en', 'name', 'Jožef Stefan International Postgraduate School'),
(30880, 26322, 'en', 'name', 'Novosibirsk State Agricultural University'),
(30881, 26322, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30882, 26323, 'hi', 'name', 'ą¤•ą¤µą¤æą¤•ą„ą¤²ą¤—ą„ą¤°ą„ कालिदास ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(30883, 26323, 'no_lang_code', 'name', 'Kavikulaguru Kalidas Sanskrit University'),
(30884, 26324, 'en', 'name', 'Turība University'),
(30885, 26324, 'lv', 'name', 'Biznesa augstskola Turība'),
(30886, 26325, 'en', 'name', 'Siddhartha University'),
(30887, 26326, 'ja', 'name', '弘前学院大学'),
(30888, 26326, 'no_lang_code', 'name', 'Hirosaki Gakuin University'),
(30889, 26327, 'en', 'name', 'Jewish Museum of Maryland'),
(30890, 26328, 'en', 'name', 'Vermilion Parish Library'),
(30891, 26329, 'en', 'name', 'Hanoi University of Culture'),
(30892, 26329, 'vi', 'name', 'ĐẔi hį»c Văn hóa HĆ  Nį»™i'),
(30893, 26330, 'no_lang_code', 'name', 'TÜV SÜD (Czechia)'),
(30894, 26331, 'en', 'name', 'ConVida - Popular Arts of the Americas'),
(30895, 26332, 'id', 'name', 'Universitas Muhammadiyah Malang'),
(30896, 26333, 'en', 'name', 'Andrew County Museum'),
(30897, 26334, 'id', 'name', 'Universitas Djuanda'),
(30898, 26335, 'en', 'name', 'Brookings Public Library'),
(30899, 26336, 'en', 'name', 'Manchester Historic Association'),
(30900, 26337, 'en', 'name', 'Youngdong University'),
(30901, 26337, 'ko', 'name', 'ģ˜ė™ėŒ€ķ•™źµ'),
(30902, 26338, 'bn', 'name', 'ą¦Øą¦°ą§ą¦¦ą¦¾ą¦°ą§ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(30903, 26338, 'en', 'name', 'Northern University Bangladesh'),
(30904, 26339, 'en', 'name', 'Chaudhary Devi Lal University'),
(30905, 26339, 'hi', 'name', 'ą¤šą„Œą¤§ą¤°ą„€ ą¤¦ą„‡ą¤µą„€ लाल ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(30906, 26340, 'no_lang_code', 'name', 'Green Gas (Czechia)'),
(30907, 26341, 'en', 'name', 'Central Bicol State University of Agriculture'),
(30908, 26342, 'en', 'name', 'Pangasinan State University'),
(30909, 26342, 'tl', 'name', 'Pamantasang Estado ng Pangasinan'),
(30910, 26343, 'en', 'name', 'Worcester Public Library'),
(30911, 26344, 'en', 'name', 'WTTW'),
(30912, 26345, 'en', 'name', 'Gheorghe Dima Music Academy'),
(30913, 26345, 'ro', 'name', 'Academia de Muzică Gheorghe Dima'),
(30914, 26346, 'cs', 'name', 'MoravskƩ ZemskƩ Muzeum'),
(30915, 26346, 'no_lang_code', 'name', 'Moravian Museum'),
(30916, 26347, 'no_lang_code', 'name', 'Svar Life Science (Netherlands)'),
(30917, 26348, 'id', 'name', 'Institut Kesenian Jakarta'),
(30918, 26349, 'en', 'name', 'National Defence University'),
(30919, 26349, 'fi', 'name', 'Maanpuolustuskorkeakoulu'),
(30920, 26349, 'sv', 'name', 'Fƶrsvarshƶgskolan'),
(30921, 26350, 'en', 'name', 'Elkhorn Slough Foundation'),
(30922, 26351, 'en', 'name', 'Longmont Museum');
INSERT INTO `ror_settings` VALUES
(30923, 26352, 'en', 'name', 'Spartan Health Sciences University'),
(30924, 26353, 'en', 'name', 'Uiduk University'),
(30925, 26353, 'ko', 'name', 'ģœ„ė•ėŒ€ķ•™źµ'),
(30926, 26354, 'no_lang_code', 'name', 'MEgA Measuring Energy Apparatus (Czechia)'),
(30927, 26355, 'en', 'name', 'San Joaquin County Historical Society & Museum'),
(30928, 26356, 'no_lang_code', 'name', 'VOP (Czechia)'),
(30929, 26357, 'en', 'name', 'Vietnamese-German University'),
(30930, 26357, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Việt - Đức'),
(30931, 26358, 'en', 'name', 'Institute for Languages ​​and Cultures Leo Tolstoy'),
(30932, 26358, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ·Ń‹ŠŗŠ¾Š² Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ имени Š›ŃŒŠ²Š° Толстого'),
(30933, 26359, 'en', 'name', 'Cyprus College of Art'),
(30934, 26360, 'en', 'name', 'Tennessee Historical Society'),
(30935, 26361, 'en', 'name', 'Macon County History Museum'),
(30936, 26362, 'en', 'name', 'Gulf of Maine Lobster Foundation'),
(30937, 26363, 'no_lang_code', 'name', 'Dhurakij Pundit University'),
(30938, 26363, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø˜ąøøąø£ąøąø“ąøˆąøšąø±ąø“ąø‘ąø“ąø•ąø¢ą¹Œ'),
(30939, 26364, 'en', 'name', 'Finance and Economics Institute of Tajikistan'),
(30940, 26365, 'en', 'name', 'Caldwell West Caldwell Public Schools'),
(30941, 26366, 'en', 'name', 'Institute of Theology of Estonian Evangelical Lutheran Church'),
(30942, 26367, 'en', 'name', 'University of Santo Tomas–Legazpi'),
(30943, 26368, 'en', 'name', 'Leominster Public Library'),
(30944, 26369, 'no_lang_code', 'name', 'Borcad (Czechia)'),
(30945, 26370, 'en', 'name', 'Jissen Women''s University'),
(30946, 26370, 'ja', 'name', '実践儳子大学'),
(30947, 26371, 'en', 'name', 'Ehime Prefectural University of Health Science'),
(30948, 26371, 'ja', 'name', 'ę„›åŖ›ēœŒē«‹åŒ»ē™‚ęŠ€č”“å¤§å­¦'),
(30949, 26372, 'en', 'name', 'Massachusetts College of Liberal Arts'),
(30950, 26373, 'en', 'name', 'Coastal Society'),
(30951, 26374, 'en', 'name', 'New Mexico State University Carlsbad'),
(30952, 26375, 'pl', 'name', 'Wyższa Szkoła Handlu i Finansów Międzynarodowych im. Fryderyka Skarbka'),
(30953, 26376, 'en', 'name', 'Shakespeare and Company'),
(30954, 26377, 'en', 'name', 'Taipei National University of the Arts'),
(30955, 26377, 'zh', 'name', 'åœ‹ē«‹č‡ŗåŒ—č—č”“å¤§å­ø'),
(30956, 26378, 'en', 'name', 'Czech Society for Oriental Studies'),
(30957, 26379, 'en', 'name', 'Sichuan Conservatory of Music'),
(30958, 26379, 'zh', 'name', '四川音乐学院'),
(30959, 26380, 'en', 'name', 'Harapan Bangsa Institute of Technology'),
(30960, 26380, 'id', 'name', 'Institut Teknologi Harapan Bangsa'),
(30961, 26381, 'en', 'name', 'Boston Latin Academy'),
(30962, 26382, 'no_lang_code', 'name', 'Envites (Czechia)'),
(30963, 26383, 'id', 'name', 'Universitas Pesantren Tinggi Darul Ulum Jombang'),
(30964, 26384, 'no_lang_code', 'name', 'Lias Vintířov (Czechia)'),
(30965, 26385, 'en', 'name', 'Ural State Agrarian University'),
(30966, 26385, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30967, 26386, 'en', 'name', 'Eastern Asia University'),
(30968, 26386, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø­ąøµąøŖą¹€ąø—ąø“ąø£ą¹Œąø™ą¹€ąø­ą¹€ąøŠąøµąø¢'),
(30969, 26387, 'en', 'name', 'American Federation of Arts'),
(30970, 26388, 'en', 'name', 'Germantown Historical Society'),
(30971, 26389, 'en', 'name', 'Tashkent Institute of Textile and Light Industry'),
(30972, 26389, 'ru', 'name', 'Š¢ŠŠØŠšŠ•ŠŠ¢Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š•ŠšŠ”Š¢Š˜Š›Š¬ŠŠžŠ™ И Š›Š•Š“ŠšŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(30973, 26389, 'uz', 'name', 'TOSHKENT TO''QIMACHILIK VA YENGIL SANOAT INSTITUTI'),
(30974, 26390, 'en', 'name', 'Yashwantrao Chavan Maharashtra Open University'),
(30975, 26390, 'mr', 'name', 'यशवंतराव ą¤šą¤µą„ą¤¹ą¤¾ą¤£ ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(30976, 26391, 'pl', 'name', 'Uczelnia Techniczno-Handlowa im. Heleny Chodkowskiej'),
(30977, 26392, 'en', 'name', 'University of Iloilo'),
(30978, 26392, 'tl', 'name', 'Pamantasan ng Iloilo'),
(30979, 26393, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ال؄مام Ų§Ł„Ų£ŁˆŲ²Ų§Ų¹ŁŠ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(30980, 26393, 'fr', 'name', 'Al Imam Al Ouzai University'),
(30981, 26394, 'en', 'name', 'Islamic University of Niger'),
(30982, 26394, 'fr', 'name', 'UniversitƩ islamique de say'),
(30983, 26395, 'en', 'name', 'Saint Petersburg State Theatre Arts Academy'),
(30984, 26395, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠøŃŠŗŃƒŃŃŃ‚Š²Š°'),
(30985, 26396, 'en', 'name', 'Voronezh State Technical University'),
(30986, 26396, 'ru', 'name', 'Š’ŠžŠ ŠžŠŠ•Š–Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ Š¢Š•Š„ŠŠ˜Š§Š•Š”ŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(30987, 26397, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¹Ų¬Ł„ŁˆŁ† Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(30988, 26397, 'en', 'name', 'Ajloun National University'),
(30989, 26398, 'en', 'name', 'Cherkasy State Technological University'),
(30990, 26398, 'uk', 'name', 'Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠøŠ¹ Гержавний технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(30991, 26399, 'en', 'name', 'Cabell County Public Library'),
(30992, 26400, 'en', 'name', 'Southern Sakhalin Institute of Economics, Law and Computer Science'),
(30993, 26401, 'en', 'name', 'NIILM University'),
(30994, 26401, 'hi', 'name', 'ą¤Øą„€ą¤²ą¤® ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(30995, 26402, 'en', 'name', 'University of Saint Joseph'),
(30996, 26402, 'pt', 'name', 'Universidade de São José'),
(30997, 26402, 'zh', 'name', 'č–č‹„ē‘Ÿå¤§å­ø'),
(30998, 26403, 'en', 'name', 'Museum of Contemporary Art Chicago'),
(30999, 26404, 'en', 'name', 'Universiti Tun Abdul Razak'),
(31000, 26405, 'en', 'name', 'Tanzania Commission for Universities'),
(31001, 26406, 'cs', 'name', 'KrajskĆ” Nemocnice Liberec'),
(31002, 26407, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المجمعة'),
(31003, 26407, 'en', 'name', 'Majmaah University'),
(31004, 26408, 'en', 'name', 'Samuel Bogumił Linde College of Modern Languages'),
(31005, 26408, 'pl', 'name', 'Wyższa Szkoła Języków Obcych im. Samuela Bogumiła Lindego'),
(31006, 26409, 'en', 'name', 'Voronezh State University of Engineering Technologies'),
(31007, 26409, 'ru', 'name', 'Воронежский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ инженерных технологий'),
(31008, 26410, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų·ŁŠŲ±Ų§Ł† الامارات'),
(31009, 26410, 'en', 'name', 'Emirates Aviation University'),
(31010, 26411, 'en', 'name', 'Potti Sreeramulu Telugu University'),
(31011, 26411, 'ta', 'name', 'ą®¤ąÆ†ą®²ąÆą®™ąÆą®•ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(31012, 26411, 'te', 'name', 'ą°Ŗą±Šą°Ÿą±ą°Ÿą°æ ą°¶ą±ą°°ą±€ą°°ą°¾ą°®ą±ą°²ą± తెలుగు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(31013, 26412, 'no_lang_code', 'name', 'Řepařský Institut Semčice (Czechia)'),
(31014, 26413, 'it', 'name', 'Consorzio Interuniversitario per la Ricerca Tecnologica Nucleare'),
(31015, 26414, 'en', 'name', 'Moscow Institute of State Management and Law'),
(31016, 26414, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(31017, 26415, 'en', 'name', 'Sri Sai University'),
(31018, 26416, 'no_lang_code', 'name', 'Hop Research Institute (Czechia)'),
(31019, 26417, 'en', 'name', 'University of Caloocan City'),
(31020, 26417, 'tl', 'name', 'Pamantasan ng Lungsod ng Kalookan'),
(31021, 26418, 'en', 'name', 'California College of the Arts'),
(31022, 26419, 'en', 'name', 'Language Conservancy'),
(31023, 26420, 'en', 'name', 'Virgen Milagrosa University Foundation'),
(31024, 26421, 'en', 'name', 'Johnstown Area Heritage Association'),
(31025, 26422, 'no_lang_code', 'name', 'Å koda (Czechia)'),
(31026, 26423, 'id', 'name', 'Universitas Sisingamangaraja XII'),
(31027, 26424, 'en', 'name', 'Kiang Wu Nursing College of Macau'),
(31028, 26424, 'zh', 'name', 'ę¾³é—Øę±Ÿę¹–ęŠ¤ē†å­¦é™¢'),
(31029, 26425, 'en', 'name', 'Northwest Straits Foundation'),
(31030, 26426, 'no_lang_code', 'name', 'TTC Telekomunikace (Czechia)'),
(31031, 26427, 'en', 'name', 'Hanoi University'),
(31032, 26427, 'fr', 'name', 'Université de hanoï'),
(31033, 26427, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c HĆ  Nį»™i'),
(31034, 26428, 'en', 'name', 'Niigata University of Management'),
(31035, 26428, 'ja', 'name', 'ę–°ę½ŸēµŒå–¶å¤§å­¦'),
(31036, 26429, 'id', 'name', 'Universitas Flores'),
(31037, 26430, 'en', 'name', 'Abbe Museum'),
(31038, 26431, 'en', 'name', 'Slamka Consulting'),
(31039, 26432, 'en', 'name', 'Kaichi International University'),
(31040, 26432, 'ja', 'name', 'é–‹ę™ŗå›½éš›å¤§å­¦'),
(31041, 26433, 'id', 'name', 'Universitas Muara Bungo'),
(31042, 26434, 'en', 'name', 'NationsUniversity'),
(31043, 26435, 'ja', 'name', 'ę±å¤§é˜Ŗå¤§å­¦ćƒ»ę±å¤§é˜Ŗå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(31044, 26435, 'no_lang_code', 'name', 'Higashiosaka College & Higashiosaka Junior College'),
(31045, 26436, 'en', 'name', 'Stephen Phillips Memorial Trust House in Salem'),
(31046, 26437, 'id', 'name', 'Institut Teknologi Indonesia'),
(31047, 26438, 'en', 'name', 'Build Bright University'),
(31048, 26438, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž”įŸ€įž›įž”įŸ’įžšįž¶įž™ įžšįž¶įž‡įž’įž¶įž“įžøįž—įŸ’įž“įŸ†įž–įŸįž‰'),
(31049, 26439, 'en', 'name', 'Wisconsin Department of Administration'),
(31050, 26440, 'en', 'name', 'Hayfield University'),
(31051, 26441, 'en', 'name', 'Buffalo History Museum'),
(31052, 26442, 'en', 'name', 'South Carolina State Museum'),
(31053, 26443, 'en', 'name', 'Society for Values in Higher Education'),
(31054, 26444, 'en', 'name', 'University of Human Arts and Sciences'),
(31055, 26444, 'ja', 'name', 'äŗŗé–“ē·åˆē§‘å­¦å¤§å­¦'),
(31056, 26445, 'en', 'name', 'Jain Vishva Bharati University'),
(31057, 26445, 'hi', 'name', 'ą¤œą„ˆą¤Ø ą¤µą¤æą¤¶ą„ą¤µ ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(31058, 26446, 'en', 'name', 'Jesus University'),
(31059, 26447, 'en', 'name', 'MingDao University'),
(31060, 26447, 'zh', 'name', 'ę˜Žé“å¤§å­ø'),
(31061, 26448, 'en', 'name', 'Saint - Petersburg State Chemical Pharmaceutical Academy'),
(31062, 26448, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń химико-Ń„Š°Ń€Š¼Š°Ń†ŠµŠ²Ń‚ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(31063, 26449, 'cs', 'name', 'Matice MoravskĆ”'),
(31064, 26450, 'id', 'name', 'Universitas Swadaya Gunung Jati'),
(31065, 26451, 'no_lang_code', 'name', 'UniControls (Czechia)'),
(31066, 26452, 'no_lang_code', 'name', 'VÚHŽ (Czechia)'),
(31067, 26453, 'en', 'name', 'Newark Public Library'),
(31068, 26454, 'en', 'name', 'Nosov Magnitogorsk State Technical University'),
(31069, 26454, 'ru', 'name', 'ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31070, 26455, 'en', 'name', 'Maryland University of Integrative Health'),
(31071, 26456, 'en', 'name', 'International School for Social and Business Studies'),
(31072, 26456, 'sl', 'name', 'Mednarodna Fakulteta za Družbene in Poslovne Študije'),
(31073, 26457, 'lo', 'name', 'ąŗ”ąŗ°ąŗ«ąŗ²ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ą»„ąŗ„ąŗŖąŗøąŗžąŗ²ąŗ™ąŗøąŗ§ąŗ»ąŗ‡'),
(31074, 26457, 'no_lang_code', 'name', 'Souphanouvong University'),
(31075, 26458, 'en', 'name', 'Columbus Museum of Art'),
(31076, 26459, 'en', 'name', 'Electric Power University'),
(31077, 26459, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Điện lį»±c'),
(31078, 26460, 'sl', 'name', 'Å ola za Risanje in Slikanje'),
(31079, 26461, 'en', 'name', 'Idaho Department of Parks and Recreation'),
(31080, 26462, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ і Š¼Š°ŃŃ‚Š°Ń†Ń‚Š²Š°Ńž'),
(31081, 26462, 'en', 'name', 'Belarusian State University of Culture and Arts'),
(31082, 26462, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(31083, 26463, 'no_lang_code', 'name', 'KM Trade (Czechia)'),
(31084, 26464, 'ar', 'name', 'المعهد العالى للدراسات Ų§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠŲ©'),
(31085, 26464, 'en', 'name', 'Higher Institute of Islamic Studies'),
(31086, 26465, 'en', 'name', 'Saint-Petersburg Institute of Economy and Management'),
(31087, 26465, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(31088, 26466, 'en', 'name', 'National University of Theatre and Film I.L. Caragiale'),
(31089, 26466, 'ro', 'name', 'Universitatea Naţională de Artă Teatrală şi Cinematografică I.L.Caragiale'),
(31090, 26467, 'no_lang_code', 'name', 'KKCG (Czechia)'),
(31091, 26468, 'en', 'name', 'National Farmers Union'),
(31092, 26469, 'en', 'name', 'Balch Institute for Ethnic Studies'),
(31093, 26470, 'en', 'name', 'YIVO Institute for Jewish Research'),
(31094, 26471, 'en', 'name', 'Tohoku Institute of Technology'),
(31095, 26471, 'ja', 'name', 'ę±åŒ—å·„ę„­å¤§å­¦'),
(31096, 26472, 'en', 'name', 'Motlow State Community College'),
(31097, 26473, 'en', 'name', 'Nanyang Academy of Fine Arts'),
(31098, 26473, 'ta', 'name', 'ą®Øą®©ąÆą®Æą®¾ą®™ąÆ ą®…ą®•ą®¾ą®Ÿą®®ą®æ ą®†ą®ƒą®ŖąÆ ą®ƒą®ŖąÆˆą®©ąÆ ą®†ą®°ąÆą®ŸąÆą®øąÆ'),
(31099, 26474, 'en', 'name', 'Armavir Linguistic Social Institution'),
(31100, 26474, 'ru', 'name', 'Армавирский лингвистический ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(31101, 26475, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© كركوك'),
(31102, 26475, 'en', 'name', 'University of Kirkuk'),
(31103, 26476, 'en', 'name', 'Saitama Institute of Technology'),
(31104, 26476, 'ja', 'name', 'åŸ¼ēŽ‰å·„ę„­å¤§å­¦'),
(31105, 26477, 'en', 'name', 'International Institute of Management LINK'),
(31106, 26477, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента Š›Š˜ŠŠš'),
(31107, 26478, 'bn', 'name', 'বাংলাদেশ ইসলামী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(31108, 26478, 'en', 'name', 'Bangladesh Islami University'),
(31109, 26479, 'en', 'name', 'Staten Island Historical Society'),
(31110, 26480, 'en', 'name', 'Aleksander Zelwerowicz National Academy of Dramatic Art in Warsaw'),
(31111, 26480, 'pl', 'name', 'Akademia Teatralna im. Aleksandra Zelwerowicza w Warszawie'),
(31112, 26481, 'en', 'name', 'Kyushu Institute of Information Sciences'),
(31113, 26481, 'ja', 'name', 'ä¹å·žęƒ…å ±å¤§å­¦'),
(31114, 26482, 'en', 'name', 'Czech Science Foundation'),
(31115, 26483, 'fr', 'name', 'Institut PrivƩ de Gestion Institut SupƩrieur de Technologie Industrielle'),
(31116, 26484, 'en', 'name', 'Southern Maryland Regional Library Association'),
(31117, 26485, 'en', 'name', 'Thongsook College'),
(31118, 26485, 'th', 'name', 'วณทยาคัยทองสุข'),
(31119, 26486, 'en', 'name', 'Murmansk Arctic State University'),
(31120, 26486, 'ru', 'name', 'ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠøŠ¹ арктический Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31121, 26487, 'en', 'name', 'National Information and Consulting Centre for Culture'),
(31122, 26488, 'en', 'name', 'Nagoya University of Arts'),
(31123, 26488, 'ja', 'name', 'åå¤å±‹čŠøč”“å¤§å­¦'),
(31124, 26489, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ±ŁŠŁ…ŁŠ'),
(31125, 26489, 'en', 'name', 'University of Buraimi'),
(31126, 26490, 'en', 'name', 'Osaka University of Comprehensive Children Education'),
(31127, 26490, 'ja', 'name', 'å¤§é˜Ŗē·åˆäæč‚²å¤§å­¦'),
(31128, 26491, 'en', 'name', 'Moscow Institute of Entrepreneurship and Law'),
(31129, 26491, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° Šø права'),
(31130, 26492, 'en', 'name', 'Radio America'),
(31131, 26493, 'en', 'name', 'Krasnoyarsk State Institute of Art'),
(31132, 26493, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(31133, 26494, 'en', 'name', 'North Eastern University'),
(31134, 26494, 'th', 'name', 'ดหาวณทยาคัยภาคตะวันออกเฉียงเหนือ'),
(31135, 26495, 'en', 'name', 'Currier Museum of Art'),
(31136, 26496, 'en', 'name', 'Pacific Coast University'),
(31137, 26497, 'en', 'name', 'MF Norwegian School of Theology, Religion and Society'),
(31138, 26498, 'en', 'name', 'National Institute of Sports and Tourism of Turkmenistan'),
(31139, 26499, 'az', 'name', 'Azərbaycan Texniki Universiteti'),
(31140, 26499, 'en', 'name', 'Azerbaijan Technical University'),
(31141, 26499, 'ru', 'name', 'АзербайГжанский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31142, 26500, 'en', 'name', 'Old Swedes Foundation'),
(31143, 26501, 'en', 'name', 'Catholic University Our Lady of Good Counsel'),
(31144, 26501, 'sq', 'name', 'Kompleksi Spitalor Universitar "Zoja e Kƫshillit tƫ Mirƫ"'),
(31145, 26502, 'en', 'name', 'International University of Logistics and Transport in Wrocław'),
(31146, 26502, 'pl', 'name', 'Międzynarodowa Wyższa Szkoła Logistyki i Transportu we Wrocławiu'),
(31147, 26503, 'ja', 'name', 'å°šēµ…å­¦é™¢å¤§å­¦'),
(31148, 26503, 'no_lang_code', 'name', 'Shokei Gakuin University'),
(31149, 26504, 'en', 'name', 'Wells National Estuarine Research Reserve'),
(31150, 26505, 'en', 'name', 'Pennsbury Manor'),
(31151, 26506, 'en', 'name', 'Spiru Haret University'),
(31152, 26506, 'ro', 'name', 'Universitatea Spiru Haret'),
(31153, 26507, 'en', 'name', 'St. Catherine University'),
(31154, 26507, 'ja', 'name', 'č–ć‚«ć‚æćƒŖćƒŠå¤§å­¦'),
(31155, 26508, 'en', 'name', 'University Press of Kansas'),
(31156, 26509, 'en', 'name', 'Asian Art Museum'),
(31157, 26510, 'en', 'name', 'Manila Central University'),
(31158, 26511, 'en', 'name', 'Mewar University'),
(31159, 26511, 'hi', 'name', 'ą¤®ą„‡ą¤µą¤¾ą¤”ą¤¼ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(31160, 26512, 'en', 'name', 'Central Agency for Jewish Education'),
(31161, 26513, 'ja', 'name', 'ę±äŗ¬ęˆå¾³å¤§å­¦'),
(31162, 26513, 'no_lang_code', 'name', 'Tokyo Seitoku University'),
(31163, 26514, 'en', 'name', 'National Defence Academy of Latvia'),
(31164, 26514, 'lv', 'name', 'Latvijas Nacionālā Aizsardzības Akadēmija'),
(31165, 26515, 'en', 'name', 'Concordia University'),
(31166, 26516, 'en', 'name', 'Multnomah University'),
(31167, 26517, 'en', 'name', 'Levine Museum of the New South'),
(31168, 26518, 'en', 'name', 'Defense Acquisition University'),
(31169, 26519, 'no_lang_code', 'name', 'AEC (Czechia)'),
(31170, 26520, 'en', 'name', 'Sardar Vallabhbhai Patel University of Agriculture & Technology'),
(31171, 26520, 'hi', 'name', 'सरदार ą¤µą¤²ą„ą¤²ą¤­ą¤­ą¤¾ą¤ˆ ą¤Ŗą¤Ÿą„‡ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤—ą„ą¤°ą„€ą¤•ą¤²ą„ą¤šą¤° & ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(31172, 26521, 'en', 'name', 'GEA College'),
(31173, 26522, 'no_lang_code', 'name', 'Lƶw & Spol (Czechia)'),
(31174, 26523, 'en', 'name', 'Osaka University of Economics and Law'),
(31175, 26523, 'ja', 'name', 'å¤§é˜ŖēµŒęøˆę³•ē§‘å¤§å­¦'),
(31176, 26524, 'en', 'name', 'Indonesian Institute of Informatics'),
(31177, 26524, 'id', 'name', 'Institut Informatika Indonesia'),
(31178, 26525, 'en', 'name', 'Aichi Prefectural University of Fine Arts and Music'),
(31179, 26525, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹čŠøč”“å¤§å­¦'),
(31180, 26526, 'en', 'name', 'China Academy of Art'),
(31181, 26526, 'zh', 'name', 'äø­å›½ē¾ŽęœÆå­¦é™¢'),
(31182, 26527, 'en', 'name', 'Siberian State University of Physical Education and Sport'),
(31183, 26527, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(31184, 26528, 'no_lang_code', 'name', 'Aseko (Czechia)'),
(31185, 26529, 'en', 'name', 'National University of Advanced Legal Studies'),
(31186, 26530, 'bs', 'name', 'Fakultet za državne i evropske studije'),
(31187, 26530, 'en', 'name', 'Faculty for State and European Studies, Faculty of Administrative and European Studies'),
(31188, 26531, 'en', 'name', 'National Council of La Raza'),
(31189, 26532, 'en', 'name', 'Mawlamyine University'),
(31190, 26532, 'my', 'name', 'į€™į€±į€¬į€ŗį€œį€™į€¼į€­į€Æį€„į€ŗ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(31191, 26533, 'en', 'name', 'Hankou University'),
(31192, 26533, 'zh', 'name', 'ę±‰å£å­¦é™¢'),
(31193, 26534, 'en', 'name', 'Sevastopol National University of Nuclear Energy and Industry'),
(31194, 26534, 'ru', 'name', 'Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ ŃŠ½ŠµŃ€Š³ŠøŠø Šø ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(31195, 26534, 'uk', 'name', 'Š”ŠµŠ²Š°ŃŃ‚Š¾ŠæŠ¾Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ“ŠµŃ€Š½Š¾Ń— енергії та промисловості'),
(31196, 26535, 'fr', 'name', 'UniversitƩ de mbandaka'),
(31197, 26535, 'no_lang_code', 'name', 'University of Mbandaka'),
(31198, 26536, 'en', 'name', 'Busan National University of Education'),
(31199, 26536, 'ko', 'name', 'ė¶€ģ‚°źµģœ”ėŒ€ķ•™źµ'),
(31200, 26537, 'en', 'name', 'International University of Struga'),
(31201, 26537, 'mk', 'name', 'ŠœŠµŃ“ŃƒŠ½Š°Ń€Š¾Š“ŠµŠ½ Универзитет Š”Ń‚Ń€ŃƒŠ³Š°'),
(31202, 26538, 'en', 'name', 'Hokkaido Bunkyo University'),
(31203, 26538, 'ja', 'name', 'åŒ—ęµ·é“ę–‡ę•™å¤§å­¦'),
(31204, 26539, 'en', 'name', 'Kazakh-British Technical University'),
(31205, 26539, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½-Британ техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(31206, 26539, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾-Британский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31207, 26540, 'en', 'name', 'Institute of Management Sciences Lahore'),
(31208, 26541, 'en', 'name', 'LCC International University'),
(31209, 26541, 'lt', 'name', 'LCC tarptautinis universitetas'),
(31210, 26542, 'en', 'name', 'Victoria University'),
(31211, 26543, 'en', 'name', 'Uttaradit Rajabhat University'),
(31212, 26543, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø­ąøøąø•ąø£ąø”ąø“ąø•ąø–ą¹Œ'),
(31213, 26544, 'id', 'name', 'Universitas Merdeka Malang'),
(31214, 26545, 'en', 'name', 'Ossabaw Island Foundation'),
(31215, 26546, 'en', 'name', 'Mashantucket Pequot Museum and Research Center'),
(31216, 26547, 'en', 'name', 'University of the East Ramon Magsaysay Memorial Medical Center'),
(31217, 26548, 'en', 'name', 'Kobe City College of Nursing'),
(31218, 26548, 'ja', 'name', 'ē„žęˆøåø‚ēœ‹č­·å¤§å­¦'),
(31219, 26549, 'en', 'name', 'NorthEast Regional Epilepsy Group'),
(31220, 26550, 'en', 'name', 'New York University Press'),
(31221, 26551, 'en', 'name', 'Sukhishvili Teaching University'),
(31222, 26552, 'en', 'name', 'American Academic Research Institute in Iraq'),
(31223, 26553, 'fr', 'name', 'Institut Africain d''Informatique'),
(31224, 26554, 'en', 'name', 'Youngsan University'),
(31225, 26554, 'ko', 'name', 'ģ˜ģ‚°ėŒ€ķ•™źµ'),
(31226, 26555, 'en', 'name', 'Razavi University of Islamic Sciences'),
(31227, 26555, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… Ų§Ų³Ł„Ų§Ł…ŪŒ رضوی'),
(31228, 26556, 'ja', 'name', '佐久大学'),
(31229, 26556, 'no_lang_code', 'name', 'Saku University'),
(31230, 26557, 'en', 'name', 'Nizhny Novgorod State Conservatory named after M.I. Glinka'),
(31231, 26557, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени М. И. Глинки [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(31232, 26558, 'no_lang_code', 'name', 'Tanadgusix (United States)'),
(31233, 26559, 'en', 'name', 'Athens Regional Library System'),
(31234, 26560, 'no_lang_code', 'name', 'Adikavi Nannaya University'),
(31235, 26560, 'te', 'name', 'ఆదికవి ą°Øą°Øą±ą°Øą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(31236, 26561, 'en', 'name', 'Institute of Contemporary Art'),
(31237, 26562, 'en', 'name', 'Research Foundation for the State University of New York'),
(31238, 26563, 'en', 'name', 'University of South Asia'),
(31239, 26563, 'ur', 'name', 'جامعہ Ų¬Ł†ŁˆŲØŪŒ ایؓیا'),
(31240, 26564, 'en', 'name', 'Santa Monica Public Library'),
(31241, 26565, 'en', 'name', 'Hakodate University'),
(31242, 26565, 'ja', 'name', '函館大学'),
(31243, 26566, 'en', 'name', 'Central Ukrainian National Technical University'),
(31244, 26566, 'uk', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31245, 26567, 'en', 'name', 'Daehan Theological University'),
(31246, 26567, 'ko', 'name', 'ėŒ€ķ•œģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(31247, 26568, 'en', 'name', 'Sebastian Kolowa Memorial University'),
(31248, 26568, 'sw', 'name', 'Chuo Kikuu cha Kumbukumbu cha Sebastian Kolowa'),
(31249, 26569, 'en', 'name', 'Ellis University'),
(31250, 26570, 'en', 'name', 'Kazan State Conservatoire named after N. Zhiganov'),
(31251, 26570, 'ru', 'name', 'ŠšŠ°Š·Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń консерватории им. Š.Š“.Жиганова'),
(31252, 26571, 'en', 'name', 'Busan Presbyterian University'),
(31253, 26571, 'ko', 'name', 'ė¶€ģ‚°ģž„ģ‹ ėŒ€ķ•™źµ'),
(31254, 26572, 'en', 'name', 'Clark County Museum'),
(31255, 26573, 'en', 'name', 'Native American Center for the Living Arts'),
(31256, 26574, 'en', 'name', 'Iran Banking Institute'),
(31257, 26574, 'fa', 'name', 'مؤسسه Ų¹Ų§Ł„ŪŒ ŲØŲ§Ł†Ś©ŲÆŲ§Ų±ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(31258, 26575, 'no_lang_code', 'name', 'Deona Medi (Czechia)'),
(31259, 26576, 'en', 'name', 'North Enterprise Institute'),
(31260, 26576, 'ru', 'name', 'Деверный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(31261, 26577, 'no_lang_code', 'name', 'Theatre for a New Audience'),
(31262, 26578, 'id', 'name', 'Universitas Slamet Riyadi'),
(31263, 26579, 'en', 'name', 'Ivanovo State Power University'),
(31264, 26579, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ивановский Š³Š¾ŃŃƒŠ“арственный ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’.И. Ленина'),
(31265, 26580, 'no_lang_code', 'name', 'Nanhua University'),
(31266, 26580, 'zh', 'name', 'å—čÆå¤§å­ø'),
(31267, 26581, 'en', 'name', 'Moravian Gallery in Brno'),
(31268, 26582, 'en', 'name', 'Institute of Space Technology'),
(31269, 26582, 'ur', 'name', 'Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ آف اسپیس Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(31270, 26583, 'en', 'name', 'Marine Animal Rescue Society'),
(31271, 26584, 'en', 'name', 'Chaiyaphum Rajabhat University'),
(31272, 26584, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŠąø±ąø¢ąø ąø¹ąø”ąø“'),
(31273, 26585, 'en', 'name', 'Great Lakes Commission'),
(31274, 26586, 'en', 'name', 'French Cultural Center'),
(31275, 26587, 'no_lang_code', 'name', 'Elis Plzen (Czechia)'),
(31276, 26588, 'en', 'name', 'Kyiv National I. K. Karpenko-Kary Theatre, Cinema and Television University'),
(31277, 26588, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ театра, кино Šø Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ имени И. К. ŠšŠ°Ń€ŠæŠµŠ½ŠŗŠ¾-ŠšŠ°Ń€Š¾Š³Š¾'),
(31278, 26588, 'uk', 'name', 'ŠšŠøĢŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°ĢŠ»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ Ń‚ŠµŠ°ĢŃ‚Ń€Ńƒ, кіно́ і Ń‚ŠµŠ»ŠµŠ±Š°ĢŃ‡ŠµŠ½Š½Ń і́мені Іва́на ŠšŠ°ĢŃ€ŠæŠ¾Š²ŠøŃ‡Š° ŠšŠ°Ń€ŠæŠµĢŠ½ŠŗŠ°-ŠšŠ°ĢŃ€Š¾Š³Š¾'),
(31279, 26589, 'no_lang_code', 'name', 'SVCS Process Innovation (Czechia)'),
(31280, 26590, 'en', 'name', 'Richard Bland College'),
(31281, 26591, 'no_lang_code', 'name', 'OCHI Inženýring (Czechia)'),
(31282, 26592, 'en', 'name', 'New Orleans Public Library'),
(31283, 26593, 'en', 'name', 'Saint Petersburg Institute of International Economic Relations, Economics and Law'),
(31284, 26593, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒĢŃ‚ Š²Š½ŠµŃˆŠ½ŠµŃŠŗŠ¾Š½Š¾Š¼ŠøĢŃ‡ŠµŃŠŗŠøŃ… ŃŠ²ŃĢŠ·ŠµŠ¹, ŃŠŗŠ¾Š½Š¾ĢŠ¼ŠøŠŗŠø Šø пра́ва, Š˜Š’Š­Š”Š­ĢŠŸ'),
(31285, 26594, 'no_lang_code', 'name', 'Instantview (United Kingdom)'),
(31286, 26595, 'bn', 'name', 'দারুল ইহসান ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(31287, 26595, 'en', 'name', 'Darul Ihsan University'),
(31288, 26596, 'en', 'name', 'Carnegie Museum of Art'),
(31289, 26597, 'en', 'name', 'Armavir State Pedagogical Academy'),
(31290, 26597, 'ru', 'name', 'Армавирский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31291, 26598, 'en', 'name', 'Earth Force'),
(31292, 26599, 'id', 'name', 'Universitas Iqra Buru'),
(31293, 26600, 'no_lang_code', 'name', 'CoorsTek (Czechia)'),
(31294, 26601, 'en', 'name', 'Dagestan State University'),
(31295, 26601, 'ru', 'name', 'Дагестанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31296, 26602, 'en', 'name', 'John L. Miller Great Neck North High School'),
(31297, 26603, 'no_lang_code', 'name', 'Lingaya''s Vidyapeeth'),
(31298, 26604, 'no_lang_code', 'name', 'Speel Praha (Czechia)'),
(31299, 26605, 'de', 'name', 'Alanus Hochschule für Kunst und Gesellschaft'),
(31300, 26605, 'en', 'name', 'Alanus University of Arts and Social Sciences'),
(31301, 26606, 'en', 'name', 'International University College Of Technology'),
(31302, 26606, 'ms', 'name', 'Kolej Universiti Teknologi Antarabangsa Twintech'),
(31303, 26607, 'en', 'name', 'Royal University of Fine Arts'),
(31304, 26607, 'fr', 'name', 'UniversitƩ royale des beaux-arts'),
(31305, 26607, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įžœįž·įž…įž·įžįŸ’įžšįžŸįž·įž›įŸ’įž”įŸˆ'),
(31306, 26608, 'en', 'name', 'Tomsk State University of Architecture and Building'),
(31307, 26608, 'ru', 'name', 'Томский Š³Š¾ŃŃƒŠ“арственный Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31308, 26609, 'en', 'name', 'Central Community College'),
(31309, 26610, 'en', 'name', 'Sumy State University'),
(31310, 26610, 'ru', 'name', 'Думский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31311, 26610, 'uk', 'name', 'Думський Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31312, 26611, 'en', 'name', 'Historic New England'),
(31313, 26612, 'id', 'name', 'Universitas Islam Al-Azhar Mataram'),
(31314, 26613, 'en', 'name', 'National Experimental University of the Armed Forces'),
(31315, 26613, 'es', 'name', 'Universidad Nacional Experimental PolitƩcnica de la Fuerza Armada Bolivariana'),
(31316, 26614, 'en', 'name', 'Charleston County Public Library'),
(31317, 26615, 'en', 'name', 'Nation University'),
(31318, 26615, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø™ąøŠąø±ą¹ˆąø™'),
(31319, 26616, 'en', 'name', 'Marine Mammal Center'),
(31320, 26617, 'en', 'name', 'Kenton County Public Library'),
(31321, 26618, 'en', 'name', 'University of Health Sciences Antigua'),
(31322, 26619, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ©'),
(31323, 26619, 'en', 'name', 'Iraqi University'),
(31324, 26620, 'en', 'name', 'U.S. Association of Former Members of Congress'),
(31325, 26621, 'en', 'name', 'Dire Dawa University'),
(31326, 26622, 'no_lang_code', 'name', 'B&C Dopravnƭ SystƩmy (Czechia)'),
(31327, 26623, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ĢŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń ŃŃƒĢŠ²ŃŠ·Ń–'),
(31328, 26623, 'en', 'name', 'Belarusian State Academy of Telecommunications'),
(31329, 26623, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠ²ŃŠ·Šø'),
(31330, 26624, 'en', 'name', 'Museum of Contemporary Art, Los Angeles'),
(31331, 26625, 'en', 'name', 'Northwest Maritime Center'),
(31332, 26626, 'en', 'name', 'Methodist Theological University'),
(31333, 26627, 'en', 'name', 'Institute of Advanced Media Arts and Sciences'),
(31334, 26627, 'ja', 'name', 'ęƒ…å ±ē§‘å­¦čŠøč”“å¤§å­¦é™¢å¤§å­¦'),
(31335, 26628, 'ja', 'name', 'ę±åŒ—ę–‡åŒ–å­¦åœ’å¤§å­¦'),
(31336, 26628, 'no_lang_code', 'name', 'Tohoku Bunka Gakuen University'),
(31337, 26629, 'bn', 'name', 'ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ ফর উইমেন'),
(31338, 26629, 'en', 'name', 'Asian University for Women'),
(31339, 26630, 'id', 'name', 'Universitas Muhammadiyah Prof Dr Hamka'),
(31340, 26631, 'en', 'name', 'Rostov State Rakhmaninov Conservatory'),
(31341, 26631, 'ru', 'name', 'Š Š¾ŃŃ‚Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. Š”.Š’. Рахманинова'),
(31342, 26632, 'en', 'name', 'Olive–Harvey College'),
(31343, 26633, 'en', 'name', 'ICFAI University, Mizoram'),
(31344, 26634, 'en', 'name', 'Buddhist and Pali University of Sri Lanka'),
(31345, 26634, 'si', 'name', 'ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶¶ą·žą¶Æą·Šą¶° ą·„ą· ą¶“ą·ą¶½ą·’ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(31346, 26635, 'en', 'name', 'Clinton-Macomb Public Library'),
(31347, 26636, 'en', 'name', 'North Slope Borough'),
(31348, 26637, 'no_lang_code', 'name', 'Fite (Czechia)'),
(31349, 26638, 'ja', 'name', 'ē¾Žä½œå¤§å­¦'),
(31350, 26638, 'no_lang_code', 'name', 'Mimasaka University'),
(31351, 26639, 'en', 'name', 'Maebashi Institute of Technology'),
(31352, 26639, 'ja', 'name', 'å‰ę©‹å·„ē§‘å¤§å­¦'),
(31353, 26640, 'en', 'name', 'Holy Angel University'),
(31354, 26640, 'tl', 'name', 'Pamantasang Holy Angel'),
(31355, 26641, 'cs', 'name', 'Muzeum východních Čech'),
(31356, 26641, 'en', 'name', 'East Bohemian Museum'),
(31357, 26642, 'en', 'name', 'Turkmen State Institute of Architecture and Construction'),
(31358, 26643, 'en', 'name', 'Primary Source'),
(31359, 26644, 'en', 'name', 'St. Louis County Missouri'),
(31360, 26645, 'en', 'name', 'Ekaterinburg State Theatre Institute'),
(31361, 26645, 'ru', 'name', 'Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(31362, 26646, 'en', 'name', 'Byzantine Studies Association of North America'),
(31363, 26647, 'en', 'name', 'University of West Yangon'),
(31364, 26647, 'my', 'name', 'ရန်ကုန် နနောက်ပိုင်း į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(31365, 26648, 'en', 'name', 'Tuscaloosa Public Library'),
(31366, 26649, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الرباط Ų§Ł„ŁˆŲ·Ł†ŁŠ'),
(31367, 26649, 'en', 'name', 'National Ribat University'),
(31368, 26650, 'en', 'name', 'Kyiv Slavonic University'),
(31369, 26650, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠ¾Š³Š¾ славістичного ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ'),
(31370, 26651, 'en', 'name', 'Dr. Hari Singh Gour University'),
(31371, 26651, 'hi', 'name', 'ą¤”ą„‰. हरिसिंह ą¤—ą„Œą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(31372, 26652, 'no_lang_code', 'name', 'Ujp Praha (Czechia)'),
(31373, 26653, 'no_lang_code', 'name', 'Fishmaster (United States)'),
(31374, 26654, 'en', 'name', 'Downeast Institute'),
(31375, 26655, 'no_lang_code', 'name', 'Lajovic Tuba Embalaža (Slovenia)'),
(31376, 26656, 'en', 'name', 'Kursk State Agricultural Academy named after Professor II Ivanova'),
(31377, 26656, 'ru', 'name', 'ŠšŃƒŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени профессора Иванова II'),
(31378, 26657, 'en', 'name', 'Lafayette Science Museum'),
(31379, 26658, 'en', 'name', 'Universities at Medway'),
(31380, 26659, 'en', 'name', 'Mark Twain House and Museum'),
(31381, 26660, 'en', 'name', 'Hartford Seminary'),
(31382, 26661, 'en', 'name', 'State Legislative Leaders Foundation'),
(31383, 26662, 'pl', 'name', 'Wyższa Szkoła Kultury Prawa i Sztuki Marketingu'),
(31384, 26663, 'en', 'name', 'Tilak Maharashtra Vidyapeeth'),
(31385, 26663, 'mr', 'name', 'ą¤Ÿą¤æą¤³ą¤• ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(31386, 26664, 'en', 'name', 'Seoul National University of Education'),
(31387, 26664, 'ko', 'name', 'ģ„œģšøźµģœ”ėŒ€ķ•™źµ'),
(31388, 26665, 'en', 'name', 'Kobe International University'),
(31389, 26665, 'ja', 'name', 'ē„žęˆøå›½éš›å¤§å­¦'),
(31390, 26666, 'id', 'name', 'Universitas Mahaputra Muhammad Yamin'),
(31391, 26667, 'en', 'name', 'CECOS University'),
(31392, 26668, 'en', 'name', 'Academy of Choral Arts named after V Popov'),
(31393, 26668, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ хорового ŠøŃŠŗŃƒŃŃŃ‚ва'),
(31394, 26669, 'en', 'name', 'JosƩ Rizal University'),
(31395, 26669, 'tl', 'name', 'Pamantasang JosƩ Rizal'),
(31396, 26670, 'no_lang_code', 'name', 'Jihostroj (Czechia)'),
(31397, 26671, 'no_lang_code', 'name', 'Central European Data Agency (Czechia)'),
(31398, 26672, 'en', 'name', 'Southeast Bangkok College'),
(31399, 26672, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø‹ąø²ąø˜ą¹Œąø­ąøµąøŖąø—ą¹Œąøšąø²ąø‡ąøąø­ąø'),
(31400, 26673, 'en', 'name', 'Hainan Tropical Ocean University'),
(31401, 26673, 'zh', 'name', 'ęµ·å—ēƒ­åø¦ęµ·ę“‹å­¦é™¢'),
(31402, 26674, 'en', 'name', 'Public Radio International'),
(31403, 26675, 'en', 'name', 'Chelyabinsk Institute of Economics and Law named after M.V.Ladoshin'),
(31404, 26675, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права имени M.V.Ladoshin'),
(31405, 26676, 'en', 'name', 'Samarkand State Architectural and Civil-Engineering Institute'),
(31406, 26676, 'uz', 'name', 'Samarqand davlat arxitektura qurilish instituti'),
(31407, 26677, 'id', 'name', 'Universitas Achmad Yani'),
(31408, 26678, 'no_lang_code', 'name', 'TamƔstslikt Cultural Institute'),
(31409, 26679, 'en', 'name', 'MVN University'),
(31410, 26680, 'en', 'name', 'Oregon Historical Society'),
(31411, 26681, 'en', 'name', 'Moravian Music Foundation'),
(31412, 26682, 'en', 'name', 'Medici Archive Project'),
(31413, 26683, 'en', 'name', 'National Law University Jodhpur'),
(31414, 26684, 'no_lang_code', 'name', 'Lenam (Czechia)'),
(31415, 26685, 'de', 'name', 'PƤpstliche UniversitƤt Urbaniana'),
(31416, 26685, 'en', 'name', 'Pontifical Urban University'),
(31417, 26685, 'fr', 'name', 'UniversitƩ pontificale urbaniana'),
(31418, 26685, 'it', 'name', 'Pontificia UniversitĆ  Urbaniana'),
(31419, 26686, 'en', 'name', 'Mari State University'),
(31420, 26686, 'ru', 'name', 'ŠœŠ°Ń€ŠøŠ¹ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31421, 26687, 'no_lang_code', 'name', 'VVUU (Czechia)'),
(31422, 26688, 'en', 'name', 'Nagasaki University of Foreign Studies'),
(31423, 26688, 'ja', 'name', 'é•·å“Žå¤–å›½čŖžå¤§å­¦'),
(31424, 26689, 'en', 'name', 'Learning Through an Expanded Arts Program'),
(31425, 26690, 'en', 'name', 'Conception Seminary College'),
(31426, 26691, 'en', 'name', 'Rensselaer County Historical Society'),
(31427, 26692, 'km', 'name', 'įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“ā€‹ įžŸįŸŠįž·įžįž·įž€'),
(31428, 26692, 'no_lang_code', 'name', 'Setec Institute'),
(31429, 26693, 'en', 'name', 'Astrakhan State Medical University'),
(31430, 26693, 'ru', 'name', 'Астраханский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Университет'),
(31431, 26694, 'en', 'name', 'West Ural Institute of Economics and Law'),
(31432, 26694, 'ru', 'name', 'ЗапаГно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(31433, 26695, 'no_lang_code', 'name', 'Stomix (Czechia)'),
(31434, 26696, 'en', 'name', 'University of Languages and International Studies'),
(31435, 26696, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Ngoįŗ”i ngữ, ĐẔi hį»c Quốc gia HĆ  Nį»™i'),
(31436, 26697, 'en', 'name', 'Mordovia State Pedagogical Institute named after ME Evseveva'),
(31437, 26697, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ "ŠœŠ¾Ń€Š“Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени М. Š•. Š•Š²ŃŠµŠ²ŃŒŠµŠ²Š°"'),
(31438, 26698, 'en', 'name', 'Moscow State Forest University'),
(31439, 26698, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ леса'),
(31440, 26699, 'en', 'name', 'Kharkiv National Agrarian University named after V.V.Dokuchajev'),
(31441, 26699, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ім. Š’.Š’. Š”Š¾ŠŗŃƒŃ‡Š°Ń”Š²Š°'),
(31442, 26700, 'en', 'name', 'El Paso Children''s Hospital'),
(31443, 26701, 'en', 'name', 'Dance Notation Bureau'),
(31444, 26702, 'en', 'name', 'Institute of Contemporary Education "YurInfoR-MGU"'),
(31445, 26703, 'en', 'name', 'Sea Research Foundation'),
(31446, 26704, 'en', 'name', 'Loudoun County Public Library'),
(31447, 26705, 'en', 'name', 'Vermont Historical Society'),
(31448, 26706, 'en', 'name', 'Tatar American Regional Institute'),
(31449, 26706, 'ru', 'name', 'Татарско-американский Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(31450, 26707, 'no_lang_code', 'name', 'Danaher (Belgium)'),
(31451, 26708, 'en', 'name', 'Central Arkansas Library System'),
(31452, 26709, 'pl', 'name', 'Gdańska Wyższa Szkoła Humanistyczna'),
(31453, 26710, 'az', 'name', 'Azərbaycan Dƶvlət Dəniz Akademiyası'),
(31454, 26710, 'en', 'name', 'Azerbaijan State Marine Academy'),
(31455, 26710, 'ru', 'name', 'ŠŠ·ŠµŃ€Š±Š°Š¹Š“Š¶Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼Š¾Ń€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(31456, 26711, 'en', 'name', 'Homerton University Hospital NHS Foundation Trust'),
(31457, 26712, 'es', 'name', 'Universidad Autónoma de Santa Ana'),
(31458, 26713, 'en', 'name', 'Institute of Management Business and Law'),
(31459, 26713, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ, бизнеса Šø права'),
(31460, 26714, 'en', 'name', 'Animal Production Institute'),
(31461, 26715, 'id', 'name', 'Universitas Cordova'),
(31462, 26716, 'pl', 'name', 'Wyższa Szkoła Zarządzania i Bankowości w Poznaniu'),
(31463, 26717, 'hi', 'name', 'जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(31464, 26717, 'no_lang_code', 'name', 'Jawaharlal Nehru Krishi Vishwa Vidyalaya'),
(31465, 26718, 'no_lang_code', 'name', 'Lymphedema Therapy (United States)'),
(31466, 26719, 'en', 'name', 'Bishop Stuart University'),
(31467, 26720, 'en', 'name', 'Swedish American Historical Society'),
(31468, 26721, 'en', 'name', 'University of the Immaculate Conception'),
(31469, 26721, 'tl', 'name', 'Pamantasang Imaculada Conception'),
(31470, 26722, 'en', 'name', 'Stuhr Museum'),
(31471, 26723, 'en', 'name', 'Muhammad University of Islam'),
(31472, 26724, 'en', 'name', 'Chiba Prefectural University of Health Sciences'),
(31473, 26724, 'ja', 'name', 'åƒč‘‰ēœŒē«‹äæå„åŒ»ē™‚å¤§å­¦'),
(31474, 26725, 'en', 'name', 'Urawa University'),
(31475, 26725, 'ja', 'name', 'ęµ¦å’Œå¤§å­¦'),
(31476, 26726, 'en', 'name', 'Maulana Azad National Urdu University'),
(31477, 26726, 'ml', 'name', 'ą“®ąµŒą“²ą“¾ą“Øą“¾ ą“†ą“øą“¾ą“¦ąµ ą“Øą“¾ą“·ą“Øąµ½ ą“‰ąµ¼ą“¦ąµ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(31478, 26726, 'pa', 'name', 'ਮੌਲਾਨਾ ąØ†ąØœąØ¼ąØ¾ąØ¦ ਨੈਸ਼ਨਲ ਉਰਦੂ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(31479, 26726, 'ta', 'name', 'மவுலானா ą®†ą®šą®¾ą®¤ąÆ ą®¤ąÆ‡ą®šą®æą®Æ உருது ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(31480, 26726, 'ur', 'name', 'Ł…ŁˆŁ„Ų§Ł†Ų§ Ų¢Ų²Ų§ŲÆ Ł†ŪŒŲ“Ł†Ł„ اردو ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(31481, 26727, 'en', 'name', 'Louisiana Library Association'),
(31482, 26728, 'en', 'name', 'Philadelphia Zoo'),
(31483, 26729, 'no_lang_code', 'name', 'TESLA (Czechia)'),
(31484, 26730, 'ko', 'name', 'ģ¤‘ė¶€ėŒ€ķ•™źµ'),
(31485, 26730, 'no_lang_code', 'name', 'Joongbu University'),
(31486, 26731, 'en', 'name', 'Institute of Professional Evaluation'),
(31487, 26731, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ оценки'),
(31488, 26732, 'en', 'name', 'Gorky Institute of World Literature'),
(31489, 26732, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мировой Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ имени А. М. Š“Š¾Ń€ŃŒŠŗŠ¾Š³Š¾ Š ŠŠ'),
(31490, 26733, 'en', 'name', 'Kyiv National Linguistic University'),
(31491, 26733, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31492, 26733, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ лінгвістичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31493, 26734, 'en', 'name', 'Institute for Schools of the Future'),
(31494, 26735, 'en', 'name', 'Kamphaeng Phet Rajabhat University'),
(31495, 26735, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøąø³ą¹ąøžąø‡ą¹€ąøžąøŠąø£'),
(31496, 26736, 'en', 'name', 'Clarksburg-Harrison Public Library'),
(31497, 26737, 'en', 'name', 'Zaoksky Adventist University'),
(31498, 26737, 'ru', 'name', 'Заокский аГвентистский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31499, 26738, 'en', 'name', 'Johnson University Florida'),
(31500, 26739, 'en', 'name', 'Sumy State A.S.Makarenko Pedagogical University'),
(31501, 26740, 'en', 'name', 'Health Charities Coalition of Canada'),
(31502, 26741, 'en', 'name', 'South Ural State Institute of Arts named after P.I. Tchaikovsky'),
(31503, 26741, 'ru', 'name', 'Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² им. П.И. Чайковского'),
(31504, 26742, 'en', 'name', 'Changzhou Institute of Technology'),
(31505, 26742, 'zh', 'name', 'åøøå·žå·„å­¦é™¢'),
(31506, 26743, 'en', 'name', 'Ryazan Institute of Management and Law'),
(31507, 26743, 'ru', 'name', 'Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(31508, 26744, 'en', 'name', 'Kobe City University of Foreign Studies'),
(31509, 26744, 'ja', 'name', 'ē„žęˆøåø‚å¤–å›½čŖžå¤§å­¦'),
(31510, 26745, 'en', 'name', 'Kyrgyz-Russian Slavic University named after B.N. Yeltsin'),
(31511, 26745, 'ru', 'name', 'ŠšŠøŃ€Š³ŠøŠ·ŃŠŗŠ¾-российский ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Бориса Š•Š»ŃŒŃ†ŠøŠ½Š°'),
(31512, 26746, 'no_lang_code', 'name', 'National Cell and Tissue Centre (Czechia)'),
(31513, 26747, 'no_lang_code', 'name', 'Bochemie (Czechia)'),
(31514, 26748, 'no_lang_code', 'name', 'KovƔrna VIVA (Czechia)'),
(31515, 26749, 'en', 'name', 'Department of Conservation and Recreation'),
(31516, 26750, 'en', 'name', 'Museum of Sonoma County'),
(31517, 26751, 'en', 'name', 'University of Wah'),
(31518, 26751, 'ur', 'name', 'واہ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(31519, 26752, 'en', 'name', 'Andover Historical Society'),
(31520, 26753, 'en', 'name', 'Moscow Academy of Education Natalia Nesterova'),
(31521, 26753, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠŠ°Ń‚Š°Š»ŃŒŠø ŠŠµŃŃ‚ŠµŃ€Š¾Š²Š¾Š¹'),
(31522, 26754, 'en', 'name', 'Moscow State Linguistic University'),
(31523, 26754, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31524, 26755, 'en', 'name', 'Wittenborg University'),
(31525, 26755, 'nl', 'name', 'Hogeschool Wittenborg'),
(31526, 26756, 'en', 'name', 'Tezukayama University'),
(31527, 26756, 'ja', 'name', 'åøå”šå±±å¤§å­¦'),
(31528, 26757, 'en', 'name', 'Lutheran School of Theology at Chicago'),
(31529, 26758, 'en', 'name', 'Northern Virginia Regional Park Authority'),
(31530, 26759, 'en', 'name', 'Tver State Agricultural Academy'),
(31531, 26759, 'ru', 'name', 'Тверской Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31532, 26760, 'en', 'name', 'Thai Nguyen University'),
(31533, 26760, 'vi', 'name', 'ĐẔi hį»c ThĆ”i NguyĆŖn'),
(31534, 26761, 'en', 'name', 'Batumi Shota Rustaveli State University'),
(31535, 26761, 'ka', 'name', 'įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒØįƒįƒ—įƒ įƒ įƒ£įƒ”įƒ—įƒįƒ•įƒ”įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(31536, 26761, 'ru', 'name', 'Š‘Š°Ń‚ŃƒŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шота Š ŃƒŃŃ‚авели'),
(31537, 26762, 'en', 'name', 'Lasbela University of Agriculture Water and Marine Science'),
(31538, 26763, 'no_lang_code', 'name', 'Cybula (United Kingdom)'),
(31539, 26764, 'en', 'name', 'Bogdan Voda University'),
(31540, 26764, 'ro', 'name', 'Universitatea ā€žBogdan VodÄƒā€'),
(31541, 26765, 'en', 'name', 'Franklin University Switzerland'),
(31542, 26766, 'id', 'name', 'Universitas Patria Artha'),
(31543, 26767, 'ja', 'name', 'ē™½ē™¾åˆå„³å­å¤§å­¦'),
(31544, 26767, 'no_lang_code', 'name', 'Shirayuri University'),
(31545, 26768, 'en', 'name', 'Luhansk State University of Internal Affairs named after E.O.Didorenko'),
(31546, 26768, 'ru', 'name', 'Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел имени Š­. А. ДиГоренко'),
(31547, 26768, 'uk', 'name', 'Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ імені Š•Š“ŃƒŠ°Ń€Š“Š° ДіГоренка'),
(31548, 26769, 'en', 'name', 'National Underground Railroad Freedom Center'),
(31549, 26770, 'no_lang_code', 'name', 'Elvac Ekotechnika (Czechia)'),
(31550, 26771, 'en', 'name', 'Rhode Island Black Heritage Society'),
(31551, 26772, 'en', 'name', 'Sebelas Maret University'),
(31552, 26772, 'id', 'name', 'Universitas Sebelas Maret'),
(31553, 26773, 'en', 'name', 'Dagestan State Medical Academy'),
(31554, 26773, 'ru', 'name', 'Дагестанский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31555, 26774, 'en', 'name', 'Huntington Museum of Art'),
(31556, 26775, 'de', 'name', 'Internationale Akademie für Philosophie'),
(31557, 26775, 'en', 'name', 'International Academy of Philosophy'),
(31558, 26776, 'en', 'name', 'European Peace University'),
(31559, 26777, 'en', 'name', 'National Museum of Mexican Art'),
(31560, 26778, 'id', 'name', 'Universitas Gunung Rinjani'),
(31561, 26779, 'en', 'name', 'Gorsky State Agrarian University'),
(31562, 26779, 'ru', 'name', 'Горский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31563, 26780, 'en', 'name', 'Dallas Museum of Art'),
(31564, 26781, 'en', 'name', 'Ateneo de Naga University'),
(31565, 26781, 'tl', 'name', 'Pamantasang Ateneo de Naga'),
(31566, 26782, 'en', 'name', 'Seattle Art Museum'),
(31567, 26783, 'en', 'name', 'Wesleyan University Philippines'),
(31568, 26784, 'en', 'name', 'Slavic Business Institute'),
(31569, 26785, 'en', 'name', 'Community College Humanities Association'),
(31570, 26786, 'no_lang_code', 'name', 'Pilsen Tools (Czechia)'),
(31571, 26787, 'en', 'name', 'Hanford Mills Museum'),
(31572, 26788, 'no_lang_code', 'name', 'PROCES - Centre for Municipal and Regional Development (Czechia)'),
(31573, 26789, 'en', 'name', 'Buzzards Bay Coalition'),
(31574, 26790, 'en', 'name', 'Louisiana State Museum'),
(31575, 26791, 'en', 'name', 'Trinity University of Asia'),
(31576, 26791, 'tl', 'name', 'Pamantasang Trinitas ng Asya'),
(31577, 26792, 'en', 'name', 'Hai Phong University'),
(31578, 26792, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Hįŗ£i Phòng'),
(31579, 26793, 'id', 'name', 'Institut Teknologi Padang'),
(31580, 26794, 'no_lang_code', 'name', 'SVM Microwaves (Czechia)'),
(31581, 26795, 'en', 'name', 'Maharshi Dayanand Saraswati University'),
(31582, 26795, 'hi', 'name', 'ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤¦ą¤Æą¤¾ą¤Øą¤Øą„ą¤¦ ą¤øą¤°ą¤øą„ą¤µą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤…ą¤œą¤®ą„‡ą¤°');
INSERT INTO `ror_settings` VALUES
(31583, 26796, 'bn', 'name', 'ą¦Ŗą§ą¦°ą¦¾ą¦‡ą¦® ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(31584, 26796, 'en', 'name', 'Prime University'),
(31585, 26797, 'en', 'name', 'Institute of Economics and Culture'),
(31586, 26797, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(31587, 26798, 'en', 'name', 'Seian University of Art and Design'),
(31588, 26798, 'ja', 'name', 'ęˆå®‰é€ å½¢å¤§å­¦'),
(31589, 26799, 'en', 'name', 'Institute of Chartered Financial Analysts of India'),
(31590, 26799, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤šą¤¾ą¤°ą„ą¤Ÿą¤°ą„ą¤” ą¤µą¤æą¤¤ą„ą¤¤ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤²ą„‡ą¤·ą¤• ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(31591, 26800, 'en', 'name', 'Delaware Historical Society'),
(31592, 26801, 'en', 'name', 'American Institute for Conservation of Historic & Artistic Works'),
(31593, 26802, 'bn', 'name', 'ą¦‡ą¦øą§ą¦Ÿ ą¦”ą§‡ą¦²ą§ą¦Ÿą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(31594, 26802, 'en', 'name', 'East Delta University'),
(31595, 26803, 'ar', 'name', 'الجامعة Ų§Ł„ŁŠŁ…Ł†ŁŠŲ©'),
(31596, 26803, 'en', 'name', 'Yemenia University'),
(31597, 26804, 'no_lang_code', 'name', 'Hradecký Písek (Czechia)'),
(31598, 26805, 'en', 'name', 'Uman National University of Horticulture'),
(31599, 26805, 'uk', 'name', 'Уманський Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ саГівництва'),
(31600, 26806, 'en', 'name', 'Huntsville Museum of Art'),
(31601, 26807, 'en', 'name', 'Alcide De Gasperi University of Euroregional Economy in Józefów'),
(31602, 26807, 'pl', 'name', 'Alcide De Gasperi University of Euroregional Economy w Józefowie'),
(31603, 26808, 'en', 'name', 'Senri Kinran University'),
(31604, 26808, 'ja', 'name', 'åƒé‡Œé‡‘č˜­å¤§å­¦'),
(31605, 26809, 'en', 'name', 'Henderson County Public Library'),
(31606, 26810, 'en', 'name', 'HaliƧ University'),
(31607, 26810, 'tr', 'name', 'Haliç Üniversitesi'),
(31608, 26811, 'en', 'name', 'Inner Mongolia University of Finance and Economics'),
(31609, 26811, 'zh', 'name', 'å†…č’™å¤č“¢ē»å¤§å­¦'),
(31610, 26812, 'no_lang_code', 'name', 'Watrad (Czechia)'),
(31611, 26813, 'en', 'name', 'New England Historic Genealogical Society'),
(31612, 26814, 'en', 'name', 'Freeport Historical Society'),
(31613, 26815, 'no_lang_code', 'name', 'Environmental Technologies (United States)'),
(31614, 26816, 'en', 'name', 'Association of the Innovation Center of Electronics'),
(31615, 26817, 'no_lang_code', 'name', 'Gundalow (United States)'),
(31616, 26818, 'en', 'name', 'New Siberian Institute'),
(31617, 26818, 'ru', 'name', 'ŠŠ¾Š²Ń‹Š¹ сибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(31618, 26819, 'en', 'name', 'Franz Liszt Academy of Music'),
(31619, 26820, 'en', 'name', 'Central Philippine University'),
(31620, 26820, 'tl', 'name', 'Pamantasang Sentral ng Pilipinas'),
(31621, 26821, 'en', 'name', 'Nihon Fukushi University'),
(31622, 26821, 'ja', 'name', 'ę—„ęœ¬ē¦ē„‰å¤§å­¦'),
(31623, 26822, 'en', 'name', 'ImagineIF Libraries'),
(31624, 26823, 'no_lang_code', 'name', 'MathAn Praha (Czechia)'),
(31625, 26824, 'en', 'name', 'Sikkim Manipal University'),
(31626, 26825, 'en', 'name', 'Shahroud University of Medical Sciences'),
(31627, 26826, 'en', 'name', 'Witherspoon Institute'),
(31628, 26827, 'de', 'name', 'Amerikanische UniversitƤt Rom'),
(31629, 26827, 'en', 'name', 'American University of Rome'),
(31630, 26827, 'fr', 'name', 'UniversitƩ amƩricaine de Rome'),
(31631, 26828, 'ar', 'name', 'مستؓفى ŁˆŁ‡Ų±Ų§Ł† Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(31632, 26828, 'en', 'name', 'University Hospital of Oran'),
(31633, 26829, 'no_lang_code', 'name', 'Synthos Group (Czechia)'),
(31634, 26830, 'no_lang_code', 'name', 'Washington Ballet (United States)'),
(31635, 26831, 'en', 'name', 'Mokpo National Maritime University'),
(31636, 26831, 'ko', 'name', 'ėŖ©ķ¬ķ•“ģ–‘ėŒ€ķ•™źµ'),
(31637, 26832, 'en', 'name', 'Flowerdew Hundred Foundation'),
(31638, 26833, 'ja', 'name', '札幌大谷大学'),
(31639, 26833, 'no_lang_code', 'name', 'Sapporo Ōtani University'),
(31640, 26834, 'it', 'name', 'Fondazione Italiana per la Ricerca in Agricoltura Biologica e Biodinamica'),
(31641, 26835, 'en', 'name', 'Hong Kong Virtual University'),
(31642, 26835, 'zh', 'name', '香港虛擬大學'),
(31643, 26836, 'en', 'name', 'Japanese Red Cross Toyota College of Nursing'),
(31644, 26836, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—č±Šē”°ēœ‹č­·å¤§å­¦'),
(31645, 26837, 'en', 'name', 'Allen Public Library'),
(31646, 26838, 'en', 'name', 'South Puget Sound Community College'),
(31647, 26839, 'en', 'name', 'Hong Kong Shue Yan University'),
(31648, 26839, 'zh', 'name', '香港樹仁大學'),
(31649, 26840, 'en', 'name', 'Sirjan University of Technology'),
(31650, 26840, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų³ŪŒŲ±Ų¬Ų§Ł†'),
(31651, 26841, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‡Ų±Ų¬ŁŠŲ³Ų§'),
(31652, 26841, 'en', 'name', 'University of Hargeisa'),
(31653, 26841, 'so', 'name', 'Jaamacadda Hargeysa'),
(31654, 26842, 'en', 'name', 'Pampanga State Agricultural University'),
(31655, 26843, 'en', 'name', 'Paul Revere Memorial Association'),
(31656, 26844, 'en', 'name', 'Alaska Seafood Marketing Institute'),
(31657, 26845, 'en', 'name', 'St.Tikhon''s Orthodox University'),
(31658, 26845, 'ru', 'name', 'ŠŸŃ€Š°Š²Š¾ŃŠ»Š°Š²Š½Ń‹Š¹ Š”Š²ŃŃ‚Š¾-Тихоновский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31659, 26846, 'en', 'name', 'San Antonio Public Library'),
(31660, 26847, 'en', 'name', 'Society for American Music'),
(31661, 26848, 'en', 'name', 'Independence Seaport Museum'),
(31662, 26849, 'id', 'name', 'Universitas Islam Indragiri'),
(31663, 26850, 'en', 'name', 'Gulf of Mexico Foundation'),
(31664, 26851, 'en', 'name', 'Ubon Ratchathani Rajabhat University'),
(31665, 26851, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(31666, 26852, 'en', 'name', 'St. Paul University Quezon City'),
(31667, 26853, 'en', 'name', 'Hebei Institute of Physical Education'),
(31668, 26853, 'zh', 'name', 'ę²³åŒ—ä½“č‚²å­¦é™¢'),
(31669, 26854, 'en', 'name', 'Academy of the Police Force in Bratislava'),
(31670, 26854, 'sk', 'name', 'AkadƩmia PolicajnƩho zboru v Bratislave'),
(31671, 26855, 'id', 'name', 'Universitas Sulawesi Tenggara'),
(31672, 26856, 'en', 'name', 'California Institute of the Arts'),
(31673, 26856, 'es', 'name', 'Instituto de Artes de California'),
(31674, 26857, 'en', 'name', 'S.Seifullin Kazakh Agro Technical University'),
(31675, 26857, 'kk', 'name', 'Š”. Š”ŠµŠ¹Ń„ŃƒŠ»Š»ŠøŠ½ атынГағы қазақ агротехникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(31676, 26858, 'no_lang_code', 'name', 'Favea (Czechia)'),
(31677, 26859, 'en', 'name', 'Achva Academic College'),
(31678, 26859, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ אחוה'),
(31679, 26860, 'en', 'name', 'Pavlodar State Pedagogical University'),
(31680, 26860, 'kk', 'name', 'ŠŸŠ°Š²Š»Š¾Š“Š°Ń€ мемлекеттік пеГагогикалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(31681, 26861, 'en', 'name', 'Regional Communal Higher Educational Institution Institute of Entrepreneurship Strategy'),
(31682, 26861, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ траГиційної меГицини'),
(31683, 26862, 'en', 'name', 'Arts and Theatre Institute'),
(31684, 26863, 'en', 'name', 'Moscow Institute of Foreign Languages'),
(31685, 26863, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иностранных ŃŠ·Ń‹ŠŗŠ¾Š²'),
(31686, 26864, 'en', 'name', 'Hungarian Adventist Theological College'),
(31687, 26864, 'hu', 'name', 'Adventista Teológiai Fõiskola'),
(31688, 26865, 'ja', 'name', 'ę˜Ÿę§Žé“éƒ½å¤§å­¦'),
(31689, 26865, 'no_lang_code', 'name', 'Seisa Dohto University'),
(31690, 26866, 'en', 'name', 'W. F. Albright Institute of Archaeological Research'),
(31691, 26867, 'en', 'name', 'Bakke Graduate University'),
(31692, 26868, 'en', 'name', 'Ulysses S. Grant Association'),
(31693, 26869, 'en', 'name', 'Arizona State Land Department'),
(31694, 26870, 'en', 'name', 'Columbia River Maritime Museum'),
(31695, 26871, 'en', 'name', 'Ural State University of Physical Culture'),
(31696, 26872, 'en', 'name', 'Field Studies Council'),
(31697, 26873, 'en', 'name', 'Comrat State University'),
(31698, 26873, 'ro', 'name', 'Universitatea de Stat din Comrat'),
(31699, 26873, 'ru', 'name', 'ŠšŠ¾Š¼Ń€Š°Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31700, 26873, 'tr', 'name', 'Komrat Devlet Üniversitesi'),
(31701, 26874, 'en', 'name', 'International University of Korea'),
(31702, 26874, 'ko', 'name', 'ķ•œźµ­źµ­ģ œėŒ€ķ•™źµ'),
(31703, 26875, 'en', 'name', 'Akita University of Nursing and Welfare'),
(31704, 26875, 'ja', 'name', 'ē§‹ē”°ēœ‹č­·ē¦ē„‰å¤§å­¦'),
(31705, 26876, 'en', 'name', 'Thiruvalluvar University'),
(31706, 26876, 'ta', 'name', 'ą®¤ą®æą®°ąÆą®µą®³ąÆą®³ąÆą®µą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(31707, 26877, 'id', 'name', 'Universitas Bina Darma'),
(31708, 26878, 'en', 'name', 'Warner University'),
(31709, 26879, 'no_lang_code', 'name', 'Bioveta (Czechia)'),
(31710, 26880, 'en', 'name', 'Iberia Parish Library'),
(31711, 26881, 'en', 'name', 'University of Cambodia'),
(31712, 26881, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(31713, 26882, 'id', 'name', 'Universitas WR Supratman'),
(31714, 26883, 'no_lang_code', 'name', 'Ekowatt (Czechia)'),
(31715, 26884, 'en', 'name', 'Genomic Medicine Group'),
(31716, 26884, 'es', 'name', 'Fundación Pública Galega de Medicina Xenómica'),
(31717, 26885, 'en', 'name', 'South Kazakhstan Medical Academy'),
(31718, 26885, 'kk', 'name', 'ŠžŅ£Ń‚ŅÆŃŃ‚Ń–Šŗ ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ меГицина Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(31719, 26886, 'en', 'name', 'Ural State Conservatory named after M.P. Mussorgsky'),
(31720, 26886, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени М. П. ŠœŃƒŃŠ¾Ń€Š³ŃŠŗŠ¾Š³Š¾'),
(31721, 26887, 'en', 'name', 'Gansu Institute of Political Science and Law'),
(31722, 26887, 'zh', 'name', 'ē”˜č‚ƒę”æę³•å­¦é™¢'),
(31723, 26888, 'en', 'name', 'Jilin College of the Arts'),
(31724, 26888, 'zh', 'name', 'å‰ęž—č‰ŗęœÆå­¦é™¢'),
(31725, 26889, 'en', 'name', 'Sachem Public Library'),
(31726, 26890, 'en', 'name', 'Islamic Azad University of Garmsar'),
(31727, 26890, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گرمسار'),
(31728, 26891, 'en', 'name', 'Tokyo Junshin University'),
(31729, 26891, 'ja', 'name', 'ę±äŗ¬ē“”åæƒå¤§å­¦'),
(31730, 26892, 'en', 'name', 'FEATI University'),
(31731, 26893, 'en', 'name', 'Yezin Agricultural University'),
(31732, 26893, 'my', 'name', 'į€›į€±į€†į€„į€ŗį€øį€…į€­į€Æį€€į€ŗį€•į€»į€­į€Æį€øį€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(31733, 26894, 'en', 'name', 'Annapolis Maritime Museum'),
(31734, 26895, 'no_lang_code', 'name', 'Elceram (Czechia)'),
(31735, 26896, 'en', 'name', 'Gavar State University'),
(31736, 26896, 'hy', 'name', 'Ō³Õ”Õ¾Õ”Õ¼Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(31737, 26897, 'en', 'name', 'California Coastal Commission'),
(31738, 26898, 'no_lang_code', 'name', 'J P Kenny'),
(31739, 26899, 'en', 'name', 'Iowa Department of Cultural Affairs'),
(31740, 26900, 'en', 'name', 'New Jersey State Library'),
(31741, 26901, 'en', 'name', 'Kerala University of Fisheries and Ocean Studies'),
(31742, 26902, 'en', 'name', 'Kansas City, Kansas Public Library'),
(31743, 26903, 'en', 'name', 'American Textile History Museum'),
(31744, 26904, 'en', 'name', 'Sagami Women''s University'),
(31745, 26904, 'ja', 'name', '相樔儳子大学'),
(31746, 26905, 'en', 'name', 'Elizabeth River Project'),
(31747, 26906, 'en', 'name', 'North-West Institute of Management'),
(31748, 26906, 'ru', 'name', 'Деверо-ЗапаГный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(31749, 26907, 'no_lang_code', 'name', 'ApS Brno (Czechia)'),
(31750, 26908, 'ja', 'name', '金城大学'),
(31751, 26908, 'no_lang_code', 'name', 'Kinjo University'),
(31752, 26909, 'en', 'name', 'Girne American University'),
(31753, 26909, 'tr', 'name', 'Girne Amerikan Üniversitesi'),
(31754, 26910, 'hi', 'name', 'ą¤•ą„‡.आर. मंगलम ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(31755, 26910, 'no_lang_code', 'name', 'KR Mangalam University'),
(31756, 26911, 'en', 'name', 'Pensacola Historical Society'),
(31757, 26912, 'az', 'name', 'Bakı Slavyan Universiteti'),
(31758, 26912, 'en', 'name', 'Baku Slavic University'),
(31759, 26912, 'ru', 'name', 'Бакинский ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31760, 26913, 'en', 'name', 'Doho University'),
(31761, 26913, 'ja', 'name', 'åŒęœ‹å¤§å­¦'),
(31762, 26914, 'ja', 'name', 'é’ę£®äø­å¤®å­¦é™¢å¤§å­¦'),
(31763, 26914, 'no_lang_code', 'name', 'Aomori Chuo Gakuin University'),
(31764, 26915, 'pl', 'name', 'Wyższa Szkoła Zarządzania Marketingowego i Języków Obcych'),
(31765, 26916, 'en', 'name', 'Apollonia University'),
(31766, 26916, 'ro', 'name', 'Universitatea Apollonia'),
(31767, 26917, 'no_lang_code', 'name', 'Feminist Press'),
(31768, 26918, 'en', 'name', 'Keiwa College'),
(31769, 26918, 'ja', 'name', 'ę•¬å’Œå­¦åœ’å¤§å­¦'),
(31770, 26919, 'en', 'name', 'Saint - Petersburg Institute of Management and Law'),
(31771, 26919, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŠŸŃ€Š°Š²Š°'),
(31772, 26920, 'en', 'name', 'Chongshin University'),
(31773, 26920, 'ko', 'name', 'ģ“ģ‹ ėŒ€ķ•™źµ'),
(31774, 26921, 'en', 'name', 'Petre Andrei University of Iași'),
(31775, 26921, 'ro', 'name', 'Universitatea "Petre Andrei" din Iasi'),
(31776, 26922, 'en', 'name', 'Dallas Institute of Humanities and Culture'),
(31777, 26923, 'en', 'name', 'Via Vinci Academy'),
(31778, 26924, 'en', 'name', 'South Carolina Association of Public Library Administration'),
(31779, 26925, 'en', 'name', 'Lakshmibai National Institute of Physical Education'),
(31780, 26926, 'en', 'name', 'University College of Opera in Stockholm'),
(31781, 26926, 'fi', 'name', 'Tukholman oopperakorkeakoulu'),
(31782, 26926, 'sv', 'name', 'Operahƶgskolan i Stockholm'),
(31783, 26927, 'en', 'name', 'John Carter Brown Library'),
(31784, 26928, 'en', 'name', 'University of Traditional Medicine, Mandalay'),
(31785, 26928, 'my', 'name', 'į€į€­į€Æį€„į€ŗį€øį€›į€„į€ŗį€øā€Œį€†į€±į€øį€žį€­į€•į€¹į€•į€¶ā€Œį€€į€»į€±į€¬į€„į€ŗį€ø'),
(31786, 26929, 'en', 'name', 'Association for Computers and the Humanities'),
(31787, 26930, 'en', 'name', 'Maine Maritime Museum'),
(31788, 26931, 'no_lang_code', 'name', 'Oritest Group (Czechia)'),
(31789, 26932, 'ar', 'name', 'الجامعة Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ©'),
(31790, 26932, 'en', 'name', 'Lebanese International University'),
(31791, 26933, 'en', 'name', 'Hiroshima University of Economics'),
(31792, 26933, 'ja', 'name', '広島経済大学'),
(31793, 26934, 'en', 'name', 'Keisen University'),
(31794, 26934, 'ja', 'name', 'ęµę³‰å„³å­¦åœ’å¤§å­¦'),
(31795, 26935, 'en', 'name', 'Tsuda University'),
(31796, 26935, 'ja', 'name', '擄田唾大学'),
(31797, 26936, 'bg', 'name', 'Š’ŠµŠ»ŠøŠŗŠ¾Ń‚ŃŠŃ€Š½Š¾Š²ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31798, 26936, 'en', 'name', 'St. Cyril and St. Methodius University of Veliko Tarnovo'),
(31799, 26937, 'fr', 'name', 'UniversitƩ des Montagnes'),
(31800, 26938, 'en', 'name', 'Roberson Museum and Science Center'),
(31801, 26939, 'en', 'name', 'Heritage Center of the Union League of Philadelphia'),
(31802, 26940, 'en', 'name', 'Rhema University'),
(31803, 26941, 'en', 'name', 'Palo Alto Unified School District'),
(31804, 26942, 'en', 'name', 'International College of Applied Kinesiology-USA'),
(31805, 26943, 'en', 'name', 'Daegu Cyber University'),
(31806, 26943, 'ko', 'name', 'ėŒ€źµ¬ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(31807, 26944, 'en', 'name', 'National University Odesa Law Academy'),
(31808, 26944, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Университет ŠžŠ“ŠµŃŃŠŗŠ°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(31809, 26944, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠžŠ“ŠµŃŃŒŠŗŠ° ŃŽŃ€ŠøŠ“ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(31810, 26945, 'en', 'name', 'Aston Magna Foundation'),
(31811, 26946, 'en', 'name', 'Univers Moldova'),
(31812, 26947, 'id', 'name', 'Universitas Lancang Kuning'),
(31813, 26948, 'en', 'name', 'Phnom Penh International University'),
(31814, 26949, 'en', 'name', 'Islamic Azad University of Gorgan'),
(31815, 26949, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گرگان'),
(31816, 26950, 'en', 'name', 'Boston University Academy'),
(31817, 26951, 'en', 'name', 'Mount Auburn Cemetery'),
(31818, 26952, 'id', 'name', 'Universitas Sintuwu Maroso'),
(31819, 26953, 'en', 'name', 'American Public University System'),
(31820, 26954, 'en', 'name', 'University of South Carolina Lancaster'),
(31821, 26955, 'no_lang_code', 'name', 'Alma Mater Europaea'),
(31822, 26956, 'en', 'name', 'Bell County Museum'),
(31823, 26957, 'en', 'name', 'Marlboro College'),
(31824, 26958, 'en', 'name', 'Institute of Modern Technologies and Economy'),
(31825, 26958, 'ru', 'name', 'ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ современных технологий Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(31826, 26959, 'en', 'name', 'Periyar Maniammai Institute of Science & Technology'),
(31827, 26959, 'ta', 'name', 'ą®ŖąÆ†ą®°ą®æą®Æą®¾ą®°ąÆ ą®®ą®£ą®æą®Æą®®ąÆą®®ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(31828, 26960, 'en', 'name', 'Ludong University'),
(31829, 26960, 'zh', 'name', '鲁东大学'),
(31830, 26961, 'en', 'name', 'Ashesi University'),
(31831, 26962, 'en', 'name', 'Synergy University'),
(31832, 26962, 'ru', 'name', 'Московский финансово-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š”ŠøŠ½ŠµŃ€Š³ŠøŃ'),
(31833, 26963, 'en', 'name', 'Baltic Institute of Economics and Finance'),
(31834, 26963, 'ru', 'name', 'Балтийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø финансов'),
(31835, 26964, 'en', 'name', 'Institute of Economics and Law'),
(31836, 26964, 'ru', 'name', 'Воронежский ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-правовой ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(31837, 26965, 'no_lang_code', 'name', 'EMP (Czechia)'),
(31838, 26966, 'en', 'name', 'Multimedia University of Kenya'),
(31839, 26967, 'en', 'name', 'Magnes Collection of Jewish Art and Life'),
(31840, 26968, 'en', 'name', 'Suzuka University'),
(31841, 26968, 'ja', 'name', 'éˆ“é¹æå›½éš›å¤§å­¦'),
(31842, 26969, 'en', 'name', 'Mahaveer Academy of Technology and Science University'),
(31843, 26969, 'hi', 'name', 'ą¤®ą„ˆą¤Ÿą„ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(31844, 26970, 'en', 'name', 'Kingswood University'),
(31845, 26971, 'en', 'name', 'Pwani University'),
(31846, 26972, 'en', 'name', 'Bergenfield Public Library'),
(31847, 26973, 'en', 'name', 'Hudson River Valley Greenway'),
(31848, 26974, 'no_lang_code', 'name', 'Kismayo University'),
(31849, 26974, 'so', 'name', 'Jaamacada Kismaayo'),
(31850, 26975, 'en', 'name', 'American Shakespeare Center'),
(31851, 26976, 'no_lang_code', 'name', 'HBH Projekt (Czechia)'),
(31852, 26977, 'en', 'name', 'St. Lawrence University'),
(31853, 26978, 'en', 'name', 'Akobo Heritage and Memorial University'),
(31854, 26979, 'en', 'name', 'National Taipei University of Business'),
(31855, 26979, 'zh', 'name', 'åœ‹ē«‹č‡ŗåŒ—å•†ę„­å¤§å­ø'),
(31856, 26980, 'en', 'name', 'Saint Petersburg Medical Technical Institute'),
(31857, 26980, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинских'),
(31858, 26981, 'no_lang_code', 'name', 'RS Dynamics (Czechia)'),
(31859, 26982, 'en', 'name', 'Inter-University Center for Japanese Language Studies'),
(31860, 26982, 'ja', 'name', 'ć‚¢ćƒ”ćƒŖć‚«ćƒ»ć‚«ćƒŠćƒ€å¤§å­¦é€£åˆę—„ęœ¬ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(31861, 26983, 'en', 'name', 'Badakhshan University'),
(31862, 26983, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲØŲÆŲ®Ų“Ų§Ł†ā€Ž'),
(31863, 26984, 'en', 'name', 'University of Human Environments'),
(31864, 26984, 'ja', 'name', 'äŗŗé–“ē’°å¢ƒå¤§å­¦'),
(31865, 26985, 'en', 'name', 'Mary Bridge Children''s Health Center'),
(31866, 26986, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Czechia)'),
(31867, 26987, 'en', 'name', 'Jacksonville Public Library'),
(31868, 26988, 'en', 'name', 'Fryderyk Chopin University of Music'),
(31869, 26988, 'pl', 'name', 'Uniwersytet Muzyczny Fryderyka Chopina'),
(31870, 26989, 'cs', 'name', 'KrajskĆ” HygienickĆ” Stanice StředočeskĆ©ho Kraje se SĆ­dlem v Praze'),
(31871, 26990, 'ar', 'name', 'الجامعة Ų§Ł„ŁƒŁ†ŲÆŁŠŲ© دبي'),
(31872, 26990, 'en', 'name', 'Canadian University of Dubai'),
(31873, 26991, 'en', 'name', 'Aomori Public University'),
(31874, 26991, 'ja', 'name', 'é’ę£®å…¬ē«‹å¤§å­¦'),
(31875, 26992, 'id', 'name', 'Universitas Lakidende'),
(31876, 26993, 'en', 'name', 'Hawai''i Wildlife Fund'),
(31877, 26994, 'no_lang_code', 'name', 'Vakuum Praha (Czechia)'),
(31878, 26995, 'en', 'name', 'Cebu Institute of Technology University'),
(31879, 26996, 'no_lang_code', 'name', 'Seoul Jangsin University'),
(31880, 26997, 'en', 'name', 'American Swedish Historical Museum'),
(31881, 26998, 'en', 'name', 'University of the Humanities'),
(31882, 26998, 'mn', 'name', 'Š„ŅÆŠ¼ŅÆŅÆŠ½Š»ŃŠ³ŠøŠ¹Š½ Ухааны Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(31883, 26999, 'en', 'name', 'Muslim University of Morogoro'),
(31884, 26999, 'sw', 'name', 'Chuo Kikuu cha Waislamu Morogoro'),
(31885, 27000, 'en', 'name', 'Gaston County Public Library'),
(31886, 27001, 'en', 'name', 'Emanuel University'),
(31887, 27001, 'ro', 'name', 'Universitatea Emanuel'),
(31888, 27002, 'no_lang_code', 'name', 'Linet (Czechia)'),
(31889, 27003, 'no_lang_code', 'name', 'DopravnĆ­ RozvojovĆ© Středisko (Czechia)'),
(31890, 27004, 'en', 'name', 'Onondaga County Public Library'),
(31891, 27005, 'en', 'name', 'Western University'),
(31892, 27005, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžœįŸįžŸįŸ’įž‘įž¾įž“'),
(31893, 27006, 'en', 'name', 'University of the Potomac'),
(31894, 27007, 'no_lang_code', 'name', 'Fer Kladno (Czechia)'),
(31895, 27008, 'no_lang_code', 'name', 'Mahachulalongkornrajavidyalaya University'),
(31896, 27008, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø”ąø«ąø²ąøˆąøøąø¬ąø²ąø„ąø‡ąøąø£ąø“ąø£ąø²ąøŠąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(31897, 27009, 'en', 'name', 'Golden Gate National Parks Conservancy'),
(31898, 27010, 'en', 'name', 'Lackawanna County Library System'),
(31899, 27011, 'be', 'name', 'ŠŠŗŠ°Š“ŃĢŠ¼iя ŠŗiŃ€Š°Š²Š°ĢŠ½Š½Ń пры ŠŸŃ€ŃŠ·iŠ“ŃĢŠ½Ń†Šµ Š ŃŃŠæŃƒĢŠ±Š»iŠŗi Š‘ŠµŠ»Š°Ń€ŃƒĢŃŃŒ'),
(31900, 27011, 'en', 'name', 'Academy of Public Administration under the aegis of the President of the Republic of Belarus'),
(31901, 27011, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµĢŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµĢŠ½ŠøŃ при ŠŸŃ€ŠµŠ·ŠøŠ“е́нте Респу́блики Š‘ŠµŠ»Š°Ń€ŃƒĢŃŃŒ'),
(31902, 27012, 'en', 'name', 'Yakima Valley Museum'),
(31903, 27013, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų© / الأردن'),
(31904, 27013, 'en', 'name', 'Arab Open University'),
(31905, 27014, 'en', 'name', 'Northern University'),
(31906, 27014, 'ps', 'name', 'ناردرن Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ł†ŁˆŚšŲ§Ų±'),
(31907, 27014, 'ur', 'name', 'ناردرن ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ Ł†ŁˆŲ“ŪŲ±Ū'),
(31908, 27015, 'en', 'name', 'Kazakh Academy of Sport and Tourism'),
(31909, 27015, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› спорт және Ń‚ŃƒŃ€ŠøŠ·Š¼ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(31910, 27016, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ų§Ł„Ų³Ł„ŁŠŁ…Ų§Ł†ŁŠŲ©'),
(31911, 27016, 'en', 'name', 'American University of Iraq Sulaimani'),
(31912, 27017, 'en', 'name', 'Khairun University'),
(31913, 27017, 'id', 'name', 'Universitas Khairun'),
(31914, 27018, 'no_lang_code', 'name', 'Sinar Mas (Indonesia)'),
(31915, 27019, 'en', 'name', 'University of Pittsburgh at Greensburg'),
(31916, 27020, 'en', 'name', 'South Dakota State Historical Society'),
(31917, 27021, 'en', 'name', 'Moscow State Agroengineering University named after V.P. Goryachkin'),
(31918, 27021, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный агроинженерный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. П. Š“Š¾Ń€ŃŃ‡ŠŗŠøŠ½Š°'),
(31919, 27022, 'en', 'name', 'Texas Parks and Wildlife Department'),
(31920, 27023, 'en', 'name', 'Arni University'),
(31921, 27023, 'hi', 'name', 'ą¤…ą¤°ą„ą¤Øą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(31922, 27024, 'en', 'name', 'Indian Law Institute'),
(31923, 27025, 'en', 'name', 'Sendai Shirayuri Women''s College'),
(31924, 27025, 'ja', 'name', 'ä»™å°ē™½ē™¾åˆå„³å­å¤§å­¦'),
(31925, 27026, 'en', 'name', 'Islamic Azad University of Tafresh'),
(31926, 27026, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تفرؓ'),
(31927, 27027, 'en', 'name', 'Pakistan Institute of Development Economics'),
(31928, 27028, 'en', 'name', 'Isabella Stewart Gardner Museum'),
(31929, 27029, 'no_lang_code', 'name', 'Halla Visteon Climate Control (Czechia)'),
(31930, 27030, 'en', 'name', 'Bay Institute'),
(31931, 27031, 'en', 'name', 'Bristol Bay Native Association'),
(31932, 27032, 'en', 'name', 'International Conference for the Study of Political Thought'),
(31933, 27033, 'en', 'name', 'Alaska Department of Military and Veterans Affairs'),
(31934, 27034, 'en', 'name', 'American Academy of Religion'),
(31935, 27035, 'en', 'name', 'Mississippi Library Commission'),
(31936, 27036, 'no_lang_code', 'name', 'SilničnĆ­ Vývoj (Czechia)'),
(31937, 27037, 'en', 'name', 'St. Thomas University'),
(31938, 27038, 'en', 'name', 'Rivne State University of Humanities'),
(31939, 27038, 'uk', 'name', 'Š Ń–Š²Š½ŠµŠ½ŃŃŒŠŗŠøŠ¹ Гержавний Š³ŃƒŠ¼Š°Š½Ń–тарний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31940, 27039, 'en', 'name', 'University of La Salette'),
(31941, 27040, 'en', 'name', 'University of Computer Sciences and Skills'),
(31942, 27040, 'pl', 'name', 'Wyższa Szkoła Informatyki w Łodzi'),
(31943, 27041, 'en', 'name', 'Mariano Marcos State University'),
(31944, 27041, 'tl', 'name', 'Pambansang Pamantasan ng Mariano Marcos'),
(31945, 27042, 'en', 'name', 'University of Dance and Circus'),
(31946, 27042, 'sv', 'name', 'Dans- och Cirkushƶgskolan'),
(31947, 27043, 'en', 'name', 'Sweetwater County Historical Museum'),
(31948, 27044, 'en', 'name', 'Stamford International University'),
(31949, 27044, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ą¹ąøŖąø•ąø”ąøŸąø­ąø£ą¹Œąø”'),
(31950, 27045, 'en', 'name', 'Abai Kazakh National Pedagogical University'),
(31951, 27045, 'kk', 'name', 'Абай атынГағы ŅšŠ°Š·Š°Ņ› ұлттық пеГагогика ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(31952, 27046, 'en', 'name', 'Kokshetau State University'),
(31953, 27046, 'kk', 'name', 'ŠšÓ©ŠŗŃˆŠµŃ‚Š°Ńƒ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(31954, 27046, 'ru', 'name', 'ŠšŠ¾ŠŗŃˆŠµŃ‚Š°ŃƒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(31955, 27047, 'no_lang_code', 'name', 'EnerGoConsult (Czechia)'),
(31956, 27048, 'no_lang_code', 'name', 'Letecke Pristroje Praha (Czechia)'),
(31957, 27049, 'en', 'name', 'Buffalo and Erie County Public Library'),
(31958, 27050, 'no_lang_code', 'name', 'Miracle (Czechia)'),
(31959, 27051, 'no_lang_code', 'name', 'Disk (Czechia)'),
(31960, 27052, 'en', 'name', 'Kyushu Lutheran College'),
(31961, 27052, 'ja', 'name', 'ä¹å·žćƒ«ćƒ¼ćƒ†ćƒ«å­¦é™¢å¤§å­¦'),
(31962, 27053, 'en', 'name', 'National Taipei University of Education'),
(31963, 27053, 'zh', 'name', 'åœ‹ē«‹č‡ŗåŒ—ę•™č‚²å¤§å­ø'),
(31964, 27054, 'en', 'name', 'National Foundation for Jewish Culture'),
(31965, 27055, 'en', 'name', 'Sri Guru Granth Sahib World University'),
(31966, 27055, 'pa', 'name', 'ąØøą©ąØ°ą©€ ਗੁਰੂ ąØ—ą©ąØ°ą©°ąØ„ ਸਾਹਿਬ ਵਰਲਔ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(31967, 27056, 'en', 'name', 'Coral Reef Alliance'),
(31968, 27057, 'en', 'name', 'University of Negros Occidental – Recoletos'),
(31969, 27058, 'en', 'name', 'George Wythe University'),
(31970, 27059, 'id', 'name', 'Universitas Tulang Bawang Lampung'),
(31971, 27060, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الفرات'),
(31972, 27060, 'en', 'name', 'Al Furat University'),
(31973, 27061, 'en', 'name', 'Research Institute of Textile Machinery'),
(31974, 27061, 'no_lang_code', 'name', 'VUTS (Czechia)'),
(31975, 27062, 'en', 'name', 'University of the Republic of San Marino'),
(31976, 27062, 'it', 'name', 'UniversitĆ  degli Studi della Repubblica di San Marino'),
(31977, 27063, 'en', 'name', 'North Bengal Agricultural University'),
(31978, 27063, 'mr', 'name', 'Uttar Banga Krishi Viswavidyalaya'),
(31979, 27064, 'en', 'name', 'Trinity Southwest University'),
(31980, 27065, 'en', 'name', 'South Coast Railroad Museum'),
(31981, 27066, 'en', 'name', 'Allameh Tabataba''i University'),
(31982, 27066, 'fa', 'name', 'دانؓگاه علامه طباطبایی'),
(31983, 27067, 'en', 'name', 'Seirei Christopher University'),
(31984, 27067, 'ja', 'name', 'č–éš·ć‚ÆćƒŖć‚¹ćƒˆćƒ•ć‚”ćƒ¼å¤§å­¦'),
(31985, 27068, 'no_lang_code', 'name', 'Kovohutě Příbram NĆ”stupnickĆ” (Czechia)'),
(31986, 27069, 'en', 'name', 'Limkokwing University of Creative Technology'),
(31987, 27069, 'ms', 'name', 'Universiti Teknologi Kreatif Limkokwing'),
(31988, 27070, 'en', 'name', 'WQED'),
(31989, 27071, 'en', 'name', 'Chicago Filmmakers'),
(31990, 27072, 'cs', 'name', 'SprÔva KrkonoŔského NÔrodního Parku'),
(31991, 27072, 'en', 'name', 'KrkonoŔe Mountains National Park'),
(31992, 27073, 'en', 'name', 'Parsons School of Design'),
(31993, 27074, 'en', 'name', 'Glazov State Pedagogical Institute Named after VG Korolenko'),
(31994, 27074, 'ru', 'name', 'Š“Š›ŠŠ—ŠžŠ’Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŸŠ•Š”ŠŠ“ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š˜ŠœŠ•ŠŠ˜ Š’.Š“. ŠšŠžŠ ŠžŠ›Š•ŠŠšŠž'),
(31995, 27075, 'no_lang_code', 'name', 'AI Biosciences (United States)'),
(31996, 27076, 'id', 'name', 'Universitas Dian Nuswantoro'),
(31997, 27077, 'en', 'name', 'Queens Public Library'),
(31998, 27077, 'es', 'name', 'Biblioteca PĆŗblica de Queens'),
(31999, 27078, 'cs', 'name', 'Český Svaz Stavebních Inženýrů'),
(32000, 27079, 'be', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ авиации'),
(32001, 27079, 'en', 'name', 'Belarusian State Aviation Academy'),
(32002, 27080, 'en', 'name', 'Society of Architectural Historians'),
(32003, 27081, 'no_lang_code', 'name', 'Fans (Czechia)'),
(32004, 27082, 'en', 'name', 'Louisville Free Public Library'),
(32005, 27083, 'en', 'name', 'Estonian Entrepreneurship University of Applied Sciences'),
(32006, 27083, 'et', 'name', 'Eesti EttevƵtluskƵrgkool Mainor'),
(32007, 27084, 'en', 'name', 'Tianjin Open University'),
(32008, 27084, 'zh', 'name', '天擄开放大学'),
(32009, 27085, 'en', 'name', 'University of the Russian Academy of Education'),
(32010, 27085, 'ru', 'name', 'Университет Российской АкаГемии ŠžŠ±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(32011, 27086, 'en', 'name', 'Oyster Recovery Partnership'),
(32012, 27087, 'en', 'name', 'KÔroly Róbert University College'),
(32013, 27087, 'hu', 'name', 'Karoly Robert Foiskola'),
(32014, 27088, 'be', 'name', 'Віцебскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃžŠ½Ń–Š²ŃŃ€ŃŃ–Ń‚ŃŃ‚'),
(32015, 27088, 'en', 'name', 'Vitebsk State Medical University'),
(32016, 27089, 'en', 'name', 'Thunchath Ezhuthachan Malayalam University'),
(32017, 27089, 'ml', 'name', 'ą“¤ąµą“žąµą“šą“¤ąµą“¤ąµ ą“Žą““ąµą“¤ąµą“¤ą“šąµą“›ąµ» ą“®ą“²ą“Æą“¾ą“³ą“‚ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(32018, 27089, 'ta', 'name', 'ą®¤ąÆą®žąÆą®šą®¤ąÆą®¤ąÆ ą®Žą®“ąÆą®¤ąÆą®¤ą®šąÆą®šą®©ąÆ மலையாள ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(32019, 27090, 'no_lang_code', 'name', 'Euro Support (Czechia)'),
(32020, 27091, 'no_lang_code', 'name', 'Solikamsk State Pedagogical Institute'),
(32021, 27092, 'en', 'name', 'Oregon Department of Geology and Mineral Industries'),
(32022, 27093, 'no_lang_code', 'name', 'Intens (Czechia)'),
(32023, 27094, 'en', 'name', 'International Turkmen-Turkish University'),
(32024, 27094, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Ń‚ŃƒŃ€ŠŗŠ¼ŠµŠ½Š¾-Ń‚ŃƒŃ€ŠµŃ†ŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32025, 27094, 'tk', 'name', 'Halkara Türkmen-Türk uniwersiteti'),
(32026, 27095, 'no_lang_code', 'name', 'Cominfo (Czechia)'),
(32027, 27096, 'no_lang_code', 'name', 'Vidia (Czechia)'),
(32028, 27097, 'no_lang_code', 'name', 'Arqball (United States)'),
(32029, 27098, 'no_lang_code', 'name', 'Center for Visual Communication (United States)'),
(32030, 27099, 'no_lang_code', 'name', 'Enacon (Czechia)'),
(32031, 27100, 'no_lang_code', 'name', 'General Electric (Czechia)'),
(32032, 27101, 'en', 'name', 'Moscow State University of Environmental Engineering'),
(32033, 27101, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ инженерной ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(32034, 27102, 'en', 'name', 'Kandiyohi County Historical Society'),
(32035, 27103, 'en', 'name', 'National Training Fund'),
(32036, 27104, 'no_lang_code', 'name', 'Prefa Brno (Czechia)'),
(32037, 27105, 'en', 'name', 'North Carolina Museum of History'),
(32038, 27106, 'en', 'name', 'Osaka International University'),
(32039, 27106, 'ja', 'name', 'å¤§é˜Ŗå›½éš›å¤§å­¦'),
(32040, 27107, 'en', 'name', 'Council of the Southern Mountains'),
(32041, 27108, 'en', 'name', 'Makhanlal Chaturvedi National University of Journalism and Communication'),
(32042, 27108, 'hi', 'name', 'माखनलाल ą¤šą¤¤ą„ą¤°ą„ą¤µą„‡ą¤¦ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą¤¤ą„ą¤°ą¤•ą¤¾ą¤°ą¤æą¤¤ą¤¾ ą¤ą¤µą¤‚ ą¤øą¤‚ą¤šą¤¾ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(32043, 27109, 'no_lang_code', 'name', 'Cycleco (France)'),
(32044, 27110, 'en', 'name', 'Providence Athenaeum'),
(32045, 27111, 'no_lang_code', 'name', 'Sungkyul University'),
(32046, 27112, 'en', 'name', 'Moscow State University of Printing Arts'),
(32047, 27112, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ печати'),
(32048, 27113, 'en', 'name', 'Ocean Trust'),
(32049, 27114, 'en', 'name', 'Shandong University of Finance and Economics'),
(32050, 27114, 'zh', 'name', 'å±±äøœč“¢ē»å¤§å­¦'),
(32051, 27115, 'en', 'name', 'International Documentary Association'),
(32052, 27116, 'en', 'name', 'Apprend Foundation'),
(32053, 27117, 'no_lang_code', 'name', 'ZKL (Czechia)'),
(32054, 27118, 'en', 'name', 'Nusa Tenggara Barat University'),
(32055, 27118, 'id', 'name', 'Universitas Nusa Tenggara Barat'),
(32056, 27119, 'en', 'name', 'ICFAI University, Dehradun'),
(32057, 27120, 'en', 'name', 'Open Universities Australia'),
(32058, 27121, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© واسط'),
(32059, 27121, 'en', 'name', 'University of Wasit'),
(32060, 27122, 'en', 'name', 'University of the Cordilleras'),
(32061, 27123, 'en', 'name', 'Pierce County Library System'),
(32062, 27124, 'pt', 'name', 'Hospital do Divino EspĆ­rito Santo'),
(32063, 27125, 'bg', 'name', 'Š‘ŃƒŃ€Š³Š°ŃŠŗŠø свобоГен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32064, 27125, 'en', 'name', 'Burgas Free University'),
(32065, 27126, 'en', 'name', 'Kentucky Department for Libraries and Archives'),
(32066, 27127, 'en', 'name', 'University of Petroleum'),
(32067, 27128, 'en', 'name', 'Tajik State Medical University'),
(32068, 27128, 'ru', 'name', 'ТаГжикский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32069, 27128, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии тиббии Тоҷикистон ба номи Абӯалӣ Ибни Дино'),
(32070, 27129, 'en', 'name', 'Don State Agrarian University'),
(32071, 27129, 'ru', 'name', 'Донской Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32072, 27130, 'en', 'name', 'Suncoast Health Council'),
(32073, 27131, 'en', 'name', 'Moscow Institute of Modern Business'),
(32074, 27131, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ современного бизнеса'),
(32075, 27132, 'ja', 'name', '学栔法人 学習院'),
(32076, 27132, 'no_lang_code', 'name', 'Gakushūin School Corporation'),
(32077, 27133, 'no_lang_code', 'name', 'ZĆ”vod AutomatizačnĆ­ Techniky (Czechia)'),
(32078, 27134, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ą“•ą“²ą“¾ą“®ą“£ąµą“”ą“²ą“‚'),
(32079, 27134, 'no_lang_code', 'name', 'Kerala Kalamandalam'),
(32080, 27134, 'ta', 'name', 'ą®•ą®²ą®¾ą®®ą®£ąÆą®Ÿą®²ą®®ąÆ'),
(32081, 27135, 'no_lang_code', 'name', 'Hatyai University'),
(32082, 27135, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø«ąø²ąø”ą¹ƒąø«ąøą¹ˆ'),
(32083, 27136, 'en', 'name', 'Saitama Gakuen University'),
(32084, 27136, 'ja', 'name', 'åŸ¼ēŽ‰å­¦åœ’å¤§å­¦'),
(32085, 27137, 'en', 'name', 'Yokkaichi Nursing and Medical Care University'),
(32086, 27137, 'ja', 'name', 'å››ę—„åø‚ēœ‹č­·åŒ»ē™‚å¤§å­¦'),
(32087, 27138, 'en', 'name', 'Rokeby Museum'),
(32088, 27139, 'en', 'name', 'Baliuag University'),
(32089, 27140, 'id', 'name', 'Universitas Almuslim'),
(32090, 27141, 'en', 'name', 'DeKalb County Public Library'),
(32091, 27142, 'id', 'name', 'Universitas Palembang'),
(32092, 27143, 'en', 'name', 'Albanian University'),
(32093, 27144, 'en', 'name', 'Honam Theological University and Seminary'),
(32094, 27144, 'ko', 'name', 'ķ˜øė‚Øģ‹ ķ•™ėŒ€ķ•™źµ'),
(32095, 27145, 'en', 'name', 'Suquamish Museum'),
(32096, 27146, 'en', 'name', 'Megatrend University'),
(32097, 27146, 'sr', 'name', 'ŠœŠµŠ³Š°Ń‚Ń€ŠµŠ½Š“ ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚'),
(32098, 27147, 'en', 'name', 'Gimcheon University'),
(32099, 27147, 'ko', 'name', 'ź¹€ģ²œėŒ€ķ•™źµ'),
(32100, 27148, 'cs', 'name', 'NƔrodnƭ PedagogickƩ Muzeum a Knihovna J. A. KomenskƩho'),
(32101, 27149, 'id', 'name', 'Universitas Kristen Indonesia Paulus'),
(32102, 27150, 'en', 'name', 'Billerica Public Library'),
(32103, 27151, 'en', 'name', 'Oberlin Heritage Center'),
(32104, 27152, 'en', 'name', 'University of Pikeville'),
(32105, 27152, 'fr', 'name', 'UniversitƩ de pikeville'),
(32106, 27153, 'de', 'name', 'Hochschule für Künste Bremen'),
(32107, 27153, 'en', 'name', 'University of the Arts Bremen'),
(32108, 27154, 'ja', 'name', 'č±Šę©‹å‰µé€ å¤§å­¦'),
(32109, 27154, 'no_lang_code', 'name', 'Toyohashi Sozo College'),
(32110, 27155, 'en', 'name', 'Herzing University'),
(32111, 27156, 'no_lang_code', 'name', 'Dufonev (Czechia)'),
(32112, 27157, 'en', 'name', 'Media Working Group'),
(32113, 27158, 'ca', 'name', 'Universitat PontifĆ­cia de la Santa Creu'),
(32114, 27158, 'de', 'name', 'PƤpstliche UniversitƤt vom Heiligen Kreuz'),
(32115, 27158, 'en', 'name', 'Pontifical University of the Holy Cross'),
(32116, 27158, 'fr', 'name', 'UniversitƩ pontificale de la sainte-croix'),
(32117, 27158, 'it', 'name', 'Pontificia UniversitĆ  della Santa Croce'),
(32118, 27159, 'en', 'name', 'Beijing Dance Academy'),
(32119, 27159, 'zh', 'name', 'åŒ—äŗ¬čˆžč¹ˆå­¦é™¢'),
(32120, 27160, 'no_lang_code', 'name', 'G Impuls Praha (Czechia)'),
(32121, 27161, 'en', 'name', 'Natural History Museum of Utah'),
(32122, 27162, 'en', 'name', 'Vologda Institute of Law and Economics'),
(32123, 27162, 'ru', 'name', 'ВологоГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ права Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(32124, 27163, 'en', 'name', 'Kalasin University'),
(32125, 27163, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø²ąø¬ąøŖąø“ąø™ąø˜ąøøą¹Œ'),
(32126, 27164, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ł„Ł…ŁˆŁ† الخاصة'),
(32127, 27164, 'en', 'name', 'University of Kalamoon'),
(32128, 27165, 'no_lang_code', 'name', 'Phranakhon Si Ayutthaya Rajabhat University'),
(32129, 27165, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøžąø£ąø°ąø™ąø„ąø£ąøØąø£ąøµąø­ąø¢ąøøąø˜ąø¢ąø²'),
(32130, 27166, 'en', 'name', 'Russian Islamic University'),
(32131, 27166, 'ru', 'name', 'Российский исламский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(32132, 27167, 'en', 'name', 'Worcester Historical Museum'),
(32133, 27168, 'en', 'name', 'Fine Arts Museums of San Francisco'),
(32134, 27168, 'es', 'name', 'Museo de Bellas Artes de San Francisco'),
(32135, 27168, 'fr', 'name', 'MusƩe des beaux-arts de san francisco'),
(32136, 27169, 'en', 'name', 'Denver Seminary'),
(32137, 27170, 'en', 'name', 'Tama University'),
(32138, 27170, 'ja', 'name', 'å¤šę‘©å¤§å­¦'),
(32139, 27171, 'en', 'name', 'Voronezh State Agrarian University named after Emperor Peter the Great'),
(32140, 27171, 'ru', 'name', 'Воро́нежский Š³Š¾ŃŃƒŠ“а́рственный агра́рный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ и́мени импера́тора ŠŸŠµŃ‚ра́ I'),
(32141, 27172, 'en', 'name', 'Komazawa Women''s University'),
(32142, 27172, 'ja', 'name', '駒沢儳子大学'),
(32143, 27173, 'en', 'name', 'New Hampshire Historical Society'),
(32144, 27174, 'en', 'name', 'Tehran University of Art'),
(32145, 27174, 'fa', 'name', 'دانؓگاه هنر'),
(32146, 27175, 'no_lang_code', 'name', 'Vuab Pharma (Czechia)'),
(32147, 27176, 'en', 'name', 'Rosenbach Museum and Library'),
(32148, 27177, 'en', 'name', 'University of Science and Technology of Ivory Coast'),
(32149, 27177, 'fr', 'name', 'UniversitƩ des Sciences et Technologies de CƓte d''Ivoire'),
(32150, 27178, 'no_lang_code', 'name', 'Mega (Czechia)'),
(32151, 27179, 'en', 'name', 'National Agrarian University'),
(32152, 27179, 'es', 'name', 'Universidad Nacional Agraria'),
(32153, 27180, 'en', 'name', 'Cyprus Institute of Marketing'),
(32154, 27181, 'en', 'name', 'Western Philippines University'),
(32155, 27182, 'en', 'name', 'State Classical Academy named after Maimonides'),
(32156, 27182, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ»Š°ŃŃŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени МаймониГа'),
(32157, 27183, 'en', 'name', 'New Haven Unified School District'),
(32158, 27184, 'en', 'name', 'Romanian University of Sciences and Arts "Gheorghe Cristea"'),
(32159, 27184, 'ro', 'name', 'Universitatea RomĆ¢na de Știinte și Arte ā€žGheorghe Cristeaā€'),
(32160, 27185, 'en', 'name', 'Sultan Sharif Ali Islamic University'),
(32161, 27185, 'ms', 'name', 'Universiti Islam Sultan Sharif Ali'),
(32162, 27186, 'en', 'name', 'Bullock Museum'),
(32163, 27187, 'no_lang_code', 'name', 'MateriÔlový A Metalurgický Výzkum (Czechia)'),
(32164, 27188, 'id', 'name', 'Universitas Panji Sakti'),
(32165, 27189, 'en', 'name', 'Ural Institute of Commerce and Law'),
(32166, 27189, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коммерции Šø права'),
(32167, 27190, 'en', 'name', 'Wisconsin Department of Transportation'),
(32168, 27190, 'es', 'name', 'Departamento de Transporte de Wisconsin'),
(32169, 27190, 'fr', 'name', 'DƩpartement des transports du wisconsin'),
(32170, 27191, 'en', 'name', 'Jawaharlal Nehru Architecture and Fine Arts University'),
(32171, 27191, 'ne', 'name', 'जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤µą¤¾ą¤øą„ą¤¤ą„ą¤•ą¤²ą¤¾ तऄा ललितकला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(32172, 27192, 'en', 'name', 'Korea Development Institute'),
(32173, 27192, 'ko', 'name', 'ķ•œźµ­ź°œė°œģ—°źµ¬ģ›'),
(32174, 27193, 'it', 'name', 'Istituto Guglielmo Tagliacarne'),
(32175, 27194, 'id', 'name', 'Universitas Quality'),
(32176, 27195, 'en', 'name', 'Cavendish University Uganda'),
(32177, 27196, 'en', 'name', 'Latvian Academy of Sport Education'),
(32178, 27196, 'lv', 'name', 'Latvijas Sporta Pedagoģijas Akadēmija'),
(32179, 27197, 'en', 'name', 'EuroAcademy'),
(32180, 27197, 'et', 'name', 'Euroakadeemia'),
(32181, 27198, 'no_lang_code', 'name', 'Hofmeister (Czechia)'),
(32182, 27199, 'en', 'name', 'University of San Agustin'),
(32183, 27199, 'tl', 'name', 'Pamantasan ng San Agustin'),
(32184, 27200, 'en', 'name', 'Riordan Clinic'),
(32185, 27201, 'en', 'name', 'Kuzbass State Technical University'),
(32186, 27201, 'ru', 'name', 'Кузбасский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32187, 27202, 'en', 'name', 'Center for Wooden Boats'),
(32188, 27203, 'no_lang_code', 'name', 'Tonak (Czechia)'),
(32189, 27204, 'en', 'name', 'Seoul Christian University'),
(32190, 27205, 'cs', 'name', 'Výzkumný Ústav Organických Syntéz'),
(32191, 27205, 'no_lang_code', 'name', 'Research Institute of Organic Syntheses (Czechia)'),
(32192, 27206, 'en', 'name', 'Grigol Robakidze University'),
(32193, 27206, 'ka', 'name', 'įƒ’įƒ įƒ˜įƒ’įƒįƒš įƒ įƒįƒ‘įƒįƒ„įƒ˜įƒ«įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(32194, 27207, 'en', 'name', 'Slater Mill'),
(32195, 27208, 'en', 'name', 'Moscow Institute of Medical and Social Rehabilitologists'),
(32196, 27208, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГико-ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ реабилитологии'),
(32197, 27209, 'no_lang_code', 'name', 'Envinet (Czechia)'),
(32198, 27210, 'be', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ меГыцынскі ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(32199, 27210, 'en', 'name', 'Gomel State Medical University'),
(32200, 27210, 'ru', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32201, 27211, 'no_lang_code', 'name', 'Hydrion (Netherlands)'),
(32202, 27212, 'en', 'name', 'Grand View University'),
(32203, 27213, 'en', 'name', 'Adventist University of the Philippines'),
(32204, 27214, 'en', 'name', 'Kabul University'),
(32205, 27214, 'fa', 'name', 'دانؓگاه کابل'),
(32206, 27215, 'en', 'name', 'Illinois State Historical Society'),
(32207, 27216, 'en', 'name', 'Araullo University'),
(32208, 27217, 'en', 'name', 'Kyoto City University of Arts'),
(32209, 27217, 'ja', 'name', 'äŗ¬éƒ½åø‚ē«‹čŠøč”“å¤§å­¦'),
(32210, 27218, 'en', 'name', 'University of Judicial Sciences and Administrative Services'),
(32211, 27218, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… Ł‚Ų¶Ų§ŪŒŪŒ و Ų®ŲÆŁ…Ų§ŲŖ اداری'),
(32212, 27219, 'en', 'name', 'National Park Foundation'),
(32213, 27220, 'en', 'name', 'San Mateo County History Museum'),
(32214, 27221, 'no_lang_code', 'name', 'Jerid (Czechia)'),
(32215, 27222, 'en', 'name', 'Ashoka University'),
(32216, 27222, 'hi', 'name', 'ą¤…ą¤¶ą„‹ą¤•ą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(32217, 27223, 'en', 'name', 'Madhya Pradesh Bhoj Open University'),
(32218, 27223, 'hi', 'name', 'ą¤®ą¤§ą„ą¤Æ ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ ą¤­ą„‹ą¤œ ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(32219, 27224, 'en', 'name', 'Institute of Economics and Management'),
(32220, 27224, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ (г. ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗ)'),
(32221, 27225, 'en', 'name', 'North Pacific Marine Science Foundation'),
(32222, 27226, 'no_lang_code', 'name', 'Ekola (Czechia)'),
(32223, 27227, 'bn', 'name', 'আমেরিকান ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ-বাংলাদেশ'),
(32224, 27227, 'en', 'name', 'American International University-Bangladesh'),
(32225, 27228, 'bn', 'name', 'ą¦Ŗą§ą¦°ą¦æą¦®ą¦æą§Ÿą¦¾ą¦° ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(32226, 27228, 'en', 'name', 'Premier University'),
(32227, 27229, 'en', 'name', 'Ternopil Volodymyr Hnatiuk National Pedagogical University'),
(32228, 27229, 'ru', 'name', 'Š¢ŠµŃ€Š½Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ВлаГимира Š“Š½Š°Ń‚ŃŽŠŗŠ°'),
(32229, 27229, 'uk', 'name', 'Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВолоГимира Š“Š½Š°Ń‚ŃŽŠŗŠ°'),
(32230, 27230, 'en', 'name', 'Carnegie Council for Ethics in International Affairs'),
(32231, 27231, 'en', 'name', 'National Centre of Social Studies'),
(32232, 27232, 'no_lang_code', 'name', 'International Data Group (United States)'),
(32233, 27233, 'en', 'name', 'Tangshan Normal University'),
(32234, 27233, 'zh', 'name', 'å”å±±åøˆčŒƒå¤§å­¦'),
(32235, 27234, 'en', 'name', 'Montana Historical Society'),
(32236, 27235, 'ca', 'name', 'Universitat PontifĆ­cia de Salamanca'),
(32237, 27235, 'en', 'name', 'Pontifical University of Salamanca'),
(32238, 27235, 'es', 'name', 'Universidad Pontificia de Salamanca'),
(32239, 27236, 'en', 'name', 'Parwan University'),
(32240, 27236, 'fa', 'name', 'دانؓگاه Ł¾Ų±ŁˆŲ§Ł†'),
(32241, 27237, 'hu', 'name', 'Edutus Egyetem'),
(32242, 27237, 'no_lang_code', 'name', 'Edutus University'),
(32243, 27238, 'en', 'name', 'Angarsk State Technical Academy'),
(32244, 27238, 'ru', 'name', 'ŠŠ½Š³Š°Ń€ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¢ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(32245, 27239, 'en', 'name', 'Mobile Public Library'),
(32246, 27240, 'en', 'name', 'Graduate Institute of Applied Linguistics'),
(32247, 27241, 'en', 'name', 'City University of Science and Information Technology'),
(32248, 27241, 'ur', 'name', 'سٹی ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف سائنس Ų§ŪŒŁ†Śˆ Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(32249, 27242, 'fr', 'name', 'UniversitƩ Alassane Ouattara'),
(32250, 27243, 'en', 'name', 'Excelsior Springs Museum & Archives'),
(32251, 27244, 'no_lang_code', 'name', 'Eurocarbon (Netherlands)'),
(32252, 27245, 'no_lang_code', 'name', 'ON Semiconductor (Czechia)'),
(32253, 27246, 'en', 'name', 'Daghestan State Pedagogical University'),
(32254, 27246, 'ru', 'name', 'Дагестанский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32255, 27247, 'en', 'name', 'Donbass State Engineering Academy'),
(32256, 27247, 'uk', 'name', 'Š”Š¾Š½Š±Š°ŃŃŒŠŗŠ° Гержавна Š¼Š°ŃˆŠøŠ½Š¾Š±ŃƒŠ“івна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(32257, 27248, 'en', 'name', 'Jenderal Achmad Yani University'),
(32258, 27248, 'id', 'name', 'Universitas Jenderal Achmad Yani'),
(32259, 27249, 'ja', 'name', '了徳寺大学'),
(32260, 27249, 'no_lang_code', 'name', 'Ryotokuji University'),
(32261, 27250, 'no_lang_code', 'name', 'Litmas (Czechia)'),
(32262, 27251, 'en', 'name', 'Luxun Academy of Fine Arts'),
(32263, 27252, 'en', 'name', 'Moscow Academy of Economics and Law'),
(32264, 27252, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(32265, 27253, 'no_lang_code', 'name', 'Montstav (Czechia)'),
(32266, 27254, 'cs', 'name', 'ValaÅ”skĆ© Muzeum v Přírodě'),
(32267, 27255, 'en', 'name', 'International University of Monaco'),
(32268, 27255, 'fr', 'name', 'UniversitƩ internationale de monaco'),
(32269, 27256, 'en', 'name', 'International Institute of Computer Technologies'),
(32270, 27256, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŠ¾Š¼ŠæŃŒŃŽŃ‚ŠµŃ€Š½Ń‹Ń… технологий'),
(32271, 27257, 'en', 'name', 'Collegium Da Vinci'),
(32272, 27258, 'ko', 'name', 'ģ œģ£¼ķ•œė¼ėŒ€ķ•™źµ'),
(32273, 27258, 'no_lang_code', 'name', 'Cheju Halla University'),
(32274, 27259, 'no_lang_code', 'name', 'Cybergenetics (United States)'),
(32275, 27260, 'en', 'name', 'Delaware Library Association'),
(32276, 27261, 'en', 'name', 'Fitchburg Art Museum'),
(32277, 27262, 'en', 'name', 'Dniprovsk State Technical University'),
(32278, 27262, 'uk', 'name', 'Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32279, 27263, 'en', 'name', 'International University of East Africa'),
(32280, 27264, 'en', 'name', 'Hopa Mountain'),
(32281, 27265, 'en', 'name', 'Mattatuck Museum'),
(32282, 27266, 'en', 'name', 'International University'),
(32283, 27266, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž“įŸ’įžįžšįž‡įž¶įžįž·'),
(32284, 27267, 'en', 'name', 'University Academy Holbeach'),
(32285, 27268, 'id', 'name', 'Universitas Muhammadiyah Metro'),
(32286, 27269, 'en', 'name', 'College of Environmental Protection'),
(32287, 27269, 'sl', 'name', 'Visoka Ŕola za varstvo okolja'),
(32288, 27270, 'en', 'name', 'Baika Women''s University'),
(32289, 27270, 'ja', 'name', 'ę¢…čŠ±å„³å­å¤§å­¦'),
(32290, 27271, 'en', 'name', 'Meridian International Center');
INSERT INTO `ror_settings` VALUES
(32291, 27272, 'en', 'name', 'Saint Petersburg State University of Culture and Arts'),
(32292, 27272, 'ru', 'name', 'ственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(32293, 27273, 'en', 'name', 'Widya Karya Catholic University'),
(32294, 27273, 'id', 'name', 'Universitas Katolik Widya Karya Malang'),
(32295, 27274, 'en', 'name', 'Moscow Regional Socio-Economic Institute'),
(32296, 27274, 'ru', 'name', 'Московский Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(32297, 27275, 'pl', 'name', 'Małopolska Wyższa Szkoła Ekonomiczna'),
(32298, 27276, 'en', 'name', 'Tashkent State Higher School of National Dance and Choreography'),
(32299, 27277, 'id', 'name', 'Institut Sains & Teknologi Akprind Yogyakarta'),
(32300, 27278, 'en', 'name', 'Novi Sad Open University'),
(32301, 27278, 'sr', 'name', 'ŠŠ¾Š²Š¾ŃŠ°Š“ŃŠŗŠø отворени ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚'),
(32302, 27279, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ সাউ঄ ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾'),
(32303, 27279, 'en', 'name', 'University of South Asia'),
(32304, 27280, 'en', 'name', 'National Children''s Museum'),
(32305, 27281, 'no_lang_code', 'name', 'WAK System (Czechia)'),
(32306, 27282, 'en', 'name', 'Arizona Historical Society'),
(32307, 27283, 'ja', 'name', 'äŗŒę¾å­øčˆå¤§å­¦'),
(32308, 27283, 'no_lang_code', 'name', 'Nishogakusha University'),
(32309, 27284, 'en', 'name', 'Nan Jeon University of Science and Technology'),
(32310, 27284, 'zh', 'name', 'å—ę¦®ē§‘ęŠ€å¤§å­ø'),
(32311, 27285, 'en', 'name', 'Kapiolani Community College'),
(32312, 27286, 'en', 'name', 'Medical University of the Americas'),
(32313, 27287, 'en', 'name', 'International Pacific Halibut Commission'),
(32314, 27288, 'en', 'name', 'Kryvyi Rih National University'),
(32315, 27288, 'uk', 'name', 'ŠšŃ€ŠøŠ²Š¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32316, 27289, 'en', 'name', 'Economic and Law Institute in Moscow'),
(32317, 27289, 'ru', 'name', 'ŠœŠžŠ”ŠšŠžŠ’Š”ŠšŠ˜Š™ Š­ŠšŠžŠŠžŠœŠ˜ŠšŠž-ŠŸŠ ŠŠ’ŠžŠ’ŠžŠ™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(32318, 27290, 'en', 'name', 'Kaya University'),
(32319, 27291, 'en', 'name', 'Hwa Hsia University of Technology'),
(32320, 27291, 'zh', 'name', 'čÆå¤ē§‘ęŠ€å¤§å­ø'),
(32321, 27292, 'en', 'name', 'Kamsky Institute of Humanitarian and Engineering Technologies'),
(32322, 27292, 'ru', 'name', 'Камский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… Šø инженерных технологий'),
(32323, 27293, 'en', 'name', 'Omsk State Transport University'),
(32324, 27293, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(32325, 27294, 'en', 'name', 'Great Lakes University of Kisumu'),
(32326, 27295, 'no_lang_code', 'name', 'Princip (Czechia)'),
(32327, 27296, 'en', 'name', 'Royal University of Law and Economics'),
(32328, 27296, 'fr', 'name', 'UniversitƩ royale de droit et des sciences economiques'),
(32329, 27296, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įž“įžøįžįž·įžŸįž¶įžŸįŸ’įžįŸ’įžšįž“įž·įž„įžœįž·įž‘įŸ’įž™įž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšįžŸįŸįžŠįŸ’įž‹įž€įž·įž…įŸ’įž…'),
(32330, 27297, 'en', 'name', 'Imam Sadiq University'),
(32331, 27297, 'fa', 'name', 'دانؓگاه Ų§Ł…Ų§Ł… ŲµŲ§ŲÆŁ‚'),
(32332, 27298, 'en', 'name', 'Suamandeep Vidyapeeth University'),
(32333, 27298, 'gu', 'name', 'સુમનદીપ વિધાપીઠ'),
(32334, 27299, 'en', 'name', 'Communal Societies Association'),
(32335, 27300, 'ja', 'name', 'åŒ—ę˜Ÿå­¦åœ’å¤§å­¦'),
(32336, 27300, 'no_lang_code', 'name', 'Hokusei Gakuen University'),
(32337, 27301, 'en', 'name', 'Turkmen State Institute of Culture'),
(32338, 27302, 'en', 'name', 'Patriot Bible University'),
(32339, 27303, 'en', 'name', 'Yaroslavl State Pedagogical University'),
(32340, 27303, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ярославский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. К.Š”. Ушинского'),
(32341, 27304, 'en', 'name', 'Sir Syed University of Engineering and Technology'),
(32342, 27304, 'sd', 'name', 'Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś± Ū½ Ł½ŁŠŚŖŁ†ŁŠŚ€ŁŠŲ§Ų³ جي جامعہ Ų³Ų± Ų³ŁŠŲÆā€Ž'),
(32343, 27305, 'pl', 'name', 'Uczelnia Warszawska im. Marii Skłodowskiej-Curie'),
(32344, 27306, 'en', 'name', 'Higher School of Applied Sciences'),
(32345, 27306, 'sl', 'name', 'Visoka Ŕola za storitve'),
(32346, 27307, 'en', 'name', 'Czech and Slovak Crystallographic Association'),
(32347, 27308, 'en', 'name', 'Maharishi Mahesh Yogi Vedic University'),
(32348, 27308, 'hi', 'name', 'ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤®ą¤¹ą„‡ą¤¶ ą¤Æą„‹ą¤—ą„€ ą¤µą„ˆą¤¦ą¤æą¤• ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(32349, 27309, 'id', 'name', 'Universitas Sawerigading Makassar'),
(32350, 27310, 'en', 'name', 'Japanese American National Museum'),
(32351, 27311, 'en', 'name', 'University of Horticultural Sciences Bagalkote'),
(32352, 27311, 'kn', 'name', 'ą²¤ą³‹ą²Ÿą²—ą²¾ą²°ą²æą²•ą³† ą²µą²æą²œą³ą²žą²¾ą²Øą²—ą²³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ą²¬ą²¾ą²—ą²²ą²•ą³‹ą²Ÿą³†'),
(32353, 27312, 'en', 'name', 'Virginia Department of Environmental Quality'),
(32354, 27313, 'en', 'name', 'Kabul Medical University'),
(32355, 27313, 'fa', 'name', 'دانؓگاه Ų·ŲØ کابل'),
(32356, 27314, 'en', 'name', 'Stavropol State Agrarian University'),
(32357, 27314, 'ru', 'name', 'Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32358, 27315, 'en', 'name', 'St. Paul University Dumaguete'),
(32359, 27316, 'en', 'name', 'Altai State Humanities Pedagogical University'),
(32360, 27316, 'ru', 'name', 'Алтайский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. М. Шукшина'),
(32361, 27317, 'no_lang_code', 'name', 'CompX (United States)'),
(32362, 27318, 'en', 'name', 'National Academy of Fine Art and Architecture'),
(32363, 27318, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°ĢŠ»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµĢŠ¼Ń–Ń образотво́рчого мисте́цтва і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒĢŃ€Šø'),
(32364, 27319, 'en', 'name', 'Trout Unlimited'),
(32365, 27320, 'en', 'name', 'Pandit Deendayal Petroleum University'),
(32366, 27320, 'gu', 'name', 'પંઔિત દીનદયાળ ąŖŖą«‡ąŖŸą«ąŖ°ą«‹ąŖ²ąŖæąŖÆąŖ® ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(32367, 27320, 'hi', 'name', 'पंऔित ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤Ŗą„‡ą¤Ÿą„ą¤°ą„‹ą¤²ą¤æą¤Æą¤® ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(32368, 27321, 'en', 'name', 'Prison University Project'),
(32369, 27322, 'en', 'name', 'University Press of New England'),
(32370, 27323, 'en', 'name', 'South Carolina Historical Society'),
(32371, 27324, 'pl', 'name', 'Wyższa Szkoła Komunikowania i Mediów Społecznych im. Jerzego Giedroycia'),
(32372, 27325, 'en', 'name', 'Museum of International Folk Art'),
(32373, 27326, 'en', 'name', 'Islamic Azad University of Birjand'),
(32374, 27326, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ ŲØŪŒŲ±Ų¬Ł†ŲÆ'),
(32375, 27327, 'en', 'name', 'Seneca Falls Historical Society'),
(32376, 27328, 'en', 'name', 'King’s University'),
(32377, 27329, 'en', 'name', 'Doshisha Women''s College of Liberal Arts'),
(32378, 27329, 'ja', 'name', 'åŒåæ—ē¤¾å„³å­å¤§å­¦'),
(32379, 27330, 'id', 'name', 'Universitas Tridinanti Palembang'),
(32380, 27331, 'fr', 'name', 'UniversitƩ Officielle de Bukavu'),
(32381, 27332, 'id', 'name', 'Universitas Respati Indonesia'),
(32382, 27333, 'en', 'name', 'Four County Library System'),
(32383, 27334, 'en', 'name', 'Shenyang Institute of Engineering'),
(32384, 27334, 'zh', 'name', 'ę²ˆé˜³å·„ēØ‹å­¦é™¢'),
(32385, 27335, 'de', 'name', 'Private Universität im Fürstentum Liechtenstein'),
(32386, 27335, 'en', 'name', 'Private University in the Principality of Liechtenstein'),
(32387, 27336, 'en', 'name', 'University of Nueva Caceres'),
(32388, 27336, 'tl', 'name', 'Universidad de Nueva Caceres'),
(32389, 27337, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł…Ł†ŲµŁˆŲ± الجامعة'),
(32390, 27337, 'en', 'name', 'Al Mansour University College'),
(32391, 27338, 'en', 'name', 'Heard Museum'),
(32392, 27339, 'de', 'name', 'Hochschule für Forstwirtschaft Rottenburg'),
(32393, 27339, 'en', 'name', 'Rottenburg University of Applied Forest Sciences'),
(32394, 27340, 'en', 'name', 'Magnitogorsk State Conservatory named after M I Glinka'),
(32395, 27340, 'ru', 'name', 'ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени М. И. Глинки'),
(32396, 27341, 'en', 'name', 'Moscow University Touro'),
(32397, 27341, 'ru', 'name', 'Московский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¢Š£Š Šž'),
(32398, 27342, 'en', 'name', 'Black Mountain College Museum and Arts Center'),
(32399, 27343, 'en', 'name', 'Utah State Historical Society'),
(32400, 27344, 'en', 'name', 'Singhania University'),
(32401, 27344, 'hi', 'name', 'ą¤øą¤æą¤‚ą¤˜ą¤¾ą¤Øą¤æą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(32402, 27345, 'en', 'name', 'Riara University'),
(32403, 27346, 'en', 'name', 'National Catholic Educational Association'),
(32404, 27347, 'en', 'name', 'Kazakh Ablai Khan University of International Relations and World Languages'),
(32405, 27347, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› халықаралық қатынастар және әлем тілГері ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(32406, 27347, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹ Šø мировых ŃŠ·Ń‹ŠŗŠ¾Š² имени Абылай хана'),
(32407, 27348, 'en', 'name', 'National Law Institute University'),
(32408, 27349, 'en', 'name', 'Southern University Law Center'),
(32409, 27350, 'en', 'name', 'Chesapeake Bay Environmental Center'),
(32410, 27351, 'en', 'name', 'Moscow State Open University'),
(32411, 27352, 'en', 'name', 'Kyungdong University'),
(32412, 27353, 'en', 'name', 'Central Luzon State University'),
(32413, 27353, 'tl', 'name', 'Pamantasang Estado sa Gitnang Luzon'),
(32414, 27354, 'en', 'name', 'Samara Humanitarian Academy'),
(32415, 27354, 'ru', 'name', 'Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(32416, 27355, 'en', 'name', 'Lake Champlain Maritime Museum'),
(32417, 27356, 'en', 'name', 'Chiba University of Commerce'),
(32418, 27356, 'ja', 'name', 'åƒč‘‰å•†ē§‘å¤§å­¦'),
(32419, 27357, 'en', 'name', 'IEDC-Bled School of Management'),
(32420, 27358, 'en', 'name', 'Kyiv National University of Construction and Architecture'),
(32421, 27358, 'pl', 'name', 'Kijowski Narodowy Uniwersytet Budownictwa i Architektury'),
(32422, 27358, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š° Šø Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹'),
(32423, 27358, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(32424, 27359, 'en', 'name', 'Lexington Public Library'),
(32425, 27360, 'en', 'name', 'Ras al-Khaimah Medical and Health Sciences University'),
(32426, 27361, 'en', 'name', 'Montgomery County Historical Society'),
(32427, 27362, 'bn', 'name', 'ą¦•ą¦¾ą¦œą§€ নজরুল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(32428, 27362, 'en', 'name', 'Kazi Nazrul University'),
(32429, 27363, 'no_lang_code', 'name', 'Microrisc (Czechia)'),
(32430, 27364, 'en', 'name', 'Free University of Ireland'),
(32431, 27364, 'ga', 'name', 'Saor-Ollscoil na hƉireann'),
(32432, 27365, 'en', 'name', 'National Museum of Wildlife Art'),
(32433, 27366, 'en', 'name', 'Khujand State University'),
(32434, 27366, 'ru', 'name', 'ЄуГжанГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32435, 27366, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии ЄуҷанГ ба номи акаГемик Š‘. Ņ’Š°Ń„ŃƒŃ€Š¾Š²'),
(32436, 27367, 'en', 'name', 'Kharkiv State Academy of Culture'),
(32437, 27368, 'en', 'name', 'Persian Heritage Foundation'),
(32438, 27369, 'id', 'name', 'Universitas Pramita Indonesia'),
(32439, 27370, 'en', 'name', 'National Alliance of Black School Educators'),
(32440, 27371, 'en', 'name', 'Nagaoka University'),
(32441, 27371, 'ja', 'name', '長岔大学'),
(32442, 27372, 'en', 'name', 'Paktia University'),
(32443, 27372, 'fa', 'name', 'دانؓگاه پکتیا'),
(32444, 27373, 'en', 'name', 'Norton University'),
(32445, 27373, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ įž“įŸįžšįžįž»įž“'),
(32446, 27374, 'en', 'name', 'Omsk Academy of the Russian Interior Ministry'),
(32447, 27374, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠœŠ’Š” России'),
(32448, 27375, 'en', 'name', 'Barnaul Law Institute of the Russian Interior Ministry'),
(32449, 27375, 'ru', 'name', 'Š‘Š°Ń€Š½Š°ŃƒŠ»ŃŒŃŠŗŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(32450, 27376, 'en', 'name', 'Institute of Psychology and Pedagogy'),
(32451, 27376, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологии Šø пеГагогики'),
(32452, 27377, 'en', 'name', 'Saint Petersburg State University of Aerospace and Instrumentation'),
(32453, 27377, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(32454, 27378, 'en', 'name', 'Organization of American Historians'),
(32455, 27379, 'cs', 'name', 'NÔrodní Klimatický Program'),
(32456, 27380, 'en', 'name', 'Matsumoto University'),
(32457, 27380, 'ja', 'name', 'ę¾ęœ¬å¤§å­¦'),
(32458, 27381, 'en', 'name', 'International University of the Caribbean'),
(32459, 27382, 'en', 'name', 'Virginia Sesquicentennial of the American Civil War Commission'),
(32460, 27383, 'ja', 'name', '麗澤大学'),
(32461, 27383, 'no_lang_code', 'name', 'Reitaku University'),
(32462, 27384, 'en', 'name', 'Ural Institute of Finance and Law'),
(32463, 27384, 'ru', 'name', 'Š£Š ŠŠ›Š¬Š”ŠšŠ˜Š™ Š¤Š˜ŠŠŠŠ”ŠžŠ’Šž-Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(32464, 27385, 'en', 'name', 'Smolensk State Institute of Fine Arts'),
(32465, 27385, 'ru', 'name', 'Дмоленский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(32466, 27386, 'en', 'name', 'Kyushu International University'),
(32467, 27386, 'ja', 'name', '九州国際大学'),
(32468, 27387, 'en', 'name', 'Shah Abdul Latif University'),
(32469, 27387, 'sd', 'name', 'ؓاه Ų¹ŲØŲÆŲ§Ł„Ł„Ų·ŁŠŁ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠā€Ž'),
(32470, 27387, 'ur', 'name', 'جامعہ ؓاہ Ų¹ŲØŲÆŲ§Ł„Ł„Ų·ŪŒŁā€Ž'),
(32471, 27388, 'en', 'name', 'Rivier University'),
(32472, 27388, 'fr', 'name', 'UniversitƩ rivier'),
(32473, 27389, 'en', 'name', 'Yokohama College of Commerce'),
(32474, 27389, 'ja', 'name', 'ęØŖęµœå•†ē§‘å¤§å­¦'),
(32475, 27390, 'en', 'name', 'J. F. Oberlin University'),
(32476, 27390, 'ja', 'name', 'ę”œē¾Žęž—å¤§å­¦'),
(32477, 27391, 'en', 'name', 'Daegu National University of Education'),
(32478, 27391, 'ko', 'name', 'ėŒ€źµ¬źµģœ”ėŒ€ķ•™źµ'),
(32479, 27392, 'id', 'name', 'Universitas Al Washliyah'),
(32480, 27393, 'en', 'name', 'Korean National Police University'),
(32481, 27393, 'ko', 'name', 'ź²½ģ°°ėŒ€ķ•™'),
(32482, 27394, 'en', 'name', 'Suleyman Demirel University'),
(32483, 27394, 'kk', 'name', 'Дүлейман Демирел атынГағы Университет'),
(32484, 27395, 'en', 'name', 'Midwest Art Conservation Center'),
(32485, 27396, 'no_lang_code', 'name', 'Spur (Czechia)'),
(32486, 27397, 'en', 'name', 'Neumann University'),
(32487, 27398, 'ja', 'name', '中京学院大学'),
(32488, 27398, 'no_lang_code', 'name', 'Chukyo Gakuin University'),
(32489, 27399, 'id', 'name', 'Universitas Ngurah Rai'),
(32490, 27400, 'en', 'name', 'Baewha Women''s University'),
(32491, 27400, 'ko', 'name', 'ė°°ķ™”ģ—¬ģžėŒ€ķ•™źµ'),
(32492, 27401, 'en', 'name', 'National Academy for Public Administration under the President of Ukraine'),
(32493, 27401, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Гержавного ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(32494, 27402, 'en', 'name', 'Karachi Institute of Economics and Technology'),
(32495, 27403, 'en', 'name', 'League of Women Voters'),
(32496, 27404, 'id', 'name', 'Universitas Muhamadiyah Sorong'),
(32497, 27405, 'az', 'name', 'Azərbaycan Memarlıq və İnşaat Universiteti'),
(32498, 27405, 'en', 'name', 'Azerbaijan University of Architecture and Construction'),
(32499, 27406, 'en', 'name', 'East Siberian Academy of Culture and Arts'),
(32500, 27406, 'ru', 'name', 'Восточно- Дибирский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(32501, 27407, 'en', 'name', 'Kiryu University'),
(32502, 27407, 'ja', 'name', 'ę”ē”Ÿå¤§å­¦'),
(32503, 27408, 'en', 'name', 'Francisco Gavidia University'),
(32504, 27408, 'es', 'name', 'Universidad Francisco Gavidia'),
(32505, 27409, 'en', 'name', 'Puget Sound Restoration Fund'),
(32506, 27410, 'en', 'name', 'Kagoshima Immaculate Heart University'),
(32507, 27410, 'ja', 'name', 'é¹æå…å³¶ē“”åæƒå„³å­å¤§å­¦'),
(32508, 27411, 'en', 'name', 'B&O Railroad Museum'),
(32509, 27412, 'no_lang_code', 'name', 'Poltava V.G. Korolenko National Pedagogical University'),
(32510, 27412, 'uk', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’.Š“.ŠšŠ¾Ń€Š¾Š»ŠµŠ½ŠŗŠ°'),
(32511, 27413, 'en', 'name', 'YWCA Madison'),
(32512, 27414, 'en', 'name', 'Decorah Public Library'),
(32513, 27415, 'en', 'name', 'Washington County Museum'),
(32514, 27416, 'en', 'name', 'PLA Army Service Academy'),
(32515, 27416, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›åŽå‹¤å·„ēØ‹å­¦é™¢'),
(32516, 27417, 'en', 'name', 'Canaan Valley Institute'),
(32517, 27418, 'en', 'name', 'LUNGevity Foundation'),
(32518, 27419, 'no_lang_code', 'name', 'Russian Orthodox Institute Sacred Ioann Bogolslov'),
(32519, 27419, 'ru', 'name', 'Российский православный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ²ŃŃ‚Š¾Š³Š¾ Иоанна Богослова'),
(32520, 27420, 'en', 'name', 'Suwon Catholic University'),
(32521, 27421, 'en', 'name', 'Milwaukee Art Museum'),
(32522, 27422, 'no_lang_code', 'name', 'Milcom (Czechia)'),
(32523, 27423, 'en', 'name', 'Copper River Watershed Project'),
(32524, 27424, 'no_lang_code', 'name', 'P-D Refractories (Czechia)'),
(32525, 27425, 'en', 'name', 'Caucasus University'),
(32526, 27425, 'ka', 'name', 'įƒ™įƒįƒ•įƒ™įƒįƒ”įƒ˜įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(32527, 27426, 'en', 'name', 'Darul Ulum Islamic University'),
(32528, 27426, 'id', 'name', 'Universitas Islam Darul Ulum Lamongan'),
(32529, 27427, 'en', 'name', 'Perm State Pharmaceutical Academy'),
(32530, 27427, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń„Š°Ń€Š¼Š°Ń†ŠµŠ²Ń‚ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(32531, 27428, 'en', 'name', 'Armavir Orthodox-Social Institute'),
(32532, 27428, 'ru', 'name', 'Армавирский ŠŸŃ€Š°Š²Š¾ŃŠ»Š°Š²Š½Š¾-Š”Š¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(32533, 27429, 'en', 'name', 'Taiwan Comprehensive University System'),
(32534, 27429, 'zh', 'name', 'å°ē£ē¶œåˆå¤§å­øē³»ēµ±'),
(32535, 27430, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‡Ł„ŁŠŁˆŲØŁˆŁ„ŁŠŲ³'),
(32536, 27430, 'en', 'name', 'Heliopolis University'),
(32537, 27431, 'cs', 'name', 'Výzkumný a zkuŔební ústav Plzeň'),
(32538, 27431, 'no_lang_code', 'name', 'Research and Testing Institute Plzen (Czechia)'),
(32539, 27432, 'en', 'name', 'Karaite Jewish University'),
(32540, 27433, 'no_lang_code', 'name', 'Vakos XT (Czechia)'),
(32541, 27434, 'en', 'name', 'Kaw Nation'),
(32542, 27435, 'en', 'name', 'North Greenville University'),
(32543, 27436, 'en', 'name', 'Far Eastern State Transport University'),
(32544, 27437, 'be', 'name', 'ŠŸŠ°Š»ŠµŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(32545, 27437, 'en', 'name', 'Polessky State University'),
(32546, 27437, 'ru', 'name', 'Полесский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32547, 27438, 'en', 'name', 'CMJ University'),
(32548, 27438, 'hi', 'name', 'ą¤øą„€ą¤ą¤®ą¤œą„‡ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(32549, 27439, 'en', 'name', 'Ho Chi Minh City University of Architecture'),
(32550, 27439, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kiįŗæn trĆŗc ThĆ nh phố Hồ ChĆ­ Minh'),
(32551, 27440, 'en', 'name', 'Siberian Transport University'),
(32552, 27440, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(32553, 27441, 'en', 'name', 'University of Kochi'),
(32554, 27441, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹å¤§å­¦'),
(32555, 27442, 'en', 'name', 'Urmia University of Technology'),
(32556, 27442, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(32557, 27443, 'en', 'name', 'Belgorod State Technological University'),
(32558, 27443, 'ru', 'name', 'БелгороГский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š’. Š“. ŠØŃƒŃ…Š¾Š²Š°'),
(32559, 27444, 'en', 'name', 'Hong Bang International University'),
(32560, 27444, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Quốc tįŗæ Hồng BĆ ng'),
(32561, 27445, 'en', 'name', 'Adair County Historical Society'),
(32562, 27446, 'ja', 'name', 'ēØšå†…åŒ—ę˜Ÿå­¦åœ’å¤§å­¦'),
(32563, 27446, 'no_lang_code', 'name', 'Wakkanai Hokusei Gakuen College'),
(32564, 27447, 'en', 'name', 'Siberian Law Institute of Russian Federal Drug Control Service'),
(32565, 27447, 'ru', 'name', 'Дибирский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¤Š”ŠšŠ России'),
(32566, 27448, 'en', 'name', 'Oklahoma Christian University'),
(32567, 27449, 'en', 'name', 'Dyer Library / Saco Museum'),
(32568, 27450, 'en', 'name', 'Ministry of Foreign Affairs of Turkmenistan'),
(32569, 27450, 'ru', 'name', 'ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Šž Š˜ŠŠžŠ”Š¢Š ŠŠŠŠ«Š„ ДЕЛ Š¢Š£Š ŠšŠœŠ•ŠŠ˜Š”Š¢ŠŠŠ'),
(32570, 27451, 'en', 'name', 'Warren County Public Library'),
(32571, 27452, 'en', 'name', 'Broward Public Library Foundation'),
(32572, 27453, 'no_lang_code', 'name', 'Ford Motor Company (Czechia)'),
(32573, 27454, 'en', 'name', 'Alkauthar Islamic University'),
(32574, 27454, 'ur', 'name', 'Ų¬Ų§Ł…Ų¹Ūƒ Ų§Ł„Ś©ŁˆŲ«Ų±'),
(32575, 27455, 'en', 'name', 'Tainan National University of the Arts'),
(32576, 27455, 'zh', 'name', 'åœ‹ē«‹č‡ŗå—č—č”“å¤§å­ø'),
(32577, 27456, 'hi', 'name', 'ą¤øą¤æą¤¦ą„‹ ą¤•ą¤¾ą¤Øą„ą¤¹ą„‚ ą¤®ą„ą¤°ą„ą¤®ą„‚ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(32578, 27456, 'no_lang_code', 'name', 'Sido Kanhu Murmu University'),
(32579, 27457, 'en', 'name', 'Broward County Library'),
(32580, 27458, 'no_lang_code', 'name', 'HistoryMiami'),
(32581, 27459, 'no_lang_code', 'name', 'JULI Motorenwerk (Czechia)'),
(32582, 27460, 'en', 'name', 'Philological School of Higher Education'),
(32583, 27460, 'pl', 'name', 'Wyższa Szkoła Filologiczna'),
(32584, 27461, 'en', 'name', 'Boston University Brussels'),
(32585, 27462, 'en', 'name', 'Meadville Public Library'),
(32586, 27463, 'de', 'name', 'Verein fur freie Vortrage aus der Mathematik und Physik'),
(32587, 27463, 'en', 'name', 'Union of Czech Mathematicians and Physicists'),
(32588, 27464, 'no_lang_code', 'name', 'Ecosond (Czechia)'),
(32589, 27465, 'en', 'name', 'Uganda Pentecostal University'),
(32590, 27466, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ фізічнай ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(32591, 27466, 'en', 'name', 'Belarusian State University of Physical Culture'),
(32592, 27466, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(32593, 27467, 'en', 'name', 'National Humanities Center'),
(32594, 27468, 'en', 'name', 'Hulunbuir University'),
(32595, 27468, 'zh', 'name', 'å‘¼ä¼¦č“å°”å­¦é™¢'),
(32596, 27469, 'en', 'name', 'San Antonio Museum of Art'),
(32597, 27470, 'en', 'name', 'New England Fishery Management Council'),
(32598, 27471, 'en', 'name', 'International Community of Women Living with HIV'),
(32599, 27472, 'en', 'name', 'South Eastern Kenya University'),
(32600, 27473, 'en', 'name', 'Maria Grzegorzewska Academy of Special Education'),
(32601, 27473, 'pl', 'name', 'Akademia Pedagogiki Specjalnej im. Marii Grzegorzewskiej'),
(32602, 27474, 'en', 'name', 'New Hampshire Fish and Game Department'),
(32603, 27475, 'en', 'name', 'Library Company of Philadelphia'),
(32604, 27476, 'en', 'name', 'Brazos Valley Museum of Natural History'),
(32605, 27477, 'en', 'name', 'Warsaw School of Information Technology'),
(32606, 27477, 'pl', 'name', 'Wyższa Szkoła Informatyki Stosowanej i Zarządzania'),
(32607, 27478, 'en', 'name', 'Academy of Federal Security Guard Service of Russian Federation'),
(32608, 27478, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ охраны Российской ФеГерации'),
(32609, 27479, 'en', 'name', 'West Visayas State University'),
(32610, 27480, 'cs', 'name', 'ATAS elektromotory NƔchod'),
(32611, 27480, 'no_lang_code', 'name', 'ATAS (Czechia)'),
(32612, 27481, 'bn', 'name', 'ą¦›ą¦¤ą§ą¦¤ą§€ą¦øą¦—ą¦¢ą¦¼ ą¦øą§ą¦¬ą¦¾ą¦®ą§€ ą¦¬ą¦æą¦¬ą§‡ą¦•ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(32613, 27481, 'en', 'name', 'Chhattisgarh Swami Vivekanand Technical University'),
(32614, 27481, 'hi', 'name', 'ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼ ą¤øą„ą¤µą¤¾ą¤®ą„€ ą¤µą¤æą¤µą„‡ą¤•ą¤¾ą¤Øą¤‚ą¤¦ ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(32615, 27482, 'en', 'name', 'Khakass Institute of Business'),
(32616, 27482, 'ru', 'name', 'Єакасский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(32617, 27483, 'en', 'name', 'Preston Institute of Management Science and Technology'),
(32618, 27484, 'en', 'name', 'Wawasan Open University'),
(32619, 27484, 'ms', 'name', 'Universiti Terbuka Wawasan'),
(32620, 27484, 'zh', 'name', 'å®ę„æå¼€ę”¾å¤§å­¦'),
(32621, 27485, 'en', 'name', 'Smolensk State Academy of Physical Culture, Sport and Tourism'),
(32622, 27485, 'ru', 'name', 'Š”Š¼Š¾Š»ŠµŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(32623, 27486, 'en', 'name', 'Mihail Kogălniceanu University'),
(32624, 27486, 'ro', 'name', 'Universitatea Mihail Kogălniceanu'),
(32625, 27487, 'en', 'name', 'Moscow Institute of Economics Politics and Law'),
(32626, 27487, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, политики Šø права'),
(32627, 27488, 'id', 'name', 'Universitas Kristen Indonesia Tomohon'),
(32628, 27489, 'en', 'name', 'Guizhou University'),
(32629, 27489, 'zh', 'name', 'č“µå·žå¤§å­¦'),
(32630, 27490, 'az', 'name', 'NaxƧıvan Dƶvlət Universiteti'),
(32631, 27490, 'en', 'name', 'Nakhchivan State University'),
(32632, 27490, 'ru', 'name', 'ŠŠ°Ń…ŠøŃ‡ŠµŠ²Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32633, 27491, 'ja', 'name', 'ę—„ęœ¬ę–‡ē†å¤§å­¦'),
(32634, 27491, 'no_lang_code', 'name', 'Nippon Bunri University'),
(32635, 27492, 'no_lang_code', 'name', 'Huachiew Chalermprakiet University'),
(32636, 27492, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø«ąø±ąø§ą¹€ąø‰ąøµąø¢ąø§ą¹€ąø‰ąø„ąø“ąø”ąøžąø£ąø°ą¹€ąøąøµąø¢ąø£ąø•ąø“'),
(32637, 27493, 'en', 'name', 'Solomon R. Guggenheim Museum'),
(32638, 27494, 'en', 'name', 'Western Mindanao State University'),
(32639, 27495, 'en', 'name', 'Glendale University College of Law'),
(32640, 27496, 'en', 'name', 'Samara State University of Economics'),
(32641, 27496, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32642, 27497, 'en', 'name', 'Highland Park Public Library'),
(32643, 27498, 'en', 'name', 'Museum of Ventura County'),
(32644, 27499, 'en', 'name', 'Legnica University of Management'),
(32645, 27499, 'pl', 'name', 'Wyższa Szkoła Menedżerska w Legnicy'),
(32646, 27500, 'en', 'name', 'Dr. K.N.Modi University'),
(32647, 27500, 'hi', 'name', 'ą¤”ą„‰. ą¤•ą„‡.ą¤ą¤Ø.ą¤®ą„‹ą¤¦ą„€ ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(32648, 27501, 'en', 'name', 'Smolensk State Medical University'),
(32649, 27501, 'ru', 'name', 'смоленский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32650, 27502, 'en', 'name', 'Talladega Public Library'),
(32651, 27503, 'en', 'name', 'Fairfax County Public Library'),
(32652, 27504, 'en', 'name', 'New Brunswick Free Public Library'),
(32653, 27505, 'en', 'name', 'Children''s Museum of Pittsburgh'),
(32654, 27506, 'en', 'name', 'Fauquier County Public Library'),
(32655, 27507, 'en', 'name', 'Grass Roots Art and Community Effort'),
(32656, 27508, 'en', 'name', 'Delta International University'),
(32657, 27509, 'no_lang_code', 'name', 'Betosan (Czechia)'),
(32658, 27510, 'en', 'name', 'Shoin University'),
(32659, 27510, 'ja', 'name', 'ę¾č”­å¤§å­¦'),
(32660, 27511, 'en', 'name', 'Huafan University'),
(32661, 27511, 'zh', 'name', 'čÆę¢µå¤§å­ø'),
(32662, 27512, 'en', 'name', 'Pibulsongkram Rajabhat University'),
(32663, 27512, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøžąø“ąøšąø¹ąø„ąøŖąø‡ąø„ąø£ąø²ąø”'),
(32664, 27513, 'en', 'name', 'Noyes Museum'),
(32665, 27514, 'en', 'name', 'Mexic-Arte Museum'),
(32666, 27515, 'en', 'name', 'Riverside County Parks'),
(32667, 27516, 'en', 'name', 'Russian Academy of Entrepreneurship'),
(32668, 27516, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŸŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(32669, 27517, 'de', 'name', 'Duale Hochschule Baden-Württemberg'),
(32670, 27517, 'en', 'name', 'Baden-Wuerttemberg Cooperative State University'),
(32671, 27518, 'en', 'name', 'Boricua College'),
(32672, 27519, 'en', 'name', 'Alabama Department of Revenue'),
(32673, 27520, 'en', 'name', 'International Market Institute'),
(32674, 27520, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рынка'),
(32675, 27521, 'cs', 'name', 'VysokĆ” Skola Logistiky'),
(32676, 27522, 'en', 'name', 'St. Paul University Philippines'),
(32677, 27523, 'bs', 'name', 'Univerzitet Bijeljina'),
(32678, 27523, 'en', 'name', 'University of Bijeljina'),
(32679, 27523, 'sr', 'name', 'Универзитет Š‘ŠøŃ˜ŠµŃ™ŠøŠ½Š°'),
(32680, 27524, 'id', 'name', 'Universitas 17 Agustus 1945 Surabaya'),
(32681, 27525, 'en', 'name', 'Algerian Petroleum Institute'),
(32682, 27525, 'fr', 'name', 'Institut AlgƩrien du PƩtrole'),
(32683, 27526, 'id', 'name', 'Universitas Muhammadiyah Buton'),
(32684, 27527, 'en', 'name', 'Mohammad Ali Jinnah University'),
(32685, 27527, 'ur', 'name', 'جامعہ Ł…Ų­Ł…ŲÆ Ų¹Ł„ŪŒ جناح'),
(32686, 27528, 'no_lang_code', 'name', 'SE-MI Technology (Czechia)'),
(32687, 27529, 'en', 'name', 'Roland Park Country School'),
(32688, 27530, 'en', 'name', 'John Garang Memorial University of Science and Technology'),
(32689, 27531, 'hi', 'name', 'ą¤•ą„ą¤¶ą¤¾ą¤­ą¤¾ą¤Š ą¤ ą¤¾ą¤•ą¤°ą„‡ ą¤Ŗą¤¤ą„ą¤°ą¤•ą¤¾ą¤°ą¤æą¤¤ą¤¾ ą¤ą¤µą¤‚ ą¤øą¤‚ą¤šą¤¾ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(32690, 27531, 'no_lang_code', 'name', 'Kushabhau Thakre Patrakarita Avam Jansanchar University'),
(32691, 27532, 'en', 'name', 'Sardar Vallabhbhai National Institute of Technology Surat'),
(32692, 27532, 'hi', 'name', 'सरदार ą¤µą¤²ą„ą¤²ą¤­ą¤­ą¤¾ą¤ˆ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤øą„‚ą¤°ą¤¤'),
(32693, 27533, 'no_lang_code', 'name', 'LOM Praha (Czechia)'),
(32694, 27534, 'en', 'name', 'Springfield Museums'),
(32695, 27535, 'en', 'name', 'Bashkir State Agrarian University'),
(32696, 27535, 'ru', 'name', 'Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32697, 27536, 'en', 'name', 'Kogakkan University'),
(32698, 27536, 'ja', 'name', 'ēš‡å­øé¤Øå¤§å­¦'),
(32699, 27537, 'be', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ инженерный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ МЧД Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(32700, 27537, 'en', 'name', 'Gomel Engineering Institute'),
(32701, 27538, 'cs', 'name', 'UměleckoprÅÆmyslovĆ© Muzeum v Praze'),
(32702, 27538, 'en', 'name', 'Museum of Decorative Arts in Prague'),
(32703, 27539, 'en', 'name', 'North Pacific Fishery Management Council'),
(32704, 27540, 'en', 'name', 'Masurian University in Olecko'),
(32705, 27540, 'pl', 'name', 'Wszechnica Mazurska w Olecku'),
(32706, 27541, 'en', 'name', 'Hawaii State Judiciary'),
(32707, 27542, 'no_lang_code', 'name', 'APS (Czechia)'),
(32708, 27543, 'en', 'name', 'University Press of Mississippi'),
(32709, 27544, 'en', 'name', 'Fraunces Tavern Museum'),
(32710, 27545, 'no_lang_code', 'name', 'AMF Reece (Czechia)'),
(32711, 27546, 'en', 'name', 'University of Rizal System'),
(32712, 27547, 'en', 'name', 'Lyman Museum'),
(32713, 27548, 'no_lang_code', 'name', 'Tsaritsyn Orthodox University of St. Sergius of Radonezh'),
(32714, 27548, 'ru', 'name', 'Царицынский православный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ препоГобного Š”ŠµŃ€Š³ŠøŃ РаГонежского'),
(32715, 27549, 'no_lang_code', 'name', 'Ham-Final (Czechia)'),
(32716, 27550, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³Ų±ŲŖ'),
(32717, 27550, 'en', 'name', 'Sirte University'),
(32718, 27551, 'de', 'name', 'Ukrainische Freie Universität München'),
(32719, 27551, 'en', 'name', 'Ukrainian Free University'),
(32720, 27552, 'en', 'name', 'Resource Conservation District of Santa Cruz County'),
(32721, 27553, 'en', 'name', 'Bering Sea Fishermen’s Association'),
(32722, 27554, 'ja', 'name', 'åŗƒå³¶å„³å­¦é™¢å¤§å­¦'),
(32723, 27554, 'no_lang_code', 'name', 'Hiroshima Jogakuin University'),
(32724, 27555, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(32725, 27555, 'en', 'name', 'Arab Open University'),
(32726, 27556, 'en', 'name', 'Tokyo Future University'),
(32727, 27556, 'ja', 'name', 'ę±äŗ¬ęœŖę„å¤§å­¦'),
(32728, 27557, 'id', 'name', 'Universitas Al-Ghifari'),
(32729, 27558, 'en', 'name', 'National Civil Rights Museum'),
(32730, 27559, 'en', 'name', 'Samara State Medical University'),
(32731, 27559, 'ru', 'name', 'Дамарский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Университет'),
(32732, 27560, 'id', 'name', 'Universitas Gunung Kidul'),
(32733, 27561, 'ar', 'name', 'مستؓفى الأسد Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(32734, 27561, 'en', 'name', 'Al Assad University Hospital'),
(32735, 27562, 'en', 'name', 'Hawaiian Historical Society'),
(32736, 27563, 'en', 'name', 'Oita University of Nursing and Health Sciences'),
(32737, 27563, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹ēœ‹č­·ē§‘å­¦å¤§å­¦'),
(32738, 27564, 'en', 'name', 'Institute of Commerce and Law'),
(32739, 27564, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коммерции Šø праваWebsiteDirections'),
(32740, 27565, 'en', 'name', 'Taiwan Hospitality and Tourism University'),
(32741, 27565, 'zh', 'name', '臺灣觀光學院'),
(32742, 27566, 'en', 'name', 'Bisbee Mining & Historical Museums'),
(32743, 27567, 'en', 'name', 'Osaka University of Tourism'),
(32744, 27567, 'ja', 'name', 'å¤§é˜Ŗč¦³å…‰å¤§å­¦'),
(32745, 27568, 'hi', 'name', 'Sri Padmavati Mahila Visvavidyalayam'),
(32746, 27568, 'te', 'name', 'ą°Ŗą°¦ą±ą°®ą°¾ą°µą°¤ą°æ మహిళా ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(32747, 27569, 'en', 'name', 'Ufa State Institute of Arts'),
(32748, 27569, 'ru', 'name', 'Уфимский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² имени Загира Исмагилова'),
(32749, 27570, 'en', 'name', 'Almamer University'),
(32750, 27571, 'id', 'name', 'Universitas Dian Nusantara'),
(32751, 27572, 'en', 'name', 'Gori State Teaching University'),
(32752, 27572, 'ka', 'name', 'įƒ’įƒįƒ įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(32753, 27573, 'tl', 'name', 'Centro Escolar University Makati'),
(32754, 27574, 'en', 'name', 'Kyiv Institute of Traditional Medicine'),
(32755, 27575, 'en', 'name', 'Berkshire Community College'),
(32756, 27576, 'fr', 'name', 'Institut Supérieur de Formation aĢ€ Distance'),
(32757, 27577, 'en', 'name', 'Chungwoon University'),
(32758, 27577, 'ko', 'name', 'ģ²­ģš“ėŒ€ķ•™źµ'),
(32759, 27578, 'en', 'name', 'Gifu College of Nursing'),
(32760, 27578, 'ja', 'name', 'å²é˜œēœŒē«‹ēœ‹č­·å¤§å­¦'),
(32761, 27579, 'en', 'name', 'Western New York Public Broadcasting Association'),
(32762, 27580, 'id', 'name', 'Universitas Nusa Lontar Rote'),
(32763, 27581, 'en', 'name', 'Nong Lam University Ho Chi Minh City'),
(32764, 27581, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c NĆ“ng LĆ¢m ThĆ nh phố Hồ ChĆ­ Minh'),
(32765, 27582, 'no_lang_code', 'name', 'Pontex (Czechia)'),
(32766, 27583, 'en', 'name', 'California Conservation Corps'),
(32767, 27584, 'en', 'name', 'Ider University'),
(32768, 27584, 'mn', 'name', 'Š˜Š“ŃŃ€ Š“ŃŃŠ“ ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(32769, 27585, 'en', 'name', 'Jumonji University'),
(32770, 27585, 'ja', 'name', 'åę–‡å­—å­¦åœ’å„³å­å¤§å­¦'),
(32771, 27586, 'en', 'name', 'Institute for Architecture and Urban Studies'),
(32772, 27587, 'en', 'name', 'Saint Petersburg State University of Civil Aviation'),
(32773, 27587, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ гражГанской авиации'),
(32774, 27588, 'en', 'name', 'Marine Conservation Institute'),
(32775, 27589, 'en', 'name', 'Bhagwant University'),
(32776, 27589, 'hi', 'name', 'भगवंत ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(32777, 27590, 'en', 'name', 'Madison Museum of Contemporary Art'),
(32778, 27591, 'en', 'name', 'National Textile University'),
(32779, 27591, 'ur', 'name', 'Ł†ŪŒŲ“Ł†Ł„ Ł¹ŪŒŚ©Ų³Ł¹Ų§Ų¦Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(32780, 27592, 'en', 'name', 'Museum of Danish America'),
(32781, 27593, 'ja', 'name', 'å±±ę¢Øč‹±å’Œå¤§å­¦'),
(32782, 27593, 'no_lang_code', 'name', 'Yamanashi Eiwa College'),
(32783, 27594, 'en', 'name', 'Texas Folklife Resources'),
(32784, 27595, 'en', 'name', 'Rappahannock Community College'),
(32785, 27596, 'en', 'name', 'Watsonville Wetlands Watch'),
(32786, 27597, 'en', 'name', 'Oaksterdam University'),
(32787, 27598, 'en', 'name', 'Webb School of Knoxville'),
(32788, 27599, 'en', 'name', 'Buckingham Browne & Nichols'),
(32789, 27600, 'en', 'name', 'Nizhny Novgorod Institute of Management and Business'),
(32790, 27600, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента Šø бизнеса'),
(32791, 27601, 'en', 'name', 'Lahore Leads University'),
(32792, 27601, 'ur', 'name', 'Ł„Ų§ŪŁˆŲ± Ł„ŪŒŚˆŲ² ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(32793, 27602, 'en', 'name', 'University of Arts'),
(32794, 27603, 'no_lang_code', 'name', 'Medistyl (Czechia)'),
(32795, 27604, 'ar', 'name', 'الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„ŁŲ±Ł†Ų³ŁŠŲ© للأعمال و ال؄دارة في Ų§Ų±ŲØŁŠŁ„'),
(32796, 27604, 'en', 'name', 'Lebanese French University'),
(32797, 27605, 'id', 'name', 'Universitas Muhammadiyah Sumatera Barat'),
(32798, 27606, 'en', 'name', 'Texas State Historical Association'),
(32799, 27607, 'id', 'name', 'Universitas Jabal Ghafur'),
(32800, 27608, 'en', 'name', 'Dawood University of Engineering and Technology'),
(32801, 27608, 'ur', 'name', 'ŲÆŲ§Ų¤ŲÆ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(32802, 27609, 'en', 'name', 'Birmingham Museum of Art'),
(32803, 27610, 'en', 'name', 'Orleans Parish Civil Clerk of Court'),
(32804, 27611, 'en', 'name', 'Wilbur Wright College'),
(32805, 27612, 'en', 'name', 'Institute of World Civilizations'),
(32806, 27613, 'en', 'name', 'St Theresa International College'),
(32807, 27613, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ ą¹€ąø‹ąø™ąø•ą¹Œą¹€ąø—ą¹€ąø£ąø‹ąø²'),
(32808, 27614, 'en', 'name', 'TransWorld University'),
(32809, 27614, 'zh', 'name', 'ē’°ēƒē§‘ęŠ€å¤§å­ø'),
(32810, 27615, 'en', 'name', 'Ferris University'),
(32811, 27615, 'ja', 'name', 'ćƒ•ć‚§ćƒŖć‚¹å„³å­¦é™¢å¤§å­¦'),
(32812, 27616, 'no_lang_code', 'name', 'Koexpro Ostrava (Czechia)'),
(32813, 27617, 'en', 'name', 'Museum of the Gulf Coast'),
(32814, 27618, 'en', 'name', 'Tohoku University of Art and Design'),
(32815, 27618, 'ja', 'name', 'ę±åŒ—čŠøč”“å·„ē§‘å¤§å­¦'),
(32816, 27619, 'en', 'name', 'University of Bamenda'),
(32817, 27619, 'fr', 'name', 'UniversitƩ de Bamenda'),
(32818, 27620, 'en', 'name', 'Cenderawasih University'),
(32819, 27620, 'id', 'name', 'Universitas Cenderawasih'),
(32820, 27621, 'en', 'name', 'Ukrainian State University of Chemical Technology'),
(32821, 27621, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний хіміко-технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32822, 27622, 'en', 'name', 'Teaneck Public Library'),
(32823, 27623, 'id', 'name', 'Universitas Kristen Papua'),
(32824, 27624, 'cs', 'name', 'AHT Energetika'),
(32825, 27624, 'no_lang_code', 'name', 'AHT Energetics (Czechia)'),
(32826, 27625, 'en', 'name', 'Blount County Government'),
(32827, 27626, 'en', 'name', 'Brigham City Museum-Gallery'),
(32828, 27627, 'ro', 'name', 'Universitatea Andrei Şaguna'),
(32829, 27628, 'id', 'name', 'Universitas Muhammadiyah Jakarta'),
(32830, 27629, 'no_lang_code', 'name', 'Crawford & Stearns (United States)'),
(32831, 27630, 'en', 'name', 'Japanese American Service Committee'),
(32832, 27631, 'pl', 'name', 'Wyższa Szkoła Zarządzania w Częstochowie'),
(32833, 27632, 'id', 'name', 'Universitas Prof Dr Moestopo'),
(32834, 27633, 'de', 'name', 'Hochschule für Musik und Theater Rostock'),
(32835, 27633, 'en', 'name', 'Rostock University of Music and Theatre'),
(32836, 27634, 'en', 'name', 'Cyprus American Archaeological Research Institute'),
(32837, 27635, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© للثقافة ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ…'),
(32838, 27635, 'en', 'name', 'American University of Culture and Education'),
(32839, 27636, 'en', 'name', 'Sisaket Rajabhat University'),
(32840, 27636, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąø ศรีสะเกษ'),
(32841, 27637, 'en', 'name', 'Sheffield Historical Society'),
(32842, 27638, 'en', 'name', 'National Center for Jewish Film'),
(32843, 27639, 'en', 'name', 'Kent Memorial Library'),
(32844, 27640, 'en', 'name', 'General John A Logan Museum'),
(32845, 27641, 'en', 'name', 'Florida Aquarium'),
(32846, 27642, 'no_lang_code', 'name', 'Trystom (Czechia)'),
(32847, 27643, 'en', 'name', 'Belgorod Law Institute of the Russian Interior Ministry'),
(32848, 27643, 'ru', 'name', 'БелгороГский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(32849, 27644, 'id', 'name', 'Universitas Muhammadiyah Kendari'),
(32850, 27645, 'en', 'name', 'Karaj Payam Noor University'),
(32851, 27645, 'fa', 'name', 'دانؓگاه Ł¾ŪŒŲ§Ł… Ł†ŁˆŲ± کرج'),
(32852, 27646, 'en', 'name', 'Massachusetts College of Art and Design'),
(32853, 27646, 'fr', 'name', 'FacultƩ d''art et design du massachusetts'),
(32854, 27647, 'en', 'name', 'Artifex University'),
(32855, 27647, 'ro', 'name', 'Universitatea Artifex'),
(32856, 27648, 'en', 'name', 'Petre Shotadze Tbilisi Medical Academy'),
(32857, 27648, 'ka', 'name', 'įƒžįƒ”įƒ¢įƒ įƒ” įƒØįƒįƒ—įƒįƒ«įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(32858, 27649, 'en', 'name', 'Admiral Ushakov State Maritime University'),
(32859, 27650, 'en', 'name', 'Yanbian University of Science and Technology'),
(32860, 27650, 'zh', 'name', 'å»¶č¾¹ē§‘ęŠ€å¤§å­¦'),
(32861, 27651, 'en', 'name', 'Ivanovo State Medical Academy'),
(32862, 27651, 'ru', 'name', 'Š˜Š²Š°Š½Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(32863, 27652, 'id', 'name', 'Universitas Wisnuwardhana Malang'),
(32864, 27653, 'no_lang_code', 'name', 'Tenza (Czechia)'),
(32865, 27654, 'no_lang_code', 'name', 'Soning (Czechia)'),
(32866, 27655, 'en', 'name', 'Ashikaga University'),
(32867, 27655, 'ja', 'name', '足利巄愭大学'),
(32868, 27656, 'id', 'name', 'Universitas Muhammadiyah Sukabumi'),
(32869, 27657, 'kk', 'name', 'ŅšŠ¾Ń€Ņ›Ń‹Ń‚ Ата атынГағы ŅšŃ‹Š·Ń‹Š»Š¾Ń€Š“Š° мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(32870, 27657, 'no_lang_code', 'name', 'Korkyt Ata Kyzylorda State University'),
(32871, 27658, 'en', 'name', 'Toyama University of International Studies'),
(32872, 27658, 'ja', 'name', 'åÆŒå±±å›½éš›å¤§å­¦'),
(32873, 27659, 'en', 'name', 'Boot Hill Museum'),
(32874, 27660, 'en', 'name', 'Yaroslavl State Theatre Institute'),
(32875, 27660, 'ru', 'name', 'Ярославский Š³Š¾ŃŃƒŠ“арственный Ń‚ŠµŠ°Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(32876, 27661, 'en', 'name', 'Ho Chi Minh City University of Law'),
(32877, 27661, 'fr', 'name', 'UniversitƩ de droit d''hƓ-chi-minh-ville'),
(32878, 27661, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Luįŗ­t ThĆ nh phố Hồ ChĆ­ Minh'),
(32879, 27662, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ парламентаризма Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(32880, 27662, 'en', 'name', 'Institute of Parliamentarism and Entrepreneurship'),
(32881, 27663, 'en', 'name', 'Old Independence Regional Museum'),
(32882, 27664, 'pl', 'name', 'Wyższa Szkoła Pedagogiczna w Łodzi'),
(32883, 27665, 'no_lang_code', 'name', 'SMS (Czechia)'),
(32884, 27666, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(32885, 27666, 'no_lang_code', 'name', 'Nepal Sanskrit University'),
(32886, 27667, 'no_lang_code', 'name', 'Mott MacDonald (Czechia)'),
(32887, 27668, 'no_lang_code', 'name', 'Beta Control (Czechia)'),
(32888, 27669, 'en', 'name', 'Å iauliai University'),
(32889, 27669, 'lt', 'name', 'Šiaulių universitetas'),
(32890, 27669, 'pl', 'name', 'Uniwersytet Szawelski'),
(32891, 27670, 'en', 'name', 'Frontier Nursing University'),
(32892, 27671, 'no_lang_code', 'name', 'Jigjiga University'),
(32893, 27671, 'so', 'name', 'Jig Jiga'),
(32894, 27672, 'en', 'name', 'Polish American Historical Association'),
(32895, 27673, 'en', 'name', 'Western Pacific Regional Fishery Management Council'),
(32896, 27674, 'pl', 'name', 'Akademia Muzyczna im. Ignacego Jana Paderewskiego w Poznaniu'),
(32897, 27675, 'en', 'name', 'Saengtham College'),
(32898, 27675, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąøŖąø‡ąø˜ąø£ąø£ąø”'),
(32899, 27676, 'no_lang_code', 'name', 'Trumf International (Czechia)'),
(32900, 27677, 'ja', 'name', 'ę±åŒ—ē”Ÿę“»ę–‡åŒ–å¤§å­¦'),
(32901, 27677, 'no_lang_code', 'name', 'Tohoku Seikatsu Bunka University'),
(32902, 27678, 'en', 'name', 'Saint Petersburg State Forest Technical University'),
(32903, 27678, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(32904, 27679, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¹Ł…ŁˆŲÆ'),
(32905, 27679, 'en', 'name', 'Amoud University'),
(32906, 27679, 'so', 'name', 'Jaamacadda Camuud'),
(32907, 27680, 'ar', 'name', 'الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(32908, 27680, 'en', 'name', 'Lebanese International University'),
(32909, 27680, 'fr', 'name', 'UniversitƩ internationale libanaise'),
(32910, 27681, 'en', 'name', 'Eugene O''Neill Theater Center'),
(32911, 27682, 'en', 'name', 'Forestry and Game Management Research Institute'),
(32912, 27683, 'en', 'name', 'Institute of Professional Innovations'),
(32913, 27683, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠ¤Š•Š”Š”Š˜ŠžŠŠŠ›Š¬ŠŠ«Š„ Š˜ŠŠŠžŠ’ŠŠ¦Š˜Š™'),
(32914, 27684, 'en', 'name', 'Samara State Institute of Culture'),
(32915, 27684, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(32916, 27685, 'en', 'name', 'Ancient Biblical Manuscript Center'),
(32917, 27686, 'en', 'name', 'Maharashtra Animal and Fishery Sciences University'),
(32918, 27686, 'mr', 'name', 'ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤Ŗą¤¶ą„ व ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ , ą¤Øą¤¾ą¤—ą¤Ŗą„‚ą¤°'),
(32919, 27687, 'en', 'name', 'MNEPU Academy'),
(32920, 27687, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠŠµŠ·Š°Š²ŠøŃŠøŠ¼Ń‹Š¹ Эколого-ŠŸŠ¾Š»ŠøŃ‚Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(32921, 27688, 'pl', 'name', 'Wyższa Szkoła Wychowania Fizycznego i Turystyki w Białymstoku'),
(32922, 27689, 'en', 'name', 'Yangon University Of Distance Education'),
(32923, 27689, 'my', 'name', 'į€”į€į€±į€øį€žį€„į€ŗ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(32924, 27690, 'en', 'name', 'Abraham Lincoln Presidential Library Foundation'),
(32925, 27691, 'en', 'name', 'Siberian State University of Water Transport'),
(32926, 27691, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного транспорта'),
(32927, 27692, 'en', 'name', 'Academy of Labour and Social Relations'),
(32928, 27692, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń‚Ń€ŃƒŠ“Š° Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(32929, 27693, 'no_lang_code', 'name', 'SOMA Engineering (Czechia)'),
(32930, 27694, 'en', 'name', 'Grozny State Oil Technical University named after Academician MD Millionshtchikov'),
(32931, 27694, 'ru', 'name', 'Грозненский Š³Š¾ŃŃƒŠ“арственный Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика М. Š”. ŠœŠøŠ»Š»ŠøŠ¾Š½Ń‰ŠøŠŗŠ¾Š²Š°'),
(32932, 27695, 'en', 'name', 'University of Cebu'),
(32933, 27695, 'tl', 'name', 'Pamantasan ng Cebu'),
(32934, 27696, 'no_lang_code', 'name', 'Hydrosystem Project (Czechia)'),
(32935, 27697, 'en', 'name', 'Karshi State University'),
(32936, 27697, 'uz', 'name', 'Qarshi Davlat Universiteti'),
(32937, 27698, 'en', 'name', 'American Antiquarian Society'),
(32938, 27699, 'no_lang_code', 'name', 'ProSpon (Czechia)'),
(32939, 27700, 'en', 'name', 'Torrens University Australia'),
(32940, 27701, 'en', 'name', 'Surya University'),
(32941, 27702, 'ja', 'name', 'č‹«å°ē‰§é§’ę¾¤å¤§å­¦'),
(32942, 27702, 'no_lang_code', 'name', 'Tomakomai Komazawa University'),
(32943, 27703, 'cs', 'name', 'Nemocnice PodlesĆ­'),
(32944, 27704, 'en', 'name', 'Bangkok Business College'),
(32945, 27704, 'th', 'name', 'ą¹‚ąø£ąø‡ą¹€ąø£ąøµąø¢ąø™ąøąø£ąøøąø‡ą¹€ąø—ąøžąøąø²ąø£ąøšąø±ąøąøŠąøµąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(32946, 27705, 'no_lang_code', 'name', 'Decomkov Praha (Czechia)'),
(32947, 27706, 'en', 'name', 'Hawaii Seafood Council'),
(32948, 27707, 'en', 'name', 'Essex County College'),
(32949, 27708, 'en', 'name', 'Bunka Gakuen University'),
(32950, 27708, 'ja', 'name', 'ę–‡åŒ–å­¦åœ’å¤§å­¦'),
(32951, 27709, 'en', 'name', 'Coastland University'),
(32952, 27710, 'en', 'name', 'Moscow State Regional Socio-Humanitarian Institute'),
(32953, 27711, 'en', 'name', 'Concord Free Public Library'),
(32954, 27712, 'en', 'name', 'Yong In University'),
(32955, 27712, 'ko', 'name', 'ģš©ģøėŒ€ķ•™źµ'),
(32956, 27713, 'en', 'name', 'University of Asmara'),
(32957, 27714, 'en', 'name', 'Westfield Center for Historical Keyboard Studies'),
(32958, 27715, 'en', 'name', 'North Star Museum of Boy Scouting and Girl Scouting'),
(32959, 27716, 'en', 'name', 'Craft Contemporary'),
(32960, 27717, 'en', 'name', 'Fifth Maine Regiment Museum'),
(32961, 27718, 'no_lang_code', 'name', 'Jawa (Czechia)'),
(32962, 27719, 'id', 'name', 'Universitas Gresik'),
(32963, 27720, 'en', 'name', 'Chelyabinsk State Institute of Culture'),
(32964, 27720, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(32965, 27721, 'bn', 'name', 'ą¦‰ą¦¤ą§ą¦¤ą¦°ą¦¾ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ');
INSERT INTO `ror_settings` VALUES
(32966, 27721, 'en', 'name', 'Uttara University'),
(32967, 27722, 'en', 'name', 'CuriOdyssey'),
(32968, 27723, 'en', 'name', 'Urdaneta City University'),
(32969, 27723, 'tl', 'name', 'Pamantasang Lungsod ng Urdaneta'),
(32970, 27724, 'en', 'name', 'Kokand State Pedagogical Institute named after Mukimi'),
(32971, 27724, 'uz', 'name', 'Muqimiy nomidagi Qo''qon davlat pedagogika instituti'),
(32972, 27725, 'en', 'name', 'University of Computer Sciences and Economics in Olsztyn'),
(32973, 27725, 'pl', 'name', 'WYŻSZA SZKOŁA INFORMATYKI I EKONOMII TWP W OLSZTYNIE'),
(32974, 27726, 'en', 'name', 'Captain Avery Museum'),
(32975, 27727, 'ar', 'name', 'مستؓفى سيدة Ų§Ł„Ł…Ų¹ŁˆŁ†Ų§ŲŖ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(32976, 27727, 'fr', 'name', 'Centre Hospitalier Universitaire Notre Dame des Secours'),
(32977, 27728, 'no_lang_code', 'name', 'Shakespeare Theatre Company'),
(32978, 27729, 'en', 'name', 'Titu Maiorescu University'),
(32979, 27729, 'ro', 'name', 'Universitatea Titu Maiorescu'),
(32980, 27730, 'en', 'name', 'Intrepid Sea Air & Space Museum'),
(32981, 27731, 'en', 'name', 'Maine Historical Society'),
(32982, 27732, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŁ…Ų§Ł…Ų©'),
(32983, 27732, 'en', 'name', 'Al Yamamah University'),
(32984, 27733, 'en', 'name', 'Michigan State Police'),
(32985, 27734, 'no_lang_code', 'name', 'Inco Engineering (Czechia)'),
(32986, 27735, 'no_lang_code', 'name', 'Sudop Praha (Czechia)'),
(32987, 27736, 'en', 'name', 'Academy of Fine Arts in Warsaw'),
(32988, 27736, 'pl', 'name', 'Akademia Sztuk Pięknych w Warszawie'),
(32989, 27737, 'en', 'name', 'Butte-Silver Bow Public Archives'),
(32990, 27738, 'ja', 'name', '宮城学院儳子大学'),
(32991, 27738, 'no_lang_code', 'name', 'Miyagi Gakuin Women''s University'),
(32992, 27739, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ł…ŲÆŁŠŁ†Ł‡'),
(32993, 27739, 'en', 'name', 'Madina Academy'),
(32994, 27740, 'en', 'name', 'Institute of Management, Marketing and Finance'),
(32995, 27740, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента, маркетинга Šø финансов'),
(32996, 27741, 'en', 'name', 'Kenai Peninsula Borough'),
(32997, 27742, 'en', 'name', 'Honghe University'),
(32998, 27743, 'en', 'name', 'University Medical Center'),
(32999, 27744, 'en', 'name', 'Historic Charleston Foundation'),
(33000, 27745, 'en', 'name', 'Chiangrai College'),
(33001, 27745, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøŠąøµąø¢ąø‡ąø£ąø²ąø¢'),
(33002, 27746, 'cs', 'name', 'České Ekologické Manažerské Centrum'),
(33003, 27747, 'en', 'name', 'David Yellin College of Education'),
(33004, 27747, 'he', 'name', 'המכללה לחינוך ע"ש דוד ילין'),
(33005, 27748, 'en', 'name', 'University Press of Kentucky'),
(33006, 27749, 'en', 'name', 'Wheelwright Museum of the American Indian'),
(33007, 27750, 'en', 'name', 'Erie Canal Museum'),
(33008, 27751, 'pl', 'name', 'Uczelnia Łazarskiego'),
(33009, 27752, 'en', 'name', 'Euro Mediterranean University'),
(33010, 27752, 'sl', 'name', 'Evro-sredozemska univerza'),
(33011, 27753, 'en', 'name', 'Central University'),
(33012, 27754, 'no_lang_code', 'name', 'PrvnĆ­ ŽelezÔřskĆ” Společnost Kladno (Czechia)'),
(33013, 27755, 'de', 'name', 'Hochschule RheinMain'),
(33014, 27755, 'en', 'name', 'RheinMain University of Applied Sciences'),
(33015, 27756, 'en', 'name', 'Tambov State Music and Pedagogical Institute named after S.V. Rachmaninov'),
(33016, 27756, 'ru', 'name', 'Š¢ŠŠœŠ‘ŠžŠ’Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠœŠ£Š—Š«ŠšŠŠ›Š¬ŠŠž-ŠŸŠ•Š”ŠŠ“ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ИМ. Š”.Š’. Š ŠŠ„ŠœŠŠŠ˜ŠŠžŠ’Š'),
(33017, 27757, 'no_lang_code', 'name', 'Oseva Pro (Czechia)'),
(33018, 27758, 'id', 'name', 'Universitas Merdeka Pasuruan'),
(33019, 27759, 'de', 'name', 'Bundeskriminalamt'),
(33020, 27759, 'en', 'name', 'Federal Criminal Police Office'),
(33021, 27760, 'en', 'name', 'Boxerwood Nature Center and Woodland Garden'),
(33022, 27761, 'en', 'name', 'Siberian University of Consumer Cooperatives'),
(33023, 27761, 'ru', 'name', 'Дибирский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŠ¾Ń‚Ń€ŠµŠ±ŠøŃ‚ŠµŠ»ŃŒŃŠŗŠ¾Š¹ кооперации'),
(33024, 27762, 'en', 'name', 'Yewon Arts University'),
(33025, 27762, 'ko', 'name', 'ģ˜ˆģ›ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(33026, 27763, 'en', 'name', 'Robert S. Peabody Museum of Archaeology'),
(33027, 27764, 'en', 'name', 'National Building Museum'),
(33028, 27765, 'en', 'name', 'Institute of International Law, Economy, Humanitarian Sciences and Management named after K.V. Rossinskogo'),
(33029, 27765, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ•Š–Š”Š£ŠŠŠ ŠžŠ”ŠŠžŠ“Šž ŠŸŠ ŠŠ’Š, Š­ŠšŠžŠŠžŠœŠ˜ŠšŠ˜, Š“Š£ŠœŠŠŠ˜Š¢ŠŠ ŠŠ«Š„ ŠŠŠ£Šš И Š£ŠŸŠ ŠŠ’Š›Š•ŠŠ˜ŠÆ Š˜ŠœŠ•ŠŠ˜ К.Š’. Š ŠžŠ”Š”Š˜ŠŠ”ŠšŠžŠ“Šž'),
(33030, 27766, 'en', 'name', 'American Writers Museum'),
(33031, 27767, 'en', 'name', 'Kartini University'),
(33032, 27767, 'id', 'name', 'Universitas Kartini'),
(33033, 27768, 'en', 'name', 'Benguet State University'),
(33034, 27769, 'en', 'name', 'Nagoya Sangyo University'),
(33035, 27769, 'ja', 'name', 'åå¤å±‹ē”£ę„­å¤§å­¦'),
(33036, 27770, 'no_lang_code', 'name', 'Safina (Czechia)'),
(33037, 27771, 'en', 'name', 'Henry Ford Museum'),
(33038, 27772, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁˆŁ„Ų³'),
(33039, 27772, 'en', 'name', 'Gollis University'),
(33040, 27773, 'en', 'name', 'Open University Malaysia'),
(33041, 27773, 'ms', 'name', 'Universiti Terbuka Malaysia'),
(33042, 27773, 'zh', 'name', 'é©¬ę„č„æäŗšå¼€ę”¾å¤§å­¦'),
(33043, 27774, 'en', 'name', 'Nilai University'),
(33044, 27774, 'ms', 'name', 'Universiti Nilai'),
(33045, 27775, 'en', 'name', 'Quality Leadership University Panama'),
(33046, 27776, 'en', 'name', 'Kushiro Public University of Economics'),
(33047, 27776, 'ja', 'name', '釧路公立大学'),
(33048, 27777, 'cs', 'name', 'HygienickĆ” stanice hlavnĆ­ho města Prahy'),
(33049, 27778, 'en', 'name', 'Association for International Affairs'),
(33050, 27779, 'en', 'name', 'Infrastructure University Kuala Lumpur'),
(33051, 27779, 'ms', 'name', 'Kolej Universiti Infrastruktur Kuala Lumpur'),
(33052, 27780, 'en', 'name', 'Museum of History and Art'),
(33053, 27781, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ų§Ł„ŁŠŲ© لادارة الاعمال'),
(33054, 27781, 'fr', 'name', 'Ɖcole SupĆ©rieure des Affaires'),
(33055, 27782, 'en', 'name', 'Shelton History Center'),
(33056, 27783, 'en', 'name', 'Dane County Library Service'),
(33057, 27784, 'en', 'name', 'Orenburg State Pedagogical University'),
(33058, 27784, 'ru', 'name', 'ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33059, 27785, 'de', 'name', 'Theologische Hochschule Friedensau'),
(33060, 27785, 'en', 'name', 'Friedensau Adventist University'),
(33061, 27786, 'en', 'name', 'Cyber University'),
(33062, 27786, 'ja', 'name', 'ć‚µć‚¤ćƒćƒ¼å¤§å­¦'),
(33063, 27787, 'en', 'name', 'IB Euro-Caucasus University'),
(33064, 27788, 'en', 'name', 'Tuvan State University'),
(33065, 27788, 'ru', 'name', 'Тувинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33066, 27789, 'en', 'name', 'Lviv National Agrarian University'),
(33067, 27789, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Аграрний Університет'),
(33068, 27790, 'en', 'name', 'Mariners'' Museum'),
(33069, 27791, 'en', 'name', 'Hokkai School of Commerce'),
(33070, 27791, 'ja', 'name', 'åŒ—ęµ·å•†ē§‘å¤§å­¦'),
(33071, 27792, 'en', 'name', 'Fuller Craft Museum'),
(33072, 27793, 'en', 'name', 'Toho College of Music'),
(33073, 27793, 'ja', 'name', 'ę±é‚¦éŸ³ę„½å¤§å­¦'),
(33074, 27794, 'en', 'name', 'Tainan University of Technology'),
(33075, 27794, 'zh', 'name', 'å°å—ę‡‰ē”Øē§‘ęŠ€å¤§å­ø'),
(33076, 27795, 'en', 'name', 'Saint Petersburg State University of Economics'),
(33077, 27795, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ сервиса Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(33078, 27796, 'en', 'name', 'Nihon Pharmaceutical University'),
(33079, 27796, 'ja', 'name', 'ę—„ęœ¬č–¬ē§‘å¤§å­¦'),
(33080, 27797, 'en', 'name', 'Oleksandr Dovzhenko Hlukhiv National Pedagogical University'),
(33081, 27797, 'ru', 'name', 'Š“Š»ŃƒŃ…Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени АлексанГра Довженко'),
(33082, 27797, 'uk', 'name', 'Š“Š»ŃƒŃ…Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠžŠ»ŠµŠŗŃŠ°Š½Š“Ń€Š° Довженка'),
(33083, 27798, 'en', 'name', 'Georgian Institute of Public Affairs'),
(33084, 27798, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒ–įƒįƒ’įƒįƒ“įƒįƒ”įƒ‘įƒ įƒ˜įƒ• įƒ”įƒįƒ„įƒ›įƒ”įƒ—įƒ ინეტიტუტი'),
(33085, 27799, 'en', 'name', 'Belhaven University'),
(33086, 27800, 'en', 'name', 'Herring Gut Learning Center'),
(33087, 27801, 'en', 'name', 'Tianjin Conservatory of Music'),
(33088, 27801, 'zh', 'name', 'å¤©ę“„éŸ³ä¹å­¦é™¢'),
(33089, 27802, 'en', 'name', 'Hanshin University'),
(33090, 27802, 'ko', 'name', 'ķ•œģ‹ ėŒ€ķ•™źµ'),
(33091, 27803, 'en', 'name', 'Nalanda Open University'),
(33092, 27803, 'hi', 'name', 'ą¤Øą¤¾ą¤²ą¤Øą„ą¤¦ą¤¾ ą¤–ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33093, 27804, 'bn', 'name', 'আমেরিকা বাংলাদেশ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(33094, 27804, 'en', 'name', 'America Bangladesh University'),
(33095, 27805, 'en', 'name', 'Japan University of Economics'),
(33096, 27805, 'ja', 'name', 'ę—„ęœ¬ēµŒęøˆå¤§å­¦'),
(33097, 27806, 'en', 'name', 'Academy of American Franciscan History'),
(33098, 27807, 'en', 'name', 'Assam Down Town University'),
(33099, 27808, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© في لبنان'),
(33100, 27808, 'en', 'name', 'Beirut Islamic University'),
(33101, 27809, 'en', 'name', 'Ella Sharp Museum'),
(33102, 27810, 'en', 'name', 'Ulyanovsk Higher Civil Aviation School'),
(33103, 27810, 'ru', 'name', 'Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ авиационное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ гражГанской авиации'),
(33104, 27811, 'en', 'name', 'Kasem Bundit University'),
(33105, 27811, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøąø©ąø”ąøšąø±ąø“ąø‘ąø“ąø•'),
(33106, 27812, 'en', 'name', 'Children of the Sea'),
(33107, 27812, 'no_lang_code', 'name', 'Na Kama Kai'),
(33108, 27813, 'en', 'name', 'Soegijapranata Catholic University'),
(33109, 27813, 'id', 'name', 'Universitas Katolik Soegijapranata'),
(33110, 27814, 'en', 'name', 'Cherkasy Institute of Fire Safety named after Chornobyl Heroes of National University of Civil Defence of Ukraine'),
(33111, 27815, 'no_lang_code', 'name', 'Ecofluid Group (Czechia)'),
(33112, 27816, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عمان Ų§Ł„Ų¹Ų±ŲØŁŠŲ© للدراسات Ų§Ł„Ų¹Ł„ŁŠŲ§ الخاصة'),
(33113, 27816, 'en', 'name', 'Amman Arab University'),
(33114, 27817, 'en', 'name', 'Xi''an Conservatory of Music'),
(33115, 27817, 'zh', 'name', 'č„æå®‰éŸ³ä¹å­¦é™¢'),
(33116, 27818, 'en', 'name', 'Hsuan Chuang University'),
(33117, 27818, 'zh', 'name', 'ēŽ„å„˜å¤§å­ø'),
(33118, 27819, 'en', 'name', 'Heritage Museums and Gardens'),
(33119, 27820, 'id', 'name', 'Institut Seni Budaya Indonesia Bandung'),
(33120, 27821, 'en', 'name', 'Sandusky Library'),
(33121, 27822, 'no_lang_code', 'name', 'Best - Business (Czechia)'),
(33122, 27823, 'en', 'name', 'Kent State University, East Liverpool'),
(33123, 27824, 'en', 'name', 'University of Goma'),
(33124, 27824, 'fr', 'name', 'UniversitƩ de goma'),
(33125, 27825, 'en', 'name', 'Department of Land and Natural Resources'),
(33126, 27826, 'en', 'name', 'Birsa Agricultural University'),
(33127, 27826, 'hi', 'name', 'बिरसा ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33128, 27827, 'en', 'name', 'Foreign Trade University'),
(33129, 27827, 'vi', 'name', 'ĐẔi hį»c Ngoįŗ”i Thʰʔng'),
(33130, 27828, 'en', 'name', 'Yarsi University'),
(33131, 27828, 'id', 'name', 'Universitas YARSI'),
(33132, 27829, 'ja', 'name', 'ę±ęµ·å­¦åœ’å¤§å­¦'),
(33133, 27829, 'no_lang_code', 'name', 'Tokai Gakuen University'),
(33134, 27830, 'en', 'name', 'Flint Public Library'),
(33135, 27831, 'en', 'name', 'Denver Public Library'),
(33136, 27832, 'en', 'name', 'Far Eastern State Technical Fisheries University'),
(33137, 27833, 'en', 'name', 'Accra Institute of Technology'),
(33138, 27834, 'en', 'name', 'Summit County Juvenile Court'),
(33139, 27835, 'en', 'name', 'Hyperion University'),
(33140, 27835, 'ro', 'name', 'Universitatea Hyperion din Bucureşti'),
(33141, 27836, 'en', 'name', 'Muncie Public Library'),
(33142, 27837, 'en', 'name', 'Nagano University'),
(33143, 27837, 'ja', 'name', '長野大学'),
(33144, 27838, 'en', 'name', 'Isfahan University of Art'),
(33145, 27838, 'fa', 'name', 'دانؓگاه هنر اصفهان'),
(33146, 27839, 'en', 'name', 'Nizhny Novgorod State University of Architecture and Civil Engineering'),
(33147, 27839, 'ru', 'name', 'ŠŠ˜Š–Š•Š“ŠžŠ ŠžŠ”Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŠ Š„Š˜Š¢Š•ŠšŠ¢Š£Š ŠŠž-Š”Š¢Š ŠžŠ˜Š¢Š•Š›Š¬ŠŠ«Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(33148, 27840, 'en', 'name', 'Qidong Liver Cancer Prevention Research'),
(33149, 27841, 'en', 'name', 'Marine Conservation Alliance'),
(33150, 27842, 'en', 'name', 'Piedmont Community College'),
(33151, 27843, 'no_lang_code', 'name', 'BLOCK (Czechia)'),
(33152, 27844, 'no_lang_code', 'name', 'Juta (Czechia)'),
(33153, 27845, 'en', 'name', 'Kio University'),
(33154, 27845, 'ja', 'name', '畿央大学'),
(33155, 27846, 'en', 'name', 'Oakland Museum of California'),
(33156, 27847, 'en', 'name', 'Hadassah Academic College'),
(33157, 27847, 'he', 'name', 'מכללה ××§×“×ž×™×Ŗ הדהה ×™×Ø×•×©×œ×™×'),
(33158, 27848, 'en', 'name', 'Yu Da University'),
(33159, 27848, 'zh', 'name', 'č‚²é”ē§‘ęŠ€å¤§å­ø'),
(33160, 27849, 'en', 'name', 'New York Transit Museum'),
(33161, 27850, 'en', 'name', 'University of Medical Technology Mandalay'),
(33162, 27851, 'en', 'name', 'Penobscot River Restoration Trust'),
(33163, 27852, 'en', 'name', 'Liberty Memorial'),
(33164, 27853, 'ja', 'name', 'ę„›ēŸ„å­¦ę³‰å¤§å­¦'),
(33165, 27853, 'no_lang_code', 'name', 'Aichi Gakusen University'),
(33166, 27854, 'en', 'name', 'Islamic Azad University, Bandar Anzali Branch'),
(33167, 27854, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد Ų§Ł†Ų²Ł„ŪŒ'),
(33168, 27855, 'no_lang_code', 'name', 'Mizan Tepi University'),
(33169, 27856, 'en', 'name', 'Department of Embryology'),
(33170, 27857, 'en', 'name', 'Kobe Shoin Women''s University'),
(33171, 27857, 'ja', 'name', 'ē„žęˆøę¾č”­å„³å­å­¦é™¢å¤§å­¦'),
(33172, 27858, 'no_lang_code', 'name', 'Syktyvkar State University'),
(33173, 27858, 'ru', 'name', 'Дыктывкарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33174, 27859, 'en', 'name', 'Seiwa University'),
(33175, 27859, 'ja', 'name', 'ęø…å’Œå¤§å­¦'),
(33176, 27860, 'en', 'name', 'Academy of Arts of Uzbekistan'),
(33177, 27860, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š² Узбекистана'),
(33178, 27860, 'uz', 'name', 'Oā€˜zbekiston Badiiy akademiyasi'),
(33179, 27861, 'de', 'name', 'Hochschule für Musik und Darstellende Kunst Frankfurt am Main'),
(33180, 27861, 'en', 'name', 'Frankfurt University of Music and Performing Arts'),
(33181, 27862, 'en', 'name', 'Maryland Historical Society'),
(33182, 27863, 'en', 'name', 'University of Elbasan'),
(33183, 27863, 'sq', 'name', 'Universiteti i Elbasanit'),
(33184, 27864, 'en', 'name', 'Malikussaleh University'),
(33185, 27864, 'id', 'name', 'Universitas Malikussaleh'),
(33186, 27865, 'en', 'name', 'Dayeh University'),
(33187, 27865, 'zh', 'name', '大葉大學'),
(33188, 27866, 'en', 'name', 'Center for Social and Environmental Stewardship'),
(33189, 27867, 'en', 'name', 'Samarkand State Medical Institute'),
(33190, 27867, 'uz', 'name', 'Š”ŠŠœŠŠ ŠšŠŠŠ”Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(33191, 27868, 'en', 'name', 'Hanoi Architectural University'),
(33192, 27868, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kiįŗæn trĆŗc HĆ  Nį»™i'),
(33193, 27869, 'en', 'name', 'University of International Golden Indonesia'),
(33194, 27870, 'en', 'name', 'University Center for Protestant Theology Matthias Flacius Illyricus'),
(33195, 27870, 'hr', 'name', 'SveučiliÅ”ni Centar za Protestantsku Teologiju Matija Vlačić Ilirik'),
(33196, 27871, 'no_lang_code', 'name', 'Heluz (Czechia)'),
(33197, 27872, 'en', 'name', 'Phillips Exeter Academy'),
(33198, 27873, 'en', 'name', 'Moscow Humanitarian Institute of E. Dashkova'),
(33199, 27873, 'ru', 'name', 'Московский Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š•.Š . Š”Š°ŃˆŠŗŠ¾Š²Š¾Š¹'),
(33200, 27874, 'no_lang_code', 'name', 'Eltodo (Czechia)'),
(33201, 27875, 'en', 'name', 'Vision Maker Media'),
(33202, 27876, 'en', 'name', 'DeKalb Library Foundation'),
(33203, 27877, 'ja', 'name', 'ē¦å²”å„³å­¦é™¢å¤§å­¦'),
(33204, 27877, 'no_lang_code', 'name', 'Fukuoka Jo Gakuin University'),
(33205, 27878, 'en', 'name', 'Transnational Law and Business University'),
(33206, 27878, 'ko', 'name', 'źµ­ģ œė²•ė„ ź²½ģ˜ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(33207, 27879, 'en', 'name', 'Perm State Institute of Arts and Culture'),
(33208, 27879, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š˜ŃŠŗŃƒŃŃŃ‚Š²Š° Šø ŠšŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(33209, 27880, 'cs', 'name', 'StředočeskĆ© Muzeum v RoztokĆ”ch u Prahy'),
(33210, 27881, 'en', 'name', 'National Academy of Management'),
(33211, 27881, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(33212, 27881, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(33213, 27882, 'en', 'name', 'Scurry County Museum'),
(33214, 27883, 'id', 'name', 'Universitas Islam 45 Bekasi'),
(33215, 27884, 'en', 'name', 'Office of the Mississippi Secretary of State'),
(33216, 27885, 'en', 'name', 'Rajamangala University of Technology Tawan-ok'),
(33217, 27885, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø•ąø°ąø§ąø±ąø™ąø­ąø­ąø'),
(33218, 27886, 'no_lang_code', 'name', 'Katahdin Productions'),
(33219, 27887, 'en', 'name', 'Taganrog Institute of Management and Economics'),
(33220, 27887, 'ru', 'name', 'Частное Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Таганрогский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(33221, 27888, 'en', 'name', 'Philippine Normal University'),
(33222, 27888, 'tl', 'name', 'Pamantasang Normal ng Pilipinas'),
(33223, 27889, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ł†ŲŖŲ§Ł†ŁŠŲ§ Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(33224, 27889, 'en', 'name', 'Netanya Academic College'),
(33225, 27890, 'en', 'name', 'Marin Barleti University'),
(33226, 27890, 'sq', 'name', 'Universiteti Marin Barleti'),
(33227, 27891, 'en', 'name', 'Kameshwar Singh Darbhanga Sanskrit University'),
(33228, 27891, 'hi', 'name', 'ą¤•ą¤¾ą¤®ą„‡ą¤¶ą„ą¤µą¤° सिंह दरभंगा ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33229, 27892, 'no_lang_code', 'name', 'SatisGeo (Czechia)'),
(33230, 27893, 'en', 'name', 'Erie MetroParks'),
(33231, 27894, 'en', 'name', 'Kashan University of Medical Sciences'),
(33232, 27895, 'en', 'name', 'Beykent University'),
(33233, 27895, 'tr', 'name', 'Beykent Üniversitesi'),
(33234, 27896, 'en', 'name', 'Mohi-ud-Din Islamic University'),
(33235, 27896, 'ur', 'name', 'Ł…Ų­ŪŒ Ų§Ł„ŲÆŪŒŁ† Ų§Ų³Ł„Ų§Ł…ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒŪ”'),
(33236, 27897, 'no_lang_code', 'name', 'Software602 (Czechia)'),
(33237, 27898, 'en', 'name', 'Germanna Virginia Community College'),
(33238, 27899, 'en', 'name', 'Kanagawa University of Human Services'),
(33239, 27899, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹äæå„ē¦ē„‰å¤§å­¦'),
(33240, 27900, 'en', 'name', 'Providence Montana Health Foundation'),
(33241, 27901, 'en', 'name', 'Siberian State Technological University'),
(33242, 27901, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33243, 27902, 'no_lang_code', 'name', 'GaREP (Czechia)'),
(33244, 27903, 'en', 'name', 'Jinwen University of Science and Technology'),
(33245, 27903, 'zh', 'name', 'ę™Æę–‡ē§‘ęŠ€å¤§å­ø'),
(33246, 27904, 'de', 'name', 'Fachhochschule Dortmund'),
(33247, 27904, 'en', 'name', 'Dortmund University of Applied Sciences and Arts'),
(33248, 27905, 'pl', 'name', 'Warszawska Wyższa Szkoła Humanistyczna im. Bolesława Prusa'),
(33249, 27906, 'en', 'name', 'Rocky Mount Museum'),
(33250, 27907, 'id', 'name', 'Universitas Bojonegoro'),
(33251, 27908, 'en', 'name', 'Farallones Marine Sanctuary Association'),
(33252, 27909, 'en', 'name', 'Fan Noli University'),
(33253, 27909, 'sq', 'name', 'Universiteti "Fan S. Noli"'),
(33254, 27910, 'en', 'name', 'Bansomdejchaopraya Rajabhat University'),
(33255, 27910, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøšą¹‰ąø²ąø™ąøŖąø”ą¹€ąø”ą¹‡ąøˆą¹€ąøˆą¹‰ąø²ąøžąø£ąø°ąø¢ąø²'),
(33256, 27911, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŲ±ŲØŁˆŁ† أبوظبي'),
(33257, 27911, 'en', 'name', 'Sorbonne University Abu Dhabi'),
(33258, 27912, 'en', 'name', 'Togliatti State University'),
(33259, 27912, 'ru', 'name', 'Š¢Š¾Š»ŃŒŃŃ‚Ń‚ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33260, 27913, 'en', 'name', 'Beaconhouse National University'),
(33261, 27913, 'ur', 'name', 'ŲØŪŒŚ©Ł† ہاؤس Ł†ŪŒŲ“Ł†Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(33262, 27914, 'en', 'name', 'Ridgewood Public Schools'),
(33263, 27915, 'cs', 'name', 'KrajskÔ HygienickÔ Stanice Plzeňského Kraje se Sídlem v Plzni'),
(33264, 27916, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأقصى'),
(33265, 27916, 'en', 'name', 'Al-Aqsa University'),
(33266, 27917, 'en', 'name', 'Dawat University'),
(33267, 27917, 'fa', 'name', 'ŲÆ دعوت Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(33268, 27918, 'no_lang_code', 'name', 'SBP Consult'),
(33269, 27919, 'ar', 'name', 'ايجوث - Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© العامة Ł„Ł„Ų³ŁŠŲ§Ų­Ų© ŁˆŲ§Ł„ŁŁ†Ų§ŲÆŁ‚'),
(33270, 27919, 'no_lang_code', 'name', 'The Egyptian General Company for Tourism and Hotels (Egypt)'),
(33271, 27920, 'en', 'name', 'Institute of Business Administration Karachi'),
(33272, 27920, 'ur', 'name', 'Ų§Ł†Ų³Ł¹ŁŠŁ¹ŁŠŁˆŁ¹ آف بزنس Ų§ŁŠŚˆŁ…Ł†Ų³Ł¹Ų±ŁŠŲ“Ł†'),
(33273, 27921, 'en', 'name', 'Morgan Library and Museum'),
(33274, 27922, 'en', 'name', 'Czech Concrete Society'),
(33275, 27923, 'en', 'name', 'Radio Diaries'),
(33276, 27924, 'en', 'name', 'Perm State Agricultural Academy'),
(33277, 27924, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрно-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33278, 27925, 'cs', 'name', 'NĆ”rodnĆ­ Ústav pro VzdělĆ”vĆ”nĆ­'),
(33279, 27926, 'en', 'name', 'Chechen State Pedagogical Institute'),
(33280, 27926, 'ru', 'name', 'Чеченский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(33281, 27927, 'en', 'name', 'Fairbanks Museum and Planetarium'),
(33282, 27928, 'en', 'name', 'Arab Community Center for Economic and Social Services'),
(33283, 27929, 'en', 'name', 'Al-Azhar University'),
(33284, 27929, 'id', 'name', 'Universitas Al-Azhar'),
(33285, 27930, 'en', 'name', 'International Institute of Hotel Management and Tourism'),
(33286, 27930, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гостиничного менеГжмента Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(33287, 27931, 'en', 'name', 'Jose Rizal Memorial State University'),
(33288, 27932, 'en', 'name', 'Institute of Andean Studies'),
(33289, 27933, 'en', 'name', 'Novosibirsk State University of Economics and Management'),
(33290, 27933, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ ŠŠ˜ŠŠ„'),
(33291, 27934, 'en', 'name', 'Latvian Academy of Culture'),
(33292, 27934, 'lv', 'name', 'Latvijas Kulturas akademija'),
(33293, 27935, 'en', 'name', 'California African American Museum'),
(33294, 27936, 'en', 'name', 'Rutherford B. Hayes Presidential Center'),
(33295, 27937, 'en', 'name', 'Tippecanoe County Historical Association'),
(33296, 27938, 'en', 'name', 'Greenwich University'),
(33297, 27939, 'en', 'name', 'Idaho Department of Fish and Game'),
(33298, 27940, 'en', 'name', 'Coastal Georgia Historical Society'),
(33299, 27941, 'en', 'name', 'Jaramogi Oginga Odinga University of Science and Technology'),
(33300, 27942, 'en', 'name', 'United Methodist University'),
(33301, 27943, 'en', 'name', 'Putnam Museum'),
(33302, 27944, 'en', 'name', 'Norfolk Academy'),
(33303, 27945, 'bn', 'name', 'ইউরোপিয়ান ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(33304, 27945, 'en', 'name', 'European University of Bangladesh'),
(33305, 27946, 'en', 'name', 'Okinawa Prefectural University of Arts'),
(33306, 27946, 'ja', 'name', 'ę²–ēø„ēœŒē«‹čŠøč”“å¤§å­¦'),
(33307, 27947, 'en', 'name', 'Institute for Structural Policy'),
(33308, 27948, 'en', 'name', 'Amur State University'),
(33309, 27948, 'ru', 'name', 'ŠŠ¼ŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33310, 27949, 'en', 'name', 'Shaoyang University'),
(33311, 27950, 'en', 'name', 'North-Caucasian State Institute of Arts'),
(33312, 27950, 'ru', 'name', 'Деверо-Кавказский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(33313, 27951, 'en', 'name', 'Siberian Independent Institute'),
(33314, 27951, 'ru', 'name', 'Дибирский независимый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(33315, 27952, 'id', 'name', 'Universitas Jayabaya'),
(33316, 27953, 'en', 'name', 'Pacific University Oregon'),
(33317, 27954, 'id', 'name', 'Universitas Mpu Tantular'),
(33318, 27955, 'id', 'name', 'Universitas Bandar Lampung'),
(33319, 27956, 'no_lang_code', 'name', 'Dr. Balasaheb Sawant Konkan Krishi Vidyapeeth'),
(33320, 27957, 'en', 'name', 'Şifa University'),
(33321, 27957, 'tr', 'name', 'Şifa Üniversitesi'),
(33322, 27958, 'de', 'name', 'Folkwang Universität der Künste'),
(33323, 27958, 'en', 'name', 'Folkwang University of the Arts'),
(33324, 27959, 'en', 'name', 'Pacific Islands Fisheries Group'),
(33325, 27960, 'id', 'name', 'Universitas Setia Budi'),
(33326, 27961, 'en', 'name', 'Waterloo Public Library'),
(33327, 27962, 'en', 'name', 'Herguan University'),
(33328, 27963, 'en', 'name', 'New Rochelle Public Library'),
(33329, 27964, 'en', 'name', 'Louisiana Department of Wildlife and Fisheries'),
(33330, 27965, 'en', 'name', 'Federal Penitentiary Service'),
(33331, 27965, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба ŠøŃŠæŠ¾Š»Š½ŠµŠ½ŠøŃ наказаний'),
(33332, 27966, 'en', 'name', 'Shri Jagdishprasad Jhabarmal Tibrewala University'),
(33333, 27966, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤œą¤—ą¤¦ą„€ą¤¶ą¤Ŗą„ą¤°ą¤øą¤¾ą¤¦ ą¤ą¤¾ą¤¬ą¤°ą¤®ą¤² ą¤Ÿą¤æą¤¬ą„œą„‡ą¤µą¤¾ą¤²ą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(33334, 27967, 'en', 'name', 'National University of Saint Anthony the Abbot in Cuzco'),
(33335, 27967, 'es', 'name', 'Universidad Nacional de San Antonio Abad del Cusco'),
(33336, 27968, 'no_lang_code', 'name', 'Global Village Media'),
(33337, 27969, 'en', 'name', 'LUM Jean Monnet University'),
(33338, 27969, 'it', 'name', 'Libera UniversitĆ  Mediterranea'),
(33339, 27970, 'ja', 'name', '名古屋学院大学'),
(33340, 27970, 'no_lang_code', 'name', 'Nagoya Gakuin University'),
(33341, 27971, 'en', 'name', 'University of Wisconsin–Fond du Lac'),
(33342, 27972, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ لادارة الاعمال'),
(33343, 27972, 'en', 'name', 'Higher Institute of Business Administration'),
(33344, 27973, 'no_lang_code', 'name', 'ÚRS Praha (Czechia)'),
(33345, 27974, 'en', 'name', 'University of Medicine Mandalay'),
(33346, 27974, 'my', 'name', 'į€™į€”į€¹į€į€œį€±į€øį€†į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(33347, 27975, 'cs', 'name', 'Svaz chemického průmyslu České republiky'),
(33348, 27975, 'en', 'name', 'Association of Chemical Industry of the Czech Republic'),
(33349, 27976, 'en', 'name', 'Orsk Humanitarian Technology Institute'),
(33350, 27976, 'ru', 'name', 'ŠžŃ€ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(33351, 27977, 'en', 'name', 'Wallingford Public Library'),
(33352, 27978, 'no_lang_code', 'name', 'OEZ (Czechia)'),
(33353, 27979, 'en', 'name', 'Osmaniye Korkut Ata University'),
(33354, 27979, 'tr', 'name', 'Osmaniye Korkut Ata Üniversitesi'),
(33355, 27980, 'en', 'name', 'Qarshi University'),
(33356, 27980, 'ur', 'name', 'Ł‚Ų±Ų“ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(33357, 27981, 'en', 'name', 'American University of the Caribbean'),
(33358, 27982, 'no_lang_code', 'name', 'GiTy (Czechia)'),
(33359, 27983, 'en', 'name', 'WSPIA University of Rzeszow'),
(33360, 27983, 'pl', 'name', 'Wyższa Szkoła Prawa i Administracji Rzeszów-Przemyśl'),
(33361, 27984, 'en', 'name', 'Metropolitan Indianapolis Public Broadcasting'),
(33362, 27985, 'en', 'name', 'Historic Cherry Hill'),
(33363, 27986, 'en', 'name', 'Pushkin State Russian language Institute'),
(33364, 27986, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŃƒŃŃŠŗŠ¾Š³Š¾ ŃŠ·Ń‹ŠŗŠ° им. А.Š”. Пушкина'),
(33365, 27987, 'en', 'name', 'Sokhumi State University'),
(33366, 27987, 'hy', 'name', 'ÕÕøÖ‚Õ­ÕøÖ‚Õ“Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(33367, 27987, 'ka', 'name', 'įƒ”įƒįƒ®įƒ£įƒ›įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(33368, 27988, 'cs', 'name', 'KrajskĆ” ZdravotnĆ­'),
(33369, 27989, 'en', 'name', 'Association of African American Museums'),
(33370, 27990, 'en', 'name', 'Fuji Women''s University'),
(33371, 27990, 'ja', 'name', '藤儳子大学'),
(33372, 27991, 'en', 'name', 'Central Academy of Drama'),
(33373, 27991, 'zh', 'name', 'äø­å¤®ęˆå‰§å­¦é™¢'),
(33374, 27992, 'en', 'name', 'Czech RE Agency'),
(33375, 27993, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŁƒŁ…Ų©'),
(33376, 27993, 'fr', 'name', 'UniversitƩ La Sagesse'),
(33377, 27994, 'en', 'name', 'Mokpo Catholic University'),
(33378, 27994, 'ko', 'name', 'ėŖ©ķ¬ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(33379, 27995, 'en', 'name', 'Anaheim University'),
(33380, 27996, 'en', 'name', 'Rajapark Institute'),
(33381, 27996, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø£ąø±ąøŠąø•ą¹Œąø ąø²ąø„ąø¢ą¹Œ'),
(33382, 27997, 'en', 'name', 'Institute of Economics, Management and Law'),
(33383, 27997, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø права'),
(33384, 27998, 'en', 'name', 'USS Constitution Museum'),
(33385, 27999, 'en', 'name', 'Nakhon Phanom University'),
(33386, 27999, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø„ąø£ąøžąø™ąø”'),
(33387, 28000, 'en', 'name', 'Takarazuka University of Arts & Crafts'),
(33388, 28000, 'ja', 'name', 'å®å”šé€ å½¢čŠøč”“å¤§å­¦'),
(33389, 28001, 'en', 'name', 'Institute of Friendship of the People of Caucasus'),
(33390, 28001, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Ń€ŃƒŠ¶Š±Ń‹ нароГов Кавказа'),
(33391, 28002, 'en', 'name', 'Union of Needletrades Industrial and Textile Employees'),
(33392, 28003, 'no_lang_code', 'name', 'Malama na Honu'),
(33393, 28004, 'ja', 'name', '四国大学'),
(33394, 28004, 'no_lang_code', 'name', 'Shikoku University'),
(33395, 28005, 'en', 'name', 'Stockbridge Library Association'),
(33396, 28006, 'en', 'name', 'Nevada State Library, Archives, and Public Records'),
(33397, 28007, 'en', 'name', 'Gulf of Alaska Keeper'),
(33398, 28008, 'en', 'name', 'Banking University'),
(33399, 28008, 'uk', 'name', 'Університет Š±Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠ¾Ń— справи'),
(33400, 28009, 'en', 'name', 'LNM Institute of Information Technology'),
(33401, 28010, 'ja', 'name', 'č„æå—å­¦é™¢å¤§å­¦'),
(33402, 28010, 'no_lang_code', 'name', 'Seinan Gakuin University'),
(33403, 28011, 'en', 'name', 'Dr Panjabrao Deshmukh Krishi Vidyapeeth'),
(33404, 28011, 'mr', 'name', 'ą¤”ą„‰. ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ą¤°ą¤¾ą¤µ ą¤¦ą„‡ą¤¶ą¤®ą„ą¤– ą¤•ą„ƒą¤·ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(33405, 28012, 'hu', 'name', 'VeszprĆ©mi Ɖrseki HittudomĆ”nyi FƵiskola'),
(33406, 28013, 'en', 'name', 'Classical and Traditional Medicine Academy'),
(33407, 28014, 'no_lang_code', 'name', 'STAPPA mix (Czechia)'),
(33408, 28015, 'en', 'name', 'Stavropol Institute of VD Chursina'),
(33409, 28015, 'ru', 'name', 'Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š’.Š”. Š§ŃƒŃ€ŃŠøŠ½Š°'),
(33410, 28016, 'en', 'name', 'Peking University International Hospital'),
(33411, 28016, 'zh', 'name', '北大国际医院'),
(33412, 28017, 'en', 'name', 'Oregon Parks and Recreation Department'),
(33413, 28018, 'no_lang_code', 'name', 'Agritec (Czechia)'),
(33414, 28019, 'en', 'name', 'University of Maryland Medical Center Midtown Campus'),
(33415, 28020, 'en', 'name', 'University of Kindu'),
(33416, 28020, 'fr', 'name', 'UniversitƩ de kindu'),
(33417, 28021, 'no_lang_code', 'name', 'URC Systems (Czechia)'),
(33418, 28022, 'en', 'name', 'Duluth Business University'),
(33419, 28023, 'id', 'name', 'Universitas Darul Ulum'),
(33420, 28024, 'en', 'name', 'Brigham City Library'),
(33421, 28025, 'no_lang_code', 'name', 'Bombardier (Italy)'),
(33422, 28026, 'en', 'name', 'Nayoro City University'),
(33423, 28026, 'ja', 'name', 'ååÆ„åø‚ē«‹å¤§å­¦'),
(33424, 28027, 'ja', 'name', 'å­¦ę ”ę³•äŗŗćƒ—ćƒ¼ćƒ«å­¦é™¢'),
(33425, 28027, 'no_lang_code', 'name', 'Poole Gakuin University'),
(33426, 28028, 'en', 'name', 'Maharaja Ranjit Singh Punjab Technical University'),
(33427, 28029, 'en', 'name', 'Pacific Education Institute'),
(33428, 28030, 'en', 'name', 'Moscow Architectural Institute'),
(33429, 28030, 'ru', 'name', 'Московский ŠŃ€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(33430, 28031, 'id', 'name', 'Universitas Nusa Nipa Maumere'),
(33431, 28032, 'en', 'name', 'Nagoya University of Foreign Studies'),
(33432, 28032, 'ja', 'name', 'åå¤å±‹å¤–å›½čŖžå¤§å­¦'),
(33433, 28033, 'en', 'name', 'Kurume Institute of Technology'),
(33434, 28033, 'ja', 'name', '久留米巄愭大学'),
(33435, 28034, 'en', 'name', 'Muhammadiyah University of Makassar'),
(33436, 28034, 'id', 'name', 'Universitas Muhammadiyah Makassar'),
(33437, 28035, 'en', 'name', 'Nagoya Zokei University'),
(33438, 28035, 'ja', 'name', '名古屋造形大学'),
(33439, 28036, 'en', 'name', 'Vesterheim Norwegian American Museum'),
(33440, 28037, 'no_lang_code', 'name', 'Deutsche Montan Technologie (Germany)'),
(33441, 28038, 'en', 'name', 'Presbyterian University of East Africa'),
(33442, 28039, 'en', 'name', 'Penza State University of Architecture and Construction'),
(33443, 28039, 'ru', 'name', 'Пензенский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ Šø ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(33444, 28040, 'en', 'name', 'Krasnodar Municipal Medical Institute of Higher Nursing Education'),
(33445, 28040, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š¼ŃƒŠ½ŠøŃ†ŠøŠæŠ°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŃˆŠµŠ³Š¾ сестринского Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(33446, 28041, 'no_lang_code', 'name', 'ŽĎAS (Czechia)'),
(33447, 28042, 'no_lang_code', 'name', 'Strix Chomutov (Czechia)'),
(33448, 28043, 'en', 'name', 'University of Dental Medicine'),
(33449, 28044, 'en', 'name', 'Halla University'),
(33450, 28044, 'ko', 'name', 'ķ•œė¼ėŒ€ķ•™źµ'),
(33451, 28045, 'en', 'name', 'Chung Chou University of Science and Technology'),
(33452, 28045, 'zh', 'name', 'äø­å·žē§‘ęŠ€å¤§å­ø'),
(33453, 28046, 'en', 'name', 'Chelyabinsk Law institute of Ministry of Internal Affairs of Russia'),
(33454, 28046, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ ЮриГический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š” России'),
(33455, 28047, 'en', 'name', 'IEC University'),
(33456, 28048, 'en', 'name', 'School of Business and Management Novo Mesto'),
(33457, 28048, 'sl', 'name', 'Visoka sola za upravljanje in poslovanje Novo mesto'),
(33458, 28049, 'en', 'name', 'Turkmen State Institute of Economics and Management'),
(33459, 28049, 'ru', 'name', 'Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(33460, 28050, 'en', 'name', 'Kyushu Women''s University'),
(33461, 28050, 'ja', 'name', '九州儳子大学'),
(33462, 28051, 'en', 'name', 'University of the Thai Chamber of Commerce'),
(33463, 28051, 'th', 'name', 'ดหาวณทยาคัยหอการค้าไทย'),
(33464, 28052, 'en', 'name', 'Marine Mammal Care Center'),
(33465, 28053, 'en', 'name', 'Yeonsung University'),
(33466, 28053, 'ko', 'name', 'ģ—°ģ„±ėŒ€ķ•™źµ'),
(33467, 28054, 'en', 'name', 'Kobe Yamate University'),
(33468, 28054, 'ja', 'name', 'ē„žęˆøå±±ę‰‹å¤§å­¦'),
(33469, 28055, 'en', 'name', 'Roosevelt Institute'),
(33470, 28056, 'en', 'name', 'Phuket Rajabhat University'),
(33471, 28056, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø ąø¹ą¹€ąøą¹‡ąø•'),
(33472, 28057, 'en', 'name', 'ISMA University'),
(33473, 28057, 'lv', 'name', 'Informācijas Sistēmu Menedžmenta Augstskola'),
(33474, 28057, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń школа менеГжмента Šø информационных систем'),
(33475, 28058, 'en', 'name', 'Industrial University of Ho Chi Minh City'),
(33476, 28058, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghiệp ThĆ nh phố Hồ ChĆ­ Minh'),
(33477, 28059, 'en', 'name', 'Heisei International University'),
(33478, 28059, 'ja', 'name', 'å¹³ęˆå›½éš›å¤§å­¦'),
(33479, 28060, 'en', 'name', 'NorthEast Independent Living Services'),
(33480, 28061, 'en', 'name', 'Batanghari University'),
(33481, 28061, 'id', 'name', 'Universitas Batanghari'),
(33482, 28062, 'en', 'name', 'Thomas Aquinas College'),
(33483, 28063, 'en', 'name', 'Academy of Social Education'),
(33484, 28064, 'ja', 'name', 'åøøč‘‰å­¦åœ’å¤§å­¦'),
(33485, 28064, 'no_lang_code', 'name', 'Tokoha Gakuen University'),
(33486, 28065, 'id', 'name', 'Universitas Kristen Immanuel'),
(33487, 28066, 'en', 'name', 'George Washington University Virginia Campus'),
(33488, 28067, 'en', 'name', 'Far East University'),
(33489, 28067, 'zh', 'name', 'é ę±ē§‘ęŠ€å¤§å­ø'),
(33490, 28068, 'en', 'name', 'Uttarakhand Technical University'),
(33491, 28068, 'hi', 'name', 'ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤‚ą¤” ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33492, 28069, 'en', 'name', 'Atyrau University of Oil and Gas'),
(33493, 28069, 'kk', 'name', 'ŠŃ‚Ń‹Ń€Š°Ńƒ мұнай және газ Университеті'),
(33494, 28070, 'en', 'name', 'Dhonburi Rajabhat University'),
(33495, 28070, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø˜ąø™ąøšąøøąø£ąøµ'),
(33496, 28071, 'cs', 'name', 'HornickĆ© muzeum Příbram'),
(33497, 28071, 'no_lang_code', 'name', 'Mining Museum Pribram'),
(33498, 28072, 'bs', 'name', 'Američki univerzitet u Bosni i Hercegovini'),
(33499, 28072, 'en', 'name', 'American University in Bosnia and Herzegovina'),
(33500, 28073, 'id', 'name', 'Universitas Nusa Bangsa'),
(33501, 28074, 'en', 'name', 'Louisiana Department of Natural Resources'),
(33502, 28075, 'no_lang_code', 'name', 'EBIS (Czechia)'),
(33503, 28076, 'en', 'name', 'Garrett–Evangelical Theological Seminary'),
(33504, 28077, 'ja', 'name', 'å…±ę„›å­¦åœ’å‰ę©‹å›½éš›å¤§å­¦'),
(33505, 28077, 'no_lang_code', 'name', 'Maebashi Kyoai Gakuen College'),
(33506, 28078, 'en', 'name', 'Samtskhe-Javakheti State University'),
(33507, 28078, 'ka', 'name', 'įƒ”įƒįƒ›įƒŖįƒ®įƒ”-įƒÆįƒįƒ•įƒįƒ®įƒ”įƒ—įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(33508, 28079, 'en', 'name', 'Kulyab State University named after Abuabdullo Rudaki'),
(33509, 28079, 'ru', 'name', 'ŠšŃƒŠ»ŃŠ±ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33510, 28079, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии Кӯлоб ба номи АбӯабГуллоҳи РӯГакӣ'),
(33511, 28080, 'en', 'name', 'Cheongju National University of Education'),
(33512, 28080, 'ko', 'name', 'ģ²­ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(33513, 28081, 'id', 'name', 'Universitas Ekasakti'),
(33514, 28082, 'en', 'name', 'Niigata University of International and Information Studies'),
(33515, 28082, 'ja', 'name', 'ę–°ę½Ÿå›½éš›ęƒ…å ±å¤§å­¦'),
(33516, 28083, 'en', 'name', 'American Rivers'),
(33517, 28084, 'en', 'name', 'Shaheed Mohtarma Benazir Bhutto Medical University'),
(33518, 28084, 'sd', 'name', 'Ų“Ł‡ŁŠŲÆ محترمه ŲØŁŠŁ†ŲøŁŠŲ± Ś€Ł½Łˆ Ł…ŁŠŚŠŁŠŚŖŁ„ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(33519, 28084, 'ur', 'name', 'ؓہید محترمہ ŲØŪ’ Ł†ŲøŪŒŲ± بھٹو Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(33520, 28085, 'cs', 'name', 'Å umava National Park'),
(33521, 28086, 'ja', 'name', 'é–¢ę±å­¦åœ’å¤§å­¦'),
(33522, 28086, 'no_lang_code', 'name', 'Kanto Gakuen University'),
(33523, 28087, 'en', 'name', 'Zirve University'),
(33524, 28087, 'tr', 'name', 'Zirve Üniversitesi'),
(33525, 28088, 'en', 'name', 'Dance Perspectives Foundation'),
(33526, 28089, 'en', 'name', 'Shibuya University Network'),
(33527, 28089, 'ja', 'name', 'ć‚·ćƒ–ćƒ¤å¤§å­¦'),
(33528, 28090, 'en', 'name', 'Bethany Global University'),
(33529, 28091, 'cs', 'name', 'ČeskĆ” Společnost AntropologickĆ”'),
(33530, 28092, 'en', 'name', 'New York State Department of Environmental Conservation'),
(33531, 28093, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الزهراؔ للبنات'),
(33532, 28093, 'en', 'name', 'Al-Zahra College for Women'),
(33533, 28094, 'en', 'name', 'Worthington City School District'),
(33534, 28095, 'no_lang_code', 'name', 'Rieter (Czechia)'),
(33535, 28096, 'en', 'name', 'City of Greeley Museums'),
(33536, 28097, 'en', 'name', 'Moscow Polytechnic University'),
(33537, 28097, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33538, 28098, 'en', 'name', 'Shu-Te University'),
(33539, 28098, 'zh', 'name', 'ęØ¹å¾·ē§‘ęŠ€å¤§å­ø'),
(33540, 28099, 'en', 'name', 'Wadsworth Atheneum Museum of Art'),
(33541, 28100, 'en', 'name', 'Marine Resources Council'),
(33542, 28101, 'en', 'name', 'Vikrama Simhapuri University'),
(33543, 28101, 'te', 'name', 'ą°µą°æą°•ą±ą°°ą°® సింహపురి ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(33544, 28102, 'en', 'name', 'Warsaw University of Technology Business School'),
(33545, 28103, 'no_lang_code', 'name', 'Skyleader (Czechia)'),
(33546, 28104, 'id', 'name', 'Universitas Islam Syekh Yusuf'),
(33547, 28105, 'en', 'name', 'Faculty of Applied Social Studies in Nova Gorica'),
(33548, 28105, 'sl', 'name', 'Fakulteta za uporabne družbene Ŕtudije v Novi Gorici'),
(33549, 28106, 'en', 'name', 'University of Nagasaki'),
(33550, 28106, 'ja', 'name', 'é•·å“ŽēœŒē«‹å¤§å­¦'),
(33551, 28107, 'en', 'name', 'Okayama Shoka University'),
(33552, 28107, 'ja', 'name', '岔山商科大学'),
(33553, 28108, 'en', 'name', 'Baba Mastnath University'),
(33554, 28108, 'hi', 'name', 'बाबा ą¤®ą¤øą„ą¤¤ą¤Øą¤¾ą¤„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33555, 28109, 'en', 'name', 'Hanoi University of Pharmacy'),
(33556, 28109, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Dược HĆ  Nį»™i'),
(33557, 28110, 'be', 'name', 'ГроГзенскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ аграрны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(33558, 28110, 'en', 'name', 'Grodno State Agrarian University'),
(33559, 28111, 'en', 'name', 'Yangon University of Foreign Languages'),
(33560, 28112, 'en', 'name', 'Ural State Pedagogical University'),
(33561, 28112, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33562, 28113, 'en', 'name', 'CƩsar Ritz Colleges'),
(33563, 28114, 'en', 'name', 'Richard I. Bong Veterans Historical Center'),
(33564, 28115, 'en', 'name', 'Harriet Beecher Stowe Center'),
(33565, 28116, 'en', 'name', 'Higher School of National Economy in Kutno'),
(33566, 28116, 'pl', 'name', 'Wyższa Szkoła Gospodarki Krajowej w Kutnie'),
(33567, 28117, 'en', 'name', 'Notre Dame of Marbel University'),
(33568, 28117, 'tl', 'name', 'Pamantasang Notre Dame ng Marbel'),
(33569, 28118, 'en', 'name', 'Pacifica Foundation'),
(33570, 28119, 'no_lang_code', 'name', 'CZ Loko (Czechia)'),
(33571, 28120, 'en', 'name', 'TĆ¢n Tįŗ”o University'),
(33572, 28120, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c TĆ¢n Tįŗ”o'),
(33573, 28121, 'pt', 'name', 'Centro UniversitƔrio das Faculdades Metropolitanas Unidas'),
(33574, 28122, 'en', 'name', 'Transportation Corridor Agencies'),
(33575, 28123, 'en', 'name', 'Lebanese Canadian University'),
(33576, 28123, 'fr', 'name', 'UniversitƩ Libano-Canadienne'),
(33577, 28124, 'id', 'name', 'Universitas Muhammadiyah Gorontalo'),
(33578, 28125, 'en', 'name', 'Ouachita Parish Public Library'),
(33579, 28126, 'no_lang_code', 'name', 'BTL ZdravotnickĆ” Technika (Czechia)'),
(33580, 28127, 'ja', 'name', 'å¤Ŗęˆå­¦é™¢å¤§å­¦'),
(33581, 28127, 'no_lang_code', 'name', 'Taisei Gakuin University'),
(33582, 28128, 'en', 'name', 'University of Southern Somalia'),
(33583, 28128, 'so', 'name', 'Jaamacadda Koonfurta Soomaaliya'),
(33584, 28129, 'en', 'name', 'Michele & Donald D’Amour Museum of Fine Arts'),
(33585, 28130, 'en', 'name', 'Central Institute of Fisheries Education'),
(33586, 28131, 'en', 'name', 'Carol I National Defence University'),
(33587, 28131, 'ro', 'name', 'Universitatea Națională de Apărare ā€žCarol Iā€'),
(33588, 28132, 'en', 'name', 'Utah Library Association'),
(33589, 28133, 'en', 'name', 'Jai Narain Vyas University'),
(33590, 28133, 'hi', 'name', 'जयनारायण ą¤µą„ą¤Æą¤¾ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33591, 28134, 'en', 'name', 'Peninsula Library System'),
(33592, 28135, 'no_lang_code', 'name', 'Blumenbecker (Czechia)'),
(33593, 28136, 'fr', 'name', 'Agence Nationale des FrƩquences'),
(33594, 28137, 'pl', 'name', 'Wyższa Szkoła Ekonomii i Administracji w Bytomiu'),
(33595, 28138, 'en', 'name', 'Eastern Kentucky Pride'),
(33596, 28139, 'en', 'name', 'Shaker Museum Mount Lebanon'),
(33597, 28140, 'en', 'name', 'Kanchanaburi Rajabhat University'),
(33598, 28140, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøąø²ąøąøˆąø™ąøšąøøąø£ąøµ'),
(33599, 28141, 'en', 'name', 'Cape Cod Museum of Natural History'),
(33600, 28142, 'en', 'name', 'Kundong University'),
(33601, 28142, 'ko', 'name', 'ź±“ė™ėŒ€ķ•™źµ'),
(33602, 28143, 'en', 'name', 'William Carey University'),
(33603, 28144, 'en', 'name', 'Academy of the State Fire Service EMERCOM of Russia'),
(33604, 28144, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ противопожарной ŃŠ»ŃƒŠ¶Š±Ń‹ МЧД России'),
(33605, 28145, 'en', 'name', 'Saratov State Conservatory named after L. V. Sobinov'),
(33606, 28145, 'ru', 'name', 'Š”Š°Ń€Š°Ń‚Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени Š›. Š’. Добинова'),
(33607, 28146, 'no_lang_code', 'name', 'Elektro Ljubljana (Slovenia)'),
(33608, 28147, 'en', 'name', 'Baltimore Museum of Art'),
(33609, 28148, 'en', 'name', 'Lutheran Archives Center at Philadelphia'),
(33610, 28149, 'en', 'name', 'Athenaeum of Philadelphia'),
(33611, 28150, 'en', 'name', 'Santapol College'),
(33612, 28150, 'th', 'name', 'ąø™ąø“ąø•ąø“ąøØąø²ąøŖąø•ąø£ą¹Œ ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŖąø±ąø™ąø•ąøžąø„'),
(33613, 28151, 'en', 'name', 'Alexandria Museum of Art'),
(33614, 28152, 'en', 'name', 'University of Kabianga'),
(33615, 28153, 'en', 'name', 'Jodhpur National University'),
(33616, 28153, 'hi', 'name', 'ą¤œą„‹ą¤§ą¤Ŗą„ą¤° ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33617, 28154, 'en', 'name', 'Poetry Foundation'),
(33618, 28155, 'en', 'name', 'Institute of Information Security'),
(33619, 28155, 'ja', 'name', 'ęƒ…å ±ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£å¤§å­¦é™¢å¤§å­¦'),
(33620, 28156, 'en', 'name', 'San Diego Public Library'),
(33621, 28157, 'en', 'name', 'Shandong Institute of Business and Technology'),
(33622, 28157, 'zh', 'name', 'å±±äøœå·„å•†å­¦é™¢'),
(33623, 28158, 'en', 'name', 'Yeshiva University Museum'),
(33624, 28159, 'en', 'name', 'Greater Southwest Historical Museum'),
(33625, 28160, 'cs', 'name', 'ČeskoslovenskĆ” BiologickĆ” Společnost'),
(33626, 28161, 'id', 'name', 'Universitas Kristen Indonesia Maluku'),
(33627, 28162, 'en', 'name', 'University of the Visayas'),
(33628, 28162, 'tl', 'name', 'Pamantasan sa Bisayas'),
(33629, 28163, 'en', 'name', 'Czech Association of Geophysicists'),
(33630, 28164, 'no_lang_code', 'name', 'Crystalite Bohemia (Czechia)'),
(33631, 28165, 'en', 'name', 'Panhandle Plains Historical Museum'),
(33632, 28166, 'no_lang_code', 'name', 'Lumnamping College'),
(33633, 28166, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø„ąøøą¹ˆąø”ąø™ą¹‰ąø³ąø›ąø“ąø‡'),
(33634, 28167, 'en', 'name', 'Hanoi Law University'),
(33635, 28167, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Luįŗ­t HĆ  Nį»™i'),
(33636, 28168, 'en', 'name', 'Turkmen National Institute of Foreign Languages named after D. Azadi'),
(33637, 28169, 'en', 'name', 'Princess of Naradhiwas University'),
(33638, 28169, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø£ąø²ąø˜ąø“ąø§ąø²ąøŖąø£ąø²ąøŠąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(33639, 28170, 'en', 'name', 'Shri Lal Bahadur Shastri Rashtriya Sanskrit Vidyapeetha'),
(33640, 28170, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ लाल ą¤¬ą¤¹ą¤¾ą¤¦ą„ą¤°ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤°ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(33641, 28171, 'en', 'name', 'University of Public Health Yangon'),
(33642, 28171, 'my', 'name', 'į€•į€¼į€Šį€ŗį€žį€°į€·į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(ရန်ကုန်)'),
(33643, 28172, 'en', 'name', 'American Institute for Maghrib Studies'),
(33644, 28173, 'en', 'name', 'Humanitas University in Sosnowiec'),
(33645, 28173, 'pl', 'name', 'Wyższa Szkoła Humanitas w Sosnowcu'),
(33646, 28174, 'en', 'name', 'Agrarian State University of Northern Zauralye'),
(33647, 28174, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Деверного Š—Š°ŃƒŃ€Š°Š»ŃŒŃ'),
(33648, 28175, 'no_lang_code', 'name', 'ModelƔrna Liaz (Czechia)'),
(33649, 28176, 'hi', 'name', 'इंदिरा कला ą¤øą¤‚ą¤—ą„€ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33650, 28176, 'no_lang_code', 'name', 'Indira Kala Sangeet University'),
(33651, 28177, 'bs', 'name', 'Univerzitet umetnosti u Beogradu'),
(33652, 28177, 'en', 'name', 'University of Arts in Belgrade'),
(33653, 28177, 'sr', 'name', 'Универзитет ŃƒŠ¼ŠµŃ‚Š½Š¾ŃŃ‚Šø у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ'),
(33654, 28178, 'no_lang_code', 'name', 'ATOMA TepelnĆ” Technika (Czechia)'),
(33655, 28179, 'en', 'name', 'Claremont Lincoln University'),
(33656, 28180, 'en', 'name', 'Institute of International Relations'),
(33657, 28180, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… ŃŠ²ŃŠ·ŠµŠ¹'),
(33658, 28181, 'en', 'name', 'National Nordic Museum'),
(33659, 28182, 'en', 'name', 'Gongju National University of Education'),
(33660, 28182, 'ko', 'name', 'ź³µģ£¼źµģœ”ėŒ€ķ•™źµ'),
(33661, 28183, 'no_lang_code', 'name', 'Pegas Nonwovens (Czechia)'),
(33662, 28184, 'en', 'name', 'KodolƔnyi JƔnos University of Applied Sciences'),
(33663, 28184, 'hu', 'name', 'KodolĆ”nyi JĆ”nos Főiskola'),
(33664, 28185, 'en', 'name', 'HopeHealth'),
(33665, 28186, 'en', 'name', 'Ube Frontier University'),
(33666, 28186, 'ja', 'name', 'å®‡éƒØćƒ•ćƒ­ćƒ³ćƒ†ć‚£ć‚¢å¤§å­¦'),
(33667, 28187, 'en', 'name', 'Newports Institute of Communications and Economics'),
(33668, 28187, 'sd', 'name', 'Ł†ŁŠŁˆ پورٽس Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف ŚŖŁ…ŁŠŁˆŁ†ŁŠŚŖŁŠŲ“Ł†Ų³ Ų§ŁŠŁ† Ų§ŁŠŚŖŲ§Ł†Ų§Ł…ŚŖŲ³');
INSERT INTO `ror_settings` VALUES
(33669, 28188, 'cs', 'name', 'Diagnostický Ústav pro MlÔdež'),
(33670, 28189, 'en', 'name', 'Larz Anderson Auto Museum'),
(33671, 28190, 'en', 'name', 'Izhevsk State Medical Academy'),
(33672, 28190, 'ru', 'name', 'Š˜Š¶ŠµŠ²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(33673, 28191, 'en', 'name', 'State Marine Technical University of St. Petersburg'),
(33674, 28191, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ морской технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33675, 28192, 'en', 'name', 'Kutaisi Institute of Medicine'),
(33676, 28193, 'en', 'name', 'Kawamura Gakuen Women''s University'),
(33677, 28193, 'ja', 'name', 'å·ę‘å­¦åœ’å„³å­å¤§å­¦'),
(33678, 28194, 'en', 'name', 'University of Guelph-Humber'),
(33679, 28195, 'en', 'name', 'Aldrich Public Library'),
(33680, 28196, 'no_lang_code', 'name', 'Optaglio (Czechia)'),
(33681, 28197, 'en', 'name', 'Tartu Art College'),
(33682, 28197, 'et', 'name', 'KƵrgem Kunstikool Pallas'),
(33683, 28198, 'en', 'name', 'Michigan Department of Environment, Great Lakes, and Energy'),
(33684, 28199, 'en', 'name', 'Coalition of Urban and Metropolitan Universities'),
(33685, 28200, 'en', 'name', 'North Carolina Department of Natural and Cultural Resources'),
(33686, 28201, 'en', 'name', 'Okinawa Christian University'),
(33687, 28201, 'ja', 'name', 'ę²–ēø„ć‚­ćƒŖć‚¹ćƒˆę•™å­¦é™¢å¤§å­¦'),
(33688, 28202, 'en', 'name', 'Makah Cultural and Research Center'),
(33689, 28203, 'en', 'name', 'Institute for Historical Study'),
(33690, 28204, 'pl', 'name', 'Wyższa Szkoła Pedagogiczna Związku Nauczycielstwa Polskiego'),
(33691, 28205, 'en', 'name', 'Orel State Institute of Arts and Culture'),
(33692, 28205, 'ru', 'name', 'ŠžŃ€Š»Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(33693, 28206, 'en', 'name', 'Seattle Public Library'),
(33694, 28207, 'en', 'name', 'Sons of Union Veterans of the Civil War'),
(33695, 28208, 'en', 'name', 'Catholic University of Pusan'),
(33696, 28208, 'ko', 'name', 'ė¶€ģ‚°ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(33697, 28209, 'no_lang_code', 'name', 'Vjatka Social Economics Institute'),
(33698, 28209, 'ru', 'name', 'Š’ŃŃ‚ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(33699, 28210, 'id', 'name', 'Institut Teknologi Medan'),
(33700, 28211, 'en', 'name', 'Beijing Language and Culture University'),
(33701, 28211, 'zh', 'name', 'åŒ—äŗ¬čÆ­čØ€å¤§å­¦'),
(33702, 28212, 'no_lang_code', 'name', 'HOST vydavatelstvĆ­ (Czechia)'),
(33703, 28213, 'en', 'name', 'State of Rhode Island Office of Library and Information Services'),
(33704, 28214, 'en', 'name', 'Dennis Gabor College'),
(33705, 28214, 'hu', 'name', 'GABOR DENES FOISKOLA'),
(33706, 28215, 'no_lang_code', 'name', 'ECO Trend (Czechia)'),
(33707, 28216, 'en', 'name', 'Manhattan High School'),
(33708, 28217, 'en', 'name', 'Greater New Orleans Educational Television Foundation'),
(33709, 28218, 'en', 'name', 'Andijan Institute of Agricultural'),
(33710, 28218, 'uz', 'name', 'Andijon qishloq xo''jalik instituti'),
(33711, 28219, 'en', 'name', 'Mediterranean University'),
(33712, 28219, 'sr', 'name', 'Univerzitet Mediteran'),
(33713, 28220, 'en', 'name', 'Shedd Aquarium'),
(33714, 28221, 'en', 'name', 'Baltic State Academy of the Fishing Fleet'),
(33715, 28221, 'ru', 'name', 'Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ рыбопромыслового флота'),
(33716, 28222, 'en', 'name', 'Chesapeake Bay Foundation'),
(33717, 28223, 'en', 'name', 'Supreme Court Historical Society'),
(33718, 28224, 'no_lang_code', 'name', 'Maurer (Germany)'),
(33719, 28225, 'en', 'name', 'Paul Quinn College'),
(33720, 28226, 'en', 'name', 'International Solomon University'),
(33721, 28226, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ Доломонів ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33722, 28227, 'no_lang_code', 'name', 'Hybrizyme (United States)'),
(33723, 28228, 'en', 'name', 'Novosibirsk Institute of Economy, Psychology and Law'),
(33724, 28228, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Экономики ŠŸŃŠøŃ…ологии Šø ŠŸŃ€Š°Š²Š°'),
(33725, 28229, 'en', 'name', 'Chunnam Techno University'),
(33726, 28229, 'ko', 'name', 'ģ „ė‚Øź³¼ķ•™ėŒ€ķ•™źµ'),
(33727, 28230, 'en', 'name', 'Tenri Health Care University'),
(33728, 28230, 'ja', 'name', 'å¤©ē†åŒ»ē™‚å¤§å­¦'),
(33729, 28231, 'id', 'name', 'Universitas Muhammadiyah Sumatera Utara'),
(33730, 28232, 'cs', 'name', 'Centrum OrganickƩ Chemie'),
(33731, 28232, 'no_lang_code', 'name', 'Centre for Organic Chemistry (Czechia)'),
(33732, 28233, 'ja', 'name', 'ę¤č‰å­¦åœ’å¤§å­¦'),
(33733, 28233, 'no_lang_code', 'name', 'Uekusa Gakuen University'),
(33734, 28234, 'en', 'name', 'Maine Library Association'),
(33735, 28235, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(33736, 28235, 'en', 'name', 'Arab Open University'),
(33737, 28236, 'en', 'name', 'National Academy of Internal Affairs'),
(33738, 28237, 'en', 'name', 'Pinchot University'),
(33739, 28238, 'en', 'name', 'Gwangju Catholic University'),
(33740, 28238, 'ko', 'name', 'ź“‘ģ£¼ź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(33741, 28239, 'en', 'name', 'Monroe County History Center'),
(33742, 28240, 'en', 'name', 'Lyndon Baines Johnson Foundation'),
(33743, 28241, 'en', 'name', 'Forbes Library'),
(33744, 28242, 'en', 'name', 'Pocumtuck Valley Memorial Association'),
(33745, 28243, 'en', 'name', 'Johannelund Theological Seminary'),
(33746, 28243, 'sv', 'name', 'Johannelunds teologiska hƶgskola'),
(33747, 28244, 'bn', 'name', 'ą¦Ŗą§ą¦°ą§‡ą¦øą¦æą¦”ą§‡ą¦Øą§ą¦øą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(33748, 28244, 'en', 'name', 'Presidency University'),
(33749, 28245, 'en', 'name', 'Colonial Williamsburg Foundation'),
(33750, 28246, 'de', 'name', 'Evangelische Hochschule Freiburg'),
(33751, 28246, 'en', 'name', 'Protestant University of Applied Sciences Freiburg'),
(33752, 28247, 'no_lang_code', 'name', 'UVB Technik (Czechia)'),
(33753, 28248, 'en', 'name', 'Niigata Institute of Technology'),
(33754, 28248, 'ja', 'name', 'ę–°ę½Ÿå·„ē§‘å¤§å­¦'),
(33755, 28249, 'en', 'name', 'Duluth Public Library'),
(33756, 28250, 'en', 'name', 'New Orleans Jazz & Heritage Festival and Foundation'),
(33757, 28251, 'en', 'name', 'Ukrainian-American Concordia University'),
(33758, 28251, 'uk', 'name', 'Š’Ń–ŃŠŗŠ¾Š½ŃŠøŠ½ŃŃŒŠŗŠøŠ¹ міжнароГний Університет (ДША) в Україні'),
(33759, 28252, 'en', 'name', 'Bucheon University'),
(33760, 28252, 'ko', 'name', 'ė¶€ģ²œėŒ€ķ•™źµ'),
(33761, 28253, 'ca', 'name', 'Universitat Pontifƭcia de Sant TomƔs d''Aquino'),
(33762, 28253, 'de', 'name', 'PƤpstliche UniversitƤt Heiliger Thomas von Aquin'),
(33763, 28253, 'en', 'name', 'Pontifical University of Saint Thomas Aquinas'),
(33764, 28253, 'fr', 'name', 'UniversitƩ pontificale saint-thomas-d''aquin'),
(33765, 28253, 'it', 'name', 'Pontificia UniversitĆ  San Tommaso d''Aquino'),
(33766, 28254, 'en', 'name', 'Business Breakthrough University'),
(33767, 28254, 'ja', 'name', 'ćƒ“ć‚øćƒć‚¹ćƒ»ćƒ–ćƒ¬ćƒ¼ć‚Æć‚¹ćƒ«ćƒ¼å¤§å­¦'),
(33768, 28255, 'en', 'name', 'Grinnell Newburg Community School District'),
(33769, 28256, 'en', 'name', 'Scarsdale Historical Society'),
(33770, 28257, 'en', 'name', 'Tashkent Automobile and Road Construction Institute'),
(33771, 28257, 'uz', 'name', 'Toshkent avtomobil yo''llarini loyihalash, qurish va ekspluatatsiyasi instituti'),
(33772, 28258, 'en', 'name', 'Nugaal University'),
(33773, 28258, 'so', 'name', 'Jaamacadda Nugaal'),
(33774, 28259, 'cs', 'name', '2N Telekomunikace'),
(33775, 28259, 'no_lang_code', 'name', '2N Telecommunications (Czechia)'),
(33776, 28260, 'en', 'name', 'Windward Community College'),
(33777, 28261, 'en', 'name', 'University of Kalemie'),
(33778, 28261, 'fr', 'name', 'UniversitƩ de kalemie'),
(33779, 28262, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© كرري'),
(33780, 28262, 'en', 'name', 'Karary University'),
(33781, 28263, 'en', 'name', 'Vinayaka Missions University'),
(33782, 28263, 'ta', 'name', 'விநாயகா ą®®ą®æą®·ą®©ąÆą®øąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(33783, 28264, 'en', 'name', 'Centre for Integrated Health Programs'),
(33784, 28265, 'en', 'name', 'Budapest University of Jewish Studies'),
(33785, 28265, 'hu', 'name', 'OrszĆ”gos RabbikĆ©pző – Zsidó Egyetem'),
(33786, 28266, 'id', 'name', 'Universitas Pandanaran'),
(33787, 28267, 'en', 'name', 'Dubrovnik International University'),
(33788, 28267, 'hr', 'name', 'Libertas međunarodno sveučiliÅ”te - Dubrovnik'),
(33789, 28268, 'en', 'name', 'Center for Alaskan Coastal Studies'),
(33790, 28269, 'cs', 'name', 'Institut Pro Studium Literatury'),
(33791, 28270, 'en', 'name', 'Kaetsu University'),
(33792, 28270, 'ja', 'name', 'å˜‰ę‚¦å¤§å­¦'),
(33793, 28271, 'no_lang_code', 'name', 'Novosibirsk State Pedagogical University'),
(33794, 28271, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33795, 28272, 'en', 'name', 'Virginia University of Lynchburg'),
(33796, 28273, 'en', 'name', 'University of Bacău'),
(33797, 28273, 'ro', 'name', 'Universitatea "Vasile Alecsandri" din Bacău'),
(33798, 28274, 'en', 'name', 'Oceanside Public Library'),
(33799, 28275, 'en', 'name', 'Tsuru University'),
(33800, 28275, 'ja', 'name', 'éƒ½ē•™ę–‡ē§‘å¤§å­¦'),
(33801, 28276, 'en', 'name', 'Saigon International University'),
(33802, 28276, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Quốc tįŗæ SĆ i Gòn'),
(33803, 28277, 'no_lang_code', 'name', 'Elitex slƩvƔrna (Czechia)'),
(33804, 28278, 'en', 'name', 'Sochi State University'),
(33805, 28278, 'ru', 'name', 'Дочинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33806, 28279, 'ar', 'name', 'الجامعة Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ©'),
(33807, 28279, 'en', 'name', 'Lebanese German University'),
(33808, 28280, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© كي Ł„Ł„ŲŖŲ±ŲØŁŠŲ©'),
(33809, 28280, 'en', 'name', 'Kaye Academic College of Education'),
(33810, 28280, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ לחינוך ×¢"ש קיי'),
(33811, 28281, 'en', 'name', 'Constanta Maritime University'),
(33812, 28281, 'ro', 'name', 'Universitatea Maritimă din Constanța'),
(33813, 28282, 'en', 'name', 'Islamic Azad University of Shiraz'),
(33814, 28282, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓیراز'),
(33815, 28283, 'en', 'name', 'Kobe Institute Of Computing'),
(33816, 28283, 'ja', 'name', 'ē„žęˆøęƒ…å ±å¤§å­¦é™¢å¤§å­¦'),
(33817, 28284, 'en', 'name', 'Los Medanos College'),
(33818, 28285, 'en', 'name', 'Hanlyo University'),
(33819, 28285, 'ko', 'name', 'ķ•œė ¤ėŒ€ķ•™źµ'),
(33820, 28286, 'en', 'name', 'Lyceum-Northwestern University'),
(33821, 28287, 'en', 'name', 'Vincent Pol University'),
(33822, 28287, 'pl', 'name', 'Wyższa Szkoła Społeczno-Przyrodnicza im. Wincentego Pola w Lublinie'),
(33823, 28288, 'en', 'name', 'New York State Historical Association'),
(33824, 28289, 'en', 'name', 'David Agmashenebeli University of Georgia'),
(33825, 28289, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ“įƒįƒ•įƒ˜įƒ— įƒįƒ¦įƒ›įƒįƒØįƒ”įƒœįƒ”įƒ‘įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(33826, 28290, 'en', 'name', 'Christian University of Indonesia'),
(33827, 28290, 'id', 'name', 'Universitas Kristen Indonesia'),
(33828, 28291, 'en', 'name', 'Industrial Management Institute'),
(33829, 28291, 'fa', 'name', 'سازمان Ł…ŲÆŁŠŲ±ŁŠŲŖ ŲµŁ†Ų¹ŲŖŁŠ'),
(33830, 28292, 'en', 'name', 'Hengshui University'),
(33831, 28292, 'zh', 'name', '蔔氓学院'),
(33832, 28293, 'en', 'name', 'Bunkyo Gakuin University'),
(33833, 28293, 'ja', 'name', '文京学院大学'),
(33834, 28294, 'en', 'name', 'Phoenix Art Museum'),
(33835, 28295, 'en', 'name', 'Odessa National Economics University'),
(33836, 28295, 'ru', 'name', 'ŠžŠ“ŠµŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33837, 28295, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33838, 28296, 'en', 'name', 'Ural State Academy of Veterinary Medicine'),
(33839, 28297, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‡Ų§ŁŠŁƒŲ§Ų²ŁŠŲ§Ł†'),
(33840, 28297, 'fr', 'name', 'UniversitƩ haigazian'),
(33841, 28297, 'hy', 'name', 'Õ€Õ”ÕµÕÆÕ”Õ¦ÕµÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(33842, 28297, 'no_lang_code', 'name', 'Haigazian University'),
(33843, 28298, 'en', 'name', 'Beijing Film Academy'),
(33844, 28298, 'zh', 'name', 'åŒ—äŗ¬ē”µå½±å­¦é™¢'),
(33845, 28299, 'en', 'name', 'Nakhon Pathom Rajabhat University'),
(33846, 28299, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąø›ąøąø”'),
(33847, 28300, 'cs', 'name', 'Výzkumný Ústav ŽelezničnĆ­'),
(33848, 28300, 'no_lang_code', 'name', 'Railway Research Institute (Czechia)'),
(33849, 28301, 'en', 'name', 'Kolhan University'),
(33850, 28302, 'en', 'name', 'Marathwada Agricultural University'),
(33851, 28302, 'hi', 'name', 'वसंतराव ą¤Øą¤¾ą¤ˆą¤• मराठवाऔा ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(33852, 28303, 'en', 'name', 'National Intelligence Academy'),
(33853, 28303, 'ro', 'name', 'Academia Națională de Informații'),
(33854, 28304, 'bs', 'name', 'Univerzitet u Bihaću'),
(33855, 28304, 'en', 'name', 'University of Bihać'),
(33856, 28304, 'sr', 'name', 'Универзитет у Š‘ŠøŃ…Š°Ń›Ńƒ'),
(33857, 28305, 'en', 'name', 'Edogawa University'),
(33858, 28305, 'ja', 'name', 'ę±Ÿęˆøå·å¤§å­¦'),
(33859, 28306, 'en', 'name', 'American Repertory Theater'),
(33860, 28307, 'en', 'name', 'Bastar University'),
(33861, 28307, 'hi', 'name', 'ą¤¬ą¤øą„ą¤¤ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33862, 28308, 'id', 'name', 'Universitas Ratu Samban'),
(33863, 28309, 'en', 'name', 'Nara Prefectural University'),
(33864, 28309, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹å¤§å­¦'),
(33865, 28310, 'en', 'name', 'Quinebaug Valley Community College'),
(33866, 28311, 'en', 'name', 'Air University'),
(33867, 28311, 'ur', 'name', 'جامعہ فضایہ'),
(33868, 28312, 'en', 'name', 'Ateneo de Zamboanga University'),
(33869, 28312, 'tl', 'name', 'Pamantasang Ateneo de Zamboanga'),
(33870, 28313, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų§Ų®Ų±ā€Ž'),
(33871, 28313, 'no_lang_code', 'name', 'Maakhir University'),
(33872, 28314, 'en', 'name', 'Gulf and Caribbean Fisheries Institute'),
(33873, 28315, 'en', 'name', 'Karlshochschule International University'),
(33874, 28316, 'en', 'name', 'International Business School'),
(33875, 28317, 'no_lang_code', 'name', 'TOS Varnsdorf (Czechia)'),
(33876, 28318, 'en', 'name', 'Shih Hsin University'),
(33877, 28318, 'zh', 'name', '世新大學'),
(33878, 28319, 'en', 'name', 'Massanutten Regional Library'),
(33879, 28320, 'no_lang_code', 'name', 'SurfaceTreat (Czechia)'),
(33880, 28321, 'en', 'name', 'Mackinac State Historic Parks'),
(33881, 28322, 'en', 'name', 'Public Media Connect'),
(33882, 28323, 'en', 'name', 'Volga State University of Technology'),
(33883, 28323, 'ru', 'name', 'Поволжский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33884, 28324, 'en', 'name', 'Niigata College of Nursing'),
(33885, 28324, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ēœ‹č­·å¤§å­¦'),
(33886, 28325, 'no_lang_code', 'name', 'OT Energy Services (Czechia)'),
(33887, 28326, 'en', 'name', 'Victoria School of Management'),
(33888, 28327, 'en', 'name', 'International Management Institute Saint Petersburg'),
(33889, 28327, 'ru', 'name', 'ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента'),
(33890, 28328, 'ja', 'name', '至誠館大学'),
(33891, 28328, 'no_lang_code', 'name', 'Shiseikan University'),
(33892, 28329, 'pl', 'name', 'Olsztyńska Szkoła Wyższa im. Józefa Rusieckiego'),
(33893, 28330, 'no_lang_code', 'name', 'Atmos (Czechia)'),
(33894, 28331, 'en', 'name', 'National Pingtung University'),
(33895, 28331, 'zh', 'name', 'åœ‹ē«‹å±ę±å¤§å­ø'),
(33896, 28332, 'en', 'name', 'Mercer Museum and Fonthill Castle'),
(33897, 28333, 'en', 'name', 'McPherson University'),
(33898, 28334, 'en', 'name', 'Queens Museum'),
(33899, 28335, 'id', 'name', 'Universitas Muhammadiyah Lampung'),
(33900, 28336, 'en', 'name', 'Detroit Institute of Arts'),
(33901, 28337, 'ja', 'name', '中央学院大学'),
(33902, 28337, 'no_lang_code', 'name', 'Chuo Gakuin University'),
(33903, 28338, 'en', 'name', 'Sports Research Institute Of Czech Armed Forces'),
(33904, 28339, 'en', 'name', 'Bunri University of Hospitality'),
(33905, 28339, 'ja', 'name', '脿武文理大学'),
(33906, 28340, 'en', 'name', 'Marshall B. Ketchum University'),
(33907, 28341, 'en', 'name', 'Fukushima University'),
(33908, 28341, 'ja', 'name', 'ē¦å³¶å¤§å­¦'),
(33909, 28342, 'en', 'name', 'Riga Aeronautical Institute'),
(33910, 28342, 'lv', 'name', 'Rīgas Aeronavigācijas institūts'),
(33911, 28343, 'en', 'name', 'Mykolayiv National Agrarian University'),
(33912, 28343, 'ru', 'name', 'ŠŠøŠŗŠ¾Š»Š°ŠµŠ²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33913, 28343, 'uk', 'name', 'ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33914, 28344, 'en', 'name', 'Jizzakh Polytechnic Institute'),
(33915, 28344, 'uz', 'name', 'Jizzax Poltexnika Instituti'),
(33916, 28345, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© تيفاريتي'),
(33917, 28345, 'en', 'name', 'University of Tifariti'),
(33918, 28346, 'es', 'name', 'Universidad del Tepeyac'),
(33919, 28347, 'en', 'name', 'Amherst Pelham Regional School District'),
(33920, 28348, 'en', 'name', 'Grail Movement'),
(33921, 28349, 'en', 'name', 'Aichi Bunkyo University'),
(33922, 28349, 'ja', 'name', 'ę„›ēŸ„ę–‡ę•™å¤§å­¦'),
(33923, 28350, 'en', 'name', 'Indonesia Open University'),
(33924, 28350, 'id', 'name', 'Universitas Terbuka'),
(33925, 28351, 'en', 'name', 'Montclair Art Museum'),
(33926, 28352, 'en', 'name', 'Tulsa City-County Library'),
(33927, 28353, 'no_lang_code', 'name', 'VR Group (Czechia)'),
(33928, 28354, 'en', 'name', 'University of Luzon'),
(33929, 28355, 'en', 'name', 'Ocean Conservancy'),
(33930, 28356, 'en', 'name', 'Lehigh County Historical Society'),
(33931, 28357, 'en', 'name', 'Nalanda University'),
(33932, 28357, 'hi', 'name', 'ą¤Øą¤¾ą¤²ą¤Øą„ą¤¦ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33933, 28357, 'mr', 'name', 'नालंदा ą¤†ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(33934, 28357, 'pa', 'name', 'ਨਾਲੰਦਾ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(33935, 28357, 'ta', 'name', 'ą®Øą®¾ą®²ą®ØąÆą®¤ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(33936, 28357, 'te', 'name', 'నలందా ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(33937, 28358, 'en', 'name', 'Chandra Shekhar Azad University of Agriculture and Technology'),
(33938, 28358, 'hi', 'name', 'ą¤šą¤‚ą¤¦ą„ą¤° ą¤¶ą„‡ą¤–ą¤° ą¤†ą¤œą¤¾ą¤¦ ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(33939, 28359, 'en', 'name', 'Gulistan State University'),
(33940, 28359, 'uz', 'name', 'Guliston universiteti'),
(33941, 28360, 'cs', 'name', 'SlezskƩ zemskƩ muzeum'),
(33942, 28360, 'en', 'name', 'Silesian Museum'),
(33943, 28361, 'en', 'name', 'Georgia OKeeffe Museum'),
(33944, 28362, 'fr', 'name', 'UniversitƩ Nantes Angers Le Mans'),
(33945, 28363, 'en', 'name', 'Nakhon Sawan Rajabhat University'),
(33946, 28363, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąøŖąø§ąø£ąø£ąø„ą¹Œ'),
(33947, 28364, 'no_lang_code', 'name', 'Dürr Systems (Czechia)'),
(33948, 28365, 'en', 'name', 'Saint Patrick''s Seminary and University'),
(33949, 28366, 'cs', 'name', 'ČeskĆ” Společnost ChemickĆ”'),
(33950, 28367, 'bs', 'name', 'Međunarodni univerzitet Burch'),
(33951, 28367, 'en', 'name', 'International Burch University'),
(33952, 28368, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© في لبنان'),
(33953, 28368, 'en', 'name', 'Islamic University of Lebanon'),
(33954, 28369, 'en', 'name', 'Tafresh University'),
(33955, 28369, 'fa', 'name', 'دانؓگاه تفرؓ'),
(33956, 28370, 'ja', 'name', 'äø­å›½å­¦åœ’å¤§å­¦'),
(33957, 28370, 'no_lang_code', 'name', 'Chugoku Gakuen University'),
(33958, 28371, 'en', 'name', 'Jaypee University of Engineering and Technology'),
(33959, 28371, 'hi', 'name', 'ą¤œą„‡ą¤Ŗą„€ ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤—ą„ą¤Øą¤¾ą„¤'),
(33960, 28372, 'en', 'name', 'University of Mediterranean Karpasia'),
(33961, 28372, 'tr', 'name', 'Akdeniz Karpaz Üniversitesi'),
(33962, 28373, 'en', 'name', 'Kobe Kaisei College'),
(33963, 28373, 'ja', 'name', 'ē„žęˆøęµ·ę˜Ÿå„³å­å­¦é™¢å¤§å­¦'),
(33964, 28374, 'id', 'name', 'Universitas Surakarta'),
(33965, 28375, 'id', 'name', 'Universitas Kadiri'),
(33966, 28376, 'en', 'name', 'National Baseball Hall of Fame and Museum'),
(33967, 28377, 'en', 'name', 'Neisse University'),
(33968, 28378, 'en', 'name', 'State Library of Massachusetts'),
(33969, 28379, 'en', 'name', 'Volgograd Institute of Economics, Sociology and Law'),
(33970, 28379, 'ru', 'name', 'ВолгограГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, социологии Šø права'),
(33971, 28380, 'en', 'name', 'Yukon River Drainage Fisheries Association'),
(33972, 28381, 'pl', 'name', 'Wyższa Szkoła Umiejętności im. Stanisława Staszica w Kielcach'),
(33973, 28382, 'en', 'name', 'Mint Museum'),
(33974, 28383, 'no_lang_code', 'name', 'University of Luhansk'),
(33975, 28383, 'pl', 'name', 'Ługański Uniwersytet Narodowy im. Tarasa Szewczenki'),
(33976, 28383, 'ru', 'name', 'Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Тараса Шевченко'),
(33977, 28383, 'uk', 'name', 'Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Тараса Шевченка'),
(33978, 28384, 'en', 'name', 'Schenectady County Historical Society'),
(33979, 28385, 'en', 'name', 'Institute of Technologists'),
(33980, 28385, 'ja', 'name', 'ć‚‚ć®ć¤ćć‚Šå¤§å­¦'),
(33981, 28386, 'en', 'name', 'Churchill Centre'),
(33982, 28387, 'en', 'name', 'Innovative University of Eurasia'),
(33983, 28387, 'ru', 'name', 'Š˜Š½Š½Š¾Š²Š°Ń†ŠøŠ¾Š½Š½Ń‹Š¹ Евразийский Университет'),
(33984, 28388, 'en', 'name', 'Bratsk State University'),
(33985, 28388, 'ru', 'name', 'Братский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33986, 28389, 'no_lang_code', 'name', 'KPM Consult (Czechia)'),
(33987, 28390, 'en', 'name', 'Institute of State Administration'),
(33988, 28390, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŠŠ“Š¼ŠøŠ½ŠøŃŃ‚Ń€ŠøŃ€Š¾Š²Š°Š½ŠøŃ'),
(33989, 28391, 'no_lang_code', 'name', 'Bila Tserkva National Agrarian University'),
(33990, 28391, 'uk', 'name', 'Š‘Ń–Š»Š¾Ń†ŠµŃ€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(33991, 28392, 'en', 'name', 'Třinec Iron and Steel Works'),
(33992, 28392, 'no_lang_code', 'name', 'TřineckĆ© ŽelezĆ”rny (Czechia)'),
(33993, 28393, 'en', 'name', 'Lourdes University'),
(33994, 28394, 'en', 'name', 'Orange County Library System'),
(33995, 28395, 'en', 'name', 'Astrakhan Institute of Civil Engineering'),
(33996, 28395, 'ru', 'name', 'Астраханский инженерно-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(33997, 28396, 'en', 'name', 'Natrona County Public Library'),
(33998, 28397, 'en', 'name', 'Chuncheon National University of Education'),
(33999, 28397, 'ko', 'name', 'ģ¶˜ģ²œźµģœ”ėŒ€ķ•™źµ'),
(34000, 28398, 'en', 'name', 'Lenox Library Association'),
(34001, 28399, 'pl', 'name', 'Wyższa Szkoła Edukacji Zdrowotnej i Nauk Społecznych w Łodzi'),
(34002, 28400, 'en', 'name', 'Balochistan University of Engineering and Technology'),
(34003, 28400, 'ur', 'name', 'ŲØŁ„ŁˆŚ†Ų³ŲŖŲ§Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ Ų®Ų¶ŲÆŲ§Ų±'),
(34004, 28401, 'en', 'name', 'Russian School of Private Law'),
(34005, 28401, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń школа частного права'),
(34006, 28402, 'en', 'name', 'Moscow State Academy of Veterinary Medicine and Biotechnology named after Skryabin'),
(34007, 28402, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ветеринарной меГицины Šø биотехнологии имени К. И. Š”ŠŗŃ€ŃŠ±ŠøŠ½Š°'),
(34008, 28403, 'en', 'name', 'Volgograd State Technical University'),
(34009, 28403, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ВолгограГский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34010, 28404, 'en', 'name', 'Rashtriya Sanskrit Vidyapeetha'),
(34011, 28404, 'te', 'name', 'ą°°ą°¾ą°·ą±ą°Ÿą±ą°°ą±€ą°Æ ą°øą°‚ą°øą±ą°•ą±ƒą°¤ ą°µą°æą°¦ą±ą°Æą°¾ą°Ŗą±€ą° ą°‚'),
(34012, 28405, 'no_lang_code', 'name', 'Demonta Trade (Czechia)'),
(34013, 28406, 'en', 'name', 'Astrakhan State Conservatory'),
(34014, 28406, 'ru', 'name', 'ŠŃŃ‚Ń€Š°Ń…Š°Š½ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠšŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ'),
(34015, 28407, 'en', 'name', 'Arena Stage'),
(34016, 28408, 'en', 'name', 'James Sprunt Community College'),
(34017, 28409, 'en', 'name', 'Western Pocono Community Library'),
(34018, 28410, 'en', 'name', 'Hellenic American University'),
(34019, 28411, 'en', 'name', 'Stavropol State University'),
(34020, 28412, 'en', 'name', 'Kona Historical Society'),
(34021, 28413, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© العاؓر من Ų±Ł…Ų¶Ų§Ł†ā€Žā€Ž'),
(34022, 28413, 'en', 'name', 'El Asher University'),
(34023, 28414, 'en', 'name', 'University Teaching Hospital of Yaounde'),
(34024, 28414, 'fr', 'name', 'Centre Hospitalier et Universitaire de YaoundƩ'),
(34025, 28415, 'id', 'name', 'Universitas Muhammadiyah Kupang'),
(34026, 28416, 'en', 'name', 'Pennsylvania Emergency Management Agency'),
(34027, 28417, 'en', 'name', 'Salish Sea Expeditions'),
(34028, 28418, 'en', 'name', 'International Information Technologies University'),
(34029, 28418, 'kk', 'name', 'Єалықаралық ақпараттық Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃŠ»Š°Ń€ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(34030, 28418, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ информационных технологий'),
(34031, 28419, 'en', 'name', 'International Women University'),
(34032, 28420, 'en', 'name', 'Pskov State Pedagogical Institute'),
(34033, 28420, 'ru', 'name', 'Псковский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(34034, 28421, 'en', 'name', 'International University of Chabahar'),
(34035, 28421, 'fa', 'name', 'دانؓگاه ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ چابهار'),
(34036, 28422, 'en', 'name', 'Chinju National University of Education'),
(34037, 28422, 'ko', 'name', 'ģ§„ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(34038, 28423, 'en', 'name', 'Yancheng Teachers University'),
(34039, 28424, 'en', 'name', 'American Councils for International Education'),
(34040, 28425, 'en', 'name', 'Moscow State University of Food Production'),
(34041, 28425, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ пищевых произвоГств'),
(34042, 28426, 'no_lang_code', 'name', 'Infram (Czechia)'),
(34043, 28427, 'en', 'name', 'University of Pereslavl'),
(34044, 28427, 'ru', 'name', 'Университет гороГа ŠŸŠµŃ€ŠµŃŠ»Š°Š²Š»Ń имени А. К. ŠŠ¹Š»Š°Š¼Š°Š·ŃŠ½Š°'),
(34045, 28428, 'en', 'name', 'North Coast Marine Mammal Center'),
(34046, 28429, 'en', 'name', 'Historic Annapolis Foundation'),
(34047, 28430, 'en', 'name', 'Northern Seminary'),
(34048, 28431, 'en', 'name', 'Krasnoyarsk State Trade and Economic Institute'),
(34049, 28431, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ торгово-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(34050, 28432, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المقاصد في بيروت'),
(34051, 28432, 'en', 'name', 'Makassed University'),
(34052, 28433, 'en', 'name', 'Chuvash State Agricultural Academy'),
(34053, 28433, 'ru', 'name', 'Š§ŃƒŠ²Š°ŃˆŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(34054, 28434, 'no_lang_code', 'name', 'ArcelorMittal (Czechia)'),
(34055, 28435, 'en', 'name', 'Nigerian University Games Association'),
(34056, 28436, 'en', 'name', 'Academy of Physiotheray in Wrocław'),
(34057, 28436, 'pl', 'name', 'Wyższa Szkoła Fizjoterapii'),
(34058, 28437, 'en', 'name', 'Rhode Island Historical Society'),
(34059, 28438, 'en', 'name', 'Copper Queen Library'),
(34060, 28439, 'en', 'name', 'Aino University'),
(34061, 28439, 'ja', 'name', 'č—é‡Žå¤§å­¦'),
(34062, 28440, 'en', 'name', 'Gnessin Russian Academy of Music'),
(34063, 28440, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø имени Гнесиных'),
(34064, 28441, 'en', 'name', 'Vermont Ski and Snowboard Museum'),
(34065, 28442, 'en', 'name', 'Rutland Free Library'),
(34066, 28443, 'en', 'name', 'Preservation Virginia'),
(34067, 28444, 'en', 'name', 'Liberal Arts University'),
(34068, 28444, 'ru', 'name', 'Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34069, 28445, 'en', 'name', 'Northwest Open Technical University'),
(34070, 28445, 'ru', 'name', 'Деверо-ЗапаГный открытый технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34071, 28446, 'cs', 'name', 'Technické služby ochrany ovzduŔí Praha'),
(34072, 28446, 'no_lang_code', 'name', 'Technical services for air protection Prague (Czechia)'),
(34073, 28447, 'en', 'name', 'International Fund for Animal Welfare'),
(34074, 28448, 'en', 'name', 'University of World Economy and Diplomacy'),
(34075, 28448, 'uz', 'name', 'Jahon Iqtisodiyoti va Diplomatiya Universiteti'),
(34076, 28449, 'en', 'name', 'Houston Public Library'),
(34077, 28449, 'es', 'name', 'Biblioteca PĆŗblica de Houston'),
(34078, 28450, 'ar', 'name', 'الجامعة Ų§Ł„Ł…Ł„ŁƒŁŠŲ© للبنات'),
(34079, 28450, 'en', 'name', 'Royal University for Women'),
(34080, 28451, 'en', 'name', 'Huntington Theatre Company'),
(34081, 28452, 'en', 'name', 'Surigao del Sur State University'),
(34082, 28453, 'en', 'name', 'Vladimir Law Institute'),
(34083, 28453, 'ru', 'name', 'Š’Š›ŠŠ”Š˜ŠœŠ˜Š Š”ŠšŠ˜Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š”Š˜Š Š ŠžŠ”Š”Š˜Š˜'),
(34084, 28454, 'en', 'name', 'Frederick Taylor University'),
(34085, 28455, 'en', 'name', 'Odessa National A. V. Nezhdanova Academy of Music'),
(34086, 28455, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŃƒŠ·ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń імені А. Š’. ŠŠµŠ¶Š“Š°Š½Š¾Š²Š¾Ń—'),
(34087, 28456, 'en', 'name', 'Cavite State University'),
(34088, 28457, 'en', 'name', 'Institute of the Black World'),
(34089, 28458, 'ar', 'name', 'الجامعة Ų§Ł„Ų§ŁŲŖŲ±Ų§Ų¶ŁŠŲ© Ų§Ł„Ų³ŁˆŲ±ŁŠŲ©'),
(34090, 28458, 'en', 'name', 'Syrian Virtual University'),
(34091, 28459, 'en', 'name', 'Dusit Thani College'),
(34092, 28459, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø”ąøøąøŖąø“ąø•ąø˜ąø²ąø™ąøµ ąøąø£ąøøąø‡ą¹€ąø—ąøž'),
(34093, 28460, 'en', 'name', 'Islamic Azad University of Sabzevar'),
(34094, 28460, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سبزوار'),
(34095, 28461, 'en', 'name', 'Bloomington Public Library'),
(34096, 28462, 'ja', 'name', '聖徳大学'),
(34097, 28462, 'no_lang_code', 'name', 'Seitoku University'),
(34098, 28463, 'en', 'name', 'First Moscow Law Institute'),
(34099, 28463, 'ru', 'name', 'ŠŸŠµŃ€Š²Ń‹Š¹ московский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(34100, 28464, 'en', 'name', 'Academy of Fine Arts and Design in Bratislava'),
(34101, 28464, 'sk', 'name', 'VysokÔ Ŕkola výtvarných umení v Bratislave'),
(34102, 28465, 'en', 'name', 'Bandung Raya University'),
(34103, 28465, 'id', 'name', 'Universitas Bandung Raya'),
(34104, 28466, 'en', 'name', 'George C Marshall Foundation'),
(34105, 28467, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁˆŁ„ŁˆŁ†ŲŗŁˆŁ†Ųŗ في دبي'),
(34106, 28467, 'en', 'name', 'University of Wollongong in Dubai'),
(34107, 28468, 'en', 'name', 'Indonesia University of Education'),
(34108, 28468, 'id', 'name', 'Universitas Pendidikan Indonesia'),
(34109, 28469, 'en', 'name', 'Faculty of Commercial and Business Sciences'),
(34110, 28469, 'sl', 'name', 'Fakultete za Komercialne in Poslovne Vede'),
(34111, 28470, 'en', 'name', 'Wildlife Research Team'),
(34112, 28471, 'en', 'name', 'Belgorod National Research University'),
(34113, 28471, 'ru', 'name', 'БелгороГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34114, 28472, 'en', 'name', 'Minnesota Department of Public Safety'),
(34115, 28473, 'no_lang_code', 'name', 'ČeskomoravskĆ” Kolben Daněk (Czechia)'),
(34116, 28474, 'en', 'name', 'Oduduwa University'),
(34117, 28475, 'en', 'name', 'Coastal States Organization'),
(34118, 28476, 'en', 'name', 'American Council on the Teaching of Foreign Languages'),
(34119, 28477, 'no_lang_code', 'name', 'Zhytomyr Ivan Franko State University'),
(34120, 28477, 'uk', 'name', 'Š–ŠøŃ‚Š¾Š¼ŠøŃ€ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана Франка'),
(34121, 28478, 'en', 'name', 'Pyatigorsk State University'),
(34122, 28478, 'ru', 'name', 'ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34123, 28479, 'en', 'name', 'Shadrinsk State Pedagogical Institute'),
(34124, 28479, 'ru', 'name', 'ШаГринский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34125, 28480, 'en', 'name', 'Institute of Business and Law'),
(34126, 28480, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса Šø права'),
(34127, 28481, 'en', 'name', 'Facing History and Ourselves'),
(34128, 28482, 'id', 'name', 'Institut Sains dan Teknologi Al-Kamal'),
(34129, 28483, 'no_lang_code', 'name', 'University of Goroka'),
(34130, 28484, 'en', 'name', 'Saigon Technology University'),
(34131, 28484, 'vi', 'name', 'ĐẔi hį»c CĆ“ng nghệ SĆ i Gòn'),
(34132, 28485, 'en', 'name', 'Vistula University'),
(34133, 28485, 'pl', 'name', 'Uczelnia Vistula'),
(34134, 28486, 'en', 'name', 'Mofid University'),
(34135, 28486, 'fa', 'name', 'دانؓگاه Ł…ŁŪŒŲÆ'),
(34136, 28487, 'id', 'name', 'Universitas Kapuas Sintang'),
(34137, 28488, 'en', 'name', 'Restore America''s Estuaries'),
(34138, 28489, 'en', 'name', 'Atlanta-Fulton County Library System'),
(34139, 28490, 'no_lang_code', 'name', 'T-CZ (Czechia)'),
(34140, 28491, 'no_lang_code', 'name', 'B & M InterNets (Czechia)'),
(34141, 28492, 'no_lang_code', 'name', 'Vuje (Czechia)'),
(34142, 28493, 'az', 'name', 'Gəncə Dƶvlət Universiteti'),
(34143, 28493, 'en', 'name', 'Ganja State University'),
(34144, 28493, 'ru', 'name', 'Š“ŃŠ½Š“Š¶ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34145, 28494, 'en', 'name', 'Episcopal Diocese of Pennsylvania'),
(34146, 28495, 'en', 'name', 'Laramie Plains Museum'),
(34147, 28496, 'en', 'name', 'University of Science and Technology of Togo'),
(34148, 28496, 'fr', 'name', 'UniversitƩ des Sciences et Technologies du Togo'),
(34149, 28497, 'en', 'name', 'Busan University of Foreign Studies'),
(34150, 28497, 'ko', 'name', 'ė¶€ģ‚°ģ™øźµ­ģ–“ėŒ€ķ•™źµ'),
(34151, 28498, 'en', 'name', 'Jewish Museum'),
(34152, 28499, 'en', 'name', 'WMHT Educational Telecommunications'),
(34153, 28500, 'no_lang_code', 'name', 'Crytur (Czechia)'),
(34154, 28501, 'en', 'name', 'University of Community Health Magway'),
(34155, 28501, 'my', 'name', 'į€€į€»į€”į€ŗį€øį€™į€¬į€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(34156, 28502, 'en', 'name', 'Nanjing University of the Arts'),
(34157, 28502, 'zh', 'name', 'å—äŗ¬č‰ŗęœÆå­¦é™¢'),
(34158, 28503, 'en', 'name', 'New York City Municipal Archives'),
(34159, 28504, 'no_lang_code', 'name', 'Intertek (United Kingdom)'),
(34160, 28505, 'en', 'name', 'Comanche Nation College'),
(34161, 28506, 'no_lang_code', 'name', 'Lumos Pharma (United States)'),
(34162, 28507, 'en', 'name', 'Research and Breeding Institute of Pomology Holovousy'),
(34163, 28508, 'en', 'name', 'Comanche National Museum and Cultural Center'),
(34164, 28509, 'en', 'name', 'Albany Institute of History & Art'),
(34165, 28510, 'no_lang_code', 'name', 'Tajik Agrarian University Shirinsho Shotemur'),
(34166, 28510, 'ru', 'name', 'ТаГжикский аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34167, 28510, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø аграрии Тоҷикистон'),
(34168, 28511, 'en', 'name', 'St.Tammany Parish Government'),
(34169, 28512, 'en', 'name', 'Ternopil Ivan Pului National Technical University'),
(34170, 28512, 'uk', 'name', 'Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана ŠŸŃƒŠ»ŃŽŃ'),
(34171, 28513, 'en', 'name', 'Quảng Bình University'),
(34172, 28513, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Quįŗ£ng BƬnh'),
(34173, 28514, 'en', 'name', 'Friendship House'),
(34174, 28515, 'en', 'name', 'Kazan State University of Culture and Arts'),
(34175, 28516, 'en', 'name', 'National University of Equatorial Guinea'),
(34176, 28516, 'es', 'name', 'Universidad Nacional de Guinea Ecuatorial'),
(34177, 28517, 'en', 'name', 'Turan University'),
(34178, 28517, 'kk', 'name', 'Тұран Университеті'),
(34179, 28517, 'ru', 'name', 'Университет Š¢ŃƒŃ€Š°Š½'),
(34180, 28518, 'en', 'name', 'D.Y. Patil University'),
(34181, 28519, 'ko', 'name', 'ė°±ģ„ėŒ€ķ•™źµ'),
(34182, 28519, 'no_lang_code', 'name', 'Baekseok University'),
(34183, 28520, 'en', 'name', 'Dhammakaya Open University'),
(34184, 28521, 'en', 'name', 'Research Institute for Soil and Water Conservation'),
(34185, 28522, 'en', 'name', 'University of London Institute in Paris'),
(34186, 28522, 'fr', 'name', 'Institut de l''UniversitƩ de Londres Ơ Paris'),
(34187, 28523, 'en', 'name', 'Breyer State Theology University'),
(34188, 28524, 'en', 'name', 'National Defence University'),
(34189, 28524, 'ur', 'name', 'Ł†ŪŒŲ“Ł†Ł„ ŚˆŪŒŁŁ†Ų³ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒā€Ž'),
(34190, 28525, 'en', 'name', 'Kislovodsk Humanitarian and Technical Institute'),
(34191, 28525, 'ru', 'name', 'КисловоГский Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-Технический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(34192, 28526, 'en', 'name', 'St. Agnes University'),
(34193, 28526, 'ja', 'name', '平安儳学院大学'),
(34194, 28527, 'en', 'name', 'University of West Los Angeles'),
(34195, 28528, 'en', 'name', 'Academy of Social and Economic Development'),
(34196, 28528, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø произвоГства'),
(34197, 28529, 'en', 'name', 'University of Seychelles'),
(34198, 28530, 'en', 'name', 'Ural State University of Railway Transport'),
(34199, 28530, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(34200, 28531, 'en', 'name', 'Bukkyo University'),
(34201, 28531, 'ja', 'name', '佛教大学'),
(34202, 28532, 'en', 'name', 'Maine State Archives'),
(34203, 28533, 'en', 'name', 'Medan Area University'),
(34204, 28533, 'id', 'name', 'Universitas Medan Area'),
(34205, 28534, 'en', 'name', 'The Higher School of Art and Design'),
(34206, 28534, 'pl', 'name', 'Wyższa Szkoła Sztuki i Projektowania w Łodzi'),
(34207, 28535, 'no_lang_code', 'name', 'ET International (United States)'),
(34208, 28536, 'en', 'name', 'Nakhon Ratchasima Rajabhat University'),
(34209, 28536, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąø£ąø²ąøŠąøŖąøµąø”ąø²'),
(34210, 28537, 'en', 'name', 'Dnipropetrovsk State Medical Academy'),
(34211, 28537, 'ru', 'name', 'Š”Š½ŠµŠæŃ€Š¾ŠæŠµŃ‚Ń€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(34212, 28537, 'uk', 'name', 'Š”Š½Ń–ŠæŃ€Š¾ŠæŠµŃ‚Ń€Š¾Š²ŃŃŒŠŗŠ° Гержавна меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(34213, 28538, 'en', 'name', 'Rostov State Medical University'),
(34214, 28538, 'ru', 'name', 'Ростовский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34215, 28539, 'no_lang_code', 'name', 'Lodestar Research Corporation (United States)'),
(34216, 28540, 'en', 'name', 'International Vedic Hindu University'),
(34217, 28541, 'en', 'name', 'Verona Public Library'),
(34218, 28542, 'en', 'name', 'Washington State Board for Community and Technical Colleges'),
(34219, 28543, 'en', 'name', 'Guangzhou Sport University'),
(34220, 28543, 'zh', 'name', 'å¹æå·žä½“č‚²å­¦é™¢'),
(34221, 28544, 'en', 'name', 'Taunggyi University'),
(34222, 28544, 'my', 'name', 'တောင်ကြီး į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(34223, 28545, 'en', 'name', 'Angela BoŔkin Faculty of Health Care'),
(34224, 28545, 'sl', 'name', 'Fakulteta za zdravstvo Angele BoŔkin'),
(34225, 28546, 'en', 'name', 'Fo Guang University'),
(34226, 28546, 'zh', 'name', '佛光大學'),
(34227, 28547, 'id', 'name', 'Universitas Ibnu Chaldun Jakarta'),
(34228, 28548, 'pl', 'name', 'Wyższa Szkoła Bankowości i Finansów w Katowicach'),
(34229, 28549, 'en', 'name', 'Okinawa University'),
(34230, 28549, 'ja', 'name', '沖縄大学'),
(34231, 28550, 'en', 'name', 'Lake County Public Library'),
(34232, 28551, 'en', 'name', 'Moscow State Academy of Physical Education'),
(34233, 28551, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(34234, 28552, 'en', 'name', 'International University of Kyrgyzstan'),
(34235, 28553, 'en', 'name', 'Russian State University for the Humanities'),
(34236, 28553, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34237, 28554, 'en', 'name', 'Hanbuk University'),
(34238, 28555, 'en', 'name', 'Nagasaki Junshin Catholic University'),
(34239, 28555, 'ja', 'name', 'é•·å“Žē“”åæƒå¤§å­¦'),
(34240, 28556, 'en', 'name', 'Michurinsk State Agrarian University'),
(34241, 28556, 'ru', 'name', 'ŠœŠøŃ‡ŃƒŃ€ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34242, 28557, 'no_lang_code', 'name', 'Polygra (Czechia)'),
(34243, 28558, 'en', 'name', 'International Marinelife Alliance'),
(34244, 28559, 'en', 'name', 'Tibet Autonomous Region People''s Hospital'),
(34245, 28559, 'zh', 'name', 'č„æč—č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(34246, 28560, 'en', 'name', 'Kamakura Women''s University'),
(34247, 28560, 'ja', 'name', '鎌倉儳子大学'),
(34248, 28561, 'en', 'name', 'Fayetteville Public Library'),
(34249, 28562, 'be', 'name', 'ŠœŃ–Š½ŃŠŗŃ– Ń–Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ ŠŗŃ–Ń€Š°Š²Š°Š½Š½Ń'),
(34250, 28562, 'en', 'name', 'Minsk Institute of Management'),
(34251, 28562, 'ru', 'name', 'Минский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(34252, 28563, 'en', 'name', 'Illinois Department of Natural Resources'),
(34253, 28564, 'en', 'name', 'Koahnic Broadcast Corporation'),
(34254, 28565, 'en', 'name', 'Keio University Shonan Fujisawa'),
(34255, 28565, 'ja', 'name', 'ę…¶ę‡‰ē¾©å”¾å¤§å­¦ę¹˜å—č—¤ę²¢ć‚­ćƒ£ćƒ³ćƒ‘ć‚¹'),
(34256, 28566, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬Ų±Ų“'),
(34257, 28566, 'en', 'name', 'Jerash University'),
(34258, 28567, 'en', 'name', 'Willa Cather Foundation'),
(34259, 28568, 'en', 'name', 'San JosƩ Public Library'),
(34260, 28569, 'no_lang_code', 'name', 'Telangana University'),
(34261, 28569, 'te', 'name', 'తెలంగాణ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(34262, 28570, 'bs', 'name', 'Slobomir P Univerzitet'),
(34263, 28570, 'no_lang_code', 'name', 'Slobomir P University'),
(34264, 28570, 'sr', 'name', 'Длобомир П Универзитет'),
(34265, 28571, 'no_lang_code', 'name', 'Telematix Group (Czechia)'),
(34266, 28572, 'en', 'name', 'Swiss German University'),
(34267, 28572, 'id', 'name', 'Universitas Swiss German'),
(34268, 28573, 'en', 'name', 'Indigenous People''s Council for Marine Mammals'),
(34269, 28574, 'en', 'name', 'Tapee University'),
(34270, 28574, 'th', 'name', 'วณทยาคัยตาปี'),
(34271, 28575, 'en', 'name', 'International Christian University'),
(34272, 28575, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ Š„Ń€ŠøŃŃ‚ŠøŃŠ½ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚-ŠšŠøŃ—Š²'),
(34273, 28576, 'en', 'name', 'Mejiro University'),
(34274, 28576, 'ja', 'name', '目白大学'),
(34275, 28577, 'en', 'name', 'Saint Petersburg Stieglitz State Academy of Art and Design'),
(34276, 28577, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š¾-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени А.Š›. Штиглица'),
(34277, 28578, 'en', 'name', 'Moscow State Industrial University'),
(34278, 28578, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34279, 28579, 'ja', 'name', 'é™å²”č‹±å’Œå­¦é™¢å¤§å­¦'),
(34280, 28579, 'no_lang_code', 'name', 'Shizuoka Eiwa Gakuin University'),
(34281, 28580, 'en', 'name', 'Gold Nugget Museum'),
(34282, 28581, 'en', 'name', 'Asian American Asian Research Institute'),
(34283, 28582, 'en', 'name', 'Samarkand State Institute of Foreign Languages'),
(34284, 28582, 'uz', 'name', 'Samarqand davlat chet tillar instituti'),
(34285, 28583, 'en', 'name', 'Louisiana Museum Foundation'),
(34286, 28584, 'en', 'name', 'Changshin University'),
(34287, 28584, 'ko', 'name', 'ģ°½ģ‹ ėŒ€ķ•™źµ'),
(34288, 28585, 'en', 'name', 'Russian State Agrarian University - Moscow Timiryazev Agricultural Academy'),
(34289, 28585, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ — МДЄА имени К.А. Š¢ŠøŠ¼ŠøŃ€ŃŠ·ŠµŠ²Š°'),
(34290, 28586, 'en', 'name', 'Higashi Nippon International University'),
(34291, 28586, 'ja', 'name', 'ę±ę—„ęœ¬å›½éš›å¤§å­¦'),
(34292, 28587, 'en', 'name', 'Higher Institute of Computer Science and Management Technology'),
(34293, 28588, 'en', 'name', 'Shenzhen Radio and TV University'),
(34294, 28588, 'zh', 'name', 'ę·±åœ³å¹æę’­ē”µč§†å¤§å­¦'),
(34295, 28589, 'en', 'name', 'Northland International University'),
(34296, 28590, 'id', 'name', 'Universitas Islam Kadiri'),
(34297, 28591, 'en', 'name', 'Toyo Gakuen University'),
(34298, 28591, 'ja', 'name', 'ę±ę“‹å­¦åœ’å¤§å­¦'),
(34299, 28592, 'en', 'name', 'Ciesla Foundation'),
(34300, 28593, 'en', 'name', 'Ontario Confederation of University Faculty Associations'),
(34301, 28594, 'en', 'name', 'Tamansiswa Palembang University'),
(34302, 28594, 'id', 'name', 'Universitas Tamansiswa Palembang'),
(34303, 28595, 'en', 'name', 'Dagestan State Institute of National Economy'),
(34304, 28595, 'ru', 'name', 'Дагестанский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нароГного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(34305, 28596, 'en', 'name', 'Kennedy–King College'),
(34306, 28597, 'en', 'name', 'University of Science and Culture'),
(34307, 28597, 'fa', 'name', 'دانؓگاه علم و فرهنگ'),
(34308, 28598, 'id', 'name', 'Universitas Atma Jaya Makassar'),
(34309, 28599, 'cs', 'name', 'Výzkumný ústav anorganické chemie, a.s.'),
(34310, 28599, 'en', 'name', 'Research Institute of Inorganic Chemistry'),
(34311, 28600, 'en', 'name', 'Shubun University'),
(34312, 28600, 'ja', 'name', '修文大学'),
(34313, 28601, 'en', 'name', 'Sardarkrushinagar Dantiwada Agricultural University'),
(34314, 28601, 'gu', 'name', 'ąŖ•ą«ƒąŖ·ąŖæ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, ąŖøąŖ°ąŖ¦ąŖ¾ąŖ°ąŖ•ą«ƒąŖ·ąŖæąŖØąŖ—ąŖ° દાંતીવાઔા'),
(34315, 28602, 'en', 'name', 'Gyan Vihar University'),
(34316, 28603, 'en', 'name', 'Institute of International Trade and Law'),
(34317, 28603, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾Š¹ торговли Šø права'),
(34318, 28604, 'en', 'name', 'Kwangshin University'),
(34319, 28605, 'en', 'name', 'Free Library of Philadelphia'),
(34320, 28605, 'es', 'name', 'Biblioteca PĆŗblica de Filadelfia'),
(34321, 28606, 'en', 'name', 'Keene Public Library'),
(34322, 28607, 'no_lang_code', 'name', 'Sergiyev Posad Humanitarian Institute'),
(34323, 28607, 'ru', 'name', 'Дергиево-ПосаГский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(34324, 28608, 'ja', 'name', 'ę”ƒå±±å­¦é™¢å¤§å­¦'),
(34325, 28608, 'no_lang_code', 'name', 'Momoyama Gakuin University'),
(34326, 28609, 'en', 'name', 'Jagran Lakecity University'),
(34327, 28610, 'en', 'name', 'Sapporo International University'),
(34328, 28610, 'ja', 'name', 'ęœ­å¹Œå›½éš›å¤§å­¦'),
(34329, 28611, 'en', 'name', 'Garfield County Libraries'),
(34330, 28612, 'no_lang_code', 'name', 'NDCon (Czechia)'),
(34331, 28613, 'no_lang_code', 'name', 'OKsystem (Czechia)'),
(34332, 28614, 'en', 'name', 'Rissho University'),
(34333, 28614, 'ja', 'name', '立正大学'),
(34334, 28615, 'en', 'name', 'California State Railroad Museum'),
(34335, 28616, 'en', 'name', 'Reconstructionist Rabbinical College'),
(34336, 28617, 'no_lang_code', 'name', 'GIS-Geoindustry (Czechia)'),
(34337, 28618, 'no_lang_code', 'name', 'Medipo ZT (Czechia)'),
(34338, 28619, 'no_lang_code', 'name', 'Sysnet (Czechia)'),
(34339, 28620, 'de', 'name', 'Kalaidos Fachhochschule'),
(34340, 28620, 'en', 'name', 'Kalaidos University of Applied Sciences'),
(34341, 28621, 'en', 'name', 'Takasaki University of Commerce'),
(34342, 28621, 'ja', 'name', 'é«˜å“Žå•†ē§‘å¤§å­¦'),
(34343, 28622, 'en', 'name', 'Institute of Legal Economics'),
(34344, 28622, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ правовой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(34345, 28623, 'en', 'name', 'Tokyo University of Social Welfare'),
(34346, 28623, 'ja', 'name', 'ę±äŗ¬ē¦ē„‰å¤§å­¦'),
(34347, 28624, 'en', 'name', 'University of Sarjanawiyata Tamansiswa'),
(34348, 28624, 'id', 'name', 'Universitas Sarjanawiyata Tamansiswa'),
(34349, 28625, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„Ł†ŁˆŲ¹ŁŠŲ©'),
(34350, 28625, 'en', 'name', 'Higher Institute for Qualitative Studies'),
(34351, 28626, 'en', 'name', 'Czech Railways'),
(34352, 28627, 'en', 'name', 'Nevsky Institute of Management and Design'),
(34353, 28627, 'ru', 'name', 'ŠŠµŠ²ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø Гизайна'),
(34354, 28628, 'id', 'name', 'Universitas Muhammadiyah Riau'),
(34355, 28629, 'en', 'name', 'National Intelligence University'),
(34356, 28630, 'en', 'name', 'Hemchandracharya North Gujarat University'),
(34357, 28631, 'en', 'name', 'Nayanova University'),
(34358, 28631, 'ru', 'name', 'Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(34359, 28632, 'en', 'name', 'Muban Chombueng Rajabhat University'),
(34360, 28632, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø«ąø”ąø¹ą¹ˆąøšą¹‰ąø²ąø™ąøˆąø­ąø”ąøšąø¶ąø‡'),
(34361, 28633, 'no_lang_code', 'name', 'GF Machinery (Czechia)'),
(34362, 28634, 'en', 'name', 'Institute for Social and Environmental Transition-International'),
(34363, 28635, 'bn', 'name', 'ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(34364, 28635, 'en', 'name', 'Rajshahi University of Engineering & Technology, Rajshahi University of Engineering and Technology'),
(34365, 28636, 'id', 'name', 'Universitas 45 Mataram'),
(34366, 28637, 'en', 'name', 'Louisiana Coastal Protection and Restoration Authority'),
(34367, 28638, 'en', 'name', 'General Lew Wallace Study and Museum'),
(34368, 28639, 'en', 'name', 'Duxbury Free Library'),
(34369, 28640, 'en', 'name', 'Rajamangala University of Technology Isan');
INSERT INTO `ror_settings` VALUES
(34370, 28640, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø­ąøµąøŖąø²ąø™'),
(34371, 28641, 'no_lang_code', 'name', 'Doosan (Czechia)'),
(34372, 28642, 'en', 'name', 'National University of Civil Defense of Ukraine'),
(34373, 28642, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ гражГанской защиты Украины'),
(34374, 28642, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń†ŠøŠ²Ń–Š»ŃŒŠ½Š¾Š³Š¾ Š·Š°Ń…ŠøŃŃ‚Ńƒ України'),
(34375, 28643, 'en', 'name', 'Museum of Indian Arts and Culture'),
(34376, 28644, 'no_lang_code', 'name', 'GuideStar'),
(34377, 28645, 'ja', 'name', 'ę±äŗ¬å®¶ę”æå­¦é™¢å¤§å­¦'),
(34378, 28645, 'no_lang_code', 'name', 'Tokyo Kasei Gakuin University'),
(34379, 28646, 'ja', 'name', 'å¤§é˜Ŗå­¦é™¢å¤§å­¦'),
(34380, 28646, 'no_lang_code', 'name', 'Osaka Gakuin University'),
(34381, 28647, 'id', 'name', 'Universitas Teknologi Sulawesi'),
(34382, 28648, 'cs', 'name', 'NĆ”rodnĆ­ zemědělskĆ© muzeum'),
(34383, 28648, 'en', 'name', 'National Museum of Agriculture'),
(34384, 28649, 'en', 'name', 'Hebei Finance University'),
(34385, 28649, 'zh', 'name', 'ę²³åŒ—é‡‘čžå­¦é™¢'),
(34386, 28650, 'en', 'name', 'Woodlawn Museum Gardens & Park'),
(34387, 28651, 'en', 'name', 'Sacred Heart University'),
(34388, 28652, 'no_lang_code', 'name', 'Beznoska (Czechia)'),
(34389, 28653, 'en', 'name', 'Kyoto International University'),
(34390, 28653, 'ja', 'name', 'äŗ¬éƒ½ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«ćƒ¦ćƒ‹ćƒćƒ¼ć‚·ćƒ†ć‚£ćƒ¼'),
(34391, 28654, 'cs', 'name', 'Židovské muzeum v Praze'),
(34392, 28654, 'en', 'name', 'Jewish Museum in Prague'),
(34393, 28655, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų„ŁŠŁ…Ų§Ł†'),
(34394, 28655, 'en', 'name', 'Iman University'),
(34395, 28656, 'en', 'name', 'Czech Society for New Materials and Technologies'),
(34396, 28657, 'en', 'name', 'Hermann Grima House'),
(34397, 28658, 'en', 'name', 'Delaware Division of Historical and Cultural Affairs'),
(34398, 28659, 'en', 'name', 'Aichi Toho University'),
(34399, 28659, 'ja', 'name', 'ę„›ēŸ„ę±é‚¦å¤§å­¦'),
(34400, 28660, 'en', 'name', 'Latvian Christian Academy'),
(34401, 28660, 'lv', 'name', 'Latvijas Kristīgā akadēmija'),
(34402, 28661, 'en', 'name', 'Tamil Nadu Dr. J Jayalalitha Fisheries University'),
(34403, 28661, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®®ąÆ€ą®©ąÆą®µą®³ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(34404, 28662, 'en', 'name', 'Jilin University of Finance and Economics'),
(34405, 28662, 'zh', 'name', 'å‰ęž—č“¢ē»å¤§å­¦'),
(34406, 28663, 'no_lang_code', 'name', 'Anhanguera (Brazil)'),
(34407, 28664, 'id', 'name', 'Universitas Halmahera'),
(34408, 28665, 'en', 'name', 'National Law University and Judicial Academy'),
(34409, 28666, 'en', 'name', 'Oakland Public Library'),
(34410, 28667, 'en', 'name', 'Civil Aviation Technology College'),
(34411, 28667, 'fa', 'name', 'دانؓکده ŁŁ†Ų§ŁˆŲ±ŪŒ Ł‡ŁˆŲ§Ł¾ŪŒŁ…Ų§ŪŒŪŒ Ł‡ŁˆŲ§Ł¾ŪŒŁ…Ų§ŪŒŪŒ'),
(34412, 28668, 'en', 'name', 'Tajik National University'),
(34413, 28668, 'ru', 'name', 'ТаГжикский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34414, 28668, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии миллии Тоҷикистон'),
(34415, 28669, 'en', 'name', 'Dr. Ram Manohar Lohia National Law University'),
(34416, 28669, 'hi', 'name', 'ą¤”ą„‰ राम ą¤®ą¤Øą„‹ą¤¹ą¤° ą¤²ą„‹ą¤¹ą¤æą¤Æą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(34417, 28670, 'cs', 'name', 'VŔeobecnÔ UverovÔ Banka'),
(34418, 28671, 'en', 'name', 'Incheon Catholic University'),
(34419, 28671, 'ko', 'name', 'ģøģ²œź°€ķ†Øė¦­ėŒ€ķ•™źµ'),
(34420, 28672, 'en', 'name', 'Moscow State University of Medicine and Dentistry'),
(34421, 28672, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный меГико-стоматологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34422, 28673, 'en', 'name', 'Cherokee Heritage Center'),
(34423, 28674, 'en', 'name', 'Ford''s Theatre'),
(34424, 28675, 'en', 'name', 'Sichuan Fine Arts Institute'),
(34425, 28675, 'zh', 'name', 'å››å·ē¾ŽęœÆå­¦é™¢'),
(34426, 28676, 'en', 'name', 'DOBA Business School'),
(34427, 28676, 'sl', 'name', 'DOBA Fakulteta'),
(34428, 28677, 'en', 'name', 'Kemerovo State University of Culture and the Arts'),
(34429, 28677, 'ru', 'name', 'ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(34430, 28678, 'en', 'name', 'Osaka Kawasaki Rehabilitation University'),
(34431, 28678, 'ja', 'name', 'å¤§é˜Ŗę²³å“ŽćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å¤§å­¦'),
(34432, 28679, 'no_lang_code', 'name', 'Attl (Czechia)'),
(34433, 28680, 'en', 'name', 'Broadview University'),
(34434, 28681, 'id', 'name', 'Institut Teknologi dan Bisnis Kalbe'),
(34435, 28682, 'en', 'name', 'Willamette Heritage Center'),
(34436, 28683, 'no_lang_code', 'name', 'Zhezkazgan Baikonurov University'),
(34437, 28683, 'ru', 'name', 'Жезказганский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Šž.А. Š‘Š°Š¹ŠŗŠ¾Š½ŃƒŃ€Š¾Š²Š°'),
(34438, 28684, 'en', 'name', 'Museums of Old York'),
(34439, 28685, 'en', 'name', 'Shiraz University of Technology'),
(34440, 28685, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ ؓیراز'),
(34441, 28686, 'en', 'name', 'New England Quilt Museum'),
(34442, 28687, 'en', 'name', 'Heritage Preservation'),
(34443, 28688, 'id', 'name', 'Universitas Winaya Mukti'),
(34444, 28689, 'fa', 'name', 'دانؓگاه ؓیخ ŲØŁ‡Ų§ŪŒŪŒ'),
(34445, 28689, 'no_lang_code', 'name', 'Sheikh Bahaei University'),
(34446, 28690, 'en', 'name', 'Sapporo University'),
(34447, 28690, 'ja', 'name', '札幌大学'),
(34448, 28691, 'en', 'name', 'Oklahoma Library Association'),
(34449, 28692, 'en', 'name', 'Jeffco Public Schools'),
(34450, 28693, 'no_lang_code', 'name', 'Era-Maptec (Ireland)'),
(34451, 28694, 'en', 'name', 'Karol Lipiński Academy of Music in Wrocław'),
(34452, 28694, 'pl', 'name', 'Akademia Muzyczna im. Karola Lipińskiego we Wrocławiu'),
(34453, 28695, 'en', 'name', 'Frelinghuysen Morris House And Studio'),
(34454, 28696, 'en', 'name', 'National Fisheries Institute'),
(34455, 28697, 'en', 'name', 'Leonardo Da Vinci University'),
(34456, 28697, 'es', 'name', 'Universidad Privada Leonardo da Vinci'),
(34457, 28698, 'en', 'name', 'University of Manila'),
(34458, 28699, 'en', 'name', 'Reef Environmental Education Foundation'),
(34459, 28700, 'en', 'name', 'Center for Coastal Studies'),
(34460, 28701, 'en', 'name', 'Hoover Institution'),
(34461, 28702, 'en', 'name', 'Diplomatic Academy of the Russian Foreign Ministry'),
(34462, 28702, 'ru', 'name', 'Š”ŠøŠæŠ»Š¾Š¼Š°Ń‚ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠœŠ˜Š” России'),
(34463, 28703, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القدس Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(34464, 28703, 'en', 'name', 'Al-Quds Open University'),
(34465, 28704, 'no_lang_code', 'name', 'Eeip (Czechia)'),
(34466, 28705, 'no_lang_code', 'name', 'Magneton (Czechia)'),
(34467, 28706, 'en', 'name', 'Poznan University of Social Sciences'),
(34468, 28706, 'pl', 'name', 'Wyższa Szkoła Umiejętności Społecznych'),
(34469, 28707, 'en', 'name', 'Center for the Study of Community Colleges'),
(34470, 28708, 'en', 'name', 'Mahatma Gandhi International Hindi University'),
(34471, 28708, 'hi', 'name', 'ą¤®ą¤¹ą¤¾ą¤¤ą„ą¤®ą¤¾ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤…ą¤Øą„ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤¹ą¤æą¤Øą„ą¤¦ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(34472, 28708, 'no_lang_code', 'name', 'Mahatma Gandhi Antarrashtriya Hindi Vishwavidyalaya'),
(34473, 28709, 'en', 'name', 'Seoul Social Welfare Graduate University'),
(34474, 28709, 'ko', 'name', 'ģ„œģšøģ‚¬ķšŒė³µģ§€ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(34475, 28710, 'en', 'name', 'Council for Native Hawaiian Advancement'),
(34476, 28711, 'en', 'name', 'Shota Rustaveli Theatre and Film Georgia State University'),
(34477, 28711, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒØįƒįƒ—įƒ įƒ įƒ£įƒ”įƒ—įƒįƒ•įƒ”įƒšįƒ˜įƒ” įƒ—įƒ”įƒįƒ¢įƒ įƒ˜įƒ” įƒ“įƒ įƒ™įƒ˜įƒœįƒįƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(34478, 28712, 'en', 'name', 'Chaffey College'),
(34479, 28713, 'en', 'name', 'Siberian Academy of Finance and Banking'),
(34480, 28713, 'ru', 'name', 'Š”ŠøŠ±ŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ финансов Šø банковского Гела'),
(34481, 28714, 'en', 'name', 'Connecticut Historical Society'),
(34482, 28715, 'id', 'name', 'Universitas Wijayakusuma Purwokerto'),
(34483, 28716, 'en', 'name', 'Indiana Library Federation'),
(34484, 28717, 'en', 'name', 'Hispanic Society of America'),
(34485, 28718, 'en', 'name', 'Krirk University'),
(34486, 28718, 'th', 'name', 'ดหาวณทยาคัยเกรณก'),
(34487, 28719, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(34488, 28719, 'en', 'name', 'Gulf University for Science & Technology'),
(34489, 28720, 'en', 'name', 'Valley View University'),
(34490, 28721, 'en', 'name', 'Academy of Municipal Management'),
(34491, 28721, 'uk', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń Š¼ŃƒŠ½Ń–Ń†ŠøŠæŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń'),
(34492, 28722, 'en', 'name', 'Engineering Academy of the Czech Republic'),
(34493, 28723, 'no_lang_code', 'name', 'Ceske Lupkove Zavody (Czechia)'),
(34494, 28724, 'en', 'name', 'New York State Department of State'),
(34495, 28725, 'en', 'name', 'Hull Lifesaving Museum'),
(34496, 28726, 'en', 'name', 'Association of Environmental and Resource Economists'),
(34497, 28727, 'en', 'name', 'CTBC Business School'),
(34498, 28727, 'zh', 'name', 'äø­äæ”é‡‘čžē®”ē†å­øé™¢'),
(34499, 28728, 'en', 'name', 'Romblon State University'),
(34500, 28729, 'en', 'name', 'Johnson University'),
(34501, 28730, 'no_lang_code', 'name', 'Tribotec (Czechia)'),
(34502, 28731, 'en', 'name', 'Fresno County Public Library'),
(34503, 28732, 'en', 'name', 'Wisconsin Educational Communications Board'),
(34504, 28733, 'en', 'name', 'Library of Hattiesburg, Petal and Forrest County'),
(34505, 28734, 'no_lang_code', 'name', 'Reflex (Czechia)'),
(34506, 28735, 'en', 'name', 'Saint Petersburg Institute of Law named after Prince P. Oldenburg'),
(34507, 28735, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ права имени ŠŸŃ€ŠøŠ½Ń†Š° П.Š“.ŠžŠ»ŃŒŠ“ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠ¾Š³Š¾'),
(34508, 28736, 'en', 'name', 'Columbia State Community College'),
(34509, 28737, 'en', 'name', 'Altai State Pedagogical University'),
(34510, 28737, 'ru', 'name', 'ŠŠ»Ń‚Š°Š¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(34511, 28738, 'no_lang_code', 'name', 'Ateko (Czechia)'),
(34512, 28739, 'en', 'name', 'Biotechnology Research Institute'),
(34513, 28740, 'en', 'name', 'Xi''an Academy of Fine Arts'),
(34514, 28740, 'zh', 'name', 'č„æå®‰ē¾ŽęœÆå­¦é™¢'),
(34515, 28741, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£ŁˆŲ±ŁˆŲØŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(34516, 28741, 'en', 'name', 'European University College'),
(34517, 28742, 'en', 'name', 'Saint John''s University'),
(34518, 28742, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø‹ąø™ąø•ą¹Œąøˆąø­ąø«ą¹Œąø™'),
(34519, 28743, 'en', 'name', 'International Art Campus Prague'),
(34520, 28744, 'en', 'name', 'James River Association'),
(34521, 28745, 'ja', 'name', 'ć³ć‚ć“ęˆč¹Šć‚¹ćƒćƒ¼ćƒ„å¤§å­¦'),
(34522, 28745, 'no_lang_code', 'name', 'Biwako Seikei Sport College'),
(34523, 28746, 'en', 'name', 'West Kazakhstan Marat Ospanov State Medical University'),
(34524, 28746, 'kk', 'name', 'М.ŠžŃŠæŠ°Š½Š¾Š² атынГағы Батыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ мемлекеттік меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(34525, 28747, 'pl', 'name', 'Szkoła Wyższa im. Bogdana Jańskiego'),
(34526, 28748, 'en', 'name', 'Oklahoma State University Institute of Technology'),
(34527, 28749, 'en', 'name', 'Old Red Museum of Dallas County History and Culture'),
(34528, 28750, 'id', 'name', 'Universitas Yapis Papua'),
(34529, 28751, 'en', 'name', 'Reklamy Institute'),
(34530, 28751, 'uk', 'name', 'ŠšŠ°Ń„ŠµŠ“Ń€Š° веб Гизайна, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рекламы'),
(34531, 28752, 'en', 'name', 'Moscow State Academy of Choreography'),
(34532, 28752, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ хореографии'),
(34533, 28753, 'en', 'name', 'Pyeongtaek University'),
(34534, 28753, 'ko', 'name', 'ķ‰ķƒėŒ€ķ•™źµ'),
(34535, 28754, 'de', 'name', 'Hochschule Merseburg'),
(34536, 28754, 'en', 'name', 'Merseburg University of Applied Sciences'),
(34537, 28755, 'en', 'name', 'Advanced Institute of Industrial Technology'),
(34538, 28755, 'ja', 'name', 'ē”£ę„­ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(34539, 28756, 'en', 'name', 'Voronezh Institute of High Technologies'),
(34540, 28756, 'ru', 'name', 'Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ высоких технологий'),
(34541, 28757, 'en', 'name', 'East African University'),
(34542, 28758, 'en', 'name', 'Sanya University'),
(34543, 28758, 'zh', 'name', 'äø‰äŗšå­¦é™¢'),
(34544, 28759, 'en', 'name', 'Arkhangelsk State Technical University'),
(34545, 28759, 'ru', 'name', 'ŠŃ€Ń…Š°Š½Š³ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34546, 28760, 'no_lang_code', 'name', 'Monet (Czechia)'),
(34547, 28761, 'en', 'name', 'Mangalam Research Center for Buddhist Languages'),
(34548, 28762, 'es', 'name', 'Asociación de Empresarios Textiles de la Comunidad Valenciana'),
(34549, 28763, 'en', 'name', 'American University of Afghanistan'),
(34550, 28763, 'fa', 'name', 'دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ افغانستان'),
(34551, 28764, 'en', 'name', 'Amicable Knowledge Solution University'),
(34552, 28764, 'hi', 'name', 'ą¤ ą¤•ą„‡ ą¤ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(34553, 28765, 'en', 'name', 'Research Institute of Geodesy, Topography and Cartography'),
(34554, 28766, 'en', 'name', 'Pontifical Faculty of Theology in Warsaw'),
(34555, 28766, 'pl', 'name', 'Papieski Wydział Teologiczny w Warszawie'),
(34556, 28767, 'en', 'name', 'Rare Book School'),
(34557, 28768, 'en', 'name', 'International Banking Institute'),
(34558, 28768, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ банковский ŠøŠ½ŃŃ‚ŠøŃ‚Ńƒ'),
(34559, 28769, 'en', 'name', 'Georgetown County Library'),
(34560, 28770, 'en', 'name', 'Malaysia University of Science and Technology'),
(34561, 28770, 'ms', 'name', 'Universiti Sains dan Teknologi Malaysia'),
(34562, 28771, 'en', 'name', 'Institute of Aviation Medicine'),
(34563, 28772, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(34564, 28772, 'en', 'name', 'Global University'),
(34565, 28773, 'ja', 'name', 'ęµœę¾å­¦é™¢å¤§å­¦'),
(34566, 28773, 'no_lang_code', 'name', 'Hamamatsu Gakuin University'),
(34567, 28774, 'en', 'name', 'Malama Learning Center'),
(34568, 28775, 'en', 'name', 'St. Martinus University'),
(34569, 28776, 'en', 'name', 'Textile Institute of Pakistan'),
(34570, 28776, 'ur', 'name', 'پاکستان کی Ł¹ŪŒŚ©Ų³Ł¹Ų§Ų¦Ł„ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(34571, 28777, 'ar', 'name', 'الجامعة Ų§Ł„Ł„ŁŠŲØŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ©'),
(34572, 28777, 'en', 'name', 'Libyan International Medical University'),
(34573, 28778, 'en', 'name', 'King Mongkut''s University of Technology North Bangkok'),
(34574, 28778, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ąøžąø£ąø°ąø™ąø„ąø£ą¹€ąø«ąø™ąø·ąø­'),
(34575, 28779, 'en', 'name', 'Osaka University of Economics'),
(34576, 28779, 'ja', 'name', '大阪経済大学'),
(34577, 28780, 'en', 'name', 'Medieval Academy of America'),
(34578, 28781, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł…Ł„ŁƒŲ©'),
(34579, 28781, 'en', 'name', 'Kingdom University'),
(34580, 28782, 'en', 'name', 'Juilliard School'),
(34581, 28782, 'es', 'name', 'Escuela Juilliard'),
(34582, 28783, 'no_lang_code', 'name', 'Ammann (Czechia)'),
(34583, 28784, 'id', 'name', 'Universitas Paramadina'),
(34584, 28785, 'en', 'name', 'Rostov State University of Civil Engineering'),
(34585, 28785, 'ru', 'name', 'Ростовский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š”Ń‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Университет'),
(34586, 28786, 'en', 'name', 'Perkins School for Blind'),
(34587, 28787, 'en', 'name', 'Art and Design University of Cluj-Napoca'),
(34588, 28787, 'hu', 'name', 'Művészeti és Design Egyetem'),
(34589, 28787, 'ro', 'name', 'Universitatea de Artă și Design'),
(34590, 28788, 'en', 'name', 'International Law Institute'),
(34591, 28788, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(34592, 28789, 'en', 'name', 'Primorskaya State Academy of Agriculture'),
(34593, 28789, 'ru', 'name', 'ŠŸŃ€ŠøŠ¼Š¾Ń€ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š”ŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(34594, 28790, 'en', 'name', 'Smolensk State University'),
(34595, 28790, 'ru', 'name', 'Дмоленский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34596, 28791, 'en', 'name', 'IMADEC University'),
(34597, 28792, 'en', 'name', 'North Sulawesi University of Technology'),
(34598, 28792, 'id', 'name', 'Universitas Teknologi Sulawesi Utara'),
(34599, 28793, 'en', 'name', 'European University'),
(34600, 28793, 'mk', 'name', 'Европски ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚'),
(34601, 28794, 'en', 'name', 'William F. Laman Public Library System'),
(34602, 28795, 'en', 'name', 'Dr. Georges-L.-Dumont University Hospital Centre'),
(34603, 28795, 'fr', 'name', 'Centre Hospitalier Universitaire Dr-Georges-L.-Dumont'),
(34604, 28796, 'en', 'name', 'Niigata Sangyo University'),
(34605, 28796, 'ja', 'name', 'ę–°ę½Ÿē”£ę„­å¤§å­¦'),
(34606, 28797, 'en', 'name', 'Al Madinah International University'),
(34607, 28797, 'ms', 'name', 'Universiti Antarabangsa Al-Madinah'),
(34608, 28798, 'en', 'name', 'Museum of Contemporary Art San Diego'),
(34609, 28799, 'id', 'name', 'Universitas Wahid Hasyim'),
(34610, 28800, 'en', 'name', 'Tomsk Institute of Economics and Law'),
(34611, 28800, 'ru', 'name', 'Томский ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(34612, 28801, 'en', 'name', 'Nanjing Sport Institute'),
(34613, 28801, 'zh', 'name', 'å—äŗ¬ä½“č‚²å­¦é™¢'),
(34614, 28802, 'no_lang_code', 'name', 'Chaopraya University'),
(34615, 28802, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøˆą¹‰ąø²ąøžąø£ąø°ąø¢ąø²'),
(34616, 28803, 'en', 'name', 'Okinawa Prefectural College of Nursing'),
(34617, 28803, 'ja', 'name', 'ę²–ēø„ēœŒē«‹ēœ‹č­·å¤§å­¦'),
(34618, 28804, 'en', 'name', 'Madan Mohan Malaviya University of Technology'),
(34619, 28804, 'hi', 'name', 'मदन ą¤®ą„‹ą¤¹ą¤Ø ą¤®ą¤¾ą¤²ą¤µą„€ą¤Æ ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą„€ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤—ą„‹ą¤°ą¤–ą¤Ŗą„ą¤°'),
(34620, 28805, 'no_lang_code', 'name', 'Brookside Museum'),
(34621, 28806, 'en', 'name', 'Quy Nhon University'),
(34622, 28806, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c Quy NhĘ”n'),
(34623, 28807, 'en', 'name', 'Children''s Museum of Manhattan'),
(34624, 28808, 'en', 'name', 'South Atlantic Fishery Management Council'),
(34625, 28809, 'en', 'name', 'Institute of World Economy and Information'),
(34626, 28809, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŃ€Š¾Š²Š¾Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø информатизации'),
(34627, 28810, 'en', 'name', 'New Jersey Sea Grant Consortium'),
(34628, 28811, 'en', 'name', 'Association for Core Texts and Courses'),
(34629, 28812, 'en', 'name', 'Asian University'),
(34630, 28812, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø­ą¹€ąøŠąøµąø¢ąø™'),
(34631, 28813, 'no_lang_code', 'name', 'Kypha (United States)'),
(34632, 28814, 'bn', 'name', 'ą¦Øą§‡ą¦¤ą¦¾ą¦œą¦æ সুভাষ ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(34633, 28814, 'en', 'name', 'Netaji Subhas Open University'),
(34634, 28815, 'bn', 'name', 'ą¦®ą¦Ÿą§ą¦°ą§‹ą¦Ŗą¦²ą¦æą¦Ÿą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(34635, 28815, 'en', 'name', 'Metropolitan University'),
(34636, 28816, 'en', 'name', 'Missoula Public Library'),
(34637, 28817, 'en', 'name', 'Pfleger Institute of Environmental Research'),
(34638, 28818, 'cs', 'name', 'Výzkumný ústav maltovin Praha'),
(34639, 28818, 'no_lang_code', 'name', 'Research Institute of Binding Materials Prague (Czechia)'),
(34640, 28819, 'cs', 'name', 'ČeskĆ” Společnost pro PolitickĆ© Vědy'),
(34641, 28820, 'en', 'name', 'Tyumen Law Institute of the Russian Interior Ministry'),
(34642, 28820, 'ru', 'name', 'Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š” России'),
(34643, 28821, 'en', 'name', 'National University of Music Bucharest'),
(34644, 28821, 'ro', 'name', 'Universitatea Națională de Muzică București'),
(34645, 28822, 'en', 'name', 'University of Economy in Bydgoszcz'),
(34646, 28822, 'pl', 'name', 'Wyższa Szkoła Gospodarki w Bydgoszczy'),
(34647, 28823, 'en', 'name', 'JECRC University'),
(34648, 28824, 'id', 'name', 'Universitas Nusantara Manado'),
(34649, 28825, 'no_lang_code', 'name', 'Jihlavan (Czechia)'),
(34650, 28826, 'en', 'name', 'Arkansas Museum of Discovery'),
(34651, 28827, 'no_lang_code', 'name', 'Valaya Alongkorn Rajabhat University'),
(34652, 28827, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø§ą¹„ąø„ąø¢ąø­ąø„ąø‡ąøąø£ąø“ą¹Œ ą¹ƒąø™ąøžąø£ąø°ąøšąø£ąø”ąø£ąø²ąøŠąø¹ąø›ąø–ąø±ąø”ąø ą¹Œ'),
(34653, 28828, 'en', 'name', 'Moscow Humanitarian Economic Institute'),
(34654, 28828, 'ru', 'name', 'Московский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(34655, 28829, 'en', 'name', 'Puntland State University'),
(34656, 28829, 'so', 'name', 'Jaamacadda Puntland'),
(34657, 28830, 'en', 'name', 'Wenham Museum'),
(34658, 28831, 'id', 'name', 'Universitas Surapati'),
(34659, 28832, 'en', 'name', 'Maulana Mazharul Haque Arabic and Persian University'),
(34660, 28832, 'hi', 'name', 'ą¤®ą„Œą¤²ą¤¾ą¤Øą¤¾ ą¤®ą¤œą¤¹ą¤°ą„‚ą¤² हक ą¤…ą¤°ą¤¬ą„€ व ą¤«ą¤¾ą¤°ą¤øą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(34661, 28833, 'en', 'name', 'Kanda University of International Studies'),
(34662, 28833, 'ja', 'name', 'ē„žē”°å¤–čŖžå¤§å­¦'),
(34663, 28834, 'no_lang_code', 'name', 'Kovohutě Rokycany (Czechia)'),
(34664, 28835, 'en', 'name', 'Ural Institute of Business'),
(34665, 28835, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(34666, 28836, 'en', 'name', 'Rockland Memorial Library'),
(34667, 28837, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦°ą§ą¦­ą¦¾ą¦øą¦æą¦Ÿą¦æ অব ইনফরমেশন ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą¦ą¦Øą§ą¦” ą¦øą¦¾ą¦‡ą¦Øą§ą¦øą§‡ą¦ø'),
(34668, 28837, 'en', 'name', 'University of Information Technology and Sciences'),
(34669, 28838, 'en', 'name', 'Maryland State Archives'),
(34670, 28839, 'no_lang_code', 'name', 'Lander Institute'),
(34671, 28840, 'no_lang_code', 'name', 'Imos Brno (Czechia)'),
(34672, 28841, 'en', 'name', 'William Peace University'),
(34673, 28842, 'be', 'name', 'Віцебскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń П. М. ŠœŠ°ŃˆŃŃ€Š°Š²Š°'),
(34674, 28842, 'en', 'name', 'Vitebsk State University named after P.M. Masherov'),
(34675, 28842, 'ru', 'name', 'Витебский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П. М. ŠœŠ°ŃˆŠµŃ€Š¾Š²Š°'),
(34676, 28843, 'no_lang_code', 'name', 'Centro Escolar University'),
(34677, 28843, 'tl', 'name', 'Pamantasang Centro Escolar'),
(34678, 28844, 'en', 'name', 'Godfrey Okoye University'),
(34679, 28845, 'en', 'name', 'Hannan University'),
(34680, 28845, 'ja', 'name', 'é˜Ŗå—å¤§å­¦'),
(34681, 28846, 'en', 'name', 'Olivet University'),
(34682, 28847, 'en', 'name', 'Meenakshi Academy of Higher Education and Research'),
(34683, 28848, 'en', 'name', 'Institute of the Rockies'),
(34684, 28849, 'en', 'name', 'Baltic Institute of Ecology, Politics and Law'),
(34685, 28849, 'ru', 'name', 'Балтийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø, политики Šø права'),
(34686, 28850, 'en', 'name', 'Kumamoto Gakuen University'),
(34687, 28850, 'ja', 'name', 'ē†Šęœ¬å­¦åœ’å¤§å­¦'),
(34688, 28851, 'no_lang_code', 'name', 'Azin (Czechia)'),
(34689, 28852, 'en', 'name', 'Graduate School of Government and European Studies'),
(34690, 28853, 'en', 'name', 'University of Health Science'),
(34691, 28853, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžœįž·įž‘įŸ’įž™įž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšįžŸįž»įžįž¶įž—įž·įž”įž¶įž›'),
(34692, 28854, 'bn', 'name', 'ą¦¬ą¦æą¦§ą¦¾ą¦Øą¦šą¦Øą§ą¦¦ą§ą¦° ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(34693, 28854, 'hi', 'name', 'बिधान ą¤šą¤Øą„ą¤¦ą„ą¤° ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(34694, 28854, 'no_lang_code', 'name', 'Bidhan Chandra Krishi Viswavidyalaya'),
(34695, 28855, 'en', 'name', 'Mohammad Ali Jauhar University'),
(34696, 28855, 'hi', 'name', 'ą¤®ą„‹ą¤¹ą¤®ą„ą¤®ą¤¦ ą¤…ą¤²ą„€ ą¤œą„Œą¤¹ą¤° ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(34697, 28856, 'cs', 'name', 'Výzkumný Ćŗstav pivovarský a sladařský'),
(34698, 28856, 'no_lang_code', 'name', 'Research Institute of Brewing and Malting (Czechia)'),
(34699, 28857, 'en', 'name', 'Ottawa University'),
(34700, 28858, 'en', 'name', 'Ohio History Connection'),
(34701, 28859, 'en', 'name', 'Khadim Ali Shah Bukhari Institute of Technology'),
(34702, 28859, 'sd', 'name', 'Ų®Ų§ŲÆŁ… Ų¹Ł„ŁŠ ؓاه بخاري Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف ŲŖŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ'),
(34703, 28860, 'be', 'name', 'ŠœŠ°Š·Ń‹Ń€ŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ пеГагагічны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ‹Ń‚ŃŃ‚ Ń–Š¼Ń І.П.ŠØŠ°Š¼ŃŠŗŃ–Š½Š°'),
(34704, 28860, 'en', 'name', 'Mozyr State Pedagogical University named after I.P.Shamyakin'),
(34705, 28861, 'en', 'name', 'Nishinippon Institute of Technology'),
(34706, 28861, 'ja', 'name', 'č„æę—„ęœ¬å·„ę„­å¤§å­¦'),
(34707, 28862, 'en', 'name', 'Korean Council for University Education'),
(34708, 28862, 'ko', 'name', 'ķ•œźµ­ėŒ€ķ•™źµģœ”ķ˜‘ģ˜ķšŒ'),
(34709, 28863, 'en', 'name', 'Newport Beach Public Library'),
(34710, 28864, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų·ŁŁŠŁ„Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(34711, 28864, 'en', 'name', 'Tafila Technical University'),
(34712, 28865, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁŲ§Ų”Ų§ŲŖ'),
(34713, 28865, 'no_lang_code', 'name', 'Al-KafaĆ t University'),
(34714, 28866, 'en', 'name', 'Russian State University of Tourism and Service'),
(34715, 28866, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń‚ŃƒŃ€ŠøŠ·Š¼Š° Šø сервиса'),
(34716, 28867, 'id', 'name', 'Universitas Sisingamangaraja XII Tapanuli'),
(34717, 28868, 'en', 'name', 'Friends of Peralta Hacienda Historical Park'),
(34718, 28869, 'en', 'name', 'Al Asyariah Mandar University'),
(34719, 28869, 'id', 'name', 'Universitas Al Asyariah Mandar'),
(34720, 28870, 'no_lang_code', 'name', 'Rcd Radiokomunikace (Czechia)'),
(34721, 28871, 'ja', 'name', 'å¤§ę‰‹å‰å¤§å­¦'),
(34722, 28871, 'no_lang_code', 'name', 'Otemae University'),
(34723, 28872, 'en', 'name', 'Qurtuba University of Science and Information Technology'),
(34724, 28872, 'ur', 'name', 'قرطبہ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(34725, 28873, 'en', 'name', 'Seisa University'),
(34726, 28873, 'ja', 'name', 'ę˜Ÿę§Žå¤§å­¦'),
(34727, 28874, 'en', 'name', 'Whale Museum'),
(34728, 28875, 'en', 'name', 'Shree Guru Gobind Singh Tricentenary University'),
(34729, 28876, 'en', 'name', 'Saint Petersburg State Conservatory named after N.A. Rimsky-Korsakov'),
(34730, 28876, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ имени Š. А. Римского-ŠšŠ¾Ń€ŃŠ°ŠŗŠ¾Š²Š°'),
(34731, 28877, 'en', 'name', 'Society for Historians of the Early American Republic'),
(34732, 28878, 'en', 'name', 'Atomi University'),
(34733, 28878, 'ja', 'name', 'č·”č¦‹å­¦åœ’å„³å­å¤§å­¦'),
(34734, 28879, 'en', 'name', 'National Estuarine Research Reserve Association'),
(34735, 28879, 'es', 'name', 'Sistema Nacional de Reservas de Investigación Estuarina'),
(34736, 28880, 'en', 'name', 'McLean County Museum of History'),
(34737, 28881, 'en', 'name', 'Bukidnon State University'),
(34738, 28882, 'en', 'name', 'Institute of Marketing and Social Information Technology'),
(34739, 28882, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ маркетинга Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-информационных технологий'),
(34740, 28883, 'en', 'name', 'Dr. Shakuntala Misra National Rehabilitation University'),
(34741, 28883, 'hi', 'name', 'ą¤”ą„‰ ą¤¶ą¤•ą„ą¤‚ą¤¤ą¤²ą¤¾ ą¤®ą¤æą¤¶ą„ą¤°ą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤Øą¤°ą„ą¤µą¤¾ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(34742, 28884, 'no_lang_code', 'name', 'Hagemann (Czechia)'),
(34743, 28885, 'en', 'name', 'Schechter Institute of Jewish Studies'),
(34744, 28885, 'he', 'name', 'מכון ×©×›×˜×Ø למדעי היהדות'),
(34745, 28886, 'en', 'name', 'University of Shimane'),
(34746, 28886, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹å¤§å­¦'),
(34747, 28887, 'en', 'name', 'Musamus Merauke University'),
(34748, 28887, 'id', 'name', 'Universitas Musamus Merauke'),
(34749, 28888, 'en', 'name', 'Guru Ravidas Ayurved University'),
(34750, 28888, 'pa', 'name', 'ਗੁਰੂ ਰਵੀਦਾਸ ਆਯੂਰਵੇਦ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(34751, 28889, 'en', 'name', 'Youngnam Foreign Language College'),
(34752, 28889, 'ko', 'name', 'ģ˜ė‚Ø 외국얓 ėŒ€ķ•™'),
(34753, 28890, 'en', 'name', 'Historical Society of Washington'),
(34754, 28891, 'en', 'name', 'Latah County Historical Society'),
(34755, 28892, 'en', 'name', 'Moscow State Regional Institute of Humanities'),
(34756, 28893, 'en', 'name', 'Georgian Aviation University'),
(34757, 28893, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒįƒ•įƒ˜įƒįƒŖįƒ˜įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(34758, 28894, 'en', 'name', 'Kerala University of Health Sciences'),
(34759, 28894, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“†ą“°ąµ‹ą“—ąµą“Æ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(34760, 28895, 'en', 'name', 'Minobusan University'),
(34761, 28895, 'ja', 'name', '身延山大学'),
(34762, 28896, 'en', 'name', 'Angeles University Foundation'),
(34763, 28896, 'tl', 'name', 'Pundasyong Pamantasang Angeles'),
(34764, 28897, 'en', 'name', 'Des Moines Art Center'),
(34765, 28898, 'cs', 'name', 'RegionƔlnƭ muzeum v Teplicƭch'),
(34766, 28898, 'en', 'name', 'Regional Museum in Teplice'),
(34767, 28899, 'en', 'name', 'Connecticut State Library'),
(34768, 28900, 'en', 'name', 'Kyoto Notre Dame University'),
(34769, 28900, 'ja', 'name', 'äŗ¬éƒ½ćƒŽćƒ¼ćƒˆćƒ«ćƒ€ćƒ å„³å­å¤§å­¦'),
(34770, 28901, 'no_lang_code', 'name', 'VVV Most (Czechia)'),
(34771, 28902, 'en', 'name', 'Junagadh Agricultural University'),
(34772, 28902, 'gu', 'name', 'ąŖ•ą«ƒąŖ·ąŖæ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, ąŖœą«‚ąŖØąŖ¾ąŖ—ąŖ¢'),
(34773, 28903, 'en', 'name', 'Kamsky Institute'),
(34774, 28904, 'en', 'name', 'Perry Institute for Marine Science'),
(34775, 28905, 'en', 'name', 'Kansas Oil Museum'),
(34776, 28906, 'en', 'name', 'University of Southern Mindanao'),
(34777, 28906, 'tl', 'name', 'Unibersidad ng Katimugang Mindanao'),
(34778, 28907, 'no_lang_code', 'name', 'Level (Czechia)'),
(34779, 28908, 'en', 'name', 'Peabody Essex Museum'),
(34780, 28909, 'en', 'name', 'St. Joseph University In Tanzania'),
(34781, 28909, 'sw', 'name', 'Chuo Kikuu cha Mtakatifu Joseph Tanzania'),
(34782, 28910, 'en', 'name', 'Leeds Jane Culbreth Library'),
(34783, 28911, 'ar', 'name', 'الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© الخاصة'),
(34784, 28911, 'en', 'name', 'Al Wataniya Private University'),
(34785, 28912, 'en', 'name', 'Notre Dame University'),
(34786, 28912, 'tl', 'name', 'Pamantasang Notre Dame'),
(34787, 28913, 'en', 'name', 'Center for Strategic and International Studies'),
(34788, 28914, 'cs', 'name', 'StĆ”tnĆ­ Ústav pro Kontrolu LĆ©Äiv'),
(34789, 28914, 'en', 'name', 'State Institute for Drug Control'),
(34790, 28915, 'en', 'name', 'El Paso Museum of History'),
(34791, 28916, 'en', 'name', 'Kamskij State Institute of Physical Culture'),
(34792, 28916, 'ru', 'name', 'Камский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(34793, 28917, 'no_lang_code', 'name', 'Hakel (Czechia)'),
(34794, 28918, 'no_lang_code', 'name', 'Tech-X Corporation (United States)'),
(34795, 28919, 'id', 'name', 'Universitas Sariputra Indonesia Tomohon'),
(34796, 28920, 'id', 'name', 'Universitas Sahid Surakarta'),
(34797, 28921, 'en', 'name', 'Association for Slavic East European and Eurasian Studies'),
(34798, 28922, 'en', 'name', 'Sher-e-Kashmir University of Agricultural Sciences and Technology of Jammu'),
(34799, 28923, 'bn', 'name', 'মিলেনিয়াম ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(34800, 28923, 'en', 'name', 'The Millennium University'),
(34801, 28924, 'en', 'name', 'Central Rappahannock Regional Library'),
(34802, 28925, 'en', 'name', 'Osaka Shoin Women''s University'),
(34803, 28925, 'ja', 'name', 'å¤§é˜ŖęØŸč”­å„³å­å¤§å­¦'),
(34804, 28926, 'en', 'name', 'Calvin Coolidge Presidential Foundation'),
(34805, 28927, 'no_lang_code', 'name', 'Micronesia Conservation Trust'),
(34806, 28928, 'ja', 'name', '筑波学院大学'),
(34807, 28928, 'no_lang_code', 'name', 'Tsukuba Gakuin University'),
(34808, 28929, 'en', 'name', 'Bunsei University of Art'),
(34809, 28929, 'ja', 'name', 'ę–‡ę˜ŸčŠøč”“å¤§å­ø'),
(34810, 28930, 'en', 'name', 'Charlotte-Mecklenburg Historic Landmarks Commission'),
(34811, 28931, 'en', 'name', 'University of South Carolina Sumter'),
(34812, 28932, 'en', 'name', 'Kyoto Saga University of Arts'),
(34813, 28932, 'ja', 'name', 'äŗ¬éƒ½åµÆå³ØčŠøč”“å¤§å­¦'),
(34814, 28933, 'id', 'name', 'Universitas Azzahra'),
(34815, 28934, 'en', 'name', 'Institute of Information Technologies, Economy and Management'),
(34816, 28934, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š˜ŠŠ¤ŠžŠ ŠœŠŠ¦Š˜ŠžŠŠŠ«Š„ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š™, Š­ŠšŠžŠŠžŠœŠ˜ŠšŠ˜ И ŠœŠ•ŠŠ•Š”Š–ŠœŠ•ŠŠ¢Š'),
(34817, 28935, 'en', 'name', 'Fairfax County Public Schools'),
(34818, 28936, 'en', 'name', 'Ryazan State Medical University named after Academician I.P. Pavlov'),
(34819, 28936, 'ru', 'name', 'Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика I.P. Павлов'),
(34820, 28937, 'no_lang_code', 'name', 'Dakel (Czechia)'),
(34821, 28938, 'en', 'name', 'Bayshore Center at Bivalve'),
(34822, 28939, 'no_lang_code', 'name', 'Czech Consult (Czechia)'),
(34823, 28940, 'en', 'name', 'Delaware Agricultural Museum'),
(34824, 28941, 'be', 'name', 'ŠœŃ–ĢŠ½ŃŠŗŃ– Š Š°Š“Ń‹Ń‘Ń‚ŃŃ…Š½Ń–ĢŃ‡Š½Ń‹ Кале́Гж'),
(34825, 28941, 'en', 'name', 'Minsk Radioengineering College'),
(34826, 28941, 'ru', 'name', 'Минский РаГиотехнический коллеГж'),
(34827, 28942, 'en', 'name', 'Kazan State Agrarian University'),
(34828, 28942, 'ru', 'name', 'Казанский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Аграрный Университет'),
(34829, 28943, 'en', 'name', 'Constitutional Rights Foundation Chicago'),
(34830, 28944, 'en', 'name', 'Tatar State University of Humanities and Education'),
(34831, 28944, 'ru', 'name', 'Татарский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34832, 28944, 'tt', 'name', 'Татар Гәүләт Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€-пеГагогика ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(34833, 28945, 'en', 'name', 'National Council for the Traditional Arts'),
(34834, 28946, 'en', 'name', 'Civil Defense Academy'),
(34835, 28946, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ гражГанской защиты МЧД России'),
(34836, 28947, 'en', 'name', 'Podillya State Agrarian and Engineering University'),
(34837, 28947, 'uk', 'name', 'ŠŸŠ¾Š“Ń–Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний аграрно-технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34838, 28948, 'en', 'name', 'Taipei City University of Science and Technology'),
(34839, 28948, 'zh', 'name', 'č‡ŗåŒ—åŸŽåø‚ē§‘ęŠ€å¤§å­ø'),
(34840, 28949, 'no_lang_code', 'name', 'MSV Elektronika (Czechia)'),
(34841, 28950, 'no_lang_code', 'name', 'Vinci (Czechia)'),
(34842, 28951, 'no_lang_code', 'name', 'Mesing (Czechia)'),
(34843, 28952, 'en', 'name', 'Loei Rajabhat University'),
(34844, 28952, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąø„ąø¢'),
(34845, 28953, 'id', 'name', 'Universitas Merdeka Ponorogo'),
(34846, 28954, 'ja', 'name', '聖学院大学'),
(34847, 28954, 'no_lang_code', 'name', 'Seigakuin University'),
(34848, 28955, 'id', 'name', 'Universitas Cokroaminoto Ngayogyakarta, Universitas Cokroaminoto Yogyakarta'),
(34849, 28956, 'en', 'name', 'Perbanas Institute'),
(34850, 28957, 'be', 'name', 'ŠŠŗŠ°Š“ŃŠ¼Ń–Ń ŠœŃ–Š½Ń–ŃŃ‚ŃŃ€ŃŃ‚Š²Š° ŃžŠ½ŃƒŃ‚Ń€Š°Š½Ń‹Ń… ŃŠæŃ€Š°Ńž Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(34851, 28957, 'en', 'name', 'Academy of the Interior Ministry of the Republic of Belarus'),
(34852, 28958, 'en', 'name', 'International Institute of Business Education'),
(34853, 28958, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнес-Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(34854, 28959, 'en', 'name', 'San Francisco Museum of Modern Art'),
(34855, 28960, 'no_lang_code', 'name', 'CultureWorks (United States)'),
(34856, 28961, 'en', 'name', 'Great Books Foundation'),
(34857, 28962, 'en', 'name', 'Siberian State Automobile and Highway University'),
(34858, 28962, 'ru', 'name', 'Š”ŠøŠ±ŠøŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾-Š“Š¾Ń€Š¾Š¶Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(34859, 28963, 'en', 'name', 'Tabarestan University'),
(34860, 28963, 'fa', 'name', 'مؤسسه Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ طبرستان'),
(34861, 28964, 'en', 'name', 'Baton Rouge Area Foundation'),
(34862, 28965, 'id', 'name', 'Universitas Putra Indonesia "YPTK"'),
(34863, 28966, 'en', 'name', 'University of New Hampshire at Manchester'),
(34864, 28967, 'en', 'name', 'Shizuoka University of Art and Culture'),
(34865, 28967, 'ja', 'name', 'é™å²”ę–‡åŒ–čŠøč”“å¤§å­¦'),
(34866, 28968, 'en', 'name', 'Latin American Youth Center'),
(34867, 28969, 'en', 'name', 'Leeward Community College'),
(34868, 28970, 'no_lang_code', 'name', 'Archimedia Workshop (United States)'),
(34869, 28971, 'ja', 'name', '清泉儳子大学'),
(34870, 28971, 'no_lang_code', 'name', 'Seisen University'),
(34871, 28972, 'en', 'name', 'Ulaanbaatar International University'),
(34872, 28972, 'mn', 'name', 'ŠžŠ»Š¾Š½ ŃƒŠ»ŃŃ‹Š½ ŃƒŠ»Š°Š°Š½Š±Š°Š°Ń‚Š°Ń€Ń‹Š½ ŠøŃ… ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(34873, 28973, 'de', 'name', 'Hochschule für Angewandte Wissenschaften Hof'),
(34874, 28973, 'en', 'name', 'Hof University of Applied Sciences'),
(34875, 28974, 'en', 'name', 'Holyoke Public Library'),
(34876, 28975, 'en', 'name', 'Saint Paul Public Library'),
(34877, 28976, 'en', 'name', 'Prague Botanical Garden'),
(34878, 28977, 'id', 'name', 'Universitas Tama Jagakarsa'),
(34879, 28978, 'id', 'name', 'Universitas Tidar'),
(34880, 28979, 'en', 'name', 'Georgian American University'),
(34881, 28979, 'ka', 'name', 'įƒ„įƒįƒ įƒ—įƒ£įƒš-įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ£įƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(34882, 28980, 'no_lang_code', 'name', 'Mrag Americas (United States)'),
(34883, 28981, 'en', 'name', 'Jharkhand Rai University'),
(34884, 28982, 'en', 'name', 'Musashino Art University'),
(34885, 28982, 'ja', 'name', 'ę­¦č”µé‡Žē¾Žč”“å¤§å­¦'),
(34886, 28983, 'en', 'name', 'Crimea State Medical University named after S. I. Georgievsky'),
(34887, 28983, 'ru', 'name', 'ŠšŃ€Ń‹ĢŠ¼ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøĢŠ½ŃŠŗŠøŠ¹ Университе́т и́мени Š”. И. Гео́ргиевского'),
(34888, 28983, 'uk', 'name', 'ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ім. Š”. І. Š“ŠµŠ¾Ń€Š³Ń–Ń”Š²ŃŃŒŠŗŠ¾Š³Š¾'),
(34889, 28984, 'en', 'name', 'Omsk State Medical University'),
(34890, 28984, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34891, 28985, 'cs', 'name', 'StřednĆ­ uměleckoprÅÆmyslovĆ” Å”kola sklÔřskĆ” ValaÅ”skĆ© MeziÅ™Ć­ÄĆ­'),
(34892, 28986, 'en', 'name', 'Leavenworth Public Library'),
(34893, 28987, 'en', 'name', 'Mirpur University of Science and Technology'),
(34894, 28987, 'ur', 'name', 'Ł…ŪŒŲ±Ł¾ŁˆŲ± ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŲ±Ų§Ū“ سائنس اور Ł¹ŪŒŚ©Ł†ŁˆŁ„ŁˆŲ¬ŪŒ'),
(34895, 28988, 'en', 'name', 'East Tennessee Historical Society'),
(34896, 28989, 'en', 'name', 'Episcopal Academy'),
(34897, 28990, 'en', 'name', 'Zaporizhzhya National University'),
(34898, 28990, 'ru', 'name', 'Запорожский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34899, 28990, 'uk', 'name', 'Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34900, 28991, 'en', 'name', 'University of the Sacred Heart'),
(34901, 28991, 'ja', 'name', 'č–åæƒå„³å­å¤§å­¦'),
(34902, 28992, 'no_lang_code', 'name', 'Evotec (United Kingdom)'),
(34903, 28993, 'en', 'name', 'Saint Louis Art Museum'),
(34904, 28994, 'en', 'name', 'Daekyeung University'),
(34905, 28994, 'ko', 'name', 'ėŒ€ź²½ėŒ€ķ•™źµ'),
(34906, 28995, 'en', 'name', 'University of Business in Wrocław'),
(34907, 28995, 'pl', 'name', 'Wyższa Szkoła Handlowa we Wrocławiu'),
(34908, 28996, 'ja', 'name', 'å°šēµ…å¤§å­¦'),
(34909, 28996, 'no_lang_code', 'name', 'Shokei College'),
(34910, 28997, 'en', 'name', 'Tarumanagara University'),
(34911, 28998, 'no_lang_code', 'name', 'Geomedia (Czechia)'),
(34912, 28999, 'id', 'name', 'Universitas Islam Kalimantan Muhammad Arsyad Al Banjary'),
(34913, 29000, 'no_lang_code', 'name', 'Vanung University'),
(34914, 29000, 'zh', 'name', 'č¬čƒ½ē§‘ęŠ€å¤§å­ø'),
(34915, 29001, 'en', 'name', 'University of Applied Science and Technology'),
(34916, 29001, 'fa', 'name', 'دانؓگاه Ų¬Ų§Ł…Ų¹ Ų¹Ł„Ł…ŪŒ-کاربردی جهاد ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(34917, 29002, 'en', 'name', 'University of Kota'),
(34918, 29002, 'hi', 'name', 'ą¤•ą„‹ą¤Ÿą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(34919, 29003, 'id', 'name', 'Universitas Putera Batam'),
(34920, 29004, 'en', 'name', 'Stockholm Academy of Dramatic Arts'),
(34921, 29004, 'sv', 'name', 'Stockholms dramatiska hƶgskola'),
(34922, 29005, 'no_lang_code', 'name', 'Eprona (Czechia)'),
(34923, 29006, 'en', 'name', 'Zhytomyr Polytechnic State University'),
(34924, 29006, 'uk', 'name', 'Š–ŠøŃ‚Š¾Š¼ŠøŃ€ŃŃŒŠŗŠøŠ¹ Гержавний технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34925, 29007, 'en', 'name', 'Hagley Museum and Library'),
(34926, 29008, 'en', 'name', 'Yamanashi Prefectural University'),
(34927, 29008, 'ja', 'name', 'å±±ę¢ØēœŒē«‹å¤§å­¦'),
(34928, 29009, 'en', 'name', 'American International University West Africa'),
(34929, 29010, 'en', 'name', 'Kaluga State University named after K.E.Tsiolkovski'),
(34930, 29010, 'ru', 'name', 'Калужский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. Š­. Циолковского'),
(34931, 29011, 'en', 'name', 'University "Eftimie Murgu" of Reşiţa'),
(34932, 29012, 'en', 'name', 'Izmail State University of Humanities'),
(34933, 29012, 'uk', 'name', 'Š†Š·Š¼Š°Ń—Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний Š³ŃƒŠ¼Š°Š½Ń–тарний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34934, 29013, 'en', 'name', 'Alabama Law Enforcement Agency'),
(34935, 29014, 'en', 'name', 'East-Siberian Institute of the Ministry of Internal Affairs of the Russian Federation'),
(34936, 29014, 'ru', 'name', 'восточно-сибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ министерства Š²Š½ŃƒŃ‚ренних Гел российской феГерации'),
(34937, 29015, 'en', 'name', 'Buryat State University'),
(34938, 29015, 'ru', 'name', 'Š‘ŃƒŃ€ŃŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34939, 29016, 'ko', 'name', 'ģ„±ź³µķšŒėŒ€ķ•™źµ'),
(34940, 29016, 'no_lang_code', 'name', 'Sungkonghoe University'),
(34941, 29017, 'en', 'name', 'Hebrew Immigrant Aid Society'),
(34942, 29018, 'en', 'name', 'Caroline County Public Library'),
(34943, 29019, 'en', 'name', 'Spartanburg County Public Libraries'),
(34944, 29020, 'en', 'name', 'Jin-ai University'),
(34945, 29020, 'ja', 'name', '仁愛大学'),
(34946, 29021, 'en', 'name', 'National Radio Theater'),
(34947, 29022, 'en', 'name', 'Fairfield County District Library'),
(34948, 29023, 'en', 'name', 'Massachusetts Energy and Environmental Affairs'),
(34949, 29024, 'en', 'name', 'Bronx County Historical Society'),
(34950, 29025, 'en', 'name', 'Coastal States Stewardship Foundation'),
(34951, 29026, 'id', 'name', 'Universitas Dr. Soetomo'),
(34952, 29027, 'no_lang_code', 'name', 'Nuova Quasco (Italy)'),
(34953, 29028, 'en', 'name', 'Sambalpur University'),
(34954, 29028, 'or', 'name', 'ą¬øą¬®ą­ą¬¬ą¬²ą¬Ŗą­ą¬° ą¬¬ą¬æą¬¶ą­ą¬¬ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(34955, 29029, 'en', 'name', 'Rhode Island PBS Foundation'),
(34956, 29030, 'ja', 'name', 'åå¤å±‹ēµŒęøˆå¤§å­¦'),
(34957, 29030, 'no_lang_code', 'name', 'Nagoya Keizai University'),
(34958, 29031, 'en', 'name', 'Sindh Agriculture University'),
(34959, 29031, 'sd', 'name', 'Ų³Ł†ŚŒ زرعي ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ Ł½Ł†ŚŠŁˆ ڄام'),
(34960, 29032, 'en', 'name', 'LASALLE College of the Arts'),
(34961, 29032, 'ms', 'name', 'Maktab Seni Lasalle'),
(34962, 29032, 'zh', 'name', 'ę‹‰čØå°”č‰ŗęœÆå­¦é™¢'),
(34963, 29033, 'id', 'name', 'Institut Pertanian Intan'),
(34964, 29034, 'en', 'name', 'University of Saint Anthony'),
(34965, 29034, 'tl', 'name', 'Unibersidad nin San Antonio'),
(34966, 29035, 'fr', 'name', 'AcadƩmie des Beaux-Arts'),
(34967, 29036, 'en', 'name', 'Kristal University'),
(34968, 29036, 'sq', 'name', 'Universiteti Kristal'),
(34969, 29037, 'en', 'name', 'Bikaner Technical University'),
(34970, 29037, 'hi', 'name', 'ą¤¬ą„€ą¤•ą¤¾ą¤Øą„‡ą¤° ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(34971, 29038, 'en', 'name', 'Glocal University'),
(34972, 29038, 'hi', 'name', 'ą¤—ą„ą¤²ą„‹ą¤•ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(34973, 29039, 'en', 'name', 'National Marine Life Center'),
(34974, 29040, 'hi', 'name', 'महाराजा गंगा सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą¤¾ą¤²ą¤Æ'),
(34975, 29040, 'no_lang_code', 'name', 'Maharaja Ganga Singh University'),
(34976, 29041, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…ŁŠŲ±ŁƒŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ā€Ž'),
(34977, 29041, 'en', 'name', 'American University of Science and Technology'),
(34978, 29041, 'fr', 'name', 'UniversitƩ amƩricaine de sciences et technologie'),
(34979, 29042, 'en', 'name', 'Kharkiv Petro Vasylenko National Technical University of Agriculture'),
(34980, 29042, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° имени ŠŸŠµŃ‚ра Василенко'),
(34981, 29042, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ім. ŠŸŠµŃ‚Ń€Š° Василенка'),
(34982, 29043, 'no_lang_code', 'name', 'HPH (Czechia)'),
(34983, 29044, 'id', 'name', 'Universitas Bangun Nusantara'),
(34984, 29045, 'en', 'name', 'Murmansk State Technical University'),
(34985, 29045, 'ru', 'name', 'ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(34986, 29046, 'en', 'name', 'Pilgrim Hall Museum'),
(34987, 29047, 'en', 'name', 'History Colorado Center'),
(34988, 29048, 'en', 'name', 'St. Theresa''s Medical University of Yerevan'),
(34989, 29049, 'en', 'name', 'Rajamangala University of Technology Lanna'),
(34990, 29049, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąø„ą¹‰ąø²ąø™ąø™ąø²'),
(34991, 29050, 'en', 'name', 'Library of Virginia'),
(34992, 29051, 'no_lang_code', 'name', 'Vision Consulting Automotive (Czechia)'),
(34993, 29052, 'en', 'name', 'Hsiuping University of Science and Technology'),
(34994, 29052, 'zh', 'name', 'äæ®å¹³ē§‘ęŠ€å¤§å­ø'),
(34995, 29053, 'en', 'name', 'Volga Business Institute'),
(34996, 29054, 'en', 'name', 'Kyoto Koka Women''s University'),
(34997, 29054, 'ja', 'name', 'äŗ¬éƒ½å…‰čÆå„³å­å¤§å­¦'),
(34998, 29055, 'id', 'name', 'Universitas Widya Kartika'),
(34999, 29056, 'be', 'name', 'ŠœŃ–Š½ŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ лінгвістычны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(35000, 29056, 'en', 'name', 'Minsk State Linguistic University'),
(35001, 29056, 'ru', 'name', 'Минский Š³Š¾ŃŃƒŠ“арственный лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35002, 29057, 'id', 'name', 'Institut Manajemen Koperasi Indonesia'),
(35003, 29058, 'en', 'name', 'Islamic Azad University, Shahinshahr Branch'),
(35004, 29058, 'fa', 'name', 'Ų“Ų§Ł‡ŁŠŁ† Ų“Ł‡Ų±ŲŒŲ“Ų§ŪŒŪŒŁ† ؓهر'),
(35005, 29059, 'en', 'name', 'Siberian State University Geosystems and Technology'),
(35006, 29059, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ геосистем Šø технологий'),
(35007, 29060, 'en', 'name', 'Communication University of Zhejiang'),
(35008, 29060, 'zh', 'name', 'ęµ™ę±Ÿä¼ åŖ’å­¦é™¢'),
(35009, 29061, 'en', 'name', 'Pacific Salmon Commission'),
(35010, 29062, 'no_lang_code', 'name', 'ČeskĆ” BioklimatologickĆ” Společnost (Czechia)'),
(35011, 29063, 'en', 'name', 'Gifu University of Medical Science'),
(35012, 29063, 'ja', 'name', 'å²é˜œåŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(35013, 29064, 'no_lang_code', 'name', 'Akustika Praha (Czechia)'),
(35014, 29065, 'en', 'name', 'Astrakhan State University'),
(35015, 29065, 'ru', 'name', 'Астраханский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35016, 29066, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ł…Ų§ŲÆŲØŲ§'),
(35017, 29066, 'en', 'name', 'American University of Madaba'),
(35018, 29067, 'en', 'name', 'Historical Society of Western Pennsylvania'),
(35019, 29068, 'en', 'name', 'Hagoromo International University'),
(35020, 29068, 'ja', 'name', 'ē¾½č”£å›½éš›å¤§å­¦'),
(35021, 29069, 'en', 'name', 'Jorvik Viking Centre'),
(35022, 29070, 'en', 'name', 'Delta State University'),
(35023, 29071, 'en', 'name', 'New Hampshire Department of Environmental Services'),
(35024, 29072, 'en', 'name', 'Dagestan State Technical University'),
(35025, 29072, 'ru', 'name', 'Дагестанский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35026, 29073, 'en', 'name', 'Carlsbad City Library'),
(35027, 29074, 'no_lang_code', 'name', 'ETC Consulting'),
(35028, 29075, 'no_lang_code', 'name', 'Advanced Technology Group (Czechia)'),
(35029, 29076, 'en', 'name', 'St. Louis Public Schools'),
(35030, 29077, 'en', 'name', 'New England Conservatory of Music'),
(35031, 29078, 'no_lang_code', 'name', 'Sako Brno (Czechia)'),
(35032, 29079, 'id', 'name', 'Universitas Antakusuma'),
(35033, 29080, 'en', 'name', 'Lanzhou University of Finance and Economics'),
(35034, 29080, 'zh', 'name', 'å…°å·žč“¢ē»å¤§å­¦'),
(35035, 29081, 'en', 'name', 'Children''s Hospital of Western Ontario'),
(35036, 29082, 'en', 'name', 'The Animas Museum'),
(35037, 29083, 'en', 'name', 'International Academy of Business and Management'),
(35038, 29083, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Бизнеса Šø Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(35039, 29084, 'en', 'name', 'Ishikawa Prefectural Nursing University'),
(35040, 29084, 'ja', 'name', 'ēŸ³å·ēœŒē«‹ēœ‹č­·å¤§å­¦'),
(35041, 29085, 'en', 'name', 'Kim Chaek University of Technology'),
(35042, 29085, 'ko', 'name', 'ź¹€ģ±…ź³µģ—…ģ¢…ķ•©ėŒ€ķ•™'),
(35043, 29086, 'en', 'name', 'Archaeological Institute of America'),
(35044, 29087, 'en', 'name', 'Miyazaki Prefectural Nursing University'),
(35045, 29087, 'ja', 'name', 'å®®å“ŽēœŒē«‹ēœ‹č­·å¤§å­¦'),
(35046, 29088, 'en', 'name', 'Honam University');
INSERT INTO `ror_settings` VALUES
(35047, 29088, 'ko', 'name', 'ķ˜øė‚ØėŒ€ķ•™źµ'),
(35048, 29089, 'en', 'name', 'Sochi Institute of Economics and Information Technology'),
(35049, 29089, 'ru', 'name', 'Дочинский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Экономики И Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Ń‹Ń… Технологий'),
(35050, 29090, 'fa', 'name', 'دانؓگاه کاردان'),
(35051, 29090, 'no_lang_code', 'name', 'Kardan University'),
(35052, 29090, 'ps', 'name', 'دکاردان Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(35053, 29091, 'en', 'name', 'Pathumthani University'),
(35054, 29091, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø›ąø—ąøøąø”ąø˜ąø²ąø™ąøµ'),
(35055, 29092, 'en', 'name', 'Allama Iqbal Open University'),
(35056, 29092, 'ur', 'name', 'علامہ اقبال Ų§ŁˆŁ¾Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(35057, 29093, 'en', 'name', 'Mississippi Alabama Sea Grant Consortium'),
(35058, 29094, 'en', 'name', 'Vardhaman Mahaveer Open University'),
(35059, 29094, 'hi', 'name', 'ą¤µą¤°ą„ą¤§ą¤®ą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤–ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(35060, 29095, 'en', 'name', 'Pacific Science Center'),
(35061, 29096, 'en', 'name', 'University of Minnesota Crookston'),
(35062, 29097, 'ja', 'name', 'ē¦ēŸ„å±±å…¬ē«‹å¤§å­¦'),
(35063, 29097, 'no_lang_code', 'name', 'University of Fukuchiyama'),
(35064, 29098, 'en', 'name', 'David Tvildiani Medical University'),
(35065, 29098, 'ka', 'name', 'įƒ“įƒįƒ•įƒ˜įƒ— įƒ¢įƒ•įƒ˜įƒšįƒ“įƒ˜įƒįƒœįƒ˜įƒ” ეახ. įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(35066, 29099, 'no_lang_code', 'name', 'Nova Photonics (United States)'),
(35067, 29100, 'en', 'name', 'Independent Filmmaker Project'),
(35068, 29101, 'ro', 'name', 'Universitatea de Stat din Tiraspol'),
(35069, 29102, 'de', 'name', 'Hochschule Rhein-Waal'),
(35070, 29102, 'en', 'name', 'Rhine-Waal University of Applied Sciences'),
(35071, 29103, 'en', 'name', 'Volzhsky University after V.N. Tatischev'),
(35072, 29103, 'ru', 'name', 'Волжский Университет им. Š’.Š. Татищева'),
(35073, 29104, 'en', 'name', 'Russian Academy of Advocacy and Notaries'),
(35074, 29104, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š°Š“Š²Š¾ŠŗŠ°Ń‚ŃƒŃ€Ń‹ Šø нотариата'),
(35075, 29105, 'en', 'name', 'Pushkin Leningrad State University'),
(35076, 29105, 'ru', 'name', 'ЛенинграГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š”. Пушкина'),
(35077, 29106, 'en', 'name', 'College of Social and Media Culture'),
(35078, 29106, 'pl', 'name', 'Wyższa Szkoła Kultury Społecznej i Medialnej w Toruniu'),
(35079, 29107, 'en', 'name', 'Japan College of Social Work'),
(35080, 29107, 'ja', 'name', 'ę—„ęœ¬ē¤¾ä¼šäŗ‹ę„­å¤§å­¦'),
(35081, 29108, 'en', 'name', 'Kemerovo Institute of Food Science and Technology'),
(35082, 29108, 'ru', 'name', 'ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пищевой ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(35083, 29109, 'en', 'name', 'University of Djibouti'),
(35084, 29109, 'fr', 'name', 'UniversitƩ de djibouti'),
(35085, 29110, 'en', 'name', 'Washington Military Department'),
(35086, 29111, 'en', 'name', 'Thai Binh University of Medicine and Pharmacy'),
(35087, 29111, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y Dược ThĆ”i BƬnh'),
(35088, 29112, 'no_lang_code', 'name', 'T-Soft (Czechia)'),
(35089, 29113, 'en', 'name', 'Surindra Rajabhat University'),
(35090, 29113, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąøøąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(35091, 29114, 'en', 'name', 'Uttarakhand Open University'),
(35092, 29114, 'hi', 'name', 'ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤£ą„ą¤” ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(35093, 29115, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŁ„'),
(35094, 29115, 'en', 'name', 'Hebron University'),
(35095, 29116, 'en', 'name', 'Indianapolis Museum of Art'),
(35096, 29117, 'en', 'name', 'Calicut University Employees Union'),
(35097, 29117, 'ml', 'name', 'ą“•ą“¾ą“²ą“æą“•ąµą“•ą“±ąµą“±ąµ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą“Žą“‚ą“Ŗąµą“²ąµ‡ą“¾ą“Æąµ€ą“øąµ ą“Æąµ‚ą“£ą“æą“Æąµ»'),
(35098, 29118, 'no_lang_code', 'name', 'Synthesia (Czechia)'),
(35099, 29119, 'bn', 'name', 'ą¦Ŗą§ą¦Øą§ą¦”ą§ą¦° ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(35100, 29119, 'en', 'name', 'Pundra University of Science and Technology'),
(35101, 29120, 'fr', 'name', 'Institut du Sahel'),
(35102, 29121, 'en', 'name', 'Feliks Nowowiejski Academy of Music in Bydgoszcz'),
(35103, 29121, 'pl', 'name', 'Akademia Muzyczna im. Feliksa Nowowiejskiego w Bydgoszczy'),
(35104, 29122, 'en', 'name', 'Cebu Technological University'),
(35105, 29123, 'en', 'name', 'Delaware Art Museum'),
(35106, 29124, 'en', 'name', 'Cedar Rapids Museum of Art'),
(35107, 29125, 'id', 'name', 'Universitas Widya Mataram Yogyakarta'),
(35108, 29126, 'en', 'name', 'University College of Social Sciences'),
(35109, 29126, 'pl', 'name', 'Wyższa Szkoła Lingwistyczna'),
(35110, 29127, 'en', 'name', 'Sehan University'),
(35111, 29127, 'ko', 'name', 'ģ„øķ•œėŒ€ķ•™źµ'),
(35112, 29128, 'en', 'name', 'Danville Community College'),
(35113, 29129, 'no_lang_code', 'name', 'VF (Czechia)'),
(35114, 29130, 'en', 'name', 'Navoi State Mining Institute'),
(35115, 29131, 'en', 'name', 'Atlanta History Center'),
(35116, 29132, 'en', 'name', 'American Folklore Society'),
(35117, 29133, 'en', 'name', 'Moscow State Technical University of Civil Aviation'),
(35118, 29133, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ гражГанской авиации'),
(35119, 29134, 'id', 'name', 'Universitas 45 Surabaya'),
(35120, 29135, 'en', 'name', 'Lehman College Art Gallery'),
(35121, 29136, 'en', 'name', 'Kyoto University of Art and Design'),
(35122, 29136, 'ja', 'name', 'äŗ¬éƒ½é€ å½¢čŠøč”“å¤§å­¦'),
(35123, 29137, 'bn', 'name', 'ą¦”ą¦¾ą¦Æą¦¼ą¦®ą¦Øą§ą¦” হারবার মহিলা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(35124, 29137, 'en', 'name', 'Diamond Harbour Women''s University'),
(35125, 29138, 'no_lang_code', 'name', 'Symbiom (Czechia)'),
(35126, 29139, 'en', 'name', 'Kwangju Women''s University'),
(35127, 29139, 'ko', 'name', 'ź“‘ģ£¼ģ—¬ģžėŒ€ķ•™źµ'),
(35128, 29140, 'en', 'name', 'Philadelphia Department of Records'),
(35129, 29141, 'en', 'name', 'Karnataka State Law University'),
(35130, 29141, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ಕಾನೂನು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(35131, 29142, 'en', 'name', 'Concord Public Schools and Concord-Carlisle Regional School District'),
(35132, 29143, 'en', 'name', 'Georgia Historical Society'),
(35133, 29144, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ°Š³Š°ŃŠæŠ°Š“Š°Ń€Ń‡Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń'),
(35134, 29144, 'en', 'name', 'Belarusian State Agricultural Academy'),
(35135, 29145, 'en', 'name', 'Krasnoyarsk State Academy of Music and Theatre'),
(35136, 29145, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø Šø театра'),
(35137, 29146, 'en', 'name', 'Surgut State Pedagogical University'),
(35138, 29146, 'ru', 'name', 'Š”ŃƒŃ€Š³ŃƒŃ‚ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(35139, 29147, 'en', 'name', 'TD Pardede Institute of Science and Technology'),
(35140, 29147, 'id', 'name', 'Institut Sains dan Teknologi TD Pardede'),
(35141, 29148, 'en', 'name', 'North Asia University'),
(35142, 29148, 'ja', 'name', 'ćƒŽćƒ¼ć‚¹ć‚¢ć‚øć‚¢å¤§å­¦'),
(35143, 29149, 'ro', 'name', 'Universitatea George Bacovia Bacau'),
(35144, 29150, 'en', 'name', 'Savannah College of Art and Design'),
(35145, 29151, 'en', 'name', 'Krishna University'),
(35146, 29152, 'en', 'name', 'Sultan Kudarat State University'),
(35147, 29153, 'en', 'name', 'Bost University'),
(35148, 29153, 'fa', 'name', 'دانؓگاه ŲØŲ³ŲŖ'),
(35149, 29154, 'id', 'name', 'Universitas Darma Persada'),
(35150, 29155, 'en', 'name', 'Zhongnan University of Economics and Law'),
(35151, 29155, 'zh', 'name', 'äø­å—č“¢ē»ę”æę³•å¤§å­¦'),
(35152, 29156, 'en', 'name', 'Islamic Azad University Shahr-e-Rey'),
(35153, 29156, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“Ł‡Ų±Ų±ŪŒ'),
(35154, 29157, 'en', 'name', 'Toho Gakuen School of Music'),
(35155, 29157, 'ja', 'name', 'ę”ęœ‹å­¦åœ’ éŸ³ę„½éƒØé–€'),
(35156, 29158, 'en', 'name', 'Alpena Community College'),
(35157, 29159, 'en', 'name', 'Mount Ida College'),
(35158, 29160, 'en', 'name', 'Cascadia Research Collective'),
(35159, 29161, 'en', 'name', 'Istanbul Yeni Yüzyıl University'),
(35160, 29161, 'tr', 'name', 'Yeni Yüzyıl Üniversitesi'),
(35161, 29162, 'en', 'name', 'Eurasia International University'),
(35162, 29162, 'hy', 'name', 'ŌµÕ¾Ö€Õ”Õ½Õ«Õ” Õ„Õ«Õ»Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ€Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(35163, 29163, 'en', 'name', 'Kostroma State Agricultural Academy'),
(35164, 29163, 'ru', 'name', 'ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(35165, 29164, 'en', 'name', 'Shenyang Conservatory of Music'),
(35166, 29164, 'zh', 'name', 'ę²ˆé˜³éŸ³ä¹å­¦é™¢'),
(35167, 29165, 'id', 'name', 'Universitas Borobudur'),
(35168, 29166, 'en', 'name', 'Pavlo Tychyna Uman State Pedagogical University'),
(35169, 29166, 'ru', 'name', 'Уманский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Павла Тычины'),
(35170, 29166, 'uk', 'name', 'Уманський Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Павла Тичини'),
(35171, 29167, 'en', 'name', 'Ion Mincu University of Architecture and Urbanism'),
(35172, 29167, 'ro', 'name', 'Universitatea de Arhitectură și Urbanism Ion Mincu'),
(35173, 29168, 'en', 'name', 'Open Institute of Law'),
(35174, 29168, 'ru', 'name', 'ŠžŃ‚ŠŗŃ€Ń‹Ń‚Ń‹Š¹ ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(35175, 29169, 'en', 'name', 'National Council on Public History'),
(35176, 29170, 'ja', 'name', 'č„æå—å„³å­¦é™¢å¤§å­¦'),
(35177, 29170, 'no_lang_code', 'name', 'Seinan Jo Gakuin University'),
(35178, 29171, 'en', 'name', 'Danish National Academy of Music'),
(35179, 29172, 'en', 'name', 'Serang Raya University'),
(35180, 29172, 'id', 'name', 'Universitas Serang Raya'),
(35181, 29173, 'en', 'name', 'Dravidian University'),
(35182, 29173, 'hi', 'name', 'ą¤¦ą„ą¤°ą¤µą¤æą¤”ą¤¼ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(35183, 29173, 'kn', 'name', 'ą²¦ą³ą²°ą²¾ą²µą²æą²” ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(35184, 29173, 'ta', 'name', 'ą®¤ą®æą®°ą®¾ą®µą®æą®Ÿą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(35185, 29173, 'te', 'name', 'ą°¦ą±ą°°ą°µą°æą°” ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(35186, 29174, 'en', 'name', 'Nizhyn Gogol State University'),
(35187, 29174, 'ru', 'name', 'ŠŠµŠ¶ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ŠŠøŠŗŠ¾Š»Š°Ń Š“Š¾Š³Š¾Š»Ń'),
(35188, 29174, 'uk', 'name', 'ŠŃ–Š¶ŠøŠ½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Миколи Š“Š¾Š³Š¾Š»Ń'),
(35189, 29175, 'en', 'name', 'Moscow State Institute of International Relations'),
(35190, 29175, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(35191, 29176, 'id', 'name', 'Universitas Wiraraja'),
(35192, 29177, 'id', 'name', 'Universitas Langlangbuana'),
(35193, 29178, 'no_lang_code', 'name', 'Společnost pro Obnovu Vesnice a MalĆ©ho Města'),
(35194, 29179, 'en', 'name', 'Eastern Samar State University'),
(35195, 29180, 'id', 'name', 'Institut Ilmu Sosial dan Ilmu Politik Jakarta'),
(35196, 29181, 'en', 'name', 'Nakhimov Naval Academy'),
(35197, 29181, 'uk', 'name', 'Š§Š’Š’ŠœŠ£ им П.Š”. ŠŠ°Ń…ŠøŠ¼Š¾Š²Š°'),
(35198, 29182, 'en', 'name', 'Bursa Orhangazi University'),
(35199, 29182, 'tr', 'name', 'Bursa Orhangazi Üniversitesi'),
(35200, 29183, 'no_lang_code', 'name', 'Four Elements Capital (United Kingdom)'),
(35201, 29184, 'en', 'name', 'Benicia Public Library'),
(35202, 29185, 'en', 'name', 'Carmel Unified School District'),
(35203, 29186, 'en', 'name', 'New Castle Historical Society'),
(35204, 29187, 'en', 'name', 'Invertis University'),
(35205, 29188, 'en', 'name', 'Reading Area Community College'),
(35206, 29189, 'en', 'name', 'Miami-Dade Public Library System'),
(35207, 29190, 'en', 'name', 'Ansan University'),
(35208, 29190, 'ko', 'name', 'ģ•ˆģ‚°ėŒ€ķ•™źµ'),
(35209, 29191, 'en', 'name', 'Philadelphia Museum of Art'),
(35210, 29192, 'en', 'name', 'Wake County Government'),
(35211, 29193, 'id', 'name', 'Institut Teknologi Adhi Tama Surabaya'),
(35212, 29194, 'en', 'name', 'Northwest University of Politics and Law'),
(35213, 29194, 'zh', 'name', 'č„æåŒ—ę”æę³•å¤§å­¦'),
(35214, 29195, 'no_lang_code', 'name', 'Elmarco (Czechia)'),
(35215, 29196, 'en', 'name', 'Packwood House Museum'),
(35216, 29197, 'en', 'name', 'University of Medicine 2 Yangon'),
(35217, 29197, 'my', 'name', 'į€†į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗį‚ ရန်ကုန်'),
(35218, 29198, 'en', 'name', 'Lviv National Academy of Arts'),
(35219, 29198, 'pl', 'name', 'Lwowska Narodowa Akademia Sztuki'),
(35220, 29198, 'ru', 'name', 'Š›ŃŒŠ²Š¾Š²ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(35221, 29198, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń мистецтв'),
(35222, 29199, 'en', 'name', 'Calvin University'),
(35223, 29199, 'ko', 'name', 'ģ¹¼ė¹ˆėŒ€ķ•™źµ'),
(35224, 29200, 'no_lang_code', 'name', 'MikroChem LKT (Czechia)'),
(35225, 29201, 'en', 'name', 'Siberian Academy of Law, Economics and Management'),
(35226, 29201, 'ru', 'name', 'Š”ŠøŠ±ŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ права, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(35227, 29202, 'pl', 'name', 'Wyższa Szkoła Promocji w Warszawie'),
(35228, 29203, 'en', 'name', 'Save Ellis Island'),
(35229, 29204, 'no_lang_code', 'name', 'Yang-En University'),
(35230, 29204, 'zh', 'name', '仰恩大学'),
(35231, 29205, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š¼ŃƒŠ·Ń‹ŠŗŃ–'),
(35232, 29205, 'en', 'name', 'Belarusian State Academy of Music'),
(35233, 29205, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø'),
(35234, 29206, 'en', 'name', 'Namseoul University'),
(35235, 29206, 'ko', 'name', 'ė‚Øģ„œģšøėŒ€ķ•™źµ'),
(35236, 29207, 'en', 'name', 'Little Compton Historical Society'),
(35237, 29208, 'en', 'name', 'Museum of Photographic Arts'),
(35238, 29209, 'en', 'name', 'Kovrov State Technological Academy named after V A Degtyarev'),
(35239, 29209, 'ru', 'name', 'ŠšŠ¾Š²Ń€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(35240, 29210, 'en', 'name', 'Vizcaya Museum & Gardens'),
(35241, 29211, 'az', 'name', 'Azərbaycan Dillər Universiteti'),
(35242, 29211, 'en', 'name', 'Azerbaijan University of Languages'),
(35243, 29211, 'ru', 'name', 'АзербайГжанский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠ·Ń‹ŠŗŠ¾Š²'),
(35244, 29212, 'no_lang_code', 'name', 'SVOS (Czechia)'),
(35245, 29213, 'en', 'name', 'Hong Kong Academy for Performing Arts'),
(35246, 29213, 'zh', 'name', 'é¦™ęøÆę¼”č—å­øé™¢'),
(35247, 29214, 'en', 'name', 'Capitol University'),
(35248, 29215, 'en', 'name', 'Tchaikovsky State Institute of Physical Culture'),
(35249, 29215, 'ru', 'name', 'Чайковский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(35250, 29216, 'en', 'name', 'Stearns History Museum'),
(35251, 29217, 'en', 'name', 'Mahamakut Buddhist University'),
(35252, 29217, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø”ąø«ąø²ąø”ąøąøøąøąø£ąø²ąøŠąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(35253, 29218, 'no_lang_code', 'name', 'Polymath Research (United States)'),
(35254, 29219, 'en', 'name', 'University of Central Thailand'),
(35255, 29219, 'th', 'name', 'ดหาวณทยาคัยภาคกคาง'),
(35256, 29220, 'no_lang_code', 'name', 'Akademie (Czechia)'),
(35257, 29221, 'en', 'name', 'Virginia Department of Historic Resources'),
(35258, 29222, 'en', 'name', 'Tokyo College of Music'),
(35259, 29222, 'ja', 'name', 'ę±äŗ¬éŸ³ę„½å¤§å­¦'),
(35260, 29223, 'id', 'name', 'Universitas 17 Agustus 1945 Samarinda'),
(35261, 29224, 'en', 'name', 'Consortium for Coordination of Research activities Concerning the Venice Lagoon System'),
(35262, 29224, 'it', 'name', 'Consorzio per il coordinamento delle ricerche inerenti al sistema lagunare di Venezia'),
(35263, 29225, 'en', 'name', 'Kyushu University of Nursing and Social Welfare'),
(35264, 29225, 'ja', 'name', 'ä¹å·žēœ‹č­·ē¦ē„‰å¤§å­¦'),
(35265, 29226, 'en', 'name', 'Shomal University'),
(35266, 29226, 'fa', 'name', 'دانؓگاه Ų“Ł…Ų§Ł„'),
(35267, 29227, 'no_lang_code', 'name', 'BIOPHARM (Czechia)'),
(35268, 29228, 'no_lang_code', 'name', 'Cervenka Consulting (Czechia)'),
(35269, 29229, 'en', 'name', 'Pueblo of Zuni'),
(35270, 29230, 'en', 'name', 'Tohono O''odham Nation'),
(35271, 29231, 'it', 'name', 'Fondazione Lelio e Lisli Basso'),
(35272, 29232, 'en', 'name', 'Allentown Public Library'),
(35273, 29233, 'en', 'name', 'University of Central Europe in Skalica'),
(35274, 29233, 'sk', 'name', 'Stredoeurópska vysokÔ Ŕkola v Skalici'),
(35275, 29234, 'en', 'name', 'Kartemquin Films'),
(35276, 29235, 'en', 'name', 'Islamic Azad University of Damavand'),
(35277, 29235, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲÆŁ…Ų§ŁˆŁ†ŲÆ'),
(35278, 29236, 'az', 'name', 'Lənkəran Dƶvlət Universiteti'),
(35279, 29236, 'en', 'name', 'Lankaran State University'),
(35280, 29237, 'be', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½Ń‹ Š”Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Ń–Š¼Ń А.Š”. Дахарава БДУ'),
(35281, 29237, 'en', 'name', 'International Sakharov Environmental Institute'),
(35282, 29238, 'en', 'name', 'Staten Island Children''s Museum'),
(35283, 29239, 'en', 'name', 'Old Stone House'),
(35284, 29240, 'pl', 'name', 'Wyższa Szkoła Stosunków Międzynarodowych i Amerykanistyki'),
(35285, 29241, 'en', 'name', 'National Academy of Environmental and Resort Construction'),
(35286, 29241, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń прироГоохоронного і ŠŗŃƒŃ€Š¾Ń€Ń‚Š½Š¾Š³Š¾ Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š°'),
(35287, 29242, 'en', 'name', 'Joong-Ang Sangha University'),
(35288, 29243, 'en', 'name', 'Yaroslavl State Agricultural Academy'),
(35289, 29243, 'ru', 'name', 'ŠÆŃ€Š¾ŃŠ»Š°Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(35290, 29244, 'no_lang_code', 'name', 'Pneuven (Czechia)'),
(35291, 29245, 'en', 'name', 'Father Saturnino Urios University'),
(35292, 29245, 'tl', 'name', 'Pamantasang Padre Saturnino Urios'),
(35293, 29246, 'en', 'name', 'Jalalabad State University'),
(35294, 29246, 'ky', 'name', 'Жалал-АбаГ мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(35295, 29247, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³ŲØŲ£'),
(35296, 29247, 'en', 'name', 'Saba University'),
(35297, 29248, 'no_lang_code', 'name', 'Jensen Management Service (United States)'),
(35298, 29249, 'en', 'name', 'Bioterra University Bucharest'),
(35299, 29249, 'ro', 'name', 'Universitatea Bioterra din București'),
(35300, 29250, 'en', 'name', 'University of Maroua'),
(35301, 29250, 'fr', 'name', 'UniversitƩ de Maroua'),
(35302, 29251, 'en', 'name', 'Nagasaki Institute of Applied Science'),
(35303, 29251, 'ja', 'name', 'é•·å“Žē·åˆē§‘å­¦å¤§å­¦'),
(35304, 29252, 'id', 'name', 'Universitas Pembangunan Panca Budi Medan'),
(35305, 29253, 'en', 'name', 'DeCordova Sculpture Park and Museum'),
(35306, 29254, 'id', 'name', 'Universitas Narotama'),
(35307, 29255, 'id', 'name', 'Universitas Muhammadiyah Palu'),
(35308, 29256, 'en', 'name', 'Konan Women''s University'),
(35309, 29256, 'ja', 'name', 'ē”²å—å„³å­å¤§å­¦'),
(35310, 29257, 'en', 'name', 'Tarim University'),
(35311, 29257, 'zh', 'name', 'å””é‡ŒęœØå¤§å­¦'),
(35312, 29258, 'no_lang_code', 'name', 'GEOtest (Czechia)'),
(35313, 29259, 'no_lang_code', 'name', 'MindSet Rx (United States)'),
(35314, 29260, 'no_lang_code', 'name', 'Amaranth (Czechia)'),
(35315, 29261, 'en', 'name', 'Zaporizhzhya State Engineering Academy'),
(35316, 29261, 'uk', 'name', 'Інженерний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ¾Š³Š¾ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ'),
(35317, 29262, 'en', 'name', 'National Institute of Science and Technology'),
(35318, 29263, 'no_lang_code', 'name', 'TOS Kuřim (Czechia)'),
(35319, 29264, 'id', 'name', 'Universitas Islam Lamongan'),
(35320, 29265, 'en', 'name', 'Somerville Museum'),
(35321, 29266, 'en', 'name', 'Norwegian Academy of Music'),
(35322, 29266, 'fi', 'name', 'Norjan valtiollinen musiikkikorkeakoulu'),
(35323, 29266, 'no', 'name', 'Norges musikkhĆøgskole'),
(35324, 29267, 'en', 'name', 'Rostov Institute of Law of the Ministry of Internal Affairs of the Russian Federation'),
(35325, 29267, 'ru', 'name', 'Ростовский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации'),
(35326, 29268, 'cs', 'name', 'Výzkumný ústav stavebních hmot,a.s.'),
(35327, 29268, 'no_lang_code', 'name', 'Research Institute for Building Materials (Czechia)'),
(35328, 29269, 'en', 'name', 'Berkshire Theatre Group'),
(35329, 29270, 'en', 'name', 'China Conservatory'),
(35330, 29270, 'zh', 'name', 'äø­å›½éŸ³ä¹å­¦é™¢'),
(35331, 29271, 'en', 'name', 'Far Eastern Law Institute of Ministry of Internal Affairs of Russia'),
(35332, 29271, 'ru', 'name', 'Š”ŠŠ›Š¬ŠŠ•Š’ŠžŠ”Š¢ŠžŠ§ŠŠ«Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(35333, 29272, 'en', 'name', 'HamhÅ­ng University of Chemical Industry'),
(35334, 29272, 'ko', 'name', 'ķ•Øķ„ķ™”ķ•™ź³µģ—…ėŒ€ķ•™'),
(35335, 29273, 'en', 'name', 'Idaho Falls Public Library'),
(35336, 29274, 'en', 'name', 'Myanmar Aerospace Engineering University'),
(35337, 29274, 'my', 'name', 'မြန်မာနိုင်ငံ į€œį€±į€€į€¼į€±į€¬į€„į€ŗį€øį€”į€¾į€„į€·į€ŗį€”į€¬į€€į€¬į€žį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(35338, 29275, 'en', 'name', 'Canik Başarı University'),
(35339, 29275, 'tr', 'name', 'Canik Başarı Üniversitesi'),
(35340, 29276, 'en', 'name', 'Spicer Adventist University'),
(35341, 29277, 'en', 'name', 'Kemerovo State Agricultural Institute'),
(35342, 29277, 'ru', 'name', 'ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(35343, 29278, 'en', 'name', 'Webster University Geneva'),
(35344, 29279, 'ja', 'name', 'ćć‚‰ć—ćä½œé™½å¤§å­¦'),
(35345, 29279, 'no_lang_code', 'name', 'Kurashiki Sakuyo University'),
(35346, 29280, 'en', 'name', 'National University of the Chaco Austral'),
(35347, 29280, 'es', 'name', 'Universidad Nacional del Chaco Austral'),
(35348, 29281, 'az', 'name', 'Qafqaz Universiteti'),
(35349, 29281, 'en', 'name', 'Qafqaz University'),
(35350, 29282, 'en', 'name', 'Pacific Symphony'),
(35351, 29283, 'en', 'name', 'Thorneloe University'),
(35352, 29284, 'en', 'name', 'Nalsar University of Law'),
(35353, 29285, 'en', 'name', 'National Japanese American Historical Society'),
(35354, 29286, 'en', 'name', 'Anderson Public Library'),
(35355, 29287, 'en', 'name', 'International Black Sea University'),
(35356, 29287, 'ka', 'name', 'įƒØįƒįƒ•įƒ˜ įƒ–įƒ¦įƒ•įƒ˜įƒ” įƒ”įƒįƒ”įƒ įƒ—įƒįƒØįƒįƒ įƒ˜įƒ”įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(35357, 29288, 'id', 'name', 'Universitas Sangga Buana YPKP'),
(35358, 29289, 'en', 'name', 'Ontario Universities’ Application Centre'),
(35359, 29289, 'fr', 'name', 'Centre de demande d’admission aux universitĆ©s de l’Ontario'),
(35360, 29290, 'id', 'name', 'Universitas Saburai'),
(35361, 29291, 'en', 'name', 'Bunkyo University'),
(35362, 29291, 'ja', 'name', '文教大学'),
(35363, 29292, 'en', 'name', 'Dr. M.G.R. Educational and Research Institute'),
(35364, 29293, 'en', 'name', 'Lauren Rogers Museum of Art'),
(35365, 29294, 'en', 'name', 'Ateneo de Manila University'),
(35366, 29295, 'en', 'name', 'Guru Kashi University'),
(35367, 29295, 'pa', 'name', 'ਗੁਰੂ ਕਾਸ਼ੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(35368, 29296, 'en', 'name', 'Harry S Truman College'),
(35369, 29297, 'en', 'name', 'Arak University of Technology'),
(35370, 29297, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ų±Ų§Ś©'),
(35371, 29298, 'no_lang_code', 'name', 'International Technology Products'),
(35372, 29299, 'en', 'name', 'Dr. Sarvepalli Radhakrishnan Rajasthan Ayurved University'),
(35373, 29299, 'hi', 'name', 'ą¤”ą„‰ ą¤øą¤°ą„ą¤µą¤Ŗą¤²ą„ą¤²ą„€ ą¤°ą¤¾ą¤§ą¤¾ą¤•ą„ƒą¤·ą„ą¤£ą¤Ø ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤†ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(35374, 29300, 'en', 'name', 'Komsomolsk-on-Amur State Technical University'),
(35375, 29300, 'ru', 'name', 'Комсомольский-на-ŠŠ¼ŃƒŃ€Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35376, 29301, 'en', 'name', 'Montgomery County-Norristown Public Library'),
(35377, 29302, 'en', 'name', 'Laramie County Library'),
(35378, 29303, 'en', 'name', 'State University of Gorontalo'),
(35379, 29303, 'id', 'name', 'Universitas Negeri Gorontalo'),
(35380, 29304, 'en', 'name', 'Norwegian Police University College'),
(35381, 29304, 'no', 'name', 'PolitihĆøgskolen'),
(35382, 29305, 'en', 'name', 'University of Pangasinan'),
(35383, 29305, 'tl', 'name', 'Pamantasan ng Pangasinan'),
(35384, 29306, 'en', 'name', 'Mississippi Public Broadcasting'),
(35385, 29307, 'en', 'name', 'El Paso Public Library'),
(35386, 29308, 'en', 'name', 'Cypress College'),
(35387, 29309, 'en', 'name', 'Iwate Prefectural University'),
(35388, 29309, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹å¤§å­¦'),
(35389, 29310, 'en', 'name', 'University of Northeastern Philippines'),
(35390, 29311, 'en', 'name', 'Jeonju National University of Education'),
(35391, 29311, 'ko', 'name', 'ģ „ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(35392, 29312, 'az', 'name', 'AZʏRBAYCAN RESPUBLİKASININ PREZİDENTİ YANINDA DƖVLʏT İDARʏƇİLİK AKADEMİYASI'),
(35393, 29312, 'en', 'name', 'Academy of Public Administration'),
(35394, 29313, 'en', 'name', 'San Francisco Symphony'),
(35395, 29314, 'en', 'name', 'St. Louis University High School'),
(35396, 29315, 'en', 'name', 'Kannada University'),
(35397, 29315, 'kn', 'name', 'ą²•ą²Øą³ą²Øą²” ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(35398, 29316, 'en', 'name', 'Free International University of Moldova'),
(35399, 29316, 'ro', 'name', 'Universitatea Liberă Internaţională din Moldova'),
(35400, 29317, 'en', 'name', 'Jacques Marchais Center of Tibetan Art'),
(35401, 29318, 'fr', 'name', 'Institut National du BĆ¢timent et des Travaux Publics'),
(35402, 29319, 'en', 'name', 'Russian University of Cooperation'),
(35403, 29319, 'ru', 'name', 'Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ кооперации'),
(35404, 29320, 'en', 'name', 'Nebraska State Historical Society'),
(35405, 29321, 'en', 'name', 'Williamsburg Regional Library'),
(35406, 29322, 'en', 'name', 'Binary University of Management & Entrepreneurship'),
(35407, 29323, 'en', 'name', 'Hingham Public Library'),
(35408, 29324, 'en', 'name', 'A. N. Kosygin Moscow State Textile University'),
(35409, 29324, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный Ń‚ŠµŠŗŃŃ‚ŠøŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š. ŠšŠ¾ŃŃ‹Š³ŠøŠ½Š°'),
(35410, 29325, 'en', 'name', 'University of Security Management in KoŔice'),
(35411, 29325, 'sk', 'name', 'VysokĆ” Å”kola bezpečnostnĆ©ho manažérstva v KoÅ”iciach'),
(35412, 29326, 'en', 'name', 'Maryland Association for Environmental and Outdoor Education'),
(35413, 29327, 'be', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ¾-Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35414, 29327, 'en', 'name', 'Belarusian Russian University'),
(35415, 29328, 'en', 'name', 'Catholic University of South Sudan'),
(35416, 29329, 'en', 'name', 'Mbeya University of Science and Technology'),
(35417, 29330, 'ja', 'name', 'åƒč‘‰ēµŒęøˆå¤§å­¦'),
(35418, 29330, 'no_lang_code', 'name', 'Chiba Keizai University'),
(35419, 29331, 'en', 'name', 'State Conservatory of Uzbekistan'),
(35420, 29332, 'en', 'name', 'Yokkaichi University'),
(35421, 29332, 'ja', 'name', '四旄市大学'),
(35422, 29333, 'no_lang_code', 'name', 'AGRO-EKO (Czechia)'),
(35423, 29334, 'en', 'name', 'Chengdu Sport University'),
(35424, 29334, 'zh', 'name', 'ęˆéƒ½ä½“č‚²å­¦é™¢'),
(35425, 29335, 'en', 'name', 'Ramsey County Historical Society'),
(35426, 29336, 'ja', 'name', 'ē”£ę„­čƒ½ēŽ‡å¤§å­¦'),
(35427, 29336, 'no_lang_code', 'name', 'Sanno University'),
(35428, 29337, 'no_lang_code', 'name', 'Electronic Product Services (Czechia)'),
(35429, 29338, 'en', 'name', 'New York City Department of Records and Information Services'),
(35430, 29339, 'en', 'name', 'New Mexico Commission of Public Records'),
(35431, 29340, 'id', 'name', 'Universitas Baiturrahmah'),
(35432, 29341, 'en', 'name', 'Bay Area Radio Drama'),
(35433, 29342, 'zh', 'name', 'Taiwan Shoufu University, å°ē£é¦–åŗœå¤§å­ø'),
(35434, 29343, 'en', 'name', 'Veer Bahadur Singh Purvanchal University'),
(35435, 29343, 'hi', 'name', 'ą¤µą„€ą¤° ą¤¬ą¤¹ą¤¾ą¤¦ą„ą¤° सिंह ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤‚ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(35436, 29343, 'ta', 'name', 'ą®µąÆ€ą®°ąÆ ą®Ŗą®•ą®¤ąÆ‚ą®°ąÆ ą®šą®æą®™ąÆ ą®ŖąÆ‚ą®°ąÆą®µą®¾ą®žąÆą®šą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(35437, 29344, 'en', 'name', 'University System of Ohio'),
(35438, 29345, 'en', 'name', 'Bukovinian State Medical University'),
(35439, 29345, 'ru', 'name', 'Š‘ŃƒŠŗŠ¾Š²ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35440, 29345, 'uk', 'name', 'Š‘ŃƒŠŗŠ¾Š²ŠøŠ½ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35441, 29346, 'en', 'name', 'Ryazan State University'),
(35442, 29346, 'ru', 'name', 'Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”.А. Есенина'),
(35443, 29347, 'hi', 'name', 'मंगलायतन ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(35444, 29347, 'no_lang_code', 'name', 'Mangalayatan University'),
(35445, 29348, 'en', 'name', 'Save the Whales'),
(35446, 29349, 'en', 'name', 'Sports University of Tirana'),
(35447, 29349, 'sq', 'name', 'Universiteti i Sporteve tƫ Tiranƫs'),
(35448, 29350, 'en', 'name', 'Menaul Historical Library of the Southwest'),
(35449, 29351, 'en', 'name', 'Center for Civic Education'),
(35450, 29352, 'id', 'name', 'Universitas Abdurahman Saleh Situbondo'),
(35451, 29353, 'en', 'name', 'Pennsylvania Heritage Society'),
(35452, 29354, 'en', 'name', 'Akita University of Art'),
(35453, 29354, 'ja', 'name', 'ē§‹ē”°å…¬ē«‹ē¾Žč”“å¤§å­¦'),
(35454, 29355, 'en', 'name', 'Tokyo Christian University'),
(35455, 29355, 'ja', 'name', 'ę±äŗ¬åŸŗē£ę•™å¤§å­¦'),
(35456, 29356, 'en', 'name', 'Kazimieras Simonavičius University'),
(35457, 29356, 'lt', 'name', 'Vilniaus Verslo Teisės Akademija'),
(35458, 29357, 'en', 'name', 'Rajasthan Technical University'),
(35459, 29357, 'hi', 'name', 'ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤¤ą¤•ą¤Øą„€ą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą¤¾ą¤²ą¤Æ'),
(35460, 29358, 'en', 'name', 'Osaka Electro-Communication University'),
(35461, 29358, 'ja', 'name', 'å¤§é˜Ŗé›»ę°—é€šäæ”å¤§å­¦'),
(35462, 29359, 'en', 'name', 'Gregory University Uturu'),
(35463, 29360, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في ال؄مارات'),
(35464, 29360, 'en', 'name', 'American University in the Emirates'),
(35465, 29361, 'en', 'name', 'University of Baguio'),
(35466, 29361, 'tl', 'name', 'Pamantasan ng Baguio'),
(35467, 29362, 'en', 'name', 'Ashiya University'),
(35468, 29362, 'ja', 'name', 'čŠ¦å±‹å¤§å­¦'),
(35469, 29363, 'ko', 'name', 'ģøė•ėŒ€ķ•™źµ'),
(35470, 29363, 'no_lang_code', 'name', 'Induk University'),
(35471, 29364, 'en', 'name', 'Kunitachi College of Music'),
(35472, 29364, 'ja', 'name', 'å›½ē«‹éŸ³ę„½å¤§å­¦'),
(35473, 29365, 'no_lang_code', 'name', 'Evolving Systems Consulting Aerospace (Czechia)'),
(35474, 29366, 'en', 'name', 'Czech Space Office'),
(35475, 29367, 'en', 'name', 'Keiai University'),
(35476, 29367, 'ja', 'name', '敬愛大学'),
(35477, 29368, 'no_lang_code', 'name', 'Horiba (United Kingdom)'),
(35478, 29369, 'en', 'name', 'Missouri Historical Society'),
(35479, 29370, 'en', 'name', 'Saint Paul University Surigao'),
(35480, 29371, 'no_lang_code', 'name', 'VRL Praha (Czechia)'),
(35481, 29372, 'en', 'name', 'Da Nang University of Economics'),
(35482, 29372, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ ĐƠ Nįŗµng'),
(35483, 29373, 'en', 'name', 'Minnesota Department of Natural Resources'),
(35484, 29374, 'en', 'name', 'Nueva Ecija University of Science and Technology'),
(35485, 29374, 'tl', 'name', 'Pamantasan ng Nueva Ecija sa Agham at Teknolohiya'),
(35486, 29375, 'cs', 'name', 'Výzkumný Ustav pro Farmacii a Biochemii'),
(35487, 29375, 'no_lang_code', 'name', 'Research Institute for Pharmacy and Biochemistry (Czechia)'),
(35488, 29376, 'en', 'name', 'New Hampshire Lakes Association'),
(35489, 29377, 'en', 'name', 'Vali Asr University of Rafsanjan'),
(35490, 29378, 'de', 'name', 'Hochschule für angewandte Wissenschaften Landshut'),
(35491, 29378, 'en', 'name', 'University of Applied Sciences Landshut'),
(35492, 29379, 'en', 'name', 'Independent Production Fund'),
(35493, 29380, 'en', 'name', 'Alabama Department of Archives and History'),
(35494, 29381, 'ro', 'name', 'Institutul Teologic Baptist din București'),
(35495, 29382, 'no_lang_code', 'name', 'Embitron (Czechia)'),
(35496, 29383, 'en', 'name', 'Tottori University of Environmental Studies'),
(35497, 29383, 'ja', 'name', 'é³„å–ē’°å¢ƒå¤§å­¦'),
(35498, 29384, 'en', 'name', 'Vasyl Stefanyk Precarpathian National University'),
(35499, 29384, 'pl', 'name', 'Podkarpacki Uniwersytet Narodowy im. Wasyla Stefanyka'),
(35500, 29384, 'ru', 'name', 'ŠŸŃ€ŠøŠŗŠ°Ń€ŠæŠ°Ń‚ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’Š°ŃŠøŠ»ŠøŃ Дтефаника'),
(35501, 29384, 'uk', 'name', 'ŠŸŃ€ŠøŠŗŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’Š°ŃŠøŠ»Ń Дтефаника'),
(35502, 29385, 'en', 'name', 'Altai State Medical University'),
(35503, 29385, 'ru', 'name', 'Алтайский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35504, 29386, 'hi', 'name', 'ą¤—ą„‹ą¤‚ą¤”ą¤µą¤¾ą¤Øą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(35505, 29386, 'no_lang_code', 'name', 'Gondwana University'),
(35506, 29387, 'en', 'name', 'RK University'),
(35507, 29388, 'pl', 'name', 'Wyższa Szkoła Gospodarowania Nieruchomościami'),
(35508, 29389, 'bn', 'name', 'ইসলামিক ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(35509, 29389, 'en', 'name', 'Islamic University of Technology'),
(35510, 29390, 'en', 'name', 'Ural Institute for the Humanities'),
(35511, 29390, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(35512, 29391, 'en', 'name', 'Christian University of Thailand'),
(35513, 29391, 'th', 'name', 'ดหาวณทยาคัยครณสเตียน'),
(35514, 29392, 'en', 'name', 'Center for the Study of the Presidency and Congress'),
(35515, 29393, 'en', 'name', 'Society of Early Americanists'),
(35516, 29394, 'de', 'name', 'Instituts für angewandte Mechanik'),
(35517, 29394, 'en', 'name', 'Institute of Applied Mechanics'),
(35518, 29395, 'en', 'name', 'Hanil University'),
(35519, 29395, 'ko', 'name', 'ķ•œģ¼ģž„ģ‹ ėŒ€ķ•™źµ'),
(35520, 29396, 'en', 'name', 'Ural State Mining University'),
(35521, 29396, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ горный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35522, 29397, 'en', 'name', 'Newport Art Museum'),
(35523, 29398, 'en', 'name', 'Moscow Humanitarian-Technical Academy'),
(35524, 29398, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-Š¢ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(35525, 29399, 'en', 'name', 'National Maritime Center'),
(35526, 29400, 'en', 'name', 'Saratov State Socio-Economic University'),
(35527, 29400, 'ru', 'name', 'Даратовский ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š Š­Š£ им. Š“. Š’. ŠŸŠ»ŠµŃ…Š°Š½Š¾Š²Š°'),
(35528, 29401, 'en', 'name', 'Institute of Art Restoration'),
(35529, 29401, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² реставрации'),
(35530, 29402, 'en', 'name', 'Cornell Cooperative Extension of Suffolk County'),
(35531, 29403, 'no_lang_code', 'name', 'Inoorero University'),
(35532, 29404, 'no_lang_code', 'name', 'Prototypa (Czechia)'),
(35533, 29405, 'en', 'name', 'Exploring New Horizons'),
(35534, 29406, 'en', 'name', 'Hebei University of Architecture'),
(35535, 29406, 'zh', 'name', 'ę²³åŒ—å»ŗē­‘å·„ēØ‹å­¦é™¢'),
(35536, 29407, 'id', 'name', 'Universitas Pasir Pangaraian'),
(35537, 29408, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ؓرق Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§'),
(35538, 29408, 'en', 'name', 'East Africa University'),
(35539, 29409, 'az', 'name', 'Azərbaycan Dƶvlət Pedaqoji Universiteti'),
(35540, 29409, 'en', 'name', 'Azerbaijan State Pedagogical University'),
(35541, 29410, 'no_lang_code', 'name', 'Keeneland Association'),
(35542, 29411, 'en', 'name', 'Kuban State Agrarian University'),
(35543, 29411, 'ru', 'name', 'Кубанский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35544, 29412, 'no_lang_code', 'name', 'Vitrina University'),
(35545, 29413, 'no_lang_code', 'name', 'PolyComp (Czechia)'),
(35546, 29414, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¾ŠŗŠµŠ°Š½Š¾Š»Š¾Š³ŠøŃ'),
(35547, 29414, 'en', 'name', 'Institute of Oceanology'),
(35548, 29415, 'en', 'name', 'National Institute of Business'),
(35549, 29415, 'ru', 'name', 'ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š‘Š˜Š—ŠŠ•Š”Š'),
(35550, 29416, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‡ŁŠŲ±ŁŠŁˆŲŖ-وات دبي'),
(35551, 29416, 'en', 'name', 'Heriot-Watt University Dubai'),
(35552, 29417, 'no_lang_code', 'name', 'Hydro International (Ireland)'),
(35553, 29418, 'en', 'name', 'Utah State University Eastern'),
(35554, 29419, 'id', 'name', 'Universitas Wiraswasta Indonesia'),
(35555, 29420, 'en', 'name', 'Northwest Museum of Arts and Culture'),
(35556, 29421, 'ko', 'name', 'źµ­ģ œģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(35557, 29421, 'no_lang_code', 'name', 'Gukje Cyber University'),
(35558, 29422, 'en', 'name', 'Shizuoka University of Welfare'),
(35559, 29422, 'ja', 'name', 'é™å²”ē¦ē„‰å¤§å­¦'),
(35560, 29423, 'hu', 'name', 'Szent AtanĆ”z Gƶrƶgkatolikus HittudomĆ”nyi Főiskola'),
(35561, 29424, 'en', 'name', 'Urgench State University'),
(35562, 29424, 'uz', 'name', 'Urganch davlat universiteti'),
(35563, 29425, 'en', 'name', 'Russian Academy of Arts'),
(35564, 29425, 'ru', 'name', 'Š Š¾ŃŃŠøĢŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµĢŠ¼ŠøŃ Ń…ŃƒŠ“Š¾ĢŠ¶ŠµŃŃ‚Š²'),
(35565, 29426, 'en', 'name', 'Brookline Public Schools'),
(35566, 29427, 'en', 'name', 'Akaki Tsereteli State University'),
(35567, 29427, 'hy', 'name', 'Ō±ÕÆÕ”ÕÆÕ« Ō¾Õ„Ö€Õ„Õ©Õ„Õ¬Õ«Õ« Õ”Õ¶Õ¾Õ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(35568, 29427, 'ka', 'name', 'įƒ„įƒ£įƒ—įƒįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(35569, 29428, 'id', 'name', 'Universitas Pancasakti Tegal'),
(35570, 29429, 'bn', 'name', 'ą¦•ą§‹ą¦šą¦¬ą¦æą¦¹ą¦¾ą¦° ą¦Ŗą¦žą§ą¦šą¦¾ą¦Øą¦Ø ą¦¬ą¦°ą§ą¦®ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(35571, 29429, 'en', 'name', 'Cooch Behar Panchanan Barma University'),
(35572, 29429, 'hi', 'name', 'ą¤•ą„‚ą¤š बिहार ą¤Ŗą¤‚ą¤šą¤¾ą¤Øą¤Ø ą¤¬ą¤°ą„ą¤®ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(35573, 29430, 'en', 'name', 'DAPHNE Institute of Applied Ecology'),
(35574, 29431, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الؓرق Ų§Ł„Ų£ŁˆŲ³Ų·'),
(35575, 29431, 'en', 'name', 'Middle East University'),
(35576, 29432, 'ja', 'name', '梅光学院大学'),
(35577, 29432, 'no_lang_code', 'name', 'Baiko Gakuin University'),
(35578, 29433, 'id', 'name', 'Universitas Pasundan'),
(35579, 29434, 'en', 'name', 'Center for Prevention Services'),
(35580, 29435, 'en', 'name', 'Donnelly College'),
(35581, 29436, 'en', 'name', 'Soai University'),
(35582, 29436, 'ja', 'name', '相愛大学'),
(35583, 29437, 'en', 'name', 'Muriel L. MacGregor Charitable Trust'),
(35584, 29438, 'en', 'name', 'Partners for Livable Places'),
(35585, 29439, 'en', 'name', 'Cambodian Mekong University'),
(35586, 29439, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž˜įŸįž‚įž„įŸ’įž‚įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(35587, 29440, 'en', 'name', 'Gunma University of Health and Welfare'),
(35588, 29440, 'ja', 'name', 'ē¾¤é¦¬åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(35589, 29441, 'en', 'name', 'Gwangju National University of Education'),
(35590, 29441, 'ko', 'name', 'ź“‘ģ£¼źµģœ”ėŒ€ķ•™źµ'),
(35591, 29442, 'en', 'name', 'University of Saint Louis'),
(35592, 29442, 'tl', 'name', 'Unibersidad ng Saint Louis'),
(35593, 29443, 'no_lang_code', 'name', 'Elitex Machinery (Czechia)'),
(35594, 29444, 'en', 'name', 'Tokyo Zokei University'),
(35595, 29444, 'ja', 'name', 'ę±äŗ¬é€ å½¢å¤§å­¦'),
(35596, 29445, 'en', 'name', 'Gifu Women''s University'),
(35597, 29445, 'ja', 'name', '岐阜儳子大学'),
(35598, 29446, 'bn', 'name', 'ą¦°ą¦¬ą§€ą¦Øą§ą¦¦ą§ą¦°ą¦­ą¦¾ą¦°ą¦¤ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(35599, 29446, 'en', 'name', 'Rabindra Bharati University'),
(35600, 29446, 'hi', 'name', 'ą¤°ą¤µą„€ą¤Øą„ą¤¦ą„ą¤° ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(35601, 29447, 'en', 'name', 'Misamis University'),
(35602, 29448, 'de', 'name', 'PƤpstliche UniversitƤt Antonianum'),
(35603, 29448, 'en', 'name', 'Pontifical University Antonianum'),
(35604, 29448, 'fr', 'name', 'UniversitƩ pontificale de saint-antoine'),
(35605, 29448, 'it', 'name', 'Pontificia UniversitĆ  Antonianum'),
(35606, 29449, 'id', 'name', 'Universitas Tompotika Luwuk'),
(35607, 29450, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(35608, 29450, 'en', 'name', 'Applied Science University'),
(35609, 29451, 'en', 'name', 'Saint Petersburg State Academic Institute of Painting Sculpture and Architecture named after I.E. Repin'),
(35610, 29451, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ акаГемический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ живописи ŃŠŗŃƒŠ»ŃŒŠæŃ‚ŃƒŃ€Ń‹ Šø Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹ имени И.Š•. Репин'),
(35611, 29452, 'en', 'name', 'Foundation for Lincoln City Libraries'),
(35612, 29453, 'no_lang_code', 'name', 'NovaTarg Therapeutics (United States)'),
(35613, 29454, 'en', 'name', 'University College of Enterprise and Administration in Lublin'),
(35614, 29454, 'pl', 'name', 'Wyższa Szkoła Przedsiębiorczości i Administracji'),
(35615, 29455, 'cs', 'name', 'SQS VlƔknovƔ optika'),
(35616, 29455, 'no_lang_code', 'name', 'SQS Fiber Optics (Czechia)'),
(35617, 29456, 'en', 'name', 'Yunnan Arts University'),
(35618, 29456, 'zh', 'name', 'äŗ‘å—č‰ŗęœÆå­¦é™¢'),
(35619, 29457, 'en', 'name', 'University of Lower Silesia'),
(35620, 29457, 'pl', 'name', 'Dolnośląska Szkoła Wyższa'),
(35621, 29458, 'en', 'name', 'Thepsatri Rajabhat University'),
(35622, 29458, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąø—ąøžąøŖąø•ąø£ąøµąø„ąøžąøšąøøąø£ąøµ'),
(35623, 29459, 'no_lang_code', 'name', 'Northeastern Regional Association of Coastal and Ocean Observing Systems (United States)'),
(35624, 29460, 'no_lang_code', 'name', 'Meopta Optika (Czechia)'),
(35625, 29461, 'no_lang_code', 'name', 'MSR Engines (Czechia)'),
(35626, 29462, 'en', 'name', 'Cincinnati Zoo and Botanical Garden'),
(35627, 29463, 'no_lang_code', 'name', 'KrÔtký Film Praha (Czechia)'),
(35628, 29464, 'en', 'name', 'Reno County Museum'),
(35629, 29465, 'no_lang_code', 'name', 'Toshulin (Czechia)'),
(35630, 29466, 'en', 'name', 'Korea Christian University'),
(35631, 29467, 'en', 'name', 'Sri Sathya Sai Institute of Higher Learning'),
(35632, 29468, 'en', 'name', 'Historical Society of Pennsylvania'),
(35633, 29469, 'en', 'name', 'Turkmen State Medical University'),
(35634, 29469, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŠøŠø'),
(35635, 29470, 'en', 'name', 'Alaska Native Harbor Seal Commission'),
(35636, 29471, 'en', 'name', 'Minami Kyushu University'),
(35637, 29471, 'ja', 'name', '南九州大学'),
(35638, 29472, 'en', 'name', 'Kent State University at Ashtabula'),
(35639, 29473, 'en', 'name', 'Makah Tribal Council'),
(35640, 29474, 'en', 'name', 'Ferguson Library'),
(35641, 29475, 'en', 'name', 'Leman University'),
(35642, 29476, 'en', 'name', 'International Slavic Institute'),
(35643, 29476, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Š”Š»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(35644, 29477, 'en', 'name', 'Kamianets-Podіlskyi Ivan Ohiienko National University'),
(35645, 29477, 'pl', 'name', 'Ukraiński Uniwersytet Państwowy w Kamieńcu Podolskim'),
(35646, 29477, 'ru', 'name', 'ŠšŠ°Š¼ŠµŠ½ŠµŃ†-ПоГольский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35647, 29477, 'uk', 'name', 'Кам''ŃŠ½ŠµŃ†ŃŒ-ŠŸŠ¾Š“Ń–Š»ŃŒŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана ŠžŠ³Ń–єнка'),
(35648, 29478, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŁŠŲ³Ų§Ł†'),
(35649, 29478, 'en', 'name', 'University of Misan'),
(35650, 29479, 'en', 'name', 'Tungnan University'),
(35651, 29479, 'zh', 'name', 'ę±å—ē§‘ęŠ€å¤§å­ø'),
(35652, 29480, 'en', 'name', 'Ukrainian Engineering Pedagogics Academy'),
(35653, 29480, 'ru', 'name', 'Š£ŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń инженерно-ŠæŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(35654, 29480, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° інженерно-пеГагогічна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(35655, 29481, 'en', 'name', 'Jackson County Historical Society'),
(35656, 29482, 'en', 'name', 'Ministry of Internal Affairs of the Russian Federation'),
(35657, 29482, 'ru', 'name', 'ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Šž Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(35658, 29483, 'en', 'name', 'Vinh Medical University'),
(35659, 29483, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y khoa Vinh'),
(35660, 29484, 'en', 'name', 'Old South Association'),
(35661, 29485, 'en', 'name', 'Institute of International Business Education'),
(35662, 29485, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾Š³Š¾ бизнес-Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(35663, 29486, 'bn', 'name', 'ą¦øą¦¾ą¦°ą§ą¦¦ą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(35664, 29486, 'en', 'name', 'Southern University'),
(35665, 29487, 'en', 'name', 'Conservation Center for Art and Historic Artifacts'),
(35666, 29488, 'en', 'name', 'Carson Newman University'),
(35667, 29489, 'en', 'name', 'All Saints University Lango'),
(35668, 29490, 'en', 'name', 'Redwood Library and Athenaeum'),
(35669, 29491, 'el', 'name', 'Μεσογειακό Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī”Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ·Ļ‚'),
(35670, 29491, 'en', 'name', 'Mediterranean Institute of Management'),
(35671, 29492, 'no_lang_code', 'name', 'BorsodChem (Czechia)'),
(35672, 29493, 'no_lang_code', 'name', 'Royal HaskoningDHV (Czechia)'),
(35673, 29494, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł…Ł‡ŁˆŲ±ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(35674, 29494, 'en', 'name', 'Jamhuriya University of Science and Technology'),
(35675, 29494, 'so', 'name', 'Jaamacada Jamhuriya'),
(35676, 29495, 'en', 'name', 'University of Medicine Magway'),
(35677, 29496, 'en', 'name', 'FishAmerica Foundation'),
(35678, 29497, 'en', 'name', 'Asia Life University'),
(35679, 29497, 'ko', 'name', 'ė³µģŒģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(35680, 29498, 'ja', 'name', 'åŗƒå³¶ę–‡åŒ–å­¦åœ’å¤§å­¦'),
(35681, 29498, 'no_lang_code', 'name', 'Hiroshima Bunka Gakuen University'),
(35682, 29499, 'en', 'name', 'Frederick Community College'),
(35683, 29500, 'id', 'name', 'Universitas Satya Negara Indonesia'),
(35684, 29501, 'en', 'name', 'Chesterfield County Public Library'),
(35685, 29502, 'en', 'name', 'Xingtai University'),
(35686, 29502, 'zh', 'name', '邢台学院'),
(35687, 29503, 'bg', 'name', 'Централна Š»Š°Š±Š¾Ń€Š°Ń‚Š¾Ń€ŠøŃ по ŃŠ»ŃŠŠ½Ń‡ŠµŠ²Š° ŠµŠ½ŠµŃ€Š³ŠøŃ Šø нови енергийни източници'),
(35688, 29503, 'en', 'name', 'Central Laboratory of Solar Energy and New Energy Sources'),
(35689, 29504, 'id', 'name', 'Universitas Subang'),
(35690, 29505, 'en', 'name', 'Nihon Bunka University'),
(35691, 29505, 'ja', 'name', 'ę—„ęœ¬ę–‡åŒ–å¤§å­¦'),
(35692, 29506, 'no_lang_code', 'name', 'Termizo (Czechia)'),
(35693, 29507, 'no_lang_code', 'name', 'Patron Bohemia (Czechia)'),
(35694, 29508, 'en', 'name', 'Martinsburg - Berkeley County Public Libraries'),
(35695, 29509, 'id', 'name', 'Institut Teknologi Budi Utomo'),
(35696, 29510, 'en', 'name', 'Moscow Financial and Economic Institute'),
(35697, 29510, 'ru', 'name', 'Московский финансово-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(35698, 29511, 'az', 'name', 'Qərbi Kaspi Universiteti'),
(35699, 29511, 'en', 'name', 'Western Caspian University'),
(35700, 29512, 'en', 'name', 'Eternal University'),
(35701, 29513, 'id', 'name', 'Universitas Pancasakti Makassar'),
(35702, 29514, 'en', 'name', 'Osaka University of Human Sciences'),
(35703, 29514, 'ja', 'name', 'å¤§é˜Ŗäŗŗé–“ē§‘å­¦å¤§å­¦'),
(35704, 29515, 'en', 'name', 'Essentuki Institute of Management Business and Law'),
(35705, 29515, 'ru', 'name', 'Š•ŃŃŠµŠ½Ń‚ŃƒŠŗŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ, бизнеса Šø права'),
(35706, 29516, 'en', 'name', 'Chuka University'),
(35707, 29517, 'ja', 'name', 'ę­¦č”µé‡Žå­¦é™¢å¤§å­¦'),
(35708, 29517, 'no_lang_code', 'name', 'Musashino Gakuin University'),
(35709, 29518, 'en', 'name', 'Haaga-Helia University of Applied Sciences'),
(35710, 29518, 'fi', 'name', 'Haaga-Helia ammattikorkeakoulu'),
(35711, 29519, 'en', 'name', 'Dixon University Center'),
(35712, 29520, 'en', 'name', 'SEGi University'),
(35713, 29520, 'ms', 'name', 'Universiti SEGi'),
(35714, 29521, 'en', 'name', 'Wirral University Teaching Hospital NHS Foundation Trust'),
(35715, 29522, 'bs', 'name', 'Univerzitetska sinergija'),
(35716, 29522, 'en', 'name', 'University Sinergija'),
(35717, 29523, 'en', 'name', 'Belgorod University of Cooperation, Economics and Law'),
(35718, 29523, 'ru', 'name', 'БелгороГский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ кооперации, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(35719, 29524, 'en', 'name', 'Ho Chi Minh City University of Fine Arts'),
(35720, 29524, 'fr', 'name', 'UniversitĆ© des beaux-arts d’hĆ“-chi-minh-ville'),
(35721, 29524, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Mỹ thuįŗ­t ThĆ nh phố Hồ ChĆ­ Minh'),
(35722, 29525, 'en', 'name', 'Moscow City University'),
(35723, 29525, 'ru', 'name', 'Московский гороГской ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35724, 29526, 'no_lang_code', 'name', 'Envisan GEM (Czechia)'),
(35725, 29527, 'en', 'name', 'Birmingham Public Library'),
(35726, 29528, 'en', 'name', 'Meio University'),
(35727, 29528, 'ja', 'name', 'åę”œå¤§å­¦'),
(35728, 29529, 'en', 'name', 'WuFeng University'),
(35729, 29529, 'zh', 'name', 'å³é³³ē§‘ęŠ€å¤§å­ø'),
(35730, 29530, 'en', 'name', 'Morris College'),
(35731, 29531, 'en', 'name', 'Congress for the New Urbanism'),
(35732, 29532, 'en', 'name', 'Department of Energy and Environment'),
(35733, 29533, 'en', 'name', 'International Center of Medieval Art'),
(35734, 29534, 'no_lang_code', 'name', 'Payap University');
INSERT INTO `ror_settings` VALUES
(35735, 29534, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø²ąø¢ąø±ąøž'),
(35736, 29535, 'en', 'name', 'Kyiv University of Law'),
(35737, 29535, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ права'),
(35738, 29536, 'en', 'name', 'Academy of Hotel Management and Catering Industry'),
(35739, 29536, 'pl', 'name', 'L’école supĆ©rieure d’hōtellerie et de gastronomie'),
(35740, 29537, 'en', 'name', 'Fort Collins Museum of Discovery'),
(35741, 29538, 'en', 'name', 'Dongbei University of Finance and Economics'),
(35742, 29538, 'zh', 'name', 'äøœåŒ—č“¢ē»å¤§å­¦'),
(35743, 29539, 'en', 'name', 'Gibbes Museum of Art'),
(35744, 29540, 'en', 'name', 'Poznan School of Logistics'),
(35745, 29540, 'pl', 'name', 'Wyższa Szkoła Logistyki'),
(35746, 29541, 'en', 'name', 'Tucson Museum of Art'),
(35747, 29542, 'no_lang_code', 'name', 'STEM (Czechia)'),
(35748, 29543, 'en', 'name', 'University Pavaresia Vlore'),
(35749, 29543, 'sq', 'name', 'Universiteti Pavarƫsia Vlorƫ'),
(35750, 29544, 'en', 'name', 'International University in Geneva'),
(35751, 29545, 'cs', 'name', 'Nadace pro Dějiny kultury ve StřednĆ­ Evropě'),
(35752, 29546, 'en', 'name', 'Moscow State Institute of Electronics and Mathematics'),
(35753, 29546, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø Šø математики'),
(35754, 29547, 'id', 'name', 'Universitas Balikpapan'),
(35755, 29548, 'pl', 'name', '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'),
(35756, 29549, 'id', 'name', 'Universitas Hindu Indonesia'),
(35757, 29550, 'id', 'name', 'Universitas Islam Jakarta'),
(35758, 29551, 'en', 'name', 'Hồng Đức University'),
(35759, 29551, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c Hồng Đức'),
(35760, 29551, 'zh', 'name', '擪德大学'),
(35761, 29552, 'en', 'name', 'Seacoast Science Center'),
(35762, 29553, 'no_lang_code', 'name', 'Dupres Group (Slovakia)'),
(35763, 29554, 'en', 'name', 'Riverhead Foundation for Marine Research and Preservation'),
(35764, 29555, 'en', 'name', 'Khayyam University'),
(35765, 29555, 'fa', 'name', 'دانؓگاه Ų®ŪŒŲ§Ł…'),
(35766, 29556, 'en', 'name', 'Tokyo Women''s College of Physical Education'),
(35767, 29556, 'ja', 'name', 'ę±äŗ¬å„³å­ä½“č‚²å¤§å­¦'),
(35768, 29557, 'en', 'name', 'Pandit Sundarlal Sharma Open University'),
(35769, 29557, 'hi', 'name', 'ą¤Ŗą¤£ą„ą¤”ą¤æą¤¤ ą¤øą„ą¤Øą„ą¤¦ą¤°ą¤²ą¤¾ą¤² ą¤¶ą¤°ą„ą¤®ą¤¾ (ą¤®ą„ą¤•ą„ą¤¤) ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(35770, 29558, 'id', 'name', 'Universitas Tulungagung'),
(35771, 29559, 'en', 'name', 'European University of Scents and Flavors'),
(35772, 29559, 'fr', 'name', 'UniversitƩ EuropƩenne des Senteurs & Saveur'),
(35773, 29560, 'en', 'name', 'Kuban Institute of International Business and Management'),
(35774, 29561, 'en', 'name', 'Dauphin County Library System'),
(35775, 29562, 'en', 'name', 'Chicago Architecture Foundation'),
(35776, 29563, 'bn', 'name', 'ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(35777, 29563, 'en', 'name', 'Eastern University'),
(35778, 29564, 'en', 'name', 'Center for Puppetry Arts'),
(35779, 29565, 'en', 'name', 'Pacific School of Religion'),
(35780, 29566, 'en', 'name', 'LeRoy Collins Leon County Public Library'),
(35781, 29567, 'en', 'name', 'Orenburg Institute of Economics and Culture'),
(35782, 29567, 'ru', 'name', 'ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(35783, 29568, 'en', 'name', 'Kirkwood Public Library'),
(35784, 29569, 'en', 'name', 'Nueva Vizcaya State University'),
(35785, 29570, 'en', 'name', 'Miyazaki International College'),
(35786, 29570, 'ja', 'name', '宮哎国際大学'),
(35787, 29571, 'en', 'name', 'Regional Open Social Institute'),
(35788, 29571, 'ru', 'name', 'Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ открытый ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(35789, 29572, 'en', 'name', 'Rajin University of Marine Transport'),
(35790, 29572, 'ko', 'name', 'ė‚˜ģ§„ķ•“ģš“ėŒ€ķ•™ ė§Œė“¤źø°'),
(35791, 29573, 'en', 'name', 'Turkmen State Pedagogical Institute named Seidnazar Seydi'),
(35792, 29573, 'tk', 'name', 'Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Дейитназара ДейГи'),
(35793, 29574, 'en', 'name', 'Korea Baptist Theological University and Seminary'),
(35794, 29574, 'ko', 'name', 'ģ¹Øė”€ģ‹ ķ•™ėŒ€ķ•™źµ'),
(35795, 29575, 'no_lang_code', 'name', 'Cogebi (Czechia)'),
(35796, 29576, 'no_lang_code', 'name', 'Skanska (Czechia)'),
(35797, 29577, 'en', 'name', 'Gulf & South Atlantic Fisheries Foundation'),
(35798, 29578, 'en', 'name', 'Ecotrust'),
(35799, 29579, 'en', 'name', 'Dwijendra University'),
(35800, 29579, 'id', 'name', 'Universitas Dwijendra'),
(35801, 29580, 'en', 'name', 'Apollos University'),
(35802, 29581, 'en', 'name', 'American Association for State and Local History'),
(35803, 29582, 'id', 'name', 'Universitas Kader Bangsa'),
(35804, 29583, 'en', 'name', 'Aichi Sangyo University'),
(35805, 29583, 'ja', 'name', 'ę„›ēŸ„ē”£ę„­å¤§å­¦'),
(35806, 29584, 'en', 'name', 'LEC Tokyo Legal Mind University'),
(35807, 29584, 'ja', 'name', 'LECę±äŗ¬ćƒŖćƒ¼ć‚¬ćƒ«ćƒžć‚¤ćƒ³ćƒ‰å¤§å­¦é™¢å¤§å­¦'),
(35808, 29585, 'no_lang_code', 'name', 'Regenstrief Institute'),
(35809, 29586, 'en', 'name', 'Kitchen Sisters Productions'),
(35810, 29587, 'en', 'name', 'Parrish Art Museum'),
(35811, 29588, 'en', 'name', 'Illinois Historic Preservation Agency'),
(35812, 29589, 'en', 'name', 'Myitkyina University'),
(35813, 29589, 'my', 'name', 'မြစ်ကြီးနား į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(35814, 29590, 'en', 'name', 'Islamic Azad University of Arsanjan'),
(35815, 29590, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ارسنجان'),
(35816, 29591, 'en', 'name', 'Chien Hsin University of Science and Technology'),
(35817, 29591, 'zh', 'name', 'å„č”Œē§‘ęŠ€å¤§å­ø'),
(35818, 29592, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Дпортна ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ "Васил Левски"'),
(35819, 29592, 'en', 'name', 'National Sports Academy Vassil Levski'),
(35820, 29593, 'en', 'name', 'Vyatka State Agricultural Academy'),
(35821, 29593, 'ru', 'name', 'Š’ŃŃ‚ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(35822, 29594, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŲÆŁŠŲÆŲ©'),
(35823, 29594, 'en', 'name', 'Hodeidah University'),
(35824, 29595, 'no_lang_code', 'name', 'MemBrain (Czechia)'),
(35825, 29596, 'en', 'name', 'Shreemati Nathibai Damodar Thackersey Women''s University'),
(35826, 29596, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ą¤®ą¤¤ą„€ ą¤Øą¤¾ą¤„ą„€ą¤¬ą¤¾ą¤ˆ ą¤¦ą¤¾ą¤®ą„‹ą¤¦ą¤° ą¤ ą¤¾ą¤•ą¤°ą¤øą„€ महिला ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(35827, 29597, 'en', 'name', 'American Architectural Foundation'),
(35828, 29598, 'en', 'name', 'Brooklyn Museum'),
(35829, 29599, 'en', 'name', 'SeaWeb'),
(35830, 29600, 'ja', 'name', 'å®®å“Žē”£ę„­ēµŒå–¶å¤§å­¦'),
(35831, 29600, 'no_lang_code', 'name', 'Miyazaki Sangyo-keiei University'),
(35832, 29601, 'en', 'name', 'Greenville County Library System'),
(35833, 29602, 'en', 'name', 'Carmel Clay Public Library'),
(35834, 29603, 'no_lang_code', 'name', 'LA Composite (Czechia)'),
(35835, 29604, 'en', 'name', 'Academy of Fine Arts In Łódź'),
(35836, 29604, 'pl', 'name', 'Władysław Strzemiński'),
(35837, 29605, 'no_lang_code', 'name', 'ProjectSoft (Czechia)'),
(35838, 29606, 'en', 'name', 'National Council for History Education'),
(35839, 29607, 'en', 'name', 'Institute of Nautical Archaeology'),
(35840, 29608, 'en', 'name', 'Boundless Readers'),
(35841, 29609, 'en', 'name', 'Tambov State University'),
(35842, 29609, 'ru', 'name', 'Тамбовский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35843, 29610, 'en', 'name', 'Billings Public Library'),
(35844, 29611, 'en', 'name', 'State University of Makassar'),
(35845, 29611, 'id', 'name', 'Universitas Negeri Makassar'),
(35846, 29612, 'en', 'name', 'Ural State Law University'),
(35847, 29612, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(35848, 29613, 'en', 'name', 'Lees McRae College'),
(35849, 29614, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© حمدان بن Ł…Ų­Ł…ŲÆ Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†ŁŠŲ©'),
(35850, 29614, 'en', 'name', 'Hamdan Bin Mohammed Smart University'),
(35851, 29615, 'en', 'name', 'Kyoto Seika University'),
(35852, 29615, 'ja', 'name', 'äŗ¬éƒ½ē²¾čÆå¤§å­¦'),
(35853, 29616, 'no_lang_code', 'name', 'VUES Brno (Czechia)'),
(35854, 29617, 'en', 'name', 'Constantin Brâncoveanu University'),
(35855, 29617, 'ro', 'name', 'Universitatea Constantin Brâncoveanu'),
(35856, 29618, 'id', 'name', 'Universitas Kebangsaan Republik Indonesia'),
(35857, 29619, 'en', 'name', 'Yangon University of Education'),
(35858, 29619, 'my', 'name', 'į€›į€”į€ŗį€€į€Æį€”į€ŗį€•į€Šį€¬į€›į€±į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(35859, 29620, 'ja', 'name', 'ę„›å›½å­¦åœ’å¤§å­¦'),
(35860, 29620, 'no_lang_code', 'name', 'Aikoku Gakuen University'),
(35861, 29621, 'en', 'name', 'Oxnard Public Library'),
(35862, 29622, 'en', 'name', 'Xi''an International Studies University'),
(35863, 29622, 'zh', 'name', '脿安外国语大学'),
(35864, 29623, 'en', 'name', 'St. Paul University Iloilo'),
(35865, 29624, 'en', 'name', 'Carnegie Library of Pittsburgh'),
(35866, 29625, 'id', 'name', 'Universitas Islam Malang'),
(35867, 29626, 'hu', 'name', 'Sola Scriptura Teológiai Főiskola'),
(35868, 29627, 'en', 'name', 'Hokkaido University of Science'),
(35869, 29627, 'ja', 'name', 'åŒ—ęµ·é“ē§‘å­¦å¤§å­¦'),
(35870, 29628, 'en', 'name', 'Lake Region State College'),
(35871, 29629, 'en', 'name', 'Yaroslav Mudryi National Law University'),
(35872, 29629, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Ярослава ŠœŃƒŠ“рого'),
(35873, 29630, 'en', 'name', 'Belleville Public Library'),
(35874, 29631, 'en', 'name', 'Den-en Chofu University'),
(35875, 29631, 'ja', 'name', 'ē”°åœ’čŖæåøƒå­¦åœ’å¤§å­¦'),
(35876, 29632, 'en', 'name', 'Museum of New Mexico Foundation'),
(35877, 29633, 'id', 'name', 'Universitas Hang Tuah'),
(35878, 29634, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© دبي'),
(35879, 29634, 'en', 'name', 'University of Dubai'),
(35880, 29635, 'en', 'name', 'Piedmont International University'),
(35881, 29636, 'id', 'name', 'Universitas Pgri Banyuwangi'),
(35882, 29637, 'en', 'name', 'Yichun University'),
(35883, 29637, 'zh', 'name', 'å®œę˜„å­¦é™¢'),
(35884, 29638, 'en', 'name', 'Nippon Institute of Technology'),
(35885, 29638, 'ja', 'name', 'ę—„ęœ¬å·„ę„­å¤§å­¦'),
(35886, 29639, 'en', 'name', 'Korean Bible University'),
(35887, 29640, 'en', 'name', 'Udon Thani Rajabhat University'),
(35888, 29640, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø­ąøøąø”ąø£ąø˜ąø²ąø™ąøµ'),
(35889, 29641, 'no_lang_code', 'name', 'Bombardier (United Kingdom)'),
(35890, 29642, 'en', 'name', 'Kursk Institute of Management, Economics and Busines'),
(35891, 29642, 'ru', 'name', 'ŠšŃƒŃ€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø бизнеса'),
(35892, 29643, 'en', 'name', 'Walters Art Museum'),
(35893, 29644, 'cs', 'name', 'VlastivědnĆ© Muzeum Dr. HostaÅ”e v Klatovech'),
(35894, 29645, 'pl', 'name', 'Europejska Akademia Sztuk w Warszawie'),
(35895, 29646, 'en', 'name', 'St. Elizabeth College of Health and Social Work'),
(35896, 29646, 'sk', 'name', 'VysokÔ Škola Zdravotníctva a SociÔlnej PrÔce sv. Alžbety'),
(35897, 29647, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ؓقراؔ'),
(35898, 29647, 'no_lang_code', 'name', 'Shaqra University'),
(35899, 29648, 'cs', 'name', 'Centrum Stavebního Inženýrství'),
(35900, 29648, 'no_lang_code', 'name', 'Centre of Civil Engineering (Czechia)'),
(35901, 29649, 'en', 'name', 'Historic Lexington Foundation'),
(35902, 29650, 'id', 'name', 'Universitas Merdeka Madiun'),
(35903, 29651, 'en', 'name', 'Togliatti Academy of Management'),
(35904, 29652, 'en', 'name', 'Mid Western University'),
(35905, 29652, 'ne', 'name', 'ą¤®ą¤§ą„ą¤Æą¤Ŗą¤¶ą„ą¤šą¤æą¤®ą¤¾ą¤žą„ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(35906, 29653, 'en', 'name', 'Chiba Institute of Science'),
(35907, 29653, 'ja', 'name', 'åƒč‘‰ē§‘å­¦å¤§å­¦'),
(35908, 29654, 'en', 'name', 'B.S. Ricks Memorial Library'),
(35909, 29655, 'en', 'name', 'State Academy of Arts of Turkmenistan'),
(35910, 29655, 'tk', 'name', 'Türkmenistanyň Döwlet çeperçilik akademiýasy'),
(35911, 29656, 'en', 'name', 'Talbot Historical Society'),
(35912, 29657, 'en', 'name', 'Academy of Performing Arts in Bratislava'),
(35913, 29657, 'sk', 'name', 'VysokÔ Ŕkola múzických umení v Bratislave'),
(35914, 29658, 'en', 'name', 'Pejepscot Historical Society'),
(35915, 29659, 'en', 'name', 'Odessa State University of Internal Affairs'),
(35916, 29659, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(35917, 29660, 'id', 'name', 'Universitas Muhammadiyah Semarang'),
(35918, 29661, 'en', 'name', 'American Research Institute in Turkey'),
(35919, 29662, 'en', 'name', 'William K. Sanford Town Library'),
(35920, 29663, 'no_lang_code', 'name', 'Rigel (United States)'),
(35921, 29664, 'no_lang_code', 'name', 'Å meral Brno (Czechia)'),
(35922, 29665, 'en', 'name', 'Gilder Lehrman Institute of American History'),
(35923, 29666, 'ja', 'name', 'åÆŒå£«åøøč‘‰å¤§å­¦'),
(35924, 29666, 'no_lang_code', 'name', 'Fuji Tokoha University'),
(35925, 29667, 'en', 'name', 'Janabadra University'),
(35926, 29668, 'en', 'name', 'Galesburg Public Library'),
(35927, 29669, 'id', 'name', 'Universitas Mathla''ul Anwar Banten'),
(35928, 29670, 'en', 'name', 'Beppu University'),
(35929, 29670, 'ja', 'name', '刄府大学'),
(35930, 29671, 'en', 'name', 'Saint Petersburg Social and Economic Institute'),
(35931, 29671, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(35932, 29672, 'en', 'name', 'Higher School of Social Technologies'),
(35933, 29672, 'lv', 'name', 'SOCIĀLO TEHNOLOĢIJU AUGSTSKOLA'),
(35934, 29673, 'en', 'name', 'Danforth at Framingham State University'),
(35935, 29674, 'en', 'name', 'Saratov State University'),
(35936, 29674, 'ru', 'name', 'Даратовский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š“. Š§ŠµŃ€Š½Ń‹ŃˆŠµŠ²ŃŠŗŠ¾Š³Š¾'),
(35937, 29675, 'en', 'name', 'Institute Unic'),
(35938, 29675, 'ru', 'name', 'ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ Гистанционного Š¾Š±ŃƒŃ‡ŠµŠ½ŠøŃ'),
(35939, 29676, 'en', 'name', 'Union Theological Seminary'),
(35940, 29677, 'en', 'name', 'Kalmyk State University'),
(35941, 29677, 'ru', 'name', 'ŠšŠ°Š»Š¼Ń‹Ń†ŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35942, 29678, 'en', 'name', 'New York Studio School of Drawing Painting and Sculpture'),
(35943, 29679, 'en', 'name', 'Maharana Pratap University of Agriculture and Technology'),
(35944, 29680, 'en', 'name', 'Imperial College of Business Studies'),
(35945, 29680, 'ur', 'name', 'بزنس سٹڈیز کے Ų§Ł…Ł¾ŪŒŲ±ŪŒŁ„ کالج'),
(35946, 29681, 'en', 'name', 'Southwest Wetlands Interpretive Association'),
(35947, 29682, 'en', 'name', 'Portland Public Library'),
(35948, 29683, 'en', 'name', 'Hot Springs County Museum and Cultural Center'),
(35949, 29684, 'am', 'name', 'į‹©įŠ’į‰² į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(35950, 29684, 'en', 'name', 'Unity University College'),
(35951, 29685, 'en', 'name', 'Sambalpur University Institute of Information Technology'),
(35952, 29686, 'en', 'name', 'Webster Museum and Historical Society'),
(35953, 29687, 'en', 'name', 'School District of Lee County'),
(35954, 29688, 'en', 'name', 'Webster University Ghana'),
(35955, 29689, 'en', 'name', 'Moscow State Technological University'),
(35956, 29689, 'ru', 'name', 'Московский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Технологический Университет'),
(35957, 29690, 'en', 'name', 'Kremenchuk Mykhailo Ostrohradskyi National University'),
(35958, 29690, 'ru', 'name', 'ŠšŃ€ŠµŠ¼ŠµŠ½Ń‡ŃƒŠ³ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35959, 29690, 'uk', 'name', 'ŠšŃ€ŠµŠ¼ŠµŠ½Ń‡ŃƒŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠœŠøŃ…Š°Š¹Š»Š° ŠžŃŃ‚Ń€Š¾Š³Ń€Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(35960, 29691, 'no_lang_code', 'name', 'Ekotoxa (Czechia)'),
(35961, 29692, 'en', 'name', 'Amistad Research Center'),
(35962, 29693, 'en', 'name', 'North Sichuan Medical University'),
(35963, 29693, 'zh', 'name', '川北医学院'),
(35964, 29694, 'en', 'name', 'University of Marketing and Distribution Sciences'),
(35965, 29694, 'ja', 'name', 'ęµé€šē§‘å­¦å¤§å­¦'),
(35966, 29695, 'en', 'name', 'Library of America'),
(35967, 29696, 'en', 'name', 'Cleveland Police Museum'),
(35968, 29697, 'en', 'name', 'North Carolina Coastal Federation'),
(35969, 29698, 'en', 'name', 'Berea International Theological Seminary'),
(35970, 29698, 'ko', 'name', 'ė² ė¢°ģ•„źµ­ģ œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(35971, 29699, 'en', 'name', 'Voronezh State Medical Academy named after N.N. Burdenko'),
(35972, 29699, 'ru', 'name', 'Воронежский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š.Š. Š‘ŃƒŃ€Š“ŠµŠ½ŠŗŠ¾'),
(35973, 29700, 'en', 'name', 'Yala Rajabhat University'),
(35974, 29700, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøŽąø¢ąø°ąø„ąø²'),
(35975, 29701, 'en', 'name', 'Omsk State Agrarian University'),
(35976, 29701, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П. А. Дтолыпина'),
(35977, 29702, 'en', 'name', 'University of International Business and Economics'),
(35978, 29702, 'zh', 'name', 'åÆ¹å¤–ē»ęµŽč“øę˜“å¤§å­¦'),
(35979, 29703, 'cs', 'name', 'Asociace inovačnĆ­ho podnikĆ”nĆ­ ČeskĆ© republiky z.s.'),
(35980, 29703, 'no_lang_code', 'name', 'Association of Innovative Entrepreneurship (Czechia)'),
(35981, 29704, 'en', 'name', 'John W. Higgins Armory'),
(35982, 29705, 'en', 'name', 'Bryansk State Technical University'),
(35983, 29705, 'ru', 'name', 'Š‘Ń€ŃŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(35984, 29706, 'en', 'name', 'National Afro-American Museum and Cultural Center'),
(35985, 29707, 'en', 'name', 'National Universities Commission'),
(35986, 29708, 'en', 'name', 'Karnataka State Women''s University'),
(35987, 29708, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ಮಹಿಳಾ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(35988, 29709, 'en', 'name', 'Institute of Contemporary Art'),
(35989, 29709, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Довременного Š˜ŃŠŗŃƒŃŃŃ‚ва'),
(35990, 29710, 'en', 'name', 'Academy of the Federal Security Service of the Russian Federation'),
(35991, 29710, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ безопасности Российской ФеГерации'),
(35992, 29711, 'en', 'name', 'Hope University'),
(35993, 29712, 'en', 'name', 'Soochow University'),
(35994, 29712, 'zh', 'name', 'ę±å³å¤§å­ø'),
(35995, 29713, 'en', 'name', 'Kumi University'),
(35996, 29714, 'id', 'name', 'Institut Ilmu Sosial dan Ilmu Politik Yapis Biak'),
(35997, 29715, 'cs', 'name', 'Centrum Pro Komunitnƭ PrƔci'),
(35998, 29716, 'en', 'name', 'Shenyang Sport University'),
(35999, 29716, 'zh', 'name', 'ę²ˆé˜³ä½“č‚²å­¦é™¢'),
(36000, 29717, 'id', 'name', 'Universitas Pawyatan Daha Kediri'),
(36001, 29718, 'de', 'name', 'Katholische Hochschule Mainz'),
(36002, 29718, 'en', 'name', 'Catholic University of Applied Sciences'),
(36003, 29719, 'en', 'name', 'Korea University'),
(36004, 29719, 'ja', 'name', 'ęœé®®å¤§å­¦ę ”'),
(36005, 29720, 'en', 'name', 'Vladimir Institute of Business'),
(36006, 29720, 'ru', 'name', 'ВлаГимирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(36007, 29721, 'en', 'name', 'Vinnytsia National Agrarian University'),
(36008, 29721, 'uk', 'name', 'Š’Š†ŠŠŠ˜Š¦Š¬ŠšŠ˜Š™ ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠ˜Š™ ŠŠ“Š ŠŠ ŠŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(36009, 29722, 'en', 'name', 'Takasaki City University of Economics'),
(36010, 29722, 'ja', 'name', 'é«˜å“ŽēµŒęøˆå¤§å­¦'),
(36011, 29723, 'bg', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ за музикални танци Šø изобразителни ŠøŠ·ŠŗŃƒŃŃ‚ва'),
(36012, 29723, 'en', 'name', 'Academy of Music, Dance and Fine Arts'),
(36013, 29724, 'en', 'name', 'Samara State Transport University'),
(36014, 29724, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(36015, 29725, 'en', 'name', 'Colorado Springs Pioneers Museum'),
(36016, 29726, 'en', 'name', 'Czech Zoological Society'),
(36017, 29727, 'en', 'name', 'Nizhny Novgorod State Agricultural Academy'),
(36018, 29728, 'no_lang_code', 'name', 'ABB (Czechia)'),
(36019, 29729, 'no_lang_code', 'name', 'Eckernforde Tanga University'),
(36020, 29730, 'en', 'name', 'Czech Union for Nature Conservation'),
(36021, 29731, 'en', 'name', 'Aleut Marine Mammal Commission'),
(36022, 29732, 'en', 'name', 'Tobolsk Pedagogical Institute named after D. I. Mendeleev'),
(36023, 29732, 'ru', 'name', 'Тобольский пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š”.И. МенГелеева'),
(36024, 29733, 'en', 'name', 'Bettendorf Public Library and Information Center'),
(36025, 29734, 'en', 'name', 'American Scandinavian Foundation'),
(36026, 29735, 'no_lang_code', 'name', 'STARMANS electronics (Czechia)'),
(36027, 29736, 'en', 'name', 'Billings Farm & Museum'),
(36028, 29737, 'en', 'name', 'Hidayatullah National Law University'),
(36029, 29737, 'hi', 'name', 'ą¤¹ą¤æą¤¦ą¤¾ą¤Æą¤¤ą„ą¤²ą„ą¤²ą¤¾ą¤¹ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(36030, 29738, 'en', 'name', 'Cagayan State University'),
(36031, 29738, 'tl', 'name', 'Pamantasang Estado sa Cagayan'),
(36032, 29739, 'en', 'name', 'Association for the Study of African American Life and History'),
(36033, 29740, 'no_lang_code', 'name', 'Polymer Institute Brno (Czechia)'),
(36034, 29741, 'en', 'name', 'Kyoto College of Graduate Studies for Informatics'),
(36035, 29741, 'ja', 'name', 'äŗ¬éƒ½ęƒ…å ±å¤§å­¦é™¢å¤§å­¦'),
(36036, 29742, 'en', 'name', 'King Sigismund Business School'),
(36037, 29743, 'en', 'name', 'WYSO Radio Station'),
(36038, 29744, 'en', 'name', 'Operation Opportunity Foundation'),
(36039, 29745, 'en', 'name', 'FamilySearch'),
(36040, 29746, 'en', 'name', 'Historical Society of Frankford'),
(36041, 29747, 'en', 'name', 'South Ural State Humanitarian Pedagogical University'),
(36042, 29747, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36043, 29748, 'id', 'name', 'Universitas Katolik Darma Cendika'),
(36044, 29749, 'es', 'name', 'Universidad de Sta. Isabel'),
(36045, 29750, 'en', 'name', 'Maritime Gloucester'),
(36046, 29751, 'en', 'name', 'Hiroshima Shudo University'),
(36047, 29751, 'ja', 'name', 'åŗƒå³¶äæ®é“å¤§å­¦'),
(36048, 29752, 'bg', 'name', 'Американски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(36049, 29752, 'en', 'name', 'American University in Bulgaria'),
(36050, 29753, 'en', 'name', 'State Musical Pedagogical Institute named M.M.Ippolitova-Ivanov'),
(36051, 29753, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š¼ŃƒŠ·Ń‹ŠŗŠ°Š»ŃŒŠ½Š¾-пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени М. М. Š˜ŠæŠæŠ¾Š»ŠøŃ‚Š¾Š²Š°-Иванова'),
(36052, 29754, 'en', 'name', 'De La Salle Catholic University'),
(36053, 29755, 'en', 'name', 'House of the Seven Gables'),
(36054, 29756, 'en', 'name', 'Institute of Practical Psychology and Psychoanalysis'),
(36055, 29756, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ практической психологии Šø психоанализа'),
(36056, 29757, 'en', 'name', 'Atyrau State University named of Kh.Dosmukhamedova'),
(36057, 29757, 'kk', 'name', 'ŠŃ‚Ń‹Ń€Š°Ńƒ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(36058, 29757, 'ru', 'name', 'ŠŃ‚Ń‹Ń€Š°ŃƒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š„. Š”Š¾ŃŠ¼ŃƒŃ…Š°Š¼ŠµŠ“Š¾Š²Š°'),
(36059, 29758, 'en', 'name', 'University of East Yangon'),
(36060, 29758, 'my', 'name', 'ရန်ကုန် နရှေ့ပိုင်း į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(36061, 29759, 'en', 'name', 'The American University of Vietnam'),
(36062, 29759, 'vi', 'name', 'ĐẔi hį»c Mỹ tįŗ”i Việt Nam'),
(36063, 29760, 'en', 'name', 'Academy of Innovation Management'),
(36064, 29760, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ менеГжмента инноваций'),
(36065, 29761, 'en', 'name', 'Miyagi University'),
(36066, 29761, 'ja', 'name', '宮城大学'),
(36067, 29762, 'bn', 'name', 'ঢাকা ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(36068, 29762, 'en', 'name', 'Dhaka International University'),
(36069, 29763, 'no_lang_code', 'name', 'GeneTiCA (Czechia)'),
(36070, 29764, 'no_lang_code', 'name', 'Retia (Czechia)'),
(36071, 29765, 'en', 'name', 'Journey Through Hallowed Ground Partnership'),
(36072, 29766, 'en', 'name', 'George Enescu University of Arts of Iași'),
(36073, 29766, 'ro', 'name', 'Universitatea de Arte George Enescu din Iași'),
(36074, 29767, 'no_lang_code', 'name', 'Continental (Czechia)'),
(36075, 29768, 'de', 'name', 'AuslƤnderuniversitƤt Siena'),
(36076, 29768, 'en', 'name', 'University for Foreigners of Siena'),
(36077, 29768, 'fr', 'name', 'UniversitƩ pour Ʃtrangers de sienne'),
(36078, 29768, 'it', 'name', 'UniversitĆ  per stranieri di Siena'),
(36079, 29769, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŲÆŁŠŁ†Ų© السادات'),
(36080, 29769, 'en', 'name', 'University of Sadat City'),
(36081, 29770, 'en', 'name', 'Mie Prefectural College Of Nursing'),
(36082, 29770, 'ja', 'name', 'äø‰é‡ēœŒē«‹ēœ‹č­·å¤§å­¦'),
(36083, 29771, 'en', 'name', 'Krasnoyarsk State Agrarian University'),
(36084, 29771, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36085, 29772, 'en', 'name', 'Crimean Agrotechnological University'),
(36086, 29772, 'uk', 'name', 'ŠšŃ€ŠøŠ¼ŃŃŒŠŗŠøŠ¹ агротехнологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36087, 29773, 'cs', 'name', 'Výzkumný Ćŗstav pro hnědĆ© uhlĆ­ a.s.'),
(36088, 29773, 'no_lang_code', 'name', 'Research Institute for Brown Coal (Czechia)'),
(36089, 29774, 'en', 'name', 'Maine Classical Association'),
(36090, 29775, 'en', 'name', 'Preston University'),
(36091, 29775, 'ur', 'name', 'Ł¾Ų±ŪŒŲ³Ł¹Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(36092, 29776, 'en', 'name', 'International Business School at Vilnius University'),
(36093, 29776, 'lt', 'name', 'Vilniaus universiteto Tarptautinio verslo mokykla'),
(36094, 29777, 'en', 'name', 'Stavropol Finance and Economics Institute'),
(36095, 29778, 'en', 'name', 'New Era University'),
(36096, 29779, 'en', 'name', 'Kazakh National Medical University'),
(36097, 29779, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› ұлттық меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(36098, 29779, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. Š”. ŠŃŃ„ŠµŠ½Š“ŠøŃŃ€Š¾Š²Š°'),
(36099, 29780, 'en', 'name', 'Guilderland Public Library'),
(36100, 29781, 'en', 'name', 'Muria Kudus University'),
(36101, 29781, 'id', 'name', 'Universitas Muria Kudus'),
(36102, 29782, 'en', 'name', 'Virginia International University'),
(36103, 29783, 'en', 'name', 'Ural Institute of the Stock Market'),
(36104, 29783, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ФонГового Рынка'),
(36105, 29784, 'no_lang_code', 'name', 'Janus University'),
(36106, 29785, 'no_lang_code', 'name', 'dataPartner (Czechia)'),
(36107, 29786, 'en', 'name', 'St. Peter''s Institute of Higher Education and Research'),
(36108, 29787, 'en', 'name', 'Hoa Sen University'),
(36109, 29787, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Hoa Sen'),
(36110, 29787, 'zh', 'name', 'čŽ²čŠ±å¤§å­¦'),
(36111, 29788, 'no_lang_code', 'name', 'Orgrez (Czechia)'),
(36112, 29789, 'en', 'name', 'Moscow University for the Humanities'),
(36113, 29789, 'ru', 'name', 'Московский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36114, 29790, 'en', 'name', 'Mexican American Catholic College'),
(36115, 29791, 'en', 'name', 'American Numismatic Society'),
(36116, 29792, 'en', 'name', 'Institute of Market Economy, Social Policy and Law'),
(36117, 29792, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыночной ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ политики Šø права'),
(36118, 29793, 'en', 'name', 'Samar State University'),
(36119, 29794, 'en', 'name', 'Historic Hawaii Foundation'),
(36120, 29795, 'en', 'name', 'Ryazan State Agrotechnological University'),
(36121, 29795, 'ru', 'name', 'Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ агротехнологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П.А.ŠšŠ¾ŃŃ‚Ń‹Ń‡ŠµŠ²Š°'),
(36122, 29796, 'en', 'name', 'International Academy of Marketing and Management'),
(36123, 29796, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ маркетинга Šø менеГжмента'),
(36124, 29797, 'en', 'name', 'North Caucasian Social Institute'),
(36125, 29797, 'ru', 'name', 'Деверо-Кавказский ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(36126, 29798, 'de', 'name', 'PEF Privatuniversität für Management'),
(36127, 29798, 'en', 'name', 'PEF Private University of Management Vienna'),
(36128, 29799, 'en', 'name', 'Kurgan State University'),
(36129, 29799, 'ru', 'name', 'ŠšŃƒŃ€Š³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36130, 29800, 'bn', 'name', 'নোয়াখালী ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(36131, 29800, 'en', 'name', 'Noakhali Science and Technology University'),
(36132, 29801, 'en', 'name', 'Osaka University of Arts'),
(36133, 29801, 'ja', 'name', 'å¤§é˜ŖčŠøč”“å¤§å­¦'),
(36134, 29802, 'en', 'name', 'Tyumen State Medical University'),
(36135, 29802, 'ru', 'name', 'Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36136, 29803, 'id', 'name', 'Universitas Baturaja'),
(36137, 29804, 'en', 'name', 'M. Akmullah Bashkir State Pedagogical University'),
(36138, 29804, 'ru', 'name', 'Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. ŠŠŗŠ¼ŃƒŠ»Š»Ń‹'),
(36139, 29805, 'en', 'name', 'Prague Research Institute of Railway Rolling Stock'),
(36140, 29805, 'no_lang_code', 'name', 'VUKV (Czechia)'),
(36141, 29806, 'en', 'name', 'Naresuan University Hospital'),
(36142, 29806, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ą¹€ąø£ąøØąø§ąø£'),
(36143, 29807, 'en', 'name', 'Utkal University of Culture'),
(36144, 29808, 'id', 'name', 'Universitas Islam Majapahit'),
(36145, 29809, 'en', 'name', 'Jefferson Patterson Park and Museum'),
(36146, 29810, 'id', 'name', 'Universitas Yos Soedarso'),
(36147, 29811, 'en', 'name', 'Luther Rice College and Seminary'),
(36148, 29812, 'en', 'name', 'Musashi University'),
(36149, 29812, 'ja', 'name', '武蔵大学'),
(36150, 29813, 'en', 'name', 'Institute of Law and Business'),
(36151, 29813, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса Šø права'),
(36152, 29814, 'en', 'name', 'Volga State University of Water Transport'),
(36153, 29814, 'ru', 'name', 'Волжский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного транспорта'),
(36154, 29815, 'en', 'name', 'Luarasi University'),
(36155, 29815, 'sq', 'name', 'Universiteti Luarasi'),
(36156, 29816, 'en', 'name', 'Irkutsk State Medical University'),
(36157, 29816, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36158, 29817, 'en', 'name', 'Geumgang University'),
(36159, 29817, 'ko', 'name', 'źøˆź°•ėŒ€ķ•™źµ'),
(36160, 29818, 'en', 'name', 'Bethlehem Area School District'),
(36161, 29819, 'en', 'name', 'Sardar Bahadur Khan Women''s University'),
(36162, 29819, 'ur', 'name', 'Ų³Ų±ŲÆŲ§Ų± بہادر خان Ų®ŁˆŲ§ŲŖŪŒŁ† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(36163, 29820, 'no_lang_code', 'name', 'Precheza (Czechia)'),
(36164, 29821, 'ja', 'name', 'å¤§é˜Ŗå„³å­¦é™¢å¤§å­¦'),
(36165, 29821, 'no_lang_code', 'name', 'Osaka Jogakuin University'),
(36166, 29822, 'en', 'name', 'Vilnius Academy of Arts'),
(36167, 29822, 'lt', 'name', 'Vilniaus dailės akademija'),
(36168, 29822, 'ru', 'name', 'Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠ°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(36169, 29823, 'en', 'name', 'The Dane G. Hansen Museum'),
(36170, 29824, 'en', 'name', 'Siberian State Aerospace University'),
(36171, 29824, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика М. Ф. Š ŠµŃˆŠµŃ‚Š½Ń‘Š²Š°'),
(36172, 29825, 'en', 'name', 'Multnomah County Library'),
(36173, 29826, 'en', 'name', 'United States University'),
(36174, 29827, 'en', 'name', 'University of Energy and Natural Resources'),
(36175, 29828, 'no_lang_code', 'name', 'Mikropur (Czechia)'),
(36176, 29829, 'no_lang_code', 'name', 'Maharaja Sriram Chandra Bhanja Deo University'),
(36177, 29829, 'or', 'name', 'ମହାରାଜା ą¬¶ą­ą¬°ą­€ą¬°ą¬¾ą¬® ą¬šą¬Øą­ą¬¦ą­ą¬° ą¬­ą¬žą­ą¬œ ଦେଓ ą¬‡ą¬‰ą¬Øą¬æą¬­ą¬°ą­ą¬øą¬æą¬Ÿą¬æ'),
(36178, 29830, 'en', 'name', 'Anacostia Watershed Society'),
(36179, 29831, 'no_lang_code', 'name', 'Tajmac-zps (Czechia)'),
(36180, 29832, 'bn', 'name', 'মানারাত ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(36181, 29832, 'en', 'name', 'Manarat International University'),
(36182, 29833, 'en', 'name', 'Taganrog State Pedagogical Institute'),
(36183, 29833, 'ru', 'name', 'Таганрогский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени А.П. Чехова'),
(36184, 29834, 'en', 'name', 'Surgut ''Planet'' Institute of World Economics and Business'),
(36185, 29834, 'ru', 'name', 'Š”ŃƒŃ€Š³ŃƒŃ‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мировой ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø бизнеса'),
(36186, 29835, 'en', 'name', 'Norman Rockwell Museum'),
(36187, 29836, 'en', 'name', 'Torch Trinity Graduate University'),
(36188, 29836, 'ko', 'name', 'ķšƒė¶ˆķŠøė¦¬ė‹ˆķ‹°ģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(36189, 29837, 'no_lang_code', 'name', 'Medical Technologies (Czechia)'),
(36190, 29838, 'en', 'name', 'Academy of Film & Multimedia ā€œMARUBIā€'),
(36191, 29838, 'sq', 'name', 'Akademia e Filmit dhe Multimedias Marubi'),
(36192, 29839, 'en', 'name', 'Institute of Business, Psychology and Management'),
(36193, 29839, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса, психологии Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(36194, 29840, 'en', 'name', 'Dagon University'),
(36195, 29840, 'my', 'name', 'ဒဂုံ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(36196, 29841, 'en', 'name', 'High Desert Museum'),
(36197, 29842, 'en', 'name', 'Mindanao University of Science and Technology'),
(36198, 29843, 'en', 'name', 'Western Reserve Historical Society'),
(36199, 29844, 'en', 'name', 'National History Center'),
(36200, 29845, 'en', 'name', 'Songkhla Rajabhat University'),
(36201, 29845, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąø‡ąø‚ąø„ąø²'),
(36202, 29846, 'en', 'name', 'Yokohama University of Pharmacy'),
(36203, 29846, 'ja', 'name', 'ęØŖęµœč–¬ē§‘å¤§å­¦'),
(36204, 29847, 'en', 'name', 'Retrospective Index to Music Periodicals'),
(36205, 29848, 'bn', 'name', 'বিজিসি ą¦Ÿą§ą¦°ą¦¾ą¦øą§ą¦Ÿ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ বাংলাদেশ'),
(36206, 29848, 'en', 'name', 'BGC Trust University Bangladesh'),
(36207, 29849, 'bn', 'name', 'বাংলাদেশ ą¦‰ą¦Øą§ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(36208, 29849, 'en', 'name', 'Bangladesh Open University'),
(36209, 29850, 'en', 'name', 'Vermont Fish & Wildlife Department'),
(36210, 29851, 'id', 'name', 'Universitas Aki'),
(36211, 29852, 'ca', 'name', 'Universitat PontifĆ­cia Lateranense'),
(36212, 29852, 'de', 'name', 'PƤpstliche LateranuniversitƤt'),
(36213, 29852, 'en', 'name', 'Pontifical Lateran University'),
(36214, 29852, 'fr', 'name', 'UniversitƩ pontificale du latran'),
(36215, 29852, 'it', 'name', 'Pontificia UniversitĆ  Lateranense'),
(36216, 29853, 'en', 'name', 'Tibiscus University of Timișoara'),
(36217, 29853, 'ro', 'name', 'Universitatea Tibiscus din Timișoara'),
(36218, 29854, 'en', 'name', 'History Center in Tompkins County'),
(36219, 29855, 'en', 'name', 'Saint-Petersburg Institute of Hospitality'),
(36220, 29855, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гостеприимства'),
(36221, 29856, 'en', 'name', 'Mahayana Sutra & Tantra Center'),
(36222, 29857, 'en', 'name', 'Irkutsk State Transport University'),
(36223, 29857, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(36224, 29858, 'en', 'name', 'Gandhara University'),
(36225, 29858, 'ur', 'name', 'گاندھارا ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(36226, 29859, 'en', 'name', 'Claremont Institute'),
(36227, 29860, 'en', 'name', 'Ulyanovsk State Agricultural Academy named after PA Stolypin'),
(36228, 29860, 'ru', 'name', 'Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(36229, 29861, 'en', 'name', 'Siberian Institute of Business and Information Technologies'),
(36230, 29861, 'ru', 'name', 'Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса Šø информационных технологий'),
(36231, 29862, 'en', 'name', 'Institute of Social and Humanities'),
(36232, 29862, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Šø Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… наук'),
(36233, 29863, 'en', 'name', 'University of Northern Philippines'),
(36234, 29863, 'tl', 'name', 'Pamantasan ng Hilagang Pilipinas'),
(36235, 29864, 'en', 'name', 'Kansai Gaidai University'),
(36236, 29864, 'ja', 'name', 'é–¢č„æå¤–å›½čŖžå¤§å­¦'),
(36237, 29865, 'no_lang_code', 'name', 'Vyrtych (Czechia)'),
(36238, 29866, 'en', 'name', 'Korea National Defense University'),
(36239, 29866, 'ko', 'name', 'źµ­ė°©ėŒ€ķ•™źµ'),
(36240, 29867, 'en', 'name', 'Centre for International Cooperation in Education'),
(36241, 29868, 'id', 'name', 'Universitas Dayanu Ikhsanuddin'),
(36242, 29868, 'jv', 'name', 'Dayanu Ikhsanuddin University'),
(36243, 29869, 'en', 'name', 'Samara State Technical University'),
(36244, 29869, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36245, 29870, 'en', 'name', 'Preble County Historical Society'),
(36246, 29871, 'no_lang_code', 'name', 'Trakce (Czechia)'),
(36247, 29872, 'en', 'name', 'National University of Ukraine on Physical Education and Sport'),
(36248, 29872, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ фізичного Š²ŠøŃ…Š¾Š²Š°Š½Š½Ń і ŃŠæŠ¾Ń€Ń‚Ńƒ України'),
(36249, 29873, 'en', 'name', 'International Institute of Management Arkhangelsk'),
(36250, 29873, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(36251, 29874, 'no_lang_code', 'name', 'BMT Medical Technology (Czechia)'),
(36252, 29875, 'cs', 'name', 'PamƔtnƭk NƔrodnƭho Pƭsemnictvƭ'),
(36253, 29876, 'en', 'name', 'Anna Maria College'),
(36254, 29877, 'cs', 'name', 'HvězdĆ”rna v Úpici, Observatory Úpice'),
(36255, 29878, 'en', 'name', 'Allentown Art Museum'),
(36256, 29879, 'en', 'name', 'Denver Art Museum'),
(36257, 29880, 'en', 'name', 'Beatrice Public Library'),
(36258, 29881, 'en', 'name', 'East European Institute of Psychoanalysis'),
(36259, 29881, 'ru', 'name', 'Восточно-Европейский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŸŃŠøŃ…Š¾Š°Š½Š°Š»ŠøŠ·Š°'),
(36260, 29882, 'en', 'name', 'Hermitage Museum'),
(36261, 29883, 'en', 'name', 'Geneva Historical Society'),
(36262, 29884, 'en', 'name', 'Yakima Valley Libraries'),
(36263, 29885, 'en', 'name', 'Commercial Fisheries Research Foundation'),
(36264, 29886, 'en', 'name', 'Ukrainian Catholic University'),
(36265, 29886, 'pl', 'name', 'Ukraiński Uniwersytet Katolicki'),
(36266, 29886, 'ru', 'name', 'Украинский католический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36267, 29886, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ ŠŗŠ°Ń‚Š¾Š»ŠøŃ†ŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36268, 29887, 'en', 'name', 'Wichita Public Library'),
(36269, 29888, 'ja', 'name', 'å²é˜œč–å¾³å­¦åœ’å¤§å­¦'),
(36270, 29888, 'no_lang_code', 'name', 'Gifu Shotoku Gakuen University'),
(36271, 29889, 'en', 'name', 'Academy of Economic Security'),
(36272, 29889, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Š¹ безопасности'),
(36273, 29890, 'en', 'name', 'EKA University of Applied Sciences'),
(36274, 29890, 'lv', 'name', 'Ekonomikas un kultƻras augstskola'),
(36275, 29891, 'no_lang_code', 'name', 'Explosia (Czechia)'),
(36276, 29892, 'en', 'name', 'Los Angeles Education Partnership'),
(36277, 29893, 'en', 'name', 'Nan Kai University of Technology'),
(36278, 29893, 'zh', 'name', 'å—é–‹ē§‘ęŠ€å¤§å­ø'),
(36279, 29894, 'en', 'name', 'Tver Institute of Ecology and Law'),
(36280, 29894, 'ru', 'name', 'Тверской ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø права'),
(36281, 29895, 'id', 'name', 'Universitas Nasional Pasim'),
(36282, 29896, 'id', 'name', 'Universitas Muhammadiyah Tapanuli Selatan'),
(36283, 29897, 'en', 'name', 'Massachusetts Department of Fish & Game'),
(36284, 29898, 'en', 'name', 'Yangtze Normal University'),
(36285, 29898, 'zh', 'name', 'é•æę±ŸåøˆčŒƒå­¦é™¢'),
(36286, 29899, 'en', 'name', 'Sulaimani Polytechnic University'),
(36287, 29899, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ Ł¾Ū†Ł„ŪŒŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ Ų³Ł„ŪŽŁ…Ų§Ł†ŪŒ'),
(36288, 29900, 'en', 'name', 'Bee Research Institute'),
(36289, 29900, 'nl', 'name', 'Institut für Bienenforschung'),
(36290, 29901, 'en', 'name', 'University of Tyumen'),
(36291, 29901, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36292, 29902, 'en', 'name', 'Academy of Labour Social Relations and Tourism'),
(36293, 29902, 'uk', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń праці, ŃŠ¾Ń†Ń–Š°Š»ŃŒŠ½ŠøŃ… віГносин і Ń‚ŃƒŃ€ŠøŠ·Š¼Ńƒ'),
(36294, 29903, 'en', 'name', 'Ministry of Internal Affairs of the Republic of Tajikistan'),
(36295, 29903, 'tg', 'name', 'Вазорати корҳои Гохилии Ņ¶ŃƒŠ¼Ņ³ŃƒŃ€ŠøŠø Тоҷикистон'),
(36296, 29904, 'en', 'name', 'Richards Free Library'),
(36297, 29905, 'en', 'name', 'Private Higher School of Social Sciences, Computer Science and Medical'),
(36298, 29905, 'pl', 'name', 'Prywatna Wyższa Szkoła Nauk Społecznych, Komputerowych i Medycznych'),
(36299, 29906, 'en', 'name', 'St. Lucie County Regional History Center'),
(36300, 29907, 'en', 'name', 'Language of Dance Centre'),
(36301, 29908, 'en', 'name', 'Moscow Conservatory'),
(36302, 29908, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. П. И. Чайковского'),
(36303, 29909, 'en', 'name', 'Hakuoh University'),
(36304, 29909, 'ja', 'name', 'ē™½é“Žå¤§å­¦'),
(36305, 29910, 'en', 'name', 'Lower Columbia Estuary Partnership'),
(36306, 29911, 'en', 'name', 'Saint Petersburg State Academy of Veterinary Medicine'),
(36307, 29911, 'ru', 'name', 'Š”ŠŠŠšŠ¢-ŠŸŠ•Š¢Š•Š Š‘Š£Š Š“Š”ŠšŠŠÆ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ Š’Š•Š¢Š•Š Š˜ŠŠŠ ŠŠžŠ™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ«'),
(36308, 29912, 'no_lang_code', 'name', 'Wastech (Czechia)'),
(36309, 29913, 'en', 'name', 'Juneau Public Libraries'),
(36310, 29914, 'no_lang_code', 'name', 'Oprox (Czechia)'),
(36311, 29915, 'en', 'name', 'Balboa Art Conservation Center'),
(36312, 29916, 'en', 'name', 'Institute of International Law and Economics named after AS Griboedova'),
(36313, 29916, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾Š³Š¾ права Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø имени А.Š”. ГрибоеГова'),
(36314, 29917, 'en', 'name', 'Bryansk State Engineering and Technological Academy'),
(36315, 29917, 'ru', 'name', 'Š‘Ń€ŃŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń инженерно-Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(36316, 29918, 'en', 'name', 'Kobe Tokiwa University'),
(36317, 29918, 'ja', 'name', 'ē„žęˆøåøøē›¤å¤§å­¦'),
(36318, 29919, 'en', 'name', 'University of Perpetual Help System DALTA'),
(36319, 29920, 'en', 'name', 'Klamath River Inter-Tribal Fish and Water Commission'),
(36320, 29921, 'en', 'name', 'Kurmangazy Kazakh National Conservatory'),
(36321, 29921, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› ұлттық ŠŗŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃŃŃ‹'),
(36322, 29922, 'en', 'name', 'Voronezh Institute of Ministry of Internal Affairs'),
(36323, 29922, 'ru', 'name', 'Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š”'),
(36324, 29923, 'en', 'name', 'American College'),
(36325, 29924, 'id', 'name', 'Universitas Muhammadiyah Palembang'),
(36326, 29925, 'bn', 'name', 'অতীশ ą¦¦ą§€ą¦Ŗą¦™ą§ą¦•ą¦° ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(36327, 29925, 'en', 'name', 'Atish Dipankar University of Science and Technology'),
(36328, 29926, 'en', 'name', 'Ekvtime Takaishvili Teaching University'),
(36329, 29926, 'ka', 'name', 'įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ ā€žįƒ įƒ•įƒįƒšįƒ˜ā€œ'),
(36330, 29927, 'no_lang_code', 'name', 'Delinfo (Czechia)'),
(36331, 29928, 'ja', 'name', 'ē­‘ē“«å„³å­¦åœ’å¤§å­¦'),
(36332, 29928, 'no_lang_code', 'name', 'Chikushi Jogakuen University'),
(36333, 29929, 'en', 'name', 'Dnepropetrovsk State Institute of Physical Culture and Sport'),
(36334, 29929, 'uk', 'name', 'ŠŸŃ€ŠøŠ“Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø і ŃŠæŠ¾Ń€Ń‚Ńƒ'),
(36335, 29930, 'fr', 'name', 'Fondation UniversitƩ FranƧaise en ArmƩnie'),
(36336, 29930, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶ÕøÖ‚Õ“ Ö†Ö€Õ”Õ¶Õ½Õ«Õ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(36337, 29931, 'en', 'name', 'Davangere University'),
(36338, 29931, 'kn', 'name', 'ದಾವಣಗೆರೆ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(36339, 29932, 'en', 'name', 'Southwestern University'),
(36340, 29933, 'en', 'name', 'Kkottongnae University'),
(36341, 29934, 'en', 'name', 'HistoryMakers'),
(36342, 29935, 'id', 'name', 'Universitas Fajar'),
(36343, 29936, 'en', 'name', 'Hachinohe Institute of Technology'),
(36344, 29936, 'ja', 'name', 'å…«ęˆøå·„ę„­å¤§å­¦'),
(36345, 29937, 'en', 'name', 'Center for Fiction'),
(36346, 29938, 'en', 'name', 'Pyongyang Medical University'),
(36347, 29938, 'ko', 'name', 'ķ‰ģ–‘ģ˜ķ•™ėŒ€ķ•™'),
(36348, 29939, 'en', 'name', 'Bethel University'),
(36349, 29940, 'en', 'name', 'Chifeng University'),
(36350, 29940, 'zh', 'name', '赤峰学院'),
(36351, 29941, 'no_lang_code', 'name', 'Abasyn University'),
(36352, 29941, 'ur', 'name', 'Ų§ŲØŲ§Ų³ŪŒŁ† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(36353, 29942, 'en', 'name', 'Novosibirsk State University of Architecture and Civil Engineering'),
(36354, 29942, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36355, 29943, 'en', 'name', 'South Ukrainian National Pedagogical University named after K. D. Ushynsky'),
(36356, 29943, 'ru', 'name', 'Pivdennoukrainskyi natsionalnyi pedagogichnyi universytet imeni K. D. Ushynskogo'),
(36357, 29943, 'uk', 'name', 'ŠŸŃ–Š²Š“ŠµŠ½Š½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠšŠ¾ŃŃ‚ŃŠ½Ń‚ŠøŠ½Š° Ушинського'),
(36358, 29944, 'en', 'name', 'Tokyo Health Care University'),
(36359, 29944, 'ja', 'name', 'ę±äŗ¬åŒ»ē™‚äæå„å¤§å­¦'),
(36360, 29945, 'en', 'name', 'Kazan Law Institute'),
(36361, 29945, 'ru', 'name', 'Казанский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ’Š” России'),
(36362, 29946, 'en', 'name', 'Carnegie Hall'),
(36363, 29947, 'en', 'name', 'Renaissance Society of America'),
(36364, 29948, 'en', 'name', 'Piedmont University'),
(36365, 29949, 'en', 'name', 'Amur State Medical Academy'),
(36366, 29949, 'ru', 'name', 'ŠŠ¼ŃƒŃ€ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(36367, 29950, 'en', 'name', 'Northwestern College - Iowa'),
(36368, 29951, 'en', 'name', 'Palawan State University'),
(36369, 29952, 'ar', 'name', 'دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ ŁŁ†Ų§ŁˆŲ±ŪŒ'),
(36370, 29952, 'en', 'name', 'American University of Technology'),
(36371, 29953, 'id', 'name', 'Universitas Pamulang'),
(36372, 29954, 'en', 'name', 'Longue Vue House and Gardens'),
(36373, 29955, 'id', 'name', 'Universitas Sahid Jakarta'),
(36374, 29956, 'en', 'name', 'Lepanto Foundation'),
(36375, 29957, 'en', 'name', 'Osaka University of Commerce'),
(36376, 29957, 'ja', 'name', 'å¤§é˜Ŗå•†ę„­å¤§å­¦'),
(36377, 29958, 'en', 'name', 'Rock Point Community School'),
(36378, 29959, 'en', 'name', 'Walter Elwood Museum'),
(36379, 29960, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ā€‹įž”įž‰įŸ’įž‰įž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšā€‹įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(36380, 29960, 'no_lang_code', 'name', 'PaƱƱāsāstra University of Cambodia'),
(36381, 29961, 'en', 'name', 'AndrƔssy University Budapest'),
(36382, 29961, 'hu', 'name', 'AndrÔssy Gyula Budapesti Német Nyelvű Egyetem'),
(36383, 29962, 'en', 'name', 'Darul Huda Islamic University'),
(36384, 29962, 'fr', 'name', 'UniversitƩ islamique darul huda'),
(36385, 29962, 'ml', 'name', 'ą“¦ą“¾ą“±ąµąµ½ą“¹ąµą“¦ą“¾ ą“‡ą“øąµą“²ą“¾ą“®ą“æą“•ąµ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(36386, 29962, 'ur', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± الهدى Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(36387, 29963, 'en', 'name', 'Bedƫr University'),
(36388, 29963, 'sq', 'name', 'Universiteti Hƫna e Plotƫ'),
(36389, 29964, 'en', 'name', 'V. Sarajishvili Tbilisi State Conservation'),
(36390, 29964, 'ka', 'name', 'įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ•.įƒ”įƒįƒ įƒįƒÆįƒ˜įƒØįƒ•įƒ˜įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ™įƒįƒœįƒ”įƒ”įƒ įƒ•įƒįƒ¢įƒįƒ įƒ˜įƒ'),
(36391, 29965, 'en', 'name', 'Bibliographical Society of America'),
(36392, 29966, 'en', 'name', 'Martin University Hospital'),
(36393, 29966, 'sk', 'name', 'UniverzitnĆ” Nemocnica Martin'),
(36394, 29967, 'en', 'name', 'Calcasieu Parish Public Library'),
(36395, 29968, 'en', 'name', 'Moscow State Institute of Culture'),
(36396, 29968, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(36397, 29969, 'en', 'name', 'Venice International University'),
(36398, 29970, 'en', 'name', 'Armenian National Agrarian University'),
(36399, 29970, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ”Õ£Ö€Õ”Ö€Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(36400, 29971, 'en', 'name', 'Ackley Heritage Center'),
(36401, 29972, 'cs', 'name', 'Academia Rerum Civilium - VysokĆ” Skola Politických a Společenských Věd'),
(36402, 29973, 'en', 'name', 'Snug Harbor Cultural Center & Botanical Garden'),
(36403, 29974, 'en', 'name', 'Newport Historical Society'),
(36404, 29975, 'mt', 'name', 'Fondazzjoni Temi Zammit');
INSERT INTO `ror_settings` VALUES
(36405, 29976, 'en', 'name', 'M.Auezov South Kazakhstan State University'),
(36406, 29976, 'kk', 'name', 'М.Ó˜Š£Š•Š—ŠžŠ’ ŠŠ¢Š«ŠŠ”ŠŅ’Š« ŠžŅ¢Š¢Ņ®Š”Š¢Š†Šš ŅšŠŠ—ŠŅšŠ”Š¢ŠŠ ŠœŠ•ŠœŠ›Š•ŠšŠ•Š¢Š¢Š†Šš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š†'),
(36407, 29977, 'en', 'name', 'Hebrew College'),
(36408, 29978, 'en', 'name', 'Omaha Public Library'),
(36409, 29979, 'bn', 'name', 'ą¦øą¦æą¦²ą§‡ą¦Ÿ ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(36410, 29979, 'en', 'name', 'Sylhet International University'),
(36411, 29980, 'en', 'name', 'Hanzhong University'),
(36412, 29980, 'ko', 'name', 'ķ•œģ¤‘ėŒ€ķ•™źµ'),
(36413, 29981, 'en', 'name', 'Richmond Public Library'),
(36414, 29982, 'en', 'name', 'Sarguja University'),
(36415, 29982, 'hi', 'name', 'ą¤øą¤°ą¤—ą„ą¤œą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(36416, 29983, 'en', 'name', 'Al Ghurair University'),
(36417, 29984, 'en', 'name', 'Baguio Central University'),
(36418, 29985, 'en', 'name', 'Old Dartmouth Historical Society'),
(36419, 29986, 'en', 'name', 'Monk Seal Foundation'),
(36420, 29987, 'en', 'name', 'Maiden Voyage Productions'),
(36421, 29988, 'no_lang_code', 'name', 'VUC Praha (Czechia)'),
(36422, 29989, 'en', 'name', 'Shaheed Zulfiqar Ali Bhutto Institute of Science and Technology'),
(36423, 29989, 'ur', 'name', 'ؓہید Ų°ŁˆŲ§Ł„ŁŁ‚Ų§Ų± Ų¹Ł„ŪŒ بھٹو Ų§Ł†Ų³Ł¹ŪŒŁ¹ŪŒŁˆŁ¹ آف سائنس Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(36424, 29990, 'en', 'name', 'Ueno Gakuen University'),
(36425, 29990, 'ja', 'name', 'äøŠé‡Žå­¦åœ’å¤§å­¦'),
(36426, 29991, 'en', 'name', 'Baltic Institute of Foreign Languages and International Intercultural Cooperation'),
(36427, 29991, 'ru', 'name', 'Балтийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иностранных ŃŠ·Ń‹ŠŗŠ¾Š² Šø Š¼ŠµŠ¶ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½Š¾Š³Š¾ ŃŠ¾Ń‚Ń€ŃƒŠ“Š½ŠøŃ‡ŠµŃŃ‚Š²Š°'),
(36428, 29992, 'ja', 'name', 'č„æä¹å·žå¤§å­¦'),
(36429, 29992, 'no_lang_code', 'name', 'Nishikyushu University'),
(36430, 29993, 'no_lang_code', 'name', 'Temex (Czechia)'),
(36431, 29994, 'en', 'name', 'Kursk State University'),
(36432, 29994, 'ru', 'name', 'ŠšŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(36433, 29995, 'de', 'name', 'Universität für angewandte Kunst Wien'),
(36434, 29995, 'en', 'name', 'University of Applied Arts Vienna'),
(36435, 29996, 'en', 'name', 'Elisabeth University of Music'),
(36436, 29996, 'ja', 'name', 'ć‚ØćƒŖć‚¶ćƒ™ćƒˆéŸ³ę„½å¤§å­¦'),
(36437, 29997, 'no_lang_code', 'name', 'Alfred Nobel University'),
(36438, 29997, 'ru', 'name', 'Университет имени ŠŠ»ŃŒŃ„реГа ŠŠ¾Š±ŠµŠ»Ń'),
(36439, 29997, 'uk', 'name', 'Університет імені ŠŠ»ŃŒŃ„Ń€ŠµŠ“Š° ŠŠ¾Š±ŠµŠ»Ń'),
(36440, 29998, 'en', 'name', 'Dimitrie Cantemir University'),
(36441, 29998, 'ro', 'name', 'Universitatea Dimitrie Cantemir'),
(36442, 29999, 'en', 'name', 'International Institute of Economics and Law'),
(36443, 29999, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(36444, 30000, 'en', 'name', 'Rajabhat Rajanagarindra University'),
(36445, 30000, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø£ąø²ąøŠąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(36446, 30001, 'no_lang_code', 'name', 'QRtech (Sweden)'),
(36447, 30002, 'no_lang_code', 'name', 'Onyx Optics (United States)'),
(36448, 30003, 'en', 'name', 'Adelson Foundation'),
(36449, 30004, 'en', 'name', 'Henry Cogswell College'),
(36450, 30005, 'no_lang_code', 'name', 'Osaka Gas (United States)'),
(36451, 30006, 'en', 'name', 'Cancer Prevention and Research Institute of Texas'),
(36452, 30007, 'en', 'name', 'Israel National Institute for Health Policy Research'),
(36453, 30008, 'no_lang_code', 'name', 'Netzsch (United States)'),
(36454, 30009, 'no_lang_code', 'name', 'Pacific Safety Products (Canada)'),
(36455, 30010, 'en', 'name', 'Lake Macquarie City Council'),
(36456, 30011, 'no_lang_code', 'name', 'Tai Yang Research Company (United States)'),
(36457, 30012, 'en', 'name', 'Wilburforce Foundation'),
(36458, 30013, 'en', 'name', 'Harvard NeuroDiscovery Center'),
(36459, 30014, 'hu', 'name', 'OroshĆ”za VĆ”rosi ƖnkormĆ”nyzat KórhĆ”za'),
(36460, 30015, 'en', 'name', 'General Administration of Quality Supervision, Inspection and Quarantine'),
(36461, 30016, 'no_lang_code', 'name', 'Modine Manufacturing (United States)'),
(36462, 30017, 'no_lang_code', 'name', 'Anglo American (Canada)'),
(36463, 30018, 'en', 'name', 'Crossroads College'),
(36464, 30019, 'en', 'name', 'Ministry of Environment'),
(36465, 30020, 'no_lang_code', 'name', 'Iteris (United States)'),
(36466, 30021, 'no_lang_code', 'name', 'Cadcamation (Switzerland)'),
(36467, 30022, 'no_lang_code', 'name', 'Visotek (United States)'),
(36468, 30023, 'en', 'name', 'Nanjing Children''s Hospital'),
(36469, 30023, 'zh', 'name', 'å—äŗ¬åø‚å„æē«„åŒ»é™¢'),
(36470, 30024, 'no_lang_code', 'name', 'Credo Interactive (Canada)'),
(36471, 30025, 'no_lang_code', 'name', 'Polartec (United States)'),
(36472, 30026, 'no_lang_code', 'name', 'CornerTurn (United States)'),
(36473, 30027, 'no_lang_code', 'name', 'ViGYAN (United States)'),
(36474, 30028, 'en', 'name', 'Georgia Sea Grant'),
(36475, 30029, 'en', 'name', 'National Center for Injury Prevention and Control'),
(36476, 30030, 'no_lang_code', 'name', 'Stellar Science (United States)'),
(36477, 30031, 'en', 'name', 'Alabama Department of Rehabilitation Services'),
(36478, 30032, 'en', 'name', 'Tote Board'),
(36479, 30033, 'no_lang_code', 'name', 'Diversified Technical Systems (United States)'),
(36480, 30034, 'no_lang_code', 'name', 'Princeton Lightwave (United States)'),
(36481, 30035, 'no_lang_code', 'name', 'NeoDynamics (Sweden)'),
(36482, 30036, 'en', 'name', 'Silicon Valley Community Foundation'),
(36483, 30037, 'no_lang_code', 'name', 'Sovar (Canada)'),
(36484, 30038, 'no_lang_code', 'name', 'Weetabix (Canada)'),
(36485, 30039, 'no_lang_code', 'name', 'TƤrnsjƶ Garveri (Sweden)'),
(36486, 30040, 'no_lang_code', 'name', 'Custom MMIC (United States)'),
(36487, 30041, 'en', 'name', 'Jiangsu Academy of Agricultural Sciences'),
(36488, 30041, 'zh', 'name', 'ę±Ÿč‹ēœå†œäøšē§‘å­¦é™¢'),
(36489, 30042, 'en', 'name', 'Ravensbourne University London'),
(36490, 30043, 'no_lang_code', 'name', 'Stuart Olson (Canada)'),
(36491, 30044, 'no_lang_code', 'name', 'DigiLens (United States)'),
(36492, 30045, 'no_lang_code', 'name', 'Baldor Electric (United States)'),
(36493, 30046, 'en', 'name', 'Southeastern Bible College'),
(36494, 30047, 'no_lang_code', 'name', 'Henan Tianguan Group (China)'),
(36495, 30048, 'en', 'name', 'Vermont Center for Independent Living'),
(36496, 30049, 'en', 'name', 'Crafts Council'),
(36497, 30050, 'en', 'name', 'Kativik Regional Government'),
(36498, 30050, 'fr', 'name', 'Administration rƩgionale Kativik'),
(36499, 30051, 'no_lang_code', 'name', 'Linde (Canada)'),
(36500, 30052, 'en', 'name', 'Defense Logistics Agency'),
(36501, 30053, 'no_lang_code', 'name', 'Davidson Technologies (United States)'),
(36502, 30054, 'en', 'name', 'Ministry of Community Safety and Correctional Services'),
(36503, 30054, 'fr', 'name', 'Ministère de la Sécurité communautaire et des Services correctionnels'),
(36504, 30055, 'en', 'name', 'Malden Public Schools'),
(36505, 30056, 'no_lang_code', 'name', 'Procera Networks (Sweden)'),
(36506, 30057, 'no_lang_code', 'name', 'Serstech (Sweden)'),
(36507, 30058, 'en', 'name', 'Nanjing Institute of Vegetable Science'),
(36508, 30059, 'no_lang_code', 'name', 'G&S Titanium (United States)'),
(36509, 30060, 'en', 'name', 'Utah Space Grant Consortium'),
(36510, 30061, 'no_lang_code', 'name', 'Sunol Sciences Corporation (United States)'),
(36511, 30062, 'no_lang_code', 'name', 'Scanscot Technology (Sweden)'),
(36512, 30063, 'no_lang_code', 'name', 'Almi (Sweden)'),
(36513, 30064, 'no_lang_code', 'name', 'Brainvest (Hungary)'),
(36514, 30065, 'no_lang_code', 'name', 'Türk Telekom (Turkey)'),
(36515, 30066, 'en', 'name', 'Hostos Community College'),
(36516, 30067, 'no_lang_code', 'name', 'Metso (Canada)'),
(36517, 30068, 'en', 'name', 'University for Peace'),
(36518, 30069, 'no_lang_code', 'name', 'D2L (Canada)'),
(36519, 30070, 'en', 'name', 'Bertrand Russell College'),
(36520, 30071, 'no_lang_code', 'name', 'Opto-Knowledge Systems (United States)'),
(36521, 30072, 'en', 'name', 'Gulf of Mexico University Research Collaborative'),
(36522, 30073, 'no_lang_code', 'name', 'Evolva (Denmark)'),
(36523, 30074, 'en', 'name', 'Beihai People''s Hospital'),
(36524, 30075, 'no_lang_code', 'name', 'Olin (Canada)'),
(36525, 30076, 'en', 'name', 'Hainan Tranquility Hospital'),
(36526, 30077, 'en', 'name', 'Western Economic Diversification Canada'),
(36527, 30078, 'no_lang_code', 'name', 'Hy-Tek Manufacturing Company (United States)'),
(36528, 30079, 'no_lang_code', 'name', 'Seemann Composites (United States)'),
(36529, 30080, 'en', 'name', 'Brooklyn Law School'),
(36530, 30081, 'no_lang_code', 'name', 'Cold Cut Systems (Sweden)'),
(36531, 30082, 'en', 'name', 'Cumulative Environmental Management Association'),
(36532, 30083, 'en', 'name', 'Florida Agency for Health Care Administration'),
(36533, 30084, 'en', 'name', 'Leeds Arts University'),
(36534, 30085, 'en', 'name', 'Dr. Hasan Sadikin General Hospital'),
(36535, 30086, 'no_lang_code', 'name', 'Chenomx (Canada)'),
(36536, 30087, 'no_lang_code', 'name', 'Relko (Slovakia)'),
(36537, 30088, 'no_lang_code', 'name', 'BTech Acoustics (United States)'),
(36538, 30089, 'no_lang_code', 'name', 'Micro Delta T (Sweden)'),
(36539, 30090, 'no_lang_code', 'name', 'Richardson Electronics (United States)'),
(36540, 30091, 'no_lang_code', 'name', 'CombiQ (Sweden)'),
(36541, 30092, 'no_lang_code', 'name', 'Amsen Technologies (United States)'),
(36542, 30093, 'no_lang_code', 'name', 'Acoustic Ideas (United States)'),
(36543, 30094, 'en', 'name', 'Columbia Region Healthcare Engineers Association'),
(36544, 30095, 'no_lang_code', 'name', 'Neptec Design Group (Canada)'),
(36545, 30096, 'en', 'name', 'State Administration of Traditional Chinese Medicine of the People''s Republic of China'),
(36546, 30096, 'zh', 'name', 'å›½å®¶äø­åŒ»čÆē®”ē†å±€'),
(36547, 30097, 'no_lang_code', 'name', 'Templeman Automation (United States)'),
(36548, 30098, 'en', 'name', 'Bernstein Center for Computational Neuroscience Gƶttingen'),
(36549, 30099, 'no_lang_code', 'name', 'TSG Solutions (United States)'),
(36550, 30100, 'en', 'name', 'Shanghai Astronomical Observatory'),
(36551, 30100, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·å¤©ę–‡å°'),
(36552, 30101, 'en', 'name', 'Physiological Society'),
(36553, 30102, 'no_lang_code', 'name', 'Production Products (United States)'),
(36554, 30103, 'en', 'name', 'Baker College'),
(36555, 30104, 'en', 'name', 'Ceres'),
(36556, 30105, 'no_lang_code', 'name', 'Waiward Steel (Canada)'),
(36557, 30106, 'no_lang_code', 'name', 'Alten (Sweden)'),
(36558, 30107, 'en', 'name', 'Flowers Canada Growers'),
(36559, 30108, 'no_lang_code', 'name', 'Oil States International (United States)'),
(36560, 30109, 'en', 'name', 'Gansu Province Computing Center'),
(36561, 30110, 'en', 'name', 'St. Lawrence Seaway Management'),
(36562, 30111, 'no_lang_code', 'name', 'TransTech Systems (United States)'),
(36563, 30112, 'no_lang_code', 'name', 'M Corp (United States)'),
(36564, 30113, 'no_lang_code', 'name', 'Vutch-Chemitex (Slovakia)'),
(36565, 30114, 'en', 'name', 'A-R Editions'),
(36566, 30115, 'no_lang_code', 'name', 'Federal Fabrics Fibers (United States)'),
(36567, 30116, 'en', 'name', 'Agency for Toxic Substances and Disease Registry'),
(36568, 30117, 'en', 'name', 'World Institute on Disability'),
(36569, 30118, 'no_lang_code', 'name', 'Complete Genomics (United States)'),
(36570, 30119, 'no_lang_code', 'name', 'Ortelio (United Kingdom)'),
(36571, 30120, 'en', 'name', 'Hydrogen Link Denmark Association'),
(36572, 30121, 'no_lang_code', 'name', 'PolymerPlus (United States)'),
(36573, 30122, 'en', 'name', 'Shanghai Eye Disease Prevention & Treatment Center'),
(36574, 30123, 'no_lang_code', 'name', 'SdPhotonics (United States)'),
(36575, 30124, 'no_lang_code', 'name', 'Applied Optimization (United States)'),
(36576, 30125, 'en', 'name', 'Ministry of Health'),
(36577, 30126, 'no_lang_code', 'name', 'Illinois Tool Works (United States)'),
(36578, 30127, 'en', 'name', 'Third Hospital of Hebei Medical University'),
(36579, 30128, 'no_lang_code', 'name', 'Kleijnen Systematic Reviews (United Kingdom)'),
(36580, 30129, 'no_lang_code', 'name', 'Acree Technologies (United States)'),
(36581, 30130, 'no_lang_code', 'name', 'Ross-Hime Designs (United States)'),
(36582, 30131, 'en', 'name', 'Center for Health Care Strategies'),
(36583, 30132, 'en', 'name', 'National Museum'),
(36584, 30133, 'en', 'name', 'Ontario Neurotrauma Foundation'),
(36585, 30133, 'fr', 'name', 'Fondation ontarienne de neurotraumatologie'),
(36586, 30134, 'en', 'name', 'Orangutan Conservancy'),
(36587, 30135, 'no_lang_code', 'name', 'Solus (United States)'),
(36588, 30136, 'no_lang_code', 'name', 'Aegisound (United States)'),
(36589, 30137, 'en', 'name', 'Institute of Natural Science'),
(36590, 30137, 'ko', 'name', 'ė¦¬ź³¼ėŒ€ķ•™'),
(36591, 30138, 'no_lang_code', 'name', 'Princeton Microwave Technology (United States)'),
(36592, 30139, 'no_lang_code', 'name', 'AllCell (United States)'),
(36593, 30140, 'no_lang_code', 'name', 'Applied Bio-nomics (Canada)'),
(36594, 30141, 'no_lang_code', 'name', 'Tomologic (Sweden)'),
(36595, 30142, 'en', 'name', 'Hungarian Sociological Association'),
(36596, 30143, 'no_lang_code', 'name', 'RÔció Kiadói (Hungary)'),
(36597, 30144, 'no_lang_code', 'name', 'KMT Hepatech (Canada)'),
(36598, 30145, 'no_lang_code', 'name', 'Enhanced Vision (United States)'),
(36599, 30146, 'de', 'name', 'Cluster für kardiovaskuläre Forschung'),
(36600, 30146, 'en', 'name', 'Ludwig Boltzmann Cluster for Cardiovascular Research'),
(36601, 30147, 'no_lang_code', 'name', 'DakotaLink (United States)'),
(36602, 30148, 'en', 'name', 'New Energy and Industrial Technology Development Organization'),
(36603, 30148, 'ja', 'name', 'ę–°ć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ»ē”£ę„­ęŠ€č”“ē·åˆé–‹ē™ŗę©Ÿę§‹'),
(36604, 30149, 'no_lang_code', 'name', 'Professional Analysis (United States)'),
(36605, 30150, 'no_lang_code', 'name', 'Vision Engineering (Italy)'),
(36606, 30151, 'en', 'name', 'Stone Lantern Films'),
(36607, 30152, 'no_lang_code', 'name', 'Decision Sciences International Corporation (United States)'),
(36608, 30153, 'no_lang_code', 'name', 'SkySight Technologies (United States)'),
(36609, 30154, 'no_lang_code', 'name', 'MassMutual Financial Group (United States)'),
(36610, 30155, 'no_lang_code', 'name', 'Silicon Power Corporation (United States)'),
(36611, 30156, 'no_lang_code', 'name', 'Digital Authentication Technologies (United States)'),
(36612, 30157, 'no_lang_code', 'name', 'GBL Systems Corporation (United States)'),
(36613, 30158, 'no_lang_code', 'name', 'Denison Mines (Canada)'),
(36614, 30159, 'en', 'name', 'National Psoriasis Foundation'),
(36615, 30160, 'no_lang_code', 'name', 'Versar (United States)'),
(36616, 30161, 'en', 'name', 'Albertina'),
(36617, 30162, 'no_lang_code', 'name', 'Decision Dynamics (United States)'),
(36618, 30163, 'en', 'name', 'South African National Biodiversity Institute'),
(36619, 30164, 'en', 'name', 'Australian Renewable Energy Agency'),
(36620, 30165, 'en', 'name', 'Swedish Medtech'),
(36621, 30166, 'fi', 'name', 'Emil Aaltosen SƤƤtiƶ'),
(36622, 30167, 'no_lang_code', 'name', 'First RF (United States)'),
(36623, 30168, 'no_lang_code', 'name', 'Findwise (Sweden)'),
(36624, 30169, 'en', 'name', 'First Affiliated Hospital of Sichuan Medical University'),
(36625, 30170, 'no_lang_code', 'name', 'Nanexa (Sweden)'),
(36626, 30171, 'no_lang_code', 'name', 'Escape Communications (United States)'),
(36627, 30172, 'no_lang_code', 'name', 'Qnergy (United States)'),
(36628, 30173, 'en', 'name', 'Albion Centre'),
(36629, 30174, 'en', 'name', 'Hospital of Southern Norway'),
(36630, 30175, 'en', 'name', 'Institute for Research and Development'),
(36631, 30176, 'en', 'name', 'Kalahari Meerkat Project'),
(36632, 30177, 'en', 'name', 'Landseed Hospital'),
(36633, 30178, 'no_lang_code', 'name', 'Terahertz Technology Solutions (Canada)'),
(36634, 30179, 'no_lang_code', 'name', 'Jarden (United States)'),
(36635, 30180, 'no_lang_code', 'name', 'CELIM'),
(36636, 30181, 'en', 'name', 'American Foundation for Pharmaceutical Education'),
(36637, 30182, 'no_lang_code', 'name', 'Parallax Research (United States)'),
(36638, 30183, 'no_lang_code', 'name', 'Appear Networks (Sweden)'),
(36639, 30184, 'es', 'name', 'Comisión Interministerial de Ciencia y Tecnología'),
(36640, 30185, 'hu', 'name', 'Deri Muzeum'),
(36641, 30186, 'en', 'name', 'Planetary Data System'),
(36642, 30187, 'en', 'name', 'Hawaii Invasive Species Council'),
(36643, 30188, 'en', 'name', 'Oak Foundation'),
(36644, 30189, 'no_lang_code', 'name', 'Evisive (United States)'),
(36645, 30190, 'en', 'name', 'Mercer County Mosquito Control'),
(36646, 30191, 'no_lang_code', 'name', 'Technical Directions Incorporation (United States)'),
(36647, 30192, 'no_lang_code', 'name', 'SM&A (United States)'),
(36648, 30193, 'no_lang_code', 'name', 'Newport (United States)'),
(36649, 30194, 'no_lang_code', 'name', 'Advanced Biomass R&D Center (South Korea)'),
(36650, 30195, 'en', 'name', '361 Interactive'),
(36651, 30196, 'en', 'name', 'Arlington Baptist College'),
(36652, 30197, 'en', 'name', 'Mitchell College'),
(36653, 30198, 'no_lang_code', 'name', 'PDF Solutions (United States)'),
(36654, 30199, 'no_lang_code', 'name', 'GS Engineering (United States)'),
(36655, 30200, 'no_lang_code', 'name', 'Gooch & Housego (Greece)'),
(36656, 30201, 'en', 'name', 'Ludwig Boltzmann Institute for Retinology and Biomicroscopic Laser Surgery'),
(36657, 30202, 'no_lang_code', 'name', 'Star Technology and Research (United States)'),
(36658, 30203, 'no_lang_code', 'name', 'AOSense (United States)'),
(36659, 30204, 'en', 'name', 'Walkerton Clean Water Centre'),
(36660, 30205, 'en', 'name', 'Quebec Intensive Silviculture Network'),
(36661, 30205, 'fr', 'name', 'RƩseau Ligniculture QuƩbec'),
(36662, 30206, 'en', 'name', 'New Saint Andrews College'),
(36663, 30207, 'no_lang_code', 'name', 'Baker Engineering and Risk Consultants (United States)'),
(36664, 30208, 'no_lang_code', 'name', 'Future-Shape (Germany)'),
(36665, 30209, 'no_lang_code', 'name', 'Presteve Foods (Canada)'),
(36666, 30210, 'no_lang_code', 'name', 'Hultsteins (Sweden)'),
(36667, 30211, 'no_lang_code', 'name', 'VUIS - CESTY (Slovakia)'),
(36668, 30212, 'no_lang_code', 'name', 'East West Enterprises (United States)'),
(36669, 30213, 'pt', 'name', 'Fundação Cearense de Apoio ao Desenvolvimento Científico e Tecnológico'),
(36670, 30214, 'en', 'name', 'Rio de Janeiro Federal Institute of Education, Science and Technology'),
(36671, 30214, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do Rio de Janeiro'),
(36672, 30215, 'no_lang_code', 'name', 'ADA-ES (United States)'),
(36673, 30216, 'en', 'name', 'Energy Industries of Ohio'),
(36674, 30217, 'no_lang_code', 'name', 'Metalite Industries (United States)'),
(36675, 30218, 'no_lang_code', 'name', 'Chockie Group International (United States)'),
(36676, 30219, 'en', 'name', 'Veterinary Oncological Center'),
(36677, 30219, 'it', 'name', 'Centro Oncologico Veterinario'),
(36678, 30220, 'en', 'name', 'Batten Disease Support and Research Association'),
(36679, 30221, 'pt', 'name', 'Quadro de Referência Estratégico Nacional'),
(36680, 30222, 'no_lang_code', 'name', 'Stirling Dynamics (United States)'),
(36681, 30223, 'no_lang_code', 'name', 'Ionautics (Sweden)'),
(36682, 30224, 'no_lang_code', 'name', 'SEZ Krompachy (Slovakia)'),
(36683, 30225, 'no_lang_code', 'name', 'Excellatron (United States)'),
(36684, 30226, 'en', 'name', 'City University of Seattle'),
(36685, 30227, 'en', 'name', 'Diabetes Australia'),
(36686, 30228, 'en', 'name', 'Fisher Center for Alzheimer''s Research Foundation'),
(36687, 30229, 'no_lang_code', 'name', 'Communications & Power Industries (United States)'),
(36688, 30230, 'no_lang_code', 'name', 'Scint-X (Sweden)'),
(36689, 30231, 'no_lang_code', 'name', 'Opus Technologies (United States)'),
(36690, 30232, 'en', 'name', 'Ministry of Trade, Industry and Energy'),
(36691, 30232, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ģ‚°ģ—…ķ†µģƒģžģ›ė¶€'),
(36692, 30233, 'en', 'name', 'Edison Welding Institute'),
(36693, 30234, 'en', 'name', 'Rehabilitation Research and Development Service'),
(36694, 30235, 'no_lang_code', 'name', 'Nokia (Canada)'),
(36695, 30236, 'en', 'name', 'International Association for Dental Research'),
(36696, 30237, 'en', 'name', 'National Farmers Union'),
(36697, 30238, 'nl', 'name', 'Openbare Scholengemeenschap De Hogeberg'),
(36698, 30239, 'no_lang_code', 'name', 'Photon-X (United States)'),
(36699, 30240, 'no_lang_code', 'name', 'MAHLE Filter Systems (Canada)'),
(36700, 30241, 'en', 'name', 'Wellcome Centre for Cell-Matrix Research'),
(36701, 30242, 'de', 'name', 'Max-Planck-Institut für Mikrostrukturphysik'),
(36702, 30242, 'en', 'name', 'Max Planck Institute of Microstructure Physics'),
(36703, 30243, 'no_lang_code', 'name', 'SEPS Technologies (Sweden)'),
(36704, 30244, 'no_lang_code', 'name', 'Phillips 66 (United States)'),
(36705, 30245, 'en', 'name', 'Indian Council of Social Science Research'),
(36706, 30246, 'no_lang_code', 'name', 'Sunrez (United States)'),
(36707, 30247, 'en', 'name', 'Riga High Tech University'),
(36708, 30248, 'en', 'name', 'British Columbia Dairy Association'),
(36709, 30249, 'no_lang_code', 'name', 'Radyne (United States)'),
(36710, 30250, 'no_lang_code', 'name', 'Technology Applications (United States)'),
(36711, 30251, 'no_lang_code', 'name', 'CBRITE (United States)'),
(36712, 30252, 'en', 'name', 'Institute of Microelectronics'),
(36713, 30253, 'no_lang_code', 'name', 'Hoa''s Tool Shop (Sweden)'),
(36714, 30254, 'no_lang_code', 'name', 'ADMA Products (United States)'),
(36715, 30255, 'en', 'name', 'Oneida Indian Nation'),
(36716, 30256, 'no_lang_code', 'name', 'Energent (United States)'),
(36717, 30257, 'en', 'name', 'Office of Gas and Electricity Markets'),
(36718, 30258, 'no_lang_code', 'name', 'System Planning Corporation (United States)'),
(36719, 30259, 'no_lang_code', 'name', 'Kunskapsbolaget (Sweden)'),
(36720, 30260, 'en', 'name', 'Rippl-Rónai Museum'),
(36721, 30261, 'no_lang_code', 'name', 'UIL Holdings (United States)'),
(36722, 30262, 'no_lang_code', 'name', 'Advanced Conductor Technologies (United States)'),
(36723, 30263, 'no_lang_code', 'name', 'BioForest Technologies (Canada)'),
(36724, 30264, 'no_lang_code', 'name', 'Optronic (Sweden)'),
(36725, 30265, 'no_lang_code', 'name', 'Dental Rat (United States)'),
(36726, 30266, 'en', 'name', 'International Telecommunication Union'),
(36727, 30267, 'no_lang_code', 'name', 'Concorde Battery (United States)'),
(36728, 30268, 'it', 'name', 'Fondazione Cassa Risparmio Perugia'),
(36729, 30269, 'en', 'name', 'Guysborough County Inshore Fishermen''s Association'),
(36730, 30270, 'en', 'name', 'Ɩrebro Municipality'),
(36731, 30271, 'no_lang_code', 'name', 'Mathematical Systems & Solutions (United States)'),
(36732, 30272, 'en', 'name', 'Turkish Academy of Sciences'),
(36733, 30273, 'it', 'name', 'Fondazione Crui'),
(36734, 30274, 'en', 'name', 'Swedish Institute of International Affairs'),
(36735, 30275, 'no_lang_code', 'name', 'Star Microwave (United States)'),
(36736, 30276, 'no_lang_code', 'name', 'Aeroprobe (United States)'),
(36737, 30277, 'no_lang_code', 'name', 'Integrity Applications Incorporated (United States)'),
(36738, 30278, 'en', 'name', 'Carnegie Mellon University Qatar'),
(36739, 30279, 'en', 'name', 'Ministry of Security and Public Administration'),
(36740, 30280, 'no_lang_code', 'name', 'Assett (United States)'),
(36741, 30281, 'en', 'name', 'Dean College'),
(36742, 30282, 'no_lang_code', 'name', 'Sensors (United States)'),
(36743, 30283, 'no_lang_code', 'name', 'Sierra Lobo (United States)'),
(36744, 30284, 'no_lang_code', 'name', 'Borregaard (Norway)'),
(36745, 30285, 'no_lang_code', 'name', 'Commonwealth Computer Research (United States)'),
(36746, 30286, 'en', 'name', 'Integrative Neuroscience Initiative on Alcoholism'),
(36747, 30287, 'en', 'name', 'B. J. Medical College & Sassoon Hospital'),
(36748, 30288, 'en', 'name', 'Appalachian School of Law'),
(36749, 30289, 'no_lang_code', 'name', 'ImmunoGenes (Hungary)'),
(36750, 30290, 'no_lang_code', 'name', 'Perimed (Sweden)'),
(36751, 30291, 'no_lang_code', 'name', 'MW Canada (Canada)'),
(36752, 30292, 'no_lang_code', 'name', 'Aluminerie Alouette (Canada)'),
(36753, 30293, 'en', 'name', 'Felix Thornley Cobbold Agricultural Trust'),
(36754, 30294, 'no_lang_code', 'name', 'Publit (Sweden)'),
(36755, 30295, 'no_lang_code', 'name', 'Trident Research (United States)'),
(36756, 30296, 'en', 'name', 'International Bureau of Fiscal Documentation'),
(36757, 30297, 'en', 'name', 'Molly Brown House Museum'),
(36758, 30298, 'en', 'name', 'Royal Pharmaceutical Society'),
(36759, 30299, 'sk', 'name', 'ZÔkladnÔ umeleckÔ Ŕkola Jozefa Rosinského'),
(36760, 30300, 'en', 'name', 'Geneva League Against Cancer'),
(36761, 30300, 'fr', 'name', 'Ligue Genevoise Contre le Cancer'),
(36762, 30301, 'no_lang_code', 'name', 'Enova (United States)'),
(36763, 30302, 'no_lang_code', 'name', 'Wedgestone Press (United States)'),
(36764, 30303, 'no_lang_code', 'name', 'Foro Energy (United States)'),
(36765, 30304, 'en', 'name', 'Teikyo University of Japan in Durham'),
(36766, 30305, 'en', 'name', 'Open Group'),
(36767, 30306, 'no_lang_code', 'name', 'D&P (United States)'),
(36768, 30307, 'pt', 'name', 'Instituto Infnet'),
(36769, 30308, 'en', 'name', 'International Centre for Applied Research and Sustainable Technology'),
(36770, 30309, 'en', 'name', 'Easterseals'),
(36771, 30310, 'no_lang_code', 'name', 'Hive Streaming (Sweden)'),
(36772, 30311, 'en', 'name', 'University of Missouri Women''s and Children''s Hospital'),
(36773, 30312, 'en', 'name', 'Carbon Management Canada'),
(36774, 30313, 'en', 'name', 'Birmingham and Solihull Mental Health NHS Foundation Trust'),
(36775, 30314, 'fr', 'name', 'Mitacs'),
(36776, 30315, 'en', 'name', 'Heze Medical College'),
(36777, 30316, 'no_lang_code', 'name', 'F. A. Hayek Foundation'),
(36778, 30317, 'en', 'name', 'Clearwater Christian College'),
(36779, 30318, 'no_lang_code', 'name', 'Ocean Acoustical Services and Instrumentation Systems (United States)'),
(36780, 30319, 'no_lang_code', 'name', 'Ascent Technology (United States)'),
(36781, 30320, 'no_lang_code', 'name', 'Bencar (Sweden)'),
(36782, 30321, 'no_lang_code', 'name', 'CM Labs Simulations (Canada)'),
(36783, 30322, 'no_lang_code', 'name', 'InterDigital (Canada)'),
(36784, 30323, 'en', 'name', 'Klingenstein Third Generation Foundation'),
(36785, 30324, 'no_lang_code', 'name', 'Salutron (United States)'),
(36786, 30325, 'it', 'name', 'Compagnia di San Paolo'),
(36787, 30326, 'en', 'name', 'McPherson College'),
(36788, 30327, 'no_lang_code', 'name', 'Teratech Components (United Kingdom)'),
(36789, 30328, 'en', 'name', 'Maine College of Art'),
(36790, 30329, 'no_lang_code', 'name', 'Eurostep (Sweden)'),
(36791, 30330, 'no_lang_code', 'name', 'Quantum Group (United States)'),
(36792, 30331, 'de', 'name', 'Boehringer Ingelheim Fonds, Stiftung für Medizinische Grundlagenforschung'),
(36793, 30332, 'no_lang_code', 'name', 'AdValue Photonics (United States)'),
(36794, 30333, 'en', 'name', 'Mianyang Third People''s Hospital'),
(36795, 30334, 'en', 'name', 'Alcohol Research UK'),
(36796, 30335, 'en', 'name', 'Society of Hungarian Linguistics'),
(36797, 30335, 'hu', 'name', 'Magyar NyelvtudomƔnyi TƔrsasƔgot'),
(36798, 30336, 'no_lang_code', 'name', 'Sensor Development (United States)'),
(36799, 30337, 'en', 'name', 'California Foundation for Independent Living Centers'),
(36800, 30338, 'en', 'name', 'Colorado Springs Fine Arts Center'),
(36801, 30339, 'no_lang_code', 'name', 'CellaVision (Sweden)'),
(36802, 30340, 'en', 'name', 'John D. and Catherine T. MacArthur Foundation'),
(36803, 30341, 'no_lang_code', 'name', 'Sheetak (United States)'),
(36804, 30342, 'no_lang_code', 'name', 'Nexterra (Canada)'),
(36805, 30343, 'en', 'name', 'Royal Astronomical Society'),
(36806, 30344, 'en', 'name', 'Graduate School Experimental Plant Sciences'),
(36807, 30345, 'en', 'name', 'Arcus Foundation'),
(36808, 30346, 'no_lang_code', 'name', 'Archaeolingua Foundation'),
(36809, 30347, 'en', 'name', 'VƵro Institute'),
(36810, 30348, 'de', 'name', 'Max-Planck-Institut für Extraterrestrische Physik'),
(36811, 30348, 'en', 'name', 'Max Planck Institute for Extraterrestrial Physics'),
(36812, 30349, 'no_lang_code', 'name', '1366 Technologies (United States)'),
(36813, 30350, 'en', 'name', 'Government of Romania'),
(36814, 30351, 'no_lang_code', 'name', 'Adiabatics (United States)'),
(36815, 30352, 'en', 'name', 'Western Michigan University Cooley Law School'),
(36816, 30353, 'no_lang_code', 'name', 'Kyma Technologies (United States)'),
(36817, 30354, 'en', 'name', 'Institute of Physical-Chemical and Biological Problems in Soil Science'),
(36818, 30354, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физико-химических Šø биологических проблем ŠæŠ¾Ń‡Š²Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(36819, 30355, 'en', 'name', 'Foyle Foundation'),
(36820, 30356, 'no_lang_code', 'name', 'Mƶbelriket (Swedenā€Ž)'),
(36821, 30357, 'de', 'name', 'Bayerische Forschungsstiftung'),
(36822, 30357, 'en', 'name', 'Bavarian Research Foundation'),
(36823, 30358, 'no_lang_code', 'name', 'Entrust (Canada)'),
(36824, 30359, 'en', 'name', 'Canadian Dermatology Foundation'),
(36825, 30360, 'no_lang_code', 'name', 'Akadémiai Kiadó (Hungary)'),
(36826, 30361, 'no_lang_code', 'name', 'Systems Planning and Analysis (United States)'),
(36827, 30362, 'sk', 'name', 'SlovenskÔ LegÔlna Metrológia'),
(36828, 30363, 'en', 'name', 'Daiwa Anglo-Japanese Foundation'),
(36829, 30364, 'en', 'name', 'Alzheimer Scotland'),
(36830, 30365, 'no_lang_code', 'name', 'Clear Science Corporation (United States)'),
(36831, 30366, 'no_lang_code', 'name', 'InternetSpeech (United States)'),
(36832, 30367, 'sv', 'name', 'Wilhelm & Martina Lundgrens Stiftelser'),
(36833, 30368, 'no_lang_code', 'name', 'Servier (Canada)'),
(36834, 30369, 'no_lang_code', 'name', 'Ergenics (United States)'),
(36835, 30370, 'en', 'name', 'Artificial Insemination Center of Quebec'),
(36836, 30370, 'fr', 'name', 'Centre d''InsƩmination artificielle du QuƩbec'),
(36837, 30371, 'no_lang_code', 'name', 'Alameda Applied Sciences Corporation (United States)'),
(36838, 30372, 'de', 'name', 'Fritz Thyssen Stiftung'),
(36839, 30372, 'en', 'name', 'Fritz Thyssen Foundation'),
(36840, 30373, 'en', 'name', 'Singapore Institute of Manufacturing Technology'),
(36841, 30374, 'no_lang_code', 'name', 'Torrey Pines Logic (United States)'),
(36842, 30375, 'no_lang_code', 'name', 'Mudawar Thermal Systems (United States)'),
(36843, 30376, 'no_lang_code', 'name', 'ExoAnalytic Solutions (United States)'),
(36844, 30377, 'no_lang_code', 'name', 'Applied Science Innovations (United States)'),
(36845, 30378, 'no_lang_code', 'name', 'Codexis (United States)'),
(36846, 30379, 'en', 'name', 'Canadian Occupational Therapy Foundation'),
(36847, 30380, 'no_lang_code', 'name', 'DeciBel Research (United States)'),
(36848, 30381, 'no_lang_code', 'name', 'Eurea'),
(36849, 30382, 'en', 'name', 'Leo Baeck Institute'),
(36850, 30383, 'en', 'name', 'Korea Health Industry Development Institute'),
(36851, 30384, 'no_lang_code', 'name', 'Rmc (Slovakia)'),
(36852, 30385, 'no_lang_code', 'name', 'Laser Operations (United States)'),
(36853, 30386, 'no_lang_code', 'name', 'Western Power Distribution (United Kingdom)'),
(36854, 30387, 'no_lang_code', 'name', 'Applied Signals Intelligence (United States)'),
(36855, 30388, 'no_lang_code', 'name', 'CDI (United States)'),
(36856, 30389, 'en', 'name', 'Morning Sun'),
(36857, 30390, 'no_lang_code', 'name', 'Michelman (United States)'),
(36858, 30391, 'en', 'name', 'Taoyuan Chang Gung Memorial Hospital'),
(36859, 30392, 'no_lang_code', 'name', 'Cobolt (Sweden)'),
(36860, 30393, 'es', 'name', 'Fundación José Ortega y Gasset-Gregorio Marañón'),
(36861, 30394, 'no_lang_code', 'name', 'Cape Eleuthera Institute'),
(36862, 30395, 'no_lang_code', 'name', 'CNS Systems (Sweden)'),
(36863, 30396, 'no_lang_code', 'name', 'Tekmar (Slovakia)'),
(36864, 30397, 'en', 'name', 'Iowa Finance Authority'),
(36865, 30398, 'en', 'name', 'Center for Research on Inter-group Relations and Conflict Resolution'),
(36866, 30399, 'sv', 'name', 'Svensk Kollektivtrafik'),
(36867, 30400, 'en', 'name', 'Landscape Institute'),
(36868, 30401, 'no_lang_code', 'name', 'CACI International (United States)'),
(36869, 30402, 'no_lang_code', 'name', 'Electronic Concepts and Engineering (United States)'),
(36870, 30403, 'en', 'name', 'Binzhou Medical College Hospital'),
(36871, 30404, 'no_lang_code', 'name', 'AMN (Netherlands)'),
(36872, 30405, 'en', 'name', 'Skeena Fisheries Commission'),
(36873, 30406, 'en', 'name', 'NetPort Science Park'),
(36874, 30407, 'no_lang_code', 'name', 'Custom Technology (United States)'),
(36875, 30408, 'no_lang_code', 'name', 'Gorman Bros Lumber (Canada)'),
(36876, 30409, 'en', 'name', 'Ningbo Science and Technology Bureau'),
(36877, 30409, 'zh', 'name', 'å®ę³¢åø‚ē§‘ęŠ€å±€'),
(36878, 30410, 'no_lang_code', 'name', 'Sapien Systems (United States)'),
(36879, 30411, 'no_lang_code', 'name', 'Qlucore (Sweden)'),
(36880, 30412, 'no_lang_code', 'name', 'RLS Global (Sweden)'),
(36881, 30413, 'no_lang_code', 'name', 'ASML (United States)'),
(36882, 30414, 'en', 'name', 'Kent County Council'),
(36883, 30415, 'no_lang_code', 'name', 'Technology Management Company (United States)'),
(36884, 30416, 'no_lang_code', 'name', 'Railway Repair and Engineering Works (Slovakia)'),
(36885, 30417, 'en', 'name', 'YaoundƩ General Hospital'),
(36886, 30418, 'en', 'name', 'China Animal Disease Control Center'),
(36887, 30418, 'zh', 'name', 'äø­å›½åŠØē‰©ē–«ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(36888, 30419, 'no_lang_code', 'name', 'QRDc (United States)'),
(36889, 30420, 'en', 'name', 'Spanish Association Against Cancer'),
(36890, 30420, 'es', 'name', 'Asociación Española Contra el CÔncer'),
(36891, 30421, 'no_lang_code', 'name', 'Proof Research (United States)'),
(36892, 30422, 'en', 'name', 'Zhumadian Central Hospital'),
(36893, 30423, 'no_lang_code', 'name', 'Systems Engineering and Assessment (United Kingdom)'),
(36894, 30424, 'fr', 'name', 'Fondation Lefoulon-Delalande'),
(36895, 30425, 'no_lang_code', 'name', 'Innovation Impact (Sweden)'),
(36896, 30426, 'fr', 'name', 'ComitƩ National de Lutte contre le SIDA'),
(36897, 30427, 'no_lang_code', 'name', 'Guelph Utility Pole (Canada)'),
(36898, 30428, 'no_lang_code', 'name', 'Ingredion (Canada)'),
(36899, 30429, 'no_lang_code', 'name', 'Wavecon (United States)'),
(36900, 30430, 'no_lang_code', 'name', 'SimWay (Sweden)'),
(36901, 30431, 'no_lang_code', 'name', 'Oxazogen (United States)'),
(36902, 30432, 'en', 'name', 'Institute for Laser Technology'),
(36903, 30432, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ćƒ¬ćƒ¼ć‚¶ćƒ¼ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(36904, 30433, 'no_lang_code', 'name', 'Stark Aerospace (United States)'),
(36905, 30434, 'en', 'name', 'Campus Science Support Facilities'),
(36906, 30435, 'no_lang_code', 'name', 'Sensor Concepts (United States)'),
(36907, 30436, 'no_lang_code', 'name', 'Applied Nanotools (Canada)'),
(36908, 30437, 'no_lang_code', 'name', 'Open Text (Canada)'),
(36909, 30438, 'en', 'name', 'Seiwa Hospital'),
(36910, 30438, 'ja', 'name', 'é’å’Œē—…é™¢'),
(36911, 30439, 'en', 'name', '92nd Street Young Men''s and Young Women''s Hebrew Association'),
(36912, 30440, 'no_lang_code', 'name', 'Tolko (Canada)'),
(36913, 30441, 'no_lang_code', 'name', 'Ridgetop Group (United States)'),
(36914, 30442, 'no_lang_code', 'name', 'Aero-Tech Engineering (United States)'),
(36915, 30443, 'no_lang_code', 'name', 'Absiskey (France)'),
(36916, 30444, 'de', 'name', 'Tierärztliche Praxis für Neurologie'),
(36917, 30445, 'no_lang_code', 'name', 'Asahi Kasei (United States)'),
(36918, 30446, 'en', 'name', 'Swedish Agency for Marine and Water Management'),
(36919, 30446, 'sv', 'name', 'Havs- och Vattenmyndigheten'),
(36920, 30447, 'no_lang_code', 'name', 'HeyStaks Technologies (Ireland)'),
(36921, 30448, 'en', 'name', 'Maharaj Vijayaram Gajapathi Raj College of Engineering'),
(36922, 30449, 'no_lang_code', 'name', 'Cermaq (Canada)'),
(36923, 30450, 'en', 'name', 'Wisconsin Alumni Research Foundation'),
(36924, 30451, 'no_lang_code', 'name', 'Mistik Management (Canada)'),
(36925, 30452, 'no_lang_code', 'name', 'Maga (Slovakia)'),
(36926, 30453, 'no_lang_code', 'name', 'Longgang Central Hospital'),
(36927, 30454, 'no_lang_code', 'name', 'Advanced Engines Development (United States)'),
(36928, 30455, 'no_lang_code', 'name', 'CanKids KidsCan'),
(36929, 30456, 'no_lang_code', 'name', 'Cenovus Energy (Canada)'),
(36930, 30457, 'en', 'name', 'Group of Eight'),
(36931, 30458, 'en', 'name', 'United States-Israel Binational Science Foundation'),
(36932, 30459, 'no_lang_code', 'name', 'Cismet (Germany)'),
(36933, 30460, 'en', 'name', 'Maryland Department of Disabilities'),
(36934, 30461, 'no_lang_code', 'name', 'Omega Piezo Technologies (United States)'),
(36935, 30462, 'en', 'name', 'Research and Development for Silicates and Ceramics'),
(36936, 30463, 'no_lang_code', 'name', 'Financial Research (Hungary)'),
(36937, 30464, 'sk', 'name', 'GymnÔzium Ľudovíta Štúra'),
(36938, 30465, 'no_lang_code', 'name', 'Institute for Studies and Power Engineering (Romania)'),
(36939, 30466, 'en', 'name', 'Research Corporation for Science Advancement'),
(36940, 30467, 'fr', 'name', 'Fondation de la Faune du QuƩbec'),
(36941, 30468, 'en', 'name', 'Dignitas International'),
(36942, 30469, 'en', 'name', 'CUNY School of Law'),
(36943, 30470, 'en', 'name', 'Department of Primary Industries, Parks, Water and Environment'),
(36944, 30471, 'no_lang_code', 'name', 'Osemi (Canada)'),
(36945, 30472, 'no_lang_code', 'name', 'Eotron (United States)'),
(36946, 30473, 'no_lang_code', 'name', 'Intuitive Research and Technology Corporation (United States)'),
(36947, 30474, 'no_lang_code', 'name', 'JV Driver Projects (Canada)'),
(36948, 30475, 'no_lang_code', 'name', 'Miller Group (Canada)'),
(36949, 30476, 'no_lang_code', 'name', 'Integument Technologies (United States)'),
(36950, 30477, 'en', 'name', 'National Institute for Research in Tribal Health'),
(36951, 30478, 'no_lang_code', 'name', 'PowerData (United States)'),
(36952, 30479, 'en', 'name', 'Canadian Heritage'),
(36953, 30479, 'fr', 'name', 'Patrimoine Canadien'),
(36954, 30480, 'en', 'name', 'NIHR Birmingham Liver Biomedical Research Unit'),
(36955, 30481, 'no_lang_code', 'name', 'Aeroconseil (France)'),
(36956, 30482, 'no_lang_code', 'name', 'Pathfinder Systems (United States)'),
(36957, 30483, 'no_lang_code', 'name', 'VCUQatar'),
(36958, 30484, 'en', 'name', 'Clark College'),
(36959, 30485, 'en', 'name', 'V Foundation for Cancer Research'),
(36960, 30486, 'no_lang_code', 'name', 'Moberg Pharma (Sweden)'),
(36961, 30487, 'no_lang_code', 'name', 'Huys Industries (Canada)'),
(36962, 30488, 'no_lang_code', 'name', 'AEH (Slovakia)'),
(36963, 30489, 'no_lang_code', 'name', 'Hentzen (United States)'),
(36964, 30490, 'no_lang_code', 'name', 'Multi-Phase Technologies (United States)'),
(36965, 30491, 'no_lang_code', 'name', 'EcoCatalytic Technologies (United States)'),
(36966, 30492, 'no_lang_code', 'name', 'Dynacast (United States)'),
(36967, 30493, 'no_lang_code', 'name', 'JX Crystals (United States)'),
(36968, 30494, 'no_lang_code', 'name', 'Verendus System (Sweden)'),
(36969, 30495, 'no_lang_code', 'name', 'Timars (Sweden)'),
(36970, 30496, 'no_lang_code', 'name', 'ATC New Technologies (United States)'),
(36971, 30497, 'en', 'name', 'American Institute of Indian Studies'),
(36972, 30498, 'en', 'name', 'Cataract Foundation of the Philippines'),
(36973, 30499, 'en', 'name', 'Belarusian Republican Foundation for Fundamental Research'),
(36974, 30500, 'no_lang_code', 'name', 'McGaw Technology (United States)'),
(36975, 30501, 'no_lang_code', 'name', 'Higher Education Press (China)'),
(36976, 30502, 'en', 'name', 'Viscardi Center'),
(36977, 30503, 'en', 'name', 'Isaac Newton Institute'),
(36978, 30504, 'en', 'name', 'Center for New American Media'),
(36979, 30505, 'en', 'name', 'The Natural Step'),
(36980, 30506, 'en', 'name', 'United States Institute of Peace'),
(36981, 30506, 'fr', 'name', 'Institut des Ɖtats-unis pour la paix'),
(36982, 30507, 'en', 'name', 'Wellcome Centre for Molecular Parasitology'),
(36983, 30508, 'no_lang_code', 'name', 'Kalos Technologies (United States)'),
(36984, 30509, 'no_lang_code', 'name', 'Bahawal Victoria Hospital'),
(36985, 30509, 'ur', 'name', 'ŲØŪŲ§ŁˆŁ„ وکٹوریہ Ų³Ł¾ŲŖŲ§Ł„ā€¬ā€Ž,'),
(36986, 30510, 'en', 'name', 'Public Health Department'),
(36987, 30511, 'en', 'name', 'African Studies Centre'),
(36988, 30511, 'nl', 'name', 'Afrika Studiecentrum'),
(36989, 30512, 'no_lang_code', 'name', 'Vivoline Medical (Sweden)'),
(36990, 30513, 'no_lang_code', 'name', 'SARomics Biostructures (Sweden)'),
(36991, 30514, 'de', 'name', 'Katholische Privat-UniversitƤt Linz'),
(36992, 30514, 'en', 'name', 'Catholic Theological Private University Linz'),
(36993, 30515, 'en', 'name', 'Barton College'),
(36994, 30516, 'no_lang_code', 'name', 'RNET Technologies (United States)'),
(36995, 30517, 'no_lang_code', 'name', 'Centriair (Sweden)'),
(36996, 30518, 'en', 'name', 'Fergusson College'),
(36997, 30519, 'en', 'name', 'Qingdao Mental Health Center'),
(36998, 30520, 'no_lang_code', 'name', 'Volvo (United States)'),
(36999, 30521, 'no_lang_code', 'name', 'Electrodynamics Associates (United States)'),
(37000, 30522, 'no_lang_code', 'name', 'GoHypersonic (United States)'),
(37001, 30523, 'en', 'name', 'Environmental and Water Resources Engineering'),
(37002, 30524, 'en', 'name', 'British Red Cross'),
(37003, 30525, 'en', 'name', 'John S. and James L. Knight Foundation'),
(37004, 30526, 'no_lang_code', 'name', 'Alcohol Countermeasure Systems (Canada)'),
(37005, 30527, 'en', 'name', 'Remington College'),
(37006, 30528, 'en', 'name', 'Environment Research and Technology Development Fund'),
(37007, 30529, 'no_lang_code', 'name', 'Hordeum (Slovakia)'),
(37008, 30530, 'en', 'name', 'Institute of Clinical Research'),
(37009, 30531, 'en', 'name', 'Watkins College of Art Design and Film'),
(37010, 30532, 'no_lang_code', 'name', 'Eclipse Energy Systems (United States)'),
(37011, 30533, 'en', 'name', 'Fudan University Shanghai Cancer Center'),
(37012, 30534, 'id', 'name', 'Yayasan Masyarakat Dan Perikanan Indonesia'),
(37013, 30535, 'en', 'name', 'Technological Center of Nutrition and Health'),
(37014, 30535, 'es', 'name', 'Centre Tecnològic de Nutrició i Salut'),
(37015, 30536, 'no_lang_code', 'name', 'Linnaeus Plant Sciences (Canada)'),
(37016, 30537, 'en', 'name', 'British Ecological Society'),
(37017, 30538, 'no_lang_code', 'name', 'Nammo (United States)'),
(37018, 30539, 'en', 'name', 'Construction Owners Association of Alberta'),
(37019, 30540, 'no_lang_code', 'name', 'Orexplore (Sweden)'),
(37020, 30541, 'de', 'name', 'Nationale Bernstein Netzwerk Computational Neuroscience'),
(37021, 30541, 'en', 'name', 'National Bernstein Network Computational Neuroscience'),
(37022, 30542, 'no_lang_code', 'name', 'Magnolia Optical Technologies (United States)'),
(37023, 30543, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado de Minas Gerais'),
(37024, 30544, 'no_lang_code', 'name', 'Level Set Systems (United States)'),
(37025, 30545, 'en', 'name', 'University of Pharmacy Mandalay'),
(37026, 30545, 'my', 'name', 'į€†į€±į€øį€į€«į€øį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(į€™į€”į€¹į€į€œį€±į€ø)'),
(37027, 30546, 'no_lang_code', 'name', 'EOSPACE (United States)'),
(37028, 30547, 'no_lang_code', 'name', 'Hydromantis Environmental Software Solutions (Canada)'),
(37029, 30548, 'no_lang_code', 'name', 'Uv Tech (Sweden)'),
(37030, 30549, 'de', 'name', 'Technische Hochschule Nürnberg Georg Simon Ohm'),
(37031, 30549, 'en', 'name', 'Georg Simon Ohm University of Applied Sciences Nuremberg'),
(37032, 30550, 'no_lang_code', 'name', 'Linden Photonics (United States)'),
(37033, 30551, 'de', 'name', 'Ɩsterreichische Nationalbank'),
(37034, 30551, 'en', 'name', 'National Bank of Austria'),
(37035, 30552, 'en', 'name', 'Ecancer'),
(37036, 30553, 'no_lang_code', 'name', 'Thales (Canada)'),
(37037, 30554, 'en', 'name', 'Welch Foundation'),
(37038, 30555, 'en', 'name', 'Swedish Industrial Design Foundation'),
(37039, 30556, 'no_lang_code', 'name', 'Fastvdo (United States)'),
(37040, 30557, 'en', 'name', 'Institute of Oncology Prof. Dr. Ion Chiricuta'),
(37041, 30558, 'no_lang_code', 'name', 'Torch Technologies (United States)'),
(37042, 30559, 'no_lang_code', 'name', 'Micro Cooling Concepts (United States)'),
(37043, 30560, 'no_lang_code', 'name', 'BI Pure Water (Canada)'),
(37044, 30561, 'en', 'name', 'Forage Genetics International'),
(37045, 30562, 'en', 'name', 'Canadian Steel Producers Association'),
(37046, 30562, 'fr', 'name', 'Association Canadienne des Producteurs d''Acier'),
(37047, 30563, 'en', 'name', 'Minhang District Central Hospital'),
(37048, 30564, 'no_lang_code', 'name', 'Unilever (Canada)'),
(37049, 30565, 'no_lang_code', 'name', 'Touchtech (Sweden)'),
(37050, 30566, 'no_lang_code', 'name', 'AkzoNobel (Canada)'),
(37051, 30567, 'no_lang_code', 'name', 'Autoline Insurance (United Kingdom)'),
(37052, 30568, 'no_lang_code', 'name', 'Fugro (United Kingdom)'),
(37053, 30569, 'en', 'name', 'Discovery Eye Foundation'),
(37054, 30570, 'no_lang_code', 'name', 'Polymer Research Technologies (Canada)'),
(37055, 30571, 'no_lang_code', 'name', 'Kemira (Canada)'),
(37056, 30572, 'en', 'name', 'Medicines for Malaria Venture'),
(37057, 30573, 'en', 'name', 'CSG Centre for Society and the Life Sciences'),
(37058, 30574, 'de', 'name', 'Asklepios Klinik Altona'),
(37059, 30575, 'en', 'name', 'Association of Heavy Vehicles'),
(37060, 30575, 'sv', 'name', 'Tunga Fordon'),
(37061, 30576, 'no_lang_code', 'name', 'Sperient (United States)'),
(37062, 30577, 'no_lang_code', 'name', 'mZeal Communications (United States)'),
(37063, 30578, 'en', 'name', 'Hemostasis and Thrombosis Research Society'),
(37064, 30579, 'en', 'name', 'Biobanking and Biomolecular Resources Research Infrastructure Consortium'),
(37065, 30580, 'en', 'name', 'Building Testing and Research Institute'),
(37066, 30581, 'no_lang_code', 'name', 'QuesTek (United States)'),
(37067, 30582, 'no_lang_code', 'name', 'Sustainable Business Hub (Sweden)'),
(37068, 30583, 'no_lang_code', 'name', 'American Research Corporation of Virginia (United States)'),
(37069, 30584, 'no_lang_code', 'name', 'J.B. Anderson & Son (United States)'),
(37070, 30585, 'no_lang_code', 'name', 'Innoflight (United States)'),
(37071, 30586, 'no_lang_code', 'name', 'PEL Associates (United States)'),
(37072, 30587, 'no_lang_code', 'name', 'De Francisci Machine Company (United States)'),
(37073, 30588, 'no_lang_code', 'name', 'Charles River Laboratories (United Kingdom)'),
(37074, 30589, 'en', 'name', 'Blue Cross Blue Shield of Michigan Foundation'),
(37075, 30590, 'no_lang_code', 'name', 'SeCan (Canada)'),
(37076, 30591, 'no_lang_code', 'name', 'Luminit (United States)'),
(37077, 30592, 'no_lang_code', 'name', 'FloDesign (United States)'),
(37078, 30593, 'no_lang_code', 'name', 'Envirocare (Slovakia)'),
(37079, 30594, 'fr', 'name', 'Centre de Recherche MƩdicale et Sanitaire'),
(37080, 30595, 'no_lang_code', 'name', 'Vironova (Sweden)'),
(37081, 30596, 'no_lang_code', 'name', 'Cognizant (United Kingdom)'),
(37082, 30597, 'en', 'name', 'Information Technology Association of Canada'),
(37083, 30597, 'fr', 'name', 'Association Canadienne de la Technologie de l''Information'),
(37084, 30598, 'en', 'name', 'Open Society Foundations'),
(37085, 30599, 'en', 'name', 'Hungarian National Blood Transfusion Service'),
(37086, 30600, 'en', 'name', 'Universities Federation for Animal Welfare'),
(37087, 30601, 'en', 'name', 'National Centre for Nuclear Energy, Science and Technology'),
(37088, 30602, 'no_lang_code', 'name', 'Penn West Exploration (Canada)'),
(37089, 30603, 'no_lang_code', 'name', 'TelAztec (United States)'),
(37090, 30604, 'en', 'name', 'Hungarian National Museum'),
(37091, 30605, 'no_lang_code', 'name', 'TvƄ Punkt Ett (Sweden)'),
(37092, 30606, 'no_lang_code', 'name', 'Mirion Technologies (United States)'),
(37093, 30607, 'no_lang_code', 'name', 'Hazelett (United States)'),
(37094, 30608, 'no_lang_code', 'name', 'Blue Canyon Technologies (United States)'),
(37095, 30609, 'en', 'name', 'Spanish Agency for International Development Cooperation'),
(37096, 30609, 'es', 'name', 'Agencia Española de Cooperación Internacional para el Desarrollo'),
(37097, 30610, 'en', 'name', 'Museum of the Tropics'),
(37098, 30610, 'nl', 'name', 'Tropenmuseum'),
(37099, 30611, 'no_lang_code', 'name', 'Fires (Slovakia)'),
(37100, 30612, 'en', 'name', 'National Science and Technology Entrepreneurship Development Board'),
(37101, 30613, 'fr', 'name', 'Centre Hospitalier Territorial de Nouvelle-CalƩdonie'),
(37102, 30614, 'en', 'name', 'Dyer Island Conservation Trust'),
(37103, 30615, 'en', 'name', 'Diabetes Research Institute Foundation'),
(37104, 30616, 'no_lang_code', 'name', 'International Submarine Engineering (Canada)'),
(37105, 30617, 'en', 'name', 'Museum of Literature'),
(37106, 30618, 'en', 'name', 'Spencer Foundation'),
(37107, 30619, 'no_lang_code', 'name', 'Suniva (United States)'),
(37108, 30620, 'fr', 'name', 'Centre de Recherche MƩdicales de LambarƩnƩ'),
(37109, 30621, 'en', 'name', 'Fujian Provincial Department of Science and Technology'),
(37110, 30622, 'no_lang_code', 'name', 'RDL (United States)'),
(37111, 30623, 'no_lang_code', 'name', 'Houghton Mifflin Harcourt (United States)'),
(37112, 30624, 'en', 'name', 'Ministry of Civil Affairs'),
(37113, 30624, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½ę°‘ę”æéƒØ'),
(37114, 30625, 'no_lang_code', 'name', 'Acadian Peat Moss (Canada)'),
(37115, 30626, 'no_lang_code', 'name', 'Walsh Medical Devices (Canada)'),
(37116, 30627, 'no_lang_code', 'name', 'Dane Technologies (United States)'),
(37117, 30628, 'no_lang_code', 'name', 'Restek (United States)'),
(37118, 30629, 'fr', 'name', 'Agence ThƩmatique de Recherche en Science de la SantƩ'),
(37119, 30630, 'no_lang_code', 'name', 'Optical Engines (United States)'),
(37120, 30631, 'no_lang_code', 'name', 'Upsher-Smith Laboratories (United States)'),
(37121, 30632, 'de', 'name', 'Innoventor'),
(37122, 30633, 'en', 'name', 'Sea to Shore Alliance'),
(37123, 30634, 'no_lang_code', 'name', 'Dynalloy (United States)'),
(37124, 30635, 'no_lang_code', 'name', 'Engineering Associates (United States)'),
(37125, 30636, 'no_lang_code', 'name', 'Paulsson (United States)'),
(37126, 30637, 'en', 'name', 'SĆ£o Paulo’s Agency for Agribusiness Technology'),
(37127, 30637, 'pt', 'name', 'Agência Paulista de Tecnologia dos Agronegócios'),
(37128, 30638, 'no_lang_code', 'name', 'Canetique (Canada)'),
(37129, 30639, 'en', 'name', 'National Pork Board'),
(37130, 30640, 'en', 'name', 'Medical Research Scotland');
INSERT INTO `ror_settings` VALUES
(37131, 30641, 'en', 'name', 'National Bureau of Plant Genetic Resources'),
(37132, 30642, 'no_lang_code', 'name', 'Core Laboratories (United States)'),
(37133, 30643, 'en', 'name', 'Life Science Governance Institute'),
(37134, 30644, 'en', 'name', 'Autograph ABP'),
(37135, 30645, 'en', 'name', 'Museum of Hungarian Agriculture'),
(37136, 30646, 'no_lang_code', 'name', 'Clinique d''OptomĆ©trie l’Émerillon (Canada)'),
(37137, 30647, 'no_lang_code', 'name', 'Replify (United Kingdom)'),
(37138, 30648, 'no_lang_code', 'name', 'Heliotrope Technologies (United States)'),
(37139, 30649, 'hu', 'name', 'Magyar KƶzgazdasƔgi TƔrsasƔg'),
(37140, 30650, 'en', 'name', 'Millennium Institute of Astrophysics'),
(37141, 30650, 'es', 'name', 'Instituto de Milenio de AstrofĆ­sica'),
(37142, 30651, 'no_lang_code', 'name', 'Noveltis (France)'),
(37143, 30652, 'no_lang_code', 'name', 'Pulse Energy (New Zealand)'),
(37144, 30653, 'no_lang_code', 'name', 'Vencore (United States)'),
(37145, 30654, 'es', 'name', 'Fundación Mutua Madrileña'),
(37146, 30655, 'en', 'name', 'ResMed Foundation'),
(37147, 30656, 'en', 'name', 'SkƄne Food Innovation Network'),
(37148, 30656, 'sv', 'name', 'SkƄnes Livsmedelsakademi'),
(37149, 30657, 'no_lang_code', 'name', 'Advanced Anti-Terror Technologies (United States)'),
(37150, 30658, 'no_lang_code', 'name', 'FIKRA'),
(37151, 30659, 'no_lang_code', 'name', 'Optical Physics Company (United States)'),
(37152, 30660, 'en', 'name', 'Amazon Research Foundation'),
(37153, 30660, 'pt', 'name', 'Fundação AmazÓnia Paraense de Amparo à Pesquisa'),
(37154, 30661, 'no_lang_code', 'name', 'Friction Stir Link (United States)'),
(37155, 30662, 'en', 'name', 'Association of Zoos and Aquariums'),
(37156, 30663, 'no_lang_code', 'name', 'Boston Micromachines (United States)'),
(37157, 30664, 'fr', 'name', 'Actions pour l’Environnement et le DĆ©veloppement Durable'),
(37158, 30665, 'no_lang_code', 'name', 'EXcorLab (Germany)'),
(37159, 30666, 'en', 'name', 'Canadian Anesthesiologists'' Society'),
(37160, 30667, 'en', 'name', 'Centre for Research on Brain Language and Music'),
(37161, 30668, 'es', 'name', 'Consorcio Hospitalario Provincial de Castellón'),
(37162, 30669, 'no_lang_code', 'name', 'Acuity Technologies (United States)'),
(37163, 30670, 'no_lang_code', 'name', 'AFCO Systems (United States)'),
(37164, 30671, 'no_lang_code', 'name', 'Softronic (Sweden)'),
(37165, 30672, 'no_lang_code', 'name', 'SPX Transformer Solutions (United States)'),
(37166, 30673, 'no_lang_code', 'name', 'Magellium (United Kingdom)'),
(37167, 30674, 'no_lang_code', 'name', 'Altex Technologies Corporation (United States)'),
(37168, 30675, 'no_lang_code', 'name', 'Ontar (United States)'),
(37169, 30676, 'no_lang_code', 'name', 'Lambda Instruments (United States)'),
(37170, 30677, 'no_lang_code', 'name', 'Gleason (Italy)'),
(37171, 30678, 'no_lang_code', 'name', 'Sustainable Home Survey (United Kingdom)'),
(37172, 30679, 'no_lang_code', 'name', 'Effectus But Different (Sweden)'),
(37173, 30680, 'no_lang_code', 'name', 'Kingston Software Factory (Canada)'),
(37174, 30681, 'en', 'name', 'Stockholm International Water Institute'),
(37175, 30681, 'fr', 'name', 'L’Institut International de l’Eau de Stockholm'),
(37176, 30682, 'en', 'name', 'Canadian Wood Council'),
(37177, 30682, 'fr', 'name', 'Conseil canadien du bois'),
(37178, 30683, 'en', 'name', 'German-Israeli Foundation for Scientific Research and Development'),
(37179, 30684, 'en', 'name', 'Institute of Croatian Language and Linguistics'),
(37180, 30685, 'en', 'name', 'Saskatchewan Health Research Foundation'),
(37181, 30686, 'nl', 'name', 'Dunea'),
(37182, 30687, 'en', 'name', 'Danish Ramazzini Center'),
(37183, 30688, 'no_lang_code', 'name', 'Ultramed (United States)'),
(37184, 30689, 'en', 'name', 'The World Academy of Sciences'),
(37185, 30690, 'no_lang_code', 'name', 'Setrab (Sweden)'),
(37186, 30691, 'no_lang_code', 'name', 'OssDsign (Sweden)'),
(37187, 30692, 'en', 'name', 'Center for Plant Conservation'),
(37188, 30693, 'en', 'name', 'World Anti-Doping Agency'),
(37189, 30693, 'fr', 'name', 'Agence mondiale antidopage'),
(37190, 30694, 'no_lang_code', 'name', 'Industrial Planning Technology (United States)'),
(37191, 30695, 'no_lang_code', 'name', 'Siemens (China)'),
(37192, 30696, 'en', 'name', 'Women Helping Others Foundation'),
(37193, 30697, 'no_lang_code', 'name', 'VÚRUP (Slovakia)'),
(37194, 30698, 'en', 'name', 'Limassol General Hospital'),
(37195, 30699, 'fr', 'name', 'Ford du Canada LimitƩe'),
(37196, 30699, 'no_lang_code', 'name', 'Ford Motor Company (Canada)'),
(37197, 30700, 'en', 'name', 'Jiangxi Provincial Cancer Hospital'),
(37198, 30700, 'zh', 'name', 'ę±Ÿč„æēœč‚æē˜¤åŒ»é™¢'),
(37199, 30701, 'no_lang_code', 'name', 'Vuki (Slovakia)'),
(37200, 30702, 'en', 'name', 'American Academy of Art'),
(37201, 30703, 'de', 'name', 'ISAAC Gesellschaft für Unterstützte Kommunikation'),
(37202, 30704, 'no_lang_code', 'name', 'Data Harbor (United States)'),
(37203, 30705, 'no_lang_code', 'name', 'Spectrum Magnetics (United States)'),
(37204, 30706, 'en', 'name', 'Ningbo City College of Vocational Technology'),
(37205, 30707, 'no_lang_code', 'name', 'Safe (United States)'),
(37206, 30708, 'en', 'name', 'Johanneberg Science Park'),
(37207, 30709, 'en', 'name', '307th Hospital of Chinese People’s Liberation Army'),
(37208, 30709, 'zh', 'name', '307医院'),
(37209, 30710, 'en', 'name', 'Nutricia Research Foundation'),
(37210, 30711, 'en', 'name', 'Ministry of Health and Welfare'),
(37211, 30711, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ 볓걓복지부'),
(37212, 30712, 'en', 'name', 'Swedish Institute for Studies in Education and Research'),
(37213, 30713, 'no_lang_code', 'name', 'Decisive Analytics Corporation (United States)'),
(37214, 30714, 'no_lang_code', 'name', 'Applied Diamond (United States)'),
(37215, 30715, 'pt', 'name', 'Laboratório Nacional de Ciência e Tecnologia do Bioetanol'),
(37216, 30716, 'en', 'name', 'Central European House of Photography'),
(37217, 30717, 'no_lang_code', 'name', 'Capco (United States)'),
(37218, 30718, 'no_lang_code', 'name', 'Orbotech (United States)'),
(37219, 30719, 'en', 'name', 'Canadian Standards Association'),
(37220, 30720, 'no_lang_code', 'name', 'Assured Information Security (United States)'),
(37221, 30721, 'no_lang_code', 'name', 'BlackPak (United States)'),
(37222, 30722, 'en', 'name', 'Foundation for Research Support of GoiƔs State'),
(37223, 30722, 'pt', 'name', 'Fundação de Apoio a Pesquisa do Estado de GoiÔs'),
(37224, 30723, 'en', 'name', 'Iowa Department for the Blind'),
(37225, 30724, 'no_lang_code', 'name', 'Candent Technologies (United States)'),
(37226, 30725, 'no_lang_code', 'name', 'SDS International (United States)'),
(37227, 30726, 'no_lang_code', 'name', 'C. van ''t Riet Dairy Technology (Netherlands)'),
(37228, 30727, 'no_lang_code', 'name', 'Cellworks Research (India)'),
(37229, 30728, 'no_lang_code', 'name', 'Redondo Optics (United States)'),
(37230, 30729, 'en', 'name', 'Alberta Energy'),
(37231, 30730, 'no_lang_code', 'name', 'Integrated Statistics (United States)'),
(37232, 30731, 'no_lang_code', 'name', 'Loki (United States)'),
(37233, 30732, 'no_lang_code', 'name', 'Nu-Tech Precision Metals (Canada)'),
(37234, 30733, 'en', 'name', 'CeNTech'),
(37235, 30734, 'no_lang_code', 'name', 'Louisiana-Pacific (Canada)'),
(37236, 30735, 'en', 'name', 'Institute of Art History'),
(37237, 30736, 'no_lang_code', 'name', 'West Fraser (Canada)'),
(37238, 30737, 'en', 'name', 'East Tallinn Central Hospital'),
(37239, 30738, 'no_lang_code', 'name', 'Astron Wireless Technologies (United States)'),
(37240, 30739, 'no_lang_code', 'name', 'Intelligent Light (United States)'),
(37241, 30740, 'el', 'name', 'ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ της Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĪ®Ļ‚ ĪˆĪ½Ļ‰ĻƒĪ·Ļ‚ για την Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī± Ī”Ī¹ĪŗĻ„ĻĻ‰Ī½ και Ī Ī»Ī·ĻĪæĻ†ĪæĻĪ¹ĻŽĪ½'),
(37242, 30740, 'en', 'name', 'European Union Agency for Network and Information Security'),
(37243, 30740, 'fr', 'name', 'Agence EuropƩenne ChargƩe de la SƩcuritƩ des RƩseaux et de l''Information'),
(37244, 30741, 'no_lang_code', 'name', 'KGHM Polska MiedÅŗ (Poland)'),
(37245, 30742, 'en', 'name', 'Growth Analysis'),
(37246, 30743, 'no_lang_code', 'name', 'VBN Components (Sweden)'),
(37247, 30744, 'no_lang_code', 'name', 'Knobley Technical Associates (United States)'),
(37248, 30745, 'en', 'name', 'North Staffordshire Clinical Commissioning Group'),
(37249, 30746, 'no_lang_code', 'name', 'Ostara Nutrient Recovery Technologies (Canada)'),
(37250, 30747, 'no_lang_code', 'name', 'Intrinsix (United States)'),
(37251, 30748, 'no_lang_code', 'name', 'Carolina Unmanned Vehicles (United States)'),
(37252, 30749, 'en', 'name', 'Tzu Hui Institute of Technology'),
(37253, 30750, 'no_lang_code', 'name', 'Andritz (Canada)'),
(37254, 30751, 'en', 'name', 'Jackson College'),
(37255, 30752, 'no_lang_code', 'name', 'Epitaxial Technologies (United States)'),
(37256, 30753, 'en', 'name', 'All India Council for Technical Education'),
(37257, 30754, 'no_lang_code', 'name', 'Weston Solutions (United States)'),
(37258, 30755, 'en', 'name', 'Ohio Sea Grant College Program'),
(37259, 30756, 'no_lang_code', 'name', 'Abeam Technologies (United States)'),
(37260, 30757, 'no_lang_code', 'name', 'Neva Ridge Technologies (United States)'),
(37261, 30758, 'en', 'name', 'Kazakh-American University'),
(37262, 30759, 'no_lang_code', 'name', 'Food Dudes (United Kingdom)'),
(37263, 30760, 'en', 'name', 'Great Lakes Fishery Trust'),
(37264, 30761, 'no_lang_code', 'name', 'Solink (Canada)'),
(37265, 30762, 'no_lang_code', 'name', 'Monocl (Sweden)'),
(37266, 30763, 'no_lang_code', 'name', 'Hain Celestial (Canada)'),
(37267, 30764, 'en', 'name', 'Claude Leon Foundation'),
(37268, 30765, 'no_lang_code', 'name', 'Top Notch Building Maintenance (Canada)'),
(37269, 30766, 'en', 'name', 'Ethiopian Public Health Institute'),
(37270, 30767, 'no_lang_code', 'name', 'ITS (Sweden)'),
(37271, 30768, 'no_lang_code', 'name', 'Cerpotech (Norway)'),
(37272, 30769, 'no_lang_code', 'name', 'Auriga Microwave (United States)'),
(37273, 30770, 'no_lang_code', 'name', 'Microwave Vision Group (United States)'),
(37274, 30771, 'en', 'name', 'American Gastroenterological Association'),
(37275, 30772, 'en', 'name', 'ƅkroken Science Park'),
(37276, 30773, 'cs', 'name', 'Ministerstvo zdravotnictví České republiky'),
(37277, 30773, 'en', 'name', 'Ministry of Health'),
(37278, 30774, 'cy', 'name', 'Y Swyddfa Gartref'),
(37279, 30774, 'en', 'name', 'Home Office'),
(37280, 30775, 'no_lang_code', 'name', 'ƚstav Radiačnej Ochrany (Slovakia)'),
(37281, 30776, 'no_lang_code', 'name', '4C Strategies (Sweden)'),
(37282, 30777, 'en', 'name', 'Arts and Culture Trust'),
(37283, 30778, 'en', 'name', 'Flight Attendant Medical Research Institute'),
(37284, 30779, 'no_lang_code', 'name', 'Coca Cola (United States)'),
(37285, 30780, 'no_lang_code', 'name', 'McQ (United States)'),
(37286, 30781, 'en', 'name', 'Ovarian Cancer Action'),
(37287, 30782, 'en', 'name', 'Estonian History Museum'),
(37288, 30783, 'en', 'name', 'Lee County Board of Commissioners'),
(37289, 30784, 'no_lang_code', 'name', 'Polaris Sensor Technologies (United States)'),
(37290, 30785, 'no_lang_code', 'name', 'MARK Resources (United States)'),
(37291, 30786, 'en', 'name', 'Applied Scientific Research Fund'),
(37292, 30787, 'en', 'name', 'Institute of Physics and Technology'),
(37293, 30788, 'en', 'name', 'Social Historic Centre for Limburg'),
(37294, 30788, 'nl', 'name', 'Sociaal Historisch Centrum voor Limburg'),
(37295, 30789, 'no_lang_code', 'name', 'Thales (United States)'),
(37296, 30790, 'en', 'name', 'Scientific Services'),
(37297, 30791, 'no_lang_code', 'name', 'Findus (Sweden)'),
(37298, 30792, 'en', 'name', 'Mississippi Department of Rehabilitation Services'),
(37299, 30793, 'sv', 'name', 'Chalmersinvest'),
(37300, 30794, 'en', 'name', 'First Affiliated Hospital of Liaoning Medical University'),
(37301, 30795, 'no_lang_code', 'name', 'Excet (United States)'),
(37302, 30796, 'en', 'name', 'Dundee City Council'),
(37303, 30797, 'en', 'name', 'National Environment Agency'),
(37304, 30798, 'no_lang_code', 'name', 'Allstate (United States)'),
(37305, 30799, 'en', 'name', 'Thomas College'),
(37306, 30800, 'en', 'name', 'New Jersey Department of Transportation'),
(37307, 30800, 'es', 'name', 'Departamento de Transporte de Nueva Jersey'),
(37308, 30801, 'en', 'name', 'New York Academy of Art'),
(37309, 30802, 'no_lang_code', 'name', 'Microscan Systems (United States)'),
(37310, 30803, 'fr', 'name', 'SociƩtƩ Radio-Canada'),
(37311, 30803, 'no_lang_code', 'name', 'CBC (Canada)'),
(37312, 30804, 'en', 'name', 'Institut de Pathologie et de GƩnƩtique, Institute of Pathology and Genetics'),
(37313, 30805, 'en', 'name', 'Health Research Council of New Zealand'),
(37314, 30806, 'en', 'name', 'National Sleep Foundation'),
(37315, 30807, 'en', 'name', 'Namal College'),
(37316, 30808, 'no_lang_code', 'name', 'Geophex (United States)'),
(37317, 30809, 'no_lang_code', 'name', 'Morphix Technologies (United States)'),
(37318, 30810, 'en', 'name', 'Waitt Foundation'),
(37319, 30811, 'no_lang_code', 'name', 'Xcell (Slovakia)'),
(37320, 30812, 'en', 'name', 'Science and Engineering Research Council'),
(37321, 30813, 'en', 'name', 'Netherlands Metabolomics Centre'),
(37322, 30814, 'no_lang_code', 'name', 'Jackson Laboratories (India)'),
(37323, 30815, 'de', 'name', 'Ludwig Boltzmann Institut für Epilepsie und Neuromuskuläre Erkrankungen'),
(37324, 30816, 'no_lang_code', 'name', 'Research Support Instruments (United States)'),
(37325, 30817, 'en', 'name', 'Danish National Research Foundation'),
(37326, 30818, 'nl', 'name', 'Rode Kruis-Vlaanderen'),
(37327, 30819, 'de', 'name', 'Ɩsterreichisches Museum für Volkskunde'),
(37328, 30819, 'en', 'name', 'Austrian Museum of Folk Life and Folk Art'),
(37329, 30820, 'en', 'name', 'AccessMatters'),
(37330, 30821, 'en', 'name', 'Tabor College'),
(37331, 30822, 'no_lang_code', 'name', 'Amtrak (United States)'),
(37332, 30823, 'en', 'name', 'Texas Commission on Environmental Quality'),
(37333, 30824, 'no_lang_code', 'name', 'Ocean Power Technologies (United Kingdom)'),
(37334, 30825, 'no_lang_code', 'name', 'Grace (Canada)'),
(37335, 30826, 'en', 'name', 'Department of Science and Technology'),
(37336, 30826, 'hi', 'name', 'ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ विभाग'),
(37337, 30826, 'ml', 'name', 'ą“¶ą“¾ą“øąµą“¤ąµą“° ą“øą“¾ą“™ąµą“•ąµ‡ą“¤ą“æą“• ą“µą“•ąµą“Ŗąµą“Ŗąµ'),
(37338, 30827, 'no_lang_code', 'name', 'Lonza (Canada)'),
(37339, 30828, 'en', 'name', 'National Museum of Natural Science'),
(37340, 30828, 'zh', 'name', 'åœ‹ē«‹č‡Ŗē„¶ē§‘å­øåšē‰©é¤Ø'),
(37341, 30829, 'en', 'name', 'Korea International Cooperation Agency'),
(37342, 30829, 'ko', 'name', 'ķ•œźµ­źµ­ģ œķ˜‘ė „ė‹Ø'),
(37343, 30830, 'en', 'name', 'National Museum of Antiquities'),
(37344, 30830, 'nl', 'name', 'Rijksmuseum van Oudheden'),
(37345, 30831, 'no_lang_code', 'name', 'GlaxoSmithKline (Australia)'),
(37346, 30832, 'en', 'name', 'Min-Hwei College of Health Care Management'),
(37347, 30833, 'en', 'name', 'Florida College'),
(37348, 30834, 'no_lang_code', 'name', 'V Corp Technologies (United States)'),
(37349, 30835, 'no_lang_code', 'name', 'KRD Molecular Technologies (Slovakia)'),
(37350, 30836, 'no_lang_code', 'name', 'RemoteReality (United States)'),
(37351, 30837, 'no_lang_code', 'name', 'Thorpe Seeop (United States)'),
(37352, 30838, 'en', 'name', 'Pathologist Bio-Medical Laboratories'),
(37353, 30839, 'no_lang_code', 'name', 'Sweco (Sweden)'),
(37354, 30840, 'no_lang_code', 'name', 'Acentech (United States)'),
(37355, 30841, 'no_lang_code', 'name', 'Cybosoft (United States)'),
(37356, 30842, 'no_lang_code', 'name', 'Avantek (Slovakia)'),
(37357, 30843, 'pt', 'name', 'Museu Paraense EmĆ­lio Goeldi'),
(37358, 30844, 'en', 'name', 'Technological University Pakokku'),
(37359, 30845, 'no_lang_code', 'name', 'Areta (Slovakia)'),
(37360, 30846, 'no_lang_code', 'name', 'Li Creative Technologies (United States)'),
(37361, 30847, 'no_lang_code', 'name', 'Sardegna Ricerche (Italy)'),
(37362, 30848, 'no_lang_code', 'name', 'APS Materials (United States)'),
(37363, 30849, 'en', 'name', 'Elizabeth R. Griffin Research Foundation'),
(37364, 30850, 'en', 'name', 'Bernstein Center for Computational Neuroscience Freiburg'),
(37365, 30851, 'no_lang_code', 'name', 'Processkontroll (Sweden)'),
(37366, 30852, 'hu', 'name', 'NógrÔd Megyei Múzeumi Szervezet'),
(37367, 30853, 'no_lang_code', 'name', 'American GNC (United States)'),
(37368, 30854, 'no_lang_code', 'name', 'Crunchfish (Sweden)'),
(37369, 30855, 'no_lang_code', 'name', 'Spaceflight Industries (United States)'),
(37370, 30856, 'no_lang_code', 'name', 'Alta Precision (Canada)'),
(37371, 30857, 'no_lang_code', 'name', 'MTS3 (United States)'),
(37372, 30858, 'en', 'name', 'Saint Anthony College of Nursing'),
(37373, 30859, 'no_lang_code', 'name', 'Mivac Development (Sweden)'),
(37374, 30860, 'no_lang_code', 'name', 'Hulteberg (Sweden)'),
(37375, 30861, 'en', 'name', 'Calgary Construction Association'),
(37376, 30862, 'en', 'name', 'Network for Transport Measures'),
(37377, 30863, 'en', 'name', 'European Legal Center'),
(37378, 30863, 'sk', 'name', 'Európske PrĆ”vne Centrum Občianske Združenie'),
(37379, 30864, 'no_lang_code', 'name', 'General Dynamics (Canada)'),
(37380, 30865, 'es', 'name', 'KarumbƩ'),
(37381, 30866, 'no_lang_code', 'name', 'Analytical Engineering (United States)'),
(37382, 30867, 'no_lang_code', 'name', 'Purelink (Canada)'),
(37383, 30868, 'en', 'name', 'Israel Institute for Advanced Studies'),
(37384, 30869, 'no_lang_code', 'name', 'Material Innovations (United States)'),
(37385, 30870, 'no_lang_code', 'name', 'Advanced Projects Research Incorporated (United States)'),
(37386, 30871, 'en', 'name', 'Gulf of Mexico Research Initiative'),
(37387, 30872, 'en', 'name', 'Hungarian Open air Museum'),
(37388, 30873, 'en', 'name', 'Baptist College of Florida'),
(37389, 30874, 'no_lang_code', 'name', 'Advanced BioRefinery (Canada)'),
(37390, 30875, 'en', 'name', 'Ruian People''s Hospital'),
(37391, 30875, 'zh', 'name', 'ē‘žå®‰åø‚äŗŗę°‘åŒ»é™¢'),
(37392, 30876, 'no_lang_code', 'name', 'Manning Applied Technology (United States)'),
(37393, 30877, 'en', 'name', 'Indian Association for Cancer Research'),
(37394, 30878, 'no_lang_code', 'name', 'PhaseSpace (United States)'),
(37395, 30879, 'no_lang_code', 'name', 'Nordic Paper (Sweden)'),
(37396, 30880, 'no_lang_code', 'name', 'FriGeo (Sweden)'),
(37397, 30881, 'en', 'name', 'Kootenay Association for Science & Technology'),
(37398, 30882, 'no_lang_code', 'name', 'Infinia Technology Corporation (United States)'),
(37399, 30883, 'en', 'name', 'Endocrine Society of Australia'),
(37400, 30884, 'en', 'name', 'Leona M. and Harry B. Helmsley Charitable Trust'),
(37401, 30885, 'no_lang_code', 'name', 'Novo Nordisk (United States)'),
(37402, 30886, 'en', 'name', 'NHS Education for Scotland'),
(37403, 30887, 'en', 'name', 'National Breast Cancer Foundation'),
(37404, 30888, 'en', 'name', 'Health Resources and Services Administration'),
(37405, 30889, 'no_lang_code', 'name', 'Mercene Labs (Sweden)'),
(37406, 30890, 'en', 'name', 'Henry Luce Foundation'),
(37407, 30891, 'no_lang_code', 'name', 'Planar Energy (United States)'),
(37408, 30892, 'no_lang_code', 'name', 'Colorado Engineering (United States)'),
(37409, 30893, 'en', 'name', 'Hertfordshire Partnership University NHS Foundation Trust'),
(37410, 30894, 'no_lang_code', 'name', 'Applied NanoFemto Technologies (United States)'),
(37411, 30895, 'no_lang_code', 'name', 'Altamira Technologies'),
(37412, 30896, 'no_lang_code', 'name', 'Equinox (United States)'),
(37413, 30897, 'no_lang_code', 'name', 'Kinova (Canada)'),
(37414, 30898, 'no_lang_code', 'name', 'Bedford Signals (United States)'),
(37415, 30899, 'fr', 'name', 'Univalor'),
(37416, 30900, 'en', 'name', 'Australia and New Zealand Banking Group'),
(37417, 30901, 'en', 'name', 'Government of The Gambia'),
(37418, 30902, 'no_lang_code', 'name', 'Marucco Stoddard Ferenbach and Walsh (United States)'),
(37419, 30903, 'no_lang_code', 'name', 'FishEye Software (United States)'),
(37420, 30904, 'no_lang_code', 'name', 'Welkin Sciences (United States)'),
(37421, 30905, 'en', 'name', 'Communications Security Establishment'),
(37422, 30905, 'fr', 'name', 'Centre de la SƩcuritƩ des TƩlƩcommunications'),
(37423, 30906, 'en', 'name', 'Second Affiliated Hospital of Dalian Medical University'),
(37424, 30907, 'no_lang_code', 'name', 'Development Services Security Innovations (Slovakia)'),
(37425, 30908, 'no_lang_code', 'name', 'Good Nutrition Ideas (United States)'),
(37426, 30909, 'no_lang_code', 'name', 'POET Technologies (United States)'),
(37427, 30910, 'de', 'name', 'Alexander von Humboldt-Stiftung'),
(37428, 30910, 'en', 'name', 'Alexander von Humboldt Foundation'),
(37429, 30911, 'en', 'name', 'Luxembourg Institute of Health'),
(37430, 30912, 'en', 'name', 'Leverhulme Trust'),
(37431, 30913, 'no_lang_code', 'name', 'PositiveID (United States)'),
(37432, 30914, 'no_lang_code', 'name', 'Logos Technologies (United States)'),
(37433, 30915, 'en', 'name', 'Ministry of Science, Technology and Innovation'),
(37434, 30916, 'en', 'name', 'Metropolitan College of New York'),
(37435, 30917, 'en', 'name', 'Foundation for the Advancement of Mesoamerican Studies'),
(37436, 30918, 'no_lang_code', 'name', 'DELL (Ireland)'),
(37437, 30919, 'de', 'name', 'Kommission für Technologie und Innovation'),
(37438, 30919, 'en', 'name', 'Commission for Technology and Innovation'),
(37439, 30920, 'no_lang_code', 'name', 'Pioneer Astronautics (United States)'),
(37440, 30921, 'no_lang_code', 'name', 'Wedeven Associates (United States)'),
(37441, 30922, 'en', 'name', 'Manitoba Arts Council'),
(37442, 30923, 'no_lang_code', 'name', 'II-VI (United States)'),
(37443, 30924, 'en', 'name', 'Changsha Central Hospital'),
(37444, 30925, 'en', 'name', 'Dead Sea and Arava Science Center'),
(37445, 30925, 'he', 'name', 'מו"פ ×ž×“×‘×Ø וים המלח'),
(37446, 30926, 'no_lang_code', 'name', 'Spang (United States)'),
(37447, 30927, 'no_lang_code', 'name', 'Fantastic Data (United States)'),
(37448, 30928, 'no_lang_code', 'name', 'Rock West Solutions (United States)'),
(37449, 30929, 'no_lang_code', 'name', 'Valueguard (Sweden)'),
(37450, 30930, 'en', 'name', 'Malaysia Genome Institute'),
(37451, 30931, 'no_lang_code', 'name', 'SynTech Bioenergy (United States)'),
(37452, 30932, 'no_lang_code', 'name', 'Accenture (United States)'),
(37453, 30933, 'no_lang_code', 'name', 'Sysav South Scania Waste (Sweden)'),
(37454, 30934, 'en', 'name', 'Gulf Organisation for Research & Development'),
(37455, 30935, 'en', 'name', 'Intensive Care Society'),
(37456, 30936, 'no_lang_code', 'name', 'Myers Power Products (United States)'),
(37457, 30937, 'en', 'name', 'Clinton Health Access Initiative'),
(37458, 30938, 'no_lang_code', 'name', 'Snook (United Kingdom)'),
(37459, 30939, 'no_lang_code', 'name', 'Silicon Technologies (United States)'),
(37460, 30940, 'en', 'name', 'Foundation for Market Economy'),
(37461, 30941, 'no_lang_code', 'name', 'Pragati Synergetic Research (United States)'),
(37462, 30942, 'no_lang_code', 'name', 'Alpine Helicopters (Canada)'),
(37463, 30943, 'en', 'name', 'Canadian Turfgrass Research Foundation'),
(37464, 30944, 'de', 'name', 'Museum für angewandte Kunst'),
(37465, 30944, 'en', 'name', 'Museum of Applied Arts'),
(37466, 30945, 'en', 'name', 'Satou Hospital'),
(37467, 30946, 'en', 'name', 'Gavi'),
(37468, 30947, 'no_lang_code', 'name', 'CanBiocin (Canada)'),
(37469, 30948, 'en', 'name', 'Lexington School for the Deaf'),
(37470, 30949, 'en', 'name', 'Canterbury Shaker Village'),
(37471, 30950, 'en', 'name', 'Bombay Veterinary College'),
(37472, 30951, 'no_lang_code', 'name', 'Applied Thermal Sciences (United States)'),
(37473, 30952, 'no_lang_code', 'name', 'Island Timberlands (Canada)'),
(37474, 30953, 'no_lang_code', 'name', 'Shanghai Hi-Tech joint biotechnology R & D (China)'),
(37475, 30954, 'en', 'name', 'Chadacre Agricultural Trust'),
(37476, 30955, 'en', 'name', 'Wenzao Ursuline University of Languages'),
(37477, 30955, 'zh', 'name', 'ę–‡č—»å¤–čŖžå¤§å­ø'),
(37478, 30956, 'no_lang_code', 'name', 'Exfluor Research (United States)'),
(37479, 30957, 'en', 'name', 'Blue Cross and Blue Shield of North Carolina Foundation'),
(37480, 30958, 'no_lang_code', 'name', 'Sukra Helitek (United States)'),
(37481, 30959, 'en', 'name', 'Australian Federation of Graduate Women New South Wales'),
(37482, 30960, 'pt', 'name', 'Centro de Educação Profissional em Tecnologia da Informação de Petrópolis'),
(37483, 30961, 'en', 'name', 'Australian Historical Association'),
(37484, 30962, 'en', 'name', 'Belgian American Educational Foundation'),
(37485, 30963, 'no_lang_code', 'name', 'Unomaly (Sweden)'),
(37486, 30964, 'no_lang_code', 'name', 'PolyPlus Battery Company (United States)'),
(37487, 30965, 'no_lang_code', 'name', 'Immunocore (United Kingdom)'),
(37488, 30966, 'no_lang_code', 'name', 'Inera (Sweden)'),
(37489, 30967, 'no_lang_code', 'name', 'Aurel Systems (Canada)'),
(37490, 30968, 'en', 'name', 'American Society for Clinical Laboratory Science'),
(37491, 30969, 'no_lang_code', 'name', 'Cestné stavby Žilina (Slovakia)'),
(37492, 30970, 'en', 'name', 'Center for Research and Teaching in Economics'),
(37493, 30970, 'es', 'name', 'Centro de Investigación y Docencia Económicas'),
(37494, 30971, 'en', 'name', 'Accordia Global Health Foundation'),
(37495, 30972, 'no_lang_code', 'name', 'American Energy Technologies Co (United States)'),
(37496, 30973, 'en', 'name', 'Minerva Foundation'),
(37497, 30974, 'no_lang_code', 'name', 'Varian Medical Systems (Canada)'),
(37498, 30975, 'no_lang_code', 'name', 'Interdisciplinary Consulting Corporation (United States)'),
(37499, 30976, 'en', 'name', 'Southern Research Institute'),
(37500, 30977, 'no_lang_code', 'name', 'Analog Devices (United States)'),
(37501, 30978, 'no_lang_code', 'name', 'Entegris (United States)'),
(37502, 30979, 'no_lang_code', 'name', 'VƩtoquinol (Canada)'),
(37503, 30980, 'en', 'name', 'Wildlife Habitat Canada (Canada)'),
(37504, 30981, 'en', 'name', 'King''s Fund'),
(37505, 30982, 'no_lang_code', 'name', 'SPINEA (Slovakia)'),
(37506, 30983, 'no_lang_code', 'name', 'GoldenSUN (Slovakia)'),
(37507, 30984, 'no_lang_code', 'name', 'Syntonics (United States)'),
(37508, 30985, 'no_lang_code', 'name', 'Amtec (United States)'),
(37509, 30986, 'no_lang_code', 'name', 'Hot Disk (Sweden)'),
(37510, 30987, 'en', 'name', 'Mathleaks'),
(37511, 30988, 'no_lang_code', 'name', 'Diamond Visionics (United States)'),
(37512, 30989, 'no_lang_code', 'name', 'Trident Systems (United States)'),
(37513, 30990, 'en', 'name', 'Sustainable Energy Authority of Ireland'),
(37514, 30991, 'en', 'name', 'Public and Science'),
(37515, 30992, 'no_lang_code', 'name', 'Bonnier (Sweden)'),
(37516, 30993, 'en', 'name', 'Singapore Institute for Clinical Sciences'),
(37517, 30994, 'en', 'name', 'Henan Psychiatric Hospital'),
(37518, 30995, 'no_lang_code', 'name', 'CTS Corporation (United States)'),
(37519, 30996, 'no_lang_code', 'name', 'Doosan Heavy Industries & Construction (South Korea)'),
(37520, 30997, 'en', 'name', 'Small Business Administration'),
(37521, 30998, 'no_lang_code', 'name', 'Hillrom (United States)'),
(37522, 30999, 'no_lang_code', 'name', 'Konstrukta - Industry (Slovakia)'),
(37523, 31000, 'en', 'name', 'New York State Department of Labor'),
(37524, 31001, 'no_lang_code', 'name', 'Teknikfƶretagen (Sweden)'),
(37525, 31002, 'no_lang_code', 'name', 'Quantum Intelligence (United States)'),
(37526, 31003, 'en', 'name', 'Ministry of Housing and Urban-Rural Development'),
(37527, 31003, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½ä½ęˆæå’ŒåŸŽä¹”å»ŗč®¾éƒØ'),
(37528, 31004, 'no_lang_code', 'name', 'Archol (Netherlands)'),
(37529, 31005, 'en', 'name', 'Maritime Fishermen''s Union'),
(37530, 31006, 'no_lang_code', 'name', 'Kuraray (Canada)'),
(37531, 31007, 'no_lang_code', 'name', 'Acconeer (Sweden)'),
(37532, 31008, 'no_lang_code', 'name', 'Autonomous Solutions (United States)'),
(37533, 31009, 'no_lang_code', 'name', 'Blatek (United States)'),
(37534, 31010, 'no_lang_code', 'name', 'Electronic Warfare Associates (United States)'),
(37535, 31011, 'no_lang_code', 'name', 'Provexa (Sweden)'),
(37536, 31012, 'en', 'name', 'Harish-Chandra Research Institute'),
(37537, 31012, 'hi', 'name', 'ą¤¹ą¤°ą„€ą¤¶ą¤šą¤‚ą¤¦ą„ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(37538, 31013, 'en', 'name', 'Museum of Work'),
(37539, 31014, 'no_lang_code', 'name', 'North American Construction Group (Canada)'),
(37540, 31015, 'en', 'name', 'St. Louis Christian College'),
(37541, 31016, 'en', 'name', 'Institute of Economics Zagreb'),
(37542, 31017, 'en', 'name', 'Spartanburg Methodist College'),
(37543, 31018, 'no_lang_code', 'name', 'Mobile Heights (Sweden)'),
(37544, 31019, 'no_lang_code', 'name', 'Tango Systems (United States)'),
(37545, 31020, 'no_lang_code', 'name', 'Gloyer-Taylor Laboratories (United States)'),
(37546, 31021, 'en', 'name', 'Foundational Questions Institute'),
(37547, 31022, 'fr', 'name', 'Association QuƩbƩcoise des Fournisseurs et Utilisateurs de Bitume, Bitume QuƩbec'),
(37548, 31023, 'no_lang_code', 'name', 'Cyber Defense Agency (United States)'),
(37549, 31024, 'no_lang_code', 'name', 'Solvay (United States)'),
(37550, 31025, 'no_lang_code', 'name', 'Cangzhou Central Hospital'),
(37551, 31026, 'es', 'name', 'Red TemÔtica de Investigación Cooperativa en CÔncer'),
(37552, 31027, 'no_lang_code', 'name', 'Akka Technologies (Italy)'),
(37553, 31028, 'no_lang_code', 'name', 'Wiotech (Sweden)'),
(37554, 31029, 'en', 'name', 'Jinan City Science and Technology Bureau'),
(37555, 31030, 'en', 'name', 'Straight Ahead Pictures'),
(37556, 31031, 'no_lang_code', 'name', 'LINC Design (United States)'),
(37557, 31032, 'en', 'name', 'Wuhan Science and Technology Bureau'),
(37558, 31033, 'no_lang_code', 'name', 'Photonic Systems (United States)'),
(37559, 31034, 'no_lang_code', 'name', 'Tecnologia e Ricerca Italiana (Italy)'),
(37560, 31035, 'no_lang_code', 'name', 'Norsk Hydro (Slovakia)'),
(37561, 31036, 'en', 'name', 'Croatian Institute of History'),
(37562, 31037, 'no_lang_code', 'name', 'Technosoft (United States)'),
(37563, 31038, 'en', 'name', 'Oriental Institute of Technology'),
(37564, 31039, 'no_lang_code', 'name', 'OLA Display (Canada)'),
(37565, 31040, 'no_lang_code', 'name', 'Nissan (United States)'),
(37566, 31041, 'no_lang_code', 'name', 'Directed Energy Solutions (United States)'),
(37567, 31042, 'no_lang_code', 'name', 'Rainford Precision (United Kingdom)'),
(37568, 31043, 'no_lang_code', 'name', 'Neya Systems (United States)'),
(37569, 31044, 'en', 'name', 'Aircast Foundation'),
(37570, 31045, 'en', 'name', 'Canary Islands Government'),
(37571, 31045, 'es', 'name', 'Gobierno de Canarias'),
(37572, 31046, 'en', 'name', 'Bugher Foundation'),
(37573, 31047, 'no_lang_code', 'name', 'Hyteon (Canada)'),
(37574, 31048, 'nl', 'name', 'NuGO'),
(37575, 31049, 'no_lang_code', 'name', 'Varentec (United States)'),
(37576, 31050, 'es', 'name', 'Hospital de Poniente'),
(37577, 31051, 'en', 'name', 'Indo-French Centre for the Promotion of Advanced Research'),
(37578, 31051, 'fr', 'name', 'Centre Franco-Indien pour la Promotion de la Recherche AvancƩe'),
(37579, 31052, 'en', 'name', 'Halifax Regional Water Commission'),
(37580, 31053, 'en', 'name', 'Chiang Ching-kuo Foundation'),
(37581, 31054, 'en', 'name', 'Fanjingshan National Nature Reserve'),
(37582, 31055, 'no_lang_code', 'name', 'Zolo Technologies (United States)'),
(37583, 31056, 'en', 'name', 'Institute for System Programming'),
(37584, 31056, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ системного ŠæŃ€Š¾Š³Ń€Š°Š¼Š¼ŠøŃ€Š¾Š²Š°Š½ŠøŃ'),
(37585, 31057, 'de', 'name', 'Instituts für Altersforschung'),
(37586, 31057, 'en', 'name', 'Ludwig Boltzmann Institute for Age Research'),
(37587, 31058, 'no_lang_code', 'name', 'General Nano (United States)'),
(37588, 31059, 'de', 'name', 'Initiative Minderheiten Tirol'),
(37589, 31060, 'no_lang_code', 'name', 'Lasen (United States)'),
(37590, 31061, 'en', 'name', 'Centre for Healthy Start Initiative'),
(37591, 31062, 'no_lang_code', 'name', 'Microwave Monolithics (United States)'),
(37592, 31063, 'no_lang_code', 'name', 'Tilde (Estonia)'),
(37593, 31064, 'en', 'name', 'Slovak Youth Institute'),
(37594, 31065, 'no_lang_code', 'name', 'Cubic (United States)'),
(37595, 31066, 'no_lang_code', 'name', 'Hermes Medical Solutions (Sweden)'),
(37596, 31067, 'en', 'name', 'Xinyang College of Agriculture and Forestry'),
(37597, 31067, 'zh', 'name', 'äæ”é˜³å†œęž—å­¦é™¢'),
(37598, 31068, 'no_lang_code', 'name', 'Genetec (United States)'),
(37599, 31069, 'no_lang_code', 'name', 'BioTillion (United States)'),
(37600, 31070, 'no_lang_code', 'name', 'Optistring (Sweden)'),
(37601, 31071, 'en', 'name', 'Society for Family Health Nigeria'),
(37602, 31072, 'en', 'name', 'Norwegian Nurses Organisation'),
(37603, 31073, 'en', 'name', 'Menlo College'),
(37604, 31074, 'no_lang_code', 'name', 'Fracture Analysis Consultants (United States)'),
(37605, 31075, 'no_lang_code', 'name', 'BIOX (Canada)'),
(37606, 31076, 'de', 'name', 'DWI – Leibniz-Institut für Interaktive Materialien'),
(37607, 31076, 'en', 'name', 'DWI – Leibniz Institute for Interactive Materials'),
(37608, 31077, 'no_lang_code', 'name', 'Qpoint Composite (Germany)'),
(37609, 31078, 'it', 'name', 'Azienda Ospedaliera di Cosenza'),
(37610, 31079, 'no_lang_code', 'name', 'L-3 Aeromet (United States)'),
(37611, 31080, 'no_lang_code', 'name', 'Fingerprint Cards (Sweden)'),
(37612, 31081, 'no_lang_code', 'name', 'IAP Research (United States)'),
(37613, 31082, 'en', 'name', 'Leakey Foundation'),
(37614, 31083, 'no_lang_code', 'name', 'Excillum (Sweden)'),
(37615, 31084, 'no_lang_code', 'name', 'Wireless Edge (Canada)'),
(37616, 31085, 'no_lang_code', 'name', 'Inorganic Specialists (United States)'),
(37617, 31086, 'no_lang_code', 'name', 'Computer Multimedia Productions Corporation (United States)'),
(37618, 31087, 'fr', 'name', 'Conseil RƩgional de Champagne-Ardenne'),
(37619, 31088, 'en', 'name', 'Royal Free Charity'),
(37620, 31089, 'en', 'name', 'National Research Council of Thailand'),
(37621, 31090, 'en', 'name', 'Ithaka Harbors'),
(37622, 31091, 'no_lang_code', 'name', 'EllisDon (Canada)'),
(37623, 31092, 'no_lang_code', 'name', 'Cartiere Modesto Cardella (Italy)'),
(37624, 31093, 'no_lang_code', 'name', 'Nordiq (Sweden)'),
(37625, 31094, 'no_lang_code', 'name', 'OptiGrate (United States)'),
(37626, 31095, 'en', 'name', 'British Interplanetary Society'),
(37627, 31096, 'no_lang_code', 'name', 'Japan Medi- Mental Institute'),
(37628, 31097, 'no_lang_code', 'name', 'NestlƩ (Canada)'),
(37629, 31098, 'no_lang_code', 'name', 'Sensera (United States)'),
(37630, 31099, 'en', 'name', 'Kidney Foundation of Canada'),
(37631, 31099, 'fr', 'name', 'La Fondation Canadienne du Rein'),
(37632, 31100, 'no_lang_code', 'name', 'Schemagi (Sweden)'),
(37633, 31101, 'en', 'name', 'Save the Elephants'),
(37634, 31102, 'fr', 'name', 'ECAM Institut SupƩrieur Industriel'),
(37635, 31103, 'en', 'name', 'Academy of Television Arts and Sciences'),
(37636, 31104, 'en', 'name', 'Budapest History Museum'),
(37637, 31105, 'en', 'name', 'Swedish Patent and Registration Office'),
(37638, 31105, 'fi', 'name', 'Ruotsin patentti- ja rekisterivirasto'),
(37639, 31105, 'sv', 'name', 'Patent- och registreringsverket'),
(37640, 31106, 'en', 'name', 'New England Law'),
(37641, 31107, 'no_lang_code', 'name', 'PricewaterhouseCoopers (Sweden)'),
(37642, 31108, 'no_lang_code', 'name', 'Promimic (Sweden)'),
(37643, 31109, 'en', 'name', 'Camille and Henry Dreyfus Foundation'),
(37644, 31110, 'no_lang_code', 'name', 'OpenEye (Sweden)'),
(37645, 31111, 'en', 'name', 'Inspire Foundation'),
(37646, 31112, 'no_lang_code', 'name', 'Qunav (United States)'),
(37647, 31113, 'no_lang_code', 'name', 'Mechanical Solutions (United States)'),
(37648, 31114, 'en', 'name', 'Assar Gabrielsson Foundation'),
(37649, 31114, 'sv', 'name', 'Stiftelsen Assar Gabrielssons Fond'),
(37650, 31115, 'en', 'name', 'Observatory and Planetarium of Maximilian Hell'),
(37651, 31116, 'en', 'name', 'Student Competitions'),
(37652, 31117, 'en', 'name', 'Stockholm Innovation & Growth'),
(37653, 31118, 'es', 'name', 'Instituto Nacional de Salud del NiƱo'),
(37654, 31119, 'en', 'name', 'Skƶvde Municipality'),
(37655, 31120, 'en', 'name', 'Naval Research Board'),
(37656, 31120, 'hi', 'name', 'ą¤Øą„Œą¤øą„‡ą¤Øą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤¬ą„‹ą¤°ą„ą¤”'),
(37657, 31121, 'no_lang_code', 'name', 'Reservoir Labs (United States)'),
(37658, 31122, 'no_lang_code', 'name', 'Hi-Test Laboratories (United States)'),
(37659, 31123, 'en', 'name', 'Western Australian Museum'),
(37660, 31124, 'no_lang_code', 'name', 'Milliken & Company (United States)'),
(37661, 31125, 'no_lang_code', 'name', 'Rutter (Canada)'),
(37662, 31126, 'no_lang_code', 'name', 'Nano Terra (United States)'),
(37663, 31127, 'de', 'name', 'Ɩsterreichische Gesellschaft für Zivilluftfahrt'),
(37664, 31127, 'no_lang_code', 'name', 'Austro Control (Austria)'),
(37665, 31128, 'no_lang_code', 'name', 'Sensible Solutions (Sweden)'),
(37666, 31129, 'no_lang_code', 'name', 'Prediction Systems (United States)'),
(37667, 31130, 'no_lang_code', 'name', 'Deep Web Technologies (United States)'),
(37668, 31131, 'en', 'name', 'Associated Medical Services'),
(37669, 31132, 'en', 'name', 'Sweden-Japan Foundation'),
(37670, 31133, 'no_lang_code', 'name', 'Oxford Instruments (United States)'),
(37671, 31134, 'en', 'name', 'Swedish Standards Institute'),
(37672, 31135, 'en', 'name', 'Seven'),
(37673, 31136, 'no_lang_code', 'name', 'Technical Resource Group (United States)'),
(37674, 31137, 'no_lang_code', 'name', 'First Welding Company (Slovakia)'),
(37675, 31138, 'no_lang_code', 'name', 'Luxel (United States)'),
(37676, 31139, 'no_lang_code', 'name', 'Van Leer Jerusalem Institute'),
(37677, 31140, 'en', 'name', 'Stevens–Henager College'),
(37678, 31141, 'no_lang_code', 'name', 'Kairos Future (Sweden)'),
(37679, 31142, 'no_lang_code', 'name', 'Cdup (Sweden)'),
(37680, 31143, 'de', 'name', 'Thüringer Aufbaubank'),
(37681, 31144, 'no_lang_code', 'name', 'Control Vision (United States)'),
(37682, 31145, 'no_lang_code', 'name', 'MMICMAN (United States)'),
(37683, 31146, 'no_lang_code', 'name', 'Sirona Health Solutions (Sweden)'),
(37684, 31147, 'no_lang_code', 'name', 'Autodesk (Canada)'),
(37685, 31148, 'no_lang_code', 'name', 'Brimrose (United States)'),
(37686, 31149, 'fr', 'name', 'Centre de Recherche en Sciences Animales de Deschambault'),
(37687, 31150, 'no_lang_code', 'name', 'Digital Scientific (United Kingdom)'),
(37688, 31151, 'no_lang_code', 'name', 'Apollo Microwaves (Canada)'),
(37689, 31152, 'en', 'name', 'Patrick Henry College'),
(37690, 31153, 'en', 'name', 'Bowel Disease Research Foundation'),
(37691, 31154, 'no_lang_code', 'name', 'Cytodiagnostics (Canada)'),
(37692, 31155, 'no_lang_code', 'name', 'Erigo Technologies (United States)'),
(37693, 31156, 'en', 'name', 'Shantou University Mental Health Center'),
(37694, 31157, 'en', 'name', 'Royal Netherlands Institute of Southeast Asian and Caribbean Studies'),
(37695, 31157, 'nl', 'name', 'Koninklijk Instituut voor Taal-, Land- en Volkenkunde'),
(37696, 31158, 'no_lang_code', 'name', 'CeraNova (United States)'),
(37697, 31159, 'en', 'name', 'West Yangon Technological University'),
(37698, 31159, 'my', 'name', 'į€›į€”į€ŗį€€į€Æį€”į€ŗį€”į€”į€±į€¬į€€į€ŗį€•į€­į€Æį€„į€ŗį€øį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(37699, 31160, 'en', 'name', 'Washington Space Grant Consortium'),
(37700, 31161, 'no_lang_code', 'name', 'Anasphere (United States)'),
(37701, 31162, 'no_lang_code', 'name', 'Monogram Technologies (Slovakia)'),
(37702, 31163, 'en', 'name', 'Cancer Society of New Zealand'),
(37703, 31164, 'no_lang_code', 'name', 'Telescent (United States)'),
(37704, 31165, 'no_lang_code', 'name', 'Global Strategic Solutions (United States)'),
(37705, 31166, 'no_lang_code', 'name', 'Environetix Technologies (United States)'),
(37706, 31167, 'no_lang_code', 'name', 'Vinci (Slovakia)'),
(37707, 31168, 'en', 'name', 'European Cooperation in Science and Technology'),
(37708, 31169, 'en', 'name', 'College Art Association'),
(37709, 31170, 'no_lang_code', 'name', 'Morgan Solar (Canada)'),
(37710, 31171, 'no_lang_code', 'name', 'OSI Systems (United Kingdom)'),
(37711, 31172, 'no_lang_code', 'name', 'Ducommun (United States)'),
(37712, 31173, 'no_lang_code', 'name', 'OPX Biotechnologies (United States)'),
(37713, 31174, 'no_lang_code', 'name', 'MetLife (United States)'),
(37714, 31175, 'no_lang_code', 'name', 'HERION Systemtechnik (Germany)'),
(37715, 31176, 'no_lang_code', 'name', '21CSi (United States)'),
(37716, 31177, 'no_lang_code', 'name', 'Motion Metrics International (Canada)'),
(37717, 31178, 'no_lang_code', 'name', 'Novatio Engineering (United States)'),
(37718, 31179, 'en', 'name', 'VA Tennessee Valley Healthcare System'),
(37719, 31180, 'en', 'name', 'Institute of Chemical and Engineering Sciences'),
(37720, 31181, 'en', 'name', 'Rhode Island Department of Human Services'),
(37721, 31182, 'en', 'name', 'Menzies Foundation'),
(37722, 31183, 'no_lang_code', 'name', 'Orexo (Sweden)'),
(37723, 31184, 'no_lang_code', 'name', 'Arzon Solar (United States)'),
(37724, 31185, 'no_lang_code', 'name', 'Delastek (Canada)'),
(37725, 31186, 'en', 'name', 'Chemical Institute of Canada'),
(37726, 31186, 'fr', 'name', 'Institut de Chimie du Canada'),
(37727, 31187, 'no_lang_code', 'name', 'DEKRA Industrial (Sweden)'),
(37728, 31188, 'no_lang_code', 'name', 'Epsilon Lambda Electronics (United States)'),
(37729, 31189, 'no_lang_code', 'name', 'Combain Mobile (Sweden)'),
(37730, 31190, 'en', 'name', 'Minnesota Pollution Control Agency'),
(37731, 31191, 'no_lang_code', 'name', 'Blue Sky Electronics (United States)'),
(37732, 31192, 'en', 'name', 'First People''s Hospital of Foshan'),
(37733, 31193, 'no_lang_code', 'name', 'MicroStep (Slovakia)'),
(37734, 31194, 'no_lang_code', 'name', 'AEgis Technologies (United States)'),
(37735, 31195, 'en', 'name', 'Ruxmaniben Deepchand Gardi Medical College'),
(37736, 31196, 'no_lang_code', 'name', 'Labex (Sweden)'),
(37737, 31197, 'no_lang_code', 'name', 'MBM Group (Slovakia)'),
(37738, 31198, 'no_lang_code', 'name', 'Gothia Innovation (Sweden)'),
(37739, 31199, 'pt', 'name', 'Universidade Sociedade Educacional de Santa Catarina'),
(37740, 31200, 'no_lang_code', 'name', 'Nanophase Technologies (United States)'),
(37741, 31201, 'no_lang_code', 'name', 'LoadPath (United States)'),
(37742, 31202, 'en', 'name', 'Jiangsu Institute of Parasitic Diseases'),
(37743, 31202, 'zh', 'name', 'ę±Ÿč‹ēœåÆ„ē”Ÿč™«ē—…é˜²ę²»ē ”ē©¶ę‰€'),
(37744, 31203, 'en', 'name', 'National Public Health and Medical Officer Service'),
(37745, 31203, 'hu', 'name', 'Állami Népegészségügyi és Tisztiorvosi SzolgÔlat'),
(37746, 31204, 'no_lang_code', 'name', 'Quantum3D (United States)'),
(37747, 31205, 'no_lang_code', 'name', 'MicroVision (United States)'),
(37748, 31206, 'no_lang_code', 'name', 'Agribrands Purina (Canada)'),
(37749, 31207, 'no_lang_code', 'name', 'Metna (United States)'),
(37750, 31208, 'en', 'name', 'Cordoba University'),
(37751, 31209, 'en', 'name', 'Education Department of Fujian Province'),
(37752, 31210, 'no_lang_code', 'name', 'Mobile Intelligence (United States)'),
(37753, 31211, 'en', 'name', 'Ministry of Home Affairs'),
(37754, 31212, 'no_lang_code', 'name', 'Immunsystem (Sweden)'),
(37755, 31213, 'en', 'name', 'Alabama Farmers Federation'),
(37756, 31214, 'no_lang_code', 'name', 'Omnisys Instruments (Sweden)'),
(37757, 31215, 'no_lang_code', 'name', 'Solvatten (Sweden)'),
(37758, 31216, 'en', 'name', 'First Affiliated Hospital of Jiamusi University'),
(37759, 31217, 'en', 'name', 'Department of STD, AIDS and Viral Hepatitis'),
(37760, 31217, 'es', 'name', 'Departamento de Infecciones de Transmisión Sexual, Sida y Hepatitis Virales'),
(37761, 31217, 'pt', 'name', 'Departamento de DST, Aids e Hepatites Virais'),
(37762, 31218, 'en', 'name', 'Texas Sea Grant College Program'),
(37763, 31219, 'en', 'name', 'Christensen Fund'),
(37764, 31220, 'en', 'name', 'Sabah Wildlife Department'),
(37765, 31221, 'no_lang_code', 'name', 'CBot (Sweden)'),
(37766, 31222, 'en', 'name', 'Ontario Clean Water Agency'),
(37767, 31223, 'no_lang_code', 'name', 'Parans (Sweden)'),
(37768, 31224, 'no_lang_code', 'name', 'Advanced Practical Diagnostics (Belgium)'),
(37769, 31225, 'no_lang_code', 'name', 'Energy Focus (United States)'),
(37770, 31226, 'no_lang_code', 'name', 'Flexiwaggon (Sweden)'),
(37771, 31227, 'en', 'name', 'German-Russian Interdisciplinary Science Center'),
(37772, 31228, 'it', 'name', 'Ospedale Sant Antonio'),
(37773, 31229, 'no_lang_code', 'name', 'Axela (Canada)'),
(37774, 31230, 'no_lang_code', 'name', 'Translume (United States)'),
(37775, 31231, 'en', 'name', 'Kentucky Assistive Technology Services Network'),
(37776, 31232, 'no_lang_code', 'name', 'Solvay (Canada)'),
(37777, 31233, 'en', 'name', 'Ogden Engineering & Associates'),
(37778, 31234, 'no_lang_code', 'name', 'Castolin Eutectic (United Kingdom)'),
(37779, 31235, 'no_lang_code', 'name', 'Antik Telecom (Slovakia)'),
(37780, 31236, 'en', 'name', 'Fraternal Order of Eagles'),
(37781, 31237, 'en', 'name', 'Suzhou Guangji Hospital'),
(37782, 31238, 'en', 'name', 'Ministry of Micro, Small and Medium Enterprises'),
(37783, 31238, 'hi', 'name', 'ą¤øą„‚ą¤•ą„ą¤·ą„ą¤® , ą¤²ą¤˜ą„ और ą¤®ą¤§ą„ą¤Æą¤® ą¤‰ą¤¦ą„ą¤Æą¤® ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(37784, 31239, 'en', 'name', 'Wellbeing of Women'),
(37785, 31240, 'no_lang_code', 'name', 'BMA Engineering (United States)'),
(37786, 31241, 'en', 'name', 'American Bureau of Shipping'),
(37787, 31242, 'no_lang_code', 'name', 'Genias Software (Germany)'),
(37788, 31243, 'no_lang_code', 'name', 'Optifin Invest (Slovakia)'),
(37789, 31244, 'no_lang_code', 'name', 'Vibratess (United States)'),
(37790, 31245, 'en', 'name', 'Daqing Oilfield General Hospital'),
(37791, 31246, 'no_lang_code', 'name', 'TreadStone Technologies (United States)'),
(37792, 31247, 'no_lang_code', 'name', 'American Lithium Energy (United States)'),
(37793, 31248, 'no_lang_code', 'name', 'Technical Products Incorporation (United States)'),
(37794, 31249, 'no_lang_code', 'name', 'Alpha Omega Electromagnetics (United States)'),
(37795, 31250, 'no_lang_code', 'name', 'Memtronics (United States)'),
(37796, 31251, 'en', 'name', 'Primate Conservation'),
(37797, 31252, 'no_lang_code', 'name', 'SimWright (United States)'),
(37798, 31253, 'no_lang_code', 'name', 'Vitrolife (Sweden)'),
(37799, 31254, 'en', 'name', 'Swedish Network for Innovation & Technology Transfer Support'),
(37800, 31255, 'en', 'name', 'Historical Archives'),
(37801, 31256, 'en', 'name', 'Shandong Academy of Agricultural Sciences'),
(37802, 31256, 'zh', 'name', 'å±±äøœēœčŠ±ē”Ÿē ”ē©¶ę‰€'),
(37803, 31257, 'en', 'name', 'Second Hospital of Shandong University'),
(37804, 31258, 'no_lang_code', 'name', 'Prolysis (United Kingdom)'),
(37805, 31259, 'no_lang_code', 'name', 'OptiPro Systems (United States)'),
(37806, 31260, 'no_lang_code', 'name', 'ViTRAK Systems (Canada)'),
(37807, 31261, 'no_lang_code', 'name', 'ƅF (Sweden)'),
(37808, 31262, 'en', 'name', 'Swedish International Development Cooperation Agency'),
(37809, 31262, 'fi', 'name', 'Ruotsin kansainvƤlisen kehitysyhteistyƶn keskusvirasto'),
(37810, 31263, 'no_lang_code', 'name', 'PepsiCo (Canada)'),
(37811, 31264, 'en', 'name', 'Institute of Science and Technology of the Federal District'),
(37812, 31264, 'es', 'name', 'Instituto de Ciencia y Tecnologia del Distrito Federal'),
(37813, 31265, 'no_lang_code', 'name', 'P-mat'),
(37814, 31266, 'en', 'name', 'NIHR Leicester-Loughborough Diet, Lifestyle and Physical Activity Biomedical Research Unit'),
(37815, 31267, 'no_lang_code', 'name', 'MegaWave (United States)'),
(37816, 31268, 'en', 'name', 'Photonics Electronics Technology Research Association'),
(37817, 31268, 'ja', 'name', 'ćƒ•ć‚©ćƒˆćƒ‹ć‚Æć‚¹ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(37818, 31269, 'en', 'name', 'Canadian Fuels Association'),
(37819, 31269, 'fr', 'name', 'Association canadienne des carburants'),
(37820, 31270, 'no_lang_code', 'name', 'Signal Processing Devices (Sweden)'),
(37821, 31271, 'nl', 'name', 'Nederlandse Brandwonden Stichting'),
(37822, 31272, 'no_lang_code', 'name', 'IntelliEPI (United States)'),
(37823, 31273, 'no_lang_code', 'name', 'Quasonix (United States)'),
(37824, 31274, 'no_lang_code', 'name', 'Green Mountain Radio Research (United States)'),
(37825, 31275, 'no_lang_code', 'name', 'Trend Micro (Canada)'),
(37826, 31276, 'no_lang_code', 'name', 'KPM Industries (Canada)'),
(37827, 31277, 'en', 'name', 'Kerr Foundation'),
(37828, 31278, 'en', 'name', 'Li Ka Shing Foundation'),
(37829, 31279, 'en', 'name', 'American University for Humanities'),
(37830, 31280, 'en', 'name', 'Parapsychology Foundation'),
(37831, 31281, 'no_lang_code', 'name', 'Follicum (Sweden)'),
(37832, 31282, 'no_lang_code', 'name', 'STI Electronics (United States)'),
(37833, 31283, 'en', 'name', 'Estonian National Museum'),
(37834, 31284, 'no_lang_code', 'name', 'Toray International Europe (Germany)'),
(37835, 31285, 'no_lang_code', 'name', 'Remcom (United States)'),
(37836, 31286, 'en', 'name', 'Cariplo Foundation'),
(37837, 31286, 'it', 'name', 'Fondazione Cariplo'),
(37838, 31287, 'en', 'name', 'Westcountry Rivers Trust'),
(37839, 31288, 'es', 'name', 'Instituto del Mar del Peru'),
(37840, 31289, 'no_lang_code', 'name', 'Indiana Microelectronics (United States)'),
(37841, 31290, 'en', 'name', 'Damon Runyon Cancer Research Foundation'),
(37842, 31291, 'en', 'name', 'Royal College of General Practitioners'),
(37843, 31292, 'en', 'name', 'CUNY Advanced Science Research Center'),
(37844, 31293, 'en', 'name', 'Manitoba Canola Growers Association'),
(37845, 31294, 'no_lang_code', 'name', 'TechFlow (United States)'),
(37846, 31295, 'no_lang_code', 'name', 'Yad Ben Zvi'),
(37847, 31296, 'no_lang_code', 'name', 'Ebert Composites (United States)'),
(37848, 31297, 'en', 'name', 'American Academy of Audiology Foundation'),
(37849, 31298, 'en', 'name', 'Northumbria Healthcare NHS Foundation Trust'),
(37850, 31299, 'no_lang_code', 'name', 'Nyfors (Sweden)'),
(37851, 31300, 'no_lang_code', 'name', 'Alfa Products and Technologies (Belgium)'),
(37852, 31301, 'no', 'name', 'Trondheim Kommune'),
(37853, 31302, 'no_lang_code', 'name', 'HyPerComp (United States)'),
(37854, 31303, 'no_lang_code', 'name', 'ATA Engineering (United States)'),
(37855, 31304, 'no_lang_code', 'name', 'ExxonMobil (Canada)'),
(37856, 31305, 'en', 'name', 'Jenny and Antti Wihuri Foundation'),
(37857, 31305, 'fi', 'name', 'Jenny ja Antti Wihurin Rahasto'),
(37858, 31306, 'no_lang_code', 'name', 'Detectify (Sweden)'),
(37859, 31307, 'en', 'name', 'Central Christian College of the Bible'),
(37860, 31308, 'ar', 'name', 'واحة Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ في قطر'),
(37861, 31308, 'en', 'name', 'Qatar Science and Technology Park'),
(37862, 31309, 'no_lang_code', 'name', 'Athera (Sweden)'),
(37863, 31310, 'en', 'name', 'Epilepsy Research UK'),
(37864, 31311, 'en', 'name', 'Institute of Informatics and Statistics');
INSERT INTO `ror_settings` VALUES
(37865, 31311, 'sk', 'name', 'InŔtitút informatiky a Ŕtatistiky'),
(37866, 31312, 'no_lang_code', 'name', 'Hazenberg Archeologie (Netherlands)'),
(37867, 31313, 'en', 'name', 'Third Hospital of Nanchang'),
(37868, 31314, 'no_lang_code', 'name', 'D&S Consultants (United States)'),
(37869, 31315, 'no_lang_code', 'name', 'GTVT (Slovakia)'),
(37870, 31316, 'no_lang_code', 'name', 'ITS Electronics (Canada)'),
(37871, 31317, 'no_lang_code', 'name', 'Wave Computation Technologies (United States)'),
(37872, 31318, 'en', 'name', 'Korea Drug Development Fund'),
(37873, 31319, 'no_lang_code', 'name', 'Danubia NanoTech (Slovakia)'),
(37874, 31320, 'en', 'name', 'Pan African Tsetse and Trypanosomiasis Eradication Campaign'),
(37875, 31321, 'en', 'name', 'Bethune Second Hospital'),
(37876, 31322, 'en', 'name', 'Richmond County Savings Foundation'),
(37877, 31323, 'no_lang_code', 'name', 'Echo Ridge (United States)'),
(37878, 31324, 'en', 'name', 'Scottish Rite Masonic Museum and Library'),
(37879, 31325, 'no_lang_code', 'name', 'Ubisoft (Canada)'),
(37880, 31326, 'de', 'name', 'Hochschule Kehl'),
(37881, 31326, 'en', 'name', 'University of Applied Sciences Kehl'),
(37882, 31327, 'no_lang_code', 'name', 'Hontek (United States)'),
(37883, 31328, 'no_lang_code', 'name', 'Securboration (United States)'),
(37884, 31329, 'en', 'name', 'Concern Foundation'),
(37885, 31330, 'en', 'name', 'Champlain College'),
(37886, 31331, 'da', 'name', 'Dansk RĆøde Kors'),
(37887, 31332, 'en', 'name', 'China Space Foundation'),
(37888, 31333, 'no_lang_code', 'name', 'Filtration Solutions (United States)'),
(37889, 31334, 'en', 'name', 'Institute of Research for the Development'),
(37890, 31334, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(37891, 31335, 'no_lang_code', 'name', 'Numerica Corporation (United States)'),
(37892, 31336, 'en', 'name', 'Wosinsky Mór County Museum'),
(37893, 31337, 'en', 'name', 'Germantown Academy'),
(37894, 31338, 'no_lang_code', 'name', 'DSM (Austria)'),
(37895, 31339, 'no_lang_code', 'name', 'Union Gas (Canada)'),
(37896, 31340, 'en', 'name', 'School of the Museum of Fine Arts'),
(37897, 31341, 'no_lang_code', 'name', 'Besab (Sweden)'),
(37898, 31342, 'no_lang_code', 'name', 'Essilor (Canada)'),
(37899, 31343, 'en', 'name', 'Chongqing City Mental Health Center'),
(37900, 31344, 'en', 'name', 'Institute for New Economic Thinking'),
(37901, 31345, 'no_lang_code', 'name', 'Varta Micro Innovation (Austria)'),
(37902, 31346, 'en', 'name', 'College of the Albemarle'),
(37903, 31347, 'it', 'name', 'Istituto di Astrofisica Spaziale e Fisica Cosmica di Milano'),
(37904, 31348, 'no_lang_code', 'name', 'Sun Gro Horticulture (Canada)'),
(37905, 31349, 'no_lang_code', 'name', 'Colas (Canada)'),
(37906, 31350, 'en', 'name', 'Asian Development Research Institute'),
(37907, 31351, 'en', 'name', 'Maine Health Access Foundation'),
(37908, 31352, 'no_lang_code', 'name', 'Andec Manufacturing (Canada)'),
(37909, 31353, 'en', 'name', 'Provincial Health Services Authority'),
(37910, 31354, 'no_lang_code', 'name', 'ContextVision (Sweden)'),
(37911, 31355, 'no_lang_code', 'name', 'SwedNanoTech (Sweden)'),
(37912, 31356, 'no_lang_code', 'name', 'Helios Remote Sensing Systems (United States)'),
(37913, 31357, 'no_lang_code', 'name', 'Green Cross (South Korea)'),
(37914, 31358, 'en', 'name', 'Zhuhai People''s Hospital'),
(37915, 31358, 'zh', 'name', 'ē ęµ·åø‚äŗŗę°‘åŒ»é™¢'),
(37916, 31359, 'en', 'name', 'Zhongda Hospital Southeast University'),
(37917, 31360, 'no_lang_code', 'name', 'API Technologies (United States)'),
(37918, 31361, 'no_lang_code', 'name', 'Design Interactive (United States)'),
(37919, 31362, 'no_lang_code', 'name', 'Adsantec (United States)'),
(37920, 31363, 'en', 'name', 'Agriaquaculture Nutritional Genomic Center'),
(37921, 31364, 'no_lang_code', 'name', 'OverHorizon (Sweden)'),
(37922, 31365, 'en', 'name', 'University of Calgary in Qatar'),
(37923, 31366, 'en', 'name', 'Ministry of Gender Equality and Family'),
(37924, 31366, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ 여성가씱부'),
(37925, 31367, 'en', 'name', 'Michigan Department of Transportation'),
(37926, 31367, 'fr', 'name', 'DƩpartement des transports du michigan'),
(37927, 31368, 'no_lang_code', 'name', 'BGC Engineering (Canada)'),
(37928, 31369, 'no_lang_code', 'name', 'Optimization Technology (United States)'),
(37929, 31370, 'en', 'name', 'Ministry of Education'),
(37930, 31370, 'zh', 'name', 'ę–°åŠ å”ę•™č‚²éƒØ'),
(37931, 31371, 'sv', 'name', 'VINNOVA, Verket fƶr innovationssystem'),
(37932, 31372, 'en', 'name', 'North Carolina Sea Grant'),
(37933, 31373, 'en', 'name', 'Jiangyin People''s Hospital'),
(37934, 31374, 'en', 'name', 'Foundation for Advancement of International Science'),
(37935, 31374, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(37936, 31375, 'en', 'name', 'Musicians Emergency Fund'),
(37937, 31376, 'en', 'name', 'Ministry of Human Resources and Social Security'),
(37938, 31376, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœéƒØ'),
(37939, 31377, 'no_lang_code', 'name', 'Staal Technisch Centrum (Netherlands)'),
(37940, 31378, 'en', 'name', 'Programs for Assessment of Technology in Health Research Institute'),
(37941, 31379, 'no_lang_code', 'name', 'Ericsson (United Kingdom)'),
(37942, 31380, 'en', 'name', 'Carlsberg Foundation'),
(37943, 31381, 'no_lang_code', 'name', 'Pellion Technologies (United States)'),
(37944, 31382, 'no_lang_code', 'name', 'Realtime Embedded (Sweden)'),
(37945, 31383, 'en', 'name', 'Connecticut Sea Grant'),
(37946, 31384, 'en', 'name', 'Weihai City Mental Health Center'),
(37947, 31385, 'en', 'name', 'Kavli Institute for Theoretical Sciences'),
(37948, 31385, 'zh', 'name', '中国科学院理论物理研究所'),
(37949, 31386, 'en', 'name', 'Asparagus Farmers of Ontario'),
(37950, 31387, 'no_lang_code', 'name', 'PTC (Canada)'),
(37951, 31388, 'no_lang_code', 'name', 'SCS Engineering (United States)'),
(37952, 31389, 'no_lang_code', 'name', 'Applied Precision (Slovakia)'),
(37953, 31390, 'no_lang_code', 'name', 'Klimator (Sweden)'),
(37954, 31391, 'en', 'name', 'First People''s Hospital of Kunshan'),
(37955, 31391, 'zh', 'name', 'ę˜†å±±åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(37956, 31392, 'no_lang_code', 'name', 'Scientific Forming Technologies Corporation (United States)'),
(37957, 31393, 'sv', 'name', 'Svensk FƄgel Service'),
(37958, 31394, 'no_lang_code', 'name', '24M (United States)'),
(37959, 31395, 'no_lang_code', 'name', 'Lindsay Associates Architects (United States)'),
(37960, 31396, 'no_lang_code', 'name', 'Survice Engineering (United States)'),
(37961, 31397, 'en', 'name', 'Education New Zealand'),
(37962, 31398, 'no_lang_code', 'name', 'Ipso Facto (France)'),
(37963, 31399, 'en', 'name', 'Clayton College of Natural Health'),
(37964, 31400, 'de', 'name', 'Filmarchiv Austria'),
(37965, 31401, 'en', 'name', 'Smith Richardson Foundation'),
(37966, 31402, 'no_lang_code', 'name', 'ReliaCoat Technologies (United States)'),
(37967, 31403, 'no_lang_code', 'name', 'ObjectVideo (United States)'),
(37968, 31404, 'en', 'name', 'Harvard College Observatory'),
(37969, 31405, 'en', 'name', 'Hope for Depression Research Foundation'),
(37970, 31406, 'en', 'name', 'Fourth Hospital of Hebei Medical University'),
(37971, 31406, 'zh', 'name', 'ę²³åŒ—åŒ»ē§‘å¤§å­¦ē¬¬å››åŒ»é™¢'),
(37972, 31407, 'no_lang_code', 'name', 'Expert Microsystems (United States)'),
(37973, 31408, 'en', 'name', 'College of Policing'),
(37974, 31409, 'no_lang_code', 'name', 'iAnalysis (Japan)'),
(37975, 31410, 'no_lang_code', 'name', 'DragoonITCN (United States)'),
(37976, 31411, 'en', 'name', 'Montana Economic Revitalization and Development Institute'),
(37977, 31412, 'en', 'name', 'Newfoundland Aquaculture Industry Association'),
(37978, 31413, 'en', 'name', 'Pan African Urological Surgeons Association'),
(37979, 31414, 'no_lang_code', 'name', 'UniCredit (United States)'),
(37980, 31415, 'no_lang_code', 'name', 'Immunicum (Sweden)'),
(37981, 31416, 'no_lang_code', 'name', 'Top-Vu Technology (United States)'),
(37982, 31417, 'en', 'name', 'Manchester Art Gallery'),
(37983, 31418, 'en', 'name', 'Hult International Business School'),
(37984, 31419, 'en', 'name', 'Temeke Municipal Council'),
(37985, 31420, 'no_lang_code', 'name', 'Symetrix (United States)'),
(37986, 31421, 'en', 'name', 'Swedish National Bank'),
(37987, 31422, 'no_lang_code', 'name', 'Peregrine Falcon (United States)'),
(37988, 31423, 'en', 'name', 'Liaoning Provincial People''s Hospital'),
(37989, 31423, 'zh', 'name', 'č¾½å®ēœäŗŗę°‘åŒ»é™¢'),
(37990, 31424, 'de', 'name', 'Nederlandse Zuivel Organisatie'),
(37991, 31424, 'en', 'name', 'Dutch Dairy Association'),
(37992, 31425, 'no_lang_code', 'name', 'Corporate Executive Board (United States)'),
(37993, 31426, 'no_lang_code', 'name', 'Apogee Technology (United States)'),
(37994, 31427, 'en', 'name', 'Corcoran College of Art and Design'),
(37995, 31428, 'en', 'name', 'Minnesota Sea Grant'),
(37996, 31429, 'no_lang_code', 'name', 'Dalian Municipal Central Hospital'),
(37997, 31429, 'zh', 'name', 'å¤§čæžåø‚äø­åæƒåŒ»é™¢'),
(37998, 31430, 'fr', 'name', 'Institut de Biologie Physico-Chimique'),
(37999, 31431, 'en', 'name', 'Somerset County Council'),
(38000, 31432, 'no_lang_code', 'name', 'Discovery Machine (United States)'),
(38001, 31433, 'en', 'name', 'EDUCON'),
(38002, 31434, 'no_lang_code', 'name', 'Sony Digital Audio Disc Corporation (Austria)'),
(38003, 31435, 'en', 'name', 'Government of Slovakia'),
(38004, 31436, 'en', 'name', 'Finnish Academy of Science and Letters'),
(38005, 31437, 'no_lang_code', 'name', 'Bjarga (Sweden)'),
(38006, 31438, 'no_lang_code', 'name', 'HPS Simulations (United States)'),
(38007, 31439, 'no_lang_code', 'name', 'Silatech'),
(38008, 31440, 'en', 'name', 'Prostate Cancer Foundation'),
(38009, 31441, 'no_lang_code', 'name', 'LinQuest (United States)'),
(38010, 31442, 'no_lang_code', 'name', 'Simpson Biotech Company (Taiwan)'),
(38011, 31443, 'no_lang_code', 'name', 'Accurate Automation (United States)'),
(38012, 31444, 'no_lang_code', 'name', 'IncSys (United States)'),
(38013, 31445, 'en', 'name', 'Chettinad Health City'),
(38014, 31446, 'no_lang_code', 'name', 'Thermavant (United States)'),
(38015, 31447, 'no_lang_code', 'name', 'Peerless Technologies (United States)'),
(38016, 31448, 'no_lang_code', 'name', 'HiFunda (United States)'),
(38017, 31449, 'la', 'name', 'Fons Vitae Lyceum'),
(38018, 31450, 'no_lang_code', 'name', 'DataSoft (United States)'),
(38019, 31451, 'en', 'name', 'Calcutta State Transport Corporation'),
(38020, 31452, 'nl', 'name', 'AA Brediusstichting'),
(38021, 31453, 'no_lang_code', 'name', 'Senzime (Sweden)'),
(38022, 31454, 'en', 'name', 'San Joaquin College of Law'),
(38023, 31455, 'no_lang_code', 'name', 'Plasmonics (United States)'),
(38024, 31456, 'en', 'name', 'Fourth People''s Hospital of Liaocheng'),
(38025, 31457, 'en', 'name', 'New York Film Academy'),
(38026, 31457, 'es', 'name', 'Escuela de Cine de Nueva York'),
(38027, 31458, 'no_lang_code', 'name', 'RPM International (Canada)'),
(38028, 31459, 'no_lang_code', 'name', 'Cargill (United States)'),
(38029, 31460, 'de', 'name', 'Krebsliga Schweiz'),
(38030, 31460, 'en', 'name', 'Swiss Cancer League'),
(38031, 31460, 'fr', 'name', 'Ligue Suisse Contre le Cancer'),
(38032, 31461, 'no_lang_code', 'name', 'Cimarron Software (United States)'),
(38033, 31462, 'et', 'name', 'VƤhiuuringute Tehnoloogia Arenduskeskus'),
(38034, 31463, 'no_lang_code', 'name', 'Beck Engineering (United States)'),
(38035, 31464, 'en', 'name', 'Stanley Medical Research Institute'),
(38036, 31465, 'en', 'name', 'Sontag Foundation'),
(38037, 31466, 'no_lang_code', 'name', 'Anamet (United States)'),
(38038, 31467, 'no_lang_code', 'name', 'Search-Lab (Hungary)'),
(38039, 31468, 'no_lang_code', 'name', 'POC Tech Group (United States)'),
(38040, 31469, 'no_lang_code', 'name', 'Redox Power Systems (United States)'),
(38041, 31470, 'en', 'name', 'British Association for Psychopharmacology'),
(38042, 31471, 'en', 'name', 'Larry Ellison Foundation'),
(38043, 31472, 'en', 'name', 'State Committee of Science'),
(38044, 31472, 'hy', 'name', 'Ō³Õ«ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ ÕÆÕøÕ“Õ«ÕæÕ„'),
(38045, 31473, 'no_lang_code', 'name', 'Accipiter Systems (United States)'),
(38046, 31474, 'no_lang_code', 'name', 'Vyvoj Martin (Slovakia)'),
(38047, 31475, 'en', 'name', 'SKA Observatory'),
(38048, 31476, 'no_lang_code', 'name', 'Verlag Holzhausen (Austria)'),
(38049, 31477, 'no_lang_code', 'name', 'Tempest Technologies (United States)'),
(38050, 31478, 'en', 'name', 'East London NHS Foundation Trust'),
(38051, 31479, 'no_lang_code', 'name', 'MKP Structural Design Associates (United States)'),
(38052, 31480, 'no_lang_code', 'name', 'Team Aquatic (Canada)'),
(38053, 31481, 'no_lang_code', 'name', 'Ekjut'),
(38054, 31482, 'de', 'name', 'Wasser Cluster Lunz'),
(38055, 31483, 'hu', 'name', 'Kecskeméti Katona József Múzeum'),
(38056, 31484, 'en', 'name', 'Lowe Syndrome Trust'),
(38057, 31485, 'en', 'name', 'Department of Chemicals and Petrochemicals'),
(38058, 31486, 'no_lang_code', 'name', 'VĆŗez (Slovakia)'),
(38059, 31487, 'no_lang_code', 'name', 'Innovative Technology Applications (United States)'),
(38060, 31488, 'en', 'name', 'Regional Council in Kalmar County'),
(38061, 31489, 'no_lang_code', 'name', 'Komet Group (Austria)'),
(38062, 31490, 'no_lang_code', 'name', 'Hardy Pictures (United Kingdom)'),
(38063, 31491, 'en', 'name', 'Smith Chapel Bible University'),
(38064, 31492, 'no_lang_code', 'name', 'Aventure (Sweden)'),
(38065, 31493, 'no_lang_code', 'name', 'Serendipity Innovations (Sweden)'),
(38066, 31494, 'en', 'name', 'Special Astrophysical Observatory'),
(38067, 31494, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š”ŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š°Ń Š°ŃŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ Российской акаГемии наук'),
(38068, 31495, 'no_lang_code', 'name', 'Tafisa (Canada)'),
(38069, 31496, 'en', 'name', 'Top Institute Pharma'),
(38070, 31497, 'en', 'name', 'Central Armed Police Forces'),
(38071, 31498, 'en', 'name', 'Waldorf College'),
(38072, 31499, 'no_lang_code', 'name', 'Golder Associates (United States)'),
(38073, 31500, 'en', 'name', 'Bernstein Center for Computational Neuroscience Heidelberg-Mannheim'),
(38074, 31501, 'sk', 'name', 'Roľnícke družstvo Moravany'),
(38075, 31502, 'en', 'name', 'Brewton-Parker College'),
(38076, 31503, 'no_lang_code', 'name', 'Defense Holdings (United States)'),
(38077, 31504, 'no_lang_code', 'name', 'EnWave Corporation (Canada)'),
(38078, 31505, 'en', 'name', 'Public Health Laboratory Ivo de Carneri'),
(38079, 31506, 'en', 'name', 'Ɩrnskƶldsvik Municipality'),
(38080, 31507, 'en', 'name', 'Zero to Three'),
(38081, 31508, 'en', 'name', 'William Penn Foundation'),
(38082, 31509, 'en', 'name', 'Red Cliff Band of Lake Superior Chippewa'),
(38083, 31510, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Canada)'),
(38084, 31511, 'en', 'name', 'Netherlands Bioinformatics Centre'),
(38085, 31512, 'en', 'name', 'London Mathematical Society'),
(38086, 31513, 'en', 'name', 'Netherlands Architecture Institute'),
(38087, 31514, 'en', 'name', 'Life Pacific College'),
(38088, 31515, 'en', 'name', 'Nova Scotia Department of Agriculture'),
(38089, 31516, 'no_lang_code', 'name', 'Nobel Museum'),
(38090, 31517, 'en', 'name', 'Istanbul Metropolitan Municipality'),
(38091, 31518, 'de', 'name', 'Ɩsterreichische Studiengesellschaft für Kybernetik'),
(38092, 31518, 'en', 'name', 'Austrian Society for Cybernetic Studies'),
(38093, 31519, 'en', 'name', 'Chongqing University of Arts and Sciences'),
(38094, 31519, 'zh', 'name', 'é‡åŗ†ę–‡ē†å­¦é™¢'),
(38095, 31520, 'no_lang_code', 'name', 'Intelligent Systems Research (United States)'),
(38096, 31521, 'no_lang_code', 'name', 'Flint Rehabilitation Devices (United States)'),
(38097, 31522, 'en', 'name', 'Regional Municipality of Durham'),
(38098, 31523, 'no_lang_code', 'name', 'AnyBody Technology (Denmark)'),
(38099, 31524, 'no_lang_code', 'name', 'Nalcor Energy (Canada)'),
(38100, 31525, 'no_lang_code', 'name', 'Robust Chip (United States)'),
(38101, 31526, 'no_lang_code', 'name', 'Energy Storage Systems (United States)'),
(38102, 31527, 'en', 'name', 'Friends School of Baltimore'),
(38103, 31528, 'en', 'name', 'VƤsterƄs Municipality'),
(38104, 31529, 'no_lang_code', 'name', 'Ɖtudes-Recherches-MatĆ©riaux (France)'),
(38105, 31530, 'no_lang_code', 'name', 'Laricina Energy (Canada)'),
(38106, 31531, 'no_lang_code', 'name', 'Mentis Sciences (United States)'),
(38107, 31532, 'no_lang_code', 'name', 'Edge Technologies (United States)'),
(38108, 31533, 'no_lang_code', 'name', 'Murata (United States)'),
(38109, 31534, 'no_lang_code', 'name', 'Black Forest Engineering (United States)'),
(38110, 31535, 'no_lang_code', 'name', 'Norfolk Southern (United States)'),
(38111, 31536, 'no_lang_code', 'name', 'Plasmatrix (Sweden)'),
(38112, 31537, 'no_lang_code', 'name', 'EM Photonics (United States)'),
(38113, 31538, 'en', 'name', 'National Disability Institute'),
(38114, 31539, 'no_lang_code', 'name', 'Infinity Pharmaceuticals (United States)'),
(38115, 31540, 'en', 'name', 'Agricultural Research Development Agency'),
(38116, 31540, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąøžąø±ąø’ąø™ąø²ąøąø²ąø£ąø§ąø“ąøˆąø±ąø¢ąøąø²ąø£ą¹€ąøąø©ąø•ąø£'),
(38117, 31541, 'no_lang_code', 'name', 'Far Tech (United States)'),
(38118, 31542, 'en', 'name', 'Center for Disease Dynamics, Economics & Policy'),
(38119, 31543, 'en', 'name', 'International Genomics Consortium'),
(38120, 31544, 'en', 'name', 'Pastoral and Environmental Network in the Horn of Africa'),
(38121, 31545, 'no_lang_code', 'name', 'Geosigma (Sweden)'),
(38122, 31546, 'en', 'name', 'Clarity Films'),
(38123, 31547, 'en', 'name', 'Tinker Foundation'),
(38124, 31548, 'en', 'name', 'Computer Measurement Laboratory'),
(38125, 31549, 'no_lang_code', 'name', 'Qatari Diar (Qatar)'),
(38126, 31550, 'en', 'name', 'University of North Korean Studies'),
(38127, 31550, 'ko', 'name', 'ė¶ķ•œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(38128, 31551, 'no_lang_code', 'name', 'Xebec (Canada)'),
(38129, 31552, 'no_lang_code', 'name', 'Torch Hill Investment Partners (United States)'),
(38130, 31553, 'no_lang_code', 'name', 'Biomer Technology (United Kingdom)'),
(38131, 31554, 'en', 'name', 'Brooks Institute'),
(38132, 31555, 'no_lang_code', 'name', 'Ciment QuƩbec (Canada)'),
(38133, 31556, 'en', 'name', 'Canadian Optometric Education Trust Fund'),
(38134, 31556, 'fr', 'name', 'Fonds de Fiducie des OptomƩtristes Canadiens pour l''Education'),
(38135, 31557, 'no_lang_code', 'name', 'CNH Industrial (Canada)'),
(38136, 31558, 'no_lang_code', 'name', 'Cube Technology (United States)'),
(38137, 31559, 'no_lang_code', 'name', 'Exmar (Belgium)'),
(38138, 31560, 'de', 'name', 'Fernfachhochschule Schweiz'),
(38139, 31560, 'en', 'name', 'Swiss Distance University of Applied Sciences'),
(38140, 31561, 'no_lang_code', 'name', 'Tinta (Hungary)'),
(38141, 31562, 'no_lang_code', 'name', 'Dais Analytic Corporation (United States)'),
(38142, 31563, 'no_lang_code', 'name', 'Cipherstone Technologies (Sweden)'),
(38143, 31564, 'no_lang_code', 'name', 'Charles River Laboratories (Netherlands)'),
(38144, 31565, 'no_lang_code', 'name', 'Next Century Corporation (United States)'),
(38145, 31566, 'no_lang_code', 'name', 'Integrated Solutions for Systems (United States)'),
(38146, 31567, 'en', 'name', 'Parent Information Center'),
(38147, 31568, 'no_lang_code', 'name', 'Alcoa (Canada)'),
(38148, 31569, 'no_lang_code', 'name', 'QuickFlex (United States)'),
(38149, 31570, 'no_lang_code', 'name', 'Taiga (Sweden)'),
(38150, 31571, 'en', 'name', 'Connecticut Space Grant Consortium'),
(38151, 31572, 'no_lang_code', 'name', 'Cambridge Life Sciences (United Kingdom)'),
(38152, 31573, 'de', 'name', 'Stiftung Rheinland-Pfalz für Innovation'),
(38153, 31574, 'it', 'name', 'Associazione Italiana per l''Agricoltura Biologica'),
(38154, 31575, 'no_lang_code', 'name', 'UBC (United States)'),
(38155, 31576, 'no_lang_code', 'name', 'ModuleWorks (Romania)'),
(38156, 31577, 'no_lang_code', 'name', 'Datec Coating (Canada)'),
(38157, 31578, 'de', 'name', 'Institut für Ɩsterreichische Geschichtsforschung'),
(38158, 31578, 'en', 'name', 'Austrian Institute of Historical Research'),
(38159, 31579, 'en', 'name', 'European Global Ocean Observing System'),
(38160, 31580, 'en', 'name', 'Prime Minister''s Office'),
(38161, 31581, 'no_lang_code', 'name', 'Xbrane Biopharma (Sweden)'),
(38162, 31582, 'no_lang_code', 'name', 'Koo & Associates International (United States)'),
(38163, 31583, 'en', 'name', 'Value Addition Institute'),
(38164, 31584, 'fr', 'name', 'Labex Corail'),
(38165, 31585, 'no_lang_code', 'name', 'Natrix Separations (Canada)'),
(38166, 31586, 'de', 'name', 'StifterHaus'),
(38167, 31587, 'no_lang_code', 'name', 'Vista Clara (United States)'),
(38168, 31588, 'en', 'name', 'National Department of Health'),
(38169, 31589, 'no_lang_code', 'name', 'FoundCare'),
(38170, 31590, 'en', 'name', 'Shark Spotters'),
(38171, 31591, 'no_lang_code', 'name', 'MZA Associates (United States)'),
(38172, 31592, 'en', 'name', 'Netherlands Space Office'),
(38173, 31593, 'no_lang_code', 'name', 'Polaris Systems Optimization (United States)'),
(38174, 31594, 'en', 'name', 'University of North Carolina School of the Arts'),
(38175, 31594, 'fr', 'name', 'FacultĆ© d''arts de l''universitĆ© d''Ɖtat de caroline du nord'),
(38176, 31595, 'tr', 'name', 'Erciyes Üniversitesi Tıp Fakültesi Hastaneleri'),
(38177, 31596, 'no_lang_code', 'name', 'Sentient Science (United States)'),
(38178, 31597, 'en', 'name', 'Brown County Historical Society'),
(38179, 31598, 'en', 'name', 'British University Vietnam'),
(38180, 31599, 'no_lang_code', 'name', 'Maverick (United States)'),
(38181, 31600, 'no_lang_code', 'name', 'R&D Dynamics (United States)'),
(38182, 31601, 'no_lang_code', 'name', 'DSM (Sweden)'),
(38183, 31602, 'no_lang_code', 'name', 'AmberWave (United States)'),
(38184, 31603, 'no_lang_code', 'name', 'Glucox Biotech (Sweden)'),
(38185, 31604, 'en', 'name', 'Doctors Without Borders'),
(38186, 31604, 'fr', 'name', 'Médecins Sans Frontières'),
(38187, 31605, 'no_lang_code', 'name', 'Canadian General-Tower (Canada)'),
(38188, 31606, 'en', 'name', 'Trinity College of Florida'),
(38189, 31607, 'no_lang_code', 'name', 'Eticas Research & Consulting (Spain)'),
(38190, 31608, 'no_lang_code', 'name', 'Jiangsu Nhwa Pharmaceutical (China)'),
(38191, 31609, 'no_lang_code', 'name', 'Energy Research Consultants (United States)'),
(38192, 31610, 'no_lang_code', 'name', 'TM4 (Canada)'),
(38193, 31611, 'en', 'name', 'Kenya Wildlife Service'),
(38194, 31611, 'sw', 'name', 'Shirika la Huduma kwa Wanyama Pori ya Kenya'),
(38195, 31612, 'no_lang_code', 'name', 'Canada Malting (Canada)'),
(38196, 31613, 'en', 'name', 'Action Medical Research'),
(38197, 31614, 'en', 'name', 'Nanjing Brain Hospital'),
(38198, 31615, 'en', 'name', 'China Medical University Beigang Hospital'),
(38199, 31616, 'ar', 'name', 'صناعات تيفا Ų§Ł„ŲµŁŠŲÆŁ„ŁŠŲ©'),
(38200, 31616, 'he', 'name', 'טבע תעשיות ×¤×Ø×ž×¦×‘×˜×™×•×Ŗ בע"מ'),
(38201, 31616, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Israel)'),
(38202, 31617, 'no_lang_code', 'name', 'Simplot (United States)'),
(38203, 31618, 'en', 'name', 'Joint Space Science Institute'),
(38204, 31619, 'no_lang_code', 'name', 'Littoral Research Group (United States)'),
(38205, 31620, 'en', 'name', 'Shenyang Environmental Protection Bureau'),
(38206, 31621, 'en', 'name', 'Affiliated Hospital of Taishan Medical University'),
(38207, 31622, 'no_lang_code', 'name', 'Arius3D (Canada)'),
(38208, 31623, 'es', 'name', 'Centro de Estudios de Física del Cosmos de Aragón'),
(38209, 31624, 'en', 'name', 'European Academy of Technology and Innovation Assessment'),
(38210, 31625, 'no_lang_code', 'name', 'Professional Services Group (United States)'),
(38211, 31626, 'en', 'name', 'Dana Foundation'),
(38212, 31627, 'en', 'name', 'SKA Telescope, South Africa'),
(38213, 31628, 'en', 'name', 'Office of Dietary Supplements'),
(38214, 31629, 'no_lang_code', 'name', 'Global Aerospace (United States)'),
(38215, 31630, 'de', 'name', 'Deutsche Krebshilfe'),
(38216, 31630, 'en', 'name', 'German Cancer Aid'),
(38217, 31631, 'en', 'name', 'Foreign Investment Review Board'),
(38218, 31632, 'no_lang_code', 'name', 'Morton Photonics (United States)'),
(38219, 31633, 'no_lang_code', 'name', 'PC Krause & Associates (United States)'),
(38220, 31634, 'no_lang_code', 'name', 'Bioglobe (Germany)'),
(38221, 31635, 'no_lang_code', 'name', 'Innovatum (Sweden)'),
(38222, 31636, 'no_lang_code', 'name', 'Sage Technologies (United States)'),
(38223, 31637, 'no_lang_code', 'name', 'Thermacore (United States)'),
(38224, 31638, 'it', 'name', 'Fondazione Edo ed Elvo Tempia'),
(38225, 31639, 'en', 'name', 'Coating Consultancy'),
(38226, 31640, 'no_lang_code', 'name', 'BC Hydro (Canada)'),
(38227, 31641, 'en', 'name', 'Sunder Lal Jain Hospital'),
(38228, 31642, 'en', 'name', 'Association for Youth, Science and Technology'),
(38229, 31643, 'no_lang_code', 'name', 'Beltran (United States)'),
(38230, 31644, 'no_lang_code', 'name', 'ACTA (United States)'),
(38231, 31645, 'no_lang_code', 'name', 'BlockMaster (Sweden)'),
(38232, 31646, 'no_lang_code', 'name', 'Verisk Analytics (United States)'),
(38233, 31647, 'no_lang_code', 'name', 'EMAG Technologies (United States)'),
(38234, 31648, 'no_lang_code', 'name', 'Aoptix Technologies (United States)'),
(38235, 31649, 'nl', 'name', 'Museum Catharijneconvent'),
(38236, 31650, 'en', 'name', 'Stefan University'),
(38237, 31651, 'en', 'name', 'Northwest Health Foundation'),
(38238, 31652, 'no_lang_code', 'name', 'Vanderwell Contractors (Canada)'),
(38239, 31653, 'no_lang_code', 'name', 'Ormet Circuits (United States)'),
(38240, 31654, 'en', 'name', 'Thomson Reuters Foundation'),
(38241, 31655, 'es', 'name', 'Museo de San Isidro'),
(38242, 31656, 'en', 'name', 'Autism Research Institute'),
(38243, 31657, 'en', 'name', 'Ministry of Education and Science of Perm Region'),
(38244, 31658, 'en', 'name', 'National Museum of Ethnology'),
(38245, 31658, 'nl', 'name', 'Rijksmuseum Volkenkunde'),
(38246, 31659, 'en', 'name', 'CIS Scientific'),
(38247, 31660, 'de', 'name', 'Bundesmobilienverwaltung'),
(38248, 31661, 'en', 'name', 'National Council on Disability'),
(38249, 31662, 'no_lang_code', 'name', 'Biolin Scientific (United Kingdom)'),
(38250, 31663, 'no_lang_code', 'name', 'Dynetics (United States)'),
(38251, 31664, 'no_lang_code', 'name', 'AventuSoft (United States)'),
(38252, 31665, 'en', 'name', 'Michigan Economic Development Corporation'),
(38253, 31666, 'en', 'name', 'NIHR Royal Brompton Cardiovascular Biomedical Research Unit'),
(38254, 31667, 'no_lang_code', 'name', 'Ecrossculture (United States)'),
(38255, 31668, 'en', 'name', 'Black Hills Center for American Indian Health'),
(38256, 31669, 'no_lang_code', 'name', 'Blue-O Technology (Canada)'),
(38257, 31670, 'no_lang_code', 'name', 'Cistel Technology (Canada)'),
(38258, 31671, 'en', 'name', 'United States Coast Guard Academy'),
(38259, 31671, 'es', 'name', 'Academia de la Guardia Costera de Estados Unidos'),
(38260, 31672, 'no_lang_code', 'name', 'Viron Therapeutics (Canada)'),
(38261, 31673, 'no_lang_code', 'name', 'Bihrle Applied Research (United States)'),
(38262, 31674, 'en', 'name', 'Trinity Baptist College'),
(38263, 31675, 'no_lang_code', 'name', 'Noisecom (United States)'),
(38264, 31676, 'no_lang_code', 'name', 'Lumir Research Institute (United States)'),
(38265, 31677, 'no_lang_code', 'name', 'Air Products (United States)'),
(38266, 31678, 'en', 'name', 'Grape Growers of Ontario'),
(38267, 31679, 'no_lang_code', 'name', 'Intercontinental Exchange (United States)'),
(38268, 31680, 'no_lang_code', 'name', 'Engineering & Scientific Innovations (United States)'),
(38269, 31681, 'en', 'name', 'NIHR Southampton Respiratory Biomedical Research Unit'),
(38270, 31682, 'en', 'name', 'Centre for Biomedical Network Research on Rare Diseases'),
(38271, 31682, 'es', 'name', 'Centro de Investigación Biomédica en Red de Enfermedades Raras'),
(38272, 31683, 'en', 'name', 'Royal Academy of Visual Arts'),
(38273, 31683, 'nl', 'name', 'Rijksakademie van beeldende kunsten'),
(38274, 31684, 'no_lang_code', 'name', 'Sensing Strategies Incorporation (United States)'),
(38275, 31685, 'no_lang_code', 'name', 'Honeybee Robotics (United States)'),
(38276, 31686, 'no_lang_code', 'name', 'Link Microtek (United Kingdom)'),
(38277, 31687, 'en', 'name', 'Consumer Commission on the Accreditation of Health Services'),
(38278, 31688, 'no_lang_code', 'name', 'Aventia (Spain)'),
(38279, 31689, 'no_lang_code', 'name', 'Diversitech (United States)'),
(38280, 31690, 'no_lang_code', 'name', 'Absolicon Solar Collector (Sweden)'),
(38281, 31691, 'en', 'name', 'Ontario Commercial Fisheries'' Association'),
(38282, 31692, 'en', 'name', 'Chester Zoo'),
(38283, 31693, 'no_lang_code', 'name', 'General Electric (Qatar)'),
(38284, 31694, 'no_lang_code', 'name', 'Dekonta (Slovakia)'),
(38285, 31695, 'no_lang_code', 'name', 'Actuant (Sweden)'),
(38286, 31696, 'no_lang_code', 'name', 'Systems Dynamics (United States)'),
(38287, 31697, 'en', 'name', 'American Association of Endodontists'),
(38288, 31698, 'en', 'name', 'China Aerospace Science and Technology Corporation'),
(38289, 31698, 'zh', 'name', 'äø­å›½čˆŖå¤©ē§‘ęŠ€é›†å›¢'),
(38290, 31699, 'it', 'name', 'ThyssenKrupp Italia'),
(38291, 31699, 'no_lang_code', 'name', 'ThyssenKrupp (Italy)'),
(38292, 31700, 'en', 'name', 'Animal Nutrition Association of Canada'),
(38293, 31701, 'en', 'name', 'American Foundation for Suicide Prevention'),
(38294, 31702, 'no_lang_code', 'name', 'Smart Eye (Sweden)'),
(38295, 31703, 'en', 'name', 'Bluefield College'),
(38296, 31704, 'no_lang_code', 'name', 'Advanced Coherent Technologies (United States)'),
(38297, 31705, 'en', 'name', 'MRC Protein Phosphorylation and Ubiquitylation Unit'),
(38298, 31706, 'no_lang_code', 'name', 'Tacton Systems (Sweden)'),
(38299, 31707, 'no_lang_code', 'name', 'Scientific Data Systems (United States)'),
(38300, 31708, 'bn', 'name', 'বাংলাদেশ ধান গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(38301, 31708, 'en', 'name', 'Bangladesh Rice Research Institute'),
(38302, 31709, 'no_lang_code', 'name', 'AxioMx (United States)'),
(38303, 31710, 'no_lang_code', 'name', 'Blue Pencil Group (United States)'),
(38304, 31711, 'no_lang_code', 'name', 'Carnegie Robotics (United States)'),
(38305, 31712, 'no_lang_code', 'name', 'Minnesota Wire (United States)'),
(38306, 31713, 'en', 'name', 'Nordic Joint Committee for Agricultural and Food Research'),
(38307, 31714, 'no_lang_code', 'name', 'Innovative Research (United States)'),
(38308, 31715, 'no_lang_code', 'name', 'Energetics (United States)'),
(38309, 31716, 'no_lang_code', 'name', 'Wolfram MathCore (Sweden)'),
(38310, 31717, 'no_lang_code', 'name', 'Variation Reduction Solutions (United States)'),
(38311, 31718, 'en', 'name', 'Xian Mental Health Center'),
(38312, 31719, 'no_lang_code', 'name', 'Connecticut Innovations (United States)'),
(38313, 31720, 'en', 'name', 'Particle Data Group'),
(38314, 31721, 'en', 'name', 'Gƶteborg Region Association of Local Authorities'),
(38315, 31722, 'no_lang_code', 'name', 'MESH (United States)'),
(38316, 31723, 'en', 'name', 'International Center for Human Sciences'),
(38317, 31724, 'no_lang_code', 'name', 'Angstrom Engineering (Canada)'),
(38318, 31725, 'no_lang_code', 'name', 'Nico Technologies (United States)'),
(38319, 31726, 'no_lang_code', 'name', 'Gannon Motor and Controls (United States)'),
(38320, 31727, 'no_lang_code', 'name', 'Outotec (Canada)'),
(38321, 31728, 'no_lang_code', 'name', 'HexaTech (United States)'),
(38322, 31729, 'en', 'name', 'Pensacola Christian College'),
(38323, 31730, 'de', 'name', 'Bundesamt für Energie'),
(38324, 31730, 'en', 'name', 'Swiss Federal Office of Energy'),
(38325, 31731, 'en', 'name', 'Keelung Chang Gung Memorial Hospital'),
(38326, 31732, 'en', 'name', 'C.T. de Wit Graduate School for Production Ecology and Resource Conservation'),
(38327, 31733, 'no_lang_code', 'name', 'FastCAP Systems (United States)'),
(38328, 31734, 'no_lang_code', 'name', 'Technical Data Analysis (United States)'),
(38329, 31735, 'no_lang_code', 'name', 'Conceptual Mindworks (United States)'),
(38330, 31736, 'no_lang_code', 'name', 'Digital Science (United States)'),
(38331, 31737, 'hu', 'name', 'Civil RÔdió'),
(38332, 31738, 'nl', 'name', 'Nederlands Instituut voor Wetenschappelijke Informatiediensten'),
(38333, 31739, 'nl', 'name', 'Nierstichting'),
(38334, 31740, 'en', 'name', 'Recruitment and Assesment Centre'),
(38335, 31741, 'en', 'name', 'Dhaka Community Hospital Trust'),
(38336, 31742, 'no_lang_code', 'name', 'CelluForce (Canada)'),
(38337, 31743, 'no_lang_code', 'name', 'Chevron (Canada)'),
(38338, 31744, 'no_lang_code', 'name', 'Findout Technologies (Sweden)'),
(38339, 31745, 'no_lang_code', 'name', 'Cornerstone Research Group (United States)'),
(38340, 31746, 'en', 'name', 'Cornish College of the Arts'),
(38341, 31747, 'no_lang_code', 'name', 'OEwaves (United States)'),
(38342, 31748, 'no_lang_code', 'name', 'RedZone Robotics (United States)'),
(38343, 31749, 'no_lang_code', 'name', 'Robotics Research (United States)'),
(38344, 31750, 'en', 'name', 'Sir Halley Stewart Trust'),
(38345, 31751, 'no_lang_code', 'name', 'Primus Power (United States)'),
(38346, 31752, 'no_lang_code', 'name', 'Novici Biotech (United States)'),
(38347, 31753, 'en', 'name', 'Stavros Niarchos Foundation'),
(38348, 31754, 'en', 'name', 'Belgian Development Agency'),
(38349, 31755, 'no_lang_code', 'name', 'Symplectic Engineering Corporation (United States)'),
(38350, 31756, 'no_lang_code', 'name', 'RadiaBeam Technologies (United States)'),
(38351, 31757, 'no_lang_code', 'name', 'InteraXon (Canada)'),
(38352, 31758, 'en', 'name', 'Canadian Hemophilia Society'),
(38353, 31758, 'fr', 'name', 'SociƩtƩ Canadienne de l''HƩmophilie'),
(38354, 31759, 'en', 'name', 'Department of Higher Education'),
(38355, 31760, 'no_lang_code', 'name', 'Polisilk (Spain)'),
(38356, 31761, 'no_lang_code', 'name', 'Aurrion (United States)'),
(38357, 31762, 'en', 'name', 'Great Britain Sasakawa Foundation'),
(38358, 31763, 'en', 'name', 'National Center on Birth Defects and Developmental Disabilities'),
(38359, 31764, 'no_lang_code', 'name', 'APR Technologies (Sweden)'),
(38360, 31765, 'en', 'name', 'American Printing House for the Blind'),
(38361, 31766, 'no_lang_code', 'name', 'Kaer Biotherapeutics (United States)'),
(38362, 31767, 'no_lang_code', 'name', 'Signal Processing (United States)'),
(38363, 31768, 'en', 'name', 'Medaille College'),
(38364, 31769, 'no_lang_code', 'name', 'Senionlab (Sweden)'),
(38365, 31770, 'en', 'name', 'Globe Institute of Technology'),
(38366, 31771, 'no_lang_code', 'name', 'SoarTech (United States)'),
(38367, 31772, 'en', 'name', 'Beijing Anding Hospital'),
(38368, 31772, 'zh', 'name', 'åŒ—äŗ¬å®‰å®šåŒ»é™¢'),
(38369, 31773, 'en', 'name', 'Ningbo Kangning Hospital'),
(38370, 31774, 'no_lang_code', 'name', 'Automated Dynamics (United States)'),
(38371, 31775, 'en', 'name', 'CATAAlliance'),
(38372, 31776, 'en', 'name', 'Santa Rosa Junior College'),
(38373, 31777, 'no_lang_code', 'name', 'HUI Research (Sweden)'),
(38374, 31778, 'no_lang_code', 'name', 'Evidence Based Research (United States)'),
(38375, 31779, 'no_lang_code', 'name', 'DK-SPEC (Canada)'),
(38376, 31780, 'no_lang_code', 'name', 'Emergent Space Technologies (United States)'),
(38377, 31781, 'no_lang_code', 'name', 'SemLab (Netherlands)'),
(38378, 31782, 'no_lang_code', 'name', 'Gavagai (Sweden)'),
(38379, 31783, 'no_lang_code', 'name', 'Charmtech Labs (United States)'),
(38380, 31784, 'no_lang_code', 'name', 'Scope Group (United States)'),
(38381, 31785, 'no_lang_code', 'name', 'Johnson Research & Development (United States)'),
(38382, 31786, 'no_lang_code', 'name', 'Structural Analytics (United States)'),
(38383, 31787, 'no_lang_code', 'name', 'Easel Biotechnologies (United States)'),
(38384, 31788, 'en', 'name', 'College of Agriculture at Križevci'),
(38385, 31789, 'en', 'name', 'Department of Health'),
(38386, 31790, 'en', 'name', 'Charter Oak State College'),
(38387, 31791, 'no_lang_code', 'name', 'Minesto (Sweden)'),
(38388, 31792, 'en', 'name', 'Small and Medium Business Administration'),
(38389, 31793, 'no_lang_code', 'name', 'Imuna Pharm (Slovakia)'),
(38390, 31794, 'en', 'name', 'Lung Foundation Australia'),
(38391, 31795, 'no_lang_code', 'name', 'Kraft Heinz (Canada)'),
(38392, 31796, 'no_lang_code', 'name', 'Iris Technology (United States)'),
(38393, 31797, 'en', 'name', 'Alaska Space Grant Program'),
(38394, 31798, 'no_lang_code', 'name', 'Kronos (Canada)'),
(38395, 31799, 'no_lang_code', 'name', 'Optea (Sweden)'),
(38396, 31800, 'no_lang_code', 'name', 'Kinetic BEI (United States)'),
(38397, 31801, 'no_lang_code', 'name', 'Marstrom Composite (Sweden)'),
(38398, 31802, 'en', 'name', 'Indiana Clinical and Translational Sciences Institute'),
(38399, 31803, 'no_lang_code', 'name', 'Decipher Biosciences (Canada)'),
(38400, 31804, 'en', 'name', 'Alaska State Museum'),
(38401, 31805, 'en', 'name', 'Monterey College of Law'),
(38402, 31806, 'en', 'name', 'United Community Center'),
(38403, 31807, 'no_lang_code', 'name', 'Swedish Electroforming Technology (Sweden)'),
(38404, 31808, 'no_lang_code', 'name', 'Informer (Greece)'),
(38405, 31809, 'no_lang_code', 'name', 'KBL Group International (United States)'),
(38406, 31810, 'no_lang_code', 'name', 'Axis Photonique (Canada)'),
(38407, 31811, 'en', 'name', 'Massachusetts Rehabilitation Commission'),
(38408, 31812, 'no_lang_code', 'name', 'Spytek Aerospace (United States)'),
(38409, 31813, 'no_lang_code', 'name', 'Telesta Therapeutics (Canada)'),
(38410, 31814, 'en', 'name', 'Grand River Conservation Authority'),
(38411, 31815, 'en', 'name', 'North East London NHS Foundation Trust'),
(38412, 31816, 'no_lang_code', 'name', 'Lyndon Fish Hatcheries'),
(38413, 31817, 'fr', 'name', 'Fondation Congolaise Pour La Recherche MƩdicale'),
(38414, 31818, 'no_lang_code', 'name', 'McLaren Honda (United Kingdom)'),
(38415, 31819, 'es', 'name', 'Centro Dermatológico Federico Lleras Acosta'),
(38416, 31820, 'no_lang_code', 'name', 'ZOA (Uganda)'),
(38417, 31821, 'no_lang_code', 'name', 'Stornoway Diamond (Canada)'),
(38418, 31822, 'en', 'name', 'Alberta Livestock and Meat Agency'),
(38419, 31823, 'en', 'name', 'Ministry of Sustainable Development, Environment and the Fight against Climate Change'),
(38420, 31824, 'en', 'name', 'Fifth Affiliated Hospital of Sun Yat-sen University'),
(38421, 31825, 'en', 'name', 'Department of Foreign Affairs and Trade'),
(38422, 31826, 'en', 'name', 'Ministry of Environment, Forests and Climate Change'),
(38423, 31827, 'no_lang_code', 'name', 'Eutecus (United States)'),
(38424, 31828, 'en', 'name', 'Assembly of Women for Development and the Struggle against Social Exclusion'),
(38425, 31828, 'it', 'name', 'Assemblea delle Donne per lo Sviluppo e la Lotta all''Esclusione Sociale'),
(38426, 31829, 'en', 'name', 'International Mental Health Research Organization'),
(38427, 31830, 'en', 'name', 'CANDU Owners Group'),
(38428, 31831, 'fr', 'name', 'SociƩtƩ GƩologique de France'),
(38429, 31832, 'no_lang_code', 'name', 'Contship Italia (Italy)'),
(38430, 31833, 'no_lang_code', 'name', 'MTS Technologies (United States)'),
(38431, 31834, 'en', 'name', 'Parkinson''s UK'),
(38432, 31835, 'ro', 'name', 'Institutul de Cercetare-Dezvoltare pentru Protecţia Plantelor'),
(38433, 31836, 'en', 'name', 'University of Pittsburgh at Titusville'),
(38434, 31837, 'no_lang_code', 'name', 'Phantom Design (United States)'),
(38435, 31838, 'es', 'name', 'Fundación Mapfre'),
(38436, 31839, 'no_lang_code', 'name', 'Solid State Scientific Corporation (United States)'),
(38437, 31840, 'en', 'name', 'Korea Military Academy'),
(38438, 31840, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ģœ”źµ°ģ‚¬ź“€ķ•™źµ'),
(38439, 31841, 'no_lang_code', 'name', 'HeidelbergCement (Canada)'),
(38440, 31842, 'en', 'name', 'European CanCer Organisation'),
(38441, 31843, 'no_lang_code', 'name', 'Prism Computational Sciences (United States)'),
(38442, 31844, 'no_lang_code', 'name', 'Innovative Energy Solution (United States)'),
(38443, 31845, 'no_lang_code', 'name', 'HEM Technologies (United States)'),
(38444, 31846, 'no_lang_code', 'name', 'IntelliWork (Sweden)'),
(38445, 31847, 'es', 'name', 'Ministerio de Salud'),
(38446, 31848, 'no_lang_code', 'name', 'SenseAir (Sweden)'),
(38447, 31849, 'no_lang_code', 'name', 'Avineon (United States)'),
(38448, 31850, 'no_lang_code', 'name', 'BainUltra (Canada)'),
(38449, 31851, 'no_lang_code', 'name', 'NanoDesign (Slovakia)'),
(38450, 31852, 'no_lang_code', 'name', 'Glonatech (Greece)'),
(38451, 31853, 'hu', 'name', 'Enciklopédia Kiadó'),
(38452, 31854, 'no_lang_code', 'name', 'GeneSiC Semiconductor (United States)'),
(38453, 31855, 'no_lang_code', 'name', 'Free2move (Sweden)'),
(38454, 31856, 'en', 'name', 'Shandong Mental Health Center'),
(38455, 31857, 'no_lang_code', 'name', 'Network Sensing Technologies (United States)'),
(38456, 31858, 'en', 'name', 'Cabarrus College of Health Sciences'),
(38457, 31859, 'no_lang_code', 'name', 'Abaris Training (United States)'),
(38458, 31860, 'en', 'name', 'Economic Review Foundation'),
(38459, 31861, 'no_lang_code', 'name', 'Black Laboratories (United States)'),
(38460, 31862, 'en', 'name', 'International Centre for Diffraction Data'),
(38461, 31863, 'no_lang_code', 'name', 'JEM Engineering (United States)'),
(38462, 31864, 'no_lang_code', 'name', 'TechSource (United States)'),
(38463, 31865, 'en', 'name', 'Department of Health Social Services and Public Safety'),
(38464, 31866, 'no_lang_code', 'name', 'Spectral Energies (United States)'),
(38465, 31867, 'en', 'name', 'Healis Sekhsaria Institute For Public Health'),
(38466, 31868, 'no_lang_code', 'name', 'Systems, Applications & Products in Data Processing (Canada)'),
(38467, 31869, 'no_lang_code', 'name', 'TransAlta (Canada)'),
(38468, 31870, 'en', 'name', 'Institute of Aeronautics and Space'),
(38469, 31870, 'pt', 'name', 'Instituto de AeronƔutica e EspaƧo'),
(38470, 31871, 'no_lang_code', 'name', 'Sectra (Sweden)'),
(38471, 31872, 'no_lang_code', 'name', 'Phygen (United States)'),
(38472, 31873, 'en', 'name', 'QMedic'),
(38473, 31874, 'no_lang_code', 'name', 'Grieg Seafood (Canada)'),
(38474, 31875, 'no_lang_code', 'name', 'Villa Pro (Slovakia)'),
(38475, 31876, 'en', 'name', 'North West Cancer Research'),
(38476, 31877, 'no_lang_code', 'name', 'Advanced Powder Solutions (United States)'),
(38477, 31878, 'no_lang_code', 'name', 'Logikos (United States)'),
(38478, 31879, 'en', 'name', 'Ningbo Municipal People''s Government'),
(38479, 31880, 'no_lang_code', 'name', 'Semantic Designs (United States)'),
(38480, 31881, 'no_lang_code', 'name', 'Viscogel (Sweden)'),
(38481, 31882, 'no_lang_code', 'name', 'Crown Investments Corporation (Canada)'),
(38482, 31883, 'en', 'name', 'Transport for Greater Manchester'),
(38483, 31884, 'no_lang_code', 'name', 'Bioprocess Control (Sweden)'),
(38484, 31885, 'no_lang_code', 'name', 'Gu Holding (Sweden)'),
(38485, 31886, 'no_lang_code', 'name', 'Pioneering Decisive Solutions (United States)'),
(38486, 31887, 'en', 'name', 'Japan BCG Laboratory'),
(38487, 31887, 'ja', 'name', 'ę—„ęœ¬ćƒ“ćƒ¼ć‚·ćƒ¼ć‚øćƒ¼č£½é€ ę Ŗå¼ä¼šē¤¾'),
(38488, 31888, 'en', 'name', 'Higher Education Academy'),
(38489, 31889, 'hu', 'name', 'BaƔr-Madas ReformƔtus GimnƔzium'),
(38490, 31890, 'no_lang_code', 'name', 'SCS Energy (United States)'),
(38491, 31891, 'en', 'name', 'Carroll Center for the Blind'),
(38492, 31892, 'no_lang_code', 'name', 'PnP Innovations (United States)'),
(38493, 31893, 'en', 'name', 'Second Affiliated Hospital of Zhengzhou University'),
(38494, 31894, 'no_lang_code', 'name', 'D-Star Engineering (United States)'),
(38495, 31895, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado do Amazonas'),
(38496, 31896, 'no_lang_code', 'name', 'RayBiotech (China)'),
(38497, 31897, 'en', 'name', 'Southwest Bible College and Seminary'),
(38498, 31898, 'en', 'name', 'Florida Southern College'),
(38499, 31898, 'es', 'name', 'Universidad de Florida del Sur'),
(38500, 31899, 'no_lang_code', 'name', 'Orielle (United States)'),
(38501, 31900, 'en', 'name', 'Kidney Health Australia'),
(38502, 31901, 'no_lang_code', 'name', 'bioMƩrieux (India)'),
(38503, 31902, 'no_lang_code', 'name', 'Material (Belgium)'),
(38504, 31903, 'no_lang_code', 'name', 'PolyK Technologies (United States)'),
(38505, 31904, 'no_lang_code', 'name', 'Materials Sciences (United States)'),
(38506, 31905, 'sv', 'name', 'ATK Arbetstagarkonsultation'),
(38507, 31906, 'no_lang_code', 'name', 'Ineos (United States)'),
(38508, 31907, 'en', 'name', 'National IT industry Promotion Agency'),
(38509, 31907, 'ko', 'name', 'ģ •ė³“ķ†µģ‹ ģ‚°ģ—…ģ§„ķ„ģ›'),
(38510, 31908, 'no_lang_code', 'name', 'Huawei Technologies (Canada)'),
(38511, 31909, 'de', 'name', 'Niederländisches Zentrum für Feldornithologie'),
(38512, 31909, 'en', 'name', 'Dutch Centre for Field Ornithology'),
(38513, 31910, 'no_lang_code', 'name', 'Thoth Technology (Canada)'),
(38514, 31911, 'no_lang_code', 'name', 'Ozma (Sweden)'),
(38515, 31912, 'en', 'name', 'Lasell College'),
(38516, 31913, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado do Piauí'),
(38517, 31914, 'en', 'name', 'Centre for Integrated Research in the Rural Environment'),
(38518, 31915, 'en', 'name', 'Wellcome Centre for Human Neuroimaging'),
(38519, 31916, 'no_lang_code', 'name', 'Kion Defense Technologies (United States)'),
(38520, 31917, 'en', 'name', 'Boston Conservatory'),
(38521, 31917, 'fr', 'name', 'Conservatoire de boston'),
(38522, 31918, 'no_lang_code', 'name', 'iBeam Materials (United States)'),
(38523, 31919, 'en', 'name', 'Novo Nordisk UK Research Foundation'),
(38524, 31920, 'no_lang_code', 'name', 'Black River Systems (United States)'),
(38525, 31921, 'en', 'name', 'Provincial Secretariat for Science and Technological Development'),
(38526, 31921, 'sr', 'name', 'Pokrajinski Sekretarijat za Nauku i TehnoloŔki Razvoj'),
(38527, 31922, 'es', 'name', 'Red de Investigación Cardiovascular'),
(38528, 31923, 'en', 'name', 'China Institute in America'),
(38529, 31924, 'en', 'name', 'Vermont Department of Disabilities Aging and Independent Living'),
(38530, 31925, 'no_lang_code', 'name', 'Taizhou Municipal Hospital'),
(38531, 31926, 'nl', 'name', 'Koninklijke Scholengemeenschap'),
(38532, 31927, 'no_lang_code', 'name', 'Aeronix (United States)'),
(38533, 31928, 'hu', 'name', 'Vas Megyei KormƔnyhivatalt'),
(38534, 31929, 'no_lang_code', 'name', 'Conlogic (Sweden)'),
(38535, 31930, 'es', 'name', 'Centro Regional de Selección y Reproducción Animal'),
(38536, 31931, 'no_lang_code', 'name', 'Net Squared (United States)'),
(38537, 31932, 'no_lang_code', 'name', 'Damaskos (United States)'),
(38538, 31933, 'no_lang_code', 'name', 'Materials Systems (United States)'),
(38539, 31934, 'no_lang_code', 'name', 'Digital Optics Technologies (United States)'),
(38540, 31935, 'en', 'name', 'Finnish Cultural Foundation'),
(38541, 31936, 'no_lang_code', 'name', 'Renco Group (United States)'),
(38542, 31937, 'no_lang_code', 'name', 'Natures (Slovakia)'),
(38543, 31938, 'no_lang_code', 'name', 'B.E. Meyers & Co (United States)'),
(38544, 31939, 'en', 'name', 'Jain Foundation'),
(38545, 31940, 'en', 'name', 'Canadian Seed Growers Association'),
(38546, 31941, 'no_lang_code', 'name', 'Canadian Pacific Railway (Canada)'),
(38547, 31942, 'no_lang_code', 'name', 'New Potato Technologies (United States)'),
(38548, 31943, 'en', 'name', 'ManhiƧa Health Research Centre'),
(38549, 31943, 'pt', 'name', 'Centro de Investigação em Saúde de Manhiça'),
(38550, 31944, 'no_lang_code', 'name', 'Hal Technology (United States)'),
(38551, 31945, 'no_lang_code', 'name', 'EpiWorks (United States)'),
(38552, 31946, 'no_lang_code', 'name', 'KLSS (United States)'),
(38553, 31947, 'no_lang_code', 'name', 'Glomics (United States)'),
(38554, 31948, 'no_lang_code', 'name', 'Evolva Holding (United States)'),
(38555, 31949, 'no_lang_code', 'name', 'Canatec (Canada)'),
(38556, 31950, 'no_lang_code', 'name', 'Robert Heffley Engineering (United States)'),
(38557, 31951, 'no_lang_code', 'name', 'Applied Physical Electronics (United States)'),
(38558, 31952, 'no_lang_code', 'name', 'Rether Networks (United States)'),
(38559, 31953, 'en', 'name', 'Tumour Institute of Tuscany'),
(38560, 31954, 'no_lang_code', 'name', 'Coherent Technical Services (United States)'),
(38561, 31955, 'no_lang_code', 'name', 'Replisaurus Technologies (Sweden)'),
(38562, 31956, 'no_lang_code', 'name', 'Catalytic Materials (United States)'),
(38563, 31957, 'no_lang_code', 'name', 'LinkNet (United States)'),
(38564, 31958, 'sv', 'name', 'Svenska Uppfinnarefƶreningen'),
(38565, 31959, 'no_lang_code', 'name', 'Dominca (United States)'),
(38566, 31960, 'no_lang_code', 'name', 'PrimeKey Solutions (Sweden)'),
(38567, 31961, 'no_lang_code', 'name', 'Brayton Energy (United States)'),
(38568, 31962, 'en', 'name', 'London Metropolitan Archives'),
(38569, 31963, 'en', 'name', 'Affiliated Hospital of Jiangsu University'),
(38570, 31964, 'no_lang_code', 'name', 'Utilities Kingston (Canada)'),
(38571, 31965, 'en', 'name', 'Africa Innovations Institute'),
(38572, 31966, 'en', 'name', 'Gatsby Charitable Foundation'),
(38573, 31967, 'no_lang_code', 'name', 'Applied Nano Surfaces (Sweden)'),
(38574, 31968, 'no_lang_code', 'name', 'Campbell Scientific (Canada)'),
(38575, 31969, 'no_lang_code', 'name', 'Assa Abloy (United States)'),
(38576, 31970, 'en', 'name', 'Alberta Children’s Hospital Foundation'),
(38577, 31971, 'no_lang_code', 'name', 'OR Concepts Applied (United States)'),
(38578, 31972, 'en', 'name', 'NIHR Liverpool Pancreatic Biomedical Research Unit'),
(38579, 31973, 'en', 'name', 'Kentucky Educational Television'),
(38580, 31974, 'no_lang_code', 'name', 'MicroXact (United States)'),
(38581, 31975, 'no_lang_code', 'name', 'Psi Chi'),
(38582, 31976, 'en', 'name', 'Baptist Community Ministries'),
(38583, 31977, 'en', 'name', 'National Institutes of Biotechnology Malaysia'),
(38584, 31978, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁˆŲ±Ų¬ŲŖŲ§ŁˆŁ†'),
(38585, 31978, 'en', 'name', 'Georgetown University in Qatar'),
(38586, 31979, 'no_lang_code', 'name', 'SiEnergy Systems (United States)'),
(38587, 31980, 'en', 'name', 'Canadian Wireless Telecommunications Association'),
(38588, 31980, 'fr', 'name', 'Association canadienne des tƩlƩcommunications sans fil'),
(38589, 31981, 'en', 'name', 'SEE Center'),
(38590, 31982, 'no_lang_code', 'name', 'Out of the Fog Research (United States)'),
(38591, 31983, 'no_lang_code', 'name', 'WeldQC (United States)'),
(38592, 31984, 'no_lang_code', 'name', 'AET (United States)'),
(38593, 31985, 'no_lang_code', 'name', 'Innovative Wireless Technologies (United States)'),
(38594, 31986, 'en', 'name', 'Orthopaedic Research and Education Foundation'),
(38595, 31987, 'en', 'name', 'District of Columbia Water and Sewer Authority'),
(38596, 31988, 'en', 'name', 'Northwest College of Art & Design'),
(38597, 31989, 'no_lang_code', 'name', 'Synkola (Slovakia)'),
(38598, 31990, 'no_lang_code', 'name', 'MTECH Laboratories (United States)'),
(38599, 31991, 'en', 'name', 'Hereditary Disease Foundation');
INSERT INTO `ror_settings` VALUES
(38600, 31992, 'en', 'name', 'Federal Council'),
(38601, 31993, 'en', 'name', 'Blooms Syndrome Foundation'),
(38602, 31994, 'en', 'name', 'Cockcroft Institute'),
(38603, 31995, 'no_lang_code', 'name', 'ASR (United States)'),
(38604, 31996, 'en', 'name', 'SƶdertƤlje Municipality'),
(38605, 31997, 'en', 'name', 'Independent Ecological Centre'),
(38606, 31998, 'en', 'name', 'Qujing Normal University'),
(38607, 31998, 'zh', 'name', 'ę›²é–åøˆčŒƒå­¦é™¢'),
(38608, 31999, 'no_lang_code', 'name', 'Sigma-K (United States)'),
(38609, 32000, 'no_lang_code', 'name', 'Qualcomm (Canada)'),
(38610, 32001, 'en', 'name', 'American Precision Museum'),
(38611, 32002, 'no_lang_code', 'name', 'Qrodo (Sweden)'),
(38612, 32003, 'en', 'name', 'Link Foundation'),
(38613, 32004, 'no_lang_code', 'name', 'Trade Extensions (Sweden)'),
(38614, 32005, 'en', 'name', 'Jiangsu Provincial Authorities Hospital'),
(38615, 32005, 'zh', 'name', 'ę±Ÿč‹ēœēœēŗ§ęœŗå…³åŒ»é™¢'),
(38616, 32006, 'no_lang_code', 'name', 'BIO (Canada)'),
(38617, 32007, 'no_lang_code', 'name', 'Thar Energy (United States)'),
(38618, 32008, 'no_lang_code', 'name', 'Stedfast (Canada)'),
(38619, 32009, 'no_lang_code', 'name', 'Demeton Technologies (United States)'),
(38620, 32010, 'no_lang_code', 'name', 'Origin Energy (Australia)'),
(38621, 32011, 'no_lang_code', 'name', 'QPS (Netherlands)'),
(38622, 32012, 'de', 'name', 'HELIOS St. Elisabeth Klinik Oberhausen'),
(38623, 32013, 'en', 'name', 'American Society for Laser Medicine and Surgery'),
(38624, 32014, 'en', 'name', 'Guangxi University of Finance and Economics'),
(38625, 32014, 'zh', 'name', 'å¹æč„æč“¢ē»å­¦é™¢'),
(38626, 32015, 'no_lang_code', 'name', 'Husqvarna (Sweden)'),
(38627, 32016, 'en', 'name', 'State Planning Organization'),
(38628, 32016, 'tr', 'name', 'Devlet Planlama Teşkilatı'),
(38629, 32017, 'en', 'name', 'Ministry of Science and Technology'),
(38630, 32018, 'sv', 'name', 'Rinkebyakademien'),
(38631, 32019, 'no_lang_code', 'name', 'Tokatsu Hospital'),
(38632, 32020, 'no_lang_code', 'name', 'Thermal Electronics (United States)'),
(38633, 32021, 'no_lang_code', 'name', 'Ionic Systems (United States)'),
(38634, 32022, 'fr', 'name', 'Moulage sous pression AMT'),
(38635, 32022, 'no_lang_code', 'name', 'AMT Die Casting (Canada)'),
(38636, 32023, 'de', 'name', 'Ferdinand-Braun-Institut, Leibniz-Institut für Höchstfrequenztechnik'),
(38637, 32024, 'en', 'name', 'Ministry of Education of the Republic of Belarus'),
(38638, 32025, 'no_lang_code', 'name', 'MidƩ Technology (United States)'),
(38639, 32026, 'no_lang_code', 'name', 'Computer Control Technology (Slovakia)'),
(38640, 32027, 'no_lang_code', 'name', 'GearWheel (Sweden)'),
(38641, 32028, 'en', 'name', 'British Pharmacological Society'),
(38642, 32029, 'en', 'name', 'Southern Technical College'),
(38643, 32030, 'no_lang_code', 'name', 'Shoestring Press (United States)'),
(38644, 32031, 'no_lang_code', 'name', 'F6S Network (United Kingdom)'),
(38645, 32032, 'en', 'name', 'Techmania Science Center'),
(38646, 32033, 'no_lang_code', 'name', 'Arca Progetti (Italy)'),
(38647, 32034, 'no_lang_code', 'name', 'Motor Design (United Kingdom)'),
(38648, 32035, 'no_lang_code', 'name', 'Design Net Engineering (United States)'),
(38649, 32036, 'en', 'name', 'Health Foundation'),
(38650, 32037, 'no_lang_code', 'name', 'Plant Sensory Systems (United States)'),
(38651, 32038, 'no_lang_code', 'name', 'Scientific Solutions Innovative Research and Engineering (United States)'),
(38652, 32039, 'en', 'name', 'St. Elizabeth Youngstown Hospital'),
(38653, 32040, 'en', 'name', 'Charles H. Revson Foundation'),
(38654, 32041, 'no_lang_code', 'name', 'Advanced Cerametrics (United States)'),
(38655, 32042, 'en', 'name', 'Multiple Sclerosis Research Australia'),
(38656, 32043, 'en', 'name', 'Federation of Finnish Learned Societies'),
(38657, 32044, 'no_lang_code', 'name', 'Visual Editor Consultants (United States)'),
(38658, 32045, 'en', 'name', 'Plant Production Research Institute'),
(38659, 32046, 'no_lang_code', 'name', 'Rockland Capital (United States)'),
(38660, 32047, 'no_lang_code', 'name', 'Pacific Rim Engineering (United States)'),
(38661, 32048, 'en', 'name', 'Nebraska Methodist College'),
(38662, 32049, 'no_lang_code', 'name', 'Digital Specialty Chemicals (Canada)'),
(38663, 32050, 'en', 'name', 'Kate''s Foundation'),
(38664, 32051, 'no_lang_code', 'name', 'Aerovel Corporation (United States)'),
(38665, 32052, 'no_lang_code', 'name', 'Guided Systems Technologies (United States)'),
(38666, 32053, 'nl', 'name', 'Stichting Astma Bestrijding'),
(38667, 32054, 'no_lang_code', 'name', 'Boston Engineering (United States)'),
(38668, 32055, 'en', 'name', 'PHG Foundation'),
(38669, 32056, 'en', 'name', 'NIHR Cambridge Dementia Biomedical Research Unit'),
(38670, 32057, 'en', 'name', 'Poliomyelitis Research Foundation'),
(38671, 32058, 'en', 'name', 'Black Sea Commission'),
(38672, 32059, 'en', 'name', 'Kidney & Urology Foundation of America'),
(38673, 32060, 'no_lang_code', 'name', 'Duslo (Slovakia)'),
(38674, 32061, 'no_lang_code', 'name', 'Valore (United States)'),
(38675, 32062, 'no_lang_code', 'name', 'Invariant Corporation (United States)'),
(38676, 32063, 'en', 'name', 'Gout Research Foundation'),
(38677, 32064, 'no_lang_code', 'name', 'Ellen (Sweden)'),
(38678, 32065, 'no_lang_code', 'name', 'AFFiRiS (Austria)'),
(38679, 32066, 'en', 'name', 'Ministry of Public Health'),
(38680, 32066, 'fr', 'name', 'Ministère de la Santé Publique'),
(38681, 32067, 'no_lang_code', 'name', 'RTDS Technologies (Canada)'),
(38682, 32068, 'no_lang_code', 'name', 'Rite-Solutions (United States)'),
(38683, 32069, 'en', 'name', 'Nacka Municipality'),
(38684, 32070, 'no_lang_code', 'name', 'MicroContinuum (United States)'),
(38685, 32071, 'en', 'name', '82th Hospital of Pla'),
(38686, 32072, 'en', 'name', 'Vanguard University'),
(38687, 32073, 'it', 'name', 'Procoat'),
(38688, 32074, 'en', 'name', 'American Liver Foundation'),
(38689, 32075, 'no_lang_code', 'name', 'BerrieHill Research (United States)'),
(38690, 32076, 'no_lang_code', 'name', 'Blue Institute (Sweden)'),
(38691, 32077, 'en', 'name', 'British Society for Rheumatology'),
(38692, 32078, 'no_lang_code', 'name', 'Synfonica (United States)'),
(38693, 32079, 'en', 'name', 'Museum of Fine Arts'),
(38694, 32080, 'en', 'name', 'United States Sports Academy'),
(38695, 32081, 'no_lang_code', 'name', 'Brantford Energy (Canada)'),
(38696, 32082, 'en', 'name', 'Merck Institute for Science Education'),
(38697, 32083, 'no_lang_code', 'name', 'NatriSoft (Netherlands)'),
(38698, 32084, 'en', 'name', 'Xiangyang Central Hospital'),
(38699, 32085, 'no_lang_code', 'name', 'Unitechnologies (Switzerland)'),
(38700, 32086, 'en', 'name', 'Toronto and Region Conservation Authority'),
(38701, 32086, 'fr', 'name', 'Office de protection de la nature de Toronto et de la rƩgion'),
(38702, 32087, 'no_lang_code', 'name', 'Cha Corporation (United States)'),
(38703, 32088, 'no_lang_code', 'name', 'Fatigue Technology (United States)'),
(38704, 32089, 'no_lang_code', 'name', 'AFA Insurance (Sweden)'),
(38705, 32090, 'en', 'name', 'Grayson-Jockey Club Research Foundation'),
(38706, 32091, 'en', 'name', 'Equal Arts'),
(38707, 32092, 'no_lang_code', 'name', 'Sustainable Innovation (Sweden)'),
(38708, 32093, 'en', 'name', 'East Asian Observatory'),
(38709, 32094, 'en', 'name', 'Greensboro College'),
(38710, 32095, 'en', 'name', 'Glenn Foundation for Medical Research'),
(38711, 32096, 'en', 'name', 'Thailand Graduate Institute of Science and Technology'),
(38712, 32096, 'th', 'name', 'ą¹‚ąø„ąø£ąø‡ąøąø²ąø£ąø—ąøøąø™ąøŖąø–ąø²ąøšąø±ąø™ąøšąø±ąø“ąø‘ąø“ąø•ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œą¹ąø„ąø°ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹„ąø—ąø¢'),
(38713, 32097, 'no_lang_code', 'name', 'Aetion (United States)'),
(38714, 32098, 'pt', 'name', 'Instituto de Biologia do ExƩrcito'),
(38715, 32099, 'no_lang_code', 'name', 'Blue Mobile Systems (Sweden)'),
(38716, 32100, 'de', 'name', 'Ludwig Boltzmann für Klinische Neurobiologie'),
(38717, 32101, 'no_lang_code', 'name', 'Combined Computer Services (Netherlands)'),
(38718, 32102, 'en', 'name', 'Canada West Ski Areas Association'),
(38719, 32103, 'no_lang_code', 'name', 'Engineering and Software System Solutions (United States)'),
(38720, 32104, 'no_lang_code', 'name', 'Ingenieursburo Balvers (Netherlands)'),
(38721, 32105, 'sk', 'name', 'Centrum Voľného Casu'),
(38722, 32106, 'no_lang_code', 'name', 'Battlespace Simulations (United States)'),
(38723, 32107, 'en', 'name', 'Biomasa Association'),
(38724, 32108, 'de', 'name', 'Berlin-Brandenburgisches Institut für Biodiversitätsforschung'),
(38725, 32108, 'en', 'name', 'Berlin Brandenburg Institute of Advanced Biodiversity Research'),
(38726, 32109, 'no_lang_code', 'name', 'iRobot (United States)'),
(38727, 32110, 'en', 'name', 'University of Pharmacy Yangon'),
(38728, 32110, 'my', 'name', 'į€†į€±į€øį€į€«į€ø į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ ရန်ကုန်'),
(38729, 32111, 'en', 'name', 'Cancer Research Institute'),
(38730, 32112, 'no_lang_code', 'name', 'PlainSight Group (United States)'),
(38731, 32113, 'no_lang_code', 'name', 'RTI (Sweden)'),
(38732, 32114, 'en', 'name', 'First People’s Hospital of Zunyi'),
(38733, 32115, 'no_lang_code', 'name', 'Gibson Energy (Canada)'),
(38734, 32116, 'en', 'name', 'United Nations University Institute on Comparative Regional Integration Studies'),
(38735, 32117, 'en', 'name', 'Canadian Federation of Humane Societies'),
(38736, 32118, 'no_lang_code', 'name', 'AFreeze (Austria)'),
(38737, 32119, 'no_lang_code', 'name', 'Criterion Health (United States)'),
(38738, 32120, 'en', 'name', 'Council of Forest Industries'),
(38739, 32121, 'en', 'name', 'National Society for Histotechnology'),
(38740, 32122, 'no_lang_code', 'name', 'Blue Wolf Capital Partners (United States)'),
(38741, 32123, 'no_lang_code', 'name', 'RPA Electronic Solutions (United States)'),
(38742, 32124, 'en', 'name', 'Caribbean Research and Management of Biodiversity Foundation'),
(38743, 32125, 'en', 'name', 'Ministry of Culture, Sports and Tourism'),
(38744, 32125, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ė¬øķ™”ģ²“ģœ”ź“€ź“‘ė¶€'),
(38745, 32126, 'no_lang_code', 'name', 'Pharmatest (Finland)'),
(38746, 32127, 'sv', 'name', 'Svensk Form'),
(38747, 32128, 'no_lang_code', 'name', 'Nibie Ab (Sweden)'),
(38748, 32129, 'no_lang_code', 'name', 'ASRC Federal Analytical Service (United States)'),
(38749, 32130, 'en', 'name', 'Ministry of Health and Social Protection'),
(38750, 32130, 'es', 'name', 'Ministerio de Salud y de Protección Social'),
(38751, 32131, 'en', 'name', 'New Hampshire Farm Museum'),
(38752, 32132, 'en', 'name', 'Korea Institute of Drug Safety and Risk Management'),
(38753, 32133, 'en', 'name', 'Accelerate Brain Cancer Cure'),
(38754, 32134, 'no_lang_code', 'name', 'Taihe Hospital'),
(38755, 32135, 'en', 'name', 'Ford Foundation'),
(38756, 32136, 'no_lang_code', 'name', 'Codagenix (United States)'),
(38757, 32137, 'no_lang_code', 'name', 'Chai-Na-Ta (Canada)'),
(38758, 32138, 'no_lang_code', 'name', 'Intelligent Systems Technology (United States)'),
(38759, 32139, 'no_lang_code', 'name', 'Moody''s Corporation (United States)'),
(38760, 32140, 'es', 'name', 'Instituto Tecnológico de Soledad AtlÔntico'),
(38761, 32141, 'no_lang_code', 'name', 'Metabiota (Cameroon)'),
(38762, 32142, 'no_lang_code', 'name', 'Flow International Corporation (United States)'),
(38763, 32143, 'no_lang_code', 'name', 'BioEnergy International (Austria)'),
(38764, 32144, 'ms', 'name', 'Hospital Sarikei'),
(38765, 32145, 'no_lang_code', 'name', 'Nova Management (United States)'),
(38766, 32146, 'en', 'name', 'Aetna Foundation'),
(38767, 32147, 'en', 'name', 'Parteq Innovations (Canada)'),
(38768, 32148, 'no_lang_code', 'name', 'LRM Industries International (United States)'),
(38769, 32149, 'en', 'name', 'World Cancer Research Fund UK'),
(38770, 32150, 'nl', 'name', 'Christelijk Gymnasium Utrecht'),
(38771, 32151, 'no_lang_code', 'name', 'QorTek (United States)'),
(38772, 32152, 'no_lang_code', 'name', 'Calendula (Slovakia)'),
(38773, 32153, 'no_lang_code', 'name', 'Adlyfe (United States)'),
(38774, 32154, 'en', 'name', 'Temasek Defence Systems Institute'),
(38775, 32155, 'no_lang_code', 'name', 'FuelCell Energy (United States)'),
(38776, 32156, 'en', 'name', 'Carnegie Corporation of New York'),
(38777, 32157, 'en', 'name', 'Motor Neurone Disease Association'),
(38778, 32158, 'no_lang_code', 'name', 'HelioCaminus (Sweden)'),
(38779, 32159, 'no_lang_code', 'name', 'CarrƩ Technologies (Canada)'),
(38780, 32160, 'no_lang_code', 'name', 'Envic Sense (Sweden)'),
(38781, 32161, 'fr', 'name', 'UP-Tex'),
(38782, 32162, 'no_lang_code', 'name', 'Burge Environmental (United States)'),
(38783, 32163, 'no_lang_code', 'name', 'Nexam Chemical (Sweden)'),
(38784, 32164, 'no_lang_code', 'name', 'Focus Microwaves (Canada)'),
(38785, 32165, 'no_lang_code', 'name', 'Avogy (United States)'),
(38786, 32166, 'en', 'name', 'Westminster Seminary California'),
(38787, 32167, 'no_lang_code', 'name', 'Veryday (Sweden)'),
(38788, 32168, 'en', 'name', 'New Mexico Public Education Department'),
(38789, 32168, 'es', 'name', 'Departamento de Educación Pública de Nuevo México'),
(38790, 32169, 'en', 'name', 'Unified Szent IstvÔn and Szent LÔszló Hospital'),
(38791, 32169, 'hu', 'name', 'EgyesĆ­tett Szent IstvĆ”n Ć©s Szent LĆ”szló KórhĆ”z-RendelőintĆ©zet'),
(38792, 32170, 'en', 'name', 'Global Fund to Fight AIDS, Tuberculosis and Malaria'),
(38793, 32171, 'no_lang_code', 'name', 'Education Training & Consulting Company (Slovakia)'),
(38794, 32172, 'no_lang_code', 'name', 'Osstell (Sweden)'),
(38795, 32173, 'en', 'name', 'Boston Symphony Orchestra'),
(38796, 32174, 'en', 'name', 'Horticulture Innovation Australia'),
(38797, 32175, 'en', 'name', 'Israel Cancer Research Fund'),
(38798, 32176, 'en', 'name', 'Aintree University Hospitals NHS Foundation Trust'),
(38799, 32177, 'en', 'name', 'British Skin Foundation'),
(38800, 32178, 'no_lang_code', 'name', 'Electro Standards Laboratories (United States)'),
(38801, 32179, 'en', 'name', 'Portuguese Association of the Ceramics Industry'),
(38802, 32179, 'pt', 'name', 'Associação Portuguesa das Indústrias de Cerâmica e de Cristalaria'),
(38803, 32180, 'nl', 'name', 'Koninklijke Landmacht'),
(38804, 32181, 'no_lang_code', 'name', 'Polpharma Biologics (Netherlands)'),
(38805, 32182, 'no_lang_code', 'name', 'ORB Analytics (United States)'),
(38806, 32183, 'no_lang_code', 'name', 'Evaporated Coatings (United States)'),
(38807, 32184, 'no_lang_code', 'name', 'Cermet (United States)'),
(38808, 32185, 'en', 'name', 'Canadian International Grains Institute'),
(38809, 32186, 'en', 'name', 'Government of Russia'),
(38810, 32186, 'ru', 'name', 'ŠŸŃ€Š°Š²ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Š¾ Российской ФеГерации'),
(38811, 32187, 'en', 'name', 'Ministry of Education and Science'),
(38812, 32188, 'en', 'name', 'University of Nursing Yangon'),
(38813, 32188, 'my', 'name', 'į€žį€°į€”į€¬į€•į€¼į€Æį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(ရန်ကုန်)'),
(38814, 32189, 'no_lang_code', 'name', 'Applied Quantum Technologies (United States)'),
(38815, 32190, 'no_lang_code', 'name', 'Schneider Electric (Canada)'),
(38816, 32191, 'no_lang_code', 'name', 'Kinectrics (Canada)'),
(38817, 32192, 'no_lang_code', 'name', 'Polatin Corporation (United States)'),
(38818, 32193, 'no_lang_code', 'name', 'Propagation Research Associates (United States)'),
(38819, 32194, 'de', 'name', 'Deutsche Herzstiftung'),
(38820, 32195, 'no_lang_code', 'name', 'Western Digital (United States)'),
(38821, 32196, 'no_lang_code', 'name', 'IHS Markit (United States)'),
(38822, 32197, 'no_lang_code', 'name', 'RDA (United States)'),
(38823, 32198, 'no_lang_code', 'name', 'ImmerVision (Canada)'),
(38824, 32199, 'no_lang_code', 'name', 'Bial (Portugal)'),
(38825, 32200, 'en', 'name', 'Pennsylvania Department of Transportation'),
(38826, 32200, 'es', 'name', 'Departamento de Transporte de Pensilvania'),
(38827, 32201, 'en', 'name', 'Society of outdoor recreation establishments of Quebec'),
(38828, 32201, 'fr', 'name', 'SociƩtƩ des Ʃtablissements de plein air du QuƩbec, SƩpaq'),
(38829, 32202, 'en', 'name', 'NIHR Royal Brompton Respiratory Biomedical Research Unit'),
(38830, 32203, 'no_lang_code', 'name', 'Biophotonic Solutions (United States)'),
(38831, 32204, 'en', 'name', 'Swedish History Museum'),
(38832, 32205, 'en', 'name', 'Centre for BioSystems Genomics'),
(38833, 32206, 'no_lang_code', 'name', 'Gruppo Formula (Italy)'),
(38834, 32207, 'no_lang_code', 'name', 'Hendrix Genetics (Canada)'),
(38835, 32208, 'no_lang_code', 'name', 'Emstone (Sweden)'),
(38836, 32209, 'it', 'name', 'Fondazione Cassa di Risparmio di Padova e Rovigo'),
(38837, 32210, 'no_lang_code', 'name', 'Mechmath (United States)'),
(38838, 32211, 'en', 'name', 'American Foundation for AIDS Research'),
(38839, 32212, 'no_lang_code', 'name', 'Chevron (United States)'),
(38840, 32213, 'no_lang_code', 'name', 'Kratos Defense & Security Solutions (United States)'),
(38841, 32214, 'en', 'name', 'Alberta Oil Sands Technology and Research Authority'),
(38842, 32215, 'en', 'name', 'International Center for Relativistic Astrophysics'),
(38843, 32216, 'no_lang_code', 'name', 'Sivananthan Laboratories (United States)'),
(38844, 32217, 'no_lang_code', 'name', 'Halotechnics (United States)'),
(38845, 32218, 'en', 'name', 'China Medical Board'),
(38846, 32219, 'no_lang_code', 'name', 'Aptima (United States)'),
(38847, 32220, 'no_lang_code', 'name', 'Pacific Street Films (United States)'),
(38848, 32221, 'no_lang_code', 'name', 'Norleaf Networks (Canada)'),
(38849, 32222, 'sv', 'name', 'Stiftelsen SKAPA'),
(38850, 32223, 'no_lang_code', 'name', 'Academic Software (United States)'),
(38851, 32224, 'en', 'name', 'Golden State Baptist College'),
(38852, 32225, 'en', 'name', 'Florida Space Grant Consortium'),
(38853, 32226, 'da', 'name', 'Det Europæiske Miljøagentur'),
(38854, 32226, 'de', 'name', 'EuropƤische Umweltagentur'),
(38855, 32226, 'en', 'name', 'European Environment Agency'),
(38856, 32227, 'no_lang_code', 'name', 'NuWaves Engineering (United States)'),
(38857, 32228, 'no_lang_code', 'name', 'Mikros Systems (United States)'),
(38858, 32229, 'no_lang_code', 'name', 'Cambridge Cognition (United Kingdom)'),
(38859, 32230, 'no_lang_code', 'name', 'Shape Change Technologies (United States)'),
(38860, 32231, 'no_lang_code', 'name', 'Ascendant Engineering Solutions (United States)'),
(38861, 32232, 'no_lang_code', 'name', 'Electrik Box (Canada)'),
(38862, 32233, 'no_lang_code', 'name', 'Pro-Tech Design & Manufacturing (United States)'),
(38863, 32234, 'en', 'name', 'Longer Life Foundation'),
(38864, 32235, 'no_lang_code', 'name', 'Geotech Instruments (United States)'),
(38865, 32236, 'en', 'name', 'Prostate Cancer Foundation of Australia'),
(38866, 32237, 'en', 'name', 'Florida Department of Education'),
(38867, 32237, 'es', 'name', 'Departamento de Educación de la Florida'),
(38868, 32238, 'no_lang_code', 'name', 'IJ Research (United States)'),
(38869, 32239, 'no_lang_code', 'name', 'Gradientech (Sweden)'),
(38870, 32240, 'en', 'name', 'Botanical Society of Britain and Ireland'),
(38871, 32241, 'no_lang_code', 'name', 'General Sciences (United States)'),
(38872, 32242, 'en', 'name', 'Affiliated Hospital of Guizhou Medical University'),
(38873, 32243, 'en', 'name', 'Institute for Medical Biology'),
(38874, 32243, 'pl', 'name', 'Instytut Biologii Medycznej Polskiej Akademii Nauk'),
(38875, 32244, 'en', 'name', 'Davis College - New York'),
(38876, 32245, 'no_lang_code', 'name', 'Digital Science (United Kingdom)'),
(38877, 32246, 'en', 'name', 'Brera Astronomical Observatory'),
(38878, 32246, 'fr', 'name', 'Observatoire astronomique de brera'),
(38879, 32246, 'it', 'name', 'osservatorio astronomico di Brera'),
(38880, 32247, 'en', 'name', 'Kidney Research UK'),
(38881, 32248, 'en', 'name', 'Texas Department of Transportation'),
(38882, 32248, 'es', 'name', 'Departamento de Transporte de Texas'),
(38883, 32248, 'fr', 'name', 'DƩpartement des transports du texas'),
(38884, 32249, 'en', 'name', 'South African Thoracic Society'),
(38885, 32250, 'en', 'name', 'Illinois Assistive Technology Program'),
(38886, 32251, 'no_lang_code', 'name', 'Palcan Energy Corporation (Canada)'),
(38887, 32252, 'en', 'name', 'Multiple Sclerosis Trust'),
(38888, 32253, 'no_lang_code', 'name', 'ANDRO (United States)'),
(38889, 32254, 'no_lang_code', 'name', 'Vorago Technologies (United States)'),
(38890, 32255, 'no_lang_code', 'name', 'QuinStar Technology (United States)'),
(38891, 32256, 'no_lang_code', 'name', 'Princeton Satellite Systems (United States)'),
(38892, 32257, 'no_lang_code', 'name', 'Capraro Technologies (United States)'),
(38893, 32258, 'no_lang_code', 'name', 'Potawatomi Business Development (United States)'),
(38894, 32259, 'no_lang_code', 'name', 'BrockTek (United States)'),
(38895, 32260, 'no_lang_code', 'name', 'Research Applications Corporation (United States)'),
(38896, 32261, 'en', 'name', 'Makerere University Walter Reed Project'),
(38897, 32262, 'no_lang_code', 'name', 'Mitera Hospital'),
(38898, 32263, 'no_lang_code', 'name', 'Voxway (Sweden)'),
(38899, 32264, 'en', 'name', 'National Cancer Research Institute'),
(38900, 32265, 'en', 'name', 'California Rice Research Board'),
(38901, 32266, 'no_lang_code', 'name', 'Elektrokarbon (Slovakia)'),
(38902, 32267, 'en', 'name', 'Academy of Motion Picture Arts and Sciences'),
(38903, 32268, 'no_lang_code', 'name', 'Ocean Power Technologies (United States)'),
(38904, 32269, 'en', 'name', 'Catania Astrophysical Observatory'),
(38905, 32269, 'it', 'name', 'Osservatorio Astrofisico di Catania'),
(38906, 32270, 'no_lang_code', 'name', 'Kvarnstrands (Sweden)'),
(38907, 32271, 'en', 'name', 'Kalmar Art Museum'),
(38908, 32271, 'sv', 'name', 'Kalmar Konstmuseum'),
(38909, 32272, 'no_lang_code', 'name', 'Enmax (Canada)'),
(38910, 32273, 'no_lang_code', 'name', 'Meeting the Challenge (United States)'),
(38911, 32274, 'en', 'name', 'Bristol Clinical Commissioning Group'),
(38912, 32275, 'en', 'name', 'Friendly Sons of St. Patrick'),
(38913, 32276, 'en', 'name', 'Sony Computer Science Laboratories'),
(38914, 32276, 'ja', 'name', 'ć‚½ćƒ‹ćƒ¼ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶ę‰€'),
(38915, 32277, 'no_lang_code', 'name', 'Schrader International (United Kingdom)'),
(38916, 32278, 'en', 'name', 'Mt. Sierra College'),
(38917, 32279, 'no_lang_code', 'name', 'Osborne & Associates (United States)'),
(38918, 32280, 'en', 'name', 'Minerva Brooks Memorial Library'),
(38919, 32281, 'de', 'name', 'Hochschule Ruhr West'),
(38920, 32281, 'en', 'name', 'Ruhr West University of Applied Sciences'),
(38921, 32282, 'en', 'name', 'Coastal Oceans Research and Development in the Indian Ocean'),
(38922, 32283, 'en', 'name', 'CESSI'),
(38923, 32284, 'no_lang_code', 'name', 'Uganda Clays (Uganda)'),
(38924, 32285, 'en', 'name', 'Economic Development Board'),
(38925, 32286, 'es', 'name', 'Red Espanola de Investigacion en Patologia Infecciosa'),
(38926, 32287, 'en', 'name', 'Summit University'),
(38927, 32288, 'no_lang_code', 'name', 'Adsys Controls (United States)'),
(38928, 32289, 'en', 'name', 'American Foundation for the Blind'),
(38929, 32290, 'no_lang_code', 'name', 'Prompt (Canada)'),
(38930, 32291, 'no_lang_code', 'name', 'Greatbatch (United States)'),
(38931, 32292, 'no_lang_code', 'name', 'Penny (Sweden)'),
(38932, 32293, 'en', 'name', 'BC Greenhouse Growers Association'),
(38933, 32294, 'en', 'name', 'Christian Bible College and Seminary'),
(38934, 32295, 'no_lang_code', 'name', 'Diamorph (Sweden)'),
(38935, 32296, 'no_lang_code', 'name', 'Semtech (United States)'),
(38936, 32297, 'no_lang_code', 'name', 'Mikon (Slovakia)'),
(38937, 32298, 'en', 'name', 'Swedish Farmers’ Foundation for Agricultural Research'),
(38938, 32299, 'en', 'name', 'Guy''s and St Thomas'' Charity'),
(38939, 32300, 'en', 'name', 'Swedish Municipal Workers'' Union'),
(38940, 32301, 'en', 'name', 'Innovative Vector Control Consortium'),
(38941, 32302, 'en', 'name', 'Pacific Oaks College'),
(38942, 32303, 'no_lang_code', 'name', 'Reaction Systems (United States)'),
(38943, 32304, 'en', 'name', 'Pontifical Atheneum of St. Anselm'),
(38944, 32304, 'it', 'name', 'Pontificio Ateneo Sant''Anselmo'),
(38945, 32305, 'en', 'name', 'NIHR Nottingham Digestive Diseases Biomedical Research Unit'),
(38946, 32306, 'no_lang_code', 'name', 'Berkshire Hathaway (United States)'),
(38947, 32307, 'en', 'name', 'Winthrop Rockefeller Foundation'),
(38948, 32308, 'en', 'name', 'Arkansas Department of Career Education'),
(38949, 32309, 'no_lang_code', 'name', 'Generic Assays (Germany)'),
(38950, 32310, 'no_lang_code', 'name', 'Karolinska Development (Sweden)'),
(38951, 32311, 'no_lang_code', 'name', 'Redwood Pharma (Sweden)'),
(38952, 32312, 'no_lang_code', 'name', 'Air Liquide (United States)'),
(38953, 32313, 'no_lang_code', 'name', 'Mayachitra (United States)'),
(38954, 32314, 'en', 'name', 'CODAC Behavioral Health Services'),
(38955, 32315, 'de', 'name', 'Berufbildungsschule Winterthur'),
(38956, 32316, 'no_lang_code', 'name', 'Albireo (Sweden)'),
(38957, 32317, 'en', 'name', 'Saxet Surface Science'),
(38958, 32318, 'no_lang_code', 'name', 'Hitachi Global Storage Technologies (United States)'),
(38959, 32319, 'no_lang_code', 'name', 'Teshmont (Canada)'),
(38960, 32320, 'no_lang_code', 'name', 'Monsanto (Canada)'),
(38961, 32321, 'en', 'name', 'National Center for HIV/AIDS, Dermatology and STD'),
(38962, 32322, 'no_lang_code', 'name', 'Ɩhlins (Sweden)'),
(38963, 32323, 'en', 'name', 'Oklahoma Center for the Advancement of Science and Technology'),
(38964, 32324, 'en', 'name', 'Conservation and Ecosystem Health Alliance'),
(38965, 32325, 'no_lang_code', 'name', 'Schwarzwaldmilch Freiburg (Germany)'),
(38966, 32326, 'no_lang_code', 'name', 'Blue Bear (United Kingdom)'),
(38967, 32327, 'no_lang_code', 'name', 'Proteus (United Kingdom)'),
(38968, 32328, 'no_lang_code', 'name', 'Chemosvit Fibrochem (Slovakia)'),
(38969, 32329, 'de', 'name', 'Helios Park-Klinikum Leipzig'),
(38970, 32330, 'de', 'name', 'Wilhelm Sander Stiftung'),
(38971, 32331, 'no_lang_code', 'name', 'Parmalat (Canada)'),
(38972, 32332, 'no_lang_code', 'name', 'Trademco (Greece)'),
(38973, 32333, 'no_lang_code', 'name', 'CMSoft (United States)'),
(38974, 32334, 'en', 'name', 'Photons Canada'),
(38975, 32335, 'en', 'name', 'Agricultural Institute Osijek'),
(38976, 32336, 'no_lang_code', 'name', 'Star Cryoelectronics (United States)'),
(38977, 32337, 'no_lang_code', 'name', 'JF Kapnek Trust'),
(38978, 32338, 'en', 'name', 'Waverly Consort'),
(38979, 32339, 'no_lang_code', 'name', 'Material Concepts (United States)'),
(38980, 32340, 'en', 'name', 'Jiangxi Pingxiang People''s Hospital'),
(38981, 32341, 'no_lang_code', 'name', 'Control Systems Research (United States)'),
(38982, 32342, 'no_lang_code', 'name', 'Rockwell Automation (Canada)'),
(38983, 32343, 'en', 'name', 'The Second Nanning People''s Hospital'),
(38984, 32343, 'zh', 'name', 'å—å®åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(38985, 32344, 'en', 'name', 'Centre of Plasma Physics - Institute for Plasma Research'),
(38986, 32344, 'hi', 'name', 'ą¤Ŗą„ą¤²ą¤¾ą¤œą„ą¤®ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(38987, 32344, 'ta', 'name', 'பிளாசுமா ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(38988, 32345, 'no_lang_code', 'name', 'Phononic Devices (United States)'),
(38989, 32346, 'en', 'name', 'Hungarian Astronomical Association'),
(38990, 32347, 'en', 'name', 'Water Research Commission'),
(38991, 32348, 'no_lang_code', 'name', 'Impact Coatings (Sweden)'),
(38992, 32349, 'en', 'name', 'Samuel Waxman Cancer Research Foundation'),
(38993, 32350, 'no_lang_code', 'name', 'Geoexperts (Slovakia)'),
(38994, 32351, 'en', 'name', 'Southern and Eastern Norway Regional Health Authority'),
(38995, 32352, 'no_lang_code', 'name', 'Wolf Technical Services (United States)'),
(38996, 32353, 'en', 'name', 'Granite State College'),
(38997, 32354, 'en', 'name', 'Cryptobranchid Interest Group'),
(38998, 32355, 'no_lang_code', 'name', 'Clayburn Refractories (Canada)'),
(38999, 32356, 'no_lang_code', 'name', 'Stena Recycling (Sweden)'),
(39000, 32357, 'no_lang_code', 'name', 'NovaSpectra (United States)'),
(39001, 32358, 'no_lang_code', 'name', 'AgilOptics (United States)'),
(39002, 32359, 'no_lang_code', 'name', 'Southern Company (United States)'),
(39003, 32360, 'sk', 'name', 'Vyskumny Ústav Dopravny'),
(39004, 32361, 'no_lang_code', 'name', 'National Influenza Center'),
(39005, 32362, 'en', 'name', 'Packaging Arena'),
(39006, 32363, 'no_lang_code', 'name', 'Scientica (Slovakia)'),
(39007, 32364, 'no_lang_code', 'name', 'Farr Fields (United States)'),
(39008, 32365, 'en', 'name', 'Center for International Rehabilitation'),
(39009, 32366, 'en', 'name', 'Doctors Without Borders'),
(39010, 32366, 'fr', 'name', 'MĆ©decins Sans FrontiĆØresā€Ž'),
(39011, 32367, 'no_lang_code', 'name', 'Biteam (Sweden)'),
(39012, 32368, 'en', 'name', 'Araucaria Foundation'),
(39013, 32368, 'pt', 'name', 'Fundação AraucÔria'),
(39014, 32369, 'no_lang_code', 'name', 'Vernon Seed Orchard Company (Canada)'),
(39015, 32370, 'no_lang_code', 'name', 'NeuroRx Research (Canada)'),
(39016, 32371, 'en', 'name', 'Asia-Pacific Network for Global Change Research'),
(39017, 32372, 'no_lang_code', 'name', 'InnovaTek (United States)'),
(39018, 32373, 'no_lang_code', 'name', 'Imperial Metals (Canada)'),
(39019, 32374, 'no_lang_code', 'name', 'Mercury Systems (United States)'),
(39020, 32375, 'nl', 'name', 'Christelijke Scholengemeenschap Walcheren'),
(39021, 32376, 'no_lang_code', 'name', 'Ecoloop (Sweden)'),
(39022, 32377, 'de', 'name', 'Vereinigung bildender Künstlerinnen Ɩsterreichs'),
(39023, 32377, 'en', 'name', 'Austrian Association of Women Artists'),
(39024, 32378, 'en', 'name', 'A*STAR-NUS Clinical Imaging Research Centre'),
(39025, 32379, 'en', 'name', 'Josiah Macy Jr Foundation'),
(39026, 32380, 'no_lang_code', 'name', 'ME-Inspection SK (Slovakia)'),
(39027, 32381, 'en', 'name', 'Credit Comfort'),
(39028, 32382, 'no_lang_code', 'name', 'OrganoClick (Sweden)'),
(39029, 32383, 'no_lang_code', 'name', 'Enoshima Aquarium'),
(39030, 32384, 'en', 'name', 'Defence Science and Technology Agency'),
(39031, 32385, 'no_lang_code', 'name', 'Advanced Optical Systems (United States)'),
(39032, 32386, 'es', 'name', 'Centro Nacional de Enfermedades Tropicales'),
(39033, 32387, 'no_lang_code', 'name', 'Vigor Wave Energy (Sweden)'),
(39034, 32388, 'en', 'name', 'Songjiang District Central Hospital'),
(39035, 32389, 'de', 'name', 'Helmholtz-Institut Jena'),
(39036, 32389, 'en', 'name', 'Helmholtz Institute Jena'),
(39037, 32390, 'no_lang_code', 'name', 'Arbec Forest Products (Canada)'),
(39038, 32391, 'en', 'name', 'Coral Reef Research Foundation'),
(39039, 32392, 'no_lang_code', 'name', 'Polymeright (United States)'),
(39040, 32393, 'en', 'name', 'National Biodiversity Institute'),
(39041, 32393, 'es', 'name', 'Instituto Nacional de Biodiversidad'),
(39042, 32394, 'no_lang_code', 'name', 'Applied Poleramic (United States)'),
(39043, 32395, 'en', 'name', 'Chartered Institute of Plumbing and Heating Engineering'),
(39044, 32396, 'no_lang_code', 'name', 'Emel (Slovakia)'),
(39045, 32397, 'ro', 'name', 'Poliția de Frontieră RomĆ¢nă'),
(39046, 32398, 'es', 'name', 'Hospital Infantil Manuel de JesĆŗs Rivera'),
(39047, 32399, 'no_lang_code', 'name', 'Firalis (France)'),
(39048, 32400, 'no_lang_code', 'name', 'West Pharmaceutical Services (United States)'),
(39049, 32401, 'no_lang_code', 'name', 'Etalon (Germany)'),
(39050, 32402, 'en', 'name', 'California HealthCare Foundation'),
(39051, 32403, 'en', 'name', 'Walther Cancer Foundation'),
(39052, 32404, 'no_lang_code', 'name', 'Integrated Adaptive Applications (United States)'),
(39053, 32405, 'no_lang_code', 'name', 'Aquatic Systems (United States)'),
(39054, 32406, 'en', 'name', 'Shenzhen KangNing Hospital'),
(39055, 32407, 'en', 'name', 'Grand Challenges Canada'),
(39056, 32408, 'en', 'name', 'Biopterre'),
(39057, 32409, 'en', 'name', 'U.S. Poultry and Egg Association'),
(39058, 32410, 'no_lang_code', 'name', 'Arkema (Canada)'),
(39059, 32411, 'en', 'name', 'Nepal Health Research Council'),
(39060, 32412, 'en', 'name', 'Juvenile Diabetes Research Foundation'),
(39061, 32413, 'en', 'name', 'National Records of Scotland'),
(39062, 32414, 'no_lang_code', 'name', 'Business Region Gƶteborg (Sweden)'),
(39063, 32415, 'no_lang_code', 'name', 'Sendero Group (United States)'),
(39064, 32416, 'no_lang_code', 'name', 'Armacell (Canada)'),
(39065, 32417, 'en', 'name', 'Monroe College'),
(39066, 32418, 'no_lang_code', 'name', 'Novozymes (Canada)'),
(39067, 32419, 'en', 'name', 'California Institute for Human Science'),
(39068, 32420, 'en', 'name', 'Fetzer Institute'),
(39069, 32421, 'no_lang_code', 'name', 'GasPorOx (Sweden)'),
(39070, 32422, 'no_lang_code', 'name', 'Full Circle Research (United States)'),
(39071, 32423, 'no_lang_code', 'name', 'Edaptive Computing (United States)'),
(39072, 32424, 'no_lang_code', 'name', 'Beam Engineering for Advanced Measurements (United States)'),
(39073, 32425, 'no_lang_code', 'name', 'Lowell Digisonde International (United States)'),
(39074, 32426, 'no_lang_code', 'name', 'Kalsi Engineering (United States)'),
(39075, 32427, 'no_lang_code', 'name', 'Aqwest (United States)'),
(39076, 32428, 'en', 'name', 'First Affiliated Hospital of Xi''an Jiaotong University'),
(39077, 32429, 'it', 'name', 'Dipartimento per le pari opportunitĆ '),
(39078, 32430, 'pt', 'name', 'Fundação de Amparo à Ciência e Tecnologia de Pernambuco'),
(39079, 32431, 'no_lang_code', 'name', 'T-Industry (Slovakia)'),
(39080, 32432, 'en', 'name', 'Scottish Universities Life Sciences Alliance'),
(39081, 32433, 'no_lang_code', 'name', 'KraussMaffei (Slovakia)'),
(39082, 32434, 'no_lang_code', 'name', 'Applied Radar (United States)'),
(39083, 32435, 'en', 'name', 'Alaska Bible College'),
(39084, 32436, 'no_lang_code', 'name', 'Heraeus (Canada)'),
(39085, 32437, 'en', 'name', 'Imperial War Museum'),
(39086, 32438, 'en', 'name', 'Guerci Consulting Services'),
(39087, 32439, 'no_lang_code', 'name', 'Read Jones Christoffersen (Canada)'),
(39088, 32440, 'no_lang_code', 'name', 'MaxPower (United States)'),
(39089, 32441, 'no_lang_code', 'name', 'Yankee Scientific (United States)'),
(39090, 32442, 'en', 'name', 'Internet Foundation In Sweden'),
(39091, 32443, 'no_lang_code', 'name', 'Ultimara (United States)'),
(39092, 32444, 'hu', 'name', 'KÔrolyi SÔndor KórhÔz'),
(39093, 32445, 'no_lang_code', 'name', 'Infinera (United States)'),
(39094, 32446, 'no_lang_code', 'name', 'Bcn Cambra Logica De Projectes'),
(39095, 32447, 'no_lang_code', 'name', 'Surmet (United States)'),
(39096, 32448, 'en', 'name', 'American Porphyria Foundation'),
(39097, 32449, 'no_lang_code', 'name', 'Power Standards Lab (United States)'),
(39098, 32450, 'no_lang_code', 'name', 'Creativ-Ceutical (France)'),
(39099, 32451, 'no_lang_code', 'name', 'Omnitek Partners (United States)'),
(39100, 32452, 'no_lang_code', 'name', 'Blade Diagnostics (United States)'),
(39101, 32453, 'no_lang_code', 'name', 'Patrys (Germany)'),
(39102, 32454, 'en', 'name', 'Hungarian National Gallery'),
(39103, 32455, 'no_lang_code', 'name', 'CH Four Biogas (Canada)'),
(39104, 32456, 'en', 'name', 'Medical Council of Canada'),
(39105, 32456, 'fr', 'name', 'Le Conseil mƩdical du Canada'),
(39106, 32457, 'en', 'name', 'Westbrook University'),
(39107, 32458, 'no_lang_code', 'name', 'CU Aerospace (United States)'),
(39108, 32459, 'en', 'name', 'Mid Sweden Science Park'),
(39109, 32460, 'en', 'name', 'Welsh National College'),
(39110, 32461, 'no_lang_code', 'name', 'West of England Local Enterprise Partnership (United Kingdom)'),
(39111, 32462, 'no_lang_code', 'name', 'Redoxis (Sweden)'),
(39112, 32463, 'no_lang_code', 'name', 'Exothermics (United States)'),
(39113, 32464, 'sk', 'name', 'Výskumný Ústav Mliekarenský'),
(39114, 32465, 'en', 'name', 'Malmƶ Municipality'),
(39115, 32466, 'en', 'name', 'Government of Jilin Province'),
(39116, 32467, 'no_lang_code', 'name', 'Algoryx Simulation (Sweden)'),
(39117, 32468, 'no_lang_code', 'name', 'Gilasio Coding (Israel)'),
(39118, 32469, 'en', 'name', 'Texas Chiropractic College'),
(39119, 32470, 'no_lang_code', 'name', 'TeachTown (United States)'),
(39120, 32471, 'no_lang_code', 'name', 'Hudbay Minerals (Canada)'),
(39121, 32472, 'en', 'name', 'Ladies Leukemia League'),
(39122, 32473, 'no_lang_code', 'name', 'Prevention Group'),
(39123, 32474, 'en', 'name', 'Republic of Burundi'),
(39124, 32474, 'fr', 'name', 'RƩpublique du Burundi'),
(39125, 32475, 'en', 'name', 'College of Veterinarians of British Columbia'),
(39126, 32476, 'en', 'name', 'United States Merchant Marine Academy'),
(39127, 32476, 'es', 'name', 'Academia de la Marina Mercante de los Estados Unidos'),
(39128, 32476, 'fr', 'name', 'AcadĆ©mie de la marine marchande des Ɖtats-unis'),
(39129, 32477, 'en', 'name', 'Judicial Academy of the Slovak Republic'),
(39130, 32478, 'en', 'name', 'First Hospital of Shanxi Medical University'),
(39131, 32479, 'en', 'name', 'Hancock Shaker Village'),
(39132, 32480, 'no_lang_code', 'name', 'Biomotif (Sweden)'),
(39133, 32481, 'en', 'name', 'Shanghai Institute of Applied Physics'),
(39134, 32481, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·åŗ”ē”Øē‰©ē†ē ”ē©¶ę‰€'),
(39135, 32482, 'no_lang_code', 'name', 'Narrative (Sweden)'),
(39136, 32483, 'en', 'name', 'New School for Jewish Studies'),
(39137, 32484, 'en', 'name', 'State Studies Foundation'),
(39138, 32485, 'en', 'name', 'British Heart Foundation'),
(39139, 32486, 'no_lang_code', 'name', 'NewMarket Corporation (United States)'),
(39140, 32487, 'no_lang_code', 'name', 'Tezzaron Semiconductor (United States)'),
(39141, 32488, 'no_lang_code', 'name', 'MMA Design (United States)'),
(39142, 32489, 'no_lang_code', 'name', 'Matsys (United States)'),
(39143, 32490, 'en', 'name', 'Shanxi Eye Hospital'),
(39144, 32491, 'en', 'name', 'Government of New Brunswick'),
(39145, 32491, 'fr', 'name', 'Gouvernement du Nouveau-Brunswick'),
(39146, 32492, 'no_lang_code', 'name', 'RecondOil (Sweden)'),
(39147, 32493, 'no_lang_code', 'name', 'Kumetrix (United States)'),
(39148, 32494, 'no_lang_code', 'name', 'Arboritec (Sweden)'),
(39149, 32495, 'en', 'name', 'Children''s Cancer Research Fund'),
(39150, 32496, 'no_lang_code', 'name', 'Industrial Development Center (Sweden)'),
(39151, 32497, 'no_lang_code', 'name', 'Shinsera Technologies (Japan)'),
(39152, 32498, 'no_lang_code', 'name', 'Howden (United Kingdom)'),
(39153, 32499, 'no_lang_code', 'name', 'Taiwan Semiconductor Manufacturing Company (Taiwan)'),
(39154, 32499, 'zh', 'name', 'å°ē£ē©é«”é›»č·Æč£½é€ å…¬åø'),
(39155, 32500, 'no_lang_code', 'name', 'JonDeTech (Sweden)'),
(39156, 32501, 'no_lang_code', 'name', 'Advanced Infoneering (United States)'),
(39157, 32502, 'en', 'name', 'Institute of Nature Conservation'),
(39158, 32502, 'pl', 'name', 'Instytut Ochrony Przyrody'),
(39159, 32503, 'no_lang_code', 'name', 'Precision Varionic International (United Kingdom)'),
(39160, 32504, 'en', 'name', 'Organization for Tropical Studies'),
(39161, 32505, 'no_lang_code', 'name', 'WestGen (Canada)'),
(39162, 32506, 'en', 'name', 'Healthcare Georgia Foundation'),
(39163, 32507, 'en', 'name', 'Middle East Fertility Society'),
(39164, 32508, 'et', 'name', 'Emakeele Selts'),
(39165, 32509, 'en', 'name', 'Berkeley College'),
(39166, 32510, 'en', 'name', 'Fogarty International Center'),
(39167, 32511, 'no_lang_code', 'name', 'Amelex (United States)'),
(39168, 32512, 'hu', 'name', 'Móra Ferenc Múzeum'),
(39169, 32513, 'no_lang_code', 'name', 'FarCo Technologies (United States)'),
(39170, 32514, 'no_lang_code', 'name', 'QmagiQ (United States)'),
(39171, 32515, 'en', 'name', 'Ministry of Higher Education'),
(39172, 32515, 'fr', 'name', 'Ministère de l''Enseignement Supérieur'),
(39173, 32516, 'en', 'name', 'National Heart Foundation of New Zealand'),
(39174, 32517, 'en', 'name', 'Peak Parent Center'),
(39175, 32518, 'en', 'name', '81th Hospital of PLA'),
(39176, 32518, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬å…«äø€åŒ»é™¢'),
(39177, 32519, 'no_lang_code', 'name', 'ChromoGenics (Sweden)'),
(39178, 32520, 'no_lang_code', 'name', 'Surface Optics (United States)'),
(39179, 32521, 'no_lang_code', 'name', 'Autogrid Systems (United States)'),
(39180, 32522, 'en', 'name', 'Save the Children'),
(39181, 32523, 'no_lang_code', 'name', 'RBS Technologies (United States)'),
(39182, 32524, 'en', 'name', 'Biomedical Informatics Research Center Antwerp'),
(39183, 32525, 'no_lang_code', 'name', 'Evonik (Canada)'),
(39184, 32526, 'no_lang_code', 'name', 'Bacher Energie (Switzerland)'),
(39185, 32527, 'no_lang_code', 'name', 'Guild Hall'),
(39186, 32528, 'no_lang_code', 'name', 'Kellogg''s (Canada)'),
(39187, 32529, 'no_lang_code', 'name', 'GP Technologies (United States)'),
(39188, 32530, 'no_lang_code', 'name', 'Elteco (Slovakia)'),
(39189, 32531, 'no_lang_code', 'name', 'Pharmachem Laboratories (United States)'),
(39190, 32532, 'no_lang_code', 'name', 'Hexagon Lincoln (United States)'),
(39191, 32533, 'en', 'name', 'Shandong Province Animal Husbandry and Veterinary Bureau'),
(39192, 32534, 'en', 'name', 'Xi''an University of Science and Education Foundation'),
(39193, 32535, 'no_lang_code', 'name', 'Crossfield Technology (United States)'),
(39194, 32536, 'en', 'name', 'California Sea Grant'),
(39195, 32537, 'no_lang_code', 'name', 'Simulation Technologies (United States)'),
(39196, 32538, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (United States)'),
(39197, 32539, 'no_lang_code', 'name', 'SNP Genetics (South Korea)'),
(39198, 32540, 'no_lang_code', 'name', 'Holochip (United States)'),
(39199, 32541, 'en', 'name', 'Texas Emerging Technology Fund'),
(39200, 32542, 'en', 'name', 'AIDS Clinical Trials Group'),
(39201, 32543, 'en', 'name', 'Wind Energy Institute of Canada'),
(39202, 32543, 'fr', 'name', 'Institut de l’Énergie Ɖolienne du Canada'),
(39203, 32544, 'en', 'name', 'Institute of Mountain Hazards and Environment'),
(39204, 32544, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę°“åˆ©éƒØęˆéƒ½å±±åœ°ē¾å®³äøŽēŽÆå¢ƒē ”ē©¶ę‰€'),
(39205, 32545, 'nl', 'name', 'Regionale scholengemeenschap Goeree-Overflakkee'),
(39206, 32546, 'en', 'name', 'Horserace Betting Levy Board'),
(39207, 32547, 'no_lang_code', 'name', 'Sturman Industries (United States)'),
(39208, 32548, 'en', 'name', 'PƤrnu Museum'),
(39209, 32549, 'en', 'name', 'Ottó Herman Museum'),
(39210, 32550, 'en', 'name', 'National Rifle Association of America'),
(39211, 32551, 'no_lang_code', 'name', 'Peterborough Utilities Service (Canada)'),
(39212, 32552, 'no_lang_code', 'name', 'Knowledge Broadband Services (Greece)'),
(39213, 32553, 'no_lang_code', 'name', 'Gener8 (United States)'),
(39214, 32554, 'en', 'name', 'Association for Behavior Analysis International'),
(39215, 32555, 'en', 'name', 'Bimini Biological Field Station Foundation'),
(39216, 32556, 'no_lang_code', 'name', 'MC10 (United States)'),
(39217, 32557, 'no_lang_code', 'name', 'Magle (Sweden)'),
(39218, 32558, 'no_lang_code', 'name', 'BeeMobile (Sweden)'),
(39219, 32559, 'no_lang_code', 'name', 'Sigolis (Sweden)'),
(39220, 32560, 'fr', 'name', 'Fondation de France'),
(39221, 32561, 'no_lang_code', 'name', 'Treviso Tecnologia (Italy)'),
(39222, 32562, 'no_lang_code', 'name', 'SimVentions (United States)'),
(39223, 32563, 'en', 'name', 'Korea Institute of Energy Technology Evaluation and Planning'),
(39224, 32564, 'no_lang_code', 'name', 'Michelin (Canada)'),
(39225, 32565, 'no_lang_code', 'name', 'Dillon Consulting'),
(39226, 32566, 'no_lang_code', 'name', 'Irflex (United States)'),
(39227, 32567, 'en', 'name', 'Royal Irgalmasrendi Hospital'),
(39228, 32568, 'en', 'name', 'Blue Mountain College'),
(39229, 32569, 'no_lang_code', 'name', 'Kulite (United States)'),
(39230, 32570, 'en', 'name', 'National Forest Centre'),
(39231, 32571, 'en', 'name', 'AXA Research Fund'),
(39232, 32572, 'en', 'name', 'Beijing Aerospace General Hospital'),
(39233, 32573, 'no_lang_code', 'name', 'Delta-Q Technologies (Canada)'),
(39234, 32574, 'en', 'name', 'Clarke Schools for Hearing and Speech'),
(39235, 32575, 'no_lang_code', 'name', 'Lola ya Bonobo'),
(39236, 32576, 'en', 'name', 'British Academy'),
(39237, 32577, 'en', 'name', 'Connecticut State Emergency Response Commission'),
(39238, 32578, 'no_lang_code', 'name', 'Biogas Barth (Germany)'),
(39239, 32579, 'no_lang_code', 'name', 'Strategic Insight (United States)'),
(39240, 32580, 'no_lang_code', 'name', 'VSL Systems (Sweden)'),
(39241, 32581, 'en', 'name', 'Canada Economic Development for Quebec Regions'),
(39242, 32582, 'en', 'name', 'Georgia Research Alliance'),
(39243, 32583, 'no_lang_code', 'name', 'Eigent Technologies (United States)'),
(39244, 32584, 'no_lang_code', 'name', 'Plasan (United States)'),
(39245, 32585, 'no_lang_code', 'name', 'Vision Systems Incorporation (United States)'),
(39246, 32586, 'en', 'name', 'Australian Astronomical Observatory'),
(39247, 32587, 'en', 'name', 'China Tobacco'),
(39248, 32587, 'zh', 'name', 'å›½å®¶ēƒŸč‰äø“å–å±€'),
(39249, 32588, 'no_lang_code', 'name', 'Labormedizinische Zentrum Dr Risch (Switzerland)'),
(39250, 32589, 'de', 'name', 'Institut für Wissenschaft und Kunst'),
(39251, 32590, 'en', 'name', 'Alfa College'),
(39252, 32591, 'no_lang_code', 'name', 'MRV Communications (United States)'),
(39253, 32592, 'no_lang_code', 'name', 'EnZinc (United States)'),
(39254, 32593, 'en', 'name', 'Association Vahatra'),
(39255, 32594, 'ms', 'name', 'Hospital Sungai Buloh'),
(39256, 32595, 'en', 'name', 'Institute for Molecular Medicine Finland'),
(39257, 32596, 'no_lang_code', 'name', 'BPM Consulting (Slovakia)'),
(39258, 32597, 'no_lang_code', 'name', 'Aecom (Canada)'),
(39259, 32598, 'no_lang_code', 'name', 'Kigre (United States)'),
(39260, 32599, 'no_lang_code', 'name', 'SeaLandAire Technologies (United States)'),
(39261, 32600, 'no_lang_code', 'name', 'IDELIX Software (Canada)'),
(39262, 32601, 'en', 'name', 'Korean Red Cross'),
(39263, 32602, 'no_lang_code', 'name', 'Process Instruments (United States)'),
(39264, 32603, 'en', 'name', 'Funding Authority for Studies and Projects'),
(39265, 32603, 'pt', 'name', 'Financiadora de Estudos e Projetos'),
(39266, 32604, 'no_lang_code', 'name', 'Sci-Tec (United States)'),
(39267, 32605, 'no_lang_code', 'name', 'Optical Sciences (United States)'),
(39268, 32606, 'en', 'name', 'Fight for Sight'),
(39269, 32607, 'en', 'name', 'Swedish House of Finance'),
(39270, 32608, 'sv', 'name', 'Norrkƶping Science Park'),
(39271, 32609, 'no_lang_code', 'name', 'San Diego Composites (United States)'),
(39272, 32610, 'no_lang_code', 'name', 'BroadReach Healthcare (South Africa)'),
(39273, 32611, 'en', 'name', 'Victorian Cancer Agency'),
(39274, 32612, 'es', 'name', 'Consejo Estatal de Ciencia, Tecnología e Innovación de Chihuahua'),
(39275, 32613, 'no_lang_code', 'name', 'Ethnographic Museum'),
(39276, 32614, 'it', 'name', 'Associazione Nazionale per l’Isolamento Termico e Acustico'),
(39277, 32615, 'en', 'name', 'Bali Psychiatric Center'),
(39278, 32616, 'en', 'name', 'British Columbia Blueberry Council'),
(39279, 32617, 'no_lang_code', 'name', 'Hstar Technologies (United States)'),
(39280, 32618, 'no_lang_code', 'name', 'Agile Systems (United States)'),
(39281, 32619, 'de', 'name', 'Institut für jüdische Geschichte Ɩsterreichs'),
(39282, 32619, 'en', 'name', 'Institute for Jewish History in Austria'),
(39283, 32620, 'en', 'name', 'South Carolina Vocational Rehabilitation Department'),
(39284, 32621, 'en', 'name', 'Cord Blood Center'),
(39285, 32622, 'no_lang_code', 'name', 'Eos Photonics (United States)'),
(39286, 32623, 'en', 'name', 'Chongqing Municipality Education Commission'),
(39287, 32624, 'en', 'name', 'European Association for Cancer Research'),
(39288, 32625, 'no_lang_code', 'name', 'Vecna Technologies (United States)'),
(39289, 32626, 'en', 'name', 'Pine Manor College'),
(39290, 32627, 'en', 'name', 'Ministry of Transport'),
(39291, 32628, 'no_lang_code', 'name', 'MediWiSe (United Kingdom)'),
(39292, 32629, 'es', 'name', 'Sociedad General de Aguas de Barcelona'),
(39293, 32629, 'no_lang_code', 'name', 'Agbar (Spain)'),
(39294, 32630, 'no_lang_code', 'name', 'Florida Turbine Technologies (United States)'),
(39295, 32631, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Switzerland)'),
(39296, 32632, 'en', 'name', 'Institute for Human Centered Design'),
(39297, 32633, 'no_lang_code', 'name', 'IQE (United States)'),
(39298, 32634, 'it', 'name', 'Consorzio Futuro in Ricerca'),
(39299, 32635, 'no_lang_code', 'name', 'Doberman (Sweden)'),
(39300, 32636, 'es', 'name', 'Instituto de Formación y Estudios Sociales'),
(39301, 32637, 'no_lang_code', 'name', 'Prototek (United States)'),
(39302, 32638, 'en', 'name', 'Mulier Institute'),
(39303, 32639, 'no_lang_code', 'name', 'Transmisie Engineering (Slovakia)'),
(39304, 32640, 'no_lang_code', 'name', 'Philips (Canada)'),
(39305, 32641, 'no_lang_code', 'name', 'Spectra Energy (Canada)'),
(39306, 32642, 'no_lang_code', 'name', 'Limes Audio (Sweden)'),
(39307, 32643, 'no_lang_code', 'name', 'Techsburg (United States)'),
(39308, 32644, 'en', 'name', 'Estonian Association for Applied Linguistics'),
(39309, 32645, 'no_lang_code', 'name', 'Rogers Communications (Canada)'),
(39310, 32646, 'no_lang_code', 'name', 'KortÔrs Könyvkiadói (Hungary)'),
(39311, 32647, 'en', 'name', 'Changshu No.1 People''s Hospital'),
(39312, 32648, 'en', 'name', 'Toccoa Falls College'),
(39313, 32649, 'en', 'name', 'Illinois Department of Commerce and Economic Opportunity'),
(39314, 32650, 'no_lang_code', 'name', 'KnowCharge (Canada)'),
(39315, 32651, 'en', 'name', 'Sea Turtle Conservancy'),
(39316, 32652, 'no_lang_code', 'name', 'Plasma Technology (United States)'),
(39317, 32653, 'en', 'name', 'Metropolitan University College'),
(39318, 32654, 'no_lang_code', 'name', 'Axiomatics (Sweden)'),
(39319, 32655, 'bs', 'name', 'Svjetski Univerzitetski Bosne i Hercegovine'),
(39320, 32656, 'en', 'name', 'Institute of Molecular Science and Technologies'),
(39321, 32656, 'it', 'name', 'Istituto di Scienze e Tecnologie Molecolari'),
(39322, 32657, 'no_lang_code', 'name', 'Enigmatics (United States)'),
(39323, 32658, 'en', 'name', 'Museum at Eldridge Street'),
(39324, 32659, 'no_lang_code', 'name', 'Solana Networks (Canada)'),
(39325, 32660, 'no_lang_code', 'name', 'Lamda Technology (Greece)'),
(39326, 32661, 'no_lang_code', 'name', 'Rugate Technologies (United States)'),
(39327, 32662, 'no_lang_code', 'name', 'Hewlett-Packard (Canada)'),
(39328, 32663, 'no_lang_code', 'name', 'Renegade Materials Corporation (United States)'),
(39329, 32664, 'en', 'name', 'Wolfson Foundation'),
(39330, 32665, 'en', 'name', 'Lister Institute of Preventive Medicine'),
(39331, 32666, 'en', 'name', 'Jiangsu Agricultural Science and Technology Innovation Fund'),
(39332, 32667, 'no_lang_code', 'name', 'Linearizer Technology (United States)'),
(39333, 32668, 'hu', 'name', 'OrszƔgos LelkipƔsztori IntƩzet'),
(39334, 32669, 'no_lang_code', 'name', 'Microelectronics Research Development (United States)'),
(39335, 32670, 'en', 'name', 'New Economic School'),
(39336, 32670, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń школа'),
(39337, 32671, 'en', 'name', 'Netherlands School of Public Administration'),
(39338, 32671, 'nl', 'name', 'Nederlandse School voor Openbaar Bestuur');
INSERT INTO `ror_settings` VALUES
(39339, 32672, 'en', 'name', 'TransCen'),
(39340, 32673, 'en', 'name', 'Oklahoma Department of Rehabilitation Services'),
(39341, 32674, 'no_lang_code', 'name', 'Datalan (Slovakia)'),
(39342, 32675, 'no_lang_code', 'name', 'Accel Brands (United States)'),
(39343, 32676, 'en', 'name', 'Washington State Department of Commerce'),
(39344, 32677, 'no_lang_code', 'name', 'Uson Marine (Sweden)'),
(39345, 32678, 'no_lang_code', 'name', 'SoHaR (United States)'),
(39346, 32679, 'no_lang_code', 'name', 'DB&A (United States)'),
(39347, 32680, 'no_lang_code', 'name', 'Clothworkers Company (United Kingdom)'),
(39348, 32681, 'no_lang_code', 'name', 'McAsphalt Industries (Canada)'),
(39349, 32682, 'no_lang_code', 'name', 'Vaxine (Australia)'),
(39350, 32683, 'no_lang_code', 'name', 'Jensen Hughes (United States)'),
(39351, 32684, 'no_lang_code', 'name', 'Scientific Systems (United States)'),
(39352, 32685, 'pt', 'name', 'Instituto de Pesquisas Jardim Botânico do Rio de Janeiro'),
(39353, 32686, 'no_lang_code', 'name', 'Hotswaps (Sweden)'),
(39354, 32687, 'en', 'name', 'Ministry of Energy, Northern Development and Mines'),
(39355, 32687, 'fr', 'name', 'MinistĆØre de l''Ɖnergie, du DĆ©veloppement du Nord et des Mines'),
(39356, 32688, 'no_lang_code', 'name', 'O/E Land (Canada)'),
(39357, 32689, 'en', 'name', 'Missouri Department of Labor and Industrial Relations'),
(39358, 32690, 'en', 'name', 'Norfolk and Suffolk NHS Foundation Trust'),
(39359, 32691, 'no_lang_code', 'name', 'Applied Spectra (United States)'),
(39360, 32692, 'no_lang_code', 'name', 'Alkit Communications (Sweden)'),
(39361, 32693, 'sv', 'name', 'ƖvertorneĆ„ Municipality'),
(39362, 32694, 'no_lang_code', 'name', 'Veloxiti (United States)'),
(39363, 32695, 'en', 'name', 'National Chung Shan Institute of Science and Technology'),
(39364, 32696, 'en', 'name', 'Institute of Space and Astronautical Science'),
(39365, 32696, 'ja', 'name', '宇宙科学研究所'),
(39366, 32697, 'no_lang_code', 'name', 'Wattguard (Sweden)'),
(39367, 32698, 'no_lang_code', 'name', 'Trout Green Technologies (United States)'),
(39368, 32699, 'en', 'name', 'Sixth Hospital of Changchun City'),
(39369, 32700, 'no_lang_code', 'name', 'Dolphin Computer Access (United Kingdom)'),
(39370, 32701, 'en', 'name', 'Holstein Association of Canada'),
(39371, 32702, 'no_lang_code', 'name', 'Coskata (United States)'),
(39372, 32703, 'en', 'name', 'Wine Council of Ontario'),
(39373, 32704, 'no_lang_code', 'name', 'Ngenic (Sweden)'),
(39374, 32705, 'no_lang_code', 'name', 'VIP Sensors (United States)'),
(39375, 32706, 'no_lang_code', 'name', 'Clinical Laserthermia Systems (Sweden)'),
(39376, 32707, 'no_lang_code', 'name', 'Visita Service (Sweden)'),
(39377, 32708, 'no_lang_code', 'name', 'Fair Isaac Corporation (United States)'),
(39378, 32709, 'en', 'name', 'Orangutan Information Centre'),
(39379, 32710, 'en', 'name', 'Housing and Building National Research Center'),
(39380, 32711, 'en', 'name', 'Voeikov Main Geophysical Observatory'),
(39381, 32711, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š“Š»Š°Š²Š½Š°Ń Š³ŠµŠ¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. А.И.Воейкова'),
(39382, 32712, 'en', 'name', 'Orthopaedic Research'),
(39383, 32713, 'no_lang_code', 'name', 'Utility Development (United States)'),
(39384, 32714, 'no_lang_code', 'name', 'J. D. Irving (Canada)'),
(39385, 32715, 'no_lang_code', 'name', 'Advanced Technologies Group (United States)'),
(39386, 32716, 'no_lang_code', 'name', 'Icellate (Sweden)'),
(39387, 32717, 'en', 'name', 'National Service for Industrial Training'),
(39388, 32717, 'pt', 'name', 'ServiƧo Nacional de Aprendizagem Industrial'),
(39389, 32718, 'no_lang_code', 'name', 'Lumerical Solutions (Canada)'),
(39390, 32719, 'en', 'name', 'National Metrology Centre'),
(39391, 32720, 'en', 'name', 'Wisconsin Sea Grant'),
(39392, 32721, 'nl', 'name', 'CINOP'),
(39393, 32722, 'no_lang_code', 'name', 'Measurement Technology Northwest (United States)'),
(39394, 32723, 'en', 'name', 'Beth Johnson Foundation'),
(39395, 32724, 'no_lang_code', 'name', 'Dynamic Systems & Research (United States)'),
(39396, 32725, 'no_lang_code', 'name', 'TTC Technologies (United States)'),
(39397, 32726, 'en', 'name', 'National Research Council'),
(39398, 32727, 'en', 'name', 'Second Affiliated Hospital of Shantou University Medical College'),
(39399, 32728, 'no_lang_code', 'name', 'Atac (United States)'),
(39400, 32729, 'en', 'name', 'United States Equal Employment Opportunity Commission'),
(39401, 32729, 'es', 'name', 'Comisión para la Igualdad de Oportunidades en el Empleo de los Estados Unidos'),
(39402, 32730, 'en', 'name', 'John Templeton Foundation'),
(39403, 32731, 'en', 'name', 'Swedish Incubators & Science Parks'),
(39404, 32732, 'en', 'name', 'China Association for Science and Technology'),
(39405, 32733, 'en', 'name', 'Institute for Learning and Development'),
(39406, 32734, 'no_lang_code', 'name', 'Robotic Research (United States)'),
(39407, 32735, 'de', 'name', 'Deutsche Leberstiftung'),
(39408, 32735, 'en', 'name', 'German Liver Foundation'),
(39409, 32736, 'no_lang_code', 'name', 'Bohemia Interactive Simulations (United States)'),
(39410, 32737, 'no_lang_code', 'name', 'Modern Technology Solutions (United States)'),
(39411, 32738, 'no_lang_code', 'name', 'Perfekt (Slovakia)'),
(39412, 32739, 'en', 'name', 'Queensland Museum'),
(39413, 32740, 'en', 'name', 'Hague Institute for Global Justice'),
(39414, 32741, 'en', 'name', 'Institute for Nuclear Science and Technology'),
(39415, 32741, 'vi', 'name', 'VIỆN KHOA HỌC Vƀ KỸ THUįŗ¬T Hįŗ T NHƂN'),
(39416, 32742, 'en', 'name', 'Swedish Maritime Technology Forum'),
(39417, 32743, 'no_lang_code', 'name', 'Solinst (Canada)'),
(39418, 32744, 'en', 'name', 'Canadian Sheet Steel Building Institute'),
(39419, 32745, 'en', 'name', 'Dutch Cancer Society'),
(39420, 32745, 'nl', 'name', 'KWF Kankerbestrijding'),
(39421, 32746, 'en', 'name', 'Sherman College of Chiropractic'),
(39422, 32747, 'en', 'name', 'Royal Air Force Museum'),
(39423, 32748, 'no_lang_code', 'name', 'Inwido (Sweden)'),
(39424, 32749, 'sv', 'name', 'AffƤrsutveckling fƶr BesƶksnƤringen'),
(39425, 32750, 'en', 'name', 'Manitoba Aerospace Association'),
(39426, 32751, 'no_lang_code', 'name', 'Cereal Research (Hungary)'),
(39427, 32752, 'en', 'name', 'Ministry of Education'),
(39428, 32753, 'en', 'name', 'Secretariat of Environment and Natural Resources'),
(39429, 32753, 'es', 'name', 'SecretarĆ­a del Medio Ambiente y Recursos Naturales'),
(39430, 32754, 'en', 'name', 'San Francisco Art Institute'),
(39431, 32755, 'en', 'name', 'Cambridge College'),
(39432, 32756, 'no_lang_code', 'name', 'General Hospital Asklepieio Voulas'),
(39433, 32757, 'en', 'name', 'Building and Construction Authority'),
(39434, 32758, 'ro', 'name', 'Spitalul Clinic Judetean de Urgentã Craiova'),
(39435, 32759, 'en', 'name', 'Vienna Wiesenthal Institute for Holocaust Studies'),
(39436, 32760, 'en', 'name', 'Ministry of Strategy and Finance'),
(39437, 32760, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ źø°ķšģž¬ģ •ė¶€'),
(39438, 32761, 'no_lang_code', 'name', 'Abera Bioscience (Sweden)'),
(39439, 32762, 'en', 'name', 'Fuel Cells and Hydrogen'),
(39440, 32763, 'en', 'name', 'Cogswell Polytechnical College'),
(39441, 32764, 'en', 'name', 'Legacy Heritage Fund'),
(39442, 32765, 'en', 'name', 'The Liverpool Institute for Performing Arts'),
(39443, 32766, 'fr', 'name', 'Nouvelles Cliniques Nantaises'),
(39444, 32767, 'en', 'name', 'Taiwan Livestock Research Institute'),
(39445, 32767, 'zh', 'name', 'ē•œē”¢č©¦é©—ę‰€'),
(39446, 32768, 'en', 'name', 'Beijing Municipal Health Bureau'),
(39447, 32769, 'en', 'name', 'FilmOntario'),
(39448, 32770, 'no_lang_code', 'name', 'Full Spectrum Technologies (United States)'),
(39449, 32771, 'da', 'name', 'Hjerteforeningen'),
(39450, 32772, 'no_lang_code', 'name', 'Constellation Brands (Canada)'),
(39451, 32773, 'en', 'name', 'Royal Tyrrell Museum'),
(39452, 32774, 'en', 'name', 'Healthwise'),
(39453, 32775, 'no_lang_code', 'name', 'Corline Systems (Sweden)'),
(39454, 32776, 'no_lang_code', 'name', 'Flow Control Industries (United States)'),
(39455, 32777, 'en', 'name', 'UK-India Education and Research Initiative'),
(39456, 32778, 'en', 'name', 'West Virginia Department of Transportation'),
(39457, 32778, 'es', 'name', 'Departamento de Transporte de Virginia Occidental'),
(39458, 32778, 'fr', 'name', 'DƩpartement des transports de la virginie-occidentale'),
(39459, 32779, 'no_lang_code', 'name', 'Kerr Wood Leidal Associates (Canada)'),
(39460, 32780, 'en', 'name', 'Fulbright Commission'),
(39461, 32781, 'no_lang_code', 'name', 'Test Devices (United States)'),
(39462, 32782, 'en', 'name', 'Slovak Research and Development Agency'),
(39463, 32783, 'en', 'name', 'Carroll Shelby Foundation'),
(39464, 32784, 'no_lang_code', 'name', 'FlexEl (United States)'),
(39465, 32785, 'no_lang_code', 'name', 'Nuvotronics (United States)'),
(39466, 32786, 'en', 'name', 'Pathological Society'),
(39467, 32787, 'no_lang_code', 'name', 'Recorded Future (Sweden)'),
(39468, 32788, 'no_lang_code', 'name', 'Stone Mountain Technologies (United States)'),
(39469, 32789, 'no_lang_code', 'name', 'CEIT Consulting (Slovakia)'),
(39470, 32790, 'no_lang_code', 'name', 'PreTalen (United States)'),
(39471, 32791, 'no_lang_code', 'name', 'Karagozian & Case (United States)'),
(39472, 32792, 'no_lang_code', 'name', 'PAT Industries (United States)'),
(39473, 32793, 'no_lang_code', 'name', 'Sherritt (Canada)'),
(39474, 32794, 'no_lang_code', 'name', 'MYMIC (United States)'),
(39475, 32795, 'no', 'name', 'Norlandia'),
(39476, 32796, 'no_lang_code', 'name', 'Exibea (Sweden)'),
(39477, 32797, 'en', 'name', 'Irish Cancer Society'),
(39478, 32798, 'no_lang_code', 'name', 'SenseGraphics (Sweden)'),
(39479, 32799, 'no_lang_code', 'name', 'Thalion (Slovakia)'),
(39480, 32800, 'no_lang_code', 'name', 'Triton Systems (United States)'),
(39481, 32801, 'no_lang_code', 'name', '5-D Systems (United States)'),
(39482, 32802, 'no_lang_code', 'name', 'Aerocrine (Sweden)'),
(39483, 32803, 'en', 'name', 'Hartwell Foundation'),
(39484, 32804, 'no_lang_code', 'name', 'MaXentric Technologies (United States)'),
(39485, 32805, 'en', 'name', 'Department of Health Services'),
(39486, 32806, 'no_lang_code', 'name', 'Fabris (Canada)'),
(39487, 32807, 'sv', 'name', 'Stiftelsen Marknadstekniskt Centrum'),
(39488, 32808, 'en', 'name', 'Thomas Cole Historic House'),
(39489, 32809, 'no_lang_code', 'name', 'Sytronics (United States)'),
(39490, 32810, 'no_lang_code', 'name', 'ReformTech (Sweden)'),
(39491, 32811, 'en', 'name', 'National League of Cities'),
(39492, 32812, 'no_lang_code', 'name', 'Essential Research (United States)'),
(39493, 32813, 'en', 'name', 'Partnership for Advanced Computing in Europe'),
(39494, 32814, 'no_lang_code', 'name', 'CAE Solutions (United States)'),
(39495, 32815, 'en', 'name', 'Retina Vitreous Associates Medical Group'),
(39496, 32816, 'no_lang_code', 'name', 'Spiritech Advanced Products (United States)'),
(39497, 32817, 'en', 'name', 'Maine CITE Coordinating Center'),
(39498, 32818, 'no_lang_code', 'name', 'Millar Western (Canada)'),
(39499, 32819, 'no_lang_code', 'name', 'Niowave (United States)'),
(39500, 32820, 'no_lang_code', 'name', 'FumoPrep (Hungary)'),
(39501, 32821, 'no_lang_code', 'name', 'Center For Innovative Food Technology (United States)'),
(39502, 32822, 'en', 'name', 'Qatar Cardiovascular Research Center'),
(39503, 32823, 'en', 'name', 'Shanghai East Hospital'),
(39504, 32824, 'no_lang_code', 'name', 'Inkubatorn i BorƄs (Sweden)'),
(39505, 32825, 'no_lang_code', 'name', 'Applied EM (United States)'),
(39506, 32826, 'no_lang_code', 'name', 'CoreCode International (Sweden)'),
(39507, 32827, 'no_lang_code', 'name', 'Accelogic (United States)'),
(39508, 32828, 'en', 'name', 'National Consortium for Zoonosis Research'),
(39509, 32829, 'no_lang_code', 'name', 'Nalas Engineering Services (United States)'),
(39510, 32830, 'en', 'name', 'St Xavier’s College'),
(39511, 32831, 'no_lang_code', 'name', 'Inovati (United States)'),
(39512, 32832, 'no_lang_code', 'name', 'Summit Power Group (United States)'),
(39513, 32833, 'en', 'name', 'International Trachoma Initiative'),
(39514, 32834, 'no_lang_code', 'name', 'Cellular Materials International (United States)'),
(39515, 32835, 'en', 'name', 'Gibraltar Museum'),
(39516, 32836, 'no_lang_code', 'name', 'Invicro (United States)'),
(39517, 32837, 'no_lang_code', 'name', 'Safran (United States)'),
(39518, 32838, 'no_lang_code', 'name', 'Sigma Labs (United States)'),
(39519, 32839, 'en', 'name', 'National Heart Foundation of Australia'),
(39520, 32840, 'no_lang_code', 'name', 'QuantaSpec (United States)'),
(39521, 32841, 'no_lang_code', 'name', 'Pingtung Hospital'),
(39522, 32842, 'no_lang_code', 'name', 'Qintec (Slovakia)'),
(39523, 32843, 'en', 'name', 'Korea Research Council for Industrial Science and Technology'),
(39524, 32844, 'en', 'name', 'Sierra Nevada College'),
(39525, 32845, 'no_lang_code', 'name', 'Dynapower (United States)'),
(39526, 32846, 'no_lang_code', 'name', 'Rotite Technologies (United Kingdom)'),
(39527, 32847, 'no_lang_code', 'name', 'RGS Associates (United States)'),
(39528, 32848, 'no_lang_code', 'name', 'Biovica (Sweden)'),
(39529, 32849, 'en', 'name', 'Clinton Foundation'),
(39530, 32850, 'en', 'name', 'Ichthus College'),
(39531, 32851, 'de', 'name', 'Institut für Hochenergiephysik'),
(39532, 32851, 'en', 'name', 'Institute of High Energy Physics'),
(39533, 32852, 'no_lang_code', 'name', 'Ventana Research Corporation (United States)'),
(39534, 32853, 'no_lang_code', 'name', 'Optellios (United States)'),
(39535, 32854, 'no_lang_code', 'name', 'OmegaWare (United States)'),
(39536, 32855, 'en', 'name', 'Lublin Oncology Center'),
(39537, 32856, 'no_lang_code', 'name', 'Virtual EM (United States)'),
(39538, 32857, 'no_lang_code', 'name', 'Optimal Synthesis (United States)'),
(39539, 32858, 'nl', 'name', 'Stichting Cultureel Erfgoed Zeeland'),
(39540, 32859, 'en', 'name', 'Kingsborough Community College'),
(39541, 32860, 'en', 'name', 'Society of Hospital Pharmacists of Australia'),
(39542, 32861, 'no_lang_code', 'name', 'Technology for Energy Corporation (United States)'),
(39543, 32862, 'no_lang_code', 'name', 'Syntronic (Sweden)'),
(39544, 32863, 'no_lang_code', 'name', 'Minerva Systems & Technologies (United States)'),
(39545, 32864, 'no_lang_code', 'name', 'DNA Solutions (United States)'),
(39546, 32865, 'no_lang_code', 'name', 'GeoModel Solar (Slovakia)'),
(39547, 32866, 'en', 'name', 'Sihanouk Hospital Center of HOPE'),
(39548, 32867, 'en', 'name', 'Future Position X'),
(39549, 32868, 'no_lang_code', 'name', 'Toyon (United States)'),
(39550, 32869, 'en', 'name', 'Japan Science Society'),
(39551, 32870, 'en', 'name', 'New Brunswick Theological Seminary'),
(39552, 32871, 'no_lang_code', 'name', 'Smart Skin (Canada)'),
(39553, 32872, 'de', 'name', 'Gemeinnützige Hertie-Stiftung'),
(39554, 32872, 'en', 'name', 'Hertie Foundation'),
(39555, 32873, 'en', 'name', 'Stem Cells Australia'),
(39556, 32874, 'en', 'name', 'Second Affiliated Hospital of Xi''an Jiaotong University'),
(39557, 32875, 'no_lang_code', 'name', 'Mecdon (Sweden)'),
(39558, 32876, 'en', 'name', 'Saskatchewan Pork Development Board'),
(39559, 32877, 'en', 'name', 'Eli and Edythe Broad Foundation'),
(39560, 32878, 'hu', 'name', 'Budapest City Archives'),
(39561, 32879, 'en', 'name', 'Energy Institute Hrvoje Požar'),
(39562, 32880, 'no_lang_code', 'name', 'Vicon (United States)'),
(39563, 32881, 'en', 'name', 'New York Institute of Art and Design'),
(39564, 32882, 'no_lang_code', 'name', 'Baker Engineering (United States)'),
(39565, 32883, 'en', 'name', 'Cancer Council Tasmania'),
(39566, 32884, 'fr', 'name', 'Conseil RƩgional d''Auvergne'),
(39567, 32885, 'no_lang_code', 'name', 'Space Micro (United States)'),
(39568, 32886, 'no_lang_code', 'name', 'Quantum Dimension (United States)'),
(39569, 32887, 'no_lang_code', 'name', 'Kennametal (United States)'),
(39570, 32888, 'en', 'name', 'Alzheimer Society of Canada'),
(39571, 32888, 'fr', 'name', 'SociƩtƩ Alzheimer du Canada'),
(39572, 32889, 'en', 'name', 'Ministry of Foreign Affairs'),
(39573, 32889, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ 외교부'),
(39574, 32890, 'en', 'name', 'Centre of the Region HanĆ” for Biotechnical and Agricultural Research'),
(39575, 32891, 'en', 'name', 'Research School for Medieval Studies'),
(39576, 32892, 'no_lang_code', 'name', 'Boeing (Canada)'),
(39577, 32893, 'en', 'name', 'Public Works and Government Services Canada'),
(39578, 32893, 'fr', 'name', 'Travaux publics et Services gouvernementaux Canada'),
(39579, 32894, 'no_lang_code', 'name', 'UAV Turbines (United States)'),
(39580, 32895, 'no_lang_code', 'name', 'Bakomi'),
(39581, 32896, 'de', 'name', 'VolkswagenStiftung'),
(39582, 32896, 'en', 'name', 'Volkswagen Foundation'),
(39583, 32897, 'no_lang_code', 'name', 'Yantaishan Hospital'),
(39584, 32897, 'zh', 'name', 'ēƒŸå°å±±åŒ»é™¢'),
(39585, 32898, 'no_lang_code', 'name', 'MWT Materials (United States)'),
(39586, 32899, 'no_lang_code', 'name', 'Sedna Digital Solutions (United States)'),
(39587, 32900, 'hu', 'name', 'RÔday Gyűjtemény'),
(39588, 32901, 'no_lang_code', 'name', 'Enmesh (Sweden)'),
(39589, 32902, 'no_lang_code', 'name', 'Sigma Tau (Italy)'),
(39590, 32903, 'no_lang_code', 'name', 'Infobric (Sweden)'),
(39591, 32904, 'en', 'name', 'Cambodia National Malaria Center'),
(39592, 32905, 'no_lang_code', 'name', 'OFS (United States)'),
(39593, 32906, 'no_lang_code', 'name', 'MRT System (Sweden)'),
(39594, 32907, 'no_lang_code', 'name', 'BioLamina (Sweden)'),
(39595, 32908, 'no_lang_code', 'name', 'STAR-H (United States)'),
(39596, 32909, 'en', 'name', 'Israel Academy of Sciences and Humanities'),
(39597, 32909, 'he', 'name', 'האקדמיה ×”×œ××•×ž×™×Ŗ ×”×™×©×Ø××œ×™×Ŗ למדעים'),
(39598, 32910, 'en', 'name', 'Federation of European Aquaculture Producers'),
(39599, 32911, 'no_lang_code', 'name', 'CadScan (United Kingdom)'),
(39600, 32912, 'no_lang_code', 'name', 'KCF Technologies (United States)'),
(39601, 32913, 'no_lang_code', 'name', 'Mach I (United States)'),
(39602, 32914, 'it', 'name', 'Fondazione Cassa di Risparmio di Modena'),
(39603, 32915, 'no_lang_code', 'name', 'Semerane (United States)'),
(39604, 32916, 'en', 'name', 'Fiber Optic Valley'),
(39605, 32917, 'en', 'name', 'Roche Organ Transplantation Research Foundation'),
(39606, 32918, 'no_lang_code', 'name', 'CDM Smith (United States)'),
(39607, 32919, 'en', 'name', 'State Key Joint Laboratory of Environment Simulation and Pollution Control'),
(39608, 32920, 'en', 'name', 'Affiliated Hospital of Guilin Medical College'),
(39609, 32921, 'no_lang_code', 'name', 'BehavioSec (Sweden)'),
(39610, 32922, 'en', 'name', 'Danish Science Factory'),
(39611, 32923, 'en', 'name', 'National Research Foundation'),
(39612, 32924, 'en', 'name', 'Michigan Jewish Institute'),
(39613, 32925, 'en', 'name', 'BrightFocus Foundation'),
(39614, 32926, 'no_lang_code', 'name', 'Fluidic Energy (United States)'),
(39615, 32927, 'en', 'name', 'Grid Protection Alliance'),
(39616, 32928, 'en', 'name', 'Zoos Victoria'),
(39617, 32929, 'fr', 'name', 'ITESCIA'),
(39618, 32930, 'en', 'name', 'Christendom College'),
(39619, 32931, 'ja', 'name', 'ćƒć‚Ŗć‚±ćƒŸć‚¢'),
(39620, 32931, 'no_lang_code', 'name', 'NeoChemir (Japan)'),
(39621, 32932, 'no_lang_code', 'name', 'Oatly (Sweden)'),
(39622, 32933, 'no_lang_code', 'name', 'Optical Sciences Company (United States)'),
(39623, 32934, 'en', 'name', 'American Association of Orthodontists'),
(39624, 32935, 'no_lang_code', 'name', 'Skinfrared (United States)'),
(39625, 32936, 'no_lang_code', 'name', 'Contango Strategies (Canada)'),
(39626, 32937, 'no_lang_code', 'name', 'Commonwealth Plywood (Canada)'),
(39627, 32938, 'en', 'name', 'Andover College'),
(39628, 32939, 'en', 'name', 'Mercy College of Health Sciences'),
(39629, 32940, 'no_lang_code', 'name', 'Analatom (United States)'),
(39630, 32941, 'en', 'name', 'Mwanza Intervention Trials Unit'),
(39631, 32942, 'ko', 'name', 'ė…øė°”ģ…€ķ…Œķ¬ė†€ė”œģ§€'),
(39632, 32942, 'no_lang_code', 'name', 'NovaCell Technology (South Korea)'),
(39633, 32943, 'en', 'name', 'Minnesota Department of Employment and Economic Development'),
(39634, 32944, 'en', 'name', 'Supreme Commission for Tourism and Antiquities'),
(39635, 32945, 'en', 'name', 'James S. McDonnell Foundation'),
(39636, 32946, 'en', 'name', 'Raptor Protection of Slovakia'),
(39637, 32947, 'no_lang_code', 'name', 'Eriez (United States)'),
(39638, 32948, 'no_lang_code', 'name', 'NumerEx (United States)'),
(39639, 32949, 'no_lang_code', 'name', 'Critical Technologies (United States)'),
(39640, 32950, 'no_lang_code', 'name', 'Elcom (Slovakia)'),
(39641, 32951, 'no_lang_code', 'name', 'Heat Trace (United Kingdom)'),
(39642, 32952, 'no_lang_code', 'name', 'Cogenra Solar (United States)'),
(39643, 32953, 'no_lang_code', 'name', 'CybAero (Sweden)'),
(39644, 32954, 'fr', 'name', 'Produits Chimiques Magnus'),
(39645, 32954, 'no_lang_code', 'name', 'Magnus Chemicals (Canada)'),
(39646, 32955, 'no_lang_code', 'name', 'Avigilon (United States)'),
(39647, 32956, 'no_lang_code', 'name', 'XCounter (Sweden)'),
(39648, 32957, 'no_lang_code', 'name', 'Akela (United States)'),
(39649, 32958, 'no_lang_code', 'name', 'C3I (United States)'),
(39650, 32959, 'en', 'name', 'Suzhou Research Institute'),
(39651, 32960, 'en', 'name', 'Museum of Applied Arts'),
(39652, 32961, 'en', 'name', 'Office of Under Secretary of Energy for Science'),
(39653, 32962, 'no_lang_code', 'name', 'KPC Group (Netherlands)'),
(39654, 32963, 'no_lang_code', 'name', 'Airwatergreen (Sweden)'),
(39655, 32964, 'es', 'name', 'Agencia Nacional de Investigación e Innovación'),
(39656, 32965, 'no_lang_code', 'name', 'ReTreck (Sweden)'),
(39657, 32966, 'en', 'name', 'Diabetes Foundation'),
(39658, 32967, 'en', 'name', 'Public Health Agency'),
(39659, 32968, 'en', 'name', 'Camden and Islington NHS Foundation Trust'),
(39660, 32969, 'no_lang_code', 'name', 'Acumentrics (United States)'),
(39661, 32970, 'no_lang_code', 'name', 'Apollo Enterprise Solutions (United States)'),
(39662, 32971, 'no_lang_code', 'name', 'Microwave Bonding Instruments (United States)'),
(39663, 32972, 'en', 'name', 'Esperantic Studies Foundation'),
(39664, 32973, 'no_lang_code', 'name', 'FiberTech Optica (Canada)'),
(39665, 32974, 'no_lang_code', 'name', 'Dairy Innovation Australia (Australia)'),
(39666, 32975, 'no_lang_code', 'name', 'Maryland Aerospace (United States)'),
(39667, 32976, 'no_lang_code', 'name', 'Veritune (United States)'),
(39668, 32977, 'en', 'name', 'Delfos Hospital'),
(39669, 32978, 'no_lang_code', 'name', 'VCORE Solutions (United States)'),
(39670, 32979, 'en', 'name', 'Bluefield State College'),
(39671, 32980, 'es', 'name', 'Consejo de Ciencia y TecnologĆ­a del Estado de Tabasco'),
(39672, 32981, 'no_lang_code', 'name', 'Vesta Sciences (United States)'),
(39673, 32982, 'en', 'name', 'School Nutrition Association'),
(39674, 32983, 'no_lang_code', 'name', 'Metamaterial Technologies (Canada)'),
(39675, 32984, 'no_lang_code', 'name', 'Vusapl (Slovakia)'),
(39676, 32985, 'en', 'name', 'Rasmussen College'),
(39677, 32986, 'en', 'name', 'NIHR Nottingham Hearing Biomedical Research Unit'),
(39678, 32987, 'en', 'name', 'Initiative for Automotive Manufacturing Innovation'),
(39679, 32988, 'en', 'name', 'Sensory Access Foundation'),
(39680, 32989, 'en', 'name', 'Beef Cattle Research Council'),
(39681, 32990, 'en', 'name', 'Skolkovo Institute of Science and Technology'),
(39682, 32990, 'ru', 'name', 'Дколковский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ науки Šø технологий'),
(39683, 32991, 'en', 'name', 'Vasculitis Foundation'),
(39684, 32992, 'no_lang_code', 'name', 'PR & Company (United States)'),
(39685, 32993, 'en', 'name', 'Transport Accident Commission'),
(39686, 32994, 'de', 'name', 'Ɩsterreichisches Staatsarchiv'),
(39687, 32994, 'en', 'name', 'Austrian State Archives'),
(39688, 32995, 'no_lang_code', 'name', 'Low Vision International (Sweden)'),
(39689, 32996, 'en', 'name', 'Graham Foundation'),
(39690, 32997, 'no_lang_code', 'name', '3D Technology Laboratories (United States)'),
(39691, 32998, 'no_lang_code', 'name', 'Mate (Slovakia)'),
(39692, 32999, 'no_lang_code', 'name', 'Ariterm (Sweden)'),
(39693, 33000, 'en', 'name', 'LuleƄ Municipality'),
(39694, 33001, 'no_lang_code', 'name', 'PresenceLearning (United States)'),
(39695, 33002, 'no_lang_code', 'name', 'Aldevron (United States)'),
(39696, 33003, 'no_lang_code', 'name', 'Starmonde Publishing Group'),
(39697, 33004, 'no_lang_code', 'name', 'Ammono (Poland)'),
(39698, 33005, 'no_lang_code', 'name', 'Newton Energy Group (United States)'),
(39699, 33006, 'no_lang_code', 'name', 'AltheaDx (United States)'),
(39700, 33007, 'no_lang_code', 'name', 'Applied Technologies (United States)'),
(39701, 33008, 'en', 'name', 'The Jane Goodall Institute'),
(39702, 33009, 'no_lang_code', 'name', 'Cegteszt (Hungary)'),
(39703, 33010, 'no_lang_code', 'name', 'Radiant Research (United States)'),
(39704, 33011, 'en', 'name', 'Green Technology Center'),
(39705, 33012, 'no_lang_code', 'name', 'NAL Research (United States)'),
(39706, 33013, 'no_lang_code', 'name', 'RCT Systems (United States)'),
(39707, 33014, 'no_lang_code', 'name', 'Premune (Sweden)'),
(39708, 33015, 'en', 'name', 'Council for Learning Disabilities'),
(39709, 33016, 'hu', 'name', 'Vermes Miklós OrszÔgos Fizikus TehetségÔpoló és Kutató AlapítvÔny'),
(39710, 33017, 'no_lang_code', 'name', 'Amica Science Eeig (United Kingdom)'),
(39711, 33018, 'no_lang_code', 'name', 'Galois (United States)'),
(39712, 33019, 'en', 'name', 'Mount Aloysius College'),
(39713, 33020, 'no_lang_code', 'name', 'Artium Technologies (United States)'),
(39714, 33021, 'no_lang_code', 'name', 'CF Technologies (United States)'),
(39715, 33022, 'no_lang_code', 'name', 'Decision Sciences (United States)'),
(39716, 33023, 'en', 'name', 'Calmette Hospital'),
(39717, 33023, 'fr', 'name', 'HƓpital calmette'),
(39718, 33024, 'en', 'name', 'American Water Works Association'),
(39719, 33025, 'no_lang_code', 'name', 'Sappasithiprasong Hospital'),
(39720, 33026, 'en', 'name', 'Genome British Columbia'),
(39721, 33027, 'no_lang_code', 'name', 'DSPlogic (United States)'),
(39722, 33028, 'no_lang_code', 'name', 'Premium Brands Holdings (Canada)'),
(39723, 33029, 'no_lang_code', 'name', 'Rolls-Royce (United States)'),
(39724, 33030, 'en', 'name', 'Dutch Language Union'),
(39725, 33030, 'nl', 'name', 'Nederlandse Taalunie'),
(39726, 33031, 'sv', 'name', 'Fƶrbundet Unga Forskare'),
(39727, 33032, 'en', 'name', 'Alabama Commission on Higher Education'),
(39728, 33033, 'no_lang_code', 'name', 'Film Odyssey (United States)'),
(39729, 33034, 'en', 'name', 'Model Animal Research Center'),
(39730, 33035, 'no_lang_code', 'name', 'Nuvera Biosciences (United States)'),
(39731, 33036, 'no_lang_code', 'name', 'Curtiss-Wright (United States)'),
(39732, 33037, 'fr', 'name', 'Bouthillette Parizeau'),
(39733, 33038, 'no_lang_code', 'name', 'Virginia Diodes (United States)'),
(39734, 33039, 'no_lang_code', 'name', 'Silicon Designs (United States)'),
(39735, 33040, 'no_lang_code', 'name', 'Kalesnikoff Lumber (Canada)'),
(39736, 33041, 'en', 'name', 'Arkansas Space Grant Consortium'),
(39737, 33042, 'no_lang_code', 'name', 'China Southern Power Grid (China)'),
(39738, 33043, 'no_lang_code', 'name', 'IPM Engineering (Slovakia)'),
(39739, 33044, 'no_lang_code', 'name', 'Ormond (United States)'),
(39740, 33045, 'en', 'name', 'Center for Ecoliteracy'),
(39741, 33046, 'no_lang_code', 'name', 'Materium Innovations (Canada)'),
(39742, 33047, 'no_lang_code', 'name', 'Agnik (United States)'),
(39743, 33048, 'no_lang_code', 'name', 'VIStology (United States)'),
(39744, 33049, 'no_lang_code', 'name', 'Metal Oxide Technologies (United States)'),
(39745, 33050, 'no_lang_code', 'name', 'Oerlikon (United Kingdom)'),
(39746, 33051, 'sv', 'name', 'ƅke Wibergs Stiftelse'),
(39747, 33052, 'no_lang_code', 'name', 'Sigma³ (United States)'),
(39748, 33053, 'no_lang_code', 'name', 'Argtec (United States)'),
(39749, 33054, 'no_lang_code', 'name', 'Airec (Sweden)'),
(39750, 33055, 'no_lang_code', 'name', 'BHP (Canada)'),
(39751, 33056, 'en', 'name', 'Institute for the Study of Education and Human Development'),
(39752, 33057, 'en', 'name', 'Lundbeck Foundation'),
(39753, 33058, 'no_lang_code', 'name', 'Symvionics (United States)'),
(39754, 33059, 'en', 'name', 'Jinan Stomatological Hospital'),
(39755, 33059, 'zh', 'name', 'ęµŽå—åø‚å£č…”åŒ»é™¢'),
(39756, 33060, 'no_lang_code', 'name', 'Advanced Oxygen Technologies (United States)'),
(39757, 33061, 'en', 'name', 'Alberta Farm Animal Care Association'),
(39758, 33062, 'en', 'name', 'Jiangxi Mental Health Center'),
(39759, 33063, 'no_lang_code', 'name', 'Qualtech Systems Incorporation (United States)'),
(39760, 33064, 'no_lang_code', 'name', 'Aqua-Q (Sweden)'),
(39761, 33065, 'no_lang_code', 'name', 'Physics, Materials and Applied Mathematics Research (United States)'),
(39762, 33066, 'no_lang_code', 'name', 'SciTec (United States)'),
(39763, 33067, 'no_lang_code', 'name', 'Munktell Science Park (Sweden)'),
(39764, 33068, 'en', 'name', 'Montreal Biodome'),
(39765, 33068, 'fr', 'name', 'BiodƓme de MontrƩal'),
(39766, 33069, 'no_lang_code', 'name', 'Left Hand Design (United States)'),
(39767, 33070, 'no_lang_code', 'name', 'Exide Technologies (United States)'),
(39768, 33071, 'no_lang_code', 'name', 'Fortis Flt. Lt. Rajan Dhall Hospital'),
(39769, 33072, 'no_lang_code', 'name', 're8 Bioplastics (Sweden)'),
(39770, 33073, 'hu', 'name', 'Informatikai, TƔvkƶzlƩsi Ʃs Elektronikai VƔllalkozƔsok SzƶvetsƩge'),
(39771, 33074, 'en', 'name', 'Health Promotion Agency'),
(39772, 33075, 'no_lang_code', 'name', 'Electrical Distribution Design (United States)'),
(39773, 33076, 'en', 'name', 'Mission to Save the Helpless'),
(39774, 33077, 'no_lang_code', 'name', 'Pressure BioSciences (United States)'),
(39775, 33078, 'no_lang_code', 'name', 'Xperi (United States)'),
(39776, 33079, 'en', 'name', 'Atlantic Canada Opportunities Agency'),
(39777, 33079, 'fr', 'name', 'Agence de promotion Ʃconomique du Canada atlantique'),
(39778, 33080, 'no_lang_code', 'name', 'IDEX Corporation (United States)'),
(39779, 33081, 'en', 'name', 'Australian College of Nursing'),
(39780, 33082, 'no_lang_code', 'name', 'Fulcrum Corporation (United States)'),
(39781, 33083, 'no_lang_code', 'name', 'Saplo (Sweden)'),
(39782, 33084, 'en', 'name', 'Biomathematics and Statistics Scotland'),
(39783, 33085, 'en', 'name', 'Institute for Financial Research'),
(39784, 33086, 'en', 'name', 'American Physical Therapy Association'),
(39785, 33087, 'no_lang_code', 'name', 'Energetic Materials and Products Incorporation (United States)'),
(39786, 33088, 'no_lang_code', 'name', 'Googol (Sweden)'),
(39787, 33089, 'no_lang_code', 'name', 'Balassi Kiadó (Hungary)'),
(39788, 33090, 'de', 'name', 'Archiv der Erzdiƶzese Salzburg'),
(39789, 33091, 'en', 'name', 'Data Storage Institute'),
(39790, 33092, 'no_lang_code', 'name', 'WW Technology Group (United States)'),
(39791, 33093, 'en', 'name', 'American Skin Association'),
(39792, 33094, 'en', 'name', 'Susan G. Komen Wyoming'),
(39793, 33095, 'no_lang_code', 'name', 'Bjƶrkemar Construction & Consulting (Sweden)'),
(39794, 33096, 'en', 'name', 'NIHR Leicester Cardiovascular Biomedical Research Unit'),
(39795, 33097, 'no_lang_code', 'name', 'Ludlum Measurements (United States)'),
(39796, 33098, 'en', 'name', 'Bernstein Center for Computational Neuroscience Tübingen'),
(39797, 33099, 'no_lang_code', 'name', 'China State Construction Engineering (China)'),
(39798, 33099, 'zh', 'name', 'äø­å›½å»ŗē­‘č„æå—č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(39799, 33100, 'no_lang_code', 'name', 'Advanced Dynamics (United States)'),
(39800, 33101, 'pt', 'name', 'Fundação Carlos Chagas Filho de Amparo à Pesquisa do Estado do Rio de Janeiro'),
(39801, 33102, 'en', 'name', 'Virginia Department for Aging and Rehabilitative Services'),
(39802, 33103, 'en', 'name', 'NHS Ayrshire and Arran'),
(39803, 33104, 'en', 'name', 'Plastics Recyclers Europe'),
(39804, 33105, 'no_lang_code', 'name', 'Peregrine Diamonds (Canada)'),
(39805, 33106, 'no_lang_code', 'name', 'Propulsion Science and Technology (United States)'),
(39806, 33107, 'en', 'name', 'Wisconsin Department of Workforce Development'),
(39807, 33108, 'en', 'name', 'Canadian Cattlemen''s Association'),
(39808, 33109, 'no_lang_code', 'name', 'Sioen Industries (Belgium)'),
(39809, 33110, 'en', 'name', 'SwedenBIO'),
(39810, 33111, 'fr', 'name', 'ConfƩrence RƩgionale des EluEs du Bas-Saint-Laurent'),
(39811, 33112, 'no_lang_code', 'name', 'Simpson Weather Associates (United States)'),
(39812, 33113, 'en', 'name', 'National Office of Mines'),
(39813, 33114, 'en', 'name', 'Royal Society of Edinburgh'),
(39814, 33115, 'en', 'name', 'Taichung Hospital'),
(39815, 33116, 'no_lang_code', 'name', 'Adelan (United Kingdom)'),
(39816, 33117, 'no_lang_code', 'name', 'The Technology Partnership (United States)'),
(39817, 33118, 'no_lang_code', 'name', 'Proximion (Sweden)'),
(39818, 33119, 'no_lang_code', 'name', 'Applied Pulsed Power (United States)'),
(39819, 33120, 'en', 'name', 'Department of Environment, Land, Water and Planning'),
(39820, 33121, 'no_lang_code', 'name', 'Basic Commerce and Industries (United States)'),
(39821, 33122, 'no_lang_code', 'name', 'Defense Research Associates (United States)'),
(39822, 33123, 'en', 'name', 'NIHR Barts Cardiovascular Biomedical Research Unit'),
(39823, 33124, 'no_lang_code', 'name', 'Msm Group (Slovakia)'),
(39824, 33125, 'no_lang_code', 'name', 'TVN Systems (United States)'),
(39825, 33126, 'no_lang_code', 'name', 'Deployable Space Systems (United States)'),
(39826, 33127, 'en', 'name', 'University of Natural Medicine'),
(39827, 33128, 'no_lang_code', 'name', 'Hutchinson (Canada)'),
(39828, 33129, 'en', 'name', 'Natural Gas Technologies Centre'),
(39829, 33129, 'fr', 'name', 'Centre des Technologies du Gaz Naturel'),
(39830, 33130, 'no_lang_code', 'name', 'Adaptive Methods (United States)'),
(39831, 33131, 'ca', 'name', 'Centre Nacional d''Anàlisi Genòmica'),
(39832, 33131, 'es', 'name', 'Centro Nacional de AnÔlisis Genómico'),
(39833, 33132, 'es', 'name', 'Programa Iberoamericano de Ciencia y TecnologĆ­a para el Desarrollo'),
(39834, 33133, 'no_lang_code', 'name', 'X-Fab (United States)'),
(39835, 33134, 'no_lang_code', 'name', 'F. MƩnard (Canada)'),
(39836, 33135, 'no_lang_code', 'name', 'SensorMetrix (United States)'),
(39837, 33136, 'en', 'name', 'Third People''s Hospital of Huzhou'),
(39838, 33137, 'en', 'name', 'Croatian Science Foundation'),
(39839, 33138, 'en', 'name', 'Digital Catapult'),
(39840, 33139, 'no_lang_code', 'name', 'CLC (Italy)'),
(39841, 33140, 'no_lang_code', 'name', 'GoalArt (Sweden)'),
(39842, 33141, 'no_lang_code', 'name', 'Monitor Coatings (United Kingdom)'),
(39843, 33142, 'no_lang_code', 'name', 'Galorath (United States)'),
(39844, 33143, 'en', 'name', 'Community Services for Autistic Adults and Children'),
(39845, 33144, 'en', 'name', 'Institute of Semiconductor Physics'),
(39846, 33144, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики ŠæŠ¾Š»ŃƒŠæŃ€Š¾Š²Š¾Š“Š½ŠøŠŗŠ¾Š² им. А.Š’. Ржанова Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(39847, 33145, 'en', 'name', 'TNO Management Consultants'),
(39848, 33146, 'en', 'name', 'Shanghai Chenshan Plant Science Research Center'),
(39849, 33146, 'zh', 'name', 'äøŠęµ·č¾°å±±ę¤ē‰©ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(39850, 33147, 'en', 'name', 'International Union of Pure and Applied Chemistry'),
(39851, 33148, 'fr', 'name', 'Institut National de SantƩ Publique'),
(39852, 33149, 'no_lang_code', 'name', 'Mobergs (Sweden)'),
(39853, 33150, 'en', 'name', 'Center for the Study of Issues in Public Mental Health'),
(39854, 33151, 'en', 'name', 'Webster Vienna Private University'),
(39855, 33152, 'no_lang_code', 'name', 'StratEdge (United States)'),
(39856, 33153, 'nl', 'name', 'Bonaventuracollege'),
(39857, 33154, 'en', 'name', 'Blue Ventures'),
(39858, 33155, 'en', 'name', 'Christian Aid'),
(39859, 33156, 'no_lang_code', 'name', 'OptiCall Software (Sweden)'),
(39860, 33157, 'en', 'name', 'Maritime and Port Authority of Singapore'),
(39861, 33158, 'en', 'name', 'Sir Jules Thorn Charitable Trust'),
(39862, 33159, 'no_lang_code', 'name', 'Paragon Space Development Corporation (United States)'),
(39863, 33160, 'no_lang_code', 'name', 'Global Seawater Extraction Technologies (United States)'),
(39864, 33161, 'en', 'name', 'Eugene Research Institute'),
(39865, 33162, 'no_lang_code', 'name', 'UQM Technologies (United States)'),
(39866, 33163, 'en', 'name', 'Shanghai Traditional Chinese Medicine Hospital'),
(39867, 33164, 'no_lang_code', 'name', 'Caerus Molecular Diagnostics (United States)'),
(39868, 33165, 'en', 'name', 'Prostate Cancer Canada'),
(39869, 33166, 'en', 'name', 'New York Consortium in Evolutionary Primatology'),
(39870, 33167, 'en', 'name', 'American Breast Cancer Foundation'),
(39871, 33168, 'no_lang_code', 'name', 'Tellabs (United States)'),
(39872, 33169, 'nl', 'name', 'Marecollege'),
(39873, 33170, 'no_lang_code', 'name', 'Sandbox Learning (United States)'),
(39874, 33171, 'no_lang_code', 'name', 'TYK America (United States)'),
(39875, 33172, 'en', 'name', 'Lourie Center for Children''s Social & Emotional Wellness'),
(39876, 33173, 'pt', 'name', 'Instituto Nacional de Tecnologias de Informação e Comunicação'),
(39877, 33174, 'no_lang_code', 'name', 'Total (Canada)'),
(39878, 33175, 'en', 'name', 'Business Sweden'),
(39879, 33176, 'en', 'name', 'Canadian Chlorine Chemistry Council'),
(39880, 33177, 'no_lang_code', 'name', 'QPS Photronics (Canada)'),
(39881, 33178, 'en', 'name', 'Ministry of Forests and Soil Conservation'),
(39882, 33179, 'en', 'name', 'Regional Municipality of Ottawa'),
(39883, 33180, 'en', 'name', 'American Foundation for Children with AIDS'),
(39884, 33181, 'no_lang_code', 'name', 'Edison International (United States)'),
(39885, 33182, 'no_lang_code', 'name', 'PartTec (United States)'),
(39886, 33183, 'no_lang_code', 'name', 'Public Service Electric and Gas (United States)'),
(39887, 33184, 'no_lang_code', 'name', 'Phase Sensitive Innovations (United States)'),
(39888, 33185, 'en', 'name', 'Institute of Current World Affairs'),
(39889, 33186, 'sk', 'name', 'GymnĆ”zium Andreja SlĆ”dkoviča'),
(39890, 33187, 'de', 'name', 'Höhere Bundeslehr- und Forschungsanstalt für Landwirtschaft, Landtechnik und Lebensmitteltechnologie'),
(39891, 33187, 'en', 'name', 'Josephinum Research'),
(39892, 33188, 'no_lang_code', 'name', 'Premier Coatings (United States)'),
(39893, 33189, 'da', 'name', 'Nordea-fonden'),
(39894, 33190, 'it', 'name', 'Istituto di Astrofisica Spaziale e Fisica cosmica di Palermo'),
(39895, 33191, 'no_lang_code', 'name', 'Optiplan (Sweden)'),
(39896, 33192, 'en', 'name', 'Ministry of Patriots and Veterans Affairs'),
(39897, 33193, 'no_lang_code', 'name', 'Cosine (Netherlands)'),
(39898, 33194, 'en', 'name', 'Federal Almazov North-West Medical Research Centre'),
(39899, 33194, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Деверо-ЗапаГный Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр имени Š’.А. Алмазова ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(39900, 33195, 'en', 'name', 'Richard King Mellon Foundation'),
(39901, 33196, 'en', 'name', 'Food and Health Bureau'),
(39902, 33196, 'zh', 'name', 'é£Ÿē‰©åŠč”žē”Ÿå±€'),
(39903, 33197, 'no_lang_code', 'name', 'Newport Coachworks (United States)'),
(39904, 33198, 'no_lang_code', 'name', 'Telesecurity Sciences (United States)'),
(39905, 33199, 'en', 'name', 'SIT Graduate Institute'),
(39906, 33200, 'en', 'name', 'Centre for Immunity, Infection and Evolution'),
(39907, 33201, 'no_lang_code', 'name', 'PTC (United States)'),
(39908, 33202, 'en', 'name', 'Living Streets'),
(39909, 33203, 'no_lang_code', 'name', 'Information System Technologies (United States)'),
(39910, 33204, 'no_lang_code', 'name', 'FISO Technologies (Canada)'),
(39911, 33205, 'no_lang_code', 'name', 'Software and Engineering Associates (United States)'),
(39912, 33206, 'no_lang_code', 'name', 'Lipidomix (Germany)'),
(39913, 33207, 'en', 'name', 'National Institute of Biomedical Research'),
(39914, 33207, 'fr', 'name', 'Institut national de recherche biomƩdicale'),
(39915, 33208, 'en', 'name', 'Nordic Institute for Theoretical Physics'),
(39916, 33209, 'en', 'name', 'Wolf Science Center'),
(39917, 33210, 'en', 'name', 'Slovak Public Health Association'),
(39918, 33211, 'en', 'name', 'Kaifeng City Children''s Hospital'),
(39919, 33212, 'en', 'name', 'Texas Research Institute'),
(39920, 33213, 'no_lang_code', 'name', 'Crye Precision (United States)'),
(39921, 33214, 'no_lang_code', 'name', 'Prometheus (United States)'),
(39922, 33215, 'en', 'name', 'Canadian Avalanche Association'),
(39923, 33216, 'en', 'name', 'American Guild of Organists'),
(39924, 33217, 'en', 'name', 'Institute of History'),
(39925, 33217, 'hu', 'name', 'Magyar TudomƔnyos AkadƩmia TƶrtƩnettudomƔnyi IntƩzete'),
(39926, 33218, 'en', 'name', 'Doctors Without Borders'),
(39927, 33218, 'fr', 'name', 'Médecins Sans Frontières'),
(39928, 33218, 'nl', 'name', 'Artsen Zonder Grenzen'),
(39929, 33219, 'no_lang_code', 'name', 'Graphenea (Spain)'),
(39930, 33220, 'no_lang_code', 'name', 'Enerworks (Canada)'),
(39931, 33221, 'no_lang_code', 'name', 'SensAbues (Sweden)'),
(39932, 33222, 'de', 'name', 'Architekturzentrum Wien'),
(39933, 33223, 'no_lang_code', 'name', 'Ordela (United States)'),
(39934, 33224, 'no_lang_code', 'name', 'Conductive Composites (United States)'),
(39935, 33225, 'no_lang_code', 'name', 'EverNu Technology (United States)'),
(39936, 33226, 'en', 'name', 'Bath and North East Somerset Council'),
(39937, 33227, 'en', 'name', 'Royal College of Paediatrics and Child Health'),
(39938, 33228, 'en', 'name', 'Ministry of the Environment'),
(39939, 33228, 'ja', 'name', 'ē’°å¢ƒēœ'),
(39940, 33229, 'no_lang_code', 'name', 'Rolta (United States)'),
(39941, 33230, 'en', 'name', 'Chest Hospital, Ministry of Health and Welfare'),
(39942, 33231, 'no_lang_code', 'name', 'Timber Specialties (Canada)'),
(39943, 33232, 'no_lang_code', 'name', 'Frontier Performance Polymers (United States)'),
(39944, 33233, 'en', 'name', 'University Legal Services'),
(39945, 33234, 'no_lang_code', 'name', 'Halliburton (United States)'),
(39946, 33235, 'en', 'name', 'Hearst Foundations'),
(39947, 33236, 'no_lang_code', 'name', 'Innovation Pioneers (Sweden)'),
(39948, 33237, 'en', 'name', 'Garden Club of America'),
(39949, 33238, 'en', 'name', 'National Ataxia Foundation'),
(39950, 33239, 'en', 'name', 'Sunvapor'),
(39951, 33240, 'en', 'name', 'Rheumatology Research Foundation'),
(39952, 33241, 'no_lang_code', 'name', 'Applied Mathematics (United States)'),
(39953, 33242, 'no_lang_code', 'name', 'Traclabs (United States)'),
(39954, 33243, 'en', 'name', 'Sabah Forestry Department'),
(39955, 33244, 'no_lang_code', 'name', 'BioArctic Neuroscience (Sweden)'),
(39956, 33245, 'en', 'name', 'Warner Pacific College'),
(39957, 33246, 'en', 'name', 'Canon Foundation in Europe'),
(39958, 33247, 'no_lang_code', 'name', 'OpGen (United States)'),
(39959, 33248, 'no_lang_code', 'name', 'Surgical Specialties (United States)'),
(39960, 33249, 'no_lang_code', 'name', 'HyperSizer (United States)'),
(39961, 33250, 'en', 'name', 'Institute for Research and Development in Agri-Environment'),
(39962, 33250, 'fr', 'name', 'Institut de Recherche et de DƩveloppement en Agroenvironnement'),
(39963, 33251, 'no_lang_code', 'name', 'Glint Photonics (United States)'),
(39964, 33252, 'no_lang_code', 'name', 'Staccato Technologies (Sweden)'),
(39965, 33253, 'no_lang_code', 'name', 'Pageau Morel and Associates (Canada)'),
(39966, 33254, 'no_lang_code', 'name', 'Solute (United States)'),
(39967, 33255, 'de', 'name', 'Max-Planck-Institut für Gravitationsphysik'),
(39968, 33255, 'en', 'name', 'Max Planck Institute for Gravitational Physics'),
(39969, 33256, 'no_lang_code', 'name', 'LightWorks (United States)'),
(39970, 33257, 'no_lang_code', 'name', 'MetaSolutions (Sweden)'),
(39971, 33258, 'en', 'name', 'Hangzhou Wanxiang Polytechnic'),
(39972, 33259, 'no_lang_code', 'name', 'Quanta Technology (United States)'),
(39973, 33260, 'no_lang_code', 'name', 'Applied Minds (United States)'),
(39974, 33261, 'en', 'name', 'Sport Support Center'),
(39975, 33262, 'no_lang_code', 'name', 'DANTE Solutions (United States)'),
(39976, 33263, 'cy', 'name', 'TÅ·''r Arglwyddi'),
(39977, 33263, 'en', 'name', 'Parliament of United Kingdom'),
(39978, 33264, 'no_lang_code', 'name', 'Disruptive Materials (Sweden)'),
(39979, 33265, 'en', 'name', 'AIDS Foundation East-West'),
(39980, 33266, 'en', 'name', 'Area ''A'' Crab Association'),
(39981, 33267, 'en', 'name', 'Nevada Department of Employment Training and Rehabilitation'),
(39982, 33268, 'no_lang_code', 'name', 'Brookhaven Technology Group (United States)'),
(39983, 33269, 'en', 'name', 'The Research Council'),
(39984, 33270, 'no_lang_code', 'name', 'Hitachi (Canada)'),
(39985, 33271, 'no_lang_code', 'name', 'Exencotech (Sweden)'),
(39986, 33272, 'en', 'name', 'Samueli Institute'),
(39987, 33273, 'en', 'name', 'Chicago House and Social Service Agency'),
(39988, 33274, 'no_lang_code', 'name', 'Industrial Filter & Pump Manufacturing (United States)'),
(39989, 33275, 'en', 'name', 'Second Hospital of Shanxi Medical University'),
(39990, 33275, 'zh', 'name', 'å±±č„æåŒ»ē§‘å¤§å­¦ē¬¬äŗŒåŒ»é™¢'),
(39991, 33276, 'no_lang_code', 'name', 'Massa Products (United States)'),
(39992, 33277, 'en', 'name', 'Fraunhofer Chalmers Research Centre for Industrial Mathematics'),
(39993, 33277, 'sv', 'name', 'Fraunhofer Chalmers Centrum fƶr Industrimatematik'),
(39994, 33278, 'no_lang_code', 'name', 'Spectral Imaging Laboratory (United States)'),
(39995, 33279, 'en', 'name', 'Nichols College'),
(39996, 33280, 'en', 'name', 'Lund Municipality'),
(39997, 33281, 'en', 'name', 'Meningitis Research Foundation'),
(39998, 33282, 'no_lang_code', 'name', 'PPS Group (Slovakia)'),
(39999, 33283, 'no_lang_code', 'name', 'ElectroDynamic Applications (United States)'),
(40000, 33284, 'no_lang_code', 'name', 'Redsense Medical (Sweden)'),
(40001, 33285, 'no_lang_code', 'name', 'AIR Worldwide (United Kingdom)'),
(40002, 33286, 'en', 'name', 'Ministry of Health and Public Hygiene'),
(40003, 33287, 'en', 'name', 'CS Fund'),
(40004, 33288, 'no_lang_code', 'name', 'Bioservo Technologies (Sweden)'),
(40005, 33289, 'en', 'name', 'Clifton Labs'),
(40006, 33290, 'no_lang_code', 'name', 'Grainseed (United Kingdom)'),
(40007, 33291, 'en', 'name', 'International Society for Heart and Lung Transplantation'),
(40008, 33292, 'no_lang_code', 'name', 'KM System (Slovakia)'),
(40009, 33293, 'no_lang_code', 'name', 'Rosstech Signals (Canada)'),
(40010, 33294, 'no_lang_code', 'name', 'Oneday Wall (Sweden)'),
(40011, 33295, 'no_lang_code', 'name', 'Arxan (United States)'),
(40012, 33296, 'no_lang_code', 'name', 'Essar Steel Algoma (Canada)'),
(40013, 33297, 'en', 'name', 'Association for the Integrated Development-Comilla'),
(40014, 33298, 'en', 'name', 'Tartu Emajoe School'),
(40015, 33299, 'en', 'name', 'Entrepreneurship and Small Business Research Institute'),
(40016, 33300, 'no_lang_code', 'name', 'MacAulay-Brown (United States)'),
(40017, 33301, 'en', 'name', 'Nanotechnology Industries Association'),
(40018, 33302, 'pt', 'name', 'Fundação de Amparo à Pesquisa e ao Desenvolvimento Científico e Tecnológico do Maranhão'),
(40019, 33303, 'en', 'name', 'Innov & Export PME'),
(40020, 33304, 'no_lang_code', 'name', 'Scienta Scientific (Sweden)'),
(40021, 33305, 'no_lang_code', 'name', 'TECO-Westinghouse (Canada)'),
(40022, 33306, 'en', 'name', 'Institute of Archaeology'),
(40023, 33307, 'no_lang_code', 'name', 'LightSpin Technologies (United States)'),
(40024, 33308, 'no_lang_code', 'name', 'Aware (United States)'),
(40025, 33309, 'en', 'name', 'Israeli Centers for Research Excellence'),
(40026, 33310, 'no_lang_code', 'name', 'Fujitsu (Sweden)'),
(40027, 33311, 'pt', 'name', 'Instituto Federal de Educação Ciência e Tecnologia do Norte de Minas Gerais'),
(40028, 33312, 'no_lang_code', 'name', 'Quattriuum (Canada)'),
(40029, 33313, 'no_lang_code', 'name', 'Chang Industry (United States)'),
(40030, 33314, 'no_lang_code', 'name', 'Quantum Leap Innovations (United States)'),
(40031, 33315, 'fr', 'name', 'Centre de Recherche et de Veille sur les Maladies Emergentes dans l’OcĆ©an Indien'),
(40032, 33316, 'fr', 'name', 'Conseil rƩgional de Haute-Normandie'),
(40033, 33317, 'en', 'name', 'The Audio Recording Academy'),
(40034, 33318, 'en', 'name', 'Medgar Evers College'),
(40035, 33319, 'no_lang_code', 'name', 'Sanova (United States)'),
(40036, 33320, 'en', 'name', 'National College'),
(40037, 33320, 'es', 'name', 'Colegio Nacional'),
(40038, 33321, 'en', 'name', 'National Agricultural and Food Centre'),
(40039, 33322, 'no_lang_code', 'name', 'Relay Software (United Kingdom)'),
(40040, 33323, 'no_lang_code', 'name', 'Safetronics (Slovakia)'),
(40041, 33324, 'en', 'name', 'Netherlands Consortium for Healthy Ageing'),
(40042, 33325, 'en', 'name', 'Shandong Provincial QianFoShan Hospital'),
(40043, 33325, 'zh', 'name', 'å±±äøœēœåƒä½›å±±åŒ»é™¢'),
(40044, 33326, 'no_lang_code', 'name', 'SAE - Automation (Slovakia)'),
(40045, 33327, 'no_lang_code', 'name', 'Bridgestone (United States)'),
(40046, 33328, 'it', 'name', 'Ente Cassa di Risparmio di Firenze'),
(40047, 33329, 'no_lang_code', 'name', 'Wallbridge Mining (Canada)'),
(40048, 33330, 'en', 'name', 'Joint BioEnergy Institute'),
(40049, 33331, 'no_lang_code', 'name', 'Discovery Semiconductors (United States)'),
(40050, 33332, 'no_lang_code', 'name', 'Technology Solutions Experts (United States)'),
(40051, 33333, 'no_lang_code', 'name', 'B-Con Engineering (Canada)'),
(40052, 33334, 'nl', 'name', 'Huizinga Instituut'),
(40053, 33335, 'no_lang_code', 'name', 'GA Drilling (Slovakia)'),
(40054, 33336, 'no_lang_code', 'name', 'Shenhua Group (China)'),
(40055, 33337, 'en', 'name', 'Princess Grace Hospital Centre'),
(40056, 33337, 'fr', 'name', 'Le Centre Hospitalier Princesse Grace'),
(40057, 33338, 'no_lang_code', 'name', 'Denator (Sweden)'),
(40058, 33339, 'no_lang_code', 'name', 'Surgical Science (Sweden)'),
(40059, 33340, 'no_lang_code', 'name', 'Terrigio (Sweden)'),
(40060, 33341, 'no_lang_code', 'name', 'Federated Co-operatives (Canada)'),
(40061, 33342, 'en', 'name', 'Institute of Modern Physics'),
(40062, 33342, 'zh', 'name', '中国科学院近代物理研究所'),
(40063, 33343, 'en', 'name', 'Wellcome Centre for Cell Biology'),
(40064, 33344, 'no_lang_code', 'name', 'Numotion (United States)'),
(40065, 33345, 'no_lang_code', 'name', 'Pojen General Hospital'),
(40066, 33346, 'en', 'name', 'Cystic Fibrosis Trust'),
(40067, 33347, 'de', 'name', 'Wissenschaftskolleg zu Berlin'),
(40068, 33347, 'en', 'name', 'Institute for Advanced Study'),
(40069, 33348, 'en', 'name', 'Covenant College'),
(40070, 33349, 'no_lang_code', 'name', 'DB Biotech (Slovakia)');
INSERT INTO `ror_settings` VALUES
(40071, 33350, 'en', 'name', 'Welch College'),
(40072, 33351, 'no_lang_code', 'name', 'Semikron (Slovakia)'),
(40073, 33352, 'no_lang_code', 'name', 'Continental Computers (United States)'),
(40074, 33353, 'no_lang_code', 'name', 'CCT Intermodal (Sweden)'),
(40075, 33354, 'no_lang_code', 'name', 'Bioland (South Korea)'),
(40076, 33355, 'no_lang_code', 'name', 'Breault Research Organization (United States)'),
(40077, 33356, 'da', 'name', 'Gigtforeningen'),
(40078, 33356, 'en', 'name', 'Danish Rheumatism Association'),
(40079, 33357, 'en', 'name', 'Kuwait Foundation for the Advancement of Sciences'),
(40080, 33358, 'no_lang_code', 'name', 'Riksteatern (Sweden)'),
(40081, 33359, 'en', 'name', 'Natural Resources Data Management System'),
(40082, 33360, 'en', 'name', 'Montreal Transit Corporation'),
(40083, 33360, 'fr', 'name', 'SociƩtƩ de Transport de MontrƩal'),
(40084, 33361, 'es', 'name', 'EcoCiencia'),
(40085, 33362, 'no_lang_code', 'name', 'Q Free (Netherlands)'),
(40086, 33363, 'en', 'name', 'Russian Science Foundation'),
(40087, 33364, 'en', 'name', 'Government of Malaysia'),
(40088, 33364, 'ms', 'name', 'Kerajaan Persekutuan Malaysia'),
(40089, 33365, 'no_lang_code', 'name', 'Inteno (Sweden)'),
(40090, 33366, 'ja', 'name', 'é›Ŗå°ä¹³ę„­ę Ŗå¼ä¼šē¤¾'),
(40091, 33366, 'no_lang_code', 'name', 'Megmilk Snow Brand (Japan)'),
(40092, 33367, 'no_lang_code', 'name', 'InView Technology Corporation (United States)'),
(40093, 33368, 'no_lang_code', 'name', 'Structural Integrity Associates (United States)'),
(40094, 33369, 'no_lang_code', 'name', 'Petrel Robertson Consulting (Canada)'),
(40095, 33370, 'no_lang_code', 'name', 'TimeSys (United States)'),
(40096, 33371, 'en', 'name', 'Bosque School'),
(40097, 33372, 'no_lang_code', 'name', 'Tau - Chem (Slovakia)'),
(40098, 33373, 'en', 'name', 'Canadian Wildlife Federation'),
(40099, 33373, 'fr', 'name', 'FƩdƩration Canadienne de la Faune'),
(40100, 33374, 'no_lang_code', 'name', 'Sciss (Sweden)'),
(40101, 33375, 'no_lang_code', 'name', 'Advanced Emissions Solutions (United States)'),
(40102, 33376, 'en', 'name', 'Praxis Institute for Participatory Practices'),
(40103, 33377, 'en', 'name', 'John S. Dunn Foundation'),
(40104, 33378, 'no_lang_code', 'name', 'Aneeve Nanotechnologies (United States)'),
(40105, 33379, 'no_lang_code', 'name', 'Tydock Pharma (Italy)'),
(40106, 33380, 'no_lang_code', 'name', 'Saudi Aramco (Saudi Arabia)'),
(40107, 33381, 'en', 'name', 'Cure Cancer Australia'),
(40108, 33382, 'no_lang_code', 'name', 'Suzuken (Japan)'),
(40109, 33383, 'no_lang_code', 'name', 'TechMarket (Sweden)'),
(40110, 33384, 'en', 'name', 'Israel Cancer Association'),
(40111, 33385, 'no_lang_code', 'name', 'Plasma Processes (United States)'),
(40112, 33386, 'no_lang_code', 'name', 'Advanced Device Technology (United States)'),
(40113, 33387, 'no_lang_code', 'name', 'AcousticAgree (Sweden)'),
(40114, 33388, 'no_lang_code', 'name', 'CrossWing (Canada)'),
(40115, 33389, 'en', 'name', 'South-South Exchange Programme for Research on the History of Development'),
(40116, 33390, 'en', 'name', 'Bethany Lutheran College'),
(40117, 33391, 'en', 'name', 'National Eye Research Centre'),
(40118, 33392, 'no_lang_code', 'name', 'Charles River Analytics (United States)'),
(40119, 33393, 'no_lang_code', 'name', 'Surface Treatment Technologies (United States)'),
(40120, 33394, 'en', 'name', 'Asthma UK'),
(40121, 33395, 'en', 'name', 'Tudor Place'),
(40122, 33396, 'en', 'name', 'Korea Evaluation Institute of Industrial Technology'),
(40123, 33397, 'de', 'name', 'Else Krƶner-Fresenius-Stiftung'),
(40124, 33398, 'no_lang_code', 'name', 'Siva (Italy)'),
(40125, 33399, 'no_lang_code', 'name', 'Cyclicor (Sweden)'),
(40126, 33400, 'en', 'name', 'High Energy Materials Research Laboratory'),
(40127, 33400, 'hi', 'name', 'ą¤‰ą¤šą„ą¤š ą¤‰ą¤°ą„ą¤œą¤¾ ą¤Ŗą¤¦ą¤¾ą¤°ą„ą¤„ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(40128, 33401, 'no_lang_code', 'name', 'Consol Energy (United States)'),
(40129, 33402, 'en', 'name', 'Academy of American Poets'),
(40130, 33403, 'en', 'name', 'Midwestern Baptist College'),
(40131, 33404, 'no_lang_code', 'name', 'BioResonator (Sweden)'),
(40132, 33405, 'no_lang_code', 'name', 'Idera Pharmaceuticals (United States)'),
(40133, 33406, 'no_lang_code', 'name', 'Oracle (Canada)'),
(40134, 33407, 'en', 'name', 'Canadian Association Of Optometrists'),
(40135, 33407, 'fr', 'name', 'Association canadienne des optomƩtristes'),
(40136, 33408, 'no_lang_code', 'name', 'Biont (Slovakia)'),
(40137, 33409, 'no_lang_code', 'name', 'Shared Spectrum Company (United States)'),
(40138, 33410, 'no_lang_code', 'name', 'KƤllbergs Industri (Sweden)'),
(40139, 33411, 'no_lang_code', 'name', 'Cascade Microtech (United States)'),
(40140, 33412, 'no_lang_code', 'name', 'Ultra Communications (United States)'),
(40141, 33413, 'de', 'name', 'Bundesamt für Wasserwirtschaft'),
(40142, 33414, 'nl', 'name', 'Ons Middelbaar Onderwijs'),
(40143, 33415, 'en', 'name', 'Abraham Baldwin Agricultural College'),
(40144, 33416, 'en', 'name', 'Shenzhen Children''s Hospital'),
(40145, 33416, 'zh', 'name', 'ę·±åœ³åø‚å„æē«„åŒ»é™¢'),
(40146, 33417, 'en', 'name', 'Bethune International Peace Hospital'),
(40147, 33417, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē™½ę±‚ę©å›½é™…å’Œå¹³åŒ»é™¢'),
(40148, 33418, 'en', 'name', 'National Chin-Yi University of Technology'),
(40149, 33419, 'en', 'name', 'Cambridgeshire and Peterborough NHS Foundation Trust'),
(40150, 33420, 'en', 'name', 'Interior Lumber Manufacturers Association'),
(40151, 33421, 'de', 'name', 'Kunstakademie Düsseldorf'),
(40152, 33422, 'en', 'name', 'IEEE Foundation'),
(40153, 33423, 'no_lang_code', 'name', 'ISSAC (United States)'),
(40154, 33424, 'no_lang_code', 'name', 'Near Earth Autonomy (United States)'),
(40155, 33425, 'no_lang_code', 'name', 'Wave Control Systems (Canada)'),
(40156, 33426, 'no_lang_code', 'name', 'EWE (Germany)'),
(40157, 33427, 'en', 'name', 'First Affiliated Hospital of Gannan Medical University'),
(40158, 33428, 'hu', 'name', 'Atlantisz AlapƭtvƔny'),
(40159, 33429, 'no_lang_code', 'name', 'ArmorWorks (United States)'),
(40160, 33430, 'en', 'name', 'PHI University Psychiatric Clinic - Skopje'),
(40161, 33431, 'en', 'name', 'Trace Crossings Elementary School'),
(40162, 33432, 'fr', 'name', 'Haute Ɖcole de Bruxelles'),
(40163, 33433, 'en', 'name', 'Maryland Higher Education Commission'),
(40164, 33434, 'no_lang_code', 'name', 'Acadia Cyber Solutions (United States)'),
(40165, 33435, 'en', 'name', 'Peking University Shougang Hospital'),
(40166, 33435, 'zh', 'name', 'åŒ—äŗ¬å¤§å­¦é¦–é‹¼åŒ»é™¢'),
(40167, 33436, 'no_lang_code', 'name', 'Zebra Technologies (United States)'),
(40168, 33437, 'en', 'name', 'Research Capacity Building Collaboration Wales'),
(40169, 33438, 'no_lang_code', 'name', 'Telus (Canada)'),
(40170, 33439, 'en', 'name', 'Barclay College'),
(40171, 33440, 'no_lang_code', 'name', 'LGL Group (United States)'),
(40172, 33441, 'no_lang_code', 'name', 'Underground Systems (United States)'),
(40173, 33442, 'en', 'name', 'Greenleaf University'),
(40174, 33443, 'en', 'name', 'Institute of the Estonian Language'),
(40175, 33443, 'et', 'name', 'Eesti Keele Instituut'),
(40176, 33444, 'en', 'name', 'Biomedical Research Foundation of Northwest Louisiana'),
(40177, 33445, 'no_lang_code', 'name', 'Ekospol (Slovakia)'),
(40178, 33446, 'hu', 'name', 'Pest Megyei Múzeumok IgazgatósÔga'),
(40179, 33447, 'en', 'name', 'Triangle Research and Development Center'),
(40180, 33448, 'no_lang_code', 'name', 'Onboard Dynamics (United States)'),
(40181, 33449, 'no_lang_code', 'name', 'Vadum (United States)'),
(40182, 33450, 'no_lang_code', 'name', 'Ready Set Sign (United States)'),
(40183, 33451, 'no_lang_code', 'name', 'Dacom (Netherlands)'),
(40184, 33452, 'en', 'name', 'Women''s Fund for Health Education and Research'),
(40185, 33453, 'no_lang_code', 'name', 'Eurofins (Slovakia)'),
(40186, 33454, 'en', 'name', 'Doctors Without Borders'),
(40187, 33454, 'fr', 'name', 'Médecins Sans Frontières'),
(40188, 33455, 'en', 'name', 'Tenovus Cancer Care'),
(40189, 33456, 'no_lang_code', 'name', 'Mike Wiegele Helicopter Skiing (Canada)'),
(40190, 33457, 'en', 'name', 'Stomatology Hospital'),
(40191, 33458, 'no_lang_code', 'name', 'TextWise (United States)'),
(40192, 33459, 'en', 'name', 'Turku Centre for Biotechnology'),
(40193, 33460, 'en', 'name', 'Wuxi Third People''s Hospital'),
(40194, 33461, 'no_lang_code', 'name', 'Integrated Systems Solutions (United States)'),
(40195, 33462, 'en', 'name', 'Doctors Without Borders'),
(40196, 33462, 'fr', 'name', 'Médecins Sans Frontières'),
(40197, 33462, 'nl', 'name', 'Artsen zonder Grenzen'),
(40198, 33463, 'no_lang_code', 'name', 'Job Performance Systems (United States)'),
(40199, 33464, 'no_lang_code', 'name', 'Innospire Systems (United States)'),
(40200, 33465, 'no_lang_code', 'name', 'Warwick Mills (United States)'),
(40201, 33466, 'en', 'name', 'Ministry of Education'),
(40202, 33467, 'hu', 'name', 'Korall TÔrsadalomtörténeti Folyóirat'),
(40203, 33468, 'no_lang_code', 'name', 'Elintrix (United States)'),
(40204, 33469, 'no_lang_code', 'name', 'Technology Service Corporation (United States)'),
(40205, 33470, 'no_lang_code', 'name', 'TiER1 (United States)'),
(40206, 33471, 'no_lang_code', 'name', 'AB Realisator (Sweden)'),
(40207, 33472, 'en', 'name', 'AgriBio'),
(40208, 33473, 'no_lang_code', 'name', 'Malibu IQ (United States)'),
(40209, 33474, 'en', 'name', 'Society for the Dissemination of Scientific Knowledge'),
(40210, 33474, 'hu', 'name', 'TudomĆ”nyos Ismeretterjesztő TĆ”rsulat'),
(40211, 33475, 'no_lang_code', 'name', 'Chantiers Chibougamau (Canada)'),
(40212, 33476, 'en', 'name', 'Sabin Vaccine Institute'),
(40213, 33477, 'no_lang_code', 'name', 'CompuTherm (United States)'),
(40214, 33478, 'no_lang_code', 'name', 'Nordic Medcom (Sweden)'),
(40215, 33479, 'en', 'name', 'Edinburgh International Science Festival'),
(40216, 33480, 'en', 'name', 'Michigan Public Service Commission'),
(40217, 33481, 'en', 'name', 'Ministry of Social and Family Development'),
(40218, 33481, 'zh', 'name', 'ę–°åŠ å”ē¤¾ä¼šåŠå®¶åŗ­å‘å±•éƒØ'),
(40219, 33482, 'en', 'name', 'Eskilstuna Municipality'),
(40220, 33483, 'en', 'name', 'Cultural Heritage Administration'),
(40221, 33483, 'ko', 'name', 'ė¬øķ™”ģž¬ģ²­'),
(40222, 33484, 'de', 'name', 'Hermann Staudinger Gymnasium'),
(40223, 33485, 'en', 'name', 'School of Visual Arts'),
(40224, 33486, 'en', 'name', 'Korea Communications Commission'),
(40225, 33487, 'en', 'name', 'National Arts Council of South Africa'),
(40226, 33488, 'no_lang_code', 'name', 'EyeTalk Systems (United States)'),
(40227, 33489, 'en', 'name', 'Nanjing University of Posts and Telecommunications'),
(40228, 33489, 'zh', 'name', 'å—äŗ¬é‚®ē”µå¤§å­¦'),
(40229, 33490, 'no_lang_code', 'name', 'Referentia Systems (United States)'),
(40230, 33491, 'no_lang_code', 'name', 'Diversified Technologies (United States)'),
(40231, 33492, 'en', 'name', 'Neighborhood Legal Services'),
(40232, 33493, 'no_lang_code', 'name', 'Hysitron (United States)'),
(40233, 33494, 'en', 'name', 'Multiple Sclerosis Society'),
(40234, 33495, 'no_lang_code', 'name', 'BorgWarner (Sweden)'),
(40235, 33496, 'no_lang_code', 'name', 'Innovative Dynamics (United States)'),
(40236, 33497, 'en', 'name', 'Lake Forest Graduate School of Management'),
(40237, 33498, 'en', 'name', 'UBC Properties Trust'),
(40238, 33499, 'en', 'name', 'Research Institute of Agricultural and Food Economics'),
(40239, 33500, 'en', 'name', 'Centre for Ultrahigh Bandwidth Devices for Optical Systems'),
(40240, 33501, 'no_lang_code', 'name', 'IDEAconsult'),
(40241, 33502, 'no_lang_code', 'name', 'Nanotrons (United States)'),
(40242, 33503, 'en', 'name', 'Sustainable Sweden Southeast'),
(40243, 33504, 'no_lang_code', 'name', 'TeraDiode (United States)'),
(40244, 33505, 'no_lang_code', 'name', 'Gondolat Publishing (Hungary)'),
(40245, 33506, 'no_lang_code', 'name', 'Viventia Bio (Canada)'),
(40246, 33507, 'no_lang_code', 'name', 'Abakan (United States)'),
(40247, 33508, 'no_lang_code', 'name', 'Gƶteborg & Co TrƤffpunkt (Sweden)'),
(40248, 33509, 'en', 'name', 'Beijing Academy of Food Sciences'),
(40249, 33509, 'zh', 'name', 'åŒ—äŗ¬é£Ÿå“ē§‘å­¦ē ”ē©¶é™¢'),
(40250, 33510, 'en', 'name', 'University of Southern California Sea Grant'),
(40251, 33511, 'no_lang_code', 'name', 'Magnolia Solar (United States)'),
(40252, 33512, 'en', 'name', 'Joint Implementation Network'),
(40253, 33513, 'no_lang_code', 'name', 'Intevac (United States)'),
(40254, 33514, 'hu', 'name', 'Damjanich JÔnos Múzeum'),
(40255, 33515, 'no_lang_code', 'name', 'Data Power Decisions (United States)'),
(40256, 33516, 'es', 'name', 'Ibercaja Banco'),
(40257, 33517, 'en', 'name', 'Heythrop College, University of London'),
(40258, 33518, 'en', 'name', 'Singapore Stem Cell Consortium'),
(40259, 33519, 'en', 'name', 'Egyptian Petroleum Research Institute'),
(40260, 33520, 'en', 'name', 'Association of Professional Engineers and Geoscientists of Manitoba'),
(40261, 33521, 'no_lang_code', 'name', '1Spatial (United States)'),
(40262, 33522, 'en', 'name', 'Science and Technology Development Fund'),
(40263, 33523, 'en', 'name', 'National Institute of Science and Technology for Structural Biology and Bioimaging'),
(40264, 33523, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia em Biologia Estrutural e Bioimagens'),
(40265, 33524, 'de', 'name', 'Klima und Energiefonds'),
(40266, 33524, 'en', 'name', 'Climate and Energy Fund'),
(40267, 33525, 'en', 'name', 'Clinton Foundation'),
(40268, 33526, 'nl', 'name', 'Sint Maartenskliniek'),
(40269, 33527, 'da', 'name', 'Filadelfia'),
(40270, 33528, 'no_lang_code', 'name', 'Jentek Sensors (United States)'),
(40271, 33529, 'sv', 'name', 'Eksjƶ Municipality'),
(40272, 33530, 'en', 'name', 'Xi’an Children’s Hospital'),
(40273, 33531, 'en', 'name', 'Australian Cancer Research Foundation'),
(40274, 33532, 'en', 'name', 'Cape Breton Development Corporation'),
(40275, 33533, 'no_lang_code', 'name', 'Ecoland (Slovakia)'),
(40276, 33534, 'no_lang_code', 'name', 'Smiths Interconnect (United States)'),
(40277, 33535, 'fr', 'name', 'Conseil RƩgional du Languedoc-Roussillon'),
(40278, 33536, 'nl', 'name', 'Stichting voor Christelijke Filosofie'),
(40279, 33537, 'no_lang_code', 'name', 'Progressive Waste Solutions (Canada)'),
(40280, 33538, 'en', 'name', 'International Trachoma Initiative'),
(40281, 33539, 'de', 'name', 'Verein für Krebsforschung'),
(40282, 33540, 'en', 'name', 'International Society for Optics and Photonics'),
(40283, 33541, 'no_lang_code', 'name', 'CorActive (Canada)'),
(40284, 33542, 'no_lang_code', 'name', 'MFC Industrial (United States)'),
(40285, 33543, 'no_lang_code', 'name', 'Makel Engineering (United States)'),
(40286, 33544, 'no_lang_code', 'name', 'Valley Tech Systems (United States)'),
(40287, 33545, 'en', 'name', 'Finnish Red Cross'),
(40288, 33546, 'en', 'name', 'Government of Netherlands'),
(40289, 33546, 'nl', 'name', 'Nederlandse Regering'),
(40290, 33547, 'en', 'name', 'Seventh People''s Hospital of Shanghai'),
(40291, 33548, 'no_lang_code', 'name', 'ElectroHeat (Sweden)'),
(40292, 33549, 'no_lang_code', 'name', 'Instrumental Sciences (United States)'),
(40293, 33550, 'no_lang_code', 'name', 'Evans Capacitor (United States)'),
(40294, 33551, 'nl', 'name', 'Archeologisch Diensten Centrum (Netherlands)'),
(40295, 33552, 'no_lang_code', 'name', 'GlycoScientific (United States)'),
(40296, 33553, 'en', 'name', 'Hebei Mental Health Center'),
(40297, 33554, 'no_lang_code', 'name', 'LC-Tec Displays (Sweden)'),
(40298, 33555, 'en', 'name', 'Ministry for Culture and Heritage'),
(40299, 33556, 'en', 'name', 'Oregon Sea Grant'),
(40300, 33557, 'no_lang_code', 'name', 'Science and Technology Applications (United States)'),
(40301, 33558, 'en', 'name', 'Heilongjiang Postdoctoral Fund'),
(40302, 33559, 'fr', 'name', 'UniversitƩ Nangui Abrogoua'),
(40303, 33560, 'no_lang_code', 'name', 'Red Glead Discovery (Sweden)'),
(40304, 33561, 'en', 'name', 'Centre for Research in Astrophysics of QuƩbec'),
(40305, 33562, 'no_lang_code', 'name', 'Epsilon Systems (United States)'),
(40306, 33563, 'en', 'name', 'Nordic Museum'),
(40307, 33564, 'no_lang_code', 'name', 'Innovative Configuration (United States)'),
(40308, 33565, 'en', 'name', 'CHDI Foundation'),
(40309, 33566, 'no_lang_code', 'name', 'Red Ninja (United Kingdom)'),
(40310, 33567, 'no_lang_code', 'name', 'KGS Group (Canada)'),
(40311, 33568, 'no_lang_code', 'name', 'ParaTools (United States)'),
(40312, 33569, 'no_lang_code', 'name', 'Cortana (United States)'),
(40313, 33570, 'en', 'name', 'United Indian Health Services'),
(40314, 33571, 'en', 'name', 'Hefei Institutes of Physical Science'),
(40315, 33571, 'zh', 'name', 'åˆč‚„ē‰©č“Øē§‘å­¦ē ”ē©¶é™¢'),
(40316, 33572, 'no_lang_code', 'name', '8 Rivers Capital (United States)'),
(40317, 33573, 'no_lang_code', 'name', 'SA Technologies (United States)'),
(40318, 33574, 'en', 'name', 'Lee Foundation'),
(40319, 33575, 'no_lang_code', 'name', 'Elevance Renewable Sciences (United States)'),
(40320, 33576, 'no_lang_code', 'name', 'Lexicon Technologies (United States)'),
(40321, 33577, 'no_lang_code', 'name', 'Cinside (Sweden)'),
(40322, 33578, 'en', 'name', 'Office of Disease Prevention'),
(40323, 33579, 'no_lang_code', 'name', 'Reliable System Services (United States)'),
(40324, 33580, 'en', 'name', 'Shasta Bible College and Graduate School'),
(40325, 33581, 'en', 'name', 'National Space Biomedical Research Institute'),
(40326, 33582, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado da Bahia'),
(40327, 33583, 'no_lang_code', 'name', 'RHI Magnesita (Canada)'),
(40328, 33584, 'no_lang_code', 'name', 'AmeriPrint (United States)'),
(40329, 33585, 'no_lang_code', 'name', 'Allcomp (United States)'),
(40330, 33586, 'en', 'name', 'Supreme Council Of Health'),
(40331, 33587, 'en', 'name', 'Second Hospital of Anhui Medical University'),
(40332, 33588, 'no_lang_code', 'name', 'Sydney Steel (Canada)'),
(40333, 33589, 'no_lang_code', 'name', 'Marotta Controls (United States)'),
(40334, 33590, 'en', 'name', 'Maj and Tor Nessling Foundation'),
(40335, 33591, 'en', 'name', 'Washington Sea Grant'),
(40336, 33592, 'no_lang_code', 'name', 'Skyonic (United States)'),
(40337, 33593, 'en', 'name', 'Royal Australasian College of Physicians'),
(40338, 33594, 'no_lang_code', 'name', 'Elforsk (Sweden)'),
(40339, 33595, 'no_lang_code', 'name', 'Radiant Genomics (United States)'),
(40340, 33596, 'en', 'name', 'Kids Kidney Research'),
(40341, 33597, 'no_lang_code', 'name', 'Global Services (Slovakia)'),
(40342, 33598, 'no_lang_code', 'name', 'Advanced Resources International (United States)'),
(40343, 33599, 'no_lang_code', 'name', 'Neonode (Sweden)'),
(40344, 33600, 'de', 'name', 'Schweizerisches Rote Kreuz'),
(40345, 33600, 'en', 'name', 'Swiss Red Cross'),
(40346, 33600, 'fr', 'name', 'Croix-Rouge suisse'),
(40347, 33600, 'it', 'name', 'Croce Rossa Svizzera'),
(40348, 33601, 'no_lang_code', 'name', 'Research Solutions International (United States)'),
(40349, 33602, 'en', 'name', 'Center for Translational Molecular Medicine'),
(40350, 33603, 'no_lang_code', 'name', 'Metabiota (United States)'),
(40351, 33604, 'no_lang_code', 'name', 'Motorola (Canada)'),
(40352, 33605, 'en', 'name', 'Department of Transportation, Infrastructure and Energy'),
(40353, 33606, 'en', 'name', 'Rotterdam University of Applied Sciences'),
(40354, 33606, 'nl', 'name', 'Hogeschool Rotterdam'),
(40355, 33607, 'no_lang_code', 'name', 'Arotech (United States)'),
(40356, 33608, 'no_lang_code', 'name', 'Preeye Solutions (Sweden)'),
(40357, 33609, 'en', 'name', 'Paracel Laboratories'),
(40358, 33610, 'no_lang_code', 'name', 'MidDec Scandinavia (Sweden)'),
(40359, 33611, 'fr', 'name', 'Fondation ARC pour la Recherche sur le Cancer'),
(40360, 33612, 'en', 'name', 'Aga Khan Foundation'),
(40361, 33613, 'no_lang_code', 'name', 'Vextec (United States)'),
(40362, 33614, 'no_lang_code', 'name', 'Global Technology Connection (United States)'),
(40363, 33615, 'no_lang_code', 'name', 'Applied Defense Solutions (United States)'),
(40364, 33616, 'de', 'name', 'AllerGen'),
(40365, 33617, 'hu', 'name', 'Hadtörténeti Intézet és Múzeum'),
(40366, 33618, 'no_lang_code', 'name', 'Applications Research (United States)'),
(40367, 33619, 'no_lang_code', 'name', 'Paladin Labs (Canada)'),
(40368, 33620, 'sk', 'name', 'ÚstrednÔ VojenskÔ Nemocnica Ružomberok'),
(40369, 33621, 'fr', 'name', 'France AgriMer, Ɖtablissement National des Produits de l''Agriculture et de la Mer'),
(40370, 33622, 'en', 'name', 'Canada Auto Workers'),
(40371, 33623, 'en', 'name', 'Xuzhou Central Hospital'),
(40372, 33624, 'en', 'name', 'Wolfgang Pauli Institute'),
(40373, 33625, 'en', 'name', 'Computer Based Training for Cognitive Behavioral Therapy'),
(40374, 33626, 'en', 'name', 'Royal Albert Memorial Museum'),
(40375, 33627, 'en', 'name', 'Ohio Lake Erie Commission'),
(40376, 33628, 'en', 'name', 'Ministry of Human Resource Development'),
(40377, 33628, 'fr', 'name', 'Ministre du dƩveloppement des ressources humaines'),
(40378, 33628, 'hi', 'name', 'मानव संसाधन विकास ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(40379, 33628, 'ta', 'name', 'மனிதவள ą®®ąÆ‡ą®®ąÆą®Ŗą®¾ą®ŸąÆą®ŸąÆ ą®…ą®®ąÆˆą®šąÆą®šą®•ą®®ąÆ'),
(40380, 33629, 'en', 'name', 'Historic Deerfield'),
(40381, 33630, 'no_lang_code', 'name', 'Kiverdi (United States)'),
(40382, 33631, 'en', 'name', 'Foundation for Polish Science'),
(40383, 33632, 'no_lang_code', 'name', 'TEAM'),
(40384, 33633, 'no_lang_code', 'name', 'Spiber Technologies (Sweden)'),
(40385, 33634, 'en', 'name', 'Brain Research Foundation'),
(40386, 33635, 'de', 'name', 'Verein für Geschichte der Arbeiterbewegung'),
(40387, 33636, 'en', 'name', 'British Columbia Broiler Hatching Egg Commission'),
(40388, 33637, 'no_lang_code', 'name', 'Institute of Political History (Hungary)'),
(40389, 33638, 'en', 'name', 'Gutenberg College'),
(40390, 33639, 'en', 'name', 'Olivet College'),
(40391, 33640, 'no_lang_code', 'name', 'Archer Daniels Midland (United States)'),
(40392, 33641, 'en', 'name', 'Horse Council BC'),
(40393, 33642, 'no_lang_code', 'name', 'Alpha Star (United States)'),
(40394, 33643, 'en', 'name', 'MTO Safety'),
(40395, 33644, 'da', 'name', 'Nationale Videnskabsetiske KomitƩ'),
(40396, 33644, 'en', 'name', 'National Science Ethics Committee'),
(40397, 33645, 'no_lang_code', 'name', 'F&S Building Innovations (United States)'),
(40398, 33646, 'en', 'name', 'Bioprocessing Technology Institute'),
(40399, 33647, 'no_lang_code', 'name', 'Time Domain (United States)'),
(40400, 33648, 'en', 'name', 'Austrian Research Agency for Post-War Justice'),
(40401, 33649, 'en', 'name', 'Department of Health of Guangdong Province'),
(40402, 33650, 'no_lang_code', 'name', 'Information Systems Laboratories (United States)'),
(40403, 33651, 'en', 'name', 'Croatian Forest Research Institute'),
(40404, 33652, 'no_lang_code', 'name', 'MesoScribe Technologies (United States)'),
(40405, 33653, 'en', 'name', 'Netherlands Institute for Art History'),
(40406, 33654, 'en', 'name', 'NHS Lanarkshire'),
(40407, 33655, 'no_lang_code', 'name', 'Flex (Sweden)'),
(40408, 33656, 'en', 'name', 'Endangered Wildlife Trust'),
(40409, 33657, 'en', 'name', 'Canadian Air Transport Security Authority'),
(40410, 33657, 'fr', 'name', 'Administration canadienne de la sƻretƩ du transport aƩrien'),
(40411, 33658, 'no_lang_code', 'name', 'Afognak Native Corporation (United States)'),
(40412, 33659, 'no_lang_code', 'name', 'Nordic Aircraft (Sweden)'),
(40413, 33660, 'no_lang_code', 'name', 'J.A. Woollam Company (United States)'),
(40414, 33661, 'bn', 'name', 'ą¦¶ą¦æą¦•ą§ą¦·ą¦¾ ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(40415, 33661, 'en', 'name', 'Ministry of Education'),
(40416, 33662, 'no_lang_code', 'name', 'Alpha Medical (Slovakia)'),
(40417, 33663, 'no_lang_code', 'name', 'AEF Global (Canada)'),
(40418, 33664, 'no_lang_code', 'name', 'Hisense (United States)'),
(40419, 33665, 'no_lang_code', 'name', 'FMB Feinwerk- und Messtechnik (Germany)'),
(40420, 33666, 'en', 'name', 'Department of Biodiversity, Conservation and Attractions'),
(40421, 33667, 'de', 'name', 'Instituts für Krebsforschung'),
(40422, 33667, 'en', 'name', 'Ludwig Boltzmann Institute for Cancer Research'),
(40423, 33668, 'no_lang_code', 'name', 'Lassonde Industries (Canada)'),
(40424, 33669, 'no_lang_code', 'name', 'Comptoir Agricole Sabrevois (Canada)'),
(40425, 33670, 'no_lang_code', 'name', 'Rainbow Communications (United States)'),
(40426, 33671, 'no_lang_code', 'name', 'RDRtec (United States)'),
(40427, 33672, 'no_lang_code', 'name', 'Foam Matrix (United States)'),
(40428, 33673, 'en', 'name', 'Plimoth Plantation'),
(40429, 33674, 'en', 'name', 'Arid Forest Research Institute'),
(40430, 33675, 'no_lang_code', 'name', 'FiberSensing (Portugal)'),
(40431, 33676, 'en', 'name', 'Regional Municipality of Waterloo'),
(40432, 33677, 'en', 'name', 'Zhejiang Provincial Natural Science Foundation'),
(40433, 33677, 'zh', 'name', 'ęµ™ę±Ÿēœč‡Ŗē„¶ē§‘å­¦åŸŗé‡‘å§”å‘˜ä¼š'),
(40434, 33678, 'en', 'name', 'Greater Portland Landmarks'),
(40435, 33679, 'en', 'name', 'China Scholarship Council'),
(40436, 33679, 'zh', 'name', 'å›½å®¶ē•™å­¦åŸŗé‡‘ē®”ē†å§”å‘˜ä¼š'),
(40437, 33680, 'en', 'name', 'Research Associates of Syracuse'),
(40438, 33681, 'en', 'name', 'Stockholm Science City Foundation'),
(40439, 33682, 'no_lang_code', 'name', 'LiveData (United States)'),
(40440, 33683, 'no_lang_code', 'name', 'Husky Energy (Canada)'),
(40441, 33684, 'de', 'name', 'Klinik Barmelweid'),
(40442, 33685, 'no_lang_code', 'name', 'PNSensor (Germany)'),
(40443, 33686, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾DNAćƒćƒƒćƒ—ē ”ē©¶ę‰€'),
(40444, 33686, 'no_lang_code', 'name', 'DNA Chip Research (Japan)'),
(40445, 33687, 'no_lang_code', 'name', 'Bodkin Design & Engineering (United States)'),
(40446, 33688, 'en', 'name', 'Australian Wildlife Conservancy'),
(40447, 33689, 'no_lang_code', 'name', 'Mayflower Communications (United States)'),
(40448, 33690, 'no_lang_code', 'name', 'Geostock (United States)'),
(40449, 33691, 'no_lang_code', 'name', 'Modus Operandi (United States)'),
(40450, 33692, 'en', 'name', 'Nuts, Bolts and Thingamajigs'),
(40451, 33693, 'en', 'name', 'Stockholm School of Entrepreneurship'),
(40452, 33694, 'en', 'name', 'Western Slovakian Energy Corporation'),
(40453, 33694, 'no_lang_code', 'name', 'ZƔpadoslovenskƔ Energetika (Slovakia)'),
(40454, 33695, 'en', 'name', 'China Ocean Mineral Resource R&D Association'),
(40455, 33696, 'en', 'name', 'United States Social Security Administration'),
(40456, 33697, 'no_lang_code', 'name', 'Tri Alpha Energy (United States)'),
(40457, 33698, 'en', 'name', 'Government Hospital of Thoracic Medicine'),
(40458, 33699, 'en', 'name', 'Interface Symposia'),
(40459, 33700, 'no_lang_code', 'name', 'Spirit Lake Consulting (United States)'),
(40460, 33701, 'sk', 'name', 'Stredoslovenské múzeum'),
(40461, 33702, 'en', 'name', 'CUNY Energy Institute'),
(40462, 33703, 'no_lang_code', 'name', 'Folke RydƩn Production (Sweden)'),
(40463, 33704, 'de', 'name', 'Institut Fur Friedensforschung Und Sicherheitspolitik'),
(40464, 33704, 'en', 'name', 'Institute for Peace Research and Security Policy'),
(40465, 33705, 'en', 'name', 'Defense Acquisition Program Administration'),
(40466, 33706, 'sv', 'name', 'Jan Wallanders och Tom Hedelius stiftelse'),
(40467, 33707, 'en', 'name', 'National Tax Service'),
(40468, 33708, 'en', 'name', 'Appalachian Regional Commission'),
(40469, 33709, 'en', 'name', 'Beijing Municipal Education Commission'),
(40470, 33710, 'no_lang_code', 'name', 'KWD (Slovakia)'),
(40471, 33711, 'en', 'name', 'Japan Food Research Laboratories'),
(40472, 33711, 'ja', 'name', 'ę—„ęœ¬é£Ÿå“ē ”ē©¶ę‰€'),
(40473, 33712, 'no_lang_code', 'name', 'SfƩra (Slovakia)'),
(40474, 33713, 'fr', 'name', 'Cemsuisse'),
(40475, 33714, 'en', 'name', 'Bernstein Center for Computational Neuroscience Munich'),
(40476, 33715, 'en', 'name', 'University of Chicago Research Bangladesh'),
(40477, 33716, 'no_lang_code', 'name', 'Seibersdorf Laboratories (Austria)'),
(40478, 33717, 'no_lang_code', 'name', 'Texel (Canada)'),
(40479, 33718, 'no_lang_code', 'name', 'Axcentua (Sweden)'),
(40480, 33719, 'de', 'name', 'Exzellenzcluster Cellular Stress Responses in Aging-Associated Diseases'),
(40481, 33719, 'en', 'name', 'Cologne Excellence Cluster on Cellular Stress Responses in Aging Associated Diseases'),
(40482, 33720, 'no_lang_code', 'name', 'Antex Western (Canada)'),
(40483, 33721, 'el', 'name', 'ΤΕΙ Ī ĪµĪ»ĪæĻ€ĪæĪ½Ī½Ī®ĻƒĪæĻ…'),
(40484, 33721, 'en', 'name', 'Technological Educational Institute of Peloponnese'),
(40485, 33722, 'en', 'name', 'Southern Regional Council'),
(40486, 33723, 'no_lang_code', 'name', 'Milcord (United States)'),
(40487, 33724, 'en', 'name', 'Lancaster Bible College'),
(40488, 33725, 'en', 'name', 'Government of Saskatchewan'),
(40489, 33726, 'fr', 'name', 'SociƩtƩ de DƩveloppement de I''industrie Maricole'),
(40490, 33727, 'no_lang_code', 'name', 'Crearum (Sweden)'),
(40491, 33728, 'de', 'name', 'Landesmuseum KƤrnten'),
(40492, 33729, 'en', 'name', 'Group for the Analysis of Development'),
(40493, 33729, 'es', 'name', 'Grupo de AnƔlisis para el Desarrollo'),
(40494, 33730, 'en', 'name', 'Wallace H. Coulter Foundation'),
(40495, 33731, 'no_lang_code', 'name', 'Manning Diversified Forest Products (Canada)'),
(40496, 33732, 'no_lang_code', 'name', 'Genesis Industries (United States)'),
(40497, 33733, 'en', 'name', 'West Coast Trollers Association'),
(40498, 33734, 'no_lang_code', 'name', 'Future Vehicle Technologies (Canada)'),
(40499, 33735, 'no_lang_code', 'name', 'Pacific Engineering (United States)'),
(40500, 33736, 'en', 'name', 'Nova Scotia Department of Energy'),
(40501, 33737, 'en', 'name', 'IT Foundation for the Visually Impaired'),
(40502, 33738, 'no_lang_code', 'name', 'Nutronics (United States)'),
(40503, 33739, 'en', 'name', 'International Partnership for the Hydrogen and Fuel Cell in the Economy'),
(40504, 33740, 'en', 'name', 'Multiple Sclerosis Society of Canada'),
(40505, 33740, 'fr', 'name', 'SociƩtƩ canadienne de la sclƩrose en plaques'),
(40506, 33741, 'no_lang_code', 'name', 'Parker Hannifin (United States)'),
(40507, 33742, 'no_lang_code', 'name', 'Novosense (Sweden)'),
(40508, 33743, 'en', 'name', 'Congress of Neurological Surgeons'),
(40509, 33744, 'en', 'name', 'Conner Prairie'),
(40510, 33745, 'no_lang_code', 'name', 'Ericsson (Denmark)'),
(40511, 33746, 'en', 'name', 'Foundation for Research Support of the Federal District'),
(40512, 33747, 'no_lang_code', 'name', 'Signature Research (United States)'),
(40513, 33748, 'no_lang_code', 'name', 'RAM Photonics (United States)'),
(40514, 33749, 'en', 'name', 'Central Christian College of Kansas'),
(40515, 33750, 'en', 'name', 'Research to Prevent Blindness'),
(40516, 33751, 'no_lang_code', 'name', 'Capital Power (Canada)'),
(40517, 33752, 'no_lang_code', 'name', 'Wireless 2000 RF & UWB Technologies (Canada)'),
(40518, 33753, 'no_lang_code', 'name', 'Koenigsegg Automotive (Sweden)'),
(40519, 33754, 'no_lang_code', 'name', 'Medtronic (Ireland)'),
(40520, 33755, 'no_lang_code', 'name', 'Totech (Sweden)'),
(40521, 33756, 'no_lang_code', 'name', 'Osiris (Hungary)'),
(40522, 33757, 'no_lang_code', 'name', 'Boisaco (Canada)'),
(40523, 33758, 'no_lang_code', 'name', 'The Design Knowledge Company (United States)'),
(40524, 33759, 'de', 'name', 'Loewe-Zentrum für Synthetische Mikrobiologie'),
(40525, 33759, 'en', 'name', 'Loewe Center for Synthetic Microbiology'),
(40526, 33760, 'en', 'name', 'University of Atlanta'),
(40527, 33761, 'en', 'name', 'Rosetrees Trust'),
(40528, 33762, 'en', 'name', 'Technological University Myitkyina'),
(40529, 33762, 'my', 'name', 'į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ (မြစ်ကြီးနား)'),
(40530, 33763, 'no_lang_code', 'name', 'RONA (Slovakia)'),
(40531, 33764, 'en', 'name', 'Thrombosis Research Institute'),
(40532, 33765, 'no_lang_code', 'name', 'Genovis (Sweden)'),
(40533, 33766, 'en', 'name', 'United States-Israel Binational Agricultural Research and Development Fund'),
(40534, 33767, 'no_lang_code', 'name', 'EQUA Simulation (Sweden)'),
(40535, 33768, 'no_lang_code', 'name', 'Assocalzaturifici (Italy)'),
(40536, 33769, 'no_lang_code', 'name', 'Audio Analytic (United Kingdom)'),
(40537, 33770, 'en', 'name', 'Michigan Disability Rights Coalition'),
(40538, 33771, 'en', 'name', 'Public Utilities Board'),
(40539, 33772, 'no_lang_code', 'name', 'Illinois Rocstar (United States)'),
(40540, 33773, 'hu', 'name', 'Forster Kƶzpont'),
(40541, 33774, 'no_lang_code', 'name', 'FTL Systems (United States)'),
(40542, 33775, 'en', 'name', 'Institute for Foreign Affairs and Trade'),
(40543, 33776, 'da', 'name', 'Kommissionen for Videnskabelige UndersĆøgelser i GrĆønland'),
(40544, 33776, 'en', 'name', 'Commission for Scientific Investigations in Greenland'),
(40545, 33777, 'en', 'name', 'Chengdu Normal University'),
(40546, 33778, 'no_lang_code', 'name', 'Lakota Technical Solutions (United States)'),
(40547, 33779, 'no_lang_code', 'name', 'Liberating Technologies (United States)'),
(40548, 33780, 'en', 'name', 'Conservation Leadership Programme'),
(40549, 33781, 'en', 'name', 'State Library of New South Wales'),
(40550, 33782, 'en', 'name', 'Athens City'),
(40551, 33783, 'no_lang_code', 'name', 'Biorealis (Slovakia)'),
(40552, 33784, 'en', 'name', 'National Evidenc- based healthcare Collaborating Agency'),
(40553, 33785, 'en', 'name', 'Psychiatric Rehabilitation Association'),
(40554, 33786, 'no_lang_code', 'name', 'Cascade (United States)'),
(40555, 33787, 'no_lang_code', 'name', 'Talentum (Sweden)'),
(40556, 33788, 'no_lang_code', 'name', 'Nelson Engineering (United States)'),
(40557, 33789, 'en', 'name', 'Independent Broadcasting Associates'),
(40558, 33790, 'no_lang_code', 'name', 'Inventech Europe (Sweden)'),
(40559, 33791, 'no_lang_code', 'name', 'AOSOL (Portugal)'),
(40560, 33792, 'no_lang_code', 'name', 'Chunghwa Telecom (Taiwan)'),
(40561, 33793, 'no_lang_code', 'name', 'Perrigo (Belgium)'),
(40562, 33794, 'en', 'name', 'Novartis Foundation'),
(40563, 33795, 'en', 'name', 'ORCID'),
(40564, 33796, 'no_lang_code', 'name', 'Dongfeng General Hospital'),
(40565, 33797, 'no_lang_code', 'name', 'Smiths Detection (United States)'),
(40566, 33798, 'ja', 'name', 'č±Šē”°åŽšē”Ÿē—…é™¢'),
(40567, 33798, 'no_lang_code', 'name', 'Toyota Kosei Hospital'),
(40568, 33799, 'no_lang_code', 'name', 'Odyssey Investment Partners (United States)'),
(40569, 33800, 'no_lang_code', 'name', 'Renaissance Sciences Corporation (United States)'),
(40570, 33801, 'no_lang_code', 'name', 'Vehicle Control Technologies (United States)'),
(40571, 33802, 'en', 'name', 'Emmaus Bible College'),
(40572, 33803, 'en', 'name', 'Master''s College'),
(40573, 33804, 'no_lang_code', 'name', 'Avtech (Sweden)'),
(40574, 33805, 'en', 'name', 'Chartered Institute of Logistics and Transport'),
(40575, 33806, 'no_lang_code', 'name', 'Odyssian Technology (United States)'),
(40576, 33807, 'en', 'name', 'Bupa UK Foundation'),
(40577, 33808, 'en', 'name', 'Dongyang People''s Hospital'),
(40578, 33809, 'no_lang_code', 'name', 'Versatilis (United States)'),
(40579, 33810, 'no_lang_code', 'name', 'Sage Technologies (United States)'),
(40580, 33811, 'en', 'name', 'Forest Institute'),
(40581, 33812, 'sk', 'name', 'Aqua Vita - ŽivÔ voda'),
(40582, 33813, 'no_lang_code', 'name', 'Stilman Advanced Strategies (United States)'),
(40583, 33814, 'no_lang_code', 'name', 'TopVisible (Sweden)'),
(40584, 33815, 'en', 'name', 'Scleroderma Foundation'),
(40585, 33816, 'no_lang_code', 'name', 'American Semiconductor (United States)'),
(40586, 33817, 'no_lang_code', 'name', 'AirScience Technologies (Canada)'),
(40587, 33818, 'en', 'name', 'European Foundation for Alcohol Research'),
(40588, 33819, 'de', 'name', 'Fachhochschule Stralsund'),
(40589, 33819, 'en', 'name', 'University of Applied Sciences Stralsund'),
(40590, 33820, 'no_lang_code', 'name', 'GreenValue (Switzerland)'),
(40591, 33821, 'en', 'name', 'Nyack College'),
(40592, 33822, 'no_lang_code', 'name', 'Systems & Processes Engineering Corporation (United States)'),
(40593, 33823, 'en', 'name', 'American Orthopaedic Association'),
(40594, 33824, 'fr', 'name', 'Monnaie royale canadienne'),
(40595, 33824, 'no_lang_code', 'name', 'Royal Canadian Mint (Canada)'),
(40596, 33825, 'no_lang_code', 'name', 'Spectranetix (United States)'),
(40597, 33826, 'en', 'name', 'Piedmont College'),
(40598, 33827, 'en', 'name', 'National Organization for Rare Disorders'),
(40599, 33828, 'sk', 'name', 'Centire'),
(40600, 33829, 'no_lang_code', 'name', 'VoiceAge (Canada)'),
(40601, 33830, 'en', 'name', 'Pelican Cancer Foundation'),
(40602, 33831, 'it', 'name', 'Fondazione Monte di Bologna and Ravenna'),
(40603, 33832, 'no_lang_code', 'name', 'ChemoCentryx (United States)'),
(40604, 33833, 'en', 'name', 'Zhejiang Institute of Science and Technology Information'),
(40605, 33834, 'no_lang_code', 'name', 'UFA (United States)'),
(40606, 33835, 'no_lang_code', 'name', 'Paton (Canada)'),
(40607, 33836, 'no_lang_code', 'name', 'Thorlabs (United States)'),
(40608, 33837, 'no_lang_code', 'name', 'STR Europe (France)'),
(40609, 33838, 'no_lang_code', 'name', 'Equinor (Canada)'),
(40610, 33839, 'en', 'name', 'Ministry of National Development'),
(40611, 33840, 'en', 'name', 'Hangzhou Science and Technology Commission'),
(40612, 33841, 'fr', 'name', 'IngƩsup'),
(40613, 33842, 'fr', 'name', 'Fondation d''Aide pour la Recherche sur la Sclerose en Plaques'),
(40614, 33843, 'en', 'name', 'Northern Jiangsu People''s Hospital'),
(40615, 33843, 'zh', 'name', 'ę±Ÿč‹ēœč‹åŒ—äŗŗę°‘åŒ»é™¢'),
(40616, 33844, 'no_lang_code', 'name', 'Frontier Technology Incorporation (United States)'),
(40617, 33845, 'no_lang_code', 'name', 'M4 Engineering (United States)'),
(40618, 33846, 'no_lang_code', 'name', 'Dafo Fomtec (Sweden)'),
(40619, 33847, 'en', 'name', 'Mount Washington College'),
(40620, 33848, 'no_lang_code', 'name', 'Applied Materials (United States)'),
(40621, 33849, 'no_lang_code', 'name', 'LuminUltra Technologies (Canada)'),
(40622, 33850, 'no_lang_code', 'name', 'Aguettant (France)'),
(40623, 33851, 'en', 'name', 'FoodDrinkEurope'),
(40624, 33852, 'no_lang_code', 'name', 'Protobios (Estonia)'),
(40625, 33853, 'no_lang_code', 'name', 'ConocoPhillips (United States)'),
(40626, 33854, 'no_lang_code', 'name', 'Energy Research Company (United States)'),
(40627, 33855, 'en', 'name', 'Hewlett Foundation'),
(40628, 33856, 'no_lang_code', 'name', 'Finja (Sweden)'),
(40629, 33857, 'no_lang_code', 'name', 'Fibercryst (France)'),
(40630, 33858, 'en', 'name', 'Van Ameringen Foundation'),
(40631, 33859, 'en', 'name', 'Centenary College of New Jersey'),
(40632, 33860, 'no_lang_code', 'name', 'Ideus (Sweden)'),
(40633, 33861, 'no_lang_code', 'name', 'SunDanzer (United States)'),
(40634, 33862, 'no_lang_code', 'name', 'TyrƩns (Sweden)'),
(40635, 33863, 'en', 'name', 'Goldey–Beacom College'),
(40636, 33864, 'en', 'name', 'Canadian Hydrogen and Fuel Cell Association'),
(40637, 33865, 'no_lang_code', 'name', 'Gipeco (Sweden)'),
(40638, 33866, 'no_lang_code', 'name', 'Eurorad (France)'),
(40639, 33867, 'no_lang_code', 'name', 'Architectural Applications (United States)'),
(40640, 33868, 'no_lang_code', 'name', 'Cochlear (Australia)'),
(40641, 33869, 'no_lang_code', 'name', 'ScoreCloud (Sweden)'),
(40642, 33870, 'no_lang_code', 'name', 'Atlantic Hydrogen (Canada)'),
(40643, 33871, 'no_lang_code', 'name', 'Global Engineering Research and Technologies (United States)'),
(40644, 33872, 'no_lang_code', 'name', 'Keystone Synergistic Enterprises (United States)'),
(40645, 33873, 'en', 'name', 'Nasarawa State Ministry of Health'),
(40646, 33874, 'en', 'name', 'Brown Foundation'),
(40647, 33875, 'de', 'name', 'Europäische Zentrum für Schadenersatz- und Versicherungsrecht'),
(40648, 33875, 'en', 'name', 'European Centre of Tort and Insurance Law'),
(40649, 33876, 'en', 'name', 'Alaska Sea Grant'),
(40650, 33877, 'en', 'name', 'VISTA Science & Technology'),
(40651, 33878, 'en', 'name', 'MRC Lifecourse Epidemiology Unit'),
(40652, 33879, 'no_lang_code', 'name', 'Atmospheric Observing Systems (United States)'),
(40653, 33880, 'en', 'name', 'Heart Research UK'),
(40654, 33881, 'en', 'name', 'Research Institute of Posts and Telecommunications'),
(40655, 33882, 'no_lang_code', 'name', 'Sienna Technologies (United States)'),
(40656, 33883, 'en', 'name', 'Chadwick University'),
(40657, 33884, 'no_lang_code', 'name', 'Infrared Laboratories (United States)'),
(40658, 33885, 'no_lang_code', 'name', 'Nielsen Engineering & Research (United States)'),
(40659, 33886, 'no_lang_code', 'name', 'Archangel Systems (United States)'),
(40660, 33887, 'en', 'name', 'Ideon Agro Food'),
(40661, 33888, 'no_lang_code', 'name', 'Triangle Polymer Technologies (United States)'),
(40662, 33889, 'no_lang_code', 'name', 'Soraa (United States)'),
(40663, 33890, 'en', 'name', 'Hainan Medical College Hospital'),
(40664, 33891, 'no_lang_code', 'name', 'Applied Technology Associates (United States)'),
(40665, 33892, 'en', 'name', 'Washington Employment Security Department'),
(40666, 33893, 'no_lang_code', 'name', 'Orora Design Technologies (United States)'),
(40667, 33894, 'no_lang_code', 'name', 'Goleta Star (United States)'),
(40668, 33895, 'no_lang_code', 'name', 'OpiFlex (Sweden)'),
(40669, 33896, 'no_lang_code', 'name', 'Vónin (Canada)'),
(40670, 33897, 'no_lang_code', 'name', 'Integrum (Sweden)'),
(40671, 33898, 'no_lang_code', 'name', 'Hill Engineering (United States)'),
(40672, 33899, 'en', 'name', 'Bat Conservation International'),
(40673, 33900, 'no_lang_code', 'name', 'Advanced Rotorcraft Technology (United States)'),
(40674, 33901, 'no_lang_code', 'name', 'EsFem'),
(40675, 33902, 'sk', 'name', 'Szenczi MolnƔr Albert Alapiskola'),
(40676, 33903, 'en', 'name', 'Rothamsted International'),
(40677, 33904, 'en', 'name', 'Dutch Network of Systems and Control'),
(40678, 33905, 'no_lang_code', 'name', 'Kurt J. Lesker (United Kingdom)'),
(40679, 33906, 'no_lang_code', 'name', 'FlexProp (Sweden)'),
(40680, 33907, 'en', 'name', 'Andrew W. Mellon Foundation'),
(40681, 33908, 'no_lang_code', 'name', 'Southeast Nonwovens (United States)'),
(40682, 33909, 'no_lang_code', 'name', 'Soquem (Canada)'),
(40683, 33910, 'en', 'name', 'International Association of Machinists and Aerospace Workers'),
(40684, 33911, 'no_lang_code', 'name', 'BrainAid (United States)'),
(40685, 33912, 'en', 'name', 'National Council on Aging'),
(40686, 33913, 'no_lang_code', 'name', 'Zöldségtermesztési Kutató Intézet (Hungary)'),
(40687, 33914, 'en', 'name', 'Central Penn College'),
(40688, 33915, 'no_lang_code', 'name', 'Tecnologie Avanzate (Italy)'),
(40689, 33916, 'no_lang_code', 'name', 'Information Extraction & Transport (United States)'),
(40690, 33917, 'en', 'name', 'John Innes Foundation'),
(40691, 33918, 'no_lang_code', 'name', 'Veritay Technology (United States)'),
(40692, 33919, 'no_lang_code', 'name', 'Electro Magnetic Applications (United States)'),
(40693, 33920, 'no_lang_code', 'name', 'Libri Kiadó (Hungary)'),
(40694, 33921, 'no_lang_code', 'name', 'Catalyst Paper (Canada)'),
(40695, 33922, 'en', 'name', 'Korea Maritime Institute'),
(40696, 33922, 'ko', 'name', 'ķ•œźµ­ķ•“ģ–‘ģˆ˜ģ‚°ź°œė°œģ›'),
(40697, 33923, 'no_lang_code', 'name', 'Optimax (United States)'),
(40698, 33924, 'no_lang_code', 'name', 'Directed Vapor Technologies (United States)'),
(40699, 33925, 'en', 'name', 'Scientific Centre of Monaco'),
(40700, 33925, 'fr', 'name', 'Centre Scientifique de Monaco'),
(40701, 33926, 'no_lang_code', 'name', 'PP Polymer (Sweden)'),
(40702, 33927, 'no_lang_code', 'name', 'Analytical Services & Materials (United States)'),
(40703, 33928, 'en', 'name', 'NIHR Queen Square Dementia Biomedical Research Unit'),
(40704, 33929, 'no_lang_code', 'name', 'Mtekvision (Canada)'),
(40705, 33930, 'en', 'name', 'World Food Programme'),
(40706, 33930, 'es', 'name', 'Programa Mundial de Alimentos'),
(40707, 33930, 'fr', 'name', 'Programme Alimentaire Mondial'),
(40708, 33930, 'it', 'name', 'Programma Alimentare Mondiale'),
(40709, 33931, 'no_lang_code', 'name', 'JRM Technologies (United States)'),
(40710, 33932, 'en', 'name', 'Institute for Development and International Relations'),
(40711, 33933, 'en', 'name', 'Australian Institute of Criminology'),
(40712, 33934, 'no_lang_code', 'name', 'Third Wave Systems (United States)'),
(40713, 33935, 'no_lang_code', 'name', 'Astronautics Corporation of America'),
(40714, 33936, 'no_lang_code', 'name', 'Materials Research Institute (United States)'),
(40715, 33937, 'no_lang_code', 'name', 'TES International (United States)'),
(40716, 33938, 'no_lang_code', 'name', 'Svenska Aerogel (Sweden)'),
(40717, 33939, 'en', 'name', 'John E. Fetzer Memorial Trust'),
(40718, 33940, 'en', 'name', 'Assistive Technology Resource Centers of Hawaii'),
(40719, 33941, 'no_lang_code', 'name', 'Scientic (United States)'),
(40720, 33942, 'no_lang_code', 'name', 'Athena Environmental Sciences (United States)'),
(40721, 33943, 'no_lang_code', 'name', 'SciGenom Labs (India)'),
(40722, 33944, 'en', 'name', 'Aeronautics Research and Development Board'),
(40723, 33945, 'no_lang_code', 'name', 'NapvilƔg (Hungary)'),
(40724, 33946, 'en', 'name', 'Institute of Ethnology and Folklore Research'),
(40725, 33947, 'no_lang_code', 'name', 'TransMIT (Germany)'),
(40726, 33948, 'en', 'name', 'Technological University Kyaukse'),
(40727, 33948, 'my', 'name', 'į€€į€»į€±į€¬į€€į€ŗį€†į€Šį€ŗ į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(40728, 33949, 'no_lang_code', 'name', 'Ceska Astronomicka Spolecnost'),
(40729, 33950, 'no_lang_code', 'name', 'STUNS'),
(40730, 33951, 'no_lang_code', 'name', 'NDI Engineering Company (United States)'),
(40731, 33952, 'no_lang_code', 'name', 'Ortoma (Sweden)'),
(40732, 33953, 'no_lang_code', 'name', 'O’Gara Group (United States)'),
(40733, 33954, 'no_lang_code', 'name', 'Matrix Research (United States)'),
(40734, 33955, 'en', 'name', 'Victim Support'),
(40735, 33956, 'en', 'name', 'SaskWater'),
(40736, 33957, 'en', 'name', 'HeliCat Canada'),
(40737, 33958, 'en', 'name', 'Oticon Foundation in New Zealand'),
(40738, 33959, 'fr', 'name', 'Institut de Recherche en RƩadaptation-RƩinsertion'),
(40739, 33960, 'no_lang_code', 'name', 'Nu-Trek (United States)'),
(40740, 33961, 'en', 'name', 'College for Creative Studies'),
(40741, 33962, 'en', 'name', 'Doris Duke Charitable Foundation'),
(40742, 33963, 'en', 'name', 'Gastroenterological Society of Australia'),
(40743, 33964, 'no_lang_code', 'name', 'Metron (United States)'),
(40744, 33965, 'it', 'name', 'Istituto Italiano per l''Africa e l''Oriente'),
(40745, 33966, 'en', 'name', 'CHA Bundang Medical Center'),
(40746, 33967, 'no_lang_code', 'name', 'Time Critical Networks (Sweden)'),
(40747, 33968, 'no_lang_code', 'name', 'Polymer Aging Concepts (United States)'),
(40748, 33969, 'no_lang_code', 'name', 'Canadian Bio-Systems (Canada)'),
(40749, 33970, 'no_lang_code', 'name', 'Zenterio (Sweden)'),
(40750, 33971, 'no_lang_code', 'name', 'Uminova Innovation (Sweden)'),
(40751, 33972, 'no_lang_code', 'name', 'Remtech (United States)'),
(40752, 33973, 'no_lang_code', 'name', 'Community Options (United States)'),
(40753, 33974, 'no_lang_code', 'name', 'Scandinavian Leadership (Sweden)'),
(40754, 33975, 'no_lang_code', 'name', 'AeroDNA (United Kingdom)'),
(40755, 33976, 'no_lang_code', 'name', 'AngloGold Ashanti (South Africa)'),
(40756, 33977, 'en', 'name', 'Henan Provincial Health Bureau'),
(40757, 33978, 'en', 'name', 'Sextures Institute'),
(40758, 33979, 'no_lang_code', 'name', 'Ahrens (Sweden)'),
(40759, 33980, 'en', 'name', 'Social Security Information Service'),
(40760, 33981, 'en', 'name', 'Korea Meteorological Administration'),
(40761, 33982, 'en', 'name', 'Under and Tuglas Literature Centre'),
(40762, 33982, 'et', 'name', 'Underi ja Tuglase Kirjanduskeskus'),
(40763, 33983, 'no_lang_code', 'name', 'Applied Visions (United States)'),
(40764, 33984, 'en', 'name', 'Korean Cancer Association'),
(40765, 33985, 'en', 'name', 'Regional Hospital West Jutland'),
(40766, 33986, 'no_lang_code', 'name', 'Platinum Equity (United States)'),
(40767, 33987, 'no_lang_code', 'name', 'Minacs (Canada)'),
(40768, 33988, 'no_lang_code', 'name', 'LNK (United States)'),
(40769, 33989, 'no_lang_code', 'name', 'Celadon Laboratories (United States)'),
(40770, 33990, 'en', 'name', 'Second Affiliated Hospital of Nanjing Medical University'),
(40771, 33991, 'en', 'name', 'QuƩbec Road Builders and Heavy Construction Association'),
(40772, 33991, 'fr', 'name', 'Association des constructeurs de routes et grands travaux du QuƩbec'),
(40773, 33992, 'no_lang_code', 'name', 'Nexant (United States)'),
(40774, 33993, 'en', 'name', 'EsmƩe Fairbairn Foundation'),
(40775, 33994, 'en', 'name', 'National Centre for Vocational Education Research'),
(40776, 33995, 'no_lang_code', 'name', 'Datachassi (Sweden)'),
(40777, 33996, 'en', 'name', 'Haliburton Forest & Wild Life Reserve'),
(40778, 33997, 'no_lang_code', 'name', 'Apollo Instruments (United States)'),
(40779, 33998, 'fr', 'name', 'ONG Karkara'),
(40780, 33999, 'no_lang_code', 'name', 'Selee Corporation (United States)'),
(40781, 34000, 'no_lang_code', 'name', 'Earthmaster Environmental Strategies (Canada)'),
(40782, 34001, 'no_lang_code', 'name', 'Op -Tim (Slovakia)'),
(40783, 34002, 'en', 'name', 'Arkansas Biosciences Institute'),
(40784, 34003, 'en', 'name', 'London Centre for Nanotechnology'),
(40785, 34004, 'nl', 'name', 'Refaja Ziekenhuis'),
(40786, 34005, 'en', 'name', 'Western Pennsylvania School for Blind Children'),
(40787, 34006, 'en', 'name', 'Devereux'),
(40788, 34007, 'en', 'name', 'Carolina Institute for NanoMedicine'),
(40789, 34008, 'no_lang_code', 'name', 'Emcore (United States)'),
(40790, 34009, 'en', 'name', 'Giovanni Armenise-Harvard Foundation'),
(40791, 34010, 'en', 'name', 'Swedish Institute in Rome'),
(40792, 34010, 'it', 'name', 'Istituto Svedese di studi classici a Roma'),
(40793, 34011, 'en', 'name', 'Zoological Park Organization'),
(40794, 34012, 'no_lang_code', 'name', 'Radiance Technologies (United States)'),
(40795, 34013, 'no_lang_code', 'name', 'Samarkand2015 (Sweden)'),
(40796, 34014, 'no_lang_code', 'name', 'Softronics (United States)'),
(40797, 34015, 'en', 'name', 'Conway School of Landscape Design'),
(40798, 34016, 'no_lang_code', 'name', 'Tecrea (United Kingdom)'),
(40799, 34017, 'en', 'name', 'Nanjing Chest Hospital'),
(40800, 34018, 'en', 'name', 'International Cinematographers Guild'),
(40801, 34019, 'en', 'name', 'IASO General Hospital'),
(40802, 34020, 'en', 'name', 'Korea Institute of Industrial Technology'),
(40803, 34020, 'ko', 'name', 'ķ•œźµ­ģƒģ‚°źø°ģˆ ģ—°źµ¬ģ›'),
(40804, 34021, 'en', 'name', 'Redcar and Cleveland Borough Council'),
(40805, 34022, 'no_lang_code', 'name', 'PVOH Polymers (United Kingdom)'),
(40806, 34023, 'hu', 'name', 'Piarista Rend Magyar TartomƔnya'),
(40807, 34024, 'no_lang_code', 'name', 'Centeye (United States)'),
(40808, 34025, 'no_lang_code', 'name', 'Spectrum Photonics (United States)'),
(40809, 34026, 'en', 'name', 'Georgia Department of Labor'),
(40810, 34027, 'en', 'name', 'Forests of the Slovak Republic'),
(40811, 34027, 'sk', 'name', 'Lesy Slovenskej Republiky'),
(40812, 34028, 'no_lang_code', 'name', 'GelTech Solutions (United States)'),
(40813, 34029, 'fr', 'name', 'Ɖnergie NB');
INSERT INTO `ror_settings` VALUES
(40814, 34029, 'no_lang_code', 'name', 'Energie NB Power (Canada)'),
(40815, 34030, 'no_lang_code', 'name', 'Selden Mast (Sweden)'),
(40816, 34031, 'no_lang_code', 'name', 'Proxim (United States)'),
(40817, 34032, 'no_lang_code', 'name', 'Airex (United States)'),
(40818, 34033, 'en', 'name', 'Center for Scientific Review'),
(40819, 34034, 'no_lang_code', 'name', 'Reynard Corporation (United States)'),
(40820, 34035, 'no_lang_code', 'name', 'Metrodat (Slovakia)'),
(40821, 34036, 'no_lang_code', 'name', 'MAT-Obaly (Slovakia)'),
(40822, 34037, 'no_lang_code', 'name', 'Oculus Innovative Sciences (United States)'),
(40823, 34038, 'en', 'name', 'Evangelical Lutheran Church'),
(40824, 34039, 'en', 'name', 'Kansas Public Schools'),
(40825, 34040, 'no_lang_code', 'name', 'Shanxi Zhendong Pharmaceutical (China)'),
(40826, 34040, 'zh', 'name', 'å±±č„æęŒÆäøœåˆ¶čÆč‚”ä»½ęœ‰é™å…¬åø'),
(40827, 34041, 'no_lang_code', 'name', '3TEX (United States)'),
(40828, 34042, 'no_lang_code', 'name', 'Prefa Alfa (Slovakia)'),
(40829, 34043, 'no_lang_code', 'name', 'Enseco Energy Services (Canada)'),
(40830, 34044, 'no_lang_code', 'name', 'Agpyme (Spain)'),
(40831, 34045, 'no_lang_code', 'name', 'Lumina (Sweden)'),
(40832, 34046, 'no_lang_code', 'name', 'St. Martin de Porres Hospital'),
(40833, 34047, 'de', 'name', 'Zoologische Staatssammlung München'),
(40834, 34047, 'en', 'name', 'Bavarian State Collection of Zoology'),
(40835, 34048, 'no_lang_code', 'name', 'Q-Peak (United States)'),
(40836, 34049, 'no_lang_code', 'name', 'Space Photonics (United States)'),
(40837, 34050, 'en', 'name', 'Nanjing Second Hospital'),
(40838, 34051, 'no_lang_code', 'name', 'Clipper Windpower (United States)'),
(40839, 34052, 'en', 'name', 'Institute of Management Accountants'),
(40840, 34053, 'en', 'name', 'Education Department of Heilongjiang Province'),
(40841, 34054, 'en', 'name', 'Hillside Rehabilitation Hospital'),
(40842, 34055, 'no_lang_code', 'name', 'Pranalytica (United States)'),
(40843, 34056, 'no_lang_code', 'name', 'Construction DJL (Canada)'),
(40844, 34057, 'no_lang_code', 'name', 'PV3 Technologies (United Kingdom)'),
(40845, 34058, 'no_lang_code', 'name', 'NquiringMinds (United Kingdom)'),
(40846, 34059, 'no_lang_code', 'name', 'Bioptech (Sweden)'),
(40847, 34060, 'es', 'name', 'Contactica'),
(40848, 34061, 'no_lang_code', 'name', 'Dignitas Technologies (United States)'),
(40849, 34062, 'no_lang_code', 'name', 'Carbon Solutions (United States)'),
(40850, 34063, 'no_lang_code', 'name', 'Setek Elektronik (Sweden)'),
(40851, 34064, 'en', 'name', 'Udens College'),
(40852, 34065, 'no_lang_code', 'name', 'Dragonfly Pictures (United States)'),
(40853, 34066, 'no_lang_code', 'name', 'Xidex (United States)'),
(40854, 34067, 'no_lang_code', 'name', 'Scientific Simulations (United States)'),
(40855, 34068, 'no_lang_code', 'name', 'CogniTech (United States)'),
(40856, 34069, 'en', 'name', 'Commission on Higher Education'),
(40857, 34070, 'en', 'name', 'NIHR Leicester Respiratory Biomedical Research Unit'),
(40858, 34071, 'no_lang_code', 'name', 'Nscrypt (United States)'),
(40859, 34072, 'hu', 'name', 'Teleki LÔszló AlapítvÔny'),
(40860, 34073, 'no_lang_code', 'name', 'Medicyte (Germany)'),
(40861, 34074, 'en', 'name', 'Old Church Slavonic Institute'),
(40862, 34075, 'en', 'name', 'Hesston College'),
(40863, 34076, 'no_lang_code', 'name', 'Cascade Engineering (United States)'),
(40864, 34077, 'en', 'name', 'Allen College'),
(40865, 34078, 'no_lang_code', 'name', 'Materials Research & Design (United States)'),
(40866, 34079, 'en', 'name', 'European Research Institute of Catalysis'),
(40867, 34080, 'en', 'name', 'New Delhi Tuberculosis Center'),
(40868, 34081, 'en', 'name', 'Pacific Northwest College of Art'),
(40869, 34082, 'en', 'name', 'Addenbrooke''s Charitable Trust'),
(40870, 34083, 'no_lang_code', 'name', 'Spectra Research (United States)'),
(40871, 34084, 'no_lang_code', 'name', 'LSP Technologies (United States)'),
(40872, 34085, 'no_lang_code', 'name', 'Parrheim Foods (Canada)'),
(40873, 34086, 'en', 'name', 'Tanzania Wildlife Research Institute'),
(40874, 34087, 'en', 'name', 'Slovak National Museum'),
(40875, 34088, 'sk', 'name', 'FakultnÔ nemocnica s poliklinikou Žilina'),
(40876, 34089, 'en', 'name', 'National Endowment for the Arts'),
(40877, 34090, 'no_lang_code', 'name', 'Spacescape (Sweden)'),
(40878, 34091, 'no_lang_code', 'name', 'Genvac Aerospace (United States)'),
(40879, 34092, 'de', 'name', 'Bundesamt für Umwelt'),
(40880, 34092, 'en', 'name', 'Federal Office for the Environment'),
(40881, 34093, 'en', 'name', 'Central Norway Regional Health Authority'),
(40882, 34094, 'no_lang_code', 'name', 'Eacom Timber Corporation (Canada)'),
(40883, 34095, 'no_lang_code', 'name', 'Jacobs (Canada)'),
(40884, 34096, 'no_lang_code', 'name', 'Spencer Industries (United States)'),
(40885, 34097, 'no_lang_code', 'name', 'Fluorochem (United States)'),
(40886, 34098, 'no_lang_code', 'name', 'Air Fuel Synthesis (United Kingdom)'),
(40887, 34099, 'nl', 'name', 'SNS Reaal'),
(40888, 34100, 'no_lang_code', 'name', 'Research Network (United States)'),
(40889, 34101, 'en', 'name', 'The Francis Crick Institute'),
(40890, 34102, 'no_lang_code', 'name', 'APIS (Slovakia)'),
(40891, 34103, 'no_lang_code', 'name', 'Abreos Biosciences (United States)'),
(40892, 34104, 'sv', 'name', 'Almega'),
(40893, 34105, 'en', 'name', 'Wood Industry Cluster'),
(40894, 34106, 'no_lang_code', 'name', 'Vector Test Systems (United States)'),
(40895, 34107, 'en', 'name', 'International Institute for Asian Studies'),
(40896, 34108, 'no_lang_code', 'name', 'Dalton Pharma Services (Canada)'),
(40897, 34109, 'en', 'name', 'Alberta Chicken Producers (Canada)'),
(40898, 34110, 'no_lang_code', 'name', 'Image Intelligence (Sweden)'),
(40899, 34111, 'no_lang_code', 'name', 'AdTech Systems Research (United States)'),
(40900, 34112, 'en', 'name', 'National Foundation for Cancer Research'),
(40901, 34113, 'no_lang_code', 'name', 'ProcesnƔ AutomatizƔcia (Slovakia)'),
(40902, 34114, 'en', 'name', 'CFA Institute'),
(40903, 34115, 'no_lang_code', 'name', 'International BEZ Group (Slovakia)'),
(40904, 34116, 'no_lang_code', 'name', 'Physitron (United States)'),
(40905, 34117, 'no_lang_code', 'name', 'New Editions Consulting (United States)'),
(40906, 34118, 'no_lang_code', 'name', 'Founders Alliance (Sweden)'),
(40907, 34119, 'en', 'name', 'Royal Canadian Mounted Police'),
(40908, 34119, 'fr', 'name', 'Gendarmerie royale du Canada'),
(40909, 34120, 'no_lang_code', 'name', 'GlobVision (Canada)'),
(40910, 34121, 'no_lang_code', 'name', 'RAM Laboratories (United States)'),
(40911, 34122, 'no_lang_code', 'name', 'Anholt Technologies (United States)'),
(40912, 34123, 'no_lang_code', 'name', 'Lewis Innovative Technologies (United States)'),
(40913, 34124, 'en', 'name', 'College of Metaphysical Studies'),
(40914, 34125, 'no_lang_code', 'name', 'PCL Construction (Canada)'),
(40915, 34126, 'en', 'name', 'Diabetes Action Research and Education Foundation'),
(40916, 34127, 'no_lang_code', 'name', 'Kushing (Slovakia)'),
(40917, 34128, 'no_lang_code', 'name', 'Somfy (Canada)'),
(40918, 34129, 'no_lang_code', 'name', 'AIL Research (United States)'),
(40919, 34130, 'no_lang_code', 'name', 'MOHR Test and Measurement (United States)'),
(40920, 34131, 'no_lang_code', 'name', 'Lambert Peat Moss (Canada)'),
(40921, 34132, 'fr', 'name', 'Fondation pour la Recherche MƩdicale'),
(40922, 34133, 'en', 'name', 'Bronx Community College'),
(40923, 34134, 'en', 'name', 'National Urban League'),
(40924, 34135, 'no_lang_code', 'name', 'Mechanical Design (Slovakia)'),
(40925, 34136, 'no_lang_code', 'name', 'Lambda Science (United States)'),
(40926, 34137, 'en', 'name', 'Steel Structures Education Foundation'),
(40927, 34138, 'no_lang_code', 'name', 'Photidify (Sweden)'),
(40928, 34139, 'no_lang_code', 'name', 'Ardoran (Estonia)'),
(40929, 34140, 'no_lang_code', 'name', 'Vectraxx (United States)'),
(40930, 34141, 'en', 'name', 'International Council of Shopping Centers'),
(40931, 34142, 'no_lang_code', 'name', 'MACOM (United States)'),
(40932, 34143, 'no_lang_code', 'name', 'Biopeak Corporation (Canada)'),
(40933, 34144, 'no_lang_code', 'name', 'Winterkvist.com (Sweden)'),
(40934, 34145, 'en', 'name', 'South Texas College of Law'),
(40935, 34146, 'en', 'name', 'Global Initiative on Psychiatry'),
(40936, 34147, 'no_lang_code', 'name', 'Global InfoTek (United States)'),
(40937, 34148, 'de', 'name', 'Kantonsspital Graubünden'),
(40938, 34149, 'no_lang_code', 'name', 'Betamont (Slovakia)'),
(40939, 34150, 'en', 'name', 'Society for Reproduction and Fertility'),
(40940, 34151, 'no_lang_code', 'name', 'Wildcat Discovery Technologies (United States)'),
(40941, 34152, 'en', 'name', 'China Geological Survey'),
(40942, 34152, 'zh', 'name', 'äø­å›½åœ°č“Øč°ƒęŸ„å±€ę°“ę–‡åœ°č“ØēŽÆå¢ƒåœ°č“Øč°ƒęŸ„äø­åæƒ'),
(40943, 34153, 'no_lang_code', 'name', 'Microsoft (India)'),
(40944, 34154, 'no_lang_code', 'name', 'Princeton Scientific (United States)'),
(40945, 34155, 'en', 'name', 'Winona County Historical Society'),
(40946, 34156, 'no_lang_code', 'name', 'Maibec (Canada)'),
(40947, 34157, 'en', 'name', 'Australian Centre for International Agricultural Research'),
(40948, 34158, 'no_lang_code', 'name', 'Axxence (Slovakia)'),
(40949, 34159, 'en', 'name', 'Hudson River Foundation'),
(40950, 34160, 'en', 'name', 'Century University'),
(40951, 34161, 'en', 'name', 'Brain Hospital of Jilin'),
(40952, 34162, 'en', 'name', 'National Medical Research Council'),
(40953, 34163, 'no_lang_code', 'name', 'Springmatter (United States)'),
(40954, 34164, 'en', 'name', 'Canadian Honey Council'),
(40955, 34165, 'no_lang_code', 'name', 'CBL (Germany)'),
(40956, 34166, 'en', 'name', 'Indian National Centre for Ocean Information Services'),
(40957, 34167, 'no_lang_code', 'name', 'Evidente (Sweden)'),
(40958, 34168, 'no_lang_code', 'name', 'Vignet (United States)'),
(40959, 34169, 'no_lang_code', 'name', 'Nalco (Canada)'),
(40960, 34170, 'no_lang_code', 'name', 'Sƶdra SkogsƤgarna (Sweden)'),
(40961, 34171, 'no_lang_code', 'name', 'Electronics Development Corporation (United States)'),
(40962, 34172, 'no_lang_code', 'name', 'AeroSoft (United States)'),
(40963, 34173, 'en', 'name', 'Ministry of Environment'),
(40964, 34173, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ķ™˜ź²½ė¶€'),
(40965, 34174, 'no_lang_code', 'name', 'PrivaTran (United States)'),
(40966, 34175, 'en', 'name', 'Environmental Protection Department of Jiangsu Province'),
(40967, 34176, 'en', 'name', 'Applied Natural Sciences'),
(40968, 34177, 'en', 'name', 'Tennessee Department of Human Services'),
(40969, 34178, 'en', 'name', 'Ministry of Land, Infrastructure and Transport'),
(40970, 34178, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ 국토교통부'),
(40971, 34179, 'en', 'name', 'SKIP of New York'),
(40972, 34180, 'no_lang_code', 'name', 'Chip Design Systems (United States)'),
(40973, 34181, 'en', 'name', 'Royal College of Psychiatrists'),
(40974, 34182, 'en', 'name', 'Dermatology Foundation'),
(40975, 34183, 'no_lang_code', 'name', 'ATS Automation Tooling Systems (United States)'),
(40976, 34184, 'no_lang_code', 'name', 'Blackwing (Sweden)'),
(40977, 34185, 'no_lang_code', 'name', 'MicroStep-MIS (Slovakia)'),
(40978, 34186, 'no_lang_code', 'name', 'ScandiDos (Sweden)'),
(40979, 34187, 'no_lang_code', 'name', 'Advanced Communication Systems (United States)'),
(40980, 34188, 'no_lang_code', 'name', 'Innovative Defense Technologies (United States)'),
(40981, 34189, 'no_lang_code', 'name', 'Seamless Solutions (United States)'),
(40982, 34190, 'no_lang_code', 'name', 'General Compression (United States)'),
(40983, 34191, 'no_lang_code', 'name', 'TriTech Software Systems (United States)'),
(40984, 34192, 'no_lang_code', 'name', 'Enbio (United States)'),
(40985, 34193, 'no_lang_code', 'name', 'Adaptive Dynamics (United States)'),
(40986, 34194, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁŁ„Ų³Ų·ŁŠŁ†'),
(40987, 34194, 'en', 'name', 'University of Palestine'),
(40988, 34195, 'no_lang_code', 'name', 'Acosense (Sweden)'),
(40989, 34196, 'no_lang_code', 'name', 'Maritime Applied Physics Corporation (United States)'),
(40990, 34197, 'no_lang_code', 'name', 'Gooch & Housego (United States)'),
(40991, 34198, 'no_lang_code', 'name', 'MS Technology (United States)'),
(40992, 34199, 'no_lang_code', 'name', 'Logrotex (Spain)'),
(40993, 34200, 'no_lang_code', 'name', 'Quantic EMC (Canada)'),
(40994, 34201, 'no_lang_code', 'name', 'Vanguard Space Technologies (United States)'),
(40995, 34202, 'no_lang_code', 'name', 'Aegis Technology (United States)'),
(40996, 34203, 'en', 'name', 'RAF Models & Displays'),
(40997, 34204, 'en', 'name', 'Irvine University'),
(40998, 34205, 'no_lang_code', 'name', 'Systima Technologies (United States)'),
(40999, 34206, 'no_lang_code', 'name', 'C & P Technologies (United States)'),
(41000, 34207, 'no_lang_code', 'name', 'Vertec Biosolvents (United States)'),
(41001, 34208, 'no_lang_code', 'name', 'American Axle & Manufacturing (Sweden)'),
(41002, 34209, 'no_lang_code', 'name', 'Hunan New Wellful (China)'),
(41003, 34210, 'en', 'name', 'Fundy Tidal'),
(41004, 34211, 'en', 'name', 'Poets House'),
(41005, 34212, 'en', 'name', 'Sun Publishing'),
(41006, 34212, 'no_lang_code', 'name', 'Nap Kiadó (Hungary)'),
(41007, 34213, 'no_lang_code', 'name', 'Advanced Photonix (United States)'),
(41008, 34214, 'no_lang_code', 'name', 'SpaceTime Communication (Sweden)'),
(41009, 34215, 'no_lang_code', 'name', 'Intech (Slovakia)'),
(41010, 34216, 'no_lang_code', 'name', 'Archinoetics (United States)'),
(41011, 34217, 'no_lang_code', 'name', 'Damilic (United States)'),
(41012, 34218, 'no_lang_code', 'name', 'Jinhua Central Hospital'),
(41013, 34218, 'zh', 'name', 'é‡‘åŽåø‚äø­åæƒåŒ»é™¢'),
(41014, 34219, 'en', 'name', 'First Affiliated Hospital of Hebei Medical University'),
(41015, 34220, 'en', 'name', 'Netherlands Institute for Advanced Study in the Humanities and Social Sciences'),
(41016, 34221, 'no_lang_code', 'name', 'Bascom Hunter (United States)'),
(41017, 34222, 'en', 'name', 'Chinese Culture Center of San Francisco'),
(41018, 34223, 'no_lang_code', 'name', 'Mabarex (Canada)'),
(41019, 34224, 'en', 'name', 'Changzhou Third People''s Hospital'),
(41020, 34225, 'no_lang_code', 'name', 'RHAMM Technologies (United States)'),
(41021, 34226, 'no_lang_code', 'name', 'Uppdragshuset (Sweden)'),
(41022, 34227, 'it', 'name', 'Policlinico Casilino'),
(41023, 34228, 'en', 'name', 'Brewing and Malting Barley Research Institute'),
(41024, 34229, 'no_lang_code', 'name', 'Wizdom Systems (United States)'),
(41025, 34230, 'en', 'name', 'Illinois Environmental Protection Agency'),
(41026, 34231, 'en', 'name', 'Luther Seminary'),
(41027, 34232, 'de', 'name', 'Societe canadienne d''hypotheque et du logement'),
(41028, 34232, 'en', 'name', 'Canada Mortgage and Housing Corporation'),
(41029, 34233, 'no_lang_code', 'name', 'Streamline Automation (United States)'),
(41030, 34234, 'no_lang_code', 'name', 'Boreal Laser (Canada)'),
(41031, 34235, 'no_lang_code', 'name', 'Signal Systems Corporation (United States)'),
(41032, 34236, 'no_lang_code', 'name', 'Monterey Technologies (United States)'),
(41033, 34237, 'no_lang_code', 'name', 'Division By Zero (Sweden)'),
(41034, 34238, 'no_lang_code', 'name', 'CreateAbility Concepts (United States)'),
(41035, 34239, 'fr', 'name', 'Arclay Technologies Naturelles'),
(41036, 34239, 'no_lang_code', 'name', 'Arclay (Canada)'),
(41037, 34240, 'no_lang_code', 'name', 'SkuTek Instrumentation (United States)'),
(41038, 34241, 'pt', 'name', 'Fundação de Amparo à Pesquisa e Inovação do Estado de Santa Catarina'),
(41039, 34242, 'en', 'name', 'Doctors Without Borders'),
(41040, 34242, 'fr', 'name', 'Médecins Sans Frontières'),
(41041, 34243, 'en', 'name', 'Swedish Childhood Cancer Foundation'),
(41042, 34243, 'sv', 'name', 'Barncancerfonden'),
(41043, 34244, 'no_lang_code', 'name', 'GenUs BioSystems (United States)'),
(41044, 34245, 'no_lang_code', 'name', 'Virtual Simulation and Training (United States)'),
(41045, 34246, 'no_lang_code', 'name', 'TeraXion (Canada)'),
(41046, 34247, 'fr', 'name', 'Desjardins, Mouvement des caisses Desjardins'),
(41047, 34248, 'en', 'name', 'Professional Staff Congress'),
(41048, 34249, 'no_lang_code', 'name', 'Street Smart Equipment (Sweden)'),
(41049, 34250, 'no_lang_code', 'name', 'Watersprint (Sweden)'),
(41050, 34251, 'no_lang_code', 'name', 'Solidia Technologies (United States)'),
(41051, 34252, 'no_lang_code', 'name', 'Menon International (United States)'),
(41052, 34253, 'en', 'name', 'Budapest Institute'),
(41053, 34254, 'en', 'name', 'South Bohemia research center of aquaculture and biodiversity of hydrocenoses'),
(41054, 34255, 'en', 'name', 'British Society of Animal Science'),
(41055, 34256, 'no_lang_code', 'name', 'Phoenix Canada Oil Company (Canada)'),
(41056, 34257, 'no_lang_code', 'name', 'TE SubCom (United States)'),
(41057, 34258, 'en', 'name', 'Diabetes UK'),
(41058, 34259, 'en', 'name', 'Colorado Department of Education'),
(41059, 34260, 'en', 'name', 'International Solar Energy Research Center Konstanz'),
(41060, 34261, 'no_lang_code', 'name', 'Vestigia'),
(41061, 34262, 'no_lang_code', 'name', 'RedBite (United Kingdom)'),
(41062, 34263, 'no_lang_code', 'name', 'Nlogic (United States)'),
(41063, 34264, 'en', 'name', 'Cement Association of Canada'),
(41064, 34265, 'no_lang_code', 'name', 'Aerobotix (United States)'),
(41065, 34266, 'es', 'name', 'Fondo Nacional de Ciencia Tecnología e Innovación'),
(41066, 34267, 'en', 'name', 'Venture Cup'),
(41067, 34268, 'no_lang_code', 'name', 'BP (Canada)'),
(41068, 34269, 'no_lang_code', 'name', 'OMS Lighting (Slovakia)'),
(41069, 34270, 'en', 'name', 'Bonnie Walker and Associates'),
(41070, 34271, 'en', 'name', 'Yixing Tumor Hospital'),
(41071, 34272, 'en', 'name', 'Rita Allen Foundation'),
(41072, 34273, 'en', 'name', 'Japan Society'),
(41073, 34274, 'no_lang_code', 'name', 'Immunovia (Sweden)'),
(41074, 34275, 'sv', 'name', 'Tekniska Hƶgskolans StudentkƄr'),
(41075, 34276, 'no_lang_code', 'name', 'K2 Energy Solutions (United States)'),
(41076, 34277, 'no_lang_code', 'name', 'ITT (United States)'),
(41077, 34278, 'en', 'name', 'First Bethune Hospital of Jilin University'),
(41078, 34278, 'zh', 'name', 'å‰ęž—å¤§å­¦ē¬¬äø€åŒ»é™¢ē§‘ē ”ę•™å­¦ę„¼'),
(41079, 34279, 'no_lang_code', 'name', 'UtopiaCompression (United States)'),
(41080, 34280, 'no_lang_code', 'name', 'Single Technologies (Sweden)'),
(41081, 34281, 'no_lang_code', 'name', 'Digital Solid State Propulsion (United States)'),
(41082, 34282, 'no_lang_code', 'name', 'Paradigm Productions (United States)'),
(41083, 34283, 'no_lang_code', 'name', 'Heptares Therapeutics (United Kingdom)'),
(41084, 34284, 'no_lang_code', 'name', 'Arcticus Systems (Sweden)'),
(41085, 34285, 'de', 'name', 'Übersetzungszentrum für die Einrichtungen der Europäischen Union'),
(41086, 34285, 'en', 'name', 'Translation Centre for the Bodies of the European Union'),
(41087, 34285, 'fr', 'name', 'Centre de Traduction des Organes de l''Union EuropƩenne'),
(41088, 34286, 'en', 'name', 'Peepoople'),
(41089, 34287, 'no_lang_code', 'name', 'Esprit (Slovakia)'),
(41090, 34288, 'en', 'name', 'National Emergency Management Agency'),
(41091, 34289, 'no_lang_code', 'name', 'Geneton (Slovakia)'),
(41092, 34290, 'no_lang_code', 'name', 'RINI Technologies (United States)'),
(41093, 34291, 'no_lang_code', 'name', 'Alelo (United States)'),
(41094, 34292, 'no_lang_code', 'name', 'Texila American University'),
(41095, 34293, 'no_lang_code', 'name', 'Eagle Harbor Technologies (United States)'),
(41096, 34294, 'en', 'name', 'Canadian Mining Industry Research Organization'),
(41097, 34295, 'no_lang_code', 'name', 'G-trend (Slovakia)'),
(41098, 34296, 'en', 'name', 'Integrated Behavioral Technologies'),
(41099, 34297, 'no_lang_code', 'name', 'SAFCell (United States)'),
(41100, 34298, 'no_lang_code', 'name', 'Futures in Rehabilitation Management (United States)'),
(41101, 34299, 'no_lang_code', 'name', 'SySense (United States)'),
(41102, 34300, 'no_lang_code', 'name', 'HLS Research (United States)'),
(41103, 34301, 'no_lang_code', 'name', 'Ascatron (Sweden)'),
(41104, 34302, 'en', 'name', 'Swedish Heart-Lung Foundation'),
(41105, 34303, 'no_lang_code', 'name', 'Industrial Measurement Systems (United States)'),
(41106, 34304, 'en', 'name', 'Positive Behavioral Solutions'),
(41107, 34305, 'en', 'name', 'Sexual Health Clinic'),
(41108, 34306, 'en', 'name', 'Human Growth Foundation'),
(41109, 34307, 'no_lang_code', 'name', 'Government Cost Accounting System (United States)'),
(41110, 34308, 'en', 'name', 'Royal Academy of Engineering'),
(41111, 34309, 'no_lang_code', 'name', 'JDLL (United States)'),
(41112, 34310, 'en', 'name', 'Australian Society for Parasitology'),
(41113, 34311, 'en', 'name', 'Alfred P. Sloan Foundation'),
(41114, 34312, 'no_lang_code', 'name', 'Mw-innovation (Sweden)'),
(41115, 34313, 'no_lang_code', 'name', 'Victor Technologies (United States)'),
(41116, 34314, 'no_lang_code', 'name', 'Abel Manufacturing Company (United States)'),
(41117, 34315, 'no_lang_code', 'name', 'Microphase Coatings (United States)'),
(41118, 34316, 'en', 'name', 'Institute for Nuclear Research'),
(41119, 34316, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(41120, 34317, 'no_lang_code', 'name', 'Mathtech (United States)'),
(41121, 34318, 'en', 'name', 'National Institute of Malariology, Parasitology and Entomology'),
(41122, 34319, 'no_lang_code', 'name', 'Environmental Remediation Consultants (United States)'),
(41123, 34320, 'no_lang_code', 'name', 'Systems & Materials Research Corporation (United States)'),
(41124, 34321, 'no_lang_code', 'name', 'Apache (Canada)'),
(41125, 34322, 'sv', 'name', 'FoU Sƶdertƶrn'),
(41126, 34323, 'no_lang_code', 'name', 'Object Research Systems (Canada)'),
(41127, 34324, 'no_lang_code', 'name', 'Cargill (Canada)'),
(41128, 34325, 'no_lang_code', 'name', 'Ambalux (United States)'),
(41129, 34326, 'no_lang_code', 'name', 'Saab (United States)'),
(41130, 34327, 'en', 'name', 'Ministry of Justice'),
(41131, 34328, 'en', 'name', 'Woods Hole Sea Grant'),
(41132, 34329, 'no_lang_code', 'name', 'Magna International (Canada)'),
(41133, 34330, 'en', 'name', 'Housing and Development Board'),
(41134, 34330, 'zh', 'name', '组屋'),
(41135, 34331, 'no_lang_code', 'name', 'Diversified Energy (United States)'),
(41136, 34332, 'en', 'name', 'National Coal Mining Museum for England'),
(41137, 34333, 'no_lang_code', 'name', 'BioDetection Systems (Netherlands)'),
(41138, 34334, 'en', 'name', 'Cleveland Institute of Music'),
(41139, 34335, 'en', 'name', 'Creative Thermal Solutions'),
(41140, 34336, 'no_lang_code', 'name', 'SICOM Systems (United States)'),
(41141, 34337, 'es', 'name', 'Instituto Murciano de Investigación Biosanitaria'),
(41142, 34338, 'no_lang_code', 'name', 'Sentar (United States)'),
(41143, 34339, 'en', 'name', 'Manitoba Forage Seed Association'),
(41144, 34340, 'no_lang_code', 'name', 'RetCorr (Sweden)'),
(41145, 34341, 'no_lang_code', 'name', 'RPC Bebo (United Kingdom)'),
(41146, 34342, 'en', 'name', 'European Association of Distance Teaching Universities'),
(41147, 34343, 'en', 'name', 'Anti Filariasis Campaign'),
(41148, 34344, 'en', 'name', 'Second Xiangya Hospital of Central South University'),
(41149, 34345, 'no_lang_code', 'name', 'Real-Time Innovations (United States)'),
(41150, 34346, 'no_lang_code', 'name', 'Metaara Medical Technologies (Canada)'),
(41151, 34347, 'no_lang_code', 'name', 'Computational Sensors (United States)'),
(41152, 34348, 'no_lang_code', 'name', 'Table Mountain Optics (United States)'),
(41153, 34349, 'no_lang_code', 'name', 'Kalscott Engineering (United States)'),
(41154, 34350, 'en', 'name', 'Gƶcseji Museum'),
(41155, 34351, 'no_lang_code', 'name', 'MAYA Design (United States)'),
(41156, 34352, 'no_lang_code', 'name', 'Roli (United Kingdom)'),
(41157, 34353, 'en', 'name', 'Algaeventure Systems'),
(41158, 34354, 'en', 'name', 'Michigan Department of Licensing and Regulatory Affairs'),
(41159, 34355, 'no_lang_code', 'name', 'Cellular Dynamics International (United States)'),
(41160, 34356, 'no_lang_code', 'name', 'China National Offshore Oil Corporation (China)'),
(41161, 34356, 'zh', 'name', 'äø­ęµ·ēŸ³ę²¹ē ”ē©¶äø­åæƒ'),
(41162, 34357, 'no_lang_code', 'name', 'Tau Technologies (United States)'),
(41163, 34358, 'en', 'name', 'Canadian Council of Professional Fish Harvesters'),
(41164, 34359, 'no_lang_code', 'name', 'IRnova (Sweden)'),
(41165, 34360, 'en', 'name', 'University System of Taiwan'),
(41166, 34361, 'no_lang_code', 'name', 'Ergolab (Sweden)'),
(41167, 34362, 'no_lang_code', 'name', 'EPIR Technologies (United States)'),
(41168, 34363, 'en', 'name', 'Hilbert College'),
(41169, 34364, 'en', 'name', 'International Council on Mining and Metals'),
(41170, 34365, 'it', 'name', 'Telescopio Nazionale Galileo'),
(41171, 34366, 'no_lang_code', 'name', 'SƄgCenter (Sweden)'),
(41172, 34367, 'en', 'name', 'Ministry of the Interior of the Republic of Latvia'),
(41173, 34368, 'no_lang_code', 'name', 'Ultrazvuk (Slovakia)'),
(41174, 34369, 'en', 'name', 'National Society for the Prevention of Cruelty to Children'),
(41175, 34370, 'no_lang_code', 'name', 'Iron Ore Company (Canada)'),
(41176, 34371, 'no_lang_code', 'name', 'Avirtek (United States)'),
(41177, 34372, 'no_lang_code', 'name', 'Immune Therapy Holdings (Sweden)'),
(41178, 34373, 'fr', 'name', 'Centre d''expertise et de recherche en infrastructures urbaines'),
(41179, 34374, 'no_lang_code', 'name', 'Electronic Arts (Canada)'),
(41180, 34375, 'en', 'name', 'Dutch Techcentre for Life Sciences'),
(41181, 34376, 'en', 'name', 'JEVS Human Services'),
(41182, 34377, 'en', 'name', 'State Administration of Foreign Experts Affairs'),
(41183, 34378, 'en', 'name', 'Earthgen'),
(41184, 34379, 'no_lang_code', 'name', 'Anautics (United States)'),
(41185, 34380, 'no_lang_code', 'name', 'APIC (United States)'),
(41186, 34381, 'no_lang_code', 'name', 'Early Warning (United States)'),
(41187, 34382, 'no_lang_code', 'name', 'Dancing Dots (United States)'),
(41188, 34383, 'no_lang_code', 'name', 'IERUS Technologies (United States)'),
(41189, 34384, 'en', 'name', 'ERA-NET Plant Genomics'),
(41190, 34385, 'de', 'name', 'Halbleiterlabor der Max-Planck-Gesellschaft, Halbleiterlabor of the Max-Planck-Society'),
(41191, 34386, 'no_lang_code', 'name', 'IN Space (United States)'),
(41192, 34387, 'no_lang_code', 'name', 'Sosei Group Corporation (United Kingdom)'),
(41193, 34388, 'en', 'name', 'First Affiliated Hospital of Dalian Medical University'),
(41194, 34388, 'zh', 'name', 'å¤§čæžåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(41195, 34389, 'no_lang_code', 'name', 'Gestamp (Sweden)'),
(41196, 34390, 'en', 'name', 'Swedish Foundation for International Cooperation in Research and Higher Education'),
(41197, 34391, 'en', 'name', 'Ernest C. Manning Awards Foundation'),
(41198, 34391, 'fr', 'name', 'La Fondation des Prix Ernest C. Manning'),
(41199, 34392, 'en', 'name', 'National Graduate School of Quality Management'),
(41200, 34393, 'no_lang_code', 'name', 'Total Quality Systems (United States)'),
(41201, 34394, 'fr', 'name', 'Ouranos'),
(41202, 34395, 'en', 'name', 'French-Swedish Research Association'),
(41203, 34396, 'no_lang_code', 'name', 'Sotera Defense Solutions (United States)'),
(41204, 34397, 'en', 'name', 'Netherlands Institute for Catalysis Research'),
(41205, 34397, 'nl', 'name', 'Nederlands Instituut voor Onderzoek in de Katalyse'),
(41206, 34398, 'no_lang_code', 'name', 'Hog Administrative Marketing Services (Canada)'),
(41207, 34399, 'no_lang_code', 'name', 'Mutewatch (Sweden)'),
(41208, 34400, 'en', 'name', 'Laguna Department of Education'),
(41209, 34401, 'en', 'name', 'Australian Wine Research Institute'),
(41210, 34402, 'en', 'name', 'Advertising Educational Foundation'),
(41211, 34403, 'no_lang_code', 'name', 'M. Alexander Nugent Consulting (United States)'),
(41212, 34404, 'en', 'name', 'New York State Department of Agriculture and Markets'),
(41213, 34405, 'en', 'name', 'Federation of the Food and Drink Industries of the Czech Republic'),
(41214, 34406, 'en', 'name', 'Nathan Cummings Foundation'),
(41215, 34407, 'en', 'name', 'Cattle Industry Development Council'),
(41216, 34408, 'en', 'name', 'Charity Storm'),
(41217, 34409, 'pt', 'name', 'Fundação Hospitalar do Estado de Minas Gerais'),
(41218, 34410, 'sv', 'name', 'HƤlsans Nya Verktyg'),
(41219, 34411, 'no_lang_code', 'name', 'Analysis and Measurement Services (United States)'),
(41220, 34412, 'no_lang_code', 'name', 'American Water (Canada)'),
(41221, 34413, 'en', 'name', 'Higher Education Funding Council for Wales'),
(41222, 34414, 'no_lang_code', 'name', 'SST Wireless (Canada)'),
(41223, 34415, 'en', 'name', 'Institute for Tourism'),
(41224, 34416, 'no_lang_code', 'name', 'Schlumberger (Canada)'),
(41225, 34417, 'no_lang_code', 'name', 'Hunter Defense Technologies (United States)'),
(41226, 34418, 'no_lang_code', 'name', 'WINTEC (United States)'),
(41227, 34419, 'no_lang_code', 'name', 'Cyan Systems (United States)'),
(41228, 34420, 'no_lang_code', 'name', 'ANP Technologies (United States)'),
(41229, 34421, 'no_lang_code', 'name', 'Molecular Discovery (United Kingdom)'),
(41230, 34422, 'en', 'name', 'Human Resource Development Group'),
(41231, 34423, 'en', 'name', 'Intensive Care National Audit & Research Centre'),
(41232, 34424, 'fr', 'name', 'Centre de DƩveloppement du Porc du QuƩbec'),
(41233, 34425, 'no_lang_code', 'name', 'Badrilla (United Kingdom)'),
(41234, 34426, 'no_lang_code', 'name', 'Shermag (Canada)'),
(41235, 34427, 'no_lang_code', 'name', 'SenSic (Sweden)'),
(41236, 34428, 'en', 'name', 'Maine School of Science and Mathematics'),
(41237, 34429, 'en', 'name', 'MiraCosta College'),
(41238, 34430, 'en', 'name', 'Southern Regional Assembly'),
(41239, 34431, 'en', 'name', 'Ivy Foundation'),
(41240, 34432, 'no_lang_code', 'name', 'Mabtech (Sweden)'),
(41241, 34433, 'no_lang_code', 'name', 'Primateria (Sweden)'),
(41242, 34434, 'en', 'name', 'Pacific Northwest Foundation'),
(41243, 34435, 'no_lang_code', 'name', 'International Association of Virtual Organizations (United States)'),
(41244, 34436, 'it', 'name', 'Istituto di Genomica Applicata'),
(41245, 34437, 'no_lang_code', 'name', 'Tialinx (United States)'),
(41246, 34438, 'en', 'name', 'Center for Excellence in Basic Sciences'),
(41247, 34438, 'hi', 'name', 'ą¤®ą„Œą¤²ą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤•ą¤°ą„ą¤· ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(41248, 34439, 'no_lang_code', 'name', 'Inerventions (Sweden)'),
(41249, 34440, 'en', 'name', 'Jiangxi Academy of Forestry'),
(41250, 34440, 'zh', 'name', 'ę±Ÿč„æēœęž—äøšē§‘å­¦é™¢'),
(41251, 34441, 'no_lang_code', 'name', 'Mosaic ATM (United States)'),
(41252, 34442, 'no_lang_code', 'name', 'Cascades (Canada)'),
(41253, 34443, 'de', 'name', 'Gerda Henkel Stiftung'),
(41254, 34443, 'en', 'name', 'Gerda Henkel Foundation'),
(41255, 34444, 'en', 'name', 'Earthwatch Institute'),
(41256, 34445, 'no_lang_code', 'name', 'Thermal Systems Technology (Sweden)'),
(41257, 34446, 'no_lang_code', 'name', 'Flexenclosure (Sweden)'),
(41258, 34447, 'no_lang_code', 'name', 'Kalite Sistem Group (Turkey)'),
(41259, 34448, 'en', 'name', 'Royal Swedish Academy of Engineering Sciences'),
(41260, 34449, 'it', 'name', 'Fondazione Toscana Gabriele Monasterio'),
(41261, 34450, 'no_lang_code', 'name', 'Blücher (Germany)'),
(41262, 34451, 'sv', 'name', 'Teknopol'),
(41263, 34452, 'no_lang_code', 'name', 'Cotton (United States)'),
(41264, 34453, 'de', 'name', 'Pflanzensoziologische Institut'),
(41265, 34454, 'en', 'name', 'Crohn''s and Colitis UK'),
(41266, 34455, 'no_lang_code', 'name', 'Shanghai Fenghe Information Technology (China)'),
(41267, 34456, 'no_lang_code', 'name', 'IntraMicron (United States)'),
(41268, 34457, 'no_lang_code', 'name', 'Simris Alg (Sweden)'),
(41269, 34458, 'no_lang_code', 'name', 'Rotordynamics-Seal Research (United States)'),
(41270, 34459, 'en', 'name', 'Queen Medical'),
(41271, 34460, 'nl', 'name', 'Museum Boerhaave'),
(41272, 34461, 'en', 'name', 'Geological Survey of Israel'),
(41273, 34462, 'no_lang_code', 'name', 'Avalon Rare Metals (Canada)'),
(41274, 34463, 'en', 'name', 'National Astronomical Observatories'),
(41275, 34463, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å›½å®¶å¤©ę–‡å°'),
(41276, 34464, 'en', 'name', 'Flinn Foundation'),
(41277, 34465, 'en', 'name', 'United Nations Population Fund'),
(41278, 34466, 'en', 'name', 'Ian Potter Foundation'),
(41279, 34467, 'no_lang_code', 'name', 'Vipo (Slovakia)'),
(41280, 34468, 'no_lang_code', 'name', 'MicroAssembly Technologies (United States)'),
(41281, 34469, 'en', 'name', 'Southern California University for Professional Studies'),
(41282, 34470, 'en', 'name', 'Department of Emergency Services and Public Protection'),
(41283, 34471, 'en', 'name', 'Channel 7 Children''s Research Foundation'),
(41284, 34472, 'no_lang_code', 'name', 'Anger Machining (Austria)'),
(41285, 34473, 'no_lang_code', 'name', 'Ballard Power Systems (United States)'),
(41286, 34474, 'no_lang_code', 'name', 'Anasoft (Slovakia)'),
(41287, 34475, 'en', 'name', 'Crown College'),
(41288, 34476, 'en', 'name', 'Michigan Manufacturing Technology Center'),
(41289, 34477, 'en', 'name', 'Minnesota Department of Administration'),
(41290, 34478, 'no_lang_code', 'name', 'Meggitt (United States)'),
(41291, 34479, 'en', 'name', 'Korean Institute of Criminology'),
(41292, 34480, 'en', 'name', 'American Society of Echocardiography'),
(41293, 34481, 'en', 'name', 'Arc of the United States'),
(41294, 34482, 'en', 'name', 'Bombay Natural History Society'),
(41295, 34483, 'no_lang_code', 'name', 'Apple (United States)'),
(41296, 34484, 'no_lang_code', 'name', 'Doric Lenses (Canada)'),
(41297, 34485, 'no_lang_code', 'name', 'Automatic Sync Technologies (United States)'),
(41298, 34486, 'no_lang_code', 'name', 'Brainglass (Sweden)'),
(41299, 34487, 'de', 'name', 'Institut für den Donauraum und Mitteleuropa'),
(41300, 34488, 'fr', 'name', 'Centre de Recherche en SantƩ de Nouna'),
(41301, 34489, 'no_lang_code', 'name', 'Orbit Logic (United States)'),
(41302, 34490, 'no_lang_code', 'name', 'Dominion Diagnostics (United States)'),
(41303, 34491, 'en', 'name', 'Matheny Hospital'),
(41304, 34492, 'no_lang_code', 'name', 'Alstom (Canada)'),
(41305, 34493, 'no_lang_code', 'name', 'BlazeTech (United States)'),
(41306, 34494, 'en', 'name', 'A*STAR Graduate Academy'),
(41307, 34495, 'no_lang_code', 'name', 'Hackett Publishing (United States)'),
(41308, 34496, 'no_lang_code', 'name', 'NanoTechRanch (United States)'),
(41309, 34497, 'no_lang_code', 'name', 'Under Armour (United States)'),
(41310, 34498, 'en', 'name', 'LaGuardia Community College'),
(41311, 34499, 'no_lang_code', 'name', 'Alberta Pork (Canada)'),
(41312, 34500, 'no_lang_code', 'name', 'Compass Technology Group (United States)'),
(41313, 34501, 'no_lang_code', 'name', 'CathPrint (Sweden)'),
(41314, 34502, 'no_lang_code', 'name', 'Varadero Capital (United States)'),
(41315, 34503, 'en', 'name', 'Hebei Provincial Department of Science and Technology'),
(41316, 34504, 'no_lang_code', 'name', 'Cascade Designs (United States)'),
(41317, 34505, 'en', 'name', 'Children''s Hospital of Suzhou University'),
(41318, 34506, 'no_lang_code', 'name', 'GeneFirst (United Kingdom)'),
(41319, 34507, 'no_lang_code', 'name', 'Opsun Technologies (Canada)'),
(41320, 34508, 'no_lang_code', 'name', 'Ciena (Canada)'),
(41321, 34509, 'no_lang_code', 'name', 'H&R Technology (United States)'),
(41322, 34510, 'no_lang_code', 'name', 'InterSyn Technologies (United States)'),
(41323, 34511, 'en', 'name', 'Seeper'),
(41324, 34512, 'sv', 'name', 'Signhild Engkvists Stiftelse'),
(41325, 34513, 'no_lang_code', 'name', 'Med Graph (United States)'),
(41326, 34514, 'en', 'name', 'Nichols House Museum'),
(41327, 34515, 'no_lang_code', 'name', 'Mentor Communication (Sweden)'),
(41328, 34516, 'en', 'name', 'Arnold and Mabel Beckman Foundation'),
(41329, 34517, 'no_lang_code', 'name', 'Monolith Semiconductor (United States)'),
(41330, 34518, 'no_lang_code', 'name', 'Viaspace (United States)'),
(41331, 34519, 'no_lang_code', 'name', 'Wavefront Research (United States)'),
(41332, 34520, 'no_lang_code', 'name', 'Sporian Microsystems (United States)'),
(41333, 34521, 'en', 'name', 'Ministry of Aliyah and Immigrant Absorption'),
(41334, 34521, 'fr', 'name', 'Ministère de l''Alya et de l''Intégration'),
(41335, 34522, 'de', 'name', 'Evangelisches Studienwerk Villigst'),
(41336, 34522, 'en', 'name', 'Protestant Academic Foundation'),
(41337, 34523, 'no_lang_code', 'name', 'Lembke Elektromekaniska Verkstad (Sweden)'),
(41338, 34524, 'en', 'name', 'Mother and Infant Research Activities'),
(41339, 34525, 'de', 'name', 'Nationalpark Bayerischer Wald'),
(41340, 34525, 'en', 'name', 'Bavarian Forest National Park'),
(41341, 34526, 'no_lang_code', 'name', 'PROTO Manufacturing (United States)'),
(41342, 34527, 'en', 'name', 'Academic Ranking and Rating Agency'),
(41343, 34528, 'en', 'name', 'Cystic Fibrosis Canada'),
(41344, 34528, 'fr', 'name', 'Fibrose kystique Canada'),
(41345, 34529, 'no_lang_code', 'name', 'Microcide (United States)'),
(41346, 34530, 'no_lang_code', 'name', 'Borregaard (United Kingdom)'),
(41347, 34531, 'pt', 'name', 'Laboratório Interinstitucional de e-Astronomia'),
(41348, 34532, 'en', 'name', 'Healthway'),
(41349, 34533, 'no_lang_code', 'name', 'Crabion (Italy)'),
(41350, 34534, 'no_lang_code', 'name', 'Azmark Aero System (United States)'),
(41351, 34535, 'no_lang_code', 'name', 'Twinleaf (United States)'),
(41352, 34536, 'no_lang_code', 'name', 'VUP (Slovakia)'),
(41353, 34537, 'no_lang_code', 'name', 'Consolidated Edison (United States)'),
(41354, 34538, 'no_lang_code', 'name', 'Sealite (United States)'),
(41355, 34539, 'en', 'name', 'Britton Fund'),
(41356, 34540, 'no', 'name', 'NordForsk'),
(41357, 34541, 'no_lang_code', 'name', 'Silvaco (United Kingdom)'),
(41358, 34542, 'it', 'name', 'Ente Ospedaliero Ospedali Galliera'),
(41359, 34543, 'no_lang_code', 'name', 'Tecolote Research (United States)'),
(41360, 34544, 'no_lang_code', 'name', 'Indusec (Sweden)'),
(41361, 34545, 'no_lang_code', 'name', 'Nian-Crae (United States)'),
(41362, 34546, 'en', 'name', 'Canadian Liver Foundation'),
(41363, 34546, 'fr', 'name', 'Fondation Canadienne du Foie'),
(41364, 34547, 'no_lang_code', 'name', 'Efficax Energy (Sweden)'),
(41365, 34548, 'no_lang_code', 'name', 'Takeda (United Kingdom)'),
(41366, 34549, 'no_lang_code', 'name', 'Veolia (United States)'),
(41367, 34550, 'en', 'name', 'Canadian Concrete Masonry Producers Association'),
(41368, 34551, 'en', 'name', 'Singapore Clinical Research Institute'),
(41369, 34552, 'no_lang_code', 'name', 'AS Composite (Canada)'),
(41370, 34553, 'no_lang_code', 'name', 'AMS (Finland)'),
(41371, 34554, 'no_lang_code', 'name', 'EnerDel (United States)'),
(41372, 34555, 'en', 'name', 'Commission on Rehabilitation Counselor Certification'),
(41373, 34556, 'no_lang_code', 'name', 'Irras (Sweden)'),
(41374, 34557, 'en', 'name', 'Jinan Military General Hospital'),
(41375, 34557, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęµŽå—å†›åŒŗę€»åŒ»é™¢'),
(41376, 34558, 'nl', 'name', 'Amsterdam Museum'),
(41377, 34559, 'no_lang_code', 'name', 'NanoLab (United States)'),
(41378, 34560, 'en', 'name', 'Herzog College'),
(41379, 34561, 'de', 'name', 'Institut für Volkskultur und Kulturentwicklung'),
(41380, 34562, 'en', 'name', 'Sheffield Health and Social Care NHS Foundation Trust'),
(41381, 34563, 'no_lang_code', 'name', 'Research Center for Non Destructive Testing (Austria)'),
(41382, 34564, 'en', 'name', 'Changzhi Medical College Peace Hospital'),
(41383, 34565, 'en', 'name', 'ENDependence Center of Northern Virginia'),
(41384, 34566, 'no_lang_code', 'name', 'Gamma Dynamics (United States)'),
(41385, 34567, 'no_lang_code', 'name', 'Tesoro (United States)'),
(41386, 34568, 'no_lang_code', 'name', 'SI2 Technologies (United States)'),
(41387, 34569, 'en', 'name', 'Yan''an Hospital Affiliated To Kunming Medical University'),
(41388, 34569, 'zh', 'name', 'ę˜†ę˜Žåø‚å»¶å®‰åŒ»é™¢'),
(41389, 34570, 'no_lang_code', 'name', 'Anyar (United States)'),
(41390, 34571, 'no_lang_code', 'name', 'Metacomp Technologies (United States)'),
(41391, 34572, 'en', 'name', 'DigiPen Institute of Technology'),
(41392, 34573, 'en', 'name', 'IK Foundation'),
(41393, 34574, 'no_lang_code', 'name', 'InnoVactiv (Canada)'),
(41394, 34575, 'en', 'name', 'Clear Creek Baptist Bible College'),
(41395, 34576, 'no_lang_code', 'name', 'Alberco Construction (Canada)'),
(41396, 34577, 'hu', 'name', 'Jósa AndrÔs Múzeum'),
(41397, 34578, 'no_lang_code', 'name', 'Viscando Traffic Systems (Sweden)'),
(41398, 34579, 'no_lang_code', 'name', 'Quantum Technologies (Sweden)'),
(41399, 34580, 'no_lang_code', 'name', 'Kord Technologies (United States)'),
(41400, 34581, 'en', 'name', 'Global Medical Excellence Cluster'),
(41401, 34582, 'no_lang_code', 'name', 'Elfarm (Sweden)'),
(41402, 34583, 'en', 'name', 'Netherlands Graduate School of Linguistics'),
(41403, 34583, 'nl', 'name', 'Landelijke Onderzoekschool Taalwetenschap'),
(41404, 34584, 'en', 'name', 'Department of Veterans Affairs'),
(41405, 34585, 'no_lang_code', 'name', 'HeidelbergCement (Sweden)'),
(41406, 34586, 'no_lang_code', 'name', 'L.Garde (United States)'),
(41407, 34587, 'no_lang_code', 'name', 'Mazda (United States)'),
(41408, 34588, 'no_lang_code', 'name', 'Gold Peak Industries (China)'),
(41409, 34589, 'no_lang_code', 'name', 'Integrated Software (United States)'),
(41410, 34590, 'no_lang_code', 'name', 'Tolmar (United States)'),
(41411, 34591, 'en', 'name', 'Onderstepoort Veterinary Institute'),
(41412, 34592, 'en', 'name', 'Central and North West London NHS Foundation Trust'),
(41413, 34593, 'no_lang_code', 'name', 'Aqwary (Sweden)'),
(41414, 34594, 'no_lang_code', 'name', 'Presagis (United States)'),
(41415, 34595, 'no_lang_code', 'name', 'Medtronic (Canada)'),
(41416, 34596, 'en', 'name', 'High Blood Pressure Research Council of Australia'),
(41417, 34597, 'no_lang_code', 'name', 'Feldan (Canada)'),
(41418, 34598, 'ja', 'name', 'ć‚³ćƒ‹ć‚«ćƒŸćƒŽćƒ«ć‚æćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(41419, 34598, 'no_lang_code', 'name', 'Konica Minolta (Japan)'),
(41420, 34599, 'no_lang_code', 'name', 'Moon Express (United States)'),
(41421, 34600, 'no_lang_code', 'name', 'Fibics (Canada)'),
(41422, 34601, 'no_lang_code', 'name', 'Support Systems Associates (United States)'),
(41423, 34602, 'en', 'name', 'Leading Health Care'),
(41424, 34603, 'en', 'name', 'George Institute for Global Health'),
(41425, 34604, 'no_lang_code', 'name', 'Imperium (United States)'),
(41426, 34605, 'en', 'name', 'Queensland Emergency Medicine Research Foundation'),
(41427, 34606, 'en', 'name', 'County Administrative Board of Stockholm'),
(41428, 34607, 'no_lang_code', 'name', 'Dellcron (Sweden)'),
(41429, 34608, 'en', 'name', 'Affiliated Hospital of Jining Medical University'),
(41430, 34609, 'no_lang_code', 'name', 'Heron Systems (United States)'),
(41431, 34610, 'no_lang_code', 'name', 'Spotscale (Sweden)'),
(41432, 34611, 'en', 'name', 'Central Institute for Experimental Animals'),
(41433, 34611, 'ja', 'name', 'å®ŸéØ“å‹•ē‰©äø­å¤®ē ”ē©¶ę‰€'),
(41434, 34612, 'no_lang_code', 'name', 'Zetec (United States)'),
(41435, 34613, 'no_lang_code', 'name', 'Dynamotive Energy Systems (Canada)'),
(41436, 34614, 'no_lang_code', 'name', 'Curadel (United States)'),
(41437, 34615, 'en', 'name', 'Sundsvall Municipality'),
(41438, 34616, 'en', 'name', 'National Health Insurance Service'),
(41439, 34617, 'en', 'name', 'Bulgarian Science Fund'),
(41440, 34618, 'no_lang_code', 'name', 'Metronome (United States)'),
(41441, 34619, 'no_lang_code', 'name', 'MOgene (United States)'),
(41442, 34620, 'no_lang_code', 'name', 'Piab (Sweden)'),
(41443, 34621, 'no_lang_code', 'name', 'Transformator Design (Sweden)'),
(41444, 34622, 'de', 'name', 'Max-Planck-Institut für Meteorologie'),
(41445, 34622, 'en', 'name', 'Max Planck Institute for Meteorology'),
(41446, 34623, 'en', 'name', 'Quanzhou Institute of Equipment Manufacturing Haixi Institute'),
(41447, 34623, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ęµ·č„æē ”ē©¶é™¢ę³‰å·žč£…å¤‡åˆ¶é€ ē ”ē©¶ę‰€'),
(41448, 34624, 'no_lang_code', 'name', 'Mikro-Tek (Canada)'),
(41449, 34625, 'en', 'name', 'Balassi Institute'),
(41450, 34626, 'fr', 'name', 'Institut de Recherche et d''Histoire des Textes'),
(41451, 34627, 'en', 'name', 'Cure Alzheimer’s Fund'),
(41452, 34628, 'en', 'name', 'Neurosciences Research Foundation'),
(41453, 34629, 'en', 'name', 'Kopint-TƔrki Institute for Economic Research'),
(41454, 34630, 'no_lang_code', 'name', 'ThinKom Solutions (United States)'),
(41455, 34631, 'no_lang_code', 'name', 'Sentech Corporation (United States)'),
(41456, 34632, 'en', 'name', 'Henry Viscardi School'),
(41457, 34633, 'no_lang_code', 'name', 'Avisys (United States)'),
(41458, 34634, 'en', 'name', 'Women''s Health Initiative'),
(41459, 34635, 'no_lang_code', 'name', 'Gotmic (Sweden)'),
(41460, 34636, 'no_lang_code', 'name', 'Kforce (United States)'),
(41461, 34637, 'en', 'name', 'Robert Schalkenbach Foundation'),
(41462, 34638, 'en', 'name', 'Institute of Turkish Studies'),
(41463, 34639, 'en', 'name', 'Frisian Academy'),
(41464, 34639, 'nl', 'name', 'Fryske Akademy'),
(41465, 34640, 'en', 'name', 'Northern Territory Environment Protection Authority'),
(41466, 34641, 'en', 'name', 'Agency for Defense Development'),
(41467, 34641, 'ko', 'name', 'źµ­ė°©ź³¼ķ•™ģ—°źµ¬ģ†Œ'),
(41468, 34642, 'no_lang_code', 'name', 'Flow Analysis (United States)'),
(41469, 34643, 'en', 'name', 'Danish Working Environment Authority'),
(41470, 34644, 'en', 'name', 'Midwest Biomedical Research Foundation'),
(41471, 34645, 'en', 'name', 'Zilina International Airport'),
(41472, 34646, 'no_lang_code', 'name', 'Micromolding Solutions (Canada)'),
(41473, 34647, 'no_lang_code', 'name', 'Windsor Utilities Commission (Canada)'),
(41474, 34648, 'en', 'name', 'Polycystic Kidney Disease Foundation'),
(41475, 34649, 'no_lang_code', 'name', 'Strategic Analysis (United States)'),
(41476, 34650, 'no_lang_code', 'name', 'Sioxmachines (Sweden)'),
(41477, 34651, 'no_lang_code', 'name', 'Phillips Service Industries (United States)'),
(41478, 34652, 'en', 'name', 'Federation of Technical and Scientific Societies'),
(41479, 34653, 'no_lang_code', 'name', 'Telcred (Sweden)'),
(41480, 34654, 'en', 'name', 'University of Nursing Mandalay'),
(41481, 34654, 'my', 'name', 'į€žį€°į€”į€¬į€•į€¼į€Æį€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(į€™į€”į€¹į€į€œį€±į€ø)'),
(41482, 34655, 'en', 'name', 'Tomsk Cancer Research Institute'),
(41483, 34655, 'ru', 'name', 'Томский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ онкологии'),
(41484, 34656, 'en', 'name', 'Civil Aviation Administration of China'),
(41485, 34656, 'zh', 'name', 'äø­å›½ę°‘ē”ØčˆŖē©ŗå±€'),
(41486, 34657, 'en', 'name', 'HelpAge India'),
(41487, 34658, 'no_lang_code', 'name', 'SpaceTech (United States)'),
(41488, 34659, 'en', 'name', 'Cleveland Institute of Art'),
(41489, 34660, 'no_lang_code', 'name', 'Quantum Signal (United States)'),
(41490, 34661, 'en', 'name', 'Walsh Associates'),
(41491, 34662, 'en', 'name', 'Edogawa Hospital'),
(41492, 34662, 'ja', 'name', 'ę±Ÿęˆøå·ē—…é™¢'),
(41493, 34663, 'no_lang_code', 'name', 'SA Photonics (United States)'),
(41494, 34664, 'en', 'name', 'Lake Huron & Elgin Area Primary Water Supply Systems'),
(41495, 34665, 'no_lang_code', 'name', 'Samtrafiken (Sweden)'),
(41496, 34666, 'no_lang_code', 'name', 'Phostec (Slovakia)'),
(41497, 34667, 'en', 'name', 'Canadian Horticultural Council'),
(41498, 34668, 'no_lang_code', 'name', 'Orono Spectral Solutions (United States)'),
(41499, 34669, 'no_lang_code', 'name', 'Advanced Power Electronics (United States)'),
(41500, 34670, 'en', 'name', 'Foundation for Research Support of Mato Grosso State'),
(41501, 34670, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado de Mato Grosso'),
(41502, 34671, 'en', 'name', 'NIOD Institute for War, Holocaust and Genocide Studies'),
(41503, 34671, 'nl', 'name', 'NIOD Instituut voor Oorlogs-, Holocaust- en Genocidestudies'),
(41504, 34672, 'en', 'name', 'Ministry of National Defense'),
(41505, 34672, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ źµ­ė°©ė¶€'),
(41506, 34673, 'no_lang_code', 'name', 'Think A Move (United States)'),
(41507, 34674, 'no_lang_code', 'name', 'APi Group (United States)'),
(41508, 34675, 'en', 'name', 'British Columbia Salmon Farmers Association'),
(41509, 34676, 'no_lang_code', 'name', 'Integral Consulting (United States)'),
(41510, 34677, 'en', 'name', 'Anti-Doping Laboratory'),
(41511, 34678, 'no_lang_code', 'name', 'Vatell (United States)'),
(41512, 34679, 'no_lang_code', 'name', 'TimberWest Forest (Canada)'),
(41513, 34680, 'no_lang_code', 'name', 'Materials Processing (United States)'),
(41514, 34681, 'ko', 'name', 'ėŒ€ģ›…ģ œģ•½'),
(41515, 34681, 'no_lang_code', 'name', 'Daewoong Pharmaceutical (South Korea)'),
(41516, 34682, 'no_lang_code', 'name', 'Five Stones Research Corporation (United States)'),
(41517, 34683, 'en', 'name', 'Analytical Center MNiOP'),
(41518, 34684, 'no_lang_code', 'name', 'IMSAR (United States)'),
(41519, 34685, 'no_lang_code', 'name', 'Vectos (United Kingdom)'),
(41520, 34686, 'en', 'name', 'Jewish Community Foundation of Greater MetroWest NJ'),
(41521, 34687, 'no_lang_code', 'name', 'GeoMechanics Technologies (United States)'),
(41522, 34688, 'no_lang_code', 'name', 'Advanced Glazings (Canada)'),
(41523, 34689, 'en', 'name', 'Sarasota University'),
(41524, 34690, 'en', 'name', 'NeuroSurgical Research Foundation'),
(41525, 34691, 'no_lang_code', 'name', 'Arcon (United States)'),
(41526, 34692, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بحري'),
(41527, 34692, 'en', 'name', 'University of Bahri'),
(41528, 34693, 'no_lang_code', 'name', 'InferLink (United States)'),
(41529, 34694, 'no_lang_code', 'name', 'Riverbed (United States)'),
(41530, 34695, 'de', 'name', 'PƤdagogische Hochschule Bern'),
(41531, 34695, 'en', 'name', 'Bern University of Teacher Education'),
(41532, 34696, 'no_lang_code', 'name', 'KVH Industries (United States)'),
(41533, 34697, 'en', 'name', 'Connecticut Department of Social Services'),
(41534, 34698, 'no_lang_code', 'name', 'Gratex International (Slovakia)'),
(41535, 34699, 'en', 'name', 'Alliance for Technology Access'),
(41536, 34700, 'no_lang_code', 'name', 'General Lasertronics Corporation (United States)'),
(41537, 34701, 'en', 'name', 'Shanghai Zhabei District Shibei Hospital'),
(41538, 34702, 'en', 'name', 'Virginia Department of Education'),
(41539, 34703, 'no_lang_code', 'name', 'METSS (United States)'),
(41540, 34704, 'no_lang_code', 'name', 'KWI Group (United States)'),
(41541, 34705, 'pt', 'name', 'Fundação de Apoio ao Desenvolvimento do Ensino, Ciência e Tecnologia do Estado de Mato Grosso do Sul'),
(41542, 34706, 'no_lang_code', 'name', 'General Kinetics (United States)'),
(41543, 34707, 'en', 'name', 'Women Make Movies'),
(41544, 34708, 'de', 'name', 'ForschungsĀ­kuratorium Textil'),
(41545, 34709, 'en', 'name', 'Scandinavian Automotive Supplier Association'),
(41546, 34710, 'en', 'name', 'Texas Space Grant Consortium'),
(41547, 34711, 'no_lang_code', 'name', 'Impact Hub (Sweden)'),
(41548, 34712, 'no_lang_code', 'name', 'Custom Security Industries (Canada)'),
(41549, 34713, 'no_lang_code', 'name', 'Typotex (Hungary)'),
(41550, 34714, 'en', 'name', 'Sheldon Museum and Cultural Center'),
(41551, 34715, 'no_lang_code', 'name', 'Fuseforward (Canada)'),
(41552, 34716, 'en', 'name', 'Meertens Institute');
INSERT INTO `ror_settings` VALUES
(41553, 34716, 'nl', 'name', 'Meertens Instituut'),
(41554, 34717, 'no_lang_code', 'name', 'Sierra Engineering (United States)'),
(41555, 34718, 'no_lang_code', 'name', 'Imagination Engines (United States)'),
(41556, 34719, 'en', 'name', 'Apicha Community Health Center'),
(41557, 34720, 'no_lang_code', 'name', 'TNS (United States)'),
(41558, 34721, 'no_lang_code', 'name', 'DESE Research (United States)'),
(41559, 34722, 'en', 'name', 'Ontario Dairy Council'),
(41560, 34723, 'en', 'name', 'Access Technologies'),
(41561, 34724, 'en', 'name', 'French Institute of Pondicherry'),
(41562, 34724, 'fr', 'name', 'Institut FranƧais de PondichƩry'),
(41563, 34724, 'ta', 'name', 'ą®Ŗą®¾ą®£ąÆą®Ÿą®æą®šąÆą®šąÆ‡ą®°ą®æ ą®Ŗą®æą®°ąÆ†ą®žąÆą®šąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(41564, 34725, 'no_lang_code', 'name', 'Diamond Antenna and Microwave (United States)'),
(41565, 34726, 'no_lang_code', 'name', 'WindVector'),
(41566, 34727, 'no_lang_code', 'name', 'Tondi Elektroonika (Estonia)'),
(41567, 34728, 'en', 'name', 'Kentucky Office of Vocational Rehabilitation'),
(41568, 34729, 'en', 'name', 'First Affiliated Hospital Zhejiang University'),
(41569, 34730, 'no_lang_code', 'name', 'Exchange Income (Canada)'),
(41570, 34731, 'en', 'name', 'Ministry of Defence'),
(41571, 34732, 'no_lang_code', 'name', 'Euclid Techlabs (United States)'),
(41572, 34733, 'no_lang_code', 'name', 'IBC Coatings Technologies (United States)'),
(41573, 34734, 'en', 'name', 'International Monetary Fund'),
(41574, 34734, 'es', 'name', 'Fondo Monetario Internacional'),
(41575, 34734, 'fr', 'name', 'Fonds monƩtaire international'),
(41576, 34735, 'en', 'name', 'Oakwood Academy'),
(41577, 34736, 'no_lang_code', 'name', 'Polymer Factory (Sweden)'),
(41578, 34737, 'en', 'name', 'Ministry of Higher Education'),
(41579, 34738, 'en', 'name', 'Korea Federation of Science and Technology Societies'),
(41580, 34738, 'ko', 'name', 'ķ•œźµ­ź³¼ķ•™źø°ģˆ ė‹Øģ²“ģ“ģ—°ķ•©ķšŒ'),
(41581, 34739, 'no_lang_code', 'name', 'SiliconPro (Canada)'),
(41582, 34740, 'no_lang_code', 'name', 'MIB Engineers (United States)'),
(41583, 34741, 'en', 'name', 'Manchester Grammar School'),
(41584, 34742, 'ja', 'name', '中央研究所'),
(41585, 34742, 'no_lang_code', 'name', 'Toyota Central Research and Development Laboratories (Japan)'),
(41586, 34743, 'no_lang_code', 'name', 'Square One (United States)'),
(41587, 34744, 'no_lang_code', 'name', 'Synectics (United States)'),
(41588, 34745, 'no_lang_code', 'name', 'Highview Power Storage (United Kingdom)'),
(41589, 34746, 'en', 'name', 'Jiangjin Central Hospital'),
(41590, 34747, 'en', 'name', 'Etosha Ecological Institute'),
(41591, 34748, 'en', 'name', 'Research Foundation ITSUU Laboratory'),
(41592, 34748, 'ja', 'name', 'ä¹™åÆē ”ē©¶ę‰€'),
(41593, 34749, 'en', 'name', 'Beyondblue'),
(41594, 34750, 'en', 'name', 'Ministry of Agriculture and Agro Based Industry'),
(41595, 34751, 'no_lang_code', 'name', 'Tri-Con Concrete Finishing (Canada)'),
(41596, 34752, 'en', 'name', 'BC Innovation Council'),
(41597, 34753, 'es', 'name', 'Instituto de Investigación Biomédica de MÔlaga'),
(41598, 34754, 'no_lang_code', 'name', 'Streamline Numerics (United States)'),
(41599, 34755, 'en', 'name', 'Society of Abdominal Radiology'),
(41600, 34756, 'en', 'name', 'Nanchong Central Hospital'),
(41601, 34756, 'zh', 'name', 'å—å……åø‚äø­åæƒåŒ»é™¢'),
(41602, 34757, 'no_lang_code', 'name', 'EVRAZ (United States)'),
(41603, 34758, 'no_lang_code', 'name', 'Precise Biometrics (Sweden)'),
(41604, 34758, 'zh', 'name', 'ē²¾ęŗ–ē”Ÿē‰©č­˜åˆ„å…¬'),
(41605, 34759, 'no_lang_code', 'name', 'Envia Systems (United States)'),
(41606, 34760, 'no_lang_code', 'name', 'Global Embedded Technologies (United States)'),
(41607, 34761, 'en', 'name', 'UNStudio'),
(41608, 34762, 'no_lang_code', 'name', 'Stiefvater Consultants (United States)'),
(41609, 34763, 'no_lang_code', 'name', 'DWA Technologies (United States)'),
(41610, 34764, 'no_lang_code', 'name', 'Microcom (United States)'),
(41611, 34765, 'no_lang_code', 'name', 'Sonaca (Canada)'),
(41612, 34766, 'en', 'name', 'Limestone College'),
(41613, 34767, 'no_lang_code', 'name', 'EasyMining (Sweden)'),
(41614, 34768, 'no_lang_code', 'name', 'Intelligent Machines (Sweden)'),
(41615, 34769, 'en', 'name', 'Australian Seafood Cooperative Research Center'),
(41616, 34770, 'en', 'name', 'JPB Foundation'),
(41617, 34771, 'en', 'name', 'Chemistry Industry Association of Canada'),
(41618, 34772, 'en', 'name', 'Food Standards Agency'),
(41619, 34773, 'en', 'name', 'Pacific College of Oriental Medicine'),
(41620, 34774, 'no_lang_code', 'name', 'Bunge (Canada)'),
(41621, 34775, 'en', 'name', 'PanAmerican Bioinformatics Institute'),
(41622, 34776, 'nl', 'name', 'Internationale Vereniging voor Neerlandistiek'),
(41623, 34777, 'no_lang_code', 'name', 'MagiQ Technologies (United States)'),
(41624, 34778, 'en', 'name', 'Acent Laboratories'),
(41625, 34779, 'en', 'name', 'Alaska Department of Labor and Workforce Development'),
(41626, 34780, 'no_lang_code', 'name', 'C-Therm Technologies (Canada)'),
(41627, 34781, 'no_lang_code', 'name', 'Scientific Applications & Research Associates (United States)'),
(41628, 34782, 'fr', 'name', 'Institut FranƧais du Cheval et de l''Ɖquitation'),
(41629, 34783, 'no_lang_code', 'name', 'SoniPulse (United States)'),
(41630, 34784, 'en', 'name', 'UmeƄ Municipality'),
(41631, 34785, 'en', 'name', 'Morris Animal Foundation'),
(41632, 34786, 'en', 'name', 'Cambridge Healthtech Institute'),
(41633, 34787, 'no_lang_code', 'name', 'Orbital Systems (Sweden)'),
(41634, 34788, 'no_lang_code', 'name', 'TIAX (United States)'),
(41635, 34789, 'en', 'name', 'New England Institute of Technology'),
(41636, 34790, 'en', 'name', 'First Hospital of Qinhuangdao'),
(41637, 34791, 'de', 'name', 'Deutsche Bundesstiftung Umwelt'),
(41638, 34792, 'no_lang_code', 'name', 'Analytical Spectral Devices (United States)'),
(41639, 34793, 'en', 'name', 'Third World Newsreel'),
(41640, 34794, 'no_lang_code', 'name', 'Impact Technology Development (United States)'),
(41641, 34795, 'en', 'name', 'Anhui Mental Health Center'),
(41642, 34795, 'zh', 'name', 'å®‰å¾½ēœē²¾ē„žå«ē”Ÿé˜²ę²»äø­åæƒ'),
(41643, 34796, 'no_lang_code', 'name', 'Beckett Energy Systems'),
(41644, 34797, 'no_lang_code', 'name', 'Needs Drive (Swedenā€Ž)'),
(41645, 34798, 'no_lang_code', 'name', 'Innosys (United States)'),
(41646, 34799, 'no_lang_code', 'name', 'NuCrypt (United States)'),
(41647, 34800, 'hu', 'name', 'Tokaji BorvidĆ©k SzőlĆ©szeti Ć©s BorĆ”szati KutatóintĆ©zet'),
(41648, 34801, 'no_lang_code', 'name', 'Devices for Dignity'),
(41649, 34802, 'no_lang_code', 'name', 'Dynamic Structures and Materials (United States)'),
(41650, 34803, 'en', 'name', 'Wallace Foundation'),
(41651, 34804, 'de', 'name', 'PƤdagogische Hochschule Salzburg'),
(41652, 34804, 'en', 'name', 'University of Education Salzburg'),
(41653, 34805, 'no_lang_code', 'name', 'Learnimation (United States)'),
(41654, 34806, 'en', 'name', 'Wellington Medical Research Foundation'),
(41655, 34807, 'no_lang_code', 'name', 'International Mezzo Technologies (United States)'),
(41656, 34808, 'en', 'name', 'Nazarene Bible College'),
(41657, 34809, 'de', 'name', 'Ɩsterreichische Institut für Internationale Politik'),
(41658, 34809, 'en', 'name', 'Austrian Institute for International Affairs'),
(41659, 34810, 'no_lang_code', 'name', 'ChemImage (United States)'),
(41660, 34811, 'no_lang_code', 'name', 'Diacarbon Energy (Canada)'),
(41661, 34812, 'no_lang_code', 'name', 'Nike (United States)'),
(41662, 34813, 'no_lang_code', 'name', 'Sika (Canada)'),
(41663, 34814, 'no_lang_code', 'name', 'International Electronic Machines (United States)'),
(41664, 34815, 'no_lang_code', 'name', 'ITER China'),
(41665, 34816, 'no_lang_code', 'name', 'Art Anderson Associates (United States)'),
(41666, 34817, 'no_lang_code', 'name', 'Hood Technology (United States)'),
(41667, 34818, 'en', 'name', 'Nuclear Safety And Security Commission'),
(41668, 34819, 'no_lang_code', 'name', 'Migma (United States)'),
(41669, 34820, 'no_lang_code', 'name', 'SCA Technica (United States)'),
(41670, 34821, 'no_lang_code', 'name', 'Makai Ocean Engineering (United States)'),
(41671, 34822, 'no_lang_code', 'name', 'Millennium Engineering and Integration (United States)'),
(41672, 34823, 'en', 'name', 'International Myeloma Foundation'),
(41673, 34824, 'no_lang_code', 'name', 'Rehab Ideas (United States)'),
(41674, 34825, 'en', 'name', 'British Lung Foundation'),
(41675, 34826, 'no_lang_code', 'name', 'Wuxi Taihu Hospital'),
(41676, 34827, 'no_lang_code', 'name', 'Fotonic (Sweden)'),
(41677, 34828, 'no_lang_code', 'name', 'Dessau-Soprin (Canada)'),
(41678, 34829, 'en', 'name', 'Danida Fellowship Centre'),
(41679, 34830, 'no_lang_code', 'name', 'CYBER Learning Corporation (United States)'),
(41680, 34831, 'no_lang_code', 'name', 'Xylophane (Sweden)'),
(41681, 34832, 'fr', 'name', 'Centre d’Infectiologie Christophe MĆ©rieux of Laos'),
(41682, 34833, 'no_lang_code', 'name', 'Research Institute for Man Made Fibres (Slovakia)'),
(41683, 34834, 'en', 'name', 'Regional Municipality of Niagara'),
(41684, 34835, 'no_lang_code', 'name', 'Invocon (United States)'),
(41685, 34836, 'en', 'name', 'Fulbright Foundation'),
(41686, 34837, 'no_lang_code', 'name', 'RBC Technologies (United States)'),
(41687, 34838, 'en', 'name', 'Kosciuszko Foundation'),
(41688, 34839, 'en', 'name', 'Water Research Foundation'),
(41689, 34840, 'no_lang_code', 'name', 'Multimatic (Canada)'),
(41690, 34841, 'no_lang_code', 'name', 'Materials Technologies (United States)'),
(41691, 34842, 'no_lang_code', 'name', 'CMTech (Australia)'),
(41692, 34843, 'no_lang_code', 'name', 'Ideal Power (United States)'),
(41693, 34844, 'en', 'name', 'Software Technology and Applications Competence Center'),
(41694, 34845, 'no_lang_code', 'name', 'Beacon Interactive Systems (United States)'),
(41695, 34846, 'no_lang_code', 'name', 'Fafard et FrĆØres (Canada)'),
(41696, 34847, 'no_lang_code', 'name', 'Toyota Motor Corporation (Canada)'),
(41697, 34848, 'no_lang_code', 'name', 'Berger (Canada)'),
(41698, 34849, 'en', 'name', 'Fusion Academy'),
(41699, 34850, 'no_lang_code', 'name', 'Emitech (United States)'),
(41700, 34851, 'no_lang_code', 'name', 'Colloidal Resource (Sweden)'),
(41701, 34852, 'nl', 'name', 'BC Broekhin Roermond'),
(41702, 34853, 'fr', 'name', 'Alphabio'),
(41703, 34854, 'no_lang_code', 'name', 'Powertec (Slovakia)'),
(41704, 34855, 'no_lang_code', 'name', 'Compagnie Industrielle de la Matière Végétale (France)'),
(41705, 34856, 'no_lang_code', 'name', 'Fieldmetrics (United States)'),
(41706, 34857, 'en', 'name', 'Sichuan Provincial Department of Education'),
(41707, 34858, 'no_lang_code', 'name', 'Acellent Technologies (United States)'),
(41708, 34859, 'no_lang_code', 'name', 'Clear Align (United States)'),
(41709, 34860, 'no_lang_code', 'name', 'Cyrium Technologies (Canada)'),
(41710, 34861, 'no_lang_code', 'name', 'VI Manufacturing (United States)'),
(41711, 34862, 'no_lang_code', 'name', 'Global Engineering and Materials (United States)'),
(41712, 34863, 'no_lang_code', 'name', 'Integrated Photonics Technology (United States)'),
(41713, 34864, 'no_lang_code', 'name', 'New England Research (United States)'),
(41714, 34865, 'en', 'name', 'Ministry of Agriculture and Rural Development'),
(41715, 34865, 'es', 'name', 'Ministerio de Agricultura y Desarrollo Rural'),
(41716, 34866, 'en', 'name', 'Great Lakes Fishery Commission'),
(41717, 34867, 'no_lang_code', 'name', 'Management Sciences (United States)'),
(41718, 34868, 'no_lang_code', 'name', 'SixPoint Materials (United States)'),
(41719, 34869, 'en', 'name', 'Georgian National Museum'),
(41720, 34869, 'ka', 'name', 'įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒ›įƒ£įƒ–įƒ”'),
(41721, 34870, 'en', 'name', 'Jiangsu Provincial Hospital of Traditional Chinese Medicine'),
(41722, 34870, 'zh', 'name', 'ę±Ÿč‹ēœäø­åŒ»čÆē ”ē©¶é™¢'),
(41723, 34871, 'en', 'name', 'Marine Mammal Commission'),
(41724, 34872, 'en', 'name', 'Mary Kay Foundation'),
(41725, 34873, 'no_lang_code', 'name', 'Air Turbine Technology (United States)'),
(41726, 34874, 'no_lang_code', 'name', 'NextGen Aeronautics (United States)'),
(41727, 34875, 'no_lang_code', 'name', 'IMPETUS Afea (Sweden)'),
(41728, 34876, 'no_lang_code', 'name', 'Enser (United States)'),
(41729, 34877, 'en', 'name', 'Cambridge Commonwealth European and International Trust'),
(41730, 34878, 'no_lang_code', 'name', 'Vucht (Slovakia)'),
(41731, 34879, 'no_lang_code', 'name', 'Shear Form (United States)'),
(41732, 34880, 'en', 'name', 'Hungarian Institute for Educational Research and Development'),
(41733, 34881, 'no_lang_code', 'name', 'ATS Automation Tooling Systems (Canada)'),
(41734, 34882, 'no_lang_code', 'name', 'Princeton Optronics (United States)'),
(41735, 34883, 'no_lang_code', 'name', 'ParetoLogic (Canada)'),
(41736, 34884, 'en', 'name', 'Qatar Faculty of Islamic Studies'),
(41737, 34885, 'no_lang_code', 'name', 'GeoInformation (United Kingdom)'),
(41738, 34886, 'no_lang_code', 'name', 'Synergia (United States)'),
(41739, 34887, 'no_lang_code', 'name', 'Danaher (Sweden)'),
(41740, 34888, 'en', 'name', 'Kansas City Art Institute'),
(41741, 34889, 'en', 'name', 'Foundation for Innovative New Diagnostics'),
(41742, 34890, 'en', 'name', 'American College of Veterinary Internal Medicine Foundation'),
(41743, 34891, 'en', 'name', 'New World School of the Arts'),
(41744, 34892, 'no_lang_code', 'name', 'Intelligent Models (United States)'),
(41745, 34893, 'no_lang_code', 'name', 'XMCO (United States)'),
(41746, 34894, 'no_lang_code', 'name', 'Girochem (Slovakia)'),
(41747, 34895, 'en', 'name', 'Access Technologies Group'),
(41748, 34896, 'no_lang_code', 'name', 'Safety Dynamics (United States)'),
(41749, 34897, 'en', 'name', 'Dasman Diabetes Institute'),
(41750, 34898, 'de', 'name', 'Fraunhofer-Institut für Biomedizinische Technik'),
(41751, 34898, 'en', 'name', 'Fraunhofer Institute for Biomedical Engineering'),
(41752, 34899, 'en', 'name', 'Energy Market Authority'),
(41753, 34900, 'no_lang_code', 'name', 'Information International Associates (United States)'),
(41754, 34901, 'en', 'name', 'Ontario Bean Growers'),
(41755, 34902, 'no_lang_code', 'name', 'SPI Surgical (United States)'),
(41756, 34903, 'en', 'name', 'Government of Manitoba'),
(41757, 34904, 'hu', 'name', 'HortobƔgy National Park Directorate'),
(41758, 34905, 'no_lang_code', 'name', 'Metric Systems Corporation (United States)'),
(41759, 34906, 'en', 'name', 'Association for Asian Studies'),
(41760, 34907, 'en', 'name', 'Jones College'),
(41761, 34908, 'no_lang_code', 'name', 'Broadata Communications (United States)'),
(41762, 34909, 'no_lang_code', 'name', 'Expand (United States)'),
(41763, 34910, 'en', 'name', 'Rehasport Clinic'),
(41764, 34911, 'es', 'name', 'Magdalena Villegas de MartĆ­nez el Hospital'),
(41765, 34912, 'en', 'name', 'National Assembly'),
(41766, 34913, 'no_lang_code', 'name', 'Hanil E-Hwa (Slovakia)'),
(41767, 34914, 'no_lang_code', 'name', 'Advanced Processing Technology (United States)'),
(41768, 34915, 'no_lang_code', 'name', 'Water and Earth Science Associates (Canada)'),
(41769, 34916, 'en', 'name', 'Indian Centre for Space Physics'),
(41770, 34917, 'no_lang_code', 'name', 'Air Liquide (Canada)'),
(41771, 34918, 'cs', 'name', 'PlanetƔrium Praha'),
(41772, 34919, 'no_lang_code', 'name', 'Select Engineering Services (United States)'),
(41773, 34920, 'no_lang_code', 'name', 'EkoBalans Fenix (Sweden)'),
(41774, 34921, 'no_lang_code', 'name', 'Metis Design Corporation (United States)'),
(41775, 34922, 'en', 'name', 'Terry Fox Foundation'),
(41776, 34923, 'no_lang_code', 'name', 'CreoNex Systems (United States)'),
(41777, 34924, 'sv', 'name', 'Drivhuset'),
(41778, 34925, 'en', 'name', 'Mentor Technologies'),
(41779, 34926, 'en', 'name', 'Fourth People''s Hospital of Changzhou'),
(41780, 34927, 'de', 'name', 'Ɩsterreichische Gesellschaft für Politikwissenschaft'),
(41781, 34927, 'en', 'name', 'Austrian Political Science Association'),
(41782, 34928, 'no_lang_code', 'name', 'Devon Energy (Canada)'),
(41783, 34929, 'no_lang_code', 'name', 'Ferro Solutions (United States)'),
(41784, 34930, 'no_lang_code', 'name', 'Innovation Management Consulting Group (Sweden)'),
(41785, 34931, 'en', 'name', 'Appalshop'),
(41786, 34932, 'en', 'name', 'Vision Australia'),
(41787, 34933, 'en', 'name', 'Architects Council of Europe, Conseil des Architectes d''Europe'),
(41788, 34934, 'no_lang_code', 'name', 'Procont (Slovakia)'),
(41789, 34935, 'no_lang_code', 'name', 'VT Systems (United States)'),
(41790, 34936, 'no_lang_code', 'name', 'Baker Hughes (Canada)'),
(41791, 34937, 'en', 'name', 'Gongju National Hospital'),
(41792, 34937, 'ko', 'name', '국립공주병원'),
(41793, 34938, 'no_lang_code', 'name', 'Applied Optoelectronics (United States)'),
(41794, 34939, 'no_lang_code', 'name', 'Wasatch Molecular (United States)'),
(41795, 34940, 'no_lang_code', 'name', 'Della Enterprises (United States)'),
(41796, 34941, 'no_lang_code', 'name', 'ARC Technology (United States)'),
(41797, 34942, 'en', 'name', 'Digital Media Arts College'),
(41798, 34943, 'no_lang_code', 'name', 'Silvus Technologies (United States)'),
(41799, 34944, 'fr', 'name', 'General Society of Surveillance'),
(41800, 34944, 'no_lang_code', 'name', 'SGS (Canada)'),
(41801, 34945, 'en', 'name', 'International Institute for Advanced Scientific Studies "Eduardo R. Caianiello"'),
(41802, 34945, 'it', 'name', 'Istituto Internazionale per gli Alti Studi Scientifici'),
(41803, 34946, 'en', 'name', 'American Roentgen Ray Society'),
(41804, 34947, 'no_lang_code', 'name', 'Affibody (Sweden)'),
(41805, 34948, 'sv', 'name', 'Swecare'),
(41806, 34949, 'en', 'name', 'First Affiliated Hospital of Wannan Medical College'),
(41807, 34950, 'no_lang_code', 'name', 'Omega Micro Technologies (United States)'),
(41808, 34951, 'no_lang_code', 'name', 'Avatar Medical (United States)'),
(41809, 34952, 'no_lang_code', 'name', 'YTL (United Kingdom)'),
(41810, 34953, 'ms', 'name', 'Hospital Sultanah Bahiyah'),
(41811, 34954, 'no_lang_code', 'name', 'STARR Life Sciences (United States)'),
(41812, 34955, 'no_lang_code', 'name', 'Lite Machines (United States)'),
(41813, 34956, 'no_lang_code', 'name', 'Yellow Island Aquaculture (Canada)'),
(41814, 34957, 'no_lang_code', 'name', 'LPA Software Solutions (United States)'),
(41815, 34958, 'no_lang_code', 'name', 'Advanced Energy Systems (United States)'),
(41816, 34959, 'en', 'name', 'Society for Imaging Informatics in Medicine'),
(41817, 34960, 'nl', 'name', 'Onderzoekschool Ethiek'),
(41818, 34961, 'en', 'name', 'Technological University Hpa-An'),
(41819, 34962, 'no_lang_code', 'name', 'Optonicus (United States)'),
(41820, 34963, 'no_lang_code', 'name', 'Predect (Sweden)'),
(41821, 34964, 'en', 'name', 'Dutch Inspectorate of Education'),
(41822, 34964, 'nl', 'name', 'Inspectie van het Onderwijs'),
(41823, 34965, 'no_lang_code', 'name', 'Analytical Processes Engineered Solutions (United States)'),
(41824, 34966, 'en', 'name', 'Norwegian Labour Movement Archives and Library'),
(41825, 34967, 'no_lang_code', 'name', 'Nokomis (United States)'),
(41826, 34968, 'en', 'name', 'Fourth Affiliated Hospital of Anhui Medical University'),
(41827, 34968, 'zh', 'name', 'å®‰å¾½åŒ»ē§‘å¤§å­¦ē¬¬å››é™„å±žåŒ»é™¢'),
(41828, 34969, 'no_lang_code', 'name', 'Image Acoustics (United States)'),
(41829, 34970, 'no_lang_code', 'name', 'Lubricating Specialties Company (United States)'),
(41830, 34971, 'en', 'name', 'Fuzhou Neuro Psychiatric Hospital'),
(41831, 34972, 'en', 'name', 'Ohio Environmental Protection Agency'),
(41832, 34973, 'no_lang_code', 'name', 'Easy Global Market (France)'),
(41833, 34974, 'en', 'name', 'American Neurotology Society'),
(41834, 34975, 'en', 'name', 'Institute for Christian Works'),
(41835, 34976, 'en', 'name', 'Directorate General of Health Services'),
(41836, 34977, 'en', 'name', 'Maddie''s Fund'),
(41837, 34978, 'en', 'name', 'Karl-Adam Bonnier Foundation'),
(41838, 34979, 'no_lang_code', 'name', 'Emerging Concepts (United States)'),
(41839, 34980, 'no_lang_code', 'name', 'Aralia Systems (United Kingdom)'),
(41840, 34981, 'no_lang_code', 'name', 'Bioscience (Slovakia)'),
(41841, 34982, 'de', 'name', 'Studienstiftung des deutschen Volkes'),
(41842, 34982, 'en', 'name', 'German National Academic Foundation'),
(41843, 34983, 'no_lang_code', 'name', 'PHDS (United States)'),
(41844, 34984, 'no_lang_code', 'name', 'Cognimatics (Sweden)'),
(41845, 34985, 'no_lang_code', 'name', 'SCS Engineers (United States)'),
(41846, 34986, 'es', 'name', 'Universidad AeronƔutica en QuerƩtaro'),
(41847, 34987, 'en', 'name', 'Global Solutions for Infectious Diseases'),
(41848, 34988, 'en', 'name', 'Centre for Health Equity Studies'),
(41849, 34989, 'en', 'name', 'Oxfordshire Clinical Commissioning Group'),
(41850, 34990, 'no_lang_code', 'name', 'AZ Technology (United States)'),
(41851, 34991, 'no_lang_code', 'name', 'Morcom International (United States)'),
(41852, 34992, 'no_lang_code', 'name', 'Analysis Design & Diagnostics (United States)'),
(41853, 34993, 'en', 'name', 'Marwell Zoo'),
(41854, 34994, 'no_lang_code', 'name', 'Cycorp (United States)'),
(41855, 34995, 'no_lang_code', 'name', 'RE2 (United States)'),
(41856, 34996, 'en', 'name', 'Cetacean Society International'),
(41857, 34997, 'no_lang_code', 'name', 'Advanced Systems & Technologies (United States)'),
(41858, 34998, 'no_lang_code', 'name', 'Finning (Canada)'),
(41859, 34999, 'en', 'name', 'Virginia Environmental Endowment'),
(41860, 35000, 'no_lang_code', 'name', 'Biotika (Slovakia)'),
(41861, 35001, 'en', 'name', 'Institute of Vertebrate Paleontology and Paleoanthropology'),
(41862, 35001, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¤č„Šę¤ŽåŠØē‰©äøŽå¤äŗŗē±»ē ”ē©¶ę‰€'),
(41863, 35002, 'no_lang_code', 'name', 'BioBag (Norway)'),
(41864, 35003, 'no_lang_code', 'name', 'Opusphere (Brazil)'),
(41865, 35004, 'ja', 'name', 'ē„žå±±å¾©ē”Ÿē—…é™¢'),
(41866, 35004, 'no_lang_code', 'name', 'Koyama Fukusei Hospital'),
(41867, 35005, 'no_lang_code', 'name', 'Hydrolift (Norway)'),
(41868, 35006, 'en', 'name', 'Hainan Maternal and Child Health Hospital'),
(41869, 35007, 'no_lang_code', 'name', 'Linax (Brazil)'),
(41870, 35008, 'en', 'name', 'Midlands Provincial Hospital'),
(41871, 35009, 'pt', 'name', 'Fundação para o Desenvolvimento Médico e Hospitalar'),
(41872, 35010, 'en', 'name', 'Kjeller Innovation'),
(41873, 35010, 'no_lang_code', 'name', 'Kjeller Innovasjon (Norway)'),
(41874, 35011, 'en', 'name', 'Tokyo College of Environment'),
(41875, 35012, 'de', 'name', 'Hochschule für Musik Franz Liszt Weimar'),
(41876, 35012, 'en', 'name', 'University of Music FRANZ LISZT Weimar'),
(41877, 35013, 'no_lang_code', 'name', 'Maruwa Foods and Biosciences (Japan)'),
(41878, 35014, 'no_lang_code', 'name', 'Stangeskovene (Norway)'),
(41879, 35015, 'no_lang_code', 'name', 'Agricef (Brazil)'),
(41880, 35016, 'en', 'name', 'Qinghai University Affiliated Hospital'),
(41881, 35016, 'zh', 'name', 'é’ęµ·å¤§å­¦é™„å±žåŒ»é™¢'),
(41882, 35017, 'no_lang_code', 'name', 'BioMaxima (Poland)'),
(41883, 35018, 'en', 'name', 'St. John''s Pleasant Valley Hospital'),
(41884, 35019, 'de', 'name', 'Stadtarchiv Erfurt'),
(41885, 35020, 'no_lang_code', 'name', 'Arctic Nutrition (Norway)'),
(41886, 35021, 'fr', 'name', 'Institut de Chimie de Nice'),
(41887, 35022, 'no_lang_code', 'name', 'SmartBio Tecnologia (Brazil)'),
(41888, 35023, 'en', 'name', 'University College of Agriculture and Environmental Studies'),
(41889, 35024, 'no_lang_code', 'name', 'Imerso (Norway)'),
(41890, 35025, 'no_lang_code', 'name', 'Falck Nutec (Norway)'),
(41891, 35026, 'de', 'name', 'Max-Planck-Institut für Empirische Ƅsthetik'),
(41892, 35026, 'en', 'name', 'Max Planck Institute for Empirical Aesthetics'),
(41893, 35027, 'en', 'name', 'Norwegian Red Cross'),
(41894, 35027, 'no', 'name', 'Norges RĆøde Kors'),
(41895, 35028, 'no_lang_code', 'name', 'Atotech (Slovenia)'),
(41896, 35029, 'en', 'name', 'Navodaya Dental College and Hospital'),
(41897, 35030, 'no_lang_code', 'name', 'Innolink (Finland)'),
(41898, 35031, 'en', 'name', 'Western Norway Regional Health Authority'),
(41899, 35032, 'no_lang_code', 'name', 'Kintama (Canada)'),
(41900, 35033, 'no_lang_code', 'name', 'Wenaas Workwear (Norway)'),
(41901, 35034, 'no_lang_code', 'name', 'Alchemy (Brazil)'),
(41902, 35035, 'en', 'name', 'Sturgeon Community Hospital'),
(41903, 35036, 'en', 'name', 'Nantong Maternity and Child Health Hospital'),
(41904, 35037, 'en', 'name', 'PSB College Vietnam'),
(41905, 35038, 'en', 'name', 'Taksim German Hospital'),
(41906, 35038, 'tr', 'name', 'Taksim Alman Hastanesi'),
(41907, 35039, 'it', 'name', 'Azienda Sanitaria UnitĆ  Locale di Reggio Emilia'),
(41908, 35040, 'no_lang_code', 'name', 'Belver Brasil Instrumentos (Brazil)'),
(41909, 35041, 'no_lang_code', 'name', 'Senshio Rifu hospital'),
(41910, 35042, 'no', 'name', 'Hemne Kommune'),
(41911, 35043, 'no_lang_code', 'name', 'Pleat (Norway)'),
(41912, 35044, 'en', 'name', 'Wuqing District People''s Hospital'),
(41913, 35045, 'no_lang_code', 'name', 'Solum Forlag (Norway)'),
(41914, 35046, 'pt', 'name', 'Faculdade Brasil'),
(41915, 35047, 'no_lang_code', 'name', 'Beijing VDJBio (China)'),
(41916, 35048, 'no_lang_code', 'name', 'Flapres (Norway)'),
(41917, 35049, 'no_lang_code', 'name', 'AquaFence (Norway)'),
(41918, 35050, 'no_lang_code', 'name', 'Gerenciamento Tecnologia e Sistemas (Brazil)'),
(41919, 35051, 'no_lang_code', 'name', 'Vónin Refa (Norway)'),
(41920, 35052, 'no_lang_code', 'name', 'Eurofins (Norway)'),
(41921, 35053, 'en', 'name', 'American University of Antigua'),
(41922, 35054, 'de', 'name', 'Herzogin Anna Amalia Bibliothek'),
(41923, 35054, 'en', 'name', 'Duchess Anna Amalia Library'),
(41924, 35055, 'no_lang_code', 'name', 'Tata Steel (India)'),
(41925, 35056, 'de', 'name', 'Hochschule Bremerhaven'),
(41926, 35056, 'en', 'name', 'University of Applied Sciences Bremerhaven'),
(41927, 35057, 'de', 'name', 'Stadtarchiv Grevesmühlen'),
(41928, 35058, 'no_lang_code', 'name', 'Naviaq (Norway)'),
(41929, 35059, 'no_lang_code', 'name', 'Fjord Marin (Norway)'),
(41930, 35060, 'no_lang_code', 'name', 'GlobalMag (Brazil)'),
(41931, 35061, 'en', 'name', 'Baptist College of Health Sciences'),
(41932, 35062, 'no_lang_code', 'name', 'BlƄst Film (Norway)'),
(41933, 35063, 'no', 'name', 'Ƙksnes Kommune'),
(41934, 35064, 'en', 'name', 'Western Isles Hospital'),
(41935, 35065, 'pt', 'name', 'Sociedade Brasileira de CiĆŖncia e Tecnologia de Alimentos'),
(41936, 35066, 'pt', 'name', 'Associação dos Geógrafos Brasileiros'),
(41937, 35067, 'en', 'name', 'Meizhou City People''s Hospital'),
(41938, 35067, 'zh', 'name', 'ę¢…å·žåø‚äŗŗę°‘åŒ»é™¢'),
(41939, 35068, 'en', 'name', 'Swiss Association for Private Schools and Universities'),
(41940, 35069, 'no_lang_code', 'name', 'Comtrade (Slovenia)'),
(41941, 35070, 'en', 'name', 'Bantry General Hospital'),
(41942, 35070, 'ga', 'name', 'OspidƩal GinearƔlta Bheanntraƭ'),
(41943, 35071, 'en', 'name', 'Eglin Air Force Base'),
(41944, 35072, 'no', 'name', 'NHO Logistikk og Transport'),
(41945, 35073, 'en', 'name', 'Division of Molecular & Cellular Biosciences'),
(41946, 35074, 'no_lang_code', 'name', 'PubGene (Norway)'),
(41947, 35075, 'en', 'name', 'Nkozi Hospital'),
(41948, 35076, 'no_lang_code', 'name', 'Bergen Energi (Norway)'),
(41949, 35077, 'no_lang_code', 'name', 'Gentros (Brazil)'),
(41950, 35078, 'en', 'name', 'Henan University Huaihe Hospital and Huaihe Clinical Institute'),
(41951, 35079, 'de', 'name', 'Katharinenhospital'),
(41952, 35080, 'en', 'name', 'Yeungjin College'),
(41953, 35080, 'ko', 'name', 'ģ˜ģ§„ģ „ė¬øėŒ€ķ•™'),
(41954, 35081, 'en', 'name', 'Mohak Hitech Speciality Hospital'),
(41955, 35082, 'no_lang_code', 'name', 'Bring (Norway)'),
(41956, 35083, 'no_lang_code', 'name', 'MOTECH Plasma (Norway)'),
(41957, 35084, 'sl', 'name', 'Pomurski muzej Murska Sobota'),
(41958, 35085, 'no_lang_code', 'name', 'Detec (Norway)'),
(41959, 35086, 'no_lang_code', 'name', 'Dinamo (Norway)'),
(41960, 35087, 'en', 'name', 'Hong Kong Adventist Hospital'),
(41961, 35087, 'zh', 'name', '香港港安醫院'),
(41962, 35088, 'no_lang_code', 'name', 'Nofi TromsĆø (Norway)'),
(41963, 35089, 'ja', 'name', 'å‡ŗå…‰čˆˆē”£'),
(41964, 35089, 'no_lang_code', 'name', 'Idemitsu Kosan (Japan)'),
(41965, 35090, 'no_lang_code', 'name', 'Oralls (Brazil)'),
(41966, 35091, 'no_lang_code', 'name', 'Lipidx (Norway)'),
(41967, 35092, 'no_lang_code', 'name', 'SystemlĆøsning (Norway)'),
(41968, 35093, 'en', 'name', 'Quebec Society for the Protection of Plants'),
(41969, 35093, 'fr', 'name', 'SociƩtƩ de Protection des Plantes du QuƩbec'),
(41970, 35094, 'no_lang_code', 'name', 'CoorsTek (Norway)'),
(41971, 35095, 'en', 'name', 'Other Side Studio'),
(41972, 35096, 'en', 'name', 'Paphos General Hospital'),
(41973, 35097, 'pt', 'name', 'Instituto de Estudos do Mar Almirante Paulo Moreira'),
(41974, 35098, 'en', 'name', 'Nuffield Orthopaedic Centre'),
(41975, 35099, 'en', 'name', 'Korean Association of Maxillofacial Plastic and Reconstructive Surgery'),
(41976, 35100, 'no_lang_code', 'name', 'Helland MĆøbler (Norway)'),
(41977, 35101, 'en', 'name', 'Institute of Genetics and Animal Biotechnology of the Polish Academy of Sciences'),
(41978, 35101, 'pl', 'name', 'Instytut Genetyki i Biotechnologii Zwierząt Polskiej Akademii Nauk'),
(41979, 35102, 'no_lang_code', 'name', 'Allstar PZL Glider (Poland)'),
(41980, 35103, 'pt', 'name', 'Fundação Zerbini'),
(41981, 35104, 'en', 'name', 'Fredrikstad Dyrehospital'),
(41982, 35105, 'no_lang_code', 'name', 'Sero (Norway)'),
(41983, 35106, 'no_lang_code', 'name', 'Firmenich (Norway)'),
(41984, 35107, 'no_lang_code', 'name', 'Norsk Hummer (Norway)'),
(41985, 35108, 'en', 'name', 'Cerro Coso Community College'),
(41986, 35109, 'no_lang_code', 'name', 'Future Solutions (Norway)'),
(41987, 35110, 'pt', 'name', 'AVM Faculdade Integrada'),
(41988, 35111, 'no_lang_code', 'name', 'Produs Aqua (Norway)'),
(41989, 35112, 'en', 'name', 'Eleanor Slater Hospital'),
(41990, 35113, 'no_lang_code', 'name', 'InflowControl (Norway)'),
(41991, 35114, 'no_lang_code', 'name', 'Talkped (Norway)'),
(41992, 35115, 'no_lang_code', 'name', 'Otechos (Norway)'),
(41993, 35116, 'en', 'name', 'Tadeusz Manteuffel Institute of History'),
(41994, 35116, 'pl', 'name', 'Instytut Historii im. Tadeusza Manteuffla'),
(41995, 35117, 'en', 'name', 'Rogaland Training & Education Centre'),
(41996, 35118, 'no', 'name', 'Norsk Matraps'),
(41997, 35119, 'no_lang_code', 'name', 'NorgesfƓr (Norway)'),
(41998, 35120, 'en', 'name', 'Clark Art Institute'),
(41999, 35120, 'es', 'name', 'Instituto de Arte Clark'),
(42000, 35121, 'tr', 'name', 'Ankara Mevki Asker Hastanesi'),
(42001, 35122, 'no_lang_code', 'name', 'Sugarcane Research Center (Brazil)'),
(42002, 35122, 'pt', 'name', 'Centro de Tecnologia Canavieira'),
(42003, 35123, 'no_lang_code', 'name', 'ZUM urban planning, design (Slovenia)'),
(42004, 35124, 'en', 'name', 'Wirral Women and Children''s Hospital'),
(42005, 35125, 'no_lang_code', 'name', '4Subsea (Norway)'),
(42006, 35126, 'no_lang_code', 'name', 'Elretur (Norway)'),
(42007, 35127, 'no_lang_code', 'name', 'Integrated Detector Electronics AS (Norway)'),
(42008, 35128, 'no_lang_code', 'name', 'CFD Marine (Norway)'),
(42009, 35129, 'no_lang_code', 'name', 'Sindh Madressatul Islam University'),
(42010, 35129, 'sd', 'name', 'Ų³Ł†ŚŒ مدرسته Ų§Ł„Ų§Ų³Ł„Ų§Ł…ā€Ž'),
(42011, 35129, 'ur', 'name', 'سندھ Ł…ŲÆŲ±Ų³Ūƒ الاسلام'),
(42012, 35130, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų“ŁŠŲ® Ł…Ų­Ł…ŲÆ Ų§Ł„ŁƒŲ³Ł†Ų²Ų§Ł† الجامعة'),
(42013, 35130, 'en', 'name', 'Alsalam University College'),
(42014, 35131, 'no_lang_code', 'name', 'Crevi (Norway)'),
(42015, 35132, 'no_lang_code', 'name', 'WorleyParsons (Brazil)'),
(42016, 35133, 'no_lang_code', 'name', 'AREX (Poland)'),
(42017, 35134, 'no_lang_code', 'name', 'INFOKLINIKA (Poland)'),
(42018, 35135, 'en', 'name', 'Norwegian Academy of Technological Sciences'),
(42019, 35136, 'en', 'name', 'Association for Electrotechnics and Automation in Industry'),
(42020, 35137, 'en', 'name', 'Gordon College, Gordon State College'),
(42021, 35138, 'de', 'name', 'UniversitƤtsklinik Marien Hospital Herne'),
(42022, 35139, 'de', 'name', 'Leibniz-Institut für Plasmaforschung und Technologie'),
(42023, 35139, 'en', 'name', 'Leibniz Institute for Plasma Science and Technology'),
(42024, 35140, 'en', 'name', 'Jiading District Central Hospital'),
(42025, 35141, 'no_lang_code', 'name', 'Amebis (Slovenia)'),
(42026, 35142, 'en', 'name', 'Lismore Base Hospital'),
(42027, 35143, 'de', 'name', 'Fraunhofer-Institut für Physikalische Messtechnik'),
(42028, 35143, 'en', 'name', 'Fraunhofer Institute for Physical Measurement Techniques'),
(42029, 35144, 'en', 'name', 'Cowal Community Hospital'),
(42030, 35145, 'en', 'name', 'Calvin Theological Seminary'),
(42031, 35146, 'en', 'name', 'Quzhou City People''s Hospital'),
(42032, 35147, 'no_lang_code', 'name', 'Prox Dynamics (Norway)'),
(42033, 35148, 'no_lang_code', 'name', 'Light Tech (Brazil)'),
(42034, 35149, 'en', 'name', 'WellStar Douglas Hospital'),
(42035, 35150, 'no_lang_code', 'name', 'Halogen (Norway)'),
(42036, 35151, 'no_lang_code', 'name', 'Fjordland (Norway)'),
(42037, 35152, 'no_lang_code', 'name', 'Polski Holding Obronny (Poland)'),
(42038, 35153, 'no_lang_code', 'name', 'MGGP Aero (Poland)'),
(42039, 35154, 'en', 'name', 'National Hospital'),
(42040, 35155, 'no_lang_code', 'name', 'JEOL (United States)'),
(42041, 35156, 'en', 'name', 'Windsor Regional Hospital'),
(42042, 35157, 'de', 'name', 'Polymet Jena'),
(42043, 35158, 'no_lang_code', 'name', 'Demetrix (Poland)'),
(42044, 35159, 'no_lang_code', 'name', 'PB Online (Poland)'),
(42045, 35160, 'no_lang_code', 'name', 'Simlink (Norway)'),
(42046, 35161, 'en', 'name', 'Austin Presbyterian Theological Seminary'),
(42047, 35162, 'no_lang_code', 'name', 'BƄtservice (Norway)'),
(42048, 35163, 'no_lang_code', 'name', 'Grupo GuaƧu (Brazil)'),
(42049, 35164, 'en', 'name', 'Federal Institute of SĆ£o Paulo'),
(42050, 35164, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de São Paulo'),
(42051, 35165, 'es', 'name', 'Hospital Psiquiatrico Infantil Juan N Navarro'),
(42052, 35166, 'en', 'name', 'Las Positas College'),
(42053, 35167, 'no_lang_code', 'name', 'Nanocore (Brazil)'),
(42054, 35168, 'en', 'name', 'PIH Health Hospital'),
(42055, 35169, 'no_lang_code', 'name', 'Polonia Aero (Poland)'),
(42056, 35170, 'no_lang_code', 'name', 'Semenarna (Slovenia)'),
(42057, 35171, 'no_lang_code', 'name', 'Lexikon Editora Digital (Brazil)'),
(42058, 35172, 'no_lang_code', 'name', 'Mobiletech (Norway)'),
(42059, 35173, 'no_lang_code', 'name', 'NorgesGruppen (Norway)'),
(42060, 35174, 'en', 'name', 'North Okkalapa General Hospital'),
(42061, 35174, 'my', 'name', 'မြောက် į€„į€€į€¹į€€į€œį€¬į€•į€†į€±į€øį€›į€Æį€¶'),
(42062, 35175, 'no_lang_code', 'name', 'EcoZON (Brazil)'),
(42063, 35176, 'en', 'name', 'Dodge City Community College'),
(42064, 35177, 'en', 'name', 'Xiaochang People''s Hospital'),
(42065, 35177, 'zh', 'name', 'å­ę˜ŒåŽæē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(42066, 35178, 'no_lang_code', 'name', 'Deltagruppen (Norway)'),
(42067, 35179, 'en', 'name', 'Lipetsk State Technical University'),
(42068, 35180, 'no_lang_code', 'name', 'DeAmp (Norway)'),
(42069, 35181, 'no', 'name', 'AksjeNorge'),
(42070, 35182, 'en', 'name', 'Islamic Azad University of Shahreza'),
(42071, 35183, 'fr', 'name', 'Institut de Biochimie et Biophysique MolƩculaire et Cellulaire'),
(42072, 35184, 'no_lang_code', 'name', 'Miriam (Norway)'),
(42073, 35185, 'en', 'name', 'AMRI Hospitals'),
(42074, 35186, 'en', 'name', 'Seojeong University'),
(42075, 35186, 'ko', 'name', 'ģ„œģ •ėŒ€ķ•™źµ'),
(42076, 35187, 'no_lang_code', 'name', 'Ecological Engineering Institute'),
(42077, 35188, 'en', 'name', 'Central Hospital Affiliated to Shenyang Medical College'),
(42078, 35189, 'no', 'name', 'Salten RegionrƄd'),
(42079, 35190, 'no_lang_code', 'name', 'Aquatic Farms (United States)'),
(42080, 35191, 'en', 'name', 'West China Second University Hospital of Sichuan University'),
(42081, 35192, 'no_lang_code', 'name', 'Profvet (Norway)'),
(42082, 35193, 'en', 'name', 'Sai Krishna Medical College & Hospital'),
(42083, 35194, 'no_lang_code', 'name', 'Å tore Steel (Slovenia)'),
(42084, 35195, 'no_lang_code', 'name', 'Hardanger Fjordfrukt (Norway)'),
(42085, 35196, 'en', 'name', 'Eastern Shore Hospital Center'),
(42086, 35197, 'en', 'name', 'Madzikane Ka Zulu Memorial Hospital'),
(42087, 35198, 'no_lang_code', 'name', 'Ƙsterdalsmia (Norway)'),
(42088, 35199, 'no_lang_code', 'name', 'Metas (Norway)'),
(42089, 35200, 'en', 'name', 'Niloufer Hospital'),
(42090, 35201, 'no_lang_code', 'name', 'Star Information Systems (Norway)'),
(42091, 35202, 'pt', 'name', 'Departamento Intersindical de Estatƭstica e Estudos SocioeconƓmicos'),
(42092, 35203, 'no_lang_code', 'name', 'Saga Welco (Norway)'),
(42093, 35204, 'no_lang_code', 'name', 'Selvaag Gruppen (Norway)'),
(42094, 35205, 'de', 'name', 'Archäologisches Landesmuseum Baden-Württemberg'),
(42095, 35206, 'no_lang_code', 'name', 'Lifemed (Brazil)'),
(42096, 35207, 'no_lang_code', 'name', 'Doble (Norway)'),
(42097, 35208, 'no_lang_code', 'name', 'York Osteoarchaeology (United Kingdom)'),
(42098, 35209, 'no_lang_code', 'name', 'PricewaterhouseCoopers (Norway)'),
(42099, 35210, 'no_lang_code', 'name', 'Seashell (Norway)'),
(42100, 35211, 'en', 'name', 'Caldwell Memorial Hospital'),
(42101, 35212, 'en', 'name', 'Northern College'),
(42102, 35213, 'en', 'name', 'Central Carolina Community College'),
(42103, 35214, 'en', 'name', 'Community College of Aurora'),
(42104, 35215, 'en', 'name', 'Bakırkƶy Psychiatric Hospital'),
(42105, 35216, 'en', 'name', 'Runde Environmental Centre'),
(42106, 35217, 'en', 'name', 'Logan Hospital'),
(42107, 35218, 'en', 'name', 'Northridge Hospital Medical Center'),
(42108, 35219, 'no_lang_code', 'name', 'Thermolab (Poland)'),
(42109, 35220, 'en', 'name', 'Łukasiewicz Research Network - Institute of Electrical Drives & Machines KOMEL'),
(42110, 35220, 'pl', 'name', 'Łukasiewicz Instytut Napędów i Maszyn Elektrycznych KOMEL'),
(42111, 35221, 'en', 'name', 'Adana Hospital'),
(42112, 35222, 'no_lang_code', 'name', 'Cupp Computing (Norway)'),
(42113, 35223, 'no_lang_code', 'name', 'GlucoSet (Norway)'),
(42114, 35224, 'fi', 'name', 'LƤnsi-Pohjan Sairaanhoitopiirin KuntayhtymƤ'),
(42115, 35225, 'de', 'name', 'Leibniz-Institut für die Pädagogik der Naturwissenschaften und Mathematik'),
(42116, 35225, 'en', 'name', 'Leibniz Institute for Science and Mathematics Education'),
(42117, 35226, 'no_lang_code', 'name', 'Episcenter (Slovenia)'),
(42118, 35227, 'en', 'name', 'Aditya Jyot Eye Hospital'),
(42119, 35228, 'pt', 'name', 'Santa Casa da Misericórdia de Bragança Paulista'),
(42120, 35229, 'en', 'name', 'K.S. Hegde Hospital'),
(42121, 35229, 'kn', 'name', 'ą²œą²øą³ą²Ÿą²æą³•ą²øą³ ಕೆ.ą²Žą²øą³ ą²¹ą³†ą²—ą³ą²”ą³† ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(42122, 35230, 'en', 'name', 'Huanghe Science and Technology College'),
(42123, 35230, 'zh', 'name', 'é»„ę²³ē§‘ęŠ€å­¦é™¢'),
(42124, 35231, 'no', 'name', 'Norsk Skogmuseum'),
(42125, 35232, 'no_lang_code', 'name', 'Inaq (Norway)'),
(42126, 35233, 'no_lang_code', 'name', 'Infrared Clinical Cancer Diagnostics (Norway)'),
(42127, 35234, 'no_lang_code', 'name', 'Blue Planet (Norway)'),
(42128, 35235, 'en', 'name', 'Hun School of Princeton'),
(42129, 35236, 'en', 'name', 'Tuaran Hospital'),
(42130, 35236, 'ms', 'name', 'Hospital Tuaran'),
(42131, 35237, 'no_lang_code', 'name', 'Victoria Hospital'),
(42132, 35238, 'en', 'name', 'HƩlio Alonso University'),
(42133, 35239, 'no_lang_code', 'name', 'Inventi (Norway)'),
(42134, 35240, 'no_lang_code', 'name', 'Retriev Technologies (United States)'),
(42135, 35241, 'en', 'name', 'Mid Coast Hospital'),
(42136, 35242, 'en', 'name', 'Institute of Health Services and Policy Research'),
(42137, 35243, 'en', 'name', 'Community Hospital of San Bernardino'),
(42138, 35244, 'no_lang_code', 'name', 'Ulefos Esco (Norway)'),
(42139, 35245, 'no_lang_code', 'name', 'Gepco (Brazil)'),
(42140, 35246, 'en', 'name', 'American Association of Pharmaceutical Scientists'),
(42141, 35247, 'no_lang_code', 'name', 'InnoCentive (United States)'),
(42142, 35248, 'no_lang_code', 'name', 'IKT Indre Namdal (Norway)'),
(42143, 35249, 'no_lang_code', 'name', 'Taoka Hospital'),
(42144, 35250, 'no_lang_code', 'name', 'Tecnovip (Brazil)'),
(42145, 35251, 'en', 'name', 'New Century International Hospital for Children'),
(42146, 35252, 'pt', 'name', 'ServiƧo AutƓnomo de Ɓgua e Esgoto de Jaboticabal'),
(42147, 35253, 'no_lang_code', 'name', 'Toshima Manufacturing (Japan)'),
(42148, 35254, 'no_lang_code', 'name', 'Vejthani Hospital'),
(42149, 35255, 'en', 'name', 'Goodwin College'),
(42150, 35256, 'no_lang_code', 'name', 'Calera (United States)'),
(42151, 35257, 'pt', 'name', 'Instituto UniversitƔrio de Pesquisas do Rio de Janeiro'),
(42152, 35258, 'no_lang_code', 'name', 'Energy Restructuring Agency (Slovenia)'),
(42153, 35259, 'en', 'name', 'Francophone University Association'),
(42154, 35259, 'fr', 'name', 'Agence universitaire de la Francophonie'),
(42155, 35260, 'en', 'name', 'World Allergy Organization'),
(42156, 35261, 'fr', 'name', 'Centre de RƩfƩrence DƩficits Immunitaires HƩrƩditaires'),
(42157, 35262, 'no_lang_code', 'name', 'CVS Mobile (Slovenia)'),
(42158, 35263, 'no_lang_code', 'name', 'MedieoperatĆørene (Norway)'),
(42159, 35264, 'en', 'name', 'Shenzhen Occupational Disease Prevention Hospital'),
(42160, 35265, 'no_lang_code', 'name', 'Zaptec (Norway)'),
(42161, 35266, 'no_lang_code', 'name', 'Stavanger Health Research (Norway)'),
(42162, 35267, 'en', 'name', 'Norwegian Hydrogen Forum'),
(42163, 35268, 'en', 'name', 'Arrow Lakes Hospital'),
(42164, 35269, 'no_lang_code', 'name', 'Mhnano (Brazil)'),
(42165, 35270, 'en', 'name', 'Fhrai Institute of Hospitality Management'),
(42166, 35271, 'en', 'name', 'Martina Hansens Hospital'),
(42167, 35272, 'no_lang_code', 'name', 'Movation (Norway)'),
(42168, 35273, 'no', 'name', 'Re Kommune'),
(42169, 35274, 'no_lang_code', 'name', 'Komga Hospital'),
(42170, 35275, 'de', 'name', 'Fraunhofer-Institut für Hochfrequenzphysik und Radartechnik'),
(42171, 35275, 'en', 'name', 'Fraunhofer Institute for High Frequency Physics and Radar Techniques'),
(42172, 35276, 'de', 'name', 'Reiss-Engelhorn-Museen'),
(42173, 35276, 'en', 'name', 'Reiss Engelhorn Museum'),
(42174, 35277, 'no_lang_code', 'name', 'Mari Petroleum Company (Pakistan)'),
(42175, 35278, 'no_lang_code', 'name', 'Flatsetsund Engineering (Norway)'),
(42176, 35279, 'no_lang_code', 'name', 'XTronica (Norway)'),
(42177, 35280, 'no_lang_code', 'name', 'Calpro (Norway)'),
(42178, 35281, 'no_lang_code', 'name', 'Mizushima Central Hospital'),
(42179, 35282, 'no_lang_code', 'name', 'Herbicat (Brazil)'),
(42180, 35283, 'en', 'name', 'Jessie McPherson Private Hospital'),
(42181, 35284, 'no_lang_code', 'name', 'SMM production systems (Slovenia)'),
(42182, 35285, 'no_lang_code', 'name', 'IQX-Inove Qualyx (Brazil)'),
(42183, 35286, 'en', 'name', 'WhaleSafari'),
(42184, 35287, 'no_lang_code', 'name', 'Hydal Aluminium Profiler (Norway)'),
(42185, 35288, 'en', 'name', 'Western Galilee College'),
(42186, 35288, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ גליל ×ž×¢×Ø×‘×™'),
(42187, 35289, 'no_lang_code', 'name', 'Cofimvaba Hospital'),
(42188, 35290, 'de', 'name', 'Ludwig Forum für Internationale Kunst'),
(42189, 35291, 'no_lang_code', 'name', 'Taro Pharmaceuticals (Canada)'),
(42190, 35292, 'no_lang_code', 'name', 'Wickman Spacecraft & Propulsion Company (United States)'),
(42191, 35293, 'no_lang_code', 'name', 'Morgan Stanley (United States)'),
(42192, 35294, 'no_lang_code', 'name', 'Comsol (United States)'),
(42193, 35295, 'no_lang_code', 'name', 'Poseidon (Norway)'),
(42194, 35296, 'no', 'name', 'Cultura Bank'),
(42195, 35297, 'en', 'name', 'Sri Venkateswara Veterinary University'),
(42196, 35297, 'te', 'name', 'ą°¶ą±ą°°ą±€ ą°µą±‡ą°‚ą°•ą°Ÿą±‡ą°¶ą±ą°µą°° ą°Ŗą°¶ą±ą°µą±ˆą°¦ą±ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚, తిరుపతి'),
(42197, 35298, 'no_lang_code', 'name', 'Vibhavadi Hospital'),
(42198, 35299, 'no_lang_code', 'name', 'Applica Test & Certification (Norway)'),
(42199, 35300, 'no_lang_code', 'name', 'Fibraforte (Brazil)'),
(42200, 35301, 'no_lang_code', 'name', 'BT Signaal (Norway)'),
(42201, 35302, 'en', 'name', 'Cape Breton Regional Hospital'),
(42202, 35303, 'de', 'name', 'Kunst- und Museumsbibliothek der Stadt Kƶln'),
(42203, 35304, 'no_lang_code', 'name', 'Igmat (Slovenia)'),
(42204, 35305, 'no_lang_code', 'name', 'GrĆønt Punkt Norge (Norway)'),
(42205, 35306, 'en', 'name', 'Providence Milwaukie Hospital'),
(42206, 35307, 'en', 'name', 'Kajang Hospital'),
(42207, 35307, 'ms', 'name', 'Hospital Kajang'),
(42208, 35308, 'en', 'name', 'Lviv City Children''s Hospital'),
(42209, 35309, 'no_lang_code', 'name', 'Military Communication Works No 2 (Poland)'),
(42210, 35310, 'en', 'name', 'International Psychoanalytic University Berlin'),
(42211, 35311, 'pt', 'name', 'Assembleia Legislativa de SĆ£o Paulo'),
(42212, 35312, 'pt', 'name', 'Associação dos Floricultores da Região da Via Dutra'),
(42213, 35313, 'no_lang_code', 'name', 'Scale Protection (Norway)'),
(42214, 35314, 'no_lang_code', 'name', 'Seatrans (Norway)'),
(42215, 35315, 'en', 'name', 'District Headquarters Hospital Battagram'),
(42216, 35315, 'ur', 'name', 'Ł…Ų±Ś©Ų²ŪŒ ضلع ہسپتال بٹگرام'),
(42217, 35316, 'no_lang_code', 'name', 'Gorenjska Predilnica (Slovenia)'),
(42218, 35317, 'no', 'name', 'Karasjok Kommune'),
(42219, 35318, 'no_lang_code', 'name', 'JointBiomed (Norway)'),
(42220, 35319, 'no_lang_code', 'name', 'Mesko (Poland)'),
(42221, 35320, 'en', 'name', 'Ministry of Planning, Budget and Management'),
(42222, 35320, 'pt', 'name', 'Ministério do Planejamento, Orçamento, e Gestão'),
(42223, 35321, 'pt', 'name', 'Fundação de Apoio à Universidade Federal de São Paulo'),
(42224, 35322, 'en', 'name', 'Santa Ynez Valley Cottage Hospital'),
(42225, 35323, 'no_lang_code', 'name', 'Bandwidth10 (United States)'),
(42226, 35324, 'en', 'name', 'Raiganj University'),
(42227, 35325, 'en', 'name', 'Orentreich Foundation for the Advancement of Science'),
(42228, 35326, 'de', 'name', 'Leibniz-Zentrum für Literatur- und Kulturforschung'),
(42229, 35327, 'en', 'name', 'Xinhui People''s Hospital'),
(42230, 35328, 'no_lang_code', 'name', 'Seram Coatings (Norway)'),
(42231, 35329, 'no_lang_code', 'name', 'Hunton Fiber (Norway)'),
(42232, 35330, 'no_lang_code', 'name', 'RPR Technologies (Norway)'),
(42233, 35331, 'no_lang_code', 'name', 'Fish Pool (Norway)'),
(42234, 35332, 'no_lang_code', 'name', 'Dinamo Networks (Brazil)'),
(42235, 35333, 'en', 'name', 'Ahmed Bin Mohammed Military College'),
(42236, 35334, 'no_lang_code', 'name', 'Industry Media Group (Norway)'),
(42237, 35335, 'no_lang_code', 'name', 'Betonmast (Norway)'),
(42238, 35336, 'no_lang_code', 'name', 'Glommen Skog (Norway)'),
(42239, 35337, 'no_lang_code', 'name', 'Robot Aviation (Norway)'),
(42240, 35338, 'no_lang_code', 'name', 'Sea Urchin Farm (Norway)'),
(42241, 35339, 'no_lang_code', 'name', 'Data Respons (Norway)'),
(42242, 35340, 'pt', 'name', 'Instituto Internacional de Ciencias Sociais'),
(42243, 35341, 'no_lang_code', 'name', 'Autocomp Management (Poland)'),
(42244, 35342, 'en', 'name', 'Queen Elizabeth II Jubilee Hospital'),
(42245, 35343, 'no_lang_code', 'name', 'Viking Development Group (Norway)'),
(42246, 35344, 'en', 'name', 'Akershus County Council'),
(42247, 35345, 'no_lang_code', 'name', 'Forskning.no (Norway)'),
(42248, 35346, 'en', 'name', 'Technological Institute of QuerƩtaro'),
(42249, 35346, 'es', 'name', 'Instituto Tecnológico de Querétaro'),
(42250, 35347, 'no_lang_code', 'name', 'Idex (Norway)'),
(42251, 35348, 'no_lang_code', 'name', 'Enigma Systemy Ochrony Informacji (Poland)'),
(42252, 35349, 'no_lang_code', 'name', 'Vitex (Brazil)'),
(42253, 35350, 'no', 'name', 'Valnesfjord Helsesportssenter'),
(42254, 35351, 'pt', 'name', 'Real Hospital PortuguĆŖs'),
(42255, 35352, 'no_lang_code', 'name', 'Animaze Technology (Norway)'),
(42256, 35353, 'en', 'name', 'Brattleboro Memorial Hospital'),
(42257, 35354, 'no_lang_code', 'name', 'Siemens (Norway)'),
(42258, 35355, 'pt', 'name', 'Departamento Nacional de Produção Mineral'),
(42259, 35356, 'en', 'name', 'Cloete Joubert Hospital'),
(42260, 35357, 'no_lang_code', 'name', 'Prombiom Tecnologia (Brazil)'),
(42261, 35358, 'en', 'name', 'Institute of Mediterranean and Oriental Cultures'),
(42262, 35358, 'pl', 'name', 'Instytut Kultur Śródziemnomorskich i Orientalnych Polskiej Akademii Nauk'),
(42263, 35359, 'en', 'name', 'Technology and Engineering Center for Space Utilization'),
(42264, 35359, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē©ŗé—“åŗ”ē”Øå·„ēØ‹äøŽęŠ€ęœÆäø­åæƒ'),
(42265, 35360, 'no_lang_code', 'name', 'Icon (United Kingdom)'),
(42266, 35361, 'en', 'name', 'Lilly Endowment'),
(42267, 35362, 'de', 'name', 'Fraunhofer-Institut für Kurzzeitdynamik, Ernst-Mach-Institut'),
(42268, 35362, 'en', 'name', 'Fraunhofer Institute for High-Speed Dynamics, Ernst-Mach-Institut'),
(42269, 35363, 'no_lang_code', 'name', 'Fabryka Armatur Swarzędz (Poland)'),
(42270, 35364, 'no_lang_code', 'name', 'Eletro MƔquinas ComƩrcio e RepresentaƧƵes (Brazil)'),
(42271, 35365, 'en', 'name', 'Government Royapettah Hospital'),
(42272, 35366, 'no_lang_code', 'name', 'Tele-Com (Norway)'),
(42273, 35367, 'no_lang_code', 'name', 'Isola (Norway)'),
(42274, 35368, 'en', 'name', 'People’s Hospital of Wenshan Prefecture'),
(42275, 35369, 'en', 'name', 'Brazilian Internet Steering Committee'),
(42276, 35369, 'pt', 'name', 'ComitĆŖ Gestor da Internet no Brasil'),
(42277, 35370, 'en', 'name', 'Jinan Maternity And Care Hospital'),
(42278, 35371, 'en', 'name', 'Aga Khan Hospital for Women'),
(42279, 35372, 'en', 'name', 'Palm Springs General Hospital'),
(42280, 35373, 'no_lang_code', 'name', 'KenBIT (Poland)'),
(42281, 35374, 'en', 'name', 'Devon General Hospital'),
(42282, 35375, 'en', 'name', 'Norwegian Institute of Wood Technology'),
(42283, 35376, 'no_lang_code', 'name', 'Maxeta (Norway)'),
(42284, 35377, 'no_lang_code', 'name', 'Cimos (Slovenia)'),
(42285, 35378, 'no_lang_code', 'name', 'Offshore Sensing (Norway)'),
(42286, 35379, 'pt', 'name', 'Sociedade Brasileira de Diabetes'),
(42287, 35380, 'no_lang_code', 'name', 'Damel (Poland)'),
(42288, 35381, 'en', 'name', 'Sri Narayani Hospital & Research Centre'),
(42289, 35382, 'no_lang_code', 'name', 'Teddy TV (Norway)'),
(42290, 35383, 'no_lang_code', 'name', 'Veidekke (Norway)'),
(42291, 35384, 'no_lang_code', 'name', 'Fjordforsk (Norway)'),
(42292, 35385, 'no_lang_code', 'name', 'Bach Technology (Norway)'),
(42293, 35386, 'no_lang_code', 'name', 'KFB Polska (Poland)'),
(42294, 35387, 'en', 'name', 'Dalian Jinzhou First People''s Hospital'),
(42295, 35388, 'no_lang_code', 'name', 'Omega Media (Norway)'),
(42296, 35389, 'no_lang_code', 'name', 'Optibrium (United Kingdom)'),
(42297, 35390, 'no_lang_code', 'name', 'Arkitektskap (Norway)'),
(42298, 35391, 'no_lang_code', 'name', 'kopex (Poland)'),
(42299, 35392, 'no_lang_code', 'name', 'Fmaiis (Brazil)'),
(42300, 35393, 'en', 'name', 'American Nonsmokers'' Rights Foundation'),
(42301, 35394, 'en', 'name', 'Institute of Cancer Research');
INSERT INTO `ror_settings` VALUES
(42302, 35395, 'en', 'name', 'Suleyman Demirel University Research and Education Hospital'),
(42303, 35396, 'no_lang_code', 'name', 'Goap (Slovenia)'),
(42304, 35397, 'no_lang_code', 'name', 'Optopol Technology (Slovenia)'),
(42305, 35398, 'no_lang_code', 'name', 'Move About (Norway)'),
(42306, 35399, 'no_lang_code', 'name', 'Awat (Poland)'),
(42307, 35400, 'en', 'name', 'Oasis Hospital'),
(42308, 35401, 'en', 'name', 'Walla Walla General Hospital'),
(42309, 35402, 'en', 'name', 'Qiongtai Teachers College'),
(42310, 35403, 'no_lang_code', 'name', 'Electric Dreams (Brazil)'),
(42311, 35404, 'no_lang_code', 'name', 'Algaetech (Norway)'),
(42312, 35405, 'no_lang_code', 'name', 'SunSense (Norway)'),
(42313, 35406, 'no_lang_code', 'name', 'TideTec (Norway)'),
(42314, 35407, 'en', 'name', 'Max Super Speciality Hospital'),
(42315, 35408, 'no_lang_code', 'name', 'Hospital Conde S. JanuƔrio'),
(42316, 35408, 'pt', 'name', 'Centro Hospitalar Conde de São JanuÔrio'),
(42317, 35408, 'zh', 'name', 'ä»ä¼Æēˆµē»¼åˆåŒ»é™¢'),
(42318, 35409, 'en', 'name', 'Al-Qasemi Academic College of Education'),
(42319, 35410, 'no_lang_code', 'name', 'Budimex (Poland)'),
(42320, 35411, 'en', 'name', 'Lake Taylor Transitional Care Hospital'),
(42321, 35412, 'en', 'name', 'Chengdu Third People''s Hospital'),
(42322, 35412, 'zh', 'name', 'ęˆéƒ½åø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(42323, 35413, 'pt', 'name', 'Pro CrianƧa Cardƭaca'),
(42324, 35414, 'no_lang_code', 'name', 'Conexus (Norway)'),
(42325, 35415, 'de', 'name', 'Institut für Nanophotonik'),
(42326, 35416, 'en', 'name', 'Eagle Ridge Hospital'),
(42327, 35417, 'de', 'name', 'Gesellschaft zur Fƶrderung der Naturwissenschaftlich-Technischen Forschung'),
(42328, 35418, 'no_lang_code', 'name', 'Didai Tecnologia'),
(42329, 35419, 'no_lang_code', 'name', 'Centre for Research and Development in Telecommunications (Brazil)'),
(42330, 35420, 'no_lang_code', 'name', 'Vallvi (Norway)'),
(42331, 35421, 'en', 'name', 'Rawson-Neal Hospital'),
(42332, 35422, 'en', 'name', 'Norwegian Forest Industries'),
(42333, 35422, 'no_lang_code', 'name', 'Norske Skog (Norway)'),
(42334, 35423, 'en', 'name', 'Ford Hospital and Research Centre'),
(42335, 35424, 'en', 'name', 'Virtual High School'),
(42336, 35425, 'en', 'name', 'Mbarara National Referral Hospital'),
(42337, 35426, 'en', 'name', 'Livingstone Hospital'),
(42338, 35427, 'no_lang_code', 'name', 'DOF Subsea (Norway)'),
(42339, 35428, 'no', 'name', 'Norsk Matematisk Forening'),
(42340, 35429, 'pt', 'name', 'Instituto Penido Burnier'),
(42341, 35430, 'no_lang_code', 'name', 'Korporacja Wschód (Poland)'),
(42342, 35431, 'en', 'name', 'Suzhou Institute of Biomedical Engineering and Technology'),
(42343, 35431, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č‹å·žē”Ÿē‰©åŒ»å­¦å·„ēØ‹ęŠ€ęœÆē ”ē©¶ę‰€'),
(42344, 35432, 'no_lang_code', 'name', 'Asian Star Anchor Chain (China)'),
(42345, 35433, 'en', 'name', 'Bucks County Community College'),
(42346, 35434, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(42347, 35434, 'en', 'name', 'University College of Applied Science'),
(42348, 35435, 'no_lang_code', 'name', 'Elsewedy Electric (Slovenia)'),
(42349, 35436, 'no_lang_code', 'name', 'Tekstina (Slovenia)'),
(42350, 35437, 'en', 'name', 'Tamale Teaching Hospital'),
(42351, 35438, 'en', 'name', 'Manjara Ayurvedic Medical College and Hospital'),
(42352, 35439, 'no_lang_code', 'name', 'LxRay (Japan)'),
(42353, 35440, 'no_lang_code', 'name', 'Zomega Terahertz (United States)'),
(42354, 35441, 'no_lang_code', 'name', 'Kontali (Norway)'),
(42355, 35442, 'en', 'name', 'St. Conal''s Psychiatric Hospital'),
(42356, 35442, 'ga', 'name', 'OspidƩal Naomh Conaill'),
(42357, 35443, 'en', 'name', 'Geodetic Institute of Slovenia'),
(42358, 35444, 'no_lang_code', 'name', 'Techglass (Poland)'),
(42359, 35445, 'en', 'name', 'Norwegian Institute of Journalism'),
(42360, 35446, 'no_lang_code', 'name', 'MazeMap (Norway)'),
(42361, 35447, 'no', 'name', 'LofotrƄdet'),
(42362, 35448, 'pt', 'name', 'Pia Sociedade de SĆ£o Paulo'),
(42363, 35449, 'en', 'name', 'Zhangqiu City People''s Hospital'),
(42364, 35449, 'zh', 'name', 'ē« äø˜åŒŗäŗŗę°‘åŒ»é™¢'),
(42365, 35450, 'sl', 'name', 'Kmetijsko Gozdarski Zavod Nova Gorica'),
(42366, 35451, 'no_lang_code', 'name', 'Betta Tecnologia (Brazil)'),
(42367, 35452, 'en', 'name', 'Chinese General Hospital College of Nursing and Liberal Arts'),
(42368, 35453, 'en', 'name', 'Laboratory of Molecular Genetics'),
(42369, 35454, 'no_lang_code', 'name', 'Ablevision (Brazil)'),
(42370, 35455, 'no_lang_code', 'name', 'Visual Solutions (Norway)'),
(42371, 35456, 'no_lang_code', 'name', 'Axdev Group (Canada)'),
(42372, 35457, 'de', 'name', 'Marienhospital Stuttgart'),
(42373, 35458, 'en', 'name', 'Weisman Art Museum'),
(42374, 35459, 'tr', 'name', 'Hitit Üniversitesi Ƈorum Eğitim ve Araştırma Hastanesi'),
(42375, 35460, 'no_lang_code', 'name', 'Reelwell (Norway)'),
(42376, 35461, 'no_lang_code', 'name', 'Ecco Fibers (Brazil)'),
(42377, 35461, 'pt', 'name', 'Ecco Fibras Ɠpticas e Dispositivos'),
(42378, 35462, 'no_lang_code', 'name', 'Dynatec (Norway)'),
(42379, 35463, 'en', 'name', 'Columbia Theological Seminary'),
(42380, 35464, 'no_lang_code', 'name', 'Daihen Varstroj (Slovenia)'),
(42381, 35465, 'en', 'name', 'Serdang Hospital'),
(42382, 35466, 'en', 'name', 'Norwegian Academy of Science and Letters'),
(42383, 35467, 'no_lang_code', 'name', 'JHJ (Poland)'),
(42384, 35468, 'en', 'name', 'NorStella Foundation'),
(42385, 35469, 'en', 'name', 'MaineGeneral Medical Center'),
(42386, 35470, 'en', 'name', 'Norwegian Forestry Society'),
(42387, 35471, 'en', 'name', 'Institute for the Languages of Finland'),
(42388, 35472, 'no_lang_code', 'name', 'Norsk Gjenvinning (Norway)'),
(42389, 35473, 'no_lang_code', 'name', 'Human Factors Solutions (Norway)'),
(42390, 35474, 'en', 'name', 'Brazilian Dental Materials Group'),
(42391, 35474, 'pt', 'name', 'Grupo Brasileiro de Materiais DentƔrios'),
(42392, 35475, 'en', 'name', 'Woolmanhill Hospital'),
(42393, 35476, 'no_lang_code', 'name', 'Bergene Holm (Norway)'),
(42394, 35477, 'en', 'name', 'Mighty Penguins Sled Hockey'),
(42395, 35478, 'no_lang_code', 'name', 'Impetro International (Norway)'),
(42396, 35479, 'no_lang_code', 'name', 'VivID (Norway)'),
(42397, 35480, 'en', 'name', 'Samaritan North Lincoln Hospital'),
(42398, 35481, 'en', 'name', 'Brazilian Naval School'),
(42399, 35481, 'pt', 'name', 'Escola Naval'),
(42400, 35482, 'no_lang_code', 'name', 'Taxus (Poland)'),
(42401, 35483, 'no_lang_code', 'name', 'Elliptic Labs (Norway)'),
(42402, 35484, 'en', 'name', 'Synod Hospital'),
(42403, 35485, 'no_lang_code', 'name', 'Xepto (Norway)'),
(42404, 35486, 'en', 'name', 'Sherman Oaks Hospital'),
(42405, 35487, 'en', 'name', 'St. Helena Hospital'),
(42406, 35488, 'no_lang_code', 'name', 'Optimeering (Norway)'),
(42407, 35489, 'en', 'name', 'Paras Hospitals'),
(42408, 35490, 'no_lang_code', 'name', 'Seadrill (Norway)'),
(42409, 35491, 'en', 'name', 'Aviation Valley'),
(42410, 35492, 'no_lang_code', 'name', 'Ryoka Systems (Japan)'),
(42411, 35493, 'en', 'name', 'Computer Applications and Quantitative Methods in Archaeology'),
(42412, 35494, 'en', 'name', 'Haikou City People''s Hospital'),
(42413, 35495, 'en', 'name', 'Swedish Chemical Society'),
(42414, 35496, 'no_lang_code', 'name', 'Shenzhen Weiguang Biological Products (China)'),
(42415, 35497, 'pt', 'name', 'Arquivo Histórico Judaico Brasileiro'),
(42416, 35498, 'en', 'name', 'Forsyth Technical Community College'),
(42417, 35499, 'en', 'name', 'Arctic Monitoring And Assessment Programme'),
(42418, 35500, 'no_lang_code', 'name', 'ZEM (Norway)'),
(42419, 35501, 'en', 'name', 'Daelim University College'),
(42420, 35501, 'ko', 'name', 'ėŒ€ė¦¼ėŒ€ķ•™źµ'),
(42421, 35502, 'no_lang_code', 'name', 'Leiv Eiriksson Nyskaping (Norway)'),
(42422, 35503, 'no_lang_code', 'name', 'Torghatten (Norway)'),
(42423, 35504, 'no_lang_code', 'name', 'Capia (Norway)'),
(42424, 35505, 'en', 'name', 'St John of God Subiaco Hospital'),
(42425, 35506, 'no_lang_code', 'name', 'Pesa (Poland)'),
(42426, 35507, 'no_lang_code', 'name', 'St Francis’ Hospital'),
(42427, 35508, 'no_lang_code', 'name', 'Enoco (Norway)'),
(42428, 35509, 'no_lang_code', 'name', 'Oryza (Japan)'),
(42429, 35510, 'no_lang_code', 'name', 'Sotera Wireless (United States)'),
(42430, 35511, 'no_lang_code', 'name', 'International technology Alliance (Norway)'),
(42431, 35512, 'en', 'name', 'Ansal University'),
(42432, 35513, 'en', 'name', 'National Neurosciences Centre'),
(42433, 35514, 'no_lang_code', 'name', 'Noryards (Norway)'),
(42434, 35515, 'fr', 'name', 'CEA Gramat'),
(42435, 35516, 'no_lang_code', 'name', 'Revolugenix (Brazil)'),
(42436, 35517, 'no_lang_code', 'name', 'Pivotal (Canada)'),
(42437, 35518, 'en', 'name', 'Institute of Environmental Biology and Biotechnology'),
(42438, 35518, 'fr', 'name', 'L’Institut de Biologie Environnementale et Biotechnologie'),
(42439, 35519, 'en', 'name', 'Dr George Mukhari Hospital'),
(42440, 35520, 'no_lang_code', 'name', 'IKM Group (Norway)'),
(42441, 35521, 'en', 'name', 'Willingway Hospital'),
(42442, 35522, 'no_lang_code', 'name', 'Fishbones (Norway)'),
(42443, 35523, 'en', 'name', 'Bishop Veterinary Hospital'),
(42444, 35524, 'no_lang_code', 'name', 'Fatland (Norway)'),
(42445, 35525, 'en', 'name', 'Defence Metallurgical Research Laboratory'),
(42446, 35526, 'no_lang_code', 'name', 'Fernandez Hospital'),
(42447, 35527, 'no_lang_code', 'name', 'Santokba Durlabhji Memorial hospital'),
(42448, 35528, 'no_lang_code', 'name', 'T&G Elektro (Norway)'),
(42449, 35529, 'no_lang_code', 'name', 'Incon EletrƓnica (Brazil)'),
(42450, 35530, 'no_lang_code', 'name', 'Innotech Solar (Norway)'),
(42451, 35531, 'en', 'name', 'Zithulele Hospital'),
(42452, 35532, 'no_lang_code', 'name', 'CrayoNano (Norway)'),
(42453, 35533, 'no_lang_code', 'name', 'Future Subsea (Norway)'),
(42454, 35534, 'de', 'name', 'Technologie-Initiative SmartFactory KL'),
(42455, 35534, 'no_lang_code', 'name', 'SmartFactory (Germany)'),
(42456, 35535, 'no_lang_code', 'name', 'Didac (Norway)'),
(42457, 35536, 'en', 'name', 'Technical College System of Georgia'),
(42458, 35537, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ł…ŲÆŁŠŁ†Ų© العلم الجامعة'),
(42459, 35537, 'en', 'name', 'Madenat Alelem University College'),
(42460, 35538, 'en', 'name', 'Mallow General Hospital'),
(42461, 35538, 'ga', 'name', 'OspidƩal GinearƔlta Mhala'),
(42462, 35539, 'en', 'name', 'Rift Valley University'),
(42463, 35540, 'no_lang_code', 'name', 'Fisioatual (Brazil)'),
(42464, 35541, 'en', 'name', 'Suzhou Kowloon Hospital'),
(42465, 35542, 'no_lang_code', 'name', 'Casablanca (Brazil)'),
(42466, 35543, 'no', 'name', 'Molde kommune'),
(42467, 35544, 'en', 'name', 'Christ the King Seminary'),
(42468, 35545, 'pt', 'name', 'Fundação de Ciência, Aplicações e Tecnologia Espaciais'),
(42469, 35546, 'no_lang_code', 'name', 'Naturbilder (Norway)'),
(42470, 35547, 'no_lang_code', 'name', 'Hadeland Glassverk (Norway)'),
(42471, 35548, 'en', 'name', 'Norwegian Biotechnology Advisory Board'),
(42472, 35549, 'en', 'name', 'Norwegian Association of Disabled'),
(42473, 35550, 'en', 'name', 'Michener Institute'),
(42474, 35551, 'no_lang_code', 'name', 'Tanggangzi hospital'),
(42475, 35552, 'en', 'name', 'Rudolf Steiner University College'),
(42476, 35553, 'en', 'name', 'West End Hospital'),
(42477, 35554, 'en', 'name', 'Catherine Booth Hospital'),
(42478, 35554, 'ta', 'name', 'ą®•ą®¾ą®¤ą®°ą®æą®©ąÆ ą®ŖąÆ‚ą®¤ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ மனை'),
(42479, 35555, 'en', 'name', 'Central Clinical Hospital No 2 named Semashko'),
(42480, 35555, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š‘Š¾Š»ŃŒŠ½ŠøŃ†Š° имени Демашко'),
(42481, 35556, 'no_lang_code', 'name', 'Donka Hospital'),
(42482, 35557, 'no_lang_code', 'name', 'Thermtech (Norway)'),
(42483, 35558, 'no_lang_code', 'name', 'Inovamat (Brazil)'),
(42484, 35559, 'no_lang_code', 'name', 'Dong-A ST (South Korea)'),
(42485, 35560, 'no_lang_code', 'name', 'AKVA Group (Norway)'),
(42486, 35561, 'de', 'name', 'Unfallkrankenhaus Meidling'),
(42487, 35562, 'no_lang_code', 'name', 'Vulcan Wireless (United States)'),
(42488, 35563, 'en', 'name', 'ƅlesund Hospital'),
(42489, 35564, 'en', 'name', 'Aut Even Hospital'),
(42490, 35565, 'no_lang_code', 'name', 'ClanSoft (Brazil)'),
(42491, 35566, 'en', 'name', 'Tower Psychiatric Hospital'),
(42492, 35567, 'en', 'name', 'Counselling Centre for Children, Adolescents and Parents'),
(42493, 35568, 'no_lang_code', 'name', 'HEICO (France)'),
(42494, 35569, 'no_lang_code', 'name', 'Metal Ravne (Slovenia)'),
(42495, 35570, 'en', 'name', 'Unciano Colleges and General Hospital'),
(42496, 35571, 'en', 'name', 'Naguru General Hospital'),
(42497, 35572, 'no_lang_code', 'name', 'MESH (Norway)'),
(42498, 35573, 'no_lang_code', 'name', 'Watanabe Applied Technology (Brazil)'),
(42499, 35573, 'pt', 'name', 'Tecnologia Aplicada Watanabe'),
(42500, 35574, 'de', 'name', 'Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen'),
(42501, 35575, 'no_lang_code', 'name', 'ZEG Power (Norway)'),
(42502, 35576, 'pt', 'name', 'Centro de Tecnologia Mineral'),
(42503, 35577, 'no_lang_code', 'name', 'SnĆøgg (Norway)'),
(42504, 35578, 'en', 'name', 'Bakersfield Heart Hospital'),
(42505, 35579, 'no_lang_code', 'name', 'Polish Armaments Group (Poland)'),
(42506, 35580, 'no_lang_code', 'name', 'Eidsiva BredbƄnd (Norway)'),
(42507, 35581, 'no_lang_code', 'name', 'Rindalshytter (Norway)'),
(42508, 35582, 'en', 'name', 'Norwegian Directorate of Public Construction and Property'),
(42509, 35583, 'en', 'name', 'Institute of Economic Research Foundation'),
(42510, 35583, 'pt', 'name', 'Fundação Instituto de Pesquisas EconÓmicas'),
(42511, 35584, 'en', 'name', 'Biblical Theological Seminary'),
(42512, 35585, 'no_lang_code', 'name', 'Standard Bio (Norway)'),
(42513, 35586, 'pt', 'name', 'Associação Nacional de Pós-Graduação e Pesquisa em Educação'),
(42514, 35587, 'no_lang_code', 'name', 'Avinor (Norway)'),
(42515, 35588, 'no_lang_code', 'name', 'Camgian Microsystems (United States)'),
(42516, 35589, 'no_lang_code', 'name', 'Graminor (Norway)'),
(42517, 35590, 'en', 'name', 'Mease Dunedin Hospital'),
(42518, 35591, 'en', 'name', 'National Security Authority'),
(42519, 35592, 'no_lang_code', 'name', 'Shaklee (United States)'),
(42520, 35593, 'de', 'name', 'Klinikum Vest'),
(42521, 35594, 'pt', 'name', 'Laboratório Bacchi'),
(42522, 35595, 'no_lang_code', 'name', 'Corentium (Norway)'),
(42523, 35596, 'en', 'name', 'Littleton Adventist Hospital'),
(42524, 35597, 'en', 'name', 'Georg Kolbe Museum'),
(42525, 35598, 'no_lang_code', 'name', 'Faveo (Norway)'),
(42526, 35599, 'no_lang_code', 'name', 'Davvi Girji (Norway)'),
(42527, 35600, 'de', 'name', 'Institut für Arbeitsrecht und Arbeitsbeziehungen in der Europäischen Union'),
(42528, 35600, 'en', 'name', 'Institute for Labour Law and Industrial Relations in the European Union'),
(42529, 35601, 'no_lang_code', 'name', 'Itera - Inovação e Desenvolvimento Tecnológico (Brazil)'),
(42530, 35602, 'en', 'name', 'Mahsa University'),
(42531, 35603, 'en', 'name', 'Innovation Maritime'),
(42532, 35604, 'en', 'name', 'Elliot Provincial Hospital'),
(42533, 35605, 'pl', 'name', 'Ogród Zoologiczny w Krakowie'),
(42534, 35606, 'no_lang_code', 'name', 'Mahle Letrika (Slovenia)'),
(42535, 35607, 'no_lang_code', 'name', 'TGS (Norway)'),
(42536, 35608, 'en', 'name', 'National Mississippi River Museum & Aquarium'),
(42537, 35609, 'no_lang_code', 'name', 'Denofa (Norway)'),
(42538, 35610, 'no_lang_code', 'name', 'Wodociągi Kłodzkie (Poland)'),
(42539, 35611, 'no_lang_code', 'name', 'Kennedy Martin Health Outcomes (United Kingdom)'),
(42540, 35612, 'en', 'name', 'Daegu Health College'),
(42541, 35612, 'ko', 'name', 'ėŒ€źµ¬ė³“ź±“ėŒ€ķ•™źµ'),
(42542, 35613, 'no_lang_code', 'name', 'P.E. LaMoreaux & Associates (United States)'),
(42543, 35614, 'pt', 'name', 'Secretaria Municipal de Educação de São Paulo'),
(42544, 35615, 'en', 'name', 'Cecil College'),
(42545, 35616, 'no_lang_code', 'name', 'Hybrid Energy (Norway)'),
(42546, 35617, 'es', 'name', 'Hospital Borda, Hospital Interdisciplinario Psicoasistencial JosƩ Tiburcio Borda'),
(42547, 35618, 'no_lang_code', 'name', 'ScanVacc (Norway)'),
(42548, 35619, 'no_lang_code', 'name', 'NanoVelos (Poland)'),
(42549, 35620, 'no_lang_code', 'name', 'Shippingcluster (Norway)'),
(42550, 35621, 'no_lang_code', 'name', 'Simicon (Norway)'),
(42551, 35622, 'no_lang_code', 'name', 'Finnish Consulting Group (Finland)'),
(42552, 35623, 'en', 'name', 'Kyanous Stavros Hospital'),
(42553, 35624, 'de', 'name', 'Ortenau Klinikum'),
(42554, 35625, 'tr', 'name', 'Kocaeli Üniversitesi Araştırma ve Uygulama Hastanesi'),
(42555, 35626, 'no_lang_code', 'name', 'StormGeo (Norway)'),
(42556, 35627, 'no_lang_code', 'name', 'PRORES (Norway)'),
(42557, 35628, 'en', 'name', 'Friends of Independence National Historical Park'),
(42558, 35629, 'en', 'name', 'National Federation of Polish NGOs'),
(42559, 35630, 'no_lang_code', 'name', 'Optime Subsea Services (Norway)'),
(42560, 35631, 'en', 'name', 'Australian Lutheran College'),
(42561, 35632, 'no_lang_code', 'name', 'Dar Al Shifaa Hospital'),
(42562, 35633, 'en', 'name', 'Institute for History of Natural Sciences'),
(42563, 35633, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č‡Ŗē„¶ē§‘å­¦å²ē ”ē©¶ę‰€'),
(42564, 35634, 'en', 'name', 'Kharkiv University of Air Force'),
(42565, 35635, 'en', 'name', 'Howard College'),
(42566, 35636, 'en', 'name', 'Andover Newton Theological School'),
(42567, 35637, 'pt', 'name', 'Instituto de NeurociĆŖncias e Comportamento'),
(42568, 35638, 'no_lang_code', 'name', 'Yaskawa (Slovenia)'),
(42569, 35639, 'no_lang_code', 'name', 'Pro Analysis (Norway)'),
(42570, 35640, 'en', 'name', 'Medina General Hospital'),
(42571, 35641, 'sl', 'name', 'SploŔna BolniŔnica Slovenj Gradec'),
(42572, 35642, 'en', 'name', 'Laguna State Polytechnic University'),
(42573, 35643, 'no_lang_code', 'name', 'Svilanit (Slovenia)'),
(42574, 35644, 'en', 'name', 'Al-Ahli Hospital'),
(42575, 35645, 'no_lang_code', 'name', 'Alianta (Slovenia)'),
(42576, 35646, 'en', 'name', 'Nokami Kousei Sougo Hospital'),
(42577, 35647, 'en', 'name', 'Warwickshire Hospital'),
(42578, 35648, 'no_lang_code', 'name', 'Langlee Wave Power (Norway)'),
(42579, 35649, 'no_lang_code', 'name', 'Krakodlew (Poland)'),
(42580, 35650, 'no_lang_code', 'name', 'Pax Forlag (Norway)'),
(42581, 35651, 'no_lang_code', 'name', 'Kappa Bioscience (Norway)'),
(42582, 35652, 'no', 'name', 'Abelia'),
(42583, 35653, 'en', 'name', 'International Institute of Information Technology'),
(42584, 35653, 'ne', 'name', 'ą¤…ą¤‚ą¤¤ą¤°ą„ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤­ą„ą¤µą¤Øą„‡ą¤¶ą„ą¤µą¤°'),
(42585, 35654, 'en', 'name', 'Bowen University Teaching Hospital'),
(42586, 35655, 'en', 'name', 'Guizhou Cancer Hospital'),
(42587, 35656, 'no_lang_code', 'name', 'Teekay (Norway)'),
(42588, 35657, 'no_lang_code', 'name', 'Weatherford (Norway)'),
(42589, 35658, 'en', 'name', 'Parkway East Hospital'),
(42590, 35659, 'en', 'name', 'Ganzhou People''s Hospital'),
(42591, 35660, 'no_lang_code', 'name', 'Vectron Biosolutions (Norway)'),
(42592, 35661, 'no', 'name', 'Norsk SjĆømatsenter'),
(42593, 35662, 'no', 'name', 'Nordnorske EntreprenĆørers Service Organisasjon'),
(42594, 35663, 'de', 'name', 'Wissenschaftszentrum Ost- und Südosteuropa Regensburg'),
(42595, 35663, 'en', 'name', 'Research Centre for Eastern and South Eastern Europe'),
(42596, 35664, 'no_lang_code', 'name', 'Polikem (Brazil)'),
(42597, 35665, 'en', 'name', 'USRowing'),
(42598, 35666, 'en', 'name', 'Universal College'),
(42599, 35667, 'en', 'name', 'ICT Telemark'),
(42600, 35668, 'en', 'name', 'Nairobi Hospital'),
(42601, 35668, 'sw', 'name', 'Hospitali ya Nairobi'),
(42602, 35669, 'no_lang_code', 'name', 'Talum (Slovenia)'),
(42603, 35670, 'en', 'name', 'Winfocus'),
(42604, 35671, 'en', 'name', 'North Cape Municipality'),
(42605, 35672, 'no_lang_code', 'name', 'Hart Tech (Poland)'),
(42606, 35673, 'en', 'name', 'Norwegian Centre for Design and Architecture'),
(42607, 35674, 'en', 'name', 'Daud Memorial Hospital'),
(42608, 35675, 'pt', 'name', 'Fundação de Estudos AgrÔrios Luiz de Queiroz'),
(42609, 35676, 'no_lang_code', 'name', 'Asel-Tech (Brazil)'),
(42610, 35676, 'pt', 'name', 'Asel-Tech Tecnologia e AutomaƧăo'),
(42611, 35677, 'en', 'name', 'Chabahar Maritime University'),
(42612, 35678, 'no_lang_code', 'name', 'Comet Biotech (Norway)'),
(42613, 35679, 'en', 'name', 'Northeast Catholic College'),
(42614, 35680, 'en', 'name', 'Central Hospital of YaoundƩ'),
(42615, 35680, 'fr', 'name', 'HƓpital Central de YaoundƩ'),
(42616, 35681, 'en', 'name', 'Institute of Human Development, Child and Youth Health'),
(42617, 35682, 'no_lang_code', 'name', 'Polaris (Brazil)'),
(42618, 35683, 'en', 'name', 'Henan Normal University'),
(42619, 35683, 'zh', 'name', 'ę²³å—åøˆčŒƒå¤§å­¦'),
(42620, 35684, 'no_lang_code', 'name', 'Polymer Standards Service (Germany)'),
(42621, 35685, 'en', 'name', 'YaoundƩ Gynaecology, Obstetrics and Pediatrics Hospital'),
(42622, 35685, 'fr', 'name', 'HƓpital gynƩco-obstƩtrique et pƩdiatrique de YaoundƩ'),
(42623, 35686, 'no_lang_code', 'name', 'Green Cube Management (Norway)'),
(42624, 35687, 'no_lang_code', 'name', 'Made for Movement (Norway)'),
(42625, 35688, 'fr', 'name', 'DƩlƩgation Paris 12'),
(42626, 35689, 'no_lang_code', 'name', 'Compsis (Brazil)'),
(42627, 35690, 'en', 'name', 'Luzerne County Community College'),
(42628, 35691, 'no_lang_code', 'name', 'Truven Health Analytics (United States)'),
(42629, 35692, 'no_lang_code', 'name', 'Katowice Coal Holding (Poland)'),
(42630, 35693, 'en', 'name', 'St. Dympna''s Hospital'),
(42631, 35693, 'ga', 'name', 'OspidƩal Naomh Dympna'),
(42632, 35694, 'no_lang_code', 'name', 'Ansteel (China)'),
(42633, 35695, 'no', 'name', 'Gründerskolen Alumni'),
(42634, 35696, 'de', 'name', 'Landesarchiv Nordrhein-Westfalen'),
(42635, 35697, 'no_lang_code', 'name', 'Instar (Poland)'),
(42636, 35698, 'no_lang_code', 'name', 'Dolphin Geophysical (Norway)'),
(42637, 35699, 'en', 'name', 'Crafton Hills College'),
(42638, 35700, 'en', 'name', 'Norwegian Association of Economists'),
(42639, 35701, 'en', 'name', 'Lianyungang Maternal and Children’s Hospital'),
(42640, 35702, 'en', 'name', 'Norwegian National Research Ethics Committees'),
(42641, 35703, 'en', 'name', 'The Mount'),
(42642, 35704, 'en', 'name', 'Centre for International Relations'),
(42643, 35705, 'no_lang_code', 'name', 'Inovyn Norge (Norway)'),
(42644, 35706, 'en', 'name', 'Teaching Hospital Batticaloa'),
(42645, 35706, 'ta', 'name', 'போதனா ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆ ą®®ą®ŸąÆą®Ÿą®•ąÆą®•ą®³ą®ŖąÆą®ŖąÆ'),
(42646, 35707, 'de', 'name', 'OrthopƤdische UniversitƤtsklinik Friedrichsheim'),
(42647, 35707, 'en', 'name', 'Orthopaedic University Hospital Friedrichsheim'),
(42648, 35708, 'no_lang_code', 'name', 'White River Technologies (United States)'),
(42649, 35709, 'en', 'name', 'Children''s Hospital of San Antonio'),
(42650, 35710, 'en', 'name', 'Kamuli General Hospital'),
(42651, 35711, 'no_lang_code', 'name', 'Kruse Smith (Norway)'),
(42652, 35712, 'no_lang_code', 'name', 'AhR Pharmaceuticals (United States)'),
(42653, 35713, 'es', 'name', 'Hospital de Viladecans'),
(42654, 35714, 'pt', 'name', 'Associação Brasileira de Estatística'),
(42655, 35715, 'no_lang_code', 'name', 'R.J.Rygg International (Norway)'),
(42656, 35716, 'en', 'name', 'Center for Autism and Related Disorders'),
(42657, 35717, 'no_lang_code', 'name', 'OptaCore (Slovenia)'),
(42658, 35718, 'en', 'name', 'Eston College'),
(42659, 35719, 'en', 'name', 'University Hospital St. Marina'),
(42660, 35720, 'no_lang_code', 'name', 'Avexxin (Norway)'),
(42661, 35721, 'no', 'name', 'Unge aksjonƦrer'),
(42662, 35722, 'no_lang_code', 'name', 'Syngenta (Belgium)'),
(42663, 35723, 'en', 'name', 'Gulu Hospital'),
(42664, 35724, 'no_lang_code', 'name', 'Vardar (Norway)'),
(42665, 35725, 'no_lang_code', 'name', 'Nova Sea (Norway)'),
(42666, 35726, 'de', 'name', 'Niedersächsisches Institut für historische Küstenforschung'),
(42667, 35726, 'en', 'name', 'Lower Saxony Institute for Historical Coastal Research'),
(42668, 35727, 'en', 'name', 'Federation of Norwegian Agricultural Co-operatives'),
(42669, 35728, 'no_lang_code', 'name', 'Elektrobudowa (Poland)'),
(42670, 35729, 'no_lang_code', 'name', 'Metallco (Norway)'),
(42671, 35730, 'en', 'name', 'Milton Ulladulla Hospital'),
(42672, 35731, 'no_lang_code', 'name', 'Hynor LillestrĆøm (Norway)'),
(42673, 35732, 'en', 'name', 'Montana Department of Corrections'),
(42674, 35733, 'en', 'name', 'Narvik Science Park'),
(42675, 35734, 'en', 'name', '37 Military Hospital'),
(42676, 35735, 'no_lang_code', 'name', 'Terratec (Norway)'),
(42677, 35736, 'no_lang_code', 'name', 'Cobrasper (Brazil)'),
(42678, 35737, 'en', 'name', 'Utah State Hospital'),
(42679, 35737, 'es', 'name', 'Hospital del estado de Utah'),
(42680, 35738, 'cy', 'name', 'Ysbyty Maindiff Court'),
(42681, 35738, 'en', 'name', 'Maindiff Court Hospital'),
(42682, 35739, 'no_lang_code', 'name', 'Mycoteam (Norway)'),
(42683, 35740, 'no_lang_code', 'name', 'Petrolink (Norway)'),
(42684, 35741, 'no_lang_code', 'name', 'Ampara Hospital'),
(42685, 35741, 'si', 'name', 'ą¶…ą¶øą·Šą¶“ą·ą¶» ą¶»ą·ą·„ą¶½'),
(42686, 35742, 'pt', 'name', 'Hospital Samaritano de SĆ£o Paulo'),
(42687, 35743, 'no_lang_code', 'name', 'Drawski (Poland)'),
(42688, 35744, 'no', 'name', 'Narvik Sykehus'),
(42689, 35745, 'no_lang_code', 'name', 'MMC Green Technology (Norway)'),
(42690, 35746, 'no_lang_code', 'name', 'R4F Tecnologia (Brazil)'),
(42691, 35747, 'no_lang_code', 'name', 'Chazhikattu Hospital'),
(42692, 35748, 'no_lang_code', 'name', 'Fanbooster (Norway)'),
(42693, 35749, 'no_lang_code', 'name', 'Saemien Sijte'),
(42694, 35750, 'no_lang_code', 'name', 'North Energy (Norway)'),
(42695, 35751, 'pt', 'name', 'Espaço Ciência Viva'),
(42696, 35752, 'no_lang_code', 'name', 'Ticon (Brazil)'),
(42697, 35753, 'no_lang_code', 'name', 'Tauron (Poland)'),
(42698, 35754, 'no_lang_code', 'name', 'Sunano (China)'),
(42699, 35755, 'en', 'name', 'DESA'),
(42700, 35756, 'no_lang_code', 'name', 'Kroma Equipamentos Especiais (Brazil)'),
(42701, 35757, 'no_lang_code', 'name', 'Red, Orange and Green Environmental Technologies (Brazil)'),
(42702, 35758, 'en', 'name', 'Milton District Hospital'),
(42703, 35759, 'no_lang_code', 'name', 'Sirc (Poland)'),
(42704, 35760, 'en', 'name', 'Oregon International Council'),
(42705, 35761, 'no_lang_code', 'name', 'Arctic Pharma (Norway)'),
(42706, 35762, 'no_lang_code', 'name', 'Canzibe Hospital'),
(42707, 35763, 'no_lang_code', 'name', 'Verdal Inspection and Technology Center (Norway)'),
(42708, 35764, 'en', 'name', 'Fourth People''s Hospital of Sichuan Province'),
(42709, 35765, 'no_lang_code', 'name', 'TotAl-gruppen (Norway)'),
(42710, 35766, 'en', 'name', 'Ancora Psychiatric Hospital'),
(42711, 35767, 'en', 'name', 'Europe Hospitals'),
(42712, 35767, 'nl', 'name', 'Europa Ziekenhuizen'),
(42713, 35768, 'no_lang_code', 'name', 'Ravimed (Poland)'),
(42714, 35769, 'af', 'name', 'Kalafong Hospitaal'),
(42715, 35769, 'en', 'name', 'Kalafong Hospital'),
(42716, 35770, 'no_lang_code', 'name', 'Med Data Quest (United States)'),
(42717, 35771, 'pt', 'name', 'Fundação Faculdade de Odontologia'),
(42718, 35772, 'no_lang_code', 'name', 'Hansa Borg Bryggerier (Norway)'),
(42719, 35773, 'pt', 'name', 'Associação Nacional de Pós-Graduação e Pesquisa em Ciências Sociais'),
(42720, 35774, 'de', 'name', 'Deutsches Zentrum für Altersfragen'),
(42721, 35774, 'en', 'name', 'German Centre of Gerontology'),
(42722, 35775, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Japan)'),
(42723, 35776, 'no_lang_code', 'name', 'NovaBiotics (Norway)'),
(42724, 35777, 'en', 'name', 'Association of the Technological Integrated Systems Laboratory'),
(42725, 35777, 'pt', 'name', 'Laboratório de Sistemas IntegrÔveis Tecnológico'),
(42726, 35778, 'no_lang_code', 'name', 'TecSUS Tecnologias para a Sustentabilidade (Brazil)'),
(42727, 35779, 'no_lang_code', 'name', 'GeneSeque (Norway)'),
(42728, 35780, 'en', 'name', 'Criswell College'),
(42729, 35781, 'no_lang_code', 'name', 'Frost Produkt (Norway)'),
(42730, 35782, 'en', 'name', 'Institute of Agricultural and Food Economics'),
(42731, 35783, 'no_lang_code', 'name', 'Integrated Optoelectronics (Norway)'),
(42732, 35784, 'en', 'name', 'Institute of Geography and Spatial Organization, Polish Academy of Sciences'),
(42733, 35785, 'en', 'name', 'The First People''s Hospital of Shunde'),
(42734, 35786, 'no_lang_code', 'name', 'Gascontrol Polska'),
(42735, 35787, 'en', 'name', 'Energy Agency for Southeast'),
(42736, 35788, 'en', 'name', 'Gateway Community and Technical College'),
(42737, 35789, 'fr', 'name', 'Robotique FIRST QuƩbec'),
(42738, 35790, 'en', 'name', 'Randall Children''s Hospital at Legacy Emanuel'),
(42739, 35791, 'de', 'name', 'Hochschule für Musik, Theater und Medien Hannover'),
(42740, 35791, 'en', 'name', 'Hanover University of Music Drama and Media'),
(42741, 35792, 'en', 'name', 'Polish Seed Trade Association'),
(42742, 35793, 'no_lang_code', 'name', 'Environmental Resources Management (United Kingdom)'),
(42743, 35794, 'en', 'name', 'Brazilian Society of Nuclear Biosciences'),
(42744, 35794, 'pt', 'name', 'Sociedade Brasileira de BiociĆŖncias Nucleares'),
(42745, 35795, 'pt', 'name', 'Secretaria Municipal do Desenvolvimento EconƓmico e Turismo'),
(42746, 35796, 'no_lang_code', 'name', 'Commitment (Norway)'),
(42747, 35797, 'de', 'name', 'Hochschule für Künste im Sozialen'),
(42748, 35798, 'no', 'name', 'Hvorfor det'),
(42749, 35799, 'fr', 'name', 'Sante Montreal'),
(42750, 35800, 'it', 'name', 'Azienda Ospedaliera Bolognini Seriate'),
(42751, 35801, 'de', 'name', 'Martin-Luther-Krankenhaus'),
(42752, 35802, 'en', 'name', 'Tangshan People''s Hospital'),
(42753, 35803, 'no_lang_code', 'name', 'Apis Flora (Brazil)'),
(42754, 35803, 'pt', 'name', 'Apis Flora Industrial e Comercial Ltda'),
(42755, 35804, 'no_lang_code', 'name', 'Navtor (Norway)'),
(42756, 35805, 'no_lang_code', 'name', 'Kalkulo (Norway)'),
(42757, 35806, 'no_lang_code', 'name', 'Aurland Naturverkstad (Norway)'),
(42758, 35807, 'no_lang_code', 'name', 'Catch Solar Energy (Norway)'),
(42759, 35808, 'en', 'name', 'Australian Law Reform Commission'),
(42760, 35809, 'de', 'name', 'Stadtarchiv Gifhorn'),
(42761, 35810, 'no_lang_code', 'name', 'Ambra Solutions (Brazil)'),
(42762, 35811, 'en', 'name', 'De Lin Institute of Technology'),
(42763, 35811, 'zh', 'name', 'å¾·éœ–ęŠ€č”“å­øé™¢'),
(42764, 35812, 'no_lang_code', 'name', 'PCI Biotech (Norway)'),
(42765, 35813, 'no_lang_code', 'name', 'Genoa (Brazil)'),
(42766, 35814, 'en', 'name', 'Chattagram Maa-O-Shishu Hospital Medical College'),
(42767, 35815, 'en', 'name', 'Bumrungrad International Hospital'),
(42768, 35815, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøšąø³ąø£ąøøąø‡ąø£ąø²ąø©ąøŽąø£ą¹Œ'),
(42769, 35816, 'no_lang_code', 'name', 'Telio (Norway)'),
(42770, 35817, 'en', 'name', 'Zhejiang DongFang Vocational and Technical College'),
(42771, 35818, 'en', 'name', 'Piedmont Henry Hospital'),
(42772, 35819, 'pt', 'name', 'Ação Educativa'),
(42773, 35820, 'en', 'name', 'Maharashtra National Law University Mumbai'),
(42774, 35821, 'en', 'name', 'Bainbridge State College'),
(42775, 35822, 'no_lang_code', 'name', 'Sevitel (Poland)'),
(42776, 35823, 'en', 'name', 'South County Hospital'),
(42777, 35824, 'de', 'name', 'Niedersächsisches Landesamt für Denkmalpflege'),
(42778, 35825, 'no_lang_code', 'name', 'Slips Technologies (United States)'),
(42779, 35826, 'no_lang_code', 'name', 'Hidria (Slovenia)'),
(42780, 35827, 'no', 'name', 'Lundes Gartneri'),
(42781, 35828, 'no_lang_code', 'name', 'Trefokus (Norway)'),
(42782, 35829, 'en', 'name', 'Burnaby Hospital'),
(42783, 35830, 'no_lang_code', 'name', 'Partecurae Analysis (Brazil)'),
(42784, 35831, 'pt', 'name', 'Fundação Educacional de Ituverava'),
(42785, 35832, 'no_lang_code', 'name', 'Reciclapac (Brazil)'),
(42786, 35833, 'no', 'name', 'Norsk Teknisk Museum'),
(42787, 35834, 'de', 'name', 'Staatliche Akademie der Bildenden Künste Stuttgart'),
(42788, 35834, 'en', 'name', 'State Academy of Fine Arts in Stuttgart'),
(42789, 35835, 'en', 'name', 'Tongwon University'),
(42790, 35835, 'ko', 'name', 'ė™ģ›ėŒ€ķ•™źµ'),
(42791, 35836, 'pt', 'name', 'Associação Brasileira de Estudos de Defesa'),
(42792, 35837, 'no_lang_code', 'name', 'CondAlign (Norway)'),
(42793, 35838, 'no_lang_code', 'name', 'Sigla (Norway)'),
(42794, 35839, 'pt', 'name', 'Centro de Estudos da Voz'),
(42795, 35840, 'no_lang_code', 'name', 'Matpartner (Norway)'),
(42796, 35841, 'no_lang_code', 'name', 'Tsat (Norway)'),
(42797, 35842, 'no_lang_code', 'name', 'Le Loch Healthcare (Poland)'),
(42798, 35843, 'no_lang_code', 'name', 'Pudong Maternal and Child Health Hospital'),
(42799, 35844, 'no_lang_code', 'name', 'Vision iO (Norway)'),
(42800, 35845, 'en', 'name', 'American Oriental Society'),
(42801, 35846, 'no_lang_code', 'name', 'Artecriação (Brazil)'),
(42802, 35847, 'no_lang_code', 'name', 'Norsk Hoppemelk (Norway)'),
(42803, 35848, 'pt', 'name', 'Associação Brasileira de Médicos VeterinÔrios de Equídeos'),
(42804, 35849, 'pt', 'name', 'Instituto Brasileiro de Mercado de Capitais'),
(42805, 35850, 'en', 'name', 'Brazilian Institute of Geography and Statistics'),
(42806, 35850, 'pt', 'name', 'Instituto Brasileiro de Geografia e EstatĆ­stica'),
(42807, 35851, 'no_lang_code', 'name', 'Inter-Metro (Brazil)'),
(42808, 35852, 'no_lang_code', 'name', 'IBE (Slovenia)'),
(42809, 35853, 'no_lang_code', 'name', 'Norinnova (Norway)'),
(42810, 35854, 'en', 'name', 'Norwegian Society of Automatic Control'),
(42811, 35855, 'no_lang_code', 'name', 'Making View (Norway)'),
(42812, 35856, 'no_lang_code', 'name', 'Cybernetica (Norway)'),
(42813, 35857, 'no_lang_code', 'name', 'Marlo (Norway)'),
(42814, 35858, 'no_lang_code', 'name', 'TMG-BMC (Slovenia)'),
(42815, 35859, 'no_lang_code', 'name', 'Hermes Academic Publishing and Bookshop (Norway)'),
(42816, 35860, 'no_lang_code', 'name', 'Eli Lilly (Singapore)'),
(42817, 35861, 'no_lang_code', 'name', 'Kwekwe General Hospital'),
(42818, 35862, 'no_lang_code', 'name', 'Aquafarm Equipment (Norway)'),
(42819, 35863, 'no_lang_code', 'name', 'Idrettssenteret (Norway)'),
(42820, 35864, 'no_lang_code', 'name', 'Urbem Tecnologia Ambiental (Brazil)'),
(42821, 35865, 'no_lang_code', 'name', 'Innovatech (Brazil)'),
(42822, 35866, 'en', 'name', 'PIH Health'),
(42823, 35867, 'de', 'name', 'Universitäres Kinderwunschzentrum Lübeck'),
(42824, 35868, 'en', 'name', 'Arts Council Norway'),
(42825, 35869, 'pl', 'name', 'Wojskowy Instytut Techniki Pancernej i Samochodowej'),
(42826, 35870, 'no_lang_code', 'name', 'Compuminer Mineração de Dados & BI (Brazil)'),
(42827, 35871, 'no_lang_code', 'name', 'Sorbwater Technology (Norway)'),
(42828, 35872, 'en', 'name', 'Duplin General Hospital'),
(42829, 35873, 'en', 'name', 'Beijing United Family Hospital'),
(42830, 35874, 'no_lang_code', 'name', 'Rcasoft InformƔtica (Brazil)'),
(42831, 35875, 'no_lang_code', 'name', 'Cientistas (Brazil)'),
(42832, 35876, 'no_lang_code', 'name', 'Tieto (Norway)'),
(42833, 35877, 'en', 'name', 'Rogaland County Council'),
(42834, 35878, 'en', 'name', 'Ghana Atomic Energy Commission'),
(42835, 35879, 'no_lang_code', 'name', 'Fupe Systems (Norway)'),
(42836, 35880, 'pl', 'name', 'Górnośląskie Centrum Medyczne'),
(42837, 35881, 'en', 'name', 'St Elizabeth Mission Hospital'),
(42838, 35882, 'en', 'name', 'Wujiang District People''s Hospital'),
(42839, 35882, 'zh', 'name', 'å“ę±Ÿåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(42840, 35883, 'no_lang_code', 'name', 'Ipel - Itibanyl Produtos Especiais (Brazil)'),
(42841, 35884, 'en', 'name', 'Mengo Hospital'),
(42842, 35885, 'en', 'name', 'Aleris Hamlet Hospital'),
(42843, 35886, 'no_lang_code', 'name', 'Rfideas (Brazil)'),
(42844, 35887, 'pt', 'name', 'Fundação Energia e Saneamento'),
(42845, 35888, 'en', 'name', 'European University of Rome'),
(42846, 35889, 'en', 'name', 'Rashid Latif Medical College'),
(42847, 35890, 'no_lang_code', 'name', 'HomeControl (Norway)'),
(42848, 35891, 'en', 'name', 'Trincomalee Hospital'),
(42849, 35891, 'si', 'name', 'ą¶­ą·Šā€ą¶»ą·’ą¶šą·”ą¶«ą·ą¶øą¶½ą¶ŗ ą¶»ą·ą·„ą¶½'),
(42850, 35892, 'no_lang_code', 'name', 'Mexeo (Poland)'),
(42851, 35893, 'en', 'name', 'Oslo Chamber of Commerce'),
(42852, 35894, 'en', 'name', 'Shri Ramswaroop Memorial University'),
(42853, 35895, 'no_lang_code', 'name', 'Kihoku hospital'),
(42854, 35896, 'no_lang_code', 'name', 'SolidTech (Norway)'),
(42855, 35897, 'no_lang_code', 'name', 'Stranda Prolog (Norway)'),
(42856, 35898, 'en', 'name', 'Oslo Public Library'),
(42857, 35899, 'en', 'name', 'Kuluva Hospital'),
(42858, 35900, 'de', 'name', 'Unfallkrankenhaus Berlin'),
(42859, 35901, 'no_lang_code', 'name', 'Litostroj Power (Slovenia)'),
(42860, 35902, 'de', 'name', 'Institut für Sozialwissenschaftliche Forschung'),
(42861, 35903, 'en', 'name', 'Norwegian Directorate for Education and Training'),
(42862, 35903, 'no_lang_code', 'name', 'Utdanningsdirektoratet'),
(42863, 35904, 'no_lang_code', 'name', 'Saint-Gobain (Norway)'),
(42864, 35905, 'en', 'name', 'Aqua (France)'),
(42865, 35906, 'no_lang_code', 'name', 'Ericsson (Norway)'),
(42866, 35907, 'cs', 'name', 'SlezskĆ” Nemocnice v Opavě'),
(42867, 35908, 'no_lang_code', 'name', 'Zenitel (Norway)'),
(42868, 35909, 'en', 'name', 'National Institute of Technology'),
(42869, 35909, 'pt', 'name', 'Instituto Nacional de Tecnologia'),
(42870, 35910, 'en', 'name', 'Kilcreene Orthopaedic Hospital'),
(42871, 35910, 'ga', 'name', 'OspidƩal OrtaipƩideach Kilcreene'),
(42872, 35911, 'da', 'name', 'Statens Institut for Folkesundhed'),
(42873, 35911, 'en', 'name', 'Danish National Institute of Public Health'),
(42874, 35912, 'no_lang_code', 'name', 'poLight (Norway)'),
(42875, 35913, 'no_lang_code', 'name', 'Gassco (Norway)'),
(42876, 35914, 'en', 'name', 'Hospital of Sobrapar'),
(42877, 35914, 'pt', 'name', 'Brazilian Society of Research and Assistance to Craniofacial Rehabilitation'),
(42878, 35915, 'no_lang_code', 'name', 'Norsk Geografisk Selskap'),
(42879, 35916, 'en', 'name', 'Memorial Ankara Hospital'),
(42880, 35917, 'no_lang_code', 'name', 'Armada (Poland)'),
(42881, 35918, 'de', 'name', 'UniversitƤtsklinikum Tulln'),
(42882, 35919, 'en', 'name', 'Mercy Defiance Hospital'),
(42883, 35920, 'en', 'name', 'Leanchoil Hospital'),
(42884, 35921, 'no_lang_code', 'name', 'Albany Molecular Research (Singapore)'),
(42885, 35922, 'no_lang_code', 'name', 'Visual Sciences (United States)'),
(42886, 35923, 'en', 'name', 'Arendal Municipality'),
(42887, 35924, 'en', 'name', 'State Scientific Research Institute of Aviation Systems'),
(42888, 35924, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных систем'),
(42889, 35925, 'en', 'name', 'Emirates Academy of Hospitality Management'),
(42890, 35926, 'en', 'name', 'Fourth People’s Hospital of Jinan'),
(42891, 35927, 'no_lang_code', 'name', 'Dips (Norway)'),
(42892, 35928, 'en', 'name', 'Bon Secours Hospital'),
(42893, 35929, 'en', 'name', 'Aware Global Hospital'),
(42894, 35930, 'no_lang_code', 'name', 'Metal Expert (Poland)'),
(42895, 35931, 'no_lang_code', 'name', 'ActionPhoto International (Norway)'),
(42896, 35932, 'pt', 'name', 'Fundação de Apoio à Escola Técnica'),
(42897, 35933, 'no_lang_code', 'name', 'Spiro Medical (Norway)'),
(42898, 35934, 'en', 'name', 'Campbell Hospital'),
(42899, 35935, 'no_lang_code', 'name', 'Waters (China)'),
(42900, 35936, 'no_lang_code', 'name', 'S2G Biochem (Canada)'),
(42901, 35937, 'no', 'name', 'Kanvas'),
(42902, 35938, 'en', 'name', 'Poltegor Institute'),
(42903, 35939, 'no_lang_code', 'name', 'Telzas (Poland)'),
(42904, 35940, 'en', 'name', 'Eastern Idaho Technical College'),
(42905, 35941, 'en', 'name', 'Hallym Polytechnic University'),
(42906, 35941, 'ko', 'name', 'ķ•œė¦¼ģ„±ģ‹¬ėŒ€ķ•™źµ'),
(42907, 35941, 'zh', 'name', 'ēæ°ęž—č–åæƒå¤§å­øę ”'),
(42908, 35942, 'en', 'name', 'Jiujiang First People''s Hospital'),
(42909, 35943, 'en', 'name', 'Piedmont Newnan Hospital'),
(42910, 35944, 'no_lang_code', 'name', 'Itatex (Brazil)'),
(42911, 35945, 'no_lang_code', 'name', 'Mednax (United States)'),
(42912, 35946, 'no_lang_code', 'name', 'Adal (Poland)'),
(42913, 35947, 'no_lang_code', 'name', 'Terra Viva Consultoria Ambiental (Brazil)'),
(42914, 35948, 'no_lang_code', 'name', 'Pearson (United Kingdom)'),
(42915, 35949, 'no_lang_code', 'name', 'Safelink (Norway)'),
(42916, 35950, 'en', 'name', 'Unit for Social Innovation and Research Shipyard'),
(42917, 35951, 'no_lang_code', 'name', 'Due MiljĆø (Norway)'),
(42918, 35952, 'no_lang_code', 'name', 'InnSep (Norway)'),
(42919, 35953, 'en', 'name', 'Adventist Health Simi Valley'),
(42920, 35954, 'en', 'name', 'Division of Grants & Agreements'),
(42921, 35955, 'no_lang_code', 'name', 'MĆøre Maritime (Norway)'),
(42922, 35956, 'en', 'name', 'Fort Saskatchewan Community Hospital'),
(42923, 35957, 'no_lang_code', 'name', 'Rheumatech (Norway)'),
(42924, 35958, 'en', 'name', 'Sterkstroom Provincial Hospital'),
(42925, 35959, 'no_lang_code', 'name', 'BIA (Slovenia)'),
(42926, 35960, 'en', 'name', 'Mediterranean Institute for Advanced Studies'),
(42927, 35961, 'no_lang_code', 'name', 'Advance SoluƧƵes em InformƔtica (Brazil)'),
(42928, 35962, 'en', 'name', 'Finland University'),
(42929, 35963, 'no_lang_code', 'name', 'Harpha Sea (Slovenia)'),
(42930, 35964, 'en', 'name', 'Redland Hospital'),
(42931, 35965, 'no_lang_code', 'name', 'Smiths Group (United Kingdom)'),
(42932, 35966, 'en', 'name', 'Huntsville Hospital'),
(42933, 35967, 'en', 'name', 'LewisGale Hospital Montgomery'),
(42934, 35968, 'fr', 'name', 'Institut d''Ɖconomie Publique'),
(42935, 35969, 'no_lang_code', 'name', 'XCOM Wireless (United States)'),
(42936, 35970, 'en', 'name', 'Korea Centre for Atmospheric Environment Research'),
(42937, 35971, 'en', 'name', 'Yantai Infectious Diseases Hospital'),
(42938, 35972, 'en', 'name', 'Champlain Regional College'),
(42939, 35972, 'fr', 'name', 'Collège régional champlain de saint-lambert'),
(42940, 35973, 'no_lang_code', 'name', 'West Group (Norway)'),
(42941, 35974, 'en', 'name', 'Swiss School of Tourism and Hospitality'),
(42942, 35975, 'en', 'name', 'Bethel Baptist Hospital'),
(42943, 35976, 'en', 'name', 'Board of European Students of Technology'),
(42944, 35977, 'en', 'name', 'Bon Secours Hospital Dublin'),
(42945, 35978, 'en', 'name', 'Citrus College'),
(42946, 35979, 'no_lang_code', 'name', 'FelleskjĆøpet Agri (Norway)'),
(42947, 35980, 'de', 'name', 'NiedersƤchsisches Landesmuseum Hannover'),
(42948, 35980, 'en', 'name', 'Lower Saxony State Museum'),
(42949, 35981, 'no', 'name', 'Porsanger Kommune'),
(42950, 35982, 'no_lang_code', 'name', 'Telekom Slovenije (Slovenia)'),
(42951, 35983, 'en', 'name', 'New Generation University College'),
(42952, 35984, 'pt', 'name', 'Secretaria de Ciência, Tecnologia e Inovação da Marinha'),
(42953, 35985, 'no_lang_code', 'name', 'G3 Ungplanter (Norway)'),
(42954, 35986, 'no_lang_code', 'name', 'Aibel (Norway)'),
(42955, 35987, 'no_lang_code', 'name', 'Xrgia (Norway)'),
(42956, 35988, 'en', 'name', 'Royal Buckinghamshire Hospital'),
(42957, 35989, 'af', 'name', 'Steve Biko Akademiese Hospitaal'),
(42958, 35989, 'en', 'name', 'Steve Biko Hospital'),
(42959, 35990, 'no_lang_code', 'name', 'Zel Technologies (United States)'),
(42960, 35991, 'en', 'name', 'Dream Adaptive Recreation'),
(42961, 35992, 'en', 'name', 'Tumor Hospital of Xinjiang Medical University'),
(42962, 35993, 'en', 'name', 'Sadalla Amin Ghanem Eye Hospital'),
(42963, 35993, 'pt', 'name', 'Hospital de Olhos Sadalla Amin Ghanem'),
(42964, 35994, 'en', 'name', '117th Hospital of People''s Liberation Army'),
(42965, 35995, 'en', 'name', 'Hull College'),
(42966, 35996, 'no_lang_code', 'name', 'OMBE Plast (Norway)'),
(42967, 35997, 'en', 'name', 'Da Nang Hospital'),
(42968, 35997, 'vi', 'name', 'Bệnh viện ĐƠ Nįŗµng'),
(42969, 35998, 'en', 'name', 'Business Region Bergen'),
(42970, 35999, 'en', 'name', 'Second Hospital of Yichang'),
(42971, 36000, 'no_lang_code', 'name', 'Lytix Biopharma (Norway)'),
(42972, 36001, 'no_lang_code', 'name', 'Emerson (Norway)'),
(42973, 36002, 'en', 'name', 'Accra Technical University'),
(42974, 36003, 'en', 'name', 'T1D Exchange'),
(42975, 36004, 'en', 'name', 'Nanjing Traditional Chinese Medicine Hospital'),
(42976, 36005, 'en', 'name', 'Monash Children’s Hospital'),
(42977, 36006, 'no_lang_code', 'name', 'Liegruppen (Norway)'),
(42978, 36007, 'no_lang_code', 'name', 'Teknisk Lys (Norway)'),
(42979, 36008, 'no_lang_code', 'name', 'Botngaard (Norway)'),
(42980, 36009, 'no_lang_code', 'name', 'ATM Brovig (Norway)'),
(42981, 36010, 'no_lang_code', 'name', 'Biovotec (Norway)'),
(42982, 36011, 'no_lang_code', 'name', 'Kjemi (Norway)'),
(42983, 36012, 'no_lang_code', 'name', 'Arex Defense (Slovenia)'),
(42984, 36013, 'en', 'name', 'Norwegian Institute of Local History'),
(42985, 36014, 'pl', 'name', 'Wojskowy Instytut Chemii i Radiometrii'),
(42986, 36015, 'no_lang_code', 'name', 'iExcel (Norway)'),
(42987, 36016, 'no_lang_code', 'name', 'Humanpass (South Korea)'),
(42988, 36017, 'en', 'name', 'Los Angeles Pierce College'),
(42989, 36018, 'en', 'name', 'Connect'),
(42990, 36019, 'no_lang_code', 'name', 'Response Nordic (Norway)'),
(42991, 36020, 'no_lang_code', 'name', 'Devworks Game Technology (Brazil)'),
(42992, 36021, 'no_lang_code', 'name', 'Centro Técnico de Automação (Brazil)'),
(42993, 36022, 'es', 'name', 'Hospital Alto Guadalquivir'),
(42994, 36023, 'en', 'name', 'Malda Medical College and Hospital'),
(42995, 36024, 'no_lang_code', 'name', 'IV Group (Norway)'),
(42996, 36025, 'es', 'name', 'Instituto Tecnológico de Nogales'),
(42997, 36026, 'no_lang_code', 'name', 'Scanship (Norway)'),
(42998, 36027, 'no_lang_code', 'name', 'GurskĆøy (Norway)'),
(42999, 36028, 'en', 'name', 'Brazilian Society for the Advancement of Science'),
(43000, 36028, 'pt', 'name', 'Sociedade Brasileira para o Progresso da CiĆŖncia'),
(43001, 36029, 'no_lang_code', 'name', 'Rejonowe Przedsiębiorstwo Wodociągów i Kanalizacji W Sosnowcu (Poland)'),
(43002, 36030, 'no_lang_code', 'name', 'OSO Hotwater (Norway)'),
(43003, 36031, 'en', 'name', 'Falmouth Hospital'),
(43004, 36032, 'no_lang_code', 'name', 'Aerocosmos'),
(43005, 36032, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°ŃŃ€Š¾ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ мониторинга ŠŠ­Š ŠžŠšŠžŠ”ŠœŠžŠ”'),
(43006, 36033, 'en', 'name', 'Franciszek Górski Institute of Plant Physiology'),
(43007, 36033, 'pl', 'name', 'Instytut Fizjologii Roślin im. Franciszek Górskiego'),
(43008, 36034, 'no_lang_code', 'name', 'Fornebu Consulting (Norway)'),
(43009, 36035, 'en', 'name', 'Institute of Art'),
(43010, 36035, 'pl', 'name', 'Instytut Sztuki Polskiej Akademii Nauk'),
(43011, 36036, 'no_lang_code', 'name', 'Level-5 (Japan)'),
(43012, 36037, 'no_lang_code', 'name', 'Blue Dot Solutions (Poland)'),
(43013, 36038, 'no_lang_code', 'name', 'Narcissus Pesquisa ClĆ­nica e Biotecnologia (Brazil)'),
(43014, 36039, 'es', 'name', 'Hospital Carlos Van Buren'),
(43015, 36040, 'en', 'name', 'University Press of Florida'),
(43016, 36041, 'no_lang_code', 'name', 'Sibanye Gold (South Africa)'),
(43017, 36042, 'no', 'name', 'Polaria'),
(43018, 36043, 'no_lang_code', 'name', 'Otech Marine Services (Norway)'),
(43019, 36044, 'pt', 'name', 'Centro Infantil Boldrini'),
(43020, 36045, 'en', 'name', 'Dahua Hospital'),
(43021, 36046, 'en', 'name', 'Jilin Vocational College of Industry and Technology'),
(43022, 36047, 'no_lang_code', 'name', 'Tramppo (Brazil)'),
(43023, 36048, 'it', 'name', 'Azienda Ospedaliera di Valtellina e Valchiavenna'),
(43024, 36049, 'no_lang_code', 'name', 'Redcord (Norway)'),
(43025, 36050, 'en', 'name', 'Great Plains College'),
(43026, 36051, 'no_lang_code', 'name', 'Sogn Aqua (Norway)'),
(43027, 36052, 'en', 'name', 'Indiana Orthopaedic Hospital'),
(43028, 36053, 'no_lang_code', 'name', 'Dignio (Norway)'),
(43029, 36054, 'no_lang_code', 'name', 'Enghouse Systems (Norway)'),
(43030, 36055, 'en', 'name', 'Pellervo Economic Research'),
(43031, 36056, 'en', 'name', 'National Center for University Entrance Examinations'),
(43032, 36056, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§å­¦å…„č©¦ć‚»ćƒ³ć‚æćƒ¼'),
(43033, 36057, 'no_lang_code', 'name', 'Profixio (Norway)'),
(43034, 36058, 'de', 'name', 'Alb Fils Kliniken'),
(43035, 36059, 'no', 'name', 'Hospital Organiser'),
(43036, 36060, 'en', 'name', 'French for School of High Studies in Engineering'),
(43037, 36060, 'fr', 'name', 'Hautes Ɖtudes d''IngĆ©nieur'),
(43038, 36061, 'no_lang_code', 'name', 'Laboratorium Kosmetyczne Dr Irena Eris (Poland)'),
(43039, 36062, 'no_lang_code', 'name', 'Grieg Seafood (Norway)'),
(43040, 36063, 'no_lang_code', 'name', 'Fermentec (Brazil)'),
(43041, 36064, 'no_lang_code', 'name', 'Furore film (Norway)'),
(43042, 36065, 'no_lang_code', 'name', 'SES Europe (Norway)'),
(43043, 36066, 'en', 'name', 'Stony Brook Medicine'),
(43044, 36067, 'en', 'name', 'Patton State Hospital'),
(43045, 36068, 'tr', 'name', 'Gelişim Üniversitesi'),
(43046, 36069, 'no_lang_code', 'name', 'Alcontrol Laboratories (Norway)'),
(43047, 36070, 'no_lang_code', 'name', 'Rolls-Royce (Norway)'),
(43048, 36071, 'no_lang_code', 'name', 'Beisfjord Sementvarefabrikk (Norway)'),
(43049, 36072, 'en', 'name', 'Cochise College'),
(43050, 36073, 'en', 'name', 'JiangSu Armed Police General Hospital'),
(43051, 36074, 'en', 'name', 'Federal University Lokoja'),
(43052, 36075, 'en', 'name', 'Rubaga Hospital'),
(43053, 36076, 'en', 'name', 'Kamla Nehru Memorial Hospital'),
(43054, 36077, 'no_lang_code', 'name', 'Eureka Pumps (Norway)'),
(43055, 36078, 'no_lang_code', 'name', 'Seacalx (Norway)'),
(43056, 36079, 'no_lang_code', 'name', 'Nanomed (Brazil)'),
(43057, 36080, 'no_lang_code', 'name', 'Feed Control (Norway)'),
(43058, 36081, 'no_lang_code', 'name', 'Četrta Pot (Slovenia)'),
(43059, 36082, 'no_lang_code', 'name', 'Dataloy (Norway)'),
(43060, 36083, 'en', 'name', 'Global Open University'),
(43061, 36084, 'en', 'name', 'Cradock Provincial Hospital'),
(43062, 36085, 'no_lang_code', 'name', 'NorSun (Norway)'),
(43063, 36086, 'sl', 'name', 'InŔtitut za Javno Upravo'),
(43064, 36087, 'en', 'name', 'Zone01 Robotics'),
(43065, 36088, 'no_lang_code', 'name', 'Microdesign Informatica Tecnologia Industria e Comerico (Brazil)'),
(43066, 36089, 'pt', 'name', 'Instituto Barretos de Tecnologia'),
(43067, 36090, 'en', 'name', 'Coal Mining Museum in Zabrze'),
(43068, 36091, 'no_lang_code', 'name', 'ƅkrehamn TrĆ„lbĆøteri (Norway)'),
(43069, 36092, 'no_lang_code', 'name', 'C-Feed (Norway)'),
(43070, 36093, 'no', 'name', 'Gjerdrum kommune'),
(43071, 36094, 'en', 'name', 'Bon Secours Hospital Cork'),
(43072, 36095, 'en', 'name', 'North Norwegian Art Center'),
(43073, 36096, 'no_lang_code', 'name', 'LinkGen (Brazil)'),
(43074, 36097, 'en', 'name', 'Bryansk State Agrarian University'),
(43075, 36097, 'ru', 'name', 'Š‘Ń€ŃŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(43076, 36098, 'hu', 'name', 'Szent BorbÔla KórhÔz'),
(43077, 36099, 'no_lang_code', 'name', 'Vitality Innovation (Norway)');
INSERT INTO `ror_settings` VALUES
(43078, 36100, 'pt', 'name', 'Instituto Histórico e GeogrÔfico Brasileiro'),
(43079, 36101, 'no_lang_code', 'name', 'Atmel (Norway)'),
(43080, 36102, 'en', 'name', 'Alameda County Public Health Department'),
(43081, 36103, 'en', 'name', 'National Library of Brazil'),
(43082, 36103, 'pt', 'name', 'Biblioteca Nacional do Brasil'),
(43083, 36104, 'no', 'name', 'Lebesby kommune'),
(43084, 36105, 'no_lang_code', 'name', 'Sognefrukt (Norway)'),
(43085, 36106, 'es', 'name', 'Hospital Universitario Rey Juan Carlos'),
(43086, 36107, 'no_lang_code', 'name', 'PPUH Bryk Witold Bryk (Poland)'),
(43087, 36108, 'de', 'name', 'Fraunhofer-Institut für Techno- und Wirtschaftsmathematik'),
(43088, 36108, 'en', 'name', 'Fraunhofer Institute for Industrial Mathematics'),
(43089, 36109, 'no_lang_code', 'name', 'BW Group (Norway)'),
(43090, 36110, 'no_lang_code', 'name', 'Biowater Technology (Norway)'),
(43091, 36111, 'no_lang_code', 'name', 'Saiseikaisenri Hospital'),
(43092, 36112, 'en', 'name', 'Slovenian Centre of Excellence for Space Sciences and Technologies'),
(43093, 36113, 'en', 'name', 'Adventist Health Community Care-Hanford'),
(43094, 36114, 'no_lang_code', 'name', 'Himgiri Zee University'),
(43095, 36115, 'no_lang_code', 'name', 'VS Safety (Norway)'),
(43096, 36116, 'no_lang_code', 'name', 'Proteket (Norway)'),
(43097, 36117, 'en', 'name', 'Santa Paula Hospital'),
(43098, 36118, 'en', 'name', 'ARC Centre of Excellence in Plant Energy Biology'),
(43099, 36119, 'en', 'name', 'Nanjing Maternity and Child Health Care Hospital'),
(43100, 36120, 'es', 'name', 'Hospital Punta Pacifica'),
(43101, 36121, 'de', 'name', 'Leibniz-Institut für Gemüse- und Zierpflanzenbau'),
(43102, 36121, 'en', 'name', 'Leibniz Institute of Vegetable and Ornamental Crops'),
(43103, 36122, 'no_lang_code', 'name', 'MRA Indústria de Equipamentos EletrÓnicos (Brazil)'),
(43104, 36123, 'no_lang_code', 'name', 'Moltres (Norway)'),
(43105, 36124, 'en', 'name', 'St. Brendan''s Hospital'),
(43106, 36125, 'no_lang_code', 'name', 'Novartis (Netherlands)'),
(43107, 36126, 'no_lang_code', 'name', 'JB Well Solutions (Norway)'),
(43108, 36127, 'no_lang_code', 'name', 'Dhulikhel Hospital'),
(43109, 36128, 'en', 'name', 'Saidu Teaching Hospital'),
(43110, 36129, 'en', 'name', 'Bladen Community College'),
(43111, 36130, 'no_lang_code', 'name', 'CFlex (Brazil)'),
(43112, 36131, 'no_lang_code', 'name', 'Metaltech Sorocaba Equipamentos e ServiƧos (Brazil)'),
(43113, 36132, 'no_lang_code', 'name', 'Viken Skog (Norway)'),
(43114, 36133, 'es', 'name', 'Instituto Tecnológico de Mérida'),
(43115, 36134, 'no_lang_code', 'name', 'Reime (Norway)'),
(43116, 36135, 'en', 'name', 'Silverton Hospital'),
(43117, 36136, 'en', 'name', 'Marquette General Hospital'),
(43118, 36137, 'no_lang_code', 'name', 'GMV Innovating Solutions (Poland)'),
(43119, 36138, 'en', 'name', 'Sobramfa – Medical Education and Humanism'),
(43120, 36139, 'pt', 'name', 'Sociedade Brasileira de Alimentação e Nutrição'),
(43121, 36140, 'af', 'name', 'Fort England Psigiatriese hospitaal'),
(43122, 36140, 'en', 'name', 'Fort England Psychiatric Hospital'),
(43123, 36141, 'en', 'name', 'Division of Chemistry'),
(43124, 36142, 'en', 'name', 'Abudwak Maternity and Children''s Hospital'),
(43125, 36142, 'so', 'name', 'Isbitaalka Caabudwaaq ee Daryeelka Umulaha iyo Caruurta'),
(43126, 36143, 'no_lang_code', 'name', 'Cobuilder (Norway)'),
(43127, 36144, 'en', 'name', 'American College, Madurai'),
(43128, 36145, 'no_lang_code', 'name', 'Envit (Slovenia)'),
(43129, 36146, 'no_lang_code', 'name', 'Zebra Biologics (United States)'),
(43130, 36147, 'en', 'name', 'Kamuli Mission Hospital'),
(43131, 36148, 'de', 'name', 'Rems-Murr-Klinikum'),
(43132, 36149, 'en', 'name', 'Bryn Athyn College'),
(43133, 36150, 'no_lang_code', 'name', 'Maritime Robotics (Norway)'),
(43134, 36151, 'fr', 'name', 'Centre de SantƩ et de Services Sociaux de la Montagne'),
(43135, 36152, 'no_lang_code', 'name', 'TRAK (Poland)'),
(43136, 36153, 'en', 'name', 'Darbhanga Medical College and Hospital'),
(43137, 36154, 'en', 'name', 'Affiliated Hospital of Hangzhou Normal University'),
(43138, 36155, 'en', 'name', 'Lake Washington Institute of Technology'),
(43139, 36156, 'en', 'name', 'Keiser University Latin American Campus'),
(43140, 36157, 'en', 'name', 'Holy Apostles College and Seminary'),
(43141, 36158, 'no_lang_code', 'name', 'Selfa (Norway)'),
(43142, 36159, 'no_lang_code', 'name', 'VIsport (Slovenia)'),
(43143, 36160, 'no_lang_code', 'name', 'Allskog (Norway)'),
(43144, 36161, 'en', 'name', 'Fremont Memorial Hospital'),
(43145, 36162, 'de', 'name', 'Diakovere'),
(43146, 36163, 'en', 'name', 'Brazilian Radiation Protection Society'),
(43147, 36163, 'pt', 'name', 'Sociedade Brasileira de Proteção Radiológica'),
(43148, 36164, 'pt', 'name', 'Instituto Irmãs Santa Marcelina'),
(43149, 36165, 'no_lang_code', 'name', 'Miejskie Przedsiebiorstwo Wodociągów i Kanalizacji (Poland)'),
(43150, 36166, 'no_lang_code', 'name', 'Ultizyme International (Japan)'),
(43151, 36167, 'en', 'name', 'First Affiliated Hospital of Heilongjiang University of Chinese Medicine'),
(43152, 36168, 'no_lang_code', 'name', 'Zakład Wodociągów i Kanalizacji (Poland)'),
(43153, 36169, 'en', 'name', 'Holy Spirit Hospital'),
(43154, 36170, 'no_lang_code', 'name', 'ClampOn (Norway)'),
(43155, 36171, 'ja', 'name', 'ę—„ęœ¬čˆŖē©ŗé›»å­å·„ę„­'),
(43156, 36171, 'no_lang_code', 'name', 'Japan Aviation Electronics Industry (Japan)'),
(43157, 36172, 'en', 'name', 'Association of Minority Health Professions Schools'),
(43158, 36173, 'en', 'name', 'Sri Ramachandra Medical Centre'),
(43159, 36174, 'no_lang_code', 'name', 'Nordic Aquafarms (Norway)'),
(43160, 36175, 'en', 'name', 'Mercy St. Charles Hospital'),
(43161, 36176, 'en', 'name', 'Silchar Medical College and Hospital'),
(43162, 36177, 'en', 'name', 'Danat Al Emarat Women & Children’s Hospital'),
(43163, 36178, 'ca', 'name', 'Ɖcole des Beaux-Arts'),
(43164, 36178, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Beaux-Arts, Ɖcole des beaux-arts'),
(43165, 36179, 'no_lang_code', 'name', 'Ibsentelecom (Norway)'),
(43166, 36180, 'no_lang_code', 'name', 'Mestre Dos Mares (Brazil)'),
(43167, 36181, 'en', 'name', 'Royal Hospital for Neuro-disability'),
(43168, 36182, 'no_lang_code', 'name', 'Suzhou Creative Nano-carbon (China)'),
(43169, 36183, 'en', 'name', 'Mount Elizabeth Novena Hospital'),
(43170, 36184, 'pt', 'name', 'Faculdade Unida de Suzano'),
(43171, 36185, 'en', 'name', 'Al-Ameen Pre University College'),
(43172, 36186, 'no_lang_code', 'name', 'Eccos IndĆŗstria MetalĆŗrgica (Brazil)'),
(43173, 36187, 'no_lang_code', 'name', 'BrynslĆøkken (Norway)'),
(43174, 36188, 'no_lang_code', 'name', 'InNano (Norway)'),
(43175, 36189, 'no_lang_code', 'name', 'Eyetec Equipamentos Oftalmicos (Brazil)'),
(43176, 36190, 'no_lang_code', 'name', 'Inovax (Brazil)'),
(43177, 36191, 'no_lang_code', 'name', 'Clarity Water Treatment Systems (Norway)'),
(43178, 36192, 'no_lang_code', 'name', 'Lectinect (Norway)'),
(43179, 36193, 'de', 'name', 'Literaturarchiv'),
(43180, 36194, 'en', 'name', 'Christian Hospital Serkawn'),
(43181, 36195, 'no_lang_code', 'name', 'Oilfield Technology Group (Norway)'),
(43182, 36196, 'en', 'name', 'County Governor of Sogn og Fjordane'),
(43183, 36197, 'no_lang_code', 'name', 'Keep-it Technologies (Norway)'),
(43184, 36198, 'en', 'name', 'Buluba Hospital'),
(43185, 36199, 'en', 'name', 'Medenta'),
(43186, 36200, 'no_lang_code', 'name', 'Bruning (Brazil)'),
(43187, 36201, 'no_lang_code', 'name', 'Norhard (Norway)'),
(43188, 36202, 'no_lang_code', 'name', 'Transformex (Poland)'),
(43189, 36203, 'no_lang_code', 'name', 'Sky Island Alliance (United States)'),
(43190, 36204, 'no_lang_code', 'name', 'Zakład Budowy Urządzeń Spawalniczych (Poland)'),
(43191, 36205, 'no_lang_code', 'name', 'Genderguide (Norway)'),
(43192, 36206, 'no_lang_code', 'name', 'Forus NƦringspark (Norway)'),
(43193, 36207, 'no_lang_code', 'name', 'EyeLife (Norway)'),
(43194, 36208, 'no_lang_code', 'name', 'Termorens (Norway)'),
(43195, 36209, 'ar', 'name', 'ŲØŁˆŁ„ŁŠŲŖŁƒŁ†Łƒ Ų§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(43196, 36209, 'en', 'name', 'Bahrain Polytechnic'),
(43197, 36210, 'en', 'name', 'Shellharbour Hospital'),
(43198, 36211, 'en', 'name', 'Finley Hospital'),
(43199, 36212, 'en', 'name', 'Akces Lab'),
(43200, 36213, 'no_lang_code', 'name', 'MMOptics (Brazil)'),
(43201, 36214, 'no_lang_code', 'name', 'Tech Damper (Norway)'),
(43202, 36215, 'en', 'name', 'Nakornthon Hospital'),
(43203, 36216, 'no_lang_code', 'name', 'Tecnologia e CiĆŖncia Educacional (Brazil)'),
(43204, 36217, 'no_lang_code', 'name', 'Photocure (Norway)'),
(43205, 36218, 'en', 'name', 'School of Business and Management'),
(43206, 36219, 'no_lang_code', 'name', 'Pelias Norsk Skadedyrkontroll (Norway)'),
(43207, 36220, 'en', 'name', 'National University of Management'),
(43208, 36220, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž‡įž¶įžįž·įž‚įŸ’įžšįž”įŸ‹įž‚įŸ’įžšįž„'),
(43209, 36221, 'no_lang_code', 'name', 'Synthon Especialidades QuĆ­micas (Brazil)'),
(43210, 36222, 'pt', 'name', 'Instituto Histórico e GeogrÔfico de São Paulo'),
(43211, 36223, 'no_lang_code', 'name', 'Sadar + Vuga (Slovenia)'),
(43212, 36224, 'no_lang_code', 'name', 'Elecde (Norway)'),
(43213, 36225, 'en', 'name', 'Institute of Mathematics, Physics, and Mechanics'),
(43214, 36226, 'no_lang_code', 'name', 'Studio Promocji MIT (Poland)'),
(43215, 36227, 'no_lang_code', 'name', 'CoreAll (Norway)'),
(43216, 36228, 'no_lang_code', 'name', 'Centralny Ośrodek Informatyki Górnictwa'),
(43217, 36229, 'pt', 'name', 'Sociedade Brasileira de Geologia'),
(43218, 36230, 'no_lang_code', 'name', 'Jotaeme Fitafer (Brazil)'),
(43219, 36231, 'en', 'name', 'Yedikule Surp PırgiƧ Armenian Hospital'),
(43220, 36231, 'tr', 'name', 'Yedikule Surp PırgiƧ Ermeni Hastanesi'),
(43221, 36232, 'pt', 'name', 'Instituto Paulo Freire'),
(43222, 36233, 'no_lang_code', 'name', 'Tellu (Norway)'),
(43223, 36234, 'pt', 'name', 'Sociedade Brasileira de Toxicologia'),
(43224, 36235, 'no_lang_code', 'name', 'Hegnar Media (Norway)'),
(43225, 36236, 'no_lang_code', 'name', 'Iskra Mehanizmi (Slovenia)'),
(43226, 36237, 'no_lang_code', 'name', 'IMC Engineering Poland (Poland)'),
(43227, 36238, 'en', 'name', 'Norwegian National Rail Administration'),
(43228, 36239, 'en', 'name', 'Logan Regional Hospital'),
(43229, 36240, 'no_lang_code', 'name', 'Sensocure (Norway)'),
(43230, 36241, 'no_lang_code', 'name', 'Spica International (Slovenia)'),
(43231, 36242, 'no_lang_code', 'name', 'MiljĆø-Teknologi (Norway)'),
(43232, 36243, 'no', 'name', 'Sogn RegionrƄd'),
(43233, 36244, 'en', 'name', 'Agriculture and Forestry University'),
(43234, 36244, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą„ƒą¤·ą¤æ तऄा वन ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(43235, 36245, 'no_lang_code', 'name', 'Emam Reza Hospital'),
(43236, 36246, 'en', 'name', 'Billroth Hospitals'),
(43237, 36247, 'en', 'name', 'NU Hospital Group'),
(43238, 36248, 'en', 'name', 'Specialty Hospital, Jordan'),
(43239, 36249, 'no_lang_code', 'name', 'Group Image (Poland)'),
(43240, 36250, 'en', 'name', 'Stanislaw Staszic Institute for Ferrous Metallurgy'),
(43241, 36250, 'pl', 'name', 'Instytut Metalurgii Żelaza im. Stanisława Staszica'),
(43242, 36251, 'en', 'name', 'Association of Schools of Public Health in the European Region'),
(43243, 36252, 'en', 'name', 'Association of Consulting Engineers'),
(43244, 36253, 'en', 'name', 'Florida Department of Elder Affairs'),
(43245, 36254, 'no_lang_code', 'name', 'Tekna (Norway)'),
(43246, 36255, 'no_lang_code', 'name', 'Madshus (Norway)'),
(43247, 36256, 'no_lang_code', 'name', 'Sefako (Poland)'),
(43248, 36257, 'en', 'name', 'Japanese Society of Tropical Medicine'),
(43249, 36258, 'de', 'name', 'Christian Doppler Klinik'),
(43250, 36259, 'en', 'name', 'John B. Lacson Foundation Maritime University'),
(43251, 36260, 'en', 'name', 'Peace Arch Hospital'),
(43252, 36261, 'en', 'name', 'Lowestoft Hospital'),
(43253, 36262, 'no_lang_code', 'name', 'Wired (Japan)'),
(43254, 36263, 'no_lang_code', 'name', 'KRONOS (Norway)'),
(43255, 36264, 'no_lang_code', 'name', 'LojaFƔcil (Brazil)'),
(43256, 36265, 'no_lang_code', 'name', 'Ruter (Norway)'),
(43257, 36266, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Finland)'),
(43258, 36267, 'no_lang_code', 'name', 'IC Targets (Norway)'),
(43259, 36268, 'en', 'name', 'St John of God Geelong Hospital'),
(43260, 36269, 'no_lang_code', 'name', 'Advanced Research Systems'),
(43261, 36270, 'no_lang_code', 'name', 'Østensjø Rederi (Norway)'),
(43262, 36271, 'no_lang_code', 'name', 'MicroA (Norway)'),
(43263, 36272, 'no_lang_code', 'name', 'CardioDx (United States)'),
(43264, 36273, 'no_lang_code', 'name', 'Perutnina Ptuj (Slovenia)'),
(43265, 36274, 'no_lang_code', 'name', 'Ośrodek Badawczo-Rozwojowy Urządzeń Mechanicznych (Poland)'),
(43266, 36275, 'no_lang_code', 'name', 'Durdans Hospital'),
(43267, 36276, 'no_lang_code', 'name', 'Sir Ganga Ram Hospital'),
(43268, 36276, 'ur', 'name', 'Ų³Ų± گنگا Ų±Ų§Ł… ہسپتال'),
(43269, 36277, 'en', 'name', 'Tayler Bequest District Hospital'),
(43270, 36278, 'no_lang_code', 'name', 'Salus Group (Brazil)'),
(43271, 36279, 'no_lang_code', 'name', 'Altave (Brazil)'),
(43272, 36280, 'en', 'name', 'Maria Fareri Children''s Hospital'),
(43273, 36281, 'no_lang_code', 'name', 'Clave (Brazil)'),
(43274, 36282, 'en', 'name', 'Kenvale College'),
(43275, 36283, 'en', 'name', 'Ministry of Justice and Public Security'),
(43276, 36283, 'no', 'name', 'Det kongelige Justis- og beredskapsdepartementet'),
(43277, 36284, 'en', 'name', 'Copper Mountain College'),
(43278, 36285, 'en', 'name', 'Casper College'),
(43279, 36286, 'no_lang_code', 'name', 'EL-Automatyka (Poland)'),
(43280, 36287, 'en', 'name', 'Guelph General Hospital'),
(43281, 36288, 'no_lang_code', 'name', 'GlycaNova (Norway)'),
(43282, 36289, 'no_lang_code', 'name', 'Kelda Drilling Controls (Norway)'),
(43283, 36290, 'no_lang_code', 'name', 'Ceragon (Norway)'),
(43284, 36291, 'no_lang_code', 'name', 'BluGlass (Australia)'),
(43285, 36292, 'no_lang_code', 'name', 'Hans-Petter Brathaug (Norway)'),
(43286, 36293, 'no_lang_code', 'name', 'Ekornes (Norway)'),
(43287, 36294, 'en', 'name', 'Mt. Washington Pediatric Hospital'),
(43288, 36295, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„Ų·ŲØŁŠŲ©'),
(43289, 36295, 'en', 'name', 'Royal College of Surgeons in Ireland - Bahrain'),
(43290, 36296, 'fr', 'name', 'Centre de SantƩ et de Services Sociaux de la Vieille-Capitale'),
(43291, 36297, 'no_lang_code', 'name', 'ZootFly (Slovenia)'),
(43292, 36298, 'en', 'name', 'The Institute of the Polish Language of the Polish Academy of Sciences'),
(43293, 36298, 'pl', 'name', 'Instytut Języka Polskiego Polskiej Akademii Nauk'),
(43294, 36299, 'en', 'name', 'Korea National University of Welfare'),
(43295, 36299, 'ko', 'name', 'ķ•œźµ­ė³µģ§€ėŒ€ķ•™źµ'),
(43296, 36300, 'no_lang_code', 'name', 'Applied StemCell (United States)'),
(43297, 36301, 'en', 'name', 'Norwegain Radium Hospital Research Foundation'),
(43298, 36302, 'en', 'name', 'Ashwini Hospital'),
(43299, 36303, 'no_lang_code', 'name', 'Engineering Research & Analysis (United States)'),
(43300, 36304, 'en', 'name', 'Khawaja Farid Social Security Hospital'),
(43301, 36304, 'ur', 'name', 'خواجہ فرید Ų³ŁˆŲ“Ł„ سیکورٹی ہسپتال'),
(43302, 36305, 'no_lang_code', 'name', 'Icra Produtos Para Cerâmica (Brazil)'),
(43303, 36306, 'en', 'name', 'Indian Institute of Advanced Study'),
(43304, 36306, 'hi', 'name', 'इंऔियन ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ आफ ą¤ą¤”ą¤µą¤¾ą¤‚ą¤øą„ą¤” ą¤øą„ą¤Ÿą¤”ą„€'),
(43305, 36307, 'en', 'name', 'Hamedan University of Technology'),
(43306, 36308, 'no_lang_code', 'name', 'Zimmerman Associates (United States)'),
(43307, 36309, 'en', 'name', 'Central Electronics Engineering Research Institute'),
(43308, 36309, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ ą¤¦ą„ą¤°ą„€ą¤Æ ą¤‡ą¤²ą„‡ą¤•ą„ ą¤Ÿą„ą¤°ą„‹ą¤Øą¤æą¤•ą„€ ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ ऄान (ą¤øą„€ą¤°ą„€)'),
(43309, 36310, 'en', 'name', 'Institute of Subtropical Agriculture'),
(43310, 36310, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äŗšēƒ­åø¦å†œäøšē”Ÿę€ē ”ē©¶ę‰€'),
(43311, 36311, 'en', 'name', 'Alta View Hospital'),
(43312, 36312, 'en', 'name', 'Universal Engineering College'),
(43313, 36313, 'no', 'name', 'Gjemnes Kommune'),
(43314, 36314, 'fr', 'name', 'CEA Le Ripault'),
(43315, 36315, 'no_lang_code', 'name', 'Petroleum Geo-Services (Norway)'),
(43316, 36316, 'de', 'name', 'Grönemeyer Institut für MikroTherapie'),
(43317, 36316, 'en', 'name', 'Grƶnemeyer Institute for MicroTherapy'),
(43318, 36317, 'no_lang_code', 'name', 'Ultra Hi PlƔsticos Industriais (Brazil)'),
(43319, 36318, 'en', 'name', 'Oslo Centre for Interdisciplinary Environmental and Social Research'),
(43320, 36319, 'no_lang_code', 'name', 'Norsk Mineral (Norway)'),
(43321, 36320, 'en', 'name', 'Gaston College'),
(43322, 36321, 'en', 'name', 'Scripps Green Hospital'),
(43323, 36322, 'no_lang_code', 'name', 'TrĆøndelag Forskning og Utvikling (Norway)'),
(43324, 36323, 'en', 'name', 'Sonoma Valley Hospital'),
(43325, 36324, 'no_lang_code', 'name', 'Logos Biosystems (South Korea)'),
(43326, 36325, 'no_lang_code', 'name', 'Clean Marine (Norway)'),
(43327, 36326, 'no_lang_code', 'name', 'Peszke (Poland)'),
(43328, 36327, 'en', 'name', 'College of Industrial Engineering'),
(43329, 36328, 'en', 'name', 'Armament Research and Development Establishment'),
(43330, 36328, 'hi', 'name', 'ą¤†ą¤Æą„ą¤§ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾'),
(43331, 36329, 'no_lang_code', 'name', 'Metalex (Brazil)'),
(43332, 36330, 'es', 'name', 'Hospital Universitario de Burgos'),
(43333, 36331, 'no_lang_code', 'name', 'Mata Chanan Devi Hospital'),
(43334, 36332, 'en', 'name', 'Union Hospital'),
(43335, 36332, 'zh', 'name', '仁安醫院'),
(43336, 36333, 'en', 'name', 'Overseas Chinese University'),
(43337, 36333, 'zh', 'name', 'åƒ‘å…‰ē§‘ęŠ€å¤§å­ø'),
(43338, 36334, 'sl', 'name', 'Zdravstveni dom dr. Adolfa Drolca Maribor'),
(43339, 36335, 'en', 'name', 'Institute of Environmental Engineering'),
(43340, 36335, 'pl', 'name', 'Instytut Podstaw Inżynierii Środowiska Polskiej Akademii Nauk'),
(43341, 36336, 'no_lang_code', 'name', 'Le-tehnika (Slovenia)'),
(43342, 36337, 'no_lang_code', 'name', 'Leonhard Nilsen & SĆønner (Norway)'),
(43343, 36338, 'no_lang_code', 'name', 'WƤrtsilƤ (Norway)'),
(43344, 36339, 'de', 'name', 'SƤchsisches Staatsarchiv'),
(43345, 36340, 'en', 'name', 'Qingzhou City People''s Hospital'),
(43346, 36341, 'no_lang_code', 'name', 'Tissue Gene (United States)'),
(43347, 36342, 'no_lang_code', 'name', 'EDG Equipamentos e Controles (Brazil)'),
(43348, 36343, 'bg', 'name', 'Университетска болница Лозенец'),
(43349, 36343, 'no_lang_code', 'name', 'Lozenetz Hospital'),
(43350, 36344, 'no_lang_code', 'name', 'Boehringer Ingelheim (United Kingdom)'),
(43351, 36345, 'en', 'name', 'Norwegian Golf Federation'),
(43352, 36346, 'en', 'name', 'Clover Park Technical College'),
(43353, 36347, 'pl', 'name', 'Technika Podwodna (Poland)'),
(43354, 36348, 'no_lang_code', 'name', 'Kleven Maritime (Norway)'),
(43355, 36349, 'no_lang_code', 'name', 'Baker Hughes (Norway)'),
(43356, 36350, 'en', 'name', 'Fawcett Memorial Hospital'),
(43357, 36351, 'en', 'name', 'Taiping Hospital'),
(43358, 36351, 'ms', 'name', 'Hospital Taiping'),
(43359, 36352, 'en', 'name', 'National Kidney Foundation Singapore'),
(43360, 36353, 'no_lang_code', 'name', 'Nortroll (Norway)'),
(43361, 36354, 'en', 'name', 'Bombo Hospital'),
(43362, 36355, 'en', 'name', 'El Camino Hospital'),
(43363, 36356, 'no_lang_code', 'name', 'Vodovod-Kanalizacija (Slovenia)'),
(43364, 36357, 'no_lang_code', 'name', 'Ekopop (Poland)'),
(43365, 36358, 'en', 'name', 'Mater Misericordiae Hospital'),
(43366, 36359, 'en', 'name', 'Office of International Science and Engineering'),
(43367, 36360, 'no_lang_code', 'name', 'Plany (Norway)'),
(43368, 36361, 'en', 'name', 'Laney College'),
(43369, 36362, 'no_lang_code', 'name', 'Lattix (Norway)'),
(43370, 36363, 'no_lang_code', 'name', 'Isotop (Israel)'),
(43371, 36364, 'no_lang_code', 'name', 'Mallavi Hospital'),
(43372, 36365, 'en', 'name', 'Newport Hospital'),
(43373, 36366, 'en', 'name', 'Anugrah Narayan Magadh Medical College & Hospital'),
(43374, 36366, 'hi', 'name', 'ą¤…ą¤Øą„ą¤—ą„ą¤°ą¤¹ नारायण मगध ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(43375, 36367, 'de', 'name', 'Akademie der Wissenschaften und der Literatur Mainz'),
(43376, 36367, 'en', 'name', 'Academy of Sciences and Literature'),
(43377, 36368, 'no_lang_code', 'name', 'Imari Arita Kyoritsu Hospital'),
(43378, 36369, 'en', 'name', 'Institute of Industrial Organic Chemistry'),
(43379, 36370, 'no_lang_code', 'name', 'Jain Irrigation Systems (India)'),
(43380, 36371, 'de', 'name', 'Jüdisches Museum Berlin'),
(43381, 36371, 'en', 'name', 'Jewish Museum Berlin'),
(43382, 36372, 'en', 'name', 'Bethesda Hospital'),
(43383, 36372, 'ta', 'name', 'ą®ŖąÆ†ą®¤ąÆ†ą®øąÆą®¤ą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(43384, 36373, 'no_lang_code', 'name', 'Capital Fund Management (France)'),
(43385, 36374, 'no_lang_code', 'name', 'Mestergruppen (Norway)'),
(43386, 36375, 'no_lang_code', 'name', 'Knowledge Networks & Business Solutions (Brazil)'),
(43387, 36376, 'en', 'name', 'Division of Electrical, Communications & Cyber Systems'),
(43388, 36377, 'no_lang_code', 'name', 'Matrix Engineering (United States)'),
(43389, 36378, 'no_lang_code', 'name', 'Mosaic Solutions (Norway)'),
(43390, 36379, 'no_lang_code', 'name', 'Eco Inhibitors (Norway)'),
(43391, 36380, 'en', 'name', 'Kailuan General Hospital'),
(43392, 36381, 'no_lang_code', 'name', 'Uranet (Brazil)'),
(43393, 36382, 'no_lang_code', 'name', 'Kaleidoskopet (Norway)'),
(43394, 36383, 'no_lang_code', 'name', 'Etsy (United States)'),
(43395, 36384, 'no_lang_code', 'name', 'Piaram (Brazil)'),
(43396, 36384, 'pt', 'name', 'Piaram Productos Nanotechnologicos'),
(43397, 36385, 'en', 'name', 'Waseda Bioscience Research Institute in Singapore'),
(43398, 36386, 'pt', 'name', 'Secretaria de Planejamento e Gestão'),
(43399, 36387, 'no_lang_code', 'name', 'Tecnident (Brazil)'),
(43400, 36388, 'pl', 'name', 'Stowarzyszenie Nowa Wspólna Droga'),
(43401, 36389, 'no', 'name', 'Hermetikken NƦringshage'),
(43402, 36390, 'fr', 'name', 'CEA LITEN'),
(43403, 36391, 'no_lang_code', 'name', 'Meawallet (Norway)'),
(43404, 36392, 'no_lang_code', 'name', 'Magister Solutions (Finland)'),
(43405, 36393, 'no_lang_code', 'name', 'Signalcard (Brazil)'),
(43406, 36394, 'no_lang_code', 'name', 'Guangzhou Chemistry (China)'),
(43407, 36394, 'zh', 'name', 'äø­ē§‘é™¢å¹æå·žåŒ–å­¦ęœ‰é™å…¬åø'),
(43408, 36395, 'no_lang_code', 'name', 'Clavis Technology (Norway)'),
(43409, 36396, 'en', 'name', 'Centre for Quantum Technologies'),
(43410, 36397, 'no_lang_code', 'name', 'Fotonica (Brazil)'),
(43411, 36398, 'no_lang_code', 'name', 'SolstĆ­cio Energia (Brazil)'),
(43412, 36399, 'sl', 'name', 'InŔtituta za Neionizirna Sevanja'),
(43413, 36400, 'en', 'name', 'National Museum of Slovenia'),
(43414, 36401, 'no_lang_code', 'name', 'Epizyme (United States)'),
(43415, 36402, 'en', 'name', 'Division of Computing and Communication Foundations'),
(43416, 36403, 'no_lang_code', 'name', 'Suita Tokushukai Hospital'),
(43417, 36404, 'no_lang_code', 'name', 'Green Pool (Australia)'),
(43418, 36405, 'no_lang_code', 'name', 'Ipark (Norway)'),
(43419, 36406, 'en', 'name', 'National Institute of Technology, Tsuruoka College'),
(43420, 36406, 'ja', 'name', 'é¶“å²”å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(43421, 36407, 'no_lang_code', 'name', 'Regenics (Norway)'),
(43422, 36408, 'no_lang_code', 'name', 'Microsemi (United States)'),
(43423, 36409, 'bn', 'name', 'বাংলাদেশ ą¦•ą§ƒą¦·ą¦æ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(43424, 36409, 'en', 'name', 'Bangladesh Agricultural Research Institute'),
(43425, 36410, 'no', 'name', 'BesteBakken'),
(43426, 36411, 'no_lang_code', 'name', 'Preline Fishfarming Systems (Norway)'),
(43427, 36412, 'no_lang_code', 'name', 'Petoro (Norway)'),
(43428, 36413, 'de', 'name', 'Württembergische Landesbibliothek'),
(43429, 36413, 'en', 'name', 'State Library of Württemberg'),
(43430, 36414, 'no_lang_code', 'name', 'Knutsen OAS Shipping (Norway)'),
(43431, 36415, 'no_lang_code', 'name', 'Nanosystem (Russia)'),
(43432, 36416, 'fr', 'name', 'Salon Carrière Formation de Québec'),
(43433, 36417, 'en', 'name', 'Co-opertive Housing Federation of Norway'),
(43434, 36418, 'pt', 'name', 'Hospital Erasto Gaertner'),
(43435, 36419, 'no_lang_code', 'name', 'Welspun (India)'),
(43436, 36420, 'no_lang_code', 'name', 'APIM Therapeutics (Norway)'),
(43437, 36421, 'en', 'name', 'Upper River Valley Hospital'),
(43438, 36422, 'en', 'name', 'Mease Countryside Hospital'),
(43439, 36423, 'no_lang_code', 'name', 'Selsan Tecnologia Industrial e Comercial (Brazil)'),
(43440, 36424, 'no_lang_code', 'name', 'Chengdu Organic Chemicals (China)'),
(43441, 36424, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ęˆéƒ½ęœ‰ęœŗåŒ–å­¦ęœ‰é™å…¬åø'),
(43442, 36425, 'en', 'name', 'St Bernard''s Hospital'),
(43443, 36425, 'es', 'name', 'Hospital de San Bernardo'),
(43444, 36426, 'no_lang_code', 'name', 'Aquatic Concept group (Norway)'),
(43445, 36427, 'no', 'name', 'Norsk Namnelag'),
(43446, 36428, 'en', 'name', 'San Francisco Firefighters Cancer Prevention Foundation'),
(43447, 36429, 'no_lang_code', 'name', 'TECES'),
(43448, 36430, 'de', 'name', 'Brandenburgisches Landesamt für Denkmalpflege und Archäologisches Landesmuseum'),
(43449, 36431, 'en', 'name', 'Yili Friendship Hospital'),
(43450, 36432, 'no', 'name', 'Hattfjelldal Kommune'),
(43451, 36433, 'en', 'name', 'Turriff Cottage Hospital'),
(43452, 36434, 'no_lang_code', 'name', 'Findus (Norway)'),
(43453, 36435, 'en', 'name', 'Osaki Citizen Hospital'),
(43454, 36435, 'ja', 'name', 'å¤§å“Žåø‚ę°‘ē—…é™¢'),
(43455, 36436, 'no_lang_code', 'name', 'Toxikón (Brazil)'),
(43456, 36437, 'en', 'name', 'Division of Materials Research'),
(43457, 36438, 'en', 'name', 'Canadian Forces College'),
(43458, 36439, 'pt', 'name', 'Secretaria de Gestão Pública'),
(43459, 36440, 'en', 'name', 'Institute of Philosophy and Sociology'),
(43460, 36440, 'pl', 'name', 'Instytut Filozofii i Socjologii'),
(43461, 36441, 'no', 'name', 'Storfjord Kommune'),
(43462, 36442, 'no_lang_code', 'name', 'Sweco (Poland)'),
(43463, 36443, 'en', 'name', 'KM Shah Dental College and Hospital'),
(43464, 36444, 'no_lang_code', 'name', 'Adamed (Poland)'),
(43465, 36445, 'en', 'name', 'Jammu Hospital'),
(43466, 36446, 'no_lang_code', 'name', 'Zetkama (Poland)'),
(43467, 36447, 'en', 'name', 'Xinjiang Astronomical Observatory'),
(43468, 36447, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę–°ē–†å¤©ę–‡å°'),
(43469, 36448, 'pt', 'name', 'Hospital SĆ£o Vicente de Paulo'),
(43470, 36449, 'no_lang_code', 'name', 'Changetech (Norway)'),
(43471, 36450, 'fi', 'name', 'VƤestƶliitto'),
(43472, 36451, 'en', 'name', 'Bowral & District Hospital'),
(43473, 36452, 'tr', 'name', 'Baltalimanı Kemik Hastalıkları Hastanesi'),
(43474, 36453, 'en', 'name', 'Academic Center of Medicine'),
(43475, 36454, 'no_lang_code', 'name', 'Alcoa (Norway)'),
(43476, 36455, 'pt', 'name', 'Secretaria do Governo Municipal'),
(43477, 36456, 'en', 'name', 'Bayi Children''s Hospital'),
(43478, 36457, 'de', 'name', 'Asklepios Kliniken Bad Abbach'),
(43479, 36458, 'no_lang_code', 'name', 'JAS Technologies (Poland)'),
(43480, 36459, 'no_lang_code', 'name', 'Misasa Onsen Hospital'),
(43481, 36460, 'no_lang_code', 'name', 'G&T Septech (Norway)'),
(43482, 36461, 'sl', 'name', 'MEIS Storitve za Okolje'),
(43483, 36462, 'no_lang_code', 'name', 'Opplysningskontoret for Meieriprodukter (Norway)'),
(43484, 36463, 'no', 'name', 'Sparebankforeningen i Norge'),
(43485, 36464, 'en', 'name', 'Holy Innocents Children''s Hospital'),
(43486, 36465, 'en', 'name', 'Norwegian Institute of International Affairs'),
(43487, 36466, 'en', 'name', 'Masaka Hospital'),
(43488, 36467, 'en', 'name', 'Cabell Huntington Hospital'),
(43489, 36468, 'en', 'name', 'Institute of Technology and Life Sciences'),
(43490, 36469, 'no_lang_code', 'name', 'Mbuma Mission Hospital'),
(43491, 36470, 'no_lang_code', 'name', 'Searis (Norway)'),
(43492, 36471, 'no_lang_code', 'name', 'Thync (United States)'),
(43493, 36472, 'pl', 'name', 'Centrum Leczenia Oparzeń'),
(43494, 36473, 'no_lang_code', 'name', 'Litostroj Group (Slovenia)'),
(43495, 36474, 'no_lang_code', 'name', 'Bhabha Hospital'),
(43496, 36475, 'no_lang_code', 'name', 'Flexmedia (Brazil)'),
(43497, 36476, 'en', 'name', 'Brampton Civic Hospital'),
(43498, 36477, 'no_lang_code', 'name', 'Adalia Film (Norway)'),
(43499, 36478, 'en', 'name', 'Basildon and Thurrock University Hospitals NHS Foundation Trust'),
(43500, 36479, 'no_lang_code', 'name', 'Vita Care (Brazil)'),
(43501, 36480, 'no_lang_code', 'name', 'Supê Soluções (Brazil)'),
(43502, 36481, 'de', 'name', 'Münchner Stadtbibliothek'),
(43503, 36482, 'no_lang_code', 'name', 'Ekion Tecnologia de Veƭculos ElƩtricos (Brazil)'),
(43504, 36483, 'en', 'name', 'Yuhan University'),
(43505, 36483, 'ko', 'name', 'ģœ ķ•œėŒ€ķ•™źµ'),
(43506, 36484, 'en', 'name', 'Redwood Memorial Hospital'),
(43507, 36485, 'no_lang_code', 'name', 'Nucleus (Norway)'),
(43508, 36486, 'no_lang_code', 'name', 'Toma Mat (Norway)'),
(43509, 36487, 'no_lang_code', 'name', 'Tercja Systemy Pomiarowe i Komputerowe (Poland)'),
(43510, 36488, 'pt', 'name', 'Instituto Sedes Sapientiae'),
(43511, 36489, 'no_lang_code', 'name', 'Maharaja Yeshwantrao Hospital'),
(43512, 36490, 'no_lang_code', 'name', 'Bambisana Hospital'),
(43513, 36491, 'en', 'name', 'Processors and Growers Research Organisation'),
(43514, 36492, 'no_lang_code', 'name', 'Hafslund (Norway)'),
(43515, 36493, 'no_lang_code', 'name', 'Con-Form (Norway)'),
(43516, 36494, 'no_lang_code', 'name', 'Faktotum Informasjon (Norway)'),
(43517, 36495, 'en', 'name', 'Ramin Agriculture and Natural Resources University of Khouzestan'),
(43518, 36496, 'no_lang_code', 'name', 'Lester (Poland)'),
(43519, 36497, 'no_lang_code', 'name', 'Nebb (Norway)'),
(43520, 36498, 'no_lang_code', 'name', 'NorthSea Container Line (Norway)'),
(43521, 36499, 'no_lang_code', 'name', 'Smartfish (Norway)'),
(43522, 36500, 'en', 'name', 'Methodist Hospital'),
(43523, 36501, 'no_lang_code', 'name', 'Midot (Israel)'),
(43524, 36502, 'de', 'name', 'Deutsches Forschungsinstitut für öffentliche Verwaltung'),
(43525, 36502, 'en', 'name', 'German Research Institute for Public Administration'),
(43526, 36503, 'no_lang_code', 'name', 'Tubądzin (Poland)'),
(43527, 36504, 'no_lang_code', 'name', 'Verdartis (Brazil)'),
(43528, 36505, 'en', 'name', 'Coxa Hospital'),
(43529, 36506, 'en', 'name', 'The Ohio State University Newark'),
(43530, 36507, 'no_lang_code', 'name', 'Tongren Hospital'),
(43531, 36508, 'pt', 'name', 'Associação Brasileira de Antropologia'),
(43532, 36509, 'pt', 'name', 'Associação Brasileira de Estudos Populacionais'),
(43533, 36510, 'en', 'name', 'Aditya Birla Memorial Hospital'),
(43534, 36511, 'no_lang_code', 'name', 'Silesia Oil (Poland)'),
(43535, 36512, 'en', 'name', 'Slovene Ethnographic Museum'),
(43536, 36513, 'no', 'name', 'Hornindal Kommune'),
(43537, 36514, 'no_lang_code', 'name', 'Hardsoft Microprocessor Systems (Poland)'),
(43538, 36515, 'no_lang_code', 'name', 'Tianjin Hi-Tech Superconducting Electronic Technology (China)'),
(43539, 36516, 'hi', 'name', 'ą¤”ą„‰. ą¤°ą„‡ą¤”ą„ą¤”ą„€ą¤œ ą¤²ą„‡ą¤¬ą„‹ą¤°ą„‡ą¤Ÿą¤°ą„€ą¤œ'),
(43540, 36516, 'kn', 'name', 'ಔಾ. ą²°ą³†ą²”ą³ą²”ą³€''ą²øą³ ą²²ą³ą²Æą²¾ą²¬ą³‹ą²°ą³‡ą²Ÿą²°ą³€ą²øą³'),
(43541, 36516, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (India)'),
(43542, 36516, 'ta', 'name', 'டா. ą®°ąÆ†ą®ŸąÆą®ŸąÆ€ą®šąÆ'),
(43543, 36516, 'te', 'name', 'ఔా. ą°°ą±†ą°”ą±ą°”ą±€ą°øą± ą°²ą±ą°Æą°¾ą°¬ą±ą°øą±'),
(43544, 36517, 'no_lang_code', 'name', 'TEGma (Norway)'),
(43545, 36518, 'en', 'name', 'Paul Hastings'),
(43546, 36519, 'en', 'name', 'American Indian College'),
(43547, 36520, 'en', 'name', 'Division of Integrative Organismal Systems'),
(43548, 36521, 'en', 'name', 'New Era College'),
(43549, 36521, 'ms', 'name', 'ę–°ēŗŖå…ƒå­¦é™¢'),
(43550, 36522, 'no_lang_code', 'name', 'Abbon (Norway)'),
(43551, 36523, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬ŲØŁŠŁ„ Ų§Ł„ŲµŁ†Ų§Ų¹ŁŠŲ©'),
(43552, 36523, 'en', 'name', 'Jubail Industrial College'),
(43553, 36524, 'no_lang_code', 'name', 'Kongsberg Innovasjon (Norway)'),
(43554, 36525, 'no_lang_code', 'name', 'Mecsense (Norway)'),
(43555, 36526, 'en', 'name', 'Garda SƭochƔna College'),
(43556, 36527, 'no_lang_code', 'name', 'Radiotechnika Marketing (Poland)'),
(43557, 36528, 'en', 'name', 'ACPM Dental College and Hospital'),
(43558, 36529, 'no_lang_code', 'name', 'Wilson Sonsini Goodrich & Rosati'),
(43559, 36530, 'no_lang_code', 'name', 'Racetronix (Brazil)'),
(43560, 36531, 'en', 'name', 'University of Military Science and Technology'),
(43561, 36532, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų£Ł…ŁˆŁ† Ų­Ł…ŁŠŲÆŲ©'),
(43562, 36532, 'en', 'name', 'University of Medical Sciences and Technology'),
(43563, 36533, 'en', 'name', 'The Eighth People’s Hospital of Nanning'),
(43564, 36534, 'en', 'name', 'Prince County Hospital'),
(43565, 36535, 'no_lang_code', 'name', 'Genotyping BPI (Brazil)'),
(43566, 36536, 'de', 'name', 'Schüchtermann-Klinik'),
(43567, 36537, 'no_lang_code', 'name', 'Bonavision Auxilios Opticos (Brazil)'),
(43568, 36538, 'no_lang_code', 'name', 'Shalamar Hospital'),
(43569, 36539, 'no_lang_code', 'name', 'AMO (Germany)'),
(43570, 36540, 'en', 'name', 'Berlin Partner for Business and Technology'),
(43571, 36541, 'no_lang_code', 'name', 'Vitacress (United Kingdom)'),
(43572, 36542, 'no_lang_code', 'name', 'Tomra (Norway)'),
(43573, 36543, 'no_lang_code', 'name', 'Polyform (Norway)'),
(43574, 36544, 'en', 'name', 'Institute for Environmental Protection and Sensors'),
(43575, 36545, 'en', 'name', 'Lake–Sumter State College'),
(43576, 36546, 'es', 'name', 'Banco de la RepĆŗblica Colombia'),
(43577, 36547, 'en', 'name', 'St John of God Hospital Sierra Leone'),
(43578, 36548, 'en', 'name', 'Horizon College and Seminary'),
(43579, 36549, 'no_lang_code', 'name', 'Beijing Biocytogen (China)'),
(43580, 36550, 'no_lang_code', 'name', 'Gramatex (Slovenia)'),
(43581, 36551, 'no_lang_code', 'name', 'Nordox (Norway)'),
(43582, 36552, 'en', 'name', 'St. John''s Hospital'),
(43583, 36553, 'no_lang_code', 'name', 'Vallitech (Brazil)'),
(43584, 36554, 'no_lang_code', 'name', 'Flowtec (Norway)'),
(43585, 36555, 'de', 'name', 'Stadtarchiv Mainz'),
(43586, 36556, 'en', 'name', 'Rajiv Gandhi University of Knowledge Technologies'),
(43587, 36557, 'en', 'name', 'Bureau of Land Management'),
(43588, 36558, 'en', 'name', 'Å tefan Kukura Hospital in Michalovce'),
(43589, 36559, 'no', 'name', 'Fjellregionen'),
(43590, 36560, 'no_lang_code', 'name', 'Manila Consulting Group (United States)'),
(43591, 36561, 'no_lang_code', 'name', 'NeoSentio (Poland)'),
(43592, 36562, 'no', 'name', 'Tenketanken Tau'),
(43593, 36563, 'de', 'name', 'St. Bernward Krankenhaus'),
(43594, 36564, 'de', 'name', 'Max Bergmann Zentrum für Biomaterialien'),
(43595, 36565, 'en', 'name', 'Mercy Willard Hospital'),
(43596, 36566, 'no_lang_code', 'name', 'FelleskjĆøpet (Norway)'),
(43597, 36567, 'de', 'name', 'AuswƤrtiges Amt'),
(43598, 36567, 'en', 'name', 'Federal Foreign Office'),
(43599, 36568, 'en', 'name', 'Princess Margaret Hospital'),
(43600, 36569, 'no_lang_code', 'name', 'Kolektor (Slovenia)'),
(43601, 36570, 'no_lang_code', 'name', 'Yotta Navigation (United States)'),
(43602, 36571, 'en', 'name', 'Defence Research and Development Laboratory'),
(43603, 36571, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(43604, 36572, 'no_lang_code', 'name', 'OceanSaver (Norway)'),
(43605, 36573, 'en', 'name', 'St. Columcille''s Hospital'),
(43606, 36573, 'ga', 'name', 'OspidƩal Naomh Colm Cille'),
(43607, 36574, 'no_lang_code', 'name', 'Deep Sea Anchors (Norway)'),
(43608, 36575, 'no_lang_code', 'name', 'Securo (Norway)'),
(43609, 36576, 'no_lang_code', 'name', 'Recombinant Antibody Technology (United Kingdom)'),
(43610, 36577, 'en', 'name', 'Connecticut Valley Hospital'),
(43611, 36578, 'en', 'name', 'Emerging Frontiers Office'),
(43612, 36579, 'en', 'name', 'Atlantic Cape Community College'),
(43613, 36580, 'no_lang_code', 'name', 'Almas Hospital'),
(43614, 36581, 'no_lang_code', 'name', 'Myworkout (Norway)'),
(43615, 36582, 'en', 'name', 'East Yangon General Hospital'),
(43616, 36582, 'my', 'name', 'ရန်ကုန် နရှေ့ပိုင်း ဆေးရုံ'),
(43617, 36583, 'no_lang_code', 'name', 'AXTech (Norway)'),
(43618, 36584, 'no_lang_code', 'name', 'Posicom (Norway)'),
(43619, 36585, 'no_lang_code', 'name', 'Tec3GEO (Brazil)'),
(43620, 36586, 'de', 'name', 'Joseph Haydn-Institut'),
(43621, 36587, 'no_lang_code', 'name', 'Virttu Biologics (United Kingdom)'),
(43622, 36588, 'de', 'name', 'Jura-Museum EichstƤtt'),
(43623, 36589, 'no_lang_code', 'name', 'Madeplas (Brazil)'),
(43624, 36590, 'en', 'name', 'AdventHealth East Orlando'),
(43625, 36591, 'no_lang_code', 'name', 'Arendals Fossekompani (Norway)'),
(43626, 36592, 'no_lang_code', 'name', 'Reliable Software Resources (United States)'),
(43627, 36593, 'en', 'name', 'Swami Pranavananda Homoeopathic Medical College and Hospital'),
(43628, 36594, 'en', 'name', 'Clark Fork Valley Hospital'),
(43629, 36595, 'en', 'name', 'Lackawanna College'),
(43630, 36596, 'pt', 'name', 'Federação Brasileira de Psicodrama'),
(43631, 36597, 'en', 'name', 'Linzi District People''s Hospital'),
(43632, 36598, 'en', 'name', 'O’Connor Hospital'),
(43633, 36599, 'no_lang_code', 'name', 'Halvors Tradisjonsfisk (Norway)'),
(43634, 36600, 'no', 'name', 'Trondheim Havn IKS'),
(43635, 36601, 'no_lang_code', 'name', 'Insolita Studios (Brazil)'),
(43636, 36602, 'no_lang_code', 'name', 'Norwegian Crystals (Norway)'),
(43637, 36603, 'no_lang_code', 'name', 'InPhase Solutions (Norway)'),
(43638, 36604, 'en', 'name', 'Galloway Community Hospital'),
(43639, 36605, 'en', 'name', 'Division of Information Systems'),
(43640, 36606, 'no_lang_code', 'name', 'Golder Associates (China)'),
(43641, 36607, 'pt', 'name', 'Universidade Katyavala Bwila'),
(43642, 36608, 'en', 'name', 'Maritime CleanTech West'),
(43643, 36609, 'no_lang_code', 'name', 'OptimarStette (Norway)'),
(43644, 36610, 'no_lang_code', 'name', 'Sensorteknikk (Norway)'),
(43645, 36611, 'en', 'name', 'Strata Mechanics Research Institute'),
(43646, 36611, 'pl', 'name', 'Instytut Mechaniki Górotworu'),
(43647, 36612, 'en', 'name', 'University of Professional Studies'),
(43648, 36613, 'no_lang_code', 'name', 'EnĆøk-Senteret (Norway)'),
(43649, 36614, 'no_lang_code', 'name', 'Egovita (Poland)'),
(43650, 36615, 'en', 'name', 'Niilo MƤki institute'),
(43651, 36616, 'no_lang_code', 'name', 'Pol-Spec-Tech-Service (Poland)'),
(43652, 36617, 'en', 'name', 'Sibu Hospital'),
(43653, 36618, 'no_lang_code', 'name', 'Nanox (Brazil)'),
(43654, 36619, 'no_lang_code', 'name', 'Brunvoll (Norway)'),
(43655, 36620, 'no', 'name', 'Torsken kommune'),
(43656, 36621, 'es', 'name', 'Hospital General de Almansa'),
(43657, 36622, 'no_lang_code', 'name', 'ATES (Slovenia)'),
(43658, 36623, 'it', 'name', 'Ospedale Cervesi di Cattolica'),
(43659, 36624, 'en', 'name', 'Fifth Affiliated Hospital of Zhengzhou University'),
(43660, 36625, 'en', 'name', 'Carroll Community College'),
(43661, 36626, 'no_lang_code', 'name', 'Dynamic Research (United States)'),
(43662, 36627, 'en', 'name', 'Richmond Hospital'),
(43663, 36628, 'en', 'name', 'Health and Social Services Centre University Institute of Geriatrics of Sherbrooke'),
(43664, 36628, 'fr', 'name', 'Centre de santƩ et de services sociaux Institut universitaire de gƩriatrie de Sherbrooke'),
(43665, 36629, 'no_lang_code', 'name', 'Biomega (Norway)'),
(43666, 36630, 'no_lang_code', 'name', 'Złotecki (Poland)'),
(43667, 36631, 'no_lang_code', 'name', 'Cyrbe (Brazil)'),
(43668, 36632, 'no', 'name', 'Mellomrom Arkitekturpsykologi'),
(43669, 36633, 'en', 'name', 'Russian Children''s Clinical Hospital'),
(43670, 36634, 'no_lang_code', 'name', 'Norwell (Norway)'),
(43671, 36635, 'en', 'name', 'Faulkner State Community College'),
(43672, 36636, 'no', 'name', 'Psykologica'),
(43673, 36637, 'no_lang_code', 'name', 'Ophthalmos (Brazil)'),
(43674, 36638, 'no_lang_code', 'name', 'Liquiline (Norway)'),
(43675, 36639, 'no', 'name', 'Emballasjeforeningen'),
(43676, 36640, 'no', 'name', 'Studix'),
(43677, 36641, 'no_lang_code', 'name', 'Educomp Solutions (India)'),
(43678, 36642, 'no_lang_code', 'name', 'ADK Hospital'),
(43679, 36643, 'en', 'name', 'Institute of Mathematical Machines'),
(43680, 36644, 'no_lang_code', 'name', 'Artec Aqua (Norway)'),
(43681, 36645, 'de', 'name', 'Philosophisch-Theologische Hochschule Sankt Georgen'),
(43682, 36645, 'en', 'name', 'Sankt Georgen Graduate School of Philosophy and Theology'),
(43683, 36646, 'no_lang_code', 'name', 'MicroTech Innovation (Norway)'),
(43684, 36647, 'no_lang_code', 'name', 'Wienerberger (Norway)'),
(43685, 36648, 'no_lang_code', 'name', 'Hydromega (Poland)'),
(43686, 36649, 'no_lang_code', 'name', 'Scana (Norway)'),
(43687, 36650, 'en', 'name', 'Sutherland Hospital'),
(43688, 36651, 'en', 'name', 'St Woolos Hospital'),
(43689, 36652, 'no_lang_code', 'name', 'Biolink Group (Norway)'),
(43690, 36653, 'no_lang_code', 'name', 'Kvalvik (Norway)'),
(43691, 36654, 'pt', 'name', 'Centro Brasileiro de AnƔlise e Planejamento'),
(43692, 36655, 'de', 'name', 'Olgahospital'),
(43693, 36656, 'no_lang_code', 'name', 'Sway (Norway)'),
(43694, 36657, 'no_lang_code', 'name', 'Peterson (Norway)'),
(43695, 36658, 'no_lang_code', 'name', 'CPZ International'),
(43696, 36659, 'en', 'name', 'Corfu General Clinic'),
(43697, 36660, 'no_lang_code', 'name', 'Promost Consulting (Poland)'),
(43698, 36661, 'en', 'name', 'Second People''s Hospital of NanTong'),
(43699, 36661, 'zh', 'name', 'å—é€šåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(43700, 36662, 'en', 'name', 'Flinders Private Hospital'),
(43701, 36663, 'sl', 'name', 'Psihiatrična BolniŔnica Ormož'),
(43702, 36664, 'no_lang_code', 'name', 'TECE Norge (Norway)'),
(43703, 36665, 'en', 'name', 'Fountain Way'),
(43704, 36666, 'no_lang_code', 'name', 'Indra Navia (Norway)'),
(43705, 36667, 'no_lang_code', 'name', 'ImagineRT (Poland)'),
(43706, 36668, 'no_lang_code', 'name', 'SAS Cargo (Norway)'),
(43707, 36669, 'en', 'name', 'Mubende Hospital'),
(43708, 36670, 'no_lang_code', 'name', 'Bull Ski & Kajakk (Norway)'),
(43709, 36671, 'no_lang_code', 'name', 'Eltcrac System (Poland)'),
(43710, 36672, 'en', 'name', 'Second Affiliated Hospital of Inner Mongolia Medical University'),
(43711, 36673, 'no_lang_code', 'name', 'Odysci (Brazil)'),
(43712, 36674, 'en', 'name', 'United Nations University-International Institute for Global Health'),
(43713, 36675, 'en', 'name', 'Islamic Azad University Mahshahr'),
(43714, 36675, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ماهؓهر'),
(43715, 36676, 'no_lang_code', 'name', 'Enalta Inovações Tecnológicas (Brazil)'),
(43716, 36677, 'en', 'name', 'Aga Khan Hospital, Mombasa'),
(43717, 36678, 'no_lang_code', 'name', 'Isothermal Technology (United Kingdom)'),
(43718, 36679, 'en', 'name', 'James Cook University Singapore'),
(43719, 36680, 'en', 'name', 'Gateway Seminary'),
(43720, 36681, 'no_lang_code', 'name', 'Dpcom (Norway)'),
(43721, 36682, 'en', 'name', 'Jilin City Central Hospital'),
(43722, 36683, 'no_lang_code', 'name', 'Meaning Processing (Finland)'),
(43723, 36684, 'no_lang_code', 'name', 'Br4Science (Brazil)'),
(43724, 36685, 'de', 'name', 'Katholisches Klinikum Essen'),
(43725, 36686, 'de', 'name', 'Landesamt für Denkmalpflege und Archäologie Sachsen-Anhalt'),
(43726, 36687, 'no_lang_code', 'name', 'Applied Technical Services (United States)'),
(43727, 36688, 'en', 'name', 'St. Anthony Hospital'),
(43728, 36689, 'no_lang_code', 'name', 'Biosense Laboratories (Norway)'),
(43729, 36690, 'en', 'name', 'Novant Health Charlotte Orthopedic Hospital'),
(43730, 36691, 'en', 'name', 'Angkor Hospital for Children'),
(43731, 36692, 'no_lang_code', 'name', 'Hytron (Brazil)'),
(43732, 36693, 'no', 'name', 'Avdeling for Utdanning Nord-TrĆøndelag Fylkeskommune'),
(43733, 36694, 'no_lang_code', 'name', 'Innovation Performance (Norway)'),
(43734, 36695, 'en', 'name', 'Indira Gandhi Memorial Hospital'),
(43735, 36696, 'no_lang_code', 'name', 'K.A. Rasmussen (Norway)'),
(43736, 36697, 'en', 'name', 'General Numerics Research Lab'),
(43737, 36698, 'no_lang_code', 'name', 'Simtronics (Norway)'),
(43738, 36699, 'no_lang_code', 'name', 'Icopal (Poland)'),
(43739, 36700, 'no_lang_code', 'name', 'Vidarforlaget (Norway)'),
(43740, 36701, 'en', 'name', 'Iran University of Industries and Mines'),
(43741, 36702, 'no_lang_code', 'name', 'EFD Induction (Norway)'),
(43742, 36703, 'en', 'name', 'Institute of Electronics'),
(43743, 36703, 'zh', 'name', '中国科学院电子学研究所'),
(43744, 36704, 'no_lang_code', 'name', 'Opinion (Norway)'),
(43745, 36705, 'en', 'name', 'Norwegian Securities Dealers Association'),
(43746, 36706, 'en', 'name', 'Webstudent'),
(43747, 36707, 'de', 'name', 'Krankenhaus der Elisabethinen'),
(43748, 36708, 'no_lang_code', 'name', 'Nowoczesne Techniki Instalacyjne (Poland)'),
(43749, 36709, 'no', 'name', '657 Oslo'),
(43750, 36710, 'no_lang_code', 'name', 'Rek Swed (Poland)'),
(43751, 36711, 'no_lang_code', 'name', 'GK (Norway)'),
(43752, 36712, 'pt', 'name', 'Solução Ambiental Assessoria e Consultoria'),
(43753, 36713, 'no_lang_code', 'name', 'Rajagiri Hospital'),
(43754, 36714, 'no_lang_code', 'name', 'Germinal (Brazil)'),
(43755, 36715, 'no_lang_code', 'name', 'VardĆø Barents Base (Norway)'),
(43756, 36716, 'ja', 'name', 'é³„å–ēœŒē«‹åŽšē”Ÿē—…é™¢'),
(43757, 36716, 'no_lang_code', 'name', 'Tottori Prefectural Kousei Hospital'),
(43758, 36717, 'en', 'name', 'National University'),
(43759, 36718, 'en', 'name', 'St Christopher''s Hospice'),
(43760, 36719, 'no_lang_code', 'name', 'Strongpoint (Norway)'),
(43761, 36720, 'no_lang_code', 'name', 'Opera Software (Norway)'),
(43762, 36721, 'pt', 'name', 'Academia de CiĆŖncias do Estado de SĆ£o Paulo'),
(43763, 36722, 'en', 'name', 'Northeastern Vermont Regional Hospital'),
(43764, 36723, 'en', 'name', 'Saint Thomas - Rutherford Hospital'),
(43765, 36724, 'no_lang_code', 'name', 'Nattopharma (Norway)'),
(43766, 36725, 'en', 'name', 'ProMedica Fostoria Community Hospital'),
(43767, 36726, 'de', 'name', 'Institut für Informationsmanagement Bremen'),
(43768, 36726, 'en', 'name', 'Institute for Information Management Bremen'),
(43769, 36727, 'no_lang_code', 'name', 'Efix (Brazil)'),
(43770, 36728, 'pt', 'name', 'Centro Cerâmico do Brasil'),
(43771, 36729, 'no_lang_code', 'name', 'Deoxi Biotecnologia (Brazil)'),
(43772, 36730, 'en', 'name', 'Aliwal North Hospital'),
(43773, 36731, 'fr', 'name', 'CƩgep de Saint-Laurent'),
(43774, 36732, 'no_lang_code', 'name', 'ECHO (Slovenia)'),
(43775, 36733, 'de', 'name', 'Institut für die Geschichte der deutschen Juden'),
(43776, 36733, 'en', 'name', 'Institute for the History of the German Jews'),
(43777, 36734, 'no_lang_code', 'name', 'Geoambiente (Brazil)'),
(43778, 36735, 'en', 'name', 'Lowell General Hospital'),
(43779, 36736, 'no_lang_code', 'name', 'Innovations for Heart and Vessels (Poland)'),
(43780, 36737, 'en', 'name', 'Eastern Norway Research Institute'),
(43781, 36738, 'no_lang_code', 'name', 'AMES (Slovenia)'),
(43782, 36739, 'en', 'name', 'Stracathro Hospital'),
(43783, 36740, 'no_lang_code', 'name', 'Lividi (Norway)'),
(43784, 36741, 'en', 'name', 'Institute for the Protection of Cultural Heritage of Slovenia'),
(43785, 36742, 'en', 'name', 'Coquitlam College'),
(43786, 36743, 'no_lang_code', 'name', 'Res Publica (Norway)'),
(43787, 36744, 'en', 'name', 'Mahatma Gandhi Mission Medical College and Hospital'),
(43788, 36745, 'en', 'name', 'Swiss Institute for Management and Hospitality'),
(43789, 36746, 'no_lang_code', 'name', 'PREZIOSO Linjebygg (Norway)'),
(43790, 36747, 'no', 'name', 'SĆørlandet Kunnskapspark'),
(43791, 36748, 'no_lang_code', 'name', 'Hammertech (Norway)'),
(43792, 36749, 'en', 'name', 'Vilnius St. Joseph Seminary'),
(43793, 36749, 'lt', 'name', 'Vilniaus Šv. Juozapo kunigų seminarija'),
(43794, 36749, 'ru', 'name', 'Š”ŠµŠ¼ŠøŠ½Š°Ń€ŠøŃ Š”Š²ŃŃ‚Š¾Š³Š¾ Š˜Š¾ŃŠøŃ„Š°'),
(43795, 36750, 'no_lang_code', 'name', 'Madwaleni Hospital'),
(43796, 36751, 'no_lang_code', 'name', 'Eli Lilly (India)'),
(43797, 36752, 'en', 'name', 'Stutterheim Provincial Hospital'),
(43798, 36753, 'fr', 'name', 'Centre Hospitalier Universitaire Yalgado OuƩdraogo'),
(43799, 36754, 'ms', 'name', 'Manipal Hospital Klang'),
(43800, 36755, 'en', 'name', 'Shanxi Taiyuan Jinkang Rheumatism Hospital'),
(43801, 36756, 'en', 'name', 'Inver Hills Community College'),
(43802, 36757, 'no_lang_code', 'name', 'Ƙkologisk Spesialkorn (Norway)'),
(43803, 36758, 'en', 'name', 'First Scandinavia'),
(43804, 36759, 'no', 'name', 'RegionrƄdet for Hallingdal'),
(43805, 36760, 'en', 'name', 'Manchester Memorial Hospital'),
(43806, 36761, 'en', 'name', 'Lib4RI - Library for the Research Institutes within the ETH Domain: Eawag, Empa, PSI & WSL'),
(43807, 36762, 'no_lang_code', 'name', 'Docmap (Norway)'),
(43808, 36763, 'no_lang_code', 'name', 'Lychnoflora (Brazil)'),
(43809, 36764, 'no_lang_code', 'name', 'Logon (Slovenia)'),
(43810, 36765, 'no_lang_code', 'name', 'Knowit (Norway)'),
(43811, 36766, 'no_lang_code', 'name', 'ACROS Security (Slovenia)'),
(43812, 36767, 'en', 'name', 'Alliance for Health Policy and Systems Research'),
(43813, 36768, 'no_lang_code', 'name', 'DEV Tecnologia (Brazil)'),
(43814, 36769, 'no_lang_code', 'name', 'Utep (Brazil)'),
(43815, 36770, 'no_lang_code', 'name', 'Helios (Slovenia)'),
(43816, 36771, 'no_lang_code', 'name', 'BCS Tecnologia (Brazil)'),
(43817, 36772, 'en', 'name', 'Norwegian Seafood Council'),
(43818, 36773, 'no_lang_code', 'name', 'Scan4news (Norway)'),
(43819, 36774, 'en', 'name', 'Institute for Civilization and Culture'),
(43820, 36775, 'no_lang_code', 'name', 'Klar Tale'),
(43821, 36776, 'no', 'name', 'SĆørlandet Boligbyggelag'),
(43822, 36777, 'no_lang_code', 'name', 'Ektimo (Slovenia)'),
(43823, 36778, 'no_lang_code', 'name', 'Tecplas Indústria e Comércio (Brazil)'),
(43824, 36779, 'en', 'name', 'Campbellford Memorial Hospital'),
(43825, 36780, 'no_lang_code', 'name', 'Mine Master (Poland)'),
(43826, 36781, 'no_lang_code', 'name', 'Hansen Protection (Norway)'),
(43827, 36782, 'fi', 'name', 'Salla'),
(43828, 36783, 'en', 'name', 'Gaochun People''s Hospital'),
(43829, 36784, 'no_lang_code', 'name', 'Multicorpos Engenharia (Brazil)'),
(43830, 36785, 'en', 'name', 'Los Angeles Valley College'),
(43831, 36786, 'en', 'name', 'Praesterno Foundation'),
(43832, 36787, 'no_lang_code', 'name', 'Altech (Brazil)'),
(43833, 36788, 'no', 'name', 'Shell i Norge'),
(43834, 36788, 'no_lang_code', 'name', 'Shell (Norway)'),
(43835, 36789, 'no_lang_code', 'name', 'Eurofins (Brazil)'),
(43836, 36790, 'no_lang_code', 'name', 'Electromagnetic Geoservices (Norway)'),
(43837, 36791, 'en', 'name', 'Hoima Hospital'),
(43838, 36792, 'en', 'name', 'Hordaland County Council'),
(43839, 36793, 'no_lang_code', 'name', 'Alimetrics (Finland)'),
(43840, 36794, 'en', 'name', 'Islamic Azad University of Ahar');
INSERT INTO `ror_settings` VALUES
(43841, 36794, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد اهر'),
(43842, 36795, 'en', 'name', 'Thomas Embling Hospital'),
(43843, 36796, 'en', 'name', 'Institute for Symbolic analysis and Development of Information Technologies'),
(43844, 36797, 'en', 'name', 'Norwegian Medical Association'),
(43845, 36798, 'no_lang_code', 'name', 'Vocalize (Brazil)'),
(43846, 36799, 'en', 'name', 'Mission Hospital'),
(43847, 36800, 'pt', 'name', 'Secretaria da JustiƧa e da Defesa da Cidadania'),
(43848, 36801, 'no_lang_code', 'name', 'Hystorsys (Norway)'),
(43849, 36802, 'en', 'name', 'St. Joseph Dental College'),
(43850, 36803, 'no_lang_code', 'name', 'Visitech (Norway)'),
(43851, 36804, 'en', 'name', 'Chaohu Hospital of Anhui Medical University'),
(43852, 36805, 'no_lang_code', 'name', 'Amedia (Norway)'),
(43853, 36806, 'fr', 'name', 'Centre des Sciences de MontrƩal'),
(43854, 36807, 'no_lang_code', 'name', 'SPPT Pesquisas Tecnológicas (Brazil)'),
(43855, 36808, 'en', 'name', 'Columbia Basin College'),
(43856, 36809, 'no_lang_code', 'name', 'Interon (Norway)'),
(43857, 36810, 'no_lang_code', 'name', 'Biosergen (Norway)'),
(43858, 36811, 'no_lang_code', 'name', 'Sensoft Automação (Brazil)'),
(43859, 36812, 'no_lang_code', 'name', 'Expro (Norway)'),
(43860, 36813, 'en', 'name', 'Chedoke Hospital'),
(43861, 36814, 'en', 'name', 'Oregon State Hospital'),
(43862, 36815, 'de', 'name', 'Max-Planck-Institut für Ausländisches und Internationales Privatrecht'),
(43863, 36815, 'en', 'name', 'Max Planck Institute for Comparative and International Private Law'),
(43864, 36816, 'en', 'name', 'County Governor of Nordland'),
(43865, 36817, 'no_lang_code', 'name', 'Clearwater Group (Norway)'),
(43866, 36818, 'en', 'name', 'Muhammad Nawaz Sharif University of Engineering & Technology'),
(43867, 36819, 'no_lang_code', 'name', 'Statkraft (Norway)'),
(43868, 36820, 'en', 'name', 'Africa International University'),
(43869, 36821, 'no_lang_code', 'name', 'WINGS ICT Solutions (Greece)'),
(43870, 36822, 'no_lang_code', 'name', 'Energy Dynamics (Norway)'),
(43871, 36823, 'en', 'name', 'Semicolon'),
(43872, 36824, 'en', 'name', 'Mevlana University Hospital'),
(43873, 36825, 'en', 'name', 'Norwegian Forest Owners Association'),
(43874, 36826, 'en', 'name', 'Somerville Hospital'),
(43875, 36827, 'de', 'name', 'Staatsarchiv Bremen'),
(43876, 36828, 'no_lang_code', 'name', 'BodĆø Science Park (Norway)'),
(43877, 36829, 'no_lang_code', 'name', 'Albatros Aluminium (Poland)'),
(43878, 36830, 'fr', 'name', 'UniversitƩ des Sciences, des Techniques et des Technologies de Bamako'),
(43879, 36831, 'no_lang_code', 'name', 'Invel (Brazil)'),
(43880, 36832, 'en', 'name', 'Cosumnes River College'),
(43881, 36833, 'de', 'name', 'Institut für Sächsische Geschichte und Volkskunde'),
(43882, 36834, 'no_lang_code', 'name', 'Prediktor (Norway)'),
(43883, 36835, 'sl', 'name', 'FrančiŔkanski Družinski InŔtitut'),
(43884, 36836, 'no_lang_code', 'name', 'Bangkok Christian Hospital'),
(43885, 36836, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøąø£ąøøąø‡ą¹€ąø—ąøžąø„ąø£ąø“ąøŖą¹€ąø•ąøµąø¢ąø™'),
(43886, 36837, 'no_lang_code', 'name', 'IPS (Brazil)'),
(43887, 36838, 'en', 'name', 'GMC Hospital'),
(43888, 36839, 'no_lang_code', 'name', 'LPKF Group (Slovenia)'),
(43889, 36840, 'no_lang_code', 'name', 'Securenok (Norway)'),
(43890, 36841, 'no_lang_code', 'name', 'AGX Tecnologia (Brazil)'),
(43891, 36842, 'no_lang_code', 'name', 'Tidal Sails (Norway)'),
(43892, 36843, 'en', 'name', 'Guigang City People''s Hospital'),
(43893, 36844, 'no_lang_code', 'name', 'Biogrid (Norway)'),
(43894, 36845, 'en', 'name', 'KjeĆøy Research & Education Center, Trading Post and Fishing Village'),
(43895, 36846, 'no_lang_code', 'name', 'Novitech (Slovakia)'),
(43896, 36847, 'no_lang_code', 'name', 'Seamless (Norway)'),
(43897, 36848, 'no_lang_code', 'name', 'Versor Inovação Tecnológica (Brazil)'),
(43898, 36849, 'no_lang_code', 'name', 'Salt Sea & Limno Technology'),
(43899, 36850, 'no', 'name', 'Norsk Trevare'),
(43900, 36851, 'pt', 'name', 'Associação Brasileira de InformÔtica'),
(43901, 36852, 'no_lang_code', 'name', 'Camelback (Brazil)'),
(43902, 36853, 'en', 'name', 'Buskerud County Municipality'),
(43903, 36854, 'no_lang_code', 'name', 'Budopex (Poland)'),
(43904, 36855, 'en', 'name', 'Tana Municipality'),
(43905, 36856, 'de', 'name', 'Institut für Sozialforschung und Sozialwirtschaft'),
(43906, 36857, 'en', 'name', 'Hyogo University'),
(43907, 36857, 'ja', 'name', '兵庫大学'),
(43908, 36858, 'no_lang_code', 'name', 'ESU-Services (Switzerland)'),
(43909, 36859, 'en', 'name', 'St. Cloud Hospital'),
(43910, 36860, 'de', 'name', 'Helmholtz-Institut Mainz'),
(43911, 36860, 'en', 'name', 'Helmholtz Institute Mainz'),
(43912, 36861, 'pt', 'name', 'Sociedade Brasileira de GenƩtica'),
(43913, 36862, 'en', 'name', 'UPMC Presbyterian'),
(43914, 36863, 'no_lang_code', 'name', 'Agder Energi (Norway)'),
(43915, 36864, 'no_lang_code', 'name', 'Alten (Italy)'),
(43916, 36865, 'en', 'name', 'Villa Maria Hospital'),
(43917, 36866, 'de', 'name', 'Klinikum Weiden'),
(43918, 36867, 'en', 'name', 'Martin Luther King, Jr. Community Hospital'),
(43919, 36868, 'no_lang_code', 'name', 'Harald KrogsƦter (Norway)'),
(43920, 36869, 'en', 'name', 'Robina Hospital'),
(43921, 36870, 'de', 'name', 'Friedrich-Ebert-Krankenhaus'),
(43922, 36871, 'en', 'name', 'Brisbane School of Theology, Crossway College'),
(43923, 36872, 'en', 'name', 'Brigham Young University Hawaii, Brigham Young University–Hawaii'),
(43924, 36873, 'no_lang_code', 'name', 'GTM Mobil (Poland)'),
(43925, 36874, 'en', 'name', 'Lewisham College, Lewisham Southwark College'),
(43926, 36875, 'en', 'name', 'President''s Emergency Plan for AIDS Relief'),
(43927, 36876, 'no_lang_code', 'name', 'Elop (Norway)'),
(43928, 36877, 'no_lang_code', 'name', 'Clorovale Diamantes (Brazil)'),
(43929, 36878, 'no_lang_code', 'name', 'Csub (Norway)'),
(43930, 36879, 'no_lang_code', 'name', 'Frontier Hospital'),
(43931, 36880, 'en', 'name', 'Limbe Provincial Hospital'),
(43932, 36881, 'no_lang_code', 'name', 'BEWi (Norway)'),
(43933, 36882, 'en', 'name', 'Small and Medium Enterprises Development Organization'),
(43934, 36883, 'no_lang_code', 'name', 'Gazprombank'),
(43935, 36884, 'en', 'name', 'Łukasiewicz Research Network - Automotive Industry Institute'),
(43936, 36884, 'pl', 'name', 'Sieć Badawcza Łukasiewicz – Przemysłowy Instytut Motoryzacji'),
(43937, 36885, 'no_lang_code', 'name', 'EY Technologies (United States)'),
(43938, 36886, 'tr', 'name', 'Suluova Devlet Hastanesi'),
(43939, 36887, 'en', 'name', 'Second Hospital of Nanchang'),
(43940, 36888, 'no_lang_code', 'name', 'Pedmo (Poland)'),
(43941, 36889, 'no_lang_code', 'name', 'Norboat (Norway)'),
(43942, 36890, 'de', 'name', 'Frankfurter Goethe Haus – Freies Deutsches Hochstift'),
(43943, 36891, 'tr', 'name', 'Yunus Emre Hastanesi'),
(43944, 36892, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ŲØŲŗŲÆŲ§ŲÆ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŁŠŲ© الجامعة'),
(43945, 36892, 'en', 'name', 'Baghdad College of Economic Sciences University'),
(43946, 36893, 'no_lang_code', 'name', 'Zhoushan Hospital'),
(43947, 36894, 'en', 'name', 'Asbury Theological Seminary'),
(43948, 36895, 'no_lang_code', 'name', 'PPM Robotics (Norway)'),
(43949, 36896, 'no_lang_code', 'name', 'Proeletronic (Brazil)'),
(43950, 36897, 'no', 'name', 'Modum Bad – Gordon Johnsens stiftelse'),
(43951, 36898, 'no_lang_code', 'name', 'Retura (Norway)'),
(43952, 36899, 'de', 'name', 'Fraunhofer-Institut für Werkzeugmaschinen und Umformtechnik'),
(43953, 36899, 'en', 'name', 'Fraunhofer Institute for Machine Tools and Forming Technology'),
(43954, 36900, 'no_lang_code', 'name', 'Playax Internet (Brazil)'),
(43955, 36901, 'no_lang_code', 'name', 'Halify (Norway)'),
(43956, 36902, 'pt', 'name', 'Fundação de Rotarianos de São Paulo'),
(43957, 36903, 'en', 'name', 'Women of Color Breast Cancer Survivors'' Support Project'),
(43958, 36904, 'no_lang_code', 'name', 'NavSys (Norway)'),
(43959, 36905, 'no_lang_code', 'name', 'SeaSide (Norway)'),
(43960, 36906, 'en', 'name', 'Los Angeles Trade Technical College'),
(43961, 36906, 'es', 'name', 'Universidad Comunitaria Vocacional–TĆ©cnica de Los Ɓngeles'),
(43962, 36907, 'no_lang_code', 'name', 'Novelda (Norway)'),
(43963, 36908, 'en', 'name', 'Rygge Municipality'),
(43964, 36909, 'en', 'name', 'College of West Anglia'),
(43965, 36910, 'no_lang_code', 'name', 'Mextra (Brazil)'),
(43966, 36911, 'no_lang_code', 'name', 'Anod-arc (Brazil)'),
(43967, 36911, 'pt', 'name', 'Anod-Arc ComƩrcio e ServiƧos'),
(43968, 36912, 'no_lang_code', 'name', 'Melbu Systems (Norway)'),
(43969, 36913, 'no_lang_code', 'name', 'Troms Kraft (Norway)'),
(43970, 36914, 'no_lang_code', 'name', 'Nordic wildfish (Norway)'),
(43971, 36915, 'no_lang_code', 'name', 'EAB Engineering (Norway)'),
(43972, 36916, 'no_lang_code', 'name', 'Chemyunion (Brazil)'),
(43973, 36917, 'no', 'name', 'Eidskog Kommune'),
(43974, 36918, 'en', 'name', 'Georgia Military College'),
(43975, 36919, 'no_lang_code', 'name', 'Flexit (Norway)'),
(43976, 36920, 'no_lang_code', 'name', 'Fortis Malar Hospital'),
(43977, 36921, 'no_lang_code', 'name', 'Menon Business Economics (Norway)'),
(43978, 36922, 'en', 'name', 'Queanbeyan District Hospital'),
(43979, 36923, 'no_lang_code', 'name', 'SpinChip Diagnostics (Norway)'),
(43980, 36924, 'no_lang_code', 'name', 'Iskra (Slovenia)'),
(43981, 36925, 'en', 'name', 'Indian School of Business'),
(43982, 36925, 'hi', 'name', 'इंऔियन ą¤øą„ą¤•ą„‚ą¤² ऑफ ą¤¬ą¤æą¤œą¤Øą„‡ą¤ø'),
(43983, 36925, 'kn', 'name', 'ą²‡ą²‚ą²”ą²æą²Æą²Øą³ ą²øą³ą²•ą³‚ą²²ą³ ą²†ą²«ą³ ą²¬ą²æą²øą²æą²Øą³†ą²øą³'),
(43984, 36925, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°øą±ą°•ą±‚ą°²ą± ą°†ą°«ą± ą°¬ą°æą°œą°æą°Øą±†ą°øą±'),
(43985, 36926, 'en', 'name', 'Australian College of Applied Psychology'),
(43986, 36927, 'en', 'name', 'General Hospital of Drama'),
(43987, 36928, 'en', 'name', 'Orthopaedic Hospital Valdoltra'),
(43988, 36929, 'en', 'name', 'Mariakani Cottage Hospital'),
(43989, 36930, 'no_lang_code', 'name', 'Numerola (Finland)'),
(43990, 36931, 'no_lang_code', 'name', 'Research Management (Norway)'),
(43991, 36932, 'en', 'name', 'Peace Harbor Hospital'),
(43992, 36933, 'no_lang_code', 'name', 'Balter Medical (Norway)'),
(43993, 36934, 'no_lang_code', 'name', 'FiReCo (Norway)'),
(43994, 36935, 'en', 'name', 'St. John''s Rehab Hospital'),
(43995, 36936, 'no', 'name', 'Solskjerming'),
(43996, 36937, 'no_lang_code', 'name', 'Fabriscale Technologies (Norway)'),
(43997, 36938, 'no_lang_code', 'name', 'Bergen TeknologioverfĆøring (Norway)'),
(43998, 36939, 'no_lang_code', 'name', 'Radionor Communications (Norway)'),
(43999, 36940, 'fr', 'name', 'Laboratoire des ProcƩdƩs en Milieux Granulaires Granulaires'),
(44000, 36941, 'pl', 'name', 'Centrum Medyczne Aurismed'),
(44001, 36942, 'de', 'name', 'Niedersächsisches Institut für frühkindliche Bildung und Entwicklung'),
(44002, 36943, 'en', 'name', 'Habitat for Humanity'),
(44003, 36944, 'no_lang_code', 'name', 'ReNorway (Norway)'),
(44004, 36945, 'no_lang_code', 'name', 'Meventus (Norway)'),
(44005, 36946, 'no_lang_code', 'name', 'Danaher (Norway)'),
(44006, 36947, 'pt', 'name', 'Processos - SoluƧƵes de Engenharia (Brazil)'),
(44007, 36948, 'en', 'name', 'Division of Civil, Mechanical & Manufacturing Innovation'),
(44008, 36949, 'no_lang_code', 'name', 'Morenot (Norway)'),
(44009, 36950, 'no_lang_code', 'name', 'Keysight Technologies (United States)'),
(44010, 36951, 'en', 'name', 'Grace Cottage Hospital'),
(44011, 36952, 'no_lang_code', 'name', 'Cetis (Slovenia)'),
(44012, 36953, 'no_lang_code', 'name', 'Pol-Nil (Poland)'),
(44013, 36954, 'no_lang_code', 'name', 'Zeracryl (Norway)'),
(44014, 36955, 'no_lang_code', 'name', 'Fermavi (Brazil)'),
(44015, 36956, 'en', 'name', 'Southampton Children''s Hospital'),
(44016, 36957, 'en', 'name', 'Grande International Hospital'),
(44017, 36958, 'no', 'name', 'Norsk VirkesmƄling'),
(44018, 36959, 'en', 'name', 'Ministry of Communications'),
(44019, 36959, 'pt', 'name', 'MinistƩrio das ComunicaƧƵes'),
(44020, 36960, 'no_lang_code', 'name', 'Mengchao Hepatobiliary Hospital'),
(44021, 36961, 'en', 'name', 'Norwegian Universities and Colleges Admission Service'),
(44022, 36962, 'no_lang_code', 'name', 'E Plug (Norway)'),
(44023, 36963, 'no_lang_code', 'name', 'Savo (Norway)'),
(44024, 36964, 'ar', 'name', 'مستؓفى الناصرة Ų§.Ł….Ł….Ų³'),
(44025, 36964, 'en', 'name', 'Nazareth Hospital EMMS'),
(44026, 36965, 'pt', 'name', 'Fundação Educacional D. André Arcoverde'),
(44027, 36966, 'no_lang_code', 'name', 'Electrical Subsea and Drilling (Norway)'),
(44028, 36967, 'en', 'name', 'SBE Office of Multidisciplinary Activities'),
(44029, 36968, 'no_lang_code', 'name', 'Novo Mel (Brazil)'),
(44030, 36969, 'en', 'name', 'Aeris Futuro Foundation'),
(44031, 36970, 'en', 'name', 'International American University'),
(44032, 36971, 'de', 'name', 'Klassik Stiftung Weimar'),
(44033, 36972, 'no_lang_code', 'name', 'Polarkonsult (Norway)'),
(44034, 36973, 'no_lang_code', 'name', 'CO2-Norway (Norway)'),
(44035, 36974, 'en', 'name', 'Matany Hospital'),
(44036, 36975, 'en', 'name', 'Rebecca Sealy Hospital'),
(44037, 36976, 'no_lang_code', 'name', 'Iskra ZaŔčite (Slovenia)'),
(44038, 36977, 'en', 'name', 'Mackinnon Memorial Hospital'),
(44039, 36978, 'en', 'name', 'Cumberland County College'),
(44040, 36979, 'en', 'name', 'Network Learning Lab'),
(44041, 36980, 'no_lang_code', 'name', 'Wojas (Poland)'),
(44042, 36981, 'no', 'name', '3T Helse (Norway)'),
(44043, 36982, 'en', 'name', 'Wuxi Fourth People''s Hospital'),
(44044, 36983, 'en', 'name', 'Shandong Provincial Hospital'),
(44045, 36983, 'zh', 'name', 'å±±äøœēœē«‹åŒ»é™¢'),
(44046, 36984, 'no_lang_code', 'name', 'Bayer (Norway)'),
(44047, 36985, 'en', 'name', 'Addis Continental Institute of Public Health'),
(44048, 36986, 'en', 'name', 'Naggalama Hospital'),
(44049, 36987, 'en', 'name', 'Angelina College'),
(44050, 36988, 'en', 'name', 'Norwegian Kennel Club'),
(44051, 36989, 'no_lang_code', 'name', 'Waddan Systems (United States)'),
(44052, 36990, 'en', 'name', 'Kilgore College'),
(44053, 36991, 'no_lang_code', 'name', 'Konjekt (Norway)'),
(44054, 36992, 'en', 'name', 'International Association for Comparative Research on Leukemia and Related Diseases'),
(44055, 36993, 'en', 'name', 'Norwegian Center of Expertise'),
(44056, 36994, 'no_lang_code', 'name', 'Breeze (Norway)'),
(44057, 36995, 'de', 'name', 'Praxisklinik für Orthopädie, Unfall- und Neurochirurgie'),
(44058, 36996, 'no_lang_code', 'name', 'Alfsen og Gunderson (Norway)'),
(44059, 36997, 'no_lang_code', 'name', 'Sonitor Technologies (Norway)'),
(44060, 36998, 'en', 'name', 'Kensington College of Business'),
(44061, 36999, 'no_lang_code', 'name', 'Thema (Brazil)'),
(44062, 37000, 'en', 'name', 'Martha''s Vineyard Hospital'),
(44063, 37001, 'en', 'name', 'P.Z. Meyer Hospital'),
(44064, 37002, 'no_lang_code', 'name', 'Rofi (Norway)'),
(44065, 37003, 'en', 'name', 'Bergen Science Center'),
(44066, 37004, 'en', 'name', 'Association of Independent Colleges and Universities in Massachusetts'),
(44067, 37005, 'en', 'name', 'South Bruce Grey Health Centre'),
(44068, 37006, 'en', 'name', 'Stomatological Hospital of Chongqing Medical University'),
(44069, 37007, 'no_lang_code', 'name', 'Orochem Technologies (United States)'),
(44070, 37008, 'en', 'name', 'Shanghai Advanced Research Institute'),
(44071, 37008, 'zh', 'name', 'äøŠęµ·é«˜ē­‰ē ”ē©¶é™¢'),
(44072, 37009, 'no_lang_code', 'name', 'Geograf (Norway)'),
(44073, 37010, 'no_lang_code', 'name', 'Gezhouba Explosive (China)'),
(44074, 37011, 'de', 'name', 'Curt-Engelhorn-Zentrum ArchƤometrie'),
(44075, 37011, 'en', 'name', 'Curt Engelhorn Centre Archaeometry'),
(44076, 37012, 'en', 'name', 'Miami Valley Hospital South'),
(44077, 37013, 'no_lang_code', 'name', 'Maritim Food (Norway)'),
(44078, 37014, 'no_lang_code', 'name', 'Techfilter (Brazil)'),
(44079, 37015, 'en', 'name', 'Changchun Obstetrics and Gynecology Hospital'),
(44080, 37016, 'en', 'name', 'Durango Institute of Technology'),
(44081, 37016, 'es', 'name', 'Instituto Tecnológico de Durango'),
(44082, 37017, 'ms', 'name', 'Hospital Seberang Jaya'),
(44083, 37018, 'no_lang_code', 'name', 'Interwell (Norway)'),
(44084, 37019, 'de', 'name', 'Kantonsspital Münsterlingen'),
(44085, 37020, 'no_lang_code', 'name', 'Engemap (Brazil)'),
(44086, 37021, 'tr', 'name', 'Beytepe Asker Hastanesi'),
(44087, 37022, 'en', 'name', 'Witold Stefański Institute of Parasitology'),
(44088, 37022, 'pl', 'name', 'Witolda Stefańskiego Instytut Parazytologii PAN'),
(44089, 37023, 'de', 'name', 'StƤdelsches Kunstinstitut und StƤdtische Galerie'),
(44090, 37023, 'en', 'name', 'StƤdel Museum'),
(44091, 37024, 'no_lang_code', 'name', 'Hershey (United States)'),
(44092, 37025, 'no_lang_code', 'name', 'Netvmi (Brazil)'),
(44093, 37026, 'en', 'name', 'University B.T. & Evening College'),
(44094, 37027, 'no_lang_code', 'name', 'BNW-Energy (Norway)'),
(44095, 37028, 'en', 'name', 'St Patrick''s Hospital'),
(44096, 37029, 'de', 'name', 'Kooperationsstelle EU der Wissenschaftsorganisationen'),
(44097, 37029, 'en', 'name', 'European Liaison Office of the German Research Organisations'),
(44098, 37030, 'no_lang_code', 'name', 'SalMar (Norway)'),
(44099, 37031, 'en', 'name', 'Council of Christian Hospitals'),
(44100, 37032, 'no_lang_code', 'name', 'Buchang Pharma (China)'),
(44101, 37033, 'no_lang_code', 'name', 'Humanwell Healthcare Group (China)'),
(44102, 37034, 'fr', 'name', 'Hopital de la Paix'),
(44103, 37034, 'no_lang_code', 'name', 'Al-Salam Hospital'),
(44104, 37035, 'en', 'name', 'Kansas City Kansas Community College'),
(44105, 37036, 'en', 'name', 'Forest Science and Research Institute'),
(44106, 37036, 'pt', 'name', 'Instituto de Pesquisas e Estudos Florestais'),
(44107, 37037, 'no_lang_code', 'name', 'NutraQ (Norway)'),
(44108, 37038, 'no_lang_code', 'name', 'Zakład Automatyki Przemysłowej (Poland)'),
(44109, 37039, 'no_lang_code', 'name', 'Intravision Group (Norway)'),
(44110, 37040, 'en', 'name', 'New Leaf Venture Partners'),
(44111, 37041, 'en', 'name', 'Agriculture Fisheries and Conservation Department, Agriculture, Fisheries and Conservation Department'),
(44112, 37041, 'zh', 'name', '漁農自然護理署'),
(44113, 37042, 'no_lang_code', 'name', 'Nokia (Norway)'),
(44114, 37043, 'no_lang_code', 'name', 'Mlinotest (Slovenia)'),
(44115, 37044, 'en', 'name', 'Institute of Applied Economic Research'),
(44116, 37044, 'pt', 'name', 'Instituto de Pesquisa EconƓmica Aplicada'),
(44117, 37045, 'no_lang_code', 'name', 'Capgemini (Norway)'),
(44118, 37046, 'no', 'name', 'Norsk Arkeologisk Selskap'),
(44119, 37047, 'no_lang_code', 'name', 'Compello (Norway)'),
(44120, 37048, 'no_lang_code', 'name', 'Scheme Lab (Brazil)'),
(44121, 37049, 'no_lang_code', 'name', 'Accert (Brazil)'),
(44122, 37050, 'en', 'name', 'TATI University College'),
(44123, 37050, 'ms', 'name', 'Kolej Universiti TATI'),
(44124, 37051, 'no_lang_code', 'name', 'Mundal Gruppen (Norway)'),
(44125, 37052, 'en', 'name', 'Employees'' State Insurance Model Hospital'),
(44126, 37053, 'no_lang_code', 'name', 'BergenshalvĆøens Kommunale Kraftselskap (Norway)'),
(44127, 37054, 'en', 'name', 'Torrance State Hospital'),
(44128, 37055, 'no_lang_code', 'name', 'Subsea Smart Solutions (Norway)'),
(44129, 37056, 'pt', 'name', 'Fundação Cesgranrio'),
(44130, 37057, 'no_lang_code', 'name', 'Medsonic (Cyprus)'),
(44131, 37058, 'en', 'name', 'South Tipperary General Hospital'),
(44132, 37058, 'ga', 'name', 'OspidƩal GinearƔlta Thiobraid Ɓrann Theas'),
(44133, 37059, 'no_lang_code', 'name', 'Trolltind (Norway)'),
(44134, 37060, 'fr', 'name', 'Institut de Transplantation Urologie en Nephrologie'),
(44135, 37061, 'no_lang_code', 'name', 'Brvant (Brazil)'),
(44136, 37062, 'no', 'name', 'Transparency International Norge'),
(44137, 37063, 'pt', 'name', 'Hospital Amaral Carvalho'),
(44138, 37064, 'en', 'name', 'Berkeley City College'),
(44139, 37065, 'no_lang_code', 'name', 'Ciech (Poland)'),
(44140, 37066, 'en', 'name', 'Nova Scotia Hospital'),
(44141, 37067, 'de', 'name', 'Kommission für Geschichte des Parlamentarismus und der politischen Parteien'),
(44142, 37068, 'no_lang_code', 'name', 'AgriOS (Brazil)'),
(44143, 37069, 'en', 'name', 'Georgetown Hospital'),
(44144, 37070, 'de', 'name', 'Heidelberger Akademie der Wissenschaften'),
(44145, 37070, 'en', 'name', 'Heidelberg Academy of Sciences and Humanities'),
(44146, 37071, 'no_lang_code', 'name', 'Syskon (Poland)'),
(44147, 37072, 'en', 'name', 'Barstow Community Hospital'),
(44148, 37073, 'en', 'name', 'Bryce Hospital'),
(44149, 37074, 'no_lang_code', 'name', 'Norwegian Biochemical (Norway)'),
(44150, 37075, 'en', 'name', 'National Hospital'),
(44151, 37076, 'en', 'name', 'Central Baptist College'),
(44152, 37077, 'en', 'name', 'Division of Social and Economic Sciences'),
(44153, 37078, 'no_lang_code', 'name', 'Wilh. Wilhelmsen (Norway)'),
(44154, 37079, 'no_lang_code', 'name', 'Planktonic (Norway)'),
(44155, 37080, 'no_lang_code', 'name', 'Hƶegh LNG (Norway)'),
(44156, 37081, 'no_lang_code', 'name', 'Kjeldstad (Norway)'),
(44157, 37082, 'de', 'name', 'Sankt-Antonius-Hospital Eschweiler'),
(44158, 37083, 'no', 'name', 'Valdres Folkemuseum'),
(44159, 37084, 'no_lang_code', 'name', '2K Tools (Norway)'),
(44160, 37085, 'no_lang_code', 'name', 'Laerdal (Norway)'),
(44161, 37086, 'no_lang_code', 'name', 'Umrao Hospital'),
(44162, 37087, 'en', 'name', 'Naomi House and Jacksplace'),
(44163, 37088, 'en', 'name', 'Nansen Neuroscience Network'),
(44164, 37089, 'en', 'name', 'Purple Mountain Observatory'),
(44165, 37089, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē“«é‡‘å±±å¤©ę–‡å°'),
(44166, 37090, 'no_lang_code', 'name', 'Eyasys (Norway)'),
(44167, 37091, 'no_lang_code', 'name', 'ProduksjonsTeknologi (Norway)'),
(44168, 37092, 'no_lang_code', 'name', 'Norwegian State Railways (Norway)'),
(44169, 37093, 'no_lang_code', 'name', 'St. Raphael''s Hospital'),
(44170, 37094, 'no', 'name', 'Teknova'),
(44171, 37095, 'es', 'name', 'Hospital Civil de Guadalajara'),
(44172, 37096, 'no_lang_code', 'name', 'Industrial Control Design (Norway)'),
(44173, 37097, 'no_lang_code', 'name', 'BioLab Innovative Research Technologies (Poland)'),
(44174, 37098, 'pt', 'name', 'Centro UniversitƔrio Eurƭpedes de Marilia, Centro UniversitƔrio Eurƭpedes de Marƭlia'),
(44175, 37099, 'no_lang_code', 'name', 'Euromedik'),
(44176, 37100, 'en', 'name', 'Our Lady of Fatima Hospital'),
(44177, 37101, 'no_lang_code', 'name', 'AGR Group (Norway)'),
(44178, 37102, 'en', 'name', 'Ganta United Methodist Hospital'),
(44179, 37103, 'en', 'name', 'Taixing People''s Hospital'),
(44180, 37104, 'no_lang_code', 'name', 'Cubility (Norway)'),
(44181, 37105, 'pt', 'name', 'Forum Brasileiro de Segurança Pública'),
(44182, 37106, 'en', 'name', 'Front Range Community College'),
(44183, 37107, 'es', 'name', 'Hospital Regional Rancagua'),
(44184, 37108, 'no_lang_code', 'name', 'Yunnan Observatories'),
(44185, 37108, 'zh', 'name', 'äŗ‘å—å¤©ę–‡å°'),
(44186, 37109, 'de', 'name', 'Hegau-Bodensee-Klinikum Singen'),
(44187, 37110, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ المؤسس Ų¹ŲØŲÆ الله Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(44188, 37110, 'en', 'name', 'King Abdullah University Hospital'),
(44189, 37111, 'no_lang_code', 'name', 'Bama Gruppen (Norway)'),
(44190, 37112, 'no_lang_code', 'name', 'Fujian Tobacco Industry Limited Liability Company (China)'),
(44191, 37113, 'en', 'name', 'Appalachian Bible College'),
(44192, 37114, 'no_lang_code', 'name', 'Micropply (United Kingdom)'),
(44193, 37115, 'es', 'name', 'Hospital Vilardebó'),
(44194, 37116, 'no', 'name', 'TrĆøndelags Europakontor'),
(44195, 37117, 'no_lang_code', 'name', 'Ultrahaptics (United Kingdom)'),
(44196, 37118, 'en', 'name', 'Antara'),
(44197, 37119, 'no_lang_code', 'name', 'Kawamura Hospital'),
(44198, 37120, 'pt', 'name', 'Instituto Sócioambiental'),
(44199, 37121, 'no_lang_code', 'name', 'Kubara Lamina (Poland)'),
(44200, 37122, 'sl', 'name', 'Sicenter (Slovenia)'),
(44201, 37123, 'de', 'name', 'Die Akademie der Künste'),
(44202, 37123, 'en', 'name', 'Academy of Arts'),
(44203, 37124, 'no_lang_code', 'name', 'Ocean Visuals (Norway)'),
(44204, 37125, 'de', 'name', 'Germanisches Nationalmuseum'),
(44205, 37126, 'no_lang_code', 'name', 'Olympia Diagnostics (United States)'),
(44206, 37127, 'en', 'name', 'John Sealy Hospital'),
(44207, 37128, 'pt', 'name', 'Sociedade Brasileira de VƔcuo'),
(44208, 37129, 'en', 'name', 'Centegra Hospital McHenry'),
(44209, 37130, 'no_lang_code', 'name', 'VARD (Norway)'),
(44210, 37131, 'en', 'name', 'Broughton Hospital'),
(44211, 37132, 'en', 'name', 'Penticton Regional Hospital'),
(44212, 37133, 'no_lang_code', 'name', 'Abilia (Norway)'),
(44213, 37134, 'pt', 'name', 'Toledo Prudente Centro UniversitƔrio'),
(44214, 37135, 'en', 'name', 'Gracie Square Hospital'),
(44215, 37136, 'pt', 'name', 'Associação Brasileira de AnÔlise Térmica e Calorimetria'),
(44216, 37137, 'no_lang_code', 'name', 'Norwegian Group (Norway)'),
(44217, 37138, 'no_lang_code', 'name', 'Unior (Slovenia)'),
(44218, 37139, 'fr', 'name', 'CƩgep Marie-Victorin'),
(44219, 37140, 'en', 'name', 'Yemeni Jordanian University'),
(44220, 37141, 'en', 'name', 'Beijing Health Vocational College'),
(44221, 37142, 'en', 'name', 'National Museum of Art, Architecture and Design'),
(44222, 37142, 'no', 'name', 'Nasjonalmuseet'),
(44223, 37143, 'no_lang_code', 'name', 'Connect LNG (Norway)'),
(44224, 37144, 'en', 'name', 'Slovenian Institute of Quality and Metrology'),
(44225, 37145, 'no', 'name', 'Grid-Arendal'),
(44226, 37146, 'en', 'name', 'Calvary Wakefield Hospital'),
(44227, 37147, 'no_lang_code', 'name', 'Cinkarna (Slovenia)'),
(44228, 37148, 'no_lang_code', 'name', 'FEM Engineering (Norway)'),
(44229, 37149, 'en', 'name', 'National Archives Services of Norway'),
(44230, 37150, 'de', 'name', 'Alexander von Humboldt Institut für Internet und Gesellschaft'),
(44231, 37150, 'en', 'name', 'Alexander von Humboldt Institute for Internet and Society'),
(44232, 37151, 'no_lang_code', 'name', 'IGEA (Slovenia)'),
(44233, 37152, 'en', 'name', 'The First People''s Hospital of Changde'),
(44234, 37153, 'no_lang_code', 'name', 'Xeme Biopharma (United States)'),
(44235, 37154, 'nl', 'name', 'Accare'),
(44236, 37155, 'en', 'name', 'Lillehammer Municipality'),
(44237, 37156, 'en', 'name', 'College of Applied Sciences- Ibri'),
(44238, 37157, 'en', 'name', 'Sakarya Training and Research Hospital'),
(44239, 37157, 'tr', 'name', 'Sakarya Eğitim ve Araştırma Hastanesi'),
(44240, 37158, 'no_lang_code', 'name', 'BioBee (Israel)'),
(44241, 37159, 'en', 'name', 'Center for Selective C–H Functionalization'),
(44242, 37160, 'de', 'name', 'Ingenieure für das Bauwesen'),
(44243, 37161, 'en', 'name', 'Chesterfield Royal Hospital NHS Foundation Trust'),
(44244, 37162, 'en', 'name', 'AnMed Health Women''s & Children''s Hospital'),
(44245, 37163, 'no_lang_code', 'name', 'Cambi (Norway)'),
(44246, 37164, 'no_lang_code', 'name', 'Metrel (Slovenia)'),
(44247, 37165, 'no_lang_code', 'name', 'Porolon (Norway)'),
(44248, 37166, 'no_lang_code', 'name', 'Robotic Drilling Systems (Norway)'),
(44249, 37167, 'de', 'name', 'Focke Museum'),
(44250, 37168, 'no_lang_code', 'name', 'Tosama (Slovenia)'),
(44251, 37169, 'en', 'name', 'B.J. Vorster Hospital'),
(44252, 37170, 'en', 'name', 'Helderberg College'),
(44253, 37171, 'en', 'name', 'Centracare'),
(44254, 37172, 'no', 'name', 'GlƄmdal RegionrƄd'),
(44255, 37173, 'no_lang_code', 'name', 'AudioPlus (Norway)'),
(44256, 37174, 'no_lang_code', 'name', 'Veritas Life Sciences (Brazil)'),
(44257, 37175, 'no_lang_code', 'name', 'Sitma (Norway)'),
(44258, 37176, 'no_lang_code', 'name', 'Labena (Slovenia)'),
(44259, 37177, 'de', 'name', 'Felix Platter Spital, Felix Platter-Hospital'),
(44260, 37178, 'en', 'name', 'Wuhan Botanical Garden'),
(44261, 37178, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę­¦ę±‰ę¤ē‰©å›­'),
(44262, 37179, 'en', 'name', 'Ugie Hospital'),
(44263, 37180, 'en', 'name', 'Olean General Hospital'),
(44264, 37181, 'en', 'name', 'Institute of Security Technologies MORATEX'),
(44265, 37182, 'pt', 'name', 'Sociedade Brasileira de Microbiologia'),
(44266, 37183, 'no_lang_code', 'name', 'Cotec (Brazil)'),
(44267, 37184, 'en', 'name', 'Inha Technical College'),
(44268, 37185, 'no_lang_code', 'name', 'Mg Soft (Slovenia)'),
(44269, 37186, 'en', 'name', 'Bradford College, England'),
(44270, 37187, 'en', 'name', 'Utah Geological Survey'),
(44271, 37188, 'no_lang_code', 'name', 'Rotar (Brazil)'),
(44272, 37189, 'en', 'name', 'Telemark Research Institute'),
(44273, 37190, 'no_lang_code', 'name', 'Medecell (Brazil)'),
(44274, 37191, 'fr', 'name', 'CƩgep du Vieux MontrƩal'),
(44275, 37192, 'en', 'name', 'Blackhawk Technical College'),
(44276, 37193, 'no_lang_code', 'name', 'Military Aviation Works No. 1 (Poland)'),
(44277, 37194, 'no_lang_code', 'name', 'Surface (Brazil)'),
(44278, 37195, 'no_lang_code', 'name', 'Akaer (Brazil)'),
(44279, 37196, 'en', 'name', 'Norwegian Herring Sales Association'),
(44280, 37196, 'no', 'name', 'Norges Sildesalgslag'),
(44281, 37197, 'ro', 'name', 'Spitalul Clinic Dr. C. I. Parhon'),
(44282, 37198, 'no', 'name', 'Praktisk-Teologiske Seminar'),
(44283, 37199, 'en', 'name', 'Mayo Hospital'),
(44284, 37200, 'en', 'name', 'Joint Base San Antonio'),
(44285, 37201, 'de', 'name', 'Deutsches Institut für Kautschuktechnologie'),
(44286, 37201, 'en', 'name', 'German Institute of Rubber Technology'),
(44287, 37202, 'en', 'name', 'Islamic Azad University of Farahan'),
(44288, 37203, 'no_lang_code', 'name', 'Innovatech Telecom (Brazil)'),
(44289, 37204, 'en', 'name', 'Directorate for Cultural Heritage'),
(44290, 37204, 'no', 'name', 'Riksantikvaren'),
(44291, 37205, 'no_lang_code', 'name', 'Innova (Norway)'),
(44292, 37206, 'no_lang_code', 'name', 'Vaxxinova (Norway)'),
(44293, 37207, 'pt', 'name', 'Abutua Tecnologia'),
(44294, 37208, 'no_lang_code', 'name', 'Veplas (Slovenia)'),
(44295, 37209, 'de', 'name', 'Landesamt für Denkmalpflege Hessen'),
(44296, 37210, 'no_lang_code', 'name', 'DNA Consult GenƩtica e Biotecnologia (Brazil)'),
(44297, 37211, 'en', 'name', 'Peninsula HealthCare Connection'),
(44298, 37212, 'no', 'name', 'Fredrikstad Kommune'),
(44299, 37213, 'en', 'name', 'Islamic University of Science and Technology'),
(44300, 37214, 'no_lang_code', 'name', 'Norwegian Electro Ceramics (Norway)'),
(44301, 37215, 'en', 'name', 'Presbyterian University and Theological Seminary'),
(44302, 37216, 'no_lang_code', 'name', 'Quimlab (Brazil)'),
(44303, 37217, 'no_lang_code', 'name', 'TV 2 (Norway)'),
(44304, 37218, 'no_lang_code', 'name', 'Plastal (Norway)'),
(44305, 37219, 'no_lang_code', 'name', 'Head Energy (Norway)'),
(44306, 37220, 'no_lang_code', 'name', 'siRNAsense (Norway)'),
(44307, 37221, 'en', 'name', 'Institute of Medical Technology and Equipment'),
(44308, 37222, 'de', 'name', 'Landesamt für Archäologie Sachsen'),
(44309, 37222, 'en', 'name', 'Archaeological Heritage Office in Saxony'),
(44310, 37223, 'no_lang_code', 'name', 'MjĆøsen Skog (Norway)'),
(44311, 37224, 'no_lang_code', 'name', 'Anteo (Norway)'),
(44312, 37225, 'no_lang_code', 'name', 'Ferrx (Norway)'),
(44313, 37226, 'no_lang_code', 'name', 'Fleximedical (Brazil)'),
(44314, 37227, 'bn', 'name', 'ą¦øą§‡ą¦Øą§‡ą¦Ÿ অফ ą¦¶ą§ą¦°ą§€ą¦°ą¦¾ą¦®ą¦Ŗą§ą¦° ą¦•ą¦²ą§‡ą¦œ'),
(44315, 37227, 'en', 'name', 'Senate of Serampore College'),
(44316, 37227, 'ne', 'name', 'ą¤øą„€ą¤Øą„‡ą¤Ÿ अफ ą¤øą„‡ą¤°ą¤¾ą¤®ą¤Ŗą„‹ą¤° ą¤•ą¤²ą„‡ą¤œ (ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ)'),
(44317, 37228, 'en', 'name', 'Entomological Society of Brazil'),
(44318, 37228, 'pt', 'name', 'Sociedade Brasileira de Entomologia'),
(44319, 37229, 'pt', 'name', 'Sociedade Brasileira de Econometria'),
(44320, 37230, 'en', 'name', 'North China Institute of Aerospace Engineering'),
(44321, 37231, 'no_lang_code', 'name', 'DARS (Slovenia)'),
(44322, 37232, 'no_lang_code', 'name', 'Matsutani America (United States)'),
(44323, 37233, 'de', 'name', 'Max-Planck-Institut für Ethnologische Forschung'),
(44324, 37233, 'en', 'name', 'Max Planck Institute for Social Anthropology'),
(44325, 37234, 'no_lang_code', 'name', 'Otivio (Norway)'),
(44326, 37235, 'no', 'name', 'Stavanger Kommune'),
(44327, 37236, 'no_lang_code', 'name', 'Miros (Norway)'),
(44328, 37237, 'en', 'name', 'Islamic Azad University of Parand'),
(44329, 37237, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد پرند'),
(44330, 37238, 'no_lang_code', 'name', 'DeltaCO2 (Brazil)'),
(44331, 37239, 'fr', 'name', 'Centre Hospitalier de Gonesse'),
(44332, 37240, 'en', 'name', 'Maclear Hospital'),
(44333, 37241, 'no', 'name', 'Oslo Kommune'),
(44334, 37242, 'no_lang_code', 'name', 'Vigmostad & BjĆørke (Norway)'),
(44335, 37243, 'en', 'name', 'Strathcona Community Hospital'),
(44336, 37244, 'pt', 'name', 'Fundação Apinco de Ciência e Tecnologia Avícolas'),
(44337, 37245, 'de', 'name', 'Stadtarchiv Worms'),
(44338, 37246, 'en', 'name', 'Highland Community College - Illinois'),
(44339, 37247, 'en', 'name', 'EUR-Oceans Consortium'),
(44340, 37248, 'no', 'name', 'Norsk Friluftsliv'),
(44341, 37249, 'no_lang_code', 'name', 'Resman (Norway)'),
(44342, 37250, 'no_lang_code', 'name', 'Co-action Publishing (Norway)'),
(44343, 37251, 'no', 'name', 'Bergen Kommune ByrƄdsavd for Helse og Omsorg'),
(44344, 37252, 'pt', 'name', 'Fórum de Entidades Nacionais da Psicologia Brasileira'),
(44345, 37253, 'no_lang_code', 'name', 'ICT Group (Norway)'),
(44346, 37254, 'no_lang_code', 'name', 'FlexEnable (United Kingdom)'),
(44347, 37255, 'en', 'name', 'Institute of Agricultural and Food Biotechnology'),
(44348, 37256, 'no_lang_code', 'name', 'Aeroalcool Tecnologia (Brazil)'),
(44349, 37257, 'no_lang_code', 'name', 'Wavefront (United States)'),
(44350, 37258, 'en', 'name', 'Social and Environmental Entrepreneurs'),
(44351, 37259, 'pl', 'name', 'Instytut Archeologii i Etnologii'),
(44352, 37260, 'en', 'name', 'Norwegian Chemical Society'),
(44353, 37260, 'no', 'name', 'Norsk Kjemisk Selskap'),
(44354, 37261, 'no_lang_code', 'name', 'Yerwada Mental Hospital'),
(44355, 37262, 'en', 'name', 'Quebec Statistical Institute'),
(44356, 37262, 'fr', 'name', 'Institut de la Statistique du QuƩbec'),
(44357, 37263, 'it', 'name', 'Ospedale di Latisana'),
(44358, 37264, 'no_lang_code', 'name', 'Norwegian Hull Club (Norway)'),
(44359, 37265, 'en', 'name', 'Great Lakes Christian College'),
(44360, 37266, 'no_lang_code', 'name', 'Reemsys (Norway)'),
(44361, 37267, 'pt', 'name', 'Academia Nacional de Cuidados Paliativos'),
(44362, 37268, 'no_lang_code', 'name', 'Lein Applied Diagnostics (United Kingdom)'),
(44363, 37269, 'no_lang_code', 'name', 'Health Biomed (China)'),
(44364, 37270, 'en', 'name', 'University College for Women'),
(44365, 37271, 'no', 'name', 'Tresenteret'),
(44366, 37272, 'no_lang_code', 'name', 'Trollhetta (Norway)'),
(44367, 37273, 'en', 'name', 'Islamia College University'),
(44368, 37273, 'ur', 'name', 'Ų§Ų³Ł„Ų§Ł…ŪŒŪ کالج ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(44369, 37274, 'no_lang_code', 'name', 'Fronter (Norway)'),
(44370, 37275, 'en', 'name', 'Mount Ayliff Hospital'),
(44371, 37276, 'no_lang_code', 'name', 'PatoGen (Norway)'),
(44372, 37277, 'en', 'name', 'Brazilian Society of Speech'),
(44373, 37277, 'pt', 'name', 'Sociedade Brasileira de Fonoaudiologia'),
(44374, 37278, 'no_lang_code', 'name', 'Voca (Norway)'),
(44375, 37279, 'en', 'name', 'Testing and Certification Laboratories'),
(44376, 37280, 'no_lang_code', 'name', 'IMPETUS Afea (Norway)'),
(44377, 37281, 'no_lang_code', 'name', 'E-CO Energi (Norway)'),
(44378, 37282, 'en', 'name', 'Preston University'),
(44379, 37283, 'pt', 'name', 'Instituto Paulista de Ensino e Pesquisa'),
(44380, 37284, 'en', 'name', 'Iloilo Mission Hospital'),
(44381, 37285, 'en', 'name', 'Saint Thomas Hospital'),
(44382, 37285, 'es', 'name', 'Hospital Santo TomƔs'),
(44383, 37286, 'no_lang_code', 'name', 'Pinus TKI (Slovenia)'),
(44384, 37287, 'no_lang_code', 'name', 'Innoventus SĆør (Norway)'),
(44385, 37288, 'no', 'name', 'Skedsmo kommune'),
(44386, 37289, 'en', 'name', 'Kincardine Community Hospital'),
(44387, 37290, 'no_lang_code', 'name', 'Viris (Slovenia)'),
(44388, 37291, 'no_lang_code', 'name', 'Promar (Poland)'),
(44389, 37292, 'no_lang_code', 'name', 'TRUMPF (Poland)'),
(44390, 37293, 'en', 'name', 'Moroto Hospital'),
(44391, 37294, 'de', 'name', 'Geisteswissenschaftliche Zentren Berlin'),
(44392, 37295, 'en', 'name', 'Oslo Vest Rotary Klubb'),
(44393, 37296, 'no_lang_code', 'name', 'Petroleumsoft (Norway)'),
(44394, 37297, 'es', 'name', 'Hospital La Inmaculada'),
(44395, 37298, 'no_lang_code', 'name', 'Robotnorge (Norway)'),
(44396, 37299, 'en', 'name', 'Apollo KH Hospital'),
(44397, 37300, 'no_lang_code', 'name', 'Tafalofefe Hospital'),
(44398, 37301, 'no_lang_code', 'name', 'Alta (Poland)'),
(44399, 37302, 'no_lang_code', 'name', 'Brook Lyndhurst (United Kingdom)'),
(44400, 37303, 'no_lang_code', 'name', 'Yanhee Hospital'),
(44401, 37303, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø¢ąø±ąø™ąø®ąøµ'),
(44402, 37304, 'no', 'name', 'Norges Blindeforbund'),
(44403, 37305, 'no', 'name', 'AndĆøya Space Center'),
(44404, 37306, 'no_lang_code', 'name', 'Rimfrost (Norway)'),
(44405, 37307, 'no_lang_code', 'name', 'Baidya and Banskota Hospital'),
(44406, 37308, 'fi', 'name', 'Kainun Institutti'),
(44407, 37309, 'en', 'name', 'Breast Cancer Now'),
(44408, 37310, 'no_lang_code', 'name', 'Delitek (Norway)'),
(44409, 37311, 'no_lang_code', 'name', 'Engineering Systems (United States)'),
(44410, 37312, 'no_lang_code', 'name', 'Dora Nginza Hospital'),
(44411, 37313, 'en', 'name', 'Aizawl Adventist Hospital'),
(44412, 37314, 'no_lang_code', 'name', 'OneCo (Norway)'),
(44413, 37315, 'en', 'name', 'Hawaii Tokai International College'),
(44414, 37316, 'en', 'name', 'Norwegian Business and Industry Security Council'),
(44415, 37317, 'en', 'name', 'International Center for Tropical Agriculture'),
(44416, 37318, 'no_lang_code', 'name', 'Inspirator (Norway)'),
(44417, 37319, 'no_lang_code', 'name', 'Oxford Instruments (Germany)'),
(44418, 37320, 'no_lang_code', 'name', 'Buddy Electric (Norway)'),
(44419, 37321, 'no_lang_code', 'name', 'Abyssus Marine Services (Norway)'),
(44420, 37322, 'en', 'name', 'Kaunas County Public Library'),
(44421, 37323, 'en', 'name', 'Finnish Institute of International Affairs'),
(44422, 37323, 'fi', 'name', 'Ulkopoliittinen instituutti'),
(44423, 37323, 'sv', 'name', 'Utrikespolitiska institutet'),
(44424, 37324, 'no_lang_code', 'name', 'National Oilwell Varco (Norway)'),
(44425, 37325, 'fr', 'name', 'BibliothĆØque Nationale du Royaume du Maroc'),
(44426, 37326, 'en', 'name', 'Finnish Youth Research Society'),
(44427, 37327, 'en', 'name', 'General Theological Seminary'),
(44428, 37328, 'pt', 'name', 'Associação Paulista para o Desenvolvimento da Medicina'),
(44429, 37329, 'en', 'name', 'St. Francis Hospital Nkokonjeru'),
(44430, 37330, 'no_lang_code', 'name', 'Norwegian Subsea (Norway)'),
(44431, 37331, 'no_lang_code', 'name', 'Sparx Group (Japan)'),
(44432, 37332, 'en', 'name', 'Centegra Hospital Woodstock'),
(44433, 37333, 'en', 'name', 'College of Medicine & Sagore Dutta Hospital'),
(44434, 37334, 'en', 'name', 'Housatonic Community College'),
(44435, 37335, 'sl', 'name', 'Ekoremediacijski TehnoloŔki Center'),
(44436, 37336, 'de', 'name', 'Europäische Forschungsvereinigung für Umwelt und Gesundheit im Transportsektor e.V.'),
(44437, 37336, 'en', 'name', 'European Research Group on Environment and Health in the Transport Sector'),
(44438, 37337, 'en', 'name', 'Crisis Training'),
(44439, 37338, 'en', 'name', 'Energy Farm'),
(44440, 37339, 'no_lang_code', 'name', 'Fortum (Norway)'),
(44441, 37340, 'no_lang_code', 'name', 'DrƤger (Norway)'),
(44442, 37341, 'no_lang_code', 'name', 'Thinfilm (Norway)'),
(44443, 37342, 'no_lang_code', 'name', 'Hagen (Norway)'),
(44444, 37343, 'no_lang_code', 'name', 'Microbeads (Norway)'),
(44445, 37344, 'no', 'name', 'Boligbygg Oslo KF'),
(44446, 37345, 'no_lang_code', 'name', 'Tronrud Engineering (Norway)'),
(44447, 37346, 'en', 'name', 'Kiwoko Hospital'),
(44448, 37347, 'no_lang_code', 'name', 'NGC Aerospace (Canada)'),
(44449, 37348, 'no_lang_code', 'name', 'Medgal (Poland)'),
(44450, 37349, 'en', 'name', 'Division of Computer and Network Systems'),
(44451, 37350, 'da', 'name', 'Hou Maritime IdrƦtsefterskole'),
(44452, 37351, 'en', 'name', 'Dartmouth General Hospital'),
(44453, 37352, 'no_lang_code', 'name', 'Jotun (Norway)'),
(44454, 37353, 'no_lang_code', 'name', 'Induktio (Slovenia)'),
(44455, 37354, 'en', 'name', 'Fort Portal Hospital'),
(44456, 37355, 'no_lang_code', 'name', 'Skogselskapet i Oppland (Norway)'),
(44457, 37356, 'en', 'name', 'Quebec Television Broadcasting Corporation'),
(44458, 37356, 'fr', 'name', 'TƩlƩ-QuƩbec'),
(44459, 37357, 'en', 'name', 'Allied Hospital'),
(44460, 37358, 'no_lang_code', 'name', 'Athena Seafoods (Norway)'),
(44461, 37359, 'de', 'name', 'PƤdagogische Hochschule Freiburg'),
(44462, 37359, 'en', 'name', 'University of Education Freiburg'),
(44463, 37360, 'no_lang_code', 'name', 'Recaltech (Brazil)'),
(44464, 37361, 'en', 'name', 'Blue Ridge Community College'),
(44465, 37362, 'no_lang_code', 'name', 'Siporex (Brazil)'),
(44466, 37363, 'de', 'name', 'Minerva Stiftung'),
(44467, 37364, 'no_lang_code', 'name', 'Natural Products & Technologies (Brazil)'),
(44468, 37365, 'no_lang_code', 'name', 'Molteno Hospital'),
(44469, 37366, 'no_lang_code', 'name', 'Light Emergency Stretcher Systems (Norway)'),
(44470, 37367, 'en', 'name', 'Cooper Hospital'),
(44471, 37368, 'en', 'name', 'Xishuangbanna Tropical Botanical Garden'),
(44472, 37368, 'zh', 'name', 'č„æåŒē‰ˆēŗ³ēƒ­åø¦ę¤ē‰©å›­'),
(44473, 37369, 'en', 'name', 'Alabama College of Osteopathic Medicine'),
(44474, 37370, 'no_lang_code', 'name', 'Effect Ships International (Norway)'),
(44475, 37371, 'en', 'name', 'Banner Lassen Medical Center'),
(44476, 37372, 'no_lang_code', 'name', 'Nanocenter'),
(44477, 37373, 'no_lang_code', 'name', 'Dod RobƓs Investidores (Brazil)'),
(44478, 37374, 'no_lang_code', 'name', 'Brusell Communications (Norway)'),
(44479, 37375, 'no_lang_code', 'name', 'HyBond (Norway)'),
(44480, 37376, 'en', 'name', 'United Spinal Association'),
(44481, 37377, 'en', 'name', 'Admas University'),
(44482, 37378, 'en', 'name', 'USA Boccia'),
(44483, 37379, 'en', 'name', 'Butler Community College'),
(44484, 37380, 'no_lang_code', 'name', 'Nordly Holding (Norway)'),
(44485, 37381, 'no_lang_code', 'name', 'Geodetski Zavod Celje (Slovenia)'),
(44486, 37382, 'no_lang_code', 'name', 'Designit (Norway)'),
(44487, 37383, 'en', 'name', 'Alamance Community College'),
(44488, 37384, 'no_lang_code', 'name', 'Suma Indústria e Comércio (Brasil)'),
(44489, 37385, 'en', 'name', 'Woosong University'),
(44490, 37385, 'ko', 'name', 'ģš°ģ†”ėŒ€ķ•™źµ'),
(44491, 37386, 'no_lang_code', 'name', 'Rocksource (Norway)'),
(44492, 37387, 'pt', 'name', 'Sociedade Brasileira de Cirurgia Cardiovascular'),
(44493, 37388, 'en', 'name', 'East Bardera Mothers and Children''s Hospital'),
(44494, 37389, 'en', 'name', 'St Petersburg Psychiatric Hospital of Specialized Type with Intense Observation'),
(44495, 37389, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń ŠæŃŠøŃ…ŠøŠ°Ń‚Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° специализированного типа с интенсивным Š½Š°Š±Š»ŃŽŠ“ением'),
(44496, 37390, 'en', 'name', 'Independence Community College'),
(44497, 37391, 'no_lang_code', 'name', 'WuXiPRA (China)'),
(44498, 37392, 'en', 'name', 'Cedar Valley College'),
(44499, 37393, 'no_lang_code', 'name', 'Omega Consult (Slovenia)'),
(44500, 37394, 'pt', 'name', 'Associação Nacional de Pesquisa e Pós-Graduação em Turismo'),
(44501, 37395, 'no', 'name', 'Norsk Folkemuseum'),
(44502, 37396, 'pt', 'name', 'Centro de Estudos Educação e Sociedade'),
(44503, 37397, 'no_lang_code', 'name', 'DWG Arquitetura e Sistemas (Brazil)'),
(44504, 37398, 'no_lang_code', 'name', 'Biota Guard (Norway)'),
(44505, 37399, 'no_lang_code', 'name', 'Provista (Norway)'),
(44506, 37400, 'no_lang_code', 'name', 'Nettverk Norge (Norway)'),
(44507, 37401, 'no_lang_code', 'name', 'Esotech (Slovenia)'),
(44508, 37402, 'no_lang_code', 'name', 'Adigo (Norway)'),
(44509, 37403, 'fr', 'name', 'KƩroul'),
(44510, 37404, 'no_lang_code', 'name', 'Eudora Energia (Brazil)'),
(44511, 37405, 'no_lang_code', 'name', 'SimSea (Norway)'),
(44512, 37406, 'fr', 'name', 'Centre National des Sciences et Technologies NuclƩaires'),
(44513, 37407, 'en', 'name', 'Canada Excellence Research Chairs'),
(44514, 37407, 'fr', 'name', 'Chaires d’Excellence en Recherche du Canada'),
(44515, 37408, 'en', 'name', 'Fayetteville Technical Community College'),
(44516, 37409, 'en', 'name', 'Haydom Lutheran Hospital'),
(44517, 37410, 'en', 'name', 'St. Anne Mercy Hospital'),
(44518, 37411, 'de', 'name', 'Institut für Sozialforschung und Gesellschaftspolitik'),
(44519, 37411, 'en', 'name', 'ISG Institute for Social Research'),
(44520, 37412, 'no_lang_code', 'name', 'Seatower (Norway)'),
(44521, 37413, 'en', 'name', 'Berjaya University College of Hospitality'),
(44522, 37414, 'no_lang_code', 'name', 'TraceTracker (Norway)'),
(44523, 37415, 'en', 'name', 'St. Clair College'),
(44524, 37416, 'no_lang_code', 'name', 'Medcore (Poland)'),
(44525, 37417, 'no_lang_code', 'name', 'Go Mobile (Norway)'),
(44526, 37418, 'no_lang_code', 'name', 'Weifa (Norway)'),
(44527, 37419, 'en', 'name', 'Shaikh Zayed Medical College and Hospital'),
(44528, 37420, 'en', 'name', 'Rama University'),
(44529, 37421, 'no_lang_code', 'name', 'Deep Ocean Technology (Poland)'),
(44530, 37422, 'no_lang_code', 'name', 'Vestdavit (Norway)'),
(44531, 37423, 'pl', 'name', 'Centrum Medyczne iMed24'),
(44532, 37424, 'no_lang_code', 'name', 'Brady (Norway)'),
(44533, 37425, 'en', 'name', 'Military Communication Institute'),
(44534, 37426, 'no_lang_code', 'name', 'Jenox (Poland)'),
(44535, 37427, 'en', 'name', 'Kirklandside Hospital'),
(44536, 37428, 'no_lang_code', 'name', 'Idteq (Norway)'),
(44537, 37429, 'no_lang_code', 'name', 'Sima (Norway)'),
(44538, 37430, 'no_lang_code', 'name', 'FAS (Poland)'),
(44539, 37431, 'no_lang_code', 'name', 'Dr.Techn.Olav Olsen (Norway)'),
(44540, 37432, 'no_lang_code', 'name', 'MĆøreforsking (Norway)'),
(44541, 37433, 'no_lang_code', 'name', 'KOM Lux Fibras Ɠpticas (Brazil)'),
(44542, 37434, 'en', 'name', 'Priory Hospital Altrincham'),
(44543, 37435, 'no', 'name', 'ƅmot Kommune'),
(44544, 37436, 'no_lang_code', 'name', 'Ramboll (Norway)'),
(44545, 37437, 'no_lang_code', 'name', 'Pharmasum Therapeutics (Norway)'),
(44546, 37438, 'de', 'name', 'Bundesarchiv'),
(44547, 37438, 'en', 'name', 'German Federal Archives'),
(44548, 37439, 'en', 'name', 'Christchurch Clinical Studies Trust'),
(44549, 37440, 'en', 'name', 'Bon Secours Hospital Galway'),
(44550, 37441, 'de', 'name', 'Rudolfinerhaus Hospital'),
(44551, 37442, 'en', 'name', 'Braemar Hospital'),
(44552, 37443, 'en', 'name', 'Asia Oceania Geosciences Society'),
(44553, 37444, 'no_lang_code', 'name', 'Lerum (Norway)'),
(44554, 37445, 'de', 'name', 'Leibniz-Institut für Länderkunde'),
(44555, 37445, 'en', 'name', 'Leibniz Institute for Regional Geography'),
(44556, 37446, 'en', 'name', 'Panyu District Central Hospital'),
(44557, 37447, 'en', 'name', 'Council for Mental Health'),
(44558, 37448, 'de', 'name', 'Max-Planck-Institut zur Erforschung von Gemeinschaftsgütern'),
(44559, 37448, 'en', 'name', 'Max Planck Institute for Research on Collective Goods'),
(44560, 37449, 'no_lang_code', 'name', 'Incontrol (Brazil)'),
(44561, 37450, 'en', 'name', 'Xuzhou Children Hospital'),
(44562, 37451, 'en', 'name', 'Mathrusri Ramabai Ambedkar Dental College & Hospital'),
(44563, 37452, 'en', 'name', 'Via Christi Hospital'),
(44564, 37453, 'en', 'name', 'Etobicoke General Hospital'),
(44565, 37454, 'no_lang_code', 'name', 'Systherm (Poland)'),
(44566, 37455, 'no_lang_code', 'name', 'Egersund Group (Norway)'),
(44567, 37456, 'no_lang_code', 'name', 'Myhrene (Norway)'),
(44568, 37457, 'no_lang_code', 'name', 'Shenyang Institute of Computing Technology (China)'),
(44569, 37457, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę²ˆé˜³č®”ē®—ęŠ€ęœÆē ”ē©¶ę‰€'),
(44570, 37458, 'en', 'name', 'Luohe Medical College'),
(44571, 37459, 'en', 'name', 'Nyakibale Hospital'),
(44572, 37460, 'en', 'name', 'Japanese Society of Physiological Anthropology'),
(44573, 37461, 'en', 'name', 'Sultan Abdul Halim Hospital'),
(44574, 37461, 'ms', 'name', 'Hospital Sultan Abdul Halim'),
(44575, 37462, 'en', 'name', 'Katherine Hospital'),
(44576, 37463, 'en', 'name', 'Educational Research Institute'),
(44577, 37464, 'no_lang_code', 'name', 'Armatura (Poland)'),
(44578, 37465, 'no_lang_code', 'name', 'Tetra Tech (Brazil)'),
(44579, 37466, 'no_lang_code', 'name', 'Grenland Energy (Norway)'),
(44580, 37467, 'ja', 'name', 'åƒč‘‰åø‚ē«‹é’č‘‰ē—…é™¢'),
(44581, 37467, 'no_lang_code', 'name', 'Chiba Aoba Municipal Hospital'),
(44582, 37468, 'en', 'name', 'Booth University College'),
(44583, 37469, 'no_lang_code', 'name', 'Dordrecht Hospital'),
(44584, 37470, 'en', 'name', 'Charnock Hospital'),
(44585, 37471, 'pl', 'name', 'Wojewódzki Ośrodek Medycyny Pracy'),
(44586, 37472, 'no', 'name', 'Egede Instituttet'),
(44587, 37473, 'no_lang_code', 'name', 'PepsiCo (United Kingdom)'),
(44588, 37474, 'no_lang_code', 'name', 'Sigma (Poland)'),
(44589, 37475, 'de', 'name', 'Fraunhofer-Institut für Angewandte Polymerforschung'),
(44590, 37475, 'en', 'name', 'Fraunhofer Institute for Applied Polymer Research'),
(44591, 37476, 'no_lang_code', 'name', 'Intecmat (Brazil)'),
(44592, 37477, 'en', 'name', 'Asian Hospital and Medical Center'),
(44593, 37478, 'en', 'name', 'Royal Hospital Chelsea'),
(44594, 37479, 'de', 'name', 'Krankenhaus Oberndorf'),
(44595, 37480, 'no_lang_code', 'name', 'Holmens (Norway)'),
(44596, 37481, 'no_lang_code', 'name', 'Posten (Norway)'),
(44597, 37482, 'no_lang_code', 'name', 'BioNumerik (United States)'),
(44598, 37483, 'no', 'name', 'Drammen Kommune'),
(44599, 37484, 'pt', 'name', 'Associação Brasileira de Pesquisadores em História EconÓmica'),
(44600, 37485, 'no_lang_code', 'name', 'Optron MicromecĆ¢nica Ɠptica (Brazil)'),
(44601, 37486, 'no_lang_code', 'name', 'Kom Forlag (Norway)'),
(44602, 37487, 'en', 'name', 'International Tourism Institute'),
(44603, 37488, 'no_lang_code', 'name', 'Numedalsutvikling (Norway)'),
(44604, 37489, 'no_lang_code', 'name', 'Fobox (Norway)'),
(44605, 37490, 'en', 'name', 'Association of Local Colleges and Universities'),
(44606, 37491, 'no_lang_code', 'name', 'Synthos (Poland)'),
(44607, 37492, 'no_lang_code', 'name', 'Dínamo Automação Industrial (Brazil)'),
(44608, 37493, 'en', 'name', 'Butabika Hospital'),
(44609, 37494, 'no_lang_code', 'name', 'Kahoot (Norway)'),
(44610, 37495, 'no_lang_code', 'name', 'Seas Fabrikker (Norway)'),
(44611, 37496, 'en', 'name', 'Ashraff Memorial Hospital'),
(44612, 37497, 'en', 'name', 'Mindanao Sanitarium and Hospital College'),
(44613, 37498, 'en', 'name', 'Osawatomie State Hospital'),
(44614, 37499, 'en', 'name', 'Department of the Treasury'),
(44615, 37500, 'en', 'name', 'Box Hill Institute'),
(44616, 37501, 'en', 'name', 'Mother Hospital'),
(44617, 37502, 'no_lang_code', 'name', 'Dovre (Norway)'),
(44618, 37503, 'no_lang_code', 'name', 'Equacional (Brazil)'),
(44619, 37504, 'en', 'name', 'Sarah Network of Rehabilitation Hospitals'),
(44620, 37505, 'no_lang_code', 'name', 'ForzaSys (Norway)');
INSERT INTO `ror_settings` VALUES
(44621, 37506, 'no_lang_code', 'name', 'HOBAS (Poland)'),
(44622, 37507, 'en', 'name', 'Norristown State Hospital'),
(44623, 37508, 'no_lang_code', 'name', 'Ernst-B. Johansen (Norway)'),
(44624, 37509, 'no_lang_code', 'name', 'Sencer (Brazil)'),
(44625, 37510, 'no_lang_code', 'name', 'Tecam Laboratórios (Brazil)'),
(44626, 37511, 'en', 'name', 'Şanlıurfa Mehmet Akif İnan Education and Research Hospital'),
(44627, 37511, 'tr', 'name', 'Şanlıurfa Mehmet Akif İnan Eğitim ve Araştırma Hastanesi'),
(44628, 37512, 'en', 'name', 'Black Hawk College'),
(44629, 37513, 'pt', 'name', 'Secretaria de Saneamento e Recursos HƬdricos'),
(44630, 37514, 'en', 'name', 'Central Institute of Indian Languages'),
(44631, 37514, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ भाषा ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(44632, 37514, 'or', 'name', 'ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ą¬­ą¬¾ą¬°ą¬¤ą­€ą­Ÿ ଭାଷା ą¬Ŗą­ą¬°ą¬¤ą¬æą¬·ą­ą¬ ą¬¾ą¬Ø'),
(44633, 37514, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆŠą®“ą®æą®•ą®³ą®æą®©ąÆ ą®Øą®ŸąÆą®µą®£ąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(44634, 37515, 'no_lang_code', 'name', 'Excelchip (Brazil)'),
(44635, 37516, 'no_lang_code', 'name', 'Gibson Innovations (Belgium)'),
(44636, 37517, 'en', 'name', 'Denmar Specialist Psychiatric Hospital'),
(44637, 37518, 'no_lang_code', 'name', 'Aqua Energy Solutions (Norway)'),
(44638, 37519, 'no_lang_code', 'name', 'Meier & Giacaglia Medidores (Brazil)'),
(44639, 37520, 'no_lang_code', 'name', 'Sensovann (Norway)'),
(44640, 37521, 'no_lang_code', 'name', 'Personalis (United States)'),
(44641, 37522, 'en', 'name', 'Coalinga State Hospital'),
(44642, 37523, 'de', 'name', 'Bauernmuseum Bamberger Land'),
(44643, 37524, 'no_lang_code', 'name', 'Shandong Jiaotong Hospital'),
(44644, 37525, 'en', 'name', 'Annenberg Center for Health Sciences at Eisenhower'),
(44645, 37526, 'en', 'name', 'Services Hospital'),
(44646, 37526, 'ur', 'name', 'سروسز ہسپتال'),
(44647, 37527, 'de', 'name', 'Institut für Vogelforschung "Vogelwarte Helgolandā€œ'),
(44648, 37527, 'en', 'name', 'Institute of Avian Research'),
(44649, 37528, 'en', 'name', 'Shanghai Eighth People Hospital'),
(44650, 37529, 'no_lang_code', 'name', 'Commfides Norge (Norway)'),
(44651, 37530, 'en', 'name', 'Yancheng Third People''s Hospital'),
(44652, 37531, 'en', 'name', 'Oberlin Group'),
(44653, 37532, 'en', 'name', 'Ten Chen Hospital'),
(44654, 37533, 'en', 'name', 'Guangdong University of Petrochemical Technology'),
(44655, 37533, 'zh', 'name', 'å¹æäøœēŸ³ę²¹åŒ–å·„å­¦é™¢'),
(44656, 37534, 'en', 'name', 'Catawba Valley Community College'),
(44657, 37535, 'en', 'name', 'Tuality Forest Grove Hospital'),
(44658, 37536, 'en', 'name', 'Goulburn Base Hospital'),
(44659, 37537, 'en', 'name', 'Department of Health'),
(44660, 37537, 'zh', 'name', 'č”žē”Ÿē½²'),
(44661, 37538, 'en', 'name', 'Beijing Institute of Nanoenergy and Nanosystems'),
(44662, 37538, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŒ—äŗ¬ēŗ³ē±³čƒ½ęŗäøŽē³»ē»Ÿē ”ē©¶ę‰€'),
(44663, 37539, 'no_lang_code', 'name', 'Heads (Norway)'),
(44664, 37540, 'no_lang_code', 'name', 'Sdc Engenharia (Brazil)'),
(44665, 37541, 'en', 'name', 'Cooper Green Mercy Hospital'),
(44666, 37542, 'en', 'name', 'Indian Institute of Sugarcane Research'),
(44667, 37543, 'de', 'name', 'Marien Hospital Düsseldorf'),
(44668, 37544, 'en', 'name', 'Hainan General Hospital'),
(44669, 37544, 'zh', 'name', 'ęµ·å—ēœäŗŗę°‘åŒ»é™¢'),
(44670, 37545, 'en', 'name', 'St. Luke''s Hospital'),
(44671, 37546, 'no_lang_code', 'name', 'I-Sea (Norway)'),
(44672, 37547, 'fr', 'name', 'MusƩe du Fjord'),
(44673, 37548, 'de', 'name', 'Klinikum Wels-Grieskirchen'),
(44674, 37549, 'en', 'name', 'Ashfield Healthcare'),
(44675, 37550, 'en', 'name', 'Vinzenz Pallotti Hospital Bensberg'),
(44676, 37551, 'no_lang_code', 'name', 'Landis International (United States)'),
(44677, 37552, 'pl', 'name', 'Centrum Badań i Innowacji Pro-Akademia'),
(44678, 37553, 'no_lang_code', 'name', 'GridSky Software (Norway)'),
(44679, 37554, 'no_lang_code', 'name', 'HV Plast (Norway)'),
(44680, 37555, 'no_lang_code', 'name', 'Fiskeriforum Vest (Norway)'),
(44681, 37556, 'no_lang_code', 'name', 'Kings Bay (Norway)'),
(44682, 37557, 'no_lang_code', 'name', 'Store Norske (Norway)'),
(44683, 37558, 'no_lang_code', 'name', 'OmniTek (Brazil)'),
(44684, 37559, 'en', 'name', 'Lanka Hospitals'),
(44685, 37560, 'no_lang_code', 'name', 'Orchid Pharma (India)'),
(44686, 37561, 'no', 'name', 'Kunnskapssenter for Laks og VannmiljĆø'),
(44687, 37562, 'en', 'name', 'Tsuen Wan Adventist Hospital'),
(44688, 37563, 'en', 'name', 'Brighter Beginnings'),
(44689, 37564, 'no_lang_code', 'name', 'BCL Technologies (United States)'),
(44690, 37565, 'en', 'name', 'Cavan General Hospital'),
(44691, 37565, 'ga', 'name', 'OspidƩal GinearƔlta an ChabhƔin'),
(44692, 37566, 'en', 'name', 'Institute for High Technologies and Systems'),
(44693, 37567, 'no_lang_code', 'name', 'Polwax (Poland)'),
(44694, 37568, 'no_lang_code', 'name', 'GjĆøco (Norway)'),
(44695, 37569, 'en', 'name', 'Palms of Pasadena Hospital'),
(44696, 37570, 'en', 'name', 'Asia e University'),
(44697, 37571, 'no_lang_code', 'name', 'MHWirth (Norway)'),
(44698, 37572, 'no_lang_code', 'name', 'Infinita (Slovenia)'),
(44699, 37573, 'en', 'name', 'Doowon Technical University College'),
(44700, 37573, 'ko', 'name', 'ė‘ģ›ź³µź³¼ėŒ€ķ•™źµ'),
(44701, 37574, 'es', 'name', 'Hospital San Pedro'),
(44702, 37575, 'no_lang_code', 'name', 'MƄltidets (Norway)'),
(44703, 37576, 'no', 'name', 'Urban SjĆøfront'),
(44704, 37577, 'en', 'name', 'Institute of Rural Health'),
(44705, 37577, 'pl', 'name', 'Instytut Medycyny Wsi im. Witolda ChodÅŗki'),
(44706, 37578, 'en', 'name', 'Institute of Engineering Thermophysics'),
(44707, 37578, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å·„ēØ‹ēƒ­ē‰©ē†ē ”ē©¶ę‰€'),
(44708, 37579, 'en', 'name', 'Norwegian Bible Society'),
(44709, 37580, 'no_lang_code', 'name', 'Robert Bosch (Slovenia)'),
(44710, 37581, 'en', 'name', 'Mahak Hospital and Rehabilitation Complex'),
(44711, 37581, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł…Ų­Ś©'),
(44712, 37582, 'no', 'name', 'Aga Halibut'),
(44713, 37583, 'no_lang_code', 'name', 'Resonator (Norway)'),
(44714, 37584, 'no_lang_code', 'name', 'S.S. Gida Hospital'),
(44715, 37585, 'en', 'name', 'Norwegian Coastal Administration'),
(44716, 37586, 'en', 'name', 'Ashland Community Hospital'),
(44717, 37587, 'no_lang_code', 'name', 'Łódzki Regionalny Park Naukowo-Technologiczny (Poland)'),
(44718, 37588, 'no_lang_code', 'name', 'AsGa (Brazil)'),
(44719, 37589, 'en', 'name', 'Vision International University'),
(44720, 37590, 'en', 'name', 'Oswego Community Hospital'),
(44721, 37591, 'en', 'name', 'Hsing Wu University'),
(44722, 37591, 'zh', 'name', 'é†’å¾ē§‘ęŠ€å¤§å­ø'),
(44723, 37592, 'no_lang_code', 'name', 'KLRU-TV'),
(44724, 37593, 'en', 'name', 'Indian Institute of Vegetable Research'),
(44725, 37594, 'no_lang_code', 'name', 'Polprek (Poland)'),
(44726, 37595, 'en', 'name', 'Nishikawa Hospital'),
(44727, 37596, 'en', 'name', 'Gower College Swansea'),
(44728, 37597, 'no_lang_code', 'name', 'Nordlaks (Norway)'),
(44729, 37598, 'no_lang_code', 'name', 'Mountcrest University College'),
(44730, 37599, 'no_lang_code', 'name', 'Augmentium Pharma Consulting (Canada)'),
(44731, 37600, 'no_lang_code', 'name', 'Mission Hospital Durgapur'),
(44732, 37601, 'no_lang_code', 'name', 'ICR (Norway)'),
(44733, 37602, 'de', 'name', 'Fachhochschule Graubünden'),
(44734, 37602, 'en', 'name', 'University of Applied Sciences of the Grisons'),
(44735, 37603, 'en', 'name', 'Nsambya Hospital'),
(44736, 37604, 'de', 'name', 'Bayerische Staatssammlung für Paläontologie und Geologie'),
(44737, 37605, 'no_lang_code', 'name', 'Mouse Specifics (United States)'),
(44738, 37606, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ابن Ų³ŁŠŁ†Ų§'),
(44739, 37606, 'en', 'name', 'Ibn Sina National College for Medical Studies'),
(44740, 37607, 'no_lang_code', 'name', 'Imaging Technology Consulting (United States)'),
(44741, 37608, 'no_lang_code', 'name', 'Kyowa Hakko Kirin (Singapore)'),
(44742, 37609, 'en', 'name', 'Fourth Affiliated Hospital of Guangxi Medical University'),
(44743, 37610, 'en', 'name', 'Institute of Plant Protection'),
(44744, 37611, 'no_lang_code', 'name', 'Wojskowe Zakłady Inżynieryjne (Poland)'),
(44745, 37612, 'no_lang_code', 'name', 'WiSub (Norway)'),
(44746, 37613, 'en', 'name', 'University B.D.T College of Engineering'),
(44747, 37614, 'no_lang_code', 'name', 'AMS (Slovenia)'),
(44748, 37615, 'en', 'name', 'Institute for Hydraulic Research'),
(44749, 37616, 'no_lang_code', 'name', 'TeraRecon (United States)'),
(44750, 37617, 'en', 'name', 'Institute of Electrical Engineering'),
(44751, 37617, 'zh', 'name', '中国科学院电巄研究所'),
(44752, 37618, 'en', 'name', 'Leon Wiltse Memorial Hospital'),
(44753, 37618, 'ko', 'name', 'ģœŒģŠ¤źø°ė…ė³‘ģ›'),
(44754, 37619, 'de', 'name', 'Diakonissenkrankenhaus'),
(44755, 37620, 'no_lang_code', 'name', 'Bass (Norway)'),
(44756, 37621, 'pt', 'name', 'Associação Brasileira para a Proteção dos Alimentos'),
(44757, 37622, 'en', 'name', 'Kisiizi Hospital'),
(44758, 37623, 'no_lang_code', 'name', 'Koppert (Brazil)'),
(44759, 37624, 'pt', 'name', 'Secretaria de Desenvolvimento EconÓmico, Ciência, Tecnologia e Inovação'),
(44760, 37625, 'no', 'name', 'Akademika (Norway)'),
(44761, 37626, 'en', 'name', 'Blythedale Children''s Hospital'),
(44762, 37627, 'no_lang_code', 'name', 'D.A. Glass (Poland)'),
(44763, 37628, 'en', 'name', 'Montana State University System'),
(44764, 37629, 'no_lang_code', 'name', 'Total (Germany)'),
(44765, 37630, 'no_lang_code', 'name', 'Ulstein Group (Norway)'),
(44766, 37631, 'en', 'name', 'Institute of Psychology'),
(44767, 37631, 'pl', 'name', 'Instytut Psychologii Polska Akademia Nauk'),
(44768, 37632, 'no_lang_code', 'name', 'Science and Technology Corporation (Norway)'),
(44769, 37633, 'no_lang_code', 'name', 'Fluenta (Norway)'),
(44770, 37634, 'no_lang_code', 'name', 'Ecology Glass (Brazil)'),
(44771, 37635, 'no_lang_code', 'name', 'Moods of Norway (Norway)'),
(44772, 37636, 'de', 'name', 'Hanseatic Wirtschaftsarchiv, Stiftung Hanseatisches Wirtschaftsarchiv'),
(44773, 37637, 'no_lang_code', 'name', 'Shanda Games'),
(44774, 37638, 'pt', 'name', 'Centro UniversitÔrio Fundação Assis Gurgacz'),
(44775, 37639, 'en', 'name', 'Science of Learning Centers Program Coordinating Committee'),
(44776, 37640, 'no_lang_code', 'name', 'Nexus (Brazil)'),
(44777, 37641, 'en', 'name', 'Kazakh-Russian International University'),
(44778, 37642, 'no_lang_code', 'name', 'RMF Consultoria (Brazil)'),
(44779, 37643, 'no_lang_code', 'name', 'Lindum (Norway)'),
(44780, 37644, 'en', 'name', 'Community Hospital of Long Beach'),
(44781, 37645, 'it', 'name', 'Azienda Ospedaliero-Universitaria Cagliari'),
(44782, 37646, 'no_lang_code', 'name', 'Themag (Brazil)'),
(44783, 37647, 'en', 'name', 'Contra Costa College'),
(44784, 37648, 'no', 'name', 'LĆøvenskiold Fossum'),
(44785, 37649, 'no_lang_code', 'name', 'Omex (Norway)'),
(44786, 37650, 'no_lang_code', 'name', 'Ryjor (Brazil)'),
(44787, 37651, 'no_lang_code', 'name', 'Austevoll Seafood (Norway)'),
(44788, 37652, 'en', 'name', 'Bluegrass Community and Technical College'),
(44789, 37653, 'no_lang_code', 'name', 'DPR Engenharia (Brazil)'),
(44790, 37654, 'no_lang_code', 'name', 'MRE SoluƧƵes (Brazil)'),
(44791, 37655, 'no_lang_code', 'name', 'Huddlestock Capital (Norway)'),
(44792, 37656, 'no_lang_code', 'name', 'IMS Group (Norway)'),
(44793, 37657, 'no_lang_code', 'name', 'Amarin (United States)'),
(44794, 37658, 'en', 'name', 'Arua Regional Referral Hospital'),
(44795, 37659, 'en', 'name', 'Federal Communications Commission'),
(44796, 37659, 'es', 'name', 'Comisión Federal de Comunicaciones'),
(44797, 37660, 'no_lang_code', 'name', 'Sana Pharma Medical (Norway)'),
(44798, 37661, 'en', 'name', 'Academy of Music in Kraków'),
(44799, 37661, 'pl', 'name', 'Akademia Muzyczna w Krakowie'),
(44800, 37662, 'en', 'name', 'Ruihua Affiliated Hospital of Soochow University'),
(44801, 37663, 'en', 'name', 'Affiliated Hospital of Youjiang Medical University for Nationalities'),
(44802, 37664, 'no_lang_code', 'name', 'MKS Electronic Systems (Slovenia)'),
(44803, 37665, 'no', 'name', 'Kappabel'),
(44804, 37666, 'no_lang_code', 'name', 'Gardo General Hospital'),
(44805, 37667, 'de', 'name', 'Frobenius-Institut'),
(44806, 37667, 'en', 'name', 'Frobenius Institute for Research in Cultural Anthropology'),
(44807, 37668, 'de', 'name', 'Staatliches Museum für Naturkunde Karlsruhe'),
(44808, 37668, 'en', 'name', 'State Museum of Natural History Karlsruhe'),
(44809, 37669, 'no_lang_code', 'name', 'Orlen (Poland)'),
(44810, 37669, 'pl', 'name', 'Polski Koncern Naftowy Orlen'),
(44811, 37670, 'no_lang_code', 'name', 'Electric System & Laser Technology (Poland)'),
(44812, 37671, 'en', 'name', 'Noguchi Hospital'),
(44813, 37672, 'en', 'name', 'Norman Regional Hospital'),
(44814, 37673, 'fr', 'name', 'Service de Recherche et d''EXpertise en Transformation des Produits Forestiers'),
(44815, 37674, 'en', 'name', 'Elizabeth Donkin Hospital'),
(44816, 37675, 'no_lang_code', 'name', 'HĆørselslaben (Norway)'),
(44817, 37676, 'no_lang_code', 'name', 'Hexagon (Norway)'),
(44818, 37677, 'en', 'name', 'Shengli Oilfield Central Hospital'),
(44819, 37678, 'en', 'name', 'American School of Warsaw'),
(44820, 37679, 'pt', 'name', 'Centro de Estudos do Laboratório de Aptidão Física de São Caetano do Sul'),
(44821, 37680, 'en', 'name', 'Norwood Hospital'),
(44822, 37681, 'de', 'name', 'Sophien-und Hufeland Klinikum'),
(44823, 37682, 'de', 'name', 'Krankenhaus Lindenbrunn'),
(44824, 37683, 'en', 'name', 'The First People’s Hospital of Lianyungang'),
(44825, 37684, 'no_lang_code', 'name', 'Forget-Me-Not (Norway)'),
(44826, 37685, 'no_lang_code', 'name', 'IRSPIN (Slovenia)'),
(44827, 37686, 'no', 'name', 'Tinn kommune'),
(44828, 37687, 'no_lang_code', 'name', 'Det Norske Samlaget (Norway)'),
(44829, 37688, 'en', 'name', 'Atlanta Metropolitan College, Atlanta Metropolitan State College'),
(44830, 37689, 'en', 'name', 'Asian Development Bank'),
(44831, 37689, 'tl', 'name', 'Bangko sa Pagpapaunlad ng Asya'),
(44832, 37690, 'en', 'name', 'Leshan Normal University'),
(44833, 37690, 'zh', 'name', 'ä¹å±±åøˆčŒƒå­¦é™¢'),
(44834, 37691, 'en', 'name', 'Minto Ophthalmic Hospital'),
(44835, 37692, 'de', 'name', 'Klinikum Bielefeld'),
(44836, 37693, 'no_lang_code', 'name', 'Dat (Norway)'),
(44837, 37694, 'no_lang_code', 'name', 'Matczak Autonadwozia (Poland)'),
(44838, 37695, 'no_lang_code', 'name', 'M3 Helse'),
(44839, 37696, 'no', 'name', 'MƦre Landbruksskole'),
(44840, 37697, 'en', 'name', 'Inverurie Hospital'),
(44841, 37698, 'no_lang_code', 'name', 'Ko-Aks (Norway)'),
(44842, 37699, 'en', 'name', 'Tone Lise Academy'),
(44843, 37700, 'no_lang_code', 'name', 'TIC-LENS Laser Technologies (Slovenia)'),
(44844, 37701, 'no_lang_code', 'name', 'Mvisia (Brazil)'),
(44845, 37702, 'no', 'name', 'Fjell Kommune'),
(44846, 37703, 'pt', 'name', 'Faculdade de Agudos'),
(44847, 37704, 'no_lang_code', 'name', 'Norwegian Hydropower (Norway)'),
(44848, 37705, 'no_lang_code', 'name', 'Atkins (Norway)'),
(44849, 37706, 'en', 'name', 'Aberdeen Provincial Hospital'),
(44850, 37707, 'en', 'name', 'Hopkinsville Community College'),
(44851, 37708, 'no_lang_code', 'name', 'Benteler (Norway)'),
(44852, 37709, 'no_lang_code', 'name', 'AgromiljĆø (Norway)'),
(44853, 37710, 'no_lang_code', 'name', 'Tellippalai Hospital'),
(44854, 37711, 'en', 'name', 'Nelson Mandela Academic Hospital'),
(44855, 37712, 'no_lang_code', 'name', 'Ƙrsted (Norway)'),
(44856, 37713, 'no_lang_code', 'name', 'Valkenberg Hospital'),
(44857, 37714, 'en', 'name', 'Dupont Hospital'),
(44858, 37715, 'en', 'name', 'Little Flower Hospital & Research Centre'),
(44859, 37716, 'no_lang_code', 'name', 'AnaCon (Norway)'),
(44860, 37717, 'no_lang_code', 'name', 'Expology (Norway)'),
(44861, 37718, 'en', 'name', 'Saskatchewan Hospital'),
(44862, 37719, 'en', 'name', 'Munch Museum'),
(44863, 37720, 'no_lang_code', 'name', 'Metronik (Slovenia)'),
(44864, 37721, 'no_lang_code', 'name', 'Nextsys (Norway)'),
(44865, 37722, 'no_lang_code', 'name', 'BioMar (Norway)'),
(44866, 37723, 'en', 'name', 'Thai Nguyen National General Hospital'),
(44867, 37724, 'it', 'name', 'Fondazione UniversitĆ  Vita Cristiana'),
(44868, 37724, 'pt', 'name', 'Fundação UniversitÔria Vida Cristã'),
(44869, 37725, 'no_lang_code', 'name', 'Marine design (Norway)'),
(44870, 37726, 'en', 'name', 'Polish Wood Cluster'),
(44871, 37727, 'no_lang_code', 'name', 'eDrilling (Norway)'),
(44872, 37728, 'no_lang_code', 'name', 'HIPOT-RR (Slovenia)'),
(44873, 37729, 'en', 'name', 'Bestian Medical Center'),
(44874, 37730, 'it', 'name', 'Santissima TrinitĆ '),
(44875, 37731, 'en', 'name', 'Labmass Laboratory'),
(44876, 37732, 'en', 'name', 'Institute of Theoretical and Applied Informatics'),
(44877, 37732, 'pl', 'name', 'Instytut Informatyki Teoretycznej i Stosowanej Polskiej Akademii Nauk'),
(44878, 37733, 'de', 'name', 'Leibniz-Institut für Kristallzüchtung'),
(44879, 37733, 'en', 'name', 'Leibniz Institute for Crystal Growth'),
(44880, 37734, 'no_lang_code', 'name', 'Sheriff Film Company (Norway)'),
(44881, 37735, 'en', 'name', 'Bellona Foundation'),
(44882, 37736, 'en', 'name', 'LillestrĆøm Centre of Expertise'),
(44883, 37737, 'no_lang_code', 'name', 'Martje Venter Hospital'),
(44884, 37738, 'en', 'name', 'Yanbian University Hospital'),
(44885, 37739, 'ar', 'name', 'مستؓفى Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„ŲÆŁˆŁ„ŁŠ'),
(44886, 37739, 'en', 'name', 'International Hospital of Bahrain'),
(44887, 37740, 'en', 'name', 'Gratz College'),
(44888, 37741, 'pl', 'name', 'Centrum Cyfrowe Projekt'),
(44889, 37742, 'no_lang_code', 'name', 'Pro Barents (Norway)'),
(44890, 37743, 'en', 'name', 'Vavuniya General Hospital'),
(44891, 37744, 'no_lang_code', 'name', 'Fosbrasil (Brazil)'),
(44892, 37745, 'no_lang_code', 'name', 'Biopcycle (Brazil)'),
(44893, 37746, 'en', 'name', 'Mutolere Hospital'),
(44894, 37747, 'no_lang_code', 'name', 'Ineos (Norway)'),
(44895, 37748, 'no_lang_code', 'name', 'Spartacus Forlag (Norway)'),
(44896, 37749, 'de', 'name', 'Asklepios Klinik St. Georg'),
(44897, 37750, 'en', 'name', 'Office of Emerging Frontiers and Multidisciplinary Activities'),
(44898, 37751, 'no', 'name', 'Materialisten'),
(44899, 37752, 'en', 'name', 'Asia-Pacific Society for Computers in Education'),
(44900, 37753, 'en', 'name', 'Dominican House of Studies'),
(44901, 37754, 'en', 'name', 'Management Research Institute'),
(44902, 37755, 'no_lang_code', 'name', 'Adaptimmune (United Kingdom)'),
(44903, 37756, 'en', 'name', 'Dar es Salaam Institute of Technology'),
(44904, 37757, 'no_lang_code', 'name', 'C-NAV (Norway)'),
(44905, 37758, 'en', 'name', 'Fort Grey TB Hospital'),
(44906, 37759, 'en', 'name', 'Great Basin College'),
(44907, 37760, 'no_lang_code', 'name', 'RED Consulting (Norway)'),
(44908, 37761, 'no_lang_code', 'name', 'Eikonal do Brasil (Brazil)'),
(44909, 37762, 'en', 'name', 'University College of the North'),
(44910, 37762, 'fr', 'name', 'CollĆØge universitaire du nord'),
(44911, 37763, 'no_lang_code', 'name', 'Hyperthermics (Norway)'),
(44912, 37764, 'ja', 'name', 'ä½å‹ć‚“ćƒ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(44913, 37764, 'no_lang_code', 'name', 'Sumitomo Rubber Industries (Japan)'),
(44914, 37765, 'no_lang_code', 'name', 'Scanwatt (Norway)'),
(44915, 37766, 'pt', 'name', 'Secretaria Municipal de Desenvolvimento EconÓmico e Negócios de Turismo'),
(44916, 37767, 'no_lang_code', 'name', 'EMO Orodjarna (Slovenia)'),
(44917, 37768, 'en', 'name', 'Aga Khan Hospital, Kisumu'),
(44918, 37769, 'no_lang_code', 'name', 'Alpha Br Produtos QuĆ­micos (Brazil)'),
(44919, 37770, 'no_lang_code', 'name', 'Symphonical (Norway)'),
(44920, 37771, 'en', 'name', 'Blue Mountain Hospital'),
(44921, 37772, 'en', 'name', 'Energy Norway'),
(44922, 37773, 'en', 'name', 'Saskatoon City Hospital'),
(44923, 37774, 'no_lang_code', 'name', 'Corollarium (Brazil)'),
(44924, 37775, 'es', 'name', 'Hospital de Manises'),
(44925, 37776, 'no_lang_code', 'name', 'Cardiaccs (Norway)'),
(44926, 37777, 'en', 'name', 'St Francis Chronic Hospital'),
(44927, 37778, 'no_lang_code', 'name', 'Inventas (Norway)'),
(44928, 37779, 'no_lang_code', 'name', 'Reinertsen (Norway)'),
(44929, 37780, 'en', 'name', 'Prevention of Organ Failure'),
(44930, 37781, 'fr', 'name', 'Institut de Recherches en Technologies et Sciences pour le Vivant'),
(44931, 37782, 'no_lang_code', 'name', 'Defa (Norway)'),
(44932, 37783, 'en', 'name', 'Imperial Valley College'),
(44933, 37784, 'en', 'name', 'Central Texas College'),
(44934, 37785, 'no_lang_code', 'name', 'Kokilaben Dhirubhai Ambani Hospital'),
(44935, 37786, 'no_lang_code', 'name', 'SillaJen (United States)'),
(44936, 37787, 'en', 'name', 'City of Bristol College'),
(44937, 37788, 'no_lang_code', 'name', 'Optsensys (Brazil)'),
(44938, 37789, 'no_lang_code', 'name', 'Biopdi (Brazil)'),
(44939, 37790, 'en', 'name', 'Biratnagar Eye Hospital'),
(44940, 37791, 'en', 'name', 'Summa St. Thomas Hospital'),
(44941, 37792, 'en', 'name', 'Norwegian Maritime Authority'),
(44942, 37793, 'pl', 'name', 'Uniwersytecki Szpital Kliniczny w Olsztynie'),
(44943, 37794, 'no_lang_code', 'name', 'Helioenergia (Poland)'),
(44944, 37795, 'en', 'name', 'Anton Trstenjak Institute'),
(44945, 37796, 'pt', 'name', 'Secretaria do Meio Ambiente'),
(44946, 37797, 'en', 'name', 'Kabale Hospital'),
(44947, 37798, 'no_lang_code', 'name', 'Parker Maritime (Norway)'),
(44948, 37799, 'no_lang_code', 'name', 'Grupa Azoty (Poland)'),
(44949, 37800, 'no_lang_code', 'name', 'Devoteam (Norway)'),
(44950, 37801, 'en', 'name', 'Institute for developmental and strategic analysis'),
(44951, 37802, 'no', 'name', 'Norsif'),
(44952, 37803, 'en', 'name', 'Institute for Spatial Policies'),
(44953, 37803, 'sl', 'name', 'InŔtitut za politike prostora'),
(44954, 37804, 'no_lang_code', 'name', 'Medistem (Panama)'),
(44955, 37805, 'no_lang_code', 'name', 'Gether (Norway)'),
(44956, 37806, 'no_lang_code', 'name', 'Structum (Slovenia)'),
(44957, 37807, 'en', 'name', 'Pomerado Hospital'),
(44958, 37808, 'en', 'name', 'Łukasiewicz Research Network - Institute of Innovative Technologies EMAG'),
(44959, 37808, 'pl', 'name', 'Instytut Technik Innowacyjnych EMAG'),
(44960, 37809, 'en', 'name', 'London Bridge Hospital'),
(44961, 37810, 'en', 'name', 'Central University of Kashmir'),
(44962, 37810, 'hi', 'name', 'ą¤•ą¤¶ą„ą¤®ą„€ą¤° ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(44963, 37811, 'en', 'name', 'Manhattan Christian College'),
(44964, 37812, 'en', 'name', 'Westerly Hospital'),
(44965, 37813, 'pt', 'name', 'Conselho de reitores das Universidades Estaduais de SĆ£o Paulo'),
(44966, 37814, 'no', 'name', 'Troms Fylkeskommune'),
(44967, 37815, 'no_lang_code', 'name', 'Edtech Foundry (Norway)'),
(44968, 37816, 'no_lang_code', 'name', 'CLB Engenharia Consultiva (Brazil)'),
(44969, 37817, 'no_lang_code', 'name', 'Normex (Norway)'),
(44970, 37818, 'no', 'name', 'SĆørlandslisten'),
(44971, 37819, 'no', 'name', 'Wikimedia Norge'),
(44972, 37820, 'en', 'name', 'South Seminole Hospital'),
(44973, 37821, 'en', 'name', 'Finnish Society for Nutrition Research'),
(44974, 37822, 'de', 'name', 'Hochschule Neubrandenburg'),
(44975, 37822, 'en', 'name', 'Neubrandenburg University of Applied Sciences'),
(44976, 37823, 'en', 'name', 'Hutchinson Community College'),
(44977, 37824, 'pt', 'name', 'Sociedade Brasileira de Estudos de Cinema e Audiovisual'),
(44978, 37825, 'no_lang_code', 'name', 'Arcont (Slovenia)'),
(44979, 37826, 'pt', 'name', 'Associação Brasileira de Tratamentos de Superfície'),
(44980, 37827, 'de', 'name', 'Gottfried Wilhelm Leibniz Bibliothek'),
(44981, 37828, 'de', 'name', 'Ibero-Amerikanisches Institut'),
(44982, 37828, 'en', 'name', 'Ibero-American Institute'),
(44983, 37828, 'es', 'name', 'Instituto Ibero-Americano Patrimonio Cultural Prusiano'),
(44984, 37829, 'en', 'name', 'Tax Justice Network'),
(44985, 37830, 'no_lang_code', 'name', 'SuperZinco (Brazil)'),
(44986, 37831, 'no_lang_code', 'name', 'Acies Bio (Slovenia)'),
(44987, 37832, 'no_lang_code', 'name', 'Evangelical Presbyterian University College'),
(44988, 37833, 'en', 'name', 'Spring Valley Hospital'),
(44989, 37834, 'en', 'name', 'Laerdal Global Health'),
(44990, 37835, 'en', 'name', 'Orlov State University'),
(44991, 37836, 'en', 'name', 'Infectious Disease Models and Innovative Therapies'),
(44992, 37837, 'es', 'name', 'Hospital general de San Fernando, San Fernando General Hospital'),
(44993, 37838, 'de', 'name', 'Thüringisches Hauptstaatsarchiv Weimar'),
(44994, 37839, 'no_lang_code', 'name', 'Linus (Norway)'),
(44995, 37840, 'pt', 'name', 'Sociedade Brasileira de Biologia Celular'),
(44996, 37841, 'no_lang_code', 'name', 'CHR Cerâmica Técnica (Brazil)'),
(44997, 37842, 'no', 'name', 'Norsk LandbruksrƄdgiving'),
(44998, 37843, 'en', 'name', 'Southern University College'),
(44999, 37843, 'ms', 'name', 'NƔnfāng DƠxuƩ XuƩyuƠn'),
(45000, 37843, 'zh', 'name', 'å—ę–¹å¤§å­¦å­¦é™¢'),
(45001, 37844, 'no_lang_code', 'name', 'Smia Gjerdeprodukter (Norway)'),
(45002, 37845, 'no_lang_code', 'name', 'Hutton Energy (Poland)'),
(45003, 37846, 'no_lang_code', 'name', 'Velana Living (Slovenia)'),
(45004, 37847, 'no', 'name', 'Eyde-Nettverket'),
(45005, 37848, 'en', 'name', 'Wuhan National Laboratory for Optoelectronics'),
(45006, 37849, 'de', 'name', 'Evangelische Hochschule Ludwigsburg'),
(45007, 37850, 'en', 'name', 'Heart Life Hospital'),
(45008, 37850, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć‹ć‚Šć‚†ć—ä¼š'),
(45009, 37851, 'no_lang_code', 'name', 'BASF (Norway)'),
(45010, 37852, 'no_lang_code', 'name', 'Timm (Norway)'),
(45011, 37853, 'en', 'name', 'Quality Enhancement Research Initiative'),
(45012, 37854, 'no_lang_code', 'name', 'Torvald Klaveness (Norway)'),
(45013, 37855, 'no_lang_code', 'name', 'Domel (Slovenia)'),
(45014, 37856, 'no_lang_code', 'name', 'DBV Technologies (France)'),
(45015, 37857, 'en', 'name', 'Port of Spain General Hospital'),
(45016, 37857, 'es', 'name', 'Hospital general de Puerto EspaƱa'),
(45017, 37858, 'en', 'name', 'Rajarshee Chhatrapati Shahu Maharaj Government Medical College and CPR Hospital Kolhapur'),
(45018, 37859, 'no_lang_code', 'name', 'LerĆøy (Norway)'),
(45019, 37860, 'no_lang_code', 'name', 'Aquarius (Slovenia)'),
(45020, 37861, 'no_lang_code', 'name', 'Rotogine (Brazil)'),
(45021, 37862, 'no_lang_code', 'name', 'Massefabrikken'),
(45022, 37863, 'no_lang_code', 'name', 'Antares EletrƓnica (Brazil)'),
(45023, 37864, 'no_lang_code', 'name', 'Jomar (Norway)'),
(45024, 37865, 'de', 'name', 'Hochschule Albstadt-Sigmaringen'),
(45025, 37865, 'en', 'name', 'Albstadt-Sigmaringen University'),
(45026, 37866, 'en', 'name', 'Latin American Sepsis Institute'),
(45027, 37866, 'pt', 'name', 'Instituto Latino Americano da Sepse'),
(45028, 37867, 'en', 'name', 'Wilhelm Stahl Provincial Hospital'),
(45029, 37868, 'no_lang_code', 'name', 'Mitsubishi Corporation (Norway)'),
(45030, 37869, 'en', 'name', 'Bedford Provincial Hospital'),
(45031, 37870, 'no_lang_code', 'name', 'Alfa Laval (Norway)'),
(45032, 37871, 'en', 'name', 'St Cadoc''s Hospital'),
(45033, 37872, 'en', 'name', 'Orphanet'),
(45034, 37873, 'no_lang_code', 'name', 'OiW Process (Norway)'),
(45035, 37874, 'en', 'name', 'Florida Coastal School of Law'),
(45036, 37875, 'no_lang_code', 'name', 'Nawaloka Hospital'),
(45037, 37875, 'si', 'name', 'ą¶±ą·€ą¶½ą·ą¶š ą¶»ą·ą·„ą¶½'),
(45038, 37876, 'en', 'name', 'Lake Superior College'),
(45039, 37877, 'no_lang_code', 'name', 'Supra Elco (Poland)'),
(45040, 37878, 'no', 'name', 'Oppland Fylkeskommune'),
(45041, 37879, 'en', 'name', 'Yunnan Forestry Vocational and Technical College'),
(45042, 37880, 'no_lang_code', 'name', 'Petroleum Technology Company (Norway)'),
(45043, 37881, 'no_lang_code', 'name', 'Kverneland Aqua (Norway)'),
(45044, 37882, 'no_lang_code', 'name', 'H. Henriksen (Norway)'),
(45045, 37883, 'no_lang_code', 'name', 'Iskra Medical (Slovenia)'),
(45046, 37884, 'no_lang_code', 'name', 'Macrolog (Brazil)'),
(45047, 37885, 'en', 'name', 'Baptist Bible College'),
(45048, 37886, 'no_lang_code', 'name', 'SW2 SoluƧƵes em TI (Brazil)'),
(45049, 37887, 'en', 'name', 'Holland Hospital'),
(45050, 37888, 'en', 'name', 'Midland Regional Hospital at Tullamore'),
(45051, 37888, 'ga', 'name', 'Ospidéal GinearÔlta Thulach Mhór'),
(45052, 37889, 'no_lang_code', 'name', 'SnĆøhetta (Norway)'),
(45053, 37890, 'no_lang_code', 'name', 'Ichimaru Pharcos (Japan)'),
(45054, 37891, 'en', 'name', 'Amsterdam University College'),
(45055, 37892, 'en', 'name', 'Union General Hospital'),
(45056, 37893, 'no_lang_code', 'name', 'Femto (Brazil)'),
(45057, 37894, 'no_lang_code', 'name', 'Hemnes Mekaniske Verksted (Norway)'),
(45058, 37895, 'en', 'name', 'Canning College'),
(45059, 37896, 'no_lang_code', 'name', 'Zakłady Urządzeń Kotłowych Stąporków (Poland)'),
(45060, 37897, 'en', 'name', 'Oslo Medtech'),
(45061, 37898, 'en', 'name', 'St Barnabas Hospital'),
(45062, 37899, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (United Kingdom)'),
(45063, 37900, 'de', 'name', 'Fraunhofer-Institut für Lasertechnik'),
(45064, 37900, 'en', 'name', 'Fraunhofer Institute for Laser Technology'),
(45065, 37901, 'en', 'name', 'University College of the Cayman Islands'),
(45066, 37902, 'de', 'name', 'Hamburger Institut für Sozialforschung'),
(45067, 37902, 'en', 'name', 'Hamburg Institute for Social Research'),
(45068, 37903, 'no_lang_code', 'name', 'Acquest (Brazil)'),
(45069, 37904, 'en', 'name', 'Nebraska Orthopaedic Hospital'),
(45070, 37905, 'en', 'name', 'Sultan Haji Ahmad Shah Hospital'),
(45071, 37905, 'ms', 'name', 'Hospital Sultan Haji Ahmad Shah'),
(45072, 37906, 'no_lang_code', 'name', 'Faafu Atoll Hospital'),
(45073, 37907, 'de', 'name', 'Steinbeis-Hochschule Berlin'),
(45074, 37907, 'en', 'name', 'Steinbeis University Berlin'),
(45075, 37908, 'no_lang_code', 'name', 'NCC (Norway)'),
(45076, 37909, 'en', 'name', 'Nalanda Medical College and Hospital'),
(45077, 37909, 'hi', 'name', 'ą¤Øą¤¾ą¤²ą¤Øą„ą¤¦ą¤¾ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ और ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(45078, 37910, 'en', 'name', 'University Hospital of the Samaritan'),
(45079, 37910, 'es', 'name', 'Hospital Universitario de la Samaritana'),
(45080, 37911, 'no_lang_code', 'name', 'Acer Novo Mesto (Slovenia)'),
(45081, 37912, 'en', 'name', 'Sapporo Toho Hospital'),
(45082, 37913, 'no', 'name', 'Tannlege Ole Christian Amundsen'),
(45083, 37914, 'tr', 'name', 'Diyarbakır Gazi Yaşargil Eğitim ve Araştırma Hastanesi'),
(45084, 37915, 'en', 'name', 'Lira Hospital'),
(45085, 37916, 'no_lang_code', 'name', 'Onion Tecnologia (Brazil)'),
(45086, 37917, 'en', 'name', 'Jose Pearson TB Hospital'),
(45087, 37918, 'no_lang_code', 'name', 'Tomax (Norway)'),
(45088, 37919, 'en', 'name', 'Maharishi University of Management and Technology'),
(45089, 37920, 'no_lang_code', 'name', 'Prekubator (Norway)'),
(45090, 37921, 'no_lang_code', 'name', 'Beike Biotechnology (China)'),
(45091, 37921, 'zh', 'name', 'åŒ—ē§‘ē”Ÿē‰©ē§‘ęŠ€'),
(45092, 37922, 'no_lang_code', 'name', 'Brascoelma (Brazil)'),
(45093, 37923, 'no_lang_code', 'name', 'SuperOffice (Norway)'),
(45094, 37924, 'en', 'name', 'Offshore Renewable Energy Catapult'),
(45095, 37925, 'en', 'name', 'Harcum College'),
(45096, 37926, 'en', 'name', 'Charles Stewart Mott Foundation'),
(45097, 37927, 'no_lang_code', 'name', 'Confocal Science (Japan)'),
(45098, 37928, 'no_lang_code', 'name', 'HerbjĆørn Kolstad (Norway)'),
(45099, 37929, 'no_lang_code', 'name', 'E-Test (Poland)'),
(45100, 37930, 'en', 'name', 'Milan Vidmar Electric Power Research Institute'),
(45101, 37931, 'en', 'name', 'Lagan Valley Hospital'),
(45102, 37932, 'no_lang_code', 'name', 'Oshaug Metall (Norway)'),
(45103, 37933, 'en', 'name', 'Mount Carmel Hospital'),
(45104, 37934, 'no_lang_code', 'name', 'Oil Tools Of Norway (Norway)'),
(45105, 37935, 'no_lang_code', 'name', 'Krajowa Spółka Cukrowa (Poland)'),
(45106, 37936, 'pt', 'name', 'Associação Saúde da Família'),
(45107, 37937, 'no_lang_code', 'name', 'Delprodukt (Norway)'),
(45108, 37938, 'en', 'name', 'International University for Science and Technology'),
(45109, 37939, 'no_lang_code', 'name', 'Plasto (Norway)'),
(45110, 37940, 'no_lang_code', 'name', 'Advanced Materials and Technologies (Slovenia)'),
(45111, 37941, 'en', 'name', 'Hanscom Air Force Base'),
(45112, 37942, 'en', 'name', 'Blackpool and The Fylde College'),
(45113, 37943, 'en', 'name', 'Frƶlunda Specialist Hospital'),
(45114, 37943, 'sv', 'name', 'Frƶlunda Specialistsjukhus'),
(45115, 37944, 'no_lang_code', 'name', 'ReaQuim (Brazil)'),
(45116, 37945, 'no_lang_code', 'name', 'Patentus (Poland)'),
(45117, 37946, 'en', 'name', 'La Palma Intercommunity Hospital'),
(45118, 37947, 'no_lang_code', 'name', 'IBSS BIOMED (Poland)'),
(45119, 37948, 'en', 'name', 'Garden Organic'),
(45120, 37949, 'en', 'name', 'Uist and Barra Hospital'),
(45121, 37950, 'en', 'name', 'Division of Environmental Biology'),
(45122, 37951, 'no_lang_code', 'name', 'Yashoda Hospital'),
(45123, 37952, 'no_lang_code', 'name', 'IOR Chemco (Norway)'),
(45124, 37953, 'no_lang_code', 'name', 'Intel (Taiwan)'),
(45125, 37954, 'pt', 'name', 'Muncipal de Bom Jesus do Itabapoana'),
(45126, 37955, 'de', 'name', 'Max-Planck-Institut für Steuerrecht und Ɩffentliche Finanzen'),
(45127, 37955, 'en', 'name', 'Max Planck Institute for Tax Law and Public Finance'),
(45128, 37956, 'no_lang_code', 'name', 'Vizrt (Norway)'),
(45129, 37957, 'no_lang_code', 'name', 'Smartbrain (Norway)'),
(45130, 37958, 'en', 'name', 'University Hospital Kerry'),
(45131, 37958, 'ga', 'name', 'OspidƩal Ollscoile Chiarraƭ'),
(45132, 37959, 'no_lang_code', 'name', 'Górnośląski Park Przemysłowy (Poland)'),
(45133, 37960, 'en', 'name', 'Institute of Genetics'),
(45134, 37961, 'en', 'name', 'Chengdu Fifth People''s Hospital'),
(45135, 37962, 'no_lang_code', 'name', 'Annoroad Gene Technology (China)'),
(45136, 37963, 'en', 'name', 'Trichur Heart Hospital'),
(45137, 37964, 'no_lang_code', 'name', 'Adresseavisen (Norway)'),
(45138, 37965, 'no_lang_code', 'name', 'Aqua Bio Technology (Norway)'),
(45139, 37966, 'en', 'name', 'Arkansas Public Service Commission'),
(45140, 37967, 'no_lang_code', 'name', 'CellCura (Norway)'),
(45141, 37968, 'de', 'name', 'Fraunhofer-Zentrum für Internationales Management und Wissensökonomie'),
(45142, 37968, 'en', 'name', 'Fraunhofer Center for International Management and Knowledge Economy'),
(45143, 37969, 'no_lang_code', 'name', 'ADTS (Brazil)'),
(45144, 37970, 'no_lang_code', 'name', 'Kongsberg Automotive (Poland)'),
(45145, 37971, 'no_lang_code', 'name', 'Seagarden (Norway)'),
(45146, 37972, 'no_lang_code', 'name', 'Smerud Medical Research (Norway)'),
(45147, 37973, 'en', 'name', 'Institute for Sustainable Innovative Technologies'),
(45148, 37974, 'en', 'name', 'Gansu Provincial Cancer Hospital Gansu Provincial Academic Instiute for Medical Research'),
(45149, 37974, 'zh', 'name', 'ē”˜č‚ƒēœåŒ»å­¦ē§‘å­¦ē ”ē©¶é™¢'),
(45150, 37975, 'no_lang_code', 'name', 'American Industrial Partners (United States)'),
(45151, 37976, 'no_lang_code', 'name', 'VIS Systems (Poland)'),
(45152, 37977, 'en', 'name', 'RĆøyken Municipality'),
(45153, 37978, 'no_lang_code', 'name', 'San’an Optoelectronics (China)'),
(45154, 37979, 'en', 'name', 'Central Party School of the Communist Party of China'),
(45155, 37979, 'zh', 'name', 'äø­å…±äø­å¤®å…šę ”'),
(45156, 37980, 'no_lang_code', 'name', 'Applied Petroleum Technology (Norway)'),
(45157, 37981, 'en', 'name', 'Unity Fellowship Church Movement'),
(45158, 37982, 'en', 'name', 'Norwegian Association for Development Research'),
(45159, 37983, 'no_lang_code', 'name', 'Syslab International (Norway)'),
(45160, 37984, 'no_lang_code', 'name', 'Nextera (Norway)'),
(45161, 37985, 'en', 'name', 'Institute of Medical Sciences and Sum Hospital'),
(45162, 37986, 'no_lang_code', 'name', 'Synlab (Germany)'),
(45163, 37987, 'en', 'name', 'SĆ£o Paulo Botanical Society'),
(45164, 37987, 'pt', 'name', 'Sociedade de Botânica de São Paulo'),
(45165, 37988, 'en', 'name', 'Paul University Awka'),
(45166, 37989, 'de', 'name', 'Kliniken der Stadt Kƶln'),
(45167, 37990, 'no_lang_code', 'name', 'Warm Systems (Norway)'),
(45168, 37991, 'de', 'name', 'Hochschule für Grafik und Buchkunst Leipzig'),
(45169, 37991, 'en', 'name', 'Academy of Visual Arts Leipzig'),
(45170, 37992, 'no_lang_code', 'name', 'Salto (Norway)'),
(45171, 37993, 'no_lang_code', 'name', 'Vedde (Norway)'),
(45172, 37994, 'en', 'name', 'Gateway Technical College'),
(45173, 37995, 'no_lang_code', 'name', 'Enovate (Norway)'),
(45174, 37996, 'en', 'name', 'Zero Emissions Resource Organisation'),
(45175, 37997, 'no_lang_code', 'name', 'Vista Analyse (Norway)'),
(45176, 37998, 'no_lang_code', 'name', 'MSP (Poland)'),
(45177, 37999, 'en', 'name', 'New Chemical Syntheses Institute'),
(45178, 38000, 'en', 'name', 'Federal Center for Technological Education Celso Suckow da Fonseca'),
(45179, 38000, 'fr', 'name', 'Centre fƩdƩral d''Ʃducation technologique celso suckow da fonseca'),
(45180, 38000, 'pt', 'name', 'Centro Federal de Educação Tecnológica Celso Suckow da Fonseca'),
(45181, 38001, 'no_lang_code', 'name', 'Zhejiang Hisun Pharmaceutical (China)'),
(45182, 38002, 'no_lang_code', 'name', 'Restrack (Norway)'),
(45183, 38003, 'en', 'name', 'Darshan Dental College and Hospital'),
(45184, 38004, 'no_lang_code', 'name', 'Impol (Slovenia)'),
(45185, 38005, 'en', 'name', 'Central Institute of Technology'),
(45186, 38006, 'no_lang_code', 'name', 'PUH Team (Slovenia)'),
(45187, 38007, 'en', 'name', 'Oroville Hospital'),
(45188, 38008, 'no_lang_code', 'name', 'TSO Logic (Canada)'),
(45189, 38009, 'no_lang_code', 'name', 'PBS (Poland)'),
(45190, 38010, 'no_lang_code', 'name', 'Wireless Instrumentation Systems (Norway)'),
(45191, 38011, 'no_lang_code', 'name', 'Cytovation (Norway)'),
(45192, 38012, 'no_lang_code', 'name', 'AM Technologies (Poland)'),
(45193, 38013, 'en', 'name', 'Foundation of Cardiac Surgery Development'),
(45194, 38014, 'en', 'name', 'Vanivilas Women and Children Hospital'),
(45195, 38015, 'en', 'name', 'Church Educational Centre'),
(45196, 38015, 'no', 'name', 'Kirkelig Pedagogisk Senter'),
(45197, 38016, 'en', 'name', 'Norwegian Seafood Federation'),
(45198, 38016, 'no', 'name', 'SjĆømat Norge'),
(45199, 38017, 'en', 'name', 'Carroll Hospital'),
(45200, 38018, 'no_lang_code', 'name', 'Instituto Internacional de Ecologia (Brazil)'),
(45201, 38019, 'no_lang_code', 'name', 'Pit Radwar (Poland)'),
(45202, 38020, 'no_lang_code', 'name', 'Specodlew (Poland)'),
(45203, 38021, 'en', 'name', 'Itojo Hospital'),
(45204, 38022, 'no_lang_code', 'name', 'Compass (Brazil)'),
(45205, 38023, 'en', 'name', 'Brazilian Society of Computational and Applied Mathematics'),
(45206, 38023, 'pt', 'name', 'Sociedade Brasileira de MatemƔtica Aplicada e Computacional'),
(45207, 38024, 'no_lang_code', 'name', 'Completion Technology Resources (Norway)'),
(45208, 38025, 'en', 'name', 'University of Technology and Management'),
(45209, 38025, 'fr', 'name', 'UniversitƩ de technologie et management'),
(45210, 38025, 'hi', 'name', 'ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(45211, 38026, 'no_lang_code', 'name', 'Nexans (Norway)'),
(45212, 38027, 'es', 'name', 'Universidad de Zamboanga'),
(45213, 38028, 'no_lang_code', 'name', 'Tsan Yuk Hospital'),
(45214, 38028, 'zh', 'name', 'č“Šč‚²é†«é™¢'),
(45215, 38029, 'no_lang_code', 'name', 'WellSeek (United States)'),
(45216, 38030, 'pt', 'name', 'Escola da Cidade'),
(45217, 38031, 'no', 'name', 'Realistforeningen'),
(45218, 38032, 'en', 'name', '181st Hospital of Chinese People''s Liberation Army'),
(45219, 38033, 'en', 'name', 'Jersey Community Hospital'),
(45220, 38034, 'no', 'name', 'Foreningen GranittRock'),
(45221, 38035, 'no_lang_code', 'name', 'Medema (Norway)'),
(45222, 38036, 'no_lang_code', 'name', 'Topro (Norway)'),
(45223, 38037, 'no_lang_code', 'name', 'Desun Hospital & Heart Institute'),
(45224, 38038, 'pt', 'name', 'Faculdade SĆ£o Leopoldo Mandic'),
(45225, 38039, 'en', 'name', 'Finnish Jazz & Pop Archive'),
(45226, 38040, 'en', 'name', 'Tamil Nadu Government Multi Super Speciality Hospital'),
(45227, 38040, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ புதிய ą®šą®ŸąÆą®Ÿą®®ą®©ąÆą®±ą®®ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ தலைமை ą®šąÆ†ą®Æą®²ą®• ą®µą®³ą®¾ą®•ą®®ąÆ'),
(45228, 38041, 'no_lang_code', 'name', 'Scenario (Brazil)'),
(45229, 38042, 'pt', 'name', 'Sociedade Brasileira de CatƔlise'),
(45230, 38043, 'no_lang_code', 'name', 'Metafocus (Norway)'),
(45231, 38044, 'no_lang_code', 'name', 'AstraZeneca (India)'),
(45232, 38045, 'en', 'name', 'LIKES – Foundation for Sport and Health Sciences'),
(45233, 38046, 'no_lang_code', 'name', 'Mahle (Poland)'),
(45234, 38047, 'no_lang_code', 'name', 'Precifica PreƧo Inteligente (Brazil)'),
(45235, 38048, 'pt', 'name', 'Fundação Faculdade de Medicina'),
(45236, 38049, 'en', 'name', 'Marienfelde Refugee Center Museum'),
(45237, 38050, 'no_lang_code', 'name', 'Vitrogen (Brazil)'),
(45238, 38051, 'no_lang_code', 'name', 'Value Frontier (Japan)'),
(45239, 38052, 'it', 'name', 'Ospedale Pesenti Fenaroli'),
(45240, 38053, 'en', 'name', 'Carilion New River Valley Medical Center'),
(45241, 38054, 'fr', 'name', 'Institut de Biologie de l''Ɖcole Normale SupĆ©rieure'),
(45242, 38055, 'de', 'name', 'RegierungsprƤsidium Stuttgart'),
(45243, 38056, 'en', 'name', 'Humanitas Mater Domini'),
(45244, 38057, 'pt', 'name', 'Centro de Estudos em Psicologia da SaĆŗde'),
(45245, 38058, 'no_lang_code', 'name', 'Safran (Brazil)'),
(45246, 38059, 'no_lang_code', 'name', 'General Motors (Poland)'),
(45247, 38060, 'no_lang_code', 'name', 'Tecnozinco Tratamento Superficial (Brazil)'),
(45248, 38061, 'en', 'name', 'Funabashi Orthopaedic Hospital'),
(45249, 38062, 'no_lang_code', 'name', 'GOE-IP (Norway)'),
(45250, 38063, 'no_lang_code', 'name', 'Human Longevity (United States)'),
(45251, 38064, 'en', 'name', 'German Plastics Center'),
(45252, 38064, 'no_lang_code', 'name', 'Süddeutsches Kunststoff-Zentrum (Germany)'),
(45253, 38065, 'en', 'name', 'Fourth Paradigm Institute'),
(45254, 38066, 'en', 'name', 'Bay Park Community Hospital'),
(45255, 38067, 'en', 'name', 'Ali Osman Sonmez Oncology Hospital'),
(45256, 38068, 'no_lang_code', 'name', 'LGC Standards (Poland)'),
(45257, 38069, 'no_lang_code', 'name', 'Grove Knutsen (Norway)'),
(45258, 38070, 'en', 'name', 'Kibuli Hospital'),
(45259, 38071, 'no_lang_code', 'name', 'VISIONBR Tecnologia e Informatica (Brazil)'),
(45260, 38072, 'en', 'name', 'Kangan Institute'),
(45261, 38073, 'en', 'name', 'Brazilian National Association of Graduate Programs in Communication'),
(45262, 38073, 'pt', 'name', 'Associação Nacional dos Programas de Pós-graduação em Comunicação'),
(45263, 38074, 'sl', 'name', 'RogaŔka Medical Centre'),
(45264, 38075, 'en', 'name', 'Dr. Mehta''s Children''s Hospital'),
(45265, 38076, 'no_lang_code', 'name', 'Krka (Slovenia)'),
(45266, 38077, 'no_lang_code', 'name', 'General Hospital Ernakulam'),
(45267, 38078, 'ja', 'name', '住友化学'),
(45268, 38078, 'no_lang_code', 'name', 'Sumitomo Chemical (Japan)'),
(45269, 38079, 'no_lang_code', 'name', 'Adaptive Intelligent Systems (United States)'),
(45270, 38080, 'en', 'name', 'People''s Hospital of Bishan District'),
(45271, 38081, 'no_lang_code', 'name', 'Cheddikulam Hospital'),
(45272, 38082, 'en', 'name', 'Midnapore Medical College and Hospital'),
(45273, 38083, 'en', 'name', 'Federal University Lafia'),
(45274, 38084, 'en', 'name', 'Lishui Maternity and Child Health Care Hospital'),
(45275, 38085, 'fr', 'name', 'Association pour la Recherche au CollƩgial'),
(45276, 38086, 'no', 'name', 'Voss Kommune'),
(45277, 38087, 'no_lang_code', 'name', 'A&A Biotechnology (Poland)'),
(45278, 38088, 'pt', 'name', 'Mosteiro de SĆ£o Bento, SĆ£o Bento Monastery'),
(45279, 38089, 'no_lang_code', 'name', 'Br. Birkeland (Norway)'),
(45280, 38090, 'en', 'name', 'Confederation College'),
(45281, 38091, 'no_lang_code', 'name', 'Cflow Fish Handling (Norway)'),
(45282, 38092, 'en', 'name', 'Trondheim-Fjord Rivers'),
(45283, 38093, 'no_lang_code', 'name', 'Steinsvik (Norway)'),
(45284, 38094, 'en', 'name', 'Los Angeles City College'),
(45285, 38095, 'no_lang_code', 'name', 'GKN (Norway)'),
(45286, 38096, 'en', 'name', 'Center for Studies of Holocaust and Religious Minorities'),
(45287, 38097, 'de', 'name', 'Fraunhofer-Institut für Fertigungstechnik und Angewandte Materialforschung'),
(45288, 38097, 'en', 'name', 'Fraunhofer Institute for Manufacturing Technology and Advanced Materials'),
(45289, 38098, 'no_lang_code', 'name', 'Savatech (Slovenia)'),
(45290, 38099, 'en', 'name', 'Global Public Policy Institute'),
(45291, 38100, 'no_lang_code', 'name', 'DirectLight (Brazil)'),
(45292, 38101, 'en', 'name', 'Colorectal Surgical Associates'),
(45293, 38102, 'no_lang_code', 'name', 'Kirchhoff (Poland)'),
(45294, 38103, 'no_lang_code', 'name', 'OncoArendi Therapeutics (Poland)'),
(45295, 38104, 'no_lang_code', 'name', 'Offshore Simulator Centre (Norway)'),
(45296, 38105, 'no_lang_code', 'name', 'Victoria Hospital'),
(45297, 38106, 'en', 'name', 'St. Helena Hospital'),
(45298, 38107, 'en', 'name', 'Sai Nath University'),
(45299, 38108, 'en', 'name', 'Dr. H. Gordon Roberts Hospital'),
(45300, 38109, 'no_lang_code', 'name', 'Krzysztof Kucharczyk Techniki Elektroforetyczne (Poland)'),
(45301, 38110, 'sl', 'name', 'Cosylab'),
(45302, 38111, 'no_lang_code', 'name', 'Digital Insight (Norway)'),
(45303, 38112, 'no_lang_code', 'name', 'Jastrzębska Spółka Węglowa (Poland)'),
(45304, 38113, 'no', 'name', 'Vestskog'),
(45305, 38114, 'no_lang_code', 'name', 'Lars (Poland)'),
(45306, 38115, 'no_lang_code', 'name', 'EnergiUnion (Norway)'),
(45307, 38116, 'sl', 'name', 'Ekonomski InŔtitut'),
(45308, 38117, 'en', 'name', 'Norwegian Farmers'' Union'),
(45309, 38118, 'en', 'name', 'Bridgwater College'),
(45310, 38119, 'no_lang_code', 'name', 'Norway Well Solutions'),
(45311, 38120, 'no_lang_code', 'name', 'RC ConstruƧƵes (Brazil)'),
(45312, 38121, 'en', 'name', 'St Lucy''s Hospital'),
(45313, 38122, 'pt', 'name', 'Santa Casa de Misericórdia de São Carlos'),
(45314, 38123, 'no', 'name', 'UllevƄl Sykehusapotek'),
(45315, 38124, 'en', 'name', 'Frank Phillips College'),
(45316, 38125, 'en', 'name', 'Sixth Affiliated Hospital of Xinjiang Medical University'),
(45317, 38126, 'pt', 'name', 'Secretaria da Educação'),
(45318, 38127, 'no_lang_code', 'name', 'STATinMED (United States)'),
(45319, 38128, 'en', 'name', 'Albert B. Chandler Hospital'),
(45320, 38129, 'en', 'name', 'Kalongo Hospital'),
(45321, 38130, 'en', 'name', 'Kayts Hospital'),
(45322, 38131, 'no_lang_code', 'name', 'Vest i Havet (Norway)'),
(45323, 38132, 'no_lang_code', 'name', 'Pharmaq (Norway)'),
(45324, 38133, 'en', 'name', 'South Okanagan General Hospital'),
(45325, 38134, 'no_lang_code', 'name', 'Norsk Automatisering (Norway)'),
(45326, 38135, 'no_lang_code', 'name', 'Guolian Futures (China)'),
(45327, 38136, 'pt', 'name', 'Sociedade Brasileira de FĆ­sica'),
(45328, 38137, 'de', 'name', 'St. Vincenz-Krankenhaus Limburg'),
(45329, 38138, 'no_lang_code', 'name', 'Norsafe (Norway)'),
(45330, 38139, 'en', 'name', 'Hippocrateon Private Hospital'),
(45331, 38140, 'en', 'name', 'Summerlin Hospital Medical Center'),
(45332, 38141, 'de', 'name', 'Hochschule für Wirtschaft und Recht'),
(45333, 38141, 'en', 'name', 'Berlin School of Economics and Law'),
(45334, 38142, 'en', 'name', 'Settlers Hospital'),
(45335, 38143, 'no_lang_code', 'name', 'Guangzhou Electronic Technology (China)'),
(45336, 38143, 'zh', 'name', 'äø­ē§‘é™¢å¹æå·žē”µå­ęŠ€ęœÆęœ‰é™å…¬åø'),
(45337, 38144, 'pt', 'name', 'Empresa de Pesquisa AgropecuƔria do Estado do Rio de Janeiro'),
(45338, 38145, 'en', 'name', 'Davao Doctors Hospital'),
(45339, 38146, 'no_lang_code', 'name', 'Baader Food Processing Machinery (Norway)'),
(45340, 38147, 'no_lang_code', 'name', 'Pluristem Therapeutics (Israel)'),
(45341, 38148, 'no_lang_code', 'name', 'Techni (Norway)'),
(45342, 38149, 'no_lang_code', 'name', 'Ogrody Dankiewicz (Poland)'),
(45343, 38150, 'no_lang_code', 'name', 'Nammo (Norway)'),
(45344, 38151, 'no_lang_code', 'name', 'Przedsiębiorstwo Badań Geofizycznych'),
(45345, 38152, 'en', 'name', 'Aerospace Research Institute of Materials and Processing Technology'),
(45346, 38152, 'zh', 'name', 'čˆŖå¤©ęę–™åŠå·„č‰ŗē ”ē©¶ę‰€'),
(45347, 38153, 'no_lang_code', 'name', 'Cupron (Israel)'),
(45348, 38154, 'no_lang_code', 'name', 'BrĆødrene Dahl (Norway)'),
(45349, 38155, 'no_lang_code', 'name', 'Ecotone (Norway)'),
(45350, 38156, 'en', 'name', 'Cefn Coed Hospital'),
(45351, 38157, 'en', 'name', 'Quirino State University'),
(45352, 38158, 'no_lang_code', 'name', 'Bio&Green (Brazil)'),
(45353, 38159, 'no_lang_code', 'name', 'NRK (Norway)'),
(45354, 38160, 'no_lang_code', 'name', 'Subhydro (Norway)'),
(45355, 38161, 'en', 'name', 'Kagando Hospital'),
(45356, 38162, 'no_lang_code', 'name', 'Thomson Reuters (Brazil)'),
(45357, 38163, 'en', 'name', 'A.M. Obukhov Institute of Atmospheric Physics'),
(45358, 38163, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики атмосферы им. А.М. ŠžŠ±ŃƒŃ…Š¾Š²Š° Российской акаГемии наук'),
(45359, 38164, 'no', 'name', 'Klepp Kommune'),
(45360, 38165, 'no_lang_code', 'name', 'Thales (Brazil)'),
(45361, 38166, 'no_lang_code', 'name', 'Opto EletrƓnica (Brazil)'),
(45362, 38167, 'no', 'name', 'VitenWahl Andreas Wahl'),
(45363, 38168, 'en', 'name', 'Montreal Chinese Hospital'),
(45364, 38168, 'fr', 'name', 'HƓpital Chinois de MontrƩal,'),
(45365, 38169, 'no_lang_code', 'name', 'Uskom (Poland)'),
(45366, 38170, 'en', 'name', 'Emilio Aguinaldo College'),
(45367, 38170, 'tl', 'name', 'Kolehiyong Emilio Aguinaldo'),
(45368, 38171, 'en', 'name', 'Zefat Academic College'),
(45369, 38172, 'no_lang_code', 'name', 'Zivko Aeronautics (United States)'),
(45370, 38173, 'en', 'name', 'Arad County Clinical Hospital'),
(45371, 38174, 'no', 'name', 'Haraldsplass Diakonale Sykehus'),
(45372, 38175, 'no', 'name', 'Norsk Sosiologforening'),
(45373, 38176, 'no_lang_code', 'name', 'Forristall Ocean Engineering (United States)'),
(45374, 38177, 'no_lang_code', 'name', 'Institute of Integrated Clinical Research (Brazil)'),
(45375, 38177, 'pt', 'name', 'Instituto de Pesquisa ClĆ­nica Integrada Ltda'),
(45376, 38178, 'en', 'name', 'Hillsborough Hospital'),
(45377, 38178, 'fr', 'name', 'HƓpital hillsborough'),
(45378, 38179, 'no', 'name', 'Suldal Kommune'),
(45379, 38180, 'en', 'name', 'Old Port of Montreal Corporation'),
(45380, 38180, 'fr', 'name', 'SociƩtƩ du Vieux-Port de MontrƩal'),
(45381, 38181, 'no_lang_code', 'name', 'Scandinavian Business Seating (Norway)'),
(45382, 38182, 'en', 'name', 'Panti Rapih Hospital'),
(45383, 38182, 'id', 'name', 'Rumah Sakit Umum Panti Rapih'),
(45384, 38183, 'en', 'name', 'Hi-Tech Medical College & Hospital'),
(45385, 38184, 'no_lang_code', 'name', 'Refazenda (Brazil)'),
(45386, 38185, 'no_lang_code', 'name', 'Waldrex (Poland)'),
(45387, 38186, 'de', 'name', 'Internationale Arbeitsorganisation'),
(45388, 38186, 'en', 'name', 'International Labour Organization'),
(45389, 38186, 'fr', 'name', 'Organisation internationale du travail'),
(45390, 38186, 'it', 'name', 'Organizzazione internazionale del lavoro');
INSERT INTO `ror_settings` VALUES
(45391, 38187, 'en', 'name', 'Korean Society for Quality Management'),
(45392, 38188, 'en', 'name', 'Atlantic General Hospital'),
(45393, 38189, 'no_lang_code', 'name', 'Manarom Hospital'),
(45394, 38190, 'en', 'name', 'BLK Super Speciality Hospital'),
(45395, 38191, 'en', 'name', 'Barlow Respiratory Hospital'),
(45396, 38192, 'pt', 'name', 'Arquivo PĆŗblico do Estado do Rio de Janeiro'),
(45397, 38193, 'pt', 'name', 'Associação Paulista de Medicina'),
(45398, 38194, 'en', 'name', 'Frank R. Howard Memorial Hospital'),
(45399, 38195, 'pt', 'name', 'Associação Brasileira de Polímeros'),
(45400, 38196, 'no_lang_code', 'name', 'FourC (Norway)'),
(45401, 38197, 'no_lang_code', 'name', 'Inlaks & Budhrani Hospital'),
(45402, 38198, 'en', 'name', 'Murshidabad Medical College and Hospital'),
(45403, 38199, 'no_lang_code', 'name', 'Shimadzu (China)'),
(45404, 38200, 'no_lang_code', 'name', 'Agat (Poland)'),
(45405, 38201, 'no_lang_code', 'name', 'Japan Bio Products (Japan)'),
(45406, 38202, 'no_lang_code', 'name', 'Sandvik (Norway)'),
(45407, 38203, 'en', 'name', 'Jiangxi Provincial Children''s Hospital'),
(45408, 38204, 'de', 'name', 'Leibniz-Zentrum Moderner Orient'),
(45409, 38205, 'en', 'name', 'University of Information Technology'),
(45410, 38205, 'pl', 'name', 'Wyższa Szkoła Technologii Informatycznych w Warszawie'),
(45411, 38206, 'no_lang_code', 'name', 'AquaScan (Norway)'),
(45412, 38207, 'no_lang_code', 'name', 'Predilnica Litija (Slovenia)'),
(45413, 38208, 'en', 'name', 'College of Medicine & JNM Hospital'),
(45414, 38209, 'no_lang_code', 'name', 'Plasma liits (Brazil)'),
(45415, 38210, 'pt', 'name', 'Coordenadoria Geral da Universidade'),
(45416, 38211, 'de', 'name', 'Kliniken Essen-Mitte'),
(45417, 38212, 'no_lang_code', 'name', 'Azet Products (Poland)'),
(45418, 38213, 'no_lang_code', 'name', 'Gemalto (Poland)'),
(45419, 38214, 'no_lang_code', 'name', 'ITS (Norway)'),
(45420, 38215, 'en', 'name', 'Institute of Gender and Health'),
(45421, 38216, 'en', 'name', 'Ling Tung University'),
(45422, 38216, 'zh', 'name', 'å¶ŗę±ē§‘ęŠ€å¤§å­ø'),
(45423, 38217, 'en', 'name', 'Military Institute of Engineering'),
(45424, 38217, 'pt', 'name', 'Instituto Militar de Engenharia'),
(45425, 38218, 'en', 'name', 'Glen Grey Provincial Hospital'),
(45426, 38219, 'no_lang_code', 'name', 'Nortransport (Norway)'),
(45427, 38220, 'no_lang_code', 'name', 'Pan-Nutri (Slovenia)'),
(45428, 38221, 'no', 'name', 'Vest-TelemarkrƄdet'),
(45429, 38222, 'no_lang_code', 'name', 'Norli Libris (Norway)'),
(45430, 38223, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© دجلة الجامعة'),
(45431, 38223, 'en', 'name', 'Dijlah University College'),
(45432, 38224, 'no_lang_code', 'name', 'Fotona (Slovenia)'),
(45433, 38225, 'no_lang_code', 'name', 'Laska Technika Przemysłowa (Poland)'),
(45434, 38226, 'no_lang_code', 'name', 'Segel (Norway)'),
(45435, 38227, 'cy', 'name', 'Ysbyty Brenhinol Gwent'),
(45436, 38227, 'en', 'name', 'Royal Gwent Hospital'),
(45437, 38228, 'en', 'name', 'Institute for Research in Materials and Applications'),
(45438, 38229, 'no_lang_code', 'name', 'CromƔtica (Brazil)'),
(45439, 38230, 'en', 'name', 'Peterhead Community Hospital'),
(45440, 38231, 'en', 'name', 'Hellenic College Holy Cross Greek Orthodox School of Theology, Hellenic College and Holy Cross Greek Orthodox School of Theology'),
(45441, 38232, 'de', 'name', 'Fraunhofer Institut für System- und Innovationsforschung'),
(45442, 38232, 'en', 'name', 'Fraunhofer Institute for Systems and Innovation Research'),
(45443, 38233, 'no', 'name', 'Norske Takstolprodusenters Forening'),
(45444, 38234, 'nl', 'name', 'Damiaan Dicht bij het leven'),
(45445, 38235, 'no_lang_code', 'name', 'DMG Mori (Poland)'),
(45446, 38236, 'no_lang_code', 'name', 'Kulej (Poland)'),
(45447, 38237, 'no_lang_code', 'name', 'Heggset Engineering (Norway)'),
(45448, 38238, 'en', 'name', 'Oslo Stock Exchange'),
(45449, 38239, 'no_lang_code', 'name', 'Wuhan YZY Biopharma (China)'),
(45450, 38240, 'en', 'name', 'Clinica de Salud del Valle de Salinas'),
(45451, 38241, 'en', 'name', 'Vestre Viken Hospital Trust'),
(45452, 38242, 'no_lang_code', 'name', 'RollerSafe (Norway)'),
(45453, 38243, 'no_lang_code', 'name', 'Bevital (Norway)'),
(45454, 38244, 'no_lang_code', 'name', 'eCoast (New Zealand)'),
(45455, 38245, 'en', 'name', 'Montclair Hospital Medical Center'),
(45456, 38246, 'de', 'name', 'Institut für Grenzgebiete der Psychologie und Psychohygiene'),
(45457, 38247, 'no_lang_code', 'name', 'VeriSat (Norway)'),
(45458, 38248, 'no_lang_code', 'name', 'Advion (United Kingdom)'),
(45459, 38249, 'en', 'name', 'Brazilian Institute of Neuropsychology and Behaviour'),
(45460, 38249, 'pt', 'name', 'Instituto Brasileiro de Neuropsicologia e Comportamento'),
(45461, 38250, 'en', 'name', 'Business School Lausanne'),
(45462, 38251, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Norway)'),
(45463, 38252, 'en', 'name', 'Quebec Consortium for Industrial Research and Innovation in Medical Technology'),
(45464, 38252, 'fr', 'name', 'Consortium de recherche et d''innovation en technologies mƩdicales du QuƩbec'),
(45465, 38253, 'no_lang_code', 'name', 'EnSol (Norway)'),
(45466, 38254, 'en', 'name', 'Gwangju Health University'),
(45467, 38254, 'ko', 'name', 'ź“‘ģ£¼ė³“ź±“ėŒ€ķ•™źµ'),
(45468, 38255, 'de', 'name', 'Landesarchiv Sachsen-Anhalt'),
(45469, 38256, 'no', 'name', 'Nord-TrĆøndelag FylkesKommune'),
(45470, 38257, 'no_lang_code', 'name', 'Celerway Communication (Norway)'),
(45471, 38258, 'no_lang_code', 'name', 'Wilson Composites (United States)'),
(45472, 38259, 'fr', 'name', 'Centre QuƩbƩcois du P.E.N. International'),
(45473, 38260, 'no', 'name', 'Institutt for Grafiske Medier'),
(45474, 38261, 'no_lang_code', 'name', 'Typhonix (Norway)'),
(45475, 38262, 'no_lang_code', 'name', 'Institute of Metagenomics and Microbial Technologies (Slovenia)'),
(45476, 38263, 'no_lang_code', 'name', 'Salt (Norway)'),
(45477, 38264, 'no_lang_code', 'name', 'Holta Invest (Norway)'),
(45478, 38265, 'en', 'name', 'Norwegian Society for Medical Informatics'),
(45479, 38266, 'no', 'name', 'Norwea'),
(45480, 38267, 'no_lang_code', 'name', 'Argus Remote Systems (Norway)'),
(45481, 38268, 'no_lang_code', 'name', 'AFRY (Norway)'),
(45482, 38269, 'fr', 'name', 'DƩlƩgation RƩgionale Occitanie PyrƩnƩes'),
(45483, 38270, 'no_lang_code', 'name', 'Arkitektur og Byggteknikk (Norway)'),
(45484, 38271, 'en', 'name', 'Mills Memorial Hospital'),
(45485, 38272, 'en', 'name', 'Desert Springs Hospital'),
(45486, 38273, 'en', 'name', 'Greater Cincinnati Consortium of Colleges and Universities'),
(45487, 38274, 'en', 'name', 'Division of Industrial Innovation & Partnerships'),
(45488, 38275, 'en', 'name', 'Irvine Valley College'),
(45489, 38276, 'pt', 'name', 'Bioline - Consultoria e Engenharia Ambiental'),
(45490, 38277, 'no_lang_code', 'name', 'Bulldozer Film (Norway)'),
(45491, 38278, 'no_lang_code', 'name', 'Oxford Research (Norway)'),
(45492, 38279, 'no_lang_code', 'name', 'AHR (United Kingdom)'),
(45493, 38280, 'no_lang_code', 'name', 'Insurance Process Management (Norway)'),
(45494, 38281, 'no_lang_code', 'name', 'Cautus Geo (Norway)'),
(45495, 38282, 'en', 'name', 'Educell'),
(45496, 38283, 'no_lang_code', 'name', 'Graphene Batteries (Norway)'),
(45497, 38284, 'no_lang_code', 'name', 'Royal Fish (Brazil)'),
(45498, 38285, 'no_lang_code', 'name', 'Nel (Norway)'),
(45499, 38286, 'no_lang_code', 'name', 'Sollis (Brazil)'),
(45500, 38287, 'en', 'name', 'Leduc Community Hospital'),
(45501, 38288, 'en', 'name', 'King & Spalding'),
(45502, 38289, 'no_lang_code', 'name', 'OptoLink (Brazil)'),
(45503, 38290, 'no_lang_code', 'name', 'Omegatri (Norway)'),
(45504, 38291, 'no', 'name', 'Norsk Sveiseteknisk Forbund'),
(45505, 38292, 'en', 'name', 'HBCU Library Alliance'),
(45506, 38293, 'no_lang_code', 'name', 'Ayanda (Norway)'),
(45507, 38294, 'en', 'name', 'Sierra View Medical Center'),
(45508, 38295, 'no_lang_code', 'name', 'NorDan (Norway)'),
(45509, 38296, 'no_lang_code', 'name', 'Avfall Norge (Norway)'),
(45510, 38297, 'no_lang_code', 'name', 'Celsa (Poland)'),
(45511, 38298, 'en', 'name', 'Norwegian Computer Society'),
(45512, 38299, 'no_lang_code', 'name', 'Cala Provincial Hospital'),
(45513, 38300, 'en', 'name', 'Seed Forum'),
(45514, 38301, 'en', 'name', 'Aga Khan Hospital Dar es Salaam'),
(45515, 38302, 'en', 'name', 'Walter Eucken Institut'),
(45516, 38303, 'en', 'name', 'Swedish Film Institute'),
(45517, 38304, 'en', 'name', 'Midland Regional Hospital Mullingar'),
(45518, 38304, 'ga', 'name', 'Ospidéal Réigiúnach an Mhuilinn Chearr'),
(45519, 38305, 'no_lang_code', 'name', 'Norwegian Oilfield Supply'),
(45520, 38306, 'no_lang_code', 'name', 'Atheno (Norway)'),
(45521, 38307, 'no_lang_code', 'name', 'Imag Indústria e Comércio de Componentes EletrÓnicos (Brasil)'),
(45522, 38308, 'no_lang_code', 'name', 'Durgabai Deshmukh Hospital'),
(45523, 38309, 'no_lang_code', 'name', 'Oltis Polska (Poland)'),
(45524, 38310, 'fr', 'name', 'CEA Valduc'),
(45525, 38311, 'no_lang_code', 'name', 'Tool Tech (Norway)'),
(45526, 38312, 'no_lang_code', 'name', 'Autosan (Poland)'),
(45527, 38313, 'no_lang_code', 'name', 'Portal (Norway)'),
(45528, 38314, 'no_lang_code', 'name', 'Evry (Norway)'),
(45529, 38315, 'en', 'name', 'American Federation for Medical Research'),
(45530, 38316, 'no_lang_code', 'name', 'Niko (Slovenia)'),
(45531, 38317, 'en', 'name', 'Institute of Tibetan Plateau Research'),
(45532, 38317, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢é’č—é«˜åŽŸē ”ē©¶ę‰€'),
(45533, 38318, 'no_lang_code', 'name', 'Profectum (Norway)'),
(45534, 38319, 'no_lang_code', 'name', 'Neuron EletrƓnica (Brazil)'),
(45535, 38320, 'en', 'name', 'Jefferson Community and Technical College'),
(45536, 38321, 'en', 'name', 'Metro Area Community Empowerment'),
(45537, 38322, 'no_lang_code', 'name', 'Trilobite (Norway)'),
(45538, 38323, 'pt', 'name', 'Sociedade Brasileira Para o Desenvolvimento da Pesquisa em Cirurgia'),
(45539, 38324, 'no_lang_code', 'name', 'Vista Utredning (Norway)'),
(45540, 38325, 'en', 'name', 'American School of Milan'),
(45541, 38326, 'en', 'name', 'Duncan Village Day Hospital'),
(45542, 38327, 'en', 'name', 'Norwegian Trotting Association'),
(45543, 38328, 'no_lang_code', 'name', 'FinsbrƄten (Norway)'),
(45544, 38329, 'en', 'name', 'Nuclear Engineering Institute'),
(45545, 38329, 'pt', 'name', 'Instituto de Engenharia Nuclear'),
(45546, 38330, 'no_lang_code', 'name', 'Klais SoluƧƵes Consultoria e Desenvolvimento (Brazil)'),
(45547, 38331, 'pt', 'name', 'Fundação Casa de Rui Barbosa'),
(45548, 38332, 'no_lang_code', 'name', 'Bioware (Brazil)'),
(45549, 38333, 'it', 'name', 'Ospedale dell'' Angelo'),
(45550, 38334, 'no_lang_code', 'name', 'Mecmar (Norway)'),
(45551, 38335, 'no_lang_code', 'name', 'Adiel Comercial (Brazil)'),
(45552, 38336, 'de', 'name', 'Max-Planck-Institut für Molekulare Biomedizin'),
(45553, 38336, 'en', 'name', 'Max Planck Institute for Molecular Biomedicine'),
(45554, 38337, 'en', 'name', 'SĆ£o Paulo Museum of Art'),
(45555, 38337, 'pt', 'name', 'Museu de Arte de SĆ£o Paulo'),
(45556, 38338, 'en', 'name', 'Dr. Kariadi Hospital'),
(45557, 38338, 'id', 'name', 'Rumah Sakit Dr. Kariadi'),
(45558, 38339, 'en', 'name', 'School of Higher Education in Advertising and Marketing'),
(45559, 38339, 'pt', 'name', 'Escola Superior de Propaganda e Marketing'),
(45560, 38340, 'en', 'name', 'Association of Polish Cities'),
(45561, 38341, 'en', 'name', 'Fuda Cancer Hospital'),
(45562, 38342, 'en', 'name', 'TechSoup'),
(45563, 38343, 'en', 'name', 'Medicine Hat Regional Hospital'),
(45564, 38344, 'no_lang_code', 'name', 'Marmor Hotavlje Group (Slovenia)'),
(45565, 38345, 'en', 'name', 'Lourdes Hospital'),
(45566, 38346, 'no_lang_code', 'name', 'Aschehoug (Norway)'),
(45567, 38347, 'no', 'name', 'Bergens Rederiforening'),
(45568, 38348, 'no', 'name', 'Norsk Fysisk Selskap'),
(45569, 38349, 'en', 'name', 'Worcester Recovery Center and Hospital'),
(45570, 38350, 'en', 'name', 'Seventh day Adventist Hospital'),
(45571, 38351, 'no_lang_code', 'name', 'Tidewater (Norway)'),
(45572, 38352, 'de', 'name', 'Landesmuseum Württemberg'),
(45573, 38353, 'no_lang_code', 'name', 'Doosan Yonkang Foundation'),
(45574, 38354, 'en', 'name', 'Central Institute of Freshwater Aquaculture'),
(45575, 38355, 'en', 'name', 'Ministry of Labor and Employment'),
(45576, 38355, 'pt', 'name', 'MinistƩrio do Trabalho e Emprego'),
(45577, 38356, 'hi', 'name', 'ą¤®ą¤„ą„ą¤°ą¤¾ą¤¦ą¤¾ą¤ø ą¤®ą¤¾ą¤„ą„ą¤° ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(45578, 38356, 'no_lang_code', 'name', 'Mathura Das Mathur Hospital'),
(45579, 38357, 'en', 'name', 'Pentecost University College'),
(45580, 38358, 'no_lang_code', 'name', 'Harpo (Poland)'),
(45581, 38359, 'no_lang_code', 'name', 'Lyse (Norway)'),
(45582, 38360, 'no', 'name', 'Norges IngeniĆør- og Teknologorganisasjon'),
(45583, 38361, 'en', 'name', 'Ministry of Culture'),
(45584, 38361, 'pt', 'name', 'MinistƩrio da Cultura'),
(45585, 38362, 'pt', 'name', 'Instituto Lina Bo e P.M. Bardi'),
(45586, 38363, 'no_lang_code', 'name', 'Cennabras (Brazil)'),
(45587, 38364, 'en', 'name', 'Calvary Hospital'),
(45588, 38365, 'fr', 'name', 'Centres IntƩgrƩ Universitaires de SantƩ et de Services Sociaux'),
(45589, 38366, 'en', 'name', 'Lanchester Road Hospital'),
(45590, 38367, 'en', 'name', 'Turner Memorial Hospital'),
(45591, 38368, 'no_lang_code', 'name', 'AMS Kepler (Brazil)'),
(45592, 38369, 'de', 'name', 'ForWind Zentrum für Windenergieforschung'),
(45593, 38370, 'az', 'name', 'Azərbaycan Milli Aerokosmik Agentliyi'),
(45594, 38370, 'en', 'name', 'Azerbaijan National Aerospace Agency'),
(45595, 38371, 'en', 'name', 'Affiliated Zhongshan Hospital of Dalian University'),
(45596, 38372, 'en', 'name', 'Friends of the Earth Norway'),
(45597, 38372, 'no', 'name', 'Naturvernforbundet'),
(45598, 38373, 'no_lang_code', 'name', 'Ocean Energy (Norway)'),
(45599, 38374, 'it', 'name', 'Ospedale di Civita Castellana'),
(45600, 38375, 'en', 'name', 'Mediclinic City Hospital'),
(45601, 38376, 'no_lang_code', 'name', 'Xizang Minzu University'),
(45602, 38376, 'zh', 'name', 'č„æč—ę°‘ę—å­¦é™¢'),
(45603, 38377, 'no_lang_code', 'name', 'Magtech (Norway)'),
(45604, 38378, 'no_lang_code', 'name', 'Stimline (Norway)'),
(45605, 38379, 'no_lang_code', 'name', 'Vartdal Plast (Norway)'),
(45606, 38380, 'pt', 'name', 'Secretaria de Agricultura e Abastecimento'),
(45607, 38381, 'en', 'name', 'Pacific Research Institute'),
(45608, 38382, 'pt', 'name', 'Associação Brasileira da Batata'),
(45609, 38383, 'no', 'name', 'AksjonƦrforeningen'),
(45610, 38384, 'de', 'name', 'Helmholtz-Institut für Pharmazeutische Forschung Saarland'),
(45611, 38384, 'en', 'name', 'Helmholtz Institute for Pharmaceutical Research Saarland'),
(45612, 38385, 'no_lang_code', 'name', 'JĆøtul (Norway)'),
(45613, 38386, 'no_lang_code', 'name', 'Semcon (Norway)'),
(45614, 38387, 'no_lang_code', 'name', 'Bf Clay Especialidades (Brazil)'),
(45615, 38388, 'no_lang_code', 'name', 'Neuro Device (Poland)'),
(45616, 38389, 'no_lang_code', 'name', 'Quartz Corp (Norway)'),
(45617, 38390, 'en', 'name', 'Tianjin Institute of Industrial Biotechnology'),
(45618, 38390, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¤©ę“„å·„äøšē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(45619, 38391, 'no_lang_code', 'name', 'Nompumelelo Hospital'),
(45620, 38392, 'en', 'name', 'Center for Child and Adolescent Mental Health, Eastern and Southern Norway'),
(45621, 38393, 'no_lang_code', 'name', 'Marine Constructions (Norway)'),
(45622, 38394, 'no_lang_code', 'name', 'Formatto (Brazil)'),
(45623, 38395, 'no_lang_code', 'name', 'NergƄrd (Norway)'),
(45624, 38396, 'en', 'name', 'Trondheim Science Museum'),
(45625, 38396, 'no', 'name', 'Vitensenteret i Trondheim'),
(45626, 38397, 'no_lang_code', 'name', 'Yonsei Sarang Hospital'),
(45627, 38398, 'en', 'name', 'Changsha Environmental Protection College'),
(45628, 38399, 'en', 'name', 'Ben Taub Hospital'),
(45629, 38400, 'no_lang_code', 'name', 'Pedra Agroindustrial (Brazil)'),
(45630, 38401, 'en', 'name', 'Morelia Institute of Technology'),
(45631, 38401, 'es', 'name', 'Instituto Tecnológico de Morelia'),
(45632, 38402, 'no_lang_code', 'name', 'Gavita (Norway)'),
(45633, 38403, 'en', 'name', 'Britannia Royal Naval College'),
(45634, 38404, 'no_lang_code', 'name', 'Karanda Mission Hospital'),
(45635, 38405, 'no_lang_code', 'name', 'NorgesmĆøllene (Norway)'),
(45636, 38406, 'no_lang_code', 'name', 'Alwernia (Poland)'),
(45637, 38407, 'no_lang_code', 'name', 'Goodtech (Norway)'),
(45638, 38408, 'de', 'name', 'Stiftung Schleswig-Holsteinische Landesmuseen'),
(45639, 38409, 'no_lang_code', 'name', 'Beck Engineering (Norway)'),
(45640, 38410, 'en', 'name', 'Westminster Memorial Hospital'),
(45641, 38411, 'en', 'name', 'Sultan Ismail Specialist Hospital'),
(45642, 38412, 'fr', 'name', 'Centre de Transfert Pour la RƩussite Educative du QuƩbec'),
(45643, 38413, 'no', 'name', 'Start Norge'),
(45644, 38414, 'en', 'name', 'Capricorn Coast Hospital'),
(45645, 38415, 'en', 'name', 'Atlanta Film Festival'),
(45646, 38416, 'en', 'name', 'Midland Regional Hospital Portlaoise'),
(45647, 38416, 'ga', 'name', 'Ospidéal Réigiúnach LÔr Tíre, Port Laoise'),
(45648, 38417, 'no_lang_code', 'name', 'Shutech (Japan)'),
(45649, 38418, 'en', 'name', 'Fleming Cottage Hospital'),
(45650, 38419, 'no_lang_code', 'name', 'Conpart (Norway)'),
(45651, 38420, 'no', 'name', 'Ɓrran JulevsƔme GuovdƔsj Lulesamisk Senter'),
(45652, 38421, 'en', 'name', 'Institute of Neurosciences, Mental Health and Addiction'),
(45653, 38422, 'en', 'name', 'Inland Norway Energy Agency'),
(45654, 38423, 'no_lang_code', 'name', 'Hardkop (Poland)'),
(45655, 38424, 'no_lang_code', 'name', 'Cybid (Poland)'),
(45656, 38425, 'no_lang_code', 'name', 'Tolero Pharmaceuticals (United States)'),
(45657, 38426, 'no_lang_code', 'name', 'Hacienda (Norway)'),
(45658, 38427, 'en', 'name', 'Queen Maud University College'),
(45659, 38428, 'pl', 'name', 'Ośrodek Badawczo-Rozwojowy Centrum Techniki Morskiej'),
(45660, 38429, 'no_lang_code', 'name', 'Advanced Fiber Resources (China)'),
(45661, 38430, 'en', 'name', 'Boai Hospital of Zhongshan'),
(45662, 38430, 'zh', 'name', 'äø­å±±åø‚åšēˆ±åŒ»é™¢'),
(45663, 38431, 'en', 'name', 'San Jose Hospital & Trauma Center'),
(45664, 38432, 'no_lang_code', 'name', 'Biomolex (Norway)'),
(45665, 38433, 'en', 'name', 'Congress-Conference'),
(45666, 38434, 'de', 'name', 'Fraunhofer-Institut für Keramische Technologien und Systeme'),
(45667, 38434, 'en', 'name', 'Fraunhofer Institute for Ceramic Technologies and Systems'),
(45668, 38435, 'no_lang_code', 'name', 'Calcus (Norway)'),
(45669, 38436, 'en', 'name', 'Matha Ayurveda Eye Hospital'),
(45670, 38437, 'pt', 'name', 'Instituto de Psicologia Comportamental de SĆ£o Carlos'),
(45671, 38438, 'no_lang_code', 'name', 'Kolon Life Science (South Korea)'),
(45672, 38439, 'no_lang_code', 'name', 'Karakter'),
(45673, 38440, 'no_lang_code', 'name', 'Instituto Vital Brazil (Brazil)'),
(45674, 38441, 'en', 'name', 'Institute of Aging'),
(45675, 38442, 'pt', 'name', 'Centro de Tecnologia da Informação Renato Archer'),
(45676, 38443, 'no_lang_code', 'name', 'Kolpa (Slovenia)'),
(45677, 38444, 'no_lang_code', 'name', 'Lumex (Norway)'),
(45678, 38445, 'en', 'name', 'Norwegian Steel Association'),
(45679, 38446, 'no_lang_code', 'name', 'Kehl (Brazil)'),
(45680, 38447, 'no_lang_code', 'name', 'Human Dialog (Norway)'),
(45681, 38448, 'ar', 'name', 'مستؓفى ŲÆŲ§Ų± Ų§Ł„Ų“ŁŲ§Ų”ā€Ž'),
(45682, 38448, 'no_lang_code', 'name', 'Dar Al-Shifa Hospital'),
(45683, 38449, 'no_lang_code', 'name', 'Rosetta Genomics (Israel)'),
(45684, 38450, 'en', 'name', 'National Cancer Institute'),
(45685, 38451, 'en', 'name', 'All Hallows College'),
(45686, 38452, 'no_lang_code', 'name', 'MetsƤhallitus (Finland)'),
(45687, 38453, 'fr', 'name', 'Institut FranƧais de la Brasserie et de la Malterie, Institut FranƧais des Boissons, de la Brasserie et de la Malterie'),
(45688, 38454, 'en', 'name', 'Brazilian Buiatrics Association'),
(45689, 38454, 'pt', 'name', 'Associação Brasileira de Buiatria'),
(45690, 38455, 'en', 'name', 'Hudson County Community College'),
(45691, 38456, 'pt', 'name', 'Hospital do Rim e Hipertensão'),
(45692, 38457, 'no_lang_code', 'name', 'BP Norge (Norway)'),
(45693, 38458, 'no_lang_code', 'name', 'Aspiro (Norway)'),
(45694, 38459, 'no_lang_code', 'name', 'Wellcem (Norway)'),
(45695, 38460, 'de', 'name', 'Hochschule für bildende Künste'),
(45696, 38460, 'en', 'name', 'University of Fine Arts in Hamburg'),
(45697, 38461, 'de', 'name', 'Stadtarchiv Ibbenbüren'),
(45698, 38462, 'no_lang_code', 'name', 'Scott Group Studio (United States)'),
(45699, 38463, 'no_lang_code', 'name', 'Statskog (Norway)'),
(45700, 38464, 'no_lang_code', 'name', 'Bevi Plastic (Brazil)'),
(45701, 38465, 'no_lang_code', 'name', 'Multi Vegetal FitocosmƩticos (Brazil)'),
(45702, 38466, 'en', 'name', 'Life Groenkloof Hospital'),
(45703, 38467, 'no_lang_code', 'name', 'Nanosyn (United States)'),
(45704, 38468, 'ar', 'name', 'الجامعة Ų§Ł„Ł…ŲµŲ±ŁŠŲ© للتعلم Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†Ł‰'),
(45705, 38468, 'en', 'name', 'Egyptian e-Learning University'),
(45706, 38469, 'no_lang_code', 'name', 'Atonus Engineering Systems (Brazil)'),
(45707, 38470, 'no_lang_code', 'name', 'Guatifer Usinagem e Ferramentaria (Brazil)'),
(45708, 38471, 'no_lang_code', 'name', 'Biotec Pharmacon (Norway)'),
(45709, 38472, 'no_lang_code', 'name', 'PostNord (Norway)'),
(45710, 38473, 'en', 'name', 'Ningbo University Affiliated Hospital'),
(45711, 38473, 'zh', 'name', 'å®ę³¢å¤§å­¦åŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(45712, 38474, 'en', 'name', 'Lake District Hospital'),
(45713, 38475, 'en', 'name', 'Belmont Hospital'),
(45714, 38476, 'en', 'name', 'West Yangon General Hospital'),
(45715, 38476, 'my', 'name', 'ရန်ကုန် နနောက်ပိုင်း ဆေးရုံ'),
(45716, 38477, 'en', 'name', 'Naval Hospital of Puerto Williams'),
(45717, 38477, 'es', 'name', 'Hospital Naval de Puerto Williams'),
(45718, 38478, 'en', 'name', 'Hill College'),
(45719, 38479, 'no_lang_code', 'name', 'Pammakaristos Hospital'),
(45720, 38480, 'sl', 'name', 'BiotehniŔki Center Naklo'),
(45721, 38481, 'no_lang_code', 'name', 'SimWorx (Brazil)'),
(45722, 38482, 'en', 'name', 'Whidden Memorial Hospital'),
(45723, 38483, 'pt', 'name', 'Sociedade Brasileira de QuĆ­mica'),
(45724, 38484, 'no_lang_code', 'name', 'Wavetek (Brazil)'),
(45725, 38485, 'en', 'name', 'Palestine Technical College'),
(45726, 38486, 'no_lang_code', 'name', 'Snƶball Film (Norway)'),
(45727, 38487, 'no_lang_code', 'name', 'Abcodia (United Kingdom)'),
(45728, 38488, 'en', 'name', 'King Khalid University Hospital'),
(45729, 38489, 'no_lang_code', 'name', 'Ak. Grieg Norge (Norway)'),
(45730, 38490, 'en', 'name', 'Lakeshore General Hospital'),
(45731, 38490, 'fr', 'name', 'HƓpital gƩnƩral du Lakeshore'),
(45732, 38491, 'en', 'name', 'Wuhan Branch of the National Science Library'),
(45733, 38491, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę­¦ę±‰ę–‡ēŒ®ęƒ…ęŠ„äø­åæƒ'),
(45734, 38492, 'no_lang_code', 'name', 'Korth Rfid (Brazil)'),
(45735, 38493, 'en', 'name', 'Guizhou Provincial People''s Hospital'),
(45736, 38493, 'zh', 'name', 'č“µå·žēœäŗŗę°‘åŒ»é™¢'),
(45737, 38494, 'en', 'name', 'Massac Memorial Hospital'),
(45738, 38495, 'en', 'name', 'Birla Institute of Technology and Science, Pilani - Goa Campus'),
(45739, 38496, 'en', 'name', 'Tripura Medical College & Dr. B.R. Ambedkar Memorial Teaching Hospital'),
(45740, 38497, 'no_lang_code', 'name', 'GasPlas (Norway)'),
(45741, 38498, 'no_lang_code', 'name', 'Glen Dimplex Nordic (Norway)'),
(45742, 38499, 'no_lang_code', 'name', 'Seaweed Energy Solutions (Norway)'),
(45743, 38500, 'en', 'name', 'Federal University Kashere'),
(45744, 38501, 'en', 'name', 'Division of Chemical, Bioengineering, Environmental, and Transport Systems'),
(45745, 38502, 'en', 'name', 'Wuhan Third Hospital'),
(45746, 38503, 'no_lang_code', 'name', 'Fortelab (Brazil)'),
(45747, 38504, 'ms', 'name', 'Hospital Assunta'),
(45748, 38504, 'no_lang_code', 'name', 'Assunta Hospital'),
(45749, 38504, 'zh', 'name', 'é˜æę¾å¤§åŒ»é™¢'),
(45750, 38505, 'no_lang_code', 'name', 'Gritek (China)'),
(45751, 38506, 'no_lang_code', 'name', 'SmartCare (Norway)'),
(45752, 38507, 'no_lang_code', 'name', 'ENOVA (Norway)'),
(45753, 38508, 'no_lang_code', 'name', 'Gudbrandsdalsmat (Norway)'),
(45754, 38509, 'es', 'name', 'Hospital Universitario del Henares'),
(45755, 38510, 'en', 'name', 'Rowan College at Burlington County'),
(45756, 38511, 'no_lang_code', 'name', 'Autronica Fire and Security (Norway)'),
(45757, 38512, 'no_lang_code', 'name', 'Agro Lab Plants (Brazil)'),
(45758, 38513, 'en', 'name', 'Longmont United Hospital'),
(45759, 38514, 'no', 'name', 'SĆør-TrĆøndelag County Authority'),
(45760, 38515, 'no', 'name', 'AT Skog'),
(45761, 38516, 'no_lang_code', 'name', 'Colly (Brazil)'),
(45762, 38517, 'en', 'name', 'Institute of Problems of Mechanical Engineering'),
(45763, 38517, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ Российской акаГемии наук'),
(45764, 38518, 'pt', 'name', 'Fundação Otorrinolaringologia'),
(45765, 38519, 'en', 'name', 'Oxford Educational Institutions'),
(45766, 38520, 'en', 'name', 'Institute for Color Science and Technology'),
(45767, 38521, 'en', 'name', 'Karamay Central Hospital'),
(45768, 38521, 'zh', 'name', 'å…‹ę‹‰ēŽ›ä¾åø‚äø­åæƒåŒ»é™¢Ā·äŗ‘åŒ»é™¢'),
(45769, 38522, 'en', 'name', 'Society for Immunotherapy of Cancer'),
(45770, 38523, 'en', 'name', 'Brazilian Agricultural Research Corporation'),
(45771, 38523, 'pt', 'name', 'Empresa Brasileira de Pesquisa AgropecuƔria'),
(45772, 38524, 'no_lang_code', 'name', 'Abili (Brazil)'),
(45773, 38525, 'en', 'name', 'Great North Children''s Hospital'),
(45774, 38526, 'en', 'name', 'Office of the Auditor General of Norway'),
(45775, 38527, 'no', 'name', 'Coperiosenteret'),
(45776, 38528, 'en', 'name', 'Whakatane Hospital'),
(45777, 38529, 'en', 'name', 'LUdeS University'),
(45778, 38529, 'it', 'name', 'Libera Universita degli Studi di Scienze Umane e Tecnologiche di Lugano'),
(45779, 38530, 'no_lang_code', 'name', 'Covance (Australia)'),
(45780, 38531, 'no_lang_code', 'name', '3GSolar (Norway)'),
(45781, 38532, 'en', 'name', 'MedCoast Scandinavia'),
(45782, 38533, 'en', 'name', 'Edna Adan Maternity Hospital'),
(45783, 38534, 'no_lang_code', 'name', 'Novamedia (Italy)'),
(45784, 38535, 'no_lang_code', 'name', 'Technes AgrĆ­cola (Brazil)'),
(45785, 38536, 'en', 'name', 'Hindu Mission Hospital'),
(45786, 38537, 'en', 'name', 'Prince Aly Khan Hospital'),
(45787, 38538, 'no_lang_code', 'name', 'BMT Group (Brazil)'),
(45788, 38539, 'en', 'name', 'Boulder City Hospital'),
(45789, 38540, 'de', 'name', 'Verbundzentrale des GBV'),
(45790, 38540, 'en', 'name', 'Common Library Network'),
(45791, 38541, 'de', 'name', 'Fraunhofer-Institut für Schicht- und Oberflächentechnik'),
(45792, 38541, 'en', 'name', 'Fraunhofer Institute for Surface Engineering and Thin Films'),
(45793, 38542, 'no_lang_code', 'name', 'Sarojini Devi Eye Hospital'),
(45794, 38543, 'en', 'name', 'Kankakee State Hospital'),
(45795, 38544, 'en', 'name', 'Toowoomba Hospital'),
(45796, 38545, 'it', 'name', 'Azienda USL di Pescara'),
(45797, 38546, 'en', 'name', 'Dr Neville Fernando Teaching Hospital'),
(45798, 38547, 'no_lang_code', 'name', 'Plexision (United States)'),
(45799, 38548, 'en', 'name', 'Guangdong Province Women and Children Hospital'),
(45800, 38549, 'no', 'name', 'Lyskultur'),
(45801, 38550, 'pt', 'name', 'Associação Brasileira de Ciência Política'),
(45802, 38551, 'no_lang_code', 'name', 'SMA Tecnologia (Brazil)'),
(45803, 38552, 'en', 'name', 'Museum of Civilization'),
(45804, 38552, 'fr', 'name', 'MusƩe de la Civilisation'),
(45805, 38553, 'no_lang_code', 'name', 'Huta Stalowa Wola (Poland)'),
(45806, 38554, 'no_lang_code', 'name', 'ZF Friedrichshafen (Belgium)'),
(45807, 38555, 'en', 'name', 'Shenzhen Shajing Affiliated Hospital of Guangzhou Medical University'),
(45808, 38556, 'no_lang_code', 'name', 'PMEC Sistemas (Brazil)'),
(45809, 38557, 'no_lang_code', 'name', 'Acona (Norway)'),
(45810, 38558, 'no_lang_code', 'name', 'Medfiles (Finland)'),
(45811, 38559, 'en', 'name', 'American Society for Eighteenth-Century Studies'),
(45812, 38560, 'en', 'name', 'Society of Open Innovation Technology Market & Complexity'),
(45813, 38561, 'en', 'name', 'Department of Scientific and Industrial Research'),
(45814, 38562, 'en', 'name', 'Canadian Society of Allergy and Clinical Immunology'),
(45815, 38563, 'en', 'name', 'The Nairobi Women’s Hospital'),
(45816, 38564, 'no_lang_code', 'name', 'Redox (Norway)'),
(45817, 38565, 'no_lang_code', 'name', 'Timpel (Brazil)'),
(45818, 38566, 'en', 'name', 'Affiliated Hospital of Hebei University'),
(45819, 38567, 'no_lang_code', 'name', 'Teleplan Consulting (Norway)'),
(45820, 38568, 'de', 'name', 'Deutsche Gesellschaft für Auswärtige Politik'),
(45821, 38568, 'en', 'name', 'German Council on Foreign Relations'),
(45822, 38569, 'en', 'name', 'Viet Duc Hospital'),
(45823, 38569, 'vi', 'name', 'Bệnh viện Việt Đức'),
(45824, 38570, 'no_lang_code', 'name', 'Optolink (Russia)'),
(45825, 38571, 'no_lang_code', 'name', 'Consafe Logistics (Norway)'),
(45826, 38572, 'no_lang_code', 'name', 'ZRE Gdańsk (Poland)'),
(45827, 38573, 'no_lang_code', 'name', 'Smart Solution (Norway)'),
(45828, 38574, 'no', 'name', 'Stiftelsen Bergensklinikkene'),
(45829, 38575, 'pt', 'name', 'Instituto Polis'),
(45830, 38576, 'no_lang_code', 'name', 'PKP Group (Poland)'),
(45831, 38577, 'pt', 'name', 'Sociedade de Nefrologia do Estado de SĆ£o Paulo'),
(45832, 38578, 'en', 'name', 'Sanko University'),
(45833, 38579, 'no_lang_code', 'name', 'ECOsubsea (Norway)'),
(45834, 38580, 'no_lang_code', 'name', 'Lee''s Pharmaceutical (China)'),
(45835, 38581, 'en', 'name', 'Academy of Opto-Electronics'),
(45836, 38581, 'zh', 'name', '中国科学院光电研究院'),
(45837, 38582, 'no_lang_code', 'name', 'Inner Mongolia Yili Industrial Group (China)'),
(45838, 38582, 'zh', 'name', '伊利集团'),
(45839, 38583, 'cs', 'name', 'Centrum kardiovaskulĆ”rnĆ­ a transplantačnĆ­ chirurgie'),
(45840, 38584, 'en', 'name', 'African University College of Communications'),
(45841, 38585, 'no_lang_code', 'name', 'Thermaflex (Poland)'),
(45842, 38586, 'en', 'name', 'MarLife (Norway)'),
(45843, 38587, 'no_lang_code', 'name', 'Gastronomisk Institutt'),
(45844, 38588, 'en', 'name', 'Gangnam Severance Hospital'),
(45845, 38589, 'no_lang_code', 'name', 'Seaworks (Norway)'),
(45846, 38590, 'sl', 'name', 'Skupina IRI Ljubljana'),
(45847, 38591, 'en', 'name', 'Division of Physics'),
(45848, 38592, 'no_lang_code', 'name', 'Reactive Metal Particles (Norway)'),
(45849, 38593, 'en', 'name', 'Eastern Shore Memorial Hospital'),
(45850, 38594, 'no_lang_code', 'name', 'Idea Electronic Systems (Brazil)'),
(45851, 38594, 'pt', 'name', 'Idea Sistemas EletrƓnicos'),
(45852, 38595, 'no_lang_code', 'name', 'Sekal (Norway)'),
(45853, 38596, 'pt', 'name', 'Fundação Armando Alvares Penteado, Fundação Armando Álvares Penteado'),
(45854, 38597, 'no_lang_code', 'name', 'Nanobionics (Brazil)'),
(45855, 38598, 'en', 'name', 'Sacred Heart Hospital'),
(45856, 38599, 'no_lang_code', 'name', 'Rising Star Products (Norway)'),
(45857, 38600, 'no_lang_code', 'name', 'Wireless Power & Communication (Norway)'),
(45858, 38601, 'pt', 'name', 'Associação Nacional de Transportes Públicos'),
(45859, 38602, 'en', 'name', 'Peterborough Regional College'),
(45860, 38603, 'en', 'name', 'Institute for Comparative Research in Human Culture'),
(45861, 38604, 'no_lang_code', 'name', 'Seria (Norway)'),
(45862, 38605, 'no_lang_code', 'name', 'MedNose (Norway)'),
(45863, 38606, 'en', 'name', 'Ste. Anne''s Hospital'),
(45864, 38606, 'fr', 'name', 'HƓpital Sainte-Anne'),
(45865, 38607, 'no_lang_code', 'name', 'Calora Subsea (Norway)'),
(45866, 38608, 'no_lang_code', 'name', 'Fultec Inox (Brazil)'),
(45867, 38609, 'en', 'name', 'Jiangmen Central Hospital'),
(45868, 38610, 'en', 'name', 'Adventist International Institute of Advanced Studies'),
(45869, 38611, 'no_lang_code', 'name', 'BƦrgƄrden Ƙstre Enger (Norway)'),
(45870, 38612, 'no_lang_code', 'name', 'Geomatikk (Norway)'),
(45871, 38613, 'sl', 'name', 'S&T Slovenija'),
(45872, 38614, 'fr', 'name', 'Centre Hospitalier d''Albi'),
(45873, 38615, 'de', 'name', 'Kliniken Schmieder'),
(45874, 38616, 'fr', 'name', 'Centre Hospitalier Universitaire d’Oujda'),
(45875, 38617, 'no_lang_code', 'name', 'Remstat (Poland)'),
(45876, 38618, 'no_lang_code', 'name', 'Mustad (Norway)'),
(45877, 38619, 'no_lang_code', 'name', 'Epsis (Norway)'),
(45878, 38620, 'no_lang_code', 'name', 'Helly Hansen (Norway)'),
(45879, 38621, 'en', 'name', 'StrĆømme Foundation'),
(45880, 38622, 'en', 'name', 'Winnie Palmer Hospital for Women & Babies'),
(45881, 38623, 'en', 'name', 'Faculty of Design'),
(45882, 38624, 'no_lang_code', 'name', 'SAS Institute (Norway)'),
(45883, 38625, 'no_lang_code', 'name', 'NĆŗcleo de Pesquisas Aplicadas (Brazil)'),
(45884, 38626, 'no_lang_code', 'name', 'Environgas (Norway)'),
(45885, 38627, 'en', 'name', 'ASCE Foundation'),
(45886, 38628, 'en', 'name', 'Kitovu Hospital'),
(45887, 38629, 'no_lang_code', 'name', 'Leif HĆøegh (Norway)'),
(45888, 38630, 'en', 'name', 'Center for Innovation'),
(45889, 38631, 'no', 'name', 'Norsk FjĆørfelag'),
(45890, 38632, 'en', 'name', 'Camden and Campbelltown Hospitals'),
(45891, 38633, 'no_lang_code', 'name', 'TDJ (Poland)'),
(45892, 38634, 'no_lang_code', 'name', 'Norwegian Graphite (Norway)'),
(45893, 38635, 'no_lang_code', 'name', 'Rotoboost (Norway)'),
(45894, 38636, 'no_lang_code', 'name', 'PartnerPlast (Norway)'),
(45895, 38637, 'en', 'name', 'Dr. Rajendra Prasad Government Medical College'),
(45896, 38638, 'en', 'name', 'Wuhan Sixth Hospital'),
(45897, 38639, 'no_lang_code', 'name', 'Nord-TrĆøndelag Elektrisitetsverk (Norway)'),
(45898, 38640, 'no_lang_code', 'name', 'Tezca (Brazil)'),
(45899, 38641, 'no', 'name', 'Direktoratet for Ćøkonomistyring'),
(45900, 38642, 'en', 'name', 'Learn By Motion'),
(45901, 38643, 'en', 'name', 'Paradox Sports'),
(45902, 38644, 'no_lang_code', 'name', 'Algae Biotecnologia (Brazil)'),
(45903, 38645, 'en', 'name', 'Bedford Orthopedic Hospital'),
(45904, 38646, 'en', 'name', 'VIA University College'),
(45905, 38647, 'en', 'name', 'Norwegian Ports Association'),
(45906, 38648, 'en', 'name', 'Bialystok School of Economics'),
(45907, 38649, 'de', 'name', 'Praxis für Humangenetik'),
(45908, 38650, 'en', 'name', 'Alvin Community College'),
(45909, 38651, 'no_lang_code', 'name', 'Createc (United Kingdom)'),
(45910, 38652, 'es', 'name', 'Instituto Tecnológico de Ciudad Madero'),
(45911, 38653, 'no_lang_code', 'name', 'Lanopro (Norway)'),
(45912, 38654, 'en', 'name', 'Gena'),
(45913, 38655, 'no_lang_code', 'name', 'Cosmo Bio (Japan)'),
(45914, 38656, 'no_lang_code', 'name', 'Zenit (Poland)'),
(45915, 38657, 'no_lang_code', 'name', 'Svovel (Norway)'),
(45916, 38658, 'en', 'name', 'Henan Provincial Chest Hospital'),
(45917, 38658, 'zh', 'name', 'ę²³å—ēœčƒøē§‘åŒ»é™¢'),
(45918, 38659, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ال؄سراؔ'),
(45919, 38659, 'en', 'name', 'Isra University'),
(45920, 38660, 'ko', 'name', 'ķ˜œģ „ėŒ€ķ•™źµ'),
(45921, 38660, 'no_lang_code', 'name', 'Hyejeon College'),
(45922, 38661, 'en', 'name', 'Chesapeake College'),
(45923, 38662, 'en', 'name', 'IILM Institute for Higher Education'),
(45924, 38663, 'no_lang_code', 'name', 'Centagro (Brazil)'),
(45925, 38664, 'no_lang_code', 'name', 'Bio Soja Group (Brazil)'),
(45926, 38664, 'pt', 'name', 'Grupo Bio Soja'),
(45927, 38665, 'no_lang_code', 'name', 'PaleBlue (Norway)'),
(45928, 38666, 'no_lang_code', 'name', 'Mentum (Norway)'),
(45929, 38667, 'en', 'name', 'Canmore General Hospital'),
(45930, 38668, 'no_lang_code', 'name', 'Exova Metech (Norway)'),
(45931, 38669, 'en', 'name', 'Norwegian State Housing Bank'),
(45932, 38670, 'en', 'name', 'Albyn Hospital'),
(45933, 38671, 'en', 'name', 'Technological Institute of Jiquilpan'),
(45934, 38671, 'es', 'name', 'Instituto Tecnológico de Jiquilpan'),
(45935, 38672, 'en', 'name', 'Los Robles Hospital & Medical Center'),
(45936, 38673, 'no_lang_code', 'name', 'Líbera Tecnologia e Inovação (Brazil)'),
(45937, 38674, 'da', 'name', 'University College LillebƦlt'),
(45938, 38674, 'en', 'name', 'University College Lillebaelt'),
(45939, 38675, 'pt', 'name', 'Laboratório Biosintesis P&D'),
(45940, 38676, 'no_lang_code', 'name', 'Sava (Slovenia)'),
(45941, 38677, 'en', 'name', 'North-West State Technical University'),
(45942, 38678, 'no_lang_code', 'name', 'Mylifeproducts (Norway)'),
(45943, 38679, 'en', 'name', 'Jubilee Hospital'),
(45944, 38680, 'no_lang_code', 'name', 'I 2 Družba za ZaložniŔtvo Izobraževanje in Raziskovanje'),
(45945, 38681, 'pt', 'name', 'Associação Brasileira de Psicoterapia e Medicina Comportamental'),
(45946, 38682, 'en', 'name', 'BMI The Meriden Hospital'),
(45947, 38683, 'no_lang_code', 'name', 'Kayros Ambiental e AgrĆ­cola (Brazil)'),
(45948, 38684, 'en', 'name', 'Arroyo Grande Community Hospital'),
(45949, 38685, 'no_lang_code', 'name', 'Dencril (Brazil)'),
(45950, 38686, 'no_lang_code', 'name', 'Smi Human (Norway)'),
(45951, 38687, 'no_lang_code', 'name', 'Onsite Treatment Technologies (Norway)'),
(45952, 38688, 'no_lang_code', 'name', 'Trouw Nutrition (Brazil)'),
(45953, 38689, 'de', 'name', 'Robert Schumann Hochschule'),
(45954, 38689, 'en', 'name', 'Robert Schumann University of Music and Media'),
(45955, 38690, 'no_lang_code', 'name', 'Metal Plasma (Brazil)'),
(45956, 38691, 'en', 'name', 'Farooq Hospital'),
(45957, 38692, 'en', 'name', 'American Fork Hospital'),
(45958, 38693, 'en', 'name', 'Vermont State Hospital'),
(45959, 38694, 'de', 'name', 'Zentral- und Landesbibliothek Berlin'),
(45960, 38694, 'en', 'name', 'Berlin Central and Regional Library'),
(45961, 38695, 'no_lang_code', 'name', 'Nygon (Norway)'),
(45962, 38696, 'no_lang_code', 'name', 'Visma (Norway)'),
(45963, 38697, 'no_lang_code', 'name', 'Mytech (Japan)'),
(45964, 38698, 'en', 'name', 'Institute for Project Management and Information Technology'),
(45965, 38699, 'no_lang_code', 'name', 'Genbody (South Korea)'),
(45966, 38700, 'en', 'name', 'Bhisho Provincial Hospital'),
(45967, 38701, 'no', 'name', 'Sikkerhetssenteret RĆørvik'),
(45968, 38702, 'no_lang_code', 'name', 'WuXi AppTec (China)'),
(45969, 38703, 'no_lang_code', 'name', 'Therma Industri (Norway)'),
(45970, 38704, 'no_lang_code', 'name', 'Intrapoint (Norway)'),
(45971, 38705, 'no_lang_code', 'name', 'Odfjell Drilling (Norway)'),
(45972, 38706, 'no_lang_code', 'name', 'Biobe (Norway)'),
(45973, 38707, 'de', 'name', 'Prosper Hospital'),
(45974, 38708, 'en', 'name', 'Volgograd State Agricultural University'),
(45975, 38709, 'no_lang_code', 'name', 'Termall (Poland)'),
(45976, 38710, 'no_lang_code', 'name', 'Itabras Mineração (Brazil)'),
(45977, 38711, 'no_lang_code', 'name', 'Norges Vel (Norway)'),
(45978, 38712, 'en', 'name', 'Melrose-Wakefield Hospital'),
(45979, 38713, 'it', 'name', 'Ospedali Riuniti San Giovanni di Dio e Ruggi d''Aragona'),
(45980, 38714, 'fr', 'name', 'Agence Science Presse'),
(45981, 38715, 'no_lang_code', 'name', 'MEMS (Brazil)'),
(45982, 38716, 'no_lang_code', 'name', 'Nicarnica Aviation (Norway)'),
(45983, 38717, 'en', 'name', 'St John of God Hospital'),
(45984, 38718, 'en', 'name', 'Saint Mary''s Hospital Luodong'),
(45985, 38719, 'en', 'name', 'Joint Typhoon Warning Center'),
(45986, 38719, 'es', 'name', 'Centro Conjunto de Advertencia de Tifones'),
(45987, 38720, 'no_lang_code', 'name', 'PoliMaT Centre of Excellence (Slovenia)'),
(45988, 38721, 'en', 'name', 'Clovis Community College'),
(45989, 38722, 'no_lang_code', 'name', 'Aseon (Norway)'),
(45990, 38723, 'en', 'name', 'Red Deer Regional Hospital'),
(45991, 38724, 'en', 'name', 'Fifth Affiliated Hospital of Xinjiang Medical University'),
(45992, 38725, 'pl', 'name', 'Stowarzyszenie Łódzki Klub Amazonka'),
(45993, 38726, 'no_lang_code', 'name', 'Wojskowe Zakłady Motoryzacyjne (Poland)'),
(45994, 38727, 'no_lang_code', 'name', 'Colifast (Norway)'),
(45995, 38728, 'en', 'name', 'Divisional Headquarters Teaching Hospital Mirpur'),
(45996, 38729, 'en', 'name', 'Bayshore Community Hospital'),
(45997, 38730, 'no_lang_code', 'name', 'Kverneland Group (Norway)'),
(45998, 38731, 'de', 'name', 'UniversitƤtsklinikum Halle'),
(45999, 38731, 'en', 'name', 'University Hospital in Halle'),
(46000, 38732, 'no_lang_code', 'name', 'Biological Consulting Services (United States)'),
(46001, 38733, 'no_lang_code', 'name', 'FinnMedi (Finland)'),
(46002, 38734, 'no_lang_code', 'name', 'Salonit Anhovo (Slovenia)'),
(46003, 38735, 'en', 'name', 'Liv Hospital'),
(46004, 38736, 'en', 'name', 'Epsom Hospital'),
(46005, 38737, 'en', 'name', 'Kirsch Foundation'),
(46006, 38738, 'pt', 'name', 'Sociedade Brasileira de Estudos Interdisciplinares da Comunicação'),
(46007, 38739, 'no', 'name', 'OppegƄrd Kommune'),
(46008, 38740, 'no_lang_code', 'name', 'Olivita (Norway)'),
(46009, 38741, 'pt', 'name', 'NĆŗcleo Paradigma'),
(46010, 38742, 'en', 'name', 'North East University'),
(46011, 38743, 'no_lang_code', 'name', 'Chaotic.com (United States)'),
(46012, 38744, 'en', 'name', 'He Eye Hospital'),
(46013, 38745, 'en', 'name', 'South Norway European Office'),
(46014, 38746, 'no_lang_code', 'name', 'Elea iC (Slovenia)'),
(46015, 38747, 'en', 'name', 'Mackay Base Hospital'),
(46016, 38748, 'en', 'name', 'Fort Ticonderoga Association'),
(46017, 38749, 'en', 'name', 'Community Health Centre Ljubljana'),
(46018, 38750, 'no_lang_code', 'name', 'NTNU Technology Transfer (Norway)'),
(46019, 38751, 'de', 'name', 'NiedersƤchsisches Landesarchiv'),
(46020, 38752, 'no_lang_code', 'name', 'Ecotec Equipment and Systems (Brazil)'),
(46021, 38753, 'de', 'name', 'Bibliotheca Hertziana - Max-Planck-Institut für Kunstgeschichte'),
(46022, 38753, 'en', 'name', 'Bibliotheca Hertziana – Max Planck Institute for Art History'),
(46023, 38754, 'no_lang_code', 'name', 'ALIS Engineering and Systems Solutions (Brazil)'),
(46024, 38754, 'pt', 'name', 'ALIS SoluƧƵes em Engenharia e Sistemas'),
(46025, 38755, 'no_lang_code', 'name', 'Fortis Hospital'),
(46026, 38756, 'no_lang_code', 'name', 'Piql (Norway)'),
(46027, 38757, 'no_lang_code', 'name', 'Jool Capital Partner (Norway)'),
(46028, 38758, 'en', 'name', 'Sir Sunderlal Hospital'),
(46029, 38759, 'no_lang_code', 'name', 'Aanderaa (Norway)'),
(46030, 38760, 'no_lang_code', 'name', 'NorTronic (Norway)'),
(46031, 38761, 'no_lang_code', 'name', 'Vipharm (Poland)'),
(46032, 38762, 'no_lang_code', 'name', 'ASPA (Poland)'),
(46033, 38763, 'no_lang_code', 'name', 'Nanofitotec (Brazil)'),
(46034, 38764, 'no_lang_code', 'name', 'Fredrikstad Energi (Norway)'),
(46035, 38765, 'pt', 'name', 'Instituto Cultural Cravo Albin'),
(46036, 38766, 'no', 'name', 'Norsk Medieforskerlag'),
(46037, 38767, 'no_lang_code', 'name', 'Scatec (Norway)'),
(46038, 38768, 'en', 'name', 'American Heart of Poland'),
(46039, 38769, 'en', 'name', 'Jining First People''s Hospital'),
(46040, 38769, 'zh', 'name', 'ęµŽå®åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(46041, 38770, 'no_lang_code', 'name', 'GeoPlayGround (Norway)'),
(46042, 38771, 'no_lang_code', 'name', 'Gran Tre (Norway)'),
(46043, 38772, 'no_lang_code', 'name', 'Life Science Center Düsseldorf (Germany)'),
(46044, 38773, 'en', 'name', 'Welding Institute (Slovenia)'),
(46045, 38774, 'no_lang_code', 'name', 'Bio Controle (Brazil)'),
(46046, 38775, 'es', 'name', 'Hospital BritƔnico'),
(46047, 38776, 'no_lang_code', 'name', 'Etac (Norway)'),
(46048, 38777, 'en', 'name', 'Coahoma Community College'),
(46049, 38778, 'no_lang_code', 'name', 'Chiron (Norway)'),
(46050, 38779, 'no_lang_code', 'name', 'Wasko (Poland)'),
(46051, 38780, 'no_lang_code', 'name', 'Bartec Pixavi (Norway)'),
(46052, 38781, 'no_lang_code', 'name', 'Smartcom:tv (Norway)'),
(46053, 38782, 'en', 'name', 'College of Podiatry'),
(46054, 38783, 'en', 'name', 'Sobell House'),
(46055, 38784, 'no_lang_code', 'name', 'Empilisweni District Hospital'),
(46056, 38785, 'en', 'name', 'Central Piedmont Community College'),
(46057, 38786, 'en', 'name', 'Gheskio Centers'),
(46058, 38787, 'en', 'name', 'Kalmunai North Hospital'),
(46059, 38787, 'ta', 'name', 'ą®•ą®²ąÆą®®ąÆą®©ąÆˆ ą®µą®Ÿą®•ąÆą®•ąÆ ஆதார ą®µąÆˆą®¤ąÆą®¤ą®æą®Æą®šą®¾ą®²ąÆˆ'),
(46060, 38788, 'en', 'name', 'Chinese General Hospital and Medical Center'),
(46061, 38789, 'en', 'name', 'Bay State College'),
(46062, 38790, 'no_lang_code', 'name', 'Visuray (Norway)'),
(46063, 38791, 'en', 'name', 'Virika Hospital'),
(46064, 38792, 'en', 'name', 'Roscommon University Hospital'),
(46065, 38792, 'ga', 'name', 'OspidƩal Chontae Ros ComƔin'),
(46066, 38793, 'en', 'name', 'Chamber of Agriculture and Forestry of Slovenia'),
(46067, 38794, 'no_lang_code', 'name', 'Histoindex (Singapore)'),
(46068, 38795, 'no', 'name', 'Dans i Skolen'),
(46069, 38796, 'no', 'name', 'Egal Teater'),
(46070, 38797, 'no_lang_code', 'name', 'Prophylix Pharma (Norway)'),
(46071, 38798, 'no', 'name', 'VestvÄgøy Kommune'),
(46072, 38799, 'no_lang_code', 'name', 'Wang Electro-Opto (United States)'),
(46073, 38800, 'en', 'name', 'Aviation General Hospital'),
(46074, 38801, 'no_lang_code', 'name', 'Badger Explorer (Norway)'),
(46075, 38802, 'en', 'name', 'Paddington Cat Hospital'),
(46076, 38803, 'no_lang_code', 'name', 'Arkitektbedriftene (Norway)'),
(46077, 38804, 'en', 'name', 'Hewu Hospital'),
(46078, 38805, 'no_lang_code', 'name', 'RLP AgroScience (Germany)'),
(46079, 38806, 'en', 'name', 'National Education Institute of the Republic of Slovenia'),
(46080, 38807, 'en', 'name', 'Ufa State University of Economics and Service'),
(46081, 38808, 'en', 'name', 'Centre of Excellence NAMASTE'),
(46082, 38809, 'no_lang_code', 'name', 'Engene (Brazil)'),
(46083, 38810, 'no_lang_code', 'name', 'Genomed (Poland)'),
(46084, 38811, 'en', 'name', 'Edmond and Lily Safra Children''s Hospital'),
(46085, 38812, 'en', 'name', 'Indian Agricultural Universities Association'),
(46086, 38813, 'en', 'name', 'Babasaheb Bhimrao Ambedkar Bihar University'),
(46087, 38814, 'no_lang_code', 'name', 'Wirescan (Norway)'),
(46088, 38815, 'de', 'name', 'St. Joseph-Krankenhaus'),
(46089, 38816, 'en', 'name', 'Scientific Research Centre Bistra Ptu'),
(46090, 38817, 'en', 'name', 'Yangon Children''s Hospital'),
(46091, 38817, 'my', 'name', 'į€›į€”į€ŗį€€į€Æį€”į€ŗį€€į€œį€±į€øį€†į€±į€øį€›į€Æį€¶į€€į€¼į€®'),
(46092, 38818, 'en', 'name', 'Carolinas HealthCare Foundation'),
(46093, 38819, 'no_lang_code', 'name', 'SelĆøy Undervannsservice (Norway)'),
(46094, 38820, 'no_lang_code', 'name', 'Swix Sport (Norway)'),
(46095, 38821, 'en', 'name', 'National Institute of Technology, Toyama College'),
(46096, 38821, 'ja', 'name', 'åÆŒå±±é«˜ē­‰å°‚é–€å­¦ę ”'),
(46097, 38822, 'pt', 'name', 'Sociedade Brasileira de Medicina Nuclear e Imagem Molecular'),
(46098, 38823, 'no', 'name', 'JƦrmuseet'),
(46099, 38824, 'no_lang_code', 'name', 'Welding Science (Brazil)'),
(46100, 38825, 'en', 'name', 'KKR ENT Hospital and Research Institute'),
(46101, 38826, 'no_lang_code', 'name', 'Van Drunen Farms (United States)'),
(46102, 38827, 'en', 'name', '108 Military Central Hospital'),
(46103, 38827, 'vi', 'name', 'Bệnh viện Trung ʰʔng QuĆ¢n đội 108'),
(46104, 38828, 'en', 'name', 'Beijing Royal Integrative Medicine Hospital'),
(46105, 38829, 'es', 'name', 'Centro de Ciencias Penales y PolĆ­tica Criminal'),
(46106, 38830, 'no_lang_code', 'name', 'Norsk Medisinsk Syklotronsenter (Norway)'),
(46107, 38831, 'en', 'name', 'Office of Integrative Activities'),
(46108, 38832, 'no_lang_code', 'name', 'Farmacore (Brazil)'),
(46109, 38833, 'no_lang_code', 'name', 'Przemysłowe Centrum Optyki (Poland)'),
(46110, 38834, 'no_lang_code', 'name', 'Enhanced Drilling (Norway)'),
(46111, 38835, 'no_lang_code', 'name', 'Kleive Mekaniske and Industriservice (Norway)'),
(46112, 38836, 'no_lang_code', 'name', 'CD-adapco (Germany)'),
(46113, 38837, 'en', 'name', 'Institute of Homeopathy James Tyler Kent'),
(46114, 38837, 'pt', 'name', 'Instituto de Homeopatia James Tyler Kent'),
(46115, 38838, 'no_lang_code', 'name', 'Polsat (Poland)'),
(46116, 38839, 'no_lang_code', 'name', 'Flex (Canada)'),
(46117, 38840, 'no_lang_code', 'name', 'Zephyr Software (United States)'),
(46118, 38841, 'en', 'name', 'Confederation of Norwegian Enterprise'),
(46119, 38842, 'en', 'name', 'Deccan School of Hospital Management'),
(46120, 38843, 'no', 'name', 'Finnmark Fylkeskommune'),
(46121, 38844, 'no_lang_code', 'name', 'Nunatak (Norway)'),
(46122, 38845, 'no_lang_code', 'name', 'Feedback Aquaculture (Norway)'),
(46123, 38846, 'no_lang_code', 'name', 'WindMaster Technologies'),
(46124, 38847, 'no_lang_code', 'name', 'Maritime MĆøbler (Norway)'),
(46125, 38848, 'de', 'name', 'Helmholtz-Institut Münster'),
(46126, 38848, 'en', 'name', 'Helmholtz-Institute Münster'),
(46127, 38849, 'en', 'name', 'Madras Institute of Development Studies'),
(46128, 38849, 'ta', 'name', 'ą®šąÆ†ą®©ąÆą®©ąÆˆ ą®µą®³ą®°ąÆą®šąÆą®šą®æ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(46129, 38850, 'no_lang_code', 'name', 'LABO Mixed Realities (Norway)'),
(46130, 38851, 'no_lang_code', 'name', 'Radenska (Slovenia)'),
(46131, 38852, 'en', 'name', 'State University of AmapĆ”'),
(46132, 38852, 'pt', 'name', 'Universidade Estadual do AmapĆ”'),
(46133, 38853, 'pt', 'name', 'Associação Brasileira de Alergia e Imunologia'),
(46134, 38854, 'hi', 'name', 'ą¤†ą¤Øą¤‚ą¤¦ą¤²ą„‹ą¤• ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(46135, 38854, 'no_lang_code', 'name', 'Anandalok Hospital'),
(46136, 38855, 'en', 'name', 'Jaseng Hospital of Korean Medicine'),
(46137, 38856, 'no_lang_code', 'name', 'Oida Hospital'),
(46138, 38857, 'en', 'name', 'Maksymilian Pluta Institute of Applied Optics'),
(46139, 38858, 'no_lang_code', 'name', 'Tele-Fonika Kable (Poland)'),
(46140, 38859, 'no_lang_code', 'name', 'Silkem (Slovenia)'),
(46141, 38860, 'no_lang_code', 'name', 'Dynea (Norway)'),
(46142, 38861, 'en', 'name', 'Documenta Archive'),
(46143, 38862, 'it', 'name', 'Ospedale Buon Consiglio Fatebenefratelli'),
(46144, 38863, 'no_lang_code', 'name', 'Tind Technologies (Norway)'),
(46145, 38864, 'no_lang_code', 'name', 'Bialanx (United States)'),
(46146, 38865, 'en', 'name', 'Chinook Regional Hospital'),
(46147, 38866, 'fr', 'name', 'CEA LETI'),
(46148, 38867, 'no_lang_code', 'name', 'Aqualex Multimedia Consortium (Ireland)'),
(46149, 38868, 'en', 'name', 'Division of Astronomical Sciences'),
(46150, 38869, 'en', 'name', 'Chandragupt Institute of Management'),
(46151, 38870, 'no_lang_code', 'name', 'Ayasdi (United States)'),
(46152, 38871, 'no_lang_code', 'name', 'Organia (Brazil)'),
(46153, 38872, 'en', 'name', 'Wayne County Historical Society'),
(46154, 38873, 'pt', 'name', 'Instituto Nacional de Educação de Surdos'),
(46155, 38874, 'no_lang_code', 'name', 'Enjet (South Korea)'),
(46156, 38875, 'no_lang_code', 'name', 'Thoni Alutec (Poland)'),
(46157, 38876, 'en', 'name', 'British Veterinary Association'),
(46158, 38877, 'en', 'name', 'Hickman Community Hospital'),
(46159, 38878, 'no_lang_code', 'name', 'Sensor Tech (Poland)'),
(46160, 38879, 'en', 'name', 'AdventHealth Lake Placid'),
(46161, 38880, 'en', 'name', 'First People''s Hospital of Nanning'),
(46162, 38881, 'no_lang_code', 'name', 'Megafine Pharma (India)'),
(46163, 38882, 'no_lang_code', 'name', 'SST it solutions (Brazil)');
INSERT INTO `ror_settings` VALUES
(46164, 38883, 'no_lang_code', 'name', 'High Density Devices (Norway)'),
(46165, 38884, 'no', 'name', 'Sogndal Fotball'),
(46166, 38885, 'en', 'name', 'National Science Library'),
(46167, 38885, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę–‡ēŒ®ęƒ…ęŠ„äø­åæƒ'),
(46168, 38886, 'en', 'name', 'Coal Mining Museum of Slovenia'),
(46169, 38887, 'no_lang_code', 'name', 'Abelium (Slovenia)'),
(46170, 38888, 'en', 'name', 'Nova revija Institute for Humanities'),
(46171, 38889, 'de', 'name', 'Augustana-Hochschule Neuendettelsau'),
(46172, 38890, 'no_lang_code', 'name', 'Tommen Gram Folie (Norway)'),
(46173, 38891, 'no_lang_code', 'name', 'Nextomics Biosciences (China)'),
(46174, 38891, 'zh', 'name', 'ęœŖę„ē»„ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(46175, 38892, 'no_lang_code', 'name', 'Ekliptik (Slovenia)'),
(46176, 38893, 'en', 'name', 'Institute of Criminology'),
(46177, 38894, 'de', 'name', 'Historisches Archiv der Stadt Kƶln'),
(46178, 38894, 'en', 'name', 'Historical Archive of the City of Cologne'),
(46179, 38895, 'en', 'name', 'Tang Hospital'),
(46180, 38896, 'no_lang_code', 'name', 'Douchebags (Norway)'),
(46181, 38897, 'no_lang_code', 'name', 'Fesil (Norway)'),
(46182, 38898, 'no_lang_code', 'name', 'B. Braun (Germany)'),
(46183, 38899, 'no_lang_code', 'name', 'Drug Discovery Laboratory (Norway)'),
(46184, 38900, 'en', 'name', 'Therapeutic Guidelines'),
(46185, 38901, 'en', 'name', 'Skagit Valley Hospital'),
(46186, 38902, 'no_lang_code', 'name', 'Funcom (Norway)'),
(46187, 38903, 'en', 'name', 'Shoalhaven District Memorial Hospital'),
(46188, 38904, 'en', 'name', 'Angal Hospital'),
(46189, 38905, 'no_lang_code', 'name', 'Gce Node Service (Norway)'),
(46190, 38906, 'no_lang_code', 'name', 'Logiq (Norway)'),
(46191, 38907, 'no_lang_code', 'name', 'Maritime Suppliers (Norway)'),
(46192, 38908, 'no_lang_code', 'name', 'Alfa (Norway)'),
(46193, 38909, 'no_lang_code', 'name', 'Joma International (Norway)'),
(46194, 38910, 'en', 'name', 'St. Theresa’s Multi-Speciality Hospital'),
(46195, 38910, 'te', 'name', 'ą°øą±†ą°Æą°æą°‚ą°Ÿą± తెరెసా ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(46196, 38911, 'no_lang_code', 'name', 'Expansão Científica (Brazil)'),
(46197, 38912, 'no_lang_code', 'name', 'Aarbakke Innovation (Norway)'),
(46198, 38913, 'fr', 'name', 'Centre de Liaison Sur l''Intervention et la PrƩvention Psychosociales'),
(46199, 38914, 'no_lang_code', 'name', 'Nortek (Norway)'),
(46200, 38915, 'en', 'name', 'Laidlaw College'),
(46201, 38916, 'en', 'name', 'Wakari Hospital'),
(46202, 38917, 'no_lang_code', 'name', 'AquaGen (Norway)'),
(46203, 38918, 'en', 'name', 'Beijing Open University'),
(46204, 38919, 'pt', 'name', 'Associação Brasileira de Oncologia VeterinÔria'),
(46205, 38920, 'no_lang_code', 'name', 'Metrolab CalibraƧƵes (Brazil)'),
(46206, 38921, 'no_lang_code', 'name', 'Novocure (United States)'),
(46207, 38922, 'no_lang_code', 'name', 'Ener-G (Norway)'),
(46208, 38923, 'en', 'name', 'Our Lady of Bellefonte Hospital'),
(46209, 38924, 'no_lang_code', 'name', 'Gartnerhallen (Norway)'),
(46210, 38925, 'en', 'name', 'The Scarborough Hospital'),
(46211, 38926, 'no_lang_code', 'name', 'NutriVita Suplementos (Brazil)'),
(46212, 38927, 'en', 'name', 'EM Strasbourg Business School'),
(46213, 38928, 'no_lang_code', 'name', 'Evac (Norway)'),
(46214, 38929, 'en', 'name', 'Trinity Hospital of Augusta'),
(46215, 38930, 'en', 'name', 'Sugarcane Breeding Institute'),
(46216, 38931, 'en', 'name', 'Islamic Azad University of Kashan'),
(46217, 38931, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کاؓان'),
(46218, 38932, 'no_lang_code', 'name', 'Biotech (Brazil)'),
(46219, 38933, 'en', 'name', 'Institute of Mathematics'),
(46220, 38933, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики ŠŠŠ Украины'),
(46221, 38933, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики ŠŠŠ України'),
(46222, 38934, 'no_lang_code', 'name', 'GGG (Norway)'),
(46223, 38935, 'no_lang_code', 'name', 'Inven2 (Norway)'),
(46224, 38936, 'no_lang_code', 'name', 'Pipetech International (Norway)'),
(46225, 38937, 'no_lang_code', 'name', 'Sensorlink (Norway)'),
(46226, 38938, 'en', 'name', 'Isothermal Community College'),
(46227, 38939, 'no_lang_code', 'name', 'Voss Scientific (United States)'),
(46228, 38940, 'no_lang_code', 'name', 'Osrodek Konstrukcyjno Badawczy (Poland)'),
(46229, 38941, 'en', 'name', 'Desert Valley Hospital'),
(46230, 38942, 'en', 'name', 'Department of Public'),
(46231, 38943, 'en', 'name', 'MediHope Super Specialty Hospital'),
(46232, 38944, 'en', 'name', 'International Hereditary Cancer Center'),
(46233, 38945, 'pl', 'name', 'Fundacja Ewy Błaszczyk Akogo'),
(46234, 38946, 'no_lang_code', 'name', 'Environmental Tectonics (Poland)'),
(46235, 38947, 'no_lang_code', 'name', 'Esri Polska (Poland)'),
(46236, 38948, 'en', 'name', 'Division of Biological Infrastructure'),
(46237, 38949, 'en', 'name', 'Ministry of Development, Industry and Foreign Trade'),
(46238, 38949, 'pt', 'name', 'Ministério do Desenvolvimento, Indústria e Comércio Exterior'),
(46239, 38950, 'de', 'name', 'Hessisches Landesmuseum Darmstadt'),
(46240, 38951, 'en', 'name', 'Nordland County Council'),
(46241, 38952, 'en', 'name', 'Alyn Hospital'),
(46242, 38953, 'en', 'name', 'Bumin Hospital Group'),
(46243, 38954, 'no_lang_code', 'name', 'CenterKontura (Slovenia)'),
(46244, 38955, 'en', 'name', 'Central Alabama Community College'),
(46245, 38956, 'no_lang_code', 'name', 'Foley Hoag (United States)'),
(46246, 38957, 'fr', 'name', 'MontrƩal InVivo'),
(46247, 38958, 'no_lang_code', 'name', 'Auto Galeria (Poland)'),
(46248, 38959, 'fr', 'name', 'Kaplan international colleges'),
(46249, 38959, 'no_lang_code', 'name', 'Kaplan (United States)'),
(46250, 38960, 'no_lang_code', 'name', 'BjĆørnson (Norway)'),
(46251, 38961, 'no_lang_code', 'name', 'OptiNose (Norway)'),
(46252, 38962, 'de', 'name', 'Ɩsterreichische UniversitƤtenkonferenz'),
(46253, 38962, 'en', 'name', 'Universities Austria'),
(46254, 38963, 'no_lang_code', 'name', 'CodeIT (Norway)'),
(46255, 38964, 'no_lang_code', 'name', 'AMZ (Poland)'),
(46256, 38965, 'pt', 'name', 'Sociedade Brasileira de Fruticultura'),
(46257, 38966, 'en', 'name', 'National Library of Serbia'),
(46258, 38966, 'sr', 'name', 'ŠŠ°Ń€Š¾Š“Š½Š° библиотека Š”Ń€Š±ŠøŃ˜Šµ'),
(46259, 38967, 'en', 'name', 'Central State Hospital'),
(46260, 38968, 'en', 'name', 'AdventHealth Sebring'),
(46261, 38969, 'no_lang_code', 'name', 'Figgjo (Norway)'),
(46262, 38970, 'en', 'name', 'City College Coventry'),
(46263, 38971, 'no_lang_code', 'name', 'FORCE Technology (Norway)'),
(46264, 38972, 'en', 'name', 'Royal Hospital School'),
(46265, 38973, 'no_lang_code', 'name', 'Global Pet (Brazil)'),
(46266, 38974, 'no_lang_code', 'name', 'Chriship (Norway)'),
(46267, 38975, 'en', 'name', 'Federation of Experimental Biology Societies'),
(46268, 38975, 'pt', 'name', 'Federação de Sociedades de Biologia Experimental'),
(46269, 38976, 'no_lang_code', 'name', 'Scanmar (Norway)'),
(46270, 38977, 'no', 'name', 'Berg kommune'),
(46271, 38978, 'en', 'name', 'John F Finn Institute for Public Safety'),
(46272, 38979, 'en', 'name', 'College of Southern Idaho'),
(46273, 38980, 'en', 'name', 'Manchester Academic Health Science Centre'),
(46274, 38981, 'en', 'name', 'University of Central Asia'),
(46275, 38982, 'no_lang_code', 'name', 'Regentis Biomaterials (Israel)'),
(46276, 38983, 'en', 'name', 'Butterworth Hospital'),
(46277, 38984, 'fr', 'name', 'Centre Jeunesse de Quebec'),
(46278, 38985, 'en', 'name', 'Central Lakes College'),
(46279, 38986, 'fr', 'name', 'Institut d''Histoire du Temps PrƩsent'),
(46280, 38987, 'no_lang_code', 'name', 'EN-FIST Centre of Excellence (Slovenia)'),
(46281, 38988, 'en', 'name', 'Adelaide Provincial Hospital'),
(46282, 38989, 'en', 'name', 'Al Khawarizmi International College'),
(46283, 38990, 'en', 'name', 'Chung Cheong University'),
(46284, 38990, 'ko', 'name', 'ģ¶©ģ²­ėŒ€ķ•™źµ'),
(46285, 38990, 'zh', 'name', '忠淸大學'),
(46286, 38991, 'no_lang_code', 'name', 'CLS Technology (Norway)'),
(46287, 38992, 'no_lang_code', 'name', 'TrĆønderEnergi (Norway)'),
(46288, 38993, 'no_lang_code', 'name', 'Promip (Brazil)'),
(46289, 38994, 'en', 'name', 'Covenant Theological Seminary'),
(46290, 38995, 'pt', 'name', 'Sociedade de UsuƔrios de Computadores e Equipamentos SubsidiƔrios, Sucesu Nacional'),
(46291, 38996, 'no_lang_code', 'name', 'Magnamed (Brazil)'),
(46292, 38997, 'de', 'name', 'Stadtbibliothek Nürnberg'),
(46293, 38998, 'no_lang_code', 'name', 'OilCraft (Norway)'),
(46294, 38999, 'no_lang_code', 'name', 'Labcom Sistemas (Brazil)'),
(46295, 39000, 'no_lang_code', 'name', 'Dantherm Power (Denmark)'),
(46296, 39001, 'no_lang_code', 'name', 'Adapti (Slovenia)'),
(46297, 39002, 'en', 'name', 'Rideout Memorial Hospital'),
(46298, 39003, 'pt', 'name', 'Fundação Paulista de Tecnologia e Educação'),
(46299, 39004, 'no_lang_code', 'name', 'Condor Instruments (Brazil)'),
(46300, 39005, 'en', 'name', 'Balıklı Greek Hospital'),
(46301, 39005, 'tr', 'name', 'Balikli Rum Vakfi Hastanesi, Balıklı Rum Hastanesi'),
(46302, 39006, 'en', 'name', 'St. Rose Dominican Hospital'),
(46303, 39007, 'no_lang_code', 'name', 'Versis Tecnologia (Brazil)'),
(46304, 39008, 'en', 'name', 'Andries Vosloo Hospital'),
(46305, 39009, 'pt', 'name', 'Associação Brasileira de Pesquisadores de Comunicação Organizacional e de Relações Públicas'),
(46306, 39010, 'en', 'name', 'Nanjing Institute of Astronomical Optics & Technology'),
(46307, 39010, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å—äŗ¬å¤©ę–‡å…‰å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(46308, 39011, 'en', 'name', 'Shandong Shierming Eye Hospital'),
(46309, 39012, 'en', 'name', 'Dawson Community College'),
(46310, 39013, 'en', 'name', 'G. Kuppuswamy Naidu Memorial Hospital'),
(46311, 39014, 'pt', 'name', 'Sociedade Brasileira de Imunologia'),
(46312, 39015, 'en', 'name', 'Neath Port Talbot Hospital'),
(46313, 39016, 'no_lang_code', 'name', 'Anlegg Bolig RĆør & Varme AS (Norway)'),
(46314, 39017, 'en', 'name', 'Department of Corrections'),
(46315, 39018, 'no_lang_code', 'name', 'BioGenex (India)'),
(46316, 39019, 'sv', 'name', 'Sjukhuset i Lidkƶping'),
(46317, 39020, 'no_lang_code', 'name', 'Ulltveit-Moe Group (Norway)'),
(46318, 39021, 'no_lang_code', 'name', 'Eramet (Norway)'),
(46319, 39022, 'de', 'name', 'St.-Johannes-Hospital Dortmund'),
(46320, 39023, 'no_lang_code', 'name', 'Nature Oil & Gas (Norway)'),
(46321, 39024, 'de', 'name', 'Malteser Krankenhaus St. Anna'),
(46322, 39025, 'no_lang_code', 'name', 'Global Colors Polska (Poland)'),
(46323, 39026, 'en', 'name', 'Sackville Memorial Hospital'),
(46324, 39027, 'no_lang_code', 'name', 'Abraxas Olgierd Jeremiasz (Poland)'),
(46325, 39028, 'no_lang_code', 'name', 'Wakaba Hospital'),
(46326, 39029, 'no_lang_code', 'name', 'Innovative Scientific Solutions (United States)'),
(46327, 39030, 'pt', 'name', 'Fundação CECIERJ'),
(46328, 39031, 'pt', 'name', 'Museu de Astronomia e CiĆŖncias Afins'),
(46329, 39032, 'no_lang_code', 'name', 'Stinger Technology (Norway)'),
(46330, 39033, 'no_lang_code', 'name', 'WB Electronics (Poland)'),
(46331, 39034, 'en', 'name', 'Museum of Migration'),
(46332, 39035, 'en', 'name', 'Antelope Valley Hospital'),
(46333, 39036, 'no_lang_code', 'name', 'PluriCell (Brazil)'),
(46334, 39037, 'no_lang_code', 'name', 'Kjeller Vindteknikk (Norway)'),
(46335, 39038, 'no_lang_code', 'name', 'Aventa (Norway)'),
(46336, 39039, 'en', 'name', 'Norwegian Water'),
(46337, 39040, 'no_lang_code', 'name', 'Terenzi (Brazil)'),
(46338, 39041, 'sk', 'name', 'Stredna Priemyselna Skola Samuela Mikoviniho'),
(46339, 39042, 'no_lang_code', 'name', 'MiniHydro (Norway)'),
(46340, 39043, 'no', 'name', 'Kvinner i Skogbruket'),
(46341, 39044, 'en', 'name', 'Jakarta State Polytechnic'),
(46342, 39044, 'id', 'name', 'Politeknik Negeri Jakarta'),
(46343, 39044, 'jv', 'name', 'PolitĆØknik Negri Jakarta'),
(46344, 39045, 'en', 'name', 'St. Elizabeth''s Hospital'),
(46345, 39046, 'en', 'name', 'Panzhihua Central Hospital'),
(46346, 39047, 'no_lang_code', 'name', 'Indústria Brasileira de MÔquinas e Equipamentos (Brazil)'),
(46347, 39048, 'no_lang_code', 'name', 'Victor Vision (Brazil)'),
(46348, 39049, 'en', 'name', 'Technological Institute of Saltillo'),
(46349, 39049, 'es', 'name', 'Instituto Tecnológico de Saltillo'),
(46350, 39050, 'no_lang_code', 'name', 'Geotecno (Brazil)'),
(46351, 39051, 'no_lang_code', 'name', 'Gtac Solutions (Brazil)'),
(46352, 39052, 'no_lang_code', 'name', 'Cemad (Poland)'),
(46353, 39053, 'en', 'name', 'Norwegian Fund and Asset Management Association'),
(46354, 39054, 'no_lang_code', 'name', 'Pachemtech (Poland)'),
(46355, 39055, 'en', 'name', 'Centennial Hills Hospital'),
(46356, 39056, 'no_lang_code', 'name', 'Mentor Interactive (Brazil)'),
(46357, 39057, 'no_lang_code', 'name', 'OP Bio Factory (Japan)'),
(46358, 39058, 'no_lang_code', 'name', 'General Electric (Norway)'),
(46359, 39059, 'ro', 'name', 'Universitatea Ioan Slavici'),
(46360, 39060, 'de', 'name', 'Leibniz-Institut für Oberflächenmodifizierung'),
(46361, 39060, 'en', 'name', 'Leibniz Institute of Surface Engineering'),
(46362, 39061, 'no_lang_code', 'name', 'Flavor Tec (Brazil)'),
(46363, 39062, 'no_lang_code', 'name', 'Remora (Norway)'),
(46364, 39063, 'no_lang_code', 'name', 'Vilpo (Slovenia)'),
(46365, 39064, 'no_lang_code', 'name', 'Erichsen & Horgen (Norway)'),
(46366, 39065, 'pt', 'name', 'Instituto Nacional da Propriedade Industrial'),
(46367, 39066, 'no_lang_code', 'name', 'Simula Innovation (Norway)'),
(46368, 39067, 'en', 'name', 'Changsha Hospital for Maternal and Child Health Care'),
(46369, 39068, 'no_lang_code', 'name', 'LaserTools Tecnologia (Brazil)'),
(46370, 39069, 'no_lang_code', 'name', 'Rolvsoy Metalindustri (Norway)'),
(46371, 39070, 'pt', 'name', 'Secretaria Municipal de Cultura'),
(46372, 39071, 'en', 'name', 'Mittal hospital'),
(46373, 39072, 'no_lang_code', 'name', 'IT&D Informação Tecnologia e Desenvolvimento (Brazil)'),
(46374, 39073, 'no_lang_code', 'name', '7Sense Group (Norway)'),
(46375, 39074, 'no_lang_code', 'name', 'Accenture (Norway)'),
(46376, 39075, 'no_lang_code', 'name', 'Tagarno Norge (Norway)'),
(46377, 39076, 'en', 'name', 'University College of Commerce & Business Management'),
(46378, 39077, 'no_lang_code', 'name', 'CapCOGITO (Canada)'),
(46379, 39078, 'en', 'name', 'Texas Health Arlington Memorial'),
(46380, 39079, 'en', 'name', 'Llanfrechfa Grange Hospital'),
(46381, 39080, 'no_lang_code', 'name', 'Norsonic (Norway)'),
(46382, 39081, 'de', 'name', 'Hochschule für Bildende Künste Dresden'),
(46383, 39081, 'en', 'name', 'Dresden Academy of Fine Arts'),
(46384, 39082, 'en', 'name', 'Institute of Contemporary History'),
(46385, 39083, 'no_lang_code', 'name', 'Grieg Group (Norway)'),
(46386, 39084, 'de', 'name', 'Staatliche Kunstsammlungen Dresden'),
(46387, 39084, 'en', 'name', 'Dresden State Art Collections'),
(46388, 39085, 'pt', 'name', 'Instituto Superior de Educação do Rio de Janeiro'),
(46389, 39086, 'no', 'name', 'Nesna Kommune'),
(46390, 39087, 'en', 'name', 'Malacca General Hospital'),
(46391, 39087, 'ms', 'name', 'Hospital Melaka'),
(46392, 39088, 'no_lang_code', 'name', 'Benchmark Holdings (Norway)'),
(46393, 39089, 'en', 'name', 'Institute for Ethnic Studies'),
(46394, 39090, 'no_lang_code', 'name', 'Ele-DriveCo (Poland)'),
(46395, 39091, 'en', 'name', 'Valley Regional Hospital'),
(46396, 39092, 'no_lang_code', 'name', 'Synthetica (Norway)'),
(46397, 39093, 'en', 'name', 'Yangon Central Women''s Hospital'),
(46398, 39093, 'my', 'name', 'ရန်ကုန် į€—į€Ÿį€­į€Æ į€”į€™į€»į€­į€Æį€øį€žį€™į€®į€ø ဆေးရုံ'),
(46399, 39094, 'en', 'name', 'Gilbert Bain Hospital'),
(46400, 39095, 'no_lang_code', 'name', 'Metallteknikk (Norway)'),
(46401, 39096, 'no_lang_code', 'name', 'Globus Medical (United States)'),
(46402, 39097, 'en', 'name', 'St John Berchmans University College'),
(46403, 39098, 'en', 'name', 'M. S. Ramaiah Dental College and Hospital'),
(46404, 39099, 'no_lang_code', 'name', 'Navita (Brazil)'),
(46405, 39100, 'en', 'name', 'Sri Sai Super Speciality Hospital'),
(46406, 39100, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ साई ą¤øą„ą¤Ŗą¤° ą¤øą„ą¤Ŗą„‡ą¤¶ą¤²ą¤æą¤Ÿą„€ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(46407, 39101, 'en', 'name', 'POSC Caesar Association'),
(46408, 39102, 'es', 'name', 'Hospital San Hipólito'),
(46409, 39103, 'no_lang_code', 'name', 'Izolacja-Jarocin (Poland)'),
(46410, 39104, 'no_lang_code', 'name', 'Aqualine (Norway)'),
(46411, 39105, 'no_lang_code', 'name', 'Ronkowski (Poland)'),
(46412, 39106, 'en', 'name', 'Institute of Paleobiology'),
(46413, 39106, 'pl', 'name', 'Instytut Paleobiologii'),
(46414, 39107, 'no_lang_code', 'name', 'Invenia (Norway)'),
(46415, 39108, 'pt', 'name', 'Fundação Escola de Comércio Álvares Penteado'),
(46416, 39109, 'pl', 'name', 'Polskie Sieci Elektroenergetyczne'),
(46417, 39110, 'no_lang_code', 'name', 'Hermes Microvision (United States)'),
(46418, 39111, 'en', 'name', 'BA School of Business and Finance'),
(46419, 39111, 'lv', 'name', 'Banku Augstskola'),
(46420, 39112, 'no_lang_code', 'name', 'SquareHead Technology (Norway)'),
(46421, 39113, 'no_lang_code', 'name', 'Verdaz (Brazil)'),
(46422, 39114, 'en', 'name', 'Nobody’s Children Foundation'),
(46423, 39115, 'no_lang_code', 'name', 'TechnipFMC (Norway)'),
(46424, 39116, 'en', 'name', 'Colorado Wyoming Academy of Science'),
(46425, 39117, 'no_lang_code', 'name', 'Delfin Technologies (Finland)'),
(46426, 39118, 'no_lang_code', 'name', 'W5 Technlogies (United States)'),
(46427, 39119, 'en', 'name', 'Chenzhou First People''s Hospital'),
(46428, 39120, 'en', 'name', 'Oakville-Trafalgar Memorial Hospital'),
(46429, 39121, 'en', 'name', 'Novika Solutions'),
(46430, 39122, 'no', 'name', 'Stiftinga For Folkemusikk og Folkedans'),
(46431, 39123, 'no', 'name', 'Overhalla Kommune'),
(46432, 39124, 'no_lang_code', 'name', 'PriMove Infrastructure Development Consultants (India)'),
(46433, 39125, 'no_lang_code', 'name', 'Borginnovasj (Norway)'),
(46434, 39126, 'en', 'name', 'Samaritan Lebanon Community Hospital'),
(46435, 39127, 'en', 'name', 'Johnston Community College'),
(46436, 39128, 'no_lang_code', 'name', 'Infineon Technologies (Norway)'),
(46437, 39129, 'en', 'name', 'Brazilian Network Information Center'),
(46438, 39129, 'pt', 'name', 'Núcleo de Informação e Coordenação do Ponto BR'),
(46439, 39130, 'no_lang_code', 'name', 'Coss (Brazil)'),
(46440, 39131, 'pt', 'name', 'Fundação Bienal de São Paulo'),
(46441, 39132, 'no_lang_code', 'name', 'Ente (Poland)'),
(46442, 39133, 'af', 'name', 'Het Zuid-Afrikaans Hospitaal en Diakonessenhuis'),
(46443, 39133, 'en', 'name', 'Zuid-Afrikaans Hospital'),
(46444, 39134, 'no_lang_code', 'name', 'Sigurd LĆøkeland (Norway)'),
(46445, 39135, 'no_lang_code', 'name', 'Miko Marine (Norway)'),
(46446, 39136, 'fr', 'name', 'RĆ©seau Technoscience Saguenay–Lac-Saint-Jean'),
(46447, 39137, 'en', 'name', 'Anderson Hospital'),
(46448, 39138, 'en', 'name', 'Tang Du Hospital'),
(46449, 39139, 'fr', 'name', 'Ordre des Psychologues du QuƩbec'),
(46450, 39140, 'it', 'name', 'Azienda Ospedaliera Nazionale SS. Antonio e Biagio e Cesare Arrigo'),
(46451, 39141, 'en', 'name', 'Arignar Anna Memorial Cancer Hospital & Research Institute'),
(46452, 39141, 'ta', 'name', 'ą®…ą®°ą®šąÆ ą®…ą®±ą®æą®žą®°ąÆ ą®…ą®£ąÆą®£ą®¾ நினைவு ą®ŖąÆą®±ąÆą®±ąÆą®ØąÆ‹ą®ÆąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆą®ÆąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®²ąÆˆą®Æą®®ąÆą®®ąÆ'),
(46453, 39142, 'no_lang_code', 'name', 'Lucotec (Brazil)'),
(46454, 39143, 'no_lang_code', 'name', 'Nanonics Imaging (Israel)'),
(46455, 39144, 'no_lang_code', 'name', 'Setred (Norway)'),
(46456, 39145, 'no_lang_code', 'name', 'C10 Pharma (Norway)'),
(46457, 39146, 'no_lang_code', 'name', 'Mepex Consult (Norway)'),
(46458, 39147, 'no', 'name', 'Mektron'),
(46459, 39148, 'no_lang_code', 'name', 'Industriell Design og Teknologi (Norway)'),
(46460, 39149, 'en', 'name', 'Norwegian Agency for Development Cooperation'),
(46461, 39150, 'no_lang_code', 'name', 'Zoaring (Norway)'),
(46462, 39151, 'pt', 'name', 'Faculdade de Mococa'),
(46463, 39152, 'no', 'name', 'LĆødingen kommune'),
(46464, 39153, 'no_lang_code', 'name', 'Unger Fabrikker (Norway)'),
(46465, 39154, 'en', 'name', 'Lloydminster Hospital'),
(46466, 39155, 'no_lang_code', 'name', 'Hangzhou Xixi hospital'),
(46467, 39156, 'sl', 'name', 'Animal Hospital Postojna'),
(46468, 39157, 'en', 'name', 'Center for Scientific Research and Higher Education at Ensenada'),
(46469, 39157, 'es', 'name', 'Centro de Investigación Científica y de Educación Superior de Ensenada'),
(46470, 39158, 'en', 'name', 'Daewon University College'),
(46471, 39158, 'ko', 'name', 'ėŒ€ģ›ėŒ€ķ•™źµ'),
(46472, 39159, 'no_lang_code', 'name', 'Jets Vacuum (Norway)'),
(46473, 39160, 'en', 'name', 'International Society for Ecological Economics'),
(46474, 39161, 'en', 'name', 'Fisheries Research Institute of Slovenia'),
(46475, 39162, 'no_lang_code', 'name', 'ProteobrƔs (Brazil)'),
(46476, 39163, 'no_lang_code', 'name', 'Akvaforsk Genetics Center (Norway)'),
(46477, 39164, 'en', 'name', 'Insch War Memorial Hospital'),
(46478, 39165, 'no_lang_code', 'name', 'L3Harris (Norway)'),
(46479, 39166, 'no', 'name', 'Studentsamskipnaden i Trondheim'),
(46480, 39167, 'no_lang_code', 'name', 'Orkana Forlag (Norway)'),
(46481, 39168, 'en', 'name', 'Shenzhen Zhongshan Urological Hospital'),
(46482, 39169, 'da', 'name', 'ProfessionshĆøjskolen UCC'),
(46483, 39169, 'en', 'name', 'University College Capital'),
(46484, 39170, 'no_lang_code', 'name', 'Novartis (Slovenia)'),
(46485, 39171, 'no_lang_code', 'name', 'Chavakachcheri Hospital'),
(46486, 39172, 'no_lang_code', 'name', 'Antoniosi Tecnologia Agroindustrial (Brazil)'),
(46487, 39173, 'no_lang_code', 'name', 'Tendeka (Norway)'),
(46488, 39174, 'en', 'name', 'National Institute of Anthropology and History'),
(46489, 39174, 'es', 'name', 'Instituto Nacional de AntropologĆ­a e Historia'),
(46490, 39175, 'pt', 'name', 'Sociedade Brasileira de Pesquisa Odontológica'),
(46491, 39176, 'en', 'name', 'County Governor of SĆør-TrĆøndelag'),
(46492, 39177, 'en', 'name', 'Lindbergh Foundation'),
(46493, 39178, 'en', 'name', 'Somerset Hospital'),
(46494, 39179, 'no_lang_code', 'name', 'FraktefartĆøyenes Rederiforening (Norway)'),
(46495, 39180, 'en', 'name', 'Ishaka Adventist Hospital'),
(46496, 39181, 'en', 'name', 'The Bristol-Myers Squibb Children''s Hospital'),
(46497, 39182, 'no_lang_code', 'name', 'Admit (Norway)'),
(46498, 39183, 'de', 'name', 'LVR-Klinik Kƶln'),
(46499, 39184, 'no', 'name', 'MarkedhĆøyskolen'),
(46500, 39185, 'no', 'name', 'Norsk Algeforening'),
(46501, 39186, 'no_lang_code', 'name', 'Misque (Brazil)'),
(46502, 39187, 'en', 'name', 'Villa Torri Hospital'),
(46503, 39188, 'en', 'name', 'Division of Engineering Education & Centers'),
(46504, 39189, 'no_lang_code', 'name', 'Alpina (Slovenia)'),
(46505, 39190, 'en', 'name', 'Institute of Deep-Sea Science and Engineering'),
(46506, 39190, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę·±ęµ·ē§‘å­¦äøŽå·„ēØ‹ē ”ē©¶ę‰€'),
(46507, 39191, 'en', 'name', 'Equator Aircraft Norway'),
(46508, 39192, 'en', 'name', 'Free and Open Source Software Foundation'),
(46509, 39193, 'no_lang_code', 'name', 'Fjord IT (Norway)'),
(46510, 39194, 'no', 'name', 'Sandefjord Kommune'),
(46511, 39195, 'no_lang_code', 'name', 'Eletrovento (Brazil)'),
(46512, 39196, 'en', 'name', 'Kanagawa Dental University'),
(46513, 39196, 'ja', 'name', 'ē„žå„ˆå·ę­Æē§‘å¤§å­¦'),
(46514, 39197, 'no_lang_code', 'name', 'Cappelen Damm (Norway)'),
(46515, 39198, 'de', 'name', 'Max-Planck-Institut für ausländisches öffentliches Recht und Völkerrecht'),
(46516, 39198, 'en', 'name', 'Max Planck Institute for Comparative Public Law and International Law'),
(46517, 39199, 'en', 'name', 'Kingston University'),
(46518, 39200, 'en', 'name', 'Knox Theological Seminary'),
(46519, 39201, 'no_lang_code', 'name', 'Ostomycure (Norway)'),
(46520, 39202, 'en', 'name', 'Manor College'),
(46521, 39203, 'no_lang_code', 'name', 'Gonar (Poland)'),
(46522, 39204, 'en', 'name', 'Samaritan Albany General Hospital'),
(46523, 39205, 'no_lang_code', 'name', 'Sensum (Slovenia)'),
(46524, 39206, 'no_lang_code', 'name', 'Selventa (United States)'),
(46525, 39207, 'en', 'name', 'Dublin Business School'),
(46526, 39208, 'no_lang_code', 'name', 'Caritas Hospital'),
(46527, 39209, 'no_lang_code', 'name', 'Engimplan (Brazil)'),
(46528, 39210, 'en', 'name', 'Division of Mathematical Sciences'),
(46529, 39211, 'no_lang_code', 'name', 'Domos (Norway)'),
(46530, 39212, 'pt', 'name', 'Fundação Carlos Chagas'),
(46531, 39213, 'en', 'name', 'Henan Provincial Eye Hospital'),
(46532, 39213, 'zh', 'name', 'ę²³å—ēœēœ¼ē§‘ē ”ē©¶ę‰€'),
(46533, 39214, 'en', 'name', 'Fernand Braudel Institute of World Economics'),
(46534, 39214, 'pt', 'name', 'Instituto Fernand Braudel de Economia Mundial'),
(46535, 39215, 'de', 'name', 'Endokrinologikum'),
(46536, 39216, 'en', 'name', 'Institute for Church, Religion, and Worldview Research'),
(46537, 39217, 'en', 'name', 'University of the Nations'),
(46538, 39218, 'en', 'name', 'Encino Hospital Medical Center'),
(46539, 39219, 'ar', 'name', 'المعهد Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ Ų§Ł„Ų¹Ų§Ł„ŁŠ'),
(46540, 39219, 'en', 'name', 'Higher Technological Institute'),
(46541, 39220, 'no_lang_code', 'name', 'Imatis (Norway)'),
(46542, 39221, 'no_lang_code', 'name', 'Fjellstrand (Norway)'),
(46543, 39222, 'it', 'name', 'Azienda Ospedaliero-Universitaria Policlinico - Vittorio Emanuele'),
(46544, 39223, 'pt', 'name', 'Faculdades Integradas Teresa D''Ɓvila'),
(46545, 39224, 'no_lang_code', 'name', 'BrasilOzƓnio (Brazil)'),
(46546, 39225, 'en', 'name', 'Academy of Physiotherapy in Wrocław'),
(46547, 39226, 'en', 'name', 'IBAT College'),
(46548, 39227, 'en', 'name', 'Juan S. Alano Memorial Hospital'),
(46549, 39228, 'en', 'name', 'Ridgecrest Regional Hospital'),
(46550, 39229, 'no_lang_code', 'name', 'Unigen Tecnologia pelo DNA (Brazil)'),
(46551, 39230, 'de', 'name', 'Hochschule für Musik und Tanz Köln'),
(46552, 39230, 'en', 'name', 'Cologne University of Music'),
(46553, 39231, 'de', 'name', 'Siloah St. Trudpert Klinikum'),
(46554, 39232, 'en', 'name', 'Municipality of Andebu'),
(46555, 39233, 'no_lang_code', 'name', 'FiberWork (Brazil)'),
(46556, 39234, 'no_lang_code', 'name', 'Kryptus (Brazil)'),
(46557, 39235, 'en', 'name', 'Shanmuganathan Engineering College'),
(46558, 39236, 'en', 'name', 'Brazilian Academy of Audiology'),
(46559, 39236, 'pt', 'name', 'Academia Brasileira de Audiologia'),
(46560, 39237, 'en', 'name', 'Simula School'),
(46561, 39238, 'de', 'name', 'Hochschule für Jüdische Studien'),
(46562, 39239, 'no_lang_code', 'name', 'Invenire Internacional InformƔtica (Brazil)'),
(46563, 39240, 'no_lang_code', 'name', 'Cuesta (Brazil)'),
(46564, 39241, 'no_lang_code', 'name', 'Norwex (Norway)'),
(46565, 39242, 'en', 'name', 'Aberdeen Regional Hospital'),
(46566, 39243, 'en', 'name', 'National School of Leadership in Education'),
(46567, 39244, 'en', 'name', 'Northwest Orthopaedic Specialists'),
(46568, 39245, 'de', 'name', 'Staatliches Museum für Völkerkunde'),
(46569, 39245, 'en', 'name', 'Five Continents Museum'),
(46570, 39246, 'no_lang_code', 'name', 'Underbakke (Norway)'),
(46571, 39247, 'de', 'name', 'Carl Gustav Carus-Institut'),
(46572, 39248, 'en', 'name', 'Institute of Biology and Technology'),
(46573, 39248, 'fr', 'name', 'Institut de Biologie et Technologies'),
(46574, 39249, 'en', 'name', 'Norwegian Film Institute'),
(46575, 39250, 'en', 'name', 'Hung Yen University of Technology and Education'),
(46576, 39250, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m Kỹ thuįŗ­t Hʰng YĆŖn'),
(46577, 39251, 'no_lang_code', 'name', 'Muthu Hospital'),
(46578, 39252, 'no_lang_code', 'name', 'FMP Technology (Germany)'),
(46579, 39253, 'en', 'name', 'Weiss Memorial Hospital'),
(46580, 39254, 'en', 'name', 'Askham Bryan College'),
(46581, 39255, 'no_lang_code', 'name', 'VoiceASP (Norway)'),
(46582, 39256, 'no_lang_code', 'name', 'Mobilarm (Norway)'),
(46583, 39257, 'en', 'name', 'First Affiliated Hospital of Henan University'),
(46584, 39258, 'pt', 'name', 'Instituto Estadual de Diabetes e Endocrinologia Luiz Capriglione'),
(46585, 39259, 'en', 'name', 'Division of Information and Intelligent Systems'),
(46586, 39260, 'af', 'name', 'Onderstepoort-dierehospitaal'),
(46587, 39260, 'en', 'name', 'Onderstepoort Veterinary Academic Hospital'),
(46588, 39261, 'de', 'name', 'Evangelische Theologische Faculteit'),
(46589, 39261, 'en', 'name', 'Evangelical Theological Faculty'),
(46590, 39261, 'fr', 'name', 'FacultƩ de thƩologie ƩvangƩlique de louvain'),
(46591, 39261, 'nl', 'name', 'Evangelische Theologische Faculteit Leuven'),
(46592, 39262, 'en', 'name', 'Concordia Hospital'),
(46593, 39263, 'no_lang_code', 'name', 'CreoTech (Norway)'),
(46594, 39264, 'no_lang_code', 'name', 'LivaNova (Belgium)'),
(46595, 39265, 'no_lang_code', 'name', 'City Motion (Norway)'),
(46596, 39266, 'no_lang_code', 'name', 'Animalia (Norway)'),
(46597, 39267, 'no_lang_code', 'name', 'Vitenparken'),
(46598, 39268, 'no_lang_code', 'name', 'ETI Elektroelement (Slovenia)'),
(46599, 39269, 'en', 'name', 'Paper and Fibre Research Institute'),
(46600, 39270, 'no_lang_code', 'name', 'Astronika (Poland)'),
(46601, 39271, 'no_lang_code', 'name', 'Agra (Norway)'),
(46602, 39272, 'en', 'name', 'Wuhan Technical College of Communications'),
(46603, 39273, 'en', 'name', 'Ethiopian Police University College'),
(46604, 39274, 'no_lang_code', 'name', 'Capwell (Norway)'),
(46605, 39275, 'no_lang_code', 'name', 'Subsea Chokes International (Norway)'),
(46606, 39276, 'en', 'name', 'Airport Shunyi District Hospital'),
(46607, 39277, 'en', 'name', 'St Luke''s Hospital'),
(46608, 39278, 'no_lang_code', 'name', 'Genomar (Norway)'),
(46609, 39279, 'it', 'name', 'Azienda Ospedaliera Pugliese Ciaccio'),
(46610, 39280, 'no_lang_code', 'name', 'BRI Offshore (Norway)'),
(46611, 39281, 'no_lang_code', 'name', 'Camo (Norway)'),
(46612, 39282, 'en', 'name', 'United Nations University – Maastricht Economic and Social Research Institute on Innovation and Technology'),
(46613, 39283, 'no_lang_code', 'name', 'Softhis (Poland)'),
(46614, 39284, 'no', 'name', 'Hedmark Kunnskapspark'),
(46615, 39285, 'no_lang_code', 'name', 'Overplay (Brazil)'),
(46616, 39286, 'en', 'name', 'Dr. Everett Chalmers Regional Hospital'),
(46617, 39287, 'en', 'name', 'International University MITSO'),
(46618, 39288, 'no_lang_code', 'name', 'Vibrant Data (United States)'),
(46619, 39289, 'en', 'name', 'Central Finland Health Care District'),
(46620, 39289, 'fi', 'name', 'Keski-Suomen keskussairaala'),
(46621, 39290, 'no_lang_code', 'name', 'BR Express (Brazil)'),
(46622, 39291, 'en', 'name', 'World Laparoscopy Hospital'),
(46623, 39292, 'no_lang_code', 'name', 'Unifeeder (Norway)'),
(46624, 39293, 'no_lang_code', 'name', 'Mikanit (Poland)'),
(46625, 39294, 'no_lang_code', 'name', 'Biochos (Norway)'),
(46626, 39295, 'no_lang_code', 'name', 'Azumi Hospital'),
(46627, 39296, 'no_lang_code', 'name', 'Nordic Mining (Norway)'),
(46628, 39297, 'no_lang_code', 'name', 'RemovAid (Norway)'),
(46629, 39298, 'en', 'name', 'Palo Verde Hospital'),
(46630, 39299, 'en', 'name', 'Norwegian Beekeepers Association'),
(46631, 39300, 'no_lang_code', 'name', 'Lid Invest (Norway)'),
(46632, 39301, 'en', 'name', 'Metro Health Hospital'),
(46633, 39302, 'no_lang_code', 'name', 'Jordan Valley Semiconductors (China)'),
(46634, 39303, 'de', 'name', 'St. Remigius Krankenhaus Opladen'),
(46635, 39304, 'de', 'name', 'Institut für EnergieTransformation'),
(46636, 39305, 'no_lang_code', 'name', 'Bionor (Norway)'),
(46637, 39306, 'no_lang_code', 'name', 'InterMedium (Norway)'),
(46638, 39307, 'no_lang_code', 'name', 'Spesialprodukter SĆør (Norway)'),
(46639, 39308, 'no_lang_code', 'name', 'Unichem (Slovenia)'),
(46640, 39309, 'no_lang_code', 'name', 'Crown Bioscience (China)'),
(46641, 39310, 'no_lang_code', 'name', 'Teknomedia (Norway)'),
(46642, 39311, 'no_lang_code', 'name', 'Intertek (Switzerland)'),
(46643, 39312, 'en', 'name', 'Institute of Internal Auditors Norway'),
(46644, 39313, 'no_lang_code', 'name', 'Neorad (Norway)'),
(46645, 39314, 'sk', 'name', 'SlovenskĆ” SpoločnosÅ„ pre Kvalitu'),
(46646, 39315, 'no_lang_code', 'name', 'Centro de Espectrometria de Massas Aplicada (Brazil)'),
(46647, 39316, 'no_lang_code', 'name', 'Enel (Poland)'),
(46648, 39317, 'no_lang_code', 'name', 'Orkel (Norway)'),
(46649, 39318, 'en', 'name', 'Oslo Cancer Cluster'),
(46650, 39319, 'no_lang_code', 'name', 'Glor (Norway)'),
(46651, 39320, 'no_lang_code', 'name', 'Pemco (Norway)'),
(46652, 39321, 'no_lang_code', 'name', 'BioCer Entwicklungs (Germany)'),
(46653, 39322, 'no_lang_code', 'name', 'Strainoptics (United States)'),
(46654, 39323, 'no_lang_code', 'name', 'Med-Storm Innovation (Norway)'),
(46655, 39324, 'en', 'name', 'Ng Teng Fong General Hospital'),
(46656, 39325, 'en', 'name', 'Norwegian Nobel Institute'),
(46657, 39326, 'no_lang_code', 'name', 'Limpgas Tecnologia (Brazil)'),
(46658, 39327, 'en', 'name', 'Stephen Cottage Hospital'),
(46659, 39328, 'no_lang_code', 'name', 'Impact Clean Power Technology (Poland)'),
(46660, 39329, 'sl', 'name', 'TehnoloŔko raziskovalni center JUB'),
(46661, 39330, 'en', 'name', '421 Hospital of PLA'),
(46662, 39331, 'en', 'name', 'Bible College of South Australia'),
(46663, 39332, 'de', 'name', 'Krankenhaus Neuwerk "Maria von den Aposteln"'),
(46664, 39333, 'no_lang_code', 'name', 'Jiangsu Shengze Hospital'),
(46665, 39334, 'no_lang_code', 'name', 'Serodus (Norway)'),
(46666, 39335, 'da', 'name', 'ProfessionshĆøjskolen University College Nordjylland'),
(46667, 39335, 'en', 'name', 'University College of Northern Denmark'),
(46668, 39336, 'en', 'name', 'Defense Language Institute Foreign Language Center'),
(46669, 39337, 'no_lang_code', 'name', 'Marex (Norway)'),
(46670, 39338, 'no_lang_code', 'name', 'Griaule Biometrics (Brazil)'),
(46671, 39339, 'pt', 'name', 'Sociedade AstronƓmica Brasileira'),
(46672, 39340, 'en', 'name', 'St. Luke''s Hospital'),
(46673, 39341, 'no_lang_code', 'name', 'NanoPhotonica (United States)'),
(46674, 39342, 'no_lang_code', 'name', 'Explomet (Poland)'),
(46675, 39343, 'en', 'name', 'Raulerson Hospital'),
(46676, 39344, 'en', 'name', 'Stony Brook Children''s Hospital'),
(46677, 39345, 'no_lang_code', 'name', 'XMobots (Brazil)'),
(46678, 39346, 'en', 'name', 'National Wheelchair Softball Association'),
(46679, 39347, 'en', 'name', 'Caneus International'),
(46680, 39348, 'no_lang_code', 'name', 'Solution Seeker (Norway)'),
(46681, 39349, 'es', 'name', 'Hospital Base Guillermo Almenara Irigoyen'),
(46682, 39350, 'en', 'name', 'Fusion UK'),
(46683, 39351, 'no', 'name', 'Vitensenteret SĆørlandet'),
(46684, 39352, 'en', 'name', 'University College Lahore'),
(46685, 39353, 'no_lang_code', 'name', 'Nordic Quantum Computing Group (Norway)'),
(46686, 39354, 'no_lang_code', 'name', 'Incubadora Tecnológica Univap Revap (Brazil)'),
(46687, 39355, 'no_lang_code', 'name', 'K & K Designs (Norway)'),
(46688, 39356, 'en', 'name', 'Beijing Fengtai Hospital'),
(46689, 39357, 'no_lang_code', 'name', 'Camlin Technologies (United Kingdom)'),
(46690, 39358, 'no_lang_code', 'name', 'Encap Security (Norway)'),
(46691, 39359, 'en', 'name', 'Glion Institute of Higher Education'),
(46692, 39359, 'fr', 'name', 'Institut de hautes Ʃtudes de glion'),
(46693, 39360, 'no', 'name', 'Ungt EntreprenĆørskap'),
(46694, 39361, 'es', 'name', 'Sociedad de BiologĆ­a de Chile'),
(46695, 39362, 'no_lang_code', 'name', 'Klohn Crippen Berger (Canada)'),
(46696, 39363, 'no_lang_code', 'name', 'Jolly Aero (Slovenia)'),
(46697, 39364, 'no_lang_code', 'name', 'Solstad Offshore (Norway)'),
(46698, 39365, 'en', 'name', 'Sami Parliament of Finland'),
(46699, 39366, 'en', 'name', 'Government Unani and Ayurvedic Degree College and Hospital'),
(46700, 39367, 'en', 'name', 'Beijing Hospital of Traditional Chinese Medicine'),
(46701, 39367, 'zh', 'name', 'åŒ—äŗ¬åø‚äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(46702, 39368, 'no_lang_code', 'name', 'Norsk KirkegƄrdsservice (Norway)'),
(46703, 39369, 'sl', 'name', 'Veterinarska Bolnica Maribor'),
(46704, 39370, 'no', 'name', 'MĆøre og Romsdal Fylkeskommune'),
(46705, 39371, 'en', 'name', 'Norwegian Institute of Emotion-focused Therapy'),
(46706, 39372, 'no_lang_code', 'name', 'Snowdon (United States)'),
(46707, 39373, 'en', 'name', 'Jagannath University'),
(46708, 39374, 'en', 'name', 'Sciences and Education Research Council'),
(46709, 39374, 'pt', 'name', 'Conselho de Pesquisas em Educação e Ciências'),
(46710, 39375, 'no_lang_code', 'name', 'Quality Management Software (Norway)'),
(46711, 39376, 'pt', 'name', 'Fundação André Tosello'),
(46712, 39377, 'en', 'name', 'Norwegian Centre for Space-related Education'),
(46713, 39378, 'en', 'name', 'Central Mental Hospital'),
(46714, 39379, 'no_lang_code', 'name', 'Polskie Górnictwo Naftowe i Gazownictwo (Poland)'),
(46715, 39380, 'no_lang_code', 'name', 'Hamidia Hospital'),
(46716, 39381, 'no_lang_code', 'name', 'Oncoinvent (Norway)'),
(46717, 39382, 'no_lang_code', 'name', 'Limnos (Slovenia)'),
(46718, 39383, 'no_lang_code', 'name', 'NLI Innovation (Norway)'),
(46719, 39384, 'no_lang_code', 'name', 'NorMedia (Norway)'),
(46720, 39385, 'no_lang_code', 'name', 'Mechanix Film (Norway)'),
(46721, 39386, 'en', 'name', 'Aust-Agder County Municipality'),
(46722, 39387, 'no_lang_code', 'name', 'Hexalab (Brazil)'),
(46723, 39388, 'no_lang_code', 'name', 'Comptel (Norway)'),
(46724, 39389, 'no_lang_code', 'name', 'King Oscar (Norway)'),
(46725, 39390, 'fr', 'name', 'Institut de Physique ThƩorique'),
(46726, 39391, 'en', 'name', 'Alameda Hospital'),
(46727, 39392, 'en', 'name', 'Guangdong Province Science and Technology Library'),
(46728, 39393, 'de', 'name', 'Brandenburgisches Landeshauptarchiv'),
(46729, 39393, 'en', 'name', 'Brandenburg Main State Archive'),
(46730, 39394, 'en', 'name', 'Quebec - Clinical Research Organization in Cancer'),
(46731, 39394, 'fr', 'name', 'Consortium de Recherche en Oncologie Clinique du QuƩbec'),
(46732, 39395, 'en', 'name', 'Innovest'),
(46733, 39396, 'pt', 'name', 'Secretaria da Segurança Pública'),
(46734, 39397, 'de', 'name', 'Spital Limmattal'),
(46735, 39398, 'no_lang_code', 'name', 'Triad (Norway)'),
(46736, 39399, 'no', 'name', 'SpareBank 1 Nord-Norge'),
(46737, 39400, 'en', 'name', 'Giustino Fortunato University'),
(46738, 39400, 'it', 'name', 'UniversitĆ  degli Studi Giustino Fortunato'),
(46739, 39401, 'de', 'name', 'Deutsches Orient-Institut'),
(46740, 39401, 'en', 'name', 'German Orient Foundation'),
(46741, 39402, 'fr', 'name', 'UniversitƩ des Sciences, de Technologie et de MƩdecine'),
(46742, 39403, 'en', 'name', 'Mercy Tiffin Hospital'),
(46743, 39404, 'no_lang_code', 'name', 'Papirbredden Innovasjon (Norway)'),
(46744, 39405, 'en', 'name', 'Morton Hospital'),
(46745, 39406, 'no_lang_code', 'name', 'Calanus (Norway)'),
(46746, 39407, 'en', 'name', 'Alliance for European Diabetes Research'),
(46747, 39408, 'no_lang_code', 'name', 'Lucinski (Brazil)'),
(46748, 39409, 'no_lang_code', 'name', 'Trysil Kommune'),
(46749, 39410, 'en', 'name', 'Women of Essence'),
(46750, 39411, 'no_lang_code', 'name', 'REN (Norway)'),
(46751, 39412, 'no_lang_code', 'name', 'Clean Silicon (Norway)'),
(46752, 39413, 'fr', 'name', 'Institut du Nouveau Monde'),
(46753, 39414, 'no_lang_code', 'name', 'Premium Rosa (Poland)'),
(46754, 39415, 'no_lang_code', 'name', 'Preseria (Norway)'),
(46755, 39416, 'ja', 'name', '金沢病院'),
(46756, 39416, 'no_lang_code', 'name', 'Kanazawa Hospital'),
(46757, 39417, 'en', 'name', 'Labour Institute for Economic Research'),
(46758, 39418, 'no_lang_code', 'name', 'TKK'),
(46759, 39419, 'no_lang_code', 'name', 'Nigrad (Slovenia)'),
(46760, 39420, 'no_lang_code', 'name', 'Aliança Orgânica Soluções Ambientais (Brazil)'),
(46761, 39421, 'no_lang_code', 'name', 'Unified Messaging Systems (Norway)'),
(46762, 39422, 'en', 'name', 'Norwegian Labour Inspection Authority'),
(46763, 39423, 'no', 'name', 'Asker kommune'),
(46764, 39424, 'no_lang_code', 'name', 'Danko Hodowla Roślin (Poland)'),
(46765, 39425, 'en', 'name', 'Sector Asset Management'),
(46766, 39426, 'no_lang_code', 'name', 'Norsk Juletre (Norway)'),
(46767, 39427, 'en', 'name', 'International Ocean Discovery Program'),
(46768, 39428, 'no_lang_code', 'name', 'Sypress Forlag (Norway)'),
(46769, 39429, 'no_lang_code', 'name', 'Regatta (Norway)'),
(46770, 39430, 'en', 'name', 'Peace Institute- Institute for Contemporary Social and Political Studies'),
(46771, 39431, 'en', 'name', 'Intercultural Open University Foundation'),
(46772, 39432, 'en', 'name', 'CURE Children’s Hospital of Uganda'),
(46773, 39433, 'en', 'name', 'Nakaseke Hospital'),
(46774, 39434, 'pt', 'name', 'Sociedade Brasileira de História da Ciência'),
(46775, 39435, 'no_lang_code', 'name', 'Glencore (Norway)'),
(46776, 39436, 'no_lang_code', 'name', 'Spider Solutions (Norway)'),
(46777, 39437, 'no_lang_code', 'name', 'Nema Research (United States)'),
(46778, 39438, 'en', 'name', 'GS1 Norway'),
(46779, 39439, 'bn', 'name', 'আশা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ বাংলাদেশ'),
(46780, 39439, 'en', 'name', 'ASA University Bangladesh'),
(46781, 39440, 'no_lang_code', 'name', 'Dynavec (Norway)'),
(46782, 39441, 'no_lang_code', 'name', 'Nordic Semiconductor (Norway)'),
(46783, 39442, 'no_lang_code', 'name', 'Novamed (Italy)'),
(46784, 39443, 'ar', 'name', 'مستؓفى Ų³Ų¹ŲÆ Ų§Ł„ŲŖŲ®ŲµŲµŁŠ'),
(46785, 39443, 'en', 'name', 'Saad Specialist Hospital'),
(46786, 39444, 'no_lang_code', 'name', 'ProQuest (United Kingdom)'),
(46787, 39445, 'en', 'name', 'Mithila Minority Dental College And Hospital'),
(46788, 39446, 'fr', 'name', 'Ɖcole des Mines de Douai'),
(46789, 39447, 'no_lang_code', 'name', 'Pullup (Brazil)'),
(46790, 39448, 'no_lang_code', 'name', 'Real Alloy (Norway)'),
(46791, 39449, 'no_lang_code', 'name', 'Chinese People’s Liberation Army 263 hospital'),
(46792, 39450, 'en', 'name', 'Tatarstan Academy of Sciences'),
(46793, 39451, 'en', 'name', 'Norwegian Agency for Quality Assurance in Education'),
(46794, 39452, 'no_lang_code', 'name', 'Archer (Norway)'),
(46795, 39453, 'no_lang_code', 'name', 'EXA-M Instrumentação Biomédica (Brazil)'),
(46796, 39454, 'no_lang_code', 'name', 'Luxo (Norway)'),
(46797, 39455, 'en', 'name', 'Military Institute of Engineer Technology'),
(46798, 39456, 'en', 'name', 'University College of Islamabad'),
(46799, 39457, 'no_lang_code', 'name', 'Kawmet (Poland)'),
(46800, 39458, 'en', 'name', 'St. Joseph Hospital'),
(46801, 39459, 'no_lang_code', 'name', 'ReSight (Norway)'),
(46802, 39460, 'en', 'name', 'Krantisinh Nana Patil College of Veterinary Science'),
(46803, 39461, 'en', 'name', 'Obafemi Awolowo University Teaching Hospitals Complex'),
(46804, 39462, 'en', 'name', 'Hubei Urban Construction Vocational and Technological College'),
(46805, 39462, 'zh', 'name', 'ę¹–åŒ—åŸŽåø‚å»ŗč®¾čŒäøšęŠ€ęœÆå­¦é™¢'),
(46806, 39463, 'en', 'name', 'Colorado Mountain College'),
(46807, 39464, 'en', 'name', 'ICMA Centre'),
(46808, 39465, 'en', 'name', 'Bon Secours Hospital Tralee'),
(46809, 39466, 'en', 'name', 'Central Wyoming College'),
(46810, 39467, 'no_lang_code', 'name', 'Marna Motor (Norway)'),
(46811, 39468, 'no_lang_code', 'name', 'CGS plus (Slovenia)'),
(46812, 39469, 'en', 'name', 'Nehru Gram Bharti University'),
(46813, 39470, 'fr', 'name', 'RƩseau QuƩbƩcois en Innovation Sociale'),
(46814, 39471, 'en', 'name', 'Association of Organ Procurement Organizations'),
(46815, 39472, 'en', 'name', 'Helen Newberry Joy Hospital'),
(46816, 39473, 'no_lang_code', 'name', 'Takashimadaira Chuo General Hospital'),
(46817, 39474, 'no_lang_code', 'name', 'BMS Kuhn Steel (Norway)'),
(46818, 39475, 'en', 'name', 'National Association of Independent Colleges and Universities'),
(46819, 39476, 'en', 'name', 'Krakow Cardiovascular Research Institute'),
(46820, 39477, 'no_lang_code', 'name', 'Sagaplant (Norway)'),
(46821, 39478, 'no_lang_code', 'name', 'Seco Warwick (Poland)'),
(46822, 39479, 'pt', 'name', 'Faculdades Integradas de SĆ£o Paulo'),
(46823, 39480, 'no_lang_code', 'name', 'Gyrofly (Brazil)'),
(46824, 39481, 'en', 'name', 'Queensway-Carleton Hospital'),
(46825, 39482, 'en', 'name', 'Xuzhou No.1 People''s Hospital'),
(46826, 39483, 'no_lang_code', 'name', 'Orthogenics (Norway)'),
(46827, 39484, 'en', 'name', 'Metropolitan Hospital College of Nursing'),
(46828, 39485, 'en', 'name', 'Bion, Institute for bioelectromagnetics'),
(46829, 39485, 'sl', 'name', 'InŔtitut Bion'),
(46830, 39486, 'no_lang_code', 'name', 'ƘKOKRIM'),
(46831, 39487, 'en', 'name', 'Kirkwood Hospice'),
(46832, 39488, 'pt', 'name', 'Federacao Brasileira de Associacoes de Bibliotecarios'),
(46833, 39489, 'la', 'name', 'Monumenta Germaniae Historica'),
(46834, 39490, 'no_lang_code', 'name', 'Agios Pavlos General Hospital'),
(46835, 39491, 'no_lang_code', 'name', 'MiljĆøkom (Norway)'),
(46836, 39492, 'en', 'name', 'Research and Development Centre for Wood-Based Panels'),
(46837, 39493, 'en', 'name', 'Yangpu Hospital of Tongji University'),
(46838, 39494, 'en', 'name', 'American Society of Transplantation'),
(46839, 39495, 'no_lang_code', 'name', 'Elhand Transformatory (Poland)'),
(46840, 39496, 'no_lang_code', 'name', 'Redealumni (Brazil)'),
(46841, 39497, 'no_lang_code', 'name', 'Texas Instruments (Norway)'),
(46842, 39498, 'no_lang_code', 'name', 'Beta Telecom (Brazil)'),
(46843, 39499, 'es', 'name', 'Hospital Quirón Torrevieja'),
(46844, 39500, 'no_lang_code', 'name', 'Punan Hospital'),
(46845, 39501, 'en', 'name', 'Namsos Hospital'),
(46846, 39502, 'no_lang_code', 'name', 'Fronteer Solutions (Norway)'),
(46847, 39503, 'en', 'name', 'Nazareth Hospital'),
(46848, 39504, 'no_lang_code', 'name', 'Ultimovacs (Norway)'),
(46849, 39505, 'no_lang_code', 'name', 'Mustad Autoline (Norway)'),
(46850, 39506, 'en', 'name', 'St. Johns Hospital'),
(46851, 39507, 'no_lang_code', 'name', 'Altimmune (United Kingdom)'),
(46852, 39508, 'no_lang_code', 'name', 'Gentian (Norway)'),
(46853, 39509, 'en', 'name', 'Rocky Vista University'),
(46854, 39510, 'no_lang_code', 'name', 'Bruker (Canada)'),
(46855, 39511, 'no_lang_code', 'name', 'Reade (Brazil)'),
(46856, 39512, 'no_lang_code', 'name', 'Regional Development Agency Mura (Slovenia)'),
(46857, 39513, 'no', 'name', 'InderĆøy Kommune'),
(46858, 39514, 'en', 'name', 'Kristiansand Municipality'),
(46859, 39515, 'no_lang_code', 'name', 'Centro de Genomas (Brazil)'),
(46860, 39516, 'no_lang_code', 'name', 'BP (Spain)'),
(46861, 39517, 'no_lang_code', 'name', 'DMC Equipmentos (Brazil)'),
(46862, 39518, 'en', 'name', 'Institute of Ceramics and Building Materials'),
(46863, 39519, 'no_lang_code', 'name', 'DLG Automation (Brazil)'),
(46864, 39520, 'en', 'name', 'Telemark County Council'),
(46865, 39520, 'no', 'name', 'Telemark Fylkeskommune'),
(46866, 39521, 'no', 'name', 'Barratt Due'),
(46867, 39522, 'no_lang_code', 'name', 'Oslotech (Norway)'),
(46868, 39523, 'no_lang_code', 'name', 'Dýnamis Industry e Commerce (Brazil)'),
(46869, 39524, 'no_lang_code', 'name', 'Senseonics (United States)'),
(46870, 39525, 'no_lang_code', 'name', 'Ispas (Norway)'),
(46871, 39526, 'no_lang_code', 'name', 'Ubitech (Greece)'),
(46872, 39527, 'en', 'name', 'The Rogosin Institute'),
(46873, 39528, 'pl', 'name', 'Zakład Doświadczalny Instytutu Zootechniki'),
(46874, 39529, 'no_lang_code', 'name', 'OxyVision (Norway)'),
(46875, 39530, 'en', 'name', 'Qingdao Huanghai University'),
(46876, 39531, 'no_lang_code', 'name', 'Ship Modelling & Simulation Centre'),
(46877, 39532, 'en', 'name', 'Finance Norway'),
(46878, 39533, 'no_lang_code', 'name', 'A-Lifting (Norway)'),
(46879, 39534, 'en', 'name', 'Akron Council of Engineering and Scientific Societies'),
(46880, 39535, 'en', 'name', 'Modern Cancer Hospital Guangzhou'),
(46881, 39536, 'no', 'name', 'Norsk Gartnerforbund'),
(46882, 39537, 'en', 'name', 'Slovak Environmental Agency'),
(46883, 39538, 'en', 'name', 'Napa State Hospital'),
(46884, 39539, 'no_lang_code', 'name', 'Biblioteksentralen (Norway)'),
(46885, 39540, 'en', 'name', 'Norwegian National Museum of Justice'),
(46886, 39541, 'en', 'name', 'Bangued Christian Hospital'),
(46887, 39542, 'no_lang_code', 'name', 'Western Metal Materials (China)'),
(46888, 39543, 'no_lang_code', 'name', 'Comm Solutions (Brazil)'),
(46889, 39544, 'no_lang_code', 'name', 'Glamox (Norway)'),
(46890, 39545, 'de', 'name', 'Bundeskanzleramt'),
(46891, 39545, 'en', 'name', 'German Federal Chancellery'),
(46892, 39546, 'no_lang_code', 'name', 'Apertus (Norway)'),
(46893, 39547, 'en', 'name', 'Chattahoochee Technical College'),
(46894, 39548, 'no_lang_code', 'name', 'NorrĆønt (Norway)'),
(46895, 39549, 'no_lang_code', 'name', 'Galwes (Poland)'),
(46896, 39550, 'no_lang_code', 'name', 'Acroni (Slovenia)'),
(46897, 39551, 'de', 'name', 'Integrierte Forschungs- und Behandlungszentren'),
(46898, 39552, 'de', 'name', 'George C. Marshall Europäisches Zentrum für Sicherheitsstudien'),
(46899, 39552, 'en', 'name', 'George C. Marshall European Center for Security Studies'),
(46900, 39553, 'no', 'name', 'Rettspolitisk Forening'),
(46901, 39554, 'no_lang_code', 'name', 'Keko Equipment (Slovenia)'),
(46902, 39555, 'en', 'name', 'Seven Oaks General Hospital'),
(46903, 39556, 'no_lang_code', 'name', 'SF International (Brazil)'),
(46904, 39557, 'no_lang_code', 'name', 'Balton (Poland)'),
(46905, 39558, 'no_lang_code', 'name', 'Re-Turn (Norway)'),
(46906, 39559, 'no_lang_code', 'name', 'Illinois Tool Works (Brazil)'),
(46907, 39560, 'de', 'name', 'Franckesche Stiftungen'),
(46908, 39560, 'en', 'name', 'Francke Foundations'),
(46909, 39561, 'fr', 'name', 'HƓpital delek'),
(46910, 39561, 'no_lang_code', 'name', 'Tibetan Delek Hospital'),
(46911, 39562, 'en', 'name', 'Association of Vocational Rehabilitation Enterprises'),
(46912, 39563, 'no_lang_code', 'name', 'Simitive (United Kingdom)'),
(46913, 39564, 'en', 'name', 'Jinja Hospital'),
(46914, 39565, 'en', 'name', 'Government ENT Hospital'),
(46915, 39565, 'te', 'name', 'ą°Ŗą±ą°°ą°­ą±ą°¤ą±ą°µ ą°ˆą°Žą°Øą±ą°Ÿą±€ ą°µą±ˆą°¦ą±ą°Æą°¶ą°¾ą°²'),
(46916, 39566, 'no_lang_code', 'name', 'N2 Applied (Norway)'),
(46917, 39567, 'en', 'name', 'Trojina Institute for Applied Slovene Studies'),
(46918, 39568, 'no_lang_code', 'name', 'Z Energi (Norway)'),
(46919, 39569, 'no', 'name', 'Evidensia Oslo dyresykehus'),
(46920, 39570, 'fr', 'name', 'Association Internationale des Ɖtudes QuĆ©bĆ©coises'),
(46921, 39571, 'no', 'name', 'Politiet'),
(46922, 39572, 'en', 'name', 'All Saints Hospital'),
(46923, 39573, 'no_lang_code', 'name', 'Nafra Polska (Poland)'),
(46924, 39574, 'no_lang_code', 'name', 'Cecilia Makiwane Hospital'),
(46925, 39575, 'no_lang_code', 'name', 'Admincontrol (Norway)'),
(46926, 39576, 'en', 'name', 'Centres for Economic Development, Transport and the Environment'),
(46927, 39576, 'fi', 'name', 'Elinkeino-, liikenne- ja ympƤristƶkeskukset'),
(46928, 39576, 'sv', 'name', 'NƤrings- Trafik- och Miljƶcentralen'),
(46929, 39577, 'en', 'name', 'Soroti Hospital'),
(46930, 39578, 'no_lang_code', 'name', 'Masiv Bygg (Norway)'),
(46931, 39579, 'no_lang_code', 'name', 'Moelven (Norway)'),
(46932, 39580, 'no_lang_code', 'name', 'Thorus Scisoft (Brazil)'),
(46933, 39581, 'hu', 'name', 'Jahn Ferenc DĆ©l-Pesti KórhĆ”z Ć©s RendelőintĆ©zet'),
(46934, 39582, 'no_lang_code', 'name', 'Emergo (United States)'),
(46935, 39583, 'no_lang_code', 'name', 'Marriott International (Canada)');
INSERT INTO `ror_settings` VALUES
(46936, 39584, 'no_lang_code', 'name', 'Simrad (Norway)'),
(46937, 39585, 'no_lang_code', 'name', 'Washington Mills (Norway)'),
(46938, 39586, 'no', 'name', 'Norges Kystfiskarlag'),
(46939, 39587, 'en', 'name', 'Centre of Excellence for Integrated Approaches in Chemistry and Biology of Proteins'),
(46940, 39588, 'no_lang_code', 'name', 'JG Moriya (Brazil)'),
(46941, 39589, 'no_lang_code', 'name', 'BiotaTools (Norway)'),
(46942, 39590, 'pt', 'name', 'Centro de Inovação, Empreendedorismo e Tecnologia'),
(46943, 39591, 'no_lang_code', 'name', 'Kidopi (Brazil)'),
(46944, 39592, 'en', 'name', 'King''s Inns'),
(46945, 39592, 'ga', 'name', 'Ɠstaƭ an Rƭ'),
(46946, 39593, 'no_lang_code', 'name', 'Tectonor (Norway)'),
(46947, 39594, 'no_lang_code', 'name', 'Barco (Norway)'),
(46948, 39595, 'en', 'name', 'Institute of Radio-Engineering and Electronics'),
(46949, 39595, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиотехники Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø им. Š’. А. ŠšŠ¾Ń‚ŠµŠ»ŃŒŠ½ŠøŠŗŠ¾Š²Š° Š ŠŠ'),
(46950, 39596, 'no_lang_code', 'name', 'Elabora Consultoria (Brazil)'),
(46951, 39597, 'no_lang_code', 'name', 'Thales (Norway)'),
(46952, 39598, 'no_lang_code', 'name', 'Murambinda Mission Hospital'),
(46953, 39599, 'no_lang_code', 'name', 'Inpower (Norway)'),
(46954, 39600, 'no_lang_code', 'name', 'EQE Tecnologia (Brazil)'),
(46955, 39601, 'en', 'name', 'St. George Hospital'),
(46956, 39602, 'en', 'name', 'Hennepin County Library'),
(46957, 39602, 'es', 'name', 'Biblioteca del Condado de Hennepin'),
(46958, 39603, 'en', 'name', 'Swiss Leading Hospitals'),
(46959, 39604, 'en', 'name', 'King George Hospital'),
(46960, 39604, 'te', 'name', 'ą°•ą°æą°‚ą°—ą± ą°œą°¾ą°°ą±ą°œą°æ ą°†ą°øą±ą°Ŗą°¤ą±ą°°ą°æ'),
(46961, 39605, 'no_lang_code', 'name', 'Semco Maritime (Norway)'),
(46962, 39606, 'en', 'name', 'Chongqing Medical and Pharmaceutical College'),
(46963, 39607, 'no_lang_code', 'name', 'Slovenska Industrija Jekla (Slovenia)'),
(46964, 39608, 'no_lang_code', 'name', 'Trustper (Norway)'),
(46965, 39609, 'de', 'name', 'Hochschule für Bankwirtschaft'),
(46966, 39609, 'en', 'name', 'Frankfurt School of Finance & Management'),
(46967, 39610, 'no_lang_code', 'name', 'Abalonyx (Norway)'),
(46968, 39611, 'no_lang_code', 'name', 'Viscenario (Norway)'),
(46969, 39612, 'sl', 'name', 'Grm Novo mesto - Center Biotehnike in Turizma'),
(46970, 39613, 'no_lang_code', 'name', 'Elotec (Norway)'),
(46971, 39614, 'en', 'name', 'Qingdao Institute of Bioenergy and Bioprocess Technology'),
(46972, 39614, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢é’å²›ē”Ÿē‰©čƒ½ęŗäøŽčæ‡ēØ‹ē ”ē©¶ę‰€'),
(46973, 39615, 'no_lang_code', 'name', 'Hotel Ullensvang (Norway)'),
(46974, 39616, 'pt', 'name', 'Secretaria Municipal do Verde e do Meio Ambiente'),
(46975, 39617, 'no_lang_code', 'name', 'TeamTec (Norway)'),
(46976, 39618, 'en', 'name', 'Steynsburg Provincial Hospital'),
(46977, 39619, 'de', 'name', 'Fraunhofer-Institut für Werkstoff- und Strahltechnik'),
(46978, 39619, 'en', 'name', 'Fraunhofer Institute for Material and Beam Technology'),
(46979, 39620, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d’Architecture Paris-Malaquais'),
(46980, 39621, 'en', 'name', 'Science Center of Innlandet'),
(46981, 39621, 'no', 'name', 'Vitensenteret Innlandet'),
(46982, 39622, 'en', 'name', 'University of Kang Ning'),
(46983, 39622, 'zh', 'name', '康寧大學'),
(46984, 39623, 'en', 'name', 'First Hospital of Xi''an'),
(46985, 39624, 'no_lang_code', 'name', 'Panalpina (Norway)'),
(46986, 39625, 'no', 'name', 'Vikna Kommune'),
(46987, 39626, 'en', 'name', 'Asheville–Buncombe Technical Community College'),
(46988, 39627, 'no_lang_code', 'name', 'DeepOcean (Norway)'),
(46989, 39628, 'no_lang_code', 'name', 'Inselli Engenharia e CiĆŖncia Aplicada (Brazil)'),
(46990, 39629, 'en', 'name', 'Bapuji Dental College and Hospital'),
(46991, 39629, 'kn', 'name', 'ą²¬ą²¾ą²Ŗą³‚ą²œą²æ ದಂತ ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³‡'),
(46992, 39630, 'no_lang_code', 'name', 'Coop Norge (Norway)'),
(46993, 39631, 'no_lang_code', 'name', 'C6 Technologies (Norway)'),
(46994, 39632, 'de', 'name', 'Staatsbibliothek Bamberg'),
(46995, 39632, 'en', 'name', 'Bamberg State Library'),
(46996, 39633, 'no', 'name', 'Nes Kommune'),
(46997, 39634, 'no_lang_code', 'name', 'Aptomar (Norway)'),
(46998, 39635, 'en', 'name', 'Q.D. Research'),
(46999, 39636, 'en', 'name', 'Amita Health St. Mary''s Hospital'),
(47000, 39637, 'en', 'name', 'Barton Community College'),
(47001, 39638, 'en', 'name', 'Jefferson Davis Community College'),
(47002, 39639, 'en', 'name', 'Point Pedro Hospital'),
(47003, 39640, 'pl', 'name', 'Centrum Słuchu i Mowy'),
(47004, 39641, 'en', 'name', 'Children''s Hospital of Capital Institute of Pediatrics'),
(47005, 39642, 'no_lang_code', 'name', 'Memor Software (Norway)'),
(47006, 39643, 'no_lang_code', 'name', 'Cantoni (Poland)'),
(47007, 39644, 'no_lang_code', 'name', 'Genetic Technologies (Australia)'),
(47008, 39645, 'en', 'name', 'Weifang Maternity and Child Care Hospital'),
(47009, 39646, 'no_lang_code', 'name', 'Petrell (Norway)'),
(47010, 39647, 'no_lang_code', 'name', 'Flow Design Bureau (Norway)'),
(47011, 39648, 'en', 'name', 'Lady Grey Hospital'),
(47012, 39649, 'en', 'name', 'Government Nizamia General Hospital'),
(47013, 39649, 'te', 'name', 'నిజామియా ą°œą°Øą°°ą°²ą± ą°†ą°øą±ą°Ŗą°¤ą±ą°°ą°æ'),
(47014, 39649, 'ur', 'name', '(Ų­Ś©ŁˆŁ…ŲŖ Ł†ŲøŲ§Ł…ŪŒŪ جنرل ہسپتال ( طبی ŲÆŲ§ŁˆŲ§Ś©ŪŲ§Ł†'),
(47015, 39650, 'pt', 'name', 'Fundação Padre Albino'),
(47016, 39651, 'en', 'name', 'Columbia Bible College'),
(47017, 39652, 'it', 'name', 'Ospedale Versilia'),
(47018, 39653, 'en', 'name', 'Cathcart Provincial Hospital'),
(47019, 39654, 'en', 'name', 'Malaysia Theological Seminary'),
(47020, 39655, 'en', 'name', 'Lillebaelt Academy University of Applied Sciences'),
(47021, 39656, 'no_lang_code', 'name', 'Finamac (Brazil)'),
(47022, 39657, 'en', 'name', 'Maple Grove Hospital'),
(47023, 39658, 'tr', 'name', 'İstanbul Kanuni Sultan Süleyman Eğitim ve Araştırma Hastanesi'),
(47024, 39659, 'no_lang_code', 'name', 'Correias Elo (Brazil)'),
(47025, 39660, 'en', 'name', 'Lipetsk State Pedagogical University'),
(47026, 39661, 'no_lang_code', 'name', 'Alpineon (Slovenia)'),
(47027, 39662, 'en', 'name', 'Inspectorate of the Republic of Slovenia for the Environment and Spatial Planning'),
(47028, 39663, 'no_lang_code', 'name', 'Alstom (Poland)'),
(47029, 39664, 'no_lang_code', 'name', 'Rosomak (Poland)'),
(47030, 39665, 'en', 'name', 'Second Affiliated Hospital of Luohe Medical College'),
(47031, 39666, 'no_lang_code', 'name', 'Redpill Linpro (Norway)'),
(47032, 39667, 'de', 'name', 'Katholisches Klinikum Bochum'),
(47033, 39668, 'fr', 'name', 'Institut de Recherche sur les Lois Fondamentales de l''Univers'),
(47034, 39669, 'no_lang_code', 'name', 'Oyatel (Norway)'),
(47035, 39670, 'no', 'name', 'Norges Fiskarlag'),
(47036, 39671, 'no', 'name', 'Helse MĆøre og Romsdal HF'),
(47037, 39672, 'no_lang_code', 'name', 'FCA (Poland)'),
(47038, 39673, 'no_lang_code', 'name', 'Varier (Norway)'),
(47039, 39674, 'pt', 'name', 'Associação Aeroespacial Brasileira'),
(47040, 39675, 'no_lang_code', 'name', 'Ooyo Seibutsu (Japan)'),
(47041, 39676, 'no_lang_code', 'name', 'Climate Risk Analysis (Germany)'),
(47042, 39677, 'no_lang_code', 'name', 'DigiDoc Technologies (Norway)'),
(47043, 39678, 'en', 'name', 'Indwe Hospital'),
(47044, 39679, 'no_lang_code', 'name', 'Nordic Seal (Norway)'),
(47045, 39680, 'en', 'name', 'Central Mine Rescue Station'),
(47046, 39680, 'pl', 'name', 'Centralna Stacja Ratownictwa Górniczego'),
(47047, 39681, 'no_lang_code', 'name', 'ERICo (Slovenia)'),
(47048, 39682, 'no_lang_code', 'name', 'Pelagic Power (Norway)'),
(47049, 39683, 'fr', 'name', 'CollĆØge Montmorency'),
(47050, 39684, 'en', 'name', 'Smt. Kashibai Navale Medical College and General hospital'),
(47051, 39685, 'no_lang_code', 'name', 'ArcusGruppen (Norway)'),
(47052, 39686, 'no_lang_code', 'name', 'Reichhold (Norway)'),
(47053, 39687, 'en', 'name', 'Shalem College'),
(47054, 39688, 'no_lang_code', 'name', 'Memscap (Norway)'),
(47055, 39689, 'el', 'name', 'Αμερικανική Σχολή ĪšĪ»Ī±ĻƒĪ¹ĪŗĻŽĪ½ Ī£Ļ€ĪæĻ…Ī“ĻŽĪ½ ĻƒĻ„Ī·Ī½ Αθήνα'),
(47056, 39689, 'en', 'name', 'American School of Classical Studies at Athens'),
(47057, 39690, 'no_lang_code', 'name', 'CBPak (Brazil)'),
(47058, 39691, 'no_lang_code', 'name', 'Macgregor Pusnes (Norway)'),
(47059, 39692, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الدراسات Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ŁˆŲ§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(47060, 39692, 'en', 'name', 'College of Islamic and Arabic Studies'),
(47061, 39693, 'no_lang_code', 'name', 'H. J. Kyvik (Norway)'),
(47062, 39694, 'no_lang_code', 'name', 'Sistemska Tehnika (Slovenia)'),
(47063, 39695, 'no_lang_code', 'name', 'Terra Azul - Tecnologia de PolĆ­meros Naturais (Brazil)'),
(47064, 39696, 'en', 'name', 'Mthatha General Hospital'),
(47065, 39697, 'en', 'name', 'The Outer Banks Hospital'),
(47066, 39698, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŁŠŲ±Ł…ŁˆŁƒ الجامعة'),
(47067, 39698, 'en', 'name', 'Al Yarmouk University College'),
(47068, 39699, 'no_lang_code', 'name', 'Jaeder (Norway)'),
(47069, 39700, 'no_lang_code', 'name', 'Media Lunde Tollefsen (Norway)'),
(47070, 39701, 'en', 'name', 'Hedmark County Council'),
(47071, 39702, 'no_lang_code', 'name', 'Weifang Chinese Medicine Hospital'),
(47072, 39703, 'en', 'name', 'Third People''s Hospital of Hefei'),
(47073, 39704, 'en', 'name', 'Seafield Hospital'),
(47074, 39705, 'en', 'name', 'Howard County General Hospital'),
(47075, 39706, 'no_lang_code', 'name', 'Flyever (Brazil)'),
(47076, 39707, 'en', 'name', 'Royal Military College Saint-Jean'),
(47077, 39707, 'fr', 'name', 'CollĆØge militaire royal de Saint-Jean'),
(47078, 39708, 'no_lang_code', 'name', 'Em.tronic Elektromehanski Sistemi (Slovenia)'),
(47079, 39709, 'en', 'name', 'City and Islington College'),
(47080, 39710, 'en', 'name', 'Mannar Hospital'),
(47081, 39711, 'de', 'name', 'LVR-Industriemuseum'),
(47082, 39712, 'en', 'name', 'Brazilian Society of Protozoology'),
(47083, 39712, 'pt', 'name', 'Sociedade Brasileira de Protozoologia'),
(47084, 39713, 'no_lang_code', 'name', 'Cortical Dynamics (Australia)'),
(47085, 39714, 'no_lang_code', 'name', 'Hedmark IKT (Norway)'),
(47086, 39715, 'es', 'name', 'Hospital de JesĆŗs Nazareno'),
(47087, 39716, 'no_lang_code', 'name', 'PXO (Norway)'),
(47088, 39717, 'no_lang_code', 'name', 'Acoustics (Norway)'),
(47089, 39718, 'en', 'name', 'Shanghai First Maternity and Infant Hospital'),
(47090, 39719, 'en', 'name', 'Mbale Hospital'),
(47091, 39720, 'no_lang_code', 'name', 'Orbisat (Brazil)'),
(47092, 39721, 'en', 'name', 'Surgimed Hospital'),
(47093, 39721, 'ur', 'name', 'Ų³Ų±Ų¬ŪŒŁ…ŪŒŚˆ ہسپتال Ł„Ų§ŪŁˆŲ±'),
(47094, 39722, 'no_lang_code', 'name', 'Inter Metal (Poland)'),
(47095, 39723, 'no_lang_code', 'name', 'Radwag Balances and Scales (Poland)'),
(47096, 39724, 'pl', 'name', 'Polskie Stowarzyszenie Korozyjne'),
(47097, 39725, 'no_lang_code', 'name', 'XCOR Aerospace (United States)'),
(47098, 39726, 'en', 'name', 'Burgersdorp Provincial Hospital'),
(47099, 39727, 'no_lang_code', 'name', 'Proceda (Norway)'),
(47100, 39728, 'no_lang_code', 'name', 'DFG Consulting (Slovenia)'),
(47101, 39729, 'no_lang_code', 'name', 'FriskgƄrden (Norway)'),
(47102, 39730, 'en', 'name', 'Community College of Denver'),
(47103, 39731, 'pl', 'name', 'Centrum Badań i Dozoru Górnictwa Podziemnego'),
(47104, 39732, 'no_lang_code', 'name', 'Piacentini (Brazil)'),
(47105, 39733, 'en', 'name', 'Surrey Memorial Hospital'),
(47106, 39734, 'en', 'name', 'Feather River Hospital'),
(47107, 39735, 'no_lang_code', 'name', 'Polon (Poland)'),
(47108, 39736, 'en', 'name', 'Wagga Wagga Base Hospital'),
(47109, 39737, 'pl', 'name', 'Polskie Forum Osób Niepełnosprawnych'),
(47110, 39738, 'no_lang_code', 'name', 'Kitemill (Norway)'),
(47111, 39739, 'no', 'name', 'ForbrukerrƄdet'),
(47112, 39740, 'no_lang_code', 'name', 'Targovax (Norway)'),
(47113, 39741, 'de', 'name', 'Stiftung Preußische Schlösser und Gärten Berlin-Brandenburg'),
(47114, 39741, 'en', 'name', 'Prussian Palaces and Gardens Foundation Berlin Brandenburg'),
(47115, 39742, 'pt', 'name', 'Secretaria de Desenvolvimento EconƓmico e Turƭstico'),
(47116, 39743, 'no_lang_code', 'name', 'Aquastructures (Norway)'),
(47117, 39744, 'en', 'name', 'Office of Polar Programs'),
(47118, 39745, 'no_lang_code', 'name', 'Sonowand (Norway)'),
(47119, 39746, 'en', 'name', 'Society for Arts and Technology'),
(47120, 39746, 'fr', 'name', 'SociƩtƩ des Arts Technologiques'),
(47121, 39747, 'no_lang_code', 'name', 'Ervik & SƦvik (Norway)'),
(47122, 39748, 'no_lang_code', 'name', 'Chem4u (Brazil)'),
(47123, 39749, 'no_lang_code', 'name', 'Banadir Hospital'),
(47124, 39750, 'no_lang_code', 'name', 'Viva Biotech (China)'),
(47125, 39751, 'en', 'name', 'Adaptive Sports Northwest'),
(47126, 39752, 'en', 'name', 'Wuxi People''s Hospital'),
(47127, 39753, 'no_lang_code', 'name', 'Alere (Norway)'),
(47128, 39754, 'en', 'name', 'Kuala Lumpur Metropolitan University College'),
(47129, 39755, 'pt', 'name', 'Associação de Pais e Amigos dos Excepcionais de São Paulo'),
(47130, 39756, 'no_lang_code', 'name', 'Somoso General Hospital'),
(47131, 39757, 'en', 'name', 'Jaffna Teaching Hospital'),
(47132, 39757, 'si', 'name', 'ą¶ŗą·ą¶“ą¶±ą¶ŗ ą·ą·’ą¶šą·Šą·‚ą¶« ą¶»ą·ą·„ą¶½'),
(47133, 39758, 'no_lang_code', 'name', 'Hrafn (Norway)'),
(47134, 39759, 'no_lang_code', 'name', 'Oncolytics Biotech (Canada)'),
(47135, 39760, 'no_lang_code', 'name', 'Rauma Group (Norway)'),
(47136, 39761, 'no_lang_code', 'name', 'Biocontrol (Brazil)'),
(47137, 39762, 'no_lang_code', 'name', 'Lushang (China)'),
(47138, 39763, 'no_lang_code', 'name', 'DSPGeo (Brazil)'),
(47139, 39764, 'no_lang_code', 'name', 'Gisplan (Brazil)'),
(47140, 39765, 'no_lang_code', 'name', 'HS News Systems (Norway)'),
(47141, 39766, 'no_lang_code', 'name', 'Genetic Analysis (Norway)'),
(47142, 39767, 'en', 'name', 'International University College of Turin'),
(47143, 39768, 'en', 'name', 'Vernon Jubilee Hospital'),
(47144, 39769, 'en', 'name', 'Samaritan Pacific Communities Hospital'),
(47145, 39770, 'en', 'name', 'Cottage Grove Community Medical Center'),
(47146, 39771, 'en', 'name', 'Kinshasa General Hospital'),
(47147, 39771, 'fr', 'name', 'HƓpital gƩnƩral de kinshasa'),
(47148, 39772, 'no', 'name', 'Hospital IT'),
(47149, 39773, 'no_lang_code', 'name', 'Syngenta (China)'),
(47150, 39774, 'no_lang_code', 'name', 'Duverden (Norway)'),
(47151, 39775, 'no_lang_code', 'name', 'Tecnocard (Brazil)'),
(47152, 39776, 'pt', 'name', 'Associação Sul-Americana de Automação'),
(47153, 39777, 'no_lang_code', 'name', 'Mwa Automação (Brazil)'),
(47154, 39778, 'en', 'name', 'Hobart Private Hospital'),
(47155, 39779, 'no_lang_code', 'name', 'IKT-Norge (Norway)'),
(47156, 39780, 'no_lang_code', 'name', 'Tech Chrom (Brazil)'),
(47157, 39781, 'no', 'name', 'VƄgan kommune'),
(47158, 39782, 'no', 'name', 'VardĆø kommune'),
(47159, 39783, 'no_lang_code', 'name', 'Polmlek (Poland)'),
(47160, 39784, 'en', 'name', 'Atascadero State Hospital'),
(47161, 39785, 'en', 'name', 'Milford Hospital'),
(47162, 39786, 'fi', 'name', 'Hengitysliitto'),
(47163, 39787, 'en', 'name', 'PyhƤjƤrvi Institute'),
(47164, 39788, 'en', 'name', 'Association of Christian Schools, Colleges and Universities'),
(47165, 39789, 'no_lang_code', 'name', 'Protector (Norway)'),
(47166, 39790, 'no_lang_code', 'name', 'Fram Flora (Norway)'),
(47167, 39791, 'no_lang_code', 'name', 'Iskratel (Slovenia)'),
(47168, 39792, 'no_lang_code', 'name', 'Norskog Consulting (Norway)'),
(47169, 39793, 'no_lang_code', 'name', 'Beijing Wantai Biological Pharmacy (China)'),
(47170, 39794, 'pl', 'name', 'Instytut Przemysłu Skórzanego'),
(47171, 39795, 'no_lang_code', 'name', 'Norsk Wax (Norway)'),
(47172, 39796, 'en', 'name', 'Association of Jesuit Colleges and Universities'),
(47173, 39796, 'es', 'name', 'Asociación de Universidades Jesuitas'),
(47174, 39796, 'fr', 'name', 'Association des universitƩs et facultƩs jƩsuites'),
(47175, 39797, 'pt', 'name', 'Sociedade Brasileira de Psicologia Hospitalar (Brazil)'),
(47176, 39798, 'en', 'name', 'Kingsbridge Private Hospital Sligo'),
(47177, 39799, 'en', 'name', 'Morton Plant North Bay Hospital'),
(47178, 39800, 'no', 'name', 'Nome Kommune'),
(47179, 39801, 'en', 'name', 'Civil Service Hospital'),
(47180, 39802, 'en', 'name', 'Lanier Technical College'),
(47181, 39803, 'en', 'name', 'Skyline University College'),
(47182, 39804, 'en', 'name', 'Christian Service University College'),
(47183, 39805, 'no_lang_code', 'name', 'Adespec (Brazil)'),
(47184, 39806, 'pl', 'name', 'Zakład Doskonalenia Zawodowego w Krakowie'),
(47185, 39807, 'no_lang_code', 'name', 'Centre for Advanced Study'),
(47186, 39808, 'no_lang_code', 'name', 'Andre Abrasive Articles (Poland)'),
(47187, 39809, 'no_lang_code', 'name', 'CBS InŔtitut (Slovenia)'),
(47188, 39810, 'en', 'name', 'Institute of Systematics and Evolution of Animals'),
(47189, 39810, 'pl', 'name', 'Instytut Systematyki i Ewolucji Zwierząt PAN'),
(47190, 39811, 'pt', 'name', 'ColƩgio Brasileiro de CirurgiƵes'),
(47191, 39812, 'no_lang_code', 'name', 'Information and Mathematical Science and Bioinformatics (Japan)'),
(47192, 39813, 'no_lang_code', 'name', 'Umlamli Hospital'),
(47193, 39814, 'no_lang_code', 'name', 'Molde Kunnskapspark (Norway)'),
(47194, 39815, 'no_lang_code', 'name', 'Thelma Biotel (Norway)'),
(47195, 39816, 'no_lang_code', 'name', 'Ipsos (Brazil)'),
(47196, 39817, 'no_lang_code', 'name', 'Silicon Labs (Norway)'),
(47197, 39818, 'no_lang_code', 'name', 'NorLense (Norway)'),
(47198, 39819, 'en', 'name', 'Brazilian Association of Philosophy and History of Biology'),
(47199, 39819, 'pt', 'name', 'Associação Brasileira de Filosofia e História da Biologia'),
(47200, 39820, 'fr', 'name', 'CƩgep de l''Outaouais'),
(47201, 39821, 'no_lang_code', 'name', 'WindSim (Norway)'),
(47202, 39822, 'en', 'name', 'Peking University Sixth Hospital'),
(47203, 39823, 'no_lang_code', 'name', 'Ablynx (Belgium)'),
(47204, 39824, 'no_lang_code', 'name', 'Max Manus (Norway)'),
(47205, 39825, 'en', 'name', 'Military Institute of Armament Technology'),
(47206, 39826, 'no_lang_code', 'name', 'Corticalis (Norway)'),
(47207, 39827, 'en', 'name', 'Nkqubela Chest Hospital'),
(47208, 39828, 'en', 'name', 'Garden City University College'),
(47209, 39829, 'no_lang_code', 'name', 'Iskra Pio (Slovenia)'),
(47210, 39830, 'no', 'name', 'Lenvik kommune'),
(47211, 39831, 'no_lang_code', 'name', 'Boa Offshore (Norway)'),
(47212, 39832, 'no_lang_code', 'name', 'Ziva (United States)'),
(47213, 39833, 'no_lang_code', 'name', 'SHS Engenharia SustentƔvel'),
(47214, 39834, 'no_lang_code', 'name', 'Hafenstrom (Norway)'),
(47215, 39835, 'no_lang_code', 'name', 'Robotics Inventions (Poland)'),
(47216, 39836, 'no_lang_code', 'name', 'Transdata (Brazil)'),
(47217, 39837, 'en', 'name', 'First People''s Hospital of Jingzhou'),
(47218, 39838, 'no_lang_code', 'name', 'Proteimax (Brazil)'),
(47219, 39839, 'en', 'name', 'Slovenian Museum of Natural History'),
(47220, 39839, 'sl', 'name', 'Prirodoslovni muzej Slovenije'),
(47221, 39840, 'no_lang_code', 'name', 'Dnapta Biotecnologia (Brazil)'),
(47222, 39841, 'no_lang_code', 'name', 'Kebony (Norway)'),
(47223, 39842, 'no_lang_code', 'name', 'Trimo (Slovenia)'),
(47224, 39843, 'no_lang_code', 'name', 'AgroNova (Norway)'),
(47225, 39844, 'no_lang_code', 'name', 'Geno (Norway)'),
(47226, 39845, 'de', 'name', 'Zentralinstitut für Kunstgeschichte'),
(47227, 39845, 'en', 'name', 'Central Institute for Art History'),
(47228, 39846, 'en', 'name', 'Midlothian Community Hospital'),
(47229, 39847, 'no', 'name', 'Norsk Forening for Bildebehandling og MĆønstergjenkjenning'),
(47230, 39848, 'de', 'name', 'Albertus-Magnus-Institut'),
(47231, 39849, 'en', 'name', 'University College Absalon'),
(47232, 39850, 'en', 'name', 'Data Link Institute of Business and Technology'),
(47233, 39851, 'no_lang_code', 'name', 'Mills (Norway)'),
(47234, 39852, 'en', 'name', 'Columbia Gorge Community College'),
(47235, 39853, 'no_lang_code', 'name', 'Xiamen Tobacco Industry (China)'),
(47236, 39854, 'en', 'name', 'Dr. Jose N. Rodriguez Memorial Hospital'),
(47237, 39855, 'no_lang_code', 'name', 'Piscada (Norway)'),
(47238, 39856, 'no_lang_code', 'name', 'Sarsia (Norway)'),
(47239, 39857, 'no', 'name', 'Forskerfabrikken'),
(47240, 39858, 'hu', 'name', 'Szent Imre Egyetemi OktatókórhÔz'),
(47241, 39859, 'no', 'name', 'Statped'),
(47242, 39860, 'no_lang_code', 'name', 'ZONA Technology (United States)'),
(47243, 39861, 'en', 'name', 'Glen O''Dee Hospital'),
(47244, 39862, 'en', 'name', 'Calvert Memorial Hospital'),
(47245, 39863, 'no_lang_code', 'name', 'BerGenBio (Norway)'),
(47246, 39864, 'no_lang_code', 'name', 'Karde (Norway)'),
(47247, 39865, 'en', 'name', 'Citizens Network Watchdog'),
(47248, 39866, 'en', 'name', 'Phoenix College'),
(47249, 39867, 'no_lang_code', 'name', 'Research Management Systems (United States)'),
(47250, 39868, 'en', 'name', 'Rockyview General Hospital'),
(47251, 39869, 'no_lang_code', 'name', 'Cova (Norway)'),
(47252, 39870, 'no_lang_code', 'name', 'GCI Science & Technology (China)'),
(47253, 39871, 'no_lang_code', 'name', 'Geodados (Brazil)'),
(47254, 39872, 'en', 'name', 'Folsom Lake College'),
(47255, 39873, 'en', 'name', 'Gavilan College'),
(47256, 39874, 'no_lang_code', 'name', 'Wave Propulsion (Norway)'),
(47257, 39875, 'no_lang_code', 'name', 'Ziebel (Norway)'),
(47258, 39876, 'en', 'name', 'Inspiria Science Center'),
(47259, 39877, 'no_lang_code', 'name', 'Cerpus (Norway)'),
(47260, 39878, 'en', 'name', 'Sixth Affiliated Hospital of Kunming Medical University'),
(47261, 39879, 'de', 'name', 'Institut für Luft- und Kältetechnik'),
(47262, 39879, 'en', 'name', 'Institute of Air Handling and Refrigeration'),
(47263, 39880, 'en', 'name', 'Jaypee Hospital'),
(47264, 39881, 'en', 'name', 'lnstitute for lnternational Trade Negotiations'),
(47265, 39881, 'pt', 'name', 'Instituto de Estudos do ComƩrcio e NegociaƧƵes Internacionais'),
(47266, 39882, 'en', 'name', 'Flagler Hospital'),
(47267, 39883, 'no_lang_code', 'name', 'Treindustrien (Norway)'),
(47268, 39884, 'no_lang_code', 'name', 'Nano Carbon (Poland)'),
(47269, 39885, 'no_lang_code', 'name', 'Emisoft (Norway)'),
(47270, 39886, 'no_lang_code', 'name', 'Omega (Slovenia)'),
(47271, 39887, 'en', 'name', 'Grande Ronde Hospital'),
(47272, 39888, 'no_lang_code', 'name', 'Sencel Bioinformatics (Norway)'),
(47273, 39889, 'en', 'name', 'University clinical center of Republika Srpska'),
(47274, 39890, 'no_lang_code', 'name', 'MemfoACT (Norway)'),
(47275, 39891, 'no_lang_code', 'name', 'Mectro (Norway)'),
(47276, 39892, 'en', 'name', 'Daejeon Oriental Hospital'),
(47277, 39893, 'en', 'name', 'Affiliated Hospital of Shandong Academy of Medical Sciences'),
(47278, 39894, 'pt', 'name', 'Sociedade Brasileira de MicroeletrƓnica'),
(47279, 39895, 'no_lang_code', 'name', 'Olav Thon (Norway)'),
(47280, 39896, 'no', 'name', 'Ƙvre Eiker Kommune'),
(47281, 39897, 'de', 'name', 'Europäisches Zentrum für Minderheitenfragen'),
(47282, 39897, 'en', 'name', 'European Centre for Minority Issues'),
(47283, 39898, 'no_lang_code', 'name', 'Calysta (Norway)'),
(47284, 39899, 'en', 'name', 'West Middlesex University Hospital'),
(47285, 39900, 'no_lang_code', 'name', 'Genomic (Brazil)'),
(47286, 39901, 'no_lang_code', 'name', 'Athens Euroclinic'),
(47287, 39902, 'no_lang_code', 'name', 'Luxtec (Brazil)'),
(47288, 39903, 'en', 'name', 'Joshi Hospital'),
(47289, 39903, 'mr', 'name', 'ą¤œą„‹ą¤¶ą„€ ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(47290, 39904, 'en', 'name', 'San Antonio Regional Hospital'),
(47291, 39905, 'no_lang_code', 'name', 'Plantech (Brazil)'),
(47292, 39906, 'en', 'name', 'International Hospital Kampala'),
(47293, 39907, 'en', 'name', 'Kilinochchi General Hospital'),
(47294, 39908, 'no_lang_code', 'name', 'Geomatics (Norway)'),
(47295, 39909, 'no_lang_code', 'name', 'B2 (Slovenia)'),
(47296, 39910, 'no_lang_code', 'name', 'UniSoma (Brazil)'),
(47297, 39911, 'no_lang_code', 'name', 'Aquadyne (Norway)'),
(47298, 39912, 'no_lang_code', 'name', 'Kongsberg Automotive (Norway)'),
(47299, 39913, 'no_lang_code', 'name', 'Hypet Data (Norway)'),
(47300, 39914, 'de', 'name', 'Kinderklinik Regensburg'),
(47301, 39915, 'no_lang_code', 'name', 'Portahead (Norway)'),
(47302, 39916, 'no_lang_code', 'name', 'WarpIV Technologies (United States)'),
(47303, 39917, 'no_lang_code', 'name', 'Lilly (China)'),
(47304, 39918, 'no_lang_code', 'name', 'GridBridge (United States)'),
(47305, 39919, 'en', 'name', 'Jamestown Hospital'),
(47306, 39920, 'en', 'name', 'Blaenavon Hospital'),
(47307, 39921, 'en', 'name', 'Ajman Specialty General Hospital'),
(47308, 39921, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¹Ł…ŁˆŁ…ŪŒ تخصصی عجمان'),
(47309, 39922, 'en', 'name', 'Castle Peak Hospital'),
(47310, 39922, 'zh', 'name', '青山醫院'),
(47311, 39923, 'en', 'name', 'Department for Employment and Learning'),
(47312, 39924, 'en', 'name', 'Meliksah University'),
(47313, 39925, 'en', 'name', 'Dr D Y Patil Dental College & Hospital'),
(47314, 39926, 'en', 'name', 'Kitojo Hospital'),
(47315, 39927, 'no_lang_code', 'name', 'OWC Power (Norway)'),
(47316, 39928, 'no_lang_code', 'name', 'Dalvic (Brazil)'),
(47317, 39929, 'no_lang_code', 'name', 'TransFrigor do Brasil (Brazil)'),
(47318, 39930, 'en', 'name', 'Sunrise Hospital & Medical Center'),
(47319, 39931, 'en', 'name', 'Kang-Ning Junior College of Medical Care and Management'),
(47320, 39932, 'no_lang_code', 'name', 'Ralston & Bau (Norway)'),
(47321, 39933, 'en', 'name', 'Division of Behavioral and Cognitive Sciences'),
(47322, 39934, 'no_lang_code', 'name', 'Infor (Norway)'),
(47323, 39935, 'ja', 'name', 'äø‰äŗ•åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(47324, 39935, 'no_lang_code', 'name', 'Mitsui Chemicals (Japan)'),
(47325, 39936, 'en', 'name', 'International Consortium on Geo-disaster Reduction'),
(47326, 39937, 'no_lang_code', 'name', 'Svetovalna in Razvojna Dejavnost (Slovenia)'),
(47327, 39938, 'en', 'name', 'Oslo Port Authority'),
(47328, 39939, 'en', 'name', 'Institute of Metal Constructions'),
(47329, 39940, 'no_lang_code', 'name', 'Top in Life Biotecnologia & GenƩtica Animal (Brazil)'),
(47330, 39941, 'en', 'name', 'Islamic University College'),
(47331, 39942, 'no_lang_code', 'name', 'Hallingplast (Norway)'),
(47332, 39943, 'en', 'name', 'Fort Beaufort Hospital'),
(47333, 39944, 'no_lang_code', 'name', 'New Amsterdam Public Hospital'),
(47334, 39945, 'no_lang_code', 'name', 'Gintel (Norway)'),
(47335, 39946, 'en', 'name', 'Marina Del Rey Hospital'),
(47336, 39947, 'no_lang_code', 'name', 'Nortura (Norway)'),
(47337, 39948, 'en', 'name', 'Emirates College for Advanced Education'),
(47338, 39949, 'de', 'name', 'Krankenhaus Kƶln-Holweide'),
(47339, 39950, 'no_lang_code', 'name', 'Expertise Engenharia (Brazil)'),
(47340, 39951, 'no_lang_code', 'name', 'Svorka (Norway)'),
(47341, 39952, 'no_lang_code', 'name', 'ArcticZymes (Norway)'),
(47342, 39953, 'en', 'name', 'City College Brighton & Hove, City College Brighton and Hove'),
(47343, 39954, 'en', 'name', 'Norfolk General Hospital'),
(47344, 39955, 'no_lang_code', 'name', 'PetroMarker (Norway)'),
(47345, 39956, 'de', 'name', 'Deutsches Literaturarchiv'),
(47346, 39956, 'en', 'name', 'German Literature Archive'),
(47347, 39957, 'fr', 'name', 'Le Fresnoy - Studio National des Arts Contemporains'),
(47348, 39958, 'no', 'name', 'RegionrƄdet i Nord-Gudbrandsdal'),
(47349, 39959, 'en', 'name', 'Second People’s Hospital of Yibin'),
(47350, 39960, 'en', 'name', 'International Political Science Association'),
(47351, 39960, 'fr', 'name', 'Association internationale de science politique'),
(47352, 39961, 'ja', 'name', 'å¤ę²³é›»ę°—å·„ę„­'),
(47353, 39961, 'no_lang_code', 'name', 'Furukawa Electric (Japan)'),
(47354, 39962, 'no_lang_code', 'name', 'Satguru Partap Singh Hospital'),
(47355, 39963, 'no_lang_code', 'name', 'Scantrol (Norway)'),
(47356, 39964, 'no_lang_code', 'name', 'Tecnima (Brazil)'),
(47357, 39965, 'no_lang_code', 'name', 'Mjanyana Hospital'),
(47358, 39966, 'no', 'name', 'Halden Kommune'),
(47359, 39967, 'no_lang_code', 'name', 'Mullaitivu Hospital'),
(47360, 39968, 'en', 'name', 'Cyprus College'),
(47361, 39969, 'en', 'name', 'Norwegian Corporate Governance Board'),
(47362, 39970, 'en', 'name', 'Heritage College'),
(47363, 39970, 'fr', 'name', 'Collège héritage'),
(47364, 39971, 'no_lang_code', 'name', 'PV Prest VƔcuo (Brazil)'),
(47365, 39972, 'no_lang_code', 'name', 'Ryfylke (Norway)'),
(47366, 39973, 'no_lang_code', 'name', 'TracID (Norway)'),
(47367, 39974, 'en', 'name', 'Jerusalem University College'),
(47368, 39975, 'en', 'name', 'College of Biblical Studies'),
(47369, 39976, 'no', 'name', 'Norsk Sau og Geit'),
(47370, 39977, 'en', 'name', 'Total Rehab'),
(47371, 39978, 'en', 'name', 'Grey Provincial Hospital'),
(47372, 39979, 'en', 'name', 'Harrogate and District NHS Foundation Trust'),
(47373, 39980, 'en', 'name', 'Wisconsin Association of Independent Colleges and Universities'),
(47374, 39981, 'en', 'name', 'Kirkland and District Hospital'),
(47375, 39982, 'pt', 'name', 'Associação Nacional de História'),
(47376, 39983, 'no_lang_code', 'name', 'Logtrac (Brazil)'),
(47377, 39984, 'no', 'name', 'Norsk Hestesenter Stiftelse'),
(47378, 39985, 'de', 'name', 'Kantonsspital Frauenfeld'),
(47379, 39986, 'no_lang_code', 'name', 'Dolphin Interconnect Solutions (Norway)'),
(47380, 39987, 'no_lang_code', 'name', 'Single-Phase Power (Norway)'),
(47381, 39988, 'no_lang_code', 'name', 'Spermatech (Norway)'),
(47382, 39989, 'no_lang_code', 'name', 'Multiconsult (Norway)'),
(47383, 39990, 'en', 'name', 'Patna Medical College and Hospital'),
(47384, 39990, 'hi', 'name', 'पटना ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(47385, 39991, 'no_lang_code', 'name', 'Allinea Software (United Kingdom)'),
(47386, 39992, 'pt', 'name', 'Secretaria da Casa Civil'),
(47387, 39993, 'no_lang_code', 'name', 'Thrace Polybulk (Norway)'),
(47388, 39994, 'no_lang_code', 'name', 'Silcare (Poland)'),
(47389, 39995, 'es', 'name', 'Hospital Tobar GarcĆ­a'),
(47390, 39996, 'no_lang_code', 'name', 'Gaidaros Forlag (Norway)'),
(47391, 39997, 'en', 'name', 'Humboldt District Hospital'),
(47392, 39998, 'no_lang_code', 'name', 'Selaz (Brazil)'),
(47393, 39999, 'no_lang_code', 'name', 'Nanophoton (Brazil)'),
(47394, 40000, 'en', 'name', 'Asnuntuck Community College'),
(47395, 40001, 'en', 'name', 'Beulah Heights University'),
(47396, 40002, 'en', 'name', 'St George''s Hospital'),
(47397, 40003, 'it', 'name', 'Accademia di Belle Arti di Carrara'),
(47398, 40004, 'en', 'name', 'Napa Valley College'),
(47399, 40005, 'en', 'name', 'Data Security Council of India'),
(47400, 40006, 'en', 'name', 'Centre for Science, Development and Media Studies'),
(47401, 40007, 'en', 'name', 'Drew Associates'),
(47402, 40008, 'en', 'name', 'Alliance for Clinical Trials in Oncology'),
(47403, 40009, 'en', 'name', 'Centre for Transportation Engineering and Planning'),
(47404, 40010, 'en', 'name', 'Public Higher Medical Professional School in Opole'),
(47405, 40010, 'pl', 'name', 'Państwowa Medyczna Wyższa Szkoła Zawodowa'),
(47406, 40011, 'en', 'name', 'Norco College'),
(47407, 40012, 'en', 'name', 'Ohio Valley Medical Center'),
(47408, 40013, 'no_lang_code', 'name', 'Anecova (Switzerland)'),
(47409, 40014, 'en', 'name', 'Social Policy Evaluation and Research Unit'),
(47410, 40015, 'de', 'name', 'pƤdagogische hochschule tirol'),
(47411, 40015, 'en', 'name', 'Pedagocial University Tyrol'),
(47412, 40016, 'en', 'name', 'Steinbach Bible College'),
(47413, 40017, 'no_lang_code', 'name', 'John Wiley & Sons (Germany)'),
(47414, 40018, 'en', 'name', 'Muscular Dystrophy Canada'),
(47415, 40018, 'fr', 'name', 'Dystrophie musculaire Canada'),
(47416, 40019, 'fr', 'name', 'Fondation du Roi Abdul-Aziz Al Saoud'),
(47417, 40020, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€å¤§å³¶é’ę¾åœ’'),
(47418, 40020, 'no_lang_code', 'name', 'National Sanatorium Ooshima Seishōen'),
(47419, 40021, 'en', 'name', 'Asia Pacific Institute of Management'),
(47420, 40022, 'en', 'name', 'All Russian Scientific Research Institute of Aviation Materials'),
(47421, 40022, 'ru', 'name', 'Все России Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных материалов'),
(47422, 40023, 'no_lang_code', 'name', 'PNC Financial Services (United States)'),
(47423, 40024, 'en', 'name', 'National Institute of Plant Health Management'),
(47424, 40024, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤Øą¤øą„ā€ą¤Ŗą¤¤ą¤æ ą¤øą„ā€ą¤µą¤¾ą¤øą„ā€ą¤„ą„ā€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø'),
(47425, 40025, 'no_lang_code', 'name', 'CohBar (United States)'),
(47426, 40026, 'no_lang_code', 'name', 'Lesieur Cristal'),
(47427, 40027, 'lv', 'name', 'Malnavas koledža'),
(47428, 40028, 'en', 'name', 'Grace Mission University'),
(47429, 40029, 'en', 'name', 'State Higher Vocational School Memorial of Prof. Stanislaw Tarnowski in Tarnobrzeg'),
(47430, 40029, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. prof. Stanisława Tarnowskiego w Tarnobrzegu'),
(47431, 40030, 'en', 'name', 'Society for Participatory Research in Asia'),
(47432, 40031, 'it', 'name', 'Conservatorio Giuseppe Nicolini'),
(47433, 40032, 'en', 'name', 'Thomas Jefferson School of Law'),
(47434, 40032, 'fr', 'name', 'FacultƩ de droit thomas jefferson'),
(47435, 40033, 'no_lang_code', 'name', 'Novartis (Germany)'),
(47436, 40034, 'no_lang_code', 'name', 'Eletrobras (Brazil)'),
(47437, 40034, 'pt', 'name', 'Centrais ElƩtricas Brasileiras S.A.'),
(47438, 40035, 'no_lang_code', 'name', 'Advanced Photon Sciences (United States)'),
(47439, 40036, 'en', 'name', 'National Institute of Aquatic Toxicology'),
(47440, 40036, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia de Toxicologia AquÔtica'),
(47441, 40037, 'en', 'name', 'Baltimore County Public Schools'),
(47442, 40038, 'no_lang_code', 'name', 'Milliman (United States)'),
(47443, 40039, 'no_lang_code', 'name', 'Theravectys (France)'),
(47444, 40040, 'en', 'name', 'American Baptist College'),
(47445, 40041, 'en', 'name', 'Venerable English College'),
(47446, 40042, 'pt', 'name', 'Fundação Ariel Glaser Contra o SIDA PediÔtrico'),
(47447, 40043, 'en', 'name', 'Relay Graduate School of Education'),
(47448, 40044, 'no_lang_code', 'name', 'Rosa (United States)'),
(47449, 40045, 'en', 'name', 'Grand Lodge of Western Australia'),
(47450, 40046, 'en', 'name', 'Gansu Academy of Agricultural Sciences'),
(47451, 40046, 'zh', 'name', 'å†œäøšē§‘å­¦ē”˜č‚ƒēœē§‘å­¦é™¢'),
(47452, 40047, 'bn', 'name', 'ą¦ą¦®.ą¦.জি. ওসমানী মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(47453, 40047, 'en', 'name', 'M.A.G. Osmani Medical College, Sylhet, Sylhet MAG Osmani Medical College'),
(47454, 40048, 'it', 'name', 'Conservatorio di Musica Giovambattista Pergolesi'),
(47455, 40049, 'en', 'name', 'Stefansson Arctic Institute'),
(47456, 40049, 'is', 'name', 'Stofnun VilhjƔlms StefƔnssonar'),
(47457, 40050, 'en', 'name', 'Mendocino College'),
(47458, 40051, 'fr', 'name', 'Observatoire National des Droits de l''Enfant'),
(47459, 40052, 'en', 'name', 'Albert Ellis Institute'),
(47460, 40053, 'de', 'name', 'Zoologische Gesellschaft Frankfurt'),
(47461, 40053, 'en', 'name', 'Frankfurt Zoological Society'),
(47462, 40054, 'en', 'name', 'American Egg Board'),
(47463, 40055, 'en', 'name', 'Butler County Community College'),
(47464, 40056, 'pt', 'name', 'Centro de Tecnologias EstratƩgicas do Nordeste'),
(47465, 40057, 'en', 'name', 'European Union of Medical Specialists'),
(47466, 40057, 'nl', 'name', 'Union EuropƩenne des MƩdecins SpƩcialistes'),
(47467, 40058, 'en', 'name', 'Sahara and Sahel Observatory'),
(47468, 40058, 'fr', 'name', 'Observatoire du Sahara et du Sahel'),
(47469, 40059, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Ciechanowie'),
(47470, 40060, 'en', 'name', 'Centre for Ageing Research and Development in Ireland'),
(47471, 40061, 'en', 'name', 'Union Theological College'),
(47472, 40062, 'en', 'name', 'Academic Degrees & Graduate Education'),
(47473, 40062, 'zh', 'name', 'å­¦ä½äøŽē ”ē©¶ē”Ÿę•™č‚²ę‚åæ—ē¤¾'),
(47474, 40063, 'no_lang_code', 'name', 'Casappa (Italy)'),
(47475, 40064, 'en', 'name', 'Leonard Wood Institute'),
(47476, 40065, 'en', 'name', 'Paul D. Camp Community College'),
(47477, 40066, 'no_lang_code', 'name', 'iThemba Laboratory'),
(47478, 40067, 'en', 'name', 'Spartan College of Aeronautics and Technology'),
(47479, 40068, 'en', 'name', 'Swedish Board of Agriculture'),
(47480, 40068, 'sv', 'name', 'Statens jordbruksverk'),
(47481, 40069, 'no_lang_code', 'name', 'Gliacure (United States)'),
(47482, 40070, 'en', 'name', 'Institute and Faculty of Actuaries'),
(47483, 40071, 'en', 'name', 'IMDEA Energy Institute'),
(47484, 40071, 'es', 'name', 'Instituto IMDEA EnergĆ­a'),
(47485, 40072, 'it', 'name', 'Conservatorio di Musica Agostino Steffani'),
(47486, 40073, 'en', 'name', 'Practical Action'),
(47487, 40074, 'en', 'name', 'Ontario Centre of Excellence for Child and Youth Mental Health'),
(47488, 40074, 'fr', 'name', 'Centre d’Excellence de l’Ontario en SantĆ© Mentale des Enfants et des Adolescents'),
(47489, 40075, 'en', 'name', 'International Centre for Reproductive Health'),
(47490, 40076, 'en', 'name', 'National Academy of Sciences'),
(47491, 40076, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ķ•™ģˆ ģ›'),
(47492, 40077, 'no_lang_code', 'name', 'Grape King (Taiwan)'),
(47493, 40077, 'zh', 'name', 'č‘”č„ēŽ‹ē”ŸęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(47494, 40078, 'no_lang_code', 'name', 'Vaisala (United States)'),
(47495, 40079, 'no_lang_code', 'name', 'Subway (United States)'),
(47496, 40080, 'no_lang_code', 'name', 'Geoterra Image (South Africa)'),
(47497, 40081, 'en', 'name', 'Wharton County Junior College'),
(47498, 40082, 'en', 'name', 'National Research Centre for Grapes'),
(47499, 40082, 'hi', 'name', 'ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ-ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤…ą¤‚ą¤—ą„‚ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(47500, 40083, 'cs', 'name', 'VysokÔ Ŕkola aplikované psychologie'),
(47501, 40083, 'en', 'name', 'College of Applied Psychology'),
(47502, 40084, 'no_lang_code', 'name', 'Motley Fool (United States)'),
(47503, 40085, 'en', 'name', 'Indian Institute of Management Kashipur'),
(47504, 40085, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤¾ą¤¶ą„€ą¤Ŗą„ą¤°'),
(47505, 40086, 'no_lang_code', 'name', 'Farm Africa Kenya'),
(47506, 40087, 'en', 'name', 'South and City College Birmingham'),
(47507, 40088, 'sv', 'name', 'Landstinget Sƶrmland, Sƶdermanlands lƤns landsting'),
(47508, 40089, 'en', 'name', 'Nipawin Bible College'),
(47509, 40090, 'pt', 'name', 'Empresa de Pesquisa AgropecuƔria do Rio Grande do Norte'),
(47510, 40091, 'en', 'name', 'Norwegian Scientific Academy for Polar Research'),
(47511, 40091, 'no', 'name', 'Norges Vitenskapsakademi for Polarforskning'),
(47512, 40092, 'en', 'name', 'Henry Smith Charity'),
(47513, 40093, 'no_lang_code', 'name', 'AB Science (France)'),
(47514, 40094, 'en', 'name', 'Shenkar College of Engineering and Design'),
(47515, 40094, 'he', 'name', 'שנקר - הנדהה, עיצוב ×•××ž× ×•×Ŗ'),
(47516, 40095, 'en', 'name', 'Tianjin Natural History Museum'),
(47517, 40095, 'zh', 'name', 'å¤©ę“„č‡Ŗē„¶åšē‰©é¦†å§‹å»ŗäŗŽ'),
(47518, 40096, 'no_lang_code', 'name', 'Seascape Learning (India)'),
(47519, 40097, 'en', 'name', 'Global ICT Standardization Forum for India'),
(47520, 40098, 'no_lang_code', 'name', 'Umvoto Africa'),
(47521, 40099, 'cy', 'name', 'Cyngor Celfyddydau Cymru'),
(47522, 40099, 'en', 'name', 'Arts Council of Wales'),
(47523, 40100, 'en', 'name', 'Northeast Lakeview College'),
(47524, 40101, 'de', 'name', 'Fachhochschule für Verwaltung und Dienstleistung'),
(47525, 40102, 'en', 'name', 'Milltown Institute of Theology and Philosophy'),
(47526, 40103, 'en', 'name', 'Atlanta’s John Marshall Law School'),
(47527, 40104, 'en', 'name', 'Department for Child Protection and Family Support'),
(47528, 40105, 'en', 'name', 'Academy of Hotel Management and Catering Industry'),
(47529, 40105, 'pl', 'name', 'Wyższa Szkoła Hotelarstwa i Gastronomii'),
(47530, 40106, 'en', 'name', 'European Society for Sexual Medicine'),
(47531, 40107, 'ja', 'name', 'č–å’Œå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(47532, 40107, 'no_lang_code', 'name', 'Seiwa Gakuen College'),
(47533, 40108, 'fr', 'name', 'Haut-Commissariat aux Eaux et Forêts et à la Lutte Contre la Désertification'),
(47534, 40109, 'en', 'name', 'Federal Scientific Center for Animal Husbandry named after Academician L.K. Ernst'),
(47535, 40109, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ животновоГства имени Š›. К. Эрнста'),
(47536, 40110, 'en', 'name', 'M. Tuttle & Associates'),
(47537, 40111, 'en', 'name', 'National Medical Stores'),
(47538, 40112, 'en', 'name', 'RMIT Vietnam'),
(47539, 40112, 'vi', 'name', 'ĐẔi hį»c RMIT Việt Nam'),
(47540, 40113, 'en', 'name', 'Frumkin Institute of Physical Chemistry and Electrochemistry'),
(47541, 40113, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической химии Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŠø им. А. Š. Š¤Ń€ŃƒŠ¼ŠŗŠøŠ½Š° Российской акаГемии наук'),
(47542, 40114, 'en', 'name', 'Indonesian Coral Reef Foundation'),
(47543, 40114, 'id', 'name', 'Yayasan Terumbu Karang Indonesia'),
(47544, 40115, 'no_lang_code', 'name', 'Benbria (Canada)'),
(47545, 40116, 'en', 'name', 'Ministry of Agriculture, Animal Industry and Fisheries'),
(47546, 40117, 'en', 'name', 'Statistics Korea'),
(47547, 40117, 'ko', 'name', '통계청'),
(47548, 40118, 'en', 'name', 'Vilnius University of Applied Sciences'),
(47549, 40118, 'lt', 'name', 'Vilniaus Kolegija'),
(47550, 40119, 'en', 'name', 'Buckminster Fuller Institute'),
(47551, 40120, 'en', 'name', 'Government of Sikkim'),
(47552, 40121, 'en', 'name', 'Emerson School District'),
(47553, 40122, 'en', 'name', 'Northern Oklahoma College'),
(47554, 40123, 'no_lang_code', 'name', 'Amdocs (United States)'),
(47555, 40124, 'en', 'name', 'Africa Society for Blood Transfusion'),
(47556, 40125, 'en', 'name', 'Bromley College of Further and Higher Education'),
(47557, 40126, 'no_lang_code', 'name', 'Satellite Applications Catapult (United Kingdom)'),
(47558, 40127, 'en', 'name', 'British Council Egypt'),
(47559, 40128, 'en', 'name', 'Air Navigation and Weather Services'),
(47560, 40129, 'no_lang_code', 'name', 'AgriSense (United Kingdom)'),
(47561, 40130, 'no_lang_code', 'name', 'Nagra (France)'),
(47562, 40131, 'en', 'name', 'Institute of Numerical Mathematics'),
(47563, 40131, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ математики Российской акаГемии наук'),
(47564, 40132, 'en', 'name', 'National Research Centre on Yak'),
(47565, 40133, 'en', 'name', 'Heritage Council'),
(47566, 40133, 'ga', 'name', 'An Comhairle Oidhreachta'),
(47567, 40134, 'fr', 'name', 'Centre d''Etude Regional pour l''Amelioration de l''Adaptation a la Secheresse'),
(47568, 40135, 'pt', 'name', 'Faculdade SĆ£o Lucas'),
(47569, 40136, 'pt', 'name', 'Fundação João Pinheiro, João Pinheiro Foundation'),
(47570, 40137, 'no_lang_code', 'name', 'West Bengal Green Energy Development Corporation (India)'),
(47571, 40138, 'en', 'name', 'National Space Research and Development Agency'),
(47572, 40139, 'en', 'name', 'Institute of Philosophy'),
(47573, 40139, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ философии'),
(47574, 40140, 'en', 'name', 'Trinity Lutheran College'),
(47575, 40141, 'en', 'name', 'Trinity School for Ministry'),
(47576, 40142, 'no_lang_code', 'name', 'FKUZ Stavropol Rospotrebnadzor Anti Institute'),
(47577, 40142, 'ru', 'name', 'Š¤ŠšŠ£Š— Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ ŠæŃ€Š¾Ń‚ŠøŠ²Š¾Ń‡ŃƒŠ¼Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ РоспотребнаГзора'),
(47578, 40143, 'en', 'name', 'Yuba College'),
(47579, 40144, 'no_lang_code', 'name', 'Alere (United Kingdom)'),
(47580, 40145, 'en', 'name', 'Paichai Chinese Primary School'),
(47581, 40146, 'en', 'name', 'Research Institute of Industrial Science and Technology'),
(47582, 40147, 'en', 'name', 'IC Design Education Center'),
(47583, 40147, 'ko', 'name', 'ė°˜ė„ģ²“ģ„¤ź³„ źµģœ”ģ„¼ķ„°'),
(47584, 40148, 'en', 'name', 'Shyam Shah Medical College'),
(47585, 40149, 'en', 'name', 'Fobang Foundation'),
(47586, 40150, 'no_lang_code', 'name', 'Vargƶn Alloys (Sweden)'),
(47587, 40151, 'en', 'name', 'Merced College'),
(47588, 40152, 'en', 'name', 'Regional Medical Research Centre'),
(47589, 40153, 'no_lang_code', 'name', 'Safeco Insurance'),
(47590, 40154, 'no_lang_code', 'name', 'Vocapia Research (France)'),
(47591, 40155, 'en', 'name', 'Canadian Nuclear Safety Commission'),
(47592, 40155, 'fr', 'name', 'Commission Canadienne de SƻretƩ NuclƩaire'),
(47593, 40156, 'no_lang_code', 'name', 'Walgreens (United States)'),
(47594, 40157, 'en', 'name', 'Angliss International Hotel School'),
(47595, 40158, 'en', 'name', 'TCI College of Technology'),
(47596, 40159, 'en', 'name', 'National Cancer Center'),
(47597, 40160, 'en', 'name', 'Soil Conservation and Watershed Management Research'),
(47598, 40160, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ حفاظت Ų®Ų§Ś© و آبخیزداری'),
(47599, 40161, 'en', 'name', 'PEN American Center'),
(47600, 40162, 'en', 'name', 'Center for Global Development'),
(47601, 40163, 'en', 'name', 'Kuyper College'),
(47602, 40164, 'en', 'name', 'Institute of Systematics and Ecology of Animals'),
(47603, 40164, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систематики Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø животных Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(47604, 40165, 'no_lang_code', 'name', '490 BioTech (United States)'),
(47605, 40166, 'en', 'name', 'Far Eastern Scientific Centre of Physiology and Pathology of Respiration Russian Academy of Medical Sciences'),
(47606, 40166, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр физиологии Šø патологии Š“Ń‹Ń…Š°Š½ŠøŃ'),
(47607, 40167, 'en', 'name', 'Chinese Academy of Governance'),
(47608, 40167, 'zh', 'name', 'å›½å®¶č”Œę”æå­¦é™¢'),
(47609, 40168, 'en', 'name', 'Central Board of Irrgation and Power'),
(47610, 40169, 'no_lang_code', 'name', 'PNO Consultants (Italy)'),
(47611, 40170, 'en', 'name', 'International School of Trieste'),
(47612, 40170, 'it', 'name', 'Scuola Internazionale di Trieste'),
(47613, 40171, 'en', 'name', 'Center for Circumpolar Studies'),
(47614, 40172, 'en', 'name', 'Shanti Business School'),
(47615, 40173, 'en', 'name', 'Daymar College'),
(47616, 40174, 'en', 'name', 'York County Community College'),
(47617, 40175, 'en', 'name', 'Utah College of Applied Technology'),
(47618, 40176, 'pt', 'name', 'Complexo Hospitalar UniversitƔrio Professor Edgard Santos'),
(47619, 40177, 'en', 'name', 'Cambridge School'),
(47620, 40178, 'no_lang_code', 'name', 'Abilian (France)'),
(47621, 40179, 'no_lang_code', 'name', 'Ashland (United States)'),
(47622, 40180, 'no_lang_code', 'name', 'Turner Broadcasting System (United States)'),
(47623, 40181, 'no_lang_code', 'name', 'Armstrong World Industries (United States)'),
(47624, 40182, 'en', 'name', 'Northwest–Shoals Community College'),
(47625, 40183, 'en', 'name', 'Institute for Coastal Marine Environment'),
(47626, 40183, 'it', 'name', 'Istituto per l''Ambiente Marino Costiero'),
(47627, 40184, 'en', 'name', 'West and Central African Research and Education Network'),
(47628, 40185, 'en', 'name', 'Bank of America'),
(47629, 40186, 'no_lang_code', 'name', 'Berthold (Australia)'),
(47630, 40187, 'en', 'name', 'North Central Texas College'),
(47631, 40188, 'en', 'name', 'College of Law'),
(47632, 40188, 'lv', 'name', 'Juridiskā koledža'),
(47633, 40189, 'no_lang_code', 'name', 'Dryas Arqueologia (Portugal)'),
(47634, 40190, 'fr', 'name', 'Wesford'),
(47635, 40191, 'es', 'name', 'SecretarĆ­a de Salud de Jalisco'),
(47636, 40192, 'pt', 'name', 'Faculdade Redentor'),
(47637, 40193, 'no_lang_code', 'name', 'Mitsubishi Electric (France)'),
(47638, 40194, 'en', 'name', 'Ministry of National Education and Scientific Research'),
(47639, 40195, 'en', 'name', 'Indian Register of Shipping'),
(47640, 40196, 'en', 'name', 'Holland Chemistry'),
(47641, 40197, 'no_lang_code', 'name', 'Bais HaMedrash and Mesivta of Baltimore'),
(47642, 40198, 'no_lang_code', 'name', 'Histogenics (United States)'),
(47643, 40199, 'fr', 'name', 'Haute Ɖcole en Hainaut'),
(47644, 40200, 'no_lang_code', 'name', 'Krasnoyarsk Scientific Center'),
(47645, 40200, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(47646, 40201, 'en', 'name', 'Irish Baptist College'),
(47647, 40202, 'pt', 'name', 'Caixa Cultural'),
(47648, 40203, 'en', 'name', 'Tanzania Industrial Research and Development Organization'),
(47649, 40204, 'it', 'name', 'Conservatorio di Musica Arrigo Boito'),
(47650, 40205, 'en', 'name', 'Colorado School of Traditional Chinese Medicine'),
(47651, 40206, 'en', 'name', 'Fiber Optics Research Center'),
(47652, 40206, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр волоконной оптики Российской акаГемии наук'),
(47653, 40207, 'en', 'name', 'National Telecommunication Regulatory Authority'),
(47654, 40208, 'de', 'name', 'Deutsche Keramische Gesellschaft'),
(47655, 40208, 'en', 'name', 'German Ceramic Society'),
(47656, 40209, 'en', 'name', 'International Baptist College and Seminary'),
(47657, 40210, 'eu', 'name', 'Osasun Ikaskuntza Fundazioa'),
(47658, 40211, 'no_lang_code', 'name', 'R-Cost (France)'),
(47659, 40212, 'no_lang_code', 'name', 'Tefal (France)'),
(47660, 40213, 'en', 'name', 'Islamic Azad University of Hamedan'),
(47661, 40213, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد همدان'),
(47662, 40214, 'en', 'name', 'Institute of Technical Chemistry'),
(47663, 40215, 'en', 'name', 'International Humanitarian University'),
(47664, 40215, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½Š¾Š³Š¾ Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ'),
(47665, 40216, 'en', 'name', 'Healthy Waterways'),
(47666, 40217, 'en', 'name', 'Fort Scott Community College'),
(47667, 40218, 'no_lang_code', 'name', 'Mattel (United States)'),
(47668, 40219, 'es', 'name', 'Instituto Tecnológico de CuliacÔn'),
(47669, 40220, 'pt', 'name', 'Instituto TƩcnico Artƭstico e Profissional de Coimbra'),
(47670, 40221, 'en', 'name', 'National Centre for Groundwater Research and Training'),
(47671, 40222, 'en', 'name', 'Dr. D. Y. Patil Medical College, Hospital and Research Centre'),
(47672, 40223, 'en', 'name', 'Shaanxi Provincial Meteorological Bureau'),
(47673, 40223, 'zh', 'name', 'é™•č„æēœę°”č±”å±€'),
(47674, 40224, 'fr', 'name', 'Banque de France'),
(47675, 40225, 'en', 'name', 'College of Communications and Management in Poznan'),
(47676, 40225, 'pl', 'name', 'Wyższa Szkoła Komunikacji i Zarządzania w Poznaniu'),
(47677, 40226, 'en', 'name', 'Scientific Research Institute of Experimental and Clinical Medicine');
INSERT INTO `ror_settings` VALUES
(47678, 40226, 'ru', 'name', 'Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠžŠ• Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠžŠ• Š‘Š®Š”Š–Š•Š¢ŠŠžŠ• ŠŠŠ£Š§ŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š­ŠšŠ”ŠŸŠ•Š Š˜ŠœŠ•ŠŠ¢ŠŠ›Š¬ŠŠžŠ™ И ŠšŠ›Š˜ŠŠ˜Š§Š•Š”ŠšŠžŠ™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ«'),
(47679, 40227, 'en', 'name', 'Office of the Attorney General'),
(47680, 40228, 'no_lang_code', 'name', 'EMS (Canada)'),
(47681, 40229, 'en', 'name', 'Cloud County Community College'),
(47682, 40230, 'en', 'name', 'Paris Junior College'),
(47683, 40231, 'en', 'name', 'Thomas More College of Liberal Arts'),
(47684, 40232, 'en', 'name', 'National Organization of Peer Educators'),
(47685, 40233, 'fr', 'name', 'Direction de l’EpidĆ©miologie et de Lutte contre les Maladies'),
(47686, 40234, 'en', 'name', 'Neosho County Community College'),
(47687, 40235, 'en', 'name', 'Centre for the Study of Developing Societies'),
(47688, 40236, 'en', 'name', 'M S Swaminathan Research Foundation'),
(47689, 40237, 'en', 'name', 'Wallace Community College'),
(47690, 40238, 'de', 'name', 'Till-Eulenspiegel-Museum Schƶppenstedt'),
(47691, 40239, 'en', 'name', 'Maria College'),
(47692, 40240, 'en', 'name', 'National Bureau of Statistics of China'),
(47693, 40240, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶ē»Ÿč®”å±€'),
(47694, 40241, 'en', 'name', 'Somalia Water and Land Information'),
(47695, 40242, 'no_lang_code', 'name', 'Stanvac Superon Group (India)'),
(47696, 40243, 'no_lang_code', 'name', 'Porto Editora (Portugal)'),
(47697, 40244, 'pl', 'name', 'Śląska Wyższa Szkoła Informatyczno-Medyczna'),
(47698, 40245, 'de', 'name', 'EuropƤische Nachbarschaftspolitik und Erweiterungsverhandlungen'),
(47699, 40245, 'en', 'name', 'Directorate-General for Neighbourhood and Enlargement Negotiations'),
(47700, 40245, 'fr', 'name', 'Politique europƩenne de voisinage et nƩgociations d''Ʃlargissement'),
(47701, 40246, 'pt', 'name', 'Instituto Nacional de Estudos e Pesquisa'),
(47702, 40247, 'no_lang_code', 'name', 'MTG Research (United Kingdom)'),
(47703, 40248, 'it', 'name', 'Conservatorio Statale di Musica Gioachino Rossini'),
(47704, 40249, 'de', 'name', 'Katholische Hochschule für Sozialwesen Berlin'),
(47705, 40249, 'en', 'name', 'Catholic University of Applied Social Sciences'),
(47706, 40250, 'pt', 'name', 'Instituto de Tecnologia de Alimentos'),
(47707, 40251, 'en', 'name', 'Tobacco Research Institute'),
(47708, 40251, 'zh', 'name', 'é™¢ēƒŸč‰ē ”ē©¶ę‰€'),
(47709, 40252, 'fr', 'name', 'Centre de Calcul El-Khawarizmi'),
(47710, 40253, 'en', 'name', 'ICLEI - Local Governments for Sustainability Africa'),
(47711, 40254, 'no_lang_code', 'name', 'VectraWave (France)'),
(47712, 40255, 'en', 'name', 'College of Occupational Safety and Health'),
(47713, 40255, 'hr', 'name', 'Visoka Ŕkola za sigurnost'),
(47714, 40256, 'no_lang_code', 'name', 'Pelum Association'),
(47715, 40257, 'en', 'name', 'Mid-Atlantic Christian University'),
(47716, 40258, 'en', 'name', 'Research Institute of Obstetrics and Gynecology named after D.O. Ott'),
(47717, 40258, 'ru', 'name', 'ŠŠ˜Š˜ Š°ŠŗŃƒŃˆŠµŃ€ŃŃ‚Š²Š° Šø гинекологии имени Š”. Šž. ŠžŃ‚Ń‚Š°'),
(47718, 40259, 'en', 'name', 'Phillips Theological Seminary'),
(47719, 40260, 'no_lang_code', 'name', 'Bluestar Silicones (France)'),
(47720, 40261, 'no_lang_code', 'name', 'Kingston Technology (United States)'),
(47721, 40262, 'en', 'name', 'Bishop Burton College'),
(47722, 40263, 'en', 'name', 'Lighthouse Trust'),
(47723, 40264, 'en', 'name', 'Carrington College'),
(47724, 40265, 'no_lang_code', 'name', 'WADI Group (Egypt)'),
(47725, 40266, 'en', 'name', 'Irish Institute of Clinical Neuroscience'),
(47726, 40267, 'en', 'name', 'Hazelden Betty Ford Graduate School of Addiction Studies'),
(47727, 40268, 'en', 'name', 'Academy for Jewish Religion California'),
(47728, 40269, 'en', 'name', 'Phi Beta Kappa Society'),
(47729, 40270, 'da', 'name', 'Designskolen Kolding'),
(47730, 40270, 'en', 'name', 'Design School Kolding'),
(47731, 40271, 'en', 'name', 'Irish American Cultural Institute'),
(47732, 40272, 'no_lang_code', 'name', 'Zlatarna Celje (Slovenia)'),
(47733, 40273, 'en', 'name', 'East Avenue Medical Center'),
(47734, 40274, 'no_lang_code', 'name', 'Unum Group (United States)'),
(47735, 40275, 'en', 'name', 'Special Military School of Saint-Cyr'),
(47736, 40275, 'fr', 'name', 'Ɖcole SpĆ©ciale Militaire de Saint-Cyr'),
(47737, 40276, 'en', 'name', 'Pennsylvania Office of Attorney General'),
(47738, 40277, 'en', 'name', 'Russian Cancer Research Center NN Blokhin'),
(47739, 40277, 'ru', 'name', 'Российский онкологический Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр им. Š. Š. Блохина'),
(47740, 40278, 'tr', 'name', 'Konya Numune Hastanesi'),
(47741, 40279, 'no_lang_code', 'name', 'ERA Arqueologia'),
(47742, 40280, 'no_lang_code', 'name', 'Cabot (United States)'),
(47743, 40281, 'en', 'name', 'Salem Community College'),
(47744, 40282, 'hi', 'name', 'ą¤¹ą¤æą¤‚ą¤¦ą„ą¤øą„ą¤¤ą¤¾ą¤Ø ą¤ą¤°ą„‹ą¤Øą„‰ą¤Ÿą¤æą¤•ą„ą¤ø ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(47745, 40282, 'no_lang_code', 'name', 'Hindustan Aeronautics Limited (India)'),
(47746, 40283, 'de', 'name', 'EuropƤischen Zentralbank'),
(47747, 40283, 'en', 'name', 'European Central Bank'),
(47748, 40284, 'en', 'name', 'Korean Educational Development Institute'),
(47749, 40284, 'ko', 'name', 'ķ•œźµ­źµģœ”ź°œė°œģ›'),
(47750, 40285, 'en', 'name', 'Alexander College'),
(47751, 40286, 'no_lang_code', 'name', 'ASSAB Pacific (Singapore)'),
(47752, 40287, 'en', 'name', 'Ethiopian Development Research Institute'),
(47753, 40288, 'en', 'name', 'All-Russian Research Institute Fisheries and Oceanography'),
(47754, 40288, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° России Šø океанографии'),
(47755, 40289, 'en', 'name', 'College of Dental Surgeons of Hong Kong'),
(47756, 40290, 'no_lang_code', 'name', 'Physiogenex (France)'),
(47757, 40291, 'no_lang_code', 'name', 'WaterNet Trust'),
(47758, 40292, 'es', 'name', 'Revista Conamed'),
(47759, 40293, 'en', 'name', 'Korea Rural Economic Institute'),
(47760, 40293, 'ko', 'name', 'ķ•œźµ­ ė†ģ“Œ 경제 연구원'),
(47761, 40294, 'en', 'name', 'Mitchell Community College'),
(47762, 40295, 'en', 'name', 'Shetland Islands Council'),
(47763, 40296, 'en', 'name', 'Florida Keys Community College'),
(47764, 40297, 'en', 'name', 'Ministry of Education'),
(47765, 40297, 'fr', 'name', 'MinistĆØre de l''Ɖducation'),
(47766, 40297, 'rw', 'name', 'Minisiteri y''Uburezi'),
(47767, 40298, 'en', 'name', 'Acupuncture & Integrative Medicine College'),
(47768, 40299, 'no_lang_code', 'name', 'Optigo Networks (Canada)'),
(47769, 40300, 'en', 'name', 'Old Salem Museums and Gardens'),
(47770, 40301, 'en', 'name', 'Nature Conservation Research Centre'),
(47771, 40302, 'no_lang_code', 'name', 'Lexmark (United States)'),
(47772, 40303, 'el', 'name', 'Ī‘Ī½ĻŽĻ„Ī±Ļ„Ī· Ī•ĪŗĪŗĪ»Ī·ĻƒĪ¹Ī±ĻƒĻ„Ī¹ĪŗĪ® ΑκαΓημία Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(47773, 40303, 'en', 'name', 'University Ecclesiastical Academy of Thessaloniki'),
(47774, 40304, 'en', 'name', 'Texas Workforce Commission'),
(47775, 40305, 'en', 'name', 'Department of Economic and Community Development'),
(47776, 40306, 'en', 'name', 'Polar Geophysical Institute'),
(47777, 40306, 'ru', 'name', 'ŠŸŠ¾Š»ŃŃ€Š½Ń‹Š¹ геофизический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(47778, 40307, 'en', 'name', 'The Culinary Institute of America'),
(47779, 40308, 'en', 'name', 'Bancroft School of Massage Therapy'),
(47780, 40309, 'en', 'name', 'Birthingway College of Midwifery'),
(47781, 40310, 'en', 'name', 'Blue Cross Blue Shield of Massachusetts'),
(47782, 40311, 'en', 'name', 'Institute of Circulatory and Respiratory Health'),
(47783, 40312, 'en', 'name', 'National Science Digital Library'),
(47784, 40313, 'es', 'name', 'Instituto GeogrƔfico Nacional'),
(47785, 40314, 'fr', 'name', 'Ɖcole des Avocats Nord-Ouest'),
(47786, 40315, 'en', 'name', 'Salter School'),
(47787, 40316, 'en', 'name', 'Standing Rock Indian Reservation'),
(47788, 40317, 'en', 'name', 'Indian Council of Philosophical Research'),
(47789, 40318, 'no_lang_code', 'name', 'Infusion (South Africa)'),
(47790, 40319, 'pt', 'name', 'Faculdade de Administração Ciências Educação e Letras'),
(47791, 40320, 'no_lang_code', 'name', 'Niramaya Hospital'),
(47792, 40321, 'no_lang_code', 'name', 'Chengdu Institute of Information Technology (China)'),
(47793, 40321, 'zh', 'name', 'äø­ē§‘é™¢ęˆéƒ½äæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(47794, 40322, 'fr', 'name', 'Centre Technique des Industries Agroalimentaires'),
(47795, 40323, 'no_lang_code', 'name', 'Research Square (United States)'),
(47796, 40324, 'en', 'name', 'International Academy of Design & Technology'),
(47797, 40325, 'en', 'name', 'London School of Commerce'),
(47798, 40326, 'en', 'name', 'China Europe International Business School'),
(47799, 40326, 'zh', 'name', '中欧国际巄商学院'),
(47800, 40327, 'fr', 'name', 'Laboratoire de PhysioMƩdecine MolƩculaire'),
(47801, 40328, 'fr', 'name', 'Institut Polytechnique Rural de Formation et de Recherche AppliquƩe'),
(47802, 40329, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Arts & MĆ©dias de Caen/Cherbourg'),
(47803, 40330, 'en', 'name', 'Institute of Chemistry and Chemical Technology'),
(47804, 40330, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Šø химической технологии'),
(47805, 40331, 'en', 'name', 'National Institute of Science and Technology for Software Engineering'),
(47806, 40331, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia para Engenharia de Software'),
(47807, 40332, 'de', 'name', 'Astronomisches Observatorium Triest'),
(47808, 40332, 'en', 'name', 'Trieste Astronomical Observatory'),
(47809, 40332, 'fr', 'name', 'Observatoire astronomique de trieste'),
(47810, 40332, 'it', 'name', 'Osservatorio Astronomico di Trieste'),
(47811, 40333, 'en', 'name', 'National Intelligence Service'),
(47812, 40333, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­źµ­ź°€ģ •ė³“ģ›'),
(47813, 40334, 'en', 'name', 'All Nations University'),
(47814, 40335, 'en', 'name', 'Sanford Consortium for Regenerative Medicine'),
(47815, 40336, 'en', 'name', 'Karnataka Fisheries Development Corporation'),
(47816, 40337, 'pt', 'name', 'Ministério da Administração Interna'),
(47817, 40338, 'en', 'name', 'College of Westchester'),
(47818, 40339, 'no_lang_code', 'name', 'Rodin Therapeutics (United States)'),
(47819, 40340, 'no_lang_code', 'name', 'Gmarketing (Pakistan)'),
(47820, 40341, 'no_lang_code', 'name', 'Bomarts Farms (Ghana)'),
(47821, 40342, 'en', 'name', 'Kanyakumari Government Medical College'),
(47822, 40342, 'ta', 'name', 'ą®•ą®©ąÆą®©ą®æą®Æą®¾ą®•ąÆą®®ą®°ą®æ ą®…ą®°ą®šąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(47823, 40343, 'en', 'name', 'National Research Centre on Plant Biotechnology'),
(47824, 40343, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ पादप ą¤œą„ˆą¤µą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ā€ą¤¦ą„ą¤°'),
(47825, 40344, 'ja', 'name', 'é«˜ē ‚é¦™ę–™å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(47826, 40344, 'no_lang_code', 'name', 'Takasago (Japan)'),
(47827, 40345, 'en', 'name', 'Council on Competitive Government'),
(47828, 40346, 'no_lang_code', 'name', 'China North Industries Group Corporation (China)'),
(47829, 40346, 'zh', 'name', 'äø­å›½åŒ—ę–¹å·„äøšå…¬åø'),
(47830, 40347, 'en', 'name', 'Arizona School of Acupuncture and Oriental Medicine'),
(47831, 40348, 'en', 'name', 'Christian Heritage College'),
(47832, 40349, 'pt', 'name', 'Centro UniversitƔrio Metodista IPA'),
(47833, 40350, 'en', 'name', 'ACS Medical College and Hospital'),
(47834, 40351, 'en', 'name', 'Eurasia Foundation'),
(47835, 40352, 'en', 'name', 'Research Institute for Astronomy and Astrophysics of Maragh'),
(47836, 40353, 'no_lang_code', 'name', 'Meridian (Russia)'),
(47837, 40353, 'ru', 'name', 'ŠœŠµŃ€ŠøŠ“ŠøŠ°Š½'),
(47838, 40354, 'no_lang_code', 'name', 'MAKGABANENG'),
(47839, 40355, 'es', 'name', 'Consejo Superior Universitario Centroamericano'),
(47840, 40356, 'en', 'name', 'International Olympic Committee'),
(47841, 40356, 'fr', 'name', 'ComitƩ international olympique'),
(47842, 40357, 'en', 'name', 'Southern African NGO Network'),
(47843, 40358, 'sl', 'name', 'Å olski Center Å kofja Loka'),
(47844, 40359, 'pt', 'name', 'Sporting Clube Vasco da Gama'),
(47845, 40360, 'en', 'name', 'Canadian Council of Professional Engineers'),
(47846, 40360, 'fr', 'name', 'IngƩnieurs Canada'),
(47847, 40361, 'en', 'name', 'Fund for Armenian Relief'),
(47848, 40362, 'fr', 'name', 'Direction GƩnƩrale de la MƩtƩorologie'),
(47849, 40363, 'en', 'name', 'National Institute of Photonic Science and Technology for Optical Communication'),
(47850, 40363, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia FotĆ“nica para ComunicaƧƵes Ɠpticas'),
(47851, 40364, 'en', 'name', 'American Council on Germany'),
(47852, 40365, 'en', 'name', 'Rio Grande Bible Institute'),
(47853, 40366, 'no_lang_code', 'name', 'Novartis (India)'),
(47854, 40367, 'en', 'name', 'Daejeon Theological University'),
(47855, 40368, 'de', 'name', 'Hochschule für Musik Hanns Eisler'),
(47856, 40368, 'en', 'name', 'Hanns Eisler College or Academy of Music'),
(47857, 40369, 'en', 'name', 'Nello Carrara Institute of Applied Physics'),
(47858, 40369, 'it', 'name', 'Istituto di Fisica Applicata Nello Carrara'),
(47859, 40370, 'fr', 'name', 'Centre Marocain de Production Propre'),
(47860, 40371, 'fr', 'name', 'PƓle SupƩrieur d''Enseignement Artistique of Paris Boulogne-Billancourt'),
(47861, 40372, 'en', 'name', 'LighterLife'),
(47862, 40373, 'en', 'name', 'Ministry of Education and Training'),
(47863, 40373, 'vi', 'name', 'Bį»™ GiĆ”o DỄc vĆ  ĐƠo tįŗ”o'),
(47864, 40374, 'ar', 'name', 'المدرسة Ų§Ł„ŲŖŁˆŁ†Ų³ŁŠŲ© Ł„Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖā€Ž'),
(47865, 40374, 'en', 'name', 'Tunisia Polytechnic School'),
(47866, 40374, 'fr', 'name', 'Ɖcole Polytechnique de Tunisie'),
(47867, 40375, 'en', 'name', 'International Center for Journalists'),
(47868, 40376, 'en', 'name', 'Morristown High School'),
(47869, 40377, 'no_lang_code', 'name', 'OREGA Biotech (France)'),
(47870, 40378, 'en', 'name', 'Research and Technology Center of Energy'),
(47871, 40378, 'fr', 'name', 'Centre de Recherche et des Technologies de l''Energie'),
(47872, 40379, 'en', 'name', 'Yokohama Soei University'),
(47873, 40379, 'ja', 'name', 'ęØŖęµœå‰µč‹±ēŸ­ęœŸå¤§å­¦'),
(47874, 40380, 'en', 'name', 'Sentara College of Health Sciences'),
(47875, 40381, 'en', 'name', 'Charlotte School of Law'),
(47876, 40382, 'de', 'name', 'Bundesministerium für wirtschaftliche Zusammenarbeit und Entwicklung'),
(47877, 40382, 'en', 'name', 'Federal Ministry of Economic Cooperation and Development'),
(47878, 40383, 'en', 'name', 'Gujarat Institute of Development Research'),
(47879, 40384, 'no_lang_code', 'name', 'BMW of North America (United States)'),
(47880, 40385, 'en', 'name', 'Paterson Public Schools'),
(47881, 40386, 'no_lang_code', 'name', 'Just Ecology (United Kingdom)'),
(47882, 40387, 'en', 'name', 'Hsin Sheng College of Medical Care and Management'),
(47883, 40387, 'zh', 'name', 'ę–°ē”Ÿé†«č­·ē®”ē†å°ˆē§‘å­øę ”'),
(47884, 40388, 'en', 'name', 'Hope Worldwide'),
(47885, 40389, 'no_lang_code', 'name', 'Starmet Corporation (United States)'),
(47886, 40390, 'en', 'name', 'Merritt College'),
(47887, 40391, 'en', 'name', 'Mater Dei High School'),
(47888, 40392, 'en', 'name', 'Henan Institute of Education'),
(47889, 40392, 'zh', 'name', 'ę²³å—ę•™č‚²å­¦é™¢'),
(47890, 40393, 'en', 'name', 'AIDS Foundation of South Africa'),
(47891, 40394, 'en', 'name', 'Hanyoung Theological University'),
(47892, 40394, 'ko', 'name', 'ķ•œģ˜ģ‹ ķ•™ėŒ€ķ•™źµ'),
(47893, 40395, 'hi', 'name', 'भारत ą¤‡ą¤²ą„‡ą¤•ą„ą¤Ÿą„ą¤°ą„‰ą¤Øą¤æą¤• ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(47894, 40395, 'no_lang_code', 'name', 'Bharat Electronics (India)'),
(47895, 40396, 'en', 'name', 'Lincoln University - California'),
(47896, 40397, 'en', 'name', 'Utah College of Dental Hygiene'),
(47897, 40398, 'en', 'name', 'Santa Ana College'),
(47898, 40399, 'de', 'name', 'Archiv der Hansestadt Wismar'),
(47899, 40400, 'pt', 'name', 'Centro Cultural Vila Flor'),
(47900, 40401, 'no_lang_code', 'name', 'Bharat Forge (India)'),
(47901, 40402, 'pt', 'name', 'Externato da Luz'),
(47902, 40403, 'no_lang_code', 'name', 'GVK (India)'),
(47903, 40404, 'en', 'name', 'Conservatorio Antonio Vivaldi'),
(47904, 40404, 'it', 'name', 'Conservatorio Di Musica A. Vivaldi'),
(47905, 40405, 'en', 'name', 'All-Russian Scientific Research Institute of Fundamental and Applied Parasitology of Animals and Plants named after K.I. Skryabin'),
(47906, 40405, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ Šø приклаГной паразитологии животных Šø растений имени К. И. Š”ŠŗŃ€ŃŠ±ŠøŠ½Š°'),
(47907, 40406, 'en', 'name', 'All-Russian Research Institute of Agricultural Biotechnology Russian Academy of Agricultural Sciences'),
(47908, 40406, 'ru', 'name', 'Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ биотехнологии [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(47909, 40407, 'en', 'name', 'Workplace Health, Safety and Compensation Commission'),
(47910, 40408, 'en', 'name', 'Department of the Premier and Cabinet'),
(47911, 40409, 'en', 'name', 'Gorbatov''s All-Russian Meat Research Institute'),
(47912, 40409, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŃŃŠ½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø им. Š’.М. Горбатова'),
(47913, 40410, 'en', 'name', 'Metropolitan University'),
(47914, 40410, 'sr', 'name', 'Univerzitet Metropolitan'),
(47915, 40411, 'ko', 'name', 'ķ•œė…'),
(47916, 40411, 'no_lang_code', 'name', 'Handok (South Korea)'),
(47917, 40412, 'no_lang_code', 'name', 'Claritas Genomics (United States)'),
(47918, 40413, 'en', 'name', 'Ministry of Natural Resources and Tourism'),
(47919, 40413, 'sw', 'name', 'Wizara ya Maliasili na Utalii'),
(47920, 40414, 'en', 'name', 'Office of the Chief Scientist'),
(47921, 40414, 'he', 'name', '×œ×©×›×Ŗ המדען הראשי'),
(47922, 40415, 'en', 'name', 'Institute of Strength Physics and Materials Science'),
(47923, 40415, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики прочности Šø Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Š”Šž Š ŠŠ'),
(47924, 40416, 'en', 'name', 'Rogue Community College'),
(47925, 40417, 'no_lang_code', 'name', 'Genesys (United States)'),
(47926, 40418, 'de', 'name', 'Staatsgalerie Stuttgart'),
(47927, 40419, 'en', 'name', 'Kenya AIDS NGOs Consortium'),
(47928, 40420, 'en', 'name', 'Medway School of Pharmacy'),
(47929, 40421, 'no_lang_code', 'name', 'OsseoMatrix (France)'),
(47930, 40422, 'bn', 'name', 'ą¦¬ą¦æą¦ą¦ą¦« শাহীন ą¦•ą¦²ą§‡ą¦œ ঢাকা'),
(47931, 40422, 'en', 'name', 'Bangladesh Air Force Shaheen College'),
(47932, 40423, 'en', 'name', 'Strayer University'),
(47933, 40424, 'en', 'name', 'Pennsylvania Housing Finance Agency'),
(47934, 40425, 'no_lang_code', 'name', 'Excellerate (Australia)'),
(47935, 40426, 'en', 'name', 'Charleston School of Law'),
(47936, 40427, 'en', 'name', 'Triangle'),
(47937, 40428, 'en', 'name', 'Pukhov Institute for Modelling in Energy Engineering'),
(47938, 40428, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š¼Š¾Š“ŠµŠ»ŠøŃ€Š¾Š²Š°Š½ŠøŃ в ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠµ им. Š“.Š•. ŠŸŃƒŃ…Š¾Š²Š°'),
(47939, 40428, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Š¼Š¾Š“ŠµŠ»ŃŽŠ²Š°Š½Š½Ń в енергетиці ім. Š“.Š„. ŠŸŃƒŃ…Š¾Š²Š°'),
(47940, 40429, 'en', 'name', 'Alberta Bible College'),
(47941, 40430, 'de', 'name', 'Stadtmuseum Penzberg'),
(47942, 40431, 'en', 'name', 'Organization for Women in Science for the Developing World'),
(47943, 40432, 'no_lang_code', 'name', 'Vedanta Resources (India)'),
(47944, 40433, 'en', 'name', 'Mount Angel Abbey'),
(47945, 40433, 'fr', 'name', 'Abbaye de mount angel'),
(47946, 40434, 'no_lang_code', 'name', 'Cablevision (United States)'),
(47947, 40435, 'en', 'name', 'Gdansk Management College'),
(47948, 40435, 'pl', 'name', 'Wyższa Szkoła Zarządzania w Gdańsku'),
(47949, 40436, 'de', 'name', 'Institut für Integrative und Experimentelle Genomik'),
(47950, 40436, 'en', 'name', 'Institute for Integrative and Experimental Genomics'),
(47951, 40437, 'en', 'name', 'Ministry of Agriculture'),
(47952, 40438, 'no_lang_code', 'name', 'China Tobacco Guangxi Industrial (China)'),
(47953, 40438, 'zh', 'name', 'å¹æč„æäø­ēƒŸå·„äøšęœ‰é™č“£ä»»å…¬åø'),
(47954, 40439, 'de', 'name', 'SRH Hochschule Heidelberg'),
(47955, 40440, 'en', 'name', 'SMK University of Applied Social Sciences'),
(47956, 40440, 'lt', 'name', 'Socialiniu mokslu kolegija'),
(47957, 40441, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© للتخصصات Ų§Ł„ŲµŲ­ŁŠŲ©'),
(47958, 40441, 'en', 'name', 'Saudi Commission for Health Specialties'),
(47959, 40442, 'fr', 'name', 'Institut National de la Recherche Agronomique d''AlgƩrie'),
(47960, 40443, 'en', 'name', 'Kazan Scientific Center'),
(47961, 40443, 'ru', 'name', 'Казанский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š ŠŠ'),
(47962, 40444, 'no_lang_code', 'name', 'OncoMed (United States)'),
(47963, 40445, 'en', 'name', 'Research and Studies Telecommunications Centre'),
(47964, 40446, 'en', 'name', 'National Institute of Construction Management and Research'),
(47965, 40447, 'pt', 'name', 'Faculdade de Desenvolvimento do Rio Grande do Sul'),
(47966, 40448, 'no_lang_code', 'name', 'Kusamotu & Kusamotu'),
(47967, 40449, 'en', 'name', 'National Youth Policy Institute'),
(47968, 40449, 'ko', 'name', 'ķ•œźµ­ģ²­ģ†Œė…„ģ •ģ±…ģ—°źµ¬ģ›'),
(47969, 40450, 'en', 'name', 'Development Research Center of the State Council'),
(47970, 40450, 'zh', 'name', 'å›½åŠ”é™¢å‘å±•ē ”ē©¶äø­åæƒ'),
(47971, 40451, 'en', 'name', 'University College of Tourism and Ecology'),
(47972, 40451, 'pl', 'name', 'Wyższa Szkoła Turystyki i Ekologii w Suchej Beskidzkiej'),
(47973, 40452, 'en', 'name', 'North Georgia Technical College'),
(47974, 40453, 'pl', 'name', 'GnieÅŗnieńska Szkoła Wyższa Milenium'),
(47975, 40454, 'en', 'name', 'Rajarajeswari Medical College and Hospital'),
(47976, 40455, 'en', 'name', 'Cowley Community College'),
(47977, 40456, 'en', 'name', 'Latin American Institute'),
(47978, 40456, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Латинской Америки'),
(47979, 40457, 'en', 'name', 'Research Complex at Harwell'),
(47980, 40458, 'no_lang_code', 'name', 'DHL (United States)'),
(47981, 40459, 'en', 'name', 'Uganda Blood Transfusion Service'),
(47982, 40460, 'en', 'name', 'Carolina Christian College'),
(47983, 40461, 'no_lang_code', 'name', 'CorticoMetrics (United States)'),
(47984, 40462, 'no_lang_code', 'name', 'Audionamix (France)'),
(47985, 40463, 'fr', 'name', 'Observatoire National sur les Effets du RƩchauffement Climatique'),
(47986, 40464, 'no_lang_code', 'name', 'Hasbro (United States)'),
(47987, 40465, 'en', 'name', 'Southport College'),
(47988, 40466, 'el', 'name', 'Ελβετική Αρχαιολογική Σχολή ĻƒĻ„Ī·Ī½ ΕλλάΓα'),
(47989, 40466, 'en', 'name', 'Swiss School of Archaeology in Greece'),
(47990, 40467, 'en', 'name', 'JRE Group of Institutions'),
(47991, 40468, 'en', 'name', 'Agri Biotech Foundation'),
(47992, 40469, 'ko', 'name', 'ķ•œźµ­ģ•„ģŠ¤ķŠøė¼ģ œė„¤ģ¹“'),
(47993, 40469, 'no_lang_code', 'name', 'AstraZeneca (South Korea)'),
(47994, 40470, 'da', 'name', 'Forsvarsakademiet'),
(47995, 40470, 'en', 'name', 'Royal Danish Defence College'),
(47996, 40471, 'en', 'name', 'New Jersey Department of Labor and Workforce Development'),
(47997, 40472, 'hi', 'name', 'ą¤•ą„‹ą¤² इंऔिया ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(47998, 40472, 'no_lang_code', 'name', 'Coal India (India)'),
(47999, 40473, 'en', 'name', 'U.S. Green Building Council'),
(48000, 40474, 'en', 'name', 'City College'),
(48001, 40475, 'en', 'name', 'Carey Baptist College'),
(48002, 40476, 'en', 'name', 'Institute of Applied Mathematics'),
(48003, 40476, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной математики Š”Š’Šž Š ŠŠ'),
(48004, 40477, 'en', 'name', 'Wuhan City Chinese Medicine Hospital'),
(48005, 40477, 'zh', 'name', 'ę­¦ę±‰åø‚äø­å›½äø­åŒ»åŒ»é™¢'),
(48006, 40478, 'no_lang_code', 'name', 'MTS Systems (United States)'),
(48007, 40479, 'en', 'name', 'Solid Wood Innovation'),
(48008, 40480, 'no_lang_code', 'name', 'Light for Life Technologies (France)'),
(48009, 40481, 'en', 'name', 'West and Central African Council for Agricultural Research and Development'),
(48010, 40481, 'fr', 'name', 'Conseil ouest et centre africain pour la recherche et le dƩveloppement agricoles'),
(48011, 40482, 'en', 'name', 'Central Institute of Plastics Engineering and Technology'),
(48012, 40483, 'en', 'name', 'Boonton Public Schools'),
(48013, 40484, 'en', 'name', 'Institute of Catalysis and Petrochemistry'),
(48014, 40484, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ катализа Šø нефтехимии'),
(48015, 40485, 'en', 'name', 'Wallace Community College Selma'),
(48016, 40486, 'en', 'name', 'Institute of Macromolecular Compounds'),
(48017, 40486, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Ń‹Ń… соеГинений Российской акаГемии наук'),
(48018, 40487, 'en', 'name', 'Southwest Mississippi Community College'),
(48019, 40488, 'en', 'name', 'Bramson ORT College'),
(48020, 40489, 'en', 'name', 'Montcalm Community College'),
(48021, 40490, 'en', 'name', 'Council of Yukon First Nations'),
(48022, 40491, 'en', 'name', 'California Christian College'),
(48023, 40492, 'en', 'name', 'Oxford Dental College and Hospital'),
(48024, 40493, 'fr', 'name', 'SociĆ©tĆ© Nationale d’Études du DĆ©troit de Gibraltar'),
(48025, 40494, 'az', 'name', 'Baki Ali Neft Məktəbi'),
(48026, 40494, 'en', 'name', 'Baku Higher Oil School'),
(48027, 40495, 'en', 'name', 'Government of Uttar Pradesh'),
(48028, 40495, 'hi', 'name', 'ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ सरकार'),
(48029, 40496, 'en', 'name', 'Association for Strengthening Agricultural Research in Eastern and Central Africa'),
(48030, 40497, 'en', 'name', 'Nasivvik Centre for Inuit Health and Changing Environments'),
(48031, 40497, 'fr', 'name', 'Centre pour la santƩ des Inuits et les Changements Environnementaux'),
(48032, 40498, 'no_lang_code', 'name', 'Centre d''Higiene Mental Les Corts (Spain)'),
(48033, 40499, 'en', 'name', 'Council of Higher Education'),
(48034, 40499, 'tr', 'name', 'Yükseköğretim Kurulu'),
(48035, 40500, 'en', 'name', 'Newcastle-under-Lyme College'),
(48036, 40501, 'en', 'name', 'Ministry of Public Health and Hygiene'),
(48037, 40501, 'fr', 'name', 'Ministère de la Santé et de l''Hygiène Publique'),
(48038, 40502, 'de', 'name', 'EuropƤische Fachhochschule Rhein/Erft'),
(48039, 40502, 'en', 'name', 'European University of Applied Sciences'),
(48040, 40503, 'en', 'name', 'International Management Institute'),
(48041, 40504, 'en', 'name', 'Guangzhou Marine Geological Survey'),
(48042, 40504, 'zh', 'name', 'å¹æå·žęµ·ę“‹åœ°č“Øč°ƒęŸ„å±€'),
(48043, 40505, 'de', 'name', 'Hochschule für Medien, Kommunikation und Wirtschaft'),
(48044, 40505, 'en', 'name', 'University of Applied Sciences for Media Communication and Business'),
(48045, 40506, 'en', 'name', 'College of the Siskiyous'),
(48046, 40507, 'cs', 'name', 'Film Academy of Miroslav OndÅ™Ć­Äek, FilmovĆ” Akademie Miroslava OndÅ™Ć­Äka v PĆ­sku'),
(48047, 40508, 'en', 'name', 'Institute of Mongolian Buddhist and Tibetan Studies'),
(48048, 40508, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š½Š³Š¾Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ, буГГологии Šø тибетологии Š”Šž Š ŠŠ'),
(48049, 40509, 'en', 'name', 'Empire College'),
(48050, 40510, 'en', 'name', 'International Society for Gastrointestinal Hereditary Tumours'),
(48051, 40511, 'en', 'name', 'South Eastern Railway'),
(48052, 40512, 'de', 'name', 'Fachhochschule für Finanzen Brandenburg'),
(48053, 40513, 'en', 'name', 'Children''s AIDS Fund Uganda'),
(48054, 40514, 'en', 'name', 'Munich Business School'),
(48055, 40515, 'en', 'name', 'Ministry of Finance and Development Planning'),
(48056, 40516, 'no_lang_code', 'name', 'Golder Associates (South Africa)'),
(48057, 40517, 'en', 'name', 'State Justice Institute'),
(48058, 40518, 'en', 'name', 'Emmanuel Hospital Association'),
(48059, 40519, 'en', 'name', 'Economic Development Agency for La Rioja'),
(48060, 40519, 'es', 'name', 'Agencia de Desarrollo Económico de La Rioja'),
(48061, 40520, 'no_lang_code', 'name', 'Nickerson Ltd'),
(48062, 40521, 'no_lang_code', 'name', 'DuPont (Brazil)'),
(48063, 40522, 'en', 'name', 'Dodowa Health Research Centre'),
(48064, 40523, 'no_lang_code', 'name', 'AnyGenes (France)'),
(48065, 40524, 'ja', 'name', 'åŒ—é™øé›»åŠ›'),
(48066, 40524, 'no_lang_code', 'name', 'Hokuriku Electric Power Company (Japan)'),
(48067, 40525, 'en', 'name', 'Australasian College for Emergency Medicine'),
(48068, 40526, 'en', 'name', 'Gokula Krishna College of Pharmacy'),
(48069, 40527, 'no_lang_code', 'name', 'Foxnum Technology (Taiwan)'),
(48070, 40528, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ł„Ł„Ų¬ŲØŁŠŁ„ ŁˆŁŠŁ†ŲØŲ¹'),
(48071, 40528, 'en', 'name', 'Royal Commission for Jubail and Yanbu'),
(48072, 40529, 'en', 'name', 'Rubber Board'),
(48073, 40530, 'en', 'name', 'China Accounting Standards Committee'),
(48074, 40530, 'zh', 'name', 'ä¼šč®”å‡†åˆ™å§”å‘˜ä¼š'),
(48075, 40531, 'en', 'name', 'Partners for Health and Development in Africa'),
(48076, 40532, 'en', 'name', 'Georgia Department of Transportation'),
(48077, 40533, 'en', 'name', 'New Jersey Economic Development Authority'),
(48078, 40534, 'en', 'name', 'Schuler Scholar Program'),
(48079, 40535, 'no_lang_code', 'name', 'Philanjalo'),
(48080, 40536, 'en', 'name', 'CT Group Of Institutions'),
(48081, 40537, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŲØŲ­Ų±ŁŠŁ† Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(48082, 40537, 'en', 'name', 'University College of Bahrain'),
(48083, 40538, 'en', 'name', 'Hennepin Technical College'),
(48084, 40539, 'no_lang_code', 'name', 'Sharp Edge Labs (United States)'),
(48085, 40540, 'en', 'name', 'Podhale State Higher Vocational School in Nowy Targ'),
(48086, 40540, 'pl', 'name', 'Podhalańska Państwowa Wyższa Szkoła Zawodowa w Nowym Targu'),
(48087, 40541, 'en', 'name', 'Mountain Lakes High School'),
(48088, 40542, 'en', 'name', 'European Association of Urology'),
(48089, 40543, 'fr', 'name', 'Palais de la Decouverte'),
(48090, 40544, 'en', 'name', 'Government of Karnataka'),
(48091, 40544, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²øą²°ą³ą²•ą²¾ą²°'),
(48092, 40545, 'en', 'name', 'Italian Institute of Culture'),
(48093, 40546, 'no_lang_code', 'name', 'Ahold Delhaize (United States)'),
(48094, 40547, 'en', 'name', 'Citrus Research Institute'),
(48095, 40547, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ęŸ‘ę””ē ”ē©¶ę‰€'),
(48096, 40548, 'en', 'name', 'Arizona Summit Law School'),
(48097, 40549, 'en', 'name', 'American Military University'),
(48098, 40550, 'en', 'name', 'Peddie School'),
(48099, 40551, 'en', 'name', 'National Agency for Administrative City Construction'),
(48100, 40551, 'ko', 'name', 'ķ–‰ģ •ģ¤‘ģ‹¬ė³µķ•©ė„ģ‹œź±“ģ„¤ģ²­'),
(48101, 40552, 'en', 'name', 'Yeshivat Mikdash Melech'),
(48102, 40553, 'en', 'name', 'Providence Christian College'),
(48103, 40554, 'en', 'name', 'Central Pollution Control Board'),
(48104, 40555, 'en', 'name', 'Baltic Psychology and Management University College'),
(48105, 40555, 'lv', 'name', 'Baltijas Psiholoģijas un Menedžmenta Augstskola'),
(48106, 40555, 'ru', 'name', 'Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń ŠŸŃŠøŃ…Š¾Š»Š¾Š³ŠøŃ Šø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента'),
(48107, 40556, 'en', 'name', 'Institute of Bast Fiber Crops'),
(48108, 40556, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢éŗ»ē±»ē ”ē©¶ę‰€'),
(48109, 40557, 'en', 'name', 'Ministry of Advanced Education'),
(48110, 40558, 'en', 'name', 'South Plains College'),
(48111, 40559, 'en', 'name', 'Seattle Institute of Oriental Medicine'),
(48112, 40560, 'en', 'name', 'Deen Dayal Upadhyay Hospital'),
(48113, 40561, 'en', 'name', 'Lisbon School of Design'),
(48114, 40562, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Sulechowie'),
(48115, 40563, 'en', 'name', 'Institute of Informatics Problems'),
(48116, 40563, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½Ń„Š¾Ń€Š¼Š°Ń‚ŠøŠŗŠ° Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŠµ'),
(48117, 40564, 'en', 'name', 'Bradford School - Pittsburgh'),
(48118, 40565, 'no_lang_code', 'name', 'Natural Remedies (India)'),
(48119, 40566, 'de', 'name', 'Fonds Gesundes Ɩsterreich'),
(48120, 40567, 'en', 'name', 'Voluntary Health Association Of India'),
(48121, 40568, 'en', 'name', 'African Safari Club Of Florida'),
(48122, 40569, 'en', 'name', 'Luigi Einaudi Foundation'),
(48123, 40569, 'it', 'name', 'Fondazione Luigi Einaudi'),
(48124, 40570, 'en', 'name', 'Development Aid from People to People'),
(48125, 40571, 'no_lang_code', 'name', 'Shell (India)'),
(48126, 40572, 'en', 'name', 'Mokpo National Tuberculosis Hospital'),
(48127, 40572, 'ko', 'name', 'źµ­ė¦½ėŖ©ķ¬ė³‘ģ›'),
(48128, 40573, 'en', 'name', 'Agency for Aerial Navigation Safety in Africa and Madagascar'),
(48129, 40573, 'fr', 'name', 'Agence pour la sƩcuritƩ de la Navigation AƩrienne en Afrique et Ơ Madagascar'),
(48130, 40574, 'en', 'name', 'New Jersey Department of Community Affairs'),
(48131, 40575, 'en', 'name', 'Re Action'),
(48132, 40576, 'en', 'name', 'Institute of Seismological Research'),
(48133, 40577, 'pt', 'name', 'Ministério da Saúde e da Segurança Social'),
(48134, 40578, 'cs', 'name', 'Ministerstvo dopravy České republiky'),
(48135, 40578, 'en', 'name', 'Ministry of Transport'),
(48136, 40579, 'en', 'name', 'Moroccan National Railways Office'),
(48137, 40579, 'fr', 'name', 'Office National des Chemins de Fer du Maroc'),
(48138, 40580, 'en', 'name', 'Organization for Social Services for AIDS'),
(48139, 40581, 'en', 'name', 'Bath College'),
(48140, 40582, 'en', 'name', 'Miller College'),
(48141, 40583, 'en', 'name', 'National Agency of Petroleum, Natural Gas and Biofuels'),
(48142, 40583, 'pt', 'name', 'Agência Nacional do Petróleo, GÔs Natural e Biocombustíveis'),
(48143, 40584, 'en', 'name', 'Seoul Institute'),
(48144, 40585, 'en', 'name', 'Design Institute of San Diego'),
(48145, 40586, 'en', 'name', 'Cancer Association of South Africa'),
(48146, 40587, 'no_lang_code', 'name', 'ArcelorMittal (Poland)'),
(48147, 40588, 'no_lang_code', 'name', 'Synergy Microwave (United States)'),
(48148, 40589, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia de Adaptações da Biota AquÔtica da AmazÓnia'),
(48149, 40590, 'no_lang_code', 'name', 'Acxiom (United States)'),
(48150, 40591, 'en', 'name', 'Arkansas Baptist College'),
(48151, 40592, 'en', 'name', 'Moscow School of Social and Economic Sciences'),
(48152, 40592, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š²Ń‹ŃŃˆŠ°Ń школа ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŃ… наук'),
(48153, 40593, 'no_lang_code', 'name', 'Slack Incorporated (United States)'),
(48154, 40594, 'en', 'name', 'Egypt Exploration Society'),
(48155, 40595, 'en', 'name', 'Ontario Stroke Network'),
(48156, 40596, 'en', 'name', 'Association for Canadian Studies in the United States'),
(48157, 40596, 'fr', 'name', 'Association des Ɖtudes canadiennes aux Ɖtats-Unis'),
(48158, 40597, 'no_lang_code', 'name', 'Haption (France)'),
(48159, 40598, 'id', 'name', 'STIKes Prima Nusantara'),
(48160, 40599, 'en', 'name', 'Global College'),
(48161, 40600, 'en', 'name', 'Fisheries Society of the British Isles'),
(48162, 40601, 'en', 'name', 'Betanien University College'),
(48163, 40602, 'en', 'name', 'Messenger College'),
(48164, 40603, 'en', 'name', 'Agricultural Information Institute'),
(48165, 40603, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å†œäøšäæ”ęÆē ”ē©¶ę‰€'),
(48166, 40604, 'cs', 'name', 'JazykovÔ Ŕkola AKCENT IH Prague'),
(48167, 40604, 'en', 'name', 'Akcent International House Prague'),
(48168, 40605, 'en', 'name', 'International Business College - Fort Wayne'),
(48169, 40606, 'en', 'name', 'Center for Massive Data Algorithmics'),
(48170, 40607, 'en', 'name', 'Christie''s Education'),
(48171, 40608, 'en', 'name', 'International Partnership for Human Development'),
(48172, 40609, 'no_lang_code', 'name', 'Premiere'),
(48173, 40610, 'en', 'name', 'Sino-Swedish Centre for Tree-Ring Research'),
(48174, 40611, 'en', 'name', 'Clinton College'),
(48175, 40612, 'en', 'name', 'Private University of Environmental Sciences in Radom'),
(48176, 40612, 'pl', 'name', 'Prywatna Wyższa Szkoła Ochrony Środowiska w Radomiu'),
(48177, 40613, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ фізікі цвёрГага цела і ŠæŠ°ŃžŠæŃ€Š°Š²Š°Š“Š½Ń–ŠŗŠ¾Ńž'),
(48178, 40613, 'en', 'name', 'Institute of Solid State Physics and Semiconductors'),
(48179, 40614, 'en', 'name', 'Ministry of Agriculture, Food Security and Cooperatives, Ministry of Agriculture, Food and Cooperatives'),
(48180, 40614, 'sw', 'name', 'Wizara ya Kilimo, Chakula na Ushirika'),
(48181, 40615, 'en', 'name', 'Yeshiva of Greater Washington'),
(48182, 40616, 'pt', 'name', 'Faculdades Milton Campos'),
(48183, 40617, 'en', 'name', 'National Institute of Applied Science and Technology'),
(48184, 40617, 'fr', 'name', 'Institut National des Sciences AppliquƩes et de Technologie'),
(48185, 40618, 'en', 'name', 'National American University'),
(48186, 40619, 'en', 'name', 'Hiwassee College'),
(48187, 40620, 'en', 'name', 'State Administration of Press, Publication, Radio, Film and Television'),
(48188, 40620, 'zh', 'name', '国家广播电影电视总局'),
(48189, 40621, 'en', 'name', 'Kara Counselling and Training Trust'),
(48190, 40622, 'no_lang_code', 'name', 'Oligovax (France)'),
(48191, 40623, 'no_lang_code', 'name', 'Biological E (India)'),
(48192, 40624, 'pl', 'name', 'Wyższa Szkoła Planowania Strategicznego'),
(48193, 40625, 'en', 'name', 'Fairy Lake Botanical Garden'),
(48194, 40625, 'zh', 'name', 'ä»™ę¹–ę¤ē‰©å›­'),
(48195, 40626, 'it', 'name', 'Conservatorio Torrefranca Vibo Valentia'),
(48196, 40627, 'en', 'name', 'Reedley College'),
(48197, 40628, 'en', 'name', 'Vastu Shilpa Foundation'),
(48198, 40629, 'en', 'name', 'Busan Institute of Science and Technology'),
(48199, 40629, 'ko', 'name', 'ė¶€ģ‚°ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(48200, 40630, 'en', 'name', 'State Institute for Nature Protection'),
(48201, 40630, 'hr', 'name', 'Drzavni zavod za zastitu prirode'),
(48202, 40631, 'en', 'name', 'China Automotive Technology and Research Center'),
(48203, 40631, 'zh', 'name', 'äø­å›Æę±½č½¦ęŠ€ęœÆē”ē©¶äø­åæƒ'),
(48204, 40632, 'en', 'name', 'Youngnam Theological University and Seminary'),
(48205, 40632, 'ko', 'name', 'ģ˜ė‚Øģ‹ ķ•™ėŒ€ķ•™źµ'),
(48206, 40633, 'en', 'name', 'Tunisian Institute of Competitiveness and Quantitative Studies'),
(48207, 40633, 'fr', 'name', 'Institut Tunisien de la CompetitivitƩ et des Etudes Quantitatives'),
(48208, 40634, 'en', 'name', 'Latvia Business College'),
(48209, 40634, 'lv', 'name', 'Latvijas Biznesa Koledža'),
(48210, 40635, 'en', 'name', 'Central Bank of Uzbekistan'),
(48211, 40635, 'tg', 'name', 'ŠŽŠ·Š±ŠµŠŗŠøŃŃ‚Š¾Š½ Республикаси ŠœŠ°Ń€ŠŗŠ°Š·ŠøŠ¹ Банки'),
(48212, 40635, 'uz', 'name', 'O''zbekiston Respublikasi Markaziy banki'),
(48213, 40636, 'it', 'name', 'Conservatorio di Musica Carlo Gesualdo da Venosa Potenza'),
(48214, 40637, 'en', 'name', 'Government of Kerala'),
(48215, 40637, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“øąµ¼ą“•ąµą“•ą“¾ąµ¼'),
(48216, 40638, 'en', 'name', 'Greenland Government'),
(48217, 40639, 'en', 'name', 'Minnesota Department of Commerce'),
(48218, 40640, 'no_lang_code', 'name', 'Porsolt (France)'),
(48219, 40641, 'en', 'name', 'Ministry of Human Capacities'),
(48220, 40641, 'hu', 'name', 'Emberi ErőforrĆ”sok MinisztĆ©rium'),
(48221, 40642, 'en', 'name', 'Brera Academy'),
(48222, 40642, 'it', 'name', 'Accademia di Belle Arti di Brera'),
(48223, 40643, 'en', 'name', 'Cambridge–MIT Institute'),
(48224, 40644, 'en', 'name', 'Cuiavian University'),
(48225, 40644, 'pl', 'name', 'Kujawska Szkoła Wyższa we Włocławku'),
(48226, 40645, 'fr', 'name', 'Institut National de la Recherche Agronomique du Niger'),
(48227, 40646, 'en', 'name', 'National Institute of Technical Teachers Training and Research'),
(48228, 40647, 'en', 'name', 'National Research Centre for Banana'),
(48229, 40648, 'no_lang_code', 'name', 'AquAgri Processing Private Limited (India)'),
(48230, 40649, 'no_lang_code', 'name', 'Vulcan (United States)'),
(48231, 40650, 'en', 'name', 'Eastern Deanery AIDS Relief Program'),
(48232, 40651, 'en', 'name', 'Iolanthe Midwifery Trust'),
(48233, 40652, 'no_lang_code', 'name', 'Kemetco Research (Canada)'),
(48234, 40653, 'no_lang_code', 'name', 'Suez (Australia)'),
(48235, 40654, 'en', 'name', 'Ethiopian Medical Association'),
(48236, 40655, 'en', 'name', 'Robert Kennedy College'),
(48237, 40656, 'en', 'name', 'Korea Agency for Infrastructure Technology Advancement'),
(48238, 40657, 'no_lang_code', 'name', 'Tampieri Financial Group (Italy)'),
(48239, 40658, 'fr', 'name', 'Ɖcole SupĆ©rieure d''IngĆ©nieurs des Travaux de la Construction de Metz'),
(48240, 40659, 'en', 'name', 'National Library of Colombia'),
(48241, 40659, 'es', 'name', 'Biblioteca Nacional de Colombia'),
(48242, 40660, 'no_lang_code', 'name', 'ACRI-EC (Morocco)'),
(48243, 40661, 'en', 'name', 'East China Mineral Exploration & Development Bureau'),
(48244, 40661, 'zh', 'name', 'ę±Ÿč‹ēœęœ‰č‰²é‡‘å±žåŽäøœåœ°č“Øå‹˜ęŸ„å±€'),
(48245, 40662, 'en', 'name', 'Municipality of Tai''an'),
(48246, 40662, 'zh', 'name', '泰安'),
(48247, 40663, 'en', 'name', 'WorldWide Information Services'),
(48248, 40664, 'en', 'name', 'Seoul Women''s College of Nursing'),
(48249, 40665, 'no_lang_code', 'name', 'Oerlikon (Switzerland)'),
(48250, 40666, 'en', 'name', 'Arizona Department of Economic Security'),
(48251, 40667, 'en', 'name', 'Aryavarta Space Organization'),
(48252, 40668, 'en', 'name', 'Kenya Institute for Public Policy Research and Analysis'),
(48253, 40669, 'en', 'name', 'University of Cape Town Fund'),
(48254, 40670, 'en', 'name', 'Kenya National Blood Transfusion Services'),
(48255, 40671, 'en', 'name', 'Ashkelon Academic College'),
(48256, 40671, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ אשקלון'),
(48257, 40672, 'no_lang_code', 'name', 'Malladi Drugs and Pharmaceuticals Limited (India)'),
(48258, 40673, 'en', 'name', 'European College of Business and Management'),
(48259, 40674, 'en', 'name', 'China Youth Development Foundation'),
(48260, 40674, 'zh', 'name', 'äø­å›½é’å°‘å¹“å‘å±•åŸŗé‡‘ä¼š'),
(48261, 40675, 'pt', 'name', 'Teledifusão de Macau'),
(48262, 40675, 'zh', 'name', '澳廣視'),
(48263, 40676, 'en', 'name', 'Virginia College'),
(48264, 40677, 'fr', 'name', 'Conseillers en gestion et informatique'),
(48265, 40677, 'no_lang_code', 'name', 'Consultant To Government and Industry (United Kingdom)'),
(48266, 40678, 'en', 'name', 'Hugh Wooding Law School'),
(48267, 40679, 'fr', 'name', 'Direction de la MƩtƩorologie Nationale du Niger'),
(48268, 40680, 'no_lang_code', 'name', 'L&S Consulting (South Africa)'),
(48269, 40681, 'en', 'name', 'Wisconsin School of Professional Psychology'),
(48270, 40682, 'no_lang_code', 'name', 'Capital One (United States)'),
(48271, 40683, 'en', 'name', 'Paier College of Art Inc'),
(48272, 40684, 'en', 'name', 'Korea Human Resource Development Institute for Health and Welfare'),
(48273, 40685, 'no_lang_code', 'name', 'Shanghai CASB Biotechnology (China)'),
(48274, 40685, 'zh', 'name', 'äøŠęµ·äø­ē§‘ä¼ä½°č±Ŗē”Ÿē‰©å·„ēØ‹ęœ‰é™å…¬åø'),
(48275, 40686, 'en', 'name', 'Jiangsu Provincial Meteorological Bureau'),
(48276, 40686, 'zh', 'name', 'ę±Ÿč‹ēœę°”č±”å°'),
(48277, 40687, 'en', 'name', 'HSBC'),
(48278, 40688, 'no_lang_code', 'name', 'Cyber-Dynamics (United States)'),
(48279, 40689, 'en', 'name', 'National Environment Management Council'),
(48280, 40690, 'no_lang_code', 'name', 'John Deere (United States)'),
(48281, 40691, 'en', 'name', 'National Heritage Council'),
(48282, 40692, 'en', 'name', 'Institute for Design Problems in Microelectronics'),
(48283, 40692, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃ в Š¼ŠøŠŗŃ€Š¾ŃŠ»ŠµŠŗŃ‚ронике'),
(48284, 40693, 'nl', 'name', 'Lentis'),
(48285, 40694, 'en', 'name', 'Platt College Aurora'),
(48286, 40695, 'en', 'name', 'Bolton Sixth Form College'),
(48287, 40696, 'en', 'name', 'Arts²'),
(48288, 40697, 'en', 'name', 'Computer Equipment and Technologies'),
(48289, 40698, 'en', 'name', 'Methodist Church in Zimbabwe'),
(48290, 40699, 'lt', 'name', 'V. A. Graičiūno AukŔtoji Vadybos Mokykla'),
(48291, 40700, 'no_lang_code', 'name', 'Emami (India)'),
(48292, 40701, 'en', 'name', 'Institute of Archaeology'),
(48293, 40701, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ археологии Российской акаГемии наук'),
(48294, 40702, 'no_lang_code', 'name', 'NTPC Consultancy (India)'),
(48295, 40703, 'en', 'name', 'Political Development Forum'),
(48296, 40704, 'en', 'name', 'Grace School of Theology'),
(48297, 40705, 'en', 'name', 'Forest Research Institute'),
(48298, 40705, 'hi', 'name', 'वन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(48299, 40706, 'en', 'name', 'College of Business and Technology'),
(48300, 40707, 'en', 'name', 'Duval County Public Schools'),
(48301, 40708, 'en', 'name', 'Sowela Technical Community College'),
(48302, 40709, 'de', 'name', 'Rheinische Fachhochschule Kƶln'),
(48303, 40709, 'en', 'name', 'RFH - University of Applied Sciences Cologne'),
(48304, 40710, 'en', 'name', 'Cree Board of Health and Social Services of James Bay'),
(48305, 40711, 'no_lang_code', 'name', 'RefleXion Medical (United States)'),
(48306, 40712, 'nl', 'name', 'Tactus Verslavingszorg'),
(48307, 40713, 'en', 'name', 'Dairy Management'),
(48308, 40714, 'en', 'name', 'San Diego Christian College'),
(48309, 40715, 'no_lang_code', 'name', 'TogaLabs (South Africa)'),
(48310, 40716, 'es', 'name', 'Hospital Vicente Corral Moscoso'),
(48311, 40717, 'en', 'name', 'Tabor College'),
(48312, 40718, 'pt', 'name', 'Faculdade Ruy Barbosa'),
(48313, 40719, 'de', 'name', 'Philosophisch-Theologische Hochschule Benediktbeuern'),
(48314, 40720, 'en', 'name', 'Centre for Health Solutions'),
(48315, 40721, 'de', 'name', 'Katholische Hochschule Freiburg'),
(48316, 40721, 'en', 'name', 'Catholic University of Applied Sciences Freiburg'),
(48317, 40722, 'en', 'name', 'Australian Bureau of Statistics'),
(48318, 40723, 'en', 'name', 'A.E. Favorsky Irkutsk Institute of Chemistry'),
(48319, 40723, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии им. А.Š•.Фаворского Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(48320, 40724, 'es', 'name', 'Universidad de La Salle BajĆ­o'),
(48321, 40725, 'en', 'name', 'National Human Rights Commission of Korea'),
(48322, 40725, 'ko', 'name', 'źµ­ź°€ģøź¶Œģœ„ģ›ķšŒ'),
(48323, 40726, 'en', 'name', 'J F Ingram State Technical College'),
(48324, 40727, 'en', 'name', 'Korea Health Personnel Licensing Examination Institute'),
(48325, 40727, 'ko', 'name', 'ķ•œźµ­ė³“ź±“ģ˜ė£Œģøźµ­ź°€ģ‹œķ—˜ģ›'),
(48326, 40728, 'en', 'name', 'Trocaire College'),
(48327, 40729, 'no_lang_code', 'name', 'Andersen (United States)'),
(48328, 40730, 'no_lang_code', 'name', 'Piramal (India)'),
(48329, 40731, 'bg', 'name', 'Театрален колеж Š›ŃŽŠ±ŠµŠ½ Гройс'),
(48330, 40731, 'en', 'name', 'Theatre College Luben Groys'),
(48331, 40732, 'de', 'name', 'Wilhelm Büchner Hochschule'),
(48332, 40733, 'en', 'name', 'Malabar Medical College Hospital and Research Centre'),
(48333, 40733, 'ml', 'name', 'ą“®ą“²ą“¬ą“¾ąµ¼ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‡ą“¾ą“³ą“œąµ'),
(48334, 40734, 'en', 'name', 'Texas Board of Nursing'),
(48335, 40735, 'en', 'name', 'Becker College'),
(48336, 40736, 'en', 'name', 'China Graduate School of Theology'),
(48337, 40736, 'zh', 'name', 'äø­åœ‹ē„žå­øē ”ē©¶é™¢'),
(48338, 40737, 'en', 'name', 'Terna Dental College and Hospital'),
(48339, 40738, 'en', 'name', 'Myotubular Trust'),
(48340, 40739, 'no_lang_code', 'name', 'Grupo João Ferreira dos Santos (Mozambique)'),
(48341, 40740, 'en', 'name', 'California College San Diego'),
(48342, 40741, 'no_lang_code', 'name', 'American Journal Experts (United States)'),
(48343, 40742, 'it', 'name', 'Accademia di Belle Arti di Macerata'),
(48344, 40743, 'en', 'name', 'Christian Council of Tanzania'),
(48345, 40744, 'no_lang_code', 'name', 'Shanghai Genon Biological Products (China)'),
(48346, 40744, 'zh', 'name', 'äøŠęµ·č½¬åŸŗå› ē ”ē©¶äø­åæƒ'),
(48347, 40745, 'en', 'name', 'Henderson Community College'),
(48348, 40746, 'en', 'name', 'Friends of the Earth-Ghana'),
(48349, 40747, 'en', 'name', 'Institute of Intelligent Machines'),
(48350, 40747, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åˆč‚„ę™ŗčƒ½ęœŗę¢°ē ”ē©¶ę‰€'),
(48351, 40748, 'ar', 'name', 'Ų„ŲŖŲ­Ų§ŲÆ Ų§Ł„ŁƒŁŠŁ…ŁŠŲ§Ų¦ŁŠŁŠŁ† العرب'),
(48352, 40748, 'en', 'name', 'Union of Arab Chemists'),
(48353, 40749, 'en', 'name', 'Human Resources Professionals Association'),
(48354, 40750, 'en', 'name', 'Ministry of Environment and Natural Resources & Regional Development Authorities'),
(48355, 40751, 'en', 'name', 'Livestock Improvement Corporation'),
(48356, 40752, 'no_lang_code', 'name', 'WITF (United States)'),
(48357, 40753, 'en', 'name', 'Independent Dance'),
(48358, 40754, 'en', 'name', 'Chief Minister Treasury and Economic Development Directorate'),
(48359, 40755, 'de', 'name', 'Private PƤdagogische Hochschule der Diƶzese Linz'),
(48360, 40755, 'en', 'name', 'Private University College of Education of the Diocese of Linz'),
(48361, 40756, 'en', 'name', 'Rajamangala University of Technology Krungthep'),
(48362, 40757, 'en', 'name', 'North Shore Community College'),
(48363, 40758, 'pt', 'name', 'Inov Inesc Inovação, Instituto de Novas Tecnologias'),
(48364, 40759, 'en', 'name', 'Alytus College'),
(48365, 40759, 'lt', 'name', 'Alytaus Kolegija'),
(48366, 40760, 'en', 'name', 'Institute of Sociology'),
(48367, 40760, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ социологии Š ŠŠ'),
(48368, 40761, 'no_lang_code', 'name', 'Sugal Group (Portugal)'),
(48369, 40762, 'en', 'name', 'Department of Education Tasmania'),
(48370, 40763, 'en', 'name', 'New Jersey Council on Developmental Disabilities'),
(48371, 40764, 'no_lang_code', 'name', 'Synthomer (United Kingdom)'),
(48372, 40765, 'en', 'name', 'Institute of Chemistry, Far Eastern Branch of the Russian Academy of Sciences'),
(48373, 40766, 'en', 'name', 'St. Vincent de Paul Regional Seminary'),
(48374, 40767, 'no_lang_code', 'name', 'Tupperware Brands (United States)'),
(48375, 40768, 'en', 'name', 'OPEC Fund for International Development'),
(48376, 40769, 'en', 'name', 'Indian Institute of Oilseeds Research'),
(48377, 40769, 'hi', 'name', 'ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ - ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ तिलहन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(48378, 40770, 'fr', 'name', 'Institut RƩgional d''Administration de Metz'),
(48379, 40771, 'no_lang_code', 'name', 'Tyson Foods (United States)'),
(48380, 40772, 'no_lang_code', 'name', 'Netris Pharma (France)'),
(48381, 40773, 'en', 'name', 'Providence Newberg Medical Center');
INSERT INTO `ror_settings` VALUES
(48382, 40774, 'en', 'name', 'Rwanda Meteorological Service'),
(48383, 40775, 'en', 'name', 'National Council for Cement and Building Materials'),
(48384, 40776, 'en', 'name', 'Montana Space Grant Consortium'),
(48385, 40777, 'en', 'name', 'Institute of Physics and Technology'),
(48386, 40777, 'ru', 'name', 'Физико-технологического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š°'),
(48387, 40778, 'en', 'name', 'Netwas Uganda'),
(48388, 40779, 'en', 'name', 'Redcar & Cleveland College'),
(48389, 40780, 'en', 'name', 'Dryad Digital Repository'),
(48390, 40781, 'en', 'name', 'Florida Gateway College'),
(48391, 40782, 'no_lang_code', 'name', 'Moog (United States)'),
(48392, 40783, 'no_lang_code', 'name', 'Lanco Solar (India)'),
(48393, 40784, 'en', 'name', 'Euro-India Research Centre'),
(48394, 40785, 'en', 'name', 'Velammal Medical College Hospital and Research Institute'),
(48395, 40786, 'en', 'name', 'Mildmay Uganda'),
(48396, 40787, 'en', 'name', 'United Nations Children''s Fund Zambia'),
(48397, 40788, 'fr', 'name', 'Office National d''ƩlectricitƩ, Office National de l''Electricite et de l''Eau Potable'),
(48398, 40789, 'es', 'name', 'Asociación para la Conservación de la Cuenca Amazónica'),
(48399, 40790, 'en', 'name', 'Northeastern Junior College'),
(48400, 40791, 'en', 'name', 'Queen’s Nursing Institute Scotland'),
(48401, 40792, 'en', 'name', 'Church of South India Hospital'),
(48402, 40793, 'en', 'name', 'Network for Water and Sanitation International'),
(48403, 40794, 'no_lang_code', 'name', 'FRAUDetect (United States)'),
(48404, 40795, 'en', 'name', 'Sarum College'),
(48405, 40796, 'en', 'name', 'Institute of Agricultural Economics and Development'),
(48406, 40796, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å†œäøšē»ęµŽäøŽå‘å±•ē ”ē©¶ę‰€'),
(48407, 40797, 'pt', 'name', 'Hospital da Senhora da Oliveira Guimarães'),
(48408, 40798, 'en', 'name', 'Lassen Community College'),
(48409, 40799, 'en', 'name', 'Department of Environment and Conservation'),
(48410, 40800, 'en', 'name', 'Institute of Petroleum Geology and Geophysics'),
(48411, 40800, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефтегазовой геологии Šø геофизики имени А. А. Š¢Ń€Š¾Ń„ŠøŠ¼ŃƒŠŗŠ° Š”Šž Š ŠŠ'),
(48412, 40801, 'en', 'name', 'Saskatchewan Arts Board'),
(48413, 40802, 'en', 'name', 'Provo College'),
(48414, 40803, 'fr', 'name', 'La Cambre'),
(48415, 40804, 'en', 'name', 'Frontier Lifeline Hospital'),
(48416, 40805, 'no_lang_code', 'name', 'JSW Group (India)'),
(48417, 40806, 'no_lang_code', 'name', 'Vodafone (Portugal)'),
(48418, 40807, 'fr', 'name', 'Laboratoire National de SantƩ Publique du Congo'),
(48419, 40808, 'en', 'name', 'Action Duchenne'),
(48420, 40809, 'de', 'name', 'Bundesinstitut für Sportwissenschaft'),
(48421, 40810, 'en', 'name', 'Beit Trust'),
(48422, 40811, 'en', 'name', 'Ripon College Cuddesdon'),
(48423, 40812, 'en', 'name', 'Institute of Economic Growth'),
(48424, 40813, 'no_lang_code', 'name', 'Chemtrix (Netherlands)'),
(48425, 40814, 'en', 'name', 'University of the Southwest'),
(48426, 40815, 'en', 'name', 'International Fund for Agricultural Development'),
(48427, 40815, 'fr', 'name', 'Fonds International de DƩveloppement Agricole'),
(48428, 40815, 'it', 'name', 'Fondo Internazionale per lo Sviluppo Agricolo'),
(48429, 40816, 'en', 'name', 'Institute for Applied Mathematics Mauro Picone'),
(48430, 40816, 'it', 'name', 'Istituto per le Applicazioni del Calcolo Mauro Picone'),
(48431, 40817, 'en', 'name', 'Del Valle Independent School District'),
(48432, 40818, 'en', 'name', 'Uummannaq Polar Institute'),
(48433, 40819, 'it', 'name', 'Conservatorio di Musica G.F. Ghedini'),
(48434, 40820, 'en', 'name', 'United Services Automobile Association'),
(48435, 40821, 'en', 'name', 'Curtis Institute of Music'),
(48436, 40822, 'en', 'name', 'Australian Mathematical Sciences Institute'),
(48437, 40823, 'en', 'name', 'Scripture Union'),
(48438, 40824, 'fr', 'name', 'Ministère de la Santé'),
(48439, 40825, 'en', 'name', 'Montana Department of Transportation'),
(48440, 40826, 'en', 'name', 'Church Divinity School of the Pacific'),
(48441, 40827, 'en', 'name', 'Ministry of Health and Sanitation'),
(48442, 40828, 'en', 'name', 'Shanghai Veterinary Research Institute'),
(48443, 40828, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢äøŠęµ·å…½åŒ»ē ”ē©¶ę‰€'),
(48444, 40829, 'fr', 'name', 'Institut SupĆ©rieur d''Ɖlectronique de Paris'),
(48445, 40830, 'en', 'name', 'Kalmyk Institute for Humanities Research'),
(48446, 40830, 'ru', 'name', 'ŠšŠ°Š»Š¼Ń‹Ń†ŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… исслеГований'),
(48447, 40831, 'en', 'name', 'PLA Electronic Engineering Institute'),
(48448, 40831, 'zh', 'name', '中国人民解放军电子巄程学院'),
(48449, 40832, 'en', 'name', 'A Night For Sight'),
(48450, 40833, 'en', 'name', 'Micro Insurance Academy'),
(48451, 40834, 'en', 'name', 'Citrus Growers Association'),
(48452, 40835, 'en', 'name', 'WaterAid'),
(48453, 40836, 'en', 'name', 'Forestry Research Institute of Nigeria'),
(48454, 40837, 'de', 'name', 'Kunsthochschule Berlin-Weißensee'),
(48455, 40837, 'en', 'name', 'Berlin-Weissensee Art Academy'),
(48456, 40838, 'no_lang_code', 'name', 'Hess (United States)'),
(48457, 40839, 'en', 'name', 'Truett-McConnell College'),
(48458, 40840, 'en', 'name', 'Korea Disabled People s Development Institute'),
(48459, 40840, 'ko', 'name', 'ķ•œźµ­ģž„ģ• ģøź°œė°œģ›'),
(48460, 40841, 'en', 'name', 'DuBois Business College'),
(48461, 40842, 'en', 'name', 'Reid State Technical College'),
(48462, 40843, 'en', 'name', 'Center for Advancing Innovation'),
(48463, 40844, 'en', 'name', 'Guangxi Zhuang Autonomous Region Museum'),
(48464, 40844, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗč‡Ŗē„¶åšē‰©é¦†'),
(48465, 40845, 'en', 'name', 'Connecticut Department of Agriculture'),
(48466, 40846, 'no_lang_code', 'name', 'Emcure Pharmaceuticals (India)'),
(48467, 40847, 'en', 'name', 'Maryhill School of Theology'),
(48468, 40848, 'en', 'name', 'Newfoundland and Labrador Arts Council'),
(48469, 40849, 'no_lang_code', 'name', 'Arctic Portal'),
(48470, 40850, 'en', 'name', 'Swami Ramanand Teerth Rural Medical College'),
(48471, 40851, 'en', 'name', 'Center for Information Technology Research in the Interest of Society'),
(48472, 40852, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„Ų¬Ł„ŁˆŲÆ ŁˆŲ§Ł„Ų£Ų­Ų°ŁŠŲ©'),
(48473, 40852, 'en', 'name', 'National Center for Leather and Shoes'),
(48474, 40852, 'fr', 'name', 'Centre national du cuir et de la chaussure'),
(48475, 40853, 'en', 'name', 'National Centre of Excellence in Analytical Chemistry'),
(48476, 40854, 'en', 'name', 'Carver Bible College'),
(48477, 40855, 'en', 'name', 'Flower Valley Conservation Trust'),
(48478, 40856, 'en', 'name', 'Seacoast Career Schools'),
(48479, 40857, 'en', 'name', 'Longy School of Music of Bard College'),
(48480, 40858, 'en', 'name', 'Gemological Institute of America'),
(48481, 40859, 'nl', 'name', 'GGZ Drenthe'),
(48482, 40860, 'no_lang_code', 'name', 'Deurali Janta Pharmaceuticals (Nepal)'),
(48483, 40861, 'en', 'name', 'Pulaski Technical College'),
(48484, 40862, 'en', 'name', 'Barton Peveril College'),
(48485, 40863, 'ar', 'name', 'ؓركة ŲØŲŖŲ±ŁˆŁ„ أبوظبي Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(48486, 40863, 'no_lang_code', 'name', 'Abu Dhabi National Oil (United Arab Emirates)'),
(48487, 40864, 'en', 'name', 'Institute for Urban and Environmental Studies'),
(48488, 40864, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢åŸŽåø‚å‘å±•äøŽēŽÆå¢ƒē ”ē©¶ę‰€'),
(48489, 40865, 'en', 'name', 'Town Planning and Valuation Department'),
(48490, 40866, 'en', 'name', 'Delaware Space Grant Consortium'),
(48491, 40867, 'en', 'name', 'Yunnan Animal Science and Veterinary Institute'),
(48492, 40867, 'zh', 'name', 'äŗ‘å—ēœē•œē‰§å…½åŒ»ē§‘å­¦é™¢'),
(48493, 40868, 'en', 'name', 'Kalahari Conservation Society'),
(48494, 40869, 'en', 'name', 'London Postgraduate Medical and Dental Education'),
(48495, 40870, 'en', 'name', 'Systems Research Institute'),
(48496, 40870, 'pl', 'name', 'Instytut Badań Systemowych'),
(48497, 40871, 'en', 'name', 'Headley Trust'),
(48498, 40872, 'en', 'name', 'Ministry of Government Legislation'),
(48499, 40872, 'ko', 'name', 'ė²•ģ œģ²˜'),
(48500, 40873, 'en', 'name', 'Korea Energy Economics Institute'),
(48501, 40873, 'ko', 'name', 'ģ—ė„ˆģ§€ź²½ģ œģ—°źµ¬ģ›'),
(48502, 40874, 'no_lang_code', 'name', 'State Street (United States)'),
(48503, 40875, 'en', 'name', 'University of Dental Medicine at Mandalay'),
(48504, 40876, 'no_lang_code', 'name', 'DYNAMICS Scientific and Production Center (Russia)'),
(48505, 40876, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный центр Динамика'),
(48506, 40877, 'en', 'name', 'College of Nursing in Celje'),
(48507, 40877, 'sl', 'name', 'Visoka zdravstvena Ŕola v Celju'),
(48508, 40878, 'en', 'name', 'Pacifica Graduate Institute'),
(48509, 40879, 'ar', 'name', 'Ecole SupƩrieure des Industries Alimentaires de Tunis'),
(48510, 40879, 'en', 'name', 'Higher Institute of Food Industries of Tunis'),
(48511, 40880, 'en', 'name', 'Raipur Municipal Corporation'),
(48512, 40880, 'hi', 'name', 'ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤° नगर निगम'),
(48513, 40881, 'en', 'name', 'Sussex Downs College'),
(48514, 40882, 'no_lang_code', 'name', 'Mount Sylvia Diatomite (Australia)'),
(48515, 40883, 'en', 'name', 'Odessa College'),
(48516, 40884, 'en', 'name', 'New England School of Photography'),
(48517, 40885, 'en', 'name', 'Institute of Coal of the Siberian Branch of the RAS'),
(48518, 40885, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠ³Š»Ń Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(48519, 40886, 'en', 'name', 'National Institute of Pharmaceutical Education and Research'),
(48520, 40887, 'en', 'name', 'New Jersey Department of Children and Families'),
(48521, 40888, 'en', 'name', 'Massasoit Community College'),
(48522, 40889, 'de', 'name', 'Museum am Schƶlerberg'),
(48523, 40890, 'en', 'name', 'St. Helena Hospital Foundation'),
(48524, 40891, 'en', 'name', 'National Institute Of Technology, Ishikawa College'),
(48525, 40891, 'ja', 'name', 'ēŸ³å·å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(48526, 40892, 'en', 'name', 'Shenzhen Academy of Inspection and Quarantine'),
(48527, 40892, 'zh', 'name', 'ę·±åœ³åø‚ę£€éŖŒę£€ē–«ē§‘å­¦ē ”ē©¶é™¢'),
(48528, 40893, 'en', 'name', 'Missouri State University–West Plains'),
(48529, 40894, 'no_lang_code', 'name', 'Delta Information Systems (United States)'),
(48530, 40895, 'en', 'name', 'African Technology Policy Studies Network'),
(48531, 40896, 'en', 'name', 'Government Vellore Medical College'),
(48532, 40897, 'en', 'name', 'Harry J. Lloyd Charitable Trust'),
(48533, 40898, 'en', 'name', 'European Observatory on Health Systems and Policies'),
(48534, 40899, 'pt', 'name', 'Prefeitura do MunicĆ­pio de SĆ£o Paulo'),
(48535, 40900, 'en', 'name', 'Sergeev Institute of Environmental Geoscience'),
(48536, 40900, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŠµŠ¾ŃŠŗŠ¾Š»Š¾Š³ŠøŠø им.Š•.М.Дергеева Российской акаГемии наук'),
(48537, 40901, 'no_lang_code', 'name', 'Radiall (France)'),
(48538, 40902, 'en', 'name', 'Institute and Academy of Multimedia'),
(48539, 40902, 'sl', 'name', 'InŔtitut in Akademija za Multimedije'),
(48540, 40903, 'en', 'name', 'Ministry for Foreign Affairs'),
(48541, 40903, 'sv', 'name', 'Utrikesdepartementet'),
(48542, 40904, 'en', 'name', 'CNI College'),
(48543, 40905, 'en', 'name', 'Clear Passage Physical Therapy'),
(48544, 40906, 'en', 'name', 'Big Sandy Community and Technical College'),
(48545, 40907, 'en', 'name', 'Sukachev Institute of Forest'),
(48546, 40907, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° леса им. Š’. Š. Š”ŃƒŠŗŠ°Ń‡ŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(48547, 40908, 'en', 'name', 'Missouri Department of Transportation'),
(48548, 40909, 'no_lang_code', 'name', 'ZMQ Software Systems (India)'),
(48549, 40910, 'en', 'name', 'Defence Laboratory Jodhpur'),
(48550, 40910, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾ ą¤œą„‹ą¤§ą¤Ŗą„ą¤°'),
(48551, 40911, 'en', 'name', 'O''More College of Design'),
(48552, 40912, 'no_lang_code', 'name', 'Forum For Social Studies'),
(48553, 40913, 'en', 'name', 'Sotheby''s Institute of Art'),
(48554, 40914, 'no_lang_code', 'name', 'Tidewater (United States)'),
(48555, 40915, 'no_lang_code', 'name', 'Shanghai Biomodel Organism'),
(48556, 40915, 'zh', 'name', 'äøŠęµ·å—ę–¹ęØ”å¼ē”Ÿē‰©ē§‘ęŠ€å‘å±•ęœ‰é™å…¬åø'),
(48557, 40916, 'en', 'name', 'SƔmi Education Institute'),
(48558, 40916, 'fi', 'name', 'Saamelaisalueen Koulutuskeskus'),
(48559, 40917, 'en', 'name', 'Eastfield College'),
(48560, 40918, 'en', 'name', 'Metro Transit'),
(48561, 40919, 'es', 'name', 'Universidad del Papaloapan'),
(48562, 40920, 'no_lang_code', 'name', '31 Degrees (France)'),
(48563, 40921, 'en', 'name', 'Scientific Committee on Antarctic Research'),
(48564, 40922, 'en', 'name', 'Chosun University Hospital'),
(48565, 40923, 'en', 'name', 'Southwestern Baptist Theological Seminary'),
(48566, 40924, 'en', 'name', 'Military Technical College'),
(48567, 40925, 'no_lang_code', 'name', 'Power Grid Corporation (India)'),
(48568, 40926, 'en', 'name', 'Nashotah House Theological Seminary'),
(48569, 40927, 'no_lang_code', 'name', 'Broadcom (Canada)'),
(48570, 40928, 'no_lang_code', 'name', 'W.W Grainger (United States)'),
(48571, 40929, 'en', 'name', 'Rocky Mountain College of Art and Design'),
(48572, 40930, 'en', 'name', 'Georgia Space Grant Consortium'),
(48573, 40931, 'no_lang_code', 'name', 'Givaudan (France)'),
(48574, 40932, 'en', 'name', 'Larnaca College'),
(48575, 40933, 'en', 'name', 'Compton Community College District'),
(48576, 40934, 'no_lang_code', 'name', 'Hallmark Cards (United States)'),
(48577, 40935, 'en', 'name', 'Government of Tamil Nadu'),
(48578, 40935, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®…ą®°ą®šąÆ'),
(48579, 40936, 'en', 'name', 'Phillips Community College of the University of Arkansas'),
(48580, 40937, 'el', 'name', 'Βρετανική Σχολή Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(48581, 40937, 'en', 'name', 'British School at Athens'),
(48582, 40938, 'no_lang_code', 'name', 'Australian Wool Innovation (Australia)'),
(48583, 40939, 'en', 'name', 'China Waterborne Transport Research Institute'),
(48584, 40939, 'zh', 'name', 'äŗ¤é€ščæč¾“éƒØę°“čæē§‘å­¦ē ”ē©¶ę‰€'),
(48585, 40940, 'en', 'name', 'Council for British Research in the Levant'),
(48586, 40941, 'en', 'name', 'Central Institute of Post-Harvest Engineering and Technology'),
(48587, 40942, 'en', 'name', 'Riverside College'),
(48588, 40943, 'en', 'name', 'Hazard Community and Technical College'),
(48589, 40944, 'no_lang_code', 'name', 'Hill Holliday (United States)'),
(48590, 40945, 'en', 'name', 'Lanzhou Institute of Husbandry and Pharmaceutical Sciences'),
(48591, 40945, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å…°å·žē•œē‰§äøŽå…½čÆē ”ē©¶ę‰€'),
(48592, 40946, 'en', 'name', 'National Defense Institute'),
(48593, 40946, 'pt', 'name', 'Instituto da Defesa Nacional'),
(48594, 40947, 'en', 'name', 'Biotechnology Research Center'),
(48595, 40948, 'no_lang_code', 'name', 'eNeura (United States)'),
(48596, 40949, 'ja', 'name', 'ę¹˜åŒ—ēŸ­ęœŸå¤§å­¦'),
(48597, 40949, 'no_lang_code', 'name', 'Shohoku College'),
(48598, 40950, 'en', 'name', 'Adana Science and Technology University'),
(48599, 40950, 'tr', 'name', 'Adana Bilim ve Teknloji Üniversitesi'),
(48600, 40951, 'en', 'name', 'Institute for Space Astrophysics and Planetology'),
(48601, 40951, 'it', 'name', 'Istituto Di Astrofisica E Planetologia Spaziali'),
(48602, 40952, 'en', 'name', 'Minnesota State College-Southeast Technical'),
(48603, 40953, 'en', 'name', 'Ohio Department of Transportation'),
(48604, 40954, 'en', 'name', 'Cardinal Tien College of Healthcare and Management'),
(48605, 40954, 'zh', 'name', 'č€•čŽ˜å„åŗ·ē®”ē†å°ˆē§‘å­øę ”'),
(48606, 40955, 'fr', 'name', 'Office National pour l''Environnement'),
(48607, 40956, 'en', 'name', 'Muskegon Community College'),
(48608, 40957, 'fr', 'name', 'Agence de Protection et d''AmƩnagement du Littoral'),
(48609, 40958, 'en', 'name', 'Advanced Foods and Materials Network'),
(48610, 40959, 'it', 'name', 'Conservatorio Statale di Musica A. Buzzolla'),
(48611, 40960, 'en', 'name', 'DKTE Society''s Textile and Engineering Institute'),
(48612, 40961, 'en', 'name', 'Birla Institute of Technology and Science - Hyderabad Campus'),
(48613, 40962, 'en', 'name', 'South Florida Bible College & Theological Seminary'),
(48614, 40963, 'no_lang_code', 'name', 'Pacific Shipyards (United States)'),
(48615, 40964, 'en', 'name', 'Kanawha County Schools'),
(48616, 40965, 'en', 'name', 'Dudley Group NHS Foundation Trust'),
(48617, 40966, 'en', 'name', 'Society for Nutrition Education and Health Action'),
(48618, 40967, 'ja', 'name', 'äø‰č±å•†äŗ‹ę Ŗå¼ä¼šē¤¾'),
(48619, 40967, 'no_lang_code', 'name', 'Mitsubishi Corporation (Japan)'),
(48620, 40968, 'en', 'name', 'United States Golf Association'),
(48621, 40969, 'no_lang_code', 'name', 'Devon Energy (United States)'),
(48622, 40970, 'en', 'name', 'Hudson Institute'),
(48623, 40971, 'bn', 'name', 'ą¦œą¦Øą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦øą¦Ø ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(48624, 40971, 'en', 'name', 'Ministry of Public Administration'),
(48625, 40972, 'en', 'name', 'National Blood Transfusion Service'),
(48626, 40973, 'en', 'name', 'Osaka Jonan Womens Junior College'),
(48627, 40973, 'ja', 'name', 'å¤§é˜ŖåŸŽå—å„³å­ēŸ­ęœŸå¤§å­¦'),
(48628, 40974, 'en', 'name', 'African Forum for Agricultural Advisory Services'),
(48629, 40975, 'en', 'name', 'American Theatre Wing'),
(48630, 40976, 'en', 'name', 'Wade College'),
(48631, 40977, 'en', 'name', 'Nazarene Theological College'),
(48632, 40978, 'en', 'name', 'Hong Kong College of Technology'),
(48633, 40978, 'zh', 'name', 'é¦™ęøÆå°ˆę„­é€²äæ®å­øę ”'),
(48634, 40979, 'en', 'name', 'Sightsavers'),
(48635, 40980, 'no_lang_code', 'name', 'H.B. Fuller (United States)'),
(48636, 40981, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š¼ŠµŠ“Ń‹Ń†Ń‹Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń ŠæŠ°ŃŠ»ŃŠ“Ń‹ŠæŠ»Š¾Š¼Š½Š°Š¹ Š°Š“ŃƒŠŗŠ°Ń†Ń‹Ń–'),
(48637, 40981, 'en', 'name', 'Belarusian Medical Academy of Post-Graduate Education'),
(48638, 40982, 'en', 'name', 'Tartu Theological Seminary'),
(48639, 40982, 'et', 'name', 'KƵrgem Usuteaduslik Seminar'),
(48640, 40983, 'en', 'name', 'Mid Michigan Autism Association'),
(48641, 40984, 'en', 'name', 'Arts Council of Northern Ireland'),
(48642, 40985, 'no_lang_code', 'name', 'ETC East Africa (Kenya)'),
(48643, 40986, 'en', 'name', 'Pierce College'),
(48644, 40987, 'de', 'name', 'Accadis Hochschule Bad Homburg'),
(48645, 40988, 'en', 'name', 'Porterville College'),
(48646, 40989, 'en', 'name', 'Michigan Department of Military and Veterans Affairs'),
(48647, 40990, 'en', 'name', 'Turkish Armed Forces'),
(48648, 40990, 'tr', 'name', 'Türk Silahlı Kuvvetleri'),
(48649, 40991, 'en', 'name', 'Modibbo Adama University of Technology'),
(48650, 40992, 'en', 'name', 'Islamic Azad University of Najafabad'),
(48651, 40992, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł†Ų¬Łā€ŒŲ¢ŲØŲ§ŲÆ'),
(48652, 40993, 'en', 'name', 'Maresme Health Consortium'),
(48653, 40993, 'es', 'name', 'Consorci Sanitari del Maresme'),
(48654, 40994, 'fr', 'name', 'Haute Ɖcole PĆ©dagogique BEJUNE'),
(48655, 40995, 'en', 'name', 'Radom College'),
(48656, 40995, 'pl', 'name', 'Radomska Szkoła Wyższa'),
(48657, 40996, 'en', 'name', 'International Advanced Research Centre for Powder Metallurgy and New Materials'),
(48658, 40997, 'no_lang_code', 'name', 'Vivus (United States)'),
(48659, 40998, 'en', 'name', 'Regents Theological College'),
(48660, 40999, 'en', 'name', 'ICFAI Business School'),
(48661, 41000, 'en', 'name', 'Institute of Chemistry of High-Purity Substances them. G.G.Devyatyh'),
(48662, 41000, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии высокочистых веществ им'),
(48663, 41001, 'fa', 'name', 'Ų§ŪŒŲ±Ų§Ł† Ų®ŁˆŲÆŲ±Łˆā€Žā€Ž'),
(48664, 41001, 'no_lang_code', 'name', 'Iran Khodro (Iran)'),
(48665, 41002, 'en', 'name', 'Center for Advanced Legal Studies'),
(48666, 41003, 'en', 'name', 'Space Research Institute'),
(48667, 41003, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(48668, 41004, 'en', 'name', 'Education Labour Relations Council'),
(48669, 41005, 'en', 'name', 'Council of Independent Colleges'),
(48670, 41006, 'en', 'name', 'Texas Juvenile Justice Department'),
(48671, 41007, 'en', 'name', 'Witelon State University of Applied Sciences in Legnica'),
(48672, 41007, 'pl', 'name', 'Pastwowa Wysza Szkoa Zawodowa im. Witelona w Legnicy'),
(48673, 41008, 'en', 'name', 'Polytechnic Marko Marulic'),
(48674, 41008, 'hr', 'name', 'VeleučiliÅ”te "Marko Marulić"'),
(48675, 41009, 'en', 'name', 'African Training and Research Centre in Administration for Development'),
(48676, 41009, 'fr', 'name', 'Centre Africain de Formation et de Recherche Administratives pour le DƩveloppement'),
(48677, 41010, 'fr', 'name', 'Ɖcole des Avocats du Grand Ouest'),
(48678, 41011, 'de', 'name', 'Merz Akademie'),
(48679, 41012, 'en', 'name', 'Association of State Road Transport Undertakings'),
(48680, 41013, 'en', 'name', 'South Dakota Space Grant Consortium'),
(48681, 41014, 'en', 'name', 'Richmont Graduate University'),
(48682, 41015, 'en', 'name', 'Mahindra United World College India'),
(48683, 41016, 'en', 'name', 'Monroe County Community College'),
(48684, 41017, 'en', 'name', 'Southern African Clothing & Textile Workers’ Union'),
(48685, 41018, 'en', 'name', 'Aeronautical Development Agency'),
(48686, 41019, 'en', 'name', 'San Francisco Conservatory of Music'),
(48687, 41020, 'no_lang_code', 'name', 'Crocus Technology (France)'),
(48688, 41021, 'en', 'name', 'Burlington College'),
(48689, 41022, 'en', 'name', 'MEF International School'),
(48690, 41023, 'en', 'name', 'National Root Crops Research Institute'),
(48691, 41024, 'en', 'name', 'Notre Dame High School'),
(48692, 41025, 'no_lang_code', 'name', 'Coffey International (Australia)'),
(48693, 41026, 'en', 'name', 'Bangalore Baptist Hospital'),
(48694, 41027, 'en', 'name', 'European Patent Organisation'),
(48695, 41028, 'en', 'name', 'Baptist Theological College of Southern Africa'),
(48696, 41029, 'en', 'name', 'Institute of Metal Superplasticity Problems'),
(48697, 41029, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем сверхпластичности металлов Š ŠŠ'),
(48698, 41030, 'de', 'name', 'Hochschule für Gestaltung Schwäbisch Gmünd'),
(48699, 41030, 'en', 'name', 'University of Design Schwäbisch Gmünd'),
(48700, 41031, 'en', 'name', 'Forum for Ethics Review Committees in India'),
(48701, 41032, 'fr', 'name', 'Institut de Recherche sur le Maghreb Contemporain'),
(48702, 41033, 'en', 'name', 'Levine Cancer Institute'),
(48703, 41034, 'no_lang_code', 'name', 'BoostHeat (France)'),
(48704, 41035, 'en', 'name', 'Medical Laboratory Science Council of Nigeria'),
(48705, 41036, 'de', 'name', 'Türkisch-Deutsche Universität'),
(48706, 41036, 'en', 'name', 'Turkish-German University'),
(48707, 41036, 'tr', 'name', 'Türk-Alman Üniversitesi'),
(48708, 41037, 'en', 'name', 'D.I. Mendeleyev All-Russian Institute for Metrology'),
(48709, 41037, 'ru', 'name', 'Š’ŠŠ˜Š˜ метрологии им. Š”.И.МенГелеева, ломоносовское отГеление'),
(48710, 41038, 'en', 'name', 'Achieving Health Nigeria Initiative'),
(48711, 41039, 'en', 'name', 'Creative New Zealand'),
(48712, 41040, 'en', 'name', 'College of Management ā€œEdukacjaā€'),
(48713, 41040, 'pl', 'name', 'Wyższa Szkoła Zarządzania "Edukacja"'),
(48714, 41041, 'no_lang_code', 'name', 'Honeywell (India)'),
(48715, 41042, 'no_lang_code', 'name', 'Gencia (United States)'),
(48716, 41043, 'no_lang_code', 'name', 'Fujifilm (United States)'),
(48717, 41044, 'en', 'name', 'Incheon St. Mary''s Hospital'),
(48718, 41045, 'en', 'name', 'Northern (Arctic) Federal University'),
(48719, 41045, 'ru', 'name', 'Деверный (Арктический) Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. Š’. Ломоносова'),
(48720, 41046, 'no_lang_code', 'name', 'Adivit (Spain)'),
(48721, 41047, 'en', 'name', 'Illinois Space Grant Consortium'),
(48722, 41048, 'no_lang_code', 'name', 'Ricoh (United States)'),
(48723, 41049, 'en', 'name', 'Redcliffe College'),
(48724, 41050, 'en', 'name', 'Chinese National Human Genome Center at Shanghai'),
(48725, 41050, 'zh', 'name', 'å›½å®¶äŗŗē±»åŸŗå› ē»„å—ę–¹ē ”ē©¶äø­åæƒ'),
(48726, 41051, 'en', 'name', 'KMCT Group of Educational Institutions'),
(48727, 41052, 'en', 'name', 'Queensland Centre for Mental Health Research'),
(48728, 41053, 'en', 'name', 'International Graduate School of English'),
(48729, 41053, 'ko', 'name', 'źµ­ģ œģ˜ģ–“ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(48730, 41054, 'en', 'name', 'Edison Community College'),
(48731, 41055, 'en', 'name', 'Institute of Experimental Mineralogy'),
(48732, 41055, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ минералогии'),
(48733, 41056, 'no_lang_code', 'name', 'Itron (United States)'),
(48734, 41057, 'en', 'name', 'Yamano College of Aesthetics'),
(48735, 41057, 'ja', 'name', 'å±±é‡Žē¾Žå®¹čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(48736, 41058, 'en', 'name', 'Ministry of Education and Vocation Training, Ministry of Education and Vocational Training'),
(48737, 41058, 'sw', 'name', 'Wizara ya Elimu na Mafunzo ya Ufundi'),
(48738, 41059, 'en', 'name', 'Fortis Healthcare'),
(48739, 41060, 'no_lang_code', 'name', 'Vifor Pharma (Switzerland)'),
(48740, 41061, 'en', 'name', 'Indian Jute Industries Research Association'),
(48741, 41062, 'en', 'name', 'Muscatine Community College'),
(48742, 41063, 'en', 'name', 'Circle in the Square Theatre School'),
(48743, 41064, 'en', 'name', 'Xinjiang Institute of Materia Medica'),
(48744, 41064, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗčÆē‰©ē ”ē©¶ę‰€'),
(48745, 41065, 'no_lang_code', 'name', 'Astellas Pharma (United Kingdom)'),
(48746, 41066, 'en', 'name', 'Mehrangarh Museum Trust'),
(48747, 41067, 'en', 'name', 'Knipovich Polar Research Institute of Marine Fisheries and Oceanography'),
(48748, 41067, 'ru', 'name', 'ŠšŠ½ŠøŠæŠ¾Š²ŠøŃ‡ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠ¾Š»ŃŃ€Š½Ń‹Ń… исслеГований морского рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø океанографии'),
(48749, 41068, 'no_lang_code', 'name', 'Array BioPharma (United States)'),
(48750, 41069, 'en', 'name', 'Shawnee Mission Medical Center'),
(48751, 41070, 'en', 'name', 'Department of Education'),
(48752, 41071, 'no_lang_code', 'name', 'Grow More Seeds and Chemicals (Uganda)'),
(48753, 41072, 'en', 'name', 'National Academy of Dance'),
(48754, 41072, 'it', 'name', 'Accademia nazionale di danza'),
(48755, 41073, 'en', 'name', 'Swiss Institute of Equine Medicine'),
(48756, 41073, 'fr', 'name', 'Institut suisse de mƩdecine Ʃquine'),
(48757, 41074, 'en', 'name', 'Ghana AIDS Commission'),
(48758, 41075, 'en', 'name', 'Mt. San Jacinto College'),
(48759, 41076, 'it', 'name', 'Accademia di Belle Arti di Urbino'),
(48760, 41077, 'no_lang_code', 'name', 'Borsa Istanbul (Turkey)'),
(48761, 41078, 'no_lang_code', 'name', 'Tata Teleservices (India)'),
(48762, 41079, 'no_lang_code', 'name', 'Britest (United Kingdom)'),
(48763, 41080, 'de', 'name', 'Hochschule für Wirtschaft und Verwaltung'),
(48764, 41080, 'en', 'name', 'German open Business School'),
(48765, 41081, 'en', 'name', 'Open Rights Group'),
(48766, 41082, 'en', 'name', 'Rhode Island Sea Grant'),
(48767, 41083, 'no_lang_code', 'name', 'AstraZeneca (Australia)'),
(48768, 41084, 'en', 'name', 'Northern Gulf Institute'),
(48769, 41085, 'en', 'name', 'Eastern and Southern Africa small scale Farmers’ Forum'),
(48770, 41086, 'en', 'name', 'Cheetah Conservation Fund'),
(48771, 41087, 'nl', 'name', 'Hotelschool Den Haag, Hotelschool The Hague'),
(48772, 41088, 'en', 'name', 'College of Tourism'),
(48773, 41089, 'en', 'name', 'Northeast Alabama Community College'),
(48774, 41090, 'en', 'name', 'Pure Earth'),
(48775, 41091, 'en', 'name', 'International Collective in Support of Fishworkers'),
(48776, 41092, 'en', 'name', 'All India Institute of Physical Medicine and Rehabilitation'),
(48777, 41093, 'en', 'name', 'New York State Governor''s Traffic Safety Committee'),
(48778, 41094, 'en', 'name', 'Fifth Tianjin Central Hospital'),
(48779, 41094, 'zh', 'name', 'å¤©ę“„åø‚ē¬¬äŗ”äø­åæƒåŒ»é™¢'),
(48780, 41095, 'en', 'name', 'New Jersey Department of Law and Public Safety'),
(48781, 41096, 'fr', 'name', 'SantƩ Espoir Vie CƓte d''Ivoire'),
(48782, 41097, 'en', 'name', 'Lambeth College'),
(48783, 41098, 'en', 'name', 'Stella Mann College of Performing Arts'),
(48784, 41099, 'en', 'name', 'American Academy of Nursing'),
(48785, 41100, 'en', 'name', 'National Institute of Open Schooling'),
(48786, 41100, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æą„€ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(48787, 41101, 'en', 'name', 'Jeju International University'),
(48788, 41102, 'en', 'name', 'Mecklenburg County Government'),
(48789, 41103, 'en', 'name', 'Institute of Geophysics'),
(48790, 41103, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геофизики'),
(48791, 41104, 'en', 'name', 'Connors State College'),
(48792, 41105, 'no_lang_code', 'name', 'Deseret Laboratories (United States)'),
(48793, 41106, 'en', 'name', 'University of Northwestern'),
(48794, 41107, 'no_lang_code', 'name', 'Faculty of 1000 (United Kingdom)'),
(48795, 41108, 'en', 'name', 'Maryland Historical Trust'),
(48796, 41109, 'no_lang_code', 'name', 'Barnes & Noble (United States)'),
(48797, 41110, 'en', 'name', 'Police Academy'),
(48798, 41110, 'hr', 'name', 'Policijska akademija'),
(48799, 41111, 'en', 'name', 'Emmanuel Bible College'),
(48800, 41112, 'pl', 'name', 'Szczecińska Szkoła Wyższa Collegium Balticum'),
(48801, 41113, 'it', 'name', 'Conservatorio di Musica Nino Rota'),
(48802, 41114, 'ro', 'name', 'Universitatea Alma Mater Sibiu'),
(48803, 41115, 'en', 'name', 'Kenya Institute Of Organic Farming'),
(48804, 41116, 'en', 'name', 'Palo Verde College'),
(48805, 41117, 'no_lang_code', 'name', 'Sanmar Group (India)'),
(48806, 41118, 'en', 'name', 'AdventHealth for Children'),
(48807, 41119, 'de', 'name', 'Aus- und Weiterbildungseinrichtung für Klinische Verhaltenstherapie'),
(48808, 41120, 'en', 'name', 'Islamic Azad University Semnan'),
(48809, 41120, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سمنان'),
(48810, 41121, 'en', 'name', 'Tillamook Bay Community College'),
(48811, 41122, 'en', 'name', 'Mary Baker Eddy Library'),
(48812, 41123, 'en', 'name', 'Montessori Institute of Milwaukee'),
(48813, 41124, 'en', 'name', 'ALD Connect'),
(48814, 41125, 'en', 'name', 'Saint Louis County Department of Health'),
(48815, 41126, 'en', 'name', 'Parker Hughes Cancer Center'),
(48816, 41127, 'no_lang_code', 'name', 'Genmab (Netherlands)'),
(48817, 41128, 'pt', 'name', 'Citeforma'),
(48818, 41129, 'no_lang_code', 'name', 'Svenska Cellulosa (Sweden)'),
(48819, 41130, 'en', 'name', 'Midland College'),
(48820, 41131, 'en', 'name', 'Malankara Orthodox Syrian Church Medical College Hospital'),
(48821, 41132, 'no_lang_code', 'name', 'Infonet College'),
(48822, 41133, 'en', 'name', 'Australian College of Theology'),
(48823, 41134, 'en', 'name', 'Lenoir Community College'),
(48824, 41135, 'no_lang_code', 'name', 'Giredmet (Russia)'),
(48825, 41135, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ реГких Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(48826, 41136, 'en', 'name', 'St. Cloud Technical and Community College'),
(48827, 41137, 'no_lang_code', 'name', 'Fresenius Kabi (India)'),
(48828, 41138, 'en', 'name', 'Saint John Vianney College Seminary'),
(48829, 41139, 'fr', 'name', 'Centre de DƩveloppement des Technologies AvancƩes'),
(48830, 41140, 'en', 'name', 'Southern Maine Community College'),
(48831, 41141, 'en', 'name', 'Sub-Regional Fisheries Commission'),
(48832, 41142, 'en', 'name', 'IHub'),
(48833, 41143, 'en', 'name', 'M.N. Mikheev Institute of Metal Physics'),
(48834, 41143, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики металлов имени М.Š. ŠœŠøŃ…ŠµŠµŠ²Š° Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(48835, 41144, 'no_lang_code', 'name', 'Alfact Innovation (France)'),
(48836, 41145, 'en', 'name', 'Arkansas Economic Development Commission'),
(48837, 41146, 'en', 'name', 'Southern States University'),
(48838, 41147, 'no_lang_code', 'name', 'Mars (France)'),
(48839, 41148, 'en', 'name', 'Southeastern University'),
(48840, 41149, 'en', 'name', 'Institute of Scientific and Technical Information of China'),
(48841, 41149, 'zh', 'name', 'äø­å›½ē§‘å­¦ęŠ€ęœÆäæ”ęÆē ”ē©¶ę‰€'),
(48842, 41150, 'no_lang_code', 'name', 'Kellogg''s (United States)'),
(48843, 41151, 'en', 'name', 'Wonju Severance Christian Hospital'),
(48844, 41151, 'ko', 'name', 'ģ—°ģ„øėŒ€ķ•™źµ ģ›ģ£¼ģ„øėøŒėž€ģŠ¤źø°ė…ė³‘ģ›'),
(48845, 41152, 'en', 'name', 'Research Institute of Fundamental and Clinical Immunology'),
(48846, 41152, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ Šø клинической иммунологии'),
(48847, 41153, 'en', 'name', 'Heart Kids'),
(48848, 41154, 'en', 'name', 'Families USA'),
(48849, 41155, 'en', 'name', 'Government of Haryana'),
(48850, 41156, 'fr', 'name', 'Laboratoire Interdisciplinaire pour la Sociologie Economique'),
(48851, 41157, 'en', 'name', 'Enterprise Community Partners'),
(48852, 41158, 'en', 'name', 'Southern Maine Health Care'),
(48853, 41159, 'en', 'name', 'SRM Dental College'),
(48854, 41160, 'en', 'name', 'Martin College'),
(48855, 41161, 'en', 'name', 'St Johns River State College'),
(48856, 41162, 'en', 'name', 'Dallas VA Research Corporation'),
(48857, 41163, 'en', 'name', 'Hebei Chemical and Pharmaceutical College'),
(48858, 41163, 'zh', 'name', 'ę²³åŒ—åŒ–å·„åŒ»čÆčŒäøšęŠ€ęœÆå­¦é™¢ 地址'),
(48859, 41164, 'en', 'name', 'Hickey College'),
(48860, 41165, 'no_lang_code', 'name', 'Gene Bridges (Germany)'),
(48861, 41166, 'en', 'name', 'John A Gupton College'),
(48862, 41167, 'no_lang_code', 'name', 'Deltamune (South Africa)'),
(48863, 41168, 'en', 'name', 'Wilbur and Hilda Glenn Family Foundation'),
(48864, 41169, 'fr', 'name', 'Haute Ɖcole PĆ©dagogique du Canton de Vaud'),
(48865, 41170, 'en', 'name', 'State Higher Vocational School in Krosno'),
(48866, 41170, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Stanisława Pigonia w Krośnie'),
(48867, 41171, 'en', 'name', 'Higher Institute for Artistic Industries Faenza'),
(48868, 41171, 'it', 'name', 'Istituto Superiore per le Industrie Artistiche'),
(48869, 41172, 'en', 'name', 'Royal College of Obstetricians and Gynaecologists'),
(48870, 41173, 'en', 'name', 'Chamber of Commerce and Industry of Tunis'),
(48871, 41173, 'fr', 'name', 'Chambre de Commerce et d''Industrie de Tunis'),
(48872, 41174, 'en', 'name', 'AACC International'),
(48873, 41175, 'en', 'name', 'Institute of the North'),
(48874, 41176, 'fr', 'name', 'Institut National de Recherche ForestiĆØre'),
(48875, 41177, 'en', 'name', 'University of Bydgoszcz'),
(48876, 41177, 'pl', 'name', 'Bydgoska Szkoła Wyższa'),
(48877, 41178, 'no_lang_code', 'name', 'Tirunelveli Medical College'),
(48878, 41178, 'ta', 'name', 'ą®¤ą®æą®°ąÆą®ØąÆ†ą®²ąÆą®µąÆ‡ą®²ą®æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(48879, 41179, 'fr', 'name', 'Institut RƩgional d''Administration de Lyon'),
(48880, 41180, 'no_lang_code', 'name', 'Mahindra and Mahindra Limited (India)'),
(48881, 41181, 'no_lang_code', 'name', 'Folha (Brazil)'),
(48882, 41182, 'en', 'name', 'Appropriate Rural Technology Institute'),
(48883, 41183, 'en', 'name', 'LƤƤne-Viru College'),
(48884, 41183, 'et', 'name', 'LƤƤne-Viru RakenduskƵrgkool'),
(48885, 41184, 'en', 'name', 'Missouri College'),
(48886, 41185, 'en', 'name', 'Tropical Pesticides Research Institute'),
(48887, 41186, 'en', 'name', 'Higher Institute for Artistic Industries Firenze'),
(48888, 41186, 'it', 'name', 'Istituto Superiore per le Industrie Artistiche'),
(48889, 41187, 'en', 'name', 'Cheung Kong Graduate School of Business'),
(48890, 41187, 'zh', 'name', 'é•æę±Ÿå•†å­¦é™¢'),
(48891, 41188, 'es', 'name', 'Universidad Católica Cecilio Acosta'),
(48892, 41189, 'en', 'name', 'St. Petersburg Institute for Informatics and Automation'),
(48893, 41189, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информатики Šø автоматизации'),
(48894, 41190, 'no_lang_code', 'name', 'Mobica (Egypt)'),
(48895, 41191, 'en', 'name', 'Society of Teachers of Family Medicine'),
(48896, 41192, 'no_lang_code', 'name', 'MultiMedia InnoVations (South Africa)'),
(48897, 41193, 'en', 'name', 'Foundation for Research in Health Systems'),
(48898, 41194, 'en', 'name', 'Anoka Technical College'),
(48899, 41195, 'it', 'name', 'Accademia di Belle Arti di Venezia'),
(48900, 41196, 'es', 'name', 'Davara & Davara Asesores JurĆ­dicos'),
(48901, 41197, 'en', 'name', 'Military Manpower Administration'),
(48902, 41197, 'ko', 'name', '병묓청'),
(48903, 41198, 'en', 'name', 'Mental Health Australia'),
(48904, 41199, 'fi', 'name', 'EtelƤ-Pohjanmaan Sairaanhoitopiiri'),
(48905, 41200, 'en', 'name', 'Velammal Educational Trust'),
(48906, 41201, 'en', 'name', 'Foundation for Research in Community Health'),
(48907, 41202, 'en', 'name', 'Southeast Arkansas College'),
(48908, 41203, 'no_lang_code', 'name', 'Sami Labs (India)'),
(48909, 41204, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Art des PyrĆ©nĆ©es'),
(48910, 41205, 'en', 'name', 'South Orange County Community College District'),
(48911, 41206, 'en', 'name', 'Southern West Virginia Community and Technical College'),
(48912, 41207, 'en', 'name', 'Ghana Education Service'),
(48913, 41208, 'en', 'name', 'Centre for Internet and Society'),
(48914, 41209, 'en', 'name', 'Shasta College'),
(48915, 41210, 'en', 'name', 'Ellsworth Community College'),
(48916, 41211, 'fr', 'name', 'Centre d’Expertise National en Stimulation Cognitive'),
(48917, 41212, 'en', 'name', 'Research Design And Standards Organization'),
(48918, 41212, 'hi', 'name', 'ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤…ą¤­ą¤æą¤•ą¤²ą„ą¤Ŗ ą¤ą¤µą¤‚ मानक संगठन'),
(48919, 41213, 'de', 'name', 'Hochschule für Kunsttherapie Nürtingen'),
(48920, 41214, 'hi', 'name', 'Vidya Prathishthan'),
(48921, 41215, 'en', 'name', 'Entrust'),
(48922, 41216, 'en', 'name', 'North Shropshire College'),
(48923, 41217, 'no_lang_code', 'name', 'Nationwide Mutual Insurance Company (United States)'),
(48924, 41218, 'en', 'name', 'Ogden–Weber Applied Technology College'),
(48925, 41219, 'en', 'name', 'Western Texas College'),
(48926, 41220, 'no_lang_code', 'name', 'HollyFrontier (United States)'),
(48927, 41221, 'es', 'name', 'Fundación Hospital Manacor'),
(48928, 41222, 'en', 'name', 'Nakuru County Council'),
(48929, 41223, 'en', 'name', 'China Land Surveying and Planning Institute'),
(48930, 41223, 'zh', 'name', 'äø­å›½åœŸåœ°å‹˜ęµ‹č§„åˆ’é™¢'),
(48931, 41224, 'en', 'name', 'Emmaus Bible College'),
(48932, 41225, 'en', 'name', 'V.S. Sobolev Institute of Geology and Mineralogy'),
(48933, 41225, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø минералогии им. Š’.Š”.Доболева Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук (Š˜Š“Šœ Š”Šž Š ŠŠ)'),
(48934, 41226, 'en', 'name', 'Australian American Fulbright Commission'),
(48935, 41227, 'pt', 'name', 'Centro de Excelência em BioinformÔtica'),
(48936, 41228, 'pt', 'name', 'Instituto de Ensinos Superiores da AmazƓnia'),
(48937, 41229, 'fr', 'name', 'Laboratoire de Virologie MolƩculaire et Structurale'),
(48938, 41230, 'en', 'name', 'Somerset Community College'),
(48939, 41231, 'en', 'name', 'National Academy of Social Insurance'),
(48940, 41232, 'en', 'name', 'Assumption College San Lorenzo'),
(48941, 41233, 'en', 'name', 'China Earthquake Disaster Prevention Centre'),
(48942, 41233, 'zh', 'name', 'äø­å›½åœ°éœ‡ē¾å®³é˜²å¾”äø­åæƒ'),
(48943, 41234, 'cs', 'name', 'VysokĆ” Å kola SociĆ”lně SprĆ”vnĆ­'),
(48944, 41235, 'no_lang_code', 'name', 'Vesuvius (France)'),
(48945, 41236, 'no_lang_code', 'name', 'Red Stack Tech (Poland)'),
(48946, 41237, 'en', 'name', 'Ministry of Agriculture Livestock and Fisheries'),
(48947, 41238, 'no_lang_code', 'name', 'DualAlign (United States)'),
(48948, 41239, 'en', 'name', 'Raffles College of Design and Commerce'),
(48949, 41240, 'no_lang_code', 'name', 'Israel Ports Development and Assets (Israel)'),
(48950, 41241, 'no_lang_code', 'name', 'Gansu Meteorological Bureau'),
(48951, 41241, 'zh', 'name', 'ē”˜č‚ƒēœę°”č±”å±€'),
(48952, 41242, 'en', 'name', 'Society for Research and Initiatives for Sustainable Technologies and Institutions'),
(48953, 41243, 'no_lang_code', 'name', 'WD-40 (United States)'),
(48954, 41244, 'de', 'name', 'Hochschule für Agrar- und Umweltpädagogik'),
(48955, 41244, 'en', 'name', 'University College for Agrarian and Environmental Pedagogy'),
(48956, 41245, 'en', 'name', 'African Conservation Tillage Network'),
(48957, 41246, 'no_lang_code', 'name', 'ATLAB Pharma (France)'),
(48958, 41247, 'es', 'name', 'Ministerio de Producción, Ciencia y Tecnología'),
(48959, 41248, 'en', 'name', 'ECAM School of Engineering'),
(48960, 41249, 'de', 'name', 'Philosophisch-Theologische Hochschule SVD St. Augustin'),
(48961, 41250, 'es', 'name', 'Ayuntamiento De Tomelloso'),
(48962, 41251, 'pt', 'name', 'Faculdade da Serra GaĆŗcha'),
(48963, 41252, 'en', 'name', 'Gerald R. Ford Presidential Library and Museum'),
(48964, 41253, 'el', 'name', 'Στρατιωτική Σχολή ΕυελπίΓων'),
(48965, 41253, 'en', 'name', 'Hellenic Military Academy'),
(48966, 41254, 'it', 'name', 'Conservatorio di Musica Luigi Canepa'),
(48967, 41255, 'en', 'name', 'National Sanitation Utility'),
(48968, 41255, 'fr', 'name', 'Office National de l''Assainissement'),
(48969, 41256, 'no_lang_code', 'name', 'Panacea Biotec (India)'),
(48970, 41257, 'en', 'name', 'Academy of Cosmetics and Health Care in Warsaw'),
(48971, 41257, 'pl', 'name', 'Wyższa Szkoła Zawodowa Kosmetyki'),
(48972, 41258, 'en', 'name', 'Nigerian Institute for Oceanography and Marine Research'),
(48973, 41259, 'de', 'name', 'Fachhochschule für Verwaltung des Saarlandes'),
(48974, 41260, 'no_lang_code', 'name', 'Quantum Genomics (France)'),
(48975, 41261, 'en', 'name', 'All-Russian Research Institute of Agricultural Microbiology'),
(48976, 41262, 'es', 'name', 'Instituto Nacional de Cooperación Educativa Socialista'),
(48977, 41263, 'en', 'name', 'Koran Women''s Junior College'),
(48978, 41263, 'ja', 'name', 'é¦™č˜­å„³å­ēŸ­ęœŸå¤§å­¦'),
(48979, 41264, 'de', 'name', 'Fachhochschule des Mittelstands'),
(48980, 41265, 'en', 'name', 'Hyundai Hope On Wheels'),
(48981, 41266, 'en', 'name', 'Panchajanya Vidya Peetha Welfare Trust'),
(48982, 41267, 'no_lang_code', 'name', 'Graham Holdings (United States)'),
(48983, 41268, 'no_lang_code', 'name', 'MedinCell (France)'),
(48984, 41269, 'en', 'name', 'Millar College of the Bible'),
(48985, 41270, 'en', 'name', 'Minnesota West Community & Technical College'),
(48986, 41271, 'en', 'name', 'Chicago Community Trust'),
(48987, 41272, 'en', 'name', 'All Russian Research Institute of Geology and Mineral Resources of the World Ocean'),
(48988, 41272, 'ru', 'name', 'Š’ŠŠ˜Š˜ŠžŠŗŠµŠ°Š½Š³ŠµŠ¾Š»Š¾Š³ŠøŃ'),
(48989, 41273, 'fr', 'name', 'Ecologie & Evolution'),
(48990, 41274, 'en', 'name', 'Bais Medrash Toras Chesed'),
(48991, 41275, 'no_lang_code', 'name', 'Weifang University'),
(48992, 41275, 'zh', 'name', 'ę½åŠå­¦é™¢'),
(48993, 41276, 'en', 'name', 'Department of Education Cagayan de Oro'),
(48994, 41277, 'en', 'name', 'Chreso Ministries'),
(48995, 41278, 'en', 'name', 'South College'),
(48996, 41279, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Art et Design de Saint-Ɖtienne'),
(48997, 41280, 'en', 'name', 'Academy for Peace and Development'),
(48998, 41280, 'so', 'name', 'Akaademiga Nabadda iyo Horumarka'),
(48999, 41281, 'bn', 'name', 'ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦Ø মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(49000, 41281, 'en', 'name', 'Eastern Medical College and Hospital'),
(49001, 41282, 'en', 'name', 'Royal Brisbane and Women''s Hospital Foundation'),
(49002, 41283, 'fr', 'name', 'Institut FranƧais de Finlande'),
(49003, 41284, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† بقابس'),
(49004, 41284, 'fr', 'name', 'Ɖcole Nationale d''IngĆ©nieurs de GabĆØs'),
(49005, 41285, 'en', 'name', 'National Insurance Institute of Israel'),
(49006, 41285, 'he', 'name', 'המוהד לביטוח לאומי'),
(49007, 41286, 'en', 'name', 'Royal Air Force College Cranwell'),
(49008, 41287, 'en', 'name', 'NEOMA Business School'),
(49009, 41287, 'fr', 'name', 'Ɖcole supĆ©rieure de commerce de rouen'),
(49010, 41288, 'en', 'name', 'River Parishes Community College'),
(49011, 41289, 'en', 'name', 'National Institute of Transport'),
(49012, 41290, 'en', 'name', 'Newbury College'),
(49013, 41291, 'en', 'name', 'Royal National Lifeboat Institution'),
(49014, 41292, 'en', 'name', 'Morthland College'),
(49015, 41293, 'en', 'name', 'Government of Ethiopia'),
(49016, 41294, 'no_lang_code', 'name', 'Systems, Applications & Products in Data Processing (United States)'),
(49017, 41295, 'no_lang_code', 'name', 'Anthem (United States)'),
(49018, 41296, 'de', 'name', 'Akademie für Tiergesundheit'),
(49019, 41297, 'no_lang_code', 'name', 'Alltech (United States)'),
(49020, 41298, 'en', 'name', 'High Magnetic Field Laboratory'),
(49021, 41298, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¼ŗē£åœŗē§‘å­¦äø­åæƒ'),
(49022, 41299, 'en', 'name', 'Royal Holland Society of Sciences and Humanities'),
(49023, 41299, 'nl', 'name', 'Koninklijke Hollandsche Maatschappij der Wetenschappen'),
(49024, 41300, 'en', 'name', 'Research Institute of Therapy and Preventive Medicine'),
(49025, 41300, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ терапии Šø профилактической меГицины'),
(49026, 41301, 'no_lang_code', 'name', 'Endocontrol (France)'),
(49027, 41302, 'no_lang_code', 'name', 'HHV Solar Technologies (India)'),
(49028, 41303, 'de', 'name', 'Provadis Hochschule'),
(49029, 41303, 'en', 'name', 'Provadis School of International Management and Technology'),
(49030, 41304, 'en', 'name', 'Shanghai Innovative Research Center of Traditional Chinese Medicine'),
(49031, 41304, 'zh', 'name', 'äøŠęµ·äø­čÆåˆ›ę–°ē ”ē©¶äø­åæƒ'),
(49032, 41305, 'no_lang_code', 'name', 'Orica (Australia)'),
(49033, 41306, 'no_lang_code', 'name', 'OTR3 (France)'),
(49034, 41307, 'en', 'name', 'Cuyamaca College'),
(49035, 41308, 'en', 'name', 'College of San Mateo'),
(49036, 41309, 'no_lang_code', 'name', 'Swisse (Australia)'),
(49037, 41310, 'es', 'name', 'Cementos Argos'),
(49038, 41310, 'no_lang_code', 'name', 'Argos Cement (Colombia)'),
(49039, 41311, 'no_lang_code', 'name', 'Benteler (Germany)'),
(49040, 41312, 'it', 'name', 'Conservatorio di Musica G. Martucci'),
(49041, 41313, 'en', 'name', 'Union Catholic Regional High School'),
(49042, 41314, 'pt', 'name', 'Faculdades Integradas de Cacoal'),
(49043, 41315, 'no_lang_code', 'name', 'JCPenney (United States)'),
(49044, 41316, 'en', 'name', 'Central Bank of the Republic of Turkey'),
(49045, 41316, 'tr', 'name', 'Türkiye Cumhuriyet Merkez Bankası'),
(49046, 41317, 'en', 'name', 'Tianjin Centers for Disease Control and Prevention'),
(49047, 41317, 'zh', 'name', 'å¤©ę“„åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(49048, 41318, 'en', 'name', 'Scandinavian Seminar'),
(49049, 41319, 'no_lang_code', 'name', 'Taimyr College'),
(49050, 41319, 'ru', 'name', 'Таймырский коллеГж'),
(49051, 41320, 'en', 'name', 'Colorado Traumatic Brain Injury Trust Fund'),
(49052, 41321, 'en', 'name', 'National Institute of Technology, Toba College'),
(49053, 41321, 'ja', 'name', 'é³„ē¾½å•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(49054, 41322, 'en', 'name', 'Central Bank of Brazil'),
(49055, 41322, 'pt', 'name', 'Banco Central do Brasil'),
(49056, 41323, 'en', 'name', 'Fortis Memorial Research Institute'),
(49057, 41324, 'de', 'name', 'Deutsche Hochschule der Polizei'),
(49058, 41324, 'en', 'name', 'German Police University'),
(49059, 41325, 'en', 'name', 'Nazareth Academy'),
(49060, 41326, 'en', 'name', 'National Biomedical Research Ethics Council'),
(49061, 41327, 'no_lang_code', 'name', 'Motorola (United States)'),
(49062, 41328, 'en', 'name', 'North Florida Community College'),
(49063, 41329, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Paris-Belleville'),
(49064, 41330, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ”ćƒƒć‚Æ'),
(49065, 41330, 'no_lang_code', 'name', 'Mechanics Electronics Computer Corporation (Japan)'),
(49066, 41331, 'en', 'name', 'Western Nebraska Community College'),
(49067, 41332, 'en', 'name', 'Naval War College'),
(49068, 41333, 'no_lang_code', 'name', 'INHS Asvini'),
(49069, 41334, 'de', 'name', 'Fachhochschule Erfurt'),
(49070, 41334, 'en', 'name', 'University of Applied Sciences Erfurt'),
(49071, 41335, 'en', 'name', 'Royal Centre for Remote Sensing'),
(49072, 41335, 'fr', 'name', 'Centre Royal de TƩlƩdƩtection Spatiale'),
(49073, 41336, 'fr', 'name', 'Institut SupƩrieur de Musique et de PƩdagogie'),
(49074, 41337, 'en', 'name', 'African Center for Economic Transformation'),
(49075, 41338, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(49076, 41338, 'en', 'name', 'International Islamic College'),
(49077, 41339, 'en', 'name', 'Global Healthy Living Foundation'),
(49078, 41340, 'en', 'name', 'Southern African Aids Trust'),
(49079, 41341, 'en', 'name', 'New York City Economic Development Corporation'),
(49080, 41342, 'en', 'name', 'Third Sector New England'),
(49081, 41343, 'en', 'name', 'Ministry of Education'),
(49082, 41343, 'fa', 'name', 'وزارت Ų¢Ł…ŁˆŲ²Ų“ و پرورؓ Ų§ŪŒŲ±Ų§Ł†ā€Žā€Ž'),
(49083, 41344, 'en', 'name', 'Ministry of National Development'),
(49084, 41344, 'hu', 'name', 'Nemzeti FejlesztƩsi MinisztƩrium'),
(49085, 41345, 'en', 'name', 'Wor-Wic Community College, Wor–Wic Community College'),
(49086, 41346, 'en', 'name', 'Henley College'),
(49087, 41347, 'en', 'name', 'London School of Business and Management'),
(49088, 41348, 'en', 'name', 'North West Boroughs Healthcare NHS Foundation Trust'),
(49089, 41349, 'en', 'name', 'Gwich''in Council International'),
(49090, 41350, 'fr', 'name', 'Union Coopération Forestière Française'),
(49091, 41351, 'no_lang_code', 'name', 'Bank of Cape Verde'),
(49092, 41351, 'pt', 'name', 'Banco de Cabo Verde'),
(49093, 41352, 'en', 'name', 'Authorised Association Consortium'),
(49094, 41353, 'en', 'name', 'Florida Sea Grant'),
(49095, 41354, 'en', 'name', 'Denver Botanic Gardens'),
(49096, 41355, 'en', 'name', 'Arizona Christian University'),
(49097, 41356, 'en', 'name', 'Wichita Area Technical College'),
(49098, 41357, 'en', 'name', 'Research Institute of Emergency Care');
INSERT INTO `ror_settings` VALUES
(49099, 41357, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ скорой помощи им. Š.Š’. Дклифосовского'),
(49100, 41358, 'en', 'name', 'Guangzhou Panyu Polytechnic'),
(49101, 41358, 'zh', 'name', 'å¹æå·žē•Ŗē¦ŗčŒäøšęŠ€ęœÆå­¦é™¢'),
(49102, 41359, 'en', 'name', 'Louisville Institute'),
(49103, 41360, 'en', 'name', 'Shenzhen Center for Disease Control and Prevention'),
(49104, 41360, 'zh', 'name', 'ę·±åœ³åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(49105, 41361, 'en', 'name', 'Vijaya Medical and Educational Trust'),
(49106, 41362, 'en', 'name', 'IGlobal University'),
(49107, 41363, 'en', 'name', 'AAIR Charity'),
(49108, 41364, 'no_lang_code', 'name', 'Pharmaleads (France)'),
(49109, 41365, 'no_lang_code', 'name', 'Agilent Technologies (India)'),
(49110, 41366, 'en', 'name', 'African Union Interafrican Bureau for Animal Resources'),
(49111, 41367, 'en', 'name', 'Saint Charles Borromeo Seminary'),
(49112, 41368, 'en', 'name', 'New York State Office of Temporary and Disability Assistance'),
(49113, 41369, 'en', 'name', 'Nova Scotia Department of Health and Wellness'),
(49114, 41370, 'en', 'name', 'Santosh University'),
(49115, 41371, 'fr', 'name', 'Office RƩgional de Mise en Valeur Agricole de Ouarzazate'),
(49116, 41372, 'en', 'name', 'National Center for High-Performance Computing'),
(49117, 41372, 'zh', 'name', 'åœ‹å®¶é«˜é€Ÿē¶²č·Æčˆ‡čØˆē®—äø­åæƒ'),
(49118, 41373, 'hr', 'name', 'Fakultet za menadžment Herceg Novi'),
(49119, 41374, 'de', 'name', 'FH Gesundheitsberufe OƖ'),
(49120, 41374, 'en', 'name', 'University of Applied Sciences the health professions Upper Austria'),
(49121, 41375, 'ar', 'name', 'Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„ŁƒŁ‡Ų±ŲØŲ§Ų” ŁˆŲ§Ł„ŲŗŲ§Ų² أو Ų³ŁˆŁ†Ł„ŲŗŲ§Ų²'),
(49122, 41375, 'en', 'name', 'National Society for Electricity and Gas'),
(49123, 41375, 'fr', 'name', 'Socièté Nationale de l''Electricité et du Gaz'),
(49124, 41376, 'en', 'name', 'Jilin Meteorological Bureau'),
(49125, 41376, 'zh', 'name', 'å‰ęž—ēœę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(49126, 41377, 'en', 'name', 'Jiangsu Vocational College of Medicine'),
(49127, 41377, 'zh', 'name', 'ę±Ÿč‹åŒ»čÆčŒäøšå­¦é™¢'),
(49128, 41378, 'fr', 'name', 'Académie Royale des Beaux-Arts de Liège'),
(49129, 41379, 'fr', 'name', 'Centre de Recherche sur l''Information Scientifique et Technique'),
(49130, 41380, 'en', 'name', 'The American College'),
(49131, 41381, 'en', 'name', 'China Tourism Academy'),
(49132, 41381, 'zh', 'name', '中国旅游研究院'),
(49133, 41382, 'en', 'name', 'VƵru County Vocational Training Centre'),
(49134, 41382, 'et', 'name', 'VƵrumaa Kutsehariduskeskus'),
(49135, 41383, 'hr', 'name', 'Baltazar ZapreÅ”ić University of Applied Sciences'),
(49136, 41384, 'de', 'name', 'SRH Hochschule für Logistik und Wirtschaft'),
(49137, 41385, 'en', 'name', 'Andrew College'),
(49138, 41386, 'en', 'name', 'Ufa Institute of Chemistry'),
(49139, 41386, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Уфимский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Российской акаГемии наук'),
(49140, 41387, 'en', 'name', 'Australian Defence College'),
(49141, 41388, 'en', 'name', 'Northampton College'),
(49142, 41389, 'en', 'name', 'Brussels Management School'),
(49143, 41390, 'no_lang_code', 'name', 'Helsinn (Switzerland)'),
(49144, 41391, 'en', 'name', 'Yunnan Provincial Hospital of Traditional Chinese Medicine'),
(49145, 41391, 'zh', 'name', 'äŗ‘å—ēœäø­åŒ»åŒ»é™¢'),
(49146, 41392, 'en', 'name', 'Felton Institute'),
(49147, 41393, 'en', 'name', 'University of Houston - Victoria'),
(49148, 41394, 'en', 'name', 'Department of the Prime Minister and Cabinet'),
(49149, 41395, 'en', 'name', 'Biotechnical Educational Centre Ljubljana'),
(49150, 41396, 'en', 'name', 'State University of Applied Sciences in Elbląg'),
(49151, 41396, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Elblągu'),
(49152, 41397, 'en', 'name', 'Shandong Province Meteorological Bureau'),
(49153, 41397, 'zh', 'name', 'å±±äøœēœę°”č±”å±€ ꉀ꜉'),
(49154, 41398, 'en', 'name', 'Michigan Community Service Commission'),
(49155, 41399, 'en', 'name', 'Chartered Institute of Management Accountants'),
(49156, 41400, 'en', 'name', 'San Diego Miramar College'),
(49157, 41401, 'no_lang_code', 'name', 'Xura (United States)'),
(49158, 41402, 'it', 'name', 'Conservatorio di Musica Cesare Pollini'),
(49159, 41403, 'pt', 'name', 'ColƩgio Pedro II'),
(49160, 41404, 'en', 'name', 'Skadden Arps Slate Meagher & Flom, Skadden, Arps, Slate, Meagher & Flom'),
(49161, 41404, 'fr', 'name', 'Skadden, arps, slate, meagher & flom'),
(49162, 41405, 'en', 'name', 'National Museum of American History'),
(49163, 41406, 'en', 'name', 'Consumer Goods Council of South Africa'),
(49164, 41407, 'fr', 'name', 'Wilp Wilxo’oskwhl Nisga’a Institute'),
(49165, 41408, 'en', 'name', 'Horticultural Research Institute'),
(49166, 41409, 'en', 'name', 'Guru Gobind Singh Medical College and Hospital'),
(49167, 41410, 'en', 'name', 'Bureau of International Cooperation'),
(49168, 41410, 'zh', 'name', '国际合作局'),
(49169, 41411, 'en', 'name', 'Tainan Theological College and Seminary'),
(49170, 41411, 'zh', 'name', 'å°å—ē„žå­øé™¢'),
(49171, 41412, 'en', 'name', 'China Electronic Information Industry Development'),
(49172, 41412, 'zh', 'name', 'äø­å›½ē”µå­äæ”ęÆäŗ§äøšå‘å±•ē ”ē©¶é™¢'),
(49173, 41413, 'en', 'name', 'Korea Institute for Curriculum and Evaluation'),
(49174, 41413, 'ko', 'name', '교윔 과정 ė° ķ‰ź°€ė„¼ģœ„ķ•œ ķ•œźµ­ ģ—°źµ¬ģ†Œ'),
(49175, 41414, 'en', 'name', 'Institute of Sugar Beet'),
(49176, 41414, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ē”œčœē ”ē©¶ę‰€'),
(49177, 41415, 'en', 'name', 'Abbey Awards'),
(49178, 41416, 'en', 'name', 'Vinson & Elkins'),
(49179, 41417, 'cs', 'name', 'VysokĆ” Å kola RealitnĆ­ Institut Franka Dysona'),
(49180, 41418, 'en', 'name', 'Washington County Community College'),
(49181, 41419, 'en', 'name', 'British College of Osteopathic Medicine'),
(49182, 41420, 'el', 'name', 'ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ®Ļ‚ ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(49183, 41420, 'en', 'name', 'Technological Educational Institute of Central Macedonia'),
(49184, 41421, 'en', 'name', 'Health Volunteers Overseas'),
(49185, 41422, 'en', 'name', 'Indian Institute of Plantation Management'),
(49186, 41423, 'en', 'name', 'Sacramento City College'),
(49187, 41424, 'en', 'name', 'Fukui National College of Technology'),
(49188, 41424, 'ja', 'name', 'ē¦äŗ•å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(49189, 41425, 'en', 'name', 'Gause Institute of New Antibiotics Russian Academy of Medical Sciences'),
(49190, 41425, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠøŠ·Ń‹ŃŠŗŠ°Š½ŠøŃŽ новых антибиотиков им. Š“. Ф. Š“Š°ŃƒŠ·Šµ'),
(49191, 41426, 'en', 'name', 'Institute of Porous Flow and Fluid Mechanics'),
(49192, 41426, 'zh', 'name', 'ęø—ęµęµä½“åŠ›å­¦ē ”ē©¶ę‰€'),
(49193, 41427, 'en', 'name', 'Children’s Charities Foundation'),
(49194, 41428, 'en', 'name', 'Ipek University'),
(49195, 41429, 'en', 'name', 'American Institute of Pakistan Studies'),
(49196, 41430, 'en', 'name', 'University of North Texas at Dallas'),
(49197, 41431, 'en', 'name', 'Centre for Biomedical Engineering and Physics'),
(49198, 41432, 'en', 'name', 'Southwestern Adventist University'),
(49199, 41432, 'fr', 'name', 'UniversitƩ adventiste du sud-ouest'),
(49200, 41433, 'en', 'name', 'Sopot University of Applied Science'),
(49201, 41433, 'pl', 'name', 'Sopocka Szkoła Wyższa'),
(49202, 41434, 'en', 'name', 'Louisiana Public Health Institute'),
(49203, 41435, 'en', 'name', 'Southern California Clinical and Translational Science Institute'),
(49204, 41436, 'no_lang_code', 'name', 'Sinosteel (China)'),
(49205, 41436, 'zh', 'name', 'äø­å›½äø­é’¢é›†å›¢å…¬åø'),
(49206, 41437, 'en', 'name', 'Lowitja Institute'),
(49207, 41438, 'en', 'name', 'Ningbo Academy of Agricultural Sciences'),
(49208, 41438, 'zh', 'name', 'å®ę³¢åø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(49209, 41439, 'no_lang_code', 'name', 'AspenTech (United States)'),
(49210, 41440, 'en', 'name', 'Moore College of Art and Design'),
(49211, 41441, 'en', 'name', 'Ministry of Natural Resources and Environmental Protection of the Komi Republic'),
(49212, 41441, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ ŠŸŃ€ŠøŃ€Š¾Š“Š½Ń‹Ń… Š ŠµŃŃƒŃ€ŃŠ¾Š² И ŠžŃ…Ń€Š°Š½Ń‹ ŠžŠŗŃ€ŃƒŠ¶Š°ŃŽŃ‰ŠµŠ¹ ДреГы Республики Коми'),
(49213, 41442, 'en', 'name', 'Shanghai Academy of Quality Management'),
(49214, 41442, 'zh', 'name', 'äøŠęµ·č“Øé‡ē®”ē†ē§‘å­¦ē ”ē©¶é™¢äŗŽ'),
(49215, 41443, 'en', 'name', 'Naryan-Mar Social and Humanitarian College'),
(49216, 41443, 'ru', 'name', 'ŠŠ°Ń€ŃŒŃŠ½-ŠœŠ°Ń€ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ коллеГж имени И.П. Š’Ń‹ŃƒŃ‡ŠµŠ¹ŃŠŗŠ¾Š³Š¾'),
(49217, 41444, 'en', 'name', 'Astronomical Society of Australia'),
(49218, 41445, 'ja', 'name', 'ę—„ē”£č‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(49219, 41445, 'no_lang_code', 'name', 'Nissan (Japan)'),
(49220, 41446, 'en', 'name', 'Northwest Arkansas Community College'),
(49221, 41447, 'en', 'name', 'Institute of Spectroscopy'),
(49222, 41447, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ спектроскопии Российской акаГемии наук'),
(49223, 41448, 'en', 'name', 'Community College of Vermont'),
(49224, 41449, 'en', 'name', 'Institute of Agricultural Resources and Regional Planning'),
(49225, 41449, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å†œäøščµ„ęŗäøŽå†œäøšåŒŗåˆ’ē ”ē©¶ę‰€'),
(49226, 41450, 'en', 'name', 'Government Medical College'),
(49227, 41451, 'en', 'name', 'Lamar State College–Port Arthur'),
(49228, 41452, 'en', 'name', 'Won Institute of Graduate Studies'),
(49229, 41453, 'no_lang_code', 'name', 'China Energy Engineering Corporation (China)'),
(49230, 41453, 'zh', 'name', 'äø­å›½čƒ½ęŗå»ŗč®¾č‚”ä»½ęœ‰é™å…¬åø'),
(49231, 41454, 'en', 'name', 'National Institute of Technology, Toyota College'),
(49232, 41454, 'ja', 'name', 'å›½ē«‹č±Šē”°å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(49233, 41455, 'en', 'name', 'Virginia Commission for the Arts'),
(49234, 41456, 'el', 'name', 'Κολλέγιο ĪšĪ•Ī£'),
(49235, 41456, 'en', 'name', 'KES College'),
(49236, 41457, 'en', 'name', 'American College of Neuropsychopharmacology'),
(49237, 41458, 'en', 'name', 'Mahatma Gandhi Mission Institute of Health Sciences'),
(49238, 41459, 'en', 'name', 'National Academy of Agricultural Sciences'),
(49239, 41460, 'en', 'name', 'Northern Teacher Education Program'),
(49240, 41461, 'en', 'name', 'Grossmont College'),
(49241, 41462, 'en', 'name', 'Victor Valley College'),
(49242, 41463, 'no_lang_code', 'name', 'Abhikram (India)'),
(49243, 41464, 'es', 'name', 'Instituto Andaluz del Patrimonio Histórico'),
(49244, 41465, 'fr', 'name', 'Agence du Bassin Hydraulique de Sebou'),
(49245, 41466, 'en', 'name', 'Beijing Solar Energy Research Institute'),
(49246, 41466, 'zh', 'name', 'åŒ—äŗ¬åø‚å¤Ŗé˜³čƒ½ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(49247, 41467, 'de', 'name', 'FƖD AuswƤrtige Angelegenheiten, AuƟenhandel und Entwicklungszusammenarbeit'),
(49248, 41467, 'en', 'name', 'FPS Foreign Affairs, Foreign Trade and Development Cooperation'),
(49249, 41467, 'fr', 'name', 'SPF Affaires étrangères, Commerce extérieur et Coopération au Développement'),
(49250, 41467, 'nl', 'name', 'FOD Buitenlandse Zaken, Buitenlandse Handel en Ontwikkelingssamenwerking'),
(49251, 41468, 'en', 'name', 'Chosun University Dental Hospital'),
(49252, 41469, 'it', 'name', 'Conservatorio Statale di Musica Domenico Cimarosa di Avellino'),
(49253, 41470, 'no_lang_code', 'name', 'Sekem'),
(49254, 41471, 'no_lang_code', 'name', 'Suven Life Sciences (India)'),
(49255, 41472, 'en', 'name', 'Art Institute of Houston'),
(49256, 41473, 'fr', 'name', 'Ɖcole Nationale des Greffes'),
(49257, 41474, 'en', 'name', 'North Bennet Street School'),
(49258, 41475, 'no_lang_code', 'name', 'TD Bank'),
(49259, 41476, 'en', 'name', 'Le Cordon Bleu College of Culinary Arts, The Blue Ribbon'),
(49260, 41477, 'cs', 'name', 'CEVRO Institut, CEVRO Institute'),
(49261, 41478, 'no_lang_code', 'name', 'JetBlue (United States)'),
(49262, 41479, 'de', 'name', 'PrivatuniversitƤt Schloss Seeburg'),
(49263, 41479, 'en', 'name', 'Seeburg Castle University'),
(49264, 41480, 'en', 'name', 'India HIV/AIDS Alliance'),
(49265, 41481, 'en', 'name', 'College of Coastal Georgia'),
(49266, 41482, 'en', 'name', 'Packaging Technical Centre'),
(49267, 41483, 'no_lang_code', 'name', 'Zaber Technologies (Canada)'),
(49268, 41484, 'de', 'name', 'SRH Hochschule Berlin'),
(49269, 41484, 'en', 'name', 'SRH University Berlin'),
(49270, 41485, 'no_lang_code', 'name', 'Strand Life Sciences (India)'),
(49271, 41486, 'en', 'name', 'China Academy of Safety Sciences and Technology'),
(49272, 41486, 'zh', 'name', 'äø­å›½å®‰å…Øē”Ÿäŗ§ē§‘å­¦ē ”ē©¶é™¢'),
(49273, 41487, 'en', 'name', 'Orangeburg–Calhoun Technical College'),
(49274, 41488, 'it', 'name', 'Conservatorio di Musica "Luca Marenzio"'),
(49275, 41489, 'fr', 'name', 'Ministre de la SantƩ'),
(49276, 41490, 'en', 'name', 'Animal Health Training and Consultancy Service'),
(49277, 41491, 'en', 'name', 'Smart Water Fund'),
(49278, 41492, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦øą§‹ą¦¶ą§ą¦Æą¦¾ą¦² ওয়েলফেয়ার ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ'),
(49279, 41492, 'en', 'name', 'Indian Institute of Social Welfare and Business Management'),
(49280, 41493, 'en', 'name', 'Sƶdra Ƅlvsborg Hospital'),
(49281, 41493, 'sv', 'name', 'Sƶdra Ƅlvsborgs Sjukhus'),
(49282, 41494, 'pt', 'name', 'Escola Superior de Ciências da Santa Casa de Misericórdia de Vitória'),
(49283, 41495, 'en', 'name', 'V.E. Lashkaryov Institute of Semiconductor Physics'),
(49284, 41495, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізики напівпровіГників ім. Š’.Š„. Š›Š°ŃˆŠŗŠ°Ń€ŃŒŠ¾Š²'),
(49285, 41496, 'pt', 'name', 'Jornal de NotĆ­cias'),
(49286, 41497, 'en', 'name', 'Pennsylvania Highlands Community College'),
(49287, 41498, 'fr', 'name', 'Institut des Arts de Diffusion'),
(49288, 41499, 'en', 'name', 'Petplan Charitable Trust'),
(49289, 41500, 'de', 'name', 'Hochschule der SƤchsischen Polizei'),
(49290, 41500, 'en', 'name', 'Saxon Police Force'),
(49291, 41501, 'en', 'name', 'CaƱada College'),
(49292, 41502, 'en', 'name', 'Pontifical Athenaeum Regina Apostolorum'),
(49293, 41502, 'it', 'name', 'Pontificio Ateneo Regina Apostolorum'),
(49294, 41503, 'en', 'name', 'Humphreys College'),
(49295, 41504, 'en', 'name', 'Sri Lanka Law College'),
(49296, 41505, 'no_lang_code', 'name', 'Monsanto (India)'),
(49297, 41506, 'en', 'name', 'Urban Unit'),
(49298, 41507, 'pt', 'name', 'Grupo Ibmec Educacional'),
(49299, 41508, 'en', 'name', 'Institute of Animal Sciences'),
(49300, 41509, 'en', 'name', 'Nanjing Library'),
(49301, 41509, 'zh', 'name', 'å—äŗ¬å›¾ä¹¦é¦†'),
(49302, 41510, 'en', 'name', 'Melbourne Water'),
(49303, 41511, 'en', 'name', 'Surry Community College'),
(49304, 41512, 'en', 'name', 'Connecticut Department of Transportation'),
(49305, 41513, 'en', 'name', 'Jiangsu Provincial Party School'),
(49306, 41513, 'zh', 'name', 'ę±Ÿč‹ēœč”Œę”æå­¦é™¢'),
(49307, 41514, 'en', 'name', 'Australian Rotary Health'),
(49308, 41515, 'en', 'name', 'Department of Higher Education'),
(49309, 41516, 'en', 'name', 'Bureau of Agriculture of Guangzhou Municipality'),
(49310, 41516, 'zh', 'name', 'å¹æå·žåø‚å†œäøšå±€'),
(49311, 41517, 'da', 'name', 'Erhvervsakademi SjƦlland'),
(49312, 41517, 'en', 'name', 'Zealand Institute of Business and Technology'),
(49313, 41518, 'en', 'name', 'South University'),
(49314, 41519, 'no_lang_code', 'name', 'Office Depot (United States)'),
(49315, 41520, 'no_lang_code', 'name', 'Siemens (Hungary)'),
(49316, 41521, 'en', 'name', 'Korea Customs Service'),
(49317, 41521, 'ko', 'name', '꓀세청'),
(49318, 41522, 'no_lang_code', 'name', 'Actia Group (France)'),
(49319, 41523, 'en', 'name', 'Centre of Ticks and Tick-borne diseases'),
(49320, 41524, 'en', 'name', 'G.A. Razuvaev Institute of Organometallic Chemistry'),
(49321, 41524, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металлоорганической химии имени Š“. А. Разуваева'),
(49322, 41525, 'en', 'name', 'All-Russian Scientific Research and Technological Institute of Poultry Russian Academy of Agricultural Sciences'),
(49323, 41525, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ птицевоГства Российской акаГемии ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Ń… наук'),
(49324, 41526, 'en', 'name', 'Hebei Meteorological Bureau'),
(49325, 41526, 'zh', 'name', 'ę²³åŒ—ēœę°”č±”å±€'),
(49326, 41527, 'en', 'name', 'Mesabi Range College'),
(49327, 41528, 'en', 'name', 'Atlanta Technical College'),
(49328, 41529, 'en', 'name', 'GuaĆ­racĆ” Faculty'),
(49329, 41529, 'pt', 'name', 'Faculdade GuairacĆ”'),
(49330, 41530, 'en', 'name', 'Anti Corruption and Civil Rights Commission'),
(49331, 41530, 'ko', 'name', 'źµ­ėÆ¼ź¶Œģµģœ„ģ›ķšŒ'),
(49332, 41531, 'en', 'name', 'Denmark Technical College'),
(49333, 41532, 'en', 'name', 'Nuclear Energy Research Institute'),
(49334, 41532, 'pt', 'name', 'Instituto de Pesquisas EnergƩticas e Nucleares'),
(49335, 41533, 'en', 'name', 'VisionTree'),
(49336, 41534, 'en', 'name', 'Office of Multidisciplinary Activities'),
(49337, 41535, 'en', 'name', 'Black River Technical College'),
(49338, 41536, 'en', 'name', 'Institute of the Human Brain'),
(49339, 41536, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мозга человека Š ŠŠ'),
(49340, 41537, 'no_lang_code', 'name', 'AgeneBio (United States)'),
(49341, 41538, 'en', 'name', 'Winter Cereal Trust'),
(49342, 41539, 'no_lang_code', 'name', 'Genes''ink (France)'),
(49343, 41540, 'en', 'name', 'Manpower Development Corporation'),
(49344, 41541, 'en', 'name', 'Columbia College Hollywood'),
(49345, 41542, 'en', 'name', 'East Asia School of Theology'),
(49346, 41542, 'zh', 'name', 'äøœäŗžē„žå­¦é™¢'),
(49347, 41543, 'de', 'name', 'Landesarchiv'),
(49348, 41544, 'en', 'name', 'Northern University of Malaysia'),
(49349, 41544, 'ms', 'name', 'Universiti Utara Malaysia'),
(49350, 41544, 'zh', 'name', 'é¦¬ä¾†č„æäŗžåŒ—ę–¹å¤§å­ø'),
(49351, 41545, 'fr', 'name', 'Service de l''Ʃnergie en milieu sahƩlien'),
(49352, 41545, 'no_lang_code', 'name', 'Energy Services in Sahelian Environment (Senegal)'),
(49353, 41546, 'en', 'name', 'Los Angeles Mission College'),
(49354, 41547, 'pl', 'name', 'Wyższa Szkoła Bezpieczeństwa i Securities Services w Warszawie'),
(49355, 41548, 'en', 'name', 'United States Indonesia Society'),
(49356, 41549, 'en', 'name', 'Royal College of Midwives'),
(49357, 41550, 'en', 'name', 'Supreme Court of Korea'),
(49358, 41550, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ėŒ€ė²•ģ›'),
(49359, 41551, 'en', 'name', 'RenewableUK'),
(49360, 41552, 'en', 'name', 'Tennessee College of Applied Technology - Shelbyville'),
(49361, 41553, 'en', 'name', 'Central Soil and Materials Research Station'),
(49362, 41554, 'en', 'name', 'Stanly Community College'),
(49363, 41555, 'en', 'name', 'Institute of Economic System and Management'),
(49364, 41555, 'zh', 'name', 'å›½å®¶å‘å±•å’Œę”¹é©å§”å‘˜ä¼šē»ęµŽä½“åˆ¶äøŽē®”ē†ē ”ē©¶ę‰€'),
(49365, 41556, 'en', 'name', 'ActionAid'),
(49366, 41557, 'en', 'name', 'Community College of Beaver County'),
(49367, 41558, 'en', 'name', 'Volunteer State Community College'),
(49368, 41559, 'de', 'name', 'Schweizerische Unfallversicherungsanstalt'),
(49369, 41559, 'fr', 'name', 'Caisse nationale suisse d''assurance en cas d''accidents'),
(49370, 41559, 'it', 'name', 'Istituto nazionale svizzero di assicurazione contro gli infortuni'),
(49371, 41559, 'no_lang_code', 'name', 'Suva'),
(49372, 41560, 'no_lang_code', 'name', 'Cedar Fair (United States)'),
(49373, 41561, 'en', 'name', 'Land Transport Authority'),
(49374, 41561, 'ms', 'name', 'Penguasa Pengangkutan Darat'),
(49375, 41561, 'ta', 'name', 'ą®Øą®æą®²ą®ŖąÆ ą®ŖąÆ‹ą®•ąÆą®•ąÆą®µą®°ą®¤ąÆą®¤ąÆ ą®µą®¾ą®°ą®æą®Æą®®ąÆ'),
(49376, 41561, 'zh', 'name', 'é™†č·Æäŗ¤é€šē®”ē†å±€'),
(49377, 41562, 'en', 'name', 'Scientific Centre for Aerospace Research of the Earth'),
(49378, 41562, 'uk', 'name', 'ŠŠŠ£Š§ŠŠ«Š™ Š¦Š•ŠŠ¢Š  ŠŠ­Š ŠžŠšŠžŠ”ŠœŠ˜Š§Š•Š”ŠšŠ˜Š„ Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠŠ˜Š™ Š—Š•ŠœŠ›Š˜ Š˜Š-ТА Š“Š•ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š„ ŠŠŠ£Šš ŠŠŠ Š£ŠšŠ ŠŠ˜ŠŠ«, ГУ'),
(49379, 41563, 'sv', 'name', 'TransportForsK'),
(49380, 41564, 'en', 'name', 'International University of Rabat'),
(49381, 41564, 'fr', 'name', 'UniversitƩ Internationale de Rabat'),
(49382, 41565, 'fr', 'name', 'Centre Africain de Recherches sur Bananiers et Plantains, Centre RƩgional de Recherches sur Bananiers et Plantains'),
(49383, 41566, 'en', 'name', 'National Fisheries Research and Development Institute'),
(49384, 41567, 'en', 'name', 'Kenyan Medical Women''s Association'),
(49385, 41568, 'en', 'name', 'Great Bay Stewards'),
(49386, 41569, 'en', 'name', 'Health Insurance Review and Assessment Service'),
(49387, 41569, 'ko', 'name', '걓강 ė³“ķ—˜ 심사 ķ‰ź°€ģ›'),
(49388, 41570, 'en', 'name', 'SA Health'),
(49389, 41571, 'no_lang_code', 'name', 'Suncon Engineers (India)'),
(49390, 41572, 'en', 'name', 'State School of Higher Education in Oświęcim'),
(49391, 41572, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. rotmistrza Witolda Pileckiego w Oświęcimiu'),
(49392, 41573, 'en', 'name', 'Ministry of Health and Social Services'),
(49393, 41574, 'en', 'name', 'Military Technical Academy'),
(49394, 41574, 'ro', 'name', 'Academia Tehnică Militară'),
(49395, 41575, 'en', 'name', 'Antelope Valley College'),
(49396, 41576, 'no_lang_code', 'name', 'Glasbau Hahn (Germany)'),
(49397, 41577, 'no_lang_code', 'name', 'Gentronix (United Kingdom)'),
(49398, 41578, 'en', 'name', 'Department of Social Sciences'),
(49399, 41579, 'en', 'name', 'Maysville Community and Technical College'),
(49400, 41580, 'fr', 'name', 'RĆ©seau des Plateformess d’ONG d’Afrique de l’Ouest et du Centre'),
(49401, 41581, 'en', 'name', 'North Lake College'),
(49402, 41582, 'en', 'name', 'Oregon College of Art and Craft'),
(49403, 41583, 'no_lang_code', 'name', 'Larsen & Toubro (India)'),
(49404, 41584, 'pt', 'name', 'Agrupamento de Escolas Nuno Ɓlvares'),
(49405, 41585, 'sl', 'name', 'Å olski Center Å entjur'),
(49406, 41586, 'en', 'name', 'Center for Health Design'),
(49407, 41587, 'en', 'name', 'Minnesota Housing Finance Agency'),
(49408, 41588, 'de', 'name', 'Hochschule für den öffentlichen Dienst in Bayern'),
(49409, 41589, 'en', 'name', 'Uttarakhand Jal Sansthan'),
(49410, 41590, 'en', 'name', 'National Tainan Institute of Nursing'),
(49411, 41590, 'zh', 'name', 'åœ‹ē«‹č‡ŗå—č­·ē†å°ˆē§‘å­øę ”'),
(49412, 41591, 'en', 'name', 'Warsaw Academy of Computer Science, Management and Administration'),
(49413, 41591, 'pl', 'name', 'Wyższa Szkoła Informatyki, Zarządzania i Administracji'),
(49414, 41592, 'en', 'name', 'National Postgraduate Medical College of Nigeria'),
(49415, 41593, 'nl', 'name', 'Vereniging Achmea'),
(49416, 41594, 'no_lang_code', 'name', 'Arthrex (United States)'),
(49417, 41595, 'no_lang_code', 'name', 'Cyprotex (United States)'),
(49418, 41596, 'en', 'name', 'MRC Mitochondrial Biology Unit'),
(49419, 41597, 'en', 'name', 'Pacific Dental College and Hospital'),
(49420, 41598, 'en', 'name', 'Agincourt Health and Socio-Demographic Surveillance System'),
(49421, 41599, 'en', 'name', 'Tanzania Red Cross Society'),
(49422, 41600, 'en', 'name', 'South Mountain Community College'),
(49423, 41601, 'en', 'name', 'Solano Community College'),
(49424, 41602, 'en', 'name', 'Uintah Basin Applied Technology College'),
(49425, 41603, 'en', 'name', 'Shrewsbury College'),
(49426, 41604, 'en', 'name', 'Ethiopian Society of Obstetricians and Gynecologists'),
(49427, 41605, 'no_lang_code', 'name', 'Panos Institute Southern Africa'),
(49428, 41606, 'de', 'name', 'Staatliche Hochschule für Musik und Darstellende Kunst Mannheim'),
(49429, 41606, 'en', 'name', 'Mannheim University of Music and Performing Arts'),
(49430, 41607, 'en', 'name', 'Royal Norwegian Embassy in London'),
(49431, 41608, 'en', 'name', 'Tartu Academy of Theology'),
(49432, 41608, 'et', 'name', 'Tartu Teoloogia Akadeemia'),
(49433, 41609, 'no_lang_code', 'name', 'WAM Technology (South Africa)'),
(49434, 41610, 'en', 'name', 'Polytechnic Lavoslav Ružička Vukovar'),
(49435, 41610, 'hr', 'name', 'VeleučiliŔte Lavoslav Ružička u Vukovaru'),
(49436, 41611, 'en', 'name', 'Atomic Minerals Directorate for Exploration and Research'),
(49437, 41611, 'hi', 'name', 'ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤–ą¤Øą¤æą¤œ ą¤…ą¤Øą„ą¤µą„‡ą¤·ą¤£ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(49438, 41612, 'en', 'name', 'V.A. Negovsky Scientific Research Institute of General Reanimatology'),
(49439, 41612, 'ru', 'name', 'ŠŠ˜Š˜ общей реаниматологии Š ŠŠœŠ'),
(49440, 41613, 'no_lang_code', 'name', 'Munin Corporation (United States)'),
(49441, 41614, 'en', 'name', 'Pueblo Community College'),
(49442, 41615, 'en', 'name', 'Central Clinical Hospital and Polyclinic'),
(49443, 41615, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° c поликлиникой Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Гелами ŠŸŃ€ŠµŠ·ŠøŠ“ента Российской ФеГерации'),
(49444, 41616, 'pl', 'name', 'Wyższa Szkoła Przedsiębiorczości i Marketingu w Chrzanowie'),
(49445, 41617, 'fr', 'name', 'Conseil FranƧais de l''Ɖnergie'),
(49446, 41618, 'de', 'name', 'Private Hochschule Gƶttingen'),
(49447, 41618, 'en', 'name', 'PFH Private University of Applied Sciences'),
(49448, 41619, 'no_lang_code', 'name', 'Macy''s (United States)'),
(49449, 41620, 'en', 'name', 'Institute of Astronomy'),
(49450, 41620, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ астрономии Š ŠŠ'),
(49451, 41621, 'fr', 'name', 'Groupe Sociétés, Religions, Laïcités'),
(49452, 41622, 'en', 'name', 'Aiken Technical College'),
(49453, 41623, 'en', 'name', 'Ministry of Environment Science Technology and Innovation'),
(49454, 41624, 'en', 'name', 'West Shore Community College'),
(49455, 41625, 'en', 'name', 'Rowan-Cabarrus Community College, Rowan–Cabarrus Community College'),
(49456, 41626, 'en', 'name', 'Beykoz Vocational School of Logistics'),
(49457, 41626, 'tr', 'name', 'Beykoz Lojistik Meslek Yüksekokulu'),
(49458, 41627, 'en', 'name', 'Academy of State Administration of Grain'),
(49459, 41627, 'zh', 'name', 'å›½å®¶ē²®é£Ÿå±€ē§‘å­¦ē ”ē©¶é™¢'),
(49460, 41628, 'en', 'name', 'University of Iowa Foundation'),
(49461, 41629, 'en', 'name', 'Oil and Gas Research Institute'),
(49462, 41629, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем нефти Šø газа Российской акаГемии наук'),
(49463, 41630, 'de', 'name', 'Fachhochschule für Management & Kommunikation'),
(49464, 41631, 'de', 'name', 'Senckenberg Forschungsinstitut und Naturmuseum Frankfurt/M'),
(49465, 41631, 'en', 'name', 'Senckenberg Research Institute and Natural History Museum Frankfurt/M'),
(49466, 41632, 'no_lang_code', 'name', 'Aurobindo Pharma (India)'),
(49467, 41633, 'en', 'name', 'International School of Law and Business'),
(49468, 41633, 'lt', 'name', 'Tarptautinė teisės ir verslo aukÅ”toji mokykla'),
(49469, 41634, 'no_lang_code', 'name', 'Smartesting (France)'),
(49470, 41635, 'no_lang_code', 'name', 'Tata Technologies (India)'),
(49471, 41636, 'no_lang_code', 'name', 'JPMorgan Chase & Co (United States)'),
(49472, 41637, 'no_lang_code', 'name', 'Cognizant (India)'),
(49473, 41638, 'no_lang_code', 'name', 'CoreQuest (Switzerland)'),
(49474, 41639, 'en', 'name', 'Central Ground Water Board'),
(49475, 41640, 'en', 'name', 'City Vision University'),
(49476, 41641, 'en', 'name', 'Varna University of Management'),
(49477, 41642, 'en', 'name', 'International Balzan Prize Foundation'),
(49478, 41642, 'it', 'name', 'Fondazione Internazionale Balzan'),
(49479, 41643, 'en', 'name', 'Kings Health Partners'),
(49480, 41644, 'en', 'name', 'Fairview School District'),
(49481, 41645, 'no_lang_code', 'name', 'Bupa'),
(49482, 41646, 'en', 'name', 'Panos Eastern Africa'),
(49483, 41647, 'en', 'name', 'Zanjan University of Medical Sciences'),
(49484, 41647, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی زنجان'),
(49485, 41648, 'en', 'name', 'Naples Academy of Fine Arts'),
(49486, 41648, 'it', 'name', 'Accademia di Belle Arti di Napoli'),
(49487, 41649, 'en', 'name', 'Lagos State Polytechnic'),
(49488, 41650, 'en', 'name', 'V.I.Shumakov Federal Research Center of Transplantology and Artificial Organs'),
(49489, 41650, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр трансплантологии Šø ŠøŃŠŗŃƒŃŃŃ‚Š²ŠµŠ½Š½Ń‹Ń… органов имени акаГемика Š’.И. Шумакова'),
(49490, 41651, 'en', 'name', 'CIAM Public Health Research and Development Centre'),
(49491, 41652, 'no_lang_code', 'name', 'Springer Nature (United States)'),
(49492, 41653, 'it', 'name', 'Conservatorio di Musica Umberto Giordano'),
(49493, 41654, 'en', 'name', 'Australian Federal Police'),
(49494, 41655, 'no_lang_code', 'name', 'Base4 Innovation (United Kingdom)'),
(49495, 41656, 'en', 'name', 'Department of Virology'),
(49496, 41657, 'en', 'name', 'Civil Aviation Flight University of China'),
(49497, 41657, 'zh', 'name', 'äø­å›½ę°‘ē”ØčˆŖē©ŗé£žč”Œå­¦é™¢'),
(49498, 41658, 'en', 'name', 'Defense Information Systems Agency'),
(49499, 41659, 'en', 'name', 'Tanzania Traditional Energy Development and Environment Organisation'),
(49500, 41660, 'en', 'name', 'International Society for the Study of the Lumbar Spine'),
(49501, 41661, 'en', 'name', 'Tallinn Health Care College'),
(49502, 41661, 'et', 'name', 'Tallinna Tervishoiu Korgkool'),
(49503, 41662, 'en', 'name', 'United States Institute for Theatre Technology'),
(49504, 41663, 'en', 'name', 'Paris School of Business'),
(49505, 41664, 'en', 'name', 'BridgeValley Community and Technical College'),
(49506, 41665, 'no_lang_code', 'name', 'Air Quality Consultants (United Kingdom)'),
(49507, 41666, 'en', 'name', 'Welding Research Council'),
(49508, 41667, 'en', 'name', 'Institute of Ecological Problems of the North'),
(49509, 41667, 'ru', 'name', 'Š£Ń€Šž Š ŠŠ. Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… проблем Девера Š£Ń€Šž Š ŠŠ в соответствии с приказом Š¤ŠŠŠž'),
(49510, 41668, 'en', 'name', 'Montana Bible College'),
(49511, 41669, 'en', 'name', 'Darton State College'),
(49512, 41670, 'en', 'name', 'Academy of Fine Arts of Florence'),
(49513, 41670, 'it', 'name', 'Accademia di Belle Arti di Firenze'),
(49514, 41671, 'en', 'name', 'National Archives of Australia'),
(49515, 41672, 'en', 'name', 'Academy of Business and Health Sciences in Lodz'),
(49516, 41672, 'pl', 'name', 'Wyższa Szkoła Biznesu i Nauk o Zdrowiu'),
(49517, 41673, 'no_lang_code', 'name', 'NovaLead Pharma (India)'),
(49518, 41674, 'en', 'name', 'Chetham''s School of Music'),
(49519, 41675, 'en', 'name', 'Lower Columbia College'),
(49520, 41676, 'no_lang_code', 'name', 'Medlog Systems (United States)'),
(49521, 41677, 'en', 'name', 'Horizon University'),
(49522, 41678, 'en', 'name', 'Institute of Applied Technology'),
(49523, 41678, 'zh', 'name', 'åŗ”ē”ØęŠ€ęœÆē ”ē©¶ę‰€'),
(49524, 41679, 'no_lang_code', 'name', 'Mahle (Portugal)'),
(49525, 41680, 'en', 'name', 'National Training Service'),
(49526, 41680, 'es', 'name', 'Servicio Nacional de Aprendizaje'),
(49527, 41681, 'de', 'name', 'Kulturwissenschaftliches Institut Essen'),
(49528, 41681, 'en', 'name', 'Institute for Advanced Study in the Humanities Essen'),
(49529, 41682, 'en', 'name', 'SKANS School of Accountancy'),
(49530, 41683, 'en', 'name', 'Chinese Academy of Cultural Heritage'),
(49531, 41683, 'zh', 'name', 'äø­å›½ę–‡åŒ–é—äŗ§ē ”ē©¶é™¢'),
(49532, 41684, 'fr', 'name', 'Ɖcole Nationale ForestiĆØre d''IngĆ©nieurs'),
(49533, 41685, 'en', 'name', 'Winston Churchill Memorial Trust'),
(49534, 41686, 'en', 'name', 'Academy of Broadcasting Science'),
(49535, 41686, 'zh', 'name', '国家广播电影电视总局广播科学研究院'),
(49536, 41687, 'en', 'name', 'Association for Stimulating Know How'),
(49537, 41688, 'en', 'name', 'Jamestown Business College'),
(49538, 41689, 'en', 'name', 'Big Bend Community College'),
(49539, 41690, 'en', 'name', 'Institute of Computational Mathematics and Mathematical Geophysics'),
(49540, 41690, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ математики Šø математической геофизики Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(49541, 41691, 'no_lang_code', 'name', 'Hiep Phuoc Power (Vietnam)'),
(49542, 41692, 'en', 'name', 'Ministry of Health and Social Affairs'),
(49543, 41692, 'sv', 'name', 'Socialdepartementet'),
(49544, 41693, 'en', 'name', 'Institute of Petroleum Chemistry'),
(49545, 41693, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Єимии ŠŠµŃ„ти До Š ŠŠ'),
(49546, 41694, 'en', 'name', 'Royal Conservatory of LiĆØge'),
(49547, 41694, 'fr', 'name', 'Conservatoire Royal de LiĆØge'),
(49548, 41694, 'nl', 'name', 'Koninklijk Conservatorium Luik'),
(49549, 41695, 'en', 'name', 'North Kent College'),
(49550, 41696, 'en', 'name', 'Overseas Koreans Foundation'),
(49551, 41697, 'es', 'name', 'Hospital Universitario Araba'),
(49552, 41698, 'en', 'name', 'Catholic Development Office'),
(49553, 41699, 'no_lang_code', 'name', 'Thieme Medical Publishers (Germany)'),
(49554, 41700, 'no_lang_code', 'name', 'Companhia EnergƩtica de Pernambuco'),
(49555, 41701, 'en', 'name', 'Evelyn Hone College'),
(49556, 41702, 'fr', 'name', 'Commune de Bobo-Dioulasso'),
(49557, 41703, 'en', 'name', 'Mississippi Delta Community College'),
(49558, 41704, 'en', 'name', 'The Arab Institute of Navigation'),
(49559, 41705, 'en', 'name', 'West Virginia Space Grant Consortium'),
(49560, 41706, 'en', 'name', 'Mozambique National Institute of Meteorology'),
(49561, 41706, 'pt', 'name', 'Instituto Nacional de Meteorologia de MoƧambique'),
(49562, 41707, 'en', 'name', 'Faculty of Public Health'),
(49563, 41708, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia de CiĆŖncia Animal'),
(49564, 41709, 'no_lang_code', 'name', 'Stanley Black & Decker (United States)'),
(49565, 41710, 'en', 'name', 'Research for Equity And Community Health Trust'),
(49566, 41711, 'de', 'name', 'Fraunhofer-Institut für Optronik, Systemtechnik und Bildauswertung'),
(49567, 41711, 'en', 'name', 'Fraunhofer Institute of Optronics, System Technologies and Image Exploitation'),
(49568, 41712, 'en', 'name', 'Victoria College'),
(49569, 41713, 'en', 'name', 'Malawi Blood Transfusion Service'),
(49570, 41714, 'en', 'name', 'Moreno Valley College'),
(49571, 41715, 'en', 'name', 'Highlands and Islands Enterprise'),
(49572, 41716, 'fr', 'name', 'AcadƩmie Royale des Beaux-Arts'),
(49573, 41716, 'nl', 'name', 'Koninklijke Academie voor Schone Kunsten van Brussel'),
(49574, 41717, 'no_lang_code', 'name', 'Ecolab (United States)'),
(49575, 41718, 'no_lang_code', 'name', 'Effigis (Canada)'),
(49576, 41719, 'en', 'name', 'Georgia Christian University'),
(49577, 41720, 'en', 'name', 'Birla Institute of Scientific Research'),
(49578, 41721, 'no_lang_code', 'name', 'Agtes (Poland)'),
(49579, 41722, 'en', 'name', 'Admas University'),
(49580, 41723, 'en', 'name', 'RCVS Knowledge'),
(49581, 41724, 'en', 'name', 'Tunxis Community College'),
(49582, 41725, 'en', 'name', 'Christian Health Association of Kenya'),
(49583, 41726, 'pt', 'name', 'Administração Regional de Saúde de Lisboa e Vale do Tejo'),
(49584, 41727, 'no_lang_code', 'name', 'Evolva (India)'),
(49585, 41728, 'no_lang_code', 'name', 'North South Consultants Exchange (Egypt)'),
(49586, 41729, 'no_lang_code', 'name', 'ERAS Labo (France)'),
(49587, 41730, 'en', 'name', 'Kobe Women''s Junior College'),
(49588, 41730, 'ja', 'name', 'ē„žęˆøå„³å­ēŸ­ęœŸå¤§å­¦'),
(49589, 41731, 'en', 'name', 'Vilnius College of Technologies and Design'),
(49590, 41731, 'lt', 'name', 'Vilniaus technologijų ir dizaino kolegija'),
(49591, 41732, 'en', 'name', 'Southern Regional Technical College'),
(49592, 41733, 'no_lang_code', 'name', 'Ernst & Young (United Kingdom)'),
(49593, 41734, 'fr', 'name', 'Laboratoire National d''Appui au DƩveloppement Agricole'),
(49594, 41735, 'en', 'name', 'United Nations Human Settlements Programme'),
(49595, 41736, 'en', 'name', 'Conservatory of Vicenza'),
(49596, 41736, 'it', 'name', 'Conservatorio Di Musica di Vicenza'),
(49597, 41737, 'en', 'name', 'Chemistry and Chemical Engineering Research Center of Iran'),
(49598, 41738, 'en', 'name', 'Rabbinical College of America'),
(49599, 41739, 'de', 'name', 'General Direktion-Wirtschaft und Finanzen'),
(49600, 41739, 'en', 'name', 'Directorate-General for Economic and Financial Affairs'),
(49601, 41739, 'fr', 'name', 'Direction Générale-Affaires économiques et financières'),
(49602, 41740, 'en', 'name', 'National Institute of Technology Meghalaya'),
(49603, 41740, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą„‡ą¤˜ą¤¾ą¤²ą¤Æ'),
(49604, 41741, 'ar', 'name', 'Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł†Ł‡ŁˆŲ¶ بالبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(49605, 41741, 'en', 'name', 'National Agency for Promotion of Research and Innovation'),
(49606, 41741, 'fr', 'name', 'Agence Nationale de la Promotion de la Recherche Scientifique'),
(49607, 41742, 'en', 'name', 'Cairo Institute for Human Rights Studies'),
(49608, 41743, 'en', 'name', 'Karen Hospital'),
(49609, 41744, 'no_lang_code', 'name', 'Caesars Entertainment (United States)'),
(49610, 41745, 'en', 'name', 'Oklahoma Space Grant Consortium'),
(49611, 41746, 'en', 'name', 'American Institute for Economic Research'),
(49612, 41747, 'en', 'name', 'Arkansas State University Mountain Home'),
(49613, 41748, 'en', 'name', 'Department of Physiological Sciences'),
(49614, 41749, 'en', 'name', 'Christian Health Association of Nigeria'),
(49615, 41750, 'en', 'name', 'Vilnius Business College'),
(49616, 41750, 'lt', 'name', 'Vilniaus Verslo Kolegija'),
(49617, 41751, 'no_lang_code', 'name', 'SGC Pharma (United States)'),
(49618, 41752, 'en', 'name', 'Tea Research Foundation of Central Africa'),
(49619, 41753, 'en', 'name', 'Elizabethtown Community and Technical College'),
(49620, 41754, 'en', 'name', 'Department of Global Issues and International Relations'),
(49621, 41755, 'en', 'name', 'Freedom House'),
(49622, 41756, 'de', 'name', 'Musikhochschule Lübeck'),
(49623, 41756, 'en', 'name', 'Lübeck Academy of Music'),
(49624, 41757, 'no_lang_code', 'name', 'Caplin Point Laboratories (India)'),
(49625, 41758, 'de', 'name', 'Bremerhavener Gesellschaft für Investitionsförderung und Stadtentwicklung mbH'),
(49626, 41758, 'no_lang_code', 'name', 'Bremerhaven Economic Development (Germany)'),
(49627, 41759, 'en', 'name', 'National Pension Service'),
(49628, 41759, 'ko', 'name', 'źµ­ėÆ¼ģ—°źøˆź³µė‹Ø'),
(49629, 41760, 'iu', 'name', 'Nunavut Sivuniksavut'),
(49630, 41761, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Saint-Ɖtienne'),
(49631, 41762, 'en', 'name', 'Institute of Biochemistry and Physiology of Plants and Microorganisms'),
(49632, 41762, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø физиологии растений Šø микроорганизмов Российской акаГемии наук'),
(49633, 41763, 'en', 'name', 'National Centre for Medium Range Weather Forecasting'),
(49634, 41763, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ मधयम अवधि ą¤®ą„Œą¤øą¤® ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤Øą„ą¤®ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦'),
(49635, 41764, 'en', 'name', 'Panos Institute West Africa'),
(49636, 41764, 'fr', 'name', 'Institut Panos Afrique de l''Ouest'),
(49637, 41765, 'en', 'name', 'Gandhi Medical College & Hospital'),
(49638, 41765, 'te', 'name', 'గాంధీ ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(49639, 41766, 'no_lang_code', 'name', 'Kiadis Pharma (Netherlands)'),
(49640, 41767, 'fr', 'name', 'Ɖcole SupĆ©rieure des Professions ImmobiliĆØres'),
(49641, 41768, 'en', 'name', 'National Defence Academy'),
(49642, 41768, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤•ą¤¾ą¤¦ą¤®ą„€'),
(49643, 41769, 'en', 'name', 'State Corporation Commission'),
(49644, 41770, 'en', 'name', 'Western Integrated Pest Management Center'),
(49645, 41771, 'de', 'name', 'Staats- und Stadtbibliothek Augsburg'),
(49646, 41772, 'pt', 'name', 'Fundação de Apoio à Pesquisa do Estado da Paraíba'),
(49647, 41773, 'en', 'name', 'European School of Molecular Medicine'),
(49648, 41774, 'en', 'name', 'Pennsylvania Space Grant Consortium'),
(49649, 41775, 'en', 'name', 'Association of Chartered Certified Accountants'),
(49650, 41776, 'no_lang_code', 'name', 'Alternative Energy Systems (Tunisia)'),
(49651, 41777, 'en', 'name', 'Madagascar Biodiversity Partnership'),
(49652, 41778, 'en', 'name', 'Shanghai Library'),
(49653, 41778, 'zh', 'name', 'äøŠęµ·åœ–ę›øé¤Ø'),
(49654, 41779, 'en', 'name', 'Central Scientific Research Institute of Traumatology and Orthopedics'),
(49655, 41779, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Травматологии Šø ŠžŃ€Ń‚Š¾ŠæŠµŠ“ŠøŠø имени Š.Š. ŠŸŃ€ŠøŠ¾Ń€Š¾Š²Š°'),
(49656, 41780, 'no_lang_code', 'name', 'MASA Group (France)'),
(49657, 41781, 'en', 'name', 'King''s College - North Carolina'),
(49658, 41782, 'en', 'name', 'Collegium Varsoviense'),
(49659, 41783, 'en', 'name', 'Ministry of Lands and Rural Resettlement'),
(49660, 41784, 'en', 'name', 'Design and Art Direction'),
(49661, 41785, 'no_lang_code', 'name', 'Groupe Up (France)'),
(49662, 41786, 'no_lang_code', 'name', 'Companhia de Eletricidade do Estado da Bahia (Brazil)'),
(49663, 41787, 'fr', 'name', 'Laboratoire de Physique Corpusculaire de Caen'),
(49664, 41788, 'en', 'name', 'Morristown Beard School, Morristown-Beard School'),
(49665, 41789, 'en', 'name', 'Guangxi Zhuang Autonomous Region Health and Family Planning'),
(49666, 41789, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(49667, 41790, 'en', 'name', 'Paul & Daisy Soros Fellowships for New Americans'),
(49668, 41791, 'en', 'name', 'Practical Action'),
(49669, 41792, 'en', 'name', 'American College of Traditional Chinese Medicine'),
(49670, 41793, 'en', 'name', 'Association of Corporate Treasurers'),
(49671, 41794, 'en', 'name', 'Academy of Sciences Malaysia'),
(49672, 41794, 'ms', 'name', 'Akademi Sains Malaysia'),
(49673, 41795, 'en', 'name', 'Moscow Regional Scientific Research Clinical Institute. MF Vladimirsky'),
(49674, 41796, 'en', 'name', 'LVCT Health'),
(49675, 41797, 'en', 'name', 'American Partnership for Eosinophilic Disorders'),
(49676, 41798, 'en', 'name', 'Center for National Health Development in Ethiopia'),
(49677, 41799, 'en', 'name', 'Immanuel Lutheran College'),
(49678, 41800, 'no_lang_code', 'name', 'Unilever (India)'),
(49679, 41801, 'en', 'name', 'International Institute for Strategic Studies'),
(49680, 41802, 'en', 'name', 'Skagit Valley College'),
(49681, 41803, 'en', 'name', 'Polytechnic University of Puerto Rico Miami'),
(49682, 41804, 'en', 'name', 'International Association for the Study of Lung Cancer'),
(49683, 41805, 'en', 'name', 'Federal Scientific Center of the East Asia Terrestrial Biodiversity FEB RAS'),
(49684, 41805, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Биолого-почвенный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(49685, 41806, 'fr', 'name', 'Institut Africain de Gestion Urbaine'),
(49686, 41807, 'pt', 'name', 'Municipal de Ɠbidos'),
(49687, 41808, 'no_lang_code', 'name', 'Hovione (Portugal)'),
(49688, 41809, 'en', 'name', 'Hangzhou Academy of Agricultural Sciences'),
(49689, 41809, 'zh', 'name', 'ę­å·žåø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(49690, 41810, 'en', 'name', 'Association for Intelligent Transport Systems'),
(49691, 41811, 'no_lang_code', 'name', 'Land Use Consultants (United Kingdom)'),
(49692, 41812, 'en', 'name', 'Ministry of Livestock, Fisheries and Animal Industries'),
(49693, 41812, 'fr', 'name', 'MinistĆØre de l''Elevage, des PĆŖches et des Industries Animales'),
(49694, 41813, 'en', 'name', 'National Office for Technology Acquisition and Promotion'),
(49695, 41814, 'en', 'name', 'Chinese Academy of Civil Aviation Science and Technology'),
(49696, 41814, 'zh', 'name', 'äø­å›½ę°‘čˆŖē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(49697, 41815, 'sl', 'name', 'ViŔja Strokovna Šola za Gostinstvo in Turizem Maribor'),
(49698, 41816, 'no_lang_code', 'name', 'Zoomlion Domestic Services (Ghana)'),
(49699, 41817, 'de', 'name', 'EuropƤische Fernhochschule Hamburg'),
(49700, 41817, 'en', 'name', 'European Fernhochschule Hamburg'),
(49701, 41818, 'pt', 'name', 'Centro Hospitalar do TĆ¢mega e Sousa'),
(49702, 41819, 'en', 'name', 'Cavendish University Zambia'),
(49703, 41820, 'en', 'name', 'Gulf Coast State College'),
(49704, 41821, 'pt', 'name', 'Faculdades Integradas AparĆ­cio Carvalho'),
(49705, 41822, 'en', 'name', 'Tibet Academy of Agricultural and Animal Husbandry Sciences'),
(49706, 41822, 'zh', 'name', 'č„æč—å†œē‰§ē§‘å­¦é™¢'),
(49707, 41823, 'hu', 'name', 'BM Központi KórhÔz'),
(49708, 41824, 'en', 'name', 'Coffeyville Community College'),
(49709, 41825, 'no_lang_code', 'name', 'For farmers (United Kingdom)'),
(49710, 41826, 'en', 'name', 'Polytechnic of Međimurje in Čakovec'),
(49711, 41826, 'hr', 'name', 'Međimursko VeleučiliÅ”te u Čakovcu'),
(49712, 41827, 'en', 'name', 'Central Sheep and Wool Research Institute'),
(49713, 41827, 'hi', 'name', 'ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤­ą„‡ą¤”ą¤¼ और ऊन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(49714, 41828, 'de', 'name', 'UniversitƤtsklinikum Knappschaftskrankenhaus Bochum'),
(49715, 41829, 'en', 'name', 'Yamal Multidisciplinary College'),
(49716, 41829, 'ru', 'name', 'ŠÆŠœŠŠ›Š¬Š”ŠšŠ˜Š™ ŠœŠŠžŠ“ŠžŠŸŠ ŠžŠ¤Š˜Š›Š¬ŠŠ«Š™ ŠšŠžŠ›Š›Š•Š”Š–'),
(49717, 41830, 'en', 'name', 'Shangrao Normal University'),
(49718, 41830, 'zh', 'name', 'äøŠé„¶åøˆčŒƒå­¦é™¢'),
(49719, 41831, 'no_lang_code', 'name', 'VirtualDive (France)'),
(49720, 41832, 'en', 'name', 'Duchenne Research Fund'),
(49721, 41833, 'en', 'name', 'Helpmann Academy'),
(49722, 41834, 'en', 'name', 'Graduate Women International'),
(49723, 41835, 'en', 'name', 'Miami Ad School'),
(49724, 41836, 'en', 'name', 'Taiwan Food and Drug Administration'),
(49725, 41837, 'en', 'name', 'Family Aids Caring Trust'),
(49726, 41838, 'no_lang_code', 'name', 'SNPedia'),
(49727, 41839, 'en', 'name', 'Ministry of Education and Youth Policy of the Republic of Komi'),
(49728, 41839, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Республики Коми'),
(49729, 41840, 'en', 'name', 'Institute for Educational Development and Training'),
(49730, 41840, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø ŠæŠ¾Š²Ń‹ŃˆŠµŠ½ŠøŃ квалификации'),
(49731, 41841, 'en', 'name', 'Kasisi Agricultural Training Centre'),
(49732, 41842, 'no_lang_code', 'name', 'Amway (United States)'),
(49733, 41843, 'pl', 'name', 'Wyższa Szkoła Biznesu w Gorzowie Wielkopolskim'),
(49734, 41844, 'en', 'name', 'Tanzania Natural Resource Forum'),
(49735, 41845, 'en', 'name', 'Walters State Community College'),
(49736, 41846, 'da', 'name', 'Odense Kommune'),
(49737, 41846, 'en', 'name', 'Odense Municipality'),
(49738, 41847, 'en', 'name', 'Division of Institution and Award Support'),
(49739, 41848, 'en', 'name', 'Network of AIDS Researchers of Eastern and Southern Africa'),
(49740, 41849, 'en', 'name', 'Cameroon Baptist Convention Health Services'),
(49741, 41850, 'en', 'name', 'Energy Services Regulatory Authority'),
(49742, 41850, 'pt', 'name', 'Entidade Reguladora dos ServiƧos EnergƩticos'),
(49743, 41851, 'en', 'name', 'India International Centre'),
(49744, 41852, 'en', 'name', 'United World College of South East Asia'),
(49745, 41852, 'zh', 'name', 'ę±å—äŗžčÆåˆäø–ē•Œę›øé™¢'),
(49746, 41853, 'de', 'name', 'Museumsstiftung Lüneburg'),
(49747, 41853, 'en', 'name', 'Museum Foundation Lüneburg'),
(49748, 41854, 'no_lang_code', 'name', 'WestRock (United States)'),
(49749, 41855, 'no_lang_code', 'name', 'Eurofilet (Morocco)'),
(49750, 41856, 'en', 'name', 'Geographic Institute AgustĆ­n Codazzi'),
(49751, 41856, 'es', 'name', 'Instituto GeogrƔfico Agustƭn Codazzi'),
(49752, 41857, 'no_lang_code', 'name', 'B & B'),
(49753, 41858, 'en', 'name', 'Center of Arab Woman for Training and Research'),
(49754, 41859, 'no_lang_code', 'name', 'International Consultants (Egypt)'),
(49755, 41860, 'en', 'name', 'Karkonosze College in Jelenia Góra'),
(49756, 41860, 'pl', 'name', 'Karkonoska Państwowa Szkoła Wyższa'),
(49757, 41861, 'en', 'name', 'Institute of Steppe'),
(49758, 41861, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ степи Š£Ń€Šž Š ŠŠ'),
(49759, 41862, 'ja', 'name', '三育学院大学'),
(49760, 41862, 'no_lang_code', 'name', 'Saniku Gakuin College'),
(49761, 41863, 'en', 'name', 'China Academy of Urban Planning and Design'),
(49762, 41863, 'zh', 'name', 'äø­å›½åŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(49763, 41864, 'en', 'name', 'Islamic Azad University Boroujerd Branch'),
(49764, 41864, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد بروجرد'),
(49765, 41865, 'no_lang_code', 'name', 'Mecpro Heavy Engineering (India)'),
(49766, 41866, 'en', 'name', 'Project Directorate on Foot and Mouth Disease'),
(49767, 41867, 'en', 'name', 'Udmurt Institute of History, Language and Literature'),
(49768, 41867, 'ru', 'name', 'Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории, ŃŠ·Ń‹ŠŗŠ° Šø Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ Š£Ń€Šž Š ŠŠ'),
(49769, 41868, 'en', 'name', 'Kazan E. K. Zavoisky Physical-Technical Institute'),
(49770, 41868, 'ru', 'name', 'Казанский физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š•. К. Завойского Š ŠŠ'),
(49771, 41869, 'de', 'name', 'Hochschule der Wirtschaft für Management'),
(49772, 41869, 'en', 'name', 'University of Applied Management Studies'),
(49773, 41870, 'no_lang_code', 'name', 'Chronos (France)'),
(49774, 41871, 'en', 'name', 'Subbaiah Medical College'),
(49775, 41872, 'en', 'name', 'Salim Ali Center for Ornithology and Natural History'),
(49776, 41873, 'en', 'name', 'China National Environmental Monitoring Center'),
(49777, 41873, 'zh', 'name', 'äø­å›½ēŽÆå¢ƒē›‘ęµ‹ę€»ē«™'),
(49778, 41874, 'en', 'name', 'Ministry of Children, Community and Social Services'),
(49779, 41874, 'fr', 'name', 'MinistĆØre des Services Sociaux et Communautaires'),
(49780, 41875, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia em Toxinas'),
(49781, 41876, 'en', 'name', 'Central Water and Power Research Station'),
(49782, 41877, 'no_lang_code', 'name', 'Hunan Haili Chemical Industry (China)'),
(49783, 41877, 'zh', 'name', 'ę¹–å—åŒ–å·„ē ”ē©¶é™¢'),
(49784, 41878, 'it', 'name', 'Conservatorio di Musica ''Francesco Venezze'' di Rovigo');
INSERT INTO `ror_settings` VALUES
(49785, 41879, 'en', 'name', 'Central Institute of Agricultural Engineering'),
(49786, 41879, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(49787, 41880, 'de', 'name', 'SRH Hochschule für Gesundheit Gera'),
(49788, 41881, 'en', 'name', 'Hainan Provincial Academy of Agricultural Sciences'),
(49789, 41881, 'zh', 'name', 'ęµ·å—ēœå†œäøšē§‘å­¦é™¢'),
(49790, 41882, 'en', 'name', 'Sterling High School'),
(49791, 41883, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia de Obesidade e Diabetes'),
(49792, 41884, 'de', 'name', 'Generaldirektion Steuern und Zollunion'),
(49793, 41884, 'en', 'name', 'Directorate-General for Taxation and Customs Union'),
(49794, 41884, 'fr', 'name', 'Direction Générale Fiscalité et union douanière'),
(49795, 41885, 'en', 'name', 'Pioneer Pacific College'),
(49796, 41886, 'en', 'name', 'Protecting Families against HIV AIDS'),
(49797, 41887, 'en', 'name', 'Faith Evangelical College & Seminary'),
(49798, 41888, 'en', 'name', 'Bronx High School of Science'),
(49799, 41889, 'en', 'name', 'Nambucca Shire Council'),
(49800, 41890, 'en', 'name', 'Melentiev Energy Systems Institute'),
(49801, 41890, 'ru', 'name', 'ŠœŠµŠ»ŠµŠ½Ń‚ŃŒŠµŠ² Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систем ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŠŗŠø'),
(49802, 41891, 'de', 'name', 'Norddeutsche Hochschule für Rechtspflege'),
(49803, 41892, 'fr', 'name', 'Laboratoire Jean-Alexandre DieudonnƩ'),
(49804, 41893, 'no_lang_code', 'name', 'Economics for the Environment Consultancy (United Kingdom)'),
(49805, 41894, 'en', 'name', 'Lone Star College–Tomball'),
(49806, 41895, 'en', 'name', 'St. Thomas Aquinas College'),
(49807, 41896, 'en', 'name', 'GƁLDU Resource Centre for the Rights of Indigenous Peoples'),
(49808, 41896, 'no', 'name', 'GƔldu-et Kompetansesenter for Urfolks Rettigheter'),
(49809, 41897, 'fr', 'name', 'Ɖcole Biblique et ArchĆ©ologique FranƧaise de JĆ©rusalem'),
(49810, 41898, 'en', 'name', 'Regional Secretariat for the Sea, Science and Technology'),
(49811, 41898, 'pt', 'name', 'SecretÔrio Regional do Mar, Ciência e Tecnologia'),
(49812, 41899, 'fr', 'name', 'Haute Ɖcole Francisco Ferrer'),
(49813, 41900, 'fr', 'name', 'Institut Polytechnique Saint-Louis'),
(49814, 41901, 'en', 'name', 'National Institute of Food and Drug Safety Evaluation'),
(49815, 41902, 'no_lang_code', 'name', 'Embraco (Brazil)'),
(49816, 41903, 'en', 'name', 'Scientific Center of Family Health Problems and Human Reproduction'),
(49817, 41904, 'en', 'name', 'African Institute of Biomedical Science and Technology'),
(49818, 41905, 'no_lang_code', 'name', 'Pinsent Masons (United Kingdom)'),
(49819, 41906, 'no_lang_code', 'name', 'Henan Communication Science and Technology Research Institute (China)'),
(49820, 41906, 'zh', 'name', 'ę²³å—ēœäŗ¤é€šē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(49821, 41907, 'en', 'name', 'Peerless Hospital & B.K.Roy Research Centre'),
(49822, 41908, 'en', 'name', 'Congressional Hispanic Caucus Institute'),
(49823, 41909, 'no_lang_code', 'name', 'Astonfield (India)'),
(49824, 41910, 'en', 'name', 'Little Priest Tribal College'),
(49825, 41911, 'en', 'name', 'Confederated Tribes of Siletz Indians'),
(49826, 41912, 'en', 'name', 'Kenya Sea Turtle Conservation Committee'),
(49827, 41913, 'en', 'name', 'Wood TobƩ-Coburn School'),
(49828, 41914, 'it', 'name', 'Accademia di Belle Arti di Reggio Calabria'),
(49829, 41915, 'de', 'name', 'Staatliche Hochschule für Musik Trossingen'),
(49830, 41915, 'en', 'name', 'Trossingen University of Music'),
(49831, 41916, 'no_lang_code', 'name', 'Hyundai Motors (United States)'),
(49832, 41917, 'en', 'name', 'Architectural Institute in Prague'),
(49833, 41918, 'it', 'name', 'Conservatorio di Musica San Pietro a Majella'),
(49834, 41919, 'en', 'name', 'Institute of Russian Literature'),
(49835, 41919, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŃƒŃŃŠŗŠ¾Š¹ Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹'),
(49836, 41920, 'en', 'name', 'Tri-State Bible College'),
(49837, 41921, 'no_lang_code', 'name', 'Zimbabwe AIDS Network'),
(49838, 41922, 'no_lang_code', 'name', 'Huntsman (France)'),
(49839, 41923, 'en', 'name', 'NYC Media'),
(49840, 41924, 'en', 'name', 'Los Angeles Harbor College'),
(49841, 41925, 'en', 'name', 'Tanzania National Parks'),
(49842, 41926, 'no_lang_code', 'name', 'Limagrain (France)'),
(49843, 41927, 'en', 'name', 'Santa Barbara Business College'),
(49844, 41928, 'fr', 'name', 'Haute Ɖcole GalilĆ©e'),
(49845, 41929, 'en', 'name', 'Polytechnic University of Puerto Rico Orlando'),
(49846, 41930, 'no_lang_code', 'name', 'China United Network Communications Group (China)'),
(49847, 41930, 'zh', 'name', 'äø­å›½č”åˆē½‘ē»œé€šäæ”é›†å›¢ęœ‰é™å…¬åø'),
(49848, 41931, 'no_lang_code', 'name', 'Ion Exchange (India)'),
(49849, 41932, 'en', 'name', 'Makivik Corporation'),
(49850, 41932, 'fr', 'name', 'SociƩtƩ Makivik'),
(49851, 41932, 'iu', 'name', 'Makivvik Kuapuriisat'),
(49852, 41933, 'en', 'name', 'Cracow School of Health Promotion'),
(49853, 41933, 'pl', 'name', 'Krakowska Wyższa Szkoła Promocji Zdrowia'),
(49854, 41934, 'en', 'name', 'Ministry of Education, Science, Technology and Sports'),
(49855, 41935, 'en', 'name', 'International Centre for Education in Islamic Finance'),
(49856, 41936, 'en', 'name', 'Karachi School for Business and Leadership'),
(49857, 41937, 'de', 'name', 'Kunsthistorisches Institut in Florenz'),
(49858, 41938, 'en', 'name', 'Renton Technical College'),
(49859, 41939, 'en', 'name', 'Lone Star College–North Harris'),
(49860, 41940, 'fr', 'name', 'Fondation Hardt'),
(49861, 41941, 'no_lang_code', 'name', 'Asur Plant Breeding (France)'),
(49862, 41942, 'en', 'name', 'Institute of Physics'),
(49863, 41942, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики им. Š›. Š’. ŠšŠøŃ€ŠµŠ½ŃŠŗŠ¾Š³Š¾'),
(49864, 41943, 'en', 'name', 'Boston Children''s at Waltham'),
(49865, 41944, 'nl', 'name', 'GGZ Rivierduinen'),
(49866, 41945, 'no_lang_code', 'name', 'Talbot & Talbot (South Africa)'),
(49867, 41946, 'en', 'name', 'Institute of History, Archaeology and Ethnography of the Peoples of Far-East'),
(49868, 41946, 'ru', 'name', 'ВлаГивостоке Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° истории, археологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø нароГов Š”Š°Š»ŃŒŠ½ŠµŠ³Š¾ Востока'),
(49869, 41947, 'en', 'name', 'Union Christian College'),
(49870, 41948, 'en', 'name', 'China National Commission for Disaster Reduction'),
(49871, 41948, 'zh', 'name', 'å›½å®¶å‡ē¾å§”å‘˜ä¼šåŠžå…¬å®¤ ęŠ€ęœÆę”ÆęŒ'),
(49872, 41949, 'en', 'name', 'IDA Ireland'),
(49873, 41950, 'en', 'name', 'Research Institute of Medical Genetics of Russian Academy of Medical Sciences'),
(49874, 41950, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинской генетики'),
(49875, 41951, 'en', 'name', 'Noorul Islam College of Dental Science'),
(49876, 41952, 'en', 'name', 'University of Applied Sciences in Nysas'),
(49877, 41952, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Nysie'),
(49878, 41953, 'pt', 'name', 'Instituto Superior de Teologia Aplicada'),
(49879, 41954, 'it', 'name', 'Accademia di Belle Arti di Sassari'),
(49880, 41955, 'no_lang_code', 'name', 'Novabase (Portugal)'),
(49881, 41956, 'de', 'name', 'Hochschule für Musik Saar'),
(49882, 41957, 'en', 'name', 'New Hampshire State Council on the Arts'),
(49883, 41958, 'fr', 'name', 'Ɖcole de Biologie Industrielle'),
(49884, 41959, 'no_lang_code', 'name', 'Ferrotec (United States)'),
(49885, 41960, 'en', 'name', 'Bugok National Hospital'),
(49886, 41960, 'ko', 'name', '국립부곔병원'),
(49887, 41961, 'en', 'name', 'South African Business Coalition'),
(49888, 41962, 'no_lang_code', 'name', 'TOKU-E (United States)'),
(49889, 41963, 'en', 'name', 'India Foundation for the Arts'),
(49890, 41964, 'fr', 'name', 'Société de Développement des Forêts'),
(49891, 41965, 'en', 'name', 'CU Shah Medical College and Hospital'),
(49892, 41966, 'no_lang_code', 'name', 'Epic Systems (United States)'),
(49893, 41967, 'en', 'name', 'New York School of Interior Design'),
(49894, 41968, 'en', 'name', 'Fisher College'),
(49895, 41969, 'de', 'name', 'Fondation Martin Bodmer'),
(49896, 41969, 'fr', 'name', 'Fondation Bodmer'),
(49897, 41970, 'en', 'name', 'Fox College'),
(49898, 41971, 'en', 'name', 'Institute for African Studies'),
(49899, 41971, 'ru', 'name', 'науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Африки Российской акаГемии наук'),
(49900, 41972, 'cs', 'name', 'VysokÔ Ŕkola telesné výchovy a sportu Palestra'),
(49901, 41972, 'en', 'name', 'College of Physical Education and Sport Palestra'),
(49902, 41973, 'no_lang_code', 'name', 'Jyotirmay Eye Clinic'),
(49903, 41974, 'en', 'name', 'AKAD University'),
(49904, 41975, 'fr', 'name', 'Centre pour l’Environnement et le DĆ©veloppement'),
(49905, 41976, 'en', 'name', 'Furness College'),
(49906, 41977, 'no_lang_code', 'name', 'JK Agri Genetics (India)'),
(49907, 41978, 'en', 'name', 'Jan Grodek State Vocational Academy in Sanok'),
(49908, 41978, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Jana Grodka w Sanoku'),
(49909, 41979, 'en', 'name', 'Division of Historical and Philological Sciences'),
(49910, 41980, 'es', 'name', 'MPS EspaƱa'),
(49911, 41981, 'en', 'name', 'Department of Communities, Culture and Heritage'),
(49912, 41982, 'en', 'name', 'Office of Management'),
(49913, 41983, 'en', 'name', 'El Centro College'),
(49914, 41984, 'fr', 'name', 'Laboratoire d''IngƩnierie Circulation Transports'),
(49915, 41985, 'en', 'name', 'Asian Institute of Public Health'),
(49916, 41986, 'en', 'name', 'Institute of Automation and Control Processes'),
(49917, 41986, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø процессов ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(49918, 41987, 'en', 'name', 'M S Ramaiah University of Applied Sciences'),
(49919, 41988, 'en', 'name', 'Institute of Finance and Trade Economics'),
(49920, 41988, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢č“¢ę”æäøŽč“øę˜“ē»ęµŽē ”ē©¶ę‰€'),
(49921, 41989, 'en', 'name', 'Nigerian Geological Survey Agency'),
(49922, 41990, 'en', 'name', 'Boston Area Research Initiative'),
(49923, 41991, 'en', 'name', 'Islamic Azad University of Ayatollah Amoli'),
(49924, 41991, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ آیت الله Ų¢Ł…Ł„ŪŒ'),
(49925, 41992, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī±'),
(49926, 41992, 'en', 'name', 'Technological Educational Institute of the Ionian Islands'),
(49927, 41993, 'en', 'name', 'Aidjan-Lagos Corridor Organization'),
(49928, 41993, 'fr', 'name', 'Organisation du Corridor Abidjan-Lagos'),
(49929, 41994, 'en', 'name', 'St Anthonys Senior Secondary School'),
(49930, 41995, 'en', 'name', 'Desmond Tutu HIV Foundation'),
(49931, 41996, 'de', 'name', 'Fraunhofer-Institut für Verfahrenstechnik und Verpackung IVV'),
(49932, 41996, 'en', 'name', 'Fraunhofer Institute for Process Engineering and Packaging'),
(49933, 41997, 'en', 'name', 'American Academy in Berlin'),
(49934, 41998, 'en', 'name', 'National Trust for Nature Conservation'),
(49935, 41998, 'ne', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æ ą¤Ŗą„ą¤°ą¤•ą„ƒą¤¤ą¤æ ą¤øą¤‚ą¤°ą¤•ą„ą¤·ą¤£ ą¤•ą„‹ą¤·'),
(49936, 41999, 'en', 'name', 'Sri Balaji Vidyapeeth University'),
(49937, 42000, 'en', 'name', 'Northern National College'),
(49938, 42000, 'ru', 'name', 'Деверный ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ коллеГж'),
(49939, 42001, 'en', 'name', 'Shriram Institute for Industrial Research'),
(49940, 42002, 'no_lang_code', 'name', 'Craft Engineering Associates (United States)'),
(49941, 42003, 'hr', 'name', 'VeleučiliÅ”te "Nikola Tesla" u Gospiću'),
(49942, 42004, 'en', 'name', 'Malawi Government'),
(49943, 42005, 'en', 'name', 'Chinese Academy for Environmental Planning'),
(49944, 42005, 'zh', 'name', 'äø­å›½ēŽÆå¢ƒäæęŠ¤éƒØēŽÆå¢ƒč§„åˆ’é™¢'),
(49945, 42006, 'en', 'name', 'Research Center for Rural Economy'),
(49946, 42006, 'zh', 'name', 'å†œäøšéƒØå†œę‘ē»ęµŽē ”ē©¶äø­åæƒ'),
(49947, 42007, 'en', 'name', 'Guiyang College of Traditional Chinese Medicine'),
(49948, 42007, 'zh', 'name', 'č“µé˜³äø­åŒ»å­¦é™¢'),
(49949, 42008, 'en', 'name', 'King''s College School'),
(49950, 42009, 'en', 'name', 'Peter the Great''s Museum of Anthropology and Ethnography'),
(49951, 42009, 'ru', 'name', 'ŠŸŠµŃ‚Ń€Š° Великого Музей антропологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø'),
(49952, 42010, 'en', 'name', 'Metropolitan Community College - Kansas City'),
(49953, 42011, 'no_lang_code', 'name', 'Assore (South Africa)'),
(49954, 42012, 'fr', 'name', 'HÓpital Cardiologique du Haut-Lévêque'),
(49955, 42013, 'en', 'name', 'Sichuan Academy of Forestry'),
(49956, 42013, 'zh', 'name', 'å››å·ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(49957, 42014, 'en', 'name', 'Beijing Research Institute of Mechanical and Electrical Technology'),
(49958, 42014, 'zh', 'name', 'åŒ—äŗ¬ęœŗē”µē ”ē©¶ę‰€'),
(49959, 42015, 'en', 'name', 'Pro Health International'),
(49960, 42016, 'en', 'name', 'Chartered Institute of Linguists'),
(49961, 42017, 'en', 'name', 'South Seattle College'),
(49962, 42018, 'en', 'name', 'Kenya AIDS Vaccine Initiative'),
(49963, 42019, 'en', 'name', 'Jubilee Mission Medical College and Research Institute'),
(49964, 42020, 'en', 'name', 'Saskatchewan Flax Development Commission'),
(49965, 42021, 'no_lang_code', 'name', 'Alembic Pharmaceuticals (India)'),
(49966, 42022, 'en', 'name', 'Songhai Health Trust'),
(49967, 42023, 'en', 'name', 'Russian National Public Library for Science and Technology'),
(49968, 42023, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŃƒŠ±Š»ŠøŃ‡Š½Š°Ń Š½Š°ŃƒŃ‡Š½Š¾-Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń библиотека'),
(49969, 42024, 'ko', 'name', 'ķšØģ„±'),
(49970, 42024, 'no_lang_code', 'name', 'Hyosung Corporation (South Korea)'),
(49971, 42025, 'es', 'name', 'Hospital Militar Central'),
(49972, 42026, 'it', 'name', 'Conservatorio di Musica FA Bonporti Trento'),
(49973, 42027, 'en', 'name', 'Egyptian Center for Public Opinion Research Baseera'),
(49974, 42028, 'en', 'name', 'Orpheus Institute'),
(49975, 42028, 'nl', 'name', 'Orpheus Instituut'),
(49976, 42029, 'en', 'name', 'Pennsylvania Department of Community and Economic Development'),
(49977, 42030, 'en', 'name', 'Relaxnews'),
(49978, 42031, 'en', 'name', 'Environmental Law Research Institute'),
(49979, 42032, 'no_lang_code', 'name', 'Sutol (Portugal)'),
(49980, 42033, 'en', 'name', 'Vermilion Community College'),
(49981, 42034, 'en', 'name', 'New Zealand Treasury, Treasury'),
(49982, 42034, 'mi', 'name', 'Kaitohutohu Kaupapa Rawa'),
(49983, 42035, 'en', 'name', 'Coastal Carolina Community College'),
(49984, 42036, 'en', 'name', 'United Way'),
(49985, 42037, 'de', 'name', 'Rheinisches Institut für Umweltforschung'),
(49986, 42037, 'en', 'name', 'Rhenish Institute for Environmental Research'),
(49987, 42038, 'en', 'name', 'Heteroelements and Coordination Chemistry Lab'),
(49988, 42038, 'fr', 'name', 'Laboratoire HƩtƩroƩlƩments et Coordination'),
(49989, 42039, 'en', 'name', 'Lubavitch Educational Center'),
(49990, 42040, 'en', 'name', 'Central Siberian Botanical Garden'),
(49991, 42040, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ сибирский ботанический саГ'),
(49992, 42041, 'en', 'name', 'Memphis Theological Seminary'),
(49993, 42042, 'en', 'name', 'Clay Mathematics Institute'),
(49994, 42043, 'pt', 'name', 'Governo do Distrito Federal'),
(49995, 42044, 'no_lang_code', 'name', 'Koch Agronomic Services (United States)'),
(49996, 42045, 'en', 'name', 'Shadan Hospital and Institute of Medical Sciences'),
(49997, 42046, 'no_lang_code', 'name', 'Bausch Health (Ireland)'),
(49998, 42047, 'no_lang_code', 'name', 'Blueprint Genetics (Finland)'),
(49999, 42048, 'en', 'name', 'IIHMR University'),
(50000, 42049, 'en', 'name', 'Kazan State Medical Academy'),
(50001, 42050, 'en', 'name', 'Nebraska Christian College'),
(50002, 42051, 'no_lang_code', 'name', 'Senko Medical Instrument Manufacturing (Japan)'),
(50003, 42052, 'en', 'name', 'Leicester College'),
(50004, 42053, 'en', 'name', 'British Institute for the Study of Iraq'),
(50005, 42054, 'en', 'name', 'Egyptian Center for Public Policy Studies'),
(50006, 42055, 'en', 'name', 'Government College of Science'),
(50007, 42056, 'de', 'name', 'PƤdagogische Hochschule Burgenland'),
(50008, 42056, 'en', 'name', 'University of Education in Burgenland'),
(50009, 42057, 'en', 'name', 'Holy Spirit High School'),
(50010, 42058, 'pt', 'name', 'Secretaria da Educação do Estado da Bahia'),
(50011, 42059, 'fr', 'name', 'Biostatistique et Processus Spatiaux'),
(50012, 42060, 'de', 'name', 'Hochschule der Bundesagentur für Arbeit'),
(50013, 42060, 'en', 'name', 'University of Applied Labour Studies of the Federal Employment Agency'),
(50014, 42061, 'en', 'name', 'Shanghai Botanical Garden'),
(50015, 42061, 'zh', 'name', 'äøŠęµ·ę¤ē‰©å›­'),
(50016, 42062, 'en', 'name', 'Political Observatory'),
(50017, 42062, 'pt', 'name', 'Observatório Político'),
(50018, 42063, 'no_lang_code', 'name', 'Nobex Technology (Nigeria)'),
(50019, 42064, 'en', 'name', 'School Centre Nova Gorica'),
(50020, 42064, 'sl', 'name', 'Å olski center Nova Gorica'),
(50021, 42065, 'en', 'name', 'Arts Council'),
(50022, 42065, 'ga', 'name', 'An Chomhairle EalaĆ­on'),
(50023, 42066, 'en', 'name', 'Florida College of Integrative Medicine'),
(50024, 42067, 'en', 'name', 'Global Innovation and Technology Alliance'),
(50025, 42068, 'en', 'name', 'Bradford School - Columbus'),
(50026, 42069, 'de', 'name', 'Knappschaftskrankenhaus Recklinghausen'),
(50027, 42070, 'no_lang_code', 'name', 'Ghana-India Kofi Annan Centre of Excellence in ICT'),
(50028, 42071, 'fr', 'name', 'Bruxelles Environnemont'),
(50029, 42071, 'nl', 'name', 'Leefmilieu Brussel'),
(50030, 42072, 'en', 'name', 'Dragon Rises College of Oriental Medicine'),
(50031, 42073, 'en', 'name', 'Kamineni Institute of Dental Sciences'),
(50032, 42074, 'en', 'name', 'Chamber of Deputies'),
(50033, 42074, 'it', 'name', 'Camera dei Deputati'),
(50034, 42075, 'ar', 'name', 'Ł…Ų±ŁƒŲ² بحوث ودراسات الطاقة Ų§Ł„Ų“Ł…Ų³ŁŠŲ©'),
(50035, 42075, 'en', 'name', 'Center for Solar Energy Research and Studies'),
(50036, 42076, 'en', 'name', 'Alliance College of Australia'),
(50037, 42077, 'no_lang_code', 'name', 'TERI'),
(50038, 42078, 'en', 'name', 'Ohio Department of Education'),
(50039, 42079, 'en', 'name', 'Institute of World History'),
(50040, 42079, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ всеобщей истории'),
(50041, 42080, 'en', 'name', 'Ashoka Trust for Research in Ecology and the Environment'),
(50042, 42081, 'en', 'name', 'Institute of Slavic Studies'),
(50043, 42081, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»Š°Š²ŃŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(50044, 42082, 'en', 'name', 'Interministerial Commission for Sea Resources'),
(50045, 42082, 'pt', 'name', 'Comissão Interministerial para os Recursos do Mar'),
(50046, 42083, 'no_lang_code', 'name', 'Zyvex (United States)'),
(50047, 42084, 'en', 'name', 'Sydney Missionary and Bible College'),
(50048, 42085, 'en', 'name', 'Center for Global Health'),
(50049, 42086, 'de', 'name', 'Akademie Mode & Design'),
(50050, 42086, 'en', 'name', 'AMD Academy of Fashion and Design'),
(50051, 42087, 'en', 'name', 'Southern California Seminary'),
(50052, 42088, 'en', 'name', 'William Booth College'),
(50053, 42089, 'ja', 'name', 'å¤§é˜Ŗåƒä»£ē”°ēŸ­ęœŸå¤§å­¦'),
(50054, 42089, 'no_lang_code', 'name', 'Osaka Chiyoda Junior College'),
(50055, 42090, 'en', 'name', 'The Asiatic Society of Mumbai'),
(50056, 42091, 'ar', 'name', 'وزارة الزراعة ŁˆŲ§Ų³ŲŖŲµŁ„Ų§Ų­ Ų§Ł„Ų£Ų±Ų§Ų¶ŁŠ Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(50057, 42091, 'en', 'name', 'Ministry of Agriculture and Land Reclamation'),
(50058, 42092, 'en', 'name', 'Christian Social Services Commission'),
(50059, 42093, 'en', 'name', 'AIDS Information Centre'),
(50060, 42094, 'no_lang_code', 'name', 'ESiOR Oy (Finland)'),
(50061, 42095, 'en', 'name', 'China Center of Advanced Science and Technology'),
(50062, 42095, 'zh', 'name', 'äø­å›½é«˜ē­‰ē§‘å­¦ęŠ€ęœÆäø­åæƒ'),
(50063, 42096, 'en', 'name', 'UmeƄ Plant Science Centre'),
(50064, 42097, 'en', 'name', 'Golden Valley Agricultural Research Trust'),
(50065, 42098, 'en', 'name', 'Gdansk School of Higher Education'),
(50066, 42098, 'pl', 'name', 'Gdańska Szkoła Wyższa'),
(50067, 42099, 'en', 'name', 'World Mission University'),
(50068, 42100, 'en', 'name', 'Tamil Nadu State AIDS Control Society'),
(50069, 42101, 'en', 'name', 'Savannah Law School'),
(50070, 42102, 'en', 'name', 'Royal College of Pathologists of Australasia'),
(50071, 42103, 'en', 'name', 'Guntur Medical College'),
(50072, 42104, 'no_lang_code', 'name', 'Medicure (Canada)'),
(50073, 42105, 'it', 'name', 'Conservatorio di Musica Licinio Refice'),
(50074, 42106, 'en', 'name', 'Sparks'),
(50075, 42107, 'en', 'name', 'Infectious Diseases Research Collaboration'),
(50076, 42108, 'en', 'name', 'Southeastern Baptist College'),
(50077, 42109, 'en', 'name', 'Bio-oriented Technology Research Advancement Institution'),
(50078, 42109, 'ja', 'name', 'ē”Ÿē‰©ē³»ē‰¹å®šē”£ę„­ęŠ€č”“ē ”ē©¶ę”Æę“ć‚»ćƒ³ć‚æ'),
(50079, 42110, 'es', 'name', 'Universidad Tecnológica del Sur de Sonora'),
(50080, 42111, 'en', 'name', 'Pushpagiri Medical College'),
(50081, 42112, 'es', 'name', 'Confederación Estatal de Personas Sordas'),
(50082, 42113, 'en', 'name', 'Eastwick College and the HoHoKus Schools'),
(50083, 42114, 'en', 'name', 'National Research Centre on Seed Spices'),
(50084, 42115, 'en', 'name', 'Specs Howard School of Media Arts'),
(50085, 42116, 'en', 'name', 'Lagrange Laboratory'),
(50086, 42117, 'en', 'name', 'Crowleys Ridge College'),
(50087, 42118, 'en', 'name', 'Health Education North West'),
(50088, 42119, 'no_lang_code', 'name', 'Hewlett-Packard (India)'),
(50089, 42120, 'en', 'name', 'Columbia College - California'),
(50090, 42121, 'no_lang_code', 'name', 'Cleanergy (Sweden)'),
(50091, 42122, 'en', 'name', 'New South Wales Institute of Psychiatry'),
(50092, 42123, 'no_lang_code', 'name', 'Sanru'),
(50093, 42124, 'en', 'name', 'Ministry of Economy'),
(50094, 42124, 'he', 'name', '×ž×©×Ø×“ הכלכלה'),
(50095, 42125, 'it', 'name', 'Conservatorio di Musica "G.B. Martini"'),
(50096, 42126, 'en', 'name', 'Institute of Vegetables and Flowers'),
(50097, 42126, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢č”¬čœčŠ±å‰ē ”ē©¶ę‰€'),
(50098, 42127, 'no_lang_code', 'name', 'Kalyani Group (India)'),
(50099, 42128, 'no_lang_code', 'name', 'Wenzhou Municipal Sci-Tech Bureau'),
(50100, 42128, 'zh', 'name', 'ęø©å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(50101, 42129, 'en', 'name', 'South Piedmont Community College'),
(50102, 42130, 'en', 'name', 'Institute of Molecular and Cell Biology'),
(50103, 42130, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ Šø клеточной биологии'),
(50104, 42131, 'no_lang_code', 'name', 'Portuguese Air Transportations (Portugal)'),
(50105, 42131, 'pt', 'name', 'Transportes AƩreos Portugueses'),
(50106, 42132, 'no_lang_code', 'name', 'Computational Diagnostics (United States)'),
(50107, 42133, 'en', 'name', 'Tunisian Union of Agriculture and Fisheries'),
(50108, 42133, 'fr', 'name', 'Union Tunisienne de l''Agriculture et de la PĆŖche'),
(50109, 42134, 'en', 'name', 'Astronomical Observatory of Capodimonte'),
(50110, 42134, 'it', 'name', 'Osservatorio Astronomico di Capodimonte'),
(50111, 42135, 'en', 'name', 'Sri Manakula Vinayagar Educational Trust'),
(50112, 42136, 'en', 'name', 'St. Bernard’s School of Theology and Ministry'),
(50113, 42137, 'en', 'name', 'Dormitory Authority of the State of New York'),
(50114, 42138, 'el', 'name', 'Γαλλική Σχολή Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(50115, 42138, 'en', 'name', 'French School at Athens'),
(50116, 42138, 'fr', 'name', 'Ɖcole franƧaise d’AthĆØnes'),
(50117, 42139, 'en', 'name', 'Yonsei University Dental Hospital'),
(50118, 42140, 'en', 'name', 'Xinjiang Entry-Exit Inspection and Quarantine Bureau'),
(50119, 42140, 'zh', 'name', 'ę–°ē–†å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€ę£€éŖŒę£€ē–«ęŠ€ęœÆäø­åæƒ'),
(50120, 42141, 'de', 'name', 'Fachhochschule für Rechtspflege Nordrhein Westfalen'),
(50121, 42142, 'en', 'name', 'International Crops Research Institute for the Semi-Arid Tropics'),
(50122, 42143, 'ar', 'name', 'Ų¹Ł…Ł„ŁŠŲ§ŲŖ قطر Ł„Ł„ŲØŲŖŲ±ŁˆŁ„'),
(50123, 42143, 'no_lang_code', 'name', 'Qatar Petroleum (Qatar)'),
(50124, 42144, 'en', 'name', 'Beal College'),
(50125, 42145, 'en', 'name', 'Saskatchewan Ministry of Agriculture'),
(50126, 42146, 'en', 'name', 'Critical Art and Media Practice'),
(50127, 42147, 'en', 'name', 'National Institute of Science and Mathematics Technology'),
(50128, 42148, 'en', 'name', 'University and College Union'),
(50129, 42149, 'no_lang_code', 'name', 'Freddie Mac (United States)'),
(50130, 42150, 'en', 'name', 'University College of Estate Management'),
(50131, 42151, 'en', 'name', 'New College Lanarkshire'),
(50132, 42152, 'en', 'name', 'Trinity College London'),
(50133, 42153, 'en', 'name', 'Ridley College'),
(50134, 42154, 'en', 'name', 'Joseph Rowntree Charitable Trust'),
(50135, 42155, 'es', 'name', 'Secretaría de Ciencia Tecnología e Innovación'),
(50136, 42156, 'no_lang_code', 'name', 'Avesthagen (India)'),
(50137, 42157, 'it', 'name', 'Istituto Svizzero di Roma'),
(50138, 42158, 'no_lang_code', 'name', 'Whirlpool (United States)'),
(50139, 42159, 'en', 'name', 'Basel Convention Co-Ordinating Centre'),
(50140, 42160, 'en', 'name', 'Higher Institute for Artistic Industries Urbino'),
(50141, 42160, 'it', 'name', 'Istituto Superiore per le Industrie Artistiche'),
(50142, 42161, 'en', 'name', 'LUCA School of Arts'),
(50143, 42162, 'en', 'name', 'National Institute of Technology, Numazu College'),
(50144, 42162, 'ja', 'name', 'ę²¼ę“„é«˜å°‚'),
(50145, 42163, 'en', 'name', 'Indian Institute of Ecology and Environment'),
(50146, 42164, 'no_lang_code', 'name', 'Mali-Folkecenter'),
(50147, 42165, 'de', 'name', 'Ɩsterreichisches ArchƤologisches Institut'),
(50148, 42165, 'en', 'name', 'Austrian Archeological Institute'),
(50149, 42166, 'en', 'name', 'Yeshiva and Kollel Be''er Yitzchok of Elizabeth'),
(50150, 42167, 'en', 'name', 'South Georgia Technical College'),
(50151, 42168, 'en', 'name', 'University of Arkansas Community College at Morrilton'),
(50152, 42169, 'no_lang_code', 'name', 'NanoFlex Power (United States)'),
(50153, 42170, 'en', 'name', 'Rabbi Jacob Joseph School'),
(50154, 42171, 'en', 'name', 'National Earthquake Response Support Service'),
(50155, 42171, 'zh', 'name', 'äø­å›½åœ°éœ‡åŗ”ę€„ęœę•‘äø­åæƒ'),
(50156, 42172, 'en', 'name', 'Virginia BioTechnology Research Park'),
(50157, 42173, 'en', 'name', 'Zemaitija College'),
(50158, 42173, 'lt', 'name', 'Žemaitijos Kolegija'),
(50159, 42174, 'en', 'name', 'Mysore Resettlement and Development Agency'),
(50160, 42175, 'en', 'name', 'Accident Compensation Corporation'),
(50161, 42175, 'mi', 'name', 'Te Kaporeihana Āwhina Hunga Whara'),
(50162, 42176, 'en', 'name', 'Oak Hills Christian College'),
(50163, 42177, 'no_lang_code', 'name', 'Malabar Cancer Centre'),
(50164, 42178, 'ro', 'name', 'Ministerul Muncii, Familiei, Protecţiei Sociale şi Persoanelor Vârstnice'),
(50165, 42179, 'en', 'name', 'Tanzania Forestry Research Institute'),
(50166, 42180, 'en', 'name', 'Dmitry Rogachev National Research Center of Pediatric Hematology, Oncology and Immunology'),
(50167, 42180, 'ru', 'name', 'Š”Š•Š¢Š”ŠšŠžŠ™ Š“Š•ŠœŠŠ¢ŠžŠ›ŠžŠ“Š˜Š˜, ŠžŠŠšŠžŠ›ŠžŠ“Š˜Š˜ И Š˜ŠœŠœŠ£ŠŠžŠ›ŠžŠ“Š˜Š˜ им. Š”Š¼ŠøŃ‚Ń€ŠøŃ Рогачева'),
(50168, 42181, 'no_lang_code', 'name', 'Narayana Nethralaya'),
(50169, 42182, 'en', 'name', 'United States Election Assistance Commission'),
(50170, 42183, 'no_lang_code', 'name', 'Lantheus Medical Imaging (United States)'),
(50171, 42184, 'en', 'name', 'Montgomery High School'),
(50172, 42185, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Art et de Design de Nancy'),
(50173, 42186, 'en', 'name', 'Phyto consulting'),
(50174, 42187, 'de', 'name', 'Staatliche Akademie der Bildenden Künste Karlsruhe'),
(50175, 42187, 'en', 'name', 'Academy of Fine Arts Karlsruhe'),
(50176, 42188, 'fr', 'name', 'MinistĆØre de Environnement et de l''Assainissement du Mali'),
(50177, 42189, 'en', 'name', 'Great Britain China Centre'),
(50178, 42190, 'en', 'name', 'American University of the Caribbean School of Medicine'),
(50179, 42191, 'no_lang_code', 'name', 'Erytech Pharma (France)'),
(50180, 42192, 'no_lang_code', 'name', 'Alabama Power (United States)'),
(50181, 42193, 'en', 'name', 'Civil Service College'),
(50182, 42194, 'en', 'name', 'Vilnius Cooperative College'),
(50183, 42194, 'lt', 'name', 'Vilniaus Kooperacijos Kolegija'),
(50184, 42195, 'es', 'name', 'Secretaría de Investigación, Innovación y Educación Superior'),
(50185, 42196, 'en', 'name', 'Beatson Cancer Charity'),
(50186, 42197, 'fr', 'name', 'Ɖcole SupĆ©rieure de Chimie Organique et MinĆ©rale'),
(50187, 42198, 'en', 'name', 'Chinese Academy of Surveying and Mapping'),
(50188, 42198, 'zh', 'name', 'äø­å›½ęµ‹ē»˜ē§‘å­¦ē ”ē©¶é™¢'),
(50189, 42199, 'en', 'name', 'Wilson Community College'),
(50190, 42200, 'en', 'name', 'Indian Institute of Management Indore'),
(50191, 42200, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‡ą¤‚ą¤¦ą„Œą¤°'),
(50192, 42201, 'en', 'name', 'International Association for Great Lakes Research'),
(50193, 42202, 'no_lang_code', 'name', 'Scientific Center of RAS in Chernogolovka'),
(50194, 42202, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук в Черноголовке'),
(50195, 42203, 'pt', 'name', 'Fundo para a Protecção dos Animais Selvagens'),
(50196, 42204, 'en', 'name', 'National Office of Hydrocarbons and Mines'),
(50197, 42204, 'fr', 'name', 'Office National des Hydrocarbures et des Mines'),
(50198, 42205, 'de', 'name', 'Senatsverwaltung für Bildung, Jugend und Wissenschaft'),
(50199, 42206, 'en', 'name', 'Warwickshire College'),
(50200, 42207, 'en', 'name', 'Gannan Normal University'),
(50201, 42207, 'zh', 'name', 'čµ£å—åøˆēÆ„å­¦é™¢'),
(50202, 42208, 'en', 'name', 'Tennessee Wildlife Resources Agency'),
(50203, 42209, 'en', 'name', 'Union Presbyterian Seminary'),
(50204, 42210, 'en', 'name', 'Shanghai Science and Technology Museum'),
(50205, 42210, 'zh', 'name', 'äøŠęµ·ē§‘ęŠ€é¦†'),
(50206, 42211, 'en', 'name', 'Physico-Technical Institute'),
(50207, 42211, 'ru', 'name', 'Физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской АкаГемии наук'),
(50208, 42212, 'it', 'name', 'Conservatorio di Musica Giuseppe Verdi'),
(50209, 42213, 'en', 'name', 'American Institute of Ultrasound in Medicine'),
(50210, 42214, 'en', 'name', 'Department of Agriculture, Land Reform and Rural Development'),
(50211, 42215, 'sl', 'name', 'Å olski Center Velenje'),
(50212, 42216, 'en', 'name', 'Institute on Laser and Information Technologies'),
(50213, 42216, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем лазерных Šø информационных технологий'),
(50214, 42217, 'no_lang_code', 'name', 'Canon (United States)'),
(50215, 42218, 'en', 'name', 'Life Science Zurich'),
(50216, 42219, 'en', 'name', 'Aarupadai Veedu Medical College & Hospital'),
(50217, 42220, 'fr', 'name', 'Institut RƩgional d''Administration de Bastia'),
(50218, 42221, 'en', 'name', 'Maryland Space Grant Consortium'),
(50219, 42222, 'fr', 'name', 'Ɖcole Centrale d''Ɖlectronique'),
(50220, 42223, 'fr', 'name', 'Haute Ɖcole Libre de Bruxelles Ilya Prigogine'),
(50221, 42224, 'pl', 'name', 'Uczelnia Zawodowa Zagłębia Miedziowego w Lubinie'),
(50222, 42225, 'fr', 'name', 'AcadƩmie des Beaux-Arts de Tournai'),
(50223, 42226, 'en', 'name', 'Williamson College'),
(50224, 42227, 'no_lang_code', 'name', 'Companhia EnergƩtica de Minas Gerais (Brazil)'),
(50225, 42228, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Art et de Design d''OrlĆ©ans'),
(50226, 42229, 'en', 'name', 'Uganda Wildlife Authority'),
(50227, 42230, 'en', 'name', 'Copiah-Lincoln Community College'),
(50228, 42231, 'en', 'name', 'Safe Kids Worldwide'),
(50229, 42232, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Art'),
(50230, 42233, 'en', 'name', 'Aventis School of Management'),
(50231, 42234, 'en', 'name', 'World Medicine Institute'),
(50232, 42235, 'no_lang_code', 'name', 'Calyx (India)'),
(50233, 42236, 'en', 'name', 'Board of Intermediate Education Karachi'),
(50234, 42237, 'en', 'name', 'Mid Cheshire Hospitals NHS Foundation Trust'),
(50235, 42238, 'de', 'name', 'SRH Hochschule der Populären Künste'),
(50236, 42239, 'en', 'name', 'Delaware Division of the Arts'),
(50237, 42240, 'en', 'name', 'Ubuntu Education Fund'),
(50238, 42241, 'pl', 'name', 'Dolnośląska Wyższa Szkoła Przedsiębiorczości i Techniki w Polkowicach'),
(50239, 42242, 'en', 'name', 'Hawaii Community College'),
(50240, 42243, 'no_lang_code', 'name', 'Johnson Controls (United States)'),
(50241, 42244, 'en', 'name', 'Medicine Hat College'),
(50242, 42245, 'en', 'name', 'Wesley Biblical Seminary'),
(50243, 42246, 'en', 'name', 'Georgia Tech Lorraine'),
(50244, 42247, 'en', 'name', 'Child In Need Institute'),
(50245, 42248, 'en', 'name', 'Nurses'' Training College, Ho'),
(50246, 42249, 'no_lang_code', 'name', 'Hilleman Laboratories (India)'),
(50247, 42250, 'en', 'name', 'Action Cancer'),
(50248, 42251, 'en', 'name', 'Hypertension Trust'),
(50249, 42252, 'en', 'name', 'Radom Academy of Economics'),
(50250, 42252, 'pl', 'name', 'Wyższa Szkoła Handlowa w Radomiu'),
(50251, 42253, 'en', 'name', 'Dr. A. Ramachandran''s Diabetes Hospitals'),
(50252, 42254, 'en', 'name', 'City of Westminster College'),
(50253, 42255, 'en', 'name', 'Children & Youth Science Center of CAST'),
(50254, 42255, 'zh', 'name', 'äø­å›½ē§‘åé’å°‘å¹“ē§‘ęŠ€äø­åæƒ'),
(50255, 42256, 'en', 'name', 'Institute of Sociology'),
(50256, 42256, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ē¤¾ä¼šå­¦ē ”ē©¶ę‰€'),
(50257, 42257, 'en', 'name', 'Northwestern Oklahoma State University'),
(50258, 42258, 'en', 'name', 'Fukuyama City University'),
(50259, 42258, 'ja', 'name', 'ē¦å±±åø‚ē«‹å¤§å­¦'),
(50260, 42259, 'en', 'name', 'Bank of China'),
(50261, 42259, 'zh', 'name', 'äø­å›½é“¶č”Œč‚”ä»½ęœ‰é™å…¬åø'),
(50262, 42260, 'en', 'name', 'inVentiv Health Clinical'),
(50263, 42261, 'en', 'name', 'TCA College'),
(50264, 42262, 'en', 'name', 'Korea Labor Institute'),
(50265, 42262, 'ko', 'name', 'ķ•œźµ­ė…øė™ģ—°źµ¬ģ›'),
(50266, 42263, 'en', 'name', 'Guangdong Laboratory Animals Monitoring Institute'),
(50267, 42263, 'zh', 'name', 'å¹æäøœēœå®žéŖŒåŠØē‰©ē›‘ęµ‹ę‰€'),
(50268, 42264, 'en', 'name', 'Regional Universities Forum for Capacity Building in Agriculture'),
(50269, 42265, 'en', 'name', 'ALS Society of Canada'),
(50270, 42266, 'en', 'name', 'Friends for Global Health Initiative Nigeria'),
(50271, 42267, 'fr', 'name', 'Infor Jeunes Bruxelles'),
(50272, 42268, 'de', 'name', 'Fƶrdergemeinschaft Kinderkrebs-Zentrum Hamburg'),
(50273, 42269, 'ja', 'name', 'äø­éƒØé›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(50274, 42269, 'no_lang_code', 'name', 'Chubu Electric Power (Japan)'),
(50275, 42270, 'en', 'name', 'Central Economics and Mathematics Institute'),
(50276, 42270, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-математический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(50277, 42271, 'fr', 'name', 'Agence Nationale de l''Aviation Civile'),
(50278, 42272, 'en', 'name', 'Groden Network'),
(50279, 42273, 'en', 'name', 'Ministry of Foreign Affairs'),
(50280, 42273, 'no', 'name', 'Det kongelige Utenriksdepartement'),
(50281, 42274, 'pt', 'name', 'Universidade Estadual do Piau'),
(50282, 42275, 'en', 'name', 'State Hospital'),
(50283, 42276, 'no_lang_code', 'name', 'HCL Technologies (India)'),
(50284, 42277, 'en', 'name', 'China Nuclear Energy Association'),
(50285, 42277, 'zh', 'name', 'ę øå·„äøščˆŖęµ‹é„ę„Ÿäø­åæƒ'),
(50286, 42278, 'en', 'name', 'Western Wyoming Community College'),
(50287, 42279, 'de', 'name', 'Forschungs- und Entwicklungsinformationsdienst der Gemeinschaft'),
(50288, 42279, 'en', 'name', 'Community Research and Development Information Service'),
(50289, 42279, 'fr', 'name', 'Service communautaire d''information sur la recherche et le dƩveloppement'),
(50290, 42279, 'it', 'name', 'Servizio Comunitario di Informazione in materia di Ricerca e Sviluppo'),
(50291, 42279, 'pl', 'name', 'Wspólnotowy Serwis Informacyjny Badań i Rozwoju'),
(50292, 42280, 'es', 'name', 'Departamento Nacional de Planeación'),
(50293, 42281, 'en', 'name', 'Center for Theoretical Problems of Physicochemical Pharmacology'),
(50294, 42281, 'ru', 'name', 'Центр теоретических проблем физико-химической фармакологии Š ŠŠ'),
(50295, 42282, 'en', 'name', 'Ross University School of Medicine'),
(50296, 42283, 'en', 'name', 'Institute of Quantitative and Technical Economics'),
(50297, 42283, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ę•°é‡ē»ęµŽäøŽęŠ€ęœÆē»ęµŽē ”ē©¶ę‰€'),
(50298, 42284, 'en', 'name', 'Department of Local Government and Communities'),
(50299, 42285, 'de', 'name', 'Bayerisch-Franzƶsische Hochschulzentrum'),
(50300, 42285, 'fr', 'name', 'Centre de CoopƩration Universitaire Franco-Bavarois'),
(50301, 42286, 'en', 'name', 'Ministry of Science and Technology Thailand'),
(50302, 42286, 'th', 'name', 'ąøąø£ąø°ąø—ąø£ąø§ąø‡ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œą¹ąø„ąø°ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµ'),
(50303, 42287, 'en', 'name', 'Library of Parliament'),
(50304, 42287, 'fr', 'name', 'BibliothĆØque du Parlement'),
(50305, 42288, 'en', 'name', 'Ministry of Employment and Labor'),
(50306, 42288, 'ko', 'name', 'ź³ ģš©ė…øė™ė¶€'),
(50307, 42289, 'en', 'name', 'Sullivan College of Technology and Design'),
(50308, 42290, 'en', 'name', 'Nyanza Reproductive Health Society'),
(50309, 42291, 'pt', 'name', 'Fundação de Estudo e Pesquisa em Medicina VeterinÔria e Zootecnia'),
(50310, 42292, 'es', 'name', 'Instituto Católico Chileno de Migración'),
(50311, 42293, 'en', 'name', 'Accrington and Rossendale College'),
(50312, 42294, 'en', 'name', 'Western Cape Department of Health'),
(50313, 42295, 'en', 'name', 'Taft College'),
(50314, 42296, 'en', 'name', 'Shandong Academy of Social Sciences'),
(50315, 42296, 'zh', 'name', 'å±±äøœē¤¾ä¼šē§‘å­¦é™¢'),
(50316, 42297, 'en', 'name', 'The Restaurant School at Walnut Hill College'),
(50317, 42298, 'en', 'name', 'Federal Ministry of Science & Technology'),
(50318, 42299, 'en', 'name', 'Technological Institute of the Philippines'),
(50319, 42300, 'fr', 'name', 'Centre Technique de l''Agro-Alimentaire'),
(50320, 42301, 'no_lang_code', 'name', 'Ebro Foods (Canada)'),
(50321, 42302, 'no_lang_code', 'name', 'Tech Mahindra (India)'),
(50322, 42303, 'no_lang_code', 'name', 'Biognos (Sweden)'),
(50323, 42304, 'en', 'name', 'Tanzania Public health Association'),
(50324, 42305, 'de', 'name', 'Bundesministerium für Landesverteidigung und Sport'),
(50325, 42305, 'en', 'name', 'Ministry of National Defence and Sport'),
(50326, 42306, 'no_lang_code', 'name', 'SGS (Portugal)'),
(50327, 42306, 'pt', 'name', 'Sociedade Geral de SuperintendĆŖncia'),
(50328, 42307, 'it', 'name', 'Istituzione Bologna Musei'),
(50329, 42308, 'en', 'name', 'National Bureau of Agriculturally Important Microorganisms'),
(50330, 42308, 'hi', 'name', 'ą¤•ą„ƒą¤·ą¤æ ą¤•ą„‡ ą¤²ą¤æą¤ ą¤®ą¤¹ą¤¤ą„ą¤µą¤Ŗą„‚ą¤°ą„ą¤£ ą¤øą„‚ą¤•ą„ą¤·ą„ą¤®ą¤œą„€ą¤µą„‹ą¤‚ ą¤•ą„‡ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤¬ą„ą¤Æą„‚ą¤°ą„‹'),
(50331, 42309, 'no_lang_code', 'name', 'Ipca Laboratories (India)'),
(50332, 42310, 'en', 'name', 'Friends for an Earlier Breast Cancer Test'),
(50333, 42311, 'en', 'name', 'Australian Housing and Urban Research Institute'),
(50334, 42312, 'en', 'name', 'Queen of the Valley Medical Center'),
(50335, 42313, 'en', 'name', 'Vaatsalya Healthcare'),
(50336, 42314, 'en', 'name', 'Truman Bodden Law School'),
(50337, 42315, 'en', 'name', 'Asian Center for Theological Studies and Mission'),
(50338, 42315, 'ko', 'name', 'ģ•„ģ„øģ•„ģ—°ķ•©ģ‹ ķ•™ėŒ€ķ•™źµ'),
(50339, 42316, 'hi', 'name', 'Chhattisgarh Kamdhenu Vishwavidyalaya, ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼ ą¤•ą¤¾ą¤®ą¤§ą„‡ą¤Øą„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(50340, 42317, 'no_lang_code', 'name', 'Inova Design Solutions (United Kingdom)'),
(50341, 42318, 'en', 'name', 'Government Medical College Thoothukudi'),
(50342, 42318, 'ta', 'name', 'ą®¤ąÆ‚ą®¤ąÆą®¤ąÆą®•ąÆą®•ąÆą®Ÿą®æ ą®…ą®°ą®šąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(50343, 42319, 'en', 'name', 'KVG Medical College & Hospital'),
(50344, 42320, 'en', 'name', 'Cameroon Academy of Sciences'),
(50345, 42321, 'no_lang_code', 'name', 'AMPAC Fine Chemicals (United States)'),
(50346, 42322, 'no_lang_code', 'name', 'Medical Insurance Group Australia'),
(50347, 42323, 'de', 'name', 'Fachhochschule für öffentliche Verwaltung Nordrhein-Westfalen'),
(50348, 42323, 'en', 'name', 'University of Applied Sciences for Public Administration and Management'),
(50349, 42324, 'no_lang_code', 'name', 'Getra (Italy)'),
(50350, 42325, 'fr', 'name', 'Centre de Recherche sur l''Environnement Alpin'),
(50351, 42326, 'en', 'name', 'University of Agricultural Sciences, Dharwad'),
(50352, 42327, 'en', 'name', 'Institute of History'),
(50353, 42327, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории Š”Šž Š ŠŠ'),
(50354, 42328, 'en', 'name', 'Emmanuel College - Georgia'),
(50355, 42329, 'en', 'name', 'Russian Scientific Center of Radiology and Surgical Technologies'),
(50356, 42329, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр раГиологии Šø Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŃ… технологий'),
(50357, 42330, 'no_lang_code', 'name', 'Jaypee Group (India)'),
(50358, 42331, 'fr', 'name', 'Institut PrĆ©paratoire aux Ɖtudes d''IngĆ©nieurs de Monastir'),
(50359, 42332, 'en', 'name', 'Research Manitoba'),
(50360, 42333, 'en', 'name', 'Spanish National Centre for Cardiovascular Research'),
(50361, 42333, 'es', 'name', 'Centro Nacional de Investigaciones Cardiovasculares Carlos III'),
(50362, 42334, 'en', 'name', 'Academy of Science of South Africa'),
(50363, 42335, 'en', 'name', 'Denizli Special Provincial Administration'),
(50364, 42335, 'tr', 'name', 'Denizli Yatırım İzleme ve Koordinasyon Başkanlığı'),
(50365, 42336, 'en', 'name', 'Marymount California University, Marymount College, Palos Verdes'),
(50366, 42337, 'en', 'name', 'Vanguard College'),
(50367, 42338, 'no_lang_code', 'name', 'Smiths Power (United States)'),
(50368, 42339, 'en', 'name', 'Korea Transport Institute'),
(50369, 42339, 'ko', 'name', 'ķ•œźµ­ 교통 연구원'),
(50370, 42340, 'en', 'name', 'Davidson County Community College'),
(50371, 42341, 'en', 'name', 'Sault College'),
(50372, 42342, 'pt', 'name', 'Instituição Toledo de Ensino'),
(50373, 42343, 'no_lang_code', 'name', 'ZOSP RP Wytwórnia Umundurowania Strażackiego (Poland)'),
(50374, 42344, 'no_lang_code', 'name', 'Zabaykalsky National Park'),
(50375, 42344, 'ru', 'name', 'Š—Š°Š±Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк'),
(50376, 42345, 'en', 'name', 'Lamar Community College'),
(50377, 42346, 'en', 'name', 'Institute of Economics'),
(50378, 42346, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Š£Ń€Šž Š ŠŠ'),
(50379, 42347, 'de', 'name', 'Evangelische Hochschule Dresden'),
(50380, 42348, 'no_lang_code', 'name', 'Georgia Power (United States)'),
(50381, 42349, 'en', 'name', 'Westerdals Oslo School of Arts, Communication and Technology'),
(50382, 42350, 'de', 'name', 'Hochschule Mainz'),
(50383, 42350, 'en', 'name', 'University of Applied Sciences Mainz'),
(50384, 42351, 'pt', 'name', 'Conservatório de Música de Coimbra'),
(50385, 42352, 'en', 'name', 'Sterling College - Kansas'),
(50386, 42353, 'en', 'name', 'Louisville Presbyterian Theological Seminary'),
(50387, 42354, 'en', 'name', 'State Preservation Board'),
(50388, 42355, 'de', 'name', 'Krankenhaus Nordwest'),
(50389, 42356, 'pt', 'name', 'Instituto Vita'),
(50390, 42357, 'nl', 'name', 'Swets & Zeitlinger'),
(50391, 42357, 'no_lang_code', 'name', 'Swets (Netherlands)'),
(50392, 42358, 'en', 'name', 'Organisation for the Prohibition of Chemical Weapons'),
(50393, 42358, 'es', 'name', 'Organización para la Prohibición de Armas Químicas'),
(50394, 42359, 'en', 'name', 'Aichi Konan College'),
(50395, 42359, 'ja', 'name', 'ę„›ēŸ„ę±Ÿå—ēŸ­ęœŸå¤§å­¦'),
(50396, 42360, 'ar', 'name', 'مجلس ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų„Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© في Ų£ŁŲ±ŁŠŁ‚ŁŠ'),
(50397, 42360, 'en', 'name', 'Council for the Development of Social Science Research in Africa'),
(50398, 42360, 'fr', 'name', 'Conseil pour le dƩveloppement de la recherche en sciences sociales en Afrique'),
(50399, 42360, 'pt', 'name', 'Conselho para o Desenvolvimento da Pesquisa em Ciências Sociais em África'),
(50400, 42361, 'en', 'name', 'Ukrainian Military Medical Academy'),
(50401, 42361, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾-меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(50402, 42362, 'en', 'name', 'Psychological Institute of the Russian Academy of Education'),
(50403, 42363, 'en', 'name', 'Tanzania Commission for AIDS'),
(50404, 42364, 'en', 'name', 'San Raffaele University of Rome'),
(50405, 42364, 'it', 'name', 'UniversitĆ  telematica San Raffaele'),
(50406, 42365, 'en', 'name', 'National Academy of Agricultural Research Management'),
(50407, 42366, 'pt', 'name', 'Centro de Desenvolvimento SustentƔvel para as Zonas Costeiras'),
(50408, 42367, 'en', 'name', 'Emily Griffith Technical College'),
(50409, 42368, 'en', 'name', 'MacPhail Center for Music'),
(50410, 42369, 'en', 'name', 'Youth for Christ South Africa'),
(50411, 42370, 'en', 'name', 'Institute of Oriental Manuscripts'),
(50412, 42370, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ восточных Ń€ŃƒŠŗŠ¾ŠæŠøŃŠµŠ¹ Российской акаГемии наук'),
(50413, 42371, 'en', 'name', 'Ali Yavar Jung National Institute for the Hearing Handicapped'),
(50414, 42372, 'no_lang_code', 'name', 'Allergan (Germany)'),
(50415, 42373, 'no_lang_code', 'name', 'Indian Oil Corporation (India)'),
(50416, 42374, 'no_lang_code', 'name', 'Asceneuron (Switzerland)'),
(50417, 42375, 'en', 'name', 'Alanya Hamdullah Emin Pasa University'),
(50418, 42375, 'tr', 'name', 'Alanya Hamdullah Emin Paşa Üniversitesi'),
(50419, 42376, 'es', 'name', 'Dirección de Investigación y Desarrollo'),
(50420, 42377, 'en', 'name', 'Entrepreneurship Development Institute of India'),
(50421, 42378, 'no_lang_code', 'name', 'AriadNEXT (France)'),
(50422, 42379, 'en', 'name', 'Patrick Henry Community College'),
(50423, 42380, 'en', 'name', 'Flint Hills Technical College'),
(50424, 42381, 'en', 'name', 'Centre for Environmental Management and Participatory Development'),
(50425, 42382, 'no_lang_code', 'name', 'Peregrine Power (United States)'),
(50426, 42383, 'en', 'name', 'Global Cardiovascular Innovation Center'),
(50427, 42384, 'en', 'name', 'University of Louisiana System'),
(50428, 42385, 'en', 'name', 'Brazosport College'),
(50429, 42386, 'en', 'name', 'Kyung Hee University Dental Hospital'),
(50430, 42386, 'ko', 'name', 'ź²½ķ¬ėŒ€ķ•™źµģ¹˜ź³¼ė³‘ģ›'),
(50431, 42387, 'en', 'name', 'European Bank for Reconstruction and Development'),
(50432, 42388, 'en', 'name', 'KLE Society Hospital'),
(50433, 42389, 'en', 'name', 'State Higher Vocational School in Skierniewice'),
(50434, 42389, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Skierniewicach'),
(50435, 42390, 'en', 'name', 'London School of Business and Finance'),
(50436, 42391, 'no_lang_code', 'name', 'Maharashtra Hybrid Seeds (India)'),
(50437, 42392, 'en', 'name', 'Children’s Discovery Institute'),
(50438, 42393, 'en', 'name', 'Department of Education and Training'),
(50439, 42394, 'no_lang_code', 'name', 'Sears Holdings (United States)'),
(50440, 42395, 'en', 'name', 'North Central Missouri College'),
(50441, 42396, 'en', 'name', 'Health Care Foundation'),
(50442, 42397, 'en', 'name', 'Indian Navy'),
(50443, 42397, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Øą„Œą¤øą„‡ą¤Øą¤¾'),
(50444, 42398, 'en', 'name', 'Health Systems Trust'),
(50445, 42399, 'en', 'name', 'Institute of World Politics'),
(50446, 42400, 'no_lang_code', 'name', 'BMC Software (United States)'),
(50447, 42401, 'en', 'name', 'China Machine Press'),
(50448, 42401, 'zh', 'name', 'äø­å›½ęœŗę¢°å·„äøšå‡ŗē‰ˆē¤¾'),
(50449, 42402, 'en', 'name', 'National Assembly Library'),
(50450, 42402, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ źµ­ķšŒė„ģ„œź“€'),
(50451, 42403, 'de', 'name', 'EuropƤischer AuswƤrtiger Dienst'),
(50452, 42403, 'en', 'name', 'European External Action Service'),
(50453, 42403, 'fr', 'name', 'Service europĆ©en pour l’action extĆ©rieure'),
(50454, 42403, 'nl', 'name', 'Europese Dienst voor extern optreden'),
(50455, 42404, 'en', 'name', 'Excellence & Friends Management Care Centre'),
(50456, 42405, 'fr', 'name', 'Institut National de Nutrition et de Technologie Alimentaire'),
(50457, 42406, 'en', 'name', 'China Executive Leadership Academy Pudong'),
(50458, 42406, 'zh', 'name', 'äø­å›½ęµ¦äøœå¹²éƒØå­¦é™¢'),
(50459, 42407, 'en', 'name', 'Alberta Foundation for the Arts'),
(50460, 42408, 'en', 'name', 'Central Mindanao Colleges'),
(50461, 42409, 'en', 'name', 'Swedish Polar Research Secretariat'),
(50462, 42409, 'sv', 'name', 'Polarforskningssekretariatet'),
(50463, 42410, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Mato Grosso'),
(50464, 42411, 'en', 'name', 'Bracknell and Wokingham College'),
(50465, 42412, 'en', 'name', 'Islamic Azad University of Shahrekord'),
(50466, 42412, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓهرکرد'),
(50467, 42413, 'no_lang_code', 'name', 'InfoBeyond Technology (United States)'),
(50468, 42414, 'no_lang_code', 'name', 'Laboratório Edol (Portugal)'),
(50469, 42415, 'en', 'name', 'Bellingen Shire Council'),
(50470, 42416, 'en', 'name', 'Saint Luke''s College of Health Sciences'),
(50471, 42417, 'en', 'name', 'Ulsan College'),
(50472, 42417, 'ko', 'name', 'ģšøģ‚°ź³¼ķ•™ėŒ€ķ•™źµ'),
(50473, 42418, 'no_lang_code', 'name', 'Helixor Heilmittel (Germany)'),
(50474, 42419, 'en', 'name', 'Kasturba Hospital'),
(50475, 42420, 'en', 'name', 'University of Agricultural Sciences Raichur'),
(50476, 42420, 'kn', 'name', 'ą²•ą³ƒą²·ą²æ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ą²°ą²¾ą²Æą²šą³‚ą²°ą³'),
(50477, 42421, 'en', 'name', 'Colgate Rochester Crozer Divinity School'),
(50478, 42422, 'pt', 'name', 'For Mar Centro de Formação Profissional das Pescas e do Mar'),
(50479, 42423, 'en', 'name', 'Alberta College'),
(50480, 42423, 'lv', 'name', 'Alberta Koledža'),
(50481, 42424, 'es', 'name', 'Comisión Sectorial de Investigación Científica'),
(50482, 42425, 'en', 'name', 'National Arts Council'),
(50483, 42425, 'ms', 'name', 'Majlis Kebudayaan Kebangsaan Singapura'),
(50484, 42425, 'zh', 'name', 'å›½å®¶č‰ŗęœÆē†äŗ‹ä¼š'),
(50485, 42426, 'en', 'name', 'Wellington City Council'),
(50486, 42427, 'en', 'name', 'Key Laboratory of Chemistry for Natural Products of Guizhou Province and Chinese Academy of Sciences'),
(50487, 42427, 'zh', 'name', 'č“µå·žēœäø­å›½ē§‘å­¦é™¢å¤©ē„¶äŗ§ē‰©åŒ–å­¦é‡ē‚¹å®žéŖŒå®¤'),
(50488, 42428, 'en', 'name', 'Vision West Nottinghamshire College'),
(50489, 42429, 'en', 'name', 'Giuseppe Salvatore Vaiana'),
(50490, 42429, 'it', 'name', 'Osservatorio Astronomico di Palermo'),
(50491, 42430, 'en', 'name', 'Texas Department of Family and Protective Services');
INSERT INTO `ror_settings` VALUES
(50492, 42431, 'pt', 'name', 'Teatro Nacional São João'),
(50493, 42432, 'sv', 'name', 'KungƤlvs Sjukhus'),
(50494, 42433, 'no_lang_code', 'name', 'Ssemwanga (Uganda)'),
(50495, 42434, 'no_lang_code', 'name', 'BNP Paribas (France)'),
(50496, 42435, 'en', 'name', 'Maple Springs Baptist Bible College and Seminary'),
(50497, 42436, 'en', 'name', 'Automotive Research Association of India'),
(50498, 42437, 'en', 'name', 'Azad University in Oxford'),
(50499, 42438, 'fr', 'name', 'TL & AssociƩs'),
(50500, 42439, 'en', 'name', 'Indian Spinal Injuries Centre'),
(50501, 42440, 'de', 'name', 'Ministerium für Wissenschaft, Forschung und Kultur'),
(50502, 42441, 'en', 'name', 'Norwegian Defence University College'),
(50503, 42441, 'no', 'name', 'Forsvarets HĆøgskoler'),
(50504, 42442, 'en', 'name', 'Nicolet Area Technical College'),
(50505, 42443, 'es', 'name', 'Instituto de Investigaciones en Fruticultura Tropical'),
(50506, 42444, 'en', 'name', 'Saint John''s School'),
(50507, 42445, 'en', 'name', 'Jan Amos Komeński State School of Higher Vocational Education'),
(50508, 42445, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Jana Amosa Komeńskiego w Lesznie'),
(50509, 42446, 'es', 'name', 'Ministerio de Ciencia y TecnologĆ­a'),
(50510, 42447, 'en', 'name', 'Blessing-Rieman College of Nursing'),
(50511, 42448, 'en', 'name', 'Institute of Synthetic Polymeric Materials'),
(50512, 42448, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ синтетических полимерных материалов им.Š.Š”.Ениколопова Российской акаГемии наук'),
(50513, 42449, 'no_lang_code', 'name', 'Newcrest Mining (Australia)'),
(50514, 42450, 'en', 'name', 'Rich Mountain Community College'),
(50515, 42451, 'en', 'name', 'Ministry of Unification'),
(50516, 42451, 'ko', 'name', 'ķ†µģ¼ė¶€'),
(50517, 42452, 'en', 'name', 'Africa Groundwater Network'),
(50518, 42453, 'no_lang_code', 'name', 'Canegrowers (Australia)'),
(50519, 42454, 'en', 'name', 'Nebraska Space Grant Consortium'),
(50520, 42455, 'en', 'name', 'Białystok Institute of Cosmetology and Healthcare'),
(50521, 42455, 'pl', 'name', 'Wyższa Szkoła Kosmetologii i Ochrony Zdrowia w Białymstoku'),
(50522, 42456, 'no_lang_code', 'name', 'Advanced Fiber Technologies (United States)'),
(50523, 42457, 'no_lang_code', 'name', 'Microsoft Research (India)'),
(50524, 42458, 'en', 'name', 'Saint Vincent Seminary'),
(50525, 42459, 'no_lang_code', 'name', 'Scope e-Knowledge Center (India)'),
(50526, 42460, 'en', 'name', 'Ohio Arts Council'),
(50527, 42461, 'no_lang_code', 'name', 'Imtek (Russia)'),
(50528, 42461, 'ru', 'name', 'Š˜Š¼Ń‚ŠµŠŗ'),
(50529, 42462, 'en', 'name', 'Newman Theological College'),
(50530, 42463, 'en', 'name', 'Texas Water Development Board'),
(50531, 42464, 'en', 'name', 'Arthritis Australia'),
(50532, 42465, 'en', 'name', 'Korea District Heating Corporation'),
(50533, 42466, 'en', 'name', 'Kerala School of Mathematics'),
(50534, 42467, 'en', 'name', 'Delaware College of Art and Design'),
(50535, 42468, 'en', 'name', 'Central Institute for Research on Buffaloes'),
(50536, 42469, 'en', 'name', 'College of the Resurrection'),
(50537, 42470, 'en', 'name', 'Nehru Trust'),
(50538, 42471, 'en', 'name', 'Ministry of Community Development, Mother and Child Health'),
(50539, 42472, 'en', 'name', 'Chinese Academy of Personnel Science'),
(50540, 42472, 'zh', 'name', '中国人事科学研究院'),
(50541, 42473, 'en', 'name', 'Kagawa Junior College'),
(50542, 42473, 'ja', 'name', 'é¦™å·ēŸ­ęœŸå¤§å­¦'),
(50543, 42474, 'de', 'name', 'Sparkassen-Finanzgruppe'),
(50544, 42475, 'en', 'name', 'Nordland Research Institute'),
(50545, 42475, 'no', 'name', 'Nordlandsforskning'),
(50546, 42476, 'en', 'name', 'Action for Agricultural Renewal in Maharashtra'),
(50547, 42477, 'en', 'name', 'San Francisco Theological Seminary'),
(50548, 42478, 'en', 'name', 'Geological Survey of Japan'),
(50549, 42478, 'ja', 'name', 'åœ°č³ŖčŖæęŸ»ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(50550, 42479, 'no_lang_code', 'name', 'APEX Technologies (France)'),
(50551, 42480, 'pt', 'name', 'Prefeitura Municipal do Natal'),
(50552, 42481, 'en', 'name', 'Seth Research Foundation'),
(50553, 42482, 'no_lang_code', 'name', 'Flora Pyramids Paper Mills'),
(50554, 42483, 'en', 'name', 'University of Northwestern Ohio'),
(50555, 42484, 'en', 'name', 'Playford Trust'),
(50556, 42485, 'en', 'name', 'Advanced Materials and Processes Research Institute'),
(50557, 42485, 'hi', 'name', 'ą¤Ŗą„ą¤°ą¤—ą¤¤ ą¤Ŗą¤¦ą¤¾ą¤°ą„ą¤„ तऄा ą¤Ŗą„ą¤°ą¤•ą„ą¤°ą¤® ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(50558, 42486, 'en', 'name', 'Institute of Computational Technologies'),
(50559, 42486, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… технологий Š”Šž Š ŠŠ'),
(50560, 42487, 'no_lang_code', 'name', 'Interacoustics (Denmark)'),
(50561, 42488, 'no_lang_code', 'name', 'SCG Chemicals (Thailand)'),
(50562, 42489, 'en', 'name', 'Southern African Research and Innovation Management Association'),
(50563, 42490, 'en', 'name', 'National Institute on Population Medical Genetics'),
(50564, 42490, 'pt', 'name', 'Instituto Nacional de GenƩtica MƩdica Populacional'),
(50565, 42491, 'no_lang_code', 'name', 'Alliance One Tobacco (Malawi)'),
(50566, 42492, 'en', 'name', 'Pacific Institute of Bioorganic Chemistry. GB Elyakova Far Eastern Branch of the Russian Academy of Sciences'),
(50567, 42492, 'ru', 'name', 'G Š‘ŠµŠ»ŃŠŗŠ¾Š² Тихоокеанский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биоорганической химии'),
(50568, 42493, 'en', 'name', 'New Hampshire Institute of Art'),
(50569, 42494, 'en', 'name', 'R.O.C Military Academy'),
(50570, 42494, 'zh', 'name', 'äø­čÆę°‘åœ‹é™øč»č»å®˜å­øę ”'),
(50571, 42495, 'no_lang_code', 'name', 'SinoGenoMax (China)'),
(50572, 42495, 'zh', 'name', 'åŒ—äŗ¬čÆŗčµ›åŸŗå› ē»„ē ”ē©¶äø­åæƒęœ‰é™å…¬åø'),
(50573, 42496, 'en', 'name', 'National Research Centre on Camel'),
(50574, 42496, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤‰ą¤·ą„ą¤Ÿą„ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(50575, 42497, 'en', 'name', 'Trinity Bible College'),
(50576, 42498, 'en', 'name', 'Seoul School of Integrated Sciences and Technologies'),
(50577, 42498, 'ko', 'name', 'ģ„œģšøź³¼ķ•™ģ¢…ķ•©ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(50578, 42499, 'en', 'name', 'Theodore Roosevelt High School'),
(50579, 42500, 'en', 'name', 'National Climate Change Adaptation Research Facility'),
(50580, 42501, 'pl', 'name', 'Collegium Mazovia Innowacyjna Szkoła Wyższa'),
(50581, 42502, 'no_lang_code', 'name', 'Genetech (Sri Lanka)'),
(50582, 42503, 'no_lang_code', 'name', 'Naskeo Environnement (France)'),
(50583, 42504, 'en', 'name', 'Coffee Research Institute'),
(50584, 42505, 'no_lang_code', 'name', 'Antrix Corporation (India)'),
(50585, 42506, 'en', 'name', 'All-Russian Scientific Research Institute of Radiology and AgroEcology'),
(50586, 42506, 'ru', 'name', 'All-Ń€ŃƒŃŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиологии Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(50587, 42507, 'en', 'name', 'Weatherford College'),
(50588, 42508, 'en', 'name', 'Graduate School for the Creation of New Photonics Industries'),
(50589, 42508, 'ja', 'name', 'å…‰ē”£ę„­å‰µęˆå¤§å­¦é™¢å¤§å­¦'),
(50590, 42509, 'no_lang_code', 'name', 'Mclean Media (United States)'),
(50591, 42510, 'no_lang_code', 'name', 'Otter Tail Corporation (United States)'),
(50592, 42511, 'no_lang_code', 'name', 'Encapson (Netherlands)'),
(50593, 42512, 'fr', 'name', 'Institut Togolais de Recherche Agronomique'),
(50594, 42513, 'en', 'name', 'Urban College of Boston'),
(50595, 42514, 'en', 'name', 'Department of Culture and the Arts'),
(50596, 42515, 'en', 'name', 'Centre for Forest Ecology and Productivity'),
(50597, 42515, 'ru', 'name', 'Центр по проблемам ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø ŠæŃ€Š¾Š“ŃƒŠŗŃ‚ŠøŠ²Š½Š¾ŃŃ‚Šø лесов Š ŠŠ'),
(50598, 42516, 'en', 'name', 'National Dairy Development Board'),
(50599, 42517, 'en', 'name', 'Beijing Xuanwu Traditional Chinese Medicine Hospital'),
(50600, 42517, 'zh', 'name', 'åŒ—äŗ¬åø‚å®£ę­¦äø­åŒ»åŒ»é™¢'),
(50601, 42518, 'pt', 'name', 'Secretaria de Estado da Ciência, Tecnologia e Inovação'),
(50602, 42519, 'en', 'name', 'Caritas Nigeria'),
(50603, 42520, 'en', 'name', 'Military Geographical Institute'),
(50604, 42520, 'sr', 'name', 'Vojnogeografski institut'),
(50605, 42521, 'fr', 'name', 'Haute Ɖcole des Arts du Rhin'),
(50606, 42522, 'en', 'name', 'Government College for Women Anantnag'),
(50607, 42522, 'ur', 'name', 'ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ کالج Ų®ŁˆŲ§ŲŖŪŒŁ† اننت ناگ'),
(50608, 42523, 'no_lang_code', 'name', 'Human Factors International (India)'),
(50609, 42524, 'en', 'name', 'French Institute for Research in Africa'),
(50610, 42525, 'fr', 'name', 'Commissariat GƩnƩral Ơ l''Investissement'),
(50611, 42526, 'en', 'name', 'Integrated Community Based Initiatives'),
(50612, 42527, 'en', 'name', 'Pawel Wlodkowic University College in Płock'),
(50613, 42527, 'pl', 'name', 'Szkola Wyzsza im. Pawla Wlodkowica w Plocku'),
(50614, 42528, 'no_lang_code', 'name', 'Celfinet (Portugal)'),
(50615, 42529, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia em EletrÓnica Orgânica'),
(50616, 42530, 'en', 'name', 'Owensboro Community and Technical College'),
(50617, 42531, 'ko', 'name', 'ķ•œźµ­ģ—ģžģ“'),
(50618, 42531, 'no_lang_code', 'name', 'Eisai (South Korea)'),
(50619, 42532, 'no_lang_code', 'name', 'Behavior Imaging Solutions (United States)'),
(50620, 42533, 'en', 'name', 'National Center for Technology Management'),
(50621, 42534, 'it', 'name', 'Conservatorio di Musica Girolamo Frescobaldi'),
(50622, 42535, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia de Processos Redox em Biomedicina'),
(50623, 42536, 'en', 'name', 'Russian Association of Indigenous Peoples of the North'),
(50624, 42536, 'ru', 'name', 'ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ коренных, малочисленных нароГов Девера, Дибири Šø Š”Š°Š»ŃŒŠ½ŠµŠ³Š¾ Востока Российской ФеГерации'),
(50625, 42537, 'en', 'name', 'Dundee and Angus College'),
(50626, 42538, 'en', 'name', 'Holy Cross University'),
(50627, 42539, 'en', 'name', 'Zimbabwe National Water Authority'),
(50628, 42540, 'en', 'name', 'Russian Railways'),
(50629, 42540, 'ru', 'name', 'Российские железные Гороги'),
(50630, 42541, 'en', 'name', 'Niskamoon Corporation'),
(50631, 42542, 'it', 'name', 'Conservatorio di Musica Luigi Cherubini'),
(50632, 42543, 'en', 'name', 'National Institute of Science, Technology and Development Studies'),
(50633, 42543, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø, ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ और विकास ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(50634, 42544, 'es', 'name', 'Instituto Tecnológico de León'),
(50635, 42545, 'en', 'name', 'Ohio Business College'),
(50636, 42546, 'en', 'name', 'Institute of Solution Chemistry'),
(50637, 42546, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии растворов им. Š“.А. ŠšŃ€ŠµŃŃ‚Š¾Š²Š° Российской акаГемии наук'),
(50638, 42547, 'en', 'name', 'Bates Technical College'),
(50639, 42548, 'fr', 'name', 'Ɖcole SupĆ©rieure des Arts Saint-Luc de LiĆØge'),
(50640, 42549, 'sl', 'name', 'School Centre Celje, Å olski center Celje'),
(50641, 42550, 'no_lang_code', 'name', 'Njala University'),
(50642, 42551, 'ja', 'name', '志學館大学'),
(50643, 42551, 'no_lang_code', 'name', 'Shigakukan University'),
(50644, 42552, 'en', 'name', '305 Hospital of People Liberation Army'),
(50645, 42552, 'zh', 'name', '中国人民解放军第三0äŗ”åŒ»é™¢'),
(50646, 42553, 'en', 'name', 'Northern Lakes College'),
(50647, 42554, 'en', 'name', 'Clarence Valley Council'),
(50648, 42555, 'en', 'name', 'Vermont Space Grant Consortium'),
(50649, 42556, 'en', 'name', 'Southern Crescent Technical College'),
(50650, 42557, 'en', 'name', 'South Texas College'),
(50651, 42558, 'en', 'name', 'Santa Clara County Library District'),
(50652, 42559, 'en', 'name', 'Changjiang Water Resources Commission'),
(50653, 42559, 'zh', 'name', 'é•æę±Ÿę°“åˆ©å§”å‘˜ä¼šę°“ę–‡å±€'),
(50654, 42560, 'en', 'name', 'Diamond and Precious Metal Geology Institute'),
(50655, 42560, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии алмаза Šø благороГных металлов Š”Šž Š ŠŠ'),
(50656, 42561, 'en', 'name', 'South Downs College'),
(50657, 42562, 'en', 'name', 'Nash Community College'),
(50658, 42563, 'fr', 'name', 'Direction de la MƩtƩorologie Nationale'),
(50659, 42564, 'no_lang_code', 'name', 'Cosmos Limited'),
(50660, 42565, 'en', 'name', 'Meenakshi Medical College Hospital and Research Institute'),
(50661, 42566, 'pl', 'name', 'Uczelnia Jańskiego w Łomży'),
(50662, 42567, 'sl', 'name', 'Å olski Center Postojna'),
(50663, 42568, 'de', 'name', 'Biotechnologie Institut Thurgau'),
(50664, 42568, 'en', 'name', 'Biotechnology Institute Thurgau'),
(50665, 42569, 'en', 'name', 'Hartlepool College of Further Education'),
(50666, 42570, 'en', 'name', 'Institute of Cosmophysical Research and Radio Wave Propagation'),
(50667, 42570, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космофизических исслеГований Šø Ń€Š°ŃŠæŃ€Š¾ŃŃ‚Ń€Š°Š½ŠµŠ½ŠøŃ раГиоволн'),
(50668, 42571, 'fr', 'name', 'Proche-Orient, Caucase : Langues, ArchƩologie, Cultures'),
(50669, 42572, 'en', 'name', 'National Directorate of Geology'),
(50670, 42573, 'es', 'name', 'Instituto Universitario General GutiƩrrez Mellado'),
(50671, 42574, 'es', 'name', 'Hospital Universitario Dr JosƩ Eleuterio Gonzalez'),
(50672, 42575, 'pt', 'name', 'Escola BƔsica Integrada da Horta'),
(50673, 42576, 'en', 'name', 'Summit Pacific College'),
(50674, 42577, 'no_lang_code', 'name', 'Duke Energy (United States)'),
(50675, 42578, 'no_lang_code', 'name', 'TCG Lifesciences (India)'),
(50676, 42579, 'de', 'name', 'Hochschule für Gestaltung Offenbach'),
(50677, 42579, 'en', 'name', 'University of Art and Design Offenbach'),
(50678, 42580, 'en', 'name', 'Bowel and Cancer Research'),
(50679, 42581, 'fr', 'name', 'Laboratoire des SystĆØmes Perceptifs'),
(50680, 42582, 'en', 'name', 'Pakistan Army'),
(50681, 42582, 'ur', 'name', 'پاک ŁŁˆŲ¬ā€Ž'),
(50682, 42583, 'pt', 'name', 'Santa Casa da Misericórdia de Almeirim'),
(50683, 42584, 'en', 'name', 'Guangxi Academy of Fishery Sciences'),
(50684, 42584, 'zh', 'name', '广脿氓产科学研究院'),
(50685, 42585, 'en', 'name', 'Newbold College of Higher Education'),
(50686, 42586, 'es', 'name', 'Servicio Canario de la Salud'),
(50687, 42587, 'en', 'name', 'Image Processing Systems Institute'),
(50688, 42587, 'ru', 'name', 'ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систем обработки изображений'),
(50689, 42588, 'es', 'name', 'Centro Nacional de Investigación y Desarrollo Tecnológico'),
(50690, 42589, 'no_lang_code', 'name', 'Home Depot (United States)'),
(50691, 42590, 'en', 'name', 'Moultrie Technical College'),
(50692, 42591, 'en', 'name', 'Ataxia UK'),
(50693, 42592, 'en', 'name', 'Ministry of Culture, Community and Youth'),
(50694, 42592, 'ms', 'name', 'Kementerian Kebudayaan, Masyarakat dan Belia'),
(50695, 42592, 'ta', 'name', 'ą®•ą®²ą®¾ą®šą®¾ą®°, ą®šą®®ąÆ‚ą®•, ą®‡ą®³ąÆˆą®Æą®°ąÆą®¤ąÆą®±ąÆˆ ą®…ą®®ąÆˆą®šąÆą®šąÆ'),
(50696, 42592, 'zh', 'name', 'ę–‡åŒ–ć€ē¤¾åŒŗåŠé’å¹“éƒØ'),
(50697, 42593, 'en', 'name', 'Lake Victoria Fisheries Organization'),
(50698, 42594, 'en', 'name', 'Ethiopian Agricultural Transformation Agency'),
(50699, 42595, 'en', 'name', 'Utica School of Commerce'),
(50700, 42596, 'en', 'name', 'Milwaukee Institute of Art & Design'),
(50701, 42597, 'it', 'name', 'Conservatorio di Musica Giacomo Puccini'),
(50702, 42598, 'en', 'name', 'Chinese People''s Armed Police Force Engineering University'),
(50703, 42598, 'zh', 'name', 'äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜Ÿå·„ēØ‹å¤§å­¦'),
(50704, 42599, 'en', 'name', 'Alexander Graham Bell Association for the Deaf and Hard of Hearing'),
(50705, 42600, 'no_lang_code', 'name', 'Goldman Sachs (United States)'),
(50706, 42601, 'fr', 'name', 'Ɖcole de Formation Professionnelle des Barreaux de la Cour d''Appel de Paris'),
(50707, 42602, 'fr', 'name', 'Centre de la MƩditerranƩe Moderne et Contemporaine'),
(50708, 42603, 'en', 'name', 'West New York School District'),
(50709, 42604, 'en', 'name', 'Intercollegiate Studies Institute'),
(50710, 42605, 'en', 'name', 'International Space University'),
(50711, 42606, 'en', 'name', 'Citizens for Justice'),
(50712, 42607, 'pt', 'name', 'Associação de Municípios do Vale do Sousa'),
(50713, 42608, 'en', 'name', 'County Administrative Board'),
(50714, 42608, 'sv', 'name', 'LƤnsstyrelsen Ɩstergƶtland'),
(50715, 42609, 'fr', 'name', 'Laboratoire d''Ɖtudes et de Recherche sur les Dynamiques Sociales et le DĆ©veloppement Local'),
(50716, 42610, 'pt', 'name', 'Faculdade SumarƩ'),
(50717, 42611, 'en', 'name', 'Hunan Women''S University'),
(50718, 42611, 'zh', 'name', 'ę¹–å—å„³å­å­¦é™¢'),
(50719, 42612, 'en', 'name', 'Turkish Armed Forces Foundation'),
(50720, 42612, 'tr', 'name', 'Turk Silahli Kuvvetlerini Guclendirme Vakfi'),
(50721, 42613, 'en', 'name', 'Kathmandu College of Management'),
(50722, 42614, 'en', 'name', 'Michigan State Housing Development Authority'),
(50723, 42615, 'en', 'name', 'Recycled Materials Resource Center'),
(50724, 42616, 'no_lang_code', 'name', 'Magbro Healthcare (India)'),
(50725, 42617, 'pt', 'name', 'Serviço Social da Indústria de Santa Catarina'),
(50726, 42618, 'no_lang_code', 'name', 'Osta Bio Technologies (Canada)'),
(50727, 42619, 'en', 'name', 'Medical Letter'),
(50728, 42620, 'en', 'name', 'Citigroup'),
(50729, 42621, 'en', 'name', 'Republic of Korea Army'),
(50730, 42621, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ 윔군'),
(50731, 42622, 'en', 'name', 'Energy, Environment and Development Network for Africa'),
(50732, 42623, 'en', 'name', 'Research Institute of Highway'),
(50733, 42623, 'zh', 'name', 'äŗ¤é€ščæč¾“éƒØå…¬č·Æē§‘å­¦ē ”ē©¶é™¢'),
(50734, 42624, 'en', 'name', 'Tamaulipas Institute of Higher Education'),
(50735, 42624, 'es', 'name', 'Instituto de Estudios Superiores de Tamaulipas'),
(50736, 42625, 'pt', 'name', 'Confraria de Santa Luzia'),
(50737, 42626, 'en', 'name', 'University of Occupational Safety Management in Katowice'),
(50738, 42627, 'en', 'name', 'National Operating Committee on Standards for Athletic Equipment'),
(50739, 42628, 'en', 'name', 'Niuvanniemi Hospital'),
(50740, 42628, 'fi', 'name', 'Nuvanniemen Sairala'),
(50741, 42629, 'en', 'name', 'Institute of World Economics and Politics'),
(50742, 42629, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢äø–ē•Œē»ęµŽäøŽę”æę²»ē ”ē©¶ę‰€'),
(50743, 42630, 'en', 'name', 'Institute of Plasma Physics'),
(50744, 42630, 'zh', 'name', '中国科学院等离子体物理研究所'),
(50745, 42631, 'en', 'name', 'Korean Society of Speech Sciences'),
(50746, 42632, 'de', 'name', 'Statistische Amt der EuropƤischen Union'),
(50747, 42632, 'fr', 'name', 'Eurostat, Eurostat – Statistiques europĆ©ennes'),
(50748, 42633, 'en', 'name', 'McCormick Theological Seminary'),
(50749, 42634, 'en', 'name', 'Manhattan School of Music'),
(50750, 42635, 'pl', 'name', 'Wyższa Szkoła Zdrowia Urody i Edukacji'),
(50751, 42636, 'en', 'name', 'College of Intensive Care Medicine'),
(50752, 42637, 'de', 'name', 'Technische Hochschule Georg Agricola'),
(50753, 42638, 'it', 'name', 'Conservatorio di Musica Niccolò Paganini'),
(50754, 42639, 'en', 'name', 'Lenape Regional High School District'),
(50755, 42640, 'en', 'name', 'Pennsylvania Sea Grant'),
(50756, 42641, 'en', 'name', 'Gates Cambridge Trust'),
(50757, 42642, 'en', 'name', 'Office of the Civil Service Commission'),
(50758, 42642, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø„ąø“ąø°ąøąø£ąø£ąø”ąøąø²ąø£ąø‚ą¹‰ąø²ąø£ąø²ąøŠąøąø²ąø£ąøžąø„ą¹€ąø£ąø·ąø­ąø™'),
(50759, 42643, 'en', 'name', 'Royal Conservatory of Brussels'),
(50760, 42643, 'nl', 'name', 'Conservatoire royal de Bruxelles'),
(50761, 42644, 'en', 'name', 'Center for Enabling New Technologies Through Catalysis'),
(50762, 42645, 'en', 'name', 'China National Administration of Coal Geology'),
(50763, 42646, 'en', 'name', 'Safari Club International'),
(50764, 42647, 'en', 'name', 'Scottish School of Christian Mission'),
(50765, 42648, 'en', 'name', 'Institute of Experimental Medicine'),
(50766, 42648, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины'),
(50767, 42649, 'en', 'name', 'Fraser Institute'),
(50768, 42650, 'ro', 'name', 'Camera de Comerț Industrie și Agricultură Timișoara'),
(50769, 42651, 'no_lang_code', 'name', 'Beginning (Bangladesh)'),
(50770, 42652, 'no_lang_code', 'name', 'Adecco (Switzerland)'),
(50771, 42653, 'en', 'name', 'Information-Technology Promotion Agency'),
(50772, 42653, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗęƒ…å ±å‡¦ē†ęŽØé€²ę©Ÿę§‹'),
(50773, 42654, 'no_lang_code', 'name', 'Volkswagen Group (United States)'),
(50774, 42655, 'en', 'name', 'Eastern West Virginia Community and Technical College'),
(50775, 42656, 'no_lang_code', 'name', 'Rayat Shikshan Sanstha'),
(50776, 42657, 'no_lang_code', 'name', 'Tasly Holding Group (China)'),
(50777, 42658, 'no_lang_code', 'name', 'Pikitup'),
(50778, 42659, 'en', 'name', 'National Blood Service Zimbabwe'),
(50779, 42660, 'en', 'name', 'Maharaja Engineering College'),
(50780, 42661, 'en', 'name', 'Social Integration State Agency'),
(50781, 42661, 'lv', 'name', 'Sociālās Integrācijas Valsts Aģentūrā'),
(50782, 42662, 'en', 'name', 'GSL Medical College & General Hospital'),
(50783, 42663, 'en', 'name', 'Development Aid from People to People in Zambia'),
(50784, 42664, 'en', 'name', 'Goma Volcanological Observatory'),
(50785, 42664, 'fr', 'name', 'Observatoire Volcanologique de Goma'),
(50786, 42665, 'en', 'name', 'Eisenhower Fellowships'),
(50787, 42666, 'no_lang_code', 'name', 'Epistar (Taiwan)'),
(50788, 42667, 'no_lang_code', 'name', 'Royal Caribbean Cruises (United States)'),
(50789, 42668, 'no_lang_code', 'name', 'Graftys (France)'),
(50790, 42669, 'pt', 'name', 'Faculdade Novos Horizontes'),
(50791, 42670, 'en', 'name', 'American College of Dubai'),
(50792, 42671, 'en', 'name', 'West Kentucky Community and Technical College'),
(50793, 42672, 'no_lang_code', 'name', 'AbbVie (Germany)'),
(50794, 42673, 'en', 'name', 'Sahelian Solutions Foundation'),
(50795, 42674, 'en', 'name', 'Oil Crops Research Institute'),
(50796, 42674, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ę²¹ę–™ä½œē‰©ē ”ē©¶ę‰€'),
(50797, 42675, 'en', 'name', 'West African College of Physicians'),
(50798, 42676, 'en', 'name', 'Institute of Bio-Resources and Sustainable Development'),
(50799, 42677, 'en', 'name', 'Midwestern Baptist Theological Seminary'),
(50800, 42678, 'hr', 'name', 'Fakultet za Mediteranske Poslovne Studije'),
(50801, 42679, 'en', 'name', 'Baltic Methodist Theological Seminary'),
(50802, 42680, 'en', 'name', 'National Agency for Energy Management'),
(50803, 42680, 'fr', 'name', 'Agence Nationale pour la MaƮtrise de l''Energie'),
(50804, 42681, 'en', 'name', 'Government of Gujarat'),
(50805, 42682, 'en', 'name', 'Teaching Learning & Research Initiative'),
(50806, 42683, 'en', 'name', 'Mission College'),
(50807, 42684, 'en', 'name', 'Good Shepherd College'),
(50808, 42685, 'hr', 'name', 'VeleučiliŔte Velika Gorica'),
(50809, 42686, 'en', 'name', 'Yeshiva Ohr Elchonon Chabad West Coast Talmudical Seminary'),
(50810, 42687, 'de', 'name', 'Hessische Hochschule für Finanzen und Rechtspflege'),
(50811, 42688, 'en', 'name', 'Houston Graduate School of Theology'),
(50812, 42689, 'en', 'name', 'Institute of Developmental Physiology'),
(50813, 42689, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ возрастной физиологии'),
(50814, 42690, 'no_lang_code', 'name', '21st Century Technologies (United States)'),
(50815, 42691, 'fr', 'name', 'Institut RĆ©gional d’Administration de Lille'),
(50816, 42692, 'en', 'name', 'Institute of Biology of Karelian Research Centre'),
(50817, 42692, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии ŠšŠ°Ń€ŠŠ¦ Š ŠŠ'),
(50818, 42693, 'en', 'name', 'Baobab Health Trust'),
(50819, 42694, 'en', 'name', 'First Affiliated Hospital of Henan University of Science and Technology'),
(50820, 42695, 'no_lang_code', 'name', 'Illovo Sugar (South Africa)'),
(50821, 42696, 'no_lang_code', 'name', 'Springer Publishing Company (United States)'),
(50822, 42697, 'en', 'name', 'Center for Economic Research and Graduate Education – Economics Institute'),
(50823, 42698, 'en', 'name', 'Forestry Research Institute of Karelian Research Centre'),
(50824, 42698, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ леса ŠšŠ°Ń€ŠŠ¦'),
(50825, 42699, 'en', 'name', 'The Master''s Seminary'),
(50826, 42700, 'en', 'name', 'Central Soil Salinity Research Institute'),
(50827, 42701, 'en', 'name', 'Ministry for Foreign Affairs of Iceland'),
(50828, 42701, 'is', 'name', 'UtanrƭkisrƔưuneytiư'),
(50829, 42702, 'de', 'name', 'Hochschule Weserbergland'),
(50830, 42703, 'en', 'name', 'Lincoln College'),
(50831, 42704, 'en', 'name', 'Hong Kong Academy of Medicine'),
(50832, 42705, 'no_lang_code', 'name', 'Sonae (Portugal)'),
(50833, 42706, 'no_lang_code', 'name', 'Microchem (South Africa)'),
(50834, 42707, 'no_lang_code', 'name', 'ELITech Group (France)'),
(50835, 42708, 'no_lang_code', 'name', 'NuVasive (United States)'),
(50836, 42709, 'bn', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ भारत ą¤Ŗą¤°ą¤æą¤µą¤°ą„ą¤¤ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(50837, 42709, 'en', 'name', 'National Institution for Transforming India Aayog'),
(50838, 42710, 'de', 'name', 'Fliedner Fachhochschule Düsseldorf'),
(50839, 42710, 'en', 'name', 'University of Applied Sciences Fliedner Fachhochschule'),
(50840, 42711, 'en', 'name', 'Pearl River Hydraulic Research Institute'),
(50841, 42711, 'zh', 'name', 'ē ę±Ÿę°“åˆ©å§”å‘˜ä¼šē ę±Ÿę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(50842, 42712, 'en', 'name', 'Apiculture Science Institute of Jinlin province'),
(50843, 42712, 'zh', 'name', 'å‰ęž—ēœå…»čœ‚ē§‘å­¦ē ”ē©¶ę‰€'),
(50844, 42713, 'it', 'name', 'Fondazione Lanza'),
(50845, 42714, 'en', 'name', 'Shandong Marine Resource and Environment Research Institute'),
(50846, 42714, 'zh', 'name', 'å±±äøœēœęµ·ę“‹čµ„ęŗäøŽēŽÆå¢ƒē ”ē©¶é™¢'),
(50847, 42715, 'en', 'name', 'Healthcare in Sweden'),
(50848, 42716, 'no_lang_code', 'name', 'Cognizant (United States)'),
(50849, 42717, 'en', 'name', 'Korea Creative Content Agency'),
(50850, 42718, 'en', 'name', 'DellArte International School of Physical Theatre'),
(50851, 42719, 'en', 'name', 'Riga Technical College'),
(50852, 42719, 'lv', 'name', 'Rigas Tehniska Koledza'),
(50853, 42720, 'ca', 'name', 'Fidmag Germanes HospitalĆ ries'),
(50854, 42720, 'en', 'name', 'Fidmag Sisters Hospitallers'),
(50855, 42720, 'es', 'name', 'Fidmag Hermanas Hospitalarias'),
(50856, 42721, 'no_lang_code', 'name', 'Hardik Fintrade (India)'),
(50857, 42722, 'en', 'name', 'Trinity Theological College'),
(50858, 42723, 'de', 'name', 'Generaldirektion Dolmetschen'),
(50859, 42723, 'en', 'name', 'Directorate-General for Interpretation'),
(50860, 42723, 'fr', 'name', 'Direction GĆ©nĆ©rale de l’interprĆ©tation'),
(50861, 42724, 'no_lang_code', 'name', 'IIDC (India)'),
(50862, 42725, 'it', 'name', 'Accademia di Belle Arti dell''Aquila'),
(50863, 42726, 'en', 'name', 'Unit for Research and Development of Information Products'),
(50864, 42727, 'en', 'name', 'African Center of Meteorological Application for Development'),
(50865, 42728, 'es', 'name', 'Instituto Tecnológico de Tepic'),
(50866, 42729, 'en', 'name', 'Energy Research Institute'),
(50867, 42729, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований Российской акаГемии наук'),
(50868, 42730, 'en', 'name', 'Illinois Department of Children and Family Services'),
(50869, 42731, 'en', 'name', 'English Speaking Union'),
(50870, 42732, 'en', 'name', 'Colleges of Medicine of South Africa'),
(50871, 42733, 'en', 'name', 'Icelandic International Development Agency'),
(50872, 42733, 'is', 'name', 'Próunarsamvinnustofnun ƍslands'),
(50873, 42734, 'fr', 'name', 'Ɖcole SupĆ©rieure d''IngĆ©nieurs des Travaux de la Construction de Cachan'),
(50874, 42735, 'en', 'name', 'Centre for Operations Research and Training'),
(50875, 42736, 'en', 'name', 'Royal College of Pathologists'),
(50876, 42737, 'en', 'name', 'Craven College'),
(50877, 42738, 'en', 'name', 'Department of Arts and Culture'),
(50878, 42739, 'no_lang_code', 'name', 'Wells Fargo (United States)'),
(50879, 42740, 'en', 'name', 'Blue Ridge Community and Technical College'),
(50880, 42741, 'en', 'name', 'Bangladesh College of Physicians and Surgeons'),
(50881, 42742, 'da', 'name', 'Scleroseforeningen'),
(50882, 42743, 'en', 'name', 'Hibbing Community College'),
(50883, 42744, 'en', 'name', 'Kingston College'),
(50884, 42745, 'en', 'name', 'Montpellier Business School'),
(50885, 42745, 'fr', 'name', 'Ɖcole SupĆ©rieure de Commerce de Montpellier'),
(50886, 42746, 'no_lang_code', 'name', 'WSO2 (Sri Lanka)'),
(50887, 42747, 'en', 'name', 'Urshan Graduate School of Theology'),
(50888, 42748, 'en', 'name', 'South Central College'),
(50889, 42749, 'en', 'name', 'Ministry of Natural Resources and Environment'),
(50890, 42749, 'ms', 'name', 'Kementerian Sumber Asli dan Alam Sekitar'),
(50891, 42750, 'en', 'name', 'Lyceum College'),
(50892, 42751, 'en', 'name', 'African Union of Public Transport'),
(50893, 42752, 'en', 'name', 'Krishak Bharati Cooperative'),
(50894, 42753, 'en', 'name', 'International Tropical Timber Organization'),
(50895, 42754, 'no_lang_code', 'name', 'Hetero Drugs (India)'),
(50896, 42755, 'en', 'name', 'European Council of International Schools'),
(50897, 42756, 'fr', 'name', 'Institut d''Urbanisme et d''AmƩnagement RƩgional'),
(50898, 42757, 'no_lang_code', 'name', 'Return on Intelligence (Latvia)'),
(50899, 42758, 'pt', 'name', 'Grupo Hospitalar Conceição'),
(50900, 42759, 'no_lang_code', 'name', 'Nile Valley Engineering (Egypt)'),
(50901, 42760, 'en', 'name', 'Supreme Prosecutors Office of the Republic of Korea'),
(50902, 42760, 'ko', 'name', '검찰청'),
(50903, 42761, 'en', 'name', 'Agro-Environmental Protection Institute'),
(50904, 42761, 'zh', 'name', 'å†œäøšéƒØēŽÆå¢ƒäæęŠ¤ē§‘ē ”ē›‘ęµ‹ę‰€'),
(50905, 42762, 'en', 'name', 'World Federation for Mental Health'),
(50906, 42763, 'de', 'name', 'Hochschule für Angewandtes Management'),
(50907, 42763, 'en', 'name', 'University of Applied Management'),
(50908, 42764, 'hr', 'name', 'Visoka Å kola za Informacijske Tehnologije Zagreb'),
(50909, 42765, 'no_lang_code', 'name', 'Guavus (India)'),
(50910, 42766, 'en', 'name', 'Great Lakes Institute of Management'),
(50911, 42767, 'en', 'name', 'Early Learning Coalition of Miami Dade Monroe'),
(50912, 42768, 'en', 'name', 'Gambling Awareness Nova Scotia'),
(50913, 42769, 'en', 'name', 'Directorate of Groundnut Research'),
(50914, 42769, 'hi', 'name', 'ą¤®ą„‚ą¤ą¤—ą¤«ą¤²ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(50915, 42770, 'pl', 'name', 'Wyższa Szkoła Zarządzania i Przedsiębiorczości'),
(50916, 42771, 'en', 'name', 'South Essex College'),
(50917, 42772, 'sw', 'name', 'Chama Cha Uzazi na Malezi Bora Tanzania'),
(50918, 42773, 'no_lang_code', 'name', 'SiaMed’Xpress (France)'),
(50919, 42774, 'no_lang_code', 'name', 'Africagrowth Institute (South Africa)'),
(50920, 42775, 'en', 'name', 'Pikes Peak Community College'),
(50921, 42776, 'en', 'name', 'School of Advanced Study'),
(50922, 42777, 'fr', 'name', 'LycƩe Louis-le-Grand'),
(50923, 42778, 'cs', 'name', 'VysokÔ Ŕkola ekonomie a managementu'),
(50924, 42778, 'en', 'name', 'University of Economics and Management'),
(50925, 42779, 'en', 'name', 'Guizhou Academy of Environmental Science and Design'),
(50926, 42779, 'zh', 'name', 'č“µå·žēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶č®¾č®”é™¢'),
(50927, 42780, 'en', 'name', 'Daeshin University'),
(50928, 42780, 'ko', 'name', 'ėŒ€ģ‹ ėŒ€ķ•™źµ'),
(50929, 42781, 'en', 'name', 'New Mexico Legislature'),
(50930, 42782, 'en', 'name', 'ASA College'),
(50931, 42783, 'en', 'name', 'Korea Legislation Research Institute'),
(50932, 42783, 'ko', 'name', 'ķ•œźµ­ė²•ģ œģ—°źµ¬ģ›'),
(50933, 42784, 'en', 'name', 'Madisonville Community College'),
(50934, 42785, 'en', 'name', 'Government Dental College and Hospital'),
(50935, 42786, 'no_lang_code', 'name', 'McDermott International (United States)'),
(50936, 42787, 'no_lang_code', 'name', 'Remidio Innovative Solutions (India)'),
(50937, 42788, 'no_lang_code', 'name', 'B. Braun (United States)'),
(50938, 42789, 'en', 'name', 'Royal Anthropological Institute'),
(50939, 42790, 'pt', 'name', 'Escola Superior Aberta do Brasil'),
(50940, 42791, 'en', 'name', 'Islamic Azad University Central Tehran Branch'),
(50941, 42791, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران Ł…Ų±Ś©Ų²ŪŒ'),
(50942, 42792, 'en', 'name', 'Civitan International'),
(50943, 42793, 'en', 'name', 'De La Salle University – DasmariƱas'),
(50944, 42794, 'no_lang_code', 'name', 'New York Life Insurance Company (United States)'),
(50945, 42795, 'en', 'name', 'Research Institute of National Schools of the Republic of Sakha'),
(50946, 42795, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… школ Республики Даха'),
(50947, 42796, 'en', 'name', 'Southern Virginia University'),
(50948, 42797, 'no_lang_code', 'name', 'Adaptix (United Kingdom)'),
(50949, 42798, 'en', 'name', 'Jacksonville College'),
(50950, 42799, 'no_lang_code', 'name', 'Rashtreeya Sikshana Samithi Trust'),
(50951, 42800, 'en', 'name', 'Junior League of Des Moines'),
(50952, 42801, 'en', 'name', 'Institute of Industrial Economics'),
(50953, 42801, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å·„äøšē»ęµŽē ”ē©¶ę‰€'),
(50954, 42802, 'de', 'name', 'Naturhistorisches Museum, Staatliches Naturhistorisches Museum'),
(50955, 42803, 'en', 'name', 'Canadian Mental Health Association'),
(50956, 42804, 'en', 'name', 'Institute of Mechanics and Engineering'),
(50957, 42804, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики Šø Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ ŠšŠ°Š·ŠŠ¦ Š ŠŠ'),
(50958, 42805, 'it', 'name', 'Conservatorio di Verona Evaristo Felice Dall Abaco'),
(50959, 42806, 'no_lang_code', 'name', 'LFB (France)'),
(50960, 42807, 'en', 'name', 'Maharashtra State Board of Technical Education'),
(50961, 42808, 'de', 'name', 'bbw Hochschule'),
(50962, 42808, 'en', 'name', 'bbw University of Applied Sciences'),
(50963, 42809, 'en', 'name', 'Mesalands Community College'),
(50964, 42810, 'no_lang_code', 'name', 'Webster Bank (United States)'),
(50965, 42811, 'de', 'name', 'Mediadesign Hochschule für Design und Informatik'),
(50966, 42811, 'en', 'name', 'Media Design University for Design and Computer Science'),
(50967, 42812, 'en', 'name', 'Western Theological Seminary'),
(50968, 42813, 'bg', 'name', 'Š’ŠøŃŃˆŠµ Училище по Š”ŠøŠ³ŃƒŃ€Š½Š¾ŃŃ‚ Šø Икономика'),
(50969, 42813, 'en', 'name', 'University of Security and Economics'),
(50970, 42814, 'en', 'name', 'Virginia Commission on Youth'),
(50971, 42815, 'en', 'name', 'Thaddeus Stevens College of Technology'),
(50972, 42816, 'en', 'name', 'Music Conservatory of Mantova'),
(50973, 42816, 'it', 'name', 'Conservatorio di Musica "Lucio Campiani"'),
(50974, 42817, 'fr', 'name', 'Ɖcole d''Enseignement SupĆ©rieur d''Art de Bordeaux'),
(50975, 42818, 'fr', 'name', 'Technologie AvancƩe et Membranes Industrielles'),
(50976, 42818, 'no_lang_code', 'name', 'TAMI Industries (France)'),
(50977, 42819, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† ŲØŲŖŁˆŁ†Ų³'),
(50978, 42819, 'en', 'name', 'National Engineering School of Tunis'),
(50979, 42819, 'fr', 'name', 'Ɖcole Nationale d''IngĆ©nieurs de Tunis'),
(50980, 42820, 'en', 'name', 'Pope St. John XXIII National Seminary'),
(50981, 42821, 'en', 'name', 'Islamic Azad University Shabestar'),
(50982, 42821, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“ŲØŲ³ŲŖŲ± صفحه Ų§ŲµŁ„ŪŒ'),
(50983, 42822, 'no_lang_code', 'name', 'Tata Chemicals (India)'),
(50984, 42823, 'en', 'name', 'Panola College'),
(50985, 42824, 'fr', 'name', 'Ɖcole de Recherche Graphique'),
(50986, 42825, 'de', 'name', 'Hochschule für Musik Freiburg'),
(50987, 42826, 'en', 'name', 'Northumberland County Council'),
(50988, 42827, 'en', 'name', 'Southern Arkansas University Tech'),
(50989, 42828, 'no_lang_code', 'name', 'Goodyear (United States)'),
(50990, 42829, 'en', 'name', 'Board of Audit and Inspection'),
(50991, 42829, 'ko', 'name', '감사원'),
(50992, 42830, 'no_lang_code', 'name', 'Primity Bio (United States)'),
(50993, 42831, 'en', 'name', 'Freehold Regional High School District'),
(50994, 42832, 'en', 'name', 'International Polar Foundation'),
(50995, 42833, 'en', 'name', 'National Research Council'),
(50996, 42834, 'en', 'name', 'Christ the King Sixth Form College'),
(50997, 42835, 'en', 'name', 'Allentown High School'),
(50998, 42836, 'en', 'name', 'Five Towns College'),
(50999, 42837, 'no_lang_code', 'name', 'Sphaera Pharma (India)'),
(51000, 42838, 'en', 'name', 'Lexington Theological Seminary'),
(51001, 42839, 'en', 'name', 'National Theatre D. Maria II'),
(51002, 42839, 'pt', 'name', 'Teatro Nacional D. Maria II'),
(51003, 42840, 'fr', 'name', 'Fondation Internet Nouvelle GƩnƩration'),
(51004, 42841, 'no_lang_code', 'name', 'Actualis (France)'),
(51005, 42842, 'en', 'name', 'South African Democratic Teachers Union'),
(51006, 42843, 'de', 'name', 'Fachhochschule Westküste'),
(51007, 42843, 'en', 'name', 'West Coast University of Applied Sciences'),
(51008, 42844, 'no_lang_code', 'name', 'BA SystĆØmes (France)'),
(51009, 42845, 'en', 'name', 'Competence Centre for Materials Science and Technology'),
(51010, 42846, 'en', 'name', 'AIB College of Business'),
(51011, 42847, 'en', 'name', 'Singapore Police Force'),
(51012, 42847, 'ms', 'name', 'Pasukan Polis Singapura'),
(51013, 42847, 'ta', 'name', 'ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®•ą®¾ą®µą®²ąÆ துறை'),
(51014, 42847, 'zh', 'name', 'ę–°åŠ å”č­¦åÆŸéƒØé˜Ÿ'),
(51015, 42848, 'en', 'name', 'Anhui Institute of Optics and Fine Mechanics'),
(51016, 42848, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å®‰å¾½å…‰å­¦ē²¾åÆ†ęœŗę¢°ē ”ē©¶ę‰€'),
(51017, 42849, 'nl', 'name', 'GGZ Friesland'),
(51018, 42850, 'en', 'name', 'Michigan School of Professional Psychology'),
(51019, 42851, 'en', 'name', 'American Career College'),
(51020, 42852, 'pt', 'name', 'Faculdades Integradas de Taquara'),
(51021, 42853, 'no_lang_code', 'name', 'Graphtech (Tunisia)'),
(51022, 42854, 'en', 'name', 'African Network Information Center'),
(51023, 42855, 'en', 'name', 'Bakulev Scientific Center for Cardiovascular Surgery Russian Academy of Medical Sciences'),
(51024, 42855, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр серГечно-ŃŠ¾ŃŃƒŠ“ŠøŃŃ‚Š¾Š¹ Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø им. А.Š. Š‘Š°ŠŗŃƒŠ»ŠµŠ²Š°'),
(51025, 42856, 'en', 'name', 'Zhejiang Meteorological Bureau'),
(51026, 42856, 'zh', 'name', 'ęµ™ę±Ÿēœę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(51027, 42857, 'en', 'name', 'Montserrat College of Art'),
(51028, 42858, 'en', 'name', 'Atlantic Philanthropies'),
(51029, 42859, 'en', 'name', 'Central Institute for Cotton Research'),
(51030, 42860, 'en', 'name', 'Department of Education and Skills'),
(51031, 42860, 'ga', 'name', 'An Roinn Oideachais agus Scileanna'),
(51032, 42861, 'en', 'name', 'New York College of Traditional Chinese Medicine'),
(51033, 42862, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Espírito Santo'),
(51034, 42863, 'en', 'name', 'Florida Department of Military Affairs'),
(51035, 42864, 'en', 'name', 'China Research Institute for Science Popularization'),
(51036, 42864, 'zh', 'name', '中国科普研究所'),
(51037, 42865, 'en', 'name', 'Migraine Trust'),
(51038, 42866, 'en', 'name', 'Casa College'),
(51039, 42867, 'en', 'name', 'Ministry of Education and Science'),
(51040, 42867, 'hy', 'name', 'ŌæÖ€Õ©ÕøÖ‚Õ©ÕµÕ”Õ¶ և Õ£Õ«ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ Õ¶Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(51041, 42868, 'no_lang_code', 'name', 'Endo (Ireland)'),
(51042, 42869, 'de', 'name', 'PƤdagogische Hochschule Viktor Frankl Hochschule, University College of Teacher Education Carinthia'),
(51043, 42870, 'no_lang_code', 'name', 'QuikTrip (United States)'),
(51044, 42871, 'pl', 'name', 'Wielkopolska Wyższa Szkoła Społeczno-Ekonomiczna'),
(51045, 42872, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia de NeurociĆŖncia Translacional'),
(51046, 42873, 'en', 'name', 'St. John''s College of Nursing'),
(51047, 42874, 'de', 'name', 'Welthandelsorganisation'),
(51048, 42874, 'en', 'name', 'World Trade Organization'),
(51049, 42874, 'es', 'name', 'Organización Mundial del Comercio'),
(51050, 42874, 'fr', 'name', 'Organisation mondiale du commerce'),
(51051, 42874, 'it', 'name', 'Organizzazione mondiale del commercio'),
(51052, 42875, 'en', 'name', 'Federal HIV/AIDS Prevention and Control Office'),
(51053, 42876, 'en', 'name', 'Williams Baptist College'),
(51054, 42877, 'en', 'name', 'Texas A&M University School of Law'),
(51055, 42878, 'en', 'name', 'Cancer League of Colorado'),
(51056, 42879, 'fr', 'name', 'Laboratoire d''Optique AppliquƩe'),
(51057, 42880, 'de', 'name', 'Bank für Tirol und Vorarlberg'),
(51058, 42881, 'en', 'name', 'Texas Education Agency'),
(51059, 42882, 'no_lang_code', 'name', 'TransUnion (United States)'),
(51060, 42883, 'en', 'name', 'South Louisiana Community College'),
(51061, 42884, 'en', 'name', 'South Arkansas Community College'),
(51062, 42885, 'en', 'name', 'South Tyneside College'),
(51063, 42886, 'no_lang_code', 'name', 'Steelcase (United States)'),
(51064, 42887, 'no_lang_code', 'name', 'Defense Systems (United States)'),
(51065, 42888, 'en', 'name', 'Centre for Development of Telematics'),
(51066, 42888, 'hi', 'name', 'ą¤Ÿą„‡ą¤²ą„€ą¤®ą„ˆą¤Ÿą¤æą¤•ą„ą¤ø विकास ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(51067, 42889, 'en', 'name', 'Network for Preventive Environmental Management'),
(51068, 42890, 'en', 'name', 'British Universities North America Club'),
(51069, 42891, 'en', 'name', 'Department of Commerce'),
(51070, 42892, 'no_lang_code', 'name', 'Chitungwiza Municipality'),
(51071, 42893, 'no_lang_code', 'name', 'Silicon Chemical (United States)'),
(51072, 42894, 'no_lang_code', 'name', 'Springer Nature (United Kingdom)'),
(51073, 42895, 'en', 'name', 'Virginia Department of Social Services'),
(51074, 42896, 'en', 'name', 'San Pedro College'),
(51075, 42897, 'en', 'name', 'Riga College of Accounting and Finance'),
(51076, 42897, 'lv', 'name', 'Grāmatvedības un finanŔu koledža'),
(51077, 42898, 'no_lang_code', 'name', 'Tata Elxsi (India)'),
(51078, 42899, 'en', 'name', 'Texas Groundwater Protection Committee'),
(51079, 42900, 'en', 'name', 'National Taipei University'),
(51080, 42900, 'zh', 'name', 'åœ‹ē«‹č‡ŗåŒ—å¤§å­ø'),
(51081, 42901, 'en', 'name', 'Masan National Tuberculosis Hospital'),
(51082, 42902, 'en', 'name', 'Rio Salado College'),
(51083, 42903, 'en', 'name', 'College for Management in Tourism and Informatics in Virovitica'),
(51084, 42903, 'hr', 'name', 'Visoka Ŕkola za menadžment u turizmu i informatici'),
(51085, 42904, 'en', 'name', 'Central Laboratory For Agricultural Expert Systems'),
(51086, 42905, 'en', 'name', 'Carl Albert State College'),
(51087, 42906, 'en', 'name', 'Department of State Growth'),
(51088, 42907, 'en', 'name', 'Gansu Desert Control Research Institute'),
(51089, 42907, 'zh', 'name', 'ē”˜č‚ƒēœę²»ę²™ē ”ē©¶ę‰€'),
(51090, 42908, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Στερεάς ΕλλάΓας'),
(51091, 42908, 'en', 'name', 'Technological Educational Institute of Central Greece'),
(51092, 42909, 'en', 'name', 'Ministy of Fisheries and Marine Resources'),
(51093, 42910, 'en', 'name', 'IMS Unison University'),
(51094, 42911, 'en', 'name', 'Civil Aviation Management Institute of China'),
(51095, 42911, 'zh', 'name', 'äø­å›½ę°‘čˆŖē®”ē†å¹²éƒØå­¦é™¢'),
(51096, 42912, 'en', 'name', 'Barstow Community College'),
(51097, 42913, 'it', 'name', 'Accademia di Belle Arti di Frosinone'),
(51098, 42914, 'bn', 'name', 'ą¦œą§ą¦žą¦¾ą¦Øą¦‡ ą¦¶ą¦•ą§ą¦¤ą¦æ,সেবাই ą¦§ą¦°ą§ą¦®'),
(51099, 42914, 'en', 'name', 'Armed Forces Medical College'),
(51100, 42915, 'no_lang_code', 'name', 'PaxiTech (France)'),
(51101, 42916, 'en', 'name', 'Academy of Fine Arts of Palermo'),
(51102, 42916, 'it', 'name', 'Accademia di Belle Arti di Palermo'),
(51103, 42917, 'no_lang_code', 'name', 'Pakistan Telecommunication Company (Pakistan)'),
(51104, 42917, 'ur', 'name', 'پی ٹی سی Ų§ŪŒŁ„'),
(51105, 42918, 'en', 'name', 'Northeast Mississippi Community College'),
(51106, 42919, 'en', 'name', 'Chongqing Institute of Geology and Mineral Resources'),
(51107, 42919, 'zh', 'name', 'é‡åŗ†åœ°č“ØēŸæäŗ§ē ”ē©¶é™¢'),
(51108, 42920, 'en', 'name', 'Teachers Insurance and Annuity Association of America'),
(51109, 42921, 'de', 'name', 'Leibniz Fachhochschule'),
(51110, 42921, 'en', 'name', 'Leibniz University of Applied Sciences'),
(51111, 42922, 'en', 'name', 'Pasteur Clinic'),
(51112, 42922, 'fr', 'name', 'Clinique Pasteur'),
(51113, 42923, 'en', 'name', 'Taylor College and Seminary'),
(51114, 42924, 'no_lang_code', 'name', 'Medtronic (France)'),
(51115, 42925, 'en', 'name', 'Pasco–Hernando State College'),
(51116, 42926, 'fr', 'name', 'Vizion’R'),
(51117, 42927, 'en', 'name', 'Seevic College'),
(51118, 42928, 'fr', 'name', 'SociĆ©tĆ© d’Applications Technologiques de l’Imagerie Micro-Onde'),
(51119, 42928, 'no_lang_code', 'name', 'Satimo (France)'),
(51120, 42929, 'en', 'name', 'Epic Bible College'),
(51121, 42930, 'no_lang_code', 'name', 'Starbucks (United States)'),
(51122, 42931, 'en', 'name', 'Centre for Interdisciplinary Research in Music Media and Technology'),
(51123, 42932, 'en', 'name', 'Mid Michigan Community College'),
(51124, 42933, 'no_lang_code', 'name', 'Aboca (Italy)'),
(51125, 42934, 'en', 'name', 'Pacific Institute of Geography, Far Eastern Branch of the Russian Academy of Sciences'),
(51126, 42934, 'ru', 'name', 'Тихоокеанский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географи'),
(51127, 42935, 'en', 'name', 'Humsafar Trust'),
(51128, 42936, 'no_lang_code', 'name', 'Guardian Life Insurance Company of America (United States)'),
(51129, 42937, 'en', 'name', 'Ministry of Energy, Mines, Water and Environment'),
(51130, 42937, 'fr', 'name', 'MinistĆØre de l''Energie, des Mines, de l''Eau et de l''Environnement'),
(51131, 42938, 'es', 'name', 'Ministerio de Educación Pública'),
(51132, 42939, 'no_lang_code', 'name', 'Solar23 Tunisie (Tunisia)'),
(51133, 42940, 'pt', 'name', 'Conservatório de Música do Porto'),
(51134, 42941, 'fr', 'name', 'Institut SupƩrieur de Gestion et de Planification'),
(51135, 42942, 'en', 'name', 'Eastern Arizona College'),
(51136, 42943, 'fr', 'name', 'Laboratoire MotricitĆ© Humaine Ɖducation Sport SantĆ©'),
(51137, 42944, 'no_lang_code', 'name', 'Electra- Empresa de Electricidade e Ɓgua (Cape Verde)'),
(51138, 42945, 'en', 'name', 'Cincinnati College of Mortuary Science'),
(51139, 42946, 'fr', 'name', 'Association Mitsinjo'),
(51140, 42947, 'fr', 'name', 'Agence Nationale de l''Aviation Civile du SƩnƩgal, Agence Nationale de l''Aviation Civile et de la MƩtƩorologie'),
(51141, 42948, 'da', 'name', 'MiljĆøstyrelsen'),
(51142, 42948, 'en', 'name', 'Environmental Protection Agency'),
(51143, 42949, 'en', 'name', 'Acsenda School of Management'),
(51144, 42950, 'en', 'name', 'Lake Chad Basin Commission'),
(51145, 42950, 'fr', 'name', 'Commission du Bassin du Lac Tchad'),
(51146, 42951, 'en', 'name', 'College of Southern Nevada'),
(51147, 42952, 'en', 'name', 'Countryside and Community Research Institute'),
(51148, 42953, 'en', 'name', 'Johns Hopkins Children''s Center'),
(51149, 42954, 'en', 'name', 'Wayne Community College'),
(51150, 42955, 'no_lang_code', 'name', 'Pitney Bowes (United States)'),
(51151, 42956, 'no_lang_code', 'name', 'American International Group (United States)'),
(51152, 42957, 'en', 'name', 'Natural History Museum of Geneva'),
(51153, 42957, 'fr', 'name', 'Muséum d''Histoire Naturelle de Genève'),
(51154, 42958, 'pt', 'name', 'Faculdade de Itaituba'),
(51155, 42959, 'en', 'name', 'Blood Transfusion Service of Namibia'),
(51156, 42960, 'en', 'name', 'East European State Higher School in Przemyśl'),
(51157, 42960, 'pl', 'name', 'Państwowa Wyższa Szkoła Wschodnioeuropejska w Przemyślu'),
(51158, 42961, 'fr', 'name', 'Laboratory Colloïdes et Matériaux Divisés'),
(51159, 42962, 'en', 'name', 'Maine Medical Center'),
(51160, 42963, 'no_lang_code', 'name', 'Delta Air Lines (United States)'),
(51161, 42964, 'en', 'name', 'Upper Valley Educators Institute'),
(51162, 42965, 'en', 'name', 'Department of Arts and Museums'),
(51163, 42966, 'en', 'name', 'Central Ohio Technical College'),
(51164, 42967, 'en', 'name', 'Cisco College'),
(51165, 42968, 'en', 'name', 'Central Building Research Institute'),
(51166, 42969, 'en', 'name', 'National Art Gallery of Namibia'),
(51167, 42970, 'no_lang_code', 'name', 'Adamore (Nigeria)'),
(51168, 42971, 'ko', 'name', '사노피-ģ•„ė²¤ķ‹°ģŠ¤ 코리아'),
(51169, 42971, 'no_lang_code', 'name', 'Sanofi (South Korea)'),
(51170, 42972, 'en', 'name', 'Jembi Health Systems'),
(51171, 42973, 'en', 'name', 'Ludwig Cancer Research'),
(51172, 42974, 'fr', 'name', 'Iskane IngƩnierie'),
(51173, 42975, 'en', 'name', 'Rama Dental College Hospital & Research Centre'),
(51174, 42976, 'en', 'name', 'Daegu Future College'),
(51175, 42976, 'ko', 'name', 'ėŒ€źµ¬ėÆøėž˜ėŒ€ķ•™'),
(51176, 42976, 'zh', 'name', 'å¤§é‚±ęœŖä¾†å¤§å­ø'),
(51177, 42977, 'en', 'name', 'Murmansk Academy of Economics and Management'),
(51178, 42977, 'ru', 'name', 'ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(51179, 42978, 'en', 'name', 'Kamiesberg Local Municipality'),
(51180, 42979, 'no_lang_code', 'name', 'Beijing Planetarium'),
(51181, 42979, 'zh', 'name', 'åŒ—äŗ¬å¤©ę–‡é¦†/åŒ—äŗ¬å¤©ę–‡é¤Ø'),
(51182, 42980, 'no_lang_code', 'name', 'Pantarhei Bioscience (Netherlands)'),
(51183, 42981, 'en', 'name', 'Wolford College'),
(51184, 42982, 'de', 'name', 'Sorbisches Institut'),
(51185, 42982, 'en', 'name', 'Sorbian Institute'),
(51186, 42983, 'en', 'name', 'National Registration, Passport and Citizenship Department'),
(51187, 42984, 'es', 'name', 'Secretaría de Innovación, Ciencia y Educación Superior'),
(51188, 42985, 'no_lang_code', 'name', 'MicroMass Communications (United States)'),
(51189, 42986, 'en', 'name', 'Southwest Wisconsin Technical College'),
(51190, 42987, 'en', 'name', 'Timiryazev Institute of Plant Physiology'),
(51191, 42987, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии растений К.А. Š¢ŠøŠ¼ŠøŃ€ŃŠ·ŠµŠ²Š°'),
(51192, 42988, 'en', 'name', 'Lithuanian Maritime Academy'),
(51193, 42988, 'lt', 'name', 'Lietuvos aukstoji jureivystes mokykla'),
(51194, 42989, 'en', 'name', 'Tohono O''odham Community College'),
(51195, 42990, 'bn', 'name', 'শেরে বাংলা ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(51196, 42990, 'en', 'name', 'Sher-e-Bangla Agricultural University'),
(51197, 42991, 'en', 'name', 'Fair Haven Community Health Center'),
(51198, 42992, 'es', 'name', 'Genetaq');
INSERT INTO `ror_settings` VALUES
(51199, 42993, 'en', 'name', 'Biogas Institute of Ministry of Agriculture'),
(51200, 42993, 'zh', 'name', 'å†œäøšéƒØę²¼ę°”ē§‘å­¦ē ”ē©¶ę‰€'),
(51201, 42994, 'en', 'name', 'Farmland Irrigation Research Institute'),
(51202, 42994, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å†œē”°ēŒęŗ‰ē ”ē©¶ę‰€'),
(51203, 42995, 'en', 'name', 'South African Holocaust and Genocide Foundation'),
(51204, 42996, 'fr', 'name', 'ECAM Rennes Louis de Broglie'),
(51205, 42997, 'en', 'name', 'American College of Acupuncture & Oriental Medicine'),
(51206, 42998, 'en', 'name', 'China Institute of Daily Chemical Industry'),
(51207, 42998, 'zh', 'name', 'äø­å›½ę—„ē”ØåŒ–å­¦å·„äøšē ”ē©¶é™¢'),
(51208, 42999, 'en', 'name', 'Davis College - Ohio'),
(51209, 43000, 'en', 'name', 'CareWorks'),
(51210, 43001, 'en', 'name', 'Frank Lloyd Wright School of Architecture'),
(51211, 43002, 'en', 'name', 'International School of Management'),
(51212, 43003, 'no_lang_code', 'name', 'Brochier Technologies (France)'),
(51213, 43004, 'hr', 'name', 'Tehničko VeleučiliŔte u Zagrebu'),
(51214, 43005, 'en', 'name', 'Oblate School of Theology'),
(51215, 43006, 'en', 'name', 'College of St. Joseph'),
(51216, 43007, 'en', 'name', 'Mexicali Institute of Technology'),
(51217, 43007, 'es', 'name', 'Instituto Tecnológico de Mexitali'),
(51218, 43008, 'bg', 'name', 'Военна Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š“. Š”. Раковски'),
(51219, 43008, 'en', 'name', 'G. S. Rakovski National Defence College'),
(51220, 43009, 'en', 'name', 'Rochester Institute of Technology Croatia'),
(51221, 43009, 'hr', 'name', 'Američka Visoka Skola za Menadžment i Tehnologiju'),
(51222, 43010, 'en', 'name', 'Kolping University of Applied Sciences'),
(51223, 43011, 'en', 'name', 'Rajasthan University of Veterinary and Animal Sciences'),
(51224, 43012, 'en', 'name', 'Egyptian Information Telecommunications Electronics and Software Alliance'),
(51225, 43013, 'en', 'name', 'Research Institute of General Pathology and Pathophysiology, the Russian Academy of Medical Sciences'),
(51226, 43013, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей патологии Šø патофизиологии'),
(51227, 43014, 'en', 'name', 'Agriculture Food and Rural Development'),
(51228, 43015, 'en', 'name', 'Qinghai Meteorological Institute'),
(51229, 43015, 'zh', 'name', 'é’ęµ·ēœę°”č±”å±€'),
(51230, 43016, 'en', 'name', 'Zagreb School of Business'),
(51231, 43016, 'hr', 'name', 'Visoka Poslovna Skola Zagreb'),
(51232, 43017, 'en', 'name', 'Canton City School District'),
(51233, 43018, 'en', 'name', 'Spartanburg Community College'),
(51234, 43019, 'en', 'name', 'Institute of Geosphere Dynamics'),
(51235, 43019, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гинамики геосфер Российской акаГемии наук'),
(51236, 43020, 'en', 'name', 'Bournville College'),
(51237, 43021, 'en', 'name', 'Uganda Carbon Bureau'),
(51238, 43022, 'en', 'name', 'Jewish Child Care Association'),
(51239, 43023, 'no_lang_code', 'name', 'News Corp (United States)'),
(51240, 43024, 'da', 'name', 'Markedsmodningsfonden'),
(51241, 43024, 'en', 'name', 'Market Development Fund'),
(51242, 43025, 'en', 'name', 'Institute for Soil, Climate and Water'),
(51243, 43026, 'en', 'name', 'Oxnard College'),
(51244, 43027, 'pt', 'name', 'Ministério do Ensino Superior Ciência e Inovação'),
(51245, 43028, 'en', 'name', 'Institute of Machines Science'),
(51246, 43028, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ имени А. А. Благонравова Š ŠŠ'),
(51247, 43029, 'en', 'name', 'Center for Support of Indigenous Peoples of the North'),
(51248, 43030, 'no_lang_code', 'name', 'Reliance (United Kingdom)'),
(51249, 43031, 'en', 'name', 'Institute of Advanced Studies in Education'),
(51250, 43032, 'en', 'name', 'Notre Dame Seminary'),
(51251, 43033, 'en', 'name', 'University of Fort Lauderdale'),
(51252, 43034, 'en', 'name', 'Ministry of Science and Environmental Protection'),
(51253, 43034, 'sr', 'name', 'ŠœŠøŠ½ŠøŃŃ‚Š°Ń€ŃŃ‚Š²Š¾ науке Šø Š·Š°ŃˆŃ‚ŠøŃ‚Šµ животне среГине'),
(51254, 43035, 'no_lang_code', 'name', 'TVS Motor Company (India)'),
(51255, 43036, 'no_lang_code', 'name', 'Safran (Poland)'),
(51256, 43037, 'en', 'name', 'MacDowell Colony'),
(51257, 43038, 'no_lang_code', 'name', 'General Mills (United States)'),
(51258, 43039, 'no_lang_code', 'name', 'Imedex (United States)'),
(51259, 43040, 'fr', 'name', 'PhotoTherme, Toutes nos Energies Pour Economiser la Votre'),
(51260, 43041, 'fr', 'name', 'Haute Ɖcole de la Province de LiĆØge'),
(51261, 43042, 'no_lang_code', 'name', 'Cadila Healthcare (India)'),
(51262, 43043, 'no_lang_code', 'name', 'IBM (Portugal)'),
(51263, 43044, 'en', 'name', 'Wartburg Theological Seminary'),
(51264, 43045, 'no_lang_code', 'name', 'Bharat Heavy Electricals (India)'),
(51265, 43046, 'en', 'name', 'Department of Foreign Affairs and Trade'),
(51266, 43046, 'ga', 'name', 'An Roinn Gnóthaí Eachtracha agus TrÔdÔla'),
(51267, 43047, 'en', 'name', 'Nicolae Bălcescu Land Forces Academy'),
(51268, 43047, 'ro', 'name', 'Academia Forțelor Terestre Nicolae Bălcescu'),
(51269, 43048, 'en', 'name', 'Guangzhou Maritime College'),
(51270, 43048, 'zh', 'name', 'å¹æå·žčˆŖęµ·é«˜ē­‰äø“ē§‘å­¦ę ”'),
(51271, 43049, 'de', 'name', 'Freie Theologische Hochschule Gießen'),
(51272, 43049, 'en', 'name', 'Giessen School of Theology'),
(51273, 43050, 'ms', 'name', 'Muzium Tamadun Asia'),
(51274, 43050, 'no_lang_code', 'name', 'Asian Civilisations Museum'),
(51275, 43050, 'zh', 'name', 'äŗšę“²ę–‡ę˜Žåšē‰©é¦†'),
(51276, 43051, 'en', 'name', 'Shout It Now'),
(51277, 43052, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(51278, 43052, 'en', 'name', 'Ministry of Higher Education and Scientific Research'),
(51279, 43053, 'en', 'name', 'National Institute of Meteorology'),
(51280, 43053, 'fr', 'name', 'Institut National de la MƩtƩorologie'),
(51281, 43054, 'en', 'name', 'Tanzania Association of Foresters'),
(51282, 43055, 'en', 'name', 'Southeastern Baptist Theological Seminary'),
(51283, 43056, 'en', 'name', 'University of Arkansas Community College at Hope'),
(51284, 43057, 'en', 'name', 'South African Weather Service'),
(51285, 43058, 'no_lang_code', 'name', 'Ungweru'),
(51286, 43059, 'en', 'name', 'Flags of Honour Foundation'),
(51287, 43060, 'en', 'name', 'Ontario Arts Council'),
(51288, 43060, 'fr', 'name', 'Conseil des arts de l''Ontario'),
(51289, 43061, 'en', 'name', 'National University of Educational Planning and Administration'),
(51290, 43062, 'en', 'name', 'Construction Research Institute of Malaysia'),
(51291, 43063, 'no_lang_code', 'name', 'LEK Consulting (United States)'),
(51292, 43064, 'ar', 'name', 'المؤسسة العامة Ł„Ł„ŲŖŲ£Ł…ŁŠŁ†Ų§ŲŖ Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(51293, 43064, 'en', 'name', 'General Organization for Social Insurance'),
(51294, 43065, 'da', 'name', 'Kriminalforsorgen'),
(51295, 43066, 'no_lang_code', 'name', 'Health Strat (Kenya)'),
(51296, 43067, 'en', 'name', 'Commonwealth Forestry Association'),
(51297, 43068, 'en', 'name', 'Gauteng Department of Agriculture and Rural Development'),
(51298, 43069, 'en', 'name', 'Asian Institute of Management'),
(51299, 43070, 'en', 'name', 'Brno International Business School'),
(51300, 43071, 'en', 'name', 'AOMA Graduate School of Integrative Medicine'),
(51301, 43072, 'en', 'name', 'Sree Gokulam Medical College and Research Foundation'),
(51302, 43073, 'en', 'name', 'European Committee for Treatment and Research in Multiple Sclerosis'),
(51303, 43074, 'en', 'name', 'Agricultural Adaptation Council'),
(51304, 43075, 'en', 'name', 'Defence Academy of the United Kingdom'),
(51305, 43076, 'en', 'name', 'Naju National Hospital'),
(51306, 43076, 'ko', 'name', 'źµ­ė¦½ė‚˜ģ£¼ė³‘ģ›'),
(51307, 43077, 'cs', 'name', 'Westmoravian College Třebƭč, ZĆ”padomoravskĆ” vysokĆ” Å”kola Třebƭč'),
(51308, 43078, 'it', 'name', 'Conservatorio di Musica Lorenzo Perosi'),
(51309, 43079, 'en', 'name', 'Women''s Research & Education Institute'),
(51310, 43080, 'en', 'name', 'Abertine Rift Conservation Society'),
(51311, 43081, 'no_lang_code', 'name', 'ANADER'),
(51312, 43082, 'en', 'name', 'Royal Australian and New Zealand College of Obstetricians and Gynaecologists'),
(51313, 43083, 'en', 'name', 'Academy of Chinese Culture and Health Sciences'),
(51314, 43084, 'en', 'name', 'Al-Farabi College'),
(51315, 43085, 'no_lang_code', 'name', 'Vacsera (Egypt)'),
(51316, 43086, 'en', 'name', 'Southwestern College - New Mexico'),
(51317, 43087, 'bn', 'name', 'বাংলাদেশ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦¶ą¦æą¦²ą§ą¦Ŗ গবেষণা পরিষদ'),
(51318, 43087, 'en', 'name', 'Bangladesh Council of Scientific and Industrial Research'),
(51319, 43088, 'en', 'name', 'Etobicoke School of the Arts'),
(51320, 43089, 'fr', 'name', 'Laboratoire de Biologie et Pharmacologie AppliquƩe'),
(51321, 43090, 'en', 'name', 'Rwanda Agriculture Board'),
(51322, 43091, 'en', 'name', 'Australian Institute of Policy and Science'),
(51323, 43092, 'en', 'name', 'Midwest College of Oriental Medicine'),
(51324, 43093, 'fr', 'name', 'Laboratoire d''Ɖtude des Microstructures'),
(51325, 43094, 'ar', 'name', 'Ų§Ł„Ų“Ų±ŁƒŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© للصناعات Ų§Ł„Ų£Ų³Ų§Ų³ŁŠŲ© ، سابك'),
(51326, 43094, 'no_lang_code', 'name', 'Saudi Arabia Basic Industries (Saudi Arabia)'),
(51327, 43095, 'en', 'name', 'Northpoint Bible College'),
(51328, 43096, 'no_lang_code', 'name', 'Anglo American (South Africa)'),
(51329, 43097, 'da', 'name', 'Udenrigsministeriet'),
(51330, 43097, 'en', 'name', 'Ministry of Foreign Affairs of Denmark'),
(51331, 43098, 'en', 'name', 'Platt College'),
(51332, 43099, 'no_lang_code', 'name', 'Theranexus (France)'),
(51333, 43100, 'fr', 'name', 'Laboratoire de Recherches sur le DƩveloppement de l''Elevage'),
(51334, 43101, 'no_lang_code', 'name', 'Element Six (Luxembourg)'),
(51335, 43102, 'en', 'name', 'Celje School of Economics'),
(51336, 43102, 'sl', 'name', 'Ekonomska Å ola Celje'),
(51337, 43103, 'en', 'name', 'Japan Center for Economic Research'),
(51338, 43103, 'ja', 'name', 'ę—„ęœ¬ēµŒęøˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(51339, 43104, 'en', 'name', 'Police Academy'),
(51340, 43104, 'tr', 'name', 'Polis Akademisi'),
(51341, 43105, 'no_lang_code', 'name', 'Anthem Biosciences (India)'),
(51342, 43106, 'en', 'name', 'Beijing Cultural Development Foundation'),
(51343, 43106, 'zh', 'name', 'åŒ—äŗ¬ę–‡åŒ–å‘å±•åŸŗé‡‘ä¼š'),
(51344, 43107, 'no_lang_code', 'name', 'Brother International (United States)'),
(51345, 43108, 'it', 'name', 'Conservatorio di Musica "Giuseppe Verdi"'),
(51346, 43109, 'en', 'name', 'Texas Commission on the Arts'),
(51347, 43110, 'en', 'name', 'New England College of Business'),
(51348, 43111, 'en', 'name', 'Foshan Municipal Government'),
(51349, 43112, 'en', 'name', 'Westminster Kingsway College'),
(51350, 43113, 'en', 'name', 'Zhejiang Institute of Hydraulics & Estuary'),
(51351, 43113, 'zh', 'name', 'ęµ™ę±Ÿēœę°“åˆ©ę²³å£ē ”ē©¶é™¢'),
(51352, 43114, 'no_lang_code', 'name', 'Sophumelela Centre'),
(51353, 43115, 'en', 'name', 'Project Management Institute'),
(51354, 43116, 'en', 'name', 'Academy of Vocal Arts'),
(51355, 43117, 'de', 'name', 'Geschichte des Internationalen Hochschulinstituts (IHI) Zittau'),
(51356, 43117, 'en', 'name', 'International University Institute'),
(51357, 43118, 'no_lang_code', 'name', 'African Explosives (South Africa)'),
(51358, 43119, 'fr', 'name', 'UniversitƩ des Sciences Juridiques et Politiques de Bamako'),
(51359, 43120, 'en', 'name', 'Rainman Landcare Foundation'),
(51360, 43121, 'en', 'name', 'Wiregrass Georgia Technical College'),
(51361, 43122, 'en', 'name', 'Byzantine Catholic Seminary of Saints Cyril and Methodius'),
(51362, 43123, 'it', 'name', 'Conservatorio State Di Musica Giuseppe Verdi'),
(51363, 43124, 'no_lang_code', 'name', 'Advanced Acoustic Concepts (United States)'),
(51364, 43125, 'de', 'name', 'Hochschule für Schauspielkunst Ernst Busch'),
(51365, 43125, 'en', 'name', 'Ernst Busch Academy of Dramatic Arts'),
(51366, 43126, 'no_lang_code', 'name', 'State Nuclear Power Technology Company (China)'),
(51367, 43127, 'no_lang_code', 'name', 'Aditya Birla (India)'),
(51368, 43128, 'fr', 'name', 'Centre de Recherche en Astronomie Astrophysique et GƩophysique'),
(51369, 43129, 'en', 'name', 'Central Manufacturing Technology Institute'),
(51370, 43130, 'en', 'name', 'Xaverian College'),
(51371, 43131, 'no_lang_code', 'name', 'China Nonferrous Metal Mining (China)'),
(51372, 43131, 'zh', 'name', 'äø­å›½ęœ‰č‰²ēŸæäøšé›†å›¢ęœ‰é™å…¬åø'),
(51373, 43132, 'no_lang_code', 'name', 'BASIS International (United States)'),
(51374, 43133, 'no_lang_code', 'name', 'International Paper (United States)'),
(51375, 43134, 'fr', 'name', 'Laboratoire de Chimie MolƩculaire et Thioorganique'),
(51376, 43135, 'en', 'name', 'Arab and African Research Center'),
(51377, 43136, 'en', 'name', 'Allen Community College'),
(51378, 43137, 'bn', 'name', 'ą¦•ą§ą¦®ą¦æą¦²ą§ą¦²ą¦¾ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(51379, 43137, 'en', 'name', 'Comilla Medical College'),
(51380, 43138, 'en', 'name', 'Silvio d''Amico National Academy of Dramatic Arts'),
(51381, 43138, 'it', 'name', 'Accademia Nazionale di Arte Drammatica Silvio DAmico'),
(51382, 43139, 'en', 'name', 'Maroc Numeric Cluster'),
(51383, 43140, 'en', 'name', 'Vernon College'),
(51384, 43141, 'en', 'name', 'East Central Community College'),
(51385, 43142, 'en', 'name', 'Mental Health Commission'),
(51386, 43143, 'en', 'name', 'Southern Health NHS Foundation Trust'),
(51387, 43144, 'no_lang_code', 'name', 'Depomed (United States)'),
(51388, 43145, 'en', 'name', 'China National Committee for Terms in Sciences and Technologies'),
(51389, 43145, 'zh', 'name', 'å…Øå›½ē§‘å­¦ęŠ€ęœÆåčÆå®”å®šå§”å‘˜ä¼š'),
(51390, 43146, 'en', 'name', 'National Institute of Technology, Matsue College'),
(51391, 43146, 'ja', 'name', 'ę¾ę±Ÿå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(51392, 43147, 'en', 'name', 'Center for Clinical Research Dalarna'),
(51393, 43147, 'sv', 'name', 'Centrum fƶr Klinisk Forskning'),
(51394, 43148, 'en', 'name', 'Executive Office of Housing and Economic Development'),
(51395, 43149, 'en', 'name', 'Indonesian State College of Accountancy'),
(51396, 43149, 'id', 'name', 'Sekolah Tinggi Akuntansi Negara'),
(51397, 43150, 'no_lang_code', 'name', 'Perrigo (Ireland)'),
(51398, 43151, 'en', 'name', 'Rio Hondo College'),
(51399, 43152, 'pt', 'name', 'Colsan - Associação Beneficente de Coleta de Sangue'),
(51400, 43153, 'en', 'name', 'Indian Society of International Law'),
(51401, 43154, 'no_lang_code', 'name', 'Deutsche Bank (Germany)'),
(51402, 43155, 'en', 'name', 'National Agency for National Parks'),
(51403, 43155, 'fr', 'name', 'Agence Nationale des Parcs Nationaux'),
(51404, 43156, 'no_lang_code', 'name', 'Syngaschem (Netherlands)'),
(51405, 43157, 'en', 'name', 'Skyline College'),
(51406, 43158, 'en', 'name', 'Food, Agriculture and Natural Resources Policy Analysis Network'),
(51407, 43159, 'no_lang_code', 'name', 'Amerisure Insurance (United States)'),
(51408, 43160, 'en', 'name', 'National Institute of Public Finance and Policy'),
(51409, 43161, 'fr', 'name', 'Laboratoire de Photophysique et Photochimie SupramolƩculaires et MacromolƩculaires'),
(51410, 43162, 'no_lang_code', 'name', 'Sify Technologies (India)'),
(51411, 43163, 'en', 'name', 'Plant Gene Expression Center'),
(51412, 43164, 'en', 'name', 'Collins College'),
(51413, 43165, 'no_lang_code', 'name', 'Zaytuna College'),
(51414, 43166, 'no_lang_code', 'name', 'Cigna (United States)'),
(51415, 43167, 'en', 'name', 'National Quarantine Station'),
(51416, 43168, 'en', 'name', 'Water and Power Development Authority'),
(51417, 43168, 'ur', 'name', 'واٹر Ų§ŪŒŁ†Śˆ پاور ŚˆŪŒŁˆŁ„Ł¾Ł…Ł†Ł¹ اتھارٹی'),
(51418, 43169, 'no_lang_code', 'name', 'Dhaka Regency Hotel and Resort (Bangladesh)'),
(51419, 43170, 'no_lang_code', 'name', 'Victoria Seeds (Uganda)'),
(51420, 43171, 'en', 'name', 'WaterAid'),
(51421, 43172, 'el', 'name', 'Ī‘Ī½ĻŽĻ„Ī±Ļ„Ī· Ī•ĪŗĪŗĪ»Ī·ĻƒĪ¹Ī±ĻƒĻ„Ī¹ĪŗĪ® ΑκαΓημία Αθήνας'),
(51422, 43172, 'en', 'name', 'Higher Ecclesiastical Academy of Athens'),
(51423, 43173, 'no_lang_code', 'name', 'Kalgoorlie Consolidated Gold Mines (Australia)'),
(51424, 43174, 'pt', 'name', 'Centro UniversitƔrio Cesmac'),
(51425, 43175, 'no_lang_code', 'name', 'Yuma Therapeutics (United States)'),
(51426, 43176, 'de', 'name', 'Einstein Stiftung'),
(51427, 43176, 'en', 'name', 'Einstein Foundation'),
(51428, 43177, 'en', 'name', 'State Council Leading Group of Poverty Alleviation and Development'),
(51429, 43177, 'zh', 'name', 'å›½åŠ”é™¢ę‰¶č“«äøŽå‘å±•é›†å›¢'),
(51430, 43178, 'en', 'name', 'Center for Health, Human Rights and Development'),
(51431, 43179, 'en', 'name', 'Sorokdo National Hospital'),
(51432, 43179, 'ko', 'name', 'źµ­ė¦½ģ†Œė”ė„ė³‘ģ›'),
(51433, 43180, 'en', 'name', 'Theological University of Apeldoorn'),
(51434, 43180, 'nl', 'name', 'Theologische Universiteit Apeldoorn'),
(51435, 43181, 'en', 'name', 'George Institute for Global Health'),
(51436, 43182, 'en', 'name', 'Indian Institute for Human Settlements'),
(51437, 43183, 'en', 'name', 'Bank of Korea'),
(51438, 43184, 'en', 'name', 'Yunnan Institute of Parasitic Diseases'),
(51439, 43184, 'zh', 'name', 'äŗ‘å—åÆ„ē”Ÿč™«ē—…é˜²ę²»ē½‘'),
(51440, 43185, 'en', 'name', 'Klamath Community College'),
(51441, 43186, 'es', 'name', 'Asociacion Para Evitar la Ceguera en MƩxico Hospital Dr. Luis SƔnchez Bulnes'),
(51442, 43187, 'en', 'name', 'Mornington Peninsula Shire'),
(51443, 43188, 'en', 'name', 'Hague Academy of International Law'),
(51444, 43188, 'fr', 'name', 'AcadƩmie de droit international de La Haye'),
(51445, 43189, 'en', 'name', 'Electricity Generating Authority of Thailand'),
(51446, 43189, 'th', 'name', 'ąøąø²ąø£ą¹„ąøŸąøŸą¹‰ąø²ąøą¹ˆąø²ąø¢ąøœąø„ąø“ąø•ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(51447, 43190, 'no_lang_code', 'name', 'Computational Sciences (United States)'),
(51448, 43191, 'en', 'name', 'Pittsburgh Theological Seminary'),
(51449, 43192, 'no_lang_code', 'name', 'Tiandi Science & Technology (China)'),
(51450, 43192, 'zh', 'name', '中煤科巄集团脿安研究院'),
(51451, 43193, 'en', 'name', 'Swiss Centre for Scientific Research'),
(51452, 43193, 'fr', 'name', 'Centre Suisse de Recherches Scientifiques en CƓte d''Ivoire'),
(51453, 43194, 'en', 'name', 'Williamson College of the Trades'),
(51454, 43195, 'en', 'name', 'Christian Institute of Health Sciences and Research Hospital'),
(51455, 43196, 'en', 'name', 'West Midlands Deanery'),
(51456, 43197, 'en', 'name', 'National Law University, Delhi'),
(51457, 43198, 'fr', 'name', 'Institut RƩgional d''Administration'),
(51458, 43199, 'en', 'name', 'Institute of Tectonics and Geophysics named after Y.A. Kosygin'),
(51459, 43199, 'ru', 'name', 'Š”Š’Šž Š ŠŠ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Тектоники Šø Геофизики им. Š®.А.ŠšŠ¾ŃŃ‹Š³ŠøŠ½Š°'),
(51460, 43200, 'no_lang_code', 'name', 'McDonald''s (United States)'),
(51461, 43201, 'en', 'name', 'Academy for Five Element Acupuncture'),
(51462, 43202, 'en', 'name', 'Institute of Organic Chemistry'),
(51463, 43202, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органічної хімії'),
(51464, 43203, 'en', 'name', 'Yellowstone Christian College'),
(51465, 43204, 'de', 'name', 'Hochschule des Bundes für öffentliche Verwaltung'),
(51466, 43204, 'en', 'name', 'Federal University of Applied Administrative Sciences'),
(51467, 43204, 'fr', 'name', 'Ɖcole supĆ©rieure fĆ©dĆ©rale d’administration publique'),
(51468, 43205, 'no_lang_code', 'name', 'Mubadala (United Arab Emirates)'),
(51469, 43206, 'no_lang_code', 'name', 'Health Advances (United States)'),
(51470, 43207, 'it', 'name', 'Conservatorio di Musica Tito Schipa'),
(51471, 43208, 'en', 'name', 'Korea Institute for National Unification'),
(51472, 43208, 'ko', 'name', 'ķ†µģ¼ģ—°źµ¬ģ›'),
(51473, 43209, 'en', 'name', 'Russian Research Institute for Phytopathology'),
(51474, 43209, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фитопатологии России'),
(51475, 43210, 'fr', 'name', 'Agence de la BiomƩdecine'),
(51476, 43211, 'en', 'name', 'Technological Institute of Celaya'),
(51477, 43211, 'es', 'name', 'Instituto Tecnológico de Celaya'),
(51478, 43212, 'en', 'name', 'Northwest Technical College'),
(51479, 43213, 'en', 'name', 'Guangzhou Institute of Geography'),
(51480, 43213, 'zh', 'name', 'å¹æå·žåœ°ē†ē ”ē©¶ę‰€'),
(51481, 43214, 'no_lang_code', 'name', 'Potentia (Namibia)'),
(51482, 43215, 'en', 'name', 'Korea Institute of Public Finance'),
(51483, 43215, 'ko', 'name', 'ķ•œźµ­ģ”°ģ„øģž¬ģ •ģ—°źµ¬ģ›'),
(51484, 43216, 'en', 'name', 'Mudra Institute of Communications Ahmedabad'),
(51485, 43217, 'en', 'name', 'Ranney School'),
(51486, 43218, 'en', 'name', 'Western Seminary'),
(51487, 43219, 'en', 'name', 'Chuncheon National Hospital'),
(51488, 43219, 'ko', 'name', 'źµ­ė¦½ģ¶˜ģ²œė³‘ģ›'),
(51489, 43220, 'no_lang_code', 'name', 'Magnisense (France)'),
(51490, 43221, 'en', 'name', 'Korea Research Institute for Vocational Education and Training'),
(51491, 43221, 'ko', 'name', 'ķ•œźµ­ģ§ģ—…ėŠ„ė „ź°œė°œģ›'),
(51492, 43222, 'en', 'name', 'Water Supply and Sanitation Department'),
(51493, 43222, 'mr', 'name', 'ą¤Ŗą¤¾ą¤£ą„€ ą¤Ŗą„ą¤°ą¤µą¤ ą¤¾ व ą¤øą„ą¤µą¤šą„ą¤›ą¤¤ą¤¾ विभाग'),
(51494, 43223, 'en', 'name', 'Michigan Department of Health and Human Services'),
(51495, 43224, 'en', 'name', 'Arts Midwest'),
(51496, 43225, 'en', 'name', 'British Institute of International and Comparative Law'),
(51497, 43226, 'no_lang_code', 'name', 'Kheth’Impilo'),
(51498, 43227, 'en', 'name', 'Nenets Agro-Economic College'),
(51499, 43228, 'en', 'name', 'Institute of Socio-Economic Development of Territories'),
(51500, 43228, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ территорий Российской акаГемии наук'),
(51501, 43229, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia em Excitotoxicidade e Neuroproteção'),
(51502, 43230, 'en', 'name', 'Saint Paul College'),
(51503, 43231, 'en', 'name', 'Melissa Institute for Violence Prevention and Treatment'),
(51504, 43232, 'en', 'name', 'British Council For Prevention of Blindness'),
(51505, 43233, 'en', 'name', 'Centre for the Rehabilitation of the Paralysed'),
(51506, 43234, 'en', 'name', 'Kentucky Mountain Bible College'),
(51507, 43235, 'en', 'name', 'Cranbrook Academy of Art'),
(51508, 43236, 'en', 'name', 'Bologna Research Area'),
(51509, 43236, 'it', 'name', 'Area Territoriale di Ricerca del CNR di Bologna'),
(51510, 43237, 'no_lang_code', 'name', 'Mecachrome (France)'),
(51511, 43238, 'sl', 'name', 'Izobraževalni Center Piramida Maribor'),
(51512, 43239, 'en', 'name', 'American College of Psychiatrists'),
(51513, 43240, 'en', 'name', 'International Trauma Anesthesia and Critical Care Society'),
(51514, 43241, 'en', 'name', 'GS1 South Africa'),
(51515, 43242, 'en', 'name', 'Modesto Junior College'),
(51516, 43243, 'en', 'name', 'Circumpolar Agricultural Association'),
(51517, 43244, 'en', 'name', 'Global Water Partnership'),
(51518, 43245, 'en', 'name', 'Clarkson College'),
(51519, 43246, 'de', 'name', 'Max-Planck-Institut für Sozialrecht und Sozialpolitik'),
(51520, 43246, 'en', 'name', 'Max Planck Institute for Social Law and Social Policy'),
(51521, 43247, 'en', 'name', 'Institute of Musculoskeletal Health and Arthritis'),
(51522, 43248, 'en', 'name', 'Institute of Mining'),
(51523, 43248, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(51524, 43249, 'en', 'name', 'American College of Education'),
(51525, 43250, 'en', 'name', 'School of Sea'),
(51526, 43250, 'pt', 'name', 'Escola de Mar'),
(51527, 43251, 'no_lang_code', 'name', 'Economic Expert Group (Russia)'),
(51528, 43251, 'ru', 'name', 'Š­ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń ŃŠŗŃŠæŠµŃ€Ń‚Š½Š°Ń Š³Ń€ŃƒŠæŠæŠ°'),
(51529, 43252, 'no_lang_code', 'name', 'Abiant (United States)'),
(51530, 43253, 'en', 'name', 'Institute of Mathematics with Computer Center'),
(51531, 43253, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики с Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¼ центром Š£ŠŠ¦ Š ŠŠ'),
(51532, 43254, 'en', 'name', 'Arkleton Trust'),
(51533, 43255, 'de', 'name', 'Evangelische Hochschule Rheinland-Westfalen-Lippe'),
(51534, 43255, 'en', 'name', 'Protestant University of Applied Sciences Rhineland-Westphalia-Lippe'),
(51535, 43256, 'en', 'name', 'Federal College of Fisheries and Marine Technology'),
(51536, 43257, 'de', 'name', 'Sachverständigenrat deutscher Stiftungen für Integration und Migration'),
(51537, 43257, 'en', 'name', 'The Expert Council of German Foundations on Integration and Migration'),
(51538, 43258, 'en', 'name', 'Armed Forces Academies Preparatory School'),
(51539, 43258, 'th', 'name', 'โรงเรียนเตรียดทหาร'),
(51540, 43259, 'en', 'name', 'African Institute for Capacity Development'),
(51541, 43260, 'no_lang_code', 'name', 'Genomic Vision (France)'),
(51542, 43261, 'en', 'name', 'Guangxi Mangrove Research Center'),
(51543, 43261, 'zh', 'name', 'å¹æč„æēŗ¢ę ‘ęž—ē ”ē©¶äø­åæƒ'),
(51544, 43262, 'en', 'name', 'South Arts'),
(51545, 43263, 'en', 'name', 'Technical College of the Lowcountry'),
(51546, 43264, 'en', 'name', 'Reformed Theological College'),
(51547, 43265, 'de', 'name', 'Fachhochschule der Sächsischen Verwaltung Meißen'),
(51548, 43266, 'no_lang_code', 'name', 'Sappi (South Africa)'),
(51549, 43267, 'en', 'name', 'Beijing Meteorological Bureau'),
(51550, 43267, 'zh', 'name', 'åŒ—äŗ¬åø‚ę°”č±”å±€'),
(51551, 43268, 'en', 'name', 'Ministry of Defence'),
(51552, 43268, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(51553, 43269, 'en', 'name', 'Legislative Assembly of Saskatchewan'),
(51554, 43270, 'en', 'name', 'Uganda National Meteorological Authority'),
(51555, 43271, 'fr', 'name', 'Institut National de SantƩ Publique'),
(51556, 43272, 'no_lang_code', 'name', 'AxisCades (India)'),
(51557, 43273, 'en', 'name', 'Massachusetts Department of Agricultural Resources'),
(51558, 43274, 'pt', 'name', 'Centro DramĆ”tico de Ɖvora'),
(51559, 43275, 'no_lang_code', 'name', 'Hormel (United States)'),
(51560, 43276, 'en', 'name', 'Neighborhood Playhouse School of the Theatre'),
(51561, 43277, 'en', 'name', 'Shenzhen Institute of Information Technology'),
(51562, 43277, 'zh', 'name', 'ę·±åœ³äæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(51563, 43278, 'en', 'name', 'New Jersey Commission on Science, Innovation and Technology'),
(51564, 43279, 'en', 'name', 'Townhouse Gallery'),
(51565, 43280, 'en', 'name', 'Feather River College'),
(51566, 43281, 'en', 'name', 'South China Institute Of Environmental Sciences'),
(51567, 43281, 'zh', 'name', 'ēŽÆå¢ƒäæęŠ¤éƒØåŽå—ēŽÆå¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(51568, 43282, 'en', 'name', 'International Institute for Restorative Practices'),
(51569, 43283, 'en', 'name', 'College of Business Administration'),
(51570, 43283, 'lv', 'name', 'Biznesa vadības koledža'),
(51571, 43284, 'fr', 'name', 'Office National de la MƩtƩorologie'),
(51572, 43285, 'en', 'name', 'Truman Library Institute'),
(51573, 43286, 'en', 'name', 'Ministry of Health'),
(51574, 43286, 'hr', 'name', 'Ministarstvo zdravstva'),
(51575, 43287, 'en', 'name', 'Ministry of Finance'),
(51576, 43287, 'ja', 'name', 'č²”å‹™ēœ'),
(51577, 43288, 'en', 'name', 'UsAgainstAlzheimer'),
(51578, 43289, 'en', 'name', 'Riverside City College'),
(51579, 43290, 'no_lang_code', 'name', 'Dynegy (United States)'),
(51580, 43291, 'fr', 'name', 'Ɖcole SupĆ©rieure du Bois'),
(51581, 43292, 'en', 'name', 'Centre for Coordination of Agricultural Research and Development for Southern Africa'),
(51582, 43293, 'en', 'name', 'Ministry of Agriculture'),
(51583, 43294, 'en', 'name', 'Dania Academy of Higher Education'),
(51584, 43295, 'en', 'name', 'Hindustan Bible Institute & College'),
(51585, 43296, 'en', 'name', 'National Wool Growers Associations of South Africa'),
(51586, 43297, 'no_lang_code', 'name', 'Landsvirkjun (Iceland)'),
(51587, 43298, 'no_lang_code', 'name', 'Sipra Labs (India)'),
(51588, 43299, 'en', 'name', 'Common Fund for Commodities'),
(51589, 43300, 'en', 'name', 'Kansas Space Grant Consortium'),
(51590, 43301, 'en', 'name', 'Tianjin Meteorological Bureau'),
(51591, 43301, 'zh', 'name', '天擄市气豔局 制作'),
(51592, 43302, 'en', 'name', 'Saami Council'),
(51593, 43303, 'en', 'name', 'Architectural League of New York'),
(51594, 43304, 'nl', 'name', 'Marnix Academie'),
(51595, 43305, 'de', 'name', 'Hochschule für Musik Detmold'),
(51596, 43305, 'en', 'name', 'University of Music Detmold'),
(51597, 43306, 'en', 'name', 'Qaemshahr Islamic Azad University'),
(51598, 43306, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد قائمؓهر'),
(51599, 43307, 'en', 'name', 'Grayson College'),
(51600, 43308, 'en', 'name', 'Jewish Board of Family and Children''s Services'),
(51601, 43309, 'de', 'name', 'Musik und Kunst PrivatuniversitƤt der Stadt Wien'),
(51602, 43309, 'en', 'name', 'Music and Arts University of the City of Vienna'),
(51603, 43310, 'no_lang_code', 'name', 'Remegenix (United States)'),
(51604, 43311, 'en', 'name', 'Oklahoma State University Oklahoma City, Oklahoma State University–Oklahoma City'),
(51605, 43312, 'no_lang_code', 'name', 'Cummins (United States)'),
(51606, 43313, 'en', 'name', 'Jiangsu Institute of Meteorological Sciences'),
(51607, 43313, 'zh', 'name', 'ę±Ÿč‹ēœę°”č±”ē§‘å­¦ē ”ē©¶ę‰€'),
(51608, 43314, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦‡ą¦²ą§‡ą¦•ą¦Ÿą§ą¦°ą¦Øą¦æą¦•ą§ą¦ø ą¦¶ą¦æą¦²ą§ą¦Ŗ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ą¦•ą¦°ą§ą¦Ŗą§‹ą¦°ą§‡ą¦¶ą¦Ø ą¦²ą¦æą¦®ą¦æą¦Ÿą§‡ą¦”'),
(51609, 43314, 'no_lang_code', 'name', 'West Bengal Electronics Industry Development Corporation Limited (India)'),
(51610, 43315, 'fr', 'name', 'Haute Ɖcole de la Ville de LiĆØge'),
(51611, 43316, 'en', 'name', 'Southwest Acupuncture College - Boulder'),
(51612, 43317, 'en', 'name', 'Farm Africa Ethiopia'),
(51613, 43318, 'en', 'name', 'China University of Technology'),
(51614, 43318, 'zh', 'name', 'äø­åœ‹ē§‘ęŠ€å¤§å­ø'),
(51615, 43319, 'en', 'name', 'National Library of Russia'),
(51616, 43319, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń библиотека'),
(51617, 43320, 'no_lang_code', 'name', 'Health Science Academy (South Africa)'),
(51618, 43321, 'en', 'name', 'Urumqi General Hospital of PLA'),
(51619, 43321, 'zh', 'name', 'å…°å·žå†›åŒŗä¹Œé²ęœØé½ę€»åŒ»é™¢'),
(51620, 43322, 'en', 'name', 'New York Space Grant Consortium'),
(51621, 43323, 'en', 'name', 'Alliance of Health'),
(51622, 43323, 'fr', 'name', 'Alliance Nationale Contre le SIDA en Cote d''Ivoire'),
(51623, 43324, 'en', 'name', 'Eastern Wyoming College'),
(51624, 43325, 'no_lang_code', 'name', 'Harman (United States)'),
(51625, 43326, 'en', 'name', 'Commonwealth Education Trust'),
(51626, 43327, 'en', 'name', 'Manhattan Area Technical College'),
(51627, 43328, 'no_lang_code', 'name', 'Sun Pharma Advanced Research (India)'),
(51628, 43329, 'en', 'name', 'Institute of Continuous Media Mechanics'),
(51629, 43329, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики ŃŠæŠ»Š¾ŃˆŠ½Ń‹Ń… среГ'),
(51630, 43330, 'en', 'name', 'Centre For Environment Architecture & Human Settlements'),
(51631, 43331, 'en', 'name', 'Father Muller Homoeopathic Medical College'),
(51632, 43332, 'it', 'name', 'Conservatorio di Musica Pierluigi da Palestrina'),
(51633, 43333, 'pt', 'name', 'Faculdade de Medicina de JundiaĆ­'),
(51634, 43334, 'de', 'name', 'Akademie der Bildenden Künste Nürnberg'),
(51635, 43334, 'en', 'name', 'Academy of Fine Arts Nuremberg'),
(51636, 43335, 'en', 'name', 'Centre for Educational Development in Health Arusha'),
(51637, 43336, 'en', 'name', 'Near East School of Theology'),
(51638, 43337, 'en', 'name', 'Pennsylvania Department of Military and Veterans Affairs'),
(51639, 43338, 'en', 'name', 'British Federation of Women Graduates'),
(51640, 43339, 'sl', 'name', 'Å olski center Slovenj Gradec'),
(51641, 43340, 'en', 'name', 'Central Scientific Research Institute of Tuberculosis Russian Academy of Medical Sciences'),
(51642, 43340, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»ŠµŠ·Š° Российской акаГемии меГицинских наук'),
(51643, 43341, 'en', 'name', 'Division of Antarctic Infrastructure and Logistics'),
(51644, 43342, 'en', 'name', 'Guizhou Institute of Plant Protection'),
(51645, 43342, 'zh', 'name', 'č“µå·žēœę¤ē‰©äæęŠ¤ē ”ē©¶ę‰€'),
(51646, 43343, 'pt', 'name', 'Mendelics'),
(51647, 43344, 'fr', 'name', 'Association de Recherche de Communication et d’Accompagnement Ć  Domicile de personnes Vivant avec le VIH'),
(51648, 43345, 'en', 'name', 'Carteret Community College'),
(51649, 43346, 'no_lang_code', 'name', 'AXO Science (France)'),
(51650, 43347, 'en', 'name', 'Institute of Engineering Science'),
(51651, 43347, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(51652, 43348, 'en', 'name', 'Higher School of Humanities in Leszno'),
(51653, 43348, 'pl', 'name', 'Wyższa Szkoła Humanistyczna'),
(51654, 43349, 'en', 'name', 'Ceramic Society of Japan'),
(51655, 43349, 'ja', 'name', 'ę—„ęœ¬ć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹å”ä¼š'),
(51656, 43350, 'no_lang_code', 'name', 'WSFS Financial Corporation (United States)'),
(51657, 43351, 'en', 'name', 'Korea Air Force Academy'),
(51658, 43351, 'ko', 'name', '공군사꓀학교'),
(51659, 43352, 'no_lang_code', 'name', 'Bristol-Myers Squibb (India)'),
(51660, 43353, 'en', 'name', 'Israel National Road Safety Authority'),
(51661, 43354, 'en', 'name', 'Texas Council for Developmental Disabilities'),
(51662, 43355, 'no_lang_code', 'name', 'Metav (Romania)'),
(51663, 43356, 'en', 'name', 'Ministry of Foreign Affairs'),
(51664, 43356, 'pt', 'name', 'Ministério dos Negócios Estrangeiros'),
(51665, 43357, 'it', 'name', 'Accademia di Belle Arti di Foggia'),
(51666, 43358, 'fr', 'name', 'Institut de PalƩontologie Humaine'),
(51667, 43359, 'no_lang_code', 'name', 'Techno India Group (India)'),
(51668, 43360, 'en', 'name', 'European Investment Bank'),
(51669, 43361, 'en', 'name', 'Grays Harbor College'),
(51670, 43362, 'en', 'name', 'Pearl River Community College'),
(51671, 43363, 'ja', 'name', 'ē¦å³¶å­¦é™¢å¤§å­¦'),
(51672, 43363, 'no_lang_code', 'name', 'Fukushima College'),
(51673, 43364, 'fr', 'name', 'AFRICSantƩ'),
(51674, 43365, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ī›Ī¬ĻĪ¹ĻƒĪ±Ļ‚'),
(51675, 43365, 'en', 'name', 'Technological Educational Institute of Thessaly'),
(51676, 43366, 'en', 'name', 'Korea Green Promotion Agency'),
(51677, 43367, 'en', 'name', 'Centre For Development Alternatives'),
(51678, 43368, 'no_lang_code', 'name', 'Cargill (Netherlands)'),
(51679, 43369, 'en', 'name', 'British Ornithologists Union'),
(51680, 43370, 'en', 'name', 'National Institute of Pharmaceutical Education and Research'),
(51681, 43371, 'de', 'name', 'Fachhochschule für öffentliche Verwaltung, Polizei und Rechtspflege des Landes Mecklenburg-Vorpommern'),
(51682, 43372, 'en', 'name', 'All-Russian Scientific Research Institute of Food Biotechnology'),
(51683, 43372, 'ru', 'name', 'Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ˜Š©Š•Š’ŠžŠ™ Š‘Š˜ŠžŠ¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š˜'),
(51684, 43373, 'en', 'name', 'St.Martha''s College Of Nursing'),
(51685, 43374, 'en', 'name', 'Taiyuan Central Hospital'),
(51686, 43374, 'zh', 'name', 'å¤ŖåŽŸåø‚äø­åæƒåŒ»é™¢'),
(51687, 43375, 'no_lang_code', 'name', 'Baxalta (United States)'),
(51688, 43376, 'de', 'name', 'PƤdagogische Hochschule Wallis'),
(51689, 43376, 'fr', 'name', 'Haute Ɖcole PĆ©dagogique du Valais'),
(51690, 43377, 'en', 'name', 'Delaney AIDS Research Enterprise'),
(51691, 43378, 'en', 'name', 'United States Army Reserve'),
(51692, 43379, 'en', 'name', 'CEC ArtsLink'),
(51693, 43380, 'no_lang_code', 'name', 'Virtual Materials Group (Canada)'),
(51694, 43381, 'no_lang_code', 'name', 'MapĆŗa University'),
(51695, 43381, 'tl', 'name', 'Suriang MapĆŗa ng Teknolohiya'),
(51696, 43382, 'en', 'name', 'Texas Department of Aging and Disability Services'),
(51697, 43383, 'en', 'name', 'Dunwoody College of Technology'),
(51698, 43384, 'fr', 'name', 'Ministère de l''Agriculture, du Développement Rural et de la Pêche'),
(51699, 43385, 'en', 'name', 'Africa Rice Center'),
(51700, 43386, 'en', 'name', 'Central Bank of Venezuela'),
(51701, 43386, 'es', 'name', 'Banco Central de Venezuela'),
(51702, 43387, 'en', 'name', 'Halifax Community College'),
(51703, 43388, 'en', 'name', 'Manubhai Patel Dental College and Hospital'),
(51704, 43389, 'en', 'name', 'Estonian Information Technology College'),
(51705, 43389, 'et', 'name', 'Eesti Infotehnoloogia Kolledž'),
(51706, 43390, 'fr', 'name', 'SociƩtƩ GƩnƩrale des Travaux du Maroc'),
(51707, 43391, 'en', 'name', 'Ministry of Water and Energy'),
(51708, 43392, 'en', 'name', 'Australian Institute of Physics'),
(51709, 43393, 'no_lang_code', 'name', 'Lepra Society'),
(51710, 43394, 'no_lang_code', 'name', 'United Continental (United States)'),
(51711, 43395, 'en', 'name', 'National Institute of Technology, Tomakomai College'),
(51712, 43395, 'ja', 'name', 'č‹«å°ē‰§å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(51713, 43396, 'en', 'name', 'Texas College of Traditional Chinese Medicine, Texas Health and Science University'),
(51714, 43397, 'en', 'name', 'Ovarian Awareness Walk'),
(51715, 43398, 'en', 'name', 'Resource Optimization Initiative'),
(51716, 43399, 'en', 'name', 'Richland College'),
(51717, 43400, 'fr', 'name', 'SociƩtƩ de Conseil et de Prospective Scientifique'),
(51718, 43401, 'en', 'name', 'Ministry of Mines, Industry and Technological Development'),
(51719, 43401, 'fr', 'name', 'Ministère des Mines, de l''Industrie et du Développement Technologique'),
(51720, 43402, 'fr', 'name', 'Institut Technique des Grandes Cultures'),
(51721, 43403, 'ja', 'name', 'äø­å›½å”—ę–™ę Ŗå¼ä¼šē¤¾'),
(51722, 43403, 'no_lang_code', 'name', 'Chugoku Marine Paints (Japan)'),
(51723, 43404, 'en', 'name', 'Research on Poverty Alleviation'),
(51724, 43405, 'en', 'name', 'Community Development Resource Network'),
(51725, 43406, 'en', 'name', 'St. Mary’s Hospital'),
(51726, 43407, 'en', 'name', 'Thailand National Metal and Materials Technology Center'),
(51727, 43407, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹‚ąø„ąø«ąø°ą¹ąø„ąø°ąø§ąø±ąøŖąø”ąøøą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(51728, 43408, 'en', 'name', 'Miles Community College'),
(51729, 43409, 'en', 'name', 'Princeton Public Schools'),
(51730, 43410, 'fr', 'name', 'Coordination Nationale des Organisations Paysannes du Mali'),
(51731, 43411, 'en', 'name', 'Office of the Attorney General Virginia'),
(51732, 43412, 'en', 'name', 'Nigerian Institute for Trypanosomiasis Research'),
(51733, 43413, 'no_lang_code', 'name', 'Etablissements Abdelmoula (Tunisia)'),
(51734, 43414, 'pt', 'name', 'Fundo para o Desenvolvimento Tecnológico das Telecomunicações'),
(51735, 43415, 'en', 'name', 'Westmoreland County Community College'),
(51736, 43416, 'no_lang_code', 'name', 'Avaya (United States)'),
(51737, 43417, 'en', 'name', 'University of Applied Sciences Europe'),
(51738, 43418, 'it', 'name', 'Istituto di Alta Formazione Musicale Conservatorio "Claudio Monteverdi"'),
(51739, 43419, 'en', 'name', 'New Jersey Turnpike Authority'),
(51740, 43420, 'en', 'name', 'Centre for Sexual Health and HIV AIDS Research'),
(51741, 43421, 'en', 'name', 'Nansen Environmental Research Centre India'),
(51742, 43422, 'en', 'name', 'Mvumi Hospital'),
(51743, 43423, 'en', 'name', 'Northwestern Connecticut Community College'),
(51744, 43424, 'en', 'name', 'Nick Kot Charity For TBI'),
(51745, 43425, 'en', 'name', 'Westminster College - Missouri'),
(51746, 43426, 'en', 'name', 'Ministry of Irrigation and Water Development'),
(51747, 43427, 'no_lang_code', 'name', 'Converse (United States)'),
(51748, 43428, 'en', 'name', 'Coeliac UK'),
(51749, 43429, 'en', 'name', 'Beijing Botanical Garden'),
(51750, 43429, 'zh', 'name', 'åŒ—äŗ¬ę¤ē‰©å›­'),
(51751, 43430, 'en', 'name', 'Institute for Scintillation Materials'),
(51752, 43430, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ†ŠøŠ½Ń‚ŠøŠ»ŃŃ†Ń–Š¹Š½ŠøŃ… матеріалів'),
(51753, 43431, 'no_lang_code', 'name', 'Naturamole (France)'),
(51754, 43432, 'en', 'name', 'Medical Advances Without Animals Trust'),
(51755, 43433, 'en', 'name', 'Islamic Society of North America'),
(51756, 43434, 'en', 'name', 'Talmudic University'),
(51757, 43435, 'no_lang_code', 'name', 'Environmental Systems Research Institute (United States)'),
(51758, 43436, 'en', 'name', 'Saint Vladimir''s Orthodox Theological Seminary'),
(51759, 43436, 'fr', 'name', 'SƩminaire saint-vladimir'),
(51760, 43437, 'en', 'name', 'Central Arid Zone Research Institute'),
(51761, 43438, 'en', 'name', 'MTI College'),
(51762, 43439, 'no_lang_code', 'name', 'Nintendo (United States)'),
(51763, 43440, 'en', 'name', 'Rudolf Steiner College'),
(51764, 43441, 'fr', 'name', 'Institut Superieur Des Sciences De La Population'),
(51765, 43442, 'no_lang_code', 'name', 'Aegon (United States)'),
(51766, 43443, 'no_lang_code', 'name', 'mHealth (Kenya)'),
(51767, 43444, 'no_lang_code', 'name', 'Islamic Azad University Tonekabon'),
(51768, 43445, 'en', 'name', 'National Centre for Sustainable Coastal Management'),
(51769, 43446, 'en', 'name', 'Pakistan Space and Upper Atmosphere Research Commission'),
(51770, 43446, 'ur', 'name', 'Ų®Ł„Ų§Ų¦ŪŒ و ŲØŲ§Ł„Ų§Ų¦ŪŒ فضائی ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖŪŒ Ł…Ų£Ł…ŁˆŲ±ŪŒŪ'),
(51771, 43447, 'en', 'name', 'European Business School Paris'),
(51772, 43448, 'en', 'name', 'Southern African Development Community'),
(51773, 43449, 'no_lang_code', 'name', 'Pfizer (Australia)'),
(51774, 43450, 'pt', 'name', 'ColƩgio Teresiano de Braga'),
(51775, 43451, 'en', 'name', 'Spinal Research'),
(51776, 43452, 'en', 'name', 'Institute of Environmental Studies & Wetland Management'),
(51777, 43453, 'en', 'name', 'National Water Research Center'),
(51778, 43454, 'en', 'name', 'Davao Medical School Foundation'),
(51779, 43455, 'no_lang_code', 'name', 'Hyundai Heavy Industries (South Korea)'),
(51780, 43456, 'en', 'name', 'Paradise Valley Community College'),
(51781, 43457, 'en', 'name', 'Office of the First Minister and deputy First Minister'),
(51782, 43458, 'en', 'name', 'Netaji Subhas National Institute of Sports'),
(51783, 43459, 'en', 'name', 'Interdenominational Theological Center'),
(51784, 43460, 'no_lang_code', 'name', 'Madera BioSciences (United States)'),
(51785, 43461, 'no_lang_code', 'name', 'MAPNA Group (Iran)'),
(51786, 43462, 'en', 'name', 'Concordia College - New York'),
(51787, 43463, 'no_lang_code', 'name', 'Macopharma (France)'),
(51788, 43464, 'en', 'name', 'Canterbury Museum'),
(51789, 43465, 'no_lang_code', 'name', 'Helion (France)'),
(51790, 43466, 'no_lang_code', 'name', 'Mastercard (United States)'),
(51791, 43467, 'fr', 'name', 'Programme National Multisectoriel de Lutte contre le sida'),
(51792, 43468, 'no_lang_code', 'name', 'Neovii Biotech (Germany)'),
(51793, 43469, 'fr', 'name', 'Groupe de Musique Electroacoustique d''Albi'),
(51794, 43470, 'en', 'name', 'Dallas Christian College'),
(51795, 43471, 'fr', 'name', 'Agence pour le Développement et la Réhabilitation de la Ville de Fès'),
(51796, 43472, 'no_lang_code', 'name', 'Sun Nuclear (United States)'),
(51797, 43473, 'en', 'name', 'Virginia Economic Development Partnership'),
(51798, 43474, 'no_lang_code', 'name', 'IBM (Denmark)'),
(51799, 43475, 'no_lang_code', 'name', 'Avantha (India)'),
(51800, 43476, 'no_lang_code', 'name', 'Helios Global (United States)'),
(51801, 43477, 'en', 'name', 'Urban Management Centre'),
(51802, 43478, 'en', 'name', 'National Research Centre on Mithun'),
(51803, 43479, 'fr', 'name', 'Ɖcole Militaire Interarmes'),
(51804, 43480, 'no_lang_code', 'name', 'C-M Concrete Products (Australia)'),
(51805, 43481, 'en', 'name', 'Boston Baptist College'),
(51806, 43482, 'en', 'name', 'Louisiana State University of Alexandria'),
(51807, 43482, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Louisiane Ć  Alexandria'),
(51808, 43483, 'en', 'name', 'International Institute for Sustainable Development'),
(51809, 43484, 'en', 'name', 'Saratov Research Center'),
(51810, 43484, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Даратовский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук'),
(51811, 43485, 'no_lang_code', 'name', 'Vilmorin & Cie (France)'),
(51812, 43486, 'en', 'name', 'Kenya Plant Health Inspectorate Services'),
(51813, 43487, 'en', 'name', 'Research Institute of Pharmacology and Regenerative Medicine named ED Goldberg'),
(51814, 43487, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фармакологии Šø регенеративной меГицины имени Š•.Š”. Š“Š¾Š»ŃŒŠ“Š±ŠµŃ€Š³Š°'),
(51815, 43488, 'en', 'name', 'Sri Devaraj Urs Academy of Higher Education and Research'),
(51816, 43489, 'en', 'name', 'Divine Word College'),
(51817, 43490, 'no_lang_code', 'name', 'NortonLifeLock (United States)'),
(51818, 43491, 'no_lang_code', 'name', 'Knexus Research (United States)'),
(51819, 43492, 'en', 'name', 'National Agricultural Research Institute'),
(51820, 43493, 'en', 'name', 'Hobe Sound Bible College'),
(51821, 43494, 'en', 'name', 'Delhi Integrated Multi-Modal Transit System'),
(51822, 43495, 'en', 'name', 'National HIV/AIDS/STI/TB Council'),
(51823, 43496, 'no_lang_code', 'name', 'Agama Energy (South Africa)'),
(51824, 43497, 'en', 'name', 'South Tyneside and Sunderland NHS Foundation Trust'),
(51825, 43498, 'fr', 'name', 'Centre d''Etudes et De Recherche en Informatique et Communications'),
(51826, 43499, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— সরকার'),
(51827, 43499, 'en', 'name', 'Government of West Bengal'),
(51828, 43500, 'no_lang_code', 'name', 'Vision Objects (France)'),
(51829, 43501, 'fr', 'name', 'Commune de Matam'),
(51830, 43502, 'de', 'name', 'Akademie der Bildenden Künste München'),
(51831, 43502, 'en', 'name', 'Academy of Fine Arts Munich'),
(51832, 43503, 'en', 'name', 'Emperors College'),
(51833, 43504, 'en', 'name', 'National Institute of Cardiovascular Diseases'),
(51834, 43505, 'en', 'name', 'Marion Military Institute'),
(51835, 43506, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(51836, 43507, 'en', 'name', 'Australian College of Rural and Remote Medicine'),
(51837, 43508, 'en', 'name', 'Miriam College'),
(51838, 43508, 'tl', 'name', 'Dalubhasaang Miriam'),
(51839, 43509, 'en', 'name', 'Pennsylvania College of Art and Design'),
(51840, 43510, 'en', 'name', 'Hunan Institute of Science and Technology'),
(51841, 43510, 'zh', 'name', 'ę¹–å—ē†å·„å­¦é™¢'),
(51842, 43511, 'no_lang_code', 'name', 'Allegro Ophthalmics (United States)'),
(51843, 43512, 'en', 'name', 'Morgan Community College'),
(51844, 43513, 'en', 'name', 'New York State Council on Graduate Medical Education'),
(51845, 43514, 'no_lang_code', 'name', 'L&E Research (United States)'),
(51846, 43515, 'ca', 'name', 'Unió Catalana de Centres de Desenvolupament Infantil i Atenció Precoç'),
(51847, 43516, 'en', 'name', 'Glen Oaks Community College'),
(51848, 43517, 'en', 'name', 'St. Catharine College'),
(51849, 43518, 'de', 'name', 'Hamburger Fern-Hochschule'),
(51850, 43519, 'en', 'name', 'Kunming Metallurgy College'),
(51851, 43519, 'zh', 'name', 'ę˜†ę˜Žå†¶é‡‘é«˜ē­‰äø“ē§‘å­¦ę ”'),
(51852, 43520, 'it', 'name', 'Conservatorio di Musica Francesco Cilea'),
(51853, 43521, 'en', 'name', 'Louisiana Sea Grant'),
(51854, 43522, 'no_lang_code', 'name', 'Joaquim Peixoto Azevedo and Sons (Portugal)'),
(51855, 43523, 'en', 'name', 'North Dakota Space Grant Consortium'),
(51856, 43524, 'en', 'name', 'China Leather and Footwear Industry Research Institute'),
(51857, 43524, 'zh', 'name', 'äø­å›½ēš®é©å’Œåˆ¶éž‹å·„äøšē ”ē©¶é™¢'),
(51858, 43525, 'en', 'name', 'Aneurin Bevan University Health Board'),
(51859, 43526, 'cs', 'name', 'VysokÔ Ŕkola obchodní a hotelovÔ'),
(51860, 43526, 'en', 'name', 'College of Business and Hotel Management'),
(51861, 43527, 'no_lang_code', 'name', '3-Sigma Research (United States)'),
(51862, 43528, 'en', 'name', 'Mali Health'),
(51863, 43529, 'en', 'name', 'Government of Andhra Pradesh'),
(51864, 43530, 'ja', 'name', 'ęŒē”°č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(51865, 43530, 'no_lang_code', 'name', 'Mochida Pharmaceutical (Japan)'),
(51866, 43531, 'en', 'name', 'Federal Center Research Fundamentals of Biotechnology'),
(51867, 43531, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Šµ основы биотехнологии'),
(51868, 43532, 'en', 'name', 'Wentworth Military Academy and College'),
(51869, 43533, 'pl', 'name', 'Wyższa Szkoła Zarządzania Środowiskiem w Tucholi'),
(51870, 43534, 'en', 'name', 'Institute of Physical Materials Science'),
(51871, 43534, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š˜Š—Š˜Š§Š•Š”ŠšŠžŠ“Šž ŠœŠŠ¢Š•Š Š˜ŠŠ›ŠžŠ’Š•Š”Š•ŠŠ˜ŠÆ'),
(51872, 43535, 'pt', 'name', 'Faculdades Integradas do Vale do IvaĆ­'),
(51873, 43536, 'en', 'name', 'Desert Research Foundation of Namibia'),
(51874, 43537, 'en', 'name', 'Institute of the Earth’s Crust'),
(51875, 43537, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ земной коры Š”Šž Š ŠŠ'),
(51876, 43538, 'pt', 'name', 'Fundacao Joaquim Nabuco'),
(51877, 43539, 'no_lang_code', 'name', 'Time Warner (United States)'),
(51878, 43540, 'en', 'name', 'Bank of Brazil'),
(51879, 43540, 'pt', 'name', 'Banco do Brasil'),
(51880, 43541, 'no_lang_code', 'name', 'Albany International (United States)'),
(51881, 43542, 'en', 'name', 'Oklahoma State University at Tulsa'),
(51882, 43543, 'en', 'name', 'Lincoln College of New England'),
(51883, 43544, 'no_lang_code', 'name', 'Agram (Poland)'),
(51884, 43545, 'en', 'name', 'University of Maine School of Law'),
(51885, 43546, 'en', 'name', 'Leukemia & Lymphoma Society of Canada'),
(51886, 43547, 'en', 'name', 'South Country Central School District'),
(51887, 43548, 'en', 'name', 'Randolph Community College'),
(51888, 43549, 'en', 'name', 'Austrian Polar Research Institute'),
(51889, 43550, 'pt', 'name', 'Prefeitura Municipal de Curitiba'),
(51890, 43551, 'en', 'name', 'Christian Health Association of Malawi'),
(51891, 43552, 'el', 'name', '΄πουργείο Ī„Ļ€ĪæĪ“ĪæĪ¼ĻŽĪ½, ĪœĪµĻ„Ī±Ļ†ĪæĻĻŽĪ½ και Ī”Ī¹ĪŗĻ„ĻĻ‰Ī½'),
(51892, 43552, 'en', 'name', 'Ministry of Infrastructure, Transport and Networks'),
(51893, 43553, 'en', 'name', 'Coastal Bend College'),
(51894, 43554, 'en', 'name', 'San Bernardino Community College District'),
(51895, 43555, 'en', 'name', 'Institute of Complex Development of Bowels'),
(51896, 43555, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем комплексного Š¾ŃŠ²Š¾ŠµŠ½ŠøŃ неГр Š ŠŠ');
INSERT INTO `ror_settings` VALUES
(51897, 43556, 'de', 'name', 'Fachhochschule der Wirtschaft'),
(51898, 43557, 'en', 'name', 'Prevention Alzheimer International Foundation'),
(51899, 43558, 'en', 'name', 'National Parks Board'),
(51900, 43559, 'en', 'name', 'Beijing Research Institute of Uranium Geology'),
(51901, 43559, 'zh', 'name', 'ę øå·„äøšåŒ—äŗ¬åœ°č“Øē ”ē©¶é™¢'),
(51902, 43560, 'en', 'name', 'Xavier School of Management'),
(51903, 43561, 'en', 'name', 'Programme for Accessible Health Communication and Education'),
(51904, 43562, 'no_lang_code', 'name', 'OnApp (Gibraltar)'),
(51905, 43563, 'en', 'name', 'Ohio Emergency Management Agency'),
(51906, 43564, 'fr', 'name', 'Laboratoire de Recherches VƩtƩrinaires et Zootechniques de Farcha'),
(51907, 43565, 'no_lang_code', 'name', 'T-MARC'),
(51908, 43566, 'en', 'name', 'British Institute of Persian Studies'),
(51909, 43567, 'en', 'name', 'Whatcom Museum'),
(51910, 43568, 'en', 'name', 'Federal Research Centre Coal and Coal Chemistry'),
(51911, 43568, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр ŃƒŠ³Š»Ń Šø ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŠø Š”Šž Š ŠŠ'),
(51912, 43569, 'en', 'name', 'Neath Port Talbot College'),
(51913, 43570, 'fr', 'name', 'Ɖcole Nationale d''Administration PĆ©nitentiaire'),
(51914, 43571, 'en', 'name', 'Office of Policy and Management'),
(51915, 43572, 'en', 'name', 'Nuclear Safety Institute'),
(51916, 43572, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ безопасности'),
(51917, 43573, 'en', 'name', 'Institute of Computational Modeling'),
(51918, 43573, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š³Š¾ Š¼Š¾Š“ŠµŠ»ŠøŃ€Š¾Š²Š°Š½ŠøŃ Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(51919, 43574, 'de', 'name', 'Deutsche Hochschule für Prävention und Gesundheitsmanagement'),
(51920, 43575, 'no_lang_code', 'name', 'Biocon (India)'),
(51921, 43576, 'da', 'name', 'Region Hovedstadens psykiatriske hospital'),
(51922, 43576, 'en', 'name', 'Mental Health Services'),
(51923, 43577, 'en', 'name', 'Edward F. Szczepanik State School of Higher Professional Education in Suwalki'),
(51924, 43577, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. prof. E. Szczepanika w Suwałkach'),
(51925, 43578, 'no_lang_code', 'name', 'Global Green Synergy (Malaysia)'),
(51926, 43579, 'en', 'name', 'Russian Research Institute of Fruit Crop Breeding'),
(51927, 43579, 'ru', 'name', 'Всероссийского Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° селекции плоГовых ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€'),
(51928, 43580, 'en', 'name', 'State School of Higher Education in Chełm'),
(51929, 43580, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Chełmie'),
(51930, 43581, 'no_lang_code', 'name', 'Nanobiotix (France)'),
(51931, 43582, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Art du Nord-Pas-de-Calais'),
(51932, 43583, 'en', 'name', 'All Russian Institute for Scientific and Technical Information'),
(51933, 43583, 'ru', 'name', 'Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°ŃƒŃ‡Š½Š¾Š¹ Šø технической информации'),
(51934, 43584, 'en', 'name', 'Gwinnett College'),
(51935, 43585, 'en', 'name', 'Commission on Professionals in Science and Technology'),
(51936, 43586, 'no_lang_code', 'name', 'Kenya Seed Company (Kenya)'),
(51937, 43587, 'no_lang_code', 'name', 'Satriwitthaya 2 School'),
(51938, 43587, 'th', 'name', 'โรงเรียนสตรีวณทยา 2 ą¹ƒąø™ąøžąø£ąø°ąø£ąø²ąøŠąø¹ąø›ąø–ąø±ąø”ąø ą¹ŒąøŖąø”ą¹€ąø”ą¹‡ąøˆąøžąø£ąø°ąøØąø£ąøµąø™ąø„ąø£ąø“ąø™ąø—ąø£ąø²ąøšąø£ąø”ąø£ąø²ąøŠąøŠąø™ąø™ąøµ'),
(51939, 43588, 'no_lang_code', 'name', 'NicƩphore CitƩ (France)'),
(51940, 43589, 'no_lang_code', 'name', 'Ressources IngƩnierie (Morocco)'),
(51941, 43590, 'no_lang_code', 'name', 'Egyptian Consulting & Trading Co. Ltd'),
(51942, 43591, 'en', 'name', 'Northeastern Technical College'),
(51943, 43592, 'en', 'name', 'Baikal Institute of Nature Management'),
(51944, 43592, 'ru', 'name', 'ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(51945, 43593, 'en', 'name', 'National Institute of Technology, Tsuyama College'),
(51946, 43593, 'ja', 'name', 'ę“„å±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(51947, 43594, 'en', 'name', 'Council of State'),
(51948, 43594, 'fi', 'name', 'Valtioneuvosto'),
(51949, 43594, 'sv', 'name', 'statsrƄdet'),
(51950, 43595, 'en', 'name', 'College of Slavonski Brod'),
(51951, 43595, 'hr', 'name', 'VeleučiliŔte u Slavonskom Brodu'),
(51952, 43596, 'no_lang_code', 'name', 'Global University Systems'),
(51953, 43597, 'en', 'name', 'Lakes College'),
(51954, 43598, 'no_lang_code', 'name', 'MTEL-KTEI Teleinfra (India)'),
(51955, 43599, 'en', 'name', 'New York State Developmental Disabilities Planning Council'),
(51956, 43600, 'en', 'name', 'Institute for Computer Aided Design'),
(51957, 43600, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматизации ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃ Российской акаГемии наук'),
(51958, 43601, 'en', 'name', 'Yuxi Normal University'),
(51959, 43601, 'zh', 'name', 'ēŽ‰ęŗŖåøˆčŒƒå­¦é™¢'),
(51960, 43602, 'pt', 'name', 'Centro de Medicina de Reabilitacao do Alcoitão'),
(51961, 43603, 'fr', 'name', 'Haute Ɖcole PĆ©dagogique Fribourg'),
(51962, 43604, 'en', 'name', 'Bexley College'),
(51963, 43605, 'no_lang_code', 'name', 'Intel (Malaysia)'),
(51964, 43606, 'en', 'name', 'Foundation for Advancing Veterans Health Research'),
(51965, 43607, 'en', 'name', 'Community of Professional Sociologists'),
(51966, 43607, 'ru', 'name', 'Дообщество ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… социологов'),
(51967, 43608, 'en', 'name', 'Institute of Environment and Sustainable Development in Agriculture'),
(51968, 43608, 'zh', 'name', 'å†œäøšēŽÆå¢ƒäøŽåÆęŒē»­å‘å±•ē ”ē©¶ę‰€'),
(51969, 43609, 'en', 'name', 'Haywood Community College'),
(51970, 43610, 'no_lang_code', 'name', 'Umgeni Water Amanzi'),
(51971, 43611, 'pt', 'name', 'Associação Desportiva e Cultural da Escola Preparatória Diogo Cão'),
(51972, 43612, 'en', 'name', 'South African Institute of Tax Practitioners'),
(51973, 43613, 'en', 'name', 'Toronto Baptist Seminary and Bible College'),
(51974, 43614, 'en', 'name', 'SƔmi Educational Centre'),
(51975, 43614, 'sv', 'name', 'Samernas Utbildningscentrum'),
(51976, 43615, 'en', 'name', 'Feed Research Institute'),
(51977, 43615, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢é„²ę–™ē ”ē©¶ę‰€'),
(51978, 43616, 'en', 'name', 'Daugavpils Medical College'),
(51979, 43616, 'lv', 'name', 'Daugavpils medicinas koledza'),
(51980, 43617, 'en', 'name', 'Korea Naval Academy'),
(51981, 43617, 'ko', 'name', '핓군사꓀학교'),
(51982, 43618, 'no_lang_code', 'name', 'De Beers (South Africa)'),
(51983, 43619, 'en', 'name', 'Department of Enterprise, Trade and Employment'),
(51984, 43619, 'ga', 'name', 'An Roinn Fiontar, TrƔdƔla agus Fostaƭochta'),
(51985, 43620, 'en', 'name', 'San Joaquin Delta College'),
(51986, 43621, 'en', 'name', 'Gian Sagar Dental College and Hospital'),
(51987, 43622, 'en', 'name', 'Anna Freud Centre'),
(51988, 43623, 'no_lang_code', 'name', 'Valley National Bank (United States)'),
(51989, 43624, 'en', 'name', 'Society of Environmental Toxicology and Chemistry'),
(51990, 43625, 'en', 'name', 'Institute of Natural Resources'),
(51991, 43626, 'en', 'name', 'Arte Institute'),
(51992, 43627, 'pl', 'name', 'Wyższa Szkoła Humanistyczno-Przyrodnicza w Sandomierzu'),
(51993, 43628, 'en', 'name', 'Perpetual Succour Hospital'),
(51994, 43629, 'en', 'name', 'Institute of Mining'),
(51995, 43629, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного Гела Š”Šž Š ŠŠ'),
(51996, 43630, 'en', 'name', 'Southeastern Technical College'),
(51997, 43631, 'en', 'name', 'Native American Bible College'),
(51998, 43632, 'pt', 'name', 'Agência Nacional de Energia Elétrica'),
(51999, 43633, 'en', 'name', 'Phoenix Institute of Herbal Medicine and Acupuncture'),
(52000, 43634, 'en', 'name', 'Elizabeth Glaser Pediatric AIDS Foundation'),
(52001, 43635, 'sv', 'name', 'Landstinget Dalarna'),
(52002, 43636, 'it', 'name', 'Accademia di Belle Arti di Roma'),
(52003, 43637, 'no_lang_code', 'name', 'Strathmore Company (United States)'),
(52004, 43638, 'en', 'name', 'Beijing Vaccum Electronic Research Institute'),
(52005, 43638, 'zh', 'name', 'åŒ—äŗ¬ēœŸē©ŗē”µå­ęŠ€ęœÆē ”ē©¶ę‰€'),
(52006, 43639, 'en', 'name', 'Indian Institute of Remote Sensing'),
(52007, 43640, 'en', 'name', 'Caldwell Community College & Technical Institute'),
(52008, 43641, 'no_lang_code', 'name', 'SertiNK'),
(52009, 43641, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ автономное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŃƒŃ‡ŠµŠ±Š½Ń‹Š¹ центр Дварка Šø ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŒ при ŠœŠ“ТУ им. Š.Š­. Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(52010, 43642, 'en', 'name', 'National Institute of Technology, Hiroshima College'),
(52011, 43642, 'ja', 'name', 'åŗƒå³¶å•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(52012, 43643, 'fr', 'name', 'Consortium pour la recherche Ʃconomique et sociale'),
(52013, 43644, 'en', 'name', 'Garden City Community College'),
(52014, 43645, 'pl', 'name', 'Gliwicka Wyższa Szkoła Przedsiębiorczości'),
(52015, 43646, 'en', 'name', 'Innoviris'),
(52016, 43647, 'en', 'name', 'Agri-Food and Veterinary Authority of Singapore'),
(52017, 43648, 'en', 'name', 'Antwerp Maritime Academy'),
(52018, 43648, 'nl', 'name', 'Hogere Zeevaartschool Antwerpen'),
(52019, 43649, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Raciborzu'),
(52020, 43650, 'en', 'name', 'Indian Air Force'),
(52021, 43650, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤¾ą¤Æą„ ą¤øą„‡ą¤Øą¤¾'),
(52022, 43651, 'fr', 'name', 'Ɖcole SupĆ©rieure des IngĆ©nieurs de l''Ɖquipement Rural'),
(52023, 43652, 'en', 'name', 'Hong Kong Institute of Surveyors'),
(52024, 43652, 'zh', 'name', 'é¦™ęøÆęø¬é‡åø«å­øęœƒ'),
(52025, 43653, 'en', 'name', 'World Intellectual Property Organization'),
(52026, 43654, 'en', 'name', 'African Association of Remote Sensing of the Environment'),
(52027, 43655, 'en', 'name', 'Prevent Alzheimer’s Disease 2020'),
(52028, 43656, 'en', 'name', 'Base Training'),
(52029, 43657, 'en', 'name', 'Duchy College'),
(52030, 43658, 'en', 'name', 'Geological Museum of China'),
(52031, 43658, 'zh', 'name', 'äø­å›½åœ°č“Øåšē‰©é¦†'),
(52032, 43659, 'en', 'name', 'International Centre for Reindeer Husbandry'),
(52033, 43660, 'en', 'name', 'G.S. Science, Arts And Commerce College'),
(52034, 43661, 'no_lang_code', 'name', 'Blackstar Amplification (United Kingdom)'),
(52035, 43662, 'no_lang_code', 'name', 'GroupeOPA (France)'),
(52036, 43663, 'en', 'name', 'Texarkana College'),
(52037, 43664, 'no_lang_code', 'name', 'Hiwin Technologies (Taiwan)'),
(52038, 43665, 'en', 'name', 'Ministry of Technology, Innovation & Citizens'' Services'),
(52039, 43666, 'no_lang_code', 'name', 'Moneague College'),
(52040, 43667, 'en', 'name', 'Institute of Applied Astronomy'),
(52041, 43667, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной астрономии'),
(52042, 43668, 'en', 'name', 'North Central State College'),
(52043, 43669, 'en', 'name', 'Ministry of Water and Irrigation'),
(52044, 43669, 'sw', 'name', 'Wizara ya Maji na Umwagiliaji'),
(52045, 43670, 'en', 'name', 'Pennsylvania Department of Conservation and Natural Resources'),
(52046, 43671, 'en', 'name', 'New York State Department of Transportation'),
(52047, 43672, 'de', 'name', 'Christoffel Blinden Mission'),
(52048, 43673, 'en', 'name', 'National Institute of Solar Energy'),
(52049, 43674, 'en', 'name', 'Redlands Community College'),
(52050, 43675, 'en', 'name', 'Petroleum Research Newfoundland and Labrador'),
(52051, 43676, 'en', 'name', 'Sussex County Community College'),
(52052, 43677, 'en', 'name', 'European Tropical Forest Research Network'),
(52053, 43678, 'de', 'name', 'PƤdagogische Hochschule Thurgau'),
(52054, 43678, 'en', 'name', 'Thurgau University of Teacher Education'),
(52055, 43679, 'es', 'name', 'Instituto de Investigaciones ElƩctricas'),
(52056, 43680, 'en', 'name', 'Higher School of Agribusiness'),
(52057, 43680, 'pl', 'name', 'Wyższa Szkoła Agrobiznesu w Łomży'),
(52058, 43680, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń Школа Агробизнеса в Ломже'),
(52059, 43681, 'es', 'name', 'Universidad PolitƩcnica de Tulancingo'),
(52060, 43682, 'en', 'name', 'College of North West London'),
(52061, 43683, 'en', 'name', 'United States Global Change Research Program'),
(52062, 43684, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ηπείρου'),
(52063, 43684, 'en', 'name', 'Technological Educational Institute of Epirus'),
(52064, 43685, 'en', 'name', 'Beijing Water Science and Technology Institute'),
(52065, 43685, 'zh', 'name', 'åŒ—äŗ¬åø‚ę°“ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(52066, 43686, 'en', 'name', 'Centre for the Study of Adolescence'),
(52067, 43687, 'en', 'name', 'Northern Essex Community College'),
(52068, 43688, 'no_lang_code', 'name', 'Evalueserve (India)'),
(52069, 43689, 'en', 'name', 'Chhattisgarh Council of Science and Technology'),
(52070, 43689, 'hi', 'name', 'ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ परिषद'),
(52071, 43690, 'en', 'name', 'Central Tobacco Research Institute'),
(52072, 43691, 'en', 'name', 'Institute of Special Animal and Plant Sciences'),
(52073, 43691, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ē‰¹äŗ§ē ”ē©¶ę‰€'),
(52074, 43692, 'no_lang_code', 'name', 'State Farm (United States)'),
(52075, 43693, 'pt', 'name', 'Faculdade de Tecnologia e CiĆŖncias'),
(52076, 43694, 'en', 'name', 'Clarendon College'),
(52077, 43695, 'en', 'name', 'Government of Uganda'),
(52078, 43696, 'en', 'name', 'Kenrick–Glennon Seminary'),
(52079, 43697, 'en', 'name', 'Breakthrough Institute'),
(52080, 43698, 'no_lang_code', 'name', 'International Drilling Services (Tunisia)'),
(52081, 43699, 'en', 'name', 'United Theological Seminary'),
(52082, 43700, 'en', 'name', 'Qinghai Meteorological Bureau'),
(52083, 43700, 'zh', 'name', 'é’ęµ·ēœę°”č±”å±€'),
(52084, 43701, 'en', 'name', 'Grace Bible College'),
(52085, 43702, 'no_lang_code', 'name', 'AECpolymers (France)'),
(52086, 43703, 'el', 'name', 'ΑκαΓημίες Ī•Ī¼Ļ€ĪæĻĪ¹ĪŗĪæĻ ĪĪ±Ļ…Ļ„Ī¹ĪŗĪæĻ'),
(52087, 43703, 'en', 'name', 'Merchant Marine Academy'),
(52088, 43704, 'it', 'name', 'Conservatorio di Musica Antonio Scontrino Trapani'),
(52089, 43705, 'en', 'name', 'Sherwood Forest Hospitals NHS Foundation Trust'),
(52090, 43706, 'en', 'name', 'Wilkes Community College'),
(52091, 43707, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Art et de Design de Reims'),
(52092, 43708, 'no_lang_code', 'name', 'Close Concerns (United States)'),
(52093, 43709, 'no_lang_code', 'name', 'Northernchem (Canada)'),
(52094, 43710, 'no_lang_code', 'name', 'Samsung (India)'),
(52095, 43711, 'en', 'name', 'The Independent Games Developers Association'),
(52096, 43712, 'en', 'name', 'Connecticut Department of Labor'),
(52097, 43713, 'en', 'name', 'Indian National Trust for Art and Cultural Heritage'),
(52098, 43714, 'en', 'name', 'Uganda National Association Of the Deaf'),
(52099, 43715, 'en', 'name', 'Heritage Bible College'),
(52100, 43716, 'fr', 'name', 'Ɖcole des Avocats RhĆ“ne-Alpes'),
(52101, 43717, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia para o Controle das Intoxicações por Plantas'),
(52102, 43718, 'en', 'name', 'Writers Project of Ghana'),
(52103, 43719, 'en', 'name', 'Inspiration Innovation Synergy University'),
(52104, 43720, 'en', 'name', 'Stockholm Health Care Services'),
(52105, 43720, 'sv', 'name', 'Stockholms lƤns sjukvƄrdsomrƄde'),
(52106, 43721, 'en', 'name', 'Pingry School'),
(52107, 43722, 'en', 'name', 'Moberly Area Community College'),
(52108, 43723, 'de', 'name', 'Landesschulrat für Tirol'),
(52109, 43724, 'en', 'name', 'Technology Information, Forecasting and Assessment Council'),
(52110, 43724, 'hi', 'name', 'ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą„‚ą¤šą¤Øą¤¾, ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤Øą„ą¤®ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤®ą„‚ą¤²ą„ą¤Æą¤¾ą¤‚ą¤•ą¤Ø परिषद'),
(52111, 43725, 'en', 'name', 'Georgia Highlands College'),
(52112, 43726, 'en', 'name', 'Ministry of Lands, Housing & Urban Development'),
(52113, 43727, 'en', 'name', 'National Institute of Technology, Miyakonojo College'),
(52114, 43727, 'ja', 'name', 'éƒ½åŸŽå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(52115, 43728, 'en', 'name', 'University of Garden City'),
(52116, 43729, 'fr', 'name', 'Laboratoire de Chimie Organique'),
(52117, 43730, 'no_lang_code', 'name', 'General Electric (India)'),
(52118, 43731, 'no_lang_code', 'name', 'Apex Innovations (United States)'),
(52119, 43732, 'en', 'name', 'Virginia Information Technologies Agency'),
(52120, 43733, 'en', 'name', 'Unitelma Sapienza University'),
(52121, 43733, 'it', 'name', 'UniversitĆ  telematica UNITELMA Sapienza'),
(52122, 43734, 'en', 'name', 'Department of Research and Specialist Services'),
(52123, 43735, 'en', 'name', 'Institute of Population and Public Health'),
(52124, 43736, 'en', 'name', 'Pasold Research Fund'),
(52125, 43737, 'pt', 'name', 'Escola Profissional Profitecla'),
(52126, 43738, 'no_lang_code', 'name', 'Assystem (Morocco)'),
(52127, 43739, 'en', 'name', 'Korea Fair Trade Commission'),
(52128, 43739, 'ko', 'name', 'ź³µģ •ź±°ėž˜ģœ„ģ›ķšŒ'),
(52129, 43740, 'en', 'name', 'Pennsylvania Department Of State'),
(52130, 43741, 'no_lang_code', 'name', 'Shanghai Supercomputer Center (China)'),
(52131, 43741, 'zh', 'name', 'äøŠęµ·č¶…ēŗ§č®”ē®—äø­åæƒ'),
(52132, 43742, 'en', 'name', 'Frederick S. Pardee RAND Graduate School'),
(52133, 43743, 'en', 'name', 'Anchorage'),
(52134, 43744, 'en', 'name', 'Zhengzhou Fruit Research Institute'),
(52135, 43744, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢éƒ‘å·žęžœę ‘ē ”ē©¶ę‰€'),
(52136, 43745, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Clermont-Ferrand'),
(52137, 43746, 'no_lang_code', 'name', 'Section27'),
(52138, 43747, 'en', 'name', 'Bon Secours Memorial College of Nursing'),
(52139, 43748, 'it', 'name', 'Sistema Bibliotecario di Udine e dell''Hinterland Udinese'),
(52140, 43749, 'en', 'name', 'Desert Research Center'),
(52141, 43750, 'en', 'name', 'Concordia College Alabama'),
(52142, 43751, 'en', 'name', 'Institute of Ecology and Genetics of Microorganisms'),
(52143, 43752, 'no_lang_code', 'name', 'Allium & Brassica Centre (United Kingdom)'),
(52144, 43753, 'no_lang_code', 'name', 'Vectec Solutions (United States)'),
(52145, 43754, 'fr', 'name', 'MinistĆØre de la Culture'),
(52146, 43755, 'ar', 'name', 'Ų§Ł„ŲØŁ†Łƒ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ Ł„Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(52147, 43755, 'en', 'name', 'Islamic Development Bank'),
(52148, 43756, 'no_lang_code', 'name', 'Cornerstone Specialty Wood Products (United States)'),
(52149, 43757, 'en', 'name', 'Career Institute Of Medical & Dental Sciences and Hospital'),
(52150, 43758, 'en', 'name', 'Indian Army'),
(52151, 43758, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤„ą¤²ą¤øą„‡ą¤Øą¤¾'),
(52152, 43759, 'en', 'name', 'Debre Berhan University'),
(52153, 43760, 'en', 'name', 'Child Health Research Foundation'),
(52154, 43761, 'en', 'name', 'Institute of Molecular Medicine'),
(52155, 43762, 'en', 'name', 'Royal British Legion'),
(52156, 43763, 'en', 'name', 'Nevada Space Grant Consortium'),
(52157, 43764, 'en', 'name', 'Archive of the Russian Academy of Sciences'),
(52158, 43764, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ филиал Архива Š ŠŠ'),
(52159, 43765, 'fr', 'name', 'Institut Libre d''Education Physique SupƩrieur'),
(52160, 43766, 'no_lang_code', 'name', 'KMG Ultra Pure Chemicals (France)'),
(52161, 43767, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Bretagne'),
(52162, 43768, 'en', 'name', '​​​Jekabpils Agrobusiness College'),
(52163, 43768, 'lv', 'name', 'Jēkabpils Agrobiznesa Koledža'),
(52164, 43769, 'de', 'name', 'SƤchsische Aufbaubank'),
(52165, 43769, 'en', 'name', 'Development Bank of Saxony'),
(52166, 43770, 'en', 'name', 'Trinity Medical Center'),
(52167, 43771, 'no_lang_code', 'name', 'Danish Hydraulic Institute (India)'),
(52168, 43772, 'en', 'name', 'Institute of Volcanology and Seismology'),
(52169, 43772, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вулканологии Šø сейсмологии'),
(52170, 43773, 'it', 'name', 'Conservatorio di Musica Egidio R. Duni'),
(52171, 43774, 'en', 'name', 'Institute of Nephro Urology'),
(52172, 43775, 'no_lang_code', 'name', 'Colgate-Palmolive (Switzerland)'),
(52173, 43776, 'cy', 'name', 'Remedi'),
(52174, 43777, 'en', 'name', 'United States Capitol Historical Society'),
(52175, 43778, 'en', 'name', 'Division of Acquisition and Cooperative Support'),
(52176, 43779, 'en', 'name', 'University of Agribusiness and Rural Development'),
(52177, 43780, 'fr', 'name', 'Fondation Le Corbusier'),
(52178, 43781, 'no_lang_code', 'name', 'Paion (United Kingdom)'),
(52179, 43782, 'de', 'name', 'Kantonsspital Baselland Standort Bruderholz'),
(52180, 43783, 'en', 'name', 'Seton Hall Preparatory School'),
(52181, 43784, 'en', 'name', 'Baptist Theological Academy'),
(52182, 43785, 'no_lang_code', 'name', 'M S Jacovides (Greece)'),
(52183, 43786, 'no_lang_code', 'name', 'Intel (India)'),
(52184, 43787, 'en', 'name', 'MICAIA Foundation'),
(52185, 43788, 'en', 'name', 'Institute of Anthropology and Ethnography'),
(52186, 43788, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠžŃ€Š“ена Š”Ń€ŃƒŠ¶Š±Ń‹ нароГов Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ‚Š½Š¾Š»Š¾Š³ŠøŠø Šø антропологии им. Š.Š. ŠœŠøŠŗŠ»ŃƒŃ…Š¾-ŠœŠ°ŠŗŠ»Š°Ń Российской акаГемии наук'),
(52187, 43789, 'en', 'name', 'Sojagnon Association'),
(52188, 43790, 'en', 'name', 'Government Medical College and Hospital'),
(52189, 43791, 'en', 'name', 'Institute of Economics and Industrial Engineering'),
(52190, 43791, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø организации ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š³Š¾ произвоГства Š”Šž Š ŠŠ'),
(52191, 43792, 'fr', 'name', 'Centre de Recherche & DĆ©veloppement de l''ƉlectricitĆ© et du Gaz'),
(52192, 43793, 'en', 'name', 'Banc d''Arguin National Park'),
(52193, 43793, 'fr', 'name', 'Parc National du Banc d''Arguin'),
(52194, 43794, 'de', 'name', 'IU Internationale Hochschule'),
(52195, 43794, 'en', 'name', 'IU International University of Applied Sciences'),
(52196, 43795, 'en', 'name', 'Crossroads Bible College'),
(52197, 43796, 'en', 'name', 'Ministry of Health and Social Welfare'),
(52198, 43797, 'no_lang_code', 'name', 'Deutsche Telekom (South Africa)'),
(52199, 43798, 'en', 'name', 'Artevelde University College Ghent'),
(52200, 43799, 'en', 'name', 'Veld Products Research & Development'),
(52201, 43800, 'en', 'name', 'Institute of Cell Biology'),
(52202, 43801, 'no_lang_code', 'name', 'Arion (France)'),
(52203, 43802, 'en', 'name', 'Mountain View College'),
(52204, 43803, 'en', 'name', 'Davao del Norte State College'),
(52205, 43804, 'en', 'name', 'Computational Intelligence and Information Systems Lab'),
(52206, 43805, 'no_lang_code', 'name', 'Pearl Seeds (Uganda)'),
(52207, 43806, 'en', 'name', 'Texas College'),
(52208, 43807, 'en', 'name', 'Art Academy of Cincinnati'),
(52209, 43808, 'de', 'name', 'Naturwissenschaftlich-Technische Akademie Isny'),
(52210, 43808, 'en', 'name', 'Natural Science and Technical Academy Isny'),
(52211, 43809, 'en', 'name', 'Portuguese School of Bank Management'),
(52212, 43809, 'pt', 'name', 'Instituto Superior de Gestão BancÔria'),
(52213, 43810, 'no_lang_code', 'name', 'Hemarina (France)'),
(52214, 43811, 'en', 'name', 'European Graduate School'),
(52215, 43812, 'en', 'name', 'Maine Sea Grant'),
(52216, 43813, 'en', 'name', 'A.V. Dumansky Institute of Colloid and Water Chemistry'),
(52217, 43813, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ колоїГної хімії та хімії воГи ім. А.Š’. Š”ŃƒŠ¼Š°Š½ŃŃŒŠŗŠ¾Š³Š¾'),
(52218, 43814, 'no_lang_code', 'name', 'Sakhr Software (Egypt)'),
(52219, 43815, 'en', 'name', 'Tallinn Business Bank'),
(52220, 43815, 'et', 'name', 'TALLINNA ƄRIPANGA AS'),
(52221, 43816, 'en', 'name', 'Society of Exploration Geophysicists'),
(52222, 43817, 'da', 'name', 'IBA Erhvervsakademi'),
(52223, 43817, 'en', 'name', 'International Business Academy'),
(52224, 43818, 'en', 'name', 'Charlotte Christian College and Theological Seminary'),
(52225, 43819, 'no_lang_code', 'name', 'Lam Research (United States)'),
(52226, 43820, 'no_lang_code', 'name', 'Asian Paints (India)'),
(52227, 43821, 'no_lang_code', 'name', 'HEB Grocery Company (United States)'),
(52228, 43822, 'en', 'name', 'China Population and Development Research Center'),
(52229, 43822, 'zh', 'name', 'äø­å›½äŗŗå£äøŽå‘å±•ē ”ē©¶äø­åæƒ'),
(52230, 43823, 'en', 'name', 'Guang’anmen Hospital'),
(52231, 43823, 'zh', 'name', 'äø­å›½äø­åŒ»ē§‘å­¦é™¢å¹æå®‰é—ØåŒ»é™¢'),
(52232, 43824, 'en', 'name', 'Group For Research and Technology Exchanges'),
(52233, 43824, 'fr', 'name', 'Groupe de Recherches et d''Echanges Technologiques'),
(52234, 43825, 'en', 'name', 'United Way for Southeastern Michigan'),
(52235, 43826, 'fr', 'name', 'Agence de Bassin Hydrographique Constantinois-Seybousse-Mellegue'),
(52236, 43827, 'no_lang_code', 'name', 'China Academy Of Machinery Science & Technology (China)'),
(52237, 43827, 'zh', 'name', 'ęœŗę¢°ē§‘å­¦äøŽęŠ€ęœÆē ”ē©¶é™¢äø­å›½'),
(52238, 43828, 'en', 'name', 'Chichester College'),
(52239, 43829, 'en', 'name', 'Ambulance Service of New South Wales'),
(52240, 43830, 'en', 'name', 'Guangdong University of Finance'),
(52241, 43830, 'zh', 'name', 'å¹æäøœé‡‘čžå­¦é™¢'),
(52242, 43831, 'en', 'name', 'Morling College'),
(52243, 43832, 'en', 'name', 'Iowa Western Community College'),
(52244, 43833, 'tr', 'name', 'Selçuk Üniversitesi Tıp Fakültesi Hastanesi'),
(52245, 43834, 'no_lang_code', 'name', 'Eesti Energia (Estonia)'),
(52246, 43835, 'en', 'name', 'Ministry of Culture of the Republic of Croatia'),
(52247, 43835, 'hr', 'name', 'Ministarstvo kulture'),
(52248, 43836, 'el', 'name', 'ΑλεξάνΓρειο Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(52249, 43836, 'en', 'name', 'Alexander Technological Educational Institute of Thessaloniki'),
(52250, 43837, 'es', 'name', 'Instituto Nacional de Investigaciones Agricolas'),
(52251, 43838, 'en', 'name', 'Pt. Jawahar Lal Nehru Memorial Medical College'),
(52252, 43839, 'no_lang_code', 'name', 'Cniitmash (Russia)'),
(52253, 43839, 'ru', 'name', 'Ń†Š½ŠøŠøŃ‚Š¼Š°Ńˆ'),
(52254, 43840, 'de', 'name', 'Generaldirektion Handel'),
(52255, 43840, 'en', 'name', 'Directorate-General for Trade'),
(52256, 43840, 'fr', 'name', 'Direction GƩnƩrale Commerce'),
(52257, 43841, 'en', 'name', 'Africa Harvest Biotech Foundation International'),
(52258, 43842, 'bn', 'name', 'ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦—ą§ą¦°ą¦Øą§ą¦„ą¦¾ą¦—ą¦¾ą¦°'),
(52259, 43842, 'en', 'name', 'National Library of India'),
(52260, 43842, 'fr', 'name', 'BibliothĆØque nationale d''inde'),
(52261, 43842, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą¤¾ą¤²ą¤Æ'),
(52262, 43842, 'ml', 'name', 'ą“­ą“¾ą“°ą“¤ąµ€ą“Æ ą“¦ąµ‡ą“¶ąµ€ą“Æ ą“—ąµą“°ą“Øąµą“„ą“¶ą“¾ą“²'),
(52263, 43842, 'sa', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æą¤ƒ ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą¤¾ą¤²ą¤Æą¤ƒ'),
(52264, 43842, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆ‡ą®šą®æą®Æ ą®ØąÆ‚ą®²ą®•ą®®ąÆ'),
(52265, 43842, 'te', 'name', 'భారత ą°œą°¾ą°¤ą±€ą°Æ ą°—ą±ą°°ą°‚ą°„ą°¾ą°²ą°Æą°‚'),
(52266, 43843, 'no_lang_code', 'name', 'Phoenix Medical Systems (India)'),
(52267, 43844, 'en', 'name', 'Brihanmumbai Municipal Corporation'),
(52268, 43844, 'hi', 'name', 'ą¤¬ą„ƒą¤¹ą¤Øą„ą¤®ą„ą¤‚ą¤¬ą¤ˆ महानगरपालिका'),
(52269, 43845, 'en', 'name', 'Nama Khoi Local Municipality'),
(52270, 43846, 'en', 'name', 'National Drought Management Authority'),
(52271, 43847, 'no_lang_code', 'name', 'Karolinska Institutet Innovations (Sweden)'),
(52272, 43848, 'en', 'name', 'Institute of Magnetism'),
(52273, 43849, 'en', 'name', 'Albany Technical College'),
(52274, 43850, 'en', 'name', 'Indian Institute Of Bio social Research And Development'),
(52275, 43851, 'no_lang_code', 'name', 'Low & Bonar (Netherlands)'),
(52276, 43852, 'en', 'name', 'Confederation of Indian Industry'),
(52277, 43852, 'hi', 'name', 'ą¤•ą„‰ą¤Øą„ą¤«ą„‡ą¤”ą¤°ą„‡ą¤¶ą¤Ø ऑफ इंऔियन ą¤‡ą¤‚ą¤”ą¤øą„ą¤Ÿą„ą¤°ą„€'),
(52278, 43853, 'en', 'name', 'Eagle Gate College'),
(52279, 43854, 'en', 'name', 'Lone Star College Kingwood, Lone Star College–Kingwood'),
(52280, 43855, 'en', 'name', 'Royal Society for the Prevention of Cruelty to Animals'),
(52281, 43856, 'en', 'name', 'Family Guidance Association of Ethiopia'),
(52282, 43857, 'en', 'name', 'VƤxjƶ Municipality'),
(52283, 43857, 'sv', 'name', 'VƤxjƶ Kommun'),
(52284, 43858, 'en', 'name', 'Garrett College'),
(52285, 43859, 'en', 'name', 'Atlantic International University'),
(52286, 43860, 'de', 'name', 'Hochschule für Gesundheit & Sport, Technik & Kunst'),
(52287, 43861, 'en', 'name', 'Institute of Solid State Physics'),
(52288, 43861, 'zh', 'name', '固体物理研究所'),
(52289, 43862, 'no_lang_code', 'name', 'A-Team (United States)'),
(52290, 43863, 'en', 'name', 'Millennia Atlantic University'),
(52291, 43864, 'no_lang_code', 'name', 'Reliance Industries (India)'),
(52292, 43865, 'en', 'name', 'Wyoming Space Grant Consortium'),
(52293, 43866, 'no_lang_code', 'name', 'RenewSys (India)'),
(52294, 43867, 'pl', 'name', 'Wyższa Szkoła Pedagogiki i Administracji im. Mieszka I w Poznaniu'),
(52295, 43868, 'pt', 'name', 'Instituto Federal do Rio Grande do Norte'),
(52296, 43869, 'en', 'name', 'Shanghai Institute of Disaster Prevention and Relief'),
(52297, 43869, 'zh', 'name', 'äøŠęµ·é˜²ē¾ę•‘ē¾ē ”ē©¶ę‰€'),
(52298, 43870, 'zh', 'name', 'Tung Wah College, ę±čÆå­øé™¢'),
(52299, 43871, 'en', 'name', 'Sino-Japan Friendship Center for Environmental Protection'),
(52300, 43871, 'zh', 'name', 'äø­ę—„å‹å„½ēŽÆå¢ƒäæęŠ¤äø­åæƒ'),
(52301, 43872, 'no_lang_code', 'name', 'Edwards Lifesciences (United States)'),
(52302, 43873, 'en', 'name', 'Institute of Applied Mechanics'),
(52303, 43873, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной механики'),
(52304, 43874, 'en', 'name', 'Forestry Commission'),
(52305, 43875, 'en', 'name', 'Rhode Island Space Grant Consortium'),
(52306, 43876, 'es', 'name', 'Instituto Superior de Estudios Psicológicos'),
(52307, 43877, 'en', 'name', 'Centre for Policy Research'),
(52308, 43878, 'en', 'name', 'National Research Centre on Equines'),
(52309, 43879, 'en', 'name', 'American Academy of Fixed Prosthodontics'),
(52310, 43880, 'en', 'name', 'Jiangsu Police Officer College'),
(52311, 43880, 'zh', 'name', 'ę±Ÿč‹č­¦å®˜å­¦é™¢'),
(52312, 43881, 'en', 'name', 'Accelerated Cure Project for Multiple Sclerosis'),
(52313, 43882, 'no_lang_code', 'name', 'Video Discovery (United States)'),
(52314, 43883, 'en', 'name', 'Leo Baeck College'),
(52315, 43884, 'en', 'name', 'Society for Endocrinology'),
(52316, 43885, 'it', 'name', 'Conservatorio di Musica Benedetto Marcello di Venezia'),
(52317, 43886, 'fr', 'name', 'Surface du Verre et Interfaces'),
(52318, 43887, 'en', 'name', 'Central Board of Secondary Education'),
(52319, 43888, 'no_lang_code', 'name', 'SENSEYE LIMITED'),
(52320, 43889, 'en', 'name', 'Moscow Institute of Energy and Energy Saving'),
(52321, 43890, 'en', 'name', 'Polytecnic in Požega'),
(52322, 43890, 'hr', 'name', 'VeleučiliŔte u Požegi'),
(52323, 43891, 'en', 'name', 'Institute of Precambrian Geology and Geochronology'),
(52324, 43891, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø геохронологии Š“Š¾ŠŗŠµŠ¼Š±Ń€ŠøŃ'),
(52325, 43892, 'en', 'name', 'Chinese Students and Scholars Association of Ireland'),
(52326, 43892, 'ga', 'name', 'ēˆ±å°”å…°äø­å›½å­¦ē”Ÿå­¦č€…č”åˆč°Šä¼š'),
(52327, 43893, 'es', 'name', 'Fundación Pablo García'),
(52328, 43894, 'en', 'name', 'EMF Biological Research Trust'),
(52329, 43895, 'bn', 'name', 'ą¦¶ą§ą¦°ą§€ą¦°ą¦¾ą¦®ą¦Ŗą§ą¦° ą¦•ą¦²ą§‡ą¦œ'),
(52330, 43895, 'no_lang_code', 'name', 'Serampore College'),
(52331, 43896, 'de', 'name', 'Kirchliche PƤdagogische Hochschule Edith Stein'),
(52332, 43897, 'en', 'name', 'Public Service Department'),
(52333, 43897, 'ms', 'name', 'Jabatan Perkhidmatan Awam Malaysia'),
(52334, 43898, 'no_lang_code', 'name', 'Veolia (India)'),
(52335, 43899, 'fr', 'name', 'Centre des Techniques et MatƩriaux de Construction'),
(52336, 43900, 'en', 'name', 'Cure Childhood Cancer Association'),
(52337, 43901, 'de', 'name', 'Kriminologisches Forschungsinstitut Niedersachsen'),
(52338, 43901, 'en', 'name', 'Criminological Research Institute of Lower Saxony'),
(52339, 43902, 'en', 'name', 'Oconee Fall Line Technical College'),
(52340, 43903, 'no_lang_code', 'name', 'Murugappa (India)'),
(52341, 43904, 'fr', 'name', 'Puce Muse / Espace Musical'),
(52342, 43905, 'en', 'name', 'Office of the Attorney General'),
(52343, 43906, 'es', 'name', 'Universidad Politecnica del Estado de Morelos'),
(52344, 43907, 'de', 'name', 'Generaldirektion Maritime Angelegenheiten und Fischerei'),
(52345, 43907, 'en', 'name', 'Directorate-General for Maritime Affairs and Fisheries'),
(52346, 43907, 'fr', 'name', 'Direction Générale Affaires maritimes et pêche'),
(52347, 43908, 'de', 'name', 'Dekra Hochschule für Medien'),
(52348, 43909, 'en', 'name', 'Clarity Centre for Sensor Web Technologies'),
(52349, 43910, 'en', 'name', 'Manitoba Labour and Immigration'),
(52350, 43911, 'en', 'name', 'Tennessee College of Applied Technology'),
(52351, 43912, 'en', 'name', 'Ministry of Agriculture and Fisheries'),
(52352, 43912, 'fr', 'name', 'MinistĆØre de l''Agriculture et de la PĆŖche Maritime'),
(52353, 43913, 'fr', 'name', 'Vétérinaires Sans Frontières Suisse'),
(52354, 43914, 'fr', 'name', 'ConfƩdƩration GƩnƩrale des Entreprises du Maroc'),
(52355, 43915, 'pt', 'name', 'Centro Terra Viva'),
(52356, 43916, 'no_lang_code', 'name', 'Spirit AeroSystems (United States)'),
(52357, 43917, 'en', 'name', 'Tyler Junior College'),
(52358, 43918, 'pt', 'name', 'Instituto Alergoimuno de Americana'),
(52359, 43919, 'en', 'name', 'Solve ME/CFS Initiative'),
(52360, 43920, 'en', 'name', 'Dongnam Health University'),
(52361, 43920, 'ko', 'name', 'ė™ė‚Øė³“ź±“ėŒ€ķ•™'),
(52362, 43920, 'zh', 'name', 'ę±å—äæå„å¤§å­ø'),
(52363, 43921, 'en', 'name', 'Public Procurement Service'),
(52364, 43921, 'ko', 'name', '씰달청'),
(52365, 43922, 'en', 'name', 'New England Bible College'),
(52366, 43923, 'no_lang_code', 'name', 'SOS Sahel Ethiopia'),
(52367, 43924, 'pl', 'name', 'Staropolska Szkoła Wyższa w Kielcach'),
(52368, 43925, 'de', 'name', 'Fachhochschule Polizei Sachsen-Anhalt'),
(52369, 43925, 'en', 'name', 'University of Applied Police Sciences Saxony Anhalt'),
(52370, 43926, 'en', 'name', 'North Carolina Community College System'),
(52371, 43927, 'fr', 'name', 'Fondation Sciences et Technologies pour l''AƩronautique et l''Espace'),
(52372, 43928, 'en', 'name', 'Community Media Trust'),
(52373, 43929, 'en', 'name', 'Islamic Azad University, Yazd'),
(52374, 43929, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ یزد'),
(52375, 43930, 'en', 'name', 'Gwinnett Technical College'),
(52376, 43931, 'en', 'name', 'Gian Sagar Medical College and Hospital'),
(52377, 43932, 'no_lang_code', 'name', 'China South Industries Group (China)'),
(52378, 43932, 'zh', 'name', 'äø­å›½å…µå™Øå·„äøšē¬¬äŗ”ä¹ē ”ē©¶ę‰€'),
(52379, 43933, 'en', 'name', 'LDS Business College'),
(52380, 43934, 'en', 'name', 'Icelandic Tourism Research Centre'),
(52381, 43934, 'is', 'name', 'Rannsóknamiðstöð FerðamÔla'),
(52382, 43935, 'en', 'name', 'Yamal Polar Agro-Economic College'),
(52383, 43935, 'ru', 'name', 'Ямальский ŠæŠ¾Š»ŃŃ€Š½Ń‹Š¹ Š°Š³Ń€Š¾ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ Ń‚ŠµŃ…Š½ŠøŠŗŃƒŠ¼'),
(52384, 43936, 'pt', 'name', 'Associação Empresarial de Paços de Ferreira'),
(52385, 43937, 'no_lang_code', 'name', 'Elder Pharmaceuticals (India)'),
(52386, 43938, 'pt', 'name', 'Fundação Centro de Hematologia e Hemoterapia de Minas Gerais'),
(52387, 43939, 'en', 'name', 'Union College - Kentucky'),
(52388, 43940, 'en', 'name', 'South Coast College'),
(52389, 43941, 'en', 'name', 'Graduate School USA'),
(52390, 43942, 'fr', 'name', 'ComitƩ National de TƩlƩdƩtection et d''Information GƩographique'),
(52391, 43943, 'en', 'name', 'Ministry of Information, Communications and Technology'),
(52392, 43944, 'en', 'name', 'SVS Medical College'),
(52393, 43945, 'en', 'name', 'American College of Financial Services'),
(52394, 43946, 'no_lang_code', 'name', 'New Balance (United States)'),
(52395, 43947, 'en', 'name', 'Shandong Provincial Water Resources Research Institute'),
(52396, 43947, 'zh', 'name', 'å±±äøœēœę°“ē§‘é™¢'),
(52397, 43948, 'en', 'name', 'Children''s Cancer Therapy Development Institute'),
(52398, 43949, 'en', 'name', 'Goodenough College'),
(52399, 43950, 'en', 'name', 'Pennsylvania Higher Education Assistance Agency'),
(52400, 43951, 'en', 'name', 'Novant Health'),
(52401, 43952, 'en', 'name', 'Arkansas Arts Council'),
(52402, 43953, 'en', 'name', 'LIM College'),
(52403, 43954, 'no_lang_code', 'name', 'Interface (United States)'),
(52404, 43955, 'fr', 'name', 'Ɖcole SpĆ©ciale des Travaux Publics'),
(52405, 43956, 'no_lang_code', 'name', 'SurveyMonkey (United States)'),
(52406, 43957, 'it', 'name', 'Conservatorio statale di Musica Alfredo Casella'),
(52407, 43958, 'da', 'name', 'BeskƦftigelsesministeriet'),
(52408, 43958, 'en', 'name', 'Danish Ministry of Employment'),
(52409, 43959, 'en', 'name', 'Vinayaka Missions Medical College and Hospitals'),
(52410, 43960, 'hi', 'name', 'महाराजा ą¤›ą¤¤ą„ą¤°ą¤øą¤¾ą¤² ą¤¬ą„ą¤‚ą¤¦ą„‡ą¤²ą¤–ą¤‚ą¤” ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(52411, 43960, 'no_lang_code', 'name', 'Maharaja Chhatrasal Bundelkhand University'),
(52412, 43961, 'en', 'name', 'South African National Energy Development Institute'),
(52413, 43962, 'no_lang_code', 'name', 'Bank of New York Mellon'),
(52414, 43963, 'no_lang_code', 'name', 'Sunoco (United States)'),
(52415, 43964, 'en', 'name', 'ICFAI Foundation for Higher Education'),
(52416, 43965, 'en', 'name', 'Bank of England'),
(52417, 43966, 'en', 'name', 'University of South Carolina Union'),
(52418, 43967, 'en', 'name', 'Cox College'),
(52419, 43968, 'en', 'name', 'Minnesota Department of Transportation'),
(52420, 43969, 'no_lang_code', 'name', 'Mekhanobr Appliances (Russia)'),
(52421, 43969, 'ru', 'name', 'ŠœŠµŃ…Š°Š½Š¾Š±Ń€-техника'),
(52422, 43970, 'en', 'name', 'G Pulla Reddy Dental College & Hospital'),
(52423, 43971, 'bn', 'name', 'ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°ą§€ą¦Æą¦¼ ą¦­ą§‡ą¦·ą¦œą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¶ą¦æą¦•ą§ą¦·ą¦¾ আৰু গৱেষণা ą¦Ŗą§ą§°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø, ą¦—ą§ą§±ą¦¾ą¦¹ą¦¾ą¦Ÿą§€'),
(52424, 43971, 'en', 'name', 'National Institute of Pharmaceutical Education and Research'),
(52425, 43972, 'en', 'name', 'Seychelles Fishing Authority'),
(52426, 43973, 'no_lang_code', 'name', 'MSA Gallet (France)'),
(52427, 43974, 'en', 'name', 'Rosedale Bible College'),
(52428, 43975, 'en', 'name', 'Energy Biosciences Institute'),
(52429, 43976, 'en', 'name', 'California Miramar University'),
(52430, 43977, 'en', 'name', 'Warsaw Management University'),
(52431, 43977, 'pl', 'name', 'Wyższa Szkoła Menedżerska'),
(52432, 43978, 'en', 'name', 'Wenatchee Valley College'),
(52433, 43979, 'fr', 'name', 'Centre National de Recherches Prehistoriques, Anthropologiques et Historiques'),
(52434, 43980, 'pt', 'name', 'Governo do Estado do Rio de Janeiro'),
(52435, 43981, 'es', 'name', 'Institut Pere Mata'),
(52436, 43982, 'en', 'name', 'Beacon College'),
(52437, 43983, 'sv', 'name', 'Lasarettet i Ystad'),
(52438, 43984, 'no_lang_code', 'name', 'FedEx (United States)'),
(52439, 43985, 'en', 'name', 'Hydrometeorological Research Centre of Russian Federation'),
(52440, 43985, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ГиГрометеорологический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Российской ФеГерации'),
(52441, 43986, 'no_lang_code', 'name', 'Egyptian Solar Research Center'),
(52442, 43987, 'pt', 'name', 'República de Moçambique'),
(52443, 43988, 'de', 'name', 'Bayerische StaatsgemƤldesammlungen'),
(52444, 43988, 'en', 'name', 'Bavarian State Painting Collections'),
(52445, 43989, 'en', 'name', 'Federation Wallonia-Brussels, French Community of Belgium'),
(52446, 43989, 'fr', 'name', 'FƩdƩration Wallonie-Bruxelles'),
(52447, 43990, 'no_lang_code', 'name', 'Avisonic (Taiwan)'),
(52448, 43991, 'sl', 'name', 'Ekonomska Å ola Murska Sobota'),
(52449, 43992, 'en', 'name', 'Jawaharlal Nehru Medical College Hospital'),
(52450, 43993, 'en', 'name', 'Arkansas Agricultural Experiment Station'),
(52451, 43994, 'en', 'name', 'Swindon College'),
(52452, 43995, 'no_lang_code', 'name', 'Fleury S.A. (Brazil)'),
(52453, 43996, 'en', 'name', 'HOPE Cape Town Trust'),
(52454, 43997, 'en', 'name', 'Texas Medical Board'),
(52455, 43998, 'en', 'name', 'Republic Polytechnic'),
(52456, 43998, 'zh', 'name', 'å…±å’Œē†å·„å­øé™¢'),
(52457, 43999, 'no_lang_code', 'name', 'Omnitek Engineering (United States)'),
(52458, 44000, 'en', 'name', 'North Warwickshire and Hinckley College'),
(52459, 44001, 'fr', 'name', 'PÓle Régional de Recherche Appliquée au Développement des Systèmes Agricoles d''Afrique Centrale'),
(52460, 44001, 'no_lang_code', 'name', 'PRASAC'),
(52461, 44002, 'pt', 'name', 'Direcção Geral de Ensino Superior Ciencia'),
(52462, 44003, 'en', 'name', 'Chinese Academy of Science and Technology for Development'),
(52463, 44003, 'zh', 'name', 'äø­å›½ē§‘å­¦ęŠ€ęœÆäæƒčæ›å‘å±•'),
(52464, 44004, 'en', 'name', 'Wallace State Community College'),
(52465, 44005, 'en', 'name', 'Government of Equatorial Guinea'),
(52466, 44006, 'en', 'name', 'Association of British Paediatric Nurses'),
(52467, 44007, 'no_lang_code', 'name', 'WESTERVELD CONSERVATION TRUST'),
(52468, 44008, 'en', 'name', 'Medical Access Uganda'),
(52469, 44009, 'no_lang_code', 'name', 'Newman''s Own (United States)'),
(52470, 44010, 'en', 'name', 'Yeshiva of Nitra Rabbinical College'),
(52471, 44011, 'en', 'name', 'State University of Applied Sciences in Konin'),
(52472, 44011, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Koninie'),
(52473, 44012, 'en', 'name', 'Northwest Iowa Community College'),
(52474, 44013, 'no_lang_code', 'name', 'ICICI Lombard (India)'),
(52475, 44014, 'cs', 'name', 'SoukromĆ” VysokĆ” Skola EkonomickĆ” Znojmo'),
(52476, 44014, 'en', 'name', 'Private College of Economic Studies Znojmo'),
(52477, 44015, 'en', 'name', 'Chumakov Institute of Poliomyelitis and Viral Encephalitides'),
(52478, 44015, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ полиомиелита Šø Š²ŠøŃ€ŃƒŃŠ½Ń‹Ń… ŃŠ½Ń†ŠµŃ„Š°Š»ŠøŃ‚Š¾Š²'),
(52479, 44016, 'en', 'name', 'Institute of Metallurgy'),
(52480, 44016, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Š£Ń€Šž Š ŠŠ'),
(52481, 44017, 'ja', 'name', 'é›»ęŗé–‹ē™ŗę Ŗå¼ä¼šē¤¾'),
(52482, 44017, 'no_lang_code', 'name', 'J-Power (Japan)'),
(52483, 44018, 'en', 'name', 'Granger Foundation'),
(52484, 44019, 'en', 'name', 'Lake Tanganyika Authority'),
(52485, 44019, 'fr', 'name', 'AutoritƩ du Lac Tanganyika'),
(52486, 44020, 'no_lang_code', 'name', 'Research Center for Surface and Vacuum (Russia)'),
(52487, 44020, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр по ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃŽ свойств поверхности Šø вакуума'),
(52488, 44021, 'en', 'name', 'California Community Colleges System'),
(52489, 44022, 'en', 'name', 'San Joaquin Valley College'),
(52490, 44023, 'it', 'name', 'Conservatorio di Musica Ottorino Respighi'),
(52491, 44024, 'en', 'name', 'Australian War Memorial'),
(52492, 44025, 'en', 'name', 'African Palliative Care Association'),
(52493, 44026, 'en', 'name', 'Academy of Fine Arts of Bologna'),
(52494, 44026, 'it', 'name', 'Accademia di Belle Arti di Bologna'),
(52495, 44027, 'fr', 'name', 'Agence Nationale pour la Promotion et la Rationalisation de l''Utilisation de l''Energie'),
(52496, 44028, 'en', 'name', 'C. U. Shah University'),
(52497, 44029, 'en', 'name', 'World Health Organization Regional Office for Africa'),
(52498, 44030, 'en', 'name', 'University of Shizuoka'),
(52499, 44030, 'ja', 'name', 'é™å²”ēœŒē«‹å¤§å­¦'),
(52500, 44031, 'fr', 'name', 'Ɖcole EuropĆ©enne SupĆ©rieure d''Art de Bretagne'),
(52501, 44032, 'no_lang_code', 'name', 'Sprint (United States)'),
(52502, 44033, 'en', 'name', 'St. John''s Seminary'),
(52503, 44034, 'fr', 'name', 'Conseil RĆ©gional d''Ǝle-de-France'),
(52504, 44035, 'en', 'name', 'Institute of Forensic Science'),
(52505, 44035, 'zh', 'name', 'åøę³•éƒØåøę³•é‰“å®šē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(52506, 44036, 'en', 'name', 'Office of Diversity and Inclusion'),
(52507, 44037, 'no_lang_code', 'name', 'Dabur Research Foundation (India)'),
(52508, 44038, 'en', 'name', 'Hipolit Cegielski State University of Applied Sciences in Gniezno'),
(52509, 44038, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Hipolita Cegielskiego w GnieÅŗnie'),
(52510, 44039, 'fr', 'name', 'MinistĆØre de l’Industrie, du Commerce, de l’Investissement et de l’Economie NumĆ©rique'),
(52511, 44040, 'en', 'name', 'Randolph Township Schools'),
(52512, 44041, 'fr', 'name', 'Chambre de Commerce et d''Industrie du Centre'),
(52513, 44042, 'en', 'name', 'Centre for Development Economics'),
(52514, 44043, 'en', 'name', 'National Institute Of Veterinary Epidemiology And Disease Informatics'),
(52515, 44044, 'en', 'name', 'North China Research Institute of Electro-optics'),
(52516, 44044, 'zh', 'name', 'åŽåŒ—å…‰ē”µęŠ€ęœÆē ”ē©¶ę‰€'),
(52517, 44045, 'be', 'name', 'Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŠ°Š½ŃŠŗŃ– навукова-практычны Ń†ŃŠ½Ń‚Ń€ Š½ŠµŃžŃ€Š°Š»Š¾Š³Ń–Ń– і Š½ŠµŠ¹Ń€Š°Ń…Ń–Ń€ŃƒŃ€Š³Ń–Ń–'),
(52518, 44045, 'en', 'name', 'Republican Scientific and Practical Center of Neurology and Neurosurgery'),
(52519, 44045, 'ru', 'name', 'Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр неврологии Šø Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(52520, 44046, 'en', 'name', 'Centre for World Solidarity'),
(52521, 44047, 'en', 'name', 'Vance-Granville Community College'),
(52522, 44048, 'en', 'name', 'Development Centre of the Tensift Region'),
(52523, 44049, 'no_lang_code', 'name', 'Misc (Egypt)'),
(52524, 44050, 'no_lang_code', 'name', 'Tarix Orphan (United States)'),
(52525, 44051, 'pt', 'name', 'Centro Hospitalar Cova da Beira, Hospital Center of Cova da Beira'),
(52526, 44052, 'no_lang_code', 'name', 'Span Diagnostics (India)'),
(52527, 44053, 'en', 'name', 'Chatfield College'),
(52528, 44054, 'en', 'name', 'Minnesota State Arts Board'),
(52529, 44055, 'en', 'name', 'International School of Management'),
(52530, 44056, 'en', 'name', 'Massachusetts Department of Environmental Protection'),
(52531, 44057, 'en', 'name', 'Office of Public Health Genomics'),
(52532, 44058, 'en', 'name', 'Prairie Improvement Network'),
(52533, 44059, 'fr', 'name', 'Haute Ɖcole de la Province de Namur'),
(52534, 44060, 'pt', 'name', 'Faculdade Meridional'),
(52535, 44061, 'en', 'name', 'Ministry of Sports, Youth, Popular Education and Community Life'),
(52536, 44061, 'fr', 'name', 'MinistĆØre de la Ville, de la Jeunesse et des Sports'),
(52537, 44062, 'en', 'name', 'Society For Development Alternatives'),
(52538, 44063, 'no_lang_code', 'name', '3DT Holdings (United States)'),
(52539, 44064, 'pt', 'name', 'União Dinâmica de Faculdades Cataratas'),
(52540, 44065, 'en', 'name', 'San Bernardino Valley College'),
(52541, 44066, 'en', 'name', 'God''s Bible School and College'),
(52542, 44067, 'fr', 'name', 'MinistĆØre de l’Environnement et du DĆ©veloppement Durable'),
(52543, 44068, 'en', 'name', 'Southeast Kentucky Community and Technical College'),
(52544, 44069, 'no_lang_code', 'name', 'China Power Engineering Consulting Group (China)'),
(52545, 44070, 'en', 'name', 'Defense Information School'),
(52546, 44071, 'en', 'name', 'Adler Graduate School'),
(52547, 44072, 'en', 'name', 'Texas Animal Health Commission'),
(52548, 44073, 'en', 'name', 'Jiangxi Province Forestry Survey Planning Institute'),
(52549, 44073, 'zh', 'name', 'å›½å®¶ęž—äøšå±€č°ƒęŸ„č§„åˆ’č®¾č®”é™¢'),
(52550, 44074, 'pt', 'name', 'Secretaria de Estado de Ciência Tecnologia e Inovação'),
(52551, 44075, 'en', 'name', 'Queensland Academy of Sport'),
(52552, 44076, 'de', 'name', 'Fachhochschule für Finanzen Nordrhein Westfalen'),
(52553, 44077, 'no_lang_code', 'name', 'Roxel (France)'),
(52554, 44078, 'fr', 'name', 'Association Marocaine Pour la Recherche DƩveloppement'),
(52555, 44079, 'en', 'name', 'B. V. Patel Pharmaceutical Education and Research Development Centre'),
(52556, 44080, 'no_lang_code', 'name', 'Kirloskar Group (India)'),
(52557, 44081, 'en', 'name', 'New York College of Health Professions'),
(52558, 44082, 'en', 'name', 'State Oil and Gas Board of Alabama'),
(52559, 44083, 'en', 'name', 'Building Research Association of New Zealand'),
(52560, 44084, 'en', 'name', 'Institute of Economics'),
(52561, 44084, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ē»ęµŽē ”ē©¶ę‰€'),
(52562, 44085, 'en', 'name', 'New Orleans Baptist Theological Seminary'),
(52563, 44086, 'no_lang_code', 'name', 'Nano Energy (South Africa)'),
(52564, 44087, 'en', 'name', 'National Board of Examinations'),
(52565, 44087, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą¤°ą„€ą¤•ą„ą¤·ą¤¾ ą¤¬ą„‹ą¤°ą„ą¤”'),
(52566, 44088, 'ja', 'name', 'ć‚¢ćƒœćƒƒćƒˆ'),
(52567, 44088, 'no_lang_code', 'name', 'Abbott (Japan)'),
(52568, 44089, 'no_lang_code', 'name', 'Fidelity Investments (United States)'),
(52569, 44090, 'fr', 'name', 'Agence Nationale pour la Promotion des Petites et Moyennes Entreprises'),
(52570, 44091, 'en', 'name', 'Department of Social Services'),
(52571, 44092, 'en', 'name', 'Radom Academy of Social and Technical Sciences'),
(52572, 44092, 'pl', 'name', 'Europejska Uczelnia Społeczno-Techniczna w Radomiu'),
(52573, 44093, 'no_lang_code', 'name', 'Honda (United States)'),
(52574, 44094, 'en', 'name', 'Port of Melbourne Corporation'),
(52575, 44095, 'en', 'name', 'Tri-State College of Acupuncture'),
(52576, 44096, 'en', 'name', 'Information and Communication Technology Authority'),
(52577, 44097, 'en', 'name', 'Berk Trade and Business School'),
(52578, 44098, 'en', 'name', 'Institute of Grassland Research'),
(52579, 44098, 'zh', 'name', 'č‰åŽŸē ”ē©¶ę‰€'),
(52580, 44099, 'no_lang_code', 'name', 'Assurant (United States)'),
(52581, 44100, 'en', 'name', 'Sha''arei Mishpat College'),
(52582, 44100, 'he', 'name', '×ž×›×œ×œ×Ŗ שערי משפט'),
(52583, 44101, 'fr', 'name', 'Anvredet'),
(52584, 44102, 'en', 'name', 'Cooperative Office for Voluntary Organizations'),
(52585, 44103, 'no_lang_code', 'name', 'Southwest Airlines (United States)'),
(52586, 44104, 'en', 'name', 'Guangdong Academy of Forestry'),
(52587, 44104, 'zh', 'name', 'å¹æäøœēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(52588, 44105, 'nl', 'name', 'Codarts Rotterdam'),
(52589, 44106, 'en', 'name', 'Korea Institute for International Economic Policy'),
(52590, 44106, 'ko', 'name', 'ėŒ€ģ™øź²½ģ œģ •ģ±…ģ—°źµ¬ģ›'),
(52591, 44107, 'en', 'name', 'Silsbee Independent School District'),
(52592, 44108, 'en', 'name', 'Division of Human Resource Management');
INSERT INTO `ror_settings` VALUES
(52593, 44109, 'ja', 'name', 'äø‰å’Œćƒć‚¤ćƒ‰ćƒ­ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(52594, 44109, 'no_lang_code', 'name', 'Sanwa Hydrotech (Japan)'),
(52595, 44110, 'en', 'name', 'Art Institute of Atlanta'),
(52596, 44111, 'no_lang_code', 'name', 'Aegon (Netherlands)'),
(52597, 44112, 'en', 'name', 'Labette Community College'),
(52598, 44113, 'it', 'name', 'Fondazione Antonio Ratti'),
(52599, 44114, 'en', 'name', 'Geophysical Center'),
(52600, 44114, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Геофизический центр Российской акаГемии наук'),
(52601, 44115, 'de', 'name', 'Evangelische Hochschule Darmstadt'),
(52602, 44116, 'en', 'name', 'Department of Agriculture & Co-operation'),
(52603, 44117, 'de', 'name', 'EBC Hochschule'),
(52604, 44118, 'en', 'name', 'Pacific Institute for the Mathematical Sciences'),
(52605, 44119, 'en', 'name', 'Rabbinical College Ohr Yisroel'),
(52606, 44120, 'no_lang_code', 'name', 'Cadence Design Systems (United States)'),
(52607, 44121, 'en', 'name', 'Institute for the Psychological Sciences'),
(52608, 44122, 'en', 'name', 'Parliament of Australia'),
(52609, 44123, 'en', 'name', 'Virginia Baptist College'),
(52610, 44124, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© Ų§Ł„ŲØŲŖŲ±ŁˆŁ„ Ų§Ł„ŁƒŁˆŁŠŲŖŁŠŲ©ā€Ž'),
(52611, 44124, 'no_lang_code', 'name', 'Kuwait Petroleum Corporation (Kuwait)'),
(52612, 44125, 'en', 'name', 'Climate Change, Agriculture and Food Security'),
(52613, 44126, 'no_lang_code', 'name', 'Lupin Pharmaceuticals (India)'),
(52614, 44127, 'en', 'name', 'World Forestry Center'),
(52615, 44128, 'en', 'name', 'ESIC Hospital'),
(52616, 44129, 'pt', 'name', 'Escola SecundÔria Quinta do Marquês'),
(52617, 44130, 'en', 'name', 'Northeast Texas Community College'),
(52618, 44131, 'no_lang_code', 'name', 'Linguagen (United States)'),
(52619, 44132, 'sl', 'name', 'Šolski Center za PoŔto, Ekonomijo in Telekomunikacije'),
(52620, 44133, 'en', 'name', 'Atlantic Institute of Oriental Medicine'),
(52621, 44134, 'de', 'name', 'Max-Planck-Forschungsstelle für Enzymologie der Proteinfaltung'),
(52622, 44134, 'en', 'name', 'Max Planck Research Unit for Enzymology of Protein Folding'),
(52623, 44135, 'pt', 'name', 'Faculdade CƔsper Lƭbero'),
(52624, 44136, 'en', 'name', 'Development Bank of Southern Africa'),
(52625, 44137, 'en', 'name', 'Institute for System Dynamics and Control Theory'),
(52626, 44137, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гинамики систем Šø теории ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ имени Š’.М. ŠœŠ°Ń‚Ń€Š¾ŃŠ¾Š²Š°'),
(52627, 44138, 'en', 'name', 'State Higher Vocational School in Głogów'),
(52628, 44138, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Głogowie'),
(52629, 44139, 'en', 'name', 'Rural Development Institute'),
(52630, 44139, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å†œę‘å‘å±•ē ”ē©¶ę‰€'),
(52631, 44140, 'en', 'name', 'Porticus'),
(52632, 44141, 'en', 'name', 'India China Economic and Cultural Council'),
(52633, 44142, 'en', 'name', 'Trinity Theological College'),
(52634, 44142, 'zh', 'name', 'äø‰äø€ē„žå­¦é™¢'),
(52635, 44143, 'en', 'name', 'Calliope Film Resources'),
(52636, 44144, 'en', 'name', 'Delbarton School'),
(52637, 44145, 'en', 'name', 'AlloSource'),
(52638, 44146, 'en', 'name', 'Institute of Chartered Accountants of India'),
(52639, 44147, 'en', 'name', 'Northwest Mississippi Community College'),
(52640, 44148, 'en', 'name', 'Chesapeake Bay Program'),
(52641, 44149, 'no_lang_code', 'name', 'NEEL trimarans (France)'),
(52642, 44150, 'en', 'name', 'Mining Institute'),
(52643, 44150, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного'),
(52644, 44151, 'en', 'name', 'Aquinas College - Tennessee'),
(52645, 44152, 'en', 'name', 'Shanghai Academy of Social Sciences'),
(52646, 44152, 'zh', 'name', 'äøŠęµ·ē¤¾ä¼šē§‘å­¦é™¢'),
(52647, 44153, 'pt', 'name', 'Associação Cultural de Arte e Comunicação Oficinas do Convento'),
(52648, 44154, 'en', 'name', 'Regional Alliance for Sustainable Development'),
(52649, 44155, 'no_lang_code', 'name', 'Accenture (Spain)'),
(52650, 44156, 'fr', 'name', 'Institut Mauritanien de Recherches Océanographiques et des Pêches'),
(52651, 44157, 'en', 'name', 'Institute for Humanities Research and Indigenous Studies of the North'),
(52652, 44157, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… исслеГований Šø коренных нароГов Девера'),
(52653, 44158, 'no_lang_code', 'name', 'Geometric (India)'),
(52654, 44159, 'en', 'name', 'Bolton College'),
(52655, 44160, 'en', 'name', 'Institute of Wood Science and Technology'),
(52656, 44161, 'en', 'name', 'National Institute for Scientific and Industrial Research'),
(52657, 44162, 'no_lang_code', 'name', 'Ameren (United States)'),
(52658, 44163, 'fr', 'name', 'Union Economique et MonƩtaire Ouest Africaine'),
(52659, 44164, 'en', 'name', 'IT for Change'),
(52660, 44165, 'en', 'name', 'Seattle School of Theology and Psychology'),
(52661, 44166, 'no_lang_code', 'name', 'Leco Corporation (United States)'),
(52662, 44167, 'fr', 'name', 'Enda Sahel et Afrique de l’Ouest'),
(52663, 44168, 'en', 'name', 'PSG Institute of Advanced Studies'),
(52664, 44169, 'en', 'name', 'State Higher School of Vocational Education in Zamość'),
(52665, 44169, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Szymona Szymonowica w Zamościu'),
(52666, 44170, 'en', 'name', 'Karlovac University of Applied Sciences'),
(52667, 44170, 'hr', 'name', 'VeleučiliŔte u Karlovcu'),
(52668, 44171, 'no_lang_code', 'name', 'ITPEnergised Group (India)'),
(52669, 44172, 'en', 'name', 'Catching the Dream'),
(52670, 44173, 'en', 'name', 'Ohio Space Grant Consortium'),
(52671, 44174, 'en', 'name', 'National Museum of the Finnish SƔmi'),
(52672, 44175, 'en', 'name', 'Institute of Medical Sciences'),
(52673, 44176, 'en', 'name', 'Coordinating Office for Control of Trypanosomiasis in Uganda'),
(52674, 44177, 'no_lang_code', 'name', 'Kronotex (Germany)'),
(52675, 44178, 'en', 'name', 'Polar Environment, Safety and Health Section'),
(52676, 44179, 'en', 'name', 'Raffles Institution'),
(52677, 44180, 'it', 'name', 'Conservatorio Statale di Musica Jacopo Tomadini Udine'),
(52678, 44181, 'en', 'name', 'Southern Union State Community College'),
(52679, 44182, 'fr', 'name', 'Institut pour Un Developpement Durable'),
(52680, 44183, 'en', 'name', 'Carclew Youth Arts'),
(52681, 44184, 'no_lang_code', 'name', 'Diafir (France)'),
(52682, 44185, 'en', 'name', 'Information Technology Institute'),
(52683, 44186, 'en', 'name', 'Lifespan'),
(52684, 44187, 'no_lang_code', 'name', 'China Construction Eighth Engineering Division (China)'),
(52685, 44188, 'es', 'name', 'Universidad Dr. JosƩ Gregorio HernƔndez'),
(52686, 44189, 'en', 'name', 'Australian e-Health Research Centre'),
(52687, 44190, 'en', 'name', 'Islamic Azad University Kerman'),
(52688, 44190, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کرمان'),
(52689, 44191, 'no_lang_code', 'name', 'Nutricia Research (Netherlands)'),
(52690, 44192, 'en', 'name', 'e-Waste Association of South Africa'),
(52691, 44193, 'en', 'name', 'Southcentral Kentucky Community and Technical College'),
(52692, 44194, 'en', 'name', 'Nashua Community College'),
(52693, 44195, 'en', 'name', 'Partnership for Healthcare Improvement'),
(52694, 44196, 'de', 'name', 'Hochschule der Bildenden Künste Saar'),
(52695, 44197, 'en', 'name', 'Brookhaven College'),
(52696, 44198, 'en', 'name', 'Centre for Schistosomiasis & Parasitology'),
(52697, 44199, 'en', 'name', 'Human Genetic of Infectious Diseases'),
(52698, 44199, 'fr', 'name', 'GƩnƩtique Humaine des Maladies Infectieuses'),
(52699, 44200, 'en', 'name', 'Polytechnic Pula'),
(52700, 44201, 'en', 'name', 'Fine Arts Work Center'),
(52701, 44202, 'en', 'name', 'Research Institute of Physiology and Fundamental Medicine of the Siberian Branch of the Russian Academy of Medical Sciences'),
(52702, 44202, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии Šø Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины»'),
(52703, 44203, 'pt', 'name', 'Instituto Nacional de Desenvolvimento das Pescas'),
(52704, 44204, 'en', 'name', 'Skolkovo Moscow School of Management'),
(52705, 44204, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń школа ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Дколково'),
(52706, 44205, 'no_lang_code', 'name', 'Nidan'),
(52707, 44206, 'en', 'name', 'Maastricht School of Management'),
(52708, 44207, 'en', 'name', 'Australian College of Physical Education'),
(52709, 44208, 'no_lang_code', 'name', 'Compagnie Africaine des Peintures'),
(52710, 44209, 'no_lang_code', 'name', 'Leroux & Lotz Technologies (France)'),
(52711, 44210, 'sv', 'name', 'Greta och Johan Kocks stiftelser'),
(52712, 44211, 'en', 'name', 'New College Durham'),
(52713, 44212, 'en', 'name', 'Royal College of Emergency Medicine'),
(52714, 44213, 'en', 'name', 'State Police College'),
(52715, 44213, 'lv', 'name', 'Valsts Policijas Koledza'),
(52716, 44214, 'en', 'name', 'Korea Institute of Nuclear Safety'),
(52717, 44214, 'ko', 'name', 'ķ•œźµ­ģ›ģžė „ģ•ˆģ „źø°ģˆ ģ›'),
(52718, 44215, 'no_lang_code', 'name', 'IBM (Egypt)'),
(52719, 44216, 'it', 'name', 'Collegio Ghislieri'),
(52720, 44217, 'en', 'name', 'Addis Ababa City Administration Health Bureau'),
(52721, 44218, 'fr', 'name', 'Bureau National d''Ɖtudes Techniques et de DĆ©veloppement'),
(52722, 44219, 'en', 'name', 'Government of Khyber Pakhtunkhwa'),
(52723, 44219, 'ps', 'name', 'دخیبر Ł¾ŚšŲŖŁˆā€ŒŁ†Ų®ŁˆŲ§Ų­Ś©ŁˆŁ…ŲŖ'),
(52724, 44219, 'ur', 'name', 'Ų­Ś©ŁˆŁ…ŲŖŁ Ų®ŪŒŲØŲ±Ł¾Ų®ŲŖŁˆŁ†Ų®ŁˆŲ§'),
(52725, 44220, 'no_lang_code', 'name', 'Sonic Emotion (France)'),
(52726, 44221, 'en', 'name', 'Temple University Ambler'),
(52727, 44222, 'en', 'name', 'Schott Foundation for Public Education'),
(52728, 44223, 'en', 'name', 'Kyungwoon University'),
(52729, 44223, 'ko', 'name', 'ź²½ģš“ėŒ€ķ•™źµ'),
(52730, 44224, 'en', 'name', 'Egyptian Museum'),
(52731, 44225, 'no_lang_code', 'name', 'Arthrex (Germany)'),
(52732, 44226, 'en', 'name', 'Lakeridge Health'),
(52733, 44227, 'en', 'name', 'Aaron Copland Fund for Music'),
(52734, 44228, 'en', 'name', 'Yellow River Institute of Hydraulic Research'),
(52735, 44228, 'zh', 'name', '黄河氓文氓资源科学研究院'),
(52736, 44229, 'no_lang_code', 'name', 'Biospyder (United States)'),
(52737, 44230, 'no_lang_code', 'name', 'Syngenta (Zimbabwe)'),
(52738, 44231, 'en', 'name', 'Asian American Journalists Association'),
(52739, 44232, 'en', 'name', 'Bossier Parish Community College'),
(52740, 44233, 'no_lang_code', 'name', 'Montupet (France)'),
(52741, 44234, 'no_lang_code', 'name', 'Ashok Leyland (India)'),
(52742, 44235, 'en', 'name', 'Stockholm School of Economics in Russia'),
(52743, 44235, 'ru', 'name', 'Š”Ń‚Š¾ŠŗŠ³Š¾Š»ŃŒŠ¼ŃŠŗŠ°Ń школа ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø в России'),
(52744, 44236, 'en', 'name', 'Marijampole College'),
(52745, 44236, 'lt', 'name', 'Marijampoles Kolejia'),
(52746, 44237, 'en', 'name', 'Peirce College'),
(52747, 44238, 'en', 'name', 'Government Mohan Kumaramangalam Medical College'),
(52748, 44239, 'no_lang_code', 'name', 'Yamaha (United States)'),
(52749, 44240, 'en', 'name', 'Botswana Accountancy College'),
(52750, 44241, 'en', 'name', 'CollegeAmerica'),
(52751, 44242, 'es', 'name', 'Centro de Investigación Biomédica en Red de Epidemiología y Salud Pública'),
(52752, 44243, 'en', 'name', 'Department of Sport and Recreation'),
(52753, 44244, 'en', 'name', 'Thrombosis Research Institute'),
(52754, 44245, 'en', 'name', 'Arctic College of the Peoples of the North'),
(52755, 44245, 'ru', 'name', 'ŠŠ ŠšŠ¢Š˜Š§Š•Š”ŠšŠ˜Š™ ŠšŠžŠ›Š›Š•Š”Š– ŠŠŠ ŠžŠ”ŠžŠ’ ДЕВЕРА'),
(52756, 44246, 'en', 'name', 'South Carolina Space Grant Consortium'),
(52757, 44247, 'en', 'name', 'American Institute of Bangladesh Studies'),
(52758, 44248, 'no_lang_code', 'name', 'Chiesi (Italy)'),
(52759, 44249, 'en', 'name', 'Gateway Community College'),
(52760, 44250, 'en', 'name', 'Indian National Science Academy'),
(52761, 44251, 'en', 'name', 'Tianjin Academy of Agricultural Sciences'),
(52762, 44251, 'zh', 'name', 'å¤©ę“„åø‚å†œäøšē§‘å­¦é™¢ęˆē«‹äŗŽ'),
(52763, 44252, 'en', 'name', 'Roxbury Community College'),
(52764, 44253, 'fr', 'name', 'Haute Ɖcole de Namur-LiĆØge-Luxembourg'),
(52765, 44254, 'no_lang_code', 'name', 'Energy International (United States)'),
(52766, 44255, 'en', 'name', 'American Institute of Certified Public Accountants'),
(52767, 44256, 'en', 'name', 'Institute for the International Education of Students'),
(52768, 44257, 'en', 'name', 'Institute of Molecular Biology and Biophysics'),
(52769, 44257, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ биологии Šø биофизики'),
(52770, 44258, 'en', 'name', 'Institute of Structural Macrokinetics and Materials Science'),
(52771, 44258, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€Š½Š¾Š¹ макрокинетики Šø проблем Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(52772, 44259, 'en', 'name', 'Santiago Canyon College'),
(52773, 44260, 'en', 'name', 'The King''s College'),
(52774, 44261, 'en', 'name', 'Institute of Electrophysics'),
(52775, 44261, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń„ŠøŠ·ŠøŠŗŠø'),
(52776, 44262, 'no_lang_code', 'name', 'Hybu Cig Cymru (United Kingdom)'),
(52777, 44263, 'en', 'name', 'Kentucky Space Grant Consortium'),
(52778, 44264, 'en', 'name', 'Pensacola State College'),
(52779, 44265, 'en', 'name', 'Hebei Academy of Agriculture and Forestry Sciences'),
(52780, 44265, 'zh', 'name', 'ę²³åŒ—ēœå†œęž—ē§‘å­¦é™¢é—ä¼ ē”Ÿē†ē ”ē©¶ę‰€'),
(52781, 44266, 'no_lang_code', 'name', 'VSL Korea (South Korea)'),
(52782, 44267, 'en', 'name', 'Davis Applied Technology College'),
(52783, 44268, 'en', 'name', 'School Center Novo mesto'),
(52784, 44268, 'sl', 'name', 'Å olski center Novo mesto'),
(52785, 44269, 'de', 'name', 'Diploma Hochschule'),
(52786, 44269, 'en', 'name', 'Diploma University'),
(52787, 44270, 'en', 'name', 'Oxford Graduate School'),
(52788, 44271, 'no_lang_code', 'name', 'AOL (United States)'),
(52789, 44272, 'en', 'name', 'Royal Drawing School'),
(52790, 44273, 'fr', 'name', 'Agro PME Fondation'),
(52791, 44274, 'en', 'name', 'National Library Board'),
(52792, 44274, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ நூலக ą®µą®¾ą®°ą®æą®Æą®®ąÆ'),
(52793, 44274, 'zh', 'name', '国家图书馆箔理局'),
(52794, 44275, 'pt', 'name', 'Prefeitura Municipal de Vitória'),
(52795, 44276, 'no_lang_code', 'name', 'Pathway Genomics (United States)'),
(52796, 44277, 'en', 'name', 'Academy of Music Vincenzo Bellini'),
(52797, 44277, 'it', 'name', 'Conservatorio Vincenzo Bellini, Conservatorio di Musica Vincenzo Bellini di Palermo'),
(52798, 44278, 'en', 'name', 'Shanxi University of Traditional Chinese Medicine'),
(52799, 44278, 'zh', 'name', 'å±±č„æäø­åŒ»å­¦é™¢'),
(52800, 44279, 'en', 'name', 'Jilin Academy of Traditional Chinese Medicine'),
(52801, 44279, 'zh', 'name', 'å‰ęž—ēœäø­åŒ»čÆē§‘å­¦é™¢'),
(52802, 44280, 'no_lang_code', 'name', 'Enreco 2000 (Spain)'),
(52803, 44281, 'bn', 'name', 'ą¦øą§ą¦¬ą¦¾ą¦øą§ą¦„ą§ą¦Æ ও পরিবার ą¦•ą¦²ą§ą¦Æą¦¾ą¦£ ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(52804, 44281, 'en', 'name', 'Ministry of Health and Family Welfare'),
(52805, 44282, 'en', 'name', 'National Park College'),
(52806, 44283, 'no_lang_code', 'name', 'Baikowski (France)'),
(52807, 44284, 'en', 'name', 'Central Plantation Crops Research Institute'),
(52808, 44285, 'en', 'name', 'MNR Medical College and Hospital'),
(52809, 44286, 'en', 'name', 'Chinese Society of Theoretical and Applied Mechanics'),
(52810, 44286, 'zh', 'name', 'äø­å›½åŠ›å­¦å­¦ä¼š'),
(52811, 44287, 'en', 'name', 'Vilnius College of Design'),
(52812, 44287, 'lt', 'name', 'Vilniaus Dizaino Kolegija'),
(52813, 44288, 'en', 'name', 'MOH Holdings'),
(52814, 44289, 'en', 'name', 'Resurrection University'),
(52815, 44290, 'fr', 'name', 'Haute Ɖcole Libre Mosane'),
(52816, 44291, 'en', 'name', 'Brotherhood of St Laurence'),
(52817, 44292, 'en', 'name', 'Williston State College'),
(52818, 44293, 'de', 'name', 'IB Hochschule'),
(52819, 44294, 'en', 'name', 'Apex School of Theology'),
(52820, 44295, 'en', 'name', 'Canadian Institute of Mining, Metallurgy and Petroleum'),
(52821, 44295, 'fr', 'name', 'Institut Canadien des Mines, de la MƩtallurgie et du PƩtrole'),
(52822, 44296, 'en', 'name', 'Royal College of Anaesthetists'),
(52823, 44297, 'en', 'name', 'Elizabeth Glaser Pediatric AIDS Foundation'),
(52824, 44298, 'en', 'name', 'Northwest Institute of Literary Arts'),
(52825, 44299, 'en', 'name', 'North Khorasan University of Medical Sciences'),
(52826, 44300, 'en', 'name', 'Family of Faith College'),
(52827, 44301, 'en', 'name', 'Daniels Fund'),
(52828, 44302, 'en', 'name', 'Millennium Challenge Corporation'),
(52829, 44303, 'en', 'name', 'Swedish Research Council for Sport Science'),
(52830, 44303, 'sv', 'name', 'Centrum fƶr Idrottsforskning'),
(52831, 44304, 'en', 'name', 'Bicton College'),
(52832, 44305, 'en', 'name', 'China Information Technology Security Evaluation Center'),
(52833, 44305, 'zh', 'name', 'äø­å›½äæ”ęÆå®‰å…Øęµ‹čÆ„äø­åæƒ'),
(52834, 44306, 'en', 'name', 'Centre for Science and Environment'),
(52835, 44307, 'en', 'name', 'Royal College of Radiologists'),
(52836, 44308, 'en', 'name', 'National Institute of Science and Technology of Drugs and Medicines'),
(52837, 44308, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia de FÔrmacos e Medicamentos'),
(52838, 44309, 'no_lang_code', 'name', 'Abbott (South Korea)'),
(52839, 44310, 'en', 'name', 'Botswana-Baylor Children''s Clinical Center of Excellence'),
(52840, 44311, 'en', 'name', 'Children''s Trust'),
(52841, 44312, 'no_lang_code', 'name', 'Mitsubishi Electric (United States)'),
(52842, 44313, 'bg', 'name', 'Š’ŠøŃŃˆŠµ ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ по застраховане Šø финанси'),
(52843, 44313, 'en', 'name', 'University of Finance, Business and Entrepreneurship'),
(52844, 44314, 'cs', 'name', 'Evropský Polytechnický Institut, Evropský polytechnický institut'),
(52845, 44315, 'en', 'name', 'Southern Scientific Center'),
(52846, 44315, 'ru', 'name', 'Южный Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(52847, 44316, 'fr', 'name', 'Laboratoire des Systèmes Macromoléculaires et Signalisation'),
(52848, 44317, 'en', 'name', 'Aid to Development of Traditional Medicine'),
(52849, 44317, 'fr', 'name', 'Aide au DƩveloppement de la MƩdecine Traditionnelle'),
(52850, 44318, 'en', 'name', 'Islamic Azad University Saveh'),
(52851, 44318, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų³Ų§ŁˆŁ‡'),
(52852, 44319, 'en', 'name', 'Mid-America Baptist Theological Seminary'),
(52853, 44320, 'en', 'name', 'Technological Institute for Superhard and Novel Carbon Materials'),
(52854, 44320, 'ru', 'name', 'Технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сверхтверГых Šø новых ŃƒŠ³Š»ŠµŃ€Š¾Š“Š½Ń‹Ń… материалов'),
(52855, 44321, 'sl', 'name', 'TehniŔki Solski Center Maribor'),
(52856, 44322, 'en', 'name', 'Mateur Higher School of Agriculture'),
(52857, 44323, 'no_lang_code', 'name', 'RSA Cosmos (France)'),
(52858, 44324, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa we Włocławku'),
(52859, 44325, 'en', 'name', 'Loyalist College'),
(52860, 44325, 'fr', 'name', 'CollĆØge loyaliste'),
(52861, 44326, 'en', 'name', 'Ministry of Health'),
(52862, 44327, 'en', 'name', 'Catholic Biblical Association'),
(52863, 44328, 'en', 'name', 'International Academy of Design & Technology'),
(52864, 44329, 'en', 'name', 'Maryland State Arts Council'),
(52865, 44330, 'en', 'name', 'Kaunas University of Applied Engineering Sciences'),
(52866, 44330, 'lt', 'name', 'Kauno technikos kolegijos'),
(52867, 44331, 'cs', 'name', 'Karel Englis College, VysokÔ Ŕkola Karla EngliŔe'),
(52868, 44332, 'en', 'name', 'National Veterinary Institute'),
(52869, 44333, 'no_lang_code', 'name', 'Biospace Lab (France)'),
(52870, 44334, 'en', 'name', 'National Water Agency'),
(52871, 44334, 'pt', 'name', 'Agência Nacional de Águas'),
(52872, 44335, 'en', 'name', 'Grounded Media'),
(52873, 44336, 'en', 'name', 'Danube Private University'),
(52874, 44337, 'en', 'name', 'South Dakota Board of Regents'),
(52875, 44338, 'en', 'name', 'Academy of Medical Royal Colleges'),
(52876, 44339, 'en', 'name', 'Institute of Geology of Ore Deposits Petrography Mineralogy and Geochemistry'),
(52877, 44339, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Ń€ŃƒŠ“Š½Ń‹Ń… месторожГений петрографии минералогии Šø геохимии Российской акаГемии наук'),
(52878, 44340, 'en', 'name', 'CRC for Rail Innovation'),
(52879, 44341, 'bg', 'name', 'Š•Š²Ń€Š¾ŠæŠµŠ¹ŃŠŗŠøŃ политехнически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(52880, 44341, 'en', 'name', 'European Polytechnical University'),
(52881, 44342, 'en', 'name', 'Higher Vocational College for Hospitality and Tourism Bled'),
(52882, 44342, 'sl', 'name', 'ViŔja Strokovna Šola za Gostinstvo in Turizem Bled'),
(52883, 44343, 'en', 'name', 'Institute of Technology of Cambodia'),
(52884, 44344, 'en', 'name', 'Shaheed Rajaei Cardiovascular Medical and Research Center'),
(52885, 44345, 'en', 'name', 'New York Chiropractic College'),
(52886, 44346, 'en', 'name', 'Arizona Space Grant Consortium'),
(52887, 44347, 'en', 'name', 'Scientific Council for Government Policy'),
(52888, 44347, 'nl', 'name', 'Wetenschappelijke Raad voor het Regeringsbeleid'),
(52889, 44348, 'en', 'name', 'Ministry of Home Affairs'),
(52890, 44348, 'ms', 'name', 'Kementerian Ehwal Dalam Negeri'),
(52891, 44348, 'ta', 'name', 'ą®‰ą®³ąÆą®¤ąÆą®±ąÆˆ ą®…ą®®ąÆˆą®šąÆą®šąÆ'),
(52892, 44348, 'zh', 'name', 'å†…ę”æéƒØ'),
(52893, 44349, 'en', 'name', 'National Smallholder Farmers Association of Malawi'),
(52894, 44350, 'en', 'name', 'Sudan Meteorological Authority'),
(52895, 44351, 'en', 'name', 'Rocky Mountain College'),
(52896, 44352, 'en', 'name', 'Market Matters'),
(52897, 44353, 'en', 'name', 'Trinidad State Junior College'),
(52898, 44354, 'no_lang_code', 'name', 'Genelux (United States)'),
(52899, 44355, 'en', 'name', 'Scintillon Institute'),
(52900, 44356, 'en', 'name', 'Mental Health Research Center of Russian Academy of Medical Sciences'),
(52901, 44356, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр ŠŸŃŠøŃ…ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š—Š“Š¾Ń€Š¾Š²ŃŒŃ Š ŠŠœŠ'),
(52902, 44357, 'en', 'name', 'Business Academy Aarhus'),
(52903, 44358, 'en', 'name', 'North Iowa Area Community College'),
(52904, 44359, 'en', 'name', 'Institute of High Current Electronics'),
(52905, 44359, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠøŠ»ŃŒŠ½Š¾Ń‚Š¾Ń‡Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(52906, 44360, 'en', 'name', 'Dongnam Institute of Radiological & Medical Sciences'),
(52907, 44361, 'en', 'name', 'Midwives College of Utah'),
(52908, 44362, 'en', 'name', 'Malopolska Higher Vocational School of J. Dietl in Kraków'),
(52909, 44362, 'pl', 'name', 'Małopolska Wyższa Szkoła im. Józefa Dietla'),
(52910, 44363, 'en', 'name', 'International Center for Biosaline Agriculture'),
(52911, 44364, 'de', 'name', 'Hochschule für Polizei Baden-Württemberg'),
(52912, 44365, 'en', 'name', 'ACT Department of Treasury'),
(52913, 44366, 'no_lang_code', 'name', 'Innate Pharma (France)'),
(52914, 44367, 'en', 'name', 'ICARE Institute of Medical Sciences and Research & Dr. Bidhan Chandra Roy Hospital'),
(52915, 44368, 'en', 'name', 'Wabash Valley College'),
(52916, 44369, 'en', 'name', 'Hamburg School of Business Administration'),
(52917, 44370, 'en', 'name', 'Indian Institute of Pulses Research'),
(52918, 44370, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ दलहन ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(52919, 44371, 'ko', 'name', 'ėŒ€ģš°ģ”°ģ„ ķ•“ģ–‘'),
(52920, 44371, 'no_lang_code', 'name', 'Daewoo Shipbuilding and Marine Engineering (South Korea)'),
(52921, 44372, 'no_lang_code', 'name', 'Kenes Group (Switzerland)'),
(52922, 44373, 'lt', 'name', 'Kauno MiŔku ir Aplinkos Inžinerijos Kolegija'),
(52923, 44374, 'en', 'name', 'Fulbright New Zealand'),
(52924, 44375, 'en', 'name', 'Action for ME'),
(52925, 44376, 'fr', 'name', 'Centre de Recherche Scientifique et Technique sur les RƩgions Arides'),
(52926, 44376, 'no_lang_code', 'name', 'CRSTRA'),
(52927, 44377, 'en', 'name', 'Institute of Clinical and Experimental Lymphology'),
(52928, 44377, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ клинической Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ лимфологии'),
(52929, 44378, 'en', 'name', 'State Council of Science and Technology for Sikkim'),
(52930, 44379, 'fr', 'name', 'HƓpital Pasteur'),
(52931, 44380, 'en', 'name', 'Uttarakhand State Council for Science and Technology'),
(52932, 44381, 'es', 'name', 'Secretaría de Educación Superior, Ciencia, Tecnología e Innovación'),
(52933, 44382, 'en', 'name', 'Ghana Center for Democratic Development'),
(52934, 44383, 'en', 'name', 'Ministry of Food and Agriculture'),
(52935, 44384, 'no_lang_code', 'name', 'Nexter (France)'),
(52936, 44385, 'no_lang_code', 'name', 'Holtzbrinck Publishing Group (United States)'),
(52937, 44386, 'en', 'name', 'China Atomic Energy Authority'),
(52938, 44386, 'zh', 'name', 'å›½å®¶åŽŸå­čƒ½ęœŗęž„'),
(52939, 44387, 'en', 'name', 'Consumers Union'),
(52940, 44388, 'en', 'name', 'Jilin Weather Modification Office'),
(52941, 44388, 'zh', 'name', 'å‰ęž—ēœäŗŗå·„å½±å“å¤©ę°”åŠžå…¬å®¤'),
(52942, 44389, 'no_lang_code', 'name', 'ProtNeteomix (France)'),
(52943, 44390, 'en', 'name', 'Ministry of Economic Development and Technology'),
(52944, 44391, 'en', 'name', 'Surgical Society of Zambia'),
(52945, 44392, 'en', 'name', 'Tea Research Institute'),
(52946, 44392, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢čŒ¶å¶ē ”ē©¶ę‰€'),
(52947, 44393, 'en', 'name', 'Ministry of Water and Environment'),
(52948, 44394, 'en', 'name', 'Water Resources Commission of Ghana'),
(52949, 44395, 'en', 'name', 'Ranger College'),
(52950, 44396, 'no_lang_code', 'name', 'iRhythm (United States)'),
(52951, 44397, 'en', 'name', 'Shanxi Academy of Agricultural Sciences'),
(52952, 44397, 'zh', 'name', 'å±±č„æēœå†œäøšē§‘å­¦é™¢ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(52953, 44398, 'en', 'name', 'Fresh Science'),
(52954, 44399, 'de', 'name', 'SRH Hochschule für Wirtschaft und Medien Calw'),
(52955, 44400, 'en', 'name', 'Korea Information Society Development Institute'),
(52956, 44400, 'ko', 'name', '정볓통신정책연구원'),
(52957, 44401, 'en', 'name', 'People''s Liberation Army 411 Hospital'),
(52958, 44401, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬å››äø€äø€åŒ»é™¢'),
(52959, 44402, 'fr', 'name', 'Institut National SupƩrieur des Arts du Spectacle et des Techniques de Diffusion'),
(52960, 44403, 'en', 'name', 'Communities for a Better Environment'),
(52961, 44404, 'en', 'name', 'Shaanxi Provincial People''s Hospital'),
(52962, 44404, 'zh', 'name', 'é™•č„æēœäŗŗę°‘åŒ»é™¢'),
(52963, 44405, 'pt', 'name', 'Radio MoƧambique'),
(52964, 44406, 'en', 'name', 'Saint Vincent Health System'),
(52965, 44407, 'en', 'name', 'Brazilian Institute of Environment and Renewable Natural Resources'),
(52966, 44407, 'pt', 'name', 'Instituto Brasileiro do Meio Ambiente e dos Recursos Naturais RenovƔveis'),
(52967, 44408, 'en', 'name', 'Government Medical College'),
(52968, 44409, 'en', 'name', 'Swiss Hotel Management School'),
(52969, 44410, 'en', 'name', 'National Aerospace Laboratories'),
(52970, 44410, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤ą¤Æą¤°ą„‹ą¤øą„ą¤Ŗą„‡ą¤ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(52971, 44410, 'kn', 'name', 'ą²Øą³ą²Æą²¾ą²·ą²Øą²²ą³ ą²ą²°ą³‹ą²øą³ą²Ŗą³‡ą²øą³ ą²²ą³ą²Æą²¾ą²¬ą³‹ą²°ą³‡ą²Ÿą²°ą²æ'),
(52972, 44410, 'ml', 'name', 'ą“Øą“¾ą“·ą“£ąµ½ ą“ą“±ąµ‹ą“øąµą“Ŗąµ‡ą“øąµ ą“²ą“¾ą“¬ą“±ą“Ÿąµą“Ÿą“±ąµ€ą“øąµ'),
(52973, 44410, 'sa', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æą¤µą„ˆą¤®ą¤¾ą¤Øą¤æą¤•ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾(NAL)'),
(52974, 44411, 'pt', 'name', 'Fundação de Tecnologia do Estado do Acre'),
(52975, 44412, 'en', 'name', 'Government of Maharashtra'),
(52976, 44412, 'mr', 'name', 'ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°.भारत'),
(52977, 44413, 'en', 'name', 'Ex''pression College for Digital Arts'),
(52978, 44414, 'en', 'name', 'Institute of Advanced Studies in Administration'),
(52979, 44414, 'es', 'name', 'Instituto de Estudios Superiores de Administración'),
(52980, 44415, 'en', 'name', 'Institute for Research on Combustion'),
(52981, 44415, 'it', 'name', 'Istituto di Ricerche sulla Combustione'),
(52982, 44416, 'en', 'name', 'Academy of Tourism and Hotel Management in Gdansk'),
(52983, 44416, 'pl', 'name', 'Wyższa Szkoła Turystyki i Hotelarstwa w Gdańsku'),
(52984, 44417, 'en', 'name', 'University of Security in Poznań'),
(52985, 44417, 'pl', 'name', 'Wyższa Szkoła Bezpieczeństwa w Poznaniu'),
(52986, 44418, 'en', 'name', 'East Arkansas Community College'),
(52987, 44419, 'en', 'name', 'North Carolina Space Grant Consortium'),
(52988, 44420, 'en', 'name', 'Summit Public Schools'),
(52989, 44421, 'no_lang_code', 'name', 'Thermax (India)'),
(52990, 44422, 'en', 'name', 'Bemis Center for Contemporary Arts'),
(52991, 44423, 'en', 'name', 'CRC Health Group'),
(52992, 44424, 'en', 'name', 'Network of Networks of HIV Positives'),
(52993, 44425, 'en', 'name', 'Spurgeons College'),
(52994, 44426, 'fr', 'name', 'Ɖcole SupĆ©rieure Angevine d''Informatique et de Productique'),
(52995, 44427, 'de', 'name', 'EuropƤisches Parlament'),
(52996, 44427, 'en', 'name', 'European Parliament'),
(52997, 44427, 'fr', 'name', 'Parlement EuropƩen'),
(52998, 44427, 'nl', 'name', 'Europees Parlement'),
(52999, 44428, 'no_lang_code', 'name', 'Grace Bio-Labs (United States)'),
(53000, 44429, 'en', 'name', 'Craven Community College'),
(53001, 44430, 'en', 'name', 'European University'),
(53002, 44430, 'sr', 'name', 'Evropski Univerzitet'),
(53003, 44431, 'de', 'name', 'Museumsdorf Cloppenburg, Museumsdorf Cloppenburg – NiedersƤchsisches Freilichtmuseum'),
(53004, 44432, 'en', 'name', 'Institution of Electronics and Telecommunication Engineers'),
(53005, 44433, 'en', 'name', 'Japanese Red Cross Hokkaido College of Nursing'),
(53006, 44433, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—åŒ—ęµ·é“ēœ‹č­·å¤§å­¦'),
(53007, 44434, 'en', 'name', 'Siddhartha Medical College'),
(53008, 44435, 'fr', 'name', 'Groupe de Recherche et d’Action sur le Foncier'),
(53009, 44436, 'en', 'name', 'Christian Missionary Fellowship International'),
(53010, 44437, 'en', 'name', 'Institute for Doctoral Studies in the Visual Arts'),
(53011, 44438, 'en', 'name', 'Beijing Haidian Hospital'),
(53012, 44438, 'zh', 'name', 'åŒ—äŗ¬åø‚ęµ·ę·€åŒ»é™¢'),
(53013, 44439, 'fr', 'name', 'Gulliver'),
(53014, 44440, 'ar', 'name', 'Ł‡ŁŠŲ¦Ų© Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(53015, 44440, 'en', 'name', 'Agricultural Research Corporation'),
(53016, 44441, 'en', 'name', 'West Cheshire College'),
(53017, 44442, 'en', 'name', 'Shanghai Estuarine & Coastal Science Research Center'),
(53018, 44442, 'zh', 'name', 'äøŠęµ·ę²³å£ęµ·å²øē§‘å­¦ē ”ē©¶äø­åæƒ'),
(53019, 44443, 'no_lang_code', 'name', 'Byblos Group (France)'),
(53020, 44444, 'pt', 'name', 'Centro de Ensino Superior de Juiz de Fora'),
(53021, 44445, 'en', 'name', 'Marine Hydrophysical Institute'),
(53022, 44445, 'ru', 'name', 'ŠœŠ¾Ń€ŃŠŗŠ¾Š¹ ГиГрофизический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(53023, 44446, 'cs', 'name', 'VysokƔ Skola AplikovanƩho PrƔva'),
(53024, 44447, 'no_lang_code', 'name', 'Freelancer (Portugal)'),
(53025, 44448, 'en', 'name', 'Institute of Agrarian Problems'),
(53026, 44448, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрных проблем'),
(53027, 44449, 'no_lang_code', 'name', 'HistoGenetics (United States)'),
(53028, 44450, 'en', 'name', 'Augusta Technical College'),
(53029, 44451, 'en', 'name', 'Conservatory of Bari'),
(53030, 44451, 'it', 'name', 'Conservatorio di Musica N. Piccinni'),
(53031, 44452, 'it', 'name', 'Conservatorio Statale di Musica Nicola Sala - Benevento'),
(53032, 44453, 'en', 'name', 'Faculty for Business Management'),
(53033, 44453, 'hr', 'name', 'Fakultet za Poslovni Menadžment u Baru'),
(53034, 44454, 'no_lang_code', 'name', 'China Minmetals (China)'),
(53035, 44454, 'zh', 'name', 'é•æę²™ēŸæå†¶ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(53036, 44455, 'en', 'name', 'China National Research Institute of Food and Fermentation'),
(53037, 44455, 'zh', 'name', 'äø­å›½é£Ÿå“å‘é…µå·„äøšē ”ē©¶é™¢'),
(53038, 44456, 'en', 'name', 'Dr. B.L. Kapur Memorial Hospital'),
(53039, 44457, 'en', 'name', 'Kranj School Centre'),
(53040, 44457, 'sl', 'name', 'Å olski center Kranj'),
(53041, 44458, 'en', 'name', 'Fujian Institute of Oceanography'),
(53042, 44458, 'zh', 'name', 'ē¦å»ŗęµ·ę“‹ē ”ē©¶ę‰€'),
(53043, 44459, 'en', 'name', 'Ayush & Health Sciences University Chhattisgarh'),
(53044, 44459, 'hi', 'name', 'पं. ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤‰ą¤Ŗą¤¾ą¤§ą„ą¤Æą¤¾ą¤Æ ą¤øą„ą¤®ą„ƒą¤¤ą¤æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤†ą¤Æą„ą¤· ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą„'),
(53045, 44460, 'en', 'name', 'Department of Chemistry and Material Sciences'),
(53046, 44461, 'no_lang_code', 'name', 'Adobe Systems (United States)'),
(53047, 44462, 'en', 'name', 'Amref Health Africa'),
(53048, 44463, 'en', 'name', 'Seema Dental College and Hospital'),
(53049, 44464, 'en', 'name', 'National Academy of Physical Education and Sport'),
(53050, 44464, 'ro', 'name', 'Academia Naţională de Educaţie Fizică şi Sport Bucureşti'),
(53051, 44465, 'en', 'name', 'Rockingham Community College'),
(53052, 44466, 'no_lang_code', 'name', 'Statisticon (Sweden)'),
(53053, 44467, 'en', 'name', 'Long Island League to Abolish Cancer'),
(53054, 44468, 'it', 'name', 'Istituto Ricerche Solari Locarno'),
(53055, 44469, 'en', 'name', 'Sidley Austin'),
(53056, 44470, 'no_lang_code', 'name', 'Vale (Brazil)'),
(53057, 44471, 'en', 'name', 'New College'),
(53058, 44472, 'fr', 'name', 'Centre Suisse de Cartographie de la Faune'),
(53059, 44473, 'en', 'name', 'Wisconsin Space Grant Consortium'),
(53060, 44474, 'ro', 'name', 'Universitatea Avram Iancu'),
(53061, 44475, 'no_lang_code', 'name', '3D Bioprinting Solutions (Russia)'),
(53062, 44475, 'ru', 'name', '3Š” Биопринтинг Š”Š¾Š»ŃŽŃˆŠµŠ½Ń'),
(53063, 44476, 'en', 'name', 'Shura Council'),
(53064, 44477, 'no_lang_code', 'name', 'Discovery Communications (United States)'),
(53065, 44478, 'en', 'name', 'Kumi District Local Government'),
(53066, 44479, 'en', 'name', 'Africa 2000 Network'),
(53067, 44480, 'en', 'name', 'International Yacht Restoration School'),
(53068, 44481, 'en', 'name', 'Antonelli College'),
(53069, 44482, 'af', 'name', 'Stad Kaapstad'),
(53070, 44482, 'en', 'name', 'City of Cape Town'),
(53071, 44482, 'xh', 'name', 'IsiXeko SaseKapa'),
(53072, 44483, 'en', 'name', 'Association of California Community College Administrators'),
(53073, 44484, 'en', 'name', 'Scott Community College'),
(53074, 44485, 'pt', 'name', 'Governo do Estado de Mato Grosso'),
(53075, 44486, 'en', 'name', 'Pine Technical and Community College'),
(53076, 44487, 'en', 'name', 'American Academy of Psychiatry and the Law'),
(53077, 44488, 'en', 'name', 'Community Arts Network'),
(53078, 44489, 'en', 'name', 'Research Center of Neurology'),
(53079, 44489, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾Š³Š¾ центра неврологии'),
(53080, 44490, 'en', 'name', 'Hussian College'),
(53081, 44491, 'de', 'name', 'Hochschule für Musik Nürnberg'),
(53082, 44491, 'en', 'name', 'Nuremberg University of Music'),
(53083, 44492, 'en', 'name', 'Malayan Colleges Laguna'),
(53084, 44493, 'en', 'name', 'United States Commission of Fine Arts'),
(53085, 44494, 'ko', 'name', 'ģš©ģøģ†”ė‹“ėŒ€ķ•™źµ'),
(53086, 44494, 'no_lang_code', 'name', 'Yong-in Songdam College'),
(53087, 44495, 'en', 'name', 'Bodoland University'),
(53088, 44495, 'hi', 'name', 'बऔ''ą¤²ą„‡ą¤£ą„ą¤” ą¤¬ą„ą¤¹ą„ą¤®ą¤«ą¤°ą¤¾ą¤Æą¤øą¤¾ą¤²ą¤æ'),
(53089, 44496, 'en', 'name', 'Millennium Institute'),
(53090, 44496, 'es', 'name', 'Instituto Millenium'),
(53091, 44497, 'en', 'name', 'Oil and Gas Center'),
(53092, 44497, 'zh', 'name', 'å›½åœŸčµ„ęŗéƒØę²¹ę°”čµ„ęŗęˆ˜ē•„ē ”ē©¶äø­åæƒ'),
(53093, 44498, 'en', 'name', 'Institute of Hydroecology'),
(53094, 44498, 'zh', 'name', 'ę°“åˆ©éƒØäø­å›½ē§‘å­¦é™¢ę°“å·„ēØ‹ē”Ÿę€ē ”ē©¶ę‰€'),
(53095, 44499, 'en', 'name', 'Institute of Pharmacology Russian Academy of Medical Sciences'),
(53096, 44499, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фармакологии имени Š’.Š’.Š—Š°ŠŗŃƒŃŠ¾Š²Š°Ā» ... Российской акаГемии'),
(53097, 44500, 'en', 'name', 'Sunderland College'),
(53098, 44501, 'no_lang_code', 'name', 'Nipson Technology (France)'),
(53099, 44502, 'en', 'name', 'Korean Intellectual Property Office'),
(53100, 44502, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ķŠ¹ķ—ˆģ²­'),
(53101, 44503, 'fr', 'name', 'Centre Marocain des Techniques du Cuir'),
(53102, 44504, 'en', 'name', 'Rome International School'),
(53103, 44505, 'no_lang_code', 'name', 'Angelini Pharma (Italy)'),
(53104, 44506, 'en', 'name', 'Vermont College of Fine Arts'),
(53105, 44507, 'en', 'name', 'Sioux Falls Seminary'),
(53106, 44508, 'en', 'name', 'Reformed Episcopal Seminary'),
(53107, 44509, 'pt', 'name', 'Fundação de Apoio à Pesquisa do Rio Grande do Norte'),
(53108, 44510, 'en', 'name', 'V.V. Dokuchaev Soil Science Institute'),
(53109, 44511, 'en', 'name', 'Bangladesh Centre for Advanced Studies'),
(53110, 44512, 'sw', 'name', 'Twaweza'),
(53111, 44513, 'en', 'name', 'Workers Compensation Board of British Columbia'),
(53112, 44514, 'en', 'name', 'Daoist Traditions College of Chinese Medical Arts'),
(53113, 44515, 'en', 'name', 'Kenya Psychiatry Association​'),
(53114, 44516, 'en', 'name', 'Pennsylvania Department of Labor and Industry'),
(53115, 44517, 'en', 'name', 'Apollo Hospitals'),
(53116, 44518, 'en', 'name', 'Society of Gastroenterology Nurses and Associates'),
(53117, 44519, 'no_lang_code', 'name', 'REACH ETHIOPIA'),
(53118, 44520, 'bn', 'name', 'ą¦—ą§ą¦°ą¦¾ą¦®ą§€ą¦£ą¦«ą§‹ą¦Ø'),
(53119, 44520, 'no_lang_code', 'name', 'Grameenphone (Bangladesh)'),
(53120, 44521, 'en', 'name', 'National Vulvodynia Association'),
(53121, 44522, 'no_lang_code', 'name', 'Surys (France)'),
(53122, 44523, 'en', 'name', 'International Life Sciences Institute India'),
(53123, 44524, 'en', 'name', 'Management Development Institute'),
(53124, 44525, 'en', 'name', 'Saint-Petersburg Institute of History'),
(53125, 44525, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории'),
(53126, 44526, 'no_lang_code', 'name', 'Usha Martin (India)'),
(53127, 44527, 'en', 'name', 'Guangzhou HKUST Fok Ying Tung Research Institute'),
(53128, 44527, 'zh', 'name', 'éœč‹±äøœē ”ē©¶é™¢'),
(53129, 44528, 'en', 'name', 'Heartland Baptist Bible College'),
(53130, 44529, 'en', 'name', 'Concern for Development Initiatives in Africa'),
(53131, 44530, 'en', 'name', 'Estrella Mountain Community College'),
(53132, 44531, 'ja', 'name', 'å¤§ę‰‹å‰ēŸ­ęœŸå¤§å­¦'),
(53133, 44531, 'no_lang_code', 'name', 'Otemae College'),
(53134, 44532, 'de', 'name', 'Hochschule für Finanzen Rheinland Pfalz'),
(53135, 44533, 'en', 'name', 'Jesuit Madurai Province'),
(53136, 44534, 'en', 'name', 'West Suffolk College'),
(53137, 44535, 'en', 'name', 'Kenya Coastal Development Project'),
(53138, 44536, 'en', 'name', 'Bryan College of Health Sciences'),
(53139, 44537, 'es', 'name', 'Ministerio de Ciencia, TecnologĆ­a y Telecomunicaciones'),
(53140, 44538, 'de', 'name', 'CVJM-Hochschule'),
(53141, 44538, 'en', 'name', 'International YMCA University of Applied Sciences'),
(53142, 44539, 'en', 'name', 'Asian Energy Institute'),
(53143, 44540, 'en', 'name', 'Rainbow Children''s Hospital'),
(53144, 44541, 'no_lang_code', 'name', 'Oracle (India)'),
(53145, 44542, 'no_lang_code', 'name', 'Structural Timber Innovation Company (New Zealand)'),
(53146, 44543, 'en', 'name', 'MOROCCAN INSTITUTE OF INTERNATIONAL RELATIONS'),
(53147, 44543, 'fr', 'name', 'Institut Marocain des Relations Internationales'),
(53148, 44544, 'no_lang_code', 'name', 'Gramercy Research Group (United States)'),
(53149, 44545, 'en', 'name', 'Senegal River Basin Development Authority'),
(53150, 44545, 'fr', 'name', 'Organisation Pour la Mise en Valeur du Fleuve SƩnƩgal'),
(53151, 44546, 'fr', 'name', 'MinistĆØre de l''Ɖquipement'),
(53152, 44547, 'en', 'name', 'Pidstryhach Institute for Applied Problems of Mechanics and Mathematics'),
(53153, 44547, 'uk', 'name', 'ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГних проблем механіки і математики ім. ŠÆ. Š”. ŠŸŃ–Š“ŃŃ‚Ń€ŠøŠ³Š°Ń‡Š°'),
(53154, 44548, 'en', 'name', 'Changsha Medical University'),
(53155, 44548, 'zh', 'name', 'é•æę²™åŒ»å­¦é™¢'),
(53156, 44549, 'no_lang_code', 'name', 'Huvepharma (Bulgaria)'),
(53157, 44550, 'en', 'name', 'ING Direct'),
(53158, 44551, 'en', 'name', 'International Association for the Study of Pain'),
(53159, 44552, 'en', 'name', 'National Center for Research on Earthquake Engineering'),
(53160, 44552, 'zh', 'name', 'åœ‹å®¶åœ°éœ‡å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(53161, 44553, 'no_lang_code', 'name', 'Africare'),
(53162, 44554, 'de', 'name', 'BibliothĆØque nationale de Luxembourg'),
(53163, 44554, 'en', 'name', 'National Library of Luxembourg'),
(53164, 44554, 'fr', 'name', 'BibliothĆØque Nationale de Luxembourg'),
(53165, 44554, 'lb', 'name', 'Lƫtzebuerger NationalbibliothƩik'),
(53166, 44555, 'en', 'name', 'Boise Bible College'),
(53167, 44556, 'en', 'name', 'Social Development and Improvement Agency'),
(53168, 44557, 'de', 'name', 'Bibliotheca Augustiniana'),
(53169, 44558, 'en', 'name', 'Central Institute of Brackishwater Aquaculture'),
(53170, 44559, 'en', 'name', 'Presbyterian Theological College'),
(53171, 44560, 'no_lang_code', 'name', 'Tata Power Solar (India)'),
(53172, 44561, 'en', 'name', 'National Research Institute for Veterinary Virology and Microbiology of Russia'),
(53173, 44561, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ ветеринарной Š²ŠøŃ€ŃƒŃŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(53174, 44562, 'en', 'name', 'Regional Commissioners Office'),
(53175, 44563, 'hi', 'name', 'Kadi Sarva Vishwavidyalaya'),
(53176, 44564, 'en', 'name', 'National AIDS Council'),
(53177, 44565, 'es', 'name', 'Centro de AnÔlisis y Difusión de la Economía Paraguya'),
(53178, 44566, 'en', 'name', 'North Central Michigan College'),
(53179, 44567, 'en', 'name', 'National Anti-Vivisection Society'),
(53180, 44568, 'no_lang_code', 'name', 'Ghelfi Ondulati (Italy)'),
(53181, 44569, 'en', 'name', 'New River Community College'),
(53182, 44570, 'en', 'name', 'Ministry for the Environment'),
(53183, 44570, 'mi', 'name', 'Manatū Mō Te Taiao'),
(53184, 44571, 'en', 'name', 'Medical Research Council of Zimbabwe'),
(53185, 44572, 'en', 'name', 'Department of Genomes & Genetics'),
(53186, 44573, 'en', 'name', 'SPIE Europe'),
(53187, 44574, 'en', 'name', 'Pharmaceutical and Medical Device Regulatory Science Society of Japan'),
(53188, 44574, 'ja', 'name', 'åŒ»č–¬å“åŒ»ē™‚ę©Ÿå™Øćƒ¬ć‚®ćƒ„ćƒ©ćƒˆćƒŖćƒ¼ć‚µć‚¤ć‚Øćƒ³ć‚¹č²”å›£'),
(53189, 44575, 'en', 'name', 'Arusha City Council'),
(53190, 44576, 'en', 'name', 'Anoka-Ramsey Community College'),
(53191, 44577, 'de', 'name', 'Fachhochschule für Wirtschaft und Technik, Private Hochschule für Wirtschaft und Technik'),
(53192, 44578, 'fr', 'name', 'Ɖcole SupĆ©rieure des Arts de l''Image Le 75'),
(53193, 44579, 'en', 'name', 'Artemis Hospitals'),
(53194, 44580, 'no_lang_code', 'name', 'Toa Pharmaceutical (Japan)'),
(53195, 44581, 'en', 'name', 'Ozark Christian College'),
(53196, 44582, 'en', 'name', 'Sichuan Academy of Agricultural Sciences'),
(53197, 44582, 'zh', 'name', 'å››å·ēœå†œäøšē§‘å­¦é™¢ä½œē‰©ē ”ē©¶ę‰€'),
(53198, 44583, 'en', 'name', 'National Computer Board'),
(53199, 44584, 'de', 'name', 'BTK - Hochschule für Kunst & Design'),
(53200, 44584, 'en', 'name', 'BTK University of Arts & Design'),
(53201, 44585, 'en', 'name', 'Ear Science Institute Australia'),
(53202, 44586, 'no_lang_code', 'name', 'Mauna Kea Technologies (France)'),
(53203, 44587, 'en', 'name', 'Northern Norway Regional Health Authority'),
(53204, 44587, 'no', 'name', 'Helse Nord RHF'),
(53205, 44588, 'en', 'name', 'Sri Guru Harkrishan Sahib Charitable Eye Hospital Trust'),
(53206, 44589, 'en', 'name', 'Grand Egyptian Museum'),
(53207, 44590, 'no_lang_code', 'name', 'Exactech (France)'),
(53208, 44591, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia de Doenças Tropicais'),
(53209, 44592, 'en', 'name', 'Australian Communications Consumer Action Network'),
(53210, 44593, 'en', 'name', 'Major League Baseball'),
(53211, 44594, 'en', 'name', 'California Space Grant Consortium'),
(53212, 44595, 'fr', 'name', 'Ɖcole Pratique des Hautes Ɖtudes Commerciales'),
(53213, 44596, 'en', 'name', 'Memphis College of Art'),
(53214, 44597, 'no_lang_code', 'name', 'Associated British Ports (United Kingdom)'),
(53215, 44598, 'it', 'name', 'Accademia di Belle Arti di Lecce'),
(53216, 44599, 'en', 'name', 'South African National Blood Service'),
(53217, 44600, 'en', 'name', 'JTC Corporation'),
(53218, 44600, 'zh', 'name', 'č£•å»Šé›†å›¢'),
(53219, 44601, 'de', 'name', 'Hochschule der Deutschen Bundesbank'),
(53220, 44602, 'en', 'name', 'Textile Technical Center'),
(53221, 44602, 'fr', 'name', 'Centre technique du textile'),
(53222, 44603, 'pt', 'name', 'Sport Lisboa e Benfica'),
(53223, 44604, 'no_lang_code', 'name', 'Prudential Financial (United States)'),
(53224, 44605, 'en', 'name', 'Columbia College'),
(53225, 44606, 'tr', 'name', 'İzmir Kavram Meslek Yüksek Okulu'),
(53226, 44607, 'en', 'name', 'North Carolina Exploring Cultural Heritage Online'),
(53227, 44608, 'no_lang_code', 'name', 'General Motors (India)'),
(53228, 44609, 'en', 'name', 'New Hope Christian College'),
(53229, 44610, 'en', 'name', 'Justice Development and Peace Caritas'),
(53230, 44611, 'en', 'name', 'Talmudical Seminary Oholei Torah'),
(53231, 44612, 'no_lang_code', 'name', 'Vatterott College'),
(53232, 44613, 'no_lang_code', 'name', 'MediaTek (Taiwan)'),
(53233, 44613, 'zh', 'name', 'čÆē™¼ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(53234, 44614, 'en', 'name', 'Kosair Charities'),
(53235, 44615, 'fr', 'name', 'MinistĆØre de l’Enseignement SupĆ©rieur et de la Recherche Scientifique'),
(53236, 44616, 'en', 'name', 'Southwest Acupuncture College - Santa Fe'),
(53237, 44617, 'it', 'name', 'Conservatorio di Musica Stanislao Giacomantonio'),
(53238, 44618, 'en', 'name', 'Associated Board of the Royal Schools of Music'),
(53239, 44619, 'de', 'name', 'PƤdagogische Hochschule Zug'),
(53240, 44619, 'en', 'name', 'University of Teacher Education Zug'),
(53241, 44620, 'en', 'name', 'National Diet Library'),
(53242, 44620, 'ja', 'name', 'å›½ē«‹å›½ä¼šå›³ę›øé¤Ø'),
(53243, 44621, 'en', 'name', 'Phoenix Seminary'),
(53244, 44622, 'en', 'name', 'Government of Nepal'),
(53245, 44622, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² सरकार'),
(53246, 44623, 'pl', 'name', 'Wyższa Szkoła Nauk Społecznych z Siedzibą w Lublinie'),
(53247, 44624, 'pt', 'name', 'Centro de Formação Profissional para a Indústria Cerâmica'),
(53248, 44625, 'en', 'name', 'North Eastern Indira Gandhi Regional Institute of Health and Medical Sciences'),
(53249, 44626, 'no_lang_code', 'name', 'Britannia University'),
(53250, 44627, 'en', 'name', 'Shorter College'),
(53251, 44628, 'en', 'name', 'Institute of History and Archaeology'),
(53252, 44628, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории Šø археологии Š£Ń€Šž Š ŠŠ'),
(53253, 44629, 'en', 'name', 'Yukon Agricultural Association'),
(53254, 44630, 'es', 'name', 'Oficina Regional de Coordinación de Salud Mental'),
(53255, 44631, 'en', 'name', 'Centre for Water Resources Development and Management'),
(53256, 44632, 'fr', 'name', 'Institut de Recherche Agronomique de GuinƩe'),
(53257, 44633, 'en', 'name', 'UPASI Tea Research Foundation'),
(53258, 44634, 'es', 'name', 'Instituto Tecnologico de Veracruz'),
(53259, 44635, 'en', 'name', 'Westminster Theological Seminary'),
(53260, 44635, 'fr', 'name', 'SƩminaire thƩologique de westminster'),
(53261, 44636, 'no_lang_code', 'name', 'Mercers’ Company (United Kingdom)'),
(53262, 44637, 'en', 'name', 'Summit Christian College'),
(53263, 44638, 'en', 'name', 'Dong Thap University'),
(53264, 44639, 'en', 'name', 'New York State Council on the Arts'),
(53265, 44640, 'en', 'name', 'Hartford Food System'),
(53266, 44641, 'ar', 'name', 'المؤسسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„ŲŖŁ†Ł‚ŁŠŲØ, صناعة, نقل, ŲŖŲ­ŁˆŁŠŁ„ و ŲŖŲ³ŁˆŁŠŁ‚ Ų§Ł„Ł…Ų­Ų±ŁˆŁ‚Ų§ŲŖ'),
(53267, 44641, 'no_lang_code', 'name', 'Sonatrach (Algeria)'),
(53268, 44642, 'en', 'name', 'Süleyman Şah University'),
(53269, 44642, 'tr', 'name', 'Süleyman Şah Üniversitesi'),
(53270, 44643, 'it', 'name', 'Conservatorio Guido Cantelli di Novara'),
(53271, 44644, 'en', 'name', 'University of Agriculture'),
(53272, 44645, 'en', 'name', 'Savannah River Operations Office'),
(53273, 44646, 'en', 'name', 'Anchor Center for Blind Children'),
(53274, 44647, 'en', 'name', 'Young Harris College'),
(53275, 44648, 'en', 'name', 'Department of Internal Affairs'),
(53276, 44648, 'mi', 'name', 'Te Tari Taiwhenua'),
(53277, 44649, 'en', 'name', 'Office of Economic Impact and Diversity'),
(53278, 44650, 'pt', 'name', 'Instituto AgronƓmico do ParanƔ'),
(53279, 44651, 'en', 'name', 'Federal Reserve Bank of New York'),
(53280, 44652, 'en', 'name', 'Chuncheon Sacred Heart Hospital'),
(53281, 44653, 'en', 'name', 'Liaoning Ocean and Fisheries Research Institute'),
(53282, 44653, 'zh', 'name', 'č¾½å®ēœęµ·ę“‹ę°“äŗ§ē§‘å­¦ē ”ē©¶é™¢'),
(53283, 44654, 'en', 'name', 'Institute of Predictive and Personalized Medicine of Cancer'),
(53284, 44654, 'es', 'name', 'Institut de Medicina Predictiva i Personalitzada del Cancer'),
(53285, 44655, 'en', 'name', 'China Electronics Standardization Institute'),
(53286, 44655, 'zh', 'name', 'äø­å›½ē”µå­ęŠ€ęœÆę ‡å‡†åŒ–ē ”ē©¶é™¢'),
(53287, 44656, 'en', 'name', 'National Disasters Management Institute'),
(53288, 44656, 'pt', 'name', 'Instituto Nacional de Gestão de Calamidades'),
(53289, 44657, 'en', 'name', 'Panevėžys College'),
(53290, 44658, 'en', 'name', 'Act Health'),
(53291, 44659, 'en', 'name', 'Dunhuang Research Academy'),
(53292, 44659, 'zh', 'name', 'ę•¦ē…Œē ”ē©¶é™¢'),
(53293, 44660, 'en', 'name', 'Virginia Theological Seminary'),
(53294, 44661, 'en', 'name', 'Ministry for Foreign Affairs, Education and Culture'),
(53295, 44662, 'no_lang_code', 'name', 'Immediate Post Concussion Assessment and Cognitive Testing (United States)'),
(53296, 44663, 'en', 'name', 'Perinatal HIV Research Unit'),
(53297, 44664, 'en', 'name', 'National Primary Health Care Development Agency'),
(53298, 44665, 'en', 'name', 'Indian Institute of Soil Science'),
(53299, 44665, 'hi', 'name', 'ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ-ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤®ą„ƒą¤¦ą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(53300, 44666, 'no_lang_code', 'name', 'Atys Medical (France)'),
(53301, 44667, 'en', 'name', 'China Meat Research Centre'),
(53302, 44667, 'zh', 'name', 'äø­å›½č‚‰ē±»é£Ÿå“ē ”ē©¶äø­åæƒ'),
(53303, 44668, 'en', 'name', 'Indian Institute of Soil and Water Conservation'),
(53304, 44669, 'en', 'name', 'New Zealand Council for Educational Research'),
(53305, 44670, 'pt', 'name', 'Centro UniversitƔrio do Rio Grande do Norte'),
(53306, 44671, 'en', 'name', 'St Patrick''s College');
INSERT INTO `ror_settings` VALUES
(53307, 44672, 'en', 'name', 'Driestar Christian University'),
(53308, 44673, 'en', 'name', 'Resource Conflict Institute'),
(53309, 44674, 'no_lang_code', 'name', 'American Airlines (United States)'),
(53310, 44675, 'en', 'name', 'Office of the Registrar General & Census Commissioner'),
(53311, 44676, 'en', 'name', 'Boston Graduate School of Psychoanalysis'),
(53312, 44677, 'es', 'name', 'Fundación Ciencias de la Documentación'),
(53313, 44678, 'en', 'name', 'Kidney Health New Zealand'),
(53314, 44679, 'en', 'name', 'NewSchool of Architecture and Design'),
(53315, 44680, 'en', 'name', 'Birla Institute of Technology and Science, Pilani - Dubai Campus'),
(53316, 44680, 'hi', 'name', 'बिरला ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤Ŗą¤æą¤²ą¤¾ą¤Øą„€-ą¤¦ą„ą¤¬ą¤ˆ ą¤•ą„ˆą¤‚ą¤Ŗą¤ø'),
(53317, 44681, 'pt', 'name', 'Faculdades EST'),
(53318, 44682, 'fr', 'name', 'Observatoire Satellital des ForĆŖts d’Afrique Centrale'),
(53319, 44683, 'en', 'name', 'Mid Atlantic Arts Foundation'),
(53320, 44684, 'en', 'name', 'Rajasthan Dental College and Hospital'),
(53321, 44685, 'en', 'name', 'Tennessee College of Applied Technology - Pulaski'),
(53322, 44686, 'no_lang_code', 'name', 'Keolis (France)'),
(53323, 44687, 'en', 'name', 'Hamilton Technical College'),
(53324, 44688, 'en', 'name', 'Institute of Management Technology'),
(53325, 44689, 'pt', 'name', 'Prefeitura Municipal de Belo Horizonte'),
(53326, 44690, 'en', 'name', 'Visible Music College'),
(53327, 44691, 'en', 'name', 'Lake Champlain Sea Grant'),
(53328, 44692, 'no_lang_code', 'name', 'Nonin Medical (United States)'),
(53329, 44693, 'no_lang_code', 'name', 'Smart Separations (United Kingdom)'),
(53330, 44694, 'en', 'name', 'Southern African Catholic Bishops Conference'),
(53331, 44695, 'de', 'name', 'Hochschule für Telekommunikation Leipzig'),
(53332, 44696, 'en', 'name', 'Roberto-Venn School of Luthiery'),
(53333, 44697, 'en', 'name', 'Stanmore College'),
(53334, 44698, 'en', 'name', 'Episcopal Divinity School'),
(53335, 44699, 'en', 'name', 'Saint Joseph Seminary College'),
(53336, 44700, 'en', 'name', 'Myerscough College'),
(53337, 44701, 'en', 'name', 'Prairie Bible Institute'),
(53338, 44702, 'no_lang_code', 'name', 'Convergys (United States)'),
(53339, 44703, 'en', 'name', 'Melbourne School of Theology'),
(53340, 44704, 'en', 'name', 'Korea Research Institute for Human Settlements'),
(53341, 44704, 'ko', 'name', '국토 연구원'),
(53342, 44705, 'fr', 'name', 'Institut de Recherche Pour le DƩveloppement'),
(53343, 44706, 'en', 'name', 'Jiangxi Academy of Environmental Sciences'),
(53344, 44706, 'zh', 'name', 'ę±Ÿč„æēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶é™¢'),
(53345, 44707, 'no_lang_code', 'name', 'NBCUniversal (United States)'),
(53346, 44708, 'en', 'name', 'Institute of Quality Standards and Testing Technology for Agro Products'),
(53347, 44708, 'zh', 'name', 'äø­å›½å†œē§‘é™¢ē§‘å­¦é™¢å†œē§‘é™¢č“Øé‡ę ‡å‡†äøŽę£€ęµ‹ęŠ€ęœÆē ”ē©¶ę‰€'),
(53348, 44709, 'en', 'name', 'Nassau County Department of Social Services'),
(53349, 44710, 'en', 'name', 'Department of Energy, Engineering, Mechanics and Control Processes'),
(53350, 44710, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŃ… проблем химической физики'),
(53351, 44711, 'hi', 'name', 'Shramik Bharti'),
(53352, 44712, 'en', 'name', 'Islamic Azad University of Urmia'),
(53353, 44712, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ų±ŁˆŁ…ŪŒŁ‡'),
(53354, 44713, 'en', 'name', 'Stanisław Staszic University of Applied Sciences in Piła'),
(53355, 44713, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Stanisława Staszica w Pile'),
(53356, 44714, 'fr', 'name', 'Ɖcole des Officiers de la Gendarmerie Nationale'),
(53357, 44715, 'en', 'name', 'Guangdong Police College'),
(53358, 44715, 'zh', 'name', 'å¹æäøœč­¦å®˜å­¦é™¢'),
(53359, 44716, 'en', 'name', 'Institute of Psychology'),
(53360, 44716, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологии'),
(53361, 44717, 'en', 'name', 'Rainy River Community College'),
(53362, 44718, 'da', 'name', 'Sundheds- og Ɔldreministeriet'),
(53363, 44718, 'en', 'name', 'Danish Ministry of Health'),
(53364, 44719, 'en', 'name', 'Ghana Meteorological Agency'),
(53365, 44720, 'de', 'name', 'Hochschule für Musik Würzburg'),
(53366, 44720, 'en', 'name', 'University of Music Würzburg'),
(53367, 44721, 'en', 'name', 'Institute of Archaeology and Ethnography'),
(53368, 44721, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° археологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø Š”Šž Š ŠŠ'),
(53369, 44722, 'en', 'name', 'Northeast State Community College'),
(53370, 44723, 'en', 'name', 'Association of African Universities'),
(53371, 44724, 'en', 'name', 'Columbus Technical College'),
(53372, 44725, 'no_lang_code', 'name', 'AlcmƩon (France)'),
(53373, 44726, 'fr', 'name', 'RƩgie Autonome Multi Services D''Agadir'),
(53374, 44727, 'en', 'name', 'Shenyang The Fourth Hospital of People'),
(53375, 44727, 'zh', 'name', 'ę²ˆé˜³åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(53376, 44728, 'en', 'name', 'Ministry of Sea Inland Waters and Fisheries'),
(53377, 44728, 'pt', 'name', 'MinistƩrio do Mar, Ɓguas Interiores e Pescas'),
(53378, 44729, 'no_lang_code', 'name', 'Newsweek (United States)'),
(53379, 44730, 'no_lang_code', 'name', 'British Biocell International (United Kingdom)'),
(53380, 44731, 'en', 'name', 'UPMC Center for High Value Health Care'),
(53381, 44732, 'en', 'name', 'Coastal Pines Technical College'),
(53382, 44733, 'en', 'name', 'Information and Library Network'),
(53383, 44734, 'en', 'name', 'Sir John Deane''s College'),
(53384, 44735, 'no_lang_code', 'name', 'Target (United States)'),
(53385, 44736, 'en', 'name', 'Ozarka College'),
(53386, 44737, 'en', 'name', 'Bank of Mauritius'),
(53387, 44738, 'no_lang_code', 'name', 'Aesculap (United States)'),
(53388, 44739, 'en', 'name', 'Gedik University'),
(53389, 44739, 'tr', 'name', 'Gedik Üniversitesi'),
(53390, 44740, 'fr', 'name', 'Ministère de la Santé Publique'),
(53391, 44741, 'en', 'name', 'Takestan Islamic Azad University'),
(53392, 44742, 'fr', 'name', 'Institut Textile et Chimique'),
(53393, 44743, 'no_lang_code', 'name', 'M&T Bank (United States)'),
(53394, 44744, 'en', 'name', 'Minnesota Office of Higher Education'),
(53395, 44745, 'en', 'name', 'Zhejiang University of Science and Technology'),
(53396, 44745, 'zh', 'name', 'ęµ™ę±Ÿē§‘ęŠ€å­¦é™¢'),
(53397, 44746, 'pt', 'name', 'ColƩgio Sinodal'),
(53398, 44747, 'no_lang_code', 'name', 'Mahindra Group (India)'),
(53399, 44748, 'en', 'name', 'Institute of Advanced Study in Science and Technology'),
(53400, 44749, 'no_lang_code', 'name', 'Clyde Bergemann Power Group'),
(53401, 44750, 'no_lang_code', 'name', 'Groupe ArtƩmis (France)'),
(53402, 44751, 'en', 'name', 'Nature Kenya The East Africa Natural History Society'),
(53403, 44752, 'pt', 'name', 'Ordem dos MƩdicos'),
(53404, 44753, 'en', 'name', 'NorQuest College'),
(53405, 44754, 'en', 'name', 'Institute of Urban Designers – India'),
(53406, 44755, 'en', 'name', 'Central Statistical Office'),
(53407, 44756, 'en', 'name', 'Texas State Affordable Housing Corporation'),
(53408, 44757, 'en', 'name', 'Territory and Municipal Services'),
(53409, 44758, 'no_lang_code', 'name', 'LF Driscoll'),
(53410, 44759, 'en', 'name', 'Institute of Linguistic Studies'),
(53411, 44759, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лингвистических исслеГований'),
(53412, 44760, 'en', 'name', 'Cooperative Institute for Climate and Satellites'),
(53413, 44761, 'en', 'name', 'Institute of Nutrition, Metabolism and Diabetes'),
(53414, 44762, 'en', 'name', 'Mercer County Community College'),
(53415, 44763, 'en', 'name', 'McLennan Community College'),
(53416, 44764, 'no_lang_code', 'name', 'Bermuda College'),
(53417, 44765, 'en', 'name', 'University of the Philippines Cebu'),
(53418, 44766, 'en', 'name', 'China Social Welfare Foundation'),
(53419, 44766, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē¦åˆ©åŸŗé‡‘ä¼š'),
(53420, 44767, 'en', 'name', 'Mineral Area College'),
(53421, 44768, 'no_lang_code', 'name', 'Genomic Health (United States)'),
(53422, 44769, 'en', 'name', 'American Academy of Acupuncture and Oriental Medicine'),
(53423, 44770, 'en', 'name', 'Culham Centre for Fusion Energy'),
(53424, 44771, 'en', 'name', 'School of Advertising Art'),
(53425, 44772, 'en', 'name', 'Pacific States University'),
(53426, 44773, 'en', 'name', 'Assiniboine Community College'),
(53427, 44774, 'en', 'name', 'University of Professional Teacher Education PABO Zwolle'),
(53428, 44774, 'nl', 'name', 'Katholieke Pabo Zwolle'),
(53429, 44775, 'en', 'name', 'Sahel Eco'),
(53430, 44776, 'fr', 'name', 'ArchĆ©ologie et Philologie d’Orient et d’Occident'),
(53431, 44777, 'en', 'name', 'Snead State Community College'),
(53432, 44778, 'pt', 'name', 'Secretaria de Desenvolvimento EconÓmico Ciência Tecnologia e Ensino Superior'),
(53433, 44779, 'no_lang_code', 'name', 'WaterAid'),
(53434, 44780, 'no_lang_code', 'name', 'Mead Johnson (United States)'),
(53435, 44781, 'ar', 'name', 'المجلس Ų§Ł„Ų¹Ų±ŲØŁŠ للاختصاصات Ų§Ł„ŲµŲ­ŁŠŲ©'),
(53436, 44781, 'en', 'name', 'Arab Board Of Health Specializations'),
(53437, 44782, 'no_lang_code', 'name', 'QoS Design (France)'),
(53438, 44783, 'no_lang_code', 'name', 'AES (Brazil)'),
(53439, 44784, 'en', 'name', 'Olympic College'),
(53440, 44785, 'en', 'name', 'All-Russian Scientific Research Institute of Records Management and Archival'),
(53441, 44785, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“Š¾ŠŗŃƒŠ¼ŠµŠ½Ń‚Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Šø архивного Гела'),
(53442, 44786, 'en', 'name', 'Martin Luther College'),
(53443, 44787, 'en', 'name', 'National Research Institute of Public Health named after N.A. Semashko'),
(53444, 44787, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общественного Š·Š“Š¾Ń€Š¾Š²ŃŒŃ имени Š.А. Демашко'),
(53445, 44788, 'de', 'name', 'Sigmund Freud Institut'),
(53446, 44788, 'en', 'name', 'Sigmund Freud Institute'),
(53447, 44789, 'en', 'name', 'African Comprehensive HIV/AIDS Partnerships'),
(53448, 44790, 'no_lang_code', 'name', 'Merck (India)'),
(53449, 44791, 'no_lang_code', 'name', 'Micro Focus (United States)'),
(53450, 44792, 'en', 'name', 'Xavier School'),
(53451, 44793, 'en', 'name', 'Association of Support in the Development of Activities of Population'),
(53452, 44794, 'no_lang_code', 'name', 'Maison Arabe de Software et de Hardware (Tunisia)'),
(53453, 44795, 'en', 'name', 'Central Research Institute of Structural Materials Prometey'),
(53454, 44795, 'ru', 'name', 'Š“ŠŠ¦ Š¤Š“Š£ŠŸ Ā«Š¦ŠŠ˜Š˜ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ†ŠøŠ¾Š½Š½Ń‹Ń… материалов Ā«ŠŸŃ€Š¾Š¼ŠµŃ‚ŠµŠ¹Ā»'),
(53455, 44796, 'pt', 'name', 'Companhia Energética de São Paulo'),
(53456, 44797, 'en', 'name', 'Institute of Hydrocarbon Processing'),
(53457, 44797, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем переработки ŃƒŠ³Š»ŠµŠ²Š¾Š“Š¾Ń€Š¾Š“Š¾Š²'),
(53458, 44798, 'en', 'name', 'Korean Women''s Development Institute'),
(53459, 44798, 'ko', 'name', 'ķ•œźµ­ģ—¬ģ„±ģ •ģ±…ģ—°źµ¬ģ›'),
(53460, 44799, 'no_lang_code', 'name', 'Chengdu Tool Research Institute (China)'),
(53461, 44799, 'zh', 'name', 'ęˆéƒ½å·„å…·ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(53462, 44800, 'no_lang_code', 'name', 'Sunrise Communications AG (Switzerland)'),
(53463, 44801, 'en', 'name', 'Health Action by People'),
(53464, 44802, 'pt', 'name', 'Clƭnica Sagrada EsperanƧa'),
(53465, 44803, 'en', 'name', 'Ministry of Energy Green Technology and Water'),
(53466, 44803, 'ms', 'name', 'Kementerian Tenaga, Teknologi Hijau dan Air'),
(53467, 44804, 'de', 'name', 'Hochschule für Ɩffentliche Verwaltung Bremen'),
(53468, 44805, 'en', 'name', 'International and European Law School'),
(53469, 44806, 'en', 'name', 'Austin Graduate School of Theology'),
(53470, 44807, 'en', 'name', 'Pharmacy and Poisons Board'),
(53471, 44808, 'de', 'name', 'Hannover Rück'),
(53472, 44808, 'no_lang_code', 'name', 'Hannover Re (Germany)'),
(53473, 44809, 'en', 'name', 'British Columbia Arts Council'),
(53474, 44810, 'el', 'name', 'Ī‘ĻƒĻ„Ļ…Ī½ĪæĪ¼Ī¹ĪŗĪ® ΑκαΓημία'),
(53475, 44810, 'en', 'name', 'Hellenic Police Academy'),
(53476, 44811, 'en', 'name', 'Queensland Theological College'),
(53477, 44812, 'en', 'name', 'Hope Worldwide Kenya'),
(53478, 44813, 'en', 'name', 'Land Consolidation and Rehabilitation Center'),
(53479, 44813, 'zh', 'name', 'äø­å›½å›½åœŸę•“ę²»ē½‘'),
(53480, 44814, 'en', 'name', 'Zhejiang Academy of Forestry'),
(53481, 44814, 'zh', 'name', 'ęµ™ę±Ÿēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(53482, 44815, 'en', 'name', 'Overseas Press Club of America'),
(53483, 44816, 'en', 'name', 'Institute of Finance and Banking'),
(53484, 44816, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢é‡‘čžē ”ē©¶ę‰€'),
(53485, 44817, 'en', 'name', 'National Association of Social Workers'),
(53486, 44818, 'fr', 'name', 'Observatoire National de la Jeunesse'),
(53487, 44819, 'en', 'name', 'KVG Dental College & Hospital'),
(53488, 44820, 'en', 'name', 'Warren County Community College'),
(53489, 44821, 'no_lang_code', 'name', 'Magellium (France)'),
(53490, 44822, 'en', 'name', 'Yeshiva Toras Chaim Talmudic Seminary'),
(53491, 44823, 'it', 'name', 'Dipartimento dell Educazione della Cultura e dello Sport'),
(53492, 44824, 'en', 'name', 'Department of Education Pagadian'),
(53493, 44825, 'en', 'name', 'Agfa HealthCare'),
(53494, 44826, 'no_lang_code', 'name', 'Volkswagen Group (India)'),
(53495, 44827, 'ar', 'name', 'ؓركة Ų§ŲŖŲ­Ų§ŲÆ Ų§Ł„Ł…Ł‚Ų§ŁˆŁ„ŁŠŁ†'),
(53496, 44827, 'no_lang_code', 'name', 'Consolidated Contractors Company (Greece)'),
(53497, 44828, 'en', 'name', 'Josephine De Karman Fellowship Trust'),
(53498, 44829, 'de', 'name', 'Burg Giebichenstein Kunsthochschule Halle'),
(53499, 44829, 'en', 'name', 'Burg Giebichenstein University of Art and Design Halle'),
(53500, 44830, 'en', 'name', 'Georgia Piedmont Technical College'),
(53501, 44831, 'en', 'name', 'United Nations Economic Commission for Africa'),
(53502, 44832, 'en', 'name', 'Marion Technical College'),
(53503, 44833, 'en', 'name', 'National Agricultural Research Organisation'),
(53504, 44834, 'en', 'name', 'Pennsylvania Department of Aging'),
(53505, 44835, 'no_lang_code', 'name', 'ISS International (South Africa)'),
(53506, 44836, 'en', 'name', 'Royal Physiographic Society of Lund'),
(53507, 44836, 'sv', 'name', 'Kungliga Fysiografiska SƤllskapet i Lund'),
(53508, 44837, 'en', 'name', 'Yunnan Academy of Forestry'),
(53509, 44837, 'zh', 'name', 'äŗ‘å—ēœęž—äøšē§‘å­¦é™¢'),
(53510, 44838, 'ja', 'name', 'ę±äŗžåˆęˆę Ŗå¼ä¼šē¤¾'),
(53511, 44838, 'no_lang_code', 'name', 'Toagosei (Japan)'),
(53512, 44839, 'en', 'name', 'Massachusetts School of Law'),
(53513, 44840, 'es', 'name', 'Instituto Tecnológico de Toluca'),
(53514, 44841, 'no_lang_code', 'name', 'Bharat Petroleum (India)'),
(53515, 44842, 'en', 'name', 'South Georgia State College'),
(53516, 44843, 'en', 'name', 'Northlands College'),
(53517, 44844, 'no_lang_code', 'name', 'Imagine Optic (France)'),
(53518, 44845, 'pt', 'name', 'Museu Nacional de Arte Contemporânea do Chiado'),
(53519, 44846, 'en', 'name', 'Churches Health Assoication Of Zambia'),
(53520, 44847, 'en', 'name', 'Photochemistry Center'),
(53521, 44847, 'ru', 'name', 'Центр фотохимии'),
(53522, 44848, 'en', 'name', 'Korea Institute of Public Administration'),
(53523, 44848, 'ko', 'name', 'ķ•œźµ­ķ–‰ģ •ģ—°źµ¬ģ›'),
(53524, 44849, 'en', 'name', 'Royal College of Ophthalmologists'),
(53525, 44850, 'en', 'name', 'Council on Foreign Relations'),
(53526, 44851, 'en', 'name', 'T A Pai Management Institute'),
(53527, 44852, 'no_lang_code', 'name', 'AudioGaming (France)'),
(53528, 44853, 'no_lang_code', 'name', 'Research Research (South Africa)'),
(53529, 44854, 'en', 'name', 'Columbia College of Nursing'),
(53530, 44855, 'en', 'name', 'Geophysical Survey'),
(53531, 44855, 'ru', 'name', 'Š“ŠµŠ¾Ń„ŠøŠ·ŠøŃ‡ŠµŃŠŗŠ°Ń служба Российской АкаГемии ŠŠ°ŃƒŠŗ'),
(53532, 44856, 'en', 'name', 'Heart Failure Society of America'),
(53533, 44857, 'fr', 'name', 'Progamme National Contre le Tuberculose'),
(53534, 44858, 'en', 'name', 'Industrial Credit and Investment Corporation of India'),
(53535, 44859, 'en', 'name', 'Georgia Northwestern Technical College'),
(53536, 44860, 'en', 'name', 'Palo Alto College'),
(53537, 44861, 'en', 'name', 'HealthForceOntario'),
(53538, 44862, 'en', 'name', 'Strode College'),
(53539, 44863, 'en', 'name', 'Federal Research Centre of Nutrition and Biotechnology'),
(53540, 44863, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠøŃ‚Š°Š½ŠøŃ'),
(53541, 44864, 'pt', 'name', 'Fundação Técnico Educacional Souza Marques'),
(53542, 44865, 'en', 'name', 'Institute of Apiculture Research'),
(53543, 44865, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢čœœčœ‚ē ”ē©¶ę‰€'),
(53544, 44866, 'no_lang_code', 'name', 'Labthermics Technologies (United States)'),
(53545, 44867, 'no_lang_code', 'name', 'Technoscene (South Africa)'),
(53546, 44868, 'it', 'name', 'Conservatorio di Musica di Perugia'),
(53547, 44869, 'no_lang_code', 'name', 'Jubilant Life Sciences (India)'),
(53548, 44870, 'en', 'name', 'McNeil Center for Early American Studies'),
(53549, 44871, 'en', 'name', 'United World College of the Adriatic'),
(53550, 44872, 'no_lang_code', 'name', 'Whirlpool (India)'),
(53551, 44873, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© المتعددة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖ بالجزائر'),
(53552, 44873, 'en', 'name', 'Polytechnic School of Algiers'),
(53553, 44874, 'en', 'name', 'State Higher Vocational School in Koszalin'),
(53554, 44874, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa w Koszalinie'),
(53555, 44875, 'de', 'name', 'Bundesamt für Bevölkerungsschutz und Katastrophenhilfe'),
(53556, 44875, 'en', 'name', 'Federal Office of Civil protection and Disaster Assistance'),
(53557, 44876, 'en', 'name', 'American River College'),
(53558, 44877, 'en', 'name', 'McNally Smith College of Music'),
(53559, 44878, 'en', 'name', 'Beijing Machine Tool Research Institute'),
(53560, 44878, 'zh', 'name', 'åŒ—äŗ¬ęœŗåŗŠē ”ē©¶ę‰€'),
(53561, 44879, 'en', 'name', 'Research Institute of Complex Problems of Cardiovascular Disease Russian Academy of Medical Sciences'),
(53562, 44880, 'en', 'name', 'Three Rivers College'),
(53563, 44881, 'no_lang_code', 'name', 'MNM Consulting (France)'),
(53564, 44882, 'en', 'name', 'Royal Spanish Academy'),
(53565, 44882, 'es', 'name', 'Real Academia EspaƱola'),
(53566, 44883, 'en', 'name', 'California Coast University'),
(53567, 44884, 'en', 'name', 'South Florida State College'),
(53568, 44885, 'en', 'name', 'Association Africa AgroEXport'),
(53569, 44886, 'en', 'name', 'All India Management Association'),
(53570, 44887, 'en', 'name', 'Kagoshima Prefectural College'),
(53571, 44887, 'ja', 'name', 'é¹æå…å³¶ēœŒē«‹ēŸ­ęœŸå¤§å­¦'),
(53572, 44888, 'en', 'name', 'Tuxtla Gutierrez Institute of Technology'),
(53573, 44888, 'es', 'name', 'Instituto Tecnológico de Tuxtla Gutiérrez'),
(53574, 44889, 'en', 'name', 'China Institute of Geological Environmental Monitoring'),
(53575, 44889, 'zh', 'name', 'äø­å›½åœ°č“ØēŽÆå¢ƒē›‘ęµ‹é™¢'),
(53576, 44890, 'no_lang_code', 'name', 'EcoMetrix Africa'),
(53577, 44891, 'en', 'name', 'Higher and Technical Education Department'),
(53578, 44892, 'en', 'name', 'Azrieli College of Engineering Jerusalem'),
(53579, 44892, 'he', 'name', '×¢×–×Ø×™××œ×™-המכללה להנדהה ×™×Ø×•×©×œ×™×'),
(53580, 44893, 'en', 'name', 'Van Alen Institute'),
(53581, 44894, 'no_lang_code', 'name', 'Mimar Engineering Consultancy (Egypt)'),
(53582, 44895, 'no_lang_code', 'name', 'Evenflo (United States)'),
(53583, 44896, 'no_lang_code', 'name', 'Active Ethernet Passive Optical Networks Over Ī» MultipleXing (Canada)'),
(53584, 44897, 'ar', 'name', 'ŁˆŁƒŲ§Ł„Ų© Ų§Ł„Ł†Ł‡ŁˆŲ¶ بالصناعة و Ų§Ł„ŲŖŲ¬ŲÆŁŠŲÆ'),
(53585, 44897, 'en', 'name', 'Agency for the Promotion of Industry and Innovation'),
(53586, 44897, 'fr', 'name', 'Agence de Promotion de l’Industrie et de l''Innovation'),
(53587, 44898, 'ja', 'name', '三井物産'),
(53588, 44898, 'no_lang_code', 'name', 'Mitsui & Co (Japan)'),
(53589, 44899, 'de', 'name', 'Akademie der Polizei Hamburg'),
(53590, 44900, 'en', 'name', 'Community Care College'),
(53591, 44901, 'en', 'name', 'University College of Osteopathy'),
(53592, 44902, 'en', 'name', 'Stapledon Memorial Trust'),
(53593, 44903, 'en', 'name', 'Institute of Mineralogy'),
(53594, 44903, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ минералогии'),
(53595, 44904, 'no_lang_code', 'name', 'Baker Hughes (United States)'),
(53596, 44905, 'no_lang_code', 'name', 'Sekab (Sweden)'),
(53597, 44905, 'sv', 'name', 'Svensk Etanolkemi'),
(53598, 44906, 'en', 'name', 'Cold Climate Housing Research Center'),
(53599, 44907, 'en', 'name', 'Guizhou Academy of Sciences'),
(53600, 44907, 'zh', 'name', 'č“µå·žē§‘å­¦é™¢'),
(53601, 44908, 'en', 'name', 'African Minerals and Geosciences Centre'),
(53602, 44909, 'no_lang_code', 'name', 'Mir Technology Holdings (Turkey)'),
(53603, 44910, 'en', 'name', 'Headwaters Health Care Centre'),
(53604, 44911, 'no_lang_code', 'name', 'Climeon (Sweden)'),
(53605, 44912, 'en', 'name', 'State Duma'),
(53606, 44912, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Гу́ма'),
(53607, 44913, 'en', 'name', 'Tidepool'),
(53608, 44914, 'no_lang_code', 'name', 'WR Nyabeze & Associates (South Africa)'),
(53609, 44915, 'en', 'name', 'Southside Virginia Community College'),
(53610, 44916, 'de', 'name', 'Krebsliga Beider Basel'),
(53611, 44917, 'en', 'name', 'Tung Fang Design Institute'),
(53612, 44917, 'zh', 'name', 'ę±ę–¹čØ­čØˆå­øé™¢'),
(53613, 44918, 'no_lang_code', 'name', 'Cerberus Capital Management (United States)'),
(53614, 44919, 'en', 'name', 'Bexley Hall'),
(53615, 44920, 'en', 'name', 'Pitt Community College'),
(53616, 44921, 'en', 'name', 'Environmental Alert'),
(53617, 44922, 'en', 'name', 'Shiloh University'),
(53618, 44923, 'en', 'name', 'South African San Institute'),
(53619, 44924, 'de', 'name', 'PƤdagogische Hochschule Niederƶsterreich'),
(53620, 44925, 'en', 'name', 'Ethiopian Economic Association'),
(53621, 44926, 'en', 'name', 'DeVry College'),
(53622, 44927, 'en', 'name', 'Heartland Center for Occupational Safety and Health'),
(53623, 44928, 'no_lang_code', 'name', 'Omnia (South Africa)'),
(53624, 44929, 'en', 'name', 'National Bureau of Soil Survey and Land Use Planning'),
(53625, 44929, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą„ƒą¤¦ą¤¾ ą¤øą¤°ą„ą¤µą„‡ą¤•ą„ą¤·ą¤£ ą¤ą¤µą¤‚ ą¤­ą„‚ą¤®ą¤æ ą¤‰ą¤Ŗą¤Æą„‹ą¤— ą¤Øą¤æą¤Æą„‹ą¤œą¤Ø ą¤¬ą„ā€ą¤Æą„‚ą¤°ą„‹'),
(53626, 44930, 'es', 'name', 'Instituto Tecnologico de Orizaba'),
(53627, 44931, 'en', 'name', 'Southwestern Institute of Physics'),
(53628, 44931, 'zh', 'name', 'ę øå·„äøšč„æå—ē‰©ē†ē ”ē©¶é™¢'),
(53629, 44932, 'pt', 'name', 'Instituto Cuiabano de Educação'),
(53630, 44933, 'af', 'name', 'Suid-Afrikaanse Departement van Korrektiewe Dienste'),
(53631, 44933, 'en', 'name', 'Department of Correctional Services'),
(53632, 44934, 'no_lang_code', 'name', 'FLAME TAO Knoware (India)'),
(53633, 44935, 'en', 'name', 'Arkansas Autism Resource & Outreach Center'),
(53634, 44936, 'en', 'name', 'Ministry of Education, Science and Technology Development Center'),
(53635, 44936, 'zh', 'name', 'ę•™č‚²éƒØē§‘ęŠ€å‘å±•äø­åæƒ'),
(53636, 44937, 'en', 'name', 'Geological Survey of Alabama'),
(53637, 44938, 'fr', 'name', 'Agence de l''eau Adour-Garonne'),
(53638, 44939, 'en', 'name', 'Jawaharlal Nehru Tropical Botanic Garden and Research Institute'),
(53639, 44940, 'no_lang_code', 'name', 'CellGenix (Germany)'),
(53640, 44941, 'pl', 'name', 'Kaszubsko-Pomorska Szkoła Wyższa'),
(53641, 44942, 'en', 'name', 'West African Health Organisation'),
(53642, 44942, 'fr', 'name', 'Organisation Ouest Africaine de la SantƩ'),
(53643, 44943, 'no_lang_code', 'name', 'NIIT (India)'),
(53644, 44944, 'en', 'name', 'Korea Society'),
(53645, 44945, 'en', 'name', 'Yeshiva Derech Chaim'),
(53646, 44946, 'en', 'name', 'Uganda Episcopal Conference'),
(53647, 44947, 'en', 'name', 'Ecclesia College'),
(53648, 44948, 'en', 'name', 'Institute of Infection and Immunity'),
(53649, 44949, 'en', 'name', 'Virginia Highlands Community College'),
(53650, 44950, 'it', 'name', 'Accademia Nazionale dei Lincei'),
(53651, 44951, 'no_lang_code', 'name', 'Environement Quality International (Egypt)'),
(53652, 44952, 'en', 'name', 'Ternopil Institute for Social and Information Technologies'),
(53653, 44953, 'no_lang_code', 'name', 'Amdocs (France)'),
(53654, 44954, 'en', 'name', 'Northwestern Polytechnic University'),
(53655, 44955, 'de', 'name', 'Sächsisches Staatsministerium für Wissenschaft und Kunst'),
(53656, 44955, 'en', 'name', 'Saxon State Ministry for Science and the Arts'),
(53657, 44956, 'en', 'name', 'Department of Agricultural Sciences'),
(53658, 44957, 'hi', 'name', 'ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą„ą¤ø इंऔिया ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(53659, 44957, 'no_lang_code', 'name', 'Engineers India (India)'),
(53660, 44958, 'en', 'name', 'Laguna College of Art and Design'),
(53661, 44959, 'fr', 'name', 'MinistĆØre de l’Éducation Nationale et de l''Enseignement Technique'),
(53662, 44960, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Art et de Design Tours-Angers-Le Mans'),
(53663, 44961, 'en', 'name', 'Korean National Police Agency'),
(53664, 44961, 'ko', 'name', '경찰청'),
(53665, 44962, 'en', 'name', 'Shamnur Shivashankarappa Institute of Medical Sciences & Research Centre'),
(53666, 44962, 'kn', 'name', 'ಶಾಮನೂರು ą²¶ą²æą²µą²¶ą²‚ą²•ą²°ą²Ŗą³ą²Ŗ ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ಸಂಶೋದನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(53667, 44963, 'en', 'name', 'Ministry of Health and the Fight against AIDS'),
(53668, 44963, 'fr', 'name', 'Ministère de la Santé et de la Lutte contre le sida'),
(53669, 44964, 'en', 'name', 'National Library and Archives of QuƩbec'),
(53670, 44964, 'fr', 'name', 'Bibliothèque et Archives nationales du Québec'),
(53671, 44965, 'no_lang_code', 'name', 'Helsinn Therapeutics (United States)'),
(53672, 44966, 'en', 'name', 'Nanjing Institute of Agricultural Mechanization'),
(53673, 44966, 'zh', 'name', 'å†œäøšéƒØå—äŗ¬å†œäøšęœŗę¢°åŒ–ē ”ē©¶ę‰€'),
(53674, 44967, 'en', 'name', 'Riga Building College'),
(53675, 44967, 'lv', 'name', 'Rīgas Celtniecības koledža'),
(53676, 44968, 'en', 'name', 'Tertiary Education Commission'),
(53677, 44969, 'en', 'name', 'Pennsylvania Public Utility Commission'),
(53678, 44970, 'no_lang_code', 'name', 'Exeger Sweden (Sweden)'),
(53679, 44971, 'no_lang_code', 'name', 'Eni (Kazakhstan)'),
(53680, 44972, 'en', 'name', 'Pontifical John Paul II Institute for Studies on Marriage and Family'),
(53681, 44973, 'en', 'name', 'Virginia Tech Services'),
(53682, 44974, 'en', 'name', 'Atomic Energy Regulatory Board'),
(53683, 44975, 'en', 'name', 'School of Administration in Bielsko-Biala'),
(53684, 44975, 'pl', 'name', 'Wyższa Szkoła Administracji w Bielsku-Białej'),
(53685, 44976, 'no_lang_code', 'name', 'Natco Pharma (India)'),
(53686, 44977, 'en', 'name', 'National School of Leadership'),
(53687, 44978, 'en', 'name', 'Institute of Physiologically Active Compounds'),
(53688, 44978, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологически активных веществ'),
(53689, 44979, 'en', 'name', 'Guyana School of Agriculture'),
(53690, 44980, 'en', 'name', 'Americans for Medical Progress'),
(53691, 44981, 'pl', 'name', 'Toruńska Wyższa Szkoła Przedsiębiorczości'),
(53692, 44982, 'en', 'name', 'Reserve Bank of New Zealand'),
(53693, 44983, 'en', 'name', 'Namibia Institute of Pathology'),
(53694, 44984, 'en', 'name', 'Northern Lithuania College'),
(53695, 44984, 'lt', 'name', 'Šiaurės Lietuvos kolegija'),
(53696, 44985, 'en', 'name', 'New Mexico Junior College'),
(53697, 44986, 'en', 'name', 'Food, Agriculture and Natural Resources Policy Analysis Network'),
(53698, 44987, 'en', 'name', 'Sandhills Community College'),
(53699, 44988, 'en', 'name', 'Australian Water Recycling Centre of Excellence'),
(53700, 44989, 'no_lang_code', 'name', 'Sarost (Tunisia)'),
(53701, 44990, 'en', 'name', 'Lithuania Business University of Applied Science'),
(53702, 44990, 'lt', 'name', 'Lietuvos Verslo Kolegija'),
(53703, 44991, 'en', 'name', 'Cossatot Community College'),
(53704, 44992, 'en', 'name', 'Nanjing Institute of Environmental Sciences'),
(53705, 44992, 'zh', 'name', 'ēŽÆå¢ƒäæęŠ¤éƒØå—äŗ¬ēŽÆå¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(53706, 44993, 'en', 'name', 'Congressional Hunger Center'),
(53707, 44994, 'en', 'name', 'Dr Maliso Mphele Hospital'),
(53708, 44995, 'en', 'name', 'Yunnan Institute of Endemic Diseases Control and Prevention'),
(53709, 44995, 'zh', 'name', 'äŗ‘å—ēœåœ°ę–¹ē—…é˜²ę²»ē½‘'),
(53710, 44996, 'de', 'name', 'Christliche UniversitƤt Partium'),
(53711, 44996, 'en', 'name', 'Partium Christian University'),
(53712, 44996, 'hu', 'name', 'Partiumi KeresztƩny Egyetem'),
(53713, 44996, 'ro', 'name', 'Universitatea Creștină Partium'),
(53714, 44997, 'no_lang_code', 'name', 'Sinequa (France)'),
(53715, 44998, 'no_lang_code', 'name', 'United Space Alliance (USA)'),
(53716, 44999, 'en', 'name', 'BAIF Development Research Foundation'),
(53717, 45000, 'fr', 'name', 'INSEAD, Institut EuropƩen d''Administration des Affaires'),
(53718, 45001, 'no_lang_code', 'name', 'Naval Group (Ireland)'),
(53719, 45002, 'en', 'name', 'Hospital of Hebei Province'),
(53720, 45002, 'zh', 'name', 'ę²³åŒ—ēœäø­åŒ»é™¢'),
(53721, 45003, 'no_lang_code', 'name', 'CoMentis (United States)'),
(53722, 45004, 'en', 'name', 'Kanagawa Prefectural Police Department'),
(53723, 45004, 'ja', 'name', 'ē„žå„ˆå·ēœŒč­¦åÆŸęœ¬éƒØ'),
(53724, 45005, 'en', 'name', 'Colombo North Teaching Hospital'),
(53725, 45006, 'en', 'name', 'Nagano Prefectural Ueda Senior High School'),
(53726, 45006, 'ja', 'name', 'é•·é‡ŽēœŒäøŠē”°é«˜ē­‰å­¦ę ”'),
(53727, 45007, 'en', 'name', 'Osaka Municipal Miyakojima Technical High School'),
(53728, 45007, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹éƒ½å³¶å·„ę„­é«˜ē­‰å­¦ę ”'),
(53729, 45008, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ“ćƒ¼ć‚Øćƒ ć‚øćƒ¼'),
(53730, 45008, 'no_lang_code', 'name', 'BMG (Japan)'),
(53731, 45009, 'no_lang_code', 'name', 'Universal Products (United States)'),
(53732, 45010, 'en', 'name', 'Gere Foundation'),
(53733, 45011, 'no_lang_code', 'name', 'Weatherford (Switzerland)'),
(53734, 45012, 'no_lang_code', 'name', 'Dawn Research (United States)'),
(53735, 45013, 'en', 'name', 'Web Science Trust'),
(53736, 45014, 'fr', 'name', 'UniversitƩ Amadou HampatƩ Ba'),
(53737, 45015, 'en', 'name', 'International University in Germany'),
(53738, 45016, 'no_lang_code', 'name', 'KindHeart (United States)'),
(53739, 45017, 'en', 'name', 'Shizuoka Prefectural Numazu Technical High School'),
(53740, 45017, 'ja', 'name', 'é™å²”ēœŒē«‹ę²¼ę“„å·„ę„­é«˜ē­‰å­¦ę ”'),
(53741, 45018, 'en', 'name', 'Lambeth Palace Library'),
(53742, 45019, 'no_lang_code', 'name', 'Dornier (United States)'),
(53743, 45020, 'en', 'name', 'Africa Harvest Biotech Foundation International'),
(53744, 45021, 'en', 'name', 'Australian Society For Fish Biology'),
(53745, 45022, 'ja', 'name', 'ć„ć™ć‚žč‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(53746, 45022, 'no_lang_code', 'name', 'Isuzu Motors (Japan)'),
(53747, 45023, 'en', 'name', 'Chiba Prefectural Institute of Public Health'),
(53748, 45023, 'ja', 'name', 'åƒč‘‰ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(53749, 45024, 'pt', 'name', 'Centro Nacional de Monitoramento e Alertas de Desastres Naturais'),
(53750, 45025, 'en', 'name', 'Agency for Cultural Affairs'),
(53751, 45025, 'ja', 'name', 'ę–‡åŒ–åŗ'),
(53752, 45026, 'en', 'name', 'Australian Orthopaedic Association'),
(53753, 45027, 'no_lang_code', 'name', 'Merck (United Kingdom)'),
(53754, 45028, 'en', 'name', 'International Society for Developmental Origins of Health and Disease'),
(53755, 45029, 'no_lang_code', 'name', 'Texas High Energy Materials (United States)'),
(53756, 45030, 'no_lang_code', 'name', 'Symbio FCell (France)'),
(53757, 45031, 'en', 'name', 'Executive Office of Education'),
(53758, 45032, 'en', 'name', 'American School of Kuwait'),
(53759, 45033, 'en', 'name', 'Jon Peddie Research'),
(53760, 45034, 'no_lang_code', 'name', 'Achelios Therapeutics (United States)'),
(53761, 45035, 'en', 'name', 'College for All Texans Foundation'),
(53762, 45036, 'en', 'name', 'Center for Studies on Sustainable Luxury'),
(53763, 45036, 'es', 'name', 'Centro de Estudios para el Lujo Sustentable'),
(53764, 45037, 'no_lang_code', 'name', 'NIIGrafit'),
(53765, 45037, 'ru', 'name', 'ŠŠ˜Š˜Š³Ń€Š°Ń„ŠøŃ‚'),
(53766, 45038, 'pt', 'name', 'Sociedade Brasileira de Ortopedia e Traumatologia'),
(53767, 45039, 'no_lang_code', 'name', 'Atlas Scientific (United States)'),
(53768, 45040, 'en', 'name', 'Árni Magnússon Institute for Icelandic Studies'),
(53769, 45040, 'is', 'name', 'Stofnun Árna Magnússonar í íslenskum fræðum'),
(53770, 45041, 'en', 'name', 'Delta Greely School District'),
(53771, 45042, 'en', 'name', 'Department of Agriculture'),
(53772, 45043, 'ja', 'name', 'å¤Ŗé™½čŖ˜é›»ę Ŗå¼ä¼šē¤¾'),
(53773, 45043, 'no_lang_code', 'name', 'Taiyo Yuden (Japan)'),
(53774, 45044, 'no_lang_code', 'name', 'MicroDysis (United States)'),
(53775, 45045, 'en', 'name', 'Hiroshima Prefectural Police'),
(53776, 45045, 'ja', 'name', '広島県警察'),
(53777, 45046, 'id', 'name', 'Universitas Tabanan'),
(53778, 45047, 'no_lang_code', 'name', 'Apoplogic Pharmaceuticals (United States)'),
(53779, 45048, 'es', 'name', 'Ministerio de GanaderĆ­a Agricultura y Pesca'),
(53780, 45049, 'es', 'name', 'Universidad Privada del Estado de Morelos'),
(53781, 45050, 'en', 'name', 'Healthy Families of Clallam County'),
(53782, 45051, 'en', 'name', 'Bickley Day Hospital'),
(53783, 45052, 'no_lang_code', 'name', 'Empire Technical Development (United States)'),
(53784, 45053, 'en', 'name', 'Pitt County Development Commission'),
(53785, 45054, 'en', 'name', 'Noma Institute Of Educational Reserch'),
(53786, 45054, 'ja', 'name', 'é‡Žé–“ę•™č‚²ē ”ē©¶ę‰€'),
(53787, 45055, 'no_lang_code', 'name', 'Cim Systems (United States)'),
(53788, 45056, 'no_lang_code', 'name', 'Mantra Energy Alternatives (Canada)'),
(53789, 45057, 'en', 'name', 'Japan University of Health Sciences'),
(53790, 45057, 'ja', 'name', 'ę—„ęœ¬äæå„åŒ»ē™‚å¤§å­¦'),
(53791, 45058, 'en', 'name', 'Kansai Women''s College'),
(53792, 45058, 'ja', 'name', 'é–¢č„æå„³å­ēŸ­ęœŸå¤§å­¦'),
(53793, 45059, 'en', 'name', 'Yokohama College of Art and Design'),
(53794, 45059, 'ja', 'name', 'ęØŖęµœē¾Žč”“ēŸ­ęœŸå¤§å­¦'),
(53795, 45060, 'id', 'name', 'Universitas Sutomo'),
(53796, 45061, 'en', 'name', 'Fatih University Medical Faculty Hospital'),
(53797, 45061, 'tr', 'name', 'Fatih Üniversitesi Tıp Fakültesi Hastanesi'),
(53798, 45062, 'no_lang_code', 'name', 'Siemens (Brazil)'),
(53799, 45063, 'en', 'name', 'Marine Bio-Technologies Center of Innovation'),
(53800, 45064, 'en', 'name', 'Advocado Press'),
(53801, 45065, 'en', 'name', 'Huzhou Vocational and Technical College'),
(53802, 45066, 'en', 'name', 'National Institute of Technology, Tokyo College'),
(53803, 45066, 'ja', 'name', 'å›½ē«‹ę±äŗ¬å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(53804, 45067, 'no_lang_code', 'name', 'Sensient Technologies (Germany)'),
(53805, 45068, 'en', 'name', 'University of Jazeera'),
(53806, 45069, 'no_lang_code', 'name', 'Agile EndoSurgery (United States)'),
(53807, 45070, 'no_lang_code', 'name', 'Solmax (Canada)'),
(53808, 45071, 'no_lang_code', 'name', 'Trelleborg (Germany)'),
(53809, 45072, 'no_lang_code', 'name', 'Whirlpool (Germany)'),
(53810, 45073, 'no_lang_code', 'name', 'ON Semiconductor (United Kingdom)'),
(53811, 45074, 'en', 'name', 'Fort Mac LRA'),
(53812, 45075, 'en', 'name', 'Research Station of the Russian Academy of Sciences in Bishkek'),
(53813, 45075, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š°Ń ŃŃ‚Š°Š½Ń†ŠøŃ Российской акаГемии наук в Š‘ŠøŃˆŠŗŠµŠŗŠµ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(53814, 45076, 'en', 'name', 'Nara National Museum'),
(53815, 45076, 'ja', 'name', 'å„ˆč‰Æå›½ē«‹åšē‰©é¤Ø'),
(53816, 45077, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę¤æęœ¬ćƒć‚Øć‚¤ćƒ³'),
(53817, 45077, 'no_lang_code', 'name', 'Tsubaki (Germany)'),
(53818, 45078, 'no_lang_code', 'name', 'Advanced Research Corporation (United States)'),
(53819, 45079, 'en', 'name', 'Michigan Institute for Educational Management'),
(53820, 45080, 'no_lang_code', 'name', 'CryptoExperts (France)'),
(53821, 45081, 'no_lang_code', 'name', 'Universal Scientific Industrial (China)'),
(53822, 45081, 'zh', 'name', 'ēŽÆę—­ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(53823, 45082, 'en', 'name', 'North Carolina Soybean Association'),
(53824, 45083, 'en', 'name', 'Allegheny County Library Association'),
(53825, 45084, 'no_lang_code', 'name', 'eIQ Energy (United States)'),
(53826, 45085, 'no_lang_code', 'name', 'Ohmx (United States)'),
(53827, 45086, 'en', 'name', 'Dambari Wildlife Trust'),
(53828, 45087, 'en', 'name', 'Junshin Gakuen University'),
(53829, 45087, 'ja', 'name', 'ē“”ēœŸå­¦åœ’å¤§å­¦'),
(53830, 45088, 'no_lang_code', 'name', 'Sandvik (Austria)'),
(53831, 45089, 'en', 'name', 'Search Institute'),
(53832, 45090, 'en', 'name', 'Korea Foundation Of Nuclear Safety'),
(53833, 45090, 'ko', 'name', 'ķ•œźµ­ģ›ģžė „ģ•ˆģ „ģž¬ė‹Ø'),
(53834, 45091, 'no_lang_code', 'name', 'Sensor Creations (United States)'),
(53835, 45092, 'en', 'name', 'Sendai Science Museum'),
(53836, 45092, 'ja', 'name', 'ä»™å°åø‚ē§‘å­¦é¤Ø'),
(53837, 45093, 'en', 'name', 'Aichi Prefectural Nisshin West High School'),
(53838, 45093, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ę—„é€²č„æé«˜ē­‰å­¦ę ”'),
(53839, 45094, 'en', 'name', 'Internationals Network For Public Schools'),
(53840, 45095, 'no_lang_code', 'name', 'Monsanto (Brazil)'),
(53841, 45096, 'de', 'name', 'Deutsches Textilforschungszentrum Nord-West'),
(53842, 45097, 'en', 'name', 'Association of Management Consulting Firms'),
(53843, 45098, 'es', 'name', 'Universidad Obrera de Mexico'),
(53844, 45099, 'no_lang_code', 'name', 'Rogers Sciences (United States)'),
(53845, 45100, 'no_lang_code', 'name', 'Lear (Germany)'),
(53846, 45101, 'no_lang_code', 'name', 'Pirelli (Germany)'),
(53847, 45102, 'en', 'name', 'Yamagata Prefectural Education Institute'),
(53848, 45102, 'ja', 'name', 'å±±å½¢ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(53849, 45103, 'ja', 'name', 'å¤§é˜Ŗē‰©ē™‚å¤§å­¦'),
(53850, 45103, 'no_lang_code', 'name', 'Osaka Butsuryo University'),
(53851, 45104, 'no_lang_code', 'name', 'Volvo (Germany)'),
(53852, 45105, 'en', 'name', 'Saudi Center for Theoretical Physics'),
(53853, 45106, 'en', 'name', 'Schiller International University'),
(53854, 45107, 'en', 'name', 'Japan Spaceguard Association'),
(53855, 45107, 'ja', 'name', 'ę—„ęœ¬ć‚¹ćƒšćƒ¼ć‚¹ć‚¬ćƒ¼ćƒ‰å”ä¼š'),
(53856, 45108, 'no_lang_code', 'name', 'Eastman Chemical Company (Germany)'),
(53857, 45109, 'en', 'name', 'Road Map Project'),
(53858, 45110, 'en', 'name', 'National Yang Ming University Hospital'),
(53859, 45110, 'zh', 'name', 'å›½ē«‹é˜³ę˜Žå¤§å­¦é™„č®¾åŒ»é™¢'),
(53860, 45111, 'pt', 'name', 'Hospital Padre AmƩrico'),
(53861, 45112, 'en', 'name', 'Cw Private Hospital'),
(53862, 45113, 'no_lang_code', 'name', 'Rheomics (United States)'),
(53863, 45114, 'no_lang_code', 'name', 'Sironix Renewables (United States)'),
(53864, 45115, 'en', 'name', 'Federal Employee Education and Assistance Fund'),
(53865, 45116, 'en', 'name', 'Swedish Centre for Architecture and Design'),
(53866, 45116, 'sv', 'name', 'Arkitektur- och designcentrum'),
(53867, 45117, 'no_lang_code', 'name', 'Clinical Investigation Support (Austria)'),
(53868, 45118, 'en', 'name', 'Foundation Osaka City Museum Association'),
(53869, 45118, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗåø‚åšē‰©é¤Øå”ä¼š'),
(53870, 45119, 'en', 'name', 'Gateway Health Institute'),
(53871, 45120, 'en', 'name', 'Chester County Library System'),
(53872, 45121, 'no_lang_code', 'name', 'Ɩssur (Germany)'),
(53873, 45122, 'no_lang_code', 'name', 'Umlaut Software (United States)'),
(53874, 45123, 'en', 'name', 'University of Science, Art and Technology'),
(53875, 45124, 'en', 'name', 'Library of Michigan Foundation'),
(53876, 45125, 'no_lang_code', 'name', 'Maxim Integrated (United Kingdom)'),
(53877, 45126, 'it', 'name', 'Ospedale Santa Maria di Loreto Nuovo'),
(53878, 45127, 'es', 'name', 'Wikimedia Chile'),
(53879, 45128, 'pt', 'name', 'Empresa de Pesquisa AgropecuÔria e Extensão Rural de Santa Catarina'),
(53880, 45129, 'es', 'name', 'Universidad Autónoma Monterrey'),
(53881, 45130, 'en', 'name', 'Technological University Panglong'),
(53882, 45130, 'my', 'name', 'į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(į€•į€„į€ŗį€œį€Æį€¶)'),
(53883, 45131, 'no_lang_code', 'name', 'EnergyAustralia (Australia)'),
(53884, 45132, 'en', 'name', 'Belize Zoo'),
(53885, 45133, 'en', 'name', 'LearnLaunch Institute'),
(53886, 45134, 'no_lang_code', 'name', 'Danfoss (China)'),
(53887, 45135, 'no_lang_code', 'name', 'Nitride Crystals (United States)'),
(53888, 45136, 'no_lang_code', 'name', 'Renishaw (Ireland)'),
(53889, 45137, 'pt', 'name', 'Secretaria de Ciência, Tecnologia e Inovação'),
(53890, 45138, 'en', 'name', 'Virginia Assistive Technology System'),
(53891, 45139, 'en', 'name', 'National Institute of Technology, Ariake College'),
(53892, 45139, 'ja', 'name', 'ęœ‰ę˜Žå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(53893, 45140, 'de', 'name', 'Fraunhofer-Institut für Entwurfstechnik Mechatronik'),
(53894, 45140, 'en', 'name', 'Fraunhofer Institute for Mechatronic Systems Design'),
(53895, 45141, 'de', 'name', 'Theodor Fliedner Stiftung'),
(53896, 45141, 'en', 'name', 'Theodor Fliedner Foundation'),
(53897, 45142, 'en', 'name', 'Family Online Safety Institute'),
(53898, 45143, 'en', 'name', 'Lincoln Trail Area Development District'),
(53899, 45144, 'no_lang_code', 'name', 'Reaction35 (United States)'),
(53900, 45145, 'en', 'name', 'Kobe City Fire Department'),
(53901, 45145, 'ja', 'name', 'ē„žęˆøåø‚ę¶ˆé˜²å±€'),
(53902, 45146, 'no_lang_code', 'name', 'Johnson & Johnson (Switzerland)'),
(53903, 45147, 'id', 'name', 'Wikimedia Indonesia'),
(53904, 45148, 'en', 'name', 'San Francisco Fire Department'),
(53905, 45149, 'en', 'name', 'Blanchette Rockefeller Neurosciences Institute'),
(53906, 45150, 'en', 'name', 'Cardiac Society of Australia and New Zealand'),
(53907, 45151, 'no_lang_code', 'name', 'Richtek Technology (Taiwan)'),
(53908, 45151, 'zh', 'name', 'ē«‹éŒ”ē§‘ęŠ€'),
(53909, 45152, 'no_lang_code', 'name', 'Institute For Smart Monitoring (United States)'),
(53910, 45153, 'en', 'name', 'Aichi Prefectural Kasugai Higashi High School'),
(53911, 45153, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ę˜„ę—„äŗ•ę±é«˜ē­‰å­¦ę ”'),
(53912, 45154, 'en', 'name', 'Jung Tao School of Classical Chinese Medicine'),
(53913, 45155, 'no_lang_code', 'name', 'GroundMetrics (United States)'),
(53914, 45156, 'no_lang_code', 'name', 'Illinois Tool Works (Australia)'),
(53915, 45157, 'en', 'name', 'Bamenda University of Science and Technology'),
(53916, 45158, 'no_lang_code', 'name', 'BorgWarner (Brazil)'),
(53917, 45159, 'en', 'name', 'Basque Center for Materials, Applications and Nanostructures'),
(53918, 45160, 'de', 'name', 'Augenklinik Heidelberg'),
(53919, 45161, 'no_lang_code', 'name', 'Mondelēz International (United States)'),
(53920, 45162, 'en', 'name', 'London Cancer'),
(53921, 45163, 'pl', 'name', 'Niepubliczna Wyższa Szkoła Medyczna'),
(53922, 45164, 'no_lang_code', 'name', 'Sciaky (United States)'),
(53923, 45165, 'en', 'name', 'Research Institute for Innovation and Technology'),
(53924, 45166, 'no_lang_code', 'name', 'Unilever (Philippines)'),
(53925, 45167, 'en', 'name', 'World Rehabilitation Fund'),
(53926, 45168, 'no_lang_code', 'name', 'Winterthur Gas & Diesel (Switzerland)'),
(53927, 45169, 'fr', 'name', 'Centre d''Ɖchographie de la Femme et du Fœtus'),
(53928, 45170, 'en', 'name', 'Colorado Department of Higher Education'),
(53929, 45171, 'en', 'name', 'ICCO'),
(53930, 45172, 'en', 'name', 'Shogen Junior College'),
(53931, 45172, 'ja', 'name', '正眼短期大学'),
(53932, 45173, 'en', 'name', 'Freshwater Habitats Trust'),
(53933, 45174, 'en', 'name', 'Saitama Prefectural Kumagaya Girls High School'),
(53934, 45174, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ē†Šč°·å„³å­é«˜ē­‰å­¦ę ”'),
(53935, 45175, 'no_lang_code', 'name', 'First Sensor (Germany)'),
(53936, 45176, 'no_lang_code', 'name', 'Avid (Israel)'),
(53937, 45177, 'id', 'name', 'Rumah Sakit Dokter Soetomo'),
(53938, 45178, 'en', 'name', 'Sunnyvale Public Library'),
(53939, 45179, 'en', 'name', 'Institute of Astrophysics and Space Sciences'),
(53940, 45179, 'pt', 'name', 'Instituto de Astrofísica e Ciências do Espaço'),
(53941, 45180, 'en', 'name', 'Swedish Gas Technology Centre'),
(53942, 45180, 'sv', 'name', 'Svenskt Gastekniskt Center'),
(53943, 45181, 'en', 'name', 'Kampala International University'),
(53944, 45182, 'en', 'name', 'International School of Europe'),
(53945, 45183, 'no_lang_code', 'name', 'Ingersoll Rand (United States)'),
(53946, 45184, 'en', 'name', 'Institute of Public Enterprise'),
(53947, 45185, 'en', 'name', 'Kariya City Board of Education'),
(53948, 45185, 'ja', 'name', 'åˆˆč°·åø‚ę•™č‚²å§”å“”ä¼šå§”å“”åē°æ'),
(53949, 45186, 'en', 'name', 'Ministry of Information and Communications'),
(53950, 45186, 'vi', 'name', 'Bį»™ ThĆ“ng tin vĆ  Truyền thĆ“ng'),
(53951, 45187, 'en', 'name', 'Kumamoto Prefectural Minamata Technical High School'),
(53952, 45187, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹ę°“äæ£å·„ę„­é«˜ē­‰å­¦ę ”'),
(53953, 45188, 'en', 'name', 'Dover Town Library'),
(53954, 45189, 'de', 'name', 'Klinik Preetz'),
(53955, 45190, 'no_lang_code', 'name', 'Oracle (Israel)'),
(53956, 45191, 'no_lang_code', 'name', 'Assa Abloy (Germany)'),
(53957, 45192, 'en', 'name', 'Mountain Home School District'),
(53958, 45193, 'no_lang_code', 'name', 'Amdocs (Germany)'),
(53959, 45194, 'en', 'name', 'Murmansk Regional Clinical Hospital'),
(53960, 45194, 'ru', 'name', 'ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚ŃŒ Š±Š¾Š»ŃŒŠ½ŠøŃ†Šµ P.A.Bayandina'),
(53961, 45195, 'no_lang_code', 'name', 'Moog (Germany)'),
(53962, 45196, 'en', 'name', 'Institute of Philosophy'),
(53963, 45196, 'zh', 'name', '哲学研究所'),
(53964, 45197, 'no_lang_code', 'name', 'MRI Robotics (United States)'),
(53965, 45198, 'en', 'name', 'Tianjin University of Sport'),
(53966, 45198, 'zh', 'name', '天擄体育学院'),
(53967, 45199, 'en', 'name', 'National Institute for Educational Policy Research'),
(53968, 45199, 'ja', 'name', '国立教育政策研究所'),
(53969, 45200, 'en', 'name', 'Kihara Institute for Biological Research'),
(53970, 45200, 'ja', 'name', 'ęØŖęµœåø‚ē«‹å¤§å­¦ęœØåŽŸē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(53971, 45201, 'bn', 'name', 'মৌলানা আবুল কালাম ą¦†ą¦œą¦¾ą¦¦ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿą§ā€Œ অফ ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦øą§ą¦Ÿą¦¾ą¦”ą¦æą¦œą§ā€Œ'),
(53972, 45201, 'en', 'name', 'Maulana Abul Kalam Azad Institute of Asian Studies'),
(53973, 45202, 'en', 'name', 'Westfield Memorial Library'),
(53974, 45203, 'en', 'name', 'Kyushu National Museum'),
(53975, 45203, 'ja', 'name', 'ä¹å·žå›½ē«‹åšē‰©é¤Ø'),
(53976, 45204, 'no_lang_code', 'name', 'Emergent BioSolutions (United Kingdom)'),
(53977, 45205, 'no_lang_code', 'name', 'GEO-HAZ Consulting (United States)'),
(53978, 45206, 'en', 'name', 'Lion Foundation for Dental Health'),
(53979, 45206, 'ja', 'name', 'ćƒ©ć‚¤ć‚Ŗćƒ³ę­Æē§‘č”›ē”Ÿē ”ē©¶ę‰€'),
(53980, 45207, 'no_lang_code', 'name', 'InvestorNet-Gate2Growth (Denmark)'),
(53981, 45208, 'en', 'name', 'Rabindranath Tagore Medical College'),
(53982, 45209, 'no_lang_code', 'name', 'Visuray (Malta)'),
(53983, 45210, 'no_lang_code', 'name', 'Mycofarm (Singapore)'),
(53984, 45211, 'en', 'name', 'Kyushu Economic Research Center'),
(53985, 45211, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ä¹å·žēµŒęøˆčŖæęŸ»å”ä¼š'),
(53986, 45212, 'en', 'name', 'Institute for Stem Cell Biology and Regenerative Medicine'),
(53987, 45213, 'en', 'name', 'Yakama Nation Tribal Council'),
(53988, 45214, 'de', 'name', 'Gesundheitszentrum Bitterfeld'),
(53989, 45215, 'no_lang_code', 'name', 'Meloche (Canada)'),
(53990, 45216, 'en', 'name', 'Fukuoka Women''s Junior College'),
(53991, 45216, 'ja', 'name', 'ē¦å²”å„³å­ēŸ­ęœŸå¤§å­¦'),
(53992, 45217, 'en', 'name', 'Monmouth County Library'),
(53993, 45218, 'en', 'name', 'Horsham Land Redevelopment Authority'),
(53994, 45219, 'en', 'name', 'British Toxicology Society'),
(53995, 45220, 'ja', 'name', 'ä»™å°åø‚åšē‰©é¤Ø'),
(53996, 45220, 'no_lang_code', 'name', 'Sendai City Museum'),
(53997, 45221, 'en', 'name', 'NBIA Disorders Association'),
(53998, 45222, 'en', 'name', 'National Institute of Population and Social Security Research'),
(53999, 45222, 'ja', 'name', 'å›½ē«‹ē¤¾ä¼šäæéšœćƒ»äŗŗå£å•é”Œē ”ē©¶ę‰€'),
(54000, 45223, 'no_lang_code', 'name', 'Gemalto (Germany)'),
(54001, 45224, 'no_lang_code', 'name', 'Atmospheric Plasma Solutions (United States)'),
(54002, 45225, 'en', 'name', 'Ningbo Dahongying University'),
(54003, 45225, 'zh', 'name', '宁波大红鹰学院'),
(54004, 45226, 'no_lang_code', 'name', 'Solid Material Solutions (United States)'),
(54005, 45227, 'en', 'name', 'Museum of Fine Arts, Gifu'),
(54006, 45227, 'ja', 'name', 'å²é˜œēœŒē¾Žč”“é¤Ø'),
(54007, 45228, 'no_lang_code', 'name', 'OCT Medical Imaging (United States)'),
(54008, 45229, 'no_lang_code', 'name', 'Gnowit (Canada)'),
(54009, 45230, 'en', 'name', 'Alliance for Excellent Education'),
(54010, 45231, 'en', 'name', 'Paleological Association of Japan'),
(54011, 45231, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤ä»£å­¦å”ä¼š'),
(54012, 45232, 'de', 'name', 'Sana Kliniken Duisburg'),
(54013, 45233, 'no_lang_code', 'name', 'Johnson & Johnson (Ireland)'),
(54014, 45234, 'en', 'name', 'Himeji High School'),
(54015, 45234, 'ja', 'name', 'å§«č·Æåø‚ē«‹å§«č·Æé«˜ē­‰å­¦ę ”'),
(54016, 45235, 'no_lang_code', 'name', 'Thomson Reuters (United Kingdom)'),
(54017, 45236, 'en', 'name', 'National Institute of Technology, Yuge College'),
(54018, 45236, 'ja', 'name', 'å¼“å‰Šå•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(54019, 45237, 'en', 'name', 'Chinese Preventive Medicine Association'),
(54020, 45238, 'en', 'name', 'National Math and Science Initiative'),
(54021, 45239, 'en', 'name', 'Miyagi Prefecture Ishinomaki Technical High School'),
(54022, 45239, 'ja', 'name', 'å®®åŸŽēœŒēŸ³å·»å·„ę„­é«˜ē­‰å­¦ę ”'),
(54023, 45240, 'en', 'name', 'St Michael’s Hospital'),
(54024, 45241, 'en', 'name', 'Bertha Voyer Memorial Library'),
(54025, 45242, 'no_lang_code', 'name', 'Cernostics (United States)'),
(54026, 45243, 'en', 'name', 'Bossier Parish School Board'),
(54027, 45244, 'no_lang_code', 'name', 'Lhoist (Germany)'),
(54028, 45245, 'en', 'name', 'Institute for Educational Leadership'),
(54029, 45246, 'pt', 'name', 'Instituto de Ensino e Pesquisa Santa Casa'),
(54030, 45247, 'en', 'name', 'Coconut Research Institute'),
(54031, 45248, 'no_lang_code', 'name', 'Royal HaskoningDHV (United Kingdom)'),
(54032, 45249, 'en', 'name', 'Fucape Business School'),
(54033, 45250, 'ca', 'name', 'Societat Catalana d''Oftalmologia'),
(54034, 45251, 'en', 'name', 'Nagasaki Prefectural Shimabara High School'),
(54035, 45251, 'ja', 'name', 'é•·å“ŽēœŒē«‹å³¶åŽŸé«˜ē­‰å­¦ę ”'),
(54036, 45252, 'es', 'name', 'Centro de Investigación Biomédica en Red de Salud Mental'),
(54037, 45253, 'en', 'name', 'Hyogo Prefectural Police');
INSERT INTO `ror_settings` VALUES
(54038, 45253, 'ja', 'name', 'å…µåŗ«ēœŒč­¦åÆŸ'),
(54039, 45254, 'en', 'name', 'Missouri Valley Cancer Consortium'),
(54040, 45255, 'en', 'name', 'Faurecia (Germany)'),
(54041, 45256, 'en', 'name', 'Newcastle University Medicine Malaysia'),
(54042, 45257, 'no_lang_code', 'name', 'E-Spectrum Technologies (United States)'),
(54043, 45258, 'en', 'name', 'Wisconsin Economic Development Corporation'),
(54044, 45259, 'en', 'name', 'Australian Diabetes Society'),
(54045, 45260, 'de', 'name', 'Klinik und Poliklinik für Hals-, Nasen-, Ohrenheilkunde'),
(54046, 45261, 'en', 'name', 'ACT Foundation'),
(54047, 45262, 'en', 'name', 'Gary Public Library'),
(54048, 45263, 'no_lang_code', 'name', 'Gentherm (United States)'),
(54049, 45264, 'de', 'name', 'Institut für Stadt- und Regionalforschung'),
(54050, 45264, 'en', 'name', 'Institute for Urban and Regional Research'),
(54051, 45265, 'en', 'name', 'South Carolina Department of Employment and Workforce'),
(54052, 45266, 'pt', 'name', 'Secretaria de Educação de Pernambuco'),
(54053, 45267, 'no_lang_code', 'name', 'Trelleborg (United Kingdom)'),
(54054, 45268, 'ko', 'name', 'ķ˜„ėŒ€ģ¹“ė“œ'),
(54055, 45268, 'no_lang_code', 'name', 'Hyundai Card (South Korea)'),
(54056, 45269, 'no_lang_code', 'name', 'Mera Pharmaceuticals (United states)'),
(54057, 45270, 'en', 'name', 'Lancaster Education Foundation'),
(54058, 45271, 'pt', 'name', 'Prefeitura Municipal de Barra Mansa'),
(54059, 45272, 'no_lang_code', 'name', 'Recif Technologies (France)'),
(54060, 45273, 'en', 'name', 'Long Beach Public Library'),
(54061, 45274, 'en', 'name', 'National Environmental Agency'),
(54062, 45274, 'ka', 'name', 'įƒ’įƒįƒ įƒ”įƒ›įƒįƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒ”įƒįƒįƒ’įƒ”įƒœįƒ¢įƒ'),
(54063, 45275, 'en', 'name', 'Glendale Public Library'),
(54064, 45276, 'no_lang_code', 'name', 'Liebherr (Austria)'),
(54065, 45277, 'no_lang_code', 'name', 'Nanium (Portugal)'),
(54066, 45278, 'no_lang_code', 'name', 'Rostec (Russia)'),
(54067, 45278, 'ru', 'name', 'Ростех'),
(54068, 45279, 'en', 'name', 'Nehru Foundation for Development'),
(54069, 45280, 'en', 'name', 'Schiller International University'),
(54070, 45281, 'en', 'name', 'Chronic Disease Prevention Alliance of Canada'),
(54071, 45281, 'fr', 'name', 'Alliance pour le PrƩvention des maladies Chroniques au Canada'),
(54072, 45282, 'en', 'name', 'Funders Concerned About AIDS'),
(54073, 45283, 'es', 'name', 'Centro para la Investigación en Sistemas Sostenibles de Producción Agropecuaria'),
(54074, 45284, 'en', 'name', 'Maple Street School'),
(54075, 45285, 'en', 'name', 'National Research Institute of Fire and Disaster'),
(54076, 45285, 'ja', 'name', '消防庁 消防大学栔 ę¶ˆé˜²ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(54077, 45286, 'no_lang_code', 'name', 'Standard Imaging (United States)'),
(54078, 45287, 'pt', 'name', 'Hospital do Servidor PĆŗblico Municipal'),
(54079, 45288, 'en', 'name', 'Shandong Geological Sciences Institute'),
(54080, 45288, 'zh', 'name', 'å±±äøœēœåœ°č“Øē§‘å­¦å®žéŖŒē ”ē©¶é™¢'),
(54081, 45289, 'en', 'name', 'Yoshida Biological Laboratry'),
(54082, 45289, 'ja', 'name', 'å‰ē”°ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(54083, 45290, 'fr', 'name', 'CƩgep de Baie-Comeau'),
(54084, 45291, 'no_lang_code', 'name', 'FDC Composites (Canada)'),
(54085, 45292, 'no_lang_code', 'name', 'Flash Bainite (United States)'),
(54086, 45293, 'no_lang_code', 'name', 'DfR Solutions (United States)'),
(54087, 45294, 'no_lang_code', 'name', 'Safran (Singapore)'),
(54088, 45295, 'pt', 'name', 'Governo do Estado de Alagoas'),
(54089, 45296, 'en', 'name', 'National Institute of Technology, Maizuru College'),
(54090, 45296, 'ja', 'name', 'čˆžé¶“å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(54091, 45297, 'en', 'name', 'Victorian Multicultural Commission'),
(54092, 45298, 'pt', 'name', 'Associação de Leitura do Brasil'),
(54093, 45299, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŸćƒ„ćƒˆćƒØ'),
(54094, 45299, 'no_lang_code', 'name', 'Mitutoyo Corporation (Japan)'),
(54095, 45300, 'no_lang_code', 'name', 'Universal Environmental Technologies (United States)'),
(54096, 45301, 'en', 'name', 'Southern Africa Association for the Advancement of Science'),
(54097, 45302, 'en', 'name', 'British Educational Research Association'),
(54098, 45303, 'no_lang_code', 'name', 'MPDV Mikrolab (Germany)'),
(54099, 45304, 'en', 'name', 'Tweed Shire Council'),
(54100, 45305, 'en', 'name', 'Kanagawa Prefectural Kanazawa-Bunko Museum'),
(54101, 45305, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹é‡‘ę²¢ę–‡åŗ«'),
(54102, 45306, 'no_lang_code', 'name', 'Virtual Power Solutions (Portugal)'),
(54103, 45307, 'en', 'name', 'Gaborone University College Of Law and Professional Studies'),
(54104, 45308, 'no_lang_code', 'name', 'Hexagon (Israel)'),
(54105, 45309, 'no_lang_code', 'name', 'STMicroelectronics (Netherlands)'),
(54106, 45310, 'en', 'name', 'Lotus Innovative Sciences'),
(54107, 45311, 'en', 'name', 'Institute of Applied Science and Intelligent Systems'),
(54108, 45311, 'it', 'name', 'Istituto di Scienze Applicate e Sistemi Intelligenti "Eduardo Caianiello"'),
(54109, 45312, 'en', 'name', 'Saitama Prefectural Omiya Chuo Senior High School'),
(54110, 45312, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹å¤§å®®äø­å¤®é«˜ē­‰å­¦ę ”'),
(54111, 45313, 'en', 'name', 'Fujiidera Technical High School'),
(54112, 45313, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹č—¤äŗ•åÆŗå·„ē§‘é«˜ē­‰å­¦ę ”'),
(54113, 45314, 'no_lang_code', 'name', 'Kaneka (United States)'),
(54114, 45315, 'en', 'name', 'Florida Association of District School Superintendents'),
(54115, 45316, 'en', 'name', 'Arthritis Society'),
(54116, 45317, 'en', 'name', 'Gangoji Institute for Research of Cultural Property'),
(54117, 45317, 'ja', 'name', 'å…ƒčˆˆåÆŗę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(54118, 45318, 'en', 'name', 'Marshalltown Community College'),
(54119, 45319, 'en', 'name', 'Kanagawa Institute of Technology Atsugi Children''s Science Museum'),
(54120, 45319, 'ja', 'name', 'åŽšęœØåø‚å­ć©ć‚‚ē§‘å­¦é¤Ø'),
(54121, 45320, 'en', 'name', 'Mie Prefecture Board of Education'),
(54122, 45320, 'ja', 'name', 'ę•™č‚²ć®äø‰é‡ēœŒå§”å“”ä¼š'),
(54123, 45321, 'no_lang_code', 'name', 'Deutsche Telekom (Austria)'),
(54124, 45322, 'no_lang_code', 'name', 'Asus (Taiwan)'),
(54125, 45322, 'zh', 'name', 'čÆē¢©é›»č…¦č‚”ä»½ęœ‰é™å…¬åø'),
(54126, 45323, 'pt', 'name', 'Associação Brasileira de Engenharia de Produção'),
(54127, 45324, 'en', 'name', 'Oita Prefectural Yufu Support School'),
(54128, 45324, 'ja', 'name', 'å¤§åˆ†ēœŒē”±åøƒé™¢ę”Æę“å­¦ę ”'),
(54129, 45325, 'en', 'name', 'International Council Of Aids Service Organizations'),
(54130, 45326, 'no_lang_code', 'name', 'Vivienda y Suelo de Euskadi (Spain)'),
(54131, 45327, 'no_lang_code', 'name', 'UNIFAVIP'),
(54132, 45328, 'en', 'name', 'Hiroshima Children''s Museum'),
(54133, 45329, 'en', 'name', 'Environment and Public Health Organisation'),
(54134, 45330, 'en', 'name', 'Mexican American Legal Defense and Educational Fund'),
(54135, 45331, 'en', 'name', 'Hokkaido Sapporo Kaisei High School'),
(54136, 45331, 'ja', 'name', 'åŒ—ęµ·é“ęœ­å¹Œé–‹ęˆé«˜ē­‰å­¦ę ”'),
(54137, 45332, 'en', 'name', 'Matsumoto Junior College'),
(54138, 45332, 'ja', 'name', 'ę¾ęœ¬ēŸ­ęœŸå¤§å­¦'),
(54139, 45333, 'pl', 'name', 'Wikimedia Polska'),
(54140, 45334, 'no_lang_code', 'name', 'Transtech Innovations (Canada)'),
(54141, 45335, 'no_lang_code', 'name', 'Freudenberg (United States)'),
(54142, 45336, 'no_lang_code', 'name', 'Industrial Microbes (United States)'),
(54143, 45337, 'en', 'name', 'Mansoura University Hospital'),
(54144, 45338, 'ja', 'name', 'ćƒ‡ć‚£ćƒ¼ć‚¢ć‚¤ć‚·ćƒ¼'),
(54145, 45338, 'no_lang_code', 'name', 'DIC (Japan)'),
(54146, 45339, 'en', 'name', 'American Urogynecologic Society'),
(54147, 45340, 'en', 'name', 'Regional Information Center for Science and Technology'),
(54148, 45340, 'fa', 'name', 'مرکز منطقه ای اطلاع Ų±Ų³Ų§Ł†ŪŒ Ų¹Ł„ŁˆŁ… و ŁŁ†Ų§ŁˆŲ±ŪŒ'),
(54149, 45341, 'no_lang_code', 'name', 'Amdocs (Israel)'),
(54150, 45342, 'en', 'name', 'Children’s Literature Association'),
(54151, 45343, 'no_lang_code', 'name', 'Robert Bosch (China)'),
(54152, 45344, 'no_lang_code', 'name', 'Stryker (Ireland)'),
(54153, 45345, 'de', 'name', 'Deutsche Stiftung Weltbevoelkerung'),
(54154, 45345, 'en', 'name', 'German Foundation for World Population'),
(54155, 45346, 'no_lang_code', 'name', 'Somfy (Germany)'),
(54156, 45347, 'en', 'name', 'Hokkaido Sapporo Kiyota High School'),
(54157, 45347, 'ja', 'name', 'åŒ—ęµ·é“ęœ­å¹Œęø…ē”°é«˜ē­‰å­¦ę ”'),
(54158, 45348, 'en', 'name', 'Shiga Bunkyo Junior College'),
(54159, 45348, 'ja', 'name', 'ę»‹č³€ę–‡ę•™ēŸ­ęœŸå¤§å­¦'),
(54160, 45349, 'no_lang_code', 'name', 'W. L. Gore & Associates (Japan)'),
(54161, 45350, 'pt', 'name', 'Prefeitura Municipal de Alto Alegre'),
(54162, 45351, 'no_lang_code', 'name', 'Serres Sagami (Canada)'),
(54163, 45352, 'en', 'name', 'Institute of Physiology and Basic Medicine'),
(54164, 45352, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š°Ń Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾ физиологии Šø Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ меГицины'),
(54165, 45353, 'en', 'name', 'Beijing Institute of Geology for Mineral Resources'),
(54166, 45353, 'zh', 'name', 'åŒ—äŗ¬ēŸæäŗ§åœ°č“Øē ”ē©¶é™¢ äŗ¬I'),
(54167, 45354, 'en', 'name', 'Koganei Daiichi Elementary School'),
(54168, 45354, 'ja', 'name', 'å°é‡‘äŗ•åø‚ē«‹å°é‡‘äŗ•ē¬¬äø€å°å­¦ę ”'),
(54169, 45355, 'en', 'name', 'Center For Children With Special Needs'),
(54170, 45356, 'en', 'name', 'John N. Gardner Institute for Excellence in Undergraduate Education'),
(54171, 45357, 'no_lang_code', 'name', 'Gad Consulting Services (United States)'),
(54172, 45358, 'en', 'name', 'National Institute of Animal Sciences'),
(54173, 45358, 'vi', 'name', 'Viện Chăn NuĆ“i'),
(54174, 45359, 'en', 'name', 'Vishwamitra Research Institute'),
(54175, 45360, 'en', 'name', 'Max Planck Innovation'),
(54176, 45361, 'en', 'name', 'Gold Coast City Council'),
(54177, 45362, 'en', 'name', 'Colorado Education Initiative'),
(54178, 45363, 'en', 'name', 'Toyama Prefectural Institute for Pharmaceutical Research'),
(54179, 45363, 'ja', 'name', 'åÆŒå±±ēœŒč–¬äŗ‹ē·åˆē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(54180, 45364, 'en', 'name', 'Global Environmental Outreach Centre'),
(54181, 45365, 'en', 'name', 'Sarvodaya Fertility & IVF Centre'),
(54182, 45366, 'en', 'name', 'Guangdong Provincial Occupational Disease Prevention Hospital'),
(54183, 45366, 'zh', 'name', 'å¹æäøœēœčŒäøšē—…é˜²ę²»é™¢'),
(54184, 45367, 'no_lang_code', 'name', 'SixOne Solutions (United States)'),
(54185, 45368, 'en', 'name', 'Biodiversity Research Institute'),
(54186, 45369, 'en', 'name', 'Zhejiang Financial College'),
(54187, 45369, 'zh', 'name', 'ęµ™ę±Ÿé‡‘čžčŒäøšå­¦é™¢'),
(54188, 45370, 'en', 'name', 'Catalan Government Railways'),
(54189, 45370, 'no_lang_code', 'name', 'Ferrocarrils de la Generalitat de Catalunya (Spain)'),
(54190, 45371, 'en', 'name', 'Moscow Center For Continuous Mathematical Education'),
(54191, 45371, 'ru', 'name', 'Московский центр непрерывного математического Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(54192, 45372, 'en', 'name', 'Komaki Technical High School'),
(54193, 45372, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å°ē‰§å·„ę„­é«˜ē­‰å­¦ę ”'),
(54194, 45373, 'no_lang_code', 'name', 'Netzsch (Germany)'),
(54195, 45374, 'no_lang_code', 'name', 'Creo Medical (United Kingdom)'),
(54196, 45375, 'no_lang_code', 'name', 'John Deere (New Zealand)'),
(54197, 45376, 'en', 'name', 'Education Service Center Region 13'),
(54198, 45377, 'en', 'name', 'National Centre for Genetic Resources and Biotechnology'),
(54199, 45378, 'en', 'name', 'Japanese Center for International Studies in Ecology'),
(54200, 45378, 'ja', 'name', 'å›½éš›ē”Ÿę…‹å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(54201, 45379, 'no_lang_code', 'name', 'Ericsson LG (South Korea)'),
(54202, 45380, 'no_lang_code', 'name', 'Teledyne e2v (United Kingdom)'),
(54203, 45381, 'no_lang_code', 'name', 'Zhejiang Zanyu Technology (China)'),
(54204, 45381, 'zh', 'name', 'ęµ™ę±Ÿčµžå®‡ē§‘ęŠ€'),
(54205, 45382, 'en', 'name', 'Central Coast Orthopedic Medical Group'),
(54206, 45383, 'en', 'name', 'Montgomery County Office of the County Executive'),
(54207, 45384, 'en', 'name', 'Hubei Academy of Forestry'),
(54208, 45384, 'zh', 'name', 'ę¹–åŒ—ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(54209, 45385, 'en', 'name', 'Islamic Azad University Medical Branch of Tehran'),
(54210, 45385, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد پزؓکی تهران'),
(54211, 45386, 'fr', 'name', 'Centre Hospitalo-Universitaire Dr Benbadis Constantine'),
(54212, 45387, 'en', 'name', 'Islamic Azad University, Boukan'),
(54213, 45387, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲØŁˆŚ©Ų§Ł†'),
(54214, 45388, 'en', 'name', 'Palm Beach County Library System'),
(54215, 45389, 'en', 'name', 'Oita Prefectural College of Arts and Culture'),
(54216, 45389, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹čŠøč”“ę–‡åŒ–ēŸ­ęœŸå¤§å­¦'),
(54217, 45390, 'en', 'name', 'Edisto Island Historic Preservation Society'),
(54218, 45391, 'no_lang_code', 'name', 'Paion (Germany)'),
(54219, 45392, 'en', 'name', 'Katori City Higashiodo Elementary School'),
(54220, 45392, 'ja', 'name', 'é¦™å–åø‚ē«‹ę±å¤§ęˆøå°å­¦ę ”'),
(54221, 45393, 'no_lang_code', 'name', 'TDK (United Kingdom)'),
(54222, 45394, 'de', 'name', 'Deutsche Gesellschaft für Chirurgie'),
(54223, 45394, 'en', 'name', 'German Society of Surgery'),
(54224, 45395, 'en', 'name', 'International University of Fundamental Studies'),
(54225, 45395, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠžŠ±ŃƒŃ‡ŠµŠ½ŠøŃ'),
(54226, 45396, 'no_lang_code', 'name', 'CertiRx (United States)'),
(54227, 45397, 'ja', 'name', 'ćƒ«ćƒć‚µć‚¹ ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(54228, 45397, 'no_lang_code', 'name', 'Renesas Electronics (United Kingdom)'),
(54229, 45398, 'en', 'name', 'Gifu Prefectural Research Institute for Fisheries and Aquatic Environments'),
(54230, 45398, 'ja', 'name', 'å²é˜œēœŒę°“ē”£ē ”ē©¶ę‰€'),
(54231, 45399, 'en', 'name', 'Vocational School YIC Rehabilitation College'),
(54232, 45400, 'en', 'name', 'Pain and Headache Center'),
(54233, 45401, 'en', 'name', 'House of Representatives'),
(54234, 45401, 'nl', 'name', 'Tweede Kamer der Staten-Generaal'),
(54235, 45402, 'en', 'name', 'Universal Technical Institute Dallas-Fort Worth'),
(54236, 45403, 'no_lang_code', 'name', 'Thales (Australia)'),
(54237, 45404, 'en', 'name', 'Kamehameha Schools'),
(54238, 45405, 'en', 'name', 'Central America Health Sciences University'),
(54239, 45406, 'no_lang_code', 'name', 'Guangxi Institute of Botany'),
(54240, 45406, 'zh', 'name', 'äø­ē§‘é™¢å¹æč„æę¤ē‰©ē ”ē©¶ę‰€'),
(54241, 45407, 'no_lang_code', 'name', 'CorPower Ocean (Sweden)'),
(54242, 45408, 'en', 'name', 'Hamamatsu City High School'),
(54243, 45408, 'ja', 'name', 'ęµœę¾åø‚é«˜ē­‰å­¦ę ”'),
(54244, 45409, 'no_lang_code', 'name', 'LightComp (Czechia)'),
(54245, 45410, 'no_lang_code', 'name', 'Bharat Forge (Germany)'),
(54246, 45411, 'en', 'name', 'Nepal Development Research Institute'),
(54247, 45411, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² विकास ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(54248, 45412, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(54249, 45412, 'en', 'name', 'Arab Open University'),
(54250, 45413, 'no_lang_code', 'name', 'Spectra Science (United States)'),
(54251, 45414, 'en', 'name', 'Niigata Prefectural Education Center'),
(54252, 45414, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(54253, 45415, 'no_lang_code', 'name', 'STMicroelectronics (India)'),
(54254, 45416, 'en', 'name', 'Toyama Prefectural Toyama Minami High School'),
(54255, 45416, 'ja', 'name', 'åÆŒå±±ēœŒē«‹åÆŒå±±å—é«˜ē­‰å­¦ę ”'),
(54256, 45417, 'no_lang_code', 'name', 'Specific Technologies (United States)'),
(54257, 45418, 'no_lang_code', 'name', 'General Electric (Israel)'),
(54258, 45419, 'en', 'name', 'Artemis One Health Research Foundation'),
(54259, 45420, 'lt', 'name', 'Klaipėdos Verslo AukÅ”toji Mokykla'),
(54260, 45421, 'no_lang_code', 'name', 'Stihl (Germany)'),
(54261, 45422, 'no_lang_code', 'name', 'Immune Biosolutions (Canada)'),
(54262, 45423, 'no_lang_code', 'name', 'Microsemi (Israel)'),
(54263, 45424, 'en', 'name', 'All-Russian Electrotechnical Institute named after V.I.Lenin'),
(54264, 45424, 'ru', 'name', 'Всероссийский ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.И. Ленина'),
(54265, 45425, 'en', 'name', 'Tokyo Metropolitan Agriculture and Forestry Research Center'),
(54266, 45425, 'ja', 'name', 'ę±äŗ¬éƒ½č¾²ęž—ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(54267, 45426, 'ja', 'name', 'å²é˜œēœŒē«‹ęœ¬å·£ę¾é™½é«˜ē­‰å­¦ę ”'),
(54268, 45426, 'no_lang_code', 'name', 'Motosu Shoyo High School'),
(54269, 45427, 'en', 'name', 'Western Reserve Hospital'),
(54270, 45428, 'no_lang_code', 'name', 'Ormazabal (Germany)'),
(54271, 45429, 'fr', 'name', 'Institut de Technologie Alimentaire'),
(54272, 45430, 'en', 'name', 'Japan Association for International Chemical Information'),
(54273, 45430, 'ja', 'name', 'åŒ–å­¦ęƒ…å ±å”ä¼š'),
(54274, 45431, 'no_lang_code', 'name', 'Vivreon Biosciences (United States)'),
(54275, 45432, 'de', 'name', 'Frankfurter Institut für Nachhaltige Entwicklung'),
(54276, 45433, 'de', 'name', 'StƤdtisches Klinikum Dessau'),
(54277, 45434, 'en', 'name', 'Aoyama Gakuin Senior High School'),
(54278, 45434, 'ja', 'name', 'é’å±±å­¦é™¢äø­ē­‰éƒØćƒ»é«˜ē­‰éƒØ'),
(54279, 45435, 'ja', 'name', 'ēŸ³å·ēœŒē«‹é«˜ę¾ē—…é™¢'),
(54280, 45435, 'no_lang_code', 'name', 'Ishikawa Prefectural Takamatsu Hospital'),
(54281, 45436, 'pt', 'name', 'Instituto de Biologia Molecular do ParanĆ”'),
(54282, 45437, 'en', 'name', 'Matsura Historical Museum'),
(54283, 45437, 'ja', 'name', 'ę¾ęµ¦å²ę–™åšē‰©é¤Ø'),
(54284, 45438, 'en', 'name', 'Sleep Research Society'),
(54285, 45439, 'pt', 'name', 'Prefeitura Municipal de IgarapƩ'),
(54286, 45440, 'en', 'name', 'Tohoku Bunkyo University'),
(54287, 45440, 'ja', 'name', 'ę±åŒ—ę–‡ę•™å¤§å­¦'),
(54288, 45441, 'en', 'name', 'Medical Library Association'),
(54289, 45442, 'fr', 'name', 'Vaincre la Mucoviscidose'),
(54290, 45443, 'no_lang_code', 'name', 'Gnosys Systems (United States)'),
(54291, 45444, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Canada)'),
(54292, 45445, 'no_lang_code', 'name', 'Great Lakes Sound and Vibration (United States)'),
(54293, 45446, 'de', 'name', 'Klinikum Hanau'),
(54294, 45447, 'he', 'name', 'מלאנוקה ×˜×›× ×•×œ×•×’×™×•×Ŗ בע"מ'),
(54295, 45447, 'no_lang_code', 'name', 'Mellanox Technologies (Israel)'),
(54296, 45448, 'en', 'name', 'Copperas Cove Independent School District'),
(54297, 45449, 'en', 'name', 'Fraunhofer Chile Research Foundation'),
(54298, 45450, 'en', 'name', 'Yamamoto Hospital'),
(54299, 45450, 'ja', 'name', 'å±±ęœ¬ē—…é™¢'),
(54300, 45451, 'en', 'name', 'Institute of Town Planners India'),
(54301, 45452, 'cs', 'name', 'Ministerstvo zahraničnĆ­ch věcĆ­ ČeskĆ© republiky'),
(54302, 45452, 'en', 'name', 'Ministry of Foreign Affairs'),
(54303, 45453, 'no_lang_code', 'name', 'Hewlett-Packard (Australia)'),
(54304, 45454, 'en', 'name', 'New Covenant International'),
(54305, 45455, 'no_lang_code', 'name', 'NutriAg (Canada)'),
(54306, 45456, 'en', 'name', 'Hyogo Institute for Traumatic Stress'),
(54307, 45457, 'no_lang_code', 'name', 'Ineos (Switzerland)'),
(54308, 45458, 'en', 'name', 'Rushford Public Library'),
(54309, 45459, 'en', 'name', 'National Tsunami Warning Center'),
(54310, 45460, 'bs', 'name', 'Institut za mjeriteljstvo Bosne i Hercegovine'),
(54311, 45460, 'en', 'name', 'Institute of Metrology of Bosnia and Herzegovina'),
(54312, 45460, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¼ŠµŃ‚Ń€Š¾Š»Š¾Š³ŠøŃ˜Ńƒ Босне Šø Єерцеговине'),
(54313, 45461, 'no_lang_code', 'name', 'Johnson Controls (Switzerland)'),
(54314, 45462, 'no_lang_code', 'name', 'Toshiba (Austria)'),
(54315, 45463, 'pt', 'name', 'Fundacao Padre Leonel Franca'),
(54316, 45464, 'no_lang_code', 'name', 'Aerospace Testing Alliance (United States)'),
(54317, 45465, 'no_lang_code', 'name', 'Wildlife Computers (United States)'),
(54318, 45466, 'en', 'name', 'Homarus'),
(54319, 45467, 'en', 'name', 'Ibaraki Prefectural Mitsukaido First High School'),
(54320, 45467, 'ja', 'name', 'čŒØåŸŽēœŒē«‹å¤Ŗē”°ē¬¬äŗŒé«˜ē­‰å­¦ę ”'),
(54321, 45468, 'no_lang_code', 'name', 'Emissol (United States)'),
(54322, 45469, 'en', 'name', 'Chiba Prefectural Police'),
(54323, 45469, 'ja', 'name', 'åƒč‘‰ēœŒč­¦åÆŸ'),
(54324, 45470, 'no_lang_code', 'name', 'Avaya (United Kingdom)'),
(54325, 45471, 'en', 'name', 'Koyo Schools'),
(54326, 45471, 'ja', 'name', '向陽学園'),
(54327, 45472, 'no_lang_code', 'name', 'Marvell (Bermuda)'),
(54328, 45473, 'no_lang_code', 'name', 'Hamilton Utilities Corporation'),
(54329, 45474, 'no_lang_code', 'name', 'Accenture (Ireland)'),
(54330, 45475, 'en', 'name', 'Mie Prefectural Kobe High School'),
(54331, 45475, 'ja', 'name', 'äø‰é‡ēœŒē«‹ē„žęˆøé«˜ę ”'),
(54332, 45476, 'no_lang_code', 'name', 'Vibra Finish (Canada)'),
(54333, 45477, 'en', 'name', 'Practical Robotics Institute Austria'),
(54334, 45478, 'en', 'name', 'Farallon Institute'),
(54335, 45479, 'en', 'name', 'Korea International Trade Association'),
(54336, 45479, 'ko', 'name', 'ķ•œźµ­ė¬“ģ—­ķ˜‘ķšŒ'),
(54337, 45480, 'ca', 'name', 'ClĆ­nica Girona'),
(54338, 45481, 'no_lang_code', 'name', 'IsoTherapeutics Group (United States)'),
(54339, 45482, 'nl', 'name', 'Aidsfonds'),
(54340, 45483, 'en', 'name', 'Okinawa Prefectural Koroku High School'),
(54341, 45483, 'ja', 'name', 'ę²–ēø„ēœŒē«‹å°ē¦„é«˜ē­‰å­¦ę ”'),
(54342, 45484, 'es', 'name', 'Universidad Cristiana de las Asambleas de Dios'),
(54343, 45485, 'no_lang_code', 'name', 'Digimarc (United States)'),
(54344, 45486, 'ja', 'name', 'ę–°ę½Ÿäø­å¤®ēŸ­ęœŸå¤§å­¦'),
(54345, 45486, 'no_lang_code', 'name', 'Niigata Chuoh Junior College'),
(54346, 45487, 'en', 'name', 'Aichi Prefectural Toyohashi School for the Deaf'),
(54347, 45487, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹č±Šę©‹č¾å­¦ę ”'),
(54348, 45488, 'no_lang_code', 'name', 'Spectrum Brands (United Kingdom)'),
(54349, 45489, 'no_lang_code', 'name', 'Illinois Tool Works (Germany)'),
(54350, 45490, 'cy', 'name', 'Ysbyty Ystrad Fawr'),
(54351, 45490, 'en', 'name', 'Large Vale Hospital'),
(54352, 45491, 'en', 'name', 'Cultural Relics Institute Hebei Province'),
(54353, 45491, 'zh', 'name', 'ę²³åŒ—ēœę–‡ē‰©ē ”ē©¶ę‰€'),
(54354, 45492, 'no_lang_code', 'name', 'Foxconn (China)'),
(54355, 45492, 'zh', 'name', 'é“»ęµ·ē§‘ęŠ€é›†åœ˜'),
(54356, 45493, 'en', 'name', 'Society for Experimental Biology'),
(54357, 45494, 'no_lang_code', 'name', 'Pitney Bowes (United Kingdom)'),
(54358, 45495, 'en', 'name', 'Regional Hospital of Scranton'),
(54359, 45496, 'no_lang_code', 'name', 'Reliance Industries (United States)'),
(54360, 45497, 'en', 'name', 'Okazaki Higashi High School'),
(54361, 45497, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å²”å“Žę±é«˜ē­‰å­¦ę ”'),
(54362, 45498, 'ja', 'name', 'åÆŒå£«é€šćƒ†ćƒ³ę Ŗå¼ä¼šē¤¾'),
(54363, 45498, 'no_lang_code', 'name', 'Fujitsu Ten (Japan)'),
(54364, 45499, 'en', 'name', 'Rockefeller University Hospital'),
(54365, 45500, 'aa', 'name', 'å’Œę­Œå±±ēœŒē«‹å’Œę­Œå±±ē›²å­¦ę ”'),
(54366, 45500, 'en', 'name', 'Wakayama Prefecture Wakayama School for the Blind'),
(54367, 45501, 'en', 'name', 'Nagano Prefectural Board of Education'),
(54368, 45501, 'ja', 'name', 'é•·é‡ŽēœŒę•™č‚²å§”å“”ä¼š'),
(54369, 45502, 'en', 'name', 'Black Alliance for Educational Options'),
(54370, 45503, 'en', 'name', 'IEEE France section'),
(54371, 45504, 'en', 'name', 'African Field Epidemiology Network'),
(54372, 45505, 'no_lang_code', 'name', 'Dover (United Kingdom)'),
(54373, 45506, 'pt', 'name', 'Empresa Mato-grossense de Pesquisa, Assistência e Extensão Rural'),
(54374, 45507, 'en', 'name', 'Okinawa Red Cross Hospital'),
(54375, 45507, 'ja', 'name', 'ę²–ēø„čµ¤åå­—ē—…é™¢'),
(54376, 45508, 'en', 'name', 'Tricoci University of Beauty Culture'),
(54377, 45509, 'en', 'name', 'Department for Exiting the European Union'),
(54378, 45510, 'en', 'name', 'Water Supply and Sanitation Technology Platform'),
(54379, 45511, 'no_lang_code', 'name', 'Mimetas (Netherlands)'),
(54380, 45512, 'de', 'name', 'Regionalverbund kirchlicher KrankenhƤuser'),
(54381, 45513, 'en', 'name', 'Osaka Prefectural Agricultural High School'),
(54382, 45513, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹č¾²čŠøé«˜ē­‰å­¦ę ”'),
(54383, 45514, 'en', 'name', 'Osaka Municipal College of Design'),
(54384, 45514, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹ćƒ‡ć‚¶ć‚¤ćƒ³ę•™č‚²ē ”ē©¶ę‰€'),
(54385, 45515, 'en', 'name', 'Essex County Hospital'),
(54386, 45516, 'es', 'name', 'Instituto Tecnológico de Hermosillo'),
(54387, 45517, 'en', 'name', 'Johar Health Maintenance Organization'),
(54388, 45518, 'en', 'name', 'National Archives of Japan'),
(54389, 45518, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹å…¬ę–‡ę›øé¤Ø'),
(54390, 45519, 'en', 'name', 'Queen Jadwiga Foundation'),
(54391, 45520, 'en', 'name', 'Imakane Board of Education'),
(54392, 45520, 'ja', 'name', 'ä»Šé‡‘ē”ŗę•™č‚²å§”å“”ä¼š'),
(54393, 45521, 'en', 'name', 'Institute of Microbiology and Biotechnology'),
(54394, 45521, 'ro', 'name', 'Institutul de Microbiologie si Biotehnologie'),
(54395, 45522, 'es', 'name', 'Asociación Española para el Estudio del Hígado'),
(54396, 45523, 'en', 'name', 'Blended Solutions'),
(54397, 45524, 'en', 'name', 'Japan Place Name Research Center'),
(54398, 45524, 'ja', 'name', 'ę—„ęœ¬åœ°åē ”ē©¶ę‰€'),
(54399, 45525, 'no_lang_code', 'name', 'Maxwell Technologies (United States)'),
(54400, 45526, 'en', 'name', 'Marie Curie Palliative Care Institute Liverpool'),
(54401, 45527, 'ja', 'name', 'TDKę Ŗå¼ä¼šē¤¾'),
(54402, 45527, 'no_lang_code', 'name', 'TDK (Japan)'),
(54403, 45528, 'en', 'name', 'African Ministers'' Council on Water'),
(54404, 45529, 'en', 'name', 'American University of Integrative Sciences'),
(54405, 45530, 'en', 'name', 'Mie Prefectural School for the Blind'),
(54406, 45530, 'ja', 'name', 'äø‰é‡ēœŒē«‹ē›²å­¦ę ”'),
(54407, 45531, 'no_lang_code', 'name', 'Tektronix (Switzerland)'),
(54408, 45532, 'en', 'name', 'Desmond Tutu Peace Foundation'),
(54409, 45533, 'en', 'name', 'Rowan Works Economic Development'),
(54410, 45534, 'en', 'name', 'Anjo Chubu Elementary School'),
(54411, 45534, 'ja', 'name', 'å®‰åŸŽåø‚ē«‹å®‰åŸŽäø­éƒØå°å­¦ę ”'),
(54412, 45535, 'no_lang_code', 'name', 'Smallmatek (Portugal)'),
(54413, 45536, 'no_lang_code', 'name', 'Microchip Technology (United States)'),
(54414, 45537, 'en', 'name', 'Woodlawn School'),
(54415, 45538, 'en', 'name', 'Council for Christian Colleges and Universities'),
(54416, 45539, 'en', 'name', 'Humane Slaughter Association'),
(54417, 45540, 'no_lang_code', 'name', 'Teledyne Technologies (Australia)'),
(54418, 45541, 'en', 'name', 'Newcastle University Singapore'),
(54419, 45542, 'en', 'name', 'Shoreline Public Schools'),
(54420, 45543, 'en', 'name', 'National Hospital Organization Kyushu Cancer Center'),
(54421, 45543, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ä¹å·žćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(54422, 45544, 'de', 'name', 'Wirtschaftspsychologische Gesellschaft'),
(54423, 45545, 'no_lang_code', 'name', 'Cloud Pharmaceuticals (United States)'),
(54424, 45546, 'ja', 'name', 'äø‰č±ć‚¬ć‚¹åŒ–å­¦'),
(54425, 45546, 'no_lang_code', 'name', 'Mitsubishi Gas Chemical (Japan)'),
(54426, 45547, 'no_lang_code', 'name', 'Lenovo (Singapore)'),
(54427, 45548, 'en', 'name', 'Institute of Natural Resources, Ecology and Cryology'),
(54428, 45548, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ прироГных Ń€ŠµŃŃƒŃ€ŃŠ¾Š², ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Šø криологии Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(54429, 45549, 'no_lang_code', 'name', 'Zimmer Biomet (United Kingdom)'),
(54430, 45550, 'en', 'name', 'National Institution For Youth Education'),
(54431, 45550, 'ja', 'name', 'å›½ē«‹é’å°‘å¹“ę•™č‚²ęŒÆčˆˆę©Ÿę§‹'),
(54432, 45551, 'en', 'name', 'Toho University Ohashi Medical Center'),
(54433, 45551, 'ja', 'name', 'ę±é‚¦å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼å¤§ę©‹ē—…é™¢'),
(54434, 45552, 'no_lang_code', 'name', 'Soliton Ocean Services (United States)'),
(54435, 45553, 'en', 'name', 'Access to Medicine Index'),
(54436, 45554, 'de', 'name', 'Christian Doppler Forschungsgesellschaft'),
(54437, 45554, 'en', 'name', 'Christian Doppler Research Association'),
(54438, 45555, 'ja', 'name', 'ćƒ¦ćƒ‹ćƒćƒ¼ć‚µćƒ«ć‚Øćƒ³ć‚æćƒ¼ćƒ†ć‚¤ćƒ³ćƒ”ćƒ³ćƒˆ'),
(54439, 45555, 'no_lang_code', 'name', 'Universal Entertainment (Japan)'),
(54440, 45556, 'no_lang_code', 'name', 'Universal Engraving (United States)'),
(54441, 45557, 'ja', 'name', 'ć‚½ćƒ•ćƒˆ99ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(54442, 45557, 'no_lang_code', 'name', 'Soft99 (Japan)'),
(54443, 45558, 'no_lang_code', 'name', 'WHYY (United States)'),
(54444, 45559, 'no_lang_code', 'name', 'Novocor Medical Systems (United States)'),
(54445, 45560, 'no_lang_code', 'name', 'Unilever (United States)'),
(54446, 45561, 'en', 'name', 'University of Iranians'),
(54447, 45561, 'fa', 'name', 'دانؓگاه Ų¬Ų§Ł…Ų¹ ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ Ų§ŪŒŲ±Ų§Ł†ŪŒŲ§Ł†'),
(54448, 45562, 'en', 'name', 'Orio Aishin Junior College'),
(54449, 45562, 'ja', 'name', 'ęŠ˜å°¾ę„›ēœŸēŸ­ęœŸå¤§å­¦'),
(54450, 45563, 'en', 'name', 'Congressional Black Caucus Foundation'),
(54451, 45564, 'no_lang_code', 'name', 'Callaway Golf (United States)'),
(54452, 45565, 'no_lang_code', 'name', 'ElringKlinger (Germany)'),
(54453, 45566, 'en', 'name', 'Higher Institute of Advanced Studies'),
(54454, 45567, 'en', 'name', 'Botho University'),
(54455, 45568, 'it', 'name', 'Istituto Ramazzini'),
(54456, 45569, 'en', 'name', 'Aaron Marcus and Associates'),
(54457, 45570, 'no_lang_code', 'name', 'Mfantsiman Girls Secondary School'),
(54458, 45571, 'de', 'name', 'Institut für Nachhaltiges Management'),
(54459, 45572, 'en', 'name', 'Ministry of Agriculture and Natural Resource'),
(54460, 45573, 'de', 'name', 'Universalmuseum Joanneum'),
(54461, 45574, 'en', 'name', 'Deepam Educational Society for Health'),
(54462, 45575, 'en', 'name', 'Black Archives of Mid-America'),
(54463, 45576, 'no_lang_code', 'name', 'AV&R (Canada)'),
(54464, 45577, 'no_lang_code', 'name', 'Tenneco (Belgium)'),
(54465, 45578, 'en', 'name', 'American Indian Institute'),
(54466, 45579, 'en', 'name', 'Centre for Arctic Gas Hydrate, Environment and Climate'),
(54467, 45579, 'no', 'name', 'Senter for arktisk gasshydrat, miljĆø og klima'),
(54468, 45580, 'en', 'name', 'International AIDS Society'),
(54469, 45581, 'en', 'name', 'University of Lay Adventists of Kigali'),
(54470, 45581, 'rw', 'name', 'Universite Laique Adventiste de Kigali'),
(54471, 45582, 'no_lang_code', 'name', 'Thorlabs (Germany)'),
(54472, 45583, 'en', 'name', 'Osaka Museum of Natural History'),
(54473, 45583, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹č‡Ŗē„¶å²åšē‰©é¤Ø'),
(54474, 45584, 'no_lang_code', 'name', 'Marbes Consulting'),
(54475, 45585, 'de', 'name', 'Deutsche PalliativStiftung'),
(54476, 45586, 'en', 'name', 'Matsuyama Gakuen Matsuyama welfare College'),
(54477, 45586, 'ja', 'name', 'ę¾å±±å­¦åœ’ę¾å±±ē¦ē„‰å°‚é–€å­¦ę ”'),
(54478, 45587, 'en', 'name', 'Duraspace'),
(54479, 45588, 'en', 'name', 'Australian Society for Biochemistry and Molecular Biology'),
(54480, 45589, 'es', 'name', 'Pro Cosara'),
(54481, 45590, 'en', 'name', 'National Institute of Technology, Ube College'),
(54482, 45590, 'ja', 'name', 'å®‡éƒØå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(54483, 45591, 'no_lang_code', 'name', 'Rambus (United States)'),
(54484, 45592, 'en', 'name', 'Ventura College'),
(54485, 45593, 'en', 'name', 'Parents’ Action for Children'),
(54486, 45594, 'pt', 'name', 'Centrus Diagnósticos por Imagem'),
(54487, 45595, 'ja', 'name', 'ä»»å¤©å ‚ę Ŗå¼ä¼šē¤¾'),
(54488, 45595, 'no_lang_code', 'name', 'Nintendo (Japan)'),
(54489, 45596, 'no_lang_code', 'name', 'Intrinsik (Canada)'),
(54490, 45597, 'no_lang_code', 'name', 'Eli Lilly (Ireland)'),
(54491, 45598, 'en', 'name', 'Institute of Disaster Prevention'),
(54492, 45598, 'zh', 'name', 'é˜²ē¾ē§‘ęŠ€å­¦é™¢'),
(54493, 45599, 'en', 'name', 'Missouri Assistive Technology'),
(54494, 45600, 'no_lang_code', 'name', 'Privacy Analytics (Canada)'),
(54495, 45601, 'en', 'name', 'Quzhou College of Technology'),
(54496, 45602, 'en', 'name', 'Bircham International University'),
(54497, 45603, 'ja', 'name', 'ē¦å²”åø‚ē¾Žč”“é¤Ø'),
(54498, 45603, 'no_lang_code', 'name', 'Fukuoka Art Museum'),
(54499, 45604, 'no_lang_code', 'name', 'Advanced Radiation Therapy (United States)'),
(54500, 45605, 'no_lang_code', 'name', 'Visteon (United States)'),
(54501, 45606, 'no_lang_code', 'name', 'Prime Solutions Group (United States)'),
(54502, 45607, 'no_lang_code', 'name', '3D Biomatrix (United States)'),
(54503, 45608, 'no_lang_code', 'name', 'Global Power Technologies Group (United States)'),
(54504, 45609, 'ja', 'name', 'ē¦å±±åø‚ē«‹å‹•ē‰©åœ’'),
(54505, 45609, 'no_lang_code', 'name', 'Fukuyama City Zoo'),
(54506, 45610, 'no_lang_code', 'name', 'Fujikura (United States)'),
(54507, 45611, 'no_lang_code', 'name', 'Everist Health (United States)'),
(54508, 45612, 'en', 'name', 'Institute for Expressive Analysis'),
(54509, 45613, 'no_lang_code', 'name', 'Stanley Black & Decker (Switzerland)'),
(54510, 45614, 'en', 'name', 'Fukushima Prefectural Board of Education'),
(54511, 45614, 'ja', 'name', 'ē¦å³¶ēœŒę•™č‚²å§”å“”ä¼šć®ćƒ›ćƒ¼'),
(54512, 45615, 'en', 'name', 'Aichi Prefectural Police'),
(54513, 45615, 'ja', 'name', 'ę„›ēŸ„ēœŒč­¦åÆŸ'),
(54514, 45616, 'en', 'name', 'Wikimedia Philippines'),
(54515, 45617, 'en', 'name', 'Gwinnett County Public Library'),
(54516, 45618, 'no_lang_code', 'name', 'Deutsche Telekom (United Kingdom)'),
(54517, 45619, 'en', 'name', 'Healthcare Infection Society'),
(54518, 45620, 'en', 'name', 'Physiology Educational Research Consortium'),
(54519, 45621, 'no_lang_code', 'name', 'Physcient (United States)'),
(54520, 45622, 'de', 'name', 'Fraunhofer-Institut für Experimentelles Software Engineering'),
(54521, 45622, 'en', 'name', 'Fraunhofer Institute for Experimental Software Engineering'),
(54522, 45623, 'en', 'name', 'National Center for Public Policy and Higher Education'),
(54523, 45624, 'en', 'name', 'NCEast Alliance'),
(54524, 45625, 'no_lang_code', 'name', 'SilaGene (United States)'),
(54525, 45626, 'en', 'name', 'Nagasaki Museum of History and Culture'),
(54526, 45626, 'ja', 'name', 'é•·å“Žę­“å²ę–‡åŒ–åšē‰©é¤Ø'),
(54527, 45627, 'ja', 'name', 'å¤§é˜Ŗć‚­ćƒŖć‚¹ćƒˆę•™ēŸ­ęœŸå¤§å­¦'),
(54528, 45627, 'no_lang_code', 'name', 'Osaka Christian College'),
(54529, 45628, 'no_lang_code', 'name', 'Avnet (United States)'),
(54530, 45629, 'en', 'name', 'Seattle Colleges'),
(54531, 45630, 'en', 'name', 'Midcoast Regional Redevelopment Authority'),
(54532, 45631, 'no_lang_code', 'name', 'Smith & Nephew (United States)'),
(54533, 45632, 'en', 'name', 'Mie Prefectural Education Center'),
(54534, 45632, 'ja', 'name', 'äø‰é‡ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(54535, 45633, 'en', 'name', 'Building Engineering and Science Talent'),
(54536, 45634, 'no_lang_code', 'name', 'Clinacuity (United States)'),
(54537, 45635, 'en', 'name', 'Society for Technical Communication'),
(54538, 45636, 'en', 'name', 'American School for the Deaf'),
(54539, 45637, 'en', 'name', 'Ocean Exploration Trust'),
(54540, 45638, 'no_lang_code', 'name', 'BioKier (United States)'),
(54541, 45639, 'en', 'name', 'United Nations Research Institute for Social Development'),
(54542, 45639, 'fr', 'name', 'Institut de Recherche des Nations Unies pour le DƩveloppement Social'),
(54543, 45640, 'no_lang_code', 'name', 'Open Text (United Kingdom)'),
(54544, 45641, 'en', 'name', 'Zhejiang Party School'),
(54545, 45641, 'zh', 'name', 'ęµ™ę±Ÿēœå§”å…šę ”'),
(54546, 45642, 'en', 'name', 'Leping Social Entrepreneur Foundation'),
(54547, 45642, 'zh', 'name', 'åŒ—äŗ¬ä¹å¹³å…¬ē›ŠåŸŗé‡‘ä¼š'),
(54548, 45643, 'en', 'name', 'Institute of Brain and Blood Vessels'),
(54549, 45643, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ 脳蔀箔研究所'),
(54550, 45644, 'en', 'name', 'Advanced Science, Technology & Management Research Institute of Kyoto'),
(54551, 45644, 'ja', 'name', 'äŗ¬éƒ½é«˜åŗ¦ęŠ€č”“ē ”ē©¶ę‰€'),
(54552, 45645, 'en', 'name', 'Lemon Grove School District'),
(54553, 45646, 'en', 'name', 'Sakura no Seibo Junior College'),
(54554, 45646, 'ja', 'name', 'ę”œć®č–ęÆēŸ­ęœŸå¤§å­¦'),
(54555, 45647, 'ko', 'name', 'ķ˜„ėŒ€ģ œģ² '),
(54556, 45647, 'no_lang_code', 'name', 'Hyundai Steel (South Korea)'),
(54557, 45648, 'es', 'name', 'Asociación Universitaria Iberoamericana de Postgrado'),
(54558, 45649, 'en', 'name', 'Killeen Independent School District'),
(54559, 45650, 'en', 'name', 'Office of Livestock and Pasture'),
(54560, 45650, 'fr', 'name', 'Office de l''elevage et des pâturages'),
(54561, 45651, 'en', 'name', 'Nakakyusyu Junior College'),
(54562, 45651, 'ja', 'name', 'äø­ä¹å·žēŸ­ęœŸå¤§å­¦'),
(54563, 45652, 'en', 'name', 'Okinawa Prefecture Ohira Special School School'),
(54564, 45652, 'ja', 'name', 'ę²–ēø„ēœŒē«‹å¤§å¹³ē‰¹åˆ„ę”Æę“å­¦ę ”'),
(54565, 45653, 'no_lang_code', 'name', 'Integrated Sensors (United States)'),
(54566, 45654, 'de', 'name', 'Fraunhofer-Institut für Integrierte Schaltungen IIS, Institutsteil Entwicklung Adaptiver Systeme EAS'),
(54567, 45654, 'en', 'name', 'Fraunhofer Institute for Integrated Circuits IIS, Division Engineering of Adaptive Systems EAS'),
(54568, 45655, 'en', 'name', 'Ichikawa Junior and Senior High School'),
(54569, 45655, 'ja', 'name', 'åø‚å·äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(54570, 45656, 'en', 'name', 'May Institute'),
(54571, 45657, 'de', 'name', 'Kunstmuseum Basel'),
(54572, 45658, 'en', 'name', 'Kumamoto Prefectural Museum of Art'),
(54573, 45658, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹ē¾Žč”“é¤Ø'),
(54574, 45659, 'en', 'name', 'Islamic Azad University North Tehran Branch'),
(54575, 45659, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ, واحد تهران Ų“Ł…Ų§Ł„ā€Žā€Ž'),
(54576, 45660, 'en', 'name', 'National Hospital Organization Hokkaido Medical Center'),
(54577, 45660, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē—…é™¢ę©Ÿę§‹ åŒ—ęµ·é“åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(54578, 45661, 'en', 'name', 'Tokushima Prefectural General Education Center'),
(54579, 45661, 'ja', 'name', 'å¾³å³¶ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(54580, 45662, 'en', 'name', 'Yingkou Institute of Technology'),
(54581, 45662, 'zh', 'name', 'č„å£ē†å·„å­¦é™¢'),
(54582, 45663, 'no_lang_code', 'name', 'Apeak (United States)'),
(54583, 45664, 'no_lang_code', 'name', 'CNH Industrial (Germany)'),
(54584, 45665, 'no_lang_code', 'name', 'NĒRx BioSciences (United States)'),
(54585, 45666, 'sv', 'name', 'Stiftelsen Bergteknisk Forskning'),
(54586, 45667, 'en', 'name', 'Kurume University Medical Center'),
(54587, 45667, 'ja', 'name', 'ä¹…ē•™ē±³å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(54588, 45668, 'no_lang_code', 'name', 'Zodiac Aerospace (United Kingdom)'),
(54589, 45669, 'no_lang_code', 'name', 'ClariTrac (United States)'),
(54590, 45670, 'en', 'name', 'Kawagoe Technical High School'),
(54591, 45670, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹å·č¶Šå·„ę„­é«˜ē­‰å­¦ę ”'),
(54592, 45671, 'no_lang_code', 'name', 'Reden (Netherlands)'),
(54593, 45672, 'en', 'name', 'Cross Plains Public Library'),
(54594, 45673, 'pt', 'name', 'Instituto de Pesquisas Ecológicas'),
(54595, 45674, 'en', 'name', 'Okinawa Prefectural Yaeyama Hospital'),
(54596, 45674, 'ja', 'name', 'ę²–ēø„ēœŒē«‹å…«é‡å±±ē—…é™¢'),
(54597, 45675, 'en', 'name', 'American Welding Society'),
(54598, 45676, 'en', 'name', 'Poultry Research Institute'),
(54599, 45676, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å®¶ē¦½ē ”ē©¶ę‰€'),
(54600, 45677, 'en', 'name', 'Meiwa High School'),
(54601, 45677, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ę˜Žå’Œé«˜ē­‰å­¦ę ”'),
(54602, 45678, 'en', 'name', 'Executive Development Institute'),
(54603, 45679, 'hi', 'name', 'Bharatiya Vidya Bhavan'),
(54604, 45680, 'en', 'name', 'NorthEast Washington Educational Service District'),
(54605, 45681, 'en', 'name', 'Wildlife Conservation Society Democratic Republic of the Congo'),
(54606, 45682, 'de', 'name', 'Schweizerischen Bundesarchiv'),
(54607, 45682, 'en', 'name', 'Swiss Federal Archives'),
(54608, 45682, 'fr', 'name', 'Archives FƩdƩrales Suisses'),
(54609, 45682, 'it', 'name', 'Archivio Federale Svizzero'),
(54610, 45682, 'rm', 'name', 'Archiv Federal Svizzer'),
(54611, 45683, 'en', 'name', 'Chea Sim University of Kamchaymear'),
(54612, 45684, 'en', 'name', 'Institute for Development and Research in Banking Technology'),
(54613, 45685, 'no_lang_code', 'name', 'Japan Aviation Electronics Industry (Taiwan)'),
(54614, 45686, 'en', 'name', 'Lions Clubs International'),
(54615, 45687, 'no_lang_code', 'name', 'Kodak (Japan)'),
(54616, 45688, 'pt', 'name', 'Hospital de Magalhães Lemos'),
(54617, 45689, 'en', 'name', 'KnowledgeWorks'),
(54618, 45690, 'en', 'name', 'Tokushima Prefectural Museum'),
(54619, 45690, 'ja', 'name', 'å¾³å³¶ēœŒē«‹åšē‰©é¤Ø'),
(54620, 45691, 'en', 'name', 'Botanic Gardens and Parks Authority'),
(54621, 45692, 'en', 'name', 'West Virginia Northern Community College'),
(54622, 45693, 'pt', 'name', 'Universidade Politecnica'),
(54623, 45694, 'en', 'name', 'Miyagi Prefecture Shibata Agriculture and Forestry High School'),
(54624, 45694, 'ja', 'name', 'å®®åŸŽēœŒęŸ“ē”°č¾²ęž—é«˜ē­‰å­¦ę ”'),
(54625, 45695, 'en', 'name', 'Bon Secours DePaul Medical Center'),
(54626, 45696, 'en', 'name', 'Akita Nutrition Junior College'),
(54627, 45696, 'ja', 'name', 'ē§‹ē”°ę „é¤ŠēŸ­ęœŸå¤§å­¦'),
(54628, 45697, 'en', 'name', 'Toyama Industrial Technology Center'),
(54629, 45697, 'ja', 'name', 'åÆŒå±±ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(54630, 45698, 'en', 'name', 'Hyogo Prefectural Institute of Technology'),
(54631, 45698, 'ja', 'name', 'å…µåŗ«ēœŒē«‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(54632, 45699, 'en', 'name', 'Tokyo Metropolitan Bunkyo High School'),
(54633, 45699, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę–‡äŗ¬é«˜ē­‰å­¦ę ”'),
(54634, 45700, 'en', 'name', 'Bangladesh Livestock Research Institute'),
(54635, 45701, 'en', 'name', 'Admiral Theatre'),
(54636, 45702, 'en', 'name', 'Centre for Innovation in Regulatory Science'),
(54637, 45703, 'en', 'name', 'HealthRock'),
(54638, 45704, 'en', 'name', 'Health Systems Global'),
(54639, 45705, 'no_lang_code', 'name', 'QRxPharma (Australia)'),
(54640, 45706, 'no_lang_code', 'name', 'Meritor (Brazil)'),
(54641, 45707, 'no_lang_code', 'name', 'Mahindra Forgings (Germany)'),
(54642, 45708, 'es', 'name', 'Universidad Nueva San Salvador'),
(54643, 45709, 'no_lang_code', 'name', 'Honeywell (Germany)'),
(54644, 45710, 'no_lang_code', 'name', 'TECE (Germany)'),
(54645, 45711, 'no_lang_code', 'name', 'Quorn (United Kingdom)'),
(54646, 45712, 'en', 'name', 'Miwa Internal Medicine Clinic'),
(54647, 45712, 'ja', 'name', 'ćæć‚å†…ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(54648, 45713, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ© Ų§Ł„ŁŲ±Ł†Ų³ŁŠŲ©'),
(54649, 45713, 'en', 'name', 'Lebanese-French University of Technology and Applied Sciences'),
(54650, 45713, 'fr', 'name', 'UniversitƩ de Technologie et de Sciences AppliquƩes Libano-FranƧaise'),
(54651, 45714, 'no_lang_code', 'name', 'OptiFuel Technology (United States)'),
(54652, 45715, 'en', 'name', 'Smith Family'),
(54653, 45716, 'en', 'name', 'Kurume University Hospital'),
(54654, 45716, 'ja', 'name', '久留米大学病院'),
(54655, 45717, 'no_lang_code', 'name', 'Dŵr Cymru Welsh Water (United Kingdom)'),
(54656, 45718, 'no_lang_code', 'name', 'Universal Photonics (United States)'),
(54657, 45719, 'no_lang_code', 'name', 'Dyverga Energy (Canada)'),
(54658, 45720, 'no_lang_code', 'name', 'Raven Telemetry (Canada)'),
(54659, 45721, 'ja', 'name', 'ę—„ęœ¬ē™ŗę”ę Ŗå¼ä¼šē¤¾'),
(54660, 45721, 'no_lang_code', 'name', 'NHK Spring (Japan)'),
(54661, 45722, 'en', 'name', 'Northern Maine Community College'),
(54662, 45723, 'en', 'name', 'Turku Centre for Computer Science'),
(54663, 45723, 'fi', 'name', 'Turun tietotekniikan tutkimus- ja koulutuskeskus'),
(54664, 45723, 'sv', 'name', 'ƅbo datatekniska forsknings- och utbildningscentrum'),
(54665, 45724, 'en', 'name', 'National Library of Namibia'),
(54666, 45725, 'en', 'name', 'Kyoto Architecture University'),
(54667, 45725, 'ja', 'name', 'äŗ¬éƒ½å»ŗēÆ‰å¤§å­¦ę ”'),
(54668, 45726, 'en', 'name', 'Mission Australia'),
(54669, 45727, 'no_lang_code', 'name', 'SunEdison (United States)'),
(54670, 45728, 'no_lang_code', 'name', 'BlueGreen Geophysics (United States)'),
(54671, 45729, 'en', 'name', 'IPAG Business School'),
(54672, 45729, 'fr', 'name', 'Institut de PrƩparation Ơ l''Administration et Ơ la Gestion'),
(54673, 45730, 'en', 'name', 'Society for the Promotion of Roman Studies'),
(54674, 45731, 'no_lang_code', 'name', 'Vivonoetics (United States)'),
(54675, 45732, 'en', 'name', 'Kanagawa Prefectural Odawara Johoku Technical High School'),
(54676, 45732, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹å°ē”°åŽŸåŸŽåŒ—å·„ę„­é«˜ē­‰å­¦ę ”'),
(54677, 45733, 'no_lang_code', 'name', 'Integrated Oncology (United States)'),
(54678, 45734, 'no_lang_code', 'name', 'Vitec (Germany)'),
(54679, 45735, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ†ć‚Æćƒˆ'),
(54680, 45735, 'no_lang_code', 'name', 'JTEKT (Japan)'),
(54681, 45736, 'en', 'name', 'Kenya Agricultural and Livestock Research Organization'),
(54682, 45737, 'en', 'name', 'National Engineering Research Center for Compounding and Modification of Polymer Materials'),
(54683, 45737, 'zh', 'name', 'å›½å®¶å¤åˆę”¹ę€§čšåˆē‰©ęę–™å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(54684, 45738, 'en', 'name', 'Fort Monroe Authority'),
(54685, 45739, 'de', 'name', 'Bundesamt für Verbraucherschutz und Lebensmittelsicherheit'),
(54686, 45739, 'en', 'name', 'Federal Office of Consumer Protection and Food Safety'),
(54687, 45740, 'en', 'name', 'Changzhou Science and Technology Bureau'),
(54688, 45740, 'zh', 'name', 'åøøå·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(54689, 45741, 'en', 'name', 'Asahikawa, Hokkaido Nishi High School'),
(54690, 45741, 'ja', 'name', 'åŒ—ęµ·é“ę—­å·č„æé«˜ē­‰å­¦ę ”'),
(54691, 45742, 'en', 'name', 'Disability Rights New Jersey'),
(54692, 45743, 'en', 'name', 'Centre for Remote Sensing and Geographic Information Services'),
(54693, 45744, 'en', 'name', 'Funabashi Keimei High School'),
(54694, 45744, 'ja', 'name', 'åƒč‘‰ēœŒē«‹čˆ¹ę©‹å•“ę˜Žé«˜ē­‰å­¦ę ”'),
(54695, 45745, 'no_lang_code', 'name', 'Sequans Communications (United Kingdom)'),
(54696, 45746, 'ja', 'name', 'åŒ—é™øå­¦é™¢å¤§å­¦'),
(54697, 45746, 'no_lang_code', 'name', 'Hokuriku Gakuin University'),
(54698, 45747, 'ja', 'name', 'ē¦å³¶ēœŒćƒć‚¤ćƒ†ć‚Æćƒ—ćƒ©ć‚¶'),
(54699, 45747, 'no_lang_code', 'name', 'Fukushima Technology Centre (Japan)'),
(54700, 45748, 'en', 'name', 'Santa Clara City Library'),
(54701, 45749, 'en', 'name', 'Kurashiki Archaeological Museum'),
(54702, 45750, 'no_lang_code', 'name', 'QT Ultrasound (United States)'),
(54703, 45751, 'no_lang_code', 'name', 'Mersen (United States)'),
(54704, 45752, 'en', 'name', 'Yamato University'),
(54705, 45752, 'ja', 'name', '大和大学'),
(54706, 45753, 'en', 'name', 'International Culture University'),
(54707, 45754, 'en', 'name', 'Canadian Library Association'),
(54708, 45755, 'el', 'name', 'ΛΗΤΩ ĪœĪ±Ī¹ĪµĻ…Ļ„Ī¹ĪŗĻŒ, Ī“Ļ…Ī½Ī±Ī¹ĪŗĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ & Ī§ĪµĪ¹ĻĪæĻ…ĻĪ³Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ'),
(54709, 45755, 'en', 'name', 'LETO Maternity Hospital'),
(54710, 45756, 'en', 'name', 'Poornaprajna Institute of Scientific Research'),
(54711, 45757, 'en', 'name', 'Jiyu Gakuen Girls School'),
(54712, 45757, 'ja', 'name', 'č‡Ŗē”±å­¦åœ’ę˜Žę—„é¤Ø'),
(54713, 45758, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© Ų±ŁŁŠŁ‚ Ų§Ł„Ų­Ų±ŁŠŲ±ŁŠ'),
(54714, 45758, 'no_lang_code', 'name', 'Rafik Hariri University'),
(54715, 45759, 'en', 'name', 'Institute for Futures Studies'),
(54716, 45759, 'sv', 'name', 'Institutet fƶr Framtidsstudier'),
(54717, 45760, 'no_lang_code', 'name', 'Ozymes (Canada)'),
(54718, 45761, 'no_lang_code', 'name', 'Schneider Electric (United States)'),
(54719, 45762, 'en', 'name', 'Canadian University Music Society'),
(54720, 45762, 'fr', 'name', 'SociƩtƩ de musique des universitƩs canadiennes'),
(54721, 45763, 'en', 'name', 'Fukui Prefectural Maruoka High School'),
(54722, 45763, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹äøøå²”é«˜ē­‰å­¦ę ”'),
(54723, 45764, 'no_lang_code', 'name', 'Bio-Rad (Israel)'),
(54724, 45765, 'no_lang_code', 'name', 'BioTelemetry (United States)'),
(54725, 45766, 'en', 'name', 'Waukegan Public Library'),
(54726, 45767, 'en', 'name', 'Nara Prefectural Takada Senior High School'),
(54727, 45767, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹é«˜ē”°é«˜ē­‰å­¦ę ”'),
(54728, 45768, 'en', 'name', 'Jawaharlal Nehru Cancer Hospital and Research Centre'),
(54729, 45769, 'en', 'name', 'Kawasaki Univ Yato Elementary School'),
(54730, 45769, 'ja', 'name', 'å·å“Žåø‚ē«‹å¤§č°·ęˆøå°å­¦ę ”'),
(54731, 45770, 'de', 'name', 'Bundesverband der Deutschen Industrie'),
(54732, 45770, 'en', 'name', 'Federation of German Industries'),
(54733, 45771, 'en', 'name', 'National Institute of Technology, Kurume College'),
(54734, 45771, 'ja', 'name', 'ä¹…ē•™ē±³å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(54735, 45772, 'no_lang_code', 'name', 'Cempra Pharmaceuticals (United States)'),
(54736, 45773, 'no_lang_code', 'name', 'Vadient Optics (United States)'),
(54737, 45774, 'no_lang_code', 'name', 'Telefonica (Germany)'),
(54738, 45775, 'no_lang_code', 'name', 'Munro & Associates (United States)'),
(54739, 45776, 'en', 'name', 'Development Initiatives'),
(54740, 45777, 'no_lang_code', 'name', 'Himax (Taiwan)'),
(54741, 45777, 'zh', 'name', '儇景光電'),
(54742, 45778, 'no_lang_code', 'name', 'Trapeze (United States)'),
(54743, 45779, 'no_lang_code', 'name', 'Dow Chemical (South Korea)'),
(54744, 45780, 'fr', 'name', 'Brest''aim'),
(54745, 45781, 'en', 'name', 'Fujian Research Institute of Light Industry'),
(54746, 45781, 'zh', 'name', 'ē¦å»ŗēœč½»å·„äøšē ”ē©¶ę‰€'),
(54747, 45782, 'no_lang_code', 'name', 'Scientific Games (United Kingdom)'),
(54748, 45783, 'en', 'name', 'Travis Unified School District'),
(54749, 45784, 'en', 'name', 'British Nuclear Medicine Society'),
(54750, 45785, 'no_lang_code', 'name', 'Arkema (Germany)'),
(54751, 45786, 'no_lang_code', 'name', 'Assa Abloy (Australia)'),
(54752, 45787, 'no_lang_code', 'name', 'Flex (Mauritius)'),
(54753, 45788, 'no_lang_code', 'name', 'Fluidigm (Canada)'),
(54754, 45789, 'en', 'name', 'Association of Governing Boards of Universities and Colleges'),
(54755, 45790, 'en', 'name', 'Akita Prefectural Education Center'),
(54756, 45790, 'ja', 'name', 'ē§‹ē”°ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(54757, 45791, 'en', 'name', 'Central State Medical Academy'),
(54758, 45791, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(54759, 45792, 'en', 'name', 'Hamilton County Department of Education'),
(54760, 45793, 'de', 'name', 'Archiv der Jugendkulturen'),
(54761, 45794, 'en', 'name', 'Wikimedia Australia'),
(54762, 45795, 'en', 'name', 'First Flight Venture Center'),
(54763, 45796, 'no_lang_code', 'name', 'Motorola (South Korea)'),
(54764, 45797, 'en', 'name', 'Zhukovsky Air Force Engineering Academy'),
(54765, 45797, 'ru', 'name', 'Военно-Š²Š¾Š·Š“ŃƒŃˆŠ½Š°Ń ŠøŠ½Š¶ŠµŠ½ŠµŃ€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени профессора Š. Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾'),
(54766, 45798, 'no_lang_code', 'name', 'Stanley Black & Decker (United Kingdom)'),
(54767, 45799, 'en', 'name', 'Winston-Salem Chamber of Commerce'),
(54768, 45800, 'en', 'name', 'Boston Society of Architects'),
(54769, 45801, 'no_lang_code', 'name', 'Sangath'),
(54770, 45802, 'en', 'name', 'Kyoto College of Medical Science'),
(54771, 45802, 'ja', 'name', 'äŗ¬éƒ½åŒ»ē™‚ē§‘å­¦å¤§å­¦');
INSERT INTO `ror_settings` VALUES
(54772, 45803, 'en', 'name', 'Kofi Annan Foundation'),
(54773, 45804, 'el', 'name', '΄πουργείο Ī•ĻƒĻ‰Ļ„ĪµĻĪ¹ĪŗĻŽĪ½ και Διοικητικής Ī‘Ī½Ī±ĻƒĻ…Ī³ĪŗĻĻŒĻ„Ī·ĻƒĪ·Ļ‚'),
(54774, 45804, 'en', 'name', 'Ministry of the Interior and Administrative Reconstruction'),
(54775, 45805, 'en', 'name', 'Association for Library and Information Science Education'),
(54776, 45806, 'no_lang_code', 'name', 'Gweru Polytechnic Institute'),
(54777, 45807, 'en', 'name', 'Israel Brain Technologies'),
(54778, 45808, 'no_lang_code', 'name', 'Fincons Group (Italy)'),
(54779, 45809, 'en', 'name', 'Educational Service District 113'),
(54780, 45810, 'no_lang_code', 'name', 'MicroBio Engineering (United States)'),
(54781, 45811, 'no_lang_code', 'name', 'Mitsubishi Corporation (Germany)'),
(54782, 45812, 'en', 'name', 'Universal College of Healing Arts'),
(54783, 45813, 'no_lang_code', 'name', 'BAE Systems (Sweden)'),
(54784, 45814, 'it', 'name', 'Istituto Officina dei Materiali'),
(54785, 45815, 'en', 'name', 'Kitakyushu City Foundation For Promoting Arts And Culture'),
(54786, 45815, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ åŒ—ä¹å·žåø‚čŠøč”“ę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(54787, 45816, 'no_lang_code', 'name', 'Subsurface Insights (United States)'),
(54788, 45817, 'en', 'name', 'EducationSuperHighway'),
(54789, 45818, 'no_lang_code', 'name', '3v Geomatics (Canada)'),
(54790, 45819, 'no_lang_code', 'name', 'Kao Corporation (Germany)'),
(54791, 45820, 'no_lang_code', 'name', 'Knite (United States)'),
(54792, 45821, 'en', 'name', 'New Hampshire Department of Resources and Economic Development'),
(54793, 45822, 'no_lang_code', 'name', 'ReacTech (United States)'),
(54794, 45823, 'en', 'name', 'European Foundation Centre'),
(54795, 45824, 'no_lang_code', 'name', 'Svenska Cellulosa (United Kingdom)'),
(54796, 45824, 'sv', 'name', 'Svenska Cellulosa Aktiebolaget'),
(54797, 45825, 'no_lang_code', 'name', 'BioZyme (United States)'),
(54798, 45826, 'no_lang_code', 'name', 'Lonza (Germany)'),
(54799, 45827, 'en', 'name', 'Chapel Hill Breast Cancer Foundation'),
(54800, 45828, 'en', 'name', 'Nature Conservation Foundation'),
(54801, 45829, 'en', 'name', 'Public Law Library of King County'),
(54802, 45830, 'de', 'name', 'Sucht Schweiz'),
(54803, 45830, 'en', 'name', 'Addiction Switzerland'),
(54804, 45831, 'en', 'name', 'Imperial Household Agency'),
(54805, 45831, 'ja', 'name', '宮内庁'),
(54806, 45832, 'es', 'name', 'ecOceƔnica'),
(54807, 45833, 'en', 'name', 'Eastern North American Region International Biometric Society'),
(54808, 45834, 'id', 'name', 'Universitas Pekalongan'),
(54809, 45835, 'ja', 'name', 'ćƒ†ć‚£ć‚¢ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(54810, 45835, 'no_lang_code', 'name', 'TEAC (Japan)'),
(54811, 45836, 'en', 'name', 'Islamic Azad University Mehriz'),
(54812, 45836, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ł‡Ų±ŪŒŲ²'),
(54813, 45837, 'en', 'name', 'First Affiliated Hospital of Guangzhou Medical University'),
(54814, 45837, 'zh', 'name', 'å¹æå·žåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(54815, 45838, 'no_lang_code', 'name', 'Street Contxt (Canada)'),
(54816, 45839, 'no_lang_code', 'name', 'Sandvik (Switzerland)'),
(54817, 45840, 'en', 'name', 'Niimi College'),
(54818, 45840, 'ja', 'name', 'ę–°č¦‹å…¬ē«‹ēŸ­ęœŸå¤§å­¦'),
(54819, 45841, 'no_lang_code', 'name', 'Smarter Alloys (Canada)'),
(54820, 45842, 'en', 'name', 'Association Canadienne de Chirurgie Thoracique, Canadian Association of Thoracic Surgeons'),
(54821, 45843, 'en', 'name', 'Oxford Research Group'),
(54822, 45844, 'en', 'name', 'Trinity School of Medicine'),
(54823, 45845, 'en', 'name', 'Maricopa Community Colleges - Glendale Community College'),
(54824, 45846, 'en', 'name', 'Harford County Government'),
(54825, 45847, 'en', 'name', 'Toyota Transportation Research Institute'),
(54826, 45847, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč±Šē”°éƒ½åø‚äŗ¤é€šē ”ē©¶ę‰€'),
(54827, 45848, 'no_lang_code', 'name', 'Electronic Sensor Technology (United States)'),
(54828, 45849, 'en', 'name', 'Hamamatsu University Hospital'),
(54829, 45849, 'ja', 'name', 'ęµœę¾å¤§å­¦ 病院'),
(54830, 45850, 'en', 'name', 'Institute of Materials for Electronics and Magnetism'),
(54831, 45851, 'no_lang_code', 'name', 'PlanEnergi (Denmark)'),
(54832, 45852, 'en', 'name', 'Neyagawa City Board of Education'),
(54833, 45852, 'ja', 'name', 'åÆå±‹å·åø‚ę•™č‚²å§”å“”ä¼š'),
(54834, 45853, 'en', 'name', 'Tokyo College of Transport Studies'),
(54835, 45853, 'ja', 'name', 'ę±äŗ¬äŗ¤é€šēŸ­ęœŸå¤§å­¦'),
(54836, 45854, 'ja', 'name', 'äø‰éƒ·äø­å¤®ē·åˆē—…é™¢'),
(54837, 45854, 'no_lang_code', 'name', 'Misato Junshin General Hospital'),
(54838, 45855, 'ja', 'name', 'ć‚·ćƒć‚ŗćƒ³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(54839, 45855, 'no_lang_code', 'name', 'Citizen (Japan)'),
(54840, 45856, 'en', 'name', 'International Bone Research Association'),
(54841, 45857, 'de', 'name', 'Zentralklinik Bad Berka'),
(54842, 45858, 'en', 'name', 'Brain Injury Association of New York State'),
(54843, 45859, 'ja', 'name', 'ćƒŸćƒćƒ«ćƒćƒ©ć‚¤ćƒˆćƒ©ćƒœ'),
(54844, 45859, 'no_lang_code', 'name', 'Minerva Light lab (Japan)'),
(54845, 45860, 'pt', 'name', 'Associação Brasileira de PlanetÔrios'),
(54846, 45861, 'en', 'name', 'Jamestowne Society'),
(54847, 45862, 'no_lang_code', 'name', 'Bellwether Education Partners (United States)'),
(54848, 45863, 'it', 'name', 'Museo Cantonale di Storia Naturale di Lugano'),
(54849, 45864, 'no_lang_code', 'name', 'Sonata (United States)'),
(54850, 45865, 'ja', 'name', 'ć‚µćƒ³ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(54851, 45865, 'no_lang_code', 'name', 'Sanden (Japan)'),
(54852, 45866, 'en', 'name', 'State Intellectual Property Office'),
(54853, 45866, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶ēŸ„čÆ†äŗ§ęƒå±€'),
(54854, 45867, 'ja', 'name', 'ę±äŗ¬åæœåŒ–å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(54855, 45867, 'no_lang_code', 'name', 'Tokyo Ohka Kogyo (Japan)'),
(54856, 45868, 'ja', 'name', 'ę—„ęœ¬ē‰¹ę®Šé™¶ę„­ę Ŗå¼ä¼šē¤¾'),
(54857, 45868, 'no_lang_code', 'name', 'NGK Spark Plug (Japan)'),
(54858, 45869, 'no_lang_code', 'name', 'Intelligent Software Solutions (United States)'),
(54859, 45870, 'en', 'name', 'Swedish Movement Disorder Society'),
(54860, 45871, 'no_lang_code', 'name', 'ProKyma Technologies (United Kingdom)'),
(54861, 45872, 'it', 'name', 'Ospedale S. Matteo degli Infermi, Ospedale di Spoleto'),
(54862, 45873, 'no_lang_code', 'name', 'Olympus (Germany)'),
(54863, 45874, 'en', 'name', 'National Institute of Integrative Medicine'),
(54864, 45875, 'no_lang_code', 'name', 'Radiation Detection Technologies (United States)'),
(54865, 45876, 'en', 'name', 'United States Coast Guard'),
(54866, 45877, 'no_lang_code', 'name', 'Arris (United Kingdom)'),
(54867, 45878, 'en', 'name', 'Nagaoka Institute of Design'),
(54868, 45878, 'ja', 'name', '長岔造形大学'),
(54869, 45879, 'no_lang_code', 'name', 'Round Rock Research (United States)'),
(54870, 45880, 'en', 'name', 'Miyagi Prefecture Natori High School'),
(54871, 45880, 'ja', 'name', 'å®®åŸŽēœŒåå–é«˜ē­‰å­¦ę ”'),
(54872, 45881, 'en', 'name', 'Minami Kyushu Junior College'),
(54873, 45881, 'ja', 'name', 'å—ä¹å·žēŸ­ęœŸå¤§å­¦'),
(54874, 45882, 'no_lang_code', 'name', 'Aquaneers (United States)'),
(54875, 45883, 'no_lang_code', 'name', 'Legrand (United Kingdom)'),
(54876, 45884, 'en', 'name', 'Tokyo Management College'),
(54877, 45884, 'ja', 'name', 'ę±äŗ¬ēµŒå–¶ēŸ­ęœŸå¤§å­¦'),
(54878, 45885, 'no_lang_code', 'name', 'Muzzy Lane Software (United States)'),
(54879, 45886, 'en', 'name', 'Afrivac'),
(54880, 45887, 'en', 'name', 'The Institute of Energy Economics, Japan'),
(54881, 45887, 'ja', 'name', 'ć‚Øćƒćƒ«ć‚®ćƒ¼ēµŒęøˆē ”ē©¶ę‰€'),
(54882, 45888, 'de', 'name', 'ARL – Akademie für Raumentwicklung in der Leibniz-Gemeinschaft'),
(54883, 45888, 'en', 'name', 'ARL – Academy for Territorial Development in the Leibniz Association'),
(54884, 45889, 'no_lang_code', 'name', 'Faurecia (United States)'),
(54885, 45890, 'no_lang_code', 'name', 'Siliconware Precision Industries (Taiwan)'),
(54886, 45890, 'zh', 'name', 'ę­”čæŽä¾†åˆ°ēŸ½å“'),
(54887, 45891, 'en', 'name', 'Institute of Thermal Physics'),
(54888, 45891, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплофизики Š£Ń€Šž Š ŠŠ'),
(54889, 45892, 'no_lang_code', 'name', 'Nanion (Germany)'),
(54890, 45893, 'en', 'name', 'Yamanashi Prefectural Fisheries Technology Center'),
(54891, 45893, 'ja', 'name', 'ę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(54892, 45894, 'en', 'name', 'Wikimedia New York City'),
(54893, 45895, 'en', 'name', 'African Health Economics and Policy Association'),
(54894, 45896, 'no_lang_code', 'name', 'EXUS (United Kingdom)'),
(54895, 45897, 'ja', 'name', 'äŗ¬éƒ½ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æå­¦é™¢'),
(54896, 45897, 'no_lang_code', 'name', 'Kyoto Computer Gakuin'),
(54897, 45898, 'de', 'name', 'Arbeitsgemeinschaft Dermatologische Forschung'),
(54898, 45899, 'no_lang_code', 'name', 'RCA (United States)'),
(54899, 45900, 'no_lang_code', 'name', 'Planwel'),
(54900, 45901, 'en', 'name', 'Illinois School Psychologists Association'),
(54901, 45902, 'pt', 'name', 'Associação Nacional de Política e Administração da Educação'),
(54902, 45903, 'en', 'name', 'Consortium for School Networking'),
(54903, 45904, 'en', 'name', 'Ishikawa Prefectural Museum of Art'),
(54904, 45904, 'ja', 'name', 'ēŸ³å·ēœŒē«‹ē¾Žč”“é¤Ø'),
(54905, 45905, 'no_lang_code', 'name', 'Olympus (United Kingdom)'),
(54906, 45906, 'en', 'name', 'Iwate Prefectural Shizukuishi High School'),
(54907, 45906, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹é›«ēŸ³é«˜ē­‰å­¦ę ”'),
(54908, 45907, 'en', 'name', 'London Studio Centre'),
(54909, 45908, 'no_lang_code', 'name', 'Scuba Probe Technologies (United states)'),
(54910, 45909, 'en', 'name', 'Kitakyushu Yahata Special Needs Schools'),
(54911, 45909, 'ja', 'name', 'åŒ—ä¹å·žåø‚ē«‹å…«å¹”ē‰¹åˆ„ę”Æę“å­¦ę ”'),
(54912, 45910, 'en', 'name', 'Daqing City People''s Hospital'),
(54913, 45911, 'en', 'name', 'Osaka Municipal Toyosaki Junior High School'),
(54914, 45911, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹č±Šå“Žäø­å­¦ę ”'),
(54915, 45912, 'no_lang_code', 'name', 'Phusis Therapeutics (United States)'),
(54916, 45913, 'en', 'name', 'Sapporo Science Center'),
(54917, 45913, 'ja', 'name', 'ęœ­å¹Œåø‚é’å°‘å¹“ē§‘å­¦é¤Ø'),
(54918, 45914, 'no_lang_code', 'name', 'Solar Ship (Canada)'),
(54919, 45915, 'no_lang_code', 'name', 'eBay (South Korea)'),
(54920, 45916, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ē¾Žč”“é¤Ø'),
(54921, 45916, 'no_lang_code', 'name', 'Hyōgo Prefectural Museum of Art'),
(54922, 45917, 'no_lang_code', 'name', 'Keysight Technologies (Singapore)'),
(54923, 45918, 'fr', 'name', 'Groupe AFI'),
(54924, 45919, 'en', 'name', 'Okinawa Prefectural Board of Education'),
(54925, 45919, 'ja', 'name', 'ę²–ēø„ēœŒę•™č‚²å§”å“”ä¼š'),
(54926, 45920, 'no_lang_code', 'name', 'Flag Therapeutics (United States)'),
(54927, 45921, 'en', 'name', 'Tokyo Metropolitan Nerima High School'),
(54928, 45921, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ē·“é¦¬é«˜ē­‰å­¦ę ”'),
(54929, 45922, 'en', 'name', 'Police and Crime Commissioner for West Yorkshire'),
(54930, 45923, 'pt', 'name', 'Brazilian Institute of Technology for Leather, Footwear and Artifacts, Instituto Brasileiro de Tecnologia do Couro, CalƧado e Artefatos'),
(54931, 45924, 'en', 'name', 'Institute for Community Leadership'),
(54932, 45925, 'no_lang_code', 'name', 'i2C Solutions (United States)'),
(54933, 45926, 'en', 'name', 'Hiroshima City Museum of Contemporary Art'),
(54934, 45927, 'no_lang_code', 'name', 'Imense (United Kingdom)'),
(54935, 45928, 'en', 'name', 'Institute of National Economy'),
(54936, 45929, 'en', 'name', 'Espam Formation University'),
(54937, 45930, 'en', 'name', 'Bucks County Free Library'),
(54938, 45931, 'no_lang_code', 'name', 'Eaton (Austria)'),
(54939, 45932, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾äø‰č±åŒ–å­¦ē§‘å­¦ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(54940, 45932, 'no_lang_code', 'name', 'Mitsubishi Chemical Group Science and Technology Research Center (Japan)'),
(54941, 45933, 'pt', 'name', 'Sociedade Brasileira de BiofĆ­sica'),
(54942, 45934, 'de', 'name', 'Berufsgenossenschaft Rohstoffe und chemische Industrie'),
(54943, 45935, 'en', 'name', 'Tottori Prefectural Museum'),
(54944, 45935, 'ja', 'name', 'é³„å–ēœŒē«‹åšē‰©é¤Ø'),
(54945, 45936, 'ja', 'name', 'åœ‹å­øé™¢å¤§å­øåŒ—ęµ·é“ēŸ­ęœŸå¤§å­¦éƒØ'),
(54946, 45936, 'no_lang_code', 'name', 'Kokugakuin Junior College'),
(54947, 45937, 'no_lang_code', 'name', 'NanoSynTex (United States)'),
(54948, 45938, 'en', 'name', 'Indian River Central School District'),
(54949, 45939, 'en', 'name', 'Municipality of MedellĆ­n'),
(54950, 45939, 'es', 'name', 'Municipio de MedellĆ­n'),
(54951, 45940, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚øć‚Æćƒ©'),
(54952, 45940, 'no_lang_code', 'name', 'Fujikura (Japan)'),
(54953, 45941, 'de', 'name', 'Fraunhofer-Institut für Mikroelektronische Schaltungen und Systeme'),
(54954, 45941, 'en', 'name', 'Fraunhofer Institute for Microelectronic Circuits and Systems'),
(54955, 45942, 'en', 'name', 'Uwajima Fisheries High school'),
(54956, 45942, 'ja', 'name', 'ę„›åŖ›ēœŒē«‹å®‡å’Œå³¶ę°“ē”£é«˜ē­‰å­¦ę ”'),
(54957, 45943, 'he', 'name', 'פלהן'),
(54958, 45943, 'no_lang_code', 'name', 'Plasan (Israel)'),
(54959, 45944, 'de', 'name', 'Institut für Bioinformatik und Systembiologie'),
(54960, 45944, 'en', 'name', 'Institute of Bioinformatics and Systems Biology'),
(54961, 45945, 'en', 'name', 'Egyptian German Society of Zoology'),
(54962, 45946, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę¾äŗ•č£½ä½œę‰€'),
(54963, 45946, 'no_lang_code', 'name', 'Matsui Universal Joint Corporation (Japan)'),
(54964, 45947, 'ja', 'name', 'ę±ęµ·ē†åŒ–'),
(54965, 45947, 'no_lang_code', 'name', 'Tokai Rika (Japan)'),
(54966, 45948, 'en', 'name', 'Oriental University'),
(54967, 45948, 'ru', 'name', 'Восточный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(54968, 45949, 'en', 'name', 'Alberta Library'),
(54969, 45950, 'no_lang_code', 'name', 'EG Gilero (United States)'),
(54970, 45951, 'en', 'name', 'Hattori Botanical Laboratory'),
(54971, 45951, 'ja', 'name', 'ęœéƒØę¤ē‰©ē ”ē©¶ę‰€'),
(54972, 45952, 'ja', 'name', 'åœ°åŗ•ć®ę£®ćƒŸćƒ„ćƒ¼ć‚øć‚¢ćƒ '),
(54973, 45952, 'no_lang_code', 'name', 'Sendai City Tomizawa Site Museum'),
(54974, 45953, 'es', 'name', 'Universidad Panamericana de El Salvador'),
(54975, 45954, 'en', 'name', 'National Centre for Compositional Characterisation of Materials'),
(54976, 45955, 'en', 'name', 'Kandilli Observatory and Earthquake Research Institute'),
(54977, 45955, 'tr', 'name', 'Kandilli Rasathanesi ve Deprem Araştırma Enstitüsü'),
(54978, 45956, 'en', 'name', 'National Museum of Western Art'),
(54979, 45956, 'ja', 'name', 'å›½ē«‹č„æę“‹ē¾Žč”“é¤Ø'),
(54980, 45957, 'en', 'name', 'American Psychosomatic Society'),
(54981, 45958, 'no_lang_code', 'name', 'CritiTech (United States)'),
(54982, 45959, 'en', 'name', 'Shine'),
(54983, 45960, 'de', 'name', 'Fraunhofer-Institut für Grenzflächen- und Bioverfahrenstechnik'),
(54984, 45960, 'en', 'name', 'Fraunhofer Institute for Interfacial Engineering and Biotechnology'),
(54985, 45961, 'no_lang_code', 'name', 'Johnson Matthey (Germany)'),
(54986, 45962, 'en', 'name', 'Haines Borough Public Library'),
(54987, 45963, 'no_lang_code', 'name', 'Gemalto (Israel)'),
(54988, 45964, 'en', 'name', 'Hunan Sports Bureau'),
(54989, 45964, 'zh', 'name', 'ę¹–å—ēœä½“č‚²å±€'),
(54990, 45965, 'no_lang_code', 'name', 'Actinobac Biomed (United States)'),
(54991, 45966, 'en', 'name', 'Immunotherapy Centre for Prevention of Repeated Miscarriages'),
(54992, 45967, 'en', 'name', 'Tokyo College of Welfare'),
(54993, 45967, 'ja', 'name', 'ę±äŗ¬ē¦ē„‰å°‚é–€å­¦ę ”'),
(54994, 45968, 'en', 'name', 'Nagasaki Prefectural Education Center'),
(54995, 45968, 'ja', 'name', 'é•·å“ŽēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(54996, 45969, 'en', 'name', 'Fukushima Prefectural Asaka High School'),
(54997, 45969, 'ja', 'name', 'ē¦å³¶ēœŒē«‹å®‰ē©é«˜ē­‰å­¦ę ”'),
(54998, 45970, 'no_lang_code', 'name', 'Wikimedia District of Columbia'),
(54999, 45971, 'pt', 'name', 'Associação Nacional de Biossegurança'),
(55000, 45972, 'no_lang_code', 'name', 'Nufarm (Australia)'),
(55001, 45973, 'en', 'name', 'Machine Intelligence Research Labs'),
(55002, 45974, 'en', 'name', 'Digital Empowerment Foundation'),
(55003, 45975, 'en', 'name', 'Fort Bend County Libraries'),
(55004, 45976, 'ja', 'name', 'ćƒ€ć‚¤ć‚­ćƒ³å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(55005, 45976, 'no_lang_code', 'name', 'Daikin (Japan)'),
(55006, 45977, 'fr', 'name', 'Association pour le DƩveloppement et l''Innovation en Chimie au QuƩbec'),
(55007, 45978, 'en', 'name', 'FrameWorks Institute'),
(55008, 45979, 'en', 'name', 'Center for National University Finance and Management'),
(55009, 45979, 'ja', 'name', 'å›½ē«‹å¤§å­¦č²”å‹™ćƒ»ēµŒå–¶ć‚»ćƒ³ć‚æćƒ¼'),
(55010, 45980, 'no_lang_code', 'name', 'Ineos (Germany)'),
(55011, 45981, 'en', 'name', 'Gunma Prefectural Museum of History'),
(55012, 45982, 'en', 'name', 'Ministry of Agriculture Mechanisation and Irrigation Development'),
(55013, 45983, 'en', 'name', 'Virginia Intermont College'),
(55014, 45984, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŲ±Ł…ŁˆŁƒ الخاصة'),
(55015, 45984, 'en', 'name', 'Yarmouk Private University'),
(55016, 45985, 'no_lang_code', 'name', 'Locus Pharmacy (United States)'),
(55017, 45986, 'en', 'name', 'Japanese Society of Nephrology'),
(55018, 45986, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗ ę—„ęœ¬č…Žč‡“å­¦ä¼š'),
(55019, 45987, 'en', 'name', 'Kentucky Chamber of Commerce'),
(55020, 45988, 'es', 'name', 'Universidad Pedagógica de El Salvador'),
(55021, 45989, 'no_lang_code', 'name', 'Google (Switzerland)'),
(55022, 45990, 'en', 'name', 'Firoozgar General Hospital'),
(55023, 45990, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¢Ł…ŁˆŲ²Ų“ŪŒ و ŲÆŲ±Ł…Ų§Ł†ŪŒ فیروزگر'),
(55024, 45991, 'no_lang_code', 'name', 'Modine (South Korea)'),
(55025, 45992, 'ja', 'name', 'ćƒ‘ć‚¤ć‚Ŗćƒ‹ć‚¢ę Ŗå¼ä¼šē¤¾'),
(55026, 45992, 'no_lang_code', 'name', 'Pioneer (Japan)'),
(55027, 45993, 'en', 'name', 'Lilac Services for the Blind'),
(55028, 45994, 'es', 'name', 'Wikimedia MƩxico'),
(55029, 45995, 'en', 'name', 'South African Association of Women Graduates'),
(55030, 45996, 'es', 'name', 'Instituto Trabajo y Familia'),
(55031, 45997, 'en', 'name', 'People''s Liberation Army No. 150 Hospital'),
(55032, 45998, 'en', 'name', 'National Foundation for Australian Women'),
(55033, 45999, 'no_lang_code', 'name', 'BioNano Genomics (United States)'),
(55034, 46000, 'es', 'name', 'Ministerio de Desarrollo Agropecuario'),
(55035, 46001, 'de', 'name', 'Krankenhaus der Augustinerinnen'),
(55036, 46002, 'en', 'name', 'Friends of the Global Fight'),
(55037, 46003, 'fr', 'name', 'Entretiens de RƩƩducation et RƩadaptation Fonctionnelles'),
(55038, 46004, 'en', 'name', 'Agro Business Park'),
(55039, 46005, 'no_lang_code', 'name', 'Opera Software (Ireland)'),
(55040, 46006, 'no_lang_code', 'name', 'Excelitas Technologies (Singapore)'),
(55041, 46007, 'en', 'name', 'Engineers Without Borders Canada'),
(55042, 46007, 'fr', 'name', 'Ingénieurs sans Frontières Canada'),
(55043, 46008, 'no_lang_code', 'name', 'Prima Alloy Steel Universal (Indonesia)'),
(55044, 46009, 'en', 'name', 'Creative Research'),
(55045, 46010, 'en', 'name', 'Kagoshima Prefectural Institute For Education Research'),
(55046, 46010, 'ja', 'name', 'é¹æå…å³¶ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(55047, 46011, 'en', 'name', 'International Pacific University Women''s College'),
(55048, 46011, 'ja', 'name', 'ē’°å¤Ŗå¹³ę“‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(55049, 46012, 'no_lang_code', 'name', 'Mitsubishi Chemical (Germany)'),
(55050, 46013, 'ja', 'name', 'å¤§ęˆå»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(55051, 46013, 'no_lang_code', 'name', 'Taisei (Japan)'),
(55052, 46014, 'no_lang_code', 'name', 'ION Engineering (United States)'),
(55053, 46015, 'en', 'name', 'Moreland City Council'),
(55054, 46016, 'no_lang_code', 'name', 'Applied Research in Acoustics (United States)'),
(55055, 46017, 'no_lang_code', 'name', 'Tungsten Heavy Powder & Parts (United States)'),
(55056, 46018, 'en', 'name', 'Fraunhofer Italia Research'),
(55057, 46019, 'en', 'name', 'India Heritage Research Foundation'),
(55058, 46020, 'en', 'name', 'Fukuoka College of Agriculture'),
(55059, 46020, 'ja', 'name', 'ē¦å²”ēœŒč¾²ę„­å¤§å­¦ę ”'),
(55060, 46021, 'de', 'name', 'Forschungsgemeinschaft Werkzeuge und Werkstoffe'),
(55061, 46022, 'en', 'name', 'Niijima Gakuen Junior College'),
(55062, 46022, 'ja', 'name', 'ę–°å³¶å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(55063, 46023, 'ja', 'name', 'é’å±±å­¦é™¢å¹¼ēØšåœ’'),
(55064, 46023, 'no_lang_code', 'name', 'Aoyama Gakuin Kindergarten'),
(55065, 46024, 'pt', 'name', 'Fundação Museu do Homem Americano'),
(55066, 46025, 'en', 'name', 'Islamic Azad University of Mahabad'),
(55067, 46025, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد مهاباد'),
(55068, 46026, 'en', 'name', 'Hollywood Graduate School Of Beauty Business'),
(55069, 46026, 'ja', 'name', 'ē¾Žå®¹äŗ‹ę„­ć®ćƒćƒŖć‚¦ćƒƒćƒ‰å¤§å­¦é™¢'),
(55070, 46027, 'en', 'name', 'Directed Energy Professional Society'),
(55071, 46028, 'no_lang_code', 'name', 'SITAEL (Italy)'),
(55072, 46029, 'ja', 'name', 'ę±ę“‹ć‚“ćƒ å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(55073, 46029, 'no_lang_code', 'name', 'Toyo Tire and Rubber (Japan)'),
(55074, 46030, 'de', 'name', 'Leibniz-Institut für Psychologie'),
(55075, 46030, 'en', 'name', 'Leibniz Institute for Psychology'),
(55076, 46031, 'id', 'name', 'Universitas Amir Hamzah'),
(55077, 46032, 'no_lang_code', 'name', 'Zimmer Biomet (Germany)'),
(55078, 46033, 'en', 'name', 'Center for a New American Security'),
(55079, 46034, 'en', 'name', 'Bent Creek Institute'),
(55080, 46035, 'en', 'name', 'MassDevelopment'),
(55081, 46036, 'en', 'name', 'Education Resource Strategies'),
(55082, 46037, 'no_lang_code', 'name', 'CisThera (United States)'),
(55083, 46038, 'en', 'name', 'Tsuchiura City Museum'),
(55084, 46038, 'ja', 'name', 'åœŸęµ¦åø‚ē«‹åšē‰©é¤Ø'),
(55085, 46039, 'en', 'name', 'Metro South Health'),
(55086, 46040, 'en', 'name', 'Changji University'),
(55087, 46040, 'zh', 'name', 'ę˜Œå‰å­¦é™¢'),
(55088, 46041, 'ko', 'name', 'ķ˜„ėŒ€ģžė™ģ°Ø'),
(55089, 46041, 'no_lang_code', 'name', 'Hyundai Motors (South Korea)'),
(55090, 46042, 'he', 'name', 'רפאל - ×ž×¢×Ø×›×•×Ŗ לחימה ×ž×Ŗ×§×“×ž×•×Ŗ בע"מ'),
(55091, 46042, 'no_lang_code', 'name', 'Rafael Advanced Defense Systems (Israel)'),
(55092, 46043, 'en', 'name', 'Kobe Rokko Island High School'),
(55093, 46043, 'ja', 'name', 'ē„žęˆøåø‚ē«‹å…­ē”²ć‚¢ć‚¤ćƒ©ćƒ³ćƒ‰é«˜ē­‰å­¦ę ”'),
(55094, 46044, 'en', 'name', 'American Committee for the Weizmann Institute of Science'),
(55095, 46045, 'en', 'name', 'Government Chemist Laboratory Agency'),
(55096, 46046, 'en', 'name', 'Video Pool Media Arts Centre'),
(55097, 46047, 'en', 'name', 'Shinshu Honan Junior College'),
(55098, 46047, 'ja', 'name', 'äæ”å·žč±Šå—ēŸ­ęœŸå¤§å­¦'),
(55099, 46048, 'en', 'name', 'Shizuoka Prefectural Science and Technology High School'),
(55100, 46048, 'ja', 'name', 'é™å²”ēœŒē«‹ē§‘å­¦ęŠ€č”“é«˜ē­‰å­¦ę ”'),
(55101, 46049, 'en', 'name', 'Future Library'),
(55102, 46050, 'no_lang_code', 'name', 'Lockheed Martin (Australia)'),
(55103, 46051, 'no_lang_code', 'name', 'Morgan Advanced Materials (Germany)'),
(55104, 46052, 'ja', 'name', 'äø‰č±č‡Ŗå‹•č»Šå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(55105, 46052, 'no_lang_code', 'name', 'Mitsubishi Motors (Japan)'),
(55106, 46053, 'en', 'name', 'Kawaguchi Junior College'),
(55107, 46053, 'ja', 'name', 'å·å£ēŸ­ęœŸå¤§å­¦'),
(55108, 46054, 'en', 'name', 'Royal Association for Deaf people'),
(55109, 46055, 'en', 'name', 'Chiba Museum of Science and Industry'),
(55110, 46055, 'ja', 'name', 'åƒč‘‰ēœŒē«‹ē¾ä»£ē”£ę„­ē§‘å­¦é¤Ø'),
(55111, 46056, 'it', 'name', 'Studio Associato Gaia'),
(55112, 46057, 'en', 'name', 'Research Institute for Electromagnetic Materials'),
(55113, 46057, 'ja', 'name', 'é›»ē£ęę–™ē ”ē©¶ę‰€'),
(55114, 46058, 'en', 'name', 'Mount Sinai Beth Israel'),
(55115, 46059, 'en', 'name', 'Turku PET Centre'),
(55116, 46060, 'en', 'name', 'Cancer Research for the Ozarks'),
(55117, 46061, 'no_lang_code', 'name', 'AT&T (United Kingdom)'),
(55118, 46062, 'de', 'name', 'Elternverein für Leukämie- und Krebskranke Kinder Gießen'),
(55119, 46063, 'no_lang_code', 'name', 'Medosome Biotec (United States)'),
(55120, 46064, 'es', 'name', 'Instituto Boliviano de Ciencia y TecnologĆ­a Nuclear'),
(55121, 46065, 'en', 'name', 'Hiroshima Prefectural Museum of History'),
(55122, 46065, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(55123, 46066, 'en', 'name', 'Center for the Advancement of Natural Discoveries using Light Emission'),
(55124, 46067, 'no_lang_code', 'name', 'AES (United Kingdom)'),
(55125, 46068, 'en', 'name', 'Intersect'),
(55126, 46069, 'no_lang_code', 'name', 'Maxim Integrated (Germany)'),
(55127, 46070, 'en', 'name', 'University Centre Saint-Ignatius Antwerp'),
(55128, 46071, 'no_lang_code', 'name', 'Nordson (United Kingdom)'),
(55129, 46072, 'en', 'name', 'Hajera Taju University College'),
(55130, 46073, 'en', 'name', 'Kanazawa Municipal Kenrokuen Elementary School'),
(55131, 46073, 'ja', 'name', 'é‡‘ę²¢åø‚ē«‹å…¼å…­å°å­¦ę ”'),
(55132, 46074, 'de', 'name', 'Landesmuseum'),
(55133, 46074, 'en', 'name', 'Swiss National Museum'),
(55134, 46075, 'no_lang_code', 'name', 'Arbressence (Canada)'),
(55135, 46076, 'en', 'name', 'North Central Catchment Management Authority'),
(55136, 46077, 'ja', 'name', 'äø€å®®åø‚åšē‰©é¤Ø'),
(55137, 46077, 'no_lang_code', 'name', 'Ichinomiya City Museum'),
(55138, 46078, 'en', 'name', 'American Society of Tropical Medicine and Hygiene'),
(55139, 46079, 'en', 'name', 'Economic Development Agency of the Principality of Asturias'),
(55140, 46079, 'es', 'name', 'Instituto de Desarrollo Económico del Principado de Asturias'),
(55141, 46080, 'bs', 'name', 'SveučiliŔte Vitez'),
(55142, 46080, 'no_lang_code', 'name', 'Univerzitet Vitez'),
(55143, 46081, 'en', 'name', 'Kenya National Library Service'),
(55144, 46082, 'en', 'name', 'China Agricultural Museum'),
(55145, 46083, 'en', 'name', 'Tianjin Research Institute of Water Transport Engineering'),
(55146, 46083, 'zh', 'name', 'å¤©ē§‘é™¢å®˜ę–¹ē½‘ē«™'),
(55147, 46084, 'en', 'name', 'Technology Partnership of Nagoya University'),
(55148, 46085, 'no_lang_code', 'name', 'Furukawa Electric (Germany)'),
(55149, 46086, 'no_lang_code', 'name', 'Zumtobel Group (Austria)'),
(55150, 46087, 'no_lang_code', 'name', 'Introspective Systems (United States)'),
(55151, 46088, 'pt', 'name', 'Minas Jr'),
(55152, 46089, 'en', 'name', 'Chesapeake Public Schools'),
(55153, 46090, 'en', 'name', 'Date City Institute of Funnkawann Culture'),
(55154, 46091, 'en', 'name', 'Ancient Orient Museum'),
(55155, 46091, 'ja', 'name', 'å¤ä»£ć‚ŖćƒŖć‚Øćƒ³ćƒˆåšē‰©é¤Ø'),
(55156, 46092, 'en', 'name', 'Kochi Gakuen College'),
(55157, 46092, 'ja', 'name', 'é«˜ēŸ„å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(55158, 46093, 'ko', 'name', 'ė™ė¶€ ķ•˜ģ“ķ…'),
(55159, 46093, 'no_lang_code', 'name', 'Dongbu HiTek (South Korea)'),
(55160, 46094, 'no_lang_code', 'name', 'Sage Science (United States)'),
(55161, 46095, 'no_lang_code', 'name', 'Ontario Drive & Gear (Canada)'),
(55162, 46096, 'en', 'name', 'Department of Environment and Natural Resources'),
(55163, 46097, 'en', 'name', 'Zhejiang Industry Polytechnic College'),
(55164, 46097, 'zh', 'name', 'ęµ™ę±Ÿå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(55165, 46098, 'es', 'name', 'Centro Universitario Ciudad Vieja'),
(55166, 46099, 'en', 'name', 'Ilkley Coronation Hospital'),
(55167, 46100, 'en', 'name', 'Chinese Materials Research Society'),
(55168, 46100, 'zh', 'name', 'äø­å›½ęę–™ē ”ē©¶å­¦ä¼š'),
(55169, 46101, 'no_lang_code', 'name', 'Esri (Canada)'),
(55170, 46102, 'no_lang_code', 'name', 'MinebeaMitsumi (Germany)'),
(55171, 46103, 'en', 'name', 'Ningxia Academy of Agriculture and Forestry Sciences'),
(55172, 46103, 'zh', 'name', 'å†œęž—ē§‘å­¦é™¢å®å¤ē§‘å­¦é™¢'),
(55173, 46104, 'ja', 'name', 'ćƒ–ćƒ©ć‚¶ćƒ¼å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(55174, 46104, 'no_lang_code', 'name', 'Brother Industries (Japan)'),
(55175, 46105, 'no_lang_code', 'name', 'Inversa Systems (Canada)'),
(55176, 46106, 'en', 'name', 'Universal Technical Institute'),
(55177, 46107, 'no_lang_code', 'name', 'Stryker (United Kingdom)'),
(55178, 46108, 'no_lang_code', 'name', 'Kodak (Israel)'),
(55179, 46109, 'en', 'name', 'National Museum of Art Osaka'),
(55180, 46109, 'ja', 'name', 'å›½ē«‹å›½éš›ē¾Žč”“é¤Ø'),
(55181, 46110, 'es', 'name', 'Fundación para la Educación y el Desarrollo Social'),
(55182, 46111, 'no_lang_code', 'name', 'Deutsche Telekom (Singapore)'),
(55183, 46112, 'no_lang_code', 'name', 'Schneider Electric (Australia)'),
(55184, 46113, 'en', 'name', 'Medical Lake School District'),
(55185, 46114, 'en', 'name', 'Harry S Truman Coordinating Council'),
(55186, 46115, 'en', 'name', 'Advanced Machining Technology and Development Association'),
(55187, 46115, 'ja', 'name', 'å…ˆē«ÆåŠ å·„ę©Ÿę¢°ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(55188, 46116, 'de', 'name', 'Institut der deutschen Wirtschaft Kƶln'),
(55189, 46116, 'en', 'name', 'Cologne Institute for Economic Research'),
(55190, 46117, 'en', 'name', 'Islamic Azad University Mobarakeh'),
(55191, 46117, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد مبارکه'),
(55192, 46118, 'de', 'name', 'Blanke Meier Evers RechtsanwƤlte in Partnerschaft'),
(55193, 46119, 'en', 'name', 'Open Evidence'),
(55194, 46120, 'aa', 'name', 'ē«‹å‘½é¤Øäø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(55195, 46120, 'en', 'name', 'Ritsumeikan Junior and Senior High School'),
(55196, 46121, 'no_lang_code', 'name', 'Echostar (Ukraine)'),
(55197, 46122, 'en', 'name', 'CPC Heilongjiang Provincial Committee Party School'),
(55198, 46122, 'zh', 'name', 'äø­å…±é»‘é¾™ę±Ÿēœå§”å…šę ”'),
(55199, 46123, 'ja', 'name', 'ć‚¹ć‚æćƒ³ćƒ¬ćƒ¼é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(55200, 46123, 'no_lang_code', 'name', 'Stanley Electric (Japan)'),
(55201, 46124, 'en', 'name', 'Oita Prefectural Hiji support school'),
(55202, 46124, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹ę—„å‡ŗę”Æę“å­¦ę ”'),
(55203, 46125, 'en', 'name', 'Copper Development Association'),
(55204, 46126, 'en', 'name', 'Watertown City School District'),
(55205, 46127, 'de', 'name', 'Fraunhofer-Institut für Angewandte Informationstechnik'),
(55206, 46127, 'en', 'name', 'Fraunhofer Institute for Applied Information Technology'),
(55207, 46128, 'no_lang_code', 'name', 'Stryker (Israel)'),
(55208, 46129, 'de', 'name', 'Deutsches Kupferinstitut Berufsverband'),
(55209, 46130, 'en', 'name', 'Tochigi Prefectural Museum of Fine Arts'),
(55210, 46130, 'ja', 'name', 'ę ƒęœØēœŒē«‹ē¾Žč”“é¤Ø'),
(55211, 46131, 'en', 'name', 'University of the West Indies'),
(55212, 46132, 'en', 'name', 'American Association of Neurological Surgeons'),
(55213, 46133, 'no_lang_code', 'name', 'Wikimedia Ukraine'),
(55214, 46133, 'uk', 'name', 'ВікімеГіа Україна'),
(55215, 46134, 'ja', 'name', 'ä½å‹ē†å·„ę Ŗå¼ä¼šē¤¾'),
(55216, 46134, 'no_lang_code', 'name', 'Sumitomo Riko (Japan)'),
(55217, 46135, 'en', 'name', 'Baltimore County Public Library'),
(55218, 46136, 'en', 'name', 'Miyagi Prefectural Ishinomaki Support School'),
(55219, 46136, 'ja', 'name', 'å®®åŸŽēœŒē«‹ēŸ³å·»ę”Æę“å­¦ę ”'),
(55220, 46137, 'no_lang_code', 'name', 'Energy Sense Finance (United States)'),
(55221, 46138, 'pt', 'name', 'Conselho Nacional de Pesquisa e Pós-graduação em Direito'),
(55222, 46139, 'no_lang_code', 'name', 'Miba (Austria)'),
(55223, 46140, 'no_lang_code', 'name', 'Sulzer (United Kingdom)'),
(55224, 46141, 'en', 'name', 'International Society for Vaccines'),
(55225, 46142, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ за ŠµŃ‚Š½Š¾Š»Š¾Š³ŠøŃ Šø фолклористика с Етнографски музей при Š‘ŠŠ'),
(55226, 46142, 'en', 'name', 'Institute of Ethnology and Folklore Studies with Ethnographic Museum'),
(55227, 46143, 'en', 'name', 'Pakistan Nuclear Regulatory Authority'),
(55228, 46143, 'ur', 'name', 'پاکستان Ł†ŁŠŲ¤ŁƒŁ„Ų± Ų±ŁŠŚÆŁŠŁ„Ų±Ł¹ŁˆŁ‰ اثھارٹى'),
(55229, 46144, 'no_lang_code', 'name', 'Wikimedia Serbia'),
(55230, 46144, 'sr', 'name', 'Š’ŠøŠŗŠøŠ¼ŠµŠ“ŠøŃ˜Š° Š”Ń€Š±ŠøŃ˜Šµ'),
(55231, 46145, 'en', 'name', 'University College of Islam Melaka'),
(55232, 46145, 'ms', 'name', 'Kolej Universiti Islam Melaka'),
(55233, 46146, 'en', 'name', 'Yamaguchi Prefectural Shimonoseki Industrial School'),
(55234, 46146, 'ja', 'name', 'å±±å£ēœŒē«‹äø‹é–¢å·„ę„­é«˜ē­‰å­¦ę ”'),
(55235, 46147, 'en', 'name', 'Main Roads Western Australia'),
(55236, 46148, 'ja', 'name', 'ę·‘å¾³ēŸ­ęœŸå¤§å­¦'),
(55237, 46148, 'no_lang_code', 'name', 'Shukutoku Junior College'),
(55238, 46149, 'de', 'name', 'Ostalb-Klinikum Aalen'),
(55239, 46150, 'no_lang_code', 'name', 'Manroland (Germany)'),
(55240, 46151, 'no_lang_code', 'name', 'International Baby Food Action Network'),
(55241, 46152, 'ja', 'name', 'å¤§ę—„ęœ¬å°åˆ·'),
(55242, 46152, 'no_lang_code', 'name', 'Dai Nippon Printing (Japan)'),
(55243, 46153, 'no_lang_code', 'name', 'Macronix International (Taiwan)'),
(55244, 46154, 'en', 'name', 'Department for International Trade'),
(55245, 46155, 'no_lang_code', 'name', 'ProAmpac (United States)'),
(55246, 46156, 'en', 'name', 'Dawliffe Hall Education Foundation'),
(55247, 46157, 'en', 'name', 'Kani City Sunan Junior High School'),
(55248, 46157, 'ja', 'name', 'č˜‡å—äø­å­¦ę ”'),
(55249, 46158, 'de', 'name', 'Salomon Ludwig Steinheim-Institut'),
(55250, 46159, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‰ćƒćƒ³ćƒ†ć‚¹ćƒˆ'),
(55251, 46159, 'no_lang_code', 'name', 'Advantest (Japan)'),
(55252, 46160, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ć‚³ćƒ³'),
(55253, 46160, 'no_lang_code', 'name', 'Nikon (Japan)'),
(55254, 46161, 'en', 'name', 'National Hospital Organization Iobyoin'),
(55255, 46161, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹åŒ»ēŽ‹ē—…é™¢'),
(55256, 46162, 'en', 'name', 'Islamic Azad University Dehaghan'),
(55257, 46162, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ دهاقان Ų§Ų³Ł„Ų§Ł…ŪŒ'),
(55258, 46163, 'no_lang_code', 'name', 'Visiscience (United States)'),
(55259, 46164, 'en', 'name', 'International Institute of Advanced Islamic Studies'),
(55260, 46165, 'en', 'name', 'Northwest African American Museum'),
(55261, 46166, 'it', 'name', 'Istituzione delle Biblioteche di Roma'),
(55262, 46167, 'no_lang_code', 'name', 'Applied Materials (Singapore)'),
(55263, 46168, 'en', 'name', 'Tourism College of Zhejiang'),
(55264, 46168, 'zh', 'name', 'ęµ™ę±Ÿę—…ęøøčŒäøšå­¦é™¢'),
(55265, 46169, 'en', 'name', 'Forest Industry Research Institute'),
(55266, 46169, 'vi', 'name', 'Viện NghiĆŖn cứu CĆ“ng nghiệp rừng'),
(55267, 46170, 'en', 'name', 'National Institute of Technology, Kumamoto College'),
(55268, 46170, 'ja', 'name', 'ē†Šęœ¬é«˜ē­‰å°‚é–€å­¦ę ”'),
(55269, 46171, 'no_lang_code', 'name', 'Immunomic Therapeutics (United States)'),
(55270, 46172, 'fi', 'name', 'Wikimedia Suomi'),
(55271, 46173, 'en', 'name', 'Contra Costa County Library'),
(55272, 46174, 'ja', 'name', 'åå¼µåø‚ć¤ć¤ć˜ćŒćŠć‹å°å­¦ę ”'),
(55273, 46174, 'no_lang_code', 'name', 'Tsutsujigaoka Elementary School'),
(55274, 46175, 'no_lang_code', 'name', 'Carl Zeiss (Australia)'),
(55275, 46176, 'no_lang_code', 'name', 'Joyson Safety Systems (Germany)'),
(55276, 46177, 'en', 'name', 'Brazilian Medical Association'),
(55277, 46177, 'pt', 'name', 'Associação Médica Brasileira'),
(55278, 46178, 'no_lang_code', 'name', 'Flow International Corporation (Germany)'),
(55279, 46179, 'en', 'name', 'Foundation for Louisiana'),
(55280, 46180, 'en', 'name', 'Institute of Environment and Resource System'),
(55281, 46180, 'ja', 'name', 'ē’°å¢ƒč³‡ęŗć‚·ć‚¹ćƒ†ćƒ ē·åˆē ”ē©¶ę‰€'),
(55282, 46181, 'en', 'name', 'National Australia Bank'),
(55283, 46182, 'en', 'name', 'American University in London'),
(55284, 46183, 'en', 'name', 'Fukui Prefectural Dinosaur Museum'),
(55285, 46183, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹ęē«œåšē‰©é¤Ø'),
(55286, 46184, 'en', 'name', 'People''s Liberation Army 401 Hospital'),
(55287, 46184, 'zh', 'name', '中国人民解放军第401医院'),
(55288, 46185, 'en', 'name', 'Fujimoto Dental and Oral Surgery Clinic'),
(55289, 46185, 'ja', 'name', 'č—¤ęœ¬ę­Æē§‘å£č…”å¤–ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(55290, 46186, 'fi', 'name', 'Lounais-Suomen SyƶpƤyhdistys'),
(55291, 46187, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(55292, 46187, 'en', 'name', 'University of Modern Sciences'),
(55293, 46188, 'en', 'name', 'Koshien Junior College'),
(55294, 46188, 'ja', 'name', 'ē”²å­åœ’ēŸ­ęœŸå¤§å­¦'),
(55295, 46189, 'pt', 'name', 'Fundação Jorge Duprat Figueiredo de Segurança e Medicina do Trabalho'),
(55296, 46190, 'no_lang_code', 'name', 'BOE Technology Group (China)'),
(55297, 46191, 'no_lang_code', 'name', 'Percuros (Netherlands)'),
(55298, 46192, 'en', 'name', 'American College of Radiology Imaging Network'),
(55299, 46193, 'en', 'name', 'West Georgia Technical College'),
(55300, 46194, 'en', 'name', 'Nuclear Institute for Agriculture and Biology'),
(55301, 46195, 'no_lang_code', 'name', 'Lucent Optics (United States)'),
(55302, 46196, 'en', 'name', 'BARKA Foundation'),
(55303, 46197, 'en', 'name', 'Mesothelioma Applied Research Foundation'),
(55304, 46198, 'no_lang_code', 'name', 'Tecnic (Italy)'),
(55305, 46199, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē„žęˆøč£½é‹¼ę‰€'),
(55306, 46199, 'no_lang_code', 'name', 'Kobe Steel (Japan)'),
(55307, 46200, 'en', 'name', 'National Transportation Safety Board'),
(55308, 46201, 'en', 'name', 'North Dakota Protection and Advocacy Project'),
(55309, 46202, 'en', 'name', 'Children’s AIDS Fund International'),
(55310, 46203, 'no_lang_code', 'name', 'British American Tobacco (Canada)'),
(55311, 46204, 'es', 'name', 'Universidad de Sonsonate'),
(55312, 46205, 'en', 'name', 'Kumamoto Prefectural Board of Education'),
(55313, 46205, 'ja', 'name', 'ē†Šęœ¬ēœŒę•™č‚²å§”å“”ä¼š'),
(55314, 46206, 'en', 'name', 'Guangzhou Vocational College of Science and Technology'),
(55315, 46206, 'zh', 'name', 'å¹æå·žē§‘ęŠ€čŒäøšęŠ€ęœÆå­¦é™¢'),
(55316, 46207, 'cs', 'name', 'KrajskƔ HygienickƔ Stanice MoravskoslezskƩho Kraje'),
(55317, 46207, 'en', 'name', 'Regional Public Health Authority of Moravian - Silesian Region'),
(55318, 46208, 'no_lang_code', 'name', 'Nokia (Ireland)'),
(55319, 46209, 'en', 'name', 'International Planned Parenthood Federation'),
(55320, 46210, 'en', 'name', 'National Institute of Education Sciences'),
(55321, 46210, 'zh', 'name', '中国教育科学研究院'),
(55322, 46211, 'en', 'name', 'British Blood Transfusion Society'),
(55323, 46212, 'en', 'name', 'Hanseatic Institute of Technology'),
(55324, 46213, 'en', 'name', 'Foundation for Environment Climate and Technology'),
(55325, 46214, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do Sul de Minas, Instituto Federal do Sul de Minas'),
(55326, 46215, 'no_lang_code', 'name', 'IHS Markit (Australia)'),
(55327, 46216, 'en', 'name', 'Northern Ireland Hospice'),
(55328, 46217, 'en', 'name', 'Tokyo Metropolitan East High School'),
(55329, 46217, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę±é«˜ē­‰å­¦ę ”'),
(55330, 46218, 'en', 'name', 'Osaka Prefectural Horticulture High School'),
(55331, 46218, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹åœ’čŠøé«˜ē­‰å­¦ę ”'),
(55332, 46219, 'en', 'name', 'Mie Prefecture TatsuTsu Commercial High School'),
(55333, 46219, 'ja', 'name', 'äø‰é‡ēœŒē«‹ę“„å•†ę„­é«˜ē­‰å­¦ę ”'),
(55334, 46220, 'no_lang_code', 'name', 'Advanced Electrophoresis Solutions (Canada)'),
(55335, 46221, 'no_lang_code', 'name', 'Honeywell (Australia)'),
(55336, 46222, 'no_lang_code', 'name', 'Lutron Electronics (United States)'),
(55337, 46223, 'no_lang_code', 'name', 'Evernia (Czechia)'),
(55338, 46224, 'en', 'name', 'Fukui City Museum of Natural History'),
(55339, 46225, 'pt', 'name', 'Sociedade Latino Americana de Biomateriais e ƓrgĆ£os Artificiais'),
(55340, 46226, 'tr', 'name', 'Ƈamlıca Erdem Hastahanesi'),
(55341, 46227, 'ja', 'name', 'ę˜­å’Œå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(55342, 46227, 'no_lang_code', 'name', 'Showagakuin Junior College'),
(55343, 46228, 'en', 'name', 'North Carolina Association for Biomedical Research'),
(55344, 46229, 'en', 'name', 'Manhattan Institute for Policy Research'),
(55345, 46230, 'fr', 'name', 'UniversitƩ de Fianarantsoa'),
(55346, 46231, 'en', 'name', 'Twin Cities Orthopedics'),
(55347, 46232, 'az', 'name', 'Bakı Biznes Universiteti'),
(55348, 46232, 'en', 'name', 'Baku Business University'),
(55349, 46232, 'ru', 'name', 'Бакинский Университет Бизнеса'),
(55350, 46233, 'en', 'name', 'China National Bamboo Research Center'),
(55351, 46233, 'zh', 'name', 'å›½å®¶ęž—äøšå±€ē«¹å­ē ”ē©¶å¼€å‘äø­åæƒ'),
(55352, 46234, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę­¦č”µäø˜é«˜ē­‰å­¦ę ”'),
(55353, 46234, 'no_lang_code', 'name', 'Tokyo Metropolitan Musashigaoka High School'),
(55354, 46235, 'en', 'name', 'Collaboration for Australian Weather and Climate Research'),
(55355, 46236, 'no_lang_code', 'name', 'GEM Tox Consultants & Labs (United States)'),
(55356, 46237, 'no_lang_code', 'name', 'Dolby (United States)'),
(55357, 46238, 'no_lang_code', 'name', 'BitCan (Canada)'),
(55358, 46239, 'en', 'name', 'Kitakyushu National College of Technology'),
(55359, 46239, 'ja', 'name', 'åŒ—ä¹å·žå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(55360, 46240, 'no_lang_code', 'name', 'Bayer (New Zealand)'),
(55361, 46241, 'fr', 'name', 'NephroCare Tassin-Charcot'),
(55362, 46242, 'en', 'name', 'American Medical Women''s Association'),
(55363, 46243, 'no_lang_code', 'name', 'EVRAZ (Canada)'),
(55364, 46244, 'ja', 'name', 'NTNę Ŗå¼ä¼šē¤¾'),
(55365, 46244, 'no_lang_code', 'name', 'NTN (Japan)'),
(55366, 46245, 'no_lang_code', 'name', 'Mission Bio (United States)'),
(55367, 46246, 'en', 'name', 'Dayton Clinical Oncology Program'),
(55368, 46247, 'no_lang_code', 'name', 'Accucaps (Canada)'),
(55369, 46248, 'en', 'name', 'Kobe City Museum'),
(55370, 46248, 'ja', 'name', 'ē„žęˆøåø‚ē«‹åšē‰©é¤Ø'),
(55371, 46249, 'no_lang_code', 'name', 'STMicroelectronics (United States)'),
(55372, 46250, 'no_lang_code', 'name', 'Maidana Research (United States)'),
(55373, 46251, 'en', 'name', 'Nitobe Bunka College'),
(55374, 46251, 'ja', 'name', 'ę–°ęø”ęˆøę–‡åŒ–ēŸ­ęœŸå¤§å­¦'),
(55375, 46252, 'fr', 'name', 'Centre Hospitalier de Lens'),
(55376, 46253, 'en', 'name', 'Ibaraki Nature Museum'),
(55377, 46253, 'ja', 'name', 'čŒØåŸŽēœŒč‡Ŗē„¶åšē‰©é¤Ø'),
(55378, 46254, 'en', 'name', 'International Planned Parenthood Federation'),
(55379, 46255, 'no_lang_code', 'name', 'Flex (Germany)'),
(55380, 46256, 'en', 'name', 'Tokushima Prefectural Police'),
(55381, 46256, 'ja', 'name', '徳島県警察本部'),
(55382, 46257, 'de', 'name', 'Forschungsinstitut für Logistik'),
(55383, 46258, 'en', 'name', 'Kyoto Prefectural Nishimaizuru High School'),
(55384, 46258, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹č„æčˆžé¶“é«˜ē­‰å­¦ę ”'),
(55385, 46259, 'no_lang_code', 'name', 'CM Technologies (United States)'),
(55386, 46260, 'no_lang_code', 'name', 'Advanced Materials Corporation (United States)'),
(55387, 46261, 'en', 'name', 'British Deer Society'),
(55388, 46262, 'en', 'name', 'Gakushuin Primary School'),
(55389, 46262, 'ja', 'name', 'å­¦ēæ’é™¢åˆē­‰ē§‘'),
(55390, 46263, 'ja', 'name', 'ę—„äŗœåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(55391, 46263, 'no_lang_code', 'name', 'Nichia Corporation (Japan)'),
(55392, 46264, 'no_lang_code', 'name', 'NuVue Therapeutics (United States)'),
(55393, 46265, 'no_lang_code', 'name', 'SYNERGX Technologies (Canada)'),
(55394, 46266, 'no_lang_code', 'name', 'Johnson Controls (United Kingdom)'),
(55395, 46267, 'en', 'name', 'Liaoning Provincial Food and Drug Administration'),
(55396, 46267, 'zh', 'name', 'č¾½å®ēœé£Ÿå“čÆå“ē›‘ē£ē®”ē†å±€'),
(55397, 46268, 'en', 'name', 'Consortium of European Research Libraries'),
(55398, 46269, 'no', 'name', 'Revmatismesykehuset'),
(55399, 46270, 'en', 'name', 'Queensland Rail'),
(55400, 46271, 'no_lang_code', 'name', 'Curtiss-Wright (United Kingdom)'),
(55401, 46272, 'no_lang_code', 'name', 'Hunan Mawangdui Hospital'),
(55402, 46273, 'en', 'name', 'Lancaster University Ghana'),
(55403, 46274, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹åŸŽå±±é«˜ē­‰å­¦ę ”'),
(55404, 46274, 'no_lang_code', 'name', 'Osaka Prefectural Shiroyama High School'),
(55405, 46275, 'en', 'name', 'Hokkaido Kitami Hokuto High School'),
(55406, 46275, 'ja', 'name', 'åŒ—ęµ·é“åŒ—č¦‹åŒ—ę–—é«˜ē­‰å­¦ę ”'),
(55407, 46276, 'en', 'name', 'Gunma Industrial Technology Center'),
(55408, 46276, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹ē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(55409, 46277, 'no_lang_code', 'name', 'TechnipFMC (Italy)'),
(55410, 46278, 'no_lang_code', 'name', 'LuK Lamellen und Kupplungsbau (Germany)'),
(55411, 46279, 'en', 'name', 'Nonproliferation Policy Education Center'),
(55412, 46280, 'en', 'name', 'Gunma Nikken Polytechnic College'),
(55413, 46280, 'ja', 'name', '群馬旄建巄科専門学栔'),
(55414, 46281, 'en', 'name', 'Ningxia Hui Autonomous Region Peoples Hospital'),
(55415, 46281, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗäŗŗę°‘åŒ»é™¢'),
(55416, 46282, 'es', 'name', 'Universidad del Sol'),
(55417, 46283, 'no_lang_code', 'name', 'Prime Behavior Testing Laboratories (United States)'),
(55418, 46284, 'no_lang_code', 'name', 'SGS (China)'),
(55419, 46285, 'es', 'name', 'Instituto Tecnológico de Apizaco'),
(55420, 46286, 'en', 'name', 'Fukui Prefecture Special Education Center'),
(55421, 46286, 'ja', 'name', 'ē¦äŗ•ēœŒē‰¹åˆ„ę”Æę“ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(55422, 46287, 'en', 'name', 'Ivory Coast Medical Relief Team'),
(55423, 46288, 'no_lang_code', 'name', 'Lenovo (Japan)'),
(55424, 46289, 'no_lang_code', 'name', 'Mahle (United Kingdom)'),
(55425, 46290, 'en', 'name', 'Funders Network on Population, Reproductive Health and Rights'),
(55426, 46291, 'no_lang_code', 'name', 'International Game Technology (Germany)'),
(55427, 46292, 'en', 'name', 'Tsu City College'),
(55428, 46292, 'ja', 'name', 'äø‰é‡ēŸ­ęœŸå¤§å­¦'),
(55429, 46293, 'no_lang_code', 'name', 'Magna International (Germany)'),
(55430, 46294, 'de', 'name', 'Akademie für Technikfolgenabschätzung'),
(55431, 46295, 'en', 'name', 'Vinogradov Institute of Geochemistry'),
(55432, 46295, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геохимии им. А.П. ВинограГова Š”Šž Š ŠŠ'),
(55433, 46296, 'no_lang_code', 'name', 'Rockwell Automation (Germany)'),
(55434, 46297, 'en', 'name', 'Smith Institute'),
(55435, 46298, 'no_lang_code', 'name', 'ExxonMobil (Norway)'),
(55436, 46299, 'en', 'name', 'Institute of Biosciences and Bioresources'),
(55437, 46299, 'it', 'name', 'Istituto di Bioscienze e Biorisorse'),
(55438, 46300, 'en', 'name', 'Medical Corporation River Mizuma hospital'),
(55439, 46300, 'ja', 'name', 'ćƒŸć‚ŗćƒžē—…é™¢'),
(55440, 46301, 'no_lang_code', 'name', 'EagleBurgmann (Japan)'),
(55441, 46302, 'no_lang_code', 'name', 'T2 Systems (Canada)'),
(55442, 46303, 'no_lang_code', 'name', 'Mallinckrodt (Japan)'),
(55443, 46304, 'en', 'name', 'European Centre for Theoretical Studies in Nuclear Physics and Related Areas'),
(55444, 46305, 'no_lang_code', 'name', 'AMF Bakery Systems (United States)'),
(55445, 46306, 'no_lang_code', 'name', 'Henkel (United States)'),
(55446, 46307, 'en', 'name', 'Oita Prefectural Board of Education'),
(55447, 46307, 'ja', 'name', 'å¤§åˆ†ēœŒę•™č‚²å§”å“”ä¼š'),
(55448, 46308, 'en', 'name', 'Association for the Severely Handicapped'),
(55449, 46309, 'en', 'name', 'New York Institute of Technology'),
(55450, 46310, 'es', 'name', 'Universidad Modular Abierta'),
(55451, 46311, 'en', 'name', 'Feza Gürsey Institute'),
(55452, 46311, 'tr', 'name', 'Feza Gürsey Enstitüsü'),
(55453, 46312, 'pt', 'name', 'Associação Brasileira de Relações Internacionais'),
(55454, 46313, 'en', 'name', 'Fukushima Prefectural Museum of Art'),
(55455, 46313, 'ja', 'name', 'ē¦å³¶ēœŒē«‹ē¾Žč”“é¤Ø'),
(55456, 46314, 'no_lang_code', 'name', 'Caterpillar (United Kingdom)'),
(55457, 46315, 'en', 'name', 'Jiangxi Maternal and Child Health Hospital'),
(55458, 46315, 'zh', 'name', 'ę±Ÿč„æēœå¦‡å¹¼äæå„é™¢'),
(55459, 46316, 'no_lang_code', 'name', 'Wipro (Singapore)'),
(55460, 46317, 'no_lang_code', 'name', 'Dexin (Uruguay)'),
(55461, 46318, 'no_lang_code', 'name', 'Universal Filters (United States)'),
(55462, 46319, 'no_lang_code', 'name', 'ProTechSure Scientific (United States)'),
(55463, 46320, 'en', 'name', 'Okayama Prefectural Tsuyama High School'),
(55464, 46320, 'ja', 'name', 'å²”å±±ēœŒē«‹ę“„å±±äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(55465, 46321, 'en', 'name', 'Education Pioneers'),
(55466, 46322, 'ja', 'name', 'ć‚¹ć‚ŗć‚­ę Ŗå¼ä¼šē¤¾'),
(55467, 46322, 'no_lang_code', 'name', 'Suzuki (Japan)'),
(55468, 46323, 'en', 'name', 'Osaka City Museum of Fine Arts'),
(55469, 46323, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹ē¾Žč”“é¤Ø'),
(55470, 46324, 'no_lang_code', 'name', 'Turbo Power Systems (United Kingdom)'),
(55471, 46325, 'no_lang_code', 'name', 'International Game Technology (United States)'),
(55472, 46326, 'en', 'name', 'European Network for Smoking and Tobacco Prevention'),
(55473, 46327, 'no_lang_code', 'name', 'Lattice Semiconductor (United States)'),
(55474, 46328, 'pt', 'name', 'Escola TƩcnica de eletrƓnic'),
(55475, 46329, 'en', 'name', 'Vietnam Academy of Social Sciences'),
(55476, 46329, 'vi', 'name', 'Viện HĆ n lĆ¢m Khoa hį»c xĆ£ hį»™i Việt Nam'),
(55477, 46330, 'no_lang_code', 'name', 'Cool Energy (United States)'),
(55478, 46331, 'de', 'name', 'Klinik Friedenweiler'),
(55479, 46332, 'no_lang_code', 'name', 'Atlas Copco (Austria)'),
(55480, 46333, 'en', 'name', 'Poquoson City Public Schools'),
(55481, 46334, 'pt', 'name', 'Célia Helena Centro de Artes e Educação'),
(55482, 46335, 'no_lang_code', 'name', 'Saint-Gobain (United Kingdom)'),
(55483, 46336, 'en', 'name', 'Shaoxing City Women and Children Hospital'),
(55484, 46336, 'zh', 'name', 'ē»å…“åø‚å¦‡å¹¼äæå„é™¢'),
(55485, 46337, 'no_lang_code', 'name', 'Silence Therapeutics (Germany)'),
(55486, 46338, 'en', 'name', 'Alberta Medical Association'),
(55487, 46339, 'no_lang_code', 'name', 'Akita Innovation (United States)'),
(55488, 46340, 'en', 'name', 'People’s Hospital of Linqing'),
(55489, 46340, 'zh', 'name', 'äø“ęø…åø‚äŗŗę°‘åŒ»é™¢'),
(55490, 46341, 'en', 'name', 'Central Institute for Research on Cattle'),
(55491, 46342, 'no_lang_code', 'name', 'Essilor (Germany)'),
(55492, 46343, 'no_lang_code', 'name', 'Bluewater Power Distribution (Canada)'),
(55493, 46344, 'en', 'name', 'Ministry of Environment'),
(55494, 46345, 'ja', 'name', 'ćƒ‹ćƒ•ć‚³'),
(55495, 46345, 'no_lang_code', 'name', 'Nifco (Japan)'),
(55496, 46346, 'en', 'name', 'Global Science and Technology Forum'),
(55497, 46347, 'fr', 'name', 'SociƩtƩ FranƧaise de MƩdecine Vasculaire'),
(55498, 46348, 'en', 'name', 'Business-Higher Education Forum'),
(55499, 46349, 'en', 'name', 'Fukushima Prefectural Education Center'),
(55500, 46349, 'ja', 'name', 'ē¦å³¶ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(55501, 46350, 'en', 'name', 'Indian Council for Research on International Economic Relations'),
(55502, 46351, 'ja', 'name', 'ć‚­ćƒ¤ćƒŽćƒ³ć‚¢ćƒćƒ«ćƒ'),
(55503, 46351, 'no_lang_code', 'name', 'Canon Anelva (Japan)'),
(55504, 46352, 'es', 'name', 'Universidad Tecnológica de El Salvador'),
(55505, 46353, 'no_lang_code', 'name', 'Halliburton (United Kingdom)'),
(55506, 46354, 'no_lang_code', 'name', 'Finisar (United States)'),
(55507, 46355, 'en', 'name', 'Asbestos Diseases Research Institute'),
(55508, 46356, 'no_lang_code', 'name', 'Broadcom (Israel)'),
(55509, 46357, 'en', 'name', 'Central Society for Clinical and Translational Research'),
(55510, 46358, 'en', 'name', 'Gemsville Technical University'),
(55511, 46359, 'no_lang_code', 'name', 'bioMASON (United States)'),
(55512, 46360, 'ja', 'name', 'ę—­å‡ŗå­¦åœ’'),
(55513, 46360, 'no_lang_code', 'name', 'Asahide Gakuen'),
(55514, 46361, 'no_lang_code', 'name', 'Chemring Countermeasures (United Kingdom)'),
(55515, 46362, 'no_lang_code', 'name', 'Harman (China)'),
(55516, 46363, 'en', 'name', 'Japan Association for Development of Community Medicine'),
(55517, 46363, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗ åœ°åŸŸåŒ»ē™‚ęŒÆčˆˆå”ä¼š');
INSERT INTO `ror_settings` VALUES
(55518, 46364, 'en', 'name', 'Guangxi Subtropical Crops Research Institute'),
(55519, 46364, 'zh', 'name', 'å¹æč„æäŗšēƒ­åø¦ä½œē‰©ē ”ē©¶ę‰€'),
(55520, 46365, 'de', 'name', 'Schweizerische Herzstiftung'),
(55521, 46365, 'en', 'name', 'Swiss Heart Foundation'),
(55522, 46366, 'en', 'name', 'Nishigaoka Elementary School'),
(55523, 46366, 'ja', 'name', 'ę“„åø‚ē«‹č„æćŒäø˜å°å­¦ę ”'),
(55524, 46367, 'no_lang_code', 'name', 'Protec-Style (Canada)'),
(55525, 46368, 'es', 'name', 'Universidad Don Bosco'),
(55526, 46369, 'no_lang_code', 'name', 'Xperi (Ireland)'),
(55527, 46370, 'no_lang_code', 'name', 'EchoStar (United Kingdom)'),
(55528, 46371, 'en', 'name', 'Iwate Museum of Art'),
(55529, 46371, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ē¾Žč”“é¤Ø'),
(55530, 46372, 'en', 'name', 'Ibaraki Prefectural Ota second high school'),
(55531, 46372, 'ja', 'name', 'čŒØåŸŽēœŒē«‹å¤Ŗē”°ē¬¬äŗŒé«˜ē­‰å­¦ę ”'),
(55532, 46373, 'de', 'name', 'Klinikum Itzehoe'),
(55533, 46374, 'en', 'name', 'Institute of Applied Physics'),
(55534, 46374, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГної фізики ŠŠŠ України'),
(55535, 46375, 'no_lang_code', 'name', 'Conversant (Canada)'),
(55536, 46376, 'en', 'name', 'All Russia Research Institute of Automatics'),
(55537, 46376, 'ru', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики та енергетики'),
(55538, 46377, 'en', 'name', 'Osaka Municipal Ikuno Technical High School'),
(55539, 46377, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹ē”Ÿé‡Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(55540, 46378, 'ja', 'name', 'ę—„ę±é›»å·„ę Ŗå¼ä¼šē¤¾'),
(55541, 46378, 'no_lang_code', 'name', 'Nitto (Japan)'),
(55542, 46379, 'en', 'name', 'Miyagi Prefecture Furukawa dawn High School'),
(55543, 46379, 'ja', 'name', 'å®®åŸŽēœŒå¤å·é»Žę˜Žäø­å­¦ę ”'),
(55544, 46380, 'en', 'name', 'Niigata Prefectural Board of Education'),
(55545, 46381, 'en', 'name', 'The Third People''s Hospital of Dalian City'),
(55546, 46381, 'zh', 'name', 'å¤§čæžåø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(55547, 46382, 'no_lang_code', 'name', 'BorƩa (Sweden)'),
(55548, 46383, 'en', 'name', 'Cook Children''s Health Care System'),
(55549, 46384, 'es', 'name', 'Instituto Tecnológico de Chetumal'),
(55550, 46385, 'es', 'name', 'Instituto de Desarrollo Tecnológico para la Industria Química'),
(55551, 46386, 'no_lang_code', 'name', 'Quantum Technology Sciences (United States)'),
(55552, 46387, 'en', 'name', 'Shanxi Province Hospital of Traditional Chinese Medicine'),
(55553, 46388, 'en', 'name', 'Akita Research Institute for Food and Brewing'),
(55554, 46388, 'ja', 'name', 'ē§‹ē”°ēœŒē·åˆé£Ÿå“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(55555, 46389, 'en', 'name', 'Kanagawa Prefectural Atsugi Kiyoshiminami High School'),
(55556, 46389, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹åŽšęœØęø…å—é«˜ę ”'),
(55557, 46390, 'en', 'name', 'Uzima University College'),
(55558, 46391, 'en', 'name', 'Gapminder Foundation'),
(55559, 46391, 'sv', 'name', 'Stiftelsen Gapminder'),
(55560, 46392, 'en', 'name', 'Shimane Museum of Ancient Izumo'),
(55561, 46392, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹å¤ä»£å‡ŗé›²ę­“å²åšē‰©é¤Ø'),
(55562, 46393, 'en', 'name', 'Villa Maria College'),
(55563, 46394, 'en', 'name', 'Queen Elizabeth Hospital King''s Lynn NHS Foundation Trust'),
(55564, 46395, 'en', 'name', 'International Financial Cryptography Association'),
(55565, 46396, 'no_lang_code', 'name', 'Schlumberger (Ireland)'),
(55566, 46397, 'en', 'name', 'Society for Marine Mammalogy'),
(55567, 46398, 'en', 'name', 'National Heavy Snow Youth Exchange House'),
(55568, 46398, 'ja', 'name', 'å›½ē«‹å¤§é›Ŗé’å°‘å¹“äŗ¤ęµć®å®¶'),
(55569, 46399, 'en', 'name', 'National Academy of Sciences of the Republic of Kyrgyzstan'),
(55570, 46399, 'ky', 'name', 'АкаГемии наук ŠšŃ‹Ń€Š³Ń‹Š·ŃŃ‚ана'),
(55571, 46400, 'en', 'name', 'Access to Nutrition Foundation'),
(55572, 46401, 'en', 'name', 'Shenzhen Maternity and Child Healthcare Hospital'),
(55573, 46401, 'zh', 'name', 'ę·±åœ³åø‚å¦‡å¹¼äæå„é™¢'),
(55574, 46402, 'en', 'name', 'BTI Biotechnology Institute'),
(55575, 46403, 'no_lang_code', 'name', 'Amdocs (United Kingdom)'),
(55576, 46404, 'es', 'name', 'Fundación Pro Salud y Medio Ambiente'),
(55577, 46405, 'no_lang_code', 'name', 'H3D (United States)'),
(55578, 46406, 'no_lang_code', 'name', 'EarthTech International (United States)'),
(55579, 46407, 'en', 'name', 'Kanetsu Hospital'),
(55580, 46407, 'ja', 'name', 'é–¢č¶Šē—…é™¢'),
(55581, 46408, 'no_lang_code', 'name', 'Knorr-Bremse (United States)'),
(55582, 46409, 'no_lang_code', 'name', 'AT&T (Israel)'),
(55583, 46410, 'en', 'name', 'British HIV Association'),
(55584, 46411, 'en', 'name', 'Toyo College of Food Technology'),
(55585, 46411, 'ja', 'name', 'ę±ę“‹é£Ÿå“å·„ę„­ēŸ­ęœŸå¤§å­¦'),
(55586, 46412, 'no_lang_code', 'name', 'Future Cities Catapult (United Kingdom)'),
(55587, 46413, 'en', 'name', 'California State Library'),
(55588, 46414, 'en', 'name', 'United Nations Institute for Training and Research'),
(55589, 46415, 'en', 'name', 'Benevolent Society'),
(55590, 46416, 'en', 'name', 'Florida Association of School Administrators'),
(55591, 46417, 'en', 'name', 'Guildford Hospital'),
(55592, 46418, 'de', 'name', 'Internationale Berufsakademie'),
(55593, 46418, 'en', 'name', 'International University of Cooperative Education'),
(55594, 46419, 'en', 'name', 'Korea Nano Technology Research Society'),
(55595, 46419, 'ko', 'name', 'ė‚˜ė…øźø°ģˆ ģ—°źµ¬ķ˜‘ģ˜ķšŒ'),
(55596, 46420, 'en', 'name', 'Shanghai Public Health Clinical Center'),
(55597, 46420, 'zh', 'name', 'å…¬å…±å«ē”Ÿäø“åŗŠäø­åæƒ'),
(55598, 46421, 'de', 'name', 'Fraunhofer-Institut für Verkehrs- und Infrastruktursysteme'),
(55599, 46421, 'en', 'name', 'Fraunhofer Institute for Transportation and Infrastructure Systems'),
(55600, 46422, 'no_lang_code', 'name', 'Global Health Strategies (United States)'),
(55601, 46423, 'en', 'name', 'Saudi Heart Association'),
(55602, 46424, 'no_lang_code', 'name', 'Cemex (Switzerland)'),
(55603, 46425, 'en', 'name', 'Egyptian Society of Chest Diseases and Tuberculosis'),
(55604, 46426, 'en', 'name', 'Dongguk University Ilsan Hospital'),
(55605, 46427, 'en', 'name', 'Department of Ocean Development'),
(55606, 46428, 'no_lang_code', 'name', 'Analytical Instrument Systems (United States)'),
(55607, 46429, 'en', 'name', 'Okazaki Womens University'),
(55608, 46429, 'ja', 'name', '岔哎儳子大学'),
(55609, 46430, 'no_lang_code', 'name', 'Xelera Research (United States)'),
(55610, 46431, 'en', 'name', 'Fund for Educational Excellence'),
(55611, 46432, 'en', 'name', 'Institute of Economic Forecasting'),
(55612, 46432, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°Ń€Š¾Š“Š½Š¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Š½ŠøŃ Российской АкаГемии ŠŠ°ŃƒŠŗ'),
(55613, 46433, 'ja', 'name', 'å›½éš›å­¦é™¢åŸ¼ēŽ‰ēŸ­ęœŸå¤§å­¦'),
(55614, 46433, 'no_lang_code', 'name', 'Kokusai Gakuin Saitama Junior College'),
(55615, 46434, 'en', 'name', 'Royal Institute of Navigation'),
(55616, 46435, 'en', 'name', 'Institute for Advanced Architecture of Catalonia'),
(55617, 46435, 'es', 'name', 'Institut d''Arquitectura AvanƧada de Catalunya'),
(55618, 46436, 'en', 'name', 'Ishikawa Prefectural Technical High School'),
(55619, 46436, 'ja', 'name', 'ēŸ³å·ēœŒē«‹å·„ę„­é«˜ē­‰å­¦ę ”'),
(55620, 46437, 'en', 'name', 'Asahi City Board of Education'),
(55621, 46437, 'ja', 'name', 'ę—­åø‚ę•™č‚²å§”å“”ä¼š'),
(55622, 46438, 'en', 'name', 'Clover Park School District'),
(55623, 46439, 'en', 'name', 'Association for the Advancement of Educational Research'),
(55624, 46440, 'en', 'name', 'Research and Production Complex Technological Centre'),
(55625, 46440, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный комплекс «Технологический центр'),
(55626, 46441, 'id', 'name', 'Universitas Merdeka Surabaya'),
(55627, 46442, 'en', 'name', 'Central Savannah River Area Regional Educational Service Agency'),
(55628, 46443, 'en', 'name', 'Kyoto City Zoo'),
(55629, 46443, 'ja', 'name', 'äŗ¬éƒ½åø‚å‹•ē‰©åœ’'),
(55630, 46444, 'en', 'name', 'Xinjiang Academy of Agricultural and Reclamation Science'),
(55631, 46444, 'zh', 'name', 'ę–°ē–†å†œåž¦ē§‘å­¦é™¢'),
(55632, 46445, 'en', 'name', 'Birmingham Research Park'),
(55633, 46446, 'en', 'name', 'Mie Prefectural Yokkaichi Nishi High School'),
(55634, 46446, 'ja', 'name', 'äø‰é‡ēœŒē«‹å››ę—„åø‚č„æé«˜ē­‰å­¦ę ”'),
(55635, 46447, 'en', 'name', 'Islamic Azad University of Varamin'),
(55636, 46447, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŁˆŲ±Ų§Ł…ŪŒŁ†'),
(55637, 46448, 'de', 'name', 'StaatsunabhƤngige Theologische Hochschule Basel'),
(55638, 46449, 'en', 'name', 'Kochi Prefectural Education Center'),
(55639, 46449, 'ja', 'name', 'é«˜ēŸ„ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(55640, 46450, 'no_lang_code', 'name', 'HeidelbergCement (Germany)'),
(55641, 46451, 'en', 'name', 'Povolzhsky Research Institute of Production and Processing of Meat and Dairy Products'),
(55642, 46451, 'ru', 'name', 'Поволжский ŠŠ˜Š˜ произвоГства Šø переработки Š¼ŃŃŠ¾Š¼Š¾Š»Š¾Ń‡Š½Š¾Š¹ ŠæŃ€Š¾Š“ŃƒŠŗŃ†ŠøŠø'),
(55643, 46452, 'no_lang_code', 'name', 'Shimano (Singapore)'),
(55644, 46453, 'en', 'name', 'Aomori Chuo Junior College'),
(55645, 46453, 'ja', 'name', 'é’ę£®äø­å¤®ēŸ­ęœŸå¤§å­¦'),
(55646, 46454, 'en', 'name', 'Islamic Azad University Bandar Abbas'),
(55647, 46454, 'fa', 'name', 'ساختمان ادارى دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ بندرعباس'),
(55648, 46455, 'no_lang_code', 'name', 'KME (United States)'),
(55649, 46456, 'en', 'name', 'Takamatsu High School'),
(55650, 46456, 'ja', 'name', 'é¦™å·ēœŒē«‹é«˜ę¾é«˜ē­‰å­¦ę ”'),
(55651, 46457, 'en', 'name', 'Saitama Prefectural Kodama High School'),
(55652, 46457, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒå…ēŽ‰é«˜ę ”'),
(55653, 46458, 'en', 'name', 'Australian Centre for the Moving Image'),
(55654, 46459, 'ja', 'name', 'ę¾ęˆøåø‚ē«‹åšē‰©é¤Ø'),
(55655, 46459, 'no_lang_code', 'name', 'Matsudo Museum'),
(55656, 46460, 'en', 'name', 'David H. Murdock Research Institute'),
(55657, 46461, 'de', 'name', 'Max-Planck-Arbeitsgruppen für Strukturelle Molekularbiologie'),
(55658, 46461, 'en', 'name', 'Max Planck Unit for Structural Molecular Biology'),
(55659, 46462, 'ja', 'name', 'ę—„ē«‹ćƒžć‚Æć‚»ćƒ«ę Ŗå¼ä¼šē¤¾'),
(55660, 46462, 'no_lang_code', 'name', 'Hitachi Maxell (Japan)'),
(55661, 46463, 'en', 'name', 'University of Kivu'),
(55662, 46463, 'fr', 'name', 'UniversitƩ du Kivu'),
(55663, 46464, 'de', 'name', 'Deutsche Schmerzgesellschaft'),
(55664, 46465, 'en', 'name', 'Ezequiel Dias Foundation'),
(55665, 46465, 'pt', 'name', 'Fundação Ezequiel Dias'),
(55666, 46466, 'no_lang_code', 'name', 'Pure Protein (United States)'),
(55667, 46467, 'no_lang_code', 'name', 'Kao Corporation (United States)'),
(55668, 46468, 'no_lang_code', 'name', 'Paisano Labs (United States)'),
(55669, 46469, 'en', 'name', 'Mercury Optoelectronics Research Institute'),
(55670, 46469, 'zh', 'name', 'å¢Øå…‹ē‘žå…‰ē”µå­ē ”ē©¶é™¢'),
(55671, 46470, 'en', 'name', 'Tabaran Institute of Higher Education'),
(55672, 46470, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ تابران'),
(55673, 46471, 'en', 'name', 'Foundation Financial Officers Group'),
(55674, 46472, 'en', 'name', 'Netherlands Maritime Technology'),
(55675, 46473, 'en', 'name', 'Islamic Azad University of Khomeynishahr'),
(55676, 46473, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų®Ł…ŪŒŁ†ŪŒ ؓهر'),
(55677, 46474, 'en', 'name', 'Institute of Immunology and Physiology'),
(55678, 46474, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ иммунологии Šø физиологии Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(55679, 46475, 'en', 'name', 'Kanagawa Prefectural Museum of Natural History'),
(55680, 46475, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ē”Ÿå‘½ć®ę˜Ÿ'),
(55681, 46476, 'en', 'name', 'Komatsu College'),
(55682, 46476, 'ja', 'name', 'å°ę¾ēŸ­ęœŸå¤§å­¦'),
(55683, 46477, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‡ć‚£ć‚¹ć‚³'),
(55684, 46477, 'no_lang_code', 'name', 'Disco (japan)'),
(55685, 46478, 'en', 'name', 'Aichi Prefectural Okazaki School for the Deaf'),
(55686, 46478, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å²”å“Žč¾å­¦ę ”'),
(55687, 46479, 'no_lang_code', 'name', 'Ingredion (United Kingdom)'),
(55688, 46480, 'en', 'name', 'Silsoe Spray Application Unit'),
(55689, 46481, 'en', 'name', 'Fukuoka Prefectural Museum of Art'),
(55690, 46481, 'ja', 'name', 'ē¦å²”ēœŒē«‹ē¾Žč”“é¤Ø'),
(55691, 46482, 'en', 'name', 'Okayama Prefectural Okayama Technical High School'),
(55692, 46482, 'ja', 'name', 'å²”å±±ēœŒē«‹å²”å±±å·„ę„­é«˜ē­‰å­¦ę ”'),
(55693, 46483, 'en', 'name', 'China Academy of Printing Technology'),
(55694, 46483, 'zh', 'name', 'äø­å›½å°åˆ·ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(55695, 46484, 'no_lang_code', 'name', 'Knorr-Bremse (Austria)'),
(55696, 46485, 'en', 'name', 'University of Cagayan Valley'),
(55697, 46486, 'en', 'name', 'Douglas Public Library'),
(55698, 46487, 'en', 'name', 'Society of American Gastrointestinal and Endoscopic Surgeons'),
(55699, 46488, 'en', 'name', 'Canadian Urological Association'),
(55700, 46489, 'de', 'name', 'Institut für Lebensmittel- und Umweltforschung'),
(55701, 46489, 'en', 'name', 'Institute for Food and Environmental Research'),
(55702, 46490, 'en', 'name', 'Sadra Institute Of Higher Education'),
(55703, 46490, 'fa', 'name', 'دانؓگاه ŲµŲÆŲ±Ų§'),
(55704, 46491, 'en', 'name', 'Museum of Modern Art'),
(55705, 46491, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(55706, 46492, 'en', 'name', 'The Institute of Buraku Problem'),
(55707, 46492, 'ja', 'name', 'éƒØč½å•é”Œē ”ē©¶ę‰€'),
(55708, 46493, 'no_lang_code', 'name', 'Columbus McKinnon (United States)'),
(55709, 46494, 'no_lang_code', 'name', 'Bruker (Israel)'),
(55710, 46495, 'en', 'name', 'Hirosaki Central Hospital'),
(55711, 46495, 'ja', 'name', 'å¼˜å‰äø­å¤®ē—…é™¢'),
(55712, 46496, 'de', 'name', 'Akademie der Wissenschaften in Hamburg'),
(55713, 46496, 'en', 'name', 'Academy of Sciences and Humanities in Hamburg'),
(55714, 46497, 'no_lang_code', 'name', 'k-Space Associates (United States)'),
(55715, 46498, 'en', 'name', 'RKDF University'),
(55716, 46499, 'no_lang_code', 'name', 'Eaton (United Kingdom)'),
(55717, 46500, 'en', 'name', 'A. Alfred Taubman Health Care Center'),
(55718, 46501, 'en', 'name', 'Nagano City Museum'),
(55719, 46501, 'ja', 'name', 'é•·é‡Žåø‚ē«‹åšē‰©é¤Ø'),
(55720, 46502, 'en', 'name', 'Yamaguchi Prefectural Museum'),
(55721, 46502, 'ja', 'name', 'å±±å£ēœŒē«‹å±±å£åšē‰©é¤Ø'),
(55722, 46503, 'en', 'name', 'Aid for Aids'),
(55723, 46504, 'en', 'name', 'Junshin Junior College'),
(55724, 46504, 'ja', 'name', 'ē“”ēœŸēŸ­ęœŸå¤§å­¦'),
(55725, 46505, 'bn', 'name', 'বাঁকুঔ়া ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(55726, 46505, 'no_lang_code', 'name', 'Bankura University'),
(55727, 46506, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Ŗćƒ¼ćƒˆćƒćƒƒćƒˆćƒÆćƒ¼ć‚ÆęŠ€č”“ē ”ē©¶ę‰€'),
(55728, 46506, 'no_lang_code', 'name', 'AutoNetworks Technologies (Japan)'),
(55729, 46507, 'en', 'name', 'Aichi Medical College for Physical and Occupational Therapy'),
(55730, 46507, 'ja', 'name', 'ę„›ēŸ„åŒ»ē™‚å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(55731, 46508, 'en', 'name', 'Miyazaki Prefecture Takanabe Agricultural High School'),
(55732, 46508, 'ja', 'name', 'å®®å“ŽēœŒē«‹é«˜é‹č¾²ę„­é«˜ē­‰å­¦ę ”'),
(55733, 46509, 'en', 'name', 'Hiroshima Prefectural Archives'),
(55734, 46509, 'ja', 'name', 'åŗƒå³¶ēœŒåŗēœŒē«‹ę–‡ę›øé¤Ø'),
(55735, 46510, 'en', 'name', 'Japan Monkey Centre'),
(55736, 46510, 'ja', 'name', 'ę—„ęœ¬ćƒ¢ćƒ³ć‚­ćƒ¼ćƒ‘ćƒ¼ć‚Æ'),
(55737, 46511, 'en', 'name', 'Saitama Prefectural Industrial Technology Center'),
(55738, 46511, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(55739, 46512, 'de', 'name', 'Fraunhofer-Institut für Produktionstechnik und Automatisierung'),
(55740, 46512, 'en', 'name', 'Fraunhofer Institute for Manufacturing Engineering and Automation'),
(55741, 46513, 'en', 'name', 'University of International Business'),
(55742, 46513, 'kk', 'name', 'Єалықаралық бизнес ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(55743, 46514, 'en', 'name', 'Kanagawa Prefecture Policy Bureau'),
(55744, 46514, 'ja', 'name', 'ē„žå„ˆå·ēœŒę”æē­–å±€'),
(55745, 46515, 'no_lang_code', 'name', 'Microsoft (United Kingdom)'),
(55746, 46516, 'en', 'name', 'IEEE OES Japan Chapter'),
(55747, 46517, 'de', 'name', 'Michalski Hüttermann & Partner Patentanwälte'),
(55748, 46517, 'en', 'name', 'Michalski Huettermann and Partner'),
(55749, 46518, 'en', 'name', 'Chess Mates Foundation'),
(55750, 46519, 'en', 'name', 'Carthage Central School District'),
(55751, 46520, 'no_lang_code', 'name', 'Trilogis (Italy)'),
(55752, 46521, 'ja', 'name', 'ę—„ęœ¬ę”¾é€å”ä¼š'),
(55753, 46521, 'no_lang_code', 'name', 'Japan Broadcasting Corporation (Japan)'),
(55754, 46522, 'en', 'name', 'American Rhododendron Society'),
(55755, 46523, 'en', 'name', 'Arthroscopy Association of North America'),
(55756, 46524, 'en', 'name', 'Yelm Community Schools'),
(55757, 46525, 'en', 'name', 'Institute of Ethnology and Anthropology'),
(55758, 46525, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ę°‘ę—å­¦äøŽäŗŗē±»å­¦ē ”ē©¶ę‰€'),
(55759, 46526, 'ja', 'name', 'å·å“Žé‡å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(55760, 46526, 'no_lang_code', 'name', 'Kawasaki Heavy Industries (Japan)'),
(55761, 46527, 'en', 'name', 'Wakayama City Culture and Sports Promotion Foundation'),
(55762, 46527, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å’Œę­Œå±±åø‚ę–‡åŒ–ć‚¹ćƒćƒ¼ćƒ„ęŒÆčˆˆč²”å›£'),
(55763, 46528, 'en', 'name', 'Mill Valley Public Library'),
(55764, 46529, 'no_lang_code', 'name', 'Wikimedia RU'),
(55765, 46529, 'ru', 'name', 'ВикимеГиа РУ'),
(55766, 46530, 'en', 'name', 'Swedish Dental Association'),
(55767, 46530, 'sv', 'name', 'Sveriges TandlƤkarfƶrbund'),
(55768, 46531, 'en', 'name', 'Chiba prefectural Matsudo international high school'),
(55769, 46531, 'ja', 'name', 'ę¾ęˆøå›½éš›é«˜ē­‰å­¦ę ”'),
(55770, 46532, 'en', 'name', 'Sault Area Hospital'),
(55771, 46533, 'no_lang_code', 'name', 'TE Connectivity (Denmark)'),
(55772, 46534, 'en', 'name', 'American Epilepsy Society'),
(55773, 46535, 'en', 'name', 'Shimane Prefectural Daito High School'),
(55774, 46535, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹å¤§ę±é«˜ē­‰å­¦ę ”'),
(55775, 46536, 'en', 'name', 'Proactive Molecular Research'),
(55776, 46537, 'no_lang_code', 'name', 'Quigley and Watts (New Zealand)'),
(55777, 46538, 'en', 'name', 'Development Research and Projects Centre'),
(55778, 46539, 'en', 'name', 'Kobe Municipal Nishiwaki Elementary School'),
(55779, 46540, 'en', 'name', 'National Oncologic Institute'),
(55780, 46540, 'es', 'name', 'Instituto Oncologico Nacional'),
(55781, 46541, 'en', 'name', 'State Research Institute of Organic Chemistry and Technology'),
(55782, 46541, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Ā«Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органической химии Šø технологии»'),
(55783, 46542, 'en', 'name', 'Mathematical Assist Design Laboratory'),
(55784, 46542, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę•°ē†čØ­čØˆē ”ē©¶ę‰€'),
(55785, 46543, 'no_lang_code', 'name', 'Brainlike (United States)'),
(55786, 46544, 'ja', 'name', 'ę—„ęœ¬ćƒšć‚¤ćƒ³ćƒˆćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(55787, 46544, 'no_lang_code', 'name', 'Nippon Paint (Japan)'),
(55788, 46545, 'en', 'name', 'Morioka First High School'),
(55789, 46545, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ē››å²”ē¬¬äø€é«˜ē­‰å­¦ę ”'),
(55790, 46546, 'en', 'name', 'South African Heart Association'),
(55791, 46547, 'es', 'name', 'Fundación para el Desarrollo de la Ecología'),
(55792, 46548, 'en', 'name', 'Daejeon St. Mary''s Hospital'),
(55793, 46548, 'ko', 'name', 'ėŒ€ģ „ģ„±ėŖØė³‘ģ›'),
(55794, 46549, 'en', 'name', 'Australian Society for Microbiology'),
(55795, 46550, 'no_lang_code', 'name', 'Trimble (Germany)'),
(55796, 46551, 'en', 'name', 'Kyoto Kacho University'),
(55797, 46551, 'ja', 'name', 'äŗ¬éƒ½čÆé ‚å¤§å­¦'),
(55798, 46552, 'en', 'name', 'GISMA Business School'),
(55799, 46553, 'no_lang_code', 'name', 'Advanced Animal Diagnostics (United States)'),
(55800, 46554, 'no_lang_code', 'name', 'Introhive (Canada)'),
(55801, 46555, 'de', 'name', 'Klinikum Magdeburg'),
(55802, 46556, 'en', 'name', 'Future Forum'),
(55803, 46557, 'en', 'name', 'Cumberland County Public Library and Information Center'),
(55804, 46558, 'ja', 'name', 'é‚£é ˆé‡Žćƒ¶åŽŸć‚¢ćƒ‹ćƒžćƒ«ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(55805, 46558, 'no_lang_code', 'name', 'NasunokeHara Animal Clinic'),
(55806, 46559, 'en', 'name', 'European Crowdfunding Network'),
(55807, 46560, 'ja', 'name', 'ē¦å²”å„³å­¦é™¢ēœ‹č­·å¤§å­¦'),
(55808, 46560, 'no_lang_code', 'name', 'Fukuoka Jo Gakuin Nursing University'),
(55809, 46561, 'no_lang_code', 'name', 'Prescient Weather (United states)'),
(55810, 46562, 'no_lang_code', 'name', 'Eaton (Taiwan)'),
(55811, 46563, 'no_lang_code', 'name', 'Foxconn (Taiwan)'),
(55812, 46563, 'zh', 'name', 'é“»ęµ·ē§‘ęŠ€é›†åœ˜'),
(55813, 46564, 'en', 'name', 'Museum of Kyoto'),
(55814, 46565, 'ja', 'name', 'å±±å½¢ēœŒē«‹ē±³ę²¢čˆˆč­²é¤Øé«˜ē­‰å­¦ę ”'),
(55815, 46565, 'no_lang_code', 'name', 'Yamagata Prefectural Yonezawa Kojokan High School'),
(55816, 46566, 'en', 'name', 'Baker County Library District'),
(55817, 46567, 'en', 'name', 'Kyoto Prefecture Archaeological Research Center'),
(55818, 46567, 'ja', 'name', 'äŗ¬éƒ½åŗœåŸ‹č”µę–‡åŒ–č²”čŖæęŸ»ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(55819, 46568, 'no_lang_code', 'name', 'Agfa-Gevaert (Germany)'),
(55820, 46569, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗé•·å…‰ä¼š 長島病院'),
(55821, 46569, 'no_lang_code', 'name', 'Nagashima Hospital'),
(55822, 46570, 'en', 'name', 'Middlemore Clinical Trials'),
(55823, 46571, 'it', 'name', 'Associazione Cristina Bassi Onlus'),
(55824, 46572, 'en', 'name', 'North Carolina Nursery and Landscape Association'),
(55825, 46573, 'en', 'name', 'Tobu College of Medical Technology'),
(55826, 46573, 'ja', 'name', 'ę±ę­¦åŒ»å­¦ęŠ€č”“å°‚é–€å­¦ę ”'),
(55827, 46574, 'en', 'name', 'San Francisco University High School'),
(55828, 46575, 'de', 'name', 'Arge Ɩkologie'),
(55829, 46576, 'no_lang_code', 'name', 'Ennetix (United States)'),
(55830, 46577, 'en', 'name', 'Korean Society of Neurogastroenterology and Motility'),
(55831, 46577, 'ko', 'name', 'ėŒ€ķ•œģ†Œķ™”źø°źø°ėŠ„ģ„±ģ§ˆķ™˜Ā·ģš“ė™ķ•™ķšŒ'),
(55832, 46578, 'no_lang_code', 'name', 'Dorodnitsyn Computing Centre'),
(55833, 46578, 'ru', 'name', 'Š’Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ центр им. А. А. ДороГницына Š ŠŠ'),
(55834, 46579, 'en', 'name', 'Indian Institute of Metals'),
(55835, 46580, 'en', 'name', 'Chordoma Foundation'),
(55836, 46581, 'en', 'name', 'Professional Examination Service'),
(55837, 46582, 'en', 'name', 'Innovation and Economic Development Trois RiviĆØres'),
(55838, 46583, 'en', 'name', 'National Institute of Special Education'),
(55839, 46583, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē‰¹åˆ„ę”Æę“ę•™č‚²ē·åˆē ”ē©¶ę‰€'),
(55840, 46584, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹ē§‘å­¦é¤Ø'),
(55841, 46584, 'no_lang_code', 'name', 'Osaka Science Museum'),
(55842, 46585, 'no_lang_code', 'name', 'Pacific Microchip (United States)'),
(55843, 46586, 'no_lang_code', 'name', 'Banner Life Sciences (United States)'),
(55844, 46587, 'no_lang_code', 'name', 'Teleflex (United States)'),
(55845, 46588, 'en', 'name', 'Chicago Public Library Foundation'),
(55846, 46589, 'de', 'name', 'Institut für Stadtforschung und Strukturpolitik'),
(55847, 46590, 'en', 'name', 'Colorado Library Consortium'),
(55848, 46591, 'no_lang_code', 'name', 'Sulzer (Germany)'),
(55849, 46592, 'en', 'name', 'Canadian Sport Centre Pacific'),
(55850, 46593, 'en', 'name', 'Toyama Prefectural Education Center'),
(55851, 46593, 'ja', 'name', 'åÆŒå±±ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(55852, 46594, 'en', 'name', 'Zhejiang International Studies University'),
(55853, 46594, 'zh', 'name', 'ęµ™ę±Ÿå¤–å›½čÆ­å­¦é™¢'),
(55854, 46595, 'pt', 'name', 'Universidade Estadual do Rio Grande do Sul'),
(55855, 46596, 'en', 'name', 'Seqwater'),
(55856, 46597, 'no_lang_code', 'name', 'H2Flow Equipment (Canada)'),
(55857, 46598, 'de', 'name', 'Schweizerische Gesellschaft für Radiologie'),
(55858, 46598, 'en', 'name', 'Swiss Society of Radiology'),
(55859, 46599, 'en', 'name', 'Big Rapids Community Library'),
(55860, 46600, 'no_lang_code', 'name', 'Greenhouse Gas Industries (United States)'),
(55861, 46601, 'ja', 'name', '富山短期大学'),
(55862, 46601, 'no_lang_code', 'name', 'Toyama College'),
(55863, 46602, 'en', 'name', 'New York State Psychological Association'),
(55864, 46603, 'en', 'name', 'Tohoku History Museum'),
(55865, 46603, 'ja', 'name', 'ę±åŒ—ę­“å²åšē‰©é¤Ø'),
(55866, 46604, 'no_lang_code', 'name', 'Instream Energy Systems (Canada)'),
(55867, 46605, 'no_lang_code', 'name', 'Canada Bread (Canada)'),
(55868, 46606, 'no_lang_code', 'name', 'Rieter (Germany)'),
(55869, 46607, 'en', 'name', 'NRAD Medical Associates'),
(55870, 46608, 'en', 'name', 'Drylands Research'),
(55871, 46609, 'en', 'name', 'Ogori City Board of Education'),
(55872, 46609, 'ja', 'name', 'å°éƒ”åø‚ ę•™č‚²å§”å“”ä¼š'),
(55873, 46610, 'en', 'name', 'Australian Institute of Business'),
(55874, 46611, 'no_lang_code', 'name', 'Boschman Technologies (Netherlands)'),
(55875, 46612, 'en', 'name', 'British Orthopaedic Association'),
(55876, 46613, 'en', 'name', 'Aomori Prefectural Police'),
(55877, 46613, 'ja', 'name', 'é’ę£®ēœŒč­¦åÆŸ'),
(55878, 46614, 'no_lang_code', 'name', 'Hexagon (Switzerland)'),
(55879, 46615, 'en', 'name', 'National Democratic Institute'),
(55880, 46616, 'no_lang_code', 'name', 'Hewlett-Packard (Austria)'),
(55881, 46617, 'de', 'name', 'REFA Bundesverband, Reichsausschuß für Arbeitszeitermittlung'),
(55882, 46618, 'en', 'name', 'Nara Medical University Hospital'),
(55883, 46618, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(55884, 46619, 'en', 'name', 'Arizona State Library, Archives and Public Records'),
(55885, 46620, 'en', 'name', 'Nigeria Agricultural Quarantine Service'),
(55886, 46621, 'no_lang_code', 'name', 'Kerkhoff Consulting (Germany)'),
(55887, 46622, 'no_lang_code', 'name', 'Tata Technologies (Singapore)'),
(55888, 46623, 'en', 'name', 'Huaihua Radio and Television University'),
(55889, 46623, 'zh', 'name', 'ę€€åŒ–å¹æę’­ē”µč§†å¤§å­¦'),
(55890, 46624, 'en', 'name', 'Zhejiang Changzheng Vocational and Technical College'),
(55891, 46624, 'zh', 'name', 'ęµ™ę±Ÿé•æå¾čŒäøšęŠ€ęœÆå­¦é™¢'),
(55892, 46625, 'no_lang_code', 'name', 'Enviro Neptune (Canada)'),
(55893, 46626, 'en', 'name', 'Universal Therapeutic Massage Institute'),
(55894, 46627, 'en', 'name', 'American Orthopsychiatric Association'),
(55895, 46628, 'en', 'name', 'Sanyo-Onoda City University'),
(55896, 46628, 'ja', 'name', 'å±±å£ę±äŗ¬ē†ē§‘å¤§å­¦'),
(55897, 46629, 'en', 'name', 'Luzerne County Libraries'),
(55898, 46630, 'no_lang_code', 'name', 'Electrolux (United Kingdom)'),
(55899, 46631, 'en', 'name', 'International HIV/AIDS Alliance'),
(55900, 46632, 'fa', 'name', 'کوثر ؓیراز'),
(55901, 46632, 'no_lang_code', 'name', 'Kowsar Hospital'),
(55902, 46633, 'en', 'name', 'State Research Institute for Chemistry and Technology of Organoelement Compounds'),
(55903, 46633, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Šø технологии ŃŠ»ŠµŠ¼ŠµŠ½Ń‚Š¾Š¾Ń€Š³Š°Š½ŠøŃ‡ŠµŃŠŗŠøŃ… соеГинений'),
(55904, 46634, 'en', 'name', 'Oita Prefectural Nascent Support School'),
(55905, 46634, 'ja', 'name', 'å¤§åˆ†ēœŒē‰¹åˆ„ę”Æę“å­¦ę ”'),
(55906, 46635, 'en', 'name', 'Doshisha International Junior and Senior High School'),
(55907, 46636, 'no_lang_code', 'name', 'Nanocomp Technologies (United States)'),
(55908, 46637, 'no_lang_code', 'name', 'Corning (Israel)'),
(55909, 46638, 'en', 'name', 'ASEAN Foundation'),
(55910, 46639, 'en', 'name', 'National Society of Black Engineers'),
(55911, 46640, 'no_lang_code', 'name', 'Ultra Electronics 3 Phoenix (United States)'),
(55912, 46641, 'en', 'name', 'Aichi Prefectural Chiryu East Koto School'),
(55913, 46641, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ēŸ„ē«‹ę±é«˜ē­‰å­¦ę ”'),
(55914, 46642, 'en', 'name', 'Maricopa County Library District'),
(55915, 46643, 'en', 'name', 'Research Institute for Environmental Sciences and Public Health of Iwate Prefecture'),
(55916, 46643, 'ja', 'name', 'å²©ę‰‹ēœŒē’°å¢ƒäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(55917, 46644, 'no_lang_code', 'name', 'Liquifer Systems Group (Austria)'),
(55918, 46645, 'en', 'name', 'Gay City Health Project'),
(55919, 46646, 'no_lang_code', 'name', 'Vital Access (United States)'),
(55920, 46647, 'no_lang_code', 'name', 'Mƶlnlycke Health Care (United Kingdom)'),
(55921, 46648, 'no_lang_code', 'name', 'MomsRising'),
(55922, 46649, 'en', 'name', 'The 180th Hospital of PLA'),
(55923, 46649, 'zh', 'name', '中国人民解放军第180医院'),
(55924, 46650, 'no_lang_code', 'name', 'Avaya (Bermuda)'),
(55925, 46651, 'en', 'name', 'Asian Growth Research Institute'),
(55926, 46651, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚øć‚¢ęˆé•·ē ”ē©¶ę‰€'),
(55927, 46652, 'no_lang_code', 'name', 'Unparallel Innovation (Portugal)'),
(55928, 46653, 'en', 'name', 'Institute of Micro and Nanotechnology'),
(55929, 46653, 'es', 'name', 'Instituto de Micro y NanotecnologĆ­a'),
(55930, 46654, 'en', 'name', 'Southeast Asia University'),
(55931, 46654, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø­ą¹€ąøŠąøµąø¢ąø•ąø°ąø§ąø±ąø™ąø­ąø­ąøą¹€ąø‰ąøµąø¢ąø‡ą¹ƒąø•ą¹‰'),
(55932, 46655, 'no_lang_code', 'name', 'Robert Bosch (Brazil)'),
(55933, 46656, 'ja', 'name', 'ę—„ęœ¬ē·ē ”'),
(55934, 46656, 'no_lang_code', 'name', 'Nippon Soken (Japan)'),
(55935, 46657, 'en', 'name', 'Kagoshima Prefectural Museum'),
(55936, 46657, 'ja', 'name', 'é¹æå…å³¶ēœŒē«‹åšē‰©é¤Ø'),
(55937, 46658, 'en', 'name', 'Fuzzy Systems Institute'),
(55938, 46658, 'ja', 'name', 'ćƒ•ć‚”ć‚øć‚£ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę‰€'),
(55939, 46659, 'de', 'name', 'Anton Proksch Institut'),
(55940, 46660, 'no_lang_code', 'name', 'SeQureNet (France)'),
(55941, 46661, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾SUMCO'),
(55942, 46661, 'no_lang_code', 'name', 'Sumco Corporation (Japan)'),
(55943, 46662, 'no_lang_code', 'name', 'Megara Resins (Greece)'),
(55944, 46663, 'de', 'name', 'Fraunhofer-Informationszentrum Raum und Bau'),
(55945, 46663, 'en', 'name', 'Fraunhofer Information Center for Planning and Building'),
(55946, 46664, 'pt', 'name', 'Instituto de Tecnologia do ParanĆ”'),
(55947, 46665, 'no_lang_code', 'name', 'DuPont (China)'),
(55948, 46666, 'en', 'name', 'Carnegie Foundation for the Advancement of Teaching'),
(55949, 46667, 'en', 'name', 'Miyazaki Gakuen Junior College'),
(55950, 46667, 'ja', 'name', 'å®®å“Žå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(55951, 46668, 'en', 'name', 'Centre for Systems Philosophy'),
(55952, 46669, 'en', 'name', 'Brazilian Association of Graduate Programs in Economic'),
(55953, 46669, 'pt', 'name', 'Associação Nacional dos Centros de Pós-Graduação em Economia'),
(55954, 46670, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę–°å®æå±±å¹é«˜ē­‰å­¦ę ”'),
(55955, 46670, 'no_lang_code', 'name', 'Shinjuku Yamabuki High School'),
(55956, 46671, 'en', 'name', 'Yanagawa Rehabilitation Hospital'),
(55957, 46671, 'ja', 'name', 'ęŸ³å·ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(55958, 46672, 'no_lang_code', 'name', 'Accium Biosciences (United States)'),
(55959, 46673, 'en', 'name', 'VicRoads'),
(55960, 46674, 'no_lang_code', 'name', 'Temple Group (United Kingdom)'),
(55961, 46675, 'en', 'name', 'Inspired Practices in Early Education'),
(55962, 46676, 'no_lang_code', 'name', 'S2e Technologies (Canada)'),
(55963, 46677, 'es', 'name', 'Hospital General de Tomelloso'),
(55964, 46678, 'en', 'name', 'Yamaguchi Prefectural Asa High School'),
(55965, 46678, 'ja', 'name', 'å±±å£ēœŒē«‹åŽšē‹­é«˜ē­‰å­¦ę ”'),
(55966, 46679, 'no_lang_code', 'name', 'Eden Park Illumination (United States)'),
(55967, 46680, 'no_lang_code', 'name', 'Maharaj Nakorn Chiang Mai Hospital'),
(55968, 46680, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø£ąø²ąøŠąø™ąø„ąø£ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(55969, 46681, 'no_lang_code', 'name', 'N.Bazigos (Greece)'),
(55970, 46682, 'es', 'name', 'Ministerio de Agricultura y GanaderĆ­a de Costa Rica'),
(55971, 46683, 'no_lang_code', 'name', 'Prodrive Technologies (Netherlands)'),
(55972, 46684, 'en', 'name', 'African Leaders Malaria Alliance'),
(55973, 46685, 'no_lang_code', 'name', 'Valeo (Germany)'),
(55974, 46686, 'no_lang_code', 'name', 'Integrated Dynamic Electron Solutions (United States)'),
(55975, 46687, 'en', 'name', 'Government Sadiq College Women University'),
(55976, 46687, 'ur', 'name', 'ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ ŲµŲ§ŲÆŁ‚ کالج ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŪŲ§ŁˆŁ„Ł¾ŁˆŲ±'),
(55977, 46688, 'en', 'name', 'Centre for Theoretical Physics and Astrophysics'),
(55978, 46688, 'ru', 'name', 'Центр теоретической физики Šø астрофизики'),
(55979, 46689, 'en', 'name', 'Indian Institute of Business Management Patna'),
(55980, 46690, 'no_lang_code', 'name', 'Optosignal (United Kingdom)'),
(55981, 46691, 'no_lang_code', 'name', 'Husqvarna (United Kingdom)'),
(55982, 46692, 'ja', 'name', 'å…«ęˆøå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(55983, 46692, 'no_lang_code', 'name', 'Hachinohe Gakuin Junior College'),
(55984, 46693, 'en', 'name', 'Aga Khan University Nairobi'),
(55985, 46694, 'en', 'name', 'Central Laboratory of the National Veterinary Sanitation'),
(55986, 46694, 'mn', 'name', 'Улсын Мал Š­Š¼Š½ŃŠ»ŃŠ³ ŠŃ€ŠøŃƒŠ½ Š¦ŃŠ²Ń€ŠøŠ¹Š½ Төв Лаборатори.'),
(55987, 46695, 'en', 'name', 'Victoria International University'),
(55988, 46696, 'en', 'name', 'Institute of Structure of Matter'),
(55989, 46696, 'it', 'name', 'Istituto di Struttura della Materia'),
(55990, 46697, 'en', 'name', 'Development Authority of the North Country'),
(55991, 46698, 'no_lang_code', 'name', 'Donawa Lifescience Consulting (Italy)'),
(55992, 46699, 'en', 'name', 'National Institute of Technology, Yonago College'),
(55993, 46699, 'ja', 'name', 'å›½ē«‹ē±³å­å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(55994, 46700, 'de', 'name', 'Allgemeines Krankenhaus Celle'),
(55995, 46701, 'en', 'name', 'V.V. Vinogradov Russian Language Institute'),
(55996, 46701, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŃƒŃŃŠŗŠ¾Š³Š¾ ŃŠ·Ń‹ŠŗŠ° имени Š’. Š’. ВинограГова Š ŠŠ'),
(55997, 46702, 'no_lang_code', 'name', 'Przedsiębiorstwo Robót Elewacyjnych (Poland)'),
(55998, 46703, 'no_lang_code', 'name', 'Weatherford (United Kingdom)'),
(55999, 46704, 'no_lang_code', 'name', 'Karl Storz (Switzerland)'),
(56000, 46705, 'el', 'name', 'Ελληνική ΚαρΓιολογική Εταιρεία'),
(56001, 46705, 'en', 'name', 'Hellenic Cardiological Society'),
(56002, 46706, 'no_lang_code', 'name', 'CNH Industrial (Austria)'),
(56003, 46707, 'en', 'name', 'Egyptian College of Critical Care Physicians'),
(56004, 46708, 'en', 'name', 'Malaysian Cocoa Board'),
(56005, 46709, 'no_lang_code', 'name', 'Hewlett Packard Enterprise (United States)'),
(56006, 46710, 'en', 'name', 'Massachusetts Board of Library Commissioners'),
(56007, 46711, 'en', 'name', 'Izumi Junior College'),
(56008, 46711, 'ja', 'name', 'å’Œę³‰ēŸ­ęœŸå¤§å­¦'),
(56009, 46712, 'no_lang_code', 'name', 'Contego Medical (United States)'),
(56010, 46713, 'no_lang_code', 'name', 'Ventix (Canada)'),
(56011, 46714, 'cs', 'name', 'Wikimedia Czech Republic'),
(56012, 46715, 'no_lang_code', 'name', 'Sony (Taiwan)'),
(56013, 46716, 'en', 'name', 'Institute of Industrial Ecology'),
(56014, 46716, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š¹ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Š£Ń€Šž Š ŠŠ'),
(56015, 46717, 'no_lang_code', 'name', 'Rail Vision (United Kingdom)'),
(56016, 46718, 'no_lang_code', 'name', 'TeraSys Technologies (United States)'),
(56017, 46719, 'ar', 'name', 'دانؓگاه کالج Ų¹Ų±Ų§Ł‚'),
(56018, 46719, 'en', 'name', 'Iraq University College'),
(56019, 46720, 'de', 'name', 'Kinderkrebs-Zentrum Hamburg'),
(56020, 46720, 'en', 'name', 'Research Institute Children’s Cancer Center'),
(56021, 46721, 'en', 'name', 'King County Library System'),
(56022, 46722, 'no_lang_code', 'name', 'Dirac Solutions (United States)'),
(56023, 46723, 'en', 'name', 'Kawasaki Municipal Science Museum'),
(56024, 46723, 'ja', 'name', 'å·å“Žåø‚é’å°‘å¹“ē§‘å­¦é¤Ø'),
(56025, 46724, 'en', 'name', 'The School of Higher Education in Humanities of the Association for Adult Education'),
(56026, 46724, 'pl', 'name', 'Wyższa Szkoła Humanistyczna Towarzystwa Wiedzy Powszechnej'),
(56027, 46725, 'id', 'name', 'Pusat Penelitian dan Pengembangan Peternakan'),
(56028, 46726, 'fr', 'name', 'WikimƩdia France'),
(56029, 46727, 'en', 'name', 'St. Margaret''s Junior College'),
(56030, 46727, 'ja', 'name', 'ē«‹ę•™å„³å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(56031, 46728, 'no_lang_code', 'name', 'EpiCypher (United States)'),
(56032, 46729, 'no_lang_code', 'name', 'Atlas Elektronik (United Kingdom)'),
(56033, 46730, 'en', 'name', 'Christian Connections for International Health'),
(56034, 46731, 'en', 'name', 'Association for Unmanned Vehicle Systems International'),
(56035, 46732, 'en', 'name', 'State Special Communications Service of Ukraine'),
(56036, 46732, 'uk', 'name', 'Державна служба ŃŠæŠµŃ†Ń–Š°Š»ŃŒŠ½Š¾Š³Š¾ зв''ŃŠ·ŠŗŃƒ та Š·Š°Ń…ŠøŃŃ‚Ńƒ інформації України'),
(56037, 46733, 'no_lang_code', 'name', 'Staples (Canada)'),
(56038, 46734, 'en', 'name', 'Kumamoto Prefectural Arao High School'),
(56039, 46734, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹č’å°¾é«˜ē­‰å­¦ę ”'),
(56040, 46735, 'en', 'name', 'University of Maryland University College Europe'),
(56041, 46736, 'en', 'name', 'Obihiro Otani Junior College'),
(56042, 46736, 'ja', 'name', '帯広大谷短期大学'),
(56043, 46737, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹ę³•éš†åÆŗå›½éš›é«˜ē­‰å­¦ę ”'),
(56044, 46737, 'no_lang_code', 'name', 'Horyuji Kokusai High School'),
(56045, 46738, 'es', 'name', 'Biblioteca del Congreso de la Nación'),
(56046, 46739, 'en', 'name', 'Zhejiang Provincial Environmental Protection Scientific Research Institute'),
(56047, 46739, 'zh', 'name', 'ęµ™ę±ŸēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦č®¾č®”ē ”ē©¶é™¢'),
(56048, 46740, 'en', 'name', 'Observer Research Foundation'),
(56049, 46741, 'no_lang_code', 'name', 'Pitney Bowes (Germany)'),
(56050, 46742, 'en', 'name', 'Institute of Public Finance'),
(56051, 46742, 'hr', 'name', 'Institut za javne financije'),
(56052, 46743, 'de', 'name', 'Hans-Bƶckler-Stiftung'),
(56053, 46743, 'en', 'name', 'Hans Bƶckler Foundation'),
(56054, 46744, 'en', 'name', 'American Association of Directors of Psychiatric Residency Training'),
(56055, 46745, 'no_lang_code', 'name', 'Danone (Morocco)'),
(56056, 46746, 'en', 'name', 'Herrick District Library'),
(56057, 46747, 'no_lang_code', 'name', 'Aerial BioPharma'),
(56058, 46748, 'no_lang_code', 'name', 'Fon (United Kingdom)'),
(56059, 46749, 'en', 'name', 'Chicago Neuropsychology Group'),
(56060, 46750, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł…Ų£Ł…ŁˆŁ† الجامعة'),
(56061, 46750, 'en', 'name', 'Al Mamon University College'),
(56062, 46751, 'en', 'name', 'Qinghai Institute for Endemic Diease Prevention and Control'),
(56063, 46752, 'en', 'name', 'Lawton Public Schools'),
(56064, 46753, 'en', 'name', 'Action on Smoking and Health'),
(56065, 46754, 'da', 'name', 'Parkinsonforeningen'),
(56066, 46755, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ JVCć‚±ćƒ³ć‚¦ćƒƒćƒ‰'),
(56067, 46755, 'no_lang_code', 'name', 'JVC Kenwood (Japan)'),
(56068, 46756, 'en', 'name', 'University of Yamanashi Hospital'),
(56069, 46756, 'ja', 'name', 'å±±ę¢Øå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(56070, 46757, 'no_lang_code', 'name', 'De Beers (United Kingdom)'),
(56071, 46758, 'en', 'name', 'St. Mary''s College'),
(56072, 46758, 'ja', 'name', 'åå¤å±‹ęŸ³åŸŽēŸ­ęœŸå¤§å­¦'),
(56073, 46759, 'en', 'name', 'Cardiovascular Innovation Institute'),
(56074, 46760, 'en', 'name', 'Associated Press'),
(56075, 46761, 'fr', 'name', 'CIRP, College International pour la Recherche en Productique'),
(56076, 46762, 'no_lang_code', 'name', 'Solution Spray Technologies (United states)'),
(56077, 46763, 'en', 'name', 'Gunma Museum of Natural History'),
(56078, 46763, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹č‡Ŗē„¶å²åšē‰©é¤Ø'),
(56079, 46764, 'no_lang_code', 'name', 'Kuehne + Nagel (Greece)'),
(56080, 46765, 'en', 'name', 'Kagawa Prefectural School for the Blind'),
(56081, 46765, 'ja', 'name', 'é¦™å·ēœŒē«‹ē›²å­¦ę ”'),
(56082, 46766, 'no_lang_code', 'name', 'NanoMedica (United States)'),
(56083, 46767, 'en', 'name', 'Gyeonggi College of Science and Technology'),
(56084, 46767, 'ko', 'name', 'ź²½źø°ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(56085, 46768, 'no_lang_code', 'name', 'Research Triangle Environmental Health Collaborative (United States)'),
(56086, 46769, 'en', 'name', 'Mesa Public Library'),
(56087, 46770, 'no_lang_code', 'name', 'Lishui Central Hospital'),
(56088, 46770, 'zh', 'name', 'äø½ę°“åø‚äø­åæƒåŒ»é™¢'),
(56089, 46771, 'no_lang_code', 'name', 'Motor Coach Industries (United States)'),
(56090, 46772, 'en', 'name', 'Aichi Arts Center'),
(56091, 46772, 'ja', 'name', 'ę„›ēŸ„čŠøč”“ę–‡åŒ–ć‚»ćƒ³ć‚æ'),
(56092, 46773, 'es', 'name', 'Centro de Excelencia en Procesos y Productos de Córdoba'),
(56093, 46774, 'en', 'name', 'Pittsburgh Psychoanalytic Center'),
(56094, 46775, 'de', 'name', 'Hautklinik Heidelberg'),
(56095, 46776, 'en', 'name', 'Arannayk Foundation'),
(56096, 46777, 'en', 'name', 'Museum of Modern Art'),
(56097, 46777, 'ja', 'name', 'čŒØåŸŽēœŒčæ‘ä»£ē¾Žč”“é¤Ø'),
(56098, 46778, 'no_lang_code', 'name', 'Cadence Design Systems (United Kingdom)'),
(56099, 46779, 'en', 'name', 'Chinese Pharmaceutical Association'),
(56100, 46779, 'zh', 'name', 'äø­å›½čÆå­¦ä¼š'),
(56101, 46780, 'no_lang_code', 'name', 'Eijkelkamp SonicSampDrill (Netherlands)'),
(56102, 46781, 'no_lang_code', 'name', 'Gemalto (United Kingdom)'),
(56103, 46782, 'no_lang_code', 'name', 'Allergan (India)'),
(56104, 46783, 'en', 'name', 'Australian Society for Medical Research'),
(56105, 46784, 'en', 'name', 'Grantmakers for Education'),
(56106, 46785, 'en', 'name', 'National Consumer Affairs Center of Japan'),
(56107, 46785, 'ja', 'name', 'å›½ę°‘ē”Ÿę“»ć‚»ćƒ³ć‚æćƒ¼'),
(56108, 46786, 'no_lang_code', 'name', 'Guardian Industries (United States)'),
(56109, 46787, 'en', 'name', 'Hekinan Technical High School'),
(56110, 46787, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ē¢§å—å·„ę„­é«˜ē­‰å­¦ę ”'),
(56111, 46788, 'es', 'name', 'Universidad EspaƱol'),
(56112, 46789, 'no_lang_code', 'name', 'Tartis (United States)'),
(56113, 46790, 'en', 'name', 'Shizuoka Prefecture Agricultural and Forestry Research Institute'),
(56114, 46790, 'ja', 'name', 'é™å²”ēœŒ/č¾²ęž—ęŠ€č”“ē ”ē©¶ę‰€'),
(56115, 46791, 'en', 'name', 'Euclid University'),
(56116, 46792, 'de', 'name', 'Hals- Nasen- und Ohrenklinik Gießen'),
(56117, 46793, 'no_lang_code', 'name', 'Siemens (Israel)'),
(56118, 46794, 'en', 'name', 'British Psychological Society'),
(56119, 46795, 'en', 'name', 'Hakodate City Museum'),
(56120, 46795, 'ja', 'name', 'åø‚ē«‹å‡½é¤Øåšē‰©é¤Ø'),
(56121, 46796, 'en', 'name', 'Research in Advanced Medical Informatics and Telematics'),
(56122, 46797, 'de', 'name', 'Fraunhofer-Institut für Integrierte Schaltungen'),
(56123, 46797, 'en', 'name', 'Fraunhofer Institute for Integrated Circuits'),
(56124, 46798, 'de', 'name', 'Schweizerisches Idiotikon'),
(56125, 46798, 'en', 'name', 'Swiss idioticon'),
(56126, 46799, 'no_lang_code', 'name', 'Wellington UniVentures (New Zealand)'),
(56127, 46800, 'no_lang_code', 'name', 'Sunstar (Germany)'),
(56128, 46801, 'no_lang_code', 'name', 'AbbVie (Bahamas)'),
(56129, 46802, 'es', 'name', 'Corporación Autónoma Regional de Los Valles del Sinu y del San Jorge'),
(56130, 46803, 'en', 'name', 'Southeast Clinical Oncology Research Consortium'),
(56131, 46804, 'pt', 'name', 'Associação Brasileira de Metalurgia, Materiais e Mineração'),
(56132, 46805, 'no_lang_code', 'name', 'Quzhou University'),
(56133, 46805, 'zh', 'name', 'č”¢å·žå­¦é™¢'),
(56134, 46806, 'fr', 'name', 'UniversitƩ Euro-Afrique'),
(56135, 46807, 'de', 'name', 'Fraunhofer-Institut für Siliziumtechnologie'),
(56136, 46807, 'en', 'name', 'Fraunhofer Institute for Silicon Technology'),
(56137, 46808, 'en', 'name', 'National Guard Youth Foundation'),
(56138, 46809, 'aa', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žēµŒē ”ē©¶ę‰€'),
(56139, 46809, 'en', 'name', 'Foundation Nerve Institute'),
(56140, 46810, 'es', 'name', 'Universidad Los Leones'),
(56141, 46811, 'no_lang_code', 'name', 'Cooke Aquaculture (Canada)'),
(56142, 46812, 'no_lang_code', 'name', 'Clearside Biomedical (United States)'),
(56143, 46813, 'en', 'name', 'Japan Color Research Institute'),
(56144, 46813, 'ja', 'name', 'ę—„ęœ¬č‰²å½©ē ”ē©¶ę‰€'),
(56145, 46814, 'en', 'name', 'Islamic University of Rotterdam'),
(56146, 46814, 'nl', 'name', 'Islamitische Universiteit Rotterdam'),
(56147, 46815, 'no_lang_code', 'name', 'Tronox (Australia)'),
(56148, 46816, 'en', 'name', 'Hokkaidō Museum of Literature'),
(56149, 46817, 'en', 'name', 'Hue University of Agriculture and Forestry'),
(56150, 46817, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c NĆ“ng LĆ¢m – ĐẔi hį»c Huįŗæ'),
(56151, 46818, 'en', 'name', 'National Institute of Technology, Gifu College'),
(56152, 46818, 'ja', 'name', 'å²é˜œå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(56153, 46819, 'pt', 'name', 'Fundação Meridional de Apoio à Pesquisa AgropecuÔria'),
(56154, 46820, 'en', 'name', 'Hokkaido Science Education Center'),
(56155, 46820, 'ja', 'name', 'åŒ—ęµ·é“ē«‹ē†ē§‘ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(56156, 46821, 'en', 'name', 'BirdLife International'),
(56157, 46822, 'id', 'name', 'Universitas Gajah Putih'),
(56158, 46823, 'no_lang_code', 'name', 'GSMA (United States)'),
(56159, 46824, 'en', 'name', 'Parks Victoria'),
(56160, 46825, 'en', 'name', 'NTI University'),
(56161, 46826, 'en', 'name', 'Fort Monmouth Economic Revitalization Authority'),
(56162, 46827, 'en', 'name', 'Zeta Phi Beta Sorority'),
(56163, 46828, 'en', 'name', 'Kumamoto Educational Center'),
(56164, 46828, 'ja', 'name', 'ē†Šęœ¬åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(56165, 46829, 'en', 'name', 'Dustin Michael Sekula Memorial Library'),
(56166, 46830, 'en', 'name', 'Fukui Prefectural Fujishima High School'),
(56167, 46830, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹č—¤å³¶é«˜ē­‰å­¦ę ”'),
(56168, 46831, 'pt', 'name', 'Prefeitura Municipal de Esteio'),
(56169, 46832, 'en', 'name', 'International Alliance for Biological Standardization'),
(56170, 46833, 'en', 'name', 'Hokkaido Ainu Culture Research Center'),
(56171, 46833, 'ja', 'name', 'åŒ—ęµ·é“åŗåŒ—ęµ·é“ē«‹ć‚¢ć‚¤ćƒŒę°‘ę—ę–‡åŒ–ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(56172, 46834, 'en', 'name', 'Osaka Prefectural Kitano High School'),
(56173, 46834, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹åŒ—é‡Žé«˜ē­‰å­¦ę ”'),
(56174, 46835, 'no_lang_code', 'name', 'Kodak (Canada)'),
(56175, 46836, 'en', 'name', 'National Agricultural Research Institute'),
(56176, 46837, 'ja', 'name', 'äŗ¬ć‚»ćƒ©ę Ŗå¼ä¼šē¤¾'),
(56177, 46837, 'no_lang_code', 'name', 'Kyocera (Japan)'),
(56178, 46838, 'ja', 'name', 'ę•™č‚²ć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢'),
(56179, 46838, 'no_lang_code', 'name', 'Education software (Japan)'),
(56180, 46839, 'en', 'name', 'Hara Eye Hospital'),
(56181, 46839, 'ja', 'name', 'åŽŸēœ¼ē§‘ē—…é™¢'),
(56182, 46840, 'en', 'name', 'Wellcome/MRC Institute of Metabolic Science'),
(56183, 46841, 'en', 'name', 'Control Union Academy'),
(56184, 46842, 'no_lang_code', 'name', 'iNano Medical (Canada)'),
(56185, 46843, 'en', 'name', 'Water and Land Resource Centre'),
(56186, 46844, 'en', 'name', 'Californians Dedicated to Education Foundation'),
(56187, 46845, 'en', 'name', 'Ichinomiya Municipal City Hospital'),
(56188, 46845, 'ja', 'name', '一宮市立市民病院'),
(56189, 46846, 'en', 'name', 'Museum of African American History'),
(56190, 46847, 'en', 'name', 'Indiana Office of Defense Development'),
(56191, 46848, 'en', 'name', 'Wikimedia Belgium'),
(56192, 46848, 'nl', 'name', 'WikimƩdia Belgique'),
(56193, 46849, 'en', 'name', 'Mount Prospect Public Library'),
(56194, 46850, 'no_lang_code', 'name', 'ThyssenKrupp (Liechtenstein)'),
(56195, 46851, 'en', 'name', 'Brainerd Public Library'),
(56196, 46852, 'no_lang_code', 'name', 'Benchmark Education (United States)'),
(56197, 46853, 'en', 'name', 'Australian Society of Orthodontists'),
(56198, 46854, 'no_lang_code', 'name', 'Caterpillar (Germany)'),
(56199, 46855, 'en', 'name', 'Slovak Innovation and Energy Agency'),
(56200, 46855, 'sk', 'name', 'SlovenskĆ” inovačnĆ” a energetickĆ” agentĆŗra'),
(56201, 46856, 'en', 'name', 'Russian Academy of Education'),
(56202, 46856, 'ru', 'name', 'России Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(56203, 46857, 'no_lang_code', 'name', 'Mondelēz International (Singapore)'),
(56204, 46858, 'no_lang_code', 'name', 'GlaxoSmithKline (Croatia)'),
(56205, 46859, 'en', 'name', 'Anaheim Public Library'),
(56206, 46860, 'en', 'name', 'Niigata Prefectural Niigata Minami High School'),
(56207, 46860, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę–°ę½Ÿå—é«˜ē­‰å­¦ę ”'),
(56208, 46861, 'no_lang_code', 'name', 'Spero Energy (United States)'),
(56209, 46862, 'de', 'name', 'Deutsches Patent- und Markenamt'),
(56210, 46862, 'no_lang_code', 'name', 'German Patent and Trade Mark Office (Germany)'),
(56211, 46863, 'en', 'name', 'Hot Springs Research Institute of Kanagawa Prefecture'),
(56212, 46863, 'ja', 'name', 'ē„žå„ˆå·ēœŒęø©ę³‰åœ°å­¦ē ”ē©¶ę‰€'),
(56213, 46864, 'de', 'name', 'Analytische Laboratorium, Analytisches Laboratorium'),
(56214, 46865, 'ja', 'name', 'ä¼Šč±†éŸ®å±±ęø©ę³‰ē—…é™¢'),
(56215, 46865, 'no_lang_code', 'name', 'Izu Nirayama Onsen Hospital'),
(56216, 46866, 'en', 'name', 'Foundation Diamond Aging Society Research Foundation'),
(56217, 46866, 'ja', 'name', 'ćƒ€ć‚¤ćƒ¤é«˜é½¢ē¤¾ä¼šē ”ē©¶č²”å›£'),
(56218, 46867, 'no_lang_code', 'name', 'Glen Dimplex (Germany)'),
(56219, 46868, 'no_lang_code', 'name', 'BMT Group (United States)'),
(56220, 46869, 'no_lang_code', 'name', 'WestRock (Germany)'),
(56221, 46870, 'fr', 'name', 'DƩveloppement Economique Longueuil'),
(56222, 46871, 'no_lang_code', 'name', 'Gold Peak Industries (United Kingdom)'),
(56223, 46872, 'en', 'name', 'Bremen Overseas Research & Development Association'),
(56224, 46873, 'en', 'name', 'Yakub Kolas Central Scientific Library'),
(56225, 46874, 'en', 'name', 'Toyama Prefectural Namerikawa High School'),
(56226, 46874, 'ja', 'name', 'åÆŒå±±ēœŒē«‹ę»‘å·é«˜ē­‰å­¦ę ”'),
(56227, 46875, 'en', 'name', 'Pohang SeMyeong Christianity Hospital'),
(56228, 46876, 'no_lang_code', 'name', 'Oakwood Laboratories (United States)'),
(56229, 46877, 'cs', 'name', 'VlÔda České republiky'),
(56230, 46877, 'en', 'name', 'Government of the Czech Republic'),
(56231, 46878, 'no_lang_code', 'name', 'Univar (United States)'),
(56232, 46879, 'no_lang_code', 'name', 'Qisda (China)'),
(56233, 46880, 'no_lang_code', 'name', 'Hitachi (Germany)'),
(56234, 46881, 'en', 'name', 'Pike Place Market Foundation'),
(56235, 46882, 'no_lang_code', 'name', 'Shure Foods (United States)'),
(56236, 46883, 'no_lang_code', 'name', 'Ixion (Spain)'),
(56237, 46884, 'en', 'name', 'Show-Me Institute'),
(56238, 46885, 'ja', 'name', 'äø‰äŗ•é‡‘å±žé‰±ę„­ę Ŗå¼ä¼šē¤¾'),
(56239, 46885, 'no_lang_code', 'name', 'Mitsui Mining & Smelting (Japan)'),
(56240, 46886, 'en', 'name', 'Lee County Library System'),
(56241, 46887, 'no_lang_code', 'name', 'MunEDA (Germany)'),
(56242, 46888, 'en', 'name', 'Kyoto Municipal Uzumasa Elementary School'),
(56243, 46888, 'ja', 'name', 'äŗ¬éƒ½åø‚ē«‹å¤Ŗē§¦å°å­¦ę ”'),
(56244, 46889, 'en', 'name', 'National Association for Armenian Studies and Research'),
(56245, 46890, 'no_lang_code', 'name', 'Cadence Design Systems (India)'),
(56246, 46891, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¤§ęž—ēµ„'),
(56247, 46891, 'no_lang_code', 'name', 'Obayashi (Japan)');
INSERT INTO `ror_settings` VALUES
(56248, 46892, 'en', 'name', 'United States Naval Sea Cadet Corps'),
(56249, 46893, 'no_lang_code', 'name', 'Hubbell (United States)'),
(56250, 46894, 'no_lang_code', 'name', 'Intel (Israel)'),
(56251, 46895, 'en', 'name', 'Marine Mammals of Maine'),
(56252, 46896, 'en', 'name', 'Africa Progress Panel'),
(56253, 46897, 'en', 'name', 'Society for Human Resource Management'),
(56254, 46898, 'en', 'name', 'Manufacturing Institute'),
(56255, 46899, 'en', 'name', 'Nihon Institute of Medical Science'),
(56256, 46899, 'ja', 'name', 'ę—„ęœ¬åŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(56257, 46900, 'no_lang_code', 'name', 'Abiomed (Germany)'),
(56258, 46901, 'en', 'name', 'Research Institute of Environment, Agriculture and Fisheries, Osaka Prefecture'),
(56259, 46901, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹ē’°å¢ƒč¾²ęž—ę°“ē”£ē·åˆē ”ē©¶ę‰€'),
(56260, 46902, 'no_lang_code', 'name', 'Formosa Plastics (Taiwan)'),
(56261, 46902, 'zh', 'name', 'å°ē£å”‘č† å…¬åø'),
(56262, 46903, 'en', 'name', 'Meiwa Gakuen Junior College'),
(56263, 46903, 'ja', 'name', 'ę˜Žå’Œå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(56264, 46904, 'en', 'name', 'International Pharmaceutical Federation'),
(56265, 46904, 'nl', 'name', 'FƩdƩration Internationale Pharmaceutique'),
(56266, 46905, 'en', 'name', 'Osaka Prefectural Education Center'),
(56267, 46905, 'ja', 'name', 'å¤§é˜Ŗåŗœę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(56268, 46906, 'en', 'name', 'Fukuoka Junior College for Kindergarten Teachers'),
(56269, 46906, 'ja', 'name', 'ē¦å²”ć“ć©ć‚‚ēŸ­ęœŸå¤§å­¦'),
(56270, 46907, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‹ćƒ‡ćƒƒć‚Æ'),
(56271, 46907, 'no_lang_code', 'name', 'Nidek (Japan)'),
(56272, 46908, 'en', 'name', 'Japanese La Salle Academy'),
(56273, 46908, 'ja', 'name', 'ćƒ©ćƒ»ć‚µćƒ¼ćƒ«äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(56274, 46909, 'ja', 'name', 'åŗƒå³¶éƒ½åø‚å­¦åœ’å¤§å­¦'),
(56275, 46909, 'no_lang_code', 'name', 'Hiroshima Cosmopolitan University'),
(56276, 46910, 'en', 'name', 'National Zoonoses and Food Hygiene Research Centre'),
(56277, 46911, 'ms', 'name', 'INFOFISH'),
(56278, 46912, 'no_lang_code', 'name', 'Dana (United States)'),
(56279, 46913, 'ja', 'name', 'ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(56280, 46913, 'no_lang_code', 'name', 'JFE Holdings (Japan)'),
(56281, 46914, 'en', 'name', 'Global Health Corps'),
(56282, 46915, 'es', 'name', 'Fundacion Biodiversa Colombia'),
(56283, 46916, 'no_lang_code', 'name', 'Medella Health (Canada)'),
(56284, 46917, 'en', 'name', 'American Society of Heating, Refrigerating, and Air-Conditioning Engineers'),
(56285, 46918, 'en', 'name', 'Whiteville City Schools'),
(56286, 46919, 'en', 'name', 'Nashua Public Library'),
(56287, 46920, 'no_lang_code', 'name', 'ITT (Germany)'),
(56288, 46921, 'en', 'name', 'Donetsk Institute for Physics and Engineering named after O.O. Galkin'),
(56289, 46921, 'uk', 'name', 'Донецкий физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. А.А.Галкина'),
(56290, 46922, 'en', 'name', 'Aichi Prefectural Mitsu High School'),
(56291, 46922, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å¾”ę“„é«˜ē­‰å­¦ę ”'),
(56292, 46923, 'no_lang_code', 'name', 'Kentucky imaging Technologies (United States)'),
(56293, 46924, 'no_lang_code', 'name', 'Transcend Engineering (United States)'),
(56294, 46925, 'no_lang_code', 'name', 'Dynacast (Canada)'),
(56295, 46926, 'no_lang_code', 'name', 'Foxlink (Taiwan)'),
(56296, 46926, 'zh', 'name', 'ę­£å““ē²¾åÆ†å·„äøš'),
(56297, 46927, 'en', 'name', 'Sri Aurobindo Institute of Technology'),
(56298, 46928, 'en', 'name', 'Baylor Institute for Rehabilitation'),
(56299, 46929, 'en', 'name', 'Newport Chemical Depot'),
(56300, 46930, 'de', 'name', 'Thüringer Landesanstalt für Landwirtschaft'),
(56301, 46931, 'en', 'name', 'Kanagawa Odawara Nursing School'),
(56302, 46931, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹å°ē”°åŽŸé¤Šč­·å­¦ę ”'),
(56303, 46932, 'en', 'name', 'Central Kentucky Educational Cooperative'),
(56304, 46933, 'no_lang_code', 'name', 'TE Connectivity (Austria)'),
(56305, 46934, 'no_lang_code', 'name', 'Biominas (Brazil)'),
(56306, 46935, 'pt', 'name', 'Associação Brasileira de Engenharia Agrícola'),
(56307, 46936, 'en', 'name', 'Thai Nguyen University of Agriculture and Forestry'),
(56308, 46936, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c NĆ“ng lĆ¢m, ĐẔi hį»c ThĆ”i NguyĆŖn'),
(56309, 46937, 'en', 'name', 'Edogawa Girls'' Junior & Senior High School'),
(56310, 46937, 'ja', 'name', 'ę±Ÿęˆøå·å„³å­äø­å­¦ę ”ćƒ»é«˜ē­‰å­¦ę ”'),
(56311, 46938, 'en', 'name', 'Jiangsu Provincial Seismological Bureau'),
(56312, 46938, 'zh', 'name', 'ę±Ÿč‹ēœåœ°éœ‡å±€'),
(56313, 46939, 'en', 'name', 'Kanagawa Prefectural Youth Center'),
(56314, 46939, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹é’å°‘å¹“ć‚»ćƒ³ć‚æćƒ¼'),
(56315, 46940, 'en', 'name', 'Council on Foundations'),
(56316, 46941, 'no_lang_code', 'name', 'Genocea (United States)'),
(56317, 46942, 'en', 'name', 'Lifebox'),
(56318, 46943, 'de', 'name', 'Institut für Salutogenese'),
(56319, 46944, 'pt', 'name', 'Fundação Cearense de Meteorologia e Recursos Hídricos'),
(56320, 46945, 'en', 'name', 'Delaware Division of Libraries'),
(56321, 46946, 'no_lang_code', 'name', 'Infineum (United Kingdom)'),
(56322, 46947, 'no_lang_code', 'name', 'Gravity Bio (United States)'),
(56323, 46948, 'en', 'name', 'Saga Prefectural Imari Agriculture and Forestry High School'),
(56324, 46948, 'ja', 'name', 'ä½č³€ēœŒē«‹ä¼Šäø‡é‡Œč¾²ęž—é«˜ē­‰å­¦ę ”'),
(56325, 46949, 'en', 'name', 'Canadian Friends Of Tel-Aviv University'),
(56326, 46950, 'en', 'name', 'Kern County Library'),
(56327, 46951, 'no_lang_code', 'name', 'Nanya Technology (Taiwan)'),
(56328, 46951, 'zh', 'name', 'å—äŗžē§‘ęŠ€'),
(56329, 46952, 'en', 'name', 'North Carolina Biosciences Organization'),
(56330, 46953, 'no_lang_code', 'name', 'Johnson Matthey (France)'),
(56331, 46954, 'en', 'name', 'Bronllys Hospital'),
(56332, 46955, 'en', 'name', 'Stimson Center'),
(56333, 46956, 'en', 'name', 'Iowa Oncology Research Association'),
(56334, 46957, 'en', 'name', 'National Engineering Research Center for Wheat'),
(56335, 46957, 'zh', 'name', 'å›½å®¶å°éŗ¦å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(56336, 46958, 'no_lang_code', 'name', 'Netsil (United States)'),
(56337, 46959, 'en', 'name', 'Research Institute for Policies on Pension and Aging'),
(56338, 46959, 'ja', 'name', 'å¹“é‡‘ćØé«˜é½¢åŒ–ć«é–¢ć™ć‚‹ę”æē­–ē ”ē©¶ę‰€'),
(56339, 46960, 'en', 'name', 'Sapporo Medical University Hospital'),
(56340, 46960, 'ja', 'name', 'ęœ­å¹ŒåŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(56341, 46961, 'pt', 'name', 'Sociedade de Anestesiologia do Rio Grande do Sul'),
(56342, 46962, 'en', 'name', 'Medical Teams International'),
(56343, 46963, 'no_lang_code', 'name', 'Essilor (France)'),
(56344, 46964, 'en', 'name', 'Ueda Womens Junior College'),
(56345, 46964, 'ja', 'name', 'äøŠē”°å„³å­ēŸ­ęœŸå¤§å­¦'),
(56346, 46965, 'no_lang_code', 'name', 'Alchemy (Canada)'),
(56347, 46966, 'no_lang_code', 'name', 'Durango Multimedia (United States)'),
(56348, 46967, 'no_lang_code', 'name', 'Nova Measuring Instruments (Israel)'),
(56349, 46968, 'en', 'name', 'Chinese Academy of Agricultural Engineering'),
(56350, 46968, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å†œäøšå·„ēØ‹'),
(56351, 46969, 'no_lang_code', 'name', 'Sheeta (United states)'),
(56352, 46970, 'en', 'name', 'Chiba Prefectural Sawara High School'),
(56353, 46970, 'ja', 'name', 'åƒč‘‰ēœŒē«‹ä½åŽŸé«˜ē­‰å­¦ę ”'),
(56354, 46971, 'no_lang_code', 'name', 'Alu Group (Spain)'),
(56355, 46972, 'no_lang_code', 'name', 'Varian Medical Systems (Germany)'),
(56356, 46973, 'no_lang_code', 'name', 'Myocardial Solutions (United States)'),
(56357, 46974, 'en', 'name', 'Priory Hospital Chelmsford'),
(56358, 46975, 'no_lang_code', 'name', 'Phoenix Contact (United States)'),
(56359, 46976, 'en', 'name', 'Aichi Prefectural Narumi High School'),
(56360, 46976, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹é³“ęµ·é«˜ē­‰å­¦ę ”'),
(56361, 46977, 'de', 'name', 'Deutsche AIDS-Stiftung'),
(56362, 46978, 'no_lang_code', 'name', '525 Solutions (United States)'),
(56363, 46979, 'no_lang_code', 'name', 'SK Group (Japan)'),
(56364, 46980, 'en', 'name', 'Kyoto Municipal Fushimi Technical High School'),
(56365, 46980, 'ja', 'name', 'äŗ¬éƒ½åø‚ē«‹ä¼č¦‹å·„ę„­é«˜ē­‰å­¦ę ”'),
(56366, 46981, 'en', 'name', 'Qingdao Institute of Marine Geology'),
(56367, 46981, 'zh', 'name', 'äø­å›½åœ°č“Øč°ƒęŸ„å±€ é’å²›ęµ·ę“‹åœ°č“Øē ”ē©¶ę‰€'),
(56368, 46982, 'en', 'name', 'State Treasurer of South Carolina'),
(56369, 46983, 'en', 'name', 'American Society for Surgery of the Hand'),
(56370, 46984, 'en', 'name', 'Niigata Prefectural Kamo Agriculture and Forestry High School'),
(56371, 46984, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹åŠ čŒ‚č¾²ęž—é«˜ē­‰å­¦ę ”'),
(56372, 46985, 'no_lang_code', 'name', 'eBay (Ireland)'),
(56373, 46986, 'no_lang_code', 'name', 'Johnson Controls (Australia)'),
(56374, 46987, 'en', 'name', 'Australia Zoo'),
(56375, 46988, 'en', 'name', 'World Veterinary Poultry Association'),
(56376, 46989, 'en', 'name', 'League of United Latin American Citizens'),
(56377, 46990, 'no_lang_code', 'name', 'Manta Biofuel (United States)'),
(56378, 46991, 'en', 'name', 'National Food Technology Research Centre'),
(56379, 46992, 'en', 'name', 'BƬnh Dʰʔng University'),
(56380, 46992, 'vi', 'name', 'ĐẔi hį»c BƬnh Dʰʔng'),
(56381, 46993, 'no_lang_code', 'name', 'Electrovaya (Germany)'),
(56382, 46994, 'no_lang_code', 'name', 'Unilever (Germany)'),
(56383, 46995, 'en', 'name', 'Ehime Prefectural Matsuyama Technical High School'),
(56384, 46995, 'ja', 'name', 'ę„›åŖ›ēœŒē«‹ę¾å±±å·„ę„­é«˜ē­‰å­¦ę ”'),
(56385, 46996, 'no_lang_code', 'name', 'Princeton Power Systems (United states)'),
(56386, 46997, 'en', 'name', 'Hokkaido Orthopedic Surgery Memorial Hospital'),
(56387, 46998, 'en', 'name', 'eHealth Africa'),
(56388, 46999, 'no_lang_code', 'name', 'OncoTab (United States)'),
(56389, 47000, 'en', 'name', 'Nippon Dental University Hospital'),
(56390, 47000, 'ja', 'name', 'ę—„ęœ¬ę­Æē§‘å¤§å­¦é™„å±žē—…é™¢'),
(56391, 47001, 'de', 'name', 'Institut für angewandte Arbeitswissenschaft'),
(56392, 47002, 'en', 'name', 'Flower And Green Bank'),
(56393, 47002, 'ja', 'name', 'čŠ±ćØē·‘ć®éŠ€č”Œ'),
(56394, 47003, 'en', 'name', 'Concept Foundation'),
(56395, 47004, 'no_lang_code', 'name', 'Opti O2 (United States)'),
(56396, 47005, 'en', 'name', 'Fairbanks North Star Borough School District'),
(56397, 47006, 'no_lang_code', 'name', 'Aratana Therapeutics (United States)'),
(56398, 47007, 'en', 'name', 'Nagano Prefecture Forestry Research Center'),
(56399, 47007, 'ja', 'name', 'é•·é‡ŽēœŒęž—ę„­ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(56400, 47008, 'no_lang_code', 'name', 'Woodruff Scientific (United States)'),
(56401, 47009, 'sv', 'name', 'Svensk Fƶrening fƶr Sƶmnforskning och Sƶmnmedicin'),
(56402, 47010, 'en', 'name', 'Orkhon University'),
(56403, 47011, 'en', 'name', 'Nagano Technical High School'),
(56404, 47011, 'ja', 'name', 'é•·é‡Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(56405, 47012, 'en', 'name', 'Zhejiang Institute of Metrology'),
(56406, 47012, 'zh', 'name', 'č®”é‡ęµ™ę±Ÿē†å·„å¤§å­¦'),
(56407, 47013, 'no_lang_code', 'name', 'Carl Zeiss (Israel)'),
(56408, 47014, 'no_lang_code', 'name', 'Tau Science (United States)'),
(56409, 47015, 'en', 'name', 'Zaman University'),
(56410, 47015, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™ įž įŸ’įžŸįž¶įž˜įŸ‰įž¶įž“įŸ‹'),
(56411, 47016, 'en', 'name', 'Children''s Trust Foundation'),
(56412, 47017, 'no_lang_code', 'name', 'Quanterix (United States)'),
(56413, 47018, 'en', 'name', 'Institute of Animal Science and Pastures'),
(56414, 47018, 'pt', 'name', 'Instituto de Zootecnia'),
(56415, 47019, 'en', 'name', 'North Carolina Association of Community College Trustees'),
(56416, 47020, 'no_lang_code', 'name', 'Flexsurface (United States)'),
(56417, 47021, 'no_lang_code', 'name', 'Hoerbiger (Germany)'),
(56418, 47022, 'en', 'name', 'Ōita Prefectural Museum of History'),
(56419, 47022, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(56420, 47023, 'no_lang_code', 'name', 'Intellectual Ventures (Singapore)'),
(56421, 47024, 'no_lang_code', 'name', 'BorgWarner (United States)'),
(56422, 47025, 'en', 'name', 'Science Teachers Association of Nigeria'),
(56423, 47026, 'en', 'name', 'National Archives and Library of Ethiopia'),
(56424, 47027, 'en', 'name', 'International Institute for Advanced Studies'),
(56425, 47027, 'ja', 'name', 'é«˜ē­‰ē ”ē©¶č²”å›£ć®å›½éš›ē ”ē©¶ę‰€'),
(56426, 47028, 'en', 'name', 'Tokyo Metropolitan Musashi High School'),
(56427, 47028, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę­¦č”µé«˜ē­‰å­¦ę ”'),
(56428, 47029, 'en', 'name', 'Live & Learn Environmental Education'),
(56429, 47030, 'no_lang_code', 'name', 'China National Chemical Corporation (China)'),
(56430, 47030, 'zh', 'name', 'äø­å›½åŒ–å·„é›†å›¢å…¬åø'),
(56431, 47031, 'en', 'name', 'American Pharmacists Association'),
(56432, 47032, 'en', 'name', 'Nimbkar Agricultural Research Institute'),
(56433, 47033, 'en', 'name', 'Nagano Prefecture Inariyama Nursing School'),
(56434, 47033, 'ja', 'name', 'ēØ²č·å±±é¤Šč­·å­¦ę ”'),
(56435, 47034, 'de', 'name', 'Open Knowledge Foundation Deutschland'),
(56436, 47035, 'en', 'name', 'Canadian Society for Vascular Surgery'),
(56437, 47036, 'en', 'name', 'New York Child Learning Institute'),
(56438, 47037, 'hy', 'name', 'ÕŽÕ«Ö„Õ«Õ“Õ„Õ¤Õ«Õ” Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶'),
(56439, 47037, 'no_lang_code', 'name', 'Wikimedia Armenia'),
(56440, 47038, 'en', 'name', 'Madison City Schools'),
(56441, 47039, 'en', 'name', 'Vocational College of Traffic and Transport'),
(56442, 47039, 'sl', 'name', 'ViŔja prometna Ŕola Maribor'),
(56443, 47040, 'en', 'name', 'Richland School District Two'),
(56444, 47041, 'en', 'name', 'Children''s Hospital of Oklahoma'),
(56445, 47042, 'no_lang_code', 'name', 'Emerson (China)'),
(56446, 47043, 'en', 'name', 'Jiaxing Vocational Technical College'),
(56447, 47043, 'zh', 'name', 'å˜‰å…“čŒäøšęŠ€ęœÆå­¦é™¢'),
(56448, 47044, 'en', 'name', 'The Jikei University Hospital'),
(56449, 47044, 'ja', 'name', 'ę±äŗ¬ę…ˆęµä¼šåŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(56450, 47045, 'no_lang_code', 'name', 'Volvo (Canada)'),
(56451, 47046, 'en', 'name', 'Carolus Magnus University'),
(56452, 47047, 'en', 'name', 'Montana Cancer Consortium'),
(56453, 47048, 'en', 'name', 'Environment and Population Research Centre'),
(56454, 47049, 'en', 'name', 'Discovery Behavioral Healthcare'),
(56455, 47050, 'no_lang_code', 'name', 'Power Info (United States)'),
(56456, 47051, 'en', 'name', 'Osaka Municipal Nishi High School'),
(56457, 47051, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹č„æé«˜ē­‰å­¦ę ”'),
(56458, 47052, 'en', 'name', 'Keio Shiki Senior High School'),
(56459, 47052, 'ja', 'name', 'ę…¶ę‡‰ē¾©å”¾åæ—ęœØé«˜ē­‰å­¦ę ”'),
(56460, 47053, 'es', 'name', 'Instituto Universitario BIOS'),
(56461, 47054, 'en', 'name', 'Yuki Animal Hospital'),
(56462, 47055, 'en', 'name', 'DMC University Laboratories'),
(56463, 47056, 'no_lang_code', 'name', 'e-Therapeutics (United Kingdom)'),
(56464, 47057, 'en', 'name', 'University of Hai Duong'),
(56465, 47057, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Hįŗ£i Dʰʔng'),
(56466, 47058, 'en', 'name', 'Fraunhofer UK Research'),
(56467, 47059, 'no_lang_code', 'name', 'Teccampos (Brazil)'),
(56468, 47060, 'en', 'name', 'Inagakuen Public High School'),
(56469, 47060, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒä¼Šå„ˆå­¦åœ’ē·åˆé«˜ę ”'),
(56470, 47061, 'en', 'name', 'Shaoxing No.6 People''s Hospital'),
(56471, 47061, 'zh', 'name', 'ē»å…“åø‚ē«‹åŒ»é™¢'),
(56472, 47062, 'en', 'name', 'Kagoshima University Hospital'),
(56473, 47062, 'ja', 'name', '鹿児島大学病院'),
(56474, 47063, 'en', 'name', 'Minnesota Institute of Public Health'),
(56475, 47064, 'no_lang_code', 'name', 'LuK (United Kingdom)'),
(56476, 47065, 'de', 'name', 'Fachgruppe für Untertagbau'),
(56477, 47065, 'en', 'name', 'Swiss Tunnelling Society'),
(56478, 47066, 'ja', 'name', 'ę©æåŽŸåø‚ę˜†č™«é¤Ø'),
(56479, 47066, 'no_lang_code', 'name', 'Kashihara Insectarium'),
(56480, 47067, 'en', 'name', 'Kansai High School'),
(56481, 47067, 'ja', 'name', 'é–¢č„æé«˜ē­‰å­¦ę ”'),
(56482, 47068, 'en', 'name', 'Netherlands Defence Academy'),
(56483, 47069, 'en', 'name', 'Association for Canadian Studies in Australia and New Zealand'),
(56484, 47070, 'no_lang_code', 'name', 'TE Connectivity (China)'),
(56485, 47071, 'en', 'name', 'Middle Tennessee Research Institute'),
(56486, 47072, 'no_lang_code', 'name', 'Trimeric (United States)'),
(56487, 47073, 'en', 'name', 'Nature Foundation SA'),
(56488, 47074, 'en', 'name', 'Farm Foundation'),
(56489, 47075, 'pt', 'name', 'Fundação Liberato'),
(56490, 47076, 'cs', 'name', 'StĆ”tnĆ­ Uřad pro Jadernou Bezpečnost'),
(56491, 47076, 'en', 'name', 'State Office for Nuclear Safety'),
(56492, 47077, 'no_lang_code', 'name', 'Silicon Labs (United States)'),
(56493, 47078, 'no_lang_code', 'name', 'MSP Analytics (United States)'),
(56494, 47079, 'id', 'name', 'Universitas Panca Marga'),
(56495, 47080, 'en', 'name', 'Lamont-Doherty Earth Observatory'),
(56496, 47081, 'en', 'name', 'Chest Heart and Stroke Scotland'),
(56497, 47082, 'no_lang_code', 'name', 'Energy Driven Technologies (United States)'),
(56498, 47083, 'en', 'name', 'De Borda Institute'),
(56499, 47084, 'it', 'name', 'Associazione Italiana Di Oncologia Medica'),
(56500, 47085, 'en', 'name', 'Guang Fu Hospital'),
(56501, 47085, 'zh', 'name', 'ęµ™ę±Ÿé‡‘åŽå¹æē¦åŒ»é™¢'),
(56502, 47086, 'en', 'name', 'Shuko Junior College'),
(56503, 47086, 'ja', 'name', 'äæ®ē“…ēŸ­ęœŸå¤§å­¦'),
(56504, 47087, 'en', 'name', 'NARI Group (China)'),
(56505, 47087, 'zh', 'name', 'å—äŗ¬č‡ŖåŠØåŒ–ē ”ē©¶ę‰€'),
(56506, 47088, 'en', 'name', 'Ipswich City Council'),
(56507, 47089, 'en', 'name', 'Agri-Futures Nova Scotia Association'),
(56508, 47090, 'no_lang_code', 'name', 'Frontier Agriculture (United Kingdom)'),
(56509, 47091, 'en', 'name', 'Takaishi High School'),
(56510, 47091, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹é«˜ēŸ³é«˜ē­‰å­¦ę ”'),
(56511, 47092, 'no_lang_code', 'name', 'Precision for Medicine (United States)'),
(56512, 47093, 'en', 'name', 'Sakai Women''s Junior College'),
(56513, 47093, 'ja', 'name', '堺儳子短期大学'),
(56514, 47094, 'no_lang_code', 'name', 'Lite-On Technology Corporation (Taiwan)'),
(56515, 47094, 'zh', 'name', 'å»ŗå…“ē§‘ęŠ€å…¬åø'),
(56516, 47095, 'en', 'name', 'Kyoto Municipal Junior College of Nursing'),
(56517, 47095, 'ja', 'name', 'äŗ¬éƒ½åø‚ē«‹ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(56518, 47096, 'en', 'name', 'Yamanashi Prefectural Museum'),
(56519, 47096, 'ja', 'name', 'å±±ę¢ØēœŒē«‹åšē‰©é¤Ø'),
(56520, 47097, 'sr', 'name', 'Sportska Akademija Beograd'),
(56521, 47098, 'en', 'name', 'Flint Hills Regional Council'),
(56522, 47099, 'en', 'name', 'Universal Technical Institute of Illinois'),
(56523, 47100, 'en', 'name', 'Emerge'),
(56524, 47101, 'en', 'name', 'Miyakoda Elementary School'),
(56525, 47101, 'ja', 'name', 'éƒ½ē”°å°å­¦ę ”'),
(56526, 47102, 'en', 'name', 'Ministry of Agro Industry and Food Security'),
(56527, 47103, 'en', 'name', 'International Union of Immunological Societies'),
(56528, 47104, 'es', 'name', 'Instituto Nacional de Ciencias AgrĆ­colas'),
(56529, 47105, 'en', 'name', 'Kagawa Prefectural Board of Education'),
(56530, 47105, 'ja', 'name', 'é¦™å·ēœŒę•™č‚²å§”å“”ä¼š'),
(56531, 47106, 'de', 'name', 'BUND Naturschutz'),
(56532, 47107, 'no_lang_code', 'name', 'Brooks Automation (Germany)'),
(56533, 47108, 'no_lang_code', 'name', 'Convergent Science (United States)'),
(56534, 47109, 'en', 'name', 'Xinjiang Institute of Water Resources and Hydropower Research'),
(56535, 47109, 'zh', 'name', 'ę–°ē–†ę°“åˆ©ę°“ē”µē§‘å­¦ē ”ē©¶é™¢'),
(56536, 47110, 'no_lang_code', 'name', 'GlobalFoundries (Cayman Islands)'),
(56537, 47111, 'en', 'name', 'Global Alliance for Livestock Veterinary Medicines'),
(56538, 47112, 'en', 'name', 'Tokyo Metropolitan Nogyo High School'),
(56539, 47113, 'en', 'name', 'Japan Private School Education Research Institute'),
(56540, 47113, 'ja', 'name', 'ę—„ęœ¬ē§å­¦ę•™č‚²ē ”ē©¶ę‰€'),
(56541, 47114, 'ja', 'name', 'ä»Šę²»ę˜Žå¾³ēŸ­ęœŸå¤§å­¦'),
(56542, 47114, 'no_lang_code', 'name', 'Imabari Meitoku Junior College'),
(56543, 47115, 'no_lang_code', 'name', 'WFS Technologies (United Kingdom)'),
(56544, 47116, 'en', 'name', 'Institute for the Chemistry of OrganoMetallic Compounds'),
(56545, 47116, 'it', 'name', 'Consiglio Nazionale delle Ricerche - Istituto di Chimica dei Composti OrganoMetallici'),
(56546, 47117, 'de', 'name', 'Deutsches Beratungszentrum für Hygiene'),
(56547, 47118, 'en', 'name', 'Kyoto Prefectural Sagano High School'),
(56548, 47118, 'ja', 'name', 'åµÆå³Øé‡Žé«˜ē­‰å­¦ę ”'),
(56549, 47119, 'en', 'name', 'WaterNSW'),
(56550, 47120, 'en', 'name', 'International Initiative for Impact Evaluation'),
(56551, 47121, 'ja', 'name', 'ćˆć™ć‚ćƒ¼ć‚‹ćˆćƒ¼'),
(56552, 47121, 'no_lang_code', 'name', 'Software Research Associates (Japan)'),
(56553, 47122, 'no_lang_code', 'name', 'Farus (United States)'),
(56554, 47123, 'tr', 'name', 'Korgan Devlet Hastanesi'),
(56555, 47124, 'no_lang_code', 'name', 'Ametek (Germany)'),
(56556, 47125, 'no_lang_code', 'name', 'Afingen (United States)'),
(56557, 47126, 'no_lang_code', 'name', 'IDEX Corporation (Germany)'),
(56558, 47127, 'en', 'name', 'Western History Association'),
(56559, 47128, 'en', 'name', 'National Museum of Modern Art Tokyo'),
(56560, 47128, 'ja', 'name', 'ę±äŗ¬å›½ē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(56561, 47129, 'no_lang_code', 'name', 'Akonia Holographics (United States)'),
(56562, 47130, 'de', 'name', 'Europäisches Institut für Weltraumpolitik'),
(56563, 47130, 'en', 'name', 'European Space Policy Institute'),
(56564, 47131, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Agriculture'),
(56565, 47132, 'en', 'name', 'Tateyama Elementary School'),
(56566, 47132, 'ja', 'name', 'ē«‹å±±å°å­¦ę ”'),
(56567, 47133, 'pt', 'name', 'Instituto de Pesca'),
(56568, 47134, 'en', 'name', 'Institute of Clinical Research'),
(56569, 47135, 'en', 'name', 'Institute of Informatics and Telematics'),
(56570, 47135, 'it', 'name', 'Istituto di Informatica e Telematica'),
(56571, 47136, 'en', 'name', 'Federal Institute for Education Development'),
(56572, 47136, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ автономное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(56573, 47137, 'no_lang_code', 'name', 'Answare (Spain)'),
(56574, 47138, 'en', 'name', 'Nueta Hidatsa Sahnish College'),
(56575, 47139, 'en', 'name', 'African Virtual University'),
(56576, 47140, 'no_lang_code', 'name', 'Doka-Gene (Russia)'),
(56577, 47141, 'es', 'name', 'Universidad Metropolitana de Honduras'),
(56578, 47142, 'en', 'name', 'Association for the Advancement of Baltic Studies'),
(56579, 47143, 'no_lang_code', 'name', 'Ubiwhere (Portugal)'),
(56580, 47144, 'no_lang_code', 'name', 'FTL Labs (United States)'),
(56581, 47145, 'no_lang_code', 'name', 'Extend Biosciences (United States)'),
(56582, 47146, 'en', 'name', 'Russian Scientific Research Institute Microbe'),
(56583, 47147, 'no_lang_code', 'name', 'Seascape Consultants (United Kingdom)'),
(56584, 47148, 'no_lang_code', 'name', 'Lite-On Technology Corporation (China)'),
(56585, 47148, 'zh', 'name', 'å»ŗå…“ē§‘ęŠ€å…¬åø'),
(56586, 47149, 'en', 'name', 'National Akagi of Youth Exchange House'),
(56587, 47149, 'ja', 'name', 'å›½ē«‹čµ¤åŸŽé’å°‘å¹“äŗ¤ęµć®å®¶'),
(56588, 47150, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŖć‚³ćƒ¼'),
(56589, 47150, 'no_lang_code', 'name', 'Ricoh (Japan)'),
(56590, 47151, 'no_lang_code', 'name', 'Exciton Technologies (Canada)'),
(56591, 47152, 'en', 'name', 'Marine Advanced Technology Education'),
(56592, 47153, 'en', 'name', 'Sexual Medicine Society of North America'),
(56593, 47154, 'no_lang_code', 'name', 'Icy Waters (Canada)'),
(56594, 47155, 'en', 'name', 'Nara Prefectural Board of Education'),
(56595, 47155, 'ja', 'name', 'å„ˆč‰ÆēœŒę•™č‚²å§”å“”ä¼š'),
(56596, 47156, 'en', 'name', 'Aichi Prefectural Tsurugi hill high school'),
(56597, 47156, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹é¶“åŸŽäø˜é«˜ē­‰å­¦ę ”'),
(56598, 47157, 'no_lang_code', 'name', 'Irida Labs (Greece)'),
(56599, 47158, 'en', 'name', 'Institute for Systems and Technologies of Information, Control and Communication'),
(56600, 47159, 'en', 'name', 'Iwakuni Junior College'),
(56601, 47159, 'ja', 'name', 'å²©å›½ēŸ­ęœŸå¤§å­¦'),
(56602, 47160, 'de', 'name', 'Deutsches Schiffahrtsmuseum'),
(56603, 47160, 'en', 'name', 'German Maritime Museum'),
(56604, 47161, 'ja', 'name', 'ę—„ęœ¬ē¢å­ę Ŗå¼ä¼šē¤¾'),
(56605, 47161, 'no_lang_code', 'name', 'NGK Insulators (Japan)'),
(56606, 47162, 'en', 'name', 'American Evaluation Association'),
(56607, 47163, 'en', 'name', 'Farm Journal Foundation'),
(56608, 47164, 'en', 'name', 'Japan Patent Office'),
(56609, 47164, 'ja', 'name', '特許庁'),
(56610, 47165, 'no_lang_code', 'name', 'Intelligent Fusion Technology (United States)'),
(56611, 47166, 'en', 'name', 'Niigata Prefectural Kashiwazaki Technical High School'),
(56612, 47166, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ęŸå“Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(56613, 47167, 'de', 'name', 'Fraunhofer-Einrichtung für Mikrosysteme und Festkörper-Technologien'),
(56614, 47167, 'en', 'name', 'Fraunhofer Research Institution for Microsystems and Solid State Technologies'),
(56615, 47168, 'en', 'name', 'Institute of Applied Physiology & Medicine'),
(56616, 47169, 'de', 'name', 'M.A.S - Alzheimerhilfe - Demenzservicestelle Bad Ischl, MAS Alzheimerhilfe'),
(56617, 47170, 'pt', 'name', 'Agende Guarulhos'),
(56618, 47171, 'no_lang_code', 'name', 'Feiro Marine Life Center'),
(56619, 47172, 'en', 'name', 'American College of Veterinary Internal Medicine'),
(56620, 47173, 'de', 'name', 'Erich Schmid Institut für Materialwissenschaft'),
(56621, 47173, 'en', 'name', 'Erich Schmid Institute of Materials Science'),
(56622, 47174, 'no_lang_code', 'name', 'Albemarle (United States)'),
(56623, 47175, 'en', 'name', 'Institute of Geological and Mining Research'),
(56624, 47175, 'fr', 'name', 'Institut de Recherches Géologiques et Minières'),
(56625, 47176, 'no_lang_code', 'name', 'Skyworks Solutions (Japan)'),
(56626, 47177, 'am', 'name', 'į‰…į‹µįˆµį‰µ įˆ›įˆ­į‹«įˆ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(56627, 47177, 'en', 'name', 'St. Mary''s University'),
(56628, 47178, 'en', 'name', 'Independent Administrative Institution National Research Institute for Cultural Properties'),
(56629, 47178, 'ja', 'name', 'ę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(56630, 47179, 'en', 'name', 'Hospital Agioi Anargyroi'),
(56631, 47180, 'en', 'name', 'Yamanashi Prefectural School for the Visually Impaired'),
(56632, 47180, 'ja', 'name', 'å±±ę¢ØēœŒē«‹ē›²å­¦ę ”'),
(56633, 47181, 'en', 'name', 'Fukushima Prefectural Culture Center'),
(56634, 47181, 'ja', 'name', 'ē¦å³¶ēœŒę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(56635, 47182, 'en', 'name', 'American Association for Geriatric Psychiatry'),
(56636, 47183, 'pt', 'name', 'Secretaria de Estado de Educação do Distrito Federal'),
(56637, 47184, 'no_lang_code', 'name', 'RPX (United States)'),
(56638, 47185, 'en', 'name', 'Blue Cross Blue Shield Association'),
(56639, 47186, 'en', 'name', 'European Association of Environmental and Resource Economists'),
(56640, 47187, 'en', 'name', 'District of Columbia Public Education Fund'),
(56641, 47188, 'en', 'name', 'Miyazaki Prefectural Wood Utilization Research Center'),
(56642, 47188, 'ja', 'name', 'å®®å“ŽēœŒęœØęåˆ©ē”ØęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(56643, 47189, 'no_lang_code', 'name', 'NanoXplore (Canada)'),
(56644, 47190, 'no_lang_code', 'name', 'Kohler (New Zealand)'),
(56645, 47191, 'en', 'name', 'Toorak College'),
(56646, 47192, 'en', 'name', 'Berlin Graduate School for Transnational Studies'),
(56647, 47193, 'en', 'name', 'Yamashina Institute for Ornithology'),
(56648, 47193, 'ja', 'name', 'å±±éšŽé³„é”žē ”ē©¶ę‰€'),
(56649, 47194, 'no_lang_code', 'name', 'Eni (United Kingdom)'),
(56650, 47195, 'en', 'name', 'PowerMyLearning'),
(56651, 47196, 'de', 'name', 'Frauenklinik Heidelberg'),
(56652, 47197, 'en', 'name', 'Foundation Learning Software Information Research Center'),
(56653, 47197, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å­¦ēæ’ć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢ęƒ…å ±ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(56654, 47198, 'en', 'name', 'Federal University Otuoke'),
(56655, 47199, 'no_lang_code', 'name', 'TDK (China)'),
(56656, 47199, 'zh', 'name', 'TDKę Ŗå¼ä¼šē¤¾'),
(56657, 47200, 'no_lang_code', 'name', 'Yazaki (United Kingdom)'),
(56658, 47201, 'no_lang_code', 'name', 'Skyworks Solutions (United States)'),
(56659, 47202, 'en', 'name', 'Family Court of Australia'),
(56660, 47203, 'en', 'name', 'Gunma Archaeological Research Foundation'),
(56661, 47203, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ē¾¤é¦¬ēœŒåŸ‹č”µę–‡åŒ–č²”čŖæęŸ»äŗ‹ę„­å›£'),
(56662, 47204, 'en', 'name', 'Georgia Chamber of Commerce'),
(56663, 47205, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å¤§é˜Ŗå—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(56664, 47205, 'no_lang_code', 'name', 'Osaka Minami Medical Center'),
(56665, 47206, 'en', 'name', 'Association of Clinical Research Professionals'),
(56666, 47207, 'en', 'name', 'Gifu Prefectural Board of Education'),
(56667, 47207, 'ja', 'name', 'å²é˜œēœŒę•™č‚²å§”å“”ä¼š'),
(56668, 47208, 'es', 'name', 'Academia PolitƩcnica AeronƔutica'),
(56669, 47209, 'en', 'name', 'Kyoto Prefectural Rakuhoku High School'),
(56670, 47209, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹ę“›åŒ—é«˜ē­‰å­¦ę ”'),
(56671, 47210, 'en', 'name', 'National Trauma Institute'),
(56672, 47211, 'no_lang_code', 'name', 'Optina Diagnostics (Canada)'),
(56673, 47212, 'de', 'name', 'Christophorus Kliniken'),
(56674, 47213, 'en', 'name', 'Kentucky Commission on Military Affairs'),
(56675, 47214, 'en', 'name', 'University Hospitals Seidman Cancer Center'),
(56676, 47215, 'no_lang_code', 'name', 'Catalina Scientific (United States)'),
(56677, 47216, 'en', 'name', 'Royal Dutch Football Association'),
(56678, 47216, 'nl', 'name', 'Koninklijke Nederlandse Voetbalbond'),
(56679, 47217, 'en', 'name', 'Kyushu Otani Junior College'),
(56680, 47217, 'ja', 'name', 'ä¹å·žå¤§č°·ēŸ­ęœŸå¤§å­¦'),
(56681, 47218, 'no_lang_code', 'name', 'Citrix (Switzerland)'),
(56682, 47219, 'en', 'name', 'Kawasaki City College of Nursing'),
(56683, 47219, 'ja', 'name', 'å·å“Žåø‚ē«‹ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(56684, 47220, 'en', 'name', 'Fort Vancouver Regional Library District'),
(56685, 47221, 'pt', 'name', 'Associação Brasileira de Química'),
(56686, 47222, 'en', 'name', 'Institute for Systems Analysis'),
(56687, 47222, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ФГУ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ системного анализа Š ŠŠ'),
(56688, 47223, 'no_lang_code', 'name', 'Wistron (Taiwan)'),
(56689, 47223, 'zh', 'name', 'ē·Æå‰µč³‡é€šč‚”ä»½ęœ‰é™å…¬åø'),
(56690, 47224, 'no_lang_code', 'name', 'Nvidia (United Kingdom)'),
(56691, 47225, 'en', 'name', 'Yamanashi Prefectural Board of Education'),
(56692, 47225, 'ja', 'name', 'å±±ę¢ØēœŒę•™č‚²å§”å“”ä¼š'),
(56693, 47226, 'en', 'name', 'City University College of Science and Technology'),
(56694, 47227, 'no_lang_code', 'name', 'KUKA (United States)'),
(56695, 47228, 'en', 'name', 'Zhoushan Institute of Calibration for Quality and Technology Supervision'),
(56696, 47229, 'en', 'name', 'Catholic Bishops Conference of India'),
(56697, 47230, 'no_lang_code', 'name', 'NovaRx (United States)'),
(56698, 47231, 'no_lang_code', 'name', 'Becton Dickinson (Germany)'),
(56699, 47232, 'no_lang_code', 'name', 'GlaxoSmithKline (Ireland)'),
(56700, 47233, 'en', 'name', 'Japan Research Institute'),
(56701, 47233, 'ja', 'name', 'ę—„ęœ¬ē·ē ”'),
(56702, 47234, 'en', 'name', 'Philips College'),
(56703, 47235, 'no_lang_code', 'name', 'ARC Resources (Canada)'),
(56704, 47236, 'en', 'name', 'TexAmericas Center'),
(56705, 47237, 'en', 'name', 'National Museum of Emerging Science and Innovation'),
(56706, 47237, 'ja', 'name', 'ę—„ęœ¬ē§‘å­¦ęœŖę„é¤Ø'),
(56707, 47238, 'en', 'name', 'Ocean Lakes High School'),
(56708, 47239, 'no_lang_code', 'name', 'Hartley McMaster (United Kingdom)'),
(56709, 47240, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę±čŠ'),
(56710, 47240, 'no_lang_code', 'name', 'Toshiba (South Korea)'),
(56711, 47241, 'en', 'name', 'Open University of China'),
(56712, 47241, 'zh', 'name', '国家开放大学'),
(56713, 47242, 'en', 'name', 'Florida Craniofacial Institute'),
(56714, 47243, 'en', 'name', 'Kyoto Prefectural Education Center'),
(56715, 47243, 'ja', 'name', 'äŗ¬éƒ½åŗœē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(56716, 47244, 'no_lang_code', 'name', 'Redlen Technologies (Canada)'),
(56717, 47245, 'en', 'name', 'Taft University System'),
(56718, 47246, 'en', 'name', 'Shiga Prefectural Education Center'),
(56719, 47246, 'ja', 'name', 'ę»‹č³€ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(56720, 47247, 'en', 'name', 'Bayburt State Hospital'),
(56721, 47247, 'tr', 'name', 'Bayburt Devlet Hastanesi'),
(56722, 47248, 'en', 'name', 'Gƶteborg Medical Society'),
(56723, 47248, 'sv', 'name', 'Gƶteborgs LƤkaresƤllskap'),
(56724, 47249, 'no_lang_code', 'name', 'Partow Technologies (United States)'),
(56725, 47250, 'no_lang_code', 'name', 'Universal Master Products (United Kingdom)'),
(56726, 47251, 'en', 'name', 'Kyoto City Youth Science Center'),
(56727, 47251, 'ja', 'name', 'äŗ¬éƒ½åø‚é’å°‘å¹“ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(56728, 47252, 'en', 'name', 'Institute of Linguistics'),
(56729, 47252, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢čÆ­čØ€ē ”ē©¶ę‰€'),
(56730, 47253, 'en', 'name', 'Hokkaido Education Research Institute'),
(56731, 47253, 'ja', 'name', 'åŒ—ęµ·é“ē«‹ę•™č‚²ē ”ē©¶ę‰€'),
(56732, 47254, 'en', 'name', 'Aichi Prefectural Ichinomiya Nishi High School'),
(56733, 47254, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹äø€å®®č„æé«˜ē­‰å­¦ę ”'),
(56734, 47255, 'en', 'name', 'Institute of Socio-Political Research'),
(56735, 47255, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-политических исслеГований'),
(56736, 47256, 'ja', 'name', 'ę‘ē”°ę©Ÿę¢°ę Ŗå¼ä¼šē¤¾'),
(56737, 47256, 'no_lang_code', 'name', 'Murata Machinery (Japan)'),
(56738, 47257, 'en', 'name', 'Brazilian Aluminum Association'),
(56739, 47257, 'pt', 'name', 'Associação Brasileira do Alumínio'),
(56740, 47258, 'en', 'name', 'Association for Geographic Information'),
(56741, 47259, 'en', 'name', 'Zhejiang Environmental Monitoring Center'),
(56742, 47259, 'zh', 'name', 'ęµ™ę±ŸēœēŽÆå¢ƒē›‘ęµ‹äø­åæƒ'),
(56743, 47260, 'no_lang_code', 'name', 'Aspire Solutions (United States)'),
(56744, 47261, 'es', 'name', 'Instituto de CibernƩtica MatemƔtica y Fƭsica'),
(56745, 47262, 'en', 'name', 'Oceanwide Science Institute'),
(56746, 47263, 'pt', 'name', 'Fundação de Ciência e Tecnologia'),
(56747, 47264, 'no_lang_code', 'name', 'Danaher (China)'),
(56748, 47265, 'en', 'name', 'Raffles University Iskandar'),
(56749, 47266, 'no_lang_code', 'name', 'Huntsworth Health (United States)'),
(56750, 47267, 'en', 'name', 'Union School of Theology'),
(56751, 47268, 'no_lang_code', 'name', 'HTC (Taiwan)'),
(56752, 47268, 'zh', 'name', 'å®é”åœ‹éš›é›»å­č‚”ä»½ęœ‰é™å…¬åø'),
(56753, 47269, 'es', 'name', 'Instituto de Ecologia y SistemƔtica'),
(56754, 47270, 'ja', 'name', 'ć‚¢ćƒ«ćƒ—ć‚¹é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(56755, 47270, 'no_lang_code', 'name', 'Alps Electric (Japan)'),
(56756, 47271, 'en', 'name', 'New Zealand Plant Protection Society'),
(56757, 47272, 'en', 'name', 'Stone Soup Productions'),
(56758, 47273, 'am', 'name', 'አሶሳ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(56759, 47273, 'en', 'name', 'Asossa University'),
(56760, 47274, 'en', 'name', 'RP Fighting Blindness'),
(56761, 47275, 'no_lang_code', 'name', 'International Flavors & Fragrances (United States)'),
(56762, 47276, 'no_lang_code', 'name', 'Oberon (Netherlands)'),
(56763, 47277, 'fr', 'name', 'Institute Malgache De Recherches AppliquƩes'),
(56764, 47278, 'no_lang_code', 'name', 'Nikita Botanical Gardens'),
(56765, 47278, 'ru', 'name', 'ŠŠøŠŗŠøŃ‚ŃŠŗŠøŠ¹ ботанический саГ'),
(56766, 47279, 'de', 'name', 'Akademie für Gesundheitsberufe'),
(56767, 47280, 'no_lang_code', 'name', 'DuPont (Finland)'),
(56768, 47281, 'en', 'name', 'Acapulco Institute of Technology'),
(56769, 47281, 'es', 'name', 'Instituto Tecnológico de Acapulco'),
(56770, 47282, 'en', 'name', 'Engineering Advancement Association of Japan'),
(56771, 47282, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°å”ä¼š'),
(56772, 47283, 'en', 'name', 'NIHR Academy'),
(56773, 47284, 'en', 'name', 'Southwest Educational Development Center'),
(56774, 47285, 'no_lang_code', 'name', 'Soleno (Canada)'),
(56775, 47286, 'en', 'name', 'ACCESS Health International'),
(56776, 47287, 'it', 'name', 'I.T.I. Lattanzio, Istituto di Istruzione Superiore I.T.C. Di Vittorio'),
(56777, 47288, 'no_lang_code', 'name', 'Primax Electronics (Taiwan)'),
(56778, 47289, 'no_lang_code', 'name', 'Arotech (Israel)'),
(56779, 47290, 'no_lang_code', 'name', 'Keystone Tower Systems (United States)'),
(56780, 47291, 'en', 'name', 'Clinical Solutions'),
(56781, 47292, 'no_lang_code', 'name', 'ZymoChem (United States)'),
(56782, 47293, 'en', 'name', 'Saitama Prefectural Tokorozawa Nishi High School'),
(56783, 47293, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ę‰€ę²¢č„æé«˜ē­‰å­¦ę ”'),
(56784, 47294, 'no_lang_code', 'name', 'Nomad Bioscience (Germany)'),
(56785, 47295, 'no_lang_code', 'name', 'Becton Dickinson (Ireland)'),
(56786, 47296, 'en', 'name', 'Australian Physiotherapy Association'),
(56787, 47297, 'en', 'name', 'Association for Academic Surgery'),
(56788, 47298, 'en', 'name', 'Japan Small Animal Medical Center'),
(56789, 47298, 'ja', 'name', 'ę—„ęœ¬å°å‹•ē‰©ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(56790, 47299, 'no_lang_code', 'name', 'Covance (Germany)'),
(56791, 47300, 'en', 'name', 'Faringdon Day Hospital'),
(56792, 47301, 'no_lang_code', 'name', 'Bailey Tool & Manufacturing (United States)'),
(56793, 47302, 'ja', 'name', '山形県警察'),
(56794, 47302, 'no_lang_code', 'name', 'Yamagata Prefectural Police'),
(56795, 47303, 'no_lang_code', 'name', 'Mi Corporation (United States)'),
(56796, 47304, 'de', 'name', 'Forschungsvereinigung Verbrennungskraftmaschinen'),
(56797, 47304, 'en', 'name', 'Research Association for Combustion Engines'),
(56798, 47305, 'en', 'name', 'Congressional Coalition on Adoption Institute'),
(56799, 47306, 'no_lang_code', 'name', 'Nidec (Germany)'),
(56800, 47307, 'am', 'name', 'į‹ØįŠ į‹²įˆµ įŠ į‰ į‰£ įˆ³į‹­įŠ•įˆµįŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(56801, 47307, 'en', 'name', 'Addis Ababa Science and Technology University'),
(56802, 47308, 'no_lang_code', 'name', 'Advocates for Human Potential (United States)'),
(56803, 47309, 'en', 'name', 'Ministry OF City Planning and Water Supply'),
(56804, 47309, 'si', 'name', 'නගරය ą·ƒą·ą¶½ą·ƒą·”ą¶øą·Š ą·„ą· ජල ą·ƒą¶øą·Šą¶“ą·ą¶Æą¶± ą¶…ą¶øą·ą¶­ą·Šą¶ŗą·ą¶‚ą·ą¶ŗ'),
(56805, 47309, 'ta', 'name', 'ą®Øą®•ą®°ą®®ąÆ ą®¤ą®æą®ŸąÆą®Ÿą®®ą®æą®Ÿą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®ØąÆ€ą®°ąÆ ą®µą®“ą®™ąÆą®•ą®²ąÆ ą®…ą®®ąÆˆą®šąÆą®šąÆ'),
(56806, 47310, 'en', 'name', 'New York University Florence'),
(56807, 47311, 'no_lang_code', 'name', 'Semikron (Germany)'),
(56808, 47312, 'no_lang_code', 'name', 'Juniper Networks (United States)'),
(56809, 47313, 'en', 'name', 'Mobile Infirmary'),
(56810, 47314, 'en', 'name', 'Okayama Prefectural Okayama Asahi High School'),
(56811, 47314, 'ja', 'name', 'å²”å±±ēœŒē«‹å²”å±±ęœę—„é«˜ē­‰å­¦ę ”'),
(56812, 47315, 'no_lang_code', 'name', 'AcuityBio (United States)'),
(56813, 47316, 'ja', 'name', '新光電気巄愭'),
(56814, 47316, 'no_lang_code', 'name', 'Shinko Electric Industries (Japan)'),
(56815, 47317, 'en', 'name', 'Vitamin D Society'),
(56816, 47318, 'en', 'name', 'National Center for Science and Technology Evaluation'),
(56817, 47318, 'zh', 'name', 'å›½å®¶äø­åæƒēš„ē§‘å­¦ęŠ€ęœÆčÆ„ä»·'),
(56818, 47319, 'no_lang_code', 'name', 'DMG Mori (Germany)'),
(56819, 47320, 'no_lang_code', 'name', 'Advisory Board Company (United States)'),
(56820, 47321, 'en', 'name', 'Kyoto Seizan College'),
(56821, 47321, 'ja', 'name', '京都脿山短期大学'),
(56822, 47322, 'en', 'name', 'Japanese Association of University Women'),
(56823, 47322, 'ja', 'name', 'ćƒ‘ćƒˆćƒŖć‚·ć‚¢äæ”ęæƒē”ŗćƒ†ćƒ©ć‚¹'),
(56824, 47323, 'no_lang_code', 'name', 'Transient Plasma Systems (United States)'),
(56825, 47324, 'no_lang_code', 'name', 'Vossloh (Germany)'),
(56826, 47325, 'en', 'name', 'Metropolitan Library System'),
(56827, 47326, 'no_lang_code', 'name', 'Lalema (Canada)'),
(56828, 47327, 'en', 'name', 'National Institute of Technology Okinawa College'),
(56829, 47327, 'ja', 'name', 'ę²–ēø„å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(56830, 47328, 'en', 'name', 'Ghana Wildlife Society'),
(56831, 47329, 'no_lang_code', 'name', 'Sony (China)'),
(56832, 47329, 'zh', 'name', '瓢尼'),
(56833, 47330, 'en', 'name', 'Institute for International Policy Studies'),
(56834, 47330, 'ja', 'name', 'č²”å›£äø–ē•Œå¹³å’Œē ”ē©¶ę‰€'),
(56835, 47331, 'no_lang_code', 'name', 'MacGregor (Germany)'),
(56836, 47332, 'en', 'name', 'Food and Agricultural Research and Extension Institute'),
(56837, 47333, 'en', 'name', 'Hokkaido Pharmaceutical University'),
(56838, 47333, 'ja', 'name', 'åŒ—ęµ·é“č–¬ē§‘å¤§å­¦'),
(56839, 47334, 'tr', 'name', 'Gazi Hastanesi'),
(56840, 47335, 'en', 'name', 'Boulder Institute of Microfinance'),
(56841, 47336, 'en', 'name', 'Church World Service'),
(56842, 47337, 'en', 'name', 'North Carolina Center of Innovation Network'),
(56843, 47338, 'en', 'name', 'Ishikawa Prefectural Police'),
(56844, 47338, 'ja', 'name', 'ēŸ³å·ēœŒč­¦åÆŸęœ¬éƒØ'),
(56845, 47339, 'en', 'name', 'National Institute of Health'),
(56846, 47339, 'hy', 'name', 'ՀՀ Ō±Õ† Ō±Õ¼ÕøÕ²Õ»Õ”ÕŗÕ”Õ°ÕøÖ‚Õ©ÕµÕ”Õ¶ Ō±Õ¦Õ£Õ”ÕµÕ«Õ¶ Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(56847, 47340, 'en', 'name', 'Colorado Northwestern Community College'),
(56848, 47341, 'aa', 'name', 'é’ę£®ēœŒē«‹éƒ·åœŸé¤Ø'),
(56849, 47341, 'en', 'name', 'Aomori Prefectural Local Museum'),
(56850, 47342, 'en', 'name', 'Jewish University in Moscow'),
(56851, 47342, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń школа имени Š”. Š”ŃƒŠ±Š½Š¾Š²Š°'),
(56852, 47343, 'en', 'name', 'National College of Technology, Wakayama College'),
(56853, 47343, 'ja', 'name', 'å’Œę­Œå±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(56854, 47344, 'en', 'name', 'Hillsborough Education Foundation'),
(56855, 47345, 'en', 'name', 'Japan Kinoko Research Center Foundation'),
(56856, 47345, 'ja', 'name', 'ę—„ęœ¬ćć®ć“ć‚»ćƒ³ć‚æ'),
(56857, 47346, 'en', 'name', 'Oita Prefectural School for the Blind'),
(56858, 47346, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹ē›²å­¦ę ”'),
(56859, 47347, 'en', 'name', 'Benesse Educational Research and Development Institute'),
(56860, 47347, 'ja', 'name', 'ćƒ™ćƒćƒƒć‚»ę•™č‚²ē·åˆē ”ē©¶ę‰€'),
(56861, 47348, 'en', 'name', 'Okinawa Prefectural Education Center'),
(56862, 47348, 'ja', 'name', 'ę²–ēø„ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(56863, 47349, 'no_lang_code', 'name', 'ASV (United States)'),
(56864, 47350, 'no_lang_code', 'name', 'Southall Environmental Associates (United States)'),
(56865, 47351, 'fr', 'name', 'SociĆ©tĆ© FranƧaise d''Exportation des Ressources Ɖducatives'),
(56866, 47352, 'pt', 'name', 'Espregueira Mendes Clinic'),
(56867, 47353, 'no_lang_code', 'name', 'Coloplast (Germany)'),
(56868, 47354, 'en', 'name', 'African Women Education and Development Forum'),
(56869, 47355, 'en', 'name', 'National Aquatic Resources Research and Development Agency'),
(56870, 47356, 'en', 'name', 'Yukon Health and Social Services'),
(56871, 47357, 'en', 'name', 'Association of Military Surgeons of the United States'),
(56872, 47358, 'en', 'name', 'Fukushima Prefectural Police'),
(56873, 47358, 'ja', 'name', 'ē¦å³¶ēœŒč­¦åÆŸęœ¬éƒØ'),
(56874, 47359, 'en', 'name', 'Gov2u'),
(56875, 47360, 'en', 'name', 'Guangzhou Municipal Engineering Design and Research Institute'),
(56876, 47360, 'zh', 'name', 'å¹æå·žåø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(56877, 47361, 'en', 'name', 'Massachusetts Business Alliance for Education'),
(56878, 47362, 'ja', 'name', 'ę±äŗ¬éƒ½å…¬ę–‡ę›øé¤Ø'),
(56879, 47362, 'no_lang_code', 'name', 'Tokyo Metropolitan Archives'),
(56880, 47363, 'no_lang_code', 'name', 'Doug Bragg Enterprises (Canada)'),
(56881, 47364, 'en', 'name', 'Australasian Sleep Association'),
(56882, 47365, 'en', 'name', 'Educational Service District 123'),
(56883, 47366, 'en', 'name', 'Building Research Institute'),
(56884, 47366, 'ja', 'name', 'ē­‘ę³¢ē ”ē©¶å­¦åœ’éƒ½åø‚äŗ¤ęµå”č­°ä¼š'),
(56885, 47367, 'no_lang_code', 'name', 'Batavia Biosciences (Netherlands)'),
(56886, 47368, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الناصر'),
(56887, 47368, 'en', 'name', 'Al-Nasser University'),
(56888, 47369, 'de', 'name', 'Kunstmuseum Bern'),
(56889, 47369, 'en', 'name', 'Museum of Fine Arts Bern'),
(56890, 47370, 'pt', 'name', 'Instituto By Brasil'),
(56891, 47371, 'en', 'name', 'National College'),
(56892, 47372, 'en', 'name', 'Zhejiang Science and Technology Information Institute'),
(56893, 47372, 'zh', 'name', 'ęµ™ę±Ÿēœē§‘ęŠ€äæ”ęÆē ”ē©¶é™¢'),
(56894, 47373, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Mines de Nancy'),
(56895, 47374, 'no_lang_code', 'name', 'Taiwan Semiconductor Manufacturing Company (China)'),
(56896, 47374, 'zh', 'name', 'å°ē£ē©é«”é›»č·Æč£½é€ å…¬åø'),
(56897, 47375, 'no_lang_code', 'name', 'Autoliv (Japan)'),
(56898, 47376, 'en', 'name', 'Concordia Hospital'),
(56899, 47377, 'he', 'name', 'ידע חברה ×œ×ž×—×§×Ø ופתוח'),
(56900, 47377, 'no_lang_code', 'name', 'Yeda Research and Development (Israel)'),
(56901, 47378, 'de', 'name', 'Institut für Kulturforschung Graubünden'),
(56902, 47379, 'en', 'name', 'Cache Public Schools'),
(56903, 47380, 'no_lang_code', 'name', 'Cubidor (Switzerland)'),
(56904, 47381, 'no_lang_code', 'name', 'Onconome (United States)'),
(56905, 47382, 'no_lang_code', 'name', 'Novatek Microelectronics (Taiwan)'),
(56906, 47382, 'zh', 'name', 'čÆč© ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(56907, 47383, 'en', 'name', 'Salford City Council'),
(56908, 47384, 'en', 'name', 'First Hospital of Shijiazhuang'),
(56909, 47384, 'zh', 'name', 'ēŸ³å®¶åŗ„åø‚ē¬¬äø€åŒ»é™¢'),
(56910, 47385, 'no_lang_code', 'name', 'Canon (United Kingdom)'),
(56911, 47386, 'en', 'name', 'Emory Rehabilitation Hospital'),
(56912, 47387, 'en', 'name', 'Washington State University Tri-Cities'),
(56913, 47388, 'de', 'name', 'Fraunhofer-Institut für Naturwissenschaftlich-Technische Trendanalysen'),
(56914, 47388, 'en', 'name', 'Fraunhofer Institute for Technological Trend Analysis'),
(56915, 47389, 'en', 'name', 'Research Institute for System Studies'),
(56916, 47389, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ системных исслеГований Российской акаГемии наук'),
(56917, 47390, 'en', 'name', 'Second People’s Hospital of Huai’an'),
(56918, 47390, 'zh', 'name', 'ę·®å®‰åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(56919, 47391, 'no_lang_code', 'name', 'Galapagos (Croatia)'),
(56920, 47392, 'it', 'name', 'Associazione Italiana Contro le Leucemie Linfomi e Mieloma'),
(56921, 47393, 'en', 'name', 'Dr Youth Clinic'),
(56922, 47393, 'ko', 'name', '박사 ģ²­ģ†Œė…„ 큓리닉'),
(56923, 47394, 'no_lang_code', 'name', 'IHI Corporation (Germany)'),
(56924, 47395, 'en', 'name', 'Dementia UK'),
(56925, 47396, 'en', 'name', 'Technological University Mawlamyaing'),
(56926, 47396, 'my', 'name', 'į€”į€Šį€ŗį€øį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ (į€™į€±į€¬į€ŗį€œį€™į€¼į€­į€Æį€„į€ŗ)'),
(56927, 47397, 'en', 'name', 'Hegang People''s Hospital'),
(56928, 47397, 'zh', 'name', 'é¹¤å²—åø‚äŗŗę°‘åŒ»é™¢'),
(56929, 47398, 'he', 'name', 'ויקימדיה ×™×©×Ø××œ'),
(56930, 47398, 'no_lang_code', 'name', 'Wikimedia Israel'),
(56931, 47399, 'no_lang_code', 'name', 'Procter & Gamble (Germany)'),
(56932, 47400, 'en', 'name', 'Japan Institute of Lifelong Learning'),
(56933, 47400, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗ ę—„ęœ¬ē”Ÿę¶Æå­¦ēæ’ē·åˆē ”ē©¶ę‰€'),
(56934, 47401, 'en', 'name', 'Katanga Methodist University'),
(56935, 47401, 'fr', 'name', 'UniversitƩ MƩthodiste au Katanga'),
(56936, 47402, 'pt', 'name', 'Centro de Estudos e Sistemas AvanƧados do Recife'),
(56937, 47403, 'es', 'name', 'Universidad Bancaria de MƩxico'),
(56938, 47404, 'en', 'name', 'National Hospital Organization Takasaki Medical Center'),
(56939, 47404, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹é«˜å“Žē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(56940, 47405, 'no_lang_code', 'name', 'Faradion (United Kingdom)'),
(56941, 47406, 'no_lang_code', 'name', 'Wikimedia India'),
(56942, 47407, 'en', 'name', 'University of Tokyo Health Sciences'),
(56943, 47407, 'ja', 'name', 'ę±äŗ¬åŒ»ē™‚å­¦é™¢å¤§å­¦'),
(56944, 47408, 'no_lang_code', 'name', 'Ceres Nanosciences'),
(56945, 47409, 'no_lang_code', 'name', 'Emerson (Germany)'),
(56946, 47410, 'es', 'name', 'Universidad IndĆ­gena Boliviana Aymara Tupak Katari'),
(56947, 47411, 'en', 'name', 'Okayama Psychiatric Medical Center'),
(56948, 47411, 'ja', 'name', 'å²”å±±ēœŒē²¾ē„žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(56949, 47412, 'de', 'name', 'Aachener Institut für Bauschadensforschung und Angewandte Bauphysik'),
(56950, 47413, 'ja', 'name', 'äø‰ē¬ åø‚ē«‹åšē‰©é¤Ø'),
(56951, 47413, 'no_lang_code', 'name', 'Mikasa City Museum'),
(56952, 47414, 'no_lang_code', 'name', 'Broala (United States)'),
(56953, 47415, 'en', 'name', 'International Institute of Rural Reconstruction'),
(56954, 47416, 'en', 'name', 'Flowminder Foundation'),
(56955, 47416, 'sv', 'name', 'Stiftelsen Flowminder'),
(56956, 47417, 'en', 'name', 'LEV Foundation'),
(56957, 47418, 'en', 'name', 'International University of Grand Bassam'),
(56958, 47419, 'no_lang_code', 'name', 'Wilex (Germany)'),
(56959, 47420, 'es', 'name', 'Unidad de Cirugía Artroscópica'),
(56960, 47421, 'en', 'name', 'Fukuoka Prefectural Board of Education'),
(56961, 47421, 'ja', 'name', 'ę•™č‚²ć®ē¦å²”ēœŒäŗ‹å‹™ę‰€'),
(56962, 47422, 'no_lang_code', 'name', 'Auckland UniServices (New Zealand)'),
(56963, 47423, 'en', 'name', 'Center for Environmental and Geographic Information Services'),
(56964, 47424, 'en', 'name', 'Gastro Obeso Center'),
(56965, 47425, 'en', 'name', 'Lumina Foundation'),
(56966, 47426, 'sv', 'name', 'Wikimedia Sverige'),
(56967, 47427, 'en', 'name', 'Jacksonville Public Education Fund'),
(56968, 47428, 'en', 'name', 'National Muroto Youth Outdoor Learning Center'),
(56969, 47428, 'ja', 'name', 'å›½ē«‹å®¤ęˆøé’å°‘å¹“č‡Ŗē„¶ć®å®¶'),
(56970, 47429, 'no_lang_code', 'name', 'Mann+Hummel (United States)'),
(56971, 47430, 'en', 'name', 'Fukushima Iwaki Agricultural High School'),
(56972, 47430, 'ja', 'name', 'ē¦å³¶ēœŒē«‹ē£åŸŽč¾²ę„­é«˜ē­‰å­¦ę ”'),
(56973, 47431, 'en', 'name', 'Tokyo Metropolitan Hiroo High School'),
(56974, 47431, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹åŗƒå°¾é«˜ē­‰å­¦ę ”'),
(56975, 47432, 'de', 'name', 'Barmherzige Schwestern vom heiligen Kreuz'),
(56976, 47433, 'en', 'name', 'Noguchi Institute'),
(56977, 47433, 'ja', 'name', 'č²”å›£ę³•äŗŗé‡Žå£ē ”ē©¶ę‰€'),
(56978, 47434, 'en', 'name', 'National Quantum Information Centre in Gdansk'),
(56979, 47434, 'pl', 'name', 'Krajowe Centrum Informatyki Kwantowej w Gdańsku'),
(56980, 47435, 'en', 'name', 'Minatogawa College'),
(56981, 47435, 'ja', 'name', 'ę¹Šå·ēŸ­ęœŸå¤§å­¦'),
(56982, 47436, 'en', 'name', 'Kyoto Prefectural Suzaku High School'),
(56983, 47436, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹ęœ±é›€é«˜ē­‰å­¦ę ”'),
(56984, 47437, 'en', 'name', 'BIO Ventures for Global Health'),
(56985, 47438, 'en', 'name', 'China Foundation'),
(56986, 47439, 'no_lang_code', 'name', 'Dover (Germany)'),
(56987, 47440, 'en', 'name', 'International Society for Equity in Health'),
(56988, 47441, 'en', 'name', 'IGAD Sheikh Technical Veterinary School and Reference Centre'),
(56989, 47442, 'no_lang_code', 'name', 'Nordson (United States)'),
(56990, 47443, 'en', 'name', 'Brownsville Public Library'),
(56991, 47444, 'en', 'name', 'Middle Eastern Culture Center in Japan'),
(56992, 47444, 'ja', 'name', 'ę—„ęœ¬ć§ćÆäø­čæ‘ę±ę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(56993, 47445, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾åŠå°Žä½“ć‚Øćƒćƒ«ć‚®ćƒ¼ē ”ē©¶ę‰€');
INSERT INTO `ror_settings` VALUES
(56994, 47445, 'no_lang_code', 'name', 'Semiconductor Energy Laboratory (Japan)'),
(56995, 47446, 'en', 'name', 'Saitama Junshin Junior College'),
(56996, 47446, 'ja', 'name', 'åŸ¼ēŽ‰ē“”ēœŸēŸ­ęœŸå¤§å­¦'),
(56997, 47447, 'no_lang_code', 'name', 'EFD Induction (Germany)'),
(56998, 47448, 'en', 'name', 'National Institute of Technology, Sasebo College'),
(56999, 47448, 'ja', 'name', 'ęŠ€č”“ē·åˆē ”ē©¶ę‰€ć€ä½äø–äæć‚«ćƒ¬ćƒƒć‚ø'),
(57000, 47449, 'es', 'name', 'Universidad de Matamoros'),
(57001, 47450, 'en', 'name', 'American Association of School Administrators'),
(57002, 47451, 'en', 'name', 'Akita Prefectural Akita High School'),
(57003, 47451, 'ja', 'name', 'ē§‹ē”°ēœŒē«‹ē§‹ē”°é«˜ē­‰å­¦ę ”'),
(57004, 47452, 'en', 'name', 'Center for Integrated Smart Sensors'),
(57005, 47453, 'en', 'name', 'Osaka Prefectural Police Department'),
(57006, 47453, 'ja', 'name', '大阪府警察'),
(57007, 47454, 'no_lang_code', 'name', 'Aurobindo Pharma (United States)'),
(57008, 47455, 'es', 'name', 'Planta Piloto de Procesos Industriales Microbiológicos'),
(57009, 47456, 'ja', 'name', 'åÆŒå£«ć‚¼ćƒ­ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(57010, 47456, 'no_lang_code', 'name', 'Fuji Xerox (Japan)'),
(57011, 47457, 'en', 'name', 'Victorian Curriculum and Assessment Authority'),
(57012, 47458, 'de', 'name', 'Institut für Handelsforschung'),
(57013, 47459, 'no_lang_code', 'name', 'Graphic Packaging (United States)'),
(57014, 47460, 'en', 'name', 'European Regions Research and Innovation Network'),
(57015, 47461, 'no_lang_code', 'name', 'Medical Device Innovations (United Kingdom)'),
(57016, 47462, 'en', 'name', 'Islamic Azad University Shirvan Branch'),
(57017, 47462, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“ŪŒŲ±ŁˆŲ§Ł†'),
(57018, 47463, 'no_lang_code', 'name', 'M-Changa'),
(57019, 47464, 'en', 'name', 'Association of Clinical Pathologists'),
(57020, 47465, 'en', 'name', 'Hokkaido Sapporo Shinkawa High School'),
(57021, 47465, 'ja', 'name', 'åŒ—ęµ·é“ęœ­å¹Œę–°å·é«˜ē­‰å­¦ę ”'),
(57022, 47466, 'en', 'name', 'Hiroshima Minami High School'),
(57023, 47466, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹åŗƒå³¶ēš†å®Ÿé«˜ē­‰å­¦ę ”'),
(57024, 47467, 'ja', 'name', 'ć‚¢ćƒ¼ć‚Æćƒ¬ć‚¤ę Ŗå¼ä¼šē¤¾'),
(57025, 47467, 'no_lang_code', 'name', 'Arkray (Japan)'),
(57026, 47468, 'pt', 'name', 'Fundação de Apoio à Universidade de São Paulo'),
(57027, 47469, 'en', 'name', 'Gifu Prefectural Gifu Technical High School'),
(57028, 47469, 'ja', 'name', 'å²é˜œēœŒē«‹å²é˜œå·„ę„­é«˜ē­‰å­¦ę ”'),
(57029, 47470, 'no_lang_code', 'name', 'Firebird Biomolecular Sciences (United States)'),
(57030, 47471, 'no_lang_code', 'name', 'Cypress Semiconductor Corporation (United States)'),
(57031, 47472, 'no_lang_code', 'name', 'CivaTech Oncology (United States)'),
(57032, 47473, 'nl', 'name', 'Maatschappij tot Redding van Drenkelingen'),
(57033, 47474, 'en', 'name', 'Zhejiang Museum of Natural History'),
(57034, 47474, 'zh', 'name', 'ęµ™ę±Ÿč‡Ŗē„¶åšē‰©é¦†'),
(57035, 47475, 'en', 'name', 'National Lymphedema Network'),
(57036, 47476, 'en', 'name', 'Microbiology Institute of Shaanxi'),
(57037, 47476, 'zh', 'name', 'é™•č„æēœå¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(57038, 47477, 'en', 'name', 'Zhejiang Marine Fisheries Research Institute'),
(57039, 47477, 'zh', 'name', 'ęµ™ę±Ÿēœęµ·ę“‹ę°“äŗ§ē ”ē©¶ę‰€'),
(57040, 47478, 'en', 'name', 'Dollezhal Research and Development Institute of Power Engineering'),
(57041, 47478, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³Š¾Ń‚ŠµŃ…Š½ŠøŠŗŠø имени Š. А. Š”Š¾Š»Š»ŠµŠ¶Š°Š»Ń'),
(57042, 47479, 'da', 'name', 'Aarhus Kommune'),
(57043, 47479, 'en', 'name', 'Aarhus Municipality'),
(57044, 47480, 'no_lang_code', 'name', 'Pfeiffer Vacuum (Germany)'),
(57045, 47481, 'en', 'name', 'Georgia Public Library Service'),
(57046, 47482, 'en', 'name', 'National Maritime Research Institute'),
(57047, 47482, 'ja', 'name', 'ęµ·äøŠęŠ€č”“å®‰å…Øē ”ē©¶ę‰€ćÆ'),
(57048, 47483, 'en', 'name', 'Institute for Electromagnetic Sensing of the Environment'),
(57049, 47483, 'it', 'name', 'Istituto per il Rilevamento Elettromagnetico dell''Ambiente'),
(57050, 47484, 'de', 'name', 'Abbott Deutschland'),
(57051, 47484, 'no_lang_code', 'name', 'Abbott (Germany)'),
(57052, 47485, 'no_lang_code', 'name', 'Smolny University'),
(57053, 47485, 'ru', 'name', 'Š”Š¼Š¾Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(57054, 47486, 'no_lang_code', 'name', 'C4 Imaging (United States)'),
(57055, 47487, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų±Ų§ŲŗŲØ Ų§ŲµŁŁ‡Ų§Ł†ŪŒ'),
(57056, 47487, 'no_lang_code', 'name', 'Ragheb Esfahani Institute'),
(57057, 47488, 'no_lang_code', 'name', 'Sartorius (United States)'),
(57058, 47489, 'en', 'name', 'Okayama Prefectural Museum'),
(57059, 47489, 'ja', 'name', 'å²”å±±ēœŒē«‹åšē‰©é¤Ø'),
(57060, 47490, 'no_lang_code', 'name', 'DNA Medicine Institute (United States)'),
(57061, 47491, 'en', 'name', 'Trilogi University'),
(57062, 47491, 'id', 'name', 'Universitas Trilogi'),
(57063, 47492, 'ja', 'name', 'ę­¦č”µäø˜ēŸ­ęœŸå¤§å­¦'),
(57064, 47492, 'no_lang_code', 'name', 'Musashigaoka College'),
(57065, 47493, 'pt', 'name', 'Sociedade Brasileira de Economia Administração e Sociologia Rural'),
(57066, 47494, 'en', 'name', 'Islamic Azad University South Tehran Branch'),
(57067, 47494, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران Ų“Ł…Ų§Ł„'),
(57068, 47495, 'en', 'name', 'Chief Officers of State Library Agencies'),
(57069, 47496, 'no_lang_code', 'name', 'Handix Scientific (United States)'),
(57070, 47497, 'de', 'name', 'Amedes MVZ Hamburg'),
(57071, 47498, 'no_lang_code', 'name', 'Henriksson Salix (Sweden)'),
(57072, 47499, 'en', 'name', 'Nagoya Industrial Science Research Institute'),
(57073, 47499, 'ja', 'name', 'åå¤å±‹ē”£ę„­ē§‘å­¦ē ”ē©¶ę‰€'),
(57074, 47500, 'en', 'name', 'National Institute of Technology, Kagoshima College'),
(57075, 47500, 'ja', 'name', 'é¹æå…å³¶å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(57076, 47501, 'en', 'name', 'Ashurst Hospital'),
(57077, 47502, 'en', 'name', 'Institute of Applied Geophysics of the Academy of Sciences'),
(57078, 47502, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ УчрежГение ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной геофизики АкаГемии наук'),
(57079, 47503, 'en', 'name', 'Lushan Botanical Garden'),
(57080, 47503, 'zh', 'name', 'ę±Ÿč„æēœäø­å›½ē§‘å­¦é™¢åŗå±±ę¤ē‰©å›­'),
(57081, 47504, 'en', 'name', 'Toho University Medical Center Sakura Hospital'),
(57082, 47504, 'ja', 'name', 'ę±é‚¦å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ä½å€‰ē—…é™¢'),
(57083, 47505, 'en', 'name', 'Nature Uganda'),
(57084, 47506, 'en', 'name', 'Kanagawa Prefectural Miura Seaside High School'),
(57085, 47506, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹äø‰ęµ¦č‡Øęµ·é«˜ē­‰å­¦ę ”'),
(57086, 47507, 'de', 'name', 'Agaplesion Bethesda Krankenhaus'),
(57087, 47508, 'en', 'name', 'British Association for Slavonic and East European Studies'),
(57088, 47509, 'en', 'name', 'Arkansas State Library'),
(57089, 47510, 'en', 'name', 'Pikes Peak Area Council of Governments'),
(57090, 47511, 'en', 'name', 'Nigerian Institute For Oil Palm Reasearch'),
(57091, 47512, 'en', 'name', 'Association for Progressive Communications'),
(57092, 47513, 'en', 'name', 'Magic Johnson Foundation'),
(57093, 47514, 'no_lang_code', 'name', 'TGS (United Kingdom)'),
(57094, 47515, 'no_lang_code', 'name', 'Chrono Therapeutics (United States)'),
(57095, 47516, 'en', 'name', 'St. Cecilia Women''s Junior College'),
(57096, 47516, 'ja', 'name', 'č–ć‚»ć‚·ćƒŖć‚¢ēŸ­ęœŸå¤§å­¦'),
(57097, 47517, 'ja', 'name', 'é–¢č„æćƒšć‚¤ćƒ³ćƒˆę Ŗå¼ä¼šē¤¾'),
(57098, 47517, 'no_lang_code', 'name', 'Kansai Paint (Japan)'),
(57099, 47518, 'en', 'name', 'National Application Center for Pharmaceutical Research'),
(57100, 47518, 'fr', 'name', 'Centre National d''Applications des Recherches Pharmaceutiques'),
(57101, 47519, 'de', 'name', 'Klinikum St. Georg'),
(57102, 47520, 'en', 'name', 'New Paradigm for Education'),
(57103, 47521, 'no_lang_code', 'name', 'Medizinisches Laserzentrum Lübeck (Germany)'),
(57104, 47522, 'en', 'name', 'Semmelweis Museum'),
(57105, 47522, 'hu', 'name', 'Semmelweis Orvostörténeti Múzeum'),
(57106, 47523, 'no_lang_code', 'name', 'Pleiades Robotics (Canada)'),
(57107, 47524, 'en', 'name', 'British Association for Japanese Studies'),
(57108, 47525, 'en', 'name', 'Western New York Independent Living'),
(57109, 47526, 'en', 'name', 'Women Of Color Salon'),
(57110, 47527, 'en', 'name', 'Council of Michigan Foundations'),
(57111, 47528, 'no_lang_code', 'name', 'Advanced Micro Devices (Canada)'),
(57112, 47529, 'es', 'name', 'Hospital General Universitari de Castelló'),
(57113, 47530, 'en', 'name', 'Kanagawa Prefecture Natural Environment Conservation Center'),
(57114, 47530, 'ja', 'name', 'ē„žå„ˆå·ēœŒč‡Ŗē„¶ē’°å¢ƒäæå…Øć‚»ćƒ³ć‚æćƒ¼'),
(57115, 47531, 'en', 'name', 'Osaka Yukioka Medical University'),
(57116, 47531, 'ja', 'name', 'å¤§é˜Ŗč”Œå²”åŒ»ē™‚å¤§å­¦'),
(57117, 47532, 'no_lang_code', 'name', 'Ottobock (United States)'),
(57118, 47533, 'fr', 'name', 'Association Belge Contre les Maladies Neuro-Musculaires'),
(57119, 47534, 'pt', 'name', 'Sociedade Brasileira de Anestesiologia'),
(57120, 47535, 'no_lang_code', 'name', 'Advanced Immune Therapeutics (United States)'),
(57121, 47536, 'en', 'name', 'Jobs Australia'),
(57122, 47537, 'en', 'name', 'Tampa–Hillsborough County Public Library System'),
(57123, 47538, 'en', 'name', 'Islamic Azad University Kazeron'),
(57124, 47538, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŲŒ Ś©Ų§Ų²Ų±ŁˆŁ†'),
(57125, 47539, 'en', 'name', 'Great Plains Industrial Park'),
(57126, 47540, 'pt', 'name', 'Prefeitura Municipal de Campos dos Goytacazes'),
(57127, 47541, 'en', 'name', 'Australian Rheumatology Association'),
(57128, 47542, 'it', 'name', 'Consorzio per il Centro Interuniversitario di Biologia Marina ed Ecologia Applicata G. Bacci'),
(57129, 47543, 'no_lang_code', 'name', 'Mold Dynamics (United States)'),
(57130, 47544, 'pt', 'name', 'Instituto de Controle do EspaƧo AƩreo'),
(57131, 47545, 'en', 'name', 'Otaru City General Museum'),
(57132, 47545, 'ja', 'name', 'å°ęØ½åø‚ē·åˆåšē‰©é¤Ø'),
(57133, 47546, 'pt', 'name', 'Sociedade Brasileira de GeofĆ­sica'),
(57134, 47547, 'no_lang_code', 'name', 'Media Deals (France)'),
(57135, 47548, 'es', 'name', 'Universidad TƩcnica Federico Santa Marƭa'),
(57136, 47549, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹čŒØęœØé«˜ē­‰å­¦ę ”'),
(57137, 47549, 'no_lang_code', 'name', 'Osaka Ibaraki High School'),
(57138, 47550, 'no_lang_code', 'name', 'Tenneco (Germany)'),
(57139, 47551, 'en', 'name', 'East Lake Foundation'),
(57140, 47552, 'en', 'name', 'African University of Technology and Management'),
(57141, 47552, 'fr', 'name', 'UniversitƩ Africaine de Technologie et de Management'),
(57142, 47553, 'no_lang_code', 'name', 'E3Tec (United States)'),
(57143, 47554, 'en', 'name', 'Educational Policy Improvement Center'),
(57144, 47555, 'no_lang_code', 'name', 'Insplorion (Sweden)'),
(57145, 47556, 'en', 'name', 'International Development Law Organization'),
(57146, 47557, 'no_lang_code', 'name', 'Tektronix (Germany)'),
(57147, 47558, 'es', 'name', 'Universidad Particular de Iquitos'),
(57148, 47559, 'it', 'name', 'Associazione Italiana Lotta al Neuroblastoma'),
(57149, 47560, 'en', 'name', 'Access to Seeds Index'),
(57150, 47561, 'en', 'name', 'Saitama Prefectural Miyashiro High School'),
(57151, 47561, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒå®®ä»£é«˜ē­‰å­¦ę ”'),
(57152, 47562, 'en', 'name', 'Busan Women''s College'),
(57153, 47562, 'ko', 'name', 'ė¶€ģ‚°ģ—¬ģžėŒ€ķ•™źµ'),
(57154, 47563, 'en', 'name', 'University Medical Center New Orleans'),
(57155, 47564, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē«¹äø­å·„å‹™åŗ—'),
(57156, 47564, 'no_lang_code', 'name', 'Takenaka (Japan)'),
(57157, 47565, 'en', 'name', 'Kyoto Prefectural Police'),
(57158, 47565, 'ja', 'name', '京都府警察'),
(57159, 47566, 'en', 'name', 'British Fashion Council'),
(57160, 47567, 'ja', 'name', 'ćƒœćƒƒć‚·ćƒ„ļ¼ˆę Ŗļ¼‰'),
(57161, 47567, 'no_lang_code', 'name', 'Robert Bosch (Japan)'),
(57162, 47568, 'no_lang_code', 'name', 'Scio Diamond Technology Corporation (United States)'),
(57163, 47569, 'en', 'name', 'Puer University'),
(57164, 47569, 'zh', 'name', '普擱学院'),
(57165, 47570, 'en', 'name', 'Sam Moyo African Institute for Agrarian Studies'),
(57166, 47571, 'en', 'name', 'Australian Acoustical Society'),
(57167, 47572, 'no_lang_code', 'name', 'SPX Corporation (United States)'),
(57168, 47573, 'en', 'name', 'Peac Institute of Multiscale Sciences'),
(57169, 47573, 'zh', 'name', 'é”¶å³°å¤šå°ŗåŗ¦ē§‘å­¦ē ”ē©¶ę‰€'),
(57170, 47574, 'no_lang_code', 'name', 'Rieter (Switzerland)'),
(57171, 47575, 'en', 'name', 'Exponent Philanthropy'),
(57172, 47576, 'en', 'name', 'Tuberous Sclerosis Association'),
(57173, 47577, 'lt', 'name', 'Lietuvos nacionalinė Martyno Mažvydo biblioteka, Martynas Mažvydas National Library'),
(57174, 47578, 'en', 'name', 'Egyptian Society of Radiology and Nuclear Medicine'),
(57175, 47579, 'en', 'name', 'Arlington Public Library'),
(57176, 47580, 'no_lang_code', 'name', 'STMicroelectronics (Singapore)'),
(57177, 47581, 'en', 'name', 'Society for Surgery of the Alimentary Tract'),
(57178, 47582, 'no_lang_code', 'name', 'Asus (China)'),
(57179, 47582, 'zh', 'name', 'čÆē¢©é›»č…¦č‚”ä»½ęœ‰é™å…¬åø'),
(57180, 47583, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° специализирана болница за активно лечение на хематологични Š·Š°Š±Š¾Š»ŃŠ²Š°Š½ŠøŃ'),
(57181, 47583, 'en', 'name', 'National Specialized Hospital for Active Treatment of Hematologic Diseases'),
(57182, 47584, 'en', 'name', 'Odawara Women''s Junior College'),
(57183, 47584, 'ja', 'name', 'å°ē”°åŽŸå„³å­ēŸ­ęœŸå¤§å­¦'),
(57184, 47585, 'en', 'name', 'Merrell University of Beauty Arts and Science'),
(57185, 47586, 'en', 'name', 'Kumamoto Prefectural Matsubase High School'),
(57186, 47586, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹ę¾ę©‹é«˜ē­‰å­¦ę ”'),
(57187, 47587, 'en', 'name', 'Prehistoric Society'),
(57188, 47588, 'en', 'name', 'Education Leaders of Color'),
(57189, 47589, 'en', 'name', 'Waikato-Tainui College for Research and Development'),
(57190, 47590, 'en', 'name', 'St. Petersburg Department of Steklov Institute of Mathematics'),
(57191, 47590, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Šµ отГеление ŠœŠ°Ń‚ематического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° им. Š’. А. Дтеклова Š ŠŠ, abbreviated ŠŸŠžŠœŠ˜'),
(57192, 47591, 'de', 'name', 'Statistik Austria'),
(57193, 47591, 'en', 'name', 'Statistics Austria'),
(57194, 47592, 'en', 'name', 'GBCHealth'),
(57195, 47593, 'en', 'name', 'Neyagaya School for Special Needs Education'),
(57196, 47593, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹åÆå±‹å·ę”Æę“å­¦ę ”'),
(57197, 47594, 'en', 'name', 'New York State Council of School Superintendents'),
(57198, 47595, 'en', 'name', 'Alberta Conservation Association'),
(57199, 47596, 'pt', 'name', 'Secretaria de Estado de Segurança Pública'),
(57200, 47597, 'no_lang_code', 'name', 'Tecan (United States)'),
(57201, 47598, 'en', 'name', 'TCM-Intigrated Cancer Center of Southern Medical University'),
(57202, 47598, 'zh', 'name', 'å—ę–¹åŒ»ē§‘å¤§å­¦äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(57203, 47599, 'no_lang_code', 'name', 'Foxconn (United Kingdom)'),
(57204, 47600, 'en', 'name', 'Hangzhou Seventh Peoples Hospital'),
(57205, 47600, 'zh', 'name', 'ę­å·žåø‚ē¬¬äøƒäŗŗę°‘åŒ»é™¢'),
(57206, 47601, 'no_lang_code', 'name', 'Universal Fibers (United States)'),
(57207, 47602, 'en', 'name', 'Yamanashi Prefecture Forestry and Forest Products Research Institute'),
(57208, 47602, 'ja', 'name', 'å±±ę¢ØēœŒę£®ęž—ē·åˆē ”ē©¶ę‰€ ę£®ęž—äæč­·ē§‘'),
(57209, 47603, 'en', 'name', 'Menasseh Ben Israel Institute'),
(57210, 47604, 'de', 'name', 'Sukkulenten-Sammlung Zürich'),
(57211, 47605, 'en', 'name', 'Institute of Scientific and Technical Research for Defense'),
(57212, 47605, 'es', 'name', 'Instituto de Investigaciones Cientƭficas y TƩcnicas para la Defensa'),
(57213, 47606, 'en', 'name', 'Doctors of the World'),
(57214, 47607, 'en', 'name', 'Islamic Azad University, Science and Research Branch'),
(57215, 47607, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų¹Ł„ŁˆŁ… و ŲŖŲ­Ł‚ŁŠŁ‚Ų§ŲŖā€Žā€Ž'),
(57216, 47608, 'en', 'name', 'Ethiopian Environment Protection Authority'),
(57217, 47609, 'no_lang_code', 'name', 'Kimberly-Clark (Canada)'),
(57218, 47610, 'de', 'name', 'Fraunhofer-Institut für Zuverlässigkeit und Mikrointegration'),
(57219, 47610, 'en', 'name', 'Fraunhofer Institute for Reliability and Microintegration'),
(57220, 47611, 'no_lang_code', 'name', 'ProjectEconomics (United states)'),
(57221, 47612, 'no_lang_code', 'name', 'Legrand (Germany)'),
(57222, 47613, 'en', 'name', 'Marquette Regional History Center'),
(57223, 47614, 'no_lang_code', 'name', 'Kirchhoff (Germany)'),
(57224, 47615, 'en', 'name', 'Office of Technology Transfer'),
(57225, 47616, 'no_lang_code', 'name', 'YKK (United Kingdom)'),
(57226, 47617, 'ja', 'name', 'å¤§é˜Ŗé’å±±å¤§å­¦'),
(57227, 47617, 'no_lang_code', 'name', 'Osaka Aoyama University'),
(57228, 47618, 'ja', 'name', '宇治病院'),
(57229, 47618, 'no_lang_code', 'name', 'Uji Hospital'),
(57230, 47619, 'en', 'name', 'National Association of the Deaf'),
(57231, 47620, 'en', 'name', 'Center for Advancing Health'),
(57232, 47621, 'de', 'name', 'Gottfried-Wilhelm-Leibniz-Gesellschaft'),
(57233, 47622, 'ko', 'name', 'ģ”Øģ œģ“ ģ”Øģ§€ėøŒģ“'),
(57234, 47622, 'no_lang_code', 'name', 'CJ CGV (South Korea)'),
(57235, 47623, 'en', 'name', 'Osaka Prefectural Hirakata High School'),
(57236, 47623, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹ęžšę–¹é«˜ē­‰å­¦ę ”'),
(57237, 47624, 'en', 'name', 'Himeji University'),
(57238, 47624, 'ja', 'name', '姫路大学'),
(57239, 47625, 'no_lang_code', 'name', 'Valeo (Ireland)'),
(57240, 47626, 'en', 'name', 'American Association of Colleges of Pharmacy'),
(57241, 47627, 'en', 'name', 'Workforce Solutions Northeast Texas'),
(57242, 47628, 'no_lang_code', 'name', 'Ethos (United Kingdom)'),
(57243, 47629, 'fr', 'name', 'Laboratoire de Recherche et d’Analyses MĆ©dicales de la Fraternelle de la Gendarmerie Royale'),
(57244, 47630, 'es', 'name', 'Universidad MonseƱor Oscar Arnulfo Romero'),
(57245, 47631, 'no_lang_code', 'name', 'Robert Bosch (United Kingdom)'),
(57246, 47632, 'en', 'name', 'National Council on Rehabilitation Education'),
(57247, 47633, 'en', 'name', 'Association of University Centers on Disabilities'),
(57248, 47634, 'en', 'name', 'Western Australia Police'),
(57249, 47635, 'de', 'name', 'Gesellschaft für Informatik'),
(57250, 47635, 'en', 'name', 'German Informatics Society'),
(57251, 47636, 'en', 'name', 'Kyushu Historical Museum'),
(57252, 47636, 'ja', 'name', 'ä¹å·žę­“å²č³‡ę–™é¤Ø'),
(57253, 47637, 'no_lang_code', 'name', 'Universal Biosensors (Australia)'),
(57254, 47638, 'no_lang_code', 'name', 'Energizer (United States)'),
(57255, 47639, 'no_lang_code', 'name', 'Cryptomathic (United Kingdom)'),
(57256, 47640, 'en', 'name', 'Nagasaki Women''s Junior College'),
(57257, 47640, 'ja', 'name', 'é•·å“Žå„³å­ēŸ­ęœŸå¤§å­¦'),
(57258, 47641, 'en', 'name', 'Chalkboard Project'),
(57259, 47642, 'en', 'name', 'Clinical Oncological Society of Australia'),
(57260, 47643, 'is', 'name', 'BarnaspĆ­tali'),
(57261, 47644, 'en', 'name', 'International Society for Influenza and other Respiratory Virus Diseases'),
(57262, 47645, 'en', 'name', 'Association for the Study of Animal Behaviour'),
(57263, 47646, 'en', 'name', 'Agricultural Research & Education Organization'),
(57264, 47647, 'en', 'name', 'New Jersey Principals and Supervisors Association'),
(57265, 47648, 'no_lang_code', 'name', 'Exascale (United Kingdom)'),
(57266, 47649, 'en', 'name', 'Japan Securities Research Institute'),
(57267, 47649, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ęœ¬čØ¼åˆøēµŒęøˆē ”ē©¶ę‰€'),
(57268, 47650, 'no_lang_code', 'name', 'Halogenated Solvents Industry Alliance (United States)'),
(57269, 47651, 'en', 'name', 'Daejeon Institute of Science and Technology'),
(57270, 47651, 'ko', 'name', '기술 ėŒ€ģ „ ėŒ€ķ•™źµ'),
(57271, 47652, 'no_lang_code', 'name', 'Alphacore (United States)'),
(57272, 47653, 'en', 'name', 'Whale Center of New England'),
(57273, 47654, 'en', 'name', 'Saitama Prefectural Urawa first Girls'' High School'),
(57274, 47654, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ęµ¦å’Œē¬¬äø€å„³å­é«˜ē­‰å­¦ę ”'),
(57275, 47655, 'no_lang_code', 'name', 'Jain Irrigation Systems (Israel)'),
(57276, 47656, 'en', 'name', 'Coronado Unified School District'),
(57277, 47657, 'no_lang_code', 'name', 'Metrarc (United Kingdom)'),
(57278, 47658, 'en', 'name', 'Economic Opportunity Institute'),
(57279, 47659, 'de', 'name', 'Max Planck Institut für Innovation und Wettbewerb'),
(57280, 47659, 'en', 'name', 'Max Planck Institute for Innovation and Competition'),
(57281, 47660, 'en', 'name', 'Yonezawa Technical High School'),
(57282, 47660, 'ja', 'name', 'ē±³ę²¢å·„ę„­é«˜ē­‰å­¦ę ”'),
(57283, 47661, 'no_lang_code', 'name', 'Eaton (Switzerland)'),
(57284, 47662, 'en', 'name', 'Education Trust'),
(57285, 47663, 'en', 'name', 'Small Industries Development Organisation'),
(57286, 47664, 'no_lang_code', 'name', 'Stine Seed (United States)'),
(57287, 47665, 'pt', 'name', 'Instituto MarƩs'),
(57288, 47666, 'en', 'name', 'Australian Marine Sciences Association'),
(57289, 47667, 'pt', 'name', 'Instituto Rio Grandense do Arroz'),
(57290, 47668, 'en', 'name', 'Nara City Board of Education'),
(57291, 47668, 'ja', 'name', 'å„ˆč‰Æåø‚ę•™č‚²å§”å“”ä¼š'),
(57292, 47669, 'en', 'name', 'Architectural Institute of Japan'),
(57293, 47669, 'ja', 'name', 'ę—„ęœ¬å»ŗēÆ‰å­¦ä¼š'),
(57294, 47670, 'en', 'name', 'EADA Business School'),
(57295, 47670, 'es', 'name', 'Escuela de Alta Dirección y Administración'),
(57296, 47671, 'pt', 'name', 'Instituto Federal do PiauĆ­'),
(57297, 47672, 'no_lang_code', 'name', 'South East Water (Australia)'),
(57298, 47673, 'en', 'name', 'Kagawa University Hospital'),
(57299, 47673, 'ja', 'name', 'é¦™å·å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(57300, 47674, 'en', 'name', 'Philatelic Museum'),
(57301, 47674, 'ja', 'name', 'åˆ‡ę‰‹ć®åšē‰©é¤Ø'),
(57302, 47675, 'en', 'name', 'Otaki Castle Museum'),
(57303, 47676, 'en', 'name', 'Water Security Agency'),
(57304, 47677, 'no_lang_code', 'name', 'IVDiagnostics (United States)'),
(57305, 47678, 'no_lang_code', 'name', 'Vivid Economics (United Kingdom)'),
(57306, 47679, 'pt', 'name', 'Fundação Estadual de Pesquisa AgropecuÔria'),
(57307, 47680, 'no_lang_code', 'name', 'Herman Miller (United Kingdom)'),
(57308, 47681, 'en', 'name', 'Salesian Polytechnic'),
(57309, 47681, 'ja', 'name', 'ć‚µćƒ¬ć‚øć‚Ŗé«˜å°‚ 惛'),
(57310, 47682, 'en', 'name', 'Volgograd Institute of Business'),
(57311, 47682, 'ru', 'name', 'ВолгограГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бизнеса'),
(57312, 47683, 'en', 'name', 'Mexico International University'),
(57313, 47684, 'en', 'name', 'Chelsea District Library'),
(57314, 47685, 'en', 'name', 'Society of Critical Care Medicine'),
(57315, 47686, 'fr', 'name', 'UniversitƩ Shalom de Bunia'),
(57316, 47687, 'en', 'name', 'Jinhua Municipal Science and Technology Bureau'),
(57317, 47687, 'zh', 'name', 'é‡‘åŽåø‚ē§‘ęŠ€å±€'),
(57318, 47688, 'en', 'name', 'Avery County Schools'),
(57319, 47689, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ 弘仁会 ēŽ‰å³¶ē—…é™¢'),
(57320, 47689, 'no_lang_code', 'name', 'Tamashima Hospital'),
(57321, 47690, 'no_lang_code', 'name', 'STMicroelectronics (China)'),
(57322, 47691, 'en', 'name', 'Association for Research on Nonprofit Organizations and Voluntary Action'),
(57323, 47692, 'pt', 'name', 'Fundação Instituto de Pesca do Estado do Rio de Janeiro'),
(57324, 47693, 'en', 'name', 'Our Lady''s Hospital'),
(57325, 47693, 'ga', 'name', 'OspidƩal Mhuire'),
(57326, 47694, 'en', 'name', 'Nevus Outreach'),
(57327, 47695, 'no_lang_code', 'name', 'Johnson & Johnson (Australia)'),
(57328, 47696, 'en', 'name', 'Jintan People''s Hospital'),
(57329, 47696, 'zh', 'name', 'é‡‘å›åø‚äŗŗę°‘åŒ»é™¢'),
(57330, 47697, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© التآزر'),
(57331, 47697, 'en', 'name', 'Synergy University Dubai'),
(57332, 47698, 'no_lang_code', 'name', 'Abengoa Bioenergy (United States)'),
(57333, 47699, 'en', 'name', 'Shizuoka Prefectural Kakegawanishi High School'),
(57334, 47699, 'ja', 'name', 'é™å²”ēœŒē«‹ęŽ›å·č„æé«˜ē­‰å­¦ę ”'),
(57335, 47700, 'no_lang_code', 'name', 'E-Motors Consulting (United States)'),
(57336, 47701, 'no_lang_code', 'name', 'J&J Solutions (United States)'),
(57337, 47702, 'en', 'name', 'Provata Health'),
(57338, 47703, 'ja', 'name', 'Hakodate Shirayuri Gakuen, å‡½é¤Øē™½ē™¾åˆå­¦åœ’äø­å­¦é«˜ē­‰å­¦ę ”'),
(57339, 47704, 'en', 'name', 'Pearl Science Laboratory'),
(57340, 47704, 'ja', 'name', 'ēœŸē ē§‘å­¦ē ”ē©¶ę‰€'),
(57341, 47705, 'no_lang_code', 'name', 'High Precision Devices (United States)'),
(57342, 47706, 'es', 'name', 'Instituto de Investigaciones en Ciencia y TecnologĆ­a de Materiales'),
(57343, 47707, 'no_lang_code', 'name', 'Nonagen Bioscience (United States)'),
(57344, 47708, 'en', 'name', 'Tokyo Metropolitan School Personnel in Service Training Center'),
(57345, 47708, 'ja', 'name', 'ę±äŗ¬éƒ½ę•™č·å“”ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(57346, 47709, 'no_lang_code', 'name', 'Perrigo (Israel)'),
(57347, 47710, 'en', 'name', 'Okayama Prefectural Mizushima Technical High School'),
(57348, 47710, 'ja', 'name', 'å²”å±±ēœŒē«‹ę°“å³¶å·„ę„­é«˜ē­‰å­¦ę ”'),
(57349, 47711, 'en', 'name', 'DigiLearn Digital Learning Institute'),
(57350, 47712, 'no_lang_code', 'name', 'Magna International (United States)'),
(57351, 47713, 'en', 'name', 'Grameen Foundation'),
(57352, 47714, 'da', 'name', 'Lungeforening'),
(57353, 47714, 'en', 'name', 'Danish Lung Association'),
(57354, 47715, 'en', 'name', 'Association of Charitable Foundations'),
(57355, 47716, 'en', 'name', 'Kyoto Institute of Culture and Language'),
(57356, 47716, 'ja', 'name', 'äŗ¬éƒ½ę–‡åŒ–ę—„ęœ¬čŖžå­¦ę ”'),
(57357, 47717, 'no_lang_code', 'name', 'Medomics (United States)'),
(57358, 47718, 'en', 'name', 'Osaka Prefecture Hannan Visual Support School'),
(57359, 47718, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹å¤§é˜Ŗå—č¦–č¦šę”Æę“å­¦ę ”'),
(57360, 47719, 'en', 'name', 'Collective Leadership Institute'),
(57361, 47720, 'no_lang_code', 'name', 'Agilent Technologies (Germany)'),
(57362, 47721, 'ja', 'name', 'åƒč‘‰ę•¬ę„›ēŸ­ęœŸå¤§å­¦'),
(57363, 47721, 'no_lang_code', 'name', 'Chiba Keiai Junior College'),
(57364, 47722, 'en', 'name', 'Nara Saho College'),
(57365, 47722, 'ja', 'name', 'å„ˆč‰Æä½äæēŸ­ęœŸå¤§å­¦'),
(57366, 47723, 'en', 'name', 'Osaka Prefectural Toyonaka Support School'),
(57367, 47723, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹č±Šäø­ę”Æę“å­¦ę ”'),
(57368, 47724, 'ja', 'name', 'ć‚¤ćƒžć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(57369, 47724, 'no_lang_code', 'name', 'Imagineering (Japan)'),
(57370, 47725, 'en', 'name', 'Miami Heart Research Institute'),
(57371, 47726, 'no_lang_code', 'name', 'Nidec (United Kingdom)'),
(57372, 47727, 'en', 'name', 'Heart Rhythm Society'),
(57373, 47728, 'en', 'name', 'Royal Society of Sciences and Letters in Gothenburg'),
(57374, 47728, 'sv', 'name', 'Kungl. Vetenskaps- och Vitterhets-samhƤllet i Gƶteborg'),
(57375, 47729, 'no_lang_code', 'name', 'TDK (Singapore)'),
(57376, 47730, 'en', 'name', 'Hemalata Hospitals and Research Centre'),
(57377, 47731, 'no_lang_code', 'name', 'Epiphany Biosciences (United States)'),
(57378, 47732, 'no_lang_code', 'name', 'Western Digital (China)'),
(57379, 47733, 'no_lang_code', 'name', 'Toshiba (Germany)'),
(57380, 47734, 'no_lang_code', 'name', 'Centrum Průmyslového Výzkumu Techlab (Czechia)'),
(57381, 47735, 'no_lang_code', 'name', 'dPoint Technologies (Canada)'),
(57382, 47736, 'en', 'name', 'Gifu International Academy of Horticulture'),
(57383, 47736, 'ja', 'name', 'å²é˜œēœŒē«‹å›½éš›åœ’čŠøć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(57384, 47737, 'en', 'name', 'The Ohio State University at Marion'),
(57385, 47738, 'en', 'name', 'Gordon College'),
(57386, 47739, 'no_lang_code', 'name', 'Tagworks Pharmaceuticals (Netherlands)'),
(57387, 47740, 'en', 'name', 'St. Augustine International University'),
(57388, 47741, 'pt', 'name', 'Instituto de Tecnologia de Pernambuco'),
(57389, 47742, 'no_lang_code', 'name', 'Biolitec (Malaysia)'),
(57390, 47743, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ ''Ī‘Ī¼Ļ†Ī¹ĻƒĻƒĪ±Ļ‚'),
(57391, 47743, 'no_lang_code', 'name', 'Amfissa General Hospital'),
(57392, 47744, 'no_lang_code', 'name', 'Sonitu Pharmaceuticals (United States)'),
(57393, 47745, 'en', 'name', 'Yuma Elementary School District'),
(57394, 47746, 'no_lang_code', 'name', 'Perkinelmer (Singapore)'),
(57395, 47747, 'ar', 'name', 'المستؓفى Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(57396, 47747, 'en', 'name', 'Islamic Hospital'),
(57397, 47748, 'en', 'name', 'Fortune Institute of Technology'),
(57398, 47748, 'zh', 'name', 'å’Œę˜„ęŠ€č”“å­øé™¢'),
(57399, 47749, 'en', 'name', 'Mexican Geological Survey'),
(57400, 47749, 'es', 'name', 'Servicio Geológico Mexicano'),
(57401, 47750, 'en', 'name', 'Australasian Speech Science and Technology Association'),
(57402, 47751, 'en', 'name', 'Joan Ganz Cooney Center'),
(57403, 47752, 'no_lang_code', 'name', 'Yazaki (Australia)'),
(57404, 47753, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æćƒœć‚æ'),
(57405, 47753, 'no_lang_code', 'name', 'Kubota (Japan)'),
(57406, 47754, 'en', 'name', 'Chinese People''s Armed Police General Hospital'),
(57407, 47754, 'zh', 'name', 'ę­¦č­¦ę€»åŒ»é™¢'),
(57408, 47755, 'en', 'name', 'American Society of Naval Engineers'),
(57409, 47756, 'ar', 'name', 'Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„ŁƒŁŠŁ…ŁŠŲ§Ų¦ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ©'),
(57410, 47756, 'en', 'name', 'Saudi Chemical Society'),
(57411, 47757, 'no_lang_code', 'name', 'NanoAl (United States)'),
(57412, 47758, 'no_lang_code', 'name', 'CarbonCure Technologies (Canada)'),
(57413, 47759, 'en', 'name', 'Colorado Cancer Research Program'),
(57414, 47760, 'en', 'name', 'Railway Technical Research Institute'),
(57415, 47760, 'ja', 'name', 'é‰„é“ē·åˆęŠ€č”“ē ”ē©¶ę‰€'),
(57416, 47761, 'pt', 'name', 'Sociedade Brasileira de Ensino de Biologia'),
(57417, 47762, 'en', 'name', 'Stand for Children'),
(57418, 47763, 'ja', 'name', 'č±Šē”°åˆęˆ'),
(57419, 47763, 'no_lang_code', 'name', 'Toyoda Gosei (Japan)'),
(57420, 47764, 'en', 'name', 'Institute of Glass'),
(57421, 47764, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стекла'),
(57422, 47765, 'no_lang_code', 'name', 'Muse Research and Development (United States)'),
(57423, 47766, 'en', 'name', 'Mizunami Fossil Museum'),
(57424, 47766, 'ja', 'name', 'ē‘žęµŖåø‚åŒ–ēŸ³åšē‰©é¤Ø'),
(57425, 47767, 'no_lang_code', 'name', 'Promethean Particles (United Kingdom)'),
(57426, 47768, 'en', 'name', 'Foundation Center'),
(57427, 47769, 'no_lang_code', 'name', 'Bio-Rad (Canada)'),
(57428, 47770, 'en', 'name', 'American Cleft Palate-Craniofacial Association'),
(57429, 47771, 'en', 'name', 'Yonezawa Women''s Junior College'),
(57430, 47771, 'ja', 'name', 'å±±å½¢ēœŒē«‹ē±³ę²¢å„³å­ēŸ­ęœŸå¤§å­¦'),
(57431, 47772, 'no_lang_code', 'name', 'Celula (United States)'),
(57432, 47773, 'no_lang_code', 'name', 'Precision Nanosystems (Canada)'),
(57433, 47774, 'no_lang_code', 'name', 'Los Alamos National Security (United States)'),
(57434, 47775, 'no_lang_code', 'name', 'Chiesi (United States)'),
(57435, 47776, 'de', 'name', 'Deutsche Gesellschaft für Urologie'),
(57436, 47777, 'no_lang_code', 'name', 'Danaher (Australia)'),
(57437, 47778, 'en', 'name', 'Deutsche Bank'),
(57438, 47779, 'en', 'name', 'National Institute of Technology, Oshima College'),
(57439, 47779, 'ja', 'name', 'å¤§å³¶å•†čˆ¹é«˜ē­‰å°‚é–€å­¦ę ”'),
(57440, 47780, 'no_lang_code', 'name', 'IDP IngenierĆ­a y Arquitectura Iberia (Spain)'),
(57441, 47781, 'no_lang_code', 'name', 'Coloplast (United States)'),
(57442, 47782, 'en', 'name', 'Tokushima College of Technology'),
(57443, 47782, 'ja', 'name', '徳島巄愭短期大学'),
(57444, 47783, 'no_lang_code', 'name', 'Schauenburg (Germany)'),
(57445, 47784, 'de', 'name', 'Klinikum Dortmund'),
(57446, 47785, 'en', 'name', 'Fukushima Prefecture History Museum'),
(57447, 47785, 'ja', 'name', 'ē¦å³¶ēœŒę­“å²č³‡ę–™é¤ØćÆ'),
(57448, 47786, 'ja', 'name', 'å®‰å·é›»ę©Ÿ'),
(57449, 47786, 'no_lang_code', 'name', 'Yaskawa Electric (Japan)'),
(57450, 47787, 'en', 'name', 'Osaka Prefectural Board of Education'),
(57451, 47787, 'ja', 'name', 'å¤§é˜Ŗåŗœę•™č‚²å§”å“”ä¼š'),
(57452, 47788, 'de', 'name', 'Universitätsklinik für Hals-, Nasen- und Ohrenheilkunde'),
(57453, 47789, 'no_lang_code', 'name', 'Coulometrics (United States)'),
(57454, 47790, 'es', 'name', 'Empresa Municipal de la Vivienda y Suelo de Madrid'),
(57455, 47791, 'no_lang_code', 'name', 'Ashima (Taiwan)'),
(57456, 47792, 'no_lang_code', 'name', 'Microsoft (Israel)'),
(57457, 47793, 'en', 'name', 'Stanground Academy'),
(57458, 47794, 'ja', 'name', 'ę–œé‡Œē”ŗē«‹ēŸ„åŗŠåšē‰©é¤Ø'),
(57459, 47794, 'no_lang_code', 'name', 'Shiretoko Museum'),
(57460, 47795, 'no_lang_code', 'name', 'Aadi (United States)'),
(57461, 47796, 'pt', 'name', 'Governo do ParĆ”'),
(57462, 47797, 'bg', 'name', 'Комплексен онкологичен Ń†ŠµŠ½Ń‚ŃŠŃ€ – Велико Š¢ŃŠŃ€Š½Š¾Š²Š¾'),
(57463, 47797, 'en', 'name', 'Comprehensive Oncological Center – Veliko Turnovo'),
(57464, 47798, 'no_lang_code', 'name', 'TechnipFMC (United Kingdom)'),
(57465, 47799, 'ko', 'name', 'ķ˜„ėŒ€ėŖØė¹„ģŠ¤ ģ£¼ģ‹ķšŒģ‚¬'),
(57466, 47799, 'no_lang_code', 'name', 'Hyundai Mobis (South Korea)'),
(57467, 47800, 'pt', 'name', 'Instituto Superior PolitƩcnico Metropolitano de Angola'),
(57468, 47801, 'en', 'name', 'Fraunhofer Austria'),
(57469, 47802, 'en', 'name', 'Traditional Chinese Medicine Hospital of Kunshan'),
(57470, 47803, 'en', 'name', 'Hiroshima University Hospital'),
(57471, 47803, 'ja', 'name', 'åŗƒå³¶å¤§å­¦ē—…é™¢'),
(57472, 47804, 'no_lang_code', 'name', 'Imam Reza Hospital'),
(57473, 47805, 'es', 'name', 'Centro Universitario Didaskalos'),
(57474, 47806, 'no_lang_code', 'name', 'Univera (United States)'),
(57475, 47807, 'no_lang_code', 'name', 'Thermal Gradient (United States)'),
(57476, 47808, 'en', 'name', 'Australian Dental Association'),
(57477, 47809, 'en', 'name', 'Australian Psychological Society'),
(57478, 47810, 'no_lang_code', 'name', 'Rivis (United States)'),
(57479, 47811, 'no_lang_code', 'name', 'Nokia (United States)'),
(57480, 47812, 'en', 'name', 'Bule Hora University'),
(57481, 47813, 'no_lang_code', 'name', 'Yahoo (United Kingdom)'),
(57482, 47814, 'en', 'name', 'Management Education & Research Consortium'),
(57483, 47815, 'no_lang_code', 'name', 'Athletigen (Canada)'),
(57484, 47816, 'no_lang_code', 'name', 'Nifco (China)'),
(57485, 47817, 'en', 'name', 'Canadian Asian Studies Association'),
(57486, 47817, 'fr', 'name', 'Association Canadienne des Ɖtudes Asiatiques'),
(57487, 47818, 'en', 'name', 'Kyoto National Museum'),
(57488, 47818, 'ja', 'name', 'äŗ¬éƒ½å›½ē«‹åšē‰©é¤Ø'),
(57489, 47819, 'de', 'name', 'Zentrum für Kinderheilkunde'),
(57490, 47820, 'en', 'name', 'KES International'),
(57491, 47821, 'en', 'name', 'Harborview Injury Prevention and Research Center'),
(57492, 47822, 'sv', 'name', 'ParkinsonFƶrbundet'),
(57493, 47823, 'en', 'name', 'Library System of Lancaster County'),
(57494, 47824, 'no_lang_code', 'name', 'Prysmian Group (Germany)'),
(57495, 47825, 'no_lang_code', 'name', 'Skeleton Technologies (Estonia)'),
(57496, 47826, 'en', 'name', 'International Confederation of Midwives'),
(57497, 47827, 'no_lang_code', 'name', 'Ardent Sound (United States)'),
(57498, 47828, 'en', 'name', 'Central Office of Measures'),
(57499, 47828, 'pl', 'name', 'Główny Urząd Miar'),
(57500, 47829, 'en', 'name', 'Asian University for Women Support Foundation'),
(57501, 47830, 'en', 'name', 'Institute of Forest Science'),
(57502, 47830, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š»ŠµŃŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(57503, 47831, 'en', 'name', 'Ibaraki Prefecture Education Training Center'),
(57504, 47831, 'ja', 'name', 'čŒØåŸŽēœŒę•™č‚²ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(57505, 47832, 'no_lang_code', 'name', 'Polaroid (United States)'),
(57506, 47833, 'en', 'name', 'Research Institute on Contemporary Southeast Asia'),
(57507, 47833, 'th', 'name', 'Institut de Recherche sur l''Asie du Sud-Est Contemporaine'),
(57508, 47834, 'no_lang_code', 'name', 'Chi Mei Communication Systems (Taiwan)'),
(57509, 47834, 'zh', 'name', 'å„‡ē¾Žé€ščØŠ'),
(57510, 47835, 'en', 'name', 'Yamaguchi Junior College'),
(57511, 47835, 'ja', 'name', 'å±±å£ēŸ­ęœŸå¤§å­¦'),
(57512, 47836, 'no_lang_code', 'name', 'Frequentis (Germany)'),
(57513, 47837, 'id', 'name', 'Universitas Victory Sorong'),
(57514, 47838, 'en', 'name', 'State Library of Kansas'),
(57515, 47839, 'en', 'name', 'ACT Herpetological Association'),
(57516, 47840, 'no_lang_code', 'name', 'WaterNet Trust'),
(57517, 47841, 'de', 'name', 'Zentrum für Psychotherapie Wiesbaden'),
(57518, 47842, 'pt', 'name', 'Prefeitura Municipal de Anapolis'),
(57519, 47843, 'no_lang_code', 'name', 'Fio Corporation (Canada)'),
(57520, 47844, 'no_lang_code', 'name', 'Nvigen (United States)'),
(57521, 47845, 'no_lang_code', 'name', 'Freestone Environmental Services (United States)'),
(57522, 47846, 'en', 'name', 'British Society for Middle Eastern Studies'),
(57523, 47847, 'en', 'name', 'All-Russia Thermal Engineering Institute'),
(57524, 47847, 'ru', 'name', 'Всероссийский Теплотехнический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(57525, 47848, 'en', 'name', 'Ichikawa City Rehabilitation Hospital'),
(57526, 47848, 'ja', 'name', 'åø‚å·åø‚ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(57527, 47849, 'en', 'name', 'Japan Graduate School of Education University'),
(57528, 47849, 'ja', 'name', 'ę—„ęœ¬ę•™č‚²å¤§å­¦é™¢å¤§å­¦'),
(57529, 47850, 'en', 'name', 'Hangzhou Hospital of Traditional Chinese Medicine'),
(57530, 47851, 'en', 'name', 'Administrative Sciences Association of Canada, Association des sciences administratives du Canada'),
(57531, 47852, 'no_lang_code', 'name', 'Delta Electronics (Taiwan)'),
(57532, 47852, 'zh', 'name', '达电子'),
(57533, 47853, 'en', 'name', 'Inner Mongolia Institute of Hydraulic Research'),
(57534, 47853, 'zh', 'name', 'å†…č’™å¤č‡Ŗę²»åŒŗę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(57535, 47854, 'en', 'name', 'Beijing Institute of Education'),
(57536, 47854, 'zh', 'name', 'åŒ—äŗ¬ę•™č‚²å­¦é™¢'),
(57537, 47855, 'de', 'name', 'Klinik für Psychosomatik'),
(57538, 47856, 'da', 'name', 'Danske Fysioterapeuter'),
(57539, 47856, 'en', 'name', 'Association of Danish Physiotherapists'),
(57540, 47857, 'no_lang_code', 'name', 'Neurio Technology (Canada)'),
(57541, 47858, 'no_lang_code', 'name', 'Kalinga University'),
(57542, 47859, 'en', 'name', 'International Federation of Gynaecology and Obstetrics'),
(57543, 47859, 'fr', 'name', 'FƩdƩration Internationale de GynƩcologie et d''ObstƩtrique'),
(57544, 47860, 'en', 'name', 'Fukuoka City Archaeological Center'),
(57545, 47860, 'ja', 'name', 'ē¦å²”åø‚åŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(57546, 47861, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do AmapÔ, Instituto Federal do AmapÔ'),
(57547, 47862, 'no_lang_code', 'name', 'Meyer Burger Technology (Germany)'),
(57548, 47863, 'no_lang_code', 'name', 'ASM International (Belgium)'),
(57549, 47864, 'no_lang_code', 'name', 'Dassault SystĆØmes (United Kingdom)'),
(57550, 47865, 'no_lang_code', 'name', 'American Ecotech (United States)'),
(57551, 47866, 'no_lang_code', 'name', 'Qorvo (United States)'),
(57552, 47867, 'no_lang_code', 'name', 'Kohler (China)'),
(57553, 47867, 'zh', 'name', 'ē§‘å‹’'),
(57554, 47868, 'en', 'name', 'Australian Association for Academic Primary Care'),
(57555, 47869, 'en', 'name', 'Royal Dublin Society'),
(57556, 47870, 'en', 'name', 'Columbia St. Mary''s Hospital'),
(57557, 47871, 'en', 'name', 'Summer Advantage USA'),
(57558, 47872, 'es', 'name', 'Universidad Regional Miguel Hidalgo'),
(57559, 47873, 'en', 'name', 'International Association of Engineers'),
(57560, 47874, 'en', 'name', 'Canadian Association of University Teachers'),
(57561, 47875, 'en', 'name', 'Sunrise University'),
(57562, 47876, 'en', 'name', 'Society for Endocrinology, Metabolism and Diabetes of South Africa'),
(57563, 47877, 'de', 'name', 'Fondazione per la ricerca e la cura dei linfomi'),
(57564, 47877, 'en', 'name', 'Foundation for the Research and Cure of Lymphoma in Ticino'),
(57565, 47878, 'en', 'name', 'Marie Curie Hospice'),
(57566, 47879, 'aa', 'name', 'äø‰é‡ēœŒē«‹ę¾é˜Ŗå·„ę„­é«˜ē­‰å­¦ę ”'),
(57567, 47879, 'en', 'name', 'Mie prefectural Matsusaka Technical High School'),
(57568, 47880, 'en', 'name', 'Kyushu Ryukoku Junior College'),
(57569, 47880, 'ja', 'name', 'ä¹å·žé¾č°·ēŸ­ęœŸå¤§å­¦'),
(57570, 47881, 'en', 'name', 'Fukuoka Prefectural Kokura High School'),
(57571, 47881, 'ja', 'name', 'ē¦å²”ēœŒē«‹å°å€‰é«˜ē­‰å­¦ę ”'),
(57572, 47882, 'en', 'name', 'Cascade Mental Healthcare'),
(57573, 47883, 'en', 'name', 'National Mapping and Resource Information Authority'),
(57574, 47883, 'tl', 'name', 'Pambansang Pangasiwaan sa Pagmamapa at Impormasyon sa Yaman'),
(57575, 47884, 'en', 'name', 'Zavaritsky Institute of Geology and Geochemistry'),
(57576, 47884, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° геологии Šø геохимии им. акаГемика А.Š. Заварицкого'),
(57577, 47885, 'pt', 'name', 'Instituto Brasileiro de Museus'),
(57578, 47886, 'en', 'name', 'Library Foundation of Los Angeles'),
(57579, 47887, 'en', 'name', 'Memorial'),
(57580, 47887, 'ru', 'name', 'ŠžŠ±Ń‰ŠµŃŃ‚Š²Š¾ ŠœŠµŠ¼Š¾Ń€ŠøŠ°Š»'),
(57581, 47888, 'en', 'name', 'Regional Studies Association'),
(57582, 47889, 'en', 'name', 'Integrative Medicine Institute'),
(57583, 47890, 'en', 'name', 'Foundation Wakasa Wan Energy Research Center'),
(57584, 47890, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ č‹„ē‹­ę¹¾ć‚Øćƒćƒ«ć‚®ćƒ¼ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(57585, 47891, 'es', 'name', 'Universidad Pedagógica de Durango'),
(57586, 47892, 'en', 'name', 'Kitakyushu Museum of Natural History and Human History'),
(57587, 47892, 'ja', 'name', 'åŒ—ä¹å·žåø‚ē«‹ć„ć®ć”ć®ćŸć³åšē‰©é¤Ø[č‡Ŗē„¶å²ćƒ»ę­“å²åšē‰©é¤Ø'),
(57588, 47893, 'no_lang_code', 'name', 'International Game Technology (United Kingdom)'),
(57589, 47894, 'no_lang_code', 'name', 'Gavin and Doherty Geosolutions (Ireland)'),
(57590, 47895, 'en', 'name', 'Greater Austin Hispanic Chamber of Commerce'),
(57591, 47896, 'no_lang_code', 'name', 'Bristol Laboratories (United Kingdom)'),
(57592, 47897, 'en', 'name', 'Association of Medical Research Charities'),
(57593, 47898, 'en', 'name', 'Global Burn Care and Reconstructive Institute'),
(57594, 47899, 'en', 'name', 'Japan Transport Research Institute'),
(57595, 47899, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ é‹č¼øē·åˆē ”ē©¶ę‰€'),
(57596, 47900, 'en', 'name', 'Institute of Forest Genetics and Tree Breeding'),
(57597, 47901, 'no_lang_code', 'name', 'Valley Partnership (United States)'),
(57598, 47902, 'no_lang_code', 'name', 'Federal Mogul (Germany)'),
(57599, 47903, 'ko', 'name', 'ģ£¼ģ‹ķšŒģ‚¬ ģ ė¦¬ķ…Œķ¬ 설립'),
(57600, 47903, 'no_lang_code', 'name', 'Solid (South Korea)'),
(57601, 47904, 'en', 'name', 'Hokkaido Board of Education'),
(57602, 47904, 'ja', 'name', 'åŒ—ęµ·é“ę•™č‚²å§”å“”ä¼š'),
(57603, 47905, 'no_lang_code', 'name', 'Autoliv (Germany)'),
(57604, 47906, 'en', 'name', 'Ibaraki National College of Technology'),
(57605, 47906, 'ja', 'name', 'čŒØåŸŽå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(57606, 47907, 'no_lang_code', 'name', 'Nemaska Lithium (Canada)'),
(57607, 47908, 'no_lang_code', 'name', 'Semiconductor Manufacturing International (Italy)'),
(57608, 47909, 'en', 'name', 'Canadian Astronomical Society'),
(57609, 47909, 'fr', 'name', 'SociĆ©tĆ© Canadienne d’Astronomie'),
(57610, 47910, 'en', 'name', 'Linyi City Chinese Medicine Hospital'),
(57611, 47911, 'es', 'name', 'Centro Cultural Universitario de Ciudad Juarez'),
(57612, 47912, 'no_lang_code', 'name', 'Philips (Israel)'),
(57613, 47913, 'no_lang_code', 'name', 'Danfoss (Germany)'),
(57614, 47914, 'no_lang_code', 'name', 'TDK-EPC (Germany)'),
(57615, 47915, 'no_lang_code', 'name', 'Agfa-Gevaert (United States)'),
(57616, 47916, 'en', 'name', 'Luoyang Central Hospital Affiliated to Zhengzhou University'),
(57617, 47917, 'en', 'name', 'AIDS Vaccine Advocacy Coalition'),
(57618, 47918, 'no_lang_code', 'name', 'MACOM (United Kingdom)'),
(57619, 47919, 'en', 'name', 'Cambridge in America'),
(57620, 47920, 'en', 'name', 'Zhejiang Ocean Development Institute'),
(57621, 47920, 'zh', 'name', 'ęµ™ę±Ÿēœęµ·ę“‹å¼€å‘ē ”ē©¶é™¢'),
(57622, 47921, 'no_lang_code', 'name', 'Lumisyn (United States)'),
(57623, 47922, 'no_lang_code', 'name', 'Jain PharmaBiotech (Switzerland)'),
(57624, 47923, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬ŲØŁŠŁ„ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ©'),
(57625, 47923, 'en', 'name', '​​Jubail University College'),
(57626, 47924, 'en', 'name', 'Reference Center Foundation for Innovative Technologies'),
(57627, 47924, 'pt', 'name', 'Fundação CERTI'),
(57628, 47925, 'en', 'name', 'Torino e-district'),
(57629, 47926, 'no_lang_code', 'name', 'Alectos (Canada)'),
(57630, 47927, 'no_lang_code', 'name', 'TE Connectivity (Brazil)'),
(57631, 47928, 'en', 'name', 'Department of Medical Sciences'),
(57632, 47928, 'th', 'name', 'ąøąø£ąø”ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąøąø²ąø£ą¹ąøžąø—ąø¢ą¹Œ'),
(57633, 47929, 'en', 'name', 'National Hospital Organization Hanamaki Hospital'),
(57634, 47929, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹čŠ±å·»ē—…é™¢'),
(57635, 47930, 'no_lang_code', 'name', 'Diageo (United Kingdom)'),
(57636, 47931, 'en', 'name', 'NIHR Evaluation Trials and Studies Coordinating Centre'),
(57637, 47932, 'en', 'name', 'United Nations University Institute for Water, Environment, and Health'),
(57638, 47933, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲµŁˆŁ…Ų§Ł„ā€Žā€Ž'),
(57639, 47933, 'en', 'name', 'University of Somalia'),
(57640, 47933, 'so', 'name', 'Jaamacada Soomaaliya'),
(57641, 47934, 'no_lang_code', 'name', 'Scientific Games (United States)'),
(57642, 47935, 'en', 'name', 'Islamic Azad University, Lahijan Branch'),
(57643, 47935, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد Ł„Ų§Ł‡ŁŠŲ¬Ų§Ł†'),
(57644, 47936, 'en', 'name', 'Kacho College'),
(57645, 47936, 'ja', 'name', 'čÆé ‚ēŸ­ęœŸå¤§å­¦'),
(57646, 47937, 'en', 'name', 'Coimbatore Medical College and Hospital'),
(57647, 47938, 'pt', 'name', 'Fundação de Economia e Estatística Siegfried Emanuel Heuser'),
(57648, 47939, 'pt', 'name', 'Fundação ApolÓnio Salles de Desenvolvimento Educacional'),
(57649, 47940, 'en', 'name', 'Jamaica Library Service'),
(57650, 47941, 'en', 'name', 'Wakayama Prefectural Tanabe High School'),
(57651, 47941, 'ja', 'name', 'å’Œę­Œå±±ēœŒē«‹ ē”°č¾ŗé«˜ē­‰å­¦ę ”'),
(57652, 47942, 'en', 'name', 'Austin Public Library'),
(57653, 47943, 'en', 'name', 'Aomori Prefectural Industrial Technology Center'),
(57654, 47943, 'ja', 'name', 'é’ę£®ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(57655, 47944, 'en', 'name', 'Fukuoka Institute of Technology Junior College'),
(57656, 47944, 'ja', 'name', 'ē¦å²”å·„ę„­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(57657, 47945, 'ja', 'name', 'ä»™å°é’č‘‰å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(57658, 47945, 'no_lang_code', 'name', 'Sendai Seiyo Gakuin College'),
(57659, 47946, 'en', 'name', 'Tokyo Metropolitan Kuramae Technical High School'),
(57660, 47946, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹č”µå‰å·„ę„­é«˜ē­‰å­¦ę ”'),
(57661, 47947, 'en', 'name', 'Association for the Study of Higher Education'),
(57662, 47948, 'no_lang_code', 'name', 'Volvo (United States)'),
(57663, 47949, 'en', 'name', 'China Chamber of Commerce for Import and Export of Medicines and Health Products'),
(57664, 47949, 'zh', 'name', 'äø­å›½åŒ»čÆäæå„å“čæ›å‡ŗå£å•†ä¼š'),
(57665, 47950, 'en', 'name', 'Sh''or Yoshuv Institute'),
(57666, 47951, 'de', 'name', 'Wikimedia Deutschland'),
(57667, 47952, 'fr', 'name', 'UniversitƩ d''Agriculture de KƩtou'),
(57668, 47953, 'en', 'name', 'Matsudo City Board of Education'),
(57669, 47953, 'ja', 'name', 'ę¾ęˆøåø‚ę•™č‚²å§”å“”ä¼š'),
(57670, 47954, 'en', 'name', 'Solid State Physics Laboratory'),
(57671, 47954, 'hi', 'name', 'ą¤ ą„‹ą¤øą¤¾ą¤µą¤øą„ą¤„ą¤¾ ą¤­ą„Œą¤¤ą¤æą¤•ą„€ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(57672, 47955, 'no_lang_code', 'name', 'eSenso (Canada)'),
(57673, 47956, 'en', 'name', 'Miyagi Prefectural Fisheries High School'),
(57674, 47956, 'ja', 'name', 'å®®åŸŽēœŒę°“ē”£é«˜ē­‰å­¦ę ”'),
(57675, 47957, 'en', 'name', 'Institute for Social Research'),
(57676, 47957, 'hr', 'name', 'Institut za DruŔtvena Istraživanja SveučiliŔta u Zagrebu'),
(57677, 47958, 'pt', 'name', 'Sociedade Brasileira de Recursos GenƩticos'),
(57678, 47959, 'no_lang_code', 'name', 'Assa Abloy (New Zealand)'),
(57679, 47960, 'en', 'name', 'Turkish Society of Nephrology'),
(57680, 47960, 'tr', 'name', 'Türk Nefroloji Derneği'),
(57681, 47961, 'en', 'name', 'Heidelberg Printing Machines AG'),
(57682, 47961, 'no_lang_code', 'name', 'Heidelberger Druckmaschinen (Germany)'),
(57683, 47962, 'en', 'name', 'Hachinohe Technical High School'),
(57684, 47962, 'ja', 'name', 'é’ę£®ēœŒē«‹å…«ęˆøå·„ę„­é«˜ē­‰å­¦ę ”'),
(57685, 47963, 'no_lang_code', 'name', 'EchoStar (India)'),
(57686, 47964, 'en', 'name', 'Glide Foundation'),
(57687, 47965, 'en', 'name', 'Higher Institute of Technologies and Applied Sciences'),
(57688, 47965, 'es', 'name', 'Instituto Superior de TecnologĆ­as y Ciencias Aplicadas'),
(57689, 47966, 'no_lang_code', 'name', 'Ekodenge (Turkey)'),
(57690, 47967, 'en', 'name', 'All-Russian Research Institute for Oil Refining'),
(57691, 47967, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по переработке нефти'),
(57692, 47968, 'no_lang_code', 'name', 'Corcept Therapeutics (United States)'),
(57693, 47969, 'en', 'name', 'National Museum of Modern Art Kyoto'),
(57694, 47969, 'ja', 'name', 'äŗ¬éƒ½å›½ē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(57695, 47970, 'en', 'name', 'Association for Women Geoscientists'),
(57696, 47971, 'en', 'name', 'British Association for Cancer Research'),
(57697, 47972, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒžć‚­ć‚æ'),
(57698, 47972, 'no_lang_code', 'name', 'Makita Corporation (Japan)'),
(57699, 47973, 'no_lang_code', 'name', 'DrƤger (United Kingdom)'),
(57700, 47974, 'en', 'name', 'Gulf Regional Planning Commission'),
(57701, 47975, 'en', 'name', 'Ragnar Sƶderberg Foundation'),
(57702, 47976, 'no_lang_code', 'name', 'Scientific Games (Australia)'),
(57703, 47977, 'fr', 'name', 'Institut National Polytechnique FƩlix Houphouƫt-Boigny'),
(57704, 47978, 'en', 'name', 'Parks and Recreation Foundation'),
(57705, 47978, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗ å…¬åœ’č²”å›£'),
(57706, 47979, 'no_lang_code', 'name', 'Rohm (Germany)'),
(57707, 47980, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆćƒ—ć‚³ćƒ³'),
(57708, 47980, 'no_lang_code', 'name', 'Topcon (Japan)'),
(57709, 47981, 'ar', 'name', 'Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© لطب Ų§Ł„Ų¹ŁŠŁˆŁ†'),
(57710, 47981, 'en', 'name', 'Saudi Ophthalmological Society'),
(57711, 47982, 'en', 'name', 'International Laboratory of High Magnetic Fields and Low Temperatures'),
(57712, 47982, 'pl', 'name', 'Międzynarodowego Laboratorium Silnych Pól Magnetycznych i Niskich Temperatur'),
(57713, 47983, 'no_lang_code', 'name', 'Apple (Germany)'),
(57714, 47984, 'en', 'name', 'Goulburn Broken Catchment Management Authority'),
(57715, 47985, 'en', 'name', 'Association for Surgical Education'),
(57716, 47986, 'en', 'name', 'Australian Publishers Association'),
(57717, 47987, 'de', 'name', 'Gruppe zur Fƶrderung der Angepasste Technologie'),
(57718, 47987, 'en', 'name', 'GrAT - Center for Appropriate Technology');
INSERT INTO `ror_settings` VALUES
(57719, 47988, 'en', 'name', 'Japanese Society of Clinical Neuropsychopharmacology'),
(57720, 47988, 'ja', 'name', 'ę—„ęœ¬č‡ØåŗŠē²¾ē„žē„žēµŒč–¬ē†å­¦ä¼š'),
(57721, 47989, 'en', 'name', 'Durham Technical Community College'),
(57722, 47990, 'en', 'name', 'Service Science Society of Taiwan'),
(57723, 47990, 'zh', 'name', 'å°ē£ęœå‹™ē§‘å­øå­øęœƒ'),
(57724, 47991, 'en', 'name', 'Government of Japan'),
(57725, 47992, 'en', 'name', 'Marienhospital Arnsberg'),
(57726, 47993, 'en', 'name', 'Center for European Policy Analysis'),
(57727, 47994, 'no_lang_code', 'name', 'McKinsey & Company (Germany)'),
(57728, 47995, 'en', 'name', 'Japanese Society of Medical Oncology'),
(57729, 47995, 'ja', 'name', 'č…«ē˜å†…ē§‘å­¦ä¼š'),
(57730, 47996, 'en', 'name', 'All-Russian Research Institute for Optical and Physical Measurements'),
(57731, 47996, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптико-физических измерений'),
(57732, 47997, 'en', 'name', 'Kochi Rehabilitation Institute'),
(57733, 47997, 'ja', 'name', 'é«˜ēŸ„ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å­¦é™¢'),
(57734, 47998, 'en', 'name', 'Donald Beasley Institute'),
(57735, 47999, 'no_lang_code', 'name', 'YIT (Germany)'),
(57736, 48000, 'en', 'name', 'Nara Prefectural Nara High School'),
(57737, 48000, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹å„ˆč‰ÆåŒ—é«˜ē­‰å­¦ę ”'),
(57738, 48001, 'no_lang_code', 'name', 'Signosis (United States)'),
(57739, 48002, 'en', 'name', 'York County School Division'),
(57740, 48003, 'en', 'name', 'Cancer Care Nova Scotia'),
(57741, 48004, 'en', 'name', 'Shimane Prefectural Matsue Technical High School'),
(57742, 48004, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹ę¾ę±Ÿå·„ę„­é«˜ē­‰å­¦ę ”'),
(57743, 48005, 'en', 'name', 'Ministry of Urban Development,Housing and Construction'),
(57744, 48006, 'ja', 'name', 'čˆ¹äŗ•é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(57745, 48006, 'no_lang_code', 'name', 'Funai Electric (Japan)'),
(57746, 48007, 'fr', 'name', 'SociƩtƩ FranƧaise de Dermatologie et de Pathologie Sexuellement Transmissible'),
(57747, 48008, 'en', 'name', 'Gifu Prefectural Yaotsu High School'),
(57748, 48008, 'ja', 'name', 'å²é˜œēœŒē«‹å…«ē™¾ę“„é«˜ē­‰å­¦ę ”'),
(57749, 48009, 'no_lang_code', 'name', 'Applied Physical Sciences (United States)'),
(57750, 48010, 'pt', 'name', 'Faculdade Única'),
(57751, 48011, 'ja', 'name', 'SMC ę Ŗå¼ä¼šē¤¾'),
(57752, 48011, 'no_lang_code', 'name', 'SMC Corporation (Japan)'),
(57753, 48012, 'en', 'name', 'Society of Hong Kong Scholars'),
(57754, 48013, 'de', 'name', 'Leibniz-Institut für Wirtschaftsforschung Halle'),
(57755, 48013, 'en', 'name', 'Halle Institute for Economic Research'),
(57756, 48014, 'no_lang_code', 'name', 'Semi Conductor Devices (Israel)'),
(57757, 48015, 'en', 'name', 'Walkergate Park Hospital'),
(57758, 48016, 'no_lang_code', 'name', 'National Oilwell Varco (United Kingdom)'),
(57759, 48017, 'no_lang_code', 'name', 'Intermolecular (United States)'),
(57760, 48018, 'no_lang_code', 'name', 'Sandvik (Germany)'),
(57761, 48019, 'bg', 'name', 'Š’ŠøŃŃˆŠµ ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ по Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠø Šø пощи'),
(57762, 48019, 'en', 'name', 'University of Telecommunications and Post'),
(57763, 48020, 'no_lang_code', 'name', 'Gleason (Germany)'),
(57764, 48021, 'no_lang_code', 'name', 'Bridgepoint (United States)'),
(57765, 48022, 'en', 'name', 'Niigata Prefectural Niigata High School'),
(57766, 48022, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę–°ę½Ÿé«˜ē­‰å­¦ę ”'),
(57767, 48023, 'en', 'name', 'Worldwatch Institute'),
(57768, 48024, 'en', 'name', 'British Society of Periodontology'),
(57769, 48025, 'en', 'name', 'Hokkaido Museum of Northern Peoples'),
(57770, 48025, 'ja', 'name', 'åŒ—ęµ·é“ē«‹åŒ—ę–¹ę°‘ę—åšē‰©é¤Ø'),
(57771, 48026, 'en', 'name', 'Tokyo Metropolitan Saginomiya High School'),
(57772, 48026, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹é·ŗå®®é«˜ē­‰å­¦ę ”'),
(57773, 48027, 'no_lang_code', 'name', 'QuantuMDx (United Kingdom)'),
(57774, 48028, 'en', 'name', 'Kameda College of Health Sciences'),
(57775, 48028, 'ja', 'name', 'äŗ€ē”°åŒ»ē™‚å¤§å­¦'),
(57776, 48029, 'en', 'name', 'Low Income Housing Institute'),
(57777, 48030, 'fr', 'name', 'CollĆØge de Physique et de Philosophie'),
(57778, 48031, 'en', 'name', 'National Council of Applied Economic Research'),
(57779, 48032, 'en', 'name', 'Twelfth Guangzhou City People''s Hospital'),
(57780, 48032, 'zh', 'name', 'å¹æå·žåø‚ē¬¬åäŗŒäŗŗę°‘åŒ»é™¢'),
(57781, 48033, 'en', 'name', 'Institute for Research and Reform in Education'),
(57782, 48034, 'en', 'name', 'Kyoto Bunkyo Junior College'),
(57783, 48034, 'ja', 'name', 'äŗ¬éƒ½ę–‡ę•™ēŸ­ęœŸå¤§å­¦'),
(57784, 48035, 'en', 'name', 'Wellspring University'),
(57785, 48036, 'fi', 'name', 'Ab LƄsfabriken-Lukkotehdas Oy'),
(57786, 48036, 'no_lang_code', 'name', 'Abloy (Finland)'),
(57787, 48037, 'en', 'name', 'Chilean Nuclear Energy Commission'),
(57788, 48037, 'es', 'name', 'Comisión Chilena de Energía Nuclear'),
(57789, 48038, 'bs', 'name', 'Internacionalni univerzitet Travnik'),
(57790, 48038, 'en', 'name', 'International University of Travnik'),
(57791, 48039, 'no_lang_code', 'name', 'Western Digital (Israel)'),
(57792, 48040, 'en', 'name', 'Kappa Kappa Gamma'),
(57793, 48041, 'ja', 'name', 'ćƒ–ćƒŖćƒ†ć‚£ćƒƒć‚·ćƒ„ćƒ»ć‚¢ćƒ”ćƒŖć‚«ćƒ³ćƒ»ć‚æćƒć‚³'),
(57794, 48041, 'no_lang_code', 'name', 'British American Tobacco (Japan)'),
(57795, 48042, 'no_lang_code', 'name', 'SphingoGene (United States)'),
(57796, 48043, 'en', 'name', 'Niigata City Kohshi Secondary School'),
(57797, 48043, 'ja', 'name', 'ę–°ę½Ÿåø‚ē«‹é«˜åæ—äø­ē­‰ę•™č‚²å­¦ę ”'),
(57798, 48044, 'no_lang_code', 'name', 'Balfour Beatty (Germany)'),
(57799, 48045, 'en', 'name', 'Gansu Provincial Hospital of TCM'),
(57800, 48045, 'zh', 'name', 'ē”˜č‚ƒēœäø­åŒ»é™¢'),
(57801, 48046, 'fr', 'name', 'UniversitƩ Kofi Annan de GuinƩe'),
(57802, 48047, 'en', 'name', 'Hokkaido Dental Technical College'),
(57803, 48047, 'ja', 'name', 'åŒ—ęµ·é“ę­Æē§‘ęŠ€č”“å°‚é–€å­¦ę ”'),
(57804, 48048, 'en', 'name', 'Takayama College of Car Technology'),
(57805, 48048, 'ja', 'name', 'é«˜å±±č‡Ŗå‹•č»ŠēŸ­ęœŸå¤§å­¦'),
(57806, 48049, 'en', 'name', 'Ancient Egypt Research Associates'),
(57807, 48050, 'en', 'name', 'American Society for Public Administration'),
(57808, 48051, 'en', 'name', 'Hangzhou Vocational and Technical College'),
(57809, 48051, 'zh', 'name', 'ę­å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(57810, 48052, 'en', 'name', 'Wakayama Prefectural Board of Education'),
(57811, 48052, 'ja', 'name', 'å’Œę­Œå±±ēœŒę•™č‚²å§”å“”ä¼š'),
(57812, 48053, 'en', 'name', 'LaConner Regional Library'),
(57813, 48054, 'no_lang_code', 'name', 'Quaternion Aerospace (Canada)'),
(57814, 48055, 'en', 'name', 'African Capacity Building Foundation'),
(57815, 48056, 'en', 'name', 'Japanese Urological Association'),
(57816, 48056, 'ja', 'name', 'ę—„ęœ¬ę³Œå°æå™Øē§‘å­¦ä¼š'),
(57817, 48057, 'fr', 'name', 'Programme PAC-CI'),
(57818, 48058, 'no_lang_code', 'name', 'Brocade (United States)'),
(57819, 48059, 'no_lang_code', 'name', 'Huawei Technologies (United States)'),
(57820, 48060, 'ja', 'name', 'ęœ¬ē”°ęŠ€ē ”å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(57821, 48060, 'no_lang_code', 'name', 'Honda (Japan)'),
(57822, 48061, 'no_lang_code', 'name', 'PLUX - Wireless Biosignals (Portugal)'),
(57823, 48062, 'en', 'name', 'International Institute for Strategic Studies'),
(57824, 48063, 'tr', 'name', 'Manisa Celal Bayar Üniversitesi Hafsa Sultan Hastanesi'),
(57825, 48064, 'en', 'name', 'Breast Cancer Over Time'),
(57826, 48065, 'no_lang_code', 'name', 'Samsung (Israel)'),
(57827, 48066, 'no_lang_code', 'name', 'Grace (United States)'),
(57828, 48067, 'en', 'name', 'Museum of Malawi'),
(57829, 48068, 'en', 'name', 'Yawata Medical Center'),
(57830, 48068, 'ja', 'name', 'åŠ č³€å…«å¹”ęø©ę³‰ē—…é™¢'),
(57831, 48069, 'en', 'name', 'Episcopal School of Dallas'),
(57832, 48070, 'en', 'name', 'Department of Fisheries'),
(57833, 48071, 'ja', 'name', 'é«˜ē”°ēŸ­ęœŸå¤§å­¦'),
(57834, 48071, 'no_lang_code', 'name', 'Takada Junior College'),
(57835, 48072, 'en', 'name', 'Nagasaki Prefectural Tsushima Museum of History and Folklore'),
(57836, 48072, 'ja', 'name', 'é•·å“ŽēœŒē«‹åÆ¾é¦¬ę­“å²ę°‘äæ—å²ę–™é¤Ø'),
(57837, 48073, 'en', 'name', 'Wikimedia Argentina'),
(57838, 48074, 'en', 'name', 'Naha City Hospital'),
(57839, 48074, 'ja', 'name', '那覇市立病院'),
(57840, 48075, 'en', 'name', 'Brazilian Association of Science Parks and Business Incubators'),
(57841, 48075, 'pt', 'name', 'Associação Nacional de Entidades Promotoras de Empreendimentos de Tecnologias Avançadas'),
(57842, 48076, 'en', 'name', 'Suzuka City Library'),
(57843, 48076, 'ja', 'name', 'éˆ“é¹æåø‚ē«‹å›³ę›øé¤Ø'),
(57844, 48077, 'en', 'name', 'Association of Academic Physiatrists'),
(57845, 48078, 'en', 'name', 'Wakayama Prefectural Museum of Natural History'),
(57846, 48078, 'ja', 'name', 'å’Œę­Œå±±ēœŒē«‹č‡Ŗē„¶åšē‰©é¤Ø'),
(57847, 48079, 'en', 'name', 'Industrial Technology Center of SAGA'),
(57848, 48079, 'ja', 'name', 'ä½č³€ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(57849, 48080, 'no_lang_code', 'name', 'Valeo (Brazil)'),
(57850, 48081, 'en', 'name', 'Aoyama Gakuin Women''s Junior College'),
(57851, 48081, 'ja', 'name', 'é’å±±å­¦é™¢å„³å­ēŸ­ęœŸå¤§å­¦'),
(57852, 48082, 'en', 'name', 'Port of Morrow'),
(57853, 48083, 'no_lang_code', 'name', 'Nordson (Germany)'),
(57854, 48084, 'en', 'name', 'Shoei Junior College'),
(57855, 48084, 'ja', 'name', 'é Œę „ēŸ­ęœŸå¤§å­¦'),
(57856, 48085, 'pt', 'name', 'Instituto Florestal'),
(57857, 48086, 'el', 'name', 'Ελληνική Εταιρεία ĪœĪµĪ»Ī­Ļ„Ī·Ļ‚ ĪœĪµĻ„Ī±Ī²ĪæĪ»Ī¹ĻƒĪ¼ĪæĻ των ĪŸĻƒĻ„ĻŽĪ½'),
(57858, 48086, 'en', 'name', 'Hellenic Society for the Study of Bone Metabolism'),
(57859, 48087, 'en', 'name', 'Bangladesh Sericulture Research and Training Institute'),
(57860, 48088, 'en', 'name', 'International Parkinson and Movement Disorder Society'),
(57861, 48089, 'no_lang_code', 'name', 'Magnezit (Russia)'),
(57862, 48089, 'ru', 'name', 'ŠœŠ°Š³Š½ŠµŠ·ŠøŃ‚Š°'),
(57863, 48090, 'en', 'name', 'Environmental Protection Agency'),
(57864, 48091, 'en', 'name', 'Quantum Chemistry Research Institute'),
(57865, 48091, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗ é‡å­åŒ–å­¦ē ”ē©¶å”ä¼šē ”ē©¶ę‰€'),
(57866, 48092, 'en', 'name', 'Ministry of Culture of the Republic of Latvia'),
(57867, 48093, 'no_lang_code', 'name', 'Aristocrat (Australia)'),
(57868, 48094, 'no_lang_code', 'name', 'Hillrom (Singapore)'),
(57869, 48095, 'en', 'name', 'Tiffin University Prague'),
(57870, 48096, 'ja', 'name', 'å±±ę‘å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(57871, 48096, 'no_lang_code', 'name', 'Yamamura Gakuen College'),
(57872, 48097, 'en', 'name', 'Chiba City Museum of Art'),
(57873, 48097, 'ja', 'name', 'åƒč‘‰åø‚ē¾Žč”“é¤Ø'),
(57874, 48098, 'en', 'name', 'Jesuit Service Cambodia'),
(57875, 48099, 'en', 'name', 'Qinghai Tibetan Hospital'),
(57876, 48099, 'zh', 'name', 'é’ęµ·ēœč—åŒ»é™¢'),
(57877, 48100, 'pt', 'name', 'Sociedade Brasileira de História da MatemÔtica'),
(57878, 48101, 'no_lang_code', 'name', 'SmartSkim (United States)'),
(57879, 48102, 'en', 'name', 'European Parliamentary Forum on Population & Development'),
(57880, 48103, 'en', 'name', 'Japan Snake Institute'),
(57881, 48103, 'ja', 'name', 'ę—„ęœ¬ć‚¹ćƒćƒ¼ć‚Æē ”ē©¶ę‰€'),
(57882, 48104, 'en', 'name', 'Institute for Altitude Medicine'),
(57883, 48105, 'no_lang_code', 'name', 'SolMateS (Netherlands)'),
(57884, 48106, 'en', 'name', 'Ogaki Women''s College'),
(57885, 48106, 'ja', 'name', 'å¤§åž£å„³å­ēŸ­ęœŸå¤§å­¦'),
(57886, 48107, 'de', 'name', 'Flughafen Leipzig/Halle'),
(57887, 48107, 'en', 'name', 'Leipzig/Halle Airport'),
(57888, 48108, 'en', 'name', 'Hosen College of Childhood Education'),
(57889, 48108, 'ja', 'name', 'ć“ć©ć‚‚ę•™č‚²å®ä»™å¤§å­¦'),
(57890, 48109, 'en', 'name', 'Akita Museum of Art'),
(57891, 48109, 'ja', 'name', 'ē§‹ē”°ēœŒē«‹ē¾Žč”“é¤Ø'),
(57892, 48110, 'en', 'name', 'Oxford Centre for Diabetes, Endocrinology and Metabolism'),
(57893, 48111, 'no_lang_code', 'name', 'Cascade Thermal Solutions (United States)'),
(57894, 48112, 'no_lang_code', 'name', 'Chiba Prefectural Sekiyado-jo Museum'),
(57895, 48113, 'no_lang_code', 'name', 'Kohler (United States)'),
(57896, 48114, 'en', 'name', 'Hokkaido Sapporo Kita High School'),
(57897, 48114, 'ja', 'name', 'åŒ—ęµ·é“ęœ­å¹ŒåŒ—é«˜ē­‰å­¦ę ”'),
(57898, 48115, 'no_lang_code', 'name', 'Lite-On Technology Corporation (Singapore)'),
(57899, 48116, 'en', 'name', 'Kanto Junior College'),
(57900, 48116, 'ja', 'name', 'é–¢ę±ēŸ­ęœŸå¤§å­¦'),
(57901, 48117, 'en', 'name', 'Shridhar University'),
(57902, 48118, 'no_lang_code', 'name', 'Engie (United States)'),
(57903, 48119, 'hu', 'name', 'Bajai Obszervatórium, BÔcs-Kiskun Megyei CsillagvizsgÔló Intézet'),
(57904, 48120, 'no_lang_code', 'name', 'Fontis (Czechia)'),
(57905, 48121, 'en', 'name', 'Glen Carbon Centennial Library'),
(57906, 48122, 'no_lang_code', 'name', 'Apex Tool Group (Taiwan)'),
(57907, 48123, 'en', 'name', 'Center for Environmental Science in Saitama'),
(57908, 48123, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē’°å¢ƒē§‘å­¦å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(57909, 48124, 'en', 'name', 'University-National Oceanographic Laboratory System'),
(57910, 48125, 'no_lang_code', 'name', 'Red Hat (United States)'),
(57911, 48126, 'es', 'name', 'Conferencia Episcopal Boliviana'),
(57912, 48127, 'en', 'name', 'Reading Public Library'),
(57913, 48128, 'no_lang_code', 'name', 'OSI Systems (Germany)'),
(57914, 48129, 'en', 'name', 'Zhejiang Entry-Exit Inspection and Quarantine Bureau'),
(57915, 48129, 'zh', 'name', 'ę­å·žå‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(57916, 48130, 'en', 'name', 'Sakai City Education Center'),
(57917, 48130, 'ja', 'name', 'å ŗåø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(57918, 48131, 'no_lang_code', 'name', 'Seco Warwick (United States)'),
(57919, 48132, 'en', 'name', 'Live Oak Public Libraries'),
(57920, 48133, 'en', 'name', 'Ames Free Library'),
(57921, 48134, 'no_lang_code', 'name', 'ON Semiconductor (United States)'),
(57922, 48135, 'en', 'name', 'Highland Community College - Kansas'),
(57923, 48136, 'no_lang_code', 'name', 'Brunswick (United States)'),
(57924, 48137, 'pt', 'name', 'Museu da Amazonia'),
(57925, 48138, 'en', 'name', 'Delaware County Libraries'),
(57926, 48139, 'no_lang_code', 'name', 'ATG Europe (Netherlands)'),
(57927, 48140, 'en', 'name', 'Animals and Society Institute'),
(57928, 48141, 'ja', 'name', 'äø‰č±ćƒžćƒ†ćƒŖć‚¢ćƒ«ę Ŗå¼ä¼šē¤¾'),
(57929, 48141, 'no_lang_code', 'name', 'Mitsubishi Materials (Japan)'),
(57930, 48142, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do Tocantins, Instituto Federal do Tocantins'),
(57931, 48143, 'en', 'name', 'Niihama City Sumino Elementary School'),
(57932, 48143, 'ja', 'name', 'ę–°å±…ęµœåø‚ē«‹č§’é‡Žå°å­¦ę ”'),
(57933, 48144, 'no_lang_code', 'name', 'Newron Pharmaceuticals (United States)'),
(57934, 48145, 'es', 'name', 'Universidad Mesoamericana Oaxaca'),
(57935, 48146, 'en', 'name', 'Jiseikai Welfare Kyusyu Hospital'),
(57936, 48146, 'ja', 'name', 'ē¦ē„‰ 九州 病院'),
(57937, 48147, 'en', 'name', 'Okayama Prefectural Katsumata High School'),
(57938, 48147, 'ja', 'name', 'å²”å±±ēœŒē«‹å‹é–“ē”°é«˜ē­‰å­¦ę ”'),
(57939, 48148, 'en', 'name', 'National Association of Broadcasters'),
(57940, 48149, 'en', 'name', 'Swedish Research Council for Environment Agricultural Sciences and Spatial Planning'),
(57941, 48149, 'sv', 'name', 'ForskningsrƄdet fƶr Miljƶ, Areella NƤringar och SamhƤllsbyggande'),
(57942, 48150, 'no_lang_code', 'name', 'Luxmux Technology (Canada)'),
(57943, 48151, 'ja', 'name', 'ćæć¤ć‚å°ē·åˆē—…é™¢'),
(57944, 48151, 'no_lang_code', 'name', 'Mitsuwadai General Hospital'),
(57945, 48152, 'en', 'name', 'National Institute for Public Policy'),
(57946, 48153, 'en', 'name', 'National Institute of Technology, Suzuka College'),
(57947, 48153, 'ja', 'name', 'éˆ“é¹æå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(57948, 48154, 'en', 'name', 'Saga Prefectural Regional Industry Support Center'),
(57949, 48154, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ä½č³€ēœŒåœ°åŸŸē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(57950, 48155, 'en', 'name', 'Aichi Prefectural Jishukan Senior High School'),
(57951, 48155, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ę™‚ēæ’é¤Øé«˜ē­‰å­¦ę ”'),
(57952, 48156, 'no_lang_code', 'name', 'Alcoa (Australia)'),
(57953, 48157, 'en', 'name', 'Disaster Reduction and Human Renovation Institution'),
(57954, 48157, 'ja', 'name', 'é˜Ŗē„žćƒ»ę·”č·Æå¤§éœ‡ē½čØ˜åæµ äŗŗćØé˜²ē½ęœŖę„ć‚»ćƒ³ć‚æćƒ¼'),
(57955, 48158, 'en', 'name', 'Alabama Department of Commerce'),
(57956, 48159, 'en', 'name', 'Mie Prefectural Police'),
(57957, 48159, 'ja', 'name', 'äø‰é‡ēœŒč­¦åÆŸ'),
(57958, 48160, 'no_lang_code', 'name', 'Westinghouse Electric (Germany)'),
(57959, 48161, 'en', 'name', 'Government of Prince Edward Island'),
(57960, 48162, 'en', 'name', 'Canadian Bar Association'),
(57961, 48162, 'fr', 'name', 'Association du Barreau Canadien'),
(57962, 48163, 'it', 'name', 'Associazione Malattie Autoimmuni Mario Rossi'),
(57963, 48164, 'ja', 'name', 'ć‚»ćƒ³ćƒˆćƒ©ćƒ«ē”å­ę Ŗå¼ä¼šē¤¾'),
(57964, 48164, 'no_lang_code', 'name', 'Central Glass (Japan)'),
(57965, 48165, 'fr', 'name', 'Instituts FranƧais de Recherche Ơ L''Ɖtranger'),
(57966, 48166, 'en', 'name', 'Ibaraki Prefectural Mito First High School'),
(57967, 48166, 'ja', 'name', 'čŒØåŸŽēœŒē«‹ę°“ęˆøē¬¬äø€é«˜ē­‰å­¦ę ”'),
(57968, 48167, 'en', 'name', 'Hiroshima Prefectural Education Center'),
(57969, 48167, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(57970, 48168, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ 三井文庫'),
(57971, 48168, 'no_lang_code', 'name', 'Mitsui Bunko'),
(57972, 48169, 'no_lang_code', 'name', 'EntoGenetics (United States)'),
(57973, 48170, 'en', 'name', 'Victorian Institute of Teaching'),
(57974, 48171, 'en', 'name', 'Education Writers Association'),
(57975, 48172, 'en', 'name', 'Calvert Foundation'),
(57976, 48173, 'en', 'name', 'Syusaku Endo Literature Museum'),
(57977, 48173, 'ja', 'name', 'é č—¤å‘Øä½œę–‡å­¦é¤Ø'),
(57978, 48174, 'en', 'name', 'Operation Wallacea Trust'),
(57979, 48175, 'es', 'name', 'Centro Universitario de Educación Física'),
(57980, 48176, 'no_lang_code', 'name', 'APS Technology (United States)'),
(57981, 48177, 'en', 'name', 'Art Gallery of New South Wales'),
(57982, 48178, 'en', 'name', 'Maputo Central Hospital'),
(57983, 48179, 'en', 'name', 'Cancer Research UK Clinical Trials Unit'),
(57984, 48180, 'en', 'name', 'Ikenobo Junior College'),
(57985, 48180, 'ja', 'name', 'ę± åŠēŸ­ęœŸå¤§å­¦'),
(57986, 48181, 'fr', 'name', 'UniversitƩ Jean Price Mars'),
(57987, 48182, 'no_lang_code', 'name', 'Eaton (Germany)'),
(57988, 48183, 'no_lang_code', 'name', 'Chiba Hospital'),
(57989, 48184, 'no_lang_code', 'name', 'Inventec (Taiwan)'),
(57990, 48184, 'zh', 'name', 'č‹±ę„­é”å…¬åø'),
(57991, 48185, 'en', 'name', 'Iwate Prefectural Morioka Agricultural High School'),
(57992, 48185, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ē››å²”č¾²ę„­é«˜ē­‰å­¦ę ”'),
(57993, 48186, 'en', 'name', 'Ethel L. Whipple Memorial Library'),
(57994, 48187, 'en', 'name', 'Nagaoka Municipal Science Museum'),
(57995, 48188, 'en', 'name', 'National Maritime Foundation'),
(57996, 48189, 'en', 'name', 'Austin Voices for Education and Youth'),
(57997, 48190, 'en', 'name', 'Asahikawa Museum of Sculpture'),
(57998, 48190, 'ja', 'name', 'äø­åŽŸę‚ŒäŗŒéƒŽčØ˜åæµę—­å·åø‚å½«åˆ»ē¾Žč”“é¤Ø'),
(57999, 48191, 'en', 'name', 'George W. Bush Presidential Center'),
(58000, 48192, 'no_lang_code', 'name', 'Ayar Labs (United States)'),
(58001, 48193, 'en', 'name', 'Lifelong AIDS Alliance'),
(58002, 48194, 'en', 'name', 'Consortium of Florida Education Foundations'),
(58003, 48195, 'en', 'name', 'Mid-Continent University'),
(58004, 48196, 'en', 'name', 'Japan Underwater Robot Network'),
(58005, 48196, 'ja', 'name', 'ę—„ęœ¬ę°“äø­ćƒ­ćƒœćƒćƒƒćƒˆ'),
(58006, 48197, 'en', 'name', 'Sule Lamido University'),
(58007, 48198, 'en', 'name', 'Digital Public Library of America'),
(58008, 48199, 'no_lang_code', 'name', 'BlackBerry (United Kingdom)'),
(58009, 48200, 'no_lang_code', 'name', 'PrimeNano (united States)'),
(58010, 48201, 'en', 'name', 'American India Foundation'),
(58011, 48202, 'no_lang_code', 'name', 'Oxonica (United States)'),
(58012, 48203, 'en', 'name', 'Institute of Precision Mechanics and Control'),
(58013, 48203, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем точной механики Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(58014, 48204, 'en', 'name', 'Pennyrile Area Development District'),
(58015, 48205, 'no_lang_code', 'name', 'Aluminum Corporation of China (China)'),
(58016, 48205, 'zh', 'name', 'äø­å›½é“äøšå…¬åø'),
(58017, 48206, 'fr', 'name', 'Fondation Travail-UniversitƩ'),
(58018, 48207, 'no_lang_code', 'name', 'KanEnergi (Sweden)'),
(58019, 48208, 'en', 'name', 'Aicihi Prefectural Kariya High School'),
(58020, 48208, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹åˆˆč°·é«˜ē­‰å­¦ę ”'),
(58021, 48209, 'no_lang_code', 'name', 'Dart NeuroScience (United States)'),
(58022, 48210, 'en', 'name', 'Charities Aid Foundation'),
(58023, 48211, 'en', 'name', 'Yamaguchi Education Support Center'),
(58024, 48211, 'ja', 'name', 'ć‚„ć¾ćć”ē·åˆę•™č‚²ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(58025, 48212, 'en', 'name', 'Institute of Population and Labor Economics'),
(58026, 48212, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢äŗŗå£äøŽåŠ³åŠØē»ęµŽē ”ē©¶ę‰€'),
(58027, 48213, 'en', 'name', 'California Women Lawyers'),
(58028, 48214, 'en', 'name', 'Nishi-Nippon Junior College'),
(58029, 48214, 'ja', 'name', 'č„æę—„ęœ¬ēŸ­ęœŸå¤§å­¦'),
(58030, 48215, 'en', 'name', 'Kyoto Prefectural Tanabe High School'),
(58031, 48215, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹ē”°č¾ŗé«˜ē­‰å­¦ę ”'),
(58032, 48216, 'en', 'name', 'Heilongjiang Academy of Land Reclamation Sciences'),
(58033, 48216, 'zh', 'name', 'é»‘é¾™ę±Ÿå†œęž—ē§‘ęŠ€å¤§å­¦'),
(58034, 48217, 'no_lang_code', 'name', 'Kaio Therapy (United States)'),
(58035, 48218, 'en', 'name', 'Trust Management Institut'),
(58036, 48219, 'no_lang_code', 'name', 'PixArt (Taiwan)'),
(58037, 48219, 'zh', 'name', 'åŽŸē›øęˆåƒå…¬åø'),
(58038, 48220, 'en', 'name', 'Open International University for Alternative Medicines'),
(58039, 48221, 'en', 'name', 'Tokyo Metropolitan Shakujii High School'),
(58040, 48221, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ēŸ³ē„žäŗ•é«˜ē­‰å­¦ę ”'),
(58041, 48222, 'en', 'name', 'Xinjiang Uygur Autonomous Region Uygur Medicine Hospital'),
(58042, 48222, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē»“å¾å°”åŒ»åŒ»é™¢'),
(58043, 48223, 'en', 'name', 'Oita Prefectural Oita Technical High School'),
(58044, 48223, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹å¤§åˆ†å·„ę„­é«˜ē­‰å­¦ę ”'),
(58045, 48224, 'no_lang_code', 'name', 'Presage Biosciences (United States)'),
(58046, 48225, 'no_lang_code', 'name', 'TerraVerdae BioWorks (Canada)'),
(58047, 48226, 'no_lang_code', 'name', 'American Superconductor (Austria)'),
(58048, 48227, 'no_lang_code', 'name', 'Diebold Nixdorf (United States)'),
(58049, 48228, 'en', 'name', 'Central Savannah River Area Regional Commission'),
(58050, 48229, 'en', 'name', 'Saitama Prefectural Omiya High School'),
(58051, 48229, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹å¤§å®®é«˜ē­‰å­¦ę ”'),
(58052, 48230, 'no_lang_code', 'name', 'Adidas (United States)'),
(58053, 48231, 'no_lang_code', 'name', 'Collingwood Environmental Planning (United Kingdom)'),
(58054, 48232, 'no_lang_code', 'name', 'Eboo Pharmaceuticals (United States)'),
(58055, 48233, 'no_lang_code', 'name', 'Mantex (Sweden)'),
(58056, 48234, 'en', 'name', 'Nara Prefectural Institute for Educational Research'),
(58057, 48234, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹ę•™č‚²ē ”ē©¶ę‰€'),
(58058, 48235, 'en', 'name', 'Zhejiang Academy of Medical Sciences'),
(58059, 48235, 'zh', 'name', 'ęµ™ę±ŸēœåŒ»å­¦ē§‘å­¦é™¢'),
(58060, 48236, 'no_lang_code', 'name', 'Semiconductor Manufacturing International (China)'),
(58061, 48236, 'zh', 'name', 'äø­čŠÆå›½é™…é›†ęˆē”µč·Æåˆ¶é€ ęœ‰é™å…¬åø'),
(58062, 48237, 'no_lang_code', 'name', 'Electrolux (Germany)'),
(58063, 48238, 'en', 'name', 'Ministry of Natural Resources'),
(58064, 48239, 'en', 'name', 'Gyeongsan Science High School'),
(58065, 48239, 'ko', 'name', '경산과학고등학교'),
(58066, 48240, 'en', 'name', 'Amarillo Area Foundation'),
(58067, 48241, 'de', 'name', 'Arbeitsgruppe Friedensforschung und EuropƤische Sicherheitspolitik'),
(58068, 48241, 'en', 'name', 'Peace Research and European Security Studies'),
(58069, 48242, 'en', 'name', 'Green Infrastructure Center'),
(58070, 48243, 'no_lang_code', 'name', 'Amresco (United States)'),
(58071, 48244, 'no_lang_code', 'name', 'D-Tech (United States)'),
(58072, 48245, 'en', 'name', 'National Institute of Technology, Kushiro College'),
(58073, 48245, 'ja', 'name', 'é‡§č·Æå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(58074, 48246, 'en', 'name', 'Institute of Pomology'),
(58075, 48246, 'zh', 'name', 'ęžœę ‘ē ”ē©¶ę‰€'),
(58076, 48247, 'no_lang_code', 'name', 'EntryPoint (United States)'),
(58077, 48248, 'en', 'name', 'Japan Economic Research Institute'),
(58078, 48249, 'ko', 'name', 'ģ‚°ģ „'),
(58079, 48249, 'no_lang_code', 'name', 'LSIS (South Korea)'),
(58080, 48250, 'en', 'name', 'Inter Tribal Council of Arizona'),
(58081, 48251, 'de', 'name', 'Franziskushospital Aachen'),
(58082, 48252, 'en', 'name', 'O.Ya. Usikov Institute for Radiophysics and Electronics'),
(58083, 48252, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГіофізики та електроніки ім. Šž. ŠÆ Усикова ŠŠŠ України'),
(58084, 48253, 'de', 'name', 'Tumor- und Brustzentrum ZeTuP Silberturm'),
(58085, 48254, 'en', 'name', 'Seibi High School'),
(58086, 48254, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹ęˆē¾Žé«˜ē­‰å­¦ę ”'),
(58087, 48255, 'en', 'name', 'Australian Human Rights Commission'),
(58088, 48256, 'no_lang_code', 'name', 'Whitaker House'),
(58089, 48257, 'no_lang_code', 'name', 'Wireilla Scientific Publications (Australia)'),
(58090, 48258, 'en', 'name', 'American Society for Theatre Research'),
(58091, 48259, 'en', 'name', 'Health Strategy and Delivery Foundation'),
(58092, 48260, 'en', 'name', 'Akita Industrial Technology Center'),
(58093, 48260, 'ja', 'name', 'ē§‹ē”°ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(58094, 48261, 'ja', 'name', 'ä½å‹ē²¾åÆ†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(58095, 48261, 'no_lang_code', 'name', 'Sumitomo Precision Products (Canada)'),
(58096, 48262, 'en', 'name', 'Carbondale Public Library'),
(58097, 48263, 'no_lang_code', 'name', 'Cypress Semiconductor Corporation (Israel)'),
(58098, 48264, 'en', 'name', 'Farm Africa'),
(58099, 48265, 'en', 'name', 'Takarazuka University of Medical and Health Care'),
(58100, 48265, 'ja', 'name', 'å®å”šåŒ»ē™‚å¤§å­¦'),
(58101, 48266, 'es', 'name', 'Instituto de Neurociencia BiomƩdica'),
(58102, 48267, 'fr', 'name', 'SociƩtƩ FranƧaise de Cardiologie'),
(58103, 48268, 'en', 'name', 'Kanagawa Prefecture Education Center'),
(58104, 48268, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(58105, 48269, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹čæ‘ä»£ē¾Žč”“é¤Øč‘‰å±±'),
(58106, 48269, 'no_lang_code', 'name', 'Museum of Modern Art Kamakura and Hayama'),
(58107, 48270, 'en', 'name', 'ABM University College'),
(58108, 48271, 'de', 'name', 'Fraunhofer-Institut für Organische Elektronik, Elektronenstrahl- und Plasmatechnik'),
(58109, 48271, 'en', 'name', 'Fraunhofer Institute for Organic Electronics, Electron Beam and Plasma Technology'),
(58110, 48272, 'en', 'name', 'Pontifical Academy of Sciences'),
(58111, 48272, 'it', 'name', 'Pontificia accademia delle scienze'),
(58112, 48272, 'la', 'name', 'Pontificia Academia Scientiarum'),
(58113, 48273, 'no_lang_code', 'name', 'TE Connectivity (South Korea)'),
(58114, 48274, 'en', 'name', 'Minabe Senior High School'),
(58115, 48274, 'ja', 'name', 'å’Œę­Œå±±ēœŒē«‹å—éƒØé«˜ē­‰å­¦ę ”'),
(58116, 48275, 'de', 'name', 'Fraunhofer-Institut für Angewandte und Integrierte Sicherheit'),
(58117, 48275, 'en', 'name', 'Fraunhofer Institute for Applied and Integrated Security'),
(58118, 48276, 'no_lang_code', 'name', 'ThyssenKrupp (United Kingdom)'),
(58119, 48277, 'de', 'name', 'Ɩsterreichische Gesellschaft für HƤmatologie & Medizinische Onkologie'),
(58120, 48278, 'no_lang_code', 'name', 'Danone (United Kingdom)'),
(58121, 48279, 'en', 'name', 'Ashland Community and Technical College'),
(58122, 48280, 'en', 'name', 'Kansas Grain Sorghum Commission and Producers Association'),
(58123, 48281, 'no_lang_code', 'name', 'GlobalFoundries (Singapore)'),
(58124, 48282, 'de', 'name', 'Deutsche Ophthalmologische Gesellschaft'),
(58125, 48283, 'es', 'name', 'Universidad Albert Einstein'),
(58126, 48284, 'en', 'name', 'Australian Society of Anaesthetists'),
(58127, 48285, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ćƒžćƒŽ'),
(58128, 48285, 'no_lang_code', 'name', 'Shimano (Japan)'),
(58129, 48286, 'en', 'name', 'Geological Survey of Canada'),
(58130, 48286, 'fr', 'name', 'Commission gƩologique du Canada'),
(58131, 48287, 'no_lang_code', 'name', 'Abbott (United Kingdom)'),
(58132, 48288, 'no_lang_code', 'name', 'Bluegrass Advanced Materials (United States)'),
(58133, 48289, 'de', 'name', 'Fraunhofer-Institut für Zerstörungsfreie Prüfverfahren'),
(58134, 48289, 'en', 'name', 'Fraunhofer Institute for Nondestructive Testing'),
(58135, 48290, 'no_lang_code', 'name', 'Mind Matters Research (United States)'),
(58136, 48291, 'no_lang_code', 'name', 'OmniVision Technologies (China)'),
(58137, 48292, 'en', 'name', 'Scleroderma and Raynaud''s UK'),
(58138, 48293, 'en', 'name', 'Liaoning Jianzhu Vocational University'),
(58139, 48293, 'zh', 'name', 'č¾½å®äæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(58140, 48294, 'no_lang_code', 'name', 'Broadcom (Spain)'),
(58141, 48295, 'no_lang_code', 'name', 'Datapixel (Spain)'),
(58142, 48296, 'de', 'name', 'Leibniz-Zentrum Allgemeine Sprachwissenschaft'),
(58143, 48296, 'en', 'name', 'Leibniz-Centre General Linguistics'),
(58144, 48297, 'en', 'name', 'GAIA Vaccine Foundation'),
(58145, 48298, 'en', 'name', 'Ehime Prefectural Education Center'),
(58146, 48298, 'ja', 'name', 'ę„›åŖ›ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(58147, 48299, 'no_lang_code', 'name', 'Eles (Slovenia)'),
(58148, 48300, 'en', 'name', 'Changchun Children''s Hospital'),
(58149, 48300, 'zh', 'name', 'é•æę˜„åø‚å„æē«„åŒ»é™¢'),
(58150, 48301, 'no_lang_code', 'name', 'Cook Medical (United States)'),
(58151, 48302, 'en', 'name', 'Institute of Sciences of Food Production'),
(58152, 48302, 'it', 'name', 'Istituto di Scienze delle Produzioni Alimentari'),
(58153, 48303, 'no_lang_code', 'name', 'Acer (Taiwan)'),
(58154, 48303, 'zh', 'name', 'å®ē¢'),
(58155, 48304, 'en', 'name', 'Tianjin Fourth Hospital'),
(58156, 48304, 'zh', 'name', 'å¤©ę“„åø‚ē¬¬å››åŒ»é™¢'),
(58157, 48305, 'en', 'name', 'Bethany University'),
(58158, 48306, 'en', 'name', 'Nagoya Management Junior College'),
(58159, 48306, 'ja', 'name', 'åå¤å±‹ēµŒå–¶ēŸ­ęœŸå¤§å­¦'),
(58160, 48307, 'en', 'name', 'Wikimedia UK'),
(58161, 48308, 'no_lang_code', 'name', '3D Systems (Israel)'),
(58162, 48309, 'ja', 'name', 'č‹«å°ē‰§åø‚ē¾Žč”“åšē‰©é¤Ø'),
(58163, 48309, 'no_lang_code', 'name', 'Tomakomai Art Museum'),
(58164, 48310, 'en', 'name', 'St Michael’s Hospital'),
(58165, 48311, 'es', 'name', 'Consejo Estatal Del Azucar'),
(58166, 48312, 'pt', 'name', 'Instituto de SaĆŗde'),
(58167, 48313, 'en', 'name', 'Institute for Resource Analysis and Policy'),
(58168, 48314, 'fa', 'name', 'دانؓگاه جهرم'),
(58169, 48314, 'no_lang_code', 'name', 'Jahrom University'),
(58170, 48315, 'no_lang_code', 'name', 'Takeda (Germany)'),
(58171, 48316, 'en', 'name', 'Myanmar Timber Enterprise'),
(58172, 48317, 'en', 'name', 'Emirates Diplomatic Academy'),
(58173, 48318, 'ja', 'name', 'åˆ„åŗœęŗéƒØå­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(58174, 48318, 'no_lang_code', 'name', 'Beppu Mizobe Gakuen College'),
(58175, 48319, 'pt', 'name', 'Sociedade Portuguesa de Nefrologia'),
(58176, 48320, 'en', 'name', 'Essex Disabled People''s Association'),
(58177, 48321, 'ar', 'name', 'ملتقى المؤسسات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© الداعمة'),
(58178, 48321, 'en', 'name', 'Arab Foundations Forum'),
(58179, 48322, 'pt', 'name', 'Associação Nacional de Pesquisadores e Professores de História das Américas'),
(58180, 48323, 'no_lang_code', 'name', 'Engineering Mechanics Corporation of Columbus (United States)'),
(58181, 48324, 'no_lang_code', 'name', 'Integra LifeSciences (Ireland)'),
(58182, 48325, 'no_lang_code', 'name', 'Fairchild Semiconductor (United States)'),
(58183, 48326, 'en', 'name', 'Centre for Cancer Biology'),
(58184, 48327, 'en', 'name', 'Toita Women''s College'),
(58185, 48327, 'ja', 'name', 'ęˆøęæå„³å­ēŸ­ęœŸå¤§å­¦'),
(58186, 48328, 'en', 'name', 'Zhejiang Business Technology Institute'),
(58187, 48328, 'zh', 'name', 'ęµ™ę±Ÿå·„å•†čŒäøšęŠ€ęœÆå­¦é™¢'),
(58188, 48329, 'en', 'name', 'Tsuruoka Technical High School'),
(58189, 48329, 'ja', 'name', 'å±±å½¢ēœŒē«‹é¶“å²”å·„ę„­é«˜ē­‰å­¦ę ”'),
(58190, 48330, 'no_lang_code', 'name', 'Medtronic (Italy)'),
(58191, 48331, 'no_lang_code', 'name', 'Attodyne (Canada)'),
(58192, 48332, 'en', 'name', 'Aichi Prefectural Education Center'),
(58193, 48332, 'ja', 'name', 'ę„›ēŸ„ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(58194, 48333, 'en', 'name', 'Tokyo High School'),
(58195, 48333, 'ja', 'name', 'ę±äŗ¬é«˜ē­‰å­¦ę ”'),
(58196, 48334, 'ja', 'name', 'ä½å‹é‡ę©Ÿę¢°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(58197, 48334, 'no_lang_code', 'name', 'Sumitomo Heavy Industries (Japan)'),
(58198, 48335, 'ja', 'name', 'ę—„ę®ćƒ¦ćƒ‹ćƒćƒ¼ć‚µćƒ«ę Ŗå¼ä¼šē¤¾ćÆ'),
(58199, 48335, 'no_lang_code', 'name', 'Nikki-Universal (Japan)'),
(58200, 48336, 'no_lang_code', 'name', 'Amdocs (Philippines)'),
(58201, 48337, 'en', 'name', 'Fresno County Office of Education'),
(58202, 48338, 'no_lang_code', 'name', 'Schenck Process (Germany)'),
(58203, 48339, 'en', 'name', 'Charisma University'),
(58204, 48340, 'no_lang_code', 'name', 'Valeo (Japan)'),
(58205, 48341, 'en', 'name', 'Speech Pathology Australia'),
(58206, 48342, 'no_lang_code', 'name', 'HannStar Display (Taiwan)'),
(58207, 48342, 'zh', 'name', 'ē€šå®‡å½©ę™¶č‚”ä»½ęœ‰é™å…¬åø'),
(58208, 48343, 'no_lang_code', 'name', 'Element Six (United States)'),
(58209, 48344, 'en', 'name', 'Herzberg Institute of Astrophysics'),
(58210, 48345, 'en', 'name', 'Collaborative Centre for Applied Nanotechnology'),
(58211, 48346, 'en', 'name', 'Norin High School'),
(58212, 48346, 'ja', 'name', 'å±±ę¢ØēœŒē«‹č¾²ęž—é«˜ē­‰å­¦ę ”'),
(58213, 48347, 'no_lang_code', 'name', 'Airex Industries (Canada)'),
(58214, 48348, 'no_lang_code', 'name', 'Material Change (United KIngdom)'),
(58215, 48349, 'no_lang_code', 'name', 'MAAX Bath (Canada)'),
(58216, 48350, 'en', 'name', 'Seismological Society of America'),
(58217, 48351, 'en', 'name', 'Shizuoka Prefectural Central Library'),
(58218, 48351, 'ja', 'name', 'é™å²”ēœŒē«‹äø­å¤®å›³ę›øé¤Ø'),
(58219, 48352, 'no_lang_code', 'name', 'Concept Life Sciences (United Kingdom)'),
(58220, 48353, 'no_lang_code', 'name', 'VesmĆ­r (Czechia)'),
(58221, 48354, 'en', 'name', 'Tokyo Institute for Municipal Research'),
(58222, 48354, 'ja', 'name', 'åø‚å–¶ē ”ē©¶ę±äŗ¬å·„ę„­å¤§å­¦'),
(58223, 48355, 'en', 'name', 'Yamanashi Prefectural Museum of Archaeology'),
(58224, 48355, 'ja', 'name', 'å±±ę¢ØēœŒē«‹č€ƒå¤åšē‰©é¤Ø'),
(58225, 48356, 'de', 'name', 'Verkehrshaus der Schweiz'),
(58226, 48356, 'en', 'name', 'Swiss Museum of Transport'),
(58227, 48357, 'en', 'name', 'Society of Actuaries'),
(58228, 48358, 'no_lang_code', 'name', 'Oerlikon (Germany)'),
(58229, 48359, 'en', 'name', 'Ichinohe High School'),
(58230, 48359, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹äø€ęˆøé«˜ē­‰å­¦ę ”'),
(58231, 48360, 'en', 'name', 'Jiangsu Provincial Institute of Geological Survey'),
(58232, 48360, 'zh', 'name', 'ę±Ÿč‹ēœåœ°č“Øč°ƒęŸ„ē ”ē©¶é™¢'),
(58233, 48361, 'ja', 'name', 'é™å²”ēœŒē«‹å¾”ę®æå “å—é«˜ē­‰å­¦ę ”'),
(58234, 48361, 'no_lang_code', 'name', 'Shizuoka Prefectural Gotemba Minami High School'),
(58235, 48362, 'en', 'name', 'Riverside Hospital of Guangxi Zhuang Autonomous Region'),
(58236, 48362, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗę±Ÿę»ØåŒ»é™¢'),
(58237, 48363, 'da', 'name', 'Nyreforeningen'),
(58238, 48364, 'bn', 'name', 'বাংলাদেশ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(58239, 48364, 'en', 'name', 'Bangladesh University'),
(58240, 48365, 'no_lang_code', 'name', 'Broadcom (Singapore)'),
(58241, 48366, 'en', 'name', 'East Central Wisconsin Regional Planning Commission'),
(58242, 48367, 'en', 'name', 'Montgomery County Memorial Library System'),
(58243, 48368, 'no_lang_code', 'name', 'Dover (Canada)'),
(58244, 48369, 'en', 'name', 'National Institute of Urban Affairs'),
(58245, 48370, 'en', 'name', 'Kanagawa Prefectural Zushi High School'),
(58246, 48370, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹é€—å­é«˜ē­‰å­¦ę ”'),
(58247, 48371, 'en', 'name', 'Saga Prefectural Education Center'),
(58248, 48371, 'ja', 'name', 'ä½č³€ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(58249, 48372, 'en', 'name', 'Eye Bank Association of America'),
(58250, 48373, 'no_lang_code', 'name', 'BioAxis DNA Research Centre (India)'),
(58251, 48374, 'ja', 'name', 'å¤§é˜Ŗäæ”ę„›å„³å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(58252, 48374, 'no_lang_code', 'name', 'Osaka Shin-ai College'),
(58253, 48375, 'en', 'name', 'AllAfrica Foundation'),
(58254, 48376, 'de', 'name', 'UniversitƤt der Vereinten Nationen'),
(58255, 48376, 'en', 'name', 'United Nations University'),
(58256, 48377, 'de', 'name', 'Institut für Medien- und Kommunikationspolitik'),
(58257, 48378, 'en', 'name', 'Guizhou Provincial Meteorological Bureau'),
(58258, 48378, 'zh', 'name', 'č“µå·žę°”č±”åœØēŗæ'),
(58259, 48379, 'no_lang_code', 'name', 'Imbio (United States)'),
(58260, 48380, 'no_lang_code', 'name', 'Yahoo (United States)'),
(58261, 48381, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„Ł…Ų³ŲŖŲ“ŁŁŠŲ§ŲŖ ŁˆŲ§Ł„Ł…Ų¹Ų§Ł‡ŲÆ Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ…ŁŠŲ©'),
(58262, 48381, 'en', 'name', 'General Organization For Teaching Hospitals and Institutes'),
(58263, 48382, 'en', 'name', 'Fukushima Prefectural Aizu Technical High School'),
(58264, 48382, 'ja', 'name', 'ē¦å³¶ēœŒē«‹ä¼šę“„å·„ę„­é«˜ē­‰å­¦ę ”'),
(58265, 48383, 'es', 'name', 'Universidad PolitƩcnica de El Salvador'),
(58266, 48384, 'en', 'name', 'Aman Foundation'),
(58267, 48385, 'no_lang_code', 'name', 'Applied Academics (United States)'),
(58268, 48386, 'en', 'name', 'Institute for Advanced Journalism Studies'),
(58269, 48387, 'no_lang_code', 'name', 'Lightwave Photonics (United States)'),
(58270, 48388, 'en', 'name', 'National Institute of Technology, Oyama College'),
(58271, 48388, 'ja', 'name', 'å°å±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(58272, 48389, 'en', 'name', 'Abramson Center for Jewish Life'),
(58273, 48390, 'en', 'name', 'Insurance Claims Auditing and Professional Services'),
(58274, 48391, 'en', 'name', 'Kanagawa prefectural Kanagawa Technical High School'),
(58275, 48391, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ē„žå„ˆå·å·„ę„­é«˜ē­‰å­¦ę ”'),
(58276, 48392, 'en', 'name', 'Japan Society of Chemotherapy'),
(58277, 48392, 'ja', 'name', 'åŒ–å­¦ē™‚ę³•å­¦ä¼š'),
(58278, 48393, 'no_lang_code', 'name', 'CNH Industrial (United States)'),
(58279, 48394, 'en', 'name', 'Technological University Kyaing Tong'),
(58280, 48394, 'my', 'name', 'į€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ(ကျိုင်းတုံ)'),
(58281, 48395, 'no_lang_code', 'name', 'Ping (United States)'),
(58282, 48396, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŲ±ŁŠŁ…ŁŠ'),
(58283, 48396, 'en', 'name', 'Al-Buraimi University College'),
(58284, 48397, 'no_lang_code', 'name', 'Ipsen (Ireland)'),
(58285, 48398, 'pt', 'name', 'Associação Fundo de Incentivo à Pesquisa'),
(58286, 48399, 'mg', 'name', 'Madagasikara Voakajy'),
(58287, 48400, 'no_lang_code', 'name', 'Wang NMR (United States)'),
(58288, 48401, 'en', 'name', 'Global Business School Network'),
(58289, 48402, 'en', 'name', 'Rotary Club of Emerald City'),
(58290, 48403, 'no_lang_code', 'name', 'Prodevelop (Spain)'),
(58291, 48404, 'en', 'name', 'Okayama Prefectural Police'),
(58292, 48404, 'ja', 'name', '岔山県警察'),
(58293, 48405, 'fr', 'name', 'RƩseau MARP'),
(58294, 48406, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ćƒ—ć‚³ćƒ³'),
(58295, 48406, 'no_lang_code', 'name', 'Capcom (Japan)'),
(58296, 48407, 'no_lang_code', 'name', 'SiILion (United states)'),
(58297, 48408, 'en', 'name', 'Catholic Health Association of India'),
(58298, 48409, 'no_lang_code', 'name', 'IHI Corporation (United States)'),
(58299, 48410, 'en', 'name', 'Entry Exit Inspection and Quarantine Bureau'),
(58300, 48410, 'zh', 'name', 'å¹æäøœå‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(58301, 48411, 'en', 'name', 'Gunma Prefectural Board of Education'),
(58302, 48411, 'ja', 'name', 'ē¾¤é¦¬ēœŒę•™č‚²å§”å“”ä¼šćƒ›'),
(58303, 48412, 'en', 'name', 'The Kagawa Museum'),
(58304, 48412, 'ja', 'name', 'é¦™å·ēœŒē«‹ćƒŸćƒ„ćƒ¼ć‚øć‚¢ćƒ '),
(58305, 48413, 'no_lang_code', 'name', 'InnoCit (United States)'),
(58306, 48414, 'en', 'name', 'American Psychoanalytic Association'),
(58307, 48415, 'no_lang_code', 'name', 'Voith (Germany)'),
(58308, 48416, 'no_lang_code', 'name', 'Stillwater (Canada)'),
(58309, 48417, 'en', 'name', 'Obstetric Anaesthetists'' Association'),
(58310, 48418, 'en', 'name', 'Nnamdi Azikiwe University Teaching Hospital'),
(58311, 48419, 'no_lang_code', 'name', 'Inventec (China)'),
(58312, 48419, 'zh', 'name', '英ꄭ達'),
(58313, 48420, 'en', 'name', 'Inland Northwest Community Foundation'),
(58314, 48421, 'no_lang_code', 'name', 'JTEKT (United States)'),
(58315, 48422, 'en', 'name', 'The Interdisciplinary Centre for the Development of Ocean Mapping'),
(58316, 48422, 'fr', 'name', 'Centre Interdisciplinaire de DƩveloppement en Cartographie des OcƩans'),
(58317, 48423, 'no_lang_code', 'name', 'Aero Corporation (United States)'),
(58318, 48424, 'en', 'name', 'Great Lakes Aquarium'),
(58319, 48425, 'es', 'name', 'Universidad Braulio Carrillo'),
(58320, 48426, 'no_lang_code', 'name', 'AccessTR'),
(58321, 48427, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å®‰č„æč£½ä½œę‰€'),
(58322, 48427, 'no_lang_code', 'name', 'Anzai (Japan)'),
(58323, 48428, 'pt', 'name', 'Fundação de Estudos e Pesquisas AquÔticas'),
(58324, 48429, 'en', 'name', 'Gaelic Athletic Association'),
(58325, 48429, 'ga', 'name', 'Cumann LĆŗthchleas Gael'),
(58326, 48430, 'es', 'name', 'Instituto Nicaragüense de Estudios Territoriales'),
(58327, 48431, 'no_lang_code', 'name', 'Bose (United States)'),
(58328, 48432, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الاتحاد الخاصة'),
(58329, 48432, 'en', 'name', 'Ittihad Private University'),
(58330, 48433, 'ja', 'name', 'ē§‹č‰å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(58331, 48433, 'no_lang_code', 'name', 'Akikusa Gakuen Junior College'),
(58332, 48434, 'en', 'name', 'Hartford Public Library'),
(58333, 48435, 'no_lang_code', 'name', 'Veolia (Australia)'),
(58334, 48436, 'es', 'name', 'Universidad MotolinĆ­a del Pedregal'),
(58335, 48437, 'no_lang_code', 'name', 'CIVIDEC Instrumentation (Austria)'),
(58336, 48438, 'en', 'name', 'Geospatial Information Authority of Japan'),
(58337, 48438, 'ja', 'name', 'å›½åœŸåœ°ē†é™¢'),
(58338, 48439, 'no_lang_code', 'name', 'Stratasys (Israel)'),
(58339, 48440, 'de', 'name', 'IOT Labs'),
(58340, 48441, 'no_lang_code', 'name', 'Chelyabinskiy Gosudarstvennyy Institut Lazernoy Khirurgii'),
(58341, 48441, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лазерной Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(58342, 48442, 'no_lang_code', 'name', 'Matamec Explorations (Canada)'),
(58343, 48443, 'no_lang_code', 'name', 'Quadriga Biosciences (United States)'),
(58344, 48444, 'ja', 'name', 'ć‚»ć‚¤ć‚³ćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(58345, 48444, 'no_lang_code', 'name', 'Seiko Holdings (Japan)'),
(58346, 48445, 'en', 'name', 'Kokusai Junior College'),
(58347, 48445, 'ja', 'name', 'å›½éš›ēŸ­ęœŸå¤§å­¦'),
(58348, 48446, 'no_lang_code', 'name', 'Alpha and Omega Semiconductor (Bermuda)'),
(58349, 48447, 'en', 'name', 'Chartered Institute of Library and Information Professionals'),
(58350, 48448, 'no_lang_code', 'name', 'Kaiam Corporation (United Kingdom)'),
(58351, 48449, 'en', 'name', 'Health and Global Policy Institute'),
(58352, 48450, 'en', 'name', 'Chiyoda-ku Board of Education'),
(58353, 48451, 'de', 'name', 'B.A.T Cigarettenfabriken'),
(58354, 48451, 'no_lang_code', 'name', 'British American Tobacco (Germany)'),
(58355, 48452, 'en', 'name', 'Dryden Road Clinic'),
(58356, 48453, 'no_lang_code', 'name', 'Sosei Group (Japan)'),
(58357, 48454, 'en', 'name', 'Gifu Prefectural Research Institute for Forests'),
(58358, 48454, 'ja', 'name', 'å²é˜œēœŒę£®ęž—ē ”ē©¶ę‰€'),
(58359, 48455, 'en', 'name', 'Shanghai Institute of Landscape Gardening'),
(58360, 48455, 'zh', 'name', 'äøŠęµ·åø‚å›­ęž—ē§‘å­¦č§„åˆ’ē ”ē©¶é™¢'),
(58361, 48456, 'en', 'name', 'Center for Speech Pathology and Neurorehabilitation'),
(58362, 48456, 'ru', 'name', 'Центр паталогии речи Šø нейрореабилитации. Разработка сайта'),
(58363, 48457, 'en', 'name', 'Turin Polytechnic University'),
(58364, 48457, 'uz', 'name', 'Š¢ŃƒŃ€ŠøŠ½ŃŠŗŠøŠ¹ политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(58365, 48458, 'fr', 'name', 'Laboratoire de Cristallographie et Sciences des MatƩriaux'),
(58366, 48459, 'no_lang_code', 'name', 'Porto Digital (Brazil)'),
(58367, 48460, 'ja', 'name', 'ć‚¤ćƒ“ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(58368, 48460, 'no_lang_code', 'name', 'Ibiden (Japan)'),
(58369, 48461, 'no_lang_code', 'name', 'MineSense Technologies (Canada)'),
(58370, 48462, 'pt', 'name', 'Sociedade Brasileira de Cardiologia'),
(58371, 48463, 'de', 'name', 'Centre Marc Bloch'),
(58372, 48464, 'en', 'name', 'Oklahoma Biological Survey'),
(58373, 48465, 'no_lang_code', 'name', 'Arris (United States)'),
(58374, 48466, 'no_lang_code', 'name', 'Nexans (United Kingdom)'),
(58375, 48467, 'en', 'name', 'Tokyo Metropolitan Police Department'),
(58376, 48467, 'ja', 'name', '警視庁'),
(58377, 48468, 'en', 'name', 'Queensland Department of Education'),
(58378, 48469, 'no_lang_code', 'name', 'Vivekananda Parvatiya Krishi Anusandhan Sansthan'),
(58379, 48470, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do Acre, Instituto Federal do Acre'),
(58380, 48471, 'en', 'name', 'Saitama Board of Education'),
(58381, 48471, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒę•™č‚²å§”å“”ä¼š'),
(58382, 48472, 'en', 'name', 'Oral Facial Surgery Institution'),
(58383, 48473, 'en', 'name', 'Institute for Sustainable Development'),
(58384, 48474, 'en', 'name', 'American Association of University Professors'),
(58385, 48475, 'no_lang_code', 'name', 'Mitsubishi Heavy Industries (Germany)'),
(58386, 48476, 'en', 'name', 'Miyagi Advanced Dental Hygienist College'),
(58387, 48476, 'ja', 'name', 'å®®åŸŽé«˜ē­‰ę­Æē§‘č”›ē”Ÿå£«å­¦é™¢'),
(58388, 48477, 'no_lang_code', 'name', 'Northrop Grumman (Germany)'),
(58389, 48478, 'en', 'name', 'International Christian University'),
(58390, 48478, 'es', 'name', 'Universidad Cristiana Internacional'),
(58391, 48479, 'no_lang_code', 'name', 'RG Biopharma (United States)'),
(58392, 48480, 'en', 'name', 'GlobalGiving'),
(58393, 48481, 'en', 'name', 'Tokushima Municipal High School'),
(58394, 48481, 'ja', 'name', 'å¾³å³¶åø‚ē«‹é«˜ē­‰å­¦ę ”'),
(58395, 48482, 'en', 'name', 'Fukuoka Prefecture Education Center'),
(58396, 48482, 'ja', 'name', 'ē¦å²”ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(58397, 48483, 'no_lang_code', 'name', 'Zodiac Aerospace (Germany)'),
(58398, 48484, 'de', 'name', 'Schwarzwald-Baar Klinikum'),
(58399, 48485, 'en', 'name', 'Miyagi Prefecture Furukawa Technical High School'),
(58400, 48485, 'ja', 'name', 'å®®åŸŽēœŒå¤å·å·„ę„­é«˜ē­‰å­¦ę ”'),
(58401, 48486, 'no_lang_code', 'name', 'Gazprom (Germany)'),
(58402, 48487, 'en', 'name', 'Davenport Public Library'),
(58403, 48488, 'en', 'name', 'National Institute for Land and Infrastructure Management'),
(58404, 48488, 'ja', 'name', 'å›½åœŸäŗ¤é€šēœå›½åœŸęŠ€č”“ę”æē­–ē·åˆē ”ē©¶ę‰€'),
(58405, 48489, 'en', 'name', 'InterAmerican Heart Foundation'),
(58406, 48490, 'en', 'name', 'Islamic Azad University of Malard'),
(58407, 48490, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد ملارد'),
(58408, 48491, 'no_lang_code', 'name', 'EchoStar (United States)'),
(58409, 48492, 'en', 'name', 'Choju Medical Institute'),
(58410, 48492, 'ja', 'name', 'é•·åÆæåŒ»å­¦ē ”ē©¶ę‰€'),
(58411, 48493, 'pt', 'name', 'Instituto Nacional de Investigação Pesqueira'),
(58412, 48494, 'en', 'name', 'Waterloo Institute for Disaster Management'),
(58413, 48495, 'no_lang_code', 'name', 'Winbond (Taiwan)'),
(58414, 48495, 'zh', 'name', 'čÆé‚¦é›»å­å…¬åø'),
(58415, 48496, 'en', 'name', 'Doshisha Kaori Junior and Senior High School'),
(58416, 48497, 'en', 'name', 'Research, Design and Technology Institute Cable'),
(58417, 48497, 'ru', 'name', 'Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ Šø технологический ŠŗŠ°Š±ŠµŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(58418, 48498, 'no_lang_code', 'name', 'Desma (Germany)'),
(58419, 48499, 'fr', 'name', 'Laboratoire de Neurobiologie Cellulaire et MolƩculaire'),
(58420, 48500, 'ja', 'name', 'å„ē”Ÿē—…é™¢'),
(58421, 48500, 'no_lang_code', 'name', 'Kensei Hospital'),
(58422, 48501, 'en', 'name', 'International Institute for Digital Humanities'),
(58423, 48501, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ äŗŗę–‡ęƒ…å ±å­¦ē ”ē©¶ę‰€'),
(58424, 48502, 'en', 'name', 'Gifu City Museum of History'),
(58425, 48502, 'ja', 'name', 'å²é˜œåø‚ę­“å²åšē‰©é¤Ø'),
(58426, 48503, 'no_lang_code', 'name', 'Free Form Fibers (United States)'),
(58427, 48504, 'no_lang_code', 'name', 'LumaMed (United States)'),
(58428, 48505, 'no_lang_code', 'name', 'KRA (United States)'),
(58429, 48506, 'en', 'name', 'University School of Milwaukee'),
(58430, 48507, 'en', 'name', 'ZheJiang Institute For Food and Drug Control'),
(58431, 48507, 'zh', 'name', 'ęµ™ę±Ÿēœé£Ÿå“čÆå“ę£€éŖŒę‰€'),
(58432, 48508, 'no_lang_code', 'name', 'Giatec Scientific (Canada)'),
(58433, 48509, 'no_lang_code', 'name', 'OSRAM (United States)'),
(58434, 48510, 'de', 'name', 'Fraunhofer-Institut für Produktionsanlagen und Konstruktionstechnik'),
(58435, 48510, 'en', 'name', 'Fraunhofer Institute for Production Systems and Design Technology'),
(58436, 48511, 'en', 'name', 'Research Institute for Bioscience and Biotechnology'),
(58437, 48512, 'en', 'name', 'Ikuei Junior College'),
(58438, 48512, 'ja', 'name', 'č‚²č‹±ēŸ­ęœŸå¤§å­¦'),
(58439, 48513, 'no_lang_code', 'name', 'Inland Technologies (Canada)'),
(58440, 48514, 'en', 'name', 'Southwestern Christian College'),
(58441, 48515, 'en', 'name', 'Wakayama Shin-Ai Women''s Junior College'),
(58442, 48515, 'ja', 'name', 'å’Œę­Œå±±äæ”ę„›å„³å­ēŸ­ęœŸå¤§å­¦'),
(58443, 48516, 'en', 'name', 'Asia Center for Air Pollution Research'),
(58444, 48516, 'ja', 'name', 'ć‚¢ć‚øć‚¢å¤§ę°—ę±šęŸ“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(58445, 48517, 'en', 'name', 'Fukui Prefectural Museum of Cultural History'),
(58446, 48517, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(58447, 48518, 'no_lang_code', 'name', 'Woodward (Germany)'),
(58448, 48519, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do Amazonas, Instituto Federal do Amazonas'),
(58449, 48520, 'en', 'name', 'United States Chamber of Commerce'),
(58450, 48521, 'no_lang_code', 'name', 'Saab (Switzerland)'),
(58451, 48522, 'fr', 'name', 'Centre d''Ɖtude et de Recherche de Djibouti'),
(58452, 48523, 'no_lang_code', 'name', 'Salgomed (United States)'),
(58453, 48524, 'en', 'name', 'Fujian Provincial Administration of Press, Publication, Radio, Film and Television'),
(58454, 48524, 'zh', 'name', 'ē¦å»ŗēœę–°é—»å‡ŗē‰ˆå¹æē”µ'),
(58455, 48525, 'cs', 'name', 'Ministerstvo pro místní rozvoj České republiky'),
(58456, 48525, 'en', 'name', 'Ministry of Regional Development'),
(58457, 48526, 'en', 'name', 'Nagasaki Junior College'),
(58458, 48526, 'ja', 'name', 'é•·å“ŽēŸ­ęœŸå¤§å­¦'),
(58459, 48527, 'en', 'name', 'Innovative Medicines for Tuberculosis Foundation');
INSERT INTO `ror_settings` VALUES
(58460, 48528, 'en', 'name', 'Wichita Falls Independent School District'),
(58461, 48529, 'no_lang_code', 'name', 'Legrand (Australia)'),
(58462, 48530, 'en', 'name', 'Fukuoka Technical High School'),
(58463, 48530, 'ja', 'name', 'ē¦å²”ēœŒē«‹ē¦å²”å·„ę„­é«˜ē­‰å­¦ę ”'),
(58464, 48531, 'pt', 'name', 'Centro Internacional de Semiótica e Comunicação'),
(58465, 48532, 'no_lang_code', 'name', 'MetaOptima Technology (Canada)'),
(58466, 48533, 'en', 'name', 'Thanlyin Technological University'),
(58467, 48533, 'my', 'name', 'į€”į€Šį€ŗį€øį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ (į€žį€”į€ŗį€œį€»į€„į€ŗ)'),
(58468, 48534, 'en', 'name', 'Shinjuku Ward Shinjuku Historical Museum'),
(58469, 48534, 'ja', 'name', 'ę–°å®æę­“å²åšē‰©é¤Ø'),
(58470, 48535, 'en', 'name', 'Osaka College of Social Health and Welfare'),
(58471, 48535, 'ja', 'name', 'å¤§é˜Ŗå„åŗ·ē¦ē„‰ēŸ­ęœŸå¤§å­¦'),
(58472, 48536, 'no_lang_code', 'name', 'Robert Bosch (Taiwan)'),
(58473, 48537, 'nl', 'name', 'Wikimedia Nederland'),
(58474, 48538, 'no_lang_code', 'name', 'STATS ChipPAC (Singapore)'),
(58475, 48539, 'en', 'name', 'King County Library System Foundation'),
(58476, 48540, 'no_lang_code', 'name', 'Colt International (United States)'),
(58477, 48541, 'en', 'name', 'ZheJiang Economic and Trade Polytechnic'),
(58478, 48541, 'zh', 'name', 'ęµ™ę±Ÿē»č“øčŒäøšęŠ€ęœÆå­¦é™¢'),
(58479, 48542, 'en', 'name', 'National Institute of Technology, Tokuyama College'),
(58480, 48542, 'ja', 'name', 'å¾³å±±å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(58481, 48543, 'es', 'name', 'Instituto Mexicano de TecnologĆ­a del Agua'),
(58482, 48544, 'it', 'name', 'Associazione Italiana Arbitri'),
(58483, 48545, 'no_lang_code', 'name', 'RadiaSoft (United States)'),
(58484, 48546, 'en', 'name', 'Japan Automobile Research Institute'),
(58485, 48546, 'ja', 'name', 'ę—„ęœ¬č‡Ŗå‹•č»Šē ”ē©¶ę‰€'),
(58486, 48547, 'no_lang_code', 'name', 'Alere (Germany)'),
(58487, 48548, 'ar', 'name', 'الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(58488, 48548, 'en', 'name', 'National University'),
(58489, 48549, 'en', 'name', 'Institute for Community Inclusion'),
(58490, 48550, 'no_lang_code', 'name', 'AmyCard (Russia)'),
(58491, 48551, 'no_lang_code', 'name', 'FIH Mobile (China)'),
(58492, 48552, 'no_lang_code', 'name', 'Proprs (United Kingdom)'),
(58493, 48553, 'en', 'name', 'Museum of Modern Art'),
(58494, 48553, 'ja', 'name', 'ę»‹č³€ēœŒē«‹čæ‘ä»£ē¾Žč”“é¤Ø'),
(58495, 48554, 'no_lang_code', 'name', 'Saratoga Energy Research Partners (United States)'),
(58496, 48555, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ų“ŁƒŲ§Ų© للبحث'),
(58497, 48555, 'en', 'name', 'Almishkat Centre for Research'),
(58498, 48556, 'no_lang_code', 'name', 'TechnoRem (Canada)'),
(58499, 48557, 'en', 'name', 'Warnborough College'),
(58500, 48558, 'en', 'name', 'Ballsbridge University'),
(58501, 48559, 'en', 'name', 'Broome County Health Department'),
(58502, 48560, 'en', 'name', 'International Prague University'),
(58503, 48561, 'en', 'name', 'Ventura County Transportation Commission'),
(58504, 48562, 'en', 'name', 'Civil Engineering Research Institute for Cold Region'),
(58505, 48562, 'ja', 'name', 'åÆ’åœ°åœŸęœØē ”ē©¶ę‰€'),
(58506, 48563, 'en', 'name', 'Christian County Public Schools'),
(58507, 48564, 'no_lang_code', 'name', 'Umano Medical (Canada)'),
(58508, 48565, 'en', 'name', 'Wildlife Conservation Society Laos'),
(58509, 48566, 'en', 'name', 'Board of Education Mino Education Office'),
(58510, 48567, 'no_lang_code', 'name', 'CNH Industrial (Italy)'),
(58511, 48568, 'en', 'name', 'Okinaka Memorial Adult Disease Research Institute'),
(58512, 48568, 'ja', 'name', 'å†²äø­čØ˜åæµęˆäŗŗē—…ē ”ē©¶ę‰€'),
(58513, 48569, 'en', 'name', 'Jinhua Polytechnic'),
(58514, 48569, 'zh', 'name', 'é‡‘åŽčŒäøšęŠ€ęœÆå­¦é™¢'),
(58515, 48570, 'en', 'name', 'Michigan Virtual University'),
(58516, 48571, 'no_lang_code', 'name', 'Sensient Technologies (United States)'),
(58517, 48572, 'no_lang_code', 'name', 'ChemCentre'),
(58518, 48573, 'no_lang_code', 'name', 'First Data (United States)'),
(58519, 48574, 'no_lang_code', 'name', 'Rockwell Automation (Singapore)'),
(58520, 48575, 'fr', 'name', 'UniversitĆ© Ɖpiscopale d''Haiti'),
(58521, 48576, 'en', 'name', 'National Assembly of Zambia'),
(58522, 48577, 'no_lang_code', 'name', 'Solid Power (United States)'),
(58523, 48578, 'es', 'name', 'Centro Cooperativista Uruguayo'),
(58524, 48579, 'es', 'name', 'Universidad del PacĆ­fico de Chiapas'),
(58525, 48580, 'en', 'name', 'Japan External Trade Organization'),
(58526, 48580, 'ja', 'name', 'ę—„ęœ¬č²æę˜“ęŒÆčˆˆę©Ÿę§‹'),
(58527, 48581, 'no_lang_code', 'name', 'Brainport (Netherlands)'),
(58528, 48582, 'en', 'name', 'Sendai Municipal Sendai Commercial High School'),
(58529, 48582, 'ja', 'name', 'ä»™å°å•†ę„­é«˜ē­‰å­¦ę ”'),
(58530, 48583, 'no_lang_code', 'name', 'Paion (United States)'),
(58531, 48584, 'en', 'name', 'Cambodia Development Resource Institute'),
(58532, 48585, 'en', 'name', 'Filson Historical Society'),
(58533, 48586, 'en', 'name', 'Takayanagi Dental Clinic'),
(58534, 48586, 'ja', 'name', 'é«˜ęŸ³ę­Æē§‘ē—…é™¢'),
(58535, 48587, 'no_lang_code', 'name', 'Doosan Machine Tools (United States)'),
(58536, 48588, 'no_lang_code', 'name', 'Salzgitter Group (Singapore)'),
(58537, 48589, 'en', 'name', 'Tokyo Metropolitan Komaba High School'),
(58538, 48589, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹é§’å “é«˜ē­‰å­¦ę ”'),
(58539, 48590, 'en', 'name', 'Academy of Sciences and Arts of Bosnia and Herzegovina'),
(58540, 48590, 'hr', 'name', 'Akademija nauka i umjetnosti Bosne i Hercegovine'),
(58541, 48590, 'sr', 'name', 'АкаГемија наука Šø ŃƒŠ¼Ń˜ŠµŃ‚Š½Š¾ŃŃ‚Šø Босне Šø Єерцеговине'),
(58542, 48591, 'no_lang_code', 'name', 'Fortive (United States)'),
(58543, 48592, 'en', 'name', 'American Association for Thoracic Surgery'),
(58544, 48593, 'en', 'name', 'Fukushima Medical University Hospital'),
(58545, 48593, 'ja', 'name', 'ē¦å³¶ēœŒē«‹åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(58546, 48594, 'ja', 'name', 'é¹æå³¶å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(58547, 48594, 'no_lang_code', 'name', 'Kajima Corporation (Japan)'),
(58548, 48595, 'no_lang_code', 'name', 'Forge Nano (United States)'),
(58549, 48596, 'en', 'name', 'Spinal Cord Injury Association'),
(58550, 48597, 'no_lang_code', 'name', 'Utsunomiya Museum of Art'),
(58551, 48598, 'ja', 'name', 'ēŽ‹å­ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(58552, 48598, 'no_lang_code', 'name', 'Oji Holdings (Japan)'),
(58553, 48599, 'en', 'name', 'Plateau Medical Center'),
(58554, 48600, 'ja', 'name', 'å§«č·Æę—„ćƒŽęœ¬ēŸ­ęœŸå¤§å­¦'),
(58555, 48600, 'no_lang_code', 'name', 'Himeji Hinomoto College'),
(58556, 48601, 'en', 'name', 'Sydney Olympic Park Authority'),
(58557, 48602, 'en', 'name', 'Accounting and Finance Association of Australia and New Zealand'),
(58558, 48603, 'en', 'name', 'California Library Association'),
(58559, 48604, 'en', 'name', 'Zhejiang Provincial Health Information Center'),
(58560, 48604, 'zh', 'name', 'ęµ™ę±Ÿēœå«ē”Ÿäæ”ęÆäø­åæƒ'),
(58561, 48605, 'no_lang_code', 'name', 'Krüger (Germany)'),
(58562, 48606, 'en', 'name', 'Patuxent Partnership'),
(58563, 48607, 'en', 'name', 'Institute of Biochemical Physics NM Emanuel'),
(58564, 48607, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимической физики Š ŠŠ'),
(58565, 48608, 'no_lang_code', 'name', 'Ceracomp (South Korea)'),
(58566, 48609, 'en', 'name', 'Independence Public Library'),
(58567, 48610, 'en', 'name', 'Idaho Business for Education'),
(58568, 48611, 'sv', 'name', 'Svenska JƤgarefƶrbundet'),
(58569, 48612, 'en', 'name', 'Iwate Agricultural Junior College'),
(58570, 48612, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹č¾²ę„­å¤§å­¦ę ”'),
(58571, 48613, 'en', 'name', 'Lackland Independent School District'),
(58572, 48614, 'en', 'name', 'HJF Medical Research International'),
(58573, 48615, 'en', 'name', 'Centre for Social Sciences'),
(58574, 48615, 'hu', 'name', 'TÔrsadalomtudomÔnyi Kutatóközpont'),
(58575, 48616, 'en', 'name', 'Saitama Prefectural Museum of Natural History'),
(58576, 48616, 'ja', 'name', 'č‡Ŗē„¶å²ć®åŸ¼ēŽ‰ēœŒē«‹ē¾Žč”“é¤Ø'),
(58577, 48617, 'en', 'name', 'Hakuho Women''s College'),
(58578, 48617, 'ja', 'name', 'ē™½é³³å„³å­ēŸ­ęœŸå¤§å­¦'),
(58579, 48618, 'no_lang_code', 'name', 'TetraVue (United States)'),
(58580, 48619, 'en', 'name', 'Hearing, Speech & Deaf Center'),
(58581, 48620, 'en', 'name', 'Acoustical Society of America'),
(58582, 48621, 'it', 'name', 'Istituto di Fotonica e Nanotecnologie'),
(58583, 48622, 'en', 'name', 'Fujian Institute of Subtropical Botany'),
(58584, 48622, 'zh', 'name', 'ē¦å»ŗēœäŗšēƒ­åø¦ę¤ē‰©ē ”ē©¶ę‰€'),
(58585, 48623, 'en', 'name', 'Access Computer College'),
(58586, 48624, 'no_lang_code', 'name', 'Distributed Infinity (United States)'),
(58587, 48625, 'no_lang_code', 'name', 'Agile RF (United States)'),
(58588, 48626, 'no_lang_code', 'name', 'Durham Foods (United Kingdom)'),
(58589, 48627, 'no_lang_code', 'name', 'Danfoss (United States)'),
(58590, 48628, 'no_lang_code', 'name', 'Intuit (United States)'),
(58591, 48629, 'no_lang_code', 'name', 'Bausch Health (Germany)'),
(58592, 48630, 'no_lang_code', 'name', 'ImmunoChemistry Technologies (United States)'),
(58593, 48631, 'no_lang_code', 'name', 'AbbVie (Bermuda)'),
(58594, 48632, 'es', 'name', 'Instituto Tecnológico de Cerro Azul'),
(58595, 48633, 'en', 'name', 'Chongqing Academy of Chinese Materia Medica'),
(58596, 48633, 'zh', 'name', 'é‡åŗ†åø‚äø­čÆē ”ē©¶é™¢'),
(58597, 48634, 'en', 'name', 'Nakanihon Automotive College'),
(58598, 48634, 'ja', 'name', 'äø­ę—„ęœ¬č‡Ŗå‹•č»ŠēŸ­ęœŸå¤§å­¦'),
(58599, 48635, 'en', 'name', 'Baltic Development Forum'),
(58600, 48636, 'en', 'name', 'Velindre Cancer Centre'),
(58601, 48637, 'ja', 'name', 'Hoyaę Ŗå¼ä¼šē¤¾'),
(58602, 48637, 'no_lang_code', 'name', 'Hoya (Japan)'),
(58603, 48638, 'no_lang_code', 'name', 'American BioOptics (United States)'),
(58604, 48639, 'en', 'name', 'Miyagi Seishin Junior College'),
(58605, 48639, 'ja', 'name', 'å®®åŸŽčŖ ēœŸēŸ­ęœŸå¤§å­¦'),
(58606, 48640, 'en', 'name', 'Ministry of Culture, ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на ŠŗŃƒŠ»Ń‚ŃƒŃ€Š°Ń‚Š°'),
(58607, 48641, 'no_lang_code', 'name', 'Alacris (Germany)'),
(58608, 48642, 'no_lang_code', 'name', 'Dow Chemical (Brasil)'),
(58609, 48643, 'fr', 'name', 'Centre de GƩomatique du QuƩbec'),
(58610, 48644, 'en', 'name', 'Osaka Municipal Museum of Oriental Ceramics'),
(58611, 48645, 'ar', 'name', 'Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© لأمراض وجراحة الجلد'),
(58612, 48645, 'en', 'name', 'Saudi Society of Dermatology and Dermatologic Surgery'),
(58613, 48646, 'no_lang_code', 'name', 'Multivariate Software (United States)'),
(58614, 48647, 'en', 'name', 'Ibaraki Prefectural Museum of History'),
(58615, 48647, 'ja', 'name', 'ćƒŠćƒćƒ„ćƒ©ćƒ«čŒØåŸŽēœŒē«‹ę­“å²é¤Ø'),
(58616, 48648, 'cy', 'name', 'GIG Cymru'),
(58617, 48648, 'en', 'name', 'National Health Service Wales'),
(58618, 48649, 'ja', 'name', 'ęØŖé ˆč³€åø‚č‡Ŗē„¶ćƒ»äŗŗę–‡åšē‰©é¤Ø'),
(58619, 48649, 'no_lang_code', 'name', 'Yokosuka City Museum'),
(58620, 48650, 'en', 'name', 'Eastern Gateway Community College'),
(58621, 48651, 'en', 'name', 'Memphis Library Foundation'),
(58622, 48652, 'en', 'name', 'British Geological Survey'),
(58623, 48653, 'en', 'name', 'Research Institutue of Evolutionary Biology'),
(58624, 48653, 'ja', 'name', 'é€²åŒ–ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(58625, 48654, 'no_lang_code', 'name', 'AkzoNobel (Germany)'),
(58626, 48655, 'en', 'name', 'Pancreatic Cancer UK'),
(58627, 48656, 'en', 'name', 'DAV University'),
(58628, 48657, 'en', 'name', 'Development Bank of Japan'),
(58629, 48657, 'ja', 'name', 'ę—„ęœ¬ę”æē­–ęŠ•č³‡éŠ€č”Œ'),
(58630, 48658, 'en', 'name', 'Watauga County Office of Economic Development'),
(58631, 48659, 'no_lang_code', 'name', 'Cimetrix Solutions (Canada)'),
(58632, 48660, 'en', 'name', 'Sparta Area School District'),
(58633, 48661, 'no_lang_code', 'name', 'Luye Pharma (China)'),
(58634, 48661, 'zh', 'name', 'ē»æå¶åˆ¶čÆ'),
(58635, 48662, 'en', 'name', 'North Central Educational Service District'),
(58636, 48663, 'en', 'name', 'Miyagi Prefectural visual support school'),
(58637, 48663, 'ja', 'name', 'å®®åŸŽēœŒē«‹č¦–č¦šę”Æę“å­¦ę ”'),
(58638, 48664, 'en', 'name', 'Saitama Cultural Deposits Research Corporation'),
(58639, 48664, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ åŸ¼ēŽ‰ēœŒåŸ‹č”µę–‡åŒ–č²”čŖæęŸ»äŗ‹ę„­å›£'),
(58640, 48665, 'en', 'name', 'Gunma Prefectural Fisheries Experimental Station'),
(58641, 48665, 'ja', 'name', '群馬県 - 氓産試験堓'),
(58642, 48666, 'no_lang_code', 'name', 'Corning (South Korea)'),
(58643, 48667, 'no_lang_code', 'name', 'Medgene Labs (United States)'),
(58644, 48668, 'en', 'name', 'Loyola Medicine'),
(58645, 48669, 'ja', 'name', 'ę—„ęœ¬ćƒ“ć‚Æć‚æćƒ¼ę Ŗå¼ä¼šē¤¾'),
(58646, 48669, 'no_lang_code', 'name', 'Victor (Japan)'),
(58647, 48670, 'en', 'name', 'SUPERA Park of Innovation and Technology of Ribeirão Preto'),
(58648, 48670, 'pt', 'name', 'Supera Parque de Inovação e Tecnologia de Ribeirão Preto'),
(58649, 48671, 'no_lang_code', 'name', 'Integrated Nonclinical Development Solutions (United States)'),
(58650, 48672, 'no_lang_code', 'name', 'Northern Powergrid (United Kingdom)'),
(58651, 48673, 'en', 'name', 'Global Viral'),
(58652, 48674, 'no_lang_code', 'name', 'Temper (United States)'),
(58653, 48675, 'en', 'name', 'Niigata Prefectural Niigata MidoriKo High School'),
(58654, 48675, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę–°ę½Ÿēæ ę±Ÿé«˜ē­‰å­¦ę ”'),
(58655, 48676, 'en', 'name', 'Illinois Ornithological Society'),
(58656, 48677, 'en', 'name', 'Changchun 208 Hospital'),
(58657, 48677, 'zh', 'name', 'å‰ęž—é•æę˜„208医院'),
(58658, 48678, 'en', 'name', 'Osaka City Cultural Properties Association'),
(58659, 48678, 'ja', 'name', 'å¤§é˜Ŗę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(58660, 48679, 'en', 'name', 'Wildlife Preservation Society of Australia'),
(58661, 48680, 'no_lang_code', 'name', 'ZincNyx Energy Solutions (Canada)'),
(58662, 48681, 'ja', 'name', 'ęØŖę²³é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(58663, 48681, 'no_lang_code', 'name', 'Yokogawa Electric (Japan)'),
(58664, 48682, 'no_lang_code', 'name', 'Sandvik (South Africa)'),
(58665, 48683, 'es', 'name', 'Wikimedia Uruguay'),
(58666, 48684, 'no_lang_code', 'name', 'Clinical Sensors (United States)'),
(58667, 48685, 'en', 'name', 'Foundation Wakayama Prefecture Cultural Property Center'),
(58668, 48685, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå’Œę­Œå±±ēœŒę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(58669, 48686, 'id', 'name', 'Universitas Indonesia Timur'),
(58670, 48687, 'en', 'name', 'World Water and Climate Foundation'),
(58671, 48688, 'de', 'name', 'Ɩsterreichischen Gesellschaft für Dermatologie und Venerologie'),
(58672, 48688, 'en', 'name', 'Austrian Society of Dermatology and Venereology'),
(58673, 48689, 'en', 'name', 'Institute for the Advanced Study of Black Family Life and Culture'),
(58674, 48690, 'de', 'name', 'Union der deutschen Akademien der Wissenschaften'),
(58675, 48690, 'en', 'name', 'Union of the German Academies of Sciences and Humanities'),
(58676, 48691, 'fr', 'name', 'Bretagne DƩveloppement Innovation'),
(58677, 48692, 'no_lang_code', 'name', 'Otsuka (United Kingdom)'),
(58678, 48693, 'aa', 'name', 'ę„šé›„åøˆčŒƒå­¦é™¢'),
(58679, 48693, 'en', 'name', 'Chuxiong Normal University'),
(58680, 48694, 'en', 'name', 'Ningbo Polytechnic'),
(58681, 48694, 'zh', 'name', 'å®ę³¢čŒäøšęŠ€ęœÆå­¦é™¢'),
(58682, 48695, 'en', 'name', 'Dabney S Lancaster Community College'),
(58683, 48696, 'no_lang_code', 'name', 'Systems, Applications & Products in Data Processing (Australia)'),
(58684, 48697, 'en', 'name', 'Mpala Research Center and Wildlife Foundation'),
(58685, 48698, 'no_lang_code', 'name', 'QuantumWise (Denmark)'),
(58686, 48699, 'en', 'name', 'Association of Surgeons of Great Britain and Ireland'),
(58687, 48700, 'no_lang_code', 'name', 'Leo Pharma (Ireland)'),
(58688, 48701, 'en', 'name', 'Soil Association'),
(58689, 48702, 'en', 'name', 'Modus Health'),
(58690, 48703, 'en', 'name', 'Iida City Museum of Art'),
(58691, 48703, 'ja', 'name', 'é£Æē”°åø‚ē¾Žč”“åšē‰©é¤Ø'),
(58692, 48704, 'en', 'name', 'Heisei College of Health Sciences'),
(58693, 48704, 'ja', 'name', 'å¹³ęˆåŒ»ē™‚ēŸ­ęœŸå¤§å­¦'),
(58694, 48705, 'en', 'name', 'Okinawa Womens Junior College'),
(58695, 48705, 'ja', 'name', 'ę²–ēø„å„³å­ēŸ­ęœŸå¤§å­¦'),
(58696, 48706, 'no_lang_code', 'name', 'Mitsubishi Electric (Germany)'),
(58697, 48707, 'no_lang_code', 'name', 'ProCure (United States)'),
(58698, 48708, 'de', 'name', 'Mediacult'),
(58699, 48709, 'en', 'name', 'Our Lady Academy of Sakura'),
(58700, 48709, 'ja', 'name', 'ē§ē«‹ę”œć®č–ęÆå­¦é™¢é«˜ę ”'),
(58701, 48710, 'pt', 'name', 'Escola de Comando e Estado-Maior do ExƩrcito'),
(58702, 48711, 'en', 'name', 'Centre for Economic and Social Studies'),
(58703, 48712, 'en', 'name', 'Pioneer International University'),
(58704, 48713, 'en', 'name', 'Museum of Japanese Art Yamato Bunkakan'),
(58705, 48713, 'ja', 'name', 'å¤§å’Œę–‡čÆé¤Ø'),
(58706, 48714, 'en', 'name', 'Consortium for Educational Change'),
(58707, 48715, 'en', 'name', 'Yamagata Prefectural Sagae High School'),
(58708, 48715, 'ja', 'name', 'å±±å½¢ēœŒē«‹åÆ’ę²³ę±Ÿé«˜ē­‰å­¦ę ”'),
(58709, 48716, 'no_lang_code', 'name', 'Wikimedia Taiwan'),
(58710, 48716, 'zh', 'name', 'äø­čÆę°‘åœ‹ē¶­åŸŗåŖ’é«”å”ęœƒ'),
(58711, 48717, 'no_lang_code', 'name', 'Lawrenceville Plasma Physics (United States)'),
(58712, 48718, 'en', 'name', 'Musashi Junior and Senior High School'),
(58713, 48718, 'ja', 'name', 'ę­¦č”µé«˜ē­‰å­¦ę ” 中学栔'),
(58714, 48719, 'en', 'name', 'Mass Insight Education'),
(58715, 48720, 'el', 'name', 'ĪĪ•ĪŸĪ‘ĪĪ‘Ī›Ī„Ī£Ī™Ī£'),
(58716, 48720, 'no_lang_code', 'name', 'Neoanalysis (Greece)'),
(58717, 48721, 'en', 'name', 'Ehime Prefectural College of Agriculture'),
(58718, 48721, 'ja', 'name', 'ę„›åŖ›ēœŒē«‹č¾²ę„­å¤§å­¦ę ”'),
(58719, 48722, 'it', 'name', 'Pro Grigioni Italiano'),
(58720, 48723, 'en', 'name', 'Center on Budget and Policy Priorities'),
(58721, 48724, 'en', 'name', 'Hokkaido Musashi Women''s Junior College'),
(58722, 48724, 'ja', 'name', 'åŒ—ęµ·é“ę­¦č”µå„³å­ēŸ­ęœŸå¤§å­¦'),
(58723, 48725, 'en', 'name', 'Tokyo School for the Deaf'),
(58724, 48726, 'no_lang_code', 'name', 'Qualcomm (United Kingdom)'),
(58725, 48727, 'en', 'name', 'Association of African Business Schools'),
(58726, 48728, 'no_lang_code', 'name', 'Nommon Solutions and Technologies (Spain)'),
(58727, 48729, 'en', 'name', 'City Clinical Hospital No 31'),
(58728, 48729, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 31 (Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³)'),
(58729, 48730, 'en', 'name', 'International Cosmetology College'),
(58730, 48730, 'lv', 'name', 'Starptautiskā Kosmetoloģijas koledža'),
(58731, 48731, 'es', 'name', 'Corporación para el Desarrollo Sostenible del UrabÔ'),
(58732, 48732, 'no_lang_code', 'name', 'Solvay (China)'),
(58733, 48733, 'pt', 'name', 'Instituto Nacional do SemiƔrido'),
(58734, 48734, 'id', 'name', 'Universitas Nahdlatul Wathan Mataram'),
(58735, 48735, 'ja', 'name', 'ēŸ¢å“Žē·ę„­ę Ŗå¼ä¼šē¤¾'),
(58736, 48735, 'no_lang_code', 'name', 'Yazaki (Japan)'),
(58737, 48736, 'fr', 'name', 'Fondation pour la SantƩ Reproductrice et l''Education Familiale'),
(58738, 48737, 'en', 'name', 'The Duchy Hospital'),
(58739, 48738, 'en', 'name', 'Field Crops Research Institute'),
(58740, 48739, 'en', 'name', 'Kanagawa Prefectural Museum of Cultural History'),
(58741, 48739, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(58742, 48740, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(58743, 48740, 'en', 'name', 'Arab Open University'),
(58744, 48741, 'no_lang_code', 'name', 'ResMed (Australia)'),
(58745, 48742, 'no_lang_code', 'name', 'Arup Group (Canada)'),
(58746, 48743, 'no_lang_code', 'name', 'Advantest (Singapore)'),
(58747, 48744, 'en', 'name', 'Alhamd Islamic University'),
(58748, 48745, 'sv', 'name', 'Djurkliniken Roslagstull'),
(58749, 48746, 'no_lang_code', 'name', 'TCL (China)'),
(58750, 48746, 'zh', 'name', 'TCLē§‘ęŠ€é›†å›¢'),
(58751, 48747, 'pt', 'name', 'Fundação Hemopa'),
(58752, 48748, 'en', 'name', 'Fontes Foundation'),
(58753, 48749, 'no_lang_code', 'name', 'BioTheryX (United States)'),
(58754, 48750, 'en', 'name', 'Fiorello H. LaGuardia Foundation'),
(58755, 48751, 'no_lang_code', 'name', 'Them (United States)'),
(58756, 48752, 'no_lang_code', 'name', 'Magneto-Inertial Fusion Technologies (United States)'),
(58757, 48753, 'no_lang_code', 'name', 'Cook Medical (Ireland)'),
(58758, 48754, 'en', 'name', 'Hyogo Prefectural Hyogo Agricultural University'),
(58759, 48754, 'ja', 'name', 'å…µåŗ«ēœŒē«‹č¾²ę„­å¤§å­¦'),
(58760, 48755, 'en', 'name', 'Agricultural & Applied Economics Association'),
(58761, 48756, 'no_lang_code', 'name', 'Packet Digital (United States)'),
(58762, 48757, 'no_lang_code', 'name', 'Amer Sports (France)'),
(58763, 48758, 'en', 'name', 'Uttar Pradesh Council of sugarcane research'),
(58764, 48759, 'en', 'name', 'British Thoracic Society'),
(58765, 48760, 'no_lang_code', 'name', 'United Shield (United Kingdom)'),
(58766, 48761, 'no_lang_code', 'name', 'Katan Kitchens (Canada)'),
(58767, 48762, 'en', 'name', 'Academic Swiss Caucasus Net'),
(58768, 48763, 'ja', 'name', 'ę—„ęœ¬ęæē”å­ę Ŗå¼ä¼šē¤¾'),
(58769, 48763, 'no_lang_code', 'name', 'Nippon Sheet Glass (Japan)'),
(58770, 48764, 'en', 'name', 'Japan Chemical Analysis Center'),
(58771, 48764, 'ja', 'name', 'ę—„ęœ¬åˆ†ęžć‚»ćƒ³ć‚æćƒ¼'),
(58772, 48765, 'en', 'name', 'Zhenjiang City Fourth People''s Hospital'),
(58773, 48765, 'zh', 'name', 'é•‡ę±Ÿåø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(58774, 48766, 'en', 'name', 'Research Institute for Peace and Security'),
(58775, 48766, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¹³å’Œćƒ»å®‰å…Øäæéšœē ”ē©¶ę‰€'),
(58776, 48767, 'no_lang_code', 'name', 'AlphaSIP (Spain)'),
(58777, 48768, 'en', 'name', 'National Bank of Canada'),
(58778, 48768, 'fr', 'name', 'Banque Nationale du Canada'),
(58779, 48769, 'no_lang_code', 'name', 'Apple (Israel)'),
(58780, 48770, 'en', 'name', 'Galveston Island Research Community Research Advisory Committee'),
(58781, 48771, 'no_lang_code', 'name', 'Xergy (United States)'),
(58782, 48772, 'en', 'name', 'Department of Agricultural Research & Technical Services'),
(58783, 48773, 'en', 'name', 'Kyoto Human Rights Research Institute'),
(58784, 48773, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ äø–ē•ŒäŗŗęØ©å•é”Œē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(58785, 48774, 'en', 'name', 'Radford University College'),
(58786, 48775, 'en', 'name', 'Chicago International Charter School'),
(58787, 48776, 'en', 'name', 'Japanese Physical Therapy Association'),
(58788, 48776, 'ja', 'name', 'ę—„ęœ¬ē†å­¦ē™‚ę³•å£«å”ä¼š'),
(58789, 48777, 'en', 'name', 'Indian Institute of Management Shillong'),
(58790, 48777, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, शिलांग'),
(58791, 48778, 'en', 'name', 'Kanagawa Prefectural Ayase High School'),
(58792, 48778, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ē¶¾ē€¬é«˜ē­‰å­¦ę ”'),
(58793, 48779, 'en', 'name', 'Seirei Women''s Junior College'),
(58794, 48779, 'ja', 'name', 'č–éœŠå„³å­ēŸ­ęœŸå¤§å­¦'),
(58795, 48780, 'en', 'name', 'Advanced Center for Orthopedics'),
(58796, 48781, 'no_lang_code', 'name', 'Saint-Gobain (Canada)'),
(58797, 48782, 'no_lang_code', 'name', 'Teldio (Canada)'),
(58798, 48783, 'en', 'name', 'Harney Education Service District'),
(58799, 48784, 'no_lang_code', 'name', 'ASM Terni (Italy)'),
(58800, 48785, 'en', 'name', 'International Training Centre of the ILO'),
(58801, 48786, 'en', 'name', 'Research Institute of Animal Husbandry'),
(58802, 48787, 'en', 'name', 'Tochigi Prefectural Utsunomiya Commercial and Business High School'),
(58803, 48787, 'ja', 'name', 'ę ƒęœØēœŒē«‹å®‡éƒ½å®®å•†ę„­é«˜ē­‰å­¦ę ”'),
(58804, 48788, 'en', 'name', 'Shenandoah Astronomical Society'),
(58805, 48789, 'en', 'name', 'Qingdao Municipal Center for Disease Control and Prevention'),
(58806, 48789, 'zh', 'name', 'é’å²›åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(58807, 48790, 'no_lang_code', 'name', 'Dow Chemical (China)'),
(58808, 48791, 'en', 'name', 'Eurovacc Foundation'),
(58809, 48792, 'en', 'name', 'Pan African Christian University College'),
(58810, 48793, 'en', 'name', 'Schlow Centre Region Library'),
(58811, 48794, 'no_lang_code', 'name', 'Nirvana Sciences (United States)'),
(58812, 48795, 'no_lang_code', 'name', 'Johnson & Johnson (Brazil)'),
(58813, 48796, 'ja', 'name', 'ę—„ęœ¬å·„å–¶'),
(58814, 48796, 'no_lang_code', 'name', 'Nippon Koei (Japan)'),
(58815, 48797, 'no_lang_code', 'name', 'Geotechnical Consulting Group (United Kingdom)'),
(58816, 48798, 'en', 'name', 'Phillips University'),
(58817, 48799, 'en', 'name', 'Nishinomiya Municipal Takagi Elementary School'),
(58818, 48799, 'ja', 'name', 'č„æå®®åø‚ē«‹é«˜ęœØå°å­¦ę ”'),
(58819, 48800, 'fr', 'name', 'Association FranƧaise pour l''Etude du Foie'),
(58820, 48801, 'no_lang_code', 'name', 'Arizona Cancer Therapeutics (United States)'),
(58821, 48802, 'de', 'name', 'Institut für Krankenhaushygiene & Infektionsprävention'),
(58822, 48803, 'en', 'name', 'Association of Fundraising Professionals Advancement Northwest'),
(58823, 48804, 'en', 'name', 'Dutch University Institute for Art History'),
(58824, 48804, 'it', 'name', 'Istituto Universitario Olandese di Storia dell’Arte'),
(58825, 48805, 'no_lang_code', 'name', 'GKN (United States)'),
(58826, 48806, 'en', 'name', 'Catalysis Foundation for Health'),
(58827, 48807, 'en', 'name', 'CHIME Institute'),
(58828, 48808, 'en', 'name', 'American Association of Law Libraries'),
(58829, 48809, 'en', 'name', 'Japanese Red Cross Hiroshima College of Nursing'),
(58830, 48809, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—åŗƒå³¶ēœ‹č­·å¤§å­¦'),
(58831, 48810, 'en', 'name', 'Sanyo Women''s College'),
(58832, 48810, 'ja', 'name', 'å±±é™½å„³å­ēŸ­ęœŸå¤§å­¦'),
(58833, 48811, 'en', 'name', 'Montana State Library'),
(58834, 48812, 'en', 'name', 'Mitsubishi Economic Research Institute'),
(58835, 48812, 'ja', 'name', 'äø‰č±ēµŒęøˆē ”ē©¶ę‰€'),
(58836, 48813, 'no_lang_code', 'name', 'Ergon Energy (Australia)'),
(58837, 48814, 'ja', 'name', 'å‰ē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(58838, 48814, 'no_lang_code', 'name', 'YKK (Japan)'),
(58839, 48815, 'en', 'name', 'Center for Independent Living'),
(58840, 48816, 'es', 'name', 'Instituto Tecnológico de Matamoros'),
(58841, 48817, 'en', 'name', 'Association of Community College Trustees'),
(58842, 48818, 'de', 'name', 'Max-Planck-Forschungsstelle für Neurogenetik'),
(58843, 48818, 'en', 'name', 'Max Planck Research Unit for Neurogenetics'),
(58844, 48819, 'no_lang_code', 'name', 'Steris (United Kingdom)'),
(58845, 48820, 'en', 'name', 'Ventura County Library'),
(58846, 48821, 'no_lang_code', 'name', 'DirecTV (United States)'),
(58847, 48822, 'no_lang_code', 'name', 'Russell Biotech (United States)'),
(58848, 48823, 'en', 'name', 'Kaysinger Basin Regional Planning Commission'),
(58849, 48824, 'en', 'name', 'Ibaraki Prefectural Police'),
(58850, 48824, 'ja', 'name', 'čŒØåŸŽēœŒč­¦åÆŸęœ¬éƒØ'),
(58851, 48825, 'no_lang_code', 'name', 'Panduit (United States)'),
(58852, 48826, 'no_lang_code', 'name', 'Oerlikon (United States)'),
(58853, 48827, 'en', 'name', 'Seismological Bureau of Shanghai'),
(58854, 48827, 'zh', 'name', 'äøŠęµ·åø‚åœ°éœ‡å±€'),
(58855, 48828, 'en', 'name', 'Municipality of Anchorage'),
(58856, 48829, 'en', 'name', 'Foundations for Farming'),
(58857, 48830, 'no_lang_code', 'name', 'Novateur Research Solutions (United States)'),
(58858, 48831, 'en', 'name', 'Institute of Chemistry, Komi Science Center'),
(58859, 48831, 'ru', 'name', 'Коми Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š£Ń€Šž Š ŠŠ'),
(58860, 48832, 'no_lang_code', 'name', 'Nuance Communications (Austria)'),
(58861, 48833, 'en', 'name', 'Central Sericultural Research and Training Institute'),
(58862, 48833, 'hi', 'name', 'ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤°ą„‡ą¤¶ą¤® ą¤‰ą¤¤ą„ā€ą¤Ŗą¤¾ą¤¦ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¶ą¤æą¤•ą„ą¤·ą¤£ ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø'),
(58863, 48834, 'no_lang_code', 'name', 'Marel (United Kingdom)'),
(58864, 48835, 'ja', 'name', 'ćƒŸćƒćƒ™ć‚¢ćƒŸćƒ„ćƒŸę Ŗå¼ä¼šē¤¾'),
(58865, 48835, 'no_lang_code', 'name', 'MinebeaMitsumi (Japan)'),
(58866, 48836, 'no_lang_code', 'name', 'MoJo Labs (United States)'),
(58867, 48837, 'no_lang_code', 'name', 'BioTez (Germany)'),
(58868, 48838, 'en', 'name', 'Ibaraki Prefecture Joso City Sugawara Elementary School'),
(58869, 48838, 'ja', 'name', 'åøøē·åø‚ē«‹č…åŽŸå°å­¦ę ”'),
(58870, 48839, 'de', 'name', 'Fraunhofer-Institut für Digitale Medientechnologie'),
(58871, 48839, 'en', 'name', 'Fraunhofer Institute for Digital Media Technology'),
(58872, 48840, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†ŁˆŲ±ŁˆŲ²'),
(58873, 48840, 'en', 'name', 'Nawroz University'),
(58874, 48840, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ Ł†Ū•ŁˆŲ±Ū†Ų²'),
(58875, 48841, 'fr', 'name', 'Centre Jacques Berque pour le DƩveloppement des Sciences Humaines et Sociales'),
(58876, 48842, 'en', 'name', 'Universal Barber College'),
(58877, 48843, 'no_lang_code', 'name', 'Mavi Innovations (Canada)'),
(58878, 48844, 'en', 'name', 'Anglo-Israel Association'),
(58879, 48845, 'en', 'name', 'Benton Foundation'),
(58880, 48846, 'en', 'name', 'Okayama Prefectural Kurashiki Technical High School'),
(58881, 48846, 'ja', 'name', 'å²”å±±ēœŒē«‹å€‰ę•·å·„ę„­é«˜ē­‰å­¦ę ”'),
(58882, 48847, 'en', 'name', 'Aquila Theatre'),
(58883, 48848, 'en', 'name', 'Hong Kong Health Care Association'),
(58884, 48849, 'en', 'name', 'Pskov State University'),
(58885, 48850, 'en', 'name', 'Center for Education Reform'),
(58886, 48851, 'en', 'name', 'Iowa City Public Library'),
(58887, 48852, 'no_lang_code', 'name', 'Infineon Technologies (Canada)'),
(58888, 48853, 'en', 'name', 'MUFG Union Bank'),
(58889, 48854, 'en', 'name', 'Nebraska Bankers Association'),
(58890, 48855, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę‘ē”°č£½ä½œę‰€'),
(58891, 48855, 'no_lang_code', 'name', 'Murata (Japan)'),
(58892, 48856, 'en', 'name', 'Swedish Medical Association'),
(58893, 48856, 'sv', 'name', 'Sveriges LƤkarfƶrbund'),
(58894, 48857, 'en', 'name', 'IFMR Finance Foundation'),
(58895, 48858, 'en', 'name', 'Shimane Institute for Industrial Technology'),
(58896, 48858, 'ja', 'name', 'å³¶ę ¹ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(58897, 48859, 'en', 'name', 'Prince George''s County Memorial Library System'),
(58898, 48860, 'en', 'name', 'Association of Anaesthetists of Great Britain and Ireland'),
(58899, 48861, 'en', 'name', 'Innovation Plasturgie Composites'),
(58900, 48861, 'fr', 'name', 'PƓle EuropƩen de Plasturgie'),
(58901, 48862, 'en', 'name', 'Chiba Prefectural Education Center'),
(58902, 48862, 'ja', 'name', 'åƒč‘‰ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(58903, 48863, 'no_lang_code', 'name', 'Palette (Canada)'),
(58904, 48864, 'no_lang_code', 'name', 'Dana (United Kingdom)'),
(58905, 48865, 'en', 'name', 'China Banking Regulatory Commission'),
(58906, 48865, 'zh', 'name', 'äø­å›½é“¶č”Œäøšē›‘ē£ē®”ē†å§”å‘˜ä¼š'),
(58907, 48866, 'no_lang_code', 'name', 'ZF Friedrichshafen (Japan)'),
(58908, 48867, 'en', 'name', 'Toyama Prefectural Sakurai High School'),
(58909, 48867, 'ja', 'name', 'åÆŒå±±ēœŒē«‹ę”œäŗ•é«˜ē­‰å­¦ę ”'),
(58910, 48868, 'en', 'name', 'American Society of Maxillofacial Surgeons'),
(58911, 48869, 'en', 'name', 'Isogo Technical High School'),
(58912, 48869, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ē£Æå­å·„ę„­é«˜ē­‰å­¦ę ”'),
(58913, 48870, 'en', 'name', 'Bureau of Hydrology Tibet'),
(58914, 48870, 'zh', 'name', 'č„æč—č‡Ŗę²»åŒŗę°“ę–‡ę°“čµ„ęŗå‹˜ęµ‹å±€'),
(58915, 48871, 'no_lang_code', 'name', 'Heidenhain (Germany)'),
(58916, 48872, 'no_lang_code', 'name', 'OLEDWorks (United States)'),
(58917, 48873, 'no_lang_code', 'name', 'BaseTrace (United States)'),
(58918, 48874, 'no_lang_code', 'name', 'Qiagen (United Kingdom)'),
(58919, 48875, 'en', 'name', 'Miyagi Prefectural General Education Center'),
(58920, 48875, 'ja', 'name', 'å®®åŸŽēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(58921, 48876, 'es', 'name', 'Universidad Franciscana de MƩxico'),
(58922, 48877, 'en', 'name', 'American Society of Primatologists'),
(58923, 48878, 'en', 'name', 'Institute of Systems, Information Technologies and Nanotechnologies'),
(58924, 48878, 'ja', 'name', 'ä¹å·žå…ˆē«Æē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(58925, 48879, 'de', 'name', 'Bibliothek des Wissenschaftsparks Albert Einstein'),
(58926, 48880, 'ja', 'name', 'ę±äŗ¬č–ę „å¤§å­¦'),
(58927, 48880, 'no_lang_code', 'name', 'Tokyo Seiei College'),
(58928, 48881, 'en', 'name', 'Kanagawa Prefectural Kanagawa Comprehensive Industry High School'),
(58929, 48881, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ē„žå„ˆå·ē·åˆē”£ę„­é«˜ē­‰å­¦ę ”'),
(58930, 48882, 'en', 'name', 'Society for the Advancement of Scandinavian Study'),
(58931, 48883, 'en', 'name', 'Foundation for Integral Development Pacific'),
(58932, 48883, 'es', 'name', 'Fundación para el Desarrollo Integral del Pacífico'),
(58933, 48884, 'no_lang_code', 'name', 'RUAG (Germany)'),
(58934, 48885, 'pt', 'name', 'Fundação de Amparo à Pesquisa e Extensão UniversitÔria'),
(58935, 48886, 'en', 'name', 'Academy of Marketing Science'),
(58936, 48887, 'en', 'name', 'Yokohama City Furusato History Foundation'),
(58937, 48887, 'ja', 'name', 'ęØŖęµœåø‚ćµć‚‹ć•ćØę­“å²č²”å›£'),
(58938, 48888, 'en', 'name', 'Iwate Prefectural Mizusawa Agricultural High School'),
(58939, 48889, 'en', 'name', 'Vietnam Atomic Energy Instiute'),
(58940, 48889, 'vi', 'name', 'Viện Năng lượng nguyĆŖn tį»­ Việt Nam'),
(58941, 48890, 'no_lang_code', 'name', 'Ringful Health (United States)'),
(58942, 48891, 'en', 'name', 'Northwest Vista College'),
(58943, 48892, 'es', 'name', 'Universidad Yachay Tech, Universidad de Investigación de Tecnología Experimental YACHAY'),
(58944, 48893, 'en', 'name', 'Cambridge Memorial Hospital'),
(58945, 48894, 'en', 'name', 'MBN Research Center'),
(58946, 48895, 'no_lang_code', 'name', 'Covaris (United States)'),
(58947, 48896, 'no_lang_code', 'name', 'Acceleware (Canada)'),
(58948, 48897, 'en', 'name', 'Wenzhou City People''s Hospital'),
(58949, 48897, 'zh', 'name', 'ęø©å·žåø‚äŗŗę°‘åŒ»é™¢'),
(58950, 48898, 'en', 'name', 'Institute of Mathematics'),
(58951, 48898, 'vi', 'name', 'Viện ToĆ”n hį»c'),
(58952, 48899, 'no_lang_code', 'name', 'Expro (United States)'),
(58953, 48900, 'pt', 'name', 'Prefeitura Municipal de Rio das Ostras'),
(58954, 48901, 'en', 'name', 'McGowan Institute for Regenerative Medicine'),
(58955, 48902, 'no_lang_code', 'name', 'Liquidia Technologies (United States)'),
(58956, 48903, 'no_lang_code', 'name', 'Qisda (Taiwan)'),
(58957, 48903, 'zh', 'name', 'ä½³äø–č¾¾å…¬åø'),
(58958, 48904, 'en', 'name', 'Taizhou First People''s Hospital'),
(58959, 48904, 'zh', 'name', 'å°å·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(58960, 48905, 'en', 'name', 'Wakayama Prefectural Educational Center'),
(58961, 48905, 'ja', 'name', 'å’Œę­Œå±±ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼å­¦ć³ć®äø˜'),
(58962, 48906, 'en', 'name', 'Vancouver Native Health Society'),
(58963, 48907, 'en', 'name', 'Australia and New Zealand School of Government'),
(58964, 48908, 'no_lang_code', 'name', 'Anne Arundel Economic Development (United States)'),
(58965, 48909, 'no_lang_code', 'name', 'Sasol (Germany)'),
(58966, 48910, 'en', 'name', 'Russian State Geological Prospecting University'),
(58967, 48910, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный геологоразвеГочный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(58968, 48911, 'en', 'name', 'American Society for Quality'),
(58969, 48912, 'en', 'name', 'Tsukuba Municipal Azuma Elementary School'),
(58970, 48912, 'ja', 'name', 'ć¤ćć°åø‚ē«‹å¾å¦»å°å­¦ę ”'),
(58971, 48913, 'en', 'name', 'Center for Career and Community Research'),
(58972, 48914, 'no_lang_code', 'name', 'New Technology (Israel)'),
(58973, 48915, 'en', 'name', 'European Conference for AeroSpace Sciences'),
(58974, 48916, 'es', 'name', 'Universidad Angelópolis'),
(58975, 48917, 'no_lang_code', 'name', 'Aspen Professional Services (United States)'),
(58976, 48918, 'cs', 'name', 'Český bÔňský ĆŗÅ™ad'),
(58977, 48918, 'en', 'name', 'State Mining Administration'),
(58978, 48919, 'en', 'name', 'Pediatric Oncology Group'),
(58979, 48920, 'en', 'name', 'Association for Tertiary Education Management'),
(58980, 48921, 'no_lang_code', 'name', 'Cellectar Biosciences (United States)'),
(58981, 48922, 'en', 'name', 'Lee Countys Department of Public Safety'),
(58982, 48923, 'es', 'name', 'Fundación Miguel Lillo'),
(58983, 48924, 'no_lang_code', 'name', 'Future Access (Canada)'),
(58984, 48925, 'no_lang_code', 'name', 'Tektronix (United States)'),
(58985, 48926, 'no_lang_code', 'name', 'Sandia Research (United States)'),
(58986, 48927, 'no_lang_code', 'name', 'Schindler (Switzerland)'),
(58987, 48928, 'en', 'name', 'Hawaii State Public Library System'),
(58988, 48929, 'no_lang_code', 'name', 'Innospec (United States)'),
(58989, 48930, 'no_lang_code', 'name', 'Albemarle (Germany)'),
(58990, 48931, 'en', 'name', 'Miyagi Prefectural Police Forensic Science Laboratory'),
(58991, 48931, 'ja', 'name', 'å®®åŸŽēœŒč­¦åÆŸ ē§‘å­¦ęœęŸ»ē ”ē©¶ę‰€'),
(58992, 48932, 'en', 'name', 'Hartebeesthoek Radio Astronomy Observatory'),
(58993, 48933, 'de', 'name', 'Apollon Hochschule der Gesundheitswirtschaft'),
(58994, 48933, 'en', 'name', 'University of Applied Sciences Appollon'),
(58995, 48934, 'pt', 'name', 'Associação Brasileira de Rorschach e Métodos Projetivos'),
(58996, 48935, 'en', 'name', 'Indiana Commission for Higher Education'),
(58997, 48936, 'no_lang_code', 'name', 'Lexitek (United States)'),
(58998, 48937, 'no_lang_code', 'name', 'Extensible Energy (United States)'),
(58999, 48938, 'en', 'name', 'Bryn Mawr Skin & Cancer Institute'),
(59000, 48939, 'en', 'name', 'Nagoya City Science Museum'),
(59001, 48939, 'ja', 'name', 'åå¤å±‹åø‚ē§‘å­¦é¤Ø'),
(59002, 48940, 'en', 'name', 'Institute for Competitive Recruiting'),
(59003, 48941, 'no_lang_code', 'name', 'GRi Simulations (Canada)'),
(59004, 48942, 'no_lang_code', 'name', 'Maxar Technologies (United States)'),
(59005, 48943, 'en', 'name', 'Ehime Prefecture Iyo Agricultural High School'),
(59006, 48943, 'ja', 'name', 'ę„›åŖ›ēœŒē«‹ä¼Šäŗˆč¾²ę„­é«˜ē­‰å­¦ę ”'),
(59007, 48944, 'en', 'name', 'Cherie Blair Foundation for Women'),
(59008, 48945, 'no_lang_code', 'name', 'Nojiri Naumanni Museum'),
(59009, 48946, 'no_lang_code', 'name', 'SafeRay Spine (United States)'),
(59010, 48947, 'ja', 'name', 'åÆŒå£«é€šę Ŗå¼ä¼šē¤¾'),
(59011, 48947, 'no_lang_code', 'name', 'Fujitsu (Germany)'),
(59012, 48948, 'no_lang_code', 'name', 'Almen Laboratories (United States)'),
(59013, 48949, 'en', 'name', 'Global Alliance for Improved Nutrition'),
(59014, 48950, 'no_lang_code', 'name', 'OAO VNIPIneft (Russia)'),
(59015, 48950, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠµŃ„Ń‚ŠµŠæŠµŃ€ŠµŃ€Š°Š±Š°Ń‚Ń‹Š²Š°ŃŽŃ‰ŠµŠ¹ Šø нефтехимической ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø ŠžŠŠž "Š’ŠŠ˜ŠŸŠ˜Š½ŠµŃ„Ń‚ŃŒ"'),
(59016, 48951, 'no_lang_code', 'name', 'Tucker Innovations (United States)'),
(59017, 48952, 'no_lang_code', 'name', 'Eomap (Germany)'),
(59018, 48953, 'id', 'name', 'Universitas Teknologi Nusantara'),
(59019, 48954, 'en', 'name', 'Centre for Advocacy and Research'),
(59020, 48955, 'en', 'name', 'Japanese Red Cross Akita College of Nursing'),
(59021, 48955, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē§‹ē”°ēœ‹č­·å¤§å­¦'),
(59022, 48956, 'de', 'name', 'Oberlandesgericht Stuttgart'),
(59023, 48957, 'no_lang_code', 'name', 'Arquimea (Spain)'),
(59024, 48958, 'en', 'name', 'Aomori High School'),
(59025, 48958, 'ja', 'name', 'é’ę£®ēœŒē«‹é’ę£®é«˜ē­‰å­¦ę ”'),
(59026, 48959, 'no_lang_code', 'name', 'Mission Management Information Systems (Canada)'),
(59027, 48960, 'en', 'name', 'Schiller International University'),
(59028, 48961, 'en', 'name', 'Karelian State Pedagogical Academy'),
(59029, 48961, 'ru', 'name', 'ŠšŠ°Ń€ŠµŠ»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(59030, 48962, 'en', 'name', 'Malaria No More'),
(59031, 48963, 'en', 'name', 'Australian Water Quality Centre'),
(59032, 48964, 'no_lang_code', 'name', 'Robert Bosch (India)'),
(59033, 48965, 'no_lang_code', 'name', 'Rubicon Labs (United States)'),
(59034, 48966, 'no_lang_code', 'name', 'Visteon (Japan)'),
(59035, 48967, 'en', 'name', 'Pharmatech (United States)'),
(59036, 48968, 'en', 'name', 'Niigata Medical Technology Specialist School'),
(59037, 48968, 'ja', 'name', 'ę–°ę½ŸåŒ»ē™‚ęŠ€č”“å°‚é–€å­¦ę ”'),
(59038, 48969, 'en', 'name', 'Miyagi Prefectural Hearing Support School'),
(59039, 48969, 'ja', 'name', 'å®®åŸŽēœŒē«‹č“č¦šę”Æę“å­¦ę ”'),
(59040, 48970, 'en', 'name', 'Royal Australian Chemical Institute'),
(59041, 48971, 'en', 'name', 'Alaka`ina Foundation'),
(59042, 48972, 'en', 'name', 'Escambia County School District'),
(59043, 48973, 'en', 'name', 'Center for Effective Philanthropy'),
(59044, 48974, 'en', 'name', 'Australian Association of Gerontology'),
(59045, 48975, 'en', 'name', 'Dr. H. Bliss Murphy Cancer Centre'),
(59046, 48976, 'en', 'name', 'Niigata Agricultural Research Institute'),
(59047, 48976, 'ja', 'name', 'ę–°ę½ŸēœŒåœ’čŠøē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(59048, 48977, 'en', 'name', 'Tompkins County Public Library'),
(59049, 48978, 'en', 'name', 'Round Rock Public Library'),
(59050, 48979, 'no_lang_code', 'name', 'Galaxy Diagnostics (United States)'),
(59051, 48980, 'en', 'name', 'California State Library Foundation'),
(59052, 48981, 'en', 'name', 'KIPP Foundation'),
(59053, 48982, 'en', 'name', 'Shiga Junior College'),
(59054, 48982, 'ja', 'name', 'ę»‹č³€ēŸ­ęœŸå¤§å­¦'),
(59055, 48983, 'en', 'name', 'Central Manchester Clinical Commissioning Group'),
(59056, 48984, 'fr', 'name', 'UniversitƩ d''Oran 2'),
(59057, 48985, 'en', 'name', 'Mushroom Council'),
(59058, 48986, 'no_lang_code', 'name', 'Arizona Optical Systems (United States)'),
(59059, 48987, 'no_lang_code', 'name', 'Diagnologix (United States)'),
(59060, 48988, 'en', 'name', 'Mental Health Foundation'),
(59061, 48989, 'no_lang_code', 'name', 'Sydor Technologies (United States)'),
(59062, 48990, 'en', 'name', 'Institute for Future Engineering'),
(59063, 48990, 'ja', 'name', 'ęœŖę„å·„å­¦ē ”ē©¶ę‰€'),
(59064, 48991, 'pt', 'name', 'Departamento de CiĆŖncia e Tecnologia'),
(59065, 48992, 'no_lang_code', 'name', 'ResMed (Germany)'),
(59066, 48993, 'en', 'name', 'National Cereals Research Institute'),
(59067, 48994, 'en', 'name', 'Zhejiang Tongji Vocational College of Science and Technology'),
(59068, 48994, 'zh', 'name', 'ē§‘ęŠ€ēš„åŒęµŽå¤§å­¦ęµ™ę±ŸčŒäøšęŠ€ęœÆå­¦é™¢'),
(59069, 48995, 'en', 'name', 'Asian Development Bank Institute'),
(59070, 48995, 'ja', 'name', 'ć‚¢ć‚øć‚¢é–‹ē™ŗéŠ€č”Œē ”ē©¶ę‰€'),
(59071, 48996, 'en', 'name', 'Research Institute of Ceramics'),
(59072, 48996, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠšŠ•Š ŠŠœŠ˜ŠšŠ˜'),
(59073, 48997, 'no_lang_code', 'name', 'Brembo (Italy)'),
(59074, 48998, 'no_lang_code', 'name', 'Eppin Pharma (United States)'),
(59075, 48999, 'en', 'name', 'Queensland Police Service'),
(59076, 49000, 'en', 'name', 'Progressive Osseous Heteroplasia Association'),
(59077, 49001, 'no_lang_code', 'name', 'Leviton (United States)'),
(59078, 49002, 'no_lang_code', 'name', 'Boise Cascade (Canada)'),
(59079, 49003, 'en', 'name', 'Educational Service District 105'),
(59080, 49004, 'en', 'name', 'Brazilian Computer Society'),
(59081, 49004, 'pt', 'name', 'Sociedade Brasileira de Computação'),
(59082, 49005, 'ja', 'name', '彦根中央病院'),
(59083, 49005, 'no_lang_code', 'name', 'Hikone Central Hospital'),
(59084, 49006, 'en', 'name', 'Uganda National Health Research Organisation'),
(59085, 49007, 'en', 'name', 'Mie Prefectural Yokkaichi Technical High School'),
(59086, 49007, 'ja', 'name', 'äø‰é‡ēœŒē«‹å››ę—„åø‚å·„ę„­é«˜ē­‰å­¦ę ”'),
(59087, 49008, 'en', 'name', 'Shenzhen Pingle Orthopedic Hospital'),
(59088, 49008, 'zh', 'name', 'ę·±åœ³å¹³ä¹éŖØä¼¤ē§‘åŒ»é™¢'),
(59089, 49009, 'en', 'name', 'International Food Protection Training Institute'),
(59090, 49010, 'no_lang_code', 'name', 'Samsung (Switzerland)'),
(59091, 49011, 'en', 'name', 'Geary County Schools USD 475'),
(59092, 49012, 'en', 'name', 'Opinion Leader Research'),
(59093, 49013, 'en', 'name', 'Battle Creek Public Schools'),
(59094, 49014, 'en', 'name', 'Arkansas Department of Higher Education'),
(59095, 49015, 'en', 'name', 'Common Heritage Foundation'),
(59096, 49016, 'no_lang_code', 'name', 'Seastar Chemicals (Canada)'),
(59097, 49017, 'no_lang_code', 'name', 'Faurecia (Canada)'),
(59098, 49018, 'ja', 'name', 'å¤§é˜Ŗå¤•é™½äø˜å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(59099, 49018, 'no_lang_code', 'name', 'Osaka Yuhigaoka Gakuen Junior College'),
(59100, 49019, 'de', 'name', 'Fraunhofer-Institut für Integrierte Systeme und Bauelementetechnologie'),
(59101, 49019, 'en', 'name', 'Fraunhofer Institute for Integrated Systems and Device Technology'),
(59102, 49020, 'en', 'name', 'Islamic Azad University Maybod'),
(59103, 49020, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…ŪŒŲØŲÆ یزد'),
(59104, 49021, 'en', 'name', 'College Success Foundation'),
(59105, 49022, 'en', 'name', 'Augusta-Richmond County Public Library System'),
(59106, 49023, 'ja', 'name', 'å’Œę­Œå±±åø‚ē«‹åšē‰©é¤Ø'),
(59107, 49023, 'no_lang_code', 'name', 'Wakayama City Museum'),
(59108, 49024, 'en', 'name', 'Hakodate Junior College'),
(59109, 49024, 'ja', 'name', 'å‡½é¤ØēŸ­ęœŸå¤§å­¦'),
(59110, 49025, 'no_lang_code', 'name', 'Chemical Semantics (United States)'),
(59111, 49026, 'de', 'name', 'IGES Institut, Institut für Gesundheits- und Sozialforschung'),
(59112, 49027, 'de', 'name', 'Fraunhofer-Institut für Fabrikbetrieb und -automatisierung'),
(59113, 49027, 'en', 'name', 'Fraunhofer Institute for Factory Operation and Automation'),
(59114, 49028, 'en', 'name', 'Universal Management Services'),
(59115, 49029, 'no_lang_code', 'name', 'Federal Mogul (United Kingdom)'),
(59116, 49030, 'no_lang_code', 'name', 'Produce Investments (United Kingdom)'),
(59117, 49031, 'en', 'name', 'Danish Agency for Culture and Palaces'),
(59118, 49032, 'en', 'name', 'Ministry of Agriculture and Forestry and Food'),
(59119, 49033, 'en', 'name', 'Idaho Association of School Administrators'),
(59120, 49034, 'ja', 'name', 'ćƒŖćƒ³ćƒ†ćƒƒć‚Æ'),
(59121, 49034, 'no_lang_code', 'name', 'Lintec Corporation (Japan)'),
(59122, 49035, 'en', 'name', 'Catholic University Institute of Buea'),
(59123, 49036, 'ja', 'name', 'ä»™å°åø‚ē«‹å±±ē”°äø­å­¦ę ”'),
(59124, 49036, 'no_lang_code', 'name', 'Sendai Tateyama Tanaka School'),
(59125, 49037, 'de', 'name', 'LVR-Klinik für Orthopädie Viersen'),
(59126, 49038, 'no_lang_code', 'name', 'Air Squared (United States)'),
(59127, 49039, 'en', 'name', 'Spokane Falls Community College'),
(59128, 49040, 'ja', 'name', 'ćƒ¦ćƒ‹Ā·ćƒćƒ£ćƒ¼ćƒ ę Ŗå¼ä¼šē¤¾'),
(59129, 49040, 'no_lang_code', 'name', 'Unicharm (Japan)'),
(59130, 49041, 'no_lang_code', 'name', 'Trimble (United States)'),
(59131, 49042, 'en', 'name', 'Florida College System'),
(59132, 49043, 'en', 'name', 'Riverbank Local Redevelopment Authority'),
(59133, 49044, 'en', 'name', 'Osaka Prefectural Makino high school'),
(59134, 49044, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹ē‰§é‡Žé«˜ē­‰å­¦ę ”'),
(59135, 49045, 'en', 'name', 'Miyagi Prefecture Sendai Higashi High School'),
(59136, 49045, 'ja', 'name', 'å®®åŸŽēœŒä»™å°ę±é«˜ē­‰å­¦ę ”'),
(59137, 49046, 'no_lang_code', 'name', 'Central City Brewers and Distillers (Canada)'),
(59138, 49047, 'en', 'name', 'Most Sacred Heart of Jesus Cardiology and Valvular Institute'),
(59139, 49048, 'en', 'name', 'Denenchofu Lutheran Kindergarten'),
(59140, 49049, 'en', 'name', 'Asian Transportation Research Society'),
(59141, 49050, 'en', 'name', 'Freedom Writers Foundation'),
(59142, 49051, 'no_lang_code', 'name', 'Imation (United States)'),
(59143, 49052, 'no_lang_code', 'name', 'TE Connectivity (Germany)'),
(59144, 49053, 'en', 'name', 'International Community Health Services'),
(59145, 49054, 'no_lang_code', 'name', 'Saudi Arabia Basic Industries (Netherlands)'),
(59146, 49055, 'en', 'name', 'Kagoshima Women''s Junior College'),
(59147, 49055, 'ja', 'name', 'é¹æå…å³¶å„³å­ēŸ­ęœŸå¤§å­¦'),
(59148, 49056, 'no_lang_code', 'name', 'Tetra Laval (Switzerland)'),
(59149, 49057, 'en', 'name', 'Supply Chain Competence Center (Germany)'),
(59150, 49058, 'en', 'name', 'Ministry of Agriculture Forestry and Fisheries'),
(59151, 49058, 'km', 'name', 'įž€įŸ’įžšįžŸįž½įž„įž€įžŸįž·įž€įž˜įŸ’įž˜ įžšįž»įž€įŸ’įžįž¶įž”įŸ’įžšįž˜įž¶įž‰įŸ‹ įž“įž·įž„įž“įŸįžŸįž¶įž‘'),
(59152, 49059, 'en', 'name', 'Sakai Technology High School'),
(59153, 49059, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹å ŗå·„ē§‘é«˜ē­‰å­¦ę ”'),
(59154, 49060, 'ja', 'name', 'ę„›ēŸ„å­¦ę³‰ēŸ­ęœŸå¤§å­¦'),
(59155, 49060, 'no_lang_code', 'name', 'Aichi Gakusen College'),
(59156, 49061, 'no_lang_code', 'name', 'Applied Sciences Laboratory (United States)'),
(59157, 49062, 'no_lang_code', 'name', 'Advanced Semiconductor Engineering (Taiwan)'),
(59158, 49062, 'zh', 'name', 'ę—„ęœˆå…‰é›†å›¢'),
(59159, 49063, 'no_lang_code', 'name', 'Foremost (Canada)'),
(59160, 49064, 'en', 'name', 'Okinawa Prefectural Museum'),
(59161, 49064, 'ja', 'name', 'ę²–ēø„ēœŒē«‹åšē‰©é¤Øćƒ»ē¾Žč”“é¤Ø'),
(59162, 49065, 'en', 'name', 'Yamanashi Prefectural Education Center'),
(59163, 49065, 'ja', 'name', 'å±±ę¢ØēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(59164, 49066, 'en', 'name', 'Australian Library and Information Association'),
(59165, 49067, 'de', 'name', 'Forschungsinstitut für Kraftfahrwesen und Fahrzeugmotoren Stuttgart'),
(59166, 49067, 'en', 'name', 'Research Institute of Automotive Engineering and Vehicle Engines Stuttgart'),
(59167, 49068, 'en', 'name', 'Al-Mustafa Open University'),
(59168, 49068, 'fa', 'name', 'Ų§Ł„Ł…ŲµŲ·ŁŪŒ دانؓگاه Ų¢Ų²Ų§ŲÆ'),
(59169, 49069, 'en', 'name', 'Saving Tiny Hearts Society'),
(59170, 49070, 'no_lang_code', 'name', 'Fresenius Kabi (United States)'),
(59171, 49071, 'en', 'name', 'American Association of Critical-Care Nurses'),
(59172, 49072, 'en', 'name', 'Dawkins Dermatology'),
(59173, 49073, 'no_lang_code', 'name', 'Element Six (South Africa)'),
(59174, 49074, 'no_lang_code', 'name', 'Petroleum Geo-Services (United Kingdom)'),
(59175, 49075, 'en', 'name', 'Mongolian Nature and Environment Consortium'),
(59176, 49076, 'en', 'name', 'Anshan Normal University'),
(59177, 49076, 'zh', 'name', 'éžå±±åøˆčŒƒå­¦é™¢'),
(59178, 49077, 'en', 'name', 'Aichi Bunkyo Women''s College'),
(59179, 49077, 'ja', 'name', 'ę„›ēŸ„ę–‡ę•™å„³å­ēŸ­ęœŸå¤§å­¦'),
(59180, 49078, 'no_lang_code', 'name', 'Prysmian Group (United States)'),
(59181, 49079, 'no_lang_code', 'name', 'SciKon Innovation (United States)'),
(59182, 49080, 'da', 'name', 'Dansk Energi'),
(59183, 49080, 'en', 'name', 'Danish Energy Association'),
(59184, 49081, 'en', 'name', 'Zhejiang Pharmaceutical College'),
(59185, 49081, 'zh', 'name', 'ęµ™ę±ŸåŒ»čÆé«˜ē­‰äø“ē§‘å­¦ę ”'),
(59186, 49082, 'en', 'name', 'Asian Academy of Film and Television'),
(59187, 49083, 'no_lang_code', 'name', 'Dynea (Austria)'),
(59188, 49084, 'no_lang_code', 'name', 'Zhejiang Chem-tech Group (China)'),
(59189, 49084, 'zh', 'name', 'ęµ™ę±ŸåŒ–å·„ē§‘ęŠ€é›†å›¢ęœ‰é™å…¬åøē²¾ē»†åŒ–å·„åŽ‚'),
(59190, 49085, 'en', 'name', 'American Parkinson Disease Association'),
(59191, 49086, 'no_lang_code', 'name', 'FPoliSolutions (United States)'),
(59192, 49087, 'no_lang_code', 'name', 'Powerlink Queensland (Australia)'),
(59193, 49088, 'en', 'name', 'University of Battambang'),
(59194, 49089, 'en', 'name', 'Mental Health Association of Westchester County'),
(59195, 49090, 'en', 'name', 'Shizuoka Prefectural Board of Education'),
(59196, 49090, 'ja', 'name', 'é™å²”ēœŒę•™č‚²å§”å“”ä¼š'),
(59197, 49091, 'no_lang_code', 'name', 'Avery Dennison (United States)'),
(59198, 49092, 'en', 'name', 'Japan University Accreditation Association'),
(59199, 49092, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å¤§å­¦åŸŗęŗ–å”ä¼š');
INSERT INTO `ror_settings` VALUES
(59200, 49093, 'en', 'name', 'Society of Instrument and Control Engineers'),
(59201, 49093, 'ja', 'name', 'čØˆęø¬č‡Ŗå‹•åˆ¶å¾”å­¦ä¼š'),
(59202, 49094, 'ja', 'name', 'äø‰äŗ•é€ čˆ¹'),
(59203, 49094, 'no_lang_code', 'name', 'Mitsui Engineering and Shipbuilding (Japan)'),
(59204, 49095, 'en', 'name', 'Udupi Shri Admar Mutt Education Council'),
(59205, 49096, 'en', 'name', 'Fukuoka College of Health Sciences'),
(59206, 49096, 'ja', 'name', 'ē¦å²”åŒ»ē™‚ēŸ­ęœŸå¤§å­¦'),
(59207, 49097, 'en', 'name', 'Mitutoyo Association for Science and Technology'),
(59208, 49097, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ äø‰č±Šē§‘å­¦ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(59209, 49098, 'en', 'name', 'Islamic Azad University Pharmaceutical Sciences Branch'),
(59210, 49098, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų¹Ł„ŁˆŁ… دارویی'),
(59211, 49099, 'fr', 'name', 'UniversitƩ de Maradi'),
(59212, 49100, 'no_lang_code', 'name', 'Photolitec (United States)'),
(59213, 49101, 'en', 'name', 'Moscow Technological Institute'),
(59214, 49102, 'da', 'name', 'Forsvarets Materiel- og IndkĆøbsstyrelse'),
(59215, 49102, 'en', 'name', 'Danish Defence Acquisition and Logistics Organization'),
(59216, 49103, 'de', 'name', 'Marie Meierhofer Institut für das Kind'),
(59217, 49104, 'en', 'name', 'Kitsap Mental Health Services'),
(59218, 49105, 'no_lang_code', 'name', 'Agilent Technologies (Australia)'),
(59219, 49106, 'en', 'name', 'Niigata Prefectural Naoetsu Secondary School'),
(59220, 49106, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ē›“ę±Ÿę“„é«˜ē­‰å­¦ę ”'),
(59221, 49107, 'no_lang_code', 'name', 'Insero E-Mobility (Denmark)'),
(59222, 49108, 'en', 'name', 'Kanazawa Municipal Technical High School'),
(59223, 49108, 'ja', 'name', 'é‡‘ę²¢åø‚ē«‹å·„ę„­é«˜ē­‰å­¦ę ”'),
(59224, 49109, 'no_lang_code', 'name', 'Elekta (United Kingdom)'),
(59225, 49110, 'en', 'name', 'Kochi Technical High School'),
(59226, 49110, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹é«˜ēŸ„å·„ę„­é«˜ē­‰å­¦ę ”'),
(59227, 49111, 'es', 'name', 'Servicio Geológico Minero Argentino'),
(59228, 49112, 'no_lang_code', 'name', 'Moulton Bulb (United Kingdom)'),
(59229, 49113, 'en', 'name', 'Shenzhen Blood Center'),
(59230, 49113, 'zh', 'name', 'ę·±åœ³åø‚č”€ę¶²äø­åæƒ'),
(59231, 49114, 'no_lang_code', 'name', 'Spyryx Biosciences (United States)'),
(59232, 49115, 'en', 'name', 'Islamic Azad University Quchan'),
(59233, 49115, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł‚ŁˆŚ†Ų§Ł†'),
(59234, 49116, 'it', 'name', 'Wikimedia Italia'),
(59235, 49117, 'en', 'name', 'Cascade Bicycle Club Education Foundation'),
(59236, 49118, 'en', 'name', 'German Graduate School of Management and Law'),
(59237, 49119, 'pt', 'name', 'Wikimedia Portugal'),
(59238, 49120, 'en', 'name', 'Centre for Remote Health'),
(59239, 49121, 'fr', 'name', 'Association des MƩdecins VƩtƩrinaires du QuƩbec'),
(59240, 49122, 'en', 'name', 'Tottori Prefectural Yonago High School'),
(59241, 49122, 'ja', 'name', 'é³„å–ēœŒē«‹ē±³å­é«˜ē­‰å­¦ę ”'),
(59242, 49123, 'en', 'name', 'Tokyo Metropolitan Tachikawa High School'),
(59243, 49123, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ē«‹å·é«˜ē­‰å­¦ę ”'),
(59244, 49124, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ–ćƒŖćƒ‚ć‚¹ćƒˆćƒ³'),
(59245, 49124, 'no_lang_code', 'name', 'Bridgestone (Japan)'),
(59246, 49125, 'en', 'name', 'Shanxi Academy of Medical Sciences'),
(59247, 49125, 'zh', 'name', 'åŒ»å­¦ē§‘å­¦ē ”ē©¶é™¢å±±č„æ'),
(59248, 49126, 'en', 'name', 'Methodology Centre for Environment Assessment'),
(59249, 49127, 'en', 'name', 'Niswonger Foundation'),
(59250, 49128, 'no_lang_code', 'name', 'Transtria (United States)'),
(59251, 49129, 'en', 'name', 'Toyonaka City Board of Education'),
(59252, 49129, 'ja', 'name', 'ę•™č‚²å§”å“”ä¼š č±Šäø­åø‚'),
(59253, 49130, 'en', 'name', 'Saitama Prefectural Toyooka High School'),
(59254, 49130, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹č±Šå²”é«˜ē­‰å­¦ę ”'),
(59255, 49131, 'en', 'name', 'Child Health Foundation'),
(59256, 49132, 'no_lang_code', 'name', 'Toyoda Gosei (Germany)'),
(59257, 49133, 'no_lang_code', 'name', 'Tektronix (Japan)'),
(59258, 49134, 'tr', 'name', 'Aydın Adnan Menderes Üniversitesi Uygulama ve Araştırma Hastanesi'),
(59259, 49135, 'en', 'name', 'Boston Center for Independent Living'),
(59260, 49136, 'en', 'name', 'Sakura Walnut Kindergarten'),
(59261, 49137, 'en', 'name', 'National Defence College Kenya'),
(59262, 49138, 'en', 'name', 'Academy of Sciences of the Republic of Bashkortostan'),
(59263, 49138, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°ŃƒŠŗ Республики Š‘Š°ŃˆŠŗŠ¾Ń€Ń‚Š¾ŃŃ‚Š°Š½'),
(59264, 49139, 'en', 'name', 'Washington State University Spokane'),
(59265, 49140, 'en', 'name', 'Hiroshima Prefectural Rehabilitation Center'),
(59266, 49140, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹éšœå®³č€…ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(59267, 49141, 'en', 'name', 'London Hydro'),
(59268, 49142, 'en', 'name', 'International Centre for Sustainable Development of Energy, Water and Environment Systems'),
(59269, 49143, 'no_lang_code', 'name', 'West Pharmaceuticals (Germany)'),
(59270, 49144, 'en', 'name', 'Excelencia in Education'),
(59271, 49145, 'en', 'name', 'Bharti Hospital'),
(59272, 49146, 'en', 'name', 'University Consortium of Pori'),
(59273, 49146, 'fi', 'name', 'Porin yliopistokeskus'),
(59274, 49146, 'sv', 'name', 'Bjƶrneborgs universitetscenter'),
(59275, 49147, 'no_lang_code', 'name', 'Machfu (United States)'),
(59276, 49148, 'en', 'name', 'Institute for Research on Household Economics'),
(59277, 49148, 'ja', 'name', 'å®¶čØˆēµŒęøˆē ”ē©¶ę‰€'),
(59278, 49149, 'no_lang_code', 'name', 'Mirexus (Canada)'),
(59279, 49150, 'en', 'name', 'Shizuoka Prefectural Police'),
(59280, 49150, 'ja', 'name', 'é™å²”ēœŒč­¦åÆŸ'),
(59281, 49151, 'en', 'name', 'International Business College - Indianapolis'),
(59282, 49152, 'en', 'name', 'Ministry of Infrastructure'),
(59283, 49152, 'fr', 'name', 'MinistĆØre des Infrastructures'),
(59284, 49152, 'rw', 'name', 'Ministeri y''Ibikorwaremezo'),
(59285, 49153, 'en', 'name', 'Qinghai Provincial Peoples Hospital'),
(59286, 49153, 'zh', 'name', 'é’ęµ·ēœäŗŗę°‘åŒ»é™¢'),
(59287, 49154, 'en', 'name', 'British Society for Oral and Dental Research'),
(59288, 49155, 'no_lang_code', 'name', 'General Electric (Argentina)'),
(59289, 49156, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ£ćƒ‘ćƒ³ćƒ‡ć‚£ć‚¹ćƒ—ćƒ¬ć‚¤'),
(59290, 49156, 'no_lang_code', 'name', 'Japan Display (Japan)'),
(59291, 49157, 'en', 'name', 'Clayton Christensen Institute'),
(59292, 49158, 'en', 'name', 'Desmond and Leah Tutu Legacy Foundation'),
(59293, 49159, 'en', 'name', 'University Association for Research in Fundamental Psychopathology'),
(59294, 49160, 'no_lang_code', 'name', 'Medtronic (Israel)'),
(59295, 49161, 'no_lang_code', 'name', 'Zumtobel Group (Germany)'),
(59296, 49162, 'en', 'name', 'Quest International University Perak'),
(59297, 49163, 'ja', 'name', 'åå¤å±‹ēŸ­ęœŸå¤§å­¦'),
(59298, 49163, 'no_lang_code', 'name', 'Nagoya College'),
(59299, 49164, 'en', 'name', 'Industrial Plankton'),
(59300, 49165, 'en', 'name', 'Institute of History of Material Culture'),
(59301, 49165, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»ŃŒŠ½Š¾Š¹ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Š ŠŠ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(59302, 49166, 'en', 'name', 'International Institute for the Study of Religions'),
(59303, 49166, 'ja', 'name', 'å›½éš›å®—ę•™ē ”ē©¶ę‰€č²”å›£'),
(59304, 49167, 'en', 'name', 'Tokyo Rissho Junior College'),
(59305, 49167, 'ja', 'name', 'ę±äŗ¬ē«‹ę­£ēŸ­ęœŸå¤§å­¦'),
(59306, 49168, 'en', 'name', 'NewTech Network'),
(59307, 49169, 'en', 'name', 'St Clements University Higher Education School'),
(59308, 49170, 'no_lang_code', 'name', 'New Britain Palm Oil (Papua New Guinea)'),
(59309, 49171, 'en', 'name', 'Institute of Endemic Disease Control in Shandong Province'),
(59310, 49171, 'zh', 'name', 'å±±äøœēœåœ°ę–¹ē—…é˜²ę²»ē ”ē©¶ę‰€'),
(59311, 49172, 'no_lang_code', 'name', 'Citrine Informatics (United States)'),
(59312, 49173, 'no_lang_code', 'name', 'Envergex (United States)'),
(59313, 49174, 'en', 'name', 'Okayama City Ishii Elementary School'),
(59314, 49174, 'ja', 'name', 'å²”å±±åø‚ē«‹ēŸ³äŗ•å°å­¦ę ”'),
(59315, 49175, 'no_lang_code', 'name', 'Empire Genomics (United States)'),
(59316, 49176, 'en', 'name', 'Australian Federation of University Women – South Australia'),
(59317, 49177, 'en', 'name', 'Center for Teaching Quality'),
(59318, 49178, 'en', 'name', 'Cascades Volcano Observatory'),
(59319, 49179, 'en', 'name', 'Idaho Commission for Libraries'),
(59320, 49180, 'en', 'name', 'Chiba Prefectural Kimitsu Aoba High School'),
(59321, 49180, 'ja', 'name', 'åƒč‘‰ēœŒē«‹å›ę“„é’č‘‰é«˜ē­‰å­¦ę ”'),
(59322, 49181, 'no_lang_code', 'name', 'Orica (Singapore)'),
(59323, 49182, 'no_lang_code', 'name', 'Motility (United States)'),
(59324, 49183, 'en', 'name', 'Educational Results Partnership'),
(59325, 49184, 'en', 'name', 'China Academy of Traditional Chinese Medicine Hospital of Ophthalmology'),
(59326, 49184, 'zh', 'name', 'äø­å›½äø­åŒ»ē§‘å­¦é™¢ēœ¼ē§‘åŒ»é™¢'),
(59327, 49185, 'en', 'name', 'Aichi Prefectural Xincheng East High School'),
(59328, 49185, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ę–°åŸŽę±é«˜ē­‰å­¦ę ”'),
(59329, 49186, 'aa', 'name', 'å®®å“ŽēœŒē·åˆåšē‰©é¤Ø'),
(59330, 49186, 'en', 'name', 'Miyazaki Prefectural Museum of Nature and History'),
(59331, 49187, 'en', 'name', 'Wichita-Sedgwick County Historical Museum'),
(59332, 49188, 'no_lang_code', 'name', 'Sphaera Pharma (Singapore)'),
(59333, 49189, 'no_lang_code', 'name', 'Spectral Labs (United States)'),
(59334, 49190, 'en', 'name', 'National Institute of Technology, Kagawa College'),
(59335, 49190, 'ja', 'name', 'é¦™å·é«˜ē­‰å°‚é–€å­¦ę ”'),
(59336, 49191, 'en', 'name', 'Toyoshina High School'),
(59337, 49191, 'ja', 'name', 'č±Šē§‘é«˜ē­‰å­¦ę ”'),
(59338, 49192, 'no_lang_code', 'name', 'Woodmere Nursery (Canada)'),
(59339, 49193, 'no_lang_code', 'name', 'Universal Beauty Products (United States)'),
(59340, 49194, 'en', 'name', 'Medic One Foundation'),
(59341, 49195, 'no_lang_code', 'name', 'Optimisa Research (United Kingdom)'),
(59342, 49196, 'ja', 'name', 'åŒ—ęµ·é“åšē‰©é¤Ø'),
(59343, 49196, 'no_lang_code', 'name', 'Hokkaido Museum'),
(59344, 49197, 'no_lang_code', 'name', 'Samraksh (United States)'),
(59345, 49198, 'en', 'name', 'Royal Canadian Navy'),
(59346, 49198, 'fr', 'name', 'Marine Royale Canadienne'),
(59347, 49199, 'no_lang_code', 'name', 'Atlas Copco (United States)'),
(59348, 49200, 'no_lang_code', 'name', 'VoltServer (United States)'),
(59349, 49201, 'no_lang_code', 'name', 'Sigray (United States)'),
(59350, 49202, 'no_lang_code', 'name', 'Lincoln Electric (United States)'),
(59351, 49203, 'en', 'name', 'International Center for Not-for-Profit Law'),
(59352, 49204, 'en', 'name', 'Tri-County Council for Southern Maryland'),
(59353, 49205, 'en', 'name', 'Tokyo Union Theological Seminary'),
(59354, 49205, 'ja', 'name', 'ę±äŗ¬ē„žå­¦å¤§å­¦'),
(59355, 49206, 'no_lang_code', 'name', 'BioChain Institute (United States)'),
(59356, 49207, 'en', 'name', 'Japanese Circulation Society'),
(59357, 49207, 'ja', 'name', 'ę—„ęœ¬å¾Ŗē’°å™Øå­¦ä¼š'),
(59358, 49208, 'de', 'name', 'Fraunhofer-Institut für Bauphysik'),
(59359, 49208, 'en', 'name', 'Fraunhofer Institute for Building Physics'),
(59360, 49209, 'en', 'name', 'Imperial College of Toronto'),
(59361, 49210, 'no_lang_code', 'name', 'Accenture (Luxembourg)'),
(59362, 49211, 'en', 'name', 'Center on Education Policy'),
(59363, 49212, 'en', 'name', 'Central Florida Regional Planning Council'),
(59364, 49213, 'en', 'name', 'Foetal Alcohol Spectrum Disorders Clinic'),
(59365, 49214, 'en', 'name', 'Australasian Institute of Mining and Metallurgy'),
(59366, 49215, 'en', 'name', 'Second Affiliated Hospital of Xuzhou Medical College'),
(59367, 49215, 'zh', 'name', 'å¾å·žåŒ»å­¦é™¢ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(59368, 49216, 'en', 'name', 'Max Planck Institute Luxemburg for International, European and Regulatory Procedural Law'),
(59369, 49217, 'en', 'name', 'British Society for Antimicrobial Chemotherapy'),
(59370, 49218, 'en', 'name', 'Livestock & Meat Commission'),
(59371, 49219, 'en', 'name', 'Comfenalco Technological University Foundation'),
(59372, 49219, 'es', 'name', 'Fundación Universitaria Tecnológico Comfenalco Cartagena'),
(59373, 49220, 'en', 'name', 'Walker County Red Cross Hospital'),
(59374, 49220, 'zh', 'name', 'čŽ·å˜‰åŽæēŗ¢åå­—åŒ»é™¢'),
(59375, 49221, 'en', 'name', 'Jacaranda Health'),
(59376, 49222, 'en', 'name', 'Foundation For The Carolinas'),
(59377, 49223, 'no_lang_code', 'name', 'Rambus (United Kingdom)'),
(59378, 49224, 'fr', 'name', 'Sidaction'),
(59379, 49225, 'en', 'name', 'HPO Research Group'),
(59380, 49226, 'no_lang_code', 'name', 'TeleConsult Austria (Austria)'),
(59381, 49227, 'no_lang_code', 'name', 'Alcoa (Germany)'),
(59382, 49228, 'es', 'name', 'Universidad JosƩ Vasconcelos'),
(59383, 49229, 'en', 'name', 'British Society for Plant Pathology'),
(59384, 49230, 'en', 'name', 'Asia Network for Sustainable Agriculture and Bioresources'),
(59385, 49231, 'en', 'name', 'Global Child Nutrition Foundation'),
(59386, 49232, 'no_lang_code', 'name', 'Nippon Sheet Glass (United States)'),
(59387, 49233, 'en', 'name', 'Ministry of Agriculture and Livestock'),
(59388, 49234, 'no_lang_code', 'name', 'EnerSys (Switzerland)'),
(59389, 49235, 'en', 'name', 'San Diego Association of Governments'),
(59390, 49236, 'en', 'name', 'Anhui Provincial Meteorological Bureau'),
(59391, 49236, 'zh', 'name', 'å®‰å¾½ēœę°”č±”å±€'),
(59392, 49237, 'pt', 'name', 'Associação Brasileira de Terapia Celular'),
(59393, 49238, 'en', 'name', 'Kyoto Prefectural Institute of Public Health and Environment'),
(59394, 49238, 'ja', 'name', 'äŗ¬éƒ½åŗœäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(59395, 49239, 'en', 'name', 'Sanjo Municipal Tsukioka Elementary School'),
(59396, 49239, 'ja', 'name', 'äø‰ę”åø‚ē«‹ęœˆå²”å°å­¦ę ”'),
(59397, 49240, 'en', 'name', 'Osaka Prefectural Sano Polytechnic High School'),
(59398, 49240, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹ä½é‡Žå·„ē§‘é«˜ē­‰å­¦ę ”'),
(59399, 49241, 'no_lang_code', 'name', 'Fabmatics (Germany)'),
(59400, 49242, 'en', 'name', 'Royal Canadian Geographical Society'),
(59401, 49242, 'fr', 'name', 'La SociƩtƩ gƩographique royale du Canada'),
(59402, 49243, 'en', 'name', 'Victoria Police'),
(59403, 49244, 'no_lang_code', 'name', 'Commvault (United States)'),
(59404, 49245, 'no_lang_code', 'name', 'Johnson Controls (Canada)'),
(59405, 49246, 'ja', 'name', 'ę²–é›»ę°—å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(59406, 49246, 'no_lang_code', 'name', 'Oki Electric Industry (Japan)'),
(59407, 49247, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č±Šē”°č‡Ŗå‹•ē¹”ę©Ÿ,'),
(59408, 49247, 'no_lang_code', 'name', 'Toyota Industries (Japan)'),
(59409, 49248, 'en', 'name', 'American Society of News Editors'),
(59410, 49249, 'pt', 'name', 'Sociedade Brasileira de Educação MatemÔtica'),
(59411, 49250, 'no_lang_code', 'name', 'Helbio (Greece)'),
(59412, 49251, 'en', 'name', 'Parkinson''s Clinic of Eastern Toronto & Movement Disorders Centre'),
(59413, 49252, 'ja', 'name', 'ē›®é»’åÆ„ē”Ÿč™«é¤Ø'),
(59414, 49252, 'no_lang_code', 'name', 'Meguro Parasitological Museum'),
(59415, 49253, 'no_lang_code', 'name', 'Hubbell (United Kingdom)'),
(59416, 49254, 'en', 'name', 'Archaeological Institute of Kashihara'),
(59417, 49254, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹ę©æåŽŸč€ƒå¤å­¦ē ”ē©¶ę‰€'),
(59418, 49255, 'no_lang_code', 'name', 'SunEdison (Singapore)'),
(59419, 49256, 'no_lang_code', 'name', 'XG Sciences (United States)'),
(59420, 49257, 'de', 'name', 'KƤrntner Wirtschaftsfƶrderungs Fonds'),
(59421, 49257, 'en', 'name', 'Carinthian Economic Promotion Fund'),
(59422, 49258, 'en', 'name', 'NM Sadguru Water and Development Foundation'),
(59423, 49259, 'en', 'name', 'Tokyo National Museum'),
(59424, 49259, 'ja', 'name', 'ę±äŗ¬å›½ē«‹åšē‰©é¤Ø'),
(59425, 49260, 'no_lang_code', 'name', 'TE Connectivity (United Kingdom)'),
(59426, 49261, 'en', 'name', 'Sri Dharmasthala Manjunatheshwara Educational Society'),
(59427, 49261, 'kn', 'name', 'ą²Žą²øą³.ಔಿ.ą²Žą²‚ ą²¶ą³†ą³–ą²•ą³ą²·ą²£ą²æą²• ą²øą²‚ą²øą³ą²„ą³†'),
(59428, 49262, 'en', 'name', 'Committee for Economic Development'),
(59429, 49263, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ę±éƒØē™‚č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(59430, 49263, 'no_lang_code', 'name', 'Tobu Ryoiku Center'),
(59431, 49264, 'no_lang_code', 'name', 'Garrett Technologies (United States)'),
(59432, 49265, 'pt', 'name', 'Fundação PlanetÔrio da Cidade do Rio de Janeiro'),
(59433, 49266, 'en', 'name', 'Breastopia Namba Hospital'),
(59434, 49267, 'en', 'name', 'African Comprehensive HIV/AIDS Partnerships'),
(59435, 49268, 'en', 'name', 'East Asia Research'),
(59436, 49269, 'en', 'name', 'Matsumoto Meat Hygienic Inspection Center of Nagano Prefecture'),
(59437, 49269, 'ja', 'name', 'é•·é‡ŽēœŒę¾ęœ¬é£Ÿč‚‰č”›ē”Ÿę¤œęŸ»ę‰€'),
(59438, 49270, 'no_lang_code', 'name', 'Panacea Solution (United States)'),
(59439, 49271, 'no_lang_code', 'name', 'Nortek (United Kingdom)'),
(59440, 49272, 'pl', 'name', 'Samodzielny Publiczny Wojewódzki Szpital Zespolony im. Marii Skłodowskiej – Curie'),
(59441, 49273, 'en', 'name', 'Kanagawa Prefectural Shonan High School'),
(59442, 49273, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ę¹˜å—é«˜ē­‰å­¦ę ”'),
(59443, 49274, 'en', 'name', 'Constitutional Rights Foundation'),
(59444, 49275, 'es', 'name', 'Fundación Oikos'),
(59445, 49276, 'no_lang_code', 'name', 'Tellabs (Canada)'),
(59446, 49277, 'no_lang_code', 'name', 'Trading Technologies (United States)'),
(59447, 49278, 'en', 'name', 'Climate Foundation'),
(59448, 49279, 'en', 'name', 'Hakodate National Hospital'),
(59449, 49279, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å‡½é¤Øē—…é™¢'),
(59450, 49280, 'no_lang_code', 'name', 'Piovan (Canada)'),
(59451, 49281, 'no_lang_code', 'name', 'CiVentiChem (United States)'),
(59452, 49282, 'no_lang_code', 'name', 'Shimadzu (United Kingdom)'),
(59453, 49283, 'no_lang_code', 'name', 'Montana Emergent Technologies (United States)'),
(59454, 49284, 'en', 'name', 'Entomological Society of Canada'),
(59455, 49284, 'fr', 'name', 'SociĆ©tĆ© d’Entomologie du Canada'),
(59456, 49285, 'no_lang_code', 'name', 'BioFortis (United States)'),
(59457, 49286, 'en', 'name', 'Maisha Meds'),
(59458, 49287, 'en', 'name', 'Ishikawa Prefecture Archaeological Center'),
(59459, 49287, 'ja', 'name', 'ēŸ³å·ēœŒåŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æ'),
(59460, 49288, 'de', 'name', 'Schweizer Hochschule für Logopädie Rorschach'),
(59461, 49289, 'en', 'name', 'Makino Botanical Garden'),
(59462, 49289, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹ē‰§é‡Žę¤ē‰©åœ’'),
(59463, 49290, 'en', 'name', 'Islamic Azad University Bostanabad'),
(59464, 49290, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŲŒ بستان Ų¢ŲØŲ§ŲÆ'),
(59465, 49291, 'ko', 'name', 'ė§Œė„'),
(59466, 49291, 'no_lang_code', 'name', 'Mando Corporation (South Korea)'),
(59467, 49292, 'no_lang_code', 'name', 'Meritor (United Kingdom)'),
(59468, 49293, 'no_lang_code', 'name', 'Toshiba (United States)'),
(59469, 49294, 'en', 'name', 'Institute of Theoretical and Applied Electrodynamics'),
(59470, 49294, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теоретической Šø приклаГной ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š“ŠøŠ½Š°Š¼ŠøŠŗŠø Š ŠŠ'),
(59471, 49295, 'en', 'name', 'Pharmacy Guild of Australia'),
(59472, 49296, 'en', 'name', 'Institute of Applied Energy'),
(59473, 49296, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚Øćƒćƒ«ć‚®ćƒ¼ē·åˆå·„å­¦ē ”ē©¶ę‰€'),
(59474, 49297, 'no_lang_code', 'name', 'PNO Consultants (Netherlands)'),
(59475, 49298, 'en', 'name', 'Indigenous Language Institute'),
(59476, 49299, 'en', 'name', 'Fort Leavenworth Unified School District 207'),
(59477, 49300, 'en', 'name', 'Sagamihara City Museum'),
(59478, 49300, 'ja', 'name', 'ē›øęØ”åŽŸåø‚ē«‹åšē‰©é¤Ø'),
(59479, 49301, 'no_lang_code', 'name', 'Mara Renewables (Canada)'),
(59480, 49302, 'en', 'name', 'Kagawa Buried Cultural Property Center'),
(59481, 49302, 'ja', 'name', 'é¦™å·ēœŒåŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(59482, 49303, 'en', 'name', 'British Transplantation Society'),
(59483, 49304, 'de', 'name', 'Fraunhofer-Center für Maritime Logistik und Dienstleistungen'),
(59484, 49304, 'en', 'name', 'Fraunhofer Center for Maritime Logistics and Services'),
(59485, 49305, 'en', 'name', 'Kyoto Prefectural Board of Education'),
(59486, 49306, 'en', 'name', 'Beeches Hospital'),
(59487, 49307, 'no_lang_code', 'name', 'Samsung (Brazil)'),
(59488, 49308, 'en', 'name', 'Hanoi Lung Hospital'),
(59489, 49308, 'vi', 'name', 'Bệnh viện Phổi HĆ Nį»™i'),
(59490, 49309, 'no_lang_code', 'name', 'ArcticDx (Canada)'),
(59491, 49310, 'no_lang_code', 'name', 'Charmworks (United States)'),
(59492, 49311, 'en', 'name', 'Center for Study of Science Technology and Policy'),
(59493, 49312, 'en', 'name', 'Kanagawa Industrial Technology Center'),
(59494, 49312, 'ja', 'name', 'ē„žå„ˆå·ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(59495, 49313, 'en', 'name', 'Singing River Health System'),
(59496, 49314, 'no_lang_code', 'name', 'DenseLight Semiconductors (Singapore)'),
(59497, 49315, 'en', 'name', 'Plunkett Foundation'),
(59498, 49316, 'en', 'name', 'Shakarim State University Of Semey'),
(59499, 49316, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шакарима гороГа Демей'),
(59500, 49317, 'en', 'name', 'Institute for Advanced Energy Technologies'),
(59501, 49317, 'it', 'name', 'Istituto di Tecnologie Avanzate per l''Energia "Nicola Giordano"'),
(59502, 49318, 'en', 'name', 'Dr Vijay Kumar Foundation'),
(59503, 49319, 'de', 'name', 'Institut für Mikroökologie'),
(59504, 49320, 'no_lang_code', 'name', 'Teleflex (Germany)'),
(59505, 49321, 'en', 'name', 'Institute of Slavic Studies'),
(59506, 49321, 'pl', 'name', 'Instytut Slawistyki PAN'),
(59507, 49322, 'en', 'name', 'Almond Board of California'),
(59508, 49323, 'no_lang_code', 'name', 'Baxter (Switzerland)'),
(59509, 49324, 'en', 'name', 'Seika Women''s Junior College'),
(59510, 49324, 'ja', 'name', 'ē²¾čÆå„³å­ēŸ­ęœŸå¤§å­¦'),
(59511, 49325, 'en', 'name', 'Montgomery Museum & Lewis Miller Regional Art Center'),
(59512, 49326, 'cs', 'name', 'Ministerstvo spravedlnosti České republiky'),
(59513, 49326, 'en', 'name', 'Ministry of Justice'),
(59514, 49327, 'es', 'name', 'Universidad TƩcnica Latinoamericana'),
(59515, 49328, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ ę—„ē«‹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°'),
(59516, 49328, 'no_lang_code', 'name', 'Hitachi Engineering (Japan)'),
(59517, 49329, 'no_lang_code', 'name', 'Prozomix (United Kingdom)'),
(59518, 49330, 'no_lang_code', 'name', 'Geomechanica (Canada)'),
(59519, 49331, 'bn', 'name', 'উইকিমিঔিয়া বাংলাদেশ'),
(59520, 49331, 'no_lang_code', 'name', 'Wikimedia Bangladesh'),
(59521, 49332, 'no_lang_code', 'name', '3M (Israel)'),
(59522, 49333, 'de', 'name', 'Schweizerischer Versicherungsverband'),
(59523, 49333, 'en', 'name', 'Swiss Insurance Association'),
(59524, 49334, 'no_lang_code', 'name', 'PROTO Manufacturing (Canada)'),
(59525, 49335, 'no_lang_code', 'name', 'Autoliv (United Kingdom)'),
(59526, 49336, 'no_lang_code', 'name', 'SimPlan (Germany)'),
(59527, 49337, 'en', 'name', 'Willow Breast and Hereditary Cancer Support'),
(59528, 49338, 'en', 'name', 'Padres Contra El CƔncer'),
(59529, 49339, 'pt', 'name', 'Instituto Kairós'),
(59530, 49340, 'no_lang_code', 'name', 'Helios-NRG (United States)'),
(59531, 49341, 'en', 'name', 'Narashino Municipal Narashino High School'),
(59532, 49341, 'ja', 'name', 'ēæ’åæ—é‡Žåø‚ē«‹ēæ’åæ—é‡Žé«˜ē­‰å­¦ę ”'),
(59533, 49342, 'en', 'name', 'Aomori Prefectural Mito High School'),
(59534, 49342, 'ja', 'name', 'é’ę£®ēœŒē«‹äø‰ęˆøé«˜ē­‰å­¦ę ”'),
(59535, 49343, 'en', 'name', 'Natural History Museum and Institute'),
(59536, 49343, 'ja', 'name', 'åƒč‘‰ēœŒē«‹äø­å¤®åšē‰©é¤Ø'),
(59537, 49344, 'no_lang_code', 'name', 'STMicroelectronics (Malta)'),
(59538, 49345, 'no_lang_code', 'name', 'Xfibra (United States)'),
(59539, 49346, 'en', 'name', 'HealthforAnimals'),
(59540, 49347, 'no_lang_code', 'name', 'ITT (United Kingdom)'),
(59541, 49348, 'no_lang_code', 'name', 'GD Goenka University'),
(59542, 49349, 'en', 'name', 'Health & Development International'),
(59543, 49350, 'pt', 'name', 'Associação Brasileira de Recursos Hídricos'),
(59544, 49351, 'en', 'name', 'Aichi Prefectural Higashiura High School'),
(59545, 49351, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹ę±ęµ¦é«˜ē­‰å­¦ę ”'),
(59546, 49352, 'en', 'name', 'Royal Historical Society'),
(59547, 49353, 'en', 'name', 'Centre for Regional and International STI Studies and Support'),
(59548, 49354, 'en', 'name', 'Fujita Animal Hospital'),
(59549, 49354, 'ja', 'name', '藤田動物病院'),
(59550, 49355, 'en', 'name', 'Edo Tokyo Museum'),
(59551, 49355, 'ja', 'name', 'ę±Ÿęˆøę±äŗ¬åšē‰©é¤Ø'),
(59552, 49356, 'ja', 'name', 'ę—„ęœ¬é›»ę³¢å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(59553, 49356, 'no_lang_code', 'name', 'Nihon Dempa Kogyo (Japan)'),
(59554, 49357, 'en', 'name', 'Achievement Rewards for College Scientists Foundation'),
(59555, 49358, 'no_lang_code', 'name', 'GlobalFoundries (United Kingdom)'),
(59556, 49359, 'no_lang_code', 'name', 'NXP (United States)'),
(59557, 49360, 'en', 'name', 'Guangdong Open University'),
(59558, 49360, 'zh', 'name', 'å¹æäøœå¼€ę”¾å¤§å­¦'),
(59559, 49361, 'fr', 'name', 'Institut Suisse de SpƩlƩologie et de Karstologie'),
(59560, 49362, 'en', 'name', 'Santa Rosa Memorial Hospital'),
(59561, 49363, 'en', 'name', 'East Bay Educational Collaborative'),
(59562, 49364, 'fa', 'name', 'دانؓگاه Ų¬ŁˆŲ²Ų¬Ų§Ł†ā€Žā€Ž'),
(59563, 49364, 'no_lang_code', 'name', 'Jozjan university'),
(59564, 49365, 'fr', 'name', 'Association pour la recherche sur la SclƩrose LatƩrale Amyotrophique'),
(59565, 49366, 'ar', 'name', 'المنظمة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ…'),
(59566, 49366, 'en', 'name', 'Arab League Educational, Cultural and Scientific Organization'),
(59567, 49367, 'en', 'name', 'Wildlife Conservation Society India'),
(59568, 49368, 'en', 'name', 'Institute of Law'),
(59569, 49368, 'zh', 'name', '中国法学网'),
(59570, 49369, 'en', 'name', 'Albert Wisner Public Library'),
(59571, 49370, 'en', 'name', 'Edvance Foundation'),
(59572, 49371, 'en', 'name', 'Okazaki Senior High School'),
(59573, 49371, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å²”å“Žé«˜ē­‰å­¦ę ”'),
(59574, 49372, 'en', 'name', 'Suzuka Junior College'),
(59575, 49372, 'ja', 'name', '鈓鹿短期大学'),
(59576, 49373, 'en', 'name', 'Yunusov Institute of the Chemistry of Plant Substances'),
(59577, 49373, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии Ń€Š°ŃŃ‚ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… веществ им. акаГ. Š”.Š®. Юнусова АкаГемии ŠŠ°ŃƒŠŗ Республики Узбекистан'),
(59578, 49373, 'uz', 'name', 'C.Yu.Yunusov Nomidagi O’simlik Moddalari Kimyosi Instituti'),
(59579, 49374, 'en', 'name', 'Kumamoto Industrial Research Institute'),
(59580, 49374, 'ja', 'name', 'ē†Šęœ¬ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(59581, 49375, 'no_lang_code', 'name', 'S. P. Korolev Rocket and Space Corporation Energia (Russia)'),
(59582, 49375, 'ru', 'name', 'Ракетно-ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŗŠ¾Ń€ŠæŠ¾Ń€Š°Ń†ŠøŃ Ā«Š­Š½ŠµŃ€Š³ŠøŃĀ» им. Š”. П. ŠšŠ¾Ń€Š¾Š»Ń‘Š²Š°'),
(59583, 49376, 'no_lang_code', 'name', 'Singulus (Germany)'),
(59584, 49377, 'en', 'name', 'Lowy Institute for International Policy'),
(59585, 49378, 'no_lang_code', 'name', 'Bühler (United Kingdom)'),
(59586, 49379, 'en', 'name', 'Zhejiang Institute of Mechanical and Electrical Engineering'),
(59587, 49379, 'zh', 'name', 'ęµ™ę±Ÿęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(59588, 49380, 'en', 'name', 'Gersevanov Research Institute of Bases and Underground Structures'),
(59589, 49380, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠøŠ·Ń‹ŃŠŗŠ°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оснований Šø поГземных ŃŠ¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠ¹'),
(59590, 49381, 'no_lang_code', 'name', 'Bionix Development (United States)'),
(59591, 49382, 'ja', 'name', 'ä½å‹ē²¾åÆ†å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(59592, 49382, 'no_lang_code', 'name', 'Sumitomo Precision Products (Japan)'),
(59593, 49383, 'no_lang_code', 'name', 'Electrolux (Australia)'),
(59594, 49384, 'no_lang_code', 'name', 'Eureka Lighting (Canada)'),
(59595, 49385, 'no_lang_code', 'name', 'General Engineering and Research (United States)'),
(59596, 49386, 'et', 'name', 'Informaatika ja Arvutustehnika Instituut'),
(59597, 49386, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информатики Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники'),
(59598, 49387, 'en', 'name', 'National Astrophysics Laboratory'),
(59599, 49387, 'pt', 'name', 'Laboratório Nacional de Astrofísica'),
(59600, 49388, 'en', 'name', 'Hunt Institute'),
(59601, 49389, 'no_lang_code', 'name', 'Universal Trim Supply (Taiwan)'),
(59602, 49390, 'de', 'name', 'Immanuel Krankenhaus'),
(59603, 49391, 'no_lang_code', 'name', 'Marinvent (Canada)'),
(59604, 49392, 'no_lang_code', 'name', 'Cypress Semiconductor Corporation (Japan)'),
(59605, 49393, 'en', 'name', 'Alzheimer''s Association of Israel'),
(59606, 49394, 'no_lang_code', 'name', 'Xdot Engineering and Analysis (United States)'),
(59607, 49395, 'en', 'name', 'Esperanza International'),
(59608, 49396, 'no_lang_code', 'name', 'Landesgewerbeanstalt Bayern (Germany)'),
(59609, 49397, 'no_lang_code', 'name', 'Ottobock (Austria)'),
(59610, 49398, 'no_lang_code', 'name', 'Science City York (United Kingdom)'),
(59611, 49399, 'en', 'name', 'Ministry of Agriculture and Forests'),
(59612, 49400, 'no_lang_code', 'name', 'Voith (United States)'),
(59613, 49401, 'ja', 'name', 'åÆŒå£«é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(59614, 49401, 'no_lang_code', 'name', 'Fuji Electric (Japan)'),
(59615, 49402, 'ja', 'name', 'åÆŒå±±ēœŒē«‹é«˜å²”é«˜ē­‰å­¦ę ”'),
(59616, 49402, 'no_lang_code', 'name', 'Toyama Prefectural Takaoka High School'),
(59617, 49403, 'no_lang_code', 'name', 'Wikimedia ZA'),
(59618, 49404, 'en', 'name', 'Air Force Institute of Aviation Medicine Affiliated Hospital'),
(59619, 49404, 'zh', 'name', 'čˆŖē©ŗåŒ»å­¦ē ”ē©¶ę‰€é™„å±žåŒ»é™¢'),
(59620, 49405, 'no_lang_code', 'name', 'Maxim Integrated (United States)'),
(59621, 49406, 'en', 'name', 'Tokyo Metropolitan Fuchu High School'),
(59622, 49406, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹åŗœäø­é«˜ē­‰å­¦ę ”'),
(59623, 49407, 'no_lang_code', 'name', 'Universal Biologics (United States)'),
(59624, 49408, 'no_lang_code', 'name', 'Dymenso (United States)'),
(59625, 49409, 'en', 'name', 'Forestry Tasmania'),
(59626, 49410, 'el', 'name', 'Ī Ī‘Ī™Ī”Ī‘Ī“Ī©Ī“Ī™ĪšĪŸ Ī™ĪĪ£Ī¤Ī™Ī¤ĪŸĪ„Ī¤ĪŸ Κ΄ΠΔΟ΄'),
(59627, 49410, 'en', 'name', 'Cyprus Pedagogical Institute'),
(59628, 49411, 'en', 'name', 'Guangdong Provincial Family Planning Hospital'),
(59629, 49411, 'zh', 'name', 'å¹æäøœēœč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(59630, 49412, 'fr', 'name', 'UniversitƩ Constantine 2'),
(59631, 49413, 'no_lang_code', 'name', 'Genus Oncology (United States)'),
(59632, 49414, 'no_lang_code', 'name', 'PureTech (United States)'),
(59633, 49415, 'no_lang_code', 'name', 'Assa Abloy (United Kingdom)'),
(59634, 49416, 'en', 'name', 'Nagano Prefecural Nagano Senior High School'),
(59635, 49416, 'ja', 'name', 'é•·é‡ŽēœŒé•·é‡Žé«˜ē­‰å­¦ę ”'),
(59636, 49417, 'sv', 'name', 'Gƶteborgs TandlƤkare SƤllskap'),
(59637, 49418, 'no_lang_code', 'name', 'Ecolab (Germany)'),
(59638, 49419, 'en', 'name', 'Ukrainian Research Institute of Refractories named after A.S. Berezhnoy'),
(59639, 49419, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вогнетривів'),
(59640, 49420, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł…ŁŠŲ±Ų§'),
(59641, 49420, 'en', 'name', 'Jumeira University'),
(59642, 49421, 'ja', 'name', 'ć‚¹ćƒćƒ¼ćƒ«'),
(59643, 49421, 'no_lang_code', 'name', 'Stihl (Japan)'),
(59644, 49422, 'en', 'name', 'Niigata Prefectural Niigata Central High School'),
(59645, 49422, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ę–°ę½Ÿäø­å¤®é«˜ē­‰å­¦ę ”'),
(59646, 49423, 'en', 'name', 'National Institute for the Psychotherapies'),
(59647, 49424, 'en', 'name', 'Institute of Marine Geology and Geophysics'),
(59648, 49424, 'vi', 'name', 'Viện Địa chįŗ„t vĆ  Địa vįŗ­t lý biển'),
(59649, 49425, 'no_lang_code', 'name', 'Scientific Games (Austria)'),
(59650, 49426, 'en', 'name', 'Isles International University'),
(59651, 49426, 'ga', 'name', 'Isles Ollscoil IdirnÔisiúnta'),
(59652, 49427, 'no_lang_code', 'name', 'Dana (Canada)'),
(59653, 49428, 'no_lang_code', 'name', 'Gentherm (Germany)'),
(59654, 49429, 'en', 'name', 'Islamic Azad University Janah'),
(59655, 49429, 'fa', 'name', 'Ų§Ų³Ł„Ų§Ł…ŪŒ ŪŒŲ§Ł†Ų§ دانؓگاه Ų¢Ų²Ų§ŲÆ'),
(59656, 49430, 'en', 'name', 'Mississippi Youth Wheelchair League'),
(59657, 49431, 'en', 'name', 'Sophia School of Social Welfare'),
(59658, 49431, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ć®ć‚½ćƒ•ć‚£ć‚¢ćƒ»ć‚¹ć‚Æćƒ¼ćƒ«'),
(59659, 49432, 'ja', 'name', 'é³„å–ēŸ­ęœŸå¤§å­¦'),
(59660, 49432, 'no_lang_code', 'name', 'Tottori College'),
(59661, 49433, 'no_lang_code', 'name', 'Protec Laboratories (United States)'),
(59662, 49434, 'no_lang_code', 'name', 'Universal Alloy (United States)'),
(59663, 49435, 'no_lang_code', 'name', 'Imerys (Austria)'),
(59664, 49436, 'no_lang_code', 'name', 'Solid Cell (United States)'),
(59665, 49437, 'en', 'name', 'Alpha Omega Alpha Medical Honor Society'),
(59666, 49438, 'pt', 'name', 'Fundação Estadual de Proteção Ambiental Henrique Luiz Roessler'),
(59667, 49439, 'no_lang_code', 'name', 'Ball (United Kingdom)'),
(59668, 49440, 'en', 'name', 'Geological Society of London'),
(59669, 49441, 'no_lang_code', 'name', 'ViVitro Labs (Canada)'),
(59670, 49442, 'en', 'name', 'National Institutes for Cultural Heritage'),
(59671, 49442, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ę–‡åŒ–č²”'),
(59672, 49443, 'no_lang_code', 'name', 'United Microelectronics (Taiwan)'),
(59673, 49443, 'zh', 'name', 'čÆčÆé›»å­'),
(59674, 49444, 'en', 'name', 'International Institute for Child Rights and Development'),
(59675, 49445, 'en', 'name', 'Nagasaki Prefectural Nagasaki Technical High School'),
(59676, 49445, 'ja', 'name', 'é•·å“ŽēœŒē«‹é•·å“Žå·„ę„­é«˜ē­‰å­¦ę ”'),
(59677, 49446, 'no_lang_code', 'name', 'Agri-Neo (Canada)'),
(59678, 49447, 'no_lang_code', 'name', 'Fastman (United States)'),
(59679, 49448, 'da', 'name', 'Wikimedia Danmark'),
(59680, 49449, 'pt', 'name', 'Prefeitura Municipal de Sapiranga'),
(59681, 49450, 'en', 'name', 'Breastscreen Victoria'),
(59682, 49451, 'no_lang_code', 'name', 'Power Integrations (United States)'),
(59683, 49452, 'en', 'name', 'Chinese Academy of International Trade and Economic Cooperation'),
(59684, 49452, 'zh', 'name', 'å•†åŠ”éƒØå›½é™…č“øę˜“ē»ęµŽåˆä½œē ”ē©¶é™¢'),
(59685, 49453, 'de', 'name', 'Fraunhofer-Institut für Software- und Systemtechnik'),
(59686, 49453, 'en', 'name', 'Fraunhofer Institute for Software and Systems Engineering'),
(59687, 49454, 'en', 'name', 'Islamic Azad University Ardabil'),
(59688, 49454, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ų±ŲÆŲØŪŒŁ„'),
(59689, 49455, 'en', 'name', 'Association for Public Policy Analysis and Management'),
(59690, 49456, 'no_lang_code', 'name', 'Hoerbiger (Austria)'),
(59691, 49457, 'en', 'name', 'BCS — The Chartered Institute for IT'),
(59692, 49458, 'en', 'name', 'American Society For Nanomedicine'),
(59693, 49459, 'no_lang_code', 'name', 'Andritz (Germany)'),
(59694, 49460, 'en', 'name', 'Global Libraries - Bulgaria Foundation'),
(59695, 49461, 'no_lang_code', 'name', 'NanoCytomics (United States)'),
(59696, 49462, 'en', 'name', 'Tamil Nadu Forest Plantation (India)'),
(59697, 49463, 'en', 'name', 'Academy of Osseointegration'),
(59698, 49464, 'no_lang_code', 'name', 'Promoscience (Italy)'),
(59699, 49465, 'en', 'name', 'Fort Worth Library'),
(59700, 49466, 'en', 'name', 'Provision Healthcare'),
(59701, 49467, 'ja', 'name', 'ē«‹å±±ć‚«ćƒ«ćƒ‡ćƒ©ē ‚é˜²åšē‰©é¤Ø'),
(59702, 49467, 'no_lang_code', 'name', 'Tateyama Caldera Sabo Museum'),
(59703, 49468, 'en', 'name', 'U.S. Global Leadership Coalition'),
(59704, 49469, 'en', 'name', 'Brazilian College of Animal Reproduction'),
(59705, 49469, 'pt', 'name', 'Colégio Brasileiro de Reprodução Animal'),
(59706, 49470, 'en', 'name', 'East, Central and Southern Africa Health Community'),
(59707, 49471, 'no_lang_code', 'name', 'Mars Space (United Kingdom)'),
(59708, 49472, 'no_lang_code', 'name', 'CellMosaic (United States)'),
(59709, 49473, 'nl', 'name', 'Helen Dowling Instituut'),
(59710, 49474, 'en', 'name', 'Rubber Research Institute of Sri Lanka'),
(59711, 49475, 'no_lang_code', 'name', 'Hyperv Technologies (United States)'),
(59712, 49476, 'no_lang_code', 'name', 'Beijing Seismological Bureau'),
(59713, 49476, 'zh', 'name', 'åŒ—äŗ¬åø‚åœ°éœ‡å±€'),
(59714, 49477, 'no_lang_code', 'name', 'Colby Pharmaceutical (United States)'),
(59715, 49478, 'no_lang_code', 'name', 'Cypress Semiconductor Corporation (Belgium)'),
(59716, 49479, 'en', 'name', 'Drammen Hospital'),
(59717, 49479, 'no', 'name', 'Drammen Sykehus'),
(59718, 49480, 'no_lang_code', 'name', 'BASF (United Kingdom)'),
(59719, 49481, 'no_lang_code', 'name', 'Monodraught (United Kingdom)'),
(59720, 49482, 'en', 'name', 'Market Economy Institute'),
(59721, 49482, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒĢŃ‚ пробле́м ры́нка Российской АкаГемии наук'),
(59722, 49483, 'no_lang_code', 'name', 'Foton Motors (China)'),
(59723, 49483, 'zh', 'name', 'åŒ—ę±½ē¦ē”°'),
(59724, 49484, 'en', 'name', 'National Hospital Organization Takamatsu Medical Center'),
(59725, 49484, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹é«˜ę¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(59726, 49485, 'en', 'name', 'American Nephrology Nurses Association'),
(59727, 49486, 'es', 'name', 'Instituto de Investigaciones AvĆ­colas'),
(59728, 49487, 'no_lang_code', 'name', 'Attollo Engineering (United States)'),
(59729, 49488, 'en', 'name', 'State Research Institute for Restoration'),
(59730, 49488, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ реставрации'),
(59731, 49489, 'en', 'name', 'Saitama Prefectural Urawa High School'),
(59732, 49489, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ęµ¦å’Œé«˜ę ”'),
(59733, 49490, 'en', 'name', 'Nara National Research Institute for Cultural Properties'),
(59734, 49490, 'ja', 'name', 'å„ˆč‰Æę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(59735, 49491, 'es', 'name', 'Universidad de Lambayeque'),
(59736, 49492, 'en', 'name', 'American Association of Family and Consumer Sciences'),
(59737, 49493, 'en', 'name', 'Craven County Schools'),
(59738, 49494, 'en', 'name', 'Sanya City Women and Children Hospital'),
(59739, 49495, 'no_lang_code', 'name', 'Engenuics (Canada)'),
(59740, 49496, 'en', 'name', 'Okayama Prefecture Education Center'),
(59741, 49496, 'ja', 'name', 'å²”å±±ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(59742, 49497, 'en', 'name', 'Institute of Water and Sanitation Development'),
(59743, 49498, 'en', 'name', 'Bibliographical Society'),
(59744, 49499, 'en', 'name', 'Niigata Prefectural Ojiya Nishi High School'),
(59745, 49499, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹å°åƒč°·č„æé«˜ē­‰å­¦ę ”'),
(59746, 49500, 'en', 'name', 'Nordic Centre for Welfare and Social Issues'),
(59747, 49500, 'fi', 'name', 'Nordic Centre for Welfare ja sosiaaliset kysymykset'),
(59748, 49501, 'de', 'name', 'Bergmann und Partner RechtsanwƤlte'),
(59749, 49502, 'no_lang_code', 'name', 'Karachaevo-Cherkessk State University'),
(59750, 49502, 'ru', 'name', 'ŠšŠ°Ń€Š°Ń‡Š°ŠµŠ²Š¾-Черкесский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(59751, 49503, 'en', 'name', 'North Orange County Community College District'),
(59752, 49504, 'en', 'name', 'New Zealand Educational Administration and Leadership Society'),
(59753, 49505, 'en', 'name', 'California County Superintendents Educational Services Association'),
(59754, 49506, 'en', 'name', 'Wikimedia Ɩsterreich'),
(59755, 49507, 'en', 'name', 'Yamaguchi Prefecture Archives'),
(59756, 49507, 'ja', 'name', 'å±±å£ēœŒę–‡ę›øé¤Ø'),
(59757, 49508, 'en', 'name', 'Center for Business Studies'),
(59758, 49509, 'es', 'name', 'Universidad Tecnológica de Nezahualcóyotl'),
(59759, 49510, 'en', 'name', 'Belgrade Community Library'),
(59760, 49511, 'no_lang_code', 'name', 'Medical Cyberworlds (United States)'),
(59761, 49512, 'no_lang_code', 'name', 'Microchip Technology (Germany)'),
(59762, 49513, 'en', 'name', 'Luoyang Orthopedic-Traumatological Hospital of Henan Province'),
(59763, 49513, 'zh', 'name', 'ę²³å—ēœę“›é˜³ę­£éŖØåŒ»é™¢'),
(59764, 49514, 'no_lang_code', 'name', 'SimulTel (United States)'),
(59765, 49515, 'en', 'name', 'Institute for Family Development'),
(59766, 49516, 'no_lang_code', 'name', 'TravelAI (United Kingdom)'),
(59767, 49517, 'en', 'name', 'Canadian Urology Research Consortium'),
(59768, 49518, 'no_lang_code', 'name', 'Whakauae Research (New Zealand)'),
(59769, 49519, 'no_lang_code', 'name', 'Perma Works (United States)'),
(59770, 49520, 'no_lang_code', 'name', 'Michelin (Switzerland)'),
(59771, 49521, 'en', 'name', 'Rhode Island Commerce Corporation'),
(59772, 49522, 'en', 'name', 'Kurashiki City College'),
(59773, 49522, 'ja', 'name', 'å€‰ę•·åø‚ē«‹ēŸ­ęœŸå¤§å­¦'),
(59774, 49523, 'no_lang_code', 'name', 'Radar (United States)'),
(59775, 49524, 'no_lang_code', 'name', 'Husky Injection Molding Systems (Canada)'),
(59776, 49525, 'no_lang_code', 'name', 'East Institute Refractories (Russia)'),
(59777, 49525, 'ru', 'name', 'Восточный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Š³Š½ŠµŃƒŠæŠ¾Ń€Š¾Š²'),
(59778, 49526, 'ja', 'name', 'åŒ—ę‘å±±å…¬ē«‹ē—…é™¢'),
(59779, 49526, 'no_lang_code', 'name', 'Kitamurayama Hospital'),
(59780, 49527, 'no_lang_code', 'name', 'Terramera (Canada)'),
(59781, 49528, 'en', 'name', 'Mauritius Sugarcane Industry Research Institute'),
(59782, 49528, 'fr', 'name', 'Institut de recherches de l''industrie sucriĆØre de Maurice'),
(59783, 49529, 'en', 'name', 'Tokyo Metropolitan Aoyama High School'),
(59784, 49529, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹é’å±±é«˜ē­‰å­¦ę ”'),
(59785, 49530, 'en', 'name', 'Nagano Prefectural Agricultural University'),
(59786, 49530, 'ja', 'name', 'č¾²ę„­å¤§å­¦ć«é•·é‡ŽēœŒ'),
(59787, 49531, 'en', 'name', 'Dairy Farming Promotion Organization'),
(59788, 49532, 'en', 'name', 'Chicago Zoological Society'),
(59789, 49533, 'en', 'name', 'L.V. Pisarzhevskii Institute of Physical Chemistry'),
(59790, 49533, 'uk', 'name', 'Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š†Š—Š˜Š§ŠŠžŠ‡ Š„Š†ŠœŠ†Š‡ Š†ŠœŠ•ŠŠ† Š›. Š’. ŠŸŠ˜Š”ŠŠ Š–Š•Š’Š”Š¬ŠšŠžŠ“Šž ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠžŠ‡ ŠŠšŠŠ”Š•ŠœŠ†Š‡ ŠŠŠ£Šš Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(59791, 49534, 'en', 'name', 'Nigerian Stored Products Research Institute'),
(59792, 49535, 'no_lang_code', 'name', 'Hewlett-Packard (Israel)'),
(59793, 49536, 'no_lang_code', 'name', 'eBay (United States)'),
(59794, 49537, 'en', 'name', 'Ishikawa Prefectural Nursing School'),
(59795, 49537, 'ja', 'name', 'ēŸ³å·ēœŒē«‹ē·åˆēœ‹č­·å°‚é–€å­¦ę ”'),
(59796, 49538, 'ja', 'name', 'å¾³å·é»Žę˜Žä¼š'),
(59797, 49538, 'no_lang_code', 'name', 'Tokugawa Reimeikai Foundation'),
(59798, 49539, 'es', 'name', 'Wikimedia Venezuela'),
(59799, 49540, 'en', 'name', 'Innaxis Foundation & Research Institute'),
(59800, 49540, 'es', 'name', 'Fundacion Instituto de Investigacion Innaxis'),
(59801, 49541, 'no_lang_code', 'name', 'Lam Research (Austria)'),
(59802, 49542, 'no_lang_code', 'name', 'Brunswick International Freight Terminal (United Kingdom)'),
(59803, 49543, 'en', 'name', 'Shaanxi Institute of Zoology'),
(59804, 49543, 'zh', 'name', 'é™•č„æēœåŠØē‰©ē ”ē©¶ę‰€'),
(59805, 49544, 'no_lang_code', 'name', 'Parker Hannifin (Germany)'),
(59806, 49545, 'en', 'name', 'Foundation of Global Life Learning Center'),
(59807, 49545, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ ē”Ÿę¶Æå­¦ēæ’é–‹ē™ŗč²”å›£ 事務局'),
(59808, 49546, 'no_lang_code', 'name', 'Mann+Hummel (Germany)'),
(59809, 49547, 'en', 'name', 'World Association of Zoos and Aquariums'),
(59810, 49548, 'pt', 'name', 'Comissão Executiva do Plano da Lavoura Cacaueira'),
(59811, 49549, 'no_lang_code', 'name', 'VLNComm (United States)'),
(59812, 49550, 'en', 'name', 'Center for Law and Social Policy'),
(59813, 49551, 'en', 'name', 'Daqing Normal University'),
(59814, 49551, 'zh', 'name', 'å¤§åŗ†åøˆčŒƒå­¦é™¢'),
(59815, 49552, 'en', 'name', 'Kumamoto Prefectural Police'),
(59816, 49552, 'ja', 'name', 'ē†Šęœ¬ēœŒč­¦åÆŸ'),
(59817, 49553, 'no_lang_code', 'name', 'Atkins (United States)'),
(59818, 49554, 'no_lang_code', 'name', 'Saurer (Germany)'),
(59819, 49555, 'pt', 'name', 'Associação Brasileira de Literatura Comparada'),
(59820, 49556, 'en', 'name', 'Niigata College of Technology'),
(59821, 49556, 'ja', 'name', 'ę–°ę½Ÿå·„ę„­ēŸ­ęœŸå¤§å­¦'),
(59822, 49557, 'en', 'name', 'Institute of Politics and Economy'),
(59823, 49557, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę”æę²»ēµŒęøˆē ”ē©¶ę‰€'),
(59824, 49558, 'en', 'name', 'DSST Public Schools'),
(59825, 49559, 'no_lang_code', 'name', 'Siemens (Australia)'),
(59826, 49560, 'en', 'name', 'Friends of the Seattle Public Library'),
(59827, 49561, 'no_lang_code', 'name', 'Becton Dickinson (United Kingdom)'),
(59828, 49562, 'ja', 'name', 'ę±čŠę©Ÿę¢°'),
(59829, 49562, 'no_lang_code', 'name', 'Toshiba Machine (Japan)'),
(59830, 49563, 'en', 'name', 'Foundation for Healthy Generations'),
(59831, 49564, 'no_lang_code', 'name', 'Toho Gakuen'),
(59832, 49565, 'de', 'name', 'Internationales Institut für Wald und Holz'),
(59833, 49566, 'en', 'name', 'Maritsa Vegetable Crops Research Institute'),
(59834, 49567, 'en', 'name', 'Alameda County Library'),
(59835, 49568, 'en', 'name', 'Connecticut Department of Rehabilitation Services'),
(59836, 49569, 'no_lang_code', 'name', 'Confluence Life Sciences (United States)'),
(59837, 49570, 'en', 'name', 'Alliance for Education'),
(59838, 49571, 'en', 'name', 'Central United States Earthquake Consortium'),
(59839, 49572, 'en', 'name', 'Osaka Center For Cultural Heritage'),
(59840, 49572, 'ja', 'name', 'å¤§é˜Ŗåŗœę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(59841, 49573, 'pt', 'name', 'Prefeitura Municipal de TauĆ”'),
(59842, 49574, 'es', 'name', 'Instituto de GeofĆ­sica y AstronomĆ­a'),
(59843, 49575, 'no_lang_code', 'name', 'TRUMPF (Austria)'),
(59844, 49576, 'en', 'name', 'Institute of Materials, Minerals and Mining'),
(59845, 49577, 'no_lang_code', 'name', 'Integrated Technologies & Services International (United States)'),
(59846, 49578, 'en', 'name', 'International Biodeterioration Biodegradation Society'),
(59847, 49579, 'en', 'name', 'Friends of the New York State Library'),
(59848, 49580, 'no_lang_code', 'name', 'Ceragon (Israel)'),
(59849, 49581, 'no_lang_code', 'name', 'Element Six (Germany)'),
(59850, 49582, 'en', 'name', 'Peter White Public Library'),
(59851, 49583, 'en', 'name', 'National Livestock Breeding Center'),
(59852, 49583, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ å®¶ē•œę”¹č‰Æć‚»ćƒ³ć‚æćƒ¼'),
(59853, 49584, 'no_lang_code', 'name', 'Universal Woods (United States)'),
(59854, 49585, 'en', 'name', 'Center for Collaborative Education'),
(59855, 49586, 'no_lang_code', 'name', 'Archarithms (United States)'),
(59856, 49587, 'en', 'name', 'Asian Counseling and Referral Service'),
(59857, 49588, 'no_lang_code', 'name', 'Polymer Source (Canada)'),
(59858, 49589, 'en', 'name', 'Zhejiang Mariculture Research Institute'),
(59859, 49589, 'zh', 'name', 'ęµ™ę±Ÿēœęµ·ę“‹ę°“äŗ§å…»ę®–ē ”ē©¶ę‰€'),
(59860, 49590, 'no_lang_code', 'name', 'Intellectual Ventures (United States)'),
(59861, 49591, 'no_lang_code', 'name', 'XLV Diagnostics (Canada)'),
(59862, 49592, 'en', 'name', 'Sweet Potato Research Institute'),
(59863, 49593, 'en', 'name', 'Fukuoka City Hospital'),
(59864, 49593, 'ja', 'name', 'ē¦å²”åø‚ę°‘ē—…é™¢'),
(59865, 49594, 'en', 'name', 'Society for Theatre Research'),
(59866, 49595, 'no_lang_code', 'name', 'Protemics (Germany)'),
(59867, 49596, 'no_lang_code', 'name', 'Nokia (Australia)'),
(59868, 49597, 'no_lang_code', 'name', 'Western Digital (Netherlands)'),
(59869, 49598, 'pt', 'name', 'Fundação Parque Tecnológico da Paraíba'),
(59870, 49599, 'no_lang_code', 'name', 'Covestro (Japan)'),
(59871, 49600, 'no_lang_code', 'name', 'Excelitas Technologies (Germany)'),
(59872, 49601, 'no_lang_code', 'name', 'Micron (Singapore)'),
(59873, 49602, 'en', 'name', 'Nagano City Board of Education'),
(59874, 49602, 'ja', 'name', 'é•·é‡Žåø‚ę•™č‚²å§”å“”ä¼š'),
(59875, 49603, 'no_lang_code', 'name', 'Seoyon E-Hwa (South Korea)'),
(59876, 49604, 'en', 'name', 'Canadian Pain Society'),
(59877, 49605, 'en', 'name', 'Eisenhower Foundation'),
(59878, 49606, 'en', 'name', 'Florida Chamber of Commerce'),
(59879, 49607, 'en', 'name', 'Impact India'),
(59880, 49608, 'en', 'name', 'Statistical Information Institute for Consulting Analysis'),
(59881, 49608, 'ja', 'name', 'ēµ±čØˆęƒ…å ±ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(59882, 49609, 'de', 'name', 'Chirurgische UniversitƤtsklinik Heidelberg'),
(59883, 49610, 'no_lang_code', 'name', 'Laserax (Canada)'),
(59884, 49611, 'no_lang_code', 'name', 'Heraeus (United States)'),
(59885, 49612, 'en', 'name', 'Karma Healthcare'),
(59886, 49613, 'no_lang_code', 'name', 'Orient Capital (China)'),
(59887, 49614, 'no_lang_code', 'name', 'Comar (United States)'),
(59888, 49615, 'en', 'name', 'NIHR Clinical Research Network'),
(59889, 49616, 'en', 'name', 'Gifu Prefectural Toki Commercial High School'),
(59890, 49616, 'ja', 'name', 'å²é˜œēœŒē«‹åœŸå²å•†ę„­é«˜ē­‰å­¦ę ”'),
(59891, 49617, 'en', 'name', 'Jin-ai Women''s College'),
(59892, 49617, 'ja', 'name', 'ä»ę„›å„³å­ēŸ­ęœŸå¤§å­¦'),
(59893, 49618, 'en', 'name', 'Dream Builders Foundation'),
(59894, 49619, 'en', 'name', 'S.P. Timoshenko Institute of Mechanics'),
(59895, 49620, 'no_lang_code', 'name', 'Broadcom (United Kingdom)'),
(59896, 49621, 'en', 'name', 'Association of Zoo Veterinary Technicians'),
(59897, 49622, 'ja', 'name', 'ę±ę“‹ę–‡åŗ«'),
(59898, 49622, 'no_lang_code', 'name', 'Tōyō Bunko'),
(59899, 49623, 'no_lang_code', 'name', 'Exide Technologies (Germany)'),
(59900, 49624, 'no_lang_code', 'name', 'National Security Technologies (United States)'),
(59901, 49625, 'en', 'name', 'Queensland Curriculum and Assessment Authority'),
(59902, 49626, 'en', 'name', 'Global Institute for Quality Education'),
(59903, 49627, 'no_lang_code', 'name', 'Harman (United Kingdom)'),
(59904, 49628, 'no_lang_code', 'name', 'Komet Group (Germany)'),
(59905, 49629, 'no_lang_code', 'name', 'Ecovia Renewables (United States)'),
(59906, 49630, 'no_lang_code', 'name', 'Sony (Spain)'),
(59907, 49631, 'no_lang_code', 'name', 'Knorr-Bremse (United Kingdom)'),
(59908, 49632, 'hu', 'name', 'Wikimédia MagyarorszÔg Egyesület'),
(59909, 49632, 'no_lang_code', 'name', 'Wikimedia Hungary'),
(59910, 49633, 'no_lang_code', 'name', 'Kestrel Technology (United States)'),
(59911, 49634, 'de', 'name', 'Immunologie-Zentrum Zürich'),
(59912, 49635, 'en', 'name', 'Okazaki Womens Junior College'),
(59913, 49635, 'ja', 'name', 'å²”å“Žå„³å­ēŸ­ęœŸå¤§å­¦'),
(59914, 49636, 'en', 'name', 'Prince George County Public Schools'),
(59915, 49637, 'en', 'name', 'International Institute for Childrens Literature Osaka'),
(59916, 49637, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹å›½éš›å…ē«„ę–‡å­¦é¤Ø'),
(59917, 49638, 'en', 'name', 'International East-European University'),
(59918, 49638, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Восточно-Европейский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(59919, 49639, 'ja', 'name', 'ć‚­ćƒ¤ćƒŽćƒ³ę Ŗå¼ä¼šē¤¾'),
(59920, 49639, 'no_lang_code', 'name', 'Canon (Japan)'),
(59921, 49640, 'no_lang_code', 'name', 'Genetec (Canada)'),
(59922, 49641, 'en', 'name', 'Human Rights Campaign'),
(59923, 49642, 'en', 'name', 'Ibaraki Prefectural Board of Education'),
(59924, 49642, 'ja', 'name', 'čŒØåŸŽēœŒę•™č‚²å§”å“”ä¼š'),
(59925, 49643, 'no_lang_code', 'name', 'Award Rubber & Plastic Industries (Canada)'),
(59926, 49644, 'en', 'name', 'Tokyo Metropolitan Koishikawa Secondary Education School');
INSERT INTO `ror_settings` VALUES
(59927, 49644, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å°ēŸ³å·äø­ē­‰ę•™č‚²å­¦ę ”'),
(59928, 49645, 'pt', 'name', 'Instituto Geológico'),
(59929, 49646, 'en', 'name', 'Chiba Prefectural Museum of Art'),
(59930, 49647, 'ja', 'name', 'ē¾¤é¦¬ćƒ‘ćƒ¼ć‚¹å¤§å­¦'),
(59931, 49647, 'no_lang_code', 'name', 'Gumma Paz College'),
(59932, 49648, 'de', 'name', 'Hochschule der Polizei Rheinland Pfalz'),
(59933, 49649, 'no_lang_code', 'name', 'nanoPrecision Products (United States)'),
(59934, 49650, 'en', 'name', 'V. G. Khlopin Radium Institute'),
(59935, 49650, 'ru', 'name', 'РаГиевый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š’. Š“. Єлопина'),
(59936, 49651, 'en', 'name', 'Harbor Branch Oceanographic Institute'),
(59937, 49652, 'en', 'name', 'Art Libraries Society'),
(59938, 49653, 'en', 'name', 'China Friendship Foundation for Peace and Development'),
(59939, 49654, 'es', 'name', 'Universidad La Concordia'),
(59940, 49655, 'es', 'name', 'Instituto Colombiano Agropecuario'),
(59941, 49656, 'no_lang_code', 'name', 'Westinghouse Electric (Japan)'),
(59942, 49657, 'en', 'name', 'British Grassland Society'),
(59943, 49658, 'en', 'name', 'Kawasaki Municipal Kawasaki Science High School'),
(59944, 49658, 'ja', 'name', 'å·å“Žåø‚ē«‹å·å“Žē·åˆē§‘å­¦é«˜ē­‰å­¦ę ”'),
(59945, 49659, 'en', 'name', 'Society for Mental Health Research'),
(59946, 49660, 'en', 'name', 'Japan China Medical Association'),
(59947, 49660, 'ja', 'name', 'ę—„ęœ¬äø­å›½åŒ»å­¦å”ä¼š'),
(59948, 49661, 'no_lang_code', 'name', 'Universal Instruments (United States)'),
(59949, 49662, 'en', 'name', 'Foreign Service Institute'),
(59950, 49663, 'en', 'name', 'Randolph Field Independent School District'),
(59951, 49664, 'no_lang_code', 'name', 'Forge Life Science (United States)'),
(59952, 49665, 'de', 'name', 'Malteser Zentrale'),
(59953, 49666, 'en', 'name', 'Kalamazoo Public Library'),
(59954, 49667, 'en', 'name', 'High Institute For Computers and Management Information Systems'),
(59955, 49668, 'no_lang_code', 'name', 'STMicroelectronics (Germany)'),
(59956, 49669, 'no_lang_code', 'name', 'Sigma Energy Storage (Canada)'),
(59957, 49670, 'no_lang_code', 'name', 'CytImmune (United States)'),
(59958, 49671, 'no_lang_code', 'name', 'Synthomics (United States)'),
(59959, 49672, 'en', 'name', 'Ashikaga Junior College'),
(59960, 49672, 'ja', 'name', '足利短期大学'),
(59961, 49673, 'en', 'name', 'European Hematology Association'),
(59962, 49674, 'ja', 'name', 'ćƒžćƒ„ćƒ€ę Ŗå¼ä¼šē¤¾'),
(59963, 49674, 'no_lang_code', 'name', 'Mazda Motor Corporation (Japan)'),
(59964, 49675, 'en', 'name', 'Tibetan Traditional Medical College'),
(59965, 49675, 'zh', 'name', 'č„æč—ä¼ ē»ŸåŒ»å­¦é™¢'),
(59966, 49676, 'no_lang_code', 'name', 'EcoSynthetix (United States)'),
(59967, 49677, 'no_lang_code', 'name', 'Moai Technologies (United States)'),
(59968, 49678, 'pt', 'name', 'Instituto Capixaba de Pesquisa, Assistência Técnica e Extensão Rural'),
(59969, 49679, 'en', 'name', 'AIDS Society of India'),
(59970, 49680, 'pt', 'name', 'Universidade LusĆ­ada de Angola'),
(59971, 49681, 'ja', 'name', 'ę—„ęœ¬é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(59972, 49681, 'no_lang_code', 'name', 'NEC (Germany)'),
(59973, 49682, 'en', 'name', 'Yamagata Prefectural Mamurogawa High School'),
(59974, 49682, 'ja', 'name', 'å±±å½¢ēœŒē«‹ę–°åŗ„ē„žå®¤ē”£ę„­é«˜ē­‰å­¦ę ”ēœŸå®¤å·ę ”'),
(59975, 49683, 'no_lang_code', 'name', 'SC Johnson (United States)'),
(59976, 49684, 'no_lang_code', 'name', 'KRONOS (Germany)'),
(59977, 49685, 'en', 'name', 'Tokyo Sport Benefits Corporation'),
(59978, 49685, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę±äŗ¬éƒ½ć‚¹ćƒćƒ¼ćƒ„ę–‡åŒ–äŗ‹ę„­å›£'),
(59979, 49686, 'en', 'name', 'Wenzhou Institute of Industrial Science'),
(59980, 49686, 'zh', 'name', 'ęø©å·žåø‚å·„äøšē§‘å­¦ē ”ē©¶é™¢'),
(59981, 49687, 'no_lang_code', 'name', 'Lucerno Dynamics (United States)'),
(59982, 49688, 'en', 'name', 'Global Virus Network'),
(59983, 49689, 'en', 'name', 'Institute for Women''s Policy Research'),
(59984, 49690, 'en', 'name', 'Canadian Association of Radiation Oncology'),
(59985, 49691, 'en', 'name', 'Jilin Provincial Academy of Forestry Science'),
(59986, 49691, 'zh', 'name', 'å‰ęž—ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(59987, 49692, 'no_lang_code', 'name', 'Baxter (Germany)'),
(59988, 49693, 'en', 'name', 'Iwate Prefectural Taneichi High School'),
(59989, 49693, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ēØ®åø‚é«˜ē­‰å­¦ę ”'),
(59990, 49694, 'no_lang_code', 'name', 'Benson Hill Biosystems (United States)'),
(59991, 49695, 'en', 'name', 'Yabe Junior High School'),
(59992, 49695, 'ja', 'name', '矢部中学栔'),
(59993, 49696, 'no_lang_code', 'name', 'Vuronyx Technologies (United States)'),
(59994, 49697, 'en', 'name', 'Shikoku Medical Center for Children and Adults'),
(59995, 49697, 'ja', 'name', 'å››å›½ć“ć©ć‚‚ćØćŠćØćŖć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(59996, 49698, 'no_lang_code', 'name', 'Hexagon (Germany)'),
(59997, 49699, 'no_lang_code', 'name', 'Wikov (United Kingdom)'),
(59998, 49700, 'no_lang_code', 'name', 'Wikimedia Hong Kong'),
(59999, 49700, 'zh', 'name', 'é¦™ęøÆē¶­åŸŗåŖ’é«”å”ęœƒ'),
(60000, 49701, 'en', 'name', 'All-Russian Research Institute of Genetics and Farm Animal Breeding'),
(60001, 49701, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетики Šø Ń€Š°Š·Š²ŠµŠ“ŠµŠ½ŠøŃ ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Ń… животных'),
(60002, 49702, 'en', 'name', 'Knox County Public Library'),
(60003, 49703, 'no_lang_code', 'name', 'Metallurgical Corporation of China (China)'),
(60004, 49703, 'zh', 'name', 'äø­å›½å†¶é‡‘ē§‘å·„č‚”ä»½ęœ‰é™å…¬åø'),
(60005, 49704, 'en', 'name', 'Avenir Health'),
(60006, 49705, 'en', 'name', 'Government of the District of Columbia'),
(60007, 49706, 'en', 'name', 'INCLEN Trust International'),
(60008, 49707, 'ar', 'name', 'الجامعة Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ©'),
(60009, 49707, 'en', 'name', 'British Royal University'),
(60010, 49708, 'es', 'name', 'Universidad Dr. AndrƩs Bello'),
(60011, 49709, 'fr', 'name', 'Institut international pour l''unification du droit privƩ'),
(60012, 49709, 'it', 'name', 'UNIDROIT'),
(60013, 49710, 'en', 'name', 'Niagara Health System'),
(60014, 49711, 'en', 'name', 'Gunma Chuo Hospital'),
(60015, 49711, 'ja', 'name', '群馬中央病院'),
(60016, 49712, 'en', 'name', 'Cancer Research UK Oxford Centre'),
(60017, 49713, 'en', 'name', 'Chongqing Dazu District People''s Hospital'),
(60018, 49713, 'zh', 'name', 'å¤§č¶³åŒŗäŗŗę°‘åŒ»é™¢'),
(60019, 49714, 'no_lang_code', 'name', 'EirGrid (Ireland)'),
(60020, 49715, 'no_lang_code', 'name', 'BAH Enterprises (Canada)'),
(60021, 49716, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹åÆå±‹å·é«˜ē­‰å­¦ę ”'),
(60022, 49716, 'no_lang_code', 'name', 'Neyagawa High School'),
(60023, 49717, 'et', 'name', 'Wikimedia Eesti'),
(60024, 49718, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æćƒ©ćƒ¬'),
(60025, 49718, 'no_lang_code', 'name', 'Kuraray (Japan)'),
(60026, 49719, 'en', 'name', 'Urumqi Vocational University'),
(60027, 49720, 'en', 'name', 'Edward Charles Foundation'),
(60028, 49721, 'no_lang_code', 'name', 'Adheren (United States)'),
(60029, 49722, 'no_lang_code', 'name', 'Francotyp Postalia (Germany)'),
(60030, 49723, 'en', 'name', 'China Federation of Supply and Marketing Cooperatives'),
(60031, 49723, 'zh', 'name', 'äø­åŽå…Øå›½ä¾›é”€åˆä½œę€»ē¤¾'),
(60032, 49724, 'no_lang_code', 'name', 'Stanley Black & Decker (Taiwan)'),
(60033, 49725, 'en', 'name', 'Central Geological Survey, MOEA'),
(60034, 49725, 'zh', 'name', 'ē¶“ęæŸéƒØäø­å¤®åœ°č³ŖčŖæęŸ„ę‰€'),
(60035, 49726, 'de', 'name', 'Wikimedia CH'),
(60036, 49727, 'en', 'name', 'Mayor''s Office for Policing and Crime'),
(60037, 49728, 'no_lang_code', 'name', 'Infraestruturas de Portugal (Portugal)'),
(60038, 49729, 'no_lang_code', 'name', 'Isra Vision (Germany)'),
(60039, 49730, 'no_lang_code', 'name', 'Exmoor Plastics (United Kingdom)'),
(60040, 49731, 'de', 'name', 'Medias Klinikum'),
(60041, 49732, 'en', 'name', 'Hokkaido Archaeological Center'),
(60042, 49732, 'ja', 'name', 'åŒ—ęµ·é“åŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(60043, 49733, 'en', 'name', 'Ohtsuki City College'),
(60044, 49733, 'ja', 'name', '大月短期大学'),
(60045, 49734, 'no_lang_code', 'name', 'Boulder Environmental Sciences and Technology (United States)'),
(60046, 49735, 'no_lang_code', 'name', 'Antibiotic (Bulgaria)'),
(60047, 49736, 'en', 'name', 'Zhejiang Taizhou Hospital'),
(60048, 49736, 'zh', 'name', 'ęµ™ę±Ÿēœå°å·žåŒ»é™¢'),
(60049, 49737, 'en', 'name', 'Islamic Azad University Dental Branch of Tehran'),
(60050, 49737, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲÆŁ†ŲÆŲ§Ł†Ł¾Ų²Ų“Ś©ŪŒ تهران'),
(60051, 49738, 'en', 'name', 'Lishui Academy of Forestry'),
(60052, 49738, 'zh', 'name', 'äø½ę°“åø‚ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(60053, 49739, 'en', 'name', 'Fujisawa Institute of Technology High School'),
(60054, 49739, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹č—¤ę²¢å·„ē§‘é«˜ē­‰å­¦ę ”'),
(60055, 49740, 'en', 'name', 'Gifu Prefecture General Education Center'),
(60056, 49740, 'ja', 'name', 'å²é˜œēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(60057, 49741, 'no_lang_code', 'name', 'Nhu Energy (United States)'),
(60058, 49742, 'en', 'name', 'Confederation of Oregon School Administrators'),
(60059, 49743, 'no_lang_code', 'name', 'Leuco (United States)'),
(60060, 49744, 'en', 'name', 'AlzeCure Foundation'),
(60061, 49745, 'en', 'name', 'Nara Prefectural Unebi Senior High School'),
(60062, 49745, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹ē•å‚é«˜ē­‰å­¦ę ”'),
(60063, 49746, 'en', 'name', 'Shandong Academy of Chinese Medicine'),
(60064, 49746, 'zh', 'name', 'å±±äøœēœäø­åŒ»čÆē ”ē©¶é™¢'),
(60065, 49747, 'en', 'name', 'Schiller International University'),
(60066, 49748, 'no_lang_code', 'name', 'Stryker (Germany)'),
(60067, 49749, 'no_lang_code', 'name', 'Thermo Fisher Scientific (Israel)'),
(60068, 49750, 'en', 'name', 'Ontario Forest Research Institute'),
(60069, 49751, 'en', 'name', 'Central Kitsap School District'),
(60070, 49752, 'en', 'name', 'Ministry of Culture'),
(60071, 49752, 'es', 'name', 'Ministerio de Cultura'),
(60072, 49753, 'en', 'name', 'Gunma Prefectural Isesaki Koyokotogakko'),
(60073, 49753, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹ä¼Šå‹¢å“Žčˆˆé™½é«˜ē­‰å­¦ę ”'),
(60074, 49754, 'en', 'name', 'Keystone Foundation'),
(60075, 49755, 'en', 'name', 'Tokyo Metropolitan Koganei Industrial High School'),
(60076, 49755, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å°é‡‘äŗ•å·„ę„­é«˜ē­‰å­¦ę ”'),
(60077, 49756, 'en', 'name', 'Annapurna Neurological Institute and Allied Sciences'),
(60078, 49756, 'ne', 'name', 'ą¤…ą¤Øą„ą¤Øą¤Ŗą„‚ą¤°ą„ą¤£ ą¤Øą„ą¤Æą„‚ą¤°ą„‹ą¤²ą„‹ą¤œą¤æą¤•ą¤² ą¤ˆą¤Øą„ą¤øą„ą¤Ÿą„€ą¤šą„ą¤Æą„ą¤Ÿ ą¤ą¤£ą„ą¤” ą¤ą¤²ą¤¾ą¤ˆą¤” ą¤øą¤¾ą¤ˆą¤Øą„ą¤øą„‡ą¤ø'),
(60079, 49757, 'en', 'name', 'Pi Gamma Mu'),
(60080, 49758, 'en', 'name', 'St. Louis American Parkinson Disease Association'),
(60081, 49759, 'no_lang_code', 'name', 'Postnova Analytics (Germany)'),
(60082, 49760, 'en', 'name', 'Institute for Research and Innovation in Irrigated Agriculture'),
(60083, 49761, 'en', 'name', 'National Power Training Institute'),
(60084, 49761, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤§ą„ą¤¤ ą¤Ŗą„ą¤°ą¤¶ą¤æą¤•ą„ą¤·ą¤£ ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(60085, 49762, 'no_lang_code', 'name', 'Mastercard (United Kingdom)'),
(60086, 49763, 'fr', 'name', 'UniversitƩ Libre du Congo'),
(60087, 49764, 'no_lang_code', 'name', 'Adroit Materials (United States)'),
(60088, 49765, 'en', 'name', 'Kanagawa prefectural Atsugi high school'),
(60089, 49765, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹åŽšęœØé«˜ē­‰å­¦ę ”'),
(60090, 49766, 'en', 'name', 'Saitama Prefectural Education Center'),
(60091, 49766, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(60092, 49767, 'no_lang_code', 'name', 'Xcision Medical Systems (United States)'),
(60093, 49768, 'en', 'name', 'Assumption Parish Public Library'),
(60094, 49769, 'no_lang_code', 'name', 'Advanced Composite Products (United States)'),
(60095, 49770, 'en', 'name', 'Ohda High School'),
(60096, 49770, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹å¤§ē”°é«˜ē­‰å­¦ę ”'),
(60097, 49771, 'ja', 'name', 'ę—„ęœ¬ē²¾å·„ę Ŗå¼ä¼šē¤¾'),
(60098, 49771, 'no_lang_code', 'name', 'NSK (Japan)'),
(60099, 49772, 'en', 'name', 'Academy of Military Transportation'),
(60100, 49772, 'zh', 'name', 'å†›äŗ‹äŗ¤é€šå­¦é™¢'),
(60101, 49773, 'de', 'name', 'Fraunhofer-Institut für Kommunikation, Informationsverarbeitung und Ergonomie'),
(60102, 49773, 'en', 'name', 'Fraunhofer Institute for Communication, Information Processing and Ergonomics'),
(60103, 49774, 'en', 'name', 'Mie Prefectural Hisai High School'),
(60104, 49774, 'ja', 'name', 'äø‰é‡ēœŒē«‹ä¹…å±…é«˜ē­‰å­¦ę ”'),
(60105, 49775, 'en', 'name', 'Meirin College'),
(60106, 49775, 'ja', 'name', 'ę˜Žå€«ēŸ­ęœŸå¤§å­¦'),
(60107, 49776, 'en', 'name', 'Fraunhofer USA Center for Manufacturing Innovation'),
(60108, 49777, 'no_lang_code', 'name', 'Valeo (South Korea)'),
(60109, 49778, 'en', 'name', 'Hakodate Otani College'),
(60110, 49778, 'ja', 'name', 'å‡½é¤Øå¤§č°·ēŸ­ęœŸå¤§å­¦'),
(60111, 49779, 'en', 'name', 'National Traffic Safety and Environment Laboratory'),
(60112, 49779, 'ja', 'name', 'äŗ¤é€šå®‰å…Øē’°å¢ƒē ”ē©¶ę‰€'),
(60113, 49780, 'en', 'name', 'Colorado River Indian Tribes Library'),
(60114, 49781, 'ja', 'name', 'ē§‹ē”°ēœŒē«‹åšē‰©é¤Ø'),
(60115, 49781, 'no_lang_code', 'name', 'Akita Prefectural Museum'),
(60116, 49782, 'en', 'name', 'Bahamas Marine Mammal Research Organisation'),
(60117, 49783, 'en', 'name', 'Saitama Women''s Junior College'),
(60118, 49783, 'ja', 'name', 'åŸ¼ēŽ‰å„³å­ēŸ­ęœŸå¤§å­¦'),
(60119, 49784, 'no_lang_code', 'name', 'Mondelēz International (Canada)'),
(60120, 49785, 'de', 'name', 'Wiener Zentrum für sozialwissenschaftliche Sicherheitsforschung'),
(60121, 49785, 'en', 'name', 'Vienna Centre for Societal Security'),
(60122, 49786, 'en', 'name', 'Nagano Prefectural Comprehensive Education Center'),
(60123, 49786, 'ja', 'name', 'é•·é‡ŽēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(60124, 49787, 'no_lang_code', 'name', 'Medicure (United States)'),
(60125, 49788, 'en', 'name', 'Institute of General and Experimental Biology'),
(60126, 49788, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ биологии Š”Šž Š ŠŠ'),
(60127, 49789, 'en', 'name', 'Aomori Akenohoshi Junior College'),
(60128, 49789, 'ja', 'name', 'é’ę£®ę˜Žć®ę˜ŸēŸ­ęœŸå¤§å­¦'),
(60129, 49790, 'no_lang_code', 'name', 'MBDA (Germany)'),
(60130, 49791, 'en', 'name', 'Kanagawa Prefectural Yokohama Hiranuma High School'),
(60131, 49791, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ęØŖęµœå¹³ę²¼é«˜ē­‰å­¦ę ”'),
(60132, 49792, 'no_lang_code', 'name', 'Bishop Water Technologies (Canada)'),
(60133, 49793, 'en', 'name', 'Lishui Vocational and Technical College'),
(60134, 49793, 'zh', 'name', 'äø½ę°“čŒäøšęŠ€ęœÆå­¦é™¢'),
(60135, 49794, 'en', 'name', 'Meridian Institute'),
(60136, 49795, 'no_lang_code', 'name', 'Light Prescriptions Innovators (United States)'),
(60137, 49796, 'en', 'name', 'Jersey Shore University Medical Center'),
(60138, 49797, 'no_lang_code', 'name', 'DCS Computing (Austria)'),
(60139, 49798, 'en', 'name', 'Montana Department of Environmental Quality'),
(60140, 49799, 'en', 'name', 'Russian Scientific Center of Surgery'),
(60141, 49799, 'ru', 'name', 'Российский ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр Š„ŠøŃ€ŃƒŃ€Š³ŠøŠø им. акаГ. Š‘.Š’. ŠŸŠµŃ‚Ń€Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(60142, 49800, 'en', 'name', 'Avenue Day Hospital'),
(60143, 49801, 'en', 'name', 'Saudi Pharmaceutical Society'),
(60144, 49802, 'no_lang_code', 'name', 'Alliance Protein Laboratories (United States)'),
(60145, 49803, 'no_lang_code', 'name', 'Bohn Stafleu van Loghum (Netherlands)'),
(60146, 49804, 'en', 'name', 'Taizhou Vocational and Technical College'),
(60147, 49804, 'zh', 'name', 'å°å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(60148, 49805, 'en', 'name', 'Mining Institute of the Ural Branch of the Russian Academy of Sciences'),
(60149, 49805, 'ru', 'name', 'Горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(60150, 49806, 'ja', 'name', 'åŗœäø­ē—…é™¢'),
(60151, 49806, 'no_lang_code', 'name', 'Fuchu Hospital'),
(60152, 49807, 'en', 'name', 'General Education Center of Iwate'),
(60153, 49807, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(60154, 49808, 'no_lang_code', 'name', 'Texas Instruments (Ireland)'),
(60155, 49809, 'en', 'name', 'Health PEI'),
(60156, 49810, 'en', 'name', 'Ishikawa Prefectural Institute for Educational Research and In-Service Training'),
(60157, 49810, 'ja', 'name', 'ēŸ³å·ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(60158, 49811, 'en', 'name', 'Ichinoseki Daiichi Senior High School'),
(60159, 49811, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹äø€é–¢ē¬¬äø€é«˜ē­‰å­¦ę ”ćƒ»é™„å±žäø­å­¦ę ”'),
(60160, 49812, 'no_lang_code', 'name', 'Ƅlvdalens FastbrƤnsleteknik Aktiebolag (Sweden)'),
(60161, 49813, 'en', 'name', 'Research Institute in Oncology and Hematology'),
(60162, 49814, 'en', 'name', 'Kyoto Municipal Saikyokotogakko-Junior High School'),
(60163, 49815, 'de', 'name', 'Fƶrdergemeinschaft Deutsche Kinderherzzentren'),
(60164, 49816, 'en', 'name', 'Education Cities'),
(60165, 49817, 'en', 'name', 'New World University'),
(60166, 49818, 'fr', 'name', 'Institut Bouisson Bertrand'),
(60167, 49819, 'en', 'name', 'Windsor University School of Medicine'),
(60168, 49820, 'en', 'name', 'Central University Library'),
(60169, 49820, 'ro', 'name', 'Biblioteca Centrală Universitară'),
(60170, 49821, 'en', 'name', 'Sugayadai Elementary School'),
(60171, 49821, 'ja', 'name', 'č…č°·å°å°å­¦ę ”'),
(60172, 49822, 'en', 'name', 'Economic History Society'),
(60173, 49823, 'no_lang_code', 'name', 'ZF Screens (Netherlands)'),
(60174, 49824, 'pt', 'name', 'Associação Brasileira de Ensaios não Destrutivos e Inspeção'),
(60175, 49825, 'en', 'name', 'Grameen Research'),
(60176, 49826, 'en', 'name', 'Ministry of Culture'),
(60177, 49826, 'lt', 'name', 'Lietuvos Respublikos kultūros ministerija'),
(60178, 49827, 'en', 'name', 'Museum of Nature and Human Activities Hyogo'),
(60179, 49827, 'ja', 'name', 'č‡Ŗē„¶ć®åšē‰©é¤ØćØäŗŗé–“ę“»å‹•å…µåŗ«'),
(60180, 49828, 'en', 'name', 'Wikimedia Macedonia'),
(60181, 49828, 'mk', 'name', 'Š’ŠøŠŗŠøŠ¼ŠµŠ“ŠøŃ˜Š° МакеГонија'),
(60182, 49829, 'en', 'name', 'Lowcountry Council of Governments'),
(60183, 49830, 'en', 'name', 'Ibaraki Womens Junior College'),
(60184, 49830, 'ja', 'name', 'čŒØåŸŽå„³å­ēŸ­ęœŸå¤§å­¦'),
(60185, 49831, 'en', 'name', 'Foundation for Excellence in Education'),
(60186, 49832, 'no_lang_code', 'name', 'Wellspring Biosciences (United States)'),
(60187, 49833, 'fr', 'name', 'Wikimedia Canada'),
(60188, 49834, 'pt', 'name', 'Centro de Direito Internacional'),
(60189, 49835, 'en', 'name', 'Port and Airport Research Institute'),
(60190, 49835, 'ja', 'name', 'ęøÆę¹¾ē©ŗęøÆęŠ€č”“ē ”ē©¶ę‰€'),
(60191, 49836, 'pt', 'name', 'Sociedade Brasileira de Pesquisa Operacional'),
(60192, 49837, 'en', 'name', 'Gateway to College National Network'),
(60193, 49838, 'en', 'name', 'Institute for Complex Systems'),
(60194, 49838, 'it', 'name', 'Istituto dei Sistemi Complessi'),
(60195, 49839, 'es', 'name', 'Universidad Abierta y a Distancia'),
(60196, 49840, 'en', 'name', 'Tokyo Hygiene Gakuen College'),
(60197, 49840, 'ja', 'name', 'ę±äŗ¬č”›ē”Ÿå­¦åœ’å°‚é–€å­¦ę ”'),
(60198, 49841, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do Maranhão, Instituto Federal do Maranhão'),
(60199, 49842, 'en', 'name', 'Institute of Archaeology'),
(60200, 49842, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢č€ƒå¤ē ”ē©¶ę‰€ę˜Æ'),
(60201, 49843, 'en', 'name', 'League For Innovation in the Community College'),
(60202, 49844, 'ko', 'name', 'źø°ģ•„ģžė™ģ°Ø'),
(60203, 49844, 'no_lang_code', 'name', 'Kia Motors (South Korea)'),
(60204, 49845, 'el', 'name', 'Εταιρεία ĪŽĪ“ĻĪµĻ…ĻƒĪ·Ļ‚ και Ī‘Ļ€ĪæĻ‡Ī­Ļ„ĪµĻ…ĻƒĪ·Ļ‚ Ī ĻĻ‰Ļ„ĪµĻĪæĻ…ĻƒĪ±Ļ‚'),
(60205, 49845, 'no_lang_code', 'name', 'EYDAP (Greece)'),
(60206, 49846, 'en', 'name', 'Ryogoku High School'),
(60207, 49846, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹äø”å›½é«˜ē­‰å­¦ę ”ćƒ»é™„å±žäø­å­¦ę ”'),
(60208, 49847, 'en', 'name', 'Harris County Public Library'),
(60209, 49848, 'en', 'name', 'College of Healthcare Management'),
(60210, 49848, 'ja', 'name', 'äæå„åŒ»ē™‚ēµŒå–¶å¤§å­¦'),
(60211, 49849, 'pt', 'name', 'Escola Superior Dom Helder CĆ¢mara'),
(60212, 49850, 'en', 'name', 'Tokyo Metropolitan Board of Education'),
(60213, 49850, 'ja', 'name', 'ę±äŗ¬éƒ½ę•™č‚²äŗ‹å‹™ę‰€'),
(60214, 49851, 'de', 'name', 'Fachklinik Hornheide'),
(60215, 49852, 'no_lang_code', 'name', 'Carbon Engineering (Canada)'),
(60216, 49853, 'no_lang_code', 'name', 'Center for Information and Numerical Data Analysis and Synthesis (United States)'),
(60217, 49854, 'en', 'name', 'Hirosaki University Hospital'),
(60218, 49854, 'ja', 'name', 'å¼˜å‰å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(60219, 49855, 'en', 'name', 'International University for Graduate Studies'),
(60220, 49856, 'en', 'name', 'Southwestern Community College - Iowa'),
(60221, 49857, 'en', 'name', 'Cook County Sheriff''s Office'),
(60222, 49858, 'en', 'name', 'Central Visayan Institute Foundation'),
(60223, 49859, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹å¾³å³¶ē—…é™¢'),
(60224, 49859, 'no_lang_code', 'name', 'Tokushima Hospital'),
(60225, 49860, 'it', 'name', 'Agenzia Regionale per la Tecnologia e l''Innovazione'),
(60226, 49861, 'ja', 'name', 'ćƒ¤ćƒžćƒę Ŗå¼ä¼šē¤¾'),
(60227, 49861, 'no_lang_code', 'name', 'Yamaha (Japan)'),
(60228, 49862, 'en', 'name', 'Association for Clinical Biochemistry and Laboratory Medicine'),
(60229, 49863, 'en', 'name', 'Royal Gustavus Adolphus Academy'),
(60230, 49863, 'sv', 'name', 'Kungliga Gustav Adolfs Akademien'),
(60231, 49864, 'en', 'name', 'Tokyo Metropolitan Industrial Technology Research Institute'),
(60232, 49864, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ē”£ę„­ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(60233, 49865, 'en', 'name', 'Takezono Higashi Elementary School'),
(60234, 49865, 'ja', 'name', 'ć¤ćć°åø‚ē«‹ē«¹åœ’ę±å°å­¦ę ”'),
(60235, 49866, 'no_lang_code', 'name', 'Hovione (China)'),
(60236, 49867, 'en', 'name', 'Tottori Prefectural Chizu Agriculture and Forestry High School'),
(60237, 49867, 'ja', 'name', 'é³„å–ēœŒē«‹ę™ŗé ­č¾²ęž—é«˜ē­‰å­¦ę ”'),
(60238, 49868, 'no_lang_code', 'name', 'Solers (United States)'),
(60239, 49869, 'en', 'name', 'North Central Texas Council of Governments'),
(60240, 49870, 'en', 'name', 'Islamic Azad University of Kermanshah'),
(60241, 49870, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کرمانؓاه'),
(60242, 49871, 'el', 'name', 'Ī”Ī”Ī‘ĪžĪ™Ī£ Ī¤Ī•Ī§ĪĪŸĪ›ĪŸĪ“Ī™Ī•Ī£ Ī Ī•Ī”Ī™Ī’Ī‘Ī›Ī›ĪŸĪĪ¤ĪŸĪ£'),
(60243, 49871, 'no_lang_code', 'name', 'Draxis Environmental Technologies (Greece)'),
(60244, 49872, 'en', 'name', 'Brussels Office of Helmholtz Association'),
(60245, 49873, 'en', 'name', 'Gunma Prefectural Institute of Agriculture and Forestry'),
(60246, 49873, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹č¾²ęž—å¤§å­¦ę ”'),
(60247, 49874, 'no_lang_code', 'name', 'Recyc PHP (Canada)'),
(60248, 49875, 'en', 'name', 'Institute of Geology Ufa Scientific Center'),
(60249, 49875, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Уфимского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Š ŠŠ'),
(60250, 49876, 'en', 'name', 'Saitama Prefectural Museum of History and Folklore'),
(60251, 49876, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ę­“å²ćØę°‘äæ—ć®åšē‰©é¤Ø'),
(60252, 49877, 'no_lang_code', 'name', 'Red Hat (United Kingdom)'),
(60253, 49878, 'en', 'name', 'Chartered Accountants Australia and New Zealand'),
(60254, 49879, 'no_lang_code', 'name', 'Acushnet (United States)'),
(60255, 49880, 'en', 'name', 'Atlanta Research and Education Foundation'),
(60256, 49881, 'en', 'name', 'Engineering and Science University Magnet School'),
(60257, 49882, 'en', 'name', 'Honduras Foundation for Agricultural Research'),
(60258, 49882, 'es', 'name', 'Fundacion Hondureña de Investigación Agricola'),
(60259, 49883, 'no_lang_code', 'name', 'Right Way (Germany)'),
(60260, 49884, 'en', 'name', 'Sakai City Board of Education'),
(60261, 49884, 'ja', 'name', 'ę•™č‚²å§”å“”ä¼š - å ŗåø‚'),
(60262, 49885, 'he', 'name', 'רוש ×™×©×Ø××œ'),
(60263, 49885, 'no_lang_code', 'name', 'Roche (Israel)'),
(60264, 49886, 'no_lang_code', 'name', 'Visa (United Kingdom)'),
(60265, 49887, 'de', 'name', 'Forschungsvereinigung für Luft- und Trocknungstechnik'),
(60266, 49888, 'no_lang_code', 'name', 'Technical Solutions (United States)'),
(60267, 49889, 'en', 'name', 'Norfolk Public Schools'),
(60268, 49890, 'no_lang_code', 'name', 'Stryker (Canada)'),
(60269, 49891, 'no_lang_code', 'name', 'Biosettia (United States)'),
(60270, 49892, 'en', 'name', 'Institute of Biomedical Science'),
(60271, 49893, 'no_lang_code', 'name', 'Cirrus Logic (United States)'),
(60272, 49894, 'no_lang_code', 'name', 'Cook Medical (Australia)'),
(60273, 49895, 'no_lang_code', 'name', 'Megger (Germany)'),
(60274, 49896, 'en', 'name', 'Pushchino State Institute of Natural Sciences'),
(60275, 49896, 'ru', 'name', 'ŠŸŃƒŃ‰ŠøŠ½ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(60276, 49897, 'en', 'name', 'Division of Parasitic Diseases and Malaria'),
(60277, 49898, 'en', 'name', 'International Peace Institute'),
(60278, 49899, 'no_lang_code', 'name', 'Smart Component Technologies (United Kingdom)'),
(60279, 49900, 'en', 'name', 'Royal United Services Institute'),
(60280, 49901, 'no_lang_code', 'name', 'New Horizons Diagnostics (United States)'),
(60281, 49902, 'no_lang_code', 'name', 'Nortek (United States)'),
(60282, 49903, 'en', 'name', 'Shizuoka Prefectural Education Center'),
(60283, 49903, 'ja', 'name', 'é™å²”ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(60284, 49904, 'en', 'name', 'Center for Research on Political Economy'),
(60285, 49905, 'en', 'name', 'Kawasaki College of Allied Health Professions'),
(60286, 49905, 'ja', 'name', 'å·å“ŽåŒ»ē™‚ēŸ­ęœŸå¤§å­¦'),
(60287, 49906, 'no_lang_code', 'name', 'NovaTech (United States)'),
(60288, 49907, 'en', 'name', 'Oita Industrial Research Institute'),
(60289, 49907, 'ja', 'name', 'å¤§åˆ†ēœŒē”£ę„­ē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(60290, 49908, 'no_lang_code', 'name', 'General Electric (Switzerland)'),
(60291, 49909, 'no_lang_code', 'name', 'InnoSepra (United States)'),
(60292, 49910, 'en', 'name', 'Sumter County Planning Department'),
(60293, 49911, 'en', 'name', 'Colorado Springs School District 11'),
(60294, 49912, 'no_lang_code', 'name', 'T3D Therapeutics (United States)'),
(60295, 49913, 'en', 'name', 'State Optical Institute named after SI Vavilov'),
(60296, 49913, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ оптический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”.И. Вавилова'),
(60297, 49914, 'ja', 'name', 'äæ”č¶ŠåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(60298, 49914, 'no_lang_code', 'name', 'ShinEtsu Chemical (Japan)'),
(60299, 49915, 'fr', 'name', 'Clinique Saint Jean Languedoc'),
(60300, 49916, 'en', 'name', 'Ministry of Urban Development'),
(60301, 49916, 'ne', 'name', 'ą¤øą¤¹ą¤°ą„€ विकास ą¤®ą¤Øą„ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ | ą¤Øą¤æą¤œą¤¾ą¤®ą¤¤ą„€ ą¤øą„‡ą¤µą¤¾ą¤•ą„‹ सपना'),
(60302, 49917, 'en', 'name', 'Tohto College of Health Sciences'),
(60303, 49917, 'ja', 'name', 'ę±éƒ½åŒ»ē™‚å¤§å­¦'),
(60304, 49918, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę¤æęœ¬ćƒć‚Øć‚¤ćƒ³'),
(60305, 49918, 'no_lang_code', 'name', 'Tsubakimoto Chain (Japan)'),
(60306, 49919, 'no_lang_code', 'name', 'Medtronic (Germany)'),
(60307, 49920, 'no_lang_code', 'name', 'Intersil (United States)'),
(60308, 49921, 'no_lang_code', 'name', 'Airbus (India)'),
(60309, 49922, 'no_lang_code', 'name', 'Tech4Imaging (United States)'),
(60310, 49923, 'no_lang_code', 'name', 'Saint-Gobain (Germany)'),
(60311, 49924, 'en', 'name', 'Niigata Prefectural Nagaoka High School'),
(60312, 49924, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹é•·å²”é«˜ē­‰å­¦ę ”'),
(60313, 49925, 'de', 'name', 'Werner-Wicker-Klinik'),
(60314, 49926, 'en', 'name', 'Life Sciences Discovery Fund'),
(60315, 49927, 'en', 'name', 'Hydro Tasmania'),
(60316, 49928, 'no_lang_code', 'name', 'Altranex (Canada)'),
(60317, 49929, 'en', 'name', 'Office of the South Australian Chief Entrepreneur'),
(60318, 49930, 'no_lang_code', 'name', 'Stanley Black & Decker (Israel)'),
(60319, 49931, 'no_lang_code', 'name', 'Spinologics (Canada)'),
(60320, 49932, 'no_lang_code', 'name', 'Oregon Physics (United States)'),
(60321, 49933, 'en', 'name', 'McCallum Theatre'),
(60322, 49934, 'en', 'name', 'Gaston Day School'),
(60323, 49935, 'en', 'name', 'Bakhtar University'),
(60324, 49935, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† ŲØŲ§Ų®ŲŖŲ±'),
(60325, 49936, 'no_lang_code', 'name', 'C4i (Canada)'),
(60326, 49937, 'en', 'name', 'Trinity Valley Community College'),
(60327, 49938, 'en', 'name', 'Georgia Tech Tools for Life'),
(60328, 49939, 'en', 'name', 'Shiminkatsudou Information Center'),
(60329, 49940, 'en', 'name', 'African Agricultural Technology Foundation'),
(60330, 49941, 'de', 'name', 'Battelle'),
(60331, 49942, 'en', 'name', 'Montgomery City County Public Library'),
(60332, 49943, 'en', 'name', 'Australian Respiratory and Sleep Medicine Institute'),
(60333, 49944, 'pt', 'name', 'Associação Brasileira de Águas Subterrâneas'),
(60334, 49945, 'en', 'name', 'Yonezawa Chuo Senior High School'),
(60335, 49945, 'ja', 'name', 'ē±³ę²¢äø­å¤®é«˜ē­‰å­¦ę ”'),
(60336, 49946, 'en', 'name', 'Polar Scientific'),
(60337, 49947, 'no_lang_code', 'name', 'Coare Biotechnology (United States)'),
(60338, 49948, 'no_lang_code', 'name', 'BorgWarner (Germany)'),
(60339, 49949, 'en', 'name', 'Manuscript Society'),
(60340, 49950, 'no_lang_code', 'name', 'Chevron Phillips Chemical (United States)'),
(60341, 49951, 'en', 'name', 'Council for Aid to Education'),
(60342, 49952, 'en', 'name', 'County of Los Angeles Public Library'),
(60343, 49953, 'en', 'name', 'Institute of Crystallography'),
(60344, 49953, 'it', 'name', 'Istituto di Cristallografia'),
(60345, 49954, 'en', 'name', 'Department of Food Technology and Quality Control'),
(60346, 49955, 'en', 'name', 'Denise Louie Education Center'),
(60347, 49956, 'en', 'name', 'Centre for Inflammation Research'),
(60348, 49957, 'en', 'name', 'Japan Society for Occupational Health'),
(60349, 49957, 'ja', 'name', 'ę—„ęœ¬ē”£ę„­č”›ē”Ÿå­¦ä¼š'),
(60350, 49958, 'ja', 'name', 'ć‚¢ć‚¤ć‚·ćƒ³ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(60351, 49958, 'no_lang_code', 'name', 'Aisin (United States)'),
(60352, 49959, 'da', 'name', 'TandlƦgeforeningen'),
(60353, 49960, 'no_lang_code', 'name', 'Invivo Sciences (United States)'),
(60354, 49961, 'en', 'name', 'Leadership Florida'),
(60355, 49962, 'en', 'name', 'Rayat Institute of Engineering & Information Technology'),
(60356, 49962, 'hi', 'name', 'रयात ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(60357, 49963, 'en', 'name', 'Okayama Prefectural Kurashiki Chuo High School'),
(60358, 49963, 'ja', 'name', 'å²”å±±ēœŒē«‹å€‰ę•·äø­å¤®é«˜ē­‰å­¦ę ”'),
(60359, 49964, 'no_lang_code', 'name', 'MACOM (Japan)'),
(60360, 49965, 'es', 'name', 'Academia Nacional de Ciencias de Bolivia'),
(60361, 49966, 'no_lang_code', 'name', 'Horiba (Germany)'),
(60362, 49967, 'en', 'name', 'Canadian Society of Petroleum Geologists'),
(60363, 49968, 'en', 'name', 'Association of universities in the Netherlands'),
(60364, 49968, 'nl', 'name', 'Vereniging van Samenwerkende Nederlandse Universiteiten'),
(60365, 49969, 'no_lang_code', 'name', 'Eyeball (Canada)'),
(60366, 49970, 'en', 'name', 'Ability Development Training Center'),
(60367, 49970, 'ja', 'name', 'čƒ½åŠ›é–‹ē™ŗē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(60368, 49971, 'en', 'name', 'Northeast Community College'),
(60369, 49972, 'no_lang_code', 'name', 'Realtek (Taiwan)'),
(60370, 49972, 'zh', 'name', 'ē‘žę˜±åŠå°Žé«”č‚”ä»½ęœ‰é™å…¬åø'),
(60371, 49973, 'en', 'name', 'Chinese Society for Tropical Crops'),
(60372, 49973, 'zh', 'name', 'äø­å›½ēƒ­åø¦ä½œē‰©å­¦ä¼š'),
(60373, 49974, 'no_lang_code', 'name', 'Valeo (United States)'),
(60374, 49975, 'en', 'name', 'Statistics Sweden'),
(60375, 49975, 'sv', 'name', 'Statistiska CentralbyrƄn'),
(60376, 49976, 'no_lang_code', 'name', 'Jordan Valley Semiconductors (Israel)'),
(60377, 49977, 'en', 'name', 'Climate Resilience Infrastructure Development Facility'),
(60378, 49978, 'en', 'name', 'Higashi Chikushi Junior College'),
(60379, 49978, 'ja', 'name', 'ę±ē­‘ē“«ēŸ­ęœŸå¤§å­¦'),
(60380, 49979, 'en', 'name', 'Foundation for the Mid South'),
(60381, 49980, 'en', 'name', 'Sierra Leone Agricultural Research Institute'),
(60382, 49981, 'ja', 'name', 'ę—„ęœ¬é›»ē”£ę Ŗå¼ä¼šē¤¾'),
(60383, 49981, 'no_lang_code', 'name', 'Nidec (Japan)'),
(60384, 49982, 'no_lang_code', 'name', 'UFI Filters (Italy)'),
(60385, 49983, 'en', 'name', 'American Physician Scientists Association'),
(60386, 49984, 'en', 'name', 'Ohara Memorial Institute for Science of Labour'),
(60387, 49984, 'ja', 'name', 'å¤§åŽŸčØ˜åæµåŠ“åƒē§‘å­¦ē ”ē©¶ę‰€'),
(60388, 49985, 'en', 'name', 'Institute of Mathematics and Mathematical Modeling'),
(60389, 49986, 'no_lang_code', 'name', 'Engineered Coatings (United States)'),
(60390, 49987, 'en', 'name', 'Envision Education'),
(60391, 49988, 'en', 'name', 'Chiba Prefectural Government'),
(60392, 49988, 'ja', 'name', 'åƒå¶åŽæę”æåŗœ'),
(60393, 49989, 'en', 'name', 'Sydney Orthopaedic Research Institute'),
(60394, 49990, 'ko', 'name', 'ģ—ģŠ¤ģ¼€ģ“ģ»¤ė®¤ė‹ˆģ¼€ģ“ģ…˜ģ¦ˆ'),
(60395, 49990, 'no_lang_code', 'name', 'SK Communications (South Korea)'),
(60396, 49991, 'en', 'name', 'Hinton Area Foundation'),
(60397, 49992, 'en', 'name', 'Tokyo Metropolitan Art Museum'),
(60398, 49992, 'ja', 'name', 'ę±äŗ¬éƒ½ē¾Žč”“é¤Ø'),
(60399, 49993, 'en', 'name', 'Clock View Hospital'),
(60400, 49994, 'en', 'name', 'Oita Junior College'),
(60401, 49994, 'ja', 'name', 'å¤§åˆ†ēŸ­ęœŸå¤§å­¦'),
(60402, 49995, 'no_lang_code', 'name', 'Gaertner (United States)'),
(60403, 49996, 'no_lang_code', 'name', 'Gabriel Entertainment (United States)'),
(60404, 49997, 'en', 'name', 'World Phenomenology Institute'),
(60405, 49998, 'en', 'name', 'Industrial Research Institute of Shizuoka Prefecture'),
(60406, 49998, 'ja', 'name', 'é™å²”ēœŒå·„ę„­ęŠ€č”“ē ”ē©¶ę‰€'),
(60407, 49999, 'no_lang_code', 'name', 'Kerecis (Iceland)'),
(60408, 50000, 'pt', 'name', 'Inesc P&D Brasil'),
(60409, 50001, 'en', 'name', 'Innovation Center Denmark'),
(60410, 50002, 'no_lang_code', 'name', 'Mediolanum Farmaceutici (Italy)'),
(60411, 50003, 'en', 'name', 'National Writing Project'),
(60412, 50004, 'no_lang_code', 'name', 'Team Production (Denmark)'),
(60413, 50005, 'en', 'name', 'Virginia Beach Public Library'),
(60414, 50006, 'en', 'name', 'Dean Witter Foundation'),
(60415, 50007, 'no_lang_code', 'name', 'CCL Industries (United States)'),
(60416, 50008, 'no_lang_code', 'name', 'Inflamax Research (Canada)'),
(60417, 50009, 'en', 'name', 'United Way of Spokane County'),
(60418, 50010, 'en', 'name', 'British Society of Gerontology'),
(60419, 50011, 'no_lang_code', 'name', 'Leavitt Partners (United States)'),
(60420, 50012, 'en', 'name', 'Alaska Conservation Foundation'),
(60421, 50013, 'en', 'name', 'John Tracy Clinic'),
(60422, 50014, 'no_lang_code', 'name', 'Dr. August Wolff (Germany)'),
(60423, 50015, 'no_lang_code', 'name', 'VaxTrac'),
(60424, 50016, 'no_lang_code', 'name', 'Montavit (Austria)'),
(60425, 50017, 'en', 'name', 'American Hungarian Foundation'),
(60426, 50018, 'en', 'name', 'Psychiatric Medicine Associates'),
(60427, 50019, 'en', 'name', 'Yinchuan First People''s Hospital'),
(60428, 50019, 'zh', 'name', 'é“¶å·ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(60429, 50020, 'en', 'name', 'Family Allergy and Asthma Research Institute'),
(60430, 50021, 'en', 'name', 'YES Prep Public Schools'),
(60431, 50022, 'en', 'name', 'National Critical Care and Trauma Response Centre'),
(60432, 50023, 'en', 'name', 'Dali Traditional Chinese Medicine Hospital'),
(60433, 50023, 'zh', 'name', 'å¤§ē†ē™½ę—č‡Ŗę²»å·žäø­åŒ»åŒ»é™¢'),
(60434, 50024, 'en', 'name', 'Moscow Clinical Scientific Center'),
(60435, 50024, 'ru', 'name', 'Москва Центра клинических исслеГований'),
(60436, 50025, 'en', 'name', 'Orlando Clinical Research Center'),
(60437, 50026, 'en', 'name', 'European Society for Paediatric Endocrinology'),
(60438, 50027, 'no_lang_code', 'name', 'Vectura (United Kingdom)'),
(60439, 50028, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—„ęœ¬č£½é‹¼ę‰€'),
(60440, 50028, 'no_lang_code', 'name', 'Japan Steel Works (Japan)'),
(60441, 50029, 'fr', 'name', 'Centre Hospitalier de Roubaix, Hospital Center De Roubaix'),
(60442, 50030, 'en', 'name', 'Pain Relief Foundation'),
(60443, 50031, 'pt', 'name', 'Alergo Dermatologia Integrada'),
(60444, 50032, 'it', 'name', 'Azienda Unita'' Sanitaria Locale Di Modena'),
(60445, 50033, 'nl', 'name', 'Werkgroep Immunotherapie Nederland voor Oncologie'),
(60446, 50034, 'en', 'name', 'Nineveh Charitable Trust'),
(60447, 50035, 'en', 'name', 'Wuhan Dongxihu District People Hospital'),
(60448, 50035, 'zh', 'name', 'äøœč„æę¹–åŒŗäŗŗę°‘åŒ»é™¢'),
(60449, 50036, 'en', 'name', 'Community Foundation of South Puget Sound'),
(60450, 50037, 'no_lang_code', 'name', 'Sentinext Therapeutics (Malaysia)'),
(60451, 50038, 'en', 'name', 'Orange Coast Memorial Medical Center'),
(60452, 50039, 'en', 'name', 'Morgan Family Foundation'),
(60453, 50040, 'en', 'name', 'Shuozhou Central Hospital'),
(60454, 50040, 'zh', 'name', 'ęœ”å·žäø­åæƒåŒ»é™¢'),
(60455, 50041, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒÆć‚³ćƒ '),
(60456, 50041, 'no_lang_code', 'name', 'Wacom (Japan)'),
(60457, 50042, 'no_lang_code', 'name', 'Halozyme Therapeutics (United States)'),
(60458, 50043, 'en', 'name', 'Rocky Mountain PBS'),
(60459, 50044, 'en', 'name', 'Coastal Carolina Research Center'),
(60460, 50045, 'en', 'name', 'SeaView Research'),
(60461, 50046, 'no_lang_code', 'name', 'Profile Pharma (United Kingdom)'),
(60462, 50047, 'no_lang_code', 'name', 'Sintetica (Switzerland)'),
(60463, 50048, 'en', 'name', 'Australian Prime Ministers Centre'),
(60464, 50049, 'no_lang_code', 'name', 'Jegs (United States)'),
(60465, 50050, 'en', 'name', 'Washington Health Foundation'),
(60466, 50051, 'de', 'name', 'Stiftung Endoprothetik'),
(60467, 50052, 'en', 'name', 'Partners HealthCare Connected Health'),
(60468, 50053, 'no_lang_code', 'name', 'Ingredion (United States)'),
(60469, 50054, 'en', 'name', 'Meadowlark Hills'),
(60470, 50055, 'en', 'name', 'Douglas B. Marshall Jr. Family Foundation'),
(60471, 50056, 'en', 'name', 'Educurious'),
(60472, 50057, 'en', 'name', 'Lea''s Foundation for Leukemia Research'),
(60473, 50058, 'en', 'name', 'Dan Jansen Foundation'),
(60474, 50059, 'en', 'name', 'Citizen Schools'),
(60475, 50060, 'en', 'name', 'Grekin Skin Institute'),
(60476, 50061, 'en', 'name', 'Saint Joseph Medical Center Joliet'),
(60477, 50062, 'no_lang_code', 'name', 'Thinkcerca.com (United States)'),
(60478, 50063, 'en', 'name', 'Center for Clinical and Cosmetic Research'),
(60479, 50064, 'no_lang_code', 'name', 'Cupron (United States)'),
(60480, 50065, 'da', 'name', 'Moesgaard Museum'),
(60481, 50066, 'en', 'name', 'Myocarditis Foundation'),
(60482, 50067, 'no_lang_code', 'name', 'Oasmia Pharmaceutical (Sweden)'),
(60483, 50068, 'en', 'name', 'Chesapeake Research Group'),
(60484, 50069, 'no_lang_code', 'name', 'Kathrein (Germany)'),
(60485, 50070, 'en', 'name', 'Brentwood Hospital'),
(60486, 50071, 'no_lang_code', 'name', 'ERG Holding Company (United States)'),
(60487, 50072, 'en', 'name', 'Marbrook Foundation'),
(60488, 50073, 'no_lang_code', 'name', 'Stabilus (Germany)'),
(60489, 50074, 'en', 'name', 'Kresge Eye Institute'),
(60490, 50075, 'no_lang_code', 'name', 'Sensor Development Corporation (United States)'),
(60491, 50076, 'en', 'name', 'Henderson Behavioral Health'),
(60492, 50077, 'en', 'name', 'Quest Research Institute'),
(60493, 50078, 'no_lang_code', 'name', 'Circassia Pharmaceuticals (United Kingdom)'),
(60494, 50079, 'sv', 'name', 'Diabetesfonden'),
(60495, 50080, 'en', 'name', 'Barra Foundation'),
(60496, 50081, 'en', 'name', 'Oklahoma State University Medical Center'),
(60497, 50082, 'en', 'name', 'International Society for Science and Religion'),
(60498, 50083, 'en', 'name', 'American Medical Research'),
(60499, 50084, 'en', 'name', 'Tacoma Housing Authority'),
(60500, 50085, 'en', 'name', 'Jack Kent Cooke Foundation'),
(60501, 50086, 'en', 'name', 'Vatican Observatory Foundation'),
(60502, 50087, 'en', 'name', 'George A. and Eliza Gardner Howard Foundation'),
(60503, 50088, 'en', 'name', 'California State Beekeepers Association'),
(60504, 50089, 'no_lang_code', 'name', 'Tècniques de Gestió de la Informació'),
(60505, 50090, 'en', 'name', 'World University Service of Canada'),
(60506, 50091, 'en', 'name', 'Alfred Friendly Press Partners'),
(60507, 50092, 'en', 'name', 'Atlanta Public Schools'),
(60508, 50093, 'en', 'name', 'National Association for the Advancement of Colored People'),
(60509, 50094, 'en', 'name', 'National Library of South Africa'),
(60510, 50095, 'no_lang_code', 'name', 'Glycotope (Germany)'),
(60511, 50096, 'en', 'name', 'Friends of the National Library of Medicine'),
(60512, 50097, 'en', 'name', 'Access Behavioral Health'),
(60513, 50098, 'en', 'name', 'Xian Central Hospital'),
(60514, 50098, 'zh', 'name', 'č„æå®‰åø‚äø­åæƒåŒ»é™¢'),
(60515, 50099, 'en', 'name', 'California Retina Consultants'),
(60516, 50100, 'en', 'name', 'European Peacebuilding Liaison Office'),
(60517, 50101, 'no', 'name', 'Norsk Gastrointestinal Cancer Gruppe'),
(60518, 50102, 'en', 'name', 'Northwest Medical Rehabilitation'),
(60519, 50103, 'en', 'name', 'Georgia Budget & Policy Institute'),
(60520, 50104, 'es', 'name', 'Instituto Tecnológico PET'),
(60521, 50105, 'en', 'name', 'Jinzhou Central Hospital'),
(60522, 50106, 'en', 'name', 'American Academy for Jewish Research'),
(60523, 50107, 'en', 'name', 'Endocrinology Northwest'),
(60524, 50108, 'en', 'name', 'Society for Research on Educational Effectiveness'),
(60525, 50109, 'en', 'name', 'Japan Agency for Medical Research and Development'),
(60526, 50109, 'ja', 'name', 'ę—„ęœ¬åŒ»ē™‚ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(60527, 50110, 'en', 'name', 'National Newspaper Publishers Association'),
(60528, 50111, 'en', 'name', 'Nordic Society of Gynecologic Oncology'),
(60529, 50112, 'sv', 'name', 'HƤssleholms Sjukhus'),
(60530, 50113, 'en', 'name', 'Personal Enhancement Center'),
(60531, 50114, 'en', 'name', 'Dishler Laser Institute'),
(60532, 50115, 'no_lang_code', 'name', 'IAC Group (United States)'),
(60533, 50116, 'en', 'name', 'Society of Gynaecology and Obstetrics of Nigeria'),
(60534, 50117, 'en', 'name', 'Institute for Environmental Solutions'),
(60535, 50117, 'lv', 'name', 'Institūts Vides risinājumu'),
(60536, 50118, 'en', 'name', 'Houston Foot and Ankle Care'),
(60537, 50119, 'en', 'name', 'Charles and Lynn Schusterman Family Foundation'),
(60538, 50120, 'no_lang_code', 'name', 'Korea Gas Corporation (South Korea)'),
(60539, 50121, 'en', 'name', 'Eye Institute of West Florida'),
(60540, 50122, 'en', 'name', 'DKT International'),
(60541, 50123, 'en', 'name', 'Yukon Department of Education'),
(60542, 50124, 'no_lang_code', 'name', 'AGA (Sweden)'),
(60543, 50125, 'it', 'name', 'Associazione Bianca Garavaglia Onlus'),
(60544, 50126, 'en', 'name', 'Chest Wall and Spine Deformity Research Foundation'),
(60545, 50127, 'en', 'name', 'James Jones Literary Society'),
(60546, 50128, 'en', 'name', 'Tanta University Hospital'),
(60547, 50129, 'en', 'name', 'New India Foundation'),
(60548, 50130, 'en', 'name', 'Archival Education and Research Institute'),
(60549, 50131, 'no_lang_code', 'name', 'Autifony Therapeutics (United Kingdom)'),
(60550, 50132, 'no_lang_code', 'name', 'Smith & Nephew (Germany)'),
(60551, 50133, 'en', 'name', 'Panyu Hospital of Chinese Medicine'),
(60552, 50133, 'zh', 'name', 'ē•Ŗē¦ŗäø­åŒ»é™¢'),
(60553, 50134, 'en', 'name', 'Phoenix Public Library'),
(60554, 50135, 'en', 'name', 'Alfred Benzon Foundation'),
(60555, 50136, 'no_lang_code', 'name', 'Align Technology (United States)'),
(60556, 50137, 'en', 'name', 'Kiwanis Club of Rockford'),
(60557, 50138, 'en', 'name', 'International Essential Tremor Foundation'),
(60558, 50139, 'en', 'name', 'International Telecommunication Union'),
(60559, 50139, 'fr', 'name', 'Union Internationale des TƩlƩcommunications'),
(60560, 50140, 'en', 'name', 'Rapid Medical Research'),
(60561, 50141, 'en', 'name', 'Catalyst for Payment Reform'),
(60562, 50142, 'en', 'name', 'AuDA Foundation'),
(60563, 50143, 'en', 'name', 'Sheffield Children''s University'),
(60564, 50144, 'no_lang_code', 'name', 'Reckitt Benckiser (Netherlands)'),
(60565, 50145, 'en', 'name', 'Huntington''s Disease Society of America'),
(60566, 50146, 'en', 'name', 'Fairfield Behavioral Health Services'),
(60567, 50147, 'en', 'name', 'Municipal League Foundatio'),
(60568, 50148, 'no_lang_code', 'name', 'Bruno Farmaceutici (Italy)'),
(60569, 50149, 'en', 'name', 'Bay and Paul Foundations'),
(60570, 50150, 'en', 'name', 'Tidewater Kidney Specialists'),
(60571, 50151, 'ja', 'name', 'ć‚¤ćƒ¼ć‚°ćƒ«å·„ę„­'),
(60572, 50151, 'no_lang_code', 'name', 'Eagle Industry (Japan)'),
(60573, 50152, 'en', 'name', 'Televisa Foundation'),
(60574, 50153, 'no_lang_code', 'name', 'Infirst Healthcare (United Kingdom)'),
(60575, 50154, 'pl', 'name', 'Centrum Kopernika Badań Interdyscyplinarnych'),
(60576, 50155, 'no_lang_code', 'name', 'Grieshaber (Germany)'),
(60577, 50156, 'en', 'name', 'Great Schools Partnership'),
(60578, 50157, 'en', 'name', 'Finnish Diabetes Association'),
(60579, 50157, 'fi', 'name', 'Suomen Diabetesliitto'),
(60580, 50158, 'en', 'name', 'Indian Rheumatology Association'),
(60581, 50159, 'no_lang_code', 'name', 'Nexus (Italy)'),
(60582, 50160, 'en', 'name', 'Montreal Economic Institute'),
(60583, 50161, 'en', 'name', 'BrightSpark Foundation'),
(60584, 50162, 'no_lang_code', 'name', 'Clariant (United Kingdom)'),
(60585, 50163, 'en', 'name', 'Funeral Service Foundation'),
(60586, 50164, 'es', 'name', 'Grup d''Investigació i Divulgació Oncológica'),
(60587, 50165, 'no_lang_code', 'name', 'Onxeo (Denmark)'),
(60588, 50166, 'en', 'name', 'British Herpetological Society'),
(60589, 50167, 'nl', 'name', 'Koninklijke Nederlandse Maatschappij voor Diergeneeskunde'),
(60590, 50168, 'en', 'name', 'Community Foundation of Northern Illinois'),
(60591, 50169, 'no_lang_code', 'name', 'Noorik Biopharmaceuticals (Switzerland)'),
(60592, 50170, 'no_lang_code', 'name', 'Wenzhou Hospital of Traditional Chinese Medicine'),
(60593, 50170, 'zh', 'name', 'ęø©å·žåø‚äø­åŒ»é™¢'),
(60594, 50171, 'en', 'name', 'International Association for K-12 Online Learning'),
(60595, 50172, 'fr', 'name', 'Amis de l''Institut Bordet'),
(60596, 50173, 'en', 'name', 'North American Membrane Society'),
(60597, 50174, 'en', 'name', 'Qualis Health'),
(60598, 50175, 'en', 'name', 'Oncology Group of Southern Italy'),
(60599, 50175, 'it', 'name', 'Gruppo Oncologico dell''Italia Meridionale'),
(60600, 50176, 'no_lang_code', 'name', 'MetrioPharm (Germany)'),
(60601, 50177, 'en', 'name', 'State Library of Iowa'),
(60602, 50178, 'de', 'name', 'Institut für Kunst- und Musikhistorische Forschungen'),
(60603, 50178, 'en', 'name', 'Institute of History of Art and Musicology'),
(60604, 50179, 'en', 'name', 'Louis-Jeantet Foundation'),
(60605, 50180, 'en', 'name', 'RK Evaluation and Strategies'),
(60606, 50181, 'no_lang_code', 'name', 'Clinuvel Pharmaceuticals (Switzerland)'),
(60607, 50182, 'en', 'name', 'Auction of Washington Wines'),
(60608, 50183, 'en', 'name', 'Money, Crime, and Health Policy Initiative'),
(60609, 50184, 'en', 'name', 'National Association of State Budget Officers'),
(60610, 50185, 'en', 'name', 'BRAC USA'),
(60611, 50186, 'no_lang_code', 'name', 'Mayoly Spindler (France)'),
(60612, 50187, 'en', 'name', 'Harbin Clinic'),
(60613, 50188, 'en', 'name', 'AADC Research Trust'),
(60614, 50189, 'no_lang_code', 'name', 'Boston Scientific (Barbados)'),
(60615, 50190, 'en', 'name', 'American Association of Zoo Veterinarians'),
(60616, 50191, 'nl', 'name', 'Pancreatitis Werkgroep Nederland'),
(60617, 50192, 'no_lang_code', 'name', 'TETEC Tissue Engineering Technologies (Germany)'),
(60618, 50193, 'en', 'name', 'Maternal and Child Health Hospital of Xinjiang Uygur Autonomous Region'),
(60619, 50193, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗå¦‡å¹¼äæå„é™¢'),
(60620, 50194, 'no_lang_code', 'name', 'Seoul Semiconductor (South Korea)'),
(60621, 50195, 'en', 'name', 'People ''s Liberation Army 451 Hospital'),
(60622, 50195, 'zh', 'name', '解放军451医院'),
(60623, 50196, 'no_lang_code', 'name', 'BioMarin (Netherlands)'),
(60624, 50197, 'en', 'name', 'Reproductive Science Center'),
(60625, 50198, 'de', 'name', 'Schƶn Klinik Roseneck'),
(60626, 50199, 'en', 'name', 'PDK International'),
(60627, 50200, 'no_lang_code', 'name', 'Delenex (Switzerland)'),
(60628, 50201, 'en', 'name', 'North Valley Eye Medical Group'),
(60629, 50202, 'en', 'name', 'Jewish Healthcare Foundation'),
(60630, 50203, 'en', 'name', 'Carolina Neurosurgery and Spine Associates'),
(60631, 50204, 'en', 'name', 'Vance Thompson Vision'),
(60632, 50205, 'en', 'name', 'Nizhny Novgorod Regional Clinical Oncology Center'),
(60633, 50205, 'ru', 'name', 'ŠŠøŠ¶Š½ŠøŠ¹ ŠŠ¾Š²Š³Š¾Ń€Š¾Š“ областной онкологический Гиспансер'),
(60634, 50206, 'no_lang_code', 'name', 'Regenex Pharmaceuticals (China)'),
(60635, 50206, 'zh', 'name', 'å¹æå·žęœ—åœ£čÆäøšęœ‰é™å…¬åø ē‰ˆęƒę‰€ęœ‰'),
(60636, 50207, 'en', 'name', 'Squaxin Island Tribe Museum Library and Research Center'),
(60637, 50208, 'no_lang_code', 'name', 'NetHope'),
(60638, 50209, 'en', 'name', 'American Vineyard Foundation'),
(60639, 50210, 'en', 'name', 'Cosmopolitan International'),
(60640, 50211, 'ja', 'name', 'ć‚«ćƒ¤ćƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(60641, 50211, 'no_lang_code', 'name', 'Kayaba Industry (Japan)'),
(60642, 50212, 'da', 'name', 'Aage V. Jensens Fonde'),
(60643, 50213, 'no_lang_code', 'name', 'Chervon (Hongkong)'),
(60644, 50214, 'en', 'name', 'Lawson Foundation'),
(60645, 50215, 'en', 'name', 'Childrens Liver Disease Foundation'),
(60646, 50216, 'en', 'name', 'Fibrolamellar Cancer Foundation'),
(60647, 50217, 'de', 'name', 'DIAKO'),
(60648, 50218, 'en', 'name', 'Endowment for Health'),
(60649, 50219, 'en', 'name', 'Friends United'),
(60650, 50220, 'en', 'name', 'Raleigh Neurology Associates'),
(60651, 50221, 'de', 'name', 'Elisabeth-Krankenhaus Essen'),
(60652, 50222, 'en', 'name', 'Massachusetts Senior Care Foundation'),
(60653, 50223, 'en', 'name', 'Three Bird Swan Consulting Group'),
(60654, 50224, 'no_lang_code', 'name', 'TARH (Portugal)'),
(60655, 50224, 'pt', 'name', 'Terra, Ambiente e Recursos HĆ­dricos foi constituĆ­da'),
(60656, 50225, 'en', 'name', 'American Academy of Sleep Medicine'),
(60657, 50226, 'en', 'name', 'International Union of Biochemistry and Molecular Biology'),
(60658, 50227, 'no_lang_code', 'name', 'Chemotecnica (Argentina)'),
(60659, 50228, 'en', 'name', 'LIMR Chemical Genomics Center'),
(60660, 50229, 'no_lang_code', 'name', 'Romark (United States)'),
(60661, 50230, 'en', 'name', 'Bolyai Foundation'),
(60662, 50231, 'en', 'name', 'Dallas Surgical Group'),
(60663, 50232, 'en', 'name', 'Defense Human Resources Activity'),
(60664, 50233, 'en', 'name', 'Foundation for Women’s Wellness'),
(60665, 50234, 'en', 'name', 'Woburn & North Andover Pediatric Associates'),
(60666, 50235, 'en', 'name', 'Marion Community Foundation'),
(60667, 50236, 'fr', 'name', 'Clinique Paro Excellence'),
(60668, 50237, 'en', 'name', 'Frank Hadley Ginn and Cornelia Root Ginn Charitable Trust'),
(60669, 50238, 'en', 'name', 'Sterling Research Group'),
(60670, 50239, 'en', 'name', 'Day1'),
(60671, 50240, 'en', 'name', 'Danish Centre for Marine Research');
INSERT INTO `ror_settings` VALUES
(60672, 50241, 'en', 'name', 'Azrieli Foundation'),
(60673, 50242, 'de', 'name', 'Institut für Interdisziplinäre Gebirgsforschung'),
(60674, 50242, 'en', 'name', 'Institute for Interdisciplinary Mountain Research'),
(60675, 50243, 'en', 'name', 'China Foundation for Poverty Alleviation'),
(60676, 50243, 'zh', 'name', 'äø­å›½ę‰¶č“«åŸŗé‡‘ä¼š'),
(60677, 50244, 'en', 'name', 'Urology of Virginia'),
(60678, 50245, 'fr', 'name', 'Clinique Saint Pierre'),
(60679, 50246, 'en', 'name', 'Clinical Research Institute'),
(60680, 50247, 'en', 'name', 'Virginia Oncology Associates'),
(60681, 50248, 'no_lang_code', 'name', 'Delta Faucet (United States)'),
(60682, 50249, 'no_lang_code', 'name', 'Bluebird Bio (France)'),
(60683, 50250, 'de', 'name', 'Asklepios Fachklinikum Brandenburg'),
(60684, 50251, 'no_lang_code', 'name', 'hVIVO (United Kingdom)'),
(60685, 50252, 'en', 'name', 'Kindred Hospital Rancho'),
(60686, 50253, 'da', 'name', 'Arvid Nilssons Fond'),
(60687, 50254, 'no_lang_code', 'name', 'Shield Therapeutics (Switzerland)'),
(60688, 50255, 'en', 'name', 'Noyce Foundation'),
(60689, 50256, 'no_lang_code', 'name', 'Norgine (Germany)'),
(60690, 50257, 'no_lang_code', 'name', 'Genticel (France)'),
(60691, 50258, 'en', 'name', 'Compass Research'),
(60692, 50259, 'en', 'name', 'Margaret A. Cargill Philanthropies'),
(60693, 50260, 'en', 'name', 'Edward E. Ford Foundation'),
(60694, 50261, 'no_lang_code', 'name', 'Arno Therapeutics (United States)'),
(60695, 50262, 'en', 'name', 'Albert G. and Olive H. Schlink Foundation'),
(60696, 50263, 'no_lang_code', 'name', 'Reckitt Benckiser (Germany)'),
(60697, 50264, 'en', 'name', 'California Education Partners'),
(60698, 50265, 'no_lang_code', 'name', 'Gender Studies'),
(60699, 50266, 'en', 'name', 'Perio Health Professionals'),
(60700, 50267, 'no_lang_code', 'name', 'American Axle & Manufacturing (United States)'),
(60701, 50268, 'en', 'name', 'San Fernando Valley Urological Associates'),
(60702, 50269, 'en', 'name', 'Center for Public Justice'),
(60703, 50270, 'sv', 'name', 'Petrus och Augusta Hedlunds Stiftelse'),
(60704, 50271, 'no_lang_code', 'name', 'Adocia (France)'),
(60705, 50272, 'no_lang_code', 'name', 'Rommelag (Switzerland)'),
(60706, 50273, 'en', 'name', 'Character Counts Mid Shore'),
(60707, 50274, 'en', 'name', 'Suncoast Clinical Research'),
(60708, 50275, 'no_lang_code', 'name', 'Maruho (United Kingdom)'),
(60709, 50276, 'fr', 'name', 'Centre Hospitalier de Redon'),
(60710, 50277, 'no_lang_code', 'name', 'Roper Technologies (United States)'),
(60711, 50278, 'en', 'name', 'Bryan Area Foundation'),
(60712, 50279, 'en', 'name', 'Community-Minded Enterprises'),
(60713, 50280, 'en', 'name', 'Foundation for End of Life Care'),
(60714, 50281, 'en', 'name', 'Beveridge Family Foundation'),
(60715, 50282, 'en', 'name', 'Second People ''s Hospital of Jinzhong'),
(60716, 50282, 'zh', 'name', 'ę™‹äø­åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(60717, 50283, 'en', 'name', 'SightLife'),
(60718, 50284, 'en', 'name', 'World Trade Club'),
(60719, 50285, 'en', 'name', 'Smallholders Foundation'),
(60720, 50286, 'en', 'name', 'World Cocoa Foundation'),
(60721, 50287, 'en', 'name', 'Burke Pharmaceutical Research'),
(60722, 50288, 'en', 'name', 'Institute for Humane Studies'),
(60723, 50289, 'en', 'name', 'Michigan Center for Skin Care Research'),
(60724, 50290, 'en', 'name', 'Clinical Physiology Associates'),
(60725, 50291, 'no_lang_code', 'name', 'PregLem (Switzerland)'),
(60726, 50292, 'en', 'name', 'Captain Planet Foundation'),
(60727, 50293, 'en', 'name', 'Bioscience Research'),
(60728, 50294, 'no_lang_code', 'name', 'AgBiome (United States)'),
(60729, 50295, 'no_lang_code', 'name', 'Diurnal (United Kingdom)'),
(60730, 50296, 'ko', 'name', 'ķ¬ķ•­ģ¢…ķ•©ģ œģ²  ģ£¼ģ‹ķšŒģ‚¬'),
(60731, 50296, 'no_lang_code', 'name', 'Pohang Iron and Steel (South Korea)'),
(60732, 50297, 'no_lang_code', 'name', 'Kolon Industries (South Korea)'),
(60733, 50298, 'en', 'name', 'East Valley Hematology & Oncology'),
(60734, 50299, 'en', 'name', 'Kurosawa Hospital'),
(60735, 50299, 'ja', 'name', '黒澤病院'),
(60736, 50300, 'no_lang_code', 'name', 'Savara (Denmark)'),
(60737, 50301, 'en', 'name', 'Field Neurosciences Institute'),
(60738, 50302, 'en', 'name', 'Otho S. A. Sprague Memorial Institute'),
(60739, 50303, 'en', 'name', 'South Africa Development Fund'),
(60740, 50304, 'en', 'name', 'Maryland Brain, Spine + Pain'),
(60741, 50305, 'en', 'name', 'Advanced Pharma'),
(60742, 50306, 'en', 'name', 'Marietta Community Foundation'),
(60743, 50307, 'en', 'name', 'Community and Parents for Public Schools'),
(60744, 50308, 'en', 'name', 'Business Roundtable'),
(60745, 50309, 'en', 'name', 'Orthopedic Center'),
(60746, 50310, 'fr', 'name', 'Fondation Denis Guichard'),
(60747, 50311, 'no_lang_code', 'name', 'WiLAN (United States)'),
(60748, 50312, 'en', 'name', 'Alborada Trust'),
(60749, 50313, 'en', 'name', 'American Public Power Association'),
(60750, 50314, 'it', 'name', 'Fondazione Cassa Di Risparmio Di Cento'),
(60751, 50315, 'en', 'name', 'CIRI Foundation'),
(60752, 50316, 'en', 'name', 'Dirk Nowitzki Foundation'),
(60753, 50317, 'en', 'name', 'Norcliffe Foundation'),
(60754, 50318, 'bg', 'name', 'Š§Š•Š ŠŠžŠœŠžŠ Š”ŠšŠ˜ Š•ŠŠ•Š Š“Š˜Š•Š ŠšŠ›ŠŖŠ”Š¢Š•Š '),
(60755, 50318, 'en', 'name', 'Black Sea Energy Cluster'),
(60756, 50319, 'en', 'name', 'Private Sector Health Alliance of Nigeria'),
(60757, 50320, 'en', 'name', 'Dedalus Foundation'),
(60758, 50321, 'en', 'name', 'Buzau County Museum'),
(60759, 50321, 'ro', 'name', 'Muzeul Județean Buzău'),
(60760, 50322, 'en', 'name', 'Mama Mare Breast Cancer Foundation'),
(60761, 50323, 'en', 'name', 'United Way of the Columbia-Willamette'),
(60762, 50324, 'en', 'name', 'Calvert K Collins Family Foundation'),
(60763, 50325, 'no_lang_code', 'name', 'Immunocore (United States)'),
(60764, 50326, 'en', 'name', 'National Alopecia Areata Foundation'),
(60765, 50327, 'en', 'name', 'Serfenta Association'),
(60766, 50328, 'ro', 'name', 'Spitalului Clinic de Urgență pentru Copii Maria Sklodowska Curie'),
(60767, 50329, 'en', 'name', 'Prairie Education and Research Cooperative'),
(60768, 50330, 'en', 'name', 'Roztocze National Park'),
(60769, 50330, 'pl', 'name', 'Roztoczański Park Narodowy'),
(60770, 50331, 'en', 'name', 'Charles Edison Fund'),
(60771, 50332, 'no_lang_code', 'name', 'Sun Chemical (United States)'),
(60772, 50333, 'en', 'name', 'Clinical Research Consulting'),
(60773, 50334, 'no_lang_code', 'name', 'Vifor Pharma (Germany)'),
(60774, 50335, 'no_lang_code', 'name', 'LTS Lohmann Therapie-Systeme (Germany)'),
(60775, 50336, 'en', 'name', 'Ophthalmology Consultants'),
(60776, 50337, 'en', 'name', 'Mortimer Surgery'),
(60777, 50338, 'en', 'name', 'Tower Urology Medical Group'),
(60778, 50339, 'no_lang_code', 'name', 'BioVirtus (Poland)'),
(60779, 50340, 'en', 'name', 'Olympic Educational Service District'),
(60780, 50341, 'fr', 'name', 'Centre de RadiothƩrapie Bayard'),
(60781, 50342, 'en', 'name', 'Apraxia KIDS'),
(60782, 50343, 'de', 'name', 'Internationale Bodensee-Hochschule'),
(60783, 50344, 'en', 'name', 'Junior Achievement of Delaware'),
(60784, 50345, 'en', 'name', 'Media Trust'),
(60785, 50346, 'en', 'name', 'Water & Sanitation for the Urban Poor'),
(60786, 50347, 'en', 'name', 'Patel Hospital'),
(60787, 50348, 'no_lang_code', 'name', 'Better People (United States)'),
(60788, 50349, 'en', 'name', 'Financial Services Authority'),
(60789, 50350, 'no_lang_code', 'name', 'Presurgy (Spain)'),
(60790, 50351, 'de', 'name', 'Institut für Technikfolgen-Abschätzung'),
(60791, 50351, 'en', 'name', 'Institute of Technology Assessment'),
(60792, 50352, 'it', 'name', 'Gruppo Italiano di Oncologia Geriatrica'),
(60793, 50353, 'de', 'name', 'Rheumazentrum Ruhrgebiet'),
(60794, 50354, 'en', 'name', 'Dean Health Plan'),
(60795, 50355, 'no_lang_code', 'name', 'Janicki Bioenergy (United States)'),
(60796, 50356, 'no_lang_code', 'name', 'Roche (Belgium)'),
(60797, 50357, 'en', 'name', 'Bailey Family Foundation'),
(60798, 50358, 'en', 'name', 'Foundation for Angelman Syndrome Therapeutics'),
(60799, 50359, 'no_lang_code', 'name', 'AC Immune (Switzerland)'),
(60800, 50360, 'en', 'name', 'University Physicians Group'),
(60801, 50361, 'en', 'name', 'Central Coast Nephrology'),
(60802, 50362, 'en', 'name', 'Greater Kansas City Community Foundation'),
(60803, 50363, 'en', 'name', 'Kenya Muslim Youth Alliance'),
(60804, 50364, 'no_lang_code', 'name', 'Timex (United States)'),
(60805, 50365, 'de', 'name', 'Klinikum Altenburger Land'),
(60806, 50366, 'en', 'name', 'Columbia Orthopaedic Group'),
(60807, 50367, 'no_lang_code', 'name', 'Vectura (Germany)'),
(60808, 50368, 'en', 'name', 'Liuzhou General Hospital'),
(60809, 50368, 'zh', 'name', 'ęŸ³å·žåø‚äŗŗę°‘åŒ»é™¢'),
(60810, 50369, 'en', 'name', 'Borean Innovation'),
(60811, 50370, 'en', 'name', 'Clinical Research of South Florida'),
(60812, 50371, 'en', 'name', 'Ohio Academy of Family Physicians'),
(60813, 50372, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© Ų§Ł„Ų³Ų¹ŁŠŲÆ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ©'),
(60814, 50372, 'en', 'name', 'Al-Saeed Foundation for Science and Culture'),
(60815, 50373, 'en', 'name', 'Central Ohio Radiation Oncology'),
(60816, 50374, 'en', 'name', 'Philadelphia Foundation'),
(60817, 50375, 'en', 'name', 'Heritage Fund'),
(60818, 50376, 'no_lang_code', 'name', 'Oostrotex (Belgium)'),
(60819, 50377, 'en', 'name', 'Clinical Investigation Specialists'),
(60820, 50378, 'en', 'name', 'Hermansky Pudlak Syndrome Network'),
(60821, 50379, 'en', 'name', 'Postsecondary National Policy Institute'),
(60822, 50380, 'en', 'name', 'Carolina Women''s Research and Wellness Center'),
(60823, 50381, 'en', 'name', 'Liuzhou Maternal and Child Health Hospital'),
(60824, 50381, 'zh', 'name', 'ęŸ³å·žåø‚å¦‡å¹¼äæå„é™¢'),
(60825, 50382, 'en', 'name', 'Urology San Antonio'),
(60826, 50383, 'en', 'name', 'Behavioral Medical Research'),
(60827, 50384, 'en', 'name', 'Medical Society of the State of New York'),
(60828, 50385, 'en', 'name', 'Wilton Park'),
(60829, 50386, 'en', 'name', 'World Neighbors'),
(60830, 50387, 'en', 'name', 'Anaheim Clinical Trials'),
(60831, 50388, 'no_lang_code', 'name', 'Maple Syrup Urine Disease Family Support Group'),
(60832, 50389, 'no_lang_code', 'name', 'VaxTrials (Panama)'),
(60833, 50390, 'no_lang_code', 'name', 'COFRA (Switzerland)'),
(60834, 50391, 'en', 'name', 'Saint Francis Hospital'),
(60835, 50392, 'en', 'name', 'Georgia Clinical Research'),
(60836, 50393, 'no_lang_code', 'name', 'HLL Lifecare (India)'),
(60837, 50394, 'de', 'name', 'Ebnet Stiftung'),
(60838, 50395, 'en', 'name', 'Seattle Education Access'),
(60839, 50396, 'it', 'name', 'Ospedali Riuniti di Foggia'),
(60840, 50397, 'en', 'name', 'Center for Theology and the Natural Sciences'),
(60841, 50398, 'en', 'name', 'Brentwood Foundation'),
(60842, 50399, 'no_lang_code', 'name', 'Melaka Manipal Medical College'),
(60843, 50400, 'en', 'name', 'Richmond Vascular Center'),
(60844, 50401, 'en', 'name', 'Blumenthal Foundation'),
(60845, 50402, 'no_lang_code', 'name', 'Sanofi (Spain)'),
(60846, 50403, 'en', 'name', 'Sickle Cell Cure Foundation'),
(60847, 50404, 'en', 'name', 'Orthopaedic Associates of Michigan'),
(60848, 50405, 'en', 'name', 'American Astronautical Society'),
(60849, 50406, 'en', 'name', 'Parent Trust for Washington Children'),
(60850, 50407, 'en', 'name', 'Herb Society of America'),
(60851, 50408, 'no_lang_code', 'name', 'Apogenix (Germany)'),
(60852, 50409, 'en', 'name', 'Andover Eye Associates'),
(60853, 50410, 'no_lang_code', 'name', 'Eram Scientific Solutions (India)'),
(60854, 50411, 'no_lang_code', 'name', 'Global Strategy Group'),
(60855, 50412, 'de', 'name', 'Institut für Kulturgeschichte der Antike'),
(60856, 50412, 'en', 'name', 'Institute for the Study of Ancient Culture'),
(60857, 50413, 'en', 'name', 'Cullen Foundation'),
(60858, 50414, 'en', 'name', 'Korea Institute of Sport Science'),
(60859, 50414, 'ko', 'name', 'ķ•œźµ­ģŠ¤ķ¬ģø ź°œė°œģ›'),
(60860, 50415, 'en', 'name', 'Alphawood Foundation'),
(60861, 50416, 'no_lang_code', 'name', 'Hunter Douglas (United States)'),
(60862, 50417, 'en', 'name', 'Bolder Giving'),
(60863, 50418, 'en', 'name', 'Arkansas Cardiology'),
(60864, 50419, 'en', 'name', 'Eden Hall Foundation'),
(60865, 50420, 'en', 'name', 'Heart Foundation'),
(60866, 50421, 'en', 'name', 'Bogliasco Foundation'),
(60867, 50422, 'en', 'name', 'White Ribbon Alliance'),
(60868, 50423, 'en', 'name', 'Retina Associates of Kentucky'),
(60869, 50424, 'en', 'name', 'Lyme Disease Association'),
(60870, 50425, 'en', 'name', 'Agora Foundation'),
(60871, 50426, 'en', 'name', 'Australian Orchid Foundation'),
(60872, 50427, 'en', 'name', 'Pediatric Brain Tumor Consortium'),
(60873, 50428, 'en', 'name', 'Migration Policy Institute'),
(60874, 50429, 'en', 'name', 'Nova Scotia Research and Innovation Trust'),
(60875, 50430, 'en', 'name', 'Coeur d Alene Arthritis Clinic'),
(60876, 50431, 'fr', 'name', 'Le Petit Monde'),
(60877, 50432, 'en', 'name', 'Battle Creek Community Foundation'),
(60878, 50433, 'no_lang_code', 'name', 'Lanxess (United States)'),
(60879, 50434, 'no_lang_code', 'name', 'International Council of Ophthalmology'),
(60880, 50435, 'da', 'name', 'Marselisborgcentret'),
(60881, 50436, 'de', 'name', 'Institut für Pharmakologie und Präventive Medizin'),
(60882, 50436, 'no_lang_code', 'name', 'IPPMed (Germany)'),
(60883, 50437, 'no_lang_code', 'name', 'SeqOmics Biotechnology (Hungary)'),
(60884, 50438, 'ja', 'name', 'ć‹ć‚ć®ć‚Šč²”å›£'),
(60885, 50438, 'no_lang_code', 'name', 'Kamenori Foundation'),
(60886, 50439, 'en', 'name', 'Parkinson Research Foundation'),
(60887, 50440, 'en', 'name', 'Perspectives Charter School'),
(60888, 50441, 'en', 'name', 'Impact Fund'),
(60889, 50442, 'no_lang_code', 'name', 'Premise Data (United States)'),
(60890, 50443, 'en', 'name', 'Research for Action'),
(60891, 50444, 'en', 'name', 'Medical Center Ophthalmology Associates'),
(60892, 50445, 'en', 'name', 'Capita Foundation'),
(60893, 50446, 'no_lang_code', 'name', 'Acuitus (United States)'),
(60894, 50447, 'no_lang_code', 'name', 'Comtech Telecommunications (United States)'),
(60895, 50448, 'en', 'name', 'Kaibara Morikazu Medical Science Promotion Foundation'),
(60896, 50448, 'ja', 'name', 'ęµ·åŽŸē››å’ŒåŒ»å­¦ęŒÆčˆˆč²”å›£'),
(60897, 50449, 'en', 'name', 'Jackson Foundation'),
(60898, 50450, 'en', 'name', 'Jon Bon Jovi Soul Foundation'),
(60899, 50451, 'en', 'name', 'American Orthopaedic Foot and Ankle Society'),
(60900, 50452, 'en', 'name', 'American Association of Avian Pathologists'),
(60901, 50453, 'no_lang_code', 'name', 'GfK (United States)'),
(60902, 50454, 'en', 'name', 'Free To Breathe'),
(60903, 50455, 'da', 'name', 'Selskabet til Forskning i ArbejderbevƦgelsens Historie'),
(60904, 50455, 'no_lang_code', 'name', 'Sfah (Denmark)'),
(60905, 50456, 'en', 'name', 'Central Texas Neurology Consultants'),
(60906, 50457, 'fr', 'name', 'Hopitaux Civils de Colmar'),
(60907, 50458, 'en', 'name', 'California Cancer Associates for Research and Excellence'),
(60908, 50459, 'en', 'name', 'NALEO Educational Fund'),
(60909, 50460, 'ro', 'name', 'Spitalul Clinic C.F. Iasi'),
(60910, 50461, 'en', 'name', 'Busara Center for Behavioral Economics'),
(60911, 50462, 'no_lang_code', 'name', 'Harras Pharma (Germany)'),
(60912, 50463, 'no_lang_code', 'name', 'Ziopharm Oncology (United States)'),
(60913, 50464, 'en', 'name', 'Australian Liver Foundation'),
(60914, 50465, 'es', 'name', 'Hospital General Nuestra SeƱora del Prado'),
(60915, 50466, 'en', 'name', 'International Society for Peritoneal Dialysis'),
(60916, 50467, 'en', 'name', 'Mitte Foundation'),
(60917, 50468, 'en', 'name', 'Clark and Watson Family Dental Practice'),
(60918, 50469, 'no_lang_code', 'name', 'LearnZillion (United States)'),
(60919, 50470, 'en', 'name', 'Death Valley Natural History Association'),
(60920, 50471, 'en', 'name', 'Dutch Blood Transfusion Society'),
(60921, 50471, 'nl', 'name', 'Nederlandse Vereniging voor Bloedtransfusie'),
(60922, 50472, 'da', 'name', 'Karen Elise Jensens Fond'),
(60923, 50473, 'en', 'name', 'Australian Flora Foundation'),
(60924, 50474, 'en', 'name', 'Grazute Regional Park'),
(60925, 50475, 'en', 'name', 'Global Down Syndrome Foundation'),
(60926, 50476, 'en', 'name', 'Osteosynthesis and Trauma Care Foundation'),
(60927, 50477, 'no_lang_code', 'name', 'TC Biopharm (United Kingdom)'),
(60928, 50478, 'en', 'name', 'National Housing Endowment'),
(60929, 50479, 'en', 'name', 'Gulfcoast Clinical Research Center'),
(60930, 50480, 'de', 'name', 'Praxiszentrum OrthopƤdie Unfallchirurgie Nordrhein'),
(60931, 50481, 'en', 'name', 'Inlaks Shivdasani Foundation'),
(60932, 50482, 'en', 'name', 'Rainier Clinical Research Center'),
(60933, 50483, 'en', 'name', 'National Retail Federation'),
(60934, 50484, 'hu', 'name', 'Pozitron-Diagnosztika Kft'),
(60935, 50485, 'en', 'name', 'Harold Mitchell Foundation'),
(60936, 50486, 'no_lang_code', 'name', 'Zelmic (Sweden)'),
(60937, 50487, 'en', 'name', 'Hunter''s Hope Foundation'),
(60938, 50488, 'en', 'name', 'International Waldenstrom''s Macroglobulinemia Foundation'),
(60939, 50489, 'en', 'name', 'Parkinson''s Australia'),
(60940, 50490, 'en', 'name', 'Canandaigua VA Medical Center'),
(60941, 50491, 'no_lang_code', 'name', 'Pfizer (Germany)'),
(60942, 50492, 'en', 'name', 'Texas Tribune'),
(60943, 50493, 'en', 'name', 'Darrell Gwynn Foundation'),
(60944, 50494, 'en', 'name', 'Manitoba Medical Service Foundation'),
(60945, 50495, 'en', 'name', 'VentureWell'),
(60946, 50496, 'en', 'name', 'Past Global Changes'),
(60947, 50497, 'no_lang_code', 'name', 'Coherus BioSciences (United States)'),
(60948, 50498, 'en', 'name', 'Lown Cardiovascular Group'),
(60949, 50499, 'no_lang_code', 'name', 'Kostal (Germany)'),
(60950, 50500, 'en', 'name', 'Leopold Schepp Foundation'),
(60951, 50501, 'en', 'name', 'Alliance for Cancer Gene Therapy'),
(60952, 50502, 'no_lang_code', 'name', 'Alibaba Group (Cayman Islands)'),
(60953, 50503, 'en', 'name', 'Anxiety and Depression Association of America'),
(60954, 50504, 'en', 'name', 'Yakima Valley Community Foundation'),
(60955, 50505, 'en', 'name', 'North Valley Community Foundation'),
(60956, 50506, 'en', 'name', 'MedaPhase'),
(60957, 50507, 'en', 'name', 'John Merck Fund'),
(60958, 50508, 'no_lang_code', 'name', 'Essa Pharma (United States)'),
(60959, 50509, 'en', 'name', 'Accumed Research Associates'),
(60960, 50510, 'en', 'name', 'Institute of the Republic of Slovenia for Nature Conservation'),
(60961, 50510, 'sl', 'name', 'Zavod republike Slovenije za varstvo narave'),
(60962, 50511, 'fr', 'name', 'Fondation Marie et Alain Philippson'),
(60963, 50512, 'en', 'name', 'Brookdale Foundation Group'),
(60964, 50513, 'en', 'name', 'Zhejiang Provincial Hospital of TCM'),
(60965, 50513, 'zh', 'name', 'ęµ™ę±Ÿēœäø­åŒ»é™¢'),
(60966, 50514, 'en', 'name', 'Big Picture Learning'),
(60967, 50515, 'no_lang_code', 'name', 'PrEP Biopharm (United Kingdom)'),
(60968, 50516, 'de', 'name', 'Institut für Europäisches Schadenersatzrecht'),
(60969, 50516, 'en', 'name', 'Institute for European Tort Law'),
(60970, 50517, 'en', 'name', 'Philadelphia Institute of Dermatology'),
(60971, 50518, 'no_lang_code', 'name', 'United States Gypsum (United States)'),
(60972, 50519, 'en', 'name', 'Jewish Women''s Foundation of New York'),
(60973, 50520, 'en', 'name', 'New Hope Clinical Research'),
(60974, 50521, 'en', 'name', 'Romanian Intelligence Service'),
(60975, 50521, 'ro', 'name', 'Serviciul RomĆ¢n de Informații'),
(60976, 50522, 'en', 'name', 'People ''s Hospital of Jilin Province'),
(60977, 50522, 'zh', 'name', 'å‰ęž—ēœäŗŗę°‘åŒ»é™¢'),
(60978, 50523, 'en', 'name', 'King Faisal Foundation'),
(60979, 50524, 'no_lang_code', 'name', 'J C Bamford Excavators (United Kingdom)'),
(60980, 50525, 'en', 'name', 'International Association for the Evaluation of Educational Achievement'),
(60981, 50526, 'no_lang_code', 'name', 'LVMH (France)'),
(60982, 50527, 'no_lang_code', 'name', 'KNG Health Consulting (United States)'),
(60983, 50528, 'en', 'name', 'Mott Childrens Health Center'),
(60984, 50529, 'en', 'name', 'Washington Global Health Alliance'),
(60985, 50530, 'no_lang_code', 'name', 'Revalesio (United states)'),
(60986, 50531, 'en', 'name', 'Indiana State University Foundation'),
(60987, 50532, 'en', 'name', 'Chicago Society for Coatings Technology'),
(60988, 50533, 'en', 'name', 'Bhare Foundation'),
(60989, 50534, 'en', 'name', 'Lucas Research'),
(60990, 50535, 'en', 'name', 'American Thyroid Association'),
(60991, 50536, 'en', 'name', 'Greenwall Foundation'),
(60992, 50537, 'en', 'name', 'Junior Achievement'),
(60993, 50538, 'en', 'name', 'Tulalip Foundation'),
(60994, 50539, 'en', 'name', 'Rabbit Free Australia'),
(60995, 50540, 'en', 'name', 'Cosmos Club Foundation'),
(60996, 50541, 'no_lang_code', 'name', 'NCR (United States)'),
(60997, 50542, 'en', 'name', 'International Extranodal Lymphoma Study Group'),
(60998, 50543, 'en', 'name', 'New Schools for New Orleans'),
(60999, 50544, 'en', 'name', 'Edward Lowe Foundation'),
(61000, 50545, 'en', 'name', 'Brooke Charter Schools'),
(61001, 50546, 'en', 'name', 'Schools, Health & Libraries Broadband'),
(61002, 50547, 'no_lang_code', 'name', 'Pulmagen Therapeutics (United Kingdom)'),
(61003, 50548, 'no_lang_code', 'name', 'Debiopharm (Switzerland)'),
(61004, 50549, 'en', 'name', 'China International Center for Economic and Technical Exchanges'),
(61005, 50549, 'zh', 'name', 'äø­å›½å›½é™…ē»ęµŽęŠ€ęœÆäŗ¤ęµäø­åæƒ'),
(61006, 50550, 'no_lang_code', 'name', 'OSE Immunotherapeutics (France)'),
(61007, 50551, 'en', 'name', 'Leapfrog Group'),
(61008, 50552, 'en', 'name', 'Breast Cancer and Womens Health Institute'),
(61009, 50553, 'es', 'name', 'Hospital Quirónsalud Sagrado Corazón'),
(61010, 50554, 'en', 'name', 'Match Education'),
(61011, 50555, 'en', 'name', 'Center for Autisme'),
(61012, 50556, 'no_lang_code', 'name', 'Celanese (United States)'),
(61013, 50557, 'no_lang_code', 'name', 'Sanofi (Netherlands)'),
(61014, 50558, 'no_lang_code', 'name', 'Adenovir Pharma (Sweden)'),
(61015, 50559, 'no_lang_code', 'name', 'Haber Dermatology and Cosmetic Surgery (United States)'),
(61016, 50560, 'en', 'name', 'Greater Milwaukee Foundation'),
(61017, 50561, 'de', 'name', 'Friede Springer Stiftung'),
(61018, 50562, 'en', 'name', 'Prism Eye Institute'),
(61019, 50563, 'en', 'name', 'Bath and North East Somerset Clinical Commissioning Group'),
(61020, 50564, 'en', 'name', 'Sacco Eye Group'),
(61021, 50565, 'no_lang_code', 'name', 'Galmed Pharmaceuticals (Israel)'),
(61022, 50566, 'en', 'name', 'General Directorate for Environmental Protection'),
(61023, 50566, 'pl', 'name', 'Generalny Dyrektor Ochrony Środowiska'),
(61024, 50567, 'en', 'name', 'Osteopathic Heritage Foundation'),
(61025, 50568, 'no_lang_code', 'name', 'STV Production (Denmark)'),
(61026, 50569, 'en', 'name', 'Provision Center for Proton Therapy'),
(61027, 50570, 'en', 'name', 'Korea Foundation for International Healthcare'),
(61028, 50571, 'en', 'name', 'Center for Aesthetic Dermatology & Laser Surgery'),
(61029, 50572, 'en', 'name', 'Retina Specialists'),
(61030, 50573, 'it', 'name', 'Associazione Nazionale Medici Cardiologi Ospedalieri'),
(61031, 50574, 'en', 'name', 'India Diabetes Research Foundation'),
(61032, 50575, 'de', 'name', 'Krankenhaus vom Roten Kreuz'),
(61033, 50575, 'en', 'name', 'Red Cross Hospital'),
(61034, 50576, 'en', 'name', 'United Heart and Vascular Clinic'),
(61035, 50577, 'en', 'name', 'Sustainability Institute'),
(61036, 50578, 'en', 'name', 'Learning Games Network'),
(61037, 50579, 'fr', 'name', 'Centre de RƩadaptation Cardiaque Les Grands PrƩs'),
(61038, 50580, 'en', 'name', 'Jewell Plastic Surgery Center'),
(61039, 50581, 'en', 'name', 'Brainclinics'),
(61040, 50582, 'es', 'name', 'Instituto Argentino de Diagnóstico y Tratamiento'),
(61041, 50583, 'en', 'name', 'St. Bernard Parish School District'),
(61042, 50584, 'en', 'name', 'Aesthetic Surgery Education and Research Foundation'),
(61043, 50585, 'en', 'name', 'Cerebral Palsy Foundation'),
(61044, 50586, 'en', 'name', 'International Foundation for Research in Experimental Economics'),
(61045, 50587, 'no_lang_code', 'name', 'Green Cross (United States)'),
(61046, 50588, 'en', 'name', 'Owensboro Dermatology Associates'),
(61047, 50589, 'en', 'name', 'National Association of Television Program Executives Educational Foundation'),
(61048, 50590, 'no_lang_code', 'name', 'Invacare (United States)'),
(61049, 50591, 'en', 'name', 'Tavis Smiley Foundation'),
(61050, 50592, 'en', 'name', 'Future Foundation'),
(61051, 50593, 'no_lang_code', 'name', 'Happich (Germany)'),
(61052, 50594, 'en', 'name', 'CurePSP'),
(61053, 50595, 'en', 'name', 'Shenzhen Sixth People''s Hospital'),
(61054, 50595, 'zh', 'name', 'ę·±åœ³åø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(61055, 50596, 'no_lang_code', 'name', 'SanPaTong Hospital'),
(61056, 50596, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąø±ąø™ąø›ą¹ˆąø²ąø•ąø­ąø‡'),
(61057, 50597, 'en', 'name', 'Massage Therapy Foundation'),
(61058, 50598, 'en', 'name', 'Institute for Excellence and Ethics'),
(61059, 50599, 'en', 'name', 'RE Today Services'),
(61060, 50600, 'en', 'name', 'Petroleum Conservation Research Association'),
(61061, 50601, 'en', 'name', 'Preston Healthcare Consulting'),
(61062, 50602, 'no_lang_code', 'name', 'Rehau (Germany)'),
(61063, 50603, 'en', 'name', 'Alpine Clinical Research Center'),
(61064, 50604, 'en', 'name', 'Library Network'),
(61065, 50605, 'en', 'name', 'IGO Medical Group'),
(61066, 50606, 'en', 'name', 'Truman Center for National Policy'),
(61067, 50607, 'no_lang_code', 'name', 'Orphazyme (Denmark)'),
(61068, 50608, 'en', 'name', 'World Affairs Council'),
(61069, 50609, 'en', 'name', 'Diabetes Care and Research Foundation'),
(61070, 50610, 'en', 'name', 'Southern Sports Leagues'),
(61071, 50611, 'en', 'name', 'Housing Development Consortium'),
(61072, 50612, 'en', 'name', 'Adam Taliaferro Foundation'),
(61073, 50613, 'en', 'name', 'Appalachian Stewardship Foundation'),
(61074, 50614, 'no_lang_code', 'name', 'ebm-papst'),
(61075, 50615, 'en', 'name', 'Information and Communication Technology Agency'),
(61076, 50616, 'en', 'name', 'Rutgers Sexual and Reproductive Health and Rights'),
(61077, 50617, 'no_lang_code', 'name', 'Biogen (United Kingdom)'),
(61078, 50618, 'en', 'name', 'Argosy Foundation'),
(61079, 50619, 'en', 'name', 'Benjamin Franklin Tercentenary'),
(61080, 50620, 'en', 'name', 'National Partnership for Women & Families'),
(61081, 50621, 'en', 'name', 'Opportunity Institute'),
(61082, 50622, 'no_lang_code', 'name', 'Continental Emitec (Germany)'),
(61083, 50623, 'en', 'name', 'Chonburi Cancer Hospital'),
(61084, 50623, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąøŠąø„ąøšąøøąø£ąøµ'),
(61085, 50624, 'en', 'name', 'Duke Endowment'),
(61086, 50625, 'en', 'name', 'Dr. Scholl Foundation'),
(61087, 50626, 'en', 'name', 'Health Tech Strategies'),
(61088, 50627, 'en', 'name', 'ASIS Foundation'),
(61089, 50628, 'en', 'name', 'British Mycological Society'),
(61090, 50629, 'en', 'name', 'British Society for the Philosophy of Science'),
(61091, 50630, 'no_lang_code', 'name', 'Verisfield (Greece)'),
(61092, 50631, 'en', 'name', 'Jewish Family Service of Seattle'),
(61093, 50632, 'en', 'name', 'American Society of Interior Designers Foundation'),
(61094, 50633, 'no_lang_code', 'name', 'Acerde (France)'),
(61095, 50634, 'en', 'name', 'Alpha Omega Foundation'),
(61096, 50635, 'en', 'name', 'American Islamic Congress'),
(61097, 50636, 'en', 'name', 'Peking University Stomatological Hospital'),
(61098, 50637, 'it', 'name', 'Fondazione Carical - Cassa di Risparmio di Calabria e di Lucania'),
(61099, 50638, 'en', 'name', 'James Pantyfedwen Foundation'),
(61100, 50639, 'no_lang_code', 'name', 'TetraGenetics (United States)'),
(61101, 50640, 'no_lang_code', 'name', 'Smetumet'),
(61102, 50641, 'en', 'name', 'VA New England Healthcare System'),
(61103, 50642, 'it', 'name', 'Fondazione Neureca Onlus'),
(61104, 50643, 'no_lang_code', 'name', 'Acino International (Germany)'),
(61105, 50644, 'pt', 'name', 'Hospital Leforte'),
(61106, 50645, 'en', 'name', 'Life Quality Resources'),
(61107, 50646, 'en', 'name', 'Nicholas and Elizabeth Slezak Super Center'),
(61108, 50647, 'en', 'name', 'Global Alliance for Rabies Control'),
(61109, 50648, 'no_lang_code', 'name', 'Versartis (United States)'),
(61110, 50649, 'en', 'name', 'AO North America'),
(61111, 50650, 'en', 'name', 'Western Health and Social Care Trust'),
(61112, 50651, 'de', 'name', 'OPO-Stiftung'),
(61113, 50652, 'no_lang_code', 'name', 'Oncocare (Switzerland)'),
(61114, 50653, 'es', 'name', 'Hospital Universitario Dexeus'),
(61115, 50654, 'no_lang_code', 'name', 'Kamada (Israel)'),
(61116, 50655, 'en', 'name', 'Restless Development'),
(61117, 50656, 'en', 'name', 'Health Services Research Association of Australia & New Zealand'),
(61118, 50657, 'en', 'name', 'PICO National Network'),
(61119, 50658, 'en', 'name', 'Bharti Foundation'),
(61120, 50659, 'en', 'name', 'Autism & Developmental Medicine Institute'),
(61121, 50660, 'en', 'name', 'Autism Research Foundation'),
(61122, 50661, 'no_lang_code', 'name', 'Unilabs (Norway)'),
(61123, 50662, 'en', 'name', 'Gift of Hope Organ and Tissue Donor Network'),
(61124, 50663, 'es', 'name', 'Hospital Laboral Solimat'),
(61125, 50664, 'en', 'name', 'Hear and Say'),
(61126, 50665, 'it', 'name', 'Consorzio Oncotech'),
(61127, 50666, 'en', 'name', 'Orthopaedic Center of Vero Beach'),
(61128, 50667, 'no_lang_code', 'name', 'NATSO'),
(61129, 50668, 'no_lang_code', 'name', 'Danaher (Germany)'),
(61130, 50669, 'en', 'name', 'Stuart C Dodd Institute for Social Innovation'),
(61131, 50670, 'it', 'name', 'UniversitĆ  a Vicenza'),
(61132, 50671, 'en', 'name', 'Hope Research Institute'),
(61133, 50672, 'en', 'name', 'Minnesota Orthopedic Sports Medicine Institute'),
(61134, 50673, 'no_lang_code', 'name', 'MedSIR (Spain)'),
(61135, 50674, 'en', 'name', 'National Court Reporters Association'),
(61136, 50675, 'en', 'name', 'Hermitage Medicentres'),
(61137, 50676, 'en', 'name', 'Florida Immigrant Coalition'),
(61138, 50677, 'en', 'name', 'Batten Disease Family Association'),
(61139, 50678, 'en', 'name', 'Linnean Society of London'),
(61140, 50679, 'no_lang_code', 'name', 'Vivus Heart Hospital'),
(61141, 50680, 'en', 'name', 'March of Dimes Canada'),
(61142, 50681, 'en', 'name', 'Western Research Institute'),
(61143, 50682, 'es', 'name', 'Instituto de Investigaciones del SueƱo'),
(61144, 50683, 'no_lang_code', 'name', 'ProDSP Technologies (Hungary)'),
(61145, 50684, 'en', 'name', 'American Fibromyalgia Syndrome Association'),
(61146, 50685, 'en', 'name', 'Building and Social Housing Foundation'),
(61147, 50686, 'en', 'name', 'Belgian Society of Medical Oncology'),
(61148, 50687, 'en', 'name', 'Brinson Foundation'),
(61149, 50688, 'en', 'name', 'Episcopal Church Foundation'),
(61150, 50689, 'en', 'name', 'Riverside County Office of Education'),
(61151, 50690, 'no_lang_code', 'name', 'Sanofi (Finland)'),
(61152, 50691, 'no_lang_code', 'name', 'Themis Bioscience (Austria)'),
(61153, 50692, 'en', 'name', 'State Innovation Exchange'),
(61154, 50693, 'en', 'name', 'Jiren Charity Foundation'),
(61155, 50694, 'en', 'name', 'Lighthouse Guild'),
(61156, 50695, 'en', 'name', 'British Microcirculation Society'),
(61157, 50696, 'no_lang_code', 'name', 'StelaGenomics (United States)'),
(61158, 50697, 'ja', 'name', 'åŒč‘‰ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(61159, 50697, 'no_lang_code', 'name', 'Futaba clinic'),
(61160, 50698, 'en', 'name', 'Arizona Cotton Research and Protection Council'),
(61161, 50699, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© النهضة'),
(61162, 50699, 'en', 'name', 'Nahda College'),
(61163, 50700, 'no_lang_code', 'name', 'Isofol (Sweden)'),
(61164, 50701, 'en', 'name', 'Barker Welfare Foundation'),
(61165, 50702, 'no_lang_code', 'name', 'scPharmaceuticals (United States)'),
(61166, 50703, 'no_lang_code', 'name', 'R-Pharm (Russia)'),
(61167, 50704, 'fr', 'name', 'Centre Hospitalier de VitrƩ'),
(61168, 50705, 'en', 'name', 'Illinois Childrens Healthcare Foundation'),
(61169, 50706, 'en', 'name', 'Public Utilities Office'),
(61170, 50707, 'en', 'name', 'Parenting Matters Foundation'),
(61171, 50708, 'no_lang_code', 'name', 'NuStats (United States)'),
(61172, 50709, 'en', 'name', 'Therapeutics Clinical Research'),
(61173, 50710, 'en', 'name', 'Harriet H. Samuelsson Foundation'),
(61174, 50711, 'en', 'name', 'Anthony Rothe Memorial Trust'),
(61175, 50712, 'en', 'name', 'Christian Family Service Centre'),
(61176, 50713, 'en', 'name', 'McKnight Brain Research Foundation'),
(61177, 50714, 'en', 'name', 'Delta Electronics Foundation'),
(61178, 50715, 'en', 'name', 'Union Carnegie Library'),
(61179, 50716, 'no_lang_code', 'name', 'Enviroinvest Environmental and Biotechnological Corp'),
(61180, 50717, 'no_lang_code', 'name', 'Liminal BioSciences (United Kingdom)'),
(61181, 50718, 'en', 'name', 'Koch Foundation'),
(61182, 50719, 'en', 'name', 'Queens Medical Associates'),
(61183, 50720, 'en', 'name', 'Harry Frank Guggenheim Foundation'),
(61184, 50721, 'no_lang_code', 'name', 'Clinvest (United States)'),
(61185, 50722, 'de', 'name', 'HOPE-Kapstadt-Stiftung'),
(61186, 50723, 'en', 'name', 'Civic Builders'),
(61187, 50724, 'en', 'name', 'Oregon Weight Loss Surgery'),
(61188, 50725, 'en', 'name', 'Oregon State Library'),
(61189, 50726, 'en', 'name', 'Bernard Osher Foundation'),
(61190, 50727, 'no_lang_code', 'name', 'SOM Biotech (Spain)'),
(61191, 50728, 'no_lang_code', 'name', 'Haier (United States)'),
(61192, 50729, 'no_lang_code', 'name', 'VL-Medi Oy (Finland)'),
(61193, 50730, 'no_lang_code', 'name', 'Apprise Bio (United States)'),
(61194, 50731, 'en', 'name', 'Jessie Ball duPont Fund'),
(61195, 50732, 'en', 'name', 'Japan Foundation Sydney'),
(61196, 50733, 'en', 'name', 'New Haven Public Schools'),
(61197, 50734, 'no_lang_code', 'name', 'KaVo Dental (Germany)'),
(61198, 50735, 'de', 'name', 'Karl und Veronica Carstens-Stiftung'),
(61199, 50736, 'en', 'name', 'Little Company of Mary Hospital'),
(61200, 50737, 'no_lang_code', 'name', 'Elpen Pharmaceutical (Greece)'),
(61201, 50738, 'en', 'name', 'Australian Society of Plant Scientists'),
(61202, 50739, 'en', 'name', 'The Char and Chuck Fowler Family Foundation'),
(61203, 50740, 'en', 'name', 'Capalaba Medical Centre'),
(61204, 50741, 'en', 'name', 'Frank H and Eva B Buck Foundation'),
(61205, 50742, 'en', 'name', 'Southwest Georgia Regional Educational Service Agency'),
(61206, 50743, 'sv', 'name', 'Arvid Carlsson Fonden'),
(61207, 50744, 'no_lang_code', 'name', 'Preh (Germany)'),
(61208, 50745, 'en', 'name', 'Team Pennsylvania Foundation'),
(61209, 50746, 'no_lang_code', 'name', 'Octapharma (United Kingdom)'),
(61210, 50747, 'no_lang_code', 'name', 'Ambulance Care (Sweden)'),
(61211, 50747, 'sv', 'name', 'AmbulanssjukvƄrden i Storstockholm'),
(61212, 50748, 'en', 'name', 'Cranberry Institute'),
(61213, 50749, 'no_lang_code', 'name', 'Croma Pharma (Austria)'),
(61214, 50750, 'it', 'name', 'Fondazione Ricerca Traslazionale'),
(61215, 50751, 'es', 'name', 'Grupo Español de Investigación en Neurooncología'),
(61216, 50752, 'en', 'name', 'successful practices network'),
(61217, 50753, 'en', 'name', 'Palmetto Clinical Trial Services'),
(61218, 50754, 'en', 'name', 'Physiotherapy New Zealand'),
(61219, 50755, 'en', 'name', 'ImagineNations'),
(61220, 50756, 'no_lang_code', 'name', 'Arcady Group (United States)'),
(61221, 50757, 'es', 'name', 'Instituto de Radiomedicina'),
(61222, 50758, 'en', 'name', '1199SEIU Funds'),
(61223, 50759, 'en', 'name', 'Mesa Fire and Medical Department'),
(61224, 50760, 'en', 'name', 'Rodel Foundation of Delaware'),
(61225, 50761, 'fr', 'name', 'MaternitƩ Port Royal'),
(61226, 50762, 'en', 'name', 'Corina Higginson Trust'),
(61227, 50763, 'en', 'name', 'Hubei Provincial Hospital of Traditional Chinese Medicine'),
(61228, 50763, 'zh', 'name', 'ę¹–åŒ—ēœäø­é†«é™¢'),
(61229, 50764, 'en', 'name', 'Shanghai Changning Maternity and Infant Health Hospital'),
(61230, 50764, 'zh', 'name', 'äøŠęµ·é•æå®åŒŗå¦‡å¹¼äæå„é™¢'),
(61231, 50765, 'es', 'name', 'Asociación para el Progreso de la Mujer en el Mundo Rural'),
(61232, 50766, 'en', 'name', 'Arthur Vining Davis Foundations'),
(61233, 50767, 'en', 'name', 'Emerald Cities Collaborative'),
(61234, 50768, 'en', 'name', 'Amon G. Carter Foundation'),
(61235, 50769, 'de', 'name', 'Dialysezentrum Potsdam'),
(61236, 50770, 'no_lang_code', 'name', 'Ability Pharmaceuticals (Spain)'),
(61237, 50771, 'no_lang_code', 'name', 'FinMark Trust'),
(61238, 50772, 'no_lang_code', 'name', 'Masco (United States)'),
(61239, 50773, 'en', 'name', 'British Society for Eighteenth-Century Studies'),
(61240, 50774, 'en', 'name', 'Australian National Kennel Council'),
(61241, 50775, 'en', 'name', 'Jordan Valley Dermatology'),
(61242, 50776, 'en', 'name', 'Huaian First People’s Hospital'),
(61243, 50776, 'zh', 'name', 'ę·®å®‰åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(61244, 50777, 'no_lang_code', 'name', 'AMT (United States)'),
(61245, 50778, 'en', 'name', 'Samaritan Healthcare'),
(61246, 50779, 'nl', 'name', 'Oranje Fonds'),
(61247, 50780, 'en', 'name', 'Midwest Fertility Specialists'),
(61248, 50781, 'ja', 'name', 'ćƒ¤ćƒ³ćƒžćƒ¼ę Ŗå¼ä¼šē¤¾'),
(61249, 50781, 'no_lang_code', 'name', 'Yanmar (Japan)'),
(61250, 50782, 'en', 'name', 'John P. Murphy Foundation'),
(61251, 50783, 'en', 'name', 'Metroplex Clinical Research Center'),
(61252, 50784, 'en', 'name', 'Sparrow Health System'),
(61253, 50785, 'en', 'name', 'Hematology Oncology Associates of Central New York'),
(61254, 50786, 'en', 'name', 'Policy Cures'),
(61255, 50787, 'en', 'name', 'Manna Research'),
(61256, 50788, 'en', 'name', 'Camp Fire Inland Northwest'),
(61257, 50789, 'no_lang_code', 'name', 'Takeda (Netherlands)'),
(61258, 50790, 'no_lang_code', 'name', 'Frauenshuh Cancer Center'),
(61259, 50791, 'en', 'name', 'Christopher D. Smithers Foundation'),
(61260, 50792, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ за Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Š°'),
(61261, 50792, 'en', 'name', 'Institute for Literature'),
(61262, 50793, 'en', 'name', 'Houston Area Urban League'),
(61263, 50794, 'no_lang_code', 'name', 'Jefferson Education Accelerator (United States)'),
(61264, 50795, 'en', 'name', 'Milbank Foundation'),
(61265, 50796, 'en', 'name', 'Institute of Chemical Technology'),
(61266, 50797, 'en', 'name', 'Third Affiliated Hospital of Inner Mongolia Medical College'),
(61267, 50798, 'en', 'name', 'Centre for Budget and Governance Accountability'),
(61268, 50799, 'en', 'name', 'Diagnostic Services Manitoba'),
(61269, 50800, 'no_lang_code', 'name', 'AntibioTx (Denmark)'),
(61270, 50801, 'no_lang_code', 'name', 'Alma Sana'),
(61271, 50802, 'en', 'name', 'Suburban Psychiatric Associates'),
(61272, 50803, 'no_lang_code', 'name', 'GlaxoSmithKline (France)'),
(61273, 50804, 'en', 'name', 'British Association for Irish Studies'),
(61274, 50805, 'en', 'name', 'Seattle Central College Foundation'),
(61275, 50806, 'en', 'name', 'Ambulance Victoria'),
(61276, 50807, 'en', 'name', 'Clinical Research Center for Hair and Skin Science'),
(61277, 50808, 'en', 'name', 'Deaconess Clinic'),
(61278, 50809, 'no_lang_code', 'name', 'FightSMA'),
(61279, 50810, 'en', 'name', 'Denver Public Health'),
(61280, 50811, 'es', 'name', 'Hospital Universitario de Santander'),
(61281, 50812, 'en', 'name', 'Seton Education Partners'),
(61282, 50813, 'en', 'name', 'E. Matilda Ziegler Foundation for the Blind'),
(61283, 50814, 'en', 'name', 'Cushman Foundation for Foraminiferal Research'),
(61284, 50815, 'ro', 'name', 'Spitalul Clinic CF Cluj-Napoca'),
(61285, 50816, 'en', 'name', 'The Philanthropic Initiative'),
(61286, 50817, 'en', 'name', 'American Otological Society'),
(61287, 50818, 'es', 'name', 'Hospital Universitario del Tajo, Hospital del Tajo'),
(61288, 50819, 'no_lang_code', 'name', 'Oras (Germany)'),
(61289, 50820, 'en', 'name', 'Northern California Research'),
(61290, 50821, 'en', 'name', 'National Foundation for Fertility Research'),
(61291, 50822, 'no_lang_code', 'name', 'Momentive (United States)'),
(61292, 50823, 'en', 'name', 'Central People''s Hospital of Zhanjiang'),
(61293, 50823, 'zh', 'name', 'ę¹›ę±Ÿäø­åæƒäŗŗę°‘åŒ»é™¢'),
(61294, 50824, 'en', 'name', 'Harry W. Bass, Jr. Foundation'),
(61295, 50825, 'no_lang_code', 'name', 'BioMarin (United Kingdom)'),
(61296, 50826, 'en', 'name', 'Center for Educational Leadership and Technology'),
(61297, 50827, 'en', 'name', 'Dart Foundation'),
(61298, 50828, 'no_lang_code', 'name', 'Empros Pharma (Sweden)'),
(61299, 50829, 'en', 'name', 'Brady Education Foundation'),
(61300, 50830, 'en', 'name', 'Korean Society of Echocardiography'),
(61301, 50830, 'ko', 'name', 'ķ•œźµ­ģ‹¬ģ“ˆģŒķŒŒķ•™ķšŒ'),
(61302, 50831, 'en', 'name', 'Amelia Peabody Charitable Fund'),
(61303, 50832, 'no_lang_code', 'name', 'Santen (United States)'),
(61304, 50833, 'en', 'name', 'Rainforest Alliance'),
(61305, 50834, 'en', 'name', 'American Research Institute for Policy Development'),
(61306, 50835, 'bg', 'name', 'Š˜ŃŃ‚Š¾Ń€ŠøŃ‡ŠµŃŠŗŠø музей Š˜ŃŠŗŃ€Š°'),
(61307, 50835, 'en', 'name', 'Museum of History Iskra'),
(61308, 50836, 'en', 'name', 'Quantitative BioSciences'),
(61309, 50837, 'en', 'name', 'Beijing Geriatric Hospital'),
(61310, 50837, 'zh', 'name', 'åŒ—äŗ¬č€å¹“åŒ»é™¢'),
(61311, 50838, 'no_lang_code', 'name', 'Tenneco (United States)'),
(61312, 50839, 'ja', 'name', 'äø‰č±č£½ē“™ę Ŗå¼ä¼šē¤¾'),
(61313, 50839, 'no_lang_code', 'name', 'Mitsubishi Paper Mills (Japan)'),
(61314, 50840, 'en', 'name', 'Dermatology Institute of Victoria'),
(61315, 50841, 'en', 'name', 'Global Social Observatory'),
(61316, 50842, 'en', 'name', 'Edward F. Albee Foundation'),
(61317, 50843, 'en', 'name', 'Colorado Health Foundation'),
(61318, 50844, 'en', 'name', 'Albany House Medical Centre'),
(61319, 50845, 'no_lang_code', 'name', 'Rosenberger (Germany)'),
(61320, 50846, 'en', 'name', 'Cellmark Forensic Services'),
(61321, 50847, 'en', 'name', 'Anandamahidol foundation'),
(61322, 50848, 'no_lang_code', 'name', 'Bone Therapeutics'),
(61323, 50849, 'en', 'name', 'Jiangning District of Nanjing Chinese Medicine Hospital'),
(61324, 50849, 'zh', 'name', 'ę±Ÿå®åŒŗäø­åŒ»é™¢'),
(61325, 50850, 'en', 'name', 'Aims2Cure'),
(61326, 50851, 'de', 'name', 'Klinik Schongau'),
(61327, 50852, 'en', 'name', 'Parent Project Onlus'),
(61328, 50853, 'en', 'name', 'ASHP Research and Education Foundation'),
(61329, 50854, 'en', 'name', 'Virginia Spine Research Institute'),
(61330, 50855, 'en', 'name', 'Encore'),
(61331, 50856, 'en', 'name', 'Community Foundation of Greater Memphis'),
(61332, 50857, 'it', 'name', 'Fondazione Pierfranco e Luisa Mariani'),
(61333, 50858, 'en', 'name', 'Kitty M. Perkins Foundation'),
(61334, 50859, 'no_lang_code', 'name', 'ImunomedicA (Czechia)'),
(61335, 50860, 'en', 'name', 'Corrective Eye Center'),
(61336, 50861, 'no_lang_code', 'name', 'Cyclacel Pharmaceuticals (United States)'),
(61337, 50862, 'da', 'name', 'Det GrĆønlandske Selskab'),
(61338, 50863, 'fr', 'name', 'Association France Ekbom'),
(61339, 50864, 'en', 'name', 'Emergency University'),
(61340, 50865, 'en', 'name', 'Community for Youth'),
(61341, 50866, 'en', 'name', 'Prism Clinical Research'),
(61342, 50867, 'en', 'name', 'Hartley Film Foundation'),
(61343, 50868, 'en', 'name', 'Glaucoma Associates of New York'),
(61344, 50869, 'no_lang_code', 'name', 'Claas (Germany)'),
(61345, 50870, 'en', 'name', 'Adessium Foundation'),
(61346, 50871, 'no_lang_code', 'name', 'Pharma Patent (Hungary)'),
(61347, 50872, 'en', 'name', 'Tennessee Orthopaedic Alliance'),
(61348, 50873, 'fr', 'name', 'Centre Hospitalier de Bretagne Sud'),
(61349, 50874, 'en', 'name', 'Department of Housing and Community Development'),
(61350, 50875, 'en', 'name', 'Ruth M. Rothstein CORE Center'),
(61351, 50876, 'no_lang_code', 'name', 'Marquardt (Germany)'),
(61352, 50877, 'no_lang_code', 'name', 'PARI (Germany)'),
(61353, 50878, 'no_lang_code', 'name', 'Greenwald & Associates (United States)'),
(61354, 50879, 'en', 'name', 'Donald W. Reynolds Foundation'),
(61355, 50880, 'en', 'name', 'Polish Dance Theatre'),
(61356, 50880, 'pl', 'name', 'Polski Teatr Tańca'),
(61357, 50881, 'en', 'name', 'Aerosan'),
(61358, 50882, 'en', 'name', 'American Pharmacists Association Foundation'),
(61359, 50883, 'no_lang_code', 'name', 'Serumwerk Bernburg (Germany)'),
(61360, 50884, 'en', 'name', 'Museum of Flight'),
(61361, 50885, 'en', 'name', 'Piedmont Cancer Institute'),
(61362, 50886, 'en', 'name', 'Achelis and Bodman Foundation'),
(61363, 50887, 'en', 'name', 'Ministry of Economic Development'),
(61364, 50887, 'it', 'name', 'Ministero dello Sviluppo Economico'),
(61365, 50888, 'es', 'name', 'Consorci Sanitari de Terrassa'),
(61366, 50889, 'en', 'name', 'Moritani Scholarship Foundation'),
(61367, 50889, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗ å®ˆč°·č‚²č‹±ä¼š'),
(61368, 50890, 'de', 'name', 'Evangelisches Krankenhaus Kalk'),
(61369, 50891, 'en', 'name', 'International Union of Basic and Clinical Pharmacology'),
(61370, 50892, 'en', 'name', 'Midwest Therapeutic Endoscopy'),
(61371, 50893, 'en', 'name', 'Ear Consultants of Georgia'),
(61372, 50894, 'no_lang_code', 'name', 'Cloud Tiger Media (United States)'),
(61373, 50895, 'no_lang_code', 'name', 'Core Competence'),
(61374, 50896, 'en', 'name', 'Michigan CardioVascular Institute'),
(61375, 50897, 'no_lang_code', 'name', 'Givaudan (Switzerland)'),
(61376, 50898, 'en', 'name', 'Marion E. Kenworthy-Sarah H. Swift Foundation'),
(61377, 50899, 'bg', 'name', 'Регионален исторически музей, Габрово'),
(61378, 50899, 'en', 'name', 'Regional History Museum Gabrovo'),
(61379, 50900, 'no_lang_code', 'name', 'Viking Therapeutics (United States)'),
(61380, 50901, 'no_lang_code', 'name', 'African Water Association'),
(61381, 50902, 'no_lang_code', 'name', 'E Ink (United States)'),
(61382, 50903, 'en', 'name', 'Catalyst Foundation'),
(61383, 50904, 'en', 'name', 'Windsor Clinical Research'),
(61384, 50905, 'en', 'name', 'Duluth Superior Area Community Foundation'),
(61385, 50906, 'no_lang_code', 'name', 'Bioinova (Czechia)'),
(61386, 50907, 'da', 'name', 'Energi-, Forsynings- og Klimaministeriet'),
(61387, 50907, 'en', 'name', 'Danish Ministry of Climate, Energy and Utilities'),
(61388, 50908, 'en', 'name', 'International Cancer Imaging Society'),
(61389, 50909, 'en', 'name', 'Fidelity Foundation'),
(61390, 50910, 'ca', 'name', 'Pius Hospital de Valls'),
(61391, 50911, 'no_lang_code', 'name', 'Repha (Germany)'),
(61392, 50912, 'en', 'name', 'Nonprofit Quarterly'),
(61393, 50913, 'en', 'name', 'Lucy Daniels Foundation'),
(61394, 50914, 'no_lang_code', 'name', 'Temptime (United States)'),
(61395, 50915, 'no_lang_code', 'name', 'Apogepha Arzneimittel (Germany)'),
(61396, 50916, 'no_lang_code', 'name', 'American Standard (United States)'),
(61397, 50917, 'da', 'name', 'Kirsten og Freddy Johansens Fond'),
(61398, 50918, 'en', 'name', 'Buhl Foundation'),
(61399, 50919, 'de', 'name', 'Carl Friedrich von Siemens Stiftung'),
(61400, 50920, 'en', 'name', 'School for Ethical Education'),
(61401, 50921, 'en', 'name', 'Haemophilia Foundation Australia'),
(61402, 50922, 'en', 'name', 'Innovative Research of West Florida'),
(61403, 50923, 'en', 'name', 'Measured Progress'),
(61404, 50924, 'en', 'name', 'J. F Maddox Foundation'),
(61405, 50925, 'en', 'name', 'St. David’s HealthCare'),
(61406, 50926, 'en', 'name', 'Claghorn Lesem Research Clinic'),
(61407, 50927, 'en', 'name', 'Memory Enhancement Center of America'),
(61408, 50928, 'en', 'name', 'University Hospital and Clinics'),
(61409, 50929, 'en', 'name', 'Zygon Center for Religion and Science'),
(61410, 50930, 'no_lang_code', 'name', 'Txcell (France)'),
(61411, 50931, 'no_lang_code', 'name', 'Widex (Denmark)'),
(61412, 50932, 'no_lang_code', 'name', 'Arsenal Medical (United States)'),
(61413, 50933, 'en', 'name', 'Employment Development Department'),
(61414, 50934, 'no_lang_code', 'name', 'Northwestern Mutual Life Insurance (United States)'),
(61415, 50935, 'en', 'name', 'Durrie Vision'),
(61416, 50936, 'en', 'name', 'Hope Through Healing Hands'),
(61417, 50937, 'en', 'name', 'Plan International'),
(61418, 50938, 'en', 'name', 'National Association of Community Health Centers'),
(61419, 50939, 'en', 'name', 'Act One'),
(61420, 50940, 'en', 'name', '174th hospital of the People''s Liberation Army'),
(61421, 50940, 'zh', 'name', '解放军第174医院'),
(61422, 50941, 'no_lang_code', 'name', 'Idee e Prodotti (Italy)'),
(61423, 50942, 'en', 'name', 'AchieveMpls'),
(61424, 50943, 'no_lang_code', 'name', 'Getinge (Germany)'),
(61425, 50944, 'en', 'name', 'Abell-Hanger Foundation'),
(61426, 50945, 'en', 'name', 'Yue Bei People''s Hospital'),
(61427, 50945, 'zh', 'name', 'ē²¤åŒ—äŗŗę°‘åŒ»é™¢'),
(61428, 50946, 'es', 'name', 'Hospital General Dr Aurelio Valdivieso'),
(61429, 50947, 'no_lang_code', 'name', 'Citospin (Spain)'),
(61430, 50948, 'en', 'name', 'Jal Seva Charitable Foundation'),
(61431, 50949, 'en', 'name', 'BASilar artery International Cooperation Study'),
(61432, 50950, 'en', 'name', 'Christopher Columbus Fellowship Foundation'),
(61433, 50951, 'no_lang_code', 'name', 'Dextech Medical (Sweden)'),
(61434, 50952, 'es', 'name', 'Probigua'),
(61435, 50953, 'en', 'name', 'Cameron Brooks Foundation'),
(61436, 50954, 'en', 'name', 'Allegheny Intermediate Unit'),
(61437, 50955, 'en', 'name', 'Plexus Institute'),
(61438, 50956, 'no_lang_code', 'name', 'Skis Rossignol (France)'),
(61439, 50957, 'no_lang_code', 'name', 'Biogen (Germany)'),
(61440, 50958, 'no_lang_code', 'name', 'Shenyang Anorectal Hospital'),
(61441, 50958, 'zh', 'name', 'ę²‰é˜³č‚›é—ØåŒ»é™¢'),
(61442, 50959, 'en', 'name', 'California Dairy Research Foundation'),
(61443, 50960, 'no_lang_code', 'name', 'Erydel (Italy)'),
(61444, 50961, 'en', 'name', 'Foundation for Community Association Research'),
(61445, 50962, 'it', 'name', 'Fondazione Michelangelo'),
(61446, 50963, 'en', 'name', 'Treehouse'),
(61447, 50964, 'en', 'name', 'European Society for Blood and Marrow Transplantation'),
(61448, 50965, 'en', 'name', 'Collaborative Spine Research Foundation'),
(61449, 50966, 'en', 'name', 'Massachusetts Institute for a New Commonwealth'),
(61450, 50967, 'en', 'name', 'Great Valley Center'),
(61451, 50968, 'fr', 'name', 'SociƩtƩ Industrielle Suisse'),
(61452, 50968, 'it', 'name', 'Societa Industriale Svizzera'),
(61453, 50968, 'no_lang_code', 'name', 'Sig Holding (Switzerland)'),
(61454, 50969, 'en', 'name', 'Enhancing Financial Innovation & Access'),
(61455, 50970, 'en', 'name', 'Arkansas State University System'),
(61456, 50971, 'no_lang_code', 'name', 'Covestro (United States)'),
(61457, 50972, 'en', 'name', 'West Virginia Library Commission'),
(61458, 50973, 'en', 'name', 'Connect Denmark'),
(61459, 50974, 'en', 'name', 'South Florida Medical Research'),
(61460, 50975, 'en', 'name', 'Cancer Hospital Lopburi'),
(61461, 50975, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąø„ąøžąøšąøøąø£ąøµ'),
(61462, 50976, 'no_lang_code', 'name', 'Therabel (Belgium)'),
(61463, 50977, 'no_lang_code', 'name', 'Lynn Chase Designs (United States)'),
(61464, 50978, 'en', 'name', 'MNJ Institute Of Oncology and Regional Cancer Centre'),
(61465, 50979, 'no_lang_code', 'name', 'Leifheit (Germany)'),
(61466, 50980, 'en', 'name', 'Gabrail Cancer Center'),
(61467, 50981, 'en', 'name', 'Youth Today'),
(61468, 50982, 'en', 'name', 'College Spark Washington'),
(61469, 50983, 'en', 'name', 'Saint-Petersburg Medico-Social Institute'),
(61470, 50983, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ МеГико');
INSERT INTO `ror_settings` VALUES
(61471, 50984, 'no_lang_code', 'name', 'Achillion Pharmaceuticals (United States)'),
(61472, 50985, 'en', 'name', 'Infectious Disease Consultants'),
(61473, 50986, 'en', 'name', 'National Coalition for Cancer Survivorship'),
(61474, 50987, 'no_lang_code', 'name', 'CMC Contrast (Sweden)'),
(61475, 50988, 'es', 'name', 'Grupo EspaƱol de Trasplante HematopoyƩtico y Terapia Celular'),
(61476, 50989, 'en', 'name', 'H.W. Durham Foundation'),
(61477, 50990, 'en', 'name', 'Elisabeth Severance Prentiss Foundation'),
(61478, 50991, 'en', 'name', 'PharmaTrain Federation'),
(61479, 50992, 'en', 'name', 'National Sculpture Society'),
(61480, 50993, 'no_lang_code', 'name', 'Gliknik (United States)'),
(61481, 50994, 'en', 'name', 'Max Bell Foundation'),
(61482, 50995, 'en', 'name', 'Living Stones Foundation Charitable Trust'),
(61483, 50996, 'en', 'name', 'Lynde Centre for Dermatology'),
(61484, 50997, 'en', 'name', 'American Head & Neck Society'),
(61485, 50998, 'en', 'name', 'El Paso Community Foundation'),
(61486, 50999, 'en', 'name', 'Clinical Insights'),
(61487, 51000, 'en', 'name', 'Blakemore Foundation'),
(61488, 51001, 'de', 'name', 'Institut für Sozialanthropologie'),
(61489, 51001, 'en', 'name', 'Institute for Social Anthropology'),
(61490, 51002, 'en', 'name', 'Foundation and Footings Society'),
(61491, 51003, 'no_lang_code', 'name', 'PayPal (United States)'),
(61492, 51004, 'en', 'name', 'Ningbo Municipal Education Bureau'),
(61493, 51004, 'zh', 'name', '宁波市教育局'),
(61494, 51005, 'no_lang_code', 'name', 'Kiekert (Germany)'),
(61495, 51006, 'pl', 'name', 'NZOZ Dom Sue Ryder'),
(61496, 51007, 'no_lang_code', 'name', 'Seventh Sense Biosystems (United States)'),
(61497, 51008, 'en', 'name', 'Council of Accountable Physician Practices'),
(61498, 51009, 'en', 'name', 'Asian Association for Dynamic Osteosynthesis'),
(61499, 51010, 'en', 'name', 'Equipment Leasing & Finance Foundation'),
(61500, 51011, 'en', 'name', 'Suburban Research Associates'),
(61501, 51012, 'en', 'name', 'AXIS Clinical Trials'),
(61502, 51013, 'no_lang_code', 'name', 'Zagaya'),
(61503, 51014, 'en', 'name', 'Community Foundation of Greater New Britain'),
(61504, 51015, 'en', 'name', 'ReadWorks'),
(61505, 51016, 'en', 'name', 'Mercy Hospital'),
(61506, 51017, 'en', 'name', 'Collaborative Africa Budget Reform Initiative'),
(61507, 51018, 'en', 'name', 'Community Foundation for Greater Atlanta'),
(61508, 51019, 'en', 'name', 'Ridgeview Medical Center'),
(61509, 51020, 'en', 'name', 'Herbert W. Hoover Foundation'),
(61510, 51021, 'en', 'name', 'Cancer Center of Kansas'),
(61511, 51022, 'no_lang_code', 'name', 'Nabriva Therapeutics (Austria)'),
(61512, 51023, 'en', 'name', 'Horizon Blue Cross Blue Shield of New Jersey'),
(61513, 51024, 'no_lang_code', 'name', 'Otsuka (France)'),
(61514, 51025, 'en', 'name', 'Gastroenterology Associates Of Western Michigan'),
(61515, 51026, 'en', 'name', 'Ecclesfield GP'),
(61516, 51027, 'no_lang_code', 'name', 'Kyowa Kirin International (United Kingdom)'),
(61517, 51028, 'no_lang_code', 'name', 'Anges MG (United Kingdom)'),
(61518, 51029, 'no_lang_code', 'name', 'Triumph Learning (United States)'),
(61519, 51030, 'en', 'name', 'Myotonic Dystrophy Foundation'),
(61520, 51031, 'en', 'name', 'Cynthia and George Mitchell Foundation'),
(61521, 51032, 'no_lang_code', 'name', 'Singer (United States)'),
(61522, 51033, 'no_lang_code', 'name', 'Masco (Germany)'),
(61523, 51034, 'en', 'name', 'Physicians for Human Rights'),
(61524, 51035, 'it', 'name', 'Fondazione Sandro Pitigliani'),
(61525, 51036, 'no_lang_code', 'name', 'Fermentia (Hungary)'),
(61526, 51037, 'en', 'name', 'AAA Foundation for Traffic Safety'),
(61527, 51038, 'de', 'name', 'Gebauer Stiftung'),
(61528, 51039, 'en', 'name', 'Clinical Trials of Texas'),
(61529, 51040, 'en', 'name', 'Elizabeth Taylor AIDS Foundation'),
(61530, 51041, 'en', 'name', 'John T. Reid Charitable Trusts'),
(61531, 51042, 'no_lang_code', 'name', 'Scandinavian Sarcoma Group (Sweden)'),
(61532, 51043, 'en', 'name', 'National Headache Foundation'),
(61533, 51044, 'en', 'name', 'Capital Nephrology Associates'),
(61534, 51045, 'en', 'name', 'Edna McConnell Clark Foundation'),
(61535, 51046, 'en', 'name', 'Orthopaedic Research Society'),
(61536, 51047, 'en', 'name', 'International Health Economics Association'),
(61537, 51048, 'no_lang_code', 'name', 'Benchmark Research (United States)'),
(61538, 51049, 'en', 'name', 'Kansas Masonic Foundation'),
(61539, 51050, 'en', 'name', 'Innovating Worthy Projects Foundation'),
(61540, 51051, 'en', 'name', 'GreatNonprofits'),
(61541, 51052, 'en', 'name', 'Michelson Prize and Grants'),
(61542, 51053, 'en', 'name', 'Friends of Children of Walla Walla'),
(61543, 51054, 'no_lang_code', 'name', 'Kinik (Taiwan)'),
(61544, 51055, 'cs', 'name', 'ObčanskĆ© sdruženĆ­ Ametyst'),
(61545, 51056, 'no_lang_code', 'name', 'Mundipharma (Sweden)'),
(61546, 51057, 'sv', 'name', 'Marie-Claire Cronstedts Stiftelse'),
(61547, 51058, 'no_lang_code', 'name', 'Ford Motor Company (France)'),
(61548, 51059, 'no_lang_code', 'name', 'Axcelis Technologies (United States)'),
(61549, 51060, 'en', 'name', 'Burke Foundation'),
(61550, 51061, 'en', 'name', 'Kalam Research and Media'),
(61551, 51062, 'de', 'name', 'Green Beat - Institut für Nährstoff-Forschung und Sporternährung'),
(61552, 51062, 'no_lang_code', 'name', 'Green Beat (Austria)'),
(61553, 51063, 'it', 'name', 'Associazione Sammarinese per la Lotta contro le Leucemie e Emopatie Maligne'),
(61554, 51064, 'en', 'name', 'Central New York Community Foundation'),
(61555, 51065, 'da', 'name', 'Dansk Historisk FƦllesforening'),
(61556, 51066, 'en', 'name', 'J. Marion Sims Foundation'),
(61557, 51067, 'en', 'name', 'Timberland Regional Library'),
(61558, 51068, 'en', 'name', 'Wake Research'),
(61559, 51069, 'en', 'name', 'Netherland-America Foundation'),
(61560, 51070, 'en', 'name', 'International Rescue Committee'),
(61561, 51071, 'da', 'name', 'KĆøbenhavn Zoo'),
(61562, 51071, 'en', 'name', 'Copenhagen Zoo'),
(61563, 51072, 'en', 'name', 'Barry Community Foundation'),
(61564, 51073, 'de', 'name', 'Hanns R. Neumann Stiftung'),
(61565, 51074, 'en', 'name', 'Columbus Foundation'),
(61566, 51075, 'en', 'name', 'Palmetto Hematology Oncology'),
(61567, 51076, 'no_lang_code', 'name', 'Neurophyxia (Netherlands)'),
(61568, 51077, 'no_lang_code', 'name', 'PsiOxus Therapeutics (United Kingdom)'),
(61569, 51078, 'es', 'name', 'Fundación Reina Isabel'),
(61570, 51079, 'en', 'name', 'Foundation for Teaching Economics'),
(61571, 51080, 'en', 'name', 'SĆ£o Camilo Hospital'),
(61572, 51081, 'en', 'name', 'Miyakawa Memorial Research Foundation'),
(61573, 51081, 'ja', 'name', 'å®®å·åŗšå­čØ˜åæµē ”ē©¶č²”å›£'),
(61574, 51082, 'no_lang_code', 'name', 'Borealis (Finland)'),
(61575, 51083, 'en', 'name', 'Carolina Eyecare Physicians'),
(61576, 51084, 'en', 'name', 'Cardiac And Vascular Research Center Of Northern Michigan'),
(61577, 51085, 'no_lang_code', 'name', 'EagleDream Health'),
(61578, 51086, 'en', 'name', 'Iowa Orthopaedic Center'),
(61579, 51087, 'en', 'name', 'American Association of Endocrine Surgeons'),
(61580, 51088, 'no_lang_code', 'name', 'Polaris Group (United States)'),
(61581, 51089, 'en', 'name', 'Obici Healthcare Foundation'),
(61582, 51090, 'en', 'name', 'Mike Utley Foundation'),
(61583, 51091, 'en', 'name', 'North Central Cancer Treatment Group'),
(61584, 51092, 'en', 'name', 'Centre International De Reference Chantal Biya'),
(61585, 51093, 'no_lang_code', 'name', 'United Therapeutics (United Kingdom)'),
(61586, 51094, 'nl', 'name', 'St.Jans Gasthuis Weert'),
(61587, 51095, 'en', 'name', 'Neuroscience Nursing Foundation'),
(61588, 51096, 'en', 'name', 'GI Care for Kids'),
(61589, 51097, 'en', 'name', 'NCMIC Foundation'),
(61590, 51098, 'en', 'name', 'East-West Management Institute'),
(61591, 51099, 'en', 'name', 'Zhongshan City Second People''s Hospital'),
(61592, 51099, 'zh', 'name', 'äø­å±±åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(61593, 51100, 'en', 'name', 'Association of Educational Publishers'),
(61594, 51101, 'en', 'name', 'New Mexico Business Roundtable'),
(61595, 51102, 'en', 'name', 'Cooper Foundation'),
(61596, 51103, 'no_lang_code', 'name', 'ConvergeOne (United States)'),
(61597, 51104, 'de', 'name', 'Krankenhaus St. Elisabeth und St. Barbara'),
(61598, 51105, 'en', 'name', 'Center for Prevention and Treatment of Infections'),
(61599, 51106, 'en', 'name', 'Common Ground Research Networks'),
(61600, 51107, 'en', 'name', 'Mucolipidosis IV Foundation'),
(61601, 51108, 'no_lang_code', 'name', 'Total (United States)'),
(61602, 51109, 'en', 'name', 'Associated Oregon Loggers'),
(61603, 51110, 'en', 'name', 'Reproductive & Genetic Hospital CITIC-Xiangya'),
(61604, 51110, 'zh', 'name', 'äø­äæ”ę¹˜é›…ē”Ÿę®–äøŽé—ä¼ äø“ē§‘åŒ»é™¢ęœ‰é™å…¬åø'),
(61605, 51111, 'de', 'name', 'Alzheimer Forschung Initiative'),
(61606, 51112, 'en', 'name', 'Whitsett Vision Group'),
(61607, 51113, 'en', 'name', 'Association for the Study of Medical Education'),
(61608, 51114, 'en', 'name', 'Association for Regional Development and Mental Health'),
(61609, 51115, 'no_lang_code', 'name', 'ImmunoCellular Therapeutics (United States)'),
(61610, 51116, 'en', 'name', 'Gateshead Health NHS Foundation Trust'),
(61611, 51117, 'no_lang_code', 'name', 'Revant (Netherlands)'),
(61612, 51118, 'en', 'name', 'Jacob and Valeria Langeloth Foundation'),
(61613, 51119, 'de', 'name', 'Institut für Psychogerontologie'),
(61614, 51120, 'no_lang_code', 'name', 'Trevi Therapeutics (United States)'),
(61615, 51121, 'en', 'name', 'Nash County Health Department'),
(61616, 51122, 'en', 'name', 'ENT and Allergy'),
(61617, 51123, 'en', 'name', 'Citizens Budget Commission'),
(61618, 51124, 'en', 'name', 'Dutch Network for Cardiovascular Research'),
(61619, 51124, 'nl', 'name', 'Werkgroep Cardiologische centra Nederland'),
(61620, 51125, 'en', 'name', 'I. A. O''Shaughnessy Foundation'),
(61621, 51126, 'en', 'name', 'Mebane Charitable Foundation'),
(61622, 51127, 'en', 'name', 'Brain Canada Foundation'),
(61623, 51128, 'en', 'name', 'Leeds, Grenville & Lanark District Health Unit'),
(61624, 51129, 'fr', 'name', 'Groupe d''Ɖtude ThĆ©rapeutique des Affections Inflammatoires du Tube Digestif'),
(61625, 51130, 'no_lang_code', 'name', 'EdSurge (United States)'),
(61626, 51131, 'en', 'name', 'Community Foundation of Snohomish County'),
(61627, 51132, 'en', 'name', 'iMentor'),
(61628, 51133, 'en', 'name', 'Horsley Medical Practice'),
(61629, 51134, 'en', 'name', 'Palmetto Retina Center'),
(61630, 51135, 'no_lang_code', 'name', 'Milacron (Canada)'),
(61631, 51136, 'en', 'name', 'Highlander Institute'),
(61632, 51137, 'no_lang_code', 'name', 'Grunberger Diabetes Institute'),
(61633, 51138, 'en', 'name', 'UnityPoint Health Meriter'),
(61634, 51139, 'en', 'name', 'Cancer Care Northwest'),
(61635, 51140, 'no_lang_code', 'name', 'Allergan (United Kingdom)'),
(61636, 51141, 'en', 'name', 'Estonian Union for Child Welfare'),
(61637, 51142, 'el', 'name', 'Ī£ĻĪ»Ī»ĪæĪ³ĪæĻ‚ Ελλήνων Ωκεανογράφων'),
(61638, 51142, 'en', 'name', 'Hellenic Oceanographers Association'),
(61639, 51143, 'en', 'name', 'Institute for the Study of Knowledge Management in Education'),
(61640, 51144, 'en', 'name', 'Canadian Celiac Association'),
(61641, 51144, 'fr', 'name', 'Association Canadienne de la Maladie Coeliaque'),
(61642, 51145, 'en', 'name', 'Yunnan Maternal and Child Health'),
(61643, 51145, 'zh', 'name', 'äŗ‘å—ēœå¦‡å¹¼äæå„é™¢'),
(61644, 51146, 'no_lang_code', 'name', 'Bionomics (Australia)'),
(61645, 51147, 'en', 'name', 'Pennsylvania Health Law Project'),
(61646, 51148, 'da', 'name', 'Dansk SprognƦvn'),
(61647, 51149, 'en', 'name', 'Lungs for Life'),
(61648, 51150, 'no_lang_code', 'name', 'CureTech (Israel)'),
(61649, 51151, 'en', 'name', 'New Schools for Chicago'),
(61650, 51152, 'en', 'name', 'Community Clinical Research'),
(61651, 51153, 'en', 'name', 'Rivkin Center for Ovarian Cancer'),
(61652, 51154, 'hu', 'name', 'Borsod-Abaúj-Zemplén Megyei KórhÔz és Egyetemi Oktató KórhÔz'),
(61653, 51155, 'fr', 'name', 'Fondation Arthritis'),
(61654, 51156, 'it', 'name', 'Fondazione di Piacenza e Vigevano'),
(61655, 51157, 'no_lang_code', 'name', 'Smart Sparrow (United States)'),
(61656, 51158, 'en', 'name', 'Coastal Community Foundation'),
(61657, 51159, 'no_lang_code', 'name', 'CenturyLink (United States)'),
(61658, 51160, 'en', 'name', 'National Medical Fellowships'),
(61659, 51161, 'no_lang_code', 'name', 'AFT Pharmaceuticals (New Zealand)'),
(61660, 51162, 'en', 'name', 'Fund for Public Schools'),
(61661, 51163, 'de', 'name', 'PHV Dialysezentrum, Patienten-Heimversorgung'),
(61662, 51164, 'en', 'name', 'Joan Rothenberg Family Foundation'),
(61663, 51165, 'no_lang_code', 'name', 'Aflac (United States)'),
(61664, 51166, 'en', 'name', 'Patient Priority Clinical Sites'),
(61665, 51167, 'fr', 'name', 'Fondation Roger de Spoelberch'),
(61666, 51168, 'no_lang_code', 'name', 'Nautilus (United States)'),
(61667, 51169, 'no_lang_code', 'name', 'Ewopharma (Slovakia)'),
(61668, 51170, 'en', 'name', 'National Heritage Board of Poland'),
(61669, 51170, 'pl', 'name', 'Narodowy Instytut Dziedzictwa'),
(61670, 51171, 'en', 'name', 'Feeding America'),
(61671, 51172, 'no_lang_code', 'name', 'Neelan Tiruchelvam Trust'),
(61672, 51173, 'en', 'name', 'Philippine American Educational Foundation'),
(61673, 51174, 'en', 'name', 'Solar Electric Light Fund'),
(61674, 51175, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ™ćƒćƒƒć‚»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(61675, 51175, 'no_lang_code', 'name', 'Benesse Holdings (Japan)'),
(61676, 51176, 'no_lang_code', 'name', 'Chromasens (Germany)'),
(61677, 51177, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (Netherlands)'),
(61678, 51178, 'en', 'name', 'Rare Genomics Institute'),
(61679, 51179, 'en', 'name', 'Gladys Krieble Delmas Foundation'),
(61680, 51180, 'en', 'name', 'Cancer Trials Ireland'),
(61681, 51181, 'en', 'name', 'Foundation for Agronomic Research'),
(61682, 51182, 'no_lang_code', 'name', 'Joyson Safety Systems (United States)'),
(61683, 51183, 'no', 'name', 'Aust-Agder Utviklings- og Kompetansefond'),
(61684, 51184, 'no_lang_code', 'name', 'Inmunotek (Spain)'),
(61685, 51185, 'en', 'name', 'Monash Alfred Psychiatry Research centre'),
(61686, 51186, 'en', 'name', 'A.P. Giannini Foundation'),
(61687, 51187, 'no_lang_code', 'name', 'Campagnolo (Italy)'),
(61688, 51188, 'en', 'name', 'Brain Foundation'),
(61689, 51189, 'en', 'name', 'National Association of College and University Business Officers'),
(61690, 51190, 'no_lang_code', 'name', 'Zebra Media (Denmark)'),
(61691, 51191, 'en', 'name', 'Intensive Care Foundation'),
(61692, 51192, 'fr', 'name', 'Centre Hospitalier de Saint-Brieuc'),
(61693, 51193, 'en', 'name', 'United Nations Capital Development Fund'),
(61694, 51194, 'en', 'name', 'American Association of Teachers of Korean'),
(61695, 51195, 'no_lang_code', 'name', 'Tikomed (Sweden)'),
(61696, 51196, 'en', 'name', 'Okawa Foundation for Information and Telecommunications'),
(61697, 51196, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å¤§å·ęƒ…å ±é€šäæ”åŸŗé‡‘'),
(61698, 51197, 'en', 'name', 'Swedish CLL group'),
(61699, 51198, 'no_lang_code', 'name', 'Genkyotex (France)'),
(61700, 51199, 'en', 'name', 'P.E.F. Israel Endowment Funds'),
(61701, 51200, 'en', 'name', 'Yenişehir Hospital'),
(61702, 51200, 'tr', 'name', 'Ɩzel Yenişehir Hastanesi'),
(61703, 51201, 'ja', 'name', 'ę—„ęœ¬ę›¹é”ę Ŗå¼ä¼šē¤¾'),
(61704, 51201, 'no_lang_code', 'name', 'Nippon Soda (Japan)'),
(61705, 51202, 'en', 'name', 'America Abroad Media'),
(61706, 51203, 'no_lang_code', 'name', 'Cosmo Pharmaceuticals (Ireland)'),
(61707, 51204, 'no_lang_code', 'name', 'Guaranteach (United States)'),
(61708, 51205, 'no_lang_code', 'name', 'Oxalosis and Hyperoxaluria Foundation'),
(61709, 51206, 'en', 'name', 'Glaser Progress Foundation'),
(61710, 51207, 'en', 'name', 'Graham Foundation'),
(61711, 51208, 'en', 'name', 'Pioneer Library System'),
(61712, 51209, 'en', 'name', 'Crohn''s and Colitis Canada'),
(61713, 51210, 'en', 'name', 'Atlanta Women’s Foundation'),
(61714, 51211, 'en', 'name', 'American Association of Bovine Practitioners'),
(61715, 51212, 'en', 'name', 'National Foundation for Ectodermal Dysplasias'),
(61716, 51213, 'en', 'name', 'Illustrative Mathematics'),
(61717, 51214, 'en', 'name', 'Northwest Minnesota Foundation'),
(61718, 51215, 'en', 'name', 'Marine Corps Warfighting Laboratory'),
(61719, 51216, 'no_lang_code', 'name', 'Dorma (Germany)'),
(61720, 51217, 'en', 'name', 'Perinatal Associates of New Mexico'),
(61721, 51218, 'no_lang_code', 'name', 'Aesculapius Farmaceutici (Italy)'),
(61722, 51219, 'nl', 'name', 'Nederlandse Vereniging voor Trombose en Hemostase'),
(61723, 51220, 'es', 'name', 'Hospital Doctor JosƩ Molina Orosa'),
(61724, 51221, 'en', 'name', 'First Affiliated Hospital of Hunan University of Traditional Chinese Medicine'),
(61725, 51221, 'zh', 'name', 'ę¹–å—äø­åŒ»čÆå¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(61726, 51222, 'en', 'name', 'Community Foundation for Greater Buffalo'),
(61727, 51223, 'en', 'name', 'Flinders Medical Centre Foundation'),
(61728, 51224, 'no_lang_code', 'name', 'Ustar Biotechnologies (China)'),
(61729, 51225, 'no_lang_code', 'name', 'Vsolvit (United States)'),
(61730, 51226, 'en', 'name', 'Kitsap Community Foundation'),
(61731, 51227, 'en', 'name', 'Washington State Department of Early Learning'),
(61732, 51228, 'en', 'name', 'Daughters of Charity Foundation of Saint Louis'),
(61733, 51229, 'en', 'name', 'American Society of Genealogists'),
(61734, 51230, 'en', 'name', 'Colorado Retina Center'),
(61735, 51231, 'en', 'name', 'Italian Oncology Group of Clinical Research'),
(61736, 51231, 'it', 'name', 'Gruppo Oncologico Italiano di Ricerca Clinica'),
(61737, 51232, 'en', 'name', 'Environmental Research and Education Foundation'),
(61738, 51233, 'en', 'name', 'Hejian People''s Hospital'),
(61739, 51233, 'zh', 'name', 'ę²³é—“åø‚äŗŗę°‘åŒ»é™¢'),
(61740, 51234, 'no_lang_code', 'name', 'OptiNose (United States)'),
(61741, 51235, 'en', 'name', 'International Longevity Centre'),
(61742, 51236, 'no_lang_code', 'name', 'Extreme Networks (United States)'),
(61743, 51237, 'no_lang_code', 'name', 'Rhize'),
(61744, 51238, 'no_lang_code', 'name', 'Monday Media (Denmark)'),
(61745, 51239, 'de', 'name', 'Dr. med. Arthur und Estella Hirzel-Callegari Stiftung'),
(61746, 51240, 'no_lang_code', 'name', 'Sanochemia Pharmazeutika (Austria)'),
(61747, 51241, 'no_lang_code', 'name', 'Roche (Netherlands)'),
(61748, 51242, 'es', 'name', 'Instituto de Ciencia y Medicina Genómica'),
(61749, 51243, 'en', 'name', 'Braitmayer Foundation'),
(61750, 51244, 'vi', 'name', 'Văn phòng ban chỉ đẔo 33'),
(61751, 51245, 'en', 'name', 'Canadian Society of Pharmacology and Therapeutics'),
(61752, 51246, 'en', 'name', 'Emory Johns Creek Hospital'),
(61753, 51247, 'en', 'name', 'New England Foundation for the Arts'),
(61754, 51248, 'en', 'name', 'Robert Cizik Eye Clinic'),
(61755, 51249, 'en', 'name', 'American Society of Plant Taxonomists'),
(61756, 51250, 'no_lang_code', 'name', 'Celerion (United States)'),
(61757, 51251, 'en', 'name', 'Head Office of Geodesy and Cartography'),
(61758, 51251, 'pl', 'name', 'Glówny Urzad Geodezji i Kartografii'),
(61759, 51252, 'en', 'name', 'Internews'),
(61760, 51253, 'en', 'name', 'Trust for Vaccines & Immunization'),
(61761, 51254, 'ja', 'name', 'ē¦å²”čØ˜åæµē—…é™¢'),
(61762, 51254, 'no_lang_code', 'name', 'Fukuoka Kinen Hospital'),
(61763, 51255, 'en', 'name', 'Conservation, Food and Health Foundation'),
(61764, 51256, 'en', 'name', 'Science Friday Initiative'),
(61765, 51257, 'no_lang_code', 'name', 'Clementia Pharmaceuticals (France)'),
(61766, 51258, 'en', 'name', 'North American Strawberry Growers Association'),
(61767, 51259, 'en', 'name', 'Jewish United Fund of Metropolitan Chicago'),
(61768, 51260, 'de', 'name', 'Therapeutische Drug Monitoring Kinder-und Jugendpsychiatrie'),
(61769, 51261, 'en', 'name', 'Doctors @ Carindale Mall'),
(61770, 51262, 'nl', 'name', 'AZ Sint-Lucas'),
(61771, 51263, 'no_lang_code', 'name', 'Perstorp (Sweden)'),
(61772, 51264, 'en', 'name', 'Tianjin Infectious Diseases Hospital'),
(61773, 51264, 'zh', 'name', 'å¤©ę“„åø‚ä¼ ęŸ“ē—…åŒ»é™¢'),
(61774, 51265, 'de', 'name', 'Serviceplan Gruppe für innovative Kommunikation GmbH & Co. KG'),
(61775, 51265, 'no_lang_code', 'name', 'Serviceplan (Germany)'),
(61776, 51266, 'en', 'name', 'American Society for Gastrointestinal Endoscopy'),
(61777, 51267, 'en', 'name', 'Greater Cincinnati Foundation'),
(61778, 51268, 'no_lang_code', 'name', 'ROSA'),
(61779, 51269, 'en', 'name', 'California Psychological Association'),
(61780, 51270, 'en', 'name', 'YouthBuild'),
(61781, 51271, 'de', 'name', 'Institut für Mittelalterforschung'),
(61782, 51271, 'en', 'name', 'Institute for Medieval Research'),
(61783, 51272, 'no_lang_code', 'name', 'Alexion Pharmaceuticals (France)'),
(61784, 51273, 'en', 'name', 'Sleep Management Institute'),
(61785, 51274, 'en', 'name', 'Bohemian Foundation'),
(61786, 51275, 'en', 'name', 'Rotary Club of Seattle'),
(61787, 51276, 'no_lang_code', 'name', 'Vifor Pharma (United Kingdom)'),
(61788, 51277, 'no_lang_code', 'name', 'Acucela (United States)'),
(61789, 51278, 'en', 'name', 'George and Mary Josephine Hamman Foundation'),
(61790, 51279, 'en', 'name', 'Children Youth and Family Collaborative'),
(61791, 51280, 'en', 'name', 'Wildlife Society Alauda'),
(61792, 51281, 'fr', 'name', 'Saint Laurent Polyclinique'),
(61793, 51282, 'en', 'name', 'Ondo State Primary Health Care Development Board'),
(61794, 51283, 'no_lang_code', 'name', 'BioKinetic Europe (United Kingdom)'),
(61795, 51284, 'en', 'name', 'Passport Health'),
(61796, 51285, 'en', 'name', 'New Philanthropy Capital'),
(61797, 51286, 'en', 'name', 'Campbell Institute'),
(61798, 51287, 'en', 'name', 'Agricultural Technology Adoption Initiative'),
(61799, 51288, 'en', 'name', 'NeuroDevelopment Center'),
(61800, 51289, 'en', 'name', 'Institute for Research on Unlimited Love'),
(61801, 51290, 'en', 'name', 'American Society of Naturalist'),
(61802, 51291, 'no_lang_code', 'name', 'NeuroDerm (Israel)'),
(61803, 51292, 'it', 'name', 'Azienda UnitĆ  Sanitaria Locale Piacenza'),
(61804, 51293, 'en', 'name', 'Mansfield Orthopaedics'),
(61805, 51294, 'en', 'name', 'Ophthalmic Consultants of Long Island'),
(61806, 51295, 'en', 'name', 'Coleman Associates'),
(61807, 51296, 'en', 'name', 'Initial Teaching Alphabet Foundation'),
(61808, 51297, 'no_lang_code', 'name', 'Spragens and Associates (United States)'),
(61809, 51298, 'en', 'name', 'Urology Associates of North Texas'),
(61810, 51299, 'it', 'name', 'Network Italiano Per la Bioterapia Dei Tumori'),
(61811, 51300, 'de', 'name', 'Joachim Herz Stiftung'),
(61812, 51301, 'no_lang_code', 'name', 'Fabio Perini (Italy)'),
(61813, 51302, 'no_lang_code', 'name', 'Crown Holdings (United States)'),
(61814, 51303, 'no_lang_code', 'name', 'Mitsubishi Corporation (United States)'),
(61815, 51304, 'de', 'name', 'AGO Research GmbH'),
(61816, 51305, 'no_lang_code', 'name', 'Windmill Health Technologies (India)'),
(61817, 51306, 'no_lang_code', 'name', 'Aviragen Therapeutics (Australia)'),
(61818, 51307, 'no_lang_code', 'name', 'Grohe (Germany)'),
(61819, 51308, 'no_lang_code', 'name', 'Swiss Cardio Technologies (Switzerland)'),
(61820, 51309, 'en', 'name', 'Passano Foundation'),
(61821, 51310, 'en', 'name', 'Preeclampsia Foundation'),
(61822, 51311, 'no_lang_code', 'name', 'OpenText (Luxembourg)'),
(61823, 51312, 'no_lang_code', 'name', 'GC Corporation (Japan)'),
(61824, 51313, 'ja', 'name', 'ä¹…å…‰č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(61825, 51313, 'no_lang_code', 'name', 'Hisamitsu Pharmaceutical (Japan)'),
(61826, 51314, 'no_lang_code', 'name', 'Vtesse (United States)'),
(61827, 51315, 'en', 'name', 'Joe Andruzzi Foundation'),
(61828, 51316, 'en', 'name', 'Society of Health and Physical Educators'),
(61829, 51317, 'en', 'name', 'Sarcoma Oncology Center'),
(61830, 51318, 'en', 'name', 'Goldsmith Family Foundation'),
(61831, 51319, 'en', 'name', 'Health Research Foundation'),
(61832, 51320, 'en', 'name', 'Urological Society of Australia and New Zealand'),
(61833, 51321, 'en', 'name', 'PodřipskĆ” Hospital and Polyclinic'),
(61834, 51322, 'no_lang_code', 'name', 'Kyorin Holdings (Japan)'),
(61835, 51323, 'en', 'name', 'RESULTS and RESULTS Educational Fund'),
(61836, 51324, 'no_lang_code', 'name', 'Deutz (Germany)'),
(61837, 51325, 'en', 'name', 'Kennedys Disease Association'),
(61838, 51326, 'en', 'name', 'Zemaitija National Park'),
(61839, 51326, 'lt', 'name', 'Žemaitijos Nacionalinio Parko'),
(61840, 51327, 'en', 'name', 'Fund For New Jersey'),
(61841, 51328, 'en', 'name', 'Windrider Institute'),
(61842, 51329, 'tr', 'name', 'Marmara Üniversitesi Eğitim ve Araştırma Hastanesi'),
(61843, 51330, 'no_lang_code', 'name', 'Enviu (Netherlands)'),
(61844, 51331, 'en', 'name', 'American International Health Alliance'),
(61845, 51332, 'en', 'name', 'LibForAll Foundation'),
(61846, 51333, 'no_lang_code', 'name', 'Endress Hauser Messtechnik (Germany)'),
(61847, 51334, 'en', 'name', 'Harvard-Yenching Institute'),
(61848, 51335, 'es', 'name', 'Instituto Palacios'),
(61849, 51336, 'en', 'name', 'Aga Khan Foundation'),
(61850, 51337, 'no_lang_code', 'name', 'CarboTech (Germany)'),
(61851, 51338, 'en', 'name', 'Parkinson''s NSW'),
(61852, 51339, 'en', 'name', 'Pritzker Traubert Family Foundation'),
(61853, 51340, 'en', 'name', 'Kyungpook National University Medical Center'),
(61854, 51341, 'en', 'name', 'Proteus Digital Health'),
(61855, 51342, 'en', 'name', 'Central Kentucky Research Associates'),
(61856, 51343, 'en', 'name', 'Jim Joseph Foundation'),
(61857, 51344, 'no_lang_code', 'name', 'MetaMetrics (United States)'),
(61858, 51345, 'en', 'name', 'Abney Foundation'),
(61859, 51346, 'en', 'name', 'Clinical Research Solutions'),
(61860, 51347, 'no_lang_code', 'name', 'Boehringer Ingelheim (Latvia)'),
(61861, 51348, 'en', 'name', 'What Kids Can Do'),
(61862, 51349, 'no_lang_code', 'name', 'Buddhachinaraj Hospital'),
(61863, 51350, 'en', 'name', 'Mindwires Consulting'),
(61864, 51351, 'en', 'name', 'Third People ''s Hospital of Liaoyang'),
(61865, 51352, 'en', 'name', 'Four Seasons'),
(61866, 51353, 'en', 'name', 'Finnish Lung Health Association'),
(61867, 51354, 'en', 'name', 'Huntington Society of Canada'),
(61868, 51355, 'en', 'name', 'Cave Research Foundation'),
(61869, 51356, 'en', 'name', 'Everychild Foundation'),
(61870, 51357, 'en', 'name', 'Venice Family Clinic'),
(61871, 51358, 'no_lang_code', 'name', 'Upsher-Smith Laboratories (United Kingdom)'),
(61872, 51359, 'no_lang_code', 'name', 'Quantum Experimental (Spain)'),
(61873, 51360, 'en', 'name', 'Japan ICU Foundation'),
(61874, 51361, 'it', 'name', 'Fondazione Ricerca Molinette'),
(61875, 51362, 'en', 'name', 'Medicort Sports & Orthopedic Care'),
(61876, 51363, 'en', 'name', 'International Justice Mission'),
(61877, 51364, 'en', 'name', 'Hospital 463 People''s Liberation Army'),
(61878, 51364, 'zh', 'name', 'č§£ę”¾å†›å››å…­äø‰åŒ»é™¢'),
(61879, 51365, 'en', 'name', 'Charles and Mildred Schnurmacher Foundation'),
(61880, 51366, 'en', 'name', 'Moody Foundation'),
(61881, 51367, 'en', 'name', 'Foundation for Global Scholars'),
(61882, 51368, 'no_lang_code', 'name', 'Koenig & Bauer (Germany)'),
(61883, 51369, 'en', 'name', 'EuroQol Research Foundation'),
(61884, 51370, 'no_lang_code', 'name', 'Novartis (Sweden)'),
(61885, 51371, 'en', 'name', 'Lake OB/GYN Associates of Mid-Florida'),
(61886, 51372, 'en', 'name', 'Department of Trade, Industry and Competition'),
(61887, 51373, 'en', 'name', 'Lambda Therapeutic Research'),
(61888, 51374, 'en', 'name', 'Cosmetic Laser Dermatology'),
(61889, 51375, 'en', 'name', 'Cancer and Polio Research Fund'),
(61890, 51376, 'en', 'name', 'Jack Miller Center'),
(61891, 51377, 'en', 'name', 'Pasteur Foundation'),
(61892, 51378, 'en', 'name', 'Latino/a Educational Achievement Project'),
(61893, 51379, 'en', 'name', 'Rheumatology Theraputics Medical Center'),
(61894, 51380, 'no_lang_code', 'name', 'Wavin (Netherlands)'),
(61895, 51381, 'no_lang_code', 'name', 'Pinnacle Trials (United States)'),
(61896, 51382, 'en', 'name', 'National Public Education Support Fund'),
(61897, 51383, 'no_lang_code', 'name', 'United Parcel Service (United States)'),
(61898, 51384, 'en', 'name', 'Children Now'),
(61899, 51385, 'en', 'name', 'British Occupational Health Research Foundation'),
(61900, 51386, 'no_lang_code', 'name', 'Microsoft (Finland)'),
(61901, 51387, 'en', 'name', 'Fryderyk Chopin Institute'),
(61902, 51387, 'pl', 'name', 'Narodowy Instytut Fryderyka Chopina'),
(61903, 51388, 'it', 'name', 'Ospedali Riuniti Marche Nord'),
(61904, 51389, 'en', 'name', 'International Transplant Nurses Society'),
(61905, 51390, 'no_lang_code', 'name', 'AdminiTrust'),
(61906, 51391, 'en', 'name', 'South Dakota Department Of Education'),
(61907, 51392, 'en', 'name', 'American Society of Pediatric Otolaryngology'),
(61908, 51393, 'en', 'name', 'British Association for American Studies'),
(61909, 51394, 'en', 'name', 'Potlatch Fund'),
(61910, 51395, 'no_lang_code', 'name', 'Rittal (Germany)'),
(61911, 51396, 'en', 'name', 'Lutheran Medical Group'),
(61912, 51397, 'en', 'name', 'Blanche Davis Moore Foundation'),
(61913, 51398, 'en', 'name', 'Georgia Urology'),
(61914, 51399, 'no_lang_code', 'name', 'Orion Corporation (United Kingdom)'),
(61915, 51400, 'en', 'name', 'Generation Foundation'),
(61916, 51401, 'en', 'name', 'Wegene Ethiopian Foundation'),
(61917, 51402, 'en', 'name', 'Fletcher Jones Foundation'),
(61918, 51403, 'en', 'name', 'ACVO Vision for Animals Foundation'),
(61919, 51404, 'no_lang_code', 'name', 'Biogen (Netherlands)'),
(61920, 51405, 'en', 'name', 'United Way of King County'),
(61921, 51406, 'ja', 'name', 'å³¶ē²¾ę©Ÿč£½ä½œę‰€'),
(61922, 51406, 'no_lang_code', 'name', 'Shima Seiki (Japan)'),
(61923, 51407, 'en', 'name', 'Mike O''Callaghan Federal Medical Center'),
(61924, 51408, 'de', 'name', 'HNO-Praxis'),
(61925, 51409, 'no_lang_code', 'name', 'Richard Wolf (Germany)'),
(61926, 51410, 'no_lang_code', 'name', 'Forum 50%'),
(61927, 51411, 'en', 'name', 'St. Vladimir Children''s Moscow Clinical Hospital'),
(61928, 51411, 'ru', 'name', 'Š”Š²ŃŃ‚Š¾-ВлаГимирский Š”ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° Москва'),
(61929, 51412, 'en', 'name', 'Kato Foundation for Promotion of Science'),
(61930, 51412, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ åŠ č—¤ē§‘å­¦ęŒÆčˆˆä¼š'),
(61931, 51413, 'en', 'name', 'American Heart Institute'),
(61932, 51414, 'el', 'name', 'SciFY'),
(61933, 51415, 'en', 'name', 'InterAction'),
(61934, 51416, 'en', 'name', 'Amyloidosis Foundation'),
(61935, 51417, 'pt', 'name', 'Hospital Haroldo JuaƧaba'),
(61936, 51418, 'en', 'name', 'Japan Foundation Manila'),
(61937, 51419, 'no_lang_code', 'name', 'Apotex (Canada)'),
(61938, 51420, 'en', 'name', 'ActionAid'),
(61939, 51421, 'en', 'name', 'Grantsmanship Center'),
(61940, 51422, 'no_lang_code', 'name', 'Visterra (United States)'),
(61941, 51423, 'en', 'name', 'Grantmakers Concerned with Immigrants and Refugees'),
(61942, 51424, 'en', 'name', 'Fats and Proteins Research Foundation'),
(61943, 51425, 'en', 'name', 'Ellipsis'),
(61944, 51426, 'en', 'name', 'Crohn''s & Colitis Australia'),
(61945, 51427, 'en', 'name', 'Rippel Foundation'),
(61946, 51428, 'ja', 'name', 'ę—„ęø…ē“”ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(61947, 51428, 'no_lang_code', 'name', 'Nisshinbo Holdings (Japan)'),
(61948, 51429, 'en', 'name', 'Corporation for Public Broadcasting'),
(61949, 51430, 'en', 'name', 'Dr V Seshiah Diabetes Research Institute'),
(61950, 51431, 'en', 'name', 'Association of American Railroads'),
(61951, 51432, 'no_lang_code', 'name', 'Novartis (Israel)'),
(61952, 51433, 'no_lang_code', 'name', 'Mƶlnlycke Health Care (Sweden)'),
(61953, 51434, 'da', 'name', 'Danmarks KvƦgforskningscenter'),
(61954, 51434, 'en', 'name', 'Danish Cattle Research Centre'),
(61955, 51435, 'en', 'name', 'Advanced Dermatology & Cosmetic Surgery'),
(61956, 51436, 'en', 'name', 'Kozlovsky Delay & Winter Eye Consultants'),
(61957, 51437, 'en', 'name', 'Ralph C. Wilson, Jr. Foundation'),
(61958, 51438, 'pl', 'name', 'Hospicjum im. Ks. Eugeniusza Dutkiewicza SAC'),
(61959, 51439, 'no_lang_code', 'name', 'Nordmark (Germany)'),
(61960, 51440, 'en', 'name', 'Southbay Pharma Research'),
(61961, 51441, 'en', 'name', 'American Fidelity Foundation'),
(61962, 51442, 'en', 'name', 'Geraldine R. Dodge Foundation'),
(61963, 51443, 'en', 'name', 'Marguerite Casey Foundation'),
(61964, 51444, 'en', 'name', 'Taiyuan Maternity and Child Care Hospital'),
(61965, 51444, 'zh', 'name', 'å¤ŖåŽŸåø‚å¦‡å¹¼äæå„é™¢'),
(61966, 51445, 'en', 'name', 'Surge Institute'),
(61967, 51446, 'en', 'name', 'Cervical Spine Research Society'),
(61968, 51447, 'en', 'name', 'New Teacher Center'),
(61969, 51448, 'en', 'name', 'Columbia Foundation'),
(61970, 51449, 'en', 'name', 'Association of Management Development Institutions in South Asia'),
(61971, 51450, 'en', 'name', 'Independent Social Research Foundation'),
(61972, 51451, 'en', 'name', 'Kettering Family Foundation'),
(61973, 51452, 'en', 'name', 'Indonesia Toray Science Foundation'),
(61974, 51453, 'en', 'name', 'South Carolina Oncology Associates'),
(61975, 51454, 'en', 'name', 'National Aids Control Council'),
(61976, 51455, 'en', 'name', 'Center for Digestive and Liver Diseases'),
(61977, 51456, 'en', 'name', 'Greater Tacoma Community Foundation'),
(61978, 51457, 'en', 'name', 'Shunyi Hospital of Beijing Traditional Chinese Medicine Hospital'),
(61979, 51457, 'zh', 'name', 'åŒ—äŗ¬äø­åŒ»åŒ»é™¢é”ŗä¹‰åŒ»é™¢'),
(61980, 51458, 'no_lang_code', 'name', 'Chaparral Energy (United States)'),
(61981, 51459, 'no_lang_code', 'name', 'İlkogen (Turkey)'),
(61982, 51460, 'en', 'name', 'AMCR Institute'),
(61983, 51461, 'no_lang_code', 'name', 'Paul Wurth (Luxembourg)'),
(61984, 51462, 'en', 'name', 'Virginia Clinical Research'),
(61985, 51463, 'en', 'name', 'TrustAfrica'),
(61986, 51464, 'no_lang_code', 'name', 'CME Group (United States)'),
(61987, 51465, 'en', 'name', 'Alpha Omicron Pi Foundation'),
(61988, 51466, 'en', 'name', 'National Council on Teacher Quality'),
(61989, 51467, 'en', 'name', 'Museum of Vertebrate Zoology'),
(61990, 51468, 'en', 'name', 'Dermatology, Laser & Vein Specialists of the Carolinas'),
(61991, 51469, 'en', 'name', 'British Antarctic Survey'),
(61992, 51470, 'no_lang_code', 'name', 'Maschinenfabrik Reinhausen (Germany)'),
(61993, 51471, 'en', 'name', 'Development Fund'),
(61994, 51471, 'no', 'name', 'Utviklingsfondet'),
(61995, 51472, 'en', 'name', 'Samatvam Endocrinology Diabetes Centre'),
(61996, 51473, 'en', 'name', 'New York Community Trust'),
(61997, 51474, 'no_lang_code', 'name', 'Avery Design Systems (United States)'),
(61998, 51475, 'it', 'name', 'Azienda UnitĆ  Sanitaria Locale Della Romagna'),
(61999, 51476, 'en', 'name', 'Opportunity International'),
(62000, 51477, 'en', 'name', 'Keiki O Ka ā€˜ Āina Family Learning Centers'),
(62001, 51478, 'en', 'name', 'Chief Inspectorate of Environmental Protection'),
(62002, 51479, 'en', 'name', 'Child Neurology Foundation'),
(62003, 51480, 'en', 'name', 'Synergy Research Centers'),
(62004, 51481, 'en', 'name', 'British Society for Cell Biology'),
(62005, 51482, 'en', 'name', 'Pittsburgh Promise Foundation'),
(62006, 51483, 'en', 'name', 'Korean Society of Critical Care Medicine'),
(62007, 51483, 'ko', 'name', 'ėŒ€ķ•œģ¤‘ķ™˜ģžģ˜ķ•™ķšŒ'),
(62008, 51484, 'no_lang_code', 'name', 'Oncotherapeutics (United States)'),
(62009, 51485, 'no_lang_code', 'name', 'Next Dimension Technologies (United States)'),
(62010, 51486, 'de', 'name', 'StƤdtisches Klinikum Solingen'),
(62011, 51487, 'en', 'name', 'Lucas Foundation'),
(62012, 51488, 'no_lang_code', 'name', 'Kraft Heinz (United States)'),
(62013, 51489, 'no_lang_code', 'name', 'Arafarma Group (Spain)'),
(62014, 51490, 'no_lang_code', 'name', 'DyStar (Germany)'),
(62015, 51491, 'en', 'name', 'Nautilus Ventures'),
(62016, 51492, 'en', 'name', 'Clinical Study Center of Asheville'),
(62017, 51493, 'no_lang_code', 'name', 'Scheck & Siress (United States)'),
(62018, 51494, 'ja', 'name', 'ēŸ³ē”°č£½ä½œę‰€'),
(62019, 51494, 'no_lang_code', 'name', 'Ishida Seisakusho (Japan)'),
(62020, 51495, 'en', 'name', 'CINTAS Foundation'),
(62021, 51496, 'en', 'name', 'Specialized Dentistry of New York'),
(62022, 51497, 'en', 'name', 'Vital Pakistan Trust'),
(62023, 51498, 'no_lang_code', 'name', 'Wilson Therapeutics (United States)'),
(62024, 51499, 'en', 'name', 'South Texas Accelerated Research Therapeutics'),
(62025, 51500, 'no_lang_code', 'name', 'Ono Pharmaceutical (United Kingdom)'),
(62026, 51501, 'en', 'name', 'Fuji Foundation for Protein Research'),
(62027, 51501, 'ja', 'name', 'ćƒ•ć‚”ć‚¦ć‚øćƒ¼ć‚æćƒ³ćƒ‘ć‚Æč³Ŗē ”ē©¶č²”å›£'),
(62028, 51502, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒžćƒ€'),
(62029, 51502, 'no_lang_code', 'name', 'Amada (Japan)'),
(62030, 51503, 'en', 'name', 'American Research Center in Sofia Foundation'),
(62031, 51504, 'no_lang_code', 'name', 'Pierre Fabre (United Kingdom)'),
(62032, 51505, 'es', 'name', 'Hospital ClĆ­nica Benidorm'),
(62033, 51506, 'en', 'name', 'Retina Associates of Western New York'),
(62034, 51507, 'no_lang_code', 'name', 'Neoleukin Therapeutics (United Kingdom)'),
(62035, 51508, 'de', 'name', 'Ihre-Radiologen'),
(62036, 51509, 'cs', 'name', 'MultikulturnĆ­ centrum Praha'),
(62037, 51509, 'en', 'name', 'Multicultural Center Prague'),
(62038, 51510, 'en', 'name', 'New York Oncology Hematology'),
(62039, 51511, 'en', 'name', 'Donor Network West'),
(62040, 51512, 'no_lang_code', 'name', 'Acuity Brands (United states)'),
(62041, 51513, 'da', 'name', 'Familien Hede Nielsens Fond'),
(62042, 51514, 'en', 'name', 'Jerusalem Fund'),
(62043, 51515, 'en', 'name', 'AIMS Education Foundation'),
(62044, 51516, 'en', 'name', 'Florida Center for Gastroenterology'),
(62045, 51517, 'no_lang_code', 'name', 'Spectrum Brands (United States)'),
(62046, 51518, 'no_lang_code', 'name', 'Aptevo Therapeutics (United Kingdom)'),
(62047, 51519, 'pt', 'name', 'Fundação de Apoio ao Desenvolvimento da Computação Científica'),
(62048, 51520, 'en', 'name', 'McCarthy Family Foundation'),
(62049, 51521, 'en', 'name', 'Gamma Mu Foundation'),
(62050, 51522, 'en', 'name', 'Heed Ophthalmic Foundation'),
(62051, 51523, 'en', 'name', 'Boston Educational Development Foundation'),
(62052, 51524, 'no_lang_code', 'name', 'Rehrig Pacific (United States)'),
(62053, 51525, 'no_lang_code', 'name', 'SciencePharma (Poland)'),
(62054, 51526, 'en', 'name', 'Pahara Institute'),
(62055, 51527, 'en', 'name', 'Crime Prevention Center'),
(62056, 51528, 'en', 'name', 'Oklahoma Department of Libraries'),
(62057, 51529, 'en', 'name', 'Communities Foundation of Texas'),
(62058, 51530, 'en', 'name', 'Ludwig Boltzmann Institute for COPD And Respiratory Epidemiology'),
(62059, 51531, 'en', 'name', 'Justice in Aging'),
(62060, 51532, 'en', 'name', 'Mental Health Research UK'),
(62061, 51533, 'en', 'name', 'Innovative Clinical Research'),
(62062, 51534, 'no_lang_code', 'name', 'Novasep (Germany)'),
(62063, 51535, 'es', 'name', 'Sociedad EspaƱola de Farmacologƭa Clƭnica'),
(62064, 51536, 'en', 'name', 'Boys and Girls Clubs'),
(62065, 51537, 'no_lang_code', 'name', 'Roehm (Germany)'),
(62066, 51538, 'en', 'name', 'Association for Historical Dialogue and Research'),
(62067, 51539, 'de', 'name', 'Union postale universelle, Universal Postal Union'),
(62068, 51540, 'no_lang_code', 'name', 'Addmedica (France)'),
(62069, 51541, 'da', 'name', 'Danmarks Radio'),
(62070, 51542, 'no_lang_code', 'name', 'Laboratorio De Aplicaciones Farmacodinamicas (Spain)'),
(62071, 51543, 'no_lang_code', 'name', 'Celyad (Belgium)'),
(62072, 51544, 'en', 'name', 'Infusion Associates'),
(62073, 51545, 'no_lang_code', 'name', 'Pierian Biosciences (United States)'),
(62074, 51546, 'en', 'name', 'National Institute of Public Cooperation and Child Development'),
(62075, 51547, 'no_lang_code', 'name', 'Sherwin Williams (United States)'),
(62076, 51548, 'en', 'name', 'Literacy Design Collaborative'),
(62077, 51549, 'no_lang_code', 'name', 'Eli Lilly (Switzerland)'),
(62078, 51550, 'en', 'name', 'Consortium for DEWATS Dissemination Society'),
(62079, 51551, 'en', 'name', 'Center For Balanced Living'),
(62080, 51552, 'en', 'name', 'Physiology Society of Southern Africa'),
(62081, 51553, 'en', 'name', 'National Foundation for India'),
(62082, 51554, 'en', 'name', 'Vital Voices'),
(62083, 51555, 'en', 'name', 'Nashville Medical Research Institute'),
(62084, 51556, 'en', 'name', 'Professional Assistance for Development Action'),
(62085, 51557, 'en', 'name', 'Cummings Foundation'),
(62086, 51558, 'de', 'name', 'Diabetes-Zentrum Quakenbrück'),
(62087, 51559, 'en', 'name', 'Swiss Philanthropy Foundation'),
(62088, 51560, 'en', 'name', 'District of Columbia College Access Program'),
(62089, 51561, 'no_lang_code', 'name', 'Evestra (Germany)'),
(62090, 51562, 'en', 'name', 'Drum Foundation'),
(62091, 51563, 'no_lang_code', 'name', 'Diacon Hospital'),
(62092, 51564, 'en', 'name', 'McLaren Northern Michigan'),
(62093, 51565, 'en', 'name', 'Maryland Dermatology Laser Skin and Vein Institute'),
(62094, 51566, 'en', 'name', 'CityBridge Education'),
(62095, 51567, 'en', 'name', 'Joshua Frase Foundation'),
(62096, 51568, 'en', 'name', 'Lynn Sage Cancer Research Foundation'),
(62097, 51569, 'no_lang_code', 'name', 'Combat Medical (Spain)'),
(62098, 51570, 'no_lang_code', 'name', 'T-Mobile (United States)'),
(62099, 51571, 'en', 'name', 'American Public Human Services Association'),
(62100, 51572, 'no_lang_code', 'name', 'Piramal (Germany)'),
(62101, 51573, 'en', 'name', 'IVI Valencia Clinic'),
(62102, 51574, 'en', 'name', 'Institute for Health Policy Solutions'),
(62103, 51575, 'no_lang_code', 'name', 'Kreussler (Germany)'),
(62104, 51576, 'pt', 'name', 'Hospital Regional de São José Dr. Homero de Miranda Gomes'),
(62105, 51577, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ć‚»ćƒ«'),
(62106, 51577, 'no_lang_code', 'name', 'Daicel (Japan)'),
(62107, 51578, 'en', 'name', 'Center for Strengthening the Teaching Profession'),
(62108, 51579, 'en', 'name', 'Australasian Blistering Diseases Foundation'),
(62109, 51580, 'no_lang_code', 'name', 'Novartis (Australia)'),
(62110, 51581, 'en', 'name', 'Italian Sarcoma Group'),
(62111, 51582, 'en', 'name', 'Centennial Medical Group'),
(62112, 51583, 'sv', 'name', 'Hans Bang Stiftelsen'),
(62113, 51584, 'en', 'name', 'Crown Property Bureau'),
(62114, 51585, 'no_lang_code', 'name', 'Initiatives (Denmark)'),
(62115, 51586, 'en', 'name', 'Fourth Hospital of Changsha'),
(62116, 51586, 'zh', 'name', 'é•æę²™åø‚ē¬¬å››åŒ»é™¢'),
(62117, 51587, 'en', 'name', 'National Community Pharmacists Association'),
(62118, 51588, 'en', 'name', 'Northwest Clinical Trials'),
(62119, 51589, 'no_lang_code', 'name', 'Pivot Bio (United States)'),
(62120, 51590, 'en', 'name', 'Medical Advanced Pain Specialists'),
(62121, 51591, 'de', 'name', 'Kurt-Gƶdel-Gesellschaft'),
(62122, 51591, 'en', 'name', 'Kurt Gƶdel Society'),
(62123, 51592, 'en', 'name', 'FSG'),
(62124, 51593, 'en', 'name', 'Therapeutic Health Services'),
(62125, 51594, 'pl', 'name', 'Kostrzyca Forest Gene Bank'),
(62126, 51595, 'it', 'name', 'Azienda Sanitaria Locale Viterbo'),
(62127, 51596, 'en', 'name', 'Memorial Hermann The Woodlands Hospital'),
(62128, 51597, 'en', 'name', 'Mount Vernon Cancer Centre'),
(62129, 51598, 'en', 'name', 'WaterAid America'),
(62130, 51599, 'en', 'name', 'Pulmonary and Allergy Associates'),
(62131, 51600, 'no_lang_code', 'name', 'Oxurion (Ireland)'),
(62132, 51601, 'en', 'name', 'Coalition to Transform Advanced Care'),
(62133, 51602, 'en', 'name', 'Zhongshan People''s Hospital'),
(62134, 51602, 'zh', 'name', 'äø­å±±åø‚äŗŗę°‘åŒ»é™¢'),
(62135, 51603, 'en', 'name', 'Partnership for Drug-Free Kids'),
(62136, 51604, 'en', 'name', 'Muttart Foundation'),
(62137, 51605, 'no_lang_code', 'name', 'Accord (United Kingdom)'),
(62138, 51606, 'en', 'name', 'Chapman Foundations'),
(62139, 51607, 'en', 'name', 'Youth Development Labs'),
(62140, 51608, 'en', 'name', 'Petco Foundation'),
(62141, 51609, 'en', 'name', 'PAST Foundation'),
(62142, 51610, 'no_lang_code', 'name', 'Wonderland Nurserygoods (Taiwan)'),
(62143, 51611, 'no_lang_code', 'name', 'Dushtha Shasthya Kendra'),
(62144, 51612, 'en', 'name', 'San Diego County Library'),
(62145, 51613, 'en', 'name', 'Atlantic Street Center'),
(62146, 51614, 'en', 'name', 'Georgia Health Foundation'),
(62147, 51615, 'en', 'name', 'Omni Eye Services'),
(62148, 51616, 'en', 'name', 'Angelman Syndrome Foundation'),
(62149, 51617, 'en', 'name', 'Colorado Joint Replacement'),
(62150, 51618, 'en', 'name', 'Central Indiana Gastroenterology Group'),
(62151, 51619, 'fr', 'name', 'Fondation Motrice'),
(62152, 51620, 'en', 'name', 'Dimbleby Cancer Care'),
(62153, 51621, 'en', 'name', 'National Centre for Advanced Studies in Humanities and Social Sciences'),
(62154, 51622, 'no_lang_code', 'name', 'Apeel Sciences (United States)'),
(62155, 51623, 'en', 'name', 'New Mexico State Library'),
(62156, 51624, 'no_lang_code', 'name', 'Aava Medical Centre'),
(62157, 51625, 'no_lang_code', 'name', 'Mitel (Canada)'),
(62158, 51626, 'no_lang_code', 'name', 'Med Center'),
(62159, 51627, 'en', 'name', 'Binzhou People''s Hospital'),
(62160, 51627, 'zh', 'name', 'ę»Øå·žäŗŗę°‘åŒ»é™¢'),
(62161, 51628, 'no_lang_code', 'name', 'Strathmann (Germany)'),
(62162, 51629, 'en', 'name', 'Panzi Foundation'),
(62163, 51630, 'no_lang_code', 'name', 'Can-Fite BioPharma (Israel)'),
(62164, 51631, 'en', 'name', 'National Center on Addiction and Substance Abuse at Columbia University'),
(62165, 51632, 'en', 'name', 'National Endowment for Financial Education'),
(62166, 51633, 'en', 'name', 'Rice Institute'),
(62167, 51634, 'en', 'name', 'Wrocław Zoo'),
(62168, 51634, 'pl', 'name', 'Ogród Zoologiczny we Wrocławiu'),
(62169, 51635, 'no_lang_code', 'name', 'Memjet (Ireland)'),
(62170, 51636, 'en', 'name', 'International Order of Alhambra'),
(62171, 51637, 'en', 'name', 'Biologos Foundation'),
(62172, 51638, 'en', 'name', 'North American Menopause Society'),
(62173, 51639, 'nl', 'name', 'Dr Kolbach Kliniek'),
(62174, 51640, 'en', 'name', 'Georgia Center for Women'),
(62175, 51641, 'no_lang_code', 'name', 'CommScope (United States)'),
(62176, 51642, 'en', 'name', 'Translational Research in Oncology'),
(62177, 51643, 'da', 'name', 'Hesteafgiftsfondens'),
(62178, 51644, 'en', 'name', 'Empire Eye Physicians'),
(62179, 51645, 'sv', 'name', 'Njurfonden'),
(62180, 51646, 'no_lang_code', 'name', 'Geze (Germany)'),
(62181, 51647, 'no_lang_code', 'name', 'Mineralbrunnen Überkingen Teinach Beteiligungs'),
(62182, 51648, 'en', 'name', 'Simha Foundation'),
(62183, 51649, 'en', 'name', 'Education & Research Foundation'),
(62184, 51650, 'fr', 'name', 'Adolphe Merkle Institute'),
(62185, 51651, 'de', 'name', 'Care-for-Rare-Stiftung'),
(62186, 51651, 'en', 'name', 'Care-for-Rare Foundation'),
(62187, 51652, 'en', 'name', 'Slocum Center for Orthopedics and Sports Medicine'),
(62188, 51653, 'en', 'name', 'Aichi Science & Technology Foundation'),
(62189, 51653, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē§‘å­¦ęŠ€č”“äŗ¤ęµč²”å›£'),
(62190, 51654, 'en', 'name', 'Action in the Community Environment'),
(62191, 51655, 'en', 'name', 'Medicare Rights Center'),
(62192, 51656, 'en', 'name', 'National Hispanic Medical Association'),
(62193, 51657, 'en', 'name', 'Centers for Behavioral Health'),
(62194, 51658, 'no_lang_code', 'name', 'Synexus (Germany)'),
(62195, 51659, 'ca', 'name', 'Associació per la Recerca Oncològica'),
(62196, 51660, 'en', 'name', 'Ogawa Science and Technology Foundation'),
(62197, 51660, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å°å·ē§‘å­¦ęŠ€č”“č²”å›£'),
(62198, 51661, 'en', 'name', 'Chinese Academy of Medical Sciences Dermatology Hospital'),
(62199, 51662, 'no_lang_code', 'name', 'Merck Serono (Italy)'),
(62200, 51663, 'en', 'name', 'Cancer Research Wales'),
(62201, 51664, 'no_lang_code', 'name', 'CellAct Pharma (Germany)'),
(62202, 51665, 'en', 'name', 'MTV Staying Alive'),
(62203, 51666, 'en', 'name', 'GameDesk'),
(62204, 51667, 'no_lang_code', 'name', 'Pfizer (Belgium)'),
(62205, 51668, 'en', 'name', 'Nomis Foundation'),
(62206, 51669, 'no_lang_code', 'name', 'Probelte Pharma (Spain)'),
(62207, 51670, 'en', 'name', 'National Council for Tertiary Education'),
(62208, 51671, 'en', 'name', 'Greater Kanawha Valley Foundation'),
(62209, 51672, 'en', 'name', 'Cumberland Medical Center'),
(62210, 51673, 'en', 'name', 'San Juan Oncology Associates'),
(62211, 51674, 'en', 'name', 'Defense Technical Information Center'),
(62212, 51675, 'en', 'name', 'Association of Washington School Principals'),
(62213, 51676, 'en', 'name', 'ChiangRai Prachanukroh Hospital'),
(62214, 51676, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ ą¹€ąøŠąøµąø¢ąø‡ąø£ąø²ąø¢ąø›ąø£ąø°ąøŠąø²ąø™ąøøą¹€ąø„ąø£ąø²ąø°ąø«ą¹Œ'),
(62215, 51677, 'no_lang_code', 'name', 'Brembo (United Kingdom)'),
(62216, 51678, 'nl', 'name', 'Stichting Kinderoncologie Nederland'),
(62217, 51679, 'en', 'name', 'Harvey L. Neiman Health Policy Institute'),
(62218, 51680, 'en', 'name', 'Springfield Neurology Clinical Trials'),
(62219, 51681, 'en', 'name', 'Barlow Medical Centre'),
(62220, 51682, 'no_lang_code', 'name', 'Manatt, Phelps & Phillips (United States)'),
(62221, 51683, 'en', 'name', 'Beijing Luhe Hospital Affiliated to Capital Medical University'),
(62222, 51683, 'zh', 'name', 'é¦–éƒ½åŒ»ē§‘å¤§å­¦é™„å±žåŒ—äŗ¬ę½žę²³åŒ»é™¢'),
(62223, 51684, 'no_lang_code', 'name', 'Bamrasnaradura Infectious Diseases Institute'),
(62224, 51685, 'sv', 'name', 'PraktikertjƤnst'),
(62225, 51686, 'no_lang_code', 'name', 'TiGenix (Spain)'),
(62226, 51687, 'no_lang_code', 'name', 'Kunstgreb (Denmark)'),
(62227, 51688, 'en', 'name', 'Segal Institute for Clinical Research'),
(62228, 51689, 'en', 'name', 'National Office for Sanitation of Senegal'),
(62229, 51690, 'en', 'name', 'Drs. Quinn, Foster & Associates'),
(62230, 51691, 'en', 'name', 'Avera Heart Hospital'),
(62231, 51692, 'en', 'name', 'Minnesota Ovarian Cancer Alliance'),
(62232, 51693, 'en', 'name', 'Learning Forward'),
(62233, 51694, 'en', 'name', 'LankellyChase Foundation'),
(62234, 51695, 'en', 'name', 'Alpha Phi Foundation'),
(62235, 51696, 'no_lang_code', 'name', 'Lundbeck (Spain)'),
(62236, 51697, 'no_lang_code', 'name', 'Premier Clinical Research (United States)'),
(62237, 51698, 'no_lang_code', 'name', 'Hewlett-Packard (Netherlands)'),
(62238, 51699, 'en', 'name', 'Achievement School District'),
(62239, 51700, 'en', 'name', 'Ball Brothers Foundation'),
(62240, 51701, 'en', 'name', 'British Columbia Environmental and Occupational Health Research Network'),
(62241, 51702, 'no_lang_code', 'name', 'Johnson & Johnson (Sweden)'),
(62242, 51703, 'en', 'name', 'Barakat Trust'),
(62243, 51704, 'en', 'name', 'Latvian Centre for Contemporary Art'),
(62244, 51705, 'en', 'name', 'Chi Omega Foundation'),
(62245, 51706, 'no_lang_code', 'name', 'Dr. Kade Pharmazeutische Fabrik (Germany)'),
(62246, 51707, 'no_lang_code', 'name', 'Danieli (Italy)'),
(62247, 51708, 'no_lang_code', 'name', 'Berry (India)'),
(62248, 51709, 'da', 'name', 'Regionshospitalet Silkeborg'),
(62249, 51710, 'no_lang_code', 'name', 'Sager Pharma (Hungary)'),
(62250, 51711, 'en', 'name', 'Ohnishi Neurological Center'),
(62251, 51711, 'ja', 'name', 'å¤§č„æč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(62252, 51712, 'no_lang_code', 'name', 'Jianan Mental Hospital'),
(62253, 51713, 'en', 'name', 'Italian Scientists and Scholars in North America Foundation'),
(62254, 51714, 'en', 'name', 'Vellore Christian Medical College Foundation');
INSERT INTO `ror_settings` VALUES
(62255, 51715, 'no_lang_code', 'name', 'Bionorica (Germany)'),
(62256, 51716, 'en', 'name', 'Faith in Public Life'),
(62257, 51717, 'en', 'name', 'Cooper Trewin Memorial SUDC Research Fund'),
(62258, 51718, 'en', 'name', 'Women Moving Millions'),
(62259, 51719, 'en', 'name', 'Mcnulty Foundation'),
(62260, 51720, 'en', 'name', 'Binational Industrial Research and Development Foundation'),
(62261, 51721, 'no_lang_code', 'name', 'Xenikos (Netherlands)'),
(62262, 51722, 'no_lang_code', 'name', 'Abbott (Netherlands)'),
(62263, 51723, 'no_lang_code', 'name', 'EberspƤcher (Germany)'),
(62264, 51724, 'no_lang_code', 'name', 'Clinical Inquest Center (United States)'),
(62265, 51725, 'en', 'name', 'Creative Capital Foundation'),
(62266, 51726, 'en', 'name', 'Compliant Clinical Research'),
(62267, 51727, 'en', 'name', 'World Health Partners'),
(62268, 51728, 'en', 'name', 'Heart Hospital Baylor Plano'),
(62269, 51729, 'en', 'name', 'JGW Patterson Foundation'),
(62270, 51730, 'no_lang_code', 'name', 'Ipsen (Spain)'),
(62271, 51731, 'en', 'name', 'Ann Arbor Area Community Foundation'),
(62272, 51732, 'en', 'name', 'Qihe People''s Hospital'),
(62273, 51732, 'zh', 'name', 'é½ę²³äŗŗę°‘åŒ»é™¢'),
(62274, 51733, 'en', 'name', 'Guthy-Jackson Charitable Foundation'),
(62275, 51734, 'en', 'name', 'Temple Lung Center'),
(62276, 51735, 'no_lang_code', 'name', 'AMEN'),
(62277, 51736, 'en', 'name', 'Beacon Center of Tennessee'),
(62278, 51737, 'en', 'name', 'Australian Geographic Society'),
(62279, 51738, 'en', 'name', 'Worldwide Documentaries'),
(62280, 51739, 'no_lang_code', 'name', 'TÜV SÜD (Singapore)'),
(62281, 51740, 'no_lang_code', 'name', 'AstraZeneca (Netherlands)'),
(62282, 51741, 'en', 'name', 'ARCH Development Corporation'),
(62283, 51742, 'en', 'name', 'Seattle Parks Foundation'),
(62284, 51743, 'en', 'name', 'Market Matters'),
(62285, 51744, 'en', 'name', 'Retina Institute of Hawaii'),
(62286, 51745, 'en', 'name', 'Con Alma Health Foundation'),
(62287, 51746, 'en', 'name', 'Cannon Foundation'),
(62288, 51747, 'no_lang_code', 'name', 'Osmotica Pharmaceutical (United States)'),
(62289, 51748, 'da', 'name', 'Kongeriget Danmarks Hesteforsikring'),
(62290, 51749, 'en', 'name', 'Philanthropy Ohio'),
(62291, 51750, 'en', 'name', 'Riverside County Library System'),
(62292, 51751, 'no_lang_code', 'name', 'Spot On Sciences (United States)'),
(62293, 51752, 'it', 'name', 'Fondazioni Casali'),
(62294, 51753, 'en', 'name', 'Ministry of Agriculture and Food'),
(62295, 51753, 'no', 'name', 'Landbruks- og matdepartementet'),
(62296, 51754, 'en', 'name', 'Korle Bu Neuroscience Foundation'),
(62297, 51755, 'no_lang_code', 'name', 'Octapharma (Austria)'),
(62298, 51756, 'no_lang_code', 'name', 'Kudelski (Switzerland)'),
(62299, 51757, 'en', 'name', 'People''s Hospital of Kaizhou District'),
(62300, 51757, 'zh', 'name', 'é‡åŗ†å¼€åŽæäŗŗę°‘åŒ»é™¢'),
(62301, 51758, 'en', 'name', 'Ambrose Monell Foundation'),
(62302, 51759, 'en', 'name', 'Orange County Community Foundation'),
(62303, 51760, 'en', 'name', 'New York City Police Foundation'),
(62304, 51761, 'it', 'name', 'Fondazione Monte dei Paschi di Siena'),
(62305, 51762, 'en', 'name', 'Vienna Institute for Research in Ocular Surgery'),
(62306, 51763, 'en', 'name', 'Altoona Center for Clinical Research'),
(62307, 51764, 'en', 'name', 'Colcom Foundation'),
(62308, 51765, 'en', 'name', 'Albuquerque Public Schools'),
(62309, 51766, 'en', 'name', 'Family Care International'),
(62310, 51767, 'bg', 'name', 'ŠžŠ±Ń‰ŠøŠ½Š° ТополовграГ'),
(62311, 51767, 'en', 'name', 'Topolovgrad Municipality'),
(62312, 51768, 'en', 'name', 'AlphaNet'),
(62313, 51769, 'en', 'name', 'Charles D. Jacobus Family Foundation'),
(62314, 51770, 'en', 'name', 'Foundation for Arable Research'),
(62315, 51771, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ć‚Øć‚¹ćƒ»ćƒ¦ć‚¢ć‚µ ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(62316, 51771, 'no_lang_code', 'name', 'GS Yuasa (Japan)'),
(62317, 51772, 'no_lang_code', 'name', 'Pharming Group (Netherlands)'),
(62318, 51773, 'en', 'name', 'IDEA Public Schools'),
(62319, 51774, 'en', 'name', 'Forsyth County Schools'),
(62320, 51775, 'en', 'name', 'Innovations for Poverty Action'),
(62321, 51776, 'en', 'name', 'Physician Care Clinical Research'),
(62322, 51777, 'no_lang_code', 'name', 'Micron Biomedical (United States)'),
(62323, 51778, 'no_lang_code', 'name', 'Metalsa (Germany)'),
(62324, 51779, 'en', 'name', 'Mind Science Foundation'),
(62325, 51780, 'en', 'name', 'Gill Bergska Foundation'),
(62326, 51781, 'en', 'name', 'Eastern Association for the Surgery of Trauma'),
(62327, 51782, 'en', 'name', 'Jewett Orthopaedic Clinic'),
(62328, 51783, 'en', 'name', 'American Floral Endowment'),
(62329, 51784, 'en', 'name', 'Healthcentric Advisors'),
(62330, 51785, 'en', 'name', 'Advanced Neurology Specialists'),
(62331, 51786, 'fr', 'name', 'Clinique Charcot'),
(62332, 51787, 'en', 'name', 'Byblos Bank'),
(62333, 51788, 'en', 'name', 'Fukuda Foundation for Medical Technology'),
(62334, 51788, 'ja', 'name', 'č²”å›£ę³•äŗŗē¦ē”°čØ˜åæµåŒ»ē™‚ęŠ€č”“ęŒÆčˆˆč²”å›£ćÆ'),
(62335, 51789, 'en', 'name', 'American Wildlife Conservation Foundation'),
(62336, 51790, 'en', 'name', 'Humana Foundation'),
(62337, 51791, 'en', 'name', 'United Federation of Teachers'),
(62338, 51792, 'no_lang_code', 'name', 'Delcath Systems (United States)'),
(62339, 51793, 'en', 'name', 'British Dietetic Association'),
(62340, 51794, 'nl', 'name', 'Havenziekenhuis Rotterdam'),
(62341, 51795, 'en', 'name', 'Surveying and Mapping Authority of the Republic of Slovenia'),
(62342, 51796, 'en', 'name', 'Foundation for Health in Aging'),
(62343, 51797, 'de', 'name', 'Diabetes Zentrum Mergentheim'),
(62344, 51797, 'en', 'name', 'German Diabetes Center Mergentheim'),
(62345, 51798, 'en', 'name', 'Help For Children'),
(62346, 51799, 'en', 'name', 'Institute for Global Engagement'),
(62347, 51800, 'en', 'name', 'Innovation Center Denmark'),
(62348, 51801, 'no_lang_code', 'name', 'Skin Specialty Dermatology (United States)'),
(62349, 51802, 'bg', 'name', 'Š”ŠŖŠ Š–ŠŠ’ŠŠž ŠŸŠ Š•Š”ŠŸŠ Š˜ŠÆŠ¢Š˜Š• ŠŸŠ Š˜Š”Š¢ŠŠŠ˜Š©ŠŠ Š˜ŠŠ¤Š ŠŠ”Š¢Š Š£ŠšŠ¢Š£Š Š'),
(62350, 51802, 'no_lang_code', 'name', 'Bulgarian Ports Infrastructure (Bulgaria)'),
(62351, 51803, 'en', 'name', 'The Herbert H. and Grace A. Dow Foundation'),
(62352, 51804, 'en', 'name', 'TEDA International Cardiovascular Hospital'),
(62353, 51804, 'zh', 'name', 'ę³°č¾¾å›½é™…åæƒč”€ē®”ē—…åŒ»é™¢'),
(62354, 51805, 'da', 'name', 'Selskabet for Skole- og Uddannelseshistorie'),
(62355, 51806, 'en', 'name', 'Education and Research Foundation for Nuclear Medicine and Molecular Imaging'),
(62356, 51807, 'no_lang_code', 'name', 'Asacpharma (Spain)'),
(62357, 51808, 'no_lang_code', 'name', 'Regenmedtx (United States)'),
(62358, 51809, 'en', 'name', 'Consultants in Neurology'),
(62359, 51810, 'ms', 'name', 'Hospital Pulau Pinang'),
(62360, 51811, 'en', 'name', 'As You Sow'),
(62361, 51812, 'en', 'name', 'Japan Foundation London'),
(62362, 51813, 'no_lang_code', 'name', 'Joled (Japan)'),
(62363, 51814, 'no_lang_code', 'name', 'Chiesi (France)'),
(62364, 51815, 'no_lang_code', 'name', 'NestlƩ (Sweden)'),
(62365, 51816, 'no_lang_code', 'name', 'Glenmark Pharmaceuticals (Switzerland)'),
(62366, 51817, 'en', 'name', 'Heartland Research Associates'),
(62367, 51818, 'pt', 'name', 'Grupo Santa Casa de Belo Horizonte'),
(62368, 51819, 'en', 'name', 'Cornea Associates of Texas'),
(62369, 51820, 'en', 'name', 'Mood Disorders Association of British Columbia'),
(62370, 51821, 'pl', 'name', 'Podlaska Regionalna Organizacja Turystyczna'),
(62371, 51822, 'en', 'name', 'Essex Cardiothoracic Centre'),
(62372, 51823, 'en', 'name', 'Innovation Center Denmark'),
(62373, 51824, 'en', 'name', 'Thomas B. Fordham Institute'),
(62374, 51825, 'en', 'name', 'National Hispanic Health Foundation'),
(62375, 51826, 'it', 'name', 'Gruppo Italiano per lo Studio dei Carcinomi dell’Apparato Digerente'),
(62376, 51827, 'en', 'name', 'Matthew Larson Foundation'),
(62377, 51828, 'no_lang_code', 'name', 'Gene PreDiT (Portugal)'),
(62378, 51829, 'no_lang_code', 'name', 'Athena Infonomics (India)'),
(62379, 51830, 'en', 'name', 'Donnell-Kay Foundation'),
(62380, 51831, 'en', 'name', 'Foundation for Health Leadership & Innovation'),
(62381, 51832, 'en', 'name', 'Morris Stulsaft Foundation'),
(62382, 51833, 'en', 'name', 'Jewish Community Foundation of Greater Kansas City'),
(62383, 51834, 'no_lang_code', 'name', 'NeuroVive Pharmaceutical (Sweden)'),
(62384, 51835, 'no_lang_code', 'name', 'Celimmune (United States)'),
(62385, 51836, 'en', 'name', 'National Center for Higher Education Management Systems'),
(62386, 51837, 'no_lang_code', 'name', 'Cummins Allison (United States)'),
(62387, 51838, 'en', 'name', 'Culinary Trust'),
(62388, 51839, 'no_lang_code', 'name', 'DonorsTrust'),
(62389, 51840, 'en', 'name', 'Cristo Rey Network'),
(62390, 51841, 'en', 'name', 'Regional Center for Prevention and Control of AIDS and Infectious Diseases'),
(62391, 51841, 'ru', 'name', 'ŠžŠ±Š»Š°ŃŃ‚Š½Š¾Š¹ меГицинский центр по Š±Š¾Ń€ŃŒŠ±Šµ с инфекционными Š·Š°Š±Š¾Š»ŠµŠ²Š°Š½ŠøŃŠ¼Šø'),
(62392, 51842, 'en', 'name', 'Sutter Roseville Medical Center'),
(62393, 51843, 'en', 'name', 'Pinnacle Orthopedics'),
(62394, 51844, 'no_lang_code', 'name', 'Baader Food Processing Machinery (Germany)'),
(62395, 51845, 'no_lang_code', 'name', 'AbCellera (Canada)'),
(62396, 51846, 'en', 'name', 'Center for Land Use Interpretation'),
(62397, 51847, 'en', 'name', 'Global Risk Institute in Financial Services'),
(62398, 51848, 'da', 'name', 'Frimodt-Heineke Fonden'),
(62399, 51849, 'en', 'name', 'Upper Grand Family Health Team'),
(62400, 51850, 'en', 'name', 'Shaoxing Second Hospital'),
(62401, 51850, 'zh', 'name', 'ē»å…“åø‚ē¬¬äŗŒåŒ»é™¢'),
(62402, 51851, 'lv', 'name', 'Balteneko'),
(62403, 51852, 'no_lang_code', 'name', 'Inno-Water (Hungary)'),
(62404, 51853, 'en', 'name', 'Australian Dental Industry Association'),
(62405, 51854, 'no_lang_code', 'name', 'Johnson Controls (Japan)'),
(62406, 51855, 'no_lang_code', 'name', 'Ipsen (Netherlands)'),
(62407, 51856, 'en', 'name', 'Brazilian Society of Tropical Medicine'),
(62408, 51856, 'pt', 'name', 'Sociedade Brasileira de Medicina Tropical'),
(62409, 51857, 'fr', 'name', 'HƓpital de Morges'),
(62410, 51858, 'no_lang_code', 'name', 'Consumer Product Testing Company (United States)'),
(62411, 51859, 'en', 'name', 'Canadian Allergy, Asthma and Immunology Foundation'),
(62412, 51859, 'fr', 'name', 'Fondation Canadienne d''Allergie, d''Asthme et d''Immunologie'),
(62413, 51860, 'en', 'name', 'Clinical Research Associates of Tidewater'),
(62414, 51861, 'en', 'name', 'Neuroendocrine Tumor Research Foundation'),
(62415, 51862, 'en', 'name', 'National Consumer Voice for Quality Long-Term Care'),
(62416, 51863, 'no_lang_code', 'name', 'Biotest (Austria)'),
(62417, 51864, 'en', 'name', 'Bush Foundation'),
(62418, 51865, 'en', 'name', 'Mediroyal Prevention Center'),
(62419, 51865, 'hu', 'name', 'Mediroyal Prevenciós Központ'),
(62420, 51866, 'es', 'name', 'Sociedad Andaluza de Trasplantes de Ɠrganos y Tejidos'),
(62421, 51867, 'en', 'name', 'All Hands Raised'),
(62422, 51868, 'no_lang_code', 'name', 'Sotio (Czechia)'),
(62423, 51869, 'en', 'name', 'Buffalo Bills Foundation'),
(62424, 51870, 'no_lang_code', 'name', 'Topivert (United Kingdom)'),
(62425, 51871, 'no_lang_code', 'name', 'Uponor (Sweden)'),
(62426, 51872, 'no_lang_code', 'name', 'Clinipace (Italy)'),
(62427, 51873, 'en', 'name', 'Boettcher Foundation'),
(62428, 51874, 'en', 'name', 'Alzheimer''s Australia Dementia Research Foundation'),
(62429, 51875, 'en', 'name', 'Landesa Rural Development Institute'),
(62430, 51876, 'en', 'name', 'African Evaluation Association'),
(62431, 51877, 'sv', 'name', 'Alzheimerfonden'),
(62432, 51878, 'no_lang_code', 'name', 'Novartis (Denmark)'),
(62433, 51879, 'en', 'name', 'Jining Traditional Chinese Medicine Hospital'),
(62434, 51879, 'zh', 'name', 'ęµŽå®åø‚äø­åŒ»é™¢'),
(62435, 51880, 'en', 'name', 'American Tinnitus Association'),
(62436, 51881, 'en', 'name', 'Dr. Josef Steiner Cancer Foundation'),
(62437, 51882, 'no_lang_code', 'name', 'Seahorse Scientific Services (United Kingdom)'),
(62438, 51883, 'en', 'name', 'People''s Hospital of Cangzhou'),
(62439, 51883, 'zh', 'name', 'ę²§å·žäŗŗę°‘åŒ»é™¢'),
(62440, 51884, 'en', 'name', 'Heartland Clinical Research'),
(62441, 51885, 'en', 'name', 'HHV-6 Foundation'),
(62442, 51886, 'en', 'name', 'James H. Hall Eye Center'),
(62443, 51887, 'no_lang_code', 'name', 'Gerolsteiner Brunnen (Germany)'),
(62444, 51888, 'no_lang_code', 'name', 'Asahi Glass (Belgium)'),
(62445, 51889, 'no_lang_code', 'name', 'Faure Equipements (France)'),
(62446, 51890, 'no_lang_code', 'name', 'Herantis Pharma (Finland)'),
(62447, 51891, 'fr', 'name', 'Clinique Saint-Joseph'),
(62448, 51892, 'en', 'name', 'Arizona Community Foundation'),
(62449, 51893, 'en', 'name', 'Nordic Lymphoma Group'),
(62450, 51894, 'no_lang_code', 'name', 'Chilton Medical Center'),
(62451, 51895, 'en', 'name', 'Molokai Community Health Center'),
(62452, 51896, 'en', 'name', 'Kaiser Permanente Roseville Medical Center'),
(62453, 51897, 'en', 'name', 'Parenteral Drug Association'),
(62454, 51898, 'no_lang_code', 'name', 'Zytoprotec (Austria)'),
(62455, 51899, 'en', 'name', 'Xingtai People''s Hospital'),
(62456, 51899, 'zh', 'name', 'é‚¢å°åø‚äŗŗę°‘åŒ»é™¢'),
(62457, 51900, 'en', 'name', 'ME Association'),
(62458, 51901, 'no_lang_code', 'name', 'Wanzl (Germany)'),
(62459, 51902, 'en', 'name', 'Bently Foundation'),
(62460, 51903, 'ja', 'name', 'ęˆøē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(62461, 51903, 'no_lang_code', 'name', 'Toda Kogyo (Japan)'),
(62462, 51904, 'en', 'name', 'South Shore Eye Care'),
(62463, 51905, 'no_lang_code', 'name', 'Blue Planet Innovation (Denmark)'),
(62464, 51906, 'en', 'name', 'Calvary Health Care Bethlehem'),
(62465, 51907, 'en', 'name', 'Austrian Centre for Digital Humanities and Cultural Heritage'),
(62466, 51908, 'es', 'name', 'ClĆ­nica Subiza'),
(62467, 51909, 'it', 'name', 'Allegria'),
(62468, 51910, 'de', 'name', 'Mukoviszidose - Bundesverband Cystische Fibrose'),
(62469, 51910, 'en', 'name', 'The Cystic Fibrosis Institute'),
(62470, 51911, 'en', 'name', 'Rowden Medical Partnership'),
(62471, 51912, 'no_lang_code', 'name', 'Roxall (Germany)'),
(62472, 51913, 'en', 'name', 'Seattle International Foundation'),
(62473, 51914, 'en', 'name', 'International Association of Fire Fighters Charitable Foundation'),
(62474, 51915, 'en', 'name', 'Alberta Emerald Foundation'),
(62475, 51916, 'en', 'name', 'Mensa Education and Research Foundation'),
(62476, 51917, 'en', 'name', 'Ferree Foundation'),
(62477, 51918, 'en', 'name', 'Bobath memorial hospital'),
(62478, 51918, 'ko', 'name', 'ė³“ė°”ģŠ¤źø°ė…ė³‘ģ›'),
(62479, 51919, 'en', 'name', 'Henry Ford Allegiance Health'),
(62480, 51920, 'it', 'name', 'Associazione Angela Serra per la Ricerca sul Cancro'),
(62481, 51921, 'en', 'name', 'Japanese Society of Clinical Pharmacology and Therapeutics'),
(62482, 51922, 'en', 'name', 'Maas Clinic'),
(62483, 51923, 'en', 'name', 'Oregon Dermatology & Research Center'),
(62484, 51924, 'en', 'name', 'Prevent Child Abuse America'),
(62485, 51925, 'en', 'name', 'Community Initiatives'),
(62486, 51926, 'en', 'name', 'Japan Foundation for Applied Enzymology'),
(62487, 51926, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ęœ¬åæœē”Øé…µē“ å”ä¼š'),
(62488, 51927, 'en', 'name', 'Heckscher Foundation for Children'),
(62489, 51928, 'no_lang_code', 'name', 'Edumetrics (United States)'),
(62490, 51929, 'en', 'name', 'Medical Park Gaziantep Hospital'),
(62491, 51930, 'en', 'name', 'Francis Family Foundation'),
(62492, 51931, 'no_lang_code', 'name', 'Chaipattana Foundation'),
(62493, 51931, 'th', 'name', 'ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ąøŠąø±ąø¢ąøžąø±ąø’ąø™ąø²'),
(62494, 51932, 'en', 'name', 'Foundation for Promotion of Cancer Research'),
(62495, 51932, 'ja', 'name', 'ćŒć‚“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(62496, 51933, 'no_lang_code', 'name', 'Aspirus'),
(62497, 51934, 'no_lang_code', 'name', 'Kitov Pharmaceuticals (Israel)'),
(62498, 51935, 'en', 'name', 'Syracuse Orthopedic Specialists'),
(62499, 51936, 'ja', 'name', 'äø‰č±é‰›ē­†ę Ŗå¼ä¼šē¤¾'),
(62500, 51936, 'no_lang_code', 'name', 'Mitsubishi Pencil (Japan)'),
(62501, 51937, 'no_lang_code', 'name', 'Xiaomi (China)'),
(62502, 51938, 'bg', 'name', 'Дтолична община'),
(62503, 51938, 'en', 'name', 'Sofia Municipality'),
(62504, 51939, 'no_lang_code', 'name', 'Robugen (Germany)'),
(62505, 51940, 'en', 'name', 'Ardmore Foundation'),
(62506, 51941, 'no_lang_code', 'name', 'Nuvo Pharmaceuticals (Germany)'),
(62507, 51942, 'en', 'name', 'Chongqing Three Gorges Central Hospital'),
(62508, 51942, 'zh', 'name', 'äø‰å³”äø­åæƒåŒ»é™¢'),
(62509, 51943, 'fr', 'name', 'Fondation Acteria'),
(62510, 51944, 'en', 'name', 'Juvenile Bipolar Research Foundation'),
(62511, 51945, 'da', 'name', 'Hudklinikken'),
(62512, 51946, 'en', 'name', 'DermDox Dermatology Centers'),
(62513, 51947, 'bg', 'name', 'ŠžŠ±Ń‰ŠøŠ½Š° ŠšŃŠŃ€Š“Š¶Š°Š»Šø'),
(62514, 51947, 'en', 'name', 'Municipality of Kardzhali'),
(62515, 51948, 'no_lang_code', 'name', 'Khondrion (Netherlands)'),
(62516, 51949, 'en', 'name', 'American Concrete Institute'),
(62517, 51950, 'en', 'name', 'Cogito Foundation'),
(62518, 51951, 'no_lang_code', 'name', 'KƤrcher (Germany)'),
(62519, 51952, 'en', 'name', 'Population Matters'),
(62520, 51953, 'en', 'name', 'Burrell Behavioral Health'),
(62521, 51954, 'no_lang_code', 'name', 'Social Science Research Solutions (United States)'),
(62522, 51955, 'en', 'name', 'Maryland Ornithological Society'),
(62523, 51956, 'en', 'name', 'Mech-Sense'),
(62524, 51957, 'hu', 'name', 'Affektív Pszichológia Tanszék'),
(62525, 51958, 'en', 'name', 'Sundance Institute'),
(62526, 51959, 'en', 'name', 'Childhood Brain Tumor Foundation'),
(62527, 51960, 'en', 'name', 'Synergos Institute'),
(62528, 51961, 'en', 'name', 'Biophics'),
(62529, 51962, 'no_lang_code', 'name', 'Teradyne (United States)'),
(62530, 51963, 'no_lang_code', 'name', 'DS Biopharma (Ireland)'),
(62531, 51964, 'en', 'name', 'North Carolina Pork Council'),
(62532, 51965, 'no_lang_code', 'name', 'Electrolux (United States)'),
(62533, 51966, 'en', 'name', 'Winston Churchill Foundation'),
(62534, 51967, 'en', 'name', 'James H. Cummings Foundation'),
(62535, 51968, 'en', 'name', 'Antara Foundation'),
(62536, 51969, 'ko', 'name', 'ģ”Øģ œģ“ģ œģ¼ģ œė‹¹ ģ£¼ģ‹ķšŒģ‚¬'),
(62537, 51969, 'no_lang_code', 'name', 'CJ CheilJedang (South Korea)'),
(62538, 51970, 'no_lang_code', 'name', 'Iscar (Israel)'),
(62539, 51971, 'it', 'name', 'Azienda Unita'' Sanitaria Locale di Parma'),
(62540, 51972, 'en', 'name', 'Danish Myeloma Study Group'),
(62541, 51973, 'no_lang_code', 'name', 'Weleda (Germany)'),
(62542, 51974, 'da', 'name', 'Naturvidenskabernes Hus'),
(62543, 51975, 'en', 'name', 'Child Health and Development Institute'),
(62544, 51976, 'en', 'name', 'Alternatives Research & Development Foundation'),
(62545, 51977, 'bg', 'name', 'ŠžŠ±Ń‰ŠøŠ½Š° Дозопол'),
(62546, 51977, 'no_lang_code', 'name', 'Sozopol Municipality'),
(62547, 51978, 'no_lang_code', 'name', 'Hellenic Cooperative Oncology Group'),
(62548, 51979, 'en', 'name', 'International Foundation for Ethical Research'),
(62549, 51980, 'fr', 'name', 'Centre Hospitalier privƩ Saint GrƩgoire'),
(62550, 51981, 'no_lang_code', 'name', 'Ernst & Young (United States)'),
(62551, 51982, 'no_lang_code', 'name', 'Teva Pharmaceuticals (France)'),
(62552, 51983, 'en', 'name', 'Grace J. Fippinger Foundation'),
(62553, 51984, 'en', 'name', 'FreedomWorks'),
(62554, 51985, 'en', 'name', 'University of Zimbabwe-University of California San Francisco'),
(62555, 51986, 'en', 'name', 'Centre County Community Foundation'),
(62556, 51987, 'no_lang_code', 'name', 'Pfizer (France)'),
(62557, 51988, 'en', 'name', 'Third People ''s Hospital of Chongqing'),
(62558, 51988, 'zh', 'name', 'é‡åŗ†åø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(62559, 51989, 'en', 'name', 'American Autoimmune Related Diseases Association'),
(62560, 51990, 'en', 'name', 'Orlando Immunology Center'),
(62561, 51991, 'en', 'name', 'Fremont Bank'),
(62562, 51992, 'en', 'name', 'International Interfaith Peace Corps'),
(62563, 51993, 'en', 'name', 'Bamberg County Hospital'),
(62564, 51994, 'en', 'name', 'Aurora Periodontics and Implant Dentistry'),
(62565, 51995, 'no_lang_code', 'name', 'Pliva (Croatia)'),
(62566, 51996, 'en', 'name', 'Rocketship Education'),
(62567, 51997, 'en', 'name', 'Juravinski Cancer Centre'),
(62568, 51998, 'no_lang_code', 'name', 'Cerenis Therapeutics (France)'),
(62569, 51999, 'en', 'name', 'Marin Community Foundation'),
(62570, 52000, 'en', 'name', 'Laura Moore Cunningham Foundation'),
(62571, 52001, 'no_lang_code', 'name', 'Kingmed Diagnostics'),
(62572, 52002, 'en', 'name', 'Phil Hardin Foundation'),
(62573, 52003, 'no_lang_code', 'name', 'CytoTools (Germany)'),
(62574, 52004, 'en', 'name', 'IPEC-Americas'),
(62575, 52005, 'no_lang_code', 'name', 'Open Invention Network (United States)'),
(62576, 52006, 'no_lang_code', 'name', 'Huntsman (United States)'),
(62577, 52007, 'en', 'name', 'ALS Hope Foundation'),
(62578, 52008, 'en', 'name', 'Dew Foundation'),
(62579, 52009, 'no_lang_code', 'name', 'Aso Group (Japan)'),
(62580, 52010, 'en', 'name', 'Cure Brain Cancer Foundation'),
(62581, 52011, 'no_lang_code', 'name', 'Pre-Seed Innovation (Denmark)'),
(62582, 52012, 'en', 'name', 'Koby Mandell Foundation'),
(62583, 52013, 'no_lang_code', 'name', 'Crown Holdings (United Kingdom)'),
(62584, 52014, 'en', 'name', 'Patricia Cronin Foundation'),
(62585, 52015, 'en', 'name', 'Andrea Mennen Family Foundation'),
(62586, 52016, 'en', 'name', 'Blaustein Philanthropic Group'),
(62587, 52017, 'en', 'name', 'St. Luke''s Hospital'),
(62588, 52018, 'en', 'name', 'Los Angeles Rubber Group'),
(62589, 52019, 'en', 'name', 'Health Protection and Research Organisation'),
(62590, 52020, 'no_lang_code', 'name', 'LyondellBasell (Italy)'),
(62591, 52021, 'no_lang_code', 'name', 'Mithra Pharmaceuticals (Belgium)'),
(62592, 52022, 'en', 'name', 'Bonutti Clinic'),
(62593, 52023, 'en', 'name', 'VillageReach'),
(62594, 52024, 'bn', 'name', 'বাংলাদেশ ą¦®ą§Žą¦øą§ą¦Æ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(62595, 52024, 'en', 'name', 'Bangladesh Fisheries Research Institute'),
(62596, 52025, 'no_lang_code', 'name', 'Danaher (Singapore)'),
(62597, 52026, 'ja', 'name', 'JUKIę Ŗå¼ä¼šē¤¾'),
(62598, 52026, 'no_lang_code', 'name', 'Juki (Japan)'),
(62599, 52027, 'no_lang_code', 'name', 'Humanitarian OpenStreetMap Team'),
(62600, 52028, 'en', 'name', 'Carolina Ear, Nose and Throat Clinic'),
(62601, 52029, 'no_lang_code', 'name', 'Universal Electronics (United States)'),
(62602, 52030, 'en', 'name', 'Greater Boston Council on Alcoholism'),
(62603, 52031, 'no_lang_code', 'name', 'Amec Foster Wheeler (United States)'),
(62604, 52032, 'en', 'name', 'Roosevelt Hospital'),
(62605, 52033, 'en', 'name', 'New York Laser and Skin Care'),
(62606, 52034, 'no_lang_code', 'name', 'Ipsen (Germany)'),
(62607, 52035, 'de', 'name', 'Krankenhaus Meran'),
(62608, 52036, 'no_lang_code', 'name', 'AGCO (United States)'),
(62609, 52037, 'it', 'name', 'SocietĆ  Italiana di Cardiologia Interventistica, SocietĆ  Italiana di Cardiologia Invasiva'),
(62610, 52038, 'en', 'name', 'Dermatology Surgery & Laser Center'),
(62611, 52039, 'en', 'name', 'Diabetes & Endocrine Associates'),
(62612, 52040, 'en', 'name', 'Community Foundation for Muskegon County'),
(62613, 52041, 'en', 'name', 'Lester Fund'),
(62614, 52042, 'no_lang_code', 'name', 'Vasopharm (Germany)'),
(62615, 52043, 'en', 'name', 'Koret Foundation'),
(62616, 52044, 'en', 'name', 'Natural Resource Governance Institute'),
(62617, 52045, 'no_lang_code', 'name', 'Rational (Germany)'),
(62618, 52046, 'en', 'name', 'Intermedia Arts'),
(62619, 52047, 'en', 'name', 'College Summit'),
(62620, 52048, 'en', 'name', 'Institute for Advanced Medical Research'),
(62621, 52049, 'en', 'name', 'Rebound Orthopedics and Neurosurgery'),
(62622, 52050, 'en', 'name', 'Century Health'),
(62623, 52051, 'en', 'name', 'Cricket Island Foundation'),
(62624, 52052, 'de', 'name', 'B. Braun Stiftung'),
(62625, 52053, 'en', 'name', 'St. Mary Medical Center'),
(62626, 52054, 'no_lang_code', 'name', 'Blue Earth Diagnostics (United Kingdom)'),
(62627, 52055, 'ja', 'name', 'ćƒ†ć‚£ć‚Øćƒć‚±ćƒ¼'),
(62628, 52055, 'no_lang_code', 'name', 'THK (Japan)'),
(62629, 52056, 'da', 'name', 'Ny Carlsberg Glyptotek'),
(62630, 52057, 'en', 'name', 'Otto Bremer Trust'),
(62631, 52058, 'en', 'name', 'Fund for Transforming Education in Kentucky'),
(62632, 52059, 'es', 'name', 'Instituto Bernabeu'),
(62633, 52060, 'en', 'name', 'Center for Reform of School Systems'),
(62634, 52061, 'en', 'name', 'Shanghai Institutes for International Studies'),
(62635, 52061, 'zh', 'name', 'äøŠęµ·å›½é™…é—®é¢˜ē ”ē©¶é™¢'),
(62636, 52062, 'no_lang_code', 'name', 'EMS (Switzerland)'),
(62637, 52063, 'no_lang_code', 'name', 'JazzDanmark (Denmark)'),
(62638, 52064, 'en', 'name', 'Brian Mercer Charitable Trust'),
(62639, 52065, 'en', 'name', 'Foundation for Personality and Social Psychology'),
(62640, 52066, 'no_lang_code', 'name', 'Servier (United Kingdom)'),
(62641, 52067, 'en', 'name', 'Macular Disease Foundation Australia'),
(62642, 52068, 'no_lang_code', 'name', 'Logistimo (India)'),
(62643, 52069, 'en', 'name', 'Belgian Brain Tumor Support'),
(62644, 52070, 'en', 'name', 'Troy Gastroenterology'),
(62645, 52071, 'en', 'name', 'Cedar Tree Foundation'),
(62646, 52072, 'en', 'name', 'Peripheral Vascular Associates'),
(62647, 52073, 'en', 'name', 'Alliance for Health Reform'),
(62648, 52074, 'no_lang_code', 'name', 'Advanced Biological Laboratories (Luxembourg)'),
(62649, 52075, 'en', 'name', 'Youth Venture'),
(62650, 52076, 'en', 'name', 'The Century Foundation'),
(62651, 52077, 'en', 'name', 'National Summer Learning Association'),
(62652, 52078, 'en', 'name', 'National Cancer Coalition'),
(62653, 52079, 'no_lang_code', 'name', 'Conair (United States)'),
(62654, 52080, 'en', 'name', 'SKS Foundation'),
(62655, 52081, 'no_lang_code', 'name', 'UAVision (Portugal)'),
(62656, 52082, 'no_lang_code', 'name', 'Wieden+Kennedy (United States)'),
(62657, 52083, 'en', 'name', 'Ankang City Central Hospital'),
(62658, 52083, 'zh', 'name', 'å®‰åŗ·åø‚äø­åæƒåŒ»é™¢'),
(62659, 52084, 'en', 'name', 'Taizhou People''s Hospital'),
(62660, 52085, 'en', 'name', 'Japan United States Friendship Commission'),
(62661, 52086, 'en', 'name', 'Gwinnett Dermatology'),
(62662, 52087, 'nl', 'name', 'Streeklab Haarlem'),
(62663, 52088, 'en', 'name', 'YWCA USA'),
(62664, 52089, 'en', 'name', 'Hille Foundation'),
(62665, 52090, 'no_lang_code', 'name', 'Sunonwealth Electric Machine Industry (Taiwan)'),
(62666, 52091, 'no_lang_code', 'name', 'Art Innovation (Netherlands)'),
(62667, 52092, 'en', 'name', 'Actuarial Foundation'),
(62668, 52093, 'en', 'name', 'Getty Foundation'),
(62669, 52094, 'en', 'name', 'International Association of Hydrological Sciences'),
(62670, 52095, 'en', 'name', 'Allan Wilson Centre'),
(62671, 52096, 'en', 'name', 'Fashion Group International'),
(62672, 52097, 'en', 'name', 'Irish Youth Justice Service'),
(62673, 52098, 'no_lang_code', 'name', 'OmniVision Technologies (Germany)'),
(62674, 52099, 'en', 'name', 'American Youth Policy Forum'),
(62675, 52100, 'en', 'name', 'El Camino Urology Medical Group'),
(62676, 52101, 'da', 'name', 'Axel Muusfeldts Fond'),
(62677, 52102, 'en', 'name', 'Central Policy Unit'),
(62678, 52102, 'zh', 'name', '中央政策組'),
(62679, 52103, 'no_lang_code', 'name', 'Auris Medical (United States)'),
(62680, 52104, 'es', 'name', 'Navarra de Infraestructuras Locales'),
(62681, 52105, 'en', 'name', 'First Affiliated Hospital of Guangdong Pharmaceutical University'),
(62682, 52105, 'zh', 'name', 'å¹æäøœčÆå­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(62683, 52106, 'en', 'name', 'Dynamed Clinical Research'),
(62684, 52107, 'no_lang_code', 'name', 'Amgen (United Kingdom)'),
(62685, 52108, 'no_lang_code', 'name', 'Sennheiser (Germany)'),
(62686, 52109, 'en', 'name', 'Atlanta Center for Medical Research'),
(62687, 52110, 'en', 'name', 'McPherson County Community Foundation'),
(62688, 52111, 'no_lang_code', 'name', 'ProSocial (United States)'),
(62689, 52112, 'no_lang_code', 'name', 'VKR Holding (Denmark)'),
(62690, 52113, 'en', 'name', 'Solano County Library'),
(62691, 52114, 'en', 'name', 'Charles Lee Powell Foundation'),
(62692, 52115, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚·ćƒ§ćƒ¼ćƒÆ'),
(62693, 52115, 'no_lang_code', 'name', 'Showa Corporation'),
(62694, 52116, 'en', 'name', 'King County Department of Community and Human Services'),
(62695, 52117, 'en', 'name', 'Breast Center'),
(62696, 52118, 'en', 'name', 'El Centro de la Raza'),
(62697, 52119, 'en', 'name', 'Irene W. and C.B. Pennington Foundation'),
(62698, 52120, 'en', 'name', 'Pittsburgh Ear Associates'),
(62699, 52121, 'en', 'name', 'Courage360'),
(62700, 52122, 'en', 'name', 'Environmental Protection Administration'),
(62701, 52122, 'zh', 'name', 'č”Œę”æé™¢ē’°å¢ƒäæč­·ē½²'),
(62702, 52123, 'en', 'name', '8020 Promotion Foundation'),
(62703, 52123, 'ja', 'name', '8020ęŽØé€²č²”å›£'),
(62704, 52124, 'en', 'name', 'Network for Excellence in Health Innovation'),
(62705, 52125, 'en', 'name', 'Australian Centre for HIV and Hepatitis Virology Research'),
(62706, 52126, 'ja', 'name', 'å¤§é˜Ŗč„æć‚ÆćƒŖćƒ‹ćƒƒ'),
(62707, 52126, 'no_lang_code', 'name', 'Osaka Nishi Clinic'),
(62708, 52127, 'en', 'name', 'Oxford Optronix'),
(62709, 52128, 'en', 'name', 'Rockefeller Archive Center'),
(62710, 52129, 'en', 'name', 'National Academy Foundation'),
(62711, 52130, 'en', 'name', 'Centro Comunitario Juan Diego'),
(62712, 52131, 'no_lang_code', 'name', 'TrĆØves (France)'),
(62713, 52132, 'en', 'name', 'Gerald R. Ford Presidential Foundation'),
(62714, 52133, 'en', 'name', 'Arlington Dermatology'),
(62715, 52134, 'en', 'name', 'Three Rivers Community Foundation'),
(62716, 52135, 'en', 'name', 'State Protected Areas Service'),
(62717, 52135, 'lt', 'name', 'Valstybine Saugomu Teritoriju Tarnyba'),
(62718, 52136, 'en', 'name', 'Blue Mountain Community Foundation'),
(62719, 52137, 'no_lang_code', 'name', 'Novelion (United Kingdom)'),
(62720, 52138, 'no_lang_code', 'name', 'Amphenol (United States)'),
(62721, 52139, 'no_lang_code', 'name', 'Laitram (United States)'),
(62722, 52140, 'en', 'name', 'Oklahoma Heart Hospital'),
(62723, 52141, 'fr', 'name', 'Fondation Nanosciences'),
(62724, 52142, 'en', 'name', 'Juvenile Diabetes Research Foundation'),
(62725, 52143, 'no_lang_code', 'name', 'Roto Frank (Germany)'),
(62726, 52144, 'en', 'name', 'G. Unger Vetlesen Foundation'),
(62727, 52145, 'no_lang_code', 'name', 'Mundipharma (Netherlands)'),
(62728, 52146, 'en', 'name', 'South African Tuberculosis Vaccine Initiative'),
(62729, 52147, 'no_lang_code', 'name', 'CanSino (China)'),
(62730, 52148, 'no_lang_code', 'name', 'Protalix BioTherapeutics (Israel)'),
(62731, 52149, 'en', 'name', 'Diabetes Care & Hormone Clinic'),
(62732, 52150, 'en', 'name', 'Hyams Foundation'),
(62733, 52151, 'en', 'name', 'Academic and Community Cancer Research United'),
(62734, 52152, 'en', 'name', 'British Association for Chinese Studies'),
(62735, 52153, 'en', 'name', 'PRN of Kansas'),
(62736, 52154, 'en', 'name', 'Covenant Foundation'),
(62737, 52155, 'en', 'name', 'Desert Regional Medical Center'),
(62738, 52156, 'en', 'name', 'Northwest Eye Surgeons'),
(62739, 52157, 'en', 'name', 'Cade Museum'),
(62740, 52158, 'de', 'name', 'Klinikum Arnsberg'),
(62741, 52159, 'en', 'name', 'Paul & Carol David Foundation'),
(62742, 52160, 'en', 'name', 'South Texas Blood and Tissue Center'),
(62743, 52161, 'en', 'name', 'New Horizons Foundation'),
(62744, 52162, 'no_lang_code', 'name', 'UniQure (Netherlands)'),
(62745, 52163, 'en', 'name', 'Landscape Architecture Foundation'),
(62746, 52164, 'no_lang_code', 'name', 'Sirenas (United States)'),
(62747, 52165, 'en', 'name', 'Centre for Prevention and Control of AIDS and Infectious Diseases'),
(62748, 52165, 'ru', 'name', 'Центр по профилактике Šø Š±Š¾Ń€ŃŒŠ±Šµ со Š”ŠŸŠ˜Š”Š¾Š¼ Šø инфекционными Š·Š°Š±Š¾Š»ŠµŠ²Š°Š½ŠøŃŠ¼Šø,'),
(62749, 52166, 'no_lang_code', 'name', 'Vyne Therapeutics (United States)'),
(62750, 52167, 'no_lang_code', 'name', 'Umande Trust'),
(62751, 52168, 'en', 'name', 'Texan Eye'),
(62752, 52169, 'no_lang_code', 'name', 'Dolby (Netherlands)'),
(62753, 52170, 'en', 'name', 'Harbage Consulting'),
(62754, 52171, 'en', 'name', 'Claneil Foundation'),
(62755, 52172, 'en', 'name', 'Lowe Syndrome Association'),
(62756, 52173, 'en', 'name', 'Armstrong McDonald Foundation'),
(62757, 52174, 'en', 'name', 'FINRA Investor Education Foundation'),
(62758, 52175, 'en', 'name', 'Texas Oncology'),
(62759, 52176, 'en', 'name', 'Foundation for Child Development'),
(62760, 52177, 'de', 'name', 'Arbeitsgemeinschaft medikamentƶse Tumortherapie'),
(62761, 52178, 'en', 'name', 'Battelle For Kids'),
(62762, 52179, 'en', 'name', 'North Dakota Community Foundation'),
(62763, 52180, 'en', 'name', 'Peninsula Research'),
(62764, 52181, 'da', 'name', 'Videnskabsteatret'),
(62765, 52181, 'en', 'name', 'Science Theatre'),
(62766, 52182, 'en', 'name', 'Diabetes & Endocrinology Specialists'),
(62767, 52183, 'el', 'name', 'Ī™Ī Ī ĪŸĪšĪ”Ī‘Ī¤Ī•Ī™ĪŸ Ī Ī•Ī”Ī™Ī¦Ī•Ī”Ī•Ī™Ī‘ĪšĪŸ Ī“Ī•ĪĪ™ĪšĪŸ ĪĪŸĪ£ĪŸĪšĪŸĪœĪ•Ī™ĪŸ Ī˜Ī•Ī£Ī£Ī‘Ī›ĪŸĪĪ™ĪšĪ—Ī£'),
(62768, 52183, 'no_lang_code', 'name', 'Ippokrateio General Hospital of Thessaloniki'),
(62769, 52184, 'en', 'name', 'Comprehensive Urology'),
(62770, 52185, 'nl', 'name', 'Tandartspraktijk Bocht Oosterdiep'),
(62771, 52186, 'en', 'name', 'Jiangmen Wuyi Traditional Chinese Medicine Hospital'),
(62772, 52186, 'zh', 'name', 'äŗ”é‚‘äø­åŒ»é™¢'),
(62773, 52187, 'en', 'name', 'Sadick Dermatology'),
(62774, 52188, 'en', 'name', 'Berth von Kantzows Foundation'),
(62775, 52188, 'sv', 'name', 'Berth of Kantzows Stiftelse'),
(62776, 52189, 'no_lang_code', 'name', 'Faron Pharmaceutical (Finland)'),
(62777, 52190, 'en', 'name', 'Masonic Foundation of Utah'),
(62778, 52191, 'no_lang_code', 'name', 'Cutest Systems (United Kingdom)'),
(62779, 52192, 'en', 'name', 'Asia New Zealand Foundation'),
(62780, 52193, 'no_lang_code', 'name', 'Archigen Biotech (United Kingdom)'),
(62781, 52194, 'en', 'name', 'LuMind Research Down Syndrome Foundation'),
(62782, 52195, 'it', 'name', 'Fondazione Europea Ricerca Biomedica'),
(62783, 52196, 'en', 'name', 'American Veterinary Medical Foundation'),
(62784, 52197, 'en', 'name', 'Brooks Rehabilitation Clinical Research Center'),
(62785, 52198, 'en', 'name', 'Communities in School'),
(62786, 52199, 'en', 'name', 'Dorothea Haus Ross Foundation'),
(62787, 52200, 'en', 'name', 'National Speech and Debate Association'),
(62788, 52201, 'no_lang_code', 'name', 'Bissell (United States)'),
(62789, 52202, 'en', 'name', 'Michigan Cancer Research Consortium'),
(62790, 52203, 'en', 'name', 'Memphis Urban League'),
(62791, 52204, 'en', 'name', 'Pacific Clinical Research'),
(62792, 52205, 'en', 'name', 'Davis Foundations'),
(62793, 52206, 'en', 'name', 'Coleman Foundation'),
(62794, 52207, 'no_lang_code', 'name', 'Sanofi (Italy)'),
(62795, 52208, 'no_lang_code', 'name', 'Tideline (United States)'),
(62796, 52209, 'en', 'name', 'North East Ambulance Service NHS Foundation Trust'),
(62797, 52210, 'en', 'name', 'Clallam County YMCA'),
(62798, 52211, 'en', 'name', 'Garden Club of Honolulu'),
(62799, 52212, 'no_lang_code', 'name', 'Ribbon Communications (United States)'),
(62800, 52213, 'en', 'name', 'Nitsch Foundation'),
(62801, 52214, 'en', 'name', 'Digital Learning Department'),
(62802, 52215, 'no_lang_code', 'name', 'Owens Corning (United States)'),
(62803, 52216, 'en', 'name', 'Frontiers Foundation'),
(62804, 52217, 'no_lang_code', 'name', 'CoLucid Pharmaceuticals (United States)'),
(62805, 52218, 'en', 'name', 'Minnesota Gastroenterology'),
(62806, 52219, 'en', 'name', 'National Foundation for Infectious Diseases'),
(62807, 52220, 'en', 'name', 'Meghan Rose Bradley Foundation'),
(62808, 52221, 'no_lang_code', 'name', 'GlaxoSmithKline (Poland)'),
(62809, 52222, 'no_lang_code', 'name', 'LukƔcs Ʃs TƔrsa (Hungary)'),
(62810, 52223, 'no_lang_code', 'name', 'Wetlands Work (Cambodia)'),
(62811, 52224, 'en', 'name', 'Noah Worcester Dermatological Society'),
(62812, 52225, 'en', 'name', 'Asan Institute for Policy Studies'),
(62813, 52225, 'ko', 'name', '아산정책연구원'),
(62814, 52226, 'en', 'name', 'Jawaharlal Nehru Memorial Fund'),
(62815, 52227, 'en', 'name', 'Maine Research Associates'),
(62816, 52228, 'no_lang_code', 'name', 'Innolytics (United States)'),
(62817, 52229, 'en', 'name', 'Allard Foundation'),
(62818, 52230, 'it', 'name', 'Gruppo Oncologico del Nord Ovest'),
(62819, 52231, 'en', 'name', 'Coborn Cancer Center'),
(62820, 52232, 'en', 'name', 'Pudong Medical Center'),
(62821, 52232, 'zh', 'name', 'äøŠęµ·åø‚ęµ¦äøœåŒ»é™¢'),
(62822, 52233, 'en', 'name', 'IVI Murcia Clinic'),
(62823, 52234, 'en', 'name', 'Asheville Cardiology Associates'),
(62824, 52235, 'no_lang_code', 'name', 'Electrolux (Belgium)'),
(62825, 52236, 'en', 'name', 'Margaret S. Mahler Child Development Foundation'),
(62826, 52237, 'en', 'name', 'Institute for American Values'),
(62827, 52238, 'en', 'name', 'Hillcrest Clinical Research'),
(62828, 52239, 'de', 'name', 'Nephrologisches Zentrum Goettingen'),
(62829, 52240, 'en', 'name', 'McCord Hospital'),
(62830, 52241, 'en', 'name', 'Gallipoli Medical Research Foundation'),
(62831, 52242, 'fr', 'name', 'Fondation Bettencourt Schueller'),
(62832, 52243, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æć‚«ćƒ©ćƒˆćƒŸćƒ¼'),
(62833, 52243, 'no_lang_code', 'name', 'Tomy (Japan)'),
(62834, 52244, 'en', 'name', 'Honjo International Scholarship Foundation'),
(62835, 52245, 'en', 'name', 'Buffalo Spine Surgery'),
(62836, 52246, 'en', 'name', 'Dimmer Family Foundation'),
(62837, 52247, 'en', 'name', 'Benign Essential Blepharospasm Research Foundation'),
(62838, 52248, 'it', 'name', 'Azienda Ospedaliera Universitaria UniversitĆ  degli Studi della Campania Luigi Vanvitelli'),
(62839, 52249, 'no_lang_code', 'name', 'Air Liquide (United Kingdom)'),
(62840, 52250, 'en', 'name', 'Japan Society of Ultrasonics in Medicine'),
(62841, 52250, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č¶…éŸ³ę³¢åŒ»å­¦ä¼š'),
(62842, 52251, 'en', 'name', 'Peters Medical Research'),
(62843, 52252, 'fr', 'name', 'Centre Hospitalier de Cornouaille'),
(62844, 52253, 'en', 'name', 'Center for Assessment'),
(62845, 52254, 'en', 'name', 'Multiple Sclerosis Center Of Northeastern New York'),
(62846, 52255, 'en', 'name', 'Council for Economic Education'),
(62847, 52256, 'nl', 'name', 'Waterlandziekenhuis'),
(62848, 52257, 'en', 'name', 'George Gund Foundation'),
(62849, 52258, 'aa', 'name', 'å”˜ę²½åŒŗå¦‡å¹¼äæå„é™¢'),
(62850, 52258, 'en', 'name', 'Tianjin Tanggu Women and Child Health'),
(62851, 52259, 'no_lang_code', 'name', 'Lampang Hospital'),
(62852, 52260, 'en', 'name', 'Character'),
(62853, 52261, 'en', 'name', 'Tanzania Women Research Foundation'),
(62854, 52262, 'en', 'name', 'Ute Mountain Ute Tribe''s Environmental Programs Department'),
(62855, 52263, 'en', 'name', 'Comprehensive Eye Care'),
(62856, 52264, 'en', 'name', 'Bailit Health'),
(62857, 52265, 'aa', 'name', 'Complexul Naţional Muzeal "ASTRA"'),
(62858, 52265, 'en', 'name', 'ASTRA National Museum Complex'),
(62859, 52266, 'no_lang_code', 'name', 'Free to Choose Network (United States)'),
(62860, 52267, 'en', 'name', 'Bradshaw Knight Foundation'),
(62861, 52268, 'en', 'name', 'Christopher Reynolds Foundation'),
(62862, 52269, 'no_lang_code', 'name', 'CureVac (Germany)'),
(62863, 52270, 'en', 'name', 'Highmark Blue Cross Blue Shield'),
(62864, 52271, 'de', 'name', 'Stadtkrankenhaus Schwabach'),
(62865, 52272, 'fr', 'name', 'FƩdƩration Francophone de CancƩrologie Digestive'),
(62866, 52273, 'en', 'name', 'Battery Park'),
(62867, 52274, 'fr', 'name', 'Fondation Centaure'),
(62868, 52275, 'it', 'name', 'SocietĆ  Italiana di Nefrologia'),
(62869, 52276, 'en', 'name', 'Respiratory Clinical Trials'),
(62870, 52277, 'en', 'name', 'Oxford Policy Management'),
(62871, 52278, 'fr', 'name', 'Association du Syndrome de Lowe'),
(62872, 52279, 'da', 'name', 'Institut for Menneskerettigheder'),
(62873, 52279, 'en', 'name', 'Danish Institute for Human Rights'),
(62874, 52280, 'en', 'name', 'COPD Foundation'),
(62875, 52281, 'en', 'name', 'Kobayashi Foundation for Cancer Research'),
(62876, 52281, 'ja', 'name', 'å°ęž—ćŒć‚“ē ”ē©¶č²”å›£'),
(62877, 52282, 'en', 'name', 'Progressive Policy Institute'),
(62878, 52283, 'en', 'name', 'Health Intervention and Technology Assessment Program'),
(62879, 52283, 'th', 'name', 'ą¹‚ąø„ąø£ąø‡ąøąø²ąø£ąø›ąø£ąø°ą¹€ąø”ąø“ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹ąø„ąø°ąø™ą¹‚ąø¢ąøšąø²ąø¢ąø”ą¹‰ąø²ąø™ąøŖąøøąø‚ąø ąø²ąøž'),
(62880, 52284, 'en', 'name', 'Cardiovascular Institute of Philadelphia'),
(62881, 52285, 'no_lang_code', 'name', 'AcelRx Pharmaceuticals (United States)'),
(62882, 52286, 'da', 'name', 'Arktisk Institut'),
(62883, 52286, 'en', 'name', 'Danish Arctic Institute'),
(62884, 52287, 'en', 'name', 'Abnoba (Germany)'),
(62885, 52288, 'en', 'name', 'University Child Development School'),
(62886, 52289, 'en', 'name', 'MedVadis Research'),
(62887, 52290, 'fr', 'name', 'Centre Hospitalier Esquirol de Limoges'),
(62888, 52291, 'en', 'name', 'American Pain Foundation'),
(62889, 52292, 'en', 'name', 'Xintai People''s Hospital'),
(62890, 52292, 'zh', 'name', 'ę–°ę³°åø‚äŗŗę°‘åŒ»é™¢'),
(62891, 52293, 'en', 'name', 'PAHO Foundation'),
(62892, 52294, 'en', 'name', 'Nashville Public Education Foundation'),
(62893, 52295, 'en', 'name', 'Women''s Prison Association'),
(62894, 52296, 'no_lang_code', 'name', 'Kamineni Hospitals'),
(62895, 52297, 'no_lang_code', 'name', 'Tesaro (United States)'),
(62896, 52298, 'no_lang_code', 'name', 'Quadient (France)'),
(62897, 52299, 'en', 'name', 'Middle Country Endocrinology'),
(62898, 52300, 'en', 'name', 'Character Scotland'),
(62899, 52301, 'en', 'name', 'Connecticut Community Foundation'),
(62900, 52302, 'no_lang_code', 'name', 'PannonPharma (Hungary)'),
(62901, 52303, 'no_lang_code', 'name', 'Apodemus (Sweden)'),
(62902, 52304, 'en', 'name', 'Chemotherapy Foundation'),
(62903, 52305, 'no_lang_code', 'name', 'Autoliv (United States)'),
(62904, 52306, 'en', 'name', 'Worcester Public Schools'),
(62905, 52307, 'en', 'name', 'Federation of Infectious Diseases Societies of Southern Africa'),
(62906, 52308, 'en', 'name', 'Lincoln County Health Department'),
(62907, 52309, 'en', 'name', 'Westbourne Centre'),
(62908, 52310, 'en', 'name', 'Associated Eyecare'),
(62909, 52311, 'en', 'name', 'South African Institute for Distance Education'),
(62910, 52312, 'no_lang_code', 'name', 'Strathspey Crown (United States)'),
(62911, 52313, 'de', 'name', 'Berufsverband Niedergelassener GynƤkologischer Onkologen'),
(62912, 52314, 'en', 'name', 'Circulation Foundation'),
(62913, 52315, 'en', 'name', 'Glens Falls Foundation'),
(62914, 52316, 'it', 'name', 'Fondazione per la Ricerca sulla Fibrosi Cistica'),
(62915, 52317, 'no_lang_code', 'name', 'Taiwan Semiconductor Manufacturing Company (United States)'),
(62916, 52318, 'en', 'name', 'Nebraska Press Association'),
(62917, 52319, 'no_lang_code', 'name', 'Galena Biopharma (United States)'),
(62918, 52320, 'no_lang_code', 'name', 'ReadCoor (United States)'),
(62919, 52321, 'en', 'name', 'Chromosome 18 Registry & Research Society'),
(62920, 52322, 'en', 'name', 'Mellam Family Foundation'),
(62921, 52323, 'fr', 'name', 'Centre Jean Bernard'),
(62922, 52324, 'no_lang_code', 'name', 'Mucos Pharma (Germany)'),
(62923, 52325, 'en', 'name', 'Landscape Alberta Nursery Trades Association'),
(62924, 52326, 'en', 'name', 'Hesperian Health Guides'),
(62925, 52327, 'en', 'name', 'Arizona Cotton Growers Association'),
(62926, 52328, 'en', 'name', 'American Academy of Otolaryngic Allergy'),
(62927, 52329, 'de', 'name', 'Hamburgische Wissenschaftliche Stiftung'),
(62928, 52330, 'no_lang_code', 'name', 'Bonus'),
(62929, 52331, 'en', 'name', 'Victoria Park'),
(62930, 52332, 'no_lang_code', 'name', 'Julius Blum (Austria)'),
(62931, 52333, 'en', 'name', 'Texas Association of Community Colleges'),
(62932, 52334, 'en', 'name', 'Pacific Coast Imaging'),
(62933, 52335, 'en', 'name', 'Washington Area Women’s Foundation'),
(62934, 52336, 'ja', 'name', 'ćƒ¦ćƒ‹ćƒć‚«ę Ŗå¼ä¼šē¤¾'),
(62935, 52336, 'no_lang_code', 'name', 'Unitika (Japan)'),
(62936, 52337, 'no_lang_code', 'name', 'GenSight Biologics (France)'),
(62937, 52338, 'no_lang_code', 'name', 'Hisamitsu Pharmaceutical (United States)'),
(62938, 52339, 'en', 'name', 'Canadian Anesthesia Research Foundation'),
(62939, 52340, 'no_lang_code', 'name', 'Weidmüller (Germany)'),
(62940, 52341, 'de', 'name', 'Solothurner SpitƤler'),
(62941, 52342, 'no_lang_code', 'name', 'Peptcell (United Kingdom)'),
(62942, 52343, 'en', 'name', 'Drug Trials America'),
(62943, 52344, 'en', 'name', 'California Cherry Board'),
(62944, 52345, 'de', 'name', 'Dietmar Hopp Stiftung'),
(62945, 52346, 'en', 'name', 'Cancer Foundation of India'),
(62946, 52347, 'en', 'name', 'Summit Institute'),
(62947, 52348, 'no_lang_code', 'name', 'Atomo Diagnostics'),
(62948, 52349, 'no_lang_code', 'name', 'TiVo (United States)'),
(62949, 52350, 'en', 'name', 'AIM at Melanoma Foundation'),
(62950, 52351, 'en', 'name', 'DMA Health Strategies'),
(62951, 52352, 'en', 'name', 'Excel Diagnostics Imaging'),
(62952, 52353, 'en', 'name', 'Future Search Trials'),
(62953, 52354, 'en', 'name', 'Maternal and Child Health Hospital of Sichuan Province'),
(62954, 52354, 'zh', 'name', 'å››å·ēœå¦‡å¹¼äæå„é™¢'),
(62955, 52355, 'no_lang_code', 'name', 'Plastipak Holdings (United States)'),
(62956, 52356, 'no_lang_code', 'name', 'PellePharm (United States)'),
(62957, 52357, 'no_lang_code', 'name', 'Synexus (United States)'),
(62958, 52358, 'en', 'name', 'National College Access Network'),
(62959, 52359, 'en', 'name', 'Foundation for Advancement in Cancer Therapy'),
(62960, 52360, 'en', 'name', 'ITP Foundation'),
(62961, 52361, 'en', 'name', 'American Psychiatric Association Publishing'),
(62962, 52362, 'en', 'name', 'Dr. Robert C. and Veronica Atkins Foundation'),
(62963, 52363, 'en', 'name', 'Rivergate Dermatology Clinical Research Center'),
(62964, 52364, 'en', 'name', 'Downtown Women''s Health Care'),
(62965, 52365, 'en', 'name', 'Pro Carpathia'),
(62966, 52366, 'no_lang_code', 'name', 'NLT Technologies (Japan)'),
(62967, 52367, 'en', 'name', 'Editorial Projects in Education'),
(62968, 52368, 'it', 'name', 'Fondazione Alazio'),
(62969, 52369, 'en', 'name', 'Manhattan Medical Research'),
(62970, 52370, 'ja', 'name', 'ę—„ęœ¬é›»ę°—ē”å­ę Ŗå¼ä¼šē¤¾'),
(62971, 52370, 'no_lang_code', 'name', 'Nippon Electric Glass (Japan)'),
(62972, 52371, 'en', 'name', 'Central Florida Eye Institute'),
(62973, 52372, 'en', 'name', 'Harrison County Community Foundation'),
(62974, 52373, 'no_lang_code', 'name', 'MIB (Germany)'),
(62975, 52374, 'en', 'name', 'Parish Dermatology'),
(62976, 52375, 'de', 'name', 'Asklepios Fachkliniken München-Gauting'),
(62977, 52376, 'en', 'name', 'Valdosta Psychiatric Associates'),
(62978, 52377, 'en', 'name', 'Princeton Survey Research Associates International'),
(62979, 52378, 'ja', 'name', 'äø­å›½é›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(62980, 52378, 'no_lang_code', 'name', 'Chugoku Electric Power (Japan)'),
(62981, 52379, 'en', 'name', 'Dr. John T. Macdonald Foundation'),
(62982, 52380, 'en', 'name', 'Public Agenda'),
(62983, 52381, 'no_lang_code', 'name', 'Primetals Technologies (Austria)'),
(62984, 52382, 'en', 'name', 'Emily Davie and Joseph S. Kornfeld Foundation'),
(62985, 52383, 'no_lang_code', 'name', 'Eli Lilly (Netherlands)'),
(62986, 52384, 'en', 'name', 'Beaver Medical Group'),
(62987, 52385, 'en', 'name', 'American Association of Nurse Assessment Coordination'),
(62988, 52386, 'it', 'name', 'Associazione Italiana per lo Studio del Fegato'),
(62989, 52387, 'en', 'name', 'Metro-Minnesota Community Oncology Research Consortium'),
(62990, 52388, 'en', 'name', 'Women’s Health Care'),
(62991, 52389, 'en', 'name', 'American Society of Composers, Authors and Publishers'),
(62992, 52390, 'en', 'name', 'Sioux Falls VA Health Care System'),
(62993, 52391, 'en', 'name', 'Adhesive and Sealant Council'),
(62994, 52392, 'en', 'name', 'Southern California Desert Retina Consultants'),
(62995, 52393, 'no_lang_code', 'name', 'Flamel (Ireland)'),
(62996, 52394, 'no_lang_code', 'name', 'Bucher Emhart Glass (United States)'),
(62997, 52395, 'no_lang_code', 'name', 'Molins (United Kingdom)'),
(62998, 52396, 'en', 'name', 'Council of the Great City Schools'),
(62999, 52397, 'da', 'name', 'Psykiatrien i Region Syddanmark'),
(63000, 52398, 'no_lang_code', 'name', 'Sopharma (Bulgaria)'),
(63001, 52399, 'pt', 'name', 'Santa Casa de Votuporanga'),
(63002, 52400, 'no_lang_code', 'name', 'Mortensen Film (Denmark)'),
(63003, 52401, 'da', 'name', 'Albani Fonden'),
(63004, 52401, 'en', 'name', 'Albani Foundation'),
(63005, 52402, 'en', 'name', 'Community Foundation of Will County'),
(63006, 52403, 'en', 'name', 'Fred L Emerson Foundation'),
(63007, 52404, 'no_lang_code', 'name', 'King-Maceyko Dermatology Associates'),
(63008, 52405, 'en', 'name', 'National Center on Time & Learning'),
(63009, 52406, 'sv', 'name', 'Norrbacka Eugeniastiftelsen'),
(63010, 52407, 'en', 'name', 'Charter School Growth Fund'),
(63011, 52408, 'en', 'name', 'Danny Fund'),
(63012, 52409, 'en', 'name', 'New England Organ Bank'),
(63013, 52410, 'en', 'name', 'National Press Foundation'),
(63014, 52411, 'en', 'name', 'Orthopaedic Innovation Centre'),
(63015, 52412, 'en', 'name', 'Compton Foundation'),
(63016, 52413, 'en', 'name', 'Massachusetts Health Data Consortium'),
(63017, 52414, 'en', 'name', 'Uganda Chartered Health Net'),
(63018, 52415, 'no_lang_code', 'name', 'Rütgers (Germany)'),
(63019, 52416, 'en', 'name', 'Child Cancer Foundation'),
(63020, 52417, 'no_lang_code', 'name', 'Sanofi (Belgium)'),
(63021, 52418, 'en', 'name', 'University of Iowa Health Alliance'),
(63022, 52419, 'en', 'name', 'Schoolzilla'),
(63023, 52420, 'en', 'name', 'Achieving the Dream'),
(63024, 52421, 'en', 'name', 'GSA Research'),
(63025, 52422, 'no_lang_code', 'name', 'Leo Pharma (France)'),
(63026, 52423, 'en', 'name', 'Charlottesville Medical Research'),
(63027, 52424, 'en', 'name', 'East Wellington Family Health Team'),
(63028, 52425, 'en', 'name', 'Oregon Center for Clinical Investigation'),
(63029, 52426, 'en', 'name', 'Kinetic Foundation'),
(63030, 52427, 'en', 'name', 'Academic Dermatology Associates'),
(63031, 52428, 'no_lang_code', 'name', 'Assa Abloy (Sweden)'),
(63032, 52429, 'de', 'name', 'Institut für die Erforschung der Habsburgermonarchie und des Balkanraumes'),
(63033, 52429, 'en', 'name', 'Institute for Habsburg and Balkan Studies'),
(63034, 52430, 'no_lang_code', 'name', 'MUC Research (Germany)'),
(63035, 52431, 'fr', 'name', 'Intergroupe Francophone du MyƩlome'),
(63036, 52432, 'en', 'name', 'Child Development Associate'),
(63037, 52433, 'no_lang_code', 'name', '21st Century Oncology (United States)'),
(63038, 52434, 'es', 'name', 'Centro Oftalmológico Moreiras'),
(63039, 52435, 'no_lang_code', 'name', 'Pascoe (Germany)'),
(63040, 52436, 'no_lang_code', 'name', 'Novadip (Belgium)'),
(63041, 52437, 'en', 'name', 'Neami National'),
(63042, 52438, 'en', 'name', 'Shasta County Office of Education'),
(63043, 52439, 'no_lang_code', 'name', 'Usui (Japan)'),
(63044, 52440, 'no_lang_code', 'name', 'ApniCure (United States)'),
(63045, 52441, 'en', 'name', 'Abell Foundation'),
(63046, 52442, 'pt', 'name', 'Instituo CUF Porto');
INSERT INTO `ror_settings` VALUES
(63047, 52443, 'en', 'name', 'Tokeidai Memorial Hospital'),
(63048, 52444, 'en', 'name', 'Community Foundation of Jackson Hole'),
(63049, 52445, 'en', 'name', 'Hubei Zhongshan Hospital'),
(63050, 52445, 'zh', 'name', 'ę¹–åŒ—ēœäø­å±±åŒ»é™¢'),
(63051, 52446, 'no_lang_code', 'name', 'Extendicare (Canada)'),
(63052, 52447, 'de', 'name', 'Heidehof Stiftung, Stiftung für Bildung und Behindertenförderung'),
(63053, 52448, 'en', 'name', 'Keep A Breast Foundation'),
(63054, 52449, 'en', 'name', 'National Indian Education Association'),
(63055, 52450, 'en', 'name', 'International Society for Quality in Health Care'),
(63056, 52451, 'en', 'name', 'Legler Benbough Foundation'),
(63057, 52452, 'en', 'name', 'Red Hook Public Library'),
(63058, 52453, 'en', 'name', 'British Association of Endocrine and Thyroid Surgeons'),
(63059, 52454, 'ro', 'name', 'Spitalul Clinic Judetean de Urgenta Târgu Mureş'),
(63060, 52455, 'no_lang_code', 'name', 'Sirtex (Germany)'),
(63061, 52456, 'fr', 'name', 'Institut Louis Bachelier'),
(63062, 52457, 'no_lang_code', 'name', 'Chicago Cornea Consultants (United States)'),
(63063, 52458, 'en', 'name', 'Colorado Children''s Campaign'),
(63064, 52459, 'fr', 'name', 'Centre Hospitalier du Rouvray'),
(63065, 52460, 'en', 'name', 'John Wayne Cancer Foundation'),
(63066, 52461, 'en', 'name', 'Alliance for Aging Research'),
(63067, 52462, 'no_lang_code', 'name', 'Sidel (France)'),
(63068, 52463, 'pt', 'name', 'Hospital Central da PolĆ­cia Militar'),
(63069, 52464, 'en', 'name', 'Hyogo Prefecture Health Foundation'),
(63070, 52464, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å…µåŗ«ēœŒå„åŗ·č²”å›£'),
(63071, 52465, 'en', 'name', 'Agriculture, Forestry and Fisheries Research Council'),
(63072, 52465, 'ja', 'name', 'č¾²ęž—ę°“ē”£ęŠ€č”“ä¼šč­°'),
(63073, 52466, 'de', 'name', 'Institut für Vergleichende Medien und Kommunikationsforschung'),
(63074, 52466, 'en', 'name', 'Institute for Comparative Media and Communication Studies'),
(63075, 52467, 'en', 'name', 'Chiesi Foundation'),
(63076, 52468, 'no_lang_code', 'name', 'Starkey Hearing Technologies (United States)'),
(63077, 52469, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за гората'),
(63078, 52469, 'en', 'name', 'Forest Research Institute'),
(63079, 52470, 'no_lang_code', 'name', 'Philips (Sweden)'),
(63080, 52471, 'en', 'name', 'British Small Animal Veterinary Association'),
(63081, 52472, 'en', 'name', 'Small Business Majority'),
(63082, 52473, 'no_lang_code', 'name', 'Hospital e Maternidade Celso Pierro'),
(63083, 52474, 'nl', 'name', 'Instituut Verbeeten'),
(63084, 52475, 'en', 'name', 'Association for Iron & Steel Technology'),
(63085, 52476, 'no_lang_code', 'name', 'Sierra BioMedical (United States)'),
(63086, 52477, 'en', 'name', 'Fons Vitae'),
(63087, 52478, 'en', 'name', 'Pasadena Child Health Foundation'),
(63088, 52479, 'en', 'name', 'Asian Americans Advancing Justice'),
(63089, 52480, 'en', 'name', 'New York Foundation'),
(63090, 52481, 'no_lang_code', 'name', 'ALK-Abelló (Germany)'),
(63091, 52482, 'no_lang_code', 'name', 'Burton D. Morgan Foundation'),
(63092, 52483, 'da', 'name', 'Gangstedfonden'),
(63093, 52484, 'en', 'name', 'Denver Public Schools'),
(63094, 52485, 'fr', 'name', 'Fondation Medic'),
(63095, 52486, 'en', 'name', 'Washington State Grange'),
(63096, 52487, 'es', 'name', 'Fundació ACE'),
(63097, 52488, 'en', 'name', 'Premiere Research Institute'),
(63098, 52489, 'no_lang_code', 'name', 'Access Energy (United Kingdom)'),
(63099, 52490, 'en', 'name', 'Leo S. Guthman Fund'),
(63100, 52491, 'no_lang_code', 'name', 'Taiho Oncology (United States)'),
(63101, 52492, 'en', 'name', 'Riverhills Healthcare'),
(63102, 52493, 'en', 'name', 'Anna Needs Neuroblastoma Answers'),
(63103, 52494, 'no_lang_code', 'name', 'Daewoo Electronics (South Korea)'),
(63104, 52495, 'pt', 'name', 'Instituto de Cardiologia de Santa Catarina'),
(63105, 52496, 'no_lang_code', 'name', 'Strekin (Switzerland)'),
(63106, 52497, 'en', 'name', 'Nordic Culture Fund'),
(63107, 52498, 'en', 'name', 'Southern Area Library'),
(63108, 52499, 'en', 'name', 'Electri International'),
(63109, 52500, 'en', 'name', 'Price Vision Group'),
(63110, 52501, 'en', 'name', 'Pine River Public Library District'),
(63111, 52502, 'no_lang_code', 'name', 'Sonoco (United States)'),
(63112, 52503, 'en', 'name', 'Association of Clinicians for the Underserved'),
(63113, 52504, 'en', 'name', 'Oklahoma Health Care Authority'),
(63114, 52505, 'en', 'name', 'Cradle of Liberty Council Boy Scouts of America'),
(63115, 52506, 'en', 'name', 'Common Sense Media'),
(63116, 52507, 'en', 'name', 'Beacon Clinical Research'),
(63117, 52508, 'no_lang_code', 'name', 'Capnova (Denmark)'),
(63118, 52509, 'en', 'name', 'Buena Vista Eye Care'),
(63119, 52510, 'no_lang_code', 'name', 'Allergan (Finland)'),
(63120, 52511, 'en', 'name', 'City Clinical Hospital'),
(63121, 52511, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 57'),
(63122, 52512, 'en', 'name', 'Kellner Family Foundation'),
(63123, 52513, 'en', 'name', 'Swedish Parkinson’s Disease Association'),
(63124, 52514, 'en', 'name', 'Ninth Hospital of Nanchang'),
(63125, 52514, 'zh', 'name', 'å—ę˜Œåø‚ē¬¬ä¹åŒ»é™¢å®˜ę–¹ē½‘ē«™'),
(63126, 52515, 'no_lang_code', 'name', 'Licentia IT (Germany)'),
(63127, 52516, 'en', 'name', 'CSY China-International Hepatitis Research Foundation'),
(63128, 52517, 'en', 'name', 'Multiple Sclerosis Center of Atlanta'),
(63129, 52518, 'no_lang_code', 'name', 'Reckitt Benckiser (United States)'),
(63130, 52519, 'en', 'name', 'See Forever Foundation'),
(63131, 52520, 'no_lang_code', 'name', 'Absa Bank (South Africa)'),
(63132, 52521, 'en', 'name', 'Beneficial Bank'),
(63133, 52522, 'no_lang_code', 'name', 'SmartPractice (United States)'),
(63134, 52523, 'de', 'name', 'Deutsche Dystonie Gesellschaft'),
(63135, 52524, 'en', 'name', 'Kindering'),
(63136, 52525, 'es', 'name', 'Clinica Chicamocha'),
(63137, 52526, 'en', 'name', 'Skin Surgery Medical Group'),
(63138, 52527, 'no_lang_code', 'name', 'Laguna Pharmaceuticals (United States)'),
(63139, 52528, 'en', 'name', 'Center for Children & Youth Justice'),
(63140, 52529, 'no_lang_code', 'name', 'Synexus (United Kingdom)'),
(63141, 52530, 'en', 'name', 'Lanzhou Science and Technology Bureau'),
(63142, 52530, 'zh', 'name', 'å…°å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(63143, 52531, 'en', 'name', 'Acorn'),
(63144, 52532, 'no_lang_code', 'name', 'Higashi Takarazuka Satoh Hospital'),
(63145, 52533, 'no_lang_code', 'name', 'Federal Mogul (United States)'),
(63146, 52534, 'en', 'name', 'Nature Healing Nature'),
(63147, 52535, 'en', 'name', 'C. Louis Meyer Family Foundation'),
(63148, 52536, 'no_lang_code', 'name', 'GlaxoSmithKline (Sri Lanka)'),
(63149, 52537, 'no_lang_code', 'name', 'Ran Naor Institute'),
(63150, 52538, 'en', 'name', 'Jewish community Brno'),
(63151, 52539, 'no_lang_code', 'name', 'LFB (United States)'),
(63152, 52540, 'en', 'name', 'Tyton Partners'),
(63153, 52541, 'da', 'name', 'Augustinus Fonden'),
(63154, 52541, 'en', 'name', 'Augustinus Foundation'),
(63155, 52542, 'no_lang_code', 'name', 'Cera Engineering (France)'),
(63156, 52543, 'en', 'name', 'Clinical Trials New Zealand'),
(63157, 52544, 'en', 'name', 'MetroPlus Health Plan'),
(63158, 52545, 'no_lang_code', 'name', 'Liya Kebede Foundation'),
(63159, 52546, 'en', 'name', 'Foellinger Foundation'),
(63160, 52547, 'en', 'name', 'Jerome Foundation'),
(63161, 52548, 'no_lang_code', 'name', 'Mensia (France)'),
(63162, 52549, 'nl', 'name', 'Tolbrug Specialistische Revalidatie'),
(63163, 52550, 'en', 'name', 'Asian American Federation'),
(63164, 52551, 'fr', 'name', 'Interaction UniversitĆ© Ɖconomie'),
(63165, 52552, 'en', 'name', 'Fulbright Canada'),
(63166, 52553, 'no_lang_code', 'name', 'Insmed (United Kingdom)'),
(63167, 52554, 'no_lang_code', 'name', 'Solenne (Netherlands)'),
(63168, 52555, 'en', 'name', 'Bozeman Urgent Care Center'),
(63169, 52556, 'en', 'name', 'Koch Cultural Trust'),
(63170, 52557, 'en', 'name', 'Asia Pacific Foundation of Canada'),
(63171, 52558, 'en', 'name', 'Diagnostics Research Group'),
(63172, 52559, 'no_lang_code', 'name', 'URSAPHARM (Germany)'),
(63173, 52560, 'en', 'name', 'Texas Diabetes Institute'),
(63174, 52561, 'en', 'name', 'Adam Smith Institute'),
(63175, 52562, 'no_lang_code', 'name', 'Synaptics (United States)'),
(63176, 52563, 'en', 'name', 'Global Development Analytics'),
(63177, 52564, 'no_lang_code', 'name', 'MediaTek (Singapore)'),
(63178, 52565, 'en', 'name', 'John F. Kennedy Presidential Library and Museum'),
(63179, 52566, 'fr', 'name', 'Fondation Ernst et Lucie Schmidheiny'),
(63180, 52567, 'no_lang_code', 'name', 'Gebro Pharma (Austria)'),
(63181, 52568, 'en', 'name', 'St. Gregory the Theologian Charity Foundation'),
(63182, 52568, 'ru', 'name', 'Š‘Š»Š°Š³Š¾Ń‚Š²Š¾Ń€ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ фонГ имени ŃŠ²ŃŃ‚ŠøŃ‚ŠµŠ»Ń Š“Ń€ŠøŠ³Š¾Ń€ŠøŃ Богослова'),
(63183, 52569, 'no_lang_code', 'name', 'Boehringer Ingelheim (Belgium)'),
(63184, 52570, 'en', 'name', 'World Council of Credit Unions'),
(63185, 52571, 'no_lang_code', 'name', 'Bruschettini (Italy)'),
(63186, 52572, 'no_lang_code', 'name', 'Menicon (Japan)'),
(63187, 52573, 'de', 'name', 'Friedrich Baur Stiftung'),
(63188, 52574, 'en', 'name', 'Asthma and Respiratory Foundation New Zealand'),
(63189, 52575, 'en', 'name', 'Demos'),
(63190, 52576, 'en', 'name', 'Naples Anesthesia & Physician Associates'),
(63191, 52577, 'en', 'name', 'Hamzavi Dermatology'),
(63192, 52578, 'no_lang_code', 'name', 'Plasser and Theurer (Austria)'),
(63193, 52579, 'fr', 'name', 'Centre Hospitalier Lannion Trestel'),
(63194, 52580, 'en', 'name', 'Anne and Harry Zarrow Foundation'),
(63195, 52581, 'en', 'name', 'Cardiology Associates of Savannah'),
(63196, 52582, 'ja', 'name', 'ć‚¢ćƒ³ćƒŖćƒ„ę Ŗå¼ä¼šē¤¾'),
(63197, 52582, 'no_lang_code', 'name', 'Anritsu (Japan)'),
(63198, 52583, 'cs', 'name', 'ČeskĆ” KřesÅ„anskĆ” Akademie'),
(63199, 52583, 'en', 'name', 'Czech Christian Academy'),
(63200, 52584, 'en', 'name', 'Health Care Foundation of Greater Kansas City'),
(63201, 52585, 'en', 'name', 'Anesthesia Patient Safety Foundation'),
(63202, 52586, 'da', 'name', 'Det Obelske Familiefond'),
(63203, 52586, 'en', 'name', 'Obel Family Foundation'),
(63204, 52587, 'en', 'name', 'Alport Syndrome Foundation'),
(63205, 52588, 'en', 'name', 'Parkes Foundation'),
(63206, 52589, 'en', 'name', 'Colorado Parks and Wildlife'),
(63207, 52590, 'ja', 'name', 'ćƒ›ć‚·ćƒ‡ćƒ³ę Ŗå¼ä¼šē¤¾'),
(63208, 52590, 'no_lang_code', 'name', 'Hosiden (Japan)'),
(63209, 52591, 'en', 'name', 'Austin Community Foundation'),
(63210, 52592, 'no_lang_code', 'name', 'FF Pharma (Netherlands)'),
(63211, 52593, 'en', 'name', 'Brewster Place'),
(63212, 52594, 'en', 'name', 'Technet Foundation'),
(63213, 52595, 'en', 'name', 'Doctors Community Hospital'),
(63214, 52596, 'tr', 'name', 'Gƶzde Hastanesi Malatya'),
(63215, 52597, 'en', 'name', 'Neurology Associates'),
(63216, 52598, 'no_lang_code', 'name', 'Pharmanest (Sweden)'),
(63217, 52599, 'en', 'name', 'International Foundation for Electoral Systems'),
(63218, 52600, 'en', 'name', 'Workshop for Social Innovation'),
(63219, 52600, 'pl', 'name', 'Warsztat Innowacji Społecznych'),
(63220, 52601, 'en', 'name', 'Innovation Center Denmark'),
(63221, 52602, 'en', 'name', 'Buoniconti Fund'),
(63222, 52603, 'en', 'name', 'Leon Levy Foundation'),
(63223, 52604, 'en', 'name', 'Women''s World Banking'),
(63224, 52605, 'no_lang_code', 'name', 'Mesa Biotech (United States)'),
(63225, 52606, 'en', 'name', 'St Andrew’s Hospital'),
(63226, 52607, 'en', 'name', 'Forbes Funds'),
(63227, 52608, 'de', 'name', 'MigrƤne Klinik Kƶnigstein'),
(63228, 52609, 'no_lang_code', 'name', 'Targovax (Finland)'),
(63229, 52610, 'en', 'name', 'Bangalore Diabetes Centre'),
(63230, 52611, 'en', 'name', 'Val Verde County Library'),
(63231, 52612, 'en', 'name', 'New York Lawyers for the Public Interest'),
(63232, 52613, 'no_lang_code', 'name', 'Siesta Group (Austria)'),
(63233, 52614, 'en', 'name', 'Utah Department of Heritage and Arts'),
(63234, 52615, 'no_lang_code', 'name', 'Hunter Douglas (Netherlands)'),
(63235, 52616, 'en', 'name', 'Southeastern Fertility Center'),
(63236, 52617, 'en', 'name', 'Grantmakers In Aging'),
(63237, 52618, 'en', 'name', 'Global Scientific Innovations'),
(63238, 52619, 'no_lang_code', 'name', 'Perpetual (Australia)'),
(63239, 52620, 'no_lang_code', 'name', 'Epic Imaging (United States)'),
(63240, 52621, 'en', 'name', 'Harold Whitworth Pierce Charitable Trust'),
(63241, 52622, 'en', 'name', 'Patron Saints Foundation'),
(63242, 52623, 'en', 'name', 'INMED Partnerships for Children'),
(63243, 52624, 'en', 'name', 'University Bank'),
(63244, 52625, 'en', 'name', 'Collaborative Neuroscience Network'),
(63245, 52626, 'en', 'name', 'Emergency Nurses Association'),
(63246, 52627, 'da', 'name', 'Instituttet for Fremtidsforskning'),
(63247, 52627, 'en', 'name', 'Copenhagen Institute for Futures Studies'),
(63248, 52628, 'no_lang_code', 'name', 'Only For Children Pharmaceuticals (France)'),
(63249, 52629, 'en', 'name', 'Texas Diabetes & Endocrinology'),
(63250, 52630, 'no_lang_code', 'name', 'Just Biotherapeutics (United States)'),
(63251, 52631, 'en', 'name', 'Ashoka'),
(63252, 52632, 'en', 'name', 'New Mexico Hospital Association'),
(63253, 52633, 'en', 'name', 'Cure HHT'),
(63254, 52634, 'en', 'name', 'Childrens Cardiomyopathy Foundation'),
(63255, 52635, 'en', 'name', 'Nova Scotia Cancer Centre'),
(63256, 52636, 'en', 'name', 'Youth Service America'),
(63257, 52637, 'en', 'name', 'National Council on Interpreting in Health Care'),
(63258, 52638, 'en', 'name', 'Johnson Center for Child Health and Development'),
(63259, 52639, 'fr', 'name', 'Fondation Hans Wilsdorf'),
(63260, 52640, 'en', 'name', 'Hellenic Oncology Research Group'),
(63261, 52641, 'en', 'name', 'West Florida Public Libraries'),
(63262, 52642, 'no_lang_code', 'name', 'Omya (Switzerland)'),
(63263, 52643, 'en', 'name', 'Inoue Foundation for Science'),
(63264, 52643, 'ja', 'name', 'äŗ•äøŠē§‘å­¦ęŒÆčˆˆč²”å›£'),
(63265, 52644, 'en', 'name', 'Boston Children''s Health Physicians'),
(63266, 52645, 'en', 'name', 'Cohoes Savings Foundation'),
(63267, 52646, 'de', 'name', 'Krankenhaus Brixen'),
(63268, 52647, 'no_lang_code', 'name', 'Nini Hospital'),
(63269, 52648, 'en', 'name', 'New Classrooms Innovation Partners'),
(63270, 52649, 'en', 'name', 'Critical Review Foundation'),
(63271, 52650, 'no_lang_code', 'name', 'MagnaChip (South Korea)'),
(63272, 52651, 'en', 'name', 'East Morgan County Hospital'),
(63273, 52652, 'el', 'name', 'Θριάσιο ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(63274, 52652, 'no_lang_code', 'name', 'Thriasio General Hospital of Elefsina'),
(63275, 52653, 'en', 'name', 'Molly Towell Perinatal Research Foundation'),
(63276, 52654, 'en', 'name', 'Palouse Discovery Science Center'),
(63277, 52655, 'de', 'name', 'Institut für Orientalische und Europäische Archäologie'),
(63278, 52655, 'en', 'name', 'Institute for Oriental and European Archaeology'),
(63279, 52656, 'it', 'name', 'Humanitas Gavazzeni'),
(63280, 52657, 'en', 'name', 'Children''s Neuroblastoma Cancer Foundation'),
(63281, 52658, 'en', 'name', 'New Mexico State University Grants'),
(63282, 52659, 'no_lang_code', 'name', 'Crolll (Germany)'),
(63283, 52660, 'no_lang_code', 'name', 'Ophthotech (United States)'),
(63284, 52661, 'no_lang_code', 'name', 'Sandberg Development (Sweden)'),
(63285, 52662, 'no_lang_code', 'name', 'CogBooks (United Kingdom)'),
(63286, 52663, 'no_lang_code', 'name', 'Prysmian Group (Netherlands)'),
(63287, 52664, 'en', 'name', 'Global Network of People Living with HIV/AIDS'),
(63288, 52665, 'en', 'name', 'Northeast Medical Research Associates'),
(63289, 52666, 'no_lang_code', 'name', 'BRCR Global (United States)'),
(63290, 52667, 'no_lang_code', 'name', 'Rheacell (Germany)'),
(63291, 52668, 'en', 'name', 'Parkinson''s Association of Ireland'),
(63292, 52669, 'en', 'name', 'Deer Lodge Centre'),
(63293, 52670, 'en', 'name', 'Southwest Seattle Youth & Family Services'),
(63294, 52671, 'en', 'name', 'Dominic Barker Trust'),
(63295, 52672, 'no_lang_code', 'name', 'Dr. Franz Kƶhler Chemie (Germany)'),
(63296, 52673, 'en', 'name', 'Czech Society for Butterfly and Moth Conservation'),
(63297, 52674, 'it', 'name', 'Azienda Sanitaria Locale CN2'),
(63298, 52675, 'no_lang_code', 'name', 'Babes in Arms (Canada)'),
(63299, 52676, 'en', 'name', 'Coffs Harbour City Council'),
(63300, 52677, 'en', 'name', 'European Society of Cataract and Refractive Surgeons'),
(63301, 52678, 'en', 'name', 'Allen Foundation'),
(63302, 52679, 'en', 'name', 'Save the Children'),
(63303, 52680, 'en', 'name', 'Kappa Alpha Theta Foundation'),
(63304, 52681, 'en', 'name', 'Dr. Herbert & Nicole Wertheim Family Foundation'),
(63305, 52682, 'en', 'name', 'Karen Brown Scleroderma Foundation'),
(63306, 52683, 'en', 'name', 'Stuart Oncology Associates'),
(63307, 52684, 'de', 'name', 'RoMed Kliniken'),
(63308, 52685, 'en', 'name', 'Aurora Medical Center'),
(63309, 52686, 'en', 'name', 'E. Rhodes and Leona B. Carpenter Foundation'),
(63310, 52687, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æćƒ‹ć‚æ'),
(63311, 52687, 'no_lang_code', 'name', 'Tanita (Japan)'),
(63312, 52688, 'no_lang_code', 'name', 'Huisman (Netherlands)'),
(63313, 52689, 'en', 'name', 'European Society of Endocrinology'),
(63314, 52690, 'en', 'name', 'Communities United'),
(63315, 52691, 'en', 'name', 'Eye Surgeons of Indiana'),
(63316, 52692, 'es', 'name', 'Alianza EspaƱola de Familias de Von Hippel Lindau'),
(63317, 52693, 'en', 'name', 'Cancer Care South East'),
(63318, 52694, 'no_lang_code', 'name', 'Haberdashers (United Kingdom)'),
(63319, 52695, 'en', 'name', 'Sasaki Associates'),
(63320, 52696, 'en', 'name', 'Johnson Foundation'),
(63321, 52697, 'en', 'name', 'Virginia Research Institute'),
(63322, 52698, 'no_lang_code', 'name', 'Arthur Asirvatham Hospital'),
(63323, 52699, 'no_lang_code', 'name', 'Univar (United Kingdom)'),
(63324, 52700, 'en', 'name', 'Horowitz Foundation for Social Policy'),
(63325, 52701, 'en', 'name', 'Sleep Therapy and Research Center'),
(63326, 52702, 'en', 'name', 'Frances P. Bunnelle Foundation'),
(63327, 52703, 'en', 'name', 'H. L. Snyder Medical Foundation'),
(63328, 52704, 'en', 'name', 'CNS Healthcare'),
(63329, 52705, 'en', 'name', 'Krembil Foundation'),
(63330, 52706, 'en', 'name', 'KNI Southwest Michigan Imaging Center'),
(63331, 52707, 'en', 'name', 'Children''s Oncology Group'),
(63332, 52708, 'en', 'name', 'Hunting Retriever Club'),
(63333, 52709, 'en', 'name', 'Orthopaedic Institute of Henderson'),
(63334, 52710, 'en', 'name', 'CMH Lahore Medical College and Institute of Dentistry'),
(63335, 52711, 'en', 'name', 'Section of Transfusion Medicine Capital Region Blood Bank & Department of Clinical Immunology'),
(63336, 52712, 'en', 'name', 'Carrick Institute'),
(63337, 52713, 'en', 'name', 'Cadillac Area Community Foundation'),
(63338, 52714, 'en', 'name', 'Shearwater Health'),
(63339, 52715, 'en', 'name', 'Uongozi Institute'),
(63340, 52716, 'en', 'name', 'American Academy of Periodontology Foundation'),
(63341, 52717, 'no_lang_code', 'name', 'Bionor (Denmark)'),
(63342, 52718, 'en', 'name', 'Dupar Foundation'),
(63343, 52719, 'en', 'name', 'Allergy Associates of the Palm Beaches'),
(63344, 52720, 'en', 'name', 'FISA Foundation'),
(63345, 52721, 'en', 'name', 'Middle Georgia Regional Library'),
(63346, 52722, 'en', 'name', 'Buckeye Career Center Foundation'),
(63347, 52723, 'en', 'name', 'Hamdard National Foundation'),
(63348, 52724, 'en', 'name', 'OASIS Clinic'),
(63349, 52725, 'no_lang_code', 'name', 'KiloCoach (Austria)'),
(63350, 52726, 'en', 'name', 'Veritas Forum'),
(63351, 52727, 'ja', 'name', 'å‚å¤©č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(63352, 52727, 'no_lang_code', 'name', 'Santen (United Kingdom)'),
(63353, 52728, 'da', 'name', 'Science Museerne'),
(63354, 52728, 'en', 'name', 'Science Museums'),
(63355, 52729, 'ro', 'name', 'Tehimpuls'),
(63356, 52730, 'en', 'name', 'Witter Bynner Foundation for Poetry'),
(63357, 52731, 'en', 'name', 'ASPEA - Portuguese Association for Environmental Education'),
(63358, 52732, 'de', 'name', 'Asklepios Klinik Sankt Augustin'),
(63359, 52733, 'no_lang_code', 'name', 'Microsemi (Canada)'),
(63360, 52734, 'en', 'name', 'Urology Bay of Plenty'),
(63361, 52735, 'en', 'name', 'Florida Fertility Institute'),
(63362, 52736, 'no_lang_code', 'name', 'Roche (Greece)'),
(63363, 52737, 'en', 'name', 'Sluyterman van Loo Foundation'),
(63364, 52737, 'nl', 'name', 'Fonds Sluyterman van Loo'),
(63365, 52738, 'en', 'name', 'PA Research Foundation'),
(63366, 52739, 'no_lang_code', 'name', 'Danaher (Canada)'),
(63367, 52740, 'en', 'name', 'Design without Borders'),
(63368, 52741, 'no_lang_code', 'name', 'Develco Pharma (Switzerland)'),
(63369, 52742, 'no_lang_code', 'name', 'Coxswain Social Investment Plus (Tunisia)'),
(63370, 52743, 'no_lang_code', 'name', 'Eiger Biopharmaceuticals (United States)'),
(63371, 52744, 'de', 'name', 'Generaldirektion der Gesundheit und Lebensmittelsicherheit'),
(63372, 52744, 'en', 'name', 'Directorate-General for Health and Food Safety'),
(63373, 52744, 'fr', 'name', 'Direction GƩnƩrale SantƩ et sƩcuritƩ alimentaire'),
(63374, 52745, 'en', 'name', 'Advanced Dialysis Center'),
(63375, 52746, 'en', 'name', 'International Franchise Association'),
(63376, 52747, 'no_lang_code', 'name', 'Valneva (United States)'),
(63377, 52748, 'no_lang_code', 'name', 'IDEO (United States)'),
(63378, 52749, 'no_lang_code', 'name', 'Well Pharma Medical Research (United States)'),
(63379, 52750, 'pt', 'name', 'Instituto de Medicina AvanƧada'),
(63380, 52751, 'en', 'name', 'Nuhr Medical Center'),
(63381, 52752, 'no_lang_code', 'name', 'Metabolistics (Canada)'),
(63382, 52753, 'en', 'name', 'Jovid Foundation'),
(63383, 52754, 'en', 'name', 'Cianna Medical'),
(63384, 52755, 'en', 'name', 'International Dragonfly Fund'),
(63385, 52756, 'en', 'name', 'Change the Equation'),
(63386, 52757, 'en', 'name', 'Alberta Science and Technology Leadership Foundation'),
(63387, 52758, 'no_lang_code', 'name', 'E.O. Wilson Biodiversity Foundation'),
(63388, 52759, 'en', 'name', 'Epidermolysis Bullosa Medical Research Foundation'),
(63389, 52760, 'en', 'name', 'Henry P Kendall Foundation'),
(63390, 52761, 'no_lang_code', 'name', 'Medice (Germany)'),
(63391, 52762, 'en', 'name', 'Bridgespan Group'),
(63392, 52763, 'en', 'name', 'Relief International'),
(63393, 52764, 'en', 'name', 'Radiology Associates of Albuquerque'),
(63394, 52765, 'en', 'name', 'Boomer Esiason Foundation'),
(63395, 52766, 'nl', 'name', 'Nederlandse Vereniging van Artsen voor Longziekten en Tuberculose'),
(63396, 52767, 'en', 'name', 'Eppley Foundation for Research'),
(63397, 52768, 'en', 'name', 'Innovative Structural Materials Association'),
(63398, 52769, 'en', 'name', 'Bernard van Leer Foundation'),
(63399, 52770, 'en', 'name', 'Berkshire Taconic Community Foundation'),
(63400, 52771, 'en', 'name', 'Indiana Clinical Trials Center'),
(63401, 52772, 'en', 'name', 'California Medical Clinic for Headache'),
(63402, 52773, 'ja', 'name', 'ē”°äø­č²“é‡‘å±žć‚°ćƒ«ćƒ¼ćƒ—'),
(63403, 52773, 'no_lang_code', 'name', 'Tanaka Holdings (Japan)'),
(63404, 52774, 'ja', 'name', 'ć‚³ć‚¹ćƒ¢ēŸ³ę²¹ę Ŗå¼ä¼šē¤¾'),
(63405, 52774, 'no_lang_code', 'name', 'Cosmo Oil (Japan)'),
(63406, 52775, 'en', 'name', 'ASAE Foundation'),
(63407, 52776, 'en', 'name', 'RML Specialty Hospital'),
(63408, 52777, 'no_lang_code', 'name', 'Resverlogix (Canada)'),
(63409, 52778, 'en', 'name', 'International Association for Counterterrorism and Security Professionals'),
(63410, 52779, 'en', 'name', 'Association of Migraine Disorders'),
(63411, 52780, 'en', 'name', 'Bateman Horne Center'),
(63412, 52781, 'en', 'name', 'Kidneeds'),
(63413, 52782, 'en', 'name', 'Dalian Maternal and Child Health Hospital'),
(63414, 52782, 'zh', 'name', 'å¤§čæžåø‚å¦‡äŗ§åŒ»é™¢'),
(63415, 52783, 'en', 'name', 'United Way of Benton and Franklin Counties'),
(63416, 52784, 'en', 'name', 'Hairy Cell Leukemia Foundation'),
(63417, 52785, 'en', 'name', 'Communities in Schools of Renton'),
(63418, 52786, 'no_lang_code', 'name', 'Sivantos (Singapore)'),
(63419, 52787, 'en', 'name', 'Gift of the Givers Foundation'),
(63420, 52788, 'en', 'name', 'Joint Center for Political and Economic Studies'),
(63421, 52789, 'en', 'name', 'Pius Hospital Oldenburg'),
(63422, 52790, 'no_lang_code', 'name', 'AlterG (United States)'),
(63423, 52791, 'en', 'name', 'Fistula Foundation'),
(63424, 52792, 'en', 'name', 'Nurture Foundation for Reproductive Research'),
(63425, 52793, 'en', 'name', 'Healthcare Foundation of New Jersey'),
(63426, 52794, 'en', 'name', 'Community Foundation of Monroe County'),
(63427, 52795, 'no_lang_code', 'name', 'ALK-Abelló (Spain)'),
(63428, 52796, 'en', 'name', 'Meadows Foundation'),
(63429, 52797, 'en', 'name', 'Hirshberg Foundation for Pancreatic Cancer Research'),
(63430, 52798, 'sl', 'name', 'DruŔtvo Ključ'),
(63431, 52799, 'no_lang_code', 'name', 'Gretsch-Unitas (France)'),
(63432, 52800, 'en', 'name', 'Palm Beach Research Center'),
(63433, 52801, 'ja', 'name', 'åŒč‘‰é›»å­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(63434, 52801, 'no_lang_code', 'name', 'Futaba (Japan)'),
(63435, 52802, 'en', 'name', 'Ministry of Environmental Protection and Regional Development'),
(63436, 52803, 'no_lang_code', 'name', 'Sorbisense (Denmark)'),
(63437, 52804, 'en', 'name', 'Assisi Foundation of Memphis'),
(63438, 52805, 'de', 'name', 'Fondation des Fondateurs'),
(63439, 52805, 'en', 'name', 'Foundation of the Founders'),
(63440, 52806, 'en', 'name', 'Psych Recovery'),
(63441, 52807, 'nl', 'name', 'Kempenhaeghe'),
(63442, 52808, 'en', 'name', 'Blue Ridge Physical Therapy'),
(63443, 52809, 'en', 'name', 'National Academy of Engineering'),
(63444, 52810, 'en', 'name', 'International Urogynecological Association'),
(63445, 52811, 'fr', 'name', 'Centre Hospitalier Gabriel-Martin'),
(63446, 52812, 'no_lang_code', 'name', 'Labster (Denmark)'),
(63447, 52813, 'en', 'name', 'Funders Together to End Homelessness'),
(63448, 52814, 'no_lang_code', 'name', 'Camber Collective (United States)'),
(63449, 52815, 'no_lang_code', 'name', 'Maruho (United States)'),
(63450, 52816, 'no_lang_code', 'name', 'OncoGenex Pharmaceuticals (United States)'),
(63451, 52817, 'en', 'name', 'Armed Forces Communications and Electronics Association'),
(63452, 52818, 'no_lang_code', 'name', 'Epsilon Therapeutics (United States)'),
(63453, 52819, 'no_lang_code', 'name', 'Stiebel Eltron (Germany)'),
(63454, 52820, 'en', 'name', 'Santa Ana Public Library'),
(63455, 52821, 'en', 'name', 'CUTS International'),
(63456, 52822, 'en', 'name', 'Osceola Regional Medical Center'),
(63457, 52823, 'es', 'name', 'Mexfam'),
(63458, 52824, 'no_lang_code', 'name', 'Takeda (Denmark)'),
(63459, 52825, 'en', 'name', 'Elias Foundation'),
(63460, 52826, 'en', 'name', 'Association of Theological Schools'),
(63461, 52827, 'en', 'name', 'Hunter''s Dream for a Cure'),
(63462, 52828, 'en', 'name', 'Mental Illness Fellowship'),
(63463, 52829, 'no_lang_code', 'name', 'Videnskab (Denmark)'),
(63464, 52830, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Belgium)'),
(63465, 52831, 'en', 'name', 'Validia Rehabilitation'),
(63466, 52831, 'fi', 'name', 'Validia Kuntoutus'),
(63467, 52832, 'en', 'name', 'Colon and Rectal Surgery Associates'),
(63468, 52833, 'en', 'name', 'Pinellas Public Library Cooperative'),
(63469, 52834, 'en', 'name', 'Pinyon Foundation'),
(63470, 52835, 'it', 'name', 'Fondazione Cassa di Risparmio di Genova e Imperia'),
(63471, 52836, 'en', 'name', 'Tulsa Public Schools'),
(63472, 52837, 'no_lang_code', 'name', 'Windmoeller & Hoelscher (Germany)'),
(63473, 52838, 'no_lang_code', 'name', 'Research Corporation Technologies (United States)'),
(63474, 52839, 'no_lang_code', 'name', 'Health Awareness (United States)'),
(63475, 52840, 'es', 'name', 'Sociedad Espaola de retina y Vtreo'),
(63476, 52841, 'no_lang_code', 'name', 'Navistar International (United States)'),
(63477, 52842, 'en', 'name', 'Horn of Africa Services'),
(63478, 52843, 'en', 'name', 'Carolina Retina Center'),
(63479, 52844, 'en', 'name', 'N.N. Alexandrov National Cancer Centre'),
(63480, 52845, 'en', 'name', 'First Candle'),
(63481, 52846, 'en', 'name', 'Cheyenne Regional Medical Center'),
(63482, 52847, 'sv', 'name', 'Svettmottagningen'),
(63483, 52848, 'no_lang_code', 'name', 'Solina Group (Nigeria)'),
(63484, 52849, 'en', 'name', 'World Savings and Retail Banking Institute'),
(63485, 52850, 'en', 'name', 'California Wellness Foundation'),
(63486, 52851, 'en', 'name', 'Macula Vision Research Foundation'),
(63487, 52852, 'en', 'name', 'Bulgarian Society for the Protection of Birds'),
(63488, 52853, 'en', 'name', 'Live Love and Laugh Foundation'),
(63489, 52854, 'no_lang_code', 'name', 'Clinlogix (Germany)'),
(63490, 52855, 'no_lang_code', 'name', 'Nexus Clinical Research (Canada)'),
(63491, 52856, 'en', 'name', 'California Urological Association'),
(63492, 52857, 'en', 'name', 'Center for Excellence in Eye Care'),
(63493, 52858, 'no_lang_code', 'name', 'Texas Instruments (Germany)'),
(63494, 52859, 'no_lang_code', 'name', 'Roche (Austria)'),
(63495, 52860, 'en', 'name', 'Heze Municipal Hospital'),
(63496, 52861, 'en', 'name', 'Community Foundation of Central Wisconsin'),
(63497, 52862, 'en', 'name', 'Marubun Research Promotion Foundation'),
(63498, 52862, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ 丸文貔団'),
(63499, 52863, 'en', 'name', 'Charles Pankow Foundation'),
(63500, 52864, 'en', 'name', 'National Liberty Museum'),
(63501, 52865, 'en', 'name', 'Kobayashi International Scholarship Foundation'),
(63502, 52865, 'ja', 'name', 'å°ęž—å›½éš›å„Øå­¦č²”å›£'),
(63503, 52866, 'no_lang_code', 'name', 'SymbioPharm (Germany)'),
(63504, 52867, 'en', 'name', 'Harvard Eye Associates'),
(63505, 52868, 'no_lang_code', 'name', 'Plazmaferezis'),
(63506, 52869, 'en', 'name', 'Pat Graney'),
(63507, 52870, 'en', 'name', 'Maria Eleonora Hospital'),
(63508, 52871, 'en', 'name', 'Community Foundation of Greater Des Moine'),
(63509, 52872, 'no_lang_code', 'name', 'Hospitals Contribution Fund (Australia)'),
(63510, 52873, 'no_lang_code', 'name', 'Modus Therapeutics (Sweden)'),
(63511, 52874, 'en', 'name', 'National Clinical Research'),
(63512, 52875, 'fr', 'name', 'Centre Hospitalier Annecy Genevois'),
(63513, 52876, 'en', 'name', 'Dorothy Russell Havemeyer Foundation'),
(63514, 52877, 'en', 'name', 'Tennessee College Access and Success Network'),
(63515, 52878, 'en', 'name', 'International Foundation for Functional Gastrointestinal Disorders'),
(63516, 52879, 'en', 'name', 'Lothian Sexual Health'),
(63517, 52880, 'en', 'name', 'Villa Pineta Hospital'),
(63518, 52881, 'no_lang_code', 'name', 'Xellia (Croatia)'),
(63519, 52882, 'en', 'name', 'Apex Medical Technologies (United States)'),
(63520, 52883, 'no_lang_code', 'name', 'Stem Cell Technology (Taiwan)'),
(63521, 52884, 'en', 'name', 'Moundview Memorial Hospital and Clinics'),
(63522, 52885, 'en', 'name', 'Carl M. Freeman Foundation'),
(63523, 52886, 'en', 'name', 'Center for Community Change'),
(63524, 52887, 'es', 'name', 'Asociación Galega de Investigación na Enfermidade Inflamatoria Intestinal'),
(63525, 52888, 'no_lang_code', 'name', 'Eduserv'),
(63526, 52889, 'en', 'name', 'Institute of Leadership & Institutional Development'),
(63527, 52890, 'en', 'name', 'California Consumer Protection Foundation'),
(63528, 52891, 'en', 'name', 'Mitchell Institute'),
(63529, 52892, 'en', 'name', 'United Way of Central Washington'),
(63530, 52893, 'en', 'name', 'Osburn Public Library'),
(63531, 52894, 'en', 'name', 'Pact'),
(63532, 52895, 'it', 'name', 'Fondazione Istituto G. Giglio di Cefalù'),
(63533, 52896, 'en', 'name', 'Stedman Clinical Trials'),
(63534, 52897, 'en', 'name', 'Advanced Research Institute'),
(63535, 52898, 'de', 'name', 'CardioVasculƤres Centrum Frankfurt'),
(63536, 52898, 'en', 'name', 'Cardiovascular Center Frankfurt'),
(63537, 52899, 'en', 'name', 'Childrens Heart Foundation'),
(63538, 52900, 'en', 'name', 'Bull City Learning'),
(63539, 52901, 'no_lang_code', 'name', 'Intermed Pharmaceutical Laboratories (Greece)'),
(63540, 52902, 'no_lang_code', 'name', 'Groz Beckert (Germany)'),
(63541, 52903, 'no_lang_code', 'name', 'Meditop (Hungary)'),
(63542, 52904, 'no_lang_code', 'name', 'Valmet Automotive (Finland)'),
(63543, 52905, 'en', 'name', 'Young Invincibles'),
(63544, 52906, 'en', 'name', 'Arab American Pharmacist Association'),
(63545, 52907, 'no_lang_code', 'name', 'Coastal Connecticut Research (United States)'),
(63546, 52908, 'no_lang_code', 'name', 'Clinilabs (United States)'),
(63547, 52909, 'no_lang_code', 'name', 'ACCO Brands (United States)'),
(63548, 52910, 'fr', 'name', 'Centre AzurƩen de CancƩrologie'),
(63549, 52911, 'en', 'name', 'Horizons Clinical Research Center'),
(63550, 52912, 'no_lang_code', 'name', 'Zemun Hospital'),
(63551, 52913, 'en', 'name', 'FXM Research'),
(63552, 52914, 'de', 'name', 'Krankenhaus Reinbek - Startseite'),
(63553, 52915, 'no_lang_code', 'name', 'Sherwood Services (United States)'),
(63554, 52916, 'no_lang_code', 'name', 'Recordati (Italy)'),
(63555, 52917, 'en', 'name', 'Clinical Research Center of Nevada'),
(63556, 52918, 'no_lang_code', 'name', 'Tachi S (Japan)'),
(63557, 52919, 'en', 'name', 'Educational Foundation of America'),
(63558, 52920, 'en', 'name', 'Children’s Foundation'),
(63559, 52921, 'en', 'name', 'Center for Curriculum Redesign'),
(63560, 52922, 'en', 'name', 'KidsOhio'),
(63561, 52923, 'en', 'name', 'Profil Institute for Clinical Research'),
(63562, 52924, 'no_lang_code', 'name', 'Immungenetics (Germany)'),
(63563, 52925, 'en', 'name', 'State Higher Education Executive Officers'),
(63564, 52926, 'en', 'name', 'Indian Academy of Neurosciences'),
(63565, 52927, 'en', 'name', 'Sylvana Research'),
(63566, 52928, 'de', 'name', 'Leibniz Publik'),
(63567, 52929, 'no_lang_code', 'name', 'Danone (Canada)'),
(63568, 52930, 'no_lang_code', 'name', 'Dr Ritsert Pharma (Germany)'),
(63569, 52931, 'en', 'name', 'BirdLife Australia'),
(63570, 52932, 'en', 'name', 'Boston Center for Memory'),
(63571, 52933, 'no_lang_code', 'name', 'Loowatt (United Kingdom)'),
(63572, 52934, 'en', 'name', 'Southeastern Council of Foundations'),
(63573, 52935, 'nl', 'name', 'AZ Turnhout'),
(63574, 52936, 'no_lang_code', 'name', 'Endocrine Research Solutions (United States)'),
(63575, 52937, 'en', 'name', 'Defense Equal Opportunity Management Institute'),
(63576, 52938, 'en', 'name', 'Chicago Council on Global Affairs'),
(63577, 52939, 'es', 'name', 'Hospital la Serena'),
(63578, 52940, 'no_lang_code', 'name', 'Recordati (France)'),
(63579, 52941, 'no_lang_code', 'name', 'Vertex Pharmaceuticals (United Kingdom)'),
(63580, 52942, 'en', 'name', 'Oklahoma Otolaryngology Associates'),
(63581, 52943, 'en', 'name', 'Netherlands Leprosy Relief'),
(63582, 52944, 'en', 'name', 'Foundation for National Parks and Wildlife'),
(63583, 52945, 'it', 'name', 'Policlinico Abano Terme'),
(63584, 52946, 'no_lang_code', 'name', 'SEW Eurodrive (Germany)'),
(63585, 52947, 'en', 'name', '100 Black Men of America'),
(63586, 52948, 'en', 'name', 'Park Nicollet Foundation'),
(63587, 52949, 'en', 'name', 'Carl Gellert and Celia Berta Gellert Foundation'),
(63588, 52950, 'en', 'name', 'Catapult Design'),
(63589, 52951, 'en', 'name', 'American Institute of Research'),
(63590, 52952, 'no_lang_code', 'name', 'Sure Chill (United Kingdom)'),
(63591, 52953, 'en', 'name', 'Clinical Research of West Florida'),
(63592, 52954, 'en', 'name', 'Peter Michael Foundation'),
(63593, 52955, 'en', 'name', 'Northwest Behavioral Medicine'),
(63594, 52956, 'en', 'name', 'Nonprofit Assistance Center'),
(63595, 52957, 'da', 'name', 'Ringsted Sygehus'),
(63596, 52958, 'no_lang_code', 'name', 'Mabion (Poland)'),
(63597, 52959, 'en', 'name', 'BioFuelNet Canada'),
(63598, 52960, 'en', 'name', 'Policy Exchange'),
(63599, 52961, 'en', 'name', 'Vittorio Tison Association'),
(63600, 52962, 'no_lang_code', 'name', 'Solvay (Austria)'),
(63601, 52963, 'en', 'name', 'Eastside Comprehensive Medical Center'),
(63602, 52964, 'en', 'name', 'Center for Orthopaedics'),
(63603, 52965, 'no_lang_code', 'name', 'PledPharma (Sweden)'),
(63604, 52966, 'en', 'name', 'Persephone Productions'),
(63605, 52967, 'en', 'name', 'Park Avenue Dermatology'),
(63606, 52968, 'de', 'name', 'Evangelisches Krankenhaus Alsterdorf'),
(63607, 52969, 'pl', 'name', 'NZOZ Centrum Alergologii'),
(63608, 52970, 'en', 'name', 'North Jersey Endocrine Consultants'),
(63609, 52971, 'en', 'name', 'Cosmedica'),
(63610, 52972, 'en', 'name', 'Edward P. Evans Foundation'),
(63611, 52973, 'en', 'name', 'Tinker Air Force Base'),
(63612, 52974, 'ro', 'name', 'Spitalul Universitar de Urgenţă Militar Central Dr. Carol Davila'),
(63613, 52975, 'en', 'name', 'Good Samaritan Foundation'),
(63614, 52976, 'no_lang_code', 'name', 'Pharmathen (Greece)'),
(63615, 52977, 'en', 'name', 'Dorothy Rider Pool Health Care Trust'),
(63616, 52978, 'en', 'name', 'Model Clinical Research'),
(63617, 52979, 'no_lang_code', 'name', 'National Oilwell Varco (United States)'),
(63618, 52980, 'en', 'name', 'Central Dermatology'),
(63619, 52981, 'en', 'name', 'St. Louis Medical Clinic'),
(63620, 52982, 'en', 'name', 'Meridian Clinical Research'),
(63621, 52983, 'en', 'name', 'New Zealand Breast Cancer Foundation'),
(63622, 52984, 'en', 'name', 'KIPP Chicago Schools'),
(63623, 52985, 'no_lang_code', 'name', 'Quotient Clinical (United Kingdom)'),
(63624, 52986, 'en', 'name', 'New Schools Venture Fund'),
(63625, 52987, 'no_lang_code', 'name', 'Fortune Brands Home and Security (United States)'),
(63626, 52988, 'en', 'name', 'Lymphoma Foundation'),
(63627, 52989, 'en', 'name', 'Parkland Center For Clinical Innovation'),
(63628, 52990, 'es', 'name', 'Oxfam Intermón'),
(63629, 52991, 'no_lang_code', 'name', 'Tracto-Technik (Germany)'),
(63630, 52992, 'en', 'name', 'Meath Foundation'),
(63631, 52993, 'no_lang_code', 'name', 'Cooley’s Anemia Foundation'),
(63632, 52994, 'da', 'name', 'Odense Bys Museer'),
(63633, 52994, 'en', 'name', 'Odense City Museums'),
(63634, 52995, 'en', 'name', 'Second Peoples Hospital of Shaanxi Province'),
(63635, 52995, 'zh', 'name', 'é™•č„æēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(63636, 52996, 'en', 'name', 'Georgia Institute for Plastic Surgery'),
(63637, 52997, 'en', 'name', 'Awesome Foundation'),
(63638, 52998, 'en', 'name', 'Suzhou Traditional Chinese Medicine Hospital'),
(63639, 52998, 'zh', 'name', 'č‹å·žäø­åŒ»åŒ»é™¢'),
(63640, 52999, 'en', 'name', 'Meyer Foundation'),
(63641, 53000, 'no_lang_code', 'name', 'Dialog Semiconductor (Germany)'),
(63642, 53001, 'en', 'name', 'Mount Medical Centre'),
(63643, 53002, 'ro', 'name', 'Spitalul Clinic de Urgență pentru Copii Cluj-Napoca'),
(63644, 53003, 'en', 'name', 'Community Youth Services'),
(63645, 53004, 'en', 'name', 'Hendricks County Community Foundation'),
(63646, 53005, 'en', 'name', 'Diablo Clinical Research'),
(63647, 53006, 'en', 'name', 'Loyola Foundation'),
(63648, 53007, 'no_lang_code', 'name', 'Iomedico (Germany)'),
(63649, 53008, 'ja', 'name', 'ē¬¬äø€å·„ę„­č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(63650, 53008, 'no_lang_code', 'name', 'Daiichi Kogyo Seiyaku (Japan)'),
(63651, 53009, 'en', 'name', 'Japan Cassis Association'),
(63652, 53009, 'ja', 'name', 'ę—„ęœ¬ć‚«ć‚·ć‚¹å”ä¼š'),
(63653, 53010, 'no_lang_code', 'name', 'Peptonic Medical (Sweden)'),
(63654, 53011, 'en', 'name', 'Pikes Peak Library District'),
(63655, 53012, 'en', 'name', 'Chrest Foundation'),
(63656, 53013, 'ja', 'name', 'é›»ę°—åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(63657, 53013, 'no_lang_code', 'name', 'Denka (Japan)'),
(63658, 53014, 'no_lang_code', 'name', 'Promethera Biosciences (Belgium)'),
(63659, 53015, 'no_lang_code', 'name', 'W. L. Gore & Associates (Germany)'),
(63660, 53016, 'no_lang_code', 'name', 'SMB (Belgium)'),
(63661, 53017, 'fr', 'name', 'Groupe SEB'),
(63662, 53018, 'en', 'name', 'Progressive Clinical Research'),
(63663, 53019, 'en', 'name', 'Desmoid Tumor Research Foundation'),
(63664, 53020, 'fr', 'name', 'Fondation Thierry Latran'),
(63665, 53021, 'en', 'name', 'Center for Cancers and Blood Disorders'),
(63666, 53022, 'en', 'name', 'Baltimore Community Foundation'),
(63667, 53023, 'en', 'name', 'Aristocrat Plastic Surgery & MedAesthetics'),
(63668, 53024, 'no_lang_code', 'name', 'Excell Research (United States)'),
(63669, 53025, 'no_lang_code', 'name', 'Theracos (United States)'),
(63670, 53026, 'en', 'name', 'Ministry of Women and Child Development'),
(63671, 53027, 'de', 'name', 'Deutsche Bundesbank'),
(63672, 53027, 'en', 'name', 'German Federal Bank'),
(63673, 53028, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚±ćƒ¼ćƒ’ćƒ³'),
(63674, 53028, 'no_lang_code', 'name', 'Keihin (Japan)'),
(63675, 53029, 'en', 'name', 'America''s Promise Alliance'),
(63676, 53030, 'en', 'name', 'Second Affiliated Hospital of Hunan University of Traditional Chinese Medicine'),
(63677, 53031, 'no_lang_code', 'name', 'Clinvet'),
(63678, 53032, 'en', 'name', 'Association of Perioperative Registered Nurses'),
(63679, 53033, 'en', 'name', 'Oromiyaa Regional Health Bureau'),
(63680, 53034, 'ja', 'name', 'ä½å‹å¤§é˜Ŗć‚»ćƒ”ćƒ³ćƒˆ'),
(63681, 53034, 'no_lang_code', 'name', 'Sumitomo Osaka Cement (Japan)'),
(63682, 53035, 'no_lang_code', 'name', 'Vanak Eye Center'),
(63683, 53036, 'en', 'name', 'Page Public Library'),
(63684, 53037, 'en', 'name', 'Houston Endowment'),
(63685, 53038, 'no_lang_code', 'name', 'Seqirus (United States)'),
(63686, 53039, 'no_lang_code', 'name', 'Transport Corporation of India (India)'),
(63687, 53040, 'en', 'name', 'International Clinical Research Institute'),
(63688, 53041, 'en', 'name', 'New England Biolabs Foundation'),
(63689, 53042, 'de', 'name', 'Diabetes-Akademie'),
(63690, 53043, 'no_lang_code', 'name', 'Wolverine Worldwide (United States)'),
(63691, 53044, 'no_lang_code', 'name', 'BYD (China)'),
(63692, 53044, 'zh', 'name', 'ęÆ”äŗščæŖč‚”ä»½ęœ‰é™å…¬åø'),
(63693, 53045, 'en', 'name', 'MedSol Clinical Research Center'),
(63694, 53046, 'it', 'name', 'Agenzia Regionale Parchi'),
(63695, 53047, 'no_lang_code', 'name', 'Asklepion Pharmaceuticals (United States)'),
(63696, 53048, 'it', 'name', 'Fondazione Cassa di Risparmio di Foligno'),
(63697, 53049, 'en', 'name', 'OrthoMaryland'),
(63698, 53050, 'en', 'name', 'The Affiliated Hospital to Changchun University of Chinese Medicine'),
(63699, 53050, 'zh', 'name', 'é•æę˜„äø­åŒ»čÆå¤§å­¦é™„å±žåŒ»é™¢'),
(63700, 53051, 'en', 'name', 'Barcelona IVI Clinic'),
(63701, 53051, 'es', 'name', 'Clinica IVI Barcelona'),
(63702, 53052, 'en', 'name', 'Metcalf Foundation'),
(63703, 53053, 'en', 'name', 'F. M. Kirby Foundation'),
(63704, 53054, 'en', 'name', 'Lotus Clinical Research'),
(63705, 53055, 'en', 'name', 'Oregon Medical Research Center'),
(63706, 53056, 'no_lang_code', 'name', 'Gates (United States)'),
(63707, 53057, 'en', 'name', 'Sanford Burnham Prebys Medical Discovery Institute'),
(63708, 53058, 'en', 'name', 'Hudson Dermatology'),
(63709, 53059, 'en', 'name', 'Food Allergy Research and Education'),
(63710, 53060, 'de', 'name', 'Trützschler'),
(63711, 53060, 'no_lang_code', 'name', 'Truetzschler (Germany)'),
(63712, 53061, 'en', 'name', 'Community Foundation of the Ozarks'),
(63713, 53062, 'en', 'name', 'Windsor Dermatology'),
(63714, 53063, 'fr', 'name', 'Centre de Haute Energie'),
(63715, 53064, 'no_lang_code', 'name', 'EurActiv (Belgium)'),
(63716, 53065, 'en', 'name', 'National Organization for Hearing Research Foundation'),
(63717, 53066, 'en', 'name', 'Contraception Research and Development'),
(63718, 53067, 'it', 'name', 'ASST Melegnano e della Martesana'),
(63719, 53068, 'en', 'name', 'Dr. Kovil''s Diabetes Care Centre'),
(63720, 53069, 'en', 'name', 'Swedish Society of Oncology'),
(63721, 53069, 'sv', 'name', 'Svensk Onkologisk Fƶrening'),
(63722, 53070, 'en', 'name', 'Judith Rothschild Foundation'),
(63723, 53071, 'en', 'name', 'Skin Wellness Center'),
(63724, 53072, 'en', 'name', 'Diamond Blackfan Anemia Foundation'),
(63725, 53073, 'en', 'name', 'Vicente Ferrer Foundation'),
(63726, 53074, 'en', 'name', 'Peninsula Orthopedic Associates'),
(63727, 53075, 'en', 'name', 'Museum of the American Revolution'),
(63728, 53076, 'no_lang_code', 'name', 'Klosterfrau Healthcare Group (Germany)'),
(63729, 53077, 'en', 'name', 'Karl Bremer Hospital'),
(63730, 53078, 'en', 'name', 'Promundo'),
(63731, 53079, 'no_lang_code', 'name', 'Merck (Spain)'),
(63732, 53080, 'en', 'name', 'American Rhinologic Society'),
(63733, 53081, 'en', 'name', 'Collins Foundation'),
(63734, 53082, 'en', 'name', 'Margaret Clark Morgan Foundation'),
(63735, 53083, 'en', 'name', 'Hillsborough County Public Schools'),
(63736, 53084, 'fr', 'name', 'Arcagy Gineco'),
(63737, 53085, 'en', 'name', 'Pacific Heart Institute'),
(63738, 53086, 'en', 'name', 'Planned Parenthood'),
(63739, 53087, 'en', 'name', 'Bonfils-Stanton Foundation'),
(63740, 53088, 'de', 'name', 'Landesklinikum Korneuburg'),
(63741, 53089, 'en', 'name', 'Vera Institute of Justice'),
(63742, 53090, 'no_lang_code', 'name', 'Jacobs Douwe Egberts (Netherlands)'),
(63743, 53091, 'no_lang_code', 'name', 'Fiat Chrysler Automobiles (Germany)'),
(63744, 53092, 'en', 'name', 'Neighborcare Health'),
(63745, 53093, 'en', 'name', 'Statistical Assessment Service'),
(63746, 53094, 'no_lang_code', 'name', 'FormFactor (United States)'),
(63747, 53095, 'en', 'name', 'Ovarian Cancer Research Foundation'),
(63748, 53096, 'no_lang_code', 'name', 'Epi-Q (United States)'),
(63749, 53097, 'no_lang_code', 'name', 'Bempu'),
(63750, 53098, 'en', 'name', 'Danish Head and Neck Cancer Group'),
(63751, 53099, 'no_lang_code', 'name', 'Phi Gamma Delta'),
(63752, 53100, 'no_lang_code', 'name', 'Canbex Therapeutics (United Kingdom)'),
(63753, 53101, 'en', 'name', 'North Central Organized Regionally For Total Health'),
(63754, 53102, 'de', 'name', 'Carl-Zeiss-Stiftung'),
(63755, 53102, 'en', 'name', 'Carl Zeiss Foundation'),
(63756, 53103, 'no_lang_code', 'name', 'Techtronic Industries (United States)'),
(63757, 53104, 'pt', 'name', 'Hospital Vila Franca de Xira'),
(63758, 53105, 'fr', 'name', 'Centre Hospitalier de FougĆØres'),
(63759, 53106, 'en', 'name', 'Caribou Digital'),
(63760, 53107, 'en', 'name', 'European Neuroendocrine Association'),
(63761, 53108, 'no_lang_code', 'name', 'DermResearch (United States)'),
(63762, 53109, 'en', 'name', 'BrickStreet Foundation'),
(63763, 53110, 'en', 'name', 'Dermatrials Research'),
(63764, 53111, 'no_lang_code', 'name', 'Tokai Pharmaceuticals (United States)'),
(63765, 53112, 'en', 'name', 'Mind Australia'),
(63766, 53113, 'no_lang_code', 'name', 'Nektar Therapeutics (United States)'),
(63767, 53114, 'no_lang_code', 'name', 'Zymenex (Denmark)'),
(63768, 53115, 'en', 'name', 'Peace Stone Foundation'),
(63769, 53116, 'en', 'name', 'Foundation for Middle East Peace'),
(63770, 53117, 'en', 'name', 'Complete College America'),
(63771, 53118, 'en', 'name', 'Canadian Bee Research Fund'),
(63772, 53119, 'en', 'name', 'Graphic Arts Education and Research Foundation'),
(63773, 53120, 'no_lang_code', 'name', 'Celerion (United Kingdom)'),
(63774, 53121, 'ja', 'name', 'ę±ę“‹č£½ē½ć‚°ćƒ«ćƒ¼ćƒ—ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(63775, 53121, 'no_lang_code', 'name', 'Toyo Seikan (Japan)'),
(63776, 53122, 'de', 'name', 'Institut für Kulturwissenschaften und Theatergeschichte'),
(63777, 53122, 'en', 'name', 'Institute of Culture Studies and Theatre History'),
(63778, 53123, 'en', 'name', 'St. Helena Public Library'),
(63779, 53124, 'en', 'name', 'Manpei Suzuki Diabetes Foundation'),
(63780, 53125, 'en', 'name', 'Andy Warhol Foundation for the Visual Arts'),
(63781, 53126, 'en', 'name', 'American Hand Therapy Foundation'),
(63782, 53127, 'it', 'name', 'Fondazione Guido Berlucchi'),
(63783, 53128, 'en', 'name', 'Stanislaus County Library'),
(63784, 53129, 'en', 'name', 'Grantmakers In Health'),
(63785, 53130, 'en', 'name', 'Seattle Academy of Arts and Sciences'),
(63786, 53131, 'no_lang_code', 'name', 'Hitachi (United States)'),
(63787, 53132, 'en', 'name', 'Centennial Heart Cardiovascular Consultants'),
(63788, 53133, 'it', 'name', 'Clinica Mediterranea'),
(63789, 53134, 'no_lang_code', 'name', 'Syddansk Innovation (Denmark)'),
(63790, 53135, 'de', 'name', 'Konrad-Adenauer-Stiftung'),
(63791, 53135, 'en', 'name', 'Konrad Adenauer Foundation'),
(63792, 53136, 'en', 'name', 'Fighting Infectious Diseases in Emerging Countries'),
(63793, 53137, 'de', 'name', 'Herzstiftung Olten'),
(63794, 53138, 'en', 'name', 'Wenatchee Valley Hospital & Clinics'),
(63795, 53139, 'no_lang_code', 'name', 'Damvad (Denmark)'),
(63796, 53140, 'no_lang_code', 'name', 'ImmuPharma (France)'),
(63797, 53141, 'no_lang_code', 'name', 'Flex (United States)'),
(63798, 53142, 'no_lang_code', 'name', 'Dicerna Pharmaceuticals (United States)'),
(63799, 53143, 'da', 'name', 'Kai Lange og Gunhild Kai Langes Fond'),
(63800, 53144, 'en', 'name', 'Tony Blair Africa Governance Initiative'),
(63801, 53145, 'en', 'name', 'Institute Of Perinatology Obstetrics And Gynaecology'),
(63802, 53145, 'hy', 'name', 'ՀՀ Ō±Õ† ÕŗÕ„Ö€Õ«Õ¶Õ”ÕæÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ«, Õ“Õ”Õ¶ÕÆÕ”Õ¢Õ”Ö€Õ±ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ„Ö‚ Õ£Õ«Õ¶Õ„ÕÆÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ«'),
(63803, 53146, 'en', 'name', 'Jean Brown Research'),
(63804, 53147, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŸćƒ„ćƒ'),
(63805, 53147, 'no_lang_code', 'name', 'Mitsuba (Japan)'),
(63806, 53148, 'en', 'name', 'Family Beginnings'),
(63807, 53149, 'en', 'name', 'Maple Leaf Medical Clinic'),
(63808, 53150, 'en', 'name', 'Crawford Heritage Community Foundation'),
(63809, 53151, 'en', 'name', 'Morton Cure Paralysis Fund'),
(63810, 53152, 'en', 'name', 'MetroWest Health Foundation'),
(63811, 53153, 'en', 'name', 'Lawrence Foundation'),
(63812, 53154, 'en', 'name', 'Population Action International'),
(63813, 53155, 'no_lang_code', 'name', 'Webasto (Germany)'),
(63814, 53156, 'de', 'name', 'Sterreichisches Akromegalie Register'),
(63815, 53157, 'en', 'name', 'Children''s Advocacy Center'),
(63816, 53158, 'fr', 'name', 'Centre Hospitalier de Rochefort, Rochefort General Hospital'),
(63817, 53159, 'ja', 'name', 'ćƒ›ć‚Æćƒˆę Ŗå¼ä¼šē¤¾'),
(63818, 53159, 'no_lang_code', 'name', 'Hokuto (Japan)'),
(63819, 53160, 'en', 'name', 'European Thoracic Oncology Platform'),
(63820, 53161, 'en', 'name', 'Bidwell Memorial Presbyterian Church'),
(63821, 53162, 'no_lang_code', 'name', 'LyondellBasell (United States)'),
(63822, 53163, 'en', 'name', 'International Planned Parenthood Federation'),
(63823, 53164, 'no_lang_code', 'name', 'Diagram (Netherlands)'),
(63824, 53165, 'no_lang_code', 'name', 'Heel (Germany)'),
(63825, 53166, 'it', 'name', 'Abiogen Pharma (Italy)'),
(63826, 53167, 'no_lang_code', 'name', 'Itad (United Kingdom)'),
(63827, 53168, 'no_lang_code', 'name', 'Sophiris (United States)'),
(63828, 53169, 'no_lang_code', 'name', 'PAREXEL International (United Kingdom)'),
(63829, 53170, 'en', 'name', 'Ministry of Foreign Affairs'),
(63830, 53170, 'nl', 'name', 'Ministerie van Buitenlandse Zaken'),
(63831, 53171, 'no_lang_code', 'name', 'O&O Alpan (United States)'),
(63832, 53172, 'en', 'name', 'Health Center'),
(63833, 53173, 'en', 'name', 'California Dental Association Foundation'),
(63834, 53174, 'no_lang_code', 'name', 'Valspar (United States)'),
(63835, 53175, 'en', 'name', 'Atlanta Gastroenterology Associates'),
(63836, 53176, 'en', 'name', 'Little Rock Family Practice Clinic'),
(63837, 53177, 'en', 'name', 'Carl Marshall and Mildred Almen Reeves Foundation'),
(63838, 53178, 'en', 'name', 'EduInnovation'),
(63839, 53179, 'en', 'name', 'OrthoVirginia'),
(63840, 53180, 'it', 'name', 'Fondazione Audiologica Varese'),
(63841, 53181, 'no_lang_code', 'name', 'Somfy (France)'),
(63842, 53182, 'ja', 'name', 'å¤§é˜Ŗē“¦ę–Æę Ŗå¼ä¼šē¤¾');
INSERT INTO `ror_settings` VALUES
(63843, 53182, 'no_lang_code', 'name', 'Osaka Gas (Japan)'),
(63844, 53183, 'en', 'name', 'Chain of Love Foundation'),
(63845, 53184, 'no_lang_code', 'name', 'Gamida Cell (Israel)'),
(63846, 53185, 'no_lang_code', 'name', 'Bobst (Switzerland)'),
(63847, 53186, 'en', 'name', 'NDSU Research Foundation'),
(63848, 53187, 'it', 'name', 'Pavia nel Cuore'),
(63849, 53188, 'no_lang_code', 'name', 'Sunovion (United Kingdom)'),
(63850, 53189, 'no_lang_code', 'name', 'Pratham'),
(63851, 53190, 'en', 'name', 'Lindsay Unified School District'),
(63852, 53191, 'en', 'name', 'Don Monti Memorial Research Foundation'),
(63853, 53192, 'en', 'name', 'Mali Health'),
(63854, 53193, 'en', 'name', 'Regional Urology'),
(63855, 53194, 'en', 'name', 'Coalition for Pulmonary Fibrosis'),
(63856, 53195, 'en', 'name', 'Prince Edward Island Library Service'),
(63857, 53196, 'no_lang_code', 'name', 'Tekwani Vision Center'),
(63858, 53197, 'no_lang_code', 'name', 'Perrigo (Sweden)'),
(63859, 53198, 'en', 'name', 'Health Foundation of South Florida'),
(63860, 53199, 'en', 'name', 'CapitalCare Foundation'),
(63861, 53200, 'en', 'name', 'Bay State Clinical Trials'),
(63862, 53201, 'en', 'name', 'Virginia Eye Consultants'),
(63863, 53202, 'en', 'name', 'Why Foundation'),
(63864, 53203, 'en', 'name', 'Environment and Health Fund'),
(63865, 53203, 'he', 'name', '×”×§×Ø×Ÿ ×œ×‘×Ø×™××•×Ŗ ההביבה'),
(63866, 53204, 'en', 'name', 'Boston Foundation'),
(63867, 53205, 'en', 'name', 'Illinois Department of Healthcare and Family Services'),
(63868, 53206, 'en', 'name', 'Impact on Education'),
(63869, 53207, 'en', 'name', 'National Council for the Social Studies'),
(63870, 53208, 'no_lang_code', 'name', 'VFO (United States)'),
(63871, 53209, 'en', 'name', 'Sister Cities International'),
(63872, 53210, 'no_lang_code', 'name', 'Navitas Life Sciences (Germany)'),
(63873, 53211, 'no_lang_code', 'name', 'HCM Strategists (United States)'),
(63874, 53212, 'no_lang_code', 'name', 'Ferro (United States)'),
(63875, 53213, 'en', 'name', 'Firstline Schools'),
(63876, 53214, 'en', 'name', 'Global Call to Action Against Poverty'),
(63877, 53215, 'en', 'name', 'Student Achievement Partners'),
(63878, 53216, 'no_lang_code', 'name', 'TechnipFMC (United States)'),
(63879, 53217, 'en', 'name', 'Long Term Care Community Coalition'),
(63880, 53218, 'en', 'name', 'Greater New Orleans Foundation'),
(63881, 53219, 'en', 'name', 'Nordic Myeloma Study Group'),
(63882, 53220, 'en', 'name', 'Northwest Association For Biomedical Research'),
(63883, 53221, 'en', 'name', 'McGraw Foundation'),
(63884, 53222, 'en', 'name', 'Alzheimer''s Foundation of America'),
(63885, 53223, 'en', 'name', 'Explorers Club'),
(63886, 53224, 'en', 'name', 'State Archaeological Museum'),
(63887, 53224, 'pl', 'name', 'Państwowe Muzeum Archeologiczne'),
(63888, 53225, 'en', 'name', 'Phoenix Medical Research'),
(63889, 53226, 'no_lang_code', 'name', 'Belden (United States)'),
(63890, 53227, 'en', 'name', 'Every Mother Counts'),
(63891, 53228, 'en', 'name', 'Shanxi Dayi Hospital'),
(63892, 53228, 'zh', 'name', 'å±±č„æå¤§åŒ»é™¢'),
(63893, 53229, 'en', 'name', 'State Educational Technology Directors Association'),
(63894, 53230, 'en', 'name', 'FSH Society'),
(63895, 53231, 'no_lang_code', 'name', 'Focke & Co (Germany)'),
(63896, 53232, 'en', 'name', 'New River Valley Research Institute'),
(63897, 53233, 'en', 'name', 'Eye Care Associates'),
(63898, 53234, 'en', 'name', 'Illinois Critical Access Hospital Network'),
(63899, 53235, 'no_lang_code', 'name', 'Goodyear (United Kingdom)'),
(63900, 53236, 'de', 'name', 'Boehringer Ingelheim Stiftung'),
(63901, 53236, 'en', 'name', 'Boehringer Ingelheim Foundation'),
(63902, 53237, 'no_lang_code', 'name', 'Reos Production (Romania)'),
(63903, 53238, 'en', 'name', 'Pacific Pioneer Fund'),
(63904, 53239, 'no_lang_code', 'name', 'Aeterna Zentaris (Germany)'),
(63905, 53240, 'en', 'name', 'Quality Research'),
(63906, 53241, 'no_lang_code', 'name', 'Pfizer (South Korea)'),
(63907, 53242, 'en', 'name', 'Clinical Investigations of Texas'),
(63908, 53243, 'en', 'name', 'World Health Organization - Nigeria'),
(63909, 53244, 'en', 'name', 'Viva Hispanic Foundation NW'),
(63910, 53245, 'en', 'name', 'Manitoba Beekeepers'' Association'),
(63911, 53246, 'no_lang_code', 'name', 'MTN (Uganda)'),
(63912, 53247, 'en', 'name', 'Mustard Seed Foundation'),
(63913, 53248, 'en', 'name', 'Hemophilia Association of New York'),
(63914, 53249, 'en', 'name', 'Staploe Medical Centre'),
(63915, 53250, 'en', 'name', 'Arai Science and Technology Promotion Foundation'),
(63916, 53250, 'ja', 'name', 'ę–°äŗ•ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(63917, 53251, 'en', 'name', 'Weihai Municipal Hospital'),
(63918, 53251, 'zh', 'name', 'åØęµ·åø‚ē«‹åŒ»é™¢'),
(63919, 53252, 'en', 'name', 'Interleukin Foundation'),
(63920, 53253, 'en', 'name', 'Affiliated Hospital of Liaoning University of Traditional Chinese Medicine'),
(63921, 53253, 'zh', 'name', 'č¾½å®ēœäø­åŒ»é™¢'),
(63922, 53254, 'no_lang_code', 'name', 'Biofrontera (Germany)'),
(63923, 53255, 'en', 'name', 'Water Services Trust Fund'),
(63924, 53256, 'no_lang_code', 'name', 'Accord Healthcare (Poland)'),
(63925, 53257, 'no_lang_code', 'name', 'Emotional Brain (Netherlands)'),
(63926, 53258, 'en', 'name', 'Canadian Thoracic Society'),
(63927, 53259, 'no_lang_code', 'name', 'Solvotrin Innovations (Ireland)'),
(63928, 53260, 'he', 'name', 'מכון חרוב'),
(63929, 53260, 'no_lang_code', 'name', 'Haruv Institute'),
(63930, 53261, 'en', 'name', 'Akron Community Foundation'),
(63931, 53262, 'en', 'name', 'American Brain Tumor Association'),
(63932, 53263, 'en', 'name', 'Treatment Action Group'),
(63933, 53264, 'en', 'name', 'Davidson County Health Department'),
(63934, 53265, 'no_lang_code', 'name', 'Azellon (United Kingdom)'),
(63935, 53266, 'de', 'name', 'Ernst-Abbe-Stiftung'),
(63936, 53267, 'no_lang_code', 'name', 'Turnitin (United States)'),
(63937, 53268, 'no_lang_code', 'name', 'Allergan (France)'),
(63938, 53269, 'en', 'name', 'Nargis Dutt Memorial Cancer Hospital'),
(63939, 53270, 'en', 'name', 'Forest Research'),
(63940, 53271, 'en', 'name', 'Arkansas Research Alliance'),
(63941, 53272, 'en', 'name', 'Dermatology Treatment & Research Center'),
(63942, 53273, 'tr', 'name', 'Arnavutkƶy Devlet Hastanesi'),
(63943, 53274, 'en', 'name', 'Atkinson Foundation'),
(63944, 53275, 'de', 'name', 'Praxis für Hämatologie und Onkologie'),
(63945, 53276, 'no_lang_code', 'name', 'Fluidda (Belgium)'),
(63946, 53277, 'no_lang_code', 'name', 'Eppendorf (Germany)'),
(63947, 53278, 'en', 'name', 'DSF Charitable Foundation'),
(63948, 53279, 'no_lang_code', 'name', 'Shenyang 242 Hospital'),
(63949, 53279, 'zh', 'name', 'ę²ˆé˜³äŗŒå››äŗŒåŒ»é™¢'),
(63950, 53280, 'ja', 'name', 'ćƒ¤ć‚Æćƒ«ćƒˆ'),
(63951, 53280, 'no_lang_code', 'name', 'Yakult Honsha (Japan)'),
(63952, 53281, 'en', 'name', 'New Life International'),
(63953, 53282, 'en', 'name', 'Westmead Institute'),
(63954, 53283, 'en', 'name', 'McGill-Toolen Catholic High School'),
(63955, 53284, 'en', 'name', 'Australian Society of Periodontology'),
(63956, 53285, 'en', 'name', 'KLS Foundation'),
(63957, 53286, 'en', 'name', 'Paul Hamlyn Foundation'),
(63958, 53287, 'no_lang_code', 'name', 'Precise Consult International (Ethiopia)'),
(63959, 53288, 'no_lang_code', 'name', 'Asia Vital Components (Taiwan)'),
(63960, 53288, 'zh', 'name', 'äŗšę“²ē”Ÿå‘½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(63961, 53289, 'en', 'name', 'Jessamine County Schools'),
(63962, 53290, 'no_lang_code', 'name', 'Acacia Pharma (United Kingdom)'),
(63963, 53291, 'en', 'name', 'Ohio News Media Association'),
(63964, 53292, 'no_lang_code', 'name', 'Renapharma (Sweden)'),
(63965, 53293, 'en', 'name', 'Lithuanian Free Market Institute'),
(63966, 53293, 'lt', 'name', 'Lietuvos laisvosios rinkos institutas'),
(63967, 53294, 'en', 'name', 'American Medical Student Association'),
(63968, 53295, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Germany)'),
(63969, 53296, 'no_lang_code', 'name', 'Great Lakes Research Group (United States)'),
(63970, 53297, 'en', 'name', 'Gallmann Memorial Foundation'),
(63971, 53298, 'no', 'name', 'Aleris Rosenborgklinikken'),
(63972, 53299, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Hungary)'),
(63973, 53300, 'en', 'name', 'Global Development Incubator'),
(63974, 53301, 'en', 'name', 'Ittleson Foundation'),
(63975, 53302, 'en', 'name', 'Wyoming State Library'),
(63976, 53303, 'en', 'name', 'de Beaumont Foundation'),
(63977, 53304, 'en', 'name', 'Actors Fund of America'),
(63978, 53305, 'en', 'name', 'Nexleaf Analytics'),
(63979, 53306, 'en', 'name', 'Corneal Consultants of Colorado'),
(63980, 53307, 'en', 'name', 'Intellectual Virtues Academy'),
(63981, 53308, 'en', 'name', 'Spaulding Hospital'),
(63982, 53309, 'it', 'name', 'Azienda USL della Valle d’Aosta'),
(63983, 53310, 'no_lang_code', 'name', 'Intec Pharma (Israel)'),
(63984, 53311, 'en', 'name', 'Revenue Watch Institute'),
(63985, 53312, 'en', 'name', 'Korean Dermatological Association'),
(63986, 53312, 'ko', 'name', 'ėŒ€ķ•œķ”¼ė¶€ź³¼ķ•™ķšŒ'),
(63987, 53313, 'no_lang_code', 'name', 'AUS (United States)'),
(63988, 53314, 'no_lang_code', 'name', 'Matrizyme (Canada)'),
(63989, 53315, 'no_lang_code', 'name', 'Immodulon Therapeutics (United Kingdom)'),
(63990, 53316, 'en', 'name', 'Lyndhurst Gynecologic Associates'),
(63991, 53317, 'en', 'name', 'Washington Center for Weight Management and Research'),
(63992, 53318, 'en', 'name', 'Foothill Family Clinic'),
(63993, 53319, 'en', 'name', 'Colorado Trust'),
(63994, 53320, 'en', 'name', 'A. E. Finley Foundation'),
(63995, 53321, 'no_lang_code', 'name', 'Valhi (United States)'),
(63996, 53322, 'en', 'name', 'Yueyang Hospital'),
(63997, 53322, 'zh', 'name', 'äøŠęµ·äø­åŒ»čÆå¤§å­¦é™„å±žå²³é˜³äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(63998, 53323, 'en', 'name', 'Private Hospital & Heart Center Varde'),
(63999, 53324, 'nl', 'name', 'ODAS Stichting'),
(64000, 53325, 'no_lang_code', 'name', 'HolsboerMaschmeyer NeuroChemie (Germany)'),
(64001, 53326, 'no_lang_code', 'name', 'Lely (Netherlands)'),
(64002, 53327, 'en', 'name', 'King County Sexual Assault Resource Center'),
(64003, 53328, 'no_lang_code', 'name', 'Tecumseh Products (United States)'),
(64004, 53329, 'en', 'name', 'Rocky Mountain Cancer Centers'),
(64005, 53330, 'en', 'name', 'Houston Eye Associates'),
(64006, 53331, 'no_lang_code', 'name', 'Q2 (United States)'),
(64007, 53332, 'en', 'name', 'California Teachers Association'),
(64008, 53333, 'fr', 'name', 'Centre Hospitalier Henri Laborit'),
(64009, 53334, 'en', 'name', 'Microfinance Information Exchange'),
(64010, 53335, 'it', 'name', 'Villa Melitta'),
(64011, 53336, 'en', 'name', 'Regional Clinical Research'),
(64012, 53337, 'en', 'name', 'Clinic of Hope'),
(64013, 53337, 'nl', 'name', 'Clinique de l''EspƩrance'),
(64014, 53338, 'no_lang_code', 'name', 'Rio Tinto (Australia)'),
(64015, 53339, 'en', 'name', 'Ohio Association of Community Colleges'),
(64016, 53340, 'no_lang_code', 'name', 'Heckler and Koch (Germany)'),
(64017, 53341, 'no_lang_code', 'name', 'NanoBio (United States)'),
(64018, 53342, 'da', 'name', 'Universitets-JubilƦets Danske Samfund'),
(64019, 53343, 'en', 'name', 'Myelin Project'),
(64020, 53344, 'en', 'name', 'Women''s Policy'),
(64021, 53345, 'no_lang_code', 'name', 'Philip Morris International (Switzerland)'),
(64022, 53346, 'en', 'name', 'Maloney Vision Institute'),
(64023, 53347, 'no_lang_code', 'name', 'Johnson & Johnson (Italy)'),
(64024, 53348, 'en', 'name', 'Achievement First'),
(64025, 53349, 'de', 'name', 'Bernische Krebsliga'),
(64026, 53350, 'no_lang_code', 'name', 'Dexcel Pharma (United Kingdom)'),
(64027, 53351, 'en', 'name', 'Dingo Discovery and Research Centre'),
(64028, 53352, 'en', 'name', 'Community Foundation of Elmira Corning and the Finger Lakes'),
(64029, 53353, 'no_lang_code', 'name', 'Jungheinrich (Germany)'),
(64030, 53354, 'en', 'name', 'Acton Institute'),
(64031, 53355, 'no_lang_code', 'name', 'Kion Group (Germany)'),
(64032, 53356, 'en', 'name', 'Khan Academy'),
(64033, 53357, 'no_lang_code', 'name', 'Patara Pharma (United States)'),
(64034, 53358, 'en', 'name', 'Technology Access Foundation'),
(64035, 53359, 'no_lang_code', 'name', 'Chiari & Syringomyelia Foundation'),
(64036, 53360, 'en', 'name', 'Andrea and Charles Bronfman Philanthropies'),
(64037, 53361, 'no_lang_code', 'name', 'ORASIS Pharmaceuticals (Israel)'),
(64038, 53362, 'en', 'name', 'Eye Centers Of Florida'),
(64039, 53363, 'no_lang_code', 'name', 'GTx (United States)'),
(64040, 53364, 'en', 'name', 'Nokia Foundation'),
(64041, 53365, 'no_lang_code', 'name', 'FluoroPharma Medical (United States)'),
(64042, 53366, 'de', 'name', 'Katholisches Klinikum Ruhrgebiet Nord GmbH'),
(64043, 53367, 'en', 'name', 'Advanced Sleep Medicine Services'),
(64044, 53368, 'nl', 'name', 'Westfriesgasthuis'),
(64045, 53369, 'no_lang_code', 'name', 'Quackenworth (United States)'),
(64046, 53370, 'no_lang_code', 'name', 'CTS Forex (Canada)'),
(64047, 53371, 'no_lang_code', 'name', 'ORYX (Germany)'),
(64048, 53372, 'no_lang_code', 'name', 'Dance Biopharm (United States)'),
(64049, 53373, 'no_lang_code', 'name', 'Mundipharma (Germany)'),
(64050, 53374, 'en', 'name', 'International Federation of Red Cross and Red Crescent Societies'),
(64051, 53375, 'en', 'name', 'Partnership for Child Health'),
(64052, 53376, 'en', 'name', 'Movember Foundation'),
(64053, 53377, 'de', 'name', 'Asklepios Klinik Weißenfels'),
(64054, 53378, 'en', 'name', 'McGregor Foundation'),
(64055, 53379, 'pl', 'name', 'Szpital Kliniczny Dzieciątka Jezus'),
(64056, 53380, 'en', 'name', 'University of Engineering & Technology'),
(64057, 53380, 'es', 'name', 'Universidad de IngenierĆ­a y TecnologĆ­a'),
(64058, 53381, 'ja', 'name', 'ć‚µćƒŽćƒ•ć‚£'),
(64059, 53381, 'no_lang_code', 'name', 'Sanofi (Japan)'),
(64060, 53382, 'en', 'name', 'American Orchid Society'),
(64061, 53383, 'no_lang_code', 'name', 'Hannover Clinical Trial Center (Germany)'),
(64062, 53384, 'en', 'name', 'Southern Africa Trust'),
(64063, 53385, 'no_lang_code', 'name', 'Creative Technology (Singapore)'),
(64064, 53386, 'en', 'name', 'Share Our Strength'),
(64065, 53387, 'en', 'name', 'John Rex Endowment'),
(64066, 53388, 'en', 'name', 'Beyond Batten Disease Foundation'),
(64067, 53389, 'en', 'name', 'York County Libraries'),
(64068, 53390, 'no_lang_code', 'name', 'GOAL'),
(64069, 53391, 'en', 'name', 'Prichard Committee for Academic Excellence'),
(64070, 53392, 'en', 'name', 'Emergency Medicine Foundation'),
(64071, 53393, 'en', 'name', 'Melville Charitable Trust'),
(64072, 53394, 'en', 'name', 'Community Foundation of Middlesex County'),
(64073, 53395, 'sv', 'name', 'Magnus Bergvalls Stiftelse'),
(64074, 53396, 'de', 'name', 'Westdeutsche Studiengruppe'),
(64075, 53396, 'en', 'name', 'Womenā€˜s Healthcare Group'),
(64076, 53397, 'en', 'name', 'British Scoliosis Research Foundation'),
(64077, 53398, 'en', 'name', 'Consortium of Christian Relief and Development Associations'),
(64078, 53399, 'en', 'name', 'European Brain and Behaviour Society'),
(64079, 53400, 'no_lang_code', 'name', 'eSpark Learning (United States)'),
(64080, 53401, 'en', 'name', 'FACE Foundation'),
(64081, 53402, 'en', 'name', 'Connected Nation'),
(64082, 53403, 'en', 'name', 'Mclean Foundation'),
(64083, 53404, 'en', 'name', 'TRIA Orthopaedic Center'),
(64084, 53405, 'en', 'name', 'ZanaAfrica Group'),
(64085, 53406, 'en', 'name', 'Fund for the Environment & Urban Life'),
(64086, 53407, 'no_lang_code', 'name', 'Pierre Fabre (Germany)'),
(64087, 53408, 'en', 'name', 'Casio Science Promotion Foundation'),
(64088, 53408, 'ja', 'name', 'ć‚«ć‚·ć‚Ŗē§‘å­¦ęŒÆčˆˆč²”å›£'),
(64089, 53409, 'no_lang_code', 'name', 'Cardiorentis (Switzerland)'),
(64090, 53410, 'en', 'name', 'Akiyama Life Science Foundation'),
(64091, 53410, 'ja', 'name', 'ē§‹å±±čØ˜åæµē”Ÿå‘½ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(64092, 53411, 'en', 'name', 'Greater Pittsburgh Orthopaedic Associates'),
(64093, 53412, 'pl', 'name', 'Uroczysko'),
(64094, 53413, 'en', 'name', 'Huai''an City Fourth People''s Hospital'),
(64095, 53413, 'zh', 'name', 'ę·®å®‰åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(64096, 53414, 'no_lang_code', 'name', 'Shop Vac (United States)'),
(64097, 53415, 'en', 'name', 'John Randolph Foundation'),
(64098, 53416, 'eu', 'name', 'Onkologikoa'),
(64099, 53417, 'it', 'name', 'Fondazione Umberto Veronesi'),
(64100, 53418, 'en', 'name', 'Ziauddin Hospital'),
(64101, 53419, 'en', 'name', 'Ural Institute of Cardiology'),
(64102, 53419, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карГиологии'),
(64103, 53420, 'no_lang_code', 'name', 'E.G.O (Germany)'),
(64104, 53421, 'en', 'name', 'Doug Flutie. Jr Foundation for Autism'),
(64105, 53422, 'en', 'name', 'Jacob Randall Foundation for Morquio'),
(64106, 53423, 'no_lang_code', 'name', 'Accenture (Switzerland)'),
(64107, 53424, 'no_lang_code', 'name', 'Shanghai Chengtou (China)'),
(64108, 53425, 'no_lang_code', 'name', 'DK4'),
(64109, 53426, 'en', 'name', 'American College of Healthcare'),
(64110, 53427, 'en', 'name', 'Median Research Centre'),
(64111, 53428, 'en', 'name', 'Gateway for Cancer Research'),
(64112, 53429, 'en', 'name', 'Education Reform Now'),
(64113, 53430, 'no_lang_code', 'name', 'Forward Pharma (Germany)'),
(64114, 53431, 'en', 'name', 'Green Lane Research and Educational Fund'),
(64115, 53432, 'no_lang_code', 'name', 'Weber and Weber (Germany)'),
(64116, 53433, 'en', 'name', 'Tennessee Business Roundtable'),
(64117, 53434, 'no_lang_code', 'name', 'Astute Medical (United States)'),
(64118, 53435, 'en', 'name', 'Meridien Research'),
(64119, 53436, 'en', 'name', 'John Cain Foundation'),
(64120, 53437, 'en', 'name', 'Innovations for Poverty Action'),
(64121, 53438, 'en', 'name', 'Arkansas Community Foundation'),
(64122, 53439, 'da', 'name', 'Ungdommens Naturvidenskabelige Forening'),
(64123, 53439, 'en', 'name', 'Danish Youth Association of Science'),
(64124, 53440, 'en', 'name', 'Buffalo Psychiatric Center'),
(64125, 53441, 'en', 'name', 'Korean American Scholarship Foundation'),
(64126, 53442, 'en', 'name', 'Society for International Development'),
(64127, 53443, 'en', 'name', 'Volusia County Public Library'),
(64128, 53444, 'en', 'name', 'Safe Crossings Foundation'),
(64129, 53445, 'fr', 'name', 'Agir Pour les Maladies Chroniques'),
(64130, 53446, 'no_lang_code', 'name', 'NRR Hospital'),
(64131, 53447, 'en', 'name', 'Arkansas State Highway and Transportation Department'),
(64132, 53448, 'no_lang_code', 'name', 'AB2 Bio (Switzerland)'),
(64133, 53449, 'en', 'name', 'Fertility Care Multan'),
(64134, 53450, 'en', 'name', 'Penda Health'),
(64135, 53451, 'it', 'name', 'Associazione Italiana Ematologia Oncologia Pediatrica'),
(64136, 53452, 'de', 'name', 'Haut- und Lasercentrum Potsdam'),
(64137, 53452, 'en', 'name', 'Doctors at the Skin and Laser Centre'),
(64138, 53453, 'en', 'name', 'St. Monica Catholic School'),
(64139, 53454, 'en', 'name', 'Hope Happens for Neurological Disorders'),
(64140, 53455, 'no_lang_code', 'name', 'Politico (United States)'),
(64141, 53456, 'en', 'name', 'Liuyang City Maternal and Child Health Hospital'),
(64142, 53456, 'zh', 'name', 'ęµé˜³åø‚å¦‡å¹¼äæå„é™¢'),
(64143, 53457, 'ja', 'name', 'ćƒˆćƒ¬ćƒ³ćƒ‰ćƒžć‚¤ć‚Æćƒ­ę Ŗå¼ä¼šē¤¾'),
(64144, 53457, 'no_lang_code', 'name', 'Trend Micro (Japan)'),
(64145, 53458, 'en', 'name', 'Hospital Research Foundation'),
(64146, 53459, 'en', 'name', 'Nephcure Foundation'),
(64147, 53460, 'en', 'name', 'Kidney Foundation of Central Pennsylvania'),
(64148, 53461, 'en', 'name', 'Fleming Island Center For Clinical Research'),
(64149, 53462, 'en', 'name', 'Mary E Bivins Foundation'),
(64150, 53463, 'en', 'name', 'National Eczema Association'),
(64151, 53464, 'no_lang_code', 'name', 'Servier (Spain)'),
(64152, 53465, 'no_lang_code', 'name', 'Dr Willmar Schwabe (Germany)'),
(64153, 53466, 'en', 'name', 'North Carolina Community Foundation'),
(64154, 53467, 'en', 'name', 'Sinclair Dermatology'),
(64155, 53468, 'en', 'name', 'National Tay-Sachs and Allied Diseases Association'),
(64156, 53469, 'en', 'name', 'Campbell Foundation'),
(64157, 53470, 'en', 'name', 'Kresge Foundation'),
(64158, 53471, 'en', 'name', 'National Equity Project'),
(64159, 53472, 'en', 'name', 'Richard H. Weisler M.D P.A. and Associates'),
(64160, 53473, 'no_lang_code', 'name', 'Wabco (Germany)'),
(64161, 53474, 'en', 'name', 'Scalabrini International Migration Network'),
(64162, 53475, 'fr', 'name', 'Centre IntƩgrƩ de SantƩ et de Services Sociaux des Laurentides'),
(64163, 53476, 'en', 'name', 'Let it Ripple'),
(64164, 53477, 'fr', 'name', 'Centre Hospitalier de La Rochelle'),
(64165, 53478, 'en', 'name', 'Jothydev''s Diabetes and Research Center'),
(64166, 53479, 'en', 'name', 'St. Joseph''s Care Group'),
(64167, 53480, 'no_lang_code', 'name', 'Farmalder (Spain)'),
(64168, 53481, 'no_lang_code', 'name', 'Hartmann Group (Germany)'),
(64169, 53482, 'en', 'name', 'Human Network International'),
(64170, 53483, 'en', 'name', 'Nevada Department of Wildlife'),
(64171, 53484, 'en', 'name', 'National Center on Education and the Economy'),
(64172, 53485, 'no_lang_code', 'name', 'BSH Home Appliances (United States)'),
(64173, 53486, 'en', 'name', 'Dental Foundation of Oregon'),
(64174, 53487, 'en', 'name', 'Westover Heights Clinic'),
(64175, 53488, 'en', 'name', 'St. Johns Center for Clinical Research'),
(64176, 53489, 'en', 'name', 'Northwest Osteopathic Medical Foundation'),
(64177, 53490, 'en', 'name', 'Swedish Association for Sexuality Education'),
(64178, 53490, 'sv', 'name', 'Riksfƶrbundet fƶr sexuell upplysning'),
(64179, 53491, 'en', 'name', 'National Genealogical Society'),
(64180, 53492, 'no_lang_code', 'name', 'Cidara Therapeutics (United States)'),
(64181, 53493, 'en', 'name', 'American Society of Pediatric Nephrology'),
(64182, 53494, 'en', 'name', 'Good Samaritan Regional Medical Center'),
(64183, 53495, 'cs', 'name', 'ČeskÔ ženskÔ lobby'),
(64184, 53495, 'en', 'name', 'Czech Womens Lobby'),
(64185, 53496, 'en', 'name', 'Myer Foundation'),
(64186, 53497, 'en', 'name', 'NEA Foundation'),
(64187, 53498, 'en', 'name', 'Lupina Foundation'),
(64188, 53499, 'en', 'name', 'Grant Healthcare Foundation'),
(64189, 53500, 'es', 'name', 'Hospital General Universitario Los Arcos del Mar Menor'),
(64190, 53501, 'en', 'name', 'Delta Dental Plans Association'),
(64191, 53502, 'de', 'name', 'Deutsche Homƶopathie-Union'),
(64192, 53503, 'en', 'name', 'Nova Scotia Provincial Library'),
(64193, 53504, 'no_lang_code', 'name', 'Kanzaki (Japan)'),
(64194, 53505, 'en', 'name', 'Reprogenetics'),
(64195, 53506, 'en', 'name', 'Children''s Hospital of Illinois'),
(64196, 53507, 'en', 'name', 'Rajiv Gandhi Charitable Trust'),
(64197, 53508, 'fr', 'name', 'Fondation du CHUM'),
(64198, 53509, 'en', 'name', 'Horizon Foundation'),
(64199, 53510, 'no_lang_code', 'name', 'Candofilm (Denmark)'),
(64200, 53511, 'en', 'name', 'Migraine Research Foundation'),
(64201, 53512, 'en', 'name', 'Retina Health Center'),
(64202, 53513, 'no_lang_code', 'name', 'Stealth BioTherapeutics (United States)'),
(64203, 53514, 'en', 'name', 'Cystinosis Research Foundation'),
(64204, 53515, 'en', 'name', 'Huisking Foundation'),
(64205, 53516, 'en', 'name', 'American Occupational Therapy Foundation'),
(64206, 53517, 'no_lang_code', 'name', 'Littelfuse (United States)'),
(64207, 53518, 'no_lang_code', 'name', 'Ogeda (Belgium)'),
(64208, 53519, 'en', 'name', 'Cancer Treatment Centers of America'),
(64209, 53520, 'it', 'name', 'Fondazione Antonio Carlo Monzino'),
(64210, 53521, 'no_lang_code', 'name', 'Karl Mayer (Germany)'),
(64211, 53522, 'no_lang_code', 'name', 'Amgen (Switzerland)'),
(64212, 53523, 'no_lang_code', 'name', 'Anergis (Switzerland)'),
(64213, 53524, 'no_lang_code', 'name', 'J&S Studies'),
(64214, 53525, 'en', 'name', 'Summit Research Network'),
(64215, 53526, 'en', 'name', 'IVI Madrid Clinic'),
(64216, 53527, 'fr', 'name', 'Fondation Max van Berchem'),
(64217, 53528, 'en', 'name', 'Center for the Study of Technology and Society'),
(64218, 53529, 'en', 'name', 'Garrett B Smith Foundation'),
(64219, 53530, 'en', 'name', 'Annie E. Casey Foundation'),
(64220, 53531, 'en', 'name', 'College Station Medical Center'),
(64221, 53532, 'en', 'name', 'Real Impact Analytics'),
(64222, 53533, 'en', 'name', 'Lawrence T. & Janet T. Dee Foundation'),
(64223, 53534, 'no_lang_code', 'name', 'Providence Service Corporation (United States)'),
(64224, 53535, 'es', 'name', 'Unidad de CirugĆ­a Cardiovascular de Guatemala'),
(64225, 53536, 'en', 'name', 'Alexia Foundation'),
(64226, 53537, 'en', 'name', 'Pakistan Institute of Learning and Living'),
(64227, 53538, 'en', 'name', 'Carolina Clinical Research Services'),
(64228, 53539, 'de', 'name', 'Generaldirektion Justiz und Verbraucher'),
(64229, 53539, 'en', 'name', 'Directorate-General for Justice and Consumers'),
(64230, 53539, 'fr', 'name', 'Direction GƩnƩrale Justice et Consommateurs'),
(64231, 53540, 'es', 'name', 'Fundación Kovacs'),
(64232, 53541, 'en', 'name', 'Green Dot Public Schools'),
(64233, 53542, 'de', 'name', 'Jacques und Gloria Gossweiler - Stiftung'),
(64234, 53542, 'en', 'name', 'Jacques and Gloria Gossweiler Foundation'),
(64235, 53543, 'en', 'name', 'Global Foundation for Peroxisomal Disorders'),
(64236, 53544, 'en', 'name', 'Outward Bound'),
(64237, 53545, 'en', 'name', 'Rockwood Clinic'),
(64238, 53546, 'en', 'name', 'Oncology Specialists'),
(64239, 53547, 'it', 'name', 'Trials Italiani in Oncologia Medica'),
(64240, 53548, 'en', 'name', 'International Education Research Foundation'),
(64241, 53549, 'no_lang_code', 'name', 'Plastic Omnium (Belgium)'),
(64242, 53550, 'pl', 'name', 'Białowieski Park Narodowy, Białowieża National Park'),
(64243, 53551, 'en', 'name', 'NIHR Wellcome Trust Southampton Clinical Research Facility'),
(64244, 53552, 'en', 'name', 'Pennsylvania Partnerships for Children'),
(64245, 53553, 'en', 'name', 'Mount Carmel East'),
(64246, 53554, 'en', 'name', 'Skin Care and Laser Physicians of Beverly Hills'),
(64247, 53555, 'no_lang_code', 'name', 'Norgine (United Kingdom)'),
(64248, 53556, 'en', 'name', 'Albert and Margaret Alkek Foundation'),
(64249, 53557, 'no_lang_code', 'name', 'Leggett and Platt (United States)'),
(64250, 53558, 'sv', 'name', 'Mora lasarett'),
(64251, 53559, 'en', 'name', 'CLL Global Research Foundation'),
(64252, 53560, 'no_lang_code', 'name', 'Ensinger Mineral-Heilquellen (Germany)'),
(64253, 53561, 'no_lang_code', 'name', 'Ifm electronic (Germany)'),
(64254, 53562, 'en', 'name', 'CliniRx Tangent Research'),
(64255, 53563, 'no_lang_code', 'name', 'Avraham Pharmaceuticals (Israel)'),
(64256, 53564, 'no_lang_code', 'name', 'Zambon (Spain)'),
(64257, 53565, 'en', 'name', 'Pennsylvania Chamber of Business and Industry'),
(64258, 53566, 'en', 'name', 'Muskingum County Community Foundation'),
(64259, 53567, 'no_lang_code', 'name', 'MDS Associates (United States)'),
(64260, 53568, 'en', 'name', 'World Health Organization - Pakistan'),
(64261, 53569, 'en', 'name', 'Texas ENT and Allergy'),
(64262, 53570, 'no_lang_code', 'name', 'AfricaBio'),
(64263, 53571, 'ja', 'name', 'ę˜Žé›»čˆŽę Ŗå¼ä¼šē¤¾'),
(64264, 53571, 'no_lang_code', 'name', 'Meidensha (Japan)'),
(64265, 53572, 'en', 'name', 'Dermatology Associates of Seattle'),
(64266, 53573, 'no_lang_code', 'name', 'Datastat'),
(64267, 53574, 'no_lang_code', 'name', 'DrƤxlmaier (Germany)'),
(64268, 53575, 'en', 'name', 'Georgia Forestry Association'),
(64269, 53576, 'nl', 'name', 'Vredeseilanden'),
(64270, 53577, 'no_lang_code', 'name', 'Sacmi (Italy)'),
(64271, 53578, 'en', 'name', 'Memorial Foundation for Jewish Culture'),
(64272, 53579, 'no_lang_code', 'name', 'Trio Medicines (United Kingdom)'),
(64273, 53580, 'en', 'name', 'American Association of Equine Practitioners'),
(64274, 53581, 'en', 'name', 'Denver Arthritis Clinic'),
(64275, 53582, 'en', 'name', 'Microfinance Opportunities'),
(64276, 53583, 'en', 'name', 'Third Way'),
(64277, 53584, 'fr', 'name', 'Clinique Ambroise ParƩ'),
(64278, 53585, 'fr', 'name', 'Centre de Recherche Dermatologique du QuƩbec MƩtropolitain'),
(64279, 53586, 'en', 'name', 'Medex Healthcare Research'),
(64280, 53587, 'en', 'name', 'Dermatology Specialists'),
(64281, 53588, 'no_lang_code', 'name', 'Mesoestetic Pharma (Spain)'),
(64282, 53589, 'en', 'name', 'National Association of Charter School Authorizers'),
(64283, 53590, 'it', 'name', 'Azienda UnitĆ  Sanitaria Locale Rimini'),
(64284, 53591, 'no_lang_code', 'name', 'Motif BioSciences (United States)'),
(64285, 53592, 'en', 'name', 'Picker Institute Europe'),
(64286, 53593, 'en', 'name', 'Esther B. Kahn Charitable Foundation'),
(64287, 53594, 'en', 'name', 'Bruner Foundation'),
(64288, 53595, 'no_lang_code', 'name', 'Innovaderm (Canada)'),
(64289, 53596, 'en', 'name', 'Lynch Foundation'),
(64290, 53597, 'en', 'name', 'Butz Foundation'),
(64291, 53598, 'no_lang_code', 'name', 'Tetraphase Pharmaceuticals (United States)'),
(64292, 53599, 'en', 'name', 'Urology Team'),
(64293, 53600, 'en', 'name', 'Sacramento Public Library'),
(64294, 53601, 'en', 'name', 'Wild Sheep Foundation'),
(64295, 53602, 'en', 'name', 'Ear Medical Group'),
(64296, 53603, 'no_lang_code', 'name', 'Craft Technologies (United States)'),
(64297, 53604, 'en', 'name', 'Gheens Foundation'),
(64298, 53605, 'no_lang_code', 'name', 'Sandvik (Finland)'),
(64299, 53606, 'en', 'name', 'Hillcrest Family Practice'),
(64300, 53607, 'no_lang_code', 'name', 'Khanyisa Projects'),
(64301, 53608, 'en', 'name', 'Pulmonary Associates'),
(64302, 53609, 'en', 'name', 'Christie''s Place'),
(64303, 53610, 'en', 'name', 'Civil Society Legislative Advocacy Centre'),
(64304, 53611, 'en', 'name', 'BlueCross BlueShield of South Carolina Foundation'),
(64305, 53612, 'en', 'name', 'Iris & B. Gerald Cantor Foundation'),
(64306, 53613, 'no_lang_code', 'name', 'Asarina Pharma (Sweden)'),
(64307, 53614, 'en', 'name', 'Minnesota Colon and Rectal Foundation'),
(64308, 53615, 'en', 'name', 'Nature Conservation Agency'),
(64309, 53615, 'lv', 'name', 'Dabas aizsardzības pārvalde'),
(64310, 53616, 'en', 'name', 'America’s Job Center of California'),
(64311, 53617, 'en', 'name', 'Acrobatiq'),
(64312, 53618, 'fr', 'name', 'Clinique Les Fontaines'),
(64313, 53619, 'en', 'name', 'Joyce Foundation'),
(64314, 53620, 'no_lang_code', 'name', 'Takeda (Belgium)'),
(64315, 53621, 'no_lang_code', 'name', 'GWT-TUD (Germany)'),
(64316, 53622, 'en', 'name', 'National Center for State Courts'),
(64317, 53623, 'en', 'name', 'Express TV Production'),
(64318, 53624, 'no_lang_code', 'name', 'Boiron (France)'),
(64319, 53625, 'no_lang_code', 'name', 'Betagenon (Sweden)'),
(64320, 53626, 'en', 'name', 'Multiple Sclerosis Foundation'),
(64321, 53627, 'en', 'name', 'Brad Kamisky Foundation'),
(64322, 53628, 'no_lang_code', 'name', 'Biocon (Switzerland)'),
(64323, 53629, 'no_lang_code', 'name', 'MaxLinear (United States)'),
(64324, 53630, 'no_lang_code', 'name', 'Ziarco (United Kingdom)'),
(64325, 53631, 'no_lang_code', 'name', 'AZAD Pharma (Switzerland)'),
(64326, 53632, 'en', 'name', 'Goldman Philanthropic Partnerships'),
(64327, 53633, 'en', 'name', 'Institute for College Access and Success'),
(64328, 53634, 'en', 'name', 'Center for Financial Services Innovation'),
(64329, 53635, 'no_lang_code', 'name', 'JNC (Japan)'),
(64330, 53636, 'en', 'name', 'Pan-Mass Challenge'),
(64331, 53637, 'en', 'name', 'Beijing NGO Association for International Exchanges'),
(64332, 53637, 'zh', 'name', 'åŒ—äŗ¬åø‚ę°‘é—“ē»„ē»‡å›½é™…äŗ¤ęµåä¼š'),
(64333, 53638, 'es', 'name', 'Centro de Retina Médica y Quirúrgica'),
(64334, 53639, 'sv', 'name', 'IngaBritt och Arne Lundbergs Forskningsstiftelse'),
(64335, 53640, 'de', 'name', 'Alfried Krupp Krankenhaus'),
(64336, 53640, 'en', 'name', 'Alfried Krupp Hospital'),
(64337, 53641, 'en', 'name', 'New England Institute for Neurology and Headache'),
(64338, 53642, 'no_lang_code', 'name', 'Bird Technologies (United States)'),
(64339, 53643, 'no_lang_code', 'name', 'Kobelco Construction Machinery (Japan)'),
(64340, 53644, 'en', 'name', 'Comanis Foundation'),
(64341, 53645, 'en', 'name', 'Mercy Corps'),
(64342, 53646, 'de', 'name', 'Fazit-Stiftung'),
(64343, 53647, 'en', 'name', 'Davis Phinney Foundation'),
(64344, 53648, 'en', 'name', 'Executive Environment Agency'),
(64345, 53649, 'de', 'name', 'Unfallkrankenhaus Salzburg'),
(64346, 53650, 'en', 'name', 'Oyster Point Family Health Center'),
(64347, 53651, 'en', 'name', 'Kent Richard Hofmann Foundation'),
(64348, 53652, 'en', 'name', 'ChadTough Foundation'),
(64349, 53653, 'en', 'name', 'Northwest Territories Public Library Services'),
(64350, 53654, 'en', 'name', 'Fellowship Fund Inc'),
(64351, 53655, 'no_lang_code', 'name', 'ARaymond (France)'),
(64352, 53656, 'en', 'name', 'Human Rights Foundation'),
(64353, 53657, 'en', 'name', 'Oikos – Cooperation and Development'),
(64354, 53657, 'pt', 'name', 'Oikos – Cooperação e Desenvolvimento'),
(64355, 53658, 'en', 'name', 'World Federation of Public Health Associations'),
(64356, 53659, 'en', 'name', 'Wyndhurst Counseling Center'),
(64357, 53660, 'nl', 'name', 'AZ Delta'),
(64358, 53661, 'en', 'name', 'American Society of Health Economists'),
(64359, 53662, 'en', 'name', 'Redwood Family Dermatology'),
(64360, 53663, 'no_lang_code', 'name', 'AMO Pharma (United Kingdom)'),
(64361, 53664, 'en', 'name', 'Fionia Fond'),
(64362, 53665, 'en', 'name', 'National Association for the Education of Young Children'),
(64363, 53666, 'en', 'name', 'JƦren District Psychiatric Centre'),
(64364, 53666, 'no', 'name', 'JƦren distriktspsykiatriske senter'),
(64365, 53667, 'no_lang_code', 'name', 'Roche (Spain)'),
(64366, 53668, 'no_lang_code', 'name', 'Viessmann (Germany)'),
(64367, 53669, 'en', 'name', 'International Development Enterprises'),
(64368, 53670, 'en', 'name', 'Fujiwara Natural History Foundation'),
(64369, 53670, 'ja', 'name', 'č—¤åŽŸč‡Ŗē„¶ę­“å²č²”å›£'),
(64370, 53671, 'en', 'name', 'Chinese People ''s Liberation Army No. 85 Hospital'),
(64371, 53671, 'zh', 'name', '第85医院'),
(64372, 53672, 'no_lang_code', 'name', 'Astellas Pharma (Germany)'),
(64373, 53673, 'no_lang_code', 'name', 'African Fertilizer and Agribusiness Partnership'),
(64374, 53674, 'en', 'name', 'Community Research Initiative'),
(64375, 53675, 'en', 'name', 'Tower Cancer Research Foundation'),
(64376, 53676, 'en', 'name', 'British Society For Parasitology'),
(64377, 53677, 'en', 'name', 'National Foundation for the Deaf'),
(64378, 53678, 'en', 'name', 'Imaging the World'),
(64379, 53679, 'no_lang_code', 'name', 'Smiths Group (United States)'),
(64380, 53680, 'no_lang_code', 'name', 'Oncopeptides (Sweden)'),
(64381, 53681, 'en', 'name', 'Shenzhen Luohu People''s Hospital'),
(64382, 53681, 'zh', 'name', 'ę·±åœ³ē½—ę¹–åŒŗäŗŗę°‘åŒ»é™¢'),
(64383, 53682, 'en', 'name', 'First Fruit'),
(64384, 53683, 'en', 'name', 'KIPP LA Schools'),
(64385, 53684, 'en', 'name', 'Invergowrie Foundation'),
(64386, 53685, 'en', 'name', 'American Association of Plastic Surgeons'),
(64387, 53686, 'pl', 'name', 'Centrum Aktywności Społecznej Pryzmat'),
(64388, 53687, 'no_lang_code', 'name', 'Alfa Wassermann (Poland)'),
(64389, 53688, 'pl', 'name', 'Samodzielny Publiczny Zakład Opieki Zdrowotnej w Lubartowie'),
(64390, 53689, 'en', 'name', 'Water Sanitation and Hygiene Institute'),
(64391, 53690, 'no_lang_code', 'name', 'SleepMed'),
(64392, 53691, 'en', 'name', 'IVI Sevilla Clinic'),
(64393, 53692, 'no_lang_code', 'name', 'Kuros Biosciences (Switzerland)'),
(64394, 53693, 'en', 'name', 'Christopher Ricardo Cystic Fibrosis Foundation'),
(64395, 53694, 'en', 'name', 'Youth Leadership Institute'),
(64396, 53695, 'en', 'name', 'Seattle Center Foundation'),
(64397, 53696, 'no_lang_code', 'name', 'Diomed (United Kingdom)'),
(64398, 53697, 'en', 'name', 'Foundation Milena Carvajal - Pro-Kartagener'),
(64399, 53698, 'en', 'name', 'Collins Medical Trust'),
(64400, 53699, 'no_lang_code', 'name', 'Frontier Environmental Technology (United States)'),
(64401, 53700, 'pl', 'name', 'Wojewódzki Szpital Obserwacyjno-Zakaźny im. Tadeusza Browicza w Bydgoszczy'),
(64402, 53701, 'en', 'name', 'Jeffrey Modell Foundation'),
(64403, 53702, 'en', 'name', 'Wajir County Government'),
(64404, 53703, 'en', 'name', 'Arizona Heart Hospital'),
(64405, 53704, 'en', 'name', 'Mayday Fund'),
(64406, 53705, 'en', 'name', 'Innovation Center Denmark'),
(64407, 53706, 'de', 'name', 'Grachtenhaus-Apotheke'),
(64408, 53707, 'no_lang_code', 'name', 'GN Store Nord (Denmark)'),
(64409, 53708, 'en', 'name', 'Sacramento County Office of Education'),
(64410, 53709, 'en', 'name', 'Grass Foundation'),
(64411, 53710, 'en', 'name', 'Adult Anxiety Clinic of Temple'),
(64412, 53711, 'en', 'name', 'BMI Foundation'),
(64413, 53712, 'en', 'name', 'Small Enterprise Education and Promotion Network'),
(64414, 53713, 'nl', 'name', 'Borstkanker Onderzoek Groep'),
(64415, 53714, 'en', 'name', 'Innovations for Poverty Action'),
(64416, 53715, 'no_lang_code', 'name', 'Maire Tecnimont (Netherlands)'),
(64417, 53716, 'en', 'name', 'Connecticut Health Foundation'),
(64418, 53717, 'en', 'name', 'Red Cross Society of China'),
(64419, 53717, 'zh', 'name', 'äø­å›½ēŗ¢åå­—ä¼š'),
(64420, 53718, 'en', 'name', 'Irish Hospice Foundation'),
(64421, 53719, 'en', 'name', 'Rongcheng City People''s Hospital'),
(64422, 53719, 'zh', 'name', 'č£ęˆäŗŗę°‘åŒ»é™¢'),
(64423, 53720, 'en', 'name', 'Academy of Architecture for Health Foundation'),
(64424, 53721, 'en', 'name', 'Parkinson''s Queensland'),
(64425, 53722, 'no_lang_code', 'name', 'ProMOS Technologies (Taiwan)'),
(64426, 53723, 'en', 'name', 'Genesis HealthCare'),
(64427, 53724, 'en', 'name', 'Felix Scholarship'),
(64428, 53725, 'fr', 'name', 'Groupe Francophone des MyƩlodysplasies'),
(64429, 53726, 'bg', 'name', 'ŠžŠ±Ń‰ŠøŠ½Š° Š‘Ń€Š°Ń‚Ń Даскалови'),
(64430, 53726, 'en', 'name', 'Bratya Daskalovi Municipality'),
(64431, 53727, 'en', 'name', 'Educational Foundation for Women in Accounting'),
(64432, 53728, 'en', 'name', 'Romanian Institute of Science and Technology'),
(64433, 53728, 'ro', 'name', 'Institutul RomĆ¢n de Ştiinţă şi Tehnologie'),
(64434, 53729, 'en', 'name', 'Jewish Child & Family Services'),
(64435, 53730, 'en', 'name', 'Northwest Parkinson’s Foundation'),
(64436, 53731, 'de', 'name', 'Augenklinik UniversitƤtsallee'),
(64437, 53732, 'en', 'name', 'Oprah''s Angel Network'),
(64438, 53733, 'no_lang_code', 'name', 'Welch Allyn (United States)'),
(64439, 53734, 'no_lang_code', 'name', 'Moulinex (France)'),
(64440, 53735, 'es', 'name', 'Fundación Hospital Provincial de Castellón'),
(64441, 53736, 'pt', 'name', 'Hospital do Coração'),
(64442, 53737, 'en', 'name', 'Internet Society'),
(64443, 53738, 'nl', 'name', 'Stichting Kind en Groei'),
(64444, 53739, 'no_lang_code', 'name', 'Exalenz Bioscience (Israel)'),
(64445, 53740, 'en', 'name', 'Henry County Community Foundation'),
(64446, 53741, 'no_lang_code', 'name', 'Infineon Technologies (United States)'),
(64447, 53742, 'en', 'name', 'Professional Educator Standards Board'),
(64448, 53743, 'en', 'name', 'Professional Education and Research Institute'),
(64449, 53744, 'bg', 'name', 'ТокуГа Болница Š”Š¾Ń„ŠøŃ'),
(64450, 53744, 'no_lang_code', 'name', 'Tokuda Hospital'),
(64451, 53745, 'no_lang_code', 'name', 'AstraZeneca (Italy)'),
(64452, 53746, 'en', 'name', 'Gainesville Obstetrics & Gynecology'),
(64453, 53747, 'no_lang_code', 'name', 'Amphenol (Germany)'),
(64454, 53748, 'pt', 'name', 'Sport Club Corinthians Paulista'),
(64455, 53749, 'no_lang_code', 'name', 'Sanol (Germany)'),
(64456, 53750, 'no_lang_code', 'name', 'PathAI (United States)'),
(64457, 53751, 'en', 'name', 'Veracity Clinical Research'),
(64458, 53752, 'en', 'name', 'Cure Starts Now Foundation'),
(64459, 53753, 'no_lang_code', 'name', 'Thea (France)'),
(64460, 53754, 'en', 'name', 'Bergen Research Foundation'),
(64461, 53754, 'no', 'name', 'Bergens Forskningsstiftelse'),
(64462, 53755, 'en', 'name', 'Optimed Eye and Laser Clinic'),
(64463, 53756, 'en', 'name', 'IMB Bank'),
(64464, 53757, 'en', 'name', 'Seattle Indian Health Board'),
(64465, 53758, 'en', 'name', 'Somdet Chaopraya Institute of Psychiatry'),
(64466, 53758, 'th', 'name', 'ąøŖąø”ą¹€ąø”ą¹‡ąøˆąøŖąø–ąø²ąøšąø±ąø™ąøˆąø“ąø•ą¹€ąø§ąøŠąøØąø²ąøŖąø•ąø£ą¹Œ'),
(64467, 53759, 'en', 'name', 'Cure Kids'),
(64468, 53760, 'en', 'name', 'Biomass Controls'),
(64469, 53761, 'en', 'name', 'Moss Memorial Health Clinic'),
(64470, 53762, 'no_lang_code', 'name', 'Ethypharm (France)'),
(64471, 53763, 'en', 'name', 'Norwegian Womens Public Health Association'),
(64472, 53763, 'no', 'name', 'Norske Kvinners Sanitetsforening'),
(64473, 53764, 'en', 'name', 'Virology Education'),
(64474, 53765, 'en', 'name', 'National Association of Medicaid Directors'),
(64475, 53766, 'en', 'name', 'North Shore Diabetes and Endocrine Associates'),
(64476, 53767, 'de', 'name', 'Fritz Bender Stiftung'),
(64477, 53768, 'en', 'name', 'American Society of Consultant Pharmacists'),
(64478, 53769, 'en', 'name', 'Cleft Palate Foundation'),
(64479, 53770, 'en', 'name', 'Universal Health Care Action Network'),
(64480, 53771, 'en', 'name', 'Carmel Mountain Vision Care'),
(64481, 53772, 'en', 'name', 'Canavan Research Foundation'),
(64482, 53773, 'en', 'name', 'Adenoid Cystic Carcinoma Research Foundation'),
(64483, 53774, 'no_lang_code', 'name', 'Canon (Germany)'),
(64484, 53775, 'en', 'name', 'National Institute for Staff and Organizational Development'),
(64485, 53776, 'en', 'name', 'Fahs-Beck Fund for Research and Experimentation'),
(64486, 53777, 'en', 'name', 'Family Care Foundation'),
(64487, 53778, 'no_lang_code', 'name', 'Innothera (France)'),
(64488, 53779, 'no_lang_code', 'name', 'Alio Medica (Poland)'),
(64489, 53780, 'en', 'name', 'St. Cloud Orthopedic Associates'),
(64490, 53781, 'no_lang_code', 'name', 'Hettich (Germany)'),
(64491, 53782, 'en', 'name', 'Mahila Abhivruddhi Society, Andhra Pradesh'),
(64492, 53783, 'en', 'name', 'Goizueta Foundation'),
(64493, 53784, 'it', 'name', 'Fondazione Cariparma'),
(64494, 53785, 'en', 'name', 'Autism CRC'),
(64495, 53786, 'no_lang_code', 'name', 'Roivant Sciences (United States)'),
(64496, 53787, 'no_lang_code', 'name', 'KGK Synergize (Canada)'),
(64497, 53788, 'en', 'name', 'Colossian Forum'),
(64498, 53789, 'no_lang_code', 'name', 'Besins Healthcare (Belgium)'),
(64499, 53790, 'no_lang_code', 'name', 'RadioMedic (Czechia)'),
(64500, 53791, 'en', 'name', 'International Dermatology Research'),
(64501, 53792, 'en', 'name', 'Dawes Fretzin Clinical Research Group'),
(64502, 53793, 'no_lang_code', 'name', 'Renovo (United Kingdom)'),
(64503, 53794, 'en', 'name', 'Crystal Clinic Orthopedic Center'),
(64504, 53795, 'no_lang_code', 'name', 'InfectoPharm (Germany)'),
(64505, 53796, 'hu', 'name', 'Inwatech KƶrnyezetvƩdelmi Kft'),
(64506, 53796, 'no_lang_code', 'name', 'Inwatech (Hungary)'),
(64507, 53797, 'en', 'name', 'Advanced Neurosciences Institute'),
(64508, 53798, 'pl', 'name', 'InterLab Poznan'),
(64509, 53799, 'no_lang_code', 'name', 'Pharmalink (Sweden)'),
(64510, 53800, 'sv', 'name', 'Beroendecentrum Stockholm'),
(64511, 53801, 'no_lang_code', 'name', 'Getrag (Germany)'),
(64512, 53802, 'no_lang_code', 'name', 'Well Told Story (Kenya)'),
(64513, 53803, 'en', 'name', 'Skillpoint Alliance'),
(64514, 53804, 'en', 'name', 'A-T Children''s Project'),
(64515, 53805, 'en', 'name', 'Medical Research Associates'),
(64516, 53806, 'it', 'name', 'Associazione Italiana Rett'),
(64517, 53807, 'en', 'name', 'Mount Zion Health Fund'),
(64518, 53808, 'en', 'name', 'British Society for the History of Science'),
(64519, 53809, 'en', 'name', 'International Game Developers Association Foundation'),
(64520, 53810, 'de', 'name', 'Caritas-Krankenhaus Bad Mergentheim'),
(64521, 53811, 'pt', 'name', 'Hospital Fernandes TƔvora'),
(64522, 53812, 'en', 'name', 'Slovinski National Park'),
(64523, 53812, 'pl', 'name', 'Słowiński Park Narodowy'),
(64524, 53813, 'no_lang_code', 'name', 'Dimension Therapeutics (United States)'),
(64525, 53814, 'en', 'name', 'TDX Construction'),
(64526, 53815, 'no_lang_code', 'name', 'Ahlstrom-Munksjƶ (Finland)'),
(64527, 53816, 'no_lang_code', 'name', 'Advicenne Pharma (France)'),
(64528, 53817, 'en', 'name', 'Law Foundation of Nova Scotia'),
(64529, 53818, 'en', 'name', 'Good Samaritan Society'),
(64530, 53819, 'en', 'name', 'M S Ramaiah Memorial Hospital'),
(64531, 53819, 'kn', 'name', 'ą²°ą²¾ą²®ą²Æą³ą²Æ ą²øą³ą²®ą²¾ą²°ą²• ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(64532, 53820, 'en', 'name', 'George Institute for Global Health'),
(64533, 53821, 'no_lang_code', 'name', 'Keilir Academy'),
(64534, 53822, 'en', 'name', 'Poynter Institute for Media Studies'),
(64535, 53823, 'no_lang_code', 'name', 'Rockwool (Denmark)'),
(64536, 53824, 'fr', 'name', 'Fondation Bertarelli'),
(64537, 53825, 'no_lang_code', 'name', 'Conatus Pharmaceuticals (United States)'),
(64538, 53826, 'en', 'name', 'ScienceSites'),
(64539, 53827, 'en', 'name', 'Blue Shield of California Foundation'),
(64540, 53828, 'no_lang_code', 'name', 'Ergomed Clinical Research (United Kingdom)'),
(64541, 53829, 'no_lang_code', 'name', 'Applied Medical Resources (United States)'),
(64542, 53830, 'en', 'name', 'Cancer Aid and Research Fund'),
(64543, 53831, 'no_lang_code', 'name', 'CTI BioPharma (Italy)'),
(64544, 53832, 'en', 'name', 'Camargo Foundation'),
(64545, 53833, 'en', 'name', 'Canadian Foundation for AIDS Research'),
(64546, 53833, 'fr', 'name', 'Fondation Canadienne de Recherche sur le Sida'),
(64547, 53834, 'en', 'name', 'Danish Breast Cancer Cooperative Group'),
(64548, 53835, 'no_lang_code', 'name', 'Doosan (United States)'),
(64549, 53836, 'en', 'name', 'San Diego Cardiac Center'),
(64550, 53837, 'en', 'name', 'Eye Disease Foundation'),
(64551, 53837, 'fr', 'name', 'Fondation des maladies de l''oeil'),
(64552, 53838, 'en', 'name', 'Interstitial Cystitis Association'),
(64553, 53839, 'en', 'name', 'Myers Street Family Medical Practice'),
(64554, 53840, 'en', 'name', 'Beaver County Foundation'),
(64555, 53841, 'en', 'name', 'Omega Medical Research'),
(64556, 53842, 'en', 'name', 'Community Foundation of North Central Washington'),
(64557, 53843, 'no_lang_code', 'name', 'Walmart (United States)'),
(64558, 53844, 'en', 'name', 'Dalberg Global Development Advisors'),
(64559, 53845, 'en', 'name', 'Association for Academic Surgery Foundation'),
(64560, 53846, 'no_lang_code', 'name', 'Huf Hülsbeck & Fürst (Germany)'),
(64561, 53847, 'no_lang_code', 'name', 'Clovis Oncology (United Kingdom)'),
(64562, 53848, 'en', 'name', 'eHealth Initiative'),
(64563, 53849, 'en', 'name', 'Allergy Associates Research Center'),
(64564, 53850, 'en', 'name', 'Canadian Nurses Foundation'),
(64565, 53850, 'fr', 'name', 'La Fondation des InfirmiĆØres et Infirmiers du Canada'),
(64566, 53851, 'fr', 'name', 'Fondation Charcot'),
(64567, 53852, 'en', 'name', 'Berks County Community Foundation'),
(64568, 53853, 'en', 'name', 'Chrysalis'),
(64569, 53854, 'en', 'name', 'Global Association of Risk Professionals'),
(64570, 53855, 'en', 'name', 'Austrian Economics Center'),
(64571, 53856, 'en', 'name', 'Epilepsy Foundation'),
(64572, 53857, 'da', 'name', 'Elsass Fonden'),
(64573, 53857, 'en', 'name', 'Elsass Foundation'),
(64574, 53858, 'de', 'name', 'Institut für Schallforschung'),
(64575, 53858, 'en', 'name', 'Acoustics Research Institute'),
(64576, 53859, 'en', 'name', 'Free the Slaves'),
(64577, 53860, 'fr', 'name', 'Clinique ClƩmentville'),
(64578, 53861, 'en', 'name', 'National League for Nursing'),
(64579, 53862, 'en', 'name', 'Cares Foundation'),
(64580, 53863, 'en', 'name', 'Durfee Foundation'),
(64581, 53864, 'no_lang_code', 'name', 'Siegenia (Germany)'),
(64582, 53865, 'no_lang_code', 'name', 'Strix (Isle of Man)'),
(64583, 53866, 'en', 'name', 'National Endowment for Democracy'),
(64584, 53867, 'en', 'name', 'Kowa Life Science Foundation'),
(64585, 53867, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ čˆˆå’Œē”Ÿå‘½ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(64586, 53868, 'en', 'name', 'Beckman Coulter Foundation'),
(64587, 53869, 'en', 'name', 'Institute for Aegean Prehistory'),
(64588, 53870, 'en', 'name', 'Australasian Centre for Italian Studies'),
(64589, 53871, 'en', 'name', 'St. Francis Community Hospital'),
(64590, 53872, 'en', 'name', 'S.L. Raheja Hospital'),
(64591, 53873, 'en', 'name', 'Clinical Research Associates'),
(64592, 53874, 'en', 'name', 'Greater Greenbrier Valley Community Foundation'),
(64593, 53875, 'en', 'name', 'Ursuline Academy of Dallas'),
(64594, 53876, 'no_lang_code', 'name', 'Univercells (Belgium)'),
(64595, 53877, 'en', 'name', 'Shalby Hospitals'),
(64596, 53878, 'no_lang_code', 'name', 'Acorda Therapeutics (Switzerland)'),
(64597, 53879, 'en', 'name', 'Northeastern Eye Institute'),
(64598, 53880, 'en', 'name', 'Ear Institute of Chicago'),
(64599, 53881, 'en', 'name', 'European Uro Oncology Group'),
(64600, 53882, 'en', 'name', 'Yantai Laiyang Central Hospital'),
(64601, 53882, 'zh', 'name', 'ēƒŸå°čŽ±é˜³äø­åæƒåŒ»é™¢'),
(64602, 53883, 'en', 'name', 'LifeWorks Northwest'),
(64603, 53884, 'no_lang_code', 'name', 'Lycera (United States)'),
(64604, 53885, 'en', 'name', 'Daviess County Public Schools'),
(64605, 53886, 'en', 'name', 'Clinical Trial Network'),
(64606, 53887, 'no_lang_code', 'name', 'TrichoCare (United Kingdom)'),
(64607, 53888, 'no_lang_code', 'name', 'Koncentra (Sweden)'),
(64608, 53889, 'no_lang_code', 'name', 'ViiV Healthcare (Spain)'),
(64609, 53890, 'en', 'name', 'John E. Fogarty Foundation'),
(64610, 53891, 'en', 'name', 'Cato Institute'),
(64611, 53892, 'it', 'name', 'Azienda-Unita'' Sanitaria Locale Di Cesena'),
(64612, 53893, 'no_lang_code', 'name', 'Von Ardenne (Germany)'),
(64613, 53894, 'no_lang_code', 'name', 'Faro Technologies (United States)'),
(64614, 53895, 'en', 'name', 'Washington News Council'),
(64615, 53896, 'no_lang_code', 'name', 'Fujikin (Japan)'),
(64616, 53897, 'no_lang_code', 'name', 'Novartis (Hungary)'),
(64617, 53898, 'en', 'name', 'American Hellenic Educational Progressive Association'),
(64618, 53899, 'en', 'name', 'Grays Harbor Community Foundation'),
(64619, 53900, 'no_lang_code', 'name', 'NeRRe Therapeutics (United Kingdom)'),
(64620, 53901, 'en', 'name', 'Ulyanovsk Regional Oncology Center'),
(64621, 53901, 'ru', 'name', 'Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ клинический онкологический Гиспансер'),
(64622, 53902, 'en', 'name', 'PUC Schools'),
(64623, 53903, 'fr', 'name', 'Association pour la Recherche de ThƩrapeutiques Innovantes en CancƩrologie'),
(64624, 53904, 'en', 'name', 'Carl Wilson Foundation'),
(64625, 53905, 'en', 'name', 'Greater Houston Community Foundation'),
(64626, 53906, 'no_lang_code', 'name', 'Walter Reist Holding (Switzerland)'),
(64627, 53907, 'no_lang_code', 'name', 'Kalliopeia Foundation'),
(64628, 53908, 'de', 'name', 'Hasler Stiftung'),
(64629, 53908, 'en', 'name', 'Hasler Foundation'),
(64630, 53909, 'no_lang_code', 'name', 'BOS (Germany)'),
(64631, 53910, 'en', 'name', 'Southern Eye Associates'),
(64632, 53911, 'en', 'name', 'Christie''s'),
(64633, 53912, 'en', 'name', 'Australian Society of Exploration Geophysicists'),
(64634, 53913, 'en', 'name', 'Berks County Public Libraries'),
(64635, 53914, 'en', 'name', 'ARISE The Scoliosis Research Trust'),
(64636, 53915, 'en', 'name', 'DaVita Clinical Research (United States)'),
(64637, 53916, 'de', 'name', 'Claussen Simon Stiftung'),
(64638, 53917, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚½ć‚·ć‚Ŗćƒć‚Æć‚¹ćƒˆ'),
(64639, 53917, 'no_lang_code', 'name', 'Socionext (Japan)'),
(64640, 53918, 'en', 'name', 'Summit Health Institute for Research and Education'),
(64641, 53919, 'en', 'name', 'Ralph M. Parsons Foundation'),
(64642, 53920, 'no_lang_code', 'name', 'Nasdaq (United States)');
INSERT INTO `ror_settings` VALUES
(64643, 53921, 'en', 'name', 'Field Foundation'),
(64644, 53922, 'en', 'name', 'Diabetes Technology Society'),
(64645, 53923, 'no_lang_code', 'name', 'Inmunal (Spain)'),
(64646, 53924, 'en', 'name', 'Japan North America Medical Exchange Foundation'),
(64647, 53924, 'ja', 'name', 'å›½éš›äŗ¤ęµåŸŗé‡‘ ę—„ē±³ć‚»ćƒ³ć‚æćƒ¼'),
(64648, 53925, 'it', 'name', 'Fondazione Cassa di Risparmio Civitavecchia'),
(64649, 53926, 'en', 'name', 'Netcare Unitas Hospital'),
(64650, 53927, 'no_lang_code', 'name', 'Szuro Trade (Hungary)'),
(64651, 53928, 'no_lang_code', 'name', 'Isomark (United States)'),
(64652, 53929, 'no_lang_code', 'name', 'Oncolab (Romania)'),
(64653, 53930, 'en', 'name', 'Ministerial Standing Committee on Scientific and Technological Cooperation of the Organization of Islamic Cooperation'),
(64654, 53931, 'en', 'name', 'Saskatchewan Library Association'),
(64655, 53932, 'en', 'name', 'Midwest Institute for Clinical Research'),
(64656, 53933, 'no_lang_code', 'name', 'Biogen (Italy)'),
(64657, 53934, 'no_lang_code', 'name', 'Walker Digital (United States)'),
(64658, 53935, 'en', 'name', 'Finca International'),
(64659, 53936, 'en', 'name', 'National Women''s Law Center'),
(64660, 53937, 'en', 'name', 'Melbourne Clinic'),
(64661, 53938, 'en', 'name', 'Center for Pastor Theologians'),
(64662, 53939, 'en', 'name', 'Parent Institute for Quality Education'),
(64663, 53940, 'en', 'name', 'United Way of Snohomish County'),
(64664, 53941, 'en', 'name', 'Izumi Foundation'),
(64665, 53942, 'en', 'name', 'Healthy Minds Canada'),
(64666, 53943, 'en', 'name', 'Central Hospital of Zibo'),
(64667, 53943, 'zh', 'name', 'ę·„åšåø‚äø­åæƒåŒ»é™¢'),
(64668, 53944, 'en', 'name', 'Australian Institute of Family Studies'),
(64669, 53945, 'no_lang_code', 'name', 'AgroFresh (United States)'),
(64670, 53946, 'en', 'name', 'NASSCOM Foundation'),
(64671, 53947, 'en', 'name', 'Liberty Laser Eye Center'),
(64672, 53948, 'nl', 'name', 'Libra Revalidatie & Audiologie'),
(64673, 53949, 'de', 'name', 'HELIOS Albert-Schweitzer-Klinik Northeim'),
(64674, 53950, 'en', 'name', 'New Visions for Public Schools'),
(64675, 53951, 'en', 'name', 'Parker Foundation'),
(64676, 53952, 'no_lang_code', 'name', 'Lumen Learning (United States)'),
(64677, 53953, 'en', 'name', 'Southeastern Retina Associates'),
(64678, 53954, 'no_lang_code', 'name', 'Lumentum (United States)'),
(64679, 53955, 'no_lang_code', 'name', 'Apeptico (Austria)'),
(64680, 53956, 'en', 'name', 'NATA Research and Education Foundation'),
(64681, 53957, 'en', 'name', 'Dysautonomia Foundation'),
(64682, 53958, 'en', 'name', 'Eau Claire Community Foundation'),
(64683, 53959, 'no_lang_code', 'name', 'NVision Eye Centers (United States)'),
(64684, 53960, 'en', 'name', 'Central Hospital of Putuo District'),
(64685, 53960, 'zh', 'name', 'ę™®é™€åŒŗäø­åæƒåŒ»é™¢'),
(64686, 53961, 'en', 'name', 'Diabetes Thyroid Hormone Research Institute'),
(64687, 53962, 'en', 'name', 'Neurospine Institute Medical Group'),
(64688, 53963, 'en', 'name', 'Rigpe Dorje Foundation'),
(64689, 53964, 'en', 'name', 'XPRIZE Foundation'),
(64690, 53965, 'no_lang_code', 'name', 'Thrombotargets (Spain)'),
(64691, 53966, 'no_lang_code', 'name', 'Zambart'),
(64692, 53967, 'en', 'name', 'Compal Electronics (Taiwan)'),
(64693, 53967, 'zh', 'name', 'ä»å®ē”µč„‘å·„äøšč‚”ä»½ęœ‰é™å…¬åø'),
(64694, 53968, 'no_lang_code', 'name', 'AbbVie (Spain)'),
(64695, 53969, 'en', 'name', 'Premier Research Group'),
(64696, 53970, 'no_lang_code', 'name', 'Victaulic (United States)'),
(64697, 53971, 'en', 'name', 'St Stephen’s AIDS Trust'),
(64698, 53972, 'en', 'name', 'Cades Schutte'),
(64699, 53973, 'en', 'name', 'National Infrastructure for Microbiological Resources'),
(64700, 53973, 'zh', 'name', 'å›½å®¶å¾®ē”Ÿē‰©čµ„ęŗåŸŗē”€č®¾ę–½'),
(64701, 53974, 'en', 'name', 'The New Teacher Project'),
(64702, 53975, 'no_lang_code', 'name', 'Anthera Pharmaceuticals (United States)'),
(64703, 53976, 'en', 'name', 'Hohhot First Hospital'),
(64704, 53976, 'zh', 'name', 'å‘¼å’Œęµ©ē‰¹ē¬¬äø€åŒ»é™¢'),
(64705, 53977, 'en', 'name', 'International Furnishings and Design Association'),
(64706, 53978, 'no_lang_code', 'name', 'Dynavax Technologies (Germany)'),
(64707, 53979, 'en', 'name', 'Interdisciplinary University of Paris'),
(64708, 53979, 'fr', 'name', 'UniversitƩ interdisciplinaire de Paris'),
(64709, 53980, 'en', 'name', 'Barbara Bush Children’s Hospital'),
(64710, 53981, 'en', 'name', 'National Research and Development Institute on Occupational Safety'),
(64711, 53982, 'en', 'name', 'Oregon Department of Education'),
(64712, 53983, 'en', 'name', 'Krzysztof Kluk Museum of Agriculture'),
(64713, 53983, 'pl', 'name', 'Muzeum Rolnictwa im. ks. Krzysztofa Kluka'),
(64714, 53984, 'no_lang_code', 'name', 'Finnair (Finland)'),
(64715, 53985, 'en', 'name', 'Network For Teaching Entrepreneurship'),
(64716, 53986, 'en', 'name', 'Organic Farming Research Foundation'),
(64717, 53987, 'en', 'name', 'American Association of Clinical Endocrinologists'),
(64718, 53988, 'no_lang_code', 'name', 'Vital Therapies (United States)'),
(64719, 53989, 'en', 'name', 'Barrett Bateman Foundation'),
(64720, 53990, 'en', 'name', 'Kortney Rose Foundation'),
(64721, 53991, 'en', 'name', 'Albert J. Ryan Foundation'),
(64722, 53992, 'en', 'name', 'Dystrophic Epidermolysis Bullosa Research Association of America'),
(64723, 53993, 'en', 'name', 'DuPage Mental Health Services'),
(64724, 53994, 'en', 'name', 'Midwestern Higher Education Compact'),
(64725, 53995, 'no_lang_code', 'name', 'PT Bio Farma (Indonesia)'),
(64726, 53996, 'no_lang_code', 'name', 'RSPR Pharma (Sweden)'),
(64727, 53997, 'es', 'name', 'Ocumed Clinica Oftalmologica'),
(64728, 53998, 'en', 'name', 'World Health Organization - Lyon Office'),
(64729, 53999, 'el', 'name', 'ĪŠĪ“ĻĻ…Ī¼Ī± ĪœĻ€ĪæĪ“ĪæĻƒĪ¬ĪŗĪ·'),
(64730, 53999, 'en', 'name', 'Bodossaki Foundation'),
(64731, 54000, 'pt', 'name', 'Hospital de Base'),
(64732, 54001, 'en', 'name', 'Danish Dairy Research Foundation'),
(64733, 54002, 'no_lang_code', 'name', 'Abbott (Sweden)'),
(64734, 54003, 'no_lang_code', 'name', 'Novartis (Norway)'),
(64735, 54004, 'no_lang_code', 'name', 'Accelovance (United States)'),
(64736, 54005, 'en', 'name', 'CJ Foundation for SIDS'),
(64737, 54006, 'en', 'name', 'International Headache Society'),
(64738, 54007, 'en', 'name', 'Kinsman Foundation'),
(64739, 54008, 'en', 'name', 'Canadian Foundation for Dietetic Research'),
(64740, 54008, 'fr', 'name', 'Fondation Canadienne de la Recherche en DiƩtƩtique'),
(64741, 54009, 'en', 'name', 'United Way of Southern Cameron County'),
(64742, 54010, 'fr', 'name', 'HƓpital PrivƩ Jacques Cartier'),
(64743, 54011, 'no_lang_code', 'name', 'Zambon (Belgium)'),
(64744, 54012, 'no_lang_code', 'name', 'Neoleukin Therapeutics (United States)'),
(64745, 54013, 'en', 'name', 'Neurological Surgery'),
(64746, 54014, 'en', 'name', 'State Collaborative on Reforming Education'),
(64747, 54015, 'en', 'name', 'Metro Urology'),
(64748, 54016, 'en', 'name', 'Lice Solutions Resource Network'),
(64749, 54017, 'de', 'name', 'Gottfried und Julia Bangerter-Rhyner-Stiftung'),
(64750, 54018, 'no_lang_code', 'name', 'MAX Automation (Germany)'),
(64751, 54019, 'en', 'name', 'Local Initiatives Support Corporation'),
(64752, 54020, 'en', 'name', 'WellSpan York Hospital'),
(64753, 54021, 'no_lang_code', 'name', 'Amarantus Bioscience (United States)'),
(64754, 54022, 'en', 'name', 'Washington Women''s Foundation'),
(64755, 54023, 'en', 'name', 'American Music Therapy Association'),
(64756, 54024, 'no_lang_code', 'name', 'Zipline International (United States)'),
(64757, 54025, 'no_lang_code', 'name', 'PIQUR Therapeutics (Switzerland)'),
(64758, 54026, 'de', 'name', 'Deutsche Kinderkrebsstiftung'),
(64759, 54027, 'de', 'name', 'Spital Uster'),
(64760, 54028, 'en', 'name', 'Main Line Health'),
(64761, 54029, 'no_lang_code', 'name', 'Pharma Stulln (Germany)'),
(64762, 54030, 'en', 'name', 'Community Foundation of Northeast Alabama'),
(64763, 54031, 'en', 'name', 'Martin Diagnostic Clinic'),
(64764, 54032, 'en', 'name', 'Axiom Clinical Research of Florida'),
(64765, 54033, 'de', 'name', 'Maria Hilf Krankenhaus'),
(64766, 54034, 'en', 'name', 'Cambridge Muslim College'),
(64767, 54035, 'en', 'name', 'Global Communities'),
(64768, 54036, 'en', 'name', 'Atherton Family Foundation'),
(64769, 54037, 'no_lang_code', 'name', 'Bombastus-Werke (Germany)'),
(64770, 54038, 'en', 'name', 'Lynne Cohen Foundation'),
(64771, 54039, 'en', 'name', 'Center for Rheumatology'),
(64772, 54040, 'en', 'name', 'OneBlood'),
(64773, 54041, 'en', 'name', 'Johnson Group Consulting'),
(64774, 54042, 'no_lang_code', 'name', 'Cognitive Research (United States)'),
(64775, 54043, 'en', 'name', 'Milbank Memorial Fund'),
(64776, 54044, 'no_lang_code', 'name', 'SIT Pharmaceutical (Italy)'),
(64777, 54045, 'de', 'name', 'Dr. Walter und Luise Freundlich Stiftung'),
(64778, 54046, 'en', 'name', 'Workforce Snohomish'),
(64779, 54047, 'no_lang_code', 'name', 'Bucher Industries (France)'),
(64780, 54048, 'en', 'name', 'Avail Clinical Research'),
(64781, 54049, 'no_lang_code', 'name', 'Seagull BioSolutions (India)'),
(64782, 54050, 'no_lang_code', 'name', 'AZTherapies (United States)'),
(64783, 54051, 'en', 'name', 'Universal Biopharma Research Institute'),
(64784, 54052, 'en', 'name', 'Canadian Physiotherapy Association'),
(64785, 54053, 'no_lang_code', 'name', 'Roche (Denmark)'),
(64786, 54054, 'en', 'name', 'National Philanthropic Trust'),
(64787, 54055, 'en', 'name', 'Columbia Legal Services'),
(64788, 54056, 'en', 'name', 'North Carolina Clinical Research'),
(64789, 54057, 'en', 'name', 'University Diabetes and Endocrine Consultants'),
(64790, 54058, 'en', 'name', 'Malaysian Agricultural Research and Development Institute'),
(64791, 54058, 'id', 'name', 'Institut Penyelidikan dan Kemajuan Pertanian Malaysia'),
(64792, 54059, 'en', 'name', 'New England Center for Clinical Research'),
(64793, 54060, 'en', 'name', 'Sundance Clinical Research'),
(64794, 54061, 'no_lang_code', 'name', 'Argenx (Belgium)'),
(64795, 54062, 'en', 'name', 'Westside Center for Clinical Research'),
(64796, 54063, 'en', 'name', 'Indian Land Tenure Foundation'),
(64797, 54064, 'en', 'name', 'Institute for National Strategic Studies'),
(64798, 54065, 'en', 'name', 'OrthoGeorgia'),
(64799, 54066, 'en', 'name', 'Garfield Foundation'),
(64800, 54067, 'en', 'name', 'Indiana Spine Group'),
(64801, 54068, 'en', 'name', 'Shepherds Care Foundation'),
(64802, 54069, 'da', 'name', 'Lida og Oskar Nielsens Fond'),
(64803, 54070, 'en', 'name', 'Puget Sound Educational Service District'),
(64804, 54071, 'no_lang_code', 'name', 'Cyathus Exquirere (Austria)'),
(64805, 54072, 'en', 'name', 'Financial Sector Deepening Trust'),
(64806, 54073, 'it', 'name', 'Associazione Italiana Pneumologi Ospedalieri'),
(64807, 54074, 'en', 'name', 'Broad Center'),
(64808, 54075, 'de', 'name', 'Schmerzklinik Kiel'),
(64809, 54076, 'en', 'name', 'Institute on Religion and Public Life'),
(64810, 54077, 'no_lang_code', 'name', 'AbbVie (United Kingdom)'),
(64811, 54078, 'en', 'name', 'ISEF Foundation'),
(64812, 54079, 'en', 'name', 'Pflugerville Independent School District'),
(64813, 54080, 'en', 'name', 'Conversation Africa'),
(64814, 54081, 'no_lang_code', 'name', 'Otsuka Pharmaceutical (Spain)'),
(64815, 54082, 'no', 'name', 'CIVITA'),
(64816, 54083, 'no_lang_code', 'name', 'Synthetic Biologics (United States)'),
(64817, 54084, 'en', 'name', 'JM Foundation'),
(64818, 54085, 'no_lang_code', 'name', 'MediWound (Germany)'),
(64819, 54086, 'de', 'name', 'DIAKO'),
(64820, 54087, 'en', 'name', 'Mount Farm Surgery'),
(64821, 54088, 'en', 'name', 'Esping Family Foundation'),
(64822, 54089, 'en', 'name', 'Pacific Vision Foundation'),
(64823, 54090, 'en', 'name', 'North American Spine Society'),
(64824, 54091, 'en', 'name', 'Child Health Foundation'),
(64825, 54092, 'de', 'name', 'Therapiezentrum Burgau'),
(64826, 54093, 'el', 'name', 'Ī•Ī›Ī›Ī—ĪĪ™ĪšĪ— ΕΤΑΙΔΕΙΑ Ī™Ī‘Ī¤Ī”Ī™ĪšĪ—Ī£ Ī•ĪšĪ Ī‘Ī™Ī”Ī•Ī„Ī£Ī—Ī£'),
(64827, 54093, 'en', 'name', 'Hellenic Society of Medical Education'),
(64828, 54094, 'en', 'name', 'Trust for Advancement of Agricultural Sciences'),
(64829, 54095, 'no_lang_code', 'name', 'Almirall (Germany)'),
(64830, 54096, 'fr', 'name', 'Institut Hospitalier Franco Britannique'),
(64831, 54097, 'en', 'name', 'New West Sports Medicine and Orthopedic Surgery'),
(64832, 54098, 'en', 'name', 'Sleep Center of Greater Pittsburgh'),
(64833, 54099, 'no_lang_code', 'name', 'Mitsui Chemicals (Germany)'),
(64834, 54100, 'en', 'name', 'Mobilize'),
(64835, 54101, 'en', 'name', 'Honorable Tina Brozman Foundation'),
(64836, 54102, 'no_lang_code', 'name', 'National Grid (United States)'),
(64837, 54103, 'no_lang_code', 'name', 'DAV (France)'),
(64838, 54104, 'en', 'name', 'Tech Foundation'),
(64839, 54105, 'da', 'name', 'AIDS Fondet'),
(64840, 54106, 'en', 'name', 'Sprim Advanced Life Sciences'),
(64841, 54107, 'pl', 'name', 'NZOZ Medi-Spatz'),
(64842, 54108, 'no_lang_code', 'name', 'Teradata (United States)'),
(64843, 54109, 'en', 'name', 'Little Giraffe Foundation'),
(64844, 54110, 'no_lang_code', 'name', 'Apocare Pharma (Germany)'),
(64845, 54111, 'en', 'name', 'Gratiot County Community Foundation'),
(64846, 54112, 'no_lang_code', 'name', 'ObsEva (Switzerland)'),
(64847, 54113, 'en', 'name', 'National Student Clearinghouse'),
(64848, 54114, 'hu', 'name', 'Fourmed Kft GyógyhÔz'),
(64849, 54115, 'en', 'name', 'Gift of Life Michigan'),
(64850, 54116, 'no_lang_code', 'name', 'Hevert Arzneimittel (Germany)'),
(64851, 54117, 'en', 'name', 'Japan Dental Association'),
(64852, 54117, 'ja', 'name', 'ę—„ęœ¬ę­Æē§‘åŒ»åø«ä¼š'),
(64853, 54118, 'en', 'name', 'Brain Tumour Foundation of Canada'),
(64854, 54119, 'en', 'name', 'American Healthcare Professionals and Friends for Medicine in Israel'),
(64855, 54120, 'en', 'name', 'British Biophysical Society'),
(64856, 54121, 'en', 'name', 'Third Hospital of Changsha'),
(64857, 54122, 'no_lang_code', 'name', 'Kura Oncology (United States)'),
(64858, 54123, 'en', 'name', 'Oakland Public Education Fund'),
(64859, 54124, 'en', 'name', 'Points of Light'),
(64860, 54125, 'it', 'name', 'Fondazione Cariverona'),
(64861, 54126, 'en', 'name', 'Getwell Hospital and Research Institute'),
(64862, 54127, 'es', 'name', 'ClĆ­nica Foscal, Foscal Hospital'),
(64863, 54128, 'en', 'name', 'Fred J Brotherton Charitable Foundation'),
(64864, 54129, 'en', 'name', 'Blazeman Foundation for ALS'),
(64865, 54130, 'en', 'name', 'American Health Network'),
(64866, 54131, 'en', 'name', 'Digital Promise'),
(64867, 54132, 'en', 'name', 'Colorado Orthopedic Consultants'),
(64868, 54133, 'en', 'name', 'South Carolina State Library'),
(64869, 54134, 'no_lang_code', 'name', 'Praekelt Foundation'),
(64870, 54135, 'en', 'name', 'AdventHealth Daytona Beach'),
(64871, 54136, 'no_lang_code', 'name', 'Immunomedics (Germany)'),
(64872, 54137, 'en', 'name', 'Strive Preparatory Schools'),
(64873, 54138, 'en', 'name', 'Kelley Foundation'),
(64874, 54139, 'en', 'name', 'Downie Harper and Shanks Dental Practice'),
(64875, 54140, 'no_lang_code', 'name', 'Brandtone (Ireland)'),
(64876, 54141, 'en', 'name', 'Down Syndrome Research Foundation'),
(64877, 54142, 'en', 'name', 'Rocky Mountain Orthopedics'),
(64878, 54143, 'no_lang_code', 'name', 'Jazz Pharmaceuticals (France)'),
(64879, 54144, 'no_lang_code', 'name', 'Shanxi Fenyang Hospital'),
(64880, 54144, 'zh', 'name', 'å±±č„æēœę±¾é˜³åŒ»é™¢'),
(64881, 54145, 'en', 'name', 'Pepose Vision Institute'),
(64882, 54146, 'en', 'name', 'Mt. Pleasant Area Commuity Foundation'),
(64883, 54147, 'no_lang_code', 'name', 'Fischer (Germany)'),
(64884, 54148, 'en', 'name', 'Social Venture Partners'),
(64885, 54149, 'en', 'name', 'AMC Neurology Group Clinical Research Center'),
(64886, 54150, 'no_lang_code', 'name', 'Koch Industries (Switzerland)'),
(64887, 54151, 'en', 'name', 'Advanced Breast Care'),
(64888, 54152, 'no_lang_code', 'name', 'Futura Medical (United Kingdom)'),
(64889, 54153, 'it', 'name', 'Fondazione Internazionale Menarini'),
(64890, 54154, 'no_lang_code', 'name', 'Clarus Therapeutics (United States)'),
(64891, 54155, 'en', 'name', 'New Hampshire Bar Foundation'),
(64892, 54156, 'no_lang_code', 'name', 'Kymab (United Kingdom)'),
(64893, 54157, 'en', 'name', 'Falck Foundation'),
(64894, 54158, 'en', 'name', 'Lymphoma Study Association'),
(64895, 54159, 'no_lang_code', 'name', 'Iltoo Pharma (France)'),
(64896, 54160, 'en', 'name', 'Australian Women and Children''s Research Foundation'),
(64897, 54161, 'en', 'name', 'GreatSchools'),
(64898, 54162, 'no_lang_code', 'name', 'Indukern (Spain)'),
(64899, 54163, 'en', 'name', 'North Carolina GlaxoSmithKline Foundation'),
(64900, 54164, 'en', 'name', 'Japan Foundation for Aging and Health'),
(64901, 54164, 'ja', 'name', 'é«˜é½¢åŒ–ćØå„åŗ·ć®ćŸć‚ć®å›½éš›äŗ¤ęµåŸŗé‡‘'),
(64902, 54165, 'de', 'name', 'Institut für Demographie'),
(64903, 54165, 'en', 'name', 'Vienna Institute of Demography'),
(64904, 54166, 'en', 'name', 'Elmina B. Sewall Foundation'),
(64905, 54167, 'en', 'name', 'Fleishhacker Foundation'),
(64906, 54168, 'en', 'name', 'Parkinson''s Association'),
(64907, 54169, 'no_lang_code', 'name', 'Muller Martini (Switzerland)'),
(64908, 54170, 'en', 'name', 'Memphis Health Center'),
(64909, 54171, 'en', 'name', 'S3 Clinical Research Centers'),
(64910, 54172, 'no_lang_code', 'name', 'C4Pain (Denmark)'),
(64911, 54173, 'no_lang_code', 'name', 'Afa Jcdecaux (Denmark)'),
(64912, 54174, 'en', 'name', 'Alexander Foundation for Orthodontic Research and Education'),
(64913, 54175, 'en', 'name', 'Population Foundation of India'),
(64914, 54176, 'en', 'name', 'Howard Gilman Foundation'),
(64915, 54177, 'en', 'name', 'Pact Atlanta'),
(64916, 54178, 'no_lang_code', 'name', 'Paradis (Denmark)'),
(64917, 54179, 'no_lang_code', 'name', 'Body Surface Translations (United States)'),
(64918, 54180, 'en', 'name', 'Cataract and Refractive Institute of Florida'),
(64919, 54181, 'en', 'name', 'European Network on Debt and Development'),
(64920, 54182, 'en', 'name', 'Thomson Foundation'),
(64921, 54183, 'en', 'name', 'Right Question Institute'),
(64922, 54184, 'en', 'name', 'Iowa Policy Project'),
(64923, 54185, 'no_lang_code', 'name', 'Actinium Pharmaceuticals (United States)'),
(64924, 54186, 'no_lang_code', 'name', 'Enclude (United States)'),
(64925, 54187, 'de', 'name', 'Diakonie-Klinikum Stuttgart'),
(64926, 54188, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒˆć‚Æćƒ¤ćƒž'),
(64927, 54188, 'no_lang_code', 'name', 'Tokuyama (Japan)'),
(64928, 54189, 'no_lang_code', 'name', 'TS Tech (Japan)'),
(64929, 54190, 'no_lang_code', 'name', 'Immutep (Germany)'),
(64930, 54191, 'en', 'name', 'National Association of Chain Drug Stores'),
(64931, 54192, 'en', 'name', 'Canary Foundation'),
(64932, 54193, 'no_lang_code', 'name', 'Roche (Portugal)'),
(64933, 54194, 'no_lang_code', 'name', 'Apceth Biopharma (Germany)'),
(64934, 54195, 'en', 'name', 'American Dental Hygienists'' Association'),
(64935, 54196, 'en', 'name', 'Hamilton Dermatology'),
(64936, 54197, 'en', 'name', 'Rocky Mountain Diabetes and Osteoporosis Center'),
(64937, 54198, 'en', 'name', 'Therafirst Medical Center'),
(64938, 54199, 'it', 'name', 'Fondazione ART per la Ricerca sui Trapianti'),
(64939, 54200, 'no_lang_code', 'name', 'Zambon (Italy)'),
(64940, 54201, 'en', 'name', 'Hindustan Latex Family Planning Promotion Trust'),
(64941, 54202, 'no_lang_code', 'name', 'Guerbet (France)'),
(64942, 54203, 'en', 'name', 'Longview Foundation'),
(64943, 54204, 'en', 'name', 'American College of Veterinary Surgeons'),
(64944, 54205, 'en', 'name', 'Fraxa Research Foundation'),
(64945, 54206, 'en', 'name', 'United Nations Department of Economic and Social Affairs'),
(64946, 54207, 'en', 'name', 'National Alliance to End Homelessness'),
(64947, 54208, 'en', 'name', 'Affiliated Hospital of Jiangxi University of Traditional Chinese Medicine'),
(64948, 54208, 'zh', 'name', 'ę±Ÿč„æēœäø­åŒ»é™¢'),
(64949, 54209, 'en', 'name', 'Salt Lake County Library Services'),
(64950, 54210, 'en', 'name', 'Volgograd Regional Clinical Oncology Center'),
(64951, 54210, 'ru', 'name', 'ВолгограГский областной клинический онкологический Гиспансер ā„– 1'),
(64952, 54211, 'en', 'name', 'Kobe College Corporation and Japan Education Exchange'),
(64953, 54212, 'en', 'name', 'Inner Mongolia Maternal and Child Health'),
(64954, 54212, 'zh', 'name', 'å†…č’™å¤å¦‡å¹¼äæå„'),
(64955, 54213, 'no_lang_code', 'name', 'Deutsche Post (Germany)'),
(64956, 54214, 'en', 'name', 'Ecological Foundation Green Action'),
(64957, 54214, 'pl', 'name', 'Fundacja Ekologiczna "Zielona Akcja"'),
(64958, 54215, 'en', 'name', 'New Leaders'),
(64959, 54216, 'en', 'name', 'Rajiv Gandhi Foundation'),
(64960, 54217, 'en', 'name', 'Telethon Foundation'),
(64961, 54218, 'en', 'name', 'Blue Cross and Blue Shield of Florida Foundation'),
(64962, 54219, 'en', 'name', 'National Pork Producers Council'),
(64963, 54220, 'no_lang_code', 'name', 'Rite-Hite (United States)'),
(64964, 54221, 'en', 'name', 'TropIQ Health Sciences'),
(64965, 54222, 'en', 'name', 'Alcorso Foundation'),
(64966, 54223, 'de', 'name', 'Generaldirektion Internationale Zusammenarbeit und Entwicklung'),
(64967, 54223, 'en', 'name', 'Directorate-General for International Cooperation and Development'),
(64968, 54223, 'fr', 'name', 'Direction GƩnƩrale CoopƩration internationale et dƩveloppement'),
(64969, 54224, 'ja', 'name', 'äø‰č±ęØ¹č„‚ę Ŗå¼ä¼šē¤¾'),
(64970, 54224, 'no_lang_code', 'name', 'Mitsubishi Plastics (Japan)'),
(64971, 54225, 'en', 'name', 'Foundation for the Advancement in Research in Medicine'),
(64972, 54226, 'en', 'name', 'Fertility Center of San Antonio'),
(64973, 54227, 'no_lang_code', 'name', 'ASIT Biotech (Belgium)'),
(64974, 54228, 'no_lang_code', 'name', 'Publicis Groupe (United States)'),
(64975, 54229, 'en', 'name', 'Jilin Maternity and Child Health Care Hospital'),
(64976, 54229, 'zh', 'name', 'å‰ęž—åø‚å¦‡å¹¼äæå„é™¢'),
(64977, 54230, 'en', 'name', 'Associates in Neurology'),
(64978, 54231, 'pl', 'name', 'Wojewódzki Inspektorat Ochrony Środowiska w Warszawie'),
(64979, 54232, 'no_lang_code', 'name', 'Genera (Croatia)'),
(64980, 54233, 'en', 'name', 'Drug Studies America'),
(64981, 54234, 'en', 'name', 'National Research Development Corporation'),
(64982, 54235, 'it', 'name', 'Fondazione Pezcoller'),
(64983, 54236, 'en', 'name', 'Retina Specialists of Michigan'),
(64984, 54237, 'de', 'name', 'Reha Rheinfelden'),
(64985, 54238, 'en', 'name', 'Washington State Institute for Public Policy'),
(64986, 54239, 'en', 'name', 'Center for Energy Workforce Development'),
(64987, 54240, 'en', 'name', 'Heartbeat Trust'),
(64988, 54241, 'no_lang_code', 'name', 'BIC (France)'),
(64989, 54242, 'en', 'name', 'Orthopedic One'),
(64990, 54243, 'de', 'name', 'Landesfachhochschule für Gesundheitsberufe Claudiana'),
(64991, 54244, 'no_lang_code', 'name', 'WiLAN (Canada)'),
(64992, 54245, 'en', 'name', 'Farm Concern International'),
(64993, 54246, 'ja', 'name', 'ćƒ’ćƒ­ć‚»é›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(64994, 54246, 'no_lang_code', 'name', 'Hirose Electric (Japan)'),
(64995, 54247, 'en', 'name', 'Vermont State House'),
(64996, 54248, 'en', 'name', 'Cardiac Study Center'),
(64997, 54249, 'en', 'name', 'Asian Disaster Preparedness Center'),
(64998, 54250, 'no_lang_code', 'name', 'IBSA Institut Biochimique (Switzerland)'),
(64999, 54251, 'en', 'name', 'JEHT Foundation'),
(65000, 54252, 'no_lang_code', 'name', 'Siemens (Singapore)'),
(65001, 54253, 'en', 'name', 'Retina Partners'),
(65002, 54254, 'en', 'name', 'Phipps Houses'),
(65003, 54255, 'en', 'name', 'Cleveland Eye Clinic'),
(65004, 54256, 'en', 'name', 'Riverside Clinical Research'),
(65005, 54257, 'en', 'name', 'DeGregorio Family Foundation'),
(65006, 54258, 'en', 'name', 'National Museum in Gdansk'),
(65007, 54258, 'pl', 'name', 'Muzeum Narodowe w Gdańsku'),
(65008, 54259, 'no_lang_code', 'name', 'Western Digital (Japan)'),
(65009, 54260, 'no_lang_code', 'name', 'InDex Pharmaceuticals (Sweden)'),
(65010, 54261, 'no_lang_code', 'name', 'Gerot Lannach (Austria)'),
(65011, 54262, 'de', 'name', 'Erich Und Gertrud Roggenbuck Stiftung'),
(65012, 54263, 'en', 'name', 'Clinical Science Institute'),
(65013, 54264, 'sv', 'name', 'Helge Ax:son Johnsons Stiftelse'),
(65014, 54265, 'ar', 'name', 'غرفة التجارة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ©'),
(65015, 54265, 'en', 'name', 'Arab British Chamber of Commerce'),
(65016, 54266, 'no_lang_code', 'name', 'PHARM (Italy)'),
(65017, 54267, 'en', 'name', 'Australia Bioinformatics Resource'),
(65018, 54268, 'en', 'name', 'London Clinic'),
(65019, 54269, 'en', 'name', 'Pediatric Brain Tumor Foundation'),
(65020, 54270, 'no_lang_code', 'name', 'Indena (Italy)'),
(65021, 54271, 'pt', 'name', 'Centro de Pesquisas Oncológicas'),
(65022, 54272, 'en', 'name', 'DAISY Foundation'),
(65023, 54273, 'ja', 'name', 'ć‚³ćƒŠćƒŸćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(65024, 54273, 'no_lang_code', 'name', 'Konami (Japan)'),
(65025, 54274, 'en', 'name', 'Klaus Tschira Foundation'),
(65026, 54275, 'de', 'name', 'Winghofer Medicum'),
(65027, 54276, 'en', 'name', 'Cancer Research Foundation'),
(65028, 54277, 'en', 'name', 'Donner Canadian Foundation'),
(65029, 54277, 'fr', 'name', 'Fondation canadienne Donner'),
(65030, 54278, 'en', 'name', 'Affiliated Hospital of Shandong University of Traditional Chinese Medicine'),
(65031, 54278, 'zh', 'name', 'å±±äøœäø­åŒ»čÆå¤§å­¦é™„å±žåŒ»é™¢'),
(65032, 54279, 'en', 'name', 'Bernice E Holland Foundation'),
(65033, 54280, 'en', 'name', 'Childrens Brittle Bone Foundation'),
(65034, 54281, 'en', 'name', 'Department of Children and Youth Affairs'),
(65035, 54281, 'ga', 'name', 'An Roinn LeanaĆ­ agus GnóthaĆ­ Ɠige'),
(65036, 54282, 'fr', 'name', 'HƓpital Joseph-Ducuing'),
(65037, 54283, 'no_lang_code', 'name', 'VDO (Germany)'),
(65038, 54284, 'en', 'name', 'Clayton Eye Center'),
(65039, 54285, 'da', 'name', 'Dansk Kiropraktor Forening'),
(65040, 54285, 'en', 'name', 'Danish Chiropractors’ Association'),
(65041, 54286, 'en', 'name', 'Discover Vision Centers'),
(65042, 54287, 'en', 'name', 'John Thomas Schroeder Foundation'),
(65043, 54288, 'fr', 'name', 'Oxfam SolidaritƩ'),
(65044, 54289, 'no_lang_code', 'name', 'Oculis (Iceland)'),
(65045, 54290, 'en', 'name', 'Meadows Dental Clinic'),
(65046, 54291, 'en', 'name', 'Center For Medicare Advocacy'),
(65047, 54292, 'en', 'name', 'Foundation for Economic Education'),
(65048, 54293, 'en', 'name', 'International Network of Health Promoting Hospitals & Health Services'),
(65049, 54294, 'fr', 'name', 'Fondation Tuck'),
(65050, 54295, 'no_lang_code', 'name', 'Neoperl (Germany)'),
(65051, 54296, 'en', 'name', 'Accion International'),
(65052, 54297, 'en', 'name', 'Community Foundation Grand Forks East Grand Forks and Region'),
(65053, 54298, 'en', 'name', 'Columbus Eye Surgery Center'),
(65054, 54299, 'en', 'name', 'San Diego Fertility Center'),
(65055, 54300, 'en', 'name', 'Foundation for Vaccine Research'),
(65056, 54301, 'en', 'name', 'Barr Foundation'),
(65057, 54302, 'de', 'name', 'Institut für Iranistik'),
(65058, 54302, 'en', 'name', 'Institute of Iranian Studies'),
(65059, 54303, 'en', 'name', 'Frankel Family Foundation'),
(65060, 54304, 'en', 'name', 'Casa Latina'),
(65061, 54305, 'no_lang_code', 'name', 'Sahyadri Hospital'),
(65062, 54306, 'no_lang_code', 'name', 'Natural Synergies (United Kingdom)'),
(65063, 54307, 'en', 'name', 'Studio of Young Artists Association'),
(65064, 54307, 'hu', 'name', 'Fiatal KĆ©pzőművĆ©szek StĆŗdiója'),
(65065, 54308, 'en', 'name', 'First Tee of Greater Seattle'),
(65066, 54309, 'en', 'name', 'Park Foundation'),
(65067, 54310, 'en', 'name', 'Jonathan Powell Hope Foundation'),
(65068, 54311, 'en', 'name', 'New Brunswick Public Library Service'),
(65069, 54312, 'en', 'name', 'TOTALL Diabetes Hormone Institute'),
(65070, 54313, 'en', 'name', 'FSHD Global Research Foundation'),
(65071, 54314, 'en', 'name', 'Bon Secours Mary Immaculate Hospital'),
(65072, 54315, 'no_lang_code', 'name', 'Actelion (Netherlands)'),
(65073, 54316, 'en', 'name', 'London International Development Centre'),
(65074, 54317, 'en', 'name', 'Native American Youth and Family Center'),
(65075, 54318, 'en', 'name', 'Nanxi Mountain Hospital'),
(65076, 54318, 'zh', 'name', 'å¹æč„æēŗ³č„æå±±åŒ»é™¢'),
(65077, 54319, 'en', 'name', 'Canadian Intensive Care Foundation'),
(65078, 54320, 'no_lang_code', 'name', 'Mobile Assay (United States)'),
(65079, 54321, 'de', 'name', 'SAPHIR Radiochirurgie'),
(65080, 54322, 'no_lang_code', 'name', 'Universal Court Reporting (United States)'),
(65081, 54323, 'no_lang_code', 'name', 'Light Sciences Oncology (United States)'),
(65082, 54324, 'en', 'name', 'Dermatology Research Center'),
(65083, 54325, 'en', 'name', 'Association for Glycogen Storage Disease'),
(65084, 54326, 'en', 'name', 'European Scientific Working group on Influenza'),
(65085, 54327, 'en', 'name', 'Leukaemia and Blood Cancer New Zealand'),
(65086, 54328, 'en', 'name', 'National Foundation for Medical Research and Innovation'),
(65087, 54329, 'en', 'name', 'Girard Foundation'),
(65088, 54330, 'en', 'name', 'Arkay Foundation'),
(65089, 54331, 'no_lang_code', 'name', 'GALENpharma (Germany)'),
(65090, 54332, 'en', 'name', 'American Society for Radiation Oncology'),
(65091, 54333, 'en', 'name', 'Ford Family Foundation'),
(65092, 54334, 'no_lang_code', 'name', 'Assembly Biosciences (United States)'),
(65093, 54335, 'en', 'name', 'Edcamp Foundation'),
(65094, 54336, 'en', 'name', 'New York City Charter School Center'),
(65095, 54337, 'no_lang_code', 'name', 'Hill Top Research (United States)'),
(65096, 54338, 'en', 'name', 'John-Kenyon'),
(65097, 54339, 'de', 'name', 'Gesellschaft für Pädiatrische Onkologie und Hämatologie'),
(65098, 54339, 'en', 'name', 'Society of Paediatric Oncology and Haematology'),
(65099, 54340, 'no_lang_code', 'name', 'Yueqing People''s Hospital'),
(65100, 54340, 'zh', 'name', 'ä¹ęø…äŗŗę°‘åŒ»é™¢'),
(65101, 54341, 'en', 'name', 'American Academy of Implant Dentistry'),
(65102, 54342, 'en', 'name', 'Institute for Female Pelvic Medicine and Reconstructive Surgery'),
(65103, 54343, 'en', 'name', 'Obayashi Foundation'),
(65104, 54343, 'ja', 'name', 'å¤§ęž—č²”å›£'),
(65105, 54344, 'en', 'name', 'Insight Therapeutics'),
(65106, 54345, 'en', 'name', 'Tauber Eye Center'),
(65107, 54346, 'en', 'name', 'Midwest Eye Center'),
(65108, 54347, 'no_lang_code', 'name', 'Brose Fahrzeugteile (Germany)'),
(65109, 54348, 'no_lang_code', 'name', 'Axcella Health (United States)'),
(65110, 54349, 'ar', 'name', 'ال؄تحاد Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ł„Ł…ŁƒŲŖŲØŲ§ŲŖ ŁˆŲ§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ - اعلم'),
(65111, 54349, 'en', 'name', 'Arab Federation for Libraries & Information'),
(65112, 54350, 'da', 'name', 'Albertslund Kommune'),
(65113, 54351, 'en', 'name', 'Colorado Kidney Care'),
(65114, 54352, 'en', 'name', 'Employee Assistance Research Foundation'),
(65115, 54353, 'en', 'name', 'Korea Foundation for Advanced Studies'),
(65116, 54354, 'en', 'name', 'Children''s Home Society of Washington'),
(65117, 54355, 'en', 'name', 'Washington State Budget and Policy Center'),
(65118, 54356, 'en', 'name', 'Hydrogen Education Foundation'),
(65119, 54357, 'no_lang_code', 'name', 'Wabtec (United States)'),
(65120, 54358, 'en', 'name', 'Lake County Schools'),
(65121, 54359, 'en', 'name', 'MaxCure Hospitals'),
(65122, 54360, 'en', 'name', 'Western Maryland Health System'),
(65123, 54361, 'en', 'name', 'Foundation for Iranian Studies'),
(65124, 54362, 'de', 'name', 'Spital Zollikerberg'),
(65125, 54363, 'en', 'name', 'PolicyLink'),
(65126, 54364, 'en', 'name', 'O. J. Noer Research Foundation'),
(65127, 54365, 'en', 'name', 'Engineering Information Foundation'),
(65128, 54366, 'no_lang_code', 'name', 'Auris Medical (Switzerland)'),
(65129, 54367, 'no_lang_code', 'name', 'AIM Group (Tanzania)'),
(65130, 54368, 'no_lang_code', 'name', 'Nordic Pharma (Czechia)'),
(65131, 54369, 'en', 'name', 'Daniel Heumann Fund for Spinal Cord Research'),
(65132, 54370, 'en', 'name', 'Japan Breast Cancer Research Group'),
(65133, 54370, 'ja', 'name', 'ę—„ęœ¬ä¹³ē™Œē ”ē©¶ć‚°ćƒ«ćƒ¼ćƒ—'),
(65134, 54371, 'en', 'name', 'Musella Foundation For Brain Tumor Research and Information'),
(65135, 54372, 'no_lang_code', 'name', 'Bausch Health (United Kingdom)'),
(65136, 54373, 'en', 'name', 'National Kidney Foundation of South Africa'),
(65137, 54374, 'no_lang_code', 'name', 'Photonamic (Germany)'),
(65138, 54375, 'en', 'name', 'Asthma Foundation of Tasmania'),
(65139, 54376, 'no_lang_code', 'name', 'AU Optronics (Taiwan)'),
(65140, 54377, 'en', 'name', 'Project Everyone'),
(65141, 54378, 'en', 'name', 'Hampton Roads Community Foundation'),
(65142, 54379, 'en', 'name', 'Center Orthopedic & Neurosurgical Care & Research'),
(65143, 54380, 'da', 'name', 'Hospitalsenhed Midt'),
(65144, 54380, 'en', 'name', 'Regional Hospital Central Jutland'),
(65145, 54381, 'no_lang_code', 'name', 'Siemens (Switzerland)'),
(65146, 54382, 'en', 'name', 'Surin Hospital'),
(65147, 54382, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąøøąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(65148, 54383, 'sv', 'name', 'Barndiabetesfondens'),
(65149, 54384, 'en', 'name', 'Nancy Owens Memorial Foundation'),
(65150, 54385, 'en', 'name', 'University Prep'),
(65151, 54386, 'en', 'name', 'HOVON – the Haemato Oncology Foundation for Adults in the Netherlands'),
(65152, 54386, 'nl', 'name', 'Hemato-Oncologie voor Volwassenen Nederland, Hovon'),
(65153, 54387, 'en', 'name', 'National Association of Student Financial Aid Administrators'),
(65154, 54388, 'en', 'name', 'Developing Countries Vaccine Manufactures Network'),
(65155, 54389, 'en', 'name', 'Draper Richards Kaplan Foundation'),
(65156, 54390, 'en', 'name', 'Ministry of Labour, Family, Social Affairs and Equal Opportunities'),
(65157, 54391, 'ms', 'name', 'KPJ Ampang Puteri Specialist Hospital'),
(65158, 54392, 'en', 'name', 'King Mongkut Memorial Hospital'),
(65159, 54392, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ąøˆąø±ąø‡ąø«ąø§ąø±ąø”ą¹€ąøžąøŠąø£ąøšąøøąø£ąøµ'),
(65160, 54393, 'en', 'name', 'National Health Law Program'),
(65161, 54394, 'en', 'name', 'Foundation for Psychocultural Research'),
(65162, 54395, 'en', 'name', 'Kraff Eye Institute'),
(65163, 54396, 'fr', 'name', 'Centre Hospitalier Saint-Nazaire'),
(65164, 54397, 'en', 'name', 'Baltic Studies Centre'),
(65165, 54398, 'no_lang_code', 'name', 'Visteon (South Korea)'),
(65166, 54399, 'en', 'name', 'Northeast Baptist Hospital'),
(65167, 54400, 'en', 'name', 'Christianity Today'),
(65168, 54401, 'en', 'name', 'Missouri Heart Center'),
(65169, 54402, 'no_lang_code', 'name', 'Polichem (Switzerland)'),
(65170, 54403, 'no_lang_code', 'name', 'LETI Pharma (Germany)'),
(65171, 54404, 'en', 'name', 'Atsumi International Scholarship Foundation'),
(65172, 54404, 'ja', 'name', 'ęø„ē¾Žå›½éš›äŗ¤ęµč²”å›£'),
(65173, 54405, 'no_lang_code', 'name', 'Evoqua Water Technologies (United States)'),
(65174, 54406, 'no_lang_code', 'name', 'Cytovac (Denmark)'),
(65175, 54407, 'en', 'name', 'Complete Eye Care of Medina'),
(65176, 54408, 'no_lang_code', 'name', 'Regulon (Greece)'),
(65177, 54409, 'en', 'name', 'Setshaba Research Centre'),
(65178, 54410, 'en', 'name', 'Los Alamitos Medical Center'),
(65179, 54411, 'sv', 'name', 'Lindesbergs lasarett'),
(65180, 54412, 'en', 'name', 'Georgia Cancer Specialists'),
(65181, 54413, 'en', 'name', 'Innovation Center for U.S. Dairy'),
(65182, 54414, 'en', 'name', 'New York eHealth Collaborative'),
(65183, 54415, 'no_lang_code', 'name', 'BioibƩrica (Spain)'),
(65184, 54416, 'no_lang_code', 'name', 'Genmab (Denmark)'),
(65185, 54417, 'no_lang_code', 'name', 'Chilbal Film (Denmark)'),
(65186, 54418, 'no_lang_code', 'name', 'Bioven (United Kingdom)'),
(65187, 54419, 'en', 'name', 'Bharti Centre for Communication'),
(65188, 54420, 'en', 'name', 'Chongqing Jiulongpo People''s Hospital'),
(65189, 54421, 'es', 'name', 'Grupo EspaƱol Multidisciplinar de Melanoma'),
(65190, 54422, 'en', 'name', 'Geological Society of Australia'),
(65191, 54423, 'no_lang_code', 'name', 'Nuctech (China)'),
(65192, 54423, 'zh', 'name', '威视肔份'),
(65193, 54424, 'en', 'name', 'Frey Foundation'),
(65194, 54425, 'en', 'name', 'Triad Clinical Trials'),
(65195, 54426, 'no_lang_code', 'name', 'Sealed Air (United States)'),
(65196, 54427, 'no_lang_code', 'name', 'Oquirr Marketing Institute (United States)'),
(65197, 54428, 'en', 'name', 'West Coast Retina'),
(65198, 54429, 'en', 'name', 'Dermatology Associates of Tallahassee'),
(65199, 54430, 'en', 'name', 'Grigg Lewis Foundation'),
(65200, 54431, 'en', 'name', 'Foundation To Eradicate Duchenne'),
(65201, 54432, 'en', 'name', 'Grieg Foundation'),
(65202, 54433, 'ar', 'name', 'Ł…Ų³ŲŖŲ“ŁŁŠŲ§ŲŖ Ų¬Ų§Ł…Ų¹Ų© القاهرة'),
(65203, 54433, 'en', 'name', 'Cairo University hospitals'),
(65204, 54434, 'en', 'name', 'Karl Kirchgessner Foundation'),
(65205, 54435, 'en', 'name', 'Italian research Foundation for ALS'),
(65206, 54435, 'it', 'name', 'Fondazione Italiana di Ricerca per la Sclerosi Laterale Amiotrofica'),
(65207, 54436, 'de', 'name', 'Baugarten Zürich Stiftung'),
(65208, 54437, 'en', 'name', 'The Spine & Nerve Centers of the Virginias'),
(65209, 54438, 'de', 'name', 'Berthold Leibinger Stiftung'),
(65210, 54439, 'en', 'name', 'Hoglund Foundation'),
(65211, 54440, 'en', 'name', 'Rhode Island Blood Center'),
(65212, 54441, 'no_lang_code', 'name', 'Luzitin (Portugal)'),
(65213, 54442, 'no_lang_code', 'name', 'Electrolux (Sweden)'),
(65214, 54443, 'en', 'name', 'American Society of Mammalogists'),
(65215, 54444, 'no_lang_code', 'name', 'DEKA (United States)'),
(65216, 54445, 'no_lang_code', 'name', 'Carroll & Meynell Transformers (United Kingdom)'),
(65217, 54446, 'no_lang_code', 'name', 'DeLaval (Sweden)'),
(65218, 54447, 'en', 'name', 'Carcinoid Cancer Foundation'),
(65219, 54448, 'en', 'name', 'German Marshall Fund of the United States'),
(65220, 54449, 'no_lang_code', 'name', 'Codon (Germany)'),
(65221, 54450, 'pl', 'name', 'Specjalistyczny Szpital im.E.Szczeklika w Tarnowie'),
(65222, 54451, 'en', 'name', 'VA Nebraska Western Iowa Health Care System'),
(65223, 54452, 'en', 'name', 'Grable Foundation'),
(65224, 54453, 'en', 'name', 'British Society of Audiology'),
(65225, 54454, 'ja', 'name', 'ćƒŽćƒ¼ćƒŖćƒ„é‹¼ę©Ÿę Ŗå¼ä¼šē¤¾'),
(65226, 54454, 'no_lang_code', 'name', 'Noritsu (Japan)'),
(65227, 54455, 'en', 'name', 'Angioma Alliance'),
(65228, 54456, 'en', 'name', 'Malaysia Toray Science Foundation'),
(65229, 54457, 'no_lang_code', 'name', 'TauRx (United Kingdom)'),
(65230, 54458, 'fr', 'name', 'Infirmerie Protestante'),
(65231, 54459, 'en', 'name', 'First Affiliated Hospital of Henan University of Traditional Chinese Medicine'),
(65232, 54459, 'zh', 'name', 'ę²³å—äø­åŒ»å­¦é™¢ē¬¬äø€åŒ»é™¢'),
(65233, 54460, 'fr', 'name', 'Clinique Mutualiste Chirurgicale'),
(65234, 54461, 'en', 'name', 'TKL Research'),
(65235, 54462, 'da', 'name', 'Harboefonden'),
(65236, 54463, 'en', 'name', 'Mobility Outreach International'),
(65237, 54464, 'en', 'name', 'Defense Technology Security Administration'),
(65238, 54465, 'no_lang_code', 'name', 'Bavarian Nordic (United States)'),
(65239, 54466, 'no_lang_code', 'name', 'Wirtgen (Germany)'),
(65240, 54467, 'en', 'name', 'Connecticut Office of the Governor'),
(65241, 54468, 'en', 'name', 'Ben and Maytee Fisch Foundation'),
(65242, 54469, 'en', 'name', 'EB House Austria'),
(65243, 54470, 'en', 'name', 'American Friends of Laniado Hospital'),
(65244, 54471, 'no_lang_code', 'name', 'Cook Medical (Denmark)'),
(65245, 54472, 'no_lang_code', 'name', 'Kaytee Avian Foundation'),
(65246, 54473, 'en', 'name', 'Office of the State Inspector General'),
(65247, 54474, 'cs', 'name', 'MezinĆ”rodnĆ­ Centrum Pro UměnĆ­ a NovĆ© Technologie'),
(65248, 54474, 'en', 'name', 'International Centre for Art and New Technologies'),
(65249, 54475, 'en', 'name', 'Wuzhou Red Cross Hospital'),
(65250, 54475, 'zh', 'name', 'ę¢§å·žåø‚ēŗ¢åå­—ä¼šåŒ»é™¢'),
(65251, 54476, 'en', 'name', 'Alliance for Epilepsy Research'),
(65252, 54477, 'en', 'name', 'Irvine Health Foundation'),
(65253, 54478, 'no_lang_code', 'name', 'Newmont Mining (United States)'),
(65254, 54479, 'no_lang_code', 'name', 'New Life Scientific (United States)'),
(65255, 54480, 'no_lang_code', 'name', 'Rosetta Stone (United States)'),
(65256, 54481, 'en', 'name', 'Romanian Waters National Administration'),
(65257, 54481, 'ro', 'name', 'Administrația Națională Apele RomĆ¢ne'),
(65258, 54482, 'en', 'name', 'Nordic MDS Group'),
(65259, 54483, 'en', 'name', 'Nargis Dutt Memorial Foundation'),
(65260, 54484, 'en', 'name', 'Bader Philanthropies'),
(65261, 54485, 'en', 'name', 'United Nations Association of the United States of America'),
(65262, 54486, 'de', 'name', 'Johann Radon Institut für Angewandte Mathematik'),
(65263, 54486, 'en', 'name', 'Johann Radon Institute for Computational and Applied Mathematics'),
(65264, 54487, 'no_lang_code', 'name', 'CNS Research (United States)'),
(65265, 54488, 'de', 'name', 'Krankenhaus Porz am Rhein'),
(65266, 54489, 'en', 'name', 'Great Minds'),
(65267, 54490, 'no_lang_code', 'name', 'Mannesmann (Germany)'),
(65268, 54491, 'en', 'name', 'Kilo Diabetes and Vascular Research Foundation'),
(65269, 54492, 'en', 'name', 'British Thyroid Foundation'),
(65270, 54493, 'en', 'name', 'University Foot & Ankle Institute'),
(65271, 54494, 'it', 'name', 'Fondazione Cassa di Risparmio di Pistoia e Pescia'),
(65272, 54495, 'no_lang_code', 'name', 'Rexgenero (United Kingdom)'),
(65273, 54496, 'en', 'name', 'RTOG Foundation'),
(65274, 54497, 'no_lang_code', 'name', 'Rohto Pharmaceutical (United Kingdom)'),
(65275, 54498, 'en', 'name', 'National Laboratory for Education Transformation'),
(65276, 54499, 'no_lang_code', 'name', 'Edwards (United Kingdom)'),
(65277, 54500, 'de', 'name', 'Westdeutsche Herz- und Gefäßzentrum Essen'),
(65278, 54500, 'en', 'name', 'West German Heart and Vascular Center Essen'),
(65279, 54501, 'fr', 'name', 'Terre des Hommes'),
(65280, 54502, 'en', 'name', 'Noble Network of Charter Schools'),
(65281, 54503, 'en', 'name', 'Eye Center of Southern Connecticut'),
(65282, 54504, 'en', 'name', 'Institute for Jewish Spirituality'),
(65283, 54505, 'no_lang_code', 'name', 'Evgen Pharma (United Kingdom)'),
(65284, 54506, 'en', 'name', 'Sky Ridge Medical Center'),
(65285, 54507, 'es', 'name', 'Hospital Universitari de Vic'),
(65286, 54508, 'en', 'name', 'Seattle Housing Authority'),
(65287, 54509, 'en', 'name', 'Jewish Association Serving the Aging'),
(65288, 54510, 'en', 'name', 'Glaucoma Associates of Texas'),
(65289, 54511, 'en', 'name', 'Wellesley Centers for Women'),
(65290, 54512, 'en', 'name', 'Clayton Sleep Institute'),
(65291, 54513, 'en', 'name', 'East Bay Community Foundation'),
(65292, 54514, 'no_lang_code', 'name', 'Sanofi (United Kingdom)'),
(65293, 54515, 'no_lang_code', 'name', 'Sanofi (Hungary)'),
(65294, 54516, 'en', 'name', 'Tampa Bay Medical Research'),
(65295, 54517, 'no_lang_code', 'name', 'Lear (United States)'),
(65296, 54518, 'en', 'name', 'Hand Foundation'),
(65297, 54519, 'en', 'name', 'Monterey Institute for Technology and Education'),
(65298, 54520, 'en', 'name', 'Norwich University Applied Research Institute'),
(65299, 54521, 'en', 'name', 'Hazel K. Goddess Fund for Stroke Research in Women'),
(65300, 54522, 'en', 'name', 'Katzen Eye Care & Laser Center'),
(65301, 54523, 'en', 'name', 'Inner Mongolia Autonomous Region Hospital of Traditional Chinese Medicine'),
(65302, 54523, 'zh', 'name', 'å†…č’™å¤č‡Ŗę²»åŒŗäø­åŒ»åŒ»é™¢'),
(65303, 54524, 'en', 'name', 'Center for Dermatology, Cosmetic & Laser Surgery'),
(65304, 54525, 'en', 'name', 'Executive Forests Agency'),
(65305, 54526, 'no_lang_code', 'name', 'Xcovery (United States)'),
(65306, 54527, 'no_lang_code', 'name', 'Bucher Emhart Glass (Switzerland)'),
(65307, 54528, 'en', 'name', 'New South Wales Nurses and Midwives Association'),
(65308, 54529, 'en', 'name', 'Kwanjeong Educational Foundation'),
(65309, 54530, 'en', 'name', 'Futaba Electronics Memorial Foundation'),
(65310, 54530, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ åŒč‘‰é›»å­čØ˜åæµč²”å›£'),
(65311, 54531, 'en', 'name', 'Balboa Nephrology Medical Group'),
(65312, 54532, 'en', 'name', 'United General Hospital'),
(65313, 54533, 'no_lang_code', 'name', 'Inventprise (United States)'),
(65314, 54534, 'en', 'name', 'American Italian Cancer Foundation'),
(65315, 54535, 'no_lang_code', 'name', 'Winkhaus (Germany)'),
(65316, 54536, 'no_lang_code', 'name', 'Institut für Biomedizinische Analytik und NMR Imaging (Germany)'),
(65317, 54537, 'en', 'name', 'Doctors Cancer Foundation'),
(65318, 54538, 'no_lang_code', 'name', 'Cipla (Belgium)'),
(65319, 54539, 'en', 'name', 'Sheepcot Medical Centre'),
(65320, 54540, 'ca', 'name', 'Hospital Sant Jaume de Calella'),
(65321, 54541, 'en', 'name', 'Fairfield Hospital'),
(65322, 54542, 'en', 'name', 'Kempe Foundation'),
(65323, 54542, 'sv', 'name', 'Kempestiftelserna'),
(65324, 54543, 'de', 'name', 'Heimer Stiftung'),
(65325, 54544, 'no_lang_code', 'name', 'Johnson Electric (Switzerland)'),
(65326, 54545, 'no_lang_code', 'name', 'Amazonen-Werke (Germany)'),
(65327, 54546, 'no_lang_code', 'name', 'Medical Developments (United Kingdom)'),
(65328, 54547, 'en', 'name', 'Myasthenia Gravis Foundation of America'),
(65329, 54548, 'no_lang_code', 'name', 'Baxter (Netherlands)'),
(65330, 54549, 'en', 'name', 'Beez Foundation'),
(65331, 54550, 'en', 'name', 'Australian College of Critical Care Nurses'),
(65332, 54551, 'en', 'name', 'Rata Foundation'),
(65333, 54552, 'en', 'name', 'Ian''s Friends Foundation'),
(65334, 54553, 'de', 'name', 'Johannes Wesling Klinikum Minden'),
(65335, 54554, 'no_lang_code', 'name', 'Unitus Labs'),
(65336, 54555, 'no_lang_code', 'name', 'Mauna Kea Technologies (United States)'),
(65337, 54556, 'en', 'name', 'Baumann Cosmetic Dermatology'),
(65338, 54557, 'en', 'name', 'Grigioni Foundation for Parkinson''s disease'),
(65339, 54557, 'it', 'name', 'Fondazione Grigioni per il Morbo di Parkinson'),
(65340, 54558, 'en', 'name', 'International Transactional Analysis Association'),
(65341, 54559, 'en', 'name', 'St. Bernards Clopton Clinic'),
(65342, 54560, 'en', 'name', 'Center for Evaluation Innovation'),
(65343, 54561, 'en', 'name', 'Guenther Dermatology Research Centre'),
(65344, 54562, 'en', 'name', 'Institute of Mental Hygiene'),
(65345, 54563, 'en', 'name', 'Gabba Dermatology'),
(65346, 54564, 'en', 'name', 'Sall Research Medical Center'),
(65347, 54565, 'no_lang_code', 'name', 'Ab Analitica (Italy)'),
(65348, 54566, 'ja', 'name', 'å €ē§‘å­¦čŠøč”“ęŒÆčˆˆč²”å›£'),
(65349, 54566, 'no_lang_code', 'name', 'Hori Sciences and Arts Foundation'),
(65350, 54567, 'no_lang_code', 'name', 'BrainScope (United States)'),
(65351, 54568, 'en', 'name', 'Santa Cruz County Office of Education'),
(65352, 54569, 'en', 'name', 'Hayao Nakayama Foundation for Science & Technology and Culture'),
(65353, 54569, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­å±±éš¼é›„ē§‘å­¦ęŠ€č”“ę–‡åŒ–č²”å›£'),
(65354, 54570, 'en', 'name', 'IDinsight'),
(65355, 54571, 'no_lang_code', 'name', 'JST Mfg(Japan)'),
(65356, 54572, 'es', 'name', 'Centro MƩdico Recoletas Paracelso'),
(65357, 54573, 'en', 'name', 'Metropolitan Asian Family Services'),
(65358, 54574, 'en', 'name', 'School for Ethics and Global Leadership'),
(65359, 54575, 'en', 'name', 'Medicines Evaluation Unit'),
(65360, 54576, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪœĪæĻĪ¹Ī±ĪŗĪ®Ļ‚ Ιατρικής και Ī’Ī¹ĪæĻŠĪ±Ļ„ĻĪ¹ĪŗĪ®Ļ‚ ĪˆĻĪµĻ…Ī½Ī±Ļ‚'),
(65361, 54576, 'en', 'name', 'Institute of Molecular Medicine and Biomedical Research'),
(65362, 54577, 'en', 'name', 'Medical Research Network'),
(65363, 54578, 'no_lang_code', 'name', 'Livvon (United States)'),
(65364, 54579, 'en', 'name', 'Community Foundation of Louisville'),
(65365, 54580, 'no_lang_code', 'name', 'Borealis (Austria)'),
(65366, 54581, 'en', 'name', 'Clinical Research Consortium'),
(65367, 54582, 'no_lang_code', 'name', 'AXON Neuroscience (Slovakia)'),
(65368, 54583, 'en', 'name', 'Alzheimer Society of Manitoba'),
(65369, 54584, 'fr', 'name', 'Cliniques du Sud Luxembourg'),
(65370, 54585, 'en', 'name', 'UC Davis Children''s Hospital'),
(65371, 54586, 'en', 'name', 'Dougherty Foundation'),
(65372, 54587, 'en', 'name', 'National Peace Corps Association'),
(65373, 54588, 'en', 'name', 'Landsteiner Foundation for Blood Transfusion Research'),
(65374, 54588, 'nl', 'name', 'Landsteiner Stichting voor Bloedtransfusieresearch'),
(65375, 54589, 'en', 'name', 'Memorial Orthopaedic Surgical Group'),
(65376, 54590, 'no_lang_code', 'name', 'Radio One (United States)'),
(65377, 54591, 'fr', 'name', 'Centre Hospitalier DƩpartemental VendƩe'),
(65378, 54592, 'no_lang_code', 'name', 'Linde (United States)'),
(65379, 54593, 'en', 'name', 'Lithuanian Ornithological Society'),
(65380, 54593, 'lt', 'name', 'Lietuvos ornitologų draugija'),
(65381, 54594, 'en', 'name', 'Providence Clinical Research'),
(65382, 54595, 'en', 'name', 'Celma Mastry Ovarian Cancer Foundation'),
(65383, 54596, 'nl', 'name', 'Franciscus Vlietland'),
(65384, 54597, 'en', 'name', 'Knox County Schools'),
(65385, 54598, 'en', 'name', 'CHOC Foundation'),
(65386, 54599, 'en', 'name', 'Gift of Life Foundation'),
(65387, 54600, 'en', 'name', 'Norman Regional Health System'),
(65388, 54601, 'no_lang_code', 'name', 'Chemo (France)'),
(65389, 54602, 'en', 'name', 'American Academy of Audiology'),
(65390, 54603, 'en', 'name', 'Somerset Skin Centre'),
(65391, 54604, 'en', 'name', 'Goldhirsh Foundation'),
(65392, 54605, 'en', 'name', 'Spanish Oncology Genitourinary Group'),
(65393, 54606, 'en', 'name', 'American Asthma Foundation'),
(65394, 54607, 'nl', 'name', 'Radiotherapeutisch Instituut Friesland'),
(65395, 54608, 'de', 'name', 'Asklepios Kliniken Hamburg'),
(65396, 54609, 'ja', 'name', 'å¤§åŒē‰¹ę®Šé‹¼'),
(65397, 54609, 'no_lang_code', 'name', 'Daido Steel (Japan)'),
(65398, 54610, 'de', 'name', 'Allergiezentrum Wien West'),
(65399, 54611, 'en', 'name', 'Lasker Foundation'),
(65400, 54612, 'en', 'name', 'Partnership for Public Service'),
(65401, 54613, 'en', 'name', 'Milken Family Foundation'),
(65402, 54614, 'en', 'name', 'Bullitt Foundation'),
(65403, 54615, 'en', 'name', 'Matthew''s Friends'),
(65404, 54616, 'no_lang_code', 'name', 'Atlantic Clinical Research Collaborative (United States)'),
(65405, 54617, 'bn', 'name', 'ą¦¦ą§ą¦°ą§ą¦¬ą¦¾ą¦° মহিলা ą¦øą¦®ą¦Øą§ą¦¬ą¦Æą¦¼ সমিতি'),
(65406, 54617, 'en', 'name', 'Durbar Mahila Samanwaya Committee'),
(65407, 54618, 'en', 'name', 'Gardiner Foundation'),
(65408, 54619, 'no_lang_code', 'name', 'Center for Clinical Research (United States)'),
(65409, 54620, 'en', 'name', 'Liquid Interactive'),
(65410, 54621, 'en', 'name', 'Ethnic Arts Council of Los Angeles'),
(65411, 54622, 'en', 'name', 'Warren County Public Schools'),
(65412, 54623, 'en', 'name', 'Northwest Resource Associates'),
(65413, 54624, 'no_lang_code', 'name', 'Avillion (United Kingdom)'),
(65414, 54625, 'no_lang_code', 'name', 'Grifols (United States)'),
(65415, 54626, 'no_lang_code', 'name', 'Principia Biopharma (United States)'),
(65416, 54627, 'en', 'name', 'Japan Ecology Foundation'),
(65417, 54627, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒč²”å›£'),
(65418, 54628, 'no_lang_code', 'name', 'Alphafilm and Kommunikation (Denmark)'),
(65419, 54629, 'ja', 'name', 'å¤§ę—„ē²¾åŒ–å·„'),
(65420, 54629, 'no_lang_code', 'name', 'Dainichiseika (Japan)'),
(65421, 54630, 'en', 'name', 'Irish Heart Foundation'),
(65422, 54631, 'en', 'name', 'Deupree Family Foundation');
INSERT INTO `ror_settings` VALUES
(65423, 54632, 'et', 'name', 'Association of Estonian Open Youth Centres, Eesti Avatud Noortekeskuste Ühendus'),
(65424, 54633, 'en', 'name', 'Baylor Scott & White All Saints Medical Center'),
(65425, 54634, 'en', 'name', 'King Center Charter School'),
(65426, 54635, 'no_lang_code', 'name', 'Synthon (Czechia)'),
(65427, 54636, 'en', 'name', 'Parents United for Responsible Education'),
(65428, 54637, 'no_lang_code', 'name', 'Endress+Hauser (Switzerland)'),
(65429, 54638, 'en', 'name', 'Or Yarok Association'),
(65430, 54638, 'he', 'name', 'אור ירוק'),
(65431, 54639, 'no_lang_code', 'name', 'advanceCOR (Germany)'),
(65432, 54640, 'en', 'name', 'Emily Dorfman Foundation for Children'),
(65433, 54641, 'no_lang_code', 'name', 'NewEnergy'),
(65434, 54642, 'no_lang_code', 'name', 'Rhythm (United states)'),
(65435, 54643, 'en', 'name', 'Sevenzo'),
(65436, 54644, 'en', 'name', 'Euvaldo Lodi Institute'),
(65437, 54644, 'pt', 'name', 'Instituto Euvaldo Lodi'),
(65438, 54645, 'en', 'name', 'American Respiratory Care Foundation'),
(65439, 54646, 'no_lang_code', 'name', 'Sucampo (Switzerland)'),
(65440, 54647, 'no_lang_code', 'name', 'Dado Medical'),
(65441, 54648, 'en', 'name', 'Childrens Leukemia Foundation of Michigan'),
(65442, 54649, 'en', 'name', 'Acumen'),
(65443, 54650, 'no_lang_code', 'name', 'Stelic (Japan)'),
(65444, 54651, 'en', 'name', 'African Development Bank Group'),
(65445, 54652, 'no_lang_code', 'name', 'Grunenthal (Spain)'),
(65446, 54653, 'de', 'name', 'UniversitƤts HNO Klinik Mannheim'),
(65447, 54654, 'no_lang_code', 'name', 'Fives (France)'),
(65448, 54655, 'en', 'name', 'International Association of Sedimentologists'),
(65449, 54656, 'no_lang_code', 'name', 'Newell Brands (United States)'),
(65450, 54657, 'en', 'name', 'Brain Resource Center'),
(65451, 54658, 'no_lang_code', 'name', 'Enceladus Pharmaceuticals (Netherlands)'),
(65452, 54659, 'en', 'name', 'Aicardi Syndrome Foundation'),
(65453, 54660, 'no_lang_code', 'name', 'Accenture (United Kingdom)'),
(65454, 54661, 'no_lang_code', 'name', 'Myelo Therapeutics (Germany)'),
(65455, 54662, 'en', 'name', 'National Jewish Center for Learning and Leadership'),
(65456, 54663, 'no_lang_code', 'name', 'TerraFrame (United States)'),
(65457, 54664, 'en', 'name', 'World Affairs Council of Northern California'),
(65458, 54665, 'es', 'name', 'Grupo de Tratamiento de los Tumores Digestivos'),
(65459, 54666, 'en', 'name', 'Smith Clinic'),
(65460, 54667, 'en', 'name', 'National Paideia Center'),
(65461, 54668, 'en', 'name', 'Blanca Paloma Hospital'),
(65462, 54669, 'no_lang_code', 'name', 'Technicolor (United States)'),
(65463, 54670, 'es', 'name', 'Hospital de Palamós'),
(65464, 54671, 'en', 'name', 'Veterans of Foreign Wars'),
(65465, 54672, 'en', 'name', 'Statistics Estonia'),
(65466, 54672, 'et', 'name', 'Statistikaamet'),
(65467, 54673, 'en', 'name', 'United Indians of All Tribes'),
(65468, 54674, 'no_lang_code', 'name', 'Novartis (Belgium)'),
(65469, 54675, 'en', 'name', 'MARS Memory-Health Network'),
(65470, 54676, 'no_lang_code', 'name', 'Nacey Maggioncalda Foundation'),
(65471, 54677, 'en', 'name', 'Kampala Capital City Authority'),
(65472, 54678, 'en', 'name', 'Bastian Voice Institute'),
(65473, 54679, 'en', 'name', 'Pacific Business Group on Health'),
(65474, 54680, 'en', 'name', 'Mennonite Economic Development Associates'),
(65475, 54681, 'no_lang_code', 'name', 'Amgen (Netherlands)'),
(65476, 54682, 'en', 'name', 'City West Water'),
(65477, 54683, 'en', 'name', 'Nuffield Trust'),
(65478, 54684, 'en', 'name', 'Tanzania Social Action Fund'),
(65479, 54685, 'en', 'name', 'Food and Drug Administration'),
(65480, 54686, 'no_lang_code', 'name', 'Shield Therapeutics (United Kingdom)'),
(65481, 54687, 'en', 'name', 'Arlington Center for Dermatology'),
(65482, 54688, 'no_lang_code', 'name', 'Otsuka (Germany)'),
(65483, 54689, 'no_lang_code', 'name', 'Homviora (Germany)'),
(65484, 54690, 'en', 'name', 'Fourth People''s Hospital of Taiyuan'),
(65485, 54690, 'zh', 'name', 'å¤ŖåŽŸåø‚ē¬¬å››äŗŗę°‘åŒ»é™¢_百度百科'),
(65486, 54691, 'en', 'name', 'Daiichi Sankyo Foundation of Life Science'),
(65487, 54692, 'no_lang_code', 'name', 'Toro (United States)'),
(65488, 54693, 'fr', 'name', 'SociƩtƩ Nationale des TƩlƩcommunications du Senegal'),
(65489, 54693, 'no_lang_code', 'name', 'Sonatel (Senegal)'),
(65490, 54694, 'en', 'name', 'Dearborn Orthopedics and Sports Medicine'),
(65491, 54695, 'no_lang_code', 'name', 'Clarke (United States)'),
(65492, 54696, 'en', 'name', 'Foundation for a Healthy Kentucky'),
(65493, 54697, 'en', 'name', 'Houston Perinatal Associates'),
(65494, 54698, 'en', 'name', 'Cerego'),
(65495, 54699, 'en', 'name', 'Ophthalmology Associates (United States)'),
(65496, 54700, 'en', 'name', 'Minnesota Lions Eye Bank'),
(65497, 54701, 'no_lang_code', 'name', 'Imerys (United Kingdom)'),
(65498, 54702, 'pt', 'name', 'Coris Medicina AvanƧada'),
(65499, 54703, 'en', 'name', 'Ubonratchathani Cancer Hospital'),
(65500, 54703, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(65501, 54704, 'it', 'name', 'Fondazione Pisa'),
(65502, 54705, 'de', 'name', 'Lotex Stiftung'),
(65503, 54705, 'en', 'name', 'Lotex Foundation'),
(65504, 54706, 'en', 'name', 'John R. Oishei Foundation'),
(65505, 54707, 'en', 'name', 'Children''s Defense Fund'),
(65506, 54708, 'no_lang_code', 'name', 'Chiesi (United Kingdom)'),
(65507, 54709, 'no_lang_code', 'name', 'Sicpa (Switzerland)'),
(65508, 54710, 'no_lang_code', 'name', 'Pioneer (United States)'),
(65509, 54711, 'en', 'name', 'Attention Deficit Disorder Treatment Center'),
(65510, 54712, 'en', 'name', 'Udon Thani Hospital'),
(65511, 54713, 'en', 'name', 'Willamette Valley Cancer Institute and Research Center'),
(65512, 54714, 'en', 'name', 'Tennessee Clinical Research Center'),
(65513, 54715, 'en', 'name', 'Johnson Family Foundation'),
(65514, 54716, 'no_lang_code', 'name', 'Adienne (Switzerland)'),
(65515, 54717, 'en', 'name', 'Nakornping Hospital'),
(65516, 54717, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø™ąø„ąø£ąøžąø“ąø‡ąø„ą¹Œ ąøˆąø±ąø‡ąø«ąø§ąø±ąø”ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(65517, 54718, 'no_lang_code', 'name', 'Vista Therapeutics (United States)'),
(65518, 54719, 'no_lang_code', 'name', 'Consort Medical (United Kingdom)'),
(65519, 54720, 'no_lang_code', 'name', 'Vedantra Pharmaceuticals (United States)'),
(65520, 54721, 'en', 'name', 'Japan Securities Scholarship Foundation'),
(65521, 54721, 'ja', 'name', 'ę—„ęœ¬čØ¼åˆøå„Øå­¦č²”å›£'),
(65522, 54722, 'no_lang_code', 'name', 'Georg Fischer (Switzerland)'),
(65523, 54723, 'no_lang_code', 'name', 'Avizorex Pharma (Spain)'),
(65524, 54724, 'ar', 'name', 'مستؓفى Ų­Ł…ŁˆŲÆ'),
(65525, 54724, 'en', 'name', 'Hammoud Hospital University Medical Center'),
(65526, 54725, 'no', 'name', 'Smerteklinikken'),
(65527, 54726, 'de', 'name', 'Gerhard C. Starck Stiftung'),
(65528, 54727, 'no_lang_code', 'name', 'Vaxon Biotech (France)'),
(65529, 54728, 'en', 'name', 'MPN Research Foundation'),
(65530, 54729, 'en', 'name', 'Hebei Science and Technology Department'),
(65531, 54730, 'ja', 'name', 'ę —ē”°å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(65532, 54730, 'no_lang_code', 'name', 'Kurita Water Industries (Japan)'),
(65533, 54731, 'en', 'name', 'NOK Foundation'),
(65534, 54732, 'en', 'name', 'Colorado Medical Research Center'),
(65535, 54733, 'no_lang_code', 'name', 'Mologen (Germany)'),
(65536, 54734, 'de', 'name', 'Stefan-Meyer-Institut'),
(65537, 54734, 'en', 'name', 'Stefan Meyer Institute for Subatomic Physics'),
(65538, 54735, 'en', 'name', 'SEED Foundation'),
(65539, 54736, 'en', 'name', 'Navajo Nation Library'),
(65540, 54737, 'en', 'name', 'Research Institute of Dallas'),
(65541, 54738, 'en', 'name', 'Campaign for College Opportunity'),
(65542, 54739, 'en', 'name', 'Michael Reese Health Trust'),
(65543, 54740, 'en', 'name', 'Nathans Battle Foundation'),
(65544, 54741, 'en', 'name', 'Sadick Research Group'),
(65545, 54742, 'no_lang_code', 'name', 'Buckman Laboratories (United States)'),
(65546, 54743, 'en', 'name', 'Efficacy Institute'),
(65547, 54744, 'en', 'name', 'Dannon Institute'),
(65548, 54745, 'en', 'name', 'Oral and Maxillofacial Surgery Foundation'),
(65549, 54746, 'no_lang_code', 'name', 'Swedish Orphan Biovitrum (Switzerland)'),
(65550, 54747, 'en', 'name', 'Appraisers Research Foundation'),
(65551, 54748, 'no_lang_code', 'name', 'OxThera (Sweden)'),
(65552, 54749, 'no_lang_code', 'name', 'NestlƩ (France)'),
(65553, 54750, 'en', 'name', 'Childrens Fund for Glycogen Storage Disease Research'),
(65554, 54751, 'en', 'name', 'Partnership for Learning'),
(65555, 54752, 'no_lang_code', 'name', 'Synphora (Sweden)'),
(65556, 54753, 'en', 'name', 'Alka Wildlife'),
(65557, 54754, 'en', 'name', 'Korean Academy of Medical Sciences'),
(65558, 54755, 'no_lang_code', 'name', 'Promore Pharma (Sweden)'),
(65559, 54756, 'en', 'name', 'Comprehensive Clinical Research'),
(65560, 54757, 'en', 'name', 'Washington Association of School Administrators'),
(65561, 54758, 'fr', 'name', 'Agence de dƩveloppement de l''Oriental, Agence de l''Oriental'),
(65562, 54759, 'no_lang_code', 'name', 'Echo Pharmaceuticals (Netherlands)'),
(65563, 54760, 'no_lang_code', 'name', 'Vector Oncology (United States)'),
(65564, 54761, 'en', 'name', 'Tiger Woods Foundation'),
(65565, 54762, 'en', 'name', 'Malone Family Foundation'),
(65566, 54763, 'en', 'name', 'Laidlaw Foundation'),
(65567, 54764, 'it', 'name', 'Gruppo Italiano per il Trapianto di Midollo Osseo'),
(65568, 54765, 'en', 'name', 'Marie Stopes International'),
(65569, 54766, 'en', 'name', 'New York University Paris'),
(65570, 54767, 'no_lang_code', 'name', 'Hennig Arzneimittel (Germany)'),
(65571, 54768, 'no_lang_code', 'name', 'Whirlpool (Brazil)'),
(65572, 54769, 'en', 'name', 'Diane and Bruce Halle Foundation'),
(65573, 54770, 'no_lang_code', 'name', 'Bradenton Neurology'),
(65574, 54771, 'en', 'name', 'J. E. and L. E. Mabee Foundation'),
(65575, 54772, 'sv', 'name', 'O. E. och Edla Johanssons Vetenskapliga Stiftelse'),
(65576, 54773, 'en', 'name', 'Oxford Fertility'),
(65577, 54774, 'no_lang_code', 'name', 'Aflofarm (Poland)'),
(65578, 54775, 'no_lang_code', 'name', 'Amicus Therapeutics (United Kingdom)'),
(65579, 54776, 'en', 'name', 'Cystinosis Foundation'),
(65580, 54777, 'en', 'name', 'Brain Tumor Funders Collaborative'),
(65581, 54778, 'en', 'name', 'Emirates Foundation'),
(65582, 54779, 'no_lang_code', 'name', 'Johnson County Clin-Trials (United States)'),
(65583, 54780, 'en', 'name', 'Neurology, Inc'),
(65584, 54781, 'no_lang_code', 'name', 'Wintek (Taiwan)'),
(65585, 54782, 'en', 'name', 'Maternal and Child Health Hospital of Xuzhou'),
(65586, 54782, 'zh', 'name', 'å¾å·žåø‚å¦‡å¹¼äæå„é™¢'),
(65587, 54783, 'en', 'name', 'Uplift Education'),
(65588, 54784, 'en', 'name', 'CH Foundation'),
(65589, 54785, 'en', 'name', 'Association Horizons'),
(65590, 54786, 'en', 'name', 'Media Impact Funders'),
(65591, 54787, 'no_lang_code', 'name', 'Sterna Biologicals (Germany)'),
(65592, 54788, 'it', 'name', 'Fondazione Melanoma Onlus'),
(65593, 54789, 'en', 'name', 'Fourth Hospital of Inner Mongolia'),
(65594, 54789, 'zh', 'name', 'å†…č’™å¤ē¬¬å››åŒ»é™¢'),
(65595, 54790, 'en', 'name', 'American Society of Pharmacognosy'),
(65596, 54791, 'el', 'name', 'Ī Ļ„Ī·Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒĻ‚ Ī£ĻĪ½Ī“ĪµĻƒĪ¼ĪæĻ‚'),
(65597, 54791, 'en', 'name', 'BirdLife Cyprus'),
(65598, 54792, 'da', 'name', 'Aarhus Stadsarkiv'),
(65599, 54793, 'en', 'name', 'Always Dream Foundation'),
(65600, 54794, 'de', 'name', 'Evonik Stiftung'),
(65601, 54795, 'en', 'name', 'Brewers Association of Australia and New Zealand'),
(65602, 54796, 'en', 'name', 'St. Bonifatius Hospital'),
(65603, 54797, 'nl', 'name', 'GGZ Oost Brabant'),
(65604, 54798, 'en', 'name', 'KickStart International'),
(65605, 54799, 'en', 'name', 'Davidorf Eye Group'),
(65606, 54800, 'en', 'name', 'Signature Healthcare Brockton Hospital'),
(65607, 54801, 'en', 'name', 'Asthma Australia'),
(65608, 54802, 'en', 'name', 'Texas Public Policy Foundation'),
(65609, 54803, 'no_lang_code', 'name', 'Dermapharm (Germany)'),
(65610, 54804, 'en', 'name', 'Concern Worldwide US'),
(65611, 54805, 'en', 'name', 'Carl & Emily Fuchs Foundation'),
(65612, 54806, 'en', 'name', 'Weippe Public Library'),
(65613, 54807, 'en', 'name', 'Illinois Bone and Joint Institute'),
(65614, 54808, 'en', 'name', 'EMDR Research Foundation'),
(65615, 54809, 'no_lang_code', 'name', 'Logitech (Switzerland)'),
(65616, 54810, 'en', 'name', 'National Student Clearinghouse Research Center'),
(65617, 54811, 'en', 'name', 'Junior Achievement'),
(65618, 54812, 'no_lang_code', 'name', 'Bouty (Italy)'),
(65619, 54813, 'en', 'name', 'Remington-Davis Clinical Research'),
(65620, 54814, 'en', 'name', 'Gaozhou People''s Hospital'),
(65621, 54814, 'zh', 'name', 'é«˜å·žäŗŗę°‘åŒ»é™¢'),
(65622, 54815, 'en', 'name', 'Taustine Eye Center'),
(65623, 54816, 'no_lang_code', 'name', 'ImCyse (Belgium)'),
(65624, 54817, 'no_lang_code', 'name', 'Xenetic Biosciences (United States)'),
(65625, 54818, 'no_lang_code', 'name', 'Newron Pharmaceuticals (Italy)'),
(65626, 54819, 'en', 'name', 'Aspire Public Schools'),
(65627, 54820, 'no_lang_code', 'name', 'Hervana (Israel)'),
(65628, 54821, 'ar', 'name', 'المؤسسة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(65629, 54821, 'en', 'name', 'Arab Science and Technology Foundation'),
(65630, 54822, 'en', 'name', 'American Osteopathic Foundation'),
(65631, 54823, 'sv', 'name', 'Akademikliniken'),
(65632, 54824, 'en', 'name', 'Community Foundation of Broward'),
(65633, 54825, 'no_lang_code', 'name', 'Klabzuba (United States)'),
(65634, 54826, 'en', 'name', 'Association for Prevention Teaching and Research'),
(65635, 54827, 'es', 'name', 'Fundación In Terris'),
(65636, 54828, 'en', 'name', 'American Association for the Surgery of Trauma'),
(65637, 54829, 'da', 'name', 'Dansk Selskab For BevƦgeforstyrrelser'),
(65638, 54829, 'en', 'name', 'Danish Movement Disorder Society'),
(65639, 54830, 'fr', 'name', 'Fondation Rose et Jean Hoguet'),
(65640, 54831, 'en', 'name', 'Wolstan & Goldberg Eye Associates'),
(65641, 54832, 'en', 'name', 'Hellenic Cardiovascular Research Society'),
(65642, 54833, 'no_lang_code', 'name', 'Neovacs (France)'),
(65643, 54834, 'no_lang_code', 'name', 'Erbe Elektromedizin (Germany)'),
(65644, 54835, 'en', 'name', 'Apple University Consortium'),
(65645, 54836, 'en', 'name', 'Center for Anxiety and Depression'),
(65646, 54837, 'no_lang_code', 'name', 'AstraZeneca (Spain)'),
(65647, 54838, 'en', 'name', 'Hefei First People''s Hospital'),
(65648, 54838, 'zh', 'name', 'åˆč‚„ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(65649, 54839, 'en', 'name', 'Lampang Cancer Hospital'),
(65650, 54840, 'en', 'name', 'Moscow City Oncology Hospital ā„–62'),
(65651, 54841, 'id', 'name', 'Rumah Sakit Jantung Binawaluya'),
(65652, 54842, 'en', 'name', 'Nancy Lurie Marks Family Foundation'),
(65653, 54843, 'en', 'name', 'Comprehensive Clinical Trials'),
(65654, 54844, 'no_lang_code', 'name', 'HRA Pharma (United Kingdom)'),
(65655, 54845, 'en', 'name', 'Nightingale Hospital'),
(65656, 54846, 'es', 'name', 'ClĆ­nica CES'),
(65657, 54847, 'en', 'name', 'Washington Student Achievement Council'),
(65658, 54848, 'en', 'name', 'CURE Childhood Cancer'),
(65659, 54849, 'no_lang_code', 'name', 'Owens-Illinois (United States)'),
(65660, 54850, 'no_lang_code', 'name', 'Actuant (United States)'),
(65661, 54851, 'en', 'name', 'EyeSight Foundation of Alabama'),
(65662, 54852, 'en', 'name', 'Community Broadcasting Foundation'),
(65663, 54853, 'en', 'name', 'Lake Research Partners'),
(65664, 54854, 'en', 'name', 'Way Back Inn'),
(65665, 54855, 'it', 'name', 'Fondazione CON IL SUD'),
(65666, 54856, 'en', 'name', 'Injury Care Medical Center'),
(65667, 54857, 'no_lang_code', 'name', 'Lipotek (Australia)'),
(65668, 54858, 'no_lang_code', 'name', 'RDD Pharma (Israel)'),
(65669, 54859, 'no_lang_code', 'name', 'Briggs & Stratton (United States)'),
(65670, 54860, 'no_lang_code', 'name', 'BioMarin (Ireland)'),
(65671, 54861, 'en', 'name', 'M.V. Hospital for Diabetes and Diabetes Research Centre'),
(65672, 54862, 'en', 'name', 'Jehangir Clinical development Centre'),
(65673, 54863, 'en', 'name', 'Rwanda Zambia HIV Research Group'),
(65674, 54864, 'no_lang_code', 'name', 'Goss (United States)'),
(65675, 54865, 'en', 'name', 'American Public Media'),
(65676, 54866, 'en', 'name', 'Massachusetts Health Quality Partners'),
(65677, 54867, 'en', 'name', 'Jewish Women’s Foundation of Metropolitan Detroit'),
(65678, 54868, 'en', 'name', 'Young Women''s Leadership Network'),
(65679, 54869, 'no_lang_code', 'name', 'ProNAi Therapeutics (United States)'),
(65680, 54870, 'en', 'name', 'Federalist Society'),
(65681, 54871, 'fr', 'name', 'Agence de l''Eau Seine Normandie'),
(65682, 54872, 'no_lang_code', 'name', 'Antisense Therapeutics (Australia)'),
(65683, 54873, 'en', 'name', 'NAMM Foundation'),
(65684, 54874, 'en', 'name', 'Warren County Health Department'),
(65685, 54875, 'en', 'name', 'Henry Ford Learning Institute'),
(65686, 54876, 'en', 'name', 'Lawrence General Hospital'),
(65687, 54877, 'fr', 'name', 'Clinique Jules Verne'),
(65688, 54878, 'en', 'name', 'Australian Spinal Research Foundation'),
(65689, 54879, 'en', 'name', 'Ideas42'),
(65690, 54880, 'en', 'name', 'Elsa U. Pardee Foundation'),
(65691, 54881, 'no_lang_code', 'name', 'OneAmerica'),
(65692, 54882, 'en', 'name', 'Northern California DX Foundation'),
(65693, 54883, 'en', 'name', 'State Budget Institution of Health St. Petersburg Clinical Research Center Specialized Types of Medical Care'),
(65694, 54883, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ «Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ клинический Š½Š°ŃƒŃ‡Š½Š¾-практический центр специализированных виГов меГицинской помощи (онкологический)Ā»'),
(65695, 54884, 'en', 'name', 'Adult and Pediatric Dermatology'),
(65696, 54885, 'en', 'name', 'Community Foundation of Greene County'),
(65697, 54886, 'en', 'name', 'Mount Vernon Clinical Research'),
(65698, 54887, 'en', 'name', 'Austrian Breast & Colorectal Cancer Study Group'),
(65699, 54888, 'en', 'name', 'Sanford Heart Hospital'),
(65700, 54889, 'en', 'name', 'Nashville Oncology Associates'),
(65701, 54890, 'en', 'name', 'George Alexander Foundation'),
(65702, 54891, 'no_lang_code', 'name', 'Adyton (Czechia)'),
(65703, 54892, 'no_lang_code', 'name', 'Evolva (Switzerland)'),
(65704, 54893, 'de', 'name', 'Hans Eggenberger Stiftung'),
(65705, 54894, 'en', 'name', 'PIE Network'),
(65706, 54895, 'no_lang_code', 'name', 'Allergan (Belgium)'),
(65707, 54896, 'en', 'name', 'Hannah''s Heroes Foundation'),
(65708, 54897, 'en', 'name', 'Liz Claiborne and Art Ortenberg Foundation'),
(65709, 54898, 'en', 'name', 'Long Island Skin Cancer and Dermatologic Surgery'),
(65710, 54899, 'de', 'name', 'Homann-Stiftung'),
(65711, 54900, 'en', 'name', 'Innovation Center Denmark'),
(65712, 54901, 'en', 'name', 'Pride Foundation'),
(65713, 54902, 'en', 'name', 'Seventh People''s Hospital of Dalian'),
(65714, 54902, 'zh', 'name', 'å¤§čæžåø‚ē¬¬äøƒäŗŗę°‘åŒ»é™¢'),
(65715, 54903, 'en', 'name', 'United States Student Association'),
(65716, 54904, 'en', 'name', 'Australian Football League'),
(65717, 54905, 'en', 'name', 'Environment and Conservation Fund'),
(65718, 54905, 'zh', 'name', 'ē’°å¢ƒåŠč‡Ŗē„¶äæč‚²åŸŗé‡‘'),
(65719, 54906, 'no_lang_code', 'name', 'Hospital Bandeirantes'),
(65720, 54907, 'no_lang_code', 'name', 'Cogentix Medical (United States)'),
(65721, 54908, 'no_lang_code', 'name', 'MicroSave'),
(65722, 54909, 'en', 'name', 'Orenburg Regional Clinical Hospital ā„–2'),
(65723, 54910, 'en', 'name', 'Advanced Dermatology'),
(65724, 54911, 'en', 'name', 'Joshua Tree National Park Association'),
(65725, 54912, 'en', 'name', 'National Agency for the Control of AIDS'),
(65726, 54913, 'it', 'name', 'Agenzia Sanitaria Regionale Abruzzo'),
(65727, 54914, 'en', 'name', 'Childrens Cancer Foundation'),
(65728, 54915, 'en', 'name', 'Training Programs in Epidemiology and Public Health Interventions Network'),
(65729, 54916, 'en', 'name', 'Palaeontological Association'),
(65730, 54917, 'no_lang_code', 'name', 'Ironwood Pharmaceuticals (United States)'),
(65731, 54918, 'no_lang_code', 'name', 'TE Connectivity (Belgium)'),
(65732, 54919, 'ja', 'name', 'ę—„ęœ¬å…‰é›»å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(65733, 54919, 'no_lang_code', 'name', 'Nihon Kohden (Japan)'),
(65734, 54920, 'no_lang_code', 'name', 'Auxilium Engineering Services (United Kingdom)'),
(65735, 54921, 'en', 'name', 'Whatcom Community Foundation'),
(65736, 54922, 'en', 'name', 'Pacific Charter School Development'),
(65737, 54923, 'en', 'name', 'Independent Sector'),
(65738, 54924, 'en', 'name', 'Sambodhi Research and Communications'),
(65739, 54925, 'en', 'name', 'Carolina Urologic Research Center'),
(65740, 54926, 'en', 'name', 'New Mexico Cancer Care Alliance'),
(65741, 54927, 'en', 'name', 'Boston Schools Fund'),
(65742, 54928, 'en', 'name', 'National Association of Secondary School Principals'),
(65743, 54929, 'en', 'name', 'KIPP Bay Area Schools'),
(65744, 54930, 'en', 'name', 'Office of Adolescent Health'),
(65745, 54931, 'en', 'name', 'Mercy Angiography Unit'),
(65746, 54932, 'no_lang_code', 'name', 'Context Network (United States)'),
(65747, 54933, 'en', 'name', 'Campus Compact'),
(65748, 54934, 'en', 'name', 'South Eastern Health and Social Care Trust'),
(65749, 54935, 'no_lang_code', 'name', 'Ciena (United States)'),
(65750, 54936, 'en', 'name', 'HealthCare Chaplaincy Network'),
(65751, 54937, 'en', 'name', 'British International Studies Association'),
(65752, 54938, 'en', 'name', 'Dyslexia Foundation'),
(65753, 54939, 'no_lang_code', 'name', 'Abivax (France)'),
(65754, 54940, 'en', 'name', 'Richland Library'),
(65755, 54941, 'en', 'name', 'Anna-Monika-Foundation'),
(65756, 54942, 'no_lang_code', 'name', 'Kyocera (United States)'),
(65757, 54943, 'no_lang_code', 'name', 'Clinipace (United Kingdom)'),
(65758, 54944, 'no_lang_code', 'name', 'Meritor (France)'),
(65759, 54945, 'en', 'name', 'Blowitz-Ridgeway Foundation'),
(65760, 54946, 'en', 'name', 'World Economic Forum'),
(65761, 54947, 'en', 'name', 'Becket Fund for Religious Liberty'),
(65762, 54948, 'en', 'name', 'Australian Association of Social Workers'),
(65763, 54949, 'en', 'name', 'Ang Mo Kio Thye Hua Kwan Hospital'),
(65764, 54950, 'en', 'name', 'University Cancer and Blood Center'),
(65765, 54951, 'en', 'name', 'Hoopes Vision'),
(65766, 54952, 'en', 'name', 'Overseas Press Club Foundation'),
(65767, 54953, 'en', 'name', 'Clarence E. Heller Charitable Foundation'),
(65768, 54954, 'en', 'name', 'Valley Retina Institute'),
(65769, 54955, 'en', 'name', 'Hope Foundation for Research on Ageing'),
(65770, 54956, 'en', 'name', 'Center for Inspired Teaching'),
(65771, 54957, 'en', 'name', 'Volunteer Research Group and New Orleans Center for Clinical Research'),
(65772, 54958, 'en', 'name', 'Carol M. Baldwin Breast Cancer Research Fund'),
(65773, 54959, 'en', 'name', 'Financial Markets Foundation for Children'),
(65774, 54960, 'en', 'name', 'Mid Illinois Hematology and Oncology Associates'),
(65775, 54961, 'no_lang_code', 'name', 'Vaxxas (Australia)'),
(65776, 54962, 'en', 'name', 'Alaska Heart and Vascular Institute'),
(65777, 54963, 'en', 'name', 'Columbia Global Center'),
(65778, 54964, 'en', 'name', 'Office of Superintendent of Public Instruction'),
(65779, 54965, 'en', 'name', 'Midwest Business Group on Health'),
(65780, 54966, 'no_lang_code', 'name', 'Southco (United States)'),
(65781, 54967, 'en', 'name', 'Association for the Study of the Middle East and Africa'),
(65782, 54968, 'en', 'name', 'Boston IVF'),
(65783, 54969, 'en', 'name', 'Banting Research Foundation'),
(65784, 54970, 'no_lang_code', 'name', 'InnoLux (Taiwan)'),
(65785, 54970, 'zh', 'name', 'ē¾¤å‰µå…‰é›»č‚”ä»½ęœ‰é™å…¬åø'),
(65786, 54971, 'en', 'name', 'Santa Rosa County Library System'),
(65787, 54972, 'en', 'name', 'Dermatology Clinical Research Center of San Antonio'),
(65788, 54973, 'no_lang_code', 'name', 'Intelligent Decision Systems (Spain)'),
(65789, 54974, 'en', 'name', 'Harvard Travellers Club'),
(65790, 54975, 'no_lang_code', 'name', 'Veritas (United States)'),
(65791, 54976, 'en', 'name', 'World Health Partners'),
(65792, 54977, 'no_lang_code', 'name', 'Eisai (Italy)'),
(65793, 54978, 'en', 'name', 'Joseph P. Kennedy Jr. Foundation'),
(65794, 54979, 'da', 'name', 'Knud og Dagny Gad Andresens Fond'),
(65795, 54980, 'no_lang_code', 'name', 'Cellex Cell Professionals (Germany)'),
(65796, 54981, 'de', 'name', 'Klinikum Wilhelmshaven'),
(65797, 54982, 'en', 'name', 'Altoona Arthritis and Osteoporosis Center'),
(65798, 54983, 'en', 'name', 'PMG Research'),
(65799, 54984, 'es', 'name', 'Hospital Jerez Puerta del Sur'),
(65800, 54985, 'en', 'name', 'Hyde Family Foundations'),
(65801, 54986, 'de', 'name', 'Freiwilligen Akademischen Gesellschaft'),
(65802, 54987, 'no_lang_code', 'name', 'CSL (Russia)'),
(65803, 54988, 'no_lang_code', 'name', 'Laves-Arzneimittel (Germany)'),
(65804, 54989, 'en', 'name', 'Fred and Mary Koch Foundation'),
(65805, 54990, 'en', 'name', 'American Dysautonomia Institute'),
(65806, 54991, 'en', 'name', 'Canadian Association for Health Services and Policy Research, l''Association canadienne pur la recherche sur les services et les politiques de la santƩ'),
(65807, 54992, 'en', 'name', 'Bradley Foundation'),
(65808, 54993, 'en', 'name', 'North Toronto Eye Care'),
(65809, 54994, 'en', 'name', 'Scottish National Blood Transfusion Service'),
(65810, 54995, 'no_lang_code', 'name', 'Dolorgiet (Germany)'),
(65811, 54996, 'no_lang_code', 'name', 'Advenio TecnoSys (India)'),
(65812, 54997, 'no_lang_code', 'name', 'BBB Therapeutics (Netherlands)'),
(65813, 54998, 'da', 'name', 'Jascha Fonden'),
(65814, 54999, 'en', 'name', 'E3 Alliance'),
(65815, 55000, 'en', 'name', 'NYSUT Education and Learning Trust'),
(65816, 55001, 'no_lang_code', 'name', 'Azacycles (Czechia)'),
(65817, 55002, 'en', 'name', 'Institute of Biology of Komi Scientific Centre'),
(65818, 55002, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° биологии Коми ŠŠ¦ Š£Ń€Šž Š ŠŠ'),
(65819, 55003, 'nl', 'name', 'Wetenschappelijk Onderzoek- en Documentatiecentrum'),
(65820, 55004, 'en', 'name', 'Biobanking and BioMolecular resources Research Infrastructure The Netherlands'),
(65821, 55005, 'no_lang_code', 'name', 'SEE Laborde JP (France)'),
(65822, 55006, 'no_lang_code', 'name', 'Metron (Switzerland)'),
(65823, 55007, 'en', 'name', 'Alabama Department of Senior Services'),
(65824, 55008, 'no_lang_code', 'name', 'Amtek (Czechia)'),
(65825, 55009, 'no_lang_code', 'name', 'Jinpo Plus (Czechia)'),
(65826, 55010, 'en', 'name', 'Immigration and Ethnic History Society'),
(65827, 55011, 'en', 'name', 'Thoracic Surgery Foundation'),
(65828, 55012, 'it', 'name', 'Pontificio Istituto di Archeologia Cristiana'),
(65829, 55013, 'no_lang_code', 'name', 'Kuraray (United States)'),
(65830, 55014, 'en', 'name', 'New Hampshire State Office of the Governor'),
(65831, 55015, 'en', 'name', 'Swiss Conference of Cantonal Ministers of Education'),
(65832, 55016, 'no_lang_code', 'name', 'Arcadis (Switzerland)'),
(65833, 55017, 'no_lang_code', 'name', 'Stratacor (United States)'),
(65834, 55018, 'en', 'name', 'Department of Space'),
(65835, 55019, 'no_lang_code', 'name', 'Chryso (United States)'),
(65836, 55020, 'no_lang_code', 'name', 'Ostroj (Czechia)'),
(65837, 55021, 'no_lang_code', 'name', 'ASM (Japan)'),
(65838, 55022, 'no_lang_code', 'name', 'Kairosys (United States)'),
(65839, 55023, 'no_lang_code', 'name', 'L.E.T. Optomechanika (Czechia)'),
(65840, 55024, 'no_lang_code', 'name', 'M Plus (Czechia)'),
(65841, 55025, 'en', 'name', 'Sierra Club'),
(65842, 55026, 'de', 'name', 'Vereinigung der Walliser Museen'),
(65843, 55027, 'no_lang_code', 'name', 'LƤnsfƶrsƤkringar (Sweden)'),
(65844, 55028, 'de', 'name', 'Kantonsschule Zug'),
(65845, 55029, 'es', 'name', 'CIUDAD'),
(65846, 55030, 'en', 'name', 'Southern Historical Association'),
(65847, 55031, 'de', 'name', 'HerzgefƤss Medizin Klinik Im Park'),
(65848, 55031, 'en', 'name', 'Cardiovascular Medicine at Klinik Im Park'),
(65849, 55032, 'no_lang_code', 'name', 'Ivitas (Czechia)'),
(65850, 55033, 'en', 'name', 'Indira Gandhi Institute of Technology'),
(65851, 55033, 'or', 'name', 'ą¬‡ą¬Øą­ą¬¦ą¬æą¬°ą¬¾ ą¬—ą¬¾ą¬Øą­ą¬§ą­€ ą¬¬ą­ˆą¬·ą­Ÿą¬æą¬• ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ)'),
(65852, 55034, 'no_lang_code', 'name', 'ON Semiconductor (Japan)'),
(65853, 55035, 'no_lang_code', 'name', 'E4t Electronics for Transportation (Czechia)'),
(65854, 55036, 'no_lang_code', 'name', 'Stago (France)'),
(65855, 55037, 'fr', 'name', 'Institut Clinident'),
(65856, 55038, 'no_lang_code', 'name', 'Juki (United States)'),
(65857, 55039, 'no_lang_code', 'name', 'PositronLabs (Czechia)'),
(65858, 55040, 'en', 'name', 'Gifford Foundation'),
(65859, 55041, 'no_lang_code', 'name', 'Crossject (France)'),
(65860, 55042, 'no_lang_code', 'name', 'Heat Transfer Systems (Czechia)'),
(65861, 55043, 'no_lang_code', 'name', 'Texas Instruments (France)'),
(65862, 55044, 'en', 'name', 'Joint European Torus'),
(65863, 55045, 'en', 'name', 'Voice Foundation'),
(65864, 55046, 'no_lang_code', 'name', 'Hillex (Czechia)'),
(65865, 55047, 'cs', 'name', 'Český rybÔřský svaz'),
(65866, 55047, 'en', 'name', 'Czech Fishing Union'),
(65867, 55048, 'no_lang_code', 'name', 'Precilens (France)'),
(65868, 55049, 'cs', 'name', 'VyŔŔí OdbornĆ” Å kola PedagogickĆ” a SociĆ”lnĆ­ StřednĆ­ OdbornĆ” Å kola PedagogickĆ” a GymnĆ”zium Praha 6'),
(65869, 55050, 'no_lang_code', 'name', 'Aveflor (Czechia)'),
(65870, 55051, 'no_lang_code', 'name', 'Precisa Gravimetrics (Switzerland)'),
(65871, 55052, 'en', 'name', 'National Institute of Biomedical Innovation, Health and Nutrition'),
(65872, 55052, 'ja', 'name', '国立研究開発法人 åŒ»č–¬åŸŗē›¤ 偄康 ę „é¤Šē ”ē©¶ę‰€'),
(65873, 55053, 'en', 'name', 'Rosalinde and Arthur Gilbert Foundation'),
(65874, 55054, 'fr', 'name', 'Institut SupƩrieur des MatƩriaux du Mans'),
(65875, 55055, 'no_lang_code', 'name', 'Philips (China)'),
(65876, 55056, 'de', 'name', 'Institut für Kommunikation & Führung'),
(65877, 55056, 'en', 'name', 'Institute for Communication and Leadership'),
(65878, 55057, 'de', 'name', 'Pflege-und Adoptivkinder Schweiz'),
(65879, 55058, 'fi', 'name', 'Lastentautien TutkimussƤƤtiƶ'),
(65880, 55059, 'en', 'name', 'Waikato Medical Research Foundation'),
(65881, 55060, 'de', 'name', 'Amt für Umwelt'),
(65882, 55061, 'en', 'name', 'Kumagai Foundation for Science and Technology'),
(65883, 55061, 'ja', 'name', 'ē†Šč°·ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(65884, 55062, 'no_lang_code', 'name', 'Imagination Technologies (United States)'),
(65885, 55063, 'no_lang_code', 'name', 'Alliance Pharmaceuticals (United Kingdom)'),
(65886, 55064, 'no_lang_code', 'name', 'Elekta (Switzerland)'),
(65887, 55065, 'cs', 'name', 'Ústav Sportovní Medicíny'),
(65888, 55066, 'cs', 'name', 'RybÔřstvĆ­ MariĆ”nskĆ© LĆ”zně'),
(65889, 55067, 'no_lang_code', 'name', 'AG Medical (France)'),
(65890, 55068, 'no_lang_code', 'name', 'Pramacom-Ht (Czechia)'),
(65891, 55069, 'no_lang_code', 'name', 'Wiesner Hager (Czechia)'),
(65892, 55070, 'fr', 'name', 'Fondation Suisse pour les Téléthèses'),
(65893, 55071, 'cs', 'name', 'Společnost pro Trvale Udržitelný Život'),
(65894, 55072, 'no_lang_code', 'name', 'Micromun'),
(65895, 55073, 'no_lang_code', 'name', 'Koutný (Czechia)'),
(65896, 55074, 'no_lang_code', 'name', '3Dim Laboratory (Czechia)'),
(65897, 55075, 'no_lang_code', 'name', 'Syndicom (Switzerland)'),
(65898, 55076, 'en', 'name', 'International Union of Food Science and Technology'),
(65899, 55077, 'no_lang_code', 'name', 'Elisa Development (Czechia)'),
(65900, 55078, 'no_lang_code', 'name', 'Harry Winston (Switzerland)'),
(65901, 55079, 'no_lang_code', 'name', 'P and L (Czechia)'),
(65902, 55080, 'no_lang_code', 'name', 'Dean Foods (United States)'),
(65903, 55081, 'de', 'name', 'Schweizerischer Nationalpark'),
(65904, 55081, 'en', 'name', 'Swiss National Park'),
(65905, 55081, 'fr', 'name', 'Parc National Suisse'),
(65906, 55081, 'it', 'name', 'Parco Nazionale Svizzero'),
(65907, 55081, 'rm', 'name', 'Parc Naziunal Svizzer'),
(65908, 55082, 'de', 'name', 'Abteilung Bildungsplanung und Evaluation'),
(65909, 55083, 'no_lang_code', 'name', 'Anopress IT (Czechia)'),
(65910, 55084, 'de', 'name', 'Textilforschungsinstitut Thüringen-Vogtland'),
(65911, 55084, 'en', 'name', 'Textile Research Institute Thuringia-Vogtland'),
(65912, 55085, 'no_lang_code', 'name', 'Exosome Diagnostics (United States)'),
(65913, 55086, 'de', 'name', 'Museum Appenzell'),
(65914, 55087, 'no_lang_code', 'name', 'Aptimmune Biologics (United States)'),
(65915, 55088, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики металлополимерных систем им. Š’.А. Белого'),
(65916, 55088, 'en', 'name', 'Institute of Mechanics of Metal-Polymer Systems'),
(65917, 55089, 'no_lang_code', 'name', 'VodnĆ­ Zdroje Ekomonitor (Czechia)'),
(65918, 55090, 'no_lang_code', 'name', 'Central European Media Enterprises (Czechia)'),
(65919, 55091, 'no_lang_code', 'name', 'StavebnĆ­ Geologie - GeoprÅÆzkum ČeskĆ© Budějovice (Czechia)'),
(65920, 55092, 'de', 'name', 'WiederkƤuerklinik'),
(65921, 55093, 'no_lang_code', 'name', 'KÅ  Prefa (Czechia)'),
(65922, 55094, 'en', 'name', 'Swiss Continence Foundation'),
(65923, 55095, 'no_lang_code', 'name', 'Hostýnské Papírny (Czechia)'),
(65924, 55096, 'cs', 'name', 'ČeskÔ asociace rozvojových agentur'),
(65925, 55096, 'en', 'name', 'Czech Association of Development Agencies'),
(65926, 55097, 'de', 'name', 'Amt für Hochbauten'),
(65927, 55098, 'en', 'name', 'International Center for Agribusiness Research and Education'),
(65928, 55099, 'no_lang_code', 'name', 'Techem (Czechia)'),
(65929, 55100, 'no_lang_code', 'name', 'Pragoprojekt (Czechia)'),
(65930, 55101, 'no_lang_code', 'name', 'Galaxy Advanced Engineering (United States)'),
(65931, 55102, 'de', 'name', 'Pro Familia Schweiz'),
(65932, 55103, 'no_lang_code', 'name', 'DrƤger (Netherlands)'),
(65933, 55104, 'no_lang_code', 'name', 'United BioSource Corporation (United Kingdom)'),
(65934, 55105, 'de', 'name', 'Zürcher RehaZentrum Davos'),
(65935, 55106, 'no_lang_code', 'name', 'Horphag Research (Switzerland)'),
(65936, 55107, 'no_lang_code', 'name', 'Medicoat (Switzerland)'),
(65937, 55108, 'no_lang_code', 'name', 'INFICON (Germany)'),
(65938, 55109, 'cs', 'name', 'Muzeum Cheb'),
(65939, 55110, 'fr', 'name', 'Service de SantƩ de la Jeunesse'),
(65940, 55111, 'no_lang_code', 'name', 'Tomst (Czechia)'),
(65941, 55112, 'cs', 'name', 'Selekta Pacov'),
(65942, 55113, 'de', 'name', 'Recherche Internationale sur le Vitrail'),
(65943, 55113, 'en', 'name', 'Corpus Vitrearum International'),
(65944, 55114, 'no_lang_code', 'name', 'CCS (Czechia)'),
(65945, 55115, 'no_lang_code', 'name', 'Total Security Installations (United Kingdom)'),
(65946, 55116, 'no_lang_code', 'name', 'Agrio (Czechia)'),
(65947, 55117, 'no_lang_code', 'name', 'MZ Liberec (Czechia)'),
(65948, 55118, 'de', 'name', 'Schweizerisches Sozialarchiv'),
(65949, 55118, 'en', 'name', 'Swiss Social Archives'),
(65950, 55119, 'no_lang_code', 'name', 'Perrigo (Czechia)'),
(65951, 55120, 'cs', 'name', 'Ústav T. G. Masaryka'),
(65952, 55121, 'no_lang_code', 'name', 'Mallinckrodt (Ireland)'),
(65953, 55122, 'no_lang_code', 'name', 'Kone (Switzerland)'),
(65954, 55123, 'en', 'name', 'Guangzhou Education Bureau'),
(65955, 55123, 'zh', 'name', 'å¹æå·žåø‚ę•™č‚²å±€'),
(65956, 55124, 'no_lang_code', 'name', 'Ecosens (Switzerland)'),
(65957, 55125, 'no_lang_code', 'name', 'Strojírny OlŔovec (Czechia)'),
(65958, 55126, 'no_lang_code', 'name', 'Intemac Solutions (Czechia)'),
(65959, 55127, 'en', 'name', 'Rothschild Caesarea Foundation'),
(65960, 55128, 'no_lang_code', 'name', 'Bemagro (Czechia)'),
(65961, 55129, 'no_lang_code', 'name', 'Bioanalytica (Switzerland)'),
(65962, 55130, 'no_lang_code', 'name', 'AGC Flat Glass Czech (Czechia)'),
(65963, 55131, 'no_lang_code', 'name', 'Resonance Health (Australia)'),
(65964, 55132, 'no_lang_code', 'name', 'ILC Dover (United States)'),
(65965, 55133, 'no_lang_code', 'name', 'JaP Jacina (Czechia)'),
(65966, 55134, 'en', 'name', 'Students Supporting Brain Tumor Research'),
(65967, 55135, 'en', 'name', 'Vision of Children Foundation'),
(65968, 55136, 'no_lang_code', 'name', 'Straub Medical (Switzerland)'),
(65969, 55137, 'no_lang_code', 'name', 'Web Vision Centers (United States)'),
(65970, 55138, 'no_lang_code', 'name', 'Cultech (United Kingdom)'),
(65971, 55139, 'en', 'name', 'Institute of Fine Organic Chemistry of Scientific - Technological Center of Organic and Pharmaceutical Chemistry'),
(65972, 55139, 'hy', 'name', 'Ō³Ō±Ō± Õ•Ö€Õ£Õ”Õ¶Õ”ÕÆÕ”Õ¶ և Õ¤Õ„Õ²Õ”Õ£ÕøÖ€Õ®Õ”ÕÆÕ”Õ¶ Ö„Õ«Õ“Õ«Õ”ÕµÕ« Õ£Õ«ÕæÕ”ÕæÕ„Õ­Õ¶ÕøÕ¬ÕøÕ£Õ«Õ”ÕÆÕ”Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(65973, 55140, 'no_lang_code', 'name', 'Newton Technologies (Czechia)'),
(65974, 55141, 'en', 'name', 'Ryan Licht Sang Bipolar Foundation'),
(65975, 55142, 'no_lang_code', 'name', 'STS Prachatice (Czechia)'),
(65976, 55143, 'no_lang_code', 'name', 'Batrec (Switzerland)'),
(65977, 55144, 'no_lang_code', 'name', 'EndoSphere (United States)'),
(65978, 55145, 'no_lang_code', 'name', 'Ardeapharma (Czechia)'),
(65979, 55146, 'en', 'name', 'Korea National Park Service'),
(65980, 55147, 'cs', 'name', 'Svaz Výrobců Cementu'),
(65981, 55148, 'en', 'name', 'Innovascience'),
(65982, 55148, 'fr', 'name', 'Laboratoire Innovascience'),
(65983, 55149, 'no_lang_code', 'name', 'Cardinal Health (Switzerland)'),
(65984, 55150, 'no_lang_code', 'name', 'AMT (Czechia)'),
(65985, 55151, 'en', 'name', 'Boys and Girls Clubs of Metro Los Angeles'),
(65986, 55152, 'en', 'name', 'Russian Science Support Foundation'),
(65987, 55152, 'ru', 'name', 'Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ общественный ФонГ ŃŠ¾Š“ŠµŠ¹ŃŃ‚Š²ŠøŃ отечественной науке'),
(65988, 55153, 'no_lang_code', 'name', 'Geodrill (Czechia)'),
(65989, 55154, 'no_lang_code', 'name', 'Alpiq Generation (Czechia)'),
(65990, 55155, 'en', 'name', 'Youthprise'),
(65991, 55156, 'en', 'name', 'IBM Research - Almaden'),
(65992, 55157, 'no_lang_code', 'name', 'Focam (Czechia)'),
(65993, 55158, 'no_lang_code', 'name', 'Compumedics (Australia)'),
(65994, 55159, 'no_lang_code', 'name', 'OneFit Medical (France)'),
(65995, 55160, 'en', 'name', 'Pediatric Cancer Research Foundation'),
(65996, 55161, 'aa', 'name', 'SociƩtƩ des Ornithologistes du Canada'),
(65997, 55161, 'en', 'name', 'Society of Canadian Ornithologists'),
(65998, 55162, 'no_lang_code', 'name', 'Lena Chemical (Czechia)'),
(65999, 55163, 'cs', 'name', 'Asociace Pro MlĆ”dež Vědu a Techniku'),
(66000, 55164, 'de', 'name', 'Forschungsinstitut für Anorganische Werkstoffe -Glas/Keramik'),
(66001, 55165, 'no_lang_code', 'name', 'Netcope Technologies (Czechia)'),
(66002, 55166, 'no_lang_code', 'name', 'Medicalex (France)'),
(66003, 55167, 'cs', 'name', 'DětskĆ© KrizovĆ© Centrum'),
(66004, 55168, 'no_lang_code', 'name', 'BrněnskĆ© VodĆ”rny a Kanalizace (Czechia)'),
(66005, 55169, 'en', 'name', 'Central District Health Department'),
(66006, 55170, 'en', 'name', 'Scientific-Research Institute of Electric Power Transmission'),
(66007, 55170, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠžŠ”Š¢ŠžŠÆŠŠŠžŠ“Šž Š¢ŠžŠšŠ'),
(66008, 55171, 'en', 'name', 'Ulla Tuominen Foundation'),
(66009, 55171, 'fi', 'name', 'Ulla Tuomisen SƤƤtiƶ'),
(66010, 55172, 'en', 'name', 'Honey Bee Research Institute and Nature Center'),
(66011, 55173, 'en', 'name', 'Nanjing Health and Health Commission'),
(66012, 55173, 'zh', 'name', 'å—äŗ¬åø‚å«ē”Ÿå±€'),
(66013, 55174, 'no_lang_code', 'name', 'Kornet (Czechia)'),
(66014, 55175, 'en', 'name', 'MƩditerranƩe Infection Foundation'),
(66015, 55176, 'no_lang_code', 'name', 'Progres Ekotech (Czechia)'),
(66016, 55177, 'no_lang_code', 'name', 'Wolfsberg LeteckƔ TovƔrna (Czechia)'),
(66017, 55178, 'en', 'name', 'Foundation for Agricultural and Rural Resource Management and Sustainability'),
(66018, 55179, 'en', 'name', 'Developmental Studies Hybridoma Bank'),
(66019, 55180, 'en', 'name', 'Institute for the Humanities and Information Technologies'),
(66020, 55180, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø информационных технологий'),
(66021, 55181, 'no_lang_code', 'name', 'Isomed (France)'),
(66022, 55182, 'en', 'name', 'Radium Hemmets Research Funds'),
(66023, 55182, 'sv', 'name', 'Radiumhemmets forskningsfonder'),
(66024, 55183, 'no_lang_code', 'name', 'GeoControl Systems (United States)'),
(66025, 55184, 'no_lang_code', 'name', 'TSI System (Czechia)'),
(66026, 55185, 'en', 'name', 'Kyiv School of Economics'),
(66027, 55185, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠ° школа економіки'),
(66028, 55186, 'en', 'name', 'International Society for Military Law and the Law of War'),
(66029, 55186, 'nl', 'name', 'SociƩtƩ Internationale de Droit Militaire et de Droit de la Guerre'),
(66030, 55187, 'no_lang_code', 'name', 'Scot Young Research (United Kingdom)'),
(66031, 55188, 'no_lang_code', 'name', 'KomerčnĆ­ ŽelezničnĆ­ Výzkum (Czechia)'),
(66032, 55189, 'es', 'name', 'Fundación Sandra Ibarra de Solidaridad Frente al CÔncer'),
(66033, 55190, 'no_lang_code', 'name', 'OP Financial Group (Finland)'),
(66034, 55191, 'no_lang_code', 'name', 'Prokop (Czechia)'),
(66035, 55192, 'no_lang_code', 'name', 'Air Jihlava Service (Czechia)'),
(66036, 55193, 'no_lang_code', 'name', 'Sunhai Bioadhesive Technologies (United States)'),
(66037, 55194, 'no_lang_code', 'name', 'VMK (Czechia)'),
(66038, 55195, 'no_lang_code', 'name', 'Velvana (Czechia)'),
(66039, 55196, 'en', 'name', 'Institute for Soil Science and Agrochemistry Research'),
(66040, 55196, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ņ‘Ń€ŃƒŠ½Ń‚Š¾Š·Š½Š°Š²ŃŃ‚Š²Š° та агрохімії імені Šž.Š. Доколовського'),
(66041, 55197, 'en', 'name', 'Ontario Institute for Regenerative Medicine'),
(66042, 55198, 'no_lang_code', 'name', 'IKP Consulting Engineers (Czechia)'),
(66043, 55199, 'en', 'name', 'Eastern Research Institute of Coal Chemistry'),
(66044, 55199, 'ru', 'name', 'Восточный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(66045, 55200, 'no_lang_code', 'name', 'Radon vos (Czechia)'),
(66046, 55201, 'en', 'name', 'Scripps Korea Antibody Institute'),
(66047, 55201, 'ko', 'name', 'ģŠ¤ķ¬ė¦½ģŠ¤ģ½”ė¦¬ģ•„ķ•­ģ²“ģ—°źµ¬ģ›'),
(66048, 55202, 'no_lang_code', 'name', 'Kemira (Germany)'),
(66049, 55203, 'no_lang_code', 'name', 'Welltest (Czechia)'),
(66050, 55204, 'no_lang_code', 'name', 'KMC Group (Czechia)'),
(66051, 55205, 'no_lang_code', 'name', 'Brothier (France)'),
(66052, 55206, 'no_lang_code', 'name', 'Debiotech (Switzerland)'),
(66053, 55207, 'en', 'name', 'Shenyang Science and Technology Bureau'),
(66054, 55207, 'zh', 'name', 'ę²ˆé˜³åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(66055, 55208, 'no_lang_code', 'name', 'Schneider Electric (Denmark)'),
(66056, 55209, 'no_lang_code', 'name', 'Aqua Procon (Czechia)'),
(66057, 55210, 'no_lang_code', 'name', 'Foodlink'),
(66058, 55211, 'no_lang_code', 'name', 'GTW Bearings (Czechia)'),
(66059, 55212, 'ka', 'name', 'įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒ‘įƒįƒ¢įƒįƒœįƒ˜įƒ™įƒ£įƒ įƒ˜ įƒ‘įƒįƒ¦įƒ˜'),
(66060, 55212, 'no_lang_code', 'name', 'Batumi Botanical Garden'),
(66061, 55213, 'no_lang_code', 'name', 'Williams (United States)'),
(66062, 55214, 'no_lang_code', 'name', 'EM Brno (Czechia)'),
(66063, 55215, 'de', 'name', 'Deutsche JosƩ Carreras LeukƤmie-Stiftung'),
(66064, 55216, 'no_lang_code', 'name', 'SEEIF Ceramic (Czechia)'),
(66065, 55217, 'en', 'name', 'West Central Initiative'),
(66066, 55218, 'de', 'name', 'Robert Walser-Zentrum'),
(66067, 55219, 'en', 'name', 'Daresbury Laboratory'),
(66068, 55220, 'no_lang_code', 'name', 'Hobl & Pech (Czechia)'),
(66069, 55221, 'de', 'name', 'Rosa-Luxemburg-Stiftung'),
(66070, 55221, 'en', 'name', 'Rosa Luxemburg Foundation'),
(66071, 55222, 'en', 'name', 'Jilin Zixin Pharmaceutical Industrial'),
(66072, 55222, 'zh', 'name', 'å‰ęž—ē“«é‘«čÆäøšč‚”ä»½ęœ‰é™å…¬åøå®˜ę–¹ē½‘ē«™'),
(66073, 55223, 'en', 'name', 'Unity Through Knowledge Fund'),
(66074, 55224, 'no_lang_code', 'name', 'BotaniPharm (United States)'),
(66075, 55225, 'en', 'name', 'Regional Center for Poison Control and Prevention'),
(66076, 55226, 'en', 'name', 'Next Generation Infrastructures'),
(66077, 55226, 'nl', 'name', 'Stichting Next Generation Infrastructures'),
(66078, 55227, 'fr', 'name', 'Groupe ICV, Institut coopƩratif du vin'),
(66079, 55228, 'no_lang_code', 'name', 'Portmann Instruments (Switzerland)'),
(66080, 55229, 'no_lang_code', 'name', 'CS-Beton (Czechia)'),
(66081, 55230, 'no_lang_code', 'name', 'E therm TZ (Czechia)'),
(66082, 55231, 'no_lang_code', 'name', 'ITA Intertact (Czechia)'),
(66083, 55232, 'no_lang_code', 'name', 'Ecoprogress (Czechia)'),
(66084, 55233, 'no_lang_code', 'name', 'Millar (New Zealand)'),
(66085, 55234, 'en', 'name', 'Footwear & Recreation Technology Research Institute'),
(66086, 55235, 'no_lang_code', 'name', 'TTS Group (Czechia)'),
(66087, 55236, 'en', 'name', 'Vyatka State University of Humanities'),
(66088, 55236, 'ru', 'name', 'Š’ŃŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(66089, 55237, 'en', 'name', 'Society for the Study of Social Problems'),
(66090, 55238, 'no_lang_code', 'name', 'Midas Mediscience (United Kingdom)'),
(66091, 55239, 'no_lang_code', 'name', 'Aging Community Coordinated Enterprises and Supportive Services (United States)'),
(66092, 55240, 'en', 'name', 'Thorsten and Elsa Segerfalk Foundation'),
(66093, 55240, 'sv', 'name', 'Torsten och Elsa Segerfalks stiftelse'),
(66094, 55241, 'de', 'name', 'Rƶmisches Institut der Gƶrres-Gesellschaft'),
(66095, 55242, 'no_lang_code', 'name', 'Kell (Czechia)'),
(66096, 55243, 'no_lang_code', 'name', 'Dynamic Future (Czechia)'),
(66097, 55244, 'en', 'name', 'DermaCare Neuroscience Institute'),
(66098, 55245, 'no_lang_code', 'name', 'Cayman Chemical (United States)'),
(66099, 55246, 'no_lang_code', 'name', 'PNM Resources (United States)'),
(66100, 55247, 'en', 'name', 'Thundermist Health Center'),
(66101, 55248, 'ja', 'name', 'ę“„ę‘ē·åˆē ”ē©¶ę‰€'),
(66102, 55248, 'no_lang_code', 'name', 'Tsumura Research Institute (Japan)'),
(66103, 55249, 'en', 'name', 'Young Men''s Christian Association Of Greater Grand Rapids'),
(66104, 55250, 'no_lang_code', 'name', 'ZetrOZ Systems (United States)'),
(66105, 55251, 'no_lang_code', 'name', 'MƩdical Innovation DƩveloppement (France)'),
(66106, 55252, 'de', 'name', 'Deutsch-Israelische Zusammenarbeit'),
(66107, 55252, 'en', 'name', 'German-Israeli Cooperation'),
(66108, 55253, 'sv', 'name', 'Gƶranssonska Stiftelserna'),
(66109, 55254, 'no_lang_code', 'name', 'Top - Modern (Czechia)'),
(66110, 55255, 'en', 'name', 'Tbilisi State Academy of Arts'),
(66111, 55255, 'ka', 'name', 'įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒįƒ›įƒ®įƒįƒ¢įƒ•įƒ įƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(66112, 55256, 'no_lang_code', 'name', 'Cleantex (Czechia)'),
(66113, 55257, 'no_lang_code', 'name', 'Prokop Rail (Czechia)'),
(66114, 55258, 'no_lang_code', 'name', 'Polynomics (Switzerland)'),
(66115, 55259, 'en', 'name', 'Institute for Sustainable Communication'),
(66116, 55260, 'de', 'name', 'Pro Helvetia'),
(66117, 55261, 'en', 'name', 'Mahatma Gandhi Institute for Rural Industrialization'),
(66118, 55262, 'no_lang_code', 'name', 'Lintech (Czechia)'),
(66119, 55263, 'en', 'name', 'Parkinson’s Disease Foundation of India'),
(66120, 55264, 'fi', 'name', 'Paavo Nurmen SƤƤtiƶ'),
(66121, 55265, 'no_lang_code', 'name', 'Aptar (Germany)'),
(66122, 55266, 'no_lang_code', 'name', 'Aeronautical and General Instruments'),
(66123, 55267, 'no_lang_code', 'name', 'Heltos (Czechia)'),
(66124, 55268, 'en', 'name', 'HSC Health Care System'),
(66125, 55269, 'no_lang_code', 'name', 'ViDiS (Czechia)'),
(66126, 55270, 'es', 'name', 'Fundación Caja Navarra'),
(66127, 55271, 'de', 'name', 'Medienboard Berlin-Brandenburg'),
(66128, 55272, 'cs', 'name', 'ZkuŔebna Kamene a Kameniva'),
(66129, 55273, 'no_lang_code', 'name', 'Exact Control System (Czechia)'),
(66130, 55274, 'fr', 'name', 'Laboratoire Romand de Dendrochronologie'),
(66131, 55275, 'en', 'name', 'Scientific Research Institute of Organic Intermediates and Dyes'),
(66132, 55275, 'ru', 'name', 'Š¤Š“Š£ŠŸ Ā«Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр ā€žŠŠ˜ŠžŠŸŠ˜Ššā€œ'),
(66133, 55276, 'no_lang_code', 'name', 'Schaeffer (Switzerland)'),
(66134, 55277, 'en', 'name', 'Pushkin Museum'),
(66135, 55277, 'ru', 'name', 'Музей ŠøŠ·Š¾Š±Ń€Š°Š·ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… ŠøŃŠŗŃƒŃŃŃ‚Š² им. А.Š”. Пушкина'),
(66136, 55278, 'no_lang_code', 'name', 'Züblin (United States)'),
(66137, 55279, 'no_lang_code', 'name', 'Festool (Czechia)'),
(66138, 55280, 'no_lang_code', 'name', 'Koyo Bearings (Czechia)'),
(66139, 55281, 'no_lang_code', 'name', '1 - Cube (Czechia)'),
(66140, 55282, 'en', 'name', 'Samuel H. Kress Foundation'),
(66141, 55283, 'en', 'name', 'Wyncote Foundation'),
(66142, 55284, 'cs', 'name', 'StĆ”tnĆ­ oblastnĆ­ archiv v Třeboni'),
(66143, 55284, 'en', 'name', 'Regional State Archives in Trebon'),
(66144, 55285, 'cs', 'name', 'MěstskĆ© lesy Hradec KrĆ”lovĆ©'),
(66145, 55286, 'de', 'name', 'State Archives Basel-Stadt'),
(66146, 55287, 'cs', 'name', 'SprÔva Jeskyní České Republiky'),
(66147, 55287, 'en', 'name', 'Cave Administration of the Czech Republic'),
(66148, 55288, 'it', 'name', 'Istituto per la Storia del Pensiero Filosofico e Scientifico Moderno'),
(66149, 55289, 'en', 'name', 'St. Paul’s Foundation'),
(66150, 55290, 'en', 'name', 'Reflections of Grace Foundation'),
(66151, 55291, 'en', 'name', 'Singapore Heart Foundation'),
(66152, 55292, 'no_lang_code', 'name', 'Larad (United States)'),
(66153, 55293, 'no_lang_code', 'name', 'Laboratoires Sebbin (France)'),
(66154, 55294, 'en', 'name', 'Economic Development Commission of Floridas Space Coast'),
(66155, 55295, 'en', 'name', 'Jangheung Mushroom Industry Research'),
(66156, 55295, 'ko', 'name', 'ģž„ķ„źµ°ė²„ģ„Æģ‚°ģ—…ģ—°źµ¬ģ›'),
(66157, 55296, 'no_lang_code', 'name', 'Danone (Czechia)'),
(66158, 55297, 'no_lang_code', 'name', 'Würth (Germany)'),
(66159, 55298, 'de', 'name', 'Institut für Biomedizinische Technik'),
(66160, 55298, 'en', 'name', 'Institute for Biomedical Engineering'),
(66161, 55299, 'no_lang_code', 'name', 'Buzuluk (Czechia)'),
(66162, 55300, 'fr', 'name', 'Cizeta Medicali'),
(66163, 55301, 'cs', 'name', 'Ústav pro stĆ”tnĆ­ kontrolu veterinĆ”rnĆ­ch biopreparĆ”tÅÆ a lĆ©Äiv'),
(66164, 55301, 'en', 'name', 'Institute for State Control of Veterinary Biologicals and Medicines'),
(66165, 55302, 'no_lang_code', 'name', 'Bayer (Czechia)'),
(66166, 55303, 'no_lang_code', 'name', 'General Electric (New Zealand)'),
(66167, 55304, 'no_lang_code', 'name', 'Kovo Novak (Czechia)'),
(66168, 55305, 'no_lang_code', 'name', 'Tamedia (Switzerland)'),
(66169, 55306, 'no_lang_code', 'name', 'Furukawa Electric (United States)'),
(66170, 55307, 'en', 'name', 'Astro Space Center'),
(66171, 55308, 'no_lang_code', 'name', 'Robotik Technology (France)'),
(66172, 55309, 'no_lang_code', 'name', 'Color Spectrum (Czechia)'),
(66173, 55310, 'no_lang_code', 'name', 'Besins Healthcare (France)'),
(66174, 55311, 'en', 'name', 'Charles Humbert 8');
INSERT INTO `ror_settings` VALUES
(66175, 55312, 'no_lang_code', 'name', 'Progeo (Czechia)'),
(66176, 55313, 'no_lang_code', 'name', 'Czech Space Research Centre (Czechia)'),
(66177, 55314, 'no_lang_code', 'name', 'Quantum (Australia)'),
(66178, 55315, 'no_lang_code', 'name', 'Husky (Luxembourg)'),
(66179, 55316, 'no_lang_code', 'name', 'Aston Medical (France)'),
(66180, 55317, 'de', 'name', 'Gesundheitsdienst'),
(66181, 55318, 'no_lang_code', 'name', 'Bazar strojÅÆ (Czechia)'),
(66182, 55319, 'cs', 'name', 'Technický a zkuŔební ústav stavební Praha, s.p.'),
(66183, 55319, 'en', 'name', 'Technical and Test Institute for Construction Prague'),
(66184, 55320, 'en', 'name', 'Sunflower Foundation'),
(66185, 55321, 'no_lang_code', 'name', 'GDK (Czechia)'),
(66186, 55322, 'en', 'name', 'Cantonal Museum of Fine Arts'),
(66187, 55322, 'fr', 'name', 'MusƩe cantonal des beaux-arts'),
(66188, 55323, 'no_lang_code', 'name', 'Materialise (Czechia)'),
(66189, 55324, 'en', 'name', 'Western Australian Genealogical Society'),
(66190, 55325, 'no_lang_code', 'name', 'Stratec (Switzerland)'),
(66191, 55326, 'no_lang_code', 'name', 'Ortotika (Czechia)'),
(66192, 55327, 'no_lang_code', 'name', 'Laser-Tech (Czechia)'),
(66193, 55328, 'no_lang_code', 'name', 'Strojmetal Aluminium Forging (Czechia)'),
(66194, 55329, 'en', 'name', 'Innovative Research Institute for Cell Therapy'),
(66195, 55330, 'no_lang_code', 'name', 'Fruko Schulz (Czechia)'),
(66196, 55331, 'cs', 'name', 'Společenstvo KominĆ­kÅÆ ČeskĆ© republiky'),
(66197, 55332, 'cs', 'name', 'ZemědělskĆ© Družstvo Maleč'),
(66198, 55333, 'no_lang_code', 'name', 'Foller (Czechia)'),
(66199, 55334, 'cs', 'name', 'StĆ”tnĆ­ oblastnĆ­ archiv v LitoměřicĆ­ch'),
(66200, 55334, 'en', 'name', 'State Regional Archives Litomerice'),
(66201, 55335, 'no_lang_code', 'name', 'Enzo Life Sciences (Switzerland)'),
(66202, 55336, 'en', 'name', 'The European Academy of Gynaecological Surgery'),
(66203, 55337, 'en', 'name', 'San Francisco General Hospital Foundation'),
(66204, 55338, 'no_lang_code', 'name', 'EP Energy (Czechia)'),
(66205, 55339, 'no_lang_code', 'name', 'Capital Group (United States)'),
(66206, 55340, 'en', 'name', 'Sigrid JusƩlius Foundation'),
(66207, 55340, 'fi', 'name', 'Sigrid JusƩliuksen sƤƤtiƶ'),
(66208, 55341, 'no_lang_code', 'name', 'Appecastro (Czechia)'),
(66209, 55342, 'no_lang_code', 'name', 'Anhui Conch Design and Research Institute of Building Materials (China)'),
(66210, 55343, 'no_lang_code', 'name', 'L.A.C. (Switzerland)'),
(66211, 55344, 'no_lang_code', 'name', 'VTL Blansko (Czechia)'),
(66212, 55345, 'no_lang_code', 'name', 'Kohler (United Kingdom)'),
(66213, 55346, 'en', 'name', 'Roddenberry Foundation'),
(66214, 55347, 'fr', 'name', 'Verzone Woods Architectes'),
(66215, 55348, 'de', 'name', 'Schweizerische Radio- und Fernsehgesellschaft'),
(66216, 55348, 'en', 'name', 'Swiss Broadcasting Corporation'),
(66217, 55348, 'fr', 'name', 'SociƩtƩ suisse de radiodiffusion et tƩlƩvision'),
(66218, 55348, 'it', 'name', 'SocietĆ  svizzera di radiotelevisione'),
(66219, 55348, 'rm', 'name', 'Societad Svizra da Radio e Televisiun'),
(66220, 55349, 'no_lang_code', 'name', 'Sicar (Czechia)'),
(66221, 55350, 'no_lang_code', 'name', 'Bohemilk (Czechia)'),
(66222, 55351, 'no_lang_code', 'name', 'StrojĆ­rny a stavby Třinec (Czechia)'),
(66223, 55352, 'en', 'name', 'Maryland State Office Of The Governor'),
(66224, 55353, 'en', 'name', 'Hinge Health'),
(66225, 55354, 'en', 'name', 'Aid Health and Development Onlus'),
(66226, 55355, 'no_lang_code', 'name', 'RHI Magnesita (Austria)'),
(66227, 55356, 'en', 'name', 'Center for Liberal Democratic Studies'),
(66228, 55357, 'no_lang_code', 'name', 'Asseco (Czechia)'),
(66229, 55358, 'en', 'name', 'SIL International'),
(66230, 55359, 'en', 'name', 'St Giles Foundation'),
(66231, 55360, 'no_lang_code', 'name', 'PavEx (Czechia)'),
(66232, 55361, 'no_lang_code', 'name', 'Agriforest (Switzerland)'),
(66233, 55362, 'ca', 'name', 'Servei de Salut de les Illes Balears'),
(66234, 55363, 'en', 'name', 'Association of Africans Living in Vermont'),
(66235, 55364, 'no_lang_code', 'name', 'Wombat (Czechia)'),
(66236, 55365, 'no_lang_code', 'name', 'Nitto Chemical Industry (Japan)'),
(66237, 55366, 'no_lang_code', 'name', 'Civitas per Populi'),
(66238, 55367, 'no_lang_code', 'name', 'Ataco (Czechia)'),
(66239, 55368, 'it', 'name', 'Ufficio di Statistica'),
(66240, 55369, 'cs', 'name', 'MÅ  Na Smetance'),
(66241, 55370, 'cs', 'name', 'OkresnĆ­ HospodÔřskĆ” Komora'),
(66242, 55371, 'en', 'name', 'Kenneth Rainin Foundation'),
(66243, 55372, 'no_lang_code', 'name', 'Seco Group (Czechia)'),
(66244, 55373, 'no_lang_code', 'name', 'Projekty Vodam (Czechia)'),
(66245, 55374, 'no_lang_code', 'name', 'FIM Medical (France)'),
(66246, 55375, 'no_lang_code', 'name', 'VýrobnĆ­ družstvo SlezskĆ” Hořina (Czechia)'),
(66247, 55376, 'de', 'name', 'Pro Vistiliaco'),
(66248, 55377, 'en', 'name', 'Office Of Health Economics'),
(66249, 55378, 'no_lang_code', 'name', 'S Group Holding (Czechia)'),
(66250, 55379, 'en', 'name', 'National Family Planning & Reproductive Health Association'),
(66251, 55380, 'en', 'name', 'Meyerlustenberger Lachenal Attorneys at Law'),
(66252, 55381, 'no_lang_code', 'name', 'Groupe Winncare (France)'),
(66253, 55382, 'en', 'name', 'Japan Institute of Leather Research'),
(66254, 55382, 'ja', 'name', 'ę—„ęœ¬ēš®é©ē ”ē©¶ę‰€'),
(66255, 55383, 'de', 'name', 'Beckmann-Institut für Technologieentwicklung'),
(66256, 55384, 'de', 'name', 'Pro Pferd'),
(66257, 55385, 'no_lang_code', 'name', 'TOS Svitavy (Czechia)'),
(66258, 55386, 'no_lang_code', 'name', 'Oertli Instrumente (Switzerland)'),
(66259, 55387, 'cs', 'name', 'OblastnĆ­ muzeum v LitoměřicĆ­ch'),
(66260, 55388, 'no_lang_code', 'name', 'Qualiform (Czechia)'),
(66261, 55389, 'cs', 'name', 'Editio JanĆ”Äek'),
(66262, 55390, 'en', 'name', 'Society for Psychical Research'),
(66263, 55391, 'no_lang_code', 'name', 'Emerson (Sweden)'),
(66264, 55392, 'en', 'name', 'Pennington Biomedical Research Foundation'),
(66265, 55393, 'en', 'name', 'The International Heart Institute of Montana'),
(66266, 55394, 'en', 'name', 'Sudbury Foundation'),
(66267, 55395, 'no_lang_code', 'name', 'Urbaplan (Switzerland)'),
(66268, 55396, 'en', 'name', 'Research Center for Applied Science, Academia Sinica'),
(66269, 55396, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ę‡‰ē”Øē§‘å­øē ”ē©¶äø­åæƒ'),
(66270, 55397, 'cs', 'name', 'ČeskoslovenskĆ© společnosti pro forenznĆ­ genetiku'),
(66271, 55397, 'en', 'name', 'Czechoslovak Society for Forensic Genetics'),
(66272, 55398, 'no_lang_code', 'name', 'Bilfinger MCE (Czechia)'),
(66273, 55399, 'en', 'name', 'Travis Roy Foundation'),
(66274, 55400, 'no_lang_code', 'name', 'Ditana (Czechia)'),
(66275, 55401, 'en', 'name', 'Far Eastern State Institute of Arts'),
(66276, 55401, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(66277, 55402, 'en', 'name', 'Laboratory of Excellence GR-Ex'),
(66278, 55403, 'no_lang_code', 'name', 'Arming (Czechia)'),
(66279, 55404, 'no_lang_code', 'name', 'ALS (Czechia)'),
(66280, 55405, 'no_lang_code', 'name', 'CID International (Czechia)'),
(66281, 55406, 'de', 'name', 'Landesdenkmalamt Baden Württemberg'),
(66282, 55407, 'no_lang_code', 'name', 'Lifetech (Czechia)'),
(66283, 55408, 'no_lang_code', 'name', 'Rent-Pharm (Czechia)'),
(66284, 55409, 'no_lang_code', 'name', 'Ransom Naturals (United Kingdom)'),
(66285, 55410, 'no_lang_code', 'name', 'Barco (Czechia)'),
(66286, 55411, 'en', 'name', 'Promobilia Foundation'),
(66287, 55411, 'sv', 'name', 'Stiftelsen Promobilia'),
(66288, 55412, 'cs', 'name', 'Svaz PěstitelÅÆ A ZpracovatelÅÆ Olejnin'),
(66289, 55413, 'no_lang_code', 'name', 'Earth Resources Technology (United States)'),
(66290, 55414, 'no_lang_code', 'name', 'Tethys Instruments (France)'),
(66291, 55415, 'fr', 'name', 'Association Fribourgeoise des Psychologues'),
(66292, 55416, 'no_lang_code', 'name', 'Frentech Aerospace (Czechia)'),
(66293, 55417, 'no_lang_code', 'name', 'BlatenskĆ” ryba (Czechia)'),
(66294, 55418, 'sv', 'name', 'Kjell och MƤrta Beijers Stiftelse'),
(66295, 55419, 'no_lang_code', 'name', 'Atelier Fontes (Czechia)'),
(66296, 55420, 'en', 'name', 'Swedish Academy'),
(66297, 55420, 'sv', 'name', 'Svenska Akademien'),
(66298, 55421, 'en', 'name', 'World Farmers'),
(66299, 55422, 'en', 'name', 'Tennessee Commission on Aging and Disability'),
(66300, 55423, 'no_lang_code', 'name', 'Hua Yuan Group (China)'),
(66301, 55423, 'zh', 'name', 'åŽčæœé›†å›¢'),
(66302, 55424, 'no_lang_code', 'name', 'AIS (Czechia)'),
(66303, 55425, 'en', 'name', 'NeuroMab'),
(66304, 55426, 'fr', 'name', 'Institut National de PrĆ©vention et d’Education pour la SantĆ©'),
(66305, 55427, 'en', 'name', 'Joint Laboratory for Extreme Conditions Matter Properties'),
(66306, 55427, 'zh', 'name', 'č„æå—ē§‘ęŠ€å¤§å­¦ęžē«Æę”ä»¶ē‰©č“Øē‰¹ę€§č”åˆå®žéŖŒå®¤'),
(66307, 55428, 'no_lang_code', 'name', '3S Sedlak (Czechia)'),
(66308, 55429, 'cs', 'name', 'KancelÔř PoslaneckĆ© sněmovny'),
(66309, 55429, 'en', 'name', 'Office of the Chamber of Deputies'),
(66310, 55430, 'en', 'name', 'Swiss Institute for Regenerative Medicine'),
(66311, 55431, 'de', 'name', 'Stadt Zürich Hochbaudepartement'),
(66312, 55432, 'cs', 'name', 'OblastnĆ­ nemocnice Kladno'),
(66313, 55433, 'no_lang_code', 'name', 'AbbVie (Ireland)'),
(66314, 55434, 'en', 'name', 'Hyaluronan Research Institute'),
(66315, 55434, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ ćƒ’ć‚¢ćƒ«ćƒ­ćƒ³é…øē ”ē©¶ę‰€'),
(66316, 55435, 'no_lang_code', 'name', 'ZlĆ­n Precision (Czechia)'),
(66317, 55436, 'en', 'name', 'Legislative Council of Hong Kong'),
(66318, 55436, 'zh', 'name', 'é¦™ęøÆē‰¹åˆ„č”Œę”æå€ē«‹ę³•ęœƒ'),
(66319, 55437, 'de', 'name', 'Klinik Bethesda'),
(66320, 55438, 'en', 'name', 'Uehara Memorial Foundation'),
(66321, 55438, 'ja', 'name', 'äøŠåŽŸčØ˜åæµč²”å›£'),
(66322, 55439, 'de', 'name', 'Ballenberg Freilichtmuseum der Schweiz'),
(66323, 55439, 'en', 'name', 'Ballenberg Swiss Open-Air Museum'),
(66324, 55440, 'no_lang_code', 'name', 'Artificial Sensing Instruments (Switzerland)'),
(66325, 55441, 'no_lang_code', 'name', 'Johnson & Johnson (France)'),
(66326, 55442, 'no_lang_code', 'name', 'Matex PM (Czechia)'),
(66327, 55443, 'fr', 'name', 'Association de Recherche en Soins Infirmiers'),
(66328, 55444, 'no_lang_code', 'name', 'ADW (Czechia)'),
(66329, 55445, 'en', 'name', 'Val Skinner Foundation'),
(66330, 55446, 'no_lang_code', 'name', 'Oclaro (Japan)'),
(66331, 55447, 'no_lang_code', 'name', 'Oncomedics (France)'),
(66332, 55448, 'no_lang_code', 'name', 'NTX Research (France)'),
(66333, 55449, 'cs', 'name', 'Česmad Bohemia'),
(66334, 55450, 'en', 'name', 'Starr Foundation'),
(66335, 55451, 'no_lang_code', 'name', 'jCyte (United States)'),
(66336, 55452, 'no_lang_code', 'name', 'Mdoloris Medical Systems (France)'),
(66337, 55453, 'sv', 'name', 'ƅhlĆ©n-Stiftelsen'),
(66338, 55454, 'en', 'name', 'TLC Foundation'),
(66339, 55455, 'en', 'name', 'Sustainable Aviation Foundation'),
(66340, 55456, 'fr', 'name', 'Archives d''Ɖtat de GenĆØve'),
(66341, 55457, 'no_lang_code', 'name', 'Teradata (United Kingdom)'),
(66342, 55458, 'en', 'name', 'Center for Social and Economic Research'),
(66343, 55458, 'uk', 'name', 'Центр ŃŠ¾Ń†Ń–Š°Š»ŃŒŠ½Š¾-економічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(66344, 55459, 'no_lang_code', 'name', 'Bmto Group (Czechia)'),
(66345, 55460, 'no_lang_code', 'name', 'Ekoport'),
(66346, 55461, 'nl', 'name', 'Vinitex Laboratoriuminrichtingen'),
(66347, 55461, 'no_lang_code', 'name', 'Vinitex Laboratory Systems (Netherlands)'),
(66348, 55462, 'no_lang_code', 'name', 'ADP (Czechia)'),
(66349, 55463, 'no_lang_code', 'name', 'Faiveley Transport (Czechia)'),
(66350, 55464, 'fr', 'name', 'Touring Club Suisse'),
(66351, 55465, 'no_lang_code', 'name', 'Mill City Grows (United States)'),
(66352, 55466, 'no_lang_code', 'name', 'Sladovny Soufflet (Czechia)'),
(66353, 55467, 'no_lang_code', 'name', 'H1.cz (Czechia)'),
(66354, 55468, 'no_lang_code', 'name', 'MP KrƔsno (Czechia)'),
(66355, 55469, 'en', 'name', 'East University Of Heilongjiang'),
(66356, 55469, 'zh', 'name', 'é»‘é¾ę±Ÿę±ę–¹å­øé™¢'),
(66357, 55470, 'no_lang_code', 'name', 'Mikroklima (Czechia)'),
(66358, 55471, 'no_lang_code', 'name', 'Micos (Czechia)'),
(66359, 55472, 'en', 'name', 'Gleaners Food Bank of Indiana'),
(66360, 55473, 'no_lang_code', 'name', 'AgraTek (United States)'),
(66361, 55474, 'no_lang_code', 'name', 'Pražské Vodovody a Kanalizace'),
(66362, 55475, 'no_lang_code', 'name', 'Agrofert (Czechia)'),
(66363, 55476, 'no_lang_code', 'name', 'CNH Industrial (Switzerland)'),
(66364, 55477, 'no_lang_code', 'name', 'Keramtech (Czechia)'),
(66365, 55478, 'en', 'name', 'Xiamen Institute of Rare-earth Materials'),
(66366, 55478, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ęµ·č„æē ”ē©¶é™¢åŽ¦é—ØēØ€åœŸęę–™ē ”ē©¶ę‰€'),
(66367, 55479, 'en', 'name', 'Sarkeys Foundation'),
(66368, 55480, 'no_lang_code', 'name', 'Bodycote (Canada)'),
(66369, 55481, 'en', 'name', 'Driskill Foundation'),
(66370, 55482, 'no_lang_code', 'name', 'LentiKat''s (Czechia)'),
(66371, 55483, 'no_lang_code', 'name', 'MrƔz Agro (Czechia)'),
(66372, 55484, 'no_lang_code', 'name', 'Redam (Czechia)'),
(66373, 55485, 'no_lang_code', 'name', 'Kolejconsult & Servis (Czechia)'),
(66374, 55486, 'no_lang_code', 'name', 'Sofradir (France)'),
(66375, 55487, 'de', 'name', 'Schweizerisches Institut für Kinder- und Jugendmedien'),
(66376, 55488, 'no_lang_code', 'name', 'Eurobio (France)'),
(66377, 55489, 'en', 'name', 'National Sustainable Agriculture Coalition'),
(66378, 55490, 'cs', 'name', 'ToulcÅÆv DvÅÆr'),
(66379, 55491, 'no_lang_code', 'name', 'ŽPSV (Czechia)'),
(66380, 55492, 'en', 'name', 'Khaled bin Sultan Living Oceans Foundation'),
(66381, 55493, 'no_lang_code', 'name', 'Megat (Czechia)'),
(66382, 55494, 'no_lang_code', 'name', 'Benefit CZ (Czechia)'),
(66383, 55495, 'no_lang_code', 'name', 'Techniserv (Czechia)'),
(66384, 55496, 'en', 'name', 'Oregon Department of Consumer and Business Services'),
(66385, 55497, 'no_lang_code', 'name', 'Dosting (Czechia)'),
(66386, 55498, 'en', 'name', 'Physics and Technology Institute of Metals and Alloys'),
(66387, 55498, 'uk', 'name', 'Физико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ металлов Šø сплавов'),
(66388, 55499, 'no_lang_code', 'name', 'Autometal (Czechia)'),
(66389, 55500, 'no_lang_code', 'name', 'Ricardo Prague (Czechia)'),
(66390, 55501, 'en', 'name', 'Princess Alexandra Eye Pavilion'),
(66391, 55502, 'en', 'name', 'Whitley Fund for Nature'),
(66392, 55503, 'en', 'name', 'Russian Academy of Architecture and Construction Sciences'),
(66393, 55503, 'ru', 'name', 'Š Š¾ŃŃŠøĢŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµĢŠ¼ŠøŃ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒĢŃ€Ń‹ Šø ŃŃ‚Ń€Š¾ŠøĢŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… нау́к'),
(66394, 55504, 'no_lang_code', 'name', 'Itopia (Switzerland)'),
(66395, 55505, 'en', 'name', 'Research and Design Institute of Urea and Organic Synthesis Products'),
(66396, 55505, 'ru', 'name', 'ŠžŃ‚ŠŗŃ€Ń‹Ń‚Š¾Šµ Акционирское ŠžŠ±Ń‰ŠµŃŃ‚во. ИсслеГование. И проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мочевины Šø органического синтеза'),
(66397, 55506, 'no_lang_code', 'name', 'Koneko (Czechia)'),
(66398, 55507, 'no_lang_code', 'name', 'Forsthoffer Associates (United States)'),
(66399, 55508, 'no_lang_code', 'name', 'Gaben (Czechia)'),
(66400, 55509, 'no_lang_code', 'name', 'Kitl (Czechia)'),
(66401, 55510, 'cs', 'name', 'Asociace Svazů Chovatelů Koní České Republiky'),
(66402, 55511, 'cs', 'name', 'Český Aeroholding'),
(66403, 55511, 'no_lang_code', 'name', 'Czech Aeroholding (Czechia)'),
(66404, 55512, 'de', 'name', 'Schweizerische Hochschulkonferen'),
(66405, 55512, 'en', 'name', 'Swiss University Conference'),
(66406, 55513, 'en', 'name', 'Hefei Cement Research Design Institute'),
(66407, 55513, 'zh', 'name', 'åˆč‚„ę°“ę³„ē ”ē©¶č®¾č®”é™¢'),
(66408, 55514, 'no_lang_code', 'name', 'BurgSys (Czechia)'),
(66409, 55515, 'en', 'name', 'French Corrosion Institute'),
(66410, 55516, 'no_lang_code', 'name', 'DAP Services (Czechia)'),
(66411, 55517, 'fr', 'name', 'MusĆ©e d’histoire du Valais'),
(66412, 55518, 'en', 'name', 'The American Chestnut Foundation'),
(66413, 55519, 'no_lang_code', 'name', 'GreyCortex (Czechia)'),
(66414, 55520, 'fr', 'name', 'Laboratoire Excell'),
(66415, 55521, 'en', 'name', 'Taiwan Textile Research Institute'),
(66416, 55521, 'zh', 'name', 'ē“”ē¹”ē”¢ę„­ē¶œåˆē ”ē©¶ę‰€'),
(66417, 55522, 'de', 'name', 'Antikenmuseum Basel und Sammlung Ludwig, Basel Museum of Ancient Art and Ludwig Collection'),
(66418, 55523, 'no_lang_code', 'name', 'Sklopan Liberec (Czechia)'),
(66419, 55524, 'no_lang_code', 'name', 'Feramat Cybernetics (Czechia)'),
(66420, 55525, 'no_lang_code', 'name', 'Envi-Pur (Czechia)'),
(66421, 55526, 'no_lang_code', 'name', 'Bioengineering (Switzerland)'),
(66422, 55527, 'de', 'name', 'Mediplant'),
(66423, 55528, 'en', 'name', 'Parrott Equine Associates'),
(66424, 55529, 'en', 'name', 'BIGCCS'),
(66425, 55530, 'de', 'name', 'Spital STS'),
(66426, 55531, 'en', 'name', 'Wildlife Conservation Society Argentina'),
(66427, 55532, 'cs', 'name', 'VězeňskĆ” služba ČeskĆ© republiky'),
(66428, 55532, 'en', 'name', 'Prison Service of the Czech Republic'),
(66429, 55533, 'en', 'name', 'Avraham Y. Goldratt Institute'),
(66430, 55534, 'en', 'name', 'Sea World'),
(66431, 55535, 'no_lang_code', 'name', 'Veolia (Czechia)'),
(66432, 55536, 'no_lang_code', 'name', 'Sunstar (Switzerland)'),
(66433, 55537, 'de', 'name', 'Justiz Gemeinde und Kirchendirektion'),
(66434, 55538, 'en', 'name', 'Wishlist'),
(66435, 55539, 'en', 'name', 'World Food Prize Foundation'),
(66436, 55540, 'de', 'name', 'Kantonsschule Stadelhofen'),
(66437, 55541, 'de', 'name', 'Forschungskreis der ErnƤhrungsindustrie'),
(66438, 55541, 'en', 'name', 'Research Association of the German Food Industry'),
(66439, 55542, 'cs', 'name', 'Ministerstvo financí České republiky'),
(66440, 55542, 'en', 'name', 'Ministry of Finance of the Czech Republic'),
(66441, 55543, 'da', 'name', 'Svineafgiftsfonden'),
(66442, 55544, 'en', 'name', 'Goyder Institute for Water Research'),
(66443, 55545, 'no_lang_code', 'name', 'Satra (Czechia)'),
(66444, 55546, 'no_lang_code', 'name', 'EuroTec JKR (Czechia)'),
(66445, 55547, 'en', 'name', 'Order Sons of Italy in America, Ordine Figli d’Italia in America'),
(66446, 55548, 'no_lang_code', 'name', 'Mosaic Event Management (United States)'),
(66447, 55549, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¦ć‚Øć‚¹ć‚³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(66448, 55549, 'no_lang_code', 'name', 'Wesco (Japan)'),
(66449, 55550, 'no_lang_code', 'name', 'Setaram Instrumentation (France)'),
(66450, 55551, 'no_lang_code', 'name', 'StÔtní Výzkumný Ústav pro Stavbu Strojů (Czechia)'),
(66451, 55552, 'no_lang_code', 'name', 'Celtrak (Ireland)'),
(66452, 55553, 'en', 'name', 'Swedish Ophthalmological Society'),
(66453, 55553, 'sv', 'name', 'Sveriges ƶgonlƤkarfƶrening'),
(66454, 55554, 'fr', 'name', 'Association Savoir Patient'),
(66455, 55555, 'en', 'name', 'JGC-S Scholarship Foundation'),
(66456, 55555, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ę®ćƒ»å®Ÿå‰å„Øå­¦ä¼š'),
(66457, 55556, 'de', 'name', 'Fotostiftung Schweiz'),
(66458, 55557, 'no_lang_code', 'name', 'Phytocos (France)'),
(66459, 55558, 'en', 'name', 'Wuxi Municipal Health Bureau'),
(66460, 55558, 'zh', 'name', 'ę— é””åø‚å«č®”å§”'),
(66461, 55559, 'no_lang_code', 'name', 'Techtronic Industries (China)'),
(66462, 55560, 'no_lang_code', 'name', 'Mitsui & Co (Ireland)'),
(66463, 55561, 'cs', 'name', 'Odborový Svaz Pracovníků Hornictví, Geologie a Naftového Průmyslu'),
(66464, 55562, 'en', 'name', 'St. Petersburg University of the Humanities and Social Sciences'),
(66465, 55562, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃ€Š¾Ń„ŃŠ¾ŃŽŠ·Š¾Š² [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(66466, 55563, 'fr', 'name', 'Caisse de PrƩvoyance du Personnel de l''Etat de Fribourg'),
(66467, 55564, 'no_lang_code', 'name', 'Supercomputing Systems (Switzerland)'),
(66468, 55565, 'no_lang_code', 'name', 'Kraft Heinz (United Kingdom)'),
(66469, 55566, 'no_lang_code', 'name', 'Zebr (Czechia)'),
(66470, 55567, 'no_lang_code', 'name', 'Thames Medical (United Kingdom)'),
(66471, 55568, 'de', 'name', 'Aargauer Kantonsbibliothek'),
(66472, 55569, 'no_lang_code', 'name', 'Seattle Photonics Associates (United States)'),
(66473, 55570, 'no_lang_code', 'name', 'Pharmerit (Netherlands)'),
(66474, 55571, 'fr', 'name', 'HƓpital Beau-SƩjour'),
(66475, 55572, 'no_lang_code', 'name', 'VÔpenka VitoŔov (Czechia)'),
(66476, 55573, 'de', 'name', 'Stadtarchiv Bern'),
(66477, 55574, 'en', 'name', 'Population Association of America'),
(66478, 55575, 'en', 'name', 'Superconducting and other Innovative Materials and Devices Institute'),
(66479, 55575, 'it', 'name', 'Istituto Superconduttori, Materiali Innovativi e Dispositivi'),
(66480, 55576, 'no_lang_code', 'name', 'Nintendo (France)'),
(66481, 55577, 'en', 'name', 'KIST Europe'),
(66482, 55578, 'no_lang_code', 'name', 'Ulverscroft (United Kingdom)'),
(66483, 55579, 'no_lang_code', 'name', 'TiĆŗ-Plast (Czechia)'),
(66484, 55580, 'no_lang_code', 'name', 'Barekol (Czechia)'),
(66485, 55581, 'no_lang_code', 'name', 'Analytical Mechanics Associates (United States)'),
(66486, 55582, 'no_lang_code', 'name', 'Y-Parc (Switzerland)'),
(66487, 55583, 'no_lang_code', 'name', 'Bruker (France)'),
(66488, 55584, 'no_lang_code', 'name', 'Labrys'),
(66489, 55585, 'no_lang_code', 'name', 'Oikoymenh (Czechia)'),
(66490, 55586, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒŠć‚¹'),
(66491, 55586, 'no_lang_code', 'name', 'Sanas (Japan)'),
(66492, 55587, 'en', 'name', 'Central Silk Technological Research Institute'),
(66493, 55588, 'en', 'name', 'Aging In New York Fund'),
(66494, 55589, 'no_lang_code', 'name', 'Detas (Czechia)'),
(66495, 55590, 'no_lang_code', 'name', 'Alpha and Omega Semiconductor (United States)'),
(66496, 55591, 'no_lang_code', 'name', 'Invaz (Czechia)'),
(66497, 55592, 'no_lang_code', 'name', 'Aspide Medical (France)'),
(66498, 55593, 'no_lang_code', 'name', 'Knitva (Czechia)'),
(66499, 55594, 'ar', 'name', 'ŲµŁ†ŲÆŁˆŁ‚ دعم البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(66500, 55594, 'en', 'name', 'Scientific Research Support Fund'),
(66501, 55595, 'fr', 'name', 'Etablissement Primaire et Secondaire Vevey'),
(66502, 55596, 'no_lang_code', 'name', 'ORB Studio (United States)'),
(66503, 55597, 'bn', 'name', 'বাংলাদেশ পাট গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(66504, 55597, 'en', 'name', 'Bangladesh Jute Research Institute'),
(66505, 55598, 'ja', 'name', 'é•·ē€¬ē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(66506, 55598, 'no_lang_code', 'name', 'Nagase (Japan)'),
(66507, 55599, 'no_lang_code', 'name', 'Effik (France)'),
(66508, 55600, 'no_lang_code', 'name', 'Zepo Bělohrad (Czechia)'),
(66509, 55601, 'en', 'name', 'Open Source Robotics Foundation'),
(66510, 55602, 'de', 'name', 'Haute Ɖcole d''ingĆ©nierie et d''architecture de Fribourg'),
(66511, 55602, 'en', 'name', 'School of Engineering and Architecture of Fribourg'),
(66512, 55603, 'no_lang_code', 'name', 'Security Paper Mill (Czechia)'),
(66513, 55604, 'en', 'name', 'Taipei Tzu Chi Hospital'),
(66514, 55604, 'zh', 'name', 'å°åŒ—ę…ˆęµŽåŒ»é™¢'),
(66515, 55605, 'no_lang_code', 'name', 'PPF (Czechia)'),
(66516, 55606, 'en', 'name', 'CURE International UK'),
(66517, 55607, 'it', 'name', 'Associazione della Croce Rossa Italiana'),
(66518, 55608, 'fr', 'name', 'Orthodontie MC20'),
(66519, 55609, 'no_lang_code', 'name', 'CL Medical (France)'),
(66520, 55610, 'no_lang_code', 'name', 'Wolf and Danniel (Czechia)'),
(66521, 55611, 'en', 'name', 'Joint Graduate School of Energy and Environment'),
(66522, 55611, 'th', 'name', 'ąøšąø±ąø“ąø‘ąø“ąø•ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ą¹ˆąø§ąø”ąø”ą¹‰ąø²ąø™ąøžąø„ąø±ąø‡ąø‡ąø²ąø™ą¹ąø„ąø°ąøŖąø“ą¹ˆąø‡ą¹ąø§ąø”ąø„ą¹‰ąø­ąø”'),
(66523, 55612, 'en', 'name', 'Hart Community Homes'),
(66524, 55613, 'no_lang_code', 'name', 'SK Group (United States)'),
(66525, 55614, 'no_lang_code', 'name', 'ABM Architekti (Czechia)'),
(66526, 55615, 'no_lang_code', 'name', 'CHemProtect (Czechia)'),
(66527, 55616, 'no_lang_code', 'name', 'Czech Precision Forge (Czechia)'),
(66528, 55617, 'cs', 'name', 'NĆ”rodnĆ­ SĆ­Å„ Zdravých Měst'),
(66529, 55617, 'en', 'name', 'National Network of Healthy Cities'),
(66530, 55618, 'no_lang_code', 'name', 'Ecosoft (Czechia)'),
(66531, 55619, 'no_lang_code', 'name', 'Sigma-Tau Pharmaceuticals (United States)'),
(66532, 55620, 'no_lang_code', 'name', 'RegionƔlnƭ PoradenskƔ Agentura (Czechia)'),
(66533, 55621, 'no_lang_code', 'name', 'GEOTEST (Switzerland)'),
(66534, 55622, 'no_lang_code', 'name', 'SKK Landschaftsarchitekten (Switzerland)'),
(66535, 55623, 'en', 'name', 'Kansas Department of Commerce'),
(66536, 55624, 'no_lang_code', 'name', 'Strasky Husty and Partners (Czechia)'),
(66537, 55625, 'cs', 'name', 'Ostravsko-karvinskƩ doly'),
(66538, 55625, 'no_lang_code', 'name', 'OKD (Czechia)'),
(66539, 55626, 'no_lang_code', 'name', 'Energocentrum (Czechia)'),
(66540, 55627, 'en', 'name', 'Agricultural And Forestry Machinery Association'),
(66541, 55628, 'en', 'name', 'Vietnam International Education Cooperation Department'),
(66542, 55629, 'no_lang_code', 'name', 'ECO (Czechia)'),
(66543, 55630, 'en', 'name', 'Wolf Foundation'),
(66544, 55631, 'en', 'name', 'Consortium for the Advanced Simulation of Light Water Reactors'),
(66545, 55632, 'no_lang_code', 'name', 'Sewio Networks (Czechia)'),
(66546, 55633, 'en', 'name', 'Fishing Partnership Support Services'),
(66547, 55634, 'no_lang_code', 'name', 'Beratungsdienste für Ausbildung und Beruf Aargau (Switzerland)'),
(66548, 55635, 'no_lang_code', 'name', 'Radiometer (Switzerland)'),
(66549, 55636, 'no_lang_code', 'name', 'Bednar Fmt (Czechia)'),
(66550, 55637, 'en', 'name', 'Clayton Foundation'),
(66551, 55638, 'no_lang_code', 'name', 'Crystalex (Czechia)'),
(66552, 55639, 'cs', 'name', 'SdruženĆ© ambulantnĆ­ zařízenĆ­'),
(66553, 55640, 'en', 'name', 'Youth Policy Institute'),
(66554, 55641, 'no_lang_code', 'name', 'Sonomotion (United States)'),
(66555, 55642, 'no_lang_code', 'name', 'Terumo (United States)'),
(66556, 55643, 'en', 'name', 'Jeansson Foundations'),
(66557, 55643, 'sv', 'name', 'Jeanssons Stiftelser'),
(66558, 55644, 'en', 'name', 'Sun Health Foundation'),
(66559, 55645, 'no_lang_code', 'name', 'Chitina Native Corporation (United States)'),
(66560, 55646, 'no_lang_code', 'name', 'Laboratoires ABIA (France)'),
(66561, 55647, 'no_lang_code', 'name', 'Viton (Czechia)'),
(66562, 55648, 'en', 'name', 'Centre for Political Courage'),
(66563, 55649, 'no_lang_code', 'name', 'K and K Technology (Czechia)'),
(66564, 55650, 'sv', 'name', 'Stiftelsen Olle Engkvist ByggmƤstare'),
(66565, 55651, 'de', 'name', 'Staatsarchiv Freiburg'),
(66566, 55652, 'en', 'name', 'The Nurture Nature Center'),
(66567, 55653, 'no_lang_code', 'name', 'UpVision (Czechia)'),
(66568, 55654, 'fr', 'name', 'Laboratoire Dr Renaud'),
(66569, 55655, 'en', 'name', 'Advanced Heliophysics'),
(66570, 55656, 'cy', 'name', 'Ymddiriedolaeth GIG Cwm Taf'),
(66571, 55656, 'en', 'name', 'Cwm Taf University Health Board'),
(66572, 55657, 'no_lang_code', 'name', 'Agromont Vimperk (Czechia)'),
(66573, 55658, 'no_lang_code', 'name', 'Alibaba Group (United States)'),
(66574, 55659, 'no_lang_code', 'name', 'JV Projekt (Czechia)'),
(66575, 55660, 'en', 'name', 'Huerta del Valle'),
(66576, 55661, 'en', 'name', 'Illinois Office of the Governor'),
(66577, 55662, 'no_lang_code', 'name', 'Willson Band Instruments (Switzerland)'),
(66578, 55663, 'no_lang_code', 'name', 'ChipInvest (Czechia)'),
(66579, 55664, 'no_lang_code', 'name', 'Taranis Invest (Czechia)'),
(66580, 55665, 'no_lang_code', 'name', 'Rentel (Czechia)'),
(66581, 55666, 'cs', 'name', 'Centrum investic, rozvoje a inovacĆ­'),
(66582, 55666, 'en', 'name', 'Centre for Investment Development and Innovation'),
(66583, 55667, 'en', 'name', 'Save Our Seas Foundation'),
(66584, 55668, 'no_lang_code', 'name', 'Vp Agro (Czechia)'),
(66585, 55669, 'no_lang_code', 'name', 'StemSoft Software (Canada)'),
(66586, 55670, 'en', 'name', 'Columbia Global Centers'),
(66587, 55671, 'en', 'name', 'Fayette County Community Action Agency'),
(66588, 55672, 'no_lang_code', 'name', 'Isolit-Bravo (Czechia)'),
(66589, 55673, 'no_lang_code', 'name', 'Cemvin (Czechia)'),
(66590, 55674, 'no_lang_code', 'name', 'J M Malone and Son (United States)'),
(66591, 55675, 'no_lang_code', 'name', 'Oregon Tilth'),
(66592, 55676, 'no_lang_code', 'name', 'Gemos (Czechia)'),
(66593, 55677, 'no_lang_code', 'name', 'Ormihl (France)'),
(66594, 55678, 'no_lang_code', 'name', 'Agentura Motiv P (Czechia)'),
(66595, 55679, 'pt', 'name', 'Hospital Estadual MƔrio Covas'),
(66596, 55680, 'no_lang_code', 'name', 'ABS Jets (Czechia)'),
(66597, 55681, 'en', 'name', 'Korea Automotive Technology Institute'),
(66598, 55681, 'ko', 'name', 'ķ•œźµ­ ģžė™ģ°Ø 기술 연구원'),
(66599, 55682, 'no_lang_code', 'name', 'Econcept (Switzerland)'),
(66600, 55683, 'no_lang_code', 'name', 'Thun 1794 (Czechia)'),
(66601, 55684, 'no_lang_code', 'name', 'Rotas StrojĆ­rny (Czechia)'),
(66602, 55685, 'no_lang_code', 'name', 'Laboratoire Pino Aliprandini (Switzerland)'),
(66603, 55686, 'de', 'name', 'Schweizerische Koordinationsstelle für Bildungsforschung'),
(66604, 55687, 'en', 'name', 'Institute of Philosophy'),
(66605, 55687, 'hu', 'name', 'MTA BTK Filozófiai Intézet'),
(66606, 55688, 'no_lang_code', 'name', 'DTO (Czechia)'),
(66607, 55689, 'en', 'name', 'Key Laboratory of Guangdong Province'),
(66608, 55689, 'zh', 'name', 'å¹æäøœēœé‡ē‚¹å®žéŖŒå®¤'),
(66609, 55690, 'no_lang_code', 'name', 'Clayton Biotechnologies (United States)'),
(66610, 55691, 'es', 'name', 'Centro Mexicano de Innovación en Energía Solar'),
(66611, 55692, 'en', 'name', 'Kazakh Scientific Reseach Institute for Ecology and Climate'),
(66612, 55692, 'kk', 'name', 'ŠšŠ¾Š¾Ń€Š“ŠøŠ½Š°Ń†ŠøŠ¾Š½Š½Š¾Š³Š¾ центра по ŠøŠ·Š¼ŠµŠ½ŠµŠ½ŠøŃŽ климата'),
(66613, 55693, 'cs', 'name', 'ZD KrƔsnƔ Hora Nad Vltavou (Czechia)'),
(66614, 55694, 'en', 'name', 'About Special Kids'),
(66615, 55695, 'no_lang_code', 'name', 'Ales (Czechia)'),
(66616, 55696, 'no_lang_code', 'name', 'Thermona (Czechia)'),
(66617, 55697, 'de', 'name', 'Stiftung Mercator Schweiz'),
(66618, 55698, 'de', 'name', 'Privatklinik Meiringen'),
(66619, 55699, 'no_lang_code', 'name', 'PlastovƩ Stavebnƭ (Czechia)'),
(66620, 55700, 'en', 'name', 'Pinnacle Prevention'),
(66621, 55701, 'no_lang_code', 'name', 'BiopreparƔty (Czechia)'),
(66622, 55702, 'no_lang_code', 'name', 'Mankind Pharma (India)'),
(66623, 55703, 'en', 'name', 'Robina Foundation'),
(66624, 55704, 'cs', 'name', 'ČeskĆ” Asociace Hasičských DÅÆstojnĆ­kÅÆ'),
(66625, 55704, 'en', 'name', 'Czech Association of Fire Officers'),
(66626, 55705, 'no_lang_code', 'name', 'AGRO-Partner (Czechia)'),
(66627, 55706, 'en', 'name', 'Wyoming Water Development Commission'),
(66628, 55707, 'no_lang_code', 'name', 'SMTplus (Czechia)'),
(66629, 55708, 'en', 'name', 'Korea Institute of Robot and Convergence'),
(66630, 55708, 'ko', 'name', 'ķ•œźµ­ė”œė“‡ģœµķ•©ģ—°źµ¬ģ›'),
(66631, 55709, 'no_lang_code', 'name', 'Blata (Czechia)'),
(66632, 55710, 'no_lang_code', 'name', 'Stap (Czechia)'),
(66633, 55711, 'no_lang_code', 'name', 'Geovap (Czechia)'),
(66634, 55712, 'no_lang_code', 'name', 'Briklis (Czechia)'),
(66635, 55713, 'no_lang_code', 'name', 'O.K. Servis Plus (Czechia)'),
(66636, 55714, 'no_lang_code', 'name', 'Malin Space Science Systems (United States)'),
(66637, 55715, 'en', 'name', 'Cambridge Innovation Institute'),
(66638, 55716, 'sv', 'name', 'Stiftelsen fƶr vƄrd- och allergiforskning, VƄrdal Stiftelsen'),
(66639, 55717, 'no_lang_code', 'name', 'BBT-Materials Processing (Czechia)'),
(66640, 55718, 'no_lang_code', 'name', 'Grade Medical (Czechia)'),
(66641, 55719, 'no_lang_code', 'name', 'Robert Bosch (France)'),
(66642, 55720, 'no_lang_code', 'name', 'Paradigm (France)'),
(66643, 55721, 'de', 'name', 'Stadtgalerie Bern'),
(66644, 55722, 'no_lang_code', 'name', 'Elice (France)'),
(66645, 55723, 'no_lang_code', 'name', 'Interlifescience (Switzerland)'),
(66646, 55724, 'en', 'name', 'Tohoku Agricultural Research Center'),
(66647, 55724, 'ja', 'name', 'ę±åŒ—č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(66648, 55725, 'no_lang_code', 'name', 'N&R Engineering Management & Services (United States)'),
(66649, 55726, 'nl', 'name', 'Stichting Vrienden Beatrix Kinderziekenhuis'),
(66650, 55727, 'no_lang_code', 'name', 'Hendrix Genetics (France)'),
(66651, 55728, 'no_lang_code', 'name', 'BHP - Hanser und Partner (Switzerland)'),
(66652, 55729, 'no_lang_code', 'name', 'Ereie (France)'),
(66653, 55730, 'de', 'name', 'Verwaltungsgericht Kantons Aargau'),
(66654, 55731, 'cs', 'name', 'VýzkumnÔ Stanice VinohradnickÔ'),
(66655, 55732, 'no_lang_code', 'name', 'Casale Project (Czechia)'),
(66656, 55733, 'en', 'name', 'Westchester Community Foundation'),
(66657, 55734, 'fr', 'name', 'HƓpital de Cery'),
(66658, 55735, 'no_lang_code', 'name', 'United Microelectronics (United States)'),
(66659, 55736, 'az', 'name', 'Azərbaycan Elmi–Tədqiqat və Layihə Axtarış Energetika İnstitutu'),
(66660, 55736, 'en', 'name', 'Azerbaijan Scientific-Research & Design-Prospecting Power Engineering Institute'),
(66661, 55737, 'en', 'name', 'MED Institute'),
(66662, 55738, 'de', 'name', 'VIA AudioVideoFotoKunst'),
(66663, 55739, 'no_lang_code', 'name', 'Leo Pharma (Australia)'),
(66664, 55740, 'en', 'name', 'Yokohama Foundation for Advancement of Medical Science'),
(66665, 55740, 'ja', 'name', 'ęØŖęµœē·åˆåŒ»å­¦ęŒÆčˆˆč²”å›£'),
(66666, 55741, 'no_lang_code', 'name', 'Anita B (Czechia)'),
(66667, 55742, 'de', 'name', 'Gesellschaft für Schweizerische Kunstgeschichte'),
(66668, 55743, 'no_lang_code', 'name', 'Prothena (Ireland)'),
(66669, 55744, 'no_lang_code', 'name', 'APT (Czechia)'),
(66670, 55745, 'en', 'name', 'Registered Nurses'' Association of Ontario'),
(66671, 55746, 'en', 'name', 'California Institute of Computer-Assisted Surgery'),
(66672, 55747, 'cs', 'name', 'ČeskĆ” Komora Autorizovaných InženýrÅÆ a TechnikÅÆ Činných ve Výstavbě'),
(66673, 55747, 'en', 'name', 'Chamber and Offices Authorized Persons Engineering'),
(66674, 55748, 'fr', 'name', 'Institut de Recherche et de Documentation PƩdagogique'),
(66675, 55749, 'no_lang_code', 'name', 'MB Pharma (Czechia)'),
(66676, 55750, 'no_lang_code', 'name', 'Bausch Health (France)'),
(66677, 55751, 'de', 'name', 'Die Schweizer Fachstelle'),
(66678, 55752, 'no_lang_code', 'name', 'Senagro (Czechia)'),
(66679, 55753, 'no_lang_code', 'name', 'Devimex (Czechia)'),
(66680, 55754, 'no_lang_code', 'name', 'Solitea (Czechia)'),
(66681, 55755, 'no_lang_code', 'name', 'Bestex (Czechia)'),
(66682, 55756, 'no_lang_code', 'name', 'IRIS Instruments (France)'),
(66683, 55757, 'pt', 'name', 'Instituto de Pesquisas da Marinha'),
(66684, 55758, 'en', 'name', 'Finnish Parkinson Foundation'),
(66685, 55758, 'fi', 'name', 'Suomen Parkinson-sƤƤtiƶ'),
(66686, 55759, 'no_lang_code', 'name', 'Mepatek (Czechia)'),
(66687, 55760, 'en', 'name', 'Hari Shankar Singhania Elastomer And Tyre Research Institute'),
(66688, 55761, 'no_lang_code', 'name', 'FMP Lignum (Czechia)'),
(66689, 55762, 'cs', 'name', 'ZdravotnickĆ” ZĆ”chrannĆ” Služba JihočeskĆ©ho Kraje'),
(66690, 55763, 'en', 'name', 'Euro Balkan University'),
(66691, 55763, 'mk', 'name', 'Универзитет Евро-Балкан'),
(66692, 55764, 'no_lang_code', 'name', 'Argus Geo SystƩm (Czechia)'),
(66693, 55765, 'no_lang_code', 'name', 'Algon (Czechia)'),
(66694, 55766, 'no_lang_code', 'name', 'Combilift (Ireland)'),
(66695, 55767, 'de', 'name', 'Kantonsbibliothek von Appenzell Ausserrhoden'),
(66696, 55768, 'no_lang_code', 'name', 'XtendWave (United States)'),
(66697, 55769, 'no_lang_code', 'name', 'Puig (France)'),
(66698, 55770, 'no_lang_code', 'name', 'LAC (Czechia)'),
(66699, 55771, 'no_lang_code', 'name', 'Planar (Switzerland)'),
(66700, 55772, 'no_lang_code', 'name', 'InfoScience (Czechia)'),
(66701, 55773, 'en', 'name', 'Roshan Cultural Heritage Institute'),
(66702, 55774, 'en', 'name', 'Robert R. McCormick Foundation'),
(66703, 55775, 'no_lang_code', 'name', 'Ekoles Projekt (Czechia)'),
(66704, 55776, 'en', 'name', 'Federal Criminal Court'),
(66705, 55776, 'fr', 'name', 'Tribunal pƩnal fƩdƩral'),
(66706, 55776, 'it', 'name', 'Tribunale penale federale'),
(66707, 55776, 'rm', 'name', 'Tribunal penal federal'),
(66708, 55777, 'en', 'name', 'Nevsky Institute of Language and Culture'),
(66709, 55777, 'ru', 'name', 'ŠŠµŠ²ŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ·Ń‹ŠŗŠ° Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(66710, 55778, 'en', 'name', 'EdVenture'),
(66711, 55779, 'no_lang_code', 'name', 'CS-Project (Czechia)'),
(66712, 55780, 'en', 'name', 'B.Well Swiss'),
(66713, 55781, 'en', 'name', 'Energy Pipelines CRC'),
(66714, 55782, 'en', 'name', 'Institute for Literary Studies'),
(66715, 55782, 'hu', 'name', 'Magyar TudomÔnyos Akadémia BölcsészettudomÔnyi Kutatóközpont IrodalomtudomÔnyi Intézet'),
(66716, 55783, 'no_lang_code', 'name', 'Rabbit ChotýŔany (Czechia)'),
(66717, 55784, 'no_lang_code', 'name', 'Å koda JS (Czechia)'),
(66718, 55785, 'de', 'name', 'Entwicklung der Landwirtschaft und des LƤndlichen Raums'),
(66719, 55785, 'en', 'name', 'Agricultural Advisory and Extension Services'),
(66720, 55785, 'it', 'name', 'La Centrale di consulenza agricola'),
(66721, 55785, 'no_lang_code', 'name', 'AGRIDEA'),
(66722, 55786, 'pt', 'name', 'Instituto Nacional de CiĆŖncias dos Materiais em Nanotecnologia'),
(66723, 55787, 'no_lang_code', 'name', 'Taiwan Power (Taiwan)'),
(66724, 55787, 'zh', 'name', 'å°ē£é›»åŠ›å…¬åø'),
(66725, 55788, 'no_lang_code', 'name', 'Nakladatelstvƭ LidovƩ Noviny (Czechia)'),
(66726, 55789, 'no_lang_code', 'name', 'Acer (United States)'),
(66727, 55790, 'de', 'name', 'ITW'),
(66728, 55791, 'no_lang_code', 'name', 'Air Technic (Czechia)'),
(66729, 55792, 'en', 'name', 'Texas Organic Farmers and Gardeners Association'),
(66730, 55793, 'de', 'name', 'Amt für Raumentwicklung'),
(66731, 55794, 'en', 'name', 'Office of Minority Health'),
(66732, 55795, 'en', 'name', 'Huaneng Clean Energy Research Institute'),
(66733, 55795, 'zh', 'name', 'ęø…ę“čƒ½ęŗęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(66734, 55796, 'en', 'name', 'Kennel Club Charitable Trust'),
(66735, 55797, 'no_lang_code', 'name', 'Agro PodlesĆ­ (Czechia)'),
(66736, 55798, 'no_lang_code', 'name', 'Nutreco (Czechia)'),
(66737, 55799, 'fr', 'name', 'Service de la SantƩ Publique'),
(66738, 55800, 'no_lang_code', 'name', 'Agro (Czechia)'),
(66739, 55801, 'en', 'name', 'Research Institute for Analytical Instrumentation'),
(66740, 55801, 'ro', 'name', 'Institutul de Cercetari pentru Instrumentatie Analitica'),
(66741, 55802, 'no_lang_code', 'name', 'GREEN Tox (Switzerland)'),
(66742, 55803, 'en', 'name', 'Center for Drug Evaluation and Research'),
(66743, 55804, 'en', 'name', 'International Psychoanalytical Association'),
(66744, 55805, 'no_lang_code', 'name', 'BOVA Březnice (Czechia)'),
(66745, 55806, 'de', 'name', 'Kantonsschule Sargans'),
(66746, 55807, 'fi', 'name', 'Tampereen TuberkuloosisƤƤtiƶ'),
(66747, 55808, 'en', 'name', 'Van Wert County Foundation'),
(66748, 55809, 'en', 'name', 'H&M Foundation'),
(66749, 55810, 'en', 'name', 'Japan National Society for the Prevent of Blindness'),
(66750, 55810, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę—„ęœ¬å¤±ę˜Žäŗˆé˜²å”ä¼š'),
(66751, 55811, 'no_lang_code', 'name', 'EyePoint Pharmaceuticals (United Kingdom)'),
(66752, 55812, 'no_lang_code', 'name', 'Bracco (Netherlands)'),
(66753, 55813, 'no_lang_code', 'name', 'Descent (Czechia)'),
(66754, 55814, 'no_lang_code', 'name', 'BioFish (Czechia)'),
(66755, 55815, 'en', 'name', 'Reservoir Engineering Research Institute'),
(66756, 55816, 'en', 'name', 'National Agricultural Library'),
(66757, 55817, 'no_lang_code', 'name', 'Nutreov Laboratoires (France)'),
(66758, 55818, 'cs', 'name', 'Prachatice Museum'),
(66759, 55819, 'no_lang_code', 'name', 'NAV Flight Services (Czechia)'),
(66760, 55820, 'no_lang_code', 'name', 'Eteria (Czechia)'),
(66761, 55821, 'cs', 'name', 'KarlovarskĆ” KrajskĆ” Nemocnice'),
(66762, 55822, 'de', 'name', 'Labor Spiez'),
(66763, 55822, 'fr', 'name', 'Laboratoire de Spiez, Spiez Laboratory'),
(66764, 55822, 'it', 'name', 'Laboratorio Spiez'),
(66765, 55822, 'rm', 'name', 'Labor Spiez'),
(66766, 55823, 'cs', 'name', 'Kristina Colloredo-MansfeldovĆ”'),
(66767, 55824, 'de', 'name', 'Amt für Wald und Naturgefahren'),
(66768, 55825, 'no_lang_code', 'name', 'Armatury Group (Czechia)'),
(66769, 55826, 'no_lang_code', 'name', 'AeskuLab (Czechia)'),
(66770, 55827, 'no_lang_code', 'name', 'Cochlear (France)'),
(66771, 55828, 'no_lang_code', 'name', 'HBIS (China)'),
(66772, 55828, 'zh', 'name', 'ę²³åŒ—é’¢é“é›†å›¢ęœ‰é™å…¬åø'),
(66773, 55829, 'en', 'name', 'Genservice'),
(66774, 55830, 'no_lang_code', 'name', 'IC Infraconsult (Switzerland)'),
(66775, 55831, 'en', 'name', 'Swedish Rheumatism Association'),
(66776, 55832, 'no_lang_code', 'name', 'Cook Medical (India)'),
(66777, 55833, 'no_lang_code', 'name', 'SurgiMedia (France)'),
(66778, 55834, 'en', 'name', 'Institute of the Meat and Dairy Industry'),
(66779, 55835, 'no_lang_code', 'name', 'Circuit Therapeutics (United States)'),
(66780, 55836, 'en', 'name', 'Research Center of Maternal and Child Health Protection'),
(66781, 55837, 'en', 'name', 'Kaute Foundation'),
(66782, 55837, 'fi', 'name', 'KAUTE-sƤƤtiƶ'),
(66783, 55838, 'no_lang_code', 'name', 'AQ SPOL (Czechia)'),
(66784, 55839, 'no_lang_code', 'name', 'CABI Kenya'),
(66785, 55840, 'fr', 'name', 'Centre National de Recherches sur l''Environnement'),
(66786, 55841, 'no_lang_code', 'name', 'CNS (Czechia)'),
(66787, 55842, 'no_lang_code', 'name', 'Reprogen (Czechia)'),
(66788, 55843, 'en', 'name', 'Scleroderma Research Foundation'),
(66789, 55844, 'de', 'name', 'Staatsarchiv des Kantons Bern'),
(66790, 55844, 'en', 'name', 'State Archive of Bern'),
(66791, 55845, 'en', 'name', 'Federation of European Biochemical Societies'),
(66792, 55846, 'de', 'name', 'Stiftung Bibliothek Werner Oechslin'),
(66793, 55846, 'en', 'name', 'Werner Oechslin Library Foundation'),
(66794, 55847, 'no_lang_code', 'name', 'AQD-envitest (Czechia)'),
(66795, 55848, 'en', 'name', 'Alfred Kordelin Foundation'),
(66796, 55849, 'en', 'name', 'Pitt Hopkins Research Foundation'),
(66797, 55850, 'en', 'name', 'Sand County Foundation'),
(66798, 55851, 'no_lang_code', 'name', 'LightGate (Czechia)'),
(66799, 55852, 'no_lang_code', 'name', 'Gentop Engineering (Czechia)'),
(66800, 55853, 'en', 'name', 'Institute of Electrodynamics'),
(66801, 55853, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ електроГинаміки ŠŠŠ України'),
(66802, 55854, 'sv', 'name', 'Victoriastiftelsen'),
(66803, 55855, 'no_lang_code', 'name', 'Polycom (Czechia)'),
(66804, 55856, 'no_lang_code', 'name', 'VHS Brno (Czechia)'),
(66805, 55857, 'en', 'name', 'American College of Veterinary Ophthalmologists'),
(66806, 55858, 'no_lang_code', 'name', 'DTZ (Czechia)'),
(66807, 55859, 'no_lang_code', 'name', 'Rockwool International (Germany)'),
(66808, 55860, 'de', 'name', 'Burgerbibliothek Bern, Burgerbibliothek of Berne'),
(66809, 55860, 'fr', 'name', 'BibliothĆØque de la Bourgeoisie de Berne'),
(66810, 55861, 'cs', 'name', 'MezinƔrodnƭ organizace pro migraci'),
(66811, 55861, 'en', 'name', 'International Organization for Migration'),
(66812, 55862, 'no_lang_code', 'name', 'Electronic Control and Measurement (Czechia)'),
(66813, 55863, 'de', 'name', 'Stiftung Michael'),
(66814, 55863, 'en', 'name', 'Michael Foundation'),
(66815, 55864, 'de', 'name', 'Stadtbibliothek Schaffhausen'),
(66816, 55865, 'en', 'name', 'Calypso Farm and Ecology Center'),
(66817, 55866, 'cs', 'name', 'SprÔva Pražského Hradu'),
(66818, 55866, 'en', 'name', 'Prague Castle'),
(66819, 55867, 'no_lang_code', 'name', 'Lec (Czechia)'),
(66820, 55868, 'no_lang_code', 'name', 'GMEP Engineers (United States)'),
(66821, 55869, 'no_lang_code', 'name', 'VodÔrna KÔraný (Czechia)'),
(66822, 55870, 'en', 'name', 'MEF Associates'),
(66823, 55871, 'no_lang_code', 'name', 'PolabskƩ MlƩkƔrny (Czechia)'),
(66824, 55872, 'it', 'name', 'Istituto di Ortofonologia'),
(66825, 55873, 'cs', 'name', 'ČeskĆ” GeografickĆ” Společnost'),
(66826, 55874, 'en', 'name', 'Madison County Urban league'),
(66827, 55875, 'no_lang_code', 'name', 'Suez (Czechia)'),
(66828, 55876, 'en', 'name', 'Institute of Ecology and Geography'),
(66829, 55876, 'ro', 'name', 'Institutul de Ecologie și Geografie'),
(66830, 55877, 'en', 'name', 'Federal Agency for Legal Protection of Military Results, Special and Dual Purpose'),
(66831, 55877, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ агентство по правовой защите Ń€ŠµŠ·ŃƒŠ»ŃŒŃ‚Š°Ń‚Š¾Š² ŠøŠ½Ń‚ŠµŠ»Š»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Š¾Š¹ Š“ŠµŃŃ‚ŠµŠ»ŃŒŠ½Š¾ŃŃ‚Šø военного'),
(66832, 55878, 'no_lang_code', 'name', 'Kennametal (Germany)'),
(66833, 55879, 'no_lang_code', 'name', 'Funktion One Research (United Kingdom)'),
(66834, 55880, 'no_lang_code', 'name', 'Envigo (United Kingdom)'),
(66835, 55881, 'en', 'name', 'Wasserman Foundation'),
(66836, 55882, 'no_lang_code', 'name', 'Adidas (Netherlands)'),
(66837, 55883, 'no_lang_code', 'name', 'DopravnĆ­ Podnik Města ČeskĆ© Budějovice'),
(66838, 55884, 'no_lang_code', 'name', 'OstravskĆ© MěstskĆ© Lesy a Zeleň (Czechia)'),
(66839, 55885, 'no_lang_code', 'name', 'Jet Company (Czechia)'),
(66840, 55886, 'no_lang_code', 'name', 'NVH Medicinal (France)'),
(66841, 55887, 'no_lang_code', 'name', 'Waste Hub (United States)'),
(66842, 55888, 'no_lang_code', 'name', 'Augur Consulting (Czechia)'),
(66843, 55889, 'en', 'name', 'Asia Pacific Center for Theoretical Physics'),
(66844, 55890, 'cs', 'name', 'Kolínský Technologický Institut'),
(66845, 55890, 'en', 'name', 'Kolin Institute of Technology'),
(66846, 55891, 'no_lang_code', 'name', 'ZVU KovƔrna (Czechia)'),
(66847, 55892, 'en', 'name', 'Global Core Research Center for Ships and Offshore Plants'),
(66848, 55892, 'ko', 'name', 'ģ„ ė°• ė° ķ•“ģ–‘ ķ”ŒėžœķŠø źø€ė”œė²Œ 핵심 연구 센터'),
(66849, 55893, 'ko', 'name', '두산그룹'),
(66850, 55893, 'no_lang_code', 'name', 'Doosan (South Korea)'),
(66851, 55894, 'no_lang_code', 'name', 'Agroel (Czechia)'),
(66852, 55895, 'no_lang_code', 'name', 'LEA Networks (France)'),
(66853, 55896, 'cs', 'name', 'Strojírenský ZkuŔební Ústav'),
(66854, 55897, 'en', 'name', 'VA Office of Research and Development'),
(66855, 55898, 'no_lang_code', 'name', 'DEL (Czechia)'),
(66856, 55899, 'no_lang_code', 'name', 'Waitaki Biosciences (New Zealand)'),
(66857, 55900, 'en', 'name', 'New York Times'),
(66858, 55901, 'en', 'name', 'Southern Appalachian Highlands Conservancy'),
(66859, 55902, 'no_lang_code', 'name', 'Woolmark (Australia)'),
(66860, 55903, 'no_lang_code', 'name', 'Ecolab Znojmo (Czechia)'),
(66861, 55904, 'no_lang_code', 'name', 'Aeolis Research (United States)'),
(66862, 55905, 'en', 'name', 'Society for the Preservation of American Modernists'),
(66863, 55906, 'no_lang_code', 'name', 'Cegedim (France)'),
(66864, 55907, 'cs', 'name', 'Institut plĆ”novĆ”nĆ­ a rozvoje hlavnĆ­ho města Prahy'),
(66865, 55907, 'en', 'name', 'Prague Institute of Planning and Development'),
(66866, 55908, 'no_lang_code', 'name', 'CZ Fruit (Czechia)'),
(66867, 55909, 'no_lang_code', 'name', 'Nanovia (Czechia)'),
(66868, 55910, 'no_lang_code', 'name', 'Edwards Lifesciences (Switzerland)'),
(66869, 55911, 'de', 'name', 'Forschungs und Dokumentationsstelle Kind und Umwelt'),
(66870, 55912, 'no_lang_code', 'name', 'Farmak (Czechia)'),
(66871, 55913, 'en', 'name', 'Society for the AnthroĀ­pology of North AmerĀ­ica'),
(66872, 55914, 'no_lang_code', 'name', 'Betonconsult (Czechia)'),
(66873, 55915, 'no_lang_code', 'name', 'DodƔvky Automatizace (Czechia)'),
(66874, 55916, 'en', 'name', 'Biosystems Informatics Institute'),
(66875, 55917, 'en', 'name', 'China Academy of Launch Vehicle Technology'),
(66876, 55917, 'zh', 'name', 'äø­å›½čæč½½ē«ē®­ęŠ€ęœÆē ”ē©¶é™¢'),
(66877, 55918, 'de', 'name', 'Dialog N'),
(66878, 55919, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за балканистика с Ń†ŠµŠ½Ń‚ŃŠŃ€ по Ń‚Ń€Š°ŠŗŠ¾Š»Š¾Š³ŠøŃ'),
(66879, 55919, 'en', 'name', 'Institute for Balkan Studies and Centre for Thracology'),
(66880, 55920, 'no_lang_code', 'name', 'Toyota Industries (United States)'),
(66881, 55921, 'no_lang_code', 'name', 'DMS Imaging (France)'),
(66882, 55922, 'no_lang_code', 'name', 'Nidec (France)'),
(66883, 55923, 'cs', 'name', 'ZelinÔřskĆ” unie Čech a Moravy'),
(66884, 55924, 'de', 'name', 'Mittelschul- und Berufsbildungsamt'),
(66885, 55925, 'en', 'name', 'California Native Plant Society'),
(66886, 55926, 'en', 'name', 'Scientific Research and Design Institute of Technology Equipment Refining and Petrochemical Industries'),
(66887, 55926, 'ru', 'name', 'Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠšŠžŠŠ”Š¢Š Š£ŠšŠ¢ŠžŠ Š”ŠšŠž-Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠžŠ‘ŠžŠ Š£Š”ŠžŠ’ŠŠŠ˜ŠÆ ŠŠ•Š¤Š¢Š•ŠŸŠ•Š Š•Š ŠŠ‘ŠŠ¢Š«Š’ŠŠ®Š©Š•Š™ И ŠŠ•Š¤Š¢Š•Š„Š˜ŠœŠ˜Š§Š•Š”ŠšŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(66888, 55927, 'no_lang_code', 'name', 'KCI (Ireland)'),
(66889, 55928, 'en', 'name', 'Museum of Art and History'),
(66890, 55928, 'fr', 'name', 'MusƩe d''Art et d''Histoire'),
(66891, 55929, 'no_lang_code', 'name', 'Solvay (United Kingdom)'),
(66892, 55930, 'no_lang_code', 'name', 'Bristol-Myers Squibb (France)'),
(66893, 55931, 'no_lang_code', 'name', 'Enteromed (United Kingdom)'),
(66894, 55932, 'en', 'name', 'American Institute for Psychoanalysis'),
(66895, 55933, 'no_lang_code', 'name', 'Instar ITS (Czechia)'),
(66896, 55934, 'en', 'name', 'GS1 Czech Republic'),
(66897, 55935, 'en', 'name', 'WHAS Crusade for Children'),
(66898, 55936, 'no_lang_code', 'name', 'Steris (France)'),
(66899, 55937, 'no_lang_code', 'name', 'Rehau (France)'),
(66900, 55938, 'de', 'name', 'KantonsarchƤologie'),
(66901, 55939, 'cs', 'name', 'Bohuslav Martinu Foundation, Nadace Bohuslava MartinÅÆ'),
(66902, 55940, 'no_lang_code', 'name', 'Angermeier (Czechia)'),
(66903, 55941, 'en', 'name', 'Paws & Claws Animal Hospital and Holistic Pet Center'),
(66904, 55942, 'en', 'name', 'Samberg Family Foundation'),
(66905, 55943, 'no_lang_code', 'name', 'ICT Unie'),
(66906, 55944, 'cs', 'name', 'Český rozhlas'),
(66907, 55944, 'en', 'name', 'Czech Radio'),
(66908, 55945, 'en', 'name', 'Wiener - Anspach Foundation'),
(66909, 55945, 'nl', 'name', 'Fondation Philippe Wiener - Maurice Anspach'),
(66910, 55946, 'no_lang_code', 'name', 'Hologic (United Kingdom)'),
(66911, 55947, 'no_lang_code', 'name', 'Caerbont Automotive Instruments (United Kingdom)'),
(66912, 55948, 'en', 'name', 'Israel Water Authority'),
(66913, 55948, 'he', 'name', '×ž×•×¢×¦×Ŗ רשות המים'),
(66914, 55949, 'no_lang_code', 'name', 'Mane (India)'),
(66915, 55950, 'no_lang_code', 'name', 'Berry Servis (Czechia)'),
(66916, 55951, 'en', 'name', 'Rose Foundation for Communities and the Environment'),
(66917, 55952, 'no_lang_code', 'name', 'Renesas Electronics (United States)'),
(66918, 55953, 'no_lang_code', 'name', 'Marvell (Israel)'),
(66919, 55954, 'no_lang_code', 'name', 'Meteolabor (Switzerland)'),
(66920, 55955, 'cs', 'name', 'Dopravnƭ podnik města Liberce'),
(66921, 55955, 'no_lang_code', 'name', 'Dopravnƭ Podnik Měst Liberce a Jablonce nad Nisou (Czechia)');
INSERT INTO `ror_settings` VALUES
(66922, 55956, 'cs', 'name', 'ČeskÔ EnergetickÔ Asociace'),
(66923, 55957, 'no_lang_code', 'name', 'Sky Paragliders (Czechia)'),
(66924, 55958, 'no_lang_code', 'name', 'Laboratory Supplies and Instruments (United Kingdom)'),
(66925, 55959, 'en', 'name', 'Working Landscapes'),
(66926, 55960, 'no_lang_code', 'name', 'Rosomac (Czechia)'),
(66927, 55961, 'en', 'name', 'Government of Ireland'),
(66928, 55962, 'en', 'name', 'United States African Development Foundation'),
(66929, 55963, 'en', 'name', 'Thommen Medical (Switzerland)'),
(66930, 55964, 'no_lang_code', 'name', 'Sanofi (Austria)'),
(66931, 55965, 'en', 'name', 'Port Authority of New York and New Jersey'),
(66932, 55966, 'no_lang_code', 'name', 'ZPA Ekoreg (Czechia)'),
(66933, 55967, 'en', 'name', 'RJ McElroy Trust'),
(66934, 55968, 'no_lang_code', 'name', 'Techtronic Industries (United Kingdom)'),
(66935, 55969, 'no_lang_code', 'name', 'Garmin (United Kingdom)'),
(66936, 55970, 'no_lang_code', 'name', 'Metabolic Modeling Services (New Zealand)'),
(66937, 55971, 'cs', 'name', 'ČeskoslovenskĆ” společnost mikrobiologickĆ”'),
(66938, 55971, 'no_lang_code', 'name', 'Czechoslovak Society for Microbiology (Czechia)'),
(66939, 55972, 'no_lang_code', 'name', 'Ecofuel Laboratories (Czechia)'),
(66940, 55973, 'en', 'name', 'IBM Research - India'),
(66941, 55974, 'no_lang_code', 'name', 'Setec (France)'),
(66942, 55975, 'en', 'name', 'San Diego Center for Spinal Disorders'),
(66943, 55976, 'fr', 'name', 'Fondation MathƩmatiques Jacques Hadamard'),
(66944, 55977, 'no_lang_code', 'name', 'Hit Hofman (Czechia)'),
(66945, 55978, 'cs', 'name', 'SociƔlnƭ Agentura'),
(66946, 55979, 'no_lang_code', 'name', 'Sat (Czechia)'),
(66947, 55980, 'no_lang_code', 'name', 'FCC Austria Abfall Service AG'),
(66948, 55981, 'no_lang_code', 'name', 'Projekt HTL (Czechia)'),
(66949, 55982, 'en', 'name', 'Marathon Veterinary Hospital'),
(66950, 55983, 'da', 'name', 'Svend Beck Peter Holm og Vagn Jacobsens Almene Fond'),
(66951, 55984, 'no_lang_code', 'name', 'Ders (Czechia)'),
(66952, 55985, 'sv', 'name', 'Stiftelsen Clas Groschinskys Minnesfond'),
(66953, 55986, 'es', 'name', 'Instituto Químico Biológico'),
(66954, 55987, 'cs', 'name', 'JihočeskĆ” hospodÔřskĆ” komora'),
(66955, 55987, 'de', 'name', 'Grundinformationen über Südböhmische Wirtschaftskammer'),
(66956, 55987, 'en', 'name', 'South Bohemian Chamber of Commerce'),
(66957, 55988, 'no_lang_code', 'name', 'Laboratoires d''Anjou (France)'),
(66958, 55989, 'de', 'name', 'Schweizerischer Juristenverein'),
(66959, 55990, 'no_lang_code', 'name', 'Rebnok (India)'),
(66960, 55991, 'cs', 'name', 'VysokÔ Ŕkola manažerské informatiky, ekonomiky a prÔva'),
(66961, 55991, 'en', 'name', 'College of Information Management Business Administration and Law'),
(66962, 55992, 'no_lang_code', 'name', 'Biodegradace (Czechia)'),
(66963, 55993, 'de', 'name', 'Thüringer Ministerium für Bildung, Jugend und Sport'),
(66964, 55994, 'en', 'name', 'Institute of Paleontology A A Borisyak'),
(66965, 55994, 'ru', 'name', 'ŠŸŠ°Š»ŠµŠ¾Š½Ń‚Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени А. А. Š‘Š¾Ń€ŠøŃŃŠŗŠ° Š ŠŠ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(66966, 55995, 'no_lang_code', 'name', 'Advance Product Services (United Kingdom)'),
(66967, 55996, 'en', 'name', 'Dominican School of Philosophy and Theology'),
(66968, 55997, 'de', 'name', 'Schweizerische Multiple Sklerose Gesellschaft'),
(66969, 55997, 'fr', 'name', 'SociƩtƩ Suisse de la SclƩrose en Plaques'),
(66970, 55997, 'it', 'name', 'SocietĆ  Svizzera Sclerosi Multipla'),
(66971, 55998, 'de', 'name', 'Egger Kommunikation'),
(66972, 55999, 'de', 'name', 'Bundesamt für Kultur, Office fédéral de la culture'),
(66973, 55999, 'it', 'name', 'Ufficio federale della cultura'),
(66974, 55999, 'rm', 'name', 'Uffizi federal da cultura'),
(66975, 56000, 'no_lang_code', 'name', 'Nokia (China)'),
(66976, 56001, 'en', 'name', 'Dalmia Institute of Scientific & Industrial Research'),
(66977, 56002, 'no_lang_code', 'name', 'APPLIC (Czechia)'),
(66978, 56003, 'no_lang_code', 'name', 'Memscap (France)'),
(66979, 56004, 'no_lang_code', 'name', 'LibereckƩ KotlƔrny Hƶlter (Czechia)'),
(66980, 56005, 'no_lang_code', 'name', 'Newell Brands (Germany)'),
(66981, 56006, 'no_lang_code', 'name', 'Genoscience Pharma (France)'),
(66982, 56007, 'no_lang_code', 'name', 'Glass Service (Czechia)'),
(66983, 56008, 'en', 'name', 'Technology Industries of Finland'),
(66984, 56009, 'cs', 'name', 'Unie Geologických Asociací'),
(66985, 56010, 'no_lang_code', 'name', 'Interfluid (Czechia)'),
(66986, 56011, 'no_lang_code', 'name', 'International Drug Development Institute (Belgium)'),
(66987, 56012, 'de', 'name', 'Center Pro Natura of Champ-Pittet'),
(66988, 56013, 'en', 'name', 'IMI TAMI Institute for Research and Development'),
(66989, 56014, 'en', 'name', 'University Film and Video Association'),
(66990, 56015, 'en', 'name', 'Formation Continue UNIL-EPFL'),
(66991, 56016, 'no_lang_code', 'name', 'Sitel (Czechia)'),
(66992, 56017, 'no_lang_code', 'name', 'Amest (Czechia)'),
(66993, 56018, 'de', 'name', 'Amt für Veröffentlichungen der Europäischen Union'),
(66994, 56018, 'en', 'name', 'Publications Office of the European Union'),
(66995, 56018, 'fr', 'name', 'L''Office des Publications de l’Union EuropĆ©enne'),
(66996, 56019, 'en', 'name', 'Savoy Foundation'),
(66997, 56020, 'no_lang_code', 'name', 'Ballard Power Systems (Germany)'),
(66998, 56021, 'de', 'name', 'Fachkommission für Hochspannungsfragen'),
(66999, 56022, 'no_lang_code', 'name', 'Becton Dickinson (France)'),
(67000, 56023, 'en', 'name', 'Vanderes Foundation'),
(67001, 56023, 'nl', 'name', 'Stichting Vanderes'),
(67002, 56024, 'no_lang_code', 'name', 'Ɖditions Gallimard (France)'),
(67003, 56025, 'no_lang_code', 'name', 'Intermark Medical Innovations (United Kingdom)'),
(67004, 56026, 'no_lang_code', 'name', 'Bilcare Research (United States)'),
(67005, 56027, 'no_lang_code', 'name', 'IntellMed (Czechia)'),
(67006, 56028, 'cs', 'name', 'Nemocnice HavlƭčkÅÆv Brod'),
(67007, 56028, 'en', 'name', 'HavlƭčkÅÆv Brod Hospital'),
(67008, 56029, 'no_lang_code', 'name', 'JHV Engineering'),
(67009, 56030, 'no_lang_code', 'name', 'Nadop-výroba NÔbytku (Czechia)'),
(67010, 56031, 'en', 'name', 'Spital Linth'),
(67011, 56032, 'en', 'name', 'Riverbanks Zoo and Garden'),
(67012, 56033, 'no_lang_code', 'name', 'Dako-CZ (Czechia)'),
(67013, 56034, 'en', 'name', 'William K. Warren Foundation'),
(67014, 56035, 'no_lang_code', 'name', 'Gumotex (Czechia)'),
(67015, 56036, 'no_lang_code', 'name', 'AK Svejkovský, KabelkovÔ, Šlauf (Czechia)'),
(67016, 56037, 'en', 'name', 'Schenectady Foundation'),
(67017, 56038, 'en', 'name', 'Society for Ambulatory Anesthesia'),
(67018, 56039, 'en', 'name', 'Office of Postsecondary Education'),
(67019, 56040, 'no_lang_code', 'name', 'Blackberry (United States)'),
(67020, 56041, 'en', 'name', 'Ohio Ecological Food and Farm Association'),
(67021, 56042, 'cs', 'name', 'Centrum pro výzkum, vývoj a inovace'),
(67022, 56042, 'en', 'name', 'Centre for Research Development and Innovation'),
(67023, 56043, 'de', 'name', 'Natur Museum Luzern'),
(67024, 56044, 'no_lang_code', 'name', 'Microsoft (Ireland)'),
(67025, 56045, 'no_lang_code', 'name', 'Dyntec (Czechia)'),
(67026, 56046, 'no_lang_code', 'name', 'IDEA StatiCa (Czechia)'),
(67027, 56047, 'en', 'name', 'Leadership for Urban Renewal Network'),
(67028, 56048, 'en', 'name', 'Healthcare Technology Innovation Centre'),
(67029, 56049, 'cs', 'name', 'Nemocnice Jablonec nad Nisou'),
(67030, 56050, 'no_lang_code', 'name', 'Geniczech M (Czechia)'),
(67031, 56051, 'en', 'name', 'Wuhan Donghu University'),
(67032, 56051, 'zh', 'name', 'ę­¦ę±‰äøœę¹–å­¦é™¢'),
(67033, 56052, 'no_lang_code', 'name', 'Barco (Netherlands)'),
(67034, 56053, 'no_lang_code', 'name', 'StrojĆ­renskĆ© InovačnĆ­ Centrum (Czechia)'),
(67035, 56054, 'en', 'name', 'Fujian Metrology Institute'),
(67036, 56055, 'no_lang_code', 'name', 'Croda (France)'),
(67037, 56056, 'en', 'name', 'Minerals Council of Australia'),
(67038, 56057, 'no_lang_code', 'name', 'Johnson Controls (Germany)'),
(67039, 56058, 'en', 'name', 'Scottish Intercollegiate Guidelines Network'),
(67040, 56059, 'en', 'name', 'Office of the Comptroller of the Currency'),
(67041, 56060, 'no_lang_code', 'name', 'Centro de Calculo Igs Software (Czechia)'),
(67042, 56061, 'de', 'name', 'Schweizer Zither-Kulturzentrum'),
(67043, 56062, 'no_lang_code', 'name', 'Měď Povrly (Czechia)'),
(67044, 56063, 'en', 'name', 'Korean Chemical Society'),
(67045, 56064, 'no_lang_code', 'name', 'RekultivačnĆ­ Výstavba Most (Czechia)'),
(67046, 56065, 'no_lang_code', 'name', 'AdamovskƩ Strojƭrny (Czechia)'),
(67047, 56066, 'cs', 'name', 'ZÔkladní Ŕkola Brno'),
(67048, 56067, 'no_lang_code', 'name', 'Turnex (Czechia)'),
(67049, 56068, 'no_lang_code', 'name', 'SG-Geoprojekt (Czechia)'),
(67050, 56069, 'no_lang_code', 'name', 'MEP Equine Solutions (United States)'),
(67051, 56070, 'sv', 'name', 'Svenska Ɩrtmedicinska Institute'),
(67052, 56071, 'no_lang_code', 'name', 'Good Sailors (Czechia)'),
(67053, 56072, 'fr', 'name', 'LycƩe Pierre-de-Fermat'),
(67054, 56073, 'en', 'name', 'Concerned Black Men National'),
(67055, 56074, 'cs', 'name', 'DopravnĆ­ Podnik Ostrava'),
(67056, 56074, 'no_lang_code', 'name', 'Transport Company Ostrava (Czechia)'),
(67057, 56075, 'cs', 'name', 'Sdružení Automobilového Průmyslu'),
(67058, 56075, 'en', 'name', 'Automotive Industry Association'),
(67059, 56076, 'en', 'name', 'Roslin Institute'),
(67060, 56077, 'en', 'name', 'Sean Costello Memorial Fund for Bipolar Research'),
(67061, 56078, 'en', 'name', 'ASI Consulting Group (United States)'),
(67062, 56079, 'cs', 'name', 'Profesní Komora SociÔlních Pracovníků'),
(67063, 56080, 'no_lang_code', 'name', 'SOR Libchavy (Czechia)'),
(67064, 56081, 'no_lang_code', 'name', 'Boehringer Ingelheim (Mexico)'),
(67065, 56082, 'no_lang_code', 'name', 'PBS Power Equipment (Czechia)'),
(67066, 56083, 'no_lang_code', 'name', 'Vyrtych TPI (Czechia)'),
(67067, 56084, 'no_lang_code', 'name', 'Dystiff (Czechia)'),
(67068, 56085, 'no_lang_code', 'name', 'Safe Patient Systems (United Kingdom)'),
(67069, 56086, 'no_lang_code', 'name', 'BG Sys HT (Czechia)'),
(67070, 56087, 'en', 'name', 'Romanian Peasant Museum'),
(67071, 56087, 'ro', 'name', 'Muzeul Național al Ţăranului RomĆ¢n'),
(67072, 56088, 'no_lang_code', 'name', 'VƔlcovna Trub (Czechia)'),
(67073, 56089, 'de', 'name', 'Staatsarchiv des Kantons Zürich'),
(67074, 56090, 'en', 'name', 'Webber Family Foundation'),
(67075, 56091, 'no_lang_code', 'name', 'Asipo (Czechia)'),
(67076, 56092, 'en', 'name', 'Institute for Environmental Management'),
(67077, 56093, 'en', 'name', 'Association of Ukrainian Cities'),
(67078, 56093, 'uk', 'name', 'ŠŃŠ¾Ń†Ń–Š°Ń†Ń–Ń міст України та громаГ'),
(67079, 56094, 'no_lang_code', 'name', 'Mobsya'),
(67080, 56095, 'en', 'name', 'South Central Community Action Programs'),
(67081, 56096, 'no_lang_code', 'name', 'Schiller (France)'),
(67082, 56097, 'en', 'name', 'Pen-Faulkner Foundation'),
(67083, 56098, 'no_lang_code', 'name', 'Despa ok (Czechia)'),
(67084, 56099, 'de', 'name', 'Zentrum für Sprachtherapie'),
(67085, 56100, 'no_lang_code', 'name', 'V-Projekt (Czechia)'),
(67086, 56101, 'de', 'name', 'Albrecht von Haller-Stiftung'),
(67087, 56101, 'en', 'name', 'Albrecht von Haller Foundation'),
(67088, 56102, 'no_lang_code', 'name', 'RybÔřstvĆ­ NovĆ© Hrady (Czechia)'),
(67089, 56103, 'no_lang_code', 'name', 'Sigma-Tau (Switzerland)'),
(67090, 56104, 'no_lang_code', 'name', 'GeoTec GS (Czechia)'),
(67091, 56105, 'no_lang_code', 'name', 'Lime Business Consulting (Czechia)'),
(67092, 56106, 'no_lang_code', 'name', 'Dendria (Czechia)'),
(67093, 56107, 'en', 'name', 'Windham Regional Community Council'),
(67094, 56108, 'de', 'name', 'Institut für Industrielle Pharmazie'),
(67095, 56109, 'no_lang_code', 'name', 'Shangluo University'),
(67096, 56109, 'zh', 'name', '商擛学院'),
(67097, 56110, 'de', 'name', 'Kunsthaus Zug'),
(67098, 56111, 'no_lang_code', 'name', 'Straumann (Switzerland)'),
(67099, 56112, 'en', 'name', 'National Association of Community Health Representatives'),
(67100, 56113, 'no_lang_code', 'name', 'Diram (Czechia)'),
(67101, 56114, 'en', 'name', 'Sierra Health Foundation'),
(67102, 56115, 'no_lang_code', 'name', 'Saint-Gobain (Czechia)'),
(67103, 56116, 'no_lang_code', 'name', 'Tylex Letovice (Czechia)'),
(67104, 56117, 'en', 'name', 'Sacramento Food Bank and Family Services'),
(67105, 56118, 'no_lang_code', 'name', 'Integrated Chinese Medicine (China)'),
(67106, 56119, 'no_lang_code', 'name', 'SDS Exmost (Czechia)'),
(67107, 56120, 'no_lang_code', 'name', 'Šimeček (Czechia)'),
(67108, 56121, 'de', 'name', 'Marshallplan JubilƤumsstiftung'),
(67109, 56121, 'en', 'name', 'Austrian Marshall Plan Foundation'),
(67110, 56122, 'en', 'name', 'Delegation of the European Union to Guinea'),
(67111, 56122, 'fr', 'name', 'DĆ©lĆ©gation de l’Union EuropĆ©enne en RĆ©publique de GuinĆ©e'),
(67112, 56123, 'en', 'name', 'Atlanta Clinical and Translational Science Institute'),
(67113, 56124, 'no_lang_code', 'name', 'Laboratoires Prod''Hyg (France)'),
(67114, 56125, 'no_lang_code', 'name', 'Institut StrategickƩ Podpory (Czechia)'),
(67115, 56126, 'en', 'name', 'Ulugh Beg Astronomical Institute'),
(67116, 56127, 'no_lang_code', 'name', 'Synchro Medical (France)'),
(67117, 56128, 'no_lang_code', 'name', 'TE Connectivity (France)'),
(67118, 56129, 'en', 'name', 'Agricultural Technology Research Institute'),
(67119, 56130, 'de', 'name', 'Psychiatrie Baselland'),
(67120, 56130, 'en', 'name', 'Psychiatry Baselland'),
(67121, 56131, 'de', 'name', 'ArchƤologische Bodenforschung des Kantons Basel-Stadt'),
(67122, 56132, 'cs', 'name', 'České Radiokomunikace'),
(67123, 56132, 'no_lang_code', 'name', 'Czech Radiocommunications (Czechia)'),
(67124, 56133, 'cs', 'name', 'VlastivědnĆ© Muzeum v Å umperku'),
(67125, 56134, 'no_lang_code', 'name', 'Slovacke Strojirny (Czechia)'),
(67126, 56135, 'no_lang_code', 'name', 'Energoservis (Czechia)'),
(67127, 56136, 'no_lang_code', 'name', 'INTV (Czechia)'),
(67128, 56137, 'no_lang_code', 'name', 'Vepaspol Olomouc (Czechia)'),
(67129, 56138, 'fr', 'name', 'Technologie MƩdicale (France)'),
(67130, 56139, 'no_lang_code', 'name', 'Valeo Physical Therapy (United States)'),
(67131, 56140, 'fr', 'name', 'Fondation Innovations en Infectiologie'),
(67132, 56141, 'de', 'name', 'Schweizerische Gesellschaft für Soziologie'),
(67133, 56141, 'en', 'name', 'Swiss Sociological Association'),
(67134, 56142, 'no_lang_code', 'name', 'Betotech (Czechia)'),
(67135, 56143, 'cs', 'name', 'Asociace Poskytovatelů SociÔlních Služeb České Republiky'),
(67136, 56144, 'en', 'name', 'Geneva Ethnography Museum'),
(67137, 56144, 'fr', 'name', 'Musée d''Ethnographie de Genève'),
(67138, 56145, 'no_lang_code', 'name', 'Recutech (Czechia)'),
(67139, 56146, 'fr', 'name', 'Institut SupĆ©rieur d’Informatique, de ModĆ©lisation et de leurs Applications'),
(67140, 56147, 'no_lang_code', 'name', 'ON Semiconductor (Taiwan)'),
(67141, 56148, 'no_lang_code', 'name', 'Vial (Norway)'),
(67142, 56149, 'en', 'name', 'Ohio State Office of the Governor'),
(67143, 56150, 'no_lang_code', 'name', 'Peter Brett Associates (Czechia)'),
(67144, 56151, 'en', 'name', 'Respiratory Health Association'),
(67145, 56152, 'no_lang_code', 'name', 'SciGlob (United States)'),
(67146, 56153, 'en', 'name', 'Office of Minority Health and Health Equity'),
(67147, 56154, 'no_lang_code', 'name', 'Nodus (Norway)'),
(67148, 56155, 'en', 'name', 'South Asian Health Foundation'),
(67149, 56156, 'no_lang_code', 'name', 'PKS holding (Czechia)'),
(67150, 56157, 'de', 'name', 'Promotion Ʃconomique du canton de Fribourg'),
(67151, 56157, 'en', 'name', 'Fribourg Development Agency'),
(67152, 56158, 'en', 'name', 'American Olive Oil Producers Association'),
(67153, 56159, 'it', 'name', 'Scuola Cantonale di Commercio Bellinzona'),
(67154, 56160, 'en', 'name', 'International Union of Immunological Societies'),
(67155, 56161, 'no_lang_code', 'name', 'AZ Consult (Czechia)'),
(67156, 56162, 'no_lang_code', 'name', 'Rex Controls (Czechia)'),
(67157, 56163, 'no_lang_code', 'name', 'Liaison Technologies (United States)'),
(67158, 56164, 'fr', 'name', 'Institut des Neurosciences Cliniques de Rennes'),
(67159, 56165, 'no_lang_code', 'name', 'ENBRA (Czechia)'),
(67160, 56166, 'no', 'name', 'Regionale forskningsfond Oslofjordfondet'),
(67161, 56167, 'no_lang_code', 'name', 'ZONER software (Czechia)'),
(67162, 56168, 'cs', 'name', 'CZ Biom'),
(67163, 56169, 'hu', 'name', 'Pallas AthƩnƩ Domus Animae AlapƭtvƔny'),
(67164, 56170, 'en', 'name', 'Wipe Out Kids Cancer'),
(67165, 56171, 'no_lang_code', 'name', 'Eyedea Recognition (Czechia)'),
(67166, 56172, 'no_lang_code', 'name', 'Malina Safety (Czechia)'),
(67167, 56173, 'no_lang_code', 'name', 'Universal Production Partners (Czechia)'),
(67168, 56174, 'fr', 'name', 'Direction GƩnƩrale des Entreprises'),
(67169, 56175, 'no_lang_code', 'name', 'Ochrana PodzemnĆ­ch Vod (Czechia)'),
(67170, 56176, 'cs', 'name', 'Svaz Vinařů ČeskĆ© Republiky'),
(67171, 56177, 'de', 'name', 'Christlicher Friedensdienst'),
(67172, 56178, 'en', 'name', 'Wyoming Office of the Governor'),
(67173, 56179, 'en', 'name', 'Ronald McDonald House Charities of Northeastern Ohio'),
(67174, 56180, 'en', 'name', 'TIFR Centre for Interdisciplinary Sciences'),
(67175, 56181, 'en', 'name', 'Designability'),
(67176, 56182, 'no_lang_code', 'name', 'CSS (Switzerland)'),
(67177, 56183, 'no_lang_code', 'name', 'Mikrotechna Praha (Czechia)'),
(67178, 56184, 'cs', 'name', 'ZemědělskĆ© Družstvo Čechtice'),
(67179, 56185, 'no_lang_code', 'name', 'Georeal (Czechia)'),
(67180, 56186, 'no_lang_code', 'name', 'Motorpal (Czechia)'),
(67181, 56187, 'no_lang_code', 'name', 'Goss International (France)'),
(67182, 56188, 'no_lang_code', 'name', 'Composite Components (Czechia)'),
(67183, 56189, 'de', 'name', 'Rehaklinik Bellikon'),
(67184, 56189, 'en', 'name', 'Bellikon Rehabilitation Clinic'),
(67185, 56190, 'es', 'name', 'Universidad UNIACC'),
(67186, 56191, 'de', 'name', 'Zürcher Handelskammer'),
(67187, 56191, 'en', 'name', 'Zurich Chamber of Commerce'),
(67188, 56192, 'cs', 'name', 'ZÔkladní Škola Vachkova'),
(67189, 56193, 'no_lang_code', 'name', 'Agro RubĆ­n (Czechia)'),
(67190, 56194, 'no_lang_code', 'name', 'Teva Pharmaceuticals (United Kingdom)'),
(67191, 56195, 'no_lang_code', 'name', 'ZEZ Praha (Czechia)'),
(67192, 56196, 'no_lang_code', 'name', 'Sela Light (France)'),
(67193, 56197, 'de', 'name', 'Kantonsbibliothek Vadiana St.Gallen'),
(67194, 56198, 'de', 'name', 'Ad Baumgartner Sozialforschung'),
(67195, 56199, 'no_lang_code', 'name', 'Gala (Czechia)'),
(67196, 56200, 'no_lang_code', 'name', 'Atlas Copco (Sweden)'),
(67197, 56201, 'en', 'name', 'Burzynski Research Institute'),
(67198, 56202, 'no_lang_code', 'name', 'Ferarihs'),
(67199, 56203, 'no_lang_code', 'name', 'Patriot (Czechia)'),
(67200, 56204, 'en', 'name', 'Ludwig Cancer Research'),
(67201, 56205, 'cs', 'name', 'TechnologickƩ centrum Pƭsek'),
(67202, 56206, 'no_lang_code', 'name', 'Tubs (United States)'),
(67203, 56207, 'fr', 'name', 'BFA Laboratoires'),
(67204, 56208, 'it', 'name', 'SDN Istituto di Ricerca Diagnostica e Nucleare'),
(67205, 56209, 'it', 'name', 'Archivio di Stato di Firenze'),
(67206, 56210, 'en', 'name', 'Animal Health Institute'),
(67207, 56211, 'no_lang_code', 'name', 'DopravnĆ­ akademie (Czechia)'),
(67208, 56212, 'es', 'name', 'Agencia Canaria de Investigación, Innovación y Sociedad de la Información'),
(67209, 56213, 'de', 'name', 'Generaldirektion Forschung und Innovation'),
(67210, 56213, 'en', 'name', 'Directorate-General for Research and Innovation'),
(67211, 56213, 'fr', 'name', 'Direction GƩnƩrale Recherche et innovation'),
(67212, 56214, 'no_lang_code', 'name', 'Centec (Czechia)'),
(67213, 56215, 'no_lang_code', 'name', 'DT VýhybkÔrna a Strojírna (Czechia)'),
(67214, 56216, 'no_lang_code', 'name', 'Betonika Spol (Czechia)'),
(67215, 56217, 'cs', 'name', 'DětskĆ© Centrum Domeček, Dětský Domov pro Děti do 3 Let'),
(67216, 56217, 'en', 'name', 'Children’s Centre Little House'),
(67217, 56217, 'sk', 'name', 'Dzieckie Centrum Domeczek'),
(67218, 56218, 'no_lang_code', 'name', 'Kovolis Hedvikov (Czechia)'),
(67219, 56219, 'en', 'name', 'Parents Let''s Unite for Kids'),
(67220, 56220, 'de', 'name', 'Sozialamt des Kantons Thurgau'),
(67221, 56221, 'en', 'name', 'European Copper Institute'),
(67222, 56222, 'en', 'name', 'Signe and Ane Gyllenberg Foundation'),
(67223, 56222, 'fi', 'name', 'Signe ja Ane Gyllenbergin sƤƤtiƶ'),
(67224, 56223, 'no_lang_code', 'name', 'Crabtree (United States)'),
(67225, 56224, 'de', 'name', 'KantonsarchƤologie'),
(67226, 56225, 'en', 'name', 'Louisiana Department of Insurance'),
(67227, 56226, 'no_lang_code', 'name', 'Pipelife (Czechia)'),
(67228, 56227, 'fr', 'name', 'Conseil Interprofessionnel du Vin de Bordeaux'),
(67229, 56228, 'no_lang_code', 'name', 'SokolovskƩ Strojƭrny (Czechia)'),
(67230, 56229, 'no_lang_code', 'name', 'Alumistr (Czechia)'),
(67231, 56230, 'no_lang_code', 'name', 'Trs (Czechia)'),
(67232, 56231, 'en', 'name', 'Inha University in Tashkent'),
(67233, 56231, 'uz', 'name', 'Toshkent Shahridagi Inha Universiteti'),
(67234, 56232, 'no_lang_code', 'name', 'Nuvia (Czechia)'),
(67235, 56233, 'en', 'name', 'China Electronic Product Reliability and Environmental Test Institute'),
(67236, 56233, 'zh', 'name', 'å·„äøšå’Œäæ”ęÆåŒ–éƒØē¬¬äŗ”ē”µå­ē ”ē©¶ę‰€'),
(67237, 56234, 'no_lang_code', 'name', 'Hendrix Genetics (Netherlands)'),
(67238, 56235, 'de', 'name', 'Allgemeine Berufsschule Zürich'),
(67239, 56236, 'no_lang_code', 'name', 'Mood International (Czechia)'),
(67240, 56237, 'no_lang_code', 'name', 'Selenium Medical (France)'),
(67241, 56238, 'en', 'name', 'Environmental Investment Centre'),
(67242, 56238, 'et', 'name', 'Keskkonnainvesteeringute Keskus'),
(67243, 56239, 'en', 'name', 'Chinese Culinary Institute'),
(67244, 56240, 'en', 'name', 'Stop! Children''s Cancer of Palm Beach County'),
(67245, 56241, 'cs', 'name', 'MěstskĆ© lesy Doksy'),
(67246, 56242, 'no_lang_code', 'name', 'Masoma (Czechia)'),
(67247, 56243, 'de', 'name', 'Arbeitsgemeinschaft der Wissenschaftlichen Medizinischen Fachgesellschaften e.V.'),
(67248, 56243, 'en', 'name', 'Association of the Scientific Medical Societies'),
(67249, 56244, 'en', 'name', 'Center for Ecological Noosphere Studies'),
(67250, 56245, 'no_lang_code', 'name', 'Abbott (India)'),
(67251, 56246, 'no_lang_code', 'name', 'Ponast (Czechia)'),
(67252, 56247, 'no_lang_code', 'name', 'Blue Ray (Czechia)'),
(67253, 56248, 'no_lang_code', 'name', 'Gretsch-Unitas (Germany)'),
(67254, 56249, 'cs', 'name', 'Centrum PasivnĆ­ho Domu'),
(67255, 56250, 'no_lang_code', 'name', 'Sklostroj Turnov (Czechia)'),
(67256, 56251, 'de', 'name', 'Schweizerischer Ingenieur- und Architektenverein'),
(67257, 56251, 'en', 'name', 'Swiss Society of Engineers and Architects'),
(67258, 56252, 'en', 'name', 'IBM Research - Brazil'),
(67259, 56253, 'no_lang_code', 'name', 'SociĆ©tĆ© d''Ɖtude de l''Environnement (Switzerland)'),
(67260, 56254, 'no_lang_code', 'name', 'AR2i'),
(67261, 56255, 'en', 'name', 'Society for Renaissance Studies'),
(67262, 56256, 'de', 'name', 'Interface Politikstudien Forschung Beratung'),
(67263, 56256, 'no_lang_code', 'name', 'Interface Politikstudien (Switzerland)'),
(67264, 56257, 'no_lang_code', 'name', 'Colosseum (Czechia)'),
(67265, 56258, 'no_lang_code', 'name', 'TNS Servis (Czechia)'),
(67266, 56259, 'fr', 'name', 'Cabinet Gastroenterology La Source-Beaulieu'),
(67267, 56260, 'no_lang_code', 'name', 'KBR (United States)'),
(67268, 56261, 'no_lang_code', 'name', 'SocioFactor (Czechia)'),
(67269, 56262, 'en', 'name', 'New York/New Jersey VA Health Care Network'),
(67270, 56263, 'no_lang_code', 'name', 'E Ink (Taiwan)'),
(67271, 56264, 'en', 'name', 'Martinez VA Medical Center'),
(67272, 56265, 'cs', 'name', 'OleŔnice Dairy'),
(67273, 56266, 'no_lang_code', 'name', 'Payot (France)'),
(67274, 56267, 'cs', 'name', 'ČeskĆ” lĆ©kařskĆ” komora'),
(67275, 56267, 'en', 'name', 'Czech Medical Chamber'),
(67276, 56268, 'no_lang_code', 'name', 'System Science Applications (United States)'),
(67277, 56269, 'fr', 'name', 'Institut et MusƩe Voltaire'),
(67278, 56270, 'no_lang_code', 'name', 'Motran Research (Czechia)'),
(67279, 56271, 'en', 'name', 'Podiatry Foundation of Pittsburgh'),
(67280, 56272, 'no_lang_code', 'name', 'Medicel (Switzerland)'),
(67281, 56273, 'fr', 'name', 'Renatech'),
(67282, 56274, 'cs', 'name', 'Český Svaz OchrĆ”ncÅÆ Přírody VlaÅ”im'),
(67283, 56275, 'no_lang_code', 'name', 'Synthon (Netherlands)'),
(67284, 56276, 'en', 'name', 'Institute of Formulation, Analysis and Quality Control Research'),
(67285, 56277, 'no_lang_code', 'name', 'RSC Spol (Czechia)'),
(67286, 56278, 'no_lang_code', 'name', 'PRO-BIO (Czechia)'),
(67287, 56279, 'no_lang_code', 'name', 'FEV (France)'),
(67288, 56280, 'en', 'name', 'Municipality De Malargue'),
(67289, 56281, 'no_lang_code', 'name', 'Scriptorium'),
(67290, 56282, 'en', 'name', 'World Health Organization Regional Office for the Eastern Mediterranean'),
(67291, 56283, 'en', 'name', 'Promotional Products Education Foundation'),
(67292, 56284, 'fr', 'name', 'PrƩparation aux Examens PrƩalables'),
(67293, 56285, 'no_lang_code', 'name', 'Visolis (United States)'),
(67294, 56286, 'no_lang_code', 'name', 'CI2'),
(67295, 56287, 'en', 'name', 'Swedish Mercantile Marine Foundation'),
(67296, 56287, 'sv', 'name', 'Stiftelsen Sveriges Sjƶmanshus'),
(67297, 56288, 'no_lang_code', 'name', 'Yazaki (United States)'),
(67298, 56289, 'en', 'name', 'St. Joe Community Foundation'),
(67299, 56290, 'fi', 'name', 'Suomen itsenƤisyyden juhlarahasto'),
(67300, 56290, 'no_lang_code', 'name', 'Sitra'),
(67301, 56291, 'en', 'name', 'Institute of Astronomy and Astrophysics, Academia Sinica'),
(67302, 56292, 'sv', 'name', 'LinnƩa och Josef Carlssons Stiftelse'),
(67303, 56293, 'no_lang_code', 'name', 'Sindlar (Czechia)'),
(67304, 56294, 'nl', 'name', 'Promens Care'),
(67305, 56295, 'de', 'name', 'ArchƤologischer Dienst des Kantons Bern'),
(67306, 56296, 'no_lang_code', 'name', 'Synlab Czech (Czechia)'),
(67307, 56297, 'cs', 'name', 'LeoÅ” JanĆ”Äek Foundation, Nadace LeoÅ”e JanĆ”Äka'),
(67308, 56298, 'no_lang_code', 'name', 'Dsd - DostƔl (Czechia)'),
(67309, 56299, 'no_lang_code', 'name', 'Huddy Diamonds (Czechia)'),
(67310, 56300, 'no_lang_code', 'name', 'Gojo (France)'),
(67311, 56301, 'no_lang_code', 'name', 'Prince Medical (France)'),
(67312, 56302, 'en', 'name', 'Rain Forest Research Institute'),
(67313, 56303, 'no_lang_code', 'name', 'ASPK'),
(67314, 56304, 'en', 'name', 'Conaris'),
(67315, 56305, 'no_lang_code', 'name', 'Orlik (Czechia)'),
(67316, 56306, 'no_lang_code', 'name', 'Bellus Health (Switzerland)'),
(67317, 56307, 'no_lang_code', 'name', 'Skat Consulting (Switzerland)'),
(67318, 56308, 'de', 'name', 'Centre de ProcrƩation MƩdicalement AssistƩe'),
(67319, 56308, 'en', 'name', 'Centre for Medically Assisted Procreation'),
(67320, 56309, 'en', 'name', 'The Wild Ramp'),
(67321, 56310, 'no_lang_code', 'name', 'TVD TechnickÔ Výroba (Czechia)'),
(67322, 56311, 'en', 'name', 'Scurlock Foundation'),
(67323, 56312, 'no_lang_code', 'name', 'BASF (China)'),
(67324, 56313, 'en', 'name', 'Hebei Provincial Department of Education'),
(67325, 56313, 'zh', 'name', 'ę²³åŒ—ēœę•™č‚²åŽ…'),
(67326, 56314, 'en', 'name', 'Richard M. Schulze Family Foundation'),
(67327, 56315, 'no_lang_code', 'name', 'ECO Environmental Investments (China)'),
(67328, 56316, 'de', 'name', 'INURA Zürich Institut'),
(67329, 56317, 'en', 'name', 'IndraStra Global'),
(67330, 56318, 'no_lang_code', 'name', 'Slavona (Czechia)'),
(67331, 56319, 'en', 'name', 'William T Morris Foundation'),
(67332, 56320, 'no_lang_code', 'name', 'Inekon Group (Czechia)'),
(67333, 56321, 'no_lang_code', 'name', 'Plasmametal (Czechia)'),
(67334, 56322, 'en', 'name', 'Triangle Community Foundation'),
(67335, 56323, 'el', 'name', '΄πουργείο ĪŸĪ¹ĪŗĪæĪ½ĪæĪ¼ĪÆĪ±Ļ‚, Ανάπτυξης και Ī¤ĪæĻ…ĻĪ¹ĻƒĪ¼ĪæĻ'),
(67336, 56323, 'en', 'name', 'Ministry of Economy, Development and Tourism'),
(67337, 56324, 'en', 'name', 'Universal Health Care Foundation of Connecticut'),
(67338, 56325, 'en', 'name', 'Northwest Regional Development Agency'),
(67339, 56326, 'no_lang_code', 'name', 'Avid (United States)'),
(67340, 56327, 'de', 'name', 'Kantonsarchäologie des Kantons Zürich'),
(67341, 56328, 'no_lang_code', 'name', 'Jeku (Czechia)'),
(67342, 56329, 'no_lang_code', 'name', 'Fosun Pharma (China)'),
(67343, 56330, 'de', 'name', 'Arbeitsstelle Schweiz des RISM, RISM Digital Center'),
(67344, 56330, 'fr', 'name', 'Bureau suisse du RISM'),
(67345, 56330, 'it', 'name', 'Ufficio svizzero RISM'),
(67346, 56331, 'en', 'name', 'Arcadia'),
(67347, 56332, 'no_lang_code', 'name', 'Codep (Czechia)'),
(67348, 56333, 'no_lang_code', 'name', 'Brantner Walter (Czechia)'),
(67349, 56334, 'no_lang_code', 'name', 'Wine cellars KutnĆ” Hora (Czechia)'),
(67350, 56335, 'no_lang_code', 'name', 'Biomedica (Czechia)'),
(67351, 56336, 'no_lang_code', 'name', 'Kerima (Czechia)'),
(67352, 56337, 'no_lang_code', 'name', 'Oblikue Consulting (Spain)'),
(67353, 56338, 'no_lang_code', 'name', 'Medicold (France)'),
(67354, 56339, 'en', 'name', 'Potts Family Foundation'),
(67355, 56340, 'cs', 'name', 'Muzeum jihovýchodnĆ­ Moravy ve ZlĆ­ně'),
(67356, 56341, 'en', 'name', 'Walsall Academy'),
(67357, 56342, 'no_lang_code', 'name', 'NBE Therapeutics (Switzerland)'),
(67358, 56343, 'en', 'name', 'Logansport State Hospital'),
(67359, 56344, 'no_lang_code', 'name', 'Agrostis TrƔvnƭky (Czechia)'),
(67360, 56345, 'no_lang_code', 'name', 'Help Forest (Czechia)'),
(67361, 56346, 'en', 'name', 'World Health Organization - Zimbabwe'),
(67362, 56347, 'en', 'name', 'Yamaguchi Endocrine Research Foundation'),
(67363, 56348, 'no_lang_code', 'name', 'Emg ZlĆ­n (Czechia)'),
(67364, 56349, 'en', 'name', 'Exploration Place'),
(67365, 56350, 'en', 'name', 'Russian Humanitarian Foundation'),
(67366, 56350, 'ru', 'name', 'Российский Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ ФонГ'),
(67367, 56351, 'az', 'name', 'Coğrafiya İnstitutu'),
(67368, 56351, 'en', 'name', 'Institute of Geography'),
(67369, 56352, 'en', 'name', 'WonKwang Health Science University'),
(67370, 56353, 'no_lang_code', 'name', 'AutoCont (Czechia)'),
(67371, 56354, 'en', 'name', '1Globe Health Institute'),
(67372, 56355, 'da', 'name', 'Trigon Fonden'),
(67373, 56356, 'de', 'name', 'Friedrich-Wilhelm-Bessel-Institut Forschungsgesellschaft'),
(67374, 56357, 'fr', 'name', 'Hospital Neuchâtel'),
(67375, 56358, 'no_lang_code', 'name', 'ADR-AC (Switzerland)'),
(67376, 56359, 'no_lang_code', 'name', 'Artisys (Czechia)'),
(67377, 56360, 'de', 'name', 'Schweizerische Akademie der Pharmazeutische Wissenschaften'),
(67378, 56360, 'en', 'name', 'Swiss Academy of Pharmaceutical Sciences'),
(67379, 56361, 'en', 'name', 'Prayers from Maria'),
(67380, 56362, 'no_lang_code', 'name', 'HolĆ­k International (Czechia)'),
(67381, 56363, 'no_lang_code', 'name', 'Hottinger Baldwin Messtechnik (Germany)'),
(67382, 56364, 'no_lang_code', 'name', 'Hanka Mochov (Czechia)'),
(67383, 56365, 'no_lang_code', 'name', 'FaF Top-Color (Czechia)'),
(67384, 56366, 'en', 'name', 'Scaife Foundations'),
(67385, 56367, 'no_lang_code', 'name', 'Kabelovna Kabex (Czechia)'),
(67386, 56368, 'no_lang_code', 'name', 'E Ink (South Korea)'),
(67387, 56369, 'no_lang_code', 'name', 'Equiservices Publishing (United States)'),
(67388, 56370, 'no_lang_code', 'name', 'Scimetrica (Switzerland)'),
(67389, 56371, 'sv', 'name', 'Stiftelsen Kronprinsessan Margaretas ArbetsnƤmnd fƶr Synskadade'),
(67390, 56372, 'no_lang_code', 'name', 'UCB Pharma (France)'),
(67391, 56373, 'no_lang_code', 'name', 'Stavoprojekta (Czechia)'),
(67392, 56374, 'en', 'name', 'Presbyterian Health Foundation'),
(67393, 56375, 'en', 'name', 'Kanagawa Environmental Research Center'),
(67394, 56375, 'ja', 'name', 'ē„žå„ˆå·ēœŒē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(67395, 56376, 'no_lang_code', 'name', 'NanoTrade (Czechia)'),
(67396, 56377, 'no_lang_code', 'name', 'SklÔřský Ústav Hradec KrĆ”lovĆ© (Czechia)'),
(67397, 56378, 'no_lang_code', 'name', 'AFRY (Czechia)'),
(67398, 56379, 'no_lang_code', 'name', 'AG Info (Czechia)'),
(67399, 56380, 'en', 'name', 'Azm & Saade Association'),
(67400, 56381, 'no_lang_code', 'name', 'Pardam (Czechia)'),
(67401, 56382, 'en', 'name', 'Pacific Alzheimer Research Foundation'),
(67402, 56383, 'no_lang_code', 'name', 'Addgene'),
(67403, 56384, 'en', 'name', 'New Jersey State Office of the Governor'),
(67404, 56385, 'no_lang_code', 'name', 'RD Rýmařov (Czechia)'),
(67405, 56386, 'de', 'name', 'Vorarlberg Museum'),
(67406, 56387, 'no_lang_code', 'name', 'BENZ-HMB CZECH (Czechia)'),
(67407, 56388, 'en', 'name', 'Pittsburgh Child Guidance Foundation'),
(67408, 56389, 'en', 'name', 'Horn Canna Farm'),
(67409, 56390, 'de', 'name', 'Museum zu Allerheiligen'),
(67410, 56391, 'en', 'name', 'Institute of Medicinal Molecular Design'),
(67411, 56391, 'ja', 'name', 'åŒ»č–¬åˆ†å­čØ­čØˆē ”ē©¶ę‰€'),
(67412, 56392, 'de', 'name', 'Fondation Pierre du Bois'),
(67413, 56392, 'en', 'name', 'Pierre du Bois Foundation'),
(67414, 56393, 'no_lang_code', 'name', 'Harry Saul Minnow Farm (United States)'),
(67415, 56394, 'no_lang_code', 'name', 'Novo Nordisk (Switzerland)'),
(67416, 56395, 'no_lang_code', 'name', 'Quadient (United Kingdom)'),
(67417, 56396, 'no_lang_code', 'name', 'Výrobně ObchodnĆ­ Družstvo Zdislavice (Czechia)'),
(67418, 56397, 'no_lang_code', 'name', 'Milacron (United States)'),
(67419, 56398, 'no_lang_code', 'name', 'ClearSign Combustion (United States)'),
(67420, 56399, 'no_lang_code', 'name', 'Dai-ichi Life Insurance (United States)'),
(67421, 56400, 'en', 'name', 'Joseph Drown Foundation'),
(67422, 56401, 'no_lang_code', 'name', 'Nyklƭček (Czechia)'),
(67423, 56402, 'en', 'name', 'Robert and Janice McNair Foundation'),
(67424, 56403, 'no_lang_code', 'name', 'X Therma'),
(67425, 56404, 'fr', 'name', 'Institut Technique de l''Aviculture'),
(67426, 56405, 'no_lang_code', 'name', 'Illuminate Group (Australia)'),
(67427, 56406, 'no_lang_code', 'name', 'Mechanical Design (Czechia)'),
(67428, 56407, 'en', 'name', 'Opportunity Link'),
(67429, 56408, 'no_lang_code', 'name', 'AG COM (Czechia)'),
(67430, 56409, 'en', 'name', 'Experimental Station'),
(67431, 56410, 'en', 'name', 'A*STAR Joint Council Office'),
(67432, 56411, 'de', 'name', 'Centrum für Hochschulentwicklung'),
(67433, 56411, 'en', 'name', 'Centre for Higher Education'),
(67434, 56412, 'no_lang_code', 'name', 'Phonexia (Czechia)'),
(67435, 56413, 'en', 'name', 'Sasakawa Memorial Health Foundation'),
(67436, 56413, 'ja', 'name', 'ē¬¹å·čØ˜åæµäæå„å”åŠ›č²”å›£'),
(67437, 56414, 'en', 'name', 'Korea Institute of Maritime and Fisheries Technology'),
(67438, 56415, 'cs', 'name', 'ČeskÔ Unie Sportu'),
(67439, 56416, 'no_lang_code', 'name', 'AbbVie (Netherlands)'),
(67440, 56417, 'no_lang_code', 'name', 'Nypro (Ireland)'),
(67441, 56418, 'no_lang_code', 'name', 'G Mar Plus (Czechia)'),
(67442, 56419, 'en', 'name', 'Finnish Brain Foundation'),
(67443, 56419, 'fi', 'name', 'Suomen AivosƤƤtiƶ'),
(67444, 56420, 'de', 'name', 'Kollegium Spiritus Sanctus Brig'),
(67445, 56421, 'no_lang_code', 'name', 'Gascontrol Plast (Czechia)'),
(67446, 56422, 'en', 'name', 'College of the Muscogee Nation'),
(67447, 56423, 'en', 'name', 'Korea Meteorological Institute'),
(67448, 56424, 'no_lang_code', 'name', 'Lescus Cetkovice (Czechia)'),
(67449, 56425, 'en', 'name', 'Dominion Astrophysical Observatory'),
(67450, 56426, 'no_lang_code', 'name', 'CAD Instruments (France)'),
(67451, 56427, 'la', 'name', 'Foederatio Medicorum Helveticorum'),
(67452, 56428, 'cs', 'name', 'SpolečnĆ” Vize'),
(67453, 56429, 'no_lang_code', 'name', 'Bayer (Switzerland)'),
(67454, 56430, 'en', 'name', 'GlyTech'),
(67455, 56430, 'ja', 'name', 'ē³–éŽ–å·„å­¦ē ”ē©¶ę‰€ć«'),
(67456, 56431, 'de', 'name', 'Mandat International'),
(67457, 56432, 'en', 'name', 'Finnish Foundation of Veterinary Research'),
(67458, 56432, 'fi', 'name', 'Suomen elƤinlƤƤketieteen sƤƤtiƶ'),
(67459, 56433, 'en', 'name', 'State Veterinary Administration'),
(67460, 56434, 'en', 'name', 'Computational Materials Science Initiative'),
(67461, 56435, 'en', 'name', 'Institute for Geological and Geochemical Research'),
(67462, 56435, 'hu', 'name', 'Fƶldtani Ʃs GeokƩmiai IntƩzet'),
(67463, 56436, 'sv', 'name', 'Stiftelsen Professor Lars Erik Gelins Minnesfond'),
(67464, 56437, 'en', 'name', 'Shepherd Foundation'),
(67465, 56438, 'en', 'name', 'Institute for Biotechnology and Medicine Industry'),
(67466, 56439, 'no_lang_code', 'name', 'VKV Praha (Czechia)'),
(67467, 56440, 'no_lang_code', 'name', 'BIC (United States)'),
(67468, 56441, 'no_lang_code', 'name', 'Aveni (France)'),
(67469, 56442, 'en', 'name', 'Bruce W. Carter VA Medical Center'),
(67470, 56443, 'en', 'name', 'Ivey Foundation'),
(67471, 56444, 'cs', 'name', 'ZemědělskĆ© Družstvo JesenĆ­k'),
(67472, 56445, 'en', 'name', 'Local Food Hub'),
(67473, 56446, 'en', 'name', 'Virtu Public Affairs'),
(67474, 56447, 'en', 'name', 'Muscular Dystrophy Ireland'),
(67475, 56448, 'no_lang_code', 'name', 'MJ Group (India)'),
(67476, 56449, 'no_lang_code', 'name', 'Colorlak (Czechia)'),
(67477, 56450, 'no_lang_code', 'name', 'Polycase (Czechia)'),
(67478, 56451, 'no_lang_code', 'name', 'Europastry (Spain)'),
(67479, 56452, 'en', 'name', 'Springboard Foundation'),
(67480, 56453, 'cs', 'name', 'ÚstřednĆ­ kontrolnĆ­ a zkuÅ”ebnĆ­ Ćŗstav zemědělský'),
(67481, 56453, 'en', 'name', 'Central Institute for Supervising and Testing in Agriculture'),
(67482, 56454, 'en', 'name', 'Scan Design Foundation'),
(67483, 56455, 'no_lang_code', 'name', 'Photonic Research Systems (United Kingdom)'),
(67484, 56456, 'no_lang_code', 'name', 'Krill (Czechia)'),
(67485, 56457, 'no_lang_code', 'name', 'RealNetworks (United States)'),
(67486, 56458, 'no_lang_code', 'name', 'CNH Industrial (Czechia)'),
(67487, 56459, 'en', 'name', 'VA Capitol Health Care Network'),
(67488, 56460, 'en', 'name', 'Siberian Institute of Plant Physiology and Biochemistry'),
(67489, 56460, 'ru', 'name', 'Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии Šø биохимии растений Š”Šž Š ŠŠ'),
(67490, 56461, 'en', 'name', 'Prime Minister''s Office Finland'),
(67491, 56461, 'fi', 'name', 'StatsrƄdets Kansli'),
(67492, 56461, 'sv', 'name', 'Valtioneuvoston Kanslia'),
(67493, 56462, 'en', 'name', 'Cheorwon Plasma Research Institute'),
(67494, 56463, 'no_lang_code', 'name', 'Agrokomplex Ohře (Czechia)'),
(67495, 56464, 'no_lang_code', 'name', 'Kuraray (Germany)'),
(67496, 56465, 'no_lang_code', 'name', 'Drolshammer Strategy and Law (Switzerland)'),
(67497, 56466, 'no_lang_code', 'name', 'Clasic (Czechia)'),
(67498, 56467, 'no_lang_code', 'name', 'Ekohydrogeo Žitný (Czechia)'),
(67499, 56468, 'de', 'name', 'KVB Institut für Konstruktion und Verbundbauweisen'),
(67500, 56469, 'de', 'name', 'Technische Fachschule Bern'),
(67501, 56470, 'no_lang_code', 'name', 'Institut Esthederm (France)'),
(67502, 56471, 'no_lang_code', 'name', 'SLB MƩdical (France)'),
(67503, 56472, 'en', 'name', 'Basel Institute on Governance'),
(67504, 56473, 'no_lang_code', 'name', 'Elektro-System-Technik (Slovakia)'),
(67505, 56474, 'en', 'name', 'Live Well Colorado'),
(67506, 56475, 'en', 'name', 'R Baby Foundation'),
(67507, 56476, 'en', 'name', 'Kerala Institute for Research, Training and Development Studies of Scheduled Castes and Tribes'),
(67508, 56477, 'no_lang_code', 'name', 'Vischer (Switzerland)'),
(67509, 56478, 'no_lang_code', 'name', 'EG Expert (Czechia)'),
(67510, 56479, 'en', 'name', 'Forest Research Institute'),
(67511, 56479, 'hu', 'name', 'ErdƩszeti TudomƔnyos IntƩzet'),
(67512, 56480, 'sv', 'name', 'Stiftelsen Solstickan'),
(67513, 56481, 'no_lang_code', 'name', 'Pi (United Kingdom)'),
(67514, 56482, 'en', 'name', 'William Caspar Graustein Memorial Fund'),
(67515, 56483, 'no_lang_code', 'name', 'Cottage Systems (United States)'),
(67516, 56484, 'no_lang_code', 'name', 'Com-Sys Trade (Czechia)'),
(67517, 56485, 'en', 'name', 'VeDeCoM Institute'),
(67518, 56486, 'no_lang_code', 'name', 'Eko-Kom (Czechia)'),
(67519, 56487, 'no_lang_code', 'name', 'Embody (France)'),
(67520, 56488, 'no_lang_code', 'name', 'Chemcosport (Czechia)'),
(67521, 56489, 'no_lang_code', 'name', 'Texas Instruments (India)'),
(67522, 56490, 'en', 'name', 'Thomas Foundation'),
(67523, 56491, 'no_lang_code', 'name', 'Sapphire Research & Electronics (United Kingdom)'),
(67524, 56492, 'fr', 'name', 'Affidea'),
(67525, 56493, 'no_lang_code', 'name', 'Porfix (Czechia)'),
(67526, 56494, 'en', 'name', 'L.V. Gromashevsky Institute of Epidemiology and Infectious Diseases of the National Academy of Medical Sciences of Ukraine'),
(67527, 56494, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ епіГеміології та інфекційних хвороб Š›.Š’. Š“Ń€Š¾Š¼Š°ŃˆŠµŠ²ŃŃŒŠ½Š¾Š³Š¾ŠŠŠœŠ України'),
(67528, 56495, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (Switzerland)'),
(67529, 56496, 'no_lang_code', 'name', 'NMS Market Research (Czechia)'),
(67530, 56497, 'no_lang_code', 'name', 'Geodézie ČS (Czechia)'),
(67531, 56498, 'no_lang_code', 'name', 'PAC (France)'),
(67532, 56499, 'no_lang_code', 'name', 'Organa (Czechia)'),
(67533, 56500, 'no_lang_code', 'name', 'AGCO (United Kingdom)'),
(67534, 56501, 'en', 'name', 'Belgorod State University of Arts and Culture'),
(67535, 56501, 'ru', 'name', 'БелгороГский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² Šø ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(67536, 56502, 'cs', 'name', 'KlinickƩ Centrum ISCARE'),
(67537, 56502, 'no_lang_code', 'name', 'Iscare I.V.F'),
(67538, 56503, 'en', 'name', 'Institute of Surgery named after A. V. Vishnevskogo'),
(67539, 56504, 'no_lang_code', 'name', 'Thalgo (France)'),
(67540, 56505, 'en', 'name', 'Poultry CRC'),
(67541, 56506, 'en', 'name', 'Sosland Foundation'),
(67542, 56507, 'en', 'name', 'Central Research Institute for Jute and Allied Fibres'),
(67543, 56508, 'en', 'name', 'St. Petersburg Institute of Bioregulation and Gerontology'),
(67544, 56508, 'ru', 'name', 'ŠšŠ›Š˜ŠŠ˜ŠšŠ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢Š Š‘Š˜ŠžŠ Š•Š“Š£Š›ŠÆŠ¦Š˜Š˜ И Š“Š•Š ŠžŠŠ¢ŠžŠ›ŠžŠ“Š˜Š˜'),
(67545, 56509, 'sv', 'name', 'Neurofƶrbundet'),
(67546, 56510, 'no_lang_code', 'name', 'ZaklƔdƔnƭ Staveb (Czechia)'),
(67547, 56511, 'no_lang_code', 'name', 'Caterpillar (Switzerland)'),
(67548, 56512, 'no_lang_code', 'name', 'TÜV Nord (Czechia)'),
(67549, 56513, 'en', 'name', 'Gagarin Research and Test Cosmonaut Training Center'),
(67550, 56513, 'ru', 'name', 'Центр поГготовки космонавтов имени Š®. А. Гагарина'),
(67551, 56514, 'en', 'name', 'Institute of Physics, Academia Sinica'),
(67552, 56514, 'zh', 'name', '中央研究院物理研究所'),
(67553, 56515, 'no_lang_code', 'name', 'American Solar (United States)'),
(67554, 56516, 'no_lang_code', 'name', 'LesoŔkolky (Czechia)'),
(67555, 56517, 'de', 'name', 'Grundwasser-Zentrum'),
(67556, 56517, 'en', 'name', 'Groundwater Center'),
(67557, 56518, 'no_lang_code', 'name', 'Sanofi (Switzerland)'),
(67558, 56519, 'no_lang_code', 'name', 'Indet Safety Systems (Czechia)'),
(67559, 56520, 'en', 'name', 'Southeastern Brain Tumor Foundation'),
(67560, 56521, 'en', 'name', 'Tropical Forest Research Institute'),
(67561, 56522, 'en', 'name', 'Singapore Institute of Technology'),
(67562, 56523, 'en', 'name', 'Variable Energy Cyclotron Centre'),
(67563, 56524, 'en', 'name', 'Vascular Birthmarks Foundation'),
(67564, 56525, 'cs', 'name', 'ČeskomoravskÔ komoditní burza Kladno'),
(67565, 56525, 'en', 'name', 'Czech Moravian Commodity Exchange Kladno'),
(67566, 56526, 'it', 'name', 'Repubblica e Cantone Ticino'),
(67567, 56527, 'en', 'name', 'Virginia-Carolinas Peanut Promotions'),
(67568, 56528, 'no_lang_code', 'name', 'ADA AkustickĆ” Emise (Czechia)'),
(67569, 56529, 'no_lang_code', 'name', 'PZP Komplet (Czechia)'),
(67570, 56530, 'de', 'name', 'Forel Klinik'),
(67571, 56531, 'en', 'name', 'Korean Society of Radiology'),
(67572, 56532, 'de', 'name', 'Mintaka Fondation Pour la Recherche Medicale'),
(67573, 56532, 'no_lang_code', 'name', 'Mintaka Foundation for Medical Research'),
(67574, 56533, 'en', 'name', 'Rob and Bessie Welder Wildlife Foundation'),
(67575, 56534, 'no_lang_code', 'name', 'Winetech (South Africa)'),
(67576, 56535, 'no_lang_code', 'name', 'L.K. Engineering (Czechia)'),
(67577, 56536, 'no_lang_code', 'name', 'Nortech (Czechia)'),
(67578, 56537, 'en', 'name', 'Alpinia Institute'),
(67579, 56538, 'en', 'name', 'Abbey of the Holy Trinity'),
(67580, 56539, 'no_lang_code', 'name', 'Semo (Czechia)'),
(67581, 56540, 'no_lang_code', 'name', 'Artinel (Czechia)'),
(67582, 56541, 'no_lang_code', 'name', 'SMT (India)'),
(67583, 56542, 'en', 'name', 'Laboratoire Phytoceutic'),
(67584, 56543, 'no_lang_code', 'name', 'Pitney Bowes (France)'),
(67585, 56544, 'no_lang_code', 'name', 'Phoenix Air (Czechia)'),
(67586, 56545, 'no_lang_code', 'name', 'KlatovskĆ© RybÔřstvĆ­ (Czechia)'),
(67587, 56546, 'no_lang_code', 'name', 'Bentglass (Czechia)'),
(67588, 56547, 'no_lang_code', 'name', 'VodnĆ­ Cesty (Czechia)'),
(67589, 56548, 'no_lang_code', 'name', 'Quadient (Netherlands)'),
(67590, 56549, 'en', 'name', 'Human Organ Project'),
(67591, 56550, 'en', 'name', 'Sunbeam Foundation'),
(67592, 56551, 'cs', 'name', 'SpektroskopickĆ” Společnost Jana Marka Marci'),
(67593, 56552, 'no_lang_code', 'name', 'Asistenčnƭ Centrum (Czechia)'),
(67594, 56553, 'en', 'name', 'Woods Fund of Chicago'),
(67595, 56554, 'de', 'name', 'Departementssekretariat Schul- und Sportdepartement'),
(67596, 56555, 'nl', 'name', 'Koninklijke Boskalis Westminster N.V.'),
(67597, 56555, 'no_lang_code', 'name', 'Boskalis (Netherlands)'),
(67598, 56556, 'de', 'name', 'Hartmann Dreyer'),
(67599, 56557, 'cs', 'name', 'Asociace hotelů a restaurací České republiky'),
(67600, 56557, 'en', 'name', 'Czech Association of Hotels and Restaurants'),
(67601, 56558, 'no_lang_code', 'name', 'Inflex (Czechia)'),
(67602, 56559, 'de', 'name', 'NZZ am Sonntag'),
(67603, 56560, 'no_lang_code', 'name', 'AZS 98 (Czechia)'),
(67604, 56561, 'no_lang_code', 'name', 'TESCO SW (Czechia)'),
(67605, 56562, 'no_lang_code', 'name', 'IQLANDIA'),
(67606, 56563, 'no_lang_code', 'name', 'Deltamedics (France)'),
(67607, 56564, 'de', 'name', 'Jung-Stiftung für Wissenschaft und Forschung'),
(67608, 56564, 'en', 'name', 'Jung Foundation for Science and Research'),
(67609, 56565, 'no_lang_code', 'name', 'Skoda Machine Tool (Czechia)'),
(67610, 56566, 'en', 'name', 'Winds of Peace Foundation'),
(67611, 56567, 'en', 'name', 'Austen BioInnovation Institute in Akron'),
(67612, 56568, 'no_lang_code', 'name', 'Federal Mogul (Belgium)'),
(67613, 56569, 'no_lang_code', 'name', 'Lammb Systems (Czechia)'),
(67614, 56570, 'no_lang_code', 'name', 'DvořÔk (Czechia)'),
(67615, 56571, 'no_lang_code', 'name', 'Tatsuno Europe (Czechia)'),
(67616, 56572, 'en', 'name', 'State and Federal Contractors Water Agency'),
(67617, 56573, 'en', 'name', 'St David''s Medical Foundation'),
(67618, 56574, 'no_lang_code', 'name', 'Prodeco (Czechia)'),
(67619, 56575, 'en', 'name', 'Team Sanfilippo Foundation'),
(67620, 56576, 'en', 'name', 'Northwell Health Orthopaedic Institute'),
(67621, 56577, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š·Š°Š²Š°Ń€ŃŠ²Š°Š½Šµ'),
(67622, 56577, 'no_lang_code', 'name', 'Institute Po Zavaryavane (Bulgaria)'),
(67623, 56578, 'en', 'name', 'International Union for Pure and Applied Biophysics'),
(67624, 56579, 'en', 'name', 'VA Rocky Mountain Network'),
(67625, 56580, 'en', 'name', 'MRC Centre for Regenerative Medicine'),
(67626, 56581, 'no_lang_code', 'name', 'Regional Museum of K. A. Polanek'),
(67627, 56582, 'cs', 'name', 'Svaz ChovatelÅÆ OvcĆ­ a Koz'),
(67628, 56583, 'no_lang_code', 'name', 'Sequenom (United Kingdom)'),
(67629, 56584, 'en', 'name', 'Sustainable Development Technology Canada'),
(67630, 56584, 'fr', 'name', 'Technologies du DƩveloppement Durable du Canada'),
(67631, 56585, 'no_lang_code', 'name', 'Tea Hawaii (United States)'),
(67632, 56586, 'no_lang_code', 'name', 'Florida Maxima (United States)'),
(67633, 56587, 'no_lang_code', 'name', 'Hill Manufacturing (United States)'),
(67634, 56588, 'de', 'name', 'Regionalspital Emmental'),
(67635, 56589, 'no_lang_code', 'name', 'ZVVZ (Czechia)'),
(67636, 56590, 'en', 'name', 'Helmholtz Moscow Research Institute of Eye Diseases'),
(67637, 56590, 'ru', 'name', 'Московский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ глазных болезней им. Š“ŠµŠ»ŃŒŠ¼Š³Š¾Š»ŃŒŃ†Š°'),
(67638, 56591, 'no_lang_code', 'name', 'Retap (Czechia)'),
(67639, 56592, 'en', 'name', 'Tianjin People''s Government'),
(67640, 56592, 'zh', 'name', 'å¤©ę“„åø‚äŗŗę°‘ę”æåŗœ'),
(67641, 56593, 'en', 'name', 'Czech Society of Biomechanics'),
(67642, 56594, 'no_lang_code', 'name', 'DSM (France)'),
(67643, 56595, 'no_lang_code', 'name', 'Latitude Engineering (United States)'),
(67644, 56596, 'no_lang_code', 'name', 'MydlÔřka (Czechia)'),
(67645, 56597, 'no_lang_code', 'name', 'IRISNDT (United States)'),
(67646, 56598, 'no_lang_code', 'name', 'NutriVet (Czechia)'),
(67647, 56599, 'no_lang_code', 'name', 'Hazel Technologies (United States)'),
(67648, 56600, 'no_lang_code', 'name', 'Želivka (Czechia)'),
(67649, 56601, 'no_lang_code', 'name', 'Vamet (Czechia)'),
(67650, 56602, 'en', 'name', 'National Research Institute of Cultural Heritage'),
(67651, 56602, 'ko', 'name', 'źµ­ė¦½ė¬øķ™”ģž¬ģ—°źµ¬ģ†Œ'),
(67652, 56603, 'es', 'name', 'Universidad Latinoamericana'),
(67653, 56604, 'cs', 'name', 'ZdravotnickÔ ZÔchrannÔ Služba KrÔlovéhradeckého Kraje'),
(67654, 56605, 'no_lang_code', 'name', 'Woodward (United States)'),
(67655, 56606, 'no_lang_code', 'name', 'D. Western Therapeutics Institute (Japan)'),
(67656, 56607, 'no_lang_code', 'name', 'Agenda (Czechia)'),
(67657, 56608, 'no_lang_code', 'name', 'Zeelandia (Czechia)'),
(67658, 56609, 'en', 'name', 'Organ Transplantation and Immunology Institute'),
(67659, 56609, 'it', 'name', 'Istituto Trapianti d''Organo e Immunocitologia'),
(67660, 56610, 'no_lang_code', 'name', 'NaturaServis (Czechia)'),
(67661, 56611, 'no_lang_code', 'name', 'EGÚ Praha Engineering (Czechia)'),
(67662, 56612, 'no_lang_code', 'name', 'Rataj (Czechia)'),
(67663, 56613, 'no_lang_code', 'name', 'ETK KolĆ­n (Czechia)'),
(67664, 56614, 'sv', 'name', 'Lundbergsstiftelserna'),
(67665, 56615, 'en', 'name', 'Wildlife Forever'),
(67666, 56616, 'en', 'name', 'INstrategy'),
(67667, 56617, 'no_lang_code', 'name', 'Schlumberger (British Virgin Islands)'),
(67668, 56618, 'en', 'name', 'Life Science Institute'),
(67669, 56619, 'no_lang_code', 'name', 'Koenig & Bauer (Czechia)'),
(67670, 56620, 'no_lang_code', 'name', 'Holzbecher (Czechia)'),
(67671, 56621, 'no_lang_code', 'name', 'RybnĆ­kÔřstvĆ­ Pohořelice'),
(67672, 56622, 'en', 'name', 'National Science and Technology Medals Foundation'),
(67673, 56623, 'no_lang_code', 'name', 'Honeywell (France)'),
(67674, 56624, 'no_lang_code', 'name', 'Microscan Service (Switzerland)'),
(67675, 56625, 'no_lang_code', 'name', 'Bio-Rad (France)'),
(67676, 56626, 'cs', 'name', 'Společnost pro Veřejnou Dopravu');
INSERT INTO `ror_settings` VALUES
(67677, 56627, 'no_lang_code', 'name', 'Honeywell (Netherlands)'),
(67678, 56628, 'cs', 'name', 'Centrum pro rozvoj pĆ©Äe o duÅ”evnĆ­ zdravĆ­'),
(67679, 56628, 'en', 'name', 'Centre for Mental Health Care Development'),
(67680, 56629, 'en', 'name', 'Robert Bowne Foundation'),
(67681, 56630, 'no_lang_code', 'name', 'AmerisourceBergen (United States)'),
(67682, 56631, 'no_lang_code', 'name', 'Sady (Czechia)'),
(67683, 56632, 'de', 'name', 'Schweizerische Vereinigung für Landesplanung'),
(67684, 56633, 'en', 'name', 'Office of Infectious Diseases'),
(67685, 56634, 'no_lang_code', 'name', 'Ana Laboratoire'),
(67686, 56635, 'cs', 'name', 'Medico'),
(67687, 56636, 'no_lang_code', 'name', 'Chemispol (Czechia)'),
(67688, 56637, 'no_lang_code', 'name', 'Pragis (Czechia)'),
(67689, 56638, 'no_lang_code', 'name', 'PlzeňskĆ© MěstskĆ© DopravnĆ­ Podniky (Czechia)'),
(67690, 56639, 'no_lang_code', 'name', 'Chovservis (Czechia)'),
(67691, 56640, 'no_lang_code', 'name', 'Factorio Solutions (Czechia)'),
(67692, 56641, 'no_lang_code', 'name', 'Lukrom (Czechia)'),
(67693, 56642, 'no_lang_code', 'name', 'Siga (Czechia)'),
(67694, 56643, 'cs', 'name', 'StřednĆ­ PrÅÆmyslovĆ” Å”kola a ObchodnĆ­ Akademie Uherský Brod'),
(67695, 56644, 'en', 'name', 'Mid Ohio Foodbank'),
(67696, 56645, 'no_lang_code', 'name', 'Hydrostatika (Czechia)'),
(67697, 56646, 'cs', 'name', 'ČeskomoravskÔ elektrotechnickÔ asociace'),
(67698, 56646, 'en', 'name', 'Electrotechnical Association of the Czech Republic'),
(67699, 56647, 'en', 'name', 'Postgraduate Center for Mental Health'),
(67700, 56648, 'fr', 'name', 'Archives Cantonales Vaudoises'),
(67701, 56649, 'de', 'name', 'Medizin Campus Bodensee'),
(67702, 56650, 'no_lang_code', 'name', 'SC & C (Czechia)'),
(67703, 56651, 'no_lang_code', 'name', 'Valmet (Sweden)'),
(67704, 56652, 'en', 'name', 'Wuxi Municipal Bureau on Science and Technology'),
(67705, 56652, 'zh', 'name', 'ę— é””åø‚ē§‘ęŠ€å±€'),
(67706, 56653, 'no_lang_code', 'name', 'INTOS (Czechia)'),
(67707, 56654, 'no_lang_code', 'name', 'Energostav (Czechia)'),
(67708, 56655, 'no_lang_code', 'name', 'Brazzale Moravia (Czechia)'),
(67709, 56656, 'en', 'name', 'State Key Laboratory of Plant Genomics'),
(67710, 56656, 'zh', 'name', 'ę¤ē‰©åŸŗå› ē»„å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(67711, 56657, 'no_lang_code', 'name', 'Dopravoprojekt (Czechia)'),
(67712, 56658, 'no_lang_code', 'name', 'Penguin Random House (United States)'),
(67713, 56659, 'no_lang_code', 'name', 'Northrop Grumman (France)'),
(67714, 56660, 'en', 'name', 'Arplay Medical'),
(67715, 56661, 'no_lang_code', 'name', 'OZM Research (Czechia)'),
(67716, 56662, 'en', 'name', 'Finnish Foundation for Cardiovascular Research'),
(67717, 56662, 'fi', 'name', 'SydƤntutkimussƤƤtiƶ'),
(67718, 56663, 'de', 'name', 'Biologie Labor'),
(67719, 56664, 'en', 'name', 'Frisbee Foundation'),
(67720, 56665, 'no_lang_code', 'name', 'Crea Hydro&Energy (Czechia)'),
(67721, 56666, 'no_lang_code', 'name', 'Vesa Velhartice (Czechia)'),
(67722, 56667, 'en', 'name', 'Sino-Danish Centre for Education and Research'),
(67723, 56667, 'zh', 'name', 'äø­å›½äø¹éŗ¦ē§‘ē ”ę•™č‚²äø­åæƒ'),
(67724, 56668, 'sv', 'name', 'Alfred Ɩsterlunds Stiftelse'),
(67725, 56669, 'en', 'name', 'Research Institute of Synthetic Fiber with the Pilot Plant'),
(67726, 56669, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾ - ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ синтетического волокна с ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¼ завоГом'),
(67727, 56670, 'no_lang_code', 'name', 'Fujirebio (Czechia)'),
(67728, 56671, 'en', 'name', 'Rockfall Foundation'),
(67729, 56672, 'en', 'name', 'Community EnCompass'),
(67730, 56673, 'de', 'name', 'Fondazione Ettore e Valeria Rossi'),
(67731, 56673, 'en', 'name', 'Ettore and Valeria Rossi Foundation'),
(67732, 56674, 'no_lang_code', 'name', 'Kessl (Czechia)'),
(67733, 56675, 'no_lang_code', 'name', 'F.P.S. Arco (Czechia)'),
(67734, 56676, 'en', 'name', 'International Association for the Study of Dreams'),
(67735, 56677, 'no_lang_code', 'name', 'Metroprojekt Praha (Czechia)'),
(67736, 56678, 'en', 'name', 'The Research Institute for Fertilizers and Insectofungicides'),
(67737, 56678, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠ“Š¾Š±Ń€ŠµŠ½ŠøŠ¹ Šø ŠøŠ½ŃŠµŠŗŃ‚Š¾Ń„ŃƒŠ½Š³ŠøŃ†ŠøŠ“Š¾Š² имени ŠÆ. Š’. Дамойлова'),
(67738, 56679, 'no_lang_code', 'name', 'Geo Vision (Czechia)'),
(67739, 56680, 'no_lang_code', 'name', 'Licolor (Czechia)'),
(67740, 56681, 'fr', 'name', 'Institut Technique de DƩveloppement des Produits de la Mer'),
(67741, 56682, 'en', 'name', 'Bunge & Born Foundation'),
(67742, 56683, 'en', 'name', 'Institute for Rural Engineering'),
(67743, 56683, 'ja', 'name', 'č¾²ę‘å·„å­¦ē ”ē©¶éƒØé–€'),
(67744, 56684, 'no_lang_code', 'name', 'Medical Process (France)'),
(67745, 56685, 'en', 'name', 'NestlƩ Foundation'),
(67746, 56686, 'no_lang_code', 'name', 'HOBAS (Czechia)'),
(67747, 56687, 'en', 'name', 'Laboratory for Social and Neural Systems Research'),
(67748, 56688, 'en', 'name', 'National Disaster Management Research Institute'),
(67749, 56688, 'ko', 'name', 'ģ „źµ­ ģž¬ė‚œ ꓀리 ģ—°źµ¬ģ†Œ'),
(67750, 56689, 'de', 'name', 'Engeriedspital'),
(67751, 56690, 'no_lang_code', 'name', 'TriFoil Imaging (United States)'),
(67752, 56691, 'no_lang_code', 'name', 'JabloneckƔ NƔstrojƔrna (Czechia)'),
(67753, 56692, 'en', 'name', 'SENSHIN Medical Research Foundation'),
(67754, 56692, 'ja', 'name', 'ę–°ęƒ…å ±å‡¦ē†ęŒÆčˆˆč²”å›£'),
(67755, 56693, 'fr', 'name', 'ConfƩrence Intercantonale de l''Instruction Publique de la Suisse Romande et du Tessin'),
(67756, 56694, 'no_lang_code', 'name', 'Gabriel Chemie Bohemia (Czechia)'),
(67757, 56695, 'no_lang_code', 'name', 'AGCO (Netherlands)'),
(67758, 56696, 'no_lang_code', 'name', 'Cambridge Nutritional Sciences (United Kingdom)'),
(67759, 56697, 'no_lang_code', 'name', 'Kaiser (Czechia)'),
(67760, 56698, 'no_lang_code', 'name', 'Hutní MontÔže (Czechia)'),
(67761, 56699, 'no_lang_code', 'name', 'Murus (Czechia)'),
(67762, 56700, 'no_lang_code', 'name', 'RHI Magnesita (Switzerland)'),
(67763, 56701, 'cs', 'name', 'Nadace pro rozvoj architektury a stavitelstvĆ­'),
(67764, 56702, 'cs', 'name', 'Nemocnice Atlas'),
(67765, 56703, 'en', 'name', 'CRC for Spatial information'),
(67766, 56704, 'no_lang_code', 'name', 'Dynex (Czechia)'),
(67767, 56705, 'de', 'name', 'Senatsverwaltung für Wirtschaft, Energie und Betriebe'),
(67768, 56706, 'no_lang_code', 'name', 'Georadis (Czechia)'),
(67769, 56707, 'en', 'name', 'Surdna Foundation'),
(67770, 56708, 'no_lang_code', 'name', 'Elvia (Czechia)'),
(67771, 56709, 'en', 'name', 'Vera Bradley Foundation for Breast Cancer'),
(67772, 56710, 'de', 'name', 'Eidgenƶssisches Finanzdepartement'),
(67773, 56710, 'en', 'name', 'Federal Department of Finance'),
(67774, 56710, 'fr', 'name', 'DƩpartement fƩdƩral des finances'),
(67775, 56710, 'it', 'name', 'Dipartimento federale delle finanze'),
(67776, 56710, 'rm', 'name', 'Departament federal da finanzas'),
(67777, 56711, 'de', 'name', 'Kliniken des Landkreises Lƶrrach'),
(67778, 56712, 'no_lang_code', 'name', 'Photon Energy (Czechia)'),
(67779, 56713, 'it', 'name', 'Museo Vincenzo Vela'),
(67780, 56714, 'no_lang_code', 'name', 'Pinkerton (Czechia)'),
(67781, 56715, 'no_lang_code', 'name', 'Laboratoires M. Richard (France)'),
(67782, 56716, 'no_lang_code', 'name', 'InnovaSea Systems (United States)'),
(67783, 56717, 'no_lang_code', 'name', 'MPower (Czechia)'),
(67784, 56718, 'en', 'name', 'Carnegie Endowment for International Peace'),
(67785, 56719, 'nl', 'name', 'VSBfonds'),
(67786, 56720, 'en', 'name', 'Local Matters'),
(67787, 56721, 'en', 'name', 'Wings of Eagles Discovery Center'),
(67788, 56722, 'en', 'name', 'Korea Photonics Technology Institute'),
(67789, 56723, 'no_lang_code', 'name', 'Licon Heat (Czechia)'),
(67790, 56724, 'no_lang_code', 'name', 'Polyos (Czechia)'),
(67791, 56725, 'cs', 'name', 'ČeskĆ” asociace petrolejÔřskĆ©ho prÅÆmyslu a obchodu'),
(67792, 56725, 'en', 'name', 'Czech Association of Petroleum Industry and Trade'),
(67793, 56726, 'en', 'name', 'International Geographical Union'),
(67794, 56726, 'fr', 'name', 'Union GƩographique Internationale'),
(67795, 56727, 'no_lang_code', 'name', 'Primis (Czechia)'),
(67796, 56728, 'no_lang_code', 'name', 'Basys (Germany)'),
(67797, 56729, 'no_lang_code', 'name', 'mAbDx (United States)'),
(67798, 56730, 'en', 'name', 'Jalmari and Rauha Ahokas Foundation'),
(67799, 56730, 'fi', 'name', 'Jalmari ja Rauha Ahokkaan SƤƤtiƶ'),
(67800, 56731, 'no_lang_code', 'name', 'Bauer Technics'),
(67801, 56732, 'no_lang_code', 'name', 'Furukawa Electric (United Kingdom)'),
(67802, 56733, 'en', 'name', 'PRO-BIO Association of Organic Farmers'),
(67803, 56734, 'fr', 'name', 'Fondation de Nant'),
(67804, 56735, 'no_lang_code', 'name', 'BioEnviro (Czechia)'),
(67805, 56736, 'no_lang_code', 'name', 'Gist (Czechia)'),
(67806, 56737, 'cs', 'name', 'KrajskĆ” nemocnice T. Bati'),
(67807, 56738, 'no_lang_code', 'name', 'DSA (Czechia)'),
(67808, 56739, 'en', 'name', 'UniHealth Foundation'),
(67809, 56740, 'no_lang_code', 'name', 'Panasonic (Czechia)'),
(67810, 56741, 'de', 'name', 'Aron Vajna Historischer Blechblasinstrumentenbau'),
(67811, 56742, 'de', 'name', 'Sarkoidose Stiftung'),
(67812, 56743, 'en', 'name', 'Dangoria Charitable Trust'),
(67813, 56744, 'no_lang_code', 'name', 'Envipor (Czechia)'),
(67814, 56745, 'no_lang_code', 'name', 'Whirlpool (Netherlands)'),
(67815, 56746, 'no_lang_code', 'name', 'Blue Industry and Science (France)'),
(67816, 56747, 'de', 'name', 'Wohnstadt'),
(67817, 56748, 'no_lang_code', 'name', 'ExxonMobil (United Kingdom)'),
(67818, 56749, 'no_lang_code', 'name', 'Medignition (Switzerland)'),
(67819, 56750, 'de', 'name', 'Reinhold Beitlich Stiftung'),
(67820, 56750, 'en', 'name', 'Reinhold Beitlich Foundation'),
(67821, 56751, 'no_lang_code', 'name', 'Craig Technologies (United States)'),
(67822, 56752, 'it', 'name', 'Ospedale San Paolo'),
(67823, 56753, 'en', 'name', 'Academy of the bran'),
(67824, 56753, 'it', 'name', 'Accademia della Crusca'),
(67825, 56754, 'no_lang_code', 'name', 'Plosab (Czechia)'),
(67826, 56755, 'no_lang_code', 'name', 'Roko (Czechia)'),
(67827, 56756, 'en', 'name', 'Moscow Regional Research Institute of Obstetrics and Gynecology'),
(67828, 56756, 'ru', 'name', 'Московский областной ŠŠ˜Š˜ Š°ŠŗŃƒŃˆŠµŃ€ŃŃ‚Š²Š° Šø гинекологии'),
(67829, 56757, 'no_lang_code', 'name', 'TK Consult (Switzerland)'),
(67830, 56758, 'no_lang_code', 'name', 'EarthDance'),
(67831, 56759, 'en', 'name', 'VA Great Lakes Health Care System'),
(67832, 56760, 'cs', 'name', 'Akademie Jana Amose KomenskƩho'),
(67833, 56761, 'fr', 'name', 'HƓpital de Beaumont'),
(67834, 56762, 'no_lang_code', 'name', 'Stinchcombe Technology (Czechia)'),
(67835, 56763, 'en', 'name', 'Power Tool Institute'),
(67836, 56764, 'en', 'name', 'Elizabeth Greenshields Foundation'),
(67837, 56765, 'en', 'name', 'Springfield Foundation'),
(67838, 56766, 'cs', 'name', 'SdruženĆ­ Ozdravoven A LĆ©Äeben Okresu Trutnov'),
(67839, 56767, 'no_lang_code', 'name', 'Tec 21'),
(67840, 56768, 'en', 'name', 'Statistics Belgium'),
(67841, 56768, 'fr', 'name', 'Direction gƩnƩrale Statistique'),
(67842, 56769, 'de', 'name', 'Schweizerische Gesellschaft für Kardiologie'),
(67843, 56770, 'en', 'name', 'Metallurgical Research Institute'),
(67844, 56770, 'ro', 'name', 'Institutul de Cercetari Metalurgice'),
(67845, 56771, 'no_lang_code', 'name', 'Texas Instruments (Switzerland)'),
(67846, 56772, 'en', 'name', 'Rome Foundation'),
(67847, 56773, 'fr', 'name', 'Institut GƩnƩtique Nantes Atlantique'),
(67848, 56774, 'en', 'name', 'National Institute For Chemical Pharmaceutical Research and Development'),
(67849, 56774, 'ro', 'name', 'Institutul National De Cercetare Dezvoltare Chimico Farmaceutica'),
(67850, 56775, 'no_lang_code', 'name', 'ZemědělskĆ© Družstvo Å itbořice (Czechia)'),
(67851, 56776, 'no_lang_code', 'name', 'Entrust Datacard (United States)'),
(67852, 56777, 'en', 'name', 'Eastern Mining-and-Metallurgical Research Institute for Nonferrous Metals'),
(67853, 56777, 'kk', 'name', 'Восточный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цветных металлов [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(67854, 56778, 'en', 'name', 'City Schoolyard Garden'),
(67855, 56779, 'en', 'name', 'Singapore Millennium Foundation'),
(67856, 56780, 'en', 'name', 'Summerlee Foundation'),
(67857, 56781, 'en', 'name', 'Civilisations Matter'),
(67858, 56782, 'no_lang_code', 'name', 'ACL Anodizing (Czechia)'),
(67859, 56783, 'no_lang_code', 'name', 'Trimill (Czechia)'),
(67860, 56784, 'en', 'name', 'Hydrobiological Institute'),
(67861, 56784, 'mk', 'name', 'Š„ŠøŠ“Ń€Š¾Š±ŠøŠ¾Š»Š¾ŃˆŠŗŠø Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(67862, 56785, 'cs', 'name', 'KrajskĆ” HygienickĆ” Stanice Olomouci'),
(67863, 56786, 'no_lang_code', 'name', 'Hexcel (United States)'),
(67864, 56787, 'no_lang_code', 'name', 'AB Neo (Czechia)'),
(67865, 56788, 'no_lang_code', 'name', 'Glass Atelier Morava (Czechia)'),
(67866, 56789, 'cs', 'name', 'Jednota HudebnĆ­ho Divadla'),
(67867, 56790, 'en', 'name', 'European Association of Social Psychology'),
(67868, 56791, 'no_lang_code', 'name', 'Komfort (Czechia)'),
(67869, 56792, 'no_lang_code', 'name', 'Consultest (Czechia)'),
(67870, 56793, 'de', 'name', 'Gesellschaft für Hochschulforschung'),
(67871, 56794, 'no_lang_code', 'name', 'Smart Vision Works International (United States)'),
(67872, 56795, 'en', 'name', 'Delta Water Management Research Unit'),
(67873, 56796, 'cs', 'name', 'Ústav územního rozvoje'),
(67874, 56796, 'en', 'name', 'Institute for Spatial Development'),
(67875, 56797, 'no_lang_code', 'name', 'Teleflex (Australia)'),
(67876, 56798, 'en', 'name', 'Michigan Department of Technology, Management & Budget'),
(67877, 56799, 'no_lang_code', 'name', 'TLP (Czechia)'),
(67878, 56800, 'no_lang_code', 'name', 'Cech Engineering (Czechia)'),
(67879, 56801, 'no_lang_code', 'name', 'Žatec (Czechia)'),
(67880, 56802, 'es', 'name', 'Fundación Cerebro y Mente'),
(67881, 56803, 'en', 'name', 'Islamic Azad University, Firoozkooh Branch'),
(67882, 56803, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد ŁŁŠŲ±ŁˆŲ²ŁƒŁˆŁ‡'),
(67883, 56804, 'no_lang_code', 'name', 'Novatisk (Czechia)'),
(67884, 56805, 'no_lang_code', 'name', 'InFlectis BioScience'),
(67885, 56806, 'sv', 'name', 'Stiftelsen Emilie och Rudolf Gesellius fond'),
(67886, 56807, 'no_lang_code', 'name', 'HydraulickĆ© Stroje A ZařízenĆ­ (Czechia)'),
(67887, 56808, 'no_lang_code', 'name', 'EuroMISE (Czechia)'),
(67888, 56809, 'en', 'name', 'Skylark Foundation'),
(67889, 56810, 'en', 'name', 'VA MidSouth Healthcare Network'),
(67890, 56811, 'en', 'name', 'Thomas Wilson Foundation'),
(67891, 56812, 'en', 'name', 'International Center for Astronomical, Medical and Ecological Research'),
(67892, 56813, 'no_lang_code', 'name', 'AWIK House Production (Czechia)'),
(67893, 56814, 'it', 'name', 'Organizzazione Sociopsichiatrica Cantonale'),
(67894, 56815, 'en', 'name', 'Udall Foundation'),
(67895, 56816, 'cs', 'name', 'JihočeskĆ© Muzeum v Českých BudějovicĆ­ch'),
(67896, 56817, 'fi', 'name', 'Tauno Tƶnningin SƤƤtiƶ'),
(67897, 56818, 'no_lang_code', 'name', 'Ceraver (France)'),
(67898, 56819, 'no_lang_code', 'name', 'Medetron (Czechia)'),
(67899, 56820, 'fi', 'name', 'Ida Montinin SƤƤtiƶ'),
(67900, 56821, 'no_lang_code', 'name', 'Wüest Partner (Switzerland)'),
(67901, 56822, 'no_lang_code', 'name', 'MediCom (Czechia)'),
(67902, 56823, 'en', 'name', 'Nanocem'),
(67903, 56824, 'en', 'name', 'NIMH Repository and Genomics Resource'),
(67904, 56825, 'en', 'name', 'Research Institute of Mine Rescue'),
(67905, 56825, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š“ŠžŠ ŠŠžŠ”ŠŸŠŠ”ŠŠ¢Š•Š›Š¬ŠŠžŠ“Šž ДЕЛА'),
(67906, 56826, 'pt', 'name', 'Fundação Gorceix'),
(67907, 56827, 'no_lang_code', 'name', 'AgroBio Opava (Czechia)'),
(67908, 56828, 'no_lang_code', 'name', 'Geodyn (Czechia)'),
(67909, 56829, 'en', 'name', 'Wisconsin Cheese Makers Association'),
(67910, 56830, 'no_lang_code', 'name', 'Lingea (Czechia)'),
(67911, 56831, 'cs', 'name', 'ČeskĆ” Společnost ChemickĆ©ho InženýrstvĆ­'),
(67912, 56832, 'en', 'name', 'Shevchenko Foundation'),
(67913, 56833, 'no_lang_code', 'name', 'Innogy (Czechia)'),
(67914, 56834, 'no_lang_code', 'name', 'Consulting Company Novasoft (Czechia)'),
(67915, 56835, 'no_lang_code', 'name', 'Mikroelektronika (Czechia)'),
(67916, 56836, 'no_lang_code', 'name', 'PathSensors (United States)'),
(67917, 56837, 'no_lang_code', 'name', 'Garmin (Switzerland)'),
(67918, 56838, 'en', 'name', 'All-Russian Scientific Research Institute of Fats'),
(67919, 56838, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ жиров'),
(67920, 56839, 'en', 'name', 'Plant and Fungi Biotechnology Laboratory'),
(67921, 56840, 'en', 'name', 'Fesenkov Astrophysical Institute'),
(67922, 56840, 'kk', 'name', 'Астрофизический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š’. Š“. Фесенкова'),
(67923, 56841, 'de', 'name', 'Günter-Köhler-Institut für Fügetechnik und Werkstoffprüfung'),
(67924, 56842, 'no_lang_code', 'name', 'Tarpo (Czechia)'),
(67925, 56843, 'en', 'name', 'Changchun Institute of Biological Products'),
(67926, 56843, 'zh', 'name', 'é•æę˜„ē”Ÿē‰©åˆ¶å“ē ”ē©¶ę‰€ 编辑'),
(67927, 56844, 'en', 'name', 'Sid W Richardson Foundation'),
(67928, 56845, 'no_lang_code', 'name', 'HaSaM (Czechia)'),
(67929, 56846, 'en', 'name', 'North-Caucasian Mining and Metallurgical Institute'),
(67930, 56846, 'ru', 'name', 'Деверо-Кавказский горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(67931, 56847, 'no_lang_code', 'name', 'Edwards Lifesciences (United Kingdom)'),
(67932, 56848, 'fi', 'name', 'Arvo ja Lea Ylppƶ SƤƤtiƶ'),
(67933, 56849, 'no_lang_code', 'name', 'Lavipharm (France)'),
(67934, 56850, 'en', 'name', 'American Board of Veterinary Practitioners'),
(67935, 56851, 'de', 'name', 'Global Risk Forum GRF Davos'),
(67936, 56852, 'no_lang_code', 'name', 'NAM System (Czechia)'),
(67937, 56853, 'en', 'name', 'National Centre for Research Methods'),
(67938, 56854, 'no_lang_code', 'name', 'NSK (United States)'),
(67939, 56855, 'no_lang_code', 'name', 'Infrastructure Management Consultants (Switzerland)'),
(67940, 56856, 'en', 'name', 'IBM Research - Australia'),
(67941, 56857, 'no_lang_code', 'name', 'Labomatic Instruments (Switzerland)'),
(67942, 56858, 'no_lang_code', 'name', 'Agroeko Žamberk (Czechia)'),
(67943, 56859, 'no_lang_code', 'name', 'UPS Technology (Czechia)'),
(67944, 56860, 'tr', 'name', 'Ankara Fıtık Merkezi'),
(67945, 56861, 'no_lang_code', 'name', 'Nikon (United States)'),
(67946, 56862, 'no_lang_code', 'name', 'Prvni Brnenska Strojirna (Czechia)'),
(67947, 56863, 'cs', 'name', 'HvězdĆ”rna a planetĆ”rium Brno'),
(67948, 56863, 'en', 'name', 'Brno Observatory and Planetarium'),
(67949, 56864, 'no_lang_code', 'name', 'Gestamp (Germany)'),
(67950, 56865, 'en', 'name', 'Japan Society for Laser Surgery and Medicine'),
(67951, 56865, 'ja', 'name', 'ę—„ęœ¬ćƒ¬ćƒ¼ć‚¶ćƒ¼åŒ»å­¦ä¼š'),
(67952, 56866, 'no_lang_code', 'name', 'Boskalis (United Kingdom)'),
(67953, 56867, 'en', 'name', 'Brian Mason Scientific & Technical Trust'),
(67954, 56868, 'no_lang_code', 'name', 'Kion Group (United States)'),
(67955, 56869, 'no_lang_code', 'name', 'Erilens (Czechia)'),
(67956, 56870, 'no_lang_code', 'name', 'ZP Otice (Czechia)'),
(67957, 56871, 'no_lang_code', 'name', 'Thomas Sinclair Laboratories (France)'),
(67958, 56872, 'en', 'name', 'Kyushu Okinawa Agricultural Research Center'),
(67959, 56872, 'ja', 'name', 'ä¹å·žę²–ēø„č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(67960, 56873, 'es', 'name', 'Fundación Alfonso Martín Escudero'),
(67961, 56874, 'no_lang_code', 'name', 'Strix (United Kingdom)'),
(67962, 56875, 'no_lang_code', 'name', 'Fritagro Nížkov (Czechia)'),
(67963, 56876, 'en', 'name', 'Carbon Cycle and Ecosystems'),
(67964, 56877, 'en', 'name', 'Arthur Smith Institute for Urology'),
(67965, 56878, 'de', 'name', 'Büro für Arbeits und Sozialpolitische Studien'),
(67966, 56879, 'no_lang_code', 'name', 'Mitas (Czechia)'),
(67967, 56880, 'no_lang_code', 'name', 'Trigad (Czechia)'),
(67968, 56881, 'no_lang_code', 'name', 'New Guinea Binatang Research Center'),
(67969, 56882, 'en', 'name', 'Kazakh Scientific Research Veterinary Institute'),
(67970, 56883, 'no_lang_code', 'name', 'Eduard Model Accessories (Czechia)'),
(67971, 56884, 'no_lang_code', 'name', 'ATE (Czechia)'),
(67972, 56885, 'no_lang_code', 'name', 'Preciosa Beauty (Czechia)'),
(67973, 56886, 'no_lang_code', 'name', 'Dodie (France)'),
(67974, 56887, 'no_lang_code', 'name', 'Excalibur Army (Czechia)'),
(67975, 56888, 'cs', 'name', 'Ochrana fauny ČR'),
(67976, 56889, 'no_lang_code', 'name', 'Iconics (Czechia)'),
(67977, 56890, 'no_lang_code', 'name', 'PSP Pohony (Czechia)'),
(67978, 56891, 'no_lang_code', 'name', 'Sady KlÔŔterec nad Ohří (Czechia)'),
(67979, 56892, 'no_lang_code', 'name', 'Portasol (Ireland)'),
(67980, 56893, 'en', 'name', 'P.S. Pasternak Research Institute for Mountain Forestry'),
(67981, 56893, 'ru', 'name', 'Украинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного лесовоГства'),
(67982, 56894, 'en', 'name', 'Arkansas Hunger Relief Alliance'),
(67983, 56895, 'en', 'name', 'Institute of Architecture and Urban & Spatial Planning of Serbia'),
(67984, 56895, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ńƒ Šø ŃƒŃ€Š±Š°Š½ŠøŠ·Š°Š¼ Š”Ń€Š±ŠøŃ˜Šµ'),
(67985, 56896, 'no_lang_code', 'name', 'New Gen (Czechia)'),
(67986, 56897, 'fr', 'name', 'Institut de Biotechnologies Jacques Boy'),
(67987, 56898, 'fr', 'name', 'DƩpartement de la SantƩ et de l''Action Sociale'),
(67988, 56899, 'no_lang_code', 'name', 'FGR Factory (Czechia)'),
(67989, 56900, 'en', 'name', 'Pakistan Atomic Energy Commission'),
(67990, 56900, 'ur', 'name', 'ادارہ جوہری ŲŖŁˆŲ§Ł†Ų§Ų¦ŪŒ پاکستان'),
(67991, 56901, 'no_lang_code', 'name', 'Chirastar KDT (Czechia)'),
(67992, 56902, 'no_lang_code', 'name', 'Unites Systems (Czechia)'),
(67993, 56903, 'no_lang_code', 'name', 'LZ Technology (United States)'),
(67994, 56904, 'no_lang_code', 'name', 'AMI Communications (Czechia)'),
(67995, 56905, 'fr', 'name', 'Conseil RƩgional de Basse-Normandie'),
(67996, 56906, 'no_lang_code', 'name', 'Impeto Medical (France)'),
(67997, 56907, 'en', 'name', 'Foundation for Research and Socio Ecological Harmony'),
(67998, 56908, 'no_lang_code', 'name', 'Laboratoire Sicobel (France)'),
(67999, 56909, 'en', 'name', 'Texas Parent to Parent'),
(68000, 56910, 'no_lang_code', 'name', 'Ziemer Ophthalmic Systems (Switzerland)'),
(68001, 56911, 'no_lang_code', 'name', 'Zimmer Biomet (France)'),
(68002, 56912, 'no_lang_code', 'name', 'Huntsman (Germany)'),
(68003, 56913, 'en', 'name', 'Institute of Ecosystem Study'),
(68004, 56913, 'it', 'name', 'Istituto per lo Studio degli Ecosistemi'),
(68005, 56914, 'no_lang_code', 'name', 'Český MÔk (Czechia)'),
(68006, 56915, 'no_lang_code', 'name', 'Olma (Czechia)'),
(68007, 56916, 'no_lang_code', 'name', 'Capricor Therapeutics (United States)'),
(68008, 56917, 'no_lang_code', 'name', 'Epicrop Technologies (United States)'),
(68009, 56918, 'no_lang_code', 'name', 'MEZ (Czechia)'),
(68010, 56919, 'no_lang_code', 'name', 'Oculogica (United States)'),
(68011, 56920, 'en', 'name', 'Prevent Blindness'),
(68012, 56921, 'fr', 'name', 'Mutuelle GĆ©nĆ©rale de l''Ɖducation Nationale'),
(68013, 56922, 'en', 'name', 'Nepal Centre for Contemporary Research'),
(68014, 56923, 'no_lang_code', 'name', 'T-string Pardubice (Czechia)'),
(68015, 56924, 'cs', 'name', 'Centrum pro Bezpečný StĆ”t'),
(68016, 56925, 'en', 'name', 'The Harley School'),
(68017, 56926, 'no_lang_code', 'name', 'OptimSys (Czechia)'),
(68018, 56927, 'no_lang_code', 'name', 'Beton TěŔovice (Czechia)'),
(68019, 56928, 'es', 'name', 'Consejería de Educación y Empleo'),
(68020, 56929, 'no_lang_code', 'name', 'Ústav Využití Plynu (Czechia)'),
(68021, 56930, 'no_lang_code', 'name', 'Lovochemie (Czechia)'),
(68022, 56931, 'cs', 'name', 'LetiÅ”tě Ostrava'),
(68023, 56931, 'no_lang_code', 'name', 'Ostrava Airport (Czechia)'),
(68024, 56932, 'en', 'name', 'Institute of Archaeology and Ethnography'),
(68025, 56932, 'hy', 'name', 'Ō³Ō±Ō± Õ€Õ†Ō±Ō³Ō»ÕÕˆÕ’Ō¹Õ…Ō±Õ† ŌµÕŽ Ō±Ō¶Ō³Ō±Ō³ÕÕˆÕ’Ō¹Õ…Ō±Õ† Ō»Õ†ÕÕŌ»ÕÕˆÕ’Õ'),
(68026, 56933, 'no_lang_code', 'name', 'CS Plasting (Czechia)'),
(68027, 56934, 'no_lang_code', 'name', 'BrioBiotech (United States)'),
(68028, 56935, 'no_lang_code', 'name', 'Von Roll (Switzerland)'),
(68029, 56936, 'no_lang_code', 'name', 'Mvb Opava (Czechia)'),
(68030, 56937, 'no_lang_code', 'name', 'Global Algae Innovations (United States)'),
(68031, 56938, 'no_lang_code', 'name', 'A3IP (France)'),
(68032, 56939, 'no_lang_code', 'name', 'R + R Burger Und Partner (Switzerland)'),
(68033, 56940, 'de', 'name', 'Institut Mathildenhƶhe Darmstadt'),
(68034, 56941, 'no_lang_code', 'name', 'Mycroft Mind (Czechia)'),
(68035, 56942, 'no_lang_code', 'name', 'TM Jesenice (Czechia)'),
(68036, 56943, 'no_lang_code', 'name', 'Radioterapie HoleŔov (Czechia)'),
(68037, 56944, 'cs', 'name', 'HutnickĆ” zaměstnaneckĆ” pojiŔńovna'),
(68038, 56944, 'no_lang_code', 'name', 'ČeskÔ PrůmyslovÔ Zdravotní PojiŔńovna (Czechia)'),
(68039, 56945, 'no_lang_code', 'name', 'Biologicals (Czechia)'),
(68040, 56946, 'no_lang_code', 'name', 'Agrospol AgrÔrní Družstvo (Czechia)'),
(68041, 56947, 'no_lang_code', 'name', 'Illinois Tool Works (United Kingdom)'),
(68042, 56948, 'no_lang_code', 'name', 'Severofrukt (Czechia)'),
(68043, 56949, 'en', 'name', 'Institute of Philosophy, Sociology and Law'),
(68044, 56950, 'de', 'name', 'Eidgenössisches Büro für die Gleichstellung von Frau und Mann'),
(68045, 56950, 'en', 'name', 'Federal Office for Gender Equality'),
(68046, 56950, 'fr', 'name', 'Bureau fƩdƩral de l''ƩgalitƩ entre femmes et hommes'),
(68047, 56950, 'it', 'name', 'Ufficio federale per l''uguaglianza fra donna e uomo'),
(68048, 56951, 'en', 'name', 'Qinhuangdao Science and Technology Bureau'),
(68049, 56951, 'zh', 'name', 'ē§¦ēš‡å²›åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(68050, 56952, 'cs', 'name', 'VyŔŔí OdbornĆ” Å kola InformačnĆ­ch Služeb'),
(68051, 56953, 'en', 'name', 'Federation of Swiss Protestant Churches'),
(68052, 56954, 'no_lang_code', 'name', 'Spyron (Czechia)'),
(68053, 56955, 'de', 'name', 'Schweizerisches Gesundheitsobservatorium'),
(68054, 56955, 'en', 'name', 'Swiss Health Observatory'),
(68055, 56956, 'no_lang_code', 'name', 'Rumpold (Czechia)'),
(68056, 56957, 'no_lang_code', 'name', 'Plant Lipids (India)'),
(68057, 56958, 'no_lang_code', 'name', 'Axys Varilab (Czechia)'),
(68058, 56959, 'no_lang_code', 'name', 'Euronics Engineering (Czechia)'),
(68059, 56960, 'no_lang_code', 'name', 'Abbott (Ireland)'),
(68060, 56961, 'cs', 'name', 'Socioklub'),
(68061, 56962, 'no_lang_code', 'name', 'Natural (Czechia)'),
(68062, 56963, 'en', 'name', 'Center for Nutrition Policy and Promotion'),
(68063, 56964, 'en', 'name', 'Rodale Institute'),
(68064, 56965, 'en', 'name', 'Albanian National Training and Technical Assistance Resource Center'),
(68065, 56966, 'en', 'name', 'Scientific Research Institute of the Rubber Industry'),
(68066, 56966, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ резиновой ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(68067, 56967, 'no_lang_code', 'name', 'AM–Pharma (Netherlands)'),
(68068, 56968, 'en', 'name', 'United States Customs and Border Protection'),
(68069, 56969, 'no_lang_code', 'name', 'Albertina icome Praha (Czechia)'),
(68070, 56970, 'no_lang_code', 'name', 'Atotech (United States)'),
(68071, 56971, 'no_lang_code', 'name', 'Strojírna Novotný (Czechia)'),
(68072, 56972, 'no_lang_code', 'name', 'PAGEPress (Italy)'),
(68073, 56973, 'fr', 'name', 'IMACTIS'),
(68074, 56974, 'no_lang_code', 'name', 'Vivendi (United States)'),
(68075, 56975, 'de', 'name', 'Eidgenössische Fachkommission für Biologische Sicherheit'),
(68076, 56975, 'en', 'name', 'Swiss Expert Committee for Biosafety'),
(68077, 56976, 'cs', 'name', 'NƔrodnƭ Akademie RegionƔlnƭho Managementu'),
(68078, 56977, 'no_lang_code', 'name', 'Orbital 2 (Czechia)'),
(68079, 56978, 'en', 'name', 'Palm Beach Gardens Medical Center'),
(68080, 56979, 'en', 'name', 'Diabetes Research and Wellness Foundation'),
(68081, 56980, 'no_lang_code', 'name', 'LaserTherm (Czechia)'),
(68082, 56981, 'en', 'name', 'American Comparative Literature Association'),
(68083, 56982, 'no_lang_code', 'name', 'Elmet (Czechia)'),
(68084, 56983, 'no_lang_code', 'name', 'Adidas (Canada)'),
(68085, 56984, 'en', 'name', 'Molecular Medicine Research Institute'),
(68086, 56985, 'no_lang_code', 'name', 'Velaz (Czechia)'),
(68087, 56986, 'cs', 'name', 'Ředitelství Silnic a DÔlnic'),
(68088, 56987, 'no_lang_code', 'name', 'Hosoya Schaefer Architects (Switzerland)'),
(68089, 56988, 'no_lang_code', 'name', 'Ryor (Czechia)'),
(68090, 56989, 'de', 'name', 'Lauener-Stiftung'),
(68091, 56989, 'en', 'name', 'Lauener Foundation for Analytical Philosophy'),
(68092, 56990, 'no_lang_code', 'name', 'Laboratoires Spiral (France)'),
(68093, 56991, 'be', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠžŠ ŠžŠØŠšŠžŠ’ŠžŠ™ ŠœŠ•Š¢ŠŠ›Š›Š£Š Š“Š˜Š˜'),
(68094, 56991, 'en', 'name', 'Powder Metallurgy Institute'),
(68095, 56992, 'en', 'name', 'Vidda Foundation'),
(68096, 56993, 'en', 'name', 'Ural Institute of Metals'),
(68097, 56994, 'en', 'name', 'Wieboldt Foundation'),
(68098, 56995, 'en', 'name', 'S. Mark Taper Foundation'),
(68099, 56996, 'no_lang_code', 'name', 'StrojĆ­rna Tyc (Czechia)'),
(68100, 56997, 'no_lang_code', 'name', 'Institut Oenologique de Champagne (France)'),
(68101, 56998, 'de', 'name', 'Donauspital'),
(68102, 56999, 'en', 'name', 'Ludwig Cancer Research'),
(68103, 57000, 'en', 'name', 'Institute of Geology and Nature Management, Far Eastern Branch of the Russian Academy of Sciences'),
(68104, 57000, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ'),
(68105, 57001, 'no_lang_code', 'name', 'MND Drilling & Services (Czechia)'),
(68106, 57002, 'en', 'name', 'Alliance Forum Foundation'),
(68107, 57003, 'no_lang_code', 'name', 'SAM Holding (Czechia)'),
(68108, 57004, 'no_lang_code', 'name', 'ASC Instrument (France)'),
(68109, 57005, 'de', 'name', 'Pädiatrisch-Endokrinologisches Zentrum Zürich'),
(68110, 57005, 'en', 'name', 'Center for Pediatric Endocrinology Zurich'),
(68111, 57006, 'no_lang_code', 'name', 'A. KTI (Czechia)'),
(68112, 57007, 'en', 'name', 'Epilepsy Study Consortium'),
(68113, 57008, 'en', 'name', 'Denver Zoo'),
(68114, 57009, 'en', 'name', 'Korean Institute of Footwear and Leather Technology'),
(68115, 57009, 'ko', 'name', 'ķ•œźµ­ģ‹ ė°œķ”¼ķ˜ģ—°źµ¬ģ›'),
(68116, 57010, 'cs', 'name', 'PelÄĆ”k a Partner Architekti'),
(68117, 57011, 'en', 'name', 'The American Society of Criminology'),
(68118, 57012, 'cs', 'name', 'České Technologické Platformy pro Udržitelnou Chemii'),
(68119, 57012, 'no_lang_code', 'name', 'SusChem'),
(68120, 57013, 'no_lang_code', 'name', 'Poll (Czechia)'),
(68121, 57014, 'cs', 'name', 'Administration of the National Park České Švýcarsko'),
(68122, 57015, 'fr', 'name', 'Institution de Lavigny'),
(68123, 57016, 'fr', 'name', 'TƩlƩvie'),
(68124, 57017, 'en', 'name', 'Olin E. Teague Veterans Medical Center'),
(68125, 57018, 'en', 'name', 'Finnish Veterinary Foundation'),
(68126, 57018, 'fi', 'name', 'ElƤinlƤƤketieteen Tutkimuksen TukisƤƤtiƶ'),
(68127, 57019, 'no_lang_code', 'name', 'Parkservis (Czechia)'),
(68128, 57020, 'no_lang_code', 'name', 'Trendrail (United KIngdom)'),
(68129, 57021, 'en', 'name', 'Sungmo Eye Hospital'),
(68130, 57022, 'no_lang_code', 'name', 'Ekotechnika (Czechia)'),
(68131, 57023, 'no_lang_code', 'name', 'Aurea Agrosciences (France)'),
(68132, 57024, 'no_lang_code', 'name', 'Johnson Controls (Czechia)'),
(68133, 57025, 'no_lang_code', 'name', 'Inomech (Czechia)'),
(68134, 57026, 'en', 'name', 'Women''s International League for Peace and Freedom'),
(68135, 57027, 'fr', 'name', 'Institut et MusƩe des Suisses dans le monde'),
(68136, 57028, 'no_lang_code', 'name', 'Pars Komponenty (Czechia)'),
(68137, 57029, 'no_lang_code', 'name', 'Moser (Czechia)'),
(68138, 57030, 'en', 'name', 'Vodochody Airport'),
(68139, 57030, 'no_lang_code', 'name', 'LetiÅ”tě Vodochody (Czechia)'),
(68140, 57031, 'no_lang_code', 'name', 'Cezea - Å lechtitelskĆ” Stanice (Czechia)'),
(68141, 57032, 'en', 'name', 'Russian State Scientific Center for Robotics and Technical Cybernetics'),
(68142, 57032, 'ru', 'name', 'Š¦ŠŠ˜Š˜ робототехники Šø технической кибернетики'),
(68143, 57033, 'no_lang_code', 'name', '2VV (Czechia)'),
(68144, 57034, 'en', 'name', 'Sitka Center for Art and Ecology'),
(68145, 57035, 'en', 'name', 'The Local Crowd'),
(68146, 57036, 'da', 'name', 'Otto MĆønsteds Fond'),
(68147, 57037, 'no_lang_code', 'name', 'Conteg (Czechia)'),
(68148, 57038, 'de', 'name', 'Schweizerischer Gewerkschaftsbund'),
(68149, 57038, 'fr', 'name', 'Union syndicale suisse'),
(68150, 57038, 'it', 'name', 'Unione sindacale svizzera'),
(68151, 57039, 'no_lang_code', 'name', 'Melet Schloesing Laboratoires (France)'),
(68152, 57040, 'no_lang_code', 'name', 'Mikrop Čebín (Czechia)'),
(68153, 57041, 'no_lang_code', 'name', 'Av Engineering (Czechia)'),
(68154, 57042, 'no_lang_code', 'name', 'Institut Ocelových Konstrukcí (Czechia)'),
(68155, 57043, 'en', 'name', 'Washington Square Health Foundation'),
(68156, 57044, 'cs', 'name', 'Agentura regionƔlnƭho rozvoje'),
(68157, 57044, 'en', 'name', 'Regional Development Agency'),
(68158, 57045, 'no_lang_code', 'name', 'SGS (Czechia)'),
(68159, 57046, 'et', 'name', 'Tervisliku Piima Biotehnoloogiate Arenduskeskus'),
(68160, 57046, 'no_lang_code', 'name', 'Bio-Competence Centre of Healthy Dairy Products (Estonia)'),
(68161, 57047, 'cs', 'name', 'Centrum pro informace a mechanické testovÔní obalů'),
(68162, 57047, 'no_lang_code', 'name', 'CIMTO (Czechia)'),
(68163, 57048, 'en', 'name', 'Shahab Danesh University'),
(68164, 57048, 'fa', 'name', 'سامانه ها - Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ ؓهاب دانؓ'),
(68165, 57049, 'sv', 'name', 'Stiftelsen Oscar och Lili Lamms Minne'),
(68166, 57050, 'no_lang_code', 'name', 'Mvvs (Czechia)'),
(68167, 57051, 'no_lang_code', 'name', 'Ernst Leopold (Czechia)'),
(68168, 57052, 'no_lang_code', 'name', 'AGRO StoŔíkovice (Czechia)'),
(68169, 57053, 'no_lang_code', 'name', 'Arkopharma (France)'),
(68170, 57054, 'de', 'name', 'Sprachatlas der Deutschen Schweiz'),
(68171, 57055, 'cs', 'name', 'ČeskĆ” KinantropologickĆ” Společnost'),
(68172, 57056, 'no_lang_code', 'name', 'Sherlog Trace (Czechia)'),
(68173, 57057, 'en', 'name', 'United Way of Gratiot & Isabella Counties'),
(68174, 57058, 'fr', 'name', 'Direction de la SƩcuritƩ et de la Justice'),
(68175, 57059, 'no_lang_code', 'name', 'VODNI DILA - TBD (Czechia)'),
(68176, 57060, 'en', 'name', 'Ramah Navajo School Board'),
(68177, 57061, 'no_lang_code', 'name', 'Viapont (Czechia)'),
(68178, 57062, 'no_lang_code', 'name', 'SCL International'),
(68179, 57063, 'en', 'name', 'Tonbridge School'),
(68180, 57064, 'en', 'name', 'Metabrain Research'),
(68181, 57065, 'en', 'name', 'Geological Survey of Kyrgyzstan'),
(68182, 57065, 'ky', 'name', 'Š“ŠµŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń служба ŠšŃ‹Ń€Š³Ń‹Š·ŃŃ‚ана'),
(68183, 57066, 'en', 'name', 'Cosmetics Europe'),
(68184, 57067, 'no_lang_code', 'name', 'Flexisander (Czechia)'),
(68185, 57068, 'no_lang_code', 'name', 'Magnetic Development (United States)'),
(68186, 57069, 'en', 'name', 'Michigan Hand & Wrist'),
(68187, 57070, 'nl', 'name', 'Kuiper Medische Instrumenten'),
(68188, 57070, 'no_lang_code', 'name', 'Kuiper Medical Instruments (Netherlands)'),
(68189, 57071, 'no_lang_code', 'name', 'Center for Social Research Analitika'),
(68190, 57072, 'no_lang_code', 'name', 'Strittmatter Partner (Switzerland)'),
(68191, 57073, 'cs', 'name', 'ČeskĆ” VědeckĆ” Společnost Pro Mykologii'),
(68192, 57073, 'en', 'name', 'Czech Scientific Society for Mycology'),
(68193, 57074, 'no_lang_code', 'name', 'Hestego (Czechia)'),
(68194, 57075, 'cs', 'name', 'TechnologickĆ” platforma EnergetickĆ” bezpečnost ČR'),
(68195, 57075, 'en', 'name', 'Technology Platform Energy Security'),
(68196, 57076, 'en', 'name', 'National Center of Space Research and Technology'),
(68197, 57077, 'en', 'name', 'South West Thames Institute for Renal Research'),
(68198, 57078, 'en', 'name', 'Persian Scholarship Foundation'),
(68199, 57079, 'en', 'name', 'VA Midwest Health Care Network'),
(68200, 57080, 'de', 'name', 'Stockalperstiftung'),
(68201, 57081, 'en', 'name', 'Stichting Sem Presser Archief'),
(68202, 57082, 'no_lang_code', 'name', 'Akzo Nobel (Czechia)'),
(68203, 57083, 'fr', 'name', 'Entreprise de Fournitures et d''Assistance MƩdicale'),
(68204, 57084, 'cs', 'name', 'VyŔŔí OdbornĆ” Å kola StřednĆ­ PrÅÆmyslovĆ” Å kola'),
(68205, 57085, 'cs', 'name', 'TechnologickÔ Platforma UdržitelnÔ energetika'),
(68206, 57085, 'en', 'name', 'Technology Platform Sustainable Energy for the Czech Republic'),
(68207, 57086, 'no_lang_code', 'name', 'Bio-Rad (United Kingdom)'),
(68208, 57087, 'no_lang_code', 'name', 'Termosondy Kladno (Czechia)'),
(68209, 57088, 'de', 'name', 'SpitƤler Schaffhausen'),
(68210, 57089, 'no_lang_code', 'name', 'Duckworth & Kent (United Kingdom)'),
(68211, 57090, 'en', 'name', 'Institute of Fruit Tree and Tea Science'),
(68212, 57090, 'ja', 'name', 'ęžœęØ¹čŒ¶ę„­ē ”ē©¶éƒØé–€'),
(68213, 57091, 'no_lang_code', 'name', 'KNZ (Czechia)'),
(68214, 57092, 'en', 'name', 'British Institute of Technology and E-commerce'),
(68215, 57093, 'no_lang_code', 'name', 'PerkinElmer (Ireland)'),
(68216, 57094, 'cs', 'name', 'Život90'),
(68217, 57095, 'no_lang_code', 'name', 'Cycleurope (Sweden)'),
(68218, 57096, 'no_lang_code', 'name', 'Continuous Acquisition and Lifecycle Support (Czechia)'),
(68219, 57097, 'no_lang_code', 'name', 'Remerx (Czechia)'),
(68220, 57098, 'no_lang_code', 'name', 'AmeriQual Group (United States)'),
(68221, 57099, 'en', 'name', 'Reinberger Foundation'),
(68222, 57100, 'no_lang_code', 'name', 'HalĆ­Å™ A DiviÅ” (Czechia)'),
(68223, 57101, 'no_lang_code', 'name', 'Strabag Rail (Czechia)'),
(68224, 57102, 'no_lang_code', 'name', 'Impact Instruments (South Africa)'),
(68225, 57103, 'en', 'name', 'VA Sunshine Healthcare Network'),
(68226, 57104, 'de', 'name', 'Forum für Zeitfragen'),
(68227, 57105, 'fr', 'name', 'Centre d''Orthro-Podologie & d''OrthopƩdie'),
(68228, 57105, 'no_lang_code', 'name', 'Thion Medical (France)'),
(68229, 57106, 'no_lang_code', 'name', 'HƤssig Sustech (Switzerland)'),
(68230, 57107, 'no_lang_code', 'name', 'Medkonsult (Czechia)'),
(68231, 57108, 'fr', 'name', 'MƩthode Jeanne Piaubert institute'),
(68232, 57109, 'en', 'name', 'Seasteading Institute'),
(68233, 57110, 'en', 'name', 'Swedish Academy of Pharmaceutical Sciences'),
(68234, 57110, 'sv', 'name', 'LƤkemedelsakademin'),
(68235, 57111, 'no_lang_code', 'name', 'Statek HornĆ­ Dvorce (Czechia)'),
(68236, 57112, 'fr', 'name', 'Ɖcole Secondaire de Nyon Marens'),
(68237, 57113, 'no_lang_code', 'name', 'EVC Group (Czechia)'),
(68238, 57114, 'no_lang_code', 'name', 'Tyrolit (Czechia)'),
(68239, 57115, 'no_lang_code', 'name', 'Atelier T plan (Czechia)'),
(68240, 57116, 'no_lang_code', 'name', 'Zemcheba (Czechia)'),
(68241, 57117, 'no_lang_code', 'name', 'Kvados (Czechia)'),
(68242, 57118, 'de', 'name', 'Gerichte Zürich'),
(68243, 57119, 'en', 'name', 'Isaac Newton Trust'),
(68244, 57120, 'no_lang_code', 'name', 'Electro Automation (Ireland)'),
(68245, 57121, 'no_lang_code', 'name', 'Digiteo'),
(68246, 57122, 'no_lang_code', 'name', 'Pragochema (Czechia)'),
(68247, 57123, 'en', 'name', 'Jilin Province Youth Development Foundation'),
(68248, 57123, 'zh', 'name', 'å‰ęž—ēœé’å°‘å¹“å‘å±•åŸŗé‡‘ä¼š'),
(68249, 57124, 'no_lang_code', 'name', 'Alimpex Food (Czechia)'),
(68250, 57125, 'no_lang_code', 'name', 'Mediap (Czechia)'),
(68251, 57126, 'no_lang_code', 'name', 'Ab Medica (France)'),
(68252, 57127, 'no_lang_code', 'name', 'Espace Morava (Czechia)'),
(68253, 57128, 'no_lang_code', 'name', 'Protean (Czechia)'),
(68254, 57129, 'en', 'name', 'Institute of Industrial Engineering'),
(68255, 57130, 'no_lang_code', 'name', 'Koma (Czechia)'),
(68256, 57131, 'cs', 'name', 'Společnost pro výživu'),
(68257, 57131, 'en', 'name', 'Czech Society for Nutrition'),
(68258, 57132, 'en', 'name', 'SME Education Foundation'),
(68259, 57133, 'cs', 'name', 'Asociace Českých a Slovenských Zinkoven'),
(68260, 57134, 'no_lang_code', 'name', 'Dover (France)'),
(68261, 57135, 'en', 'name', 'Central Institute for Women in Agriculture'),
(68262, 57136, 'it', 'name', 'Biblioteca Cantonale di Lugano'),
(68263, 57137, 'no_lang_code', 'name', 'Cereon Biotechnology (United States)'),
(68264, 57138, 'en', 'name', 'Sport Foundation'),
(68265, 57139, 'en', 'name', 'Directorate General of Commercial Intelligence and Statistics'),
(68266, 57140, 'no_lang_code', 'name', 'Univerza (Czechia)'),
(68267, 57141, 'no_lang_code', 'name', 'Speltronic (Czechia)'),
(68268, 57142, 'en', 'name', 'Northern Sydney Local Health District'),
(68269, 57143, 'en', 'name', 'VA Eastern Kansas Health Care System'),
(68270, 57144, 'no_lang_code', 'name', 'Next Generation Technology (United States)'),
(68271, 57145, 'no_lang_code', 'name', 'Roche (China)'),
(68272, 57146, 'no_lang_code', 'name', 'Foxconn (Cayman Islands)'),
(68273, 57147, 'cs', 'name', 'RybÔřstvĆ­ KardaÅ”ova Řečice'),
(68274, 57148, 'no_lang_code', 'name', 'Elsklo (Czechia)'),
(68275, 57149, 'pt', 'name', 'BoticÔrio Group Foundation, Fundação Grupo BoticÔrio'),
(68276, 57150, 'no_lang_code', 'name', 'Danaher (Ireland)'),
(68277, 57151, 'en', 'name', 'Department of Education, Youth and Culture'),
(68278, 57151, 'fr', 'name', 'DƩpartement de la Formation, de la Jeunesse et de la Culture'),
(68279, 57152, 'no_lang_code', 'name', 'AOMB Intellectual Property (Netherlands)'),
(68280, 57153, 'no_lang_code', 'name', 'Protip Medical (France)'),
(68281, 57154, 'de', 'name', 'Kantonsschule Alpenquai Luzern'),
(68282, 57155, 'no_lang_code', 'name', 'Vodní zdroje HoleŔov (Czechia)'),
(68283, 57156, 'no_lang_code', 'name', 'Dr Heinrich JƤckli (Switzerland)'),
(68284, 57157, 'no_lang_code', 'name', 'Druchema (Czechia)'),
(68285, 57158, 'en', 'name', 'Wasie Foundation'),
(68286, 57159, 'es', 'name', 'Federación Alba Andalucía'),
(68287, 57160, 'en', 'name', 'Singapore International Foundation'),
(68288, 57160, 'ms', 'name', 'Yayasan Antarabangsa Singapura'),
(68289, 57160, 'zh', 'name', 'ę–°åŠ å”å›½é™…åŸŗé‡‘ä¼š'),
(68290, 57161, 'no_lang_code', 'name', 'Elcotherm (Switzerland)'),
(68291, 57162, 'en', 'name', 'S. D. Bechtel, Jr. Foundation'),
(68292, 57163, 'no_lang_code', 'name', 'Tocoen (Czechia)'),
(68293, 57164, 'no_lang_code', 'name', 'Continental (Canada)'),
(68294, 57165, 'no_lang_code', 'name', 'Unidataz (Czechia)'),
(68295, 57166, 'cs', 'name', 'DětskĆ© Centrum Paprsek'),
(68296, 57167, 'no_lang_code', 'name', 'GeodƩzie Topos (Czechia)'),
(68297, 57168, 'no_lang_code', 'name', 'Grant Instruments (United Kingdom)'),
(68298, 57169, 'no_lang_code', 'name', 'Biotronik (Switzerland)'),
(68299, 57170, 'fr', 'name', 'Gouvernement Princier'),
(68300, 57171, 'no_lang_code', 'name', 'Takasago (United States)'),
(68301, 57172, 'en', 'name', 'G.V. Karpenko Physical-Mechanical Institute'),
(68302, 57172, 'uk', 'name', 'Š¤Š†Š—Š˜ŠšŠž-ŠœŠ•Š„ŠŠŠ†Š§ŠŠ˜Š™ Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ Š†Šœ. Š“.Š’. ŠšŠŠ ŠŸŠ•ŠŠšŠ ŠAH Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(68303, 57173, 'en', 'name', 'East Midlands Academic Health Science Network'),
(68304, 57174, 'en', 'name', 'One in Five Association'),
(68305, 57175, 'cs', 'name', 'Museum of Kroměříž'),
(68306, 57176, 'en', 'name', 'Stillbirth Foundation'),
(68307, 57177, 'no_lang_code', 'name', 'KP Projekt (Czechia)'),
(68308, 57178, 'no_lang_code', 'name', 'StrojĆ­rny Bohdalice (Czechia)'),
(68309, 57179, 'no_lang_code', 'name', 'Komutex (Czechia)'),
(68310, 57180, 'fr', 'name', 'Institut de Recherche Fondamentale en Technologies Solaire'),
(68311, 57181, 'no_lang_code', 'name', 'Vossloh (France)'),
(68312, 57182, 'en', 'name', 'National Engineering Research Center of Electromagnetic Radiation Control Materials'),
(68313, 57182, 'zh', 'name', 'å›½å®¶ē”µē£č¾å°„ęŽ§åˆ¶ęę–™å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(68314, 57183, 'fr', 'name', 'Office MƩdico PƩdagogique'),
(68315, 57184, 'de', 'name', 'Imamed Radiologie Nordwest'),
(68316, 57185, 'en', 'name', 'Institute for Work Research and Organizational Consultancy'),
(68317, 57186, 'no_lang_code', 'name', 'Pokorný (Czechia)'),
(68318, 57187, 'de', 'name', 'Keramikinstitut'),
(68319, 57188, 'no_lang_code', 'name', 'Berman Group (Czechia)'),
(68320, 57189, 'no_lang_code', 'name', 'Mero Čr (Czechia)'),
(68321, 57190, 'en', 'name', 'Radiological Society of Finland'),
(68322, 57190, 'fi', 'name', 'Suomen Radiologiyhdistys'),
(68323, 57191, 'da', 'name', 'A.P. MĆøller og Hustru Chastine Mc-Kinney MĆøllers Fond'),
(68324, 57192, 'de', 'name', 'Kompetenzzentrum Gesundheit und Alter'),
(68325, 57193, 'no_lang_code', 'name', 'Backer Elektro (Czechia)'),
(68326, 57194, 'no_lang_code', 'name', 'Thomson Reuters (Switzerland)'),
(68327, 57195, 'en', 'name', 'Research and Technological Institute of Biological Industry'),
(68328, 57195, 'ru', 'name', 'Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологической ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(68329, 57196, 'no_lang_code', 'name', 'Tesla (United States)'),
(68330, 57197, 'en', 'name', 'All-Russian Scientific Research Institute of metallurgical heat'),
(68331, 57197, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¹ теплотехники'),
(68332, 57198, 'en', 'name', 'Shanghai Education Development Foundation'),
(68333, 57198, 'zh', 'name', 'äøŠęµ·åø‚ę•™č‚²å‘å±•åŸŗé‡‘ä¼š'),
(68334, 57199, 'en', 'name', 'Spark Imagination and Science Center'),
(68335, 57200, 'ko', 'name', 'ķžˆķƒ€ģ¹˜'),
(68336, 57200, 'no_lang_code', 'name', 'Hitachi (South Korea)'),
(68337, 57201, 'en', 'name', 'Medical Solutions'),
(68338, 57202, 'no_lang_code', 'name', 'ABB (Japan)'),
(68339, 57203, 'no_lang_code', 'name', 'Prague Casting Services (Czechia)'),
(68340, 57204, 'no_lang_code', 'name', 'Parker Hannifin (France)'),
(68341, 57205, 'no_lang_code', 'name', 'Euroseal (Czechia)'),
(68342, 57206, 'en', 'name', 'Zhengzhou City Science and Technology Bureau'),
(68343, 57206, 'zh', 'name', 'éƒ‘å·žåø‚ē§‘ęŠ€å±€'),
(68344, 57207, 'en', 'name', 'Benson-Henry Institute'),
(68345, 57208, 'no_lang_code', 'name', 'Alfarma (Czechia)'),
(68346, 57209, 'en', 'name', 'Girvan Institute of Technology'),
(68347, 57210, 'no_lang_code', 'name', 'NWT (Czechia)'),
(68348, 57211, 'no_lang_code', 'name', 'Asekol (Czechia)'),
(68349, 57212, 'no_lang_code', 'name', 'Atos (United States)'),
(68350, 57213, 'no_lang_code', 'name', 'Kellogg’s Research Labs (United States)'),
(68351, 57214, 'cs', 'name', 'Asociace Pro Vodu ČR'),
(68352, 57214, 'en', 'name', 'Czech Water Association'),
(68353, 57215, 'no_lang_code', 'name', 'Saline Water Conversion Corporation'),
(68354, 57216, 'no_lang_code', 'name', 'CHA Vaccine Institute (South Korea)'),
(68355, 57217, 'no_lang_code', 'name', 'Danaher (Switzerland)'),
(68356, 57218, 'no_lang_code', 'name', 'Nuxe (France)'),
(68357, 57219, 'en', 'name', 'Sri Lanka College of Paediatricians'),
(68358, 57220, 'en', 'name', 'Tommy Fuss Fund'),
(68359, 57221, 'en', 'name', 'Northern Cancer Foundation'),
(68360, 57221, 'fr', 'name', 'Fondation du Nord en cancƩrologie'),
(68361, 57222, 'en', 'name', 'World Bank Group'),
(68362, 57223, 'no_lang_code', 'name', 'Logis (Czechia)'),
(68363, 57224, 'en', 'name', 'Community Action of Skagit County'),
(68364, 57225, 'no_lang_code', 'name', 'Geomin (Czechia)'),
(68365, 57226, 'no_lang_code', 'name', 'Živa (Czechia)'),
(68366, 57227, 'no_lang_code', 'name', 'Abegu (Czechia)'),
(68367, 57228, 'no_lang_code', 'name', 'Vupek - Economy (Czechia)'),
(68368, 57229, 'de', 'name', 'Krisenintervention Schweiz'),
(68369, 57230, 'id', 'name', 'Badan Penelitian dan Pengembangan Kesehatan'),
(68370, 57231, 'en', 'name', 'Ordnance Engineering College'),
(68371, 57231, 'zh', 'name', '中国人民解放军军械巄程学院'),
(68372, 57232, 'cs', 'name', 'PolabskƩ Muzeum'),
(68373, 57233, 'no_lang_code', 'name', 'GeoExpert (Switzerland)'),
(68374, 57234, 'no_lang_code', 'name', 'Ferro OK (Czechia)'),
(68375, 57235, 'fr', 'name', 'Enilia Ensmic'),
(68376, 57236, 'no_lang_code', 'name', 'Airfoils (United States)'),
(68377, 57237, 'no_lang_code', 'name', 'Realistic (Czechia)'),
(68378, 57238, 'de', 'name', 'Neues Museum Biel'),
(68379, 57239, 'en', 'name', 'Wales Institute of Cognitive Neuroscience'),
(68380, 57240, 'en', 'name', 'Institute of Plasma Physics'),
(68381, 57240, 'it', 'name', 'Istituto di Fisica del Plasma "Piero Caldirola"'),
(68382, 57241, 'fi', 'name', 'KH Renlundin sƤƤtiƶ'),
(68383, 57242, 'no_lang_code', 'name', 'Atro Rýmařov (Czechia)'),
(68384, 57243, 'no_lang_code', 'name', 'G M Chemie (Czechia)'),
(68385, 57244, 'no_lang_code', 'name', 'ib1.cz (Czechia)'),
(68386, 57245, 'no_lang_code', 'name', 'Soundtherm (Switzerland)'),
(68387, 57246, 'en', 'name', 'Thrivent Financial'),
(68388, 57247, 'en', 'name', 'Defense Contract Audit Agency'),
(68389, 57248, 'no_lang_code', 'name', 'Mondelēz International (Germany)'),
(68390, 57249, 'no_lang_code', 'name', 'AWK (Switzerland)'),
(68391, 57250, 'no_lang_code', 'name', 'Gilson (United Kingdom)'),
(68392, 57251, 'en', 'name', 'National Institute of Research on Jute and Allied Fibre Technology'),
(68393, 57252, 'cs', 'name', 'Galerie Klatovy'),
(68394, 57253, 'no_lang_code', 'name', 'Eurofins (Czechia)'),
(68395, 57254, 'no_lang_code', 'name', 'Garmin (Czechia)'),
(68396, 57255, 'en', 'name', 'Caucasus Institute for Peace, Democracy and Development'),
(68397, 57256, 'no_lang_code', 'name', 'FWRadiology'),
(68398, 57257, 'no_lang_code', 'name', 'Hillrom (Australia)'),
(68399, 57258, 'no_lang_code', 'name', 'Stavos Brno (Czechia)'),
(68400, 57259, 'it', 'name', 'Inclusione Andicap Ticino'),
(68401, 57260, 'en', 'name', 'North Carolina Department of Public Safety'),
(68402, 57261, 'no_lang_code', 'name', 'Hedva (Czechia)'),
(68403, 57262, 'en', 'name', 'Society for Research into Higher Education'),
(68404, 57263, 'it', 'name', 'Museo Civico Villa dei Cedri'),
(68405, 57264, 'en', 'name', 'Siragusa Family Foundation'),
(68406, 57265, 'en', 'name', 'Marble Arch Medical Centre'),
(68407, 57266, 'no_lang_code', 'name', '3E Praha Engineering (Czechia)'),
(68408, 57267, 'cs', 'name', 'Spolek PRO BIO PoradenstvĆ­'),
(68409, 57268, 'no_lang_code', 'name', 'Eloret (United States)'),
(68410, 57269, 'no_lang_code', 'name', 'Escape Therapeutics (United States)'),
(68411, 57270, 'no_lang_code', 'name', 'Ekozink Praha (Czechia)'),
(68412, 57271, 'no_lang_code', 'name', 'Soair (United States)'),
(68413, 57272, 'no_lang_code', 'name', 'AgriKomp Bohemia (Czechia)'),
(68414, 57273, 'no_lang_code', 'name', 'Green Solution (Czechia)'),
(68415, 57274, 'en', 'name', 'SIDS Calgary Society');
INSERT INTO `ror_settings` VALUES
(68416, 57275, 'en', 'name', 'Stockbridge Munsee Tribal Council'),
(68417, 57276, 'de', 'name', 'Institut für Bioanalytik, Umwelt-Toxikologie und Biotechnologie Halle'),
(68418, 57277, 'cs', 'name', 'Český Svaz Včelařů'),
(68419, 57278, 'cs', 'name', 'Nemocnice Sokolov'),
(68420, 57279, 'no_lang_code', 'name', 'Geo7 (Switzerland)'),
(68421, 57280, 'en', 'name', 'Foundation for Orthopaedic Research and Education'),
(68422, 57281, 'fr', 'name', 'Office de la Culture Section d''archƩologie et PalƩontologie'),
(68423, 57282, 'no_lang_code', 'name', 'Twente Medical Systems International (Netherlands)'),
(68424, 57283, 'no_lang_code', 'name', 'Teaz (Czechia)'),
(68425, 57284, 'fr', 'name', 'Centre InterrƩgional de Perfectionnement'),
(68426, 57285, 'cs', 'name', 'ČeskÔ Hlava'),
(68427, 57286, 'cs', 'name', 'Zdravotní Ústav Se Sídlem v Ústí nad Labem'),
(68428, 57287, 'en', 'name', 'Perth Childrens Hospital Foundation'),
(68429, 57288, 'no_lang_code', 'name', 'Int''Air Medical (France)'),
(68430, 57289, 'cs', 'name', 'JIC'),
(68431, 57290, 'no_lang_code', 'name', 'Helioscreen (France)'),
(68432, 57291, 'no_lang_code', 'name', 'Galatek (Czechia)'),
(68433, 57292, 'no_lang_code', 'name', 'Noza (Czechia)'),
(68434, 57293, 'cs', 'name', 'Dřevařský Ćŗstav'),
(68435, 57293, 'en', 'name', 'Timber Institute'),
(68436, 57294, 'no_lang_code', 'name', 'Eutit (Czechia)'),
(68437, 57295, 'en', 'name', 'William G McGowan Charitable Fund'),
(68438, 57296, 'no_lang_code', 'name', 'Toma (Czechia)'),
(68439, 57297, 'en', 'name', 'Swedish Stroke Association'),
(68440, 57297, 'sv', 'name', 'STROKE-Riksfƶrbundet'),
(68441, 57298, 'no_lang_code', 'name', 'Amdocs (Cyprus)'),
(68442, 57299, 'no_lang_code', 'name', 'MGE Data (Czechia)'),
(68443, 57300, 'en', 'name', 'Centre for Training and Integrated Research In ASAL Development'),
(68444, 57301, 'no_lang_code', 'name', 'Pure Bohemia (Czechia)'),
(68445, 57302, 'cs', 'name', 'Nemocnice VyŔkov'),
(68446, 57303, 'no_lang_code', 'name', 'Biophytis (France)'),
(68447, 57304, 'en', 'name', 'Falk Foundation'),
(68448, 57305, 'no_lang_code', 'name', 'Laboratoire Odost (France)'),
(68449, 57306, 'en', 'name', 'Shazhou Professional Institute Of Technology'),
(68450, 57306, 'zh', 'name', 'ę²™ę“²čŒäøšå·„å­¦é™¢'),
(68451, 57307, 'no_lang_code', 'name', 'Luciol Instruments (Switzerland)'),
(68452, 57308, 'cs', 'name', 'TýmovÔ iniciativa pro místní udržitelný rozvoj'),
(68453, 57309, 'no_lang_code', 'name', 'J-VST (Czechia)'),
(68454, 57310, 'en', 'name', 'Australian Regenerative Medicine Institute'),
(68455, 57311, 'en', 'name', 'China Environmental Protection Foundation'),
(68456, 57312, 'en', 'name', 'Voronezh State Institute of Physical Culture'),
(68457, 57312, 'ru', 'name', 'Воронежский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(68458, 57313, 'no_lang_code', 'name', 'Å kola Welding (Czechia)'),
(68459, 57314, 'no_lang_code', 'name', 'Cosmalia (France)'),
(68460, 57315, 'no_lang_code', 'name', 'Dow Chemical (India)'),
(68461, 57316, 'en', 'name', 'USDA Rural Development'),
(68462, 57317, 'en', 'name', 'Cityzen Sciences'),
(68463, 57318, 'en', 'name', 'Wallace Genetic Foundation'),
(68464, 57319, 'no_lang_code', 'name', 'AQUAdem (Czechia)'),
(68465, 57320, 'en', 'name', 'Horonobe Research Institute for the Subsurface Environment'),
(68466, 57321, 'no_lang_code', 'name', 'PROFiber Networking (Czechia)'),
(68467, 57322, 'de', 'name', 'Schweizerische Bundeskanzlei'),
(68468, 57323, 'en', 'name', 'Veterinary Diagnostics Institute'),
(68469, 57324, 'no_lang_code', 'name', 'I2L Research (Czechia)'),
(68470, 57325, 'no_lang_code', 'name', 'Heraeus (Belgium)'),
(68471, 57326, 'de', 'name', 'Vereinigung Analytischer Kinder- und Jugendlichen-Psychotherapeuten'),
(68472, 57327, 'no_lang_code', 'name', 'IHI Corporation (Czechia)'),
(68473, 57328, 'en', 'name', 'Central Research Institute of Geological Prospecting for Base and Precious Metals'),
(68474, 57329, 'de', 'name', 'Stiftung für Menschen mit seltenen Krankheiten'),
(68475, 57329, 'en', 'name', 'Foundation for People with Rare Diseases'),
(68476, 57330, 'no_lang_code', 'name', 'Svit (Czechia)'),
(68477, 57331, 'no_lang_code', 'name', 'Charvat AXL (Czechia)'),
(68478, 57332, 'no_lang_code', 'name', 'Verlagsvertretung Susan Filges (Germany)'),
(68479, 57333, 'it', 'name', 'Liceo Cantonale'),
(68480, 57334, 'en', 'name', 'Marine Research Centre'),
(68481, 57335, 'en', 'name', 'Tamkin Foundation'),
(68482, 57336, 'no_lang_code', 'name', 'Amcor (Australia)'),
(68483, 57337, 'no_lang_code', 'name', 'Huawei Technologies (France)'),
(68484, 57338, 'no_lang_code', 'name', 'Kapsch (Czechia)'),
(68485, 57339, 'no_lang_code', 'name', 'Integrated Micro-Electronics (Czechia)'),
(68486, 57340, 'no_lang_code', 'name', 'Annidis (Canada)'),
(68487, 57341, 'no_lang_code', 'name', 'Phytosynthetix (United States)'),
(68488, 57342, 'en', 'name', 'Xi''an Science Technology Bureau'),
(68489, 57342, 'zh', 'name', 'č„æå®‰åø‚ē§‘ęŠ€å±€'),
(68490, 57343, 'cs', 'name', 'Řízení letového provozu České republiky'),
(68491, 57343, 'no_lang_code', 'name', 'Air Navigation Services (Czechia)'),
(68492, 57344, 'no_lang_code', 'name', 'Biotest (United States)'),
(68493, 57345, 'no_lang_code', 'name', 'Resec (Czechia)'),
(68494, 57346, 'no_lang_code', 'name', 'Puruplast (Czechia)'),
(68495, 57347, 'no_lang_code', 'name', 'Flowmon Networks (Czechia)'),
(68496, 57348, 'en', 'name', 'Science and Technology Center in Ukraine'),
(68497, 57349, 'no_lang_code', 'name', 'Gepro (Czechia)'),
(68498, 57350, 'en', 'name', 'Thermal and Electric Energy Technology Foundation'),
(68499, 57350, 'ja', 'name', 'ē†±ćƒ»é›»ę°—ć‚Øćƒćƒ«ć‚®ćƒ¼ęŠ€č”“č²”å›£'),
(68500, 57351, 'fr', 'name', 'Institut Protestant de ThƩologie'),
(68501, 57352, 'en', 'name', 'Robert W Deutsch Foundation'),
(68502, 57353, 'no_lang_code', 'name', 'PBT Rožnov (Czechia)'),
(68503, 57354, 'en', 'name', 'Pierre Elliott Trudeau Foundation'),
(68504, 57354, 'fr', 'name', 'Fondation Pierre Elliott Trudeau'),
(68505, 57355, 'no_lang_code', 'name', 'Nidec (United States)'),
(68506, 57356, 'no_lang_code', 'name', 'Laboratoire CCD (France)'),
(68507, 57357, 'ja', 'name', 'ć‚­ćƒ¤ćƒŽćƒ³ę Ŗå¼ä¼šē¤¾'),
(68508, 57357, 'no_lang_code', 'name', 'Canon (France)'),
(68509, 57358, 'no_lang_code', 'name', 'Sopac Medical (France)'),
(68510, 57359, 'es', 'name', 'Gobierno de Chile'),
(68511, 57360, 'no_lang_code', 'name', 'Transcon Electronic Systems (Czechia)'),
(68512, 57361, 'no_lang_code', 'name', 'Kotouč Štramberk (Czechia)'),
(68513, 57362, 'en', 'name', 'Vilcek Foundation'),
(68514, 57363, 'no_lang_code', 'name', 'Genetrac (Czechia)'),
(68515, 57364, 'en', 'name', 'IMDEA Nanoscience'),
(68516, 57364, 'es', 'name', 'Instituto IMDEA Nanociencia'),
(68517, 57365, 'no_lang_code', 'name', 'Form (Czechia)'),
(68518, 57366, 'fr', 'name', 'Institut SupƩrieur de Biotechnologie de Sfax'),
(68519, 57367, 'cs', 'name', 'Institut regionƔlnƭch informacƭ'),
(68520, 57367, 'en', 'name', 'Institute for Regional Information'),
(68521, 57368, 'cs', 'name', 'LĆ”zně Poděbrady (Czechia)'),
(68522, 57369, 'no_lang_code', 'name', 'Mat-Tec (Switzerland)'),
(68523, 57370, 'en', 'name', 'Institute of Physics. HI Amirkhanova'),
(68524, 57370, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики им. Š„.И. Амирханова'),
(68525, 57371, 'no_lang_code', 'name', 'Activair (Czechia)'),
(68526, 57372, 'bs', 'name', 'Vive Zene Centar za terapiju i rehabilitaciju'),
(68527, 57372, 'en', 'name', 'Vive Zene'),
(68528, 57373, 'cs', 'name', 'Obnovitelných Zdrojů Energie'),
(68529, 57374, 'en', 'name', 'Rett Syndrome Association of Illinois'),
(68530, 57375, 'fr', 'name', 'MusƩe Cantonal d''ArchƩologie et d''Histoire'),
(68531, 57376, 'no_lang_code', 'name', 'DKD mƩdical (France)'),
(68532, 57377, 'en', 'name', 'Colorado Latino Leadership, Advocacy & Research Organization'),
(68533, 57378, 'de', 'name', 'IFB AdipositasErkrankungen'),
(68534, 57378, 'en', 'name', 'IFB Adiposity Diseases'),
(68535, 57379, 'no_lang_code', 'name', 'Eco Building Brno (Czechia)'),
(68536, 57380, 'fr', 'name', 'Institut de Recherche sur la Renaissance l''Age Classique et les LumiĆØres'),
(68537, 57381, 'no_lang_code', 'name', 'Empo Praha (Czechia)'),
(68538, 57382, 'en', 'name', 'Czech Society for Building Law'),
(68539, 57383, 'en', 'name', 'Caesars Foundation'),
(68540, 57384, 'cs', 'name', 'Expresnƭ AstronomickƩ Informace'),
(68541, 57385, 'fr', 'name', 'HƓpital de Saint-Loup'),
(68542, 57386, 'de', 'name', 'Staatsarchiv Luzern'),
(68543, 57387, 'cs', 'name', 'ČeskÔ BioplynovÔ Asociace'),
(68544, 57387, 'en', 'name', 'Czech Biogas Association'),
(68545, 57388, 'no_lang_code', 'name', 'MJM Litovel (Czechia)'),
(68546, 57389, 'no_lang_code', 'name', 'Indigo Information Services (United States)'),
(68547, 57390, 'sv', 'name', 'Stiftelsen Tornspiran'),
(68548, 57391, 'no_lang_code', 'name', 'Trevos Kostalov (Czechia)'),
(68549, 57392, 'no_lang_code', 'name', 'Ness Technologies'),
(68550, 57393, 'no_lang_code', 'name', 'Saar Gummi (Czechia)'),
(68551, 57394, 'no_lang_code', 'name', 'Metra Blansko (Czechia)'),
(68552, 57395, 'no_lang_code', 'name', 'Gypstrend (Czechia)'),
(68553, 57396, 'no_lang_code', 'name', 'Ventura-Venkov (Czechia)'),
(68554, 57397, 'no_lang_code', 'name', 'Pegas Gonda (Czechia)'),
(68555, 57398, 'no_lang_code', 'name', 'Koh-I-Noor (Czechia)'),
(68556, 57399, 'no_lang_code', 'name', 'Maisey (New Zealand)'),
(68557, 57400, 'en', 'name', 'Mohawk Valley Psychiatric Center'),
(68558, 57401, 'en', 'name', 'Himalayan Institute of Yoga Science and Philosophy'),
(68559, 57402, 'en', 'name', 'International Museum of Horology'),
(68560, 57402, 'fr', 'name', 'MusƩe international d''horlogerie'),
(68561, 57403, 'no_lang_code', 'name', 'Presi (France)'),
(68562, 57404, 'en', 'name', 'Steel Tank Institute'),
(68563, 57405, 'en', 'name', 'National Academy of Sciences India'),
(68564, 57405, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤…ą¤•ą¤¾ą¤¦ą¤®ą„€, भारत'),
(68565, 57406, 'no_lang_code', 'name', 'Innovative Research Group (Canada)'),
(68566, 57407, 'en', 'name', 'Wholesome Wave Foundation Charitable Ventures'),
(68567, 57408, 'de', 'name', 'Liechtenstein Institute, Liechtenstein-Institut'),
(68568, 57409, 'en', 'name', 'Institute for Advanced Engineering'),
(68569, 57409, 'ko', 'name', 'ź³ źø‰ 공학 ģ—°źµ¬ģ†Œ'),
(68570, 57410, 'no_lang_code', 'name', 'NationalRad (United States)'),
(68571, 57411, 'no_lang_code', 'name', 'ModemTec (Czechia)'),
(68572, 57412, 'cs', 'name', 'StředočeskĆ” vědeckĆ” knihovka v Kladně'),
(68573, 57412, 'en', 'name', 'Central Bohemian Research Library'),
(68574, 57413, 'cs', 'name', 'Společnost pro Studium Sekt a Nových NĆ”boženských SměrÅÆ'),
(68575, 57414, 'no_lang_code', 'name', 'Ahlstrom-Munksjƶ (United States)'),
(68576, 57415, 'en', 'name', 'Ludwig Cancer Research'),
(68577, 57416, 'no_lang_code', 'name', 'Cecho Bohumil CempĆ­rek (Czechia)'),
(68578, 57417, 'nl', 'name', 'Revalidatiefonds'),
(68579, 57418, 'no_lang_code', 'name', 'Pivovar KƔcov (Czechia)'),
(68580, 57419, 'cs', 'name', 'Muzeum romskƩ kultury'),
(68581, 57419, 'en', 'name', 'Museum of Romani Culture'),
(68582, 57420, 'ja', 'name', 'äø‰č±ē·åˆē ”ē©¶ę‰€'),
(68583, 57420, 'no_lang_code', 'name', 'Mitsubishi Research Institute (Japan)'),
(68584, 57421, 'no_lang_code', 'name', 'SCIA (Czechia)'),
(68585, 57422, 'en', 'name', 'Iowa Department on Aging'),
(68586, 57423, 'no_lang_code', 'name', 'Plzensky Prazdroj (Czechia)'),
(68587, 57424, 'no_lang_code', 'name', 'OKF (Czechia)'),
(68588, 57425, 'no_lang_code', 'name', 'Minerva Boskovice (Czechia)'),
(68589, 57426, 'no_lang_code', 'name', 'BDO Audit (Czechia)'),
(68590, 57427, 'en', 'name', 'Saint Lukes Foundation'),
(68591, 57428, 'de', 'name', 'Kantonsschule Schaffhausen'),
(68592, 57429, 'no_lang_code', 'name', 'Chmelarstvi Druzstvo Žatec (Czechia)'),
(68593, 57430, 'en', 'name', 'SYSU-CMU International Joint Research Institute'),
(68594, 57431, 'no_lang_code', 'name', 'Denso (United States)'),
(68595, 57432, 'no_lang_code', 'name', 'Femma (Czechia)'),
(68596, 57433, 'no_lang_code', 'name', 'Veskom (Czechia)'),
(68597, 57434, 'no_lang_code', 'name', 'Ball (Sweden)'),
(68598, 57435, 'en', 'name', 'Energy Foundation'),
(68599, 57436, 'en', 'name', 'Instrumentarium Science Foundation'),
(68600, 57436, 'fi', 'name', 'Instrumentariumin tiedesƤƤtiƶ'),
(68601, 57437, 'no_lang_code', 'name', 'Space Devices (Czechia)'),
(68602, 57438, 'no_lang_code', 'name', 'Mobility Carsharing (Switzerland)'),
(68603, 57439, 'no_lang_code', 'name', 'Johnson Controls (France)'),
(68604, 57440, 'no_lang_code', 'name', 'Rockwell Automation (Switzerland)'),
(68605, 57441, 'en', 'name', 'Institute of Archaeology'),
(68606, 57441, 'hu', 'name', 'Magyar TudomƔnyos AkadƩmia RƩgƩszeti IntƩzet'),
(68607, 57442, 'en', 'name', 'Scientific Research Institute of Goznak'),
(68608, 57442, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гознака'),
(68609, 57443, 'no_lang_code', 'name', 'Planair (Switzerland)'),
(68610, 57444, 'no_lang_code', 'name', 'Agroprojekt (Czechia)'),
(68611, 57445, 'en', 'name', 'Charlton Installation Services'),
(68612, 57446, 'en', 'name', 'Statewide Parent Advocacy Network'),
(68613, 57447, 'no_lang_code', 'name', 'RPIC ViP (Czechia)'),
(68614, 57448, 'en', 'name', 'Royal Jubilee Maternity Services'),
(68615, 57449, 'de', 'name', 'Ɩsterreichische Bundesregierung'),
(68616, 57449, 'en', 'name', 'Government of Austria'),
(68617, 57450, 'en', 'name', 'Raymond Educational Foundation'),
(68618, 57451, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Australia)'),
(68619, 57452, 'de', 'name', 'ARGO Stiftung'),
(68620, 57452, 'en', 'name', 'ARGO Foundation'),
(68621, 57453, 'no_lang_code', 'name', 'Theranostics (New Zealand)'),
(68622, 57454, 'no_lang_code', 'name', 'Natura (Czechia)'),
(68623, 57455, 'en', 'name', 'Kusudohara Memorial Foundation'),
(68624, 57455, 'ja', 'name', 'åÆæåŽŸčØ˜åæµč²”å›£'),
(68625, 57456, 'en', 'name', 'Intergovernmental Panel on Climate Change'),
(68626, 57457, 'en', 'name', 'Sedgwick Museum of Earth Sciences'),
(68627, 57458, 'cs', 'name', 'ČeskĆ© Loděnice'),
(68628, 57459, 'no_lang_code', 'name', 'Fonterra (United States)'),
(68629, 57460, 'en', 'name', 'Sisters of Charity Health System'),
(68630, 57461, 'no_lang_code', 'name', 'John Deere (Germany)'),
(68631, 57462, 'no_lang_code', 'name', 'EGE (Czechia)'),
(68632, 57463, 'fr', 'name', 'RƩseau Fribourgeois de SantƩ Mentale'),
(68633, 57464, 'de', 'name', 'Inhaberin Büro für Laufbahnpsychologie'),
(68634, 57464, 'en', 'name', 'Dr. Lisbeth Hurni Coaching & Consulting'),
(68635, 57465, 'en', 'name', 'Institute of Theoretical Physics'),
(68636, 57465, 'zh', 'name', '中国科学院理论物理研究所'),
(68637, 57466, 'en', 'name', 'Institute for Musicology'),
(68638, 57466, 'hu', 'name', 'MTA BölcsészettudomÔnyi Kutatóközpont ZenetudomÔnyi Intézet'),
(68639, 57467, 'no_lang_code', 'name', 'Membrane Protective Technologies (United States)'),
(68640, 57468, 'en', 'name', 'Danube Research Institute'),
(68641, 57468, 'hu', 'name', 'Duna-Kutató Intézet'),
(68642, 57469, 'no_lang_code', 'name', 'Top-Bio (Czechia)'),
(68643, 57470, 'en', 'name', 'Sterling-Turner Foundation'),
(68644, 57471, 'no_lang_code', 'name', 'Institut pro SociÔlní a Ekonomické Analýzy'),
(68645, 57472, 'no_lang_code', 'name', 'AkzoNobel (France)'),
(68646, 57473, 'en', 'name', 'Center for Veterinary Medicine'),
(68647, 57474, 'de', 'name', 'Kantonale Planungsgruppe'),
(68648, 57475, 'cs', 'name', 'Výkonové TransformÔtory'),
(68649, 57475, 'no_lang_code', 'name', 'ETD Transformatory (Czechia)'),
(68650, 57476, 'de', 'name', 'ForschungsstƤtte der Evangelischen Studiengemeinschaft'),
(68651, 57477, 'en', 'name', 'Stark Community Foundation'),
(68652, 57478, 'de', 'name', 'Deutsche Stiftung für Herzforschung'),
(68653, 57478, 'en', 'name', 'German Heart Research Foundation'),
(68654, 57479, 'no_lang_code', 'name', 'XploSafe (United States)'),
(68655, 57480, 'en', 'name', 'Scan Foundation'),
(68656, 57481, 'en', 'name', 'Carilion Roanoke Community Hospital'),
(68657, 57482, 'no_lang_code', 'name', 'Prikner - Tepelné zpracovÔní kovů (Czechia)'),
(68658, 57483, 'en', 'name', 'Hope for Vision'),
(68659, 57484, 'en', 'name', 'Royal Literary Fund'),
(68660, 57485, 'cs', 'name', 'PsychiatrickĆ” Nemocnice Bohnice'),
(68661, 57486, 'en', 'name', 'Office of Research Services'),
(68662, 57487, 'en', 'name', 'Womens Foundation of Minnesota'),
(68663, 57488, 'no_lang_code', 'name', 'Sports Turf Research Institute (United Kingdom)'),
(68664, 57489, 'en', 'name', 'Dunn''s Fish Farm'),
(68665, 57490, 'no_lang_code', 'name', 'ƅF (Czechia)'),
(68666, 57491, 'no_lang_code', 'name', 'Vrtný a Geologický Průzkum (Czechia)'),
(68667, 57492, 'no_lang_code', 'name', 'Sofralab (France)'),
(68668, 57493, 'en', 'name', 'Tracy Jo Wilson Ovarian Cancer Foundation'),
(68669, 57494, 'no_lang_code', 'name', 'Anapartners (Czechia)'),
(68670, 57495, 'no_lang_code', 'name', 'Alere (Australia)'),
(68671, 57496, 'no_lang_code', 'name', '3G Consulting Engineers (Czechia)'),
(68672, 57497, 'en', 'name', 'South Central VA Health Care Network'),
(68673, 57498, 'en', 'name', 'VA Healthcare System Serving Ohio, Indiana and Michigan'),
(68674, 57499, 'da', 'name', 'HĆørslev-Fonden'),
(68675, 57500, 'no_lang_code', 'name', 'Herbacos Recordati (Czechia)'),
(68676, 57501, 'sv', 'name', 'Stiftelsen LƤngmanska Kulturfonden'),
(68677, 57502, 'no_lang_code', 'name', 'Genomac'),
(68678, 57503, 'en', 'name', 'Womens Sports Foundation'),
(68679, 57504, 'no_lang_code', 'name', 'Dosing - Dopravoprojekt Brno Group (Czechia)'),
(68680, 57505, 'no_lang_code', 'name', 'InnoLux (China)'),
(68681, 57506, 'no_lang_code', 'name', 'V. Kann Rasmussen Foundation'),
(68682, 57507, 'no_lang_code', 'name', 'Kovolit (Czechia)'),
(68683, 57508, 'no_lang_code', 'name', 'AlgaXperts (United States)'),
(68684, 57509, 'en', 'name', 'Gujarat Matikam Kalakari & Rural Technology Institute'),
(68685, 57510, 'en', 'name', 'Australian Export Grains Innovation Centre'),
(68686, 57511, 'en', 'name', 'Krylov State Research Center'),
(68687, 57511, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр им.'),
(68688, 57512, 'en', 'name', 'World Federation of Scientists'),
(68689, 57513, 'en', 'name', 'Central European Advisory Group'),
(68690, 57514, 'en', 'name', 'National Inventors Hall of Fame'),
(68691, 57515, 'en', 'name', 'Ronald McDonald House of Houston'),
(68692, 57516, 'no_lang_code', 'name', 'Net-system'),
(68693, 57517, 'no_lang_code', 'name', 'Dentsply Sirona (Switzerland)'),
(68694, 57518, 'no_lang_code', 'name', 'Shellfish Ireland (Ireland)'),
(68695, 57519, 'cs', 'name', 'Nemocnice ČeskĆ© Budějovice'),
(68696, 57520, 'no_lang_code', 'name', 'Bohemian Software Consulting (Czechia)'),
(68697, 57521, 'no_lang_code', 'name', 'ePaint (United States)'),
(68698, 57522, 'no_lang_code', 'name', 'Biopticka Laborator (Czechia)'),
(68699, 57523, 'no_lang_code', 'name', 'Kodak (Germany)'),
(68700, 57524, 'en', 'name', 'Reid Veterinary Hospital'),
(68701, 57525, 'de', 'name', 'Wettbewerbskommission'),
(68702, 57525, 'en', 'name', 'Competition Commission Secretariat'),
(68703, 57526, 'no_lang_code', 'name', 'Elzaco (Czechia)'),
(68704, 57527, 'no_lang_code', 'name', 'Infinite Eversole Specialty Crop Services (United states)'),
(68705, 57528, 'no_lang_code', 'name', 'AK signal Brno (Czechia)'),
(68706, 57529, 'no_lang_code', 'name', 'D3Soft (Czechia)'),
(68707, 57530, 'no_lang_code', 'name', 'Compuplast International (Czechia)'),
(68708, 57531, 'no_lang_code', 'name', 'X-Fab (Germany)'),
(68709, 57532, 'no_lang_code', 'name', 'Thumbay Group (United Arab Emirates)'),
(68710, 57533, 'no_lang_code', 'name', 'Vapos (Czechia)'),
(68711, 57534, 'de', 'name', 'Sozialversicherungsgericht des Kantons Zürich'),
(68712, 57535, 'en', 'name', 'Hefei Material Science and Technology Center'),
(68713, 57535, 'zh', 'name', 'åˆč‚„ē‰©č“Øē§‘å­¦ęŠ€ęœÆäø­åæƒ'),
(68714, 57536, 'en', 'name', 'Institut Icare'),
(68715, 57537, 'de', 'name', 'Neue Galerie Luzern'),
(68716, 57538, 'no_lang_code', 'name', 'TESLA Electrontubes (Czechia)'),
(68717, 57539, 'en', 'name', 'Society for Psychotherapy Research'),
(68718, 57540, 'no_lang_code', 'name', 'ZEAS Lysice (Czechia)'),
(68719, 57541, 'no_lang_code', 'name', 'Komix (Czechia)'),
(68720, 57542, 'no_lang_code', 'name', 'Project Design and Development Agency (Czechia)'),
(68721, 57543, 'no_lang_code', 'name', 'Čisté Kovy (Czechia)'),
(68722, 57544, 'en', 'name', 'Beijing Radiation Center'),
(68723, 57544, 'zh', 'name', 'åŒ—äŗ¬åø‚č¾å°„äø­åæƒ'),
(68724, 57545, 'no_lang_code', 'name', 'Medicodose Systems (France)'),
(68725, 57546, 'no_lang_code', 'name', 'Fresenius Kabi (Netherlands)'),
(68726, 57547, 'no_lang_code', 'name', 'Wenger Plattner (Switzerland)'),
(68727, 57548, 'no_lang_code', 'name', 'ZemědělskĆ© Družstvo Vrchovina (Czechia)'),
(68728, 57549, 'en', 'name', 'Central New York Research Corporation'),
(68729, 57550, 'no_lang_code', 'name', 'Parburch Medical Developments (United Kingdom)'),
(68730, 57551, 'no_lang_code', 'name', 'ExoTerra Resources (United States)'),
(68731, 57552, 'no_lang_code', 'name', 'Em Test ČR (Czechia)'),
(68732, 57553, 'no_lang_code', 'name', 'Medicrea (France)'),
(68733, 57554, 'no_lang_code', 'name', 'Schaffner (Switzerland)'),
(68734, 57555, 'en', 'name', 'Missouri Department of Agriculture'),
(68735, 57556, 'de', 'name', 'JackstƤdt Stiftung'),
(68736, 57557, 'de', 'name', 'Baden-Württemberg Stiftung'),
(68737, 57558, 'no_lang_code', 'name', 'Comtes DFM (Czechia)'),
(68738, 57559, 'no_lang_code', 'name', 'Vaillant (United States)'),
(68739, 57560, 'de', 'name', 'Privatbüro Plus'),
(68740, 57561, 'no_lang_code', 'name', 'Enantis (Czechia)'),
(68741, 57562, 'cs', 'name', 'Lesy Města Jirkova'),
(68742, 57562, 'en', 'name', 'Forests of the Town of Jirkov'),
(68743, 57563, 'en', 'name', 'VA Desert Pacific Healthcare Network'),
(68744, 57564, 'no_lang_code', 'name', 'Ball (France)'),
(68745, 57565, 'en', 'name', 'Office of Special Education and Rehabilitative Services'),
(68746, 57566, 'no_lang_code', 'name', 'Silvi Nova (Czechia)'),
(68747, 57567, 'en', 'name', 'Threshold Foundation'),
(68748, 57568, 'en', 'name', 'Fujichiro Iijima Memorial Food Science Promotion Foundation'),
(68749, 57568, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ é£Æå³¶č—¤åéƒŽčØ˜åæµé£Ÿå“ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(68750, 57569, 'no_lang_code', 'name', 'Ecowasteenergy (Czechia)'),
(68751, 57570, 'no_lang_code', 'name', 'BeHo (Czechia)'),
(68752, 57571, 'no_lang_code', 'name', 'Markent (Czechia)'),
(68753, 57572, 'en', 'name', 'Thunder Valley Community Development Corporation'),
(68754, 57573, 'it', 'name', 'Museo di Valmaggia'),
(68755, 57574, 'no_lang_code', 'name', 'Compas Automatizace (Czechia)'),
(68756, 57575, 'no_lang_code', 'name', 'Solidtech Animal Health (United States)'),
(68757, 57576, 'de', 'name', 'Theologische Hochschule Chur'),
(68758, 57577, 'no_lang_code', 'name', 'Fosil Partner (Czechia)'),
(68759, 57578, 'no_lang_code', 'name', 'Rolnické Družstvo Bezno (Czechia)'),
(68760, 57579, 'no_lang_code', 'name', 'Ecological Consulting (Czechia)'),
(68761, 57580, 'fr', 'name', 'Alliance Sud'),
(68762, 57581, 'no_lang_code', 'name', 'Ish Pumps Olomouc (Czechia)'),
(68763, 57582, 'no_lang_code', 'name', 'OrthoD (United Kingdom)'),
(68764, 57583, 'de', 'name', 'UnabhƤngige Expertenkommission Schweiz'),
(68765, 57583, 'en', 'name', 'Independent Commission of Experts Switzerland – Second World War'),
(68766, 57584, 'no_lang_code', 'name', 'Trod Medical (France)'),
(68767, 57585, 'en', 'name', 'Basko Healthcare'),
(68768, 57586, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Germany)'),
(68769, 57587, 'de', 'name', 'Fondation Philanthropique Edmond J Safra'),
(68770, 57587, 'en', 'name', 'Edmond J. Safra Philanthropic Foundation'),
(68771, 57588, 'cs', 'name', 'Asociace FinancovƔnƭ Infrastruktury Pro Mobilitu'),
(68772, 57589, 'de', 'name', 'Ausbildungs- und Tagungszentrum Bienenberg'),
(68773, 57589, 'en', 'name', 'Theological Seminary Bienenberg'),
(68774, 57590, 'no_lang_code', 'name', 'Intelligence in Medical Technologies (France)'),
(68775, 57591, 'en', 'name', 'ChildCare Education Institute'),
(68776, 57592, 'no_lang_code', 'name', 'BBMG (China)'),
(68777, 57592, 'zh', 'name', 'åŒ—äŗ¬é‡‘éš…ęŽ§č‚”ęœ‰é™å…¬åø'),
(68778, 57593, 'en', 'name', 'Central Institute of Temperate Horticulture'),
(68779, 57594, 'no_lang_code', 'name', 'Danaher (Czechia)'),
(68780, 57595, 'no_lang_code', 'name', 'Bioderma (France)'),
(68781, 57596, 'no_lang_code', 'name', 'Sangreen (Czechia)'),
(68782, 57597, 'no_lang_code', 'name', 'Technofiber (Czechia)'),
(68783, 57598, 'no_lang_code', 'name', 'ERGOWORK (Czechia)'),
(68784, 57599, 'no_lang_code', 'name', 'ŽDB DrÔtovna (Czechia)'),
(68785, 57600, 'en', 'name', 'Weed Science Society of America'),
(68786, 57601, 'no_lang_code', 'name', 'Deep Space Industries (United States)'),
(68787, 57602, 'no_lang_code', 'name', 'Bioconsult (Czechia)'),
(68788, 57603, 'no_lang_code', 'name', 'Cardinal Health (Australia)'),
(68789, 57604, 'no_lang_code', 'name', 'Ɩkoplant International (Czechia)'),
(68790, 57605, 'cs', 'name', 'ArcheologickƩ Centrum Olomouc'),
(68791, 57606, 'nl', 'name', 'Stichting Achmea Slachtoffer en Samenleving'),
(68792, 57607, 'en', 'name', 'Parents'' Place of Maryland'),
(68793, 57608, 'no_lang_code', 'name', 'Medical Dispensing Systems (Netherlands)'),
(68794, 57609, 'no_lang_code', 'name', 'Nova Insurance Services (China)'),
(68795, 57610, 'cs', 'name', 'LiberƔlnƭ institut'),
(68796, 57611, 'en', 'name', 'Kumamoto Orthopedic Surgery Hospital'),
(68797, 57612, 'en', 'name', 'Bureau of the Fiscal Service'),
(68798, 57613, 'no_lang_code', 'name', 'Clutex (Czechia)'),
(68799, 57614, 'de', 'name', 'Schweißtechnische Lehr- und Versuchsanstalt'),
(68800, 57615, 'no_lang_code', 'name', 'Schmizo (Switzerland)'),
(68801, 57616, 'en', 'name', 'Stimson Miller Foundation'),
(68802, 57617, 'no_lang_code', 'name', 'Union Lesnƭ BrƔna (Czechia)'),
(68803, 57618, 'de', 'name', 'Fondation pour la mƩdecine de laboratoire'),
(68804, 57618, 'en', 'name', 'Foundation for laboratory medicine'),
(68805, 57619, 'cs', 'name', 'ZemědělskĆ© Družstvo Kojčice'),
(68806, 57620, 'no_lang_code', 'name', 'Obchodnƭ TiskƔrny Kolƭn'),
(68807, 57621, 'en', 'name', 'International Dialogue Centre'),
(68808, 57622, 'no_lang_code', 'name', 'Fresenius Kabi (Czechia)'),
(68809, 57623, 'de', 'name', 'Kantonsspital Baden'),
(68810, 57624, 'en', 'name', 'Government of Ghana'),
(68811, 57625, 'no_lang_code', 'name', 'ŽSD (Czechia)'),
(68812, 57626, 'cs', 'name', 'Český Olympijský Výbor'),
(68813, 57626, 'en', 'name', 'Czech Olympic Committee'),
(68814, 57627, 'pt', 'name', 'Sociedade Brasileira de Cirurgia PlƔstica'),
(68815, 57628, 'no_lang_code', 'name', 'TraceTag (France)'),
(68816, 57629, 'no_lang_code', 'name', 'Kavalier (Czechia)'),
(68817, 57630, 'de', 'name', 'Spital Muri'),
(68818, 57631, 'en', 'name', 'Agrophysical Research Institute'),
(68819, 57631, 'ru', 'name', 'Агрофизический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(68820, 57632, 'no_lang_code', 'name', 'Bjl Laboratoires (France)'),
(68821, 57633, 'no_lang_code', 'name', 'AEV (Czechia)'),
(68822, 57634, 'en', 'name', 'International Centre for Sports Studies'),
(68823, 57634, 'fr', 'name', 'Centre International d''Etude du Sport'),
(68824, 57635, 'no_lang_code', 'name', 'ILD (Czechia)'),
(68825, 57636, 'en', 'name', 'Northeast Climate Science Center'),
(68826, 57637, 'no_lang_code', 'name', 'Michelin (United States)'),
(68827, 57638, 'en', 'name', 'Lishman Health Foundation'),
(68828, 57639, 'de', 'name', 'Lamprecht und Stamm Sozialforschung und Beratung'),
(68829, 57640, 'fr', 'name', 'Hirslanden Clinique des Grangettes'),
(68830, 57641, 'en', 'name', 'Tony Elumelu Foundation'),
(68831, 57642, 'no_lang_code', 'name', 'RhySearch (Switzerland)'),
(68832, 57643, 'no_lang_code', 'name', 'Axon Active (Switzerland)'),
(68833, 57644, 'no_lang_code', 'name', 'Heartland Plant Innovations (United States)'),
(68834, 57645, 'no_lang_code', 'name', 'IVAR (Czechia)'),
(68835, 57646, 'en', 'name', 'Shandong Food Fermentation Industry Research and Design Institute'),
(68836, 57646, 'zh', 'name', 'å±±äøœēœé£Ÿå“å‘é…µå·„äøšē ”ē©¶č®¾č®”é™¢'),
(68837, 57647, 'no_lang_code', 'name', 'Dendera (Czechia)'),
(68838, 57648, 'en', 'name', 'Head of Government of the Republic of Tunisia'),
(68839, 57649, 'no_lang_code', 'name', 'Perrigo (United Kingdom)'),
(68840, 57650, 'en', 'name', 'International Union of Anthropological and Ethnological Sciences'),
(68841, 57651, 'de', 'name', 'Institut für Urheber- und Medienrecht'),
(68842, 57652, 'no_lang_code', 'name', 'Bentley Czech (Czechia)'),
(68843, 57653, 'en', 'name', 'Texas Department of Agriculture'),
(68844, 57654, 'no_lang_code', 'name', 'Třinecký Inženýring (Czechia)'),
(68845, 57655, 'no_lang_code', 'name', 'Niip Gradostroitelstva'),
(68846, 57655, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по разработке Š³ŠµŠ½ŠµŃ€Š°Š»ŃŒŠ½Ń‹Ń… планов Šø проектов застройки гороГов'),
(68847, 57656, 'no_lang_code', 'name', 'Glasiert (Czechia)'),
(68848, 57657, 'no_lang_code', 'name', 'ECO Management (Czechia)'),
(68849, 57658, 'en', 'name', 'Juntendo University Shizuoka Hospital'),
(68850, 57658, 'ja', 'name', 'é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žé™å²”ē—…é™¢'),
(68851, 57659, 'en', 'name', 'Institute of Agricultural Engineering'),
(68852, 57659, 'hu', 'name', 'MezőgazdasĆ”gi GĆ©pesĆ­tĆ©si IntĆ©zet'),
(68853, 57660, 'de', 'name', 'AWA-Institut'),
(68854, 57661, 'no_lang_code', 'name', 'Regent Plus Žlutice (Czechia)'),
(68855, 57662, 'en', 'name', 'Water Environment and Reuse Foundation'),
(68856, 57663, 'no_lang_code', 'name', 'Edra MƩdical (France)'),
(68857, 57664, 'en', 'name', 'Japan Institute of Wastewater Engineering Technology'),
(68858, 57664, 'ja', 'name', 'ę—„ęœ¬äø‹ę°“é“ę–°ęŠ€č”“ę©Ÿę§‹'),
(68859, 57665, 'no_lang_code', 'name', 'RDS-CZ (Czechia)'),
(68860, 57666, 'no_lang_code', 'name', 'Agren (United States)'),
(68861, 57667, 'de', 'name', 'Verwaltungsgericht Kantons Zürich'),
(68862, 57668, 'no_lang_code', 'name', 'Suisag (Switzerland)'),
(68863, 57669, 'cs', 'name', 'Projekt Odyssea'),
(68864, 57670, 'no_lang_code', 'name', 'Modřany Power (Czechia)'),
(68865, 57671, 'no_lang_code', 'name', '2EL (Czechia)'),
(68866, 57672, 'no_lang_code', 'name', 'Cubespace (Czechia)'),
(68867, 57673, 'en', 'name', 'Tuba City Regional Health Care'),
(68868, 57674, 'es', 'name', 'Fundación Alicia Koplowitz'),
(68869, 57675, 'en', 'name', 'Ronald McDonald House Charities of Eastern New England'),
(68870, 57676, 'en', 'name', 'Central Pulp & Paper Research Institute'),
(68871, 57677, 'no_lang_code', 'name', 'Enviconsult (Slovakia)'),
(68872, 57678, 'en', 'name', 'Research Partnership to Secure Energy for America'),
(68873, 57679, 'de', 'name', 'Staatsarchiv des Kantons Solothurn'),
(68874, 57680, 'cs', 'name', 'ZĆ”kladnĆ­ Å kola a MateřskĆ” Å kola Angel'),
(68875, 57681, 'no_lang_code', 'name', 'Walramcom (Czechia)'),
(68876, 57682, 'no_lang_code', 'name', 'MTMP (Czechia)'),
(68877, 57683, 'no_lang_code', 'name', 'Invisio (Germany)'),
(68878, 57684, 'en', 'name', 'International Fistball Association'),
(68879, 57685, 'sv', 'name', 'Stiftelsen Tysta Skolan'),
(68880, 57686, 'cs', 'name', 'Institut pro Udržitelný Rozvoj Sídel'),
(68881, 57686, 'en', 'name', 'Institute for Sustainable Development of Settlements'),
(68882, 57687, 'no_lang_code', 'name', 'Tagro (Czechia)'),
(68883, 57688, 'en', 'name', 'Cancer Research UK Manchester Institute'),
(68884, 57689, 'no_lang_code', 'name', 'Geostar (Czechia)'),
(68885, 57690, 'no_lang_code', 'name', 'Merkurtoys (Czechia)'),
(68886, 57691, 'no_lang_code', 'name', 'Sefam (France)'),
(68887, 57692, 'en', 'name', 'Tenovus Scotland'),
(68888, 57693, 'en', 'name', 'Institute for Cognitive Science Studies'),
(68889, 57693, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… Ų“Ł†Ų§Ų®ŲŖŪŒ'),
(68890, 57694, 'cs', 'name', 'Chovatelské Družstvo Impuls'),
(68891, 57694, 'no_lang_code', 'name', 'Breeding Cooperative Impuls (Czechia)'),
(68892, 57695, 'no_lang_code', 'name', 'Rodael (France)'),
(68893, 57696, 'cs', 'name', 'ČeskĆ” společnost experimentĆ”lnĆ­ biologie rostlin'),
(68894, 57696, 'en', 'name', 'Czech Society of Experimental Plant Biology'),
(68895, 57697, 'no_lang_code', 'name', 'Lesprojekt Východní Čechy (Czechia)'),
(68896, 57698, 'no_lang_code', 'name', 'Professional Solutions (United States)'),
(68897, 57699, 'no_lang_code', 'name', 'CleverMaps (Czechia)'),
(68898, 57700, 'cs', 'name', 'Oblastnƭ galerie Vysočiny v Jihlavě, Vysočina Regional Gallery in Jihlava'),
(68899, 57701, 'en', 'name', 'Art and History Museum of Fribourg'),
(68900, 57701, 'fr', 'name', 'MusƩe d''Art et d''Histoire de Fribourg'),
(68901, 57702, 'no_lang_code', 'name', 'Asociace GumƔrenskƩ Technologie Zlƭn (Czechia)'),
(68902, 57703, 'no_lang_code', 'name', 'Wockhardt (France)'),
(68903, 57704, 'en', 'name', 'Institute of Ecology of Mountain Territories'),
(68904, 57704, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø горных территорий Š ŠŠ'),
(68905, 57705, 'cs', 'name', 'KoordinačnĆ­ Středisko pro ResortnĆ­ ZdravotnickĆ© InformačnĆ­ SystĆ©my'),
(68906, 57706, 'no_lang_code', 'name', 'Native PR (Czechia)'),
(68907, 57707, 'no_lang_code', 'name', 'HighDim (Switzerland)'),
(68908, 57708, 'en', 'name', 'Forest Genetics Council'),
(68909, 57709, 'en', 'name', 'Courant Institute of Mathematical Sciences'),
(68910, 57710, 'en', 'name', 'Family Health Council of Central Pennsylvania'),
(68911, 57711, 'en', 'name', 'OneSight'),
(68912, 57712, 'cs', 'name', 'Svaz českých a moravských výrobnĆ­ch družstev'),
(68913, 57712, 'en', 'name', 'Union of Czech Production Co-operatives'),
(68914, 57713, 'en', 'name', 'Saccomanno Higher Education Foundation'),
(68915, 57714, 'en', 'name', 'Kosovar Centre for Security Studies'),
(68916, 57714, 'sq', 'name', 'Qendra Kosovare pƫr Studime tƫ Sigurisƫ'),
(68917, 57715, 'en', 'name', 'Swiss Integrative Center for Human Health'),
(68918, 57716, 'no_lang_code', 'name', 'LibereckƩ Strojƭrny (Czechia)'),
(68919, 57717, 'no_lang_code', 'name', 'Maspex (Czechia)'),
(68920, 57718, 'en', 'name', 'Department of Information Technology, Biotechnology and Science and Technology'),
(68921, 57719, 'no_lang_code', 'name', 'CE Traffic (Czechia)'),
(68922, 57720, 'no_lang_code', 'name', 'Kao Corporation (Spain)'),
(68923, 57721, 'en', 'name', 'Iketani Science and Technology Foundation'),
(68924, 57721, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę± č°·ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(68925, 57722, 'no_lang_code', 'name', 'Sidel (Italy)'),
(68926, 57723, 'no_lang_code', 'name', 'Sebia (France)'),
(68927, 57724, 'no_lang_code', 'name', 'Atheris Laboratories (Switzerland)'),
(68928, 57725, 'en', 'name', 'BFF Bern'),
(68929, 57726, 'en', 'name', 'Swedish Fund for Research Without Animal Experiments'),
(68930, 57726, 'sv', 'name', 'Stiftelsen Forska Utan Djurfƶrsƶk'),
(68931, 57727, 'no_lang_code', 'name', 'Canon (Australia)'),
(68932, 57728, 'no_lang_code', 'name', 'LSO Medical (France)'),
(68933, 57729, 'en', 'name', 'Agricultural Genetic Engineering Research Institute'),
(68934, 57730, 'en', 'name', 'Scottish Health Services'),
(68935, 57731, 'no_lang_code', 'name', 'Crew Services (United States)'),
(68936, 57732, 'en', 'name', 'Office of Patient Care Services'),
(68937, 57733, 'no_lang_code', 'name', 'Merci (Czechia)'),
(68938, 57734, 'en', 'name', 'Taiwan Agricultural Chemicals and Toxic Substances Research Institute'),
(68939, 57735, 'no_lang_code', 'name', 'Inset (Czechia)'),
(68940, 57736, 'no_lang_code', 'name', 'Vojenské Lesy a Statky ČR (Czechia)'),
(68941, 57737, 'en', 'name', 'Community Health Centers of Benton and Linn Counties'),
(68942, 57738, 'no_lang_code', 'name', 'Kromilk (Czechia)'),
(68943, 57739, 'no_lang_code', 'name', 'Nexum Trilog (Czechia)'),
(68944, 57740, 'cs', 'name', 'PovodĆ­ Vltavy'),
(68945, 57741, 'no_lang_code', 'name', 'Kobra Údlice (Czechia)'),
(68946, 57742, 'no_lang_code', 'name', 'Kelvion (Czechia)'),
(68947, 57743, 'cs', 'name', 'BEZK'),
(68948, 57744, 'en', 'name', 'Hawthorne Valley Association'),
(68949, 57745, 'no_lang_code', 'name', 'Bios Služby VýpočetnĆ­ Techniky (Czechia)'),
(68950, 57746, 'en', 'name', 'Okinawa Prefectural Agricultural Research Center'),
(68951, 57746, 'ja', 'name', 'ę²–ēø„ēœŒč¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(68952, 57747, 'es', 'name', 'Ministerio del Poder Popular para la Educación Universitaria, Ciencia y Tecnología'),
(68953, 57748, 'en', 'name', 'Institute of Laboratory Animal Science'),
(68954, 57749, 'en', 'name', 'Nissay Culture Foundation'),
(68955, 57749, 'ja', 'name', 'ę—„ęœ¬ē”Ÿå‘½äæé™ŗē›øäŗ’ä¼šē¤¾'),
(68956, 57750, 'de', 'name', 'Association Cartographique Internationale'),
(68957, 57750, 'en', 'name', 'International Cartographic Association'),
(68958, 57751, 'no_lang_code', 'name', 'Seva – Flora (Czechia)'),
(68959, 57752, 'no_lang_code', 'name', 'Acteon (United Kingdom)'),
(68960, 57753, 'fr', 'name', 'Vitrocentre Romont'),
(68961, 57754, 'en', 'name', 'Art as Foundation'),
(68962, 57755, 'no_lang_code', 'name', 'KonekTel (Czechia)'),
(68963, 57756, 'fr', 'name', 'Clinique de La Source'),
(68964, 57757, 'no_lang_code', 'name', 'Studi Associati (Switzerland)'),
(68965, 57758, 'en', 'name', 'Kyoto Municipal Institute of Industrial Technology and Culture'),
(68966, 57758, 'ja', 'name', 'äŗ¬éƒ½åø‚ē«‹čŠøč”“å·„ē§‘å¤§å­¦å·„ę„­ęŠ€č”“ę–‡åŒ–ē ”ē©¶ę‰€'),
(68967, 57759, 'en', 'name', 'New Huadu Business School'),
(68968, 57759, 'zh', 'name', 'ę–°åŽéƒ½å•†å­¦é™¢'),
(68969, 57760, 'de', 'name', 'Ostkirchliches Institut Regensburg'),
(68970, 57761, 'no_lang_code', 'name', 'Ekogroup Czech (Czechia)'),
(68971, 57762, 'cs', 'name', 'Muzeum Karlovy Vary'),
(68972, 57763, 'no_lang_code', 'name', 'Immobiliser Central Europe (Czechia)'),
(68973, 57764, 'no_lang_code', 'name', 'Oenobiol (France)'),
(68974, 57765, 'no_lang_code', 'name', 'Malik Management (Switzerland)'),
(68975, 57766, 'es', 'name', 'Fundacion Florencio Fiorini'),
(68976, 57767, 'no_lang_code', 'name', 'Woodcomp (Czechia)'),
(68977, 57768, 'no_lang_code', 'name', 'Isotra (Czechia)'),
(68978, 57769, 'no_lang_code', 'name', 'Bosch Rexroth (Czechia)'),
(68979, 57770, 'no_lang_code', 'name', 'Sindat (Czechia)'),
(68980, 57771, 'no_lang_code', 'name', 'Jazz Pharmaceuticals (Italy)'),
(68981, 57772, 'en', 'name', 'Community Action Agency of St. Louis County'),
(68982, 57773, 'no_lang_code', 'name', 'Irbis (Czechia)'),
(68983, 57774, 'fr', 'name', 'Institut de Recherche en HƩmatologie et Transplantation'),
(68984, 57775, 'no_lang_code', 'name', 'Telkom (South Africa)'),
(68985, 57776, 'fr', 'name', 'Laboratoires i2m'),
(68986, 57777, 'fr', 'name', 'Association Suisse pour le Service aux RƩgions et Communes'),
(68987, 57778, 'it', 'name', 'Academia Engiadina'),
(68988, 57779, 'no_lang_code', 'name', 'Atega (Czechia)'),
(68989, 57780, 'no_lang_code', 'name', 'Prefa Praha (Czechia)'),
(68990, 57781, 'en', 'name', 'Vanguard Healthcare'),
(68991, 57782, 'en', 'name', 'Westminster Guarantee Protection Trustees'),
(68992, 57783, 'no_lang_code', 'name', 'CIS Pharma (Switzerland)'),
(68993, 57784, 'no_lang_code', 'name', 'Prvnƭ regionƔlnƭ rozvojovƔ (Czechia)'),
(68994, 57785, 'no_lang_code', 'name', 'Aroma Praha (Czechia)'),
(68995, 57786, 'no_lang_code', 'name', 'Romill (Czechia)'),
(68996, 57787, 'no_lang_code', 'name', 'Nuance Communications (United Kingdom)'),
(68997, 57788, 'de', 'name', 'Schweizerische Akademie für Entwicklung'),
(68998, 57788, 'en', 'name', 'Swiss Academy for Development'),
(68999, 57789, 'nl', 'name', 'Stichting Rotterdams Kinderrevalidatie Fonds Adriaanstichting'),
(69000, 57790, 'no_lang_code', 'name', 'BohuŔovickÔ MlékÔrna (Czechia)'),
(69001, 57791, 'de', 'name', 'ZNS Hannelore Kohl Stiftung'),
(69002, 57792, 'de', 'name', 'Stiftung Zürcher Kinder- und Jugendheime'),
(69003, 57793, 'no_lang_code', 'name', 'BASF (France)'),
(69004, 57794, 'de', 'name', 'Departement Gesundheit und Soziales'),
(69005, 57795, 'de', 'name', 'Stiftung für Forschung in Spätantike und Mittelalter HR. Sennhauser'),
(69006, 57796, 'no_lang_code', 'name', 'E2A Architects (Switzerland)'),
(69007, 57797, 'no_lang_code', 'name', 'ChoceňskÔ MlékÔrn (Czechia)'),
(69008, 57798, 'no_lang_code', 'name', 'Pragolab (Czechia)'),
(69009, 57799, 'fr', 'name', 'Institut des Sciences du VƩgƩtal'),
(69010, 57800, 'no_lang_code', 'name', 'Myx (Switzerland)'),
(69011, 57801, 'en', 'name', 'Technology Academy Finland'),
(69012, 57801, 'fi', 'name', 'Tekniikan Akatemia'),
(69013, 57802, 'en', 'name', 'Whitley Wildlife Conservation Trust'),
(69014, 57803, 'no_lang_code', 'name', 'Hutní Projekt Frýdek-Místek (Czechia)'),
(69015, 57804, 'fr', 'name', 'Centre Alpien de PhytogƩographie'),
(69016, 57805, 'no_lang_code', 'name', 'Intriple (Czechia)'),
(69017, 57806, 'no_lang_code', 'name', 'J. Jindra (Czechia)'),
(69018, 57807, 'fr', 'name', 'Herbarom Laboratoire'),
(69019, 57808, 'no_lang_code', 'name', 'Laboratoires SVR (France)'),
(69020, 57809, 'en', 'name', 'Bureau of Economic Analysis'),
(69021, 57810, 'no_lang_code', 'name', 'PS Profi (Czechia)'),
(69022, 57811, 'no_lang_code', 'name', 'Trevos (Czechia)'),
(69023, 57812, 'no_lang_code', 'name', 'Trios (Czechia)'),
(69024, 57813, 'no_lang_code', 'name', 'Fosfa (Czechia)'),
(69025, 57814, 'no_lang_code', 'name', 'National Instruments (Ireland)'),
(69026, 57815, 'en', 'name', 'The Toyota Foundation'),
(69027, 57815, 'ja', 'name', 'ćƒˆćƒØć‚æč²”å›£'),
(69028, 57816, 'no_lang_code', 'name', 'Diamo (Czechia)'),
(69029, 57817, 'de', 'name', 'Büchi Labortechnik'),
(69030, 57818, 'en', 'name', 'North Dakota Office of the Governor'),
(69031, 57819, 'no_lang_code', 'name', 'VH Pharma (Czechia)'),
(69032, 57820, 'no_lang_code', 'name', 'Natus (New Zealand)'),
(69033, 57821, 'no_lang_code', 'name', 'Amati-Denak (Czechia)'),
(69034, 57822, 'en', 'name', 'Korean Endocrine Society'),
(69035, 57822, 'ko', 'name', 'ėŒ€ķ•œė‚“ė¶„ė¹„ķ•™ķšŒ'),
(69036, 57823, 'en', 'name', 'State Committee on Science and Technology'),
(69037, 57824, 'no_lang_code', 'name', 'Metso (United States)'),
(69038, 57825, 'no_lang_code', 'name', 'ATS Telcom Praha (Czechia)'),
(69039, 57826, 'en', 'name', 'PƤivikki and Sakari Sohlberg Foundation'),
(69040, 57826, 'fi', 'name', 'PƤivikki ja Sakari Sohlbergin sƤƤtiƶ'),
(69041, 57827, 'no_lang_code', 'name', 'AteliƩry TapisƩriƭ sro'),
(69042, 57828, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia em Entomologia Molecular'),
(69043, 57829, 'no_lang_code', 'name', 'Ingredia (Czechia)'),
(69044, 57830, 'en', 'name', 'Southern African Institute of Mining and Metallurgy'),
(69045, 57831, 'no_lang_code', 'name', 'Baroza (Czechia)'),
(69046, 57832, 'cs', 'name', 'MezinÔrodní TestovÔní Drůbeže'),
(69047, 57833, 'no_lang_code', 'name', 'Gleason (United States)'),
(69048, 57834, 'en', 'name', 'Southwestern Community College - North Carolina'),
(69049, 57835, 'en', 'name', 'Strategic Initiative Materials in Flanders'),
(69050, 57836, 'cs', 'name', 'ZemědělskĆ© Družstvo VlastnĆ­kÅÆ MrĆ”kotĆ­n'),
(69051, 57837, 'no_lang_code', 'name', 'Treeze (Switzerland)'),
(69052, 57838, 'de', 'name', 'nstitut für angewandte Biologie und Landschaftsplanung'),
(69053, 57838, 'en', 'name', 'Institute for applied Biology and Landscape Planning'),
(69054, 57839, 'no_lang_code', 'name', 'Neurotune (Switzerland)'),
(69055, 57840, 'en', 'name', 'Court of Arbitration for Sport'),
(69056, 57840, 'fr', 'name', 'Tribunal arbitral du sport'),
(69057, 57841, 'no_lang_code', 'name', 'Jean-Marc Blanc Consultant (Switzerland)'),
(69058, 57842, 'no_lang_code', 'name', 'BENEKOVterm (Czechia)'),
(69059, 57843, 'no_lang_code', 'name', 'Smart Technik (Czechia)'),
(69060, 57844, 'cs', 'name', 'Centrum pro Studium Demokracie a Kultury'),
(69061, 57844, 'en', 'name', 'Centre for the Study of Democracy and Culture'),
(69062, 57845, 'no_lang_code', 'name', 'STMicroelectronics (Czechia)'),
(69063, 57846, 'en', 'name', 'R. J. Taylor, Jr. Foundation'),
(69064, 57847, 'no_lang_code', 'name', 'SMP (Czechia)'),
(69065, 57848, 'de', 'name', 'ArchƤologie Baselland'),
(69066, 57849, 'no_lang_code', 'name', 'Medicamat (France)'),
(69067, 57850, 'no_lang_code', 'name', 'Fiedler Zdeněk (Czechia)'),
(69068, 57851, 'no_lang_code', 'name', 'Essence Line (Czechia)'),
(69069, 57852, 'en', 'name', 'Kyiv Mohyla Business School'),
(69070, 57852, 'uk', 'name', 'ŠšŠøŃ”Š²Š¾-ŠœŠ¾Š³ŠøŠ»ŃŠ½ŃŃŒŠŗŠ° Бізнес Школа'),
(69071, 57853, 'no_lang_code', 'name', 'Rheinmetall (Switzerland)'),
(69072, 57854, 'en', 'name', 'Institute of Engineering Thermophysics'),
(69073, 57854, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технічної теплофізики ŠŠŠ України'),
(69074, 57855, 'en', 'name', 'Combined Ophthalmic Research Rotterdam'),
(69075, 57856, 'no_lang_code', 'name', 'OSI Systems (Australia)'),
(69076, 57857, 'aa', 'name', 'Naturhistorisches Museum Basel'),
(69077, 57857, 'en', 'name', 'Natural History Museum of Basel'),
(69078, 57858, 'en', 'name', 'Institute for Regional Economics'),
(69079, 57858, 'ru', 'name', 'Библиотека Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° проблем Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø'),
(69080, 57859, 'no_lang_code', 'name', 'Synerlab (France)'),
(69081, 57860, 'no_lang_code', 'name', 'TT Servis (Czechia)'),
(69082, 57861, 'en', 'name', 'Rollie R. Kelley Family Foundation'),
(69083, 57862, 'no_lang_code', 'name', 'Laboratoř Monitoring Praha (Czechia)'),
(69084, 57863, 'en', 'name', 'Environment Canterbury'),
(69085, 57864, 'de', 'name', 'Zürich Versicherungen'),
(69086, 57864, 'no_lang_code', 'name', 'Zurich Insurance Group (Switzerland)'),
(69087, 57865, 'no_lang_code', 'name', 'Rumi Scientific (United States)'),
(69088, 57866, 'fr', 'name', 'HƓpital du Jura Bernois'),
(69089, 57867, 'no_lang_code', 'name', 'Ipra (Czechia)'),
(69090, 57868, 'no_lang_code', 'name', 'Therabel (France)'),
(69091, 57869, 'no_lang_code', 'name', 'Qiagen (Australia)'),
(69092, 57870, 'no_lang_code', 'name', 'Newton Media (Czechia)'),
(69093, 57871, 'no_lang_code', 'name', 'Lanex (Czechia)'),
(69094, 57872, 'no_lang_code', 'name', 'Ecolab (United Kingdom)'),
(69095, 57873, 'de', 'name', 'Schweizerische Gesellschaft für Ländliche Geschichte'),
(69096, 57874, 'no_lang_code', 'name', 'Bentley Instruments (France)'),
(69097, 57875, 'cs', 'name', 'Institut pro testovƔnƭ a certifikaci'),
(69098, 57875, 'no_lang_code', 'name', 'Institute for Testing and Certification (Czechia)'),
(69099, 57876, 'no_lang_code', 'name', 'Agrana (Czechia)'),
(69100, 57877, 'en', 'name', 'Richard K. and Shirley S. Hemingway Foundation'),
(69101, 57878, 'en', 'name', 'Robert Toigo Foundation'),
(69102, 57879, 'no_lang_code', 'name', 'Laboratoires Gilbert (France)'),
(69103, 57880, 'en', 'name', 'A Sister''s Hope'),
(69104, 57881, 'en', 'name', 'Einhorn Family Charitable Trust'),
(69105, 57882, 'en', 'name', 'Ministry of Health of Kyrgyzstan'),
(69106, 57882, 'ky', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾Š¹ Республики'),
(69107, 57883, 'no_lang_code', 'name', 'Bioterra (Switzerland)'),
(69108, 57884, 'no_lang_code', 'name', 'Steinhauser (Czechia)'),
(69109, 57885, 'no_lang_code', 'name', 'Tornos (Switzerland)'),
(69110, 57886, 'de', 'name', 'Schweizerische Vereinigung Industrie und Landwirtschaft'),
(69111, 57887, 'fr', 'name', 'Association de Recherche pour la Technologie et les Sciences'),
(69112, 57888, 'en', 'name', 'VƤre Foundation for Pediatric Cancer Research'),
(69113, 57888, 'fi', 'name', 'Lasten syƶpƤsƤƤtiƶ VƤre'),
(69114, 57889, 'en', 'name', 'Women and Children’s Health Research Institute'),
(69115, 57890, 'no_lang_code', 'name', 'Laboratoires Vivacy (France)'),
(69116, 57891, 'no_lang_code', 'name', 'PerkinElmer (Netherlands)'),
(69117, 57892, 'en', 'name', 'Innovative Medical Partners (France)'),
(69118, 57893, 'de', 'name', 'Staatsarchiv Graubünden'),
(69119, 57893, 'en', 'name', 'Cantonal Archives of the Grisons'),
(69120, 57894, 'cs', 'name', 'TyfloCentrum Brno'),
(69121, 57895, 'fr', 'name', 'HƓpital NestlƩ'),
(69122, 57896, 'no_lang_code', 'name', 'Merko'),
(69123, 57897, 'en', 'name', 'St Marys Community Foundation'),
(69124, 57898, 'no_lang_code', 'name', 'Z Group Steel Holding (Czechia)'),
(69125, 57899, 'no_lang_code', 'name', 'Howden (Czechia)'),
(69126, 57900, 'no_lang_code', 'name', 'Nakladatelstvƭ TriƔda (Czechia)'),
(69127, 57901, 'no_lang_code', 'name', 'International Flavors & Fragrances (France)'),
(69128, 57902, 'cs', 'name', 'Asociace Nemocnic ČR'),
(69129, 57903, 'no_lang_code', 'name', 'P2A Medical (France)'),
(69130, 57904, 'no_lang_code', 'name', 'Sewaco (Czechia)'),
(69131, 57905, 'no_lang_code', 'name', 'TechnipFMC (Germany)'),
(69132, 57906, 'it', 'name', 'Fondazione Alpina per le Scienze della Vita'),
(69133, 57907, 'no_lang_code', 'name', 'Agrogen (Czechia)'),
(69134, 57908, 'no_lang_code', 'name', 'M line (Czechia)'),
(69135, 57909, 'no_lang_code', 'name', 'Sigmaplan (Switzerland)'),
(69136, 57910, 'fi', 'name', 'Tekniikan EdistƤmissƤƤtiƶ'),
(69137, 57911, 'en', 'name', 'Southern Medical Association'),
(69138, 57912, 'en', 'name', 'Childrens Hospice International'),
(69139, 57913, 'no_lang_code', 'name', 'Narex Sat (Czechia)'),
(69140, 57914, 'no_lang_code', 'name', 'Comet System (Czechia)'),
(69141, 57915, 'no_lang_code', 'name', 'Milcom Servis (Czechia)'),
(69142, 57916, 'no_lang_code', 'name', 'Concurrent Solutions (United States)'),
(69143, 57917, 'no_lang_code', 'name', 'ZemědělskĆ” a ekologickĆ” regionĆ”lnĆ­ agentura (Czechia)'),
(69144, 57918, 'no_lang_code', 'name', 'Eurosignal (Czechia)'),
(69145, 57919, 'no_lang_code', 'name', 'OGResearch (Czechia)'),
(69146, 57920, 'en', 'name', 'Rutlish School'),
(69147, 57921, 'no_lang_code', 'name', 'Hitachi (Netherlands)'),
(69148, 57922, 'cs', 'name', 'ArmƔda SpƔsy'),
(69149, 57923, 'de', 'name', 'MVZ Labor Ravensburg'),
(69150, 57924, 'no_lang_code', 'name', 'Dispechem (Czechia)'),
(69151, 57925, 'no_lang_code', 'name', 'Chondrometrics (Germany)'),
(69152, 57926, 'no_lang_code', 'name', 'AGCO (France)'),
(69153, 57927, 'no_lang_code', 'name', 'Smart Software (Czechia)'),
(69154, 57928, 'de', 'name', 'Praktischer Umweltschutz'),
(69155, 57929, 'cs', 'name', 'Vědecko Technologický Park'),
(69156, 57929, 'en', 'name', 'Science & Technology Park (Czechia)'),
(69157, 57930, 'en', 'name', 'Institute Of Pesticides Formulation Technology'),
(69158, 57931, 'no_lang_code', 'name', 'OmniActive Health Technologies (India)'),
(69159, 57932, 'en', 'name', 'Town and Country Veterinary Clinic'),
(69160, 57933, 'en', 'name', 'Institute Of Science De La Vision'),
(69161, 57934, 'no_lang_code', 'name', 'Disam RT (Czechia)'),
(69162, 57935, 'en', 'name', 'New Zealand wine'),
(69163, 57936, 'en', 'name', 'T. Boone Pickens Foundation'),
(69164, 57937, 'fr', 'name', 'Labex Synorg');
INSERT INTO `ror_settings` VALUES
(69165, 57938, 'no_lang_code', 'name', 'Materials Design (France)'),
(69166, 57939, 'no_lang_code', 'name', 'ESL (Czechia)'),
(69167, 57940, 'no_lang_code', 'name', 'General Electric (Japan)'),
(69168, 57941, 'fr', 'name', 'Angers Loire MƩtropole'),
(69169, 57942, 'en', 'name', 'St Andrews Community Hospital'),
(69170, 57943, 'no_lang_code', 'name', 'ČD Telematika (Czechia)'),
(69171, 57944, 'no_lang_code', 'name', 'MICo (Czechia)'),
(69172, 57945, 'no_lang_code', 'name', 'Proma Reha (Czechia)'),
(69173, 57946, 'en', 'name', 'Community Food and Agriculture Coalition'),
(69174, 57947, 'en', 'name', 'University of Technology'),
(69175, 57947, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Московской области Технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(69176, 57948, 'no_lang_code', 'name', 'Grupo Dibaq (Spain)'),
(69177, 57949, 'no_lang_code', 'name', 'Perrigo (France)'),
(69178, 57950, 'en', 'name', 'Dr. Reddy''s Foundation'),
(69179, 57951, 'cs', 'name', 'Ústav zdravotnických informací a statistiky ČR'),
(69180, 57951, 'en', 'name', 'Institute of Health Information and Statistics'),
(69181, 57952, 'fr', 'name', 'Alimentarium'),
(69182, 57953, 'no_lang_code', 'name', 'DLF Trifolium Hladké Životice (Czechia)'),
(69183, 57954, 'en', 'name', 'Sociological Initiatives Foundation'),
(69184, 57955, 'no_lang_code', 'name', 'Kemerovo Cardiology Center'),
(69185, 57955, 'ru', 'name', 'ŠšŠµŠ¼ŠµŃ€Š¾Š²ŃŠŗŠ¾Š³Š¾ ŠšŠ°Ń€Š“ŠøŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ центра'),
(69186, 57956, 'no_lang_code', 'name', 'Forest - Agro (Czechia)'),
(69187, 57957, 'en', 'name', 'Juntendo University Urayasu Hospital'),
(69188, 57957, 'ja', 'name', 'é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žęµ¦å®‰ē—…é™¢'),
(69189, 57958, 'no_lang_code', 'name', 'Steuler (Germany)'),
(69190, 57959, 'no_lang_code', 'name', 'Narishige (Japan)'),
(69191, 57960, 'no_lang_code', 'name', 'Ecolab (France)'),
(69192, 57961, 'no_lang_code', 'name', 'Qiagen (Switzerland)'),
(69193, 57962, 'no_lang_code', 'name', 'Comimpex (Czechia)'),
(69194, 57963, 'no_lang_code', 'name', 'Oil India (India)'),
(69195, 57964, 'en', 'name', 'Racing Victoria'),
(69196, 57965, 'no_lang_code', 'name', 'Gen Trend (Czechia)'),
(69197, 57966, 'no_lang_code', 'name', 'Wienerberger (Czechia)'),
(69198, 57967, 'en', 'name', 'Institute of Atomic and Molecular Sciences, Academia Sinica'),
(69199, 57967, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢åŽŸå­čˆ‡åˆ†å­ē§‘å­øē ”ē©¶ę‰€'),
(69200, 57968, 'no_lang_code', 'name', 'VodnĆ­ Zdroje GLS Praha (Czechia)'),
(69201, 57969, 'no_lang_code', 'name', 'Technika Pro MěřenĆ­ a Automatizaci (Czechia)'),
(69202, 57970, 'en', 'name', 'Institut Dr Schrader Creachem'),
(69203, 57971, 'no_lang_code', 'name', 'Makita (Germany)'),
(69204, 57972, 'en', 'name', 'Rochester Roots'),
(69205, 57973, 'no_lang_code', 'name', 'Hydrogenics (Canada)'),
(69206, 57974, 'de', 'name', 'Swissmedic'),
(69207, 57974, 'fr', 'name', 'Institute suisse des produits thƩrapeutiques'),
(69208, 57974, 'it', 'name', 'Istituto per gli agenti svizzero Terapeutici'),
(69209, 57974, 'rm', 'name', 'Institute Svizzer by products terapeutics'),
(69210, 57975, 'no_lang_code', 'name', 'MSV Metal StudƩnka (Czechia)'),
(69211, 57976, 'no_lang_code', 'name', 'SlƩvƔrna Chomutov (Czechia)'),
(69212, 57977, 'en', 'name', 'Max Planck Center for Visual Computing and Communication'),
(69213, 57978, 'en', 'name', 'Berenson Allen Center for Noninvasive Brain Stimulation'),
(69214, 57979, 'en', 'name', 'Sparkplug Foundation'),
(69215, 57980, 'en', 'name', 'Goulburn Valley Equine Hospital'),
(69216, 57981, 'no_lang_code', 'name', 'Ecoprotect (Czechia)'),
(69217, 57982, 'no_lang_code', 'name', 'Sanitarium Health and Wellbeing (Australia)'),
(69218, 57983, 'en', 'name', 'Foundation for Urban and Regional Studies'),
(69219, 57984, 'no_lang_code', 'name', 'ENVItech Bohemia (Czechia)'),
(69220, 57985, 'no_lang_code', 'name', 'ANAKAN (Czechia)'),
(69221, 57986, 'en', 'name', 'Norwegian Agriculture Agency'),
(69222, 57987, 'el', 'name', 'Το ĪŠĪ“ĻĻ…Ī¼Ī± ΠαιΓείας και Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĪæĻ Ī ĪæĪ»Ī¹Ļ„Ī¹ĻƒĪ¼ĪæĻ'),
(69223, 57987, 'en', 'name', 'Foundation for Education and European Culture'),
(69224, 57988, 'de', 'name', 'Klinik Sonnenhof'),
(69225, 57989, 'en', 'name', 'Foulkes Foundation'),
(69226, 57990, 'en', 'name', 'Institute for Polymer Mechanics'),
(69227, 57991, 'en', 'name', 'Sexually Transmitted Infection Research Foundation'),
(69228, 57992, 'no_lang_code', 'name', 'LAO - Průmyslové Systémy (Czechia)'),
(69229, 57993, 'es', 'name', 'Fundación Merck Salud'),
(69230, 57994, 'de', 'name', 'Conservatoire et Jardin botaniques de la Ville de GenĆØve'),
(69231, 57994, 'en', 'name', 'Conservatory and Botanical Garden of the City of Geneva'),
(69232, 57995, 'no_lang_code', 'name', 'Berry (United States)'),
(69233, 57996, 'en', 'name', 'Reagan-Udall Foundation'),
(69234, 57997, 'en', 'name', 'Mercy Research'),
(69235, 57998, 'en', 'name', 'Jiangsu Provincial Key Laboratory of Network and Information Security'),
(69236, 57998, 'zh', 'name', 'ę±Ÿč‹ēœē½‘ē»œäæ”ęÆå®‰å…Øé‡ē‚¹å®žéŖŒå®¤'),
(69237, 57999, 'fr', 'name', 'Service de la recherche Ʃducation'),
(69238, 58000, 'no_lang_code', 'name', 'Expro (United Kingdom)'),
(69239, 58001, 'no_lang_code', 'name', 'FSC Bezpečnostnƭ Poradenstvƭ (Czechia)'),
(69240, 58002, 'no_lang_code', 'name', 'Československý Lloyd (Czechia)'),
(69241, 58003, 'fr', 'name', 'Cabinet de Psychiatrie et PsychothƩrapie'),
(69242, 58004, 'no_lang_code', 'name', 'Zwahlen et Mayr (Switzerland)'),
(69243, 58005, 'en', 'name', 'John Cochran VA Medical Center'),
(69244, 58006, 'no_lang_code', 'name', 'F Air (Czechia)'),
(69245, 58007, 'no_lang_code', 'name', 'Porsenna (Czechia)'),
(69246, 58008, 'en', 'name', 'C.W. Bill Young VA Medical Center'),
(69247, 58009, 'de', 'name', 'Berlinische Galerie'),
(69248, 58010, 'en', 'name', 'Oklahoma City VA Health Care System'),
(69249, 58011, 'en', 'name', 'Brazilian Metallurgy and Mining Company'),
(69250, 58011, 'no_lang_code', 'name', 'Companhia Brasileira de Metalurgia e Mineração (Brazil)'),
(69251, 58012, 'no_lang_code', 'name', 'Beskyd Fryčovice (Czechia)'),
(69252, 58013, 'en', 'name', 'Experimental Research Institute of Metal-Cutting Machine Tools'),
(69253, 58013, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»Š¾Ń€ŠµŠ¶ŃƒŃ‰ŠøŃ… станков'),
(69254, 58014, 'fr', 'name', 'Laboratoires Expanscience'),
(69255, 58015, 'en', 'name', 'Centre for Management Development'),
(69256, 58016, 'no_lang_code', 'name', 'Geotechnical Instruments (United Kingdom)'),
(69257, 58017, 'cs', 'name', 'Centrum LĆ©ÄebnĆ© Rehabilitace Liberec'),
(69258, 58018, 'no_lang_code', 'name', 'Bau-, Verkehrs- und Energiedirektion (Switzerland)'),
(69259, 58019, 'no_lang_code', 'name', 'Systena (Japan)'),
(69260, 58020, 'en', 'name', 'Bell Equine Veterinary Clinic'),
(69261, 58021, 'en', 'name', 'Harris Birthright Research Centre for Fetal Medicine'),
(69262, 58022, 'ms', 'name', 'Universiti Tenaga Nasional'),
(69263, 58023, 'en', 'name', 'Food Bank of Northeast Georgia'),
(69264, 58024, 'no_lang_code', 'name', 'Asklepion'),
(69265, 58025, 'de', 'name', 'Memory-Klinik Entlisberg'),
(69266, 58026, 'en', 'name', 'Jeff Gordon Children''s Foundation'),
(69267, 58027, 'no_lang_code', 'name', 'Pohorelec (Czechia)'),
(69268, 58028, 'en', 'name', 'Ho Chunk Community Development Corporation'),
(69269, 58029, 'de', 'name', 'Abwasserverband Altenrhein'),
(69270, 58030, 'de', 'name', 'Statistische Amt Basel-Stadt'),
(69271, 58031, 'en', 'name', 'National Book Critics Circle'),
(69272, 58032, 'no_lang_code', 'name', 'ALB expert (Czechia)'),
(69273, 58033, 'en', 'name', 'The Cancer Institute Hospital'),
(69274, 58033, 'ja', 'name', 'ćŒć‚“ē ”ęœ‰ę˜Žē—…é™¢'),
(69275, 58034, 'en', 'name', 'SciFund Challenge'),
(69276, 58035, 'no_lang_code', 'name', 'INTER.MED (France)'),
(69277, 58036, 'no_lang_code', 'name', 'Kotrbatý (Czechia)'),
(69278, 58037, 'fr', 'name', 'Articles De Laboratoire De Precision'),
(69279, 58037, 'no_lang_code', 'name', 'ALP (France)'),
(69280, 58038, 'no_lang_code', 'name', 'Alere (Switzerland)'),
(69281, 58039, 'en', 'name', 'Institute of Plant and Animal Ecology'),
(69282, 58039, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŠø растений Šø животных Š£Ń€Šž Š ŠŠ [ŠæŃ€Š°Š²ŠøŃ‚ŃŒ | ŠæŃ€Š°Š²ŠøŃ‚ŃŒ вики-текст]'),
(69283, 58040, 'no_lang_code', 'name', 'St.Galler Stadtwerke (Switzerland)'),
(69284, 58041, 'no_lang_code', 'name', 'Sumitomo Electric Industries (United States)'),
(69285, 58042, 'no_lang_code', 'name', 'Atos (Czechia)'),
(69286, 58043, 'no_lang_code', 'name', 'Atenisi Institute'),
(69287, 58044, 'en', 'name', 'VA Southeast Network'),
(69288, 58045, 'ga', 'name', 'Slainte Alga Teoranta'),
(69289, 58045, 'no_lang_code', 'name', 'Algae Health (Ireland)'),
(69290, 58046, 'en', 'name', 'Government of Estonia'),
(69291, 58046, 'et', 'name', 'Vabariigi Valitsus'),
(69292, 58047, 'no_lang_code', 'name', 'Applycon (Czechia)'),
(69293, 58048, 'en', 'name', 'Wisconsin Association for Perinatal Care'),
(69294, 58049, 'cs', 'name', 'MěstskĆ© lesy Chomutov'),
(69295, 58050, 'no_lang_code', 'name', 'Platinum Equity (United Kingdom)'),
(69296, 58051, 'no_lang_code', 'name', 'Autel (Czechia)'),
(69297, 58052, 'no_lang_code', 'name', 'Analytika (Czechia)'),
(69298, 58053, 'no_lang_code', 'name', 'SPX Corporation (United Kingdom)'),
(69299, 58054, 'en', 'name', 'Vitalyst Health Foundation'),
(69300, 58055, 'no_lang_code', 'name', 'Aura (Czechia)'),
(69301, 58056, 'no_lang_code', 'name', 'KSM Castings (Czechia)'),
(69302, 58057, 'cs', 'name', 'Nemocnice u Sv. Jiří'),
(69303, 58058, 'en', 'name', 'Westfield Foundation'),
(69304, 58059, 'no_lang_code', 'name', 'ProTyS (Czechia)'),
(69305, 58060, 'en', 'name', 'Niagara County'),
(69306, 58061, 'no_lang_code', 'name', 'BAK Basel Economics (Switzerland)'),
(69307, 58062, 'en', 'name', 'Whiting Foundation'),
(69308, 58063, 'no_lang_code', 'name', 'Enzymix (Czechia)'),
(69309, 58064, 'no_lang_code', 'name', 'PRO.MED.CS Praha (Czechia)'),
(69310, 58065, 'de', 'name', 'Institut für Ɩkologisch Systemische Therapie'),
(69311, 58066, 'no_lang_code', 'name', 'Papouch (Czechia)'),
(69312, 58067, 'no_lang_code', 'name', 'Balak (Czechia)'),
(69313, 58068, 'no_lang_code', 'name', 'Sweden and Martina (Italy)'),
(69314, 58069, 'no_lang_code', 'name', 'Avia Propeller (Czechia)'),
(69315, 58070, 'no_lang_code', 'name', 'IVV Engineering (Czechia)'),
(69316, 58071, 'no_lang_code', 'name', 'Med-Consilium (Switzerland)'),
(69317, 58072, 'fr', 'name', 'Centre Médico Chirurgical de Tronquières'),
(69318, 58073, 'no_lang_code', 'name', 'Stada Arzneimittel (United Kingdom)'),
(69319, 58074, 'de', 'name', 'Schweizer Presserat'),
(69320, 58075, 'no_lang_code', 'name', 'Andritz (United States)'),
(69321, 58076, 'cs', 'name', 'Lesy JƔchymov'),
(69322, 58077, 'en', 'name', 'Laser Spine Institute'),
(69323, 58078, 'no_lang_code', 'name', 'Ramet (Czechia)'),
(69324, 58079, 'no_lang_code', 'name', 'Rosogneupor (Russia)'),
(69325, 58079, 'ru', 'name', 'Š Š¾ŃŠ¾Š³Š½ŠµŃƒŠæŠ¾Ń€'),
(69326, 58080, 'no_lang_code', 'name', 'FMP (Czechia)'),
(69327, 58081, 'en', 'name', 'Foundation for Alcohol Research'),
(69328, 58082, 'no_lang_code', 'name', 'Resta (Czechia)'),
(69329, 58083, 'no_lang_code', 'name', 'Scherrer (Switzerland)'),
(69330, 58084, 'en', 'name', 'National Agriculture in the Classroom'),
(69331, 58085, 'no_lang_code', 'name', 'TGS Nastroje-Stroje-Technologicke Sluzby (Czechia)'),
(69332, 58086, 'no_lang_code', 'name', 'Institute of Bohuslav MartinÅÆ (Czechia)'),
(69333, 58087, 'de', 'name', 'Zürich Zoologischer Garten'),
(69334, 58087, 'en', 'name', 'Zürich Zoological Garden'),
(69335, 58088, 'de', 'name', 'Institut für Ziegelforschung Essen e. V.'),
(69336, 58088, 'en', 'name', 'Brick and Tile Research Institute'),
(69337, 58089, 'it', 'name', 'Consorzio per la Fisica Trieste'),
(69338, 58090, 'cs', 'name', 'TechnologickĆ” platforma silničnĆ­ doprava'),
(69339, 58090, 'en', 'name', 'National Technology Platform for Road Transport'),
(69340, 58091, 'no_lang_code', 'name', 'PovodĆ­ Labe (Czechia)'),
(69341, 58092, 'en', 'name', 'Schizophrenia Research Fund'),
(69342, 58093, 'en', 'name', 'Organization for Refugee and Immigrant Success'),
(69343, 58094, 'no_lang_code', 'name', 'Molecular Engines Laboratories (France)'),
(69344, 58095, 'cs', 'name', 'NĆ”rodnĆ­ ReferenčnĆ­ Centrum'),
(69345, 58096, 'no_lang_code', 'name', 'Legrand (United States)'),
(69346, 58097, 'no_lang_code', 'name', 'SNZ Ingenieure und Planer (Switzerland)'),
(69347, 58098, 'no_lang_code', 'name', 'Atea Praha (Czechia)'),
(69348, 58099, 'no_lang_code', 'name', 'Betula Pendula (Czechia)'),
(69349, 58100, 'no_lang_code', 'name', 'Emerson (Czechia)'),
(69350, 58101, 'en', 'name', 'Wilson Foundation'),
(69351, 58102, 'no_lang_code', 'name', 'Richcore Lifesciences (India)'),
(69352, 58103, 'no_lang_code', 'name', 'MARAT Engineering (Czechia)'),
(69353, 58104, 'no_lang_code', 'name', 'Ankara (Czechia)'),
(69354, 58105, 'en', 'name', 'Siouxland Community Foundation'),
(69355, 58106, 'no_lang_code', 'name', 'X Com Base (Czechia)'),
(69356, 58107, 'no_lang_code', 'name', 'ZPA Pecky (Czechia)'),
(69357, 58108, 'da', 'name', 'BĆørnecancerfonden'),
(69358, 58109, 'no_lang_code', 'name', 'Lets Fly (Czechia)'),
(69359, 58110, 'de', 'name', 'Allgemeine Gewerbeschule Basel'),
(69360, 58111, 'no_lang_code', 'name', 'Alucast (Czechia)'),
(69361, 58112, 'en', 'name', 'Shanghai Chemical Reagent Research Institute'),
(69362, 58113, 'no_lang_code', 'name', 'Keramost (Czechia)'),
(69363, 58114, 'no_lang_code', 'name', 'DFC Design (Czechia)'),
(69364, 58115, 'it', 'name', 'Librairie Droz'),
(69365, 58116, 'en', 'name', 'Minorities in Agriculture, Natural Resources and Related Sciences'),
(69366, 58117, 'no_lang_code', 'name', 'Becton Dickinson (Netherlands)'),
(69367, 58118, 'en', 'name', 'Australian Road Research Board'),
(69368, 58119, 'no_lang_code', 'name', 'Lyckeby Amylex (Czechia)'),
(69369, 58120, 'no_lang_code', 'name', 'Agropodnik Kosetice (Czechia)'),
(69370, 58121, 'no_lang_code', 'name', 'MPD Plus (Czechia)'),
(69371, 58122, 'fr', 'name', 'Agence des Aires Marines ProtƩgƩes'),
(69372, 58123, 'no_lang_code', 'name', 'Benteler (Czechia)'),
(69373, 58124, 'no_lang_code', 'name', 'Mavel (Czechia)'),
(69374, 58125, 'en', 'name', 'St. John''s National Academy of Health Sciences'),
(69375, 58126, 'en', 'name', 'Poverty and Race Research Action Council'),
(69376, 58127, 'cs', 'name', 'Sdružení pro dopravní telematiku'),
(69377, 58127, 'en', 'name', 'ITS and S'),
(69378, 58128, 'no_lang_code', 'name', 'Pragometal (Czechia)'),
(69379, 58129, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° биоорганической химии ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(69380, 58129, 'en', 'name', 'Institute of Bioorganic Chemistry'),
(69381, 58130, 'no_lang_code', 'name', 'Extrudo Bečice (Czechia)'),
(69382, 58131, 'en', 'name', 'Institute of Geological Sciences'),
(69383, 58131, 'hy', 'name', 'ŌµÖ€ÕÆÖ€Õ”Õ¢Õ”Õ¶Õ”ÕÆÕ”Õ¶ Õ£Õ«ÕæÕøÖ‚Õ©ÕµÕøÖ‚Õ¶Õ¶Õ„Ö€Õ«'),
(69384, 58132, 'de', 'name', 'Club Bel Etage'),
(69385, 58133, 'en', 'name', 'University of Maryland Extension'),
(69386, 58134, 'de', 'name', 'Kantonsschule Freudenberg'),
(69387, 58135, 'en', 'name', 'Beijing Research Institute of Automation for Machinery Industry (China)'),
(69388, 58135, 'zh', 'name', 'åŒ—äŗ¬ęœŗę¢°å·„äøšč‡ŖåŠØåŒ–ē ”ē©¶ę‰€č½Æä»¶å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(69389, 58136, 'de', 'name', 'Kantonsschule Olten'),
(69390, 58137, 'en', 'name', 'Trumbull Neighborhood Partnership'),
(69391, 58138, 'no_lang_code', 'name', 'Elopak (Switzerland)'),
(69392, 58139, 'cs', 'name', 'Český svaz chovatelů masného skotu'),
(69393, 58139, 'en', 'name', 'Czech Beef Breeders Association'),
(69394, 58140, 'no_lang_code', 'name', 'Libri Prohibiti'),
(69395, 58141, 'de', 'name', 'Museum der Kulturen Basel'),
(69396, 58141, 'en', 'name', 'Museum of Cultures'),
(69397, 58142, 'be', 'name', 'Физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(69398, 58142, 'en', 'name', 'Physical and Technical Institute'),
(69399, 58143, 'no_lang_code', 'name', 'Rotana (Czechia)'),
(69400, 58144, 'no_lang_code', 'name', 'Abbott (Switzerland)'),
(69401, 58145, 'no_lang_code', 'name', 'STS International'),
(69402, 58146, 'no_lang_code', 'name', 'Vlnovice Å pĆ­s (Czechia)'),
(69403, 58147, 'cs', 'name', 'KlasickĆ© a Å”panělskĆ© GymnĆ”zium, Brno-Bystrc'),
(69404, 58148, 'no_lang_code', 'name', 'Solar Monitor (Czechia)'),
(69405, 58149, 'en', 'name', 'Australian Resources Research Centre'),
(69406, 58150, 'de', 'name', 'Museum Kleines Klingental'),
(69407, 58151, 'en', 'name', 'BMJ Careers'),
(69408, 58152, 'no_lang_code', 'name', 'Bio Composants MƩdicaux (France)'),
(69409, 58153, 'no_lang_code', 'name', 'Amberg (Czechia)'),
(69410, 58154, 'cs', 'name', 'ArchitektonickĆ” KancelÔř Burian Křivinka'),
(69411, 58155, 'no_lang_code', 'name', 'Polpur (Czechia)'),
(69412, 58156, 'en', 'name', 'Magnetic Health Science Foundation'),
(69413, 58156, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ē£ę°—å„åŗ·ē§‘å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(69414, 58157, 'no_lang_code', 'name', 'Josa (Czechia)'),
(69415, 58158, 'de', 'name', 'Aebli-NƤf-Stiftung'),
(69416, 58159, 'en', 'name', 'Swedish Forest Society Foundation'),
(69417, 58159, 'sv', 'name', 'SkogssƤllskapet'),
(69418, 58160, 'no_lang_code', 'name', 'Pavus (Czechia)'),
(69419, 58161, 'en', 'name', 'Swiss Stem Cell Foundation'),
(69420, 58162, 'no_lang_code', 'name', 'Evonik (France)'),
(69421, 58163, 'no_lang_code', 'name', 'IKE (Slovakia)'),
(69422, 58164, 'no_lang_code', 'name', 'Haal Elektro (Czechia)'),
(69423, 58165, 'no_lang_code', 'name', 'Lavaris (Czechia)'),
(69424, 58166, 'de', 'name', 'Fachstelle für Gleichstellung von Frau und Mann'),
(69425, 58166, 'en', 'name', 'Office for the Equality of Men and Women'),
(69426, 58167, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Netherlands)'),
(69427, 58168, 'de', 'name', 'Schweizer Bischofskonferenz'),
(69428, 58168, 'en', 'name', 'Swiss Bishops Conference'),
(69429, 58168, 'fr', 'name', 'Conférence des évêques suisses'),
(69430, 58168, 'it', 'name', 'Conferenza dei Vescovi svizzeri'),
(69431, 58169, 'en', 'name', 'World-India Diabetes Foundation'),
(69432, 58170, 'no_lang_code', 'name', 'Trewavis Surgical (Australia)'),
(69433, 58171, 'en', 'name', 'Royal Project Foundation'),
(69434, 58171, 'th', 'name', 'ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ą¹‚ąø„ąø£ąø‡ąøąø²ąø£ąø«ąø„ąø§ąø‡'),
(69435, 58172, 'en', 'name', 'Platte Valley Medical Center'),
(69436, 58173, 'en', 'name', 'Institute of Electronic Control Machines'),
(69437, 58174, 'pl', 'name', 'Instytut Innowacji Przemysłu Mleczarskiego'),
(69438, 58175, 'no_lang_code', 'name', 'Silmos (Czechia)'),
(69439, 58176, 'en', 'name', 'Agladze Inorganic Chemistry and Electrochemistry'),
(69440, 58176, 'ka', 'name', 'რ.įƒįƒ’įƒšįƒįƒ«įƒ˜įƒ” įƒįƒ įƒįƒįƒ įƒ’įƒįƒœįƒ£įƒšįƒ˜ įƒ„įƒ˜įƒ›įƒ˜įƒ˜įƒ”įƒ'),
(69441, 58177, 'de', 'name', 'ƖKK (Switzerland)'),
(69442, 58178, 'cs', 'name', 'Geova'),
(69443, 58179, 'no_lang_code', 'name', 'Secar Bohemia (Czechia)'),
(69444, 58180, 'en', 'name', 'Central Scientific Research Diesel Institute'),
(69445, 58180, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š“ŠøŠ·ŠµŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(69446, 58181, 'en', 'name', 'Institute of Orthopedic Research and Education'),
(69447, 58182, 'cs', 'name', 'MateřskĆ” Å”kolka SokolovskĆ”'),
(69448, 58183, 'no_lang_code', 'name', 'GRYF (Czechia)'),
(69449, 58184, 'no_lang_code', 'name', 'Dermscan Group (France)'),
(69450, 58185, 'no_lang_code', 'name', 'Medical innovation (France)'),
(69451, 58186, 'no_lang_code', 'name', 'Ekopron Metal (Czechia)'),
(69452, 58187, 'no_lang_code', 'name', 'Terezia (Czechia)'),
(69453, 58188, 'no_lang_code', 'name', 'Scalzo Automotive Research (Australia)'),
(69454, 58189, 'es', 'name', 'Fundación Pro CNIC'),
(69455, 58190, 'en', 'name', 'Bansal Institute Of Research Technology & Science'),
(69456, 58191, 'no_lang_code', 'name', 'Uniplast Pardubice (Czechia)'),
(69457, 58192, 'en', 'name', 'Jacobs Foundation'),
(69458, 58193, 'cs', 'name', 'Sdružení CEPAC'),
(69459, 58194, 'no_lang_code', 'name', 'Silnice Group (Czechia)'),
(69460, 58195, 'no_lang_code', 'name', 'Institute of Musculoskeletal Science & Education (United States)'),
(69461, 58196, 'no_lang_code', 'name', 'Allowance (Czechia)'),
(69462, 58197, 'no_lang_code', 'name', 'KovofiniÅ” (Czechia)'),
(69463, 58198, 'en', 'name', 'American Society of Church History'),
(69464, 58199, 'nl', 'name', 'Hartcentrum Hasselt'),
(69465, 58200, 'no_lang_code', 'name', 'Technistone (Czechia)'),
(69466, 58201, 'de', 'name', 'Museumsgesellschaft Zürich'),
(69467, 58202, 'no_lang_code', 'name', 'Envirmine (Czechia)'),
(69468, 58203, 'cs', 'name', 'ZoologickĆ” Zahrada'),
(69469, 58203, 'en', 'name', 'Prague Zoo'),
(69470, 58204, 'no_lang_code', 'name', 'Hochtief (Czechia)'),
(69471, 58205, 'no_lang_code', 'name', 'HMS-Vilgo (France)'),
(69472, 58206, 'en', 'name', 'Sendzimir Foundation'),
(69473, 58207, 'no_lang_code', 'name', 'BaHa (Czechia)'),
(69474, 58208, 'en', 'name', 'Japan Radioisotope Association'),
(69475, 58208, 'ja', 'name', 'ę—„ęœ¬ć‚¢ć‚¤ć‚½ćƒˆćƒ¼ćƒ—å”ä¼š'),
(69476, 58209, 'no_lang_code', 'name', 'Urangeologorazvedka'),
(69477, 58209, 'ru', 'name', 'УрангеологоразвеГка'),
(69478, 58210, 'en', 'name', 'Institute of Physics Rosario'),
(69479, 58210, 'es', 'name', 'Instituto de FĆ­sica Rosario'),
(69480, 58211, 'en', 'name', 'University of Veterinary Medicine'),
(69481, 58211, 'hu', 'name', 'ƁllatorvostudomƔnyi Egyetem'),
(69482, 58212, 'no_lang_code', 'name', 'Mc Velox (Czechia)'),
(69483, 58213, 'no_lang_code', 'name', 'AVG Technologies (Czechia)'),
(69484, 58214, 'no_lang_code', 'name', 'KrampeHarex (Czechia)'),
(69485, 58215, 'no_lang_code', 'name', 'ICZ (Czechia)'),
(69486, 58216, 'en', 'name', 'Iran Nanohealth Committee Food and Drug Organization'),
(69487, 58217, 'en', 'name', 'United States Equestrian Federation'),
(69488, 58218, 'en', 'name', 'Tianjin Municipal Research Institute for Family Planning'),
(69489, 58218, 'zh', 'name', 'å¤©ę“„åø‚č®”åˆ’ē”Ÿč‚²ē ”ē©¶ę‰€'),
(69490, 58219, 'en', 'name', 'Family Ties of Nevada'),
(69491, 58220, 'no_lang_code', 'name', 'Kalma (Czechia)'),
(69492, 58221, 'en', 'name', 'Healthcare Improvement Scotland'),
(69493, 58222, 'en', 'name', 'Community Alliance with Family Farmers'),
(69494, 58223, 'no_lang_code', 'name', 'Classic Oil (Czechia)'),
(69495, 58224, 'no_lang_code', 'name', 'Laboratoires Aditec (France)'),
(69496, 58225, 'no_lang_code', 'name', 'Olea Medical (France)'),
(69497, 58226, 'cs', 'name', 'KrĆ”lovskĆ” kanonie premonstrĆ”tÅÆ na Strahově, Strahov Monastery'),
(69498, 58227, 'no_lang_code', 'name', 'Edscha (Czechia)'),
(69499, 58228, 'cs', 'name', 'PovodĆ­ Ohře'),
(69500, 58229, 'no_lang_code', 'name', 'Agico (Czechia)'),
(69501, 58230, 'en', 'name', 'United States-Japan Foundation'),
(69502, 58231, 'no_lang_code', 'name', 'More (Czechia)'),
(69503, 58232, 'cs', 'name', 'Český statistický ĆŗÅ™ad'),
(69504, 58232, 'en', 'name', 'Czech Statistical Office'),
(69505, 58233, 'no_lang_code', 'name', 'Plastmetal Engineering (Czechia)'),
(69506, 58234, 'no_lang_code', 'name', 'Aquamonitoring (Czechia)'),
(69507, 58235, 'en', 'name', 'Habitat International Coalition'),
(69508, 58236, 'no_lang_code', 'name', 'MKS Instruments (Japan)'),
(69509, 58237, 'no_lang_code', 'name', 'INT-Informace a Technologie (Czechia)'),
(69510, 58238, 'fr', 'name', 'Gymnase de La CitƩ Lausanne'),
(69511, 58239, 'de', 'name', 'Interbion'),
(69512, 58240, 'no_lang_code', 'name', 'Isotopx (United Kingdom)'),
(69513, 58241, 'no_lang_code', 'name', 'CGI (Czechia)'),
(69514, 58242, 'en', 'name', 'Federal Office of Information Technology Systems and Telecommunication'),
(69515, 58242, 'fr', 'name', 'Office fĆ©dĆ©ral de l’informatique et de la tĆ©lĆ©communication'),
(69516, 58242, 'it', 'name', 'Ufficio federale dell’informatica e della telecomunicazione'),
(69517, 58242, 'rm', 'name', 'Uffizi federal d’informatica e da telecommunicaziun'),
(69518, 58243, 'no_lang_code', 'name', 'Eurom (Czechia)'),
(69519, 58244, 'no_lang_code', 'name', 'Regutec (Czechia)'),
(69520, 58245, 'en', 'name', 'All-Russian Scientific Research Institute of Viticulture and Winemaking behalf of JI Potapenko'),
(69521, 58245, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ винограГарства Šø Š²ŠøŠ½Š¾Š“ŠµŠ»ŠøŃ имени ŠÆ.И. ŠŸŠ¾Ń‚Š°ŠæŠµŠ½ŠŗŠ¾'),
(69522, 58246, 'no_lang_code', 'name', 'Kodak (France)'),
(69523, 58247, 'no_lang_code', 'name', 'Mirion Technologies (France)'),
(69524, 58248, 'en', 'name', 'Research Centre for the Humanities'),
(69525, 58248, 'hu', 'name', 'MTA BölcsészettudomÔnyi Kutatóközpont'),
(69526, 58249, 'en', 'name', 'Open Society Foundation for South Africa'),
(69527, 58250, 'no_lang_code', 'name', 'Palivový KombinÔt Ústí (Czechia)'),
(69528, 58251, 'fr', 'name', 'Institut Maupertuis'),
(69529, 58252, 'no_lang_code', 'name', 'All American Pharmaceutical (United States)'),
(69530, 58253, 'en', 'name', 'Support Center for Advanced Telecommunications Technology Research Foundation'),
(69531, 58253, 'ja', 'name', '一貔)ćƒ†ćƒ¬ć‚³ćƒ å…ˆē«ÆęŠ€č”“ē ”ē©¶ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(69532, 58254, 'no_lang_code', 'name', 'ZemědělskĆ” Agentura (Czechia)'),
(69533, 58255, 'no_lang_code', 'name', 'Cryonic Medical (France)'),
(69534, 58256, 'no_lang_code', 'name', 'SBA-Expert (Czechia)'),
(69535, 58257, 'no_lang_code', 'name', 'Malus (Czechia)'),
(69536, 58258, 'en', 'name', 'Wender Weis Foundation for Children'),
(69537, 58259, 'en', 'name', 'Korea Testing & Research Institute'),
(69538, 58259, 'ko', 'name', 'ķ•œźµ­ķ™”ķ•™ģœµķ•©ģ‹œķ—˜ģ—°źµ¬ģ›'),
(69539, 58260, 'no_lang_code', 'name', 'QIP (Czechia)'),
(69540, 58261, 'cs', 'name', 'Společnost pro Výzkum a VzdělĆ”vĆ”nĆ­'),
(69541, 58262, 'no_lang_code', 'name', 'Trendex Nova (Czechia)'),
(69542, 58263, 'en', 'name', 'Reproductive Medicine Associates of New York'),
(69543, 58264, 'en', 'name', 'State Key Laboratory of Oncogene and Related Genes'),
(69544, 58264, 'zh', 'name', 'ē™ŒåŸŗå› åŠē›øå…³åŸŗå› å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(69545, 58265, 'de', 'name', 'Institut Montana Zugerberg'),
(69546, 58266, 'en', 'name', 'Institute of Technical Education'),
(69547, 58267, 'es', 'name', 'Universidad Católica Lumen Gentium'),
(69548, 58268, 'no_lang_code', 'name', 'PREdistribuce (Czechia)'),
(69549, 58269, 'no_lang_code', 'name', 'AGRO-Merin (Czechia)'),
(69550, 58270, 'en', 'name', 'Vehicle Games Public Utility Foundation Memorial Foundation'),
(69551, 58270, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ č»Šäø”ē«¶ęŠ€å…¬ē›Šč³‡é‡‘čØ˜åæµč²”å›£'),
(69552, 58271, 'en', 'name', 'Hisayama Research Institute For Lifestyle Diseases'),
(69553, 58271, 'ja', 'name', 'ćƒ’ć‚µćƒ¤ćƒžćƒ©ć‚¤ćƒ•ć‚¹ć‚æć‚¤ćƒ«ē ”ē©¶ę‰€'),
(69554, 58272, 'en', 'name', 'Bolton NHS Foundation Trust'),
(69555, 58273, 'de', 'name', 'MusƩe suisse du jeu'),
(69556, 58273, 'en', 'name', 'Swiss Museum of Games'),
(69557, 58274, 'no_lang_code', 'name', 'Laboratoires Rivadis (France)'),
(69558, 58275, 'no_lang_code', 'name', 'ArcelorMittal (United States)'),
(69559, 58276, 'no_lang_code', 'name', 'Eltek (Czechia)'),
(69560, 58277, 'en', 'name', 'Nagoya Municipal Industrial Research Institute'),
(69561, 58277, 'ja', 'name', 'åå¤å±‹åø‚å·„ę„­ē ”ē©¶ę‰€'),
(69562, 58278, 'no_lang_code', 'name', 'CS Soft (Czechia)'),
(69563, 58279, 'en', 'name', 'Biocom'),
(69564, 58280, 'no_lang_code', 'name', 'Garner Industries (United States)'),
(69565, 58281, 'no_lang_code', 'name', 'Pexidr (Czechia)'),
(69566, 58282, 'fr', 'name', 'Institut Georges Lopez'),
(69567, 58283, 'en', 'name', 'Indo Korea Science and Technology'),
(69568, 58284, 'no_lang_code', 'name', 'A-Spektrum (Czechia)'),
(69569, 58285, 'no_lang_code', 'name', 'Preditest (Czechia)'),
(69570, 58286, 'de', 'name', 'Institut für Implantattechnologie und Biomaterialien'),
(69571, 58286, 'en', 'name', 'Institute for ImplantTechnology and Biomaterials'),
(69572, 58287, 'en', 'name', 'Donald Woods Foundation'),
(69573, 58288, 'no_lang_code', 'name', 'Cisco Systems (Norway)'),
(69574, 58289, 'en', 'name', 'Crossroads Community Food Network'),
(69575, 58290, 'no_lang_code', 'name', 'Farma Žiro (Czechia)'),
(69576, 58291, 'en', 'name', 'United Way of Santa Barbara County'),
(69577, 58292, 'en', 'name', 'Institute for Applied Science'),
(69578, 58293, 'no_lang_code', 'name', 'Prediction Sciences (France)'),
(69579, 58294, 'no_lang_code', 'name', 'Psychometric Research & Development (United Kingdom)'),
(69580, 58295, 'no_lang_code', 'name', 'Sanborn (Czechia)'),
(69581, 58296, 'no_lang_code', 'name', 'MFB-GeoConsulting (Switzerland)'),
(69582, 58297, 'en', 'name', 'Bureau of Labor Statistics'),
(69583, 58298, 'no_lang_code', 'name', 'InstaGroup (United Kingdom)'),
(69584, 58299, 'en', 'name', 'GridPP'),
(69585, 58300, 'no_lang_code', 'name', 'Skd Trade (Czechia)'),
(69586, 58301, 'en', 'name', 'Cicely Saunders International'),
(69587, 58302, 'no_lang_code', 'name', 'Barvy a laky Hostivař (Czechia)'),
(69588, 58303, 'en', 'name', 'Sustainable Molokai'),
(69589, 58304, 'no_lang_code', 'name', 'RybÔřstvĆ­ Třeboň (Czechia)'),
(69590, 58305, 'no_lang_code', 'name', 'Czech Credit Bureau (Czechia)'),
(69591, 58306, 'en', 'name', 'Diocese of Ely'),
(69592, 58307, 'en', 'name', 'Metanexus Institute'),
(69593, 58308, 'no_lang_code', 'name', 'Gemec Union (Czechia)'),
(69594, 58309, 'en', 'name', 'Mountain Research Initiative'),
(69595, 58310, 'no_lang_code', 'name', 'Advanced World Transport (Czechia)'),
(69596, 58311, 'es', 'name', 'CaixaBank'),
(69597, 58312, 'cs', 'name', 'Asociace Korozních Inženýrů'),
(69598, 58313, 'en', 'name', 'McAuliffe-Shepard Discovery Center'),
(69599, 58314, 'en', 'name', 'Rostov Research Institute of Oncology'),
(69600, 58314, 'ru', 'name', 'Ростовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ онкологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(69601, 58315, 'no_lang_code', 'name', 'Apex (Czechia)'),
(69602, 58316, 'cs', 'name', 'ČeskomoravskĆ” Společnost ChovatelÅÆ'),
(69603, 58317, 'no_lang_code', 'name', 'Konica Minolta (United States)'),
(69604, 58318, 'no_lang_code', 'name', 'Atlas Copco (Switzerland)'),
(69605, 58319, 'en', 'name', 'Weitz Family Foundation'),
(69606, 58320, 'en', 'name', 'Horizon Performance'),
(69607, 58321, 'de', 'name', 'Institut Virion\\Serion'),
(69608, 58322, 'en', 'name', 'Tom Coughlin Jay Fund Foundation'),
(69609, 58323, 'no_lang_code', 'name', 'Nippon Sheet Glass (Italy)'),
(69610, 58324, 'no_lang_code', 'name', 'DrƤger (United States)'),
(69611, 58325, 'no_lang_code', 'name', 'FPOS (Czechia)'),
(69612, 58326, 'no_lang_code', 'name', 'Dega (Czechia)'),
(69613, 58327, 'no_lang_code', 'name', 'Indel (Slovakia)'),
(69614, 58328, 'en', 'name', 'Presbyterian Healthcare Services'),
(69615, 58329, 'no_lang_code', 'name', 'ZPV Rožnov (Czechia)'),
(69616, 58330, 'cs', 'name', 'ČeskÔ Asociace Pedagogického Výzkumu'),
(69617, 58331, 'cs', 'name', 'ČeskĆ” Společnost EntomologickĆ”'),
(69618, 58332, 'no_lang_code', 'name', 'RybÔřstvĆ­ LitomyÅ”l (RybÔřstvĆ­ LitomyÅ”l)'),
(69619, 58333, 'no_lang_code', 'name', 'PernĆ­k (Czechia)'),
(69620, 58334, 'no_lang_code', 'name', 'Staedtler (Germany)'),
(69621, 58335, 'de', 'name', 'Mammendorfer Institut für Physik und Medizin'),
(69622, 58335, 'en', 'name', 'Mammendorf Insitute for Physics and Medicine'),
(69623, 58336, 'no_lang_code', 'name', 'Stƶri Mantel (Czechia)'),
(69624, 58337, 'en', 'name', 'Women''s Right to Education Programme'),
(69625, 58338, 'no_lang_code', 'name', 'Pharmerit (United States)'),
(69626, 58339, 'en', 'name', 'Walker Cancer Research Institute'),
(69627, 58340, 'no_lang_code', 'name', 'EpiPharm (Switzerland)'),
(69628, 58341, 'no_lang_code', 'name', 'IQVIA (United Kingdom)'),
(69629, 58342, 'no_lang_code', 'name', 'AstenJohnson (United States)'),
(69630, 58343, 'no_lang_code', 'name', 'CNC Technology (Czechia)'),
(69631, 58344, 'de', 'name', 'Kunsthalle Marcel Duchamp'),
(69632, 58345, 'no_lang_code', 'name', 'AVE (Czechia)'),
(69633, 58346, 'no_lang_code', 'name', 'R.T. Vanderbilt Holding (United States)'),
(69634, 58347, 'no_lang_code', 'name', 'Unique Textiles (Czechia)'),
(69635, 58348, 'en', 'name', 'Hair Science Institute'),
(69636, 58349, 'en', 'name', 'Interuniversity Institute for High Energies'),
(69637, 58350, 'no_lang_code', 'name', 'Allergan (Switzerland)'),
(69638, 58351, 'no_lang_code', 'name', 'Jules Richard Instruments (France)'),
(69639, 58352, 'no_lang_code', 'name', 'KMB systems (Czechia)'),
(69640, 58353, 'no_lang_code', 'name', 'Laboratory of Glass Properties (Russia)'),
(69641, 58354, 'no_lang_code', 'name', 'CoorsTek (Japan)'),
(69642, 58355, 'no_lang_code', 'name', 'Red Hat (Israel)'),
(69643, 58356, 'no_lang_code', 'name', 'Kemwater ProChemie (Czechia)'),
(69644, 58357, 'no_lang_code', 'name', 'Merica (Czechia)'),
(69645, 58358, 'en', 'name', 'Minnesota Partnership for Biotechnology and Medical Genomics'),
(69646, 58359, 'en', 'name', 'Pusan ​​National University Dental Hospital'),
(69647, 58359, 'ko', 'name', '부산 ėŒ€ķ•™źµ 치과 병원'),
(69648, 58360, 'en', 'name', 'JSC Scientific Research Institute of Motor Transport'),
(69649, 58360, 'ru', 'name', 'ŠžŠŠž ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾Š³Š¾ транспорта'),
(69650, 58361, 'no_lang_code', 'name', 'Total (Czechia)'),
(69651, 58362, 'no_lang_code', 'name', 'Jakape (Czechia)'),
(69652, 58363, 'de', 'name', 'Denkmalpflege und ArchƤologie'),
(69653, 58364, 'de', 'name', 'Archiv für Agrargeschichte'),
(69654, 58364, 'en', 'name', 'Archives of Rural History'),
(69655, 58365, 'no_lang_code', 'name', 'Ekomor (Czechia)'),
(69656, 58366, 'de', 'name', 'Forum Ost West'),
(69657, 58367, 'no_lang_code', 'name', 'Akanthus (Switzerland)'),
(69658, 58368, 'en', 'name', 'Singapore Centre for Environmental Life Sciences Engineering'),
(69659, 58369, 'en', 'name', 'Oregon Family Support Network'),
(69660, 58370, 'no_lang_code', 'name', 'MCE Avocats (Switzerland)'),
(69661, 58371, 'en', 'name', 'South Dakota Parent Connection'),
(69662, 58372, 'cs', 'name', 'B. Braun Avitum'),
(69663, 58372, 'no_lang_code', 'name', 'B. Braun (Czechia)'),
(69664, 58373, 'en', 'name', 'Atlanta VA Health Care System'),
(69665, 58374, 'no_lang_code', 'name', 'Planval (Switzerland)'),
(69666, 58375, 'no_lang_code', 'name', 'Ovus (Czechia)'),
(69667, 58376, 'de', 'name', 'Kantonsschule Baden'),
(69668, 58377, 'no_lang_code', 'name', 'Flash Steel Power (Czechia)'),
(69669, 58378, 'en', 'name', 'Warren Alpert Foundation'),
(69670, 58379, 'no_lang_code', 'name', 'IMPS (Czechia)'),
(69671, 58380, 'no_lang_code', 'name', 'ELEQ (Netherlands)'),
(69672, 58381, 'en', 'name', 'Federal State Scientific Institution Research Institute of Eye Diseases'),
(69673, 58381, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ глазных болезней'),
(69674, 58382, 'cs', 'name', 'ZemědělskĆ© Družstvo Dolany'),
(69675, 58383, 'no_lang_code', 'name', 'RPS Ostrava (Czechia)'),
(69676, 58384, 'en', 'name', 'Simmons Family Foundation'),
(69677, 58385, 'en', 'name', 'Samis Foundation'),
(69678, 58386, 'no_lang_code', 'name', 'Moravian-Silesian Energy Cluster (Czechia)'),
(69679, 58387, 'fr', 'name', 'Institut National de Police Scientifique'),
(69680, 58388, 'no_lang_code', 'name', 'Laurane Medical (France)'),
(69681, 58389, 'no_lang_code', 'name', 'Herba Naturalle (United Kingdom)'),
(69682, 58390, 'fr', 'name', 'DƩpartement des Finances et des Relations ExtƩrieures'),
(69683, 58391, 'cs', 'name', 'ISES'),
(69684, 58392, 'no_lang_code', 'name', 'Acrea (Czechia)'),
(69685, 58393, 'de', 'name', 'Kantonale Psychiatrische Dienste St Gallen'),
(69686, 58394, 'en', 'name', 'Institute of Rheological Functions of Food'),
(69687, 58394, 'ja', 'name', 'ćƒ¬ć‚Ŗćƒ­ć‚øćƒ¼ę©Ÿčƒ½é£Ÿå“ē ”ē©¶ę‰€'),
(69688, 58395, 'no_lang_code', 'name', 'iBioTech (Czechia)'),
(69689, 58396, 'en', 'name', 'Field and Fork Network'),
(69690, 58397, 'no_lang_code', 'name', 'Halma (United Kingdom)'),
(69691, 58398, 'de', 'name', 'Swisslex'),
(69692, 58399, 'no_lang_code', 'name', 'Valbek (Czechia)'),
(69693, 58400, 'no_lang_code', 'name', 'Sanofi (Australia)'),
(69694, 58401, 'de', 'name', 'Amt für Archäologie'),
(69695, 58402, 'no_lang_code', 'name', 'HST TechnoLogic (Czechia)'),
(69696, 58403, 'no_lang_code', 'name', 'Medicprogress (Czechia)'),
(69697, 58404, 'no_lang_code', 'name', 'MEAS Prog (Czechia)'),
(69698, 58405, 'no_lang_code', 'name', 'CVP Galvanika (Czechia)'),
(69699, 58406, 'cs', 'name', 'Nemocnice JindřichÅÆv Hradec'),
(69700, 58406, 'en', 'name', 'JindřichÅÆv Hradec Hospital'),
(69701, 58407, 'en', 'name', 'University Vascular Associates'),
(69702, 58408, 'en', 'name', 'Alliance of Community Assistance Ministries'),
(69703, 58409, 'no_lang_code', 'name', 'R-Princip (Czechia)'),
(69704, 58410, 'no_lang_code', 'name', 'Kaipan (Czechia)'),
(69705, 58411, 'en', 'name', 'Southern Appalachian Botanical Society'),
(69706, 58412, 'de', 'name', 'Krebsregister Saarland'),
(69707, 58413, 'no_lang_code', 'name', 'TG Drives (Czechia)'),
(69708, 58414, 'en', 'name', 'Terrasun Holographic Institute'),
(69709, 58414, 'es', 'name', 'Instituto HologrƔfico Terrasun'),
(69710, 58415, 'no_lang_code', 'name', 'Eveco (Czechia)'),
(69711, 58416, 'en', 'name', 'Rose Community Foundation'),
(69712, 58417, 'no_lang_code', 'name', 'Laboratoire de Dermo-CosmƩtique Animale (France)'),
(69713, 58418, 'en', 'name', 'Shwachman Diamond Syndrome Foundation'),
(69714, 58419, 'fr', 'name', 'Lausanne Natation'),
(69715, 58420, 'en', 'name', 'DC Central Kitchen'),
(69716, 58421, 'cs', 'name', 'SdruženĆ­ pěstitelÅÆ travnĆ­ch a jetelových semen'),
(69717, 58421, 'en', 'name', 'Association of Grass and Legumes Seed Growers'),
(69718, 58422, 'no_lang_code', 'name', 'Fruits DƩlice (France)'),
(69719, 58423, 'sv', 'name', 'Trygg Hansas Forskningsstiftelse'),
(69720, 58424, 'no_lang_code', 'name', 'MediGEN'),
(69721, 58425, 'en', 'name', 'Ontario Fruit and Vegetable Growers'' Association'),
(69722, 58426, 'no_lang_code', 'name', 'Coprosys-LVI (Czechia)'),
(69723, 58427, 'en', 'name', 'Museum of Yugoslav History'),
(69724, 58427, 'sr', 'name', 'Muzej Jugoslavije'),
(69725, 58428, 'no_lang_code', 'name', 'Foxconn (United States)'),
(69726, 58429, 'no_lang_code', 'name', 'Molaris (Czechia)'),
(69727, 58430, 'en', 'name', 'Resthaven Incorporated'),
(69728, 58431, 'no_lang_code', 'name', 'San Miguel Produce (United States)'),
(69729, 58432, 'no_lang_code', 'name', 'Laboratoires Genevrier (France)'),
(69730, 58433, 'no_lang_code', 'name', 'Remedis (Czechia)'),
(69731, 58434, 'en', 'name', 'Foundation Blanceflor'),
(69732, 58435, 'en', 'name', 'National Association of Development Organizations'),
(69733, 58436, 'no_lang_code', 'name', 'VodĆ”renskĆ” Společnost Chrudim (Czechia)'),
(69734, 58437, 'en', 'name', 'Oskar Ɩflund Foundation'),
(69735, 58437, 'fi', 'name', 'Oskar Ɩflunds Stiftelse'),
(69736, 58438, 'no_lang_code', 'name', 'Nethost (Czechia)'),
(69737, 58439, 'no_lang_code', 'name', 'China Ocean Shipping (China)'),
(69738, 58439, 'zh', 'name', 'äø­å›½čæœę“‹čæč¾“'),
(69739, 58440, 'cs', 'name', 'Sdružení Historiků České Republiky'),
(69740, 58441, 'no_lang_code', 'name', 'DevCom (Czechia)'),
(69741, 58442, 'cs', 'name', 'Nemocnice Břeclav'),
(69742, 58443, 'cs', 'name', 'ZemědělskĆ© ObchodnĆ­ Družstvo KĆ”men'),
(69743, 58444, 'en', 'name', 'John L. McClellan Memorial Veterans Hospital'),
(69744, 58445, 'no_lang_code', 'name', 'BMW Group (Germany)'),
(69745, 58446, 'en', 'name', 'Bureau of Energy'),
(69746, 58446, 'zh', 'name', 'ē¶“ęæŸéƒØčƒ½ęŗå±€'),
(69747, 58447, 'en', 'name', 'Institute of Geotechnics and Engineering Survey in Construction'),
(69748, 58447, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геотехники Šø инженерных изысканий в ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Šµ'),
(69749, 58448, 'de', 'name', 'Centro Biologia Alpina'),
(69750, 58448, 'en', 'name', 'Alpine Biology Center'),
(69751, 58449, 'fr', 'name', 'MusƩe cantonal de zoologie de Lausanne'),
(69752, 58450, 'en', 'name', 'G. M. Reddy Research Foundation'),
(69753, 58451, 'no_lang_code', 'name', 'Toppan (United States)'),
(69754, 58452, 'no_lang_code', 'name', 'Fortex-AGS (Czechia)'),
(69755, 58453, 'no_lang_code', 'name', 'Advanced Medical Institute (Australia)'),
(69756, 58454, 'no_lang_code', 'name', 'Strainstall (United Kingdom)'),
(69757, 58455, 'cs', 'name', 'Orlické Muzeum Choceň'),
(69758, 58456, 'no_lang_code', 'name', 'Vakabrnocz (Czechia)'),
(69759, 58457, 'no_lang_code', 'name', 'Institute of Applied Biotechnologies (Czechia)'),
(69760, 58458, 'fr', 'name', 'Agence de l''eau RhƓne MƩditerranƩe Corse'),
(69761, 58459, 'cs', 'name', 'ČeskÔ Krajina'),
(69762, 58460, 'fr', 'name', 'Laboratoire de Sciences de la Terre'),
(69763, 58461, 'en', 'name', 'Centre for Regional Policy Research and Cooperation Studiorum'),
(69764, 58462, 'no_lang_code', 'name', 'SvÔrovský (Czechia)'),
(69765, 58463, 'no_lang_code', 'name', 'Forsapi (Czechia)'),
(69766, 58464, 'cs', 'name', 'Společnost pro dějiny židÅÆ v ČeskoslovenskĆ© republice'),
(69767, 58464, 'en', 'name', 'Society for the History of Czechoslovak Jews'),
(69768, 58465, 'no_lang_code', 'name', 'Vega (Czechia)'),
(69769, 58466, 'no_lang_code', 'name', 'Foresta (Czechia)'),
(69770, 58467, 'no_lang_code', 'name', 'VodohospodÔřský podnik (Czechia)'),
(69771, 58468, 'no_lang_code', 'name', 'Albemarle (Netherlands)'),
(69772, 58469, 'no_lang_code', 'name', 'Aqua-contact (Czechia)'),
(69773, 58470, 'en', 'name', 'Shandong Provincial Agriculture Department'),
(69774, 58470, 'zh', 'name', 'å±±äøœēœå†œäøšåŽ… ę‰æåŠž'),
(69775, 58471, 'en', 'name', 'Wisconsin Veterinary Medical Association'),
(69776, 58472, 'no_lang_code', 'name', 'Ecotex (Czechia)'),
(69777, 58473, 'no_lang_code', 'name', 'Applied Coherent Technology (United States)'),
(69778, 58474, 'no_lang_code', 'name', 'Lenz & Staehelin (Switzerland)'),
(69779, 58475, 'en', 'name', 'Dictionary Society of North America'),
(69780, 58476, 'no_lang_code', 'name', 'JK envi (Czechia)'),
(69781, 58477, 'fr', 'name', 'Labex Action'),
(69782, 58478, 'en', 'name', 'Woodruff Foundation'),
(69783, 58479, 'no_lang_code', 'name', 'Arcdata (Czechia)'),
(69784, 58480, 'no_lang_code', 'name', 'ON Semiconductor (South Korea)'),
(69785, 58481, 'fi', 'name', 'Satakunnan Korkean Teknologian SƤƤtiƶ'),
(69786, 58482, 'cs', 'name', 'ZemědělskĆ© družstvo LiběŔice'),
(69787, 58483, 'no_lang_code', 'name', 'Kaspe (Czechia)'),
(69788, 58484, 'de', 'name', 'Gfs-Zürich'),
(69789, 58485, 'no_lang_code', 'name', 'Apronex (Czechia)'),
(69790, 58486, 'en', 'name', 'AIMS@JCU'),
(69791, 58487, 'fr', 'name', 'Institut EuropƩen de Gestion'),
(69792, 58488, 'en', 'name', 'Sciencenter'),
(69793, 58489, 'no_lang_code', 'name', 'Triangolo (Czechia)'),
(69794, 58490, 'no_lang_code', 'name', 'Envirmine-Energo (Czechia)'),
(69795, 58491, 'de', 'name', 'Stiftung Artenschutz'),
(69796, 58491, 'en', 'name', 'Species Conservation Foundation'),
(69797, 58492, 'en', 'name', 'Southwest Badger Resource Conservation and Development Council'),
(69798, 58493, 'de', 'name', 'Historischer Verein des Kantons Schwyz'),
(69799, 58494, 'no_lang_code', 'name', 'Academia Raetica'),
(69800, 58495, 'en', 'name', 'Institute of Social Sciences'),
(69801, 58495, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… наук'),
(69802, 58496, 'no_lang_code', 'name', 'Zeal (United Kingdom)'),
(69803, 58497, 'no_lang_code', 'name', 'Nicolet (Czechia)'),
(69804, 58498, 'en', 'name', 'Institute of Art History'),
(69805, 58498, 'hu', 'name', 'MTA BölcsészettudomÔnyi Kutatóközpont Művészettörténeti Intézet'),
(69806, 58499, 'cs', 'name', 'ForenznĆ­ DNA servis'),
(69807, 58499, 'no_lang_code', 'name', 'Forensic DNA Service (Czechia)'),
(69808, 58500, 'fr', 'name', 'Direction GƩnƩrale de l''Enseignement Obligatoire - Enseignement Primaire'),
(69809, 58501, 'en', 'name', 'Syngenta Foundation for Sustainable Agriculture'),
(69810, 58502, 'no_lang_code', 'name', 'MEC'),
(69811, 58503, 'en', 'name', 'San Francisco Foundation'),
(69812, 58504, 'no_lang_code', 'name', 'Pragoimex (Czechia)'),
(69813, 58505, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(69814, 58505, 'en', 'name', 'Ministry of Higher Education and Scientific Research'),
(69815, 58506, 'en', 'name', 'Senri Life Science Foundation'),
(69816, 58506, 'ja', 'name', 'åƒé‡Œćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(69817, 58507, 'de', 'name', 'NET Metrix'),
(69818, 58508, 'cs', 'name', 'ČeskĆ” HutnickĆ” Společnost'),
(69819, 58509, 'sv', 'name', 'Direktƶr Albert PƄhlssons Stiftelse fƶr VƤlgƶrenhet'),
(69820, 58510, 'de', 'name', 'Schweizer Allianz Gentechfrei'),
(69821, 58511, 'cs', 'name', 'ČeskĆ” SpeleologickĆ” Společnost'),
(69822, 58512, 'en', 'name', 'International Union of Geological Sciences'),
(69823, 58513, 'no_lang_code', 'name', 'XT Card (Czechia)'),
(69824, 58514, 'cs', 'name', 'Envirex'),
(69825, 58515, 'da', 'name', 'Svend Andersen Fonden'),
(69826, 58516, 'en', 'name', 'Posen Foundation'),
(69827, 58516, 'he', 'name', 'קרן פוזן'),
(69828, 58517, 'no_lang_code', 'name', 'Texas Instruments (Netherlands)'),
(69829, 58518, 'en', 'name', 'Swedish Brain Power'),
(69830, 58519, 'de', 'name', 'Berner Kantonalbank'),
(69831, 58520, 'no_lang_code', 'name', 'Benet Gold (Czechia)'),
(69832, 58521, 'no_lang_code', 'name', 'Ligranit (Czechia)'),
(69833, 58522, 'en', 'name', 'Pediatric Epilepsy Research Foundation'),
(69834, 58523, 'no_lang_code', 'name', 'Geocart (Czechia)'),
(69835, 58524, 'no_lang_code', 'name', 'Cernin (Czechia)'),
(69836, 58525, 'en', 'name', 'AMR Centre'),
(69837, 58526, 'en', 'name', 'Ministry of Industries and Innovation'),
(69838, 58527, 'no_lang_code', 'name', 'Basaltex (Czechia)'),
(69839, 58528, 'no_lang_code', 'name', 'ČAS Service (Czechia)'),
(69840, 58529, 'en', 'name', 'Rett Syndrome Association of Australia'),
(69841, 58530, 'en', 'name', 'Penn Center for AIDS Research'),
(69842, 58531, 'no_lang_code', 'name', 'Balakryl (Czechia)'),
(69843, 58532, 'no_lang_code', 'name', 'Illinois Tool Works (France)'),
(69844, 58533, 'en', 'name', 'Organic Farm School'),
(69845, 58534, 'no_lang_code', 'name', 'Coloplast (United Kingdom)'),
(69846, 58535, 'en', 'name', 'Saigh Foundation'),
(69847, 58536, 'en', 'name', 'Institute of Vegetable and Floriculture Science'),
(69848, 58536, 'ja', 'name', 'é‡ŽčœčŠ±ćē ”ē©¶éƒØé–€'),
(69849, 58537, 'en', 'name', 'East West Medical Research Institute'),
(69850, 58538, 'en', 'name', 'RYR 1 Foundation'),
(69851, 58539, 'no_lang_code', 'name', 'Delacon Biotechnik (Czechia)'),
(69852, 58540, 'no_lang_code', 'name', 'Scanco Medical (Switzerland)'),
(69853, 58541, 'no_lang_code', 'name', 'Ella BachƩ (France)'),
(69854, 58542, 'cs', 'name', 'České fórum pro rozvojovou spoluprÔci'),
(69855, 58542, 'en', 'name', 'Czech Forum for Development Cooperation'),
(69856, 58543, 'no_lang_code', 'name', 'Zetetic Institute'),
(69857, 58544, 'no_lang_code', 'name', 'Radanal (Czechia)'),
(69858, 58545, 'en', 'name', 'Pilgrim Psychiatric Center'),
(69859, 58546, 'cs', 'name', 'Znalecký Ústav Bezpečnosti a Ochrany ZdravĆ­'),
(69860, 58547, 'no_lang_code', 'name', 'Europanel (Czechia)'),
(69861, 58548, 'da', 'name', 'Dansk KrƦftforsknings Fond'),
(69862, 58549, 'de', 'name', 'Generaldirektion Bildung, Jugend, Sport und Kultur'),
(69863, 58549, 'en', 'name', 'Directorate-General for Education, Youth, Sport and Culture'),
(69864, 58549, 'fr', 'name', 'Direction gĆ©nĆ©rale de l’éducation, de la jeunesse, du sport et de la culture'),
(69865, 58550, 'no_lang_code', 'name', 'TE Connectivity (Japan)'),
(69866, 58551, 'cs', 'name', 'SprĆ”va ŽelezničnĆ­ DopravnĆ­ Cesty'),
(69867, 58552, 'en', 'name', 'Ukrainian Oil and Gas Institute'),
(69868, 58552, 'uk', 'name', 'Ukrainsky neftegazovy institut'),
(69869, 58553, 'no_lang_code', 'name', 'KVS Ekodivize (Czechia)'),
(69870, 58554, 'no_lang_code', 'name', 'Sido (Czechia)'),
(69871, 58555, 'en', 'name', 'Saika Technological Institute Foundation'),
(69872, 58555, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ é›‘č³€ęŠ€č”“ē ”ē©¶ę‰€'),
(69873, 58556, 'no_lang_code', 'name', 'Vrsanska Uhelna (Czechia)'),
(69874, 58557, 'cs', 'name', 'Labyrint'),
(69875, 58558, 'en', 'name', 'St. Jude Medical Foundation'),
(69876, 58559, 'en', 'name', 'Vietnam Education Foundation'),
(69877, 58560, 'en', 'name', 'Rockefeller Brothers Fund'),
(69878, 58561, 'no_lang_code', 'name', 'Triton Turnov (Czechia)'),
(69879, 58562, 'no_lang_code', 'name', 'Bonnel Technologie (Czechia)'),
(69880, 58563, 'no_lang_code', 'name', 'Inquiry Technologies (United States)'),
(69881, 58564, 'de', 'name', 'Institut für Automatisierung und Informatik'),
(69882, 58565, 'cs', 'name', 'ČeskĆ” společnost histo-a cytochemickĆ”'),
(69883, 58565, 'en', 'name', 'Czech Society for Histo and Cytochemistry'),
(69884, 58566, 'no_lang_code', 'name', 'Amarin (United Kingdom)'),
(69885, 58567, 'en', 'name', 'Industrial Technology Center of Okayama Prefecture'),
(69886, 58567, 'ja', 'name', 'å²”å±±ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(69887, 58568, 'en', 'name', 'Research Institute of Chemicals for Polymeric Materials'),
(69888, 58569, 'no_lang_code', 'name', 'Calimmune (United States)'),
(69889, 58570, 'en', 'name', 'Federal Government of Germany'),
(69890, 58571, 'no_lang_code', 'name', 'Karned Tools (Czechia)'),
(69891, 58572, 'no_lang_code', 'name', 'Takeda (France)'),
(69892, 58573, 'en', 'name', 'Ceres Laboratory'),
(69893, 58573, 'fr', 'name', 'Laboratoire Ceres'),
(69894, 58574, 'nl', 'name', 'Cicero Zorggroep'),
(69895, 58575, 'en', 'name', 'Restless Legs Syndrome Foundation'),
(69896, 58576, 'de', 'name', 'ViaStoria'),
(69897, 58577, 'no_lang_code', 'name', 'Testima (Czechia)'),
(69898, 58578, 'cs', 'name', 'JihočeskĆ” agentura pro podporu inovačnĆ­ho podnikĆ”nĆ­ o.p.s'),
(69899, 58578, 'en', 'name', 'South Bohemian Agency for Support to Innovative Enterprising'),
(69900, 58579, 'no_lang_code', 'name', 'Jiangsu Huadong Institute Of Li-Ion Battery'),
(69901, 58580, 'en', 'name', 'Cochrane'),
(69902, 58581, 'de', 'name', 'Sächsisches Institut für Angewandte Biotechnologie'),
(69903, 58581, 'en', 'name', 'Saxon Institute for Applied Biotechnology'),
(69904, 58581, 'es', 'name', 'Instituto Sajón de Biotecnología Aplicada anexo'),
(69905, 58581, 'ru', 'name', 'Cаксонский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной биотехнологии'),
(69906, 58582, 'no_lang_code', 'name', 'KBK fire (Czechia)'),
(69907, 58583, 'no_lang_code', 'name', 'Spel (Czechia)'),
(69908, 58584, 'no_lang_code', 'name', 'Stanley Black & Decker (France)'),
(69909, 58585, 'en', 'name', 'Canadian Energy Research Institute'),
(69910, 58586, 'de', 'name', 'Bundesgericht'),
(69911, 58586, 'en', 'name', 'Federal Supreme Court of Switzerland'),
(69912, 58586, 'fr', 'name', 'Tribunal fƩdƩral');
INSERT INTO `ror_settings` VALUES
(69913, 58586, 'it', 'name', 'Tribunale federale'),
(69914, 58586, 'rm', 'name', 'Tribunal federal'),
(69915, 58587, 'no_lang_code', 'name', 'ČIP Plus (Czechia)'),
(69916, 58588, 'de', 'name', 'Kantonsschule Enge'),
(69917, 58589, 'de', 'name', 'Departement für Wirtschaft, Soziales und Umwelt'),
(69918, 58590, 'en', 'name', 'Greek Society of Rheumatology'),
(69919, 58591, 'no_lang_code', 'name', 'Abitec (Czechia)'),
(69920, 58592, 'no_lang_code', 'name', 'Velobüro (Switzerland)'),
(69921, 58593, 'en', 'name', 'Museum of the City of Usti nad Labem'),
(69922, 58594, 'no_lang_code', 'name', 'Synthomer (Czechia)'),
(69923, 58595, 'no_lang_code', 'name', 'Knorr-Bremse (Czechia)'),
(69924, 58596, 'no_lang_code', 'name', 'Bratři HorĆ”kovĆ© (Czechia)'),
(69925, 58597, 'no_lang_code', 'name', 'Dongfeng Motor (China)'),
(69926, 58598, 'en', 'name', 'STandUP for Energy'),
(69927, 58599, 'en', 'name', 'Lantern Community Services'),
(69928, 58600, 'no_lang_code', 'name', 'RCS Kladno (Czechia)'),
(69929, 58601, 'de', 'name', 'Institut für angewandte Photonik'),
(69930, 58602, 'no_lang_code', 'name', 'Varian Medical Systems (Switzerland)'),
(69931, 58603, 'no_lang_code', 'name', 'Profinit (Czechia)'),
(69932, 58604, 'no_lang_code', 'name', 'Storz Medical (Switzerland)'),
(69933, 58605, 'no_lang_code', 'name', 'DuPont (France)'),
(69934, 58606, 'no_lang_code', 'name', 'Made In Space (United States)'),
(69935, 58607, 'en', 'name', 'Heidelberg Institute for Stem Cell Technology and Experimental Medicine'),
(69936, 58608, 'no_lang_code', 'name', 'Technology Partnership (United Kingdom)'),
(69937, 58609, 'no_lang_code', 'name', 'PooslavĆ­ NovĆ” Ves (Slovakia)'),
(69938, 58610, 'no_lang_code', 'name', 'Wista (Czechia)'),
(69939, 58611, 'en', 'name', 'Volpe National Transportation Systems Center'),
(69940, 58612, 'no_lang_code', 'name', 'Chateau Bzenec (Czechia)'),
(69941, 58613, 'no_lang_code', 'name', 'Amec Foster Wheeler (Czechia)'),
(69942, 58614, 'en', 'name', 'Webster Groves Nature Study Society'),
(69943, 58615, 'en', 'name', 'Lumbini Eye Institute'),
(69944, 58616, 'en', 'name', 'T.J. Martell Foundation'),
(69945, 58617, 'en', 'name', 'International Union for Physical and Engineering Sciences in Medicine'),
(69946, 58618, 'en', 'name', 'Mediterranean Institute for Life Sciences'),
(69947, 58618, 'hr', 'name', 'Mediteranski institut za istraživanje života'),
(69948, 58619, 'en', 'name', 'Raine Medical Research Foundation'),
(69949, 58620, 'de', 'name', 'St. Claraspital'),
(69950, 58621, 'en', 'name', 'Gabrielle’s Angel Foundation for Cancer Research'),
(69951, 58622, 'en', 'name', 'R. Harold Burton Foundation'),
(69952, 58623, 'no_lang_code', 'name', 'Altech (Czechia)'),
(69953, 58624, 'no_lang_code', 'name', 'Amer Sports (United States)'),
(69954, 58625, 'no_lang_code', 'name', 'Koenig & Bauer (Switzerland)'),
(69955, 58626, 'no_lang_code', 'name', 'Sincon (Czechia)'),
(69956, 58627, 'cs', 'name', 'Svaz Chovatelů HolŔtýnského Skotu ČR'),
(69957, 58628, 'no_lang_code', 'name', 'AGROSAD VelkƩ Bƭlovice (Czechia)'),
(69958, 58629, 'no_lang_code', 'name', 'VodĆ”renskĆ” AkciovĆ” Společnost (Czechia)'),
(69959, 58630, 'en', 'name', 'Robert E. and Evelyn McKee Foundation'),
(69960, 58631, 'no_lang_code', 'name', 'Usibelli Coal Mine (United States)'),
(69961, 58632, 'en', 'name', 'Scientific Research Institute of Technical Physics and Automation'),
(69962, 58633, 'de', 'name', 'Schweizerisches Institut für öffentliches Management'),
(69963, 58633, 'en', 'name', 'Swiss Institute for Public Management'),
(69964, 58634, 'no_lang_code', 'name', 'Vuchz (Czechia)'),
(69965, 58635, 'no_lang_code', 'name', 'ZemědělskĆ© družstvo BaÅ”nice (Czechia)'),
(69966, 58636, 'no_lang_code', 'name', 'Riisfort (Denmark)'),
(69967, 58637, 'cs', 'name', 'SlĆ”deček Museum of Local History'),
(69968, 58638, 'en', 'name', 'Neuromuscular Research Association Basel'),
(69969, 58639, 'en', 'name', 'Centre for Socio-Eco-Nomic Development'),
(69970, 58640, 'de', 'name', 'Gymnasien Kirchenfeld'),
(69971, 58641, 'no_lang_code', 'name', 'CIUR (Czechia)'),
(69972, 58642, 'cs', 'name', 'GymnÔzium Žamberk'),
(69973, 58643, 'es', 'name', 'Instituto Universitario de Profesiones Gerenciales'),
(69974, 58644, 'it', 'name', 'Memoriav'),
(69975, 58645, 'no_lang_code', 'name', 'Tovek (Czechia)'),
(69976, 58646, 'no_lang_code', 'name', 'Hemp Production (Czechia)'),
(69977, 58647, 'no_lang_code', 'name', 'Soudronic (Switzerland)'),
(69978, 58648, 'no_lang_code', 'name', 'CZ Bijo (Czechia)'),
(69979, 58649, 'cs', 'name', 'Asociace leteckých výrobců'),
(69980, 58649, 'en', 'name', 'Association of the Czech AeroSpace Industry'),
(69981, 58650, 'no_lang_code', 'name', 'Aura (Czechia)'),
(69982, 58651, 'no_lang_code', 'name', 'KHSanace (Czechia)'),
(69983, 58652, 'en', 'name', 'Science and Industry Endowment Fund'),
(69984, 58653, 'no_lang_code', 'name', 'Fermat (Czechia)'),
(69985, 58654, 'no_lang_code', 'name', 'TTC Marconi (Czechia)'),
(69986, 58655, 'en', 'name', 'Ray Thomas Edwards Foundation'),
(69987, 58656, 'no_lang_code', 'name', 'Mercer (Czechia)'),
(69988, 58657, 'cs', 'name', 'Sdružení obcí Orlicko'),
(69989, 58658, 'de', 'name', 'Amt für Städtebau'),
(69990, 58659, 'en', 'name', 'Latin American Studies Association'),
(69991, 58660, 'de', 'name', 'Kulturamt Appenzell'),
(69992, 58661, 'en', 'name', 'Institute of Archeology'),
(69993, 58661, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ археології ŠŠŠ України'),
(69994, 58662, 'fr', 'name', 'Conseil DƩpartemental des Vosges'),
(69995, 58663, 'no_lang_code', 'name', 'Tpa Čr (Czechia)'),
(69996, 58664, 'el', 'name', 'Κολλέγιο Ī‘Ī½Ī±Ļ„ĻŒĪ»Ī¹Ī±'),
(69997, 58664, 'en', 'name', 'Anatolia College'),
(69998, 58665, 'no_lang_code', 'name', 'Svoboda (Czechia)'),
(69999, 58666, 'en', 'name', 'Society for Ethnomusicology'),
(70000, 58667, 'no_lang_code', 'name', 'SlƩvƔrna a ModelƔrna NovƩ Ransko'),
(70001, 58668, 'cs', 'name', 'Nadace barokního divadla zÔmku Český Krumlov'),
(70002, 58668, 'no_lang_code', 'name', 'Foundation of the Baroque Theater in Český Krumlov'),
(70003, 58669, 'en', 'name', 'Japan Institute for Advanced Dentistry'),
(70004, 58669, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę­Æē§‘å…ˆē«ÆęŠ€č”“ē ”ē©¶ę‰€'),
(70005, 58670, 'en', 'name', 'Regional Art Gallery Liberec'),
(70006, 58671, 'no_lang_code', 'name', 'NTD Group (Czechia)'),
(70007, 58672, 'de', 'name', 'Library Am Guisanplatz'),
(70008, 58673, 'en', 'name', 'Coopers Animal Health'),
(70009, 58674, 'no_lang_code', 'name', 'Kingspan (Ireland)'),
(70010, 58675, 'no_lang_code', 'name', 'Chirana (Czechia)'),
(70011, 58676, 'en', 'name', 'Ontario Trillium Foundation'),
(70012, 58677, 'no_lang_code', 'name', 'Alginit (Czechia)'),
(70013, 58678, 'no_lang_code', 'name', 'Altron (Czechia)'),
(70014, 58679, 'cs', 'name', 'Domov Na JaroÅ”ce, PříspěvkovĆ” Organizace'),
(70015, 58680, 'no_lang_code', 'name', 'Takt (Czechia)'),
(70016, 58681, 'en', 'name', 'Sarcoma UK'),
(70017, 58682, 'no_lang_code', 'name', 'HeidelbergCement (United States)'),
(70018, 58683, 'no_lang_code', 'name', 'Minova Bohemia (Czechia)'),
(70019, 58684, 'en', 'name', 'Renewable Energy and Energy Efficiency Organization'),
(70020, 58684, 'fa', 'name', 'به ŲŖŲ§Ų±Ł†Ł…Ų§ŪŒ سازمان Ų§Ł†Ų±Ś˜ŪŒ Ł‡Ų§ŪŒ تجدیدپذیر و بهره وری Ų§Ł†Ų±Ś˜ŪŒ برق خوؓ Ų¢Ł…ŲÆŪŒŲÆ.'),
(70021, 58685, 'no_lang_code', 'name', 'Yandex (Russia)'),
(70022, 58685, 'ru', 'name', 'ЯнГекс'),
(70023, 58686, 'no_lang_code', 'name', 'Antimicrobial Materials (United States)'),
(70024, 58687, 'no_lang_code', 'name', 'SEKO Brno (Czechia)'),
(70025, 58688, 'en', 'name', 'Melbourn Science Park'),
(70026, 58689, 'en', 'name', 'Association of Foundries'),
(70027, 58690, 'no_lang_code', 'name', 'Cisco Systems (Czechia)'),
(70028, 58691, 'en', 'name', 'Food Basket (United States)'),
(70029, 58692, 'no_lang_code', 'name', 'Českomoravský Cement (Czechia)'),
(70030, 58693, 'no_lang_code', 'name', 'eHealth Consulting (United States)'),
(70031, 58694, 'no_lang_code', 'name', 'Alpha Space Test and Research Alliance (United States)'),
(70032, 58695, 'en', 'name', 'Israel National Nanotechnology Initiative'),
(70033, 58696, 'no_lang_code', 'name', 'Canfield Scientific (United States)'),
(70034, 58697, 'en', 'name', 'Jiangsu Key Laboratory of 3D Printing Equipment and Manufacturing'),
(70035, 58697, 'zh', 'name', 'ę±Ÿč‹ēœäø‰ē»“ę‰“å°č£…å¤‡äøŽåˆ¶é€ é‡ē‚¹å®žéŖŒå®¤'),
(70036, 58698, 'no_lang_code', 'name', 'IBM (Czechia)'),
(70037, 58699, 'no_lang_code', 'name', 'Styl Plzeň (Czechia)'),
(70038, 58700, 'no_lang_code', 'name', 'Agro Chomutice (Czechia)'),
(70039, 58701, 'no_lang_code', 'name', 'Excon (Czechia)'),
(70040, 58702, 'no_lang_code', 'name', 'Biopol Paints (Czechia)'),
(70041, 58703, 'no_lang_code', 'name', 'Essa (Czechia)'),
(70042, 58704, 'no_lang_code', 'name', 'Triga (Czechia)'),
(70043, 58705, 'no_lang_code', 'name', 'GEA Group (Denmark)'),
(70044, 58706, 'de', 'name', 'Stiftung Forschung 3R'),
(70045, 58706, 'en', 'name', '3R Research Foundation'),
(70046, 58707, 'no_lang_code', 'name', 'SolarEnvi (Czechia)'),
(70047, 58708, 'no_lang_code', 'name', 'MOR Informatik (Switzerland)'),
(70048, 58709, 'en', 'name', 'Ocular Research Symposia Foundation'),
(70049, 58710, 'no_lang_code', 'name', 'Rajmont (Czechia)'),
(70050, 58711, 'cs', 'name', 'Ústav pro Studium Totalitních Režimů'),
(70051, 58711, 'en', 'name', 'Institute for the Study of Totalitarian Regimes'),
(70052, 58712, 'no_lang_code', 'name', 'C Modul (Czechia)'),
(70053, 58713, 'en', 'name', 'Robert W. Woodruff Foundation'),
(70054, 58714, 'en', 'name', 'Embassy of Switzerland in Washington'),
(70055, 58714, 'fr', 'name', 'Ambassade de Suisse aux Etats-Unis d’AmĆ©rique'),
(70056, 58715, 'fr', 'name', 'Institut Regional Des Materiaux Avance'),
(70057, 58716, 'en', 'name', 'Tea Research Association'),
(70058, 58717, 'en', 'name', 'Swartz Foundation'),
(70059, 58718, 'cs', 'name', 'Domov pro Seniory ĎƔblice'),
(70060, 58719, 'en', 'name', 'Resources Legacy Fund'),
(70061, 58720, 'no_lang_code', 'name', 'Advacam (Czechia)'),
(70062, 58721, 'no_lang_code', 'name', 'Radom (Czechia)'),
(70063, 58722, 'en', 'name', 'Bioengineering Center'),
(70064, 58722, 'ru', 'name', 'Š‘ŠøŠ¾ŠøŠ½Š¶ŠµŠ½ŠµŃ€ŠøŃ'),
(70065, 58723, 'no_lang_code', 'name', 'Marshal Logistic (Czechia)'),
(70066, 58724, 'no_lang_code', 'name', 'Houfek (Czechia)'),
(70067, 58725, 'no_lang_code', 'name', 'Moravia Cans (Czechia)'),
(70068, 58726, 'en', 'name', 'National Taiwan Craft Research and Development Institute'),
(70069, 58726, 'zh', 'name', 'å›½ē«‹å°ę¹¾å·„č‰ŗē ”ē©¶å‘å±•ē ”ē©¶ę‰€'),
(70070, 58727, 'fr', 'name', 'PhagogĆØne'),
(70071, 58728, 'no_lang_code', 'name', 'Tradiphar (France)'),
(70072, 58729, 'no_lang_code', 'name', 'Japan Tobacco (Switzerland)'),
(70073, 58730, 'no_lang_code', 'name', 'Rheinmetall (Czechia)'),
(70074, 58731, 'de', 'name', 'ArchƤologie Schweiz'),
(70075, 58731, 'en', 'name', 'Swiss Archaeology'),
(70076, 58731, 'fr', 'name', 'ArchƩologie Suisse'),
(70077, 58731, 'it', 'name', 'Archeologia Svizzera'),
(70078, 58732, 'no_lang_code', 'name', 'Ircon (Czechia)'),
(70079, 58733, 'no_lang_code', 'name', 'Junker (Czechia)'),
(70080, 58734, 'de', 'name', 'Gesundheitsdepartement des Kantons Basel-Stadt'),
(70081, 58735, 'no_lang_code', 'name', 'VisuGen Global (United States)'),
(70082, 58736, 'no_lang_code', 'name', 'Holiste (France)'),
(70083, 58737, 'no_lang_code', 'name', 'Clean Energy (United States)'),
(70084, 58738, 'no_lang_code', 'name', 'Cemex (Czechia)'),
(70085, 58739, 'no_lang_code', 'name', 'Top Alulit (Czechia)'),
(70086, 58740, 'no_lang_code', 'name', 'Biogen (Switzerland)'),
(70087, 58741, 'en', 'name', 'ALERTAsia Foundation'),
(70088, 58742, 'no_lang_code', 'name', 'Medtronic (Luxembourg)'),
(70089, 58743, 'de', 'name', 'Institut für Wirtschaftsstudien Basel'),
(70090, 58744, 'no_lang_code', 'name', 'Digitech Services (New Zealand)'),
(70091, 58745, 'no_lang_code', 'name', 'Fabconworks (Czechia)'),
(70092, 58746, 'no_lang_code', 'name', 'Kontron (Czechia)'),
(70093, 58747, 'en', 'name', 'Carolina Farm Stewardship Association'),
(70094, 58748, 'en', 'name', 'Research Institute of Natural and Synthetic Diamonds'),
(70095, 58749, 'no_lang_code', 'name', 'European Business Enterprise (Czechia)'),
(70096, 58750, 'en', 'name', 'RSF Social Finance'),
(70097, 58751, 'no_lang_code', 'name', 'Net4gas (Czechia)'),
(70098, 58752, 'cs', 'name', 'MěstskĆ” Nemocnice ČÔslav'),
(70099, 58753, 'no_lang_code', 'name', 'Espiner Medical (United Kingdom)'),
(70100, 58754, 'fr', 'name', 'Laboratoire Saint Martin'),
(70101, 58755, 'de', 'name', 'Institut für Produktqualität'),
(70102, 58756, 'no_lang_code', 'name', 'Medical Production (France)'),
(70103, 58757, 'no_lang_code', 'name', 'Telstra (Australia)'),
(70104, 58758, 'no_lang_code', 'name', 'Buchhofer (Switzerland)'),
(70105, 58759, 'en', 'name', 'Ohio Water Development Authority'),
(70106, 58760, 'no_lang_code', 'name', 'IRDAM (Switzerland)'),
(70107, 58761, 'no_lang_code', 'name', 'Quinta Analytica (Czechia)'),
(70108, 58762, 'no_lang_code', 'name', 'Lift Servis (Czechia)'),
(70109, 58763, 'en', 'name', 'IMDEA Food'),
(70110, 58763, 'es', 'name', 'Instituto IMDEA Alimentación'),
(70111, 58764, 'no_lang_code', 'name', 'IST Medical (France)'),
(70112, 58765, 'no_lang_code', 'name', 'Stelic Institute (Japan)'),
(70113, 58766, 'no_lang_code', 'name', 'Agentura Pro RegionƔlnƭ Rozvoj (Czechia)'),
(70114, 58767, 'en', 'name', 'Society for Analytical Chemists of Pittsburgh'),
(70115, 58768, 'en', 'name', 'Viet Nam Government'),
(70116, 58769, 'no_lang_code', 'name', 'West Pharmaceutical Services (United Kingdom)'),
(70117, 58770, 'en', 'name', 'Gravure Association of the Americas'),
(70118, 58771, 'en', 'name', 'Van Vliet Medical Supply'),
(70119, 58772, 'cs', 'name', 'Nemocnice Prachatice'),
(70120, 58773, 'no_lang_code', 'name', 'Enter (Switzerland)'),
(70121, 58774, 'cs', 'name', 'NakladatelstvĆ­ Fraus'),
(70122, 58774, 'no_lang_code', 'name', 'Fraus Publishing (Czechia)'),
(70123, 58775, 'no_lang_code', 'name', 'ZF Engineering (Czechia)'),
(70124, 58776, 'no_lang_code', 'name', 'Benes A Lat (Czechia)'),
(70125, 58777, 'no_lang_code', 'name', 'MeDiLa'),
(70126, 58778, 'en', 'name', 'Applied Research Associates'),
(70127, 58779, 'no_lang_code', 'name', 'VAF Instruments (Netherlands)'),
(70128, 58780, 'en', 'name', 'Ufa Eye Research Institute'),
(70129, 58781, 'no_lang_code', 'name', 'GGC Energy (Czechia)'),
(70130, 58782, 'pt', 'name', 'Instituto Sapientia'),
(70131, 58783, 'cs', 'name', 'VzdělĆ”vacĆ­ centrum pro veřejnou SprĆ”vu'),
(70132, 58784, 'en', 'name', 'Belgrade Centre for Security Policy'),
(70133, 58785, 'no_lang_code', 'name', 'K Profi (Czechia)'),
(70134, 58786, 'es', 'name', 'Academia Nacional de Ciencia y TecnologĆ­a'),
(70135, 58787, 'no_lang_code', 'name', 'Sinpol (Czechia)'),
(70136, 58788, 'en', 'name', 'Mountain Comprehensive Health'),
(70137, 58789, 'en', 'name', 'International Committee of the Red Cross'),
(70138, 58790, 'en', 'name', 'International Union of Biological Sciences'),
(70139, 58791, 'it', 'name', 'UBI Banca'),
(70140, 58792, 'no_lang_code', 'name', 'Pilana (Czechia)'),
(70141, 58793, 'de', 'name', 'Nationalstiftung für Forschung Technologie und Entwicklung'),
(70142, 58794, 'no_lang_code', 'name', 'Novel Health Strategies (United States)'),
(70143, 58795, 'en', 'name', 'Illinois Back Institute'),
(70144, 58796, 'no_lang_code', 'name', 'Alcoma (Czechia)'),
(70145, 58797, 'en', 'name', 'Geneva Finance Research Institute'),
(70146, 58798, 'no_lang_code', 'name', 'Cyclopharma (France)'),
(70147, 58799, 'de', 'name', 'Institut für Telematik'),
(70148, 58799, 'en', 'name', 'Institute for Telematics'),
(70149, 58800, 'no_lang_code', 'name', 'Bruker (Switzerland)'),
(70150, 58801, 'no_lang_code', 'name', 'Clariant (United States)'),
(70151, 58802, 'no_lang_code', 'name', 'NBD Nanotechnologies (United States)'),
(70152, 58803, 'no_lang_code', 'name', 'Laboratoires PhodƩ (France)'),
(70153, 58804, 'no_lang_code', 'name', 'Model Software (United States)'),
(70154, 58805, 'no_lang_code', 'name', 'Atlas Copco (Belgium)'),
(70155, 58806, 'no_lang_code', 'name', 'Oceaneering International (United States)'),
(70156, 58807, 'no_lang_code', 'name', 'SyncThink (United States)'),
(70157, 58808, 'no_lang_code', 'name', 'Ekomont Litoměřice (Czechia)'),
(70158, 58809, 'en', 'name', 'Save the Redwoods League'),
(70159, 58810, 'en', 'name', 'Agency for Persons with Disabilities'),
(70160, 58811, 'de', 'name', 'Debrunner Sozialforschung und Projekte'),
(70161, 58812, 'no_lang_code', 'name', 'Medicton (Czechia)'),
(70162, 58813, 'en', 'name', 'Synthetic Rubber Research Institute named after S. V. Lebedeva'),
(70163, 58813, 'ru', 'name', 'ŠŠ˜Š˜ синтетического ŠŗŠ°ŃƒŃ‡ŃƒŠŗŠ° имени Š”. Š’. ЛебеГева'),
(70164, 58814, 'de', 'name', 'Hospiz im Park'),
(70165, 58815, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ł…ŲµŲ± Ł„Ł„Ł†Ų§Ł†Łˆ ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(70166, 58815, 'en', 'name', 'Egypt Nanotechnology Center'),
(70167, 58816, 'no_lang_code', 'name', 'Cyclacel Pharmaceuticals (United Kingdom)'),
(70168, 58817, 'fr', 'name', 'Fondation Sécurité Routière'),
(70169, 58818, 'no_lang_code', 'name', 'Elektrometall (Czechia)'),
(70170, 58819, 'no_lang_code', 'name', 'DĆ”lničnĆ­ Stavby Praha (Czechia)'),
(70171, 58820, 'en', 'name', 'Serum IVF'),
(70172, 58821, 'no_lang_code', 'name', 'Denas Color (Czechia)'),
(70173, 58822, 'no_lang_code', 'name', 'Procter & Gamble - Rakona (Czechia)'),
(70174, 58823, 'en', 'name', 'International Civil Aviation Organization'),
(70175, 58824, 'no_lang_code', 'name', 'Dasfos (Czechia)'),
(70176, 58825, 'no_lang_code', 'name', 'Schwery Consulting (Switzerland)'),
(70177, 58826, 'cs', 'name', 'KlÔŔter ChotěŔov'),
(70178, 58827, 'en', 'name', 'PSC Partners Seeking a Cure'),
(70179, 58828, 'no_lang_code', 'name', 'Unmanned Experts (United States)'),
(70180, 58829, 'no_lang_code', 'name', 'Tech Aid Czech Branch (Czechia)'),
(70181, 58830, 'no_lang_code', 'name', 'BFP Lesy a statky TomÔŔe Bati'),
(70182, 58831, 'en', 'name', 'Western Surgical Association'),
(70183, 58832, 'en', 'name', 'Alzheimer Disease International'),
(70184, 58833, 'no_lang_code', 'name', 'ExxonMobil (France)'),
(70185, 58834, 'cs', 'name', 'ČeskÔ Asociace Steeplachase'),
(70186, 58835, 'no_lang_code', 'name', 'Bogges (Czechia)'),
(70187, 58836, 'no_lang_code', 'name', 'Shell (Japan)'),
(70188, 58837, 'no_lang_code', 'name', 'INFICON (Switzerland)'),
(70189, 58838, 'cs', 'name', 'VĆ­tkovickĆ” Nemocnice'),
(70190, 58839, 'no_lang_code', 'name', 'InGen (France)'),
(70191, 58840, 'no_lang_code', 'name', 'GoodMills Česko'),
(70192, 58841, 'no_lang_code', 'name', 'DSK (Czechia)'),
(70193, 58842, 'no_lang_code', 'name', 'Sev Litovel (Czechia)'),
(70194, 58843, 'de', 'name', 'Schweizerische Stiftung für Edelstein-Forschung'),
(70195, 58843, 'en', 'name', 'Swiss Foundation for the Research of Gemstones'),
(70196, 58844, 'no_lang_code', 'name', 'EkoBio (Czechia)'),
(70197, 58845, 'en', 'name', 'Taylor’s Tale'),
(70198, 58846, 'en', 'name', 'Chemical Synthesis Lab'),
(70199, 58847, 'en', 'name', 'Kauffman Physical Therapy'),
(70200, 58848, 'en', 'name', 'Foundation for the Promotion of Applied Scientific Research and Technology in Asturias'),
(70201, 58848, 'es', 'name', 'Fundación para el Fomento en Asturias de la Investigación Científica Aplicada y la Tecnología'),
(70202, 58849, 'en', 'name', 'Vatican Secret Archives'),
(70203, 58849, 'it', 'name', 'Archivio Segreto Vaticano'),
(70204, 58849, 'la', 'name', 'Archivum Secretum Apostolicum Vaticanum'),
(70205, 58850, 'no_lang_code', 'name', 'Buhmwoo Institute of Technology Research (South Korea)'),
(70206, 58851, 'no_lang_code', 'name', 'C and D (Czechia)'),
(70207, 58852, 'en', 'name', 'Department of Medical Assistance Services'),
(70208, 58853, 'no_lang_code', 'name', 'ITA (Czechia)'),
(70209, 58854, 'cs', 'name', 'ČeskÔ asociace pro IT služby'),
(70210, 58854, 'en', 'name', 'Czech ICT Alliance'),
(70211, 58855, 'en', 'name', 'Zabaikalsky State Humanitarian and Pedagogical University'),
(70212, 58855, 'ru', 'name', 'Š—Š°Š±Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. Š“. Š§ŠµŃ€Š½Ń‹ŃˆŠµŠ²ŃŠŗŠ¾Š³Š¾'),
(70213, 58856, 'no_lang_code', 'name', 'Shell (France)'),
(70214, 58857, 'de', 'name', 'IFF Weimar, Institut für Fertigteiltechnik und Fertigbau Weimar'),
(70215, 58858, 'cs', 'name', 'Český ĆŗÅ™ad pro zkouÅ”enĆ­ zbranĆ­ a střeliva'),
(70216, 58858, 'en', 'name', 'Czech Proof House for Arms and Ammunition'),
(70217, 58859, 'no_lang_code', 'name', 'Fish Farm Bohemia (Czechia)'),
(70218, 58860, 'en', 'name', 'Severns Family Foundation'),
(70219, 58861, 'no_lang_code', 'name', 'Vaklima (Czechia)'),
(70220, 58862, 'de', 'name', 'Schweizerischer Wissenschafts- und Innovationsrat'),
(70221, 58862, 'en', 'name', 'Swiss Science and Innovation Council'),
(70222, 58862, 'fr', 'name', 'Conseil suisse de la science et de l''innovation'),
(70223, 58862, 'it', 'name', 'Consiglio svizzero della scienza e dell''innovazione'),
(70224, 58863, 'en', 'name', 'Aigine Cultural Research Center'),
(70225, 58864, 'no_lang_code', 'name', 'Clairvoyant Technology (United States)'),
(70226, 58865, 'en', 'name', 'New Mexico Farmers’ Marketing Association'),
(70227, 58866, 'no_lang_code', 'name', 'Dopravnƭ podnik města ƚstƭ nad Labem (Czechia)'),
(70228, 58867, 'en', 'name', 'VA Northwest Network'),
(70229, 58868, 'no_lang_code', 'name', 'Zemos (Czechia)'),
(70230, 58869, 'no_lang_code', 'name', 'Irish Life (Ireland)'),
(70231, 58870, 'en', 'name', 'San Angelo Health Foundation'),
(70232, 58871, 'no_lang_code', 'name', 'Limagrain (Czechia)'),
(70233, 58872, 'en', 'name', 'Carter BloodCare'),
(70234, 58873, 'no_lang_code', 'name', 'eWind Solutions (United States)'),
(70235, 58874, 'en', 'name', 'South African Sugar Association'),
(70236, 58875, 'en', 'name', 'Indiana Office of the Governor'),
(70237, 58876, 'no_lang_code', 'name', 'Tratec (Czechia)'),
(70238, 58877, 'no_lang_code', 'name', 'Structural Science Composites (United Kingdom)'),
(70239, 58878, 'de', 'name', 'Gebert Rüf Stiftung'),
(70240, 58879, 'no_lang_code', 'name', 'Saurer (Czechia)'),
(70241, 58880, 'no_lang_code', 'name', 'Walmark (Czechia)'),
(70242, 58881, 'no_lang_code', 'name', 'US Biologic (United States)'),
(70243, 58882, 'no_lang_code', 'name', 'DopravnĆ­ podnik Karlovy Vary (Czechia)'),
(70244, 58883, 'no_lang_code', 'name', 'Agroholding (Czechia)'),
(70245, 58884, 'en', 'name', 'IMDEA Networks'),
(70246, 58884, 'es', 'name', 'Instituto IMDEA Networks'),
(70247, 58885, 'no_lang_code', 'name', 'Infineum (United States)'),
(70248, 58886, 'no_lang_code', 'name', 'Elfe (Czechia)'),
(70249, 58887, 'no_lang_code', 'name', 'HF-Czechforge (Czechia)'),
(70250, 58888, 'no_lang_code', 'name', 'Emmi (Switzerland)'),
(70251, 58889, 'no_lang_code', 'name', 'Free Energy (Slovakia)'),
(70252, 58890, 'no_lang_code', 'name', 'TechTest (Czechia)'),
(70253, 58891, 'no_lang_code', 'name', 'Pars Nova (Czechia)'),
(70254, 58892, 'en', 'name', 'Guangzhou Special Pressure Equipment Testing and Research Institute'),
(70255, 58892, 'zh', 'name', 'å¹æå·žē‰¹ē§ę‰æåŽ‹č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(70256, 58893, 'no_lang_code', 'name', 'Medihope (Czechia)'),
(70257, 58894, 'no_lang_code', 'name', 'Amer Sports (Finland)'),
(70258, 58895, 'no_lang_code', 'name', 'GEO Partner (Switzerland)'),
(70259, 58896, 'no_lang_code', 'name', 'JTEKT (France)'),
(70260, 58897, 'en', 'name', 'Virginia Hodgkins Somers Foundation'),
(70261, 58898, 'en', 'name', 'Rural Women New Zealand'),
(70262, 58899, 'no_lang_code', 'name', 'Michell Instruments (United Kingdom)'),
(70263, 58900, 'en', 'name', 'Ceramic Synthesis and Functionalization Laboratory'),
(70264, 58900, 'fr', 'name', 'Laboratoire de Synthèse et Fonctionnalisation des Céramiques'),
(70265, 58901, 'en', 'name', 'Shanghai Nanotechnology Promotion Center'),
(70266, 58901, 'zh', 'name', 'äøŠęµ·åø‚ēŗ³ē±³ē§‘ęŠ€äøŽäŗ§äøšå‘å±•äæƒčæ›äø­åæƒ'),
(70267, 58902, 'el', 'name', '΄πουργείο ΄γείας'),
(70268, 58902, 'en', 'name', 'Ministry of Health'),
(70269, 58903, 'no_lang_code', 'name', 'Esto Cheb (Czechia)'),
(70270, 58904, 'en', 'name', 'World Health Organization Regional Office for the Western Pacific'),
(70271, 58905, 'no_lang_code', 'name', 'Estcom (Czechia)'),
(70272, 58906, 'no_lang_code', 'name', 'MaDeX (Czechia)'),
(70273, 58907, 'no_lang_code', 'name', 'Sampark'),
(70274, 58908, 'no_lang_code', 'name', 'Semix Pluso (Czechia)'),
(70275, 58909, 'en', 'name', 'Comic Relief'),
(70276, 58910, 'sv', 'name', 'Stiftelsen Sunnerdahls Handikappfond'),
(70277, 58911, 'no_lang_code', 'name', 'Provisco CS (Czechia)'),
(70278, 58912, 'no_lang_code', 'name', 'ANC Components (Czechia)'),
(70279, 58913, 'no_lang_code', 'name', 'Jimi (Czechia)'),
(70280, 58914, 'no_lang_code', 'name', 'Explat (Czechia)'),
(70281, 58915, 'no_lang_code', 'name', 'Gilson (France)'),
(70282, 58916, 'no_lang_code', 'name', 'Prvnƭ SignƔlnƭ (Czechia)'),
(70283, 58917, 'fr', 'name', 'Société Académique de Genève'),
(70284, 58918, 'de', 'name', 'Suiselectra Ingenieurunternehmung AG'),
(70285, 58918, 'no_lang_code', 'name', 'Suiselectra Consulting Engineers (Switzerland)'),
(70286, 58919, 'no_lang_code', 'name', 'RPG Life Sciences (India)'),
(70287, 58920, 'no_lang_code', 'name', 'Colsys (Czechia)'),
(70288, 58921, 'no_lang_code', 'name', 'Procter & Gamble (France)'),
(70289, 58922, 'cs', 'name', 'Muzeum ČeskĆ©ho rĆ”je v Turnově'),
(70290, 58922, 'en', 'name', 'Museum of the Bohemian Paradise in Turnov'),
(70291, 58923, 'en', 'name', 'Medipolis Medical Research Institute'),
(70292, 58924, 'no_lang_code', 'name', 'IMS-DraŔnar (Czechia)'),
(70293, 58925, 'en', 'name', 'Weeden Foundation'),
(70294, 58926, 'no_lang_code', 'name', 'Mediware (Czechia)'),
(70295, 58927, 'en', 'name', 'Asai Germanium Research Institute'),
(70296, 58927, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęµ…äŗ•ć‚²ćƒ«ćƒžćƒ‹ć‚¦ćƒ ē ”ē©¶ę‰€'),
(70297, 58928, 'no_lang_code', 'name', 'Can Superconductors (Czechia)'),
(70298, 58929, 'no_lang_code', 'name', 'Bech Akku Power Batteries (Czechia)'),
(70299, 58930, 'no_lang_code', 'name', 'Ceres Imaging (United States)'),
(70300, 58931, 'no_lang_code', 'name', 'Eltopia Communications (United States)'),
(70301, 58932, 'no_lang_code', 'name', 'Advanced Mask Technology Center (Germany)'),
(70302, 58933, 'en', 'name', 'Central Region Agricultural Research Center'),
(70303, 58934, 'no_lang_code', 'name', 'Karel ŘehÔk (Czechia)'),
(70304, 58935, 'en', 'name', 'National Scientific Center "Institute of Experimental and Clinical Veterinary Medicine"'),
(70305, 58935, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠµŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Ń— і клінічної ветеринарної меГицини»'),
(70306, 58936, 'no_lang_code', 'name', 'TriloByte Statistical Software (Czechia)'),
(70307, 58937, 'no_lang_code', 'name', 'Watrex (Czechia)'),
(70308, 58938, 'en', 'name', 'Montachusett Opportunity Council'),
(70309, 58939, 'no_lang_code', 'name', 'Fapros družstvo (Czechia)'),
(70310, 58940, 'en', 'name', 'Gateway Greening'),
(70311, 58941, 'no_lang_code', 'name', 'Tecan (Switzerland)'),
(70312, 58942, 'no_lang_code', 'name', 'Signal Projekt (Czechia)'),
(70313, 58943, 'no_lang_code', 'name', 'Metabo (Switzerland)'),
(70314, 58944, 'no_lang_code', 'name', 'Fluxamat (Czechia)'),
(70315, 58945, 'en', 'name', 'Institute for Independent Studies Zürich'),
(70316, 58946, 'en', 'name', 'Vietnam Academy of Agricultural Sciences'),
(70317, 58946, 'vi', 'name', 'Viện Khoa hį»c NĆ“ng nghiệp Việt Nam'),
(70318, 58947, 'no_lang_code', 'name', 'Mesit (Czechia)'),
(70319, 58948, 'de', 'name', 'Gesundheits- und Fürsorgedirektion des Kantons Bern'),
(70320, 58949, 'it', 'name', 'Fondazione CRT'),
(70321, 58950, 'en', 'name', 'Womens Fund of Central Ohio'),
(70322, 58951, 'de', 'name', 'Kantonsschule am Burggraben'),
(70323, 58952, 'en', 'name', 'World Horse Welfare'),
(70324, 58953, 'no_lang_code', 'name', 'Stony Creek Colors (United States)'),
(70325, 58954, 'en', 'name', 'Rosenberg Foundation'),
(70326, 58955, 'en', 'name', 'PLUS Foundation'),
(70327, 58956, 'no_lang_code', 'name', 'Gateway Group (India)'),
(70328, 58957, 'no_lang_code', 'name', 'Lihovar Lžín (Czechia)'),
(70329, 58958, 'fr', 'name', 'Centre RƩgional d''Etudes des Populations Alpines'),
(70330, 58959, 'no_lang_code', 'name', 'Ireks Enzyma (Czechia)'),
(70331, 58960, 'no_lang_code', 'name', 'Merit Medical (France)'),
(70332, 58961, 'de', 'name', 'Friedrich-Naumann-Stiftung für die Freiheit'),
(70333, 58961, 'en', 'name', 'Friedrich Naumann Foundation'),
(70334, 58962, 'no_lang_code', 'name', 'Datacon (Czechia)'),
(70335, 58963, 'no_lang_code', 'name', 'Eclair (France)'),
(70336, 58964, 'no_lang_code', 'name', 'Osvětlenƭ Černoch (Czechia)'),
(70337, 58965, 'en', 'name', 'Quixote Foundation'),
(70338, 58966, 'en', 'name', 'Ohio Department of Aging'),
(70339, 58967, 'no_lang_code', 'name', 'Asilomar Bio (United States)'),
(70340, 58968, 'cs', 'name', 'Institut Evaluací a SociÔlních Analýz'),
(70341, 58968, 'en', 'name', 'Institute for Evaluation and Social Analyses'),
(70342, 58969, 'no_lang_code', 'name', 'Provod (Czechia)'),
(70343, 58970, 'de', 'name', 'Bündner Kunstmuseum'),
(70344, 58971, 'az', 'name', 'Neft Kimya Prosesləri Institutu'),
(70345, 58972, 'no_lang_code', 'name', 'Dinel (Czechia)'),
(70346, 58973, 'no_lang_code', 'name', 'Windcall Manufacturing (United States)'),
(70347, 58974, 'no_lang_code', 'name', 'Sloveč (Czechia)'),
(70348, 58975, 'es', 'name', 'Fundación Ramón Areces'),
(70349, 58976, 'en', 'name', 'Arkansas Land and Community Development'),
(70350, 58977, 'no_lang_code', 'name', 'Procter & Gamble (Canada)'),
(70351, 58978, 'en', 'name', 'Finnish Society of Sciences and Letters'),
(70352, 58978, 'fi', 'name', 'Suomen Tiedeseura'),
(70353, 58978, 'sv', 'name', 'Finska Vetenskaps-Societeten'),
(70354, 58979, 'en', 'name', 'Farmer Veteran Coalition'),
(70355, 58980, 'fr', 'name', 'Conseil DƩpartemental de la Haute-Savoie'),
(70356, 58981, 'es', 'name', 'IMDEA Water, Instituto IMDEA Agua'),
(70357, 58982, 'no_lang_code', 'name', 'Samumed (United States)'),
(70358, 58983, 'no_lang_code', 'name', 'Arysta LifeScience (France)'),
(70359, 58984, 'en', 'name', 'Swedish Norwegian Foundation for Equine Research'),
(70360, 58984, 'sv', 'name', 'Stiftelsen HƤstforskning'),
(70361, 58985, 'en', 'name', 'Environmental Earth Sciences'),
(70362, 58986, 'no_lang_code', 'name', 'Groupe Clarins (France)'),
(70363, 58987, 'it', 'name', 'Lega Ticinese Contro il Reumatismo'),
(70364, 58988, 'no_lang_code', 'name', 'Microsynth (Switzerland)'),
(70365, 58989, 'no_lang_code', 'name', 'Integra LifeSciences (France)'),
(70366, 58990, 'es', 'name', 'Clinica Santa Maria'),
(70367, 58991, 'no_lang_code', 'name', 'Elisabeth Pharmacon (Czechia)'),
(70368, 58992, 'en', 'name', 'Northeast Maritime Institute'),
(70369, 58993, 'de', 'name', 'Staatliches Weinbauinstitut Freiburg'),
(70370, 58994, 'en', 'name', 'Kitasato University East Hospital'),
(70371, 58994, 'ja', 'name', 'åŒ—é‡Œå¤§å­¦ę±ē—…é™¢'),
(70372, 58995, 'en', 'name', 'Trust for Conservation Innovation'),
(70373, 58996, 'en', 'name', 'Helmholtz Alliance Imaging and Curing Environmental Metabolic Diseases'),
(70374, 58997, 'en', 'name', 'Green River Community College'),
(70375, 58998, 'no_lang_code', 'name', 'Newell Brands (France)'),
(70376, 58999, 'no_lang_code', 'name', 'JDA Software (United States)'),
(70377, 59000, 'no_lang_code', 'name', 'Sudop Group (Czechia)'),
(70378, 59001, 'de', 'name', 'Kloster St. Johann Müstair'),
(70379, 59002, 'cs', 'name', 'Českomoravský Svaz MlékÔrenský'),
(70380, 59003, 'no_lang_code', 'name', 'Accelerated Ag Technologies (United States)'),
(70381, 59004, 'aa', 'name', 'Centro de Salud Miguel de Cervantes'),
(70382, 59004, 'en', 'name', 'Miguel de Cervantes Health Care Centre'),
(70383, 59005, 'cs', 'name', 'DopravnĆ­ Podnik Hlavniho Mesta Prahy'),
(70384, 59006, 'no_lang_code', 'name', 'Business Innovation Center (Bulgaria)'),
(70385, 59007, 'no_lang_code', 'name', 'Lasvit (Czechia)'),
(70386, 59008, 'en', 'name', 'Ophthalmos Eye Research & Therapeutic Institute'),
(70387, 59009, 'en', 'name', 'Z.Smith Reynolds Foundation'),
(70388, 59010, 'en', 'name', 'CEP America'),
(70389, 59011, 'en', 'name', 'Level Playing Field Institute'),
(70390, 59012, 'no_lang_code', 'name', 'ENVI (Czechia)'),
(70391, 59013, 'en', 'name', 'Gaia Medical Institute'),
(70392, 59014, 'no_lang_code', 'name', 'Nexira (France)'),
(70393, 59015, 'no_lang_code', 'name', 'Dionea (Switzerland)'),
(70394, 59016, 'no_lang_code', 'name', 'Cardion (Czechia)'),
(70395, 59017, 'en', 'name', 'Unitectra'),
(70396, 59018, 'no_lang_code', 'name', 'Conte Energy (Czechia)'),
(70397, 59019, 'no_lang_code', 'name', 'BASF (Czechia)'),
(70398, 59020, 'en', 'name', 'Vetiver Network International'),
(70399, 59021, 'no_lang_code', 'name', 'Nanopolis Suzhou (China)'),
(70400, 59021, 'zh', 'name', 'č‹å·žēŗ³ē±³ē§‘ęŠ€å‘å±•ęœ‰é™å…¬åø'),
(70401, 59022, 'no_lang_code', 'name', 'Integra LifeSciences (United Kingdom)'),
(70402, 59023, 'en', 'name', 'Women''s Foundation of Colorado'),
(70403, 59024, 'en', 'name', 'Pittsburgh Supercomputing Center'),
(70404, 59025, 'no_lang_code', 'name', 'Laboratoire France BƩbƩ Nutrition (France)'),
(70405, 59026, 'en', 'name', 'Bethesda Spital'),
(70406, 59027, 'no_lang_code', 'name', 'Until There’s A Cure'),
(70407, 59028, 'no_lang_code', 'name', 'Wacker (United States)'),
(70408, 59029, 'en', 'name', 'Church of the Merciful Sisters of Sts. Karel Boromejský'),
(70409, 59030, 'no_lang_code', 'name', 'Laphal (France)'),
(70410, 59031, 'en', 'name', 'Museum of Art and History'),
(70411, 59031, 'fr', 'name', 'Musée d''Art et d''Histoire de Neuchâtel'),
(70412, 59032, 'en', 'name', 'Sophia Foundation for Children'),
(70413, 59033, 'no_lang_code', 'name', 'Rigetti Computing (United States)'),
(70414, 59034, 'en', 'name', 'Project ALS'),
(70415, 59035, 'de', 'name', 'Deutsches Institut für Zell und Gewebeersatz'),
(70416, 59035, 'en', 'name', 'German Institute for Cell and Tissue Replacement'),
(70417, 59036, 'de', 'name', 'GeschƤftsstelle SVIAL'),
(70418, 59037, 'de', 'name', 'Zoologischer Garten Berlin'),
(70419, 59037, 'en', 'name', 'Berlin Zoological Garden'),
(70420, 59038, 'cs', 'name', 'Rada pro mezinƔrodnƭ vztahy'),
(70421, 59038, 'en', 'name', 'Czech Council on Foreign Relations'),
(70422, 59039, 'en', 'name', 'Wolfe’s Neck Farm'),
(70423, 59040, 'no_lang_code', 'name', 'GKN (France)'),
(70424, 59041, 'en', 'name', 'Northwest Scientific Association'),
(70425, 59042, 'no_lang_code', 'name', 'Allyke (United States)'),
(70426, 59043, 'en', 'name', 'Ola Grimsby Institute'),
(70427, 59044, 'no_lang_code', 'name', 'Noventis (Czechia)'),
(70428, 59045, 'en', 'name', 'Institute of Occupational Medicine'),
(70429, 59046, 'es', 'name', 'Fundación para la Innovación y la Prospectiva en Salud en España'),
(70430, 59047, 'no_lang_code', 'name', 'Bernard (Czechia)'),
(70431, 59048, 'en', 'name', 'Center for Interdisciplinary Studies of Molecular Interactions'),
(70432, 59049, 'no_lang_code', 'name', 'Patria KobylĆ­ (Czechia)'),
(70433, 59050, 'en', 'name', 'Sandip Foundation'),
(70434, 59051, 'no_lang_code', 'name', 'Imatech (Czechia)'),
(70435, 59052, 'cs', 'name', 'ČeskÔ MembrÔnovÔ Platforma'),
(70436, 59053, 'de', 'name', 'Historisches Museum Olten'),
(70437, 59054, 'no_lang_code', 'name', 'Fytovita (Czechia)'),
(70438, 59055, 'no_lang_code', 'name', 'K2pharm (Czechia)'),
(70439, 59056, 'no_lang_code', 'name', 'Kapa ZlĆ­n (Czechia)'),
(70440, 59057, 'no_lang_code', 'name', 'Conversant (Luxembourg)'),
(70441, 59058, 'en', 'name', 'North South Institute'),
(70442, 59059, 'no_lang_code', 'name', 'Grafted Growers (United States)'),
(70443, 59060, 'no_lang_code', 'name', 'GEOline (Czechia)'),
(70444, 59061, 'no_lang_code', 'name', 'KR Důlní služby (Czechia)'),
(70445, 59062, 'cs', 'name', 'Nemocnice Milosrdných bratří'),
(70446, 59063, 'no_lang_code', 'name', 'Heidenhain (Slovakia)'),
(70447, 59064, 'no_lang_code', 'name', 'Adidas (United Kingdom)'),
(70448, 59065, 'en', 'name', 'Intersectoral Research and Technology Complex Eye Microsurgery'),
(70449, 59065, 'ru', 'name', 'ŠœŠµŠ¶Š¾Ń‚Ń€Š°ŃŠ»ŠµŠ²Š¾Š¹ Š½Š°ŃƒŃ‡Š½Š¾-технический комплекс Ā«ŠœŠøŠŗŃ€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ глаза»'),
(70450, 59066, 'no_lang_code', 'name', 'Starmon (Czechia)'),
(70451, 59067, 'no_lang_code', 'name', 'Instruments MƩdecine VƩtƩrinaire (France)'),
(70452, 59068, 'fr', 'name', 'SecrƩtariat GƩnƩral pour les Affaires RƩgionales'),
(70453, 59069, 'de', 'name', 'Paul Sacher Stiftung'),
(70454, 59070, 'cs', 'name', 'Očnƭ klinika Gemini'),
(70455, 59070, 'en', 'name', 'Gemini Eye Clinic'),
(70456, 59071, 'de', 'name', 'Fondation Suisse pour la Recherche en Microtechnique'),
(70457, 59071, 'en', 'name', 'Swiss Foundation for Research in Microtechnology'),
(70458, 59072, 'pt', 'name', 'Gabinete de Relações Internacionais da Ciência e do Ensino Superior'),
(70459, 59073, 'en', 'name', 'Institute of Geology of the Karelian Research Center'),
(70460, 59073, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии ŠšŠ°Ń€ŠŠ¦ Š ŠŠ'),
(70461, 59074, 'no_lang_code', 'name', 'Techmix (Czechia)'),
(70462, 59075, 'da', 'name', 'Eva og Henry FrƦnkels Mindefond'),
(70463, 59076, 'no_lang_code', 'name', 'Sonoco (United Kingdom)'),
(70464, 59077, 'no_lang_code', 'name', 'Czech Industry Group (Czechia)'),
(70465, 59078, 'de', 'name', 'Schweizerische Gesellschaft für Volkskunde'),
(70466, 59079, 'en', 'name', 'Kona Pacific Public Charter School'),
(70467, 59080, 'no_lang_code', 'name', 'Aveko Servomotory (Czechia)'),
(70468, 59081, 'cs', 'name', 'ACCENDO – Centrum pro vědu a výzkum'),
(70469, 59082, 'no_lang_code', 'name', 'Allibert Medical (France)'),
(70470, 59083, 'no_lang_code', 'name', 'Orange Controls (Czechia)'),
(70471, 59084, 'no_lang_code', 'name', 'Vanessa air (Czechia)'),
(70472, 59085, 'no_lang_code', 'name', 'U-24 (Czechia)'),
(70473, 59086, 'no_lang_code', 'name', 'Idea-Envi (Czechia)'),
(70474, 59087, 'en', 'name', 'Center for Vascular Biology Research'),
(70475, 59088, 'de', 'name', 'BG Klinik Tübingen'),
(70476, 59089, 'en', 'name', 'ITRI International'),
(70477, 59090, 'en', 'name', 'Ministry of Defense'),
(70478, 59090, 'he', 'name', '×žÖ“×©Ö°×‚×ØÖ·×“ ×”Ö·×‘Ö“Ö¼×˜ÖøÖ¼×—×•Ö¹×Ÿ'),
(70479, 59091, 'no_lang_code', 'name', 'MIA Studio (Czechia)'),
(70480, 59092, 'de', 'name', 'Karl Jaspers Stiftung'),
(70481, 59093, 'no_lang_code', 'name', 'Abbott (Belgium)'),
(70482, 59094, 'en', 'name', 'Raymond J. and Mary C. Reisert Foundation'),
(70483, 59095, 'de', 'name', 'Universitätsklinik für Diabetologie, Endokrinologie, Ernährungsmedizin & Metabolismus'),
(70484, 59096, 'no_lang_code', 'name', 'Lach-Ner (Czechia)'),
(70485, 59097, 'en', 'name', 'Raptor Research Foundation'),
(70486, 59098, 'no_lang_code', 'name', 'Chart Industries (United States)'),
(70487, 59099, 'no_lang_code', 'name', 'Čepro (Czechia)'),
(70488, 59100, 'no_lang_code', 'name', 'Scripps (United States)'),
(70489, 59101, 'en', 'name', 'Institute for Social and Environmental Research-Nepal'),
(70490, 59102, 'no_lang_code', 'name', 'Aquion (Czechia)'),
(70491, 59103, 'no_lang_code', 'name', 'MME Legal (Switzerland)'),
(70492, 59104, 'no_lang_code', 'name', 'Symatese (France)'),
(70493, 59105, 'no_lang_code', 'name', 'S.A.M. Metalizačnƭ společnost'),
(70494, 59106, 'no_lang_code', 'name', 'Laboratories Synth Innove (France)'),
(70495, 59107, 'no_lang_code', 'name', 'Ruml (Czechia)'),
(70496, 59108, 'en', 'name', 'Institute of Chemistry, Academia Sinica'),
(70497, 59109, 'no_lang_code', 'name', 'Skrivanek (Czechia)'),
(70498, 59110, 'en', 'name', 'Scientific Research Institute of Steel'),
(70499, 59110, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š”Š¢ŠŠ›Š˜'),
(70500, 59111, 'no_lang_code', 'name', 'Bioxis Pharmaceuticals (France)'),
(70501, 59112, 'no_lang_code', 'name', 'AgroKonzulta Žamberk (Czechia)'),
(70502, 59113, 'no_lang_code', 'name', 'Sotec MƩdical (France)'),
(70503, 59114, 'fr', 'name', 'Fondation Gustave & Simone PrƩvot'),
(70504, 59115, 'en', 'name', 'Lancaster Royal Grammar School'),
(70505, 59116, 'no_lang_code', 'name', 'Mavet (Czechia)'),
(70506, 59117, 'no_lang_code', 'name', 'Science et MƩdecine (France)'),
(70507, 59118, 'no_lang_code', 'name', 'Arthrocentrum'),
(70508, 59119, 'fr', 'name', 'Fondation Gandur pour l’Art'),
(70509, 59120, 'no_lang_code', 'name', 'Amer Sports (Austria)'),
(70510, 59121, 'en', 'name', 'Secure World Foundation'),
(70511, 59122, 'en', 'name', 'Association for Information Science and Technology'),
(70512, 59123, 'en', 'name', 'Susan Thompson Buffett Foundation'),
(70513, 59124, 'en', 'name', 'Sakhalin Botanical Garden'),
(70514, 59124, 'ru', 'name', 'Дахалинский филиал Ботанического саГа-ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° Š”Š’Šž Š ŠŠ'),
(70515, 59125, 'en', 'name', 'Institute of Hydrobiology'),
(70516, 59125, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ГіГробіології'),
(70517, 59126, 'en', 'name', 'Harvest Home Farmer’s Market'),
(70518, 59127, 'no_lang_code', 'name', 'SoftFil (France)'),
(70519, 59128, 'it', 'name', 'Ospedale San Raffaele Arcangelo'),
(70520, 59129, 'no_lang_code', 'name', 'Flaveko (Czechia)'),
(70521, 59130, 'no_lang_code', 'name', 'SG - Geoinenring (Czechia)'),
(70522, 59131, 'no_lang_code', 'name', 'NELAN (Czechia)'),
(70523, 59132, 'en', 'name', 'Blue Marble Space Institute of Science'),
(70524, 59133, 'de', 'name', 'Stiftung Landschaftsschutz Schweiz, Swiss Foundation for Landscape Conservation'),
(70525, 59134, 'cs', 'name', 'HospodÔřskĆ” komora ČeskĆ© republiky'),
(70526, 59134, 'en', 'name', 'Czech Chamber of Commerce'),
(70527, 59135, 'no_lang_code', 'name', 'MRB Sazovice (Czechia)'),
(70528, 59136, 'no_lang_code', 'name', 'S&T (Czechia)'),
(70529, 59137, 'en', 'name', 'German Studies Association'),
(70530, 59138, 'cs', 'name', 'ZĆ”padočeskĆ” Galerie v Plzni'),
(70531, 59139, 'en', 'name', 'JLK Sanfilippo Research Foundation'),
(70532, 59140, 'no_lang_code', 'name', 'RobotSystem (Czechia)'),
(70533, 59141, 'no_lang_code', 'name', 'Proficomms (Czechia)'),
(70534, 59142, 'no_lang_code', 'name', 'Urgo Laboratories (France)'),
(70535, 59143, 'no_lang_code', 'name', 'Johnson & Johnson (Canada)'),
(70536, 59144, 'no_lang_code', 'name', 'Paramo (Czechia)'),
(70537, 59145, 'de', 'name', 'Sonnenfeld Stiftung'),
(70538, 59145, 'en', 'name', 'Sonnenfeld Foundation'),
(70539, 59146, 'no_lang_code', 'name', 'EVPÚ Defence (Czechia)'),
(70540, 59147, 'no_lang_code', 'name', 'Interlacto (Czechia)'),
(70541, 59148, 'en', 'name', 'Clinica Luganese Moncucco'),
(70542, 59149, 'no_lang_code', 'name', 'Symbios OrthopƩdie (Switzerland)'),
(70543, 59150, 'no_lang_code', 'name', 'Integrated Concurrent Systems Associates (United States)'),
(70544, 59151, 'no_lang_code', 'name', 'Metso (Sweden)'),
(70545, 59152, 'fr', 'name', 'Laboratoire de Physique du Rayonnement et de la LumiĆØre'),
(70546, 59153, 'en', 'name', 'Sports Medicine Australia'),
(70547, 59154, 'cs', 'name', 'Muzeum uměnƭ'),
(70548, 59154, 'en', 'name', 'Olomouc Museum of Art'),
(70549, 59155, 'en', 'name', 'VA Sepulveda Ambulatory Care Center'),
(70550, 59156, 'en', 'name', 'All-Russian Scientific and Research Institute for Medical Engineering'),
(70551, 59156, 'ru', 'name', 'Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И Š˜Š”ŠŸŠ«Š¢ŠŠ¢Š•Š›Š¬ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠžŠ™ Š¢Š•Š„ŠŠ˜ŠšŠ˜'),
(70552, 59157, 'no_lang_code', 'name', 'Amphenol (France)'),
(70553, 59158, 'no_lang_code', 'name', 'Scaleo Medical (France)'),
(70554, 59159, 'no_lang_code', 'name', 'Mirtech (United States)'),
(70555, 59160, 'no_lang_code', 'name', 'Access Sensor Technologies (United States)'),
(70556, 59161, 'en', 'name', 'Wisconsin Public Service'),
(70557, 59162, 'no_lang_code', 'name', 'ZZN Pelhřimov (Czechia)'),
(70558, 59163, 'cs', 'name', 'Centrum InovacĆ­ a Rozvoje'),
(70559, 59163, 'en', 'name', 'Centre For Innovation And Development'),
(70560, 59164, 'en', 'name', 'Jinja Municipal Council'),
(70561, 59165, 'en', 'name', 'Society of Urologic Nurses and Associates'),
(70562, 59166, 'it', 'name', 'Augusta Raurica'),
(70563, 59167, 'en', 'name', 'Orthodontic World Institute'),
(70564, 59168, 'cs', 'name', 'PodjeÅ”tědskĆ© Museum'),
(70565, 59169, 'no_lang_code', 'name', 'FLSmidth (Czechia)'),
(70566, 59170, 'de', 'name', 'Sächsisches Institut für die Druckindustrie'),
(70567, 59171, 'no_lang_code', 'name', 'Roemmers Laboratories (Argentina)'),
(70568, 59172, 'en', 'name', 'Helsinki Deaconess Institute'),
(70569, 59172, 'fi', 'name', 'Helsingin Diakonissalaitos'),
(70570, 59173, 'en', 'name', 'Kansas Board of Regents'),
(70571, 59174, 'no_lang_code', 'name', 'Oekoscience (Switzerland)'),
(70572, 59175, 'en', 'name', 'Aleutian Pribilof Islands Association'),
(70573, 59176, 'no_lang_code', 'name', 'ModularTest (Czechia)'),
(70574, 59177, 'en', 'name', 'Westchester Institute for Human Development'),
(70575, 59178, 'en', 'name', 'Victorian Responsible Gambling Foundation'),
(70576, 59179, 'no_lang_code', 'name', 'Nexen (Canada)'),
(70577, 59180, 'no_lang_code', 'name', 'Burnside Autocyl (Ireland)'),
(70578, 59181, 'no_lang_code', 'name', 'Kunst (Czechia)'),
(70579, 59182, 'en', 'name', 'Central Tasar Research & Training Institute'),
(70580, 59183, 'en', 'name', 'Global Growers'),
(70581, 59184, 'ja', 'name', 'ę±ęµ·ę—…å®¢é‰„é“ę Ŗå¼ä¼šē¤¾'),
(70582, 59184, 'no_lang_code', 'name', 'Central Japan Railway (Japan)'),
(70583, 59185, 'no_lang_code', 'name', 'Varroc Lighting Systems (United States)'),
(70584, 59186, 'en', 'name', 'Duchenne Now'),
(70585, 59187, 'no_lang_code', 'name', 'GAF (United States)'),
(70586, 59188, 'no_lang_code', 'name', 'GNSS Centre of Excellence'),
(70587, 59189, 'no_lang_code', 'name', 'Büro für Altlasten, Boden und Umwelt (Switzerland)'),
(70588, 59190, 'no_lang_code', 'name', 'Via Alta (Czechia)'),
(70589, 59191, 'no_lang_code', 'name', 'Hydroma (Czechia)'),
(70590, 59192, 'en', 'name', 'GEP Clinic'),
(70591, 59193, 'no_lang_code', 'name', 'IKT Advanced Technologies (Czechia)'),
(70592, 59194, 'no_lang_code', 'name', 'Dynamic Digital Depth (Australia)'),
(70593, 59195, 'en', 'name', 'Regional Museum and Gallery Jicin'),
(70594, 59196, 'en', 'name', 'Telecommunication an Electronics Associaton'),
(70595, 59196, 'fi', 'name', 'Tietotekniikan ja Elektroniikan Seura'),
(70596, 59197, 'no_lang_code', 'name', 'TFA (Czechia)'),
(70597, 59198, 'en', 'name', 'Czech River Restoration Centre'),
(70598, 59199, 'no_lang_code', 'name', 'Medical Technology Transfer (Netherlands)'),
(70599, 59200, 'fr', 'name', 'Gymnase du Bugnon'),
(70600, 59201, 'en', 'name', 'Institute for Radiological Image Sciences'),
(70601, 59202, 'cs', 'name', 'Sokolov Muzeum'),
(70602, 59203, 'en', 'name', 'Experimental Scientific Research Institute of Forging and Press Engineering'),
(70603, 59203, 'ru', 'name', 'Š­ŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ·Š½ŠµŃ‡Š½Š¾-прессового Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(70604, 59204, 'en', 'name', 'Pencil Foundation'),
(70605, 59205, 'fr', 'name', 'Institution Nationale des Invalides'),
(70606, 59206, 'no_lang_code', 'name', 'OlChemIm (Czechia)'),
(70607, 59207, 'no_lang_code', 'name', 'Czech Machines (Czechia)'),
(70608, 59208, 'no_lang_code', 'name', 'HanĆ”ckĆ” ZemědělskĆ” Společnost Jevƭčko (Czechia)'),
(70609, 59209, 'en', 'name', 'Institute for Information Recording'),
(70610, 59209, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем реєстрації інформації ŠŠŠ України'),
(70611, 59210, 'de', 'name', 'Institut Kardiale Diagnostik und Therapie'),
(70612, 59211, 'no_lang_code', 'name', 'GZ Media (Czechia)'),
(70613, 59212, 'no_lang_code', 'name', 'Vuste - Apis (Czechia)'),
(70614, 59213, 'no_lang_code', 'name', 'CTS Corporation (Czechia)'),
(70615, 59214, 'no_lang_code', 'name', 'Gilead Sciences (Australia)'),
(70616, 59215, 'en', 'name', 'Bytown Cat Hospital'),
(70617, 59216, 'en', 'name', 'Environmental Research Instruments'),
(70618, 59217, 'cs', 'name', 'ČeskĆ” NĆ”rodopisnĆ” Společnost'),
(70619, 59218, 'no_lang_code', 'name', 'Chaps (Czechia)'),
(70620, 59219, 'no_lang_code', 'name', 'LGL Electronics (Italy)'),
(70621, 59220, 'no_lang_code', 'name', 'In''Tech Medical (France)'),
(70622, 59221, 'en', 'name', 'Swedish Kennel Club'),
(70623, 59221, 'sv', 'name', 'Svenska Kennelklubben'),
(70624, 59222, 'no_lang_code', 'name', 'Pharmaceutical Biotechnology (Czechia)'),
(70625, 59223, 'en', 'name', 'Commonwealth Scholarship Commission'),
(70626, 59224, 'no_lang_code', 'name', 'Biocodex (France)'),
(70627, 59225, 'no_lang_code', 'name', 'Aproks (Czechia)'),
(70628, 59226, 'de', 'name', 'Eidgenössisches Institut für Geistiges Eigentum'),
(70629, 59226, 'en', 'name', 'Swiss Federal Institute of Intellectual Property'),
(70630, 59226, 'fr', 'name', 'Institut FƩdƩral de la PropriƩtƩ Intellectuelle'),
(70631, 59226, 'it', 'name', 'Istituto Federale della ProprietĆ  Intellettuale'),
(70632, 59226, 'rm', 'name', 'Institut Federal da Proprietad Intellectuala'),
(70633, 59227, 'en', 'name', 'Oklahoma Center for Adult Stem Cell Research'),
(70634, 59228, 'no_lang_code', 'name', 'Ekoplant (Slovakia)'),
(70635, 59229, 'no_lang_code', 'name', 'Microsoft (France)'),
(70636, 59230, 'no_lang_code', 'name', 'Gas Komplet (Czechia)'),
(70637, 59231, 'cs', 'name', 'FyzikĆ”lně Technický ZkuÅ”ebnĆ­ Ústav'),
(70638, 59231, 'en', 'name', 'Physical Technical Testing Institute'),
(70639, 59232, 'en', 'name', 'William K Bowes Jr Foundation'),
(70640, 59233, 'no_lang_code', 'name', 'AirshipClub (Czechia)'),
(70641, 59234, 'en', 'name', 'VA Heart of Texas Health Care Network'),
(70642, 59235, 'no_lang_code', 'name', 'Medical Developments International (Australia)'),
(70643, 59236, 'en', 'name', 'United Mitochondrial Disease Foundation'),
(70644, 59237, 'en', 'name', 'Palo Alto Research Center'),
(70645, 59238, 'de', 'name', 'Stiftung Oskar Helene Heim'),
(70646, 59239, 'cs', 'name', 'SdruženĆ­ požÔrnĆ­ho a bezpečnostnĆ­ho inženýrstvĆ­'),
(70647, 59239, 'en', 'name', 'Association of Fire and Safety Engineering'),
(70648, 59240, 'en', 'name', 'Population Council'),
(70649, 59241, 'no_lang_code', 'name', 'EGÚ Brno (Czechia)'),
(70650, 59242, 'de', 'name', 'Zentrum für Gefässkrankheiten'),
(70651, 59243, 'en', 'name', 'Tenagra Observatories'),
(70652, 59244, 'it', 'name', 'Archivio di Stato del canton Ticino'),
(70653, 59245, 'en', 'name', 'Womens Fund of Hawaii'),
(70654, 59246, 'en', 'name', 'Right to Care'),
(70655, 59247, 'de', 'name', 'Kƶrber Stiftung'),
(70656, 59247, 'en', 'name', 'Kƶrber Foundation'),
(70657, 59248, 'en', 'name', 'Indian Plywood Industries Research and Training Institute'),
(70658, 59249, 'en', 'name', 'Whaleman Foundation'),
(70659, 59250, 'en', 'name', 'Theatre Library Association'),
(70660, 59251, 'no_lang_code', 'name', 'TCC (Czechia)'),
(70661, 59252, 'it', 'name', 'Fondazione Oronzio e Niccolò De Nora');
INSERT INTO `ror_settings` VALUES
(70662, 59253, 'no_lang_code', 'name', 'Heunisch Brno (Czechia)'),
(70663, 59254, 'en', 'name', 'Chattahoochee Valley Community College'),
(70664, 59255, 'en', 'name', 'Central Scientific Research Automobile and Engine Institute'),
(70665, 59255, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°ĢŠ»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒĢŃ‡Š½Š¾-ŠøŃŃŠ»ŠµĢŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøĢŠ»ŃŒŠ½Ń‹Š¹ Šø автомото́рный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒĢŃ‚'),
(70666, 59256, 'en', 'name', 'Mississippi Department of Human Services'),
(70667, 59257, 'de', 'name', 'Gymnasium am Münsterplatz'),
(70668, 59258, 'en', 'name', 'Ability Connection Colorado'),
(70669, 59259, 'no_lang_code', 'name', 'Riga (France)'),
(70670, 59260, 'de', 'name', 'Europäisches Institut für Rechtspsychologie'),
(70671, 59260, 'en', 'name', 'European Institute for Legal Psychology'),
(70672, 59261, 'no_lang_code', 'name', 'Beleco (Czechia)'),
(70673, 59262, 'no_lang_code', 'name', 'ZemědělskĆ” a DopravnĆ­ Technika (Czechia)'),
(70674, 59263, 'no_lang_code', 'name', 'Pro-Aqua (Czechia)'),
(70675, 59264, 'en', 'name', 'Mary Rose Trust'),
(70676, 59265, 'no_lang_code', 'name', 'NWB Sensors (United States)'),
(70677, 59266, 'no_lang_code', 'name', 'IRT Group (Australia)'),
(70678, 59267, 'en', 'name', 'Canadian Automotive Partnership Council'),
(70679, 59267, 'fr', 'name', 'Conseil du Partenariat du Secteur Canadien de l''Automobile'),
(70680, 59268, 'en', 'name', 'Willard L. Eccles Charitable Foundation'),
(70681, 59269, 'en', 'name', 'Technological Design Institute of Scientific Instrument Engineering'),
(70682, 59270, 'en', 'name', 'Institute for Conflict Transformation and Peacebuilding'),
(70683, 59271, 'en', 'name', 'Charlotte Metro Credit Union'),
(70684, 59272, 'no_lang_code', 'name', 'Sedium (Czechia)'),
(70685, 59273, 'no_lang_code', 'name', 'Centaurea (Czechia)'),
(70686, 59274, 'no_lang_code', 'name', 'Chevron (Netherlands)'),
(70687, 59275, 'it', 'name', 'Associazione Frantz Fanon'),
(70688, 59276, 'no_lang_code', 'name', 'Laboratoires Nogues (France)'),
(70689, 59277, 'cs', 'name', 'ČeskoslovenskÔ Obchodní Banka'),
(70690, 59278, 'no_lang_code', 'name', 'BrainScope (Czechia)'),
(70691, 59279, 'de', 'name', 'Stadtbibliothek Winterthur'),
(70692, 59280, 'cs', 'name', 'Nadace PartnerstvĆ­'),
(70693, 59280, 'en', 'name', 'Czech Environmental Partnership Foundation'),
(70694, 59281, 'de', 'name', 'Pestalozzianum'),
(70695, 59282, 'en', 'name', 'VA Portland Health Care System'),
(70696, 59283, 'en', 'name', 'Adriatic Research Institute'),
(70697, 59284, 'no_lang_code', 'name', 'Columna Centrum'),
(70698, 59285, 'nl', 'name', 'Stichting Euregio Maas-Rijn'),
(70699, 59286, 'no_lang_code', 'name', 'Vws Memsep (Czechia)'),
(70700, 59287, 'no_lang_code', 'name', 'Baxter (Australia)'),
(70701, 59288, 'no_lang_code', 'name', 'Hong Kong Standards and Testing Centre (China)'),
(70702, 59288, 'zh', 'name', 'é¦™ęøÆę ‡å‡†åŠę£€å®šäø­åæƒ'),
(70703, 59289, 'no_lang_code', 'name', 'Lutz Medical Engineering (Switzerland)'),
(70704, 59290, 'no_lang_code', 'name', 'Chemoprojekt (Czechia)'),
(70705, 59291, 'de', 'name', 'Belgische Nationalbank'),
(70706, 59291, 'en', 'name', 'National Bank of Belgium'),
(70707, 59291, 'fr', 'name', 'Banque nationale de Belgique'),
(70708, 59291, 'nl', 'name', 'Nationale Bank van Belgiƫ'),
(70709, 59292, 'no_lang_code', 'name', 'IQ Structures (Czechia)'),
(70710, 59293, 'en', 'name', 'Korean Society of Medical Ultrasound'),
(70711, 59294, 'en', 'name', 'Medical Biobank Swiss Institute'),
(70712, 59295, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Czechia)'),
(70713, 59296, 'no_lang_code', 'name', 'ARKO Consult (Czechia)'),
(70714, 59297, 'no_lang_code', 'name', 'Motor Jikov (Czechia)'),
(70715, 59298, 'no_lang_code', 'name', 'Teramed (Czechia)'),
(70716, 59299, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Czechia)'),
(70717, 59300, 'sv', 'name', 'Sven och Dagmar SalƩn Stiftelse'),
(70718, 59301, 'en', 'name', 'VA Mid-Atlantic Health Care Network'),
(70719, 59302, 'no_lang_code', 'name', 'TenzovƔhy (Czechia)'),
(70720, 59303, 'no_lang_code', 'name', 'CNH Industrial (United Kingdom)'),
(70721, 59304, 'no_lang_code', 'name', 'ISIS Medical (France)'),
(70722, 59305, 'no_lang_code', 'name', 'Sofigen (Czechia)'),
(70723, 59306, 'no_lang_code', 'name', 'Racom (Czechia)'),
(70724, 59307, 'no_lang_code', 'name', 'Značky Plzeň (Czechia)'),
(70725, 59308, 'de', 'name', 'Schweizerische Pastoralsoziologische Institut'),
(70726, 59309, 'no_lang_code', 'name', 'B. Braun (Switzerland)'),
(70727, 59310, 'en', 'name', 'Sylvia and Charles Viertel Charitable Foundation'),
(70728, 59311, 'no_lang_code', 'name', 'Catalina Sea Ranch (United States)'),
(70729, 59312, 'no_lang_code', 'name', 'Ego Zlin (Czechia)'),
(70730, 59313, 'no_lang_code', 'name', 'Medical Prognosis Institute (Denmark)'),
(70731, 59314, 'cs', 'name', 'MěstskĆ” Nemocnice Ostrava'),
(70732, 59315, 'no_lang_code', 'name', 'Ringier (Switzerland)'),
(70733, 59316, 'no_lang_code', 'name', 'Moria (France)'),
(70734, 59317, 'no_lang_code', 'name', 'MinMaxMedical (France)'),
(70735, 59318, 'no_lang_code', 'name', 'Skill (Czechia)'),
(70736, 59319, 'no_lang_code', 'name', 'Veeco (United States)'),
(70737, 59320, 'en', 'name', 'Tag Institute for Social Development'),
(70738, 59321, 'no_lang_code', 'name', 'Vuvl (Czechia)'),
(70739, 59322, 'fr', 'name', 'MusƩe Romain d''Avenches'),
(70740, 59323, 'de', 'name', 'Sozialwissenschaftliche Forschung und Beratung'),
(70741, 59324, 'cs', 'name', 'Oblastnƭ muzeum v Chomutově'),
(70742, 59325, 'de', 'name', 'Institut für Sozialwissenschaftliche Analysen und Beratung'),
(70743, 59326, 'no_lang_code', 'name', 'P and S (Czechia)'),
(70744, 59327, 'en', 'name', 'Cornell Cooperative Extension Association of Jefferson County'),
(70745, 59328, 'no_lang_code', 'name', 'Network Group (Czechia)'),
(70746, 59329, 'en', 'name', 'Mitchell School District'),
(70747, 59330, 'no_lang_code', 'name', 'E and H Services (Czechia)'),
(70748, 59331, 'en', 'name', 'Pikes Peak Community Foundation'),
(70749, 59332, 'no_lang_code', 'name', 'Teknia (Czechia)'),
(70750, 59333, 'cs', 'name', 'Linka bezpečƭ'),
(70751, 59333, 'en', 'name', 'Safety Line Helpline'),
(70752, 59334, 'no_lang_code', 'name', 'Moraprim (Czechia)'),
(70753, 59335, 'no_lang_code', 'name', 'Central European Biosystems (Czechia)'),
(70754, 59336, 'cs', 'name', 'Nemocnice Blansko'),
(70755, 59336, 'en', 'name', 'Blansko Hospital'),
(70756, 59337, 'no_lang_code', 'name', 'DivadelnĆ­ Noviny (Czechia)'),
(70757, 59338, 'sv', 'name', 'Jerringfonden'),
(70758, 59339, 'en', 'name', 'Stein Resort'),
(70759, 59340, 'no_lang_code', 'name', 'Swietelsky (Austria)'),
(70760, 59341, 'fr', 'name', 'Institut de Prise en Charge de l''ObƩsitƩ en Alsace'),
(70761, 59342, 'no_lang_code', 'name', 'Laboratory Imaging (Czechia)'),
(70762, 59343, 'en', 'name', 'Drug Enforcement Administration'),
(70763, 59344, 'fr', 'name', 'SociƩtƩ AcadƩmique Vaudoise'),
(70764, 59345, 'en', 'name', 'Society of Analytical Psychology'),
(70765, 59346, 'en', 'name', 'West Health'),
(70766, 59347, 'no_lang_code', 'name', 'GfK (Czechia)'),
(70767, 59348, 'en', 'name', 'Ministry of Commerce of the People''s Republic of China'),
(70768, 59348, 'zh', 'name', 'åÆ¹å¤–č“øę˜“ē»ęµŽåˆä½œéƒØ'),
(70769, 59349, 'en', 'name', 'Sons of Norway'),
(70770, 59350, 'cs', 'name', 'NÔrodní Ústav Lidové Kultury'),
(70771, 59351, 'en', 'name', 'Grain Inspection, Packers and Stockyards Administration'),
(70772, 59352, 'no_lang_code', 'name', 'SVS FEM (Czechia)'),
(70773, 59353, 'en', 'name', 'Advanced Life Science Institute'),
(70774, 59353, 'ja', 'name', 'å…ˆē«Æē”Ÿå‘½ē§‘å­¦ē ”ē©¶ę‰€'),
(70775, 59354, 'no_lang_code', 'name', 'Ageris (Czechia)'),
(70776, 59355, 'fr', 'name', 'Archives de l''ancien ƉvĆŖchĆ© de BĆ¢le'),
(70777, 59356, 'cs', 'name', 'ČeskÔ Agentura na Podporu Obchodu'),
(70778, 59356, 'en', 'name', 'CzechTrade'),
(70779, 59357, 'en', 'name', 'Canadian Chiropractic Association'),
(70780, 59357, 'fr', 'name', 'Association chiropratique canadienne'),
(70781, 59358, 'en', 'name', 'Finnish Medical Society Duodecim'),
(70782, 59358, 'fi', 'name', 'Suomalainen LƤƤkƤriseura Duodecim'),
(70783, 59359, 'cs', 'name', 'JazykovědnĆ© SdruženĆ­ ČeskĆ© Republiky'),
(70784, 59360, 'no_lang_code', 'name', 'Stapro (Czechia)'),
(70785, 59361, 'no_lang_code', 'name', 'Semtech (Canada)'),
(70786, 59362, 'no_lang_code', 'name', 'P-D Refractories (Germany)'),
(70787, 59363, 'de', 'name', 'Schweizerischen Neurologischen Gesellschaft'),
(70788, 59363, 'fr', 'name', 'SociƩtƩ Suisse de Neurologie'),
(70789, 59364, 'it', 'name', 'Fondazione Bolle di Magadino'),
(70790, 59365, 'en', 'name', 'Yrjƶ Jahnsson Foundation'),
(70791, 59365, 'fi', 'name', 'Yrjƶ Jahnssonin sƤƤtiƶ'),
(70792, 59366, 'no_lang_code', 'name', 'Fomex Team (Czechia)'),
(70793, 59367, 'en', 'name', 'Society of Systematic Biologists'),
(70794, 59368, 'no_lang_code', 'name', 'TeamScape (United States)'),
(70795, 59369, 'no_lang_code', 'name', 'NAUPO (Czechia)'),
(70796, 59370, 'no_lang_code', 'name', 'AkzoNobel (United States)'),
(70797, 59371, 'no_lang_code', 'name', 'Sutherland HDL (United States)'),
(70798, 59372, 'no_lang_code', 'name', 'Robert Bosch (Netherlands)'),
(70799, 59373, 'fr', 'name', 'Installations Magasins Gerard Rocquet'),
(70800, 59374, 'sv', 'name', 'Stiftelsen Erik and Lily Philipsons Minnesfond'),
(70801, 59375, 'en', 'name', 'Matthew 25'),
(70802, 59376, 'no_lang_code', 'name', 'Robert-Grandpierre et Rapp (Switzerland)'),
(70803, 59377, 'en', 'name', 'Institute of Cryobiology and Food Technology'),
(70804, 59378, 'no_lang_code', 'name', 'MEI Technologies (United States)'),
(70805, 59379, 'de', 'name', 'KantonsarchƤologie Aargau'),
(70806, 59380, 'no_lang_code', 'name', 'Pražské služby (Czechia)'),
(70807, 59381, 'en', 'name', 'European Platform of Women Scientists'),
(70808, 59382, 'en', 'name', 'Centre for Applied Studies in International Negotiations'),
(70809, 59383, 'no_lang_code', 'name', 'Agrospol VelkĆ” Bystřice (Czechia)'),
(70810, 59384, 'cs', 'name', 'CGB laboratoř'),
(70811, 59384, 'en', 'name', 'CGB Laboratory'),
(70812, 59385, 'no_lang_code', 'name', 'Prakab Prazska Kabelovna (Czechia)'),
(70813, 59386, 'no_lang_code', 'name', 'Madeta (Czechia)'),
(70814, 59387, 'no_lang_code', 'name', 'RybÔřstvĆ­ HlubokĆ” (Czechia)'),
(70815, 59388, 'en', 'name', 'Asbestos Institute'),
(70816, 59389, 'de', 'name', 'Staatsarchiv Nidwalden'),
(70817, 59390, 'en', 'name', 'Evelina London Children''s Healthcare'),
(70818, 59391, 'en', 'name', 'Tan Kah Kee Foundation'),
(70819, 59392, 'no_lang_code', 'name', 'Gallopro (Czechia)'),
(70820, 59393, 'es', 'name', 'Instituto de FĆ­sica del Litoral'),
(70821, 59394, 'en', 'name', 'CRC CARE'),
(70822, 59395, 'cs', 'name', 'DiecĆ©ze litoměřickĆ”'),
(70823, 59396, 'fr', 'name', 'Onco Lille'),
(70824, 59397, 'en', 'name', 'Ministry of Emergency Situations'),
(70825, 59397, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ по Гелам гражГанской обороны, чрезвычайным ŃŠøŃ‚ŃƒŠ°Ń†ŠøŃŠ¼ Šø ликвиГации послеГствий стихийных беГствий'),
(70826, 59398, 'en', 'name', 'Ludwig Cancer Research'),
(70827, 59399, 'cs', 'name', 'ČeskĆ” společnost pro mezinĆ”rodnĆ­ prĆ”vo'),
(70828, 59399, 'en', 'name', 'Czech Society Of International Law'),
(70829, 59400, 'no_lang_code', 'name', 'Quality Quantity Time (Czechia)'),
(70830, 59401, 'en', 'name', 'Finnish Medical Foundation'),
(70831, 59401, 'fi', 'name', 'Suomen LƤƤketieteen SƤƤtiƶ'),
(70832, 59402, 'en', 'name', 'Vegetables New Zealand'),
(70833, 59403, 'no_lang_code', 'name', 'SIS Medical (Switzerland)'),
(70834, 59404, 'no_lang_code', 'name', 'CryoLife (United Kingdom)'),
(70835, 59405, 'en', 'name', 'Institute for Economic Research and Policy Consulting'),
(70836, 59405, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ та політичних ŠŗŠ¾Š½ŃŃƒŠ»ŃŒŃ‚Š°Ń†Ń–Š¹'),
(70837, 59406, 'en', 'name', 'Public Life Foundation of Owensboro'),
(70838, 59407, 'en', 'name', 'Hastings Community Foundation'),
(70839, 59408, 'no_lang_code', 'name', 'ČD InformačnĆ­ SystĆ©my (Czechia)'),
(70840, 59409, 'de', 'name', 'Basler Afrika Bibliographien'),
(70841, 59410, 'no_lang_code', 'name', 'Issa Czech (Czechia)'),
(70842, 59411, 'no_lang_code', 'name', 'Knauf (Czechia)'),
(70843, 59412, 'en', 'name', 'Southern Taiwan Science Park'),
(70844, 59412, 'zh', 'name', 'å—éƒØē§‘å­øå·„ę„­åœ’å€'),
(70845, 59413, 'fr', 'name', 'SociĆ©tĆ© d’Installation TĆ©lĆ©phonique et Signalisation'),
(70846, 59414, 'en', 'name', 'Fok Ying Tung Foundation'),
(70847, 59415, 'no_lang_code', 'name', '3Bar Biologics (United States)'),
(70848, 59416, 'no_lang_code', 'name', 'Vums Legend (Czechia)'),
(70849, 59417, 'no_lang_code', 'name', 'HRA Pharma (France)'),
(70850, 59418, 'en', 'name', 'Institute for Biomedical Diagnostics and Research NALAZ'),
(70851, 59419, 'no_lang_code', 'name', 'LafargeHolcim (France)'),
(70852, 59420, 'en', 'name', 'Varkey Foundation'),
(70853, 59421, 'fr', 'name', 'HƓpital La Porte Verte'),
(70854, 59422, 'no_lang_code', 'name', 'Agrosoft TƔbor (Czechia)'),
(70855, 59423, 'no_lang_code', 'name', 'Novo Business Consultants (Switzerland)'),
(70856, 59424, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Ireland)'),
(70857, 59425, 'en', 'name', 'Sustainable Development Policy Institute'),
(70858, 59426, 'en', 'name', 'Village Veterinary Medical Center'),
(70859, 59427, 'no_lang_code', 'name', 'Medicalc Software (Czechia)'),
(70860, 59428, 'no_lang_code', 'name', 'GeodĆ©zie Ledeč nad SĆ”zavou (Czechia)'),
(70861, 59429, 'no_lang_code', 'name', 'Oliva (Switzerland)'),
(70862, 59430, 'en', 'name', 'Oil Industry Development Board'),
(70863, 59431, 'no_lang_code', 'name', 'DIZ Bohemia (Czechia)'),
(70864, 59432, 'no_lang_code', 'name', 'Prometheus (Czechia)'),
(70865, 59433, 'en', 'name', 'Institute of Agriculture and Tourism'),
(70866, 59433, 'hr', 'name', 'Institut za poljoprivredu i turizam Poreč'),
(70867, 59434, 'de', 'name', 'Landwirtschaftliches Zentrum Liebegg'),
(70868, 59435, 'no_lang_code', 'name', 'Pivo Praha (Czechia)'),
(70869, 59436, 'en', 'name', 'Institute for Legal Studies'),
(70870, 59436, 'hu', 'name', 'MTA TÔrsadalomtudomÔnyi Kutatóközpont JogtudomÔnyi Intézet'),
(70871, 59437, 'en', 'name', 'Regional Development Agency of South Bohemia'),
(70872, 59438, 'en', 'name', 'Ready Mixed Concrete Research and Education Foundation'),
(70873, 59439, 'no_lang_code', 'name', 'Sonberk (Czechia)'),
(70874, 59440, 'cs', 'name', 'ČeskĆ” Spořitelna'),
(70875, 59441, 'en', 'name', 'Foundation for Japanese Chemical Research'),
(70876, 59441, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åŒ–å­¦ē ”ē©¶ä¼š'),
(70877, 59442, 'no_lang_code', 'name', 'Polypress (Czechia)'),
(70878, 59443, 'en', 'name', 'Agrisus Foundation – Sustainable Agriculture'),
(70879, 59443, 'pt', 'name', 'Fundação Agrisus'),
(70880, 59444, 'de', 'name', 'Rietberg Museum'),
(70881, 59445, 'en', 'name', 'Purple Martin Conservation Association'),
(70882, 59446, 'no_lang_code', 'name', 'Kudelski (United States)'),
(70883, 59447, 'en', 'name', 'Siloam Eye Hospital'),
(70884, 59447, 'ko', 'name', 'ģ‹¤ė”œģ•”ģ•ˆź³¼ė³‘ģ›'),
(70885, 59448, 'no_lang_code', 'name', 'StrojĆ­rny Podzimek (Czechia)'),
(70886, 59449, 'en', 'name', 'University School'),
(70887, 59450, 'de', 'name', 'Stiftsbibliothek St. Gallen'),
(70888, 59450, 'en', 'name', 'Abbey library of Saint Gall'),
(70889, 59451, 'en', 'name', 'Clinica Valle Giulia'),
(70890, 59452, 'no_lang_code', 'name', 'HET (Czechia)'),
(70891, 59453, 'no_lang_code', 'name', 'Honeywell (Switzerland)'),
(70892, 59454, 'de', 'name', 'Museum im Lagerhaus'),
(70893, 59455, 'no_lang_code', 'name', 'MatƩriel MƩdical (France)'),
(70894, 59456, 'no_lang_code', 'name', 'Abzena (United States)'),
(70895, 59457, 'no_lang_code', 'name', 'MR&D (Italy)'),
(70896, 59458, 'en', 'name', 'Acquisition, Technology & Logistics Agency'),
(70897, 59458, 'ja', 'name', 'é˜²č”›č£…å‚™åŗ'),
(70898, 59459, 'no_lang_code', 'name', 'Inser (Switzerland)'),
(70899, 59460, 'cs', 'name', 'Sdružení Celiaků České Republiky'),
(70900, 59461, 'no_lang_code', 'name', 'Unex (Czechia)'),
(70901, 59462, 'no_lang_code', 'name', 'Reacont (Czechia)'),
(70902, 59463, 'en', 'name', 'Association of Clinical Scientists'),
(70903, 59464, 'cs', 'name', 'National Stud at Kladruby nad Labem, NĆ”rodnĆ­ hřebčƭn Kladruby nad Labem'),
(70904, 59465, 'es', 'name', 'Instituto de Investigaciones Biológicas Clemente Estable'),
(70905, 59466, 'no_lang_code', 'name', 'Km - KƔmen (Czechia)'),
(70906, 59467, 'en', 'name', 'Institute for Soil Science and Agricultural Chemistry'),
(70907, 59467, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠ¾Ń‡Š²Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Šø агрохимии Š”Šž Š ŠŠ'),
(70908, 59468, 'no_lang_code', 'name', 'ZUD (Czechia)'),
(70909, 59469, 'en', 'name', 'Franklinton Gardens'),
(70910, 59470, 'en', 'name', 'Sidgmore Family Foundation'),
(70911, 59471, 'no_lang_code', 'name', 'Bohemiaseed (Czechia)'),
(70912, 59472, 'cs', 'name', 'GymnƔzium Jana Palacha'),
(70913, 59472, 'en', 'name', 'Jan Palach Private High School'),
(70914, 59473, 'no_lang_code', 'name', 'PTV (Czechia)'),
(70915, 59474, 'en', 'name', 'American Oil Chemists Society'),
(70916, 59475, 'en', 'name', 'Stuart Foundation'),
(70917, 59476, 'de', 'name', 'Spital Lachen'),
(70918, 59477, 'no_lang_code', 'name', 'Vita Green Health Products (China)'),
(70919, 59477, 'zh', 'name', 'ē¶­ē‰¹å„éˆ'),
(70920, 59478, 'no_lang_code', 'name', 'Odysea (United States)'),
(70921, 59479, 'de', 'name', 'MSA Schweiz GmbH'),
(70922, 59479, 'no_lang_code', 'name', 'Mine Safety Appliances (Switzerland)'),
(70923, 59480, 'no_lang_code', 'name', 'Industrial Technology Systems (Czechia)'),
(70924, 59481, 'en', 'name', 'Board Institute'),
(70925, 59482, 'en', 'name', 'Sri Lanka Institute of Nanotechnology'),
(70926, 59483, 'cs', 'name', 'Nemocnice Třebƭč'),
(70927, 59484, 'en', 'name', 'Pottstown Area Health and Wellness Foundation'),
(70928, 59485, 'no_lang_code', 'name', 'Ekopanely Servis (Czechia)'),
(70929, 59486, 'en', 'name', 'Institute of Electronics and Computer Science'),
(70930, 59486, 'lv', 'name', 'Elektronikas un datorzinātņu institūts'),
(70931, 59487, 'cs', 'name', 'KrkonoŔskÔ Realitní'),
(70932, 59488, 'no_lang_code', 'name', 'BSS Architekten (Switzerland)'),
(70933, 59489, 'en', 'name', 'IBM Research - Africa'),
(70934, 59490, 'no_lang_code', 'name', 'Prous Institute for Biomedical Research (Spain)'),
(70935, 59491, 'no_lang_code', 'name', 'Applied Pharma Research (Switzerland)'),
(70936, 59492, 'no_lang_code', 'name', 'Glentor (Czechia)'),
(70937, 59493, 'no_lang_code', 'name', 'Sedlecký kaolin (Czechia)'),
(70938, 59494, 'no_lang_code', 'name', 'Vyome Biosciences (India)'),
(70939, 59495, 'de', 'name', 'Dialog Ethik'),
(70940, 59496, 'cs', 'name', 'OblastnĆ­ nemocnice KolĆ­n'),
(70941, 59497, 'de', 'name', 'TCM-Klinik Bad Kötzting, TCM-Klinik Bad Kötzting, Erste deutsche Klinik für Traditionelle Chinesische Medizin'),
(70942, 59498, 'no_lang_code', 'name', 'Konami (United States)'),
(70943, 59499, 'cs', 'name', 'Nemocnice Znojmo'),
(70944, 59500, 'no_lang_code', 'name', 'Designfoods (Czechia)'),
(70945, 59501, 'es', 'name', 'Gobierno de La Rioja'),
(70946, 59502, 'no_lang_code', 'name', 'FEM Consulting (Czechia)'),
(70947, 59503, 'no_lang_code', 'name', 'ZPT Vigantice (Czechia)'),
(70948, 59504, 'fr', 'name', 'MusƩe des beaux-arts de La Chaux-de-Fonds'),
(70949, 59505, 'no_lang_code', 'name', 'Maxi-Steam (Australia)'),
(70950, 59506, 'en', 'name', 'Egyptian Government'),
(70951, 59507, 'en', 'name', 'Pendleton and Elisabeth Carey Miller Charitable Foundation'),
(70952, 59508, 'en', 'name', 'Poultry Science Association'),
(70953, 59509, 'no_lang_code', 'name', 'Gesko (Czechia)'),
(70954, 59510, 'cs', 'name', 'Muzeum Jana Amose KomenskƩho'),
(70955, 59511, 'en', 'name', 'V.V. Lukianov Orel Law Institute of the Ministry of Internal Affairs'),
(70956, 59511, 'ru', 'name', 'ŠžŠ Š›ŠžŠ’Š”ŠšŠ˜Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(70957, 59512, 'en', 'name', 'Islamic Azad University, Dezful Branch'),
(70958, 59512, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŲŒ ŲÆŲ²ŁŁˆŁ„'),
(70959, 59513, 'fr', 'name', 'Institut SupƩrieur de Plasturgie d''AlenƧon'),
(70960, 59514, 'no_lang_code', 'name', 'SmartMotion (Czechia)'),
(70961, 59515, 'no_lang_code', 'name', 'Nafigate Corporation (Czechia)'),
(70962, 59516, 'en', 'name', 'Wellcome Trust Centre for the History of Medicine'),
(70963, 59517, 'no_lang_code', 'name', 'Bachem (Switzerland)'),
(70964, 59518, 'no_lang_code', 'name', 'Hanlun Information (China)'),
(70965, 59518, 'zh', 'name', 'å…“ä¼¦äæ”ęÆęœ‰é™å…¬åø'),
(70966, 59519, 'en', 'name', 'National Organization for the Professional Advancement of Black Chemists and Chemical Engineers'),
(70967, 59520, 'fr', 'name', 'HƓpital de l''enfance'),
(70968, 59521, 'de', 'name', 'ICM Chemnitz'),
(70969, 59522, 'no_lang_code', 'name', 'TovĆ”rna HasicĆ­ Techniky Polička (Czechia)'),
(70970, 59523, 'no_lang_code', 'name', 'O2 Czech Republic (Czechia)'),
(70971, 59524, 'en', 'name', 'DermSurgery Associates'),
(70972, 59525, 'en', 'name', 'Center of Southwest Culture'),
(70973, 59526, 'no_lang_code', 'name', 'ČKD Blansko (Czechia)'),
(70974, 59527, 'en', 'name', 'Association for Jewish Studies'),
(70975, 59528, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной физики ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(70976, 59528, 'en', 'name', 'Institute of Applied Physics'),
(70977, 59529, 'en', 'name', 'Behavior Genetics Association'),
(70978, 59530, 'en', 'name', 'Hartmann Müller Foundation'),
(70979, 59531, 'no_lang_code', 'name', 'Vale (United Kingdom)'),
(70980, 59532, 'no_lang_code', 'name', 'FilƔk (Czechia)'),
(70981, 59533, 'en', 'name', 'Veolia Environmental Trust'),
(70982, 59534, 'en', 'name', 'National Institute of Research and Development for Technical Physics'),
(70983, 59534, 'ro', 'name', 'Institutul Naţional de Cercetare-Dezvoltare pentru Fizică Tehnică'),
(70984, 59535, 'en', 'name', 'Stop Cancer'),
(70985, 59536, 'no_lang_code', 'name', 'Standard General (United States)'),
(70986, 59537, 'no_lang_code', 'name', 'Ekostavby Brno (Czechia)'),
(70987, 59538, 'no_lang_code', 'name', 'Deutsche Telekom (Czechia)'),
(70988, 59539, 'de', 'name', 'Stanley Thomas Johnson Stiftung'),
(70989, 59539, 'en', 'name', 'Stanley Thomas Johnson Foundation'),
(70990, 59540, 'en', 'name', 'Hmong American Farmers Association'),
(70991, 59541, 'no_lang_code', 'name', 'Pragolet (Czechia)'),
(70992, 59542, 'sv', 'name', 'Svenska Parkinsonstiftelsen'),
(70993, 59543, 'en', 'name', 'Vostochniy Research Institute for Mining Safety'),
(70994, 59543, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Š’Š¾ŃŃ‚ŠŠ˜Š˜ по безопасности работ в горной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(70995, 59544, 'no_lang_code', 'name', 'Sottas Formative Works (Switzerland)'),
(70996, 59545, 'no_lang_code', 'name', 'Flury and Giuliani (Switzerland)'),
(70997, 59546, 'no_lang_code', 'name', 'INFRAS (Switzerland)'),
(70998, 59547, 'en', 'name', 'State Titanium Research and Design Institute'),
(70999, 59547, 'ru', 'name', 'Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š˜Š¢ŠŠŠ'),
(71000, 59548, 'en', 'name', 'Whiteman Foundation'),
(71001, 59549, 'cs', 'name', 'Academia NakladatelstvĆ­'),
(71002, 59550, 'no_lang_code', 'name', 'Hytech (Czechia)'),
(71003, 59551, 'no_lang_code', 'name', 'Yarra Valley Water (Australia)'),
(71004, 59552, 'en', 'name', 'Pennsylvania Commission on Crime and Delinquency'),
(71005, 59553, 'cs', 'name', 'NÔrodní Rada Osob se Zdravotním Postižením'),
(71006, 59554, 'fr', 'name', 'Clinique Valmont'),
(71007, 59555, 'no_lang_code', 'name', 'Real Eco Technik (Czechia)'),
(71008, 59556, 'en', 'name', 'Hong Kong Council on Smoking and Health'),
(71009, 59556, 'zh', 'name', 'é¦™ęøÆåøē…™čˆ‡å„åŗ·å§”å“”ęœƒ'),
(71010, 59557, 'en', 'name', 'Pilot International'),
(71011, 59558, 'no_lang_code', 'name', 'BioVendor (Czechia)'),
(71012, 59559, 'no_lang_code', 'name', 'China Ningbo International Cooperation (China)'),
(71013, 59559, 'zh', 'name', 'äø­å›½å®ę³¢å›½é™…åˆä½œ'),
(71014, 59560, 'en', 'name', 'Southeast Island School District'),
(71015, 59561, 'no_lang_code', 'name', 'In-Eko Team (Czechia)'),
(71016, 59562, 'el', 'name', 'Ελληνική Πνευμονολογική Εταιρεία'),
(71017, 59562, 'en', 'name', 'Hellenic Thoracic Society'),
(71018, 59563, 'no_lang_code', 'name', 'Axone (Switzerland)'),
(71019, 59564, 'no_lang_code', 'name', 'Unica Technologies (Czechia)'),
(71020, 59565, 'no_lang_code', 'name', 'CBS Corporation (United States)'),
(71021, 59566, 'da', 'name', 'Nordisk Institut for Asien Studier'),
(71022, 59566, 'en', 'name', 'Nordic Institute of Asian Studies'),
(71023, 59567, 'cs', 'name', 'SjednocenÔ Organizace Nevidomých a Slabozrakých'),
(71024, 59568, 'cs', 'name', 'Sativa Keřkov'),
(71025, 59569, 'cs', 'name', 'Český nadačnĆ­ fond pro vydru'),
(71026, 59569, 'en', 'name', 'Czech Otter Foundation Fund'),
(71027, 59570, 'no_lang_code', 'name', 'Neurotrack Technologies (United States)'),
(71028, 59571, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠžŠ²Š¾Ń‰Š°Ń€ŃŃ‚во'),
(71029, 59571, 'en', 'name', 'Fruit Growing Institute'),
(71030, 59572, 'en', 'name', 'Proteus Fund'),
(71031, 59573, 'en', 'name', 'R and D Center for Valuable Recycling'),
(71032, 59574, 'no_lang_code', 'name', 'PPG Deco Czech (Czechia)'),
(71033, 59575, 'en', 'name', 'BresMed'),
(71034, 59576, 'no_lang_code', 'name', 'Gecko Biomedical (France)'),
(71035, 59577, 'en', 'name', 'Volga Region State Academy of Physical Culture, Sports and Tourism'),
(71036, 59577, 'ru', 'name', 'ŠŸŠ¾Š²Š¾Š»Š¶ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(71037, 59578, 'en', 'name', 'Comparative Aircraft Flight Efficiency Foundation'),
(71038, 59579, 'no_lang_code', 'name', 'Bańa (Czechia)'),
(71039, 59580, 'de', 'name', 'Psychiatriezentrum Münsingen'),
(71040, 59581, 'no_lang_code', 'name', 'Modeco (Czechia)'),
(71041, 59582, 'nl', 'name', 'Kennisnet'),
(71042, 59583, 'no_lang_code', 'name', 'SpeechTech (Czechia)'),
(71043, 59584, 'no_lang_code', 'name', 'Hobra Å kolnĆ­k (Czechia)'),
(71044, 59585, 'fr', 'name', 'LatƩnium'),
(71045, 59586, 'cs', 'name', 'G E M A, s.r.o. Automatizace Technologických Procesů'),
(71046, 59586, 'no_lang_code', 'name', 'General Engineering Measurement and Automation (Czechia)'),
(71047, 59587, 'no_lang_code', 'name', 'Destrux (Czechia)'),
(71048, 59588, 'en', 'name', 'Nutrition International'),
(71049, 59589, 'en', 'name', 'Juntendo University Nerima Hospital'),
(71050, 59589, 'ja', 'name', 'é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žē·“é¦¬ē—…é™¢'),
(71051, 59590, 'en', 'name', 'Shanxi Province Youth Development Foundation'),
(71052, 59590, 'zh', 'name', 'å±±č„æēœé’å°‘å¹“å‘å±•åŸŗé‡‘ä¼š'),
(71053, 59591, 'fr', 'name', 'Institut National de la Statistique'),
(71054, 59592, 'no_lang_code', 'name', 'BetaCat Pharmaceuticals (United States)'),
(71055, 59593, 'no_lang_code', 'name', 'Planergemeinschaft für Stadt und Raum'),
(71056, 59594, 'no_lang_code', 'name', 'IVEP (Czechia)'),
(71057, 59595, 'ar', 'name', 'Ų­ŁƒŁˆŁ…Ų© Ų§Ł‚Ł„ŁŠŁ… ŁƒŲ±ŲÆŲ³ŲŖŲ§Ł†ā€Žā€Ž'),
(71058, 59595, 'en', 'name', 'Kurdistan Regional Government'),
(71059, 59595, 'ku', 'name', 'Ų­Ś©ŁˆŁˆŁ…Ū•ŲŖŪŒ Ł‡Ū•Ų±ŪŽŁ…ŪŒ Ś©ŁˆŲ±ŲÆŲ³ŲŖŲ§Ł†'),
(71060, 59596, 'no_lang_code', 'name', 'Connecting Health Innovations (United States)'),
(71061, 59597, 'no_lang_code', 'name', 'Hottinger Baldwin Messtechnik (United States)'),
(71062, 59598, 'en', 'name', 'Wisconsin Institutes for Discovery'),
(71063, 59599, 'no_lang_code', 'name', 'Agroprojekce LitomyŔl (Czechia)'),
(71064, 59600, 'en', 'name', 'CPCL Polytechnic College'),
(71065, 59601, 'no_lang_code', 'name', 'Argomedical (Switzerland)'),
(71066, 59602, 'no_lang_code', 'name', 'Hydrosoft VeleslavĆ­n (Czechia)'),
(71067, 59603, 'no_lang_code', 'name', 'Sanofi (Czechia)'),
(71068, 59604, 'en', 'name', 'IBM Research - Austin'),
(71069, 59605, 'no_lang_code', 'name', 'Rawat Consulting (Czechia)'),
(71070, 59606, 'no_lang_code', 'name', 'Viditech (Czechia)'),
(71071, 59607, 'en', 'name', 'Carilene'),
(71072, 59608, 'no_lang_code', 'name', 'Rema SystƩm (Czechia)'),
(71073, 59609, 'no_lang_code', 'name', 'CSInstruments (France)'),
(71074, 59610, 'no_lang_code', 'name', 'KM Beta (Czechia)'),
(71075, 59611, 'en', 'name', 'Office of the Assistant Secretary for Planning and Evaluation'),
(71076, 59612, 'no_lang_code', 'name', 'MSA (Czechia)'),
(71077, 59613, 'en', 'name', 'Accredited Private Hospital Villa Regina'),
(71078, 59613, 'it', 'name', 'Ospedale Privato Accreditato Villa Regina'),
(71079, 59614, 'en', 'name', 'Royal Victoria Hospital'),
(71080, 59615, 'en', 'name', 'CittĆ  della Speranza Foundation'),
(71081, 59616, 'fr', 'name', 'Service de l''Enfance et de la Jeunesse'),
(71082, 59617, 'no_lang_code', 'name', 'NXP (Czechia)'),
(71083, 59618, 'no_lang_code', 'name', 'Rhopoint Instruments (United Kingdom)'),
(71084, 59619, 'cs', 'name', 'ObchodnĆ­ Akademie'),
(71085, 59620, 'no_lang_code', 'name', 'Solid (United States)'),
(71086, 59621, 'no_lang_code', 'name', 'Credit Suisse (Switzerland)'),
(71087, 59622, 'no_lang_code', 'name', 'Baker Hughes (United Kingdom)'),
(71088, 59623, 'en', 'name', 'Brown-Spath & Associates'),
(71089, 59624, 'cs', 'name', 'Svaz Chovatelů Českého Strakatého Skotu'),
(71090, 59625, 'es', 'name', 'Servicio Nacional de MeteorologĆ­a e HidrologĆ­a del PerĆŗ'),
(71091, 59626, 'en', 'name', 'Atapuerca Foundation'),
(71092, 59626, 'es', 'name', 'Fundación Atapuerca'),
(71093, 59627, 'en', 'name', 'Korea Institute of Atmospheric Prediction Systems'),
(71094, 59627, 'ko', 'name', 'ķ•œźµ­ ėŒ€źø° 예츔 ģ‹œģŠ¤ķ…œ ķ•™ķšŒ'),
(71095, 59628, 'no_lang_code', 'name', 'LogopedickĆ” společnost MiloÅ”e SovĆ”ka (Czechia)'),
(71096, 59629, 'en', 'name', 'Hunger Task Force'),
(71097, 59630, 'en', 'name', 'Czechoslovak Society of Arts and Sciences'),
(71098, 59631, 'no_lang_code', 'name', 'Bedag Informatik (Switzerland)'),
(71099, 59632, 'fr', 'name', 'Gymnase de la rue des Alpes'),
(71100, 59633, 'no_lang_code', 'name', 'Wessex Lifts (United Kingdom)'),
(71101, 59634, 'en', 'name', 'Foundation for Growth Science'),
(71102, 59634, 'ja', 'name', 'ęˆé•·ē§‘å­¦å”ä¼š'),
(71103, 59635, 'de', 'name', 'Departement für Erziehung und Kultur'),
(71104, 59636, 'en', 'name', 'Plumbing Heating Cooling Contractors National Association Educational Foundation'),
(71105, 59637, 'en', 'name', 'Imaging Center'),
(71106, 59638, 'da', 'name', 'Nordiske Samarbejde'),
(71107, 59638, 'en', 'name', 'Nordic Co-operation'),
(71108, 59639, 'no_lang_code', 'name', 'VRM Labs (United States)'),
(71109, 59640, 'no_lang_code', 'name', 'Lacrum VelkĆ© MeziÅ™Ć­ÄĆ­ (Czechia)'),
(71110, 59641, 'no_lang_code', 'name', 'Agra Group (Czechia)'),
(71111, 59642, 'no_lang_code', 'name', 'Bio Nutrition Health Products (United Kingdom)'),
(71112, 59643, 'cs', 'name', 'MěstskĆ© muzeum v ČelĆ”kovicĆ­ch'),
(71113, 59643, 'en', 'name', 'Municipal Museum in Celakovice'),
(71114, 59644, 'no_lang_code', 'name', 'Tatra (Czechia)'),
(71115, 59645, 'cs', 'name', 'Nemocnice Na PleŔi'),
(71116, 59646, 'no_lang_code', 'name', 'Sage Energo (Czechia)'),
(71117, 59647, 'de', 'name', 'Hochgebirgsklinik Davos'),
(71118, 59648, 'en', 'name', 'National Digital Research Centre'),
(71119, 59649, 'en', 'name', 'Center for Food Safety and Applied Nutrition'),
(71120, 59650, 'no_lang_code', 'name', 'Institute of Super Compression Technologies (Japan)'),
(71121, 59651, 'en', 'name', 'Shanghai Association for Science and Technology'),
(71122, 59652, 'nl', 'name', 'Prins Bernhard Cultuurfonds'),
(71123, 59653, 'no_lang_code', 'name', 'STÚ K (Czechia)'),
(71124, 59654, 'no_lang_code', 'name', 'KCI (United Kingdom)'),
(71125, 59655, 'en', 'name', 'Conference of Research Workers in Animal Diseases'),
(71126, 59656, 'fr', 'name', 'RƩseau de SantƩ VitalitƩ, VitalitƩ Health Network'),
(71127, 59657, 'pt', 'name', 'Institutos Lacte, Institutos Lactec'),
(71128, 59658, 'no_lang_code', 'name', 'RaŔelina (Czechia)'),
(71129, 59659, 'no_lang_code', 'name', 'Marel (United States)'),
(71130, 59660, 'no_lang_code', 'name', 'Koch Industries (France)'),
(71131, 59661, 'en', 'name', 'Shared Earth Foundation'),
(71132, 59662, 'no_lang_code', 'name', 'Compotech (Czechia)'),
(71133, 59663, 'en', 'name', 'Virginia Lakes and Watersheds Association'),
(71134, 59664, 'no_lang_code', 'name', 'ZAS Věž (Czechia)'),
(71135, 59665, 'no_lang_code', 'name', 'Foundation Instruments (United States)'),
(71136, 59666, 'fr', 'name', 'Police Cantonale de GenĆØve'),
(71137, 59667, 'en', 'name', 'Scientific Research Institute of the Cable Industry'),
(71138, 59667, 'ru', 'name', 'был созГан ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кабельной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(71139, 59668, 'no_lang_code', 'name', 'Cell Medica (Switzerland)'),
(71140, 59669, 'de', 'name', 'Beilstein-Institut, Beilstein-Institut zur Fƶrderung der Chemischen Wissenschaften'),
(71141, 59670, 'fi', 'name', 'Juho Vainion SƤƤtiƶ'),
(71142, 59670, 'no_lang_code', 'name', 'Juho Vainio Foundation'),
(71143, 59671, 'no_lang_code', 'name', 'Photronics (United States)'),
(71144, 59672, 'de', 'name', 'Holbein-Gymnasium Augsburg'),
(71145, 59673, 'en', 'name', 'High Pressure Gas Safety Institute of Japan'),
(71146, 59673, 'ja', 'name', 'é«˜åœ§åŠ›ć‚¬ć‚¹å®‰å…Øē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(71147, 59674, 'no_lang_code', 'name', 'Vibrom (Czechia)'),
(71148, 59675, 'en', 'name', 'National Center for Toxicological Research'),
(71149, 59676, 'no_lang_code', 'name', 'ZPA Smart Energy (Czechia)'),
(71150, 59677, 'no_lang_code', 'name', 'Rabbit (Czechia)'),
(71151, 59678, 'no_lang_code', 'name', 'Unicorn (Czechia)'),
(71152, 59679, 'de', 'name', 'Kliniken Valens'),
(71153, 59679, 'en', 'name', 'Valens Clinics'),
(71154, 59680, 'no_lang_code', 'name', 'Urbanismus Architektura Design Studio (Czechia)'),
(71155, 59681, 'en', 'name', 'Department of Early Education and Care'),
(71156, 59682, 'en', 'name', 'Kone Foundation'),
(71157, 59682, 'fi', 'name', 'Koneen SƤƤtiƶ'),
(71158, 59683, 'no_lang_code', 'name', 'Toseda (Czechia)'),
(71159, 59684, 'no_lang_code', 'name', 'Aries (Czechia)'),
(71160, 59685, 'no_lang_code', 'name', 'JES Tech (United States)'),
(71161, 59686, 'no_lang_code', 'name', 'Saudi Arabia Basic Industries (United States)'),
(71162, 59687, 'no_lang_code', 'name', 'Semma Therapeutics (United States)'),
(71163, 59688, 'no_lang_code', 'name', 'Taktici (Czechia)'),
(71164, 59689, 'no_lang_code', 'name', 'SportovnĆ­ Centrum Atlas (Czechia)'),
(71165, 59690, 'no_lang_code', 'name', 'Elcom (Czechia)'),
(71166, 59691, 'en', 'name', 'New Mexico Alliance of Health Councils'),
(71167, 59692, 'no_lang_code', 'name', 'Cidelec (France)'),
(71168, 59693, 'en', 'name', 'VA Heartland Network'),
(71169, 59694, 'no_lang_code', 'name', 'Belden (Germany)'),
(71170, 59695, 'en', 'name', 'Center Of Theological Inquiry'),
(71171, 59696, 'de', 'name', 'Gelenkzentrum Zürich'),
(71172, 59697, 'ja', 'name', 'ćƒ€ć‚¤ć‚­ćƒ³å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(71173, 59697, 'no_lang_code', 'name', 'Daikin (United States)'),
(71174, 59698, 'no_lang_code', 'name', 'Bayer (India)'),
(71175, 59699, 'en', 'name', 'Institute of Cytochemistry and Molecular Pharmacology'),
(71176, 59699, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цитохимии Šø Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ фармакологии'),
(71177, 59700, 'no_lang_code', 'name', 'Biocont Laboratory (Czechia)'),
(71178, 59701, 'en', 'name', 'Foundation for promoting Information and Communication Technology'),
(71179, 59701, 'ro', 'name', 'Fundaţia Pentru Promovarea Tehnologiei Informaţiei şi Comunicaţiei'),
(71180, 59702, 'no_lang_code', 'name', 'Amylon (Czechia)'),
(71181, 59703, 'fr', 'name', 'Clinique Romande de RƩadaptation'),
(71182, 59704, 'en', 'name', 'Changchun Bureau of Science and Technology'),
(71183, 59704, 'zh', 'name', 'é•æę˜„åø‚ē§‘ęŠ€å±€'),
(71184, 59705, 'en', 'name', 'Nano and Advanced Materials Institute'),
(71185, 59706, 'no_lang_code', 'name', 'Wekus (Czechia)'),
(71186, 59707, 'de', 'name', 'Von Behring-Rƶntgen-Stiftung'),
(71187, 59708, 'en', 'name', 'Professional Beef Services'),
(71188, 59709, 'no_lang_code', 'name', 'Trotti and Associates (United States)'),
(71189, 59710, 'cs', 'name', 'ČeskoslovenskĆ” PlavebnĆ­ AkciovĆ” Společnost LabskĆ”'),
(71190, 59710, 'no_lang_code', 'name', 'ČeskoslovenskÔ Plavba LabskÔ (Czechia)'),
(71191, 59711, 'da', 'name', 'Helsefonden'),
(71192, 59712, 'en', 'name', 'U.S. Embassy and Consulates in India'),
(71193, 59713, 'cs', 'name', 'MAS DolnĆ­ Morava'),
(71194, 59714, 'no_lang_code', 'name', 'Rosenthaler + Partner (Switzerland)'),
(71195, 59715, 'cs', 'name', 'SprƔva NƔrodnƭho Parku Podyjƭ'),
(71196, 59716, 'en', 'name', 'Whole Systems Foundation'),
(71197, 59717, 'no_lang_code', 'name', 'Spenco Medical (United Kingdom)'),
(71198, 59718, 'no_lang_code', 'name', 'Navertica (Czechia)'),
(71199, 59719, 'en', 'name', 'National Laboratory for High Performance Computing'),
(71200, 59720, 'no_lang_code', 'name', 'Metrostav (Czechia)'),
(71201, 59721, 'en', 'name', 'Institute of Botany'),
(71202, 59721, 'hy', 'name', 'ՀՀ Ō³Ō±Ō± Ō²ÕøÖ‚Õ½Õ”Õ¢Õ”Õ¶ÕøÖ‚Õ©ÕµÕ”Õ¶ Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(71203, 59722, 'no_lang_code', 'name', 'Simgeo (Czechia)'),
(71204, 59723, 'es', 'name', 'Nes Naturaleza'),
(71205, 59724, 'it', 'name', 'Fondazione Pellegrini Canevascini'),
(71206, 59725, 'no_lang_code', 'name', 'Isuzu Motors (United States)'),
(71207, 59726, 'no_lang_code', 'name', 'CleverTech (Czechia)'),
(71208, 59727, 'no_lang_code', 'name', 'Habena (Czechia)'),
(71209, 59728, 'en', 'name', 'Shikoku Research Institute'),
(71210, 59728, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å››å›½ē·åˆē ”ē©¶ę‰€'),
(71211, 59729, 'en', 'name', 'Russian State Archive of Scientific and Technical Documentation'),
(71212, 59729, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾Š³Š¾ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š¾Š±Š¾Ń€ŃƒŠ“Š¾Š²Š°Š½ŠøŃ Šø автоприборов'),
(71213, 59730, 'no_lang_code', 'name', 'RFspin (Czechia)'),
(71214, 59731, 'en', 'name', 'Weihai Science and Technology Bureau'),
(71215, 59731, 'zh', 'name', 'åØęµ·åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(71216, 59732, 'no_lang_code', 'name', 'Soft Targets Protection Institute (Czechia)'),
(71217, 59733, 'no_lang_code', 'name', 'Sportas (Czechia)'),
(71218, 59734, 'no_lang_code', 'name', 'Eurogas (Czechia)'),
(71219, 59735, 'de', 'name', 'Bildungsdirektion Volksschulamt'),
(71220, 59735, 'en', 'name', 'Office of Elementary Education'),
(71221, 59736, 'en', 'name', 'Geological Exploration Institute of Shandong Zhengyuan'),
(71222, 59736, 'zh', 'name', 'å±±äøœę­£å…ƒåœ°č“Øå‹˜ęŸ„é™¢'),
(71223, 59737, 'no_lang_code', 'name', 'Enterade (United States)'),
(71224, 59738, 'en', 'name', 'Volvo Research and Education Foundations'),
(71225, 59739, 'no_lang_code', 'name', 'Yves Rocher (France)'),
(71226, 59740, 'cs', 'name', 'ČeskĆ” společnost pro ochranu netopýrÅÆ'),
(71227, 59740, 'en', 'name', 'Czech Bat Conservation Society'),
(71228, 59741, 'cs', 'name', 'ČeskÔ nÔrodní banka'),
(71229, 59741, 'en', 'name', 'Czech National Bank'),
(71230, 59742, 'no_lang_code', 'name', 'Median (Czechia)'),
(71231, 59743, 'en', 'name', 'Sweden America Foundation'),
(71232, 59743, 'sv', 'name', 'Sverige Amerikastiftelsen'),
(71233, 59744, 'no_lang_code', 'name', 'Rütter Soceco (Switzerland)'),
(71234, 59745, 'no_lang_code', 'name', 'Burckhardt+Partner (Switzerland)'),
(71235, 59746, 'en', 'name', 'Western Region Agricultural Research Center'),
(71236, 59746, 'ja', 'name', 'č„æę—„ęœ¬č¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(71237, 59747, 'no_lang_code', 'name', 'L3 MƩdical (France)'),
(71238, 59748, 'cs', 'name', 'Muzeum Novojičƭnska'),
(71239, 59749, 'en', 'name', 'Avon Medical Centre'),
(71240, 59750, 'no_lang_code', 'name', 'Foerster (Germany)'),
(71241, 59751, 'no_lang_code', 'name', 'GSP (Czechia)'),
(71242, 59752, 'en', 'name', 'Nebraska Game and Parks Commission'),
(71243, 59753, 'en', 'name', 'Clifton T. Perkins Hospital Center'),
(71244, 59754, 'cs', 'name', 'SdruženĆ­ lesnĆ­ch Å”kolkařů'),
(71245, 59754, 'en', 'name', 'Forest Nursery Association'),
(71246, 59755, 'en', 'name', 'Umbricht Attorneys'),
(71247, 59756, 'no_lang_code', 'name', 'Alliance Instruments (France)'),
(71248, 59757, 'no_lang_code', 'name', 'Braas Monier (United Kingdom)'),
(71249, 59758, 'en', 'name', 'Vallee Foundation'),
(71250, 59759, 'no_lang_code', 'name', 'ACM Instruments (United Kingdom)'),
(71251, 59760, 'no_lang_code', 'name', 'Institute for Sustainable Process Technology'),
(71252, 59761, 'cs', 'name', 'ČeskĆ” SvÔřečskĆ” Společnost ANB'),
(71253, 59761, 'en', 'name', 'Czech Welding Society'),
(71254, 59762, 'no_lang_code', 'name', 'Eago Systems (Czechia)'),
(71255, 59763, 'no_lang_code', 'name', 'Ammann (Switzerland)'),
(71256, 59764, 'en', 'name', 'EUC Group'),
(71257, 59765, 'en', 'name', 'The Synergetic Innovation Center for Advanced Materials'),
(71258, 59765, 'zh', 'name', 'ę±Ÿč‹å…ˆčæ›ē”Ÿē‰©äøŽåŒ–å­¦åˆ¶é€ ååŒåˆ›ę–°äø­åæƒ'),
(71259, 59766, 'no_lang_code', 'name', 'Toyota Motor Corporation (Switzerland)'),
(71260, 59767, 'en', 'name', 'Cedar Grove Institute for Sustainable Communities'),
(71261, 59768, 'en', 'name', 'Centre for Advanced Study'),
(71262, 59769, 'en', 'name', 'Scoliosis Research Society'),
(71263, 59770, 'de', 'name', 'Staatskanzlei des Kantons Zürich'),
(71264, 59771, 'de', 'name', 'ch Stiftung für Eidgenössische Zusammenarbeit'),
(71265, 59772, 'en', 'name', 'Institute of Medical Polymers'),
(71266, 59773, 'no_lang_code', 'name', 'Sagittaria'),
(71267, 59774, 'en', 'name', 'Bonn-Cologne Graduate School of Physics and Astronomy'),
(71268, 59775, 'en', 'name', 'Institute of Chemistry of Silicates named after I.V. Grebenshchikov'),
(71269, 59775, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии силикатов имени И. Š’. Гребенщикова Š ŠŠ'),
(71270, 59776, 'en', 'name', 'Wisconsin Turfgrass Association'),
(71271, 59777, 'en', 'name', 'Shorai Foundation For Science And Technology'),
(71272, 59777, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę¾ē±Ÿē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(71273, 59778, 'sv', 'name', 'Stiftelsen Folke Bernadottes Minnesfond'),
(71274, 59779, 'no_lang_code', 'name', 'Fokus (Czechia)'),
(71275, 59780, 'cs', 'name', 'Poliklinika BudějovickĆ”'),
(71276, 59781, 'cs', 'name', 'Fond DalŔího VzdělĆ”vĆ”nĆ­'),
(71277, 59782, 'de', 'name', 'Oncosuisse'),
(71278, 59783, 'en', 'name', 'Open Source Drug Discovery'),
(71279, 59784, 'en', 'name', 'Somali Bantu Community Association of Maine'),
(71280, 59785, 'no_lang_code', 'name', 'Getinge (United States)'),
(71281, 59786, 'da', 'name', 'Ville Heises Legat'),
(71282, 59787, 'no_lang_code', 'name', 'Tenez (Czechia)'),
(71283, 59788, 'en', 'name', 'Tawani Foundation'),
(71284, 59789, 'no_lang_code', 'name', 'ZVU (Czechia)'),
(71285, 59790, 'en', 'name', 'International Society of Electrochemistry'),
(71286, 59791, 'no_lang_code', 'name', 'Vejce (Czechia)'),
(71287, 59792, 'en', 'name', 'Arc of Kentucky'),
(71288, 59793, 'en', 'name', 'Pinkerton Foundation'),
(71289, 59794, 'no_lang_code', 'name', 'Cidem Hranice (Czechia)'),
(71290, 59795, 'en', 'name', 'Institute for Minority Studies'),
(71291, 59795, 'hu', 'name', 'MTA TÔrsadalomtudomÔnyi Kutatóközpont Kisebbségkutató Intézet'),
(71292, 59796, 'no_lang_code', 'name', 'Mefi (Czechia)'),
(71293, 59797, 'fr', 'name', 'HƓpital intercantonal de la Broye'),
(71294, 59798, 'en', 'name', 'Shenzhen Institute for Drug Control'),
(71295, 59799, 'en', 'name', 'Society for Applied Microbiology'),
(71296, 59800, 'no_lang_code', 'name', 'Merrill (United States)'),
(71297, 59801, 'no_lang_code', 'name', 'Resim (Czechia)'),
(71298, 59802, 'en', 'name', 'Royal Canadian Military Institute'),
(71299, 59803, 'de', 'name', 'Archäologischen Dienst Graubünden'),
(71300, 59803, 'it', 'name', 'Servizio archeologico dei Grigioni'),
(71301, 59803, 'rm', 'name', 'servetsch archeologic dal Grischun'),
(71302, 59804, 'cs', 'name', 'Svaz ChovatelÅÆ Prasat v ČechĆ”ch a na Moravě'),
(71303, 59805, 'en', 'name', 'Beijing Dongfang Hongsheng New Energy Application Technology Research Institute'),
(71304, 59805, 'zh', 'name', 'åŒ—äŗ¬äøœę–¹ēŗ¢å‡ę–°čƒ½ęŗåŗ”ē”ØęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åøē®€ä»‹'),
(71305, 59806, 'no_lang_code', 'name', 'Lisi Automotive Form (Czechia)'),
(71306, 59807, 'en', 'name', 'National Farmers Organization'),
(71307, 59808, 'no_lang_code', 'name', 'Hier und Jetzt (Switzerland)'),
(71308, 59809, 'cs', 'name', 'RegionĆ”lnĆ­ muzeum v KolĆ­ně'),
(71309, 59810, 'fr', 'name', 'Archives de l''Ɖtat de NeuchĆ¢tel'),
(71310, 59811, 'en', 'name', 'Life Science Patents'),
(71311, 59812, 'en', 'name', 'Prague Security Studies Institute'),
(71312, 59813, 'no_lang_code', 'name', 'Planconsult (Switzerland)'),
(71313, 59814, 'no_lang_code', 'name', 'GME (Czechia)'),
(71314, 59815, 'no_lang_code', 'name', 'Magna Exteriors (Czechia)'),
(71315, 59816, 'en', 'name', 'Waksman Foundation for Microbiology'),
(71316, 59817, 'no_lang_code', 'name', 'Dadar Athornan Institute'),
(71317, 59818, 'no_lang_code', 'name', 'Lineq (Czechia)'),
(71318, 59819, 'en', 'name', 'Center for Systems Biology'),
(71319, 59820, 'no_lang_code', 'name', 'Ekogalva (Czechia)'),
(71320, 59821, 'no_lang_code', 'name', 'Kutch Mahila Vikas Sanghatan'),
(71321, 59822, 'en', 'name', 'United Way of Smith County'),
(71322, 59823, 'no_lang_code', 'name', 'Ekosystem (Czechia)'),
(71323, 59824, 'no_lang_code', 'name', 'Biofarm Dora (Czechia)'),
(71324, 59825, 'en', 'name', 'Robert Mapplethorpe Foundation'),
(71325, 59826, 'no_lang_code', 'name', 'TIRSO (Czechia)'),
(71326, 59827, 'en', 'name', 'Gulf South Research Corporation'),
(71327, 59828, 'no_lang_code', 'name', 'Valeo (Czechia)'),
(71328, 59829, 'no_lang_code', 'name', 'Froněk (Czechia)'),
(71329, 59830, 'en', 'name', 'Pittsburgh Emergency Medicine Foundation'),
(71330, 59831, 'en', 'name', 'Seamester'),
(71331, 59832, 'en', 'name', 'Ministry of Agriculture and Rural Development'),
(71332, 59832, 'pl', 'name', 'Ministerstwo Rolnictwa i Rozwoju Wsi'),
(71333, 59833, 'no_lang_code', 'name', 'Nauchno-issledovatelskiy Institut Tekhnologii Avtomobilnoy Promyshlennosti'),
(71334, 59833, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технологии Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(71335, 59834, 'no_lang_code', 'name', 'Van Lƶben Sels/RembeRock Foundation'),
(71336, 59835, 'no_lang_code', 'name', 'Vafo Praha (Czechia)'),
(71337, 59836, 'no_lang_code', 'name', 'Kappa-P (Czechia)'),
(71338, 59837, 'cs', 'name', 'Společnost Vědeckotechnických ParkÅÆ'),
(71339, 59837, 'en', 'name', 'Science and Technology Parks Association'),
(71340, 59838, 'no_lang_code', 'name', 'VodnĆ­ zdroje Chrudim (Czechia)'),
(71341, 59839, 'no_lang_code', 'name', 'Moravoseed (Czechia)'),
(71342, 59840, 'no_lang_code', 'name', 'Laboratoires Standa (France)'),
(71343, 59841, 'en', 'name', 'Sikh Foundation'),
(71344, 59842, 'en', 'name', 'Ear and Balance Institute'),
(71345, 59843, 'de', 'name', 'Institut für Prävention und Nachsorge'),
(71346, 59844, 'no_lang_code', 'name', 'Úsporné Bydlení (Czechia)'),
(71347, 59845, 'no_lang_code', 'name', 'BÔňské projekty Teplice'),
(71348, 59846, 'fr', 'name', 'Laboratoires Chemineau'),
(71349, 59846, 'no_lang_code', 'name', 'Chemineau Labs (France)'),
(71350, 59847, 'no_lang_code', 'name', 'Bastion (United Kingdom)'),
(71351, 59848, 'no_lang_code', 'name', 'Stryker (France)'),
(71352, 59849, 'sv', 'name', 'Stiftelsen Samariten'),
(71353, 59850, 'no_lang_code', 'name', 'Cellular Biomedicine Group (United States)'),
(71354, 59851, 'no_lang_code', 'name', 'Life Medical Control (France)'),
(71355, 59852, 'no_lang_code', 'name', 'Comptoir Pharmaceutique & MƩdical (France)'),
(71356, 59853, 'no_lang_code', 'name', 'BioChemInsights (United States)'),
(71357, 59854, 'no_lang_code', 'name', 'Parma Technik (Czechia)'),
(71358, 59855, 'no_lang_code', 'name', 'Chemopharma (Austria)'),
(71359, 59856, 'no_lang_code', 'name', 'Invelt Industry International (Czechia)'),
(71360, 59857, 'no_lang_code', 'name', 'Cicero (Czechia)'),
(71361, 59858, 'no_lang_code', 'name', 'Bioinstitut'),
(71362, 59859, 'de', 'name', 'Clinique Montbrillant'),
(71363, 59860, 'en', 'name', 'Institute for Problems of Cryobiology and Cryomedicine'),
(71364, 59860, 'ru', 'name', 'Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠ‘Š›Š•Šœ ŠšŠ Š†ŠžŠ‘Š†ŠžŠ›ŠžŠ“Š†Š‡ І ŠšŠ Š†ŠžŠœŠ•Š”Š˜Š¦Š˜ŠŠ˜ ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠžŠ‡ ŠŠšŠŠ”Š•ŠœŠ†Š‡ ŠŠŠ£Šš Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(71365, 59861, 'no_lang_code', 'name', 'Agrofarm (Czechia)'),
(71366, 59862, 'en', 'name', 'Armenian National Survey for Seismic Protection'),
(71367, 59863, 'de', 'name', 'Institut für Lacke und Farben'),
(71368, 59864, 'en', 'name', 'Finnish Society of Anaesthesiologists'),
(71369, 59864, 'fi', 'name', 'Suomen Anestesiologiyhdistys'),
(71370, 59865, 'no_lang_code', 'name', 'Code Creator (Czechia)'),
(71371, 59866, 'no_lang_code', 'name', 'Compact Bohemia (Czechia)'),
(71372, 59867, 'no_lang_code', 'name', 'Foerster (United States)'),
(71373, 59868, 'no_lang_code', 'name', 'LabMediaServis (Czechia)'),
(71374, 59869, 'no_lang_code', 'name', 'SurgiQual Institute (France)'),
(71375, 59870, 'en', 'name', 'Cornell Cooperative Extension Sullivan County'),
(71376, 59871, 'no_lang_code', 'name', 'Oclaro (United States)'),
(71377, 59872, 'no_lang_code', 'name', 'Check-Cap (Israel)'),
(71378, 59873, 'no_lang_code', 'name', 'KSK Precise Motion (Czechia)'),
(71379, 59874, 'en', 'name', 'State Scientific Production Association of Industrial Ecology'),
(71380, 59875, 'en', 'name', 'International Union of Materials Research Societies'),
(71381, 59876, 'no_lang_code', 'name', 'OneBreath (United States)'),
(71382, 59877, 'en', 'name', 'Regional Research Institute of Unani Medicine'),
(71383, 59878, 'no_lang_code', 'name', 'Scaled Biolabs (United States)'),
(71384, 59879, 'fr', 'name', 'SociĆ©tĆ© franƧaise d’instruments de chirurgie'),
(71385, 59879, 'no_lang_code', 'name', 'Sofic (France)'),
(71386, 59880, 'no_lang_code', 'name', 'CLAC (Switzerland)'),
(71387, 59881, 'en', 'name', 'Institute of Ethnology'),
(71388, 59881, 'hu', 'name', 'MTA BTK NƩprajztudomƔnyi IntƩzet'),
(71389, 59882, 'no_lang_code', 'name', 'G-Pharm (France)'),
(71390, 59883, 'no_lang_code', 'name', 'CĆ­gler Software (Czechia)'),
(71391, 59884, 'no_lang_code', 'name', 'Ybux (Czechia)'),
(71392, 59885, 'no_lang_code', 'name', 'Retex (Czechia)'),
(71393, 59886, 'de', 'name', 'Departement Bildung, Kultur und Sport'),
(71394, 59887, 'en', 'name', 'Shurl and Kay Curci Foundation'),
(71395, 59888, 'no_lang_code', 'name', 'MAP Systems (Czechia)'),
(71396, 59889, 'en', 'name', 'Richard M. Fairbanks Foundation'),
(71397, 59890, 'en', 'name', 'Florida State Collection of Arthropods'),
(71398, 59891, 'no_lang_code', 'name', 'Altana (Netherlands)');
INSERT INTO `ror_settings` VALUES
(71399, 59892, 'no_lang_code', 'name', 'Büro Vatter (Switzerland)'),
(71400, 59893, 'no_lang_code', 'name', 'Arcoplan (Switzerland)'),
(71401, 59894, 'no_lang_code', 'name', 'Madep (Switzerland)'),
(71402, 59895, 'no_lang_code', 'name', 'Reliant (Czechia)'),
(71403, 59896, 'en', 'name', 'National Captioning Institute'),
(71404, 59897, 'cs', 'name', 'PovodĆ­ Moravy'),
(71405, 59898, 'no_lang_code', 'name', 'Inpek (Czechia)'),
(71406, 59899, 'no_lang_code', 'name', 'Gennet'),
(71407, 59900, 'de', 'name', 'Baudirektion Kanton Zürich'),
(71408, 59901, 'en', 'name', 'Federal Government of Mexico'),
(71409, 59901, 'es', 'name', 'Gobierno de la RepĆŗblica'),
(71410, 59902, 'en', 'name', 'Stony Wold Herbert Fund'),
(71411, 59903, 'en', 'name', 'The Food Group'),
(71412, 59904, 'en', 'name', 'American Institute of Taxidermy'),
(71413, 59905, 'no_lang_code', 'name', 'Korund BenƔtky (Czechia)'),
(71414, 59906, 'no_lang_code', 'name', 'InterEco (Czechia)'),
(71415, 59907, 'no_lang_code', 'name', 'Gazprom (Russia)'),
(71416, 59907, 'ru', 'name', 'ŠŸŃƒŠ±Š»ŠøŃ‡Š½Š¾Šµ Акционерное ŠžŠ±Ń‰ŠµŃŃ‚во Газпром'),
(71417, 59908, 'cs', 'name', 'Autoklub České Republiky'),
(71418, 59909, 'de', 'name', 'Institut für Korrosionsschutz Dresden'),
(71419, 59910, 'en', 'name', 'Volvo Environment Prize'),
(71420, 59911, 'en', 'name', 'Hebron Theological College'),
(71421, 59912, 'no_lang_code', 'name', 'Argo-Hytos (Czechia)'),
(71422, 59913, 'fr', 'name', 'Nextep'),
(71423, 59914, 'no_lang_code', 'name', 'JizerskƩ PekƔrny (Czechia)'),
(71424, 59915, 'no_lang_code', 'name', 'ITAB'),
(71425, 59916, 'no_lang_code', 'name', 'Sevaron (Czechia)'),
(71426, 59917, 'no_lang_code', 'name', 'EDAP TMS (France)'),
(71427, 59918, 'en', 'name', 'William P. Wharton Trust'),
(71428, 59919, 'ja', 'name', 'ę—„ęœ¬å®‡å®™ćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(71429, 59919, 'no_lang_code', 'name', 'Japan Space Forum'),
(71430, 59920, 'de', 'name', 'Kollegium für Hausarztmedizin'),
(71431, 59921, 'no_lang_code', 'name', 'Trask Solutions (Czechia)'),
(71432, 59922, 'no_lang_code', 'name', 'Klinger (United Kingdom)'),
(71433, 59923, 'no_lang_code', 'name', 'KB - Blok (Czechia)'),
(71434, 59924, 'no_lang_code', 'name', 'BCS Engineering (Czechia)'),
(71435, 59925, 'no_lang_code', 'name', 'Entracon (Czechia)'),
(71436, 59926, 'cs', 'name', 'Galerie Modernƭho Uměnƭ v Roudnici nad Labem'),
(71437, 59926, 'en', 'name', 'Gallery of Modern Art Roudnice nad Labem'),
(71438, 59927, 'cs', 'name', 'StÔtní zkuŔebna strojů'),
(71439, 59927, 'no_lang_code', 'name', 'Government Testing Laboratory of Machines (Czechia)'),
(71440, 59928, 'no_lang_code', 'name', 'Instant Access Technologies (United Kingdom)'),
(71441, 59929, 'no_lang_code', 'name', 'AGCO (Germany)'),
(71442, 59930, 'en', 'name', 'California Dried Plum Board'),
(71443, 59931, 'no_lang_code', 'name', 'Med Discovery (Switzerland)'),
(71444, 59932, 'en', 'name', 'Womens Foundation of Southern Arizona'),
(71445, 59933, 'no_lang_code', 'name', 'Sellier & Bellot (Czechia)'),
(71446, 59934, 'no_lang_code', 'name', 'Hansen Electric (Czechia)'),
(71447, 59935, 'no_lang_code', 'name', 'Advanced Engineering (Czechia)'),
(71448, 59936, 'en', 'name', 'Pet Care Trust'),
(71449, 59937, 'en', 'name', 'Japan Arteriosclerosis Prevention Fund'),
(71450, 59937, 'ja', 'name', 'ę—„ęœ¬å‹•č„ˆē”¬åŒ–äŗˆé˜²ē ”ē©¶åŸŗé‡‘'),
(71451, 59938, 'no_lang_code', 'name', 'Vestado (Czechia)'),
(71452, 59939, 'cs', 'name', 'ČeskÔ RozvojovÔ Agentura'),
(71453, 59940, 'cs', 'name', 'Asociace Pedagogů ZÔkladního Školství České Republiky'),
(71454, 59941, 'en', 'name', 'Pediatric Infectious Diseases Society'),
(71455, 59942, 'no_lang_code', 'name', 'SlezskĆ” Dubina (Czechia)'),
(71456, 59943, 'en', 'name', 'Greening of Detroit'),
(71457, 59944, 'no_lang_code', 'name', 'Gross Wen Technologies (United States)'),
(71458, 59945, 'no_lang_code', 'name', 'Dako Brno (Czechia)'),
(71459, 59946, 'no_lang_code', 'name', 'Firel (Czechia)'),
(71460, 59947, 'en', 'name', 'Sidney R Baer Jr Foundation'),
(71461, 59948, 'no_lang_code', 'name', 'Trimarca (Switzerland)'),
(71462, 59949, 'fr', 'name', 'Association pour l''Assistance Ć  Domicile aux Insuffisants Respiratoire Chroniques'),
(71463, 59950, 'de', 'name', 'Arud'),
(71464, 59951, 'no_lang_code', 'name', 'Abbott (France)'),
(71465, 59952, 'en', 'name', 'Heilongjiang Institute of Technology'),
(71466, 59953, 'fr', 'name', 'France Chirurgie Instrumentation'),
(71467, 59954, 'no_lang_code', 'name', 'Workswell (Czechia)'),
(71468, 59955, 'no_lang_code', 'name', 'Consygen CZ (Czechia)'),
(71469, 59956, 'de', 'name', 'Steirische Wirtschaftsfƶrderung'),
(71470, 59957, 'en', 'name', 'South Dakota Community Foundation'),
(71471, 59958, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (United States)'),
(71472, 59959, 'fr', 'name', 'SociƩtƩ d''Etudes TƶpffƩriennes'),
(71473, 59960, 'cs', 'name', 'ČeskĆ” Společnost pro Jakost'),
(71474, 59960, 'en', 'name', 'Czech Society for Quality'),
(71475, 59961, 'no_lang_code', 'name', 'Farmak Moravia (Czechia)'),
(71476, 59962, 'no_lang_code', 'name', 'Bodycote (Czechia)'),
(71477, 59963, 'no_lang_code', 'name', 'Hestia (Czechia)'),
(71478, 59964, 'de', 'name', 'Amt für Gemeinden und Raumordnung'),
(71479, 59965, 'cs', 'name', 'EnergetickĆ© Třebƭčsko'),
(71480, 59966, 'en', 'name', 'Society for Industrial and Organizational Psychology'),
(71481, 59967, 'no_lang_code', 'name', 'M Silnice (Czechia)'),
(71482, 59968, 'no_lang_code', 'name', 'Iguassu Software Systems (Czechia)'),
(71483, 59969, 'de', 'name', 'Kurt-Schwabe-Institut für Mess- und Sensortechnik Meinsberg'),
(71484, 59970, 'no_lang_code', 'name', 'Ecofer (Czechia)'),
(71485, 59971, 'en', 'name', 'National Young Farmers Coalition'),
(71486, 59972, 'fr', 'name', 'Evaux Laboratoires'),
(71487, 59973, 'en', 'name', 'Maud Kuistila Memorial Foundation'),
(71488, 59973, 'fi', 'name', 'Maud Kuistilan MuistosƤƤtiƶ'),
(71489, 59974, 'no_lang_code', 'name', 'MediaTek (China)'),
(71490, 59974, 'zh', 'name', 'čÆē™¼ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(71491, 59975, 'no_lang_code', 'name', 'Agrointeg (Czechia)'),
(71492, 59976, 'no_lang_code', 'name', 'Creative Connections (Czechia)'),
(71493, 59977, 'en', 'name', 'Taiho Kogyo Tribology Research Foundation'),
(71494, 59978, 'no_lang_code', 'name', 'Guagliardi Ruoss (Switzerland)'),
(71495, 59979, 'no_lang_code', 'name', 'GHH-Bonatrans (Czechia)'),
(71496, 59980, 'no_lang_code', 'name', 'FCC (Czechia)'),
(71497, 59981, 'no_lang_code', 'name', 'B. Braun (France)'),
(71498, 59982, 'nl', 'name', 'Nederlands Oogheelkundig Onderzoek'),
(71499, 59983, 'no_lang_code', 'name', 'ACRE (Czechia)'),
(71500, 59984, 'de', 'name', 'Association Internationale de la SƩcuritƩ Sociale'),
(71501, 59984, 'en', 'name', 'International Social Security Association'),
(71502, 59985, 'no_lang_code', 'name', 'SeveromoravskƩ Vodovody a Kanalizace Ostrava (Czechia)'),
(71503, 59986, 'en', 'name', 'Womens Foundation'),
(71504, 59986, 'zh', 'name', 'å©¦å„³åŸŗé‡‘ęœƒęœ‰é™å…¬åø'),
(71505, 59987, 'no_lang_code', 'name', 'Dartfish (Switzerland)'),
(71506, 59988, 'cs', 'name', 'Společnost pro Technologie Ochrany PamĆ”tek'),
(71507, 59989, 'nl', 'name', 'Stichting tot Steun VCVGZ'),
(71508, 59990, 'en', 'name', 'Walton Family Foundation'),
(71509, 59991, 'de', 'name', 'RƤtisches Museum'),
(71510, 59991, 'it', 'name', 'Museo retico'),
(71511, 59991, 'rm', 'name', 'Museum retic'),
(71512, 59992, 'no_lang_code', 'name', 'One Resonance Sensors (United States)'),
(71513, 59993, 'fr', 'name', 'BibliothĆØque Cantonale Jurassienne'),
(71514, 59994, 'no_lang_code', 'name', 'Podravka (Czechia)'),
(71515, 59995, 'en', 'name', 'Coir Board of India'),
(71516, 59996, 'no_lang_code', 'name', 'GumĆ”rny Zubří (Czechia)'),
(71517, 59997, 'es', 'name', 'Servicio Nacional de HidrologĆ­a y MeteorologĆ­a'),
(71518, 59998, 'de', 'name', 'Zentrum für Labormedizin'),
(71519, 59999, 'no_lang_code', 'name', 'Cortis Consulting'),
(71520, 60000, 'cs', 'name', 'ZdravotnickĆ” ZĆ”chrannĆ” Služba HlavnĆ­ho Města Prahy'),
(71521, 60001, 'de', 'name', 'Hamburgische Investitions- und Fƶrderbank'),
(71522, 60002, 'en', 'name', 'Vascular Institute of Virginia'),
(71523, 60003, 'en', 'name', 'International Adsorption Society'),
(71524, 60004, 'no_lang_code', 'name', 'Techniker Krankenkasse (Germany)'),
(71525, 60005, 'en', 'name', 'Stavanger Acute Medicine Foundation for Education and Research'),
(71526, 60005, 'no', 'name', 'Stavanger Akuttmedisinfond for utdanning og forskning'),
(71527, 60006, 'no_lang_code', 'name', 'MicroPort Orthopedics (Netherlands)'),
(71528, 60007, 'no_lang_code', 'name', 'Mezo Research (Australia)'),
(71529, 60008, 'de', 'name', 'BrustGesundheitZentrum Tirol'),
(71530, 60009, 'no_lang_code', 'name', 'Oystershell (Belgium)'),
(71531, 60010, 'no_lang_code', 'name', 'Revolution Research'),
(71532, 60011, 'en', 'name', 'St. Vincent''s Birmingham'),
(71533, 60012, 'en', 'name', 'Community Eye Care Foundation'),
(71534, 60013, 'en', 'name', 'McNeel Eye Center'),
(71535, 60014, 'en', 'name', 'Midwest Aortic & Vascular Institute'),
(71536, 60015, 'en', 'name', 'Perm Regional Oncology Center'),
(71537, 60015, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(71538, 60016, 'no_lang_code', 'name', 'Sinopia Biosciences (United States)'),
(71539, 60017, 'es', 'name', 'Instituto de OncologĆ­a y RadiobiologĆ­a'),
(71540, 60018, 'es', 'name', 'Hospital San Juan de la Cruz'),
(71541, 60019, 'de', 'name', 'Ministerium für Soziales, Arbeit, Gesundheit und Demografie'),
(71542, 60020, 'es', 'name', 'Maternal Perinatal Hospital Mónica Pretelini'),
(71543, 60021, 'no_lang_code', 'name', 'CHO America (Canada)'),
(71544, 60022, 'en', 'name', 'Rainbow Research'),
(71545, 60023, 'en', 'name', 'Clinical Institute of Brain'),
(71546, 60024, 'en', 'name', 'Arthritis Associates of Southern California'),
(71547, 60025, 'en', 'name', 'Vermont Natural Resources Council'),
(71548, 60026, 'en', 'name', 'VA National Center of Oncology after Fanarjyan'),
(71549, 60026, 'hy', 'name', 'Վ.Ō±. Õ–Õ”Õ¶Õ”Ö€Õ»ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ուռուցքՔբՔնությՔն Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(71550, 60027, 'en', 'name', 'Medical Center of South Arkansas'),
(71551, 60028, 'en', 'name', 'Midwest Institute for Minimally Invasive Therapies'),
(71552, 60029, 'en', 'name', 'United Medical Research Institute'),
(71553, 60030, 'en', 'name', 'International Spine and Pain Institute'),
(71554, 60031, 'fr', 'name', 'HƓpital d''Instruction des ArmƩes Clermont-Tonnerre'),
(71555, 60032, 'fr', 'name', 'Clinique Neuro-Outaouais'),
(71556, 60033, 'en', 'name', 'Apri Health'),
(71557, 60034, 'en', 'name', 'Maharaj Institute of Immune Regenerative Medicine'),
(71558, 60035, 'en', 'name', 'Mack Eye Center'),
(71559, 60036, 'no_lang_code', 'name', 'Umenz (Netherlands)'),
(71560, 60037, 'en', 'name', 'International Maitland Teacher Association'),
(71561, 60038, 'nl', 'name', 'OHRA, Onderlinge ziektekostenverzekeringsfonds van Hoogere RijksAmbtenaren'),
(71562, 60039, 'en', 'name', 'Planning and Conservation League'),
(71563, 60040, 'de', 'name', 'Dr. h.c. Robert Mathys Stiftung für Forschung'),
(71564, 60040, 'en', 'name', 'RMS Foundation'),
(71565, 60041, 'de', 'name', 'EuropƤischer Rat'),
(71566, 60041, 'en', 'name', 'European Council'),
(71567, 60041, 'fr', 'name', 'Conseil EuropƩen'),
(71568, 60042, 'en', 'name', 'The Irvine Institute of Medicine & Cosmetic Surgery'),
(71569, 60043, 'no_lang_code', 'name', 'DDC-I (United States)'),
(71570, 60044, 'nl', 'name', 'Vereniging Nederland-Davos'),
(71571, 60045, 'en', 'name', 'Global Environment and Technology Foundation'),
(71572, 60046, 'nl', 'name', 'Het Nieuwe Instituut'),
(71573, 60047, 'en', 'name', 'Phelps County Regional Medical Center'),
(71574, 60048, 'de', 'name', 'Edel + weiss ZahnƤrzte'),
(71575, 60049, 'no_lang_code', 'name', 'ResMed (Netherlands)'),
(71576, 60050, 'en', 'name', 'German Doctors'),
(71577, 60051, 'bg', 'name', 'Š‘ŠŖŠ›Š“ŠŠ Š”ŠšŠ˜ ŠŠŠ¢ŠŠ ŠšŠ¢Š˜Š§Š•Š”ŠšŠ˜ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(71578, 60051, 'en', 'name', 'Bulgarian Antarctic Institute'),
(71579, 60052, 'no_lang_code', 'name', 'CA DIGITAL (Germany)'),
(71580, 60053, 'no_lang_code', 'name', 'Safecor (United States)'),
(71581, 60054, 'en', 'name', 'Norwegian Pharmacy Association'),
(71582, 60054, 'no', 'name', 'Apotekforeningen'),
(71583, 60055, 'en', 'name', 'European Neuroendocrine Tumor Society'),
(71584, 60056, 'no_lang_code', 'name', 'ZSX Medical (United States)'),
(71585, 60057, 'en', 'name', 'Association of Specialty Physicians'),
(71586, 60058, 'en', 'name', 'Institute for Educational Inquiry'),
(71587, 60059, 'de', 'name', 'Therapiezentrum Harburg'),
(71588, 60060, 'de', 'name', 'Ƅrztliche Akademie für Psychotherapie von Kindern und Jugendlichen'),
(71589, 60061, 'it', 'name', 'Fondazione ISAL'),
(71590, 60062, 'en', 'name', 'California Life Sciences Association'),
(71591, 60063, 'no_lang_code', 'name', 'Schaper & Brümmer (Germany)'),
(71592, 60064, 'pt', 'name', 'Centro Hospitalar Tondela-Viseu'),
(71593, 60065, 'en', 'name', 'McFarland Clinic - Fort Dodge'),
(71594, 60066, 'en', 'name', 'University Reproductive Associates'),
(71595, 60067, 'nl', 'name', 'Stichting Vrienden van het Hart'),
(71596, 60068, 'no_lang_code', 'name', 'Accurate Clinical Research (United States)'),
(71597, 60069, 'en', 'name', 'St. Joseph Hospital'),
(71598, 60070, 'de', 'name', 'Klinik und Poliklinik für Mund-, Kiefer- und Plastische Gesichtschirurgie'),
(71599, 60071, 'nl', 'name', 'Continentie Stichting Nederland'),
(71600, 60072, 'en', 'name', 'Sceptor Pain Foundation'),
(71601, 60073, 'fr', 'name', 'Centre Hospitalier de Douai'),
(71602, 60074, 'no_lang_code', 'name', 'Ypsomed (Switzerland)'),
(71603, 60075, 'es', 'name', 'Fundación para La Investigación del Vino y La Nutrición'),
(71604, 60076, 'no_lang_code', 'name', 'Optical Polymer Research (United States)'),
(71605, 60077, 'en', 'name', 'The Kidney Foundation of Thailand'),
(71606, 60077, 'th', 'name', 'ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ą¹‚ąø£ąø„ą¹„ąø•ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(71607, 60078, 'en', 'name', 'National Institute of Emergency Medicine "Pirogov"'),
(71608, 60079, 'no_lang_code', 'name', 'TherapySelect (Germany)'),
(71609, 60080, 'en', 'name', 'Sun Protection Foundation'),
(71610, 60081, 'cs', 'name', 'ČeskĆ” ChirurgickĆ” Společnost'),
(71611, 60081, 'en', 'name', 'Czech Surgical Society'),
(71612, 60082, 'en', 'name', 'Australian Rural Leadership Foundation'),
(71613, 60083, 'es', 'name', 'Sociedad EspaƱola de Medicina Interna'),
(71614, 60084, 'en', 'name', 'Barrie Urology Group'),
(71615, 60085, 'en', 'name', 'Canadian Association of General Surgeons'),
(71616, 60085, 'fr', 'name', 'Association Canadienne des Chirurgiens GƩnƩraux'),
(71617, 60086, 'en', 'name', 'Associated Colleges of the Twin Cities'),
(71618, 60087, 'en', 'name', 'Action Potential'),
(71619, 60088, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Netherlands)'),
(71620, 60089, 'en', 'name', 'Australian Maritime and Fisheries Academy'),
(71621, 60090, 'en', 'name', 'Department of Disease Control'),
(71622, 60091, 'no_lang_code', 'name', 'Yuli Hospital'),
(71623, 60091, 'zh', 'name', 'ēŽ‰é‡Œé†«é™¢ęœ¬éƒØ'),
(71624, 60092, 'pt', 'name', 'Hospital UniversitƔrio - Universidade Federal de Juiz de Fora'),
(71625, 60093, 'en', 'name', 'Aidan Foundation'),
(71626, 60094, 'en', 'name', 'Beijing Academy of Social Sciences'),
(71627, 60094, 'zh', 'name', 'åŒ—äŗ¬åø‚ē¤¾ä¼šē§‘å­¦é™¢'),
(71628, 60095, 'en', 'name', 'Whitaker Center for Science and the Arts'),
(71629, 60096, 'en', 'name', 'Mental Research Institute'),
(71630, 60097, 'nl', 'name', 'Stichting Hofje Codde en Van Beresteyn'),
(71631, 60098, 'en', 'name', 'Department of Health & Family Welfare'),
(71632, 60099, 'en', 'name', 'Child Psychopharmacology Institute'),
(71633, 60100, 'en', 'name', 'European School of Osteopathy'),
(71634, 60101, 'en', 'name', 'Avans+'),
(71635, 60102, 'pt', 'name', 'Hemorio, Instituto Estadual de Hematologia Arthur de Siqueira Cavalcanti'),
(71636, 60103, 'aa', 'name', 'Pharmacy Hague Hospital'),
(71637, 60103, 'nl', 'name', 'Apotheek Haagse Ziekenhuizen'),
(71638, 60104, 'no_lang_code', 'name', 'Mastelli (Italy)'),
(71639, 60105, 'en', 'name', 'TMT Observatory'),
(71640, 60106, 'en', 'name', 'Sanford Health'),
(71641, 60107, 'en', 'name', 'Romanian Society of Nephrology'),
(71642, 60107, 'ro', 'name', 'Societatii Romane de Nefrologie'),
(71643, 60108, 'en', 'name', 'Tri-State Community Health Center'),
(71644, 60109, 'en', 'name', 'Hope Cancer Clinic'),
(71645, 60110, 'en', 'name', 'Ontario Clinical Oncology Group'),
(71646, 60111, 'en', 'name', 'Sanyu Africa Research Institute'),
(71647, 60112, 'en', 'name', 'National Recreation and Park Association'),
(71648, 60113, 'en', 'name', 'Shanghai International Medical Center'),
(71649, 60114, 'en', 'name', 'Dr.Heiko Pult Optometry and Vision Research'),
(71650, 60115, 'en', 'name', 'Norwegian Pain Society'),
(71651, 60115, 'no', 'name', 'Norsk Smerteforening'),
(71652, 60116, 'en', 'name', 'Integrative Clinical Trials'),
(71653, 60117, 'no_lang_code', 'name', 'Lombard Medical (United Kingdom)'),
(71654, 60118, 'en', 'name', 'HealthCare Partners Medical Group'),
(71655, 60119, 'en', 'name', 'Hematology and Oncology Associates of Northeastern Pennsylvania'),
(71656, 60120, 'de', 'name', 'Deutsche Gesellschaft für Neurogastroenterologie und Motilität'),
(71657, 60121, 'no_lang_code', 'name', 'TheBeamer (United States)'),
(71658, 60122, 'en', 'name', 'St. Hope Foundation'),
(71659, 60123, 'en', 'name', 'National Horticultural Research Institute'),
(71660, 60124, 'de', 'name', 'Allgemeine Ortskrankenkasse'),
(71661, 60124, 'no_lang_code', 'name', 'AOK'),
(71662, 60125, 'en', 'name', 'Food Ingredient and Health Research Institute'),
(71663, 60126, 'en', 'name', 'Sutherland Society'),
(71664, 60127, 'en', 'name', 'Society for Biomaterials'),
(71665, 60128, 'en', 'name', 'Mercy NeuroScience Institute'),
(71666, 60129, 'en', 'name', 'Cooperative Trials Group for Neuro-Oncology'),
(71667, 60130, 'en', 'name', 'Northern Territory Seafood Council'),
(71668, 60131, 'en', 'name', 'Task Applied Science'),
(71669, 60132, 'en', 'name', 'Center for Research Strategies'),
(71670, 60133, 'nl', 'name', 'Middelbaar Beroeps Onderwijs'),
(71671, 60134, 'no_lang_code', 'name', 'Hobi Instrument Services (United States)'),
(71672, 60135, 'no_lang_code', 'name', 'Bioline Products (Czechia)'),
(71673, 60136, 'en', 'name', 'Inspira Medical Center Vineland'),
(71674, 60137, 'en', 'name', 'Diabetes Association of Thailand'),
(71675, 60137, 'th', 'name', 'ąøŖąø”ąø²ąø„ąø”ą¹‚ąø£ąø„ą¹€ąøšąø²ąø«ąø§ąø²ąø™ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(71676, 60138, 'en', 'name', 'Alice Hamilton Occupational Health Center'),
(71677, 60139, 'no_lang_code', 'name', 'Fyzzio (Netherlands)'),
(71678, 60140, 'en', 'name', 'Science Museum of Virginia'),
(71679, 60141, 'en', 'name', 'Joint Replacement Institute'),
(71680, 60142, 'en', 'name', 'St. Peter''s Hospital'),
(71681, 60143, 'en', 'name', 'Australasian Society for HIV, Viral Hepatitis and Sexual Health Medicine'),
(71682, 60144, 'pt', 'name', 'Fundação Ataulpho de Paiva'),
(71683, 60145, 'en', 'name', 'Hospital Consortium of San Mateo County'),
(71684, 60146, 'en', 'name', 'Institute of Mind Control & Brain Development'),
(71685, 60147, 'en', 'name', 'Dermatology Consulting Services'),
(71686, 60148, 'en', 'name', 'Clinical Trials of South Carolina'),
(71687, 60149, 'no_lang_code', 'name', 'Glauconix (United States)'),
(71688, 60150, 'en', 'name', 'Chicago Anesthesia Pain Specialists'),
(71689, 60151, 'no_lang_code', 'name', 'International Medical Research (Germany)'),
(71690, 60152, 'en', 'name', 'Council of Colleges of Acupuncture and Oriental Medicine'),
(71691, 60153, 'de', 'name', 'Krankenhaus Düren'),
(71692, 60154, 'en', 'name', 'Caribbean Agricultural Research and Development Institute'),
(71693, 60155, 'en', 'name', 'Clackamas Radiation Oncology Center'),
(71694, 60156, 'no_lang_code', 'name', 'TutorGen (United States)'),
(71695, 60157, 'en', 'name', 'Taiwan College of Healthcare Executive'),
(71696, 60158, 'en', 'name', 'Stavropol Regional Clinical Oncology Center'),
(71697, 60158, 'ru', 'name', 'Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ областной клинический онкологический Гиспансер'),
(71698, 60159, 'no_lang_code', 'name', 'Syntellix (Germany)'),
(71699, 60160, 'en', 'name', 'Community Pharmacy Foundation'),
(71700, 60161, 'en', 'name', 'Sixth Affiliated Hospital of Sun Yat-sen University'),
(71701, 60161, 'zh', 'name', 'äø­å±±å¤§å­¦é™„å±žē¬¬å…­åŒ»é™¢'),
(71702, 60162, 'en', 'name', 'Southern Ocean Medical Center'),
(71703, 60163, 'no_lang_code', 'name', 'Greenyard Fresh (United Kingdom)'),
(71704, 60164, 'pt', 'name', 'Instituto do CĆ¢ncer do Estado de SĆ£o Paulo'),
(71705, 60165, 'pt', 'name', 'Hospital Alvorada'),
(71706, 60166, 'en', 'name', 'Alaska Geological Society'),
(71707, 60167, 'es', 'name', 'Somdex Ginecologia Dr. Santiago Dexeus'),
(71708, 60168, 'sk', 'name', 'FakultnĆ” Nemocnica Trnava'),
(71709, 60169, 'en', 'name', 'DeGarmo Institute of Medical Research'),
(71710, 60170, 'no_lang_code', 'name', 'LABCATAL (France)'),
(71711, 60171, 'en', 'name', 'Cancer Center of Hawaii'),
(71712, 60172, 'de', 'name', 'Rexrodt von Fircks Stiftung'),
(71713, 60173, 'en', 'name', 'Agricultural Genomics Institute at Shenzhen'),
(71714, 60173, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ę·±åœ³å†œäøšåŸŗå› ē»„ē ”ē©¶ę‰€'),
(71715, 60174, 'en', 'name', 'Community Frameworks'),
(71716, 60175, 'en', 'name', 'Southern Fishermen Association'),
(71717, 60176, 'en', 'name', 'Alaska Oncology & Hematology'),
(71718, 60177, 'en', 'name', 'World Molecular Imaging Society'),
(71719, 60178, 'es', 'name', 'Hospital Universitari de Santa Maria'),
(71720, 60179, 'en', 'name', 'The Milton H. Erickson Foundation'),
(71721, 60180, 'no_lang_code', 'name', 'Bentley (Germany)'),
(71722, 60181, 'nl', 'name', 'Nederlandse Vereniging van Orthodontisten'),
(71723, 60182, 'pt', 'name', 'Sociedade Brasileira de Cirurgia de CabeƧa e PescoƧo'),
(71724, 60183, 'en', 'name', 'Institute for Environmental Research and Education'),
(71725, 60184, 'en', 'name', 'Heart & Vascular Institute of Florida'),
(71726, 60185, 'ro', 'name', 'Institutul Regional de Oncologie'),
(71727, 60186, 'en', 'name', 'Neutron Scattering Society of America'),
(71728, 60187, 'no_lang_code', 'name', 'Embedded Research Solutions (United States)'),
(71729, 60188, 'no_lang_code', 'name', 'Chedd Angier Production (United States)'),
(71730, 60189, 'de', 'name', 'Sana Klinikum Lichtenberg'),
(71731, 60190, 'en', 'name', 'Dunsan Korean Medicine Hospital'),
(71732, 60190, 'ko', 'name', '단산 ķ•œģ˜ģ› 병원'),
(71733, 60191, 'no_lang_code', 'name', 'Fujitsu (United States)'),
(71734, 60192, 'en', 'name', 'Asklepios Foundation'),
(71735, 60193, 'no_lang_code', 'name', 'Sysmex (Germany)'),
(71736, 60194, 'en', 'name', 'Support group for adolescents and children with cancer'),
(71737, 60194, 'pt', 'name', 'Grupo de Apoio ao Adolescente e à Criança com Câncer'),
(71738, 60195, 'en', 'name', 'Southeastern Spine Center & Research Institute'),
(71739, 60196, 'en', 'name', 'Mathematics Education Collaborative'),
(71740, 60197, 'en', 'name', 'Chinese People''s Armed Police Force Medical College Affiliated Hospital'),
(71741, 60197, 'zh', 'name', 'äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜ŸåŒ»å­¦é™¢é™„å±žåŒ»é™¢'),
(71742, 60198, 'en', 'name', 'Australian and New Zealand Intensive Care Society'),
(71743, 60199, 'no_lang_code', 'name', 'Kreiskrankenhaus Gummersbach'),
(71744, 60200, 'no_lang_code', 'name', 'Bountiful Applied Research Corporation (United States)'),
(71745, 60201, 'en', 'name', 'Uniontown Hospital Radiation Oncology'),
(71746, 60202, 'en', 'name', 'Pen Bay Medical Center'),
(71747, 60203, 'nl', 'name', 'GGD Haaglanden, Gemeentelijke gezondheidsdienst Haaglanden'),
(71748, 60204, 'en', 'name', 'Brazilian Institute of Osteopathy'),
(71749, 60204, 'pt', 'name', 'Instituto Brasileiro de Osteopatia'),
(71750, 60205, 'en', 'name', 'Council for Advancement and Support of Education'),
(71751, 60206, 'en', 'name', 'Maier Foundation'),
(71752, 60207, 'no_lang_code', 'name', 'Nielsen (Germany)'),
(71753, 60208, 'no_lang_code', 'name', 'Immunitor (Mongolia)'),
(71754, 60209, 'no_lang_code', 'name', 'Nutricia (United Kingdom)'),
(71755, 60210, 'en', 'name', 'French River Education Center'),
(71756, 60211, 'en', 'name', 'The American Law Institute'),
(71757, 60212, 'en', 'name', 'University Orthopaedic Associates'),
(71758, 60213, 'en', 'name', 'Krishnadevaraya College of Dental Sciences and Hospital'),
(71759, 60213, 'kn', 'name', 'ą²•ą³ƒą²·ą³ą²£ą²¦ą³‡ą²µą²°ą²¾ą²Æ ದಂತ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(71760, 60214, 'nl', 'name', 'Janusz Korczak Stichting'),
(71761, 60215, 'en', 'name', 'Utah Cancer Specialists'),
(71762, 60216, 'nl', 'name', 'Dokter Wittenberg Stichting'),
(71763, 60217, 'no_lang_code', 'name', 'Cleveland-Cliffs (United States)'),
(71764, 60218, 'en', 'name', 'Pali Momi Medical Center'),
(71765, 60219, 'no_lang_code', 'name', 'Hologic (Germany)'),
(71766, 60220, 'en', 'name', 'Arq Psychotrauma Expert Group'),
(71767, 60220, 'nl', 'name', 'Arq Psychotrauma Expert Groep'),
(71768, 60221, 'it', 'name', 'Studio Odontoiatrico Mangano'),
(71769, 60222, 'en', 'name', 'Better Education Inc'),
(71770, 60223, 'de', 'name', 'Sportmedizinische Institut'),
(71771, 60223, 'en', 'name', 'Institute for Sports Medicine'),
(71772, 60224, 'en', 'name', 'White Clinic'),
(71773, 60225, 'en', 'name', 'Asthma Society of Ireland'),
(71774, 60226, 'en', 'name', 'Pain Management Institute'),
(71775, 60227, 'es', 'name', 'Fundación Pethema'),
(71776, 60228, 'no_lang_code', 'name', 'Universe Technical Translation (United States)'),
(71777, 60229, 'en', 'name', 'Techbridge (United States)'),
(71778, 60230, 'en', 'name', 'Alan Turing Institute Almere'),
(71779, 60231, 'no_lang_code', 'name', 'Analyze & Realize (Germany)'),
(71780, 60232, 'en', 'name', 'Merrion Fertility Clinic'),
(71781, 60233, 'no_lang_code', 'name', 'DJO Global (Germany)'),
(71782, 60234, 'en', 'name', 'Saint Joseph Hospital East'),
(71783, 60235, 'en', 'name', 'Delaware Valley Industrial Resource Center'),
(71784, 60236, 'de', 'name', 'Lesmüller-Stiftung'),
(71785, 60237, 'no_lang_code', 'name', 'Origin BioMed (Canada)'),
(71786, 60238, 'en', 'name', 'Vachira Phuket Hospital'),
(71787, 60238, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøØąø¹ąø™ąø¢ą¹Œąø§ąøŠąø“ąø£ąø°ąø ąø¹ą¹€ąøą¹‡ąø•'),
(71788, 60239, 'en', 'name', 'Central Clinical Hospital of Civil Aviation'),
(71789, 60240, 'en', 'name', 'World Future Society'),
(71790, 60241, 'de', 'name', 'Institut für Pathologie Celle'),
(71791, 60241, 'en', 'name', 'Institute of Pathology Celle'),
(71792, 60242, 'en', 'name', 'The Foundation for Peripheral Neuropathy'),
(71793, 60243, 'no_lang_code', 'name', 'Blue Sky Research (United States)'),
(71794, 60244, 'en', 'name', 'Alaska Native Heritage Center'),
(71795, 60245, 'no_lang_code', 'name', 'NestlƩ (South Africa)'),
(71796, 60246, 'en', 'name', 'North American Skull Base Society'),
(71797, 60247, 'en', 'name', 'Chengdu Women''s and Children''s Central Hospital'),
(71798, 60247, 'zh', 'name', 'ęˆéƒ½åø‚å¦‡å„³å„æē«„äø­åæƒåŒ»é™¢'),
(71799, 60248, 'de', 'name', 'gesetzlichen Krankenversicherungen'),
(71800, 60248, 'no_lang_code', 'name', 'gkv informatik (Germany)'),
(71801, 60249, 'no_lang_code', 'name', 'Qualissima (France)'),
(71802, 60250, 'no_lang_code', 'name', 'Perfusion Solution (United States)'),
(71803, 60251, 'en', 'name', 'CHI Memorial Medical Group'),
(71804, 60252, 'de', 'name', 'Institut für Verhaltenstherapie-Ausbildung Hamburg'),
(71805, 60253, 'en', 'name', 'Finnish Society of Obstetrics and Gynaecology'),
(71806, 60253, 'fi', 'name', 'Suomen Gynekologiyhdistys'),
(71807, 60254, 'en', 'name', 'Zaporizhzhia Medical Academy of Post-Graduate Education Ministry of Health of Ukraine'),
(71808, 60254, 'uk', 'name', 'Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ° меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŠæŃ–ŃŠ»ŃŠ“ŠøŠæŠ»Š¾Š¼Š½Š¾Ń— освіти ŠœŃ–ністерства охорони Š·Š“Š¾Ń€Š¾Š²ā€™Ń України'),
(71809, 60255, 'no_lang_code', 'name', 'Olympus (Netherlands)'),
(71810, 60256, 'en', 'name', 'Four Winds Hospital'),
(71811, 60257, 'en', 'name', 'Chitwan Medical College'),
(71812, 60258, 'de', 'name', 'DRK Kamillus Klinik'),
(71813, 60259, 'de', 'name', 'Berufsgenossenschaft für Gesundheitsdienst und Wohlfahrtspflege'),
(71814, 60260, 'no_lang_code', 'name', 'Vistex Composites (United States)'),
(71815, 60261, 'en', 'name', 'Center for Child and Family Health'),
(71816, 60262, 'es', 'name', 'Asepeyo Hospital Sant Cugat'),
(71817, 60263, 'en', 'name', 'Ludwig Boltzmann Institute for Lung Vascular Research'),
(71818, 60264, 'en', 'name', 'American Pancreatic Association'),
(71819, 60265, 'en', 'name', 'Autodesk Foundation'),
(71820, 60266, 'nl', 'name', 'Stichting Bergh in het Zadel'),
(71821, 60267, 'en', 'name', 'Tennessee Physical Therapy Association'),
(71822, 60268, 'en', 'name', 'Nizhny Novgorod Regional Clinical Hospital named after Semashko'),
(71823, 60268, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° им. Š.А.Демашко'),
(71824, 60269, 'en', 'name', 'Midas Multispeciality Hospital'),
(71825, 60270, 'de', 'name', 'Deutsche Stiftung Eierstockkrebs'),
(71826, 60271, 'de', 'name', 'Klinik für Frauenheilkunde'),
(71827, 60272, 'no_lang_code', 'name', 'ACR Electronics (United States)'),
(71828, 60273, 'en', 'name', 'Effective Intervention'),
(71829, 60274, 'en', 'name', 'Acid Maltase Deficiency Association'),
(71830, 60275, 'ro', 'name', 'Institutul Regional de Gastroenterologie Prof. Dr. Octavian Fodor'),
(71831, 60276, 'nl', 'name', 'Hart voor Research Aalst'),
(71832, 60277, 'en', 'name', 'The Evolution Institute'),
(71833, 60278, 'en', 'name', 'Federal Law Enforcement Training Centers'),
(71834, 60279, 'no_lang_code', 'name', 'Sinclair Pharma'),
(71835, 60280, 'no_lang_code', 'name', 'Stasys Medical (United States)'),
(71836, 60281, 'de', 'name', 'Vestische Caritas-Kliniken'),
(71837, 60282, 'en', 'name', 'Foundation for Biomedical Research'),
(71838, 60283, 'no_lang_code', 'name', 'Vitromics (Netherlands)'),
(71839, 60284, 'no_lang_code', 'name', 'HumanTotalCare (Netherlands)'),
(71840, 60285, 'no_lang_code', 'name', 'Optana (Germany)'),
(71841, 60286, 'en', 'name', 'United Leukodystrophy Foundation'),
(71842, 60287, 'en', 'name', 'Work Opportunity Center'),
(71843, 60288, 'sl', 'name', 'InŔtitut za preventivno medicino'),
(71844, 60289, 'no_lang_code', 'name', 'InquisitHealth (United States)'),
(71845, 60290, 'pt', 'name', 'Hospital OrtopƩdico de Passo Fundo'),
(71846, 60291, 'pt', 'name', 'Hospital UniversitƔrio de Santa Maria'),
(71847, 60292, 'en', 'name', 'Triple O Medical Services'),
(71848, 60293, 'es', 'name', 'Hospital Universitario de Torrejón'),
(71849, 60294, 'en', 'name', 'Jiangxi Province Soil and Water Conservation Science Research Institute'),
(71850, 60294, 'zh', 'name', 'ę±Ÿč„æēœę°“åœŸäæęŒē§‘å­¦ē ”ē©¶é™¢'),
(71851, 60295, 'en', 'name', 'Liverpool Women''s Health Centre'),
(71852, 60296, 'no_lang_code', 'name', 'Madison Group (United States)'),
(71853, 60297, 'en', 'name', 'Northern New Mexico Health Center'),
(71854, 60298, 'no_lang_code', 'name', 'Roche (Finland)'),
(71855, 60299, 'en', 'name', 'Borland Groover Clinic'),
(71856, 60300, 'fr', 'name', 'Association FranƧaise de Chirurgie'),
(71857, 60301, 'en', 'name', 'Patrick Air Force Base'),
(71858, 60302, 'no_lang_code', 'name', 'Ribometrix (United States)'),
(71859, 60303, 'es', 'name', 'ClĆ­nica IVI Alicante'),
(71860, 60304, 'es', 'name', 'ClĆ­nica RementerĆ­a'),
(71861, 60305, 'nl', 'name', 'GGZ Noord-Holland-Noord'),
(71862, 60306, 'no_lang_code', 'name', 'Myolex (United States)'),
(71863, 60307, 'en', 'name', 'International Piezoelectric Surgery Academy'),
(71864, 60308, 'en', 'name', 'Great Lakes Environmental Center'),
(71865, 60309, 'en', 'name', 'National Board for Professional Teaching Standards'),
(71866, 60310, 'en', 'name', 'Second Affiliated Hospital of Jiangxi University of TCM'),
(71867, 60310, 'zh', 'name', 'ę±Ÿč„æäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(71868, 60311, 'en', 'name', 'The Astronauts Memorial Foundation'),
(71869, 60312, 'en', 'name', 'Medarva Healthcare'),
(71870, 60313, 'en', 'name', 'Shenzhen Inno Translational Medicine Institute'),
(71871, 60314, 'en', 'name', 'Central-Asian Institute for Applied Geosciences'),
(71872, 60314, 'ky', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Азиатский Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГных ИсслеГований Земли'),
(71873, 60315, 'en', 'name', 'Islamic Azad University, Marvdasht'),
(71874, 60315, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ų±ŁˆŲÆŲ“ŲŖ'),
(71875, 60316, 'en', 'name', 'Veterans for America'),
(71876, 60317, 'de', 'name', 'Krankenhaus Agatharied'),
(71877, 60318, 'no_lang_code', 'name', 'Fractyl (United States)'),
(71878, 60319, 'en', 'name', 'American Health Research Institute'),
(71879, 60320, 'en', 'name', 'Pothecary Witham Weld Solicitors'),
(71880, 60321, 'en', 'name', 'Rice Research Institute'),
(71881, 60321, 'zh', 'name', 'å¹æäøœēœå†œäøšē§‘å­¦é™¢ę°“ēØ»ē ”ē©¶ę‰€'),
(71882, 60322, 'no_lang_code', 'name', 'Panin (Italy)'),
(71883, 60323, 'en', 'name', 'State Scientific Center of Coloproctology'),
(71884, 60324, 'nl', 'name', 'Galactosemie Vereniging Nederland'),
(71885, 60325, 'pt', 'name', 'Medcin Dermatologia'),
(71886, 60326, 'nl', 'name', 'Stichting FORCE'),
(71887, 60327, 'en', 'name', 'Ministry of Public Health'),
(71888, 60327, 'fr', 'name', 'Ministère de la Santé Publique'),
(71889, 60328, 'nl', 'name', 'Tante Louise'),
(71890, 60329, 'en', 'name', 'Laureate Psychiatric Clinic and Hospital'),
(71891, 60330, 'en', 'name', 'Williamsburg Technical College'),
(71892, 60331, 'no_lang_code', 'name', 'Vivisol (Netherlands)'),
(71893, 60332, 'es', 'name', 'Conferencia de Rectores de las Universidades EspaƱolas'),
(71894, 60333, 'nl', 'name', 'Evean'),
(71895, 60334, 'no_lang_code', 'name', 'Hoya Surgical Optics (United States)'),
(71896, 60335, 'en', 'name', 'Lucamed'),
(71897, 60336, 'en', 'name', 'Catholic Charities Archdiocese of Washington'),
(71898, 60337, 'no_lang_code', 'name', 'Worldwide Clinical Trials (United States)'),
(71899, 60338, 'en', 'name', 'Minnesota''s Private Colleges'),
(71900, 60339, 'en', 'name', 'Ignited'),
(71901, 60340, 'en', 'name', 'Health First'),
(71902, 60341, 'en', 'name', 'American Institute of Professional Geologists'),
(71903, 60342, 'en', 'name', 'Australian and New Zealand Society of Palliative Medicine'),
(71904, 60343, 'en', 'name', 'Cleveland Shoulder Institute'),
(71905, 60344, 'en', 'name', 'Sacred Heart Hospital'),
(71906, 60345, 'fr', 'name', 'CollĆØge d''Ɖtudes OstĆ©opathiques de MontrĆ©al'),
(71907, 60346, 'en', 'name', 'National and University Library "St. Kliment of Ohrid"'),
(71908, 60346, 'mk', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Šø ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ŃŠŗŠ° библиотека ā€žŠ”Š². ŠšŠ»ŠøŠ¼ŠµŠ½Ń‚ ŠžŃ…Ń€ŠøŠ“ŃŠŗŠø ā€œ'),
(71909, 60347, 'no_lang_code', 'name', 'Factory Physics (United States)'),
(71910, 60348, 'en', 'name', 'Hematology\\Oncology Clinic'),
(71911, 60349, 'es', 'name', 'Instituto Mexicano de OftalmologĆ­a IAP'),
(71912, 60350, 'en', 'name', 'China Guangzhou Analysis and Testing Center'),
(71913, 60350, 'zh', 'name', 'äø­å›½å¹æå·žåˆ†ęžęµ‹čÆ•äø­åæƒ'),
(71914, 60351, 'nl', 'name', 'Zorg voor innoveren'),
(71915, 60352, 'en', 'name', 'Sutherland Cranial College of Osteopathy'),
(71916, 60353, 'nl', 'name', 'Huygen Installatie Adviseurs'),
(71917, 60354, 'en', 'name', 'Golden Helix Foundation'),
(71918, 60355, 'en', 'name', 'Allied Biomedical Research Institute'),
(71919, 60356, 'es', 'name', 'Hospital de Nens de Barcelona'),
(71920, 60357, 'en', 'name', 'Voronezh Regional Clinical Oncology Center'),
(71921, 60357, 'ru', 'name', 'Воронежский областной клинический онкологический Гиспансер'),
(71922, 60358, 'no_lang_code', 'name', 'Splitvane Engineers (United States)'),
(71923, 60359, 'en', 'name', 'Canadian Fasteners Institute'),
(71924, 60360, 'nl', 'name', 'Stichting Artrose Zorg'),
(71925, 60361, 'en', 'name', 'Heliodor Swiecicki Clinical Hospital'),
(71926, 60361, 'pl', 'name', 'Szpital Kliniczny im. Heliodora Święcickiego w Poznaniu'),
(71927, 60362, 'de', 'name', 'INVADE Institut für Versorgungsforschung'),
(71928, 60363, 'en', 'name', 'UW Cancer Center Johnson Creek'),
(71929, 60364, 'no_lang_code', 'name', 'Hikma Pharmaceuticals (Germany)'),
(71930, 60365, 'nl', 'name', 'GGD Rotterdam-Rijnmond, Gemeentelijke gezondheidsdienst Rotterdam-Rijnmond'),
(71931, 60366, 'en', 'name', 'Palomar Health'),
(71932, 60367, 'de', 'name', 'Rut- und Klaus-Bahlsen-Stiftung'),
(71933, 60368, 'en', 'name', 'Hope Women''s Cancer Centers'),
(71934, 60369, 'de', 'name', 'Frauenklinik an der Elbe'),
(71935, 60370, 'en', 'name', 'Big Horn Basin Regional Cancer Center'),
(71936, 60371, 'en', 'name', 'Republican Clinical Hospital of the Ministry of Health of the Republic of Tatarstan'),
(71937, 60372, 'en', 'name', 'Protexin'),
(71938, 60373, 'de', 'name', 'Helios Amper-Klinikum Dachau'),
(71939, 60374, 'en', 'name', 'Flint Hills Community Health Center'),
(71940, 60375, 'en', 'name', 'McFarland Clinic - Jefferson'),
(71941, 60376, 'fr', 'name', 'HƓpital Couple Enfant'),
(71942, 60377, 'en', 'name', 'Adena Regional Medical Center'),
(71943, 60378, 'no_lang_code', 'name', 'Goolwa Pipi (Australia)'),
(71944, 60379, 'ja', 'name', 'ęœ­å¹Œę±ę€„ē™¾č²Øåŗ—'),
(71945, 60379, 'no_lang_code', 'name', 'Sapporo Higashi Tokushukai Hospital'),
(71946, 60380, 'en', 'name', 'National Association of People with HIV Australia'),
(71947, 60381, 'no_lang_code', 'name', 'BEGO Implant Systems (Germany)'),
(71948, 60382, 'no_lang_code', 'name', 'Novaliq (Germany)'),
(71949, 60383, 'en', 'name', 'Finnish Safety and Chemicals Agency'),
(71950, 60383, 'fi', 'name', 'Turvallisuus- ja kemikaalivirasto'),
(71951, 60383, 'sv', 'name', 'SƤkerhets- och kemikalieverket'),
(71952, 60384, 'en', 'name', 'Orygen Youth Health'),
(71953, 60385, 'no_lang_code', 'name', 'Humedics (Germany)'),
(71954, 60386, 'en', 'name', 'Glendale Heart Institute'),
(71955, 60387, 'en', 'name', 'Budgetary Health Care Institution of the Omsk Region "Clinical Oncology Center"'),
(71956, 60388, 'de', 'name', 'St. Elisabeth-Krankenhaus Leipzig'),
(71957, 60389, 'en', 'name', 'Marshfield Clinic'),
(71958, 60390, 'no_lang_code', 'name', 'Ascent Bio-Nano Technologies (United States)'),
(71959, 60391, 'no_lang_code', 'name', 'Tethys Research (United States)'),
(71960, 60392, 'no_lang_code', 'name', 'Apollo Medical Devices (United States)'),
(71961, 60393, 'no_lang_code', 'name', 'Lƶwenstein Medical (Germany)'),
(71962, 60394, 'en', 'name', 'Allied Research Society'),
(71963, 60395, 'en', 'name', 'Fort Wayne Medical Institute'),
(71964, 60396, 'es', 'name', 'Hospital Viamed Valvanera'),
(71965, 60397, 'en', 'name', 'Thai Dietetic Association'),
(71966, 60398, 'de', 'name', 'Klinik und Poliklinik für Psychosomatik und Psychotherapie'),
(71967, 60399, 'no_lang_code', 'name', 'Takeda (Italy)'),
(71968, 60400, 'sv', 'name', 'Akademiska Barnsjukhuset'),
(71969, 60401, 'no_lang_code', 'name', 'Pyrochem Catalyst Company (United States)'),
(71970, 60402, 'en', 'name', 'Tasmanian Seafood Industry Council'),
(71971, 60403, 'no_lang_code', 'name', 'Servier (China)'),
(71972, 60404, 'en', 'name', 'Rhode Island Mood and Memory Research Institute'),
(71973, 60405, 'no_lang_code', 'name', 'Given Imaging (Germany)'),
(71974, 60406, 'nl', 'name', 'Stichting RevaZorg'),
(71975, 60407, 'it', 'name', 'Associaizone per lo Studio della Sclerosi Sistemica e delle Malattie'),
(71976, 60408, 'de', 'name', 'Deutsche Gesellschaft für Pneumologie und Beatmungsmedizin'),
(71977, 60408, 'en', 'name', 'German Respiratory Society'),
(71978, 60409, 'no_lang_code', 'name', 'Buck Research Instruments (United States)'),
(71979, 60410, 'no_lang_code', 'name', 'Novita Healthcare (Australia)'),
(71980, 60411, 'en', 'name', 'The Performance Institute'),
(71981, 60412, 'en', 'name', 'Desert Medical Imaging'),
(71982, 60413, 'no_lang_code', 'name', 'Sanguine Biosciences (United States)'),
(71983, 60414, 'en', 'name', 'Bunker Hill Elementary School'),
(71984, 60415, 'en', 'name', 'Alignment Nashville'),
(71985, 60416, 'en', 'name', 'Liberian Institute for Biomedical Research'),
(71986, 60417, 'no_lang_code', 'name', 'Leighton (United States)'),
(71987, 60418, 'no_lang_code', 'name', 'Thornton and Ross (United Kingdom)'),
(71988, 60419, 'de', 'name', 'Berner Augenklinik am Lindenhofspital'),
(71989, 60420, 'es', 'name', 'Instituto Neurológico de Colombia'),
(71990, 60421, 'en', 'name', 'Children’s Museum of Atlanta'),
(71991, 60422, 'en', 'name', 'Einstein Institute of Science'),
(71992, 60423, 'pt', 'name', 'Unidade Integrada de Farmacologia e Gastroenterologia'),
(71993, 60424, 'en', 'name', 'UnaSource Health'),
(71994, 60425, 'en', 'name', 'Alliance Foundation Trials'),
(71995, 60426, 'en', 'name', 'The Coordinating Center'),
(71996, 60427, 'en', 'name', 'Assisting Nature'),
(71997, 60428, 'en', 'name', 'ATI Physical Therapy'),
(71998, 60429, 'en', 'name', 'Ministry of Tourism, Sport and the Arts'),
(71999, 60430, 'en', 'name', 'The Bureau of Overseas Buildings Operations'),
(72000, 60431, 'nl', 'name', 'Mentaal Beter'),
(72001, 60432, 'en', 'name', 'Michigan Pharmacists Association'),
(72002, 60433, 'de', 'name', 'Helios Klinik Kipfenberg'),
(72003, 60434, 'nl', 'name', 'Stichting Physico'),
(72004, 60435, 'en', 'name', 'Missouri Academy of Science'),
(72005, 60436, 'en', 'name', 'Institute For European Expertise in Physiology'),
(72006, 60437, 'fr', 'name', 'Alliance UniversitƩ-Entreprise de Grenoble'),
(72007, 60438, 'en', 'name', 'Royal Dutch Pharmacists Association'),
(72008, 60439, 'en', 'name', 'Living Tongues Institute for Endangered Languages'),
(72009, 60440, 'en', 'name', 'Hematology & Oncology Consultants'),
(72010, 60441, 'de', 'name', 'Klinik und Poliklinik für Urologie'),
(72011, 60442, 'en', 'name', 'Advanced Vision Institute'),
(72012, 60443, 'en', 'name', 'Pathway'),
(72013, 60444, 'en', 'name', 'Sleep to Live Institute'),
(72014, 60445, 'en', 'name', 'Shanghai Third People''s Hospital'),
(72015, 60445, 'zh', 'name', 'äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(72016, 60446, 'no_lang_code', 'name', 'Achmea (Netherlands)'),
(72017, 60447, 'en', 'name', 'Retina Macula Institute'),
(72018, 60448, 'nl', 'name', 'Natuur- en GezondheidsProducten Nederland'),
(72019, 60449, 'en', 'name', 'Institute for Transformative Technologies'),
(72020, 60450, 'en', 'name', 'Lake Region Healthcare'),
(72021, 60451, 'en', 'name', 'Associated Colleges of Central Kansas'),
(72022, 60452, 'en', 'name', 'Virtua Voorhees Hospital'),
(72023, 60453, 'en', 'name', 'Guangxi Academy of Special Crops'),
(72024, 60453, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗęŸ‘ę””ē ”ē©¶ę‰€'),
(72025, 60454, 'no_lang_code', 'name', 'Hospital Pitas'),
(72026, 60455, 'en', 'name', 'Johns Hopkins Berman Institute of Bioethics'),
(72027, 60456, 'en', 'name', 'Teachers Development Group'),
(72028, 60457, 'en', 'name', 'Oklahoma Heart Institute'),
(72029, 60458, 'no_lang_code', 'name', 'HXI (United States)'),
(72030, 60459, 'en', 'name', 'Cooley Dickinson Health Care'),
(72031, 60460, 'no_lang_code', 'name', 'Optimata (Israel)'),
(72032, 60461, 'de', 'name', 'Diakonie Klinikum Jung-Stilling'),
(72033, 60462, 'en', 'name', 'Dutch Association for Regional Anesthesia'),
(72034, 60463, 'en', 'name', 'Fetal Diagnostic Institute of the Pacific'),
(72035, 60464, 'en', 'name', 'The Ojai Foundation'),
(72036, 60465, 'en', 'name', 'OpenBiome'),
(72037, 60466, 'en', 'name', 'ABCD Institute'),
(72038, 60466, 'pt', 'name', 'Instituto ABCD'),
(72039, 60467, 'en', 'name', 'Hammersmith Medicines Research'),
(72040, 60468, 'en', 'name', 'Leningrad Regional Cancer Center'),
(72041, 60468, 'ru', 'name', 'ЛенинграГский областной онкологический Гиспансер'),
(72042, 60469, 'en', 'name', 'International Society for Neuroethology'),
(72043, 60470, 'de', 'name', 'Deutsche Interdisziplinäre Vereinigung für Intensiv- und Notfallmedizin'),
(72044, 60471, 'en', 'name', 'Regional Clinical Hospital No 4'),
(72045, 60471, 'ru', 'name', 'ГБУЗ ŠžŠ±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–4'),
(72046, 60472, 'en', 'name', 'Sonoma West Medical Center'),
(72047, 60473, 'en', 'name', 'Elite Research Institute'),
(72048, 60474, 'en', 'name', 'Carolina BioOncology Institute'),
(72049, 60475, 'en', 'name', 'Newman Regional Health'),
(72050, 60476, 'en', 'name', 'Cooper Institute for Reproductive Hormonal Disorders'),
(72051, 60477, 'en', 'name', 'Undersea and Hyperbaric Medical Society'),
(72052, 60478, 'no_lang_code', 'name', 'Pharma Nord (United Kingdom)'),
(72053, 60479, 'en', 'name', 'Western States Endurance Run Foundation'),
(72054, 60480, 'en', 'name', 'Foundation for Cardiovascular Biomedical Research and Gene and Cell Therapy'),
(72055, 60481, 'en', 'name', 'Beverly Hills Cancer Center'),
(72056, 60482, 'en', 'name', 'University Clinical Hospital In Bialystok'),
(72057, 60482, 'pl', 'name', 'Uniwersyteckim Szpitalu Klinicznym w Białymstoku'),
(72058, 60483, 'en', 'name', 'Taiwan Society of Cardiology'),
(72059, 60484, 'no_lang_code', 'name', 'Abcombi Biosciences (United States)'),
(72060, 60485, 'en', 'name', 'Retina Consultants of Houston'),
(72061, 60486, 'en', 'name', 'Foundation for Southwest Orthopedic Research'),
(72062, 60487, 'no_lang_code', 'name', 'Surgimab (France)'),
(72063, 60488, 'en', 'name', 'The Lee Spark NF Foundation'),
(72064, 60489, 'en', 'name', 'World Vision International'),
(72065, 60490, 'de', 'name', 'Ɩsterreichische Gesellschaft für Pneumologie'),
(72066, 60490, 'en', 'name', 'Austrian Society of Pneumology'),
(72067, 60491, 'no_lang_code', 'name', 'Dr. Pfleger Arzneimittel (Germany)'),
(72068, 60492, 'en', 'name', 'Acute Leukemia French Association'),
(72069, 60493, 'en', 'name', 'Fox Valley Surgical Associates'),
(72070, 60494, 'no_lang_code', 'name', 'Applied University Research (United States)'),
(72071, 60495, 'no_lang_code', 'name', 'HelixBind (United States)'),
(72072, 60496, 'de', 'name', 'Helios Hospital Siegburg, Helios Klinikum Siegburg'),
(72073, 60497, 'no_lang_code', 'name', 'Algomedix (United States)'),
(72074, 60498, 'en', 'name', 'Kaiser Permanente Stockton Medical Offices'),
(72075, 60499, 'en', 'name', 'Holston Valley Medical Center'),
(72076, 60500, 'no_lang_code', 'name', 'Biotropics Malaysia (Malaysia)'),
(72077, 60501, 'en', 'name', 'Netherlands Center for Occupational Diseases'),
(72078, 60501, 'nl', 'name', 'Netherlands Centrum for Occupational Diseases'),
(72079, 60502, 'en', 'name', 'Fraser Research'),
(72080, 60503, 'no_lang_code', 'name', 'SIFI Medtech (Italy)'),
(72081, 60504, 'en', 'name', 'Flemish Taekwondo Association'),
(72082, 60504, 'nl', 'name', 'Vlaamse Taekwondo Bond'),
(72083, 60505, 'es', 'name', 'Instituto Dr. Jaime Slullitel'),
(72084, 60506, 'en', 'name', 'Kuchnir Dermatology & Dermatologic Surgery'),
(72085, 60507, 'it', 'name', 'Fondazione Crescere Insieme al Sant''Anna'),
(72086, 60508, 'no_lang_code', 'name', 'AppPeople (Germany)'),
(72087, 60509, 'en', 'name', 'Hillcrest Hospital'),
(72088, 60510, 'en', 'name', 'American Academy of Political and Social Science'),
(72089, 60511, 'en', 'name', 'The Chopra Foundation'),
(72090, 60512, 'es', 'name', 'Instituto de Cancerologƭa Las AmƩricas'),
(72091, 60513, 'en', 'name', 'Perinatal Quality Foundation'),
(72092, 60514, 'en', 'name', 'The White Oak Institute'),
(72093, 60515, 'en', 'name', 'Charleston County''s Department of Alcohol and Other Drug Abuse Services'),
(72094, 60516, 'en', 'name', 'Recreational Fishing Alliance of NSW'),
(72095, 60517, 'en', 'name', 'Rasool Akram Hospital'),
(72096, 60517, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų­Ų¶Ų±ŲŖ Ų±Ų³ŁˆŁ„ اکرم'),
(72097, 60518, 'en', 'name', 'Science Museum of Western Virginia'),
(72098, 60519, 'en', 'name', 'The Institute for Advanced Physics'),
(72099, 60520, 'en', 'name', 'Ministry for Social Equality'),
(72100, 60520, 'he', 'name', '×”×ž×©×Ø×“ לשוויון חברתי'),
(72101, 60521, 'en', 'name', 'Lloyd A. Fry Foundation'),
(72102, 60522, 'de', 'name', 'St.-Antonius-Hospital Gronau'),
(72103, 60523, 'en', 'name', 'China Institute of Electronics'),
(72104, 60523, 'zh', 'name', 'äø­å›½ē”µå­å­¦ä¼š'),
(72105, 60524, 'de', 'name', 'Freiwillige Akademische Gesellschaft'),
(72106, 60524, 'en', 'name', 'Voluntary Academic Society'),
(72107, 60525, 'en', 'name', 'Neville Public Museum'),
(72108, 60526, 'no_lang_code', 'name', 'Fujifilm (Germany)'),
(72109, 60527, 'en', 'name', 'Chinese Medical Doctor Association'),
(72110, 60527, 'zh', 'name', 'äø­å›½åŒ»åøˆåä¼š'),
(72111, 60528, 'no_lang_code', 'name', 'Apotex (United States)'),
(72112, 60529, 'en', 'name', 'American Foundation for Addiction Research'),
(72113, 60530, 'no_lang_code', 'name', 'Brainly (United States)'),
(72114, 60531, 'en', 'name', 'Charleston Hematology Oncology Associates'),
(72115, 60532, 'nl', 'name', 'Stichting Semmy'),
(72116, 60533, 'nl', 'name', 'Revalidatieziekenhuis RevArte'),
(72117, 60534, 'de', 'name', 'Deutsche Gesellschaft für Internationale Zusammenarbeit'),
(72118, 60534, 'en', 'name', 'German Corporation for International Cooperation'),
(72119, 60535, 'no_lang_code', 'name', 'LiveLeaf (United States)'),
(72120, 60536, 'en', 'name', 'Aurora Medical Center in Summit'),
(72121, 60537, 'en', 'name', 'National Association on Drug Abuse Problems'),
(72122, 60538, 'en', 'name', 'Toronto Sleep Institute'),
(72123, 60539, 'de', 'name', 'Emovis'),
(72124, 60540, 'en', 'name', 'Boronia Multicultural Services'),
(72125, 60541, 'en', 'name', 'European Society for Hyperthermic Oncology'),
(72126, 60542, 'de', 'name', 'Schweizer PƤdiatrische Onkologie Gruppe'),
(72127, 60542, 'en', 'name', 'Swiss Paediatric Oncology Group'),
(72128, 60542, 'fr', 'name', 'Groupe suisse d''oncologie pƩdiatrique'),
(72129, 60542, 'it', 'name', 'Gruppo svizzero di oncologia pediatrica'),
(72130, 60543, 'en', 'name', 'Chattanooga Eye Institute'),
(72131, 60544, 'en', 'name', 'Carson Tahoe Regional Medical Center'),
(72132, 60545, 'no_lang_code', 'name', 'Vectorite Biomedical (Taiwan)'),
(72133, 60545, 'zh', 'name', 'é‘«å“ē”ŸåŒ»ē§‘ęŠ€'),
(72134, 60546, 'en', 'name', 'Unimed Medical Institute'),
(72135, 60547, 'en', 'name', 'Foundation for Human Potential'),
(72136, 60548, 'en', 'name', 'Universities UK'),
(72137, 60549, 'en', 'name', 'Kurranulla Aboriginal Corporation'),
(72138, 60550, 'en', 'name', 'MS4 Research Institute'),
(72139, 60551, 'fr', 'name', 'Centre FranƧois Baclesse'),
(72140, 60552, 'no_lang_code', 'name', 'St.Caridad Hospital'),
(72141, 60553, 'no_lang_code', 'name', 'WH Pharmawerk (Germany)'),
(72142, 60554, 'pt', 'name', 'Hospital São José do Avaí'),
(72143, 60555, 'no_lang_code', 'name', 'Odorcept (United States)'),
(72144, 60556, 'en', 'name', 'Fit Kids Foundation'),
(72145, 60557, 'no_lang_code', 'name', 'K2M (United States)');
INSERT INTO `ror_settings` VALUES
(72146, 60558, 'de', 'name', 'MEDIAN Klaus-Miehlke-Klinik Wiesbaden'),
(72147, 60559, 'en', 'name', 'Texas Plastic Surgery'),
(72148, 60560, 'es', 'name', 'Liga Contra el Cancer, Liga Peruana de Lucha contra el CƔncer'),
(72149, 60561, 'en', 'name', 'Arthritis and Rheumatic Disease Specialties'),
(72150, 60562, 'en', 'name', 'Johnson City Medical Center'),
(72151, 60563, 'en', 'name', 'Taylor Regional Hospital'),
(72152, 60564, 'en', 'name', 'Shenzhen International Travel Health Care Center'),
(72153, 60564, 'zh', 'name', 'ę·±åœ³å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€ ę·±åœ³å›½é™…ę—…č”Œå«ē”Ÿäæå„äø­åæƒ'),
(72154, 60565, 'no_lang_code', 'name', 'NestlƩ (Germany)'),
(72155, 60566, 'no_lang_code', 'name', 'Regedent (Switzerland)'),
(72156, 60567, 'en', 'name', 'Mercy Health - Lorain Hospital'),
(72157, 60568, 'en', 'name', 'China Anti-Aging Association'),
(72158, 60568, 'zh', 'name', 'äø­å›½ęŠ—č”°č€äæƒčæ›ä¼š'),
(72159, 60569, 'de', 'name', 'St. Marien- und St. Annastiftskrankenhaus'),
(72160, 60570, 'no_lang_code', 'name', 'Solinas Medical (United States)'),
(72161, 60571, 'en', 'name', 'European School of Oncology'),
(72162, 60572, 'en', 'name', 'College & Association of Registered Nurses of Alberta'),
(72163, 60573, 'en', 'name', 'Chartered Institute of Taxation'),
(72164, 60574, 'pt', 'name', 'Gastrocirurgia de BrasĆ­lia'),
(72165, 60575, 'en', 'name', 'Maryland Oncology Hematology'),
(72166, 60576, 'en', 'name', 'Grand Rapids Women''s Health'),
(72167, 60577, 'en', 'name', 'Kaiser Permanente South Sacramento Medical Center'),
(72168, 60578, 'en', 'name', 'First People''s Hospital of Yuhang District'),
(72169, 60578, 'zh', 'name', 'ę­å·žåø‚ä½™ę­åŒŗē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(72170, 60579, 'en', 'name', 'Nebraska Council on Economic Education'),
(72171, 60580, 'no_lang_code', 'name', 'Active Bio Life Science (Germany)'),
(72172, 60581, 'en', 'name', 'Lake City VA Medical Center'),
(72173, 60582, 'pt', 'name', 'Instituto de Medicina AvanƧada'),
(72174, 60583, 'en', 'name', 'Wayne D Kuni & Joan E Kuni Foundation'),
(72175, 60584, 'en', 'name', 'National Council for Advanced Manufacturing'),
(72176, 60585, 'no_lang_code', 'name', 'Zenwa (United States)'),
(72177, 60586, 'en', 'name', 'International Clinic of Rehabilitation'),
(72178, 60587, 'en', 'name', 'Humanity & Health'),
(72179, 60588, 'de', 'name', 'Verband der Privaten Krankenversicherung'),
(72180, 60589, 'en', 'name', 'Ain Shams University Hospital'),
(72181, 60590, 'en', 'name', 'Regional State Budgetary Healthcare Institution "Smolensk Regional Clinical Hospital"'),
(72182, 60590, 'ru', 'name', 'ŠžŠ±Š»Š°ŃŃ‚Š½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Ā«Š”Š¼Š¾Š»ŠµŠ½ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°Ā»'),
(72183, 60591, 'en', 'name', 'Women''s Pelvic Health Institute'),
(72184, 60592, 'fr', 'name', 'Centre Hospitalier de BƩziers'),
(72185, 60593, 'no_lang_code', 'name', 'DARTNet Institute'),
(72186, 60594, 'it', 'name', 'Azienda Universitaria Ospedaliera Consorziale - Policlinico Bari'),
(72187, 60595, 'en', 'name', 'Grandview Medical Center'),
(72188, 60596, 'en', 'name', 'Family Life Association of Swaziland'),
(72189, 60597, 'en', 'name', 'Tharawal Aboriginal'),
(72190, 60598, 'en', 'name', 'Hyderabad Cleft Society'),
(72191, 60599, 'en', 'name', 'Strimling Dermatology, Laser & Vein Institute'),
(72192, 60600, 'en', 'name', 'Foundation for Worker, Veteran and Environmental Health'),
(72193, 60601, 'no_lang_code', 'name', 'Metrisquare (Netherlands)'),
(72194, 60602, 'ar', 'name', 'مستؓفى بروكار ريايا'),
(72195, 60602, 'no_lang_code', 'name', 'Procare Riaya Hospital'),
(72196, 60603, 'en', 'name', 'Neuro Pain Medical Center'),
(72197, 60604, 'en', 'name', 'Cleveland Sleep Research Center'),
(72198, 60605, 'ar', 'name', 'معهد الابحاث Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© - القدس'),
(72199, 60605, 'en', 'name', 'The Applied Research Institute - Jerusalem'),
(72200, 60606, 'en', 'name', 'National Stroke Association of Malaysia'),
(72201, 60607, 'de', 'name', 'Fachklinik Weinbƶhla'),
(72202, 60608, 'no_lang_code', 'name', 'Serag-Wiessner (Germany)'),
(72203, 60609, 'no_lang_code', 'name', 'Merz (United States)'),
(72204, 60610, 'it', 'name', 'Centro Medicina della Riproduzione'),
(72205, 60611, 'en', 'name', 'International Foundation for Entrepreneurship, Science, and Technology'),
(72206, 60612, 'no_lang_code', 'name', 'Boehringer Ingelheim (Italy)'),
(72207, 60613, 'de', 'name', 'Schƶn Klinik Hamburg Eilbek'),
(72208, 60614, 'de', 'name', 'SRH Wald-Klinikum Gera'),
(72209, 60615, 'no_lang_code', 'name', 'Aggredyne (United States)'),
(72210, 60616, 'nl', 'name', 'Stichting Urologisch Wetenschappelijk Onderzoek'),
(72211, 60617, 'en', 'name', 'National Pecan Shellers Association'),
(72212, 60618, 'en', 'name', 'Heart Institute Bucaramanga'),
(72213, 60618, 'es', 'name', 'Instituto del Corazón de Bucaramanga'),
(72214, 60619, 'no_lang_code', 'name', 'McCormick Environmental (United States)'),
(72215, 60620, 'en', 'name', 'Hospital at Smolensk Station'),
(72216, 60620, 'ru', 'name', 'ŠŠ£Š— ŠžŃ‚Š“ŠµŠ»ŠµŠ½Ń‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° на ст. Дмоленск ŠžŠŠž «РЖД»'),
(72217, 60621, 'de', 'name', 'Verbundkrankenhaus Bernkastel'),
(72218, 60622, 'en', 'name', 'Centerpoint Medical Center'),
(72219, 60623, 'en', 'name', 'American College of Allergy, Asthma and Immunology'),
(72220, 60624, 'no_lang_code', 'name', 'Soylent (United States)'),
(72221, 60625, 'no_lang_code', 'name', 'Nuvo Pharmaceuticals (Canada)'),
(72222, 60626, 'en', 'name', 'Strategic Education Research Partnership'),
(72223, 60627, 'it', 'name', 'Associazione Istituzione Libera UniversitĆ  Nuorese'),
(72224, 60628, 'en', 'name', 'Shandong Yingcai University'),
(72225, 60628, 'zh', 'name', 'å±±äøœč‹±ę‰å­¦é™¢'),
(72226, 60629, 'en', 'name', 'Columbus Oncology and Hematology Associates'),
(72227, 60630, 'en', 'name', 'Stanger Hospital'),
(72228, 60631, 'en', 'name', 'Kaiser Permanente Rancho Cordova Medical Offices'),
(72229, 60632, 'nl', 'name', 'Stichting Emmafonds'),
(72230, 60633, 'no_lang_code', 'name', 'Phranakhon Rajabhat University'),
(72231, 60634, 'de', 'name', 'Klinik und Poliklinik für Nuklearmedizin'),
(72232, 60635, 'no_lang_code', 'name', 'Perrigo (Germany)'),
(72233, 60636, 'en', 'name', 'Angstron Materials (United States)'),
(72234, 60637, 'no_lang_code', 'name', 'Santhera Pharmaceuticals (Switzerland)'),
(72235, 60638, 'en', 'name', 'Tropical Gastroenterology & Nutrition group'),
(72236, 60639, 'en', 'name', 'Nurses for Newborns'),
(72237, 60640, 'en', 'name', 'Princeton Medical Institute'),
(72238, 60641, 'de', 'name', 'Institut Dr. Schauerte'),
(72239, 60642, 'no_lang_code', 'name', 'CardioSec (Germany)'),
(72240, 60643, 'en', 'name', 'InnoSportLab'),
(72241, 60644, 'en', 'name', 'Children’s Hospital at Erlanger'),
(72242, 60645, 'en', 'name', 'National Hematology Society'),
(72243, 60645, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Šµ гематологическое общество'),
(72244, 60646, 'no_lang_code', 'name', 'MediciNova (United States)'),
(72245, 60647, 'pt', 'name', 'Sociedade Brasileira de Cirurgia TorƔcica'),
(72246, 60648, 'it', 'name', 'Istituto Clinico Sant''Ambrogio'),
(72247, 60649, 'nl', 'name', 'Virenze'),
(72248, 60650, 'en', 'name', 'Ministry of Health'),
(72249, 60651, 'es', 'name', 'Instituto Oncológico Dr. Rosell'),
(72250, 60652, 'no_lang_code', 'name', 'Kona Medical (United States)'),
(72251, 60653, 'en', 'name', 'Our Lady of the Lake Children''s Hospital'),
(72252, 60654, 'en', 'name', 'Qinhuangdao Second Hospital'),
(72253, 60655, 'de', 'name', 'St. Mauritius Therapieklinik'),
(72254, 60656, 'nl', 'name', 'Stichting Panta Rhei'),
(72255, 60657, 'en', 'name', 'Foshan Maternity and Child Health Care Hospital'),
(72256, 60657, 'zh', 'name', 'ä½›å±±åø‚å¦‡å¹¼äæå„é™¢'),
(72257, 60658, 'en', 'name', 'Canyon Ranch Institute'),
(72258, 60659, 'no_lang_code', 'name', 'Lianyungang Oriental Hospital'),
(72259, 60659, 'zh', 'name', 'čæžäŗ‘ęøÆåø‚äøœę–¹åŒ»é™¢'),
(72260, 60660, 'no_lang_code', 'name', 'Novatex (Germany)'),
(72261, 60661, 'en', 'name', 'Kidney Care UK'),
(72262, 60662, 'en', 'name', 'Compass Oncology'),
(72263, 60663, 'en', 'name', 'Knight Dermatology Institute'),
(72264, 60664, 'en', 'name', 'Nambudripad''s Allergy Research Foundation'),
(72265, 60665, 'sr', 'name', 'Kliničko Bolnički Centar Zvezdara'),
(72266, 60666, 'en', 'name', 'VitalinQ'),
(72267, 60667, 'en', 'name', 'Biotechnology Institute'),
(72268, 60668, 'nl', 'name', 'Stichting Hartekind'),
(72269, 60669, 'no_lang_code', 'name', 'Mianyang Central Hospital'),
(72270, 60669, 'zh', 'name', 'ē»µé˜³åø‚äø­åæƒåŒ»é™¢'),
(72271, 60670, 'de', 'name', 'Zentrum für Zahn-, Mund- und Kieferheilkunde Poliklinik für Zahnerhaltung und Parodontologie'),
(72272, 60671, 'en', 'name', 'Institute for Advanced Reconstruction'),
(72273, 60672, 'en', 'name', 'Institute for Progressive Medicine'),
(72274, 60673, 'de', 'name', 'Knappschaftsklinikum Saar'),
(72275, 60674, 'no_lang_code', 'name', 'Kunming Tongren Hospital'),
(72276, 60674, 'zh', 'name', 'ę˜†ę˜ŽåŒä»åŒ»é™¢'),
(72277, 60675, 'no_lang_code', 'name', 'Valid International (United Kingdom)'),
(72278, 60676, 'en', 'name', 'UPMC Central Pa'),
(72279, 60677, 'en', 'name', 'Inspira Medical Center Woodbury'),
(72280, 60678, 'no_lang_code', 'name', 'GS Elektromed. GerƤte G. Stemple (Germany)'),
(72281, 60679, 'no_lang_code', 'name', 'Precisis (Germany)'),
(72282, 60680, 'en', 'name', 'Bronson Battle Creek Hospital'),
(72283, 60681, 'en', 'name', 'Taiwan Lung Cancer Society'),
(72284, 60682, 'nl', 'name', 'Stichting Mitialto'),
(72285, 60683, 'en', 'name', 'Riga East University Hospital'),
(72286, 60683, 'lv', 'name', 'Rīgas Austrumu klīniskā universitātes slimnīca'),
(72287, 60684, 'en', 'name', 'Virginia Cancer Institute'),
(72288, 60685, 'it', 'name', 'L''organizzazione Ospedale di Civitanova M'),
(72289, 60686, 'en', 'name', 'National Centre for Disease Prevention and Control'),
(72290, 60686, 'it', 'name', 'Centro per il Controllo e la Prevenzione delle Malattie'),
(72291, 60687, 'en', 'name', 'University Surgical Associates'),
(72292, 60688, 'en', 'name', 'Singapore College of Traditional Chinese Medicine'),
(72293, 60689, 'en', 'name', 'Technology Student Association'),
(72294, 60690, 'da', 'name', 'Dansk Selskab For Klassisk HomĆøopati'),
(72295, 60691, 'no_lang_code', 'name', 'Grifols (Germany)'),
(72296, 60692, 'da', 'name', 'FĆødselsstiftelsen'),
(72297, 60692, 'en', 'name', 'Maternity Foundation'),
(72298, 60693, 'no_lang_code', 'name', 'Luye Pharma (Germany)'),
(72299, 60694, 'de', 'name', 'Balgrist Beteiligungs AG'),
(72300, 60695, 'pt', 'name', 'Instituto Financeiro para o Desenvolvimento Regional'),
(72301, 60696, 'en', 'name', 'NZ Respiratory & Sleep Institute'),
(72302, 60697, 'en', 'name', 'Aspirus Ironwood Hospital'),
(72303, 60698, 'de', 'name', 'HELIOS Klinikum Emil von Behring, Helios Klinikum Emil von Behring'),
(72304, 60699, 'no_lang_code', 'name', 'Lapharm (Germany)'),
(72305, 60700, 'en', 'name', 'Medical Group of the Carolinas'),
(72306, 60701, 'en', 'name', 'Biomed Research Institute'),
(72307, 60702, 'en', 'name', 'Genuine Research Center'),
(72308, 60703, 'en', 'name', 'Australian Council of Prawn Fisheries'),
(72309, 60704, 'en', 'name', 'Sheltering Arms Physical Rehabilitation Centers'),
(72310, 60705, 'de', 'name', 'Zentrum für Therapeutisches Reiten Johannisberg e.V.'),
(72311, 60706, 'en', 'name', 'Fertility Centers of Illinois'),
(72312, 60707, 'no_lang_code', 'name', 'H-Tech Laboratories (United States)'),
(72313, 60708, 'en', 'name', 'New York Society for the Prevention of Cruelty to Children'),
(72314, 60709, 'no_lang_code', 'name', 'Healthycell (United States)'),
(72315, 60710, 'en', 'name', 'Florida Digestive Health Specialists'),
(72316, 60711, 'en', 'name', 'Leyden Academy on Vitality and Ageing'),
(72317, 60712, 'en', 'name', 'Southeastern Medical Oncology Center'),
(72318, 60713, 'de', 'name', 'Waldkrankenhaus Rudolf Elle'),
(72319, 60714, 'nl', 'name', 'Stichting Zorgdraad'),
(72320, 60715, 'no_lang_code', 'name', 'Servier (Egypt)'),
(72321, 60716, 'en', 'name', 'The American Legion Department of Wisconsin'),
(72322, 60717, 'en', 'name', 'Discovery Museum and Planetarium'),
(72323, 60718, 'no_lang_code', 'name', 'Archemix (United States)'),
(72324, 60719, 'en', 'name', 'Institute for Diabetes Discovery'),
(72325, 60720, 'en', 'name', 'White Clover Wellness and Research Center'),
(72326, 60721, 'en', 'name', 'Children''s City Policlinic No. 45'),
(72327, 60722, 'en', 'name', 'South East Trawl Fishing Industry Association'),
(72328, 60723, 'en', 'name', 'Inuit Circumpolar Council'),
(72329, 60724, 'no_lang_code', 'name', 'Mental Canvas (United States)'),
(72330, 60725, 'no_lang_code', 'name', 'Alexion (Germany)'),
(72331, 60726, 'en', 'name', 'American Association of Chairs of Departments of Psychiatry'),
(72332, 60727, 'en', 'name', 'Whitten Laser Eye'),
(72333, 60728, 'no_lang_code', 'name', 'Evidation Health (United States)'),
(72334, 60729, 'no_lang_code', 'name', 'Mathys (Netherlands)'),
(72335, 60730, 'en', 'name', 'Kinema Research & Software'),
(72336, 60731, 'nl', 'name', 'Movisie'),
(72337, 60732, 'en', 'name', 'Southwest Regional Wound Care Center'),
(72338, 60733, 'en', 'name', 'Rwanda Pediatric Association'),
(72339, 60734, 'de', 'name', 'Marienhaus Klinikum Hetzelstift Neustadt'),
(72340, 60735, 'en', 'name', 'Hematology Oncology Associates of Fredericksburg'),
(72341, 60736, 'de', 'name', 'Jüdisches Krankenhaus Berlin'),
(72342, 60737, 'en', 'name', 'North Georgia Heart Foundation'),
(72343, 60738, 'nl', 'name', 'Zorggroep Meander'),
(72344, 60739, 'en', 'name', 'Memorial Hospital of Carbondale'),
(72345, 60740, 'en', 'name', 'Mountain Blue Cancer Care Center'),
(72346, 60741, 'en', 'name', 'Bartlett Regional Hospital'),
(72347, 60742, 'en', 'name', 'Circle of Care'),
(72348, 60743, 'no_lang_code', 'name', 'Cefak (Germany)'),
(72349, 60744, 'en', 'name', 'The Few Institute'),
(72350, 60745, 'en', 'name', 'Mercy Hospital Springfield'),
(72351, 60746, 'en', 'name', 'Jefferson Healthcare'),
(72352, 60747, 'ar', 'name', 'مستؓفى عربي Ł…ŲŖŲ®ŲµŲµ'),
(72353, 60747, 'en', 'name', 'Specialized Arab Hospital'),
(72354, 60748, 'bg', 'name', 'Университетската болница за активно лечение ā€œŠ”-р Георги Š”Ń‚Ń€Š°Š½ŃŠŗŠøā€'),
(72355, 60748, 'en', 'name', 'University Hospital Dr. Georgi Stranski'),
(72356, 60749, 'en', 'name', 'Mikaelyan Institute of Surgery'),
(72357, 60749, 'hy', 'name', 'Õ„Ō»Õ”Ō±Õ…ŌµŌ¼Õ…Ō±Õ† ÕŽŌ»ÕŌ±Ō²ÕˆÕ’ŌŗÕˆÕ’Ō¹Õ…Ō±Õ† Ō»Õ†ÕÕŌ»ÕÕˆÕ’Õ'),
(72358, 60750, 'en', 'name', 'Peoria Hospital'),
(72359, 60751, 'no_lang_code', 'name', 'Süddeutsche Zuckerrübenverwertungs-Genossenschaft (Germany)'),
(72360, 60752, 'en', 'name', 'University Hospitals Landerbrook Health Center'),
(72361, 60753, 'en', 'name', 'Lymphatic Malformation Institute'),
(72362, 60754, 'en', 'name', 'Shenandoah Oncology'),
(72363, 60755, 'el', 'name', 'Ευγονία'),
(72364, 60755, 'no_lang_code', 'name', 'Eugonia'),
(72365, 60756, 'no_lang_code', 'name', 'Dr. Peithner KG (Austria)'),
(72366, 60757, 'en', 'name', 'St. Francis Sleep, Allergy, and Lung Institute'),
(72367, 60758, 'de', 'name', 'Deutscher Berufsverband der Hals-Nasen-OhrenƤrzte e. V'),
(72368, 60759, 'en', 'name', 'Institute for Food Safety and Health'),
(72369, 60760, 'ar', 'name', 'وزارة الصحة العامة'),
(72370, 60760, 'en', 'name', 'Ministry of Public Health'),
(72371, 60761, 'en', 'name', 'Musculoskeletal Orthopedic Research and Education Foundation'),
(72372, 60762, 'fr', 'name', 'Association Mucoviscidose - ABCF2'),
(72373, 60763, 'de', 'name', 'Institut für Medizinische Informatik, Biometrie und Epidemiologie'),
(72374, 60764, 'no_lang_code', 'name', 'Ocutec (United Kingdom)'),
(72375, 60765, 'nl', 'name', 'Stichting Westelijke Tuinsteden'),
(72376, 60766, 'en', 'name', 'Aquaculture Council of Western Australia'),
(72377, 60767, 'es', 'name', 'Fundación Hermano Miguel'),
(72378, 60768, 'en', 'name', 'Sentara CarePlex Hospital'),
(72379, 60769, 'en', 'name', 'Qilu Normal University'),
(72380, 60769, 'zh', 'name', 'é½é²åøˆčŒƒå­¦é™¢'),
(72381, 60770, 'de', 'name', 'Klinik Roderbirke'),
(72382, 60771, 'en', 'name', 'Far West Local Health District'),
(72383, 60772, 'de', 'name', 'Ministerium für Wirtschaft, Verkehr, Landwirtschaft und Weinbau'),
(72384, 60772, 'en', 'name', 'Ministry of Economy, Transport, Agriculture and Viticulture'),
(72385, 60773, 'en', 'name', 'He University'),
(72386, 60773, 'zh', 'name', 'č¾½å®ä½•ę°åŒ»å­¦é™¢'),
(72387, 60774, 'it', 'name', 'Azienda Usl 8 Arezzo'),
(72388, 60775, 'nl', 'name', 'Stichting HemoBase'),
(72389, 60776, 'nl', 'name', 'Stichting Artsenlaboratorium en Trombosedienst'),
(72390, 60777, 'en', 'name', 'Phoenix Molecular Imaging'),
(72391, 60778, 'tr', 'name', 'Erzincan Mengücek Gazi Eğitim ve Araştırma Hastanesi'),
(72392, 60779, 'de', 'name', 'Zydolab - Institut für Zytologie und Immunzytochemie'),
(72393, 60780, 'pt', 'name', 'Fundação Altino Ventura'),
(72394, 60781, 'en', 'name', 'Stonewall Learning Center'),
(72395, 60782, 'en', 'name', 'Canary Institute of Cancer Research'),
(72396, 60782, 'es', 'name', 'Instituto Canario de Investigación del CÔncer'),
(72397, 60783, 'nl', 'name', 'Militaire Geestelijke Gezondheidszorg'),
(72398, 60784, 'nl', 'name', 'Vrienden van Heideheuvel'),
(72399, 60785, 'fr', 'name', 'Groupe d''Oncologie Radiothérapie Tête et Cou'),
(72400, 60786, 'en', 'name', 'Michigan Institute of Urology'),
(72401, 60787, 'no_lang_code', 'name', 'Aqualis (Norway)'),
(72402, 60788, 'en', 'name', 'European Foundation for the Study of Chronic Liver Failure'),
(72403, 60789, 'en', 'name', 'K2 Communications'),
(72404, 60790, 'en', 'name', 'Rocky Mountain School of Expeditionary Learning'),
(72405, 60791, 'en', 'name', 'Clinical Investigation Center Plurithematic Tours'),
(72406, 60792, 'no_lang_code', 'name', 'NanoAffix Science (United States)'),
(72407, 60793, 'no_lang_code', 'name', 'Baxter (South Korea)'),
(72408, 60794, 'eu', 'name', 'Clinic IMQ Zorrotzaurre'),
(72409, 60795, 'en', 'name', 'Warrington and Halton Teaching Hospitals NHS Foundation Trust'),
(72410, 60796, 'no_lang_code', 'name', 'Elfi-Tech (Israel)'),
(72411, 60797, 'de', 'name', 'Schweizerische Ƅrztegesellschaft für Manuelle Medizin'),
(72412, 60798, 'en', 'name', 'Center for Aquatic Sciences'),
(72413, 60799, 'no_lang_code', 'name', 'Quantum Pharmaceutical (United Kingdom)'),
(72414, 60800, 'en', 'name', 'Italian Foundation of Myelodysplastic Syndromes'),
(72415, 60800, 'it', 'name', 'Fondazione Italiana Sindromi Mielodisplastiche'),
(72416, 60801, 'no_lang_code', 'name', 'Australian Coal Research (Australia)'),
(72417, 60802, 'en', 'name', 'Doctors Hospital at Renaissance'),
(72418, 60803, 'en', 'name', 'Neurogen Brain & Spine Institute'),
(72419, 60804, 'no_lang_code', 'name', 'Care Team Solutions (United States)'),
(72420, 60805, 'en', 'name', 'Care Institute of Medical Sciences'),
(72421, 60806, 'nl', 'name', 'Fonds voor het Hart'),
(72422, 60807, 'en', 'name', 'Animal Science Research Institute'),
(72423, 60807, 'zh', 'name', 'å¹æäøœēœå†œäøšē§‘å­¦é™¢åŠØē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(72424, 60808, 'no_lang_code', 'name', 'FluxPlus (Netherlands)'),
(72425, 60809, 'en', 'name', 'Children’s Hospital at TriStar Centennial'),
(72426, 60810, 'en', 'name', 'Osteopathic Founders Foundation'),
(72427, 60811, 'en', 'name', 'Small Enterprise Foundation'),
(72428, 60812, 'en', 'name', 'Joint Preservation Centre of BC'),
(72429, 60813, 'en', 'name', 'Bergman Clinics'),
(72430, 60814, 'en', 'name', 'US Apple Association'),
(72431, 60815, 'no', 'name', 'Norsk Kiropraktorforening'),
(72432, 60816, 'it', 'name', 'Casa di Cura San Michele'),
(72433, 60817, 'en', 'name', 'Outpatient Endovascular and Interventional Society'),
(72434, 60818, 'en', 'name', 'Cardiovascular European Research Center'),
(72435, 60819, 'en', 'name', 'American College of Phlebology'),
(72436, 60820, 'nl', 'name', 'Bavo Stichting Heemstede'),
(72437, 60821, 'en', 'name', 'Southwest Women''s Oncology'),
(72438, 60822, 'en', 'name', 'Georgia Arrhythmia Consultants'),
(72439, 60823, 'en', 'name', 'Shanghai Institute of Measurement and Testing Technology'),
(72440, 60823, 'zh', 'name', 'äøŠęµ·ęµ‹é‡äøŽęµ‹čÆ•ęŠ€ęœÆē ”ē©¶ę‰€'),
(72441, 60824, 'nl', 'name', 'Stichting Zonnige Jeugd'),
(72442, 60825, 'en', 'name', 'The Lung Association Saskatchewan'),
(72443, 60826, 'no_lang_code', 'name', 'SteelCloud (United States)'),
(72444, 60827, 'es', 'name', 'Instituto Nacional de Investigación en Salud Pública'),
(72445, 60828, 'en', 'name', 'Aljazeera Hospital'),
(72446, 60829, 'en', 'name', 'Blanchard Valley Health System'),
(72447, 60830, 'no_lang_code', 'name', 'Laboratorios Sophia (Mexico)'),
(72448, 60831, 'fr', 'name', 'FƩdƩration Antadir'),
(72449, 60832, 'no_lang_code', 'name', 'Alder (United States)'),
(72450, 60833, 'en', 'name', 'Bleeding & Clotting Disorders Institute'),
(72451, 60834, 'en', 'name', 'Indonesian Pediatric Society'),
(72452, 60834, 'id', 'name', 'Ikatan Dokter Anak Indonesia'),
(72453, 60835, 'en', 'name', 'Georgia Nasal and Sinus Institute'),
(72454, 60836, 'en', 'name', 'Ministry of Foreign and European Affairs'),
(72455, 60836, 'fr', 'name', 'Ministère des Affaires étrangères et européennes'),
(72456, 60837, 'en', 'name', 'Pediatric Nephrology of Alabama'),
(72457, 60838, 'en', 'name', 'Ulyanovsk Regional Clinical Hospital'),
(72458, 60838, 'ru', 'name', 'Š£Š»ŃŒŃŠ½Š¾Š²ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(72459, 60839, 'no_lang_code', 'name', 'Nordic Pharma (France)'),
(72460, 60840, 'en', 'name', 'Indigenous Wellbeing Centre'),
(72461, 60841, 'no_lang_code', 'name', 'KCI (Germany)'),
(72462, 60842, 'en', 'name', 'Society for Technology in Anesthesia'),
(72463, 60843, 'en', 'name', 'Women''s Cancer Center of Nevada'),
(72464, 60844, 'de', 'name', 'Klinik und Poliklinik für Kinder- und Jugendmedizin'),
(72465, 60845, 'en', 'name', 'Orthopedic Sports Medicine & Spine Care Institute'),
(72466, 60846, 'en', 'name', 'Valley Health System'),
(72467, 60847, 'en', 'name', 'The Lymphoma Academic Research Organisation'),
(72468, 60848, 'en', 'name', 'Fox Valley Orthopedics'),
(72469, 60849, 'no_lang_code', 'name', 'Video Collaboratory (United States)'),
(72470, 60850, 'en', 'name', 'Urban Land Institute'),
(72471, 60851, 'de', 'name', 'Stiftung Berliner Sparkasse'),
(72472, 60852, 'en', 'name', 'HCA Midwest Division'),
(72473, 60853, 'nl', 'name', 'Dimence'),
(72474, 60854, 'no_lang_code', 'name', 'Vivostat (Denmark)'),
(72475, 60855, 'en', 'name', 'California Allergy and Asthma Medical Group'),
(72476, 60856, 'en', 'name', 'Floridian Research Institute'),
(72477, 60857, 'en', 'name', 'Zoo Miami'),
(72478, 60858, 'en', 'name', 'Consultative and Diagnostic Center'),
(72479, 60859, 'en', 'name', 'Sanibel-Captiva Conservation Foundation'),
(72480, 60860, 'no_lang_code', 'name', 'Menzis (Netherlands)'),
(72481, 60861, 'no_lang_code', 'name', 'Ono Pharmaceutical (United States)'),
(72482, 60862, 'en', 'name', 'Fragile X Research Foundation Of Canada'),
(72483, 60863, 'nl', 'name', 'Stichting Kenniscentrum Dementie op Jonge Leeftijd'),
(72484, 60864, 'en', 'name', 'Center for the Advancement of Hispanics in Science and Engineering Education'),
(72485, 60865, 'en', 'name', 'Ahtna Heritage Foundation'),
(72486, 60866, 'fr', 'name', 'UniversitƩ du Travail Paul Pastur'),
(72487, 60867, 'no_lang_code', 'name', 'Verman (Finland)'),
(72488, 60868, 'en', 'name', 'Vanderbilt Psychiatric Hospital'),
(72489, 60869, 'no_lang_code', 'name', 'Itamar Medical (Israel)'),
(72490, 60870, 'en', 'name', 'Spectrum Community Health CIC'),
(72491, 60871, 'no_lang_code', 'name', 'Leiber (Germany)'),
(72492, 60872, 'no_lang_code', 'name', 'Phoenix (Italy)'),
(72493, 60873, 'en', 'name', 'Legacy Mount Hood Medical Center'),
(72494, 60874, 'en', 'name', 'The Japanese Society of Intensive Care Medicine'),
(72495, 60874, 'ja', 'name', 'ę—„ęœ¬é›†äø­ę²»ē™‚åŒ»å­¦ä¼š'),
(72496, 60875, 'fr', 'name', 'Centre Hospitalier Agen - NƩrac'),
(72497, 60876, 'no_lang_code', 'name', 'Investor (Sweden)'),
(72498, 60877, 'no_lang_code', 'name', 'StabiLux Biosciences (United States)'),
(72499, 60878, 'no_lang_code', 'name', 'PharmEcosse (United Kingdom)'),
(72500, 60879, 'no_lang_code', 'name', 'LIDDS (Sweden)'),
(72501, 60880, 'no_lang_code', 'name', 'Nano-Ditech (United States)'),
(72502, 60881, 'en', 'name', 'Yunnan Institute For Drug Abuse'),
(72503, 60881, 'zh', 'name', 'äŗ‘å—ēœčÆē‰©ę»„ē”Øē ”ē©¶ę‰€'),
(72504, 60882, 'no_lang_code', 'name', 'Medical CaƱada (Spain)'),
(72505, 60883, 'pt', 'name', 'Instituto Ivo Pitanguy'),
(72506, 60884, 'no_lang_code', 'name', 'Human Stem Cells Institute PJSC (Russia)'),
(72507, 60884, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дтволовых ŠšŠ»ŠµŃ‚Š¾Šŗ Человека'),
(72508, 60885, 'no_lang_code', 'name', 'Proderm (Germany)'),
(72509, 60886, 'en', 'name', 'American Medical Group Association'),
(72510, 60887, 'en', 'name', 'Osteopathie Plus'),
(72511, 60888, 'no_lang_code', 'name', 'GeoEngineers (United States)'),
(72512, 60889, 'no_lang_code', 'name', 'INiTS (Austria)'),
(72513, 60890, 'en', 'name', 'Visiting Nurse Association'),
(72514, 60891, 'en', 'name', 'American Academy of Underwater Sciences'),
(72515, 60892, 'bs', 'name', 'Centar za zdravlje, vežbanje i sportske nauke'),
(72516, 60892, 'en', 'name', 'Center for Health, Exercise and Sport Sciences'),
(72517, 60893, 'no_lang_code', 'name', 'Bodeker Scientific (New Zealand)'),
(72518, 60894, 'no_lang_code', 'name', 'Merck (Netherlands)'),
(72519, 60895, 'no_lang_code', 'name', 'axios Pharma (Germany)'),
(72520, 60896, 'nl', 'name', 'Instituut voor Verantwoord Medicijngebruik'),
(72521, 60897, 'en', 'name', 'NKP Salve Institute of Medical Sciences and Lata Mangeshkar Hospital'),
(72522, 60898, 'en', 'name', 'Mississippi Museum of Natural Science'),
(72523, 60899, 'en', 'name', 'State Technical College of Missouri'),
(72524, 60900, 'en', 'name', 'Millennium Institute for Research in Depression and Personality'),
(72525, 60900, 'es', 'name', 'Instituto Milenio para la Investigación en Depresión y Personalidad'),
(72526, 60901, 'da', 'name', 'Institut for Kvalitet og Akkreditering i Sundhedsvaesenet'),
(72527, 60901, 'en', 'name', 'Danish Institute for Quality and Accreditation in Healthcare'),
(72528, 60902, 'no_lang_code', 'name', 'TRB Chemedica International (Switzerland)'),
(72529, 60903, 'en', 'name', 'Society for Pediatric Anesthesia'),
(72530, 60904, 'da', 'name', 'KĆøbenhavns Akademi for Medicinsk Uddannelse og Simulation'),
(72531, 60904, 'en', 'name', 'Copenhagen Academy for Medical Education and Simulation'),
(72532, 60905, 'no_lang_code', 'name', 'NeuraMedica (United States)'),
(72533, 60906, 'en', 'name', 'Columbia College - Missouri'),
(72534, 60907, 'en', 'name', 'Maryland Medical Research Institute'),
(72535, 60908, 'no_lang_code', 'name', 'Instituto Lala (Mexico)'),
(72536, 60909, 'en', 'name', 'Institute of Skin and Product Evaluation'),
(72537, 60910, 'en', 'name', 'Catholic Leadership Institute'),
(72538, 60911, 'en', 'name', 'Edith Kanaka''ole Foundation'),
(72539, 60912, 'en', 'name', 'Haitian American Community Development Corporation'),
(72540, 60913, 'no_lang_code', 'name', 'Senju Pharmaceutical (United States)'),
(72541, 60914, 'en', 'name', 'Q-Pharm'),
(72542, 60915, 'de', 'name', 'Universitätsklinik für Nieren- und Hochdruckkrankheiten, Diabetologie und Endokrinologie'),
(72543, 60915, 'en', 'name', 'University Clinic for Nephrology and Hypertension, Diabetology and Endocrinology'),
(72544, 60916, 'en', 'name', 'Italian Society of Physiotherapy'),
(72545, 60916, 'it', 'name', 'SocietĆ  Italiana Fisioterapia'),
(72546, 60917, 'en', 'name', 'Society for Neuroeconomics'),
(72547, 60918, 'en', 'name', 'Isle of Wight NHS Trust'),
(72548, 60919, 'en', 'name', 'European Society of Gynaecological Oncology'),
(72549, 60920, 'en', 'name', 'Physicians Laser and Dermatology Institute'),
(72550, 60921, 'en', 'name', 'McGuire Institute'),
(72551, 60922, 'nl', 'name', 'Wantveld'),
(72552, 60923, 'it', 'name', 'Consorzio Interuniversitario Nazionale La Chimica Per L''Ambiente'),
(72553, 60924, 'en', 'name', 'PCR Oncology'),
(72554, 60925, 'en', 'name', 'Melbourne Sexual Health Centre'),
(72555, 60926, 'no_lang_code', 'name', 'Solarmer Energy (United States)'),
(72556, 60927, 'en', 'name', 'Deltaplan dementia'),
(72557, 60927, 'nl', 'name', 'Deltaplan Dementie'),
(72558, 60928, 'de', 'name', 'Institut für Notfallmedizin Allgäu'),
(72559, 60929, 'en', 'name', 'Nigerian Cardiac Society'),
(72560, 60930, 'en', 'name', 'Korean Association for the Study of Targeted Therapy'),
(72561, 60930, 'ko', 'name', 'ķ‘œģ ģ¹˜ė£Œģ—°źµ¬ķšŒ ź°€ģž…'),
(72562, 60931, 'de', 'name', 'Poliklinik für Endokrinologie, Diabetologie und Präventivmedizin'),
(72563, 60932, 'en', 'name', 'Windward Islands Research and Education Foundation'),
(72564, 60933, 'no_lang_code', 'name', 'Australian Seafood Industries (Australia)'),
(72565, 60934, 'ko', 'name', 'ķ•œėÆøģ•½ķ’ˆ'),
(72566, 60934, 'no_lang_code', 'name', 'Hanmi Pharmaceutical (South Korea)'),
(72567, 60935, 'de', 'name', 'Deutsche Krebsgesellschaft'),
(72568, 60935, 'en', 'name', 'German Cancer Society'),
(72569, 60936, 'no_lang_code', 'name', 'Immunogenics (United States)'),
(72570, 60937, 'no_lang_code', 'name', 'CSL (Switzerland)'),
(72571, 60938, 'no_lang_code', 'name', 'Bayer (Netherlands)'),
(72572, 60939, 'no_lang_code', 'name', 'Novo Nordisk (Finland)'),
(72573, 60940, 'en', 'name', 'Tatyasaheb Kore Dental College and Research Centre'),
(72574, 60941, 'no_lang_code', 'name', 'Alvotech (Germany)'),
(72575, 60942, 'en', 'name', 'Virginia Cooperative Extension'),
(72576, 60943, 'no_lang_code', 'name', 'Ideum (United States)'),
(72577, 60944, 'en', 'name', 'Kansas City Indian Center'),
(72578, 60945, 'en', 'name', 'Walgett Aboriginal Medical Service'),
(72579, 60946, 'nl', 'name', 'Alexander Monro Ziekenhuis'),
(72580, 60947, 'no_lang_code', 'name', 'Novamedia (Netherlands)'),
(72581, 60948, 'da', 'name', 'Regionshospital Nordjylland'),
(72582, 60949, 'pt', 'name', 'Instituto de Gastroenterologia de Goiânia'),
(72583, 60950, 'en', 'name', 'Langley Porter Psychiatric Hospital and Clinics'),
(72584, 60951, 'nl', 'name', 'ALS Centrum Nederland'),
(72585, 60952, 'en', 'name', 'Tokyo Women''s Medical University Hospital'),
(72586, 60952, 'ja', 'name', 'ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(72587, 60953, 'no_lang_code', 'name', 'Australian Aquaculture Support Services (Australia)'),
(72588, 60954, 'en', 'name', 'Wisconsin Legislative Council'),
(72589, 60955, 'pt', 'name', 'Instituto Scribner'),
(72590, 60956, 'en', 'name', 'Fujian Entry - Exit Inspection and Quarantine Bureau'),
(72591, 60957, 'en', 'name', 'Society for Promoting Participative Ecosystem Management'),
(72592, 60958, 'en', 'name', 'Life Care Institute of Medical Sciences & Research'),
(72593, 60959, 'en', 'name', 'Asheville Hematology & Oncology'),
(72594, 60960, 'en', 'name', 'Institute of Virology, Vaccines and Sera ā€œTorlakā€'),
(72595, 60961, 'no_lang_code', 'name', 'BHR Pharmaceuticals (United Kingdom)'),
(72596, 60962, 'en', 'name', 'Histiocyte Society'),
(72597, 60963, 'en', 'name', 'United Negro College Fund'),
(72598, 60964, 'no_lang_code', 'name', 'Centraal Ziekenfonds (Netherlands)'),
(72599, 60965, 'en', 'name', 'HSHS St. Nicholas Hospital'),
(72600, 60966, 'en', 'name', 'Institute for Personal Excellence'),
(72601, 60967, 'no_lang_code', 'name', 'Bauerfeind (Netherlands)'),
(72602, 60968, 'de', 'name', 'Fachkrankenhaus Hubertusburg'),
(72603, 60969, 'no_lang_code', 'name', 'Proximity Biosciences (United States)'),
(72604, 60970, 'en', 'name', 'University Medical Center HCMC'),
(72605, 60970, 'vi', 'name', 'Trung tĆ¢m Y tįŗæ ĐẔi hį»c Hồ ChĆ­ Minh'),
(72606, 60971, 'lt', 'name', 'Alytaus Apskrities S. Kudirkos Ligoninė'),
(72607, 60972, 'en', 'name', 'James B. and Lois R. Archer Charitable Foundation'),
(72608, 60973, 'en', 'name', 'California Medical Innovations Institute'),
(72609, 60974, 'no_lang_code', 'name', 'Ferring LƤkemedel (Sweden)'),
(72610, 60975, 'no_lang_code', 'name', 'Acarix (Denmark)'),
(72611, 60976, 'no_lang_code', 'name', 'Invictus Medical (United States)'),
(72612, 60977, 'no_lang_code', 'name', 'Zambon (Germany)'),
(72613, 60978, 'en', 'name', 'Bell County Public Health District'),
(72614, 60979, 'en', 'name', 'Psychiatric Association of Turkey'),
(72615, 60979, 'tr', 'name', 'Türkiye Psikiyatri Derneği'),
(72616, 60980, 'pt', 'name', 'Hospital TotalCor'),
(72617, 60981, 'no_lang_code', 'name', 'GP Pharm (Spain)'),
(72618, 60982, 'en', 'name', 'Athens Orthopedic Clinic'),
(72619, 60983, 'en', 'name', 'Rocky Mountain Multiple Sclerosis Clinic'),
(72620, 60984, 'de', 'name', 'UniversitƤts Kinder Frauenzentrum'),
(72621, 60985, 'en', 'name', 'National Association of Women Judges'),
(72622, 60986, 'en', 'name', 'Nepalese Psychological Association'),
(72623, 60987, 'en', 'name', 'Bay Area Breast Surgeons'),
(72624, 60988, 'en', 'name', 'Dandenong Ranges Music Council'),
(72625, 60989, 'no_lang_code', 'name', 'Boehringer Ingelheim (Finland)'),
(72626, 60990, 'es', 'name', 'Corporación Universitaria para el Desarrollo de Internet'),
(72627, 60991, 'nl', 'name', 'Nederlandse Ski Vereniging'),
(72628, 60992, 'en', 'name', 'Clearwater Valley Hospital and Clinics'),
(72629, 60993, 'no_lang_code', 'name', 'Universal Cells (United States)'),
(72630, 60994, 'en', 'name', 'Kaiser Permanente Lone Tree Medical Offices'),
(72631, 60995, 'de', 'name', 'Augenstern'),
(72632, 60996, 'en', 'name', 'NACE International'),
(72633, 60997, 'de', 'name', 'Heidelberger Institut für Radioonkologie'),
(72634, 60998, 'no_lang_code', 'name', 'Heat Transfer Research (United States)'),
(72635, 60999, 'en', 'name', 'Providence Holy Cross Medical Center'),
(72636, 61000, 'en', 'name', 'Slocum Research and Education Foundation'),
(72637, 61001, 'pt', 'name', 'Fundação Saúde'),
(72638, 61002, 'en', 'name', 'Aboriginal Health and Medical Research Council of New South Wales'),
(72639, 61003, 'en', 'name', 'Australian Southern Bluefin Tuna Industry Association'),
(72640, 61004, 'en', 'name', 'Children’s Aid Society'),
(72641, 61005, 'en', 'name', 'AGIS'),
(72642, 61006, 'en', 'name', 'Nutritional Research Foundation'),
(72643, 61007, 'fr', 'name', 'EurasantƩ'),
(72644, 61008, 'en', 'name', 'Pan Am Clinic'),
(72645, 61009, 'en', 'name', 'Public institution Respublikinė Šiauliai Hospital'),
(72646, 61010, 'en', 'name', 'Lung Institute'),
(72647, 61011, 'en', 'name', 'Shandong Provincial Institute of Dermatology and Venereology'),
(72648, 61011, 'zh', 'name', 'å±±äøœēœēš®č‚¤ę€§ē—…ē ”ē©¶ę‰€'),
(72649, 61012, 'en', 'name', 'Henry Ford Macomb Hospital'),
(72650, 61013, 'en', 'name', 'Memorial Healthcare System'),
(72651, 61014, 'en', 'name', 'Koliber Biosciences'),
(72652, 61015, 'en', 'name', 'Tasmanian Salmonid Growers Association'),
(72653, 61016, 'no_lang_code', 'name', 'SeneCura Kliniken und Heime (Austria)'),
(72654, 61017, 'no_lang_code', 'name', 'Advanced Medical Solutions (Germany)'),
(72655, 61018, 'en', 'name', 'The Eisner Foundation'),
(72656, 61019, 'en', 'name', 'Vince Lombardi Cancer Clinic'),
(72657, 61020, 'no_lang_code', 'name', 'Health Outcomes Solutions (United States)'),
(72658, 61021, 'fr', 'name', 'Association des MƩdecins d''Urgence du QuƩbec'),
(72659, 61022, 'es', 'name', 'Hospitales Regionales de Alta Especialidad'),
(72660, 61023, 'en', 'name', 'Orlovsky Oncology Dispensary'),
(72661, 61024, 'nl', 'name', 'Nieuwegein Fonds'),
(72662, 61025, 'en', 'name', 'Pediatric Hospital of Sinaloa'),
(72663, 61026, 'en', 'name', 'Academic Center for Evidence-Based Sports Medicine'),
(72664, 61027, 'en', 'name', 'San Francisco Medical Society'),
(72665, 61028, 'en', 'name', 'Anchorage Associates in Radiation Medicine'),
(72666, 61029, 'en', 'name', 'Morrison Tech'),
(72667, 61030, 'no', 'name', 'Landsforeningen Uventet BarnedĆød'),
(72668, 61031, 'en', 'name', 'Norwegian Medicines Agency'),
(72669, 61031, 'no', 'name', 'Statens Legemiddelverk'),
(72670, 61032, 'en', 'name', 'St. Gallen Oncology Conferences'),
(72671, 61033, 'no_lang_code', 'name', 'Zhejiang Yongning Pharma (China)'),
(72672, 61034, 'en', 'name', 'Institute for Rehabilitation and Research Foundation'),
(72673, 61035, 'en', 'name', 'Polk Bros. Foundation'),
(72674, 61036, 'en', 'name', 'Jackson-Madison County General Hospital'),
(72675, 61037, 'en', 'name', 'Oklahoma Cancer Specialists and Research Institute'),
(72676, 61038, 'nl', 'name', 'Omring'),
(72677, 61039, 'no_lang_code', 'name', 'Cromsource (Netherlands)'),
(72678, 61040, 'de', 'name', 'Age Stiftung'),
(72679, 61041, 'nl', 'name', 'Multiple Sclerose Vereniging Nederland'),
(72680, 61042, 'en', 'name', 'Samara City N.I. Pirogov Clinical Hospital ā„–1'),
(72681, 61042, 'ru', 'name', 'Дамара Š.И. ŠŸŠøŃ€Š¾Š³Š¾Š²ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–1'),
(72682, 61043, 'no_lang_code', 'name', 'Drs. Fine, Hoffman & Sims'),
(72683, 61044, 'bg', 'name', 'Š¤Š¾Š½Š“Š°Ń†ŠøŃ "ЗГраве Šø социално развитие"'),
(72684, 61044, 'en', 'name', 'Health and Social Development Foundation'),
(72685, 61045, 'en', 'name', 'Slovenian Society of Anaesthesiology and Intensive Care Medicine'),
(72686, 61045, 'sl', 'name', 'Slovensko združenje za anesteziologijo in intenzivno medicino'),
(72687, 61046, 'en', 'name', 'Hattiesburg Clinic'),
(72688, 61047, 'no_lang_code', 'name', 'Icon (United States)'),
(72689, 61048, 'en', 'name', 'Moriggia Pelascini Hospital'),
(72690, 61048, 'it', 'name', 'Ospedale Moriggia Pelascini'),
(72691, 61049, 'en', 'name', 'Multiple Sclerosis Research Institute'),
(72692, 61050, 'en', 'name', 'Belgian Society for Pediatric Gastroenterology Hepatology and Nutrition'),
(72693, 61051, 'en', 'name', 'Oslo Sports Trauma Research Center'),
(72694, 61051, 'no', 'name', 'Senter for Idrettsskadeforskning'),
(72695, 61052, 'en', 'name', 'Kaiser Permanente San Marcos Medical Offices'),
(72696, 61053, 'fr', 'name', 'Espoir pour la Sante'),
(72697, 61054, 'en', 'name', 'Columbus Ophthalmology Associates'),
(72698, 61055, 'no_lang_code', 'name', 'SLA Pharma (United Kingdom)'),
(72699, 61056, 'en', 'name', 'Institute for Research and Evaluation'),
(72700, 61057, 'de', 'name', 'Salus Klinik'),
(72701, 61058, 'de', 'name', 'Helios Kliniken Schwerin'),
(72702, 61058, 'en', 'name', 'Helios Hospital Schwerin'),
(72703, 61059, 'nl', 'name', 'Bouman GGZ, Bouman Geestelijke Gezondheidszorg'),
(72704, 61060, 'no_lang_code', 'name', 'MediRisk (Netherlands)'),
(72705, 61061, 'es', 'name', 'Hospital Universitario Quirónsalud Madrid'),
(72706, 61062, 'no_lang_code', 'name', 'Bausch & Lomb (France)'),
(72707, 61063, 'en', 'name', 'Salgado Institute of Integral Health'),
(72708, 61063, 'pt', 'name', 'Instituto Salgado de SaĆŗde Integral'),
(72709, 61064, 'en', 'name', 'Giant Screen Cinema Association'),
(72710, 61065, 'no_lang_code', 'name', 'Sachtleben (Germany)'),
(72711, 61066, 'en', 'name', 'Central Park West Health Center'),
(72712, 61067, 'no_lang_code', 'name', 'The eNose (Netherlands)'),
(72713, 61068, 'en', 'name', 'Franciscan Health Indianapolis'),
(72714, 61069, 'en', 'name', 'Vimhans PrimaMed Super Speciality Hospital'),
(72715, 61070, 'no_lang_code', 'name', 'iSono Health (United States)'),
(72716, 61071, 'en', 'name', 'Eastern Connecticut Hematology and Oncology Associates'),
(72717, 61072, 'en', 'name', 'OSU-University Multispectral Laboratories'),
(72718, 61073, 'sv', 'name', 'Gorthonstiftelsen'),
(72719, 61074, 'en', 'name', 'Swedish Nutrition Foundation'),
(72720, 61075, 'no_lang_code', 'name', 'Thanyarak Institute'),
(72721, 61075, 'th', 'name', 'ąø§ąø±ąø•ąø“ąøŖąø–ąø²ąøšąø±ąø™ąø˜ąø±ąøąøąø²ąø£ąø±ąøąø©ą¹Œ'),
(72722, 61076, 'en', 'name', 'Oncology Institute of Vojvodina'),
(72723, 61076, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за онкологију Š’Š¾Ń˜Š²Š¾Š“ŠøŠ½Šµ'),
(72724, 61077, 'de', 'name', 'Ambulantes Reha-Zentrum Berlin Adlershof'),
(72725, 61077, 'en', 'name', 'Ambulatory Rehabilitation Center Berlin Adlershof'),
(72726, 61078, 'en', 'name', 'Australia and New Zealand Melanoma Trials Group'),
(72727, 61079, 'de', 'name', 'Sächsisches Staatsministerium für Soziales und Verbraucherschutz'),
(72728, 61080, 'en', 'name', 'Clinical Research Atlanta'),
(72729, 61081, 'de', 'name', 'Klinik Kƶnig-Ludwig Haus'),
(72730, 61082, 'bg', 'name', 'Университетска специализирана болница за активно лечение по ŠµŠ½Š“Š¾ŠŗŃ€ŠøŠ½Š¾Š»Š¾Š³ŠøŃ'),
(72731, 61082, 'en', 'name', 'University Specialized Hospital for Active Treatment of Endocrinology'),
(72732, 61083, 'en', 'name', 'Starnberg Hospital'),
(72733, 61084, 'de', 'name', 'Deutsche Gesellschaft für Ultraschall in der Medizin'),
(72734, 61085, 'en', 'name', 'Plough Foundation'),
(72735, 61086, 'pt', 'name', 'Androfert'),
(72736, 61087, 'no_lang_code', 'name', 'International Drug Agency for Pharmaceutical Industry (Egypt)'),
(72737, 61088, 'de', 'name', 'Hildegard-Grunow-Stiftung'),
(72738, 61088, 'en', 'name', 'Hildegard Grunow Foundation'),
(72739, 61089, 'en', 'name', 'College of Pharmacists of British Columbia'),
(72740, 61090, 'en', 'name', 'AnMed Health'),
(72741, 61091, 'es', 'name', 'Instituto de Tecnologƭa CerƔmica'),
(72742, 61092, 'no_lang_code', 'name', 'Tricolast (Belgium)'),
(72743, 61093, 'de', 'name', 'Katholisches Krankenhaus St. Johann Nepomuk'),
(72744, 61094, 'en', 'name', 'Tallahassee Cancer Institute'),
(72745, 61095, 'en', 'name', 'Stanford Health Care'),
(72746, 61096, 'de', 'name', 'Helios Klinik Hagen Ambrock'),
(72747, 61097, 'en', 'name', 'Western NSW Local Health District'),
(72748, 61098, 'it', 'name', 'Azienda Sanitaria Locale di Asti'),
(72749, 61099, 'nl', 'name', 'Landsteiner Instituut'),
(72750, 61100, 'no_lang_code', 'name', 'SonoVol (United States)'),
(72751, 61101, 'en', 'name', 'Icon Early Phase Services'),
(72752, 61102, 'en', 'name', 'Oregon Law Center'),
(72753, 61103, 'nl', 'name', 'Dokter Izak Wessel Stichting'),
(72754, 61104, 'en', 'name', 'Chaitanya Hospital And Nursing Home'),
(72755, 61105, 'en', 'name', 'Central Research and Design Institute'),
(72756, 61105, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(72757, 61106, 'en', 'name', 'University High School'),
(72758, 61107, 'no_lang_code', 'name', 'Q-State Biosciences (United States)'),
(72759, 61108, 'no_lang_code', 'name', 'Medico-Academic Consultings (Germany)'),
(72760, 61109, 'no_lang_code', 'name', 'Efamol (United Kingdom)'),
(72761, 61110, 'de', 'name', 'Würzburger Institut für Verkehrswissenschaften'),
(72762, 61110, 'no_lang_code', 'name', 'Würzburg Institute for Traffic Sciences (Germany)'),
(72763, 61111, 'no_lang_code', 'name', 'Otsuka (Indonesia)'),
(72764, 61112, 'no_lang_code', 'name', 'MDxHealth (Netherlands)'),
(72765, 61113, 'fr', 'name', 'Institut Emergences'),
(72766, 61114, 'de', 'name', 'Klinikum am Weissenhof'),
(72767, 61115, 'de', 'name', 'Bundeswehrkrankenhaus'),
(72768, 61116, 'nl', 'name', 'Ergotherapie Nederland, Nederlandse Vereniging van Ergotherapie'),
(72769, 61117, 'en', 'name', 'UNM Children''s Hospital'),
(72770, 61118, 'en', 'name', 'Charlotte Sports Medicine Institute'),
(72771, 61119, 'nl', 'name', 'Regio Gooi en Vechtstreek'),
(72772, 61120, 'en', 'name', 'St. Josefs-Hospital Cloppenburg'),
(72773, 61121, 'en', 'name', 'Ishar Multicultural Women''s Health Centre'),
(72774, 61122, 'de', 'name', 'Kliniken des Bezirks Oberbayern'),
(72775, 61123, 'en', 'name', 'Kawaiisu Language and Cultural Center'),
(72776, 61124, 'en', 'name', 'Lifelong Vision Foundation'),
(72777, 61125, 'en', 'name', 'Plastic Surgery Institute of San Francisco'),
(72778, 61126, 'en', 'name', 'Shandong University of Political Science and Law'),
(72779, 61126, 'zh', 'name', 'å±±äøœę”æę³•å­¦é™¢'),
(72780, 61127, 'en', 'name', 'Doris Miller Department of Veterans Affairs Medical Center'),
(72781, 61128, 'de', 'name', 'Sana Klinikum'),
(72782, 61129, 'es', 'name', 'Hospital HLA MediterrƔneo'),
(72783, 61130, 'de', 'name', 'Poliklinik für Zahnärztliche Prothetik mit Propädeutik'),
(72784, 61131, 'en', 'name', 'The Nurture Nature Foundation'),
(72785, 61132, 'no_lang_code', 'name', 'Haemonetics (Netherlands)'),
(72786, 61133, 'no_lang_code', 'name', 'Burning Rock Biotech (China)'),
(72787, 61134, 'en', 'name', 'Hematology Oncology Consultants'),
(72788, 61135, 'no_lang_code', 'name', 'Spaulding Clinical Research (United States)'),
(72789, 61136, 'en', 'name', 'Critical Illness & Trauma Foundation'),
(72790, 61137, 'no_lang_code', 'name', 'Hubei Bio Pharmaceutical Industry Technology Institute (China)'),
(72791, 61138, 'en', 'name', 'Palm Beach Neurology'),
(72792, 61139, 'en', 'name', 'Against Violence & Abuse'),
(72793, 61140, 'en', 'name', 'Parkwood Institute'),
(72794, 61141, 'nl', 'name', 'Stichting Warande'),
(72795, 61142, 'en', 'name', 'Eye Center of North Florida'),
(72796, 61143, 'en', 'name', 'NeuroSpine Institute'),
(72797, 61144, 'de', 'name', 'BDH Bundesverband Rehabilitation'),
(72798, 61145, 'es', 'name', 'Sociedad EspaƱola de Trombosis y Hemostasia'),
(72799, 61146, 'de', 'name', 'BundesƤrztekammer'),
(72800, 61146, 'en', 'name', 'German Medical Association'),
(72801, 61147, 'en', 'name', 'The Core Institute'),
(72802, 61148, 'en', 'name', 'Clinical Research Services'),
(72803, 61149, 'da', 'name', 'Statens Museum for Kunst'),
(72804, 61149, 'en', 'name', 'National Gallery of Denmark'),
(72805, 61150, 'lv', 'name', 'Agroresursu un ekonomikas institūts'),
(72806, 61151, 'no_lang_code', 'name', 'Marinomed Biotech (Austria)'),
(72807, 61152, 'no_lang_code', 'name', 'LMC Diabetes & Endocrinology (Canada)'),
(72808, 61153, 'it', 'name', 'Clinica Odontoiatrica Salzano Tirone'),
(72809, 61154, 'no_lang_code', 'name', 'Acadia Harvest (United States)'),
(72810, 61155, 'en', 'name', 'Christiana Gynecologic Oncology'),
(72811, 61156, 'de', 'name', 'Dermatologie Freiburg'),
(72812, 61157, 'en', 'name', 'Metropolitan Educational Cooperative Service Unit'),
(72813, 61158, 'en', 'name', 'Foundation Institute for Regional Development'),
(72814, 61158, 'pl', 'name', 'Fundacja Instytut Rozwoju Regionalnego'),
(72815, 61159, 'en', 'name', 'Orthopaedic Specialty Clinic'),
(72816, 61160, 'no_lang_code', 'name', 'Empire Clinical Research (United States)'),
(72817, 61161, 'en', 'name', 'Zhangzhou Municipal Hospital of Fujian Province'),
(72818, 61161, 'zh', 'name', 'ē¦å»ŗēœę¼³å·žåø‚åŒ»é™¢'),
(72819, 61162, 'no_lang_code', 'name', 'Haider Bioswing (Germany)'),
(72820, 61163, 'en', 'name', 'Community Health Center of Franklin County'),
(72821, 61164, 'nl', 'name', 'Ipse de Bruggen'),
(72822, 61165, 'en', 'name', 'NTL Institute for Applied Behavioral Science'),
(72823, 61166, 'no_lang_code', 'name', 'Targeted Medical Pharma (United States)'),
(72824, 61167, 'en', 'name', 'Angeles Clinic and Research Institute'),
(72825, 61168, 'en', 'name', 'American Academy of Orthopaedic Manual Physical Therapists'),
(72826, 61169, 'en', 'name', 'Southeast Nebraska Cancer Center'),
(72827, 61170, 'en', 'name', 'Foundation Centrum ''45'),
(72828, 61170, 'nl', 'name', 'Stichting Centrum ''45'),
(72829, 61171, 'no_lang_code', 'name', 'CTI BioPharma (United Kingdom)'),
(72830, 61172, 'en', 'name', 'Milton J. Rubenstein Museum of Science and Technology'),
(72831, 61173, 'de', 'name', 'Forschungsinstitut der Diabetes Akademie Mergentheim'),
(72832, 61174, 'en', 'name', 'Iron Disorders Institute'),
(72833, 61175, 'nl', 'name', 'Laurens'),
(72834, 61176, 'no_lang_code', 'name', 'Polnox (United States)'),
(72835, 61177, 'en', 'name', 'NewPath Research'),
(72836, 61178, 'pt', 'name', 'Hospital UniversitƔrio Walter Cantƭdio'),
(72837, 61179, 'de', 'name', 'Luisenkrankenhaus'),
(72838, 61180, 'fr', 'name', 'Clinique Saint Jean'),
(72839, 61181, 'de', 'name', 'Marienkrankenhaus Kassel'),
(72840, 61182, 'en', 'name', 'Group Health Centre'),
(72841, 61183, 'en', 'name', 'Western Illinois Cancer Treatment Center'),
(72842, 61184, 'no_lang_code', 'name', 'Applied Science Associates (United States)'),
(72843, 61185, 'en', 'name', 'West Suburban Medical Center'),
(72844, 61186, 'de', 'name', 'Krankenhaus MƤrkisch-Oderland'),
(72845, 61186, 'en', 'name', 'Hospital MƤrkisch-Oderland'),
(72846, 61187, 'en', 'name', 'The Stern Cardiovascular Foundation'),
(72847, 61188, 'en', 'name', 'South Coast Medical Service Aboriginal Corporation'),
(72848, 61189, 'nl', 'name', 'Stichting Kinderpostzegels Nederland'),
(72849, 61190, 'en', 'name', 'American Pulse Association'),
(72850, 61191, 'en', 'name', 'Children''s Health Council'),
(72851, 61192, 'de', 'name', 'rgb Onkologisches Management'),
(72852, 61193, 'es', 'name', 'Diagnostico MaipĆŗ'),
(72853, 61194, 'en', 'name', 'Carolina Headache Institute'),
(72854, 61195, 'en', 'name', 'Society for Vascular Surgery'),
(72855, 61196, 'no_lang_code', 'name', 'Stichting Handbike Events'),
(72856, 61197, 'en', 'name', 'Lymphoma Research Trust'),
(72857, 61198, 'en', 'name', 'Island Resources Foundation'),
(72858, 61199, 'en', 'name', 'Surgical Associates of Neenah'),
(72859, 61200, 'en', 'name', 'Jefferson County Health Center'),
(72860, 61201, 'nl', 'name', 'IrisZorg'),
(72861, 61202, 'no_lang_code', 'name', '480 Biomedical (United States)'),
(72862, 61203, 'no_lang_code', 'name', 'Swedish Orphan Biovitrum (United States)'),
(72863, 61204, 'en', 'name', 'Bloomhill Cancer Care'),
(72864, 61205, 'no_lang_code', 'name', 'Water-Jel Technologies (United Kingdom)'),
(72865, 61206, 'en', 'name', 'Canadian Precast Prestressed Concrete Institute'),
(72866, 61207, 'de', 'name', 'Klinik und Poliklinik für Psychosomatische Medizin und Psychotherapie'),
(72867, 61208, 'en', 'name', 'The Mayer Institute'),
(72868, 61209, 'en', 'name', 'Center for Teaching Thinking'),
(72869, 61210, 'no_lang_code', 'name', 'Cool Down (Switzerland)'),
(72870, 61211, 'en', 'name', 'Ontario Ginseng Growers Association'),
(72871, 61212, 'ca', 'name', 'Institut CatalĆ  de Traumatologia i Medicina de l''Esport'),
(72872, 61212, 'en', 'name', 'Catalan Institute of Traumatology and Sports Medicine'),
(72873, 61213, 'en', 'name', 'Vince Lombardi Cancer Clinic'),
(72874, 61214, 'en', 'name', 'Metropolitan Washington Council of Governments'),
(72875, 61215, 'de', 'name', 'Kompetenznetz Darmerkrankungen'),
(72876, 61216, 'en', 'name', 'Asia Diabetes Foundation'),
(72877, 61216, 'zh', 'name', 'äŗšę“²ē³–å°æē—…åŸŗé‡‘ä¼š'),
(72878, 61217, 'no_lang_code', 'name', 'Amedon (Germany)'),
(72879, 61218, 'nl', 'name', 'Revalidatie Nederland'),
(72880, 61219, 'de', 'name', 'Berufsverband der FrauenƤrzte'),
(72881, 61220, 'de', 'name', 'OrthopƤdische UniversitƤtsklinik'),
(72882, 61221, 'en', 'name', 'TAFE Queensland Gold Coast'),
(72883, 61222, 'en', 'name', 'New York City Department for the Aging'),
(72884, 61223, 'en', 'name', 'Mexican Association for the Clinical Research'),
(72885, 61223, 'es', 'name', 'Asociación Mexicana para la Investigación Clínica'),
(72886, 61224, 'de', 'name', 'Misereor'),
(72887, 61225, 'en', 'name', 'Jinan Disabled Persons Federation');
INSERT INTO `ror_settings` VALUES
(72888, 61226, 'no_lang_code', 'name', 'Varigen Biosciences (United States)'),
(72889, 61227, 'en', 'name', 'Altru Health System'),
(72890, 61228, 'en', 'name', 'Jacaranda Community Centre'),
(72891, 61229, 'no_lang_code', 'name', 'Tomitahama Hospital'),
(72892, 61230, 'en', 'name', 'The Econometric Society'),
(72893, 61231, 'fr', 'name', 'Clinique du Sport'),
(72894, 61232, 'en', 'name', 'Schwartz Laser Eye Center'),
(72895, 61233, 'en', 'name', 'Association of Black Cardiologists'),
(72896, 61234, 'en', 'name', 'Albert Einstein Academy'),
(72897, 61235, 'en', 'name', 'Tasmania Mures'),
(72898, 61236, 'no_lang_code', 'name', 'Curetis (Germany)'),
(72899, 61237, 'en', 'name', 'Hazleton Eye Specialists'),
(72900, 61238, 'en', 'name', 'Elmhurst Memorial Hospital'),
(72901, 61239, 'nl', 'name', 'De Twentse Zorgcentra'),
(72902, 61240, 'en', 'name', 'Beebe Healthcare'),
(72903, 61241, 'no_lang_code', 'name', 'Seguros Caracas Liberty Mutual (Venezuela)'),
(72904, 61242, 'en', 'name', 'Ministry of the Interior'),
(72905, 61242, 'et', 'name', 'Eesti Siseministeerium'),
(72906, 61243, 'no_lang_code', 'name', 'CrossLife Technologies (United States)'),
(72907, 61244, 'no_lang_code', 'name', 'Health Fidelity (United States)'),
(72908, 61245, 'en', 'name', 'Transcare'),
(72909, 61246, 'es', 'name', 'Instituto MƩdico DAMIC'),
(72910, 61247, 'no_lang_code', 'name', 'Ciclo de Mutação (Brazil)'),
(72911, 61248, 'no_lang_code', 'name', 'Clinstile (Mexico)'),
(72912, 61249, 'en', 'name', 'Israeli Yoga Teachers Association'),
(72913, 61249, 'he', 'name', '××Ø×’×•×Ÿ ×ž×•×Ø×™ היוגה ×‘×™×©×Ø××œ'),
(72914, 61250, 'no_lang_code', 'name', 'Biosearch Life (Spain)'),
(72915, 61251, 'no_lang_code', 'name', 'Origin Sciences (United Kingdom)'),
(72916, 61252, 'en', 'name', 'Western Rock Lobster Council'),
(72917, 61253, 'en', 'name', 'International Hyperbaric Medical Foundation'),
(72918, 61254, 'no_lang_code', 'name', 'Digital Artefacts (United States)'),
(72919, 61255, 'en', 'name', 'Andalusian Institute of Sexology and Psychology'),
(72920, 61255, 'es', 'name', 'Instituto Andaluz de SexologĆ­a y PsicologĆ­a'),
(72921, 61256, 'fi', 'name', 'Philips Oy'),
(72922, 61256, 'no_lang_code', 'name', 'Philips (Finland)'),
(72923, 61257, 'en', 'name', 'Buehler Challenger & Science Center'),
(72924, 61258, 'en', 'name', 'HighScope'),
(72925, 61259, 'no_lang_code', 'name', 'Altasciences (Canada)'),
(72926, 61260, 'en', 'name', 'Jones Institute'),
(72927, 61261, 'en', 'name', 'Manhattan Physical Medicine and Rehabilitation'),
(72928, 61262, 'no_lang_code', 'name', 'The Johrei Institute'),
(72929, 61263, 'en', 'name', 'Saint Alphonsus Medical Center'),
(72930, 61264, 'en', 'name', 'Center for Human Genetics'),
(72931, 61265, 'en', 'name', 'Clinica Gastrobese'),
(72932, 61266, 'en', 'name', 'Institute for Community Health'),
(72933, 61267, 'de', 'name', 'Informationszentrum für Sexualität und Gesundheit'),
(72934, 61268, 'en', 'name', 'Mental Health Foundation'),
(72935, 61269, 'en', 'name', 'Guangxi Buffalo Research Institute'),
(72936, 61270, 'no_lang_code', 'name', 'Vimta (India)'),
(72937, 61271, 'fr', 'name', 'SociƩtƩ FranƧaise d''Endoscopie Digestive'),
(72938, 61272, 'no_lang_code', 'name', 'Lumos Labs (United States)'),
(72939, 61273, 'en', 'name', 'Setting Scoliosis Straight Foundation'),
(72940, 61274, 'no_lang_code', 'name', 'VDL Groep (Netherlands)'),
(72941, 61275, 'en', 'name', 'Dermatological Center Dona Libânia'),
(72942, 61275, 'pt', 'name', 'Instituto de Dermatologia Dona Libania'),
(72943, 61276, 'no_lang_code', 'name', 'MizMedi Hospital'),
(72944, 61277, 'no_lang_code', 'name', 'Emmedi (Italy)'),
(72945, 61278, 'en', 'name', 'Alliance Against Diabetes'),
(72946, 61279, 'de', 'name', 'Psychologische Praxengemeinschaft'),
(72947, 61280, 'en', 'name', 'Marine Discovery Centre'),
(72948, 61281, 'en', 'name', 'Waverly Hematology Oncology'),
(72949, 61282, 'de', 'name', 'Deutsche Gesellschaft für Psychoanalyse, Psychotherapie, Psychosomatik und Tiefenpsychologie'),
(72950, 61283, 'no_lang_code', 'name', 'LIV Pharma (Germany)'),
(72951, 61284, 'pt', 'name', 'Instituto de Cardiologia do Distrito Federal'),
(72952, 61285, 'no_lang_code', 'name', 'Akervall Technologies (United States)'),
(72953, 61286, 'en', 'name', 'New Brunswick Pharmacists’ Association'),
(72954, 61287, 'en', 'name', 'ALS Finding a Cure'),
(72955, 61288, 'en', 'name', 'St. Catherine Hospital'),
(72956, 61289, 'en', 'name', 'Humboldt Independent Practice Association'),
(72957, 61290, 'es', 'name', 'Sociedad Española de Periodoncia y Osteointegración'),
(72958, 61291, 'fr', 'name', 'AcadƩmie de Paris'),
(72959, 61292, 'en', 'name', 'Angeline Elizabeth Kirby Memorial Health Center'),
(72960, 61293, 'en', 'name', 'Irish Nutrition & Dietetic Institute'),
(72961, 61294, 'en', 'name', 'Sight and Life'),
(72962, 61295, 'no_lang_code', 'name', 'Roche (Czechia)'),
(72963, 61296, 'en', 'name', 'Los Angeles Council of Black Professional Engineers'),
(72964, 61297, 'en', 'name', 'Inamed'),
(72965, 61298, 'en', 'name', 'University Industry Demonstration Partnership'),
(72966, 61299, 'nl', 'name', 'Zeeuws Hand & Pols Centrum'),
(72967, 61300, 'en', 'name', 'Erie Family Health Center'),
(72968, 61301, 'en', 'name', 'TerrainWorks'),
(72969, 61302, 'en', 'name', 'Influenza Foundation of Thailand'),
(72970, 61302, 'th', 'name', 'ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ąøŖą¹ˆąø‡ą¹€ąøŖąø“ąø£ąø”ąøąø²ąø£ąøØąø¶ąøąø©ąø²ą¹„ąø‚ą¹‰ąø«ąø§ąø±ąø”ą¹ƒąø«ąøą¹ˆ'),
(72971, 61303, 'no_lang_code', 'name', 'Alimera Sciences (Germany)'),
(72972, 61304, 'en', 'name', 'German Inflammatory Bowel Diseases Study Group'),
(72973, 61305, 'en', 'name', 'SPRINT'),
(72974, 61306, 'en', 'name', 'Rochester Engineering Society'),
(72975, 61307, 'de', 'name', 'Centrum für Operative Urologie Bremen'),
(72976, 61308, 'en', 'name', 'Zhengzhou Children''s Hospital'),
(72977, 61308, 'zh', 'name', 'ę²³å—ēœå„æē«„åŒ»é™¢'),
(72978, 61309, 'en', 'name', 'AlterMed Research Foundation'),
(72979, 61310, 'en', 'name', 'Austin Speech Labs'),
(72980, 61311, 'en', 'name', 'West Cancer Center'),
(72981, 61312, 'no_lang_code', 'name', 'KCI (Netherlands)'),
(72982, 61313, 'en', 'name', 'Genetic Information Research Institute'),
(72983, 61314, 'en', 'name', 'Springfield Regional Medical Center'),
(72984, 61315, 'nl', 'name', 'Stichting De Opbouw'),
(72985, 61316, 'en', 'name', 'Clinical Alliance for Research and Education-Infectious Diseases'),
(72986, 61317, 'no_lang_code', 'name', 'MaxQ (United States)'),
(72987, 61318, 'no_lang_code', 'name', 'Provivi (United States)'),
(72988, 61319, 'en', 'name', 'Vidant Beaufort Hospital'),
(72989, 61320, 'no_lang_code', 'name', 'Orochemie (Germany)'),
(72990, 61321, 'no_lang_code', 'name', 'Glaxosmithkline (Finland)'),
(72991, 61322, 'no_lang_code', 'name', 'ThedaCare'),
(72992, 61323, 'en', 'name', 'The Seattle Institute for Cardiac Research'),
(72993, 61324, 'en', 'name', 'Highlands Oncology Group'),
(72994, 61325, 'nl', 'name', 'Stichting Zorgondersteuningsfonds'),
(72995, 61326, 'no_lang_code', 'name', 'TheraTears (United States)'),
(72996, 61327, 'no_lang_code', 'name', 'Novasep (Belgium)'),
(72997, 61328, 'en', 'name', 'Indianapolis Zoo'),
(72998, 61329, 'no_lang_code', 'name', 'Rite Aid (United States)'),
(72999, 61330, 'en', 'name', 'American Water Resources Association'),
(73000, 61331, 'no_lang_code', 'name', 'Vantage View (United States)'),
(73001, 61332, 'no_lang_code', 'name', 'Sunstream Scientific (United States)'),
(73002, 61333, 'no_lang_code', 'name', 'Juzo (Germany)'),
(73003, 61334, 'en', 'name', 'Clinical Research Organization'),
(73004, 61335, 'en', 'name', 'Kunming Metallurgical Research Institute'),
(73005, 61335, 'zh', 'name', 'ę˜†ę˜Žå†¶é‡‘ē ”ē©¶ę‰€'),
(73006, 61336, 'en', 'name', 'Conquer Chiari'),
(73007, 61337, 'en', 'name', 'Atrium Medical Cente'),
(73008, 61338, 'en', 'name', 'Miami Dermatology and Laser Institute'),
(73009, 61339, 'de', 'name', 'BARMER GEK'),
(73010, 61340, 'es', 'name', 'Grupo Español de CÔncer de Pulmón'),
(73011, 61341, 'nl', 'name', 'Oostvaarderskliniek'),
(73012, 61342, 'en', 'name', 'Children’s Institute'),
(73013, 61343, 'en', 'name', 'Korean Society of Interventional Cardiology'),
(73014, 61343, 'ko', 'name', 'ėŒ€ķ•œģ‹¬ķ˜ˆź“€ģ¤‘ģž¬ķ•™ķšŒ'),
(73015, 61344, 'en', 'name', 'Maruyama Memorial General Hospital'),
(73016, 61344, 'ja', 'name', 'äøøå±±čØ˜åæµē·åˆē—…é™¢'),
(73017, 61345, 'fr', 'name', 'Association pour la Recherche en Physiologie de l’Environnement'),
(73018, 61346, 'en', 'name', 'Saviour Hospital'),
(73019, 61347, 'it', 'name', 'CINFAI, Consorzio Interuniversitario Nazionale per la Fisica delle Atmosfere e delle Idrosfere'),
(73020, 61348, 'en', 'name', 'Banner Thunderbird Medical Center'),
(73021, 61349, 'en', 'name', 'Middle East Institute'),
(73022, 61350, 'en', 'name', 'Tianjin Product Quality Supervision and Testing Technology Institute'),
(73023, 61350, 'zh', 'name', 'å¤©ę“„äŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒęŠ€ęœÆē ”ē©¶ę‰€'),
(73024, 61351, 'en', 'name', 'Metropolitan Jewish Health System'),
(73025, 61352, 'en', 'name', 'Tennessee Cancer Specialists'),
(73026, 61353, 'en', 'name', 'Alabama Clincal Therapeutics'),
(73027, 61354, 'no_lang_code', 'name', 'BIRR (Netherlands)'),
(73028, 61355, 'en', 'name', 'Second Hospital of Tangshan'),
(73029, 61356, 'en', 'name', 'Mary Greeley Medical Center'),
(73030, 61357, 'nl', 'name', 'GGz centraal'),
(73031, 61358, 'no_lang_code', 'name', 'Maywufa (Taiwan)'),
(73032, 61359, 'en', 'name', 'Taizhou Fourth People''s Hospital'),
(73033, 61359, 'zh', 'name', 'ęø©å²­åø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(73034, 61360, 'en', 'name', 'The Tor Project'),
(73035, 61361, 'en', 'name', 'Alaska Women''s Cancer Care'),
(73036, 61362, 'no_lang_code', 'name', 'Ypsomed (Germany)'),
(73037, 61363, 'de', 'name', 'Asklepios Fachklinikum Tiefenbrunn'),
(73038, 61364, 'en', 'name', 'Oncological Institute of the Republic of Moldova'),
(73039, 61364, 'ro', 'name', 'Institutul Oncologic din Republica Moldova'),
(73040, 61365, 'en', 'name', 'State Clinical Hospital "Clinical Oncology Center No. 1'),
(73041, 61366, 'en', 'name', 'National Science & Technology Education Partnership'),
(73042, 61367, 'nl', 'name', 'Kliniek voor Parodontologie Rotterdam'),
(73043, 61368, 'no_lang_code', 'name', 'Baxter (France)'),
(73044, 61369, 'no_lang_code', 'name', 'Santen (Finland)'),
(73045, 61370, 'en', 'name', 'Orlando Science Center'),
(73046, 61371, 'en', 'name', 'South Jordan Health Center'),
(73047, 61372, 'no_lang_code', 'name', 'InsightFinder (United States)'),
(73048, 61373, 'no_lang_code', 'name', 'GD Medical Pharma (Netherlands)'),
(73049, 61374, 'en', 'name', 'Presbyterian Kaseman Hospital'),
(73050, 61375, 'de', 'name', 'Infektionsmedizinisches Centrum Hamburg'),
(73051, 61376, 'en', 'name', 'University Diagnostic Institute'),
(73052, 61377, 'en', 'name', 'The Women’s Imaging Center'),
(73053, 61378, 'de', 'name', 'Arbeitsgemeinschaft für Krebsbekämpfung'),
(73054, 61379, 'en', 'name', 'SEAMEO Regional Center for Food and Nutrition'),
(73055, 61380, 'en', 'name', 'Kaiser Permanente Modesto Medical Center and Medical Offices'),
(73056, 61381, 'en', 'name', 'Stockholm Environment Institute'),
(73057, 61382, 'no_lang_code', 'name', 'BioInspira (United States)'),
(73058, 61383, 'it', 'name', 'Istituto di Ematologia di Bologna'),
(73059, 61384, 'en', 'name', 'British Columbia Rehabilitation Foundation'),
(73060, 61385, 'en', 'name', 'Everglades Area Health Education Center'),
(73061, 61386, 'en', 'name', 'Interuniversity Center for Educational Research'),
(73062, 61386, 'nl', 'name', 'Interuniversitair Centrum voor Onderwijswetenschappen'),
(73063, 61387, 'en', 'name', 'Self Regional Healthcare'),
(73064, 61388, 'en', 'name', 'China Metallurgical Geology Bureau'),
(73065, 61389, 'de', 'name', 'Instand'),
(73066, 61390, 'de', 'name', 'Deutsches Zentrum für Hochschul- und Wissenschaftsforschung'),
(73067, 61390, 'en', 'name', 'German Centre for Higher Education Research and Science Studies'),
(73068, 61391, 'no_lang_code', 'name', 'Insta (Finland)'),
(73069, 61392, 'no_lang_code', 'name', 'Chugai Pharma (United States)'),
(73070, 61393, 'no_lang_code', 'name', 'Histogen (United States)'),
(73071, 61394, 'en', 'name', 'Healthpoint'),
(73072, 61395, 'en', 'name', 'St. Petersburg State Medical Academy "City Hospital No. 26"'),
(73073, 61396, 'de', 'name', 'Ƅrztliche Gesellschaft zur Gesundheitsfƶrderung e.V'),
(73074, 61397, 'en', 'name', 'Huther Doyle'),
(73075, 61398, 'en', 'name', 'European Society for Intravenous Anaesthesia'),
(73076, 61399, 'no_lang_code', 'name', 'SocraTec R&D (Germany)'),
(73077, 61400, 'en', 'name', 'Moscow Research and Clinical Center for Neuropsychiatry'),
(73078, 61401, 'nl', 'name', 'Robuust'),
(73079, 61402, 'no_lang_code', 'name', 'Physical Devices (United States)'),
(73080, 61403, 'en', 'name', 'Prostate Institute of America'),
(73081, 61404, 'en', 'name', 'Food for Health Ireland'),
(73082, 61405, 'en', 'name', 'Canadian Society of Intestinal Research'),
(73083, 61406, 'en', 'name', 'Aim Foundation'),
(73084, 61407, 'de', 'name', 'Nierenzentrum Heidelberg'),
(73085, 61408, 'nl', 'name', 'Stofberg Preventie & Coaching'),
(73086, 61409, 'no_lang_code', 'name', 'Welzijnservices (Netherlands)'),
(73087, 61410, 'de', 'name', 'Klinik und Poliklinik für Psychosomatische Medizin und Psychotherapie'),
(73088, 61411, 'en', 'name', 'FamilieSCN2A Foundation'),
(73089, 61412, 'nl', 'name', 'Vanboeijen'),
(73090, 61413, 'it', 'name', 'Istituto Europeo per la Medicina Osteopatica'),
(73091, 61414, 'de', 'name', 'Sankt Gertrauden Krankenhaus'),
(73092, 61415, 'da', 'name', 'Landsforeningen VƦrn om Synet, Ƙjenforeningen'),
(73093, 61416, 'en', 'name', 'The Peter and Elizabeth C. Tower Foundation'),
(73094, 61417, 'es', 'name', 'Fundación Huésped'),
(73095, 61418, 'en', 'name', 'Saskatoon Medical Imaging'),
(73096, 61419, 'en', 'name', 'Kawerak'),
(73097, 61420, 'en', 'name', 'Dominican Women''s Development Center'),
(73098, 61421, 'en', 'name', 'Institute of Health Visiting'),
(73099, 61422, 'no_lang_code', 'name', 'AXON Neuroscience (Cyprus)'),
(73100, 61423, 'no_lang_code', 'name', 'Abbott (Austria)'),
(73101, 61424, 'en', 'name', 'Valmontone Hospital'),
(73102, 61425, 'en', 'name', 'Key-Whitman Eye Center'),
(73103, 61426, 'no_lang_code', 'name', 'Addex Therapeutics (Switzerland)'),
(73104, 61427, 'en', 'name', 'Retina Specialty Institute'),
(73105, 61428, 'de', 'name', 'Klinik und Poliklinik für Hals-Nasen-Ohren-Heilkunde'),
(73106, 61429, 'no_lang_code', 'name', 'Dar AlMaraa Center'),
(73107, 61430, 'de', 'name', 'Regio Kliniken'),
(73108, 61431, 'en', 'name', 'The Living Legacy Foundation'),
(73109, 61432, 'en', 'name', 'MidMichigan Medical Center - Midland'),
(73110, 61433, 'no_lang_code', 'name', 'Columbia Shipmanagement (Germany)'),
(73111, 61434, 'en', 'name', 'Canadian VIGOUR Centre'),
(73112, 61435, 'no_lang_code', 'name', 'N2 Biomedical (United States)'),
(73113, 61436, 'en', 'name', 'Association of Gynaecologists and Obstetricians'),
(73114, 61437, 'en', 'name', 'Rogers Behavioral Health'),
(73115, 61438, 'en', 'name', 'American Pistachio Growers'),
(73116, 61439, 'it', 'name', 'SIOTEMA'),
(73117, 61440, 'en', 'name', 'HipKnee Arkansas Foundation'),
(73118, 61441, 'en', 'name', 'Foundation for Faces of Children'),
(73119, 61442, 'en', 'name', 'Vinmec International Hospital'),
(73120, 61443, 'en', 'name', 'St. Mark''s School of Texas'),
(73121, 61444, 'no_lang_code', 'name', 'Cesra (Germany)'),
(73122, 61445, 'no_lang_code', 'name', 'Mimetogen (United States)'),
(73123, 61446, 'en', 'name', 'Kaiser Permanente Richmond Medical Center'),
(73124, 61447, 'en', 'name', 'Whiteley Clinic'),
(73125, 61448, 'no_lang_code', 'name', 'CVRx (United States)'),
(73126, 61449, 'nl', 'name', 'Dianet'),
(73127, 61450, 'en', 'name', 'Beijing Municipal Commission of Urban Planning'),
(73128, 61450, 'zh', 'name', 'åŒ—äŗ¬åø‚č§„åˆ’å’Œå›½åœŸčµ„ęŗē®”ē†å§”å‘˜ä¼š'),
(73129, 61451, 'en', 'name', 'St. Mary''s Hospital Medical Center'),
(73130, 61452, 'en', 'name', 'Kentuckiana Pulmonary Associates'),
(73131, 61453, 'no_lang_code', 'name', 'Solace Therapeutics (United States)'),
(73132, 61454, 'en', 'name', 'Jiangsu Province Blood Center'),
(73133, 61454, 'zh', 'name', 'ę±Ÿč‹ēœč”€ę¶²äø­åæƒ'),
(73134, 61455, 'no_lang_code', 'name', 'Orthogen (Germany)'),
(73135, 61456, 'en', 'name', 'Bernstein Clinical Research Center'),
(73136, 61457, 'en', 'name', 'Amateur Fishermen''s Association of the Northern Territory'),
(73137, 61458, 'en', 'name', 'Royal Dutch Athletics Federation'),
(73138, 61458, 'nl', 'name', 'Koninklijke Nederlandse Atletiek Unie'),
(73139, 61459, 'en', 'name', 'CityLab010'),
(73140, 61460, 'en', 'name', 'Orthopaedic Specialty Institute'),
(73141, 61461, 'en', 'name', 'North Carolina Office of the Governor'),
(73142, 61462, 'en', 'name', 'North Texas Regional Center for Innovation and Commercialization'),
(73143, 61463, 'en', 'name', 'Philippine Medical Association'),
(73144, 61464, 'en', 'name', 'Lunar and Planetary Institute'),
(73145, 61465, 'el', 'name', 'ĪŸĪ»ĻĪ¼Ļ€Ī¹ĪæĪ½ Ī˜ĪµĻĪ±Ļ€ĪµĻ…Ļ„Ī®ĻĪ¹Īæ Πάτρας'),
(73146, 61465, 'en', 'name', 'Patras Olympian Hospital'),
(73147, 61466, 'no_lang_code', 'name', 'Syneos Health (United States)'),
(73148, 61467, 'en', 'name', 'Research & Development Institute'),
(73149, 61468, 'en', 'name', 'Mae Fah Luang University Hospital'),
(73150, 61468, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąø”ą¹ˆąøŸą¹‰ąø²ąø«ąø„ąø§ąø‡'),
(73151, 61469, 'en', 'name', 'Gansu Provincial Agriculture and Animal Husbandry'),
(73152, 61470, 'no_lang_code', 'name', 'Boston Scientific (Germany)'),
(73153, 61471, 'no_lang_code', 'name', 'NewConceptOncology (Germany)'),
(73154, 61472, 'en', 'name', 'Olberon (United Kingdom)'),
(73155, 61473, 'no_lang_code', 'name', 'JT Pharmaceuticals (United States)'),
(73156, 61474, 'pt', 'name', 'Fundação Bahiana de Infectologia'),
(73157, 61475, 'no_lang_code', 'name', 'Accurate Clinical Management (United States)'),
(73158, 61476, 'no_lang_code', 'name', 'Boston Scientific (Belgium)'),
(73159, 61477, 'en', 'name', 'Association of Extremity Nerve Surgeons'),
(73160, 61478, 'en', 'name', 'Australian Recreational Fishing Foundation'),
(73161, 61479, 'en', 'name', 'Nanchang Normal University'),
(73162, 61479, 'zh', 'name', 'å—ę˜ŒåøˆčŒƒå­¦é™¢'),
(73163, 61480, 'nl', 'name', 'Instituut voor Positieve Psychologie'),
(73164, 61481, 'no_lang_code', 'name', 'Procter & Gamble (Netherlands)'),
(73165, 61482, 'en', 'name', 'Charleston Research Institute'),
(73166, 61483, 'ca', 'name', 'Institut CatalĆ  de Retina'),
(73167, 61483, 'en', 'name', 'Catalan Retina Institute'),
(73168, 61484, 'ca', 'name', 'Departament de Benestar i Drets Socials'),
(73169, 61485, 'en', 'name', 'Telligen'),
(73170, 61486, 'en', 'name', 'Kansas City Area Life Sciences Institute'),
(73171, 61487, 'en', 'name', 'London Eye Hospital'),
(73172, 61488, 'es', 'name', 'Sociedad EspaƱola de Endoscopia Digestiva'),
(73173, 61489, 'de', 'name', 'Monika Kutzner Stiftung'),
(73174, 61490, 'en', 'name', 'Center for International Environmental Law'),
(73175, 61491, 'de', 'name', 'Vista Klinik'),
(73176, 61492, 'en', 'name', 'Randolph Health'),
(73177, 61493, 'fr', 'name', 'PharmaSuisse'),
(73178, 61494, 'en', 'name', 'Academy of Cardiovascular Society'),
(73179, 61494, 'tr', 'name', 'Kardiyovasküler Akademi Derneği'),
(73180, 61495, 'no_lang_code', 'name', 'Eisai (Germany)'),
(73181, 61496, 'en', 'name', 'Annie Penn Hospital'),
(73182, 61497, 'pt', 'name', 'Associação Portuguesa de Hemofilia e de outras Coagulopatias Congénitas'),
(73183, 61498, 'en', 'name', 'Progressive Agriculture Foundation'),
(73184, 61499, 'en', 'name', 'Rwanda Diabetes Association'),
(73185, 61499, 'rw', 'name', 'Association Rwandaise Des Diabetiques'),
(73186, 61500, 'en', 'name', 'Florida Eye Microsurgical Institute'),
(73187, 61501, 'en', 'name', 'Methodist West Hospital'),
(73188, 61502, 'en', 'name', 'The Eve Appeal'),
(73189, 61503, 'en', 'name', 'Oysters South Australia'),
(73190, 61504, 'no_lang_code', 'name', 'Alivation (United States)'),
(73191, 61505, 'no_lang_code', 'name', 'Knox Medical Diagnostics (United States)'),
(73192, 61506, 'de', 'name', 'FWU Institut für Film und Bild in Wissenschaft und Unterricht'),
(73193, 61507, 'en', 'name', 'RUTE Foundations'),
(73194, 61508, 'en', 'name', 'Foundation for Glacier and Environmental Research'),
(73195, 61509, 'en', 'name', 'Healing Touch Worldwide Foundation'),
(73196, 61510, 'fr', 'name', 'HƓpital EuropƩen'),
(73197, 61511, 'nl', 'name', 'Treant Zorggroep'),
(73198, 61512, 'de', 'name', 'Bundesverband der HƶrgerƤte-Industrie'),
(73199, 61513, 'en', 'name', 'War Child'),
(73200, 61514, 'en', 'name', 'Shandong Entry-Exit Inspection and Quarantine Bureau'),
(73201, 61514, 'zh', 'name', 'å±±äøœå‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(73202, 61515, 'en', 'name', 'National Institute of Public Health'),
(73203, 61515, 'pt', 'name', 'Institut National de la SantƩ Publique'),
(73204, 61516, 'no_lang_code', 'name', 'Equinosis (United States)'),
(73205, 61517, 'en', 'name', 'Kuwait Institute for Medical Specialization'),
(73206, 61518, 'en', 'name', 'Chongqing Maternal and Child Health Hospital'),
(73207, 61519, 'no_lang_code', 'name', 'GlaxoSmithKline (India)'),
(73208, 61520, 'en', 'name', 'Good Samaritan Hospital'),
(73209, 61521, 'nl', 'name', 'Vlaams Agentschap Zorg en Gezondheid'),
(73210, 61522, 'pl', 'name', 'Uniwersytecki Szpital Kliniczny w Opolu'),
(73211, 61523, 'fr', 'name', 'Centre Hospitalier du Pays d''Aix'),
(73212, 61524, 'no_lang_code', 'name', 'Greenyard Fresh (Germany)'),
(73213, 61525, 'no_lang_code', 'name', 'Earlogic (South Korea)'),
(73214, 61526, 'no_lang_code', 'name', 'Spectral MD (United States)'),
(73215, 61527, 'en', 'name', 'Tianjin International Joint Academy of Biomedicine'),
(73216, 61527, 'zh', 'name', 'å¤©ę“„å›½é™…č”åˆē”Ÿē‰©åŒ»å­¦ē ”ē©¶ę‰€'),
(73217, 61528, 'no_lang_code', 'name', 'Across (Spain)'),
(73218, 61529, 'no_lang_code', 'name', 'Imam Abdulrahman Al Faisal Hospital'),
(73219, 61530, 'en', 'name', 'NEA Baptist Memorial Hospital'),
(73220, 61531, 'fr', 'name', 'Clinique Mutualiste La Sagesse'),
(73221, 61532, 'de', 'name', 'Institut für Ganzheitliche Medizin und Wissenschaft'),
(73222, 61533, 'en', 'name', 'American Institute of Hydrology'),
(73223, 61534, 'no_lang_code', 'name', 'J. S. Ayurveda Mahavidyalaya and P.D. Patel Ayurveda Hospital'),
(73224, 61535, 'en', 'name', 'New York City Department of Correction'),
(73225, 61536, 'en', 'name', 'Baim Institute for Clinical Research'),
(73226, 61537, 'no_lang_code', 'name', 'Inslaw (United States)'),
(73227, 61538, 'en', 'name', 'City Hospital No. 40'),
(73228, 61538, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 40'),
(73229, 61539, 'de', 'name', 'Martini-Klinik'),
(73230, 61540, 'en', 'name', 'Bionomics International'),
(73231, 61541, 'en', 'name', 'Guangzhou Institute of Advanced Technology'),
(73232, 61541, 'zh', 'name', 'å¹æå·žäø­å›½ē§‘å­¦é™¢å…ˆčæ›ęŠ€ęœÆē ”ē©¶ę‰€'),
(73233, 61542, 'en', 'name', 'Mount Sinai Rehabilitation Hospital'),
(73234, 61543, 'en', 'name', 'Virginia Living Museum'),
(73235, 61544, 'en', 'name', 'CODET Vision Institute'),
(73236, 61545, 'de', 'name', 'Universitätsklinik für Augenheilkunde'),
(73237, 61546, 'en', 'name', 'National University Heart Centre Singapore'),
(73238, 61547, 'no_lang_code', 'name', 'Smart Salt (United States)'),
(73239, 61548, 'en', 'name', 'Rhode Island Department of Elementary and Secondary Education'),
(73240, 61549, 'no_lang_code', 'name', 'Prevail Health Solutions (United States)'),
(73241, 61550, 'no_lang_code', 'name', 'Synapse (Greece)'),
(73242, 61551, 'en', 'name', 'Genesis Healthcare'),
(73243, 61552, 'en', 'name', 'Rocky Mountain Retina Consultants'),
(73244, 61553, 'de', 'name', 'UniversitƤtsaugenklinik Magdeburg'),
(73245, 61554, 'en', 'name', 'Lehigh Valley Hospital-Pocono'),
(73246, 61555, 'de', 'name', 'Park-Klinik Weißensee'),
(73247, 61556, 'it', 'name', 'Agenzia Sanitaria e Sociale Regionale'),
(73248, 61557, 'nl', 'name', 'Lange Land Ziekenhuis'),
(73249, 61558, 'no_lang_code', 'name', 'SMART Medical Systems (Israel)'),
(73250, 61559, 'en', 'name', 'Cardiovascular Institute of Northwest Florida'),
(73251, 61560, 'fr', 'name', 'Association Tunisienne Contre le Cancer'),
(73252, 61561, 'en', 'name', 'Academic Alliance in Dermatology'),
(73253, 61562, 'no_lang_code', 'name', 'Curaden (Switzerland)'),
(73254, 61563, 'en', 'name', 'Atomic Heritage Foundation'),
(73255, 61564, 'nl', 'name', 'Innofeet, Voetencentrum Nijenhuis'),
(73256, 61565, 'en', 'name', 'The IBC Network Foundation'),
(73257, 61566, 'en', 'name', 'Kochan Institute for Healing Arts Research'),
(73258, 61567, 'en', 'name', 'Wuhou District People''s Hospital, Chengdu'),
(73259, 61567, 'zh', 'name', 'ęˆéƒ½åø‚ę­¦ä¾ÆåŒŗäŗŗę°‘åŒ»é™¢'),
(73260, 61568, 'no_lang_code', 'name', 'MTPV Power (United States)'),
(73261, 61569, 'en', 'name', 'Sentara Heart Hospital'),
(73262, 61570, 'en', 'name', 'Eli Whitney Museum'),
(73263, 61571, 'en', 'name', 'Institute for Radioelements'),
(73264, 61571, 'fr', 'name', 'Institut National des RadioƩlƩments'),
(73265, 61572, 'no_lang_code', 'name', 'Topasol (United States)'),
(73266, 61573, 'no_lang_code', 'name', 'Dr. Niedermaier Pharma (Germany)'),
(73267, 61574, 'en', 'name', 'Kalamazoo Psychiatric Hospital'),
(73268, 61575, 'en', 'name', 'CR2O'),
(73269, 61576, 'en', 'name', 'Smilow Cancer Hospital Care Center'),
(73270, 61577, 'no_lang_code', 'name', 'Paladin Pharma (Italy)'),
(73271, 61578, 'no_lang_code', 'name', 'Anchor Science (United States)'),
(73272, 61579, 'nl', 'name', 'Geriant'),
(73273, 61580, 'en', 'name', 'Exeter Primary Care'),
(73274, 61581, 'en', 'name', 'American Academy of Health Behavior'),
(73275, 61582, 'en', 'name', 'IMMUNOe Research Center'),
(73276, 61583, 'en', 'name', 'Lauro Wanderley University Hospital'),
(73277, 61583, 'pt', 'name', 'Hospital UniversitƔrio Lauro Wanderley'),
(73278, 61584, 'en', 'name', 'Altius Institute for Biomedical Sciences'),
(73279, 61585, 'de', 'name', 'Arbeitsgemeinschaft Dermatologische Onkologie'),
(73280, 61586, 'no_lang_code', 'name', 'Prescient Surgical (United States)'),
(73281, 61587, 'no_lang_code', 'name', 'De Friesland Zorgverzekeraar (Netherlands)'),
(73282, 61588, 'en', 'name', 'Shaanxi Provincial Seismological Bureau'),
(73283, 61588, 'zh', 'name', 'é™•č„æēœåœ°éœ‡å±€'),
(73284, 61589, 'es', 'name', 'Sociedad EspaƱola de Cirugƭa OrtopƩdica y Traumatologƭa'),
(73285, 61590, 'en', 'name', 'Sustainable Horizons Institute'),
(73286, 61591, 'no_lang_code', 'name', 'Medacta (United States)'),
(73287, 61592, 'en', 'name', 'New York Glaucoma Research Institute'),
(73288, 61593, 'es', 'name', 'Hospital General Mateu Orfila'),
(73289, 61594, 'en', 'name', 'Lindner Center of HOPE'),
(73290, 61595, 'en', 'name', 'Magrabi Hospitals and Centers'),
(73291, 61596, 'en', 'name', 'The Eye Care Institute'),
(73292, 61597, 'en', 'name', 'Somali Association of Arizona'),
(73293, 61598, 'no_lang_code', 'name', 'Medtronic (Singapore)'),
(73294, 61599, 'en', 'name', 'Finnish Association of People with Physical Disabilities'),
(73295, 61600, 'en', 'name', 'Gwinnett Medical Center'),
(73296, 61601, 'fr', 'name', 'Association pour la Promotion du Sport chez l''Enfant Malade'),
(73297, 61602, 'no_lang_code', 'name', 'Orthica (Netherlands)'),
(73298, 61603, 'no_lang_code', 'name', 'Wepa Apothekenbedarf (Germany)'),
(73299, 61604, 'en', 'name', 'Florida Academic Dermatology Center'),
(73300, 61605, 'fr', 'name', 'Clinique du MillƩnaire'),
(73301, 61606, 'no_lang_code', 'name', 'Engelhard Arzneimittel (Germany)'),
(73302, 61607, 'en', 'name', 'Nijmegen Institute for Scientist Practitioners in Addiction'),
(73303, 61608, 'en', 'name', 'Commonwealth Cancer Center'),
(73304, 61609, 'sk', 'name', 'Východoslovenský Onkologický Ústav'),
(73305, 61610, 'en', 'name', 'National Center of Security and Protection'),
(73306, 61611, 'no_lang_code', 'name', 'OtoNexus Medical Technologies (United States)'),
(73307, 61612, 'no_lang_code', 'name', 'BBC Worldwide (United States)'),
(73308, 61613, 'de', 'name', 'Schweizerische Gesellschaft für Cystische Fibrose'),
(73309, 61613, 'fr', 'name', 'SociƩtƩ Suisse pour la Mucoviscidose'),
(73310, 61613, 'it', 'name', 'SocietĆ  Svizzera per la fFbrosi Cisitica'),
(73311, 61614, 'en', 'name', 'Long Now Foundation'),
(73312, 61615, 'en', 'name', 'Lake Norman Oncology'),
(73313, 61616, 'en', 'name', 'Japan Society of Laparoscopic Colorectal Surgery'),
(73314, 61616, 'ja', 'name', '第6å›žč…¹č…”é”äø‹å¤§č…øåˆ‡é™¤ē ”ē©¶ä¼š'),
(73315, 61617, 'en', 'name', 'South African Society of Anaesthesiologists'),
(73316, 61618, 'no_lang_code', 'name', 'Rehaptix'),
(73317, 61619, 'en', 'name', 'Kalispell Regional Healthcare'),
(73318, 61620, 'en', 'name', 'Vitality Institute'),
(73319, 61621, 'en', 'name', 'The Institute for Scientific Information on Coffee'),
(73320, 61622, 'en', 'name', 'SingHealth Polyclinics'),
(73321, 61623, 'en', 'name', 'Hebei Yiling Hospital'),
(73322, 61624, 'no_lang_code', 'name', 'Independence Science (United States)'),
(73323, 61625, 'en', 'name', 'Medical Oncology Hematology Consultants'),
(73324, 61626, 'en', 'name', 'Ministry of Public Health'),
(73325, 61626, 'fa', 'name', 'وزارت ŲµŲ­ŲŖ عامه'),
(73326, 61627, 'en', 'name', 'Raymond G. Murphy VA Medical Center'),
(73327, 61628, 'en', 'name', 'Zhengzhou City Hospital'),
(73328, 61628, 'zh', 'name', 'éƒ‘å·žåø‚äø­åŒ»é™¢'),
(73329, 61629, 'en', 'name', 'Compliant Concept'),
(73330, 61630, 'en', 'name', 'ADIR Association'),
(73331, 61631, 'nl', 'name', 'Amstelland Fysiotherapie'),
(73332, 61632, 'en', 'name', 'Health Informatics Society of Ireland'),
(73333, 61633, 'en', 'name', 'Joliet Oncology-Hematology Associates'),
(73334, 61634, 'en', 'name', 'Missouri Baptist Sullivan Hospital'),
(73335, 61635, 'en', 'name', 'Malaysian Oil Scientists and Technologists Association'),
(73336, 61636, 'en', 'name', 'Ohio Sinus Institute'),
(73337, 61637, 'it', 'name', 'Ospedale Misericordia e Dolce'),
(73338, 61638, 'es', 'name', 'Hospital General De Zona'),
(73339, 61639, 'ja', 'name', 'åŗƒå³¶å…±ē«‹ē—…é™¢'),
(73340, 61639, 'no_lang_code', 'name', 'Hiroshima Kyoritsu Hospital'),
(73341, 61640, 'en', 'name', 'Marshfield Clinic Weston Center'),
(73342, 61641, 'en', 'name', 'Hassman Research Institute'),
(73343, 61642, 'de', 'name', 'Arbeiterwohlfahrt München'),
(73344, 61643, 'no_lang_code', 'name', 'SIGNUS Medizintechnik (Germany)'),
(73345, 61644, 'pt', 'name', 'Hospital de Messejana'),
(73346, 61645, 'it', 'name', 'Fondazione FADOI'),
(73347, 61646, 'en', 'name', '9th City Clinical Hospital'),
(73348, 61646, 'ru', 'name', '9-я клиника Минска'),
(73349, 61647, 'no_lang_code', 'name', 'Chiesi (Germany)'),
(73350, 61648, 'en', 'name', 'Foundation of New York State Nurses'),
(73351, 61649, 'no_lang_code', 'name', 'Trautwein (Germany)'),
(73352, 61650, 'en', 'name', 'Chongqing Institute of Genetics and Reproduction'),
(73353, 61651, 'no_lang_code', 'name', 'Juno Therapeutics (Germany)'),
(73354, 61652, 'en', 'name', 'Pharmacology Research Institute'),
(73355, 61653, 'fr', 'name', 'Groupe Hospitalier Diaconesses Croix Saint-Simon'),
(73356, 61654, 'en', 'name', 'Sydney Hernia Specialists Clinic'),
(73357, 61655, 'en', 'name', 'Wind Hollow Foundation'),
(73358, 61656, 'en', 'name', 'Nutrition Center of the Philippines'),
(73359, 61657, 'en', 'name', 'RNA Society'),
(73360, 61658, 'en', 'name', 'Institute of Cosmetic and Laser Surgery'),
(73361, 61659, 'en', 'name', 'Caucaseco Scientific Research Center'),
(73362, 61659, 'es', 'name', 'Centro de Investigación Científica Caucaseco'),
(73363, 61660, 'no_lang_code', 'name', 'Cerbomed (Germany)'),
(73364, 61661, 'en', 'name', 'Riverside University Health System - Medical Center'),
(73365, 61662, 'nl', 'name', 'Gouverneur Kremers Centrum'),
(73366, 61663, 'bg', 'name', 'Дпециализирана болница за активно лечение по Гетски болести'),
(73367, 61663, 'en', 'name', 'Specialized Hospital for Active Treatment of Children''s Diseases'),
(73368, 61664, 'en', 'name', 'Pine Street Foundation'),
(73369, 61665, 'el', 'name', 'Ελληνική Εταιρεία ĪœĪ±ĻƒĻ„ĪæĪ»ĪæĪ³ĪÆĪ±'),
(73370, 61665, 'en', 'name', 'Senologic Hellenic Society'),
(73371, 61666, 'en', 'name', 'Association of Brazilian Intensive Medicine'),
(73372, 61666, 'pt', 'name', 'Associação de Medicina Intensiva Brasileira'),
(73373, 61667, 'da', 'name', 'Psykiatrien Region SjƦlland'),
(73374, 61667, 'en', 'name', 'Psychiatry Region Zealand'),
(73375, 61668, 'en', 'name', 'Herrin Hospital'),
(73376, 61669, 'en', 'name', 'The Hubbard Foundation'),
(73377, 61670, 'de', 'name', 'Landesbank Baden-Württemberg'),
(73378, 61671, 'en', 'name', 'Iranian Orthopedic Association'),
(73379, 61671, 'fa', 'name', 'انجمن جراحان ارتوپدی Ų§ŪŒŲ±Ų§Ł†'),
(73380, 61672, 'en', 'name', 'Western Michigan Society of Health Systems Pharmacists'),
(73381, 61673, 'en', 'name', 'Z Urology'),
(73382, 61674, 'en', 'name', 'Clearview Cancer Institute'),
(73383, 61675, 'de', 'name', 'Poliklinik für Zahnärztliche Prothetik und Werkstoffkunde'),
(73384, 61676, 'no_lang_code', 'name', 'Allergan (Netherlands)'),
(73385, 61677, 'en', 'name', 'Cameroon Nutritional Science Society'),
(73386, 61678, 'en', 'name', 'Southeast Career Technical Academy'),
(73387, 61679, 'en', 'name', 'American College of Osteopathic Obstetricians & Gynecologists'),
(73388, 61680, 'en', 'name', 'Institute for Global Ethics'),
(73389, 61681, 'nl', 'name', 'Stichting Stimuleringsfonds Rouw'),
(73390, 61682, 'en', 'name', 'Ludwig Boltzmann Institute of Electrical Stimulation and Physical Rehabilitation'),
(73391, 61683, 'en', 'name', 'Newland Medical Associates'),
(73392, 61684, 'fi', 'name', 'InvalidisƤƤtiƶ'),
(73393, 61685, 'no', 'name', 'Kristiansund Sykehus'),
(73394, 61686, 'no', 'name', 'Evjeklinikken'),
(73395, 61687, 'en', 'name', 'St. Mary Mercy Livonia'),
(73396, 61688, 'en', 'name', 'CHRISTUS Highland Medical Center'),
(73397, 61689, 'en', 'name', 'Kildonan UnitingCare'),
(73398, 61690, 'de', 'name', 'Berliner Krebsgesellschaft'),
(73399, 61691, 'en', 'name', 'GC Media'),
(73400, 61692, 'en', 'name', 'Saving Faces'),
(73401, 61693, 'en', 'name', 'The Asper Foundation'),
(73402, 61694, 'de', 'name', 'Stiftung Institut für Herzinfarktforschung'),
(73403, 61695, 'en', 'name', 'Guelph Wellington Seniors Association'),
(73404, 61696, 'no_lang_code', 'name', 'MEI Asset Protection (United States)'),
(73405, 61697, 'no_lang_code', 'name', 'Sense Textile (Netherlands)'),
(73406, 61698, 'en', 'name', 'Shaanxi Blood Center'),
(73407, 61698, 'zh', 'name', 'é™•č„æēœč”€ę¶²äø­åæƒ'),
(73408, 61699, 'en', 'name', 'Royal Dutch Organization of Midwives'),
(73409, 61699, 'nl', 'name', 'Koninklijke Nederlandse Organisatie van Verloskundigen'),
(73410, 61700, 'en', 'name', 'Coyle Institute'),
(73411, 61701, 'de', 'name', 'D•A•CH-Gesellschaft'),
(73412, 61702, 'en', 'name', 'City Children''s Hospital No. 22'),
(73413, 61702, 'ru', 'name', 'Š”ŠµŃ‚ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–22'),
(73414, 61703, 'no_lang_code', 'name', 'Arytha Biosciences (United States)'),
(73415, 61704, 'no_lang_code', 'name', 'Institut MƩrieux (United States)'),
(73416, 61705, 'en', 'name', 'The Africa-America Institute'),
(73417, 61706, 'no_lang_code', 'name', 'Boston Scientific (Netherlands)'),
(73418, 61707, 'sv', 'name', 'Riddargatan 1'),
(73419, 61708, 'en', 'name', 'Primary Care Collaborative Clinical Trials Group'),
(73420, 61709, 'en', 'name', 'Memorial Sisli Hospital'),
(73421, 61710, 'en', 'name', 'Association of Cancer Online Resources'),
(73422, 61711, 'en', 'name', 'College of Physicians and Surgeons of Ontario'),
(73423, 61712, 'en', 'name', 'Hand and Upper Limb Clinic'),
(73424, 61713, 'no_lang_code', 'name', 'Polyganics (Netherlands)'),
(73425, 61714, 'no_lang_code', 'name', 'BioMat Sciences (United States)'),
(73426, 61715, 'fr', 'name', 'Association FranƧaise de Lutte Anti-Rhumastismale'),
(73427, 61716, 'en', 'name', 'Moy, Fincher, Chipps Medical Group'),
(73428, 61717, 'en', 'name', 'Hypersomnia Foundation'),
(73429, 61718, 'en', 'name', 'National Urea Cycle Disorders Foundation'),
(73430, 61719, 'en', 'name', 'Sports Concussion Institute'),
(73431, 61720, 'en', 'name', 'The Morton Center'),
(73432, 61721, 'en', 'name', 'Russian Society of Clinical Oncology'),
(73433, 61721, 'ru', 'name', 'Российское общество клинической онкологии'),
(73434, 61722, 'en', 'name', 'National Research Institute'),
(73435, 61723, 'en', 'name', 'Pelvic & Sexual Health Institute'),
(73436, 61724, 'en', 'name', 'Footscray Hospital'),
(73437, 61725, 'en', 'name', 'Shade Foundation'),
(73438, 61726, 'nl', 'name', 'Kliniek ViaSana'),
(73439, 61727, 'en', 'name', 'Medicon Valley Alliance'),
(73440, 61728, 'en', 'name', 'Yeouido St. Mary''s Hospital'),
(73441, 61728, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµģ„±ėŖØė³‘ģ›'),
(73442, 61729, 'en', 'name', 'Coram Clinical Trials'),
(73443, 61730, 'en', 'name', 'SOUSEIKAI Global Clinical Research Center'),
(73444, 61731, 'en', 'name', 'African Institute for Health and Development'),
(73445, 61732, 'de', 'name', 'Deutsche Gesellschaft für Angiologie Gesellschaft für Gefäßmedizin e.V.'),
(73446, 61733, 'no_lang_code', 'name', 'Hennepin County'),
(73447, 61734, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (Germany)'),
(73448, 61735, 'de', 'name', 'Krankenhaus Waldfriede'),
(73449, 61736, 'pt', 'name', 'CUF Porto Hospital'),
(73450, 61737, 'en', 'name', 'Anchorage and Valley Radiation Therapy Centers'),
(73451, 61738, 'en', 'name', 'Massage Therapists Association of British Columbia'),
(73452, 61739, 'no_lang_code', 'name', 'Synimmune (Germany)'),
(73453, 61740, 'nl', 'name', 'Dialyse Centrum Groningen'),
(73454, 61741, 'nl', 'name', 'Nationale Intensive Care Evaluatie Stichting'),
(73455, 61742, 'no_lang_code', 'name', 'Intuitive Surgical (Switzerland)'),
(73456, 61743, 'de', 'name', 'Hoffnungsbaum'),
(73457, 61744, 'en', 'name', 'The Society for the Relief of Disabled Children'),
(73458, 61744, 'zh', 'name', 'é¦™ęøÆå¼±čƒ½å…’ē«„č­·åŠ©ęœƒ'),
(73459, 61745, 'pt', 'name', 'Hospital IPO, Instituto Paranaense de Otorrinolaringologia'),
(73460, 61746, 'en', 'name', 'G.A. Carmichael Family Health Center'),
(73461, 61747, 'no_lang_code', 'name', 'ALK-Abelló (Netherlands)'),
(73462, 61748, 'en', 'name', 'Kaiser Permanente Rock Creek Medical Offices'),
(73463, 61749, 'en', 'name', 'Intermutualist Agency'),
(73464, 61750, 'es', 'name', 'Via Libre'),
(73465, 61751, 'nl', 'name', 'Phelps Stichting voor Spastici'),
(73466, 61752, 'no_lang_code', 'name', 'Hoya Surgical Optics (Germany)'),
(73467, 61753, 'en', 'name', 'Korean Glaucoma Society'),
(73468, 61753, 'ko', 'name', 'ķ•œźµ­ė…¹ė‚“ģž„ķ•™ķšŒ'),
(73469, 61754, 'en', 'name', 'Goulburn Valley Health'),
(73470, 61755, 'de', 'name', 'Deutsche Gesellschaft für Hämatologie und Medizinische Onkologie'),
(73471, 61756, 'en', 'name', 'Society of Musculoskeletal Medicine'),
(73472, 61757, 'en', 'name', 'Karachi Institute of Heart Diseases'),
(73473, 61758, 'en', 'name', 'JosƩ R. Reyes Memorial Medical Center'),
(73474, 61759, 'en', 'name', 'Hawaii Cancer Care'),
(73475, 61760, 'es', 'name', 'ClĆ­nica Diagonal'),
(73476, 61761, 'sv', 'name', 'Skandinaviska Kiropraktorhƶgskolan'),
(73477, 61762, 'no_lang_code', 'name', 'PROGE FARM (Italy)'),
(73478, 61763, 'en', 'name', 'Association for Chemoreception Sciences'),
(73479, 61764, 'no_lang_code', 'name', 'Occipital (United States)'),
(73480, 61765, 'en', 'name', 'Australian Childhood Foundation'),
(73481, 61766, 'en', 'name', 'Advocate Center for Pediatric Research'),
(73482, 61767, 'no_lang_code', 'name', 'SteadySense (Austria)'),
(73483, 61768, 'en', 'name', 'Foundation for Cardiac Surgery'),
(73484, 61769, 'en', 'name', 'Sarasota Retina Institute'),
(73485, 61770, 'no_lang_code', 'name', 'Purdue Pharma (Canada)'),
(73486, 61771, 'en', 'name', 'Bariatric Medical Institute of Texas'),
(73487, 61772, 'en', 'name', 'Association for the Advancement of Medical Instrumentation'),
(73488, 61773, 'fr', 'name', 'Centre Hospitalier de Beauvais'),
(73489, 61774, 'en', 'name', 'Qinghai Red Cross Hospital'),
(73490, 61775, 'no_lang_code', 'name', 'Hasomed (Germany)'),
(73491, 61776, 'en', 'name', 'Galiz Research'),
(73492, 61777, 'sr', 'name', 'Zavod ''''Konzilijum'''''),
(73493, 61778, 'en', 'name', 'ASM International'),
(73494, 61779, 'en', 'name', 'Himalayan Rescue Association'),
(73495, 61780, 'en', 'name', 'Interventional Orthopedics Foundation'),
(73496, 61781, 'en', 'name', 'Ministry of Health, Community Development, Gender, Elderly and Children'),
(73497, 61782, 'de', 'name', 'UniversitƤts Hautklinik Kiel'),
(73498, 61783, 'en', 'name', 'Sichuan Entry-Exit Inspection and Quarantine Bureau'),
(73499, 61783, 'zh', 'name', 'å››å·å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€ę£€éŖŒę£€ē–«ęŠ€ęœÆäø­åæƒ'),
(73500, 61784, 'en', 'name', 'Wisconsin Parkinson Association'),
(73501, 61785, 'no_lang_code', 'name', 'Population Services International'),
(73502, 61786, 'en', 'name', 'Finnish Mass Spectrometry Society'),
(73503, 61786, 'fi', 'name', 'Suomen Massaspektrometrian Seura'),
(73504, 61787, 'de', 'name', 'Bund gegen Alkohol und Drogen im Straßenverkehr'),
(73505, 61788, 'no_lang_code', 'name', 'CSL (Japan)'),
(73506, 61789, 'en', 'name', 'Syosset Hospital'),
(73507, 61790, 'nl', 'name', 'Vrienden WKZ'),
(73508, 61791, 'fr', 'name', 'Centre Hospitalier de Bigorre'),
(73509, 61792, 'en', 'name', 'Polish Institute of Arts and Sciences of America'),
(73510, 61793, 'en', 'name', 'South Australian Sardine Industry Association'),
(73511, 61794, 'be', 'name', '17-я Š³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń поликлиника'),
(73512, 61794, 'en', 'name', '17th City Children''s Clinical Polyclinic'),
(73513, 61795, 'en', 'name', 'Island Press'),
(73514, 61796, 'en', 'name', 'Monroe 2-Orleans BOCES'),
(73515, 61797, 'en', 'name', 'Scientific Research Institute of First Aid to them. N.V. Sklifosovsky'),
(73516, 61797, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ чрезвычайных ŃŠøŃ‚ŃƒŠ°Ń†ŠøŠ¹. Š. Š’. Дклифосовский'),
(73517, 61798, 'no_lang_code', 'name', 'GERCOR (France)'),
(73518, 61799, 'en', 'name', 'Alaska Native Science Commission'),
(73519, 61800, 'en', 'name', 'McFarland Clinic - Boone'),
(73520, 61801, 'en', 'name', 'Coastal Orthopedics'),
(73521, 61802, 'en', 'name', 'Beacon Hill Academy'),
(73522, 61803, 'en', 'name', 'Council of the Inspectors General on Integrity and Efficiency'),
(73523, 61804, 'en', 'name', 'Virtua Memorial Hospital'),
(73524, 61805, 'en', 'name', 'Wildlands Network'),
(73525, 61806, 'en', 'name', 'Planet Wheeler Foundation'),
(73526, 61807, 'en', 'name', 'Civil Association for Conservation of the Peruvian Amazon Environment'),
(73527, 61807, 'es', 'name', 'CONAPAC'),
(73528, 61808, 'en', 'name', 'Bacharach Institute for Rehabilitation'),
(73529, 61809, 'en', 'name', 'Semmes Murphey Foundation'),
(73530, 61810, 'en', 'name', 'Evergreen General Hospital'),
(73531, 61811, 'no_lang_code', 'name', 'VivaTech (United States)'),
(73532, 61812, 'no_lang_code', 'name', 'StemGenex (United States)'),
(73533, 61813, 'en', 'name', 'Spine Institute on the Emerald Coast'),
(73534, 61814, 'en', 'name', 'Gene Therapy Research Institution'),
(73535, 61814, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾éŗä¼å­ē ”ē©¶ę‰€'),
(73536, 61815, 'en', 'name', 'Institute for Cardiovascular Diseases of Vojvodina'),
(73537, 61816, 'en', 'name', 'KSK Medical'),
(73538, 61817, 'de', 'name', 'Willi Drache Stiftung'),
(73539, 61818, 'en', 'name', 'Asset Stem Education'),
(73540, 61819, 'en', 'name', 'Society of Military Orthopaedic Surgeons'),
(73541, 61820, 'en', 'name', 'Retina Research Institute of Texas'),
(73542, 61821, 'en', 'name', 'Mercy Clinic Cancer and Hematology'),
(73543, 61822, 'ja', 'name', 'ć‚Ŗćƒ›ćƒ¼ćƒ„ć‚Æęµ·ē—…é™¢'),
(73544, 61822, 'no_lang_code', 'name', 'Okhotsk Kai Hospital'),
(73545, 61823, 'en', 'name', 'Joint Educational Facilities'),
(73546, 61824, 'no_lang_code', 'name', 'Amriton (United States)'),
(73547, 61825, 'no_lang_code', 'name', 'Novel (Germany)'),
(73548, 61826, 'en', 'name', 'Grace Hudson Museum and Sun House'),
(73549, 61827, 'no_lang_code', 'name', 'BioTeSys (Germany)'),
(73550, 61828, 'fr', 'name', 'Les HƓpitaux de Chartres'),
(73551, 61829, 'en', 'name', 'Rural Training Initiatives'),
(73552, 61830, 'en', 'name', 'Barbara Lee Family Foundation'),
(73553, 61831, 'en', 'name', 'Perot Museum of Nature and Science'),
(73554, 61832, 'fr', 'name', 'Association Nationale des HƩpato-GastroentƩrologues des HƓpitaux GƩnƩraux de France'),
(73555, 61833, 'en', 'name', 'Guizhou Forestry Science Research Institute'),
(73556, 61833, 'zh', 'name', 'č“µå·žēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(73557, 61834, 'en', 'name', 'Carolinas Pain Institute'),
(73558, 61835, 'en', 'name', 'Gateway Aesthetic Institute and Laser Center'),
(73559, 61836, 'en', 'name', 'Chartered Institute of Environmental Health'),
(73560, 61837, 'en', 'name', 'Paradigm Foundation'),
(73561, 61838, 'fr', 'name', 'Conseil Interuniversitaire de la CommunautƩ FranƧaise de Belgique'),
(73562, 61839, 'en', 'name', 'Center for Atlantic Oral Surgery'),
(73563, 61840, 'de', 'name', 'Hessisches Ministerium für Soziales und Integration'),
(73564, 61840, 'en', 'name', 'Hessian Ministry for Social Affairs and Integration'),
(73565, 61841, 'en', 'name', 'Microclinic International'),
(73566, 61842, 'en', 'name', 'Scandinavian College of Neuropsychopharmacology'),
(73567, 61843, 'no_lang_code', 'name', 'KA Medical (United States)'),
(73568, 61844, 'en', 'name', 'Spencer Gulf King Prawns'),
(73569, 61845, 'en', 'name', 'Gujarat Kidney Foundation'),
(73570, 61846, 'en', 'name', 'International Thyroid Eye Disease Society'),
(73571, 61847, 'de', 'name', 'Klinik Bavaria'),
(73572, 61848, 'en', 'name', 'Eidos Institute'),
(73573, 61849, 'no_lang_code', 'name', 'Theraclone Sciences (United States)'),
(73574, 61850, 'en', 'name', 'Viewpoint Vision'),
(73575, 61851, 'en', 'name', 'California Center for Sleep Disorders'),
(73576, 61852, 'no_lang_code', 'name', 'Shin Nippon Biomedical Laboratories (United States)'),
(73577, 61853, 'no_lang_code', 'name', 'Bio-Images Drug Delivery (United Kingdom)'),
(73578, 61854, 'en', 'name', 'Schoodic Institute'),
(73579, 61855, 'de', 'name', 'Klinik Niederrhein'),
(73580, 61856, 'en', 'name', 'Prostate Cancer Clinical Trials Consortium'),
(73581, 61857, 'en', 'name', 'First Affiliated Hospital of Xinxiang Medical University'),
(73582, 61858, 'en', 'name', 'Canadian Foundation for Women’s Health'),
(73583, 61859, 'no_lang_code', 'name', 'KSL Consulting (Denmark)'),
(73584, 61860, 'en', 'name', 'Geneva home care institution'),
(73585, 61860, 'fr', 'name', 'Institution Genevoise de Maintien Ć  Domicile'),
(73586, 61861, 'en', 'name', 'Brazosport Eye Institute'),
(73587, 61862, 'en', 'name', 'Institute for Human Reproduction'),
(73588, 61863, 'en', 'name', 'Korea National Enterprise for Clinical Trials'),
(73589, 61863, 'ko', 'name', 'ķ•œźµ­ģž„ģƒģ‹œķ—˜ģ‚°ģ—…ė³øė¶€'),
(73590, 61864, 'de', 'name', 'Medizinisch Genetisches Zentrum'),
(73591, 61864, 'en', 'name', 'Medical Genetics Center'),
(73592, 61865, 'en', 'name', 'Pacific Centre for Reproductive Medicine'),
(73593, 61866, 'en', 'name', 'Island Hospital'),
(73594, 61867, 'en', 'name', 'Huntsville Madison County Chamber'),
(73595, 61868, 'en', 'name', 'William C. Tallent Outpatient Clinic'),
(73596, 61869, 'no_lang_code', 'name', 'CMIC Group (Japan)'),
(73597, 61870, 'en', 'name', 'Guangdong Institute of Biological Products and Drugs'),
(73598, 61871, 'nl', 'name', 'Nederlandse Vereniging van Podotherapeuten'),
(73599, 61872, 'no_lang_code', 'name', 'Regenerative Medical Solutions (United States)'),
(73600, 61873, 'en', 'name', 'NZ Rock Lobster Industry Council'),
(73601, 61874, 'en', 'name', 'Franciscan St Anthony Health – Michigan City'),
(73602, 61875, 'no_lang_code', 'name', 'New Valve Technology (Germany)'),
(73603, 61876, 'no_lang_code', 'name', 'Halyard (United Kingdom)'),
(73604, 61877, 'de', 'name', 'Aktion Pink'),
(73605, 61878, 'en', 'name', 'Research Institute of South Florida'),
(73606, 61879, 'en', 'name', 'University Gastroenterology'),
(73607, 61880, 'en', 'name', 'Intelecom Learning'),
(73608, 61881, 'en', 'name', 'Wrightington, Wigan and Leigh NHS Foundation Trust'),
(73609, 61882, 'en', 'name', 'Female Pelvic Medicine Institute of Virginia'),
(73610, 61883, 'de', 'name', 'HELIOS Klinikum Bad Saarow'),
(73611, 61883, 'en', 'name', 'Helios Hospital Bad Saarow'),
(73612, 61884, 'en', 'name', 'Children’s Museum of Houston'),
(73613, 61885, 'no_lang_code', 'name', 'RelaxBogen (Germany)'),
(73614, 61886, 'en', 'name', 'Christiana Institute of Advanced Surgery'),
(73615, 61887, 'no_lang_code', 'name', 'Motion Scientific (United States)'),
(73616, 61888, 'no_lang_code', 'name', 'Ethicare (Germany)'),
(73617, 61889, 'en', 'name', 'Cantor Spine Institute'),
(73618, 61890, 'en', 'name', 'Israel Sports Center for the Disabled'),
(73619, 61890, 'he', 'name', '×ž×Ø×›×– ×”×”×¤×•×Ø×˜ לנכים ×‘×™×©×Ø××œ'),
(73620, 61891, 'en', 'name', 'National Association of Hispanic Nurses'),
(73621, 61892, 'en', 'name', 'Professional Fishermen’s Association'),
(73622, 61893, 'en', 'name', 'Department of Education'),
(73623, 61894, 'nl', 'name', 'Vlaamse Vereniging voor Obstetrie en Gynaecolo'),
(73624, 61895, 'en', 'name', 'Vascular Society of Southern Africa'),
(73625, 61896, 'en', 'name', 'Delaware Clinical & Laboratory Physicians'),
(73626, 61897, 'en', 'name', 'Ferre Institute'),
(73627, 61898, 'en', 'name', 'Edgecombe Community College'),
(73628, 61899, 'de', 'name', 'Hospital Krefeld-Düsseldorf'),
(73629, 61900, 'en', 'name', 'Association of Black Health-System Pharmacists'),
(73630, 61901, 'ro', 'name', 'Institutul de Pneumoftiziologie "Marius Nasta"'),
(73631, 61902, 'no_lang_code', 'name', 'Virta Laboratories (United States)'),
(73632, 61903, 'fr', 'name', 'Association de Cardiologie - Ile de France'),
(73633, 61904, 'en', 'name', 'Space Foundation'),
(73634, 61905, 'de', 'name', 'Klinikverbund Südwest'),
(73635, 61906, 'en', 'name', 'Ministry of Public Health and Social Assistance'),
(73636, 61907, 'en', 'name', 'Bon Secours Heart & Vascular Institute'),
(73637, 61908, 'en', 'name', 'Texas Academy of Family Physicians Foundation'),
(73638, 61909, 'en', 'name', 'The Connecticut Audubon Society'),
(73639, 61910, 'en', 'name', 'Zvitambo Institute for Maternal and Child Health Research'),
(73640, 61911, 'en', 'name', 'Saint Luke''s South Hospital'),
(73641, 61912, 'de', 'name', 'Institut für Atemwegsforschung GmbH'),
(73642, 61912, 'en', 'name', 'Respiratory Research Institute'),
(73643, 61913, 'ga', 'name', 'Sabhal Mòr Ostaig'),
(73644, 61914, 'en', 'name', 'Strabismus Research Foundation'),
(73645, 61915, 'en', 'name', 'Society for Acupuncture Research'),
(73646, 61916, 'no_lang_code', 'name', 'Diamant (Germany)'),
(73647, 61917, 'en', 'name', 'Antoni Jurasz University Hospital'),
(73648, 61917, 'pl', 'name', 'Szpital Uniwersytecki im. A. Jurasza'),
(73649, 61918, 'nl', 'name', 'Stichting de Verre Bergen'),
(73650, 61919, 'nl', 'name', 'Huis voor de Zorg');
INSERT INTO `ror_settings` VALUES
(73651, 61920, 'en', 'name', 'American Legion of Iowa Foundation'),
(73652, 61921, 'it', 'name', 'Fondazione Farmacogenomica FiorGen'),
(73653, 61922, 'de', 'name', 'Klinikum Esslingen'),
(73654, 61923, 'en', 'name', 'Society for the Advancement of Blood Management'),
(73655, 61924, 'en', 'name', 'Hunan Academy of Traditional Chinese Medicine'),
(73656, 61924, 'zh', 'name', 'ę¹–å—ēœäø­åŒ»čÆē ”ē©¶é™¢'),
(73657, 61925, 'no_lang_code', 'name', 'Stragen (France)'),
(73658, 61926, 'no_lang_code', 'name', 'Veikkaus (Finland)'),
(73659, 61927, 'en', 'name', 'Hokotehi Moriori Trust'),
(73660, 61928, 'no_lang_code', 'name', 'Baxter (Colombia)'),
(73661, 61929, 'en', 'name', 'Moebius Syndrome Foundation'),
(73662, 61930, 'en', 'name', 'United States Postal Service Office of Inspector General'),
(73663, 61931, 'en', 'name', 'Gemstone Foundation'),
(73664, 61932, 'en', 'name', 'Wellington Aboriginal Corporation Health Service'),
(73665, 61933, 'de', 'name', 'Diakonie Baden'),
(73666, 61934, 'fr', 'name', 'Institut de CancƩrologie de Bourgogne'),
(73667, 61935, 'cs', 'name', 'Výbor dobré vůle Nadace Olgy Havlové'),
(73668, 61935, 'en', 'name', 'Committee of Good Will - Olga Havel Foundation'),
(73669, 61936, 'en', 'name', 'Orygen'),
(73670, 61937, 'de', 'name', 'Stiftung Swiss Foundation for Excellence and Talent in Biomedical Research'),
(73671, 61937, 'en', 'name', 'Swiss Foundation for Excellence and Talent in Biomedical Research'),
(73672, 61938, 'en', 'name', 'Vision Specialists of Michigan'),
(73673, 61939, 'de', 'name', 'Forschungsinstitut Havelhƶhe'),
(73674, 61940, 'nl', 'name', 'PsyQ'),
(73675, 61941, 'pt', 'name', 'Hospital UniversitƔrio Oswaldo Cruz'),
(73676, 61942, 'en', 'name', 'Instituto Alexander Fleming'),
(73677, 61943, 'en', 'name', 'Niagara Falls Memorial Medical Center'),
(73678, 61944, 'ar', 'name', 'Ł…Ų±ŁƒŲ² سعود Ų§Ł„ŲØŲ§ŲØŲ·ŁŠŁ† للقلب'),
(73679, 61944, 'en', 'name', 'Saud Al-babtain Cardiac Centre'),
(73680, 61945, 'no_lang_code', 'name', 'Apollo Endosurgery (United States)'),
(73681, 61946, 'it', 'name', 'Ente Regionale per il Diritto allo Studio Universitario del Piemonte'),
(73682, 61947, 'de', 'name', 'Asklepios Kliniken Schildautal'),
(73683, 61948, 'en', 'name', 'American Arbitration Association'),
(73684, 61949, 'en', 'name', 'Sanford Broadway Medical Center'),
(73685, 61950, 'no_lang_code', 'name', 'Korian (Germany)'),
(73686, 61951, 'nl', 'name', 'GGz Breburg'),
(73687, 61952, 'no_lang_code', 'name', 'Bluewater International (United States)'),
(73688, 61953, 'en', 'name', 'Dutch Healthcare Authority'),
(73689, 61953, 'nl', 'name', 'Nederlandse Zorgautoriteit'),
(73690, 61954, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪœĪµĪ»Ī­Ļ„Ī·Ļ‚ ĪŸĻ…ĻĪæĪ»ĪæĪ³Ī¹ĪŗĻŽĪ½ Ī Ī±ĪøĪ®ĻƒĪµĻ‰Ī½'),
(73691, 61954, 'en', 'name', 'Institute for the Study of Urologic Diseases'),
(73692, 61955, 'en', 'name', 'Milwaukee Emergency Center for Animals'),
(73693, 61956, 'no_lang_code', 'name', 'Lead Chemical (Japan)'),
(73694, 61957, 'no_lang_code', 'name', 'Chemo (Spain)'),
(73695, 61958, 'no_lang_code', 'name', 'MAA Laboratories (United States)'),
(73696, 61959, 'en', 'name', 'Hebei University of Environmental Engineering'),
(73697, 61959, 'zh', 'name', 'ę²³åŒ—ēŽÆå¢ƒå·„ēØ‹å­¦é™¢'),
(73698, 61960, 'en', 'name', 'Arthritis and Rheumatism Associates'),
(73699, 61961, 'no_lang_code', 'name', 'Max Zeller Sƶhne (Switzerland)'),
(73700, 61962, 'en', 'name', 'Dutch Expert Centre for Screening'),
(73701, 61962, 'nl', 'name', 'Landelijk ReferentieCentrum voor Bevolkingsonderzoek'),
(73702, 61963, 'en', 'name', 'Cacapon Institute'),
(73703, 61964, 'pt', 'name', 'Instituto Brasiliense de Otorrinolaringologia'),
(73704, 61965, 'no_lang_code', 'name', 'Applied Dynamics International (United States)'),
(73705, 61966, 'en', 'name', 'Dermatological Society of Thailand'),
(73706, 61966, 'th', 'name', 'ąøŖąø”ąø²ąø„ąø”ą¹ąøžąø—ąø¢ą¹Œąøœąø“ąø§ąø«ąø™ąø±ąø‡ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(73707, 61967, 'de', 'name', 'Klinik und Poliklinik für Frauenheilkunde und Fortpflanzungsmedizin'),
(73708, 61968, 'az', 'name', 'Akademik Zərifə ʏliyeva adına Milli Oftalmologiya Mərkəzi'),
(73709, 61969, 'en', 'name', 'Association of University Presses'),
(73710, 61970, 'en', 'name', 'African Institute for Mathematical Sciences'),
(73711, 61970, 'sw', 'name', 'Taasisi ya Afrika ya Sayansi ya Hisabati'),
(73712, 61971, 'en', 'name', 'Indiana State Museum'),
(73713, 61972, 'no_lang_code', 'name', 'Winclove Probiotics (Netherlands)'),
(73714, 61973, 'no_lang_code', 'name', 'Femeda (United Kingdom)'),
(73715, 61974, 'de', 'name', 'Aenne Speck Stiftung'),
(73716, 61975, 'en', 'name', 'National Black Graduate Student Association'),
(73717, 61976, 'be', 'name', 'Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŠ°Š½ŃŠŗŃ– навукова-практычны Ń†ŃŠ½Ń‚Ń€ ŠæŃƒŠ»ŃŒŠ¼Š°Š½Š°Š»Š¾Š³Ń–Ń– і Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»Ń‘Š·Ńƒ'),
(73718, 61976, 'en', 'name', 'Republican Scientific and Practical Centre of Pulmonology and Tuberculosis'),
(73719, 61976, 'ru', 'name', 'Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр пульмонологии Šø Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»ŠµŠ·Š°'),
(73720, 61977, 'en', 'name', 'West Virginia Research Technology Park'),
(73721, 61978, 'en', 'name', 'Yuma Oncology Center'),
(73722, 61979, 'en', 'name', 'Maari Ma Health'),
(73723, 61980, 'en', 'name', 'Swiss Society of Hypertension'),
(73724, 61981, 'en', 'name', 'Thistle Foundation'),
(73725, 61982, 'en', 'name', 'Institute for Rare and Neglected Diseases Drug Discovery'),
(73726, 61983, 'en', 'name', 'West End Revitalization Association'),
(73727, 61984, 'en', 'name', 'National Stroke Association'),
(73728, 61985, 'en', 'name', 'MultiCare Gig Harbor Medical Park'),
(73729, 61986, 'de', 'name', 'Cnopf“sche Kinderklinik'),
(73730, 61986, 'en', 'name', 'Cnopf Children''s Hospital'),
(73731, 61987, 'es', 'name', 'Instituto de Salud de Bucaramanga'),
(73732, 61988, 'en', 'name', 'Guangxi Normal University for Nationalities'),
(73733, 61989, 'en', 'name', 'Belgian Society for Pneumology'),
(73734, 61989, 'nl', 'name', 'Belgische Vereniging voor Pneumologie'),
(73735, 61990, 'en', 'name', 'Family Service Agency of the Central Coast'),
(73736, 61991, 'no_lang_code', 'name', 'IBSA Farmaceutici (Italy)'),
(73737, 61992, 'en', 'name', 'Community Information, Empowerment and Transparency'),
(73738, 61993, 'fr', 'name', 'Centre Hospitalier CompiĆØgne-Noyon'),
(73739, 61994, 'en', 'name', 'Malheur Field Station'),
(73740, 61995, 'ca', 'name', 'Collegi Oficial d''Infermeres i Infermers de Barcelona'),
(73741, 61996, 'en', 'name', 'Boulder Institute for Sports Medicine'),
(73742, 61997, 'no_lang_code', 'name', 'Nordic Sugar (Finland)'),
(73743, 61998, 'no_lang_code', 'name', 'Cleveland Research (United States)'),
(73744, 61999, 'en', 'name', 'International Society of Service Innovation Professionals'),
(73745, 62000, 'no_lang_code', 'name', 'Innospense (Netherlands)'),
(73746, 62001, 'en', 'name', 'Chinese People ''s Liberation Army No.455 Hospital'),
(73747, 62001, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬å››äŗ”äŗ”åŒ»é™¢'),
(73748, 62002, 'en', 'name', 'Suncoast Hospice Institute'),
(73749, 62003, 'nl', 'name', 'Stichting Gezondheidscentra Eindhoven'),
(73750, 62004, 'en', 'name', 'Westlake Health Center'),
(73751, 62005, 'en', 'name', 'Norwegian Occupational Therapist Association - Occupational Therapists'),
(73752, 62005, 'no', 'name', 'Norsk Ergoterapeutforbund'),
(73753, 62006, 'en', 'name', 'Canadian Transplant Association'),
(73754, 62006, 'fr', 'name', 'Association Canadienne des Greffes'),
(73755, 62007, 'pt', 'name', 'Hospital Ernesto Dornelles'),
(73756, 62008, 'en', 'name', 'Rice Memorial Hospital'),
(73757, 62009, 'no_lang_code', 'name', 'Fazer (Finland)'),
(73758, 62010, 'en', 'name', 'Vision Institute'),
(73759, 62010, 'pt', 'name', 'Instituto da Visão'),
(73760, 62011, 'en', 'name', 'Marienhospital Bottrop'),
(73761, 62012, 'fr', 'name', 'Centre Hospitalier RƩgional de Metz-Thionville'),
(73762, 62013, 'no_lang_code', 'name', 'Fossil Energy Research (United States)'),
(73763, 62014, 'de', 'name', 'Missionsärztliches Institut Würzburg'),
(73764, 62014, 'en', 'name', 'Medical Mission Institute'),
(73765, 62015, 'en', 'name', 'Altasciences Clinical Research Vince & Associates'),
(73766, 62016, 'de', 'name', 'Universitätsklinik für Frauenheilkunde und Geburtshilfe'),
(73767, 62017, 'no_lang_code', 'name', 'Novartis (Mexico)'),
(73768, 62018, 'en', 'name', 'International Archaeological Research Institute'),
(73769, 62019, 'de', 'name', 'Schƶn Klinik Neustadt'),
(73770, 62020, 'no_lang_code', 'name', 'Amedrix (Germany)'),
(73771, 62021, 'en', 'name', 'Portsmouth Regional Hospital'),
(73772, 62022, 'en', 'name', 'St. Petersburg State Budgetary Healthcare Institution "City Polyclinic No. 106"'),
(73773, 62023, 'en', 'name', 'Tahija Foundation, Yayasan Tahija'),
(73774, 62024, 'no_lang_code', 'name', 'CSD Nano (United States)'),
(73775, 62025, 'no_lang_code', 'name', 'Medivis (Italy)'),
(73776, 62026, 'en', 'name', 'American Psychopathological Association'),
(73777, 62027, 'en', 'name', 'Advanced Heart and Vascular Institute of Hunterdon'),
(73778, 62028, 'fr', 'name', 'Clinatec'),
(73779, 62029, 'en', 'name', 'Digital Harbor Foundation'),
(73780, 62030, 'no_lang_code', 'name', 'Bionorica (Austria)'),
(73781, 62031, 'de', 'name', 'UniversitƤts-Frauenklinik des Saarlandes'),
(73782, 62032, 'en', 'name', 'SerenaGroup Research Institute'),
(73783, 62033, 'no_lang_code', 'name', 'NestlƩ (Netherlands)'),
(73784, 62034, 'no_lang_code', 'name', 'Happiest Baby (United States)'),
(73785, 62035, 'no_lang_code', 'name', 'Organ Recovery Systems (Belgium)'),
(73786, 62036, 'no_lang_code', 'name', 'Delpor (United States)'),
(73787, 62037, 'en', 'name', 'The Ageless Aesthetic Institute'),
(73788, 62038, 'de', 'name', 'Sanatorium Kilchberg'),
(73789, 62039, 'en', 'name', 'Scientific Medical School Dr. Synergetic'),
(73790, 62040, 'en', 'name', 'Public Laboratory for Open Technology and Science'),
(73791, 62041, 'en', 'name', 'Copper Queen Community Hospital'),
(73792, 62042, 'de', 'name', 'Deutscher Berufsverband Rettungsdienst e.V'),
(73793, 62043, 'en', 'name', 'Neurological Research Institute'),
(73794, 62044, 'es', 'name', 'Instituto MƩdico TinerfeƱo'),
(73795, 62045, 'en', 'name', 'International Human Frontier Science Program Organization'),
(73796, 62045, 'fr', 'name', 'FrontiĆØre humaine'),
(73797, 62046, 'en', 'name', 'Brunswick Community College'),
(73798, 62047, 'no_lang_code', 'name', 'Sarossa (Jersey)'),
(73799, 62048, 'no_lang_code', 'name', 'Valeas (Italy)'),
(73800, 62049, 'en', 'name', 'Institut Jaques-Dalcroze'),
(73801, 62050, 'no_lang_code', 'name', 'Remedent (Belgium)'),
(73802, 62051, 'nl', 'name', 'Vereniging EMDR'),
(73803, 62052, 'en', 'name', 'JES & Co'),
(73804, 62053, 'en', 'name', 'School for Field Studies'),
(73805, 62054, 'en', 'name', 'Sacred Heart Medical Center at RiverBend'),
(73806, 62055, 'en', 'name', 'Stereology Resource Center'),
(73807, 62056, 'en', 'name', 'Samara City Children''s Clinical Hospital No. 1 named after NN Ivanova'),
(73808, 62056, 'ru', 'name', 'Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š³Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–1 им. Š.Š. Иванов'),
(73809, 62057, 'en', 'name', 'Canadian College of Massage and Hydrotherapy'),
(73810, 62058, 'en', 'name', 'The Korean Society of Pediatric Hematology-Oncology'),
(73811, 62059, 'en', 'name', 'PaleoCultural Research Group'),
(73812, 62060, 'en', 'name', 'Russian Venture Company'),
(73813, 62060, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š²ŠµŠ½Ń‡ŃƒŃ€Š½Š°Ń ŠŗŠ¾Š¼ŠæŠ°Š½ŠøŃ'),
(73814, 62061, 'en', 'name', 'Lake Huron Medical Center'),
(73815, 62062, 'no_lang_code', 'name', 'Sun Pharma (United States)'),
(73816, 62063, 'en', 'name', 'Alberta Hip and Knee Clinic'),
(73817, 62064, 'no_lang_code', 'name', 'SHINE Medical Technologies (United States)'),
(73818, 62065, 'es', 'name', 'Instituto Hispalense de Pediatria'),
(73819, 62066, 'no_lang_code', 'name', 'Spectrum Scientific (United States)'),
(73820, 62067, 'no_lang_code', 'name', 'LighTopTech (United States)'),
(73821, 62068, 'no_lang_code', 'name', 'Vestergaard (Switzerland)'),
(73822, 62069, 'en', 'name', 'Southern Health and Social Care Trust'),
(73823, 62070, 'en', 'name', 'Maine Hospital Association'),
(73824, 62071, 'en', 'name', 'Brain and Cognition Discovery Foundation'),
(73825, 62072, 'en', 'name', 'City Hospital ā„– 1 named after. ON. Semashko'),
(73826, 62073, 'no_lang_code', 'name', 'Implandata Ophthalmic Products (Germany)'),
(73827, 62074, 'de', 'name', 'Familie Mehdorn Stiftung'),
(73828, 62075, 'nl', 'name', 'Nederlandse Vereniging voor Plastische Chirurgie'),
(73829, 62076, 'nl', 'name', 'Fonds de Gavere'),
(73830, 62077, 'en', 'name', 'Calderdale and Huddersfield NHS Foundation Trust'),
(73831, 62078, 'nl', 'name', 'Nederlands Paramedisch Instituut'),
(73832, 62079, 'no_lang_code', 'name', 'Fulltec (Switzerland)'),
(73833, 62080, 'en', 'name', 'New England Council'),
(73834, 62081, 'en', 'name', 'Medbase'),
(73835, 62082, 'no_lang_code', 'name', 'List Biological Laboratories (United States)'),
(73836, 62083, 'no_lang_code', 'name', 'VRR Diagnostic Services (India)'),
(73837, 62084, 'de', 'name', 'Verwaltungs-Berufsgenossenschaft'),
(73838, 62085, 'en', 'name', 'Omid Fertility Clinic'),
(73839, 62085, 'fa', 'name', 'Ś©Ł„ŪŒŁ†ŪŒŚ© باروری Ų§Ł…ŪŒŲÆ'),
(73840, 62086, 'en', 'name', 'Center for Public Service Communications'),
(73841, 62087, 'en', 'name', 'Eidos Education'),
(73842, 62088, 'de', 'name', 'Medizinisches Versorgungszentrum Prof. Mathey, Prof. Schofer'),
(73843, 62089, 'en', 'name', 'Tahoe Regional Planning Agency'),
(73844, 62090, 'en', 'name', 'Pedorthic Research Foundation of Canada'),
(73845, 62091, 'en', 'name', 'Indiana Athletic Trainers Association'),
(73846, 62092, 'en', 'name', 'Queen Square Radiosurgery Centre'),
(73847, 62093, 'de', 'name', 'Klinikum Frankfurt Hƶchst'),
(73848, 62094, 'en', 'name', 'Central Council for Research in Yoga & Naturopathy'),
(73849, 62095, 'en', 'name', 'The Environmental Literacy Council'),
(73850, 62096, 'no_lang_code', 'name', 'Nuga Medical (South Korea)'),
(73851, 62097, 'en', 'name', 'Alberta Bone and Joint Health Institute'),
(73852, 62098, 'en', 'name', 'Scottish School of Primary Care'),
(73853, 62099, 'en', 'name', 'Cancer Care Specialists of Illinois'),
(73854, 62100, 'no_lang_code', 'name', 'Social Security Office (Thailand)'),
(73855, 62101, 'de', 'name', 'Staatsinstitut für Frühpädagogik'),
(73856, 62101, 'en', 'name', 'Institute of Early Childhood Research'),
(73857, 62102, 'no_lang_code', 'name', 'Network Foundation Technologies (United States)'),
(73858, 62103, 'no_lang_code', 'name', 'Safety Management Systems Aotearoa (New Zealand)'),
(73859, 62104, 'nl', 'name', 'HSK Groep'),
(73860, 62105, 'en', 'name', 'Deyang Stomatological Hospital'),
(73861, 62105, 'zh', 'name', 'å¾·é˜³å£č…”åŒ»é™¢'),
(73862, 62106, 'en', 'name', 'Discovery Center of Idaho'),
(73863, 62107, 'no_lang_code', 'name', 'Hamburg Port Consulting (Germany)'),
(73864, 62108, 'en', 'name', 'Association of the British Pharmaceutical Industry'),
(73865, 62109, 'en', 'name', 'TargetCancer Foundation'),
(73866, 62110, 'en', 'name', 'Asian Institute of Medical Sciences'),
(73867, 62111, 'en', 'name', 'Ottawa Fertility Centre'),
(73868, 62111, 'fr', 'name', 'Centre de fertilitƩ d''Ottawa'),
(73869, 62112, 'en', 'name', 'Health & Motion'),
(73870, 62113, 'en', 'name', 'RDS Partners'),
(73871, 62114, 'en', 'name', 'Maralinga Tjarutja'),
(73872, 62115, 'no_lang_code', 'name', 'Caduceus Intelligence Corporation (United States)'),
(73873, 62116, 'es', 'name', 'Hospital Regional de Concepción'),
(73874, 62117, 'no_lang_code', 'name', 'Willow Wood (United States)'),
(73875, 62118, 'de', 'name', 'Stiftung Chance, Stiftung Chance für das kritisch kranke Kind'),
(73876, 62119, 'ar', 'name', 'مجلس الخدمة Ų§Ł„Ł…ŲÆŁ†ŁŠŲ©'),
(73877, 62119, 'en', 'name', 'Civil Service Council'),
(73878, 62120, 'en', 'name', 'Cancer Centers of Southwest Oklahoma'),
(73879, 62121, 'no_lang_code', 'name', 'Columbia Asia'),
(73880, 62122, 'de', 'name', 'Moritz Klinik'),
(73881, 62123, 'da', 'name', 'Instituttet for Blinde og Svagsynede'),
(73882, 62123, 'en', 'name', 'Institute for the Blind and Partially Sighted'),
(73883, 62124, 'en', 'name', 'Barney''s Pharmacy'),
(73884, 62125, 'no_lang_code', 'name', 'Molteni Farmaceutici (Italy)'),
(73885, 62126, 'en', 'name', 'Delray Medical Center'),
(73886, 62127, 'en', 'name', 'Interuniversity Graduate School of Psychometrics and Sociometrics'),
(73887, 62128, 'de', 'name', 'St. Hedwig-Krankenhaus'),
(73888, 62129, 'no_lang_code', 'name', 'Glaukos (United States)'),
(73889, 62130, 'es', 'name', 'Fundación Neumológica Colombiana'),
(73890, 62131, 'en', 'name', 'Skin Science Institute'),
(73891, 62132, 'en', 'name', 'Laguna Research'),
(73892, 62133, 'fr', 'name', 'Institut Paul Bocuse'),
(73893, 62134, 'en', 'name', 'The 21st Century Partnership for STEM Education'),
(73894, 62135, 'en', 'name', 'Imperial College London Diabetes Centre'),
(73895, 62136, 'en', 'name', 'The Institute of Addiction Medicine'),
(73896, 62137, 'en', 'name', 'Sun Research Institute'),
(73897, 62138, 'en', 'name', 'Health Strategy and Policy Institute'),
(73898, 62138, 'vi', 'name', 'Viện Chiįŗæn lược vĆ  ChĆ­nh sĆ”ch Y tįŗæ'),
(73899, 62139, 'no_lang_code', 'name', 'SkƄnemejerier (Sweden)'),
(73900, 62140, 'en', 'name', 'Kaiser Permanente Gaithersburg Medical Center'),
(73901, 62141, 'en', 'name', 'Canadian Sugar Institute'),
(73902, 62142, 'en', 'name', 'De Cavel Family SIDS Foundation'),
(73903, 62143, 'en', 'name', 'Doctors with Africa Cuamm'),
(73904, 62143, 'it', 'name', 'Medici con l’Africa Cuamm'),
(73905, 62144, 'en', 'name', 'National Association of Statutory Health Insurance Physicians'),
(73906, 62145, 'en', 'name', 'City Clinical Oncology Center'),
(73907, 62145, 'ru', 'name', 'ГороГской клинический онкологический Гиспансер'),
(73908, 62146, 'en', 'name', 'The Stop ALD Foundation'),
(73909, 62147, 'pt', 'name', 'Instituto de CiĆŖncias FarmacĆŖuticas'),
(73910, 62148, 'en', 'name', 'Pacific Fertility Center'),
(73911, 62149, 'da', 'name', 'Kong Christian X''s Gigthospital'),
(73912, 62150, 'en', 'name', 'Shahid Gangalal National Heart Centre'),
(73913, 62151, 'en', 'name', 'The Korean Academy of Tuberculosis and Respiratory Diseases'),
(73914, 62152, 'no_lang_code', 'name', 'Univercell-Biosolutions (France)'),
(73915, 62153, 'de', 'name', 'Laserklinik Karlsruhe'),
(73916, 62154, 'en', 'name', 'Brisbane Hand & Upper Limb Research Institute'),
(73917, 62155, 'en', 'name', 'Suburban Community Hospital'),
(73918, 62156, 'nl', 'name', 'Stichting Wetenschappelijk Onderzoek het Oogziekenhuis'),
(73919, 62157, 'en', 'name', 'Vignana Jyothi Institute of Management'),
(73920, 62158, 'no_lang_code', 'name', 'Baxter (Italy)'),
(73921, 62159, 'de', 'name', 'ZahnƤrzte an der Kleinmachnower Schleuse Stahnsdorf'),
(73922, 62160, 'en', 'name', 'Elementary Institute of Science'),
(73923, 62161, 'en', 'name', 'Leipzig Heart Institute'),
(73924, 62162, 'nl', 'name', 'GGD West-Brabant, Gemeentelijke gezondheidsdienst West-Brabant'),
(73925, 62163, 'no_lang_code', 'name', 'Dr. Loges (Germany)'),
(73926, 62164, 'en', 'name', 'Boulder Neurosurgical & Spine Associates'),
(73927, 62165, 'da', 'name', 'Dansk Cardiologisk Selskab'),
(73928, 62165, 'en', 'name', 'Danish Society of Cardiology'),
(73929, 62166, 'en', 'name', 'Institute for Learning Innovation'),
(73930, 62167, 'en', 'name', 'VitalStrategic Research Institute'),
(73931, 62168, 'en', 'name', 'Mon Health Medical Center'),
(73932, 62169, 'en', 'name', 'Ministry of National Health Services Regulation and Coordination'),
(73933, 62169, 'ur', 'name', 'وزارت ŲµŲ­ŲŖā€Žā€Ž'),
(73934, 62170, 'en', 'name', 'Jesse & Julie Rasch Foundation'),
(73935, 62171, 'en', 'name', 'Mountview Theatre School'),
(73936, 62172, 'en', 'name', 'St. Agnes Hospital'),
(73937, 62173, 'en', 'name', 'Abrams Eye Institute'),
(73938, 62174, 'en', 'name', 'NHS Dumfries and Galloway'),
(73939, 62174, 'gd', 'name', 'Bòrd SSN Dùn Phris agus an Gall-Ghaidhealaibh'),
(73940, 62175, 'de', 'name', 'Zentrum Überleben'),
(73941, 62176, 'de', 'name', 'Integrierte Psychiatrie Winterthur'),
(73942, 62177, 'en', 'name', 'VA Nasonova Scientific Research Institute of Rheumatology'),
(73943, 62177, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ревматологии Š¤Š”Š‘Š”Š˜. Вице-аГмирал ŠŠ°ŃŠ¾Š½Š¾Š²Š°Ā»'),
(73944, 62178, 'en', 'name', 'Cancer Clinic'),
(73945, 62179, 'en', 'name', 'ESE University Hospital San Jorge Pereira'),
(73946, 62180, 'it', 'name', 'Istituto delle Scienze Neurologiche di Bologna'),
(73947, 62181, 'de', 'name', 'Poliklinik für Präventive Zahnheilkunde und Kinderzahnheilkunde'),
(73948, 62182, 'no_lang_code', 'name', 'Innovacell Biotechnologie (Austria)'),
(73949, 62183, 'de', 'name', 'Bundesverband Deutscher ApothekerverbƤnde'),
(73950, 62183, 'en', 'name', 'Federal Union of German Associations of Pharmacists'),
(73951, 62184, 'en', 'name', 'Aboriginal Health Council of South Australia'),
(73952, 62185, 'de', 'name', 'Lungenheilkunde München-Pasing'),
(73953, 62186, 'no_lang_code', 'name', 'Zogenix (United Kingdom)'),
(73954, 62187, 'en', 'name', 'Zankli Medical Centre'),
(73955, 62188, 'en', 'name', 'NeuroModulation Technique'),
(73956, 62189, 'en', 'name', 'Cyber Innovation Center'),
(73957, 62190, 'en', 'name', 'Memorial Health System'),
(73958, 62191, 'en', 'name', 'Institute of Health Management Pachod'),
(73959, 62192, 'it', 'name', 'Consorzio Interuniversitario ReattivitĆ  Chimica e Catalisi'),
(73960, 62193, 'en', 'name', 'Desert Institute For Spine Care'),
(73961, 62194, 'en', 'name', 'MedDerm Associates'),
(73962, 62195, 'en', 'name', 'Institute for Advanced Laser Dentistry'),
(73963, 62196, 'en', 'name', 'The Taiwanese Osteoporosis Association'),
(73964, 62196, 'zh', 'name', 'äø­čÆę°‘åœ‹éŖØč³Ŗē–é¬†ē—‡å­øęœƒ'),
(73965, 62197, 'en', 'name', 'Australian Farm Institute'),
(73966, 62198, 'no_lang_code', 'name', 'Alfasigma (Italy)'),
(73967, 62199, 'no_lang_code', 'name', 'Dentaid (Spain)'),
(73968, 62200, 'en', 'name', 'German Protestant Institute of Archaeology'),
(73969, 62200, 'he', 'name', 'Deutsche Evangelische Institut für Altertumswissenschaft'),
(73970, 62201, 'no_lang_code', 'name', 'Medspray (Netherlands)'),
(73971, 62202, 'en', 'name', 'Methodist Children’s Hospital'),
(73972, 62203, 'en', 'name', 'M.S.I. Foundation'),
(73973, 62204, 'en', 'name', 'Kim''s Eye Hospital'),
(73974, 62204, 'ko', 'name', 'é‡‘ēœ¼ē§‘ē—…é™¢'),
(73975, 62205, 'en', 'name', 'Clinical Evaluation Research Unit'),
(73976, 62206, 'en', 'name', 'Roessingh Concern'),
(73977, 62207, 'de', 'name', 'Arbeitsgemeinschaft Urologische Onkologie'),
(73978, 62208, 'fr', 'name', 'HƓpital PrivƩ Jean Mermo'),
(73979, 62209, 'no_lang_code', 'name', 'Advantageous Systems (United States)'),
(73980, 62210, 'en', 'name', 'Psychotherapy & Movement'),
(73981, 62211, 'no_lang_code', 'name', 'Meda (Germany)'),
(73982, 62212, 'no_lang_code', 'name', 'Edison Agrosciences (United States)'),
(73983, 62213, 'en', 'name', 'The Football Association'),
(73984, 62214, 'de', 'name', 'Stiftung Irene'),
(73985, 62215, 'en', 'name', 'International Society for Applied Cardiovascular Biology'),
(73986, 62216, 'en', 'name', 'Russian Society of Cardiology'),
(73987, 62216, 'ru', 'name', 'Российское карГиологическое общество'),
(73988, 62217, 'no_lang_code', 'name', 'Stryker (Netherlands)'),
(73989, 62218, 'en', 'name', 'Noran Neurological Clinic'),
(73990, 62219, 'en', 'name', 'Turner Eye Institute'),
(73991, 62220, 'en', 'name', 'St. Joseph Heritage Medical Group'),
(73992, 62221, 'no_lang_code', 'name', 'Stryker (Japan)'),
(73993, 62222, 'en', 'name', 'The Piton Foundation'),
(73994, 62223, 'id', 'name', 'Rumah Sakit Umum Haji Surabaya'),
(73995, 62224, 'de', 'name', 'St. Vinzenz Kliniken Pfronten im AllgƤu'),
(73996, 62225, 'en', 'name', 'Knowledge Centre for Sport Netherlands'),
(73997, 62225, 'nl', 'name', 'Kenniscentrum Sport'),
(73998, 62226, 'en', 'name', 'National Asociation of General Practitioners in Bulgaria'),
(73999, 62227, 'en', 'name', 'The Centre of Chinese Medicine'),
(74000, 62228, 'en', 'name', 'International Association for Human Values'),
(74001, 62229, 'en', 'name', 'CHRISTUS St. Vincent Regional Cancer Center'),
(74002, 62230, 'en', 'name', 'PrimaryPlus'),
(74003, 62231, 'en', 'name', 'Bucci Laser Vision Institute'),
(74004, 62232, 'en', 'name', 'Children''s Hospital at Saint Francis'),
(74005, 62233, 'de', 'name', 'Deutsches Institut für Telemedizin und Gesundheitsförderung'),
(74006, 62234, 'en', 'name', 'Ohio Pediatric Research Association'),
(74007, 62235, 'en', 'name', 'Behavioral Health of the Palm Beaches'),
(74008, 62236, 'no_lang_code', 'name', 'Eurosets (Italy)'),
(74009, 62237, 'en', 'name', 'New Jersey Psychological Association'),
(74010, 62238, 'en', 'name', 'China Soong Ching Ling Foundation'),
(74011, 62239, 'bg', 'name', 'Университетската многопрофилна болница за активно лечение ā€žŠ”Š²ŠµŃ‚Šø Š“ŠµŠ¾Ń€Š³Šøā€œ'),
(74012, 62239, 'en', 'name', 'University Multipurpose Hospital for Active Treatment "Sveti Georgi"'),
(74013, 62240, 'de', 'name', 'Marienkrankenhaus Hamburg'),
(74014, 62241, 'no_lang_code', 'name', 'Northern Therapeutics (Canada)'),
(74015, 62242, 'en', 'name', 'Physician’s Hair Institute'),
(74016, 62243, 'no_lang_code', 'name', 'OBS Medical (United Kingdom)'),
(74017, 62244, 'en', 'name', 'Regenerative Medicine Institute'),
(74018, 62245, 'de', 'name', 'Krebsgesellschaft Nordrhein-Westfalen'),
(74019, 62246, 'en', 'name', 'Usenix Association'),
(74020, 62247, 'en', 'name', 'Union Settlement'),
(74021, 62248, 'en', 'name', 'Telluride Science Research Center'),
(74022, 62249, 'no_lang_code', 'name', 'Phonak (Germany)'),
(74023, 62250, 'en', 'name', 'California Liver Research Institute'),
(74024, 62251, 'en', 'name', 'National Parks Conservation Association'),
(74025, 62252, 'no_lang_code', 'name', 'Gilead Sciences (Spain)'),
(74026, 62253, 'no_lang_code', 'name', 'Luye Pharma (Switzerland)'),
(74027, 62254, 'de', 'name', 'Brost Stiftung'),
(74028, 62255, 'en', 'name', 'Idaho Urologic Institute'),
(74029, 62256, 'no_lang_code', 'name', 'Guz "Tul''skiy Oblastnoy Onkologicheskiy Dispanser'),
(74030, 62257, 'en', 'name', 'Vancouver Clinic'),
(74031, 62258, 'en', 'name', 'Arizona Pain Specialists'),
(74032, 62259, 'en', 'name', 'Bulgarian Cardiac Institute'),
(74033, 62260, 'no_lang_code', 'name', 'Devicia (Sweden)'),
(74034, 62261, 'en', 'name', 'Gibson Institute of Cognitive Research'),
(74035, 62262, 'en', 'name', 'The Farah Hospital'),
(74036, 62263, 'en', 'name', 'Larue Carter Hospital'),
(74037, 62264, 'nl', 'name', 'Volandis'),
(74038, 62265, 'es', 'name', 'Liga Nacional Contra el CƔncer'),
(74039, 62266, 'en', 'name', 'National Institute of Neurosciences & Hospital'),
(74040, 62267, 'no_lang_code', 'name', 'Applied Scientific Research (United States)'),
(74041, 62268, 'en', 'name', 'Cornea Eye Institute'),
(74042, 62269, 'en', 'name', 'Libin Cardiovascular Institute of Alberta'),
(74043, 62270, 'no_lang_code', 'name', 'Hollister (Germany)'),
(74044, 62271, 'en', 'name', 'Columbus Center'),
(74045, 62272, 'en', 'name', 'Nepal Red Cross Society'),
(74046, 62273, 'en', 'name', 'Gordon Schanzlin New Vision Institute'),
(74047, 62274, 'en', 'name', 'Program Support Center'),
(74048, 62275, 'en', 'name', 'Addiction Research Foundation'),
(74049, 62276, 'nl', 'name', 'Stichting Weeshuis der Doopsgezinden'),
(74050, 62277, 'no_lang_code', 'name', 'Novitas BKK (Germany)'),
(74051, 62278, 'en', 'name', 'Ministry Of Health'),
(74052, 62279, 'en', 'name', 'Xi''an Botanical Garden of Shaanxi Province'),
(74053, 62279, 'zh', 'name', 'é™•č„æč„æå®‰ę¤ē‰©å›­'),
(74054, 62280, 'en', 'name', 'The Loka Institute'),
(74055, 62281, 'de', 'name', 'UniversitƤtsklinikum Krems'),
(74056, 62282, 'en', 'name', 'Barrow Brain and Spine'),
(74057, 62283, 'no_lang_code', 'name', 'Equilab International (Indonesia)'),
(74058, 62284, 'no_lang_code', 'name', 'Seven Bridges Genomics (United States)'),
(74059, 62285, 'no_lang_code', 'name', 'Medication Management (United States)'),
(74060, 62286, 'de', 'name', 'Helios UniversitƤtsklinikum Wuppertal'),
(74061, 62287, 'fr', 'name', 'Ligue Pulmonaire Genevoise'),
(74062, 62288, 'el', 'name', 'Ελληνική Εταιρεία Χημειοθεραπείας'),
(74063, 62288, 'en', 'name', 'Hellenic Society for Chemotherapy'),
(74064, 62289, 'fr', 'name', 'Centre Hospitalier d''AngoulĆŖme'),
(74065, 62290, 'en', 'name', 'Karen Horney Institut'),
(74066, 62291, 'en', 'name', 'ShangHai JiAi Genetics & IVF Institute'),
(74067, 62291, 'zh', 'name', 'äøŠęµ·å‰ēˆ±é—ä¼ äøŽä½“å¤–å—ē²¾ē ”ē©¶ę‰€'),
(74068, 62292, 'en', 'name', 'Southeast Renal Research Institute'),
(74069, 62293, 'en', 'name', 'US Cancer Management Corporation'),
(74070, 62294, 'en', 'name', 'University of Hawaii Maui College'),
(74071, 62295, 'no_lang_code', 'name', 'Cliantha (India)'),
(74072, 62296, 'en', 'name', 'Sinus & Respiratory Disease Center'),
(74073, 62297, 'en', 'name', 'Gansu Research Academy of Forestry Science and Technology'),
(74074, 62297, 'zh', 'name', 'ē”˜č‚ƒęž—äøšē§‘ęŠ€ē ”ē©¶é™¢'),
(74075, 62298, 'de', 'name', 'Rehaklinik Glotterbad'),
(74076, 62299, 'no_lang_code', 'name', 'Sewon Cellontech (South Korea)'),
(74077, 62300, 'nl', 'name', 'Depressie Vereniging'),
(74078, 62301, 'en', 'name', 'Virtual Reality Medical Center'),
(74079, 62302, 'en', 'name', 'Ronan Thompson Foundation'),
(74080, 62303, 'en', 'name', 'Eyehope'),
(74081, 62304, 'bs', 'name', 'Nacionalna i univerzitetska biblioteka Bosne i Hercegovine'),
(74082, 62304, 'en', 'name', 'National and University Library of Bosnia and Herzegovina'),
(74083, 62304, 'sr', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Šø ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ŃŠŗŠ° библиотека Босне Šø Єерцеговине'),
(74084, 62305, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Netherlands)'),
(74085, 62306, 'en', 'name', 'Cardiovascular Research Center'),
(74086, 62307, 'en', 'name', 'Lions Eye Bank at Albany'),
(74087, 62308, 'no_lang_code', 'name', 'Hemics (Netherlands)'),
(74088, 62309, 'en', 'name', 'Kansas City Research Institute'),
(74089, 62310, 'en', 'name', 'Innovation Research Center'),
(74090, 62311, 'no_lang_code', 'name', 'Mathys (Switzerland)'),
(74091, 62312, 'en', 'name', 'The Brewers of Spain'),
(74092, 62312, 'es', 'name', 'Cerveceros de EspaƱa'),
(74093, 62313, 'de', 'name', 'Gemeinschaftskrankenhaus Havelhƶhe'),
(74094, 62314, 'no_lang_code', 'name', 'BQS Institut für Qualität und Patientensicherheit (Germany)'),
(74095, 62315, 'en', 'name', 'Northern Cancer Institute'),
(74096, 62316, 'en', 'name', 'Wound Healing Society'),
(74097, 62317, 'en', 'name', 'Pacific Tuberculosis and Cancer Research'),
(74098, 62318, 'en', 'name', 'Heart Valve Society of America'),
(74099, 62319, 'en', 'name', 'NeuroVita Clinic'),
(74100, 62319, 'ru', 'name', 'Клиника ŠŠµŠ¹Ń€Š¾Š²ŠøŃ‚а'),
(74101, 62320, 'en', 'name', 'League of European Research Universities'),
(74102, 62321, 'en', 'name', 'Castanera Institute of Ophthalmology'),
(74103, 62321, 'es', 'name', 'Instituto de OftalmologĆ­a Castanera'),
(74104, 62322, 'fr', 'name', 'Association Nationale pour le Developpement de la QualitƩ Dans les HƓpitaux et Les Cliniques'),
(74105, 62323, 'en', 'name', 'Palynological Society'),
(74106, 62324, 'en', 'name', 'Center for Neurologic Study'),
(74107, 62325, 'no_lang_code', 'name', 'AXA Health (United Kingdom)'),
(74108, 62326, 'en', 'name', 'Southwest Kidney Institute'),
(74109, 62327, 'en', 'name', 'Fuzhou Second Hospital'),
(74110, 62327, 'zh', 'name', 'ē¦å·žåø‚ē¬¬äŗŒåŒ»é™¢'),
(74111, 62328, 'en', 'name', 'Surya Chest Foundation'),
(74112, 62329, 'en', 'name', 'National Cancer Institute'),
(74113, 62330, 'de', 'name', 'Stiftung Tumorforschung Kopf-Hals'),
(74114, 62331, 'it', 'name', 'Istituto Europeo di Microchirurgia Oculare'),
(74115, 62332, 'en', 'name', 'Rare Cancers Australia'),
(74116, 62333, 'no_lang_code', 'name', 'Roche (Hungary)'),
(74117, 62334, 'en', 'name', 'Cairns Professional Game Fishing Association'),
(74118, 62335, 'en', 'name', 'Aegean Conferences'),
(74119, 62336, 'en', 'name', 'Reach-Aut Academic Centre for Autism'),
(74120, 62337, 'no_lang_code', 'name', 'Accutest (India)'),
(74121, 62338, 'en', 'name', 'Weisenthal Cancer Group'),
(74122, 62339, 'no_lang_code', 'name', 'Ophtec (Netherlands)'),
(74123, 62340, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ Ś©Ų§Ł…ŪŒŲ§ŲØ'),
(74124, 62340, 'no_lang_code', 'name', 'Shahid Kamyab Hospital'),
(74125, 62341, 'en', 'name', 'Lakeland Community Hospital'),
(74126, 62342, 'ro', 'name', 'Spitalul Universitar de Urgență Elias'),
(74127, 62343, 'no_lang_code', 'name', 'Oliak Center'),
(74128, 62344, 'no_lang_code', 'name', 'IntellADAPT (United States)'),
(74129, 62345, 'en', 'name', 'Horizon House'),
(74130, 62346, 'no_lang_code', 'name', 'Twist Bioscience (United States)'),
(74131, 62347, 'en', 'name', 'Pyatigorsk Oncology Center'),
(74132, 62347, 'ru', 'name', 'ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ онкологический Гиспансер'),
(74133, 62348, 'no_lang_code', 'name', 'Disphar International (Netherlands)'),
(74134, 62349, 'en', 'name', 'Sudan Medical Specialization Board'),
(74135, 62350, 'no_lang_code', 'name', 'Nutrition & SantƩ (Spain)'),
(74136, 62351, 'en', 'name', 'Peninsula Cancer Center'),
(74137, 62352, 'en', 'name', 'Hermann Buhl Institut'),
(74138, 62353, 'en', 'name', 'Community Hospital of Anaconda'),
(74139, 62354, 'en', 'name', 'Virginia Gastroenterology Institute'),
(74140, 62355, 'nl', 'name', 'Nederlandse Vereniging voor Acupunctuur'),
(74141, 62356, 'no_lang_code', 'name', 'Univa (United States)'),
(74142, 62357, 'en', 'name', 'Chhattisgarh Dental College & Research Institute'),
(74143, 62358, 'de', 'name', 'KRH Klinikum Agnes Karll Laatzen'),
(74144, 62359, 'no_lang_code', 'name', 'Mid Michigan Research (United States)'),
(74145, 62360, 'en', 'name', 'Xerces Society'),
(74146, 62361, 'en', 'name', 'Firma Clinical Research'),
(74147, 62362, 'no_lang_code', 'name', 'Allergan (Taiwan)'),
(74148, 62363, 'en', 'name', 'Syrentis Clinical Research'),
(74149, 62364, 'en', 'name', 'Wisconsin Elks Association'),
(74150, 62365, 'de', 'name', 'UniversitƤts Frauenklinik'),
(74151, 62366, 'en', 'name', 'Oceanic Research Group'),
(74152, 62367, 'bn', 'name', 'ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ą¦†ą¦‡ą¦øą¦æą¦Ÿą¦æ বাংলাদেশ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(74153, 62367, 'en', 'name', 'Bangladesh Institute of ICT in Development'),
(74154, 62368, 'no_lang_code', 'name', 'Vascular Insights (United States)'),
(74155, 62369, 'en', 'name', 'Bay Area Retina Associates'),
(74156, 62370, 'no_lang_code', 'name', 'Bayer (Italy)'),
(74157, 62371, 'no_lang_code', 'name', 'International Pemphigus & Pemphigoid Foundation'),
(74158, 62372, 'en', 'name', 'Hilo Medical Center'),
(74159, 62373, 'nl', 'name', 'Jellinek'),
(74160, 62374, 'en', 'name', 'Houston Museum of Natural Science'),
(74161, 62375, 'nl', 'name', 'Lygature'),
(74162, 62376, 'en', 'name', 'Texas Dermatology and Laser Specialists'),
(74163, 62377, 'en', 'name', 'Main Line Fertility'),
(74164, 62378, 'en', 'name', 'Ainsworth Institute of Pain Management'),
(74165, 62379, 'en', 'name', 'Comprehensive Blood & Cancer Center'),
(74166, 62380, 'en', 'name', 'Life Extension Foundation'),
(74167, 62381, 'en', 'name', 'Irish Society of Chartered Physiotherapists'),
(74168, 62382, 'de', 'name', 'Universitätsklinik für Strahlentherapie'),
(74169, 62383, 'es', 'name', 'Fecunditas Instituto de Medicina Reproductiva'),
(74170, 62384, 'nl', 'name', 'Rugpoli'),
(74171, 62385, 'no_lang_code', 'name', 'Pharmaxis (United Kingdom)'),
(74172, 62386, 'de', 'name', 'Deutsche Rheuma-Liga'),
(74173, 62387, 'no_lang_code', 'name', 'Nexmatix (United States)'),
(74174, 62388, 'en', 'name', 'Stem Cell Institute'),
(74175, 62389, 'en', 'name', 'Orenburg Regional Clinical Oncology Center'),
(74176, 62389, 'ru', 'name', 'ŠžŃ€ŠµŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ областной клинический онкологический Гиспансер'),
(74177, 62390, 'en', 'name', 'American Society for Apheresis'),
(74178, 62391, 'no_lang_code', 'name', 'Scientific Imaging and Visualization (United States)'),
(74179, 62392, 'no_lang_code', 'name', 'CasaLuker (Colombia)'),
(74180, 62393, 'nl', 'name', 'Sport Medisch Centrum Papendal'),
(74181, 62394, 'es', 'name', 'Hospitales Nisa'),
(74182, 62395, 'en', 'name', 'Success for All Foundation'),
(74183, 62396, 'en', 'name', 'Council for Opportunity in Education'),
(74184, 62397, 'fr', 'name', 'Clinique du Pont Saint-Vaast'),
(74185, 62398, 'no_lang_code', 'name', 'Pulmonx (Switzerland)'),
(74186, 62399, 'en', 'name', 'Scientists Center for Animal Welfare'),
(74187, 62400, 'en', 'name', 'Yin Huo Health Association'),
(74188, 62400, 'zh', 'name', 'é“¶ē«å„åŗ·åä¼š'),
(74189, 62401, 'en', 'name', 'Pain Cure Center'),
(74190, 62402, 'no_lang_code', 'name', 'Mathys (Germany)'),
(74191, 62403, 'no_lang_code', 'name', 'Ivoclar Vivadent (Germany)'),
(74192, 62404, 'en', 'name', 'Clinical Pharmacology of Miami'),
(74193, 62405, 'no_lang_code', 'name', 'Shionogi (United States)'),
(74194, 62406, 'en', 'name', 'Samnium Medica'),
(74195, 62407, 'en', 'name', 'National Foundation for Autism Research'),
(74196, 62408, 'en', 'name', 'Central Carolina Technical College'),
(74197, 62409, 'en', 'name', 'South Coast Dermatology Institute'),
(74198, 62410, 'en', 'name', 'Osaka Prefectural Government'),
(74199, 62410, 'ja', 'name', '大阪府'),
(74200, 62411, 'no_lang_code', 'name', 'Advanced Sports Installations (Estonia)'),
(74201, 62412, 'en', 'name', 'Her Many Voices Foundation'),
(74202, 62413, 'no_lang_code', 'name', 'CameraPil (Netherlands)'),
(74203, 62414, 'no_lang_code', 'name', 'Sanofi (Argentina)'),
(74204, 62415, 'en', 'name', 'Lake Erie Research Institute'),
(74205, 62416, 'de', 'name', 'ARCUS Sportkliniken'),
(74206, 62416, 'en', 'name', 'ARCUS Sports Clinic'),
(74207, 62417, 'en', 'name', 'Northern California Melanoma Center'),
(74208, 62418, 'en', 'name', 'QUIRIS Healthcare'),
(74209, 62419, 'no_lang_code', 'name', 'Crospon (Ireland)'),
(74210, 62420, 'en', 'name', 'Door County Medical Center'),
(74211, 62421, 'no_lang_code', 'name', 'Nano Hydrophobics (United States)'),
(74212, 62422, 'en', 'name', 'Buildings Performance Institute Europe'),
(74213, 62423, 'nl', 'name', 'Amstelring'),
(74214, 62424, 'en', 'name', 'Jinan Municipal Environmental Protection Bureau'),
(74215, 62424, 'zh', 'name', 'ęµŽå—åø‚ēŽÆäæå±€'),
(74216, 62425, 'en', 'name', 'Community Living'),
(74217, 62426, 'en', 'name', 'European Pathway Association'),
(74218, 62427, 'en', 'name', 'International Heart and Lung Institute'),
(74219, 62428, 'nl', 'name', 'Stichting Afasie Nederland'),
(74220, 62429, 'no_lang_code', 'name', 'Octapharma (France)'),
(74221, 62430, 'no_lang_code', 'name', 'Horizon Communications (United States)'),
(74222, 62431, 'no_lang_code', 'name', 'Almased (Germany)'),
(74223, 62432, 'de', 'name', 'Institut für Klinisch Onkologische Forschung'),
(74224, 62432, 'en', 'name', 'Institute of Clinical Cancer Research'),
(74225, 62433, 'en', 'name', 'Plano Cancer Institute'),
(74226, 62434, 'no_lang_code', 'name', 'QD Laser (Germany)'),
(74227, 62435, 'no_lang_code', 'name', 'Bauerfeind (Germany)'),
(74228, 62436, 'en', 'name', 'Taiwan Association of Gynecologic Oncologists'),
(74229, 62437, 'en', 'name', 'Dutch Endovascular Alliance'),
(74230, 62438, 'it', 'name', 'Epatocentro Ticino'),
(74231, 62439, 'es', 'name', 'Centro Cultural de EspaƱa en Malabo'),
(74232, 62440, 'no_lang_code', 'name', 'Plethora Solutions (United Kingdom)'),
(74233, 62441, 'pt', 'name', 'Faculdade de Medicina de Petrópolis'),
(74234, 62442, 'en', 'name', 'SoutheastHEALTH'),
(74235, 62443, 'en', 'name', 'Association of Oncology Social Work'),
(74236, 62444, 'en', 'name', 'Zhejiang University Medical College Affiliated Stomatological Hospital'),
(74237, 62444, 'zh', 'name', 'ęµ™ę±Ÿå¤§å­¦åŒ»å­¦é™¢é™„å±žå£č…”åŒ»é™¢'),
(74238, 62445, 'en', 'name', 'Vietnam Heart Association'),
(74239, 62445, 'vi', 'name', 'Hį»™i Tim mįŗ”ch hį»c Việt Nam'),
(74240, 62446, 'no_lang_code', 'name', 'Sydney Fish Market (Australia)'),
(74241, 62447, 'en', 'name', 'Vision Impact Institute'),
(74242, 62448, 'en', 'name', 'Metal Powder Industries Federation'),
(74243, 62449, 'no_lang_code', 'name', 'Morphotek (United States)'),
(74244, 62450, 'en', 'name', 'Orthopaedic Institute of Western Kentucky'),
(74245, 62451, 'en', 'name', 'The Korean Society of Blood and Marrow Transplantation'),
(74246, 62451, 'ko', 'name', 'ėŒ€ķ•œ ķ˜ˆģ•” ģˆœķ™˜ ķ•™ķšŒ'),
(74247, 62452, 'en', 'name', 'Budgetary Healthcare Institution of Omsk Region Regional Clinical Hospital'),
(74248, 62453, 'en', 'name', 'St. Petersburg State Health Care Foundation "Mariinsky City Hospital"'),
(74249, 62454, 'en', 'name', 'Belgian Burn Foundation'),
(74250, 62455, 'en', 'name', 'Franciscan Health Mooresville'),
(74251, 62456, 'nl', 'name', 'Maatschap Friese Longartsen'),
(74252, 62457, 'no_lang_code', 'name', 'K-Implant (Germany)'),
(74253, 62458, 'no_lang_code', 'name', 'Inter-Mountain Laboratories (United States)'),
(74254, 62459, 'en', 'name', 'Amita Health'),
(74255, 62460, 'en', 'name', 'Brain Tumour Alliance Australia'),
(74256, 62461, 'de', 'name', 'Willkommen in den IVF Zentren Prof. Zech'),
(74257, 62461, 'en', 'name', 'IVF Centers Prof. Zech'),
(74258, 62462, 'de', 'name', 'Schweizerische Ƅrztegesellschaft für Psycholytische Therapie'),
(74259, 62463, 'en', 'name', 'Bijhem Scientific'),
(74260, 62464, 'en', 'name', 'KaRaMinds'),
(74261, 62465, 'en', 'name', 'Community Ministry of Prince George’s County'),
(74262, 62466, 'no_lang_code', 'name', 'Innovative Technology Laboratories (United States)'),
(74263, 62467, 'no_lang_code', 'name', 'Revenue Management Solutions (United States)'),
(74264, 62468, 'de', 'name', 'Eifelklinik Manderscheid'),
(74265, 62469, 'de', 'name', 'Klinik und Poliklinik für Augenheilkunde Universitätsklinikum Regensburg'),
(74266, 62470, 'en', 'name', 'Associated Scientists at Woods Hole'),
(74267, 62471, 'de', 'name', 'Stiftung Empiris'),
(74268, 62472, 'it', 'name', 'Federazione Ordini Farmacisti Italiani'),
(74269, 62473, 'en', 'name', 'Institute for Asthma and Allergy'),
(74270, 62474, 'en', 'name', 'Tyumen Regional Oncological Dispensary'),
(74271, 62474, 'ru', 'name', 'Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(74272, 62475, 'de', 'name', 'Vitos OrthopƤdische Klinik Kassel'),
(74273, 62475, 'en', 'name', 'Vitos Orthopedic Clinic Kassel'),
(74274, 62476, 'en', 'name', 'Science Club'),
(74275, 62477, 'en', 'name', 'Chartered Institute of Housing'),
(74276, 62478, 'en', 'name', 'Omair Sana Foundation'),
(74277, 62479, 'no_lang_code', 'name', 'Finn Partners (United States)'),
(74278, 62480, 'fr', 'name', 'Centre Hospitalier InterrƩgional Edith Cavell'),
(74279, 62481, 'en', 'name', 'Planet Water Foundation'),
(74280, 62482, 'no_lang_code', 'name', 'AppScale (United States)'),
(74281, 62483, 'en', 'name', 'Western Sky Medical Research'),
(74282, 62484, 'no_lang_code', 'name', 'Wadsworth Golf Construction Company (United States)'),
(74283, 62485, 'no_lang_code', 'name', 'Art & Science Productions (United States)'),
(74284, 62486, 'en', 'name', 'Inflammation Research Foundation'),
(74285, 62487, 'en', 'name', 'Vinnytsya Regional Psychoneurological Hospital named after Academician O.I. Yushchenko'),
(74286, 62488, 'no_lang_code', 'name', 'Insite Medical Technologies (United States)'),
(74287, 62489, 'no_lang_code', 'name', 'VOCO (Germany)'),
(74288, 62490, 'no_lang_code', 'name', 'Acandis (Germany)'),
(74289, 62491, 'en', 'name', 'Holloman Air Force Base'),
(74290, 62492, 'no_lang_code', 'name', 'Clinical Research Consultants (United States)'),
(74291, 62493, 'no_lang_code', 'name', 'Luther Marketing Group (United Kingdom)'),
(74292, 62494, 'en', 'name', 'Amsterdam Institute for International Development'),
(74293, 62495, 'en', 'name', 'Roanoke-Chowan Community College'),
(74294, 62496, 'en', 'name', 'Allergy Asthma Research Institute'),
(74295, 62497, 'nl', 'name', 'Medisch Coƶrdinerend Centrum Omnes'),
(74296, 62498, 'no_lang_code', 'name', 'Helbo Photodynamic Systems (Germany)'),
(74297, 62499, 'es', 'name', 'Insituto de Asistencia Reumatólogica Integral'),
(74298, 62500, 'no_lang_code', 'name', 'A.S. Watson (Netherlands)'),
(74299, 62501, 'en', 'name', 'Thomas John Vision Institute'),
(74300, 62502, 'en', 'name', 'Bharath Hospital & Institute of Oncology'),
(74301, 62503, 'en', 'name', 'Sadir Assistance'),
(74302, 62504, 'en', 'name', 'Mother and Child Foundation'),
(74303, 62505, 'da', 'name', 'Dansk Fertilitetsklinik'),
(74304, 62506, 'es', 'name', 'Ministerio de Salud'),
(74305, 62507, 'ja', 'name', 'ćƒ¦ćƒ¼ć‚·ćƒ¼ćƒ“ćƒ¼ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(74306, 62507, 'no_lang_code', 'name', 'UCB Pharma (Japan)'),
(74307, 62508, 'nl', 'name', 'RINO Zuid'),
(74308, 62509, 'no_lang_code', 'name', 'Shanghai Han Guan Bio Chip (China)'),
(74309, 62509, 'zh', 'name', 'äøŠęµ·åŽå† ē”Ÿē‰©čŠÆē‰‡ęœ‰é™å…¬åøē®€ä»‹'),
(74310, 62510, 'en', 'name', 'Krongrad Institute'),
(74311, 62511, 'en', 'name', 'Chaminade College Preparatory School'),
(74312, 62512, 'no_lang_code', 'name', 'Heavystone Laboratory (United States)'),
(74313, 62513, 'en', 'name', 'Stafford University'),
(74314, 62514, 'en', 'name', 'Agency for Community Treatment Services'),
(74315, 62515, 'en', 'name', 'Kaiser Permanente West Los Angeles Medical Center'),
(74316, 62516, 'en', 'name', 'Children’s Aid Society of Hamilton'),
(74317, 62517, 'no_lang_code', 'name', 'Mannatech (United States)'),
(74318, 62518, 'en', 'name', 'International Society of Differentiation'),
(74319, 62519, 'es', 'name', 'Asociación Colombiana de Diabetes'),
(74320, 62520, 'no_lang_code', 'name', 'Johnson & Johnson (Hungary)'),
(74321, 62521, 'en', 'name', 'Commit'),
(74322, 62522, 'en', 'name', 'Turkish Society of Hypertension and Renal Diseases'),
(74323, 62522, 'tr', 'name', 'Türk Hipertansiyon ve Böbrek Hastalıkları Derneği'),
(74324, 62523, 'de', 'name', 'Referenzinstitut für Bioanalytik'),
(74325, 62523, 'en', 'name', 'Reference Institute for Bioanalytics'),
(74326, 62524, 'no_lang_code', 'name', 'Baotou Central Hospital'),
(74327, 62524, 'zh', 'name', 'åŒ…å¤“åø‚äø­åæƒåŒ»é™¢'),
(74328, 62525, 'no_lang_code', 'name', 'Cosmos Technologies (United States)'),
(74329, 62526, 'en', 'name', 'Pediatric Blood and Marrow Transplant Foundation'),
(74330, 62527, 'no_lang_code', 'name', 'IONEX Research Corporation (United States)'),
(74331, 62528, 'no_lang_code', 'name', 'Ajinomoto (United States)'),
(74332, 62529, 'nl', 'name', 'Zorggroep Sint Maarten'),
(74333, 62530, 'de', 'name', 'Hernienzentrum Rottenburg am Neckar'),
(74334, 62531, 'no_lang_code', 'name', 'Lycotec (United Kingdom)'),
(74335, 62532, 'en', 'name', 'Malaysian Endocrine and Metabolic Society'),
(74336, 62533, 'en', 'name', 'Minneapolis VA Medical Center'),
(74337, 62534, 'no_lang_code', 'name', 'Vygon (Germany)'),
(74338, 62535, 'en', 'name', 'Kumasi Centre for Collaborative Research in Tropical Medicine'),
(74339, 62536, 'en', 'name', 'Save the Children'),
(74340, 62537, 'en', 'name', 'Vietnamese Voluntary Foundation'),
(74341, 62538, 'en', 'name', 'Primary Industries Education Foundation Australia'),
(74342, 62539, 'en', 'name', 'Shanghai Entry-Exit Inspection and Quarantine Bureau'),
(74343, 62539, 'zh', 'name', 'äøŠęµ·å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(74344, 62540, 'en', 'name', 'San Francisco Zoo'),
(74345, 62541, 'en', 'name', 'American Association of Gynecologic Laparoscopists'),
(74346, 62542, 'pt', 'name', 'Associação Portuguesa de Fertilidade'),
(74347, 62543, 'de', 'name', 'Poliklinik für Zahnärztliche Prothetik'),
(74348, 62544, 'en', 'name', 'The Korean Urological Oncology Society'),
(74349, 62544, 'ko', 'name', 'ķ•œźµ­ 비뇨기 종양 ķ•™ķšŒ'),
(74350, 62545, 'en', 'name', 'American Institute for Afghanistan Studies'),
(74351, 62546, 'no_lang_code', 'name', 'Novum Pharmaceutical Research Services (United States)'),
(74352, 62547, 'no_lang_code', 'name', 'Joimax (Germany)'),
(74353, 62548, 'nl', 'name', 'Diapriva, Diapriva Dialysezentrum Amsterdam'),
(74354, 62549, 'no_lang_code', 'name', 'Elea (Argentina)'),
(74355, 62550, 'no_lang_code', 'name', 'Tower Clinical Trials (United States)'),
(74356, 62551, 'en', 'name', 'American Distance Education Consortium'),
(74357, 62552, 'en', 'name', 'HealthONE'),
(74358, 62553, 'en', 'name', 'Huron Gastro'),
(74359, 62554, 'de', 'name', 'Institut für Therapie- und Gesundheitsforschung'),
(74360, 62554, 'en', 'name', 'Institute for Therapy and Health Research'),
(74361, 62555, 'en', 'name', 'Amiq Institute'),
(74362, 62556, 'no_lang_code', 'name', 'Immundiagnostik (Germany)'),
(74363, 62557, 'en', 'name', 'Toledo Clinic Cancer Center'),
(74364, 62558, 'en', 'name', 'Broome-Tioga Board of Cooperative Educational Services'),
(74365, 62559, 'en', 'name', 'Israeli Society for the Prevention of Heart Attacks'),
(74366, 62560, 'no_lang_code', 'name', 'Centrexion Therapeutics (United States)'),
(74367, 62561, 'en', 'name', 'Palestinian Family Planning and Protection Association'),
(74368, 62562, 'es', 'name', 'Hospital Universitario del Sureste'),
(74369, 62563, 'de', 'name', 'Klinik Lüneburger Heide'),
(74370, 62564, 'en', 'name', 'Boushahri Clinic'),
(74371, 62565, 'de', 'name', 'Hospital zum Heiligen Geist'),
(74372, 62566, 'en', 'name', 'Republican Center for the Prevention and Control of AIDS and Infectious Diseases'),
(74373, 62567, 'de', 'name', 'Aktion Mensch'),
(74374, 62568, 'en', 'name', 'Hong Kong Blood Cancer Foundation'),
(74375, 62568, 'zh', 'name', 'é¦™ęøÆč”€ē™ŒåŸŗé‡‘'),
(74376, 62569, 'en', 'name', 'Moorabbin Hospital'),
(74377, 62570, 'en', 'name', 'Voluntary Health Association of Goa'),
(74378, 62571, 'de', 'name', 'Klinik Rosenberg'),
(74379, 62572, 'fr', 'name', 'SociƩtƩ FranƧaise d''Allergologie'),
(74380, 62573, 'en', 'name', 'Korean Association of Thyroid and Endocrine Surgeons'),
(74381, 62573, 'ko', 'name', 'ėŒ€ķ•œź°‘ģƒģ„ ė‚“ė¶„ė¹„ģ™øź³¼ķ•™ķšŒ'),
(74382, 62574, 'nl', 'name', 'Stichting Erasmus Trustfonds'),
(74383, 62575, 'nl', 'name', 'Nederlands Astmacentrum Davos'),
(74384, 62576, 'nl', 'name', 'Kennisinstituut Bier'),
(74385, 62577, 'nl', 'name', 'Thebe'),
(74386, 62578, 'en', 'name', 'Paoli Hospital'),
(74387, 62579, 'en', 'name', 'Interdisciplinary Dental Education Academy'),
(74388, 62580, 'en', 'name', 'Oncology Institute of Hope and Innovation'),
(74389, 62581, 'no_lang_code', 'name', 'Neomedic International (Spain)'),
(74390, 62582, 'no_lang_code', 'name', 'Smith & Nephew (Switzerland)'),
(74391, 62583, 'en', 'name', 'Jefferson Institute'),
(74392, 62584, 'en', 'name', 'Great Orchestra of Christmas Charity'),
(74393, 62584, 'pl', 'name', 'Wielka Orkiestra Świątecznej Pomocy'),
(74394, 62585, 'no_lang_code', 'name', 'Guangdong Junfeng Spectrum (China)'),
(74395, 62586, 'en', 'name', 'Tribal Nations Research Group'),
(74396, 62587, 'no_lang_code', 'name', 'Zimmer Biomet (Netherlands)');
INSERT INTO `ror_settings` VALUES
(74397, 62588, 'en', 'name', 'The Eye Association Netherlands'),
(74398, 62588, 'nl', 'name', 'Oogvereniging'),
(74399, 62589, 'en', 'name', 'Canadian Orthopaedic Foot and Ankle Society'),
(74400, 62590, 'en', 'name', 'Sts. Mary & Elizabeth Hospital'),
(74401, 62591, 'fr', 'name', 'AMIS FSH'),
(74402, 62592, 'en', 'name', 'Martin Foot and Ankle'),
(74403, 62593, 'en', 'name', 'Copenhagen Prospective Studies on Asthma in Childhood'),
(74404, 62594, 'en', 'name', 'Institute for Patient- and Family-Centered Care'),
(74405, 62595, 'de', 'name', 'Institut für Arbeitsmedizin, Sicherheitstechnik und Ergonomie'),
(74406, 62596, 'es', 'name', 'Policlinica Metropolitana'),
(74407, 62597, 'nl', 'name', 'Stichting Rehabilitatie ā€˜92'),
(74408, 62598, 'no_lang_code', 'name', 'Actelion (Germany)'),
(74409, 62599, 'en', 'name', 'Ocean Institute'),
(74410, 62600, 'nl', 'name', 'Huisartsen Oostelijk Zuid Limburg'),
(74411, 62601, 'en', 'name', 'Down Syndrome Association of Greater Toledo'),
(74412, 62602, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł…ŲµŲ±ŁŠ لأطفال Ų§Ł„Ų£Ł†Ų§ŲØŁŠŲØ'),
(74413, 62602, 'en', 'name', 'The Egyptian IVF-ET Center'),
(74414, 62603, 'de', 'name', 'Johanna-Etienne-Krankenhaus'),
(74415, 62604, 'en', 'name', 'The Fan Fox and Leslie R. Samuels Foundation'),
(74416, 62605, 'de', 'name', 'Klinikum Ingolstadt'),
(74417, 62606, 'fr', 'name', 'Languedoc MutualitƩ'),
(74418, 62607, 'en', 'name', 'Labor Pachmann'),
(74419, 62608, 'en', 'name', 'Sjƶgren’s Society of Canada'),
(74420, 62609, 'no_lang_code', 'name', 'Chemie³ (Germany)'),
(74421, 62610, 'no_lang_code', 'name', 'Medi-Tate (Israel)'),
(74422, 62611, 'no_lang_code', 'name', 'AstraZeneca (Finland)'),
(74423, 62612, 'en', 'name', 'Central Vermont Medical Center'),
(74424, 62613, 'en', 'name', 'Knox Community Hospital'),
(74425, 62614, 'nl', 'name', 'Proteion'),
(74426, 62615, 'en', 'name', 'Virginia Spine Institute'),
(74427, 62616, 'en', 'name', 'Bel-Rea Institute'),
(74428, 62617, 'en', 'name', 'Bioelectromagnetics Society'),
(74429, 62618, 'en', 'name', 'Carolinas Center for Advanced Management of Pain'),
(74430, 62619, 'sl', 'name', 'Energetska agencija za Podravje, Energy Agency of Podravje'),
(74431, 62620, 'no_lang_code', 'name', 'Cambridge Collaborative (United States)'),
(74432, 62621, 'nl', 'name', 'Lyvore'),
(74433, 62622, 'en', 'name', 'Educational Media Resources'),
(74434, 62623, 'en', 'name', 'Swanson Center'),
(74435, 62624, 'en', 'name', 'Pure North'),
(74436, 62625, 'en', 'name', 'Gulf Marine Institute of Technology'),
(74437, 62626, 'no_lang_code', 'name', 'Lena Biosciences (United States)'),
(74438, 62627, 'en', 'name', 'Kinston Medical Specialists'),
(74439, 62628, 'de', 'name', 'Kompetenznetz LeukƤmien'),
(74440, 62629, 'en', 'name', 'Institute of Ophthalmology'),
(74441, 62630, 'en', 'name', 'TKI Agri & Food'),
(74442, 62631, 'no_lang_code', 'name', 'Emotra (Sweden)'),
(74443, 62632, 'en', 'name', 'The Third Affiliated Hospital of Guangzhou University of Traditional Chinese Medicine'),
(74444, 62632, 'zh', 'name', 'å¹æå·žäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äø‰åŒ»é™¢'),
(74445, 62633, 'it', 'name', 'Fondazione A.R. Card Onlus'),
(74446, 62634, 'pt', 'name', 'Associação Rede de Universidades da Terceira Idade'),
(74447, 62635, 'ar', 'name', 'المستؓفى Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠ Ų§Ł„Ų¬Ų¹ŁŠŲŖŲ§ŁˆŁŠ'),
(74448, 62635, 'en', 'name', 'Lebanese Hospital Geitaoui-University Medical Center'),
(74449, 62635, 'fr', 'name', 'HƓpital Libanais Geitaoui - CHU'),
(74450, 62636, 'no_lang_code', 'name', 'Chemsultants International (United States)'),
(74451, 62637, 'de', 'name', 'Asklepios Neurologische Klinik Falkenstein'),
(74452, 62638, 'en', 'name', 'Canadian College of Osteopathy'),
(74453, 62639, 'de', 'name', 'Evangelisches Krankenhaus Düsseldorf'),
(74454, 62640, 'en', 'name', 'Las Vegas Academy of the Arts'),
(74455, 62641, 'en', 'name', 'The Alberta Paraplegic Foundation'),
(74456, 62642, 'en', 'name', 'Hunan Province Chest Hospital'),
(74457, 62642, 'zh', 'name', 'ę¹–å—ēœčƒøē§‘åŒ»é™¢'),
(74458, 62643, 'en', 'name', 'London Vision Clinic'),
(74459, 62644, 'fr', 'name', 'Clinique Claude-Bernard'),
(74460, 62645, 'nl', 'name', 'Revant medisch specialistische revalidatie'),
(74461, 62646, 'de', 'name', 'Augencentrum Rosenheim'),
(74462, 62647, 'en', 'name', 'Freeman Health System'),
(74463, 62648, 'no_lang_code', 'name', 'Innomedis (Germany)'),
(74464, 62649, 'de', 'name', 'Niedersächsisches Landesamt für Soziales, Jugend und Familie'),
(74465, 62650, 'en', 'name', 'Auto Dealers Caring for Kids Foundation'),
(74466, 62651, 'de', 'name', 'Arbeitsgemeinschaft für Klinische Ernährung'),
(74467, 62652, 'no_lang_code', 'name', 'NestlƩ (Belgium)'),
(74468, 62653, 'en', 'name', 'Lakeview Hospital'),
(74469, 62654, 'no_lang_code', 'name', 'Allergan (Canada)'),
(74470, 62655, 'en', 'name', 'Minimally Invasive Pain Institute'),
(74471, 62656, 'en', 'name', 'Southwest Center for Educational Excellence'),
(74472, 62657, 'no_lang_code', 'name', 'oncgnostics (Germany)'),
(74473, 62658, 'fr', 'name', 'Imagerie Médicale et Radiothérapie DrÓme Ardèche'),
(74474, 62659, 'en', 'name', 'Tennessee Oncology'),
(74475, 62660, 'en', 'name', 'National Association for Black Veterans'),
(74476, 62661, 'en', 'name', 'Swedish Football Association'),
(74477, 62661, 'sv', 'name', 'Svenska Fotbollfƶrbundet'),
(74478, 62662, 'en', 'name', 'Gifu Prefecture Medical Association'),
(74479, 62662, 'ja', 'name', '岐阜県医師会'),
(74480, 62663, 'en', 'name', 'Future of Privacy Forum'),
(74481, 62664, 'en', 'name', 'U-center'),
(74482, 62665, 'en', 'name', 'NUTRICIA Foundation'),
(74483, 62665, 'pl', 'name', 'Fundacja NUTRICIA'),
(74484, 62666, 'en', 'name', 'The Goldfarb Foundation'),
(74485, 62667, 'no_lang_code', 'name', 'PROGAL (Colombia)'),
(74486, 62668, 'fr', 'name', 'Association Pharmaceutique Belge'),
(74487, 62669, 'en', 'name', 'American Society for Clinical Investigation'),
(74488, 62670, 'en', 'name', 'First Coast Cardiovascular Institute'),
(74489, 62671, 'no_lang_code', 'name', 'S-Biomedic (Germany)'),
(74490, 62672, 'de', 'name', 'Klinik Blankenstein'),
(74491, 62673, 'en', 'name', 'Reidman College'),
(74492, 62674, 'no_lang_code', 'name', 'InterMed (United States)'),
(74493, 62675, 'es', 'name', 'Helios Salud'),
(74494, 62676, 'no_lang_code', 'name', 'MSTM (United States)'),
(74495, 62677, 'en', 'name', 'Holy Family Memorial Hospital'),
(74496, 62678, 'fr', 'name', 'FƩdƩration Internationale de Football Association'),
(74497, 62679, 'en', 'name', 'Abalone Council Australia'),
(74498, 62680, 'en', 'name', 'Central Brain Tumor Registry of the United States'),
(74499, 62681, 'en', 'name', 'Urological Research Foundation'),
(74500, 62682, 'no_lang_code', 'name', 'Nu Skin (United States)'),
(74501, 62683, 'no_lang_code', 'name', 'Reck Technik (Germany)'),
(74502, 62684, 'de', 'name', 'St. Elisabethen-Krankenhaus Frankfurt'),
(74503, 62685, 'en', 'name', 'University Colleges Australia'),
(74504, 62686, 'en', 'name', 'Navajo Language Academy'),
(74505, 62687, 'de', 'name', 'Gesundheitsdirektion Kanton Zürich'),
(74506, 62687, 'en', 'name', 'Department of Health Canton of Zurich'),
(74507, 62688, 'en', 'name', 'The Roxbury Institute'),
(74508, 62689, 'nl', 'name', 'Lelie Zorggroep'),
(74509, 62690, 'no_lang_code', 'name', 'INC Research (United Kingdom)'),
(74510, 62691, 'en', 'name', 'Maria Parham Hospital'),
(74511, 62692, 'en', 'name', 'Kadlec Clinic'),
(74512, 62693, 'sq', 'name', 'Spitali Universitar Shefqet Ndroqi'),
(74513, 62694, 'no_lang_code', 'name', 'Miromatrix Medical (United States)'),
(74514, 62695, 'en', 'name', 'Marine Biology Institute of Shandong Province'),
(74515, 62695, 'zh', 'name', 'å±±äøœēœęµ·ę“‹ē”Ÿē‰©ē ”ē©¶é™¢ 地址'),
(74516, 62696, 'en', 'name', 'University Vocational Awards Council'),
(74517, 62697, 'nl', 'name', 'DOH Zorggroep'),
(74518, 62698, 'en', 'name', 'Building Child and Family Initiatives'),
(74519, 62699, 'en', 'name', 'AAB College'),
(74520, 62699, 'sq', 'name', 'Kolegji AAB'),
(74521, 62700, 'no_lang_code', 'name', 'N-Gene (Hungary)'),
(74522, 62701, 'no_lang_code', 'name', 'Pharma Medica Research (Canada)'),
(74523, 62702, 'en', 'name', 'Vienna Challenge Chamber'),
(74524, 62703, 'en', 'name', 'Oncology Specialists of Charlotte'),
(74525, 62704, 'en', 'name', 'Adventist HealthCare'),
(74526, 62705, 'en', 'name', 'Southwestern Vermont Health Care'),
(74527, 62706, 'de', 'name', 'Alzheimer Schweiz'),
(74528, 62707, 'en', 'name', 'DeClaire LaMacchia Orthopaedic Institute'),
(74529, 62708, 'en', 'name', 'Family Planning Association of Hong Kong'),
(74530, 62709, 'en', 'name', 'Concept Foundation'),
(74531, 62710, 'no_lang_code', 'name', 'Nuvisan (Germany)'),
(74532, 62711, 'en', 'name', 'Choroideremia Research Foundation'),
(74533, 62712, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ł…Ł„ŪŒ سل و ŲØŪŒŁ…Ų§Ų±ŪŒŁ‡Ų§ŪŒ ریوی'),
(74534, 62712, 'no_lang_code', 'name', 'Masih Daneshvari Hospital'),
(74535, 62713, 'en', 'name', 'LXD Research & Display'),
(74536, 62714, 'en', 'name', 'Saginaw Chippewa Tribal College'),
(74537, 62715, 'en', 'name', 'King''s Daughters Medical Center'),
(74538, 62716, 'el', 'name', 'Ελληνική Αντικαρκινική Εταιρεία'),
(74539, 62716, 'en', 'name', 'Hellenic Cancer Society'),
(74540, 62717, 'no_lang_code', 'name', 'GHD GesundHeits GmbH Deutschland (Germany)'),
(74541, 62718, 'no_lang_code', 'name', 'Institut für Angewandte Produktions-Technologie (Germany)'),
(74542, 62719, 'no_lang_code', 'name', 'Lundbeck (Germany)'),
(74543, 62720, 'en', 'name', 'Association for Children at Risk'),
(74544, 62720, 'he', 'name', '×”×¢×ž×•×Ŗ×” לילדים בהיכון'),
(74545, 62721, 'en', 'name', 'Kentucky Department of Revenue'),
(74546, 62722, 'en', 'name', 'Conemaugh Health System'),
(74547, 62723, 'en', 'name', 'Estonian Rheumatology Society'),
(74548, 62723, 'et', 'name', 'Eesti Reumatoloogia Selts'),
(74549, 62724, 'no_lang_code', 'name', 'Kaneka (Germany)'),
(74550, 62725, 'no_lang_code', 'name', 'Snap40 (United Kingdom)'),
(74551, 62726, 'es', 'name', 'Fundación Neumosur'),
(74552, 62727, 'no_lang_code', 'name', 'Rao Research and Consulting (United States)'),
(74553, 62728, 'no_lang_code', 'name', 'PersonGen (China)'),
(74554, 62729, 'en', 'name', 'Adventist Health Bakersfield'),
(74555, 62730, 'no_lang_code', 'name', 'IC Independent Consulting (Australia)'),
(74556, 62731, 'en', 'name', 'Association of Children and Preventive Dentists of Serbia'),
(74557, 62732, 'no_lang_code', 'name', 'Infofish (Australia)'),
(74558, 62733, 'en', 'name', 'Horizon Oncology Center'),
(74559, 62734, 'en', 'name', 'Rocky Mountain Institute'),
(74560, 62735, 'en', 'name', 'Rajamangala Institute of kidney disease'),
(74561, 62735, 'th', 'name', 'ąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøŖąø–ąø²ąøšąø±ąø™ą¹‚ąø£ąø„ą¹„ąø•ą¹‚ąø£ąø„'),
(74562, 62736, 'de', 'name', 'OncoRay, OncoRay – Nationales Zentrum für Strahlenforschung in der Onkologie'),
(74563, 62737, 'en', 'name', 'Center for Neurosciences'),
(74564, 62738, 'nl', 'name', 'Stichting Bio, Stichting Bio Kinderrevalidatie'),
(74565, 62739, 'de', 'name', 'HNO Bad Bramstedt'),
(74566, 62740, 'en', 'name', 'Corning Museum of Glass'),
(74567, 62741, 'no_lang_code', 'name', 'Nea International (Netherlands)'),
(74568, 62742, 'it', 'name', 'Consorzio Interuniversitario Regionale Pugliese'),
(74569, 62743, 'en', 'name', 'Olympic Medical Center'),
(74570, 62744, 'fr', 'name', 'Etablissements de SantƩ Mentale'),
(74571, 62745, 'no_lang_code', 'name', 'T3 Scientific (United States)'),
(74572, 62746, 'en', 'name', 'Dolan Park Hospital'),
(74573, 62747, 'fr', 'name', 'Association Francophone pour les Soins Oncologiques de Support'),
(74574, 62748, 'en', 'name', 'Midstate Medical Center'),
(74575, 62749, 'en', 'name', 'Goldseker Foundation'),
(74576, 62750, 'en', 'name', 'Woolfson Eye Institute'),
(74577, 62751, 'en', 'name', 'Africa Mental Health Foundation'),
(74578, 62752, 'en', 'name', 'American College of Nurse-Midwives'),
(74579, 62753, 'el', 'name', 'ĪŠĪ“ĻĻ…Ī¼Ī± ĪšĪæĪ¹Ī½Ļ‰Ī½Ī¹ĪŗĻŽĪ½ Ī‘ĻƒĻ†Ī±Ī»ĪÆĻƒĪµĻ‰Ī½'),
(74580, 62753, 'en', 'name', 'Social Insurance Institute'),
(74581, 62754, 'en', 'name', 'Capital Health Medical Center Hopewell'),
(74582, 62755, 'en', 'name', 'Upper Valley Medical Center'),
(74583, 62756, 'en', 'name', 'South Sound Care Foundation'),
(74584, 62757, 'no_lang_code', 'name', 'Kyowa Kirin (France)'),
(74585, 62758, 'no_lang_code', 'name', 'Quintara Biosciences (United States)'),
(74586, 62759, 'no_lang_code', 'name', 'Behavioral Diagnostics (United States)'),
(74587, 62760, 'en', 'name', 'The Spine Institute'),
(74588, 62761, 'no_lang_code', 'name', 'Epiim (Estonia)'),
(74589, 62762, 'en', 'name', 'Dayton Interventional Radiology'),
(74590, 62763, 'nl', 'name', 'Dystonie Vereniging'),
(74591, 62764, 'nl', 'name', 'Stichting Hartcentrum Twente'),
(74592, 62765, 'no_lang_code', 'name', 'Redax (Italy)'),
(74593, 62766, 'en', 'name', 'Woman’s Hospital of Texas'),
(74594, 62767, 'en', 'name', 'Cardiovascular Institute of Central Florida'),
(74595, 62768, 'de', 'name', 'Deutsche Neurodermitis Stiftung'),
(74596, 62769, 'no_lang_code', 'name', 'Innopastry (Netherlands)'),
(74597, 62770, 'no_lang_code', 'name', 'Yosemite International Consultants (United States)'),
(74598, 62771, 'en', 'name', 'Congenital Muscle Disease International Registry'),
(74599, 62772, 'de', 'name', 'Klinik für Neuropädiatrie und Muskelerkrankungen'),
(74600, 62773, 'en', 'name', 'Catalan Society of Family and Community Medicine'),
(74601, 62774, 'en', 'name', 'Sri Lanka College of Obstetricians & Gynaecologists'),
(74602, 62775, 'nl', 'name', 'Stichting Kinderen en Kansen'),
(74603, 62776, 'en', 'name', 'International Community for Auditory Display'),
(74604, 62777, 'en', 'name', 'Holistic Health Research Centre'),
(74605, 62778, 'en', 'name', 'Institute of Population, Health and Development'),
(74606, 62779, 'en', 'name', 'Egyptian Foundation for Cancer Research'),
(74607, 62780, 'en', 'name', 'Bon Secours Liver Institute of Richmond'),
(74608, 62781, 'no_lang_code', 'name', 'ABX-CRO Advanced Pharmaceutical Services (Germany)'),
(74609, 62782, 'no_lang_code', 'name', 'Bayer (Finland)'),
(74610, 62783, 'pt', 'name', 'Hospital Municipal São José'),
(74611, 62784, 'de', 'name', 'Klinikum Mutterhaus der BorromƤerinnen'),
(74612, 62785, 'en', 'name', 'Kotsanis Institute'),
(74613, 62786, 'de', 'name', 'Klinik und Poliklinik für Hals-, Nasen-, Ohrenheilkunde'),
(74614, 62787, 'no_lang_code', 'name', 'Rivanna Medical (United States)'),
(74615, 62788, 'en', 'name', 'Boucher Institute of Naturopathic Medicine'),
(74616, 62789, 'en', 'name', 'Regional Center for the Prevention and Control of AIDS Volgograd'),
(74617, 62789, 'ru', 'name', 'ВолгограГский областной центр профилактики Šø Š±Š¾Ń€ŃŒŠ±Ń‹ со Š”ŠŸŠ˜Š”Š¾Š¼'),
(74618, 62790, 'en', 'name', 'Denova Research'),
(74619, 62791, 'en', 'name', 'Italian Society of Periodontology and Implantology'),
(74620, 62791, 'it', 'name', 'SocietĆ  Italiana di Parodontologia e Implantologia'),
(74621, 62792, 'en', 'name', 'Jiangsu Provincial Academy of Environmental Science'),
(74622, 62792, 'zh', 'name', 'ę±Ÿč‹ēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(74623, 62793, 'en', 'name', 'Beijing Urban Systems Engineering Research Center'),
(74624, 62793, 'zh', 'name', 'åŒ—äŗ¬åŸŽåø‚ē³»ē»Ÿå·„ēØ‹ē ”ē©¶äø­åæƒ'),
(74625, 62794, 'en', 'name', '"Woman Health & Family Planning" Charity Foundation'),
(74626, 62794, 'uk', 'name', 'БлагоГійний фонГ "Жінка зГоров''я та сімейного ŠæŠ»Š°Š½ŃƒŠ²Š°Š½Š½Ń"'),
(74627, 62795, 'nl', 'name', 'Stichting Gereformeerd of Burgerweeshuis te Haarlem'),
(74628, 62796, 'no_lang_code', 'name', 'Infinitesimal (United States)'),
(74629, 62797, 'en', 'name', 'Fuling Center Hospital of Chongqing'),
(74630, 62797, 'zh', 'name', 'é‡åŗ†åø‚ę¶Ŗé™µäø­åæƒåŒ»é™¢'),
(74631, 62798, 'en', 'name', 'TriWest Research Associates'),
(74632, 62799, 'en', 'name', 'Fuzhou Pulmonary Hospital of Fujian'),
(74633, 62800, 'en', 'name', 'Alberta Pharmacists Association'),
(74634, 62801, 'sv', 'name', 'Folkuniversitetet'),
(74635, 62802, 'en', 'name', 'Neighbourhood Pharmacy Association of Canada'),
(74636, 62803, 'de', 'name', 'Stiftung Deutsche Depressionshilfe'),
(74637, 62804, 'en', 'name', 'Finnish Society of Surgery'),
(74638, 62804, 'fi', 'name', 'Suomen Kirurgiyhdistys'),
(74639, 62805, 'en', 'name', 'Keogh Institute for Medical Research'),
(74640, 62806, 'en', 'name', 'Defence Against Cancer Foundation'),
(74641, 62807, 'en', 'name', 'Oncology Hematology Associates of Saginaw Valley'),
(74642, 62808, 'en', 'name', 'ANZCHOG'),
(74643, 62809, 'en', 'name', 'Yunnan Earthquake Prevention and Disaster Reduction'),
(74644, 62809, 'zh', 'name', 'äŗ‘å—ēœåœ°éœ‡å±€'),
(74645, 62810, 'en', 'name', 'Gritman Medical Center'),
(74646, 62811, 'en', 'name', 'The Dementia Association of Thailand'),
(74647, 62811, 'th', 'name', 'ąøŖąø”ąø²ąø„ąø”ą¹‚ąø£ąø„ąøŖąø”ąø­ąø‡ą¹€ąøŖąø·ą¹ˆąø­ąø”ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(74648, 62812, 'de', 'name', 'KaufmƤnnische Krankenkasse'),
(74649, 62813, 'en', 'name', 'British Cardiovascular Intervention Society'),
(74650, 62814, 'en', 'name', 'Billings Clinic Cody'),
(74651, 62815, 'en', 'name', 'Organisation of European Cancer Institutes'),
(74652, 62816, 'es', 'name', 'Sociedad EspaƱola de Cuidados Intensivos PediƔtricos'),
(74653, 62817, 'fr', 'name', 'Sheikh Ragheb Harb Hospital'),
(74654, 62818, 'no_lang_code', 'name', 'Atrium Medical (Australia)'),
(74655, 62819, 'en', 'name', 'Australian Institute of Tropical Health and Medicine'),
(74656, 62820, 'en', 'name', 'Radiation Oncology Associates'),
(74657, 62821, 'en', 'name', 'Fairbanks Memorial Hospital'),
(74658, 62822, 'en', 'name', 'BAU International University'),
(74659, 62823, 'en', 'name', 'Andrews Research & Education Foundation'),
(74660, 62824, 'en', 'name', 'Council of State Governments Midwest'),
(74661, 62825, 'en', 'name', 'The Royal College Of Anesthesiologists Of Thailand'),
(74662, 62825, 'th', 'name', 'ąø£ąø²ąøŠąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø§ąø“ąøŖąø±ąøąøąøµąø§ąø“ąø—ąø¢ąø²ą¹ąø«ą¹ˆąø‡ąø›ąø£ąø°ą¹€ąø—ąøØą¹„ąø—ąø¢'),
(74663, 62826, 'no_lang_code', 'name', 'Thalchemy (United States)'),
(74664, 62827, 'en', 'name', 'Mayfield Brain & Spine'),
(74665, 62828, 'en', 'name', 'Canadian Society of Colon and Rectal Surgeons'),
(74666, 62829, 'en', 'name', 'Association of British Clinical Diabetologists'),
(74667, 62830, 'en', 'name', 'I4CE – Institute for Climate Economics'),
(74668, 62831, 'en', 'name', 'Kaiser Permanente Burke Medical Center'),
(74669, 62832, 'nl', 'name', 'Epilepsiefonds'),
(74670, 62833, 'no_lang_code', 'name', 'Apama Medical (United States)'),
(74671, 62834, 'en', 'name', 'Turkish Emergency Medical Association'),
(74672, 62834, 'tr', 'name', 'Türkiye Acil Tıp Derneği'),
(74673, 62835, 'de', 'name', 'Diabetesinstitut Heidelberg'),
(74674, 62836, 'en', 'name', 'New Mexico Cancer Center'),
(74675, 62837, 'nl', 'name', 'Merem'),
(74676, 62838, 'en', 'name', 'Brain Matters Research'),
(74677, 62839, 'en', 'name', 'ICARE Eye Hospital & Postgraduate Institute'),
(74678, 62840, 'no_lang_code', 'name', 'Metacure (United States)'),
(74679, 62841, 'de', 'name', 'Förderkreis Hilfe für krebskranke Kinder'),
(74680, 62842, 'de', 'name', 'Kinderklinik Tübingen'),
(74681, 62842, 'en', 'name', 'University Children''s Hospital Tübingen'),
(74682, 62843, 'en', 'name', 'Reproductive Science Medical Center'),
(74683, 62844, 'nl', 'name', 'Podocentrum Alkmaar'),
(74684, 62845, 'no_lang_code', 'name', 'Polaris Research and Development (United States)'),
(74685, 62846, 'ro', 'name', 'Spitalul Clinic Judeţean de Urgenţe "Sf. Spiridon" Iaşi'),
(74686, 62847, 'es', 'name', 'Fundación Empresa-Universidad Gallega'),
(74687, 62848, 'en', 'name', 'Northshore Oncology Associates'),
(74688, 62849, 'en', 'name', 'Midwest Stone Institute'),
(74689, 62850, 'en', 'name', 'Ludwig Boltzmann Institut Health Promotion Research'),
(74690, 62851, 'en', 'name', 'St. Rita''s Medical Center'),
(74691, 62852, 'en', 'name', 'Chesterfield Family Practice Center'),
(74692, 62853, 'no_lang_code', 'name', 'Screenscope (United States)'),
(74693, 62854, 'de', 'name', 'Anna Mueller Grocholski-Stiftung'),
(74694, 62855, 'de', 'name', 'Acqua Klinik'),
(74695, 62856, 'en', 'name', 'Tallahassee Orthopedic Clinic'),
(74696, 62857, 'en', 'name', 'Australian Institute of Food Science and Technology'),
(74697, 62858, 'nl', 'name', 'Stichting Agis Zorginnovatiefonds'),
(74698, 62859, 'en', 'name', 'The Cardiac and Vascular Institute'),
(74699, 62860, 'en', 'name', 'UC Irvine Health'),
(74700, 62861, 'en', 'name', 'Northwestern Medicine Lake Forest Hospital'),
(74701, 62862, 'de', 'name', 'Institut für alternative und nachhaltige Ernährung'),
(74702, 62863, 'en', 'name', 'Trios Health'),
(74703, 62864, 'no_lang_code', 'name', 'GILUPI (Germany)'),
(74704, 62865, 'en', 'name', 'British Columbia Dental Hygienists'' Association'),
(74705, 62866, 'no_lang_code', 'name', 'OnkoDataMed (Germany)'),
(74706, 62867, 'en', 'name', 'Optimus Clinical Research'),
(74707, 62868, 'en', 'name', 'Jacksonville Center for Clinical Research'),
(74708, 62869, 'en', 'name', 'Hong Kong Eye Hospital'),
(74709, 62869, 'zh', 'name', 'é¦™ęøÆēœ¼ē§‘é†«é™¢'),
(74710, 62870, 'no_lang_code', 'name', 'GDI Integrated Facility Services (Canada)'),
(74711, 62871, 'en', 'name', 'Sovah Health Martinsville'),
(74712, 62872, 'en', 'name', 'Florida Council of Teachers of Mathematics'),
(74713, 62873, 'nl', 'name', 'HilverZorg'),
(74714, 62874, 'no_lang_code', 'name', 'Embedded Fitness (Netherlands)'),
(74715, 62875, 'no_lang_code', 'name', 'Seismic Isolation Engineering (United States)'),
(74716, 62876, 'no_lang_code', 'name', 'Laxdale Foodservice (United Kingdom)'),
(74717, 62877, 'en', 'name', 'Guangdong Province Environmental Monitoring Center'),
(74718, 62877, 'zh', 'name', 'å¹æäøœēœēŽÆå¢ƒē›‘ęµ‹äø­åæƒ'),
(74719, 62878, 'en', 'name', 'Society For Applied Spectroscopy'),
(74720, 62879, 'nl', 'name', 'Uitvoeringsinstituut Werknemersverzekeringen'),
(74721, 62880, 'en', 'name', 'Translational Research Institute for Metabolism and Diabetes'),
(74722, 62881, 'no_lang_code', 'name', 'NestlƩ (China)'),
(74723, 62882, 'en', 'name', 'Ocular Immunology and Uveitis Foundation'),
(74724, 62883, 'en', 'name', 'Institute for Exercise and Environmental Medicine'),
(74725, 62884, 'en', 'name', 'Turkish Metabolic Surgery Foundation'),
(74726, 62885, 'en', 'name', 'Moscow City Clinical Hospital after V.M. Buyanov'),
(74727, 62885, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° им. Š’. М. Š‘ŃƒŃŠ½Š¾Š²Š°'),
(74728, 62886, 'en', 'name', 'Clinical Trial Center Maastricht'),
(74729, 62887, 'de', 'name', 'Waldburg-Zeil Kliniken'),
(74730, 62888, 'no_lang_code', 'name', 'Univerexport (Serbia)'),
(74731, 62889, 'es', 'name', 'Hospital Universitario del Vinalopó'),
(74732, 62890, 'fr', 'name', 'Oncolie'),
(74733, 62891, 'no_lang_code', 'name', 'Scottsdale Research Institute (United States)'),
(74734, 62892, 'en', 'name', 'Bear Valley'),
(74735, 62893, 'de', 'name', 'Agaplesion Bethesda Klinik'),
(74736, 62894, 'en', 'name', 'Association for Tropical Biology and Conservation'),
(74737, 62895, 'en', 'name', 'California Northstate University'),
(74738, 62896, 'en', 'name', 'European Dairy Association'),
(74739, 62897, 'de', 'name', 'KrankenhƤuser Landkreis Freudenstadt'),
(74740, 62898, 'en', 'name', 'Kindercare Pediatrics'),
(74741, 62899, 'de', 'name', 'NBank'),
(74742, 62900, 'no_lang_code', 'name', 'Media Rez (United States)'),
(74743, 62901, 'en', 'name', 'St. Francis Foundation'),
(74744, 62902, 'en', 'name', 'Iowa Lutheran Hospital'),
(74745, 62903, 'en', 'name', 'Bowmen Family Foundation'),
(74746, 62904, 'en', 'name', 'Saint Mary''s Regional Medical Center'),
(74747, 62905, 'en', 'name', 'Massachusetts Academy of Math and Science'),
(74748, 62906, 'fr', 'name', 'Ministère De La Santé'),
(74749, 62907, 'de', 'name', 'Schön Klinik München Schwabing'),
(74750, 62908, 'fr', 'name', 'Les Thermes d’Allevard'),
(74751, 62909, 'de', 'name', 'Theo und Friedl Schƶller-Stiftung'),
(74752, 62910, 'en', 'name', 'Southeastern Regional Education Service Center'),
(74753, 62911, 'en', 'name', 'Environmental Protection Research Institute of Light Industry'),
(74754, 62911, 'zh', 'name', 'č½»å·„äøšēŽÆå¢ƒäæęŠ¤ē ”ē©¶ę‰€'),
(74755, 62912, 'no_lang_code', 'name', 'Cambridge Weight Plan (United Kingdom)'),
(74756, 62913, 'en', 'name', 'Blantyre Institute for Community Ophthalmology'),
(74757, 62914, 'no_lang_code', 'name', 'Top Caredent (Switzerland)'),
(74758, 62915, 'it', 'name', 'Consorzio Interuniversitario Nazionale per la Bio-Oncologia'),
(74759, 62916, 'el', 'name', 'Ī˜ĪµĻĪ±Ļ€ĪµĻ…Ļ„Ī®ĻĪ¹Īæ Ī‘ĻƒĪŗĪ»Ī·Ļ€Ī¹ĪµĪÆĪæ Ī›Ī¬ĻĪ¹ĻƒĪ±Ļ‚ ΕΠΕ'),
(74760, 62916, 'no_lang_code', 'name', 'Clinic Asklepio Larissa'),
(74761, 62917, 'ro', 'name', 'Societatea Română de Anestezie şi Terapie Intensivă'),
(74762, 62918, 'no_lang_code', 'name', 'Neurotechnics (United Kingdom)'),
(74763, 62919, 'en', 'name', 'Russian Phlebology Association'),
(74764, 62919, 'ru', 'name', 'ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ флебологов России'),
(74765, 62920, 'de', 'name', 'Albert Schweitzer Klinik'),
(74766, 62921, 'en', 'name', 'Praboromarajchanok Institute of Heath Workforce Development'),
(74767, 62921, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąøžąø£ąø°ąøšąø£ąø”ąø£ąø²ąøŠąøŠąø™ąø'),
(74768, 62922, 'de', 'name', 'Gesundheitsnetz Rhein-Neckar'),
(74769, 62923, 'de', 'name', 'Vogtland-Klinik'),
(74770, 62924, 'en', 'name', 'Instructional Research Group'),
(74771, 62925, 'no_lang_code', 'name', 'Gilead Sciences (Italy)'),
(74772, 62926, 'en', 'name', 'The Mountain Institute'),
(74773, 62927, 'en', 'name', 'The Knee Society'),
(74774, 62928, 'de', 'name', 'Verband EuropƤischer Ayurveda-Mediziner & Therapeuten'),
(74775, 62928, 'en', 'name', 'Association of European Ayurvedic Physicians & Therapists'),
(74776, 62929, 'fr', 'name', 'Institut Interuniversitaire pour les Relations entre l''Europe l''Amérique Latine et les Caraïbes'),
(74777, 62930, 'no_lang_code', 'name', 'MacKichan Software (United States)'),
(74778, 62931, 'en', 'name', 'Colombian Foundation Center for Epilepsy and Neurological Diseases'),
(74779, 62931, 'es', 'name', 'Fundacion Centro Colombiano de Epilepsia y en Enfermedades Neurologicas'),
(74780, 62932, 'fr', 'name', 'Association de MusicothƩrapie Applications et Recherches Cliniques'),
(74781, 62933, 'fr', 'name', 'Brides-les-Bains, Thermes de Brides-les-Bains'),
(74782, 62934, 'en', 'name', 'Japan Petroleum Energy Center'),
(74783, 62934, 'ja', 'name', 'ēŸ³ę²¹ć‚Øćƒćƒ«ć‚®ćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(74784, 62935, 'nl', 'name', 'Yulius'),
(74785, 62936, 'el', 'name', 'Ī£ĻĪ½Ī“ĪµĻƒĪ¼ĪæĻ‚ Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŽĪ½ Ī’Ī¹ĪæĪ¼Ī·Ļ‡Ī±Ī½Ī¹ĻŽĪ½ Τροφίμων'),
(74786, 62936, 'en', 'name', 'Hellenic Food Industries Association'),
(74787, 62937, 'en', 'name', 'Alternating Hemiplegia of Childhood Foundation'),
(74788, 62938, 'en', 'name', 'CSIRO Health and Biosecurity'),
(74789, 62939, 'en', 'name', 'Lawrence Semiconductor Research Laboratory'),
(74790, 62940, 'en', 'name', 'Research Institute of Organic Agriculture'),
(74791, 62940, 'fr', 'name', 'Institut de Recherche de l''Agriculture Biologique'),
(74792, 62941, 'en', 'name', 'Southern Shark Industry Alliance'),
(74793, 62942, 'en', 'name', 'Intercultural Center for Research in Education'),
(74794, 62943, 'en', 'name', 'Gaidar Institute for Economic Policy'),
(74795, 62943, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Š¹ политики имени Š•. Š¢. ГайГара'),
(74796, 62944, 'en', 'name', 'University Hospitals Sharon Health Center'),
(74797, 62945, 'no_lang_code', 'name', 'PharmaFGP (Germany)'),
(74798, 62946, 'no_lang_code', 'name', 'DOCxcellence (Germany)'),
(74799, 62947, 'it', 'name', 'Istituto Tumori Bari'),
(74800, 62948, 'no_lang_code', 'name', 'MultiModel Research (United States)'),
(74801, 62949, 'en', 'name', 'National Congress of American Indians'),
(74802, 62950, 'en', 'name', 'Murmansk Regional Oncology Center'),
(74803, 62950, 'ru', 'name', 'ŠœŃƒŃ€Š¼Š°Š½ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(74804, 62951, 'en', 'name', 'Hainan Eye Hospital'),
(74805, 62952, 'nl', 'name', 'Roessingh, Centrum voor Revalidatie'),
(74806, 62953, 'it', 'name', 'Consorzio Universitario per l''Ateneo della Sicilia occidentale e del bacino del Mediterraneo, UNISOM'),
(74807, 62954, 'no_lang_code', 'name', 'Winanga-Li'),
(74808, 62955, 'no_lang_code', 'name', 'Obalon (United States)'),
(74809, 62956, 'en', 'name', 'Mats Uldal Humanitarian Foundation'),
(74810, 62957, 'en', 'name', 'Qatar Diabetes Association'),
(74811, 62958, 'no_lang_code', 'name', 'VesselTek Biomedical (United States)'),
(74812, 62959, 'en', 'name', 'Kharkiv Regional Clinical Psychiatric Hospital No 3'),
(74813, 62959, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° обласна клінічна психіатрична Š»Ń–ŠŗŠ°Ń€Š½Ń'),
(74814, 62960, 'en', 'name', 'Mark H. Zangmeister Cancer Center'),
(74815, 62961, 'en', 'name', 'NEGES Foundation'),
(74816, 62962, 'en', 'name', 'Society of Alcoholism and other Addictions'),
(74817, 62963, 'de', 'name', 'Schlosspark-Klinik'),
(74818, 62964, 'de', 'name', 'Medizinisches Wirtschaftsinstitut'),
(74819, 62965, 'en', 'name', 'Houston Fertility Institute'),
(74820, 62966, 'en', 'name', 'Vince Lombardi Cancer Clinic'),
(74821, 62967, 'en', 'name', 'National Institute of Public Health'),
(74822, 62967, 'lo', 'name', 'ąŗŖąŗ°ąŗ–ąŗ²ąŗšąŗ±ąŗ™ąŗŖąŗ²ąŗ—ąŗ²ąŗ„ąŗ°ąŗ™ąŗ°ąŗŖąŗøąŗą»ąŗ«ą»ˆąŗ‡ąŗŠąŗ²ąŗ”'),
(74823, 62968, 'en', 'name', 'University Orthopedics Center'),
(74824, 62969, 'it', 'name', 'Associazione Italiana Vulvodinia Onlus'),
(74825, 62970, 'no_lang_code', 'name', 'Cyclotron (Netherlands)'),
(74826, 62971, 'no_lang_code', 'name', 'Medigene (Germany)'),
(74827, 62972, 'no_lang_code', 'name', 'Lofarma (Italy)'),
(74828, 62973, 'no_lang_code', 'name', 'Cool Sorption (Denmark)'),
(74829, 62974, 'de', 'name', 'Deutsche Gesellschaft für Transaktionsanalyse'),
(74830, 62975, 'en', 'name', 'BioBricks Foundation'),
(74831, 62976, 'nl', 'name', 'Aveleijn'),
(74832, 62977, 'en', 'name', 'International Hyperbarics Association'),
(74833, 62978, 'no_lang_code', 'name', 'Hu-Friedy (United States)'),
(74834, 62979, 'pt', 'name', 'Hospital Beatriz Ƃngelo'),
(74835, 62980, 'en', 'name', 'Sport Medicine Council of Alberta'),
(74836, 62981, 'no_lang_code', 'name', 'Hermes Arzneimittel (Germany)'),
(74837, 62982, 'no_lang_code', 'name', 'Insta (Germany)'),
(74838, 62983, 'en', 'name', 'Digestive Health Associates of Texas'),
(74839, 62984, 'en', 'name', 'Schizophrenia Society of Ontario'),
(74840, 62985, 'no_lang_code', 'name', 'Zambon (Netherlands)'),
(74841, 62986, 'en', 'name', 'Frontier Science Foundation-Hellas'),
(74842, 62987, 'en', 'name', 'START Clinic'),
(74843, 62988, 'en', 'name', 'Shandong Chest Hospital'),
(74844, 62989, 'en', 'name', 'Anson County Health Department'),
(74845, 62990, 'nl', 'name', 'Sophia Revalidatie'),
(74846, 62991, 'en', 'name', 'California Governor’s Office of Emergency Services'),
(74847, 62992, 'no_lang_code', 'name', 'KLS Martin (Germany)'),
(74848, 62993, 'en', 'name', 'St. Mary-Corwin Medical Center'),
(74849, 62994, 'fr', 'name', 'GƩrontopƓle Pierre Pfitzenmeyer'),
(74850, 62995, 'nl', 'name', 'Stichting OFOM'),
(74851, 62996, 'no_lang_code', 'name', 'Perseus PCI (United States)'),
(74852, 62997, 'nl', 'name', 'GGzE'),
(74853, 62998, 'no_lang_code', 'name', 'Fred Rogers (United States)'),
(74854, 62999, 'en', 'name', 'Digestive & Liver Disease Specialists'),
(74855, 63000, 'en', 'name', 'Kazakhstan Academy of Preventive Medicine'),
(74856, 63000, 'kk', 'name', 'АкаГемии профилактической меГицины'),
(74857, 63001, 'en', 'name', 'Rochester Center for Behavioral Medicine'),
(74858, 63002, 'en', 'name', 'Agriculture and Food'),
(74859, 63003, 'en', 'name', 'Infectious Clinical Hospital No. 1'),
(74860, 63003, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń ŠøŠ½Ń„ŠµŠŗŃ†ŠøŠ¾Š½Š½Š°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 1'),
(74861, 63004, 'nl', 'name', 'Atria'),
(74862, 63005, 'en', 'name', 'Hoffberger Family Philanthropies'),
(74863, 63006, 'en', 'name', 'United Healthcare Children''s Foundation'),
(74864, 63007, 'no_lang_code', 'name', 'U.S. Stem Cell (United States)'),
(74865, 63008, 'no_lang_code', 'name', 'Goodlife (Netherlands)'),
(74866, 63009, 'en', 'name', 'American Association of Kidney Patients'),
(74867, 63010, 'en', 'name', 'Memphis Center For Reproductive Health'),
(74868, 63011, 'en', 'name', 'Jordan-Young Institute'),
(74869, 63012, 'es', 'name', 'Instituto para la Atención y Prevención de las Adicciones'),
(74870, 63013, 'no_lang_code', 'name', 'Onkovis (Germany)'),
(74871, 63014, 'ca', 'name', 'Hospital de Sant Joan DespĆ­ MoisĆØs Broggi'),
(74872, 63015, 'no_lang_code', 'name', 'Immunodiagnostic Systems (Denmark)'),
(74873, 63016, 'en', 'name', 'Institute for Orthopaedic Surgery & Sports Medicine'),
(74874, 63017, 'nl', 'name', 'Postmaster Psychologie Opleidingen'),
(74875, 63018, 'en', 'name', 'The Solomon Foundation'),
(74876, 63019, 'en', 'name', 'Fisheries Administration'),
(74877, 63019, 'km', 'name', 'įžšįžŠįŸ’įž‹įž”įž¶įž› įž‡įž›įž•įž›'),
(74878, 63020, 'en', 'name', 'Thorne Nature Experience'),
(74879, 63021, 'no_lang_code', 'name', 'VITA (Germany)'),
(74880, 63022, 'no_lang_code', 'name', 'Lusofarmaco (Italy)'),
(74881, 63023, 'de', 'name', 'Krankenhaus Bethanien'),
(74882, 63024, 'no_lang_code', 'name', 'Karr Dental (Switzerland)'),
(74883, 63025, 'en', 'name', 'New York City Police Department'),
(74884, 63026, 'no_lang_code', 'name', 'IDEA (Germany)'),
(74885, 63027, 'de', 'name', 'Reproduktionsmedizin München'),
(74886, 63028, 'it', 'name', 'Ospedale Pediatrico Giovanni XXIII'),
(74887, 63029, 'no_lang_code', 'name', 'B. Braun (Netherlands)'),
(74888, 63030, 'es', 'name', 'Complejo Hospitalario Dr. Arnulfo Arias Madrid'),
(74889, 63031, 'no_lang_code', 'name', 'Novo Nordisk (Germany)'),
(74890, 63032, 'en', 'name', 'Ministry of Foreign Affairs'),
(74891, 63032, 'zh', 'name', 'äø­čÆę°‘åœ‹å¤–äŗ¤éƒØ'),
(74892, 63033, 'en', 'name', 'Dutch Lung Cancer Research Group'),
(74893, 63034, 'en', 'name', 'Montgomery Botanical Center'),
(74894, 63035, 'en', 'name', 'American Association for Bronchology and Interventional Pulmonology'),
(74895, 63036, 'en', 'name', 'Queensland Seafood Industry Association'),
(74896, 63037, 'en', 'name', 'National Association of Area Agencies on Aging'),
(74897, 63038, 'en', 'name', 'National Council on Crime and Delinquency'),
(74898, 63039, 'en', 'name', 'Florida Pain Institute'),
(74899, 63040, 'en', 'name', 'Ophtalmological Center After S.V.Malayan'),
(74900, 63041, 'de', 'name', 'Klinikum Herford'),
(74901, 63041, 'en', 'name', 'Herford Hospital'),
(74902, 63042, 'es', 'name', 'Fundación para la Fibromialgia y el Síndrome de Fatiga Crónica'),
(74903, 63043, 'en', 'name', 'Children''s Diagnostic & Treatment Center'),
(74904, 63044, 'en', 'name', 'Kirklin Clinic'),
(74905, 63045, 'no_lang_code', 'name', 'AMW (Germany)'),
(74906, 63046, 'pt', 'name', 'Instituto de Olhos de Goiânia'),
(74907, 63047, 'en', 'name', 'Wuhan Applied Science and Technology School'),
(74908, 63047, 'zh', 'name', 'ę­¦ę±‰åŗ”ē”Øē§‘ęŠ€å­¦é™¢'),
(74909, 63048, 'nl', 'name', 'GGZ Westelijk Noord-Brabant'),
(74910, 63049, 'no_lang_code', 'name', 'Andair AG (Switzerland)'),
(74911, 63050, 'en', 'name', 'Bone and Joint Clinic of Baton Rouge'),
(74912, 63051, 'no_lang_code', 'name', 'Pioneer Valley Books (United States)'),
(74913, 63052, 'en', 'name', 'Lanzhou Petrochemical Polytechnic'),
(74914, 63052, 'zh', 'name', 'å…°å·žēŸ³åŒ–čŒäøšęŠ€ęœÆå­¦é™¢'),
(74915, 63053, 'no_lang_code', 'name', 'DC2 (United States)'),
(74916, 63054, 'no_lang_code', 'name', 'Dermatrendz'),
(74917, 63055, 'nl', 'name', 'Surinaamse Postspaarbank'),
(74918, 63056, 'no_lang_code', 'name', 'Ingredia (France)'),
(74919, 63057, 'de', 'name', 'GKV Spitzenverband'),
(74920, 63058, 'pl', 'name', 'Szpital Kliniczny Nr 1 we Wrocławiu'),
(74921, 63059, 'en', 'name', 'Ottumwa Regional Health Center'),
(74922, 63060, 'fr', 'name', 'UniversitƩ Jean Lorougnon GuƩdƩ'),
(74923, 63061, 'en', 'name', 'Sichuan Provincial Hospital of Traditional Chinese Medicine'),
(74924, 63061, 'zh', 'name', 'å››å·ēœäø­åŒ»é™¢'),
(74925, 63062, 'en', 'name', 'Massage Therapist Association of Alberta'),
(74926, 63063, 'en', 'name', 'Thomas & Jeanne Elmezzi Foundation'),
(74927, 63064, 'pl', 'name', 'Centralny Szpital Kliniczny'),
(74928, 63065, 'en', 'name', 'Peter G. Dodge Foundation'),
(74929, 63066, 'it', 'name', 'Azienda Ospedaliero Universitario Mater Domini'),
(74930, 63067, 'en', 'name', 'TIAS School for Business and Society'),
(74931, 63068, 'en', 'name', 'Minorities in Mathematics, Science & Engineering'),
(74932, 63069, 'en', 'name', 'American Public Works Association'),
(74933, 63070, 'en', 'name', 'RSUD Prof. Dr. Saiful Anwar Malang'),
(74934, 63071, 'en', 'name', 'Kursk Regional Clinical Oncology Center'),
(74935, 63071, 'ru', 'name', 'ŠŗŃƒŃ€ŃŠŗŠøŠ¹ областной онкологический Гиспансер'),
(74936, 63072, 'de', 'name', 'Vitos'),
(74937, 63073, 'ko', 'name', '마크딜젠'),
(74938, 63073, 'no_lang_code', 'name', 'Macrogen (South Korea)'),
(74939, 63074, 'no_lang_code', 'name', 'Septodont (France)'),
(74940, 63075, 'no_lang_code', 'name', 'Adnoviv (United States)'),
(74941, 63076, 'en', 'name', 'Nashville Public Library'),
(74942, 63077, 'en', 'name', 'Dutch Health Care Inspectorate'),
(74943, 63077, 'nl', 'name', 'Inspectie voor de Gezondheidszorg'),
(74944, 63078, 'pl', 'name', 'Zachodniopomorskie Centrum Onkologii'),
(74945, 63079, 'en', 'name', 'Center for Excellence in Education'),
(74946, 63080, 'no_lang_code', 'name', 'Bühlmann (Switzerland)'),
(74947, 63081, 'no_lang_code', 'name', 'Gadeta (Netherlands)'),
(74948, 63082, 'no_lang_code', 'name', 'TerraFly (United States)'),
(74949, 63083, 'en', 'name', 'Nutrasource'),
(74950, 63084, 'no_lang_code', 'name', 'Eisai (Taiwan)'),
(74951, 63085, 'de', 'name', 'Lungenklinik Kƶln-Merheim'),
(74952, 63086, 'en', 'name', 'First Affiliated Hospital of Shihezi University Medical College'),
(74953, 63086, 'zh', 'name', 'ēŸ³ę²³å­å¤§å­¦åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(74954, 63087, 'en', 'name', 'Dean Foundation'),
(74955, 63088, 'en', 'name', 'New York City Foundation for Computer Science Education'),
(74956, 63089, 'no_lang_code', 'name', 'Tasmanian Abalone Council (Australia)'),
(74957, 63090, 'en', 'name', 'Rwanda Military Hospital'),
(74958, 63091, 'de', 'name', 'Lungenklinik Hemer'),
(74959, 63092, 'en', 'name', 'The state budgetary institution of public health of the Perm Krai "City Children''s Clinical Polyclinic No. 5"'),
(74960, 63093, 'no_lang_code', 'name', 'Schweiger Dermatology Group (United States)'),
(74961, 63094, 'en', 'name', 'Land Information Access Association'),
(74962, 63095, 'en', 'name', 'Orthopaedic Institute for Children'),
(74963, 63096, 'en', 'name', 'Lehigh Center for Clinical Research'),
(74964, 63097, 'en', 'name', 'St. Petersburg State Medical Academy "City Polyclinic ā„–44"'),
(74965, 63097, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ "Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń поликлиника ā„–44"'),
(74966, 63098, 'de', 'name', 'RheiĀ­nisch-BerĀ­giĀ­sche VerĀ­lagsĀ­geĀ­sellĀ­schaft'),
(74967, 63099, 'en', 'name', 'Danish Pain Research Center'),
(74968, 63100, 'en', 'name', 'European Society for Surgical Research'),
(74969, 63101, 'en', 'name', 'Physicians'' Clinic of Iowa'),
(74970, 63102, 'en', 'name', 'Spanish Peaks Regional Health Center'),
(74971, 63103, 'pt', 'name', 'Hospital das ClĆ­nicas da Universidade Federal de Pernambuco'),
(74972, 63104, 'de', 'name', 'Karl Schlecht Stiftung'),
(74973, 63105, 'en', 'name', 'Kuala Lumpur Sports Medicine Centre'),
(74974, 63106, 'en', 'name', 'Montana Science Teachers Association'),
(74975, 63107, 'en', 'name', 'Guangdong Provincial Academy of Environmental Science'),
(74976, 63108, 'en', 'name', 'University Hospital HM Puerta del Sur'),
(74977, 63108, 'es', 'name', 'Hospital Universitario HM Puerta del Sur'),
(74978, 63109, 'nl', 'name', 'CED Groep'),
(74979, 63110, 'no_lang_code', 'name', 'Radiometer (Germany)'),
(74980, 63111, 'de', 'name', 'KfH Kuratorium für Dialyse und Nierentransplantation'),
(74981, 63112, 'no_lang_code', 'name', 'Genexine (South Korea)'),
(74982, 63113, 'en', 'name', 'Municipal Autonomous Healthcare Institution'),
(74983, 63114, 'de', 'name', 'Geriatrische Gesundheitszentren'),
(74984, 63115, 'de', 'name', 'Feuerwehr Brühl'),
(74985, 63116, 'en', 'name', 'Government Medical Officers Association'),
(74986, 63117, 'de', 'name', 'Innovationsgesellschaft Technische UniversitƤt Braunschweig'),
(74987, 63118, 'en', 'name', 'The Sashbear Foundation'),
(74988, 63119, 'de', 'name', 'Poliklinik für Zahnärztliche Prothetik'),
(74989, 63120, 'en', 'name', 'International Society for Quality of Life Research'),
(74990, 63121, 'en', 'name', 'Michigan Healthcare Professionals'),
(74991, 63122, 'en', 'name', 'Presbyterian Rust Medical Center'),
(74992, 63123, 'no_lang_code', 'name', 'Cristal Therapeutics (Netherlands)'),
(74993, 63124, 'en', 'name', 'Penny George Institute for Health and Healing'),
(74994, 63125, 'en', 'name', 'NephroCare'),
(74995, 63126, 'en', 'name', 'Jefferson Hospital'),
(74996, 63127, 'no_lang_code', 'name', 'Deichmann (Germany)'),
(74997, 63128, 'de', 'name', 'Stiftung Pflegewissenschaften Schweiz'),
(74998, 63128, 'en', 'name', 'Nursing Science Foundation Switzerland'),
(74999, 63129, 'en', 'name', 'Mid-Pacific Institute'),
(75000, 63130, 'en', 'name', 'Flagstaff Medical Center'),
(75001, 63131, 'en', 'name', 'GynePro Medical'),
(75002, 63132, 'en', 'name', 'Divya Shanthi Christian Association and Trust'),
(75003, 63133, 'fr', 'name', 'AlterSantƩ'),
(75004, 63134, 'en', 'name', 'Western Australian Fishing Industry Council'),
(75005, 63135, 'en', 'name', 'Italian Society of Rheumatology'),
(75006, 63135, 'it', 'name', 'SocietĆ  Italiana di Reumatologia'),
(75007, 63136, 'no_lang_code', 'name', 'Orthofix (Italy)'),
(75008, 63137, 'nl', 'name', 'Nederlandse Internisten Vereniging'),
(75009, 63138, 'no_lang_code', 'name', 'Expedeon (United States)'),
(75010, 63139, 'en', 'name', 'Vienna School of Clinical Research'),
(75011, 63140, 'en', 'name', 'Iridescent'),
(75012, 63141, 'en', 'name', 'Synergy Health'),
(75013, 63142, 'en', 'name', 'Center for Environment and Community Assets Development'),
(75014, 63142, 'vi', 'name', 'Trung tĆ¢m MĆ“i trĘ°į»ng vĆ  PhĆ”t triển Nguồn lį»±c Cį»™ng đồng'),
(75015, 63143, 'en', 'name', 'State Autonomous Healthcare Institution of the Novosibirsk Region "City Clinical Polyclinic No. 1"'),
(75016, 63144, 'en', 'name', 'St. James Mercy Hospital'),
(75017, 63145, 'en', 'name', 'Dayton Physicians Network'),
(75018, 63146, 'en', 'name', 'Hussman Institute for Autism'),
(75019, 63147, 'es', 'name', 'Grupo Gallego de CÔncer de Pulmón'),
(75020, 63148, 'en', 'name', 'Kaiser Permanente Woodlawn Medical Center'),
(75021, 63149, 'en', 'name', 'Pardee Hospital'),
(75022, 63150, 'en', 'name', 'International Behavioral Neuroscience Society'),
(75023, 63151, 'en', 'name', 'Russell Group'),
(75024, 63152, 'fr', 'name', 'Association Clinique et ThƩrapeutique Infantile du Val de Marne'),
(75025, 63153, 'en', 'name', 'Phoenix Society for Burn Survivors'),
(75026, 63154, 'es', 'name', 'Asociación de Universidades Grupo Montevideo'),
(75027, 63155, 'en', 'name', 'Quality Assurance Netherlands Universities'),
(75028, 63156, 'en', 'name', 'Team Westland'),
(75029, 63157, 'en', 'name', 'Mountain Medicine Society of Nepal'),
(75030, 63158, 'en', 'name', 'Inland Fisheries Service'),
(75031, 63159, 'en', 'name', 'East Bay Consortium of Educational Institutions'),
(75032, 63160, 'en', 'name', 'Virginia Cancer Specialists'),
(75033, 63161, 'en', 'name', 'St. James Healthcare'),
(75034, 63162, 'nl', 'name', 'Vrienden van het Sophia'),
(75035, 63163, 'en', 'name', 'Wellish Vision Institute'),
(75036, 63164, 'nl', 'name', 'Vereniging Nederlandse Cateringorganisaties'),
(75037, 63165, 'en', 'name', 'Saint Luke''s East Hospital'),
(75038, 63166, 'de', 'name', 'ifi–Institut für interdisziplinƤre Medizin'),
(75039, 63166, 'en', 'name', 'Institute for Interdisciplinary Medicine'),
(75040, 63167, 'no_lang_code', 'name', 'Isotopen Technologien München (Germany)'),
(75041, 63168, 'pt', 'name', 'Hospital Infantil Albert Sabin'),
(75042, 63169, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Χανίων "Ο Άγιος Ī“ĪµĻŽĻĪ³Ī¹ĪæĻ‚"'),
(75043, 63169, 'no_lang_code', 'name', 'Chania General Hospital ā€St. Georgeā€'),
(75044, 63170, 'en', 'name', 'Gianni Benzi Pharmacological Research Foundation'),
(75045, 63170, 'it', 'name', 'Fondazione per la Ricerca Farmacologica Gianni Benzi'),
(75046, 63171, 'en', 'name', 'YMCA of Greater Vancouver'),
(75047, 63172, 'de', 'name', 'Wissenschaftliche Gesellschaft Freiburg'),
(75048, 63173, 'nl', 'name', 'De Forensische Zorgspecialisten'),
(75049, 63174, 'en', 'name', 'St. Anthony Hospital'),
(75050, 63175, 'en', 'name', 'Chinese Association for the Study of Pain'),
(75051, 63176, 'en', 'name', 'Malaysian Society of Anaesthesiologists'),
(75052, 63177, 'en', 'name', 'Texas Digestive Disease Consultants'),
(75053, 63178, 'no_lang_code', 'name', 'E&L Medical Systems (Germany)'),
(75054, 63179, 'de', 'name', 'BG Klinikum Duisburg'),
(75055, 63180, 'en', 'name', 'Gynecologic Oncology Associates'),
(75056, 63181, 'en', 'name', 'Global Alliance for Regenerative Medicine'),
(75057, 63182, 'en', 'name', 'Benelux Society of Phlebology'),
(75058, 63182, 'nl', 'name', 'Secretariat of the Benelux Society of Phlebology'),
(75059, 63183, 'en', 'name', 'Kawasaki Disease Foundation'),
(75060, 63184, 'no_lang_code', 'name', 'Octapharma (United States)'),
(75061, 63185, 'en', 'name', 'American Joint Replacement Registry'),
(75062, 63186, 'en', 'name', 'Regional Children''s Clinical Hospital No. 1'),
(75063, 63186, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ ДверГловской области ŠžŠ±Š»Š°ŃŃ‚Š½Š°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–1'),
(75064, 63187, 'en', 'name', 'Alma'),
(75065, 63188, 'no_lang_code', 'name', 'SteriPharm (Germany)'),
(75066, 63189, 'no_lang_code', 'name', 'Plymouth Grating Laboratory (United States)'),
(75067, 63190, 'no_lang_code', 'name', 'PronoKal Group (Spain)'),
(75068, 63191, 'nl', 'name', 'Conrisq Groep'),
(75069, 63192, 'en', 'name', 'Montana Health Research Institute'),
(75070, 63193, 'en', 'name', 'National Institute of Lymphology'),
(75071, 63194, 'nl', 'name', 'Zorg in Ontwikkeling'),
(75072, 63195, 'no_lang_code', 'name', 'GlucoSentient (United States)'),
(75073, 63196, 'en', 'name', 'Aga Khan Development Network'),
(75074, 63197, 'en', 'name', 'Siskiyou County Office of Education'),
(75075, 63198, 'en', 'name', 'Breast Cancer Network Australia'),
(75076, 63199, 'en', 'name', 'Arkansas Heart Hospital'),
(75077, 63200, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (France)'),
(75078, 63201, 'no_lang_code', 'name', 'BioScience Laboratories (United States)'),
(75079, 63202, 'en', 'name', 'Mountain Studies Institute'),
(75080, 63203, 'en', 'name', 'Global Health Association of Miami'),
(75081, 63204, 'en', 'name', 'Retina Associates of Florida'),
(75082, 63205, 'es', 'name', 'Hospital Pedro de Elizalde'),
(75083, 63206, 'en', 'name', 'Beals institute'),
(75084, 63207, 'en', 'name', 'Kaiser Permanente Baldwin Park Medical Center'),
(75085, 63208, 'no_lang_code', 'name', 'Bitop (Germany)'),
(75086, 63209, 'no_lang_code', 'name', 'Cardiac Motion (United States)'),
(75087, 63210, 'en', 'name', 'Xinhua Translational Institute for Cancer Pain'),
(75088, 63210, 'zh', 'name', 'äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žę–°åŽåŒ»é™¢'),
(75089, 63211, 'en', 'name', 'CHI Health Mercy Council Bluffs'),
(75090, 63212, 'en', 'name', 'IVO Addiction Research Institute'),
(75091, 63213, 'no_lang_code', 'name', 'NutritionQuest (United States)'),
(75092, 63214, 'en', 'name', 'Noyes Memorial Hospital'),
(75093, 63215, 'en', 'name', 'Toledo Clinic Cancer Center'),
(75094, 63216, 'en', 'name', 'Jack Jablonski BEL13VE in Miracles Foundation'),
(75095, 63217, 'en', 'name', 'GI Cancer Institute'),
(75096, 63218, 'en', 'name', 'Lakewood Health System'),
(75097, 63219, 'en', 'name', 'Acıbadem University Atakent Hospital'),
(75098, 63220, 'no_lang_code', 'name', 'Ardelyx (United States)'),
(75099, 63221, 'no_lang_code', 'name', 'Remedial Centre Hospital'),
(75100, 63222, 'de', 'name', 'OH DO KWAN Stiftung Ludmilla Pankofer und Carl Wiedmeier'),
(75101, 63223, 'de', 'name', 'Asklepios Klinikum Harburg'),
(75102, 63224, 'no_lang_code', 'name', 'Nobilis Therapeutics (United States)'),
(75103, 63225, 'no_lang_code', 'name', 'International Isotopes (United States)'),
(75104, 63226, 'en', 'name', 'Israeli Association for Cardiovascular Trials'),
(75105, 63227, 'en', 'name', 'Turkish Thoracic Society'),
(75106, 63227, 'tr', 'name', 'Türk Toraks Derneği'),
(75107, 63228, 'no_lang_code', 'name', 'Profound Medical (Canada)'),
(75108, 63229, 'en', 'name', 'Israel Medical Association'),
(75109, 63230, 'en', 'name', 'Samsung Life Public Welfare Foundation'),
(75110, 63230, 'ko', 'name', '삼성 ģƒėŖ… 복지 ģž¬ė‹Ø'),
(75111, 63231, 'en', 'name', 'Second Affiliated Hospital of Fujian Medical University'),
(75112, 63231, 'zh', 'name', 'ē¦å»ŗåŒ»ē§‘å¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(75113, 63232, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© مجدى ŁŠŲ¹Ł‚ŁˆŲØ للقلب'),
(75114, 63232, 'en', 'name', 'Magdi Yacoub Heart Foundation'),
(75115, 63233, 'en', 'name', 'Kigezi Healthcare Foundation'),
(75116, 63234, 'fr', 'name', 'Groupe Hospitalier de l''Institut Catholique de Lille'),
(75117, 63235, 'en', 'name', 'Kimberley Aboriginal Medical Services'),
(75118, 63236, 'en', 'name', 'Nepal Fertility Care Center'),
(75119, 63237, 'es', 'name', 'Insitituto Mexicano de Investigación de Familia y Población, Yo quiero Yo puedo'),
(75120, 63238, 'no_lang_code', 'name', 'Vaximm (Germany)'),
(75121, 63239, 'nl', 'name', 'Orthopedie Groot Eindhoven'),
(75122, 63240, 'es', 'name', 'Instituto MƩdico Platense'),
(75123, 63241, 'no_lang_code', 'name', 'Vascular BioSciences (United States)'),
(75124, 63242, 'en', 'name', 'Society for Minimally Invasive Spine Surgery'),
(75125, 63243, 'en', 'name', 'ANOA'),
(75126, 63244, 'de', 'name', 'Neurologisches Fachkrankenhaus für Bewegungsstörungen/Parkinson'),
(75127, 63245, 'fr', 'name', 'Direction GƩnƩrale de la Pharmacie, du MƩdicament et des Laboratoires'),
(75128, 63246, 'en', 'name', 'Digestive Health Center of Louisiana'),
(75129, 63247, 'nl', 'name', 'Andros Mannenkliniek'),
(75130, 63248, 'en', 'name', 'Institute for Regenerative and Cellular Medicine'),
(75131, 63249, 'es', 'name', 'Centro de ImplantologĆ­a CirugĆ­a Oral y Maxilofacial'),
(75132, 63250, 'no_lang_code', 'name', 'Hua Medicine (China)'),
(75133, 63251, 'id', 'name', 'Pembuluh Darah Harapan Kita'),
(75134, 63252, 'en', 'name', 'JH Rahn Foundation'),
(75135, 63253, 'en', 'name', 'Cure Foundation');
INSERT INTO `ror_settings` VALUES
(75136, 63254, 'no_lang_code', 'name', 'Sevika Medical (Switzerland)'),
(75137, 63255, 'en', 'name', 'DuPage Medical Group'),
(75138, 63256, 'en', 'name', 'Hayward Area Memorial Hospital'),
(75139, 63257, 'en', 'name', 'Council for Adult and Experiential Learning'),
(75140, 63258, 'en', 'name', 'Piramal Clinical Research'),
(75141, 63259, 'pt', 'name', 'Hospital Regional de Presidente Prudente'),
(75142, 63260, 'en', 'name', 'Japanese Academy of Maxillofacial Implants'),
(75143, 63261, 'de', 'name', 'Stiftung Depressionsforschung'),
(75144, 63262, 'no_lang_code', 'name', 'PlantTec Medical (Germany)'),
(75145, 63263, 'en', 'name', 'Meditation De-Addiction Health AIDS Nutrition Trust'),
(75146, 63264, 'de', 'name', 'Parkklinik Wiesbaden Schlangenbad'),
(75147, 63265, 'en', 'name', 'MidMichigan Medical Center - Alpena'),
(75148, 63266, 'de', 'name', 'Raphaelsklinik Münster'),
(75149, 63267, 'no_lang_code', 'name', 'Boehringer Ingelheim (Denmark)'),
(75150, 63268, 'fr', 'name', 'HƓpitaux Universitaires Grand Ouest'),
(75151, 63269, 'en', 'name', 'St. Peter’s Child Development Center'),
(75152, 63270, 'en', 'name', 'Connecticut Skin Institute'),
(75153, 63271, 'en', 'name', 'Oncological Dispensary No. 2'),
(75154, 63271, 'ru', 'name', 'ŠžŠ½ŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Гиспансер ā„– 2'),
(75155, 63272, 'sv', 'name', 'Probi'),
(75156, 63273, 'en', 'name', 'Alaska Institute for Justice'),
(75157, 63274, 'en', 'name', 'Chinese Medical Center'),
(75158, 63275, 'de', 'name', 'ResOrtho Stiftung'),
(75159, 63275, 'en', 'name', 'ResOrtho Foundation'),
(75160, 63276, 'en', 'name', 'Texas Liver Institute'),
(75161, 63277, 'en', 'name', 'Atlantia Food Clinical Trials'),
(75162, 63278, 'es', 'name', 'Instituto Sexológico Murciano'),
(75163, 63279, 'de', 'name', 'Albert und Barbara von Metzler-Stiftung'),
(75164, 63280, 'de', 'name', 'Fachklinik 360°'),
(75165, 63281, 'de', 'name', 'Klinik Bad Reichenhall'),
(75166, 63282, 'nl', 'name', 'IJsselheem'),
(75167, 63283, 'en', 'name', 'Family Guidance Centers'),
(75168, 63284, 'en', 'name', 'The Howard Foundation'),
(75169, 63285, 'en', 'name', 'Richmond Behavioral Associates'),
(75170, 63286, 'en', 'name', 'Sancheti Institute For Orthopaedics & Rehabilitation'),
(75171, 63287, 'no_lang_code', 'name', 'TransTissue (Germany)'),
(75172, 63288, 'en', 'name', 'Western Governors Association'),
(75173, 63289, 'en', 'name', 'Madison County Health Department'),
(75174, 63290, 'no_lang_code', 'name', 'Lysosomal Therapeutics (United States)'),
(75175, 63291, 'de', 'name', 'Klinikum Konstanz'),
(75176, 63292, 'en', 'name', 'Adam International Hospital'),
(75177, 63293, 'pl', 'name', 'Samodzielny Publiczny Szpital Specjalistyczny Chorób Płuc im. dr O. Sokołowskiego'),
(75178, 63294, 'en', 'name', 'Municipal Budgetary Health care Institution "Clinical and Diagnostic Center" Health'),
(75179, 63295, 'en', 'name', 'Hawaii Department of Human Services'),
(75180, 63296, 'en', 'name', 'Center for the Improvement of Child Caring'),
(75181, 63297, 'es', 'name', 'Instituto de Salud del Estado de MƩxico'),
(75182, 63298, 'nl', 'name', 'Nationaal MS Fonds'),
(75183, 63299, 'no_lang_code', 'name', 'Lumenware (United States)'),
(75184, 63300, 'no_lang_code', 'name', 'Kowa (United States)'),
(75185, 63301, 'en', 'name', 'Motu Economic and Public Policy Research'),
(75186, 63302, 'en', 'name', 'Essex Westford School District'),
(75187, 63303, 'de', 'name', 'Elefanten Apotheke'),
(75188, 63304, 'en', 'name', 'Ohio Gastroenterology and Liver Institute'),
(75189, 63305, 'en', 'name', 'Department of Health'),
(75190, 63305, 'tl', 'name', 'Kagawaran ng Kalusugan'),
(75191, 63306, 'no_lang_code', 'name', 'Carthago International Solutions (United States)'),
(75192, 63307, 'en', 'name', 'Manitoba Institute for Patient Safety'),
(75193, 63308, 'en', 'name', 'Panaquatic'),
(75194, 63309, 'en', 'name', 'GOUZ YaO "Solovyov NV Clinical Emergency Hospital"'),
(75195, 63310, 'de', 'name', 'Hochschule für Gesundheitsorientierte Wissenschaften Rhein-Neckar'),
(75196, 63311, 'en', 'name', 'Oklahoma Blood Institute'),
(75197, 63312, 'de', 'name', 'Die ZahnƤrzte.ch'),
(75198, 63313, 'de', 'name', 'Deutschen Akademie für Flug- und Reisemedizin'),
(75199, 63313, 'en', 'name', 'German Academy for Aviation and Travel Medicine'),
(75200, 63314, 'en', 'name', 'Swedish Prison and Probation Service'),
(75201, 63314, 'sv', 'name', 'KriminalvƄrden'),
(75202, 63315, 'en', 'name', 'MedStar Heart & Vascular Institute'),
(75203, 63316, 'en', 'name', 'Vasan Eye Care Hospital'),
(75204, 63317, 'en', 'name', 'Mary Washington Hospital'),
(75205, 63318, 'fr', 'name', 'Institut SupĆ©rieur du Sport et de l’Éducation Physique de Sfax'),
(75206, 63319, 'no_lang_code', 'name', 'Asahi Kasei (Germany)'),
(75207, 63320, 'en', 'name', 'Aleut International Association'),
(75208, 63321, 'no_lang_code', 'name', 'Baxter (Belgium)'),
(75209, 63322, 'en', 'name', 'Fetal Medicine Foundation Belgium'),
(75210, 63322, 'nl', 'name', 'Foetale Geneeskunde'),
(75211, 63323, 'en', 'name', 'Niger State Ministry of Health'),
(75212, 63324, 'no_lang_code', 'name', 'MusclePharm Sports Science Institute (United States)'),
(75213, 63325, 'no_lang_code', 'name', 'Optima Pharmazeutische (Germany)'),
(75214, 63326, 'en', 'name', 'Institute for Liver Health'),
(75215, 63327, 'en', 'name', 'Colorado Blood Cancer Institute'),
(75216, 63328, 'no_lang_code', 'name', 'Launchpad Central (United States)'),
(75217, 63329, 'no_lang_code', 'name', 'Novo Nordisk (Italy)'),
(75218, 63330, 'en', 'name', 'Bloom Fertility Centre'),
(75219, 63331, 'en', 'name', 'State Radio Regulation Of China'),
(75220, 63331, 'zh', 'name', 'å›½å®¶ę— ēŗæē”µē›‘ęµ‹äø­åæƒ'),
(75221, 63332, 'no_lang_code', 'name', 'Akupunkturforeningen'),
(75222, 63333, 'en', 'name', 'Graves Gilbert Clinic'),
(75223, 63334, 'en', 'name', 'Solveig and Johan P. Sommer''s foundation'),
(75224, 63334, 'no', 'name', 'Solveig og Johan P. Sommers stiftelse'),
(75225, 63335, 'de', 'name', 'Nationallotterie'),
(75226, 63335, 'fr', 'name', 'Loterie Nationale'),
(75227, 63335, 'nl', 'name', 'Nationale loterij'),
(75228, 63336, 'en', 'name', 'Leiomyosarcoma Direct Research Foundation'),
(75229, 63337, 'en', 'name', 'Shenzhen Habitat Environment Committee'),
(75230, 63337, 'zh', 'name', 'ę·±åœ³åø‚äŗŗå±…ēŽÆå¢ƒå§”å‘˜ä¼š'),
(75231, 63338, 'de', 'name', 'Klinikum Bremerhaven-Reinkenheide'),
(75232, 63339, 'nl', 'name', 'Centrum Verslavings Onderzoek'),
(75233, 63340, 'en', 'name', 'Riverside Transplantation Institute'),
(75234, 63341, 'en', 'name', 'Intercultural Development Research Association'),
(75235, 63342, 'no_lang_code', 'name', 'Clinipace (United States)'),
(75236, 63343, 'en', 'name', 'Southwest General Health Center'),
(75237, 63344, 'en', 'name', 'Fruit Research Institute'),
(75238, 63344, 'zh', 'name', 'å¹æäøœēœå†œäøšē§‘å­¦é™¢ęžœę ‘ē ”ē©¶ę‰€'),
(75239, 63345, 'cs', 'name', 'Ústav molekulĆ”rnĆ­ a translačnĆ­ medicĆ­ny'),
(75240, 63345, 'en', 'name', 'Institute of Molecular and Translational Medicine'),
(75241, 63346, 'en', 'name', 'Michael Reese Research and Education Foundation'),
(75242, 63347, 'nl', 'name', 'GGNet'),
(75243, 63348, 'en', 'name', 'Bronx Psychiatric Center'),
(75244, 63349, 'no_lang_code', 'name', 'Elektror Airsystems (Germany)'),
(75245, 63350, 'no_lang_code', 'name', 'Zija International (United States)'),
(75246, 63351, 'no_lang_code', 'name', 'Vortex Hydro Energy (United States)'),
(75247, 63352, 'de', 'name', 'Union zur Fƶrderung von Oel- und Proteinpflanzen e.V.'),
(75248, 63353, 'en', 'name', 'Maryland Department of Legislative Services'),
(75249, 63354, 'en', 'name', 'National Association of Attorneys General'),
(75250, 63355, 'en', 'name', 'Science Factory'),
(75251, 63356, 'en', 'name', 'American Association of Physical Anthropologists'),
(75252, 63357, 'no_lang_code', 'name', 'Klar Scientific (United States)'),
(75253, 63358, 'en', 'name', 'Northeastern Mental Health Center'),
(75254, 63359, 'en', 'name', 'San Diego Spine Institute'),
(75255, 63360, 'en', 'name', 'Gruter Institute'),
(75256, 63361, 'en', 'name', 'St. Petersburg State Health Care Institution "Elizabethan Hospital"'),
(75257, 63361, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Š•Š»ŠøŠ·Š°Š²ŠµŃ‚ŠøŠ½ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(75258, 63362, 'en', 'name', 'Sparta Cancer Center'),
(75259, 63363, 'en', 'name', 'Ablon Skin Institute and Research Center'),
(75260, 63364, 'en', 'name', 'Parker Adventist Hospital'),
(75261, 63365, 'en', 'name', 'Madison Children''s Museum'),
(75262, 63366, 'en', 'name', 'Adelaide Institute for Sleep Health'),
(75263, 63367, 'de', 'name', 'BG Klinikum Bergmannstrost Halle'),
(75264, 63368, 'en', 'name', 'Odessa Memorial Healthcare Center'),
(75265, 63369, 'en', 'name', 'Society For Pediatric Dermatology'),
(75266, 63370, 'en', 'name', 'Philippines Tuberculosis Society'),
(75267, 63371, 'en', 'name', 'Mercy Regional Medical Center'),
(75268, 63372, 'fr', 'name', 'Agence Universitaire de la Francophonie'),
(75269, 63373, 'no_lang_code', 'name', 'OESH Shoes (United States)'),
(75270, 63374, 'ar', 'name', 'مستؓفى ŲÆŁ…Ų“Ł‚'),
(75271, 63374, 'en', 'name', 'Damascus Hospital'),
(75272, 63375, 'en', 'name', 'City Clinical Hospital No. 2'),
(75273, 63375, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š‘Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 2'),
(75274, 63376, 'nl', 'name', 'GGD Zeeland, Gemeentelijke gezondheidsdienst Zeeland'),
(75275, 63377, 'en', 'name', 'Miina SillanpƤƤ Foundation'),
(75276, 63377, 'fi', 'name', 'Miina SillanpƤƤn SƤƤtiƶ'),
(75277, 63378, 'nl', 'name', 'Zorgverzekeraars Nederland'),
(75278, 63379, 'no_lang_code', 'name', 'BiotecEra (United States)'),
(75279, 63380, 'da', 'name', 'Dansk Centralbibliotek for Sydslesvig'),
(75280, 63381, 'nl', 'name', 'Fysio Schambergen'),
(75281, 63382, 'en', 'name', 'Kaiser Permanente Zion Medical Center'),
(75282, 63383, 'en', 'name', 'The Lloyd Society'),
(75283, 63384, 'nl', 'name', 'Sint Maartenskliniek'),
(75284, 63385, 'de', 'name', 'Medalp Imst - Zentrum für ambulante Chirurgie Betriebs'),
(75285, 63386, 'en', 'name', 'Tarkio College'),
(75286, 63387, 'en', 'name', 'National Finance Center'),
(75287, 63388, 'no_lang_code', 'name', 'Medartis (Switzerland)'),
(75288, 63389, 'nl', 'name', 'Antes'),
(75289, 63390, 'es', 'name', 'Instituto Nicaraguense de Pesca y Acuicultura'),
(75290, 63391, 'de', 'name', 'Klinik für Augenheilkunde'),
(75291, 63391, 'en', 'name', 'Ophthalmology Clinic'),
(75292, 63392, 'no_lang_code', 'name', 'pfm medical (Germany)'),
(75293, 63393, 'en', 'name', 'Ludwig Boltzmann Institute for Translational Heart Failure Research'),
(75294, 63394, 'en', 'name', 'Royal Health Awareness Society'),
(75295, 63395, 'en', 'name', 'Assil Eye Institute'),
(75296, 63396, 'de', 'name', 'Ministerium für Heimat, Kommunales, Bau und Gleichstellung des Landes Nordrhein-Westfalen'),
(75297, 63397, 'en', 'name', 'Kaohsiung Breast Cancer Promotion and Education Society'),
(75298, 63397, 'zh', 'name', 'ē¤¾åœ˜ę³•äŗŗé«˜é›„åø‚ä¹³ē™Œé˜²ę²»č”›ę•™å­øęœƒ'),
(75299, 63398, 'en', 'name', 'Israel Diabetes Association'),
(75300, 63398, 'he', 'name', 'אגודה ×™×©×Ø××œ×™×Ŗ ×œ×”×•×›×Ø×Ŗ'),
(75301, 63399, 'en', 'name', 'South Australian Rock Lobster Advisory Council'),
(75302, 63400, 'nl', 'name', 'Eurocept Groep'),
(75303, 63400, 'no_lang_code', 'name', 'Eurocept Group (Netherlands)'),
(75304, 63401, 'en', 'name', 'The Advanced IVF Institute'),
(75305, 63402, 'nl', 'name', 'NIM Maatschappelijk Werk'),
(75306, 63403, 'en', 'name', 'Institute for Science and Human Values'),
(75307, 63404, 'am', 'name', 'į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆ›į‹­įŠ­įˆ® į‹į‹­įŠ“įŠ•įˆµ į‰°į‰‹įˆ›į‰µ įˆ›įˆ…į‰ įˆ­'),
(75308, 63404, 'en', 'name', 'Association of Ethiopian Microfinance Institutions'),
(75309, 63405, 'en', 'name', 'Arthritis Treatment Center'),
(75310, 63406, 'no_lang_code', 'name', 'Global BioClinical (United States)'),
(75311, 63407, 'en', 'name', 'Keystone Initiative for Network Based Education and Research'),
(75312, 63408, 'en', 'name', 'New Mexico Heart Institute'),
(75313, 63409, 'no_lang_code', 'name', 'Dentaid (Netherlands)'),
(75314, 63410, 'nl', 'name', 'Visio'),
(75315, 63411, 'en', 'name', 'Pinnacle Oncology Hematology'),
(75316, 63412, 'en', 'name', 'Ontario Association of Optometrists'),
(75317, 63413, 'no_lang_code', 'name', 'Terumo (Belgium)'),
(75318, 63414, 'no_lang_code', 'name', 'Knop Laboratories (Chile)'),
(75319, 63415, 'de', 'name', 'UniversitƤts und Rehabilitationskliniken Ulm'),
(75320, 63415, 'en', 'name', 'University and Rehabilitation Clinics Ulm'),
(75321, 63416, 'en', 'name', 'St. Francis Regional Medical Center'),
(75322, 63417, 'no_lang_code', 'name', 'EHI Retail Institute (Germany)'),
(75323, 63418, 'en', 'name', 'World Childhood Foundation'),
(75324, 63419, 'no_lang_code', 'name', 'Mipharm (Italy)'),
(75325, 63420, 'it', 'name', 'Consorzio inter-Universitario per la previsione e la prevenzione dei Grandi RIschi'),
(75326, 63421, 'en', 'name', 'Advanced Memory Research Institute of New Jersey'),
(75327, 63422, 'en', 'name', 'Cornea and Laser Eye Institute - Hersh Vision Group'),
(75328, 63423, 'no_lang_code', 'name', 'Kellogg’s (Belgium)'),
(75329, 63424, 'en', 'name', 'Gantt Clinical Research Institute'),
(75330, 63425, 'de', 'name', 'AGO Austria'),
(75331, 63426, 'fr', 'name', 'Centre Hospitalier Guillaume RƩgnier'),
(75332, 63427, 'en', 'name', 'AIDS Healthcare Foundation'),
(75333, 63428, 'en', 'name', 'Shanghai Cell Therapy Research Institute'),
(75334, 63429, 'nl', 'name', 'Departement Cultuur, Jeugd en Media'),
(75335, 63430, 'no_lang_code', 'name', 'NeuroTrials Research (United States)'),
(75336, 63431, 'pt', 'name', 'Hospital Pitangueiras'),
(75337, 63432, 'en', 'name', 'Central European Cooperative Oncology Group'),
(75338, 63433, 'no_lang_code', 'name', 'ProMetic Life Sciences (United States)'),
(75339, 63434, 'en', 'name', 'Ministry of Health and Quality of Life'),
(75340, 63435, 'nl', 'name', 'Nederlandse Hoofdpijn Vereniging'),
(75341, 63436, 'de', 'name', 'SƤchsisches Krankenhaus Rodewisch'),
(75342, 63437, 'no_lang_code', 'name', 'Difa Cooper (Italy)'),
(75343, 63438, 'en', 'name', 'International Society for Chronobiology'),
(75344, 63439, 'lt', 'name', 'Respublikinės Kauno Ligoninės'),
(75345, 63440, 'en', 'name', 'Marcio Andres Foundation'),
(75346, 63440, 'es', 'name', 'Fundación Andrés Marcio'),
(75347, 63441, 'it', 'name', 'Associazione Medici Diabetologi'),
(75348, 63442, 'nl', 'name', 'D.H. Heijne Stichting'),
(75349, 63443, 'en', 'name', 'Lake Norman Oncology'),
(75350, 63444, 'no_lang_code', 'name', 'Derma Consult (Germany)'),
(75351, 63445, 'de', 'name', 'Ministerium für Arbeit, Gesundheit und Soziales des Landes Nordrhein-Westfalen'),
(75352, 63446, 'en', 'name', 'Justin Parker Neurological Institute'),
(75353, 63447, 'en', 'name', 'Yoga Science Foundation'),
(75354, 63448, 'en', 'name', 'Precision Research Institute'),
(75355, 63449, 'en', 'name', 'QOL-ONE Association'),
(75356, 63449, 'it', 'name', 'Associazione QOL-ONE'),
(75357, 63450, 'en', 'name', 'LifeSpan Medical Institute'),
(75358, 63451, 'en', 'name', 'Dallas Nephrology Associates'),
(75359, 63452, 'de', 'name', 'Allgemeiner Deutscher Tanzlehrerverband'),
(75360, 63453, 'en', 'name', 'Tseung Kwan O Hospital'),
(75361, 63453, 'zh', 'name', 'å°‡č»ę¾³é†«é™¢'),
(75362, 63454, 'no_lang_code', 'name', 'Bemer (Liechtenstein)'),
(75363, 63455, 'en', 'name', 'Ministry of Economy and Finance'),
(75364, 63456, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Κολέγιο Ī˜ĪµĻĪ±Ļ€ĪµĪÆĪ±Ļ‚ της Ī‘ĪøĪ·ĻĪæĻƒĪŗĪ»Ī®ĻĻ‰ĻƒĪ·Ļ‚'),
(75365, 63456, 'en', 'name', 'Hellenic College of Treatment of Atherosclerosis'),
(75366, 63457, 'en', 'name', 'OSF St. Francis Hospital & Medical Group'),
(75367, 63458, 'no_lang_code', 'name', 'ISO Arzneimittel (Germany)'),
(75368, 63459, 'en', 'name', 'Doctors Without Borders'),
(75369, 63459, 'fr', 'name', 'Médecins Sans Frontières'),
(75370, 63460, 'de', 'name', 'Gesamtverband der Deutschen Versicherungswirtschaft'),
(75371, 63460, 'en', 'name', 'German Insurance Association'),
(75372, 63461, 'en', 'name', 'ADD Centre'),
(75373, 63462, 'en', 'name', 'River Valley Community College'),
(75374, 63463, 'en', 'name', 'National Initiative Brain & Cognition'),
(75375, 63463, 'nl', 'name', 'Nationaal Initiatief Hersenen & Cognitie'),
(75376, 63464, 'en', 'name', 'Orange County Global Medical Center'),
(75377, 63465, 'en', 'name', 'Chongqing Population and Family Planning Science and Technology Research Institute'),
(75378, 63465, 'zh', 'name', 'é‡åŗ†åø‚äŗŗå£å’Œč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(75379, 63466, 'en', 'name', 'Sericultural Research Institute'),
(75380, 63466, 'zh', 'name', '养殖研究所'),
(75381, 63467, 'en', 'name', 'Heekin Clinic'),
(75382, 63468, 'de', 'name', 'OrthopƤdische Praxis'),
(75383, 63469, 'en', 'name', 'North Little Rock Health Department'),
(75384, 63470, 'en', 'name', 'The Icelandic Physiotherapy Association'),
(75385, 63470, 'is', 'name', 'Icelandic Félag sjúkraþjÔlfara'),
(75386, 63471, 'en', 'name', 'Bulgarr Ngaru Medical Aboriginal Corporation'),
(75387, 63472, 'en', 'name', 'Medicor Foundation'),
(75388, 63473, 'no_lang_code', 'name', 'Associated Management Services (United States)'),
(75389, 63474, 'en', 'name', 'U.S. Space and Rocket Center'),
(75390, 63475, 'nl', 'name', 'Cordaid'),
(75391, 63476, 'no_lang_code', 'name', 'Swisstom (Switzerland)'),
(75392, 63477, 'de', 'name', 'Deutsche Gesellschaft für Anästhesiologie und Intensivmedizin'),
(75393, 63478, 'pt', 'name', 'Instituto Vascular BH'),
(75394, 63479, 'en', 'name', 'Healthcare Global Enterprises'),
(75395, 63480, 'no_lang_code', 'name', 'Electrocon International (United States)'),
(75396, 63481, 'en', 'name', 'St. Mary''s Medical Center'),
(75397, 63482, 'sr', 'name', 'Institut za Reumatologiju'),
(75398, 63483, 'no_lang_code', 'name', 'Provexis (United Kingdom)'),
(75399, 63484, 'es', 'name', 'Asociación Española de Psiquiatría del Niño y el Adolescente'),
(75400, 63485, 'de', 'name', 'Austrian Society of Hypertension, Ɩsterreichische Gesellschaft für Hypertensiologie'),
(75401, 63486, 'en', 'name', 'New Hampshire Audubon'),
(75402, 63487, 'it', 'name', 'Casa di Cura CittĆ  di Roma'),
(75403, 63488, 'en', 'name', 'Running Injury Clinic'),
(75404, 63489, 'en', 'name', 'California Institute Of Medical Science'),
(75405, 63490, 'de', 'name', 'Post Apotheke'),
(75406, 63491, 'en', 'name', 'Global Alzheimer''s Platform Foundation'),
(75407, 63492, 'en', 'name', 'Nordic Society for Pediatric Hematology and Oncology'),
(75408, 63493, 'no_lang_code', 'name', 'Dentium (South Korea)'),
(75409, 63494, 'nl', 'name', 'Stichting LOOP'),
(75410, 63495, 'en', 'name', 'Farzan Knowledge Development, Research and Technology Institute'),
(75411, 63496, 'en', 'name', 'CReATe Fertility Centre'),
(75412, 63497, 'no_lang_code', 'name', 'Lamepro Benelux (Netherlands)'),
(75413, 63498, 'nl', 'name', 'BartimƩus'),
(75414, 63499, 'en', 'name', 'Florida Urology Associates'),
(75415, 63500, 'no_lang_code', 'name', 'Alaska Biological Research (United States)'),
(75416, 63501, 'en', 'name', 'Westwood Institute for Anxiety Disorders'),
(75417, 63502, 'en', 'name', 'Dallas Ear Institute'),
(75418, 63503, 'no_lang_code', 'name', 'DigsFish Services (Australia)'),
(75419, 63504, 'en', 'name', 'St. Joseph Mercy Canton'),
(75420, 63505, 'no_lang_code', 'name', 'Mammoet (Netherlands)'),
(75421, 63506, 'no_lang_code', 'name', 'Indena (France)'),
(75422, 63507, 'no_lang_code', 'name', 'Eminence Clinical Research (United States)'),
(75423, 63508, 'no_lang_code', 'name', 'PAX Scientific (United States)'),
(75424, 63509, 'en', 'name', 'American Foundry Society'),
(75425, 63510, 'en', 'name', 'Chimes Society'),
(75426, 63511, 'nl', 'name', 'Nederlandse Vereniging voor Radiologie'),
(75427, 63512, 'en', 'name', 'Society on Neuroimmune Pharmacology'),
(75428, 63513, 'en', 'name', 'Australian Barramundi Farmers Association'),
(75429, 63514, 'de', 'name', 'Evangelisches Krankenhaus Oldenburg'),
(75430, 63515, 'nl', 'name', 'Radiotherapie Groep'),
(75431, 63516, 'en', 'name', 'Advanced Radiation Centers of New York'),
(75432, 63517, 'en', 'name', 'Pikeville Medical Center'),
(75433, 63518, 'en', 'name', 'Western Trauma Association'),
(75434, 63519, 'no_lang_code', 'name', 'Dfusion (United States)'),
(75435, 63520, 'nl', 'name', 'Stichting Adriaan Metius'),
(75436, 63521, 'no_lang_code', 'name', 'Evalan (Netherlands)'),
(75437, 63522, 'no_lang_code', 'name', 'National Bioproducts Institute (South Africa)'),
(75438, 63523, 'no_lang_code', 'name', 'Oncoscience (Germany)'),
(75439, 63524, 'en', 'name', 'Mesa Public Schools'),
(75440, 63525, 'no_lang_code', 'name', 'Inversago Pharma (Canada)'),
(75441, 63526, 'es', 'name', 'Centro de Infertilidad y Reproducción Humana'),
(75442, 63527, 'es', 'name', 'Sociedad EspaƱola de Cirugƭa PediƔtrica'),
(75443, 63528, 'nl', 'name', 'De Viersprong'),
(75444, 63529, 'de', 'name', 'HIZ Berlin'),
(75445, 63530, 'no_lang_code', 'name', 'Gesundes Kinzigtal (Germany)'),
(75446, 63531, 'en', 'name', 'Indian Society of Critical Care Medicine'),
(75447, 63532, 'en', 'name', 'Excelsior Orthopaedics'),
(75448, 63533, 'en', 'name', 'Irish Pharmacy Union'),
(75449, 63534, 'en', 'name', 'OASI Bioresearch Foundation'),
(75450, 63535, 'nl', 'name', 'Koninklijke Nederlandse Klim- en Bergsport Vereniging'),
(75451, 63536, 'en', 'name', 'OCTANE FOUNDATION'),
(75452, 63537, 'en', 'name', 'New Hampshire Nurses'' Association'),
(75453, 63538, 'en', 'name', 'Northern Indiana Cancer Research Consortium'),
(75454, 63539, 'en', 'name', 'Port Macquarie Base Hospital'),
(75455, 63540, 'nl', 'name', 'Arkin'),
(75456, 63541, 'en', 'name', 'Go4children'),
(75457, 63542, 'en', 'name', 'Coalition of Asian-American Independent Practice Association'),
(75458, 63543, 'no_lang_code', 'name', 'Coƶperatie VGZ (Netherlands)'),
(75459, 63544, 'en', 'name', 'Armstrong Center for Medicine & Health'),
(75460, 63545, 'en', 'name', 'Retina Vitreous Associates of Florida'),
(75461, 63546, 'en', 'name', 'Chautauqua Institution'),
(75462, 63547, 'en', 'name', 'Cypress Pointe Pain Management'),
(75463, 63548, 'de', 'name', 'Netzwerk der Rehabilitationsforschung in Nordrhein-Westfalen'),
(75464, 63549, 'de', 'name', 'Klinik Bad Bergzabern'),
(75465, 63550, 'en', 'name', 'Northern Area Armed Forces Hospital'),
(75466, 63551, 'de', 'name', 'Sana Kliniken Leipziger Land'),
(75467, 63552, 'en', 'name', 'OceanWatch Australia'),
(75468, 63553, 'en', 'name', 'ProCare Odessa Heart Institute'),
(75469, 63554, 'en', 'name', 'Oklahoma State Regents for Higher Education'),
(75470, 63555, 'de', 'name', 'Aktion Benni'),
(75471, 63556, 'es', 'name', 'Instituto de GastroenterologĆ­a'),
(75472, 63557, 'no_lang_code', 'name', 'Daacro (Germany)'),
(75473, 63558, 'en', 'name', 'Heart Institute'),
(75474, 63559, 'de', 'name', 'Diagnostisch Therapeutisches Zentrum'),
(75475, 63559, 'en', 'name', 'Diagnostic and Treatment Centre Berlin'),
(75476, 63560, 'en', 'name', 'Southeast Radiation Oncology Group'),
(75477, 63561, 'en', 'name', 'Men''s Health Boston'),
(75478, 63562, 'no_lang_code', 'name', 'Migros (Switzerland)'),
(75479, 63563, 'en', 'name', 'Baltic Institute of Social Sciences'),
(75480, 63563, 'lv', 'name', 'Baltijas Sociālo zinātņu institūts'),
(75481, 63564, 'es', 'name', 'Instituto para NiƱos Ciegos y Sordos del Valle del Cauca'),
(75482, 63565, 'de', 'name', 'STZ eyetrial'),
(75483, 63566, 'en', 'name', 'Cardiovascular Clinical Science Foundation'),
(75484, 63567, 'de', 'name', 'Institut für Medizinische Diagnostik Berlin-Potsdam'),
(75485, 63568, 'en', 'name', 'Gwendolyn Strong Foundation'),
(75486, 63569, 'en', 'name', 'Academic Health Science Partnership'),
(75487, 63570, 'de', 'name', 'Deutsche Gesellschaft für Thorax-, Herz- und Gefäßchirurgie'),
(75488, 63570, 'en', 'name', 'German Society for Thoracic and Cardiovascular Surgery'),
(75489, 63571, 'de', 'name', 'Erwin Rƶver Stiftung'),
(75490, 63572, 'no_lang_code', 'name', 'ActivMed Practices & Research (United States)'),
(75491, 63573, 'en', 'name', 'Vietnam Association of Gastroenterology'),
(75492, 63573, 'vi', 'name', 'Hį»™i Gastroenterology Việt Nam'),
(75493, 63574, 'no_lang_code', 'name', 'Media Health Technologies (United States)'),
(75494, 63575, 'en', 'name', 'University Dermatology'),
(75495, 63576, 'en', 'name', 'Dawson Education Cooperative'),
(75496, 63577, 'no_lang_code', 'name', 'Procon (Germany)'),
(75497, 63578, 'en', 'name', 'Michigan Orthopaedic Spine Surgeons'),
(75498, 63579, 'de', 'name', 'Asklepios Klinik Langen'),
(75499, 63580, 'de', 'name', 'Bundesverband SelbststƤndiger Physiotherapeuten'),
(75500, 63581, 'da', 'name', 'Styrelsen for Arbejdsmarked og Rekruttering'),
(75501, 63581, 'en', 'name', 'Danish Agency for Labour Market and Recruitment'),
(75502, 63582, 'en', 'name', 'Kaiping Central Hospital'),
(75503, 63582, 'zh', 'name', 'å¼€å¹³åø‚äø­åæƒåŒ»é™¢'),
(75504, 63583, 'en', 'name', 'Calista Education and Culture'),
(75505, 63584, 'pt', 'name', 'Hospital Ana Nery'),
(75506, 63585, 'nl', 'name', 'GGD Zuid Limburg, Gemeentelijke gezondheidsdienst Zuid Limburg'),
(75507, 63586, 'en', 'name', 'Italian Network for Tumor Biotherapy Foundation'),
(75508, 63586, 'it', 'name', 'Network Italiano per la Bioterapia dei Tumori Fondazione'),
(75509, 63587, 'en', 'name', 'Shanghai Pudong Institute of Education Development'),
(75510, 63588, 'en', 'name', 'Danish Multiple Sclerosis Center'),
(75511, 63589, 'cs', 'name', 'ČeskĆ” Společnost pro Hypertenzi'),
(75512, 63589, 'en', 'name', 'Czech Society for Hypertension'),
(75513, 63590, 'en', 'name', 'Morrison Vein Institute'),
(75514, 63591, 'en', 'name', 'North American Family Institute'),
(75515, 63592, 'en', 'name', 'Ronin Institute'),
(75516, 63593, 'de', 'name', 'Elterninitiative Krebskranker Kinder im Saarland'),
(75517, 63594, 'en', 'name', 'Hypertension Institute'),
(75518, 63595, 'no_lang_code', 'name', 'Cancer Prevention Pharmaceuticals (United States)'),
(75519, 63596, 'en', 'name', 'CHRISTUS Transplant Institute'),
(75520, 63597, 'de', 'name', 'UniversitƤts-HNO-Klinik Heidelberg'),
(75521, 63598, 'de', 'name', 'Dƶpfer Schulen Regensburg'),
(75522, 63599, 'fr', 'name', 'Association Schizo Oui'),
(75523, 63600, 'no_lang_code', 'name', 'Scientific Centre of Personalized Psychiatry'),
(75524, 63600, 'ru', 'name', 'Š—ŠŠž "ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр персонализированной психиатрии"'),
(75525, 63601, 'en', 'name', 'Council of Athabascan Tribal Governments'),
(75526, 63602, 'fr', 'name', 'SociƩtƩ Nationale FranƧaise de Colo-Proctologie'),
(75527, 63603, 'no_lang_code', 'name', 'ALK-Abelló (Italy)'),
(75528, 63604, 'en', 'name', 'River Styx Foundation'),
(75529, 63605, 'da', 'name', 'Psoriasisforeningen'),
(75530, 63606, 'de', 'name', 'Bundesverband Medizintechnologie'),
(75531, 63606, 'en', 'name', 'German Medical Technology Association'),
(75532, 63607, 'fr', 'name', 'Ages et Vie'),
(75533, 63608, 'en', 'name', 'Aesthetico'),
(75534, 63609, 'en', 'name', 'Delmarva Advisory Council'),
(75535, 63610, 'en', 'name', 'Society for Cardiovascular Angiography and Interventions'),
(75536, 63611, 'no_lang_code', 'name', 'SmalTec International (United States)'),
(75537, 63612, 'en', 'name', 'WellMed Charitable Foundation'),
(75538, 63613, 'de', 'name', 'GOIN Gesundheitsorganisation'),
(75539, 63614, 'nl', 'name', 'Centrum Aquamarijn'),
(75540, 63615, 'en', 'name', 'Anhui and Huaihe River Institute of Hydraulic Research'),
(75541, 63615, 'zh', 'name', 'å®‰å¾½ēœę°“åˆ©éƒØę·®å§”ę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(75542, 63616, 'es', 'name', 'Instituto Jalisciense de CancerologĆ­a'),
(75543, 63617, 'no_lang_code', 'name', 'Boston Medical Group (Colombia)'),
(75544, 63618, 'en', 'name', 'Regional Public Health Care Institution "City Hospital No. 5, Barnaul"'),
(75545, 63618, 'ru', 'name', 'ŠšŃ€Š°ŠµŠ²Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Ā«Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–5, г. Š‘Š°Ń€Š½Š°ŃƒŠ»Ā»'),
(75546, 63619, 'nl', 'name', 'GGZ Delfland'),
(75547, 63620, 'bs', 'name', 'Univerzitet Za Poslovne Studije'),
(75548, 63621, 'no_lang_code', 'name', 'NanoSynth Materials and Sensors (United States)'),
(75549, 63622, 'en', 'name', 'Center for Accessible Technology'),
(75550, 63623, 'en', 'name', 'St. Vincent Carmel Hospital'),
(75551, 63624, 'nl', 'name', 'AmbulanceZorg Rotterdam-Rijnmond'),
(75552, 63625, 'no_lang_code', 'name', 'Minerva Neurosciences (United States)'),
(75553, 63626, 'en', 'name', 'InSites'),
(75554, 63627, 'en', 'name', 'Mulago Foundation'),
(75555, 63628, 'es', 'name', 'Instituto de Investigación Biomédica de A Coruña'),
(75556, 63629, 'en', 'name', 'Healthcare Association of New York State'),
(75557, 63630, 'no_lang_code', 'name', 'Non-Surgical Orthopaedics (United States)'),
(75558, 63631, 'en', 'name', 'LCC Medical Research Institute'),
(75559, 63632, 'de', 'name', 'Kompetenznetz Multiple Sklerose'),
(75560, 63632, 'en', 'name', 'Competence Network Multiple Sclerosis'),
(75561, 63633, 'en', 'name', 'Landon Pediatric Foundation'),
(75562, 63634, 'pt', 'name', 'Hospital Estadual Centra'),
(75563, 63635, 'no_lang_code', 'name', 'Farmaceutici Damor (Italy)'),
(75564, 63636, 'en', 'name', 'Catalina Research Institute'),
(75565, 63637, 'nl', 'name', 'ZorgKeuzeLab'),
(75566, 63638, 'no_lang_code', 'name', 'Global Medical Institutes (United States)'),
(75567, 63639, 'nl', 'name', 'Nederlandse Vereniging voor Reumatologie'),
(75568, 63640, 'en', 'name', 'South Bend Medical Foundation'),
(75569, 63641, 'en', 'name', 'Jon J van Rood Centre for Clinical Transfusion Research'),
(75570, 63642, 'de', 'name', 'Klinikum Würzburg Mitte'),
(75571, 63643, 'ru', 'name', 'Arkhangel''skiy Klinicheskiy Onkologicheskiy Dispanser, ŠŃ€Ń…Š°Š½Š³ŠµŠ»ŃŒŃŠŗŠøŠ¹ клинический онкологический Гиспансер'),
(75572, 63644, 'no_lang_code', 'name', 'Agrokor (Croatia)'),
(75573, 63645, 'en', 'name', 'Clear Lake Medical Foundation'),
(75574, 63646, 'nl', 'name', 'MeanderGroep Zuid-Limburg'),
(75575, 63647, 'en', 'name', 'Kona Community Hospital'),
(75576, 63648, 'no_lang_code', 'name', 'KPMG (Australia)'),
(75577, 63649, 'en', 'name', 'Universities and Colleges Admissions Service'),
(75578, 63650, 'en', 'name', 'O’Donnell Associates'),
(75579, 63651, 'de', 'name', 'Buchinger Wilhelmi'),
(75580, 63652, 'no_lang_code', 'name', 'Dr. Mattiola & Partner AG (Switzerland)'),
(75581, 63653, 'no_lang_code', 'name', 'DWA (Netherlands)'),
(75582, 63654, 'en', 'name', 'Indiana Biosciences Research Institute'),
(75583, 63655, 'nl', 'name', 'De Hoogstraat Revalidatie'),
(75584, 63656, 'no_lang_code', 'name', 'CCI Reprographics (United States)'),
(75585, 63657, 'en', 'name', 'Society Hill Reproductive Medicine'),
(75586, 63658, 'en', 'name', 'Penza State Technological University'),
(75587, 63659, 'de', 'name', 'Klinik und Poliklinik für Mund-, Kiefer- und Gesichtschirurgie'),
(75588, 63660, 'en', 'name', 'British Tinnitus Association'),
(75589, 63661, 'en', 'name', 'International Eosinophil Society'),
(75590, 63662, 'de', 'name', 'Gemeinschaftskrankenhaus Herdecke'),
(75591, 63663, 'no_lang_code', 'name', 'Isdin (Spain)'),
(75592, 63664, 'en', 'name', 'Coatesville Veterans Affairs Medical Center'),
(75593, 63665, 'en', 'name', 'Office of the Secretary of Health and Human Services'),
(75594, 63666, 'de', 'name', 'Aturo'),
(75595, 63667, 'no_lang_code', 'name', 'BioVinc (United States)'),
(75596, 63668, 'nl', 'name', 'Nederlandse Vereniging voor Heelkunde'),
(75597, 63669, 'es', 'name', 'Instituto Amazónico de Investigaciones Científicas, Instituto Sinchi'),
(75598, 63670, 'en', 'name', 'National Institute of Women'),
(75599, 63670, 'es', 'name', 'Instituto Nacional de las Mujeres'),
(75600, 63671, 'en', 'name', 'Compassionate Cancer Care'),
(75601, 63672, 'en', 'name', 'CS Diagnostics'),
(75602, 63673, 'es', 'name', 'Hospital Dr. Gustavo Fricke'),
(75603, 63674, 'fr', 'name', 'Presses Universitaires de France'),
(75604, 63675, 'en', 'name', 'The PANSS Institute'),
(75605, 63676, 'en', 'name', 'The Casco Bay Assyriological Institute'),
(75606, 63677, 'en', 'name', 'San Antonio Endovascular & Heart Institute'),
(75607, 63678, 'no_lang_code', 'name', 'Nemo Healthcare (Netherlands)'),
(75608, 63679, 'en', 'name', 'Inala Community Health Centre'),
(75609, 63680, 'en', 'name', 'Parkview Hospital Randallia'),
(75610, 63681, 'en', 'name', 'Taipei Fubon Bank Philanthropy Foundation'),
(75611, 63681, 'zh', 'name', 'å°åŒ—åÆŒé‚¦éŠ€č”Œå…¬ē›Šę…ˆå–„åŸŗé‡‘ęœƒ'),
(75612, 63682, 'en', 'name', 'Cardiovascular Research Associates'),
(75613, 63683, 'nl', 'name', 'Nederlandse Obesitas Kliniek'),
(75614, 63684, 'no_lang_code', 'name', 'Clasado BioSciences (United Kingdom)'),
(75615, 63685, 'en', 'name', 'Bristol Regional Medical Center'),
(75616, 63686, 'en', 'name', 'Centre For Digestive Diseases'),
(75617, 63687, 'en', 'name', 'The Radiosurgery Society'),
(75618, 63688, 'fr', 'name', 'SociƩtƩ Francophone Posture Equilibre Locomotion'),
(75619, 63689, 'en', 'name', 'New England Retina Associates'),
(75620, 63690, 'en', 'name', 'Ministry of Education and Skills Development'),
(75621, 63691, 'en', 'name', 'Bach & Godofsky Infectious Diseases'),
(75622, 63692, 'en', 'name', 'Ocean Research & Conservation Association'),
(75623, 63693, 'en', 'name', 'Los Angeles Clinical Trials'),
(75624, 63694, 'id', 'name', 'Rumah Sakit Umum Pusat Sanglah Denpasar'),
(75625, 63695, 'en', 'name', 'American Tai Chi and Qigong Association'),
(75626, 63696, 'de', 'name', 'Zahnklinik Bochum'),
(75627, 63696, 'en', 'name', 'Dental Clinic of Bochum'),
(75628, 63697, 'de', 'name', 'KassenƤrztliche Vereinigung Sachsen-Anhalt'),
(75629, 63698, 'no_lang_code', 'name', 'Heelkunde Friesland (Netherlands)'),
(75630, 63699, 'en', 'name', 'Russian Respiratory Society'),
(75631, 63699, 'ru', 'name', 'ŠœŠµŠ¶Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š¾Š±Ń‰ŠµŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Российское Респираторное ŠžŠ±Ń‰ŠµŃŃ‚во'),
(75632, 63700, 'en', 'name', 'Virpiniemi Sports Institute'),
(75633, 63700, 'fi', 'name', 'Virpiniemen liikuntaopisto'),
(75634, 63701, 'en', 'name', 'University of Labor and Social Affairs'),
(75635, 63701, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Lao Động - XĆ£ Hį»™i'),
(75636, 63702, 'en', 'name', 'Arkhangelsk Children''s Clinical Hospital named P.G.Vyzhletsova'),
(75637, 63702, 'ru', 'name', 'ŠŃ€Ń…Š°Š½Š³ŠµŠ»ŃŒŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń Š“ŠµŃ‚ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° им. П.Š“. Выжцовой'),
(75638, 63703, 'en', 'name', 'Nanjing Product Quality Supervision and Inspection Institute'),
(75639, 63704, 'en', 'name', 'Heart & Vascular Outcomes Research Institute'),
(75640, 63705, 'en', 'name', 'The Challenging Behaviour Foundation'),
(75641, 63706, 'en', 'name', 'Oshkosh Public Museum'),
(75642, 63707, 'en', 'name', 'Collier Neurologic Specialists'),
(75643, 63708, 'it', 'name', 'Ospedale S.Gennaro'),
(75644, 63709, 'de', 'name', 'Centrum für Integrierte Onkologie'),
(75645, 63710, 'no', 'name', 'Norsk CĆøliakiforening'),
(75646, 63711, 'no_lang_code', 'name', 'Sofar (Italy)'),
(75647, 63712, 'no_lang_code', 'name', 'GeneTAG Technology (United States)'),
(75648, 63713, 'no_lang_code', 'name', 'PSI CRO (United Kingdom)'),
(75649, 63714, 'en', 'name', 'Pacific Rim Electrophysiology Research Institute'),
(75650, 63715, 'no_lang_code', 'name', 'MB Clinical Research and Consulting (United States)'),
(75651, 63716, 'en', 'name', 'National Foundation for the Elderly'),
(75652, 63716, 'nl', 'name', 'Stichting Nationaal Ouderenfonds'),
(75653, 63717, 'en', 'name', 'Higher Specialization University'),
(75654, 63717, 'tr', 'name', 'Yüksek İhtisas Üniversitesi'),
(75655, 63718, 'no_lang_code', 'name', 'Far Eastern Shipping (United States)'),
(75656, 63719, 'en', 'name', 'City Clinical Hospital No15 named. O. M. Filatova'),
(75657, 63719, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–15 n.a O.M. Филатов'),
(75658, 63720, 'no_lang_code', 'name', 'ScienceMedia (United States)'),
(75659, 63721, 'no_lang_code', 'name', 'Boehringer Ingelheim (Netherlands)'),
(75660, 63722, 'en', 'name', 'Westside Medical Associates of Los Angeles'),
(75661, 63723, 'en', 'name', 'American SIDS Institute'),
(75662, 63724, 'no_lang_code', 'name', 'Enanta Pharmaceuticals (United States)'),
(75663, 63725, 'no_lang_code', 'name', 'OrganOx (United Kingdom)'),
(75664, 63726, 'de', 'name', 'Schƶn Klinik Bad Aibling'),
(75665, 63727, 'no_lang_code', 'name', 'Filament Games (United States)'),
(75666, 63728, 'pt', 'name', 'Instituto Paulista de Estudos e Pesquisas em Oftalmologia'),
(75667, 63729, 'en', 'name', 'CalNeuro Research Group'),
(75668, 63730, 'en', 'name', 'Marine Corps – Law Enforcement Foundation'),
(75669, 63731, 'nl', 'name', 'Gemeente Leiden'),
(75670, 63732, 'no_lang_code', 'name', 'Pharmacosmos (Denmark)'),
(75671, 63733, 'en', 'name', 'Vision Research ROPARD Foundation'),
(75672, 63734, 'de', 'name', 'Klinik für Schlafmedizin'),
(75673, 63734, 'en', 'name', 'Clinic for Sleep Medicine'),
(75674, 63735, 'en', 'name', 'NeuroCognitive Institute'),
(75675, 63736, 'en', 'name', 'Brooklyn Chest Hospital'),
(75676, 63737, 'nl', 'name', 'Marti-Keuning Eckhardt Stichting'),
(75677, 63738, 'no_lang_code', 'name', 'General Electric (Spain)'),
(75678, 63739, 'en', 'name', 'National Retina Institute'),
(75679, 63740, 'de', 'name', 'Forschungsgesellschaft Atemwegerkrankungen'),
(75680, 63741, 'en', 'name', 'Chesapeake Urology Associates'),
(75681, 63742, 'no_lang_code', 'name', 'UCB Pharma (Netherlands)'),
(75682, 63743, 'no_lang_code', 'name', 'PuraCath Medical (United States)'),
(75683, 63744, 'en', 'name', 'Capio Research Foundation'),
(75684, 63745, 'en', 'name', 'Boston Partners in Education'),
(75685, 63746, 'en', 'name', 'European Center for Peace and Development'),
(75686, 63747, 'nl', 'name', 'Reinier van Arkel'),
(75687, 63748, 'de', 'name', 'Physiotherapie und Lauftherapie Zentrum'),
(75688, 63749, 'nl', 'name', 'Mondriaan GGZ'),
(75689, 63750, 'no_lang_code', 'name', 'Cellulose Sciences International (United States)'),
(75690, 63751, 'en', 'name', 'Jingzhou Central Hospital'),
(75691, 63751, 'zh', 'name', 'č†å·žåø‚äø­åæƒåŒ»é™¢'),
(75692, 63752, 'it', 'name', 'Ospedale Santa Maria Goretti'),
(75693, 63753, 'nl', 'name', 'Zorggroep Kans'),
(75694, 63754, 'de', 'name', 'Poliklinik für Zahnerhaltung und Parodontologie'),
(75695, 63755, 'en', 'name', 'Invision Sally Jobe'),
(75696, 63756, 'en', 'name', 'Oncology Hematology Care'),
(75697, 63757, 'en', 'name', 'Australasian Gastro Intestinal Research Foundation'),
(75698, 63758, 'en', 'name', 'J.C. Blair Memorial Hospital'),
(75699, 63759, 'nl', 'name', 'Nederlandse Vereniging van Artsen voor Musculoskeletale Geneeskunde'),
(75700, 63760, 'pt', 'name', 'Instituto do CƩrebro de Brasƭlia'),
(75701, 63761, 'de', 'name', 'Kassenärztliche Vereinigung Baden-Württemberg'),
(75702, 63762, 'en', 'name', 'Apex Heart Institute'),
(75703, 63763, 'pt', 'name', 'Instituto de Implantologia'),
(75704, 63764, 'en', 'name', 'Bay Area Discovery Museum'),
(75705, 63765, 'no_lang_code', 'name', 'Boehringer Ingelheim (Portugal)'),
(75706, 63766, 'en', 'name', 'Alaska Breast Care & Surgery'),
(75707, 63767, 'en', 'name', 'Electrophysiology Research Foundation'),
(75708, 63768, 'en', 'name', 'Geisinger Lewistown Hospital'),
(75709, 63769, 'en', 'name', 'Western Sydney Community Forum'),
(75710, 63770, 'en', 'name', 'Chest Wall Injury Society'),
(75711, 63771, 'de', 'name', 'LVR-Klinik Bonn'),
(75712, 63772, 'no_lang_code', 'name', 'Synairgen (United Kingdom)'),
(75713, 63773, 'en', 'name', 'International WAGR Syndrome Association'),
(75714, 63774, 'no_lang_code', 'name', 'General Electric (Finland)'),
(75715, 63775, 'en', 'name', 'Lung Center of the Philippines'),
(75716, 63776, 'en', 'name', 'Cancer Care of Western North Carolina'),
(75717, 63777, 'no_lang_code', 'name', 'Sintact Medical Systems (United States)'),
(75718, 63778, 'no_lang_code', 'name', 'Leo Pharma (Germany)'),
(75719, 63779, 'no_lang_code', 'name', 'Jafco (Japan)'),
(75720, 63780, 'en', 'name', 'Providence Regional Cancer Partnership'),
(75721, 63781, 'en', 'name', 'Los Angeles Neurological Institute'),
(75722, 63782, 'de', 'name', 'Agaplesion Markus Krankenhaus'),
(75723, 63782, 'en', 'name', 'Agaplesion Markus Hospital'),
(75724, 63783, 'en', 'name', 'American Association for Cancer Education'),
(75725, 63784, 'de', 'name', 'Ɩsterreichische Gesellschaft für Parodontologie'),
(75726, 63785, 'en', 'name', 'National Health Council'),
(75727, 63786, 'en', 'name', 'Royal Incorporation of Architects in Scotland'),
(75728, 63787, 'es', 'name', 'Fundacion Instituto de Reumatologia Fernando Chalem'),
(75729, 63788, 'en', 'name', 'American Professional Society of ADHD and Related Disorders'),
(75730, 63789, 'no_lang_code', 'name', 'Terumo (Germany)'),
(75731, 63790, 'en', 'name', 'Phoenix Neurological Associates'),
(75732, 63791, 'en', 'name', 'The Pelvic Floor Institute'),
(75733, 63792, 'en', 'name', 'Gansu Qilian Mountains Water Conservation Forest Research Institute'),
(75734, 63792, 'zh', 'name', 'ē„čæžå±±ę°“ęŗę¶µå…»ęž—ē ”ē©¶é™¢'),
(75735, 63793, 'en', 'name', 'Kazakhstan Association on Sexual and Reproductive Health'),
(75736, 63793, 'kk', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ°Ń Š°ŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ по половому Šø Ń€ŠµŠæŃ€Š¾Š“ŃƒŠŗŃ‚ŠøŠ²Š½Š¾Š¼Ńƒ Š·Š“Š¾Ń€Š¾Š²ŃŒŃŽ'),
(75737, 63794, 'no_lang_code', 'name', 'Moximed (United States)'),
(75738, 63795, 'no_lang_code', 'name', 'Pluryn'),
(75739, 63796, 'en', 'name', 'New York School of Regional Anesthesia'),
(75740, 63797, 'no_lang_code', 'name', 'Educational Solutions (United States)'),
(75741, 63798, 'en', 'name', 'DuPage Children''s Museum'),
(75742, 63799, 'de', 'name', 'Gemeinsame Forschungsstelle'),
(75743, 63799, 'en', 'name', 'Directorate-General Joint Research Centre'),
(75744, 63799, 'fr', 'name', 'Centre commun de recherche'),
(75745, 63800, 'no_lang_code', 'name', 'Aerospace Testing (United States)'),
(75746, 63801, 'no_lang_code', 'name', 'AQLANE Medical (Netherlands)'),
(75747, 63802, 'de', 'name', 'Rotkreuzklinikum München'),
(75748, 63803, 'no_lang_code', 'name', 'Kalwun (Australia)'),
(75749, 63804, 'en', 'name', 'Detroit Area Agency on Aging'),
(75750, 63805, 'en', 'name', 'Berman Center for Outcomes and Clinical Research'),
(75751, 63806, 'no_lang_code', 'name', 'Vision2Health (Netherlands)'),
(75752, 63807, 'en', 'name', 'Anhui Provincial Children''s Hospital'),
(75753, 63807, 'zh', 'name', 'å®‰å¾½ēœå„æē«„åŒ»é™¢'),
(75754, 63808, 'no_lang_code', 'name', 'M4 Sciences (United States)'),
(75755, 63809, 'fr', 'name', 'HÓpital Jean Jaurès'),
(75756, 63810, 'nl', 'name', 'Star Medisch Diagnostisch Centrum'),
(75757, 63811, 'en', 'name', 'University Maternity Hospital Limerick'),
(75758, 63811, 'ga', 'name', 'OspidƩal MƔithreachais na hOllscoile, Luimneach'),
(75759, 63812, 'en', 'name', 'International Neuroethics Society'),
(75760, 63813, 'en', 'name', 'Black Hills Regional Eye Institute'),
(75761, 63814, 'de', 'name', 'Deutsche Lepra- und Tuberkulosehilfe'),
(75762, 63815, 'ar', 'name', 'ŲÆŁ„ŁŠŁ„ الصحة Ų§Ł„Ł…ŲµŲ±ŁŠ'),
(75763, 63815, 'en', 'name', 'Minia University Hospital'),
(75764, 63816, 'no_lang_code', 'name', 'Rose Research Center (United States)'),
(75765, 63817, 'no_lang_code', 'name', 'Clinuvel Pharmaceuticals (Australia)'),
(75766, 63818, 'en', 'name', 'zyBooks'),
(75767, 63819, 'pt', 'name', 'Fundação Edson Queiroz'),
(75768, 63820, 'nl', 'name', 'Stichting Vooruit'),
(75769, 63821, 'en', 'name', 'Nurse Maude Association'),
(75770, 63822, 'en', 'name', 'Texas Institute for Hip & Knee Surgery'),
(75771, 63823, 'en', 'name', 'Nona Research Foundation'),
(75772, 63824, 'en', 'name', 'Capital Region Special Surgery'),
(75773, 63825, 'en', 'name', 'Turkish Ophthalmological Association'),
(75774, 63825, 'tr', 'name', 'Türk Oftalmoloji Derneği'),
(75775, 63826, 'en', 'name', 'Phoenixville Hospital'),
(75776, 63827, 'fr', 'name', 'Association Keoogo'),
(75777, 63828, 'en', 'name', 'Futurefish Foundation'),
(75778, 63829, 'en', 'name', 'Shaanxi Provincial Hospital of Traditional Chinese Medicine'),
(75779, 63830, 'en', 'name', 'Havana Research Institute'),
(75780, 63831, 'en', 'name', 'The Microsoft Research - University of Trento Centre for Computational and Systems Biology'),
(75781, 63832, 'no_lang_code', 'name', 'Ardeypharm (Germany)'),
(75782, 63833, 'en', 'name', 'Autonomous Healthcare'),
(75783, 63834, 'en', 'name', 'Paul Ruby Foundation for Parkinson’s Research'),
(75784, 63835, 'de', 'name', 'Rosenpark Klinik'),
(75785, 63836, 'en', 'name', 'Chang Hua Hospital'),
(75786, 63836, 'zh', 'name', 'č”›ē”Ÿē¦åˆ©éƒØå½°åŒ–é†«é™¢'),
(75787, 63837, 'en', 'name', 'Wild Salmon Center'),
(75788, 63838, 'en', 'name', 'Watching Over Mothers & Babies'),
(75789, 63839, 'de', 'name', 'Berufsgenossenschaftliche Unfallklinik Frankfurt am Main'),
(75790, 63840, 'en', 'name', 'Graham Boeckh Foundation'),
(75791, 63841, 'no_lang_code', 'name', 'Danone (Germany)'),
(75792, 63842, 'en', 'name', 'European Society for Diseases of the Esophagus'),
(75793, 63843, 'no_lang_code', 'name', 'ZeroUI (United States)'),
(75794, 63844, 'no_lang_code', 'name', 'Meril Life Sciences (India)'),
(75795, 63845, 'en', 'name', 'Cognitive Medical Systems'),
(75796, 63846, 'en', 'name', 'Republican Scientific and Practical Centre for Traumatology and Orthopedics'),
(75797, 63847, 'en', 'name', 'National Center of Cardiology and Internal Medicine'),
(75798, 63848, 'en', 'name', 'Medicina'),
(75799, 63848, 'pl', 'name', 'Specjalistyczne Centrum Diagnostyczno-Zabiegowe MEDICINA'),
(75800, 63849, 'en', 'name', 'Jiangsu Provincial Quality Supervision and Inspection Institute'),
(75801, 63850, 'no_lang_code', 'name', 'Archipel Zorggroep (Netherlands)'),
(75802, 63851, 'no_lang_code', 'name', 'Collaborations Pharmaceuticals (United States)'),
(75803, 63852, 'en', 'name', 'Sirindhorn National Medical Rehabilitation Institute'),
(75804, 63852, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąøŖąø“ąø£ąø“ąø™ąø˜ąø£ą¹€ąøžąø·ą¹ˆąø­ąøąø²ąø£ąøŸąø·ą¹‰ąø™ąøŸąø¹ąøŖąø”ąø£ąø£ąø–ąø ąø²ąøžąø—ąø²ąø‡ąøąø²ąø£ą¹ąøžąø—ąø¢ą¹Œą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(75805, 63853, 'no_lang_code', 'name', 'Certe'),
(75806, 63854, 'de', 'name', 'Deutsche WirbelsƤulengesellschaft'),
(75807, 63855, 'en', 'name', 'Salina Regional Health Center'),
(75808, 63856, 'nl', 'name', 'Entrea'),
(75809, 63857, 'en', 'name', 'Susan L. Bader Foundation of Hope'),
(75810, 63858, 'no_lang_code', 'name', 'Heimomed Heinze (Germany)'),
(75811, 63859, 'no_lang_code', 'name', 'Guna (Italy)'),
(75812, 63860, 'en', 'name', 'QMI Solutions'),
(75813, 63861, 'de', 'name', 'Klinikum Fürth'),
(75814, 63862, 'en', 'name', 'Jackson Medical Mall Thad Cochran Center'),
(75815, 63863, 'en', 'name', 'Finnish Medicines Agency Fimea'),
(75816, 63864, 'en', 'name', 'Lutheran SeniorLife'),
(75817, 63865, 'no_lang_code', 'name', 'Zur Rose Pharma (Germany)'),
(75818, 63866, 'no_lang_code', 'name', 'Sientra (United States)'),
(75819, 63867, 'en', 'name', 'Orange County Department of Education'),
(75820, 63868, 'nl', 'name', 'Dienst Gezondheid & Jeugd'),
(75821, 63869, 'en', 'name', 'Texas Physical Therapy Association'),
(75822, 63870, 'no_lang_code', 'name', 'Miha Bodytec (Germany)'),
(75823, 63871, 'de', 'name', 'Segeberger Kliniken'),
(75824, 63872, 'en', 'name', 'Hallym University Dongtan Sacred Heart Hospital'),
(75825, 63873, 'en', 'name', 'Colorado Sleep Institute'),
(75826, 63874, 'en', 'name', 'Institute for Respiratory Health'),
(75827, 63875, 'en', 'name', 'Northeast Radiation Oncology Center'),
(75828, 63876, 'en', 'name', 'Sickle Cell Disease Association of America'),
(75829, 63877, 'en', 'name', 'South Pointe Hospital'),
(75830, 63878, 'da', 'name', 'Universitetshospitalernes Center for Sundhedsfaglig Forskning'),
(75831, 63879, 'en', 'name', 'Alabama School of Fine Arts'),
(75832, 63880, 'pt', 'name', 'Sociedade Brasileira de Oncologia ClĆ­nica'),
(75833, 63881, 'de', 'name', 'Bundesverwaltungsamt'),
(75834, 63881, 'en', 'name', 'FedĀ­erĀ­al OfĀ­fice of AdĀ­minĀ­isĀ­traĀ­tion'),
(75835, 63882, 'en', 'name', 'Ferry County Memorial Hospital'),
(75836, 63883, 'en', 'name', 'Hilton Pond Center for Piedmont Natural History'),
(75837, 63884, 'en', 'name', 'The Baum Foundation'),
(75838, 63885, 'no_lang_code', 'name', 'Institute for Skin Research (Israel)'),
(75839, 63886, 'no_lang_code', 'name', 'Rahnuma'),
(75840, 63887, 'en', 'name', 'ELZA Institute'),
(75841, 63888, 'en', 'name', 'Anfomed Society for Applied Research in Medicine'),
(75842, 63889, 'en', 'name', 'Carolina Performance'),
(75843, 63890, 'de', 'name', 'Schön Klinik Nürnberg Fürth'),
(75844, 63891, 'en', 'name', 'Shenzhen Entry-Exit Inspection and Quarantine Bureau'),
(75845, 63892, 'en', 'name', 'Canadian Heart Research Centre'),
(75846, 63893, 'en', 'name', 'Capital Health'),
(75847, 63894, 'en', 'name', 'Riverton Hospital'),
(75848, 63895, 'no_lang_code', 'name', 'Slow Control (France)'),
(75849, 63896, 'no_lang_code', 'name', 'Myovant Sciences (United States)'),
(75850, 63897, 'no_lang_code', 'name', 'ClinAssess (Germany)'),
(75851, 63898, 'en', 'name', 'MultiCare Auburn Medical Center'),
(75852, 63899, 'no_lang_code', 'name', 'Medimate (Netherlands)'),
(75853, 63900, 'en', 'name', 'Alliance Integrative Medicine'),
(75854, 63901, 'en', 'name', 'Ministry of Health'),
(75855, 63902, 'de', 'name', 'Klinikum Rheine'),
(75856, 63903, 'en', 'name', 'Winnicott Foundation'),
(75857, 63904, 'fr', 'name', 'Association FranƧaise pour le DĆ©pistage et la PrĆ©vention des Handicaps de l’Enfant'),
(75858, 63905, 'it', 'name', 'Consorzio Interuniversitario Nazionale EnSiEL, Consorzio Interuniversitario Nazionale per Energia e Sistemi Elettrici'),
(75859, 63906, 'en', 'name', 'South Health Campus'),
(75860, 63907, 'en', 'name', 'Acadia Hospital'),
(75861, 63908, 'en', 'name', 'Mount Carmel St. Ann''s'),
(75862, 63909, 'en', 'name', 'Charlotte Hungerford Hospital'),
(75863, 63910, 'no_lang_code', 'name', 'Brocacef Groep (Netherlands)'),
(75864, 63911, 'nl', 'name', 'de Posten'),
(75865, 63912, 'en', 'name', 'Old Colorado City Historical Society'),
(75866, 63913, 'en', 'name', 'Chirayu Medical College & Hospital'),
(75867, 63914, 'en', 'name', 'Cyclomed medical services & consulting'),
(75868, 63915, 'en', 'name', 'Providence Community Health Centers'),
(75869, 63916, 'en', 'name', 'Ludwig Boltzmann Cluster Arthritis and Rehabilitation'),
(75870, 63917, 'en', 'name', 'Hong Kong Lung Foundation'),
(75871, 63918, 'no_lang_code', 'name', 'CM Hospital'),
(75872, 63919, 'no_lang_code', 'name', 'ATP Clinical Research (United States)'),
(75873, 63920, 'en', 'name', 'Public Health Research Institute Of India'),
(75874, 63921, 'no_lang_code', 'name', 'MediWound (Israel)'),
(75875, 63922, 'en', 'name', 'Advanced Medical Research Institute'),
(75876, 63923, 'no_lang_code', 'name', 'Weleda (Switzerland)'),
(75877, 63924, 'en', 'name', 'Full Plate Living'),
(75878, 63925, 'en', 'name', 'Central and North West Queensland Medicare Local'),
(75879, 63926, 'de', 'name', 'Klinik und Poliklinik für Kinder- und Jugendpsychiatrie'),
(75880, 63927, 'de', 'name', 'Elbe Kliniken Stade-Buxtehude');
INSERT INTO `ror_settings` VALUES
(75881, 63928, 'en', 'name', 'Arab Foundation For Freedoms And Equality'),
(75882, 63929, 'en', 'name', 'Korean Society of Lipidology and Atherosclerosis'),
(75883, 63929, 'ko', 'name', 'ķ•œźµ­ģ§€ģ§ˆĀ·ė™ė§„ź²½ķ™”ķ•™ķšŒ'),
(75884, 63930, 'en', 'name', 'Coastal Marine Biolabs'),
(75885, 63931, 'en', 'name', 'Peregrine Eye and Laser Institute'),
(75886, 63932, 'en', 'name', 'The Sandra A. Daugherty Foundation'),
(75887, 63933, 'en', 'name', 'Network of the Universities from the Capitals of Europe'),
(75888, 63933, 'fr', 'name', 'RƩseau des universitƩs des capitales de l''Europe'),
(75889, 63934, 'fr', 'name', 'Centre Hospitalier Charles Perrens'),
(75890, 63935, 'nl', 'name', 'Stichting Nationaal Fonds Het Gehandicapte Kind'),
(75891, 63936, 'no_lang_code', 'name', 'IPS Research (United States)'),
(75892, 63937, 'de', 'name', 'Sozialversicherung für Landwirtschaft, Forsten und Gartenbau'),
(75893, 63938, 'no_lang_code', 'name', 'Novindiet Clinic'),
(75894, 63939, 'en', 'name', 'Natural Philosophy Institute'),
(75895, 63940, 'no_lang_code', 'name', 'Piramal (United Kingdom)'),
(75896, 63941, 'en', 'name', 'Latin School of Chicago'),
(75897, 63942, 'no_lang_code', 'name', 'TeamAlert'),
(75898, 63943, 'en', 'name', 'American Association of Sensory Electrodiagnostic Medicine'),
(75899, 63944, 'en', 'name', 'Springfield Clinic'),
(75900, 63945, 'en', 'name', 'William P. Clements Jr. University Hospital'),
(75901, 63946, 'en', 'name', 'Stoke Mandeville Spinal Research'),
(75902, 63947, 'en', 'name', 'Foundation Children with Spinal Muscular Atrophy'),
(75903, 63948, 'sr', 'name', 'Klinika za Psihijatrijske Bolesti Dr Laza Lazarević'),
(75904, 63949, 'en', 'name', 'Shandong Binzhou Pasturage Veterinary Academy'),
(75905, 63949, 'zh', 'name', 'å±±äøœēœę»Øå·žē•œē‰§å…½åŒ»ē ”ē©¶é™¢'),
(75906, 63950, 'en', 'name', 'International CTEPH Association'),
(75907, 63951, 'en', 'name', 'Thought Field Therapy Foundation'),
(75908, 63952, 'en', 'name', 'Association of Academic Professionals in Obstetrics and Gynaecology'),
(75909, 63953, 'en', 'name', 'British Association of Urological Surgeons'),
(75910, 63954, 'en', 'name', 'Ste. Genevieve County Memorial Hospital'),
(75911, 63955, 'en', 'name', 'InSpine'),
(75912, 63956, 'en', 'name', 'Hematology Oncology Consultants'),
(75913, 63957, 'no_lang_code', 'name', 'EyeSonix (United States)'),
(75914, 63958, 'no_lang_code', 'name', 'Roche (Romania)'),
(75915, 63959, 'de', 'name', 'Nord-Ostdeutsche Gesellschaft für Gynäkologische Onkologie'),
(75916, 63960, 'no_lang_code', 'name', 'Apomedica (Austria)'),
(75917, 63961, 'fr', 'name', 'Clinique Victor Hugo'),
(75918, 63962, 'en', 'name', 'Louisiana Hematology Oncology Associates'),
(75919, 63963, 'en', 'name', 'The Medical Center of Aurora'),
(75920, 63964, 'no_lang_code', 'name', 'Gehrlicher (Germany)'),
(75921, 63965, 'en', 'name', 'Saroj Gupta Cancer Centre & Research Institute'),
(75922, 63966, 'es', 'name', 'Hospital Odontológico Universidad de Barcelona'),
(75923, 63967, 'fr', 'name', 'Clinique Mutualiste de l''Estuaire'),
(75924, 63968, 'en', 'name', 'Territory Neurology & Research Institute'),
(75925, 63969, 'no_lang_code', 'name', 'Arteg (Netherlands)'),
(75926, 63970, 'no_lang_code', 'name', 'DiagNodus (United Kingdom)'),
(75927, 63971, 'en', 'name', 'The Center for Mind-Body Medicine'),
(75928, 63972, 'no_lang_code', 'name', 'HealthMyne (United States)'),
(75929, 63973, 'no_lang_code', 'name', 'Intersurgical (Germany)'),
(75930, 63974, 'es', 'name', 'Hospital El Escorial'),
(75931, 63975, 'de', 'name', 'Fachklinik St. Marienstift Dammer Berge'),
(75932, 63976, 'pt', 'name', 'Instituto Tropical de Medicina Reprodutiva'),
(75933, 63977, 'es', 'name', 'Hospital Comarcal de Inca'),
(75934, 63978, 'es', 'name', 'El Instituto Hero de Nutrición Infantil'),
(75935, 63978, 'no_lang_code', 'name', 'Hero Institute for Infant Nutrition (Spain)'),
(75936, 63979, 'fr', 'name', 'Centre d''Etudes et de Recherches pour l''Intensification du Traitement du DiabĆØte'),
(75937, 63980, 'en', 'name', 'Shafran Gastroenterology Center'),
(75938, 63981, 'no_lang_code', 'name', 'Santech (United States)'),
(75939, 63982, 'en', 'name', 'Heartland Hematology and Oncology'),
(75940, 63983, 'en', 'name', 'International Cannabinoid Research Society'),
(75941, 63984, 'fr', 'name', 'L''HƓpital Nord Franche-ComtƩ'),
(75942, 63985, 'no_lang_code', 'name', 'GAIA (Germany)'),
(75943, 63986, 'de', 'name', 'UniversitƤtskinderklinik'),
(75944, 63987, 'en', 'name', 'Joseph M. Still Research Foundation'),
(75945, 63988, 'en', 'name', 'Canadian Institute of Natural and Integrative Medicine'),
(75946, 63989, 'en', 'name', 'Avera McKennan Hospital & University Health Center'),
(75947, 63990, 'de', 'name', 'St. Maria-Hilf-Krankenhaus'),
(75948, 63991, 'en', 'name', 'Samara Regional Clinical Hospital named after V.D. Seredavina'),
(75949, 63991, 'ru', 'name', 'Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° Š’.Š”.ДереГавин'),
(75950, 63992, 'de', 'name', 'Klinikum Sindelfingen-Bƶblingen'),
(75951, 63993, 'de', 'name', 'Klinik und Poliklinik für Neurologie'),
(75952, 63994, 'no_lang_code', 'name', 'Mertiva (Sweden)'),
(75953, 63995, 'en', 'name', 'Western Foundation of Vertebrate Zoology'),
(75954, 63996, 'en', 'name', 'National Committee on United States China Relations'),
(75955, 63997, 'en', 'name', 'National Institute for Control of Vaccines and Biologicals'),
(75956, 63997, 'vi', 'name', 'Cổng thĆ“ng tin điện tį»­ Viện Kiểm Định Quốc Gia VįŗÆc Xin VĆ  Sinh'),
(75957, 63998, 'nl', 'name', 'Praktikon'),
(75958, 63999, 'en', 'name', 'Japan Clinical Cancer Research Organization'),
(75959, 63999, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗ ę—„ęœ¬ćŒć‚“č‡ØåŗŠč©¦éØ“ęŽØé€²ę©Ÿę§‹'),
(75960, 64000, 'no_lang_code', 'name', 'B. Braun (Spain)'),
(75961, 64001, 'de', 'name', 'Werner und Erika Messmer Stiftung'),
(75962, 64002, 'no_lang_code', 'name', 'Biorasis (United States)'),
(75963, 64003, 'en', 'name', 'Global Biological Standards Institute'),
(75964, 64004, 'en', 'name', 'Southern Cross Fertility & IVF Centre'),
(75965, 64005, 'en', 'name', 'National Heart Foundation Hospital & Research Institute'),
(75966, 64006, 'de', 'name', 'Helios Kliniken Mittelweser'),
(75967, 64007, 'en', 'name', 'Research Institute for Child Psychology and Pathopsychology'),
(75968, 64007, 'sk', 'name', 'Vyskumny Ustav Detskej Psychologie a Patopsychologie'),
(75969, 64008, 'it', 'name', 'La Maddalena'),
(75970, 64009, 'en', 'name', 'Family Healthcare'),
(75971, 64010, 'no_lang_code', 'name', 'Activated Research Company (United States)'),
(75972, 64011, 'en', 'name', 'Changzhi University'),
(75973, 64011, 'zh', 'name', '长治学院'),
(75974, 64012, 'en', 'name', 'DSC Services'),
(75975, 64013, 'nl', 'name', 'Dokter Bosman'),
(75976, 64014, 'en', 'name', 'OhioHealth Mansfield Hospital'),
(75977, 64015, 'en', 'name', 'West Virginia Network'),
(75978, 64016, 'en', 'name', 'Danish Agency for Institutions and Educational Grants'),
(75979, 64017, 'fr', 'name', 'Association des Neuro-Oncologues d’Expression FranƧaise'),
(75980, 64018, 'en', 'name', 'Vitalis WoonZorg Group'),
(75981, 64019, 'en', 'name', 'Great Lakes Cancer Management Specialists'),
(75982, 64020, 'en', 'name', 'Changhua County Public Health Bureau'),
(75983, 64020, 'zh', 'name', 'å½°åŒ–ēø£č”›ē”Ÿå±€'),
(75984, 64021, 'en', 'name', 'Delos Clinical'),
(75985, 64022, 'nl', 'name', 'Agora'),
(75986, 64023, 'en', 'name', 'Baoshan College'),
(75987, 64023, 'zh', 'name', '宝山学院'),
(75988, 64024, 'en', 'name', 'Alliance for Canadian Health Outcomes Research in Diabetes'),
(75989, 64025, 'no_lang_code', 'name', 'Stryker (Switzerland)'),
(75990, 64026, 'en', 'name', 'Side-Out Foundation'),
(75991, 64027, 'en', 'name', 'Ayurvedic Institute'),
(75992, 64028, 'en', 'name', 'Triodos Bank'),
(75993, 64029, 'en', 'name', 'Euromedic'),
(75994, 64030, 'en', 'name', 'Center for Psychiatry and Behavioral Medicine'),
(75995, 64031, 'no_lang_code', 'name', 'IQ Medical Ventures (Netherlands)'),
(75996, 64032, 'no_lang_code', 'name', 'Froceth (Lithuania)'),
(75997, 64033, 'en', 'name', 'THIM van der Laan University College Physiotherapy'),
(75998, 64034, 'en', 'name', 'Virginia Center for Reproductive Medicine'),
(75999, 64035, 'en', 'name', 'Northeast Center for Rehabilitation and Brain Injury'),
(76000, 64036, 'en', 'name', 'Nam Dinh University of Nursing'),
(76001, 64037, 'en', 'name', 'Ontario Rheumatology Association'),
(76002, 64038, 'no_lang_code', 'name', 'TAO Connect (United States)'),
(76003, 64039, 'en', 'name', 'C-AID Consultants'),
(76004, 64040, 'en', 'name', 'Chu Vision Institute'),
(76005, 64041, 'en', 'name', 'Tri Center'),
(76006, 64042, 'en', 'name', 'Carolinas Hospital System'),
(76007, 64043, 'en', 'name', 'San Rafael University Hospital'),
(76008, 64043, 'es', 'name', 'Hospital Universitario San Rafael'),
(76009, 64044, 'en', 'name', 'Palm Beach Neurological Center'),
(76010, 64045, 'no_lang_code', 'name', 'Higher Education Services (United States)'),
(76011, 64046, 'nl', 'name', 'Stichting Apotheek der Haarlemse Ziekenhuizen'),
(76012, 64047, 'en', 'name', 'Centeno-Schultz Clinic'),
(76013, 64048, 'nl', 'name', 'Maurits en Anna de Kock Stichting'),
(76014, 64049, 'en', 'name', 'Beat Nb'),
(76015, 64050, 'en', 'name', 'Sierra Eye Associates'),
(76016, 64051, 'no_lang_code', 'name', 'SoundRocket (United States)'),
(76017, 64052, 'en', 'name', 'NOVO Cellular Medicine Institute'),
(76018, 64053, 'de', 'name', 'Stiftung Juliusspital'),
(76019, 64053, 'en', 'name', 'Juliusspital Foundation'),
(76020, 64054, 'de', 'name', 'Senatsverwaltung für Gesundheit, Pflege und Gleichstellung'),
(76021, 64055, 'bn', 'name', 'ą¦øą§ą¦„ą¦¾ą¦Øą§€ą¦Æą¦¼ সরকার, ą¦Ŗą¦²ą§ą¦²ą§€ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø ও সমবায় ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(76022, 64055, 'en', 'name', 'Ministry of Local Government, Rural Development and Co-operatives'),
(76023, 64056, 'en', 'name', 'Mercy Fitzgerald Hospital'),
(76024, 64057, 'en', 'name', 'Nepal Family Development Foundation'),
(76025, 64058, 'en', 'name', 'Illawarra Women''s Health Centre'),
(76026, 64059, 'en', 'name', 'Rowe Neurology Institute'),
(76027, 64060, 'en', 'name', 'Fujian Academy of Medical Sciences'),
(76028, 64060, 'zh', 'name', 'ē¦å»ŗēœåŒ»å­¦ē§‘å­¦é™¢'),
(76029, 64061, 'en', 'name', 'Vascular Interventional Advances'),
(76030, 64062, 'en', 'name', 'Facial Pain Association'),
(76031, 64063, 'en', 'name', 'Creedmoor Psychiatric Center'),
(76032, 64064, 'en', 'name', 'Michigan Head and Spine Institute'),
(76033, 64065, 'en', 'name', 'Midtown Educational Foundation'),
(76034, 64066, 'en', 'name', 'Legacy International'),
(76035, 64067, 'en', 'name', 'Cure CP'),
(76036, 64068, 'en', 'name', 'National Institute for Health Care Reform'),
(76037, 64069, 'en', 'name', 'Seafood South Australia'),
(76038, 64070, 'en', 'name', 'MiiMi Aboriginal Corporation'),
(76039, 64071, 'no_lang_code', 'name', 'Spectrum Research (United States)'),
(76040, 64072, 'no_lang_code', 'name', 'Interpolis (Netherlands)'),
(76041, 64073, 'en', 'name', 'Inspired Spine'),
(76042, 64074, 'no_lang_code', 'name', 'RR Mechatronics (Netherlands)'),
(76043, 64075, 'en', 'name', 'Hematology Oncology Associates'),
(76044, 64076, 'en', 'name', 'Neosho Memorial Regional Medical Center'),
(76045, 64077, 'de', 'name', 'Acura Kliniken'),
(76046, 64078, 'no_lang_code', 'name', 'SIGVARIS Group (Switzerland)'),
(76047, 64079, 'en', 'name', 'Intercultural Center for the Study of Deserts and Oceans'),
(76048, 64079, 'es', 'name', 'Centro Intercultural de Estudios de Desiertos y OcƩanos'),
(76049, 64080, 'fr', 'name', 'Adema 80'),
(76050, 64081, 'es', 'name', 'Instituto Ecuatoriano de Enfermedades Digestivas'),
(76051, 64082, 'en', 'name', 'Center for the Study of State and Society'),
(76052, 64082, 'es', 'name', 'Centro para el Estudio del Estado y la Sociedad'),
(76053, 64083, 'de', 'name', 'Caritas-Krankenhaus St. Josef'),
(76054, 64084, 'no_lang_code', 'name', 'Storch und Beller'),
(76055, 64085, 'en', 'name', 'McFarland Clinic - Marshalltown'),
(76056, 64086, 'no_lang_code', 'name', 'Vion Food Group (Netherlands)'),
(76057, 64087, 'en', 'name', 'PeaceHealth St. Joseph Medical Center'),
(76058, 64088, 'no_lang_code', 'name', 'Caris Life Sciences (United States)'),
(76059, 64089, 'nl', 'name', 'Brijder, Brijder Verslavingszorg'),
(76060, 64090, 'fr', 'name', 'AcadƩmie de Nancy-Metz'),
(76061, 64091, 'en', 'name', 'Neurologique Foundation'),
(76062, 64092, 'no_lang_code', 'name', 'Pulmonx (United States)'),
(76063, 64093, 'en', 'name', 'Mandya Institute of Medical Sciences'),
(76064, 64093, 'kn', 'name', 'ą²®ą²‚ą²”ą³ą²Æ ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²«ą³ ą²®ą³†ą²”ą²æą²•ą²²ą³ ą²øą³ˆą²Øą³ą²øą³'),
(76065, 64094, 'en', 'name', 'Food & Nutrition'),
(76066, 64095, 'no_lang_code', 'name', 'AEGEA Medical (United States)'),
(76067, 64096, 'fr', 'name', 'Centre Hospitalier Intercommunal Toulon-La Seyne-sur-Mer'),
(76068, 64097, 'no_lang_code', 'name', 'Roivant Sciences (Bermuda)'),
(76069, 64098, 'en', 'name', 'The O.P. and W.E. Edwards Foundation'),
(76070, 64099, 'en', 'name', 'Tau Beta Pi Association'),
(76071, 64100, 'en', 'name', 'Greater Regional Medical Center'),
(76072, 64101, 'en', 'name', 'IVI Middle East Fertility Clinic'),
(76073, 64102, 'en', 'name', 'Thinkery'),
(76074, 64103, 'no_lang_code', 'name', 'Lambda Therapeutic Research (India)'),
(76075, 64104, 'en', 'name', 'OrthoCarolina Research Institute'),
(76076, 64105, 'de', 'name', 'Evangelisches Krankenhaus Hamm'),
(76077, 64106, 'en', 'name', 'Naples Community Hospital Healthcare System'),
(76078, 64107, 'en', 'name', 'Recfish Australia'),
(76079, 64108, 'de', 'name', 'Vinforce'),
(76080, 64109, 'de', 'name', 'Adipositas Zentrum Oberhausen'),
(76081, 64110, 'no_lang_code', 'name', 'Bracco (Germany)'),
(76082, 64111, 'en', 'name', 'National Institute for Public Safety Health'),
(76083, 64112, 'no_lang_code', 'name', 'Unfallkasse Rheinland-Pfalz (Germany)'),
(76084, 64113, 'de', 'name', 'Ɩsterreichisches Normungsinstitut'),
(76085, 64113, 'en', 'name', 'Austrian Standards'),
(76086, 64114, 'en', 'name', 'Shanghai Research Center for Wireless Communications'),
(76087, 64114, 'zh', 'name', 'äøŠęµ·ę— ēŗæé€šäæ”ē ”ē©¶äø­åæƒ'),
(76088, 64115, 'pt', 'name', 'Instituto de Oncologia do ParanĆ”'),
(76089, 64116, 'nl', 'name', 'Condite'),
(76090, 64117, 'no_lang_code', 'name', 'EDAP TMS (Germany)'),
(76091, 64118, 'de', 'name', 'Universitätsklinik für Kinder und Jugendpsychiatrie'),
(76092, 64119, 'en', 'name', 'Spanish Head & Neck Cancer Cooperative Group'),
(76093, 64119, 'es', 'name', 'Grupo EspaƱol de Tratamiento de Tumores de Cabeza y Cuello'),
(76094, 64120, 'en', 'name', 'Southeast Tech'),
(76095, 64121, 'de', 'name', 'Deutscher Psoriasis Bund'),
(76096, 64122, 'en', 'name', 'Providence Saint Joseph Medical Center'),
(76097, 64123, 'en', 'name', 'Nasser Institute hospital'),
(76098, 64124, 'en', 'name', 'Difficult Airways Society'),
(76099, 64125, 'de', 'name', 'Institut für Mikrobiologie und Hygiene'),
(76100, 64125, 'en', 'name', 'Institute of Medical Microbiology and Hygiene'),
(76101, 64126, 'en', 'name', 'Inner Mongolia International Mongolian Hospital'),
(76102, 64126, 'zh', 'name', 'å†…č’™å¤å›½é™…č’™åŒ»é™¢å®˜ē½‘'),
(76103, 64127, 'no_lang_code', 'name', 'Gelita (Germany)'),
(76104, 64128, 'de', 'name', 'Helios Klinikum Erfurt'),
(76105, 64129, 'en', 'name', 'EEC Institute'),
(76106, 64130, 'en', 'name', 'Taiwan Society of Thrombosis and Hemostasis'),
(76107, 64131, 'en', 'name', 'Federal Neuro Psychiatric Hospital'),
(76108, 64132, 'de', 'name', 'BIG Direkt Gesund'),
(76109, 64133, 'en', 'name', 'EGMONT – The Royal Institute for International Relations'),
(76110, 64134, 'en', 'name', 'Interventional Stroke Therapy Outcomes Registry'),
(76111, 64135, 'en', 'name', 'Italian Resuscitation Council'),
(76112, 64136, 'en', 'name', 'Healing Institute'),
(76113, 64137, 'en', 'name', 'Foundation Van Goethem-Brichant'),
(76114, 64138, 'en', 'name', 'Panhandle Eye Group'),
(76115, 64139, 'de', 'name', 'Refonet'),
(76116, 64140, 'en', 'name', 'Arizona Oncology Foundation'),
(76117, 64141, 'no_lang_code', 'name', 'Gynius (Sweden)'),
(76118, 64142, 'es', 'name', 'Hospital Plató'),
(76119, 64143, 'en', 'name', 'Seafood Industry Victoria'),
(76120, 64144, 'no_lang_code', 'name', 'UnivƩ (Netherlands)'),
(76121, 64145, 'en', 'name', 'Entrada Institute'),
(76122, 64146, 'en', 'name', 'Lagos State Health Service Commission'),
(76123, 64147, 'en', 'name', 'Houston Methodist Sugar Land Hospital'),
(76124, 64148, 'de', 'name', 'Institut für Palliative Care'),
(76125, 64149, 'en', 'name', 'Maine Discovery Museum'),
(76126, 64150, 'en', 'name', 'European Society of Hypertension'),
(76127, 64150, 'it', 'name', 'SocietĆ  europea di ipertensione'),
(76128, 64151, 'en', 'name', 'Royal Belgian Society for Surgery'),
(76129, 64152, 'en', 'name', 'The Clay Minerals Society'),
(76130, 64153, 'en', 'name', 'SurgOne Foregut Institute'),
(76131, 64154, 'en', 'name', 'Primary Care Diabetes Society'),
(76132, 64155, 'en', 'name', 'Governor''s Office of Planning and Research'),
(76133, 64156, 'fr', 'name', 'Clinique Hartmann'),
(76134, 64157, 'fr', 'name', 'Institut Aguettant'),
(76135, 64158, 'en', 'name', 'Chicago Children’s Museum'),
(76136, 64159, 'en', 'name', 'South Asian Clinical Toxicology Research Collaboration'),
(76137, 64160, 'it', 'name', 'Istituto di Montecatone, Ospedale di Riabilitazione'),
(76138, 64161, 'en', 'name', 'Medirex Group Academy'),
(76139, 64162, 'en', 'name', 'Community Hospital'),
(76140, 64163, 'en', 'name', 'Kalispell Regional Medical Center'),
(76141, 64164, 'no_lang_code', 'name', 'Caribou Biosciences (United States)'),
(76142, 64165, 'en', 'name', 'Chinese Anti-Cancer Association'),
(76143, 64165, 'zh', 'name', 'äø­å›½ęŠ—ē™Œåä¼š'),
(76144, 64166, 'en', 'name', 'Genesee Cancer & Blood Disease'),
(76145, 64167, 'en', 'name', 'Appalachia-Science in the Public Interest'),
(76146, 64168, 'en', 'name', 'Kulas Foundation'),
(76147, 64169, 'en', 'name', 'California Indian Museum and Cultural Center'),
(76148, 64170, 'en', 'name', 'Mountain Diabetes and Endocrine Center'),
(76149, 64171, 'en', 'name', 'Ruikang Affiliated Hospital of Guangxi Medical University'),
(76150, 64171, 'zh', 'name', 'å¹æč„æäø­åŒ»čÆå¤§å­¦é™„å±žē‘žåŗ·åŒ»é™¢'),
(76151, 64172, 'no_lang_code', 'name', 'Onkotrakt (Germany)'),
(76152, 64173, 'de', 'name', 'Deutsche Parkinson Vereinigung e.V'),
(76153, 64174, 'en', 'name', 'Netherlands Nutrition Centre'),
(76154, 64174, 'nl', 'name', 'Stichting Voedingscentrum'),
(76155, 64175, 'en', 'name', 'Access to Wholistic and Productive Living Institute'),
(76156, 64176, 'en', 'name', 'Institute of Mental Health'),
(76157, 64176, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ментално зГравље'),
(76158, 64177, 'no_lang_code', 'name', 'Zambon (Switzerland)'),
(76159, 64178, 'no_lang_code', 'name', 'Multi Electrical System (Suriname)'),
(76160, 64179, 'de', 'name', 'Kreiskrankenhaus Emmendingen'),
(76161, 64180, 'no_lang_code', 'name', 'Damien Foundation'),
(76162, 64181, 'de', 'name', 'UniversitƤtszahnklinik Wien'),
(76163, 64182, 'en', 'name', 'Gulf Heart Association'),
(76164, 64183, 'en', 'name', 'National Cancer Institute of Sri Lanka'),
(76165, 64184, 'de', 'name', 'Klinik und Poliklinik für Psychiatrie und Psychotherapie des Kindes- und Jugendalters'),
(76166, 64185, 'en', 'name', 'North Tees and Hartlepool NHS Foundation Trust'),
(76167, 64186, 'no_lang_code', 'name', 'nView Medical (United States)'),
(76168, 64187, 'de', 'name', 'George-Huntington-Institut'),
(76169, 64187, 'en', 'name', 'George Huntington Institute'),
(76170, 64188, 'no_lang_code', 'name', 'Neuren Pharmaceuticals (New Zealand)'),
(76171, 64189, 'en', 'name', 'Pearl Producers Association'),
(76172, 64190, 'no_lang_code', 'name', 'Infinity HealthCare (United States)'),
(76173, 64191, 'no_lang_code', 'name', 'A-SKIN (Netherlands)'),
(76174, 64192, 'de', 'name', 'Onkozentrum Dresden'),
(76175, 64193, 'en', 'name', 'Beijing Institute of Labor Protection Science'),
(76176, 64193, 'zh', 'name', 'åŒ—äŗ¬åø‚åŠ³åŠØäæęŠ¤ē§‘å­¦ē ”ē©¶ę‰€'),
(76177, 64194, 'en', 'name', 'The AIDS Institute'),
(76178, 64195, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪŸĪ“Ī¹ĪŗĪ®Ļ‚ Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī±Ļ‚ "Πάνος ĪœĻ…Ī»Ļ‰Ī½Ī¬Ļ‚"'),
(76179, 64195, 'en', 'name', 'Road Safety Institute Panos Mylonas'),
(76180, 64196, 'de', 'name', 'Rat für Informationsinfrastrukturen'),
(76181, 64196, 'en', 'name', 'German Council for Scientific Information Infrastructures'),
(76182, 64197, 'kk', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾Šµ общество бариатрических Šø метаболических Ń…ŠøŃ€ŃƒŃ€Š³Š¾Š² Š ŠžŠž'),
(76183, 64197, 'no_lang_code', 'name', 'Kazahstanskoe Obshchestvo Bariatricheskih i Metabolicheskih Hirurgov'),
(76184, 64198, 'bg', 'name', 'болница Царица Йоанна'),
(76185, 64198, 'en', 'name', 'Queen Giovanna Hospital'),
(76186, 64199, 'en', 'name', 'Great Falls Clinic'),
(76187, 64200, 'no_lang_code', 'name', 'Zimmer Biomet (Switzerland)'),
(76188, 64201, 'no_lang_code', 'name', 'Premaitha Health (United Kingdom)'),
(76189, 64202, 'en', 'name', 'Jackson Hole Wildlife Film Festival'),
(76190, 64203, 'en', 'name', 'Proliance Orthopedic Associates'),
(76191, 64204, 'no_lang_code', 'name', 'HausMed (Germany)'),
(76192, 64205, 'no_lang_code', 'name', 'PharmaCept (Germany)'),
(76193, 64206, 'no_lang_code', 'name', 'Alloheim (Germany)'),
(76194, 64207, 'no_lang_code', 'name', 'Admin Partners (Switzerland)'),
(76195, 64208, 'en', 'name', 'Oakland Colon and Rectal Associates'),
(76196, 64209, 'en', 'name', 'Open Medicine Institute'),
(76197, 64210, 'de', 'name', 'Dr. Becker Rhein-Sieg-Klinik'),
(76198, 64210, 'en', 'name', 'Dr. Becker Rhein-Sieg Clinic'),
(76199, 64211, 'en', 'name', 'Qingdao Party School of CPC'),
(76200, 64211, 'zh', 'name', 'äø­å›½å…±äŗ§å…šé’å²›åø‚å§”å‘˜ä¼šå…šę ”'),
(76201, 64212, 'no_lang_code', 'name', 'Glycemicon (Switzerland)'),
(76202, 64213, 'en', 'name', 'Eastern Maine Community College'),
(76203, 64214, 'de', 'name', 'Rehazentrum Wilhelmshaven'),
(76204, 64215, 'de', 'name', 'Deutsche Stiftung Organtransplantation'),
(76205, 64215, 'en', 'name', 'German Organ Transplantation Foundation'),
(76206, 64216, 'en', 'name', 'Euskoiker Foundation'),
(76207, 64217, 'no_lang_code', 'name', 'Dürr Dental (Germany)'),
(76208, 64218, 'de', 'name', 'Deutsche AIDS-Gesellschaft'),
(76209, 64219, 'no_lang_code', 'name', 'Huons (South Korea)'),
(76210, 64220, 'en', 'name', 'Philadelphia Eye Associates'),
(76211, 64221, 'no_lang_code', 'name', 'Danone (China)'),
(76212, 64222, 'da', 'name', 'Dansk Selskab for Almen Medicin'),
(76213, 64222, 'en', 'name', 'Danish College of General Practitioners'),
(76214, 64223, 'no_lang_code', 'name', 'OIM Orthopedie (Netherlands)'),
(76215, 64224, 'en', 'name', 'Benjamin Banneker Association'),
(76216, 64225, 'en', 'name', 'Rashi Foundation'),
(76217, 64225, 'he', 'name', 'קרן רש"י'),
(76218, 64226, 'de', 'name', 'Europäische Gesellschaft für kutanen Lupus erythematodes'),
(76219, 64226, 'en', 'name', 'European Society of Cutaneous Lupus Erythematosus'),
(76220, 64227, 'es', 'name', 'Halitus Instituto MƩdico'),
(76221, 64228, 'en', 'name', 'Santa LucĆ­a University General Hospital'),
(76222, 64228, 'es', 'name', 'Hospital General Universitario Santa LucĆ­a'),
(76223, 64229, 'no_lang_code', 'name', 'Musculoskeletal Clinical Regulatory Advisers (United States)'),
(76224, 64230, 'no_lang_code', 'name', 'Imbed Biosciences (United States)'),
(76225, 64231, 'no_lang_code', 'name', 'Minnesota HealthSolutions (United States)'),
(76226, 64232, 'en', 'name', 'Ludwig Boltzmann Institute of Osteology'),
(76227, 64233, 'de', 'name', 'Apothekerstiftung Westfalen-Lippe'),
(76228, 64234, 'no_lang_code', 'name', 'Psicon (United Kingdom)'),
(76229, 64235, 'en', 'name', 'New Renaissance Institute'),
(76230, 64236, 'no_lang_code', 'name', 'Nano3D Biosciences (United States)'),
(76231, 64237, 'en', 'name', 'Rogue Regional Medical Center'),
(76232, 64238, 'no_lang_code', 'name', 'Landsbond der Christelijke Mutualiteiten (Belgium)'),
(76233, 64239, 'en', 'name', 'Grinnell Regional Medical Center'),
(76234, 64240, 'en', 'name', 'Centre for Studies in Economics and Finance'),
(76235, 64241, 'no_lang_code', 'name', 'Genmab (United States)'),
(76236, 64242, 'de', 'name', 'Diakonie Kork'),
(76237, 64243, 'en', 'name', 'US Virtual Astronomical Observatory'),
(76238, 64244, 'en', 'name', 'The Japan-Multinational Trial Organization'),
(76239, 64244, 'ja', 'name', 'ę—„ęœ¬ćƒ»å¤šå›½é–“č‡ØåŗŠč©¦éØ“ę©Ÿę§‹'),
(76240, 64245, 'no_lang_code', 'name', 'Inspire Medical Systems (United States)'),
(76241, 64246, 'nl', 'name', 'Capri Hartrevalidatie'),
(76242, 64247, 'nl', 'name', 'ROC Leeuwenborgh'),
(76243, 64248, 'de', 'name', 'Oberberg Stiftung'),
(76244, 64249, 'no_lang_code', 'name', 'IsoPlexis (United States)'),
(76245, 64250, 'en', 'name', 'HealthCare Partners Institute for Applied Research and Education'),
(76246, 64251, 'no_lang_code', 'name', 'Veeda Clinical Research (India)'),
(76247, 64252, 'en', 'name', 'Northwest Cancer Clinic'),
(76248, 64253, 'en', 'name', 'Trenholm State Community College'),
(76249, 64254, 'no_lang_code', 'name', 'Konpharma (Italy)'),
(76250, 64255, 'no_lang_code', 'name', 'Centerline Digital (United States)'),
(76251, 64256, 'it', 'name', 'Istituto Nazionale per le Ricerche Cardiovascolari'),
(76252, 64257, 'en', 'name', 'Neurosurgeons of New Jersey'),
(76253, 64258, 'en', 'name', 'Central Florida Neurosurgery Institute'),
(76254, 64259, 'de', 'name', 'Fƶrderverein Hilfe bei Prostatakrebs'),
(76255, 64260, 'en', 'name', 'Microcirculatory Society'),
(76256, 64261, 'no_lang_code', 'name', 'Agunco'),
(76257, 64262, 'en', 'name', 'Corporation for Research and Educational Networking'),
(76258, 64263, 'no_lang_code', 'name', 'Azienda di Servizi alla Persona di Pavia (Italy)'),
(76259, 64264, 'en', 'name', 'Nebraska Cancer Specialists'),
(76260, 64265, 'pt', 'name', 'Hospital Regional Publico do Araguaia'),
(76261, 64266, 'en', 'name', 'The Prompt Institute'),
(76262, 64267, 'no_lang_code', 'name', 'SilverCloud (Ireland)'),
(76263, 64268, 'nl', 'name', 'Kenter Jeugdhulp'),
(76264, 64269, 'no_lang_code', 'name', 'Sterling International (United States)'),
(76265, 64270, 'en', 'name', 'Memorial Hermann Memorial City Medical Center'),
(76266, 64271, 'en', 'name', 'Saint Alphonsus Health System'),
(76267, 64272, 'nl', 'name', 'ZZG zorggroep'),
(76268, 64273, 'no_lang_code', 'name', 'Barry Callebaut (Belgium)'),
(76269, 64274, 'en', 'name', 'Immunology Research Institute in Gifu'),
(76270, 64274, 'ja', 'name', 'å²é˜œåŽæå…ē–«å­¦ē ”ē©¶ę‰€'),
(76271, 64275, 'en', 'name', 'Association of Pediatric Program Directors'),
(76272, 64276, 'no_lang_code', 'name', 'QPS (United States)'),
(76273, 64277, 'no_lang_code', 'name', 'M’s Science Corporation (Japan)'),
(76274, 64278, 'en', 'name', 'North American Hair Research Society'),
(76275, 64279, 'de', 'name', 'Rückenzentrum am Michel'),
(76276, 64280, 'no_lang_code', 'name', 'SpringActive (United States)'),
(76277, 64281, 'en', 'name', 'Dolfinger-McMahon Foundation'),
(76278, 64282, 'pt', 'name', 'Instituto do Sono'),
(76279, 64283, 'no_lang_code', 'name', 'Inion (Finland)'),
(76280, 64284, 'no_lang_code', 'name', 'PharmaJet (United States)'),
(76281, 64285, 'no_lang_code', 'name', 'Walder Wyss (Switzerland)'),
(76282, 64286, 'en', 'name', 'Society for Modeling and Simulation International'),
(76283, 64287, 'en', 'name', 'International Renal Research Institute of Vicenza'),
(76284, 64288, 'no_lang_code', 'name', 'Progenitec (United States)'),
(76285, 64289, 'no_lang_code', 'name', 'Imam Hossein Hospital'),
(76286, 64290, 'no_lang_code', 'name', 'Japan Tobacco (United States)'),
(76287, 64291, 'en', 'name', 'Teaching Channel'),
(76288, 64292, 'en', 'name', 'Association for Academic Minority Physicians'),
(76289, 64293, 'de', 'name', 'IKK Classic'),
(76290, 64294, 'en', 'name', 'Mendocino Coast District Hospital'),
(76291, 64295, 'no_lang_code', 'name', 'Metcut Research (United States)'),
(76292, 64296, 'nl', 'name', 'AO Nederland'),
(76293, 64297, 'en', 'name', 'AHEC West'),
(76294, 64298, 'en', 'name', 'Caron'),
(76295, 64299, 'es', 'name', 'Fundación Universitaria Iberoamericana'),
(76296, 64300, 'en', 'name', 'Great Plains Regional Medical Center'),
(76297, 64301, 'en', 'name', 'Institute for Pulmonary Diseases of Vojvodina'),
(76298, 64302, 'en', 'name', 'Main Line Center for Laser Surgery'),
(76299, 64303, 'no_lang_code', 'name', 'Applied LifeSciences & Systems (United States)'),
(76300, 64304, 'es', 'name', 'Instituto de OncologĆ­a de Rosario'),
(76301, 64305, 'pt', 'name', 'Instituto de Terapia Integrada e Oriental'),
(76302, 64306, 'de', 'name', 'Bundeszentrale für Gesundheitliche Aufklärung'),
(76303, 64306, 'en', 'name', 'Federal Centre for Health Education'),
(76304, 64307, 'nl', 'name', 'Cornelia-Stichting'),
(76305, 64308, 'no_lang_code', 'name', 'GlaxoSmithKline (Sweden)'),
(76306, 64309, 'en', 'name', 'Rheumatology Consultants'),
(76307, 64310, 'en', 'name', 'Sericulture and Agricultural Products Research Institute'),
(76308, 64310, 'zh', 'name', 'å¹æäøœēœå†œäøšē§‘å­¦é™¢čš•äøšäøŽå†œäŗ§å“åŠ å·„ē ”ē©¶ę‰€'),
(76309, 64311, 'de', 'name', 'Behandlungszentrum Aschau'),
(76310, 64312, 'de', 'name', 'Evangelisches Diakoniekrankenhaus'),
(76311, 64313, 'en', 'name', 'Agency for Integrated Care'),
(76312, 64314, 'fr', 'name', 'Groupe Hospitalier de la RƩgion de Mulhouse et Sud Alsace'),
(76313, 64315, 'en', 'name', 'Hanoi Medical University Hospital'),
(76314, 64316, 'en', 'name', 'International Science and Technology Institute'),
(76315, 64317, 'en', 'name', 'Spanish Research Group on Sarcomas'),
(76316, 64317, 'es', 'name', 'Grupo Español de Investigación en Sarcomas'),
(76317, 64318, 'en', 'name', 'NatureBridge'),
(76318, 64319, 'en', 'name', 'Regional Children''s Hospital No1'),
(76319, 64320, 'no_lang_code', 'name', 'AstraZeneca (Germany)'),
(76320, 64321, 'en', 'name', 'Port Kennedy Association'),
(76321, 64322, 'no_lang_code', 'name', 'SilverFit (Netherlands)'),
(76322, 64323, 'de', 'name', 'Evangelisches Krankenhaus Kƶnigin Elisabeth Herzberge'),
(76323, 64324, 'fr', 'name', 'Association pour l''Utilisation du Rein Artificiel'),
(76324, 64325, 'en', 'name', 'National Scientific Center "M.D. Strazhesko Institute of Cardiology"'),
(76325, 64325, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр ''М.Š”. Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карГіології ім. Дтражеска'),
(76326, 64326, 'no_lang_code', 'name', 'OneVax (United States)'),
(76327, 64327, 'nl', 'name', 'TKI Treco'),
(76328, 64328, 'de', 'name', 'Evangelisches Krankenhaus Mettmann'),
(76329, 64329, 'en', 'name', 'Charles H. Hood Foundation'),
(76330, 64330, 'en', 'name', 'National Heart Institute'),
(76331, 64331, 'en', 'name', 'Australia New Zealand Gynaecological Oncology Group'),
(76332, 64332, 'en', 'name', 'Kaiser Permanente Orange County Irvine Medical Center'),
(76333, 64333, 'en', 'name', 'Northern Westchester Hospital'),
(76334, 64334, 'no_lang_code', 'name', 'Universal Dialog (United States)'),
(76335, 64335, 'en', 'name', 'Inland Empire Liver Foundation'),
(76336, 64336, 'en', 'name', 'D.A.V Centenary Dental College'),
(76337, 64337, 'en', 'name', 'Retina Clinic'),
(76338, 64338, 'en', 'name', 'Association for Utah Community Health'),
(76339, 64339, 'it', 'name', 'Centro Interuniversitario di Ricerca sui Peptidi Bioattivi'),
(76340, 64340, 'en', 'name', 'Human Development Research Foundation'),
(76341, 64341, 'en', 'name', 'Texas Institute of Dermatology Laser and Cosmetic Surgery'),
(76342, 64342, 'de', 'name', 'Wissenschaftliches Institut der AOK'),
(76343, 64343, 'en', 'name', 'Asante Three Rivers Medical Center'),
(76344, 64344, 'no_lang_code', 'name', 'Libbs (Brazil)'),
(76345, 64345, 'de', 'name', 'Rheinhessen-Fachklinik Mainz'),
(76346, 64346, 'en', 'name', 'Werlhof Institute'),
(76347, 64347, 'en', 'name', 'Tennessee Retina'),
(76348, 64348, 'no_lang_code', 'name', 'Roche (Sweden)'),
(76349, 64349, 'no_lang_code', 'name', 'TRC Companies (United States)'),
(76350, 64350, 'de', 'name', 'Asklepios'),
(76351, 64351, 'bg', 'name', 'ŠŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ Астма'),
(76352, 64351, 'en', 'name', 'Asthma Association'),
(76353, 64352, 'en', 'name', 'Four Corners School of Outdoor Education'),
(76354, 64353, 'no_lang_code', 'name', 'Score (Netherlands)'),
(76355, 64354, 'no_lang_code', 'name', 'Cox Enterprises (United States)'),
(76356, 64355, 'de', 'name', 'Parkinson-Klinik Ortenau'),
(76357, 64356, 'no_lang_code', 'name', 'Osypka (Germany)'),
(76358, 64357, 'en', 'name', 'Centra Health'),
(76359, 64358, 'en', 'name', 'Feminist Majority Foundation'),
(76360, 64359, 'en', 'name', 'Milwaukee Health Department'),
(76361, 64360, 'en', 'name', 'Center for World Indigenous Studies'),
(76362, 64361, 'nl', 'name', 'Verslavingszorg Noord Nederland'),
(76363, 64362, 'en', 'name', 'KKT Orthopedic Spine Center'),
(76364, 64363, 'en', 'name', 'The Memory Clinic'),
(76365, 64364, 'hr', 'name', 'Opća Bolnica Varaždin'),
(76366, 64365, 'de', 'name', 'Klinik und Poliklinik für Urologie, Kinderurologie und Andrologie'),
(76367, 64366, 'de', 'name', 'Klinik und Poliklinik für Augenheilkunde am Universitätsklinikum Carl Gustav Carus'),
(76368, 64367, 'de', 'name', 'Urologische Klinik München'),
(76369, 64368, 'no_lang_code', 'name', 'Yakult (Netherlands)'),
(76370, 64369, 'en', 'name', 'Nebraska Independent College Foundation'),
(76371, 64370, 'en', 'name', 'Union City Public Schools'),
(76372, 64371, 'no_lang_code', 'name', 'Daval International (United Kingdom)'),
(76373, 64372, 'en', 'name', 'Monadnock Community Hospital'),
(76374, 64373, 'en', 'name', 'Baptist Health Paducah'),
(76375, 64374, 'nl', 'name', 'Fonds Verstandelijk Gehandicapten'),
(76376, 64375, 'en', 'name', 'The Orthopaedic Institute'),
(76377, 64376, 'nl', 'name', 'Federatie Medisch Specialisten'),
(76378, 64377, 'en', 'name', 'North Carolina Department of Administration'),
(76379, 64378, 'en', 'name', 'Colorado Springs Osteopathic Foundation'),
(76380, 64379, 'ro', 'name', 'Spitalul Clinic Judetean de Urgenta Sibiu'),
(76381, 64380, 'de', 'name', 'Evangelisches Krankenhaus Gƶttingen-Weende'),
(76382, 64381, 'en', 'name', 'Pacific Sociological Association'),
(76383, 64382, 'en', 'name', 'Sandra Schmirler Foundation'),
(76384, 64382, 'fr', 'name', 'Fondation Sandra Schmirler'),
(76385, 64383, 'en', 'name', 'Associated Neurologists of Southern Connecticut'),
(76386, 64384, 'no_lang_code', 'name', 'Fine Treatment (United Kingdom)'),
(76387, 64385, 'es', 'name', 'Instituto de Salud MusculoesquelƩtica'),
(76388, 64386, 'en', 'name', 'Tidelands Health'),
(76389, 64387, 'en', 'name', 'Behman Hospital'),
(76390, 64388, 'de', 'name', 'Investitionsbank Sachsen-Anhalt'),
(76391, 64389, 'no_lang_code', 'name', 'Creative Research Enterprises (United States)'),
(76392, 64390, 'nl', 'name', 'Mediant Geestelijke Gezondheidszorg'),
(76393, 64391, 'en', 'name', 'Dattoli Cancer Center and Brachytherapy Research Institute'),
(76394, 64392, 'en', 'name', 'Second Affiliated Hospital of Shandong University of TCM'),
(76395, 64392, 'zh', 'name', 'å±±äøœäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äŗŒåŒ»é™¢'),
(76396, 64393, 'en', 'name', 'International Brain Research Foundation'),
(76397, 64394, 'en', 'name', 'American Academy of Osteopathy'),
(76398, 64395, 'de', 'name', 'Verband Deutscher Mineralbrunnen'),
(76399, 64396, 'en', 'name', 'Texas Society of Allied Health Professions'),
(76400, 64397, 'en', 'name', 'Arkansas Children’s Foundation'),
(76401, 64398, 'no_lang_code', 'name', 'NanoHybrids (United States)'),
(76402, 64399, 'fr', 'name', 'SociĆ©tĆ© Francophone d’Arthroscopie'),
(76403, 64400, 'en', 'name', 'Bridgewater Community Healthcare NHS Foundation Trust'),
(76404, 64401, 'en', 'name', 'Southern Oncology Specialists'),
(76405, 64402, 'en', 'name', 'Aurora BayCare Medical Center'),
(76406, 64403, 'en', 'name', 'Gaston Hematology & Oncology Associates'),
(76407, 64404, 'nl', 'name', 'Praktijkondersteuning Zuidoost-Brabant'),
(76408, 64405, 'no_lang_code', 'name', 'All Sum Research Center (Canada)'),
(76409, 64406, 'en', 'name', 'Florida Department of Citrus'),
(76410, 64407, 'en', 'name', 'Keloid Research Foundation'),
(76411, 64408, 'de', 'name', 'Schƶn Klinik Berchtesgadener Land'),
(76412, 64409, 'no_lang_code', 'name', 'Leo Pharma (United States)'),
(76413, 64410, 'no_lang_code', 'name', 'N. V. Pharma (India)'),
(76414, 64411, 'en', 'name', 'Minnesota Science Teachers Association'),
(76415, 64412, 'en', 'name', 'Carolina Urology Partners'),
(76416, 64413, 'en', 'name', 'Square Hospitals'),
(76417, 64414, 'en', 'name', 'Bendigo Hospital'),
(76418, 64415, 'en', 'name', 'Sparrow Thoracic Cardiovascular Institute'),
(76419, 64416, 'en', 'name', 'North Central London Research Consortium'),
(76420, 64417, 'no_lang_code', 'name', 'Nucleix (Israel)'),
(76421, 64418, 'en', 'name', 'Clinical Infectious Disease Hospital named after S.P. Botkin'),
(76422, 64418, 'ru', 'name', 'ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠøŠ½Ń„ŠµŠŗŃ†ŠøŠ¾Š½Š½Š°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° имени Š”. П. Боткина'),
(76423, 64419, 'en', 'name', 'Farr Institute'),
(76424, 64420, 'lt', 'name', 'Centro poliklinika'),
(76425, 64421, 'en', 'name', 'The Lynn Sage Foundation'),
(76426, 64422, 'en', 'name', 'CanRevive'),
(76427, 64423, 'en', 'name', 'University Radiology'),
(76428, 64424, 'da', 'name', 'Edgar Schnohr og hustru Gilberte Schnohr''s Fond'),
(76429, 64425, 'no_lang_code', 'name', 'Sanofi (Brazil)'),
(76430, 64426, 'en', 'name', 'Tƶƶlƶ Hospital'),
(76431, 64427, 'de', 'name', 'Bethlehem Gesundheitszentrum Stolberg'),
(76432, 64428, 'en', 'name', 'Japanese Society of CT Screening'),
(76433, 64428, 'ja', 'name', 'ę—„ęœ¬CT検診学会'),
(76434, 64429, 'en', 'name', 'Sheridan Memorial Hospital'),
(76435, 64430, 'en', 'name', 'University of Ottawa Skills and Simulation Centre'),
(76436, 64431, 'en', 'name', 'Northcentral Arkansas Education Cooperative'),
(76437, 64432, 'en', 'name', 'University Resident Theatre Association'),
(76438, 64433, 'no_lang_code', 'name', 'Cardialysis (Netherlands)'),
(76439, 64434, 'en', 'name', 'China Academy of Fiscal Science'),
(76440, 64434, 'zh', 'name', '中国蓢政科学研究院'),
(76441, 64435, 'nl', 'name', 'Centrum Oosterwal'),
(76442, 64436, 'en', 'name', 'A Step Ahead Foundation'),
(76443, 64437, 'en', 'name', 'Respiratory Clinical Trials'),
(76444, 64438, 'en', 'name', 'Chemical Industry Press'),
(76445, 64438, 'zh', 'name', 'åŒ–å­¦å·„äøšå‡ŗē‰ˆē¤¾'),
(76446, 64439, 'en', 'name', 'Cancer Center of Western Wisconsin'),
(76447, 64440, 'en', 'name', 'Academic Research in Complementary and Integrative Medicine'),
(76448, 64441, 'en', 'name', 'Environmental Health'),
(76449, 64442, 'pl', 'name', 'Samodzielny Publiczny Szpital Kliniczny im. prof. W. Orłowskiego CMKP'),
(76450, 64443, 'no_lang_code', 'name', 'DMG (Germany)'),
(76451, 64444, 'en', 'name', 'Foundation for Spinal Cord Research'),
(76452, 64444, 'fr', 'name', 'Moelle Epinière et Motricité Québec'),
(76453, 64445, 'de', 'name', 'HausƤrzteverband Sachsen-Anhalt'),
(76454, 64446, 'en', 'name', 'Guangdong 999 Brain Hospital'),
(76455, 64446, 'zh', 'name', '广东999č„‘ē§‘åŒ»é™¢'),
(76456, 64447, 'en', 'name', 'Hernando Eye Institute'),
(76457, 64448, 'en', 'name', 'Korean Society of Coloproctology'),
(76458, 64448, 'ko', 'name', 'ėŒ€ķ•œėŒ€ģž„ķ•­ė¬øķ•™ķšŒ'),
(76459, 64449, 'nl', 'name', 'Nederlandse Vereniging voor Hepatologie'),
(76460, 64450, 'en', 'name', 'Ridgewater College'),
(76461, 64451, 'no_lang_code', 'name', 'CCM Clinical Research Group (United States)'),
(76462, 64452, 'no_lang_code', 'name', 'Guangdong Inspection and Quarantine Technology Center (China)'),
(76463, 64453, 'nl', 'name', 'Rijnlands Revalidatie Centrum'),
(76464, 64454, 'no_lang_code', 'name', 'Adtec Plasma Technology (United Kingdom)'),
(76465, 64455, 'en', 'name', 'KSYOS TeleMedical Centre'),
(76466, 64455, 'nl', 'name', 'KSYOS TeleMedisch Centrum'),
(76467, 64456, 'es', 'name', 'Hospital Recoletas Campo Grande'),
(76468, 64457, 'en', 'name', 'Dearborn-Sah Institute For Joint Restoration'),
(76469, 64458, 'no_lang_code', 'name', 'Wockhardt (United States)'),
(76470, 64459, 'sv', 'name', 'Fertilitetscentrum'),
(76471, 64460, 'no_lang_code', 'name', 'EarlySense (Israel)'),
(76472, 64461, 'en', 'name', 'State Autonomous Institution of Health Interregional Clinical Diagnostic Center'),
(76473, 64461, 'ru', 'name', 'ŠŸŠ¾Š»ŠøŃ‚ŠøŠŗŠ° ŠŗŠ¾Š½Ń„ŠøŠ“ŠµŠ½Ń†ŠøŠ°Š»ŃŒŠ½Š¾ŃŃ‚Šø ŠæŠµŃ€ŃŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… Ганных сайта'),
(76474, 64462, 'en', 'name', 'Olathe Medical Center'),
(76475, 64463, 'en', 'name', 'Professional Footballers'' Association'),
(76476, 64464, 'en', 'name', 'GVK Emergency Management and Research Institute'),
(76477, 64465, 'es', 'name', 'Hospital de Especialidades JosƩ Carrasco Arteaga'),
(76478, 64466, 'en', 'name', 'Joint Research Center'),
(76479, 64466, 'es', 'name', 'Centro Común de Investigación'),
(76480, 64467, 'en', 'name', 'Forbes Hospital'),
(76481, 64468, 'en', 'name', 'Sentara Virginia Beach General Hospital'),
(76482, 64469, 'en', 'name', 'Pension Fund for Care and Well-Being'),
(76483, 64469, 'nl', 'name', 'Stichting Pensioenfonds Zorg en Welzijn'),
(76484, 64470, 'en', 'name', 'Girl Scouts of NE Kansas and NW Missouri'),
(76485, 64471, 'de', 'name', 'Institut für Materialprüfung und Werkstofftechnik'),
(76486, 64471, 'en', 'name', 'Institute for Materials Testing and Materials Technology Dr. Neubert'),
(76487, 64472, 'en', 'name', 'Kaiser Permanente Franklin Medical Offices'),
(76488, 64473, 'en', 'name', 'Sage Bariatric Institute'),
(76489, 64474, 'en', 'name', 'Alana''s Foundation'),
(76490, 64475, 'en', 'name', 'Respiratory and Meningeal Pathogens Research Unit'),
(76491, 64476, 'en', 'name', 'Croatian Society of Regional Anaesthesia and Analgesia'),
(76492, 64476, 'hr', 'name', 'Hrvatsko druŔtvo regionalne anestezije i analgezije'),
(76493, 64477, 'en', 'name', 'Universities Scotland'),
(76494, 64478, 'no_lang_code', 'name', 'High Speed Sustainable Manufacturing Institute (United Kingdom)'),
(76495, 64479, 'de', 'name', 'MVZ - Kurfürstendamm'),
(76496, 64480, 'en', 'name', 'National Association of Conservation Districts'),
(76497, 64481, 'en', 'name', 'Pharmalog (Germany)'),
(76498, 64482, 'en', 'name', 'Dr. National Center General Hospital Cipto Mangunkusumo'),
(76499, 64482, 'id', 'name', 'Rumah Sakit Umum Pusat Nasional Dr. Cipto Mangunkusumo'),
(76500, 64483, 'en', 'name', 'Children''s City Clinical Hospital ā„–11'),
(76501, 64484, 'en', 'name', 'Sheth M. L. Vaduwala Charitable Eye Hospital and Dr. Thakorbhai V. Patel Eye Institute'),
(76502, 64485, 'en', 'name', 'Myanmar Liver Foundation'),
(76503, 64486, 'de', 'name', 'Gelenkpunkt'),
(76504, 64487, 'en', 'name', 'Trinity Health'),
(76505, 64488, 'en', 'name', 'Orange Regional Medical Center'),
(76506, 64489, 'en', 'name', 'University Children''s Hospital of San JosƩ'),
(76507, 64489, 'es', 'name', 'Hospital Universitario Infantil San JosƩ'),
(76508, 64490, 'no_lang_code', 'name', 'GlaxoSmithKline (Netherlands)'),
(76509, 64491, 'en', 'name', 'Shenzhen Genoimmune Medical Institute'),
(76510, 64492, 'en', 'name', 'Network of European Foundations'),
(76511, 64493, 'en', 'name', 'Association of Microfinance Institutions in Rwanda'),
(76512, 64494, 'en', 'name', 'OSF St. Joseph Medical Center'),
(76513, 64495, 'no_lang_code', 'name', 'Pentracor (Germany)'),
(76514, 64496, 'no_lang_code', 'name', 'World of Medicine (Germany)'),
(76515, 64497, 'en', 'name', 'International Neuromodulation Society'),
(76516, 64498, 'en', 'name', 'Antalya IVF'),
(76517, 64499, 'en', 'name', 'Lifecenter Hospital'),
(76518, 64500, 'no_lang_code', 'name', 'PhylloTech (United States)'),
(76519, 64501, 'en', 'name', 'Public Responsibility in Medicine and Research'),
(76520, 64502, 'nl', 'name', 'Vereniging van Zorgaanbieders voor Zorgcommunicatie'),
(76521, 64503, 'en', 'name', 'Anoka-Hennepin School District'),
(76522, 64504, 'pt', 'name', 'Instituto Nefrológico de Campinas'),
(76523, 64505, 'no_lang_code', 'name', 'Bioenergy Life Science (United States)'),
(76524, 64506, 'no_lang_code', 'name', 'Hero Benelux (Netherlands)'),
(76525, 64507, 'en', 'name', 'Emory University Orthopaedics and Spine Hospital'),
(76526, 64508, 'en', 'name', 'Fiber Optic Association'),
(76527, 64509, 'en', 'name', 'Pamoja Tunaweza Women''s Centre'),
(76528, 64510, 'no_lang_code', 'name', 'enEvolv (United States)'),
(76529, 64511, 'de', 'name', 'SLK-Kliniken Heilbronn'),
(76530, 64512, 'no_lang_code', 'name', 'Muhimbili Orthopaedic Institute'),
(76531, 64513, 'en', 'name', 'Newfound Harbor Marine Institute'),
(76532, 64514, 'no_lang_code', 'name', 'Bifodan (Denmark)'),
(76533, 64515, 'de', 'name', 'Universitätsklinik für Stereotaktische Neurochirurgie'),
(76534, 64516, 'en', 'name', 'Arizona Oncology'),
(76535, 64517, 'en', 'name', 'Cardiovascular Institute of Rosario'),
(76536, 64517, 'es', 'name', 'Instituto Cardiovascular de Rosario'),
(76537, 64518, 'en', 'name', 'First Alaskans Institute'),
(76538, 64519, 'no_lang_code', 'name', 'C-RAD (Sweden)'),
(76539, 64520, 'en', 'name', 'Medica Foundation'),
(76540, 64521, 'en', 'name', 'Dignity Health'),
(76541, 64522, 'en', 'name', 'Museum of New Zealand Te Papa Tongarewa'),
(76542, 64523, 'en', 'name', 'Penn Highlands DuBois'),
(76543, 64524, 'de', 'name', 'Zentrum für Psychiatrie Emmendingen'),
(76544, 64525, 'de', 'name', 'Fachverband SAPV Hessen'),
(76545, 64526, 'en', 'name', 'Premier Clinical Research Institute'),
(76546, 64527, 'en', 'name', 'University of Aruba'),
(76547, 64527, 'nl', 'name', 'Universiteit van Aruba'),
(76548, 64528, 'no_lang_code', 'name', 'Dukat (Croatia)'),
(76549, 64529, 'nl', 'name', 'SIDN Fonds'),
(76550, 64530, 'en', 'name', 'Neys-van Hoogstraten Foundation'),
(76551, 64531, 'en', 'name', 'Sports Surgery Clinic'),
(76552, 64532, 'de', 'name', 'Neurologisches Rehabilitationszentrum Leipzig'),
(76553, 64533, 'de', 'name', 'Akademie Für Osteopathie'),
(76554, 64534, 'en', 'name', 'William W Backus Hospital'),
(76555, 64535, 'fr', 'name', 'Clinique du Grand Large'),
(76556, 64536, 'no_lang_code', 'name', 'Diamed Medizintechnik (Germany)'),
(76557, 64537, 'en', 'name', 'UK Thalassaemia Society'),
(76558, 64538, 'en', 'name', 'Channel Islands Marine & Wildlife Institute'),
(76559, 64539, 'en', 'name', 'Pactive Motion'),
(76560, 64540, 'en', 'name', 'Illinois Retina Associates'),
(76561, 64541, 'no_lang_code', 'name', 'Eli Lilly (Italy)'),
(76562, 64542, 'en', 'name', 'Ministry of Public Health'),
(76563, 64543, 'en', 'name', 'Hubei Provincial Hospital of Integrative Medicine'),
(76564, 64544, 'no_lang_code', 'name', 'Gilead Sciences (France)'),
(76565, 64545, 'en', 'name', 'Texas Life Science Foundation'),
(76566, 64546, 'no_lang_code', 'name', 'Pfizer (India)'),
(76567, 64547, 'no_lang_code', 'name', 'Honey & Fox (Australia)'),
(76568, 64548, 'de', 'name', 'Ria & Arthur Dietschweiler Stiftung'),
(76569, 64549, 'en', 'name', 'Mahesh Bhattacharyya Homeopathic Medical College and Hospital'),
(76570, 64550, 'en', 'name', 'Carbohydrate Competence Center'),
(76571, 64551, 'en', 'name', 'Redmond Fire Department'),
(76572, 64552, 'en', 'name', 'ProHealth Care'),
(76573, 64553, 'de', 'name', 'Institut für Diabetes "Gerhardt Katsch" Karlsburg'),
(76574, 64553, 'en', 'name', 'Institute for Diabetes Gerhardt Katsch'),
(76575, 64554, 'en', 'name', 'Hong Kong Island Women''s Association'),
(76576, 64554, 'zh', 'name', '香 ęøÆ å³¶ 婦 儳 聯 會'),
(76577, 64555, 'en', 'name', 'International Society for Cellular Therapy'),
(76578, 64556, 'en', 'name', 'Canton-Potsdam Hospital'),
(76579, 64557, 'no_lang_code', 'name', 'Ketron Optimization (United States)'),
(76580, 64558, 'en', 'name', 'JEM Research Institute'),
(76581, 64559, 'en', 'name', 'Institute of Hematology and Immunology'),
(76582, 64559, 'es', 'name', 'Instituto de HematologĆ­a e InmunologĆ­a'),
(76583, 64560, 'no_lang_code', 'name', 'Gilead Sciences (Germany)'),
(76584, 64561, 'en', 'name', 'Afeka College of Engineering'),
(76585, 64561, 'he', 'name', 'אפקה - המכללה ×”××§×“×ž×™×Ŗ להנדהה ×‘×Ŗ×œ אביב'),
(76586, 64562, 'es', 'name', 'Asociación Argentina de Tenis'),
(76587, 64563, 'hr', 'name', 'Opća Bolnica Zadar'),
(76588, 64564, 'en', 'name', 'Providence Regional Medical Center Everett'),
(76589, 64565, 'el', 'name', 'Ελληνική Εταιρία Ī ĻĪæĻƒĻ„Ī±ĻƒĪÆĪ±Ļ‚ & Ī‘Ļ€ĪæĪŗĪ±Ļ„Ī±ĻƒĻ„Ī¬ĻƒĪµĻ‰Ļ‚ Αναπήρων Ī ĻĪæĻƒĻŽĻ€Ļ‰Ī½-ΕΛΕΠΑΠ'),
(76590, 64565, 'en', 'name', 'ELEPAP-Rehabilitation for The Disabled'),
(76591, 64566, 'en', 'name', 'Obesity Medicine Association'),
(76592, 64567, 'no_lang_code', 'name', 'Xendo (Netherlands)'),
(76593, 64568, 'en', 'name', 'Vision Education and Media'),
(76594, 64569, 'no_lang_code', 'name', 'Physiol (Belgium)'),
(76595, 64570, 'de', 'name', 'Immanuel Klinikum Bernau'),
(76596, 64571, 'no_lang_code', 'name', 'Byrraju Foundation'),
(76597, 64572, 'de', 'name', 'Park-Klinik Birkenwerder'),
(76598, 64573, 'no_lang_code', 'name', 'Provascular (Germany)'),
(76599, 64574, 'en', 'name', 'Mobile Area Education Foundation'),
(76600, 64575, 'no_lang_code', 'name', 'AngioDynamics (Netherlands)'),
(76601, 64576, 'en', 'name', 'Defense Contract Management Agency'),
(76602, 64577, 'en', 'name', 'Chelyabinsk Regional Clinical Oncology Center'),
(76603, 64577, 'ru', 'name', 'Š§ŠµŠ»ŃŠ±ŠøŠ½ŃŠŗŠøŠ¹ областной клинический онкологический Гиспансер'),
(76604, 64578, 'en', 'name', 'Eat2Move'),
(76605, 64579, 'en', 'name', 'Kaiser Permanente Capitol Hill Medical Center'),
(76606, 64580, 'no_lang_code', 'name', 'KelaHealth (United States)'),
(76607, 64581, 'en', 'name', 'Stark Education Partnership'),
(76608, 64582, 'no_lang_code', 'name', 'SGS (Belgium)'),
(76609, 64583, 'en', 'name', 'Foundation for Education and Musculoskeletal Research'),
(76610, 64584, 'en', 'name', 'Hautok + Hautok Cosmetics'),
(76611, 64585, 'no_lang_code', 'name', 'LINK (Netherlands)'),
(76612, 64586, 'en', 'name', 'Bon Secours Liver Institute of Hampton Roads'),
(76613, 64587, 'de', 'name', 'Garmisch-Partenkirchen Medical Center, Klinikum Garmisch-Partenkirchen'),
(76614, 64588, 'en', 'name', 'Parkland Health Center'),
(76615, 64589, 'en', 'name', 'Association for Pediatric Pulmonary Hypertension'),
(76616, 64590, 'no_lang_code', 'name', 'Omni Med'),
(76617, 64591, 'en', 'name', 'Chan Heart Rhythm Institute'),
(76618, 64592, 'no_lang_code', 'name', 'AmebaGone (United States)'),
(76619, 64593, 'no_lang_code', 'name', 'SolRayo (United States)'),
(76620, 64594, 'pt', 'name', 'Hospital Risoleta Tolentino Neves'),
(76621, 64595, 'en', 'name', 'Huazhong University of Science and Technology Hospital'),
(76622, 64596, 'en', 'name', 'University Hospitals Geauga Medical Center'),
(76623, 64597, 'en', 'name', 'Specialized Clinical Psychiatric Hospital No. 1'),
(76624, 64597, 'ru', 'name', 'Š”ŠæŠµŃ†ŠøŠ°Š»ŠøŠ·ŠøŃ€Š¾Š²Š°Š½Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń ŠæŃŠøŃ…ŠøŠ°Ń‚Ń€ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„– 1'),
(76625, 64598, 'no_lang_code', 'name', 'Ethica (Canada)'),
(76626, 64599, 'de', 'name', 'Evangelische Kliniken Gelsenkirchen');
INSERT INTO `ror_settings` VALUES
(76627, 64600, 'no_lang_code', 'name', 'LogicMill Technology (United States)'),
(76628, 64601, 'no_lang_code', 'name', 'Fishwell Consulting (Australia)'),
(76629, 64602, 'en', 'name', 'Parks and Wildlife Service'),
(76630, 64603, 'no_lang_code', 'name', 'Revive Therapeutics (Canada)'),
(76631, 64604, 'no_lang_code', 'name', 'Ausvet (Australia)'),
(76632, 64605, 'en', 'name', 'Absenger Cancer Education Foundation'),
(76633, 64606, 'en', 'name', 'Chicago College of Oriental Medicine'),
(76634, 64607, 'en', 'name', 'Carter County Museum'),
(76635, 64608, 'en', 'name', 'Miller Orthopedic Specialist'),
(76636, 64609, 'sk', 'name', 'NÔrodný Endokrinologický a Diabetologický Ústav'),
(76637, 64610, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ – Κ.Ī„. Ī¦Ī¹Ī»Ī¹Ī±Ļ„ĻŽĪ½'),
(76638, 64610, 'en', 'name', 'General Hospital of Filiates'),
(76639, 64611, 'en', 'name', 'Charlotte Eye Ear Nose & Throat Associates'),
(76640, 64612, 'nl', 'name', 'Arbo Unie'),
(76641, 64613, 'no_lang_code', 'name', 'Solarno (United States)'),
(76642, 64614, 'en', 'name', 'Berlin Center for Epidemiology and Health Research'),
(76643, 64615, 'en', 'name', 'Baltic Institute of Advanced Technology'),
(76644, 64615, 'lt', 'name', 'Baltijos pažangių technologijų institutas'),
(76645, 64616, 'no_lang_code', 'name', 'Yes Technologies (United States)'),
(76646, 64617, 'en', 'name', 'Institute of Applied Economics and Health Research ApS'),
(76647, 64618, 'en', 'name', 'Arizona Science Center'),
(76648, 64619, 'nl', 'name', 'Kijvelanden'),
(76649, 64620, 'nl', 'name', 'IZZ Zorgverzekering'),
(76650, 64621, 'de', 'name', 'Niederƶsterreichischer Gesundheits- und Sozialfond'),
(76651, 64622, 'no_lang_code', 'name', 'Cory Laboratories'),
(76652, 64623, 'en', 'name', 'Tri-County Community Mental Health Center'),
(76653, 64624, 'en', 'name', 'Cardiovascular Institute of Michigan P.C'),
(76654, 64625, 'de', 'name', 'Kreiskrankenhaus Dormagen'),
(76655, 64626, 'de', 'name', 'Klinik Bad Oexen'),
(76656, 64627, 'en', 'name', 'Levin Institute'),
(76657, 64628, 'en', 'name', 'Nebraska Hematology-Oncology'),
(76658, 64629, 'el', 'name', 'Ελληνική Εταιρεία Ī„Ļ€Ī­ĻĻ„Ī±ĻƒĪ·Ļ‚'),
(76659, 64629, 'en', 'name', 'Hellenic Society of Hypertension'),
(76660, 64630, 'en', 'name', 'Amerind Museum'),
(76661, 64631, 'en', 'name', 'Andros Clinica Day Surgery'),
(76662, 64632, 'en', 'name', 'The Speech and Stuttering Institute'),
(76663, 64633, 'en', 'name', 'Society for Invertebrate Pathology'),
(76664, 64634, 'en', 'name', 'Utah AIDS Foundation'),
(76665, 64635, 'en', 'name', 'Yellowstone Forever'),
(76666, 64636, 'en', 'name', 'European Society for Blood and Marrow Transplantation'),
(76667, 64637, 'de', 'name', 'Institut für Lungenforschung'),
(76668, 64638, 'no_lang_code', 'name', 'Vanderbilt Health'),
(76669, 64639, 'no_lang_code', 'name', 'Focal Meditech (Netherlands)'),
(76670, 64640, 'en', 'name', 'Herzig Eye Institute'),
(76671, 64641, 'no_lang_code', 'name', 'Sign Media (United States)'),
(76672, 64642, 'en', 'name', 'Dermatology Society of South Africa'),
(76673, 64643, 'en', 'name', 'European Society for Organ Transplantation'),
(76674, 64643, 'it', 'name', 'SocietĆ  europea per il trapianto di organi'),
(76675, 64644, 'en', 'name', 'Cardiovascular and Interventional Radiological Society of Europe'),
(76676, 64645, 'de', 'name', 'Marienhospital Osnabrück'),
(76677, 64646, 'no_lang_code', 'name', 'Vabiotech (Vietnam)'),
(76678, 64647, 'bg', 'name', 'Š‘ŠŖŠ›Š“ŠŠ Š”ŠšŠ ŠŠ”ŠžŠ¦Š˜ŠŠ¦Š˜ŠÆ ЗА ŠŠ•Š’Š ŠžŠœŠ£Š”ŠšŠ£Š›ŠŠ˜ Š—ŠŠ‘ŠžŠ›ŠÆŠ’ŠŠŠ˜ŠÆ'),
(76679, 64647, 'en', 'name', 'Bulgarian Neuromuscular Diseases Association'),
(76680, 64648, 'en', 'name', 'Korea Pharmaceutical and Bio-Pharma Manufacturers Association'),
(76681, 64648, 'ko', 'name', 'ķ•œźµ­ģ œģ•½ė°”ģ“ģ˜¤ķ˜‘ķšŒ'),
(76682, 64649, 'no_lang_code', 'name', 'Sepragen Corporation (United States)'),
(76683, 64650, 'en', 'name', 'Adventist Heart Institute'),
(76684, 64651, 'en', 'name', 'June E. Nylen Cancer Center'),
(76685, 64652, 'no_lang_code', 'name', 'Holtec International (United States)'),
(76686, 64653, 'de', 'name', 'Stiftung Mandacaru'),
(76687, 64654, 'en', 'name', 'Marshall Health'),
(76688, 64655, 'de', 'name', 'Hauschka Stiftung'),
(76689, 64656, 'en', 'name', 'C.I. Trials'),
(76690, 64657, 'nl', 'name', 'Fietsersbond'),
(76691, 64658, 'en', 'name', 'Fatmawati Hospital'),
(76692, 64658, 'id', 'name', 'Rumah Sakit Umum Pusat Fatmawati'),
(76693, 64659, 'de', 'name', 'Helios Klinikum Berlin-Buch'),
(76694, 64659, 'en', 'name', 'Helios Hospital Berlin-Buch'),
(76695, 64660, 'en', 'name', 'Servy Institute for Reproductive Endocrinology'),
(76696, 64661, 'no_lang_code', 'name', 'Elixir Medical (United States)'),
(76697, 64662, 'en', 'name', 'Stormont Vail Health'),
(76698, 64663, 'no_lang_code', 'name', 'Alexion Pharma (Switzerland)'),
(76699, 64664, 'en', 'name', 'Tennessee Orthopaedic Clinics'),
(76700, 64665, 'de', 'name', 'Klinik für Herzchirurgie Karlsruhe'),
(76701, 64666, 'no_lang_code', 'name', 'NinePoint Medical (United States)'),
(76702, 64667, 'no_lang_code', 'name', 'MedSkin Solutions (Germany)'),
(76703, 64668, 'en', 'name', 'Northwest Medical Specialties'),
(76704, 64669, 'en', 'name', 'Ovation Fertility'),
(76705, 64670, 'en', 'name', 'Qualitouch-HC Foundation'),
(76706, 64671, 'en', 'name', 'Shandong Eye Hospital'),
(76707, 64672, 'en', 'name', 'National Gardening Association'),
(76708, 64673, 'en', 'name', 'Moreton Bay Seafood Industry Association'),
(76709, 64674, 'en', 'name', 'Adirondack Area Network'),
(76710, 64675, 'en', 'name', 'Roparun Foundation'),
(76711, 64675, 'nl', 'name', 'Stichting Roparun'),
(76712, 64676, 'en', 'name', 'The Lok Sin Tong Benevolent Society Kowloon'),
(76713, 64676, 'zh', 'name', 'ä¹é¾ęØ‚å–„å ‚'),
(76714, 64677, 'en', 'name', 'Ministry of Health and Social Welfare'),
(76715, 64678, 'en', 'name', 'Chagrin Highlands Health Center'),
(76716, 64679, 'no_lang_code', 'name', 'Omnicare Pharma (Germany)'),
(76717, 64680, 'en', 'name', 'St. Luke''s Hospital'),
(76718, 64681, 'en', 'name', 'Southeast Health District'),
(76719, 64682, 'en', 'name', 'Carolina Musculoskeletal Institute'),
(76720, 64683, 'en', 'name', 'San Diego Archaeological Center'),
(76721, 64684, 'en', 'name', 'Legacy Salmon Creek Medical Center'),
(76722, 64685, 'en', 'name', 'Early Childhood Initiative Foundation'),
(76723, 64686, 'no_lang_code', 'name', 'Biosignatures (United Kingdom)'),
(76724, 64687, 'no_lang_code', 'name', 'Alphamade (Berlin)'),
(76725, 64688, 'en', 'name', 'Asia Cornea Society'),
(76726, 64689, 'sv', 'name', 'Ryggkirurgiska Kliniken i StrƤngnƤs'),
(76727, 64690, 'no_lang_code', 'name', 'novacare (Germany)'),
(76728, 64691, 'en', 'name', 'California Public Interest Research Group'),
(76729, 64692, 'de', 'name', 'SƤchsische Krebsgesellschaft'),
(76730, 64693, 'en', 'name', 'Fortius Clinic'),
(76731, 64694, 'en', 'name', 'Joint Interoperability Test Command'),
(76732, 64695, 'en', 'name', 'Expertise Center Vocational Education'),
(76733, 64695, 'nl', 'name', 'Expertisecentrum Beroepsonderwijs'),
(76734, 64696, 'pt', 'name', 'ClĆ­nica e Instituto de Oftalmologia Ivo CorrĆŖa Meyer'),
(76735, 64697, 'en', 'name', 'Prairie Vascular Institute'),
(76736, 64698, 'en', 'name', 'Baptist Health Corbin'),
(76737, 64699, 'en', 'name', 'Kidney Disease Association of Thailand'),
(76738, 64700, 'en', 'name', 'Tropical Disease Foundation'),
(76739, 64701, 'en', 'name', 'Science Center of Pinellas'),
(76740, 64702, 'en', 'name', 'The Fifth People’s Hospital of Suzhou'),
(76741, 64702, 'zh', 'name', 'č‹å·žåø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(76742, 64703, 'en', 'name', 'Pennsylvania Allergy and Asthma Association'),
(76743, 64704, 'en', 'name', 'OASIS Clinic'),
(76744, 64705, 'en', 'name', 'North Suffolk Mental Health Association'),
(76745, 64706, 'nl', 'name', 'Willem Meindert de Hoop Stichting'),
(76746, 64707, 'en', 'name', 'Canadian Medical Protective Association'),
(76747, 64707, 'fr', 'name', 'Association Canadienne de Protection MƩdicale'),
(76748, 64708, 'en', 'name', 'University hospital Medical Information Network'),
(76749, 64708, 'ja', 'name', 'å¤§å­¦ē—…é™¢åŒ»ē™‚ęƒ…å ±ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(76750, 64709, 'de', 'name', 'Lahntalklinik'),
(76751, 64710, 'no_lang_code', 'name', 'Biocinese (Brazil)'),
(76752, 64710, 'pt', 'name', 'Centro de Estudos BiofarmacĆŖuticos'),
(76753, 64711, 'en', 'name', 'Utah Society for Environmental Education'),
(76754, 64712, 'nl', 'name', 'Erfelijke Stofwisselingsziekten Nederland'),
(76755, 64713, 'et', 'name', 'Tervisetehnoloogiate Arenduskeskus'),
(76756, 64713, 'no_lang_code', 'name', 'Competence Centre on Health Technologies (Estonia)'),
(76757, 64714, 'en', 'name', 'Skin of Color Society'),
(76758, 64715, 'en', 'name', 'Berkeley Art Museum and Pacific Film Archive'),
(76759, 64716, 'en', 'name', 'Southeastern Health'),
(76760, 64717, 'en', 'name', 'Tula Regional Clinical Hospital'),
(76761, 64717, 'ru', 'name', 'Š¢ŃƒŠ»ŃŒŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(76762, 64718, 'no_lang_code', 'name', 'V&R Energy Systems Research (United States)'),
(76763, 64719, 'de', 'name', 'Wirbelsäulen-Institut München'),
(76764, 64720, 'en', 'name', 'University Health Conway'),
(76765, 64721, 'en', 'name', 'University MRI & Diagnostic Imaging Centers'),
(76766, 64722, 'en', 'name', 'University of Bojnord'),
(76767, 64722, 'fa', 'name', 'دانؓگاه ŲØŲ¬Ł†ŁˆŲ±ŲÆ'),
(76768, 64723, 'en', 'name', 'The SHM Foundation'),
(76769, 64724, 'no_lang_code', 'name', 'Enable Biosciences (United States)'),
(76770, 64725, 'en', 'name', 'TobaccoFree Research Institute'),
(76771, 64726, 'en', 'name', 'CueThink'),
(76772, 64727, 'no_lang_code', 'name', 'Marigot (Ireland)'),
(76773, 64728, 'en', 'name', 'Michigan Reproductive Medicine'),
(76774, 64729, 'en', 'name', 'Central Australian Remote Health Development Services'),
(76775, 64730, 'en', 'name', 'National Nutrition Agency'),
(76776, 64731, 'no_lang_code', 'name', 'Suyash Hospital'),
(76777, 64732, 'en', 'name', 'Physical-Chemical Institute O. Bogatsky'),
(76778, 64732, 'uk', 'name', 'Фізико-хімічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ім. Šž.Š’. Š‘Š¾Š³Š°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ ŠŠŠ України'),
(76779, 64733, 'de', 'name', 'Helios Vogtland Klinikum Plauen'),
(76780, 64734, 'en', 'name', 'Kanagawa Prefecture Medical Association'),
(76781, 64734, 'ja', 'name', 'ē„žå„ˆå·ēœŒåŒ»åø«ä¼š'),
(76782, 64735, 'en', 'name', 'Regional State Budget Health Care Institution "Regional Clinical Hospital"'),
(76783, 64735, 'ru', 'name', 'ŠšŃ€Š°ŠµŠ²Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Ā«ŠšŃ€Š°ŠµŠ²Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°Ā»'),
(76784, 64736, 'en', 'name', 'Legacy Meridian Park Medical Center'),
(76785, 64737, 'en', 'name', 'East Florida Eye Institute'),
(76786, 64738, 'en', 'name', 'Maricopa County Department of Public Health'),
(76787, 64739, 'en', 'name', 'Berkshire Health Systems'),
(76788, 64740, 'nl', 'name', 'Zorggroep Solis'),
(76789, 64741, 'en', 'name', 'Ohio Dermatological Association'),
(76790, 64742, 'en', 'name', 'National Association of Home Builders'),
(76791, 64743, 'en', 'name', 'Boise Kidney & Hypertension Institute'),
(76792, 64744, 'no_lang_code', 'name', 'Genoverde Biosciences (United States)'),
(76793, 64745, 'en', 'name', 'Providence Willamette Falls Medical Center'),
(76794, 64746, 'en', 'name', 'Society for Organizational Learning'),
(76795, 64747, 'en', 'name', 'Texas Cardiac Arrhythmia'),
(76796, 64748, 'de', 'name', 'Klinik und Poliklinik für Psychotherapie und Psychosomatik'),
(76797, 64749, 'en', 'name', 'Radiation Oncology Centers of Nevada'),
(76798, 64750, 'es', 'name', 'Instituto Privado de Hematología e Investigación Clínica'),
(76799, 64751, 'en', 'name', 'Chinese Gerontology Society'),
(76800, 64751, 'zh', 'name', 'äø­å›½č€å¹“å­¦å’Œč€å¹“åŒ»å­¦å­¦ä¼š'),
(76801, 64752, 'nl', 'name', 'Heliomare'),
(76802, 64753, 'en', 'name', 'iResearch Atlanta'),
(76803, 64754, 'el', 'name', 'Iakentro'),
(76804, 64755, 'en', 'name', 'Saint Mary''s School'),
(76805, 64756, 'no_lang_code', 'name', 'Frisian Flag (Indonesia)'),
(76806, 64757, 'en', 'name', 'Center for Snow and Avalanche Studies'),
(76807, 64758, 'no_lang_code', 'name', 'Hanzhong Central Hospital'),
(76808, 64758, 'zh', 'name', 'ę±‰äø­åø‚äø­åæƒåŒ»é™¢'),
(76809, 64759, 'no_lang_code', 'name', 'CSL (United Kingdom)'),
(76810, 64760, 'no_lang_code', 'name', 'PDX Pharmaceuticals (United States)'),
(76811, 64761, 'en', 'name', 'Paediatric Integrated Cancer Service'),
(76812, 64762, 'no_lang_code', 'name', 'Biebertaler Blutegelzucht (Germany)'),
(76813, 64763, 'en', 'name', 'France Alzheimer''s and related diseases'),
(76814, 64763, 'fr', 'name', 'France Alzheimer et maladies apparentƩes'),
(76815, 64764, 'de', 'name', 'Das Onkologische und Palliativmedizinische Netzwerk Landshut'),
(76816, 64765, 'en', 'name', 'Kangdong Sacred Heart Hospital'),
(76817, 64766, 'en', 'name', 'Kennedy Clinic Hospital'),
(76818, 64767, 'nl', 'name', 'Stichting Toegepast Wetenschappelijk Instituut voor Neuromodulatie'),
(76819, 64768, 'no_lang_code', 'name', 'N-Gene (United States)'),
(76820, 64769, 'en', 'name', 'Colorado Community College System'),
(76821, 64770, 'nl', 'name', 'Vereniging van Groothandelaren in Bloemkwekerijprodukten'),
(76822, 64771, 'en', 'name', 'Saint Alphonsus Medical Center'),
(76823, 64772, 'en', 'name', 'Atos Medical'),
(76824, 64773, 'en', 'name', 'Modoc County Office of Education'),
(76825, 64774, 'en', 'name', 'European Inter-University Association of Society, Science and Technology'),
(76826, 64775, 'pt', 'name', 'Hospital SĆ£o Domingos'),
(76827, 64776, 'en', 'name', 'Saratov City Clinical Hospital ā„– 2 named. IN AND. Razumovsky'),
(76828, 64777, 'fr', 'name', 'Fondation FranƧaise pour la Recherche sur l''Epilepsie'),
(76829, 64778, 'no_lang_code', 'name', 'Certmedica (Germany)'),
(76830, 64779, 'es', 'name', 'Hospital de Guadarrama'),
(76831, 64780, 'en', 'name', 'Orchid'),
(76832, 64781, 'de', 'name', 'Vinzenzkrankenhaus Hannover'),
(76833, 64782, 'en', 'name', 'European Optical Society'),
(76834, 64783, 'no_lang_code', 'name', 'Laccure (Sweden)'),
(76835, 64784, 'en', 'name', 'Regeneris Medical'),
(76836, 64785, 'nl', 'name', 'EspƩrance, Stichting Esperance'),
(76837, 64786, 'en', 'name', 'eSwiss Medical and Surgical Center'),
(76838, 64787, 'de', 'name', 'Leppermühle'),
(76839, 64788, 'en', 'name', 'AI Access Foundation'),
(76840, 64789, 'no_lang_code', 'name', 'NutriLeads (Netherlands)'),
(76841, 64790, 'nl', 'name', 'Werk-Goed Bedrijfskleding alle rechten voorbehouden'),
(76842, 64790, 'no_lang_code', 'name', 'Werkgoed (Netherlands)'),
(76843, 64791, 'en', 'name', 'Centre of Excellence for Health, Immunity and Infections'),
(76844, 64792, 'no_lang_code', 'name', 'Napp Pharmaceuticals (United Kingdom)'),
(76845, 64793, 'pt', 'name', 'Sindicato Nacional dos Professores Licenciados pelos PolitƩcnicos e Universidades'),
(76846, 64794, 'en', 'name', 'Malabam Health Board Aboriginal Corporation'),
(76847, 64795, 'en', 'name', 'IWK Foundation'),
(76848, 64796, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ų±ŁŠŲ§Ų¶ للصحة Ų§Ł„Ų§Ł†Ų¬Ų§ŲØŁŠŲ©'),
(76849, 64796, 'en', 'name', 'Riyadh Fertility and Reproductive Health Center'),
(76850, 64797, 'no_lang_code', 'name', 'QPS (India)'),
(76851, 64798, 'en', 'name', 'Asan Foundation'),
(76852, 64798, 'ko', 'name', 'ģ•„ģ‚°ģ‚¬ķšŒė³µģ§€ģž¬ė‹Ø'),
(76853, 64799, 'nl', 'name', 'STECR'),
(76854, 64800, 'ar', 'name', 'Ų¬Ł…Ų¹ŁŠŲ© بيت لحم Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„ŲŖŲ£Ł‡ŁŠŁ„'),
(76855, 64800, 'en', 'name', 'Bethlehem Arab Society for Rehabilitation'),
(76856, 64801, 'no_lang_code', 'name', 'Medi (Germany)'),
(76857, 64802, 'no_lang_code', 'name', 'Recuperat-ion (Spain)'),
(76858, 64803, 'en', 'name', 'Western Orthopedics Foundation'),
(76859, 64804, 'no_lang_code', 'name', 'Dansk Sundhedssikring'),
(76860, 64805, 'no_lang_code', 'name', 'SCHWIND eye-tech-solutions (Germany)'),
(76861, 64806, 'en', 'name', 'Oregon Urology Institute'),
(76862, 64807, 'hu', 'name', 'Kaali Intezet'),
(76863, 64807, 'no_lang_code', 'name', 'Kaali Institute'),
(76864, 64808, 'no_lang_code', 'name', 'Dr. Ausbüttel (Germany)'),
(76865, 64809, 'no_lang_code', 'name', 'Institute for Quality Indicators (Sweden)'),
(76866, 64809, 'sv', 'name', 'Institutet fƶr kvalitetsindikatorer'),
(76867, 64810, 'en', 'name', 'Ruane Medical'),
(76868, 64811, 'en', 'name', 'Hunan Institute of Mental Health'),
(76869, 64811, 'zh', 'name', 'ę¹–å—ēœåæƒē†å«ē”Ÿē ”ē©¶ę‰€'),
(76870, 64812, 'en', 'name', 'Florida Cancer Care'),
(76871, 64813, 'fr', 'name', 'Epicura'),
(76872, 64814, 'en', 'name', 'Children''s Hospital of Chongqing Medical University'),
(76873, 64815, 'no_lang_code', 'name', 'Lipogen (Israel)'),
(76874, 64816, 'no_lang_code', 'name', 'Actigen (Denmark)'),
(76875, 64817, 'en', 'name', 'Southeast Retina Center'),
(76876, 64818, 'en', 'name', 'The Heartburn Foundation'),
(76877, 64819, 'en', 'name', 'Salvadori Center'),
(76878, 64820, 'fr', 'name', 'Association pour l''Information et la Recherche sur les maladies rƩnales GƩnƩtiques'),
(76879, 64821, 'en', 'name', 'Miami Serpentarium Laboratories'),
(76880, 64822, 'en', 'name', 'Mile Bluff Medical Center'),
(76881, 64823, 'de', 'name', 'Evangelische Lungenklinik Berlin'),
(76882, 64824, 'en', 'name', 'Star Spine & Sport'),
(76883, 64825, 'en', 'name', 'Republican Clinical Hospital named after G.G. Kuvatova'),
(76884, 64825, 'ru', 'name', 'Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–. G.G. ŠšŃƒŠ²Š°Ń‚Š¾Š²'),
(76885, 64826, 'no_lang_code', 'name', 'Laila Impex (India)'),
(76886, 64827, 'de', 'name', 'Zentrum für Psychiatrie Südwürttemberg'),
(76887, 64828, 'en', 'name', 'MISH Hospital and Clinics'),
(76888, 64829, 'en', 'name', 'Dutch Society for Obstetrics and Gynecology'),
(76889, 64829, 'nl', 'name', 'Nederlandse Vereniging voor Obstetrie en Gynaecologie'),
(76890, 64830, 'no_lang_code', 'name', 'BioClin (Netherlands)'),
(76891, 64831, 'fr', 'name', 'Centre Hospitalo-Universitaire Bab El Oued'),
(76892, 64832, 'en', 'name', 'Belgian Hematological Society'),
(76893, 64833, 'no_lang_code', 'name', 'Credentis (Switzerland)'),
(76894, 64834, 'en', 'name', 'St John of God Murdoch Hospital'),
(76895, 64835, 'en', 'name', 'Bayit Balev Rehabilitation Hospital'),
(76896, 64836, 'en', 'name', 'Nebraska Cancer Research Center'),
(76897, 64837, 'en', 'name', 'Shanxi Institute of Endemic Diseases'),
(76898, 64838, 'de', 'name', 'Zentrum für Pathologie und Zytodiagnostik'),
(76899, 64839, 'en', 'name', 'National Academy of Public Administration'),
(76900, 64840, 'en', 'name', 'St. Petersburg School of Religion and Philosophy'),
(76901, 64840, 'ru', 'name', 'Центр Š½Š°ŃƒŃ‡Š½Š¾-ŠæŃ€Š¾ŃŠ²ŠµŃ‚ŠøŃ‚ŠµŠ»ŃŒŃŠŗŠøŃ… Šø религиозно-философских программ'),
(76902, 64841, 'de', 'name', 'Spitalzentrum Centre hospitalier Biel- Bienne'),
(76903, 64842, 'nl', 'name', 'VeiligheidNL'),
(76904, 64843, 'en', 'name', 'Regional Clinical Hospital named after II Mechnikov'),
(76905, 64844, 'de', 'name', 'Karl Landsteiner Gesellschaft'),
(76906, 64844, 'en', 'name', 'Karl Landsteiner Society'),
(76907, 64845, 'no_lang_code', 'name', 'Nutricia (Germany)'),
(76908, 64846, 'no_lang_code', 'name', 'Ratrix Technologies (United States)'),
(76909, 64847, 'en', 'name', 'Women''s Resource Center'),
(76910, 64848, 'en', 'name', 'Workit Health'),
(76911, 64849, 'es', 'name', 'Fundación Teknon'),
(76912, 64850, 'no_lang_code', 'name', 'Heat Transfer Research & Development (United States)'),
(76913, 64851, 'en', 'name', 'University General Surgeons'),
(76914, 64852, 'en', 'name', 'HƓtel-Dieu Grace Healthcare'),
(76915, 64853, 'en', 'name', 'International Society for Heart Research'),
(76916, 64854, 'en', 'name', 'Counterpart'),
(76917, 64855, 'no_lang_code', 'name', 'National Power (United Kingdom)'),
(76918, 64856, 'en', 'name', 'Chios Mastiha Growers Association'),
(76919, 64857, 'en', 'name', 'Nebraska State College System'),
(76920, 64858, 'de', 'name', 'Asklepios OrthopƤdische Klinik Lindenlohe'),
(76921, 64859, 'pt', 'name', 'Centro Hospitalar do Baixo Vouga'),
(76922, 64860, 'en', 'name', 'Ben''s Dream'),
(76923, 64861, 'en', 'name', 'Recfishwest'),
(76924, 64862, 'en', 'name', 'University School of Nashville'),
(76925, 64863, 'en', 'name', 'Institute of Vaccine and Medical Biologicals'),
(76926, 64864, 'en', 'name', 'The Institute of Aesthetic Surgery'),
(76927, 64865, 'en', 'name', 'Academic Medical Research Institute'),
(76928, 64866, 'de', 'name', 'St. Josefskrankenhaus Freiburg'),
(76929, 64867, 'no_lang_code', 'name', 'Boehringer Ingelheim (Argentina)'),
(76930, 64868, 'en', 'name', 'Aria - Jefferson Health'),
(76931, 64869, 'en', 'name', 'Organizations Concerned About Rural Education'),
(76932, 64870, 'en', 'name', 'Valor Health'),
(76933, 64871, 'da', 'name', 'Ensomme Gamles Vaern'),
(76934, 64872, 'en', 'name', 'Dutch Hospital Association'),
(76935, 64873, 'en', 'name', 'Southern Oregon Public Television'),
(76936, 64874, 'fr', 'name', 'Association Nationale d’Aide aux personnes HandicapĆ©es'),
(76937, 64875, 'no_lang_code', 'name', 'Lophius Biosciences (Germany)'),
(76938, 64876, 'en', 'name', 'University Hospital Medical Center Bezanijska kosa'),
(76939, 64877, 'en', 'name', 'Clinical Research Center Kiel'),
(76940, 64878, 'de', 'name', 'Stiftung Leben mit Krebs'),
(76941, 64879, 'en', 'name', 'Wyoming Outdoor Council'),
(76942, 64880, 'en', 'name', 'National Consumer Law Center'),
(76943, 64881, 'en', 'name', 'Ohio Physical Therapy Association'),
(76944, 64882, 'en', 'name', 'American University of Beirut New York Office'),
(76945, 64883, 'en', 'name', 'Baltimore Symphony Orchestra'),
(76946, 64884, 'no_lang_code', 'name', 'MetaX - Institut für Diätetik (Germany)'),
(76947, 64885, 'ja', 'name', 'ćƒŠćƒŽć‚­ćƒ£ćƒŖć‚¢ę Ŗå¼ä¼šē¤¾'),
(76948, 64885, 'no_lang_code', 'name', 'NanoCarrier (Japan)'),
(76949, 64886, 'no_lang_code', 'name', 'AquaMatrix International (United States)'),
(76950, 64887, 'tr', 'name', 'Ɩzel Ankara Umut Hastanesi'),
(76951, 64888, 'en', 'name', 'Androgen Excess and PCOS Society'),
(76952, 64889, 'en', 'name', 'Ocean Road Cancer Institute'),
(76953, 64890, 'en', 'name', 'Stiles Eyecare Excellence'),
(76954, 64891, 'en', 'name', 'National Institute of Brain and Rehabilitation Sciences'),
(76955, 64892, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Spain)'),
(76956, 64893, 'no_lang_code', 'name', 'Tƶpfer (Germany)'),
(76957, 64894, 'de', 'name', 'An-Institut für Qualitätssicherung in der operativen Medizin'),
(76958, 64895, 'en', 'name', 'Massachusetts Health & Hospital Association'),
(76959, 64896, 'en', 'name', 'First Dayton CyberKnife'),
(76960, 64897, 'en', 'name', 'Associates in Women’s Health'),
(76961, 64898, 'en', 'name', 'CHRISTUS St. Frances Cabrini Hospital'),
(76962, 64899, 'en', 'name', 'Alesco Concepts'),
(76963, 64900, 'en', 'name', 'Nevin Scrimshaw International Nutrition Foundation'),
(76964, 64901, 'en', 'name', 'The Neurological Institute'),
(76965, 64902, 'en', 'name', 'Clinical Hospital No 122 named after. L.G.Sokolova'),
(76966, 64903, 'en', 'name', 'Kieve-Wavus Education'),
(76967, 64904, 'en', 'name', 'Jesse’s Journey – The Foundation for Gene and Cell Therapy'),
(76968, 64905, 'fr', 'name', 'Association FranƧaise pour la Recherche Thermale'),
(76969, 64906, 'en', 'name', 'Finnish Research Foundation for Orthopaedics and Traumatology'),
(76970, 64906, 'fi', 'name', 'Ortopedian ja traumatologian tutkimussƤƤtiƶ'),
(76971, 64907, 'en', 'name', 'Against Abuse'),
(76972, 64908, 'en', 'name', 'Carolina Arthritis Associates'),
(76973, 64909, 'en', 'name', 'International Spine, Pain & Performance'),
(76974, 64910, 'de', 'name', 'Energieinstitut Vorarlberg'),
(76975, 64911, 'en', 'name', 'American Orthotic and Prosthetic Association'),
(76976, 64912, 'no_lang_code', 'name', 'Essentium Materials (United States)'),
(76977, 64913, 'en', 'name', 'Institute for Urban Indigenous Health'),
(76978, 64914, 'en', 'name', 'Kaiser Permanente San Jose Medical Center'),
(76979, 64915, 'en', 'name', 'Central Texas Spine Institute'),
(76980, 64916, 'de', 'name', 'Rehaklinik Zihlschlacht'),
(76981, 64917, 'en', 'name', 'Arthritis Northwest'),
(76982, 64918, 'en', 'name', 'National Association of Counties'),
(76983, 64919, 'en', 'name', 'Saint Alphonsus Medical Center'),
(76984, 64920, 'en', 'name', 'C Care Orthopedics'),
(76985, 64921, 'en', 'name', 'Institute of Kidney Lifescience Technologies'),
(76986, 64922, 'en', 'name', 'Minnesota Oncology'),
(76987, 64923, 'en', 'name', 'Linear Clinical Research'),
(76988, 64924, 'en', 'name', 'Thrombolysis in Myocardial Infarction Study Group'),
(76989, 64925, 'no_lang_code', 'name', 'Integrative Health Technologies (United States)'),
(76990, 64926, 'en', 'name', 'Association of American Cancer Institutes'),
(76991, 64927, 'no_lang_code', 'name', 'Chiasma (United States)'),
(76992, 64928, 'en', 'name', 'Alzheimer Society London Middlesex'),
(76993, 64929, 'de', 'name', 'Deutsches Zentrum für Musiktherapieforschung'),
(76994, 64930, 'es', 'name', 'Sociedad EspaƱola de Patologƭa Digestiva'),
(76995, 64931, 'no_lang_code', 'name', 'Physeon (Switzerland)'),
(76996, 64932, 'en', 'name', 'Great Lakes Clinical Trials'),
(76997, 64933, 'en', 'name', 'Kaiser Permanente Vacaville Medical Center'),
(76998, 64934, 'de', 'name', 'Ɩsterreichische Gesellschaft für AnƤsthesiologie, Reanimation und Intensivmedizin'),
(76999, 64935, 'no_lang_code', 'name', 'Shenzhen Hanke Bioengineering (China)'),
(77000, 64936, 'en', 'name', 'South Bronx Overall Economic Development'),
(77001, 64937, 'es', 'name', 'Innpulsa'),
(77002, 64938, 'es', 'name', 'Nueva Opción'),
(77003, 64939, 'en', 'name', 'Swiss Ankylosing Spondylitis Association'),
(77004, 64940, 'no_lang_code', 'name', 'Great Minds in STEM (United States)'),
(77005, 64941, 'en', 'name', 'Nikiforov Russian Center of Emergency and Radiation Medicine'),
(77006, 64941, 'ru', 'name', 'ŠŠøŠŗŠøŃ„Š¾Ń€Š¾Š² Российский центр ŃŠŗŃŃ‚Ń€ŠµŠ½Š½Š¾Š¹ Šø раГиационной меГицины'),
(77007, 64942, 'en', 'name', 'Institute for Atherosclerosis Research'),
(77008, 64943, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за изслеГване Šø развитие на храните'),
(77009, 64943, 'en', 'name', 'Food Research and Development Institute'),
(77010, 64944, 'en', 'name', 'Northwest Oklahoma Osteopathic Foundation'),
(77011, 64945, 'no_lang_code', 'name', 'Picosense (United States)'),
(77012, 64946, 'ro', 'name', 'FundaÅ£ia pentru Formare Profesională şi ƎnvăţămĆ¢nt Preuniversitar - Viitor'),
(77013, 64947, 'no_lang_code', 'name', 'Servier (Germany)'),
(77014, 64948, 'en', 'name', 'Prader Willi Syndrome Association'),
(77015, 64949, 'de', 'name', 'Medprevent Ottobrunn'),
(77016, 64950, 'en', 'name', 'Williams Plastic Surgery Specialists'),
(77017, 64951, 'de', 'name', 'Technologiestiftung Berlin, Technologiestiftung Innovationszentrum Berlin'),
(77018, 64952, 'fr', 'name', 'Association SahƩlienne de Recherche AppliquƩe pour le DƩveloppement Durable'),
(77019, 64953, 'en', 'name', 'Mitsukoshi Health and Welfare Foundation'),
(77020, 64953, 'ja', 'name', 'č²”å›£ę³•äŗŗäø‰č¶ŠåŽšē”Ÿäŗ‹ę„­å›£'),
(77021, 64954, 'en', 'name', 'Infectious Diseases and the Research Institute'),
(77022, 64955, 'en', 'name', 'NHS Fife'),
(77023, 64956, 'en', 'name', 'Information Systems Audit and Control Association'),
(77024, 64957, 'en', 'name', 'The Hospital of Central Connecticut'),
(77025, 64958, 'en', 'name', 'Retina Institute'),
(77026, 64959, 'en', 'name', 'Save by Seva Foundation'),
(77027, 64959, 'nl', 'name', 'Stichting Save by Seva'),
(77028, 64960, 'en', 'name', 'Xiamen Maternal and Child Health Hospital'),
(77029, 64960, 'zh', 'name', 'åŽ¦é—Øå¦‡å¹¼äæå„é™¢'),
(77030, 64961, 'en', 'name', 'Nutraveris'),
(77031, 64962, 'en', 'name', 'Yulin Orthopedics Hospital of Chinese and Western Medicine'),
(77032, 64962, 'zh', 'name', 'ēŽ‰ęž—åø‚äø­č„æåŒ»ē»“åˆéŖØē§‘åŒ»é™¢ę˜Æ'),
(77033, 64963, 'en', 'name', 'Kaiser Permanente Tysons Corner Medical Center'),
(77034, 64964, 'en', 'name', 'Interlochen Center for the Arts'),
(77035, 64965, 'no_lang_code', 'name', 'Baoji City Central Hospital'),
(77036, 64965, 'zh', 'name', 'å®éø”åø‚äø­åæƒåŒ»é™¢'),
(77037, 64966, 'de', 'name', 'Tauern Hospital Zell am See, Tauernkrankenhaus Zell am See'),
(77038, 64967, 'no_lang_code', 'name', 'Curacyte (Germany)'),
(77039, 64968, 'no_lang_code', 'name', 'Isarna Therapeutics (Germany)'),
(77040, 64969, 'no_lang_code', 'name', 'Lundbeck (Italy)'),
(77041, 64970, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪŸĻƒĻ„ĪµĪæĻ€ĻŒĻĻ‰ĻƒĪ·Ļ‚'),
(77042, 64970, 'en', 'name', 'Hellenic Osteoporosis Foundation'),
(77043, 64971, 'bg', 'name', 'ŠœŠ‘ŠŠ› "ЄаГжи Š”ŠøŠ¼ŠøŃ‚ŃŠŃ€"'),
(77044, 64971, 'en', 'name', 'MHAT ā€œHadji Dimitarā€'),
(77045, 64971, 'no_lang_code', 'name', '"Hadji Dimitar" Hospital'),
(77046, 64972, 'de', 'name', 'Institut für Versorgungsforschung in der Onkologie'),
(77047, 64973, 'no_lang_code', 'name', 'Brf (Brazil)'),
(77048, 64974, 'es', 'name', 'Los Comuneros Hospital Universitario de Bucaramanga'),
(77049, 64975, 'en', 'name', 'Southern Ohio Medical Center'),
(77050, 64976, 'nl', 'name', 'Stichting Roomsch Catholyk Oude Armen kantoor'),
(77051, 64977, 'en', 'name', 'Trung Vuong University'),
(77052, 64977, 'vi', 'name', 'ĐẔi hį»c Trʰng Vʰʔng'),
(77053, 64978, 'en', 'name', 'Samara Regional Clinical Oncology Center'),
(77054, 64978, 'ru', 'name', 'Дамарский областной клинический онкологический Гиспансер'),
(77055, 64979, 'el', 'name', '404 Ī“ĪµĪ½Ī¹ĪŗĻŒ Ī£Ļ„ĻĪ±Ļ„Ī¹Ļ‰Ļ„Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ'),
(77056, 64979, 'en', 'name', '404 General Military Hospital'),
(77057, 64980, 'en', 'name', 'Don Harrington Discovery Center'),
(77058, 64981, 'de', 'name', 'Capio Klinik im Park'),
(77059, 64981, 'en', 'name', 'Capio Clinic in the Park'),
(77060, 64982, 'fr', 'name', 'Association des Familles de Traumatisés Crâniens d''Alsace'),
(77061, 64983, 'sl', 'name', 'Očesna Klinika UKC Ljubljana'),
(77062, 64984, 'de', 'name', 'Landesuntersuchungsanstalt Sachsen'),
(77063, 64985, 'it', 'name', 'Centro Interuniversitario di Ricerca Per lo Sviluppo sostenibile'),
(77064, 64986, 'en', 'name', 'Leonardis Foundation'),
(77065, 64987, 'en', 'name', 'Arts OutWest'),
(77066, 64988, 'en', 'name', 'Canadian Foundation for Dental Hygiene Research and Education'),
(77067, 64989, 'no_lang_code', 'name', 'Winston Pharmaceuticals (United States)'),
(77068, 64990, 'no_lang_code', 'name', 'TechSolve (United States)'),
(77069, 64991, 'en', 'name', 'Juvenile Protective Association'),
(77070, 64992, 'no_lang_code', 'name', 'Shell (Germany)'),
(77071, 64993, 'de', 'name', 'Krankenhaus Jerusalem'),
(77072, 64994, 'no_lang_code', 'name', 'Instant Advice (Sweden)'),
(77073, 64995, 'en', 'name', 'IHA Hematology Oncology Consultants'),
(77074, 64996, 'de', 'name', 'Hamburger Institut für Therapieforschung'),
(77075, 64996, 'en', 'name', 'Hamburg Institute for Therapy Research'),
(77076, 64997, 'en', 'name', 'Manhattan Psychiatric Center'),
(77077, 64998, 'no_lang_code', 'name', 'Kedrion (Italy)'),
(77078, 64999, 'de', 'name', 'Schweizerische Gesellschaft für Pulmonale Hypertonie'),
(77079, 65000, 'no_lang_code', 'name', 'Novintethical Pharma (Switzerland)'),
(77080, 65001, 'no_lang_code', 'name', '3-Sci (United Kingdom)'),
(77081, 65002, 'en', 'name', 'Research Institute "Vector"'),
(77082, 65002, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "Вектор"'),
(77083, 65003, 'en', 'name', 'Future Human Resources Research Institute'),
(77084, 65003, 'ko', 'name', 'ėÆøėž˜ ģøģ  ģžģ› ģ—°źµ¬ģ†Œ'),
(77085, 65004, 'en', 'name', 'Department of Public Service'),
(77086, 65005, 'en', 'name', 'Surya Hospitals'),
(77087, 65005, 'hi', 'name', 'ą¤øą„‚ą¤°ą„ą¤Æą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²ą„ą¤ø'),
(77088, 65006, 'en', 'name', 'Intellectual Property Institute'),
(77089, 65007, 'en', 'name', 'Federal Forestry Agency of Russia'),
(77090, 65007, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń Š»ŠµŃŠ½Š°Ń служба России'),
(77091, 65008, 'en', 'name', 'International Olive Council'),
(77092, 65008, 'es', 'name', 'Consejo OleĆ­cola Internacional'),
(77093, 65009, 'no_lang_code', 'name', 'NiCADa Research & Development (China)'),
(77094, 65010, 'en', 'name', 'Wuxi Municipal Product Quality Supervision and Inspection Institute'),
(77095, 65010, 'zh', 'name', 'ę— é””åø‚äŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒé™¢'),
(77096, 65011, 'en', 'name', 'Missouri Department of Public Safety'),
(77097, 65012, 'no_lang_code', 'name', 'Azis Mining Service (Poland)'),
(77098, 65013, 'el', 'name', 'Ī Ī±Ļ„ĻĪ¹Ī±ĻĻ‡Ī¹ĪŗĻŒĪ½ ΙΓρυμα Ī Ī±Ļ„ĪµĻĪ¹ĪŗĻŽĪ½ ĪœĪµĪ»ĪµĻ„ĻŽĪ½'),
(77099, 65013, 'en', 'name', 'Patriarchal Institute of Patristic Studies'),
(77100, 65014, 'en', 'name', 'Songdo Hospital'),
(77101, 65014, 'ko', 'name', 'ģ„œģšøģ†”ė„ė³‘ģ›'),
(77102, 65015, 'no_lang_code', 'name', 'First Design and Research Institute MI China (China)'),
(77103, 65015, 'zh', 'name', '中国第一设讔研究院'),
(77104, 65016, 'no_lang_code', 'name', 'Knowles (United States)'),
(77105, 65017, 'no_lang_code', 'name', 'AdvanPro (China)'),
(77106, 65018, 'en', 'name', 'Association of Independent Museums'),
(77107, 65019, 'en', 'name', 'Aerospace Research Institute'),
(77108, 65019, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł‡ŁˆŲ§ŁŲ¶Ų§ā€Ž'),
(77109, 65020, 'no_lang_code', 'name', 'Fripp Design (United Kingdom)'),
(77110, 65021, 'en', 'name', 'Rio Grande Council of Governments'),
(77111, 65022, 'no_lang_code', 'name', 'Chain Biotechnology (United Kingdom)'),
(77112, 65023, 'en', 'name', 'Directorate of Health'),
(77113, 65024, 'no_lang_code', 'name', 'Giprotyumenneftegaz (Russia)'),
(77114, 65024, 'ru', 'name', 'Š“ŠøŠæŃ€Š¾Ń‚ŃŽŠ¼ŠµŠ½Š½ŠµŃ„Ń‚ŠµŠ³Š°Š·'),
(77115, 65025, 'en', 'name', 'Beijing Institute of Nutritional Sources'),
(77116, 65025, 'zh', 'name', 'åŒ—äŗ¬åø‚č„å…»ęŗē ”ē©¶ę‰€'),
(77117, 65026, 'en', 'name', 'Guangdong Machinery Research Institute'),
(77118, 65026, 'zh', 'name', 'å¹æäøœēœęœŗę¢°ē ”ē©¶ę‰€'),
(77119, 65027, 'en', 'name', 'Boston Landmarks Commission'),
(77120, 65028, 'en', 'name', 'Balshaw’s Church of England High School'),
(77121, 65029, 'no_lang_code', 'name', 'Ningbo Transportation Planning and Design Institute (China)'),
(77122, 65030, 'en', 'name', 'Institute for Human Development'),
(77123, 65031, 'en', 'name', 'Jiujiang Vocational University'),
(77124, 65031, 'zh', 'name', 'ä¹ę±ŸčŒäøšå¤§å­¦'),
(77125, 65032, 'en', 'name', 'Suncheon Jeil College'),
(77126, 65032, 'ko', 'name', 'ģˆœģ²œģ œģ¼ėŒ€ķ•™źµ'),
(77127, 65033, 'en', 'name', 'Shanxi Provincial Traffic Planning Survey and Design Institute'),
(77128, 65033, 'zh', 'name', 'å±±č„æēœäŗ¤é€šč§„åˆ’å‹˜åÆŸč®¾č®”é™¢'),
(77129, 65034, 'no_lang_code', 'name', 'Socotec (United Kingdom)'),
(77130, 65035, 'en', 'name', 'Research Institute Orion'),
(77131, 65036, 'el', 'name', 'Ο ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ Ανάπτυξης Σητείας'),
(77132, 65036, 'en', 'name', 'The Sitia Development Organisation'),
(77133, 65037, 'en', 'name', 'The Korean Social and Personality Psychological Association'),
(77134, 65037, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ ė° ģøģ„± 심리 ķ•™ķšŒ'),
(77135, 65038, 'en', 'name', 'Phoenix Bioinformatics'),
(77136, 65039, 'no_lang_code', 'name', 'Sibtsvetmetniiproekt'),
(77137, 65039, 'ru', 'name', 'Š”Š˜Š‘Š¦Š’Š•Š¢ŠœŠ•Š¢ŠŠ˜Š˜ŠŸŠ ŠžŠ•ŠšŠ¢'),
(77138, 65040, 'en', 'name', 'Ural Scientific Research Institute of Dermatovenerology and Immunopathology'),
(77139, 65041, 'en', 'name', 'Missouri Secretary of State''s Office'),
(77140, 65042, 'en', 'name', 'Agricultural Research Institute for South-East Region'),
(77141, 65042, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Юго-Восточного'),
(77142, 65043, 'en', 'name', 'Financial Conduct Authority'),
(77143, 65044, 'en', 'name', 'All-Russian Scientific Research Institute of Soybean'),
(77144, 65044, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сои'),
(77145, 65045, 'no_lang_code', 'name', 'Amadeus Capital Partners (United Kingdom)'),
(77146, 65046, 'en', 'name', 'Dignitas International'),
(77147, 65047, 'en', 'name', 'Z.V.M.Unani Medical College & Hospital'),
(77148, 65048, 'no_lang_code', 'name', 'Hefei Design and Research Institute of Coal Industry (China)'),
(77149, 65048, 'zh', 'name', 'ē…¤ē‚­å·„äøšåˆč‚„č®¾č®”ē ”ē©¶é™¢'),
(77150, 65049, 'en', 'name', 'Sorabol College'),
(77151, 65049, 'ko', 'name', 'ģ„œė¼ė²ŒėŒ€ķ•™'),
(77152, 65050, 'de', 'name', 'Bundesverband deutscher Banken'),
(77153, 65050, 'en', 'name', 'Association of German Banks'),
(77154, 65051, 'no_lang_code', 'name', 'Encirc (United Kingdom)'),
(77155, 65052, 'en', 'name', 'Bristol Natural History Consortium'),
(77156, 65053, 'no_lang_code', 'name', 'Allford Hall Monaghan Morris (United Kingdom)'),
(77157, 65054, 'en', 'name', 'People''s Bank of China'),
(77158, 65054, 'zh', 'name', 'äø­å›½äŗŗę°‘é“¶č”Œ'),
(77159, 65055, 'en', 'name', 'The BE Vedeneev All Russia Institute of Hydraulic Engineering'),
(77160, 65055, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГротехники имени Š‘.Š•. ВеГенеева'),
(77161, 65056, 'no_lang_code', 'name', 'Immaterial Labs (United Kingdom)'),
(77162, 65057, 'en', 'name', 'Gansu Provincial Academy of Membrane Science and Technology'),
(77163, 65057, 'zh', 'name', 'ē”˜č‚ƒēœč†œē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(77164, 65058, 'no_lang_code', 'name', 'Oran Pre-Cast (Ireland)'),
(77165, 65059, 'no_lang_code', 'name', 'Jiangsu Institute of Ecomones (China)'),
(77166, 65059, 'zh', 'name', 'ę±Ÿč‹ēœęæ€ē“ ē ”ē©¶ę‰€'),
(77167, 65060, 'en', 'name', 'Galway Film Centre'),
(77168, 65061, 'no_lang_code', 'name', 'Tatung (Taiwan)'),
(77169, 65061, 'zh', 'name', 'å¤§åŒč‚”ä»½ęœ‰é™å…¬åø'),
(77170, 65062, 'no_lang_code', 'name', 'China Financial Services Holdings (China)'),
(77171, 65062, 'zh', 'name', 'äø­åœ‹é‡‘čžęŠ•č³‡ē®”ē†ęœ‰é™å…¬åø'),
(77172, 65063, 'no_lang_code', 'name', 'Amonics (China)'),
(77173, 65064, 'no_lang_code', 'name', 'Pivotal (Spain)'),
(77174, 65065, 'no_lang_code', 'name', 'China Resources (China)'),
(77175, 65065, 'zh', 'name', 'čÆę½¤é›†åœ˜'),
(77176, 65066, 'en', 'name', 'Recovery Institute of Southwest Michigan'),
(77177, 65067, 'no_lang_code', 'name', 'Milescan Technologies (China)'),
(77178, 65068, 'no_lang_code', 'name', 'Zynga (United States)'),
(77179, 65069, 'en', 'name', 'Korean Bible Society'),
(77180, 65069, 'ko', 'name', 'ķ•œźµ­ ģ„±ģ„œ 공회'),
(77181, 65070, 'ko', 'name', 'JW신약'),
(77182, 65070, 'no_lang_code', 'name', 'JW Shinyak (South Korea)'),
(77183, 65071, 'no_lang_code', 'name', 'VTRON (China)'),
(77184, 65071, 'zh', 'name', 'åØåˆ›'),
(77185, 65072, 'en', 'name', 'Military Institute'),
(77186, 65072, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ военное авиационное инженерное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ'),
(77187, 65073, 'en', 'name', 'State Tax Inspectorate'),
(77188, 65073, 'lt', 'name', 'Valstybinė Mokesčių Inspekcija'),
(77189, 65074, 'en', 'name', 'Hong Kong Wireless Technology Industry Association'),
(77190, 65074, 'zh', 'name', 'é¦™ęøÆę— ēŗæē§‘ęŠ€å·„äøšåä¼š'),
(77191, 65075, 'en', 'name', 'Public Service Development Agency'),
(77192, 65075, 'ka', 'name', 'įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒ”įƒ įƒ•įƒ˜įƒ”įƒ”įƒ‘įƒ˜įƒ” įƒ’įƒįƒœįƒ•įƒ˜įƒ—įƒįƒ įƒ”įƒ‘įƒ˜įƒ” įƒ”įƒįƒįƒ’įƒ”įƒœįƒ¢įƒ'),
(77193, 65076, 'en', 'name', 'State-owned Assets Supervision and Administration Commission of the State Council'),
(77194, 65076, 'zh', 'name', 'å›½åŠ”é™¢å›½ęœ‰čµ„äŗ§ē›‘ē£ē®”ē†å§”å‘˜ä¼š'),
(77195, 65077, 'no_lang_code', 'name', 'Eltis Microelectronics (China)'),
(77196, 65078, 'en', 'name', 'Cape Coast Technical University'),
(77197, 65079, 'no_lang_code', 'name', 'Walgreens Boots Alliance (United States)'),
(77198, 65080, 'en', 'name', 'Baltic Marine Environment Protection Commission'),
(77199, 65081, 'en', 'name', 'National Institute of Measurement and Testing Technology'),
(77200, 65081, 'zh', 'name', 'äø­å›½ęµ‹čÆ•ęŠ€ęœÆē ”ē©¶é™¢'),
(77201, 65082, 'en', 'name', 'Mediolanum Cardio Research'),
(77202, 65083, 'en', 'name', 'Construction Industry Council'),
(77203, 65084, 'en', 'name', 'Tobacco Harm Reduction 4 Life'),
(77204, 65085, 'en', 'name', 'Korea Reformed Theological Society'),
(77205, 65085, 'ko', 'name', 'ķ•œźµ­ 개혁 ģ‹ ķ•™ķšŒ'),
(77206, 65086, 'no_lang_code', 'name', 'Icax (United Kingdom)'),
(77207, 65087, 'en', 'name', 'Department of the Taoiseach'),
(77208, 65087, 'ga', 'name', 'Roinn an Taoisigh'),
(77209, 65088, 'no_lang_code', 'name', 'VNIIGIS'),
(77210, 65088, 'ru', 'name', 'ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геофизических исслеГований геологоразвеГочных скважин['),
(77211, 65089, 'no_lang_code', 'name', 'Athenex (China)'),
(77212, 65090, 'en', 'name', 'Canadian Organization for Rare Disorders'),
(77213, 65091, 'no_lang_code', 'name', 'ThyssenKrupp (China)'),
(77214, 65091, 'zh', 'name', 'č’‚ę£®å…‹č™ä¼Æč‚”ä»½å…¬åø'),
(77215, 65092, 'fr', 'name', 'ComitƩ Champagne, ComitƩ Interprofessionnel du vin de Champagne'),
(77216, 65093, 'en', 'name', 'Shanghai Micro Satellite Engineering Center'),
(77217, 65093, 'zh', 'name', 'äøŠęµ·å¾®åž‹å«ę˜Ÿå·„ēØ‹äø­åæƒ'),
(77218, 65094, 'en', 'name', 'World Music Institute'),
(77219, 65095, 'no_lang_code', 'name', 'Atlantis Resources (United Kingdom)'),
(77220, 65096, 'en', 'name', 'Indiana Professional Licensing Agency'),
(77221, 65097, 'ko', 'name', 'ģ‚¼ģ„±ģ œģ•½ćˆœ'),
(77222, 65097, 'no_lang_code', 'name', 'Samsung Pharm (South Korea)'),
(77223, 65098, 'no_lang_code', 'name', 'Bizconline (China)'),
(77224, 65099, 'en', 'name', 'Gem Arts'),
(77225, 65100, 'no_lang_code', 'name', 'Bauman Lyons Architects (United Kingdom)'),
(77226, 65101, 'en', 'name', 'Institute of Superhigh-Frequency Semiconductor Electronics of the Russian Academy of Sciences'),
(77227, 65101, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ микроволновой ŠæŠ¾Š»ŃƒŠæŃ€Š¾Š²Š¾Š“Š½ŠøŠŗŠ¾Š²Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø Š ŠŠ'),
(77228, 65102, 'en', 'name', 'Biology Institute of Shandong Academy of Sciences'),
(77229, 65102, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢ē”Ÿē‰©ē ”ē©¶ę‰€'),
(77230, 65103, 'en', 'name', 'Cromarty Firth Fishery Board'),
(77231, 65104, 'no_lang_code', 'name', 'Ctrip'),
(77232, 65105, 'en', 'name', 'Hong Kong Opto-Mechatronics Industries Association'),
(77233, 65105, 'zh', 'name', 'é¦™ęøÆäø­čÆēœ¼é”č£½é€ å» å•†ęœƒęœ‰é™å…¬åø'),
(77234, 65106, 'de', 'name', 'Bundesverband Photovoltaic Austria'),
(77235, 65107, 'en', 'name', 'Korean Musicological Society'),
(77236, 65107, 'ko', 'name', 'ķ•œźµ­źµ­ģ•…ķ•™ķšŒ'),
(77237, 65108, 'no_lang_code', 'name', 'Fundamentproekt (Russia)'),
(77238, 65108, 'ru', 'name', 'Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚ŠæŃ€Š¾ŠµŠŗŃ‚'),
(77239, 65109, 'de', 'name', 'Bundesverband Herzkranke Kinder'),
(77240, 65110, 'no_lang_code', 'name', 'Ensol (Poland)'),
(77241, 65111, 'en', 'name', 'Shandong Institute of Agricultural Sustainable Development'),
(77242, 65111, 'zh', 'name', 'å±±äøœå†œäøšåÆęŒē»­å‘å±•ē ”ē©¶é™¢'),
(77243, 65112, 'cy', 'name', 'Asiantaeth Trwyddedu Gyrwyr a Cherbydau'),
(77244, 65112, 'en', 'name', 'Driver and Vehicle Licensing Agency'),
(77245, 65113, 'es', 'name', 'Instituto Geofƭsico de la Escuela PolitƩcnica Nacional'),
(77246, 65114, 'no_lang_code', 'name', 'Ex-Polon Kwieciński Fornalski Spółka Cywilna (Poland)'),
(77247, 65115, 'no_lang_code', 'name', 'Aidyia (China)'),
(77248, 65116, 'en', 'name', 'Canadian Association of Cardiovascular Prevention and Rehabilitation'),
(77249, 65116, 'fr', 'name', 'L''Association Canadienne pour la PrƩvention Cardiovasculaire et de RƩadaptation'),
(77250, 65117, 'en', 'name', 'Institute of Food Safety, Animal Health and Environment ā€œBIORā€'),
(77251, 65117, 'lv', 'name', 'Pārtikas droŔības, dzÄ«vnieku veselÄ«bas un vides zinātniskais institÅ«ts ā€žBIORā€'),
(77252, 65118, 'no_lang_code', 'name', 'Inner Mongolia Electric Power (China)'),
(77253, 65118, 'zh', 'name', 'å†…č’™å¤ē”µåŠ›'),
(77254, 65119, 'en', 'name', 'African Council on Narcotics'),
(77255, 65120, 'en', 'name', 'International Association of Comparative Korean Studies'),
(77256, 65120, 'ko', 'name', 'źµ­ģ œė¹„źµķ•œźµ­ķ•™ķšŒ'),
(77257, 65121, 'ar', 'name', 'Ł‡ŁŠŲ¦Ų© الأؓغال العامة'),
(77258, 65121, 'no_lang_code', 'name', 'Ashghal'),
(77259, 65122, 'no_lang_code', 'name', 'Janssen (France)'),
(77260, 65123, 'en', 'name', 'Changzhou Vocational Institute of Textile and Garment'),
(77261, 65123, 'zh', 'name', 'åøøå·žēŗŗē»‡ęœč£…čŒäøšęŠ€ęœÆå­¦é™¢'),
(77262, 65124, 'en', 'name', 'Evaluation Support Scotland'),
(77263, 65125, 'en', 'name', 'Korean Institute of Interior Design'),
(77264, 65125, 'ko', 'name', 'ķ•œźµ­ģ‹¤ė‚“ė””ģžģøķ•™ķšŒėŠ”'),
(77265, 65126, 'en', 'name', 'Ministry for Finance'),
(77266, 65127, 'en', 'name', 'International League of Dermatological Societies'),
(77267, 65128, 'en', 'name', 'Moscow City Hospital No 29'),
(77268, 65128, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–29 им. Š.Š­.Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(77269, 65129, 'no_lang_code', 'name', 'Hetman Petro Sahaidachnyi National Army Academy'),
(77270, 65129, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŃŃƒŃ…Š¾ŠæŃƒŃ‚Š½ŠøŃ… Š²Ń–Š¹ŃŃŒŠŗ імені Š³ŠµŃ‚ŃŒŠ¼Š°Š½Š° ŠŸŠµŃ‚Ń€Š° ДагайГачного'),
(77271, 65130, 'no_lang_code', 'name', 'HEL Group (United Kingdom)'),
(77272, 65131, 'en', 'name', 'Phi Delta Phi'),
(77273, 65132, 'fi', 'name', 'TTS Tyƶtehoseura'),
(77274, 65133, 'en', 'name', 'Korea Radiation Industry Association'),
(77275, 65133, 'ko', 'name', 'ķ•œźµ­ė°©ģ‚¬ģ„ ģ‚°ģ—…ķ•™ķšŒ'),
(77276, 65134, 'en', 'name', 'Ministry of Emergency Situations'),
(77277, 65134, 'ky', 'name', 'Š¢Ó©Ń‚ŠµŠ½ŃˆŠµ жағГайлар министрлігі'),
(77278, 65135, 'en', 'name', 'Gangdong University'),
(77279, 65135, 'ko', 'name', 'ź°•ė™ ėŒ€ķ•™źµ'),
(77280, 65136, 'de', 'name', 'Bundesministerium der Finanzen'),
(77281, 65136, 'en', 'name', 'Federal Ministry of Finance'),
(77282, 65137, 'ko', 'name', 'ķ”„ė ˆģ§€ė‹ˆģš°ģŠ¤ģ¹“ė¹„ģ½”ė¦¬ģ•„'),
(77283, 65137, 'no_lang_code', 'name', 'Fresenius Kabi (South Korea)'),
(77284, 65138, 'en', 'name', 'Korean Society for Industrial and Organizational Psychology'),
(77285, 65138, 'ko', 'name', 'ķ•œźµ­ģ‚°ģ—…ė°ģ”°ģ§ģ‹¬ė¦¬ķ•™ķšŒ'),
(77286, 65139, 'en', 'name', 'Gansu Research Institute of Chemical Industry'),
(77287, 65139, 'zh', 'name', 'ē”˜č‚ƒēœåŒ–å·„ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(77288, 65140, 'en', 'name', 'Conservative Institute of M. R. ŠtefÔnik'),
(77289, 65140, 'sk', 'name', 'Konzervatívny inŔtitút M. R. ŠtefÔnika'),
(77290, 65141, 'en', 'name', 'Shandong Academy of Pesticide Science'),
(77291, 65141, 'zh', 'name', 'å±±äøœēœå†œčÆē§‘å­¦ē ”ē©¶é™¢'),
(77292, 65142, 'no_lang_code', 'name', 'Burrenbeo Trust'),
(77293, 65143, 'en', 'name', 'Business History Conference'),
(77294, 65144, 'de', 'name', 'Ministerium der Finanzen des Landes Sachsen-Anhalt'),
(77295, 65145, 'el', 'name', 'Ī£Ļ…Ī¼Ī²ĪæĻĪ»Ī¹Īæ ΄Γατοπρομήθειας Ī›ĪµĪ¼ĪµĻƒĪæĻ'),
(77296, 65145, 'en', 'name', 'Water Board of Lemesos'),
(77297, 65146, 'en', 'name', 'International Risk Governance Council'),
(77298, 65147, 'en', 'name', 'All-Russian Scientific Research Institute of Lupine'),
(77299, 65147, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š»ŃŽŠæŠøŠ½Š°'),
(77300, 65148, 'no_lang_code', 'name', 'Rodsum Wireless (China)'),
(77301, 65149, 'en', 'name', 'The Society for Teaching English through Media'),
(77302, 65149, 'ko', 'name', 'ģ˜ģƒģ˜ģ–“źµģœ”ķ•™ķšŒ'),
(77303, 65150, 'no_lang_code', 'name', 'Roche (India)'),
(77304, 65151, 'en', 'name', 'Korean Association for History of Modern Art'),
(77305, 65151, 'ko', 'name', 'ķ˜„ėŒ€ėÆøģˆ ģ‚¬ķ•™ķšŒ'),
(77306, 65152, 'en', 'name', 'Nevada Department of Agriculture'),
(77307, 65153, 'no_lang_code', 'name', 'Zhejiang Chint Electrics (China)'),
(77308, 65153, 'zh', 'name', 'ęµ™ę±Ÿę­£ę³°ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(77309, 65154, 'en', 'name', 'Tax Law Association'),
(77310, 65155, 'fr', 'name', 'AcadƩmie Nationale des Sciences et Techniques du SƩnƩgal'),
(77311, 65156, 'no_lang_code', 'name', 'Enzolve Technologies (Ireland)'),
(77312, 65157, 'ko', 'name', 'ģøķ„°ģ   ģ»Øģ„¤ķŒ… 그룹'),
(77313, 65157, 'no_lang_code', 'name', 'Intergen Consulting Group (South Korea)'),
(77314, 65158, 'en', 'name', 'Ministry of Water Resources and Meteorology'),
(77315, 65158, 'km', 'name', 'įž€įŸ’įžšįžŸįž½įž„įž’įž“įž’įž¶įž“įž‘įž¹įž€įž“įž·įž„įž§įžįž»įž“įž·įž™įž˜'),
(77316, 65159, 'en', 'name', 'Scientific Research Institute of Introscopy'),
(77317, 65159, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ интроскопии'),
(77318, 65160, 'en', 'name', 'Science Gallery International'),
(77319, 65161, 'en', 'name', 'Habitat for Humanity of Collier County'),
(77320, 65162, 'no_lang_code', 'name', 'Qatar Mining (Qatar)'),
(77321, 65163, 'en', 'name', 'Interuniversity Center for Social Science Theory and Methodology'),
(77322, 65164, 'en', 'name', 'Changzhou Vocational Institute of Light Industry'),
(77323, 65164, 'zh', 'name', 'åøøå·žč½»å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(77324, 65165, 'en', 'name', 'Nantong Snake Treatment Research Institute'),
(77325, 65166, 'en', 'name', 'Hassle Free Clinic'),
(77326, 65167, 'en', 'name', 'American Risk and Insurance Association'),
(77327, 65168, 'en', 'name', 'Office of the Attorney General'),
(77328, 65169, 'en', 'name', 'Philanthropy New York'),
(77329, 65170, 'no_lang_code', 'name', 'Meizu (China)'),
(77330, 65170, 'zh', 'name', 'é­…ę—ē§‘ęŠ€ęœ‰é™å…¬åø'),
(77331, 65171, 'en', 'name', 'Cancer Research UK Cambridge Center'),
(77332, 65172, 'en', 'name', 'Korean Broadcasters Association'),
(77333, 65172, 'ko', 'name', 'ķ•œźµ­ė°©ģ†”ķ˜‘ķšŒ'),
(77334, 65173, 'en', 'name', 'Korea Public Relations Consultancy Association'),
(77335, 65173, 'ko', 'name', 'ķ•œźµ­ ķ™ė³“ ģƒė‹“ķšŒ'),
(77336, 65174, 'en', 'name', 'Culinary Institute of Korea'),
(77337, 65175, 'no_lang_code', 'name', 'Midea Group (China)'),
(77338, 65175, 'zh', 'name', 'ē¾Žēš„é›†å›¢'),
(77339, 65176, 'fr', 'name', 'ARCTIConnexion'),
(77340, 65177, 'en', 'name', 'Kelkar Education Trust''s Scientific Research Centre'),
(77341, 65178, 'no_lang_code', 'name', 'Sailun Jinyu Group (China)'),
(77342, 65178, 'zh', 'name', '赛轮金宇集团'),
(77343, 65179, 'en', 'name', 'MRA Group'),
(77344, 65180, 'fr', 'name', 'Parkinson Quebec'),
(77345, 65181, 'en', 'name', 'Specialized Scientific Research Institute of Instrument Engineering'),
(77346, 65182, 'en', 'name', 'Tatar Scientific Research Institute of Agrochemistry and Soil Science');
INSERT INTO `ror_settings` VALUES
(77347, 65182, 'ru', 'name', 'Татарский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ агрохимии Šø ŠæŠ¾Ń‡Š²Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ - обособленное ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€Š½Š¾Šµ поГразГеление Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Š³Š¾ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŃ науки'),
(77348, 65183, 'en', 'name', 'Veterinary and Food Board'),
(77349, 65183, 'et', 'name', 'Veterinaar- ja Toiduamet'),
(77350, 65184, 'ko', 'name', 'ģøķ¬ė§¤ķ‹°ģ¹“'),
(77351, 65184, 'no_lang_code', 'name', 'Informatica (South Korea)'),
(77352, 65185, 'no_lang_code', 'name', 'Cell Guidance Systems (United Kingdom)'),
(77353, 65186, 'en', 'name', 'Guangdong Work Injury Rehabilitation Hospital'),
(77354, 65186, 'zh', 'name', 'å¹æäøœēœå·„ä¼¤åŗ·å¤åŒ»é™¢'),
(77355, 65187, 'no_lang_code', 'name', 'Gemalto (Netherlands)'),
(77356, 65188, 'no_lang_code', 'name', 'Icon (India)'),
(77357, 65188, 'ta', 'name', 'ą®ą®•ą®¾ą®©ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ ą®Ŗą®æą®°ąÆˆą®µąÆ‡ą®ŸąÆ'),
(77358, 65189, 'no_lang_code', 'name', 'Compact Imaging (United States)'),
(77359, 65190, 'en', 'name', 'Hosan University'),
(77360, 65190, 'ko', 'name', 'ķ˜øģ‚°ėŒ€ķ•™źµ'),
(77361, 65191, 'no_lang_code', 'name', 'Nectaerra'),
(77362, 65192, 'en', 'name', 'The Korean Association for Children with Special Needs'),
(77363, 65192, 'ko', 'name', 'ķ•œźµ­ķŠ¹ģˆ˜ģ•„ė™ķ•™ķšŒ'),
(77364, 65193, 'en', 'name', 'National Board for Certified Counselors'),
(77365, 65194, 'en', 'name', 'Hunan Provincial Agricultural Machinery Authority'),
(77366, 65194, 'zh', 'name', 'ę¹–å—ēœå†œäøšęœŗę¢°ē®”ē†å±€'),
(77367, 65195, 'no_lang_code', 'name', 'Aisino (China)'),
(77368, 65195, 'zh', 'name', 'čˆŖå¤©äæ”ęÆč‚”ä»½ęœ‰é™å…¬åø'),
(77369, 65196, 'no_lang_code', 'name', 'Big White Wall (United Kingdom)'),
(77370, 65197, 'fr', 'name', 'Centre Jacques-Cartier'),
(77371, 65198, 'en', 'name', 'Government Ayurved College, Nanded'),
(77372, 65199, 'no_lang_code', 'name', 'Sinolight (China)'),
(77373, 65199, 'zh', 'name', 'äø­å›½č½»å·„é›†å›¢ęœ‰é™å…¬åø'),
(77374, 65200, 'en', 'name', 'Edwards Air Force Base'),
(77375, 65201, 'de', 'name', 'Evangelische Hochschule Berlin'),
(77376, 65202, 'no_lang_code', 'name', 'All-Russian Institute of Light Alloys (Russia)'),
(77377, 65202, 'ru', 'name', 'Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лёгких сплавов Ā«Š’Š˜Š›Š”Ā»'),
(77378, 65203, 'en', 'name', 'Presidential Executive Office'),
(77379, 65203, 'ru', 'name', 'ŠŠ“Š¼ŠøŠ½ŠøŃŃ‚Ń€Š°Ń†ŠøŃ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Š°'),
(77380, 65204, 'en', 'name', 'Henan Province Quality and Technical Supervision Bureau'),
(77381, 65204, 'zh', 'name', 'ę²³å—ēœč“Øé‡ęŠ€ęœÆē›‘ē£å±€'),
(77382, 65205, 'hi', 'name', 'ą¤…ą¤œą¤‚ą¤¤ą¤¾ ą¤«ą¤¾ą¤°ą„ą¤®ą¤¾ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(77383, 65205, 'no_lang_code', 'name', 'Ajanta Pharma (India)'),
(77384, 65206, 'no_lang_code', 'name', 'DRD Power (United Kingdom)'),
(77385, 65207, 'no_lang_code', 'name', 'Advanced Materials Enterprises (China)'),
(77386, 65207, 'zh', 'name', 'å…ˆčæ›ęę–™ä¼äøš'),
(77387, 65208, 'en', 'name', 'Financial Services Institute of Australasia'),
(77388, 65209, 'en', 'name', 'Songwon University'),
(77389, 65209, 'ko', 'name', 'ģ†”ģ›ėŒ€ķ•™źµ'),
(77390, 65210, 'ko', 'name', 'ķ•œźµ­ ģ„ģœ  그룹'),
(77391, 65210, 'no_lang_code', 'name', 'Korea Petroleum Group (South Korea)'),
(77392, 65211, 'en', 'name', 'Desh Bhagat University'),
(77393, 65211, 'pa', 'name', 'ਦੇਸ਼ ਭਗਤ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(77394, 65212, 'no_lang_code', 'name', 'Pharmacosmos (United States)'),
(77395, 65213, 'no_lang_code', 'name', 'Expedition (United Kingdom)'),
(77396, 65214, 'en', 'name', 'Tianjin Municipal Engineering Design and Research Institute'),
(77397, 65214, 'zh', 'name', '天擄市市政巄程设讔研究总院'),
(77398, 65215, 'en', 'name', 'Buxton Festival'),
(77399, 65216, 'en', 'name', 'Korean Studies Institute'),
(77400, 65216, 'ko', 'name', 'ķ•œźµ­źµ­ķ•™ģ§„ķ„ģ›'),
(77401, 65217, 'en', 'name', 'Henan University of Engineering'),
(77402, 65217, 'zh', 'name', 'ę²³å—å·„ēØ‹å­¦é™¢'),
(77403, 65218, 'en', 'name', 'Beijing Microelectronics Technology Institute'),
(77404, 65219, 'no_lang_code', 'name', 'Teijin (Netherlands)'),
(77405, 65220, 'en', 'name', 'Ministry of Justice of the Republic of Poland'),
(77406, 65220, 'pl', 'name', 'Ministerstwo Sprawiedliwośc'),
(77407, 65221, 'en', 'name', 'Ministry of Environment of the Republic of Lithuania'),
(77408, 65221, 'lt', 'name', 'Lietuvos Respublikos Aplinkos Ministerija'),
(77409, 65222, 'en', 'name', 'Korean Cancer Study Group'),
(77410, 65222, 'ko', 'name', 'ėŒ€ķ•œķ•­ģ•”ģš”ė²•ģ—°źµ¬ķšŒ ģž…ė‹ˆė‹¤'),
(77411, 65223, 'en', 'name', 'Liaoning Planning and Design Institute of Post and Telecommunication'),
(77412, 65223, 'zh', 'name', 'č¾½å®é‚®ē”µč§„åˆ’č®¾č®”é™¢ęœ‰é™å…¬åøē‰ˆ'),
(77413, 65224, 'no_lang_code', 'name', 'Sino Biopharmaceutical (China)'),
(77414, 65224, 'zh', 'name', 'äø­å›½ē”Ÿē‰©åˆ¶čÆ'),
(77415, 65225, 'no_lang_code', 'name', 'Grupa Lotos (Poland)'),
(77416, 65226, 'no_lang_code', 'name', 'Taixing First Construction Group (China)'),
(77417, 65226, 'zh', 'name', 'ę³°å…“äø€å»ŗå»ŗč®¾é›†å›¢ęœ‰é™å…¬åø'),
(77418, 65227, 'bg', 'name', 'Š”ŃŠŃ€Š¶Š°Š²Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ "Архиви"'),
(77419, 65227, 'en', 'name', 'Archives State Agency'),
(77420, 65228, 'en', 'name', 'Sunlin University'),
(77421, 65228, 'ko', 'name', '선린 ėŒ€ķ•™źµ'),
(77422, 65229, 'no_lang_code', 'name', 'Novem (Netherlands)'),
(77423, 65230, 'no_lang_code', 'name', 'Plasma (Russia)'),
(77424, 65231, 'hu', 'name', 'Nemzeti SzakkĆ©pzĆ©si Ć©s FelnőttkĆ©pzĆ©si Hivatal'),
(77425, 65232, 'no_lang_code', 'name', 'Care UK (United Kingdom)'),
(77426, 65233, 'en', 'name', 'Environment Agency of Iceland'),
(77427, 65233, 'is', 'name', 'Umhverfisstofnun'),
(77428, 65234, 'en', 'name', 'Portuguese League Against Epilepsy'),
(77429, 65234, 'pt', 'name', 'Liga Portuguesa Contra a Epilepsia'),
(77430, 65235, 'no_lang_code', 'name', 'Shenzhen Metro (China)'),
(77431, 65235, 'zh', 'name', 'ę·±åœ³åø‚åœ°é“'),
(77432, 65236, 'no_lang_code', 'name', 'Fano Labs (China)'),
(77433, 65236, 'zh', 'name', 'ę³•čÆŗå®žéŖŒå®¤'),
(77434, 65237, 'ko', 'name', 'ģ¢…ź·¼ė‹¹ķ™€ė”©ģŠ¤'),
(77435, 65237, 'no_lang_code', 'name', 'Chong Kun Dang Bio (South Korea)'),
(77436, 65238, 'no_lang_code', 'name', 'Integra (Russia)'),
(77437, 65238, 'ru', 'name', 'Š’ŠŠ˜Š˜Š‘Š¢-Š‘ŃƒŃ€Š¾Š²Š¾Š¹ ŠøŠ½ŃŃ‚Ń€ŃƒŠ¼ŠµŠ½Ń‚'),
(77438, 65239, 'en', 'name', 'Pavee Point'),
(77439, 65240, 'ar', 'name', 'معهد ŲŗŲ±ŲØ آسيا - Ų“Ł…Ų§Ł„ Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§'),
(77440, 65240, 'en', 'name', 'West Asia-North Africa Institute'),
(77441, 65241, 'en', 'name', 'Xinjiang Uygur Autonomous Region Product Quality Supervision and Inspection Institute'),
(77442, 65241, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗäŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒē ”ē©¶é™¢'),
(77443, 65242, 'en', 'name', 'European Federation of Agencies and Regions for Energy and Environment'),
(77444, 65243, 'no_lang_code', 'name', 'Manor Farm (Ireland)'),
(77445, 65244, 'en', 'name', 'The Korea Association of Foreign Language Education'),
(77446, 65244, 'ko', 'name', 'ķ•œźµ­ 외국얓 교윔 ķ˜‘ķšŒ'),
(77447, 65245, 'no_lang_code', 'name', 'Audi (Italy)'),
(77448, 65246, 'no_lang_code', 'name', 'Global Technic Enterprises (China)'),
(77449, 65247, 'no_lang_code', 'name', 'Washington Monthly (United States)'),
(77450, 65248, 'en', 'name', 'Hong Kong Metals Manufacturers Association'),
(77451, 65248, 'zh', 'name', 'é¦™ęøÆé‡‘å±¬č£½é€ ę„­å”ęœƒ'),
(77452, 65249, 'en', 'name', 'Shandong Academy of Agricultural Machinery Sciences'),
(77453, 65249, 'zh', 'name', 'å±±äøœēœå†œäøšęœŗę¢°ē§‘å­¦ē ”ē©¶é™¢å§‹'),
(77454, 65250, 'en', 'name', 'Iberia Parish Government'),
(77455, 65251, 'en', 'name', 'Korean Scholars of Marketing Science'),
(77456, 65251, 'ko', 'name', 'ķ•œźµ­ ė§ˆģ¼€ķŒ… ķ•™ģž'),
(77457, 65252, 'en', 'name', 'Ministry of Labour, Health and Social Affairs'),
(77458, 65252, 'ka', 'name', 'Georgia Sakartvelos shromis, janmrtelobisa ads sotsialuri datsvis saministro'),
(77459, 65253, 'no_lang_code', 'name', 'Move4Parkinson’s'),
(77460, 65254, 'en', 'name', 'The Heritage Alliance'),
(77461, 65255, 'no_lang_code', 'name', 'Qingdao Installation & Construction (China)'),
(77462, 65255, 'zh', 'name', 'é’å²›å®‰č£…å»ŗč®¾č‚”ä»½ęœ‰é™å…¬åø'),
(77463, 65256, 'en', 'name', 'Goverment Siddha Medical College'),
(77464, 65256, 'ta', 'name', 'ą®…ą®°ą®šąÆ ą®šą®æą®¤ąÆą®¤ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(77465, 65257, 'no_lang_code', 'name', 'Hexagon (Sweden)'),
(77466, 65258, 'no_lang_code', 'name', 'Bullion Tech (United Kingdom)'),
(77467, 65259, 'no_lang_code', 'name', 'Electricity North West (United Kingdom)'),
(77468, 65260, 'en', 'name', 'Institute of Research of Iron and Steel Shasteel'),
(77469, 65260, 'zh', 'name', '钢铁研究所研究所'),
(77470, 65261, 'no_lang_code', 'name', 'Staten Island Museum'),
(77471, 65262, 'en', 'name', 'Korea Moral Education Association'),
(77472, 65262, 'ko', 'name', 'ķ•œźµ­ė„ė•źµģœ”ķ•™ķšŒ'),
(77473, 65263, 'en', 'name', 'Laboratory for Biomedical Neurosciences'),
(77474, 65264, 'en', 'name', 'Guizhou Center for Disease Control and Prevention'),
(77475, 65264, 'zh', 'name', 'č“µå·žēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(77476, 65265, 'en', 'name', 'Slovenian Nuclear Safety Administration'),
(77477, 65265, 'sl', 'name', 'Uprava Republike Slovenije za Jedrsko Varnost'),
(77478, 65266, 'en', 'name', 'Public Investment Development Agency'),
(77479, 65266, 'lt', 'name', 'VieŔųjų investicijų plėtros agentÅ«ra'),
(77480, 65267, 'no_lang_code', 'name', 'Nanjing Zhongyi Architectural Design Institute (China)'),
(77481, 65267, 'zh', 'name', 'å—äŗ¬äø­ę„å»ŗē­‘č®¾č®”é™¢'),
(77482, 65268, 'en', 'name', 'Suihua University'),
(77483, 65268, 'zh', 'name', 'ē»„åŒ–å­¦é™¢'),
(77484, 65269, 'pt', 'name', 'Centro UniversitƔrio UNINOVAFAPI'),
(77485, 65270, 'en', 'name', 'Environmental Centre for Administration and Technology'),
(77486, 65270, 'lt', 'name', 'VieŔoji įstaiga Aplinkosaugos valdymo ir technologijų'),
(77487, 65271, 'en', 'name', 'Hassan Usman Katsina Polytechnic'),
(77488, 65272, 'en', 'name', 'Busan Digital University'),
(77489, 65272, 'ko', 'name', '부산 디지털 ėŒ€ķ•™źµ'),
(77490, 65273, 'no_lang_code', 'name', 'Pacific Satellite (China)'),
(77491, 65274, 'no_lang_code', 'name', 'Ecoenergia (Poland)'),
(77492, 65275, 'en', 'name', 'ACE Hospital'),
(77493, 65276, 'ko', 'name', '바디 ķ… ė©”ė“œ'),
(77494, 65276, 'no_lang_code', 'name', 'Boditech Med (South Korea)'),
(77495, 65277, 'en', 'name', 'Institute on Science for Global Policy'),
(77496, 65278, 'en', 'name', 'Re-shaping Development Institute'),
(77497, 65278, 'ko', 'name', 'źø€ė”œė²Œ 개발 ģ—°źµ¬ģ†Œ'),
(77498, 65279, 'en', 'name', 'Committee on Capital Markets Regulation'),
(77499, 65280, 'no_lang_code', 'name', 'Delta Rafał Mikke (Poland)'),
(77500, 65281, 'en', 'name', 'Heilongjiang Provincial Metrology and Testing Institute'),
(77501, 65281, 'zh', 'name', 'é»‘é¾™ę±Ÿēœč®”é‡ę£€å®šęµ‹čÆ•é™¢ ꊀ'),
(77502, 65282, 'en', 'name', 'Pacific Standard'),
(77503, 65283, 'en', 'name', 'Shandong Institute of Metrology'),
(77504, 65283, 'zh', 'name', 'å±±äøœēœč®”é‡ē§‘å­¦ē ”ē©¶é™¢'),
(77505, 65284, 'en', 'name', 'Perm Military Institute'),
(77506, 65284, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ военный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(77507, 65285, 'no_lang_code', 'name', 'Ultimate Software (United States)'),
(77508, 65286, 'no_lang_code', 'name', 'Materials Engineers Group (Poland)'),
(77509, 65287, 'fr', 'name', 'Agence FranƧaise pour le DĆ©veloppement et la Promotion de l’Agriculture Biologique'),
(77510, 65288, 'en', 'name', 'Bishop Simeon Trust'),
(77511, 65289, 'no_lang_code', 'name', 'Tianjin Rubber Industry Institute (China)'),
(77512, 65289, 'zh', 'name', 'å¤©ę“„åø‚ę©”čƒ¶å·„äøšē ”ē©¶ę‰€'),
(77513, 65290, 'en', 'name', 'All-Union Scientific Research Institute of Plant Quarantine'),
(77514, 65290, 'ru', 'name', 'Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карантина растений'),
(77515, 65291, 'en', 'name', 'Employees State Insurance Post Graduate Institute of Medical Sciences and Research'),
(77516, 65292, 'en', 'name', 'Consortium for Sustainable Development of the Andean Ecoregion'),
(77517, 65292, 'es', 'name', 'Consorcio para el Desarrollo Sostenible de la Ecoregión Andina'),
(77518, 65293, 'en', 'name', 'Ministry of Foreign Affairs'),
(77519, 65293, 'zh', 'name', 'ę–°åŠ å”å¤–äŗ¤éƒØ'),
(77520, 65294, 'en', 'name', 'Wuxi Institute of Technology'),
(77521, 65294, 'zh', 'name', '无锔理巄学院'),
(77522, 65295, 'no_lang_code', 'name', 'Construction Development (Qatar)'),
(77523, 65296, 'no_lang_code', 'name', 'Botswana Vaccine Institute (Botswana)'),
(77524, 65297, 'ar', 'name', 'التحالف Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠ Ł„Ł„Ų£Ų±Ų§Ų¶ŁŠ الجافة'),
(77525, 65297, 'en', 'name', 'Global Dryland Alliance'),
(77526, 65298, 'en', 'name', 'Diagnostic and Prevention Research Institute for Human and Animal Diseases'),
(77527, 65298, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гиагностики Šø профилактики болезней человека Šø животных'),
(77528, 65299, 'en', 'name', 'The Boys'' & Girls'' Clubs Association of Hong Kong'),
(77529, 65299, 'zh', 'name', 'é¦™ęøÆå°ē«„ē¾¤ē›Šęœƒ'),
(77530, 65300, 'en', 'name', 'Hebei Research Institute of Microbiology'),
(77531, 65300, 'zh', 'name', 'ę²³åŒ—ēœå¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(77532, 65301, 'ko', 'name', 'ģ§„ķ…Œķ¬'),
(77533, 65301, 'no_lang_code', 'name', 'Jin Tech (South Korea)'),
(77534, 65302, 'en', 'name', 'Asia Foundation'),
(77535, 65302, 'ko', 'name', 'ģ•„ģ‹œģ•„ ģž¬ė‹Ø'),
(77536, 65303, 'no_lang_code', 'name', 'Syneos Health (Germany)'),
(77537, 65304, 'en', 'name', 'Hangzhou Quality and Technical Supervision and Testing Institute'),
(77538, 65304, 'zh', 'name', 'ę­å·žåø‚č“Øé‡ęŠ€ęœÆē›‘ē£ę£€ęµ‹é™¢'),
(77539, 65305, 'no_lang_code', 'name', 'Micom Tech (China)'),
(77540, 65306, 'no_lang_code', 'name', 'Fustec (China)'),
(77541, 65306, 'zh', 'name', 'åÆŒé”ē§‘ęŠ€åœ‹éš›ęœ‰é™å…¬åø'),
(77542, 65307, 'ar', 'name', 'Ł‡ŁŠŲ¦Ų© متاحف قطر'),
(77543, 65307, 'en', 'name', 'Qatar Museums'),
(77544, 65308, 'no_lang_code', 'name', 'Huafon Group (China)'),
(77545, 65308, 'zh', 'name', '华峰集团'),
(77546, 65309, 'en', 'name', 'Korean Geographical Society'),
(77547, 65309, 'ko', 'name', 'ķ•œźµ­ģ§€ė¦¬ķ•™ķšŒ'),
(77548, 65310, 'en', 'name', 'Interstate Commission for Water Coordination of Central Asia'),
(77549, 65310, 'ru', 'name', 'ŠœŠµŠ¶Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š¾Ń€Š“ŠøŠ½Š°Ń†ŠøŠ¾Š½Š½Š°Ń Š²Š¾Š“Š¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ¾Š¼ŠøŃŃŠøŃ'),
(77550, 65311, 'no_lang_code', 'name', 'Aston Particle Technologies (United Kingdom)'),
(77551, 65312, 'no_lang_code', 'name', 'Dongfang Electric Corporation (China)'),
(77552, 65313, 'en', 'name', 'Oyster & Pearl Hospital'),
(77553, 65314, 'ko', 'name', 'ķšØģ¢…ģ›'),
(77554, 65314, 'no_lang_code', 'name', 'Omiberry (South Korea)'),
(77555, 65315, 'en', 'name', 'Ministry of Energy of the Republic of Lithuania'),
(77556, 65315, 'lt', 'name', 'Lietuvos Respublikos energetikos ministerija'),
(77557, 65316, 'no_lang_code', 'name', 'Scientific and Production Association of Electromechanics (Russia)'),
(77558, 65317, 'no_lang_code', 'name', 'ON Semiconductor (China)'),
(77559, 65318, 'en', 'name', 'Korean Society of Sport Psychology'),
(77560, 65318, 'ko', 'name', 'ķ•œźµ­ģŠ¤ķ¬ģø ģ‹¬ė¦¬ķ•™ķšŒ'),
(77561, 65319, 'en', 'name', 'Reformed Theological Institute'),
(77562, 65319, 'ko', 'name', '개혁 ģ‹ ķ•™ 연구원'),
(77563, 65320, 'no_lang_code', 'name', 'CAV Advanced Technologies (United Kingdom)'),
(77564, 65321, 'no_lang_code', 'name', 'Amazon (Germany)'),
(77565, 65322, 'en', 'name', 'Charnwood Arts'),
(77566, 65323, 'no_lang_code', 'name', 'Well Being Digital (China)'),
(77567, 65324, 'en', 'name', 'International Council of Associations for Science Education'),
(77568, 65325, 'it', 'name', 'Istituto di Nanotecnologia'),
(77569, 65326, 'pt', 'name', 'Instituto das Tecnologias de Informação na Justiça'),
(77570, 65327, 'no_lang_code', 'name', 'Bennamann (United Kingdom)'),
(77571, 65328, 'en', 'name', 'Changjiang Institute of Survey, Planning, Design and Research'),
(77572, 65328, 'zh', 'name', 'é•æę±Ÿå‹˜ęµ‹č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(77573, 65329, 'en', 'name', 'Mavlyutov Institute of Mechanics'),
(77574, 65329, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механики им Š .Š . ŠœŠ°Š²Š»ŃŽŃ‚Š¾Š²Š°'),
(77575, 65330, 'en', 'name', 'Terviseamet Health Board'),
(77576, 65331, 'no_lang_code', 'name', 'Sir Ivan Stedeford Hospital'),
(77577, 65331, 'ta', 'name', 'ą®šą®°ąÆ ą®ą®µą®©ąÆ ą®øąÆą®ŸąÆ†ą®ŸąÆą®ŖąÆ‹ą®°ąÆą®Ÿ ą®¹ą®¾ą®øąÆą®Ŗą®æą®Ÿą®²ąÆ'),
(77578, 65332, 'en', 'name', 'Ministry of Economy'),
(77579, 65333, 'no_lang_code', 'name', 'Block Dox (United Kingdom)'),
(77580, 65334, 'en', 'name', 'Castlefield Gallery'),
(77581, 65335, 'ko', 'name', 'ź·¹ė™ķ†µģ‹ '),
(77582, 65335, 'no_lang_code', 'name', 'Kukdong Communication (South Korea)'),
(77583, 65336, 'el', 'name', 'Svenska Institutet i Athen'),
(77584, 65336, 'en', 'name', 'Swedish Institute at Athens'),
(77585, 65337, 'no_lang_code', 'name', 'Geomatic Ventures (United Kingdom)'),
(77586, 65338, 'en', 'name', 'Connecticut Public Broadcasting'),
(77587, 65339, 'no_lang_code', 'name', 'Waldi (Poland)'),
(77588, 65340, 'no_lang_code', 'name', 'Cascade Biosystems (United States)'),
(77589, 65341, 'no_lang_code', 'name', 'Waste & Environmental Technologies (China)'),
(77590, 65342, 'en', 'name', 'The Society of Service Science'),
(77591, 65342, 'ko', 'name', 'ģ„œė¹„ģŠ¤ ź³¼ķ•™ķšŒ'),
(77592, 65343, 'en', 'name', 'Chongqing Bureau of Geology and Minerals Exploration'),
(77593, 65343, 'zh', 'name', 'é‡åŗ†åø‚åœ°č“ØēŸæäŗ§å‹˜ęŸ„å¼€å‘å±€'),
(77594, 65344, 'no_lang_code', 'name', '3D Engineering Design (United Kingdom)'),
(77595, 65345, 'en', 'name', 'New Hampshire Association of Conservation Commissions'),
(77596, 65346, 'en', 'name', 'The Korean Society for the Economics and Finance of Education'),
(77597, 65346, 'ko', 'name', 'ķ•œźµ­źµģœ”ģž¬ģ •ź²½ģ œķ•™ķšŒ'),
(77598, 65347, 'en', 'name', 'Hong Kong Small and Medium Enterprises Association'),
(77599, 65347, 'zh', 'name', 'é¦™ęøÆäø­å°ä¼äøšč”ä¼š'),
(77600, 65348, 'no_lang_code', 'name', 'Everplant Technology (China)'),
(77601, 65349, 'no_lang_code', 'name', 'Gezhouba Group (China)'),
(77602, 65349, 'zh', 'name', 'äø­å›½č‘›ę“²åé›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(77603, 65350, 'en', 'name', 'The Korea Association for Han-Character and Classical Written Language Education'),
(77604, 65350, 'ko', 'name', 'ķ•œźµ­ ķ•œė¬øķ•™ ė° ź³ ģ „ 문얓 교윔 ķ˜‘ķšŒ'),
(77605, 65351, 'en', 'name', 'Beijing Zhenxing Metrology & Measurement Institute'),
(77606, 65351, 'zh', 'name', 'åŒ—äŗ¬ęŒÆå…“č®”é‡ęµ‹čÆ•ē ”ē©¶ę‰€'),
(77607, 65352, 'en', 'name', 'North American Society for Sport Management'),
(77608, 65353, 'en', 'name', 'Georgia Emergency Management Agency'),
(77609, 65354, 'no_lang_code', 'name', 'Caredoc'),
(77610, 65355, 'no_lang_code', 'name', 'Power Roll (United Kingdom)'),
(77611, 65356, 'en', 'name', 'Auvergne-Rhone-Alpes Entreprises'),
(77612, 65357, 'en', 'name', 'Korean Academic Society of Taxation'),
(77613, 65357, 'ko', 'name', '씰세 ķ•™ķšŒ'),
(77614, 65358, 'no_lang_code', 'name', 'Mamata General Hospital'),
(77615, 65358, 'te', 'name', 'మమత ą°œą°Øą°°ą°²ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(77616, 65359, 'en', 'name', 'Wanda Cultural Tourism Planning and Research Institute'),
(77617, 65359, 'zh', 'name', 'äø‡č¾¾ę–‡åŒ–ę—…ęøøč§„åˆ’ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(77618, 65360, 'no_lang_code', 'name', 'SIPN S.R.L. (Italy)'),
(77619, 65361, 'en', 'name', 'Java Clinical'),
(77620, 65362, 'en', 'name', 'Nanjing Institute of Railway Technology'),
(77621, 65363, 'en', 'name', 'Antiquities, Monuments and Museum Corporation'),
(77622, 65364, 'en', 'name', 'Casey House'),
(77623, 65365, 'de', 'name', 'ECOVIN Bundesverband Ɩkologischer Weinbau'),
(77624, 65366, 'no_lang_code', 'name', 'Carbograf (Poland)'),
(77625, 65367, 'no_lang_code', 'name', 'Dimensional Imaging (United Kingdom)'),
(77626, 65368, 'en', 'name', 'Child Welfare League of Canada'),
(77627, 65368, 'fr', 'name', 'Ligue pour le Bien-Être de l''Enfance du Canada'),
(77628, 65369, 'no_lang_code', 'name', 'Arcadis (United Kingdom)'),
(77629, 65370, 'de', 'name', 'Bayerisches Staatsministerium der Finanzen, für Landesentwicklung und Heimat'),
(77630, 65371, 'ko', 'name', 'ķŒģ†Œė¦¬ķ•™ķšŒėŠ”'),
(77631, 65371, 'no_lang_code', 'name', 'Pansori Society'),
(77632, 65372, 'en', 'name', 'National Council on Patient Information and Education'),
(77633, 65373, 'en', 'name', 'Extra Care Physiotherapy Centre'),
(77634, 65374, 'en', 'name', 'Neurobehavioral Research Laboratory and Clinic'),
(77635, 65375, 'no_lang_code', 'name', 'Avara Pharmaceutical Services (Ireland)'),
(77636, 65376, 'en', 'name', 'The Korean Association for Public Administration'),
(77637, 65376, 'ko', 'name', 'ķ•œźµ­ 행정 ķ•™ķšŒ'),
(77638, 65377, 'en', 'name', 'Department of Transport, Tourism and Sport'),
(77639, 65377, 'ga', 'name', 'An Roinn Iompair, Turasóireachta agus Spóirt'),
(77640, 65378, 'en', 'name', 'Research and Design and Technological Institute of Rolling Stock'),
(77641, 65378, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ поГвижного состава'),
(77642, 65379, 'no_lang_code', 'name', 'S. Norton (United Kingdom)'),
(77643, 65380, 'no_lang_code', 'name', 'Kite Entertainment (Ireland)'),
(77644, 65381, 'cs', 'name', 'StĆ”tnĆ­ RostlinolĆ©kařskĆ” SprĆ”va'),
(77645, 65381, 'en', 'name', 'State Phytosanitary Administration'),
(77646, 65382, 'fr', 'name', 'SantƩ Publique France'),
(77647, 65383, 'en', 'name', 'Future Transport Systems'),
(77648, 65384, 'en', 'name', 'National Academy of Kinesiology'),
(77649, 65385, 'en', 'name', 'Isotherm Research Institute'),
(77650, 65385, 'ru', 'name', 'ŠŠ˜Š˜ "Š˜Š·Š¾Ń‚ŠµŃ€Š¼"'),
(77651, 65386, 'en', 'name', 'Yeongnam Archaeological Society'),
(77652, 65386, 'ko', 'name', 'ģ˜ė‚Øź³ ź³ ķ•™ķšŒ'),
(77653, 65387, 'no_lang_code', 'name', 'ExpreS2ion Biotechnologies (Denmark)'),
(77654, 65388, 'en', 'name', 'Zhejiang Academy of Building Research & Design'),
(77655, 65388, 'zh', 'name', 'ęµ™ę±Ÿēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(77656, 65389, 'nl', 'name', 'Royal Dirkzwager'),
(77657, 65390, 'en', 'name', 'Research Institute of Agriculture of Crimea'),
(77658, 65390, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° ŠšŃ€Ń‹Š¼Š°'),
(77659, 65391, 'en', 'name', 'Balaji Dental & Craniofacial Hospital'),
(77660, 65392, 'en', 'name', 'Korean Society for the Study of Obesity'),
(77661, 65392, 'ko', 'name', 'ėŒ€ķ•œė¹„ė§Œķ•™ķšŒ ķ™ˆķŽ˜'),
(77662, 65393, 'en', 'name', 'National Employment Agency'),
(77663, 65393, 'fr', 'name', 'Agence Nationale pour l''Emploi'),
(77664, 65394, 'no_lang_code', 'name', 'Lanzhou Great Wall Electrical Corporation'),
(77665, 65394, 'zh', 'name', 'å…°å·žé•æåŸŽē”µå·„č‚”ä»½ęœ‰é™å…¬åø'),
(77666, 65395, 'no_lang_code', 'name', 'Takeda (Singapore)'),
(77667, 65396, 'en', 'name', 'European Marine Energy Centre'),
(77668, 65397, 'en', 'name', 'Korean Alliance for Health, Physical Education, Recreation, and Dance'),
(77669, 65397, 'ko', 'name', 'ķ•œźµ­ģ²“ģœ”ķ•™ķšŒ'),
(77670, 65398, 'en', 'name', 'Swedish Institute for Language and Folklore'),
(77671, 65398, 'sv', 'name', 'Institutet fƶr SprƄk och Folkminnen'),
(77672, 65399, 'en', 'name', 'Central Research Institute of Automation and Hydraulics'),
(77673, 65399, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø гиГравлики'),
(77674, 65400, 'no_lang_code', 'name', 'LAMA (Italy)'),
(77675, 65401, 'en', 'name', 'Rail Delivery Group'),
(77676, 65402, 'en', 'name', 'Cyberport'),
(77677, 65402, 'zh', 'name', '數碼港'),
(77678, 65403, 'en', 'name', 'Catholic Agency for Overseas Development'),
(77679, 65404, 'no_lang_code', 'name', 'Chunlan (China)'),
(77680, 65404, 'zh', 'name', 'ę˜„å…°'),
(77681, 65405, 'no_lang_code', 'name', 'Cloughjordan Ecovillage'),
(77682, 65406, 'no_lang_code', 'name', 'Boehringer Ingelheim (Norway)'),
(77683, 65407, 'no_lang_code', 'name', 'Sichuan Provincial Architectural Design and Research Institute (China)'),
(77684, 65407, 'zh', 'name', 'å››å·ēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(77685, 65408, 'ko', 'name', 'ķ…Œė¼ 손'),
(77686, 65408, 'no_lang_code', 'name', 'Terrasun (South Korea)'),
(77687, 65409, 'no_lang_code', 'name', 'Jellagen (United Kingdom)'),
(77688, 65410, 'en', 'name', 'Gloucestershire Guild of Craftsmen'),
(77689, 65411, 'be', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø ŠæŃ€Š¾Š“Š¾Š²Š¾Š»ŃŒŃŃ‚Š²ŠøŃ Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(77690, 65411, 'en', 'name', 'Ministry of Agriculture and Food'),
(77691, 65412, 'no_lang_code', 'name', 'TPV Technology (China)'),
(77692, 65412, 'zh', 'name', 'å† ę·ē§‘ęŠ€'),
(77693, 65413, 'no_lang_code', 'name', 'Belmehanobchermet (Russia)'),
(77694, 65414, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š±ŃŠŠ»Š³Š°Ń€ŃŠŗŠø език'),
(77695, 65414, 'en', 'name', 'Institute for Bulgarian Language'),
(77696, 65415, 'en', 'name', 'Guangxi South Subtropical Agricultural Research Institute'),
(77697, 65415, 'zh', 'name', 'å¹æč„æå—äŗšēƒ­åø¦å†œäøšē§‘å­¦ē ”ē©¶ę‰€'),
(77698, 65416, 'en', 'name', 'Fujian Institute of Microbiology'),
(77699, 65416, 'zh', 'name', 'ē¦å»ŗēœå¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(77700, 65417, 'en', 'name', 'Strategic Investment Board'),
(77701, 65418, 'en', 'name', 'Far Eastern Scientific Research Institute of Mechanization and Electrification of Agriculture'),
(77702, 65418, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Šø ŃŠ»ŠµŠŗŃ‚Ń€ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(77703, 65419, 'en', 'name', 'Sujata Birla Hospital and Medical Research Center'),
(77704, 65420, 'en', 'name', 'Zhejiang Province Institute of Architectural Design and Research'),
(77705, 65420, 'zh', 'name', 'ęµ™ę±Ÿēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(77706, 65421, 'en', 'name', 'Leningrad branch Central Science Research Telecommunications Institute'),
(77707, 65421, 'ru', 'name', 'Š›Š•ŠŠ˜ŠŠ“Š ŠŠ”Š”ŠšŠžŠ• ŠžŠ¢Š”Š•Š›Š•ŠŠ˜Š• Š¦Š•ŠŠ¢Š ŠŠ›Š¬ŠŠžŠ“Šž ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠžŠ“Šž Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢Š Š”Š’ŠÆŠ—Š˜'),
(77708, 65422, 'no_lang_code', 'name', 'OAO Giproniselprom (Russia)'),
(77709, 65423, 'no_lang_code', 'name', 'LiteMagic (China)'),
(77710, 65423, 'zh', 'name', 'ē£Šę˜Žē§‘ęŠ€'),
(77711, 65424, 'no_lang_code', 'name', 'Stronghold Technology (South Korea)'),
(77712, 65425, 'no_lang_code', 'name', 'Runze (China)'),
(77713, 65425, 'zh', 'name', 'é‡åŗ†ę¶¦ę³½åŒ»čÆ'),
(77714, 65426, 'en', 'name', 'Hong Kong Association for the Advancement of Science and Technology'),
(77715, 65426, 'zh', 'name', 'é¦™ęøÆē§‘ęŠ€å”é€²ęœƒ'),
(77716, 65427, 'en', 'name', 'Irish Museum of Modern Art'),
(77717, 65427, 'ga', 'name', 'Aras Nua-Ealaƭne na hƉireann'),
(77718, 65428, 'no_lang_code', 'name', 'NetEase (China)'),
(77719, 65428, 'zh', 'name', 'ē½‘ę˜“'),
(77720, 65429, 'no_lang_code', 'name', 'China General Nuclear Power Corporation (China)'),
(77721, 65429, 'zh', 'name', '中国广核集团'),
(77722, 65430, 'de', 'name', 'Bundesministerium des Innern'),
(77723, 65430, 'en', 'name', 'Federal Ministry of the Interior'),
(77724, 65431, 'en', 'name', 'Institute for International Economic and Political Studies'),
(77725, 65431, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Ń… ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŃ… Šø политических исслеГований'),
(77726, 65432, 'en', 'name', '"Professor Tsvetan Lazarov" Defence Institute'),
(77727, 65433, 'no_lang_code', 'name', 'Boehringer Ingelheim (Taiwan)'),
(77728, 65433, 'zh', 'name', 'å°ē£ē™¾éˆä½³ę®·ę ¼ēæ°č‚”ä»½ęœ‰é™å…¬åø'),
(77729, 65434, 'no_lang_code', 'name', 'Constellation Software (Canada)'),
(77730, 65435, 'en', 'name', 'Jeonbuk Development Institute'),
(77731, 65435, 'ko', 'name', '전북 ź°œė°œģ›'),
(77732, 65436, 'en', 'name', 'Hong Kong Pharmaceutical Manufacturers Association'),
(77733, 65436, 'zh', 'name', 'é¦™ęøÆåˆ¶čÆå•†åä¼šęœ‰é™å…¬åø'),
(77734, 65437, 'en', 'name', 'Shanghai Shipbuilding Technology Research Institute'),
(77735, 65437, 'zh', 'name', 'äøŠęµ·é€ čˆ¹ęŠ€ęœÆē ”ē©¶é™¢'),
(77736, 65438, 'en', 'name', 'All-Russian Research and Design Institute of Metallurgical Engineering'),
(77737, 65438, 'ru', 'name', 'Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(77738, 65439, 'en', 'name', 'All-Russian Scientific Research Institute of Livestock Mechanization'),
(77739, 65439, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации животновоГства'),
(77740, 65440, 'en', 'name', 'All-Russian Scientific Research Institute of the Dairy Industry'),
(77741, 65440, 'ru', 'name', 'Всеросийский ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ¾Š»Š¾Ń‡Š½Š¾Š¹ ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(77742, 65441, 'no_lang_code', 'name', 'Semler Research Center (India)'),
(77743, 65442, 'no_lang_code', 'name', 'BGI Europe (Denmark)'),
(77744, 65443, 'ar', 'name', 'وزارة الصحة العامة'),
(77745, 65443, 'en', 'name', 'Ministry of Public Health'),
(77746, 65444, 'no_lang_code', 'name', 'SZNIIMESH'),
(77747, 65444, 'ru', 'name', 'Деверо-запаГный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Šø ŃŠ»ŠµŠŗŃ‚Ń€ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(77748, 65445, 'en', 'name', 'Central Research Institute of Communications'),
(77749, 65446, 'en', 'name', 'Netherlands Institute in Turkey'),
(77750, 65446, 'tr', 'name', 'Hollanda Araştırma Enstitüsü'),
(77751, 65447, 'no_lang_code', 'name', 'DIPEx International (United Kingdom)'),
(77752, 65448, 'ko', 'name', 'ķ•œģ˜¬ė°”ģ“ģ˜¤ķŒŒė§ˆ'),
(77753, 65448, 'no_lang_code', 'name', 'Hanall Biopharma (South Korea)'),
(77754, 65449, 'en', 'name', 'Center for Beta Cell Therapy in Diabetes'),
(77755, 65450, 'en', 'name', 'European Conference of Transport Research Institutes'),
(77756, 65451, 'en', 'name', 'Hong Kong Plastic Machinery Association'),
(77757, 65451, 'zh', 'name', 'é¦™ęøÆå”‘ę–™ęœŗę¢°åä¼š'),
(77758, 65452, 'en', 'name', 'Midcoast Watersheds Council'),
(77759, 65453, 'no_lang_code', 'name', 'Dolby (Sweden)'),
(77760, 65454, 'en', 'name', 'Scientific Research Institute of Computing Machinery'),
(77761, 65454, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники'),
(77762, 65455, 'no_lang_code', 'name', 'Invicro (United Kingdom)'),
(77763, 65456, 'en', 'name', 'Chongqing Academy of Environmental Science'),
(77764, 65456, 'zh', 'name', 'é‡åŗ†åø‚ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(77765, 65457, 'en', 'name', 'Beijing Automation Control Equipment Institute'),
(77766, 65457, 'zh', 'name', 'åŒ—äŗ¬č‡ŖåŠØåŒ–ęŽ§åˆ¶č®¾å¤‡ē ”ē©¶ę‰€åˆ›å»ŗäŗŽ'),
(77767, 65458, 'en', 'name', 'Belgian Welding Institute'),
(77768, 65458, 'nl', 'name', 'Belgisch Instituut voor Lastechniek'),
(77769, 65459, 'no_lang_code', 'name', 'Craft Group (China)'),
(77770, 65460, 'en', 'name', 'Nizhniy Novgorod Research Institute of Epidemiology and Microbiology named after Academician I.N. Blokhina'),
(77771, 65460, 'ru', 'name', 'АкаГемик И.Š. Блохина ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(77772, 65461, 'en', 'name', 'Heilongjiang Provincial Institute of Hydraulic Research'),
(77773, 65461, 'zh', 'name', 'é»‘é¾™ę±Ÿēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(77774, 65462, 'en', 'name', 'Tomsk Scientific Research Institute of Balneology and Physiotherapy'),
(77775, 65462, 'ru', 'name', 'Томский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠø Šø физиотерапии'),
(77776, 65463, 'fr', 'name', 'Association des Radiologistes du QuƩbec'),
(77777, 65464, 'en', 'name', 'Shaanxi Railway Institute'),
(77778, 65464, 'zh', 'name', '陕脿铁道学院'),
(77779, 65465, 'en', 'name', 'Alabama Department of Economic and Community Affairs'),
(77780, 65466, 'en', 'name', 'Dr. Peter AIDS Foundation'),
(77781, 65467, 'no_lang_code', 'name', 'Green Island Chinese Medicine International Group (China)'),
(77782, 65468, 'no_lang_code', 'name', 'SAIC-GM (China)'),
(77783, 65468, 'zh', 'name', 'äøŠę±½é€šē”Øę±½č½¦'),
(77784, 65469, 'no_lang_code', 'name', 'Yfisoft (China)'),
(77785, 65470, 'en', 'name', 'Campus Notre-Dame-de-Foy'),
(77786, 65471, 'no_lang_code', 'name', 'Bloombase (China)'),
(77787, 65472, 'en', 'name', 'Mental Health Commission of Canada'),
(77788, 65472, 'fr', 'name', 'Commission de la Sante Mentale du Canada'),
(77789, 65473, 'no_lang_code', 'name', 'Bioalpha (Malaysia)'),
(77790, 65474, 'en', 'name', 'Wuxi Pneumatic Technology Research Institute'),
(77791, 65475, 'en', 'name', 'Agrarian Science Center "Donskoy"'),
(77792, 65475, 'ru', 'name', 'Аграрный Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр «Донской»'),
(77793, 65476, 'no_lang_code', 'name', 'IntelliHep (United Kingdom)'),
(77794, 65477, 'no_lang_code', 'name', 'C4X Discovery (United Kingdom)'),
(77795, 65478, 'mn', 'name', '河儗学院'),
(77796, 65478, 'no_lang_code', 'name', 'Hetao College'),
(77797, 65479, 'no_lang_code', 'name', 'Hochtief (Qatar)'),
(77798, 65480, 'en', 'name', 'The Korean Generative Grammar Circle'),
(77799, 65480, 'ko', 'name', 'ķ•œźµ­ 문법 ķ•™ķšŒ'),
(77800, 65481, 'no_lang_code', 'name', 'Indutherm (Spain)'),
(77801, 65482, 'en', 'name', 'Heilongjiang Academy of Sciences'),
(77802, 65482, 'zh', 'name', 'é»‘é¾™ę±Ÿēœē§‘å­¦é™¢'),
(77803, 65483, 'no_lang_code', 'name', 'Kelada Pharmachem (Ireland)'),
(77804, 65484, 'en', 'name', 'Research Institute of Tire Industry'),
(77805, 65484, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ шинной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(77806, 65485, 'en', 'name', 'Shanghai Fire Research Institute'),
(77807, 65486, 'no_lang_code', 'name', 'Pedorthic Technology (China)'),
(77808, 65487, 'no_lang_code', 'name', 'Hunan Agricultural Products (China)'),
(77809, 65487, 'zh', 'name', 'ę¹–å—å†œäŗ§å“'),
(77810, 65488, 'no_lang_code', 'name', 'American Transmission Company (United States)'),
(77811, 65489, 'en', 'name', 'Regional Geographical Society of Korea'),
(77812, 65489, 'ko', 'name', 'ķ•œźµ­ 지리 ķ•™ķšŒ'),
(77813, 65490, 'en', 'name', 'The Society of Korean Performance Art and Culture'),
(77814, 65490, 'ko', 'name', 'ķ•œźµ­ 공연 예술 ķ•™ķšŒ'),
(77815, 65491, 'ko', 'name', '공유 ė° źø°ģˆ ė²•ģøģ˜'),
(77816, 65491, 'no_lang_code', 'name', 'Sharing and Technologies Incorporated (South Korea)'),
(77817, 65492, 'no_lang_code', 'name', 'Johnson Controls (Ireland)'),
(77818, 65493, 'en', 'name', 'The Department of Arkansas Heritage'),
(77819, 65494, 'en', 'name', 'Malta Intelligent Energy Management Agency'),
(77820, 65495, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ'),
(77821, 65495, 'en', 'name', 'Ministry of Education and Higher Education'),
(77822, 65496, 'en', 'name', 'Thelonious Monk Institute of Jazz'),
(77823, 65497, 'ko', 'name', 'ģ˜ģ§„źø°ģˆ  ģ£¼ģ‹ķšŒģ‚¬'),
(77824, 65497, 'no_lang_code', 'name', 'Youngjin Technology (South Korea)'),
(77825, 65498, 'en', 'name', 'Kimmage Development Studies Centre'),
(77826, 65499, 'en', 'name', 'AO Foundation'),
(77827, 65500, 'en', 'name', 'JSC Federal Center for Geoecological Systems'),
(77828, 65501, 'no_lang_code', 'name', 'O-film (China)'),
(77829, 65501, 'zh', 'name', 'ę¬§č²ē§‘ęŠ€'),
(77830, 65502, 'en', 'name', 'Scientific Research Engineering Institute'),
(77831, 65502, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ–Š•ŠŠ•Š ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(77832, 65503, 'en', 'name', 'Fischer Family Trust'),
(77833, 65504, 'en', 'name', 'Centre for Innovation Excellence in Livestock'),
(77834, 65505, 'no_lang_code', 'name', 'Zonhon Biopharma Institute'),
(77835, 65505, 'zh', 'name', 'ę±Ÿč‹ä¼—ēŗ¢ē”Ÿē‰©å·„ēØ‹åˆ›čÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(77836, 65506, 'ko', 'name', 'ė…øė°”ķ‹°ģŠ¤'),
(77837, 65506, 'no_lang_code', 'name', 'Novartis (South Korea)'),
(77838, 65507, 'en', 'name', 'Wuxi Dongfang Environmental Engineering Design Institute'),
(77839, 65507, 'zh', 'name', 'ę— é””åø‚äøœę–¹ēŽÆå¢ƒå·„ēØ‹č®¾č®”ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(77840, 65508, 'en', 'name', 'Radiocommunications Agency'),
(77841, 65508, 'nl', 'name', 'Agentschap Telecom'),
(77842, 65509, 'en', 'name', 'PBC Foundation'),
(77843, 65510, 'no_lang_code', 'name', 'Boris FX (United Kingdom)'),
(77844, 65511, 'no_lang_code', 'name', 'Shanghai Industrial Boiler Research Institute (China)'),
(77845, 65511, 'zh', 'name', 'äøŠęµ·å·„äøšé”…ē‚‰ē ”ē©¶ę‰€'),
(77846, 65512, 'fr', 'name', 'Regroupement des Organismes Communautaires QuƩbƩcoise de Lutte au DƩcrochage'),
(77847, 65513, 'en', 'name', 'State Scientific Center - Research Institute of Atomic Reactors'),
(77848, 65513, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр — ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ атомных реакторов'),
(77849, 65514, 'ko', 'name', 'ģž„ģ•ˆėŒ€ķ•™źµ'),
(77850, 65514, 'no_lang_code', 'name', 'Jangan University'),
(77851, 65515, 'en', 'name', 'Defence Equipment and Support'),
(77852, 65516, 'en', 'name', 'The Third Institute of the Ministry of Public Security'),
(77853, 65516, 'zh', 'name', 'å…¬å®‰éƒØē¬¬äø‰ē ”ē©¶ę‰€'),
(77854, 65517, 'en', 'name', 'Korean Family Resource Management Association'),
(77855, 65517, 'ko', 'name', 'ķ•œźµ­ź°€ģ”±ģžģ›ź²½ģ˜ķ•™ķšŒ'),
(77856, 65518, 'en', 'name', 'Dongyang Hanmoon Association'),
(77857, 65518, 'ko', 'name', 'ė™ģ–‘ ķ•œė¬ø ģ—°ķ•©ķšŒ'),
(77858, 65519, 'no_lang_code', 'name', 'NanoBioImaging (China)'),
(77859, 65520, 'en', 'name', 'Krasnodar Research Institute of Storage and Processing of Agricultural Products'),
(77860, 65520, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø переработки ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŠæŃ€Š¾Š“ŃƒŠŗŃ†ŠøŠø'),
(77861, 65521, 'no_lang_code', 'name', 'Sengital (China)'),
(77862, 65522, 'en', 'name', 'West Virginia Division of Natural Resources'),
(77863, 65523, 'en', 'name', 'Korean Association for Radiation Application'),
(77864, 65523, 'ko', 'name', 'ķ•œźµ­ė°©ģ‚¬ģ„ ģ§„ķ„ķ˜‘ķšŒ'),
(77865, 65524, 'no_lang_code', 'name', 'Cambridge Carbon Capture (United Kingdom)'),
(77866, 65525, 'en', 'name', 'Learning Hub Limerick'),
(77867, 65526, 'de', 'name', 'Bundesverband Garten- Landschafts- und Sportplatzbau'),
(77868, 65527, 'no_lang_code', 'name', 'DHC Software (China)'),
(77869, 65528, 'en', 'name', 'Society for Korean Traditional Performing Arts'),
(77870, 65528, 'ko', 'name', 'ķ•œźµ­ģ „ķ†µź³µģ—°ģ˜ˆģˆ ķ•™ķšŒ'),
(77871, 65529, 'no_lang_code', 'name', 'Arterius (United Kingdom)'),
(77872, 65530, 'en', 'name', 'Head Design Institute Chelyabinskgrazhdanproekt'),
(77873, 65531, 'no_lang_code', 'name', 'Chinatex Posts and Telecommunications Consulting and Design Institute (China)'),
(77874, 65531, 'zh', 'name', 'äø­č®Æé‚®ē”µå’ØčÆ¢č®¾č®”é™¢ęœ‰é™å…¬åø'),
(77875, 65532, 'en', 'name', 'Ufa Research Institute of Occupational Health and Human Ecology'),
(77876, 65532, 'ru', 'name', 'Уфимский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицины Ń‚Ń€ŃƒŠ“Š° Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø человека'),
(77877, 65533, 'en', 'name', 'Korean Association for Archaeological Heritage'),
(77878, 65533, 'ko', 'name', 'ķ•œźµ­ė§¤ģž„ė¬øķ™”ģž¬ķ˜‘ķšŒ'),
(77879, 65534, 'ko', 'name', 'ģ—ė¹…ģŠ¤ģ  '),
(77880, 65534, 'no_lang_code', 'name', 'Avixgen (South Korea)'),
(77881, 65535, 'en', 'name', 'Shanghai Light Industry Research Institute'),
(77882, 65535, 'zh', 'name', 'äøŠęµ·č½»å·„äøšē ”ē©¶é™¢'),
(77883, 65536, 'en', 'name', 'Ministry of Economics'),
(77884, 65536, 'lv', 'name', 'Latvijas Republikas Ekonomikas ministrija'),
(77885, 65537, 'en', 'name', 'National Board of Patents and Registration of Finland'),
(77886, 65537, 'fi', 'name', 'Patentti- ja rekisterihallitus'),
(77887, 65538, 'no_lang_code', 'name', 'Mascot Spincontrol (India)'),
(77888, 65539, 'en', 'name', 'Korean Society for Political Thought'),
(77889, 65539, 'ko', 'name', 'ķ•œźµ­ģ •ģ¹˜ģ‚¬ģƒķ•™ķšŒ'),
(77890, 65540, 'no_lang_code', 'name', 'Burelle (France)'),
(77891, 65541, 'bg', 'name', 'ŠŃ€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-Дизайнерска ŠŠ³ŠµŠ½Ń†ŠøŃ ŠžŠžŠ”'),
(77892, 65541, 'en', 'name', 'Architectural Design Agency'),
(77893, 65542, 'no_lang_code', 'name', 'Novosibirsk Tuberculosis Research Institute'),
(77894, 65542, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»Ń‘Š·Š°'),
(77895, 65543, 'fr', 'name', 'CollĆØge de Rosemont'),
(77896, 65544, 'no_lang_code', 'name', 'China National Salt Industry Corporation (China)'),
(77897, 65544, 'zh', 'name', 'äø­å›½ē›äøšę€»å…¬åø'),
(77898, 65545, 'no_lang_code', 'name', 'Jiuquan Iron & Steel (China)'),
(77899, 65545, 'zh', 'name', '酒泉钢铁'),
(77900, 65546, 'ja', 'name', 'ę±ę—„ęœ¬ę—…å®¢é‰„é“ę Ŗå¼ä¼šē¤¾'),
(77901, 65546, 'no_lang_code', 'name', 'East Japan Railway (Japan)'),
(77902, 65547, 'en', 'name', 'Ministry of Justice'),
(77903, 65547, 'sr', 'name', 'Ministarstvo Pravde u Vladi Crne Gore'),
(77904, 65548, 'no_lang_code', 'name', 'Asia Pacific Satellite (South Korea)'),
(77905, 65549, 'no_lang_code', 'name', 'Chongqing Yongda Precision Machinery (China)'),
(77906, 65549, 'zh', 'name', 'é‡åŗ†ę°øč¾¾ē²¾åÆ†ęœŗę¢°'),
(77907, 65550, 'en', 'name', 'Zhangjiakou Academy of Agricultural Sciences'),
(77908, 65550, 'zh', 'name', 'å¼ å®¶å£åø‚å†œäøšē§‘å­¦é™¢å†œäøš'),
(77909, 65551, 'ko', 'name', '(주)ģ—ģŠ¤ķ‹°ģ•Œė°”ģ“ģ˜¤ķ…'),
(77910, 65551, 'no_lang_code', 'name', 'STR Biotech (South Korea)'),
(77911, 65552, 'no_lang_code', 'name', 'Jinan Foundry and Metalforming Machinery Research Institute (China)'),
(77912, 65552, 'zh', 'name', 'ęµŽå—é“øé€ é”»åŽ‹ęœŗę¢°ē ”ē©¶ę‰€'),
(77913, 65553, 'no_lang_code', 'name', 'Sehenstar Energy Technology (China)'),
(77914, 65553, 'zh', 'name', 'č‹å·žåå®ę³°čŠ‚čƒ½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(77915, 65554, 'no_lang_code', 'name', 'Excivion (United Kingdom)'),
(77916, 65555, 'no_lang_code', 'name', 'Shenzhen Institute of Innovation Design (China)'),
(77917, 65555, 'zh', 'name', 'ę·±åœ³åø‚åˆ›ę–°č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(77918, 65556, 'no_lang_code', 'name', 'Ingersoll Rand (Ireland)'),
(77919, 65557, 'en', 'name', 'Development Agency of Serbia'),
(77920, 65557, 'sr', 'name', 'Развојна Š°Š³ŠµŠ½Ń†ŠøŃ˜Š° Š”Ń€Š±ŠøŃ˜Šµ'),
(77921, 65558, 'no_lang_code', 'name', 'E4tech (United Kingdom)'),
(77922, 65559, 'no_lang_code', 'name', 'MosvodokanalNIIproject Institute (Russia)'),
(77923, 65559, 'ru', 'name', 'ŠœŠ¾ŃŠ²Š¾Š“Š¾ŠŗŠ°Š½Š°Š»ŠŠ˜Š˜ŠæŃ€Š¾ŠµŠŗŃ‚ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(77924, 65560, 'en', 'name', 'Korea Invention Promotion Association'),
(77925, 65560, 'ko', 'name', 'ķ•œźµ­ė°œėŖ…ģ§„ķ„ķšŒ'),
(77926, 65561, 'en', 'name', 'Spectrum Healthcare'),
(77927, 65561, 'hi', 'name', 'ą¤øą„ą¤Ŗą„‡ą¤•ą„ą¤Ÿą„ą¤°ą¤® ą¤†ą¤°ą„‹ą¤—ą„ą¤Æ'),
(77928, 65562, 'no_lang_code', 'name', 'Guangdong Southern China Special Gas Institute (China)'),
(77929, 65562, 'zh', 'name', 'å¹æäøœå—åŽē‰¹ę®Šę°”ä½“ē ”ē©¶ę‰€'),
(77930, 65563, 'no_lang_code', 'name', 'Kanichi (United Kingdom)'),
(77931, 65564, 'no_lang_code', 'name', 'South China Municipal Engineering Design and Research Institute (China)'),
(77932, 65564, 'zh', 'name', 'äø­å›½åø‚ę”æå·„ēØ‹äø­å—č®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬'),
(77933, 65565, 'en', 'name', 'Danish Business Authority'),
(77934, 65566, 'en', 'name', 'Siberian Research, Design and Design Institute of Aluminum and Electrode Industry'),
(77935, 65566, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Š»ŃŽŠ¼ŠøŠ½ŠøŠµŠ²Š¾Š¹ Šø ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š“Š½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(77936, 65567, 'en', 'name', 'Cancer Trials Australia'),
(77937, 65568, 'en', 'name', 'Enable Ireland'),
(77938, 65569, 'el', 'name', 'Ī”Ī¹ĪµĻĪøĻ…Ī½ĻƒĪ· ĪšĪ±Ī»Ī±Ī¼Ļ€Ī¬ĪŗĪ±Ļ‚ 28 & Αμπάτη Τρίκαλα,'),
(77939, 65569, 'en', 'name', 'Municipal Enterprise for Social Development Trikalon'),
(77940, 65570, 'en', 'name', 'Scientific and Research Institute of Textile Materials'),
(77941, 65570, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠŗŃŃ‚ŠøŠ»ŃŒŠ½Ń‹Ń… материалов'),
(77942, 65571, 'en', 'name', 'Energy Research Institute'),
(77943, 65571, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢čƒ½ęŗē ”ē©¶ę‰€'),
(77944, 65572, 'no_lang_code', 'name', 'Zhejiang Runtu (China)'),
(77945, 65572, 'zh', 'name', 'ęµ™ę±Ÿé—°åœŸč‚”ä»½ęœ‰é™å…¬åø'),
(77946, 65573, 'ko', 'name', 'ģ‚¼ģ•„ģ œģ•½'),
(77947, 65573, 'no_lang_code', 'name', 'Sama Pharm (South Korea)'),
(77948, 65574, 'no_lang_code', 'name', 'InStream Fisheries Research (Canada)'),
(77949, 65575, 'en', 'name', 'Ministry of Justice'),
(77950, 65575, 'fi', 'name', 'Oikeusministeriƶ'),
(77951, 65576, 'no_lang_code', 'name', 'Shanghai Tunnel Engineering (China)'),
(77952, 65576, 'zh', 'name', 'äøŠęµ·éš§é“å·„ēØ‹'),
(77953, 65577, 'en', 'name', 'Far Eastern Scientific Research Institute of Hydraulic Engineering and Reclamation'),
(77954, 65577, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ ŠŠ˜Š˜ гиГротехники Šø мелиорации'),
(77955, 65578, 'en', 'name', 'Cambridge Curiosity and Imagination'),
(77956, 65579, 'en', 'name', 'Luohe Academy of Agricultural Sciences'),
(77957, 65579, 'zh', 'name', 'ę²³å—ēœę¼Æę²³åø‚å†œäøšē§‘å­¦ē ”ē©¶ę‰€'),
(77958, 65580, 'no_lang_code', 'name', 'Calon Cardio (United Kingdom)'),
(77959, 65581, 'no_lang_code', 'name', 'Guangzhou Academy of Building Research (China)'),
(77960, 65582, 'en', 'name', 'M.B.Barvalia Foundation’s Spandan Organizations'),
(77961, 65583, 'en', 'name', 'International Council of Museums'),
(77962, 65584, 'hi', 'name', 'ą¤²ą¤œą„€ लाइफ ą¤øą¤¾ą¤‡ą¤‚ą¤øą„‡ą¤œ इंऔिया ą¤Ŗą„ą¤°ą¤¾ą„¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(77963, 65584, 'kn', 'name', 'ą²²ą³‡ą²œą²æ ą²²ą³ˆą²«ą³ ą²øą³ˆą²Øą³ą²øą²øą³ ಇಂಔಿಯಾ ą²Ŗą³ą²°ą³ˆ. ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(77964, 65584, 'no_lang_code', 'name', 'LG (India)'),
(77965, 65585, 'no_lang_code', 'name', 'Beijing Founder Electronics (China)'),
(77966, 65585, 'zh', 'name', 'åŒ—äŗ¬åŒ—å¤§ę–¹ę­£ē”µå­ęœ‰é™å…¬åø'),
(77967, 65586, 'de', 'name', 'Bundesverband WindEnergie'),
(77968, 65586, 'en', 'name', 'German Wind Energy Association'),
(77969, 65587, 'no_lang_code', 'name', 'Belorusneft (Belarus)'),
(77970, 65587, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŠ½ŠµŃ„Ń‚ŃŒ'),
(77971, 65588, 'ar', 'name', 'Ų§Ł„Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ų±Ł‚Ł…ŁŠŲ© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ©'),
(77972, 65588, 'en', 'name', 'Saudi Digital Library'),
(77973, 65589, 'no_lang_code', 'name', 'Drax (United Kingdom)'),
(77974, 65590, 'no_lang_code', 'name', 'China First Heavy Industries (China)'),
(77975, 65590, 'zh', 'name', 'äø­å›½ē¬¬äø€é‡åž‹ęœŗę¢°č‹±'),
(77976, 65591, 'no_lang_code', 'name', 'Zhongji Test Equipment (China)'),
(77977, 65591, 'zh', 'name', 'äø­ęœŗčÆ•éŖŒč£…å¤‡č‚”ä»½ęœ‰é™å…¬åø'),
(77978, 65592, 'en', 'name', 'The Society for Dance Documentation & History'),
(77979, 65592, 'ko', 'name', '묓용 ķ˜‘ķšŒ ė¬øģ„œ ė° 역사'),
(77980, 65593, 'en', 'name', 'Equality and Human Rights Commission'),
(77981, 65594, 'en', 'name', 'Manchester Climate Change Agency'),
(77982, 65595, 'en', 'name', 'Lithuanian Road Administration under the Ministry of Transport and Communications'),
(77983, 65595, 'lt', 'name', 'Lietuvos automobilių kelių direkcija prie Susisiekimo ministerijos'),
(77984, 65596, 'no_lang_code', 'name', 'YuYu Pharma (South Korea)'),
(77985, 65597, 'ko', 'name', '(주)ė„„ģŠ¤ė°”ģ“ģ˜¤'),
(77986, 65597, 'no_lang_code', 'name', 'Nex Bio (South Korea)'),
(77987, 65598, 'no_lang_code', 'name', 'Qihoo 360 (China)'),
(77988, 65598, 'zh', 'name', 'å„‡č™Ž360'),
(77989, 65599, 'en', 'name', 'Research Institute of Radio'),
(77990, 65599, 'ru', 'name', 'Š¤Š“Š£ŠŸ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГио'),
(77991, 65600, 'no_lang_code', 'name', 'Cyclone Energy Group (United States)'),
(77992, 65601, 'en', 'name', 'ELI-HU Research and Development Non-Profit'),
(77993, 65602, 'en', 'name', 'Hong Kong Productivity Council'),
(77994, 65602, 'zh', 'name', 'é¦™ęøÆē”Ÿē”¢åŠ›äæƒé€²å±€'),
(77995, 65603, 'en', 'name', 'Newton International School'),
(77996, 65604, 'no_lang_code', 'name', 'Oxford Drug Design (United Kingdom)'),
(77997, 65605, 'no_lang_code', 'name', 'GoDaddy (United States)'),
(77998, 65606, 'en', 'name', 'North Caucasian Zonal Scientific Research Veterinary Institute'),
(77999, 65606, 'ru', 'name', 'Деверо-Кавказский Š—Š¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ветеринарный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(78000, 65607, 'en', 'name', 'Xiamen Institute of Building Research Group'),
(78001, 65607, 'zh', 'name', 'åŽ¦é—Øå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(78002, 65608, 'en', 'name', 'Center for State and Local Government Excellence'),
(78003, 65609, 'ar', 'name', 'Ų„ŁƒŲ³ŁˆŁ† Ł…ŁˆŲØŁŠŁ„ā€¬ā€Ž'),
(78004, 65609, 'no_lang_code', 'name', 'ExxonMobil (Qatar)'),
(78005, 65610, 'en', 'name', 'End Domestic Abuse Wisconsin'),
(78006, 65611, 'no_lang_code', 'name', 'China Electric Equipment Group (China)'),
(78007, 65611, 'zh', 'name', 'äø­ē”µē”µę°”é›†å›¢ęœ‰é™å…¬åø'),
(78008, 65612, 'hi', 'name', 'औाबर'),
(78009, 65612, 'no_lang_code', 'name', 'Dabur (India)'),
(78010, 65613, 'en', 'name', 'Institute on Governance'),
(78011, 65613, 'fr', 'name', 'Institut sur la Gouvernance'),
(78012, 65614, 'en', 'name', 'Department of Justice'),
(78013, 65614, 'ga', 'name', 'An Roinn DlĆ­ agus Cirt'),
(78014, 65615, 'no_lang_code', 'name', 'Bloodaxe Books (United Kingdom)'),
(78015, 65616, 'fr', 'name', 'HƓpital Fleurimont'),
(78016, 65617, 'no_lang_code', 'name', 'Chevron (United Kingdom)'),
(78017, 65618, 'no_lang_code', 'name', 'Galamedia (Canada)'),
(78018, 65619, 'no_lang_code', 'name', 'Cargotec (Poland)'),
(78019, 65620, 'de', 'name', 'Bundesverband Naturkost Naturwaren'),
(78020, 65621, 'en', 'name', 'The T.S. Eliot Society of Korea'),
(78021, 65621, 'ko', 'name', 'ķ•œźµ­T.S.ģ—˜ė¦¬ģ—‡ķ•™ķšŒ'),
(78022, 65622, 'no_lang_code', 'name', 'Body Organ Biomedical (Taiwan)'),
(78023, 65623, 'fr', 'name', 'L’Institut Wallon de l’Évaluation, de la Prospective et de la Statistique'),
(78024, 65624, 'ar', 'name', 'أوريدو'),
(78025, 65624, 'no_lang_code', 'name', 'Ooredoo (Qatar)');
INSERT INTO `ror_settings` VALUES
(78026, 65625, 'no_lang_code', 'name', 'Phorest Salon Software (Ireland)'),
(78027, 65626, 'en', 'name', 'North-Caucasian Zonal Research Institute of Horticulture and Viticulture'),
(78028, 65626, 'ru', 'name', 'Деверо-Кавказский Š—Š¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ саГовоГства Šø винограГарства'),
(78029, 65627, 'el', 'name', 'Ī„Ļ€Ī·ĻĪµĻƒĪÆĪ± Πολιτικής Αεροπορίας'),
(78030, 65627, 'en', 'name', 'Hellenic Civil Aviation Authority'),
(78031, 65628, 'ko', 'name', 'ķ•œźµ­ķŒŒė§ˆ'),
(78032, 65628, 'no_lang_code', 'name', 'Korea Pharma (South Korea)'),
(78033, 65629, 'en', 'name', 'Polish Air Navigation Services Agency'),
(78034, 65629, 'pl', 'name', 'Polska Agencja Żeglugi Powietrznej'),
(78035, 65630, 'no_lang_code', 'name', 'Rough Magic Theatre (Ireland)'),
(78036, 65631, 'no_lang_code', 'name', 'Amneal (India)'),
(78037, 65632, 'no_lang_code', 'name', 'Konka (China)'),
(78038, 65632, 'zh', 'name', '康佳集团'),
(78039, 65633, 'no_lang_code', 'name', 'Exactech (South Korea)'),
(78040, 65634, 'en', 'name', 'Research Institute of Scientific Research and Production Association'),
(78041, 65634, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ Šø произвоГственного Š¾Š±ŃŠŠµŠ“ŠøŠ½ŠµŠ½ŠøŃ'),
(78042, 65635, 'no_lang_code', 'name', 'Cavium (United States)'),
(78043, 65636, 'en', 'name', 'New Mexico Military Institute'),
(78044, 65637, 'en', 'name', 'Korean Constitutional Law Association'),
(78045, 65637, 'ko', 'name', 'ķ•œźµ­ķ—Œė²•ķ•™ķšŒ'),
(78046, 65638, 'en', 'name', 'KG Hospital'),
(78047, 65639, 'en', 'name', 'Blackpool Council'),
(78048, 65640, 'no_lang_code', 'name', 'BIPVco (United Kingdom)'),
(78049, 65641, 'en', 'name', 'Centre Cyber-aide'),
(78050, 65642, 'en', 'name', 'International Institute for the Urban Environment'),
(78051, 65642, 'nl', 'name', 'Internationaal Instituut voor de stedelijke omgeving'),
(78052, 65643, 'en', 'name', 'The Zalman Shazar Center'),
(78053, 65643, 'he', 'name', '×ž×Ø×›×– זלמן שזר'),
(78054, 65644, 'no_lang_code', 'name', 'Pharmbio Korea (South Korea)'),
(78055, 65645, 'en', 'name', 'International Health Central American Institute Foundation'),
(78056, 65646, 'no_lang_code', 'name', 'Fido Intelligence (Poland)'),
(78057, 65647, 'no_lang_code', 'name', 'HealthUnlocked (United Kingdom)'),
(78058, 65648, 'en', 'name', 'St Nicholas Trust'),
(78059, 65649, 'no_lang_code', 'name', 'True Films (Ireland)'),
(78060, 65650, 'no_lang_code', 'name', 'Jets Technics (China)'),
(78061, 65651, 'en', 'name', 'Voronezh State University of Forestry and Technologies'),
(78062, 65651, 'ru', 'name', 'Воронежский Š³Š¾ŃŃƒŠ“арственный лесотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š“.ф. ŠœŠ¾Ń€Š¾Š·Š¾Š²Š°'),
(78063, 65652, 'en', 'name', 'Engineers Ireland'),
(78064, 65652, 'ga', 'name', 'Cumann na nInnealtóirí'),
(78065, 65653, 'no_lang_code', 'name', 'REGEN Biotech (South Korea)'),
(78066, 65654, 'no_lang_code', 'name', 'Golden Concord Group (China)'),
(78067, 65654, 'zh', 'name', '金色 康科德集团'),
(78068, 65655, 'en', 'name', 'Shandong Institute of Food and Drug Inspection'),
(78069, 65655, 'zh', 'name', 'å±±äøœēœé£Ÿå“čÆå“ę£€éŖŒē ”ē©¶é™¢'),
(78070, 65656, 'no_lang_code', 'name', 'Lively Impact (China)'),
(78071, 65657, 'en', 'name', 'Sunshine Hospitals'),
(78072, 65657, 'te', 'name', 'ą°øą°Øą± ą°·ą±ˆą°Øą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±ą°øą±'),
(78073, 65658, 'no_lang_code', 'name', 'Penza Electrotechnical Research Institute (Russia)'),
(78074, 65658, 'ru', 'name', 'Пензенский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹'),
(78075, 65659, 'no_lang_code', 'name', 'Harmonic (United States)'),
(78076, 65660, 'no_lang_code', 'name', 'Avantor (Poland)'),
(78077, 65661, 'en', 'name', 'Liaoning General Aviation Research Institute'),
(78078, 65661, 'zh', 'name', 'č¾½å®é€šē”ØčˆŖē©ŗē ”ē©¶é™¢'),
(78079, 65662, 'en', 'name', 'Wellcome Centre of Cultures and Environments of Health'),
(78080, 65663, 'en', 'name', 'All-Russian Scientific Research Institute of Agrochemistry named after D.N. Pryanishnikova'),
(78081, 65663, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š”.Š.ŠŸŃ€ŃŠ½ŠøŃˆŠ½ŠøŠŗŠ¾Š²Š°'),
(78082, 65664, 'de', 'name', 'Bundesagentur für Arbeit'),
(78083, 65664, 'en', 'name', 'Federal Employment Agency'),
(78084, 65665, 'en', 'name', 'All-Russian Scientific and Research Institute of Brucellosis and Tuberculosis of Animals'),
(78085, 65665, 'ru', 'name', 'Всеросcийский Š½Š°ŃƒŃ‡Š½Š¾-исcŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š±Ń€ŃƒŃ†ŠµŠ»Š»ŠµŠ·Š° Šø Ń‚ŃƒŠ±ŠµŃ€ŠŗŃƒŠ»ŠµŠ·Š° животных'),
(78086, 65666, 'en', 'name', 'GAM Investments'),
(78087, 65667, 'no_lang_code', 'name', 'Abbott (Singapore)'),
(78088, 65668, 'no_lang_code', 'name', 'China Railway Shanghai Design Institute Group (China)'),
(78089, 65668, 'zh', 'name', 'äø­é“äøŠęµ·č®¾č®”é™¢é›†å›¢'),
(78090, 65669, 'en', 'name', 'Exemplar Associates'),
(78091, 65670, 'no_lang_code', 'name', 'Bharat Biotech (India)'),
(78092, 65671, 'no_lang_code', 'name', 'Evotec (India)'),
(78093, 65672, 'no_lang_code', 'name', 'Geo Green Power (United Kingdom)'),
(78094, 65673, 'en', 'name', 'International Tuberculosis Research Center'),
(78095, 65673, 'ko', 'name', 'źµ­ģ œź²°ķ•µģ—°źµ¬ģ†Œ'),
(78096, 65674, 'no_lang_code', 'name', 'EnerSys (United Kingdom)'),
(78097, 65675, 'en', 'name', 'Ministry of Transport, Maritime Affairs and Communications'),
(78098, 65675, 'tr', 'name', 'Ulaştırma, Denizcilik ve Haberleşme Bakanlığı'),
(78099, 65676, 'en', 'name', 'Korean Home Economics Education Association'),
(78100, 65676, 'ko', 'name', 'ķ•œźµ­ź°€ģ •ź³¼źµģœ”ķ•™ķšŒ 회'),
(78101, 65677, 'no_lang_code', 'name', 'Nobel Academy'),
(78102, 65678, 'de', 'name', 'ift Rosenheim'),
(78103, 65679, 'en', 'name', 'National Directorate General for Disaster Management'),
(78104, 65680, 'en', 'name', 'Tianjin Heat Treatment Research Institute'),
(78105, 65680, 'zh', 'name', 'å¤©ę“„åø‚ēƒ­å¤„ē†ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(78106, 65681, 'no_lang_code', 'name', 'Nets (Denmark)'),
(78107, 65682, 'no_lang_code', 'name', 'Coal Industry Taiyuan Design and Research Institute (China)'),
(78108, 65682, 'zh', 'name', 'ē…¤ē‚­å·„äøšå¤ŖåŽŸč®¾č®”ē ”ē©¶é™¢'),
(78109, 65683, 'en', 'name', 'Metamorphose VI AISBL'),
(78110, 65684, 'no_lang_code', 'name', 'Spectrum Clinical Research (India)'),
(78111, 65685, 'en', 'name', 'Ministry of Economic Development and Trade'),
(78112, 65685, 'uk', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ економічного Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ і торгівлі України'),
(78113, 65686, 'en', 'name', 'Shinhan University'),
(78114, 65686, 'ko', 'name', 'ģ‹ ķ•œ ėŒ€ķ•™źµ'),
(78115, 65687, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© ŲØŲŖŲ§ŲØŁ„'),
(78116, 65687, 'fr', 'name', 'Institut SupĆ©rieur des Ɖtudes Technologiques de Nabeul'),
(78117, 65688, 'en', 'name', 'Co-operatives of Innovative Intellectuals'),
(78118, 65688, 'zh', 'name', 'åˆ›ę–°ēŸ„čÆ†åˆ†å­åˆä½œē¤¾'),
(78119, 65689, 'en', 'name', 'Korea Open Association Early Childhood Education'),
(78120, 65689, 'ko', 'name', 'ķ•œźµ­ģ—“ė¦°ģœ ģ•„źµģœ”ķ•™ķšŒ'),
(78121, 65690, 'cy', 'name', 'Amgueddfa Ceredigion'),
(78122, 65690, 'en', 'name', 'Ceredigion Museum'),
(78123, 65691, 'no_lang_code', 'name', 'Houot Agencement (France)'),
(78124, 65692, 'en', 'name', 'Saratov Research Institute of Traumatology and Orthopedics'),
(78125, 65692, 'ru', 'name', 'Даратовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии'),
(78126, 65693, 'ko', 'name', 'ėŒ€ģ›ģ œģ•½'),
(78127, 65693, 'no_lang_code', 'name', 'Daewon Pharm (South Korea)'),
(78128, 65694, 'en', 'name', 'Institute of Marine Technology Problems of the Far-Eastern Branch of the Russian Academy of Sciences'),
(78129, 65694, 'ru', 'name', 'ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем морских технологий Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(78130, 65695, 'en', 'name', 'All-Russian Horticultural Institute for Breeding, Agrotechnology and Nursery'),
(78131, 65695, 'ru', 'name', 'Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ Š”Š•Š›Š•ŠšŠ¦Š˜ŠžŠŠŠž-Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š”ŠŠ”ŠžŠ’ŠžŠ”Š”Š¢Š’Š И ŠŸŠ˜Š¢ŠžŠœŠŠ˜ŠšŠžŠ’ŠžŠ”Š”Š¢Š’Š'),
(78132, 65696, 'en', 'name', 'Flemish Community'),
(78133, 65697, 'en', 'name', 'Hanoi Pedagogical University 2'),
(78134, 65697, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m HĆ  Nį»™i 2'),
(78135, 65698, 'en', 'name', 'Consortium Clinical Research'),
(78136, 65699, 'en', 'name', 'Institute of Precision Mechanics and Computer Science S.A. Lebedev'),
(78137, 65699, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ точной механики Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники имени Š”. А. ЛебеГева Š ŠŠ'),
(78138, 65700, 'en', 'name', 'Asian Community AIDS Services'),
(78139, 65701, 'en', 'name', 'Hong Kong Statistical Society'),
(78140, 65701, 'zh', 'name', 'é¦™ęøÆēµ±čØˆå­øęœƒ'),
(78141, 65702, 'en', 'name', 'Anhui Institute of Robotics Industrial Technology Research Institute'),
(78142, 65702, 'zh', 'name', 'å®‰å¾½å·„ēØ‹å¤§å­¦ęœŗå™Øäŗŗäŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(78143, 65703, 'en', 'name', 'Citizens Committee for Historic Preservation'),
(78144, 65704, 'en', 'name', 'HKUST Shenzhen Research Institute'),
(78145, 65705, 'no_lang_code', 'name', 'IQVIA (India)'),
(78146, 65706, 'no_lang_code', 'name', 'Simcere Pharmaceutical (China)'),
(78147, 65706, 'zh', 'name', 'å…ˆå£°čÆäøš'),
(78148, 65707, 'no_lang_code', 'name', 'Exosect Enabling Technologies'),
(78149, 65708, 'ko', 'name', 'ģ‚¼ģ§„ģ œģ•½'),
(78150, 65708, 'no_lang_code', 'name', 'Samjin Pharm (South Korea)'),
(78151, 65709, 'no_lang_code', 'name', 'UCB Pharma (Spain)'),
(78152, 65710, 'en', 'name', 'Center for Agricultural Resources Research'),
(78153, 65710, 'zh', 'name', 'å†œäøščµ„ęŗē ”ē©¶äø­åæƒ'),
(78154, 65711, 'en', 'name', 'Lloyd''s Maritime Academy'),
(78155, 65712, 'en', 'name', 'Korea Economic Development Institute'),
(78156, 65712, 'ko', 'name', 'ķ•œźµ­ź²½ģ œė°œģ „ķ•™ķšŒ'),
(78157, 65713, 'en', 'name', 'Bapu Nature Cure Hospital & Yogashram'),
(78158, 65714, 'en', 'name', 'Korea Customs Trade Development Institute'),
(78159, 65714, 'ko', 'name', 'ķ•œźµ­ ź“€ģ„øė¬“ģ—­ź°œė°œģ›'),
(78160, 65715, 'en', 'name', 'Hong Kong Information Technology Joint Council'),
(78161, 65715, 'zh', 'name', 'é¦™ęøÆč³‡čØŠē§‘ęŠ€čÆęœƒ'),
(78162, 65716, 'no_lang_code', 'name', 'Babcock International Group (United Kingdom)'),
(78163, 65717, 'fr', 'name', 'Michel-Sarrazin'),
(78164, 65718, 'en', 'name', 'Hyattsville Community Development Corporation'),
(78165, 65719, 'no_lang_code', 'name', 'Beiersdorf (Russia)'),
(78166, 65719, 'ru', 'name', 'БайерсГорф'),
(78167, 65720, 'en', 'name', 'Scholars at Risk'),
(78168, 65721, 'en', 'name', 'Agency of European innovations'),
(78169, 65722, 'no_lang_code', 'name', 'Jaywing (United Kingdom)'),
(78170, 65723, 'no_lang_code', 'name', 'Infrastructure Research & Development (Qatar)'),
(78171, 65724, 'en', 'name', 'China Household Electrical Appliances Research Institute'),
(78172, 65724, 'zh', 'name', '中国家用电器研究院'),
(78173, 65725, 'en', 'name', 'Korea Association for Social Welfare Studies'),
(78174, 65726, 'en', 'name', 'Jewish Agency for Israel'),
(78175, 65726, 'he', 'name', 'ההוכנות היהודית לארׄ ×™×©×Ø××œ'),
(78176, 65727, 'no_lang_code', 'name', 'Gazpromekt (Russia)'),
(78177, 65727, 'ru', 'name', 'Š“Š°Š·ŠŸŃ€Š¾ŠµŠŗŃ‚'),
(78178, 65728, 'no_lang_code', 'name', 'Danyang Hengan Chemical (China)'),
(78179, 65728, 'zh', 'name', 'äø¹é˜³åø‚ę’å®‰åŒ–å·„ęœ‰é™å…¬åøę˜Æ'),
(78180, 65729, 'no_lang_code', 'name', 'GDL (China)'),
(78181, 65730, 'en', 'name', 'Gangwon State University'),
(78182, 65730, 'ko', 'name', 'ź°•ģ›ė„ė¦½ėŒ€ķ•™źµ'),
(78183, 65731, 'no_lang_code', 'name', 'BBPOS (China)'),
(78184, 65732, 'no_lang_code', 'name', 'China Railway Signal & Communication (China)'),
(78185, 65732, 'zh', 'name', 'äø­å›½é“č·Æé€šäæ”äæ”å·č‚”ä»½ęœ‰é™å…¬åø'),
(78186, 65733, 'en', 'name', 'American Friends of the Hebrew University'),
(78187, 65734, 'en', 'name', 'St. Petersburg Scientific Research Institute of Forestry'),
(78188, 65734, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лесного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(78189, 65735, 'en', 'name', 'Institute for Environmental Security'),
(78190, 65736, 'de', 'name', 'Bundesverband Ɩffentlicher Banken Deutschlands'),
(78191, 65736, 'en', 'name', 'Association of German Public Banks'),
(78192, 65737, 'en', 'name', 'Textile Council of Hong Kong'),
(78193, 65738, 'en', 'name', 'National Black Leadership Commission on AIDS'),
(78194, 65739, 'de', 'name', 'Ministerium des Innern des Landes Nordrhein-Westfalen'),
(78195, 65740, 'no_lang_code', 'name', 'UnionPay (China)'),
(78196, 65740, 'zh', 'name', '银联'),
(78197, 65741, 'en', 'name', 'Indian Education Society''s V. N. Sule Guruji English Medium School'),
(78198, 65741, 'hi', 'name', 'ą¤µą„ą¤¹ą„€ ą¤ą¤Ø ą¤øą„ą¤³ą„‡ ą¤—ą„ą¤°ą„ą¤œą„€ ą¤‡ą¤‚ą¤—ą„ą¤°ą¤œą„€ ą¤®ą¤¾ą¤§ą„ą¤Æą¤® ą¤®ą¤¾ą¤§ą„ą¤Æą¤®ą¤æą¤• शाळा'),
(78199, 65742, 'en', 'name', 'Federal State Budgetary Scientific Institution Caspian Fisheries Research Institute'),
(78200, 65742, 'ru', 'name', 'Дагестанский филиал Š¤Š“Š‘ŠŠ£ Каспийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(78201, 65743, 'no_lang_code', 'name', 'Fujian Star-net (China)'),
(78202, 65744, 'ko', 'name', 'ģ   ģ˜ģž'),
(78203, 65744, 'no_lang_code', 'name', 'SillaJen (South Korea)'),
(78204, 65745, 'en', 'name', 'Hong Kong Information Technology Federation'),
(78205, 65745, 'zh', 'name', 'é¦™ęøÆč³‡čØŠē§‘ęŠ€å•†ęœƒ'),
(78206, 65746, 'no_lang_code', 'name', 'China Electronics Corporation (China)'),
(78207, 65746, 'zh', 'name', 'äø­åœ‹é›»å­å…¬åø'),
(78208, 65747, 'no_lang_code', 'name', 'BioScientia (Poland)'),
(78209, 65748, 'en', 'name', 'Taiya Inlet Watershed Council'),
(78210, 65749, 'no_lang_code', 'name', 'Anhui Fuhuang Architectural Design Research (China)'),
(78211, 65750, 'en', 'name', 'Glencree'),
(78212, 65751, 'en', 'name', 'Hong Kong Cosmetic Association'),
(78213, 65751, 'zh', 'name', 'é¦™ęøÆåŒ–ē²§å“åŒę„­å”ęœƒęœ‰é™å…¬åø'),
(78214, 65752, 'en', 'name', 'The Society of Korean Language and Culture'),
(78215, 65752, 'ko', 'name', 'ķ•œźµ­ģ–“ģ™€ ķ•œźµ­ 문화 ķ•™ķšŒ'),
(78216, 65753, 'en', 'name', 'Ministry of Investment and Development'),
(78217, 65753, 'pl', 'name', 'Ministerstwo Inwestycji i Rozwoju'),
(78218, 65754, 'no_lang_code', 'name', 'CIDP Biotech (India)'),
(78219, 65755, 'en', 'name', 'Clean Air Task Force'),
(78220, 65756, 'no_lang_code', 'name', 'Chaowei Group (China)'),
(78221, 65757, 'no_lang_code', 'name', 'Medtronic (India)'),
(78222, 65758, 'en', 'name', 'Breast Cancer Care'),
(78223, 65759, 'no_lang_code', 'name', 'Shenzhen General Institute of Architectural Design and Research (China)'),
(78224, 65759, 'zh', 'name', 'ę·±åœ³åø‚å»ŗē­‘č®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(78225, 65760, 'no_lang_code', 'name', 'Techworks Marine (Ireland)'),
(78226, 65761, 'en', 'name', 'The Korean Society of Eastern Art Studies'),
(78227, 65761, 'ko', 'name', 'ķ•œźµ­ ė™ģ„œģ–‘ ķ•™ķšŒ'),
(78228, 65762, 'no_lang_code', 'name', 'Karmaveer Bhausaheb Hiray Dental College and Hospital'),
(78229, 65763, 'en', 'name', 'Scientific Research Institute of Agriculture of the Central Black Earth Zone named after V.V. Dokuchaeva'),
(78230, 65763, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Черноземной полосы имени Š’.Š’. Š”Š¾ŠŗŃƒŃ‡Š°ŠµŠ²Š°'),
(78231, 65764, 'no_lang_code', 'name', 'Haemair (United Kingdom)'),
(78232, 65765, 'no_lang_code', 'name', 'Beijing Longda Light Industry Holding (China)'),
(78233, 65765, 'zh', 'name', 'åŒ—äŗ¬éš†č¾¾č½»å·„ęŽ§č‚”ęœ‰é™č“£ä»»å…¬åø'),
(78234, 65766, 'en', 'name', 'Guangdong Institute of Arts and Sciences'),
(78235, 65766, 'zh', 'name', 'å¹æäøœę–‡ē†čŒäøšå­¦é™¢'),
(78236, 65767, 'no_lang_code', 'name', 'Supor (China)'),
(78237, 65768, 'no_lang_code', 'name', 'Fuyao Group (China)'),
(78238, 65769, 'en', 'name', 'Korean Logistics Research Association'),
(78239, 65769, 'ko', 'name', 'ķ•œźµ­ė¬¼ė„˜ķ•™ķšŒ'),
(78240, 65770, 'no_lang_code', 'name', 'Million Tech Development (China)'),
(78241, 65771, 'no_lang_code', 'name', 'Morrisons (United Kingdom)'),
(78242, 65772, 'en', 'name', 'State Scientific Research Institute of Biological Instrumentation'),
(78243, 65772, 'ru', 'name', 'Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š‘Š˜ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠžŠ“Šž ŠŸŠ Š˜Š‘ŠžŠ ŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ'),
(78244, 65773, 'en', 'name', '24th Central Research Institute of the Russian Defence Ministry'),
(78245, 65773, 'ru', 'name', '24-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны России'),
(78246, 65774, 'no_lang_code', 'name', 'JSAB Technologies (China)'),
(78247, 65775, 'en', 'name', 'History & Policy'),
(78248, 65776, 'en', 'name', 'Assembly of First Nations'),
(78249, 65777, 'no_lang_code', 'name', 'Iggesund Paperboard (Sweden)'),
(78250, 65778, 'no_lang_code', 'name', 'Igeolise (United Kingdom)'),
(78251, 65779, 'en', 'name', 'Hong Kong Tourism Board'),
(78252, 65779, 'zh', 'name', 'é¦™ęøÆę—…éŠē™¼å±•å±€'),
(78253, 65780, 'no_lang_code', 'name', '"Institute" Energosetproject"'),
(78254, 65780, 'ru', 'name', 'Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ā«Š­ŠŠ•Š Š“ŠžŠ”Š•Š¢Š¬ŠŸŠ ŠžŠ•ŠšŠ¢Ā»'),
(78255, 65781, 'no_lang_code', 'name', 'Technopolis (Finland)'),
(78256, 65782, 'en', 'name', 'John Dora Consulting'),
(78257, 65783, 'ko', 'name', 'ģ„øė¼ė©”ė”• ė°”ģ“ģ˜¤ķ…Œķ¬ė†€ėŸ¬ģ§€'),
(78258, 65783, 'no_lang_code', 'name', 'CellaMedic Biotechnology (South Korea)'),
(78259, 65784, 'en', 'name', 'Federal Scientific Center for Agroecology, Integrated Land Reclamation and Protective Afforestation'),
(78260, 65785, 'en', 'name', 'Korean Consumption Culture Association'),
(78261, 65785, 'ko', 'name', 'ķ•œźµ­ģ†Œė¹„ė¬øķ™”ķ•™ķšŒ'),
(78262, 65786, 'no_lang_code', 'name', 'Flock (United Kingdom)'),
(78263, 65787, 'no_lang_code', 'name', 'Metrogiprotrans (Russia)'),
(78264, 65787, 'ru', 'name', 'ŠœŠµŃ‚Ń€Š¾Š³ŠøŠæŃ€Š¾Ń‚Ń€Š°Š½Ń'),
(78265, 65788, 'no_lang_code', 'name', 'Doncasters (United Kingdom)'),
(78266, 65789, 'no_lang_code', 'name', 'MoszhilNIIproekt'),
(78267, 65789, 'ru', 'name', 'ŠœŠ¾ŃŠ¶ŠøŠ»ŠŠ˜Š˜ŠæŃ€Š¾ŠµŠŗŃ‚'),
(78268, 65790, 'en', 'name', 'Scientific Research Institute for the Kursk Magnetic Anomaly named after L.D. Shevyakova'),
(78269, 65790, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по проблемам ŠšŃƒŃ€ŃŠŗŠ¾Š¹ магнитной аномалии имени Š›.Š”. ŠØŠµŠ²ŃŠŗŠ¾Š²Š°'),
(78270, 65791, 'en', 'name', 'Indo-US Super Speciality Hospital'),
(78271, 65791, 'te', 'name', 'ą°­ą°¾ą°°ą°¤ą±-అమెరికా ą°øą±‚ą°Ŗą°°ą± ą°øą±ą°Ŗą±†ą°·ą°¾ą°²ą°æą°Ÿą±€ ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(78272, 65792, 'no_lang_code', 'name', 'Advanced Micro Devices (United Kingdom)'),
(78273, 65793, 'en', 'name', 'Rabindranath Tagore International Institute of Cardiac Sciences'),
(78274, 65794, 'no_lang_code', 'name', 'Vedic Lifesciences (India)'),
(78275, 65795, 'en', 'name', 'Hunan Radio and Television University'),
(78276, 65795, 'zh', 'name', 'ę¹–å—å¹æę’­ē”µč§†å¤§å­¦'),
(78277, 65796, 'el', 'name', 'Ī•ĻĪ³Ī±ĻƒĻ„Ī®ĻĪ¹Īæ Ī•Ļ†Ī±ĻĪ¼ĪæĪ³ĻŽĪ½ Ενέργειας'),
(78278, 65796, 'en', 'name', 'Applied Energy Lab'),
(78279, 65797, 'no_lang_code', 'name', 'Plusvital (Ireland)'),
(78280, 65798, 'no_lang_code', 'name', 'Knowledge Unlatched (Germany)'),
(78281, 65799, 'no_lang_code', 'name', 'Tianjin Food Group (China)'),
(78282, 65799, 'zh', 'name', 'å¤©ę“„é£Ÿå“é›†å›¢'),
(78283, 65800, 'no_lang_code', 'name', 'Vitalograph (Ireland)'),
(78284, 65801, 'en', 'name', 'Harbin Huade University'),
(78285, 65801, 'zh', 'name', 'å“ˆå°”ę»ØåŽå¾·å­¦é™¢'),
(78286, 65802, 'no_lang_code', 'name', 'Oryx Publishing and Advertising (Qatar)'),
(78287, 65803, 'no_lang_code', 'name', 'GoPro (United States)'),
(78288, 65804, 'en', 'name', 'Animal Health Ireland'),
(78289, 65805, 'en', 'name', 'Institute of International Visual Arts'),
(78290, 65806, 'no_lang_code', 'name', 'Changchun Gold Research Institute (China)'),
(78291, 65807, 'en', 'name', 'Central Research Institute of Chemistry and Mechanics'),
(78292, 65808, 'en', 'name', 'Xinjiang Uygur Autonomous Region Institute Inspection of Special Equipment'),
(78293, 65808, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(78294, 65809, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ'),
(78295, 65809, 'en', 'name', 'Institute of Nature Management'),
(78296, 65810, 'en', 'name', 'Heilongjiang Vocational Institute of Ecological Engineering'),
(78297, 65810, 'zh', 'name', 'é»‘é¾™ę±Ÿē”Ÿę€å·„ēØ‹čŒäøšå­¦é™¢'),
(78298, 65811, 'no_lang_code', 'name', 'Activision Blizzard (United States)'),
(78299, 65812, 'pt', 'name', 'Ministério da Ciência e Tecnologia'),
(78300, 65813, 'no_lang_code', 'name', 'Elisha Systems (United Kingdom)'),
(78301, 65814, 'no_lang_code', 'name', 'Educated Change (United Kingdom)'),
(78302, 65815, 'en', 'name', 'Montreal Police Service'),
(78303, 65815, 'fr', 'name', 'Service de Police de la Ville de MontrƩal'),
(78304, 65816, 'en', 'name', 'Directorate for Persons Record and Databases Management'),
(78305, 65816, 'ro', 'name', 'Directia pentru Evidenta Persoanelor si Administrarea Bazelor de Date'),
(78306, 65817, 'en', 'name', 'Ural Institute of Traumatology and Orthopedics named after V.D. Chaklin'),
(78307, 65817, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии имени Š’.Š”. Чаклина'),
(78308, 65818, 'no_lang_code', 'name', 'Firesouls (United Kingdom)'),
(78309, 65819, 'no_lang_code', 'name', 'Fusion Software (South Korea)'),
(78310, 65820, 'fr', 'name', 'L''Accord Mauricie'),
(78311, 65821, 'no_lang_code', 'name', 'Atlassian (United Kingdom)'),
(78312, 65822, 'no_lang_code', 'name', 'Ta Solutions (China)'),
(78313, 65823, 'en', 'name', 'Association of Japanology in East Asia'),
(78314, 65823, 'ko', 'name', 'ė™ģ•„ģ‹œģ•„ģ¼ė³øķ•™ķšŒ'),
(78315, 65824, 'en', 'name', 'Wuhan Municipal Engineering Design & Research Institute'),
(78316, 65824, 'zh', 'name', 'ę­¦ę±‰åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åøē®€ä»‹'),
(78317, 65825, 'ko', 'name', 'ģ²œģ•ˆģ—°ģ•”ėŒ€ķ•™'),
(78318, 65825, 'no_lang_code', 'name', 'Cheonan Yonam College'),
(78319, 65826, 'en', 'name', 'Habitat for Humanity'),
(78320, 65827, 'no_lang_code', 'name', 'Macronix International (China)'),
(78321, 65828, 'no_lang_code', 'name', 'Gnosys (United Kingdom)'),
(78322, 65829, 'en', 'name', '40th State Research Institute of the Ministry of Defence of the Russian Federation'),
(78323, 65829, 'ru', 'name', '40-й Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны Российской ФеГерации'),
(78324, 65830, 'el', 'name', '΄πουργείο ĪœĪµĻ„Ī±Ļ†ĪæĻĻŽĪ½, Ī•Ļ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½ και ĪˆĻĪ³Ļ‰Ī½'),
(78325, 65830, 'en', 'name', 'Ministry of Transport, Communications and Works'),
(78326, 65831, 'en', 'name', 'Canadian Apheresis Group'),
(78327, 65831, 'fr', 'name', 'Groupe Canadien d''Aphérèse'),
(78328, 65832, 'en', 'name', 'European Nuclear Safety Training & Tutoring Institute'),
(78329, 65833, 'en', 'name', 'Houston Parks Board'),
(78330, 65834, 'no_lang_code', 'name', 'OKTECH (China)'),
(78331, 65834, 'zh', 'name', 'ęµ·ę“‹ēŽ‹ē…§ę˜Žē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(78332, 65835, 'en', 'name', 'Hong Kong Principals’ Institute'),
(78333, 65835, 'zh', 'name', 'é¦™ęøÆę ”é•æä¼š'),
(78334, 65836, 'no_lang_code', 'name', 'Applied Multilayers (United Kingdom)'),
(78335, 65837, 'de', 'name', 'Industrievereinigung Kunststoffverpackungen'),
(78336, 65838, 'en', 'name', 'Korea Entrepreneurship Foundation'),
(78337, 65838, 'ko', 'name', 'ķ•œźµ­ģ²­ė…„źø°ģ—…ź°€ģ •ģ‹ ģž¬ė‹Ø'),
(78338, 65839, 'no_lang_code', 'name', 'Idealand Electronics (China)'),
(78339, 65839, 'zh', 'name', 'ē†ęƒ³å’Œē”µå­'),
(78340, 65840, 'no_lang_code', 'name', 'Arthritis Ireland'),
(78341, 65841, 'no_lang_code', 'name', 'BBK Electronics (China)'),
(78342, 65841, 'zh', 'name', 'å¹æäøœę­„ę­„é«˜ē”µå­å·„äøšęœ‰é™å…¬åø'),
(78343, 65842, 'en', 'name', 'Korean Association of Middle Eastern Studies'),
(78344, 65842, 'ko', 'name', 'ķ•œźµ­ ģ¤‘ė™ ķ•™ķšŒ'),
(78345, 65843, 'en', 'name', 'Aberdeen Harbour Board'),
(78346, 65844, 'no_lang_code', 'name', 'Shanghai FRP Research Institute (China)'),
(78347, 65844, 'zh', 'name', 'äøŠęµ·ēŽ»ē’ƒé’¢ē ”ē©¶ę‰€'),
(78348, 65845, 'en', 'name', 'Canterbury City Council'),
(78349, 65846, 'no_lang_code', 'name', 'Fitbit (United States)'),
(78350, 65847, 'en', 'name', 'Investment and Development Agency of Latvia'),
(78351, 65847, 'lv', 'name', 'Latvijas Investīciju un attīstības aģentūra'),
(78352, 65848, 'en', 'name', 'Art History Association Of Korea'),
(78353, 65848, 'ko', 'name', 'ķ•œźµ­ėÆøģˆ ģ‚¬ķ•™ķšŒ'),
(78354, 65849, 'en', 'name', 'Scientific Research and Design Institute of Nitric Industry and Organic Synthesis Products'),
(78355, 65849, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ азотной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø Šø ŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š² органического синтеза'),
(78356, 65850, 'no_lang_code', 'name', 'WiseSpot (China)'),
(78357, 65851, 'no_lang_code', 'name', 'Advanced Interconnect Technologies (China)'),
(78358, 65851, 'zh', 'name', 'å…ˆčæ›ēš„äŗ’čæžęŠ€ęœÆ'),
(78359, 65852, 'no_lang_code', 'name', 'TEI Korea (South Korea)'),
(78360, 65853, 'en', 'name', 'National Institute of Medical Statistics'),
(78361, 65854, 'no_lang_code', 'name', 'Optim Design (United States)'),
(78362, 65855, 'en', 'name', 'Light Industry Hangzhou Electromechanical Design Institute'),
(78363, 65855, 'zh', 'name', 'č½»å·„äøšę­å·žęœŗē”µč®¾č®”ē ”ē©¶é™¢'),
(78364, 65856, 'en', 'name', 'Historical Association'),
(78365, 65857, 'no_lang_code', 'name', 'Pan Asia Technical Automotive Center (China)'),
(78366, 65857, 'zh', 'name', 'ę³›äŗšę±½č½¦ęŠ€ęœÆäø­åæƒ'),
(78367, 65858, 'en', 'name', 'Learning through Landscapes'),
(78368, 65859, 'en', 'name', 'Jiangsu Province Special Equipment Safety Supervision and Inspection Institute'),
(78369, 65859, 'zh', 'name', 'ę±Ÿč‹ēœē‰¹ē§č®¾å¤‡å®‰å…Øē›‘ē£ę£€éŖŒē ”ē©¶é™¢ę— é””åˆ†é™¢'),
(78370, 65860, 'no_lang_code', 'name', 'Electronics for Imaging (United States)'),
(78371, 65861, 'en', 'name', 'Korean Association For Studies of Philosophical Thought'),
(78372, 65861, 'ko', 'name', 'ķ•œźµ­ ģ² ķ•™ ģ—°źµ¬ķšŒ'),
(78373, 65862, 'no_lang_code', 'name', 'ELG Carbon Fibre (United Kingdom)'),
(78374, 65863, 'no_lang_code', 'name', 'Multichannel (China)'),
(78375, 65863, 'zh', 'name', '多通道'),
(78376, 65864, 'en', 'name', 'Institute of Engineering Physics'),
(78377, 65864, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инженерной физики Российской ФеГерации'),
(78378, 65865, 'en', 'name', 'Bristol and Bath Science Park'),
(78379, 65866, 'no_lang_code', 'name', 'Research Institute of Cosmic and Aviation Materials (Russia)'),
(78380, 65866, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾ – ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космических Šø авиационных материалов'),
(78381, 65867, 'no_lang_code', 'name', 'Geolang (United Kingdom)'),
(78382, 65868, 'en', 'name', 'Tezpur Medical College & Hospital'),
(78383, 65869, 'en', 'name', 'Qatar Computer Emergency Response Team'),
(78384, 65870, 'no_lang_code', 'name', 'Encontech (Netherlands)'),
(78385, 65871, 'en', 'name', 'Guangzhou Design Institute'),
(78386, 65871, 'zh', 'name', 'å¹æå·žåø‚č®¾č®”é™¢'),
(78387, 65872, 'no_lang_code', 'name', 'Beijing Enterprises Water Group (China)'),
(78388, 65873, 'en', 'name', 'European Molecular Biology Laboratory'),
(78389, 65874, 'fr', 'name', 'Agence eSantƩ'),
(78390, 65875, 'no_lang_code', 'name', 'Cambridge Reactor Design (United Kingdom)'),
(78391, 65876, 'en', 'name', 'Experimental Factory of Scientific Engineering and Special Design Department'),
(78392, 65876, 'ru', 'name', 'Š­ŠšŠ”ŠŸŠ•Š Š˜ŠœŠ•ŠŠ¢ŠŠ›Š¬ŠŠ«Š™ Š—ŠŠ’ŠžŠ” ŠŠŠ£Š§ŠŠžŠ“Šž ŠŸŠ Š˜Š‘ŠžŠ ŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ Š”Šž Š”ŠŸŠ•Š¦Š˜ŠŠ›Š¬ŠŠ«Šœ ŠšŠžŠŠ”Š¢Š Š£ŠšŠ¢ŠžŠ Š”ŠšŠ˜Šœ Š‘Š®Š Šž'),
(78393, 65877, 'no_lang_code', 'name', 'Tianjin Research Institute of Electric Science (China)'),
(78394, 65877, 'zh', 'name', 'å¤©ę“„ē”µę°”ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(78395, 65878, 'en', 'name', 'The Mediterranean Science Commission'),
(78396, 65879, 'no_lang_code', 'name', 'Insight (China)'),
(78397, 65880, 'no_lang_code', 'name', 'F5 Networks (United States)'),
(78398, 65881, 'en', 'name', 'Ministry of Culture and Sport of the Republic of Kazakhstan'),
(78399, 65881, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ ŠœÓ™Š“ŠµŠ½ŠøŠµŃ‚ және спорт министрлігі'),
(78400, 65882, 'en', 'name', 'JEI University'),
(78401, 65882, 'ko', 'name', 'ģøģ²œģž¬ėŠ„ėŒ€ķ•™źµ'),
(78402, 65883, 'en', 'name', 'Beijing Agricultural Machinery Research Institute'),
(78403, 65883, 'zh', 'name', 'åŒ—äŗ¬åø‚å†œäøšęœŗę¢°ē ”ē©¶ę‰€'),
(78404, 65884, 'en', 'name', 'Ministry of Culture'),
(78405, 65884, 'no', 'name', 'Kulturdepartementet'),
(78406, 65885, 'en', 'name', 'Korea Management Association'),
(78407, 65885, 'ko', 'name', '(사)ķ•œźµ­ėŠ„ė„ ķ˜‘ķšŒ'),
(78408, 65886, 'no_lang_code', 'name', 'Graphitene (United Kingdom)'),
(78409, 65887, 'en', 'name', 'Vilnius City Municipality Administration'),
(78410, 65888, 'no_lang_code', 'name', 'Origin Enterprises (Ireland)'),
(78411, 65889, 'no_lang_code', 'name', 'Geopartner (Poland)'),
(78412, 65890, 'no_lang_code', 'name', 'Barrnon (United Kingdom)'),
(78413, 65891, 'no_lang_code', 'name', 'Guangzhou Mechanical Engineering Research Institute (China)'),
(78414, 65891, 'zh', 'name', 'å¹æå·žęœŗę¢°ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(78415, 65892, 'en', 'name', 'Estorick Collection of Modern Italian Art'),
(78416, 65893, 'en', 'name', 'The Society of Study for Korean Music Education'),
(78417, 65893, 'ko', 'name', 'ķ•œźµ­źµ­ģ•…źµģœ”ģ—°źµ¬ķ•™ķšŒ'),
(78418, 65894, 'no_lang_code', 'name', 'City Image Technology (China)'),
(78419, 65894, 'zh', 'name', 'åŸŽåø‚å½¢č±”ęŠ€ęœÆ'),
(78420, 65895, 'no_lang_code', 'name', 'Troikaa (India)'),
(78421, 65896, 'en', 'name', 'Zhejiang Provincial Institute of Communications Planning,Design & Research'),
(78422, 65896, 'zh', 'name', 'ęµ™ę±Ÿēœäŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(78423, 65897, 'no_lang_code', 'name', 'Oceanpribor (Russia)'),
(78424, 65897, 'ru', 'name', 'ŠžŠŗŠµŠ°Š½ŠæŃ€ŠøŠ±Š¾Ń€'),
(78425, 65898, 'no_lang_code', 'name', 'InSysBio (Russia)'),
(78426, 65898, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ системной биологии'),
(78427, 65899, 'az', 'name', 'Azərbaycan Respublikası Fƶvqəladə Hallar Nazirliyi'),
(78428, 65899, 'en', 'name', 'Ministry of Emergency Situations of the Republic of Azerbaijan'),
(78429, 65900, 'fr', 'name', 'Alliance Canadienne des MassothƩrapeutes'),
(78430, 65900, 'no_lang_code', 'name', 'Canadian Massage Therapy Aliance'),
(78431, 65901, 'de', 'name', 'Bundesverband der Deutschen Luft- und Raumfahrtindustrie'),
(78432, 65901, 'en', 'name', 'German Aerospace Industries Association'),
(78433, 65902, 'en', 'name', 'Korea Atomic Industrial Forum'),
(78434, 65902, 'ko', 'name', 'ķ•œźµ­ģ›ģžė „ģ‚°ģ—…ķšŒģ˜'),
(78435, 65903, 'en', 'name', 'Masan University'),
(78436, 65903, 'ko', 'name', 'ė§ˆģ‚° ėŒ€ķ•™źµ'),
(78437, 65904, 'no_lang_code', 'name', 'Chromacity (United Kingdom)'),
(78438, 65905, 'no_lang_code', 'name', 'Laboclinic (Poland)'),
(78439, 65906, 'en', 'name', 'Hong Kong Electro-Plating Merchants Association'),
(78440, 65907, 'en', 'name', 'Health Education and Training Institute'),
(78441, 65908, 'no_lang_code', 'name', 'Prenetics (China)'),
(78442, 65909, 'en', 'name', 'China Internet Network Information Center'),
(78443, 65909, 'zh', 'name', 'äø­å›½äŗ’č”ē½‘ē»œäæ”ęÆäø­åæƒ'),
(78444, 65910, 'ko', 'name', 'ķ•Øģ†Œģ•„ģ œģ•½'),
(78445, 65910, 'no_lang_code', 'name', 'Hamsoa Pharmaceutical (South Korea)'),
(78446, 65911, 'fr', 'name', 'FƩdƩration des Maisons D''HƩbergement pour Femmes'),
(78447, 65912, 'no_lang_code', 'name', 'Suntek Computer Systems (China)'),
(78448, 65912, 'zh', 'name', 'äø‰ę±Ÿé›»č…¦ē§‘ęŠ€'),
(78449, 65913, 'en', 'name', 'TianjinSino-German University of Applied Sciences'),
(78450, 65913, 'zh', 'name', 'å¤©ę“„äø­å¾·åŗ”ē”ØęŠ€ęœÆå¤§å­¦'),
(78451, 65914, 'el', 'name', 'Ελληνική Εταιρία Τοπικής Ανάπτυξης και Ī‘Ļ…Ļ„ĪæĪ“Ī¹ĪæĪÆĪŗĪ·ĻƒĪ·Ļ‚'),
(78452, 65914, 'en', 'name', 'Hellenic Agency for Local Development and Local Government'),
(78453, 65915, 'en', 'name', 'Labor Welfare Corporation'),
(78454, 65915, 'ko', 'name', 'ź·¼ė”œė³µģ§€ź³µė‹Ø'),
(78455, 65916, 'no_lang_code', 'name', 'Storage Computer (China)'),
(78456, 65916, 'zh', 'name', 'å„²å­˜é›»č…¦'),
(78457, 65917, 'no_lang_code', 'name', 'Multi Base (China)'),
(78458, 65918, 'no_lang_code', 'name', 'GeneMatrix (South Korea)'),
(78459, 65919, 'en', 'name', 'Jingdezhen University'),
(78460, 65919, 'zh', 'name', '景德镇学院'),
(78461, 65920, 'en', 'name', 'National Forum for the Enhancement of Teaching & Learning in Higher Education'),
(78462, 65921, 'en', 'name', 'Sichuan Highway Design and Research Institute'),
(78463, 65921, 'zh', 'name', 'å››å·ēœäŗ¤é€ščæč¾“åŽ…å…¬č·Æč§„åˆ’å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢'),
(78464, 65922, 'en', 'name', 'Korean Community Welfare Society'),
(78465, 65922, 'ko', 'name', 'ķ•œźµ­ģ§€ģ—­ģ‚¬ķšŒė³µģ§€ķ•™ķšŒ'),
(78466, 65923, 'en', 'name', 'The Anglican Church of Korea'),
(78467, 65923, 'ko', 'name', 'ėŒ€ķ•œģ„±ź³µķšŒ ꓀구 ķ™ˆķŽ˜ģ“ģ§€'),
(78468, 65924, 'no_lang_code', 'name', 'Hikma Pharmaceuticals (United Kingdom)'),
(78469, 65925, 'en', 'name', 'Guangzhou Academy of Special Equipment Inspection and Testing'),
(78470, 65925, 'zh', 'name', 'å¹æå·žē‰¹ē§č®¾å¤‡ę£€ęµ‹ęŠ€ęœÆē ”ē©¶é™¢'),
(78471, 65926, 'en', 'name', 'French Culture and Arts Society'),
(78472, 65926, 'ko', 'name', 'ķ”„ėž‘ģŠ¤ė¬øķ™”ģ˜ˆģˆ ķ•™ķšŒ'),
(78473, 65927, 'en', 'name', 'Korean Psychological Association of Culture and Social Issues'),
(78474, 65927, 'ko', 'name', 'ķ•œźµ­ė¬øķ™”ė°ģ‚¬ķšŒė¬øģ œģ‹¬ė¦¬ķ•™ķšŒ'),
(78475, 65928, 'en', 'name', 'Korean Society of Interpretation and Translation Studies'),
(78476, 65928, 'ko', 'name', '우리 ķ•œźµ­ķ†µģ—­ė²ˆģ—­ķ•™ķšŒź°€'),
(78477, 65929, 'ro', 'name', 'Ministerul Comunicațiilor și Societății Informaționale'),
(78478, 65930, 'en', 'name', 'Icelandic Road and Coastal Administration'),
(78479, 65930, 'is', 'name', 'Vegagerưin'),
(78480, 65931, 'no_lang_code', 'name', 'Cheng Shin Rubber (Taiwan)'),
(78481, 65931, 'zh', 'name', 'ę­£ę–°ę©”č† å·„ę„­č‚”ä»½ęœ‰é™å…¬åø'),
(78482, 65932, 'en', 'name', 'Australian Council for Educational Research'),
(78483, 65933, 'no_lang_code', 'name', 'Primax Electronics (China)'),
(78484, 65933, 'zh', 'name', 'č‡“ä¼øē§‘ęŠ€'),
(78485, 65934, 'no_lang_code', 'name', 'CNR Services International (United Kingdom)'),
(78486, 65935, 'en', 'name', 'Oglebay Institute'),
(78487, 65936, 'en', 'name', 'Mental Health Ireland'),
(78488, 65936, 'ga', 'name', 'MeabhairshlĆ”inte na hƉireann'),
(78489, 65937, 'en', 'name', 'Ministry of Education and Science of the Republic of Lithuania'),
(78490, 65937, 'lt', 'name', 'Lietuvos Respublikos Ŕvietimo ir mokslo ministerija'),
(78491, 65938, 'no_lang_code', 'name', 'AMS (United Kingdom)'),
(78492, 65939, 'no_lang_code', 'name', 'NetDragon (China)'),
(78493, 65940, 'en', 'name', 'Government of Himachal Pradesh'),
(78494, 65940, 'hi', 'name', 'हिमाचल ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ सचिवालय'),
(78495, 65941, 'no_lang_code', 'name', 'Banedanmark (Denmark)'),
(78496, 65942, 'ko', 'name', 'ģ…€ė¦¬ė“œ'),
(78497, 65942, 'no_lang_code', 'name', 'Cellid (South Korea)'),
(78498, 65943, 'fr', 'name', 'Centre d''Ʃtude des solidaritƩs sociales'),
(78499, 65944, 'en', 'name', '4th Central Research Institute of the Russian Defence Ministry'),
(78500, 65944, 'ru', 'name', '4-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны России'),
(78501, 65945, 'no_lang_code', 'name', 'Astellas Pharma (India)'),
(78502, 65946, 'en', 'name', 'State Enterprise "State Road Research Institute named M.P.Shulgina'),
(78503, 65947, 'el', 'name', 'Ī‘Ī½Ī±Ļ€Ļ„Ļ…Ī¾Ī¹Ī±ĪŗĻŒĻ‚ ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ Ī‘Ī¼Ī²ĻĪ±ĪŗĪ¹ĪŗĪæĻ'),
(78504, 65947, 'en', 'name', 'Development Agency for Amvrakikos'),
(78505, 65948, 'en', 'name', 'Tsehootsooi Medical Center'),
(78506, 65949, 'en', 'name', 'Farming & Wildlife Advisory Group'),
(78507, 65950, 'fr', 'name', 'ID Champagne-Ardenne'),
(78508, 65951, 'no_lang_code', 'name', 'Afimilk (United Kingdom)'),
(78509, 65952, 'en', 'name', 'Bioregional'),
(78510, 65953, 'ko', 'name', 'ė¹„ģø ė”œ ķ…Œķ¬'),
(78511, 65953, 'no_lang_code', 'name', 'Vitzro Tech (South Korea)'),
(78512, 65954, 'en', 'name', 'Le Hong Phong High School for the Gifted'),
(78513, 65954, 'vi', 'name', 'TrĘ°į»ng Trung hį»c phổ thĆ“ng chuyĆŖn LĆŖ Hồng Phong, Nam Định'),
(78514, 65955, 'no_lang_code', 'name', 'Blueprint Medicines (United States)'),
(78515, 65956, 'no_lang_code', 'name', 'IBM (Ireland)'),
(78516, 65957, 'en', 'name', 'Shaanxi Xueqian Normal University'),
(78517, 65958, 'no_lang_code', 'name', 'BMI (South Korea)'),
(78518, 65959, 'es', 'name', 'Instituto Cubano de Investigaciones de los Derivados de la Caña de Azúcar'),
(78519, 65960, 'no_lang_code', 'name', 'Chengdu Guoke Haibo Information Technology (China)'),
(78520, 65960, 'zh', 'name', 'ęˆéƒ½å›½ē§‘ęµ·åšäæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(78521, 65961, 'no_lang_code', 'name', 'Henan Energy & Chemical Industry Group (China)'),
(78522, 65961, 'zh', 'name', 'ę²³å—čƒ½ęŗåŒ–å·„é›†å›¢ęœ‰é™å…¬åø'),
(78523, 65962, 'en', 'name', 'Central Research and Design Institute of Fuel Equipment for Automotive and Stationary Engines'),
(78524, 65962, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ топливной Š°ŠæŠæŠ°Ń€Š°Ń‚ŃƒŃ€Ń‹ автотракторных Šø стационарных Гвигателей'),
(78525, 65963, 'en', 'name', 'Association of Metropolitan Water Agencies'),
(78526, 65964, 'en', 'name', 'European Heart Network'),
(78527, 65965, 'en', 'name', 'Improvement Service'),
(78528, 65966, 'en', 'name', 'Hull History Centre'),
(78529, 65967, 'en', 'name', 'The Korean Society for Industrial Education'),
(78530, 65967, 'ko', 'name', 'ķ•œźµ­ģ‚°ģ—…źµģœ”ķ•™ķšŒ'),
(78531, 65968, 'el', 'name', '΄πουργείο Εμπορικής ĪĪ±Ļ…Ļ„Ī¹Ī»ĪÆĪ±Ļ‚'),
(78532, 65968, 'en', 'name', 'Ministry of Shipping and Island Policy'),
(78533, 65969, 'en', 'name', 'Scientific Research Institute of Mining'),
(78534, 65969, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Горного Гела'),
(78535, 65970, 'en', 'name', 'Galway One World Centre'),
(78536, 65971, 'en', 'name', 'Quality and Qualifications Ireland'),
(78537, 65971, 'ga', 'name', 'DearbhĆŗ CĆ”ilĆ­ochta agus CĆ”ilĆ­ochtaĆ­ Ɖireann'),
(78538, 65972, 'en', 'name', 'China Railway Economic and Planning Research Institute'),
(78539, 65972, 'zh', 'name', 'äø­å›½é“č·Æē»ęµŽäøŽč§„åˆ’ē ”ē©¶é™¢'),
(78540, 65973, 'en', 'name', 'Russian Scientific Research Institute of Traumatology and Orthopedics named after R.R. Vreden'),
(78541, 65973, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии им. Š .Š .ВреГена'),
(78542, 65974, 'en', 'name', 'American Association for Agricultural Education'),
(78543, 65975, 'no_lang_code', 'name', 'Myungin Pharm (South Korea)'),
(78544, 65976, 'en', 'name', 'Irish Heritage Trust'),
(78545, 65977, 'no_lang_code', 'name', 'Research Institute for Oilfield Chemistry (Russia)'),
(78546, 65977, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ЄИМИИ'),
(78547, 65978, 'no_lang_code', 'name', 'NetScout (United States)'),
(78548, 65979, 'en', 'name', 'Project Arts Centre'),
(78549, 65980, 'no_lang_code', 'name', 'Inventya (United Kingdom)'),
(78550, 65981, 'en', 'name', 'Program for Appropriate Technology in Health'),
(78551, 65982, 'no_lang_code', 'name', 'Spiretronic (Egypt)'),
(78552, 65983, 'no_lang_code', 'name', 'Roche (Ireland)'),
(78553, 65984, 'en', 'name', 'JustGiving'),
(78554, 65985, 'no_lang_code', 'name', 'U-Casadh Project (Ireland)'),
(78555, 65986, 'no_lang_code', 'name', 'VGM Gastro Centre'),
(78556, 65987, 'en', 'name', 'Hunan International Economics University'),
(78557, 65987, 'zh', 'name', 'ę¹–å—ę¶‰å¤–ē»ęµŽå­¦é™¢'),
(78558, 65988, 'ar', 'name', 'وزارة ال؄تصالات ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(78559, 65988, 'en', 'name', 'Ministry of Communications and Technology'),
(78560, 65989, 'no_lang_code', 'name', 'Shanxi Industrial Equipment Installation Group (Taiwan)'),
(78561, 65989, 'zh', 'name', 'å±±č„æēœå·„äøšč®¾å¤‡å®‰č£…é›†å›¢ęœ‰é™å…¬åø'),
(78562, 65990, 'en', 'name', 'International Longevity Centre'),
(78563, 65991, 'no_lang_code', 'name', 'Cryptomage (Poland)'),
(78564, 65992, 'en', 'name', 'Guangxi Hydraulic Power Machinery Research Institute'),
(78565, 65992, 'zh', 'name', 'å¹æč„æę°“åˆ©ęœŗę¢°ē ”ē©¶ę‰€'),
(78566, 65993, 'no_lang_code', 'name', 'Zydus Pharmaceuticals (United States)'),
(78567, 65994, 'en', 'name', 'Vancouver Infectious Diseases Centre'),
(78568, 65995, 'en', 'name', 'Ministry of Finance'),
(78569, 65995, 'mk', 'name', 'ŠœŠøŠ½ŠøŃŃ‚Š°Ń€ за финансии'),
(78570, 65996, 'en', 'name', 'Cheshire West and Chester'),
(78571, 65997, 'no_lang_code', 'name', 'Artworks Cymru'),
(78572, 65998, 'en', 'name', 'Korea Cosmetic Association'),
(78573, 65998, 'ko', 'name', 'ėŒ€ķ•œķ™”ģž„ķ’ˆķ˜‘ķšŒ'),
(78574, 65999, 'ko', 'name', '(주)ķƒœģ›…ė©”ė””ģ¹¼'),
(78575, 65999, 'no_lang_code', 'name', 'Taewoong Medical (South Korea)'),
(78576, 66000, 'en', 'name', 'Jiangxi Fisheries Research Institute'),
(78577, 66000, 'zh', 'name', 'ę±Ÿč„æēœę°“äŗ§ē§‘å­¦ē ”ē©¶ę‰€'),
(78578, 66001, 'no_lang_code', 'name', 'Microsoft (Denmark)'),
(78579, 66002, 'no_lang_code', 'name', 'Hengtong Optoelectronic (China)'),
(78580, 66002, 'zh', 'name', 'äŗØé€šå…‰ē”µ'),
(78581, 66003, 'en', 'name', 'Sci-Tech Daresbury'),
(78582, 66004, 'en', 'name', 'Regent Park Community Health Centre'),
(78583, 66005, 'en', 'name', 'United Nations Economic Commission for Latin America and the Caribbean'),
(78584, 66006, 'en', 'name', 'Austrian Federal Computing Centre'),
(78585, 66006, 'no_lang_code', 'name', 'Bundesrechenzentrum (Austria)'),
(78586, 66007, 'en', 'name', 'Minister of the Interior'),
(78587, 66007, 'fr', 'name', 'Ministère de l''Intérieur'),
(78588, 66008, 'en', 'name', 'Expii'),
(78589, 66009, 'no_lang_code', 'name', 'Baldoyle Forum'),
(78590, 66010, 'en', 'name', 'Omsk Research Institute of Natural Focal Infections'),
(78591, 66010, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ естественных очаговых инфекций'),
(78592, 66011, 'en', 'name', 'National Sports Promotion Corporation'),
(78593, 66011, 'ko', 'name', 'źµ­ėÆ¼ģ²“ģœ”ģ§„ķ„ź³µė‹Ø'),
(78594, 66012, 'no_lang_code', 'name', 'Champion Technology Holdings (China)'),
(78595, 66013, 'en', 'name', 'The European Institute for Crime Prevention and Control, affiliated with the United Nations'),
(78596, 66013, 'fi', 'name', 'Yhdistyneiden Kansakuntien kanssa toimiva Euroopan rikoksentorjunta- ja torjuntaelin'),
(78597, 66014, 'no_lang_code', 'name', 'Innoverz (China)'),
(78598, 66015, 'ko', 'name', '실 리코 ģ‚¬ķ”¼ģ—”ģŠ¤'),
(78599, 66015, 'no_lang_code', 'name', 'SiliconSapiens (South Korea)'),
(78600, 66016, 'de', 'name', 'Richard-Strauss-Institut'),
(78601, 66017, 'no_lang_code', 'name', 'Colgate-Palmolive (India)'),
(78602, 66018, 'no_lang_code', 'name', 'Axess Technologies (United Kingdom)'),
(78603, 66019, 'en', 'name', 'Society of Korean Classical Woman Literature'),
(78604, 66019, 'ko', 'name', 'ķ•œźµ­ź³ ģ „ģ—¬ģ„±ė¬øķ•™ķšŒ'),
(78605, 66020, 'en', 'name', 'All-Russian Research Institute of Biological Plant Protection'),
(78606, 66020, 'ru', 'name', 'Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š‘Š˜ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠžŠ™ Š—ŠŠ©Š˜Š¢Š« Š ŠŠ”Š¢Š•ŠŠ˜Š™'),
(78607, 66021, 'ar', 'name', 'Ł…ŲÆŲ±Ų³Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ų§Ł„Ų§Ł†Ų¬Ł„ŁŠŲ²ŁŠŁ‡'),
(78608, 66021, 'en', 'name', 'Gulf English School'),
(78609, 66022, 'no_lang_code', 'name', 'New A Innovation (China)'),
(78610, 66023, 'en', 'name', 'Research Institute of Radiology'),
(78611, 66024, 'no_lang_code', 'name', 'Daden (United Kingdom)'),
(78612, 66025, 'el', 'name', '΄πουργείο Ενέργειας, Εμπορίου, Βιομηχανίας και Ī¤ĪæĻ…ĻĪ¹ĻƒĪ¼ĪæĻ,'),
(78613, 66025, 'en', 'name', 'Ministry of Energy, Commerce, Industry and Tourism'),
(78614, 66026, 'en', 'name', 'Institute Society and Technology'),
(78615, 66026, 'nl', 'name', 'Instituut Samenleving en Technologie'),
(78616, 66027, 'no_lang_code', 'name', 'Institute Giprostroymost'),
(78617, 66027, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гипростроймост'),
(78618, 66028, 'no_lang_code', 'name', 'Yonyou (China)'),
(78619, 66028, 'zh', 'name', 'ē”Øå‹'),
(78620, 66029, 'en', 'name', 'Knowledge Centre for Materials Chemistry'),
(78621, 66030, 'en', 'name', 'Welding Technology Institute of Australia'),
(78622, 66031, 'no_lang_code', 'name', 'Infowise (China)'),
(78623, 66032, 'no_lang_code', 'name', 'LanzaTech (New Zealand)'),
(78624, 66033, 'no_lang_code', 'name', 'Octoly (France)'),
(78625, 66034, 'no_lang_code', 'name', 'Shandong Academy of Textile Science (China)'),
(78626, 66034, 'zh', 'name', 'å±±äøœēŗŗē»‡ē§‘å­¦ē ”ē©¶é™¢'),
(78627, 66035, 'no_lang_code', 'name', 'AstroTec Holding (Netherlands)'),
(78628, 66036, 'en', 'name', 'Hong Kong Institution of Engineers'),
(78629, 66036, 'zh', 'name', 'é¦™ęøÆå·„ēØ‹åøˆå­¦ä¼š'),
(78630, 66037, 'en', 'name', 'Fatima Groups United'),
(78631, 66038, 'es', 'name', 'Ministerio de Salud PĆŗblica y Asistencia Social'),
(78632, 66039, 'no_lang_code', 'name', 'Pentair (United Kingdom)'),
(78633, 66040, 'en', 'name', 'Shangqiu Institute of Technology'),
(78634, 66040, 'zh', 'name', 'å•†äø˜å·„å­¦é™¢ē®€ä»‹'),
(78635, 66041, 'en', 'name', 'Institute of Agroengineering and Environmental Problems of Agricultural Production'),
(78636, 66041, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ агроинженерных Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… проблем ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ произвоГства'),
(78637, 66042, 'no_lang_code', 'name', 'GoerTek (China)'),
(78638, 66043, 'no_lang_code', 'name', 'Giprotruboprovod, JSC'),
(78639, 66043, 'ru', 'name', 'ŠŠž Ā«Š“ŠøŠæŃ€Š¾Ń‚Ń€ŃƒŠ±Š¾ŠæŃ€Š¾Š²Š¾Š“Ā»'),
(78640, 66044, 'en', 'name', 'Bhaktivedanta Hospital & Research Institute'),
(78641, 66045, 'en', 'name', 'Korea Venture Business Association'),
(78642, 66045, 'ko', 'name', 'ė²¤ģ²˜źø°ģ—…ķ˜‘ķšŒ'),
(78643, 66046, 'no_lang_code', 'name', 'Dynamic Imaging (United Kingdom)'),
(78644, 66047, 'en', 'name', 'Medical Device Information & Technology Assistance Center'),
(78645, 66048, 'en', 'name', 'Wellcome Centre for Integrative Neuroimaging'),
(78646, 66049, 'en', 'name', 'Ministry of Health and Social Protection'),
(78647, 66049, 'sq', 'name', 'Ministria e Shƫndetƫsisƫ dhe Mbrojtjes Sociale'),
(78648, 66050, 'bn', 'name', 'মেদিনীপুর ą¦¹ą§‹ą¦®ą¦æą¦“ą¦Ŗą§ą¦Æą¦¾ą¦„ą¦æą¦• মেঔিকেল ą¦•ą¦²ą§‡ą¦œ ą¦ą¦Øą§ą¦” হসপিটাল'),
(78649, 66050, 'en', 'name', 'Midnapore Homeopathic Medical College and Hospital'),
(78650, 66051, 'no_lang_code', 'name', 'Concern Granit-Electron (Russia)'),
(78651, 66051, 'ru', 'name', 'ŠšŠ¾Š½Ń†ŠµŃ€Š½ «Гранит-Электрон»'),
(78652, 66052, 'no_lang_code', 'name', 'Nipigormash (Russia)'),
(78653, 66052, 'ru', 'name', 'ŠŠ˜ŠŸŠ˜Š“ŠžŠ ŠœŠŠØ'),
(78654, 66053, 'en', 'name', 'Korea Internet e-Commerce Association'),
(78655, 66053, 'ko', 'name', 'ķ•œźµ­ģøķ„°ė„·ģ „ģžģƒź±°ėž˜ķ•™ķšŒ'),
(78656, 66054, 'en', 'name', 'Hopi Cultural Center'),
(78657, 66055, 'en', 'name', 'RG Stone Urology & Laparoscopy Hospital'),
(78658, 66055, 'hi', 'name', 'ą¤†ą¤°ą¤œą„€ ą¤øą„ą¤Ÿą„‹ą¤Ø ą¤Æą„‚ą¤°ą„‹ą¤²ą„‰ą¤œą„€ और ą¤²ą„ˆą¤Ŗą„ą¤°ą„‹ą¤øą„ą¤•ą„‹ą¤Ŗą„€ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(78659, 66056, 'en', 'name', 'Crown Prosecution Service'),
(78660, 66057, 'en', 'name', 'Korea-China Science & Technology Cooperation Center'),
(78661, 66057, 'ko', 'name', 'ķ•œģ¤‘ 과학 기술 ķ˜‘ė „ 센터'),
(78662, 66058, 'en', 'name', 'Ministry of Health, Labour and Social Protection'),
(78663, 66058, 'ro', 'name', 'Ministerul Sănătății, Muncii și Protecției Sociale'),
(78664, 66059, 'en', 'name', 'Institute of Public Affairs'),
(78665, 66059, 'pl', 'name', 'Instytut Spraw Publicznych'),
(78666, 66060, 'en', 'name', 'British Water'),
(78667, 66061, 'en', 'name', 'Buglife'),
(78668, 66062, 'no_lang_code', 'name', 'Rosgeo (Russia)'),
(78669, 66062, 'ru', 'name', 'РосГео'),
(78670, 66063, 'en', 'name', 'ICLEI - Local Governments for Sustainability Canada'),
(78671, 66064, 'en', 'name', 'South China Robotics Innovative Research Institute'),
(78672, 66064, 'zh', 'name', 'å—åŽęœŗå™Øäŗŗåˆ›ę–°ē ”ē©¶é™¢'),
(78673, 66065, 'ar', 'name', 'قطر ŲØŁŠŁˆŲØŁ†Łƒ'),
(78674, 66065, 'no_lang_code', 'name', 'Qatar Biobank'),
(78675, 66066, 'no_lang_code', 'name', 'Alexander Dennis (United Kingdom)'),
(78676, 66067, 'en', 'name', 'The Korean Rural Sociological Society'),
(78677, 66067, 'ko', 'name', 'ķ•œźµ­ė†ģ“Œģ‚¬ķšŒķ•™ķšŒ'),
(78678, 66068, 'no_lang_code', 'name', 'Hybrid Air Vehicles (United Kingdom)'),
(78679, 66069, 'en', 'name', 'National Agency for Technological Development'),
(78680, 66070, 'en', 'name', 'Hong Kong Convention and Exhibition Centre'),
(78681, 66070, 'zh', 'name', 'é¦™ęøÆęœƒč­°å±•č¦½äø­åæƒ'),
(78682, 66071, 'en', 'name', 'Woolf Institute'),
(78683, 66072, 'en', 'name', 'Central Scientific Research Radio Engineering Institute named after Academician A.I. Berg'),
(78684, 66072, 'ru', 'name', 'Š¦ŠŠ˜Š Š¢Š˜ им. aкаГемика А.И.Берга'),
(78685, 66073, 'no_lang_code', 'name', 'Vita Actives (Ireland)'),
(78686, 66074, 'en', 'name', 'All-Russian Research Institute of Civil Defense'),
(78687, 66074, 'ru', 'name', 'Š’ŃŠµŃŠ¾ŃŽŠ·Š½Š¾Š³Š¾ ŠŠ˜Š˜ гражГанской обороны'),
(78688, 66075, 'en', 'name', 'The English Modern School'),
(78689, 66076, 'fr', 'name', 'HƓpital PrivƩ Marseille Beauregard');
INSERT INTO `ror_settings` VALUES
(78690, 66077, 'en', 'name', 'Embody Orthopaedic'),
(78691, 66078, 'en', 'name', 'Korea Thinking and Expression Society'),
(78692, 66078, 'ko', 'name', 'ķ•œźµ­ 사고 ķ‘œķ˜„ ģ‚¬ķšŒ'),
(78693, 66079, 'no_lang_code', 'name', 'KiWi Power (United Kingdom)'),
(78694, 66080, 'en', 'name', 'Ministry of Agriculture, Forestry and Food Security'),
(78695, 66080, 'sl', 'name', 'Ministrstvo za Kmetijstvo, Gozdarstvo in Prehrano'),
(78696, 66081, 'en', 'name', 'Chongqing Metrology Quality Inspection and Research Institute'),
(78697, 66081, 'zh', 'name', 'é‡åŗ†åø‚č®”é‡č“Øé‡ę£€ęµ‹ē ”ē©¶é™¢'),
(78698, 66082, 'no_lang_code', 'name', 'Cosmact (China)'),
(78699, 66083, 'en', 'name', 'The Marigold Foundation'),
(78700, 66084, 'ko', 'name', 'ģ“ė§ˆķŠø'),
(78701, 66084, 'no_lang_code', 'name', 'Emart (South Korea)'),
(78702, 66085, 'en', 'name', 'European Aviation Safety Agency'),
(78703, 66086, 'no_lang_code', 'name', 'China Tianjin Tools Research Institute (China)'),
(78704, 66086, 'zh', 'name', '中国天擄巄具研究院'),
(78705, 66087, 'no_lang_code', 'name', 'Sozvezdie (Russia)'),
(78706, 66087, 'ru', 'name', 'Воронежский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚ŠµŠ»ŠµŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹'),
(78707, 66088, 'en', 'name', 'Central Research Institute for the Pulp and Paper Industry'),
(78708, 66088, 'ru', 'name', 'Š¾Ń€Š³Š°Š½ŠøŠ·ŃƒŠµŃ‚ŃŃ Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń†ŠµŠ»Š»ŃŽŠ»Š¾Š·Š½Š¾-бу­мажной пр'),
(78709, 66089, 'en', 'name', 'Seminary of the Southwest'),
(78710, 66090, 'ko', 'name', 'ė‹¤ģ“ė…øė‚˜'),
(78711, 66090, 'no_lang_code', 'name', 'Dinona (South Korea)'),
(78712, 66091, 'en', 'name', 'The Korean Urban Geographical Society'),
(78713, 66091, 'ko', 'name', 'ķ•œźµ­ė„ģ‹œģ§€ė¦¬ķ•™ķšŒ'),
(78714, 66092, 'en', 'name', 'Dutch Fish Marketing Board'),
(78715, 66092, 'nl', 'name', 'Nederlands Visbureau'),
(78716, 66093, 'en', 'name', 'The Korean Association for Local Government & Administration Studies'),
(78717, 66093, 'ko', 'name', 'ėŒ€ķ•œ 지방 행정 ķ•™ķšŒ'),
(78718, 66094, 'ko', 'name', 'ķ•œė¦¼ģ œģ•½'),
(78719, 66094, 'no_lang_code', 'name', 'Hanlim Pharm (South Korea)'),
(78720, 66095, 'en', 'name', 'Russian Scientific Research Neurosurgical Institute'),
(78721, 66095, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. проф. А.Š›. Поленова'),
(78722, 66096, 'en', 'name', 'Changzhou Institute of Mechatronic Technology'),
(78723, 66096, 'zh', 'name', 'åøøå·žęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(78724, 66097, 'en', 'name', 'EmployAbility Galway'),
(78725, 66098, 'en', 'name', 'Korea Security Association'),
(78726, 66098, 'ko', 'name', 'ķ•œźµ­ ģ¦ź¶Œģ—… ķ˜‘ķšŒ'),
(78727, 66099, 'no_lang_code', 'name', 'Netflix (United States)'),
(78728, 66100, 'no_lang_code', 'name', 'EVRAZ (Russia)'),
(78729, 66101, 'en', 'name', 'Palm Research Center'),
(78730, 66101, 'id', 'name', 'Pusat Penelitian Kelapa Sawit'),
(78731, 66102, 'no_lang_code', 'name', 'Truking (China)'),
(78732, 66103, 'en', 'name', 'Korean Society for Teaching English Literature'),
(78733, 66103, 'ko', 'name', 'ķ•œźµ­ģ˜ėÆøė¬øķ•™źµģœ”ķ•™ķšŒ'),
(78734, 66104, 'en', 'name', 'Korean Library And Information Science Society'),
(78735, 66104, 'ko', 'name', 'ķ•œźµ­ ė„ģ„œź“€ 정볓 ķ•™ķšŒ'),
(78736, 66105, 'en', 'name', 'The Japanese Culture Association of Korea'),
(78737, 66105, 'ko', 'name', 'ķ•œźµ­ģ¼ė³øė¬øķ™”ķ•™ķšŒ'),
(78738, 66106, 'no_lang_code', 'name', 'Hua Hong Semiconductor (China)'),
(78739, 66106, 'zh', 'name', 'čÆč™¹åŠå°Žé«”'),
(78740, 66107, 'en', 'name', 'FNPC Research Institute of Applied Chemistry'),
(78741, 66107, 'ru', 'name', '"Š¤ŠŠŸŠ¦ "ŠŠ˜Š˜ приклаГной химии"'),
(78742, 66108, 'no_lang_code', 'name', 'Prexton Therapeutics (Switzerland)'),
(78743, 66109, 'en', 'name', 'Hunan Research Academy of Environmental Sciences'),
(78744, 66109, 'zh', 'name', 'ę¹–å—ēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶é™¢'),
(78745, 66110, 'en', 'name', 'Kansas Board of Pharmacy'),
(78746, 66111, 'en', 'name', 'Institute of Technology of Metals'),
(78747, 66111, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š˜ ŠœŠ•Š¢ŠŠ›Š›ŠžŠ’'),
(78748, 66112, 'ko', 'name', '(주)ģ—ģ–“ė ˆģø'),
(78749, 66112, 'no_lang_code', 'name', 'Airrane (South Korea)'),
(78750, 66113, 'no_lang_code', 'name', 'Great Wall Motors (China)'),
(78751, 66113, 'zh', 'name', 'é•æåŸŽę±½č½¦'),
(78752, 66114, 'en', 'name', 'Lady Tata Memorial Trust'),
(78753, 66115, 'en', 'name', 'Jeju Tourism University'),
(78754, 66115, 'ko', 'name', 'ģ œģ£¼ź“€ź“‘ėŒ€ķ•™źµ'),
(78755, 66116, 'en', 'name', 'Korean Social Science Data Center'),
(78756, 66116, 'ko', 'name', 'ķ•œźµ­ģ‚¬ķšŒź³¼ķ•™ė°ģ“ķ„°ģ„¼ķ„°'),
(78757, 66117, 'en', 'name', 'Institute of Industry Technology Guangzhou'),
(78758, 66117, 'zh', 'name', 'å¹æå·žäø­å›½ē§‘å­¦é™¢å·„äøšęŠ€ęœÆē ”ē©¶é™¢'),
(78759, 66118, 'en', 'name', 'Jiangsu Provincial Academy of Traditional Chinese Medicine'),
(78760, 66118, 'zh', 'name', 'ę±Ÿč‹ēœäø­åŒ»čÆē ”ē©¶é™¢'),
(78761, 66119, 'be', 'name', 'РУП Ā«ŠŠ°ŃƒŃ‡Š½Š¾-практический центр ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø по Š¶ŠøŠ²Š¾Ń‚Š½Š¾Š²Š¾Š“ŃŃ‚Š²ŃƒĀ»'),
(78762, 66119, 'en', 'name', 'Scientific and Practical Center of the National Academy of Sciences of Belarus on Animal Husbandry'),
(78763, 66120, 'fr', 'name', 'Parc Technologique du QuƩbec MƩtropolitain'),
(78764, 66120, 'no_lang_code', 'name', 'QuƩbec Metro High Tech Park (Canada)'),
(78765, 66121, 'no_lang_code', 'name', 'Baboro'),
(78766, 66122, 'en', 'name', 'Korean Society for Biology Education'),
(78767, 66123, 'en', 'name', 'Jiangsu Vocational Institute of Commerce'),
(78768, 66123, 'zh', 'name', 'ę±Ÿč‹ē»č“øčŒäøšęŠ€ęœÆå­¦é™¢'),
(78769, 66124, 'no_lang_code', 'name', 'Innopage (China)'),
(78770, 66125, 'no_lang_code', 'name', 'Beth Mardutho'),
(78771, 66126, 'en', 'name', 'Energy Systems Catapult'),
(78772, 66127, 'no_lang_code', 'name', 'Irgiredmet (Russia)'),
(78773, 66127, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Грагоценных Šø реГких металлов Šø алмазов'),
(78774, 66128, 'en', 'name', 'Derbyshire County Council'),
(78775, 66129, 'no_lang_code', 'name', 'BrainWaveBank (United Kingdom)'),
(78776, 66130, 'en', 'name', 'Prospex Institute'),
(78777, 66131, 'en', 'name', 'International Area Studies Society'),
(78778, 66131, 'ko', 'name', 'źµ­ģ œģ§€ģ—­ķ•™ķšŒ'),
(78779, 66132, 'en', 'name', 'Shanghai Electric Apparatus Research Institute'),
(78780, 66132, 'zh', 'name', 'äøŠęµ·ē”µå™Øē§‘å­¦ē ”ē©¶ę‰€'),
(78781, 66133, 'no_lang_code', 'name', 'Recipharm (Sweden)'),
(78782, 66134, 'en', 'name', 'Friends of the National Libraries'),
(78783, 66135, 'en', 'name', 'MItoCanada'),
(78784, 66136, 'en', 'name', 'Korea Children''s Rights Society'),
(78785, 66136, 'ko', 'name', 'ķ•œźµ­ģ•„ė™ź¶Œė¦¬ķ•™ķšŒ'),
(78786, 66137, 'ko', 'name', 'ėÆøėž˜ģ˜ 화학'),
(78787, 66137, 'no_lang_code', 'name', 'FutureChem (South Korea)'),
(78788, 66138, 'no_lang_code', 'name', 'BAM Nuttall (United Kingdom)'),
(78789, 66139, 'no_lang_code', 'name', 'Unilever (China)'),
(78790, 66139, 'zh', 'name', 'č”åˆåˆ©åŽ'),
(78791, 66140, 'en', 'name', 'Korea Drug Research Association'),
(78792, 66140, 'ko', 'name', 'ėŒ€ķ•œ ė§ˆģ•½ 연구 ķ•™ķšŒ'),
(78793, 66141, 'en', 'name', 'Samara Academy of State and Municipal Management'),
(78794, 66141, 'ru', 'name', 'Š”Š°Š¼Š°Ń€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Šø Š¼ŃƒŠ½ŠøŃ†ŠøŠæŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(78795, 66142, 'en', 'name', 'Seoul Institute of the Arts'),
(78796, 66142, 'ko', 'name', 'ģ„œģšø 예술 ėŒ€ķ•™'),
(78797, 66143, 'en', 'name', 'Yang Hospital'),
(78798, 66143, 'ko', 'name', '양병원'),
(78799, 66144, 'no_lang_code', 'name', 'Jiangxi Institute of Agricultural Machinery (Company)'),
(78800, 66144, 'zh', 'name', 'ę±Ÿč„æå†œäøšęœŗę¢°ē ”ē©¶ę‰€'),
(78801, 66145, 'no_lang_code', 'name', 'WCW Technology (China)'),
(78802, 66146, 'en', 'name', 'Chinese Manufacturers'' Association of Hong Kong'),
(78803, 66146, 'zh', 'name', 'é¦™ęøÆäø­čÆå» å•†čÆåˆęœƒ'),
(78804, 66147, 'en', 'name', 'Beijing Tianheng Pharmaceutical Research Institute'),
(78805, 66147, 'zh', 'name', 'åŒ—äŗ¬å¤©č””čÆē‰©ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(78806, 66148, 'no_lang_code', 'name', 'Impact Solutions (United Kingdom)'),
(78807, 66149, 'no_lang_code', 'name', 'Hypha Discovery (United Kingdom)'),
(78808, 66150, 'no_lang_code', 'name', 'Hortonworks (United States)'),
(78809, 66151, 'fr', 'name', 'Institut D’Eco-PĆ©dagogie'),
(78810, 66152, 'en', 'name', 'Jiangsu Provincial Urban Planning and Design Institute'),
(78811, 66152, 'zh', 'name', 'ę±Ÿč‹ēœåŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢ęˆ'),
(78812, 66153, 'en', 'name', 'Zhejiang Institute of Freshwater Fisheries'),
(78813, 66153, 'zh', 'name', 'ęµ™ę±Ÿēœę·”ę°“ę°“äŗ§ē ”ē©¶ę‰€'),
(78814, 66154, 'no_lang_code', 'name', 'Anhui Huizhou Geological Safety Research Institute (China)'),
(78815, 66155, 'en', 'name', 'Barbican Centre'),
(78816, 66156, 'no_lang_code', 'name', 'Maxful (China)'),
(78817, 66157, 'de', 'name', 'FƖD BeschƤftigung, Arbeit und Soziale Konzertierung'),
(78818, 66157, 'en', 'name', 'Federal Public Service Employment, Labour and Social Dialogue'),
(78819, 66157, 'fr', 'name', 'SPF Emploi, Travail et Concertation sociale'),
(78820, 66157, 'nl', 'name', 'FOD Werkgelegenheid, Arbeid en Sociaal Overleg'),
(78821, 66158, 'no_lang_code', 'name', 'Procter & Gamble (India)'),
(78822, 66159, 'no_lang_code', 'name', 'Magnitogorsk Gipromez (Russia)'),
(78823, 66159, 'ru', 'name', 'ŠžŠŠž "ŠœŠŠ“ŠŠ˜Š¢ŠžŠ“ŠžŠ Š”ŠšŠ˜Š™ Š“Š˜ŠŸŠ ŠžŠœŠ•Š—"'),
(78824, 66160, 'en', 'name', 'Suwon Research Institute'),
(78825, 66160, 'ko', 'name', 'ģˆ˜ģ› ģ‹œė¦½ ģ—°źµ¬ģ†Œ'),
(78826, 66161, 'no_lang_code', 'name', 'RediSem (China)'),
(78827, 66162, 'no_lang_code', 'name', 'Kunshan Govisionox Optoelectronic (China)'),
(78828, 66162, 'zh', 'name', 'ę˜†å±±å›½ę˜¾å…‰ē”µęœ‰é™å…¬åø'),
(78829, 66163, 'no_lang_code', 'name', 'CCCC Highway Consultants (China)'),
(78830, 66163, 'zh', 'name', 'äø­äŗ¤å…¬č·Æč§„åˆ’č®¾č®”é™¢ęœ‰é™å…¬åø'),
(78831, 66164, 'no_lang_code', 'name', 'Logifact (Poland)'),
(78832, 66164, 'pl', 'name', 'Systemy Logistyczne'),
(78833, 66165, 'no_lang_code', 'name', 'Synergation (United Kingdom)'),
(78834, 66166, 'en', 'name', 'Korean Society of Systematic Theology'),
(78835, 66166, 'ko', 'name', 'ķ•œźµ­ ģ‹ ķ•™ ėŒ€ķ•™ģ›'),
(78836, 66167, 'no_lang_code', 'name', 'Shandong Xiehe University'),
(78837, 66167, 'zh', 'name', 'å±±äøœåå’Œå­¦é™¢'),
(78838, 66168, 'en', 'name', 'Kyung Hee Cyber University'),
(78839, 66168, 'ko', 'name', 'ź²½ķ¬ģ‚¬ģ“ė²„ėŒ€ķ•™źµ/ę…¶ē†™ģ‚¬ģ“ė²„å¤§å­øę ”'),
(78840, 66169, 'ko', 'name', '(주)ģ§€ė‹ˆģŠ¤'),
(78841, 66169, 'no_lang_code', 'name', 'JINIS Biopharmaceuticals (South Korea)'),
(78842, 66170, 'ko', 'name', 'ģœ ė¼ģŠ¤ķ…'),
(78843, 66170, 'no_lang_code', 'name', 'EurasTech (South Korea)'),
(78844, 66171, 'ko', 'name', 'ģ• ź²½'),
(78845, 66171, 'no_lang_code', 'name', 'Aekyung (South Korea)'),
(78846, 66172, 'no_lang_code', 'name', 'NextGen Federal Systems (United States)'),
(78847, 66173, 'en', 'name', 'The Office of Public Works'),
(78848, 66173, 'ga', 'name', 'Oifig na nOibreacha PoiblĆ­'),
(78849, 66174, 'en', 'name', 'Institute of Mining of the North after N.V.Chersky'),
(78850, 66174, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горного Гела Девера после Š.Š’.Черского'),
(78851, 66175, 'no_lang_code', 'name', 'MainStream Aquaculture (Australia)'),
(78852, 66176, 'en', 'name', 'Dongguan South China Design and Innovation Institute'),
(78853, 66176, 'zh', 'name', 'äøœčŽžåŽå—č®¾č®”åˆ›ę–°ē ”ē©¶é™¢'),
(78854, 66177, 'en', 'name', 'Military Academy of Radiation, Chemical and Biological Protection'),
(78855, 66177, 'ru', 'name', 'Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ раГиационной, химической Šø биологической защиты'),
(78856, 66178, 'en', 'name', 'Tianjin North Garden Ecological Environmental Engineering Research Institute'),
(78857, 66178, 'zh', 'name', 'å¤©ę“„åŒ—å›­ē”Ÿę€ēŽÆå¢ƒå·„ēØ‹ē ”ē©¶ę‰€'),
(78858, 66179, 'en', 'name', 'Mandalay University of Distance Education'),
(78859, 66180, 'en', 'name', 'Krasnoyarsk Research Institute of Animal Husbandry'),
(78860, 66180, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ животновоГства'),
(78861, 66181, 'en', 'name', 'Comhairle NĆ”isiĆŗnta na nƓg, National Youth Council of Ireland'),
(78862, 66182, 'ga', 'name', 'FƔilte Ireland'),
(78863, 66183, 'en', 'name', 'Churches’ Commission for Migrants in Europe'),
(78864, 66184, 'en', 'name', 'Swedish Institute for Quality'),
(78865, 66184, 'sv', 'name', 'Institutet fƶr Kvalitetsutveckling'),
(78866, 66185, 'no_lang_code', 'name', 'Inner Mongolia Electric Power Survey & Design Institute (China)'),
(78867, 66185, 'zh', 'name', 'å†…č’™å¤ē”µåŠ›å‹˜ęµ‹č®¾č®”é™¢'),
(78868, 66186, 'en', 'name', 'Russian Research Institute of Problems of Land Reclamation'),
(78869, 66186, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем мелиорации земель'),
(78870, 66187, 'no_lang_code', 'name', 'Frutarom (Netherlands)'),
(78871, 66188, 'en', 'name', 'Atmiya University'),
(78872, 66189, 'en', 'name', 'All-Russian Research Institute of Reclaimed Lands'),
(78873, 66189, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ мелиорированных земель'),
(78874, 66190, 'no_lang_code', 'name', 'Johnson & Johnson (Singapore)'),
(78875, 66191, 'en', 'name', 'Research Institute of Bakery Industry'),
(78876, 66191, 'ru', 'name', 'ŠŠ˜Š˜ хлебопекарной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(78877, 66192, 'en', 'name', 'Disability Federation of Ireland'),
(78878, 66193, 'en', 'name', 'Hong Kong Association of Registered Tour Co-ordinators'),
(78879, 66193, 'zh', 'name', 'é¦™ęøÆčØ»å†Šå°ŽéŠå”ęœƒ'),
(78880, 66194, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų¬ŲÆŲ© للنطق ŁˆŲ§Ł„Ų³Ł…Ų¹'),
(78881, 66194, 'en', 'name', 'Jeddah Institute for Speech and Hearing'),
(78882, 66195, 'no_lang_code', 'name', 'Shenyang Aluminum & Magnesium Engineering & Research Institute (China)'),
(78883, 66195, 'zh', 'name', 'ę²‰é˜³é“é•č®¾č®”ē ”ē©¶é™¢'),
(78884, 66196, 'en', 'name', 'Hong Kong General Chamber of Commerce'),
(78885, 66197, 'no_lang_code', 'name', 'Indear (Argentina)'),
(78886, 66198, 'en', 'name', 'The Korean Society for School Science'),
(78887, 66198, 'ko', 'name', 'ėŒ€ķ•œ 학교 ķ•™ķšŒ'),
(78888, 66199, 'no_lang_code', 'name', 'Wincas Technology (China)'),
(78889, 66200, 'en', 'name', 'European Science Communication Institute'),
(78890, 66201, 'no_lang_code', 'name', 'United Machinery Technologies (Russia)'),
(78891, 66202, 'en', 'name', 'Heilongjiang International University'),
(78892, 66203, 'no_lang_code', 'name', 'Board of Innovation (Belgium)'),
(78893, 66204, 'de', 'name', 'Ministerium des Innern und für Sport Rheinland-Pfalz'),
(78894, 66205, 'en', 'name', 'South China National Centre of Metrology'),
(78895, 66205, 'zh', 'name', 'åŽå—å›½å®¶č®”é‡ęµ‹čÆ•äø­åæƒ'),
(78896, 66206, 'en', 'name', 'Haringey Council'),
(78897, 66207, 'en', 'name', 'Croft Additive Manufacturing'),
(78898, 66208, 'en', 'name', 'International Society of Electrophysiology and Kinesiology'),
(78899, 66209, 'en', 'name', 'Jiangsu Vocational Institute of Architectural Technology'),
(78900, 66209, 'zh', 'name', 'ę±Ÿč‹å»ŗē­‘čŒäøšęŠ€ęœÆå­¦é™¢'),
(78901, 66210, 'en', 'name', 'Science World at Telus World of Science'),
(78902, 66211, 'no_lang_code', 'name', 'Sixin (China)'),
(78903, 66212, 'no_lang_code', 'name', 'InterDigital (United Kingdom)'),
(78904, 66213, 'en', 'name', 'National Center for PTSD'),
(78905, 66214, 'ko', 'name', 'ėŒ€ķ•œģ•½ķ’ˆź³µģ—…ģ£¼ģ‹ķšŒģ‚¬'),
(78906, 66214, 'no_lang_code', 'name', 'Dai Han Pharm (South Korea)'),
(78907, 66215, 'no_lang_code', 'name', 'Janssen (Ireland)'),
(78908, 66216, 'en', 'name', 'Cangzhou Normal University'),
(78909, 66216, 'zh', 'name', 'ę²§å·žåøˆčŒƒå­¦é™¢'),
(78910, 66217, 'no_lang_code', 'name', 'Rostov-on-Don Anti-plague Institute Rospotrebnadzor'),
(78911, 66217, 'ru', 'name', 'Ростовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠæŃ€Š¾Ń‚ŠøŠ²Š¾Ń‡ŃƒŠ¼Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(78912, 66218, 'en', 'name', 'Korea Tourism College'),
(78913, 66218, 'ko', 'name', 'ķ•œźµ­ź“€ź“‘ėŒ€ķ•™źµ'),
(78914, 66219, 'en', 'name', 'First Research Institute of the Ministry of Public Security'),
(78915, 66219, 'zh', 'name', 'å…¬å®‰éƒØē¬¬äø€ē ”ē©¶ę‰€'),
(78916, 66220, 'no_lang_code', 'name', 'Jingdong (China)'),
(78917, 66220, 'zh', 'name', '京东'),
(78918, 66221, 'en', 'name', 'Hong Kong Institute of Vocational Education'),
(78919, 66221, 'zh', 'name', 'é¦™ęøÆå°ˆę„­ę•™č‚²å­øé™¢'),
(78920, 66222, 'no_lang_code', 'name', 'Ural Mining and Metallurgical Company (Russia)'),
(78921, 66222, 'ru', 'name', 'ŠžŃ‚ŠŗŃ€Ń‹Ń‚Š¾Šµ акционерное общество Ā«Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŗŠ¾Š¼ŠæŠ°Š½ŠøŃ'),
(78922, 66223, 'ko', 'name', 'ģŽŒė°”ģ“ģ˜¤ķ…'),
(78923, 66223, 'no_lang_code', 'name', 'Cell Biotech (South Korea)'),
(78924, 66224, 'en', 'name', 'Guangdong Research Institute of Water Resources and Hydropower'),
(78925, 66224, 'zh', 'name', 'å¹æäøœēœę°“åˆ©ę°“ē”µē§‘å­¦ē ”ē©¶é™¢'),
(78926, 66225, 'no_lang_code', 'name', 'Pega (United States)'),
(78927, 66226, 'en', 'name', 'Shree Krishna Hospital'),
(78928, 66226, 'gu', 'name', 'ąŖ¶ą«ąŖ°ą«€ ąŖ•ą«ƒąŖ·ą«ąŖ£ ąŖ¹ą«‹ąŖøą«ąŖŖąŖæąŖŸąŖ²'),
(78929, 66227, 'en', 'name', 'The Quebec Population Health Research Network'),
(78930, 66227, 'fr', 'name', 'RƩseau de recherche en santƩ des populations du QuƩbec'),
(78931, 66228, 'no_lang_code', 'name', 'New Universe Environmental Group (China)'),
(78932, 66228, 'zh', 'name', 'ę–°å®‡åœ‹éš›åÆ¦ę„­(集團)ęœ‰é™å…¬åø'),
(78933, 66229, 'no_lang_code', 'name', 'Unilever (Japan)'),
(78934, 66230, 'en', 'name', 'Wuzhou Food and Drug Administration'),
(78935, 66230, 'zh', 'name', 'ę¢§å·žåø‚é£Ÿå“čÆå“ē›‘ē£ē®”ē†å±€'),
(78936, 66231, 'en', 'name', 'All-Russian Scientific Research Institute of Grain and Products of its Processing'),
(78937, 66231, 'ru', 'name', 'Всероссийский ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Зерна Šø ŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š² его переработки'),
(78938, 66232, 'no_lang_code', 'name', 'Gameone Holdings (China)'),
(78939, 66232, 'zh', 'name', 'ę™ŗå‚²ęŽ§č‚”ęœ‰é™å…¬åø'),
(78940, 66233, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по биофизика Šø биомеГицинско инженерство'),
(78941, 66233, 'en', 'name', 'Institute of Biophysics and Biomedical Engineering'),
(78942, 66234, 'en', 'name', 'Xi''an Micromotor Research Institute'),
(78943, 66234, 'zh', 'name', 'č„æå®‰å¾®ē”µęœŗē ”ē©¶ę‰€'),
(78944, 66235, 'no_lang_code', 'name', 'Bercanan (Poland)'),
(78945, 66236, 'en', 'name', 'Office of Washington Secretary of State'),
(78946, 66237, 'no_lang_code', 'name', 'Four Directions (China)'),
(78947, 66238, 'en', 'name', 'Positive Living North'),
(78948, 66239, 'be', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Ń‚Ń€ŃƒŠ“Š° Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ защиты Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(78949, 66239, 'en', 'name', 'Ministry of Labour and Social Protection Republic of Belarus'),
(78950, 66240, 'no_lang_code', 'name', 'Yuntianhua Group (China)'),
(78951, 66241, 'en', 'name', 'Carlow County Council'),
(78952, 66241, 'ga', 'name', 'Comhairle Contae Cheatharlach'),
(78953, 66242, 'en', 'name', 'Children''s Scientific and Clinical Center for Infectious Diseases of the Federal Medical and Biological Agency'),
(78954, 66242, 'ru', 'name', 'Детский Š½Š°ŃƒŃ‡Š½Š¾-клинический центр инфекционных заболеваний Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(78955, 66243, 'no_lang_code', 'name', 'Gulf Drilling International (Qatar)'),
(78956, 66244, 'no_lang_code', 'name', 'International Transport Information Systems (China)'),
(78957, 66245, 'en', 'name', 'All-Russian Scientific Research Institute of Hydraulic Engineering and Melioration named after A.N. Kostyakov'),
(78958, 66245, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГротехники Šø мелиорации имени А. Š. ŠšŠ¾ŃŃ‚ŃŠŗŠ¾Š²Š°'),
(78959, 66246, 'en', 'name', 'Global English Teachers Association'),
(78960, 66246, 'ko', 'name', 'źø€ė”œė²Œ ģ˜ģ–“ 교사 ķ˜‘ķšŒ'),
(78961, 66247, 'hi', 'name', 'सहज ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(78962, 66247, 'no_lang_code', 'name', 'Sahaj Hospital'),
(78963, 66248, 'no_lang_code', 'name', 'Stallergenes Greer (Australia)'),
(78964, 66249, 'no_lang_code', 'name', 'Springer Nature (Netherlands)'),
(78965, 66250, 'ko', 'name', 'ķ•œźµ­ķƒ€ģ“ģ–“'),
(78966, 66250, 'no_lang_code', 'name', 'Hankook Tire (South Korea)'),
(78967, 66251, 'no_lang_code', 'name', 'Shenwu Technology Group Corp (China)'),
(78968, 66251, 'zh', 'name', 'ē„žé›¾ē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(78969, 66252, 'no_lang_code', 'name', 'Beijing Enterprises (China)'),
(78970, 66253, 'ko', 'name', 'ė™ģš°ė‹¹ģ œģ•½'),
(78971, 66253, 'no_lang_code', 'name', 'Dongwoodang (South Korea)'),
(78972, 66254, 'no_lang_code', 'name', 'GL PharmTech (South Korea)'),
(78973, 66255, 'no_lang_code', 'name', 'Ranheim Paper & Board (Norway)'),
(78974, 66256, 'no_lang_code', 'name', 'Inston (United States)'),
(78975, 66257, 'en', 'name', 'Guizhou Province Chemical Industry Research Institute'),
(78976, 66258, 'no_lang_code', 'name', 'Amasic (China)'),
(78977, 66259, 'no_lang_code', 'name', 'L&K Biomed (South Korea)'),
(78978, 66260, 'en', 'name', 'The Association of Korean Cultural and Historical Geographers'),
(78979, 66260, 'ko', 'name', 'ķ•œźµ­ė¬øķ™”ģ—­ģ‚¬ģ§€ė¦¬ķ•™ķšŒ'),
(78980, 66261, 'no_lang_code', 'name', 'Chemoxy (United Kingdom)'),
(78981, 66262, 'en', 'name', 'Korea Association of Health Promotion'),
(78982, 66262, 'ko', 'name', 'ķ•œźµ­ź±“ź°•ź“€ė¦¬ķ˜‘ķšŒ'),
(78983, 66263, 'en', 'name', 'ESI - Post Graduate Institute of Medical Science and Research'),
(78984, 66264, 'en', 'name', 'Kerry Education and Training Board'),
(78985, 66265, 'en', 'name', 'Korean Association For Housing Policy Studies'),
(78986, 66265, 'ko', 'name', 'ķ•œźµ­ģ£¼ķƒķ•™ķšŒ'),
(78987, 66266, 'no_lang_code', 'name', 'Research Institute of Precision Instruments (Russia)'),
(78988, 66266, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ прецизионных приборов'),
(78989, 66267, 'no_lang_code', 'name', 'Vir Biotechnology (Switzerland)'),
(78990, 66268, 'ar', 'name', 'مستؓفى عاقله'),
(78991, 66268, 'no_lang_code', 'name', 'Akilah Hospital'),
(78992, 66269, 'en', 'name', 'The Global Alliance for LGBT Education'),
(78993, 66270, 'en', 'name', 'Tompkins Conservation'),
(78994, 66271, 'no_lang_code', 'name', 'Shenzhen Yihua Computer (China)'),
(78995, 66271, 'zh', 'name', 'ę·±åœ³ę€”åŒ–ē”µč„‘č‚”ä»½ęœ‰é™å…¬åø'),
(78996, 66272, 'no_lang_code', 'name', 'Guangxi Yuchai Machinery Group (China)'),
(78997, 66272, 'zh', 'name', 'ēŽ‰ęŸ“é›†å›¢'),
(78998, 66273, 'en', 'name', 'Technological Institute of Castilla y León'),
(78999, 66274, 'en', 'name', 'Material and Industrial Technology Research Institute Beijing'),
(79000, 66274, 'zh', 'name', 'ę–°ęę–™äøŽäŗ§äøšęŠ€ęœÆåŒ—äŗ¬ē ”ē©¶é™¢'),
(79001, 66275, 'en', 'name', 'Korean Cognitive and Biological Psychology Society'),
(79002, 66275, 'ko', 'name', 'ķ•œźµ­ģøģ§€ė°ģƒė¬¼ģ‹¬ė¦¬ķ•™ķšŒ'),
(79003, 66276, 'en', 'name', 'Harbin Liushun Electric Automation Design Institute'),
(79004, 66276, 'zh', 'name', 'å“ˆå°”ę»Øåø‚å…­é”ŗē”µę°”č‡ŖåŠØåŒ–č®¾č®”ē ”ē©¶ę‰€'),
(79005, 66277, 'en', 'name', 'Shree O.H. Nazar Ayurved College Shree Swami Atmanand Saraswati Ayurved Hospital'),
(79006, 66278, 'en', 'name', 'Korean Theatre Education Association'),
(79007, 66278, 'ko', 'name', 'ķ•œźµ­ģ—°ź·¹źµģœ”ķ•™ķšŒ'),
(79008, 66279, 'en', 'name', 'Royal Society for Asian Affairs'),
(79009, 66280, 'en', 'name', 'Creative Wick'),
(79010, 66281, 'no_lang_code', 'name', 'Xinjiang Machinery Research Institute (China)'),
(79011, 66281, 'zh', 'name', 'ę–°ē–†ęœŗę¢°ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(79012, 66282, 'no_lang_code', 'name', 'Wuhan Institute of Geo-Environmental Industry and Technology (China)'),
(79013, 66282, 'zh', 'name', 'ę­¦ę±‰åœ°č“ØēŽÆå¢ƒå·„ēØ‹ęŠ€ęœÆē ”ē©¶ę‰€'),
(79014, 66283, 'no_lang_code', 'name', 'Clear Water Revival (United Kingdom)'),
(79015, 66284, 'no_lang_code', 'name', 'VeriFone Systems (United States)'),
(79016, 66285, 'en', 'name', 'Rediscovery Centre'),
(79017, 66286, 'en', 'name', 'Guyana Forestry Commission'),
(79018, 66287, 'en', 'name', 'Montana Department of Justice'),
(79019, 66288, 'en', 'name', 'Chinese General Chamber of Commerce'),
(79020, 66288, 'zh', 'name', 'é¦™ęøÆäø­čÆēø½å•†ęœƒ'),
(79021, 66289, 'en', 'name', 'China Special Equipment Inspection and Research Institute'),
(79022, 66289, 'zh', 'name', 'äø­å›½ē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(79023, 66290, 'en', 'name', 'Korea Digital Hospital Export Agency'),
(79024, 66290, 'ko', 'name', 'ķ•œźµ­ė””ģ§€ķ„øė³‘ģ›ģˆ˜ģ¶œģ”°ķ•©'),
(79025, 66291, 'en', 'name', 'M.V. Hospital and Research Centre'),
(79026, 66292, 'no_lang_code', 'name', 'Elite Antennas (United Kingdom)'),
(79027, 66293, 'no_lang_code', 'name', 'Sceptica Scientific (United Kingdom)'),
(79028, 66294, 'no_lang_code', 'name', 'Gidropribor'),
(79029, 66294, 'ru', 'name', 'ГиГроприбор'),
(79030, 66295, 'en', 'name', 'Russian Engineering Academy'),
(79031, 66295, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŠøŠ½Š¶ŠµŠ½ŠµŃ€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(79032, 66296, 'en', 'name', 'Lifetime Lab'),
(79033, 66297, 'en', 'name', 'Dagestan Scientific Center of the Russian Academy of Sciences'),
(79034, 66297, 'ru', 'name', 'Дагестанский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук'),
(79035, 66298, 'no_lang_code', 'name', 'SAIC-GM-Wuling (China)'),
(79036, 66298, 'zh', 'name', 'äøŠę±½é€šē”Øäŗ”č±ę±½č½¦č‚”ä»½ęœ‰é™å…¬åø'),
(79037, 66299, 'en', 'name', 'Health Physics Society'),
(79038, 66300, 'en', 'name', 'China Spallation Neutron Source'),
(79039, 66300, 'zh', 'name', '中国散裂中子源巄程'),
(79040, 66301, 'en', 'name', 'Inclusion Ireland'),
(79041, 66302, 'en', 'name', 'The Korea Society for Chinese Studies'),
(79042, 66302, 'ko', 'name', 'ķ•œźµ­ģ¤‘źµ­ķ•™ķšŒ'),
(79043, 66303, 'no_lang_code', 'name', 'Fermion Government Services (United States)'),
(79044, 66304, 'no_lang_code', 'name', 'Sooriya Hospital'),
(79045, 66304, 'ta', 'name', 'ą®šąÆ‚ą®°ą®æą®Æą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(79046, 66305, 'en', 'name', 'Keimyung College University'),
(79047, 66305, 'ko', 'name', '계명 문화 ėŒ€ķ•™'),
(79048, 66306, 'en', 'name', 'Stoughton Youth Commission'),
(79049, 66307, 'en', 'name', 'Ministry of Culture and Communications'),
(79050, 66307, 'fr', 'name', 'MinistĆØre de la Culture et des Communications'),
(79051, 66308, 'es', 'name', 'Instituto Interamericano de Cooperación para la Agricultura'),
(79052, 66309, 'no_lang_code', 'name', 'Quest Diagnostics (United Kingdom)'),
(79053, 66310, 'en', 'name', 'Bristol Green Capital Partnership'),
(79054, 66311, 'no_lang_code', 'name', 'Ervia (Ireland)'),
(79055, 66312, 'no_lang_code', 'name', 'Sina (China)'),
(79056, 66312, 'zh', 'name', 'ę–°ęµŖ'),
(79057, 66313, 'no_lang_code', 'name', 'ATG UV Technology (United Kingdom)'),
(79058, 66314, 'en', 'name', 'Sussex Wildlife Trust'),
(79059, 66315, 'no_lang_code', 'name', 'Cimpress (Netherlands)'),
(79060, 66316, 'es', 'name', 'Instituto Colombiano de Medicina Tropical'),
(79061, 66317, 'no_lang_code', 'name', 'Calix (United States)'),
(79062, 66318, 'no_lang_code', 'name', 'Jiangsu Provincial Water Survey & Design Institute (China)'),
(79063, 66318, 'zh', 'name', 'ę±Ÿč‹ēœę°“åˆ©å‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(79064, 66319, 'en', 'name', 'International Association for the Exchange of Students for Technical Experience'),
(79065, 66319, 'mk', 'name', 'ŠœŠµŃ“ŃƒŠ½Š°Ń€Š¾Š“Š½Š° Š°ŃŠ¾Ń†ŠøŃ˜Š°Ń†ŠøŃ˜Š° за размена на ŃŃ‚ŃƒŠ“ŠµŠ½Ń‚Šø за техничко ŠøŃŠŗŃƒŃŃ‚во'),
(79066, 66320, 'en', 'name', 'Korean Society For Curriculum Studies'),
(79067, 66320, 'ko', 'name', 'ķ•œźµ­źµģœ”ź³¼ģ •ķ•™ķšŒ'),
(79068, 66321, 'no_lang_code', 'name', 'Vornia (Ireland)'),
(79069, 66322, 'en', 'name', 'Qinhuangdao Audio-Visual Machinery Research Institute'),
(79070, 66322, 'zh', 'name', 'ē§¦ēš‡å²›č§†å¬ęœŗę¢°ē ”ē©¶ę‰€'),
(79071, 66323, 'no_lang_code', 'name', 'Emteq (United Kingdom)'),
(79072, 66324, 'en', 'name', 'Shenzhen Academy of Robotics'),
(79073, 66324, 'zh', 'name', 'äø“ę·±åœ³åø‚ę™ŗčƒ½ęœŗå™Øäŗŗē ”ē©¶é™¢'),
(79074, 66325, 'en', 'name', 'Bulgarian Small and Medium Enterprises Promotion Agency'),
(79075, 66326, 'pt', 'name', 'Serviços Partilhados do Ministério da Saúde'),
(79076, 66327, 'en', 'name', 'Korean Society for History of Education'),
(79077, 66327, 'ko', 'name', 'ķ•œźµ­źµģœ”ģ‚¬ķ•™ķšŒ'),
(79078, 66328, 'en', 'name', 'Trade and Industry Department'),
(79079, 66328, 'zh', 'name', 'å·„ę„­č²æę˜“ē½²'),
(79080, 66329, 'en', 'name', 'GBS Leiden'),
(79081, 66330, 'en', 'name', 'The Korean Society of Contemporary European Studies'),
(79082, 66330, 'ko', 'name', 'ķ•œźµ­ģœ ėŸ½ķ•™ķšŒ'),
(79083, 66331, 'en', 'name', 'International Commission on Radiological Protection'),
(79084, 66332, 'en', 'name', 'Korea Intelligent Information Systems Society'),
(79085, 66332, 'ko', 'name', 'ķ•œźµ­ ģ§€ėŠ„ 정볓 ģ‹œģŠ¤ķ…œ ķ•™ķšŒ'),
(79086, 66333, 'ko', 'name', '언얓과학'),
(79087, 66333, 'no_lang_code', 'name', 'Language Science (South Korea)'),
(79088, 66334, 'en', 'name', 'Shanxi Academy of Forestry'),
(79089, 66334, 'zh', 'name', 'å±±č„æēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(79090, 66335, 'en', 'name', 'Protestant Theological Institute of Cluj-Napoca'),
(79091, 66335, 'hu', 'name', 'ProtestÔns Teológiai Intézet'),
(79092, 66335, 'ro', 'name', 'Institutul Teologic Protestant'),
(79093, 66336, 'en', 'name', 'Hong Kong Medical and Healthcare Device Industries Association'),
(79094, 66336, 'zh', 'name', 'é¦™ęøÆé†«ē™‚åŠäæå„å™Øęč”Œę„­å”ęœƒ'),
(79095, 66337, 'ko', 'name', 'ė°”ģ“ģ˜¤ģ†”ė£Øģ…˜'),
(79096, 66337, 'no_lang_code', 'name', 'Biosolution (South Korea)'),
(79097, 66338, 'en', 'name', 'Guangzhou Institute of Applied Software Technology, Chinese Academy of Sciences'),
(79098, 66338, 'zh', 'name', 'å¹æå·žäø­å›½ē§‘å­¦é™¢č½Æä»¶åŗ”ē”ØęŠ€ęœÆē ”ē©¶ę‰€'),
(79099, 66339, 'en', 'name', 'Hubei Provincial Water Resources and Hydropower Planning Survey and Design Institute'),
(79100, 66339, 'zh', 'name', 'ę¹–åŒ—ēœę°“åˆ©ę°“ē”µč§„åˆ’å‹˜ęµ‹č®¾č®”é™¢'),
(79101, 66340, 'no_lang_code', 'name', 'SynAgile (United States)'),
(79102, 66341, 'en', 'name', 'Migration Institute of Australia'),
(79103, 66342, 'no_lang_code', 'name', 'Beijing Guodaotong Highway Design & Research Institute (China)'),
(79104, 66342, 'zh', 'name', 'åŒ—äŗ¬å›½é“é€šå…¬č·Æč®¾č®”ē ”ē©¶é™¢'),
(79105, 66343, 'en', 'name', 'The Busan Metropolitan Simin Municipal Library'),
(79106, 66343, 'ko', 'name', 'ė¶€ģ‚°ģ‹œė¦½ģ‹œėÆ¼ė„ģ„œź“€'),
(79107, 66344, 'no_lang_code', 'name', 'Stop. Watch Television (Ireland)'),
(79108, 66345, 'en', 'name', 'Korean Association For Local Government Studies'),
(79109, 66345, 'ko', 'name', 'ķ•œźµ­ģ§€ė°©ģžģ¹˜ķ•™ķšŒėŠ”'),
(79110, 66346, 'no_lang_code', 'name', 'Unilever (Australia)'),
(79111, 66347, 'en', 'name', 'Joint Stock Company National Research Institute Electron'),
(79112, 66347, 'ru', 'name', 'Ā«Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «Электрон»'),
(79113, 66348, 'en', 'name', 'Cybercommunication Academic Society'),
(79114, 66349, 'en', 'name', 'Avon Wildlife Trust'),
(79115, 66350, 'en', 'name', 'Centre Casa'),
(79116, 66351, 'en', 'name', 'Coalition for Research in Women''s Health'),
(79117, 66352, 'no_lang_code', 'name', 'Marafeq (Qatar)'),
(79118, 66353, 'en', 'name', 'Guizhou Electromechanical Research and Design Institute'),
(79119, 66354, 'no_lang_code', 'name', 'PSP Security (China)'),
(79120, 66355, 'en', 'name', 'The Society of Korean Language and Literature'),
(79121, 66355, 'ko', 'name', 'źµ­ģ–“źµ­ė¬øķ•™ķšŒ'),
(79122, 66356, 'no_lang_code', 'name', 'ResMed (United States)'),
(79123, 66357, 'no_lang_code', 'name', 'Allscripts (United States)'),
(79124, 66358, 'en', 'name', 'Ajou Motor College'),
(79125, 66358, 'ko', 'name', '아주 ģžė™ģ°Ø ėŒ€ķ•™'),
(79126, 66359, 'en', 'name', 'Cardiff West Community High School'),
(79127, 66360, 'fr', 'name', 'Institut de Recherches en IngƩnierie des Surfaces'),
(79128, 66361, 'en', 'name', 'Korean Academy of Science and Technology'),
(79129, 66361, 'ko', 'name', 'ķ•œźµ­ź³¼ķ•™źø°ģˆ ķ•œė¦¼ģ›'),
(79130, 66362, 'es', 'name', 'Ministerio de Salud'),
(79131, 66363, 'en', 'name', 'European Network of Building Research Institutes'),
(79132, 66364, 'en', 'name', 'Institute of Science and Technology for Ceramics'),
(79133, 66364, 'it', 'name', 'Istituto di Scienza e Tecnologia dei Materiali Ceramici'),
(79134, 66365, 'en', 'name', 'Tianjin TDBH Naval Architecture & Ocean Engineering Academy'),
(79135, 66365, 'zh', 'name', 'å¤©ę“„å¤©å¤§ę»Øęµ·čˆ¹čˆ¶äøŽęµ·ę“‹å·„ēØ‹ē ”ē©¶é™¢'),
(79136, 66366, 'en', 'name', 'Frontline Dance'),
(79137, 66367, 'no_lang_code', 'name', 'Cambridge Microelectronics (United Kingdom)'),
(79138, 66368, 'no_lang_code', 'name', 'Changzhou Academy of Intelli-Ag Equipment (China)'),
(79139, 66368, 'zh', 'name', 'åøøå·žę™ŗčƒ½åŒ–č®¾å¤‡ē ”ē©¶é™¢'),
(79140, 66369, 'ko', 'name', 'ģ¼ģ„± ģ œģ•½'),
(79141, 66369, 'no_lang_code', 'name', 'Ilsung Pharmaceuticals (South Korea)'),
(79142, 66370, 'en', 'name', 'Korea Institute of Youth Facility and Environment'),
(79143, 66371, 'ko', 'name', 'ź³ ė ¤ģ“ė…øķ…Œķ¬'),
(79144, 66371, 'no_lang_code', 'name', 'Korea Innotech (South Korea)'),
(79145, 66372, 'en', 'name', 'State Specialized Design Institute'),
(79146, 66372, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ специализированный проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(79147, 66373, 'no_lang_code', 'name', 'ATK Holding Group (China)'),
(79148, 66374, 'en', 'name', 'Energy Research Partnership'),
(79149, 66375, 'en', 'name', 'Zhejiang Institute of Special Equipment Inspection'),
(79150, 66375, 'zh', 'name', 'ęµ™ę±Ÿēœē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(79151, 66376, 'no_lang_code', 'name', 'Leshi Internet Information and Technology (China)'),
(79152, 66376, 'zh', 'name', '乐视网'),
(79153, 66377, 'en', 'name', 'West Africa Civil Society Institute'),
(79154, 66378, 'en', 'name', 'National Agency for Special Needs Education and Schools'),
(79155, 66378, 'sv', 'name', 'Specialpedagogiska Skolmyndigheten'),
(79156, 66379, 'no_lang_code', 'name', 'Qatar Electricity & Water (Qatar)'),
(79157, 66380, 'en', 'name', 'Texas Department of Public Safety'),
(79158, 66381, 'en', 'name', 'Irish Refugee Council'),
(79159, 66382, 'no_lang_code', 'name', 'Suren Systems (China)'),
(79160, 66382, 'zh', 'name', 'č„æę¦®ē§‘ęŠ€ęœ‰é™å…¬åø'),
(79161, 66383, 'en', 'name', 'Institute for Energetics and Interphases'),
(79162, 66383, 'it', 'name', 'Istituto per Energetica e Interfasi'),
(79163, 66384, 'en', 'name', 'Index Medical College, Hospital & Research Centre'),
(79164, 66384, 'hi', 'name', 'ą¤¦ą„‡ą¤µą„€ ą¤…ą¤¹ą¤æą¤²ą„ą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤øą¤Øą¤æą¤• ą¤•ą¤¾ą¤°ą„ą¤Æą¤¾ą¤²ą¤Æ, आर ą¤ą¤Ø ą¤Ÿą„€'),
(79165, 66385, 'en', 'name', 'Korea Soongsil Cyber ​​University'),
(79166, 66385, 'ko', 'name', 'ķ•œźµ­ģ‚¬ģ“ė²„ėŒ€ķ•™źµ ģ¢…ė”œģŗ ķ¼ģŠ¤'),
(79167, 66386, 'en', 'name', 'Retina Care Specialists'),
(79168, 66387, 'en', 'name', 'Northwest Institute of Eco-Environment and Resources'),
(79169, 66387, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č„æåŒ—ē”Ÿę€ēŽÆå¢ƒčµ„ęŗē ”ē©¶é™¢'),
(79170, 66388, 'en', 'name', 'Chongqing Three Gorges Academy of Agricultural Sciences'),
(79171, 66388, 'zh', 'name', 'é‡åŗ†äø‰å³”å†œäøšē§‘å­¦é™¢'),
(79172, 66389, 'no_lang_code', 'name', 'Onex (Canada)'),
(79173, 66390, 'en', 'name', 'Ministry of Finance and Economic Affairs'),
(79174, 66390, 'is', 'name', 'FjƔrmƔla- og efnahagsrƔưuneytiư'),
(79175, 66391, 'no_lang_code', 'name', 'Brainomix (United Kingdom)'),
(79176, 66392, 'en', 'name', 'The Korean Society for Literature and Religion'),
(79177, 66392, 'ko', 'name', 'ķ•œźµ­ė¬øķ•™ź³¼ģ¢…źµķ•™ķšŒ'),
(79178, 66393, 'en', 'name', 'Coconut Industry Board'),
(79179, 66394, 'en', 'name', 'All-Russian Research Institute for Fire Protection'),
(79180, 66394, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ «Всероссийский орГена ā€žŠ—Š½Š°Šŗ ŠŸŠ¾Ń‡Ń‘Ń‚Š°ā€œ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ противопожарной обороны»'),
(79181, 66395, 'en', 'name', 'Korea Women''s Associations United'),
(79182, 66395, 'ko', 'name', 'ķ•œźµ­ 여성 단첓 ģ—°ķ•©'),
(79183, 66396, 'en', 'name', 'Rostov-on-Don Research Institute of Radio Communications'),
(79184, 66396, 'ru', 'name', 'Š ŠžŠ”Š¢ŠžŠ’Š”ŠšŠ˜Š™-ŠŠ-Š”ŠžŠŠ£ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š ŠŠ”Š˜ŠžŠ”Š’ŠÆŠ—Š˜'),
(79185, 66397, 'no_lang_code', 'name', 'FUTRESynthesis (Poland)'),
(79186, 66398, 'no_lang_code', 'name', 'KO VNIIMETMASH'),
(79187, 66398, 'ru', 'name', 'Колпинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(79188, 66399, 'en', 'name', 'Korea Contents Association'),
(79189, 66400, 'en', 'name', 'Tula University'),
(79190, 66400, 'ru', 'name', 'Тульский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(79191, 66401, 'no_lang_code', 'name', 'Green Running (United Kingdom)'),
(79192, 66402, 'en', 'name', 'Sustainable Europe Research Institute'),
(79193, 66403, 'no_lang_code', 'name', 'Getech (United Kingdom)'),
(79194, 66404, 'en', 'name', 'Korean Sociological Association'),
(79195, 66404, 'ko', 'name', 'ķ•œźµ­ģ‚¬ķšŒķ•™ķšŒ'),
(79196, 66405, 'en', 'name', 'Men’s Development Network'),
(79197, 66406, 'no_lang_code', 'name', 'Emotech (United Kingdom)'),
(79198, 66407, 'no_lang_code', 'name', 'Han Kook Shin Yak Pharmaceutical (South Korea)'),
(79199, 66408, 'no_lang_code', 'name', 'Altaba (United States)'),
(79200, 66409, 'en', 'name', 'York Minster'),
(79201, 66410, 'en', 'name', 'Science Communication Institute'),
(79202, 66411, 'en', 'name', 'The Association of East Asian Ancient Studies'),
(79203, 66411, 'ko', 'name', 'ź³ ėŒ€ ģ•„ģ‹œģ•„ ķ•™ķšŒ'),
(79204, 66412, 'no_lang_code', 'name', 'Bio-Marine Ingredients (Ireland)'),
(79205, 66413, 'en', 'name', 'Central Research Institute "Course"'),
(79206, 66413, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "ŠšŃƒŃ€Ń"'),
(79207, 66414, 'no_lang_code', 'name', 'PricewaterhouseCoopers (South Korea)'),
(79208, 66415, 'en', 'name', 'Durham Cathedral'),
(79209, 66416, 'en', 'name', 'Sichuan Machinery Research and Design Institute'),
(79210, 66416, 'zh', 'name', 'å››å·ēœęœŗę¢°ē ”ē©¶č®¾č®”é™¢ęœŗ'),
(79211, 66417, 'en', 'name', 'Korean Society of East-West Comparative Literature'),
(79212, 66417, 'ko', 'name', 'ķ•œźµ­ė™ģ„œė¹„źµė¬øķ•™ķ•™ķšŒ'),
(79213, 66418, 'de', 'name', 'ParitƤtisches Bildungswerk Bundesverband'),
(79214, 66419, 'en', 'name', 'Gwangyang Health College'),
(79215, 66419, 'ko', 'name', 'ź“‘ģ–‘ė³“ź±“ėŒ€ķ•™'),
(79216, 66420, 'ar', 'name', 'Ł…Ų±ŁƒŲ² الؓفلح'),
(79217, 66420, 'no_lang_code', 'name', 'Shafallah Center'),
(79218, 66421, 'en', 'name', 'Xinjiang Industry Technical College'),
(79219, 66421, 'zh', 'name', 'ę–°ē–†č½»å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(79220, 66422, 'en', 'name', 'Public Policy and Management Institute'),
(79221, 66422, 'lt', 'name', 'VieŔosios politikos ir vadybos institutas'),
(79222, 66423, 'en', 'name', '2-Spirited'),
(79223, 66424, 'en', 'name', 'All-Russian Scientific Research Institute of Irrigation and Agricultural Water Supply "Raduga"'),
(79224, 66424, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Ń€Š¾ŃˆŠµŠ½ŠøŃ Šø ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š²Š¾Š“Š¾ŃŠ½Š°Š±Š¶ŠµŠ½ŠøŃ «РаГуга»'),
(79225, 66425, 'en', 'name', 'Jiaxing Hengchuang Electric Design and Research Institute'),
(79226, 66425, 'zh', 'name', 'å˜‰å…“ę’åˆ›ē”µåŠ›č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åøę˜Žē»˜åˆ†å…¬'),
(79227, 66426, 'no_lang_code', 'name', 'Leoni (Germany)'),
(79228, 66427, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Δυτικής ΕλλάΓας'),
(79229, 66427, 'en', 'name', 'Technological Educational Institute of Western Greece'),
(79230, 66428, 'no_lang_code', 'name', 'DaVinci Laboratories (United States)'),
(79231, 66429, 'no_lang_code', 'name', 'Tinno (China)'),
(79232, 66429, 'zh', 'name', 'ę·±åœ³å¤©ē‘ē§»åŠØęŠ€ęœÆęœ‰é™å…¬åø'),
(79233, 66430, 'no_lang_code', 'name', 'Shandong Huanneng Design Institute (China)'),
(79234, 66430, 'zh', 'name', 'å±±äøœēŽÆčƒ½č®¾č®”é™¢'),
(79235, 66431, 'en', 'name', 'BEAM Society'),
(79236, 66432, 'de', 'name', 'Bundesverband Kalksandsteinindustrie'),
(79237, 66433, 'en', 'name', 'Chungkang College of Cultural Industries'),
(79238, 66433, 'ko', 'name', 'ģ²­ź°•ė¬øķ™”ģ‚°ģ—…ėŒ€ķ•™źµ'),
(79239, 66434, 'en', 'name', 'Shandong Academy of Forestry'),
(79240, 66434, 'zh', 'name', 'å±±äøœēœęž—äøšē§‘å­¦é™¢'),
(79241, 66435, 'no_lang_code', 'name', 'CET Opto (China)'),
(79242, 66436, 'no_lang_code', 'name', 'Xi''an Electric Furnace Research Institute (China)'),
(79243, 66436, 'zh', 'name', 'č„æå®‰ē”µē‚‰ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(79244, 66437, 'en', 'name', 'Russian Research Institute of the Sugar Industry'),
(79245, 66437, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сахарной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(79246, 66438, 'no_lang_code', 'name', 'PAREXEL International (South Korea)'),
(79247, 66439, 'en', 'name', 'Northern Ireland Statistics and Research Agency'),
(79248, 66440, 'no_lang_code', 'name', 'E I L (China)'),
(79249, 66441, 'en', 'name', 'Korean Academy of International Business'),
(79250, 66441, 'ko', 'name', 'ķ•œźµ­źµ­ģ œź²½ģ˜ķ•™ķšŒ'),
(79251, 66442, 'no_lang_code', 'name', 'Tianneng Power (China)'),
(79252, 66443, 'en', 'name', 'Mokpo Science University'),
(79253, 66443, 'ko', 'name', 'ėŖ©ķ¬ź³¼ķ•™ėŒ€ķ•™źµ'),
(79254, 66444, 'fr', 'name', 'Agence pour la CoopƩration Scientifique Afrique Luxembourg'),
(79255, 66445, 'en', 'name', 'Ministry for Tourism'),
(79256, 66446, 'no_lang_code', 'name', 'Shutterfly (United States)'),
(79257, 66447, 'en', 'name', 'Korea International Trade Research Institute'),
(79258, 66447, 'ko', 'name', 'ķ•œźµ­ 묓역 연구원'),
(79259, 66448, 'pt', 'name', 'Instituto Nacional de Investigação Pesqueira'),
(79260, 66449, 'en', 'name', 'Anhui Special Equipment Inspection Institute'),
(79261, 66450, 'no_lang_code', 'name', 'Medifron (South Korea)'),
(79262, 66451, 'no_lang_code', 'name', 'Ekopoz (Poland)'),
(79263, 66452, 'en', 'name', 'Canadian Hospice Palliative Care Association'),
(79264, 66452, 'fr', 'name', 'Association Canadienne de Soins Palliatifs'),
(79265, 66453, 'no_lang_code', 'name', 'Temenos Group (Switzerland)'),
(79266, 66454, 'en', 'name', 'Ottawa Baffin Nunavut Health Services'),
(79267, 66455, 'no_lang_code', 'name', 'China Huarong Energy (China)'),
(79268, 66455, 'zh', 'name', 'äø­å›½åŽčžčƒ½ęŗ'),
(79269, 66456, 'en', 'name', 'The Korean Regional Development Association'),
(79270, 66456, 'ko', 'name', 'ķ•œźµ­ģ§€ģ—­ź°œė°œķ•™ķšŒ'),
(79271, 66457, 'no_lang_code', 'name', 'Baby2Body (United Kingdom)'),
(79272, 66458, 'no_lang_code', 'name', 'SGIDI Engineering Consulting (China)'),
(79273, 66458, 'zh', 'name', 'äøŠęµ·å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢'),
(79274, 66459, 'en', 'name', 'The Society of Korean Practical Arts Education Research'),
(79275, 66459, 'ko', 'name', 'ķ•œźµ­ģ‹¤ź³¼źµģœ”ģ—°źµ¬ķ•™ķšŒ'),
(79276, 66460, 'en', 'name', 'Ministry of Labour, Employment and Social Solidarity'),
(79277, 66460, 'fr', 'name', 'MinistĆØre du Travail, de l’Emploi et de la SolidaritĆ© Sociale'),
(79278, 66461, 'no_lang_code', 'name', 'PJSC "VNIIPThimnefteapparatury" (Russia)'),
(79279, 66462, 'en', 'name', 'Danish Board of District Heating'),
(79280, 66463, 'gu', 'name', 'ąŖøąŖ° ąŖ¤ąŖ–ą«ąŖ¤ąŖøąŖæąŖ‚ąŖ¹ąŖœą«€ જનરલ ąŖ¹ą«‹ąŖøą«ąŖŖąŖæąŖŸąŖ²'),
(79281, 66463, 'no_lang_code', 'name', 'Sir Takhtasinhji General Hospital'),
(79282, 66464, 'en', 'name', 'Savantas Policy Institute'),
(79283, 66465, 'en', 'name', 'Police Department'),
(79284, 66465, 'lt', 'name', 'Policijos departamentas'),
(79285, 66466, 'en', 'name', 'Health Protection Agency'),
(79286, 66467, 'no_lang_code', 'name', 'Hunan Yonker Investment Group (China)'),
(79287, 66467, 'zh', 'name', 'ę°øęø…ēŽÆå¢ƒē§‘ęŠ€äŗ§äøšé›†å›¢ęœ‰é™å…¬åø'),
(79288, 66468, 'no_lang_code', 'name', 'KG Chemical (South Korea)'),
(79289, 66469, 'en', 'name', 'Korea Fisheries Resources Agency'),
(79290, 66469, 'ko', 'name', 'ķ•œźµ­ ģˆ˜ģ‚° ģžģ› 공사'),
(79291, 66470, 'en', 'name', 'Active Norfolk'),
(79292, 66471, 'de', 'name', 'Königliches Institut für Denkmalschutz'),
(79293, 66471, 'en', 'name', 'Royal Institute for Cultural Heritage'),
(79294, 66471, 'fr', 'name', 'Institut royal du Patrimoine artistique'),
(79295, 66471, 'nl', 'name', 'Koninklijk Instituut voor het Kunstpatrimonium'),
(79296, 66472, 'no_lang_code', 'name', 'Zibo Qixiang Petrochemical Industry Group (China)'),
(79297, 66472, 'zh', 'name', 'ę·„åšåÆē„„ēŸ³åŒ–å·„äøšé›†å›¢'),
(79298, 66473, 'en', 'name', 'The Daedong Philosophical Association'),
(79299, 66473, 'ko', 'name', 'ėŒ€ė™ ģ² ķ•™ķšŒ'),
(79300, 66474, 'no_lang_code', 'name', 'Novanta (United Kingdom)'),
(79301, 66475, 'en', 'name', 'Tianjin Textile Machinery and Equipment Research Institute'),
(79302, 66475, 'zh', 'name', 'å¤©ę“„ēŗŗē»‡ęœŗę¢°å™Øęē ”ē©¶ę‰€'),
(79303, 66476, 'no_lang_code', 'name', 'WEBAGENCY E-Commerce (Germany)'),
(79304, 66477, 'en', 'name', 'Korea Medical Devices Industry Association'),
(79305, 66477, 'ko', 'name', 'ķ•œźµ­ģ˜ė£Œźø°źø°ģ‚°ģ—…ķ˜‘ķšŒ'),
(79306, 66478, 'en', 'name', 'New York State Coalition Against Domestic Violence'),
(79307, 66479, 'en', 'name', 'Korean Society for Eco Early Childhood Education'),
(79308, 66479, 'ko', 'name', 'ķ•œźµ­ģƒķƒœģœ ģ•„źµģœ”ķ•™ķšŒ'),
(79309, 66480, 'en', 'name', 'Andong Science University'),
(79310, 66480, 'ko', 'name', 'ģ•ˆė™ź³¼ķ•™ėŒ€ķ•™źµ'),
(79311, 66481, 'en', 'name', 'The Association of North-east Asian Cultures'),
(79312, 66481, 'ko', 'name', 'ė™ė¶ģ•„ģ‹œģ•„ė¬øķ™”ķ•™ķšŒ'),
(79313, 66482, 'en', 'name', 'National Paying Agency'),
(79314, 66482, 'lt', 'name', 'Nacionaline mokejimo agentura'),
(79315, 66483, 'bs', 'name', 'Ministarstvo Gospodarstva'),
(79316, 66484, 'en', 'name', 'Shanghai Power Equipment Research Institute'),
(79317, 66484, 'zh', 'name', 'äøŠęµ·ē”µåŠ›č®¾å¤‡ē ”ē©¶é™¢'),
(79318, 66485, 'en', 'name', 'The Research Institute for the Care of Older People'),
(79319, 66486, 'no_lang_code', 'name', 'Guizhou Aerospace Power Science & Tech (China)'),
(79320, 66486, 'zh', 'name', 'č“µå·žčˆŖå¤©åŠØåŠ›ęŠ€ęœÆ'),
(79321, 66487, 'fr', 'name', 'Observatoire RĆ©gional de la SantĆ© d’Alsace'),
(79322, 66488, 'de', 'name', 'Bundesverband Glaukom-Selbsthilfe'),
(79323, 66489, 'en', 'name', 'All-Russian Scientific Research Institute of Hydrocarbon Raw Materials'),
(79324, 66489, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠ³Š»ŠµŠ²Š¾Š“Š¾Ń€Š¾Š“Š½Š¾Š³Š¾ сырья'),
(79325, 66490, 'en', 'name', 'New York City Arts in Education Roundtable'),
(79326, 66491, 'en', 'name', 'Korean Association of Law Schools'),
(79327, 66491, 'ko', 'name', 'ķ•œźµ­ ė²•ėŒ€'),
(79328, 66492, 'no_lang_code', 'name', 'Shantui (China)'),
(79329, 66492, 'zh', 'name', 'å±±ęŽØå·„ēØ‹ęœŗę¢°č‚”ä»½ęœ‰é™å…¬åø'),
(79330, 66493, 'en', 'name', 'Stavropol Research Institute of Animal Production and Feed Production'),
(79331, 66493, 'ru', 'name', 'Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ ŠŠ˜Š˜ животновоГства Šø кормопроизвоГства'),
(79332, 66494, 'no_lang_code', 'name', 'Manicon Technology (China)'),
(79333, 66495, 'pl', 'name', 'Instytutu Melioracji i Użytków Zielonych'),
(79334, 66496, 'no_lang_code', 'name', 'Bellrock Technology (United Kingdom)'),
(79335, 66497, 'cs', 'name', 'Institut RestaurovĆ”nĆ­ a KonzervačnĆ­ch Technik'),
(79336, 66498, 'en', 'name', 'Families and Work Institute'),
(79337, 66499, 'no_lang_code', 'name', 'Jellybooks (United Kingdom)'),
(79338, 66500, 'en', 'name', 'Green Alliance'),
(79339, 66501, 'en', 'name', 'Polymer Research Institute'),
(79340, 66501, 'ru', 'name', 'ŠŠ˜Š˜ полимеров'),
(79341, 66502, 'en', 'name', 'Guangzhou Railway Polytechnic'),
(79342, 66502, 'zh', 'name', 'å¹æå·žé“č·ÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(79343, 66503, 'no_lang_code', 'name', 'Christian Dior (France)'),
(79344, 66504, 'no_lang_code', 'name', 'BIOCAD (India)'),
(79345, 66505, 'en', 'name', 'Television Research Institute'),
(79346, 66505, 'ru', 'name', 'ŠŠ˜Š˜ Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ'),
(79347, 66506, 'en', 'name', 'Suzhou Nonferrous Metals Research Institute'),
(79348, 66506, 'zh', 'name', 'č‹å·žęœ‰č‰²é‡‘å±žē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(79349, 66507, 'no_lang_code', 'name', 'Mergon (Ireland)'),
(79350, 66508, 'no_lang_code', 'name', 'PAREXEL International (India)'),
(79351, 66509, 'no_lang_code', 'name', 'Cartap (United Kingdom)'),
(79352, 66510, 'en', 'name', 'The Japanese Language Literature Association of Korea'),
(79353, 66510, 'ko', 'name', 'ķ•œźµ­ģ¼ė³øģ–“ė¬øķ•™ķšŒ'),
(79354, 66511, 'en', 'name', 'Research and Development National Institute for Metals and Radioactive Resources'),
(79355, 66511, 'ro', 'name', 'Institutul National de Cercetare-Dezvoltare pentru Metale si Resurse Radioactive'),
(79356, 66512, 'no_lang_code', 'name', 'Xingx (China)'),
(79357, 66512, 'zh', 'name', 'ę˜Ÿę˜Ÿé›†å›¢ęœ‰é™å…¬åø'),
(79358, 66513, 'no_lang_code', 'name', 'Renault (Russia)'),
(79359, 66513, 'ru', 'name', 'Рено'),
(79360, 66514, 'en', 'name', 'Sri Venkateshwaraa Medical College Hospital and Research Centre, ą®øąÆą®°ąÆ€ ą®µąÆ†ą®™ąÆą®•ą®ŸąÆ‡ą®øąÆą®µą®°ą®¾ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®ÆąÆą®µąÆ ą®®ąÆˆą®Æą®®ąÆ'),
(79361, 66515, 'no_lang_code', 'name', 'Abbott (Chile)'),
(79362, 66516, 'no_lang_code', 'name', 'Mettler-Toledo (United States)'),
(79363, 66517, 'en', 'name', 'European Institute of Education and Social Policy'),
(79364, 66518, 'no_lang_code', 'name', 'Biogelx (United Kingdom)'),
(79365, 66519, 'en', 'name', 'New Jersey Sports and Exposition Authority'),
(79366, 66520, 'no_lang_code', 'name', 'Thomson Reuters (Canada)'),
(79367, 66521, 'en', 'name', 'Research Institute of Measuring Equipment'),
(79368, 66521, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŠ·Š¼ŠµŃ€ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ техники'),
(79369, 66522, 'en', 'name', 'International Association of Research in Income and Wealth');
INSERT INTO `ror_settings` VALUES
(79370, 66523, 'en', 'name', 'Anhui DingHeng Manufacturing Industry Technology Research Institute'),
(79371, 66523, 'zh', 'name', 'å®‰å¾½é¼Žę’åˆ¶é€ ęŠ€ęœÆē ”ē©¶é™¢'),
(79372, 66524, 'en', 'name', 'Bashkir Scientific Research Institute of Petroleum Refining'),
(79373, 66524, 'ru', 'name', 'ŠŠž "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефтехимпереработки"'),
(79374, 66525, 'en', 'name', 'The Korea Society for Children''s Media'),
(79375, 66525, 'ko', 'name', 'ķ•œźµ­ģ–“ė¦°ģ“ėÆøė””ģ–“ķ•™ķšŒģ— ģžˆģŠµė‹ˆė‹¤'),
(79376, 66526, 'en', 'name', 'General Directorate of Highways'),
(79377, 66526, 'tr', 'name', 'Türkiye Cumhuriyeti Karayolları Genel Müdürlüğü'),
(79378, 66527, 'en', 'name', 'China Railway Fifth Survey and Design Institute Group'),
(79379, 66527, 'zh', 'name', 'äø­å›½é“č·Æē¬¬äŗ”å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢é›†å›¢'),
(79380, 66528, 'en', 'name', 'Acoustic Institute named after NN Andreev'),
(79381, 66528, 'ru', 'name', 'ŠŠŗŃƒŃŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š. Š. АнГреева'),
(79382, 66529, 'en', 'name', 'European Shippers'' Council'),
(79383, 66530, 'no_lang_code', 'name', 'Hybrid Instruments (United Kingdom)'),
(79384, 66531, 'en', 'name', 'Perry Maddocks Trollope Lawyers'),
(79385, 66532, 'en', 'name', 'Institute of Electron Physics'),
(79386, 66532, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š¹ физики'),
(79387, 66532, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ електронної фізики'),
(79388, 66533, 'en', 'name', 'The Indonesian Institute, Center for Public Policy Research'),
(79389, 66534, 'en', 'name', 'Institute of Condensed Matter Chemistry and Technologies for Energy'),
(79390, 66534, 'it', 'name', 'Istituto di Chimica della Materia Condensata e di Tecnologie per l''Energia'),
(79391, 66535, 'no_lang_code', 'name', 'Mettler-Toledo (China)'),
(79392, 66535, 'zh', 'name', '梅特勒-ę‰˜åˆ©å¤š'),
(79393, 66536, 'de', 'name', 'Hessisches Ministerium für Umwelt, Klimaschutz, Landwirtschaft und Verbraucherschutz'),
(79394, 66537, 'no_lang_code', 'name', 'Johnson Matthey Battery Systems (United Kingdom)'),
(79395, 66538, 'no_lang_code', 'name', 'Palo Alto Networks (United States)'),
(79396, 66539, 'pl', 'name', 'Laboratorium Datowań Bezwzględnych'),
(79397, 66540, 'en', 'name', 'The Korean Society for Anesthetic Pharmacology'),
(79398, 66540, 'ko', 'name', 'ėŒ€ķ•œė§ˆģ·Øģ•½ė¦¬ķ•™ķšŒ'),
(79399, 66541, 'no_lang_code', 'name', 'Berry Gardens (United Kingdom)'),
(79400, 66542, 'en', 'name', 'Women in Nuclear Korea'),
(79401, 66543, 'no_lang_code', 'name', 'Baogang Group (China)'),
(79402, 66544, 'en', 'name', 'Podar Ayurved Medical College'),
(79403, 66545, 'en', 'name', 'Qingdao Aerospace Semiconductor Research Institute'),
(79404, 66545, 'zh', 'name', 'é’å²›čˆŖå¤©åŠåÆ¼ä½“ē ”ē©¶ę‰€ęœ‰é™å…¬åøåŽŸ'),
(79405, 66546, 'en', 'name', 'Korean Society of Design Science'),
(79406, 66546, 'ko', 'name', 'ķ•œźµ­ė””ģžģøķ•™ķšŒ'),
(79407, 66547, 'no_lang_code', 'name', 'Excel Life Sciences (India)'),
(79408, 66548, 'en', 'name', 'The Korean Literature Association'),
(79409, 66548, 'ko', 'name', 'ķ•œźµ­ė¬øķ•™ķšŒ'),
(79410, 66549, 'no_lang_code', 'name', 'BrainTech (Poland)'),
(79411, 66550, 'en', 'name', 'Institute of Service and Entrepreneurship of DGTU'),
(79412, 66550, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сферы Š¾Š±ŃŠ»ŃƒŠ¶ŠøŠ²Š°Š½ŠøŃ Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° ДГТУ в г. Шахты'),
(79413, 66551, 'no_lang_code', 'name', 'Dashboard (United Kingdom)'),
(79414, 66552, 'no_lang_code', 'name', 'Ubisoft (France)'),
(79415, 66553, 'no_lang_code', 'name', 'ATM (Poland)'),
(79416, 66554, 'no_lang_code', 'name', 'North Oil Company (Qatar)'),
(79417, 66555, 'en', 'name', 'Institute of Food Science and Technology'),
(79418, 66555, 'zh', 'name', 'é£Ÿå“ē§‘å­¦äøŽęŠ€ęœÆē ”ē©¶ę‰€'),
(79419, 66556, 'en', 'name', 'Xinjiang Institute of Engineering'),
(79420, 66556, 'zh', 'name', '新疆巄程学院'),
(79421, 66557, 'no_lang_code', 'name', 'Interactive Scientific (United Kingdom)'),
(79422, 66558, 'en', 'name', 'Hainan Provincial Academy of Marine Fisheries and Aquaculture'),
(79423, 66558, 'zh', 'name', 'ęµ·å—ēœęµ·ę“‹äøŽęø”äøšē§‘å­¦é™¢'),
(79424, 66559, 'en', 'name', 'Flatpack Film Festival'),
(79425, 66560, 'en', 'name', 'Islamic Azad University, Aliabad Katoul'),
(79426, 66560, 'fa', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¢Ų²Ų§ŲÆ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ، Ų¹Ł„ŁŠ Ų£ŲØŲ§ŲÆ Ł‚Ų·ŁˆŁ„'),
(79427, 66561, 'no_lang_code', 'name', 'Bernard Matthews (United Kingdom)'),
(79428, 66562, 'no_lang_code', 'name', 'Guangdong Meiyan Jixiang Hydropower (China)'),
(79429, 66562, 'zh', 'name', 'å¹æäøœę¢…é›å‰ē„„ę°“ē”µč‚”ä»½ęœ‰é™å…¬åø'),
(79430, 66563, 'no_lang_code', 'name', 'IAC (United States)'),
(79431, 66564, 'fr', 'name', 'Agence des SystĆØmes d’information PartagĆ©s de SantĆ©'),
(79432, 66565, 'en', 'name', 'Directorate of Fisheries'),
(79433, 66565, 'no', 'name', 'Fiskeridirektoratet'),
(79434, 66566, 'no_lang_code', 'name', 'Fern (China)'),
(79435, 66567, 'no_lang_code', 'name', 'Geotermia Uniejów (Poland)'),
(79436, 66568, 'en', 'name', 'Guangzhou Fiber Products Inspection and Research Institute'),
(79437, 66568, 'zh', 'name', 'å¹æå·žēŗ¤ē»“äŗ§å“ę£€ęµ‹ē ”ē©¶é™¢'),
(79438, 66569, 'no_lang_code', 'name', 'Expedia Group (United States)'),
(79439, 66570, 'en', 'name', 'Korea Academic Society of Tourism Management'),
(79440, 66570, 'ko', 'name', 'ėŒ€ķ•œź“€ź“‘ź²½ģ˜ķ•™ķšŒ'),
(79441, 66571, 'no_lang_code', 'name', 'Citi Logik (United Kingdom)'),
(79442, 66572, 'en', 'name', 'InstiĀ­tute of Labour and Social StudĀ­ies'),
(79443, 66572, 'pl', 'name', 'InstyĀ­tut Pracy i Spraw SocĀ­jalĀ­nych'),
(79444, 66573, 'no_lang_code', 'name', 'The Russian Research Institute of the Tube & Pipe Industries (Russia)'),
(79445, 66573, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Š¾ā€“ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń‚Ń€ŃƒŠ±Š½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(79446, 66574, 'en', 'name', 'The North South Institute'),
(79447, 66575, 'en', 'name', 'Korean Association of Southeast Asian Studies'),
(79448, 66575, 'ko', 'name', 'ķ•œźµ­ė™ė‚Øģ•„ķ•™ķšŒ'),
(79449, 66576, 'no_lang_code', 'name', 'Kingsoft (China)'),
(79450, 66576, 'zh', 'name', '金山软件'),
(79451, 66577, 'it', 'name', 'Centro Studi GISED'),
(79452, 66578, 'en', 'name', 'Guangdong Shunde Innovative Design Institute'),
(79453, 66578, 'zh', 'name', 'å¹æäøœé”ŗå¾·åˆ›ę–°č®¾č®”é™¢'),
(79454, 66579, 'en', 'name', 'J.P. Morgan'),
(79455, 66580, 'no_lang_code', 'name', '10X Genomics (United States)'),
(79456, 66581, 'fr', 'name', 'Agence Nationale de Protection de l''Environnement'),
(79457, 66582, 'en', 'name', 'Korean Association of Real Estate Law'),
(79458, 66582, 'ko', 'name', 'ķ•œźµ­ ė¶€ė™ģ‚°ė²• ķ•™ķšŒ'),
(79459, 66583, 'en', 'name', 'Canadian Red Cross Society'),
(79460, 66583, 'fr', 'name', 'Croix Rouge canadienne'),
(79461, 66584, 'en', 'name', 'Soil and Fertilizer Institute of Hunan Province'),
(79462, 66584, 'zh', 'name', 'ę¹–å—ēœåœŸå£¤č‚„ę–™ē ”ē©¶ę‰€ęˆ'),
(79463, 66585, 'en', 'name', 'Society of Naval Architects and Marine Engineers'),
(79464, 66586, 'en', 'name', 'Institute for Governance & Sustainable Development'),
(79465, 66587, 'ko', 'name', 'ģ—¬ģ£¼ėŒ€ķ•™źµ'),
(79466, 66587, 'no_lang_code', 'name', 'Yeoju University'),
(79467, 66588, 'en', 'name', 'Korea Exercise Rehabilitation Association'),
(79468, 66588, 'ko', 'name', 'ķ•œźµ­ģš“ė™ģž¬ķ™œķ˜‘ķšŒ'),
(79469, 66589, 'en', 'name', 'Korean Financial Management Association'),
(79470, 66589, 'ko', 'name', 'ķ•œźµ­ ģž¬ė¬“ ꓀리 ķ˜‘ķšŒ'),
(79471, 66590, 'en', 'name', 'Yantai Academy of Agricultural Sciences'),
(79472, 66590, 'zh', 'name', 'ēƒŸå°å†œäøšē§‘å­¦é™¢'),
(79473, 66591, 'en', 'name', 'European Association of Research Managers and Administrators'),
(79474, 66592, 'en', 'name', 'Society for the Scientific Study of Sexuality'),
(79475, 66593, 'no_lang_code', 'name', 'Proofpoint (United States)'),
(79476, 66594, 'no_lang_code', 'name', 'Lexiwave Technology (China)'),
(79477, 66595, 'no_lang_code', 'name', 'Tianjin Geothermal Exploration, Development and Design Institute (China)'),
(79478, 66595, 'zh', 'name', 'å¤©ę“„åœ°ēƒ­å‹˜ęŸ„å¼€å‘č®¾č®”é™¢'),
(79479, 66596, 'en', 'name', 'Gumi University'),
(79480, 66596, 'ko', 'name', '구미 ėŒ€ķ•™źµ'),
(79481, 66597, 'en', 'name', 'Government Medical College'),
(79482, 66598, 'no_lang_code', 'name', 'Industrial Development Agency JSC (Poland)'),
(79483, 66598, 'pl', 'name', 'Agencja Rozwoju Przemysłu SA'),
(79484, 66599, 'en', 'name', 'Institute for Government'),
(79485, 66600, 'no_lang_code', 'name', 'Da Tang Xi Shi Group (China)'),
(79486, 66601, 'en', 'name', 'Scientists and Engineers Without Borders'),
(79487, 66601, 'ko', 'name', 'źµ­ź²½ģ—†ėŠ” 과학 기술 ģ‚¬ķšŒ'),
(79488, 66602, 'en', 'name', 'Drugs for Neglected Diseases Initiative India'),
(79489, 66603, 'fr', 'name', 'Energieagence'),
(79490, 66604, 'en', 'name', 'Shanghai Special Equipment Supervision and Inspection Institute'),
(79491, 66604, 'zh', 'name', 'äøŠęµ·ē‰¹ē§č®¾å¤‡ę£€ęµ‹ęŠ€ęœÆē ”ē©¶é™¢'),
(79492, 66605, 'no_lang_code', 'name', 'CatScI (United Kingdom)'),
(79493, 66606, 'no_lang_code', 'name', 'Cell Technology (China)'),
(79494, 66607, 'en', 'name', 'Yunnan Supply and Marketing Cooperatives'),
(79495, 66608, 'ko', 'name', '성애병원'),
(79496, 66608, 'no_lang_code', 'name', 'Sungae Hospital'),
(79497, 66609, 'en', 'name', 'The Korean Educational Administration Society'),
(79498, 66609, 'ko', 'name', 'ķ•œźµ­ 교윔 행정 ķ•™ķšŒ'),
(79499, 66610, 'en', 'name', 'The Society of Modern Literature Theory'),
(79500, 66610, 'ko', 'name', 'ķ˜„ėŒ€ 문학 ģ“ė”  ķ•™ķšŒ'),
(79501, 66611, 'es', 'name', 'Agencia Tributaria'),
(79502, 66612, 'fr', 'name', 'Centre des AƮnƩs CƓte-des-Neiges'),
(79503, 66613, 'nl', 'name', 'Koninklijke Ahold Delhaize N.V.'),
(79504, 66613, 'no_lang_code', 'name', 'Ahold Delhaize (Netherlands)'),
(79505, 66614, 'en', 'name', 'Ikon Gallery'),
(79506, 66615, 'no_lang_code', 'name', 'PowerChina (China)'),
(79507, 66615, 'zh', 'name', 'äø­å›½ē”µåŠ›å»ŗč®¾é›†å›¢å…¬åø'),
(79508, 66616, 'en', 'name', 'Scientific Research Institute Elpa'),
(79509, 66616, 'ru', 'name', 'Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «Элпа»'),
(79510, 66617, 'en', 'name', 'All-Russian Research Institute for Animal Health'),
(79511, 66617, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š·Š“Š¾Ń€Š¾Š²ŃŒŃ животных'),
(79512, 66618, 'en', 'name', 'Administrative Conference of the United States'),
(79513, 66619, 'no_lang_code', 'name', 'Jiangsu Provincial Posts & Telecommunications Planning & Design Institute (China)'),
(79514, 66619, 'zh', 'name', 'ę±Ÿč‹ēœé‚®ē”µč§„åˆ’č®¾č®”é™¢ęœ‰é™č“£ä»»å…¬åø'),
(79515, 66620, 'no_lang_code', 'name', 'Coolsure (China)'),
(79516, 66621, 'en', 'name', 'Research Institute of Medical Problems of the North'),
(79517, 66621, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинских проблем Девера'),
(79518, 66622, 'no_lang_code', 'name', 'Numina Group (United States)'),
(79519, 66623, 'en', 'name', 'The Korean Association for the Study of English Language and Linguistics'),
(79520, 66623, 'ko', 'name', 'ķ•œźµ­ģ˜ģ–“ķ•™ķšŒ'),
(79521, 66624, 'en', 'name', 'Technology Affinity Group'),
(79522, 66625, 'en', 'name', 'Korean Industrial Economic Association'),
(79523, 66625, 'ko', 'name', 'ķ•œźµ­ģ‚°ģ—…ź²½ģ œķ•™ķšŒ'),
(79524, 66626, 'en', 'name', 'Shanghai Laser Technology Institute'),
(79525, 66626, 'zh', 'name', 'äøŠęµ·åø‚ęæ€å…‰ęŠ€ęœÆē ”ē©¶ę‰€'),
(79526, 66627, 'no_lang_code', 'name', 'International Moisture Analysers (United Kingdom)'),
(79527, 66628, 'en', 'name', 'Hotel Dieu Shaver Health and Rehabilitation Centre'),
(79528, 66629, 'en', 'name', 'Federal State Budget Scientific Institution "Nizhny Novgorod Research Institute of Agriculture"'),
(79529, 66630, 'no_lang_code', 'name', 'Rosneft (Russia)'),
(79530, 66630, 'ru', 'name', 'Š Š¾ŃŠ½ŠµĢŃ„Ń‚ŃŒ'),
(79531, 66631, 'no_lang_code', 'name', 'Medpace (India)'),
(79532, 66632, 'en', 'name', 'North Ossetian State Medical Academy'),
(79533, 66632, 'ru', 'name', 'Деверо-ŠžŃŠµŃ‚ŠøŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(79534, 66633, 'no_lang_code', 'name', 'Shanghai Research Institute of Building Sciences (China)'),
(79535, 66633, 'zh', 'name', 'äøŠęµ·å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(79536, 66634, 'de', 'name', 'Bundesvereinigung der Deutschen ErnƤhrungsindustrie, Federation of German Food and Drink Industries'),
(79537, 66635, 'en', 'name', 'The Korean Language And Culture Education Society'),
(79538, 66635, 'ko', 'name', 'ķ•œźµ­ģ–øģ–“ė¬øķ™”źµģœ”ķ•™ķšŒ'),
(79539, 66636, 'fr', 'name', 'Belga'),
(79540, 66637, 'en', 'name', 'Institute for Recent History of Serbia'),
(79541, 66637, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за новију ŠøŃŃ‚Š¾Ń€ŠøŃ˜Ńƒ'),
(79542, 66638, 'de', 'name', 'Ɩsterreichische Ɩkologie Institut'),
(79543, 66638, 'en', 'name', 'Austrian Institute of Ecology'),
(79544, 66639, 'en', 'name', 'Royal Hospital for Sick Children'),
(79545, 66640, 'no_lang_code', 'name', 'Wistron (China)'),
(79546, 66640, 'zh', 'name', 'ē·Æå‰µč³‡é€šč‚”ä»½ęœ‰é™å…¬åø'),
(79547, 66641, 'en', 'name', 'Korean Association of Comparative Criminal Law'),
(79548, 66641, 'ko', 'name', 'ķ•œźµ­ė¹„źµķ˜•ģ‚¬ė²•ķ•™ķšŒ'),
(79549, 66642, 'en', 'name', 'Shandong Transportation Research Institute'),
(79550, 66642, 'zh', 'name', 'å±±äøœēœäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(79551, 66643, 'en', 'name', 'Seoil University'),
(79552, 66643, 'ko', 'name', 'ē‘žé€øå¤§å­øę ”,'),
(79553, 66644, 'no_lang_code', 'name', 'Adoreboard (United Kingdom)'),
(79554, 66645, 'no_lang_code', 'name', 'Schlumberger (Qatar)'),
(79555, 66646, 'en', 'name', 'Prostate Cancer Research'),
(79556, 66647, 'no_lang_code', 'name', 'Link (Germany)'),
(79557, 66648, 'no_lang_code', 'name', 'eCountability (United Kingdom)'),
(79558, 66649, 'en', 'name', 'Horse Sport Ireland'),
(79559, 66650, 'no_lang_code', 'name', 'Arcadis (United States)'),
(79560, 66651, 'en', 'name', 'Guangdong Special Equipment Inspection and Research Institute'),
(79561, 66651, 'zh', 'name', 'å¹æäøœēœē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(79562, 66652, 'no_lang_code', 'name', 'DSM (India)'),
(79563, 66653, 'en', 'name', 'Korean Strategic Marketing Association'),
(79564, 66653, 'ko', 'name', 'ķ•œźµ­ ģ „ėžµ ė§ˆģ¼€ķŒ… ķ˜‘ķšŒ'),
(79565, 66654, 'en', 'name', 'All-Russian Scientific Research Institute of Butter and Cheese Making'),
(79566, 66654, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃŠ»Š¾Š“ŠµŠ»ŠøŃ Šø ŃŃ‹Ń€Š¾Š“ŠµŠ»ŠøŃ'),
(79567, 66655, 'no_lang_code', 'name', 'Lupin Pharmaceuticals (United States)'),
(79568, 66656, 'no_lang_code', 'name', 'Shanghai Urban Transportation Design Institute (China)'),
(79569, 66656, 'zh', 'name', 'äøŠęµ·åø‚äŗ¤é€šč®¾č®”é™¢'),
(79570, 66657, 'no_lang_code', 'name', 'CAS Logistics (China)'),
(79571, 66658, 'en', 'name', 'Tatar Scientific Research Institute of Agriculture'),
(79572, 66658, 'ru', 'name', 'Татарский ŠŠ˜Š˜ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(79573, 66659, 'en', 'name', 'Kovai Medical Center and Hospital'),
(79574, 66660, 'fr', 'name', 'ARPE PACA, Agence RĆ©gionale Pour l’Environnement & l’écodĆ©veloppement Provence-Alpes-CĆ“te d’Azur'),
(79575, 66661, 'ko', 'name', 'ė³“ė ¹ģ œģ•½ģ˜'),
(79576, 66661, 'no_lang_code', 'name', 'Boryung Pharma (South Korea)'),
(79577, 66662, 'en', 'name', 'Institute of Macromolecular Chemistry'),
(79578, 66662, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ хімії Š²ŠøŃŠ¾ŠŗŠ¾Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½ŠøŃ… сполук'),
(79579, 66663, 'en', 'name', 'Vhi Healthcare'),
(79580, 66663, 'ga', 'name', 'An Bord Ɓrachais SlƔinte ShaorƔlaigh'),
(79581, 66664, 'en', 'name', 'Beijing Institute of Neurosurgery'),
(79582, 66665, 'ko', 'name', 'ģøķŠøė” ė°”ģ“ģ˜¤ķ…Œķ¬ė†€ė”œģ§€'),
(79583, 66665, 'no_lang_code', 'name', 'iNtRON (South Korea)'),
(79584, 66666, 'en', 'name', 'Korean German Literature Society'),
(79585, 66666, 'ko', 'name', 'ķ•œźµ­ ė…ģ¼ ė¬øķ•™ķšŒ'),
(79586, 66667, 'no_lang_code', 'name', 'Sage (United Kingdom)'),
(79587, 66668, 'no_lang_code', 'name', 'Action in Caerau & Ely (United Kingdom)'),
(79588, 66669, 'en', 'name', 'Dongak Art History Association'),
(79589, 66669, 'ko', 'name', 'ė™ģ•…ėÆøģˆ ģ‚¬ķ•™ķšŒ'),
(79590, 66670, 'no_lang_code', 'name', 'eCow Devon (United Kingdom)'),
(79591, 66671, 'en', 'name', 'The International Association for Korean Language Education'),
(79592, 66671, 'ko', 'name', 'źµ­ģ œķ•œźµ­ģ–“źµģœ”ķ•™ķšŒ'),
(79593, 66672, 'no_lang_code', 'name', 'Biotika'),
(79594, 66673, 'no_lang_code', 'name', 'Agilent Technologies (Ireland)'),
(79595, 66674, 'no_lang_code', 'name', 'Cascoda (United Kingdom)'),
(79596, 66675, 'fr', 'name', 'Registre gƩnƩral des cancers de Lille et de sa rƩgion'),
(79597, 66676, 'no_lang_code', 'name', 'Boehringer Ingelheim (India)'),
(79598, 66677, 'no_lang_code', 'name', 'Institute for Quality, Safety and Transportation (Germany)'),
(79599, 66678, 'en', 'name', 'Institute of Transport Engineering'),
(79600, 66678, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ транспортного Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(79601, 66679, 'en', 'name', 'International Council of Marine Industry Associations'),
(79602, 66680, 'no_lang_code', 'name', 'LabGenius (United Kingdom)'),
(79603, 66681, 'en', 'name', 'Ministry of Environment and Physical Planning'),
(79604, 66681, 'mk', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ за животна среГина Šø просторно ŠæŠ»Š°Š½ŠøŃ€Š°ŃšŠµ'),
(79605, 66682, 'en', 'name', 'Cyprus Post'),
(79606, 66682, 'tr', 'name', 'Kıbrıs Posta Ofisi'),
(79607, 66683, 'no_lang_code', 'name', 'ColVisTec (Germany)'),
(79608, 66684, 'el', 'name', '΄πουργείο Ī•ĻĪ³Ī±ĻƒĪÆĪ±Ļ‚ και ĪšĪæĪ¹Ī½Ļ‰Ī½Ī¹ĪŗĪ®Ļ‚ Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī±Ļ‚ & ĪšĪæĪ¹Ī½Ļ‰Ī½Ī¹ĪŗĪ®Ļ‚ Ī‘Ī»Ī»Ī·Ī»ĪµĪ³Ī³ĻĪ·Ļ‚'),
(79609, 66684, 'en', 'name', 'Ministry of Labour, Social Insurance and Social Solidarity'),
(79610, 66685, 'en', 'name', 'Korean Clinical Psychcological Association'),
(79611, 66686, 'en', 'name', 'Suwon Women’s University'),
(79612, 66686, 'ko', 'name', 'ģˆ˜ģ› ģ—¬ģž ėŒ€ķ•™źµ'),
(79613, 66687, 'en', 'name', 'Changchun Observatory'),
(79614, 66687, 'zh', 'name', 'é•æę˜„äŗŗé€ å«ę˜Ÿč§‚ęµ‹ē«™'),
(79615, 66688, 'no_lang_code', 'name', 'Fujian Academy of Building Research (China)'),
(79616, 66688, 'zh', 'name', 'ē¦å»ŗēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(79617, 66689, 'no_lang_code', 'name', 'Elgór + Hansen (Poland)'),
(79618, 66690, 'en', 'name', 'Kirov Research Institute of Hematology and Blood Transfusion FMBA'),
(79619, 66690, 'ru', 'name', 'ŠšŠøŃ€Š¾Š²ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гематологии Šø ŠæŠµŃ€ŠµŠ»ŠøŠ²Š°Š½ŠøŃ крови Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(79620, 66691, 'no_lang_code', 'name', 'Pipe Metallurgical (Russia)'),
(79621, 66691, 'ru', 'name', 'OAO Š¢Ń€ŃƒŠ±Š½Š°Ń ŠœŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń ŠšŠ¾Š¼ŠæŠ°Š½ŠøŃ'),
(79622, 66692, 'no_lang_code', 'name', 'Environmental Process Systems (United Kingdom)'),
(79623, 66693, 'en', 'name', 'Korean Society of Basic Design & Art'),
(79624, 66693, 'ko', 'name', 'ķ•œźµ­ ė””ģžģø 기쓈 ķ•™ķšŒ'),
(79625, 66694, 'ko', 'name', 'ģ—ė¦¬ģŠØģ œģ•½(주)'),
(79626, 66694, 'no_lang_code', 'name', 'Elyson Pharm (South Korea)'),
(79627, 66695, 'no_lang_code', 'name', 'Cadila Pharmaceuticals (India)'),
(79628, 66696, 'no_lang_code', 'name', 'Institute of Electronic Measurements KVARZ (Russia)'),
(79629, 66696, 'ru', 'name', 'Ā«Š¤ŠŠŸŠ¦ Ā«ŠŠŠ˜ŠŸŠ˜ Ā«ŠšŠ²Š°Ń€Ń†Ā» имени А.П. Š“Š¾Ń€ŃˆŠŗŠ¾Š²Š°Ā»'),
(79630, 66697, 'no_lang_code', 'name', 'Mikronika (Poland)'),
(79631, 66698, 'en', 'name', 'Federation of Environmental Trade Associations'),
(79632, 66699, 'en', 'name', 'Hong Kong Bar Association'),
(79633, 66699, 'zh', 'name', 'é¦™ęøÆå¤§å¾‹åø«å…¬ęœƒ'),
(79634, 66700, 'no_lang_code', 'name', 'Key Organics (United Kingdom)'),
(79635, 66701, 'en', 'name', 'The Korean Association of Primary English Education'),
(79636, 66701, 'ko', 'name', 'ķ•œźµ­ ģ“ˆė“± ģ˜ģ–“ 교윔 ķ˜‘ķšŒ'),
(79637, 66702, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£Ł…ŁŠŲ± Ł…Ų­Ł…ŲÆ بن سلمان لل؄دارة وريادة الأعمال'),
(79638, 66702, 'en', 'name', 'Prince Mohammad Bin Salman College of Business and Entrepreneurship'),
(79639, 66703, 'en', 'name', 'Office of the Secretary of Natural Resources'),
(79640, 66704, 'en', 'name', 'Concern Worldwide UK'),
(79641, 66705, 'en', 'name', 'The Society for the Studies of Silla History'),
(79642, 66705, 'ko', 'name', 'ģ‹ ė¼ 역사 ķ•™ķšŒ'),
(79643, 66706, 'en', 'name', 'Canadian National Institute Of Health'),
(79644, 66707, 'no_lang_code', 'name', 'Interregional Open Social Institute'),
(79645, 66707, 'ru', 'name', 'ŠœŠµŠ¶Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ открытый ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(79646, 66708, 'no_lang_code', 'name', 'MercadoLibre (Argentina)'),
(79647, 66709, 'en', 'name', 'Center for Art Studies'),
(79648, 66709, 'ko', 'name', 'ķ•œźµ­ģ˜ˆģˆ ģ—°źµ¬ģ†Œ'),
(79649, 66710, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¹³å’Œ'),
(79650, 66710, 'no_lang_code', 'name', 'Heiwa (Japan)'),
(79651, 66711, 'no_lang_code', 'name', 'Energostal (Ukraine)'),
(79652, 66711, 'uk', 'name', 'Š£ŠšŠ ŠŠ˜ŠŠ”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š¢Š•Š„ŠŠ˜Š§Š•Š”ŠšŠ˜Š™ Š¦Š•ŠŠ¢Š  ŠœŠ•Š¢ŠŠ›Š›Š£Š Š“Š˜Š§Š•Š”ŠšŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(79653, 66712, 'no_lang_code', 'name', 'Ineos (Belgium)'),
(79654, 66713, 'de', 'name', 'Ɩsterreichische Lateinamerika-Institut'),
(79655, 66714, 'en', 'name', 'Bridgepoint Active Healthcare'),
(79656, 66715, 'no_lang_code', 'name', 'Covance (India)'),
(79657, 66716, 'en', 'name', 'Network of Schools of Public Policy, Affairs, and Administration'),
(79658, 66717, 'no_lang_code', 'name', 'CoderDojo Foundation'),
(79659, 66718, 'ko', 'name', 'ėŒ€źµ¬ķ…Œķ¬ė…øķŒŒķ¬'),
(79660, 66718, 'no_lang_code', 'name', 'Daegu TechnoPark'),
(79661, 66719, 'fr', 'name', 'MinistĆØre de la Production Animale et des Ressources Halieutiques'),
(79662, 66720, 'en', 'name', 'Public Waste Agency of Flanders'),
(79663, 66721, 'en', 'name', 'United States Association for Computational Mechanics'),
(79664, 66722, 'en', 'name', 'Korea Testing Certification'),
(79665, 66722, 'ko', 'name', 'ķ•œźµ­źø°ź³„ģ „źø°ģ „ģžģ‹œķ—˜ģ—°źµ¬ģ›'),
(79666, 66723, 'en', 'name', 'Ministry of Ecology and Natural Resources of Ukraine'),
(79667, 66723, 'uk', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ екології та прироГних Ń€ŠµŃŃƒŃ€ŃŃ–Š² України'),
(79668, 66724, 'no_lang_code', 'name', 'Bonyf (Liechtenstein)'),
(79669, 66725, 'no_lang_code', 'name', 'Instorff (Russia)'),
(79670, 66725, 'ru', 'name', 'Š˜Š½ŃŃ‚Š¾Ń€Ń„Š°'),
(79671, 66726, 'en', 'name', 'Central Scientific and Research Institute of the Sewing Industry'),
(79672, 66726, 'ru', 'name', 'ŠžŠŠž "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Швейной ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø"'),
(79673, 66727, 'no_lang_code', 'name', 'Amneal (Switzerland)'),
(79674, 66728, 'en', 'name', 'Shijiazhuang Academy of Agriculture and Forestry Sciences'),
(79675, 66728, 'zh', 'name', 'ēŸ³å®¶åŗ„åø‚å†œęž—ē§‘å­¦ē ”ē©¶é™¢'),
(79676, 66729, 'no_lang_code', 'name', 'Yarsintez'),
(79677, 66729, 'ru', 'name', 'ŠžŠŠž ŠŠ˜Š˜ «Ярсинтез»'),
(79678, 66730, 'en', 'name', 'Texas Wheat Producers Board and Association'),
(79679, 66731, 'en', 'name', 'East Ayrshire Council'),
(79680, 66732, 'en', 'name', 'Bodyline Hospitals'),
(79681, 66733, 'en', 'name', 'Department of Planning & Building'),
(79682, 66734, 'en', 'name', 'Sejong Cyber University'),
(79683, 66734, 'ko', 'name', 'ģ„øģ¢…ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(79684, 66735, 'no_lang_code', 'name', 'Manhattan Theatre Club (United States)'),
(79685, 66736, 'en', 'name', 'Lafourche Parish School District'),
(79686, 66737, 'no_lang_code', 'name', 'Baxter (India)'),
(79687, 66738, 'en', 'name', 'Thermal Power Research Institute'),
(79688, 66738, 'zh', 'name', 'č„æå®‰ēƒ­å·„ē ”ē©¶é™¢'),
(79689, 66739, 'en', 'name', 'Cultural Enterprise Office'),
(79690, 66740, 'en', 'name', 'MaRS'),
(79691, 66741, 'en', 'name', 'Canadian Society of Microbiologists'),
(79692, 66741, 'fr', 'name', 'SociƩtƩ Canadienne des Microbiologistes'),
(79693, 66742, 'en', 'name', 'Korean Society for Digital Policy'),
(79694, 66742, 'ko', 'name', 'ķ•œźµ­ė””ģ§€ķ„øģ •ģ±…ķ•™ķšŒ'),
(79695, 66743, 'en', 'name', 'Xinjiang Uygur Autonomous Region Institute of Metrology and Measurement'),
(79696, 66743, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗč®”é‡ęµ‹čÆ•ē ”ē©¶é™¢'),
(79697, 66744, 'no_lang_code', 'name', 'Irish Horseracing Regulatory Board (Ireland)'),
(79698, 66745, 'ko', 'name', 'ģ“ė¹„ģ±„'),
(79699, 66745, 'no_lang_code', 'name', 'Ebiche (South Korea)'),
(79700, 66746, 'en', 'name', 'Family Carers Ireland'),
(79701, 66747, 'no_lang_code', 'name', 'Research Institute "Pilot" (Russia)'),
(79702, 66748, 'en', 'name', 'Ministry of Health of the Republic of Lithuania'),
(79703, 66749, 'no_lang_code', 'name', 'ƅre Skidfabrik (Sweden)'),
(79704, 66750, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ł‡Ł†ŲÆŲ³ŁŠŲ©'),
(79705, 66750, 'en', 'name', 'Academy of Engineering Sciences'),
(79706, 66751, 'no_lang_code', 'name', 'Micro Focus (United Kingdom)'),
(79707, 66752, 'no_lang_code', 'name', 'Stinger Ghaffarian Technologies (United States)'),
(79708, 66753, 'en', 'name', 'Airmid Healthgroup'),
(79709, 66754, 'en', 'name', 'The Korea institute for Religion and Culture'),
(79710, 66754, 'ko', 'name', 'ķ•œźµ­ģ¢…źµė¬øķ™”ģ—°źµ¬ģ†Œ'),
(79711, 66755, 'en', 'name', 'Institute of Marine Geology and Geophysics'),
(79712, 66755, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ морской геологии Šø геофизики'),
(79713, 66756, 'en', 'name', 'All-Russian Research Institute "Signal"'),
(79714, 66756, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «Дигнал»'),
(79715, 66757, 'no_lang_code', 'name', 'Vast Solar (Australia)'),
(79716, 66758, 'en', 'name', 'Institute of Technology and Development Foundation'),
(79717, 66759, 'en', 'name', 'Vasantdada Patil Ayurvedic Medical College & Institute Of Yoga'),
(79718, 66760, 'en', 'name', 'Derby Museums'),
(79719, 66761, 'en', 'name', 'Moscow Institute of Thermal Technology'),
(79720, 66761, 'ru', 'name', 'ŠšŠ¾Ń€ŠæŠ¾Ń€Š°Ń†ŠøŃ Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ теплотехники'),
(79721, 66762, 'en', 'name', 'Korean Association Of Business Education'),
(79722, 66762, 'ko', 'name', 'ķ•œźµ­ 경영 교윔 ķ•™ķšŒ'),
(79723, 66763, 'de', 'name', 'AWO Bundesverband, Arbeiterwohlfahrt Bundesverband'),
(79724, 66764, 'no_lang_code', 'name', 'Bramble Energy (United Kingdom)'),
(79725, 66765, 'en', 'name', 'Department of Public Expenditure and Reform'),
(79726, 66765, 'ga', 'name', 'An Roinn Caiteachais Phoiblí agus Athchóirithe'),
(79727, 66766, 'en', 'name', 'Institute of Biological Problems of the North'),
(79728, 66766, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологических проблем Девера Š”Š’Šž'),
(79729, 66767, 'no_lang_code', 'name', 'Wockhardt (Switzerland)'),
(79730, 66768, 'en', 'name', 'Nutrition Metabolism Aquaculture'),
(79731, 66769, 'no_lang_code', 'name', 'Shanghai Textile Holdings (China)'),
(79732, 66769, 'zh', 'name', 'äøŠęµ·ēŗŗē»‡ęŽ§č‚”é›†å›¢å…¬åø'),
(79733, 66770, 'en', 'name', 'Korea Infrastructure Organization for Nanotechnology'),
(79734, 66770, 'ko', 'name', 'źµ­ź°€ė‚˜ė…øģøķ”„ė¼ķ˜‘ģ˜ģ²“'),
(79735, 66771, 'en', 'name', 'Institute of Organic Synthesis and Photoreactivity'),
(79736, 66771, 'it', 'name', 'Istituto di Sintesi Organica e FotoreattivitĆ '),
(79737, 66772, 'en', 'name', 'Guizhou Institute of Biology'),
(79738, 66772, 'zh', 'name', 'č“µå·žēœē”Ÿē‰©ē ”ē©¶ę‰€'),
(79739, 66773, 'en', 'name', 'Heihe University'),
(79740, 66773, 'zh', 'name', '黑河学院'),
(79741, 66774, 'no_lang_code', 'name', 'OBERMEYER Planen + Beraten (Germany)'),
(79742, 66775, 'en', 'name', 'Pakistan Council of Research in Water Resources'),
(79743, 66776, 'no_lang_code', 'name', 'Hypetex (United Kingdom)'),
(79744, 66777, 'en', 'name', 'Shanghai Electric Tool Research Institute'),
(79745, 66777, 'zh', 'name', 'äøŠęµ·ē”µåŠØå·„å…·ē ”ē©¶ę‰€'),
(79746, 66778, 'no_lang_code', 'name', 'Getinge (Sweden)'),
(79747, 66779, 'ko', 'name', 'ķ•œźµ­ ģ„¼ģ„œ 기술'),
(79748, 66779, 'no_lang_code', 'name', 'Korea Sensor Technology (South Korea)'),
(79749, 66780, 'en', 'name', 'Institute of Materials Science of the Khabarovsk Scientific Center'),
(79750, 66780, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(79751, 66781, 'en', 'name', 'Bristol Museum & Art Gallery'),
(79752, 66782, 'no_lang_code', 'name', 'Scientific Research Institute of Semiconductor Mechanical Engineering (Russia)'),
(79753, 66783, 'ko', 'name', 'ģ•„ėøŒė…øė°”'),
(79754, 66783, 'no_lang_code', 'name', 'Abnoba (South Korea)'),
(79755, 66784, 'no_lang_code', 'name', 'JSR Farming (United Kingdom)'),
(79756, 66785, 'en', 'name', 'MAB-Mackay Rehabilitation Centre'),
(79757, 66786, 'en', 'name', 'Canadian Association of Physical Medicine and Rehabilitation'),
(79758, 66786, 'fr', 'name', 'Association Canadienne de MƩdecine Physique et de RƩadaptation'),
(79759, 66787, 'no_lang_code', 'name', 'Zimmer Biomet (India)'),
(79760, 66788, 'en', 'name', 'Sustainable Energy Development Agency'),
(79761, 66789, 'ko', 'name', 'ģ•„ģ“ķģ–“'),
(79762, 66789, 'no_lang_code', 'name', 'ICURE Pharm (South Korea)'),
(79763, 66790, 'en', 'name', 'Guilin Tea Research Institute'),
(79764, 66790, 'zh', 'name', 'ę”‚ęž—čŒ¶å¶ē ”ē©¶ę‰€'),
(79765, 66791, 'en', 'name', 'Merchants Quay Ireland'),
(79766, 66792, 'en', 'name', 'Cork Alliance Centre'),
(79767, 66793, 'en', 'name', 'Air Force Academy named after Professor NE Zhukovsky and Yu.A. Gagarin'),
(79768, 66793, 'ru', 'name', 'Военно-Š²Š¾Š·Š“ŃƒŃˆŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени профессора Š. Š•. Š–ŃƒŠŗŠ¾Š²ŃŠŗŠ¾Š³Š¾ Šø Š®. А. Гагарина'),
(79769, 66794, 'en', 'name', 'Guangdong Province Welding Technology Institute'),
(79770, 66795, 'no_lang_code', 'name', 'Alvant (United Kingdom)'),
(79771, 66796, 'en', 'name', 'Guomao Engineering Design Institute'),
(79772, 66796, 'zh', 'name', '国蓸巄程设讔院'),
(79773, 66797, 'no_lang_code', 'name', 'Fiberight (United Kingdom)'),
(79774, 66798, 'no_lang_code', 'name', 'Taiyuan Heavy Industry (China)'),
(79775, 66798, 'zh', 'name', 'å¤ŖåŽŸé‡å·„č‚”ä»½ęœ‰é™å…¬åø'),
(79776, 66799, 'en', 'name', 'Critical Sociological Association of Korea'),
(79777, 66799, 'ko', 'name', 'ķ•œźµ­ ģ¤‘ģš” ģ‚¬ķšŒ ķ•™ķšŒ'),
(79778, 66800, 'ko', 'name', '(주)중앙산업'),
(79779, 66800, 'no_lang_code', 'name', 'Chungang Industry (South Korea)'),
(79780, 66801, 'ga', 'name', 'Doras LuimnĆ­'),
(79781, 66802, 'en', 'name', 'African Institute for Mathematical Sciences Ghana'),
(79782, 66803, 'no_lang_code', 'name', 'Focus Innovation (United Kingdom)'),
(79783, 66804, 'en', 'name', 'Fujian Electric Power Survey & Design Institute'),
(79784, 66804, 'zh', 'name', 'ē¦å»ŗēœē”µåŠ›å‹˜ęµ‹č®¾č®”é™¢'),
(79785, 66805, 'no_lang_code', 'name', 'Playnote (China)'),
(79786, 66806, 'en', 'name', 'East Sussex County Council'),
(79787, 66807, 'en', 'name', 'Moulana Hospital'),
(79788, 66807, 'ml', 'name', 'ą“®ąµ—ą“²ą“¾ą“Ø ą“¹ąµ‹ą“øąµą“Ŗą“æą“±ąµą“±ąµ½'),
(79789, 66808, 'en', 'name', 'Jewish Community Centre Association of North America'),
(79790, 66809, 'en', 'name', 'Shri Sathya Sai Medical College and Research Institute'),
(79791, 66809, 'ta', 'name', 'ą®øąÆą®°ąÆ€ ą®šą®¤ąÆą®Æ ą®šą®¾ą®ÆąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(79792, 66810, 'en', 'name', 'Busan Development Institute'),
(79793, 66810, 'ko', 'name', 'ė¶€ģ‚°ė°œģ „ģ—°źµ¬ģ›'),
(79794, 66811, 'en', 'name', 'Guangdong Province Special Equipment Testing and Research Institute Zhuhai Testing Institute'),
(79795, 66811, 'zh', 'name', 'å¹æäøœēœē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢ē ęµ·ę£€ęµ‹é™¢'),
(79796, 66812, 'en', 'name', 'Korea Leisure and Recreation Association'),
(79797, 66812, 'ko', 'name', 'ķ•œźµ­ ė ˆģ € ė ˆķ¬ė¦¬ģ—ģ“ģ…˜ ķ˜‘ķšŒ'),
(79798, 66813, 'no_lang_code', 'name', 'Anheuser-Busch InBev (Belgium)'),
(79799, 66814, 'no_lang_code', 'name', 'Halliburton (Qatar)'),
(79800, 66815, 'en', 'name', 'Panzhihua Academy of Agriculture and Forestry Sciences'),
(79801, 66815, 'zh', 'name', 'ę”€ęžčŠ±åø‚å†œęž—ē§‘å­¦ē ”ē©¶é™¢ę˜Æē”±'),
(79802, 66816, 'en', 'name', 'Korean Association of Sport Pedagogy'),
(79803, 66816, 'ko', 'name', 'ķ•œźµ­ģŠ¤ķ¬ģø źµģœ”ķ•™ķšŒ'),
(79804, 66817, 'en', 'name', 'National Institute for Lifelong Education'),
(79805, 66817, 'ko', 'name', 'źµ­ź°€ķ‰ģƒźµģœ”ģ§„ķ„ģ›'),
(79806, 66818, 'en', 'name', 'United States Association for Energy Economics'),
(79807, 66819, 'no_lang_code', 'name', 'Sany (China)'),
(79808, 66819, 'zh', 'name', 'äø‰äø€é‡å·„č‚”ä»½ęœ‰é™å…¬åø'),
(79809, 66820, 'no_lang_code', 'name', 'Coal Industry Jinan Design & Research Institute (China)'),
(79810, 66820, 'zh', 'name', 'ē…¤ē‚­å·„äøšęµŽå—č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(79811, 66821, 'en', 'name', 'Ningbo Product Quality Supervision and Inspection Institute'),
(79812, 66821, 'zh', 'name', 'å®ę³¢äŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒē ”ē©¶é™¢'),
(79813, 66822, 'en', 'name', 'Dutch Art Institute'),
(79814, 66823, 'no_lang_code', 'name', 'AstraZeneca (Singapore)'),
(79815, 66824, 'no_lang_code', 'name', '42 Technology (United Kingdom)'),
(79816, 66825, 'en', 'name', 'Shandong Ocean and Fisheries Department'),
(79817, 66825, 'zh', 'name', 'å±±äøœēœęµ·ę“‹äøŽęø”äøšåŽ…'),
(79818, 66826, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų¹Ł„Ł…ŁŠŲ© Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(79819, 66826, 'en', 'name', 'General Commission for Scientific Agricultural Research'),
(79820, 66827, 'en', 'name', 'Korean German Language and Literature Society'),
(79821, 66827, 'ko', 'name', 'ķ•œźµ­ė…ģ–“ė…ė¬øķ•™ķšŒ'),
(79822, 66828, 'en', 'name', 'Swedish Consumer Agency'),
(79823, 66828, 'sv', 'name', 'Konsumentverket'),
(79824, 66829, 'no_lang_code', 'name', 'Gridsum (China)'),
(79825, 66829, 'zh', 'name', 'å›½åŒē§‘ęŠ€ęœ‰é™å…¬åø'),
(79826, 66830, 'no_lang_code', 'name', 'LifeForce Homoeopathy (India)'),
(79827, 66831, 'en', 'name', 'Kansas Coalition Against Sexual and Domestic Violence'),
(79828, 66832, 'en', 'name', 'Korea Music Educators Society'),
(79829, 66832, 'ko', 'name', 'ķ•œźµ­ģŒģ•…źµģœ”ķ•™ķšŒ'),
(79830, 66833, 'no_lang_code', 'name', 'Comba (China)'),
(79831, 66833, 'zh', 'name', 'äŗ¬äæ”é€šäæ”'),
(79832, 66834, 'no_lang_code', 'name', 'Kontel Microsystems (China)'),
(79833, 66835, 'no_lang_code', 'name', 'Cellucomp (United Kingdom)'),
(79834, 66836, 'en', 'name', 'Shanghai Pesticide Research Institute'),
(79835, 66836, 'zh', 'name', 'äøŠęµ·åø‚å†œčÆē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(79836, 66837, 'en', 'name', 'Ministry of Immigration, Diversity and Inclusion'),
(79837, 66837, 'fr', 'name', 'MinistĆØre de l’Immigration, de la DiversitĆ© et de l’Inclusion'),
(79838, 66838, 'en', 'name', 'The Anam Society for the Study Of Education'),
(79839, 66838, 'ko', 'name', '아남 교윔 ķ•™ķšŒ'),
(79840, 66839, 'it', 'name', 'Scuola Nazionale dell''Amministrazione'),
(79841, 66840, 'no_lang_code', 'name', 'Google (United Kingdom)'),
(79842, 66841, 'fr', 'name', 'Bruxelles-PropretƩ'),
(79843, 66842, 'en', 'name', 'The Korean Institute of Communications and Information Sciences'),
(79844, 66842, 'ko', 'name', 'ķ•œźµ­ 통신 정볓 ķ•™ķšŒ'),
(79845, 66843, 'en', 'name', 'Schothorst Feed Research'),
(79846, 66844, 'no_lang_code', 'name', 'Dracaena Life (China)'),
(79847, 66844, 'zh', 'name', 'é¾™č”€ę ‘ē”Ÿå‘½ęŠ€ęœÆ'),
(79848, 66845, 'no_lang_code', 'name', 'Eutechnyx (United Kingdom)'),
(79849, 66846, 'en', 'name', 'Munson-Williams-Proctor Arts Institute'),
(79850, 66847, 'no_lang_code', 'name', 'AlphaFox Systems (United Kingdom)'),
(79851, 66848, 'en', 'name', 'Military Space Academy named after AF Mozhaisky'),
(79852, 66848, 'ru', 'name', 'Военно-ŠŗŠ¾ŃŠ¼ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени А. Ф. Можайского'),
(79853, 66849, 'en', 'name', 'The Korean Society for Brain and Neural Sciences'),
(79854, 66849, 'ko', 'name', 'ķ•œźµ­ė‡Œģ‹ ź²½ź³¼ķ•™ķšŒ'),
(79855, 66850, 'en', 'name', 'The Yeats Society of Korea'),
(79856, 66850, 'ko', 'name', 'ķ•œźµ­ģ˜ˆģ“ģø ķ•™ķšŒ'),
(79857, 66851, 'ko', 'name', '쿠볓 ķ…'),
(79858, 66851, 'no_lang_code', 'name', 'KuboTek (South Korea)'),
(79859, 66852, 'ar', 'name', 'ؓركة التقدم للصناعات Ų§Ł„ŲÆŁˆŲ§Ų¦ŁŠŲ©'),
(79860, 66852, 'no_lang_code', 'name', 'TQ Pharma (Jordan)'),
(79861, 66853, 'no_lang_code', 'name', 'Aeirtec (United Kingdom)'),
(79862, 66854, 'ko', 'name', '공항 ģ‹œģ„¤ ꓀리 (주)'),
(79863, 66854, 'no_lang_code', 'name', 'Airport Facilities Management (South Korea)'),
(79864, 66855, 'en', 'name', 'The Korean Society Of Western Civilization'),
(79865, 66855, 'ko', 'name', 'ķ•œźµ­ ģ„œģ–‘ 문명 ķ•™ķšŒ'),
(79866, 66856, 'en', 'name', 'Sri Sathya Sai Institute of Higher Medical Sciences'),
(79867, 66856, 'te', 'name', 'ą°¶ą±ą°°ą±€ ą°øą°¤ą±ą°Æ సాయి ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°¹ą°Æą±ą°Æą°°ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°øą±ˆą°Øą±ą°øą±†ą°øą±'),
(79868, 66857, 'no_lang_code', 'name', 'Peer Intelligence Technology (China)'),
(79869, 66858, 'en', 'name', 'The National Institute for Strategic Studies'),
(79870, 66858, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стратегічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ'),
(79871, 66859, 'en', 'name', 'Shenzhen Terahertz Technology Innovation Research Institute'),
(79872, 66859, 'zh', 'name', 'ę·±åœ³åø‚å¤Ŗčµ«å…¹ē§‘ęŠ€åˆ›ę–°ē ”ē©¶é™¢'),
(79873, 66860, 'en', 'name', 'Korean Society for Consumer Studies'),
(79874, 66860, 'ko', 'name', 'ķ•œźµ­ģ†Œė¹„ģžķ•™ķšŒ'),
(79875, 66861, 'no_lang_code', 'name', 'Bucher Industries (Switzerland)'),
(79876, 66862, 'en', 'name', 'Khabarovsk Scientific Research Institute of Epidemiology and Microbiology'),
(79877, 66862, 'ru', 'name', 'Єабаровский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии'),
(79878, 66863, 'en', 'name', 'Korean Association Of Rusists'),
(79879, 66863, 'ko', 'name', 'ķ•œźµ­ ė£Øģ‹œģŠ¤ķŠø ķ˜‘ķšŒ'),
(79880, 66864, 'en', 'name', 'The Jacob of Paradies University'),
(79881, 66864, 'pl', 'name', 'Akademia im. Jakuba z Paradyża w Gorzowie Wielkopolskim'),
(79882, 66865, 'en', 'name', 'Hunan Nonferrous Metal Research Institute'),
(79883, 66865, 'zh', 'name', 'ę¹–å—ęœ‰č‰²é‡‘å±žē ”ē©¶é™¢åˆ›å»ŗ'),
(79884, 66866, 'no_lang_code', 'name', 'Molloy Environmental Systems (Ireland)'),
(79885, 66867, 'uk', 'name', 'Ukrnaftokhimproect'),
(79886, 66868, 'en', 'name', 'All-Russian Research Institute of Irrigation Vegetable and Melon Crops'),
(79887, 66868, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Ń€Š¾ŃˆŠ°ŠµŠ¼Š¾Š³Š¾ овощевоГства Šø бахчевоГства'),
(79888, 66869, 'en', 'name', 'Hefei Urban Planning & Design Institute'),
(79889, 66869, 'zh', 'name', 'åˆč‚„åø‚č§„åˆ’č®¾č®”é™¢'),
(79890, 66870, 'no_lang_code', 'name', 'Hilong (China)'),
(79891, 66870, 'zh', 'name', 'ęµ·éš†é›†å›¢ē¬¬'),
(79892, 66871, 'en', 'name', 'Lu’ma Native Housing Society'),
(79893, 66872, 'fr', 'name', 'Institut Eco-Conseil'),
(79894, 66873, 'en', 'name', 'International Institute for Humanistic Studies'),
(79895, 66874, 'no_lang_code', 'name', 'LyondellBasell (Germany)'),
(79896, 66875, 'en', 'name', 'Human Resources Agency of New Britain'),
(79897, 66876, 'en', 'name', 'Tianjin Special Equipment Supervision and Inspection Technology Research Institute'),
(79898, 66876, 'zh', 'name', 'å¤©ę“„åø‚ē‰¹ē§č®¾å¤‡ē›‘ē£ę£€ęŸ„ę£€éŖŒęŠ€ęœÆē ”ē©¶é™¢'),
(79899, 66877, 'no_lang_code', 'name', 'CCm Technologies (United Kingdom)'),
(79900, 66878, 'en', 'name', 'Global Education and Culture Institute'),
(79901, 66878, 'ko', 'name', 'źø€ė”œė²Œźµģœ”ė¬øķ™”ģ—°źµ¬ģ›'),
(79902, 66879, 'en', 'name', 'YIJUN Institute of International Law'),
(79903, 66879, 'ko', 'name', 'ģ“ģ¤€ źµ­ģ œė²• 학원'),
(79904, 66880, 'en', 'name', 'Korean Marketing Association'),
(79905, 66880, 'ko', 'name', 'ķ•œźµ­ė§ˆģ¼€ķŒ…ķ•™ķšŒ'),
(79906, 66881, 'no_lang_code', 'name', 'MS Clinical Research (India)'),
(79907, 66882, 'en', 'name', 'Pioneer Valley Planning Commission'),
(79908, 66883, 'en', 'name', 'Korean Music Therapy Association'),
(79909, 66883, 'ko', 'name', 'ķ•œźµ­ ģŒģ•… 치료 ķ˜‘ķšŒ'),
(79910, 66884, 'es', 'name', 'Instituto Interamericano de Cooperación para la Agricultura'),
(79911, 66885, 'en', 'name', 'Daedong Han Literary Society'),
(79912, 66885, 'ko', 'name', 'ėŒ€ė™ķ•œė¬øķ•™ķšŒ'),
(79913, 66886, 'no_lang_code', 'name', 'Cerbios (Switzerland)'),
(79914, 66887, 'en', 'name', 'Lithuanian Social Research Centre'),
(79915, 66887, 'lt', 'name', 'Lietuvos Socialinių Tyrimų Centras'),
(79916, 66888, 'en', 'name', 'Directorate of Fisheries'),
(79917, 66888, 'is', 'name', 'Fiskistofa'),
(79918, 66889, 'en', 'name', 'Community Water and Sanitation Agency'),
(79919, 66890, 'en', 'name', 'Hong Kong Printed Circuit Association'),
(79920, 66890, 'zh', 'name', 'é¦™ęøÆå°åˆ¶ē”µč·Æåä¼š'),
(79921, 66891, 'no_lang_code', 'name', 'Elektromontaż-Lublin (Poland)'),
(79922, 66892, 'no_lang_code', 'name', 'Celerity (United States)'),
(79923, 66893, 'no_lang_code', 'name', 'Veeva Systems (United States)'),
(79924, 66894, 'no_lang_code', 'name', 'Triumph Group (United States)'),
(79925, 66895, 'en', 'name', 'Korea Housing Association'),
(79926, 66896, 'lt', 'name', 'Klaipėdos Miesto Savivaldybė'),
(79927, 66897, 'en', 'name', 'Saratov Research Institute of Rural Hygiene'),
(79928, 66897, 'ru', 'name', 'Даратовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельской гигиены'),
(79929, 66898, 'en', 'name', 'BECTU (United Kingdom)'),
(79930, 66899, 'en', 'name', 'Medfit Proactive Healthcare'),
(79931, 66900, 'no_lang_code', 'name', 'Electronic Arts (United States)'),
(79932, 66901, 'en', 'name', 'The Musicological Society of Korea'),
(79933, 66901, 'ko', 'name', 'ķ•œźµ­ ģŒģ•… ķ•™ķšŒ'),
(79934, 66902, 'en', 'name', 'Korean Comparative Education Society'),
(79935, 66902, 'ko', 'name', 'ķ•œźµ­ 비교 교윔 ķ•™ķšŒ'),
(79936, 66903, 'no_lang_code', 'name', 'iHorizons (Qatar)'),
(79937, 66904, 'en', 'name', 'Louisiana Organ Procurement Agency'),
(79938, 66905, 'no_lang_code', 'name', 'Samil Industry (South Korea)'),
(79939, 66906, 'en', 'name', 'Graphic Arts Association of Hong Kong'),
(79940, 66907, 'en', 'name', 'Shandong Academy of Building Research'),
(79941, 66907, 'zh', 'name', 'å±±äøœēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(79942, 66908, 'no_lang_code', 'name', 'Guangzhou Automobile Group (China)'),
(79943, 66908, 'zh', 'name', 'å¹æå·žę±½č½¦é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(79944, 66909, 'en', 'name', 'Ministry of Justice'),
(79945, 66909, 'hu', 'name', 'IgazsÔgügyi Minisztérium'),
(79946, 66910, 'no_lang_code', 'name', 'Electrosonic (United Kingdom)'),
(79947, 66911, 'de', 'name', 'HBLFA Raumberg-Gumpenstein, Hƶhere Bundeslehr- und Forschungsanstalt Raumberg-Gumpenstein'),
(79948, 66912, 'en', 'name', 'Columbus Consolidated Government'),
(79949, 66913, 'pl', 'name', 'Agencja Rozwoju Miasta'),
(79950, 66914, 'ko', 'name', 'ģ¼ģ–‘ģ•½ķ’ˆ'),
(79951, 66914, 'no_lang_code', 'name', 'Il-Yang Pharmaceutical (South Korea)'),
(79952, 66915, 'fr', 'name', 'FƩdƩration des ComitƩs de Parents du QuƩbec'),
(79953, 66916, 'no_lang_code', 'name', 'Aesi (China)'),
(79954, 66916, 'zh', 'name', 'å…‰äø€ē³»ēµ±ļ¼ˆé¦™ęøÆļ¼‰'),
(79955, 66917, 'no_lang_code', 'name', 'Encounters Arts (United Kingdom)'),
(79956, 66918, 'no_lang_code', 'name', 'Tanvir Hospital'),
(79957, 66918, 'te', 'name', 'ą°¤ą°Øą±ą°µą±€ą°°ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(79958, 66919, 'no_lang_code', 'name', 'Jiangsu Yonggang Group (China)'),
(79959, 66920, 'en', 'name', 'Economic Geographical Society of Korea'),
(79960, 66920, 'ko', 'name', 'ķ•œźµ­ź²½ģ œģ§€ė¦¬ķ•™ķšŒ'),
(79961, 66921, 'no_lang_code', 'name', 'Siemens (Qatar)'),
(79962, 66922, 'no_lang_code', 'name', 'iQIYI (China)'),
(79963, 66922, 'zh', 'name', 'ēˆ±å„‡č‰ŗ'),
(79964, 66923, 'no_lang_code', 'name', 'Shinawil (Ireland)'),
(79965, 66924, 'en', 'name', 'Guizhou Water Conservancy and Hydropower Survey and Design Institute'),
(79966, 66924, 'zh', 'name', 'č“µå·žę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”é™¢'),
(79967, 66925, 'en', 'name', 'Beck Institute for Cognitive Behavior Therapy'),
(79968, 66926, 'de', 'name', 'Bundesverband der Deutschen Ziegelindustrie'),
(79969, 66927, 'en', 'name', 'Binzhou Technician College'),
(79970, 66927, 'zh', 'name', 'ę»Øå·žåø‚ęŠ€åøˆå­¦é™¢'),
(79971, 66928, 'no_lang_code', 'name', 'Zhejiang Shangfeng Industry (China)'),
(79972, 66928, 'zh', 'name', 'ęµ™ę±ŸäøŠęµ·å·„äøš'),
(79973, 66929, 'no_lang_code', 'name', 'Econboard (Italy)'),
(79974, 66930, 'no_lang_code', 'name', 'Chongqing Sinstar Packaging Machinery (China)'),
(79975, 66930, 'zh', 'name', 'é‡åŗ†ę–°ę˜ŸåŒ…č£…ęœŗę¢°'),
(79976, 66931, 'en', 'name', 'All-Russian Scientific Research Institute of Refrigeration Industry'),
(79977, 66931, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ЄолоГильной ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(79978, 66932, 'no_lang_code', 'name', 'Bühler (Austria)'),
(79979, 66933, 'ru', 'name', 'Zarubezhneft, Š—Š°Ń€ŃƒŠ±ŠµŠ¶Š½ŠµŃ„Ń‚ŃŒ'),
(79980, 66934, 'en', 'name', 'All-Russian Research Institute Gradient'),
(79981, 66934, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ «ГраГиент»'),
(79982, 66935, 'en', 'name', 'Government of the Philippines'),
(79983, 66936, 'en', 'name', 'Kharkiv State Veterinary Academy'),
(79984, 66936, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° Гержавна зооветеринарна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(79985, 66937, 'en', 'name', 'Energy Networks Association'),
(79986, 66938, 'no_lang_code', 'name', 'Bolmet (Poland)'),
(79987, 66939, 'no_lang_code', 'name', 'Barco (United Kingdom)'),
(79988, 66940, 'en', 'name', 'Parachute'),
(79989, 66941, 'no', 'name', 'Institutt for Eksperimentell Medisinsk Forskning'),
(79990, 66942, 'en', 'name', 'Assembly of Manitoba Chiefs'),
(79991, 66943, 'en', 'name', 'Suzhou Vocational Institute of Industrial Technology'),
(79992, 66943, 'zh', 'name', '꜉ č‹å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(79993, 66944, 'en', 'name', 'Korea Industrial Technology Association'),
(79994, 66944, 'ko', 'name', 'ķ•œźµ­ ģ‚°ģ—… 기술 ģ§„ķ„ ķ˜‘ķšŒ'),
(79995, 66945, 'el', 'name', 'Αναπτυξιακή ĪĪæĪ¼ĪæĻ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚ Ī‘.Ī•'),
(79996, 66945, 'en', 'name', 'Development Agency of Thessaloniki'),
(79997, 66946, 'no_lang_code', 'name', 'Inphi (United States)'),
(79998, 66947, 'en', 'name', 'Korea Medical Devices Industrial Cooperative Association'),
(79999, 66947, 'ko', 'name', 'ķ•œźµ­ ģ˜ė£Œ źø°źø° ģ‚°ģ—… ģ”°ķ•©'),
(80000, 66948, 'ko', 'name', 'ģ•Œķ…Œģ˜¤ģ  '),
(80001, 66948, 'no_lang_code', 'name', 'Alteogen (South Korea)'),
(80002, 66949, 'en', 'name', 'United States Preventive Services Task Force'),
(80003, 66950, 'en', 'name', 'Southington Public School'),
(80004, 66951, 'en', 'name', 'HelpAge International'),
(80005, 66952, 'en', 'name', 'Chengdu Documentation and Information Center'),
(80006, 66952, 'zh', 'name', 'ęˆéƒ½ę–‡ēŒ®ęƒ…ęŠ„äø­åæƒ'),
(80007, 66953, 'en', 'name', 'Ministry of Justice'),
(80008, 66953, 'hr', 'name', 'Ministarstvo Pravosuđa'),
(80009, 66954, 'en', 'name', 'Westminster Graduate School of Theology'),
(80010, 66954, 'ko', 'name', 'ģ›ØģŠ¤ķŠøėÆ¼ģŠ¤ķ„°ģ‹ ķ•™ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(80011, 66955, 'no_lang_code', 'name', 'GridDuck (United Kingdom)'),
(80012, 66956, 'en', 'name', 'The Korean Society of British and American Fiction'),
(80013, 66956, 'ko', 'name', 'ķ•œźµ­ź·¼ėŒ€ģ˜ėÆøģ†Œģ„¤ķ•™ķšŒ'),
(80014, 66957, 'no_lang_code', 'name', 'Maersk (Qatar)'),
(80015, 66958, 'en', 'name', 'The Korean Society for the Philosophy of Science'),
(80016, 66958, 'ko', 'name', 'ķ•œźµ­ ģ² ķ•™ ķ•™ķšŒ'),
(80017, 66959, 'fr', 'name', 'Regroupement Provincial en Santé et Bien-Être des Hommes'),
(80018, 66960, 'en', 'name', 'Solar Energy Research Institute of Sun Yat-sen University'),
(80019, 66960, 'zh', 'name', 'é”ŗå¾·äø­å±±å¤§å­¦å¤Ŗé˜³čƒ½ē ”ē©¶é™¢ē”±'),
(80020, 66961, 'en', 'name', 'Young Entrepreneurs Development Council'),
(80021, 66962, 'no_lang_code', 'name', 'Compound Semiconductor Centre (United Kingdom)'),
(80022, 66963, 'en', 'name', 'Reverse Rett'),
(80023, 66964, 'en', 'name', 'Korea Lift College'),
(80024, 66964, 'ko', 'name', 'ķ•œźµ­ģŠ¹ź°•źø°ėŒ€ķ•™źµ'),
(80025, 66965, 'no_lang_code', 'name', 'Dhathri Ayurveda (India)'),
(80026, 66966, 'no_lang_code', 'name', 'Chengdu Design & Research Institute of Building Materials Industry (China)'),
(80027, 66966, 'zh', 'name', 'ęˆéƒ½å»ŗē­‘ęę–™å·„äøšč®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬'),
(80028, 66967, 'no_lang_code', 'name', 'Equipmake (United Kingdom)'),
(80029, 66968, 'ar', 'name', 'Ł…ŁƒŲŖŲØ وزير Ų§Ł„ŲÆŁˆŁ„Ų© Ł„Ų“Ų¤ŁˆŁ† Ų§Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ©'),
(80030, 66968, 'en', 'name', 'Office of the Minister of State for Administrative Reform'),
(80031, 66969, 'en', 'name', 'The Korean Society of Design Culture'),
(80032, 66969, 'ko', 'name', 'ķ•œźµ­ė””ģžģøė¬øķ™”ķ•™ķšŒ'),
(80033, 66970, 'ko', 'name', 'ģ¼ė™ģ œģ•½'),
(80034, 66970, 'no_lang_code', 'name', 'Ildong (South Korea)'),
(80035, 66971, 'en', 'name', 'Research Institute of Disinfectology Rospotrebnadzor'),
(80036, 66971, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гезинфектологии РоспотребнаГзора'),
(80037, 66972, 'ko', 'name', '코리아칓코'),
(80038, 66972, 'no_lang_code', 'name', 'Korea Kacoh (South Korea)'),
(80039, 66973, 'fr', 'name', 'Institut Pierre Vernier'),
(80040, 66974, 'en', 'name', 'Coast to Capital'),
(80041, 66975, 'no_lang_code', 'name', 'Sanhua Holding Group (China)'),
(80042, 66975, 'zh', 'name', 'äø‰åŽęŽ§č‚”é›†å›¢'),
(80043, 66976, 'es', 'name', 'Industrias PeƱoles'),
(80044, 66976, 'no_lang_code', 'name', 'PeƱoles (Mexico)'),
(80045, 66977, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ł…ŲµŲ±ŁŁŠŲ© ŁˆŲ§Ł„Ł…Ų§Ł„ŁŠŲ©'),
(80046, 66977, 'en', 'name', 'Sudan Academy for Banking and Financial Sciences'),
(80047, 66978, 'no_lang_code', 'name', 'Siberian Research and Design Institute (Russia)'),
(80048, 66978, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(80049, 66979, 'no_lang_code', 'name', 'Dynavolt Tech (China)'),
(80050, 66979, 'zh', 'name', 'å¹æäøœēŒ›ē‹®ę–°čƒ½ęŗē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(80051, 66980, 'en', 'name', 'All-Russian Research Institute of Food Additives'),
(80052, 66980, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ пищевых Гобавок'),
(80053, 66981, 'no_lang_code', 'name', 'Shandong Iron and Steel Group (China)'),
(80054, 66981, 'zh', 'name', 'å±±äøœé’¢é“é›†å›¢');
INSERT INTO `ror_settings` VALUES
(80055, 66982, 'de', 'name', 'Institut für Chemo- und Biosensorik'),
(80056, 66983, 'en', 'name', 'Hong Kong Food Council'),
(80057, 66983, 'zh', 'name', 'é¦™ęøÆé£Ÿå“å§”å“”ęœƒ'),
(80058, 66984, 'en', 'name', 'Military University'),
(80059, 66984, 'ru', 'name', 'Военный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(80060, 66985, 'en', 'name', 'Democratic Commission for Human Development'),
(80061, 66986, 'en', 'name', 'Irkutsk Regional Clinical Hospital'),
(80062, 66986, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠ°Ń Š¾Š±Š»Š°ŃŃ‚Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(80063, 66987, 'en', 'name', 'Care International'),
(80064, 66988, 'en', 'name', 'Barnsley Metropolitan Borough Council'),
(80065, 66989, 'en', 'name', 'The Korean Society for Sociology of Education'),
(80066, 66989, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ ķ•™ķšŒ'),
(80067, 66990, 'en', 'name', 'Mental Health, Drug & Alcohol Services Board of Logan and Champaign'),
(80068, 66991, 'bn', 'name', 'ą¦¦ą§ą¦°ą§ą¦—ą¦¾ą¦Ŗą§ą¦° ą¦øą§‹ą¦øą¦¾ą¦‡ą¦Ÿą¦æ অফ ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦øą¦¾ą¦‡ą¦Øą§ą¦ø'),
(80069, 66991, 'en', 'name', 'DSMS Group of Institutions'),
(80070, 66992, 'no_lang_code', 'name', 'Yonker Environmental Protection (China)'),
(80071, 66992, 'zh', 'name', 'ę°øęø…ēŽÆäæč‚”ä»½ęœ‰é™å…¬åø'),
(80072, 66993, 'en', 'name', 'Korean Society for Education through Art'),
(80073, 66993, 'ko', 'name', 'ķ•œźµ­źµ­ģ œėÆøģˆ źµģœ”ķ•™ķšŒ'),
(80074, 66994, 'en', 'name', 'BahĆ”''Ć­ Agency for Social and Economic Development'),
(80075, 66995, 'no_lang_code', 'name', 'Geotermia Mazowiecka (Poland)'),
(80076, 66996, 'fr', 'name', 'RĆ©seau FranƧais des Instituts d''Ɖtudes AvancĆ©es'),
(80077, 66997, 'en', 'name', 'Olympic Council of Ireland'),
(80078, 66998, 'en', 'name', 'Qingdao Academy of Intelligent Industries'),
(80079, 66998, 'zh', 'name', 'é’å²›ę™ŗčƒ½äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(80080, 66999, 'en', 'name', 'Wiltshire and Swindon History Centre'),
(80081, 67000, 'en', 'name', 'Institute for Creation Research'),
(80082, 67001, 'en', 'name', 'Susquehanna River Basin Commission'),
(80083, 67002, 'en', 'name', 'Azov Scientific Research Institute of Fisheries'),
(80084, 67002, 'ru', 'name', 'Азовский ŠŠ˜Š˜ Рыбного Š„Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(80085, 67003, 'no_lang_code', 'name', 'DiagCor (China)'),
(80086, 67004, 'de', 'name', 'Verbraucherzentrale Bundesverband'),
(80087, 67004, 'en', 'name', 'Federation of German Consumer Organisations'),
(80088, 67005, 'en', 'name', 'Centre of Social Innovation in Agriculture'),
(80089, 67005, 'fr', 'name', 'Centre d’innovation sociale en agriculture'),
(80090, 67006, 'de', 'name', 'Helmholtz-Institut für RNA-basierte Infektionsforschung'),
(80091, 67006, 'en', 'name', 'Helmholtz Institute for RNA-based Infection Research'),
(80092, 67007, 'en', 'name', 'Suzhou Thermal Engineering Research Institute'),
(80093, 67007, 'zh', 'name', 'č‹å·žēƒ­å·„ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(80094, 67008, 'en', 'name', 'Native Youth Sexual Health Network'),
(80095, 67009, 'no_lang_code', 'name', 'Sulzer (Ireland)'),
(80096, 67010, 'en', 'name', 'Korean Society of Comparision Labor Law'),
(80097, 67010, 'ko', 'name', 'ķ•œźµ­ė¹„źµė…øė™ė²•ķ•™ķšŒ'),
(80098, 67011, 'en', 'name', 'Westminster Schools'),
(80099, 67012, 'en', 'name', 'Seoul University of Buddhism'),
(80100, 67012, 'ko', 'name', 'ģ„œģšøė¶ˆźµėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(80101, 67013, 'en', 'name', 'International Network for Korean Language and Culture'),
(80102, 67013, 'ko', 'name', 'źµ­ģ œķ•œźµ­ģ–øģ–“ė¬øķ™”ķ•™ķšŒ'),
(80103, 67014, 'no_lang_code', 'name', 'Rosinformagrotekh'),
(80104, 67014, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информации Šø технико-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŃ… обоснований Š“Š»Ń инженерно-технического Š¾Š±ŠµŃŠæŠµŃ‡ŠµŠ½ŠøŃ Š°Š³Ń€Š¾ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š³Š¾ комплекса'),
(80105, 67015, 'en', 'name', 'Hong Kong Printers Association'),
(80106, 67015, 'zh', 'name', 'é¦™ęøÆå°åˆ·ę„­å•†ęœƒ'),
(80107, 67016, 'en', 'name', 'Korean Society of Civil Engineers'),
(80108, 67016, 'ko', 'name', 'ėŒ€ķ•œ 토목 ķ•™ķšŒ'),
(80109, 67017, 'ar', 'name', 'المدرسة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© ŲØŲ§Ł„ŲÆŁˆŲ­Ų©'),
(80110, 67017, 'en', 'name', 'American School of Doha'),
(80111, 67018, 'en', 'name', 'VA Center for Clinical Management Research'),
(80112, 67019, 'en', 'name', 'Sparsh Hospital'),
(80113, 67020, 'no_lang_code', 'name', 'Kangmei Pharmaceutical (China)'),
(80114, 67020, 'zh', 'name', 'åŗ·ē¾ŽčÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(80115, 67021, 'en', 'name', 'Marches Energy Agency'),
(80116, 67022, 'no_lang_code', 'name', 'Alarsin (India)'),
(80117, 67023, 'en', 'name', 'Liaoning Water Conservancy Society'),
(80118, 67023, 'zh', 'name', '辽宁省氓利学会'),
(80119, 67024, 'en', 'name', 'SAGA Heavy Ion Medical Accelerator in Tosu'),
(80120, 67024, 'ja', 'name', 'ä¹å·žå›½éš›é‡ē²’å­ē·šćŒć‚“ę²»ē™‚ć‚»ćƒ³ć‚æ'),
(80121, 67025, 'no_lang_code', 'name', 'Giproniiaviaprom'),
(80122, 67025, 'ru', 'name', 'Š“ŠøŠæŃ€Š¾ŠŠ˜Š˜Š°Š²ŠøŠ°ŠæŃ€Š¾Š¼'),
(80123, 67026, 'no_lang_code', 'name', 'Cambridge Nanotherm (United Kingdom)'),
(80124, 67027, 'hi', 'name', 'ą¤œą„‡ą¤ą¤øą¤ą¤ø ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤°ą¤æą¤øą¤°ą„ą¤š इंऔिया ą¤Ŗą„ą¤°ą¤¾ą„¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(80125, 67027, 'kn', 'name', 'ą²œą³†ą²Žą²øą³ą²Žą²øą³ ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ಸಂಶೋಧನಾ ಭಾರತ ą²Ŗą³ą²°ą³ˆ. ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(80126, 67027, 'no_lang_code', 'name', 'JSS Medical Research (India)'),
(80127, 67028, 'en', 'name', 'Dr. Panjabrao Deshmukh Memorial Medical College'),
(80128, 67029, 'el', 'name', 'Τμήματος Αλιείας και Ī˜Ī±Ī»Ī±ĻƒĻƒĪÆĻ‰Ī½ Ī•ĻĪµĻ…Ī½ĻŽĪ½'),
(80129, 67029, 'en', 'name', 'Department of Fisheries and Marine Research'),
(80130, 67030, 'en', 'name', 'Harbin Institute of Petroleum'),
(80131, 67030, 'zh', 'name', 'å“ˆå°”ę»ØēŸ³ę²¹å­¦é™¢'),
(80132, 67031, 'en', 'name', 'Surrey Board of Trade'),
(80133, 67032, 'no_lang_code', 'name', 'Mundipharma (South Korea)'),
(80134, 67033, 'en', 'name', 'Daegu Visually Impaired Culture Center'),
(80135, 67033, 'ko', 'name', 'ėŒ€źµ¬ģ‹œź°ģž„ģ• ģøė¬øķ™”ģ›'),
(80136, 67034, 'en', 'name', 'Division of Energy'),
(80137, 67035, 'no_lang_code', 'name', 'SCIVIC Engineering Corporation (China)'),
(80138, 67035, 'zh', 'name', 'ęœŗę¢°å·„äøšē¬¬å››č®¾č®”ē ”ē©¶é™¢'),
(80139, 67036, 'fr', 'name', 'Ministère de la Famille, de l''Intégration et à la Grande Région'),
(80140, 67037, 'en', 'name', 'Heilongjiang Academy of Forestry'),
(80141, 67037, 'zh', 'name', 'é»‘é¾™ę±Ÿēœęž—äøšē§‘å­¦é™¢'),
(80142, 67038, 'no_lang_code', 'name', 'Chuang''s Consortium International (China)'),
(80143, 67038, 'zh', 'name', 'åŗ„ę°å›½é™…č“¢å›¢'),
(80144, 67039, 'fr', 'name', 'Centre d''ƉpidĆ©miologie sur les Causes MĆ©dicales de DĆ©cĆØs'),
(80145, 67040, 'en', 'name', 'Radiation Safety Directorate'),
(80146, 67040, 'mk', 'name', 'Š”ŠøŃ€ŠµŠŗŃ†ŠøŃ˜Š° за Ń€Š°Š“ŠøŃ˜Š°Ń†ŠøŠ¾Š½Š° ŃŠøŠ³ŃƒŃ€Š½Š¾ŃŃ‚'),
(80147, 67041, 'da', 'name', 'Justitsministeriet'),
(80148, 67041, 'en', 'name', 'Danish Ministry of Justice'),
(80149, 67042, 'no_lang_code', 'name', 'Equilume (Ireland)'),
(80150, 67043, 'no_lang_code', 'name', 'Corium Solutions (United Kingdom)'),
(80151, 67044, 'no_lang_code', 'name', 'Cloudera (United States)'),
(80152, 67045, 'en', 'name', 'Central Design and Technology Institute of Valve Construction'),
(80153, 67045, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š°Ń€Š¼Š°Ń‚ŃƒŃ€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(80154, 67046, 'en', 'name', 'East Belfast Mission'),
(80155, 67047, 'ko', 'name', 'ģøķˆ¬ģøģ›”ė“œėŠ”'),
(80156, 67047, 'no_lang_code', 'name', 'Intoinworld'),
(80157, 67048, 'en', 'name', 'Central Research Textile Institute'),
(80158, 67048, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Ń‚ŠµŠŗŃŃ‚ŠøŠ»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(80159, 67049, 'no_lang_code', 'name', 'AP Photonics (China)'),
(80160, 67049, 'zh', 'name', 'ę„›ä½©å„€å…‰é›»ęŠ€č”“ęœ‰é™å…¬åø'),
(80161, 67050, 'en', 'name', 'The English Linguistics Society of Korea'),
(80162, 67050, 'ko', 'name', 'ķ•œźµ­ģ˜ģ–“ķ•™ķ•™ķšŒ'),
(80163, 67051, 'en', 'name', 'Gateshead Council'),
(80164, 67052, 'no_lang_code', 'name', 'Positec (China)'),
(80165, 67052, 'zh', 'name', 'å®ę—¶å¾—ē§‘ęŠ€'),
(80166, 67053, 'no_lang_code', 'name', 'Array Information Technology (United States)'),
(80167, 67054, 'en', 'name', 'Goodball Academy'),
(80168, 67054, 'ko', 'name', 'źµæė³¼ķžė§ģ„¼ķ„°'),
(80169, 67055, 'en', 'name', 'Liaoning Provincial Institute of Agricultural Mechanization'),
(80170, 67055, 'zh', 'name', 'č¾½å®ēœå†œäøšęœŗę¢°åŒ–ē ”ē©¶ę‰€'),
(80171, 67056, 'no_lang_code', 'name', 'Elytt Energy (Spain)'),
(80172, 67057, 'en', 'name', 'Federal Agrarian Scientific Center of the North-East named after NV Rudnitsky'),
(80173, 67057, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ аграрный Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Деверо-Востока имени Š.Š’. Š ŃƒŠ“Š½ŠøŃ†ŠŗŠ¾Š³Š¾'),
(80174, 67058, 'no_lang_code', 'name', 'Albatern (United Kingdom)'),
(80175, 67059, 'en', 'name', 'The Association of Comparative Study of World Literature'),
(80176, 67059, 'ko', 'name', 'ģ„øź³„ė¬øķ•™ė¹„źµķ•™ķšŒ'),
(80177, 67060, 'no_lang_code', 'name', 'Actimass (United Kingdom)'),
(80178, 67061, 'en', 'name', 'East-Siberian Institute of Medical and Ecological Research'),
(80179, 67061, 'ru', 'name', 'Восточно-Дибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГико-ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… исслеГований'),
(80180, 67062, 'en', 'name', 'NHS Forth Valley'),
(80181, 67063, 'no_lang_code', 'name', 'European Recycling Platform (Ireland)'),
(80182, 67064, 'en', 'name', 'Asian Pacific Society of Cardiology'),
(80183, 67065, 'en', 'name', 'Wilmington Public Library'),
(80184, 67066, 'en', 'name', 'Kentucky Commission on Human Rights'),
(80185, 67067, 'en', 'name', 'Guangzhou Urban Planning Survey & Design Institute'),
(80186, 67067, 'zh', 'name', 'å¹æå·žåø‚åŸŽåø‚č§„åˆ’å‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢'),
(80187, 67068, 'no_lang_code', 'name', 'LIT-PHONON (Russia)'),
(80188, 67069, 'en', 'name', 'Korean Urban Management Association'),
(80189, 67069, 'ko', 'name', 'ķ•œźµ­ė„ģ‹œķ–‰ģ •ķ•™ķšŒ'),
(80190, 67070, 'en', 'name', 'Florida Department of Economic Opportunity'),
(80191, 67071, 'en', 'name', 'Taiyuan Institute of Technology'),
(80192, 67072, 'en', 'name', 'International Ginseng & Herb Research Institute'),
(80193, 67072, 'ko', 'name', 'źøˆģ‚°źµ­ģ œģøģ‚¼ģ•½ģ“ˆģ—°źµ¬ģ†Œ'),
(80194, 67073, 'no_lang_code', 'name', 'Lirsot (Russia)'),
(80195, 67073, 'ru', 'name', 'Лирсот'),
(80196, 67074, 'ko', 'name', 'ģ—ģ“ķ”¼ģ‹œģŠ¤ķ…œ(주)'),
(80197, 67074, 'no_lang_code', 'name', 'AP Systems (South Korea)'),
(80198, 67075, 'am', 'name', 'į‹“.įˆ į‹Øįˆ˜įŒˆįŠ“įŠ›įŠ“ įŠ¢įŠ•įŽįˆ­įˆœįˆ½įŠ• į‰“įŠ­įŠ–įˆŽįŒ‚ įˆšįŠ’įˆµį‰“įˆ­'),
(80199, 67075, 'en', 'name', 'Ministry of Communication and Information Technology'),
(80200, 67076, 'en', 'name', 'Korean Association for Public Security Administration'),
(80201, 67076, 'ko', 'name', 'ķ•œźµ­ ź³µģ•ˆ ꓀리 ķ˜‘ķšŒ'),
(80202, 67077, 'bn', 'name', 'ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦Øą¦æą¦‰ą¦°ą§‹ą¦øą¦¾ą¦‡ą¦Øą§ą¦øą§‡ą¦ø'),
(80203, 67077, 'en', 'name', 'Institute of Neurosciences Kolkata'),
(80204, 67078, 'en', 'name', 'Bilquis Postgraduate College For Women'),
(80205, 67078, 'ur', 'name', 'Ų®ŁˆŲ§ŲŖŪŒŁ† کے لئے ŲØŁ„Ł‚ŪŒŲ³ Ų§ŪŒŲ¬ŁˆŚ©ŪŒŲ“Ł† کالج'),
(80206, 67079, 'de', 'name', 'Ministerium für Umwelt, Energie, Ernährung und Forsten Rheinland Pfalz'),
(80207, 67080, 'no_lang_code', 'name', 'Wowiwe Instruction (United States)'),
(80208, 67081, 'en', 'name', 'Korean Family studies Association'),
(80209, 67081, 'ko', 'name', 'ķ•œźµ­ź°€ģ”±ķ•™ķšŒ'),
(80210, 67082, 'en', 'name', 'Jiangxi Provincial Institute of Water Sciences'),
(80211, 67082, 'zh', 'name', 'ę±Ÿč„æēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(80212, 67083, 'en', 'name', 'Chechen Scientific Research Institute of Agriculture'),
(80213, 67083, 'ru', 'name', 'Чеченский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(80214, 67084, 'en', 'name', 'Dundee Contemporary Arts'),
(80215, 67085, 'no_lang_code', 'name', 'Corepharmbio (South Korea)'),
(80216, 67086, 'ko', 'name', 'ź²½ė™ģ œģ•½'),
(80217, 67086, 'no_lang_code', 'name', 'Kyungdong Pharmaceutical (South Korea)'),
(80218, 67087, 'en', 'name', 'Scientific Research Institute for Standardization and Unification'),
(80219, 67087, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾Ā­ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ станГартизации Šø ŃƒŠ½ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø'),
(80220, 67088, 'no_lang_code', 'name', 'Sinograin (China)'),
(80221, 67088, 'zh', 'name', '中储粮'),
(80222, 67089, 'en', 'name', 'The Korean Economic Association'),
(80223, 67089, 'ko', 'name', 'ķ•œźµ­ź²½ģ œķ•™ķšŒ'),
(80224, 67090, 'en', 'name', 'Korean Japanese Association'),
(80225, 67090, 'ko', 'name', 'ķ•œģ¼ķ˜‘ķšŒ'),
(80226, 67091, 'en', 'name', 'Yulchon Foundation'),
(80227, 67091, 'ko', 'name', 'ģœØģ“Œģž¬ė‹Ø'),
(80228, 67092, 'en', 'name', 'Mount Fuji Research Institute'),
(80229, 67092, 'ja', 'name', 'åÆŒå£«ē·åˆē ”ē©¶ę‰€'),
(80230, 67093, 'en', 'name', 'Guangxi Special Equipment Inspection Institute'),
(80231, 67093, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(80232, 67094, 'en', 'name', 'Korean Mathematical Society'),
(80233, 67094, 'ko', 'name', 'ķ•œźµ­ ģˆ˜ķ•™ķšŒ'),
(80234, 67095, 'en', 'name', 'Korea Medicine Research Institute'),
(80235, 67095, 'ko', 'name', 'ķ•œźµ­ ģ˜ģ•½ 연구원'),
(80236, 67096, 'no_lang_code', 'name', 'Bioseutica (Netherlands)'),
(80237, 67097, 'en', 'name', 'Wellcome Centre for Anti-Infectives Research'),
(80238, 67098, 'en', 'name', 'China International Engineering Design & Research Institute'),
(80239, 67098, 'zh', 'name', 'äø­ęœŗå›½é™…å·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(80240, 67099, 'en', 'name', 'Ministry of the Environment'),
(80241, 67099, 'et', 'name', 'Keskkonnaministeerium'),
(80242, 67100, 'en', 'name', 'Gansu Academy of Machinery Science'),
(80243, 67100, 'zh', 'name', 'ē”˜č‚ƒēœęœŗę¢°ē§‘å­¦ē ”ē©¶é™¢'),
(80244, 67101, 'no_lang_code', 'name', 'Creative Commons'),
(80245, 67102, 'no_lang_code', 'name', 'Sibur (Russia)'),
(80246, 67103, 'en', 'name', 'The Nautical Institute'),
(80247, 67104, 'no_lang_code', 'name', 'Made in Sense (China)'),
(80248, 67105, 'no_lang_code', 'name', 'Tebian Electric Apparatus (China)'),
(80249, 67105, 'zh', 'name', 'ē‰¹å˜ē”µå·„č‚”ä»½ęœ‰é™å…¬åø'),
(80250, 67106, 'no_lang_code', 'name', 'Changzhou Institute of Printed Electronics Industry'),
(80251, 67106, 'zh', 'name', 'åøøå·žå°åˆ·ē”µå­äŗ§äøšē ”ē©¶é™¢é”µ'),
(80252, 67107, 'en', 'name', 'Korean Society of Interventional Neuroradiology'),
(80253, 67107, 'ko', 'name', 'ėŒ€ķ•œģ‹ ź²½ģ¤‘ģž¬ģ¹˜ė£Œģ˜ķ•™ķšŒ'),
(80254, 67108, 'no_lang_code', 'name', 'Creative Concern (United Kingdom)'),
(80255, 67109, 'fr', 'name', 'Commission Scolaire des Hautes RiviĆØres'),
(80256, 67110, 'ko', 'name', 'ģ¼ģ§„ 그룹'),
(80257, 67110, 'no_lang_code', 'name', 'ILJIN Group (South Korea)'),
(80258, 67111, 'no_lang_code', 'name', 'Information Technology for Market Leadership (Greece)'),
(80259, 67112, 'en', 'name', 'Korea Engineering Consultants Corporation'),
(80260, 67112, 'ko', 'name', 'ķ•œźµ­ģ¢…ķ•©źø°ģˆ '),
(80261, 67113, 'en', 'name', 'Nulife Hospital'),
(80262, 67114, 'en', 'name', 'Saint Joseph’s Translational Research Institute'),
(80263, 67115, 'pl', 'name', 'Europejski Instytut Miedzi'),
(80264, 67116, 'ja', 'name', 'ć‚½ćƒ•ćƒˆćƒćƒ³ć‚Æć‚°ćƒ«ćƒ¼ćƒ—ę Ŗå¼ä¼šē¤¾'),
(80265, 67116, 'no_lang_code', 'name', 'SoftBank Group (Japan)'),
(80266, 67117, 'en', 'name', 'Clothing Industry Training Authority'),
(80267, 67117, 'zh', 'name', 'åˆ¶č”£äøšč®­ē»ƒå±€'),
(80268, 67118, 'no_lang_code', 'name', 'Pacific Medical (China)'),
(80269, 67119, 'en', 'name', 'Northern Lighthouse Board'),
(80270, 67120, 'no_lang_code', 'name', 'Phison (Taiwan)'),
(80271, 67121, 'en', 'name', 'The Korean Society for Practical Theology'),
(80272, 67121, 'ko', 'name', 'ķ•œźµ­ ģ‹¤ģ²œ ģ‹ ķ•™ķšŒ'),
(80273, 67122, 'id', 'name', 'Direktorat Jenderal Peternakan dan Kesehatan Hewan'),
(80274, 67123, 'no_lang_code', 'name', 'Helia Photonics (United Kingdom)'),
(80275, 67124, 'no_lang_code', 'name', 'Occidental Petroleum (Qatar)'),
(80276, 67125, 'no_lang_code', 'name', 'Bio bean (United Kingdom)'),
(80277, 67126, 'en', 'name', 'All-Russian Research and Development Technological Institute for the Repair and Operation of the Machine and Tractor Park'),
(80278, 67126, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технического ремонта Šø Š¾Š±ŃŠ»ŃƒŠ¶ŠøŠ²Š°Š½ŠøŃ тракторного парка'),
(80279, 67127, 'en', 'name', 'Zhejiang Library'),
(80280, 67127, 'zh', 'name', 'ęµ™ę±Ÿå›¾ä¹¦é¦†'),
(80281, 67128, 'en', 'name', 'Ashtabula County Mental Health & Recovery Services Board'),
(80282, 67129, 'es', 'name', 'Instituto Tecnico Agronómico Provincial'),
(80283, 67130, 'ko', 'name', 'ķ•œźµ­ 스마트 ģ œģ”°ģ—… ķ˜‘ķšŒ'),
(80284, 67130, 'no_lang_code', 'name', 'Korea Smart Manufacturing Industry Association (South Korea)'),
(80285, 67131, 'en', 'name', 'The Society Of Modern Grammar'),
(80286, 67131, 'ko', 'name', 'ķ˜„ėŒ€ 문법 ķ•™ķšŒ'),
(80287, 67132, 'en', 'name', 'Korea Academic Society of Industrial Organization'),
(80288, 67132, 'ko', 'name', 'ķ•œźµ­ ģ‚°ģ—… ķ•™ķšŒ'),
(80289, 67133, 'en', 'name', 'Decom North Sea'),
(80290, 67134, 'en', 'name', 'Korean Educational Idea Association'),
(80291, 67134, 'ko', 'name', 'ķ•œźµ­źµģœ”ģ‚¬ģƒģ—°źµ¬ķšŒ'),
(80292, 67135, 'en', 'name', 'Conference Board'),
(80293, 67136, 'no_lang_code', 'name', 'CeGaT (Germany)'),
(80294, 67137, 'no_lang_code', 'name', '2-DTech (United Kingdom)'),
(80295, 67138, 'no_lang_code', 'name', 'Syneos Health (South Korea)'),
(80296, 67139, 'en', 'name', 'Jiangsu Provincial Marine and Fisheries Bureau'),
(80297, 67139, 'zh', 'name', 'ę±Ÿč‹ēœęµ·ę“‹äøŽęø”äøšå±€ 地址'),
(80298, 67140, 'fr', 'name', 'HƓpital Clinique Claude-Bernard'),
(80299, 67141, 'ko', 'name', 'ķ•œźµ­ 정볓 ģ‹œģŠ¤ķ…œ'),
(80300, 67141, 'no_lang_code', 'name', 'Korea Information System (South Korea)'),
(80301, 67142, 'en', 'name', 'Federation of Sri Lankan Local Government Authorities'),
(80302, 67143, 'en', 'name', 'Ryazan Higher Airborne Command School named after. V. F. Margelov'),
(80303, 67143, 'ru', 'name', 'Š ŃŠ·Š°Š½ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ возГушно-Гесантное команГное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ им. Š’. Ф. ŠœŠ°Ń€Š³ŠµŠ»Š¾Š²'),
(80304, 67144, 'no_lang_code', 'name', 'VCAST (China)'),
(80305, 67145, 'de', 'name', 'Bundesverband IT-Mittelstand'),
(80306, 67146, 'en', 'name', 'Social Care Institute for Excellence'),
(80307, 67147, 'en', 'name', 'Shanxi Academy of Building Research'),
(80308, 67147, 'zh', 'name', 'å±±č„æēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(80309, 67148, 'en', 'name', 'National Cancer Registry'),
(80310, 67149, 'no_lang_code', 'name', 'Certizen (China)'),
(80311, 67149, 'zh', 'name', 'ēæ¹ę™‰é›»å­å•†å‹™ęœ‰é™å…¬åø'),
(80312, 67150, 'en', 'name', 'Liaoning Provincial Bureau of Quality and Technical Supervision'),
(80313, 67150, 'zh', 'name', 'č¾½å®ēœč“Øé‡ęŠ€ęœÆē›‘ē£å±€'),
(80314, 67151, 'en', 'name', 'Suzhou Institute of Trade & Commerce'),
(80315, 67151, 'zh', 'name', 'č‹å·žåø‚å•†č“øå­¦é™¢'),
(80316, 67152, 'en', 'name', 'Department of Metropolitan Development'),
(80317, 67153, 'en', 'name', 'Asia-Pacific Centre of Education for International Understanding'),
(80318, 67153, 'ko', 'name', 'ģœ ė„¤ģŠ¤ģ½”ģ˜ ģ§€ģ›ķ•˜ģ— ģ•„ģ‹œģ•„ ķƒœķ‰ģ–‘ 국제 ģ“ķ•“ 교윔 센터'),
(80319, 67154, 'de', 'name', 'Forschungsinstitut für Musiktheater'),
(80320, 67154, 'en', 'name', 'Research Institute for Music Theater Studies'),
(80321, 67155, 'en', 'name', 'Council of European Aerospace Societies'),
(80322, 67156, 'en', 'name', 'Man Up Campaign'),
(80323, 67157, 'en', 'name', 'Federation of Busan Science and Technology'),
(80324, 67157, 'ko', 'name', 'ė¶€ģ‚°ź³¼ķ•™źø°ģˆ ķ˜‘ģ˜ķšŒ'),
(80325, 67158, 'no_lang_code', 'name', 'Bladon Jets (United Kingdom)'),
(80326, 67159, 'no_lang_code', 'name', 'Delta Motorsport (United Kingdom)'),
(80327, 67160, 'no_lang_code', 'name', 'Centerprogramsystems'),
(80328, 67160, 'ru', 'name', 'Центрпрограммсистем'),
(80329, 67161, 'en', 'name', 'Lithuanian Geological Survey'),
(80330, 67161, 'lt', 'name', 'Lietuvos geologijos tarnyba'),
(80331, 67162, 'en', 'name', 'Yangzhou Polytechnic Institute'),
(80332, 67162, 'zh', 'name', 'ę‰¬å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(80333, 67163, 'en', 'name', 'Antich & Sons (United Kingdom)'),
(80334, 67164, 'en', 'name', 'Korea Tourism Organization'),
(80335, 67164, 'ko', 'name', 'ķ•œźµ­ź“€ź“‘ź³µģ‚¬'),
(80336, 67165, 'en', 'name', 'Kaywon University of Art & Design'),
(80337, 67165, 'ko', 'name', 'ģ¼€ģ“ģ› 미술 ėŒ€ķ•™'),
(80338, 67166, 'en', 'name', 'European Mentoring Coaching Council'),
(80339, 67167, 'en', 'name', 'Institute of Industrial Engineers'),
(80340, 67167, 'zh', 'name', 'å·„äøšå·„ēØ‹åøˆå­¦ä¼š'),
(80341, 67168, 'en', 'name', 'Changzhou Changchao Electronic Research Institute'),
(80342, 67168, 'zh', 'name', 'åøøå·žåø‚åøøč¶…ē”µå­ē ”ē©¶ę‰€'),
(80343, 67169, 'bs', 'name', 'Federalni hidrometeoroloŔki zavod'),
(80344, 67170, 'en', 'name', 'MCC Huatian Engineering and Technology Corporation'),
(80345, 67170, 'zh', 'name', 'äø­å†¶åŽå¤©å·„ēØ‹ęŠ€ęœÆå…¬åø'),
(80346, 67171, 'no_lang_code', 'name', 'Alliance Data (United States)'),
(80347, 67172, 'en', 'name', 'Hong Kong Biotechnology Organization'),
(80348, 67172, 'zh', 'name', 'é¦™ęøÆē”Ÿē‰©ē§‘ęŠ€å”ęœƒ'),
(80349, 67173, 'no_lang_code', 'name', 'Luxshare ICT (China)'),
(80350, 67173, 'zh', 'name', 'ē«‹č®Æē²¾åÆ†å·„äøšč‚”ä»½ęœ‰é™å…¬åø'),
(80351, 67174, 'en', 'name', 'Institute of Transportation Engineers'),
(80352, 67175, 'no_lang_code', 'name', 'The Debajehmujig Creation Centre (Canada)'),
(80353, 67176, 'en', 'name', 'Korean Association of Public Safety and Criminal Justice'),
(80354, 67176, 'ko', 'name', 'ķ•œźµ­ź³µģ•ˆķ–‰ģ •ķ•™ķšŒ'),
(80355, 67177, 'no_lang_code', 'name', 'Anhui Transport Consulting & Design Institute (China)'),
(80356, 67177, 'zh', 'name', 'å®‰å¾½äŗ¤é€šå’ØčÆ¢č®¾č®”é™¢'),
(80357, 67178, 'en', 'name', 'Korea Social Science Research Council'),
(80358, 67178, 'ko', 'name', 'ķ•œźµ­ģ‚¬ķšŒź³¼ķ•™ģ—°źµ¬ķ˜‘ģ˜ķšŒ'),
(80359, 67179, 'en', 'name', 'Institute for Research and Innovation in Social Services'),
(80360, 67180, 'en', 'name', 'Tianjin Plastics Research Institute'),
(80361, 67180, 'zh', 'name', 'å¤©ę“„åø‚å”‘ę–™ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(80362, 67181, 'en', 'name', 'Gyeonggi Research Institute'),
(80363, 67181, 'ko', 'name', '경기연구원'),
(80364, 67182, 'en', 'name', 'Hong Kong Design Centre'),
(80365, 67182, 'zh', 'name', 'é¦™ęøÆčØ­čØˆäø­åæƒ'),
(80366, 67183, 'no_lang_code', 'name', 'Suning (China)'),
(80367, 67184, 'no_lang_code', 'name', 'Eska (Netherlands)'),
(80368, 67185, 'en', 'name', 'Siberian Research Institute of Agricultural Economics'),
(80369, 67185, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Š”Š¤ŠŠ¦Š Š ŠŠ'),
(80370, 67186, 'en', 'name', 'Vaidyaratnam P.S. Varier Ayurveda College'),
(80371, 67187, 'no_lang_code', 'name', 'Platysens (China)'),
(80372, 67188, 'no_lang_code', 'name', 'Folium Optics (United Kingdom)'),
(80373, 67189, 'en', 'name', 'New Jersey Pinelands Commission'),
(80374, 67190, 'no_lang_code', 'name', 'Zhejiang Zhe Kuang Heavy Industries (China)'),
(80375, 67190, 'zh', 'name', 'ęµ™ēŸæé‡å·„'),
(80376, 67191, 'en', 'name', 'Nanjing Institute of Mechatronic Technology'),
(80377, 67191, 'zh', 'name', 'å—äŗ¬ęœŗē”µęŠ€ęœÆē ”ē©¶ę‰€'),
(80378, 67192, 'en', 'name', 'Dr. Syamala Reddy Dental College Hospital & Research Center'),
(80379, 67193, 'no_lang_code', 'name', 'Ballyhoura Development (Ireland)'),
(80380, 67194, 'no_lang_code', 'name', 'Hundsun (China)'),
(80381, 67194, 'zh', 'name', 'ę’ē”Ÿē§‘ęŠ€'),
(80382, 67195, 'no_lang_code', 'name', 'Canary Wharf Group (United Kingdom)'),
(80383, 67196, 'no_lang_code', 'name', 'Beijing Institute of Power Machinery (China)'),
(80384, 67196, 'zh', 'name', 'åŒ—äŗ¬åŠØåŠ›ęœŗę¢°ē ”ē©¶ę‰€'),
(80385, 67197, 'pl', 'name', 'Ministerstwo Infrastruktury'),
(80386, 67198, 'ko', 'name', 'ķŒŒėÆøģ…€'),
(80387, 67198, 'no_lang_code', 'name', 'Pharmicell (South Korea)'),
(80388, 67199, 'en', 'name', 'The Shakespeare Association of Korea'),
(80389, 67199, 'ko', 'name', 'ķ•œźµ­ģ…°ģµģŠ¤ķ”¼ģ–“ķ•™ķšŒ'),
(80390, 67200, 'ar', 'name', 'ā€«Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł…ŁƒŲ§ŁŲ­Ų© Ų§Ł„Ų³Ų±Ų·Ų§Ł†ā€¬ā€Ž'),
(80391, 67200, 'en', 'name', 'Arab Medical Association Against Cancer'),
(80392, 67201, 'no_lang_code', 'name', 'Abbott (China)'),
(80393, 67201, 'zh', 'name', '雅培'),
(80394, 67202, 'en', 'name', 'Auckland Castle Trust'),
(80395, 67203, 'no_lang_code', 'name', 'Coletex (Russia)'),
(80396, 67203, 'ru', 'name', 'ŠšŠ¾Š»ŠµŃ‚ŠµŠŗŃ'),
(80397, 67204, 'ko', 'name', 'ķ•œźµ­ģ˜¤ģø ģ¹“ģ œģ•½'),
(80398, 67204, 'no_lang_code', 'name', 'Otsuka (South Korea)'),
(80399, 67205, 'en', 'name', 'Ram Poly Clinic'),
(80400, 67206, 'no_lang_code', 'name', 'Kabe (Poland)'),
(80401, 67207, 'en', 'name', 'Powys Dance'),
(80402, 67208, 'en', 'name', 'The Society of Korean Traditional Costume'),
(80403, 67208, 'ko', 'name', 'ķ•œė³µė¬øķ™”ķ•™ķšŒ'),
(80404, 67209, 'no_lang_code', 'name', 'Oshkosh (United States)'),
(80405, 67210, 'en', 'name', 'Changsha Mineral Resources Exploration Center'),
(80406, 67210, 'zh', 'name', 'é•æę²™ēŸæäŗ§čµ„ęŗå‹˜ęŸ„äø­åæƒ'),
(80407, 67211, 'en', 'name', 'Department of Cultural Heritage'),
(80408, 67211, 'lt', 'name', 'Kultūros paveldo departamentas'),
(80409, 67212, 'no_lang_code', 'name', 'Acidophil (United Kingdom)'),
(80410, 67213, 'no_lang_code', 'name', 'Kelun Group (China)'),
(80411, 67213, 'zh', 'name', 'å››å·ē§‘ä¼¦čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(80412, 67214, 'no_lang_code', 'name', 'Zhen Ding Technology (Taiwan)'),
(80413, 67215, 'en', 'name', 'Hong Kong Federation of Youth Groups'),
(80414, 67215, 'zh', 'name', 'é¦™ęøÆé’å¹“å”ęœƒ'),
(80415, 67216, 'en', 'name', 'Kyungnam College of Information and Technology'),
(80416, 67216, 'ko', 'name', 'ź²½ė‚Øģ •ė³“ėŒ€ķ•™źµ'),
(80417, 67217, 'no_lang_code', 'name', 'Piramal (United States)'),
(80418, 67218, 'no_lang_code', 'name', 'Gelexir Healthcare (United Kingdom)'),
(80419, 67219, 'en', 'name', 'Department of Science & Technology'),
(80420, 67220, 'en', 'name', 'Voronezh Research Institute Vega'),
(80421, 67220, 'ru', 'name', 'Воронежский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(80422, 67221, 'no_lang_code', 'name', 'PowerELab (China)'),
(80423, 67222, 'en', 'name', 'VNU Central Institute for Natural Resources and Environmental Studies'),
(80424, 67222, 'vi', 'name', 'Viện TĆ i NguyĆŖn vĆ  MĆ“i TrĘ°į»ng'),
(80425, 67223, 'no_lang_code', 'name', 'Guangdong Hiway Integrated Circuit Technology (China)'),
(80426, 67224, 'no_lang_code', 'name', 'Actelion (South Korea)'),
(80427, 67225, 'no_lang_code', 'name', 'Cooper Standard (United States)'),
(80428, 67226, 'pt', 'name', 'Administração e Gestão de Sistemas de Salubridade'),
(80429, 67227, 'en', 'name', 'Institute of Physiology, Komi Science Center'),
(80430, 67227, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¹ физиологии Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ'),
(80431, 67228, 'no_lang_code', 'name', 'OPKO Health (Ireland)'),
(80432, 67229, 'en', 'name', 'Institute of Women and Ethnic Studies'),
(80433, 67230, 'en', 'name', 'Advocates for Children of New York'),
(80434, 67231, 'en', 'name', 'Hong Kong Surface Finishing Society'),
(80435, 67231, 'zh', 'name', 'é¦™ęøÆč”Øé¢å¤„ē†å­¦ä¼š'),
(80436, 67232, 'en', 'name', 'Korea Institute for Industrial Economics and Trade'),
(80437, 67232, 'ko', 'name', 'ģ‚°ģ—…ģ—°źµ¬ģ›ģ€ 국낓외 ģ‚°ģ—…ź³¼ ė¬“ģ—­ķ†µģƒ 분야넼 ģ„œė”œ ģ—°ź³„ķ•˜ģ—¬'),
(80438, 67233, 'no_lang_code', 'name', 'TAKE Solutions (India)'),
(80439, 67234, 'en', 'name', 'American Conference of Governmental Industrial Hygienists'),
(80440, 67235, 'no_lang_code', 'name', 'Scientific Research Institute of Sanitary Technology (Russia)'),
(80441, 67235, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сантехники'),
(80442, 67236, 'en', 'name', 'Krishna Maternity and Surgical Nursing Home'),
(80443, 67237, 'no_lang_code', 'name', 'Prexton Therapeutics (Netherlands)'),
(80444, 67238, 'en', 'name', 'Kimpo University'),
(80445, 67238, 'ko', 'name', 'ź¹€ķ¬ ėŒ€ķ•™źµ'),
(80446, 67239, 'no_lang_code', 'name', 'Walgreens Boots Alliance (United Kingdom)'),
(80447, 67240, 'en', 'name', 'Association for the Study of Literature & Environment'),
(80448, 67240, 'ko', 'name', '문학 ė° ķ™˜ź²½ ķ•™ķšŒ'),
(80449, 67241, 'en', 'name', 'Working Men’s Institute'),
(80450, 67242, 'no_lang_code', 'name', 'Nuritas (Ireland)'),
(80451, 67243, 'en', 'name', 'Shine Center for Autism'),
(80452, 67244, 'en', 'name', 'Irish Council for Civil Liberties'),
(80453, 67245, 'de', 'name', 'Bundesverband der Deutschen Binnenschiffahrt'),
(80454, 67246, 'en', 'name', 'Open Space Institute'),
(80455, 67247, 'en', 'name', 'Shingu College'),
(80456, 67247, 'ko', 'name', 'ģ‹ źµ¬ėŒ€ķ•™źµ'),
(80457, 67248, 'no_lang_code', 'name', 'Energy Transitions (United Kingdom)'),
(80458, 67249, 'en', 'name', 'Tula Artillery Engineering Institute'),
(80459, 67249, 'ru', 'name', 'Тульский артиллерийский инженерный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(80460, 67250, 'no_lang_code', 'name', 'Medtronic (China)'),
(80461, 67250, 'zh', 'name', 'ē¾Žę•¦åŠ›'),
(80462, 67251, 'no_lang_code', 'name', 'Fusion Innovations (United Kingdom)'),
(80463, 67252, 'en', 'name', 'European Coil Coating Association'),
(80464, 67253, 'no_lang_code', 'name', 'Quest Integrity (New Zealand)'),
(80465, 67254, 'en', 'name', 'Think-tank for Action on Social Change'),
(80466, 67255, 'en', 'name', 'Full Fact'),
(80467, 67256, 'en', 'name', 'Wuhan Ship Development & Design Institute'),
(80468, 67256, 'zh', 'name', 'ę­¦ę±‰čˆ¹čˆ¶č®¾č®”ē ”ē©¶é™¢'),
(80469, 67257, 'no_lang_code', 'name', 'Cardiocity (United Kingdom)'),
(80470, 67258, 'en', 'name', 'AIDS Vancouver'),
(80471, 67259, 'no_lang_code', 'name', 'China Design Group (China)'),
(80472, 67259, 'zh', 'name', '中设设讔集团肔份'),
(80473, 67260, 'fr', 'name', 'SociƩtƩ QuƩbƩcoise de NƩphrologie'),
(80474, 67261, 'en', 'name', 'British Cycling'),
(80475, 67262, 'en', 'name', 'Transportation Research Board'),
(80476, 67263, 'de', 'name', 'Institut de Recherches Sociales Internationales'),
(80477, 67263, 'en', 'name', 'Institute for International Social Research'),
(80478, 67264, 'en', 'name', 'Sichuan Fire Research Institute'),
(80479, 67265, 'en', 'name', 'Siberian Aeronautical Research Institute Named After S.A. Chaplygin'),
(80480, 67265, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиации им. Š”. А. Чаплыгина'),
(80481, 67266, 'no_lang_code', 'name', 'Giprokoks (Ukraine)'),
(80482, 67266, 'uk', 'name', 'Š“Š˜ŠŸŠ ŠžŠšŠžŠšŠ”'),
(80483, 67267, 'en', 'name', 'Zhejiang Water Conservancy and Hydropower Survey and Design Institute'),
(80484, 67267, 'zh', 'name', 'ęµ™ę±Ÿēœę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”é™¢'),
(80485, 67268, 'en', 'name', 'Jinhua Academy of Agricultural Sciences'),
(80486, 67269, 'en', 'name', 'Changzhou Zhiye Medical Devices Institute'),
(80487, 67269, 'zh', 'name', 'åøøå·žåø‚ę™ŗäøšåŒ»ē–—ä»Ŗå™Øē ”ē©¶ę‰€ęœ‰'),
(80488, 67270, 'en', 'name', 'Zhangjiagang Smartgrid Fanghua Electrical Energy Storage Research Institute'),
(80489, 67270, 'zh', 'name', 'å¼ å®¶ęøÆę™ŗčƒ½ē”µē½‘ę–¹åŽē”µčƒ½å‚Øčƒ½ē ”ē©¶ę‰€'),
(80490, 67271, 'no_lang_code', 'name', 'Changchun Municipal Engineering Design and Research Institute (China)'),
(80491, 67271, 'zh', 'name', 'é•æę˜„åø‚åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢ č”ē³»ē”µčÆ'),
(80492, 67272, 'no_lang_code', 'name', 'Biogen (India)'),
(80493, 67273, 'en', 'name', 'The Korean Physical Society'),
(80494, 67273, 'ko', 'name', 'ķ•œźµ­ė¬¼ė¦¬ķ•™ķšŒ'),
(80495, 67274, 'es', 'name', 'Universidad PolitƩcnica Metropolitana de Hidalgo'),
(80496, 67275, 'en', 'name', 'Buein Zahra Technical University'),
(80497, 67276, 'no_lang_code', 'name', 'Digitalia (Poland)'),
(80498, 67277, 'bg', 'name', 'Добрич ŠŠ³ŠµŠ½Ń†ŠøŃ за ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŠµ на ŠµŠ½ŠµŃ€Š³ŠøŃŃ‚а'),
(80499, 67277, 'en', 'name', 'Dobrich Local Agency for Energy Management'),
(80500, 67278, 'en', 'name', 'Marine Renewables Industry Association'),
(80501, 67279, 'no_lang_code', 'name', 'Ravenbhel Healthcare (India)'),
(80502, 67280, 'fr', 'name', 'CancƩropƓle Lyon Auvergne-RhƓne-Alpes'),
(80503, 67281, 'en', 'name', 'Adesh University'),
(80504, 67282, 'ko', 'name', '(주)ģ‹ ķ™”ģ˜ė£Œźø°'),
(80505, 67282, 'no_lang_code', 'name', 'Shinhwa Medical (South Korea)'),
(80506, 67283, 'da', 'name', 'Skatteministeriet'),
(80507, 67283, 'en', 'name', 'Danish Ministry of Taxation'),
(80508, 67284, 'no_lang_code', 'name', 'Workday (United States)'),
(80509, 67285, 'no_lang_code', 'name', 'BNP Paribas (United Kingdom)'),
(80510, 67286, 'en', 'name', 'Human Factors and Ergonomics Society'),
(80511, 67287, 'no_lang_code', 'name', 'Numerical Method (China)'),
(80512, 67288, 'en', 'name', 'Local Enterprise Office Cork North & West'),
(80513, 67289, 'en', 'name', 'Bristol Health Partners'),
(80514, 67290, 'no_lang_code', 'name', 'CHTC Fong’s Industries (China)'),
(80515, 67291, 'en', 'name', 'Korean Society for Engineering Education'),
(80516, 67291, 'ko', 'name', 'ķ•œźµ­ź³µķ•™źµģœ”ķ•™ķšŒ'),
(80517, 67292, 'ko', 'name', 'ķŒŒģ“ė²„ķ”„ė”œ'),
(80518, 67292, 'no_lang_code', 'name', 'Fiberpro (South Korea)'),
(80519, 67293, 'en', 'name', 'Koguryeo College'),
(80520, 67293, 'ko', 'name', '고구려 ėŒ€ķ•™'),
(80521, 67294, 'en', 'name', 'Korea-China Humanities Society'),
(80522, 67294, 'ko', 'name', 'ķ•œģ¤‘ģøė¬øķ•™ķšŒ'),
(80523, 67295, 'pt', 'name', 'Instituto de Gestão Financeira e Equipamentos da Justiça'),
(80524, 67296, 'no_lang_code', 'name', 'Artstor'),
(80525, 67297, 'en', 'name', 'Russian Union of Refrigeration Enterprises'),
(80526, 67297, 'ru', 'name', 'Российский ŃŠ¾ŃŽŠ· ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠ¹ Ń…Š¾Š»Š¾Š“ŠøŠ»ŃŒŠ½Š¾Š¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(80527, 67298, 'en', 'name', 'Research Institute of Hermes'),
(80528, 67298, 'ru', 'name', 'ŠŠ˜Š˜ "Š“Š•Š ŠœŠ•Š”"'),
(80529, 67299, 'no_lang_code', 'name', '3Brain (Switzerland)'),
(80530, 67300, 'en', 'name', 'The Sisters of Charity of Ottawa'),
(80531, 67300, 'fr', 'name', 'les Soeurs de la CharitĆ© d’Ottawa'),
(80532, 67301, 'en', 'name', 'Medieval and Early Modern English Studies Association of Korea'),
(80533, 67301, 'ko', 'name', 'ķ•œźµ­ģ¤‘ģ„øė„“ė„¤ģƒģŠ¤ģ˜ė¬øķ•™ķšŒ'),
(80534, 67302, 'en', 'name', 'Chengdu Surveying Geotechnical Research Institute'),
(80535, 67302, 'zh', 'name', 'äø­å†¶ęˆéƒ½å‹˜åÆŸē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(80536, 67303, 'no_lang_code', 'name', 'Neuromod (Ireland)'),
(80537, 67304, 'en', 'name', 'British High Commission Singapore'),
(80538, 67305, 'en', 'name', 'State Key Laboratory of Cryptology'),
(80539, 67305, 'zh', 'name', 'åÆ†ē ē§‘å­¦ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤ē”±å›½å®¶åÆ†ē ē®”ē†å±€äø»ē®”'),
(80540, 67306, 'en', 'name', 'Shanxi Electromechanical Design and Research Institute'),
(80541, 67306, 'zh', 'name', 'å±±č„æęœŗę¢°č®¾č®”ē ”ē©¶é™¢'),
(80542, 67307, 'en', 'name', 'Anhui 3D Printing Intelligent Equipment Industry Technology Research Institute'),
(80543, 67307, 'zh', 'name', 'å®‰å¾½ēœę˜„č°·3Dę‰“å°ę™ŗčƒ½č£…å¤‡äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(80544, 67308, 'en', 'name', 'Partnership for Dengue Control'),
(80545, 67309, 'no_lang_code', 'name', 'Cambridge Intellectual Property (United Kingdom)'),
(80546, 67310, 'no_lang_code', 'name', 'Wisers (China)'),
(80547, 67311, 'no_lang_code', 'name', 'Dr.Chung’s Food (South Korea)'),
(80548, 67312, 'no_lang_code', 'name', 'Vodafone (Qatar)'),
(80549, 67313, 'no_lang_code', 'name', 'Jiangyin Traffic Planning Survey & Design Institute (China)'),
(80550, 67313, 'zh', 'name', 'ę±Ÿé˜“åø‚äŗ¤é€šč§„åˆ’å‹˜åÆŸč®¾č®”é™¢ęœ‰é™å…¬åøå‰'),
(80551, 67314, 'en', 'name', 'Korean Nuclear Society'),
(80552, 67314, 'ko', 'name', 'ķ•œźµ­ģ›ģžė „ķ•™ķšŒ'),
(80553, 67315, 'no_lang_code', 'name', 'Barratt Developments (United Kingdom)'),
(80554, 67316, 'no_lang_code', 'name', 'Progressive Technology (China)'),
(80555, 67317, 'no_lang_code', 'name', 'LakePharma (United States)'),
(80556, 67318, 'no_lang_code', 'name', 'Siniat (United Kingdom)'),
(80557, 67319, 'no_lang_code', 'name', 'Dalian Synthetic Fiber Research and Design Institute (China)'),
(80558, 67319, 'zh', 'name', 'å¤§čæžåˆęˆēŗ¤ē»“ē ”ē©¶č®¾č®”é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(80559, 67320, 'ko', 'name', '(주)캐리마'),
(80560, 67320, 'no_lang_code', 'name', 'Carima (South Korea)'),
(80561, 67321, 'en', 'name', 'Interactive Systems & Technologies'),
(80562, 67322, 'no_lang_code', 'name', 'China Railway Major Bridge Reconnaissance & Design Institute (China)'),
(80563, 67322, 'zh', 'name', 'äø­å›½é“č·Æå¤§ę”„å‹˜åÆŸč®¾č®”é™¢'),
(80564, 67323, 'en', 'name', 'Age Action Alliance'),
(80565, 67324, 'en', 'name', 'Hong Kong Association For Integration Of Chinese-Western Medicine'),
(80566, 67325, 'en', 'name', 'Nanchang Institute of Science & Technology'),
(80567, 67326, 'am', 'name', 'įˆ³į‹­įŠ•įˆµ įŠ„įŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ įˆšįŠ’įˆµį‰“įˆ­'),
(80568, 67326, 'en', 'name', 'Ministry of Science and Technology'),
(80569, 67327, 'en', 'name', 'Sustainable Development Institute'),
(80570, 67328, 'en', 'name', 'Anhui Institute of Architectural Research and Design'),
(80571, 67329, 'fr', 'name', 'Relais Femmes'),
(80572, 67330, 'en', 'name', 'Northwest Institute of Mining and Metallurgy'),
(80573, 67330, 'zh', 'name', 'č„æåŒ—ēŸæå†¶ē ”ē©¶é™¢'),
(80574, 67331, 'no_lang_code', 'name', 'Brigit''s Garden'),
(80575, 67332, 'no_lang_code', 'name', 'McCormick Advanced Marcomm Services (Ireland)'),
(80576, 67333, 'en', 'name', 'The Eden Rivers Trust'),
(80577, 67334, 'no_lang_code', 'name', 'Alcove (United Kingdom)'),
(80578, 67335, 'en', 'name', 'Institute of Medical Cell Technologies'),
(80579, 67335, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинских клеточных технологий'),
(80580, 67336, 'en', 'name', 'Swedish Forest Agency'),
(80581, 67336, 'sv', 'name', 'Skogsstyrelsen'),
(80582, 67337, 'en', 'name', 'Vernadsky State Geological Museum'),
(80583, 67337, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Геологический Музей им. Š’.И. ВернаГского Š ŠŠ'),
(80584, 67338, 'en', 'name', 'Korea Association of japanology'),
(80585, 67338, 'ko', 'name', 'ķ•œźµ­ģ¼ė³øķ•™ķšŒ'),
(80586, 67339, 'en', 'name', 'Ministry of Infrastructures and Transport'),
(80587, 67339, 'it', 'name', 'Ministero delle Infrastrutture e dei Trasporti'),
(80588, 67340, 'no_lang_code', 'name', 'Scientific Research Institute of Polymer Material (Russia)'),
(80589, 67340, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ полимерных материалов'),
(80590, 67341, 'no_lang_code', 'name', 'Assist Mi (United Kingdom)'),
(80591, 67342, 'de', 'name', 'Bundesverband Materialwirtschaft, Einkauf und Logistik'),
(80592, 67342, 'en', 'name', 'Association for Supply Chain Management, Procurement and Logistics'),
(80593, 67343, 'en', 'name', 'Korea Communication Association'),
(80594, 67343, 'ko', 'name', 'ķ•œźµ­ 통신 ķ˜‘ķšŒ'),
(80595, 67344, 'en', 'name', 'Euro-Centrum'),
(80596, 67345, 'ko', 'name', '코리아 ė°”ģ“ģ˜¤'),
(80597, 67345, 'no_lang_code', 'name', 'KoreaBio'),
(80598, 67346, 'no_lang_code', 'name', 'RBio (South Korea)'),
(80599, 67347, 'en', 'name', 'Research Institute of Mining Geomechanics and Mine Surveying'),
(80600, 67347, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ горно'),
(80601, 67348, 'en', 'name', 'Korean Housing Association'),
(80602, 67348, 'ko', 'name', 'ėŒ€ķ•œ ģ£¼ķƒ ģ”°ķ•©'),
(80603, 67349, 'no_lang_code', 'name', 'VDE Prüf- und Zertifizierungsinstitut (Germany)'),
(80604, 67350, 'en', 'name', 'S Nijalingappa Medical College and HSK Hospital & Research Centre'),
(80605, 67351, 'no_lang_code', 'name', 'Genoss (South Korea)'),
(80606, 67352, 'en', 'name', 'Bangalore Medical Center'),
(80607, 67353, 'no_lang_code', 'name', 'Cisco Systems (China)'),
(80608, 67354, 'no_lang_code', 'name', 'Qiagen (Netherlands)'),
(80609, 67355, 'no_lang_code', 'name', 'Caching Technology (China)'),
(80610, 67356, 'en', 'name', 'The Society for Chinese Cultural Studies'),
(80611, 67356, 'ko', 'name', 'ģ¤‘źµ­ė¬øķ™”ģ—°źµ¬ķ•™ķšŒ'),
(80612, 67357, 'en', 'name', 'Virtual Institute of Nano Films'),
(80613, 67357, 'nl', 'name', 'Istituto Virtuale dei Nano Film'),
(80614, 67358, 'en', 'name', 'Korean Society for Child Education'),
(80615, 67358, 'ko', 'name', 'ķ•œźµ­ģ•„ė™źµģœ”ķ•™ķšŒ'),
(80616, 67359, 'en', 'name', 'Qingdao Academy of Agricultural Sciences'),
(80617, 67360, 'en', 'name', 'Gwangmyeong Mental Health Welfare Center'),
(80618, 67360, 'ko', 'name', 'ź“‘ėŖ…ģ‹œģ •ģ‹ ź±“ź°•ė³µģ§€ģ„¼ķ„°'),
(80619, 67361, 'en', 'name', 'Hong Kong Retail Management Association'),
(80620, 67361, 'zh', 'name', 'é¦™ęøÆé›¶å”®ē®”ē†åä¼š'),
(80621, 67362, 'en', 'name', 'Nano Technology Research Association'),
(80622, 67362, 'ko', 'name', 'ė‚˜ė…øģœµķ•©ģ‚°ģ—…ģ—°źµ¬ģ”°ķ•©'),
(80623, 67363, 'en', 'name', 'Irkutsk Research Institute of the Forestry Industry'),
(80624, 67363, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ лесной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(80625, 67364, 'no_lang_code', 'name', 'Esquel Group (China)'),
(80626, 67365, 'no_lang_code', 'name', 'AI Factory (United Kingdom)'),
(80627, 67366, 'ko', 'name', 'ė™ģ„±ģ œģ•½ģ£¼ģ‹ķšŒģ‚¬'),
(80628, 67366, 'no_lang_code', 'name', 'Bio Pharm Dongsung (South Korea)'),
(80629, 67367, 'no_lang_code', 'name', 'Zigong Light Industry Design Institute (China)'),
(80630, 67367, 'zh', 'name', 'č‡Ŗč“”åø‚č½»å·„äøšč®¾č®”ē ”ē©¶é™¢'),
(80631, 67368, 'en', 'name', 'China Communications Tianjin Port Exploration & Design Institute'),
(80632, 67368, 'zh', 'name', 'äø­äŗ¤å¤©å’Œęœŗę¢°č®¾å¤‡åˆ¶é€ '),
(80633, 67369, 'no_lang_code', 'name', 'ADTRAN (United States)'),
(80634, 67370, 'no_lang_code', 'name', 'JK (Poland)'),
(80635, 67371, 'en', 'name', 'Saoirse Foundation'),
(80636, 67372, 'en', 'name', 'Scientific Research Institute of Technology named after AP Aleksandrov'),
(80637, 67372, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ А. П. АлексанГров'),
(80638, 67373, 'en', 'name', 'Hong Kong Organic Waste Recycling Centre'),
(80639, 67373, 'zh', 'name', 'é¦™ęøÆęœ‰ę©Ÿč³‡ęŗå†ē”Ÿäø­'),
(80640, 67374, 'de', 'name', 'LVR-Institut für Landeskunde und Regionalgeschichte'),
(80641, 67375, 'ko', 'name', 'ģ£¼ģ‹ķšŒģ‚¬ ģ¼€ģ“ķ‹°ģ•¤ģ§€'),
(80642, 67375, 'no_lang_code', 'name', 'KT&G (South Korea)'),
(80643, 67376, 'en', 'name', 'Hong Kong Exporters’ Association'),
(80644, 67376, 'zh', 'name', 'é¦™ęøÆå‡ŗå£å•†åä¼š'),
(80645, 67377, 'de', 'name', 'Bundesverband Reifenhandel und Vulkaniseur-Handwerk'),
(80646, 67378, 'en', 'name', 'National Audiovisual Institute'),
(80647, 67378, 'pl', 'name', 'Narodowy Instytut Audiowizualny'),
(80648, 67379, 'no_lang_code', 'name', 'Advanced Technology & Materials (China)'),
(80649, 67380, 'en', 'name', 'Digital Research Centre of Sfax'),
(80650, 67380, 'fr', 'name', 'Centre de Recherche en NumƩrique de Sfax'),
(80651, 67381, 'en', 'name', 'All-Russian Research Institute of Relay Engineering'),
(80652, 67381, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ релейной инженерии'),
(80653, 67382, 'en', 'name', 'Central Research Institute of Materials'),
(80654, 67382, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ материалов'),
(80655, 67383, 'es', 'name', 'Instituto Navarro de TecnologĆ­a e Infraestructuras Agroalimentarias'),
(80656, 67384, 'no_lang_code', 'name', 'Ensemble Studio Theatre (United States)'),
(80657, 67385, 'en', 'name', 'European Consortium for Ocean Research Drilling'),
(80658, 67386, 'hi', 'name', 'ą¤†ą¤Æą„ą¤· अरिहंत ą¤‡ą¤‚ą¤”ą¤øą„ą¤Ÿą„ą¤°ą„€ą¤œ'),
(80659, 67386, 'no_lang_code', 'name', 'Ayush Arihant (India)'),
(80660, 67387, 'en', 'name', 'National Institute for Research and Development for Industrial Ecology'),
(80661, 67387, 'ro', 'name', 'Institutul National de Cercetare – Dezvoltare pentru Ecologie Industriala'),
(80662, 67388, 'en', 'name', 'All-Russian Scientific Research Institute of Technical Physics'),
(80663, 67388, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технической физики'),
(80664, 67389, 'no_lang_code', 'name', 'Sohu (China)'),
(80665, 67389, 'zh', 'name', 'ęœē‹'),
(80666, 67390, 'no_lang_code', 'name', 'Byotrol (United Kingdom)'),
(80667, 67391, 'no_lang_code', 'name', 'Yutong (China)'),
(80668, 67392, 'no_lang_code', 'name', 'Tatneft (Russia)'),
(80669, 67392, 'ru', 'name', 'Š¢Š°Ń‚Š½ŠµŃ„Ń‚ŃŒ'),
(80670, 67393, 'en', 'name', 'Ukrainian Institute for Public Policy'),
(80671, 67394, 'en', 'name', 'Department of Animal Health'),
(80672, 67394, 'vi', 'name', 'CỄc ThĆŗ y Việt Nam'),
(80673, 67395, 'no_lang_code', 'name', 'Wix.com (Israel)'),
(80674, 67396, 'en', 'name', 'HIV Community Link'),
(80675, 67397, 'en', 'name', 'PTEN Hamartoma Tumor Syndrome Foundation'),
(80676, 67398, 'en', 'name', 'Suzhou Institute of Systems Medicine'),
(80677, 67398, 'zh', 'name', 'č‹å·žåø‚ē³»ē»ŸåŒ»å­¦ē ”ē©¶ę‰€'),
(80678, 67399, 'no_lang_code', 'name', 'SEI (United States)'),
(80679, 67400, 'en', 'name', 'The Korean Association of Language Studies'),
(80680, 67400, 'ko', 'name', 'ķ•œźµ­ģ–øģ–“ģ—°źµ¬ķ•™ķšŒ'),
(80681, 67401, 'no_lang_code', 'name', 'Suga International Holdings (China)'),
(80682, 67402, 'no_lang_code', 'name', 'China GreatWall Technology Group (China)'),
(80683, 67402, 'zh', 'name', 'äø­å›½é•æåŸŽē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(80684, 67403, 'no_lang_code', 'name', 'Serdia Pharmaceuticals (India)'),
(80685, 67404, 'en', 'name', 'Russian Space Systems'),
(80686, 67404, 'ru', 'name', 'Российские космические системы'),
(80687, 67405, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų·ŁŠŲ±Ų§Ł† Ų§Ł„Ł…ŲÆŁ†ŁŠ'),
(80688, 67405, 'en', 'name', 'Arab Civil Aviation Commission'),
(80689, 67406, 'en', 'name', 'National Council for Science and Technology Policy'),
(80690, 67406, 'vi', 'name', 'Hį»™i đồng ChĆ­nh sĆ”ch KH&CN quốc gia'),
(80691, 67407, 'en', 'name', 'Shanghai Architectural Design & Research Institute'),
(80692, 67407, 'zh', 'name', 'äøŠęµ·å»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(80693, 67408, 'no_lang_code', 'name', 'Tianjin Ganghang Installation Engineering (China)'),
(80694, 67408, 'zh', 'name', 'å¤©ę“„ęøÆčˆŖå®‰č£…å·„ēØ‹ęœ‰é™č“£ä»»å…¬åø'),
(80695, 67409, 'en', 'name', 'Korea Institute of Theological Information'),
(80696, 67409, 'ko', 'name', 'ķ•œźµ­ģ‹ ķ•™ģ •ė³“ģ—°źµ¬ģ›'),
(80697, 67410, 'bg', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на околната среГа Šø воГите'),
(80698, 67410, 'en', 'name', 'Ministry of Environment and Water'),
(80699, 67411, 'en', 'name', 'Korean Association Of Social Welfare Policy'),
(80700, 67411, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ 복지 ģ •ģ±… ķ•™ķšŒ'),
(80701, 67412, 'no_lang_code', 'name', 'Zenit Trading (Russia)'),
(80702, 67412, 'ru', 'name', '"Зенит ТрейГинг"'),
(80703, 67413, 'en', 'name', 'British Board of Film Classification'),
(80704, 67414, 'no_lang_code', 'name', 'Stalproekt (Russia)'),
(80705, 67414, 'ru', 'name', 'Š”Ń‚Š°Š»ŃŒŠæŃ€Š¾ŠµŠŗŃ‚'),
(80706, 67415, 'no_lang_code', 'name', 'SillyCube Technology (China)'),
(80707, 67416, 'no_lang_code', 'name', 'ASV (United Kingdom)'),
(80708, 67417, 'ar', 'name', 'لجنة الاعتماد ŁˆŲ¶Ł…Ų§Ł† Ų§Ł„Ų¬ŁˆŲÆŲ©'),
(80709, 67417, 'en', 'name', 'Accreditation and Quality Assurance Commission'),
(80710, 67418, 'ko', 'name', 'ķ•œźµ­ ķšŒź³„ 기준 원'),
(80711, 67418, 'no_lang_code', 'name', 'Korea Accounting Standards Board'),
(80712, 67419, 'en', 'name', 'European Energy Research Alliance'),
(80713, 67419, 'nl', 'name', 'Europese Alliantie voor Energieonderzoek'),
(80714, 67420, 'en', 'name', 'Ministry of Environmental Protection and Energy'),
(80715, 67420, 'hr', 'name', 'Ministarstvo ZaŔtite OkoliŔa i Energetike'),
(80716, 67421, 'en', 'name', 'Tianjin Institute of Advanced Technology'),
(80717, 67421, 'zh', 'name', 'å¤©ę“„äø­ē§‘å…ˆčæ›ęŠ€ęœÆē ”ē©¶é™¢'),
(80718, 67422, 'no_lang_code', 'name', 'Sante Mernaud (India)'),
(80719, 67423, 'en', 'name', 'Guodian Institute of Science and Technology'),
(80720, 67423, 'zh', 'name', 'å›½ē”µē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(80721, 67424, 'no_lang_code', 'name', 'Jasco (United Kingdom)'),
(80722, 67425, 'en', 'name', 'Chengdu Pump Application Technology Research Institute'),
(80723, 67426, 'ga', 'name', 'AisƩirƭ'),
(80724, 67427, 'en', 'name', 'City College of Dongguan University of Technology'),
(80725, 67427, 'zh', 'name', 'äøœčŽžē†å·„å­¦é™¢åŸŽåø‚å­¦é™¢'),
(80726, 67428, 'en', 'name', 'Cluid Housing'),
(80727, 67429, 'no_lang_code', 'name', 'Opto Circuits (India)'),
(80728, 67430, 'en', 'name', 'Ministry of Health'),
(80729, 67430, 'mn', 'name', 'Эрүүл Š¼ŃŠ½Š“ийн ŃŠ°Š¼'),
(80730, 67431, 'en', 'name', 'Ministry of Finance'),
(80731, 67431, 'pl', 'name', 'Ministerstwo Finansów'),
(80732, 67432, 'en', 'name', 'Guangzhou Building Materials Institute'),
(80733, 67432, 'zh', 'name', 'å¹æå·žå»ŗē­‘ęę–™ē ”ē©¶ę‰€'),
(80734, 67433, 'no_lang_code', 'name', 'Goodwin (United Kingdom)'),
(80735, 67434, 'sq', 'name', 'Instituti Kombƫtar i Shƫndetƫsisƫ Publike'),
(80736, 67435, 'en', 'name', 'IAM RoadSmart'),
(80737, 67436, 'fr', 'name', 'Ministère de la Fonction Publique et de la Réforme Administrative'),
(80738, 67437, 'no_lang_code', 'name', 'RT-RK Institute for Computer Based Systems (Serbia)'),
(80739, 67438, 'no_lang_code', 'name', 'D-RisQ (United Kingdom)'),
(80740, 67439, 'en', 'name', 'Fairfax-Falls Church Community Services Board'),
(80741, 67440, 'en', 'name', 'The Textlinguistic Society of Korea'),
(80742, 67440, 'ko', 'name', 'ķ•œźµ­ķ…ģŠ¤ķŠøģ–øģ–“ķ•™ķšŒ'),
(80743, 67441, 'no_lang_code', 'name', 'Zhe jiang Research Institute of Traditional Chinese Medicine (China)'),
(80744, 67441, 'zh', 'name', 'ęµ™ę±Ÿēœäø­åŒ»čÆē ”ē©¶é™¢'),
(80745, 67442, 'en', 'name', 'Hebrew SeniorLife'),
(80746, 67443, 'en', 'name', 'The Korean Society for German History'),
(80747, 67443, 'ko', 'name', 'ķ•œźµ­ė…ģ¼ģ‚¬ķ•™ķšŒ'),
(80748, 67444, 'en', 'name', 'Beijing Jingshida Electromechanical Equipment Research Institute'),
(80749, 67444, 'zh', 'name', 'åŒ—äŗ¬åø‚č­¦č§†č¾¾ęœŗē”µč®¾å¤‡ē ”ē©¶ę‰€ęœ‰é™'),
(80750, 67445, 'en', 'name', 'Chenguang Research Institute of Chemical Industry'),
(80751, 67446, 'no_lang_code', 'name', 'GaitSmart (United Kingdom)'),
(80752, 67447, 'no_lang_code', 'name', 'ESP Technology (United Kingdom)'),
(80753, 67448, 'no_lang_code', 'name', 'GeoCento (United Kingdom)');
INSERT INTO `ror_settings` VALUES
(80754, 67449, 'en', 'name', 'Hunan Rice Research Institute'),
(80755, 67449, 'zh', 'name', 'ę¹–å—ēœę°“ēØ»ē ”ē©¶ę‰€'),
(80756, 67450, 'en', 'name', 'Immigrant Institute'),
(80757, 67450, 'sv', 'name', 'Immigrant-institutet'),
(80758, 67451, 'en', 'name', 'The Academy of Sciences of Hong Kong'),
(80759, 67451, 'zh', 'name', '香港科学院'),
(80760, 67452, 'en', 'name', 'Scientific Institute of Pearl River Water Resources Protection'),
(80761, 67452, 'zh', 'name', 'ē ę±Ÿę°“čµ„ęŗäæęŠ¤ē§‘å­¦ē ”ē©¶ę‰€'),
(80762, 67453, 'no_lang_code', 'name', 'Charles River Laboratories (Germany)'),
(80763, 67454, 'no_lang_code', 'name', 'Eclipse Research Consultants (United Kingdom)'),
(80764, 67455, 'no_lang_code', 'name', 'Larkfleet (United Kingdom)'),
(80765, 67456, 'ko', 'name', 'JWģ¤‘ģ™øģ œģ•½'),
(80766, 67456, 'no_lang_code', 'name', 'JW Pharmaceutical (South Korea)'),
(80767, 67457, 'en', 'name', 'Caribbean Health Research Council'),
(80768, 67458, 'ko', 'name', 'ė„¤ģ˜¤ģ—‘ģ„øģŠ¤'),
(80769, 67458, 'no_lang_code', 'name', 'Neo Access (South Korea)'),
(80770, 67459, 'en', 'name', 'Central Research Institute of Building Constructions named after VA Kucherenko'),
(80771, 67459, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ†ŠøŠ¹ имени Š’.А. ŠšŃƒŃ‡ŠµŃ€ŠµŠ½ŠŗŠ¾'),
(80772, 67460, 'en', 'name', 'Korean Social History Association'),
(80773, 67460, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒģ‚¬ ķ˜‘ķšŒ'),
(80774, 67461, 'en', 'name', 'Hong Kong International Arbitration Centre'),
(80775, 67461, 'zh', 'name', 'é¦™ęøÆå›½é™…ä»²č£äø­åæƒ'),
(80776, 67462, 'en', 'name', 'Guangxi Transportation Research Institute'),
(80777, 67462, 'zh', 'name', 'å¹æč„æäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(80778, 67463, 'no_lang_code', 'name', 'China Building Standard Design and Research Institute (China)'),
(80779, 67463, 'zh', 'name', '中国建筑标准设讔研究院'),
(80780, 67464, 'en', 'name', 'Ivanovo State Agricultural Academy named after D.K. Belyaev'),
(80781, 67464, 'ru', 'name', 'Š˜Š²Š°Š½Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени Š”.К. Š‘ŠµŠ»ŃŠµŠ²Š°'),
(80782, 67465, 'no_lang_code', 'name', 'Xeolas Pharmaceuticals (Ireland)'),
(80783, 67466, 'en', 'name', 'Ministry for Transport, Infrastructure and Capital Projects'),
(80784, 67467, 'no_lang_code', 'name', 'GreenCross Medical Science (South Korea)'),
(80785, 67468, 'en', 'name', 'Dagestan Scientific Research Institute of Agriculture Named After F.G. Kysriev'),
(80786, 67468, 'ru', 'name', 'Š¤Š“Š‘ŠŠ£ Š”ŠŠ“Š•Š”Š¢ŠŠŠ”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š”Š•Š›Š¬Š”ŠšŠžŠ“Šž Š„ŠžŠ—ŠÆŠ™Š”Š¢Š’Š Š˜ŠœŠ•ŠŠ˜ Ф.Š“.ŠšŠ˜Š”Š Š˜Š•Š’Š'),
(80787, 67469, 'no_lang_code', 'name', '2DHeat (United Kingdom)'),
(80788, 67470, 'no_lang_code', 'name', 'Exerscout (Ireland)'),
(80789, 67471, 'no_lang_code', 'name', 'MixSemi (China)'),
(80790, 67472, 'en', 'name', 'Korean Association for Political Economy'),
(80791, 67472, 'ko', 'name', 'ķ•œźµ­ģ‚¬ķšŒź²½ģ œķ•™ķšŒ'),
(80792, 67473, 'no_lang_code', 'name', 'Boliden Tara Mines (Ireland)'),
(80793, 67474, 'ga', 'name', 'Foróige'),
(80794, 67475, 'pl', 'name', 'Kardio-Med Silesia'),
(80795, 67476, 'en', 'name', 'Anhui Water Conservancy and Hydropower Survey and Design Institute'),
(80796, 67476, 'zh', 'name', 'å®‰å¾½ēœę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”é™¢'),
(80797, 67477, 'no_lang_code', 'name', 'Roquette FrĆØres (India)'),
(80798, 67478, 'ko', 'name', 'ķ•œķ’ģ œģ•½'),
(80799, 67478, 'no_lang_code', 'name', 'Hanpoong Pharm (South Korea)'),
(80800, 67479, 'en', 'name', 'European Council on Refugees and Exiles'),
(80801, 67480, 'no_lang_code', 'name', 'Cybersys Computer (China)'),
(80802, 67481, 'en', 'name', 'United States Anti-Doping Agency'),
(80803, 67482, 'en', 'name', 'Vitalant'),
(80804, 67483, 'no_lang_code', 'name', 'Chery Automobile (China)'),
(80805, 67483, 'zh', 'name', 'å„‡ē‘ž'),
(80806, 67484, 'no_lang_code', 'name', 'Aqdot (United Kingdom)'),
(80807, 67485, 'en', 'name', 'Public Limited Company for Radioactive Waste Management'),
(80808, 67485, 'hu', 'name', 'RadioaktĆ­v HulladĆ©kokat Kezelő KƶzhasznĆŗ'),
(80809, 67486, 'no_lang_code', 'name', 'ACI Worldwide (United States)'),
(80810, 67487, 'en', 'name', 'Autism Canada'),
(80811, 67487, 'fr', 'name', 'SociĆ©tĆ© canadienne de l’autisme'),
(80812, 67488, 'en', 'name', 'The Korean Drama Society'),
(80813, 67488, 'ko', 'name', 'ķ•œźµ­ė“œė¼ė§ˆķ•™ķšŒ'),
(80814, 67489, 'en', 'name', 'Prevention Institute'),
(80815, 67490, 'en', 'name', 'Mechanics'' Institute'),
(80816, 67491, 'en', 'name', 'Sustainable Economic Development Agency'),
(80817, 67492, 'en', 'name', 'Maryland Commission on African American History and Culture'),
(80818, 67493, 'en', 'name', 'Ministry of Healthcare'),
(80819, 67493, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ€Õ”Õ¶Ö€Õ”ÕŗÕ„ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ Õ”Õ¼ÕøÕ²Õ»Õ”ÕŗÕ”Õ°ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ¶Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(80820, 67494, 'en', 'name', 'Korean Calligraphy Association'),
(80821, 67494, 'ko', 'name', 'ķ•œźµ­ģ„œģ˜ˆķ˜‘ķšŒ'),
(80822, 67495, 'en', 'name', 'Korea Digital Design Council'),
(80823, 67495, 'ko', 'name', '(사)ķ•œźµ­ė””ģ§€ķ„øė””ģžģøķ˜‘ģ˜ķšŒ'),
(80824, 67496, 'bg', 'name', 'Š”ŃŠŃ€Š¶Š°Š²Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ за метрологичен Šø технически наГзор'),
(80825, 67496, 'en', 'name', 'State Agency for Metrological and Technical Surveillance'),
(80826, 67497, 'en', 'name', 'SupBuyer (China)'),
(80827, 67498, 'en', 'name', 'Kazan Research Institute of Epidemiology and Microbiology'),
(80828, 67499, 'en', 'name', 'Transnational University Limburg'),
(80829, 67500, 'no_lang_code', 'name', 'Cthulhu Ventures (United States)'),
(80830, 67501, 'no_lang_code', 'name', 'Masquelier’s (Netherlands)'),
(80831, 67502, 'en', 'name', 'Scientific Research Institute of Biochemistry'),
(80832, 67502, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии'),
(80833, 67503, 'en', 'name', 'The Korean Archeological Society'),
(80834, 67503, 'ko', 'name', 'ķ•œźµ­ź³ ź³ ķ•™ķšŒė¼ ķ•œė‹¤'),
(80835, 67504, 'no_lang_code', 'name', 'Kinesis Health Technologies (Ireland)'),
(80836, 67505, 'en', 'name', 'International Neuroinformatics Coordinating Facility'),
(80837, 67506, 'en', 'name', 'Korean Psychological Association'),
(80838, 67506, 'ko', 'name', 'ķ•œźµ­ģ‹¬ė¦¬ķ•™ķšŒ'),
(80839, 67507, 'en', 'name', 'Beijing Institute of Water'),
(80840, 67507, 'zh', 'name', 'åŒ—äŗ¬ę°“ē ”ē©¶ę‰€'),
(80841, 67508, 'en', 'name', 'Korean Language Institute'),
(80842, 67508, 'ko', 'name', 'ģ—°ģ„øėŒ€ķ•™źµ ķ•œźµ­ģ–“ķ•™ė‹¹ģ€'),
(80843, 67509, 'en', 'name', 'I Wish'),
(80844, 67510, 'en', 'name', 'International Institute of Industrial Property'),
(80845, 67510, 'ru', 'name', 'ŠœŠ•Š–Š”Š£ŠŠŠ ŠžŠ”ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ™ Š”ŠžŠ‘Š”Š¢Š’Š•ŠŠŠžŠ”Š¢Š˜'),
(80846, 67511, 'bs', 'name', 'Ministarstvo komunikacija i prometa'),
(80847, 67511, 'en', 'name', 'Ministry of Communication and Transport'),
(80848, 67512, 'no_lang_code', 'name', 'Fes Trading (Poland)'),
(80849, 67513, 'no_lang_code', 'name', 'Chengdu Industrial Equipment Installation (China)'),
(80850, 67513, 'zh', 'name', 'ęˆéƒ½åø‚å·„äøšč®¾å¤‡å®‰č£…å…¬åø ē‰ˆęƒę‰€ęœ‰'),
(80851, 67514, 'en', 'name', 'All-Russian Research Institute of Chemical Technology'),
(80852, 67514, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химической технологии'),
(80853, 67515, 'en', 'name', 'Mississippi Blues Trail'),
(80854, 67516, 'ko', 'name', 'ķ•œźµ­ė‹¤ģ“ģ“ģ°Œģ‚°ģæ„ģ£¼ģ‹ķšŒģ‚¬'),
(80855, 67516, 'no_lang_code', 'name', 'Daiichi-Sankyo (South Korea)'),
(80856, 67517, 'no_lang_code', 'name', 'Donlim (China)'),
(80857, 67517, 'zh', 'name', 'å¹æäøœę–°å®ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(80858, 67518, 'en', 'name', 'Population Services International'),
(80859, 67519, 'en', 'name', 'Centre for Materials for Electronics Technology'),
(80860, 67520, 'en', 'name', 'James Joyce Society of Korea'),
(80861, 67520, 'ko', 'name', 'ķ•œźµ­ģ œģž„ģŠ¤ģ”°ģ“ģŠ¤ķ•™ķšŒ'),
(80862, 67521, 'en', 'name', 'Ministry of Social Affairs'),
(80863, 67521, 'et', 'name', 'Eesti Sotsiaalministeerium'),
(80864, 67522, 'fr', 'name', 'Table de Concertation en Violence Conjugale de MontrƩal'),
(80865, 67523, 'no_lang_code', 'name', 'Diamond Photofoil (United Kingdom)'),
(80866, 67524, 'no_lang_code', 'name', 'Critical Solutions International (United States)'),
(80867, 67525, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© أوساج'),
(80868, 67525, 'no_lang_code', 'name', 'Awsaj Academy'),
(80869, 67526, 'en', 'name', 'Maine Central Institute'),
(80870, 67527, 'en', 'name', 'Kazakh Eye Research Institute'),
(80871, 67527, 'kk', 'name', 'Көз Š°ŃƒŃ€ŃƒŠ»Š°Ń€Ń‹ ŅšŠ°Š·Š°Ņ› ғылыми Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(80872, 67527, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ ŠŠ˜Š˜ глазных болезней'),
(80873, 67528, 'no_lang_code', 'name', 'UCB Pharma (India)'),
(80874, 67529, 'en', 'name', 'Data Assurance and Communication Security'),
(80875, 67529, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę•°ę®äøŽé€šäæ”äæęŠ¤ē ”ē©¶ę•™č‚²äø­åæƒ'),
(80876, 67530, 'en', 'name', 'Kent Wildlife Trust'),
(80877, 67531, 'en', 'name', 'Edinburgh Genomics'),
(80878, 67532, 'pt', 'name', 'Sindicato Dos Trabalhadores Da Administração Pública e de Entidades com Fins Públicos'),
(80879, 67533, 'no_lang_code', 'name', 'Zhejiang Modern Chinese Medicine and Natural Medicine Research Institute (China)'),
(80880, 67533, 'zh', 'name', 'ęµ™ę±ŸēŽ°ä»£äø­čÆäøŽå¤©ē„¶čÆē‰©ē ”ē©¶é™¢ęœ‰é™å…¬åøäŗŽ'),
(80881, 67534, 'en', 'name', 'Dandelion Medical Welfare Social Cooperative'),
(80882, 67534, 'ko', 'name', 'ėÆ¼ė“¤ė ˆ ģ˜ė£Œ 복지 ģ‚¬ķšŒ ķ˜‘ė™ ģ”°ķ•©'),
(80883, 67535, 'no_lang_code', 'name', 'Keylane (Netherlands)'),
(80884, 67536, 'en', 'name', 'Russian Research Institute of Hematology and Transfusiology'),
(80885, 67536, 'ru', 'name', 'Российский ŠŠ˜Š˜ гематологии Šø Ń‚Ń€Š°Š½ŃŃ„ŃƒŠ·ŠøŠ¾Š»Š¾Š³ŠøŠø'),
(80886, 67537, 'no_lang_code', 'name', 'CGA Simulations (United Kingdom)'),
(80887, 67538, 'en', 'name', 'BC Mental Health & Substance Use Services'),
(80888, 67539, 'en', 'name', 'Institute of Physico-Technical Problems of the North named VP Larionov'),
(80889, 67539, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физико-технических проблем Девера Š’.П. Ларионов'),
(80890, 67540, 'no_lang_code', 'name', 'Neusoft (China)'),
(80891, 67540, 'zh', 'name', 'äøœč½Æå…¬åø'),
(80892, 67541, 'en', 'name', 'Chosun College of Science & Technology'),
(80893, 67541, 'ko', 'name', 'ģ”°ģ„ ģ“ź³µėŒ€ķ•™źµ'),
(80894, 67542, 'en', 'name', 'Athletic Edge Sports Medicine'),
(80895, 67543, 'en', 'name', 'Korea Association of Chinese Language Education'),
(80896, 67543, 'ko', 'name', 'ķ•œźµ­ ģ–øģ–“ 교윔 ķ•™ķšŒ'),
(80897, 67544, 'en', 'name', 'Korea Advertising Society'),
(80898, 67544, 'ko', 'name', 'ķ•œźµ­ ź“‘ź³  ķ•™ķšŒ'),
(80899, 67545, 'en', 'name', 'Barnardo''s'),
(80900, 67546, 'no_lang_code', 'name', 'Wolong Electric Group Hangzhou Research Institute (China)'),
(80901, 67547, 'de', 'name', 'John von Neumann-Institut für Computing'),
(80902, 67547, 'en', 'name', 'John von Neumann Institute for Computing'),
(80903, 67548, 'no_lang_code', 'name', 'Auvi (China)'),
(80904, 67549, 'en', 'name', 'Korean Society of Alchol Science and Health Behavior'),
(80905, 67549, 'ko', 'name', 'ķ•œźµ­ ģ•Œģ½”ģ˜¬ ģ¤‘ė… ķ•™ķšŒ'),
(80906, 67550, 'en', 'name', 'Hollywood Orthopaedic Group'),
(80907, 67551, 'no_lang_code', 'name', 'JAC Motors (China)'),
(80908, 67551, 'zh', 'name', '江淮汽车'),
(80909, 67552, 'en', 'name', 'FAO/IAEA Agriculture and Biotechnology Laboratories'),
(80910, 67553, 'en', 'name', 'EastSide Partnership'),
(80911, 67554, 'en', 'name', 'Urban Design Institute of Korea'),
(80912, 67554, 'ko', 'name', 'ķ•œźµ­ ė„ģ‹œ ė””ģžģø 학원'),
(80913, 67555, 'en', 'name', 'Institute of Applied Dermatology'),
(80914, 67556, 'en', 'name', 'Neurounion Biomedical Foundation'),
(80915, 67556, 'es', 'name', 'Fundación Biomédica Neurounion'),
(80916, 67557, 'en', 'name', 'Shanghai Tunnel Engineering Rail Transit Design & Research Institute'),
(80917, 67557, 'zh', 'name', 'äøŠęµ·åø‚éš§é“å·„ēØ‹č½Øé“äŗ¤é€šč®¾č®”ē ”ē©¶é™¢'),
(80918, 67558, 'en', 'name', 'Korean History Society'),
(80919, 67558, 'ko', 'name', 'ķ•œźµ­ģ—­ģ‚¬ģ—°źµ¬ķšŒ'),
(80920, 67559, 'it', 'name', 'Federazione Medico Sportiva Italiana'),
(80921, 67560, 'ko', 'name', 'ģ½”ģ•„ģŠ¤ķ…œ(주)'),
(80922, 67560, 'no_lang_code', 'name', 'Corestem (South Korea)'),
(80923, 67561, 'en', 'name', 'Korean Pancreatobiliary Association'),
(80924, 67561, 'ko', 'name', 'ėŒ€ķ•œģ·Œė‹“ė„ķ•™ķšŒ'),
(80925, 67562, 'en', 'name', 'Dermot Foley Landscape Architects (Ireland)'),
(80926, 67563, 'en', 'name', 'Wuhan Modern Urban Agriculture Planning and Design Institute'),
(80927, 67563, 'zh', 'name', 'ę­¦ę±‰ēŽ°ä»£éƒ½åø‚å†œäøšč§„åˆ’č®¾č®”é™¢č‚”ä»½ęœ‰é™å…¬'),
(80928, 67564, 'en', 'name', 'International Academy of Ecology, Human and Nature Safety'),
(80929, 67564, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук ŃŠŗŠ¾Š»Š¾Š³ŠøŠø, безопасности человека Šø прироГы'),
(80930, 67565, 'no_lang_code', 'name', 'Navitas Life Sciences (India)'),
(80931, 67566, 'no_lang_code', 'name', 'State Development & Investment Corporation (China)'),
(80932, 67566, 'zh', 'name', 'å›½å®¶å¼€å‘ęŠ•čµ„å…¬åø'),
(80933, 67567, 'no_lang_code', 'name', 'Coventry (United Kingdom)'),
(80934, 67568, 'ko', 'name', 'ķ•œźµ­ė”œģŠˆ'),
(80935, 67568, 'no_lang_code', 'name', 'Roche (South Korea)'),
(80936, 67569, 'en', 'name', 'ActionAid Ireland'),
(80937, 67570, 'en', 'name', 'Loughs Agency'),
(80938, 67571, 'no_lang_code', 'name', 'The Springboard Consultancy (United Kingdom)'),
(80939, 67572, 'en', 'name', 'Institute for the International Education of Students'),
(80940, 67573, 'no_lang_code', 'name', 'Eagle Genomics (United Kingdom)'),
(80941, 67574, 'en', 'name', 'Hong Kong Electrical Appliances Manufacturers Association'),
(80942, 67574, 'zh', 'name', 'é¦™ęøÆē”µå™Øåˆ¶é€ å•†åä¼š'),
(80943, 67575, 'en', 'name', 'Institute of Biotechnology and Veterinary Medicine'),
(80944, 67575, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биотехнологии Šø ветеринарной меГицины'),
(80945, 67576, 'no_lang_code', 'name', 'Chrysalis Health & Beauty (United Kingdom)'),
(80946, 67577, 'en', 'name', 'Guangdong Urban & Rural Planning and Design Institute'),
(80947, 67577, 'zh', 'name', 'å¹æäøœēœåŸŽä¹”č§„åˆ’č®¾č®”é™¢'),
(80948, 67578, 'no_lang_code', 'name', 'Shanghai Electric (China)'),
(80949, 67578, 'zh', 'name', 'äøŠęµ·ē”µę°”é›†å›¢'),
(80950, 67579, 'no_lang_code', 'name', 'GL Assessment (United Kingdom)'),
(80951, 67580, 'en', 'name', 'Hong Kong Export Credit Insurance Corporation'),
(80952, 67581, 'no_lang_code', 'name', 'Vesuvius (United States)'),
(80953, 67582, 'no_lang_code', 'name', 'Advanced Card Systems (China)'),
(80954, 67582, 'zh', 'name', 'å…ˆčæ›ēš„å”ē‰‡ē³»ē»Ÿ'),
(80955, 67583, 'hu', 'name', 'Magyar TehetsĆ©gsegĆ­tő Szervezetek SzƶvetsĆ©ge'),
(80956, 67584, 'en', 'name', 'Korean Women''s Association for Communication Studies'),
(80957, 67584, 'ko', 'name', 'ķ•œźµ­ 여성 ķ•™ķšŒ'),
(80958, 67585, 'no_lang_code', 'name', 'BlackRock (United States)'),
(80959, 67586, 'en', 'name', 'Canadian Pharmacists Association'),
(80960, 67586, 'fr', 'name', 'Association des Pharmaciens du Canada'),
(80961, 67587, 'en', 'name', 'National Measurement Laboratory'),
(80962, 67588, 'en', 'name', 'Springboard'),
(80963, 67589, 'no_lang_code', 'name', 'Activ8rlives (United Kingdom)'),
(80964, 67590, 'en', 'name', 'Horological Research Institute of Light Industry'),
(80965, 67590, 'zh', 'name', 'č½»å·„äøšé’Ÿč”Øē ”ē©¶ę‰€'),
(80966, 67591, 'en', 'name', 'Stavya Spine Hospital & Research Institute, ą¤øą„ą¤¤ą¤¾ą¤²ą„ą¤Æ ą¤øą„ą¤Ŗą¤¾ą¤‡ą¤Ø ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(80967, 67592, 'fr', 'name', 'Institut PrƩpaVogt'),
(80968, 67593, 'no_lang_code', 'name', 'Mabo (Poland)'),
(80969, 67594, 'no_lang_code', 'name', 'Bühler (China)'),
(80970, 67595, 'no_lang_code', 'name', 'Academician V.P.Makeyev State Rocket Centre (Russia)'),
(80971, 67595, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ракетный центр имени акаГемика Š’.П. Макеева'),
(80972, 67596, 'en', 'name', 'Development Agency of Karditsa'),
(80973, 67597, 'en', 'name', 'Seoul Business Agency'),
(80974, 67598, 'en', 'name', 'Borne Foundation'),
(80975, 67599, 'en', 'name', 'Institute of Biology Ufa Science Center'),
(80976, 67599, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Уфимского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра'),
(80977, 67600, 'en', 'name', 'The Art History Research Institute of Korea'),
(80978, 67600, 'ko', 'name', 'ķ•œźµ­ 미술 사학 ģ—°źµ¬ģ†Œ'),
(80979, 67601, 'no_lang_code', 'name', 'Vanke (China)'),
(80980, 67601, 'zh', 'name', '萬科'),
(80981, 67602, 'de', 'name', 'Arbeitsgemeinschaft Mauerziegel'),
(80982, 67603, 'en', 'name', 'Geological Survey Department'),
(80983, 67604, 'en', 'name', 'Ural Scientific Research Institute of Composite Materials'),
(80984, 67604, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ композиционных материалов'),
(80985, 67605, 'en', 'name', 'Institute of Alcohol Studies'),
(80986, 67606, 'no_lang_code', 'name', 'Precise (India)'),
(80987, 67607, 'en', 'name', 'The Korean Society of Christian Religious Education'),
(80988, 67607, 'ko', 'name', 'ķ•œźµ­ źø°ė…źµ 교윔 ķ•™ķšŒ'),
(80989, 67608, 'en', 'name', 'Guizhou Academy of Testing & Analysis'),
(80990, 67608, 'zh', 'name', 'č“µå·žēœåˆ†ęžęµ‹čÆ•ē ”ē©¶é™¢'),
(80991, 67609, 'no_lang_code', 'name', 'Xi''an Peihua University'),
(80992, 67609, 'zh', 'name', 'č„æå®‰åŸ¹åŽå­¦é™¢'),
(80993, 67610, 'no_lang_code', 'name', 'YY (China)'),
(80994, 67611, 'en', 'name', 'National Institute of Korean History'),
(80995, 67611, 'ko', 'name', 'ķ•œźµ­ 역사 ģ—°źµ¬ģ†Œ'),
(80996, 67612, 'no_lang_code', 'name', 'AiGameDev.com (Austria)'),
(80997, 67613, 'en', 'name', 'Jiyang College of Zhejiang A&F University'),
(80998, 67614, 'en', 'name', 'Ministry of Security of Bosnia and Herzegovina'),
(80999, 67615, 'en', 'name', 'Korean Association for Lifelong Education'),
(81000, 67615, 'ko', 'name', 'ķ•œźµ­ ģƒģ•  교윔 ķ˜‘ķšŒ'),
(81001, 67616, 'no_lang_code', 'name', 'IDAP Technology (Poland)'),
(81002, 67617, 'no_lang_code', 'name', 'Innovative Cryogenic Engineering (United Kingdom)'),
(81003, 67618, 'no_lang_code', 'name', 'Astrimmune (United Kingdom)'),
(81004, 67619, 'en', 'name', 'Georgia Public Broadcasting'),
(81005, 67620, 'en', 'name', 'AO Foundation'),
(81006, 67621, 'en', 'name', 'Fujian Special Equipment Inspection Institute'),
(81007, 67621, 'zh', 'name', 'ē¦å»ŗēœē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢'),
(81008, 67622, 'no_lang_code', 'name', 'Micro-Star International (Taiwan)'),
(81009, 67623, 'no_lang_code', 'name', 'Daiichi Sankyo (India)'),
(81010, 67624, 'en', 'name', 'Mediterranean Institute for Primary Care'),
(81011, 67625, 'en', 'name', 'International Security and Emergency Management Institute'),
(81012, 67625, 'sk', 'name', 'InÅ”titĆŗt pre medzinĆ”rodnĆŗ bezpečnosÅ„ a krĆ­zovĆ© riadenie'),
(81013, 67626, 'en', 'name', 'The Reading Agency'),
(81014, 67627, 'pl', 'name', 'Kutnowska Hodowla Buraka Cukrowego'),
(81015, 67628, 'en', 'name', 'The Linguistic Society of Korea'),
(81016, 67628, 'ko', 'name', 'ķ•œźµ­ģ–øģ–“ķ•™ķšŒ'),
(81017, 67629, 'no_lang_code', 'name', 'Becton Dickinson (India)'),
(81018, 67630, 'no_lang_code', 'name', 'Biotronik (India)'),
(81019, 67631, 'en', 'name', 'Korea Baduk Association'),
(81020, 67631, 'ko', 'name', 'ķ•œźµ­źø°ģ›'),
(81021, 67632, 'en', 'name', 'Brand Design Association of Korea'),
(81022, 67633, 'en', 'name', 'Association for Regional and International Underground Storage'),
(81023, 67634, 'en', 'name', 'Liaoning Petroleum Equipment Institute'),
(81024, 67634, 'zh', 'name', 'č¾½å®é™†ęµ·ēŸ³ę²¹č£…å¤‡ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(81025, 67635, 'no_lang_code', 'name', 'China Datang Corporation (China)'),
(81026, 67635, 'zh', 'name', 'äø­å›½å¤§å”é›†å›¢ē§‘ęŠ€ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(81027, 67636, 'no_lang_code', 'name', 'Wita Proteomics (Germany)'),
(81028, 67637, 'no_lang_code', 'name', 'Objective Solutions (China)'),
(81029, 67638, 'en', 'name', 'Korea Society Of IT Services'),
(81030, 67638, 'ko', 'name', 'ķ•œźµ­ITģ„œė¹„ģŠ¤ķ•™ķšŒ'),
(81031, 67639, 'en', 'name', 'Italian Scientific Community in Canada'),
(81032, 67639, 'fr', 'name', 'ComunitĆ  Scientifica Italiana in Canada'),
(81033, 67640, 'no_lang_code', 'name', 'ITS (United Kingdom)'),
(81034, 67641, 'no_lang_code', 'name', 'Industrial Phycology (United Kingdom)'),
(81035, 67642, 'no_lang_code', 'name', 'Econotherm (United Kingdom)'),
(81036, 67643, 'en', 'name', 'Kansas Health Institute'),
(81037, 67644, 'no_lang_code', 'name', 'Anhui East China Institute of Optoelectronic Technology (China)'),
(81038, 67645, 'en', 'name', 'Ministry of Higher and Tertiary Education'),
(81039, 67646, 'no_lang_code', 'name', 'Kab Bygge-Og Boligadministration (Denmark)'),
(81040, 67647, 'no_lang_code', 'name', 'Hyundai Pharm (South Korea)'),
(81041, 67648, 'no_lang_code', 'name', 'Lucky Technology (China)'),
(81042, 67648, 'zh', 'name', 'å¹øčæęŠ€ęœÆ'),
(81043, 67649, 'en', 'name', 'Bangladesh Medical Research Council'),
(81044, 67650, 'en', 'name', 'Medtronic (South Korea)'),
(81045, 67651, 'fr', 'name', 'Ć  coeur d''homme'),
(81046, 67652, 'fr', 'name', 'HƓpital Larrey'),
(81047, 67653, 'no_lang_code', 'name', 'OceanX Technology (China)'),
(81048, 67654, 'es', 'name', 'Redit'),
(81049, 67655, 'en', 'name', 'Chaithanya Eye Hospital and Research Institute'),
(81050, 67656, 'en', 'name', 'The State Scientific Research Institute of Civil Aviation'),
(81051, 67656, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гражГанской авиации'),
(81052, 67657, 'de', 'name', 'Pathodiagnostik Berlin'),
(81053, 67658, 'no_lang_code', 'name', 'Euros Energy (Poland)'),
(81054, 67659, 'no_lang_code', 'name', 'ZeClinics (Spain)'),
(81055, 67660, 'en', 'name', 'Central Council for Research in Unani Medicine'),
(81056, 67661, 'en', 'name', 'North China Municipal Engineering Design & Research Institute'),
(81057, 67661, 'zh', 'name', 'äø­å›½åø‚ę”æå·„ēØ‹åŽåŒ—č®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(81058, 67662, 'en', 'name', 'Ministry of Information Society and Administration'),
(81059, 67663, 'en', 'name', 'Vermont Department of Libraries'),
(81060, 67664, 'en', 'name', 'L.A. Theatre Works'),
(81061, 67665, 'en', 'name', 'University of Brain Education'),
(81062, 67665, 'ko', 'name', 'źµ­ģ œė‡Œźµģœ”ģ¢…ķ•©ėŒ€ķ•™ģ›ėŒ€ķ•™źµ ķ™ˆķŽ˜ģ“ģ§€'),
(81063, 67666, 'no_lang_code', 'name', 'Kora Healthcare (Ireland)'),
(81064, 67667, 'en', 'name', 'Hong Kong Jewellery & Jade Manufacturers Association'),
(81065, 67667, 'zh', 'name', 'é¦™ęøÆē å®ēŽ‰ēŸ³åŽ‚å•†ä¼š'),
(81066, 67668, 'no_lang_code', 'name', 'Research Institute "Pulsar" (Russia)'),
(81067, 67668, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-ŠŸŠ ŠžŠ˜Š—Š’ŠžŠ”Š”Š¢Š’Š•ŠŠŠžŠ• ŠŸŠ Š•Š”ŠŸŠ Š˜ŠÆŠ¢Š˜Š• "ŠŸŠ£Š›Š¬Š”ŠŠ "'),
(81068, 67669, 'en', 'name', 'Nuclear and Radiation Safety Center'),
(81069, 67669, 'zh', 'name', 'ę øäøŽč¾å°„å®‰å…Øäø­åæƒ'),
(81070, 67670, 'no_lang_code', 'name', 'VNIPIvzryvgeofizika'),
(81071, 67670, 'ru', 'name', 'Š’ŠŠ˜ŠŸŠ˜Š²Š·Ń€Ń‹Š²Š³ŠµŠ¾Ń„ŠøŠ·ŠøŠŗŠ°'),
(81072, 67671, 'no_lang_code', 'name', 'Nanjing Water Conservancy Planning & Design Institute (China)'),
(81073, 67671, 'zh', 'name', 'å—äŗ¬åø‚ę°“åˆ©č§„åˆ’č®¾č®”é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(81074, 67672, 'no_lang_code', 'name', 'Ecometrica (United Kingdom)'),
(81075, 67673, 'en', 'name', 'All-Russian Scientific Research Institute of Floriculture and Subtropical Crops'),
(81076, 67673, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цветовоГства Šø ŃŃƒŠ±Ń‚Ń€Š¾ŠæŠøŃ‡ŠµŃŠŗŠøŃ… ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€'),
(81077, 67674, 'en', 'name', 'National Anti-drug Agency'),
(81078, 67674, 'ro', 'name', 'Agenţia Naţională Antidrog'),
(81079, 67675, 'en', 'name', 'Indian Nations Council of Governments'),
(81080, 67676, 'en', 'name', 'Atlantic Research Institute of Fisheries and Oceanography'),
(81081, 67676, 'ru', 'name', 'Атлантический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø океанографии'),
(81082, 67677, 'en', 'name', 'Hubei Polytechnic Institute'),
(81083, 67677, 'zh', 'name', 'ę¹– 北 职 业 ꊀ 术 å­¦ 院 简 介'),
(81084, 67678, 'no_lang_code', 'name', 'First Automotive Works (China)'),
(81085, 67679, 'no_lang_code', 'name', 'DCC Health & Beauty Solutions'),
(81086, 67680, 'en', 'name', 'Northeast Asian Forest Forum'),
(81087, 67680, 'ko', 'name', 'ė™ė¶ģ•„ ģ‚°ė¦¼ķ¬ėŸ¼'),
(81088, 67681, 'no_lang_code', 'name', 'Total (Qatar)'),
(81089, 67682, 'no_lang_code', 'name', 'Mosway Semiconductor (China)'),
(81090, 67683, 'en', 'name', 'Costume Culture Association'),
(81091, 67683, 'ko', 'name', 'ģ˜ģƒ 문화 ķ˜‘ķšŒ'),
(81092, 67684, 'es', 'name', 'Instituto Argentino de RadioastronomĆ­a'),
(81093, 67685, 'no_lang_code', 'name', 'China Aluminum International Engineering Corporation Limited (China)'),
(81094, 67685, 'zh', 'name', 'äø­å›½é“äøšå›½é™…å·„ēØ‹ęœ‰é™å…¬åø'),
(81095, 67686, 'no_lang_code', 'name', 'Guizhou Magic Pharmaceutical (China)'),
(81096, 67687, 'no_lang_code', 'name', 'GS1 Hong Kong'),
(81097, 67688, 'en', 'name', 'Association for Nutrition'),
(81098, 67689, 'de', 'name', 'Institut für sozial-ökologische Forschung'),
(81099, 67689, 'en', 'name', 'Institute for Social-Ecological Research'),
(81100, 67690, 'no_lang_code', 'name', 'A.M.P Rose (United Kingdom)'),
(81101, 67691, 'en', 'name', 'International Society of Indoor Air Quality and Climate'),
(81102, 67692, 'no_lang_code', 'name', 'ƉireComposites (Ireland)'),
(81103, 67693, 'no_lang_code', 'name', 'Foxlink (China)'),
(81104, 67693, 'zh', 'name', 'ę­£å““ē²¾åÆ†å·„äøš'),
(81105, 67694, 'en', 'name', 'Tlicho Community Services Agency'),
(81106, 67695, 'en', 'name', 'Meher Hospitals'),
(81107, 67696, 'en', 'name', 'Jiangsu Institute of Metrology'),
(81108, 67696, 'zh', 'name', 'ę±Ÿč‹ēœč®”é‡ē§‘å­¦ē ”ē©¶é™¢'),
(81109, 67697, 'en', 'name', 'Korean Association of Feminist Philosophers'),
(81110, 67697, 'ko', 'name', 'ķ•œźµ­ 여성 ģ² ķ•™ģž ķ˜‘ķšŒ'),
(81111, 67698, 'en', 'name', 'Nova Scotia Advisory Commission on AIDS'),
(81112, 67699, 'en', 'name', 'Wuhan Academy of Agricultural Sciences'),
(81113, 67699, 'zh', 'name', 'ę­¦ę±‰åø‚å†œäøšē§‘å­¦é™¢'),
(81114, 67700, 'en', 'name', 'Riga Energy Agency'),
(81115, 67700, 'lv', 'name', 'Rīgas enerģētikas aģentūra'),
(81116, 67701, 'ko', 'name', 'ģ£¼ģ‹ķšŒģ‚¬ 팬젠'),
(81117, 67701, 'no_lang_code', 'name', 'PanGen Biotech (South Korea)'),
(81118, 67702, 'en', 'name', 'Institute of Mathematics and Physics'),
(81119, 67702, 'fr', 'name', 'Institut de MathƩmatiques et de Sciences Physiques'),
(81120, 67703, 'en', 'name', 'National Museum of Ireland'),
(81121, 67704, 'no_lang_code', 'name', 'Wolff Group (Poland)'),
(81122, 67704, 'pl', 'name', 'Grupa Wolff'),
(81123, 67705, 'no_lang_code', 'name', 'Pantarei Design (China)'),
(81124, 67706, 'en', 'name', 'Kaliningrad Frontier Institute of the Federal Security Service of Russia'),
(81125, 67706, 'ru', 'name', 'ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“ŃŠŗŠøŠ¹ пограничный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ФДБ России'),
(81126, 67707, 'en', 'name', 'Federal Scientific Center for Vegetable Growing'),
(81127, 67707, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ селекции Šø семеновоГства овощных ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€'),
(81128, 67708, 'en', 'name', 'Korean Finance Association'),
(81129, 67708, 'ko', 'name', 'ķ•œźµ­ģž¬ė¬“ķ•™ķšŒ'),
(81130, 67709, 'no_lang_code', 'name', 'Box (United States)'),
(81131, 67710, 'en', 'name', 'National Archives of India, ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤…ą¤­ą¤æą¤²ą„‡ą¤–ą¤¾ą¤—ą¤¾ą¤°'),
(81132, 67711, 'no_lang_code', 'name', 'Gipronickel Institute'),
(81133, 67711, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“ŠøŠæŃ€Š¾Š½ŠøŠŗŠµŠ»ŃŒ'),
(81134, 67712, 'en', 'name', 'Shanghai Research Institute of Sports Science'),
(81135, 67712, 'zh', 'name', 'äøŠęµ·ä½“č‚²ē§‘å­¦ē ”ē©¶ę‰€'),
(81136, 67713, 'no_lang_code', 'name', 'Eurotech (Poland)'),
(81137, 67714, 'no_lang_code', 'name', 'Sophos Group (United Kingdom)'),
(81138, 67715, 'en', 'name', 'Hainan Meteorology Administration'),
(81139, 67715, 'zh', 'name', 'ęµ·å—ēœę°”č±”å±€'),
(81140, 67716, 'en', 'name', 'HealthCareCAN'),
(81141, 67717, 'no_lang_code', 'name', 'Elsta Elektronika (Poland)'),
(81142, 67718, 'en', 'name', 'The Folklore Society'),
(81143, 67719, 'en', 'name', 'Film Independent'),
(81144, 67720, 'no_lang_code', 'name', 'Pacific World Industrial (China)'),
(81145, 67721, 'no_lang_code', 'name', 'Voysis (Ireland)'),
(81146, 67722, 'en', 'name', 'North East Atlantic Fisheries Commission'),
(81147, 67723, 'en', 'name', 'Nevada Dairy Commission'),
(81148, 67724, 'no_lang_code', 'name', 'Jiangsu Provincial Architectural Design and Research Institute (China)'),
(81149, 67724, 'zh', 'name', 'ę±Ÿč‹ēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(81150, 67725, 'en', 'name', 'The Korean Society of Management Information Systems'),
(81151, 67725, 'ko', 'name', 'ķ•œźµ­ 경영 정볓 ķ•™ķšŒ'),
(81152, 67726, 'en', 'name', 'Guangzhou Institute of Mechanical Design'),
(81153, 67726, 'zh', 'name', 'å¹æå·žęœŗę¢°č®¾č®”ē ”ē©¶ę‰€ē®€ä»‹'),
(81154, 67727, 'en', 'name', 'Yunnan Water Conservancy and Hydropower Survey and Design Institute'),
(81155, 67728, 'en', 'name', 'Coachella Valley Association of Governments'),
(81156, 67729, 'en', 'name', 'Siberian Research Institute of Agriculture and Peat'),
(81157, 67730, 'en', 'name', 'Taegu Science University'),
(81158, 67730, 'ko', 'name', 'ėŒ€źµ¬ 과학 ėŒ€ķ•™źµ'),
(81159, 67731, 'en', 'name', 'Scientific and Research Institute of High-Voltage Apparatus'),
(81160, 67731, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Š²Š¾Š»ŃŒŃ‚Š½Š¾Š³Š¾ Š¾Š±Š¾Ń€ŃƒŠ“Š¾Š²Š°Š½ŠøŃ'),
(81161, 67732, 'en', 'name', 'Occupational and Environmental Medical Association of Canada'),
(81162, 67732, 'fr', 'name', 'Association Canadienne de la MĆ©decine du Travail et de l’environnement'),
(81163, 67733, 'en', 'name', 'Gama (United Kingdom)'),
(81164, 67734, 'no_lang_code', 'name', 'Group Sense (China)'),
(81165, 67734, 'zh', 'name', 'ę¬Šę™ŗé›†åœ˜'),
(81166, 67735, 'en', 'name', 'Institute for Research and Development ā€œUtripā€'),
(81167, 67735, 'sl', 'name', 'InŔtitut za raziskave in razvoj "Utrip"'),
(81168, 67736, 'en', 'name', 'Shanghai Xiandai Architectural Design'),
(81169, 67736, 'zh', 'name', 'äøŠęµ·ēŽ°ä»£å»ŗē­‘č®¾č®”'),
(81170, 67737, 'en', 'name', 'Canadian Rural Health Research Society'),
(81171, 67737, 'fr', 'name', 'SociƩtƩ Canadienne de Recherche en SantƩ Rurale'),
(81172, 67738, 'en', 'name', 'The Alaska Sea Otter and Steller Sea Lion Commission'),
(81173, 67739, 'el', 'name', 'Τμήμα Ī”Ī·Ī¼ĪæĻƒĪÆĻ‰Ī½ ĪˆĻĪ³Ļ‰Ī½'),
(81174, 67739, 'en', 'name', 'Department of Public Works'),
(81175, 67740, 'no_lang_code', 'name', 'CITIC Group (China)'),
(81176, 67741, 'en', 'name', 'The Korean Association for Christian Ethics'),
(81177, 67741, 'ko', 'name', 'ķ•œźµ­ źø°ė…źµ ģœ¤ė¦¬ķ•™ķšŒ'),
(81178, 67742, 'ar', 'name', 'داﺌرة الآثار'),
(81179, 67742, 'en', 'name', 'Israel Antiquities Authority'),
(81180, 67742, 'he', 'name', 'רשות העתיקות'),
(81181, 67743, 'fr', 'name', 'SociƩtƩ d''Habitation du QuƩbec'),
(81182, 67744, 'en', 'name', 'Bristol Hospitality Network'),
(81183, 67745, 'en', 'name', 'National Statistical Service of the Republic of Armenia'),
(81184, 67745, 'hy', 'name', 'Ō±Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ¾Õ«Õ³Õ”ÕÆÕ”Õ£Ö€Õ”ÕÆÕ”Õ¶ Õ®Õ”Õ¼Õ”ÕµÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(81185, 67746, 'no_lang_code', 'name', 'Bastik (Poland)'),
(81186, 67747, 'no_lang_code', 'name', 'Clover Seed (China)'),
(81187, 67747, 'zh', 'name', 'é«˜čÆēØ®å­'),
(81188, 67748, 'no_lang_code', 'name', 'Aridhia (United Kingdom)'),
(81189, 67749, 'no_lang_code', 'name', 'Landcatch (United Kingdom)'),
(81190, 67750, 'en', 'name', 'Bolivian Forest Research Institute'),
(81191, 67750, 'es', 'name', 'Instituto Boliviano de Investigación Forestal'),
(81192, 67751, 'no_lang_code', 'name', 'Ram-Chem (China)'),
(81193, 67752, 'de', 'name', 'Hessisches Kultusministerium'),
(81194, 67753, 'no_lang_code', 'name', 'Nymbl Science (United Kingdom)'),
(81195, 67754, 'en', 'name', 'Russian Research and Design Institute of Titanium and Magnesium'),
(81196, 67754, 'ru', 'name', 'Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠ«Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢Š˜Š¢ŠŠŠ И ŠœŠŠ“ŠŠ˜ŠÆ'),
(81197, 67755, 'no_lang_code', 'name', 'Anton Paar (United Kingdom)'),
(81198, 67756, 'no_lang_code', 'name', 'Farm Energy and Control Services (United Kingdom)'),
(81199, 67757, 'en', 'name', 'Bicester Town Council'),
(81200, 67758, 'en', 'name', 'Institute of Oceanographic Instrumentation'),
(81201, 67758, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢ęµ·ę“‹ä»Ŗå™Øä»Ŗč”Øē ”ē©¶ę‰€ 地址'),
(81202, 67759, 'no_lang_code', 'name', 'Marine Projects (Poland)'),
(81203, 67760, 'en', 'name', 'Kent and Medway NHS and Social Care Partnership Trust'),
(81204, 67761, 'en', 'name', 'Citizens Advice'),
(81205, 67762, 'bg', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на икономиката на Република Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(81206, 67762, 'en', 'name', 'Ministry of Economy of the Republic of Bulgaria'),
(81207, 67763, 'no_lang_code', 'name', 'Automatic Data Processing (United States)'),
(81208, 67764, 'en', 'name', 'Rape Crisis Network Ireland'),
(81209, 67765, 'no_lang_code', 'name', 'Axiom (China)'),
(81210, 67766, 'en', 'name', 'United Nations Economic Commission for Europe'),
(81211, 67767, 'en', 'name', 'Dr. Vitthalrao Vikhe Patil Foundation’s Medical College'),
(81212, 67768, 'en', 'name', 'Scientific Research Institute "Kulon"'),
(81213, 67768, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š¼Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ «Кулон»'),
(81214, 67769, 'no_lang_code', 'name', 'Niiteplopribor (Russia)'),
(81215, 67769, 'ru', 'name', 'ŠŠ˜Š˜Š¢ŠµŠæŠ»Š¾ŠæŃ€ŠøŠ±Š¾Ń€'),
(81216, 67770, 'en', 'name', 'Military Academy of Strategic Missile Forces named after Peter the Great'),
(81217, 67770, 'ru', 'name', 'Š’ŠžŠ•ŠŠŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ Š Š’Š”Š Š˜ŠœŠ•ŠŠ˜ ŠŸŠ•Š¢Š Š Š’Š•Š›Š˜ŠšŠžŠ“Šž'),
(81218, 67771, 'no_lang_code', 'name', 'Pandora (United States)'),
(81219, 67772, 'en', 'name', 'European Biodiesel Board'),
(81220, 67773, 'en', 'name', 'Ballymun Job Centre'),
(81221, 67774, 'no_lang_code', 'name', 'AC Goatham & Son (United Kingdom)'),
(81222, 67775, 'en', 'name', 'Abraham Lincoln Bicentennial Foundation'),
(81223, 67776, 'no_lang_code', 'name', 'Janssen (Germany)'),
(81224, 67777, 'no_lang_code', 'name', 'HiLight Semiconductor (United Kingdom)'),
(81225, 67778, 'ar', 'name', 'مستؓفى Ų§Ł„Ų¹Ł…Ų§ŲÆŁŠ'),
(81226, 67778, 'en', 'name', 'Al Emadi Hospital'),
(81227, 67779, 'ar', 'name', 'Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ© للعلاج Ų§Ł„Ł†ŁŲ³ŁŠ'),
(81228, 67779, 'en', 'name', 'Iraqi Association for Psychotherapy'),
(81229, 67780, 'no_lang_code', 'name', 'Acoustic Arc (China)'),
(81230, 67780, 'zh', 'name', 'å£°ę³¢å›½é™…ęœ‰é™å…¬åø'),
(81231, 67781, 'en', 'name', 'Gyeongnam Provincial Geochang College'),
(81232, 67781, 'ko', 'name', 'ź²½ė‚Øė„ė¦½ź±°ģ°½ėŒ€ķ•™'),
(81233, 67782, 'en', 'name', 'National Agency for Education'),
(81234, 67782, 'sv', 'name', 'Skolverket'),
(81235, 67783, 'de', 'name', 'association Européenne des Instituts de Recherche et de Formation en Matière de Développement'),
(81236, 67783, 'en', 'name', 'European Association of Development Research and Training Institutes'),
(81237, 67784, 'no_lang_code', 'name', 'TPC (China)'),
(81238, 67785, 'en', 'name', 'WiseEuropa'),
(81239, 67786, 'en', 'name', 'Institute for Public Relations'),
(81240, 67787, 'no_lang_code', 'name', 'Minch Malt (Ireland)'),
(81241, 67788, 'no_lang_code', 'name', 'Hunan Xiangdian Test Research Institute (China)'),
(81242, 67788, 'zh', 'name', 'ę¹–å—ę¹˜ē”µęµ‹čÆ•ē ”ē©¶ę‰€'),
(81243, 67789, 'de', 'name', 'Eisenbahn-Bundesamt'),
(81244, 67789, 'en', 'name', 'Federal Railway Authority'),
(81245, 67790, 'no_lang_code', 'name', 'Buijs Advice and Consultancy (Netherlands)'),
(81246, 67791, 'en', 'name', 'Ministry of Health'),
(81247, 67792, 'no_lang_code', 'name', 'Autolus (United Kingdom)'),
(81248, 67793, 'no_lang_code', 'name', 'SMA Magnetics (Poland)'),
(81249, 67794, 'no_lang_code', 'name', 'Harbin Electric Corporation (China)'),
(81250, 67794, 'zh', 'name', 'å“ˆå°”ę»Øē”µę°”é›†å›¢ęœ‰é™å…¬åø'),
(81251, 67795, 'no_lang_code', 'name', 'BGT Materials (United Kingdom)'),
(81252, 67796, 'ko', 'name', 'ķ…Œķ¬ė°øė¦¬'),
(81253, 67796, 'no_lang_code', 'name', 'Tech Valley (South Korea)'),
(81254, 67797, 'en', 'name', 'Social Justice Ireland'),
(81255, 67798, 'en', 'name', 'Korean Academy of Speech-Language Pathology and Audiology'),
(81256, 67799, 'no_lang_code', 'name', 'Pharmaceutical Product Development (India)'),
(81257, 67800, 'no_lang_code', 'name', 'Federalimentare (Italy)'),
(81258, 67801, 'en', 'name', 'Child, Adolescent and Family Mental Health'),
(81259, 67802, 'no_lang_code', 'name', 'The Behaviouralist (United Kingdom)'),
(81260, 67803, 'en', 'name', 'Ministry of Infrastructure'),
(81261, 67803, 'sl', 'name', 'Ministrstvo za infrastrukturo'),
(81262, 67804, 'el', 'name', '΄πουργείο ΠαιΓείας και Ī ĪæĪ»Ī¹Ļ„Ī¹ĻƒĪ¼ĪæĻ'),
(81263, 67804, 'en', 'name', 'Ministry of Education and Culture'),
(81264, 67805, 'no_lang_code', 'name', 'ValiRx (United Kingdom)'),
(81265, 67806, 'no_lang_code', 'name', 'Qinhuangdao Glass Industry Research and Design Institute (China)'),
(81266, 67806, 'zh', 'name', 'ē§¦ēš‡å²›ēŽ»ē’ƒå·„äøšē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åø'),
(81267, 67807, 'en', 'name', 'NHS Eastern Cheshire Clinical Commissioning Group'),
(81268, 67808, 'en', 'name', 'The Korean Society for Culture and Arts Education Studies'),
(81269, 67808, 'ko', 'name', 'ķ•œźµ­ 문화 예술 교윔 ķ•™ķšŒ'),
(81270, 67809, 'no_lang_code', 'name', 'Lars Lighting (Poland)'),
(81271, 67810, 'en', 'name', 'Lawn Tennis Association'),
(81272, 67811, 'en', 'name', 'Research And Design Institute of Electric Coal Products'),
(81273, 67811, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠž-Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š­Š›Š•ŠšŠ¢Š ŠžŠ£Š“ŠžŠ›Š¬ŠŠ«Š„ Š˜Š—Š”Š•Š›Š˜Š™'),
(81274, 67812, 'no_lang_code', 'name', 'Shenzhen Institute of Building Research (China)'),
(81275, 67812, 'zh', 'name', 'ę·±åœ³åø‚å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(81276, 67813, 'en', 'name', 'The Association for Historical Studies on Korean National Movement'),
(81277, 67813, 'ko', 'name', 'ķ•œźµ­ėÆ¼ģ”±ģš“ė™ģ‚¬ķ•™ķšŒ'),
(81278, 67814, 'no_lang_code', 'name', 'Gateway (United Kingdom)'),
(81279, 67815, 'en', 'name', 'Central Scientific Research Institute of Geology of Non-metallic Minerals'),
(81280, 67816, 'en', 'name', 'Institute of Inorganic Methodologies and Plasmas'),
(81281, 67816, 'it', 'name', 'Istituto di Metodologie Inorganiche e dei Plasmi'),
(81282, 67817, 'no_lang_code', 'name', 'Zhejiang Energy Group (China)'),
(81283, 67817, 'zh', 'name', 'ęµ™ę±Ÿēœčƒ½ęŗé›†å›¢ęœ‰é™å…¬åø'),
(81284, 67818, 'en', 'name', 'The Hearing Foundation of Canada'),
(81285, 67819, 'en', 'name', 'Jeju participation environmental solidarity'),
(81286, 67819, 'ko', 'name', '제주 ģ°øģ—¬ ķ™˜ź²½ ģ—°ėŒ€'),
(81287, 67820, 'no_lang_code', 'name', 'Siemens (Russia)'),
(81288, 67820, 'ru', 'name', 'Дименс'),
(81289, 67821, 'en', 'name', 'Executive Agency Electronic Communication Networks and Information Systems'),
(81290, 67822, 'en', 'name', 'State Research Institute of Highly Pure Biopreparations'),
(81291, 67822, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾ā€‘ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ особо чистых биопрепаратов'),
(81292, 67823, 'en', 'name', 'Devon Guild of Craftsmen'),
(81293, 67824, 'no_lang_code', 'name', 'Meyer (China)'),
(81294, 67824, 'zh', 'name', 'ē¾Žäŗžå»šå…·ę——č‰¦åŗ—'),
(81295, 67825, 'no_lang_code', 'name', 'Pixel Magic Systems (China)'),
(81296, 67826, 'en', 'name', 'Amnesty International Ireland'),
(81297, 67827, 'en', 'name', 'Genetic Factors for Osteoporosis Consortium'),
(81298, 67828, 'en', 'name', 'Myeongji Chunhye Hospital'),
(81299, 67828, 'ko', 'name', 'ėŖ…ģ§€ģ¶˜ķ˜œė³‘ģ›'),
(81300, 67829, 'bg', 'name', 'Регионална енергийна Š°Š³ŠµŠ½Ń†ŠøŃ - Русе'),
(81301, 67829, 'en', 'name', 'Regional Energy Agency'),
(81302, 67830, 'fr', 'name', 'Association QuƩbƩcoise des Enseignantes et des Enseignants du Primaire'),
(81303, 67831, 'en', 'name', 'Yunnan Machinery Research and Design Institute'),
(81304, 67831, 'zh', 'name', 'äŗ‘å—ēœęœŗę¢°ē ”ē©¶č®¾č®”é™¢'),
(81305, 67832, 'en', 'name', 'British High Commission Nairobi'),
(81306, 67833, 'en', 'name', 'Association of Western Art History'),
(81307, 67833, 'ko', 'name', 'ķ•œźµ­ģ„œģ–‘ėÆøģˆ ģ‚¬ķ•™ķšŒ 회'),
(81308, 67834, 'en', 'name', 'Zhoukou City Academy of Agricultural Sciences'),
(81309, 67834, 'zh', 'name', 'å‘Øå£åø‚å†œäøšē§‘å­¦é™¢'),
(81310, 67835, 'en', 'name', 'Contact Theatre'),
(81311, 67836, 'en', 'name', 'Galway Education Centre'),
(81312, 67837, 'en', 'name', 'Saint-Petersburg I. I. Dzhanelidze Research Institute of Emergency Medicine'),
(81313, 67837, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ И. И. ДжанелиГзе ŠŠ˜Š˜ ŃŠŗŃŃ‚Ń€ŠµŠ½Š½Š¾Š¹ меГицины'),
(81314, 67838, 'en', 'name', 'Korea Society of Strategic Management'),
(81315, 67838, 'ko', 'name', 'ķ•œźµ­ģ „ėžµź²½ģ˜ķ•™ķšŒ'),
(81316, 67839, 'en', 'name', 'Qatar Green Building Council'),
(81317, 67840, 'no_lang_code', 'name', 'NeuMed (United States)'),
(81318, 67841, 'no_lang_code', 'name', 'Almaz-Antey (Russia)'),
(81319, 67841, 'ru', 'name', 'ŠšŠ¾Š½Ń†ŠµŃ€Š½ Š’ŠšŠž "Алмаз-Антей'),
(81320, 67842, 'en', 'name', 'Shaanxi Coal Chemical Industry Technology Research Institute'),
(81321, 67842, 'zh', 'name', 'é™•č„æē…¤äøšåŒ–å·„ęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(81322, 67843, 'en', 'name', 'European Transport Safety Council'),
(81323, 67844, 'en', 'name', 'Quebec Automobile Insurance Corporation'),
(81324, 67844, 'fr', 'name', 'SociƩtƩ de l''Assurance Automobile du QuƩbec'),
(81325, 67845, 'en', 'name', 'Ministry of Labour, Invalids and Social Affairs'),
(81326, 67845, 'vi', 'name', 'Bį»™ Lao động, Thʰʔng binh vĆ  XĆ£ hį»™i'),
(81327, 67846, 'en', 'name', 'Guangdong Food Industry Research Institute'),
(81328, 67846, 'zh', 'name', 'å¹æäøœēœé£Ÿå“å·„äøšē ”ē©¶ę‰€'),
(81329, 67847, 'de', 'name', 'Institut für Bau- Umwelt- und Solarforschung'),
(81330, 67847, 'en', 'name', 'Institute for Construction, Environmental and Solar Research'),
(81331, 67848, 'no_lang_code', 'name', 'Tricomed (Poland)'),
(81332, 67849, 'en', 'name', 'CMC Research Institutes'),
(81333, 67850, 'no_lang_code', 'name', 'Tianma Microelectronics (China)'),
(81334, 67850, 'zh', 'name', '天 é©¬å¾®ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(81335, 67851, 'de', 'name', 'Thüringer Ministerium für Umwelt, Energie und Naturschutz'),
(81336, 67852, 'en', 'name', 'Ananthapuri Hospitals and Research Institute'),
(81337, 67853, 'ko', 'name', 'ź“‘ė™ģ œģ•½'),
(81338, 67853, 'no_lang_code', 'name', 'Kwangdong Pharmaceutical'),
(81339, 67854, 'en', 'name', 'Vancouver Coastal Health'),
(81340, 67855, 'en', 'name', 'Wuxi Vocational Institute of Commerce'),
(81341, 67855, 'zh', 'name', 'ę— é””å•†äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(81342, 67856, 'en', 'name', 'Dr. B.R.K.R. Government Ayurvedic College'),
(81343, 67857, 'no_lang_code', 'name', 'Amgen (Belgium)'),
(81344, 67858, 'en', 'name', 'Guangdong Hydropower Planning & Design Institute'),
(81345, 67859, 'en', 'name', 'Hope and Homes for Children'),
(81346, 67860, 'en', 'name', 'Cell Stress Discoveries'),
(81347, 67861, 'en', 'name', 'Vilnius Higher Command School of Radioelectronics Air Defense'),
(81348, 67861, 'ru', 'name', 'Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠ¾Š³Š¾ Š²Ń‹ŃŃˆŠµŠ³Š¾ команГного ŃƒŃ‡ŠøŠ»ŠøŃ‰Š° Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø ŠŸŠ’Šž'),
(81349, 67862, 'en', 'name', 'Tianjin Fire Research Institute'),
(81350, 67862, 'zh', 'name', 'å…¬å®‰éƒØå¤©ę“„ę¶ˆé˜²ē ”ē©¶ę‰€ē®€ä»‹'),
(81351, 67863, 'de', 'name', 'Bundesministerium für Soziales, Gesundheit, Pflege und Konsumentenschutz'),
(81352, 67863, 'en', 'name', 'Federal Ministry of Social Affairs, Health, Care and Consumer Protection'),
(81353, 67864, 'no_lang_code', 'name', 'Zhejiang Seahead Ship Design And Research Institute (China)'),
(81354, 67864, 'zh', 'name', 'ęµ™ę±Ÿę¬£ęµ·čˆ¹čˆ¶č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(81355, 67865, 'en', 'name', 'Kavli Energy NanoScience Institute'),
(81356, 67866, 'no_lang_code', 'name', 'Institute Tsvetmetobrabotka'),
(81357, 67866, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Цветметобработка'),
(81358, 67867, 'no_lang_code', 'name', 'Nantong Tongbo Equipment Installation Engineering (China)'),
(81359, 67867, 'zh', 'name', 'å—é€šé€šåšč®¾å¤‡å®‰č£…å·„ēØ‹ęœ‰é™å…¬åø'),
(81360, 67868, 'no_lang_code', 'name', 'Neonutra (South Korea)'),
(81361, 67869, 'en', 'name', 'Hong Kong Policy Research Institute'),
(81362, 67869, 'zh', 'name', 'é¦™ęøÆé”˜ę™Æ'),
(81363, 67870, 'no_lang_code', 'name', 'Genomics Medicine (Ireland)'),
(81364, 67871, 'en', 'name', 'Action for Children'),
(81365, 67872, 'en', 'name', 'Hong Kong Institute of Biotechnology'),
(81366, 67872, 'zh', 'name', 'é¦™ęøÆē”Ÿē‰©ē§‘ęŠ€å­¦é™¢'),
(81367, 67873, 'en', 'name', 'SCIVP of Veterinary Medicinal Products and Feed Additives'),
(81368, 67873, 'uk', 'name', 'Державний науково-ГосліГний ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŒŠ½ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарних препаратів та кормових Гобавок.'),
(81369, 67874, 'en', 'name', 'Institute of Social and Economic Studies of Population'),
(81370, 67875, 'en', 'name', 'Ministry of the Interior'),
(81371, 67875, 'hr', 'name', 'Ministarstvo unutarnjih poslova Republike Hrvatske'),
(81372, 67876, 'en', 'name', 'Korea Counseling Psychology Association'),
(81373, 67876, 'ko', 'name', 'ķ•œźµ­ ģƒė‹“ 심리 ķ•™ķšŒ'),
(81374, 67877, 'es', 'name', 'Clinica Rotger'),
(81375, 67878, 'no_lang_code', 'name', 'Amgen (Australia)'),
(81376, 67879, 'en', 'name', 'Altai Scientific Research Institute of Machine Building Technology'),
(81377, 67879, 'ru', 'name', 'Алтайский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технологии Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(81378, 67880, 'en', 'name', 'National Museum New Delhi'),
(81379, 67881, 'no_lang_code', 'name', 'Aquila Bioscience (Ireland)'),
(81380, 67882, 'en', 'name', 'Santa Marinella Research Institute'),
(81381, 67882, 'it', 'name', 'Istituto di ricerca Santa Marinella'),
(81382, 67883, 'en', 'name', 'Korea Social Science Data Archive'),
(81383, 67883, 'ko', 'name', 'ķ•œźµ­ģ‚¬ķšŒź³¼ķ•™ģžė£Œģ›'),
(81384, 67884, 'it', 'name', 'I.R.C.C.S. Oasi Maria SS'),
(81385, 67885, 'en', 'name', 'Women In Technology International'),
(81386, 67886, 'no_lang_code', 'name', 'Beijing Urban Construction Design & Development Group (China)'),
(81387, 67887, 'en', 'name', 'National Information Standards Organization'),
(81388, 67888, 'en', 'name', 'National Council on Family Relations'),
(81389, 67889, 'lt', 'name', 'Marijampolė municipality, Marijampolės savivaldybė'),
(81390, 67890, 'en', 'name', 'Scouting Ireland'),
(81391, 67890, 'ga', 'name', 'Gasóga na hƉireann'),
(81392, 67891, 'en', 'name', 'London Mathematical Laboratory'),
(81393, 67892, 'en', 'name', 'William Osler Health System'),
(81394, 67893, 'en', 'name', 'Kyungmin University'),
(81395, 67893, 'ko', 'name', 'ź²½ėÆ¼ėŒ€ķ•™źµ'),
(81396, 67894, 'az', 'name', 'Azərbaycan Respublikasının Səhiyyə Nazirliyi'),
(81397, 67894, 'en', 'name', 'Ministry of Healthcare'),
(81398, 67895, 'it', 'name', 'Consorzio Mipa'),
(81399, 67896, 'en', 'name', 'World Rugby'),
(81400, 67897, 'no_lang_code', 'name', 'EC Systems (Poland)'),
(81401, 67898, 'en', 'name', 'VA Afanasyev Research Institute of Fur-breeding and Rabbit breeding'),
(81402, 67899, 'en', 'name', 'All-Russian Research Institute of Brewing, Non-Alcoholic and Wine Industry'),
(81403, 67899, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŸŠøŠ²Š¾Š²Š°Ń€ŠµŠ½Š½Š¾Š¹, Š‘ŠµŠ·Š°Š»ŠŗŠ¾Š³Š¾Š»ŃŒŠ½Š¾Š¹ И Š’ŠøŠ½Š¾Š“ŠµŠ»ŃŒŃ‡ŠµŃŠŗŠ¾Š¹ ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(81404, 67900, 'no_lang_code', 'name', 'Medinstill (United States)'),
(81405, 67901, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° ŠŠ³ŠµŠ½Ń†ŠøŃ по Безопасност на Єраните'),
(81406, 67901, 'en', 'name', 'Bulgarian Food Safety Agency'),
(81407, 67902, 'no_lang_code', 'name', 'Hangzhou West-Lake Fountain Installation Serials (China)'),
(81408, 67902, 'zh', 'name', 'ę­å·žč„æę¹–å–·ę³‰č®¾å¤‡ęˆå„—ęœ‰é™å…¬åø'),
(81409, 67903, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© Ų§Ł„Ų±Ų¹Ų§ŁŠŲ© Ų§Ł„ŲµŲ­ŁŠŲ© Ų§Ł„Ų£ŁˆŁ„ŁŠŲ©'),
(81410, 67903, 'en', 'name', 'Primary Health Care'),
(81411, 67904, 'no_lang_code', 'name', 'Longchang Group (China)'),
(81412, 67905, 'en', 'name', 'Korean Cinema Association'),
(81413, 67905, 'ko', 'name', 'ķ•œźµ­ ģ˜ķ™” ķ˜‘ķšŒ'),
(81414, 67906, 'en', 'name', 'Israel-Europe R&D Directorate'),
(81415, 67907, 'en', 'name', 'WAMITAB'),
(81416, 67908, 'de', 'name', 'Bundesverband der Deutschen Volksbanken und Raiffeisenbanken'),
(81417, 67908, 'en', 'name', 'National Association of German Cooperative Bank'),
(81418, 67909, 'no_lang_code', 'name', 'Canberra (United Kingdom)'),
(81419, 67910, 'no_lang_code', 'name', 'Anacail (United Kingdom)'),
(81420, 67911, 'no_lang_code', 'name', 'FireEye (United States)'),
(81421, 67912, 'en', 'name', 'British Board of AgrƩment'),
(81422, 67913, 'ko', 'name', 'ė°”ģ“ģ—˜'),
(81423, 67913, 'no_lang_code', 'name', 'Bayer (South Korea)'),
(81424, 67914, 'pt', 'name', 'Escola de Negócios e Administração'),
(81425, 67915, 'no_lang_code', 'name', 'Electromechanical Device Installation (China)'),
(81426, 67915, 'zh', 'name', 'ęœŗē”µč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(81427, 67916, 'en', 'name', 'Korean Society for Emotion and Sensibility'),
(81428, 67916, 'ko', 'name', 'ķ•œźµ­ź°ģ„±ź³¼ķ•™ķšŒ'),
(81429, 67917, 'no_lang_code', 'name', 'Speechmatics (United Kingdom)'),
(81430, 67918, 'no_lang_code', 'name', 'Lambda Films (United Kingdom)'),
(81431, 67919, 'en', 'name', 'Institute for National Security Strategy'),
(81432, 67919, 'ko', 'name', 'źµ­ź°€ģ•ˆė³“ģ „ėžµģ—°źµ¬ģ›'),
(81433, 67920, 'ko', 'name', '범셀'),
(81434, 67920, 'no_lang_code', 'name', 'Bexel (South Korea)'),
(81435, 67921, 'en', 'name', 'Western Development Commission'),
(81436, 67922, 'en', 'name', 'Cambridgeshire County Council'),
(81437, 67923, 'fr', 'name', 'Office des Personnes HandicapƩes du QuƩbec'),
(81438, 67924, 'en', 'name', 'Korea Christian Educational Information Society');
INSERT INTO `ror_settings` VALUES
(81439, 67924, 'ko', 'name', 'źø°ė…źµźµģœ”ģ •ė³“ķ•™ķšŒ'),
(81440, 67925, 'no_lang_code', 'name', 'Hubbard Products (United Kingdom)'),
(81441, 67926, 'en', 'name', 'Frank and Rosemary Iovieno Caring for Children Foundation'),
(81442, 67927, 'no_lang_code', 'name', 'Unisen Group (China)'),
(81443, 67928, 'en', 'name', 'The Korean Society for Microbiology and Biotechnology'),
(81444, 67928, 'ko', 'name', 'ķ•œźµ­ėÆøģƒė¬¼ģƒėŖ…ź³µķ•™ķšŒ'),
(81445, 67929, 'en', 'name', '3rd Central Research Institute of the Russian Defence Ministry'),
(81446, 67929, 'ru', 'name', '3-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½Š¾Š±Š¾Ń€Š¾Š½Ń‹ России'),
(81447, 67930, 'ko', 'name', 'ķ•œźµ­ė² ė§ź±°ģøź²”ķ•˜ģž„'),
(81448, 67930, 'no_lang_code', 'name', 'Boehringer Ingelheim (South Korea)'),
(81449, 67931, 'en', 'name', 'Mahatma Gandhi Mission''s Dental College and Hospital'),
(81450, 67931, 'hi', 'name', 'ą¤®ą¤œą„€ą¤ą¤® ą¤”ą„‡ą¤‚ą¤Ÿą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ अँऔ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(81451, 67932, 'no_lang_code', 'name', 'DNEG (United Kingdom)'),
(81452, 67933, 'ko', 'name', '만주 ģ‚¬ķšŒ'),
(81453, 67933, 'no_lang_code', 'name', 'Manchurian Society'),
(81454, 67934, 'no_lang_code', 'name', 'Bleepbleeps (United Kingdom)'),
(81455, 67935, 'en', 'name', 'Korean Otological Society'),
(81456, 67935, 'ko', 'name', 'ėŒ€ķ•œģ“ź³¼ķ•™ķšŒ'),
(81457, 67936, 'en', 'name', 'Historians Against Slavery'),
(81458, 67937, 'ko', 'name', '파트딠'),
(81459, 67937, 'no_lang_code', 'name', 'Partron (South Korea)'),
(81460, 67938, 'no_lang_code', 'name', 'Guizhou Winstar Hydraulic Transmission Machinery (China)'),
(81461, 67938, 'zh', 'name', 'č“µå·žå‡Æę˜Ÿę¶²åŠ›ä¼ åŠØęœŗę¢°ęœ‰é™å…¬åø'),
(81462, 67939, 'en', 'name', 'Active Aging Canada'),
(81463, 67940, 'en', 'name', 'Korean International Maritime Law Association'),
(81464, 67940, 'ko', 'name', 'ķ•œźµ­ķ•“ģ‚¬ė²•ķ•™ķšŒ'),
(81465, 67941, 'no_lang_code', 'name', 'ANGA Mechanical Seals (Poland)'),
(81466, 67941, 'pl', 'name', 'ANGA Uszczelnienia Mechaniczne'),
(81467, 67942, 'en', 'name', 'Kahnawake Education Center'),
(81468, 67943, 'en', 'name', 'Berkeley-Charleston-Dorchester Council of Governments'),
(81469, 67944, 'no_lang_code', 'name', 'Celiko (Poland)'),
(81470, 67945, 'no_lang_code', 'name', 'CliniRx (India)'),
(81471, 67946, 'no_lang_code', 'name', '3DX-Ray (United Kingdom)'),
(81472, 67947, 'en', 'name', 'Korean Society of Mathematical Education'),
(81473, 67947, 'ko', 'name', 'ģ‚¬ė‹Øė²•ģø ķ•œźµ­ģˆ˜ķ•™źµģœ”ķ•™ķšŒ ģ •ź“€'),
(81474, 67948, 'no_lang_code', 'name', 'Pixelworks (China)'),
(81475, 67949, 'en', 'name', 'Research Institute of Semiconductor Devices'),
(81476, 67949, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŠ¾Š»ŃƒŠæŃ€Š¾Š²Š¾Š“Š½ŠøŠŗŠ¾Š²Ń‹Ń… приборов'),
(81477, 67950, 'en', 'name', 'Uttarakhand Ayurved University'),
(81478, 67951, 'fr', 'name', 'Certifer'),
(81479, 67952, 'pt', 'name', 'Fundace, Fundação para Pesquisa e Desenvolvimento da Administração, Contabilidade e Economia'),
(81480, 67953, 'no_lang_code', 'name', 'ASD Technology (China)'),
(81481, 67954, 'no_lang_code', 'name', 'Supermicro (United States)'),
(81482, 67955, 'no_lang_code', 'name', '22q11 Ireland'),
(81483, 67956, 'no_lang_code', 'name', 'BTM Cluster (Poland)'),
(81484, 67957, 'no_lang_code', 'name', 'Celbius (United Kingdom)'),
(81485, 67958, 'en', 'name', 'The Sociolinguistic Society of Korea'),
(81486, 67958, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ ģ–øģ–“ ķ•™ķšŒ'),
(81487, 67959, 'en', 'name', 'The Korean Society of Modern Chinese Literature'),
(81488, 67959, 'ko', 'name', 'ķ•œźµ­ģ¤‘źµ­ķ˜„ėŒ€ė¬øķ•™ķ•™ķšŒ'),
(81489, 67960, 'en', 'name', 'Hopewell Fund'),
(81490, 67961, 'no_lang_code', 'name', 'Johnson Electric (China)'),
(81491, 67961, 'zh', 'name', 'å¾·ę˜Œé›»ę©ŸęŽ§č‚”ęœ‰é™å…¬åø'),
(81492, 67962, 'no_lang_code', 'name', 'Claims (India)'),
(81493, 67963, 'no_lang_code', 'name', 'Syneos Health (India)'),
(81494, 67964, 'en', 'name', 'Irish Penal Reform Trust'),
(81495, 67965, 'no_lang_code', 'name', 'Scientific Research Institute of Marine Systems (Russia)'),
(81496, 67965, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ морских систем'),
(81497, 67966, 'en', 'name', 'Korean Technical Management Institute'),
(81498, 67966, 'ko', 'name', 'ķ•œźµ­źø°ģˆ ź²½ģ˜ģ—°źµ¬ģ›'),
(81499, 67967, 'en', 'name', 'Desh Bhagat Ayurvedic College and Hospital'),
(81500, 67968, 'no_lang_code', 'name', 'Cutting & Wear (United Kingdom)'),
(81501, 67969, 'en', 'name', 'Reformed Graduate University'),
(81502, 67970, 'no_lang_code', 'name', 'Sky (United Kingdom)'),
(81503, 67971, 'no_lang_code', 'name', 'Verint Systems (United States)'),
(81504, 67972, 'no_lang_code', 'name', 'Breathing Buildings (United Kingdom)'),
(81505, 67973, 'ko', 'name', 'ģ•„ģ“ķ”¼ź·øė£¹'),
(81506, 67973, 'no_lang_code', 'name', 'Innovation Performance Group (South Korea)'),
(81507, 67974, 'lt', 'name', 'Jonavos Rajono Savivaldybė'),
(81508, 67975, 'en', 'name', 'Research Institute of Comprehensive Exploitation of Mineral Resources'),
(81509, 67975, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем комплексного Š¾ŃŠ²Š¾ŠµŠ½ŠøŃ неГр Š ŠŠ'),
(81510, 67976, 'no_lang_code', 'name', 'Impression Technologies (United Kingdom)'),
(81511, 67977, 'no_lang_code', 'name', 'AiSoft Technology (China)'),
(81512, 67978, 'fr', 'name', 'Institut FranƧais de SƩoul'),
(81513, 67979, 'en', 'name', 'The History of Korean Society'),
(81514, 67979, 'ko', 'name', 'ėŒ€ģ¤‘ģ„œģ‚¬ķ•™ķšŒ'),
(81515, 67980, 'en', 'name', 'National Aboriginal Diabetes Association'),
(81516, 67980, 'fr', 'name', 'Association Nationale Autochtone du DiabĆØte'),
(81517, 67981, 'no_lang_code', 'name', 'Emag Serwis (Poland)'),
(81518, 67982, 'en', 'name', 'Art of Problem Solving Initiative'),
(81519, 67983, 'no_lang_code', 'name', 'Geologorazvedka (Russia)'),
(81520, 67983, 'ru', 'name', 'ГеологоразвеГка'),
(81521, 67984, 'en', 'name', 'Blackrock Castle Observatory'),
(81522, 67985, 'de', 'name', 'Bundesministerium für Justiz'),
(81523, 67985, 'en', 'name', 'Federal Ministry of Justice'),
(81524, 67986, 'en', 'name', 'Shanghai Tongji Urban Planning and Design Institute'),
(81525, 67986, 'zh', 'name', 'äøŠęµ·åŒęµŽåŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢åœØåŒ'),
(81526, 67987, 'bs', 'name', 'Institut ekonomskih nauka'),
(81527, 67987, 'en', 'name', 'Institute of Economic Sciences'),
(81528, 67988, 'en', 'name', 'French Community Commission'),
(81529, 67988, 'nl', 'name', 'Commission communautaire franƧaise'),
(81530, 67989, 'no_lang_code', 'name', 'GeneHarbor (China)'),
(81531, 67990, 'en', 'name', 'Community Action for Safe Alternatives'),
(81532, 67991, 'de', 'name', 'Institut für Soziale Infrastruktur'),
(81533, 67992, 'en', 'name', 'Commonwealth Secretariat'),
(81534, 67993, 'no_lang_code', 'name', 'Retraction (China)'),
(81535, 67994, 'no_lang_code', 'name', 'Diagnostic Sonar (United Kingdom)'),
(81536, 67995, 'en', 'name', 'Services Australia'),
(81537, 67996, 'en', 'name', 'The Caspian Scientific Research Institute of Arid Aarming'),
(81538, 67996, 'ru', 'name', 'ŠŸŃ€ŠøŠŗŠ°ŃŠæŠøŠ¹ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ариГного Š·ŠµŠ¼Š»ŠµŠ“ŠµŠ»ŠøŃ'),
(81539, 67997, 'no_lang_code', 'name', 'CN Bio Innovations (United Kingdom)'),
(81540, 67998, 'no_lang_code', 'name', 'China Railway Construction Corporation (China)'),
(81541, 67998, 'zh', 'name', 'äø­å›½é“č·Æå»ŗč®¾ę€»å…¬åø'),
(81542, 67999, 'no_lang_code', 'name', 'PeopleBio (South Korea)'),
(81543, 68000, 'no_lang_code', 'name', 'Nubia Technology (China)'),
(81544, 68000, 'zh', 'name', 'åŠŖęÆ”äŗžęŠ€č”“ęœ‰é™å…¬åø'),
(81545, 68001, 'no_lang_code', 'name', 'Amethyst Research (United Kingdom)'),
(81546, 68002, 'en', 'name', 'Chungbuk Provincial College'),
(81547, 68002, 'ko', 'name', 'ģ¶©ė¶ė„ė¦½ėŒ€ķ•™'),
(81548, 68003, 'no_lang_code', 'name', 'Advanced Blast & Ballistic Systems (United Kingdom)'),
(81549, 68004, 'en', 'name', 'Education and Early Childhood Development'),
(81550, 68005, 'no_lang_code', 'name', 'Mind the Gap Films (Ireland)'),
(81551, 68006, 'en', 'name', 'Free Legal Advice Centres'),
(81552, 68007, 'ko', 'name', 'ź²Œėž€ķ‹°'),
(81553, 68007, 'no_lang_code', 'name', 'Geranti (South Korea)'),
(81554, 68008, 'no_lang_code', 'name', 'Yelp (United States)'),
(81555, 68009, 'no_lang_code', 'name', 'Roszheldorproject (Russia)'),
(81556, 68009, 'ru', 'name', 'РосжелГорпроект'),
(81557, 68010, 'en', 'name', 'Cardiff Tourist Information Centre'),
(81558, 68011, 'ga', 'name', 'Ɓiseanna Tacaƭochta'),
(81559, 68012, 'en', 'name', 'Arizona Secretary of State''s Office'),
(81560, 68013, 'en', 'name', 'The Korean Social Security Association'),
(81561, 68013, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ ė³“ģž„ ķ˜‘ķšŒ'),
(81562, 68014, 'no_lang_code', 'name', 'C-Tex (United Kingdom)'),
(81563, 68015, 'no_lang_code', 'name', 'Tianjin Energy Investment Group (China)'),
(81564, 68015, 'zh', 'name', 'å¤©ę“„čƒ½ęŗęŠ•čµ„é›†å›¢ęœ‰é™å…¬åø'),
(81565, 68016, 'no_lang_code', 'name', 'Interplastik (Poland)'),
(81566, 68017, 'en', 'name', 'Aurous HealthCare'),
(81567, 68018, 'en', 'name', 'Bahrain Center for Strategic International and Energy Studies'),
(81568, 68019, 'no_lang_code', 'name', 'Campbell Soup (United States)'),
(81569, 68020, 'en', 'name', 'Federal Scientific Center of Physical Culture and Sports'),
(81570, 68020, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Физической ŠšŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ И Дпорта'),
(81571, 68021, 'no_lang_code', 'name', 'Shenyang Academy of Environmental Sciences (China)'),
(81572, 68021, 'zh', 'name', 'ę²ˆé˜³ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(81573, 68022, 'en', 'name', 'Shanghai Industrial Technology Institute'),
(81574, 68022, 'zh', 'name', 'äøŠęµ·å·„äøšęŠ€ęœÆå­¦é™¢'),
(81575, 68023, 'no_lang_code', 'name', 'Medzone Healthcare (China)'),
(81576, 68024, 'en', 'name', 'Multiple Sclerosis Society of Ireland'),
(81577, 68025, 'no_lang_code', 'name', 'Norbain (United Kingdom)'),
(81578, 68026, 'en', 'name', 'The Korean Folklore Society'),
(81579, 68026, 'ko', 'name', 'ķ•œźµ­ ėÆ¼ģ† ķ•™ķšŒ'),
(81580, 68027, 'no_lang_code', 'name', 'Parameter Space (Ireland)'),
(81581, 68028, 'no_lang_code', 'name', 'China Telecom (China)'),
(81582, 68028, 'zh', 'name', '中国电俔'),
(81583, 68029, 'bn', 'name', 'ą¦°ą¦æą¦Ŗą§ą¦°ą§‹ą¦”ą¦¾ą¦•ą¦Ÿą¦æą¦­ মেঔিসিন ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(81584, 68029, 'en', 'name', 'Institute of Reproductive Medicine'),
(81585, 68030, 'en', 'name', 'Institute for Community Living'),
(81586, 68031, 'bg', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на Š²ŃŠŠ½ŃˆŠ½ŠøŃ‚е работи'),
(81587, 68031, 'en', 'name', 'Ministry of Foreign Affairs'),
(81588, 68032, 'en', 'name', 'Dongbang Culture University'),
(81589, 68032, 'ko', 'name', 'ė™ė°© 문화 ėŒ€ķ•™źµ'),
(81590, 68033, 'en', 'name', 'Collaborative Innovation Center of Quantum Matter'),
(81591, 68033, 'zh', 'name', 'é‡å­ē‰©č“Øē§‘å­¦ååŒåˆ›ę–°äø­åæƒ'),
(81592, 68034, 'no_lang_code', 'name', 'Alltech (Ireland)'),
(81593, 68035, 'no_lang_code', 'name', 'Well Synergy International (China)'),
(81594, 68036, 'en', 'name', 'Ministry of Science and Technology'),
(81595, 68036, 'lo', 'name', 'ąŗąŗ°ąŗŠąŗ§ąŗ‡ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ąŗŖąŗ²ąŗ” ą»ąŗ„ąŗ°ą»€ąŗ•ąŗ±ąŗą»‚ąŗ™ą»‚ąŗ„ąŗŠąŗµ'),
(81596, 68037, 'no_lang_code', 'name', 'Ferrovial (United Kingdom)'),
(81597, 68038, 'en', 'name', 'The Piegan Institute'),
(81598, 68039, 'en', 'name', 'National Disability Authority'),
(81599, 68040, 'en', 'name', 'Ministry for Health'),
(81600, 68041, 'en', 'name', 'BiofoodCRO (South Korea)'),
(81601, 68041, 'ko', 'name', 'ė°”ģ“ģ˜¤ķ‘øė“œ CRO'),
(81602, 68042, 'hi', 'name', 'ą¤œą¤æą¤‚ą¤¦ą¤² ą¤Øą„‡ą¤šą¤°ą¤šą¤° ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ'),
(81603, 68042, 'no_lang_code', 'name', 'Jindal Naturecure Institute'),
(81604, 68043, 'no_lang_code', 'name', 'Arbro Pharmaceuticals (India)'),
(81605, 68044, 'ko', 'name', 'ķ•œźµ­ė°”ģ“ģ˜¤ģ†”ė£Øģ…˜'),
(81606, 68044, 'no_lang_code', 'name', 'Korea Bio Solution (South Korea)'),
(81607, 68045, 'no_lang_code', 'name', 'Torrent Pharma (India)'),
(81608, 68046, 'en', 'name', 'Mental Health and Recovery Services Board of Seneca, Sandusky and Wyandot Counties'),
(81609, 68047, 'en', 'name', 'Academy of Philosophy'),
(81610, 68047, 'ko', 'name', 'ģ² ķ•™ ģ•„ģ¹“ė°ėÆø'),
(81611, 68048, 'en', 'name', 'The Korean Association of Literature and Film'),
(81612, 68048, 'ko', 'name', 'ķ•œźµ­ 문학 ģ˜ķ™” ķ•™ķšŒ'),
(81613, 68049, 'no_lang_code', 'name', 'Ironfly Technologies (China)'),
(81614, 68050, 'en', 'name', 'Asian Comparative Folklore Society'),
(81615, 68050, 'ko', 'name', 'ģ•„ģ‹œģ•„ 비교 민간 ģ‚¬ķšŒ'),
(81616, 68051, 'en', 'name', 'Hong Kong Green Building Council'),
(81617, 68051, 'zh', 'name', 'é¦™ęøÆē¶ č‰²å»ŗēÆ‰č­°ęœƒ'),
(81618, 68052, 'en', 'name', 'SDM College of Medical Science and Hospital'),
(81619, 68052, 'kn', 'name', 'ą²Žą²øą³ ಔಿ ą²Žą²®ą³ ą²µą³ˆą²¦ą³ą²Æą²•ą³€ą²Æ ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(81620, 68053, 'en', 'name', 'Donggwon Science and Technology University'),
(81621, 68053, 'ko', 'name', 'ė™ģ›ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(81622, 68054, 'en', 'name', 'Suzhou Academy of Agricultural Sciences'),
(81623, 68054, 'zh', 'name', 'č‹å·žåø‚å†œäøšē§‘å­¦é™¢'),
(81624, 68055, 'no_lang_code', 'name', 'MAGJ Hospital'),
(81625, 68056, 'en', 'name', 'Hong Kong Far Infrared Rays Association'),
(81626, 68056, 'zh', 'name', 'é¦™ęøÆé ē“…å¤–ē·šå”ęœƒ'),
(81627, 68057, 'en', 'name', 'Rural Payments Agency'),
(81628, 68058, 'no_lang_code', 'name', 'It’s Fresh (United Kingdom)'),
(81629, 68059, 'en', 'name', 'International Slavery Museum'),
(81630, 68060, 'en', 'name', 'Stockholm Environment Institute'),
(81631, 68061, 'fr', 'name', 'Agence France-Presse'),
(81632, 68062, 'en', 'name', 'Amnesty International'),
(81633, 68063, 'en', 'name', 'Coalition on Violence Against Women'),
(81634, 68064, 'no_lang_code', 'name', 'Advanced Innovative Engineering (United Kingdom)'),
(81635, 68065, 'en', 'name', 'All-Russian Research and Design Institute of Nuclear and Power Engineering'),
(81636, 68065, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ атомного Šø ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(81637, 68066, 'en', 'name', 'Migrant Rights Centre Ireland'),
(81638, 68066, 'ga', 'name', 'Ionad Cearta Imirceach na hƉireann'),
(81639, 68067, 'no_lang_code', 'name', 'Future Voice System (Poland)'),
(81640, 68068, 'no_lang_code', 'name', 'Little Swan (China)'),
(81641, 68069, 'en', 'name', 'Sichuan Institute of Building Research'),
(81642, 68069, 'zh', 'name', 'å››å·ēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(81643, 68070, 'no_lang_code', 'name', 'Fotile (China)'),
(81644, 68070, 'zh', 'name', '方太'),
(81645, 68071, 'no_lang_code', 'name', 'Jiangsu Gaoke Applied Science Research Institute (China)'),
(81646, 68071, 'zh', 'name', 'ę±Ÿč‹é«˜ē§‘åŗ”ē”Øē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(81647, 68072, 'it', 'name', 'Institute of Applied Mathematics and Information Technologies, Istituto di Matematica Applicata e Tecnologie Informatiche'),
(81648, 68073, 'en', 'name', 'RMIT Europe'),
(81649, 68074, 'en', 'name', 'Pecan Street'),
(81650, 68075, 'no_lang_code', 'name', 'NTST Forestry Machine Manufacture Installation (China)'),
(81651, 68075, 'zh', 'name', 'NTST ęž—äøšęœŗę¢°åˆ¶é€ å®‰č£…'),
(81652, 68076, 'en', 'name', 'Medilink East Midlands'),
(81653, 68077, 'no_lang_code', 'name', 'Crop Intellect (United Kingdom)'),
(81654, 68078, 'en', 'name', 'Wuxi Wind Power Design and Research Institute'),
(81655, 68078, 'zh', 'name', 'ę— é””é£Žē”µč®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(81656, 68079, 'en', 'name', 'Research and Design Institute of the Equipment for Tyre Industry'),
(81657, 68079, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¾Š±Š¾Ń€ŃƒŠ“Š¾Š²Š°Š½ŠøŃŽ Š“Š»Ń шинной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(81658, 68080, 'en', 'name', 'Geological Exploration Technology Institute of Jiangsu Province'),
(81659, 68080, 'zh', 'name', 'åœ°č“Øå‹˜ęŸ„ęŠ€ęœÆé™¢'),
(81660, 68081, 'en', 'name', 'Greater Portland Council of Governments'),
(81661, 68082, 'no_lang_code', 'name', 'eNano Health (China)'),
(81662, 68083, 'en', 'name', 'Moscow Scientific-Research Television Institute'),
(81663, 68083, 'ru', 'name', 'Московский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ телевизионный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(81664, 68084, 'no_lang_code', 'name', 'Optimum Nano (China)'),
(81665, 68085, 'no_lang_code', 'name', 'MSN Laboratories (India)'),
(81666, 68086, 'no_lang_code', 'name', 'IrkutskNIIHimmash (Russia)'),
(81667, 68087, 'de', 'name', 'Niedersächsisches Ministerium für Inneres und Sport'),
(81668, 68088, 'ko', 'name', 'ģ²­ķ™”ė©”ė””ķŒŒģ›Œ(주)'),
(81669, 68088, 'no_lang_code', 'name', 'Chunghwa Medipower (South Korea)'),
(81670, 68089, 'ko', 'name', 'ź±“ģ¼ģ œģ•½'),
(81671, 68089, 'no_lang_code', 'name', 'Kuhnil Pharma (South Korea)'),
(81672, 68090, 'en', 'name', 'Zhangzhou Vocational and Technical College'),
(81673, 68090, 'zh', 'name', 'ę¼³å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(81674, 68091, 'no_lang_code', 'name', 'Cargotec (Finland)'),
(81675, 68092, 'en', 'name', 'Sanjivani Super Speciality Hospitals'),
(81676, 68093, 'en', 'name', 'Guangzhou Quality Supervision, Inspection and Research Institute'),
(81677, 68093, 'zh', 'name', 'å¹æå·žč“Øé‡ē›‘ē£ę£€ęµ‹ē ”ē©¶é™¢'),
(81678, 68094, 'en', 'name', 'Korean Association of Family Therapy'),
(81679, 68095, 'en', 'name', 'New Zealand Christians in Science'),
(81680, 68095, 'mi', 'name', 'Te Kāhui Whakapono ki Nga Kaipūtaiao o Te Motu'),
(81681, 68096, 'en', 'name', 'RAFT'),
(81682, 68097, 'de', 'name', 'Bundesverband der SelbstƤndigen Deutscher Gewerbeverband'),
(81683, 68098, 'en', 'name', 'Coastal Watershed Council'),
(81684, 68099, 'no_lang_code', 'name', 'Zillow Group (United States)'),
(81685, 68100, 'no_lang_code', 'name', 'Baxendale (United Kingdom)'),
(81686, 68101, 'en', 'name', 'Canadian Institute of Child Health'),
(81687, 68102, 'de', 'name', 'Luftfahrt-Bundesamt'),
(81688, 68102, 'en', 'name', 'Federal Aviation Office'),
(81689, 68103, 'en', 'name', 'The Audience Agency'),
(81690, 68104, 'fr', 'name', 'Association des Doyennes et des Doyens des Ɖtudes SupĆ©rieures au QuĆ©bec'),
(81691, 68105, 'en', 'name', 'Xinjiang Academy of Forestry'),
(81692, 68105, 'zh', 'name', '꜉ ę–°ē–†ęž—äøšē§‘å­¦é™¢'),
(81693, 68106, 'no_lang_code', 'name', 'CreaPhys (Germany)'),
(81694, 68107, 'en', 'name', 'Rainbow Health Ontario'),
(81695, 68107, 'fr', 'name', 'SantƩ arc-en-ciel Ontario'),
(81696, 68108, 'no_lang_code', 'name', 'Dem Dx (United Kingdom)'),
(81697, 68109, 'en', 'name', 'Canadian Dental Hygienists Association'),
(81698, 68110, 'da', 'name', 'Finansministeriet'),
(81699, 68110, 'en', 'name', 'Danish Ministry of Finance'),
(81700, 68111, 'en', 'name', 'Korean Historical Folklore Institute'),
(81701, 68111, 'ko', 'name', 'ķ•œźµ­ģ—­ģ‚¬ėÆ¼ģ†ķ•™ķšŒ'),
(81702, 68112, 'en', 'name', 'Hong Kong R&D Centre for Logistics and Supply Chain Management Enabling Technologies'),
(81703, 68112, 'zh', 'name', 'é¦™ęøÆē‰©ęµåŠä¾›åŗ”é“¾ē®”ē†åŗ”ē”ØęŠ€ęœÆē ”å‘äø­åæƒ'),
(81704, 68113, 'no_lang_code', 'name', 'Housing Quality Network (United Kingdom)'),
(81705, 68114, 'en', 'name', 'Pyatigorsk State Scientific Research Institute of Balneology'),
(81706, 68114, 'ru', 'name', 'ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠø'),
(81707, 68115, 'no_lang_code', 'name', 'ASM Pacific Technology (China)'),
(81708, 68116, 'no_lang_code', 'name', 'Libra Trading Company (Qatar)'),
(81709, 68117, 'en', 'name', 'International Association of Korean Literary and Cultural Studies'),
(81710, 68117, 'ko', 'name', 'źµ­ģ œķ•œźµ­ė¬øķ•™ė¬øķ™”ķ•™ķšŒ'),
(81711, 68118, 'no_lang_code', 'name', 'Selekt Výskumný a Šľachtiteľský Ústav (Slovakia)'),
(81712, 68119, 'ko', 'name', 'ė°”ģ“ģ˜¤ ģ—ė¼'),
(81713, 68119, 'no_lang_code', 'name', 'Biocera (South Korea)'),
(81714, 68120, 'en', 'name', 'Atlantic Arc Commission'),
(81715, 68121, 'no_lang_code', 'name', 'RedT Energy Storage (United Kingdom)'),
(81716, 68122, 'da', 'name', 'Erhvervsministeriets opgave'),
(81717, 68122, 'en', 'name', 'Danish Ministry of Industry, Business and Financial Affairs'),
(81718, 68123, 'en', 'name', 'CAG Consultants'),
(81719, 68124, 'no_lang_code', 'name', 'PharmacoGenetics (China)'),
(81720, 68125, 'en', 'name', 'Ministry of Construction and Physical Planning'),
(81721, 68125, 'hr', 'name', 'Ministarstvo graditeljstva i prostornoga uređenja'),
(81722, 68126, 'es', 'name', 'Asociación de Comunidades Forestales de Peten'),
(81723, 68127, 'no_lang_code', 'name', 'KLE Ayur World'),
(81724, 68128, 'en', 'name', 'Jeonnam Bioindustry Foundation'),
(81725, 68128, 'ko', 'name', '전남 ė°”ģ“ģ˜¤ ģ‚°ģ—… ģž¬ė‹Ø'),
(81726, 68129, 'it', 'name', 'Agenzia Energetica Della Provincia Di Livorno'),
(81727, 68130, 'no_lang_code', 'name', 'IDT Biologika (Germany)'),
(81728, 68131, 'en', 'name', 'International Institute for Mesopotamian Area Studies'),
(81729, 68132, 'en', 'name', 'State Research Center for Dermatovenereology and Cosmetology'),
(81730, 68133, 'en', 'name', 'Dr. BMN College of Home Science'),
(81731, 68133, 'hi', 'name', 'Dr. BMN ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ़ ą¤¹ą„‹ą¤® साइंस'),
(81732, 68134, 'en', 'name', 'Korea Petroleum Quality & Distribution Authority'),
(81733, 68134, 'ko', 'name', 'ķ•œźµ­ ģ„ģœ  ķ’ˆģ§ˆ ꓀리국'),
(81734, 68135, 'en', 'name', 'Glamorgan Archives'),
(81735, 68136, 'no_lang_code', 'name', 'Jilin Electric Power Research Institute (China)'),
(81736, 68136, 'zh', 'name', 'å‰ęž—ēœē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(81737, 68137, 'en', 'name', 'Tianjin Institute of Metrological Supervision Testing'),
(81738, 68137, 'zh', 'name', 'å¤©ę“„č®”é‡ē›‘ē£ę£€ęµ‹ē§‘å­¦ē ”ē©¶é™¢'),
(81739, 68138, 'ko', 'name', 'ķ•œźµ­ 칓본'),
(81740, 68138, 'no_lang_code', 'name', 'Hankuk Carbon (South Korea)'),
(81741, 68139, 'en', 'name', 'Slovak Governance Institute'),
(81742, 68140, 'en', 'name', 'Ottawa Public Health'),
(81743, 68140, 'fr', 'name', 'SantƩ Publique Ottawa'),
(81744, 68141, 'en', 'name', 'Digestive CARE'),
(81745, 68142, 'no_lang_code', 'name', 'Edgewater Federal Solutions (United States)'),
(81746, 68143, 'no_lang_code', 'name', 'China Communications Construction Company (China)'),
(81747, 68143, 'zh', 'name', 'äø­å›½äŗ¤é€šå»ŗč®¾å…¬åø'),
(81748, 68144, 'no_lang_code', 'name', 'NCSOFT (South Korea)'),
(81749, 68145, 'no_lang_code', 'name', 'Guangdong Taibao Medical Technology (China)'),
(81750, 68145, 'zh', 'name', 'å¹æäøœę³°å®åŒ»ē–—ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(81751, 68146, 'no_lang_code', 'name', 'Nizhny Novgorod Research Institute of Radio Engineering (Russia)'),
(81752, 68146, 'ru', 'name', 'Ā«Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-произвоГственный центр Ā«ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиотехники»'),
(81753, 68147, 'en', 'name', 'National Women''s Studies Association'),
(81754, 68148, 'fr', 'name', 'AcadƩmie des Sciences et des Technologies d''AlgƩrie'),
(81755, 68149, 'no_lang_code', 'name', 'Stempeutics (India)'),
(81756, 68150, 'en', 'name', 'The Genetics Society of Korea'),
(81757, 68150, 'ko', 'name', 'ķ•œźµ­ģœ ģ „ķ•™ķšŒ'),
(81758, 68151, 'no_lang_code', 'name', 'Lishen (China)'),
(81759, 68151, 'zh', 'name', 'å¤©ę“„åŠ›ē„žē”µę± č‚”ä»½ęœ‰é™å…¬åø'),
(81760, 68152, 'en', 'name', 'Korean Christian Society'),
(81761, 68152, 'ko', 'name', 'ķ•œźµ­źø°ė…źµķ•™ķšŒ'),
(81762, 68153, 'en', 'name', 'Research Institute "Agat"'),
(81763, 68154, 'no_lang_code', 'name', 'AAC Technologies (China)'),
(81764, 68155, 'en', 'name', 'Scientific and Production Association. S.A. Lavochkin'),
(81765, 68156, 'en', 'name', '3G''S Development Trust'),
(81766, 68157, 'fr', 'name', 'Agence pour l''Observation de la RƩunion'),
(81767, 68158, 'en', 'name', 'Cloyne Diocesan Youth Services'),
(81768, 68159, 'no_lang_code', 'name', 'BC World Pharm (South Korea)'),
(81769, 68160, 'fr', 'name', 'MinistĆØre de l''Agriculture, de l''Elevage et de l''Hydraulique'),
(81770, 68161, 'en', 'name', 'All Nations Hope Network'),
(81771, 68162, 'en', 'name', 'Maryland-National Capital Park and Planning Commission'),
(81772, 68163, 'en', 'name', 'Xi''an Aeronautical University'),
(81773, 68163, 'zh', 'name', 'č„æå®‰čˆŖē©ŗå­¦é™¢'),
(81774, 68164, 'no_lang_code', 'name', 'United Imaging Healthcare (China)'),
(81775, 68165, 'en', 'name', 'Korean Philosophical Association'),
(81776, 68165, 'ko', 'name', 'ķ•œźµ­ ģ² ķ•™ķšŒ'),
(81777, 68166, 'ko', 'name', 'ģ„øģ¢…ģ—°źµ¬ģ†Œ'),
(81778, 68166, 'no_lang_code', 'name', 'Sejong Institute'),
(81779, 68167, 'no_lang_code', 'name', 'Radica Systems (China)'),
(81780, 68168, 'en', 'name', 'The Korean Association for Mongolian Studies'),
(81781, 68168, 'ko', 'name', 'ķ•œźµ­ 몽골 연구 ķ˜‘ķšŒ'),
(81782, 68169, 'no_lang_code', 'name', 'Lanzhou Nonferrous Metals Design and Research Institute (China)'),
(81783, 68170, 'en', 'name', 'Korea Integrated Logistics Association'),
(81784, 68170, 'ko', 'name', 'ķ•œźµ­ķ†µķ•©ė¬¼ė„˜ķ˜‘ķšŒ'),
(81785, 68171, 'no_lang_code', 'name', 'CrystecPharma (United Kingdom)'),
(81786, 68172, 'no_lang_code', 'name', 'RediCare (Ireland)'),
(81787, 68173, 'ko', 'name', '암웨'),
(81788, 68173, 'no_lang_code', 'name', 'Amway (South Korea)'),
(81789, 68174, 'no_lang_code', 'name', 'Harsco (United Kingdom)'),
(81790, 68175, 'no_lang_code', 'name', 'Chungnam Group (China)'),
(81791, 68175, 'zh', 'name', 'åæ å—é›†å›¢'),
(81792, 68176, 'no_lang_code', 'name', 'Hourglass Group (United Kingdom)'),
(81793, 68177, 'no_lang_code', 'name', 'Benchmark Animal Health (United Kingdom)'),
(81794, 68178, 'en', 'name', 'Japanese Language & Culture Association of Korea'),
(81795, 68178, 'ko', 'name', 'ģ¼ė³øģ–øģ–“ė¬øķ™”ķ•™ķšŒė„¼'),
(81796, 68179, 'en', 'name', 'Siberian Research Institute of Geology, Geophysics and Mineral Resources'),
(81797, 68179, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Геологии, Геофизики Šø ŠœŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ сырья'),
(81798, 68180, 'de', 'name', 'Bundesverband SekundƤrrohstoffe und Entsorgung'),
(81799, 68181, 'de', 'name', 'Der Ɩsterreichische Weinbauverband'),
(81800, 68182, 'no_lang_code', 'name', 'Fresenius Kabi (China)'),
(81801, 68183, 'en', 'name', 'Crofting Commission'),
(81802, 68183, 'gd', 'name', 'Coimisean nan Croitearan'),
(81803, 68184, 'pt', 'name', 'Direcção dos Serviços da Reforma Jurídica e do Direito Internacional'),
(81804, 68185, 'en', 'name', 'Alaska Native Health Board'),
(81805, 68186, 'no_lang_code', 'name', 'LinkPowerTechnology (China)'),
(81806, 68187, 'ko', 'name', '(주)제욱'),
(81807, 68187, 'no_lang_code', 'name', 'Jeuk (South Korea)'),
(81808, 68188, 'bs', 'name', 'Direkcija za vodne puteve Plovput'),
(81809, 68188, 'en', 'name', 'Directorate for Inland Waterways'),
(81810, 68188, 'sr', 'name', 'Š”ŠøŃ€ŠµŠŗŃ†ŠøŃ˜Š° за воГне ŠæŃƒŃ‚еве ŠŸŠ»Š¾Š²ŠæŃƒŃ‚'),
(81811, 68189, 'ga', 'name', 'CroĆ­'),
(81812, 68190, 'en', 'name', 'Apollo Hospitals'),
(81813, 68190, 'hi', 'name', 'ą¤…ą¤Ŗą„‹ą¤²ą„‹ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(81814, 68191, 'en', 'name', 'Delaware River Basin Commission'),
(81815, 68192, 'no_lang_code', 'name', 'Osmotica Pharmaceutical (Hungary)'),
(81816, 68193, 'no_lang_code', 'name', 'Blendology (United Kingdom)'),
(81817, 68194, 'de', 'name', 'Bundesverband Freier Radios'),
(81818, 68195, 'en', 'name', 'Foundation for Art and Creative Technology'),
(81819, 68196, 'no_lang_code', 'name', 'Vesuvius (Belgium)'),
(81820, 68197, 'no_lang_code', 'name', 'Jason Medical Holdings (China)'),
(81821, 68197, 'zh', 'name', 'å‚‘ę£®é†«ē™‚ęŽ§č‚”'),
(81822, 68198, 'en', 'name', 'Federation of Hong Kong Industries'),
(81823, 68199, 'en', 'name', 'Capital Enterprise'),
(81824, 68200, 'en', 'name', 'National Cancer Center Hospital East'),
(81825, 68200, 'ja', 'name', 'å›½ē«‹ćŒć‚“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼ę±ē—…é™¢'),
(81826, 68201, 'en', 'name', 'Karnataka Medical Council'),
(81827, 68202, 'no_lang_code', 'name', 'Escort (Poland)'),
(81828, 68203, 'en', 'name', 'New Energy Coalition'),
(81829, 68204, 'no_lang_code', 'name', 'Scientific Research Institute of Parachute Construction (Russia)'),
(81830, 68204, 'ru', 'name', 'ŠŠ˜Š˜ ŠæŠ°Ń€Š°ŃˆŃŽŃ‚Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(81831, 68205, 'ja', 'name', 'JXćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(81832, 68205, 'no_lang_code', 'name', 'JXTG Holdings (Japan)'),
(81833, 68206, 'no_lang_code', 'name', 'Koofy Development (China)'),
(81834, 68207, 'no_lang_code', 'name', 'Beijing Institute of Architectural Design (China)'),
(81835, 68208, 'fr', 'name', 'Ɖcole SupĆ©rieure en Sciences AppliquĆ©es de Tlemcen'),
(81836, 68209, 'en', 'name', 'Centre for Modelling & Simulation'),
(81837, 68210, 'en', 'name', 'Newford Research Institute of Advanced Technology'),
(81838, 68210, 'zh', 'name', 'ēŗ½ē¦å¾·å…ˆčæ›ęŠ€ęœÆē ”ē©¶ę‰€'),
(81839, 68211, 'fr', 'name', 'Laboratoire de Mesure du Carbone 14'),
(81840, 68212, 'en', 'name', 'Korean Society for Indian Philosophy'),
(81841, 68212, 'ko', 'name', 'ģøė„ģ² ķ•™ķšŒ'),
(81842, 68213, 'en', 'name', 'Institution of Chemical Engineers'),
(81843, 68214, 'en', 'name', 'Korean Counseling Association'),
(81844, 68214, 'ko', 'name', 'ķ•œźµ­ģƒė‹“ķ•™ķšŒ'),
(81845, 68215, 'no_lang_code', 'name', 'ICBio (India)'),
(81846, 68216, 'en', 'name', 'National Adult Literacy Agency'),
(81847, 68217, 'no_lang_code', 'name', 'Gravitricity (United Kingdom)'),
(81848, 68218, 'en', 'name', '25th State Research Institute of Chemmotology of the Ministry of Defence of the Russian Federation'),
(81849, 68218, 'ru', 'name', '25-й Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ чехтотологии ŠœŠøŠ½ŠøŃŃ‚ерства обороны Российской ФеГерации'),
(81850, 68219, 'en', 'name', 'All-Russian Rice Research Institute'),
(81851, 68219, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ риса'),
(81852, 68220, 'en', 'name', 'State Environmental Service'),
(81853, 68220, 'lv', 'name', 'Valsts vides dienests'),
(81854, 68221, 'en', 'name', 'National Environment Commission'),
(81855, 68222, 'no_lang_code', 'name', 'Realtek (China)'),
(81856, 68222, 'zh', 'name', 'ē‘žę˜±åŠå°Žé«”č‚”ä»½ęœ‰é™å…¬åø'),
(81857, 68223, 'en', 'name', 'European Foundation for the Improvement of Living and Working Conditions'),
(81858, 68223, 'ga', 'name', 'Fondúireacht Eorpach chun DÔlaí MaireachtÔla agus Oibre a Fheabhsú'),
(81859, 68224, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ΕκπαιΓευτικής Πολιτικής'),
(81860, 68224, 'en', 'name', 'Institute of Educational Policy'),
(81861, 68225, 'no_lang_code', 'name', 'Ruselprom (Russia)'),
(81862, 68226, 'en', 'name', 'Wuxi Fuel Injection Equipment Research Institute'),
(81863, 68226, 'zh', 'name', 'äø­å›½ē¬¬äø€ę±½č½¦č‚”ä»½ęœ‰é™å…¬åøę— é””ę²¹ę³µę²¹å˜“ē ”ē©¶ę‰€'),
(81864, 68227, 'no_lang_code', 'name', 'Qatalum (Qatar)'),
(81865, 68228, 'en', 'name', 'Qingdao Institute of Animal Husbandry and Veterinary Medicine'),
(81866, 68228, 'zh', 'name', 'é’å²›åø‚ē•œē‰§å…½åŒ»ē ”ē©¶ę‰€'),
(81867, 68229, 'no_lang_code', 'name', 'SFC (South Korea)'),
(81868, 68230, 'en', 'name', 'Yangzhou Vocational University'),
(81869, 68230, 'zh', 'name', 'ę‰¬å·žåø‚čŒäøšå¤§å­¦'),
(81870, 68231, 'ko', 'name', 'ģ—ģ½”ģ„¼ģŠ¤'),
(81871, 68231, 'no_lang_code', 'name', 'Ecosense (South Korea)'),
(81872, 68232, 'en', 'name', 'The Monuments Board of the Slovak Republic'),
(81873, 68232, 'sk', 'name', 'Pamiatkový úrad Slovenskej republiky'),
(81874, 68233, 'no_lang_code', 'name', 'Eozone Group (United Kingdom)'),
(81875, 68234, 'es', 'name', 'Instituto de Medicina Genómica'),
(81876, 68235, 'en', 'name', 'Laser Research Institute'),
(81877, 68235, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢ęæ€å…‰ē ”ē©¶ę‰€'),
(81878, 68236, 'no_lang_code', 'name', 'Tech Dragon Limited (China)'),
(81879, 68237, 'no_lang_code', 'name', 'Zvezda (Russia)'),
(81880, 68237, 'ru', 'name', 'ЗвезГа'),
(81881, 68238, 'ko', 'name', 'ģ›ź“‘ė””ģ§€ķ„øėŒ€ķ•™źµ'),
(81882, 68238, 'no_lang_code', 'name', 'Wonkwang Digital University'),
(81883, 68239, 'en', 'name', 'Idaho State Department of Agriculture'),
(81884, 68240, 'en', 'name', 'National Academy of Inventors'),
(81885, 68241, 'en', 'name', 'Cyber University of Korea'),
(81886, 68241, 'ko', 'name', 'ģ‚¬ģ“ė²„ ėŒ€ķ•™źµ'),
(81887, 68242, 'en', 'name', 'YMT Ayurvedic Medical College & Hospital. P.G.Institute'),
(81888, 68243, 'en', 'name', 'Shakhty Scientific Research and Design Coal Institute'),
(81889, 68243, 'ru', 'name', 'Шахтинский ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š£Š³Š¾Š»ŃŒŠ½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(81890, 68244, 'en', 'name', 'The Korean-German Society for the Educational Studies'),
(81891, 68244, 'ko', 'name', 'ķ•œė… 교윔 ķ•™ķšŒ'),
(81892, 68245, 'no_lang_code', 'name', 'Icahn Enterprises (United States)'),
(81893, 68246, 'no_lang_code', 'name', 'Akamai (United States)'),
(81894, 68247, 'bg', 'name', 'ŠŠ³ŠµŠ½Ń†ŠøŃŃ‚Š° за социални анализи'),
(81895, 68247, 'en', 'name', 'Agency for Social Analyses'),
(81896, 68248, 'en', 'name', 'Korean Association of Physical Education and Sport for Girls and Women'),
(81897, 68248, 'ko', 'name', 'ķ•œźµ­ 첓윔 첓윔 ģŠ¤ķ¬ģø  ķ˜‘ķšŒ'),
(81898, 68249, 'en', 'name', 'Chongqing Academy of Forestry'),
(81899, 68249, 'zh', 'name', 'é‡åŗ†ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(81900, 68250, 'ko', 'name', 'ķ•œźµ­ģ•¼ģæ ė„“ķŠø'),
(81901, 68250, 'no_lang_code', 'name', 'Korea Yakult (South Korea)'),
(81902, 68251, 'en', 'name', 'Target Institute of Medical Education & Research'),
(81903, 68251, 'hi', 'name', 'ą¤Ÿą¤¾ą¤°ą„ą¤—ą„‡ą¤Ÿ ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤ą¤œą„‚ą¤•ą„‡ą¤¶ą¤Ø & ą¤°ą¤æą¤øą¤°ą„ą¤š'),
(81904, 68252, 'fr', 'name', 'Aids Moncton'),
(81905, 68253, 'en', 'name', 'Hampshire Constabulary'),
(81906, 68254, 'en', 'name', 'International Fiscal Association Korea'),
(81907, 68254, 'ko', 'name', 'źµ­ģ œģ”°ģ„øķ˜‘ķšŒ'),
(81908, 68255, 'no_lang_code', 'name', 'Cipla (United States)'),
(81909, 68256, 'en', 'name', 'Korean Ethics Education Association'),
(81910, 68256, 'ko', 'name', 'ķ•œźµ­ģœ¤ė¦¬źµģœ”ķ•™ķšŒ'),
(81911, 68257, 'no_lang_code', 'name', 'Fiserv (United States)'),
(81912, 68258, 'bs', 'name', 'Ministarstvo nauke i Tehnologije'),
(81913, 68258, 'en', 'name', 'Ministry of Science and Technology'),
(81914, 68259, 'no_lang_code', 'name', 'Kuca (Poland)'),
(81915, 68260, 'bn', 'name', 'ą¦«ą§‹ą¦°ą§ą¦Ÿą¦æą¦ø হসপিটাল'),
(81916, 68260, 'no_lang_code', 'name', 'Fortis Hospital'),
(81917, 68261, 'no_lang_code', 'name', '2iC (United Kingdom)'),
(81918, 68262, 'en', 'name', 'E-Car Club'),
(81919, 68263, 'ko', 'name', '(주)ģ…€ė£Øė©”ė“œėŠ”'),
(81920, 68263, 'no_lang_code', 'name', 'Cellumed (South Korea)'),
(81921, 68264, 'fr', 'name', 'Agence pour le dƩveloppement de l''emploi'),
(81922, 68265, 'en', 'name', 'Fortis Escorts Hospital'),
(81923, 68265, 'hi', 'name', 'ą¤«ą„‹ą¤°ą„ą¤Ÿą¤æą¤ø ą¤ą¤øą„ą¤•ą„‰ą¤°ą„ą¤Ÿą„ą¤ø ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(81924, 68266, 'ar', 'name', 'اللجنة Ų§Ł„Ų£ŁˆŁ„Ł…ŲØŁŠŲ© Ų§Ł„Ł‚Ų·Ų±ŁŠŲ©ā€Ž'),
(81925, 68266, 'en', 'name', 'Qatar Olympic Committee'),
(81926, 68267, 'no_lang_code', 'name', 'Springer Nature (Switzerland)'),
(81927, 68268, 'en', 'name', 'Korea Institute of Human Resources Development'),
(81928, 68268, 'ko', 'name', 'źµ­ź°€ź³¼ķ•™źø°ģˆ ģøė „ź°œė°œģ›'),
(81929, 68269, 'en', 'name', 'Ministry of Economy of the Republic of Lithuania'),
(81930, 68269, 'lt', 'name', 'Lietuvos Respublikos ūkio ministerija'),
(81931, 68270, 'no_lang_code', 'name', 'Transpharmation (Ireland)'),
(81932, 68271, 'en', 'name', '21st Century Foreign Language Academy'),
(81933, 68271, 'ko', 'name', '21세기 외국얓 학원'),
(81934, 68272, 'no_lang_code', 'name', 'Industrial Light & Magic (United Kingdom)'),
(81935, 68273, 'en', 'name', 'One Earth Designs'),
(81936, 68274, 'en', 'name', 'Institute for Public Policy Research'),
(81937, 68275, 'no_lang_code', 'name', 'Kimal (United Kingdom)'),
(81938, 68276, 'en', 'name', 'Research Institute of Instrument named after V.V. Tikhomirova'),
(81939, 68276, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ Š˜Š‘ŠžŠ ŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ Š˜ŠœŠ•ŠŠ˜ Š’.Š’. Š¢Š˜Š„ŠžŠœŠ˜Š ŠžŠ’Š'),
(81940, 68277, 'en', 'name', 'Korea Tourism Research Association'),
(81941, 68277, 'ko', 'name', 'ķ•œźµ­ź“€ź“‘ģ—°źµ¬ķ•™ķšŒ'),
(81942, 68278, 'en', 'name', 'The Mussar Institute'),
(81943, 68279, 'en', 'name', 'Joel Samson Ruvugo Traders'),
(81944, 68280, 'ko', 'name', '메디 ķ¬ģŠ¤ķŠø'),
(81945, 68280, 'no_lang_code', 'name', 'Medipost (South Korea)'),
(81946, 68281, 'no_lang_code', 'name', 'Scientific and Production Association of Automatics named after Academician N.A.Semikhatov (Russia)'),
(81947, 68281, 'ru', 'name', 'ŠŠŸŠž автоматики имени акаГемика Š. А. Демихатова'),
(81948, 68282, 'en', 'name', 'Manitoba Harm Reduction Network'),
(81949, 68283, 'no_lang_code', 'name', 'Clinipace (South Korea)'),
(81950, 68284, 'en', 'name', 'National Commission on Correctional Health Care'),
(81951, 68285, 'no_lang_code', 'name', 'Meiji (India)'),
(81952, 68286, 'de', 'name', 'Bundesamt für Weinbau'),
(81953, 68287, 'no_lang_code', 'name', 'GP Batteries (China)'),
(81954, 68288, 'en', 'name', 'Gansu Normal University for Nationalities'),
(81955, 68288, 'zh', 'name', 'ē”˜č‚ƒę°‘ę—åøˆčŒƒå­¦é™¢'),
(81956, 68289, 'no_lang_code', 'name', 'Skyworth (China)'),
(81957, 68289, 'zh', 'name', 'åˆ›ē»“'),
(81958, 68290, 'no_lang_code', 'name', 'Polyus Research Institute of M.F.Stelmakh (Russia)'),
(81959, 68291, 'no_lang_code', 'name', 'Adient (Ireland)'),
(81960, 68292, 'en', 'name', 'Kims Bibi Hospital'),
(81961, 68293, 'no_lang_code', 'name', 'Lola Group (United Kingdom)'),
(81962, 68294, 'en', 'name', 'Guangdong Testing Institute for Product Quality Supervision'),
(81963, 68294, 'zh', 'name', 'å¹æäøœēœäŗ§å“č“Øé‡ē›‘ē£ę£€éŖŒē ”ē©¶é™¢'),
(81964, 68295, 'en', 'name', 'The Modern Linguistic Society Of Korea'),
(81965, 68295, 'ko', 'name', 'ķ•œźµ­ ķ˜„ėŒ€ ģ–øģ–“ ķ•™ķšŒ'),
(81966, 68296, 'en', 'name', 'Beijing Nonferrous Metals and Rare Earth Applications Institute'),
(81967, 68296, 'zh', 'name', 'åŒ—äŗ¬ęœ‰č‰²é‡‘å±žäøŽēØ€åœŸåŗ”ē”Øē ”ē©¶ę‰€'),
(81968, 68297, 'no_lang_code', 'name', 'Maya Clinicals (India)'),
(81969, 68298, 'no_lang_code', 'name', 'Hai Kang Life (China)'),
(81970, 68298, 'zh', 'name', 'ęµ·åŗ·ē”Ÿå‘½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(81971, 68299, 'no_lang_code', 'name', 'China Huadian Corporation (China)'),
(81972, 68299, 'zh', 'name', 'äø­å›½åŽē”µé›†å›¢å…¬åø'),
(81973, 68300, 'no_lang_code', 'name', 'China International Marine Containers (China)'),
(81974, 68300, 'zh', 'name', '中国国际海运集装箱'),
(81975, 68301, 'en', 'name', 'Nasc The Irish Immigrant Support Centre'),
(81976, 68302, 'no_lang_code', 'name', 'Westin Limousine (Canada)'),
(81977, 68303, 'no_lang_code', 'name', 'Scientific Research Institute "Girikond" (Russia)'),
(81978, 68304, 'no_lang_code', 'name', 'Samoo Architects & Engineers (South Korea)'),
(81979, 68305, 'en', 'name', 'Laban/Bartenieff Institute of Movement Studies'),
(81980, 68306, 'no_lang_code', 'name', 'Digital Catapult (United Kingdom)'),
(81981, 68307, 'en', 'name', 'Sri Kalabyraveshwara Swamy Ayurvedic Medical College, Hospital and Research Center'),
(81982, 68307, 'kn', 'name', 'ą²¶ą³ą²°ą³€ ą²•ą²²ą²¾ą²­ą²°ą²£ą²µą³‡ą²¶ą³ą²µą²° ą²øą³ą²µą²¾ą²®ą²æ ą²†ą²Æą³ą²°ą³ą²µą³‡ą²¦ą²æą²•ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³† ą²®ą²¤ą³ą²¤ą³ ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(81983, 68308, 'en', 'name', 'Shanghai Zhaozhan Metal Materials'),
(81984, 68308, 'zh', 'name', 'äøŠęµ·é‡‘å±¬ęę–™ęœ‰é™å…¬åø'),
(81985, 68309, 'no_lang_code', 'name', 'FlyingBinary (United Kingdom)'),
(81986, 68310, 'no_lang_code', 'name', 'Iberdrola (Qatar)'),
(81987, 68311, 'no_lang_code', 'name', 'China Railway Design Corporation (China)'),
(81988, 68311, 'zh', 'name', 'äø­å›½é“č·Æč®¾č®”é›†å›¢ęœ‰é™å…¬åø'),
(81989, 68312, 'en', 'name', 'Silesian Library'),
(81990, 68312, 'pl', 'name', 'Biblioteka Śląska'),
(81991, 68313, 'en', 'name', 'Gyeongnam Provincial Namhae College'),
(81992, 68313, 'ko', 'name', 'ź²½ė‚Øė„ė¦½ė‚Øķ•“ėŒ€ķ•™'),
(81993, 68314, 'en', 'name', 'Wyoming Department of Agriculture'),
(81994, 68315, 'en', 'name', 'New Testament Society of Korea'),
(81995, 68315, 'ko', 'name', 'ķ•œźµ­ģ‹ ģ•½ķ•™ķšŒ'),
(81996, 68316, 'en', 'name', 'Association of Local Public Health Agencies'),
(81997, 68317, 'en', 'name', 'Business France'),
(81998, 68318, 'en', 'name', 'Alabama Bicentennial Commission'),
(81999, 68319, 'en', 'name', '"VNIINM" named after AA Bochvar'),
(82000, 68319, 'ru', 'name', '"Высокотехнологический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неорганических материалов имени акаГемика А.А. Бочвара"'),
(82001, 68320, 'en', 'name', 'The Design Museum'),
(82002, 68321, 'no_lang_code', 'name', 'Beijing Municipal Engineering Design and Research Institute (China)'),
(82003, 68321, 'zh', 'name', 'åŒ—äŗ¬åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(82004, 68322, 'en', 'name', 'Galway Clinic'),
(82005, 68323, 'no_lang_code', 'name', 'Academician M.F. Reshetnev Information Satellite Systems (Russia)'),
(82006, 68323, 'ru', 'name', 'Ā«Š˜ŠŠ¤ŠžŠ ŠœŠŠ¦Š˜ŠžŠŠŠ«Š• Š”ŠŸŠ£Š¢ŠŠ˜ŠšŠžŠ’Š«Š• Š”Š˜Š”Š¢Š•ŠœŠ«Ā» имени акаГемика М.Ф. Š ŠµŃˆŠµŃ‚Š½Ń‘Š²Š°Ā»'),
(82007, 68324, 'en', 'name', 'Beijing Polytechnic'),
(82008, 68324, 'zh', 'name', 'åŒ—äŗ¬ē”µå­ē§‘ęŠ€čŒäøšå­¦é™¢'),
(82009, 68325, 'fr', 'name', 'OSEntreprendre'),
(82010, 68326, 'en', 'name', 'National Institute of Aviation Technologies'),
(82011, 68326, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных технологий'),
(82012, 68327, 'en', 'name', 'Shandong Institute of Commerce & Technology'),
(82013, 68327, 'zh', 'name', 'å±±äøœå•†äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(82014, 68328, 'en', 'name', 'Research Institute of Nonwoven Materials'),
(82015, 68329, 'no_lang_code', 'name', 'Sweco (United Kingdom)'),
(82016, 68330, 'no_lang_code', 'name', 'SensorTec (South Korea)'),
(82017, 68331, 'en', 'name', 'All-Russian Research Institute for Silviculture and Mechanization of Forestry'),
(82018, 68331, 'ru', 'name', 'ФБУ Š’ŠŠ˜Š˜Š›Šœ'),
(82019, 68332, 'en', 'name', 'Korean Association for the Society of Religion'),
(82020, 68332, 'ko', 'name', 'ķ•œźµ­ 종교 ģ‚¬ķšŒ'),
(82021, 68333, 'en', 'name', 'Pembina Institute'),
(82022, 68334, 'en', 'name', 'Vermont Judiciary'),
(82023, 68335, 'en', 'name', 'Micro & Nano Research Institute'),
(82024, 68335, 'zh', 'name', '微纳米研究所'),
(82025, 68336, 'ko', 'name', 'ģœ ė°”ģ“ģ˜¤ė”œģ§ģŠ¤'),
(82026, 68336, 'no_lang_code', 'name', 'EuBiologics (South Korea)'),
(82027, 68337, 'en', 'name', 'Gyeongbuk Marine Bio-Industry Research Institute'),
(82028, 68337, 'ko', 'name', '경북 ķ•“ģ–‘ ģƒė¬¼ ģ‚°ģ—… 연구원'),
(82029, 68338, 'en', 'name', 'Regulatory Agency for Electronic Communications and Postal Services'),
(82030, 68338, 'sr', 'name', 'Š ŠµŠ³ŃƒŠ»Š°Ń‚Š¾Ń€Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ˜Š° за електронске ŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŃ˜Šµ Šø ŠæŠ¾ŃˆŃ‚Š°Š½ŃŠŗŠµ услуге'),
(82031, 68339, 'en', 'name', 'Special Design Bureau for Automation of Marine Research'),
(82032, 68339, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Š³Š¾ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŃ науки Š”ŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾Š³Š¾ Š±ŃŽŃ€Š¾ среГств автоматизации морских исслеГований Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(82033, 68340, 'no_lang_code', 'name', 'Western EcoSystems Technology (United States)'),
(82034, 68341, 'no_lang_code', 'name', 'Smartec-Group (Egypt)'),
(82035, 68342, 'en', 'name', 'The Korean Academic Society of Business Administration And Law'),
(82036, 68342, 'ko', 'name', 'ķ•œźµ­ 경영 ķ•™ķšŒ'),
(82037, 68343, 'es', 'name', 'Instituto Nacional de Higiene, EpidemiologĆ­a y MicrobiologĆ­a'),
(82038, 68344, 'en', 'name', 'Ministry of Finance'),
(82039, 68344, 'he', 'name', '×žÖ“×©Ö°×‚×ØÖ·×“ הַאוֹצָר'),
(82040, 68345, 'en', 'name', 'Nizhny Novgorod State University of Engineering and Economics'),
(82041, 68345, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ инженерно-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(82042, 68346, 'en', 'name', 'Sponsors for Educational Opportunity'),
(82043, 68347, 'no_lang_code', 'name', 'ffei (United Kingdom)'),
(82044, 68348, 'en', 'name', 'Maritime Institute of Eastern Mediterranean'),
(82045, 68349, 'no_lang_code', 'name', 'ALP Technologies (United Kingdom)'),
(82046, 68350, 'no_lang_code', 'name', 'Air Black Box (United Kingdom)'),
(82047, 68351, 'en', 'name', 'The Society Eastern Philosophy'),
(82048, 68351, 'ko', 'name', 'ė™ģ–‘ģ² ķ•™ģ—°źµ¬ķšŒ'),
(82049, 68352, 'en', 'name', 'Magadan Research Institute of Agriculture'),
(82050, 68352, 'ru', 'name', 'МагаГанский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(82051, 68353, 'bg', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠž Š˜ŠŠ¤ŠžŠ ŠœŠŠ¦Š˜ŠžŠŠŠ˜ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š˜'),
(82052, 68353, 'en', 'name', 'Institute of Information Technologies'),
(82053, 68354, 'en', 'name', 'Ministry of Interior of the Republic of Serbia'),
(82054, 68354, 'sr', 'name', 'Mинистарство ŃƒŠ½ŃƒŃ‚Ń€Š°ŃˆŃšŠøŃ… послова'),
(82055, 68355, 'no_lang_code', 'name', 'Bharat Serums and Vaccines (India)'),
(82056, 68356, 'no_lang_code', 'name', 'Hy-Line (United States)'),
(82057, 68357, 'en', 'name', 'Icelandic Institute for Intelligent Machines'),
(82058, 68358, 'en', 'name', 'Loretto Community'),
(82059, 68359, 'en', 'name', 'All-Russian Research Institute of Oil Crops by V.S. Pustovoit'),
(82060, 68359, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ масличных ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ имени Š’. Š”. ŠŸŃƒŃŃ‚Š¾Š²Š¾Š¹Ń‚Š°'),
(82061, 68360, 'no_lang_code', 'name', 'Intel (United Arab Emirates)'),
(82062, 68361, 'en', 'name', 'Suzhou Polytechnic Institute of Agriculture'),
(82063, 68361, 'zh', 'name', 'č‹å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(82064, 68362, 'no_lang_code', 'name', 'Milo''s Knitwear (China)'),
(82065, 68362, 'zh', 'name', 'ē±³ę“›ēš„é’ˆē»‡å“'),
(82066, 68363, 'en', 'name', 'Bradford District Care NHS Foundation Trust'),
(82067, 68364, 'en', 'name', 'Guangdong Iron and Steel Research Institute'),
(82068, 68364, 'zh', 'name', 'å¹æäøœēœé’¢é“ē ”ē©¶ę‰€'),
(82069, 68365, 'en', 'name', 'Inspiring Scotland'),
(82070, 68366, 'ko', 'name', 'ė¶€ź“‘ģ•½ķ’ˆ'),
(82071, 68366, 'no_lang_code', 'name', 'Bukwang Pharmaceutical (South Korea)'),
(82072, 68367, 'en', 'name', 'Northwood'),
(82073, 68368, 'en', 'name', 'Military Academy of Air-Space Defense named after Marshal of the Soviet Union GK Zhukov'),
(82074, 68368, 'ru', 'name', 'Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ возГушно-космической обороны имени Š¼Š°Ń€ŃˆŠ°Š»Š° Доветского Š”Š¾ŃŽŠ·Š° Š“.К. Š–ŃƒŠŗŠ¾Š²Š°'),
(82075, 68369, 'ar', 'name', 'معهد روتؓستر Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ - دبي'),
(82076, 68369, 'en', 'name', 'Rochester Institute of Technology - Dubai'),
(82077, 68370, 'ko', 'name', 'ė°”ģ“ģ˜¤ė¦¬ė”ģŠ¤'),
(82078, 68370, 'no_lang_code', 'name', 'Bioleaders (South Korea)'),
(82079, 68371, 'no_lang_code', 'name', 'Hefei Municipal Design and Research Institute (China)'),
(82080, 68371, 'zh', 'name', 'åˆč‚„åø‚åø‚ę”æč®¾č®”ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(82081, 68372, 'no_lang_code', 'name', 'ISKRA Zakłady Precyzyjne (Poland)'),
(82082, 68373, 'en', 'name', 'Korean Literature Theory and Criticism Society'),
(82083, 68373, 'ko', 'name', 'ķ•œźµ­ė¬øķ•™ģ“ė” ź³¼ ė¹„ķ‰ķ•™ķšŒ'),
(82084, 68374, 'de', 'name', 'Bundesverband der Deutschen Tourismuswirtschaft, Federal Association of the German Tourism Industry'),
(82085, 68375, 'en', 'name', 'Institute of Molecular Biology and Biotechnology'),
(82086, 68376, 'en', 'name', 'Suwon Science College'),
(82087, 68376, 'ko', 'name', 'ģˆ˜ģ› 과학 ėŒ€ķ•™'),
(82088, 68377, 'no_lang_code', 'name', 'Scientific Research Institute of Precision Mechanics (Russia)'),
(82089, 68378, 'no_lang_code', 'name', 'Electricity Storage Network (United Kingdom)'),
(82090, 68379, 'en', 'name', 'Government of Nova Scotia'),
(82091, 68380, 'en', 'name', 'Thunderbird Partnership Foundation'),
(82092, 68381, 'no_lang_code', 'name', 'Medica (United States)'),
(82093, 68382, 'no_lang_code', 'name', 'Advanced Microwave Technologies (United Kingdom)'),
(82094, 68383, 'no_lang_code', 'name', 'PI Photovoltaik-Institut (Germany)'),
(82095, 68384, 'no_lang_code', 'name', 'Adbiotech (South Korea)'),
(82096, 68385, 'fr', 'name', 'Ministère de la Santé'),
(82097, 68386, 'no_lang_code', 'name', 'Seagate (Ireland)'),
(82098, 68387, 'en', 'name', 'Wellcome Centre for Infectious Diseases Research in Africa'),
(82099, 68388, 'no_lang_code', 'name', 'Tozer Seeds (United Kingdom)'),
(82100, 68389, 'en', 'name', 'Korea Art Education Association'),
(82101, 68389, 'ko', 'name', 'ķ•œźµ­ 미술 교윔 ķ•™ķšŒ'),
(82102, 68390, 'no_lang_code', 'name', 'Domino (United Kingdom)'),
(82103, 68391, 'no_lang_code', 'name', 'Acumen Environmental Engineering & Technologies (China)'),
(82104, 68391, 'zh', 'name', 'ę•é”ēŽÆå¢ƒå·„ēØ‹äøŽęŠ€ęœÆ'),
(82105, 68392, 'en', 'name', 'Coolidge Corner Theatre'),
(82106, 68393, 'en', 'name', 'Guangxi Agricultural Machinery Research Institute'),
(82107, 68393, 'zh', 'name', 'å¹æč„æå†œäøšęœŗę¢°ē ”ē©¶é™¢'),
(82108, 68394, 'no_lang_code', 'name', 'Rehab-Robotics (China)'),
(82109, 68395, 'en', 'name', 'Energy Institute named after G.M. Krzhizhanovsky'),
(82110, 68395, 'ru', 'name', 'Энергетический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š“.М. ŠšŃ€Š¶ŠøŠ¶Š°Š½Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(82111, 68396, 'en', 'name', 'Shenyang Fire Research Institute'),
(82112, 68397, 'no_lang_code', 'name', 'Shandong Lianxing Energy Group (China)'),
(82113, 68397, 'zh', 'name', 'å±±äøœč”ę˜Ÿčƒ½ęŗé›†å›¢'),
(82114, 68398, 'no_lang_code', 'name', 'TES Global (United Kingdom)'),
(82115, 68399, 'en', 'name', 'Military Academy of Material and Technical Support them General of the Army A.V. Khruleva'),
(82116, 68399, 'ru', 'name', 'Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»ŃŒŠ½Š¾-технического Š¾Š±ŠµŃŠæŠµŃ‡ŠµŠ½ŠøŃ им. генерала армии А.Š’. Š„Ń€ŃƒŠ»Ń‘Š²Š°'),
(82117, 68400, 'fr', 'name', 'Institut de Recherche Sur L’IntĆ©gration Professionnelle des Immigrants'),
(82118, 68401, 'en', 'name', 'Federal Management Partners'),
(82119, 68402, 'fr', 'name', 'Gouvernement de la Nouvelle-CalƩdonie'),
(82120, 68403, 'en', 'name', 'Korea Research Institute of Mechanical Facilities Industry');
INSERT INTO `ror_settings` VALUES
(82121, 68403, 'ko', 'name', 'ėŒ€ķ•œźø°ź³„ģ„¤ė¹„ģ‚°ģ—…ģ—°źµ¬ģ›'),
(82122, 68404, 'no_lang_code', 'name', 'Jiangsu Kawei Auto Industrial Group (China)'),
(82123, 68404, 'zh', 'name', 'ę±Ÿč‹å”åØę±½č½¦å·„äøšé›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(82124, 68405, 'nl', 'name', 'Nederlands Instituut voor Lastechniek'),
(82125, 68406, 'bg', 'name', 'Mинистерство на Š²ŃŠŃ‚Ń€ŠµŃˆŠ½ŠøŃ‚Šµ работи'),
(82126, 68406, 'en', 'name', 'Ministry of Interior'),
(82127, 68407, 'en', 'name', 'National Development Institute of Korean Medicine'),
(82128, 68408, 'no_lang_code', 'name', 'IDEXX Laboratories (United States)'),
(82129, 68409, 'en', 'name', 'Cultural Heritage & Education'),
(82130, 68410, 'en', 'name', 'National House Building Council'),
(82131, 68411, 'bg', 'name', 'ŠŠ”ŠžŠ¦Š˜ŠŠ¦Š˜ŠÆ ŠŠ ŠŠ“Š•ŠŠ¦Š˜ŠÆŠ¢Š ЗА Š•ŠŠ•Š Š“Š˜Š™ŠŠ Š”ŠžŠ¤Š˜ŠÆ'),
(82132, 68411, 'en', 'name', 'Sofia Energy Agency'),
(82133, 68412, 'no_lang_code', 'name', 'Crypta Labs (United Kingdom)'),
(82134, 68413, 'en', 'name', 'Gay Line'),
(82135, 68413, 'fr', 'name', 'Interligne'),
(82136, 68414, 'no_lang_code', 'name', 'Course Hero (United States)'),
(82137, 68415, 'no_lang_code', 'name', 'GyroGear (United Kingdom)'),
(82138, 68416, 'en', 'name', 'Institute of Semitic Studies'),
(82139, 68417, 'fr', 'name', 'Ministre de la ForĆŖt,de la Mer et de l''Environnement'),
(82140, 68418, 'ar', 'name', 'وزارة الزراعة ŁˆŲ§Ł„Ų„ŲµŁ„Ų§Ų­ Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠ'),
(82141, 68418, 'en', 'name', 'Ministry of Agriculture and Agrarian Reform'),
(82142, 68419, 'no_lang_code', 'name', 'Figshare (United Kingdom)'),
(82143, 68420, 'no_lang_code', 'name', 'Boeing (United Kingdom)'),
(82144, 68421, 'no_lang_code', 'name', 'Handley Heating Services (United Kingdom)'),
(82145, 68422, 'en', 'name', 'People of Color Against AIDS Network'),
(82146, 68423, 'en', 'name', 'Ningbo College of Health Sciences'),
(82147, 68423, 'zh', 'name', 'å®ę³¢å«ē”ŸčŒäøšęŠ€ęœÆå­¦é™¢'),
(82148, 68424, 'en', 'name', 'Institute of Mineralogy, Geochemistry and Crystallochemistry of Rare Elements'),
(82149, 68424, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ минералогии Šø геохимии реГких ŃŠ»ŠµŠ¼ŠµŠ½Ń‚Š¾Š²'),
(82150, 68425, 'it', 'name', 'Commissione Nazionale per le SocietĆ  e la Borsa'),
(82151, 68426, 'no_lang_code', 'name', 'Toray (China)'),
(82152, 68426, 'zh', 'name', '东丽'),
(82153, 68427, 'en', 'name', 'Science and Technology Awareness Network'),
(82154, 68427, 'fr', 'name', 'RƩseau de sensibilisation de sciences et technologie'),
(82155, 68428, 'en', 'name', 'JSC Institute Hydroproject'),
(82156, 68428, 'ru', 'name', 'ŠŠž Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ГиГропроект»'),
(82157, 68429, 'gu', 'name', 'ąŖ•ą«ąŖ²ąŖæąŖąŖ°ąŖ¾ ąŖ•ą«‹ąŖ°ą«ąŖŖą«‹ąŖ°ą«‡ąŖ¶ąŖØ ąŖ‡ąŖØą«ąŖ”ąŖæąŖÆąŖ¾'),
(82158, 68429, 'hi', 'name', 'ą¤•ą„ą¤²ą„€ą¤°ą¤æą¤Æą¤¾ निगम भारत'),
(82159, 68429, 'kn', 'name', 'ą²•ą³ą²²ą²æą²Øą³ą²‡ą²°ą²¾ ą²•ą²¾ą²°ą³ą²Ŗą³Šą²°ą³‡ą²·ą²Øą³ ಇಂಔಿಯಾ'),
(82160, 68429, 'no_lang_code', 'name', 'Klinera (India)'),
(82161, 68430, 'no_lang_code', 'name', 'NutraPharm Tech (South Korea)'),
(82162, 68431, 'no_lang_code', 'name', 'Forge (United Kingdom)'),
(82163, 68432, 'no_lang_code', 'name', 'Change Agents (Australia)'),
(82164, 68433, 'en', 'name', 'The Society of Gynecologic Oncology of Canada'),
(82165, 68434, 'no_lang_code', 'name', 'PepsiCo (India)'),
(82166, 68435, 'en', 'name', 'Suzhou Electronic Products Inspection'),
(82167, 68435, 'zh', 'name', 'č‹å·žē”µå­äŗ§å“ę£€éŖŒę‰€'),
(82168, 68436, 'en', 'name', 'Institute of Quantum Materials Science'),
(82169, 68436, 'ru', 'name', 'Š—ŠŠž "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ квантового Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ"'),
(82170, 68437, 'en', 'name', 'Manhattan District Attorney''s Office'),
(82171, 68438, 'en', 'name', 'Friends For Life'),
(82172, 68439, 'en', 'name', 'Military Academy of the Air Defense Forces Named after Marshal of the Soviet Union А.М. Vasilevsky'),
(82173, 68439, 'ru', 'name', 'Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š’Š¾Š·Š“ŃƒŃˆŠ½Š¾-Гесантных войск Š’Š¾Š¾Ń€ŃƒŠ¶ŠµŠ½Š½Ń‹Ń… Дил Российской ФеГерации им. ŠœŠ°Ń€ŃˆŠ°Š»Š° Доветского Š”Š¾ŃŽŠ·Š° А.М. Василевский'),
(82174, 68440, 'en', 'name', 'Shandong Institute of Quantum Science and Technology'),
(82175, 68440, 'zh', 'name', 'å±±äøœé‡å­ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(82176, 68441, 'kn', 'name', 'ą²®ą³†ą³–ą²•ą³ą²°ą³†ą³‚ą³• ą²²ą³ą²Æą²¾ą²¬ą³ą²øą³ ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(82177, 68441, 'no_lang_code', 'name', 'Micro Labs (India)'),
(82178, 68442, 'hu', 'name', 'RĆ”kóczi Ferenc KĆ”rpĆ”taljai Magyar Főiskola'),
(82179, 68442, 'no_lang_code', 'name', 'Ferenc RÔkóczi II Transcarpathian Hungarian Institute'),
(82180, 68442, 'uk', 'name', 'Š—Š°ŠŗŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ ŃƒŠ³Š¾Ń€ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ імені Ференца Ракоці II'),
(82181, 68443, 'en', 'name', 'The Lithuanian Maritime Safety Administration'),
(82182, 68443, 'lt', 'name', 'Lietuvos saugios laivybos administracija'),
(82183, 68444, 'en', 'name', 'Institute of Engineering Science and Metallurgy Far Eastern Branch of the Russian Academy of Sciences'),
(82184, 68444, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Šø Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(82185, 68445, 'no_lang_code', 'name', 'Nanjing Surveying and Mapping Research Institute (China)'),
(82186, 68445, 'zh', 'name', 'å—äŗ¬åø‚ęµ‹ē»˜å‹˜åÆŸē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(82187, 68446, 'en', 'name', 'Department of Defence'),
(82188, 68447, 'en', 'name', 'Agency for Medicinal Products and Medical Devices of Croatia'),
(82189, 68447, 'hr', 'name', 'Agencija za lijekove i medicinske proizvode. Sva prava pridržana'),
(82190, 68448, 'en', 'name', 'Agricultural Industries Confederation'),
(82191, 68449, 'fr', 'name', 'SociƩtƩ QuƩbƩcoise de Lipidologie, de Nutrition et de MƩtabolisme'),
(82192, 68450, 'en', 'name', 'Yeongnam Chinese Literature Society'),
(82193, 68450, 'ko', 'name', 'ģ˜ė‚Øģ¤‘źµ­ģ–“ė¬øķ•™ķšŒ'),
(82194, 68451, 'en', 'name', 'Andrew Faulkner Associates'),
(82195, 68452, 'no_lang_code', 'name', 'NIIAS'),
(82196, 68452, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информатизации, автоматизации Šø ŃŠ²ŃŠ·Šø на железноГорожном транспорте'),
(82197, 68453, 'no_lang_code', 'name', 'Agency9 (Sweden)'),
(82198, 68454, 'en', 'name', 'Taganrog Research Institute of Communications'),
(82199, 68454, 'ru', 'name', 'Таганрогский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ²ŃŠ·Šø'),
(82200, 68455, 'no_lang_code', 'name', 'Philips (India)'),
(82201, 68456, 'no_lang_code', 'name', 'Admomo Media (China)'),
(82202, 68457, 'no_lang_code', 'name', 'Kingfisher (United Kingdom)'),
(82203, 68458, 'no_lang_code', 'name', 'Nam Kwong Electric (China)'),
(82204, 68458, 'zh', 'name', 'å—å…‰é›»å“ęœ‰é™å…¬åø'),
(82205, 68459, 'de', 'name', 'Ministerium der Justiz Nordrhein-Westfalen'),
(82206, 68460, 'en', 'name', 'Junior Achievement'),
(82207, 68461, 'en', 'name', 'Korean Academy of Social Welfare'),
(82208, 68461, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ 복지'),
(82209, 68462, 'no_lang_code', 'name', 'Enovate Biolife (India)'),
(82210, 68463, 'no_lang_code', 'name', 'Chambroad Chemical Industry Research Institute (China)'),
(82211, 68463, 'zh', 'name', 'é¦™ęøÆåŒ–å­¦å·„äøšē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(82212, 68464, 'en', 'name', 'Jiangxi Provincial Institute of Water Resources Planning and Design'),
(82213, 68464, 'zh', 'name', 'ę±Ÿč„æēœę°“åˆ©č§„åˆ’č®¾č®”ē ”ē©¶é™¢ ē‰ˆęƒę‰€ęœ‰'),
(82214, 68465, 'fr', 'name', 'Table Carrefour Violence Conjugale QuƩbec MƩtro'),
(82215, 68466, 'en', 'name', 'The Joint Institute of Mechanical Engineering'),
(82216, 68467, 'es', 'name', 'Instituto tecnológico de MatemÔtica Industrial'),
(82217, 68468, 'no_lang_code', 'name', 'Kingfa (China)'),
(82218, 68469, 'no_lang_code', 'name', 'Unilever (Indonesia)'),
(82219, 68470, 'en', 'name', 'Ministry of Health'),
(82220, 68471, 'no_lang_code', 'name', 'Devro (United Kingdom)'),
(82221, 68472, 'no_lang_code', 'name', 'Karm Research Group (United Kingdom)'),
(82222, 68473, 'en', 'name', 'Meteorological, Climatological, And Geophysical Agency'),
(82223, 68473, 'id', 'name', 'Badan Meteorologi, Klimatologi, dan Geofisika'),
(82224, 68474, 'en', 'name', 'Indravati Hospital & Research Centre'),
(82225, 68474, 'hi', 'name', 'ą¤‡ą¤‚ą¤¦ą„ą¤°ą¤¾ą¤µą¤¤ą„€ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(82226, 68475, 'en', 'name', 'International League Against Epilepsy'),
(82227, 68476, 'hi', 'name', 'ą¤øą¤Øą„‹ą¤«ą„€'),
(82228, 68476, 'no_lang_code', 'name', 'Sanofi (India)'),
(82229, 68477, 'en', 'name', 'Siberian State Order of the Red Banner of Labor Research Institute of Metrology'),
(82230, 68477, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный орГена Š¢Ń€ŃƒŠ“ового ŠšŃ€Š°ŃŠ½Š¾Š³Š¾ Знамени Š½Š°ŃƒŃ‡Š½Š¾- ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(82231, 68478, 'en', 'name', 'Stockholm Institute of Communication Science'),
(82232, 68479, 'de', 'name', 'Kraftfahrt-Bundesamt'),
(82233, 68479, 'en', 'name', 'Federal Motor Transport Authority'),
(82234, 68480, 'ko', 'name', '(주)ģ”Øķ‹°ģ”Øė°”ģ“ģ˜¤'),
(82235, 68480, 'no_lang_code', 'name', 'CTCBio (South Korea)'),
(82236, 68481, 'en', 'name', 'Jiangsu Industry Technology Research Institute'),
(82237, 68481, 'zh', 'name', 'ę±Ÿč‹å·„äøšęŠ€ęœÆē ”ē©¶é™¢'),
(82238, 68482, 'en', 'name', 'Greater Lafourche Port Commission'),
(82239, 68483, 'no_lang_code', 'name', 'Sanwa Technologies (China)'),
(82240, 68484, 'no_lang_code', 'name', 'ATDBio (United Kingdom)'),
(82241, 68485, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„Ų³ŁŠŲ§Ų­Ų©ā€Ž'),
(82242, 68485, 'en', 'name', 'Qatar Tourism Authority'),
(82243, 68486, 'en', 'name', 'Ministry of Agriculture'),
(82244, 68487, 'en', 'name', 'Centre for Sustainable Healthcare'),
(82245, 68488, 'no_lang_code', 'name', 'Shanghai Huayi Group (China)'),
(82246, 68488, 'zh', 'name', 'äøŠęµ·åŽč°Šļ¼ˆé›†å›¢ļ¼‰å…¬åø'),
(82247, 68489, 'en', 'name', 'Bishopsgate Institute'),
(82248, 68490, 'en', 'name', 'Institute of public health of Republic of Macedonia'),
(82249, 68490, 'mk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за јавно Š·Š“Ń€Š°Š²Ń˜Šµ на Република МакеГонија'),
(82250, 68490, 'sq', 'name', 'Instituti i Shƫndetit Publik i Republikƫs sƫ Maqedonisƫ'),
(82251, 68491, 'en', 'name', 'Ministry of Petroleum and Energy'),
(82252, 68491, 'no', 'name', 'Olje- og energidepartementet'),
(82253, 68492, 'no_lang_code', 'name', 'Inspection Technologies (United Kingdom)'),
(82254, 68493, 'en', 'name', 'Hefei Institute of Technology Innovation'),
(82255, 68494, 'en', 'name', 'The Korean Association of Ethics'),
(82256, 68494, 'ko', 'name', 'ķ•œźµ­ģœ¤ė¦¬ķ•™ķšŒ'),
(82257, 68495, 'en', 'name', 'Northern Ireland Tourist Board'),
(82258, 68496, 'en', 'name', 'ITAKA Foundation'),
(82259, 68496, 'pl', 'name', 'Fundacja Itaka'),
(82260, 68497, 'en', 'name', 'Shandong Academy of Environmental Science'),
(82261, 68497, 'zh', 'name', 'å±±äøœēœēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶č®¾č®”é™¢åœ°'),
(82262, 68498, 'en', 'name', 'Internet Professional Association'),
(82263, 68498, 'zh', 'name', 'äŗ’čÆē¶²å°ˆę„­å”ęœƒ'),
(82264, 68499, 'en', 'name', 'Suzhou Industrial Park Vocational Technical College'),
(82265, 68499, 'zh', 'name', 'č‹å·žå·„äøšå›­åŒŗčŒäøšęŠ€ęœÆå­¦é™¢'),
(82266, 68500, 'en', 'name', 'John Muir Trust'),
(82267, 68501, 'no_lang_code', 'name', 'Nara Controls (South Korea)'),
(82268, 68502, 'no_lang_code', 'name', 'Samyoung Unitech (South Korea)'),
(82269, 68503, 'no_lang_code', 'name', 'Phicomm (China)'),
(82270, 68503, 'zh', 'name', '斐讯'),
(82271, 68504, 'en', 'name', 'Financial Management Association International'),
(82272, 68505, 'no_lang_code', 'name', 'Agrimetrics (United Kingdom)'),
(82273, 68506, 'es', 'name', 'Seminario Bíblico de Colombia Fundación Universitaria'),
(82274, 68507, 'en', 'name', 'Korea Dance Association'),
(82275, 68507, 'ko', 'name', 'ģ‚¬ė‹Øė²•ģø ķ•œźµ­ė¬“ģš©ķ˜‘ķšŒ'),
(82276, 68508, 'en', 'name', 'Association for Language Learning'),
(82277, 68509, 'no_lang_code', 'name', 'IT Channel (China)'),
(82278, 68509, 'zh', 'name', 'ē§‘ęŠ€åÆ¼čˆŖ'),
(82279, 68510, 'en', 'name', 'National and University Library of Iceland'),
(82280, 68510, 'is', 'name', 'Landsbókasafn ƍslands HĆ”skólabókasafn'),
(82281, 68511, 'en', 'name', 'The Korean Historical Association'),
(82282, 68511, 'ko', 'name', 'ģ—­ģ‚¬ķ•™ķšŒ'),
(82283, 68512, 'no_lang_code', 'name', 'CL Pharm (South Korea)'),
(82284, 68513, 'en', 'name', 'Research Institute of Fur Industry'),
(82285, 68513, 'ru', 'name', 'ŠŠ˜Š˜ ŠœŠµŃ…ŠŸŃ€Š¾Š¼'),
(82286, 68514, 'en', 'name', 'Korean Association of Women''s History'),
(82287, 68514, 'ko', 'name', 'ķ•œźµ­ 여성사 ķ˜‘ķšŒ'),
(82288, 68515, 'en', 'name', 'IDEA of Development Foundation'),
(82289, 68515, 'pl', 'name', 'Fundacja Idea Rozwoju'),
(82290, 68516, 'en', 'name', 'Ministry of Agriculture and Fisheries'),
(82291, 68517, 'en', 'name', 'Peace Action, Training and Research Institute of Romania'),
(82292, 68518, 'en', 'name', 'Hong Kong Hotels Association'),
(82293, 68518, 'zh', 'name', 'é¦™ęøÆé…’åŗ—äøšåä¼š'),
(82294, 68519, 'no_lang_code', 'name', 'Dr. Bidari’s Ashwini Hospital'),
(82295, 68520, 'en', 'name', 'Tatar Scientific Research And Design Institute of Petroleum Engineering'),
(82296, 68520, 'ru', 'name', 'Š¢ŠŠ¢ŠŠ Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ И ŠŸŠ ŠžŠ•ŠšŠ¢ŠŠž-ŠšŠžŠŠ”Š¢Š Š£ŠšŠ¢ŠžŠ Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŠ•Š¤Š¢ŠÆŠŠžŠ“Šž ŠœŠŠØŠ˜ŠŠžŠ”Š¢Š ŠžŠ•ŠŠ˜ŠÆ'),
(82297, 68521, 'en', 'name', 'Cork City Council'),
(82298, 68521, 'ga', 'name', 'Comhairle Cathrach ChorcaĆ­'),
(82299, 68522, 'no_lang_code', 'name', 'NSilico (Ireland)'),
(82300, 68523, 'no_lang_code', 'name', 'Virchow BioTech (India)'),
(82301, 68524, 'en', 'name', 'Ministry of National Defence'),
(82302, 68524, 'ro', 'name', 'Ministerul Apărării Naționale'),
(82303, 68525, 'no_lang_code', 'name', 'Foshan Ceramics Research Institute (China)'),
(82304, 68525, 'zh', 'name', 'ä½›å±±åø‚é™¶ē“·ē ”ē©¶ę‰€ęœ‰é™'),
(82305, 68526, 'de', 'name', 'Ƅrztliches Zentrum für QualitƤt in der Medizin (ƄZQ)'),
(82306, 68526, 'en', 'name', 'German Agency for Quality in Medicine'),
(82307, 68527, 'en', 'name', 'Balhousie Care Group'),
(82308, 68528, 'no_lang_code', 'name', 'Panasonic (Russia)'),
(82309, 68529, 'en', 'name', 'The Canadian Scientific & Christian Affiliation'),
(82310, 68530, 'no_lang_code', 'name', 'XTC (China)'),
(82311, 68530, 'zh', 'name', 'å°å¤©ę‰'),
(82312, 68531, 'be', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŃŃ€ŃŃ‚Š²Š° ŃŠŗŠ°Š½Š¾Š¼Ń–ŠŗŃ– Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(82313, 68531, 'en', 'name', 'Ministry of Economy of the Republic of Belarus'),
(82314, 68532, 'de', 'name', 'Bundesverband Baustoffe - Steine und Erden, German Building Materials Association'),
(82315, 68533, 'no_lang_code', 'name', 'China Shenhua Energy (China)'),
(82316, 68533, 'zh', 'name', 'ē„žåŽčƒ½ęŗ'),
(82317, 68534, 'no_lang_code', 'name', 'Sun Cupid Technology (China)'),
(82318, 68534, 'zh', 'name', 'å¤Ŗé˜³äø˜ęÆ”ē‰¹ē§‘ęŠ€'),
(82319, 68535, 'tr', 'name', 'İstanbul Pendik Veteriner Kontrol Enstitüsü'),
(82320, 68536, 'en', 'name', 'Cowlitz-Wahkiakum Council of Governments'),
(82321, 68537, 'no_lang_code', 'name', 'Pegatron (Taiwan)'),
(82322, 68537, 'zh', 'name', 'å’Œē¢©čÆåˆē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(82323, 68538, 'no_lang_code', 'name', 'Vitelic Technology (China)'),
(82324, 68539, 'no_lang_code', 'name', 'Environmental Monitoring Solutions (United Kingdom)'),
(82325, 68540, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ за Š¾Ń†ŠµŠ½ŃŠ²Š°Š½Šµ Šø Š°ŠŗŃ€ŠµŠ“ŠøŃ‚Š°Ń†ŠøŃ'),
(82326, 68540, 'en', 'name', 'National Evaluation and Accreditation Agency'),
(82327, 68541, 'en', 'name', 'Scientific Research Institute of Horticulture of Siberia named after М.А. Lisavenko'),
(82328, 68542, 'en', 'name', 'Korea Research Institute for Construction Policy'),
(82329, 68542, 'ko', 'name', 'ķ•œźµ­ź±“ģ„¤źø°ģˆ ģ—°źµ¬ģ›'),
(82330, 68543, 'de', 'name', 'Institut für angewandte Bauinformatik'),
(82331, 68543, 'en', 'name', 'Institute of Applied Building Informatics'),
(82332, 68544, 'en', 'name', 'National Heritage Board'),
(82333, 68544, 'ms', 'name', 'Lembaga Warisan Negara'),
(82334, 68544, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®®ą®°ą®ŖąÆą®ŸąÆˆą®®ąÆˆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(82335, 68544, 'zh', 'name', '国家文物局'),
(82336, 68545, 'en', 'name', 'The Lewy Body Society'),
(82337, 68546, 'en', 'name', 'Zhangjiagang Intelligent Power Research Institute'),
(82338, 68546, 'zh', 'name', 'å¼ å®¶ęøÆę™ŗčƒ½ē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢'),
(82339, 68547, 'en', 'name', 'Korea Economic History Society'),
(82340, 68547, 'ko', 'name', 'ź²½ģ œģ‚¬ķ•™ķšŒ'),
(82341, 68548, 'pt', 'name', 'Ministério da Saúde'),
(82342, 68549, 'en', 'name', 'South-Russian State Polytechnic University named after MI Platov'),
(82343, 68550, 'en', 'name', 'Korea Counseling Graduate University'),
(82344, 68550, 'ko', 'name', 'ķ•œźµ­ģƒė‹“ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(82345, 68551, 'en', 'name', 'Focus Ireland'),
(82346, 68552, 'en', 'name', 'Men Overcoming Violence'),
(82347, 68553, 'no_lang_code', 'name', 'AKT II (United Kingdom)'),
(82348, 68554, 'en', 'name', 'Smolensk Scientific Research Institute of Agriculture'),
(82349, 68554, 'ru', 'name', 'Дмоленский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(82350, 68555, 'en', 'name', 'Comhairle Contae Mhaigh Eo, Mayo County Council'),
(82351, 68556, 'no_lang_code', 'name', 'Hong Kong Blind Union'),
(82352, 68556, 'zh', 'name', 'é¦™ęøÆå¤±ę˜Žäŗŗå”é€²ęœƒ'),
(82353, 68557, 'no_lang_code', 'name', 'Inspur (China)'),
(82354, 68557, 'zh', 'name', 'ęµŖę½®'),
(82355, 68558, 'no_lang_code', 'name', 'Wuxi Industrial Equipment Installation (China)'),
(82356, 68558, 'zh', 'name', 'ę— é””åø‚å·„äøšč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(82357, 68559, 'no_lang_code', 'name', 'Cast Metals Federation (United Kingdom)'),
(82358, 68560, 'no_lang_code', 'name', 'Luoyang Sanlong Installation and Maintenance (China)'),
(82359, 68560, 'zh', 'name', 'ę“›é˜³äø‰éš†å®‰č£…ę£€äæ®ęœ‰é™å…¬åø'),
(82360, 68561, 'no_lang_code', 'name', 'Mikron (Russia)'),
(82361, 68561, 'ru', 'name', 'ŠœŠøŠŗŃ€Š¾Š½'),
(82362, 68562, 'en', 'name', 'Siberian Scientific Research Institute of Oil Industry'),
(82363, 68563, 'no_lang_code', 'name', 'Jiangsu Yanjiang Chemical Resources Development Research Institute (China)'),
(82364, 68563, 'zh', 'name', 'ę±Ÿč‹ę²æę±ŸåŒ–å­¦čµ„ęŗå¼€å‘ē ”ē©¶é™¢'),
(82365, 68564, 'no_lang_code', 'name', 'Amos Enterprise (China)'),
(82366, 68564, 'zh', 'name', 'é˜æčŽ«ę–Æä¼äøšęœ‰é™å…¬åø'),
(82367, 68565, 'en', 'name', 'Tianjin Stomatological Hospital'),
(82368, 68565, 'zh', 'name', 'å¤©ę“„åø‚å£č…”åŒ»é™¢'),
(82369, 68566, 'en', 'name', 'Federal Scientific Center for Medical and Preventive Health Risk Management Technologies'),
(82370, 68566, 'ru', 'name', 'Š›ŃŽŠ±Š¾Šµ использование материалов Š“Š¾ŠæŃƒŃŠŗŠ°ŠµŃ‚ŃŃ Ń‚Š¾Š»ŃŒŠŗŠ¾ с ŃŠ¾Š³Š»Š°ŃŠøŃ ŠæŃ€Š°Š²Š¾Š¾Š±Š»Š°Š“Š°Ń‚ŠµŠ»Ń'),
(82371, 68567, 'en', 'name', 'Geological Society of Korea'),
(82372, 68567, 'ko', 'name', 'ėŒ€ķ•œģ§€ģ§ˆķ•™ķšŒ'),
(82373, 68568, 'fr', 'name', 'Centre IntƩgrƩ de SantƩ et de Services Sociaux du Bas-Saint-Laurent'),
(82374, 68569, 'en', 'name', 'The Korean Association for Dialectology'),
(82375, 68569, 'ko', 'name', 'ķ•œźµ­ė°©ģ–øķ•™ķšŒ'),
(82376, 68570, 'en', 'name', 'K. J. Somaiya Hospital & Research Centre'),
(82377, 68570, 'hi', 'name', 'ą¤•ą„‡ą„¤ ą¤œą„‡ą„¤ ą¤øą„‹ą¤®ą„ˆą¤Æą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(82378, 68570, 'mr', 'name', 'ą¤•ą„‡. ą¤œą„‡. ą¤øą„‹ą¤®ą¤Æą„ą¤Æą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤² ą¤…ą¤ą¤Øą„ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(82379, 68571, 'en', 'name', 'Lithuanian Research Centre for Agriculture and Forestry'),
(82380, 68571, 'lt', 'name', 'Lietuvos agrarinių ir miŔkų mokslų centro filialas'),
(82381, 68572, 'no_lang_code', 'name', 'British Precast (United Kingdom)'),
(82382, 68573, 'en', 'name', 'Black Cultural Archives'),
(82383, 68574, 'fr', 'name', 'Commission Internationale pour la Protection des Alpes'),
(82384, 68575, 'en', 'name', 'Korean Spanish Literature Society'),
(82385, 68575, 'ko', 'name', 'ķ•œźµ­ģŠ¤ķŽ˜ģøģ–“ė¬øķ•™ķšŒ'),
(82386, 68576, 'en', 'name', 'JBI International'),
(82387, 68577, 'no_lang_code', 'name', 'MotherApp (China)'),
(82388, 68578, 'no_lang_code', 'name', 'Quality Systems (United States)'),
(82389, 68579, 'en', 'name', 'Shandong Institute for Product Quality Inspection'),
(82390, 68579, 'zh', 'name', 'å±±äøœēœäŗ§å“č“Øé‡ę£€éŖŒē ”ē©¶é™¢'),
(82391, 68580, 'en', 'name', 'National Platform of Self Advocates'),
(82392, 68581, 'no_lang_code', 'name', 'Isastur (Spain)'),
(82393, 68582, 'no_lang_code', 'name', 'Dalim (South Korea)'),
(82394, 68583, 'no_lang_code', 'name', 'Kerry Group (Ireland)'),
(82395, 68584, 'no_lang_code', 'name', 'Synchronoss (United States)'),
(82396, 68585, 'en', 'name', 'Nanjing Architecture Design and Research Institute'),
(82397, 68585, 'zh', 'name', 'å—äŗ¬åø‚å»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬åø'),
(82398, 68586, 'en', 'name', 'Federal Service for Technical and Export Control'),
(82399, 68586, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба по Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ¾Š¼Ńƒ Šø ŃŠŗŃŠæŠ¾Ń€Ń‚Š½Š¾Š¼Ńƒ ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŽ'),
(82400, 68587, 'en', 'name', 'Extreme Light Infrastructure - Nuclear Physics'),
(82401, 68588, 'en', 'name', 'Business West'),
(82402, 68589, 'en', 'name', 'Onnuri Smile Eye Clinic'),
(82403, 68590, 'en', 'name', 'Ministry of Mines and Geology'),
(82404, 68590, 'fr', 'name', 'Ministère des Mines et de la Géologie'),
(82405, 68591, 'no_lang_code', 'name', 'Beijing Railway Institute of Mechanical & Electrical Engineering Group (China)'),
(82406, 68591, 'zh', 'name', 'åŒ—äŗ¬é“é“å·„ēØ‹ęœŗē”µęŠ€ęœÆē ”ē©¶ę‰€č‚”ä»½ęœ‰é™å…¬'),
(82407, 68592, 'no_lang_code', 'name', 'Reprodoc (Ireland)'),
(82408, 68593, 'no_lang_code', 'name', 'Wuxi Taiji industry (China)'),
(82409, 68593, 'zh', 'name', 'ę— é””åø‚å¤Ŗęžå®žäøšč‚”ä»½ęœ‰é™å…¬åø'),
(82410, 68594, 'en', 'name', 'Resource Management Agency'),
(82411, 68595, 'no_lang_code', 'name', 'Viogem'),
(82412, 68595, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¾ŃŃƒŃˆŠµŠ½ŠøŃŽ месторожГений полезных ископаемых, защите инженерных ŃŠ¾Š¾Ń€ŃƒŠ¶ŠµŠ½ŠøŠ¹ от Š¾Š±Š²Š¾Š“Š½ŠµŠ½ŠøŃ, ŃŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Ń‹Š¼ горным работам, геомеханике, геофизике, гиГротехнике, геологии Šø Š¼Š°Ń€ŠŗŃˆŠµŠ¹Š“ŠµŃ€ŃŠŗŠ¾Š¼Ńƒ Гелу'),
(82413, 68596, 'fr', 'name', 'Regroupement des Maisons pour Femmes Victimes de Violence Conjugale'),
(82414, 68597, 'no_lang_code', 'name', 'Jiangsu Province Metallurgical Design Institute (China)'),
(82415, 68597, 'zh', 'name', 'ę±Ÿč‹ēœå†¶é‡‘č®¾č®”é™¢ęœ‰é™å…¬åø'),
(82416, 68598, 'en', 'name', 'Henan Provincial Academy of Building Research'),
(82417, 68598, 'zh', 'name', 'ę²³å—ēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢ęœ‰'),
(82418, 68599, 'en', 'name', 'China National Petroleum and Chemical Planning Institute'),
(82419, 68599, 'zh', 'name', 'ēŸ³ę²¹å’ŒåŒ–å­¦å·„äøšč§„åˆ’é™¢'),
(82420, 68600, 'de', 'name', 'Bertalanffy Zentrum für das Studium der Systemwissenschaften'),
(82421, 68600, 'en', 'name', 'Bertalanffy Center for the Study of Systems Science'),
(82422, 68601, 'no_lang_code', 'name', 'Guzhou Transportation Planning Survey & Design Academe (China)'),
(82423, 68601, 'zh', 'name', 'č“µå·žäŗ¤é€šč§„åˆ’å‹˜åÆŸč®¾č®”é™¢ęœ‰é™å…¬åø'),
(82424, 68602, 'en', 'name', 'Canadian Sleep Society'),
(82425, 68602, 'fr', 'name', 'SociƩtƩ Canadienne du Sommeil'),
(82426, 68603, 'ko', 'name', 'ķ•œźµ­ 금융 공학 ģ»Øģ„¤ķŒ…'),
(82427, 68603, 'no_lang_code', 'name', 'Korea Financial Engineering Consulting (South Korea)'),
(82428, 68604, 'en', 'name', 'The Third Affiliated Hospital of Zhejiang Chinese Medical University'),
(82429, 68604, 'zh', 'name', 'ęµ™ę±Ÿäø­åŒ»čÆå¤§å­¦é™„å±žē¬¬äø‰åŒ»é™¢čŽ«'),
(82430, 68605, 'no_lang_code', 'name', 'Clovergreen (China)'),
(82431, 68606, 'en', 'name', 'Alabama Historical Commission'),
(82432, 68607, 'no_lang_code', 'name', 'Olive Lifesciences (India)'),
(82433, 68608, 'ko', 'name', 'ė„¤ėŖØķŒŒķŠøė„ˆģ¦ˆ'),
(82434, 68608, 'no_lang_code', 'name', 'Nemo Partners (South Korea)'),
(82435, 68609, 'en', 'name', 'Anhui Academy of Coal Science'),
(82436, 68609, 'zh', 'name', 'å®‰å¾½ēœē…¤ē‚­ē§‘å­¦ē ”ē©¶é™¢'),
(82437, 68610, 'en', 'name', 'European Writers'' Council'),
(82438, 68611, 'en', 'name', 'Texoma Council of Governments'),
(82439, 68612, 'en', 'name', 'Chinese Literature Society'),
(82440, 68612, 'ko', 'name', 'ģ¤‘źµ­ģøė¬øķ•™ķšŒ'),
(82441, 68613, 'en', 'name', 'Yantai Nanshan University'),
(82442, 68613, 'zh', 'name', 'ēƒŸå°å—å±±å­¦é™¢'),
(82443, 68614, 'en', 'name', 'Department for Work and Pensions'),
(82444, 68615, 'en', 'name', 'Teerthanker Mahaveer Medical College & Research Centre'),
(82445, 68615, 'hi', 'name', 'ą¤¤ą„€ą¤°ą„ą¤„ą¤‚ą¤•ą¤° ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤ą¤‚ą¤” ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(82446, 68616, 'en', 'name', 'Childminding Ireland'),
(82447, 68617, 'en', 'name', 'North Caucasian Research Institute of Mountain and Foothill Agriculture'),
(82448, 68617, 'ru', 'name', 'Деверо-Кавказский ŠŠ˜Š˜ горного Šø преГгорного сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(82449, 68618, 'en', 'name', 'Youth Theatre Ireland'),
(82450, 68619, 'en', 'name', 'Complex Scientific Research Institute. H.I. Ibrahimov'),
(82451, 68619, 'ru', 'name', 'ŠšŠ¾Š¼ŠæŠ»ŠµŠŗŃŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š„. И. Š˜Š±Ń€Š°Š³ŠøŠ¼Š¾Š²Š° Российской акаГемии наук'),
(82452, 68620, 'en', 'name', 'National Allergy Asthma Bronchitis Institute'),
(82453, 68621, 'en', 'name', '"Московский ŠŠ˜Š˜Š”Š„ Ā«ŠŠµŠ¼Ń‡ŠøŠ½Š¾Š²ŠŗŠ°Ā», Moscow Research Institute" Nemchinovka "'),
(82454, 68622, 'en', 'name', 'Guangdong Institute of Intelligent Manufacturing'),
(82455, 68622, 'zh', 'name', 'å¹æäøœēœę™ŗčƒ½åˆ¶é€ ē ”ē©¶ę‰€ęˆ'),
(82456, 68623, 'en', 'name', 'PRA Health Sciences'),
(82457, 68624, 'en', 'name', 'Siobhan Davies Studios'),
(82458, 68625, 'en', 'name', 'Qatar Financial Centre Authority'),
(82459, 68626, 'no_lang_code', 'name', 'B-Free Technology (China)'),
(82460, 68627, 'en', 'name', 'Swim Ireland'),
(82461, 68628, 'no_lang_code', 'name', 'DNA Electronics (United Kingdom)'),
(82462, 68629, 'de', 'name', 'Ministerium für Verkehr des Landes Nordrhein-Westfalen'),
(82463, 68630, 'en', 'name', 'Qatar Natural History Group'),
(82464, 68631, 'no_lang_code', 'name', 'Tyson Foods (United Kingdom)'),
(82465, 68632, 'de', 'name', 'Finanzministerium des Landes Schleswig-Holstein'),
(82466, 68633, 'en', 'name', 'Tula Institute of Design & Technology'),
(82467, 68633, 'ru', 'name', 'ŠŸŃ€Š¾ŠµŠŗŃ‚Š½Š¾-ŠšŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ Технологический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(82468, 68634, 'no_lang_code', 'name', 'Al Sulaiteen Agricultural & Industrial Complex (Qatar)'),
(82469, 68635, 'en', 'name', 'Wuhu Hit Robot Technology Research Institute'),
(82470, 68635, 'zh', 'name', 'å“ˆē‰¹ęœŗå™Øäŗŗē ”ē©¶é™¢'),
(82471, 68636, 'en', 'name', 'ESI - Post Graduate Institute of Medical Science and Research'),
(82472, 68637, 'en', 'name', 'Irish Blood Transfusion Service, SeirbhĆ­s FuilaistriĆŗchĆ”in na hƉireann'),
(82473, 68638, 'no_lang_code', 'name', 'CMCL Innovations (United Kingdom)'),
(82474, 68639, 'en', 'name', 'Yongin Mental Hospital'),
(82475, 68639, 'ko', 'name', 'ģš©ģøė„ģ •ģ‹ ė³‘ģ›'),
(82476, 68640, 'en', 'name', 'S.R. Kalla Memorial Gastro and General Hospital'),
(82477, 68640, 'hi', 'name', 'ą¤ą¤ø आर ą¤•ą¤²ą„ą¤²ą¤¾ ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤—ą„ˆą¤øą„ą¤Ÿą„ą¤°ą„‹ ą¤ą¤‚ą¤” जनरल ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(82478, 68641, 'en', 'name', 'Democracy Center'),
(82479, 68642, 'no_lang_code', 'name', 'Catalytic Innovations (United States)'),
(82480, 68643, 'en', 'name', 'Academician Pilyugin Center'),
(82481, 68643, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный центр автоматики Šø ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ имени акаГемика Š. А. ŠŸŠøŠ»ŃŽŠ³ŠøŠ½Š°'),
(82482, 68644, 'no_lang_code', 'name', 'Irish Home Energy Rating Energy Services (Ireland)'),
(82483, 68645, 'no_lang_code', 'name', 'Janssen (India)'),
(82484, 68646, 'en', 'name', 'Institute for Adriatic Crops and Karst Reclamation'),
(82485, 68646, 'hr', 'name', 'Institut za jadranske kulture i melioraciju krŔa'),
(82486, 68647, 'en', 'name', 'Korean Society of Educational Technology'),
(82487, 68647, 'ko', 'name', 'ķ•œźµ­źµģœ”ź³µķ•™ķšŒ'),
(82488, 68648, 'de', 'name', 'HBLFA Tirol, Höhere Bundeslehr- und Forschungsanstalt für Landwirtschaft und Ernährung, Lebensmittel- und Biotechnologie Tirol'),
(82489, 68649, 'en', 'name', 'Russian Institute of Radionavigation and Time'),
(82490, 68649, 'ru', 'name', 'Российский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГионавигации Šø времени'),
(82491, 68650, 'no_lang_code', 'name', 'Heathrow Airport Holdings (United Kingdom)'),
(82492, 68651, 'en', 'name', 'Alton Towers Resort'),
(82493, 68652, 'en', 'name', 'Cloud Computing Center'),
(82494, 68652, 'zh', 'name', 'äŗ‘č®”ē®—äø­åæƒ'),
(82495, 68653, 'ro', 'name', 'Institutul Naţional al Patrimoniului'),
(82496, 68654, 'en', 'name', 'The Health Care Science Institute'),
(82497, 68654, 'ja', 'name', 'ćƒ˜ćƒ«ć‚¹ć‚±ć‚¢ē§‘å­¦ē ”ē©¶ę‰€'),
(82498, 68655, 'en', 'name', 'Luoyang Cement Engineering Design and Research Institute'),
(82499, 68655, 'zh', 'name', 'ę“›é˜³ę°“ę³„å·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(82500, 68656, 'en', 'name', 'Science Council'),
(82501, 68657, 'no_lang_code', 'name', 'Stallergenes Greer (Spain)'),
(82502, 68658, 'en', 'name', 'State Research Institute of Mechanical Engineering'),
(82503, 68658, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ" им. Š’.Š’. Бахирева'),
(82504, 68659, 'en', 'name', 'Culinary Society of Korea'),
(82505, 68659, 'ko', 'name', 'ķ•œźµ­ģ”°ė¦¬ķ•™ķšŒ'),
(82506, 68660, 'no_lang_code', 'name', 'Lattice Government Services (United States)'),
(82507, 68661, 'en', 'name', 'Korean Technology Education Association'),
(82508, 68661, 'ko', 'name', 'ķ•œźµ­źø°ģˆ źµģœ”ķ•™ķšŒ'),
(82509, 68662, 'en', 'name', 'International St. Mary''s Hospital'),
(82510, 68662, 'ko', 'name', 'ź°€ķ†Øė¦­ź“€ė™ėŒ€ķ•™źµ'),
(82511, 68663, 'en', 'name', 'Baoding University'),
(82512, 68664, 'en', 'name', 'Youth Society Opening the Future'),
(82513, 68664, 'ko', 'name', 'ģ²­ģ†Œė…„ ģ‚¬ķšŒ ėÆøėž˜ė„¼ ģ—¬ėŠ”'),
(82514, 68665, 'no_lang_code', 'name', 'Lubawa (Poland)'),
(82515, 68666, 'no_lang_code', 'name', 'Shinva (China)'),
(82516, 68666, 'zh', 'name', 'å±±äøœę–°åŽåŒ»ē–—å™Øę¢°č‚”ä»½ęœ‰é™å…¬åø'),
(82517, 68667, 'no_lang_code', 'name', 'Shanghai Construction Group (China)'),
(82518, 68667, 'zh', 'name', 'äøŠęµ·å»ŗå·„é›†å›¢'),
(82519, 68668, 'en', 'name', 'Boardmatch'),
(82520, 68669, 'en', 'name', 'Business to Arts'),
(82521, 68670, 'en', 'name', 'Providence Health Care Research Institute'),
(82522, 68671, 'no_lang_code', 'name', 'Lotus Labs (India)'),
(82523, 68672, 'en', 'name', 'Institue of the History of Christianity in Korea'),
(82524, 68672, 'ko', 'name', 'ķ•œźµ­źµķšŒģ‚¬ķ•™ķšŒ'),
(82525, 68673, 'no_lang_code', 'name', 'Dalian Academy of Reconnaissance and Mapping (China)'),
(82526, 68673, 'zh', 'name', 'å¤§čæžå‹˜ęµ‹ęµ‹ē»˜ē ”ē©¶é™¢'),
(82527, 68674, 'no_lang_code', 'name', 'CapitaLogic (China)'),
(82528, 68675, 'no_lang_code', 'name', 'Anpac Semiconductor (China)'),
(82529, 68675, 'zh', 'name', 'å®‰åø•å…‹åŠåÆ¼ä½“ęœ‰é™å…¬åø'),
(82530, 68676, 'no_lang_code', 'name', 'DSP4YOU (China)'),
(82531, 68677, 'no_lang_code', 'name', 'SinoCDN (China)'),
(82532, 68678, 'no_lang_code', 'name', 'Alford Industries (China)'),
(82533, 68678, 'zh', 'name', 'é˜æå°”ē¦å¾·å·„äøš'),
(82534, 68679, 'en', 'name', 'Ministry of Economy of the Slovak Republic'),
(82535, 68679, 'sk', 'name', 'Ministerstvo hospodƔrstva Slovenskej republiky'),
(82536, 68680, 'en', 'name', 'Kursk Research Institute of Agricultural Production'),
(82537, 68680, 'ru', 'name', 'ŠšŠ£Š Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŠ“Š ŠžŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ“Šž ŠŸŠ ŠžŠ˜Š—Š’ŠžŠ”Š”Š¢Š’Š'),
(82538, 68681, 'en', 'name', 'Pakistan Environmental Protection Agency'),
(82539, 68682, 'en', 'name', 'Ministry of Labour and Social Policies'),
(82540, 68682, 'it', 'name', 'Ministero del lavoro e delle politiche sociali'),
(82541, 68683, 'no_lang_code', 'name', 'Eurofins (Ireland)'),
(82542, 68684, 'no_lang_code', 'name', 'Zensis (China)'),
(82543, 68685, 'en', 'name', 'American Medical Writers Association'),
(82544, 68686, 'en', 'name', 'Scientific Research Institute of Optoelectronic Instrumentation'),
(82545, 68686, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптико-ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾Š³Š¾ ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(82546, 68687, 'en', 'name', 'Fedcap'),
(82547, 68688, 'en', 'name', 'East Asia Institute'),
(82548, 68688, 'ko', 'name', 'ģž¬ė‹Øė²•ģø ė™ģ•„ģ‹œģ•„ģ—°źµ¬ģ›'),
(82549, 68689, 'no_lang_code', 'name', 'Edelman (United Kingdom)'),
(82550, 68690, 'no_lang_code', 'name', 'TOTVS (Brazil)'),
(82551, 68691, 'en', 'name', 'Ningbo Intelligent Manufacturing Industry Research Institute'),
(82552, 68691, 'zh', 'name', 'å®ę³¢ę™ŗčƒ½åˆ¶é€ äøšē ”ē©¶ę‰€'),
(82553, 68692, 'en', 'name', 'The Korean Association of Small Buisness Studies'),
(82554, 68692, 'ko', 'name', 'ķ•œźµ­ģ¤‘ģ†Œźø°ģ—…ķ•™ķšŒ'),
(82555, 68693, 'en', 'name', 'Sport Ireland, Spórt Ɖireann'),
(82556, 68694, 'es', 'name', 'FC Barcelona'),
(82557, 68695, 'no_lang_code', 'name', 'Masteel (China)'),
(82558, 68695, 'zh', 'name', '马钢集团'),
(82559, 68696, 'no_lang_code', 'name', 'CoControl (United Kingdom)'),
(82560, 68697, 'es', 'name', 'Instituto Valenciano de la Edificación'),
(82561, 68698, 'no_lang_code', 'name', 'Q4 Public Relations (Ireland)'),
(82562, 68699, 'no_lang_code', 'name', 'Myungmoon Pharm (South Korea)'),
(82563, 68700, 'de', 'name', 'Kunststoff-Institut Lüdenscheid, Kunststoff-Institut für das mittelständische Wirtschaft NRW GmbH'),
(82564, 68701, 'en', 'name', 'Central Research Institute of Starch-and-Vaccine Industry and Non-Carrageenaceous Saccharose'),
(82565, 68701, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ крахмала'),
(82566, 68702, 'en', 'name', 'ICLEI - Local Governments for Sustainability'),
(82567, 68703, 'no_lang_code', 'name', 'Truly International Holdings (China)'),
(82568, 68704, 'en', 'name', 'IBA Lifesciences'),
(82569, 68705, 'no_lang_code', 'name', 'Highway Resource Solutions (United Kingdom)'),
(82570, 68706, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒ³ćƒ€ć‚¤ćƒŠćƒ ć‚³ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(82571, 68706, 'no_lang_code', 'name', 'Bandai Namco (Japan)'),
(82572, 68707, 'no_lang_code', 'name', 'Wuxi Guolian Development (China)'),
(82573, 68707, 'zh', 'name', 'ę— é””å›½č”å‘å±•é›†å›¢'),
(82574, 68708, 'en', 'name', 'Yunnan Institute of Tropical Crops'),
(82575, 68708, 'zh', 'name', 'äŗ‘å—ēƒ­åø¦ä½œē‰©ē ”ē©¶ę‰€'),
(82576, 68709, 'en', 'name', 'Irkutsk State Agrarian University named after A.A. Ezhevsky'),
(82577, 68709, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А.А. Ежевского'),
(82578, 68710, 'en', 'name', 'Korea Environmental Education Association'),
(82579, 68710, 'ko', 'name', 'ķ•œźµ­ ķ™˜ź²½ 교윔 ģ—°ķ•©ķšŒ'),
(82580, 68711, 'no_lang_code', 'name', 'Xi''an UniIC Semiconductors (China)'),
(82581, 68712, 'en', 'name', 'Collingswood Public Schools'),
(82582, 68713, 'en', 'name', 'Daejeon Health Institute of Technology'),
(82583, 68713, 'ko', 'name', 'ėŒ€ģ „ė³“ź±“ėŒ€ķ•™źµ'),
(82584, 68714, 'en', 'name', 'The Rivers Trust'),
(82585, 68715, 'no_lang_code', 'name', 'China XD Group (China)'),
(82586, 68715, 'zh', 'name', '中国脿电集团'),
(82587, 68716, 'en', 'name', 'The Society of Living Environment System'),
(82588, 68716, 'ko', 'name', 'ķ•œźµ­ģƒķ™œķ™˜ź²½ķ•™ķšŒ'),
(82589, 68717, 'en', 'name', 'Mikhailovsky Military Artillery Academy'),
(82590, 68717, 'ru', 'name', 'ŠœŠøŃ…Š°Š¹Š»Š¾Š²ŃŠŗŠ°Ń Š²Š¾ŠµŠ½Š½Š°Ń Š°Ń€Ń‚ŠøŠ»Š»ŠµŃ€ŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(82591, 68718, 'en', 'name', 'Korean Continence Society'),
(82592, 68718, 'ko', 'name', 'ėŒ€ķ•œė°°ė‡Øģž„ģ• ģš”ģ‹¤źøˆķ•™ķšŒ'),
(82593, 68719, 'en', 'name', 'Chethana Special School'),
(82594, 68720, 'bg', 'name', 'ŠšŠ¾Š¼ŠøŃŠøŃ за защита на потребителите'),
(82595, 68720, 'en', 'name', 'Consumer Protection Commission'),
(82596, 68721, 'en', 'name', 'State Research Institute of Applied Problems'),
(82597, 68721, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГных проблем»'),
(82598, 68722, 'no_lang_code', 'name', 'Equipe Group (United Kingdom)'),
(82599, 68723, 'no_lang_code', 'name', 'Leeds City Region Enterprise Partnership (United Kingdom)'),
(82600, 68724, 'en', 'name', 'Hyoja Geriatric Hospital'),
(82601, 68725, 'en', 'name', 'Military Academy of Communications named after Marshal of the Soviet Union SM Budennogo'),
(82602, 68725, 'ru', 'name', 'Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠ²ŃŠ·Šø имени ŠœŠ°Ń€ŃˆŠ°Š»Š° Доветского Š”Š¾ŃŽŠ·Š° Š”. М. Š‘ŃƒŠ“Ń‘Š½Š½Š¾Š³Š¾'),
(82603, 68726, 'en', 'name', 'State Consumer Rights Protection Authority'),
(82604, 68726, 'lt', 'name', 'Valstybinė ne maisto Produktų Inspekcija prie ÅŖkio Ministerijos'),
(82605, 68727, 'en', 'name', 'Autism Initiatives'),
(82606, 68728, 'no_lang_code', 'name', 'Janssen (Netherlands)'),
(82607, 68729, 'en', 'name', 'Guangdong Southern Telecommunication Planning Consulting & Design Institute'),
(82608, 68729, 'zh', 'name', 'å¹æäøœå—ę–¹ē”µäæ”č§„åˆ’å’ØčÆ¢č®¾č®”é™¢ęœ‰é™å…¬åø'),
(82609, 68730, 'es', 'name', 'Instituto Mayor Campesino'),
(82610, 68731, 'en', 'name', 'Behavioral Science & Policy Association'),
(82611, 68732, 'no_lang_code', 'name', 'Grant Technology (China)'),
(82612, 68733, 'ko', 'name', 'ģ™€ģ“ė””ģƒėŖ…ź³¼ķ•™'),
(82613, 68733, 'no_lang_code', 'name', 'YD Global Life Science (South Korea)'),
(82614, 68734, 'en', 'name', 'Korean Beauty Society'),
(82615, 68734, 'ko', 'name', 'ķ•œźµ­ ė·°ķ‹° ķ•™ķšŒ'),
(82616, 68735, 'en', 'name', 'Institute of Monitoring of Climatic and Ecological Systems'),
(82617, 68735, 'ru', 'name', 'Главный ŠŗŠ¾Ń€ŠæŃƒŃ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мониторинга климатических Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… систем Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(82618, 68736, 'no_lang_code', 'name', 'Playtech (Isle of Man)'),
(82619, 68737, 'en', 'name', 'Subharti Medical College'),
(82620, 68737, 'hi', 'name', 'ą¤Øą„‡ą¤¤ą¤¾ą¤œą„€ ą¤øą„ą¤­ą¤¾ą¤· ą¤šą¤‚ą¤¦ą„ą¤°ą¤¾ ą¤¬ą„‹ą¤ø ą¤øą„ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(82621, 68738, 'en', 'name', 'Benefits Data Trust'),
(82622, 68739, 'no_lang_code', 'name', 'Snap (United States)'),
(82623, 68740, 'en', 'name', 'Gdansk Water Foundation'),
(82624, 68740, 'pl', 'name', 'Gdańska Fundacja Wody'),
(82625, 68741, 'no_lang_code', 'name', 'Decai Decoration (China)'),
(82626, 68741, 'zh', 'name', 'å¾·ę‰č£é£¾č‚”ä»½ęœ‰é™å…¬'),
(82627, 68742, 'no_lang_code', 'name', 'Ionoptika (United Kingdom)'),
(82628, 68743, 'en', 'name', 'American Council on Exercise'),
(82629, 68744, 'en', 'name', 'Association of American Veterinary Medical Colleges'),
(82630, 68745, 'en', 'name', 'Osan University'),
(82631, 68745, 'ko', 'name', 'ģ˜¤ģ‚°ėŒ€ķ•™'),
(82632, 68746, 'de', 'name', 'Technologisches Gewerbemuseum'),
(82633, 68746, 'no_lang_code', 'name', 'Tgm'),
(82634, 68747, 'en', 'name', 'European Plasticisers'),
(82635, 68748, 'no_lang_code', 'name', 'Exploristics (United Kingdom)'),
(82636, 68749, 'en', 'name', 'Green Life Knowledge Economy Research Institute'),
(82637, 68749, 'ko', 'name', 'ė…¹ģƒ‰ ģƒķ™œ ģ§€ģ‹ 경제 ģ—°źµ¬ģ†Œ'),
(82638, 68750, 'en', 'name', 'Human Service Agency'),
(82639, 68751, 'en', 'name', 'Father Muller Charitable Institutions'),
(82640, 68751, 'kn', 'name', 'ą²«ą²¾ą²¦ą²°ą³ ą²®ą³ą²²ą³ą²²ą²°ą³ ą²šą²¾ą²°ą²æą²Ÿą²¬ą²²ą³ ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²·ą²Øą³ą²øą³'),
(82641, 68752, 'no_lang_code', 'name', 'Cargill (Belgium)'),
(82642, 68753, 'no_lang_code', 'name', 'Diagnostics for the Real World (United Kingdom)'),
(82643, 68754, 'en', 'name', 'Homewood Research Institute'),
(82644, 68755, 'en', 'name', 'Scientific Research Clinical Institute. L.I. Sverzhevsky'),
(82645, 68755, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ клинический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚. Š›.И. Двержевского'),
(82646, 68756, 'fr', 'name', 'Institut National d''Excellence en SantƩ et en Services Sociaux'),
(82647, 68757, 'en', 'name', 'Tasan Cultural Foundation'),
(82648, 68757, 'ko', 'name', 'ė‹¤ģ‚°ķ•™ģˆ ė¬øķ™”ģž¬ė‹Øģ€ 근세'),
(82649, 68758, 'en', 'name', 'Intelligent Image and Information System'),
(82650, 68758, 'ko', 'name', 'ģ§€ėŠ„ķ˜• ģ“ėÆøģ§€ ė° 정볓 ģ‹œģŠ¤ķ…œ'),
(82651, 68759, 'en', 'name', 'The Westminster Historical Society'),
(82652, 68760, 'no_lang_code', 'name', 'Cellular Therapeutics (United Kingdom)'),
(82653, 68761, 'en', 'name', 'Eversole Associates'),
(82654, 68762, 'en', 'name', 'National Council of Teachers of English'),
(82655, 68763, 'en', 'name', 'American Marketing Association'),
(82656, 68764, 'en', 'name', 'Irish Society for the Prevention of Cruelty to Animals'),
(82657, 68765, 'en', 'name', 'Yunnan Open University'),
(82658, 68765, 'zh', 'name', 'äŗ‘å—å¼€ę”¾å¤§å­¦'),
(82659, 68766, 'en', 'name', 'National Institute of Research and Development for Electrochemistry and Condensed'),
(82660, 68767, 'en', 'name', 'Nevada Department of Education'),
(82661, 68768, 'en', 'name', 'COPE Galway'),
(82662, 68769, 'en', 'name', 'All-Russia Research Institute of Legumes and Groat Crops'),
(82663, 68769, 'ru', 'name', 'FGBNU "Vserossijskij Nauchno-Issledovatel''skij Institut Zernobobovyh i Krupyanyh Kul''tur"'),
(82664, 68770, 'no_lang_code', 'name', 'GlenDimplex (United Kingdom)'),
(82665, 68771, 'en', 'name', 'Xi''an Railway Survey and Design Institute'),
(82666, 68771, 'zh', 'name', 'č„æå®‰é“č·Æå‹˜ęµ‹č®¾č®”é™¢'),
(82667, 68772, 'en', 'name', 'Scientific Research Institute of Computer Complexes. M.A. Kartsev'),
(82668, 68772, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… комплексов'),
(82669, 68773, 'hi', 'name', 'ą¤øą¤‚ą¤µą„‡ą¤¦ą¤Øą¤¾ ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(82670, 68773, 'no_lang_code', 'name', 'Samvedna Hospital'),
(82671, 68774, 'en', 'name', 'Hong Kong Cytogenetics and Medical Genetics Centre'),
(82672, 68774, 'zh', 'name', 'åŒ»ē–—åŸŗå› äø­åæƒęœ‰é™å…¬åø'),
(82673, 68775, 'en', 'name', 'Infinity Vision Dallas'),
(82674, 68776, 'en', 'name', 'Institute of Optoelectronic Information Technologies'),
(82675, 68776, 'ru', 'name', 'ŠžŃ‚ŠŗŃ€Ń‹Ń‚Š¾Šµ акционерное общество "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптико-ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Ń‹Ń… информационных технологий"'),
(82676, 68777, 'no_lang_code', 'name', 'iThera Medical (Germany)'),
(82677, 68778, 'en', 'name', 'Flanders Environment Agency'),
(82678, 68778, 'nl', 'name', 'Vlaamse Milieumaatschappij'),
(82679, 68779, 'en', 'name', 'The Wiener Library'),
(82680, 68780, 'no_lang_code', 'name', 'Apotex (India)'),
(82681, 68781, 'en', 'name', 'First Nations of Quebec and Labrador Health and Social Services Commission'),
(82682, 68781, 'fr', 'name', 'Commission de la santé et des services sociaux des Premières Nations du Québec et du Labrador'),
(82683, 68782, 'no_lang_code', 'name', 'Chongqing Construction Engineering Investment Holding (China)'),
(82684, 68782, 'zh', 'name', 'é‡åŗ†å»ŗå·„ęŠ•čµ„ęŽ§č‚”'),
(82685, 68783, 'en', 'name', 'Patanjali Research Foundation'),
(82686, 68784, 'no_lang_code', 'name', 'Constellium (France)'),
(82687, 68785, 'en', 'name', 'All-Russian Scientific - Research Institute of Horse Breeding'),
(82688, 68785, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коневоГства'),
(82689, 68786, 'en', 'name', 'International Commission for the Hydrology of the Rhine Basin'),
(82690, 68786, 'nl', 'name', 'Internationale Kommission für die Hydrologie des Rheingebietes'),
(82691, 68787, 'en', 'name', 'Central Research Institute" Dolphin "'),
(82692, 68787, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ "Š”ŠµŠ»ŃŒŃ„ŠøŠ½"'),
(82693, 68788, 'no_lang_code', 'name', 'Gene Tech (China)'),
(82694, 68789, 'no_lang_code', 'name', 'Kingdee (China)'),
(82695, 68790, 'no_lang_code', 'name', 'Arista (United States)'),
(82696, 68791, 'no_lang_code', 'name', 'Smith & Nephew (Australia)'),
(82697, 68792, 'en', 'name', 'The Deputy Prime Minister''s Office'),
(82698, 68793, 'no_lang_code', 'name', 'Nexteer Automotive (United States)'),
(82699, 68794, 'no_lang_code', 'name', 'DƠ-Jiāng Innovations Science and Technology (China)'),
(82700, 68794, 'zh', 'name', 'å¤§ē–†åˆ›ę–°ē§‘ęŠ€ęœ‰é™å…¬åø'),
(82701, 68795, 'ko', 'name', '우 영 ģ˜ė£Œ'),
(82702, 68795, 'no_lang_code', 'name', 'Woo Young Medical (South Korea)'),
(82703, 68796, 'no_lang_code', 'name', 'Wabco (Belgium)'),
(82704, 68797, 'fr', 'name', 'UC-Institut inter RƩgional pour la SAntƩ'),
(82705, 68798, 'en', 'name', 'International Research Society for Public Management'),
(82706, 68799, 'en', 'name', 'Public Health Accreditation Board'),
(82707, 68800, 'ko', 'name', '고구려 ė°œķ•“ ķ•™ķšŒ'),
(82708, 68800, 'no_lang_code', 'name', 'Koguryo Bohai Society'),
(82709, 68801, 'no_lang_code', 'name', 'Castolin Eutectic (Ireland)'),
(82710, 68802, 'en', 'name', 'Guangdong Institute of Rare Metals'),
(82711, 68803, 'no_lang_code', 'name', 'AppoTech (China)'),
(82712, 68803, 'zh', 'name', 'å“ę¦®é›†ęˆé›»č·Æē§‘ęŠ€ęœ‰é™å…¬åø'),
(82713, 68804, 'en', 'name', 'Seth Nandlal Dhoot Hospital'),
(82714, 68805, 'en', 'name', 'Shaanxi Research Design Institute of Petroleum and Chemical Industry'),
(82715, 68805, 'zh', 'name', 'é™•č„æēœēŸ³ę²¹åŒ–å·„ē ”ē©¶č®¾č®”é™¢'),
(82716, 68806, 'nl', 'name', 'Vlaams Instituut Gezond Leven'),
(82717, 68807, 'en', 'name', 'European Utilities Telecom Council'),
(82718, 68808, 'no_lang_code', 'name', 'Studio-R'),
(82719, 68809, 'no_lang_code', 'name', 'Keysight Technologies (United Kingdom)'),
(82720, 68810, 'en', 'name', 'European Youth Information and Counselling Agency'),
(82721, 68810, 'lb', 'name', 'EuropƤesch Jugendinformatioun an Berodungsassistent'),
(82722, 68811, 'en', 'name', 'Cork’s Technology Network'),
(82723, 68812, 'no_lang_code', 'name', 'Epicardio (United Kingdom)'),
(82724, 68813, 'no_lang_code', 'name', 'Lifan (China)'),
(82725, 68813, 'zh', 'name', 'åŠ›åø†é›†å›¢'),
(82726, 68814, 'no_lang_code', 'name', 'Guangzhou Metro Group (China)'),
(82727, 68815, 'de', 'name', 'Ministerium für Kinder, Familie, Flüchtlinge und Integration des Landes Nordrhein-Westfalen'),
(82728, 68816, 'en', 'name', 'European Association for Local Democracy'),
(82729, 68817, 'en', 'name', 'Kostroma Research Institute of Agriculture'),
(82730, 68817, 'ru', 'name', '"ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ¾Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°"'),
(82731, 68818, 'en', 'name', 'The Daegu Historical Association'),
(82732, 68818, 'ko', 'name', 'ėŒ€źµ¬ 역사 ķ•™ķšŒ'),
(82733, 68819, 'en', 'name', 'Kildare Education Centre'),
(82734, 68820, 'no_lang_code', 'name', 'Brandon Bioscience (Ireland)'),
(82735, 68821, 'en', 'name', 'Reef Check Foundation'),
(82736, 68822, 'en', 'name', 'Atlantic Environmental Research Center'),
(82737, 68822, 'es', 'name', 'Centro de Investigaciones Medioambientales del AtlƔntico'),
(82738, 68823, 'en', 'name', 'Department of Livestock Development'),
(82739, 68823, 'th', 'name', 'ąøąø£ąø”ąø›ąøØąøøąøŖąø±ąø•ąø§ą¹Œ'),
(82740, 68824, 'en', 'name', 'Korean Language and Literature Society'),
(82741, 68824, 'ko', 'name', 'ķ•œźµ­ģ–øģ–“ė¬øķ•™ķšŒ'),
(82742, 68825, 'ko', 'name', '우주 ģ†”ė£Øģ…˜'),
(82743, 68825, 'no_lang_code', 'name', 'Space Solutions (South Korea)'),
(82744, 68826, 'en', 'name', 'Korean Society of Child Welfare'),
(82745, 68826, 'ko', 'name', 'ķ•œźµ­ģ•„ė™ė³µģ§€ķ•™ķšŒ'),
(82746, 68827, 'ko', 'name', 'ė¹„ķŒŒź““ ģ—”ģ§€ė‹ˆģ–“ė§ ė° ķ•­ź³µ 우주 ģœ ķ•œ 공사'),
(82747, 68827, 'no_lang_code', 'name', 'NDT Engineering & Aerospace (South Korea)'),
(82748, 68828, 'en', 'name', 'Food Standards Scotland'),
(82749, 68828, 'gd', 'name', 'Inbhe-Bidhe Alba'),
(82750, 68829, 'no_lang_code', 'name', 'Transneft (Russia)'),
(82751, 68829, 'ru', 'name', 'Š¢Ń€Š°Š½ŃŠ½ŠµŃ„Ń‚ŃŒ'),
(82752, 68830, 'no_lang_code', 'name', 'Ford Otosan (Turkey)'),
(82753, 68831, 'en', 'name', 'Dongguan LungCheong Institute of Intelligent Technology'),
(82754, 68831, 'zh', 'name', 'äøœčŽžé¾™ę˜Œę™ŗčƒ½ęŠ€ęœÆē ”ē©¶é™¢ē®€ä»‹'),
(82755, 68832, 'no_lang_code', 'name', 'Chiaro (United Kingdom)'),
(82756, 68833, 'en', 'name', 'State Board of Education'),
(82757, 68834, 'ko', 'name', 'ė°”ģ“ģ˜¤ ķ…Œķ¬ ģ£¼ģ‹ ķšŒģ‚¬ ģ¹“ģ“'),
(82758, 68834, 'no_lang_code', 'name', 'Kai Biotech (South Korea)'),
(82759, 68835, 'ko', 'name', 'ģœ„ė„ˆģŠ¤ 과학 기술'),
(82760, 68835, 'no_lang_code', 'name', 'Winus Technology (South Korea)'),
(82761, 68836, 'en', 'name', 'Tianjin Metallurgical Vocational Technical College'),
(82762, 68836, 'zh', 'name', 'å¤©ę“„å†¶é‡‘čŒäøšęŠ€ęœÆå­¦é™¢'),
(82763, 68837, 'no_lang_code', 'name', 'Embecosm (United Kingdom)'),
(82764, 68838, 'no_lang_code', 'name', 'G-Volution (United Kingdom)'),
(82765, 68839, 'en', 'name', 'International Theatre Institute'),
(82766, 68840, 'no_lang_code', 'name', 'Ukrainian Research Institute of Cable Industry (Ukraine)'),
(82767, 68841, 'en', 'name', 'Canadian Arthritis Patient Alliance'),
(82768, 68841, 'fr', 'name', 'L’Alliance Canadienne des Arthritiques'),
(82769, 68842, 'no_lang_code', 'name', 'Solomon Systech (China)'),
(82770, 68843, 'en', 'name', 'Kazan Research Institute of Aviation Technologies'),
(82771, 68843, 'ru', 'name', 'Казанский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ авиационных технологий'),
(82772, 68844, 'no_lang_code', 'name', 'First Solar (United States)'),
(82773, 68845, 'en', 'name', 'Tusla - Child and Family Agency'),
(82774, 68846, 'en', 'name', 'The Korean Society of Art Theories');
INSERT INTO `ror_settings` VALUES
(82775, 68846, 'ko', 'name', 'ķ•œźµ­ėÆøģˆ ģ“ė” ķ•™ķšŒ'),
(82776, 68847, 'en', 'name', 'ICS Skills'),
(82777, 68848, 'de', 'name', 'Bundesverband mittelstƤndische Wirtschaft'),
(82778, 68849, 'no_lang_code', 'name', 'Ocean FM (Ireland)'),
(82779, 68850, 'no_lang_code', 'name', 'Evonik (Switzerland)'),
(82780, 68851, 'no_lang_code', 'name', 'Hefei Meiling (China)'),
(82781, 68851, 'zh', 'name', 'åˆč‚„ē¾Žč±č‚”ä»½ęœ‰é™å…¬åø'),
(82782, 68852, 'en', 'name', 'Jiangsu Institute of Hydraulic Science and Technology'),
(82783, 68852, 'zh', 'name', 'ę±Ÿč‹ēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(82784, 68853, 'en', 'name', 'The Korean Society for Gifted and Talented'),
(82785, 68853, 'ko', 'name', 'ķ•œźµ­ģ˜ģž¬źµģœ”ķ•™ķšŒ'),
(82786, 68854, 'en', 'name', 'Nevada State Board of Pharmacy'),
(82787, 68855, 'en', 'name', 'Korean Classics Research Society'),
(82788, 68855, 'ko', 'name', 'ķ•œźµ­ ź³ ģ „ ķ•™ķšŒ'),
(82789, 68856, 'en', 'name', 'International Foundation for Integrated Care'),
(82790, 68857, 'no_lang_code', 'name', 'Saint-Petersburg Research Institute of Phthisiopulmonology'),
(82791, 68857, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠŠ˜Š˜ Ń„Ń‚ŠøŠ·ŠøŠ¾ŠæŃƒŠ»ŃŒŠ¼Š¾Š½Š¾Š»Š¾Š³ŠøŠø'),
(82792, 68858, 'no_lang_code', 'name', 'AECOM (China)'),
(82793, 68859, 'no_lang_code', 'name', 'Edwards Lifesciences (South Korea)'),
(82794, 68860, 'en', 'name', 'Osong Medical Innovation Foundation'),
(82795, 68860, 'ko', 'name', 'ģ˜¤ģ†”ģ²Øė‹Øģ˜ė£Œģ‚°ģ—…ģ§„ķ„ģž¬ė‹Ø'),
(82796, 68861, 'en', 'name', 'National Institute of Grape and Wine "Magarach"'),
(82797, 68861, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ винограГарства Šø Š²ŠøŠ½Š¾Š“ŠµŠ»ŠøŃ Ā«ŠœŠ°Š³Š°Ń€Š°Ń‡Ā»'),
(82798, 68862, 'en', 'name', 'Hubei Academy of Environmental Sciences'),
(82799, 68862, 'zh', 'name', 'ę¹–åŒ—ēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(82800, 68863, 'fr', 'name', 'Centre d''aide Pour Hommes de LanaudiĆØre'),
(82801, 68864, 'ar', 'name', 'وزارة Ų§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ ŁˆŲ§Ł„Ų§ŲŖŲµŲ§Ł„Ų§ŲŖ- المبنى Ų§Ł„Ų±Ų¦ŁŠŲ³ŁŠ'),
(82802, 68864, 'en', 'name', 'Ministry of Transport and Communications'),
(82803, 68865, 'no_lang_code', 'name', 'China Post (China)'),
(82804, 68865, 'zh', 'name', '中国邮政'),
(82805, 68866, 'no_lang_code', 'name', 'ConvenientPower Systems (China)'),
(82806, 68867, 'en', 'name', 'Hunan Non-ferrous Metallurgical Labor Protection Institute'),
(82807, 68867, 'zh', 'name', 'ę¹–å—ēœęœ‰č‰²é‡‘å±žåŠ³åŠØäæęŠ¤ē ”ē©¶ę‰€'),
(82808, 68868, 'en', 'name', 'Institute for Programming research and Algorithmics'),
(82809, 68869, 'fr', 'name', 'RƩseau National d''Expertise en Trouble du Spectre de l''Autisme'),
(82810, 68870, 'no_lang_code', 'name', 'FirsTune (China)'),
(82811, 68871, 'en', 'name', 'The Korea Society of Fashion Design'),
(82812, 68871, 'ko', 'name', 'ķ•œźµ­ķŒØģ…˜ė””ģžģøķ•™ķšŒ'),
(82813, 68872, 'ar', 'name', 'المدرسة Ų§Ł„Ų§Ł…Ų±ŁŠŁƒŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(82814, 68872, 'en', 'name', 'American International School in Egypt'),
(82815, 68873, 'en', 'name', 'Battersea Arts Centre'),
(82816, 68874, 'en', 'name', 'Ministry of Justice of the Republic of Lithuania'),
(82817, 68874, 'lt', 'name', 'Lietuvos Respublikos teisingumo ministerija'),
(82818, 68875, 'no_lang_code', 'name', 'Shanghai Institute of Process Automation Instrumentation (China)'),
(82819, 68875, 'zh', 'name', 'äøŠęµ·å·„äøšč‡ŖåŠØåŒ–ä»Ŗč”Øē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(82820, 68876, 'en', 'name', 'Alberta Kidney Disease Network'),
(82821, 68877, 'no_lang_code', 'name', 'Jiangxi Copper (China)'),
(82822, 68877, 'zh', 'name', 'ę±Ÿč„æé“œäøš'),
(82823, 68878, 'en', 'name', 'National Tax Association'),
(82824, 68879, 'no_lang_code', 'name', 'Amgen (India)'),
(82825, 68880, 'en', 'name', 'ECDL Foundation'),
(82826, 68881, 'no_lang_code', 'name', 'Dahua Technology (China)'),
(82827, 68882, 'en', 'name', 'Shri Bhausaheb Hire Government Medical College & Hospital'),
(82828, 68883, 'de', 'name', 'Volkswirtschaftsdirektion'),
(82829, 68883, 'en', 'name', 'Department for Economic Affairs'),
(82830, 68884, 'en', 'name', 'Hong Kong Business Angel Network'),
(82831, 68884, 'zh', 'name', 'é¦™ęøÆå•†äøšå¤©ä½æē½‘'),
(82832, 68885, 'en', 'name', 'Tourism Management Research Organization'),
(82833, 68885, 'ko', 'name', 'ź“€ź“‘ź²½ģ˜ķ•™ķšŒ'),
(82834, 68886, 'no_lang_code', 'name', 'K+S (Germany)'),
(82835, 68887, 'en', 'name', 'Business in the Community'),
(82836, 68888, 'no_lang_code', 'name', 'LivaNova (United States)'),
(82837, 68889, 'en', 'name', 'Saint-Petersburg Research Institute of Ear, Throat, Nose and Speech'),
(82838, 68889, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠŠ˜Š˜ ŃƒŃ…Š°, горла, носа Šø речи'),
(82839, 68890, 'no_lang_code', 'name', 'Sputnik'),
(82840, 68890, 'ru', 'name', 'Š”ŠæŃƒŃ‚Š½ŠøŠŗ'),
(82841, 68891, 'en', 'name', 'Korean Association of Exercise Physiology'),
(82842, 68891, 'ko', 'name', 'ķ•œźµ­ģš“ė™ģƒė¦¬ķ•™ķšŒ'),
(82843, 68892, 'no_lang_code', 'name', 'Fanuc (United Kingdom)'),
(82844, 68893, 'nl', 'name', 'Intercommunale Waterleidingsmaatschappij van Veurne-Ambacht'),
(82845, 68893, 'no_lang_code', 'name', 'Intermunicipal Water Company of Veurne-Craft (Belgium)'),
(82846, 68894, 'no_lang_code', 'name', 'Inventia (India)'),
(82847, 68895, 'en', 'name', 'Mexican Cultural Institute'),
(82848, 68896, 'no_lang_code', 'name', 'i3D Robotics (United Kingdom)'),
(82849, 68897, 'en', 'name', 'The Korean History Education Society'),
(82850, 68897, 'ko', 'name', 'ķ•œźµ­ģ‚¬ 교윔 ķ•™ķšŒ'),
(82851, 68898, 'en', 'name', 'All-Russian Scientific Research Institute of Pulp and Paper Industry'),
(82852, 68898, 'ru', 'name', 'Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¦Š•Š›Š›Š®Š›ŠžŠ—ŠŠž-Š‘Š£ŠœŠŠ–ŠŠžŠ™ ŠŸŠ ŠžŠœŠ«ŠØŠ›Š•ŠŠŠžŠ”Š¢Š˜'),
(82853, 68899, 'no_lang_code', 'name', 'Pfizer (China)'),
(82854, 68899, 'zh', 'name', 'č¾‰ē‘žå…¬åø'),
(82855, 68900, 'en', 'name', 'Yiwu Science and Technology Research Institute'),
(82856, 68900, 'zh', 'name', 'ęµ™ę±Ÿå·„äøšå¤§å­¦ä¹‰ä¹Œē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(82857, 68901, 'en', 'name', 'Council of Professional Associations on Federal Statistics'),
(82858, 68902, 'no_lang_code', 'name', 'Alkem (India)'),
(82859, 68903, 'en', 'name', 'Law Society of Hong Kong'),
(82860, 68903, 'zh', 'name', 'é¦™ęøÆå¾‹åø«ęœƒ'),
(82861, 68904, 'en', 'name', 'Prairie Women''s Health Centre of Excellence'),
(82862, 68904, 'fr', 'name', 'Centre d''excellence pour la santƩ des femmes - rƩgion des Prairies'),
(82863, 68905, 'ko', 'name', 'ėŒ€ģš°ģ œģ•½'),
(82864, 68905, 'no_lang_code', 'name', 'Daewoo Pharma (South Korea)'),
(82865, 68906, 'en', 'name', 'Advanced Manufacturing Research Centre'),
(82866, 68907, 'no_lang_code', 'name', 'System Equipment (China)'),
(82867, 68907, 'zh', 'name', 'ē³»ē»Ÿč®¾å¤‡'),
(82868, 68908, 'en', 'name', 'Institute of Plastics named after G. Petrov'),
(82869, 68908, 'ru', 'name', 'Акционерное общество Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пластмасс имени Š“.Š”.ŠŸŠµŃ‚Ń€Š¾Š²Š°Ā»'),
(82870, 68909, 'en', 'name', 'Church of England'),
(82871, 68910, 'en', 'name', 'Development Research Center'),
(82872, 68910, 'zh', 'name', 'ę°“åˆ©éƒØå‘å±•ē ”ē©¶äø­åæƒ'),
(82873, 68911, 'en', 'name', 'Ministry of Education and Science of Georgia'),
(82874, 68911, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ’įƒįƒœįƒįƒ—įƒšįƒ”įƒ‘įƒ˜įƒ”įƒ įƒ“įƒ įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒ˜įƒ” įƒ”įƒįƒ›įƒ˜įƒœįƒ˜įƒ”įƒ¢įƒ įƒ'),
(82875, 68912, 'en', 'name', 'Urals Research Institute for the Protection of Maternity and Infancy'),
(82876, 68912, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠŠ˜Š˜ охраны материнства Šø млаГенчества'),
(82877, 68913, 'en', 'name', 'First Nations Health and Social Secretariat of Manitoba'),
(82878, 68914, 'no_lang_code', 'name', 'D2NA (United Kingdom)'),
(82879, 68915, 'no_lang_code', 'name', 'Gamaplast (Poland)'),
(82880, 68916, 'no_lang_code', 'name', 'Wanda Group (China)'),
(82881, 68916, 'zh', 'name', '万达集团'),
(82882, 68917, 'en', 'name', 'Monaghan County Council'),
(82883, 68917, 'ga', 'name', 'Comhairle Contae MhuineachƔin'),
(82884, 68918, 'no_lang_code', 'name', 'YAMSU Technologies (Ireland)'),
(82885, 68919, 'it', 'name', 'Pontificia commissione di archeologia sacra, Pontificium consilium archaeologiae sacrae'),
(82886, 68920, 'cy', 'name', 'Amgueddfa Stori Caerdydd'),
(82887, 68920, 'en', 'name', 'Cardiff Story Museum'),
(82888, 68921, 'es', 'name', 'Servicio Diabetología Hospital Córdoba'),
(82889, 68922, 'en', 'name', 'Ontario Long Term Care Association'),
(82890, 68923, 'no_lang_code', 'name', 'ServusNet Informatics (Ireland)'),
(82891, 68924, 'fr', 'name', 'Agence pour l’Entreprise & l’Innovation'),
(82892, 68925, 'en', 'name', 'Korea Regional Economic Reserach institute'),
(82893, 68925, 'ko', 'name', 'ķ•œźµ­ 지역 경제 연구원'),
(82894, 68926, 'en', 'name', 'Anhui Institute of Information Technology'),
(82895, 68926, 'zh', 'name', '꜉ 安徽俔息巄程学院'),
(82896, 68927, 'en', 'name', 'Markham Museum'),
(82897, 68928, 'da', 'name', 'SamsĆø Energiakademi'),
(82898, 68928, 'en', 'name', 'SamsĆø Energy Academy'),
(82899, 68929, 'lv', 'name', 'Latvijas Vides, ģeoloģijas un meteoroloģijas centrs'),
(82900, 68929, 'no_lang_code', 'name', 'Latvian Environment, Geology and Meteorology Centre (Latvia)'),
(82901, 68930, 'no_lang_code', 'name', 'Cerner (Austria)'),
(82902, 68931, 'en', 'name', 'Council of Canadian Academies'),
(82903, 68931, 'fr', 'name', 'Conseil des AcadƩmies Canadiennes'),
(82904, 68932, 'ko', 'name', 'ģœ ķ…”'),
(82905, 68932, 'no_lang_code', 'name', 'U-Tel (South Korea)'),
(82906, 68933, 'en', 'name', 'Huzhou Academy of Agricultural Sciences'),
(82907, 68933, 'zh', 'name', 'ę¹–å·žå†œäøšē§‘å­¦'),
(82908, 68934, 'en', 'name', 'Quebec Network on Suicide, Mood Disorders and Related Disorders'),
(82909, 68935, 'en', 'name', 'Korean Elementary Moral Education Society'),
(82910, 68935, 'ko', 'name', 'ķ•œźµ­ģ“ˆė“±ė„ė•źµģœ”ķ•™ķšŒ'),
(82911, 68936, 'no_lang_code', 'name', 'Concern Energomera (Russia)'),
(82912, 68937, 'en', 'name', 'Stavropol Research Institute of Agriculture'),
(82913, 68937, 'ru', 'name', 'Š”Ń‚Š°Š²Ń€Š¾ŠæŠ¾Š»ŃŒŃŠŗŠ¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(82914, 68938, 'en', 'name', 'Research Institute for Aquaculture No1'),
(82915, 68938, 'vi', 'name', 'Viện NghiĆŖn cứu NuĆ“i trồng Thį»§y sįŗ£n I'),
(82916, 68939, 'no_lang_code', 'name', 'eLearning Studios (United Kingdom)'),
(82917, 68940, 'en', 'name', 'Ministry of the Environment and Spatial Planning'),
(82918, 68940, 'sl', 'name', 'Ministrstvo za okolje in prostor'),
(82919, 68941, 'en', 'name', 'Korean Language Society'),
(82920, 68941, 'ko', 'name', 'ķ•œźø€ ķ•™ķšŒ'),
(82921, 68942, 'es', 'name', 'Barcelona Energia'),
(82922, 68943, 'pt', 'name', 'Instituto da Habitação e da Reabilitação Urbana'),
(82923, 68944, 'no_lang_code', 'name', 'Diodes (China)'),
(82924, 68945, 'no_lang_code', 'name', 'Reasonable Software House (China)'),
(82925, 68946, 'no_lang_code', 'name', 'Avatr (United Kingdom)'),
(82926, 68947, 'en', 'name', 'Shandong Special Equipment Inspection Institute'),
(82927, 68947, 'zh', 'name', 'å±±äøœēœē‰¹ē§č®¾å¤‡ę£€éŖŒē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(82928, 68948, 'no_lang_code', 'name', 'Mondelēz International (India)'),
(82929, 68949, 'en', 'name', 'Contact Helpline'),
(82930, 68950, 'no_lang_code', 'name', 'Check Point (Israel)'),
(82931, 68951, 'en', 'name', 'Korea Society of Translators'),
(82932, 68951, 'ko', 'name', 'ķ•œźµ­ė²ˆģ—­ź°€ķ˜‘ķšŒ'),
(82933, 68952, 'no_lang_code', 'name', 'VNIIPelkhozkhim'),
(82934, 68952, 'ru', 'name', 'Š ŃŠ·Š°Š½Šø был организован Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по технологии Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠµ Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ в сельском Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Šµ Š¼ŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Ń‹Ń… ŃƒŠ“Š¾Š±Ń€ŠµŠ½ŠøŠ¹ Šø химических среГств защиты растений'),
(82935, 68953, 'en', 'name', 'Dongguan Frontier Technology Research Institute'),
(82936, 68953, 'zh', 'name', 'äøœčŽžå‰ę²æęŠ€ęœÆē ”ē©¶é™¢'),
(82937, 68954, 'en', 'name', 'Canadian MPS Society for Mucopolysaccharide and Related Diseases'),
(82938, 68954, 'fr', 'name', 'SociƩtƩ Canadienne des Mucopolysaccharidoses et des Maladies ApparentƩes'),
(82939, 68955, 'en', 'name', 'Korea Economic Law Association'),
(82940, 68955, 'ko', 'name', 'ķ•œźµ­ź²½ģ œė²•ķ•™ķšŒ'),
(82941, 68956, 'no_lang_code', 'name', 'Amadeus (Spain)'),
(82942, 68957, 'no_lang_code', 'name', 'Exor (Netherlands)'),
(82943, 68958, 'ko', 'name', 'ė„¤ģ“ė²„'),
(82944, 68958, 'no_lang_code', 'name', 'Naver (South Korea)'),
(82945, 68959, 'en', 'name', 'Hunan Communications Research Institute'),
(82946, 68959, 'zh', 'name', 'ę¹–å—äŗ¤é€šē ”ē©¶é™¢'),
(82947, 68960, 'de', 'name', 'Ministerium für Umwelt und Verbraucherschutz'),
(82948, 68961, 'ko', 'name', 'ķ•œźµ­ 콜마'),
(82949, 68961, 'no_lang_code', 'name', 'Kolmar Korea (South Korea)'),
(82950, 68962, 'no_lang_code', 'name', 'Jagoda JPS (Poland)'),
(82951, 68963, 'no_lang_code', 'name', 'TFI Digital Media Limited (China)'),
(82952, 68964, 'en', 'name', 'Research Institute Submicron'),
(82953, 68964, 'ru', 'name', 'ŠŠ˜Š˜ Š”ŃƒŠ±Š¼ŠøŠŗŃ€Š¾Š½'),
(82954, 68965, 'ko', 'name', 'ģ•„ģŠ¤ķ…”ė¼ģŠ¤'),
(82955, 68965, 'no_lang_code', 'name', 'Astellas Pharma (South Korea)'),
(82956, 68966, 'no_lang_code', 'name', 'Xinxing Pipes International Development (China)'),
(82957, 68966, 'zh', 'name', 'ę–°å…“é“øē®”č‚”ä»½ęœ‰é™å…¬åø'),
(82958, 68967, 'de', 'name', 'VAF Bundesverband Telekommunikation'),
(82959, 68968, 'no_lang_code', 'name', 'Aero Engine Corporation of China (China)'),
(82960, 68968, 'zh', 'name', 'äø­å›½čˆŖē©ŗå‘åŠØęœŗé›†å›¢'),
(82961, 68969, 'no_lang_code', 'name', 'Jiangsu Maritime Institute'),
(82962, 68969, 'zh', 'name', 'å›½é™…ę•™č‚²äŗ¤ęµäøŽęœåŠ”äø­åæƒ'),
(82963, 68970, 'no_lang_code', 'name', 'Beijing Drainage Group (China)'),
(82964, 68970, 'zh', 'name', 'åŒ—äŗ¬ęŽ’ę°“é›†å›¢'),
(82965, 68971, 'en', 'name', 'Ministry of Justice of the Republic of Kazakhstan'),
(82966, 68971, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ó˜Š“Ń–Š»ŠµŃ‚ министрлігі'),
(82967, 68972, 'en', 'name', 'Dolphin (PG) Institute of Bio Medical and Natural Science'),
(82968, 68973, 'bg', 'name', 'ŠŠ°Ń€Š¾Š“Š½Š° библиотека "Иван Вазов"'),
(82969, 68973, 'en', 'name', 'Ivan Vazov National Library'),
(82970, 68974, 'no_lang_code', 'name', 'Deutsche Bƶrse (Germany)'),
(82971, 68975, 'en', 'name', 'Granite Falls Family Medical Care Center'),
(82972, 68976, 'ko', 'name', 'ė¹„ģ— ė°”ģ“ķ…'),
(82973, 68976, 'no_lang_code', 'name', 'Bmvitek (South Korea)'),
(82974, 68977, 'en', 'name', 'Korean Academic Society for Public Relations'),
(82975, 68977, 'ko', 'name', 'ķ•œźµ­PRķ•™ķšŒ'),
(82976, 68978, 'no_lang_code', 'name', 'Gene (China)'),
(82977, 68978, 'zh', 'name', 'é¦™ęøÆåŸŗå› ęœ‰é™å…¬åø'),
(82978, 68979, 'en', 'name', 'Center of Excellence in Wireless & Information Technology'),
(82979, 68980, 'no_lang_code', 'name', 'British Glass'),
(82980, 68981, 'no_lang_code', 'name', 'China National Chemical Engineering (China)'),
(82981, 68981, 'zh', 'name', 'äø­å›½åŒ–å­¦å·„ēØ‹č‚”ä»½ęœ‰é™å…¬åø'),
(82982, 68982, 'no_lang_code', 'name', 'HIC (South Korea)'),
(82983, 68983, 'en', 'name', 'Agency for Innovation and Technology Transfer'),
(82984, 68983, 'ro', 'name', 'Agenția pentru Inovare și Transfer Tehnologic'),
(82985, 68983, 'ru', 'name', 'Агентство по Š˜Š½Š¾Š²Š°Ń†ŠøŠø Šø Š¢ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ¾Š¼Ńƒ'),
(82986, 68984, 'no_lang_code', 'name', 'EpiGear (Australia)'),
(82987, 68985, 'en', 'name', 'Korea IT Developer Cooperative'),
(82988, 68985, 'ko', 'name', 'ķ•œźµ­ ģ•„ģ“ķ‹° (IT) ź°œė°œģž ķ˜‘ė™ ģ”°ķ•©'),
(82989, 68986, 'no_lang_code', 'name', 'ATM PP (Poland)'),
(82990, 68987, 'en', 'name', 'Restore'),
(82991, 68988, 'en', 'name', 'Independent Expert Consulting Board to Promote Scientific Research Activity in Kazakhstan'),
(82992, 68988, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½Š“Š°Ņ“Ń‹ ғылыми-Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ қызметін Š“Š°Š¼Ń‹Ń‚ŃƒŅ“Š° арналған Ń‚Ó™ŃƒŠµŠ»ŃŃ–Š· сараптамалық кеңес Š±ŠµŃ€Ńƒ кеңесі'),
(82993, 68989, 'no_lang_code', 'name', 'Whipsmart Media (Ireland)'),
(82994, 68990, 'en', 'name', 'Hong Kong New Generation Cultural Association'),
(82995, 68990, 'zh', 'name', 'é¦™ęøÆę–°äø€ä»£ę–‡åŒ–å”ęœƒ'),
(82996, 68991, 'en', 'name', 'Choonhae College of Health Sciences'),
(82997, 68991, 'ko', 'name', 'ģ¶©ķ•“ 걓강 과학 ėŒ€ķ•™'),
(82998, 68992, 'en', 'name', 'Shandong Academy of Pharmaceutical Sciences'),
(82999, 68992, 'zh', 'name', 'å±±äøœēœčÆå­¦ē§‘å­¦é™¢'),
(83000, 68993, 'en', 'name', 'British Council'),
(83001, 68994, 'en', 'name', 'Siberian Research Institute of Mechanization and Electrification of Agriculture'),
(83002, 68994, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Šø ŃŠ»ŠµŠŗŃ‚Ń€ŠøŃ„ŠøŠŗŠ°Ń†ŠøŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(83003, 68995, 'en', 'name', 'Future Earth'),
(83004, 68996, 'no_lang_code', 'name', 'MAMA-86'),
(83005, 68997, 'en', 'name', 'Institute for Strategic Dialogue'),
(83006, 68998, 'en', 'name', 'Society for Personality Assessment'),
(83007, 68999, 'ko', 'name', 'ķ˜„ėŒ€ģ—”ģ§€ė‹ˆģ–“ė§'),
(83008, 68999, 'no_lang_code', 'name', 'Hyundai Engineering (South Korea)'),
(83009, 69000, 'en', 'name', 'Korean Association Of Science and Technology Studies'),
(83010, 69000, 'ko', 'name', 'ķ•œźµ­ 과학 기술 ķ•™ķšŒ'),
(83011, 69001, 'no_lang_code', 'name', 'D.V.Efremov Institute of Electrophysical Apparatus (Russia)'),
(83012, 69002, 'en', 'name', 'Icelandic Transport Authority'),
(83013, 69002, 'is', 'name', 'SamgƶngurƔưuneytiư'),
(83014, 69003, 'no_lang_code', 'name', 'BioSense Institute'),
(83015, 69004, 'en', 'name', 'Korean Social Theory Association'),
(83016, 69004, 'ko', 'name', 'ķ•œźµ­ģ‚¬ķšŒģ“ė” ķ•™ķšŒ'),
(83017, 69005, 'en', 'name', 'State Research Center of the Russian Federation'),
(83018, 69005, 'ru', 'name', 'Š¦ŠŠ˜Š˜ Электроприбор'),
(83019, 69006, 'no_lang_code', 'name', 'ITC (India)'),
(83020, 69007, 'en', 'name', 'Florida Certification Board'),
(83021, 69008, 'no_lang_code', 'name', 'Inteco (Poland)'),
(83022, 69009, 'en', 'name', 'Korean Society for Western Medieval History'),
(83023, 69009, 'ko', 'name', 'ķ•œźµ­ ģ„œģ–‘ 중세사 ķ•™ķšŒ'),
(83024, 69010, 'no_lang_code', 'name', 'Cypress (China)'),
(83025, 69011, 'en', 'name', 'Native Women''s Shelter of Montreal'),
(83026, 69012, 'no_lang_code', 'name', 'Joshua Mqabuko Nkomo Polytechnic'),
(83027, 69013, 'no_lang_code', 'name', 'State Scientific - Research Institute of Chemical Products (Russia)'),
(83028, 69013, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химических ŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š²'),
(83029, 69014, 'no_lang_code', 'name', 'Logital (China)'),
(83030, 69015, 'no_lang_code', 'name', 'Cojac (United Kingdom)'),
(83031, 69016, 'en', 'name', 'Hong Kong Computer Society'),
(83032, 69017, 'en', 'name', 'Institute for Technology of Nuclear and other Mineral Raw Materials'),
(83033, 69017, 'sr', 'name', 'Institut za tehnologiju nuklearnih i drugih mineralnih sirovina'),
(83034, 69018, 'en', 'name', 'Shaanxi Institute of International Trade & Commerce'),
(83035, 69018, 'zh', 'name', '陕脿国际商蓸学院'),
(83036, 69019, 'no_lang_code', 'name', 'Dycotec Materials (United Kingdom)'),
(83037, 69020, 'fr', 'name', 'Sercovie'),
(83038, 69021, 'en', 'name', 'American Institute of Mining, Metallurgical, and Petroleum Engineers'),
(83039, 69022, 'no_lang_code', 'name', 'Kompol (Poland)'),
(83040, 69023, 'fr', 'name', 'CancƩropƓle Nord-Ouest'),
(83041, 69024, 'no_lang_code', 'name', 'Star Vision (China)'),
(83042, 69025, 'en', 'name', 'All-Russian Scientific Research Institute of Experimental Veterinary Sciences. Ya.R. Kovalenko'),
(83043, 69025, 'ru', 'name', 'Š¤Š“Š‘ŠŠ£ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ ветеринарии им. ŠÆ.Š . Коваленко'),
(83044, 69026, 'en', 'name', 'Yancheng Vocational Institute of Industry Technology'),
(83045, 69026, 'zh', 'name', 'ē›åŸŽå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(83046, 69027, 'en', 'name', 'European and American Osteosarcoma Study Group'),
(83047, 69028, 'no_lang_code', 'name', 'Eaton (Ireland)'),
(83048, 69029, 'no_lang_code', 'name', 'Tech Pro (China)'),
(83049, 69030, 'no_lang_code', 'name', 'G''s Fresh (United Kingdom)'),
(83050, 69031, 'no_lang_code', 'name', 'China State Shipbuilding (China)'),
(83051, 69031, 'zh', 'name', 'äø­å›½čˆ¹čˆ¶å·„äøšé›†å›¢å…¬åø'),
(83052, 69032, 'en', 'name', 'Genomics England'),
(83053, 69033, 'en', 'name', 'Latin American Studies Association of Korea'),
(83054, 69033, 'ko', 'name', 'ķ•œźµ­ė¼ķ‹“ģ•„ė©”ė¦¬ģ¹“ķ•™ķšŒ'),
(83055, 69034, 'en', 'name', 'Jewish Historical Institute'),
(83056, 69034, 'pl', 'name', 'Żydowski Instytut Historyczny im. Emanuela Ringelbluma'),
(83057, 69035, 'en', 'name', 'Mythopoeic Society'),
(83058, 69036, 'no_lang_code', 'name', 'Maspex (Poland)'),
(83059, 69037, 'es', 'name', 'Asociación de InformÔticos del Uruguay'),
(83060, 69038, 'en', 'name', 'The Hunterian'),
(83061, 69039, 'no_lang_code', 'name', 'NestlƩ (India)'),
(83062, 69040, 'en', 'name', 'International Organisation for Knowledge Economy and Enterprise Development'),
(83063, 69041, 'no_lang_code', 'name', 'Alvogen (South Korea)'),
(83064, 69042, 'en', 'name', 'China Nonferrous Metals Changsha Investigation Design Institute'),
(83065, 69042, 'zh', 'name', 'äø­å›½ęœ‰č‰²é‡‘å±žé•æę²™å‹˜åÆŸč®¾č®”é™¢'),
(83066, 69043, 'no_lang_code', 'name', 'BH Consulting (Ireland)'),
(83067, 69044, 'en', 'name', 'Shanghai Research Institute of Materials'),
(83068, 69044, 'zh', 'name', 'äøŠęµ·ęę–™ē ”ē©¶ę‰€'),
(83069, 69045, 'no_lang_code', 'name', 'Tsinghua Holdings (China)'),
(83070, 69045, 'zh', 'name', 'ęø…åŽęŽ§č‚”ęœ‰é™å…¬åø'),
(83071, 69046, 'hu', 'name', 'KƶzbeszerzĆ©si Ć©s EllĆ”tĆ”si FőigazgatósĆ”g'),
(83072, 69047, 'no_lang_code', 'name', 'JSpectrum (China)'),
(83073, 69048, 'no_lang_code', 'name', 'Active Text (Poland)'),
(83074, 69049, 'no_lang_code', 'name', 'Novartis (Ireland)'),
(83075, 69050, 'en', 'name', 'Korean Society for the Study of Social Education'),
(83076, 69050, 'ko', 'name', 'ķ•œźµ­ ģ‚¬ķšŒ 교윔 ķ•™ķšŒ'),
(83077, 69051, 'no_lang_code', 'name', 'Amalyst (United Kingdom)'),
(83078, 69052, 'no_lang_code', 'name', 'LinkedTech Solutions (China)'),
(83079, 69053, 'en', 'name', 'Gwynedd Council'),
(83080, 69054, 'en', 'name', 'The Federal State Budgetary Scientific Institution "Izmerov Research Institute of Occupational Health"'),
(83081, 69054, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицины Ń‚Ń€ŃƒŠ“Š° имени акаГемика Š.Ф. Š˜Š·Š¼ŠµŃ€Š¾Š²Š°Ā»'),
(83082, 69055, 'en', 'name', 'Council of Educators in Landscape Architecture'),
(83083, 69056, 'en', 'name', 'Canal and River Trust'),
(83084, 69057, 'no_lang_code', 'name', 'Botamedi (South Korea)'),
(83085, 69058, 'en', 'name', 'Research Institute "Quantum"'),
(83086, 69058, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŠ²Š°Š½Ń‚'),
(83087, 69059, 'ro', 'name', 'Institutul de Cercetari Biologice Cluj-Napoca'),
(83088, 69060, 'fr', 'name', 'Agence pour la Promotion de la CrƩation Industrielle'),
(83089, 69061, 'en', 'name', 'CSIRO Manufacturing'),
(83090, 69062, 'en', 'name', 'Lishui Academy of Agricultural Sciences'),
(83091, 69063, 'en', 'name', 'Netherlands Institute for Multiparty Democracy'),
(83092, 69063, 'nl', 'name', 'Nederlands Instituut voor Meerpartijendemocratie'),
(83093, 69064, 'en', 'name', 'Society for Korean Ancient History'),
(83094, 69064, 'ko', 'name', 'ķ•œźµ­ ź³ ėŒ€ģ‚¬ ķ•™ķšŒ'),
(83095, 69065, 'en', 'name', 'State of Ohio Board of Pharmacy'),
(83096, 69066, 'ko', 'name', '(ģž¬)ķ¬ķ•­ķ…Œķ¬ė…øķŒŒķ¬'),
(83097, 69066, 'no_lang_code', 'name', 'Pohang TechnoPark (South Korea)'),
(83098, 69067, 'no_lang_code', 'name', 'Andrychowska Fabryka Maszyn DEFUM (Poland)'),
(83099, 69068, 'no_lang_code', 'name', 'BAIC Motor (China)'),
(83100, 69069, 'en', 'name', 'Daejeon Technopark'),
(83101, 69069, 'ko', 'name', 'ėŒ€ģ „ķ…Œķ¬ė…øķŒŒķ¬'),
(83102, 69070, 'en', 'name', 'Korean Association of Geography and Environmental Education'),
(83103, 69070, 'ko', 'name', 'ķ•œźµ­ģ§€ė¦¬ķ™˜ź²½źµģœ”ķ•™ķšŒ'),
(83104, 69071, 'en', 'name', 'The Korean Society for the Study of Elementary Education'),
(83105, 69071, 'ko', 'name', 'ķ•œźµ­ģ“ˆė“±źµģœ”ķ•™ķšŒ'),
(83106, 69072, 'no_lang_code', 'name', 'China Nerin Engineering (China)'),
(83107, 69073, 'en', 'name', 'Korean Society of Modern Philosophy'),
(83108, 69073, 'ko', 'name', 'ģ„œģ–‘ź·¼ėŒ€ģ² ķ•™ķšŒ'),
(83109, 69074, 'en', 'name', 'Agricultural Engineering Precision Innovation Centre'),
(83110, 69075, 'en', 'name', 'Creative Carbon Scotland'),
(83111, 69076, 'no_lang_code', 'name', 'Energy Delivery Solutions (United States)'),
(83112, 69077, 'no_lang_code', 'name', 'Innovation Team (China)'),
(83113, 69077, 'zh', 'name', 'å‰µę–°åœ˜éšŠęœ‰é™å…¬åø'),
(83114, 69078, 'no_lang_code', 'name', 'Changhong (China)'),
(83115, 69078, 'zh', 'name', 'å››å·é•æč™¹ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(83116, 69079, 'en', 'name', 'Northwest Research Institute of Chemical Industry'),
(83117, 69079, 'zh', 'name', 'č„æåŒ—åŒ–å·„ē ”ē©¶é™¢'),
(83118, 69080, 'en', 'name', 'Hyundai Research Institute'),
(83119, 69080, 'ko', 'name', 'ķ˜„ėŒ€ź²½ģ œģ—°źµ¬ģ›'),
(83120, 69081, 'en', 'name', 'Korean Association for Religious Education'),
(83121, 69081, 'ko', 'name', 'ķ•œźµ­ 종교 교윔 ķ˜‘ķšŒ'),
(83122, 69082, 'de', 'name', 'Allgemeiner Deutscher Fahrrad-Club'),
(83123, 69083, 'en', 'name', 'Jiangsu Provincial Academy of Forestry Science and Management'),
(83124, 69083, 'zh', 'name', 'ę±Ÿč‹ēœęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(83125, 69084, 'en', 'name', 'Kalawati Saran Children''s Hospital'),
(83126, 69085, 'no_lang_code', 'name', 'Nutanix (United States)'),
(83127, 69086, 'ko', 'name', 'ģ‹ ķ’ģ œģ•½ģ£¼ģ‹ķšŒģ‚¬'),
(83128, 69086, 'no_lang_code', 'name', 'Shin Poong Pharm (South Korea)'),
(83129, 69087, 'en', 'name', 'ICAR-Indian Institute of Maize Research'),
(83130, 69088, 'en', 'name', 'The Society of Philosophical Studies'),
(83131, 69088, 'ko', 'name', 'ģ² ķ•™ģ—°źµ¬ķšŒ'),
(83132, 69089, 'no_lang_code', 'name', 'Kraft Heinz (India)'),
(83133, 69090, 'en', 'name', 'Carbon Capture & Storage Association'),
(83134, 69091, 'en', 'name', 'Netherlands Institute of International Relations Clingendael'),
(83135, 69091, 'nl', 'name', 'Nederlands Instituut voor Internationale Betrekkingen Clingendael'),
(83136, 69092, 'da', 'name', 'Undervisningsministeriet'),
(83137, 69092, 'en', 'name', 'Danish Ministry of Children and Education'),
(83138, 69093, 'en', 'name', 'Korea Advanced Nano Fab Center'),
(83139, 69093, 'ko', 'name', 'ķ•œźµ­ ź³ źø‰ ė‚˜ė…ø 팹 센터'),
(83140, 69094, 'en', 'name', 'All-Russian Scientific Research Institute of high-frequency currents named after VP Vologdin'),
(83141, 69094, 'ru', 'name', 'ā€œŠ’ŃŠµŃ€Š¾ŃŃŠøŠ¹ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ токов высокой Ń‡Š°ŃŃ‚Š¾Ń‚Ń‹ā€ им. Š’.П. ВологГина'),
(83142, 69095, 'en', 'name', 'International Institute for Information Design'),
(83143, 69096, 'en', 'name', 'The Polis Project'),
(83144, 69097, 'en', 'name', 'Russian Scientific Center "Applied Chemistry"'),
(83145, 69097, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ā«ŠŸŃ€ŠøŠŗŠ»Š°Š“Š½Š°Ń Ń…ŠøŠ¼ŠøŃĀ»'),
(83146, 69098, 'en', 'name', 'Research Institute of Development and Operation of oil-field Pipes'),
(83147, 69098, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ разработки Šø ŃŠŗŃŠæŠ»ŃƒŠ°Ń‚Š°Ń†ŠøŠø OCTG'),
(83148, 69099, 'en', 'name', 'Ministry of Foreign Affairs'),
(83149, 69099, 'uk', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ закорГонних справ України'),
(83150, 69100, 'en', 'name', 'Hangzhou Special Equipment Inspection and Research Institute'),
(83151, 69100, 'zh', 'name', 'ę­å·žåø‚ē‰¹ē§č®¾å¤‡ę£€ęµ‹ē ”ē©¶é™¢'),
(83152, 69101, 'en', 'name', 'Ministry of Youth and Sports'),
(83153, 69101, 'ro', 'name', 'Ministerul Tineretului şi Sportului'),
(83154, 69102, 'en', 'name', 'Shanghai Landscape Architectural Design Research institute'),
(83155, 69102, 'zh', 'name', 'äøŠęµ·å›­ęž—å»ŗē­‘č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(83156, 69103, 'no_lang_code', 'name', 'Laterit Productions (France)'),
(83157, 69104, 'en', 'name', 'Shanghai Institute of Quality Inspection and Technical Research'),
(83158, 69104, 'zh', 'name', 'äøŠęµ·åø‚č“Øé‡ē›‘ē£ę£€éŖŒęŠ€ęœÆē ”ē©¶é™¢'),
(83159, 69105, 'en', 'name', 'Heilongjiang Institute of Wood Science'),
(83160, 69105, 'zh', 'name', 'é»‘é¾™ę±ŸēœęœØęē§‘å­¦ē ”ē©¶ę‰€'),
(83161, 69106, 'no_lang_code', 'name', 'Analytics Engines (United Kingdom)'),
(83162, 69107, 'en', 'name', 'Jiangxi Institute of Red Soil'),
(83163, 69107, 'zh', 'name', 'ę±Ÿč„æēœēŗ¢å£¤ē ”ē©¶ę‰€'),
(83164, 69108, 'en', 'name', 'Hunan Software Vocational Institute'),
(83165, 69108, 'zh', 'name', 'ę¹–å—č½Æä»¶čŒäøšå­¦é™¢'),
(83166, 69109, 'no_lang_code', 'name', 'Biome Technologies (United Kingdom)'),
(83167, 69110, 'en', 'name', 'Hospice UK'),
(83168, 69111, 'no_lang_code', 'name', 'ADGS (Qatar)'),
(83169, 69112, 'en', 'name', 'Doncaster Council'),
(83170, 69113, 'no_lang_code', 'name', 'Lasertex (Poland)'),
(83171, 69114, 'en', 'name', 'Sichuan Food Fermentation Industry Research and Design Institute'),
(83172, 69114, 'zh', 'name', 'å››å·ēœé£Ÿå“å‘é…µå·„äøšē ”ē©¶č®¾č®”é™¢'),
(83173, 69115, 'en', 'name', 'Cancer Clinical Research Trust'),
(83174, 69116, 'ko', 'name', 'ģ²­ģ•”ėŒ€ķ•™źµ'),
(83175, 69116, 'no_lang_code', 'name', 'Cheongam College'),
(83176, 69117, 'ar', 'name', 'Ł…Ų±ŁƒŲ² ŲŖŁ†Ł…ŁŠŲ© الأطفال'),
(83177, 69117, 'en', 'name', 'Child Development Center'),
(83178, 69118, 'en', 'name', 'Korea Distribution Science Institute'),
(83179, 69118, 'ko', 'name', '(주)ķ•œźµ­ģœ ķ†µź³¼ķ•™ģ—°źµ¬ģ†Œ'),
(83180, 69119, 'no_lang_code', 'name', 'Criteo (France)'),
(83181, 69120, 'en', 'name', 'European Alliance Against Depression'),
(83182, 69121, 'no_lang_code', 'name', 'Brother International (United Kingdom)'),
(83183, 69122, 'no_lang_code', 'name', 'Inca Digital Printers (United Kingdom)'),
(83184, 69123, 'no_lang_code', 'name', 'Tver Wagon Building Institute (Russia)'),
(83185, 69123, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ «Тверской ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ каретки»'),
(83186, 69124, 'no_lang_code', 'name', 'IDEXX Laboratories (France)'),
(83187, 69125, 'no_lang_code', 'name', 'Kalloc Studios (China)'),
(83188, 69126, 'no_lang_code', 'name', 'Fujitsu (China)'),
(83189, 69127, 'en', 'name', 'International College of Nutrition'),
(83190, 69127, 'hi', 'name', 'ą¤‡ą¤‚ą¤Ÿą¤°ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ़ ą¤Øą„ą¤¤ą„ą¤°ą¤æą¤¤ą¤æą¤“ą¤‚'),
(83191, 69128, 'en', 'name', 'Future Early Childhood Education Society'),
(83192, 69128, 'ko', 'name', 'ėÆøėž˜ģœ ģ•„źµģœ”ķ•™ķšŒ'),
(83193, 69129, 'en', 'name', 'Maryland Emergency Management Agency'),
(83194, 69130, 'no_lang_code', 'name', 'Informatica Qatar (Qatar)'),
(83195, 69131, 'ko', 'name', 'ģ œģ“ģ—ģŠ¤ģ— ķ…Œķ¬ė†€ėŸ¬ģ§€ģ½”ė¦¬ģ•„'),
(83196, 69131, 'no_lang_code', 'name', 'JSM Technology Korea (South Korea)'),
(83197, 69132, 'no_lang_code', 'name', 'Aptcore (United Kingdom)'),
(83198, 69133, 'en', 'name', 'Guangzhou Research Institute of Synthetic Materials'),
(83199, 69134, 'no_lang_code', 'name', 'Beijing Building Construction Research Institute (China)'),
(83200, 69134, 'zh', 'name', 'åŒ—äŗ¬å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(83201, 69135, 'en', 'name', 'All-Russian Scientific Research Institute of Radio Engineering'),
(83202, 69135, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ РаГиотехники'),
(83203, 69136, 'en', 'name', 'Private Capital Research Institute'),
(83204, 69137, 'en', 'name', 'Seoul Sleep Center'),
(83205, 69137, 'ko', 'name', 'ģ„œģšøģˆ˜ė©“ķ“ė¦¬ė‹‰'),
(83206, 69138, 'no_lang_code', 'name', 'The Ural Scientific-Research Institute of Architecture and Construction (Russia)'),
(83207, 69139, 'no_lang_code', 'name', 'Guangdong Baiyun University'),
(83208, 69139, 'zh', 'name', 'ź“‘ė™ė°±ģš“ėŒ€ķ•™źµėŠ”'),
(83209, 69140, 'no_lang_code', 'name', 'Henan Provincial Institute of Communications Planning Survey & Design (China)'),
(83210, 69140, 'zh', 'name', 'ę²³å—ēœäŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(83211, 69141, 'en', 'name', 'All-Russian Scientific-Research Institute Of Mineral Resources named after N.M. Fedorovsky'),
(83212, 69141, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ Š¼ŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ сырья имени Š. М. ФеГоровского'),
(83213, 69142, 'no_lang_code', 'name', 'Suzhou Institute of Building Science Group (China)'),
(83214, 69142, 'zh', 'name', 'č‹å·žåø‚å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(83215, 69143, 'en', 'name', 'Philosophy Of Education Society Of Korea'),
(83216, 69143, 'ko', 'name', 'ķ•œźµ­ 교윔 ģ² ķ•™ķšŒ'),
(83217, 69144, 'en', 'name', 'Hong Kong Plastics Manufacturers Association'),
(83218, 69144, 'zh', 'name', 'é¦™ęøÆå”‘č† ę„­å» å•†ęœ‰é™å…¬åø'),
(83219, 69145, 'en', 'name', 'Korean Arabic Arabic Literature Society'),
(83220, 69145, 'ko', 'name', 'ģ•„ėžģ–“ ģ•„ėžģ–“ ė¬øķ•™ķšŒ'),
(83221, 69146, 'en', 'name', 'Korean Elementary Art Education Association'),
(83222, 69146, 'ko', 'name', 'ķ•œźµ­ģ“ˆė“±ėÆøģˆ źµģœ”ķ•™ķšŒ'),
(83223, 69147, 'en', 'name', 'Government of Mauritius'),
(83224, 69147, 'fr', 'name', 'Gouvernement de Maurice'),
(83225, 69148, 'el', 'name', 'Ī£Ļ…Ī¼Ī²ĪæĻĪ»Ī¹Īæ Ī‘Ļ€ĪæĻ‡ĪµĻ„ĪµĻĻƒĪµĻ‰Ī½ Ī›ĪµĪ¼ĪµĻƒĪæĻ - Ī‘Ī¼Ī±ĪøĪæĻĪ½Ļ„Ī±Ļ‚'),
(83226, 69148, 'en', 'name', 'Sewerage Board of Limassol – Amathus'),
(83227, 69149, 'en', 'name', 'Krasnodar Research Institute of Fishery'),
(83228, 69149, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(83229, 69150, 'no_lang_code', 'name', 'Beijing Survey and Design Institute (China)'),
(83230, 69150, 'zh', 'name', 'åŒ—äŗ¬åø‚å‹˜åÆŸč®¾č®”ē ”ē©¶é™¢ęœ‰é™'),
(83231, 69151, 'no_lang_code', 'name', 'OJSC VNIIST (Russia)'),
(83232, 69151, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Ńƒ Šø ŃŠŗŃŠæŠ»ŃƒŠ°Ń‚Š°Ń†ŠøŠø Ń‚Ń€ŃƒŠ±Š¾ŠæŃ€Š¾Š²Š¾Š“Š¾Š², Š¾Š±ŃŠŠµŠŗŃ‚Š¾Š²'),
(83233, 69152, 'ko', 'name', 'ķ•œźµ­ķ›„ģ§€ķ•„ė¦„'),
(83234, 69152, 'no_lang_code', 'name', 'Fujifilm (South Korea)'),
(83235, 69153, 'ja', 'name', 'ę±čŠäø‰č±é›»ę©Ÿē”£ę„­ć‚·ć‚¹ćƒ†ćƒ ę Ŗå¼ä¼šē¤¾'),
(83236, 69153, 'no_lang_code', 'name', 'Toshiba Mitsubishi-Electric Industrial Systems Corporation (Japan)'),
(83237, 69154, 'no_lang_code', 'name', 'NEC (China)'),
(83238, 69154, 'zh', 'name', 'ę—„ęœ¬é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(83239, 69155, 'en', 'name', 'Jurong Jinghou Machinery Research Institute'),
(83240, 69155, 'zh', 'name', 'å„å®¹äŗ¬ä¾Æęœŗę¢°ē ”ē©¶ę‰€'),
(83241, 69156, 'en', 'name', 'StoryCorps'),
(83242, 69157, 'en', 'name', 'Maekyung Institute for Safety and Environment'),
(83243, 69157, 'ko', 'name', '매경 ģ•ˆģ „ķ™˜ź²½ģ—°źµ¬ģ›'),
(83244, 69158, 'ko', 'name', 'źµ¬ėÆøģ „ģžģ •ė³“źø°ģˆ ģ›'),
(83245, 69158, 'no_lang_code', 'name', 'Gumi Electronics & Information Technology Research Institute (South Korea)'),
(83246, 69159, 'en', 'name', 'Council on Health Research for Development'),
(83247, 69160, 'en', 'name', 'Korea Association of Information Systems'),
(83248, 69160, 'ko', 'name', 'ķ•œźµ­ģ •ė³“ģ‹œģŠ¤ķ…œķ•™ķšŒ'),
(83249, 69161, 'en', 'name', 'Wenzhou Institute of Technology Testing & Calibration'),
(83250, 69161, 'zh', 'name', 'ęø©å·žē†å·„å­¦é™¢ęµ‹čÆ•äøŽę ”å‡†'),
(83251, 69162, 'en', 'name', 'European Council for an Energy Efficient Economy'),
(83252, 69163, 'no_lang_code', 'name', 'Monaghan Biosciences (Ireland)'),
(83253, 69164, 'no_lang_code', 'name', 'CCCC Wuhan Harbour Engineering Design and Research (China)'),
(83254, 69164, 'zh', 'name', '中交武汉港湾巄程设讔研究院'),
(83255, 69165, 'en', 'name', 'The Korean Society for Early Childhood Education'),
(83256, 69165, 'ko', 'name', 'ķ•œźµ­ģœ ģ•„źµģœ”ķ•™ķšŒ'),
(83257, 69166, 'en', 'name', 'Ministry of Agriculture of the Russian Federation'),
(83258, 69166, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Российской ФеГерации'),
(83259, 69167, 'no_lang_code', 'name', 'Zheng yan Seed (China)'),
(83260, 69167, 'zh', 'name', 'éƒ‘ē‡•ē§å­'),
(83261, 69168, 'en', 'name', 'Honam Archaeological Society'),
(83262, 69168, 'ko', 'name', 'ķ˜øė‚Øź³ ź³ ķ•™ķšŒ'),
(83263, 69169, 'ko', 'name', 'ėŒ€ģŠ¹ģ˜ė£Œźø°źø°(주)'),
(83264, 69169, 'no_lang_code', 'name', 'Daiseung Medics (South Korea)'),
(83265, 69170, 'en', 'name', 'All-Russian Research Geological Oil Institute'),
(83266, 69170, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефти'),
(83267, 69171, 'en', 'name', 'All-Russian Research Institute of Agriculture and Soil Protection from erosion'),
(83268, 69172, 'en', 'name', 'Gansu Institute of Mechanical and Electrical Technology'),
(83269, 69172, 'zh', 'name', 'ē”˜č‚ƒęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢ 地址'),
(83270, 69173, 'en', 'name', 'Frank P Matthews'),
(83271, 69174, 'pl', 'name', 'Instytut Europy Środkowo-Wschodniej'),
(83272, 69175, 'no_lang_code', 'name', 'FSUE FNPTS NIIIS named after Yu.Sedakov (Russia)'),
(83273, 69176, 'no_lang_code', 'name', 'Fujian Petrochemical Group (China)'),
(83274, 69176, 'zh', 'name', 'ē¦å»ŗēŸ³ę²¹åŒ–å·„é›†å›¢ęœ‰é™č“£ä»»å…¬åø'),
(83275, 69177, 'no_lang_code', 'name', 'Mindray (China)'),
(83276, 69177, 'zh', 'name', 'ę·±åœ³čæˆē‘žē”Ÿē‰©åŒ»ē–—ē”µå­č‚”ä»½ęœ‰é™å…¬åø ē‰ˆęƒę‰€ęœ‰'),
(83277, 69178, 'ko', 'name', 'ģ¼ģ§„ė°©ģ‚¬ģ„ ģ—”ģ§€ė‹ˆģ–“ė§'),
(83278, 69178, 'no_lang_code', 'name', 'Iljin Radiation Engineering (South Korea)'),
(83279, 69179, 'no_lang_code', 'name', 'Ketonex (United Kingdom)'),
(83280, 69180, 'en', 'name', 'Astronomy and Space'),
(83281, 69181, 'no_lang_code', 'name', 'Blackboard (United States)'),
(83282, 69182, 'en', 'name', 'National Supercomputing Center in Wuxi'),
(83283, 69182, 'zh', 'name', 'ę— é””å›½å®¶č¶…ēŗ§č®”ē®—äø­åæƒ'),
(83284, 69183, 'no_lang_code', 'name', 'Yueyang Changling Equipment Research Institute (China)'),
(83285, 69183, 'zh', 'name', 'å²³é˜³é•æå²­č®¾å¤‡ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(83286, 69184, 'no_lang_code', 'name', 'AgSpace (United Kingdom)'),
(83287, 69185, 'no_lang_code', 'name', 'Chengdu Tiger Microwave Technology (China)'),
(83288, 69185, 'zh', 'name', 'ęˆéƒ½ę³°ę ¼å¾®ę³¢ęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(83289, 69186, 'no_lang_code', 'name', 'Samsung (China)'),
(83290, 69186, 'zh', 'name', 'äø‰ę˜Ÿē”µå­äø­å›½'),
(83291, 69187, 'no_lang_code', 'name', 'General Electric (Poland)'),
(83292, 69188, 'en', 'name', 'International Commission on Non-Ionizing Radiation Protection'),
(83293, 69189, 'en', 'name', 'Korean Educational Research Association'),
(83294, 69189, 'ko', 'name', 'ķ•œźµ­źµģœ”ķ•™ķšŒ'),
(83295, 69190, 'en', 'name', 'Seoul Media Institute of Technology'),
(83296, 69190, 'ko', 'name', 'ģ„œģšøėÆøė””ģ–“ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(83297, 69191, 'no_lang_code', 'name', 'Ekoinwentyka (Poland)'),
(83298, 69192, 'nl', 'name', 'Ministerie van Volksgezondheid'),
(83299, 69193, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ć‚¬ć‚µćƒŸćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(83300, 69193, 'no_lang_code', 'name', 'Sega Sammy (Japan)'),
(83301, 69194, 'en', 'name', 'Dhanvantari Ayurveda College Hospital and Research Centre'),
(83302, 69195, 'no_lang_code', 'name', 'Fresenius Medical Care (India)'),
(83303, 69196, 'en', 'name', 'Korean Publishing Science Society'),
(83304, 69196, 'ko', 'name', 'ķ•œźµ­ 출판 ķ•™ķšŒ'),
(83305, 69197, 'no_lang_code', 'name', 'Juthis (South Korea)'),
(83306, 69198, 'el', 'name', 'Αναπτυξιακή Δυτικής ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(83307, 69198, 'no_lang_code', 'name', 'ANKO (Greece)'),
(83308, 69199, 'de', 'name', 'FƩdƩration Internationale de MƩdecine du Sport'),
(83309, 69199, 'en', 'name', 'International Federation of Sports Medicine'),
(83310, 69200, 'en', 'name', 'Early Childhood Ireland'),
(83311, 69201, 'no_lang_code', 'name', 'A.P. Krylov All-Russian Oil and Gas Research Institute (Russia)'),
(83312, 69201, 'ru', 'name', 'Акционерное общество «Всероссийский нефтегазовый Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени акаГемика А.П. ŠšŃ€Ń‹Š»Š¾Š²Š°Ā»'),
(83313, 69202, 'en', 'name', 'Sholem Aleichem Amur State University'),
(83314, 69202, 'ru', 'name', 'ŠŸŃ€ŠøŠ°Š¼ŃƒŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шолом-Алейхема'),
(83315, 69203, 'ko', 'name', 'ģ›ź“‘ģ œģ•½'),
(83316, 69203, 'no_lang_code', 'name', 'Wonkwang Pharmaceutical (South Korea)'),
(83317, 69204, 'no_lang_code', 'name', 'Pieta House'),
(83318, 69205, 'en', 'name', 'Scientific Research Institute of Industrial Television Rastr'),
(83319, 69205, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾Š³Š¾ Ń‚ŠµŠ»ŠµŠ²ŠøŠ“ŠµŠ½ŠøŃ Растр'),
(83320, 69206, 'ko', 'name', 'ģ œģ¼ģ•½ķ’ˆ ģ£¼ģ‹ķšŒģ‚¬'),
(83321, 69206, 'no_lang_code', 'name', 'Jeil Pharmaceutical (South Korea)'),
(83322, 69207, 'en', 'name', 'Public.Resource.Org'),
(83323, 69208, 'no_lang_code', 'name', 'Yunnan Investment Group (China)'),
(83324, 69208, 'zh', 'name', 'äŗ‘ęŠ•é›†å›¢'),
(83325, 69209, 'en', 'name', 'Hong Kong Optical Manufacturers Association'),
(83326, 69209, 'zh', 'name', 'é¦™ęøÆå…‰å­¦åˆ¶é€ å•†åä¼š'),
(83327, 69210, 'no_lang_code', 'name', 'Hutchinson (United Kingdom)'),
(83328, 69211, 'en', 'name', 'Georgia Department of Juvenile Justice'),
(83329, 69212, 'en', 'name', 'Southern States Energy Board'),
(83330, 69213, 'en', 'name', 'Korean Brecht Society'),
(83331, 69213, 'ko', 'name', 'ķ•œźµ­ėøŒė ˆķžˆķŠøķ•™ķšŒ'),
(83332, 69214, 'no_lang_code', 'name', 'Green Energy Engineering Consultancy (China)'),
(83333, 69215, 'en', 'name', 'Ministry of Finance'),
(83334, 69215, 'sq', 'name', 'Ministria e Financave dhe Ekonomisƫ'),
(83335, 69216, 'en', 'name', 'St. Paul''s Co-educational College'),
(83336, 69216, 'zh', 'name', 'č–äæē¾…ē”·å„³äø­å­ø'),
(83337, 69217, 'no_lang_code', 'name', 'Shanxi Provincial Institute of Chemical Industry (China)'),
(83338, 69217, 'zh', 'name', 'å±±č„æēœåŒ–å·„ē ”ē©¶ę‰€'),
(83339, 69218, 'en', 'name', 'Shenzhen Academy of Metrology and Quality Inspection'),
(83340, 69218, 'zh', 'name', 'ę·±åœ³åø‚č®”é‡č“Øé‡ę£€ęµ‹ē ”ē©¶é™¢'),
(83341, 69219, 'en', 'name', 'Institute of Nuclear Power Operations'),
(83342, 69220, 'en', 'name', 'Outreach Scout Foundation'),
(83343, 69221, 'no_lang_code', 'name', 'VNIIStrudormash (Russia)'),
(83344, 69221, 'ru', 'name', 'Š’ŠŠ˜Š˜ŃŃ‚Ń€Š¾Š¹Š“Š¾Ń€Š¼Š°Ńˆ'),
(83345, 69222, 'en', 'name', 'Ministry of Finance and Economy'),
(83346, 69222, 'sr', 'name', 'Ministarstvo finansija-uprava carina'),
(83347, 69223, 'en', 'name', 'Xiamen Nanyang University'),
(83348, 69223, 'zh', 'name', 'åŽ¦é—Øå—ę“‹å­¦é™¢'),
(83349, 69224, 'cs', 'name', 'Agentura pro podporu podnikƔnƭ a investic, CzechInvest'),
(83350, 69225, 'no_lang_code', 'name', 'II-VI (China)'),
(83351, 69226, 'no_lang_code', 'name', 'Joyson Electronics (China)'),
(83352, 69226, 'zh', 'name', 'å‡čƒœē”µå­'),
(83353, 69227, 'no_lang_code', 'name', 'Impedans (Ireland)'),
(83354, 69228, 'en', 'name', 'Hebei Semiconductor Research Institute'),
(83355, 69229, 'no_lang_code', 'name', 'Umbo Computer Vision (United Kingdom)'),
(83356, 69230, 'no_lang_code', 'name', 'Lens Technology (China)'),
(83357, 69230, 'zh', 'name', 'č“ę€ē§‘ęŠ€'),
(83358, 69231, 'no_lang_code', 'name', 'Gogo (United States)'),
(83359, 69232, 'en', 'name', 'Xihu Institute of Electronic Research'),
(83360, 69232, 'zh', 'name', 'ę­å·žč„æę¹–ē”µå­ē ”ē©¶ę‰€'),
(83361, 69233, 'no_lang_code', 'name', 'Hong Kong Telecommunications Limited (China)'),
(83362, 69234, 'en', 'name', 'Krasnodar Research Institute of Agriculture named after P. Lukyanenko'),
(83363, 69234, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠøŠ¹ ŠŠ˜Š˜ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° имени П. П. Š›ŃƒŠŗŃŒŃŠ½ŠµŠ½ŠŗŠ¾'),
(83364, 69235, 'en', 'name', 'Henan Forestry Vocational College'),
(83365, 69235, 'zh', 'name', 'ę²³å—ęž—äøščŒäøšå­¦é™¢'),
(83366, 69236, 'en', 'name', 'Institute of Lithuanian Literature and Folklore'),
(83367, 69236, 'lt', 'name', 'Lietuvių Literatūros ir Tautosakos Institutas'),
(83368, 69237, 'en', 'name', 'Research Institute of Metallurgy'),
(83369, 69237, 'ru', 'name', 'Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠøĀ»'),
(83370, 69238, 'en', 'name', 'Commodity Futures Trading Commission'),
(83371, 69239, 'en', 'name', 'North Atlantic Salmon Conservation Organization'),
(83372, 69240, 'da', 'name', 'Naturstyrelsen'),
(83373, 69240, 'en', 'name', 'Danish Nature Agency'),
(83374, 69241, 'en', 'name', 'Korea Agricultural Economics Association'),
(83375, 69241, 'ko', 'name', 'ķ•œźµ­ė†ģ—…ź²½ģ œķ•™ķšŒ'),
(83376, 69242, 'en', 'name', 'Ural Scientific Research and Design Institute of Galurgy'),
(83377, 69242, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š°Š»ŃƒŃ€Š³ŠøŠø'),
(83378, 69243, 'en', 'name', 'Ural research Institute of Phthisiopulmonology'),
(83379, 69243, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń„Ń‚ŠøŠ·ŠøŠ¾ŠæŃƒŠ»ŃŒŠ¼Š¾Š½Š¾Š»Š¾Š³ŠøŠø'),
(83380, 69244, 'no_lang_code', 'name', 'inStream Media (United States)'),
(83381, 69245, 'en', 'name', 'Institute of Licensing'),
(83382, 69246, 'en', 'name', 'All-Russian Scientific Research Institute of Confectionery Industry'),
(83383, 69246, 'ru', 'name', 'Š¤Š“Š‘ŠŠ£ Всероссийский ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŠ¾Š½Š“ŠøŃ‚ŠµŃ€ŃŠŗŠ¾Š¹ ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(83384, 69247, 'no_lang_code', 'name', 'Oursky (China)'),
(83385, 69248, 'en', 'name', 'War Studies Academy'),
(83386, 69248, 'pl', 'name', 'Akademia Sztuki Wojennej'),
(83387, 69249, 'no_lang_code', 'name', 'Finima Innovations (China)'),
(83388, 69250, 'no_lang_code', 'name', 'Bodle Technologies (United Kingdom)'),
(83389, 69251, 'no_lang_code', 'name', 'Accoson (United Kingdom)'),
(83390, 69252, 'en', 'name', 'Indian Institute of Wheat and Barley Research'),
(83391, 69252, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤—ą„‡ą¤¹ą„‚ą¤‚ और ą¤œą„Œ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(83392, 69253, 'en', 'name', 'Federal Protective Service'),
(83393, 69253, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба охраны'),
(83394, 69254, 'ko', 'name', '(주)ģ‹¬ģœ '),
(83395, 69254, 'no_lang_code', 'name', 'Symyoo'),
(83396, 69255, 'en', 'name', 'International Commission on Radiation Units and Measurements'),
(83397, 69256, 'en', 'name', 'Soongeui Women''s College'),
(83398, 69256, 'ko', 'name', 'ģˆ­ģ˜ģ—¬ģžėŒ€ķ•™źµ'),
(83399, 69257, 'no_lang_code', 'name', 'SAIC Motor (China)'),
(83400, 69257, 'zh', 'name', 'äøŠę±½é›†å›¢'),
(83401, 69258, 'no_lang_code', 'name', 'Tata Consulting Engineers (Qatar)'),
(83402, 69259, 'no_lang_code', 'name', 'Bryant Symons Technologies (United Kingdom)'),
(83403, 69260, 'fr', 'name', 'Centre Hospitalier de la DracƩnie'),
(83404, 69261, 'no_lang_code', 'name', 'M-Gen Mobile Technology (China)'),
(83405, 69262, 'no_lang_code', 'name', 'Silvapa (Portugal)'),
(83406, 69263, 'en', 'name', 'Heze Academy of Agricultural Sciences'),
(83407, 69263, 'zh', 'name', 'čę³½å†œē§‘é™¢'),
(83408, 69264, 'ko', 'name', 'ģ—ģŠ¤ķ”¼ķ…'),
(83409, 69264, 'no_lang_code', 'name', 'SP Technology (South Korea)'),
(83410, 69265, 'en', 'name', 'Korean-German Vocational College'),
(83411, 69265, 'ko', 'name', 'ķ•œė…ģ§ģ—…ģ „ė¬øķ•™źµ'),
(83412, 69266, 'no_lang_code', 'name', 'CDK Global (United States)'),
(83413, 69267, 'en', 'name', 'Institute of Biological, Environmental and Rural Sciences'),
(83414, 69268, 'en', 'name', 'Natura Foundation'),
(83415, 69269, 'no_lang_code', 'name', 'Coship (China)'),
(83416, 69269, 'zh', 'name', 'ę·±åœ³åø‚åŒę“²ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(83417, 69270, 'en', 'name', 'Ministry of Justice'),
(83418, 69270, 'sv', 'name', 'Justitiedepartementet'),
(83419, 69271, 'no_lang_code', 'name', 'Techtra (Poland)'),
(83420, 69272, 'no_lang_code', 'name', 'SverdNIIhimmash'),
(83421, 69272, 'ru', 'name', 'ДверГловский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химического Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(83422, 69273, 'no_lang_code', 'name', 'Print-Rite (China)'),
(83423, 69273, 'zh', 'name', '天威 (å®‰ę·)'),
(83424, 69274, 'en', 'name', 'Gorta Self Help Africa'),
(83425, 69275, 'en', 'name', 'Kenya Forest Service'),
(83426, 69276, 'en', 'name', 'Korean Association of French Language and Literature'),
(83427, 69276, 'ko', 'name', 'ķ•œźµ­ ė¶ˆģ–“ ķ•™ķšŒ'),
(83428, 69277, 'no_lang_code', 'name', 'Institut für Solartechnologien (Germany)'),
(83429, 69278, 'en', 'name', 'Institute of New Carbon Materials and Technologies'),
(83430, 69279, 'no_lang_code', 'name', 'Contamac (United Kingdom)'),
(83431, 69280, 'en', 'name', 'The Korean Ceramic Society'),
(83432, 69280, 'ko', 'name', 'ėŒ€ķ•œ ė„ģž ķ•™ķšŒ'),
(83433, 69281, 'en', 'name', 'International Water Institute'),
(83434, 69282, 'en', 'name', 'Mississippi Board of Pharmacy'),
(83435, 69283, 'en', 'name', 'Guangxi Institute of Oceanography'),
(83436, 69283, 'zh', 'name', '广脿海擋研究所'),
(83437, 69284, 'en', 'name', 'Lithuanian Institute of History'),
(83438, 69284, 'lt', 'name', 'Lietuvos Istorijos Institutas'),
(83439, 69285, 'en', 'name', 'Ministry of Public Administration'),
(83440, 69285, 'sl', 'name', 'Ministrstvo za javno upravo'),
(83441, 69286, 'fr', 'name', 'Centrale des Syndicats du QuƩbec'),
(83442, 69287, 'en', 'name', 'Korea Peace Institute'),
(83443, 69287, 'ko', 'name', 'ķ•œźµ­ ķ‰ķ™” ģ—°źµ¬ģ†Œ'),
(83444, 69288, 'en', 'name', 'Ministry of Natural Resources and Environment'),
(83445, 69288, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ прироГных Ń€ŠµŃŃƒŃ€ŃŠ¾Š² Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø Российской ФеГерации'),
(83446, 69289, 'no_lang_code', 'name', 'APT Electronics (China)'),
(83447, 69290, 'no_lang_code', 'name', 'General Mills (United Kingdom)'),
(83448, 69291, 'no_lang_code', 'name', 'Baltic Ceramics Investments (Poland)'),
(83449, 69292, 'de', 'name', 'Schweizerische Bundesbahnen'),
(83450, 69292, 'en', 'name', 'Swiss Federal Railways'),
(83451, 69292, 'fr', 'name', 'Chemins de fer fƩdƩraux suisses'),
(83452, 69293, 'no_lang_code', 'name', 'MODUS (Qatar)'),
(83453, 69294, 'en', 'name', 'Khanty-Mansiysk State Medical Academy');
INSERT INTO `ror_settings` VALUES
(83454, 69294, 'ru', 'name', 'Єанты-ŠœŠ°Š½ŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(83455, 69295, 'en', 'name', 'Copenhagen Institute of Interaction Design'),
(83456, 69296, 'en', 'name', 'British Columbia Academic Health Science Network'),
(83457, 69297, 'en', 'name', 'Agricultural Farmer''s Policy Institute'),
(83458, 69297, 'ko', 'name', 'ė†ģ—…ė†ėÆ¼ģ •ģ±…ģ—°źµ¬ģ†Œ 녀름'),
(83459, 69298, 'en', 'name', 'United Nations Children''s Fund India'),
(83460, 69299, 'en', 'name', 'Korea Association of Teachers of English'),
(83461, 69299, 'ko', 'name', 'ķ•œźµ­ģ˜ģ–“źµģœ”ķ•™ķšŒ'),
(83462, 69300, 'no_lang_code', 'name', 'iMusicTech (China)'),
(83463, 69301, 'en', 'name', 'Esoterix'),
(83464, 69302, 'en', 'name', 'Delaware Heritage Commission'),
(83465, 69303, 'en', 'name', 'Research Institute of Problems of Storage Rosrezerva'),
(83466, 69303, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ агентства по Š³Š¾ŃŃƒŠ“арственным резервам'),
(83467, 69304, 'en', 'name', 'Institute for Knowledge Mobilization'),
(83468, 69304, 'fr', 'name', 'l''Institut pour la Mobilisation des Connaissances'),
(83469, 69305, 'en', 'name', '27th Central Research Institute of the Ministry of Defence of the Russian Federation'),
(83470, 69305, 'ru', 'name', '27-й Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны Российской ФеГерации'),
(83471, 69306, 'en', 'name', 'Dagestan Center of Eye Microsurgery'),
(83472, 69306, 'ru', 'name', 'Дагестанский центр Š¼ŠøŠŗŃ€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø глаза'),
(83473, 69307, 'en', 'name', 'National Association of Regional Game Councils'),
(83474, 69308, 'en', 'name', 'Physicians East'),
(83475, 69309, 'no_lang_code', 'name', 'Arconic (United Kingdom)'),
(83476, 69310, 'pt', 'name', 'Associação Kuyper para Estudos Transdisciplinares'),
(83477, 69311, 'en', 'name', 'Povolzhsky Research Institute of Ecological and Meliorative Technologies'),
(83478, 69311, 'ru', 'name', 'Волжский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š»Š¾Š³Š¾-мелиоративных технологий'),
(83479, 69312, 'ko', 'name', 'ģ›°ė¹™ģ—˜ģ—ģŠ¤'),
(83480, 69312, 'no_lang_code', 'name', 'Wellbeing LS (South Korea)'),
(83481, 69313, 'no_lang_code', 'name', 'Tableau Software (United States)'),
(83482, 69314, 'no_lang_code', 'name', 'Daqo (China)'),
(83483, 69314, 'zh', 'name', '大全'),
(83484, 69315, 'en', 'name', 'Glass-House Community Led Design'),
(83485, 69316, 'en', 'name', 'United Cancer Support Foundation'),
(83486, 69317, 'de', 'name', 'Johanniter-Krankenhaus Bonn'),
(83487, 69318, 'en', 'name', 'Plaquemines Parish Government'),
(83488, 69319, 'en', 'name', 'Zhejiang Institute of Modern Textile Industry'),
(83489, 69319, 'zh', 'name', 'ęµ™ę±ŸēœēŽ°ä»£ēŗŗē»‡å·„äøšē ”ē©¶é™¢'),
(83490, 69320, 'en', 'name', 'The Korea Association of Yeolin Education'),
(83491, 69320, 'ko', 'name', 'ķ•œźµ­ģ—“ė¦°źµģœ”ķ•™ķšŒ'),
(83492, 69321, 'no_lang_code', 'name', 'K-UTEC Salt Technologies (Germany)'),
(83493, 69322, 'no_lang_code', 'name', 'DSV (United Kingdom)'),
(83494, 69323, 'en', 'name', 'Department of Disaster Prevention and Mitigation'),
(83495, 69323, 'th', 'name', 'ąøąø£ąø”ąø›ą¹‰ąø­ąø‡ąøąø±ąø™ą¹ąø„ąø°ąøšąø£ąø£ą¹€ąø—ąø²ąøŖąø²ąø˜ąø²ąø£ąø“ąø ąø±ąø¢'),
(83496, 69324, 'en', 'name', 'Russian State Agrarian Correspondence University'),
(83497, 69324, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный аграрный заочный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(83498, 69325, 'en', 'name', 'Luliang University'),
(83499, 69325, 'zh', 'name', '吕梁学院'),
(83500, 69326, 'en', 'name', 'Abbottabad University of Science and Technology'),
(83501, 69327, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ عبدالله Ų§Ł„Ų·ŲØŁŠŲ©'),
(83502, 69327, 'en', 'name', 'King Abdullah Medical City'),
(83503, 69328, 'no_lang_code', 'name', 'Shanghai Huali Microelectronics (China)'),
(83504, 69328, 'zh', 'name', 'äøŠęµ·åŽåŠ›å¾®ē”µå­ęœ‰é™å…¬åø'),
(83505, 69329, 'en', 'name', 'Federal Scientific Center for Feed Production and Agroecology named after V.R. Williams'),
(83506, 69329, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ кормов имени Š’. Š . Š’ŠøŠ»ŃŒŃŠ¼ŃŠ°'),
(83507, 69330, 'en', 'name', 'Global Cultural Contents Association'),
(83508, 69330, 'ko', 'name', '세계 문화 ģ½˜ķ…ģø  ķ•™ķšŒ'),
(83509, 69331, 'no_lang_code', 'name', 'ShaoLin Microsystems (China)'),
(83510, 69332, 'en', 'name', 'Center for Inquiry'),
(83511, 69333, 'no_lang_code', 'name', 'Stallergenes Greer (United States)'),
(83512, 69334, 'no_lang_code', 'name', 'KanHan Technologies (China)'),
(83513, 69335, 'en', 'name', 'Suzhou Chien-Shiung Institute of Technology'),
(83514, 69335, 'zh', 'name', 'č‹å·žå„é›„čŒäøšęŠ€ęœÆå­¦é™¢'),
(83515, 69336, 'en', 'name', 'Korea International Understanding Education Society'),
(83516, 69336, 'ko', 'name', 'ķ•œźµ­ 국제 ģ“ķ•“ 교윔 ķ•™ķšŒ'),
(83517, 69337, 'no_lang_code', 'name', 'Guangdong Industrial Equipment Installation (China)'),
(83518, 69337, 'zh', 'name', 'å¹æäøœēœå·„äøšč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(83519, 69338, 'fr', 'name', 'Centre Interdisciplinaire de Nanoscience de Marseille'),
(83520, 69339, 'en', 'name', 'Institute of Applied Physics'),
(83521, 69339, 'ru', 'name', 'Акционерного ŠžŠ±Ń‰ŠµŃŃ‚ва Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной физики'),
(83522, 69340, 'no_lang_code', 'name', 'Ionix Advanced Technologies (United Kingdom)'),
(83523, 69341, 'bg', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на транспорта, информационните технологии Šø ŃŃŠŠ¾Š±Ń‰ŠµŠ½ŠøŃŃ‚Š° на Република Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(83524, 69341, 'en', 'name', 'Ministry of Transport, Information Technology and Communications'),
(83525, 69342, 'en', 'name', 'Zhejiang Modern Architectural Design & Research Institute'),
(83526, 69342, 'zh', 'name', 'ęµ™ę±ŸēœēŽ°ä»£å»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(83527, 69343, 'mr', 'name', 'ą¤øą„ą¤µą¤šą„ą¤›ą¤‚ą¤¦ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(83528, 69343, 'no_lang_code', 'name', 'Hygienic Research Institute (India)'),
(83529, 69344, 'en', 'name', 'Middle East Research Institute'),
(83530, 69345, 'hu', 'name', 'PuskƔs Tivadar TƔvkƶzlƩsi Technikum'),
(83531, 69346, 'fr', 'name', 'Communautique'),
(83532, 69347, 'en', 'name', 'Computing Center'),
(83533, 69347, 'ru', 'name', 'Š’Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ центр'),
(83534, 69348, 'en', 'name', 'The Association For Korean Law Of Property'),
(83535, 69348, 'ko', 'name', 'ķ•œźµ­ ė²•ģƒ ķ˜‘ķšŒ'),
(83536, 69349, 'no_lang_code', 'name', 'Analog Devices (Ireland)'),
(83537, 69350, 'no_lang_code', 'name', 'Tango Telecom (Ireland)'),
(83538, 69351, 'no_lang_code', 'name', 'Dongfeng Motor Group (China)'),
(83539, 69352, 'en', 'name', 'Enshi Tujia and Miao Autonomous Prefecture Academy of Agricultural Sciences'),
(83540, 69352, 'zh', 'name', 'ę©ę–½åœŸå®¶ę—č‹—ę—č‡Ŗę²»å·žå†œäøšē§‘å­¦é™¢'),
(83541, 69353, 'no_lang_code', 'name', 'Clean Energy Prospector (United Kingdom)'),
(83542, 69354, 'en', 'name', 'Electoral Commission'),
(83543, 69355, 'no_lang_code', 'name', 'Bundesverbandes Keramische Industrie (Germany)'),
(83544, 69356, 'en', 'name', 'Guizhou Electric Power Design and Research Institute'),
(83545, 69356, 'zh', 'name', 'č“µå·žē”µåŠ›č®¾č®”ē ”ē©¶é™¢'),
(83546, 69357, 'no_lang_code', 'name', 'Dragonchip (China)'),
(83547, 69358, 'no_lang_code', 'name', 'AutoTrip (United Kingdom)'),
(83548, 69359, 'en', 'name', 'Tennessee Emergency Management Agency'),
(83549, 69360, 'no_lang_code', 'name', 'Tekno Surgical (Ireland)'),
(83550, 69361, 'no_lang_code', 'name', 'Tile Films (Ireland)'),
(83551, 69362, 'en', 'name', 'City of Dublin Skin and Cancer Hospital Charity'),
(83552, 69363, 'en', 'name', 'Institute of Information Science'),
(83553, 69363, 'sl', 'name', 'InŔtitut za informacijske znanosti'),
(83554, 69364, 'en', 'name', 'Shanghai Harbour Engineering Design & Research Institute'),
(83555, 69364, 'zh', 'name', 'äøŠęµ·ęµ·ę¹¾å·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(83556, 69365, 'en', 'name', 'Live Art Development Agency'),
(83557, 69366, 'no_lang_code', 'name', 'Risun (China)'),
(83558, 69366, 'zh', 'name', 'ę—­é™½é›†åœ˜'),
(83559, 69367, 'en', 'name', 'Yonsei Proteome Research Center'),
(83560, 69367, 'ko', 'name', '연세 ķ”„ė”œķ…Œģ˜“ 연구원 단백첓 ė¶„ģ„'),
(83561, 69368, 'en', 'name', 'Rockaway Waterfront Alliance'),
(83562, 69369, 'en', 'name', 'The Korea English Education Society'),
(83563, 69369, 'ko', 'name', 'ķ•œźµ­ ģ˜ģ–“ 교윔 ķ•™ķšŒ'),
(83564, 69370, 'en', 'name', 'Partnerships in Environmental Management for the Seas of East Asia'),
(83565, 69371, 'no_lang_code', 'name', 'MCO (Ireland)'),
(83566, 69372, 'no_lang_code', 'name', 'BG Research (United Kingdom)'),
(83567, 69373, 'en', 'name', 'Council of Scientific Society Presidents'),
(83568, 69374, 'en', 'name', 'Irkutsk Antiplague Research Institute of Siberia and Far East'),
(83569, 69374, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠæŃ€Š¾Ń‚ŠøŠ²Š¾Ń‡ŃƒŠ¼Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дибири Šø Š”Š°Š»ŃŒŠ½ŠµŠ³Š¾ Востока'),
(83570, 69375, 'en', 'name', 'Combined Arms Academy of the Armed Forces of the Russian Federation'),
(83571, 69375, 'ru', 'name', 'ŠžŠ±Ń‰ŠµŠ²Š¾Š¹ŃŠŗŠ¾Š²Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š’Š¾Š¾Ń€ŃƒŠ¶Ń‘Š½Š½Ń‹Ń… Дил Российской ФеГерации'),
(83572, 69376, 'en', 'name', 'Korea Economic Research Institute'),
(83573, 69376, 'ko', 'name', 'ķ•œźµ­ź²½ģ œģ—°źµ¬ģ›'),
(83574, 69377, 'en', 'name', 'Guangdong Provincial Architectural Design and Research Institute'),
(83575, 69377, 'zh', 'name', 'å¹æäøœēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(83576, 69378, 'no_lang_code', 'name', 'Research Institute of Technology (Russia)'),
(83577, 69379, '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'),
(83578, 69380, 'no_lang_code', 'name', 'Shanghai Micro Electronics Equipment (China)'),
(83579, 69380, 'zh', 'name', 'äøŠęµ·å¾®ē”µå­č£…å¤‡'),
(83580, 69381, 'no_lang_code', 'name', 'OGT Amenity (Ireland)'),
(83581, 69382, 'fr', 'name', 'Agence Locale de l''Energie et du Climat de la MƩtropole de Lyon'),
(83582, 69383, 'en', 'name', 'Research Institute Ekran'),
(83583, 69383, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(83584, 69384, 'en', 'name', 'Guilin Electrical Equipment Research Institute'),
(83585, 69384, 'zh', 'name', 'ę”‚ęž—ē”µå™Øē§‘å­¦ē ”ē©¶é™¢ęœ‰é™'),
(83586, 69385, 'en', 'name', 'Korea Bio Polytechnic College'),
(83587, 69385, 'ko', 'name', 'ķ•œźµ­ķ“ė¦¬ķ…ė°”ģ“ģ˜¤ėŒ€ķ•™'),
(83588, 69386, 'en', 'name', 'Hong Kong Hide & Leather Traders'' Association'),
(83589, 69386, 'zh', 'name', 'é¦™ęøÆēš®ę„­å•†ęœƒęœ‰é™å…¬åø'),
(83590, 69387, 'en', 'name', 'Bristol Robotics Laboratory'),
(83591, 69388, 'en', 'name', 'Ceemet'),
(83592, 69389, 'en', 'name', 'International Drug Development'),
(83593, 69390, 'en', 'name', 'Suzhou Electrical Apparatus Science Academy'),
(83594, 69390, 'zh', 'name', 'č‹å·žē”µå™Øē§‘å­¦ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(83595, 69391, 'en', 'name', 'Korean Economic and Business Association'),
(83596, 69391, 'ko', 'name', 'ķ•œźµ­ź²½ģ œķ†µģƒķ•™ķšŒ'),
(83597, 69392, 'ga', 'name', 'DeafHear'),
(83598, 69393, 'no_lang_code', 'name', 'ZTT (China)'),
(83599, 69393, 'zh', 'name', 'ę±Ÿč‹äø­å¤©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(83600, 69394, 'en', 'name', 'The Korean Criminal Law Association'),
(83601, 69394, 'ko', 'name', 'ķ•œźµ­ ķ˜•ė²• ķ˜‘ķšŒ'),
(83602, 69395, 'en', 'name', 'General Directorate for National Roads and Motorways'),
(83603, 69395, 'pl', 'name', 'Generalna Dyrekcja Dróg Krajowych i Autostrad'),
(83604, 69396, 'no_lang_code', 'name', 'Intelligent Health (United Kingdom)'),
(83605, 69397, 'en', 'name', 'Crop Health and Protection'),
(83606, 69398, 'no_lang_code', 'name', 'Indestructible Paint (United Kingdom)'),
(83607, 69399, 'en', 'name', 'KBP Instrument Design Bureau'),
(83608, 69399, 'ru', 'name', 'ŠšŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠ¾Šµ Š±ŃŽŃ€Š¾ ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ им. акаГемика А. Š“. Шипунова'),
(83609, 69400, 'en', 'name', 'Qiqihar Institute of Engineering'),
(83610, 69400, 'zh', 'name', 'é½é½å“ˆå°”å·„ēØ‹å­¦é™¢'),
(83611, 69401, 'no_lang_code', 'name', 'Atpath Technologies (China)'),
(83612, 69402, 'ko', 'name', 'ķ•œźµ­ė£¬ė“œė²”'),
(83613, 69402, 'no_lang_code', 'name', 'Lundbeck (South Korea)'),
(83614, 69403, 'en', 'name', 'Korean Society For Philosophy East-West'),
(83615, 69403, 'ko', 'name', 'ķ•œźµ­ė™ģ„œģ² ķ•™ķšŒ'),
(83616, 69404, 'no_lang_code', 'name', 'JIT Solutions (Poland)'),
(83617, 69405, 'tr', 'name', 'TUBITAK BILGEM, TÜBİTAK Bilişim ve Bilgi Güvenliği İleri Teknolojiler Araştırma Merkezi'),
(83618, 69406, 'en', 'name', 'Social Entrepreneurs Agency'),
(83619, 69406, 'pt', 'name', 'AgĆŖncia de Empreendedores Sociais'),
(83620, 69407, 'en', 'name', 'All-Russian Scientific Research Institute for Irrigated Agriculture'),
(83621, 69408, 'no_lang_code', 'name', 'Kahramaa (Qatar)'),
(83622, 69409, 'no_lang_code', 'name', 'Xianyang Research and Design Institute of Ceramics (China)'),
(83623, 69409, 'zh', 'name', 'å’øé˜³é™¶ē“·ē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åø'),
(83624, 69410, 'no_lang_code', 'name', 'Historic Futures (United Kingdom)'),
(83625, 69411, 'en', 'name', 'Jeju Regional Business Evaluation Foundation'),
(83626, 69411, 'ko', 'name', '제주 지역 사업 ķ‰ź°€ ģž¬ė‹Ø'),
(83627, 69412, 'no_lang_code', 'name', 'LendingClub (United States)'),
(83628, 69413, 'en', 'name', 'Zhejiang Sorfa Life Science Research'),
(83629, 69413, 'zh', 'name', 'ęµ™ę±Ÿē”•åŽē”Ÿå‘½ē§‘å­¦ē ”ē©¶č‚”ä»½ęœ‰é™å…¬åø'),
(83630, 69414, 'en', 'name', 'Aberdeenshire Council'),
(83631, 69415, 'en', 'name', 'Kyung-in Women''s University'),
(83632, 69415, 'ko', 'name', 'ź²½ ģ—¬ģž ėŒ€ķ•™źµ'),
(83633, 69416, 'no_lang_code', 'name', 'Comet (Russia)'),
(83634, 69416, 'ru', 'name', 'комета'),
(83635, 69417, 'en', 'name', 'East Renfrewshire Council'),
(83636, 69418, 'en', 'name', 'International Minerals Innovation Institute'),
(83637, 69419, 'no_lang_code', 'name', 'Dialog Semiconductor (United Kingdom)'),
(83638, 69420, 'no_lang_code', 'name', 'Tianjin Aolian Special Steel Structure Installation Engineering (China)'),
(83639, 69420, 'zh', 'name', 'å¤©ę“„åø‚å„„č”ē‰¹é’¢ē»“ęž„å®‰č£…å·„ēØ‹ęœ‰é™å…¬åø'),
(83640, 69421, 'en', 'name', 'Alaska Department of Commerce, Community and Economic Development'),
(83641, 69422, 'no_lang_code', 'name', 'Antikor (United Kingdom)'),
(83642, 69423, 'no_lang_code', 'name', 'MicroGen Biotech (Ireland)'),
(83643, 69424, 'no_lang_code', 'name', 'Rongsheng Petrochemical (China)'),
(83644, 69424, 'zh', 'name', 'č£ē››ēŸ³åŒ–č‚”ä»½ęœ‰é™å…¬åø'),
(83645, 69425, 'bg', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на енергетиката на Република Š‘ŃŠŠ»Š³Š°Ń€ŠøŃ'),
(83646, 69425, 'en', 'name', 'Ministry of Energy of the Republic of Bulgaria'),
(83647, 69426, 'en', 'name', 'Scientific Research Institute of Flax Mechanization'),
(83648, 69426, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ механизации Š²Š¾Š·Š“ŠµŠ»Ń‹Š²Š°Š½ŠøŃ льна'),
(83649, 69427, 'no_lang_code', 'name', 'Qatargas (Qatar)'),
(83650, 69428, 'no_lang_code', 'name', 'Sam Chun Dang Pharm (South Korea)'),
(83651, 69429, 'de', 'name', 'Zentrum für Kunst und Medien'),
(83652, 69429, 'en', 'name', 'Center for Art and Media Karlsruhe'),
(83653, 69430, 'en', 'name', 'Ministry of Defence'),
(83654, 69430, 'sl', 'name', 'Ministrstvo za Obrambo Republike Slovenije'),
(83655, 69431, 'fr', 'name', 'CancƩropƓle Grand Sud-Ouest'),
(83656, 69432, 'fr', 'name', 'SociƩtƩ QuƩbƩcoise d''Hypertension ArtƩrielle'),
(83657, 69433, 'ro', 'name', 'Institutul Naţional de Cercetare-Dezvoltare pentru Mecatronică si Tehnica Masurării'),
(83658, 69434, 'en', 'name', 'Early Intervention Foundation'),
(83659, 69435, 'fr', 'name', 'Observatoire RƩgional de la SantƩ et du Social'),
(83660, 69436, 'no_lang_code', 'name', 'Huainan Mining Industry Group (China)'),
(83661, 69436, 'zh', 'name', 'ę·®å—ēŸæäøšé›†å›¢'),
(83662, 69437, 'pt', 'name', 'CSEM'),
(83663, 69438, 'en', 'name', 'Ivanovo State Polytechnic University'),
(83664, 69438, 'ru', 'name', 'Ивановского Š³Š¾ŃŃƒŠ“арственного политехнического ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š°'),
(83665, 69439, 'no_lang_code', 'name', 'Goodbaby (China)'),
(83666, 69439, 'zh', 'name', 'å„½å­©å­å›½é™…ęŽ§č‚”ęœ‰é™å…¬åø'),
(83667, 69440, 'no_lang_code', 'name', 'Cloudnine'),
(83668, 69441, 'no_lang_code', 'name', 'Exergyn (Ireland)'),
(83669, 69442, 'no_lang_code', 'name', 'Pure Storage (United States)'),
(83670, 69443, 'no_lang_code', 'name', 'Exagenica (United Kingdom)'),
(83671, 69444, 'en', 'name', 'Technology Management Economics Society'),
(83672, 69444, 'ko', 'name', 'źø°ģˆ ź²½ģ˜ź²½ģ œķ•™ķšŒ'),
(83673, 69445, 'no_lang_code', 'name', 'Crossing the Line (Ireland)'),
(83674, 69446, 'en', 'name', 'Vernadsky National Library of Ukraine'),
(83675, 69446, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° бібліотека України імені Š’. І. Š’ŠµŃ€Š½Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(83676, 69447, 'cy', 'name', 'Cymdeithas Llywodraeth Leol Cymru'),
(83677, 69447, 'en', 'name', 'Welsh Local Government Association'),
(83678, 69448, 'no_lang_code', 'name', 'Agrola (Poland)'),
(83679, 69449, 'no_lang_code', 'name', 'BIOCAD (Russia)'),
(83680, 69450, 'en', 'name', 'African Literature Association'),
(83681, 69451, 'en', 'name', 'Fujian Inspection and Research Institute for Product Quality'),
(83682, 69451, 'zh', 'name', 'ē¦å»ŗēœäŗ§å“č“Øé‡ę£€éŖŒē ”ē©¶é™¢'),
(83683, 69452, 'en', 'name', 'Pan-Korea English Teachers Association'),
(83684, 69452, 'ko', 'name', 'ķŒ¬ģ½”ė¦¬ģ•„ģ˜ģ–“źµģœ”ķ•™ķšŒ'),
(83685, 69453, 'en', 'name', 'Institute of Oil and Gas Problems of the Siberian Branch of the RAS'),
(83686, 69453, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем нефти Šø газа Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(83687, 69454, 'en', 'name', 'Korea International Accounting Association'),
(83688, 69454, 'ko', 'name', 'ķ•œźµ­źµ­ģ œķšŒź³„ķ•™ķšŒ'),
(83689, 69455, 'en', 'name', 'Centre for Family Medicine'),
(83690, 69456, 'ko', 'name', 'ģ—˜ėŸ¬ź°„'),
(83691, 69456, 'no_lang_code', 'name', 'Allergan (South Korea)'),
(83692, 69457, 'en', 'name', 'Nanjing Boiler and Pressure Vessel Inspection Institute'),
(83693, 69457, 'zh', 'name', 'å—äŗ¬åø‚é”…ē‚‰åŽ‹åŠ›å®¹å™Øę£€éŖŒē ”ē©¶é™¢'),
(83694, 69458, 'en', 'name', 'Greater Shankill Partnership'),
(83695, 69459, 'en', 'name', 'Hunan Coal Science Research Institute'),
(83696, 69459, 'zh', 'name', 'ę¹–å—ēœē…¤ē‚­ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(83697, 69460, 'no_lang_code', 'name', 'Hong Kong RFID (China)'),
(83698, 69461, 'en', 'name', 'All-Russian Research and Design Institute of Hard Alloys and Refractory Metals'),
(83699, 69461, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ тверГых сплавов Šø Ń‚ŃƒŠ³Š¾ŠæŠ»Š°Š²ŠŗŠøŃ… металлов'),
(83700, 69462, 'en', 'name', 'Ministry of Health'),
(83701, 69463, 'en', 'name', 'FORZA, Agency For Sustainable Development of The Carpathian Region'),
(83702, 69463, 'uk', 'name', 'Агентство ŃŠæŃ€ŠøŃŠ½Š½Ń ŃŃ‚Š°Š»Š¾Š¼Ńƒ Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ Ń€ŠµŠ³Ń–Š¾Š½Ńƒ Š¤ŠžŠ Š—Š'),
(83703, 69464, 'en', 'name', 'Liming Vocational University'),
(83704, 69464, 'zh', 'name', 'é»Žę˜ŽčŒäøšå¤§å­¦'),
(83705, 69465, 'no_lang_code', 'name', 'Entropea Labs (United Kingdom)'),
(83706, 69466, 'no_lang_code', 'name', 'Halo Labs (United States)'),
(83707, 69467, 'no_lang_code', 'name', 'nwStor (China)'),
(83708, 69468, 'no_lang_code', 'name', 'Lotus Innovative Health (China)'),
(83709, 69469, 'no_lang_code', 'name', 'Archipelago Technology (United Kingdom)'),
(83710, 69470, 'no_lang_code', 'name', 'Bluetomation (Poland)'),
(83711, 69471, 'en', 'name', 'Glasgow Housing Association'),
(83712, 69472, 'en', 'name', 'Korean Literature Research Society'),
(83713, 69472, 'ko', 'name', 'ķ•œźµ­ė¬øķ•™ģ—°źµ¬ķ•™ķšŒ'),
(83714, 69473, 'no_lang_code', 'name', 'Boryszew (Poland)'),
(83715, 69474, 'en', 'name', 'The Modern English Education Society'),
(83716, 69475, 'en', 'name', 'Central Council for Research in Siddha'),
(83717, 69476, 'en', 'name', 'Tianjin Academy of Environmental Sciences'),
(83718, 69476, 'zh', 'name', 'å¤©ę“„åø‚ēŽÆå¢ƒäæęŠ¤ē§‘å­¦ē ”ē©¶é™¢'),
(83719, 69477, 'no_lang_code', 'name', 'Heartisans (China)'),
(83720, 69478, 'no_lang_code', 'name', 'Glory Sky Group (China)'),
(83721, 69479, 'no_lang_code', 'name', 'Shantou Light Industrial Machinery Factory (China)'),
(83722, 69479, 'zh', 'name', 'ę±•å¤“č½»å·„ęœŗę¢°åŽ‚ęœ‰é™å…¬åø'),
(83723, 69480, 'en', 'name', 'Maryland Department of General Services'),
(83724, 69481, 'no_lang_code', 'name', 'Kaliskie Zakłady Przemysłu Terenowego (Poland)'),
(83725, 69482, 'no_lang_code', 'name', 'Janssen (United States)'),
(83726, 69483, 'en', 'name', 'All-Union Scientific Research Institute of Woodworking Industry'),
(83727, 69483, 'ru', 'name', 'Š’ŃŠµŃŠ¾ŃŽŠ·Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“ŠµŃ€ŠµŠ²Š¾Š¾Š±Ń€Š°Š±Š°Ń‚Ń‹Š²Š°ŃŽŃ‰ŠµŠ¹ ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(83728, 69484, 'en', 'name', 'The Korean Society of Sports Science'),
(83729, 69484, 'ko', 'name', 'ėŒ€ķ•œ 첓윔 ķ•™ķšŒ'),
(83730, 69485, 'en', 'name', 'Zhejiang Fashion Institute of Technology'),
(83731, 69485, 'zh', 'name', 'ęµ™ę±Ÿēŗŗē»‡ęœč£…čŒäøšęŠ€ęœÆå­¦é™¢'),
(83732, 69486, 'no_lang_code', 'name', 'Zeus Entertainment (China)'),
(83733, 69486, 'zh', 'name', 'å¤§čæžå¤©ē„žåØ±ä¹č‚”ä»½ęœ‰é™å…¬åø'),
(83734, 69487, 'en', 'name', 'ProPublica'),
(83735, 69488, 'no_lang_code', 'name', 'Joyoung (China)'),
(83736, 69488, 'zh', 'name', '九阳'),
(83737, 69489, 'no_lang_code', 'name', 'Shougang (China)'),
(83738, 69489, 'zh', 'name', '首钢集团'),
(83739, 69490, 'en', 'name', 'The International Commission for Driver Testing'),
(83740, 69490, 'nl', 'name', 'Commission Internationale des Examens de Conduite Automobile'),
(83741, 69491, 'en', 'name', 'Society of Korean Classical Literature Education'),
(83742, 69491, 'ko', 'name', 'ķ•œźµ­ź³ ģ „ė¬øķ•™źµģœ”ķ•™ķšŒ'),
(83743, 69492, 'en', 'name', 'Korea Testing Laboratory'),
(83744, 69492, 'ko', 'name', 'ķ•œźµ­ ģ‹¤ķ—˜ 연구원'),
(83745, 69493, 'en', 'name', 'National Board of Customs'),
(83746, 69493, 'fi', 'name', 'Tullihallitus'),
(83747, 69494, 'en', 'name', 'Detroit Rescue Mission Ministries'),
(83748, 69495, 'no_lang_code', 'name', 'Far (United Kingdom)'),
(83749, 69496, 'no_lang_code', 'name', 'Hotblock Onboard (France)'),
(83750, 69497, 'bg', 'name', 'Š˜Š·ŠæŃŠŠ»Š½ŠøŃ‚ŠµŠ»Š½Š° Š°Š³ŠµŠ½Ń†ŠøŃ "ŠœŠ¾Ń€ŃŠŗŠ° ŠŠ“Š¼ŠøŠ½ŠøŃŃ‚Ń€Š°Ń†ŠøŃ"'),
(83751, 69497, 'en', 'name', 'Executive Agency Maritime Administration'),
(83752, 69498, 'en', 'name', 'Hong Kong Jewelry Manufacturers'' Association'),
(83753, 69498, 'zh', 'name', 'é¦™ęøÆē åÆ¶č£½é€ ę„­å» å•†ęœƒ'),
(83754, 69499, 'ko', 'name', 'ģ›ė°”ģ“ģ˜¤ģ  '),
(83755, 69499, 'no_lang_code', 'name', 'Wonbiogen (South Korea)'),
(83756, 69500, 'en', 'name', 'Ukrainian Institute for the Design of Metallurgical Plants'),
(83757, 69500, 'uk', 'name', 'Украинский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃŽ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŃ… завоГов'),
(83758, 69501, 'no_lang_code', 'name', 'Flowgroup (United Kingdom)'),
(83759, 69502, 'en', 'name', 'Flint Institute Of Arts'),
(83760, 69503, 'en', 'name', 'Modern Korean Literature Assocation'),
(83761, 69503, 'ko', 'name', 'ķ•œźµ­ ź·¼ėŒ€ ė¬øķ•™ķšŒ'),
(83762, 69504, 'ko', 'name', 'ėŒ€ė• ėŒ€ķ•™źµ'),
(83763, 69504, 'no_lang_code', 'name', 'Daeduk University'),
(83764, 69505, 'en', 'name', 'Shenzhen Special Equipment Safety Inspection Institute'),
(83765, 69505, 'zh', 'name', 'ę·±åœ³åø‚ē‰¹ē§č®¾å¤‡å®‰å…Øę£€éŖŒē ”ē©¶é™¢'),
(83766, 69506, 'no_lang_code', 'name', 'Ningbo Putian Information Industry (China)'),
(83767, 69506, 'zh', 'name', 'å®ę³¢ę™®å¤©äæ”ęÆäŗ§äøš'),
(83768, 69507, 'en', 'name', 'Balakovo Engineering and Technology Institute'),
(83769, 69507, 'ru', 'name', 'Балаковский инженерно-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(83770, 69508, 'en', 'name', 'Harbin Welding Institute'),
(83771, 69508, 'zh', 'name', 'å“ˆå°”ę»Øē„ŠęŽ„ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(83772, 69509, 'en', 'name', 'Shantou Ultrasonic Instrument Research Institute'),
(83773, 69509, 'zh', 'name', '汕夓超声仪器研究所'),
(83774, 69510, 'en', 'name', 'Alba Trees'),
(83775, 69511, 'fr', 'name', 'ECAM-EPMI'),
(83776, 69512, 'no_lang_code', 'name', 'Eye Tech Care (France)'),
(83777, 69513, 'no_lang_code', 'name', 'Zetakey Solutions (China)'),
(83778, 69514, 'no_lang_code', 'name', 'NPO Energomash (Russia)'),
(83779, 69514, 'ru', 'name', 'ŠŠŸŠž Š­Š½ŠµŃ€Š³Š¾Š¼Š°Ńˆ'),
(83780, 69515, 'en', 'name', 'Learning and Skills Development Agency'),
(83781, 69516, 'no_lang_code', 'name', 'Bristol Water (United Kingdom)'),
(83782, 69517, 'no_lang_code', 'name', 'Changshu Switch Manufacturing (China)'),
(83783, 69517, 'zh', 'name', 'åøøē†Ÿå¼€å…³åˆ¶é€ ęœ‰é™å…¬åø'),
(83784, 69518, 'en', 'name', 'Montana Department of Labor & Industry'),
(83785, 69519, 'no_lang_code', 'name', 'All-Russian Research and Design Institute of Electric Locomotive Industry (Russia)'),
(83786, 69519, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š²Š¾Š·Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(83787, 69520, 'no_lang_code', 'name', 'Ambarella (United States)'),
(83788, 69521, 'no_lang_code', 'name', 'Cambridge Nanolitic (United Kingdom)'),
(83789, 69522, 'en', 'name', 'The Korean Society of Special Education'),
(83790, 69522, 'ko', 'name', 'ķ•œźµ­ķŠ¹ģˆ˜źµģœ”ķ•™ķšŒ'),
(83791, 69523, 'no_lang_code', 'name', 'Hyperdrive Innovation (United Kingdom)'),
(83792, 69524, 'en', 'name', 'Telegraph Museum'),
(83793, 69525, 'no_lang_code', 'name', 'Intel (Poland)'),
(83794, 69526, 'no_lang_code', 'name', 'Pilot Photonics (Ireland)'),
(83795, 69527, 'en', 'name', 'Ural Scientific Research Veterinary Institute'),
(83796, 69527, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ветеринарный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(83797, 69528, 'en', 'name', 'Austrian Centre for Electron Microscopy and Nanoanalysis'),
(83798, 69529, 'en', 'name', 'Fighting Blindness'),
(83799, 69530, 'en', 'name', 'Open Cyber University of Korea'),
(83800, 69530, 'ko', 'name', 'ķ•œźµ­ģ—“ė¦°ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(83801, 69531, 'bs', 'name', 'Ministarstvo vanjskih poslova'),
(83802, 69531, 'en', 'name', 'Ministry of Foreign Affairs'),
(83803, 69531, 'hr', 'name', 'Ministarstvo vanjskih poslova'),
(83804, 69531, 'sr', 'name', 'ŠœŠøŠ½ŠøŃŃ‚Š°Ń€ŃŃ‚Š²Š¾ иностраних послова'),
(83805, 69532, 'de', 'name', 'Internationale Lignin-Institut'),
(83806, 69532, 'en', 'name', 'The International Lignin Institute'),
(83807, 69533, 'en', 'name', 'Lancashire Fire and Rescue Service'),
(83808, 69534, 'ko', 'name', 'ģ œģ£¼ķ…Œķ¬ė…øķŒŒķ¬'),
(83809, 69534, 'no_lang_code', 'name', 'Jeju TechnoPark'),
(83810, 69535, 'no_lang_code', 'name', 'Anshar Studios (Poland)'),
(83811, 69536, 'no_lang_code', 'name', 'Al-Wataniya Concrete (Qatar)'),
(83812, 69537, 'no_lang_code', 'name', 'Hewlett Packard Enterprise (Ireland)'),
(83813, 69538, 'en', 'name', 'American College of Theriogenologists'),
(83814, 69539, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по транспорт Šø ŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠø'),
(83815, 69539, 'en', 'name', 'Institute of Transport and Communications'),
(83816, 69540, 'it', 'name', 'Istituto di Cibernetica ā€œEduardo Caianielloā€'),
(83817, 69541, 'en', 'name', 'The Korean Association of General Education'),
(83818, 69541, 'ko', 'name', 'ėŒ€ķ•œ 교윔 ģ“ķšŒ'),
(83819, 69542, 'en', 'name', 'East Baton Rouge Parish School System'),
(83820, 69543, 'no_lang_code', 'name', 'CNEX (China)'),
(83821, 69544, 'en', 'name', 'Cochrane'),
(83822, 69545, 'no_lang_code', 'name', 'Ibex Innovations (United Kingdom)'),
(83823, 69546, 'en', 'name', 'Saint-Vincent Hospital'),
(83824, 69547, 'no_lang_code', 'name', 'Change of Paradigm (United Kingdom)'),
(83825, 69548, 'en', 'name', 'Korea Association of Chinese Language and Literature'),
(83826, 69548, 'ko', 'name', 'ķ•œźµ­ģ¤‘ģ–“ģ¤‘ė¬øķ•™ķšŒ'),
(83827, 69549, 'de', 'name', 'Universum Bremen'),
(83828, 69550, 'no_lang_code', 'name', 'Kirloskar Hospital'),
(83829, 69551, 'en', 'name', 'Hunan Vocational College of Safety Technology'),
(83830, 69551, 'zh', 'name', 'ę¹–å—å®‰å…ØęŠ€ęœÆčŒäøšå­¦é™¢'),
(83831, 69552, 'no_lang_code', 'name', 'Merck (Singapore)'),
(83832, 69553, 'en', 'name', 'Wellcome Centre for Ethics and Humanities'),
(83833, 69554, 'en', 'name', 'Fujian Fisheries Research Institute'),
(83834, 69554, 'zh', 'name', 'ē¦å»ŗēœę°“äŗ§ē ”ē©¶ę‰€'),
(83835, 69555, 'en', 'name', 'Harbin FRP Research Institute'),
(83836, 69555, 'zh', 'name', 'å“ˆå°”ę»ØēŽ»ē’ƒé’¢ē ”ē©¶é™¢'),
(83837, 69556, 'en', 'name', 'Korea University of International Studies'),
(83838, 69556, 'ko', 'name', 'ķ•œė°˜ė„źµ­ģ œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(83839, 69557, 'en', 'name', 'The Society of Obstetricians and Gynaecologists of Canada'),
(83840, 69557, 'fr', 'name', 'La SociƩtƩ des obstƩtriciens et gynƩcologues du Canada'),
(83841, 69558, 'en', 'name', 'China Aircraft Services Limited'),
(83842, 69558, 'zh', 'name', 'äø­åœ‹é£›ę©Ÿęœå‹™ęœ‰é™å…¬åø'),
(83843, 69559, 'de', 'name', 'Bundesverband Solarwirtschaft'),
(83844, 69559, 'en', 'name', 'German Solar Association'),
(83845, 69560, 'en', 'name', 'Institute of Health Studies and Rehabilitation'),
(83846, 69561, 'en', 'name', 'The Korean Association for Multicultural Education'),
(83847, 69561, 'ko', 'name', 'ķ•œźµ­ 다문화 교윔 ķ˜‘ķšŒ'),
(83848, 69562, 'en', 'name', 'Jiangxi College of Applied Technology'),
(83849, 69562, 'zh', 'name', 'ę±Ÿč„æåŗ”ē”ØęŠ€ęœÆčŒäøšå­¦é™¢'),
(83850, 69563, 'ko', 'name', 'ķ•œģ†”ģ¼€ėÆøģ¹¼'),
(83851, 69563, 'no_lang_code', 'name', 'Hansol Chemical (South Korea)'),
(83852, 69564, 'no_lang_code', 'name', 'Bayer (China)'),
(83853, 69564, 'zh', 'name', 'ę‹œč€³äø­å›½'),
(83854, 69565, 'en', 'name', 'Kaluga Research Institute of Telemechanical Devices'),
(83855, 69565, 'ru', 'name', 'Калужский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ телемеханических ŃƒŃŃ‚Ń€Š¾Š¹ŃŃ‚Š²'),
(83856, 69566, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„ŲÆŁˆŲ­Ų© Ų§Ł„ŲÆŁˆŁ„ŁŠ Ł„Ų­ŁˆŲ§Ų± Ų§Ł„Ų£ŲÆŁŠŲ§Ł†'),
(83857, 69566, 'en', 'name', 'Doha International Center for Interfaith Dialogue'),
(83858, 69567, 'en', 'name', 'PHS Community Services Society'),
(83859, 69568, 'en', 'name', 'Naval Academy named after Admiral of the Fleet of the Soviet Union NG Kuznetsov'),
(83860, 69568, 'ru', 'name', 'ŠœŠ¾Ń€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ им. АГмирала флота Доветского Š”Š¾ŃŽŠ·Š° Š. Š“. ŠšŃƒŠ·Š½ŠµŃ†Š¾Š²'),
(83861, 69569, 'en', 'name', 'Changzhou City Planning and Design Institute'),
(83862, 69569, 'zh', 'name', 'åøøå·žåø‚č§„åˆ’č®¾č®”é™¢'),
(83863, 69570, 'en', 'name', 'Hunan Institute of Energy Storage Materials and Devices'),
(83864, 69570, 'zh', 'name', 'ę¹–å—ēœå‚Øčƒ½ęę–™äøŽå™Øä»¶ē ”ē©¶ę‰€'),
(83865, 69571, 'en', 'name', 'Korean Accounting Association'),
(83866, 69571, 'ko', 'name', 'ķ•œźµ­ķšŒź³„ķ•™ķšŒ'),
(83867, 69572, 'en', 'name', 'Northern Cheyenne Tribal Board of Health'),
(83868, 69573, 'en', 'name', 'Government Shared Services Entity'),
(83869, 69573, 'pt', 'name', 'Entidade de Serviços Partilhados da Administração Pública'),
(83870, 69574, 'en', 'name', 'Children in Scotland'),
(83871, 69575, 'en', 'name', 'Krasnodar Higher Military School named after General of the Army S. Shtemenko'),
(83872, 69575, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾Š“Š°Ń€ŃŠŗŠ¾Šµ Š²Ń‹ŃŃˆŠµŠµ военное ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ имени генерала армии Š”.М.Штеменко'),
(83873, 69576, 'en', 'name', 'Scientific and Research Institute Voskhod'),
(83874, 69576, 'ru', 'name', 'ŠŠ˜Š˜ ВосхоГ'),
(83875, 69577, 'no_lang_code', 'name', 'Katcon (Poland)'),
(83876, 69578, 'no_lang_code', 'name', 'NAURA (China)'),
(83877, 69578, 'zh', 'name', 'åŒ—ę–¹åŽåˆ›'),
(83878, 69579, 'no_lang_code', 'name', 'Thermionix Energy (United Kingdom)'),
(83879, 69580, 'en', 'name', 'Israel Olive Oil Board'),
(83880, 69581, 'no_lang_code', 'name', '2P-Info (Poland)'),
(83881, 69582, 'no_lang_code', 'name', 'Novo Nordisk (India)'),
(83882, 69583, 'en', 'name', 'Ministry of Health and Wellness'),
(83883, 69584, 'de', 'name', 'Standortfƶrderung Kanton Bern'),
(83884, 69584, 'en', 'name', 'Bern Economic Development Agency'),
(83885, 69585, 'no_lang_code', 'name', 'Good Homes Alliance (United Kingdom)'),
(83886, 69586, 'en', 'name', 'Heilongjiang Vocational College of Art'),
(83887, 69586, 'zh', 'name', 'é»‘é¾™ę±Ÿč‰ŗęœÆčŒäøšå­¦é™¢'),
(83888, 69587, 'en', 'name', 'The Modern English Society of Korea'),
(83889, 69587, 'ko', 'name', 'ķ˜„ėŒ€ ķ•œźµ­ ģ˜ģ–“ ķ•™ķšŒ'),
(83890, 69588, 'no_lang_code', 'name', 'Green Tomato (China)'),
(83891, 69589, 'no_lang_code', 'name', 'Lukoil (Russia)'),
(83892, 69589, 'ru', 'name', 'Š˜ŃŃ‚Š¾Ń€ŠøŃ'),
(83893, 69590, 'no_lang_code', 'name', 'Advanced Digital Innovation (United Kingdom)'),
(83894, 69591, 'no_lang_code', 'name', 'Cypralis (United Kingdom)'),
(83895, 69592, 'no_lang_code', 'name', 'Futuregov (United Kingdom)'),
(83896, 69593, 'en', 'name', 'Korea Corporate Education Center'),
(83897, 69593, 'ko', 'name', 'ķ•œźµ­źø°ģ—…źµģœ”ģ„¼ķ„°'),
(83898, 69594, 'en', 'name', 'The Modern English Drama Association of Korea'),
(83899, 69594, 'ko', 'name', 'ķ˜„ėŒ€ ķ•œźµ­ ģ—°ź·¹ ķ•™ķšŒ'),
(83900, 69595, 'no_lang_code', 'name', 'NC bit (South Korea)'),
(83901, 69596, 'en', 'name', 'Native Mental Health Association of Canada'),
(83902, 69597, 'en', 'name', 'Freshfields Bruckhaus Deringer'),
(83903, 69598, 'en', 'name', 'Korean Speech-Language & Hearing Association'),
(83904, 69599, 'no_lang_code', 'name', 'Eternal East Group (China)'),
(83905, 69600, 'no_lang_code', 'name', 'Chongqing Electromechanical Holdings (China)'),
(83906, 69600, 'zh', 'name', 'é‡åŗ†ęœŗē”µęŽ§č‚”'),
(83907, 69601, 'en', 'name', 'Transgender Equality Network Ireland'),
(83908, 69601, 'ga', 'name', 'Lionra na hƉireann um Chomhionanns Transinscne'),
(83909, 69602, 'en', 'name', 'Fujian Province Science and Technology Association'),
(83910, 69602, 'zh', 'name', 'ē¦å»ŗēœē§‘å­¦ęŠ€ęœÆåä¼š'),
(83911, 69603, 'no_lang_code', 'name', 'BeoCare (United States)'),
(83912, 69604, 'en', 'name', 'Institute of Advanced Manufacturing Technology'),
(83913, 69605, 'no_lang_code', 'name', '+H2O (Poland)'),
(83914, 69606, 'en', 'name', 'Korea Environmental Policy and Administration Society'),
(83915, 69606, 'ko', 'name', 'ķ•œźµ­ ķ™˜ź²½ ģ •ģ±… ꓀리 ķ•™ķšŒ'),
(83916, 69607, 'en', 'name', 'Irish Human Rights and Equality Commission'),
(83917, 69608, 'en', 'name', 'Council for International Exchange of Scholars'),
(83918, 69609, 'en', 'name', 'Shenzhen Academy of Aerospace Technology'),
(83919, 69609, 'zh', 'name', 'ę·±åœ³čˆŖå¤©ē§‘ęŠ€ē ”ē©¶é™¢'),
(83920, 69610, 'es', 'name', 'Ministerio de Salud - Provincia de Buenos Aires'),
(83921, 69611, 'en', 'name', 'Kahoolawe Island Reserve Commission'),
(83922, 69612, 'en', 'name', 'Zhejiang Metallurgical Research Institute'),
(83923, 69612, 'zh', 'name', 'ęµ™ę±Ÿå†¶é‡‘ē ”ē©¶é™¢'),
(83924, 69613, 'no_lang_code', 'name', 'Spiretronic (United States)'),
(83925, 69614, 'no_lang_code', 'name', 'Ipsos (United Kingdom)'),
(83926, 69615, 'en', 'name', 'NYC H2O'),
(83927, 69616, 'it', 'name', 'PromoFirenze, PromoFirenze Azienda Speciale della Camera di Commercio di Firenze'),
(83928, 69617, 'en', 'name', 'The French Society of Korea'),
(83929, 69617, 'ko', 'name', 'ķ•œźµ­ķ”„ėž‘ģŠ¤ķ•™ķšŒ'),
(83930, 69618, 'en', 'name', 'Sichuan Dongpo China Kimchi Industrial Technology Research Institute'),
(83931, 69618, 'zh', 'name', 'å››å·äøœå”äø­å›½ę³”čœäŗ§äøšęŠ€ęœÆē ”ē©¶é™¢ę˜Æåŗ”ę³”'),
(83932, 69619, 'en', 'name', 'General Directorate of Forestry'),
(83933, 69619, 'tr', 'name', 'ORMAN GENEL MƜDƜRLƜĞƜ'),
(83934, 69620, 'no_lang_code', 'name', 'Casale (Switzerland)'),
(83935, 69621, 'no', 'name', 'Vest-Agder fylkeskommune'),
(83936, 69622, 'en', 'name', 'Korea Association for Nondestructive Testing'),
(83937, 69622, 'ko', 'name', 'ķ•œźµ­ ė¹„ķŒŒź““ 검사 ķ˜‘ķšŒ'),
(83938, 69623, 'en', 'name', 'Federal Scientific Agroengineering Center VIM'),
(83939, 69623, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ агроинженерный центр Š’Š˜Šœ"'),
(83940, 69624, 'en', 'name', 'Architecture and Design Scotland'),
(83941, 69624, 'gd', 'name', 'Ailtearachd is Dealbhadh na h-Alba'),
(83942, 69625, 'en', 'name', 'Cairnmillar Institute'),
(83943, 69626, 'en', 'name', 'Irish Equine Centre'),
(83944, 69627, 'no_lang_code', 'name', 'Themis (India)'),
(83945, 69628, 'no_lang_code', 'name', 'Ceva Animal Health (United Kingdom)'),
(83946, 69629, 'no_lang_code', 'name', 'Research Institute VOLGA (Russia)'),
(83947, 69629, 'ru', 'name', 'ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Ā«Š’ŠžŠ›Š“ŠĀ»'),
(83948, 69630, 'en', 'name', 'Institute of Polymer Materials and Technologies'),
(83949, 69630, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физиологии растений, генетики Šø биоинженерии'),
(83950, 69631, 'no_lang_code', 'name', 'Cogent (United Kingdom)'),
(83951, 69632, 'ko', 'name', 'ķ•˜ė‚˜ģ œģ•½ģ£¼ģ‹ķšŒģ‚¬'),
(83952, 69632, 'no_lang_code', 'name', 'Hana Pharm (South Korea)'),
(83953, 69633, 'de', 'name', 'Ministerium der Deutschsprachigen Gemeinschaft'),
(83954, 69634, 'en', 'name', 'Kahnawake Schools Diabetes Prevention Project'),
(83955, 69635, 'en', 'name', 'Fota Wildlife Park'),
(83956, 69636, 'en', 'name', 'Jason Burges Studio'),
(83957, 69637, 'en', 'name', 'Nethradhama Superspeciality Eye Hospital'),
(83958, 69637, 'kn', 'name', 'ą²Øą³‡ą²¤ą³ą²°ą²§ą²¾ą²® ą²øą³‚ą²Ŗą²°ą³ ą²øą³ą²Ŗą³†ą²¶ą²¾ą²²ą²æą²Ÿą²æ ą²•ą²£ą³ą²£ą²æą²Ø ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³†'),
(83959, 69638, 'ja', 'name', 'ć‚­ćƒ¼ć‚Øćƒ³ć‚¹'),
(83960, 69638, 'no_lang_code', 'name', 'Keyence (Japan)'),
(83961, 69639, 'no_lang_code', 'name', 'DataTalk (United Kingdom)'),
(83962, 69640, 'en', 'name', 'All-Russian Research Institute of Veterinary Sanitation, Hygiene and Ecology'),
(83963, 69640, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарной санитарии, гигиены Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŠø'),
(83964, 69641, 'en', 'name', 'Korea Service Management Society'),
(83965, 69641, 'ko', 'name', 'ķ•œźµ­ģ„œė¹„ģŠ¤ź²½ģ˜ķ•™ķšŒ'),
(83966, 69642, 'ko', 'name', 'źø€ė”œė²Œź“‘ķ†µģ‹ '),
(83967, 69642, 'no_lang_code', 'name', 'Global optical communication (South Korea)'),
(83968, 69643, 'no_lang_code', 'name', 'China Mobile (China)'),
(83969, 69643, 'zh', 'name', 'äø­å›½ē§»åŠØ'),
(83970, 69644, 'en', 'name', 'Yakut Scientific Research Institute of Agriculture'),
(83971, 69644, 'ru', 'name', 'ŠÆŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° имени М.Š“. Дафронова'),
(83972, 69645, 'en', 'name', 'Siberian Research and Technological Institute for Processing Agricultural Products'),
(83973, 69645, 'ru', 'name', 'Š”ŠøŠ±ŠøŃ€ŃŠŗŠ¾Š¼Ńƒ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š¼Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ переработки ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŠæŃ€Š¾Š“ŃƒŠŗŃ†ŠøŠø'),
(83974, 69646, 'en', 'name', 'Institute of Cultural Affairs'),
(83975, 69647, 'en', 'name', 'Traffic Management Research Institute'),
(83976, 69648, 'ko', 'name', '크리스탈 ģœ ģ „ģ²“ķ•™'),
(83977, 69648, 'no_lang_code', 'name', 'CrystalGenomics (South Korea)'),
(83978, 69649, 'en', 'name', 'Korean Institute of Southeast Asian Studies'),
(83979, 69649, 'ko', 'name', 'ģ‚¬ė‹Øė²•ģø ķ•œźµ­ė™ė‚Øģ•„ģ—°źµ¬ģ†Œ'),
(83980, 69650, 'no_lang_code', 'name', 'Agilent Technologies (Switzerland)'),
(83981, 69651, 'en', 'name', 'Society for Asian Philosophy in Korea'),
(83982, 69651, 'ko', 'name', 'ķ•œźµ­ė™ģ–‘ģ² ķ•™ķšŒ'),
(83983, 69652, 'en', 'name', 'Korean Association for Radiation Protection'),
(83984, 69652, 'ko', 'name', 'ėŒ€ķ•œė°©ģ‚¬ģ„ ė°©ģ–“ķ•™ķšŒ'),
(83985, 69653, 'en', 'name', 'International Crisis Group'),
(83986, 69654, 'no_lang_code', 'name', 'Sistema (Russia)'),
(83987, 69655, 'en', 'name', 'Canadian Association for Suicide Prevention'),
(83988, 69655, 'fr', 'name', 'Association Canadienne pour la PrƩvention du Suicide'),
(83989, 69656, 'fr', 'name', 'FƩdƩration des Commissions Scolaires du QuƩbec'),
(83990, 69657, 'en', 'name', 'Asha Hospital'),
(83991, 69658, 'en', 'name', 'Korean Family Welfare Society'),
(83992, 69658, 'ko', 'name', 'ķ•œźµ­ź°€ģ”±ģ‚¬ķšŒė³µģ§€ķ•™ķšŒģ˜'),
(83993, 69659, 'en', 'name', 'Ningbo Entry-Exit Inspection And Quarantine Bureau'),
(83994, 69659, 'zh', 'name', 'å®ę³¢å‡ŗå…„å¢ƒę£€éŖŒę£€ē–«å±€'),
(83995, 69660, 'en', 'name', 'Baltic and International Maritime Council'),
(83996, 69661, 'en', 'name', 'Korean Association of Architectural History'),
(83997, 69661, 'ko', 'name', 'ź±“ģ¶•ģ—­ģ‚¬ķ•™ķšŒ'),
(83998, 69662, 'en', 'name', 'Leukaemia & Lymphoma NI'),
(83999, 69663, 'en', 'name', 'North Carolina Coalition Against Domestic Violence'),
(84000, 69664, 'no_lang_code', 'name', 'Dae Hwa Pharm (South Korea)'),
(84001, 69665, 'en', 'name', 'Institute Of Historic Building Conservation'),
(84002, 69666, 'fa', 'name', 'ي ؓرکت Ł…Ł„ŁŠ Ų§Ł†ŁŁˆŲ±Ł…Ų§ŲŖŁŠŚ©'),
(84003, 69666, 'no_lang_code', 'name', 'National Informatics Corporation (Iran)'),
(84004, 69667, 'de', 'name', 'Bundesanstalt für Agrarwirtschaft'),
(84005, 69667, 'en', 'name', 'Federal Institute of Agricultural Economics'),
(84006, 69668, 'no_lang_code', 'name', 'Smartbay Ireland'),
(84007, 69669, 'hi', 'name', 'ą¤œą„‰ą¤Øą„ą¤øą¤Ø और ą¤œą„‰ą¤Øą„ą¤øą¤Ø ą¤Ŗą„ą¤°ą¤¾ą¤Æą„‹ą¤œą¤æą¤¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(84008, 69669, 'kn', 'name', 'ą²œą²¾ą²Øą³ą²øą²Øą³ ą²®ą²¤ą³ą²¤ą³ ą²œą²¾ą²Øą³ą²øą²Øą³ ą²Ŗą³ą²°ą³ˆą²µą³‡ą²Ÿą³ ą²²ą²æą²®ą²æą²Ÿą³†ą²”ą³'),
(84009, 69669, 'mr', 'name', 'ą¤œą„‰ą¤Øą„ą¤øą¤Ø आणि ą¤œą„‰ą¤Øą„ą¤øą¤Ø ą¤Ŗą„ą¤°ą¤¾ą¤Æą¤µą„ą¤¹ą„‡ą¤Ÿ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(84010, 69669, 'no_lang_code', 'name', 'Johnson & Johnson (India)'),
(84011, 69670, 'no_lang_code', 'name', 'Boehringer Ingelheim (China)'),
(84012, 69670, 'zh', 'name', 'å‹ƒęž—ę ¼ę®·ę ¼ēæ°'),
(84013, 69671, 'en', 'name', 'Korean Association for Religious Studies'),
(84014, 69671, 'ko', 'name', 'ķ•œźµ­ 종교 ķ•™ķšŒ'),
(84015, 69672, 'no_lang_code', 'name', 'Central Research Institute for Special Machinery (Russia)'),
(84016, 69672, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠµŃ†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(84017, 69673, 'en', 'name', 'Minsk Regional Institute of Education Development'),
(84018, 69673, 'ru', 'name', 'Минский областной ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(84019, 69674, 'en', 'name', 'Public Radio Exchange'),
(84020, 69675, 'en', 'name', 'Hong Kong Federation of Innovative Technologies and Manufacturing Industries'),
(84021, 69675, 'zh', 'name', 'é¦™ęøÆå‰µę–°ē§‘ęŠ€åŠč£½é€ ę„­čÆåˆēø½ęœƒ'),
(84022, 69676, 'en', 'name', 'Institute of Atmospheric Pollution Research'),
(84023, 69676, 'it', 'name', 'Istituto sull’Inquinamento Atmosferico'),
(84024, 69677, 'en', 'name', 'The Korean Association of Sports and Entertainment Law'),
(84025, 69677, 'ko', 'name', 'ķ•œźµ­ģŠ¤ķ¬ģø ģ—”ķ„°ķ…ŒģøėØ¼ķŠøė²•ķ•™ķšŒ'),
(84026, 69678, 'no_lang_code', 'name', 'Constantza Port (Romania)'),
(84027, 69678, 'ro', 'name', 'Administrația Porturilor Maritime'),
(84028, 69679, 'en', 'name', 'Chennai Skin Foundation & Yesudian Research Institute'),
(84029, 69680, 'en', 'name', 'All-Russian State Scientific Research Institute for Control, Standardization and Certification of Veterinary Preparations'),
(84030, 69680, 'ru', 'name', 'Всероссийский Š³Š¾ŃŃƒŠ“арственный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŠ¾Š½Ń‚Ń€Š¾Š»Ń, станГартизации Šø сертификации ветеринарных препаратов'),
(84031, 69681, 'fr', 'name', 'CRIIRAD, Commission de Recherche et d’Information IndĆ©pendantes sur la RadioactivitĆ©'),
(84032, 69682, 'no_lang_code', 'name', 'Prada (Italy)'),
(84033, 69683, 'en', 'name', 'Institute on Social Theory and Dynamics'),
(84034, 69683, 'ja', 'name', 'ē¤¾ä¼šē†č«–ćƒ»å‹•ę…‹ē ”ē©¶ę‰€'),
(84035, 69684, 'en', 'name', 'State Institute for the Design of Non-Ferrous Metallurgy Enterprises'),
(84036, 69684, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠæŃ€Š¾ŠµŠŗŃ‚ŠøŃ€Š¾Š²Š°Š½ŠøŃŽ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠ¹ цветной Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø'),
(84037, 69685, 'no_lang_code', 'name', 'Frenzoo (China)'),
(84038, 69686, 'en', 'name', 'Heilongjiang Electric Power Workers University'),
(84039, 69686, 'zh', 'name', 'é»‘é¾™ę±Ÿē”µåŠ›čŒå·„å¤§å­¦'),
(84040, 69687, 'es', 'name', 'Instituto Canario de Investigaciones Agrarias'),
(84041, 69688, 'ko', 'name', 'ėøŒė¦¬ģŠ¤ķ†Ø-ė§ˆģ“ģ–“ģŠ¤ ģŠ¤ķ…'),
(84042, 69688, 'no_lang_code', 'name', 'Bristol-Myers Squibb (South Korea)'),
(84043, 69689, 'en', 'name', 'Gansu Great Wall Electrical and Electronics Engineering Research Institute'),
(84044, 69689, 'zh', 'name', 'ē”˜č‚ƒé•æåŸŽē”µå·„ē”µå™Øå·„ēØ‹ē ”ē©¶é™¢'),
(84045, 69690, 'no_lang_code', 'name', 'Ionotec (United Kingdom)'),
(84046, 69691, 'no_lang_code', 'name', 'Taube Koret Center'),
(84047, 69692, 'no_lang_code', 'name', 'AviChina Industry & Technology (China)'),
(84048, 69692, 'zh', 'name', 'äø­å›½čˆŖē©ŗē§‘ęŠ€å·„äøšč‚”ä»½ęœ‰é™å…¬åø'),
(84049, 69693, 'en', 'name', 'Cambridge Housing Society'),
(84050, 69694, 'en', 'name', 'Delhi State Cancer Institute'),
(84051, 69695, 'en', 'name', 'Northern Ireland Commissioner for Children and Young People'),
(84052, 69696, 'en', 'name', 'Eterna Massive Open Laboratory'),
(84053, 69697, 'en', 'name', 'Korean Association of Space & Environment Research'),
(84054, 69697, 'ko', 'name', 'ķ•œźµ­ 우주 ķ™˜ź²½ 연구 ķ•™ķšŒ'),
(84055, 69698, 'no_lang_code', 'name', 'Qiagen (India)'),
(84056, 69699, 'en', 'name', 'Hunan Institute of Nuclear Agronomy and Space Breeding'),
(84057, 69699, 'zh', 'name', 'ę¹–å—ēœę øå†œå­¦äøŽčˆŖå¤©č‚²ē§ē ”ē©¶ę‰€'),
(84058, 69700, 'fr', 'name', 'RƩseau SolidaritƩ ItinƩrance du QuƩbec'),
(84059, 69701, 'no_lang_code', 'name', 'Indian Immunologicals (India)'),
(84060, 69702, 'no_lang_code', 'name', 'Lakma (Poland)'),
(84061, 69703, 'en', 'name', 'Heilongjiang Academy of Agricultural Machinery Engineering'),
(84062, 69703, 'zh', 'name', 'é»‘é¾™ę±Ÿēœå†œäøšęœŗę¢°å·„ēØ‹ē§‘å­¦ē ”ē©¶é™¢'),
(84063, 69704, 'en', 'name', 'Ekaterinburg Research Institute of Viral Infections'),
(84064, 69704, 'ru', 'name', 'Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠŠ˜Š˜ Š²ŠøŃ€ŃƒŃŠ½Ń‹Ń… инфекций'),
(84065, 69705, 'en', 'name', 'Korean Cultural Dynamics'),
(84066, 69705, 'ko', 'name', 'ė™ģ–‘ė¬øķ™”ģ—°źµ¬ģ›'),
(84067, 69706, 'en', 'name', 'Interior Health'),
(84068, 69707, 'no_lang_code', 'name', 'Desktop Genetics (United Kingdom)'),
(84069, 69708, 'ko', 'name', '(주)ģž„ģ„±E.P.S에 ģ˜¤ģ‹ ź²ƒģ„ ķ™˜ģ˜ķ•©ė‹ˆė‹¤'),
(84070, 69708, 'no_lang_code', 'name', 'Jangsung (South Korea)'),
(84071, 69709, 'no_lang_code', 'name', 'AnaBio Technologies (Ireland)'),
(84072, 69710, 'fr', 'name', 'Association QuĆ©bĆ©coise du Personnel de Direction des Ɖcoles'),
(84073, 69711, 'en', 'name', 'Center for Agricultural Research'),
(84074, 69711, 'zh', 'name', 'å†œäøšęŠ€ęœÆäø­åæƒ'),
(84075, 69712, 'de', 'name', 'Niedersächsisches Ministerium für Wirtschaft, Arbeit und Verkehr'),
(84076, 69713, 'en', 'name', 'Korea Association of Vocational Education'),
(84077, 69713, 'ko', 'name', 'ķ•œźµ­ģ§ģ—…ėŠ„ė „źµģœ”ķ˜‘ķšŒ'),
(84078, 69714, 'en', 'name', 'National Agricultural Research Institute'),
(84079, 69715, 'en', 'name', 'Central Research Institute of Engineering Troops of the Ministry of Defense of the Russian Federation'),
(84080, 69715, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инженерных войск ŠœŠøŠ½ŠøŃŃ‚ерства обороны Российской ФеГерации'),
(84081, 69716, 'en', 'name', 'Korea Nuclear International Cooperation Foundation'),
(84082, 69716, 'ko', 'name', 'ķ•œźµ­ģ›ģžė „ķ˜‘ė „ģž¬ė‹Ø'),
(84083, 69717, 'no_lang_code', 'name', 'eSpot Lighting (China)'),
(84084, 69718, 'no_lang_code', 'name', 'ENBIO (Ireland)'),
(84085, 69719, 'en', 'name', 'Charity Commission for England and Wales'),
(84086, 69720, 'de', 'name', 'Bundesverband Flachglas'),
(84087, 69720, 'en', 'name', 'Federal Flat Glass Association'),
(84088, 69721, 'no_lang_code', 'name', 'Williams (United Kingdom)'),
(84089, 69722, 'no_lang_code', 'name', 'Guidewire (United States)'),
(84090, 69723, 'no_lang_code', 'name', 'Hiflux (United Kingdom)'),
(84091, 69724, 'no_lang_code', 'name', 'Shandong Provincial Communications Planning and Design Institute (China)'),
(84092, 69724, 'zh', 'name', 'å±±äøœēœäŗ¤é€šč§„åˆ’č®¾č®”é™¢'),
(84093, 69725, 'en', 'name', 'Donga Broadcasting University of Arts'),
(84094, 69725, 'ko', 'name', 'ė™ģ•„ė°©ģ†”ģ˜ˆģˆ ėŒ€ķ•™źµ'),
(84095, 69726, 'en', 'name', 'Jiangxi University of Technology'),
(84096, 69726, 'zh', 'name', 'ę±Ÿč„æē§‘ęŠ€å­¦é™¢'),
(84097, 69727, 'en', 'name', 'Bard College Berlin'),
(84098, 69728, 'en', 'name', 'Hunan Energy Research Institute'),
(84099, 69728, 'zh', 'name', 'ę¹–å—ēœčƒ½ęŗē ”ē©¶ę‰€'),
(84100, 69729, 'en', 'name', 'Planetwork'),
(84101, 69730, 'no_lang_code', 'name', 'Sunonwealth Electric Machine Industry (China)'),
(84102, 69731, 'no_lang_code', 'name', 'Bodywhys'),
(84103, 69732, 'fr', 'name', 'Ministère de l''Education Nationale de CÓte d''Ivoire'),
(84104, 69733, 'en', 'name', 'Korea Lifelong Education Center'),
(84105, 69733, 'ko', 'name', 'ķ•œźµ­ķ‰ģƒźµģœ”ģ›'),
(84106, 69734, 'en', 'name', 'ESIC Hospital'),
(84107, 69734, 'hi', 'name', 'इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤ˆą¤ą¤øą¤†ą¤ˆ ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤²'),
(84108, 69735, 'no_lang_code', 'name', 'Gionee (China)'),
(84109, 69735, 'zh', 'name', '金立'),
(84110, 69736, 'en', 'name', '21st Century Political Science Association'),
(84111, 69736, 'ko', 'name', '21ģ„øźø°ģ •ģ¹˜ķ•™ķšŒ'),
(84112, 69737, 'en', 'name', 'Center for Disease Analysis'),
(84113, 69738, 'en', 'name', 'Institute of Justice'),
(84114, 69738, 'ko', 'name', 'ķ•™ķšŒ ģ •ģ˜ģ˜'),
(84115, 69739, 'en', 'name', 'European Forest Institute'),
(84116, 69740, 'no_lang_code', 'name', 'Holsin Engineering Consulting Group (China)'),
(84117, 69740, 'zh', 'name', 'åˆčÆšå·„ēØ‹å’ØčÆ¢é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(84118, 69741, 'en', 'name', 'Korea Academy of Mental Health Social Work');
INSERT INTO `ror_settings` VALUES
(84119, 69741, 'ko', 'name', 'ķ•œźµ­ģ •ģ‹ ė³“ź±“ģ‚¬ķšŒė³µģ§€ķ•™ķšŒ'),
(84120, 69742, 'no_lang_code', 'name', 'NexusCRO (India)'),
(84121, 69743, 'en', 'name', 'Sagamore Institute'),
(84122, 69744, 'en', 'name', 'Xiangyang Hospital of Traditional Chinese Medicine'),
(84123, 69744, 'zh', 'name', 'č„„é˜³äø­åŒ»åŒ»é™¢'),
(84124, 69745, 'no_lang_code', 'name', 'MEMS RIGHT (China)'),
(84125, 69746, 'no_lang_code', 'name', 'Laser 2000 (United Kingdom)'),
(84126, 69747, 'no_lang_code', 'name', 'Owens Corning (Finland)'),
(84127, 69748, 'no_lang_code', 'name', 'Sumana Hospital'),
(84128, 69748, 'te', 'name', 'సుమానా ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą±'),
(84129, 69749, 'no_lang_code', 'name', 'Fibercore (United Kingdom)'),
(84130, 69750, 'no_lang_code', 'name', 'C4 Carbides (United Kingdom)'),
(84131, 69751, 'en', 'name', 'The Gemmological Association of Hong Kong'),
(84132, 69752, 'en', 'name', 'Guangdong Institute of New Materials'),
(84133, 69752, 'zh', 'name', 'å¹æäøœēœę–°ęę–™ē ”ē©¶ę‰€'),
(84134, 69753, 'en', 'name', 'Human Development Institute'),
(84135, 69753, 'ko', 'name', 'ģøź°„ 개발 ģ—°źµ¬ģ†Œ'),
(84136, 69754, 'fr', 'name', 'Agence Luxembourgeoise d''Action Culturelle'),
(84137, 69755, 'en', 'name', 'State Scientific Research Navigation and Hydrographic Institute'),
(84138, 69755, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ навигационно-гиГрографического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š°'),
(84139, 69756, 'en', 'name', 'Gyeongbuk IT Convergence Industrial Technology Institute'),
(84140, 69756, 'ko', 'name', '경북ITģœµķ•©ģ‚°ģ—…źø°ģˆ ģ›'),
(84141, 69757, 'en', 'name', 'Ministry of Labour, Employment and the Social and Solidarity Economy'),
(84142, 69757, 'fr', 'name', 'MinistĆØre du Travail, de l''Emploi et de l''Ɖconomie Sociale et Solidaire'),
(84143, 69758, 'en', 'name', 'Acharya Shri Chander College of Medical Sciences and Hospital'),
(84144, 69759, 'no_lang_code', 'name', 'Cathay Photonics (China)'),
(84145, 69759, 'zh', 'name', 'åœ‹ę³°å…‰é›»ęœ‰é™å…¬åø'),
(84146, 69760, 'no_lang_code', 'name', 'Jiangsu Radio Scientific Research Institute (China)'),
(84147, 69760, 'zh', 'name', 'ę±Ÿč‹ēœę— ēŗæē”µē§‘å­¦ē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(84148, 69761, 'en', 'name', 'Shinsung University'),
(84149, 69761, 'ko', 'name', '신성 ėŒ€ķ•™źµ'),
(84150, 69762, 'no_lang_code', 'name', 'Hyster-Yale Materials Handling (United States)'),
(84151, 69763, 'ko', 'name', '(ģž¬ė‹Ø)ė¶€ģ‚°ķ…Œķ¬ė…øķŒŒķ¬'),
(84152, 69763, 'no_lang_code', 'name', 'Busan TechnoPark'),
(84153, 69764, 'no_lang_code', 'name', 'Innovation Zed (Ireland)'),
(84154, 69765, 'no_lang_code', 'name', 'Kazancompressormash'),
(84155, 69765, 'ru', 'name', 'ŠšŠ°Š·Š°Š½ŃŒŠŗŠ¾Š¼ŠæŃ€ŠµŃŃŠ¾Ń€Š¼Š°Ńˆ'),
(84156, 69766, 'ko', 'name', 'ģ“ģ—°ģ œģ•½'),
(84157, 69766, 'no_lang_code', 'name', 'Reyon Pharmaceutical (South Korea)'),
(84158, 69767, 'en', 'name', 'Wayne-Finger Lakes BOCES'),
(84159, 69768, 'no_lang_code', 'name', 'Ukrainian Center of Environmental and Water Projects (Ukraine)'),
(84160, 69769, 'en', 'name', 'Jacobs Levy Equity Management'),
(84161, 69770, 'en', 'name', 'SWOG Cancer Research Network'),
(84162, 69771, 'no_lang_code', 'name', 'LaVision (United Kingdom)'),
(84163, 69772, 'en', 'name', 'Irish Archaeology Field School'),
(84164, 69773, 'el', 'name', '΄πουργείο Ī•ĻƒĻ‰Ļ„ĪµĻĪ¹ĪŗĻŽĪ½'),
(84165, 69773, 'en', 'name', 'Ministry of the Interior'),
(84166, 69774, 'de', 'name', 'DBI - Gastechnologisches Institut'),
(84167, 69775, 'no_lang_code', 'name', 'Overstock (United States)'),
(84168, 69776, 'no_lang_code', 'name', 'Ancon (United Kingdom)'),
(84169, 69777, 'no_lang_code', 'name', 'WengFu Group (China)'),
(84170, 69778, 'en', 'name', 'Guangdong Provincial Academy of Building Research Group'),
(84171, 69778, 'zh', 'name', 'å¹æäøœēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢é›†å›¢'),
(84172, 69779, 'no_lang_code', 'name', 'AM Technology (United Kingdom)'),
(84173, 69780, 'no_lang_code', 'name', 'Kowsar Medical (Netherlands)'),
(84174, 69781, 'no_lang_code', 'name', 'Infas Institut für Angewandte Sozialwissenschaft (Germany)'),
(84175, 69782, 'en', 'name', 'The Korean Society of Greco-Roman Studies'),
(84176, 69782, 'ko', 'name', 'ķ•œźµ­ģ„œģ–‘ź³ ģ „ķ•™ķšŒ'),
(84177, 69783, 'en', 'name', 'The Korean Society for the Study of Career Education'),
(84178, 69783, 'ko', 'name', 'ķ•œźµ­ 직업 교윔 ģ—°źµ¬ķšŒ'),
(84179, 69784, 'fr', 'name', 'RƩseau des Centres de Ressources PƩrinatales'),
(84180, 69785, 'no_lang_code', 'name', 'Ferrari (Italy)'),
(84181, 69786, 'en', 'name', 'Korean Women''s Literature'),
(84182, 69786, 'ko', 'name', 'ź³ ė ¤ 사항'),
(84183, 69787, 'no_lang_code', 'name', 'Crossword Cybersecurity (United Kingdom)'),
(84184, 69788, 'en', 'name', 'Dr. Humeira Badsha Medical Center'),
(84185, 69789, 'en', 'name', 'Black Coalition for AIDS Prevention'),
(84186, 69790, 'en', 'name', 'Modernized Chinese Medicine International Association'),
(84187, 69790, 'zh', 'name', 'å›½é™…ēŽ°ä»£åŒ–äø­čÆ'),
(84188, 69791, 'en', 'name', 'Nizhny Tagil Institute for Testing Metals'),
(84189, 69791, 'ru', 'name', 'ŠŠøŠ¶Š½ŠµŃ‚Š°Š³ŠøŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠæŃ‹Ń‚Š°Š½ŠøŃ металлов'),
(84190, 69792, 'no_lang_code', 'name', 'CSSC Offshore & Marine Engineering Company (China)'),
(84191, 69793, 'ko', 'name', 'ģ“ķ™”ė°”ģ“ģ˜¤ė©”ė”•ģŠ¤'),
(84192, 69793, 'no_lang_code', 'name', 'Ewha Biomedics (South Korea)'),
(84193, 69794, 'en', 'name', 'Amur Scientific Center'),
(84194, 69794, 'ru', 'name', 'ŠŠ¼ŃƒŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(84195, 69795, 'no_lang_code', 'name', 'Sensata Technologies (Netherlands)'),
(84196, 69796, 'en', 'name', 'The Federal Trust'),
(84197, 69797, 'no_lang_code', 'name', 'Take-Two Interactive (United States)'),
(84198, 69798, 'no_lang_code', 'name', 'Janssen (Hungary)'),
(84199, 69799, 'en', 'name', 'All-Russian Scientific Research Institute of Horticulture named after IV Michurin'),
(84200, 69799, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ саГовоГства имени И. Š’. ŠœŠøŃ‡ŃƒŃ€ŠøŠ½Š°'),
(84201, 69800, 'no_lang_code', 'name', 'NIIhimmash (Russia)'),
(84202, 69801, 'en', 'name', 'State Research Institute "Crystal"'),
(84203, 69801, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ā«ŠšŃ€ŠøŃŃ‚Š°Š»Š»Ā»'),
(84204, 69802, 'en', 'name', 'Immigrant Council of Ireland'),
(84205, 69803, 'en', 'name', 'Hong Kong Science and Technology Parks Corporation'),
(84206, 69803, 'zh', 'name', 'é¦™ęøÆē§‘ęŠ€å›­å…¬åø'),
(84207, 69804, 'en', 'name', 'English Language and Literature Association of Korea'),
(84208, 69804, 'ko', 'name', 'ķ•œźµ­ģ˜ģ–“ģ˜ė¬øķ•™ķšŒ'),
(84209, 69805, 'en', 'name', 'The Korean Association of Slavic Eurasian Studies'),
(84210, 69806, 'ko', 'name', 'ģ½”ėÆøķŒœ'),
(84211, 69806, 'no_lang_code', 'name', 'Komipharm International (South Korea)'),
(84212, 69807, 'fr', 'name', 'De Veber'),
(84213, 69808, 'en', 'name', 'Henan Province Water Conservancy Survey and Design Research'),
(84214, 69808, 'zh', 'name', 'ę²³å—ēœę°“åˆ©å‹˜ęµ‹č®¾č®”ē ”ē©¶ęœ‰é™å…¬åø'),
(84215, 69809, 'en', 'name', 'Respond Housing Association'),
(84216, 69810, 'no_lang_code', 'name', 'Tongling Nonferrous Metals Group Holding (China)'),
(84217, 69810, 'zh', 'name', 'é“œé™µęœ‰č‰²é‡‘å±žé›†å›¢ęŽ§č‚”ęœ‰é™å…¬åø'),
(84218, 69811, 'no_lang_code', 'name', 'Nanjing Lishui Electronics Research Institute (China)'),
(84219, 69811, 'zh', 'name', 'å—äŗ¬äø½ę°“ē”µå­ē ”ē©¶ę‰€'),
(84220, 69812, 'en', 'name', 'Beijing Advanced Sciences and Innovation Center'),
(84221, 69812, 'zh', 'name', 'åŒ—äŗ¬ē»¼åˆē ”ē©¶äø­åæƒ'),
(84222, 69813, 'en', 'name', 'Nihon University Itabashi Hospital'),
(84223, 69813, 'ja', 'name', 'ę—„ęœ¬å¤§å­¦ęæę©‹ē—…é™¢'),
(84224, 69814, 'en', 'name', 'Korean Society for Journalism and Communication Studies'),
(84225, 69814, 'ko', 'name', 'ķ•œźµ­ ģ €ė„ė¦¬ģ¦˜ ģ»¤ė®¤ė‹ˆģ¼€ģ“ģ…˜ ķ•™ķšŒ'),
(84226, 69815, 'en', 'name', 'Environmental Justice Foundation'),
(84227, 69816, 'fr', 'name', 'Cercle Finance du QuƩbec'),
(84228, 69817, 'no_lang_code', 'name', 'Congenomics (United States)'),
(84229, 69818, 'en', 'name', 'China Railway Construction Machinery Research & Design Institute'),
(84230, 69818, 'zh', 'name', 'äø­é“å·„ēØ‹ęœŗę¢°ē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åøé™¢ē®€ä»‹'),
(84231, 69819, 'en', 'name', 'Macedonian Information Agency'),
(84232, 69819, 'mk', 'name', 'МакеГонска информативна Š°Š³ŠµŠ½Ń†ŠøŃ˜Š°'),
(84233, 69820, 'no_lang_code', 'name', 'China National Heavy Duty Truck Group (China)'),
(84234, 69820, 'zh', 'name', 'äø­å›½é‡åž‹ę±½č½¦é›†å›¢ęœ‰é™å…¬åø'),
(84235, 69821, 'no_lang_code', 'name', 'INSEAD'),
(84236, 69822, 'en', 'name', 'Active Healthy Kids'),
(84237, 69823, 'en', 'name', 'Kyungbok University'),
(84238, 69823, 'ko', 'name', 'ź²½ė³µėŒ€ķ•™źµ'),
(84239, 69824, 'en', 'name', 'Guizhou Provincial Institute of Mountain Agricultural Machinery'),
(84240, 69825, 'en', 'name', 'Korean Educational Psychology Association'),
(84241, 69825, 'ko', 'name', 'ķ•œźµ­źµģœ”ģ‹¬ė¦¬ķ•™ķšŒ'),
(84242, 69826, 'en', 'name', 'All-Russian Scientific Research Institute for Operation of Nuclear Power Plants'),
(84243, 69826, 'ru', 'name', 'Всероссийский ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŃŠŗŃŠæŠ»ŃƒŠ°Ń‚Š°Ń†ŠøŠø атомных ŃŠ»ŠµŠŗŃ‚Ń€Š¾ŃŃ‚Š°Š½Ń†ŠøŠ¹'),
(84244, 69827, 'no_lang_code', 'name', 'Vitargent (China)'),
(84245, 69828, 'no_lang_code', 'name', 'Optrace (Ireland)'),
(84246, 69829, 'no_lang_code', 'name', 'Chenming Group (China)'),
(84247, 69829, 'zh', 'name', '晨鸣集团'),
(84248, 69830, 'en', 'name', 'Central Scientific Research Institute of Measuring Equipment'),
(84249, 69830, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ˜Š˜ ŠøŠ·Š¼ŠµŃ€ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š¹ Š°ŠæŠæŠ°Ń€Š°Ń‚ŃƒŃ€Ń‹'),
(84250, 69831, 'ko', 'name', 'ķ•œģ§„ 그룹'),
(84251, 69831, 'no_lang_code', 'name', 'Hanjin (South Korea)'),
(84252, 69832, 'no_lang_code', 'name', 'Biocarbon Engineering (United Kingdom)'),
(84253, 69833, 'en', 'name', 'Westminster Cathedral'),
(84254, 69834, 'en', 'name', 'Noble Hospital'),
(84255, 69835, 'en', 'name', 'Hallym University of Graduate Studies'),
(84256, 69835, 'ko', 'name', 'ķ•œė¦¼źµ­ģ œėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(84257, 69836, 'en', 'name', 'Liuzhou Institute of Automation Science'),
(84258, 69837, 'en', 'name', 'All-Russian Research Institute of Radio Equipment'),
(84259, 69837, 'ru', 'name', 'ŠžŃ€Š“ŠµŠ½Š° Š¢Ń€ŃƒŠ“Š¾Š²Š¾Š³Š¾ ŠšŃ€Š°ŃŠ½Š¾Š³Š¾ Знамени Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€Š°Š“ŠøŠ¾Š°ŠæŠæŠ°Ń€Š°Ń‚ŃƒŃ€Ń‹'),
(84260, 69838, 'en', 'name', 'West Virginia Coalition Against Domestic Violence'),
(84261, 69839, 'en', 'name', 'International Institute of Refrigeration'),
(84262, 69840, 'no_lang_code', 'name', 'Alexium (United States)'),
(84263, 69841, 'ko', 'name', '전세계 지적 ģž¬ģ‚°ź¶Œ ģ„œė¹„ģŠ¤'),
(84264, 69841, 'no_lang_code', 'name', 'Worldwide Intellectual Property Service (South Korea)'),
(84265, 69842, 'en', 'name', 'Institute of Navigation'),
(84266, 69843, 'no_lang_code', 'name', 'HeidelbergCement (Italy)'),
(84267, 69844, 'no_lang_code', 'name', 'Gowell (China)'),
(84268, 69845, 'de', 'name', 'Bundesverband CarSharing'),
(84269, 69846, 'no_lang_code', 'name', 'Drukpol (Poland)'),
(84270, 69847, 'en', 'name', 'Ministry of Family, Labour and Social Policy'),
(84271, 69847, 'pl', 'name', 'Ministerstwo Rodziny, Pracy i Polityki Społecznej'),
(84272, 69848, 'fr', 'name', 'Institut Jacques Delors'),
(84273, 69849, 'en', 'name', 'Chengdu Academy of Agriculture and Forestry Sciences'),
(84274, 69849, 'zh', 'name', 'ęˆéƒ½åø‚å†œęž—ē§‘å­¦é™¢'),
(84275, 69850, 'en', 'name', 'The Society of Korean Language Education'),
(84276, 69850, 'ko', 'name', 'ķ•œźµ­ģ–“źµģœ”ķ•™ķšŒ'),
(84277, 69851, 'en', 'name', 'Sunyani Technical University'),
(84278, 69852, 'en', 'name', 'Growth Networks Uganda'),
(84279, 69853, 'ko', 'name', 'ė‚˜ģ€ 병원'),
(84280, 69853, 'no_lang_code', 'name', 'Na Eun Hospital'),
(84281, 69854, 'en', 'name', 'Drake Music'),
(84282, 69855, 'no_lang_code', 'name', 'Janssen (Italy)'),
(84283, 69856, 'en', 'name', 'Minnan University of Science and Technology'),
(84284, 69857, 'en', 'name', 'Jilin Academy of Agricultural Machinery'),
(84285, 69857, 'zh', 'name', 'å‰ęž—ēœå†œäøšęœŗę¢°ē ”ē©¶é™¢'),
(84286, 69858, 'en', 'name', 'Employment and Economic Development Office'),
(84287, 69858, 'fi', 'name', 'Tyƶ- ja elinkeinotoimisto'),
(84288, 69859, 'en', 'name', 'European Union Agency for Law Enforcement Cooperation'),
(84289, 69860, 'en', 'name', 'The Linguistic Science Society'),
(84290, 69860, 'ko', 'name', 'ģ–øģ–“ź³¼ķ•™ķšŒ'),
(84291, 69861, 'en', 'name', 'Korean Infant and Child Care Society'),
(84292, 69861, 'ko', 'name', 'ķ•œźµ­ ģœ ģ•„ 볓윔 ķ•™ķšŒ'),
(84293, 69862, 'en', 'name', 'The Society of Korean Language And Literature'),
(84294, 69862, 'ko', 'name', 'ģš°ė¦¬ģ–“ė¬øķ•™ķšŒ'),
(84295, 69863, 'en', 'name', 'The Society of Korean Literary Criticism'),
(84296, 69863, 'ko', 'name', 'ķ•œźµ­ė¹„ķ‰ė¬øķ•™ķšŒėŠ”'),
(84297, 69864, 'no_lang_code', 'name', 'Panasonic (China)'),
(84298, 69864, 'zh', 'name', 'ę¾äø‹ē”µå™Ø'),
(84299, 69865, 'en', 'name', 'Kunshan Industrial Technology Research Institute'),
(84300, 69865, 'zh', 'name', 'ę˜†å±±åø‚å·„äøšęŠ€ęœÆē ”ē©¶é™¢'),
(84301, 69866, 'pl', 'name', 'Centrum Gamma Knife'),
(84302, 69867, 'no_lang_code', 'name', 'Scientific Research Institute of Metallurgical Technology (Russia)'),
(84303, 69868, 'en', 'name', 'Scientific and Research Technological Institute Progress'),
(84304, 69868, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ā«ŠŸŃ€Š¾Š³Ń€ŠµŃŃ'),
(84305, 69869, 'no_lang_code', 'name', 'Shell (Qatar)'),
(84306, 69870, 'en', 'name', 'Agartala Government Medical College'),
(84307, 69871, 'no_lang_code', 'name', 'Quanta Computer (China)'),
(84308, 69871, 'zh', 'name', '广达电脑'),
(84309, 69872, 'en', 'name', 'The Korean Society Of Literary Education'),
(84310, 69872, 'ko', 'name', 'ķ•œźµ­ 문학 교윔 ķ•™ķšŒ'),
(84311, 69873, 'en', 'name', 'Korea Institute of Finance'),
(84312, 69873, 'ko', 'name', 'ķ•œźµ­źøˆģœµģ—°źµ¬ģ›ģ€ ģ§€ė‚œ'),
(84313, 69874, 'no_lang_code', 'name', 'Arya Vaidya Sala'),
(84314, 69875, 'no_lang_code', 'name', 'TradeCity Cybersoft (China)'),
(84315, 69876, 'no_lang_code', 'name', 'Everbright International (China)'),
(84316, 69876, 'zh', 'name', 'äø­å›½å…‰å¤§å›½é™…ęœ‰é™å…¬åø'),
(84317, 69877, 'no_lang_code', 'name', 'Karl Mayer (China)'),
(84318, 69877, 'zh', 'name', 'å”å°”čæˆč€¶'),
(84319, 69878, 'en', 'name', 'Korea-American Association'),
(84320, 69878, 'ko', 'name', 'ķ•œėÆø ķ˜‘ķšŒ'),
(84321, 69879, 'ko', 'name', 'ģ—ģ“ķˆ¬ģ  '),
(84322, 69879, 'no_lang_code', 'name', 'AtoGen (South Korea)'),
(84323, 69880, 'en', 'name', 'Research Institute "Argon"'),
(84324, 69880, 'ru', 'name', 'ŠŠ˜Š˜ "Аргон"'),
(84325, 69881, 'de', 'name', 'Internationaler Rat für sauberen Verkehr'),
(84326, 69881, 'en', 'name', 'International Council on Clean Transportation'),
(84327, 69882, 'en', 'name', 'Suas Educational Development'),
(84328, 69883, 'en', 'name', 'Human Rights Solidarity'),
(84329, 69883, 'ko', 'name', 'ģøź¶Œģ—°ėŒ€ėŠ”'),
(84330, 69884, 'no_lang_code', 'name', 'ARTS Group (China)'),
(84331, 69884, 'zh', 'name', 'č‰ŗęœÆ 组'),
(84332, 69885, 'en', 'name', 'Eastern Ontario Training Board'),
(84333, 69885, 'fr', 'name', 'Commission de Formation de l''Est Ontarien'),
(84334, 69886, 'no_lang_code', 'name', 'Beijing Automotive Group (China)'),
(84335, 69886, 'zh', 'name', 'åŒ—äŗ¬ę±½č½¦å·„äøšęŽ§č‚”ęœ‰é™č“£ä»»å…¬åø'),
(84336, 69887, 'no_lang_code', 'name', 'Splunk (United States)'),
(84337, 69888, 'en', 'name', 'Associated Radiologists'),
(84338, 69889, 'en', 'name', 'Nanjing Polytechnic Institute'),
(84339, 69889, 'zh', 'name', 'å—äŗ¬å·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(84340, 69890, 'en', 'name', 'Heilbronn Institute for Mathematical Research'),
(84341, 69891, 'en', 'name', 'The Society Of Korean Literary Therapy'),
(84342, 69891, 'ko', 'name', 'ķ•œźµ­ 문학 치료 ķ•™ķšŒ'),
(84343, 69892, 'no_lang_code', 'name', 'C&T Elmech (Poland)'),
(84344, 69893, 'en', 'name', 'Vlakwa'),
(84345, 69893, 'fr', 'name', 'Vlaams Kenniscentrum Water'),
(84346, 69894, 'tr', 'name', 'Ƈevre ve Şehircilik Bakanlığı'),
(84347, 69895, 'no_lang_code', 'name', 'Bakkavor (United Kingdom)'),
(84348, 69896, 'en', 'name', 'Institute for Public Affairs'),
(84349, 69896, 'sk', 'name', 'InŔtitút pre verejné otÔzky'),
(84350, 69897, 'no_lang_code', 'name', '58.com (China)'),
(84351, 69898, 'pt', 'name', 'Instituto dos Vinhos do Douro e Porto'),
(84352, 69899, 'en', 'name', 'Royal Netherlands Institute in Rome'),
(84353, 69899, 'it', 'name', 'Koninklijk Nederlands Instituut te Rome'),
(84354, 69900, 'en', 'name', 'International Food & Agricultural Trade Policy Council'),
(84355, 69901, 'en', 'name', 'Jiangmen Polytechnic'),
(84356, 69901, 'zh', 'name', 'ę±Ÿé—ØčŒäøšęŠ€ęœÆå­¦é™¢'),
(84357, 69902, 'no_lang_code', 'name', 'Magaza (Qatar)'),
(84358, 69903, 'no_lang_code', 'name', 'Bridge Interpreting (Ireland)'),
(84359, 69904, 'no_lang_code', 'name', 'Covnetics (United Kingdom)'),
(84360, 69905, 'en', 'name', 'National Centre for Immunisation Research & Surveillance'),
(84361, 69906, 'no_lang_code', 'name', 'Ningxia Machinery Research Institute (China)'),
(84362, 69907, 'no_lang_code', 'name', 'Cordis Automation (Netherlands)'),
(84363, 69908, 'no_lang_code', 'name', 'IPG Transport (United Kingdom)'),
(84364, 69909, 'pl', 'name', 'Instytut Wzornictwa Przemyslowego'),
(84365, 69910, 'el', 'name', 'Πανελλήνια Ī£Ļ…Ī½ĪæĪ¼ĪæĻƒĻ€ĪæĪ½Ī“ĪÆĪ± Ī•Ī½ĻŽĻƒĪµĻ‰Ī½ Ī‘Ī³ĻĪæĻ„Ī¹ĪŗĻŽĪ½ Ī£Ļ…Ī½ĪµĻ„Ī±Ī¹ĻĪ¹ĻƒĪ¼ĻŽĪ½'),
(84366, 69910, 'en', 'name', 'Panhellenic Confederation of Unions of Agricultural Cooperatives'),
(84367, 69911, 'bg', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ на земеГелието Šø горите, Ministerstvo na zemedelieto i gorite'),
(84368, 69911, 'en', 'name', 'Ministry of Agriculture, Food and Forestry'),
(84369, 69912, 'no_lang_code', 'name', 'Jinan Municipal Engineering Design & Research Institute (China)'),
(84370, 69912, 'zh', 'name', 'ęµŽå—åø‚åø‚ę”æå·„ēØ‹č®¾č®”ē ”ē©¶é™¢'),
(84371, 69913, 'en', 'name', 'The Korean Association for Policy Analysis and Evaluation'),
(84372, 69913, 'ko', 'name', 'ė…„ ģ¶œė²”ķ•œ ķ•œźµ­ģ •ģ±…ė¶„ģ„ķ‰ź°€ķ•™ķšŒėŠ” ģ§€źøˆź¹Œģ§€'),
(84373, 69914, 'no_lang_code', 'name', 'Read-Gene (Poland)'),
(84374, 69915, 'ar', 'name', 'Ł…Ų±ŁƒŲ² قطر Ł„Ł„ŲŖŁƒŁ†Ł„ŁˆŲ¬ŁŠŲ§ المساعدة مدى'),
(84375, 69915, 'en', 'name', 'Mada Assistive Technology Centre'),
(84376, 69916, 'ko', 'name', 'ģ˜¤ķ…ź·øė£¹ģ€'),
(84377, 69916, 'no_lang_code', 'name', 'Autech Group (South Korea)'),
(84378, 69917, 'en', 'name', 'High Peak Community Arts'),
(84379, 69918, 'en', 'name', 'Guangxi Machinery Industry Research Institute'),
(84380, 69919, 'de', 'name', 'Internationale Beleuchtungskommission'),
(84381, 69919, 'en', 'name', 'International Commission on Illumination'),
(84382, 69920, 'en', 'name', 'St. Ignatius Loyola College'),
(84383, 69920, 'lt', 'name', 'Å v. Ignaco Lojolos Kolegija'),
(84384, 69921, 'no_lang_code', 'name', 'Tern (United Kingdom)'),
(84385, 69922, 'en', 'name', 'Sichuan Academy of Traditional Chinese Medicine'),
(84386, 69922, 'zh', 'name', 'å››å·ēœäø­åŒ»čÆē§‘å­¦é™¢'),
(84387, 69923, 'en', 'name', 'Hong Kong Footwear Federation'),
(84388, 69924, 'no_lang_code', 'name', 'Schlumberger (Russia)'),
(84389, 69925, 'en', 'name', 'Hunan Rare Earth Metal Material Research Institute'),
(84390, 69925, 'zh', 'name', 'ę¹–å—ēØ€åœŸé‡‘å±žęę–™ē ”ē©¶ę‰€'),
(84391, 69926, 'de', 'name', 'Bifa Umweltinstitut'),
(84392, 69927, 'en', 'name', 'Tianjin Academy for Intelligent Recognition Technologies'),
(84393, 69927, 'zh', 'name', 'å¤©ę“„äø­ē§‘ę™ŗčƒ½čÆ†åˆ«äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(84394, 69928, 'en', 'name', 'Iraq Virtual Science Library'),
(84395, 69929, 'en', 'name', 'Construction Industry Training Board'),
(84396, 69930, 'en', 'name', 'China Fishery Machinery and Instrument Research Institute'),
(84397, 69930, 'zh', 'name', 'ęø”äøšęœŗę¢°ä»Ŗå™Øē ”ē©¶ę‰€åˆ›'),
(84398, 69931, 'en', 'name', 'Henan Radio and Television University'),
(84399, 69931, 'zh', 'name', 'ę²³å—å¹æę’­ē”µč§†å¤§å­¦'),
(84400, 69932, 'no_lang_code', 'name', 'Marico (India)'),
(84401, 69933, 'en', 'name', 'All-Russian Scientific Research Institute of Canned Food Technology'),
(84402, 69933, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ консервной ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(84403, 69934, 'en', 'name', 'Hong Kong Electronic Industries Association'),
(84404, 69934, 'zh', 'name', 'é¦™ęøÆé›»å­ę„­å•†ęœƒ'),
(84405, 69935, 'be', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠ¾Šµ Ń€ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠ¾Šµ ŃƒŠ½ŠøŃ‚Š°Ń€Š½Š¾Šµ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŃŃ‚ŠøŠµ по ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŃŃ‚Š²Ńƒ "Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š‘ŠµŠ»ŠŠ˜Š˜Š”"'),
(84406, 69935, 'en', 'name', 'Institute Belniis'),
(84407, 69936, 'no_lang_code', 'name', 'Enza Zaden (Netherlands)'),
(84408, 69937, 'en', 'name', 'BuildingSMART Korea'),
(84409, 69937, 'ko', 'name', 'ģ„œģšø 스마트 ė¹Œė”©'),
(84410, 69938, 'en', 'name', 'The Korean Society for the Study of Teacher Education'),
(84411, 69938, 'ko', 'name', 'ķ•œźµ­źµģ›źµģœ”ķ•™ķšŒ'),
(84412, 69939, 'en', 'name', 'Hong Kong Watch Manufacturers Association'),
(84413, 69939, 'zh', 'name', 'é¦™ęøÆč”Øå» å•†ęœƒęœ‰é™å…¬åø'),
(84414, 69940, 'en', 'name', 'Research Institute of Medical Climatology and Rehabilitation'),
(84415, 69940, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинской климатологии Šø Š²Š¾ŃŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾Š³Š¾ Š»ŠµŃ‡ŠµŠ½ŠøŃ'),
(84416, 69941, 'en', 'name', 'San Francisco Bay Conservation and Development Commission'),
(84417, 69942, 'ko', 'name', 'ķ•œźµ­źµģœ”ė°©ģ†”ź³µģ‚¬'),
(84418, 69942, 'no_lang_code', 'name', 'Korea Educational Broadcasting System'),
(84419, 69943, 'en', 'name', 'Korea Marketing Management Association'),
(84420, 69943, 'ko', 'name', 'ķ•œźµ­ ė§ˆģ¼€ķŒ… 경영 ķ•™ķšŒ'),
(84421, 69944, 'ar', 'name', 'Ł…ŲÆŲ±Ų³Ų© Ų§Ł„ŁƒŁˆŲ«Ų± Ų§Ł„Ų«Ų§Ł†ŁˆŁŠŲ© للبنات'),
(84422, 69944, 'en', 'name', 'Al Kawther Secondary Independent School for Girls'),
(84423, 69945, 'no_lang_code', 'name', 'CEG International (Qatar)'),
(84424, 69946, 'en', 'name', 'Korea Information & Communication Technology Industry Association'),
(84425, 69946, 'ko', 'name', '(사)ķ•œźµ­ģ •ė³“ķ†µģ‹ źø°ģˆ ģ‚°ģ—…ķ˜‘ķšŒ-'),
(84426, 69947, 'ko', 'name', 'ģ£¼ģ‹ķšŒģ‚¬ ģ—ė“œģ›'),
(84427, 69947, 'no_lang_code', 'name', 'Adone (South Korea)'),
(84428, 69948, 'no_lang_code', 'name', 'Greengineering (United Kingdom)'),
(84429, 69949, 'de', 'name', 'Bundeswehrzentralkrankenhaus Koblenz'),
(84430, 69950, 'en', 'name', 'NHS Bradford Districts Clinical Commissioning Group'),
(84431, 69951, 'en', 'name', 'Apollo Cradle For Women & Children'),
(84432, 69952, 'en', 'name', 'Shandong Huanghe Delta Institute of Textile Science and Technology'),
(84433, 69952, 'zh', 'name', 'å±±äøœé»„ę²³äø‰č§’ę“²ēŗŗē»‡ē§‘ęŠ€ē ”ē©¶é™¢äŗŽ'),
(84434, 69953, 'en', 'name', 'Guizhou Institute of Building Materials Science Research and Design Institute'),
(84435, 69954, 'en', 'name', 'Tianyi Institute of Biological Technology'),
(84436, 69954, 'zh', 'name', 'åˆč‚„å¤©äø€ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€ęˆ'),
(84437, 69955, 'no_lang_code', 'name', 'Changzhou Architectural Research Institute Group (China)'),
(84438, 69955, 'zh', 'name', 'åøøå·žåø‚å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(84439, 69956, 'en', 'name', 'Korea Communications Industry Cooperative'),
(84440, 69956, 'ko', 'name', 'ķ•œźµ­ė°©ģ†”ķ†µģ‹ ģ‚°ģ—…ķ˜‘ė™ģ”°ķ•© ģ”°ķ•©ģ†Œź°œ ģøģ‚¬ė§ ģ•ˆė‚“ģž…ė‹ˆė‹¤'),
(84441, 69957, 'en', 'name', 'Research Institute of Molecular Electronics'),
(84442, 69957, 'ru', 'name', 'ŠŠ˜Š˜ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(84443, 69958, 'no_lang_code', 'name', 'VolgoUralNIPIgaz (Russia)'),
(84444, 69959, 'en', 'name', 'Ministry of Agriculture and Forestry'),
(84445, 69959, 'lo', 'name', 'ąŗąŗ°ąŗŠąŗ§ąŗ‡ ກະສຓກຳ ແຄະ ąŗ›ą»ˆąŗ²ą»„ąŗ”ą»‰'),
(84446, 69960, 'en', 'name', 'Health Insurance Institute of Slovenia'),
(84447, 69960, 'sl', 'name', 'Zavod za zdravstveno zavarovanje Slovenije'),
(84448, 69961, 'en', 'name', 'Kyung Hee University Hospital at Gangdong'),
(84449, 69961, 'ko', 'name', 'ź°•ė™ź²½ķ¬ėŒ€ķ•™źµė³‘ģ›'),
(84450, 69962, 'en', 'name', 'Research Institute of Refining and Petrochemical Industry" MASMA "'),
(84451, 69962, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нафтопереробки "МАДМА"'),
(84452, 69963, 'no_lang_code', 'name', 'Uralniti (Russia)'),
(84453, 69963, 'ru', 'name', 'Š£Ń€Š°Š»ŠŠ˜Š¢Š˜'),
(84454, 69964, 'en', 'name', 'Government Vidarbha Institute of Science and Humanities'),
(84455, 69965, 'no_lang_code', 'name', 'Heidelberg (Poland)'),
(84456, 69966, 'en', 'name', 'Shanghai Water Conservancy Engineering Design & Research Institute'),
(84457, 69966, 'zh', 'name', 'äøŠęµ·åø‚ę°“åˆ©å·„ēØ‹č®¾č®”ē ”ē©¶é™¢ęœ‰é™'),
(84458, 69967, 'en', 'name', 'North-West Public Health Research Center'),
(84459, 69968, 'no_lang_code', 'name', 'Sensory (United States)'),
(84460, 69969, 'en', 'name', 'Korean Political Science Association'),
(84461, 69969, 'ko', 'name', 'ķ•œźµ­ģ •ģ¹˜ķ•™ķšŒ'),
(84462, 69970, 'no_lang_code', 'name', 'CCFEB Industrial Equipment Installation (China)'),
(84463, 69970, 'zh', 'name', 'äø­å»ŗäŗ”å±€å·„äøšč®¾å¤‡å®‰č£…ęœ‰é™å…¬åø'),
(84464, 69971, 'ro', 'name', 'Colegiul National Mihai Eminescu'),
(84465, 69972, 'en', 'name', 'Center for Non-Communicable Diseases'),
(84466, 69973, 'en', 'name', 'Centre for Arab Genomic Studies'),
(84467, 69974, 'no_lang_code', 'name', 'Portable Innovation Technology (China)'),
(84468, 69975, 'no_lang_code', 'name', 'Frontier Advanced Technology (China)'),
(84469, 69976, 'no_lang_code', 'name', 'ServiceNow (United States)'),
(84470, 69977, 'en', 'name', 'TheMuseum'),
(84471, 69978, 'no_lang_code', 'name', 'Institute of Technology and Production Organization (Russia)'),
(84472, 69979, 'en', 'name', 'Government Ayurvedic College and Hospital Osmanabad'),
(84473, 69979, 'hi', 'name', 'ą¤øą¤°ą¤•ą¤¾ą¤°ą„€ ą¤†ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¦ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ आणि ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ ą¤‰ą¤øą„ą¤®ą¤¾ą¤Øą¤¾ą¤¬ą¤¾ą¤¦'),
(84474, 69980, 'en', 'name', 'Institute of Medical Ethics and Bioethics, n. f'),
(84475, 69980, 'sk', 'name', 'Ústav medicínskej etiky a bioetiky'),
(84476, 69981, 'no_lang_code', 'name', 'Zhejiang Yuhua Electronics (China)'),
(84477, 69981, 'zh', 'name', 'ęµ™ę±Ÿč£•åŽē”µå™Øęœ‰é™å…¬åø'),
(84478, 69982, 'en', 'name', 'Suzhou Industrial Park Institute of Services Outsourcing'),
(84479, 69982, 'zh', 'name', 'č‹å·žå·„äøšå›­åŒŗęœåŠ”å¤–åŒ…čŒäøšå­¦é™¢'),
(84480, 69983, 'en', 'name', 'Division of Fossil Fuels Energy'),
(84481, 69984, 'ar', 'name', 'وزارة الثقافه ŁˆŲ§Ł„Ų±ŁŠŲ§Ų¶Ł‡'),
(84482, 69984, 'en', 'name', 'Ministry of Culture and Sports'),
(84483, 69985, 'en', 'name', 'All-Russian Scientific Research Institute of Freshwater Fisheries'),
(84484, 69985, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пресновоГного рыбного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²a'),
(84485, 69986, 'en', 'name', 'Guangdong Provincial Institute of Grain Science and Technology'),
(84486, 69986, 'zh', 'name', 'å¹æäøœēœē²®é£Ÿē§‘å­¦ē ”ē©¶ę‰€'),
(84487, 69987, 'no_lang_code', 'name', 'Dalian Plastics Research Institute (China)'),
(84488, 69987, 'zh', 'name', 'å¤§čæžå”‘ę–™ē ”ē©¶ę‰€'),
(84489, 69988, 'no_lang_code', 'name', 'Coolpad (China)'),
(84490, 69989, 'en', 'name', 'All-Russian Scientific Research Institute of Flax'),
(84491, 69989, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ льна'),
(84492, 69990, 'en', 'name', 'Scientific Research Institute of Agrarian Problems of Khakassia'),
(84493, 69991, 'lt', 'name', 'BirÅ”tono Savivaldybė'),
(84494, 69992, 'en', 'name', 'Shanxi Transportation Research Institute'),
(84495, 69992, 'zh', 'name', 'å±±č„æēœäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(84496, 69993, 'no_lang_code', 'name', 'Googol Technology (China)'),
(84497, 69994, 'en', 'name', 'Ministry of Education and Higher Education'),
(84498, 69995, 'en', 'name', 'National Youth Agency'),
(84499, 69996, 'en', 'name', 'Ministry of Industry, Commerce, Agriculture and Fisheries'),
(84500, 69997, 'es', 'name', 'Instituto Nacional de Silicosis'),
(84501, 69998, 'en', 'name', 'Avon and Somerset Police Authority'),
(84502, 69999, 'no_lang_code', 'name', 'ZheJiang East Crystal Electronic (China)'),
(84503, 69999, 'zh', 'name', 'ęµ™ę±Ÿäøœę™¶ē”µå­č‚”ä»½ęœ‰é™å…¬åø'),
(84504, 70000, 'no_lang_code', 'name', 'Anhui Provincial Urban Construction Design & Research Institute (China)'),
(84505, 70001, 'en', 'name', 'World Water Watch'),
(84506, 70002, 'en', 'name', 'University for Business and Technology'),
(84507, 70002, 'sq', 'name', 'Universiteti pƫr Biznes dhe Teknologji'),
(84508, 70003, 'en', 'name', 'Ultach Trust'),
(84509, 70004, 'no_lang_code', 'name', 'Arrhythmotech (United States)'),
(84510, 70005, 'no_lang_code', 'name', 'Elways (Sweden)'),
(84511, 70006, 'no_lang_code', 'name', 'Blue Therapeutics (United States)'),
(84512, 70007, 'en', 'name', 'South London Healthcare NHS Trust'),
(84513, 70008, 'no_lang_code', 'name', 'Exensor Technology (Sweden)'),
(84514, 70009, 'no_lang_code', 'name', 'Zenuity (Sweden)'),
(84515, 70010, 'no_lang_code', 'name', 'Evorx (United States)'),
(84516, 70011, 'en', 'name', 'California Budget & Policy Center'),
(84517, 70012, 'en', 'name', 'Conway Hall Ethical Society'),
(84518, 70013, 'en', 'name', 'South Cheshire Astronomical Society'),
(84519, 70014, 'no_lang_code', 'name', 'SolAero Technologies (United States)'),
(84520, 70015, 'en', 'name', 'Polish Aviation Works'),
(84521, 70015, 'no_lang_code', 'name', 'Polskie Zakłady Lotnicze (Poland)'),
(84522, 70016, 'no_lang_code', 'name', 'BioLite (United States)'),
(84523, 70017, 'en', 'name', 'Glasgow West Housing Association'),
(84524, 70018, 'no_lang_code', 'name', 'Epizone'),
(84525, 70019, 'no_lang_code', 'name', 'Amplification Technologies (United States)'),
(84526, 70020, 'en', 'name', 'Tullie House Museum and Art Gallery'),
(84527, 70021, 'no_lang_code', 'name', 'Inkubera (Sweden)'),
(84528, 70022, 'no_lang_code', 'name', 'Ocean Harvesting Technologies (Sweden)'),
(84529, 70023, 'en', 'name', 'Diseworth Heritage Centre'),
(84530, 70024, 'no_lang_code', 'name', 'Microtech Instruments (United States)'),
(84531, 70025, 'en', 'name', 'Irish Jewish Museum'),
(84532, 70026, 'en', 'name', 'Caribbean Institute for Meteorology and Hydrology'),
(84533, 70027, 'en', 'name', 'International Maritime Organization'),
(84534, 70028, 'en', 'name', 'Scottish Music Industry Association'),
(84535, 70029, 'no_lang_code', 'name', 'Cognitopia (United States)'),
(84536, 70030, 'de', 'name', 'Krankenhaus der Barmherzigen Brüder Trier'),
(84537, 70031, 'pt', 'name', 'Instituto Brasil Estados Unidos'),
(84538, 70032, 'no_lang_code', 'name', 'EES Research (United Kingdom)'),
(84539, 70033, 'no_lang_code', 'name', 'BRS Aerospace (United States)'),
(84540, 70034, 'en', 'name', 'London Rebuilding Society'),
(84541, 70035, 'no_lang_code', 'name', 'Alico Systems (United States)'),
(84542, 70036, 'no_lang_code', 'name', 'Healthcare over Internet Protocol Community Interest Company (United Kingdom)'),
(84543, 70037, 'no_lang_code', 'name', 'Creative Technologies (United States)'),
(84544, 70038, 'no_lang_code', 'name', 'RenFuel (Sweden)'),
(84545, 70039, 'no_lang_code', 'name', 'Movexum (Sweden)'),
(84546, 70040, 'no_lang_code', 'name', 'Kelenn Technology (France)'),
(84547, 70041, 'fr', 'name', 'MinistĆØre de l’Enseignement SupĆ©rieur et de la Recherche Scientifique'),
(84548, 70042, 'en', 'name', 'Nigerian Meteorological Agency'),
(84549, 70043, 'sv', 'name', 'Datorn I Utbildningen'),
(84550, 70044, 'en', 'name', 'Shevchenko Institute of Literature'),
(84551, 70044, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š»Ń–Ń‚ŠµŃ€Š°Ń‚ŃƒŃ€Šø імені Тараса Шевченка ŠŠŠ України'),
(84552, 70045, 'no_lang_code', 'name', 'Mabou Mines (United States)'),
(84553, 70046, 'en', 'name', 'Center for the Study of Social Policy'),
(84554, 70047, 'en', 'name', 'Scottish Fisheries Museum'),
(84555, 70048, 'en', 'name', 'Institute for Molecular Manufacturing'),
(84556, 70049, 'no_lang_code', 'name', 'BKF Systems (United States)'),
(84557, 70050, 'en', 'name', 'Zanzibar School of Health'),
(84558, 70051, 'en', 'name', 'MS Training Centre for Development Cooperation'),
(84559, 70052, 'en', 'name', 'The Arctic Eider Society'),
(84560, 70052, 'fr', 'name', 'SociĆ©tĆ© des Eiders de l’Arctique'),
(84561, 70053, 'fr', 'name', 'Unité de Recherche Technologie et Analyses Laitières'),
(84562, 70054, 'en', 'name', 'African Institute for Leaders and Leadership'),
(84563, 70055, 'en', 'name', 'Pakistan and Kashmir Welfare Association'),
(84564, 70056, 'en', 'name', 'Institute of Materials Finishing'),
(84565, 70057, 'en', 'name', 'Make the Road New York'),
(84566, 70058, 'en', 'name', 'Delhi Foundation of Deaf Women'),
(84567, 70059, 'en', 'name', 'Telecommunications Industry Association'),
(84568, 70060, 'no_lang_code', 'name', 'Pharem Biotech (Sweden)'),
(84569, 70061, 'en', 'name', 'National Immigration Law Center'),
(84570, 70062, 'en', 'name', 'Centre for Environment Concerns'),
(84571, 70063, 'en', 'name', 'Singapore-HUJ Alliance for Research and Enterprise'),
(84572, 70064, 'no_lang_code', 'name', 'NORDIC BioEngineering (Sweden)'),
(84573, 70065, 'en', 'name', 'Institute for International Urban Development'),
(84574, 70066, 'no_lang_code', 'name', 'Aptek (United States)'),
(84575, 70067, 'no_lang_code', 'name', 'Spaceworks'),
(84576, 70068, 'en', 'name', 'Wandle'),
(84577, 70069, 'en', 'name', 'International Genetically Engineered Machine Foundation'),
(84578, 70070, 'fi', 'name', 'Vamia'),
(84579, 70071, 'en', 'name', 'Mophradat'),
(84580, 70072, 'en', 'name', 'The Bhandarkar Oriental Research Institute'),
(84581, 70072, 'hi', 'name', 'भांऔारकर ą¤“ą¤°ą¤æą¤ą¤‚ą¤Ÿą¤² ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ'),
(84582, 70073, 'en', 'name', 'Royal Engineers Museum'),
(84583, 70074, 'en', 'name', 'Uganda Red Cross Society'),
(84584, 70075, 'de', 'name', 'Institut für Binnenfischerei e.V. Potsdam-Sacrow'),
(84585, 70075, 'en', 'name', 'Institute of Inland Fisheries in Potsdam-Sacrow'),
(84586, 70076, 'en', 'name', 'UK Music'),
(84587, 70077, 'no_lang_code', 'name', 'h2med (United States)'),
(84588, 70078, 'en', 'name', 'Stevenage Bioscience Catalyst'),
(84589, 70079, 'en', 'name', 'Sir John Soane''s Museum'),
(84590, 70080, 'no_lang_code', 'name', 'Ejenta (United States)'),
(84591, 70081, 'no_lang_code', 'name', 'BWA (United Kingdom)'),
(84592, 70082, 'es', 'name', 'Instituto Nicaragüense de Cultura'),
(84593, 70083, 'en', 'name', 'Linen Hall Library'),
(84594, 70084, 'no_lang_code', 'name', 'Radosys (Hungary)'),
(84595, 70085, 'no_lang_code', 'name', 'EaglePicher Technologies (United States)'),
(84596, 70086, 'no_lang_code', 'name', 'Sweekaar'),
(84597, 70087, 'pt', 'name', 'Faesa Centro Universitario'),
(84598, 70088, 'en', 'name', 'Indigenous Peoples'' Alliance of the Archipelago'),
(84599, 70088, 'id', 'name', 'Aliansi Masyarakat Adat Nusantara'),
(84600, 70089, 'en', 'name', 'FCT College of Education'),
(84601, 70090, 'no_lang_code', 'name', 'RentPath (United States)'),
(84602, 70091, 'en', 'name', 'Education Authority'),
(84603, 70092, 'es', 'name', 'Centro de Investigación de Métodos Computacionales'),
(84604, 70093, 'en', 'name', 'Peterborough City Council'),
(84605, 70094, 'de', 'name', 'Zentrum für Seelische Gesundheit'),
(84606, 70095, 'no_lang_code', 'name', 'Globe Composite (United States)'),
(84607, 70096, 'en', 'name', 'Portobello High School'),
(84608, 70097, 'en', 'name', 'United States Educational Foundation in Pakistan'),
(84609, 70098, 'no_lang_code', 'name', 'Arkham Technology (United States)'),
(84610, 70099, 'no_lang_code', 'name', 'Micro-Leads (United States)'),
(84611, 70100, 'en', 'name', 'BKForensics'),
(84612, 70101, 'el', 'name', 'Ī•Ī²ĻĪ±ĻŠĪŗĻŒ ĪœĪæĻ…ĻƒĪµĪÆĪæ ΕλλάΓος'),
(84613, 70101, 'en', 'name', 'Jewish Museum of Greece'),
(84614, 70102, 'no_lang_code', 'name', 'American Engineering Group (United States)'),
(84615, 70103, 'en', 'name', 'Colwyn Bay Community Hospital'),
(84616, 70104, 'fr', 'name', 'Ecole Nationale d’IngĆ©nieurs – Abderhamane Baba TourĆ©'),
(84617, 70105, 'no_lang_code', 'name', 'Brighter (Sweden)'),
(84618, 70106, 'en', 'name', 'Keystone Research Center'),
(84619, 70107, 'en', 'name', 'AfriChild Centre'),
(84620, 70108, 'en', 'name', 'New Zealand Law Society'),
(84621, 70109, 'en', 'name', 'Glasgow Centre for Inclusive Living'),
(84622, 70110, 'en', 'name', 'Public Health Institute of Malawi'),
(84623, 70111, 'en', 'name', 'Centre for Communication and Development Studies'),
(84624, 70112, 'en', 'name', 'ACCE Institute'),
(84625, 70113, 'no_lang_code', 'name', 'Active Medicine (United Kingdom)'),
(84626, 70114, 'de', 'name', 'Gesundheitszentrum Oberndorf'),
(84627, 70115, 'en', 'name', 'Institute for Security Studies'),
(84628, 70116, 'en', 'name', 'National Institute of Ecology'),
(84629, 70117, 'en', 'name', 'The Lindsay Leg Club Foundation'),
(84630, 70118, 'en', 'name', 'Maxwell Air Force Base'),
(84631, 70119, 'no_lang_code', 'name', 'Proton (Malaysia)'),
(84632, 70120, 'en', 'name', 'New Jersey Institute for Social Justice'),
(84633, 70121, 'en', 'name', 'Bank Information Center'),
(84634, 70122, 'en', 'name', 'National Skills Coalition'),
(84635, 70123, 'en', 'name', 'Project on Organizing, Development, Education, and Research'),
(84636, 70124, 'no_lang_code', 'name', '1st Edge (United States)'),
(84637, 70125, 'en', 'name', 'Illinois Primary Health Care Association'),
(84638, 70126, 'no_lang_code', 'name', 'WntResearch (Sweden)'),
(84639, 70127, 'en', 'name', 'Kent State University Geauga'),
(84640, 70128, 'no_lang_code', 'name', 'Fort Environmental Laboratories (United States)'),
(84641, 70129, 'en', 'name', 'Permian Research Foundation'),
(84642, 70130, 'en', 'name', 'Institute of Physics and Technology'),
(84643, 70130, 'ru', 'name', 'науки Физико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(84644, 70131, 'en', 'name', 'National Monuments Council'),
(84645, 70131, 'es', 'name', 'Consejo de Monumentos Nacionales'),
(84646, 70132, 'pt', 'name', 'Associação Cultural de Mulheres Negras'),
(84647, 70133, 'it', 'name', 'Osservativa di Campo Imperatore'),
(84648, 70134, 'no_lang_code', 'name', 'Ebb Therapeutics (United States)'),
(84649, 70135, 'en', 'name', 'Israeli Cultural Institute'),
(84650, 70135, 'hu', 'name', 'Izraeli KulturƔlis IntƩzet'),
(84651, 70136, 'no_lang_code', 'name', 'Invenia (Canada)'),
(84652, 70137, 'en', 'name', 'The Welsh Black Cattle Society'),
(84653, 70138, 'no_lang_code', 'name', 'Blue Marble Health (United States)'),
(84654, 70139, 'en', 'name', 'Young Women''s Trust'),
(84655, 70140, 'en', 'name', 'Zoological Society of East Anglia'),
(84656, 70141, 'en', 'name', 'Queen Elizabeth Hospital Birmingham Charity'),
(84657, 70142, 'no_lang_code', 'name', 'Entanglement Technologies (United States)'),
(84658, 70143, 'en', 'name', 'European Molecular Biology Conference'),
(84659, 70144, 'no_lang_code', 'name', 'Aditus Science (Sweden)'),
(84660, 70145, 'nl', 'name', 'Stedelijk Museum Amsterdam'),
(84661, 70146, 'en', 'name', 'Tor Lodge and Applecross Trust'),
(84662, 70147, 'no_lang_code', 'name', 'Mindconnect (Sweden)'),
(84663, 70148, 'fr', 'name', 'Animal, Santé, Territoires, Risques et Ecosystèmes'),
(84664, 70149, 'en', 'name', 'Southern Association of Colleges and Schools'),
(84665, 70150, 'no_lang_code', 'name', 'Keleketla Library'),
(84666, 70151, 'en', 'name', 'Hypatia of Alexandria Institute for Reflexion and Studies'),
(84667, 70152, 'en', 'name', 'Crop Protection Association'),
(84668, 70153, 'en', 'name', 'Museum of Memory and Human Rights'),
(84669, 70153, 'es', 'name', 'Museo de la Memoria y los Derechos Humanos'),
(84670, 70154, 'en', 'name', 'The Philippine Women Centre of BC'),
(84671, 70155, 'en', 'name', 'Emmanuel Schools Foundation'),
(84672, 70156, 'no_lang_code', 'name', 'Moco (United States)'),
(84673, 70157, 'en', 'name', 'Hymers College'),
(84674, 70158, 'no_lang_code', 'name', 'Hearst (United States)'),
(84675, 70159, 'no_lang_code', 'name', 'European Willow Breeding (Sweden)'),
(84676, 70160, 'cs', 'name', 'Nadace České Architektury'),
(84677, 70161, 'no_lang_code', 'name', 'Landec (United States)'),
(84678, 70162, 'en', 'name', 'National Museum'),
(84679, 70162, 'nl', 'name', 'Nationale Kunstgalerij’, Rijksmuseum'),
(84680, 70163, 'en', 'name', 'Nature Conservation Centre'),
(84681, 70163, 'tr', 'name', 'Doğa Koruma Merkezi'),
(84682, 70164, 'en', 'name', 'The Foundation for a Civil Society'),
(84683, 70165, 'es', 'name', 'Museo de Historia Natural Noel Kempff Mercado'),
(84684, 70166, 'en', 'name', 'Comprehensive OBGYN'),
(84685, 70167, 'no_lang_code', 'name', 'Quintus Technologies (Sweden)'),
(84686, 70168, 'en', 'name', 'Interdisciplinary Scientific Center J.-V. Poncelet'),
(84687, 70169, 'en', 'name', 'Ocala Research Institute'),
(84688, 70170, 'en', 'name', 'Freud Museum'),
(84689, 70171, 'no_lang_code', 'name', 'Care Progress (United States)'),
(84690, 70172, 'no_lang_code', 'name', 'INTAR'),
(84691, 70173, 'en', 'name', 'Coordinating Ministry for Human Development and Cultural Affairs'),
(84692, 70173, 'id', 'name', 'Kementerian Koordinator Bidang Pembangunan Manusia dan Kebudayaan'),
(84693, 70174, 'no_lang_code', 'name', 'Clinical & Biomedical Computing (United Kingdom)'),
(84694, 70175, 'en', 'name', 'Sanskriti Foundation'),
(84695, 70175, 'hi', 'name', 'ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ą¤æ'),
(84696, 70176, 'no_lang_code', 'name', 'Science Navigation Group (United Kingdom)'),
(84697, 70177, 'en', 'name', 'Institute for Law and Environmental Governance'),
(84698, 70178, 'no_lang_code', 'name', 'Nanosc (Sweden)'),
(84699, 70179, 'de', 'name', 'Landesregierung von Nordrhein-Westfalen'),
(84700, 70179, 'en', 'name', 'State Government of North Rhine Westphalia'),
(84701, 70180, 'en', 'name', 'Barber Institute of Fine Arts'),
(84702, 70181, 'no_lang_code', 'name', 'Gyan Data (India)'),
(84703, 70182, 'en', 'name', 'Ag Innovations'),
(84704, 70183, 'no_lang_code', 'name', 'Intertek (United States)'),
(84705, 70184, 'en', 'name', '2Blades Foundation'),
(84706, 70185, 'en', 'name', 'Global Impact'),
(84707, 70186, 'en', 'name', 'Canadian Institute of Technology'),
(84708, 70186, 'sq', 'name', 'Instituti Kanadez i Teknologjisƫ'),
(84709, 70187, 'no_lang_code', 'name', 'Health Action Partnership International (United Kingdom)'),
(84710, 70188, 'no_lang_code', 'name', 'Horus Energia (Poland)'),
(84711, 70189, 'en', 'name', 'Guildhall Library'),
(84712, 70190, 'no_lang_code', 'name', 'Vishuo Biomedical (Singapore)'),
(84713, 70191, 'no_lang_code', 'name', 'Aerotech Research (United States)'),
(84714, 70192, 'no_lang_code', 'name', 'Rouillard (Canada)'),
(84715, 70193, 'en', 'name', 'Everyday Democracy'),
(84716, 70194, 'en', 'name', 'Lawyers Collective'),
(84717, 70195, 'no_lang_code', 'name', 'Predicare (Sweden)'),
(84718, 70196, 'en', 'name', 'Erdiston Teachers'' Training College'),
(84719, 70197, 'en', 'name', 'Buccleuch Living Heritage Trust'),
(84720, 70198, 'en', 'name', 'World Academy of Art and Science'),
(84721, 70199, 'en', 'name', 'Institute for Sustainable Plant Protection'),
(84722, 70199, 'it', 'name', 'Istituto per la Protezione Sostenibile delle Piante'),
(84723, 70200, 'no_lang_code', 'name', 'Andritz (United Kingdom)'),
(84724, 70201, 'en', 'name', 'UK Irrigation Association'),
(84725, 70202, 'no_lang_code', 'name', 'Shandong Museum'),
(84726, 70202, 'zh', 'name', 'å±±äøœåšē‰©é¦†'),
(84727, 70203, 'en', 'name', 'National Subsea Research Initiative'),
(84728, 70204, 'en', 'name', 'International Centre for Women Playwrights'),
(84729, 70205, 'en', 'name', 'Central State Archive of the Republic of Kazakhstan'),
(84730, 70205, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ ŠžŃ€Ń‚Š°Š»Ń‹Ņ› мемлекеттік мұрағаты'),
(84731, 70205, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ архив Республики ŠšŠ°Š·Š°Ń…стан'),
(84732, 70206, 'no_lang_code', 'name', 'i2r Medical (United Kingdom)'),
(84733, 70207, 'id', 'name', 'Lembaga Gemawan'),
(84734, 70208, 'no_lang_code', 'name', 'Porvair (United Kingdom)'),
(84735, 70209, 'en', 'name', 'The Donaldson Trust'),
(84736, 70210, 'no_lang_code', 'name', 'Rigaku (United States)'),
(84737, 70211, 'en', 'name', 'Guangdong Association of STD and AIDS Prevention and Control'),
(84738, 70211, 'zh', 'name', 'å¹æäøœēœę€§ē—…č‰¾ę»‹ē—…é˜²ę²»åä¼š'),
(84739, 70212, 'en', 'name', 'Celtic FC Foundation'),
(84740, 70213, 'en', 'name', 'Ajmal College of Arts and Science'),
(84741, 70214, 'de', 'name', 'NiedersƤchsisches Landesgesundheitsamt'),
(84742, 70215, 'en', 'name', 'Salzburg Global Seminar'),
(84743, 70216, 'no_lang_code', 'name', 'PanNature'),
(84744, 70216, 'vi', 'name', 'Trung tĆ¢m Con ngĘ°į»i vĆ  ThiĆŖn nhiĆŖn'),
(84745, 70217, 'no_lang_code', 'name', 'Advanced Design Consulting USA (United States)'),
(84746, 70218, 'en', 'name', 'Ecological Sequestration Trust'),
(84747, 70219, 'no_lang_code', 'name', 'Eddy (United States)'),
(84748, 70220, 'fr', 'name', 'Espoir Vie-Togo'),
(84749, 70221, 'en', 'name', 'Luxembourg School of Business'),
(84750, 70222, 'no_lang_code', 'name', 'Calando Pharmaceuticals (United States)'),
(84751, 70223, 'en', 'name', 'Project On Government Oversight'),
(84752, 70224, 'fr', 'name', 'Bibliothèque d''étude et du patrimoine, Bibliothèque de Toulouse'),
(84753, 70225, 'en', 'name', 'North Yorkshire County Council'),
(84754, 70226, 'no_lang_code', 'name', 'Gamma HealthCare (United States)'),
(84755, 70227, 'es', 'name', 'Instituto de Investigaciones FĆ­sicas de Mar del Plata'),
(84756, 70228, 'en', 'name', 'South Western Ambulance Service NHS Foundation Trust'),
(84757, 70229, 'no_lang_code', 'name', 'Cardialen (United States)'),
(84758, 70230, 'no_lang_code', 'name', 'Kennon (United States)'),
(84759, 70231, 'no_lang_code', 'name', 'nanoMAG (United States)'),
(84760, 70232, 'en', 'name', 'European Remanufacturing Council'),
(84761, 70232, 'nl', 'name', 'Conseil EuropƩen de Remanufacture'),
(84762, 70233, 'no_lang_code', 'name', 'For Robin (United States)'),
(84763, 70234, 'en', 'name', 'Yunnan Vocational College of Mechanical and Electrical Technology'),
(84764, 70234, 'zh', 'name', 'äŗ‘å—ęœŗē”µčŒäøšęŠ€ęœÆå­¦é™¢'),
(84765, 70235, 'no_lang_code', 'name', 'Jaybridge Robotics (United States)'),
(84766, 70236, 'en', 'name', 'Feminist Archive North'),
(84767, 70237, 'es', 'name', 'Instituto Tecnológico Superior de Xalapa'),
(84768, 70238, 'en', 'name', 'Education Group Akron'),
(84769, 70238, 'tg', 'name', 'Аркон'),
(84770, 70239, 'en', 'name', 'National AIDS Housing Coalition'),
(84771, 70240, 'no_lang_code', 'name', 'Cole Engineering Services (United States)'),
(84772, 70241, 'en', 'name', 'Butetown Community Centre'),
(84773, 70242, 'en', 'name', 'Beloved Community Center'),
(84774, 70243, 'no_lang_code', 'name', 'Conjugon (United States)'),
(84775, 70244, 'en', 'name', 'Arizona School for the Arts'),
(84776, 70245, 'en', 'name', 'Medicon Village'),
(84777, 70246, 'en', 'name', 'National Agricultural Genotyping Center'),
(84778, 70247, 'no_lang_code', 'name', 'Benchmark (United Kingdom)'),
(84779, 70248, 'no', 'name', 'Trondheim Hjertesenter'),
(84780, 70249, 'no_lang_code', 'name', 'Profu (Sweden)'),
(84781, 70250, 'en', 'name', 'Redress'),
(84782, 70251, 'en', 'name', 'City of Asylum'),
(84783, 70252, 'en', 'name', 'The DaCapo Music Foundation'),
(84784, 70253, 'no_lang_code', 'name', 'Ferric (United States)'),
(84785, 70254, 'en', 'name', 'Polish Cultural Festival Association'),
(84786, 70255, 'en', 'name', 'Climate Outreach'),
(84787, 70256, 'en', 'name', 'Reading Museum'),
(84788, 70257, 'no_lang_code', 'name', 'In Vitro Admet Laboratories (United States)'),
(84789, 70258, 'en', 'name', 'Bennett University'),
(84790, 70259, 'pt', 'name', 'Associação Centro de Estudos de Economia SolidÔria do Atlântico'),
(84791, 70260, 'no_lang_code', 'name', 'Klaria Pharma Holding (Sweden)'),
(84792, 70261, 'es', 'name', 'Instituto de Liderazgo Simone de Beauvoir'),
(84793, 70262, 'no_lang_code', 'name', 'Cerahelix (United States)'),
(84794, 70263, 'no_lang_code', 'name', 'E7 Ventures (United States)'),
(84795, 70264, 'ro', 'name', 'Spitalul Clinic Judeţean de Urgenţă "Pius Brînzeu" Timişoara'),
(84796, 70265, 'en', 'name', 'Research Organization for Information Science and Technology'),
(84797, 70265, 'ja', 'name', 'é«˜åŗ¦ęƒ…å ±ē§‘å­¦ęŠ€č”“ē ”ē©¶ę©Ÿę§‹'),
(84798, 70266, 'en', 'name', 'Campaign Legal Center'),
(84799, 70267, 'no_lang_code', 'name', 'TerraGo (United States)'),
(84800, 70268, 'en', 'name', 'Minnesota Council of Nonprofits'),
(84801, 70269, 'en', 'name', 'Low Income Investment Fund'),
(84802, 70270, 'no_lang_code', 'name', 'Polar Light Technologies (Sweden)'),
(84803, 70271, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„ Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(84804, 70271, 'en', 'name', 'King Faisal Center for Research and Islamic Studies'),
(84805, 70272, 'en', 'name', 'Theodore Roosevelt Association'),
(84806, 70273, 'en', 'name', 'Swedish Olympic Committee'),
(84807, 70273, 'sv', 'name', 'Sveriges Olympiska KommittƩ'),
(84808, 70274, 'sv', 'name', 'Fƶreningen Universitetsholdingbolag i Sverige'),
(84809, 70275, 'no_lang_code', 'name', 'Akrotome Imaging (United States)'),
(84810, 70276, 'no_lang_code', 'name', 'Accudyne Systems (United States)'),
(84811, 70277, 'no_lang_code', 'name', 'TecnoBio (Brazil)'),
(84812, 70278, 'en', 'name', 'Arise Citizens'' Policy Project'),
(84813, 70279, 'en', 'name', 'Institute of Acoustics and Sensors "Orso Mario Corbino"'),
(84814, 70279, 'it', 'name', 'Istituto di Acustica e Sensoristica ā€œOrso Mario Corbinoā€'),
(84815, 70280, 'no_lang_code', 'name', 'Briteseed (United States)'),
(84816, 70281, 'ja', 'name', 'ę—„ęœ¬ćƒ†ćƒ¬ćƒ“ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(84817, 70281, 'no_lang_code', 'name', 'Nippon Television (Japan)'),
(84818, 70282, 'es', 'name', 'Instituto Superior de Investigaciones Biológicas'),
(84819, 70283, 'no_lang_code', 'name', 'GS Caltex (South Korea)'),
(84820, 70284, 'en', 'name', 'Center for Medical Technology Policy'),
(84821, 70285, 'en', 'name', 'The Royal A​nglian Regiment Museum'),
(84822, 70286, 'en', 'name', 'Royal Pavilion'),
(84823, 70287, 'en', 'name', 'Pearl Harbor Aviation Museum'),
(84824, 70288, 'no_lang_code', 'name', 'Intematix (United States)'),
(84825, 70289, 'en', 'name', 'Watermans'),
(84826, 70290, 'en', 'name', 'J. Paul Getty Museum'),
(84827, 70291, 'no_lang_code', 'name', 'Deveryware (France)'),
(84828, 70292, 'en', 'name', 'The Sophie Lancaster Foundation'),
(84829, 70293, 'en', 'name', 'Wired Sussex'),
(84830, 70294, 'en', 'name', 'Sussex Recovery College'),
(84831, 70295, 'en', 'name', 'Pau Costa Foundation'),
(84832, 70296, 'en', 'name', 'Whitechapel Gallery');
INSERT INTO `ror_settings` VALUES
(84833, 70297, 'no_lang_code', 'name', 'iXBlue (France)'),
(84834, 70298, 'no_lang_code', 'name', 'FoVI3D (United States)'),
(84835, 70299, 'en', 'name', 'Smart Growth America'),
(84836, 70300, 'en', 'name', 'The Portico Library'),
(84837, 70301, 'el', 'name', 'Oι ĪšĪ‘Ī˜Ī—ĪœĪ•Ī”Ī™ĪĪ•Ī£ Ī•ĪšĪ”ĪŸĪ£Ī•Ī™Ī£'),
(84838, 70301, 'en', 'name', 'Kathimerini Publishing (Greece)'),
(84839, 70302, 'no_lang_code', 'name', 'MillenniTek (United States)'),
(84840, 70303, 'en', 'name', 'Anveshi Research Centre for Women''s Studies'),
(84841, 70304, 'en', 'name', 'Media Council of Kenya'),
(84842, 70305, 'no_lang_code', 'name', 'Tiri (United Kingdom)'),
(84843, 70306, 'en', 'name', 'Hill House Association'),
(84844, 70307, 'en', 'name', 'Pearl Medical Centre'),
(84845, 70308, 'no_lang_code', 'name', 'Unlimited Group (United Kingdom)'),
(84846, 70309, 'no_lang_code', 'name', 'ReVibe Energy (Sweden)'),
(84847, 70310, 'en', 'name', 'Quality Research Center'),
(84848, 70310, 'pl', 'name', 'Centrum Badań Jakości'),
(84849, 70311, 'en', 'name', 'Namgyal Tantric College'),
(84850, 70311, 'hi', 'name', 'ą¤Øą¤¾ą¤®ą¤—ą„ą¤Æą¤¾ą¤² ą¤®ą„‹ą¤Øą¤¾ą¤øą„ą¤Ÿą„ą¤°ą„€'),
(84851, 70312, 'en', 'name', 'Northampton General Hospital NHS Trust'),
(84852, 70313, 'en', 'name', 'National Council for Protected Areas'),
(84853, 70313, 'es', 'name', 'Consejo Nacional de Areas Protegidas'),
(84854, 70314, 'en', 'name', 'West Of Scotland Housing Association'),
(84855, 70315, 'no_lang_code', 'name', 'Health Innovations (United States)'),
(84856, 70316, 'no_lang_code', 'name', 'Ɖolane (France)'),
(84857, 70317, 'no_lang_code', 'name', 'Marko-Kolor (Poland)'),
(84858, 70318, 'no_lang_code', 'name', 'Summit Associates (United States)'),
(84859, 70319, 'en', 'name', 'Qatar Mobility Innovations Center'),
(84860, 70320, 'en', 'name', 'Schumacher College'),
(84861, 70321, 'no_lang_code', 'name', 'John Tiller Software (United States)'),
(84862, 70322, 'no_lang_code', 'name', 'Blue Line Engineering (United States)'),
(84863, 70323, 'no_lang_code', 'name', 'Innoveering (United States)'),
(84864, 70324, 'no_lang_code', 'name', 'Ilya Pharma (Sweden)'),
(84865, 70325, 'no_lang_code', 'name', 'MicroVide (United States)'),
(84866, 70326, 'en', 'name', 'New Economy Project'),
(84867, 70327, 'en', 'name', 'The Healthy Pizza Company'),
(84868, 70328, 'en', 'name', 'Tearfund'),
(84869, 70329, 'en', 'name', 'Newbattle Abbey College'),
(84870, 70330, 'en', 'name', 'Mpumalanga Deparment of Health'),
(84871, 70331, 'no_lang_code', 'name', 'Automated Precision (United States)'),
(84872, 70332, 'en', 'name', 'Communities Unlimited'),
(84873, 70333, 'en', 'name', 'Sir Bobby Robson Foundation'),
(84874, 70334, 'en', 'name', 'Centre for Nursing Innovation'),
(84875, 70335, 'en', 'name', 'Northern Ireland Advanced Composites and Engineering Centre'),
(84876, 70336, 'en', 'name', 'National Civil War Centre'),
(84877, 70337, 'en', 'name', 'National Library of New Zealand'),
(84878, 70338, 'no_lang_code', 'name', 'BPR Medical (United Kingdom)'),
(84879, 70339, 'en', 'name', 'Highlanes Gallery'),
(84880, 70340, 'en', 'name', 'Scottish Cancer Foundation'),
(84881, 70341, 'no_lang_code', 'name', 'Illumisonics (Canada)'),
(84882, 70342, 'no_lang_code', 'name', 'SR Research (Canada)'),
(84883, 70343, 'en', 'name', 'Soldiers of Oxfordshire Museum'),
(84884, 70344, 'de', 'name', 'Theologische FakultƤt Paderborn'),
(84885, 70345, 'no_lang_code', 'name', 'Dfuzion (United States)'),
(84886, 70346, 'en', 'name', 'Institute for Justice & Democracy in Haiti'),
(84887, 70347, 'en', 'name', 'Americas Media Initiative'),
(84888, 70348, 'en', 'name', 'Political Research Associates'),
(84889, 70349, 'en', 'name', 'Royal Zoological Society of Antwerp'),
(84890, 70349, 'nl', 'name', 'Koninklijke Maatschappij voor Dierkunde Antwerpen'),
(84891, 70350, 'en', 'name', 'International Association of Forensic Nurses'),
(84892, 70351, 'sv', 'name', 'Kalmar LƤns Museum'),
(84893, 70352, 'en', 'name', 'Dallas Office of Emergency Management'),
(84894, 70353, 'en', 'name', 'Baroness Warsi Foundation'),
(84895, 70354, 'no_lang_code', 'name', 'Advanced Medical Solutions Group (United Kingdom)'),
(84896, 70355, 'no_lang_code', 'name', 'Sedibeng TVET College'),
(84897, 70356, 'no_lang_code', 'name', 'Catalent (United Kingdom)'),
(84898, 70357, 'en', 'name', 'Institute of Geography Named after Academician Hasan Aliyev'),
(84899, 70358, 'en', 'name', 'Abilities United'),
(84900, 70359, 'es', 'name', 'Universidad Iberoamericana León'),
(84901, 70360, 'es', 'name', 'Hospital Angeles Clinica Londres'),
(84902, 70361, 'en', 'name', 'Turin Institute for the Deaf'),
(84903, 70361, 'it', 'name', 'L''Istituto dei Sordi di Torino'),
(84904, 70362, 'fr', 'name', 'Ministère de l''Agriculture et des Aménagements Hydrauliques'),
(84905, 70363, 'en', 'name', 'British Screen Advisory Council'),
(84906, 70364, 'en', 'name', 'Rural Development Agency'),
(84907, 70364, 'lo', 'name', 'ąŗŖąŗ¹ąŗ™ąŗžąŗ±ąŗ”ąŗ—ąŗ°ąŗ™ąŗ²ąŗŠąŗ»ąŗ™ąŗ™ąŗ°ąŗšąŗ»ąŗ”'),
(84908, 70365, 'en', 'name', 'DJ Academy of Design'),
(84909, 70366, 'no_lang_code', 'name', 'Elsit (Poland)'),
(84910, 70367, 'no_lang_code', 'name', 'Dog Star Technologies (United States)'),
(84911, 70368, 'en', 'name', 'Yorkshire Dales Millennium Trust'),
(84912, 70369, 'no_lang_code', 'name', 'Hydronalix (United States)'),
(84913, 70370, 'no_lang_code', 'name', 'Montfort Social Institute'),
(84914, 70370, 'te', 'name', 'ą°®ą±‹ą°‚ą°Ÿą±ą°«ą±‹ą°°ą±ą°Ÿą± ą°øą±‹ą°·ą°²ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą±'),
(84915, 70371, 'no_lang_code', 'name', '1928 Diagnostics (Sweden)'),
(84916, 70372, 'no_lang_code', 'name', 'Associated Research (United States)'),
(84917, 70373, 'no_lang_code', 'name', 'Lyndra Therapeutics (United States)'),
(84918, 70374, 'en', 'name', 'Society for Clinical Trials'),
(84919, 70375, 'no_lang_code', 'name', 'Telesystem (Poland)'),
(84920, 70376, 'en', 'name', 'Catholics for Choice'),
(84921, 70377, 'en', 'name', 'Pan-African Association'),
(84922, 70378, 'no_lang_code', 'name', 'SmugMug (United States)'),
(84923, 70379, 'de', 'name', 'Landesamt für Soziales und Versorgung des Landes Brandenburg'),
(84924, 70380, 'en', 'name', 'Maynard Institute'),
(84925, 70381, 'es', 'name', 'Instituto de FĆ­sica del Sur'),
(84926, 70382, 'no_lang_code', 'name', 'CM-Tec (United States)'),
(84927, 70383, 'ms', 'name', 'Sarawak Biodiversity Centre'),
(84928, 70384, 'no_lang_code', 'name', 'Ipsos (United States)'),
(84929, 70385, 'no_lang_code', 'name', 'Applied Optronics (United States)'),
(84930, 70386, 'no_lang_code', 'name', 'Greinon (Sweden)'),
(84931, 70387, 'en', 'name', 'Calorx Teachers'' University'),
(84932, 70388, 'en', 'name', 'Research Institute for Disabled Consumers'),
(84933, 70389, 'en', 'name', 'Africa Centre for Energy Policy'),
(84934, 70390, 'pt', 'name', 'Grupo Montecitrus'),
(84935, 70391, 'no_lang_code', 'name', 'Bio Alternative Medical Devices (United Kingdom)'),
(84936, 70392, 'no_lang_code', 'name', 'Mowi (United Kingdom)'),
(84937, 70393, 'no_lang_code', 'name', 'Nalu Scientific (United States)'),
(84938, 70394, 'no_lang_code', 'name', 'Infinia ML (United States)'),
(84939, 70395, 'en', 'name', 'West Virginia Bureau of Senior Services'),
(84940, 70396, 'en', 'name', 'Mt Albert Primary School'),
(84941, 70397, 'en', 'name', 'National Archives of Ecuador'),
(84942, 70397, 'es', 'name', 'Archivo nacional del Ecuador'),
(84943, 70398, 'en', 'name', 'The McMinn Centre'),
(84944, 70399, 'en', 'name', 'Environmental Grantmakers Association'),
(84945, 70400, 'en', 'name', 'Psychoanalytical Association'),
(84946, 70400, 'kk', 'name', 'ŠŸŃŠøŃ…Š¾Š°Š½Š°Š»ŠøŃ‚ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ'),
(84947, 70401, 'no_lang_code', 'name', 'Richard Carter and Associates (United Kingdom)'),
(84948, 70402, 'no_lang_code', 'name', 'Omnikon (Poland)'),
(84949, 70403, 'en', 'name', 'Scarborough Archaeological and Historical Society'),
(84950, 70404, 'en', 'name', 'Color Of Change'),
(84951, 70405, 'en', 'name', 'Swedish Police Authority'),
(84952, 70405, 'sv', 'name', 'Polismyndigheten'),
(84953, 70406, 'no_lang_code', 'name', 'Ndifuna Ukwazi'),
(84954, 70407, 'en', 'name', 'Dronah Foundation'),
(84955, 70408, 'no_lang_code', 'name', 'Fiber Optic Manufacturing in Space (United States)'),
(84956, 70409, 'en', 'name', 'Association on Higher Education And Disability'),
(84957, 70410, 'en', 'name', 'Exeter Northcott Theatre'),
(84958, 70411, 'no_lang_code', 'name', 'Umalusi'),
(84959, 70412, 'no_lang_code', 'name', 'Nano Control (Sweden)'),
(84960, 70413, 'no_lang_code', 'name', 'Genendeavor (United States)'),
(84961, 70414, 'en', 'name', 'Universal University'),
(84962, 70414, 'ru', 'name', 'Š£Š½ŠøŠ²ŠµŃ€ŃŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(84963, 70415, 'en', 'name', 'Museum Ethnographers Group'),
(84964, 70416, 'en', 'name', 'Missenden Centre'),
(84965, 70417, 'no_lang_code', 'name', 'Microsoft (Brazil)'),
(84966, 70418, 'en', 'name', 'Belfast Charitable Society'),
(84967, 70419, 'en', 'name', 'Curatio International Foundation'),
(84968, 70420, 'en', 'name', 'The Tree Council'),
(84969, 70421, 'en', 'name', 'Royal Horticultural Society'),
(84970, 70422, 'en', 'name', 'Asia Pacific Forum on Women, Law and Development'),
(84971, 70423, 'en', 'name', 'New Virginia Majority Education Fund'),
(84972, 70424, 'de', 'name', 'Stiftung SƤchsische GedenkstƤtten zur Erinnerung an die Opfer politischer Gewaltherrschaft'),
(84973, 70424, 'en', 'name', 'Saxon Memorial Foundation'),
(84974, 70425, 'en', 'name', 'Consumer Council for Water'),
(84975, 70426, 'en', 'name', 'Headlands Center for the Arts'),
(84976, 70427, 'en', 'name', 'The Judicial General Council of Mongolia'),
(84977, 70427, 'mn', 'name', 'Монгол Улсын Шүүхийн Ерөнхий Зөвлөл'),
(84978, 70428, 'no_lang_code', 'name', 'Frequency Management International (United States)'),
(84979, 70429, 'en', 'name', 'National Gamete Donation Trust'),
(84980, 70430, 'no_lang_code', 'name', 'Johnson Engineering (United States)'),
(84981, 70431, 'en', 'name', 'Scottish Wildlife Trust'),
(84982, 70432, 'no_lang_code', 'name', 'Applied BioMath (United States)'),
(84983, 70433, 'no_lang_code', 'name', 'PocketLab (United States)'),
(84984, 70434, 'en', 'name', 'Western Organization of Resource Councils'),
(84985, 70435, 'en', 'name', 'Loden Foundation'),
(84986, 70436, 'en', 'name', 'The UK Sepsis Trust'),
(84987, 70437, 'en', 'name', 'Beijing Yilian Legal Aid and Research Center of Labor'),
(84988, 70437, 'zh', 'name', 'åŒ—äŗ¬ä¹‰č”åŠ³åŠØę³•ę“åŠ©äøŽē ”ē©¶äø­åæƒ'),
(84989, 70438, 'en', 'name', 'First Floor Gallery Harare'),
(84990, 70439, 'fr', 'name', 'Institut EuropƩen De La QualitƩ Totale'),
(84991, 70440, 'en', 'name', 'Science on Stage Europe'),
(84992, 70441, 'en', 'name', 'Low Gillerthwaite Field Centre'),
(84993, 70442, 'en', 'name', 'Wheal Martyn'),
(84994, 70443, 'en', 'name', 'Institute for Society, Population and Nature'),
(84995, 70443, 'pt', 'name', 'Instituto Sociedade População Natureza'),
(84996, 70444, 'en', 'name', 'National Economic and Social Council'),
(84997, 70444, 'ga', 'name', 'Chomhairle NÔisiúnta Eacnamaíoch Shóialta'),
(84998, 70445, 'en', 'name', 'Tygerberg Children’s Hospital'),
(84999, 70446, 'en', 'name', 'Mississippi Division of Medicaid'),
(85000, 70447, 'pt', 'name', 'Museu do Samba'),
(85001, 70448, 'en', 'name', 'Indian Institute of Forest Management'),
(85002, 70448, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ वन ą¤Ŗą„ą¤°ą¤¬ą¤Øą„ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(85003, 70449, 'ms', 'name', 'Hospital Sultanah Nur Zahirah'),
(85004, 70450, 'no_lang_code', 'name', 'Coating Systems Laboratories (United States)'),
(85005, 70451, 'en', 'name', 'Sigmund Freud Museum'),
(85006, 70452, 'en', 'name', 'International Lesbian, Gay, Bisexual, Trans and Intersex Association'),
(85007, 70453, 'pt', 'name', 'Associação Brasileira de Esclerose Lateral Amiotrófica'),
(85008, 70454, 'en', 'name', 'American University of Mongolia'),
(85009, 70454, 'mn', 'name', 'Монгол Š“Š°Ń…ŃŒ Америк Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(85010, 70455, 'en', 'name', 'National Legal Aid & Defender Association'),
(85011, 70456, 'en', 'name', 'Institution of Engineering Designers'),
(85012, 70457, 'no_lang_code', 'name', 'Antheia (United States)'),
(85013, 70458, 'es', 'name', 'Hospital Base'),
(85014, 70459, 'ms', 'name', 'Hospital Tuanku Ja’afar'),
(85015, 70460, 'en', 'name', 'Carnegie UK Trust'),
(85016, 70461, 'no_lang_code', 'name', 'Dirac Research (Sweden)'),
(85017, 70462, 'no_lang_code', 'name', 'Cavis Technologies (Sweden)'),
(85018, 70463, 'no_lang_code', 'name', 'Industrial & Biomedical Sensors (United States)'),
(85019, 70464, 'en', 'name', 'Scottish Family Business Association'),
(85020, 70465, 'en', 'name', 'Association of North East Councils'),
(85021, 70466, 'en', 'name', 'World Energy Council'),
(85022, 70467, 'en', 'name', 'The Bowes Museum'),
(85023, 70468, 'en', 'name', 'National Institute of Technical Teachers’ Training and Research'),
(85024, 70469, 'no_lang_code', 'name', 'TPK (United States)'),
(85025, 70470, 'pt', 'name', 'Centro de Estudos das RelaƧƵes de Trabalho e Desigualdades'),
(85026, 70471, 'en', 'name', 'Leicestershire Fire and Rescue Service'),
(85027, 70472, 'no_lang_code', 'name', 'Herbal Apothecary (United Kingdom)'),
(85028, 70473, 'en', 'name', 'African Heritage and Educational Centre'),
(85029, 70474, 'no_lang_code', 'name', 'Cellar Door Labs (United States)'),
(85030, 70475, 'de', 'name', 'Deutscher Beton- und Bautechnik-Verein'),
(85031, 70476, 'fr', 'name', 'Laboratoire D''Ʃtude des RƩsidus et Contaminants Dans les Aliments'),
(85032, 70477, 'pt', 'name', 'Casa Fluminense'),
(85033, 70478, 'no_lang_code', 'name', 'Studi'),
(85034, 70479, 'en', 'name', 'Caledonia Housing Association'),
(85035, 70480, 'en', 'name', 'Laboratory of Excellence for Financial Regulation'),
(85036, 70481, 'bn', 'name', 'বাংলাদেশ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦ą¦Øą§ą¦” ą¦øą§ą¦Ÿą§ą¦°ą¦¾ą¦Ÿą§‡ą¦œą¦æą¦• ą¦øą§ą¦Ÿą¦¾ą¦”ą¦æą¦œ'),
(85037, 70481, 'en', 'name', 'Bangladesh Institute of International and Strategic Studies'),
(85038, 70482, 'en', 'name', 'African Studies Association of India'),
(85039, 70483, 'en', 'name', 'London Sinfonietta'),
(85040, 70484, 'en', 'name', 'Centre for Investigative Journalism'),
(85041, 70485, 'en', 'name', 'The Mountain Institute'),
(85042, 70486, 'en', 'name', 'Religious Coalition for Reproductive Choice'),
(85043, 70487, 'en', 'name', 'English & Media Centre'),
(85044, 70488, 'en', 'name', 'National Library of Laos'),
(85045, 70488, 'lo', 'name', 'ąŗ«ą»ąŗŖąŗ°ą»ąŗøąŗ”ą»ąŗ«ą»ˆąŗ‡ąŗŠąŗ²ąŗ”'),
(85046, 70489, 'en', 'name', 'National Council for Voluntary Youth Services'),
(85047, 70490, 'en', 'name', 'Pulitzer Arts Foundation'),
(85048, 70491, 'no_lang_code', 'name', 'And Technology Research (United Kingdom)'),
(85049, 70492, 'en', 'name', 'The Hans GƔl Society'),
(85050, 70493, 'no_lang_code', 'name', 'GC Systems (United States)'),
(85051, 70494, 'no_lang_code', 'name', 'Tulana'),
(85052, 70495, 'en', 'name', 'Kyrgyzskaya State Academy of Physical Culture and Sports'),
(85053, 70495, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(85054, 70496, 'hu', 'name', 'Lechner TudƔskƶzpont'),
(85055, 70497, 'no_lang_code', 'name', 'Vicore Pharma (Sweden)'),
(85056, 70498, 'it', 'name', 'Istituto di Istruzione Secondaria Superiore "V. Lilla" Francavilla Fontana - Oria'),
(85057, 70499, 'bg', 'name', 'Š¦ŠµŠ½Ń‚ŃŠŃ€ за развитие на Ń‡Š¾Š²ŠµŃˆŠŗŠøŃ‚Šµ Ń€ŠµŃŃƒŃ€ŃŠø'),
(85058, 70499, 'en', 'name', 'Human Resource Development Center'),
(85059, 70500, 'en', 'name', 'Progress Michigan'),
(85060, 70501, 'en', 'name', 'Institute of Forensic Sciences'),
(85061, 70501, 'es', 'name', 'Instituto de Ciencias Forenses de Puerto Rico'),
(85062, 70502, 'en', 'name', 'Bryansk Regional Scientific Universal Library. F. I. Tyutchev'),
(85063, 70503, 'no_lang_code', 'name', 'GTS (Denmark)'),
(85064, 70504, 'no_lang_code', 'name', 'IntelliWheels (United States)'),
(85065, 70505, 'no_lang_code', 'name', 'Mach Diamond Propulsion (United States)'),
(85066, 70506, 'no_lang_code', 'name', 'Innovative Imaging and Research (United States)'),
(85067, 70507, 'no_lang_code', 'name', 'Custom Electronics (United States)'),
(85068, 70508, 'en', 'name', 'The Culture Capital Exchange'),
(85069, 70509, 'pt', 'name', 'Malungu'),
(85070, 70510, 'no_lang_code', 'name', 'Praxis (United Kingdom)'),
(85071, 70511, 'pl', 'name', 'Wojewódzki Szpital Specjalistyczny we Wrocławiu'),
(85072, 70512, 'en', 'name', 'Methodology and Quality of Life Unit in Oncology'),
(85073, 70512, 'fr', 'name', 'UnitƩ de MƩthodologie et de QualitƩ de Vie en CancƩrologie'),
(85074, 70513, 'no_lang_code', 'name', 'Brockmann Geomatics (Sweden)'),
(85075, 70514, 'en', 'name', 'The Operational Research Society'),
(85076, 70515, 'en', 'name', 'Libraries Tasmania'),
(85077, 70516, 'no_lang_code', 'name', 'Guernsey Coating Laboratories (United States)'),
(85078, 70517, 'en', 'name', 'St. Vrain Valley School District'),
(85079, 70518, 'fr', 'name', 'Institut Franco-Chinois de l''Energie NuclƩaire'),
(85080, 70518, 'zh', 'name', 'äø­ę³•ę øå·„ēØ‹äøŽęŠ€ęœÆå­¦é™¢'),
(85081, 70519, 'en', 'name', 'Center for Human Rights and Conflict Resolution'),
(85082, 70520, 'en', 'name', 'Pretrial Services Agency for the District of Columbia'),
(85083, 70521, 'no_lang_code', 'name', 'Midsummer (Sweden)'),
(85084, 70522, 'no_lang_code', 'name', 'Kharkiv Lit Museum'),
(85085, 70522, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š»Ń–Ń‚ŠµŃ€Š°Ń‚ŃƒŃ€Š½ŠøŠ¹ музей'),
(85086, 70523, 'en', 'name', 'Law & Society Trust'),
(85087, 70524, 'en', 'name', 'UK Quality Ash Association'),
(85088, 70525, 'en', 'name', 'Action Against Medical Accidents'),
(85089, 70526, 'no_lang_code', 'name', 'Catalina (United States)'),
(85090, 70527, 'no_lang_code', 'name', 'Integrative Research Laboratories'),
(85091, 70528, 'en', 'name', 'Keith Khan Associates'),
(85092, 70529, 'no_lang_code', 'name', 'Edge One (United States)'),
(85093, 70530, 'en', 'name', 'World Policy Institute'),
(85094, 70531, 'en', 'name', 'Tajik State Institute of Languages'),
(85095, 70531, 'tg', 'name', 'Š”ŠžŠŠ˜ŠØŠšŠŠ”ŠŠ˜ Š”ŠŠ’Š›ŠŠ¢Š˜Š˜ Š—ŠŠ‘ŠžŠ©ŠžŠ˜ тоГикистон БА номи сотим Š£Š›Š£Š“Š—ŠžŠ”Š'),
(85096, 70532, 'en', 'name', 'Columbia Global Centers'),
(85097, 70533, 'no_lang_code', 'name', 'Atrogi (Sweden)'),
(85098, 70534, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ філасофіі ŠŠ°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Š°Š¹ Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń– навук Š‘ŠµŠ»Š°Ń€ŃƒŃŃ–'),
(85099, 70534, 'en', 'name', 'Institute of Philosophy'),
(85100, 70534, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ философии ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(85101, 70535, 'en', 'name', 'McCrone Research Institute'),
(85102, 70536, 'en', 'name', 'Siena School for Liberal Arts'),
(85103, 70537, 'en', 'name', 'Lillstreet Art Center'),
(85104, 70538, 'en', 'name', 'Middle Rio Grande Development Council'),
(85105, 70539, 'en', 'name', 'European Association for the Defence of Human Rights'),
(85106, 70540, 'en', 'name', 'Exact Sports'),
(85107, 70541, 'no_lang_code', 'name', 'Patriksson Communication (Sweden)'),
(85108, 70542, 'en', 'name', 'Royal Pigeon Racing Association'),
(85109, 70543, 'no_lang_code', 'name', 'Ngami Data Services (Botswana)'),
(85110, 70544, 'en', 'name', 'Belarusian Economic Research and Outreach Center'),
(85111, 70545, 'en', 'name', 'Institute for Social Development Studies'),
(85112, 70545, 'vi', 'name', 'Viện nghiĆŖn cứu phĆ”t triển xĆ£ hį»™i'),
(85113, 70546, 'en', 'name', 'Teller Madsen'),
(85114, 70547, 'no_lang_code', 'name', 'Xilinx (Ireland)'),
(85115, 70548, 'no_lang_code', 'name', 'Cairn Biosciences (United States)'),
(85116, 70549, 'en', 'name', 'Booksellers Association'),
(85117, 70550, 'en', 'name', 'Turkiye Diyanet Foundation'),
(85118, 70551, 'no_lang_code', 'name', 'WilderShares (United States)'),
(85119, 70552, 'en', 'name', 'DST Centre for Policy Research'),
(85120, 70553, 'en', 'name', 'Intercultural Dialogue Foundation'),
(85121, 70553, 'hu', 'name', 'InterkulturƔlis PƔrbeszƩd AlapƭtvƔny'),
(85122, 70554, 'no_lang_code', 'name', 'American Systems (United States)'),
(85123, 70555, 'no_lang_code', 'name', 'Global Aircraft (United States)'),
(85124, 70556, 'en', 'name', 'Bolton Library and Museum Services'),
(85125, 70557, 'no_lang_code', 'name', 'Magna-Tech P/M Labs (United States)'),
(85126, 70558, 'no_lang_code', 'name', 'Mistral Security (United States)'),
(85127, 70559, 'en', 'name', 'Nkuzi Development Association'),
(85128, 70560, 'en', 'name', 'State Cryptography Administration'),
(85129, 70560, 'zh', 'name', '国家密码箔理局'),
(85130, 70561, 'en', 'name', 'Da Nang Institute For Socio - Economic Development'),
(85131, 70561, 'vi', 'name', 'VIỆN NGHIÊN CỨU PHƁT TRIỂN KINH Tįŗ¾ - Xƃ HỘI Đƀ Nįŗ“NG'),
(85132, 70562, 'en', 'name', 'British Association of Social Workers'),
(85133, 70563, 'no_lang_code', 'name', 'Vietnam Posts and Telecommunications Group (Vietnam)'),
(85134, 70563, 'vi', 'name', 'Tįŗ­p đoĆ n Bʰu chĆ­nh Viį»…n thĆ“ng Việt Nam'),
(85135, 70564, 'en', 'name', 'Carnegie Moscow Center'),
(85136, 70564, 'ru', 'name', 'Московский Центр ŠšŠ°Ń€Š½ŠµŠ³Šø'),
(85137, 70565, 'no_lang_code', 'name', 'American Engineering & Manufacturing (United States)'),
(85138, 70566, 'no_lang_code', 'name', 'Glider Factory in Jeżów (Poland)'),
(85139, 70566, 'pl', 'name', 'Zakład Szybowcowy Jeźów Henryk Mynarski'),
(85140, 70567, 'no_lang_code', 'name', 'Harland Medical Systems (United States)'),
(85141, 70568, 'en', 'name', 'Southern Mutual Help Association'),
(85142, 70569, 'en', 'name', 'Champs Public Health Collaborative'),
(85143, 70570, 'no_lang_code', 'name', 'Chem-Master International (United States)'),
(85144, 70571, 'en', 'name', 'The State Historical and Cultural Reserve "Trypillya Culture"'),
(85145, 70571, 'uk', 'name', 'Державний історико-ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½ŠøŠ¹ заповіГник Ā«Š¢Ń€ŠøŠæŃ–Š»ŃŒŃŃŒŠŗŠ° ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š°Ā»'),
(85146, 70572, 'en', 'name', 'Palmetto Research Center'),
(85147, 70573, 'no_lang_code', 'name', 'Eureka Aerospace (United States)'),
(85148, 70574, 'en', 'name', 'Wuhan Puai Hospital'),
(85149, 70574, 'zh', 'name', 'ę­¦ę±‰ę™®ēˆ±åŒ»é™¢'),
(85150, 70575, 'it', 'name', 'Archivio di Stato di Roma'),
(85151, 70576, 'en', 'name', 'Road Clinical Hospital on Novosibirsk-Main JSC Russian Railways'),
(85152, 70576, 'ru', 'name', 'ŠŠ£Š— "Š”Š¾Ń€Š¾Š¶Š½Š°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° на ст ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗ-Главный ŠžŠŠž "Š Š–Š”"'),
(85153, 70577, 'no_lang_code', 'name', 'Crestone (United States)'),
(85154, 70578, 'no_lang_code', 'name', 'Praktika Publishing House'),
(85155, 70578, 'ru', 'name', 'ŠŸŃ€Š°ŠŗŃ‚ŠøŠŗŠ°'),
(85156, 70579, 'en', 'name', 'Belgrade Open School'),
(85157, 70579, 'sr', 'name', 'Beogradska Otvorena Skola'),
(85158, 70580, 'en', 'name', 'Centre for Policy Dialogue'),
(85159, 70581, 'no_lang_code', 'name', 'Ajelis (France)'),
(85160, 70582, 'no_lang_code', 'name', 'PatentVantage (United States)'),
(85161, 70583, 'de', 'name', 'cts CaritasKlinikum Saarbrücken'),
(85162, 70584, 'no_lang_code', 'name', 'Fabrico Technology (United States)'),
(85163, 70585, 'no_lang_code', 'name', 'Zakłady Energetyki Cieplnej (Poland)'),
(85164, 70586, 'en', 'name', 'Greenland National Museum & Archives'),
(85165, 70586, 'kl', 'name', 'Nunatta Katersugaasivia Allagaateqarfialu'),
(85166, 70587, 'en', 'name', 'Automated Regional Justice Information System'),
(85167, 70588, 'en', 'name', 'Catalyst'),
(85168, 70589, 'no_lang_code', 'name', 'Vigo (Poland)'),
(85169, 70590, 'no_lang_code', 'name', 'Nordic BioAnalyis (Sweden)'),
(85170, 70591, 'en', 'name', 'Smith-Magenis Syndrome Foundation'),
(85171, 70592, 'bs', 'name', 'OKC AbraÅ”ević'),
(85172, 70592, 'en', 'name', 'The Youth Cultural Centre AbraÅ”ević'),
(85173, 70593, 'no_lang_code', 'name', 'ISTEQ (Netherlands)'),
(85174, 70594, 'no_lang_code', 'name', 'Grainflow Dynamics (United States)'),
(85175, 70595, 'no_lang_code', 'name', 'OikosLab Future Solutions (Sweden)'),
(85176, 70596, 'en', 'name', 'Quantum Gravity Research'),
(85177, 70597, 'no_lang_code', 'name', 'Inscope International (United States)'),
(85178, 70598, 'en', 'name', 'Trent Rivers Trust'),
(85179, 70599, 'en', 'name', 'Shamakhy Astrophysical Observatory named after Nasraddin Tusi'),
(85180, 70600, 'en', 'name', 'The Crucible'),
(85181, 70601, 'pt', 'name', 'Agência Patrícia Galvão'),
(85182, 70602, 'en', 'name', 'Working Class Movement Library'),
(85183, 70603, 'sv', 'name', 'Tesch-Ɩvermo stiftelsen'),
(85184, 70604, 'en', 'name', 'Crichton Carbon Centre'),
(85185, 70605, 'no_lang_code', 'name', 'Gismo Therapeutics (United States)'),
(85186, 70606, 'en', 'name', 'Lower East Side Printshop'),
(85187, 70607, 'no_lang_code', 'name', 'Suntory (United Kingdom)'),
(85188, 70608, 'en', 'name', 'Bulacan Agricultural State College'),
(85189, 70609, 'no_lang_code', 'name', 'Zeto (Poland)'),
(85190, 70610, 'en', 'name', 'Shannon Applied Biotechnology Centre'),
(85191, 70611, 'en', 'name', 'The National Museum of Science and Technology'),
(85192, 70611, 'sv', 'name', 'Tekniska Museet'),
(85193, 70612, 'en', 'name', 'Thai-German Institute'),
(85194, 70612, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ą¹„ąø—ąø¢-เยอรดัน'),
(85195, 70613, 'en', 'name', 'Apeejay Stya University'),
(85196, 70614, 'no_lang_code', 'name', 'iDEAL Technology (United States)'),
(85197, 70615, 'no_lang_code', 'name', 'Cemet (Poland)'),
(85198, 70616, 'no_lang_code', 'name', 'Blaze Bioscience (United States)'),
(85199, 70617, 'fr', 'name', 'Laboratoire de Recherche Scientifique'),
(85200, 70618, 'en', 'name', 'Futuro'),
(85201, 70619, 'en', 'name', 'Plymouth City Council'),
(85202, 70620, 'en', 'name', 'Centre for Contemporary Art and the Natural World'),
(85203, 70621, 'no_lang_code', 'name', 'CSL Materials (United States)'),
(85204, 70622, 'no_lang_code', 'name', 'Murphy Oil Corporation (United States)'),
(85205, 70623, 'en', 'name', 'Concurrent Technologies Corporation'),
(85206, 70624, 'en', 'name', 'Yantai Automobile Engineering Professional College'),
(85207, 70624, 'zh', 'name', 'ēƒŸå°ę±½č½¦å·„ēØ‹čŒäøšå­¦é™¢'),
(85208, 70625, 'en', 'name', 'Dartington Service Design Lab'),
(85209, 70626, 'no_lang_code', 'name', 'Icosystem (United States)'),
(85210, 70627, 'no_lang_code', 'name', 'CoorsTek (United States)'),
(85211, 70628, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ¾ ŃŠ“Ń€ŃƒŠ¶ŠµŠ½ŠøŠµ за Š½Š°ŃŃŠŃ€Ń‡Š°Š²Š°Š½Šµ на гражГанската инициатива'),
(85212, 70628, 'en', 'name', 'Bulgarian Association for the Promotion of Citizens Initiative'),
(85213, 70629, 'no_lang_code', 'name', 'Blackfynn (United States)'),
(85214, 70630, 'no_lang_code', 'name', 'Innovatech (United States)'),
(85215, 70631, 'sv', 'name', 'VƄrdcentralen SilentzvƤgen'),
(85216, 70632, 'no_lang_code', 'name', 'Magicom (United States)'),
(85217, 70633, 'en', 'name', 'Shenyang Sujiatun District Central Hospital'),
(85218, 70633, 'zh', 'name', 'ę²ˆé˜³åø‚č‹å®¶å±ÆåŒŗäø­åæƒåŒ»é™¢'),
(85219, 70634, 'en', 'name', 'King Abdulaziz Foundation For Research And Archives'),
(85220, 70635, 'no_lang_code', 'name', 'Centre of Technology Transfer Emag (Poland)'),
(85221, 70636, 'en', 'name', 'Chung-Hwa Institute of Buddhist Studies'),
(85222, 70636, 'zh', 'name', 'äø­čÆä½›å­øē ”ē©¶ę‰€'),
(85223, 70637, 'no_lang_code', 'name', 'Electro-Medical Measurement Systems (United Kingdom)'),
(85224, 70638, 'en', 'name', 'Centre for Eastern European Policy Studies'),
(85225, 70638, 'lv', 'name', 'Austrumeiropas Politikas Pētījumu Centrs'),
(85226, 70639, 'en', 'name', 'Min-On Concert Association'),
(85227, 70639, 'ja', 'name', 'ę°‘äø»éŸ³ę„½å”ä¼š'),
(85228, 70640, 'no_lang_code', 'name', 'OMV Petrom (Romania)'),
(85229, 70641, 'en', 'name', 'Steel Charitable Trust'),
(85230, 70642, 'en', 'name', 'Science Media Centre'),
(85231, 70643, 'en', 'name', 'The Heart House'),
(85232, 70644, 'en', 'name', 'Isis-WICCE'),
(85233, 70645, 'en', 'name', 'Scientific Center of Zoology and Hydroecology'),
(85234, 70645, 'hy', 'name', 'ŌæÕ„Õ¶Õ¤Õ”Õ¶Õ”Õ¢Õ”Õ¶ÕøÖ‚Õ©ÕµÕ”Õ¶ և Õ°Õ«Õ¤Ö€ÕøÕ§ÕÆÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ« Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ ÕÆÕ„Õ¶ÕæÖ€ÕøÕ¶'),
(85235, 70646, 'no_lang_code', 'name', 'MP Technologies (United States)'),
(85236, 70647, 'no_lang_code', 'name', '21st Century Systems (United States)'),
(85237, 70648, 'en', 'name', 'Society for Longitudinal and Lifecourse Studies'),
(85238, 70649, 'es', 'name', 'Instituto Nacional de Derechos Humanos'),
(85239, 70650, 'az', 'name', 'Azərbaycan Respublikası Dƶvlət Neft Şirkəti'),
(85240, 70650, 'no_lang_code', 'name', 'State Oil Company of Azerbaijan Republic (Azerbaijan)'),
(85241, 70651, 'no_lang_code', 'name', 'Tawata Productions (New Zealand)'),
(85242, 70652, 'en', 'name', 'British Dam Society'),
(85243, 70653, 'no_lang_code', 'name', 'Stem Cells Spin (Poland)'),
(85244, 70654, 'no_lang_code', 'name', 'Voestalpine (Brazil)'),
(85245, 70655, 'no_lang_code', 'name', 'Envirochem (United States)'),
(85246, 70656, 'en', 'name', 'Ocean Tracking Network'),
(85247, 70657, 'es', 'name', 'Red Argentina de Instituciones de MicrocrƩdito'),
(85248, 70658, 'en', 'name', 'Wonder Foundation'),
(85249, 70659, 'pt', 'name', 'Conectas, Conectas Direitos Humanos'),
(85250, 70660, 'en', 'name', 'Ross School'),
(85251, 70661, 'no_lang_code', 'name', 'Cynvec (United States)'),
(85252, 70662, 'de', 'name', 'Bürgerhospital Frankfurt am Main'),
(85253, 70663, 'en', 'name', 'Ukrainian Association of Specialists on Overcoming the Consequences of Traumatic Events'),
(85254, 70664, 'de', 'name', 'Georesearch Forschungsgesellschaft'),
(85255, 70665, 'en', 'name', 'Great North Museum Hancock'),
(85256, 70666, 'en', 'name', 'National Association of British and Irish Millers'),
(85257, 70667, 'en', 'name', 'Christchurch City Council'),
(85258, 70668, 'no_lang_code', 'name', 'InnaVasc Medical (United States)'),
(85259, 70669, 'en', 'name', 'Centre for Youth & Criminal Justice'),
(85260, 70670, 'en', 'name', 'MIT University'),
(85261, 70670, 'mk', 'name', 'МИТ Универзитет'),
(85262, 70671, 'no_lang_code', 'name', 'Flashback Technologies (United States)'),
(85263, 70672, 'no_lang_code', 'name', 'Barnstorm Research (United States)'),
(85264, 70673, 'es', 'name', 'Colegio Ɓrula'),
(85265, 70674, 'no_lang_code', 'name', 'Bio-Works (Sweden)'),
(85266, 70675, 'en', 'name', 'The Faith & Politics Institute'),
(85267, 70676, 'en', 'name', 'African Network for Internationalization of Education'),
(85268, 70677, 'en', 'name', 'European Centre for Ecotoxicology and Toxicology of Chemicals'),
(85269, 70678, 'en', 'name', 'Dubbo Hospital'),
(85270, 70679, 'en', 'name', 'Energy and Utility Skills'),
(85271, 70680, 'no_lang_code', 'name', 'Iteratec (Germany)'),
(85272, 70681, 'en', 'name', 'Northwest Professional Consortium'),
(85273, 70682, 'no_lang_code', 'name', 'Alba-Technic (United States)'),
(85274, 70683, 'no_lang_code', 'name', 'SAIC Motor (United Kingdom)'),
(85275, 70684, 'no_lang_code', 'name', 'Episensors (United States)'),
(85276, 70685, 'en', 'name', 'Kalakshetra Foundation'),
(85277, 70686, 'no_lang_code', 'name', 'B M Birla Science Centre'),
(85278, 70687, 'no_lang_code', 'name', 'Neosense Technologies (Sweden)'),
(85279, 70688, 'en', 'name', 'Finnish National Gallery'),
(85280, 70688, 'fi', 'name', 'Suomen Kansallisgalleria'),
(85281, 70688, 'sv', 'name', 'Finlands Nationalgalleri'),
(85282, 70689, 'en', 'name', 'Miroslav Krleža Institute of Lexicography'),
(85283, 70689, 'hr', 'name', 'Leksikografski zavod Miroslav Krleža'),
(85284, 70690, 'no_lang_code', 'name', 'Assuage Pharmaceuticals (United States)'),
(85285, 70691, 'en', 'name', 'Mongolia International University'),
(85286, 70692, 'no_lang_code', 'name', 'Integrated Optical Circuit Consultants (United States)'),
(85287, 70693, 'en', 'name', 'Byron Museum of History'),
(85288, 70694, 'en', 'name', 'Alamire Foundation'),
(85289, 70695, 'en', 'name', 'The Mauritius Chamber of Commerce and Industry'),
(85290, 70696, 'en', 'name', 'Institute of Educational Sciences'),
(85291, 70696, 'ro', 'name', 'Institutul de Ştiinţe ale Educaţiei'),
(85292, 70697, 'en', 'name', 'La Jolla Alcohol Research'),
(85293, 70698, 'no_lang_code', 'name', 'DEI Holdings (United States)'),
(85294, 70699, 'no_lang_code', 'name', 'GoofyFoot Labs (United States)'),
(85295, 70700, 'en', 'name', 'Global Press'),
(85296, 70701, 'en', 'name', 'National Council for Palliative Care'),
(85297, 70702, 'en', 'name', 'Six Nations Indian Museum'),
(85298, 70703, 'en', 'name', 'Asian American Legal Defense and Education Fund'),
(85299, 70704, 'no_lang_code', 'name', 'Kontron (France)'),
(85300, 70705, 'en', 'name', 'International Network for Economic, Social and Cultural Rights'),
(85301, 70705, 'es', 'name', 'Red Internacional para los Derechos Económicos, Sociales y Culturales'),
(85302, 70705, 'fr', 'name', 'RƩseau International pour les Droits Economiques, Sociaux et Culturels'),
(85303, 70706, 'en', 'name', 'Institute for Cultural Diplomacy'),
(85304, 70707, 'no_lang_code', 'name', 'AVT Simulation (United States)'),
(85305, 70708, 'en', 'name', 'The Hepatitis C Trust'),
(85306, 70709, 'en', 'name', 'Institute on Taxation and Economic Policy'),
(85307, 70710, 'en', 'name', 'Pre School Learning Alliance'),
(85308, 70711, 'no_lang_code', 'name', 'Kiyatec (United States)'),
(85309, 70712, 'no_lang_code', 'name', 'Holoeye (United States)'),
(85310, 70713, 'no_lang_code', 'name', 'RAB Microfluidics (United Kingdom)'),
(85311, 70714, 'en', 'name', 'Institute for Sound & Music'),
(85312, 70715, 'en', 'name', 'Bumblebee Conservation Trust'),
(85313, 70716, 'no_lang_code', 'name', 'Keywords Studios (United States)'),
(85314, 70717, 'fr', 'name', 'Institut FranƧais de Rabat'),
(85315, 70718, 'en', 'name', 'Design and Artists Copyright Society'),
(85316, 70719, 'no_lang_code', 'name', 'Digital Proteomics (United States)'),
(85317, 70720, 'en', 'name', 'Higher Learning Commission'),
(85318, 70721, 'en', 'name', 'National Museum in Warsaw'),
(85319, 70721, 'pl', 'name', 'Muzeum Narodowe w Warszawie'),
(85320, 70722, 'no_lang_code', 'name', 'Enformia (United States)'),
(85321, 70723, 'no_lang_code', 'name', 'Mapei (United States)'),
(85322, 70724, 'en', 'name', 'Co-operative College'),
(85323, 70725, 'en', 'name', 'British Institute of Non-Destructive Testing'),
(85324, 70726, 'hu', 'name', 'Eötvös József GimnÔzium'),
(85325, 70727, 'en', 'name', 'Foundation Scotland'),
(85326, 70728, 'en', 'name', 'Institute for Archaeological and Monumental Heritage'),
(85327, 70728, 'it', 'name', 'Istituto per i Beni Archeologici e Monumentali'),
(85328, 70729, 'no_lang_code', 'name', 'Companhia SiderĆŗrgica Nacional (Brazil)'),
(85329, 70730, 'en', 'name', 'National Employment Law Project'),
(85330, 70731, 'no_lang_code', 'name', 'Dynalene (United States)'),
(85331, 70732, 'en', 'name', 'Lambeth Council'),
(85332, 70733, 'en', 'name', 'The African Safari Foundation'),
(85333, 70734, 'no_lang_code', 'name', 'EnSolve Biosystems (United States)'),
(85334, 70735, 'en', 'name', 'Outcomes Based Healthcare'),
(85335, 70736, 'no_lang_code', 'name', 'Bite Technologies (United States)'),
(85336, 70737, 'no_lang_code', 'name', 'Research Genetics and Agrochemistry (Slovenia)'),
(85337, 70737, 'sl', 'name', 'Raziskovalna Genetika in Agrokemija'),
(85338, 70738, 'no_lang_code', 'name', 'Lawrie Technology (United States)'),
(85339, 70739, 'no_lang_code', 'name', 'The Washington Times (United States)'),
(85340, 70740, 'es', 'name', 'Planta Piloto de IngenierĆ­a QuĆ­mica'),
(85341, 70741, 'en', 'name', 'Veterinarians Without Borders'),
(85342, 70741, 'fr', 'name', 'Vétérinaires Sans Frontières'),
(85343, 70742, 'en', 'name', 'Fountainbridge Library'),
(85344, 70743, 'en', 'name', 'Social Science Baha'),
(85345, 70744, 'en', 'name', 'Institute of Public Health Osijek-Baranja County'),
(85346, 70744, 'hr', 'name', 'Zavod za Javno Zdravstvo Osječko-Baranjske Županije'),
(85347, 70745, 'en', 'name', 'Shetland Arts'),
(85348, 70746, 'no_lang_code', 'name', 'BioInvenu (United States)'),
(85349, 70747, 'es', 'name', 'Centro Cultural de España en El Salvador, Cooperación Española Cultura'),
(85350, 70748, 'en', 'name', 'Australian Centre for Plant Functional Genomics'),
(85351, 70749, 'en', 'name', 'Community Woodlands Association'),
(85352, 70750, 'en', 'name', 'Center for Strategic Research'),
(85353, 70750, 'ru', 'name', 'Центр стратегических разработок'),
(85354, 70751, 'no_lang_code', 'name', 'Gedea Biotech (Sweden)'),
(85355, 70752, 'no_lang_code', 'name', 'BTB Pharma (Sweden)'),
(85356, 70753, 'no_lang_code', 'name', 'Idaho Scientific (United States)'),
(85357, 70754, 'en', 'name', 'Bridgeman Images'),
(85358, 70755, 'en', 'name', 'Royal Opera House'),
(85359, 70756, 'en', 'name', 'Lorna Young Foundation'),
(85360, 70757, 'en', 'name', 'Pensions and Lifetime Savings Association'),
(85361, 70758, 'no_lang_code', 'name', 'Parabola (United Kingdom)'),
(85362, 70759, 'en', 'name', 'Sabah Environmental Trust'),
(85363, 70760, 'no_lang_code', 'name', 'Ekomarine Paint (Sweden)'),
(85364, 70761, 'no_lang_code', 'name', 'Credit Data Research (United Kingdom)'),
(85365, 70762, 'en', 'name', 'Indus Resource Centre'),
(85366, 70763, 'no_lang_code', 'name', 'Yangtze Optical Electronic (China)'),
(85367, 70764, 'en', 'name', 'National Council of Juvenile and Family Court Judges'),
(85368, 70765, 'en', 'name', 'International Federation of Television Archives'),
(85369, 70766, 'en', 'name', 'University of Finance - Marketing'),
(85370, 70766, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c TĆ i ChĆ­nh - Marketing'),
(85371, 70767, 'en', 'name', 'National University System'),
(85372, 70768, 'en', 'name', 'AURA-J'),
(85373, 70769, 'en', 'name', 'The Bill Douglas Cinema Museum'),
(85374, 70770, 'no_lang_code', 'name', 'MetaMorph (United States)'),
(85375, 70771, 'no_lang_code', 'name', 'AnaBios (United States)'),
(85376, 70772, 'fr', 'name', 'UniversitƩ des Sciences de la SantƩ'),
(85377, 70773, 'no_lang_code', 'name', 'CB Healthcare (India)'),
(85378, 70774, 'en', 'name', 'Environmental Simulation Center'),
(85379, 70775, 'no_lang_code', 'name', 'Integra (United States)'),
(85380, 70776, 'no_lang_code', 'name', 'Cenna Biosciences (United States)'),
(85381, 70777, 'en', 'name', 'Cleveland FES Center'),
(85382, 70778, 'en', 'name', 'Institute of Environmental Geology and Geoengineering'),
(85383, 70778, 'it', 'name', 'Istituto di Geologia Ambientale e Geoingegneria'),
(85384, 70779, 'no_lang_code', 'name', 'Flightware (United States)'),
(85385, 70780, 'en', 'name', 'Bevan Foundation'),
(85386, 70781, 'no_lang_code', 'name', 'Hefei CAS Ion Medical and Technical Devices (China)'),
(85387, 70781, 'zh', 'name', 'åˆč‚„äø­ē§‘ē¦»å­åŒ»å­¦ęŠ€ęœÆč£…å¤‡'),
(85388, 70782, 'no_lang_code', 'name', 'EpiBone (United States)'),
(85389, 70783, 'en', 'name', 'Partnership for African Social & Governance Research'),
(85390, 70784, 'en', 'name', 'Uganda National NGO Forum'),
(85391, 70785, 'en', 'name', 'Wai Yin Society'),
(85392, 70786, 'es', 'name', 'Hospital Naval Almirante Adriazola de Talcahuano'),
(85393, 70787, 'en', 'name', 'National Archive and Library of Bolivia'),
(85394, 70787, 'es', 'name', 'Archivo y Biblioteca Nacionales de Bolivia'),
(85395, 70788, 'en', 'name', 'North Devon Biosphere Foundation'),
(85396, 70789, 'en', 'name', 'Country Land and Business Association'),
(85397, 70790, 'en', 'name', 'State Institute for Art Studies'),
(85398, 70790, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²Š¾Š·Š½Š°Š½ŠøŃ'),
(85399, 70791, 'no_lang_code', 'name', 'Roper Technologies (United Kingdom)'),
(85400, 70792, 'da', 'name', 'Museum SĆønderjylland'),
(85401, 70793, 'de', 'name', 'Deutsche Initiative für Netzwerkinformation'),
(85402, 70793, 'en', 'name', 'German Initiative for Network Information'),
(85403, 70794, 'no_lang_code', 'name', 'GTD Unlimited (United States)'),
(85404, 70795, 'en', 'name', 'The Kenya Alliance of Resident Associations'),
(85405, 70796, 'en', 'name', 'British Gear Association'),
(85406, 70797, 'en', 'name', 'U.S. Embassy in Burma'),
(85407, 70798, 'en', 'name', 'Nexus Community Partners'),
(85408, 70799, 'no_lang_code', 'name', 'SP Industries (United States)'),
(85409, 70800, 'en', 'name', 'Beijing Academy of Smart Economy'),
(85410, 70800, 'zh', 'name', 'åŒ—äŗ¬ę™ŗčƒ½ē»ęµŽē ”ē©¶é™¢'),
(85411, 70801, 'en', 'name', 'Partners for the Common Good'),
(85412, 70802, 'no_lang_code', 'name', 'Axenis (France)'),
(85413, 70803, 'en', 'name', 'Larkin University'),
(85414, 70804, 'en', 'name', 'UK Green Building Council'),
(85415, 70805, 'en', 'name', 'Pacific Arts Association'),
(85416, 70806, 'en', 'name', 'QuSoft'),
(85417, 70807, 'en', 'name', 'Global Action Project'),
(85418, 70808, 'no_lang_code', 'name', 'Jariet Technologies (United States)'),
(85419, 70809, 'en', 'name', 'National Museum of History'),
(85420, 70809, 'zh', 'name', 'åœ‹ē«‹ę­·å²åšē‰©é¤Ø'),
(85421, 70810, 'en', 'name', 'Elders of Newscastle Upon Tyne'),
(85422, 70811, 'en', 'name', 'School of Social Work Roshni Nilaya'),
(85423, 70812, 'en', 'name', 'Institute of Family Therapy'),
(85424, 70813, 'en', 'name', 'The Linenhall Arts Centre'),
(85425, 70814, 'no_lang_code', 'name', 'Novetta (United States)'),
(85426, 70815, 'no_lang_code', 'name', 'Corrected Electron Optical Systems (Germany)'),
(85427, 70816, 'en', 'name', 'Action Canada for Sexual Health and Rights'),
(85428, 70817, 'da', 'name', 'Landsorganisation af Kvindekrisecentre'),
(85429, 70818, 'en', 'name', 'Association of Industrial Laser Users'),
(85430, 70819, 'no_lang_code', 'name', 'Ariamis (France)'),
(85431, 70820, 'en', 'name', 'Snack, Nut and Crisp Manufacturers Association'),
(85432, 70821, 'en', 'name', 'Atmospheric Observatory of Austral Patagonia'),
(85433, 70821, 'es', 'name', 'Observatorio AtmosfƩrico de la Patagonia Austral'),
(85434, 70822, 'en', 'name', 'UK Centre for Moisture in Buildings'),
(85435, 70823, 'no_lang_code', 'name', 'Extreme Diagnostics (United States)'),
(85436, 70824, 'en', 'name', 'The Hakluyt Society'),
(85437, 70825, 'en', 'name', 'Tim Parry Johnathan Ball Peace Foundation'),
(85438, 70826, 'no_lang_code', 'name', 'Pure Biologics (Poland)'),
(85439, 70827, 'no_lang_code', 'name', 'inTACT (United States)'),
(85440, 70828, 'en', 'name', 'Urban Big Data Centre'),
(85441, 70829, 'no_lang_code', 'name', 'Equipalcool (Brazil)'),
(85442, 70830, 'no_lang_code', 'name', 'Katam (Sweden)'),
(85443, 70831, 'en', 'name', 'Topsham Museum'),
(85444, 70832, 'en', 'name', 'Carers Trust'),
(85445, 70833, 'en', 'name', 'National Centre for Writing'),
(85446, 70834, 'en', 'name', 'The Honourable Society of Lincoln''s Inn'),
(85447, 70835, 'no_lang_code', 'name', 'Genapsys (United States)'),
(85448, 70836, 'no_lang_code', 'name', 'OTJ Architects (United States)'),
(85449, 70837, 'en', 'name', 'Scottish Refugee Council'),
(85450, 70838, 'es', 'name', 'Columbus Theatre, Teatro Colón'),
(85451, 70839, 'en', 'name', 'The Institute for Bird Populations'),
(85452, 70840, 'en', 'name', 'Winnipeg Institute for Theoretical Physics'),
(85453, 70841, 'en', 'name', 'American Institute of Indian Studies'),
(85454, 70841, 'hi', 'name', 'ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤Ø ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ इंऔियन ą¤øą„ą¤Ÿą¤”ą„€ą¤œ'),
(85455, 70842, 'no_lang_code', 'name', 'Seen Semiconductors (Poland)'),
(85456, 70843, 'no_lang_code', 'name', 'Linguastat (United States)'),
(85457, 70844, 'no_lang_code', 'name', 'K Lab (United States)'),
(85458, 70845, 'de', 'name', 'Deutsche Vereinigung für Sportwissenschaft'),
(85459, 70845, 'en', 'name', 'German Society of Sport Science'),
(85460, 70846, 'no_lang_code', 'name', 'Telemetry Associates (United Kingdom)'),
(85461, 70847, 'en', 'name', 'Centre for Historical Research and Documentation on War and Contemporary Society'),
(85462, 70848, 'no_lang_code', 'name', 'BryCoat (United States)'),
(85463, 70849, 'en', 'name', 'Large Synoptic Survey Telescope Corporation'),
(85464, 70850, 'en', 'name', 'International Brecht Society'),
(85465, 70851, 'en', 'name', 'Safe & Justice Michigan'),
(85466, 70852, 'en', 'name', 'European Academy for Standardisation'),
(85467, 70853, 'no_lang_code', 'name', 'dbS Productions (United States)'),
(85468, 70854, 'en', 'name', 'Australian Council of Social Service'),
(85469, 70855, 'no_lang_code', 'name', 'IonField Systems (United States)'),
(85470, 70856, 'no_lang_code', 'name', 'Behavioral Pharma (United States)'),
(85471, 70857, 'en', 'name', 'Bend the Arc: A Jewish Partnership for Justice'),
(85472, 70858, 'en', 'name', 'Nanjing Museum'),
(85473, 70858, 'zh', 'name', 'å—äŗ¬åšē‰©é™¢'),
(85474, 70859, 'en', 'name', 'Centre for Window and Cladding Technology'),
(85475, 70860, 'en', 'name', 'National Association for Latino Community Asset Builders'),
(85476, 70861, 'en', 'name', 'Center For Policy Research'),
(85477, 70862, 'no_lang_code', 'name', 'Thusanani Foundation'),
(85478, 70863, 'en', 'name', '10:10 Climate Action'),
(85479, 70864, 'no_lang_code', 'name', '4IT I (Sweden)'),
(85480, 70865, 'no_lang_code', 'name', 'Brandon Medical (United Kingdom)'),
(85481, 70866, 'it', 'name', 'Istituto per il Lessico Intellettuale Europeo e la Storia delle Idee'),
(85482, 70867, 'en', 'name', 'Houston-Galveston Area Council'),
(85483, 70868, 'en', 'name', 'Alternative Law Forum'),
(85484, 70869, 'en', 'name', 'National Videogame Museum'),
(85485, 70870, 'no_lang_code', 'name', 'Durbin Group (United States)'),
(85486, 70871, 'fr', 'name', 'UniversitƩ des Lettres et des Sciences Humaines de Bamako'),
(85487, 70872, 'en', 'name', 'Knowle West Healthy Living Centre'),
(85488, 70873, 'no_lang_code', 'name', 'Razumkov Centre'),
(85489, 70873, 'uk', 'name', 'Центр Разумкова'),
(85490, 70874, 'en', 'name', 'Turks and Caicos National Museum'),
(85491, 70875, 'en', 'name', 'Sexuality Information and Education Council of the United States'),
(85492, 70876, 'en', 'name', 'Scottish Social Services Council'),
(85493, 70877, 'fr', 'name', 'Banque Nationale de GĆØnes'),
(85494, 70878, 'en', 'name', 'CarbonCo-op'),
(85495, 70879, 'no_lang_code', 'name', 'NordvƤstra SkƄnes Vatten och Avlopp (Sweden)'),
(85496, 70880, 'en', 'name', 'Midlands Arts Centre'),
(85497, 70881, 'no_lang_code', 'name', 'FocusStart (United States)'),
(85498, 70882, 'en', 'name', 'LGBT Youth Scotland'),
(85499, 70883, 'en', 'name', 'British Industrial Design Association'),
(85500, 70884, 'en', 'name', 'Panama Canal Authority'),
(85501, 70884, 'es', 'name', 'Autoridad del Canal de PanamĆ”'),
(85502, 70885, 'en', 'name', 'The Spectrum Centre'),
(85503, 70886, 'en', 'name', 'Cedarwood Trust'),
(85504, 70887, 'en', 'name', 'Universal Rights Group'),
(85505, 70888, 'en', 'name', 'Riverside Community Health Project'),
(85506, 70889, 'no_lang_code', 'name', 'Walker Associates Architects (United Kingdom)'),
(85507, 70890, 'no_lang_code', 'name', 'Taps (Poland)'),
(85508, 70891, 'it', 'name', 'Det Danske Institut i Rom - Accademia di Danimarca'),
(85509, 70892, 'no_lang_code', 'name', 'Bosmal (Poland)'),
(85510, 70893, 'no_lang_code', 'name', 'Silikony (Poland)'),
(85511, 70894, 'no_lang_code', 'name', 'Greenely (Sweden)'),
(85512, 70895, 'ar', 'name', 'معهد ال؄علام Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ'),
(85513, 70895, 'en', 'name', 'Jordan Media Institute'),
(85514, 70896, 'sq', 'name', 'Kolegji Dardania'),
(85515, 70897, 'he', 'name', 'معهد العرفة'),
(85516, 70897, 'no_lang_code', 'name', 'Arava Institute'),
(85517, 70898, 'no_lang_code', 'name', 'WestCon Medical (United States)'),
(85518, 70899, 'az', 'name', 'Botanika İnstitutu'),
(85519, 70899, 'en', 'name', 'Institute of Botany'),
(85520, 70900, 'no_lang_code', 'name', 'Academic Rights Press (United Kingdom)'),
(85521, 70901, 'en', 'name', 'China-Britain Business Council'),
(85522, 70902, 'en', 'name', 'English Language Teachers Association of India'),
(85523, 70903, 'en', 'name', 'Auditory Valley'),
(85524, 70904, 'nl', 'name', 'De Tijd'),
(85525, 70905, 'no_lang_code', 'name', 'Elladam Consulting (Hungary)'),
(85526, 70906, 'no_lang_code', 'name', 'CRO Laboratories (United States)'),
(85527, 70907, 'no_lang_code', 'name', 'Longenecker and Associates (United States)'),
(85528, 70908, 'en', 'name', 'Cell and Gene Therapy Catapult'),
(85529, 70909, 'en', 'name', 'Lincolnshire County Council'),
(85530, 70910, 'es', 'name', 'Programa Venezolano de Educación Acción en Derechos Humanos'),
(85531, 70911, 'de', 'name', 'Nephrologisches Zentrum Villingen-Schwenningen'),
(85532, 70912, 'no_lang_code', 'name', 'Meissa Vaccines (United States)'),
(85533, 70913, 'en', 'name', 'Florida Policy Institute'),
(85534, 70914, 'en', 'name', 'Luing Cattle Society'),
(85535, 70915, 'en', 'name', 'Nottinghamshire Deaf Society'),
(85536, 70916, 'ar', 'name', 'ā€ŽŁƒŁ„ŁŠŲ© Ų³Ų®Ł†ŁŠŁ† Ł„ŲŖŲ£Ł‡ŁŠŁ„ Ų§Ł„Ł…Ų¹Ł„Ł…ŁŠŁ†'),
(85537, 70916, 'en', 'name', 'Sakhnin College'),
(85538, 70917, 'en', 'name', 'Swedish Sports Confederation'),
(85539, 70917, 'sv', 'name', 'Riksidrottsfƶrbundet'),
(85540, 70918, 'no_lang_code', 'name', 'Centre for Factories of the Future (United Kingdom)'),
(85541, 70919, 'en', 'name', 'Type Media Center'),
(85542, 70920, 'no_lang_code', 'name', 'Metria Innovation (United States)'),
(85543, 70921, 'en', 'name', 'Noise Abatement Society'),
(85544, 70922, 'no_lang_code', 'name', 'Polish Bearings Factory (Poland)'),
(85545, 70922, 'pl', 'name', 'Fabryka Łożysk Tocznych Kraśnik'),
(85546, 70923, 'pt', 'name', 'Instituto de Estudos de SaĆŗde Suplementar'),
(85547, 70924, 'fr', 'name', 'BiopolymĆØres Interactions Assemblages'),
(85548, 70925, 'en', 'name', 'Henriette-Bathily Women''s Museum'),
(85549, 70926, 'no_lang_code', 'name', 'Military Aviation Works No. 4 (Poland)'),
(85550, 70926, 'pl', 'name', 'Wojskowe Zakłady Lotnicze Nr 4'),
(85551, 70927, 'es', 'name', 'Asociación Nacional de Afrocolombianos Desplazados'),
(85552, 70928, 'no_lang_code', 'name', 'Isandla Institute'),
(85553, 70929, 'da', 'name', 'Dansk Standard'),
(85554, 70930, 'en', 'name', 'Institute of Chemistry of Molecular Recognition'),
(85555, 70930, 'it', 'name', 'Istituto di Chimica del Riconoscimento Molecolare'),
(85556, 70931, 'en', 'name', 'International Research and Development Actions'),
(85557, 70932, 'en', 'name', 'Academic Health Science Network North East and North Cumbria'),
(85558, 70933, 'no_lang_code', 'name', 'Swedish Adrenaline (Sweden)'),
(85559, 70934, 'no_lang_code', 'name', 'Arima Genomics (United States)'),
(85560, 70935, 'en', 'name', 'Texas Housers'),
(85561, 70936, 'no_lang_code', 'name', 'Liuman Technologies (United States)'),
(85562, 70937, 'en', 'name', 'Ministry of Defence of Armenia'),
(85563, 70937, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« ÕŗÕ”Õ·ÕæÕŗÕ”Õ¶ÕøÖ‚Õ©ÕµÕ”Õ¶ Õ¶Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(85564, 70938, 'no_lang_code', 'name', 'Stockbridge Technology Centre (United Kingdom)'),
(85565, 70939, 'no_lang_code', 'name', 'International Therapeutics (United States)'),
(85566, 70940, 'en', 'name', 'University of Trans-Disciplinary Health Sciences and Technology'),
(85567, 70941, 'en', 'name', 'The National Allotment Society');
INSERT INTO `ror_settings` VALUES
(85568, 70942, 'no_lang_code', 'name', 'DCN (United States)'),
(85569, 70943, 'en', 'name', 'Society of Energy Engineers and Managers'),
(85570, 70944, 'no_lang_code', 'name', 'Creative Light Source (United States)'),
(85571, 70945, 'no_lang_code', 'name', 'Altius Space Machines (United States)'),
(85572, 70946, 'en', 'name', 'Myanmar Environment Institute'),
(85573, 70947, 'en', 'name', 'Grace Mutual'),
(85574, 70948, 'en', 'name', 'Shakespeare Behind Bars'),
(85575, 70949, 'en', 'name', 'Swedish Society for Nature Conservation'),
(85576, 70949, 'sv', 'name', 'Naturskyddsfƶreningen'),
(85577, 70950, 'pl', 'name', 'Wojewódzki Szpital Specjalistyczny nr 4 w Bytomiu'),
(85578, 70951, 'en', 'name', 'Fettes College'),
(85579, 70952, 'sk', 'name', 'HvezdÔreň a PlanetÔrium M.R. ŠtefÔnika'),
(85580, 70953, 'no_lang_code', 'name', 'Cytovale (United States)'),
(85581, 70954, 'en', 'name', 'Institute for Transportation and Development Policy'),
(85582, 70955, 'no_lang_code', 'name', 'Q2 Solutions (United States)'),
(85583, 70956, 'en', 'name', 'Feminist Institute for Democracy'),
(85584, 70957, 'en', 'name', 'All-Russian Institute of Agrarian Problems and Informatics A.A.Nikonova'),
(85585, 70957, 'ru', 'name', 'Всероссийский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрных проблем Šø информатики им. А.А.ŠŠøŠŗŠ¾Š½Š¾Š²Š°'),
(85586, 70958, 'no_lang_code', 'name', 'Aero Thermo Technology (United States)'),
(85587, 70959, 'en', 'name', 'Institute of Mental Health'),
(85588, 70960, 'en', 'name', 'South Belfast Partnership Board'),
(85589, 70961, 'ar', 'name', 'المعهد Ų§Ł„Ł…Ł„ŁƒŁŠ للدراسات Ų§Ł„ŲÆŁŠŁ†ŁŠŲ©'),
(85590, 70961, 'en', 'name', 'Royal Institute for Inter-Faith Studies'),
(85591, 70962, 'en', 'name', 'Western Forensic Law Enforcement Training Center'),
(85592, 70963, 'cs', 'name', 'Cesta Domu'),
(85593, 70964, 'en', 'name', 'PIR Center'),
(85594, 70964, 'ru', 'name', 'ПИР-Центр'),
(85595, 70965, 'es', 'name', 'Liceo Jubilar Juan Pablo II'),
(85596, 70966, 'en', 'name', 'Language and Learning Foundation'),
(85597, 70966, 'hi', 'name', 'भाषा और ą¤øą„€ą¤–ą¤Øą¤¾ ą¤«ą¤¾ą¤‰ą¤‚ą¤”ą„‡ą¤¶ą¤Ø'),
(85598, 70967, 'en', 'name', 'Kirkgate Centre'),
(85599, 70968, 'en', 'name', 'Scottish Association of the Teachers of History'),
(85600, 70969, 'en', 'name', 'Ouseburn Trust'),
(85601, 70970, 'no_lang_code', 'name', 'BlackBox Biometrics (United States)'),
(85602, 70971, 'en', 'name', 'Centre for Justice Innovation'),
(85603, 70972, 'en', 'name', 'Institute for Globally Distributed Open Research and Education'),
(85604, 70973, 'en', 'name', 'Ministry of Justice'),
(85605, 70973, 'vi', 'name', 'Bį»™ Tʰ phĆ”p'),
(85606, 70974, 'en', 'name', 'Development Network of Indigenous Voluntary Associations'),
(85607, 70975, 'no_lang_code', 'name', 'Lithium Innovations (United States)'),
(85608, 70976, 'en', 'name', 'Dundee Heritage Trust'),
(85609, 70977, 'en', 'name', 'Crescent City Community Land Trust'),
(85610, 70978, 'no_lang_code', 'name', 'Immuno Technologies (United States)'),
(85611, 70979, 'en', 'name', 'Meditest'),
(85612, 70979, 'pl', 'name', 'Niepubliczny Zakład Opieki Zdrowotnej Meditest. Diagnostyka Medyczna'),
(85613, 70980, 'no_lang_code', 'name', 'MLabs (Poland)'),
(85614, 70981, 'no_lang_code', 'name', 'Advanced Fiber Sensors (United States)'),
(85615, 70982, 'en', 'name', 'New Orleans Workers’ Center for Racial Justice'),
(85616, 70983, 'no_lang_code', 'name', 'Integran (United States)'),
(85617, 70984, 'en', 'name', 'Dundee Blind and Partially Sighted Society'),
(85618, 70985, 'en', 'name', 'The Reader'),
(85619, 70986, 'en', 'name', 'Mentor'),
(85620, 70987, 'no_lang_code', 'name', 'MetalgrƔfica Rojek (Brazil)'),
(85621, 70988, 'en', 'name', 'Migrant Center For Human Rights'),
(85622, 70989, 'en', 'name', 'Westgate Hall'),
(85623, 70990, 'no_lang_code', 'name', 'Investa (Australia)'),
(85624, 70991, 'en', 'name', 'Centre for Cities'),
(85625, 70992, 'no_lang_code', 'name', 'ClearMotion (United States)'),
(85626, 70993, 'en', 'name', 'Russian Museum of Ethnography'),
(85627, 70993, 'ru', 'name', 'Российский ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŃ‡ŠµŃŠŗŠøŠ¹ музей'),
(85628, 70994, 'en', 'name', 'British Association for Immediate Care Scotland'),
(85629, 70995, 'en', 'name', 'The Gate'),
(85630, 70996, 'no_lang_code', 'name', 'INTER Materials (United States)'),
(85631, 70997, 'en', 'name', 'Resolution Fundation'),
(85632, 70998, 'el', 'name', 'Εν Αθήναις Αρχαιολογική Εταιρεία'),
(85633, 70998, 'en', 'name', 'The Archaeological Society at Athens'),
(85634, 70999, 'no_lang_code', 'name', 'Dillen Associates (United States)'),
(85635, 71000, 'en', 'name', 'WORLDwrite'),
(85636, 71001, 'en', 'name', 'Arts & Science Council'),
(85637, 71002, 'sv', 'name', 'Ɩstergƶtland Museum'),
(85638, 71003, 'en', 'name', 'Sonoma Ecology Center'),
(85639, 71004, 'no_lang_code', 'name', 'Sol Voltaics (Sweden)'),
(85640, 71005, 'en', 'name', 'In Flanders Fields Museum'),
(85641, 71006, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© ال؄ذاعة ŁˆŲ§Ł„ŲŖŁ„ŁŲ²ŁŠŁˆŁ† Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ'),
(85642, 71006, 'en', 'name', 'Jordan Radio and Television Corporation'),
(85643, 71007, 'no_lang_code', 'name', 'Compass Manufacturing Services (United States)'),
(85644, 71008, 'en', 'name', 'Quip'),
(85645, 71009, 'no_lang_code', 'name', 'Maas Biolab (United States)'),
(85646, 71010, 'no_lang_code', 'name', 'Inovex (United States)'),
(85647, 71011, 'no_lang_code', 'name', 'Stoney Forensic (United States)'),
(85648, 71012, 'no_lang_code', 'name', 'Hexicon (Sweden)'),
(85649, 71013, 'no_lang_code', 'name', 'Inclusiv (United States)'),
(85650, 71014, 'no_lang_code', 'name', 'I-Tech (Sweden)'),
(85651, 71015, 'no_lang_code', 'name', 'Prime Discoveries (United States)'),
(85652, 71016, 'no_lang_code', 'name', 'Eclipse Bioinnovations (United States)'),
(85653, 71017, 'en', 'name', 'Cheshire Archives and Local Studies'),
(85654, 71018, 'en', 'name', 'Scruggs & Associates'),
(85655, 71019, 'en', 'name', 'International Network of Civil Liberties Organizations'),
(85656, 71020, 'no_lang_code', 'name', 'Framtidens Fƶretag (Sweden)'),
(85657, 71021, 'en', 'name', 'CO2 Technology Centre Mongstad'),
(85658, 71021, 'no', 'name', 'Teknologisenteret pƄ Mongstad'),
(85659, 71022, 'en', 'name', 'Renaissance Life Therapies'),
(85660, 71023, 'en', 'name', 'Glasgow and West of Scotland Forum of Housing Associations'),
(85661, 71024, 'en', 'name', 'Medieval Settlement Research Group'),
(85662, 71025, 'en', 'name', 'Jerusalem Film and Television School'),
(85663, 71026, 'sv', 'name', 'VA Syd'),
(85664, 71027, 'no_lang_code', 'name', 'Seabased (Sweden)'),
(85665, 71028, 'da', 'name', 'EUC Nordvestsjaelland, ErhvervsUddannelses Center Nordvestsjaelland'),
(85666, 71029, 'no_lang_code', 'name', 'Case Engineering (United States)'),
(85667, 71030, 'no_lang_code', 'name', 'Bhungroo (India)'),
(85668, 71031, 'en', 'name', 'Doc Society'),
(85669, 71032, 'en', 'name', 'Espoo Music Institute'),
(85670, 71032, 'fi', 'name', 'Espoon Musiikkiopisto'),
(85671, 71033, 'en', 'name', 'Parenting Across Scotland'),
(85672, 71034, 'en', 'name', 'Chartered Insurance Institute'),
(85673, 71035, 'en', 'name', 'Shantou Broadcasting and Television University'),
(85674, 71035, 'zh', 'name', '汕夓广播电视大学'),
(85675, 71036, 'en', 'name', 'European Society for Paediatric Oncology'),
(85676, 71037, 'no_lang_code', 'name', 'iFIT Prosthetics (United States)'),
(85677, 71038, 'en', 'name', 'Down Syndrome Society of Kenya'),
(85678, 71039, 'bn', 'name', 'বাংলাদেশ ą¦‡ą¦Øą§ą¦øą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦¬ą§ą¦Æą¦¾ą¦‚ą¦• ą¦®ą§‡ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ'),
(85679, 71039, 'en', 'name', 'Bangladesh Institute of Bank Management'),
(85680, 71040, 'no_lang_code', 'name', 'A J Tuck (United States)'),
(85681, 71041, 'no_lang_code', 'name', 'Zhongzhu Healthcare (China)'),
(85682, 71042, 'en', 'name', 'Online Dating Association'),
(85683, 71043, 'no_lang_code', 'name', 'Ivan Honchar Museum'),
(85684, 71043, 'uk', 'name', 'Музей Івана Гончара'),
(85685, 71044, 'en', 'name', 'Mission Asset Fund'),
(85686, 71045, 'no_lang_code', 'name', 'Blacktrace (United States)'),
(85687, 71046, 'en', 'name', 'Oretha Castle Haley Boulevard Merchants & Business Association'),
(85688, 71047, 'no_lang_code', 'name', 'Fimbrion Therapeutics (United States)'),
(85689, 71048, 'no_lang_code', 'name', 'Lanarkshire Enterprise Services Limited (United Kingdom)'),
(85690, 71049, 'no_lang_code', 'name', 'Angstrom Designs (United States)'),
(85691, 71050, 'en', 'name', 'Irish World Heritage Centre'),
(85692, 71051, 'en', 'name', 'York, North Yorkshire and East Riding Enterprise Partnership'),
(85693, 71052, 'da', 'name', 'Rybners'),
(85694, 71053, 'en', 'name', 'CdLS Foundation UK & Ireland'),
(85695, 71054, 'no_lang_code', 'name', 'C-Green Technology (Sweden)'),
(85696, 71055, 'en', 'name', 'French Academy in Rome'),
(85697, 71055, 'it', 'name', 'AcadƩmie de France Ơ Rome'),
(85698, 71056, 'en', 'name', 'Caribbean Electric Utility Services Corporation'),
(85699, 71057, 'en', 'name', 'Northeastern Illinois Regional Crime Laboratory'),
(85700, 71058, 'no_lang_code', 'name', 'MosquitoMate (United States)'),
(85701, 71059, 'no_lang_code', 'name', 'Eon Corporation (United States)'),
(85702, 71060, 'no_lang_code', 'name', 'CytoInformatics (United States)'),
(85703, 71061, 'en', 'name', 'Islington Museum'),
(85704, 71062, 'no_lang_code', 'name', 'Ajjer (United States)'),
(85705, 71063, 'no_lang_code', 'name', 'Folio Photonics (United States)'),
(85706, 71064, 'en', 'name', 'Centre for Movement Disorders'),
(85707, 71065, 'en', 'name', 'Healing Fields Foundation'),
(85708, 71065, 'te', 'name', 'ą°¹ą±€ą°²ą°æą°‚ą°—ą± ą°«ą±€ą°²ą±ą°”ą±ą°øą± ą°«ą±Œą°‚ą°”ą±‡ą°·ą°Øą±'),
(85709, 71066, 'no_lang_code', 'name', 'ArrayFire (United States)'),
(85710, 71067, 'en', 'name', 'Future Health Biobank'),
(85711, 71068, 'en', 'name', 'Textile Centre of Excellence'),
(85712, 71069, 'no_lang_code', 'name', 'Berkeley Air Monitoring Group (United States)'),
(85713, 71070, 'en', 'name', 'Legatum Institute'),
(85714, 71071, 'no_lang_code', 'name', 'Gougeon Brothers (United States)'),
(85715, 71072, 'en', 'name', 'Colmar Inra Research Centre'),
(85716, 71072, 'fr', 'name', 'Le Centre Inra de Colmar'),
(85717, 71073, 'no_lang_code', 'name', '4SC (Germany)'),
(85718, 71074, 'en', 'name', 'Article 19'),
(85719, 71074, 'pt', 'name', 'Artigo 19'),
(85720, 71075, 'en', 'name', 'American Center Yangon'),
(85721, 71076, 'en', 'name', 'Institute for Linguistic Evidence'),
(85722, 71077, 'ja', 'name', 'é•·å·žē”£ę„­'),
(85723, 71077, 'no_lang_code', 'name', 'Choshu Industry (Japan)'),
(85724, 71078, 'no_lang_code', 'name', 'LightLine Technologies (United States)'),
(85725, 71079, 'no_lang_code', 'name', 'Bryne (Sweden)'),
(85726, 71080, 'en', 'name', 'Sustainable Food Trust'),
(85727, 71081, 'no_lang_code', 'name', 'LumenRadio (Sweden)'),
(85728, 71082, 'cs', 'name', 'Archiv Hlavnƭho Města Prahy'),
(85729, 71082, 'en', 'name', 'Prague City Archives'),
(85730, 71083, 'en', 'name', 'British Safety Council'),
(85731, 71084, 'en', 'name', 'National HIV/AIDS Secretariat'),
(85732, 71085, 'no_lang_code', 'name', 'Fahe'),
(85733, 71086, 'en', 'name', 'SNV Netherlands Development Organisation'),
(85734, 71087, 'no_lang_code', 'name', 'Anchor Technology (United States)'),
(85735, 71088, 'no_lang_code', 'name', 'Global Science & Technology (United States)'),
(85736, 71089, 'no_lang_code', 'name', 'InnoVentum (Sweden)'),
(85737, 71090, 'no_lang_code', 'name', 'Mira Dx (United States)'),
(85738, 71091, 'en', 'name', 'Verbal Arts Centre'),
(85739, 71092, 'en', 'name', 'Argentine Senate'),
(85740, 71092, 'es', 'name', 'Honorable Senado de la Nación Argentina'),
(85741, 71093, 'en', 'name', 'Potato Processors Association'),
(85742, 71094, 'no_lang_code', 'name', 'Mikel (United States)'),
(85743, 71095, 'no_lang_code', 'name', 'LodeSpin Labs (United States)'),
(85744, 71096, 'pt', 'name', 'Osso'),
(85745, 71097, 'en', 'name', 'Plymouth City Museum and Art Gallery'),
(85746, 71098, 'no_lang_code', 'name', 'Innovital Systems (United States)'),
(85747, 71099, 'en', 'name', 'Refugee Action'),
(85748, 71100, 'no_lang_code', 'name', 'Sealed Air (Brazil)'),
(85749, 71101, 'en', 'name', 'Institute for In Vitro Sciences'),
(85750, 71102, 'en', 'name', 'Medway NHS Foundation Trust'),
(85751, 71103, 'en', 'name', 'China Development Brief'),
(85752, 71103, 'zh', 'name', 'äø­å›½å‘å±•ē®€ęŠ„'),
(85753, 71104, 'en', 'name', 'Polish Platform for Homeland Security'),
(85754, 71104, 'pl', 'name', 'Polska Platforma Bezpieczeństwa Wewnętrznego'),
(85755, 71105, 'pl', 'name', 'Narodowy Instytut Muzealnictwa i Ochrony Zbiorów'),
(85756, 71106, 'en', 'name', 'Swarnabhoomi Academy of Music'),
(85757, 71107, 'de', 'name', 'GFO Kliniken Bonn, St. Marien-Hospital Bonn'),
(85758, 71108, 'en', 'name', 'Society for Education Welfare and Action Rural'),
(85759, 71109, 'no_lang_code', 'name', 'Glactone Pharma (Sweden)'),
(85760, 71110, 'no_lang_code', 'name', 'Sokrat'),
(85761, 71111, 'en', 'name', 'East Sweden Energy Agency'),
(85762, 71111, 'sv', 'name', 'Energikontoret Ɩstergƶtland'),
(85763, 71112, 'en', 'name', 'National Centre for Contemporary Arts'),
(85764, 71112, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ центр современного ŠøŃŠŗŃƒŃŃŃ‚ва'),
(85765, 71113, 'no_lang_code', 'name', 'BST Systems (United States)'),
(85766, 71114, 'no_lang_code', 'name', 'CloneOpt (Sweden)'),
(85767, 71115, 'no_lang_code', 'name', 'Sakata (Brazil)'),
(85768, 71116, 'en', 'name', 'Suffolk Sheep Society'),
(85769, 71117, 'de', 'name', 'Institut Kurz'),
(85770, 71118, 'no_lang_code', 'name', 'Platod (France)'),
(85771, 71119, 'pt', 'name', 'Centro de Estudos de SeguranƧa e Cidadania'),
(85772, 71120, 'no_lang_code', 'name', 'DexMat (United States)'),
(85773, 71121, 'en', 'name', 'National Indigenous Languages Institute'),
(85774, 71121, 'es', 'name', 'Instituto Nacional de Lenguas IndĆ­genas'),
(85775, 71122, 'pl', 'name', 'Wojewódzki Szpital Specjalistyczny nr 5 im. św. Barbary w Sosnowcu'),
(85776, 71123, 'sv', 'name', 'Swerim'),
(85777, 71124, 'no_lang_code', 'name', 'Akuru Pharma (Sweden)'),
(85778, 71125, 'en', 'name', 'Helsinki Art Museum'),
(85779, 71125, 'fi', 'name', 'Helsingin Taidemuseo'),
(85780, 71125, 'sv', 'name', 'Helsingfors Konstmuseum'),
(85781, 71126, 'en', 'name', 'Angling Trust'),
(85782, 71127, 'no_lang_code', 'name', 'Astrileux (United States)'),
(85783, 71128, 'pl', 'name', 'Szkoła Aspirantów Państwowej Straży Pożarnej'),
(85784, 71129, 'no_lang_code', 'name', 'Fluorescence Innovations (United States)'),
(85785, 71130, 'en', 'name', 'Institute of Genetics and Hospital for Genetic Diseases'),
(85786, 71130, 'te', 'name', 'ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°œą±†ą°Øą°æą°Ÿą°æą°•ą±ą°øą± ą°…ą°‚ą°”ą± ą°¹ą°¾ą°øą±ą°Ŗą°æą°Ÿą°²ą± ą°«ą°°ą± ą°œą±†ą°Øą±†ą°Ÿą°æą°•ą± ą°”ą°æą°øą±€ą°œą±†ą°øą±'),
(85787, 71131, 'no_lang_code', 'name', 'Watty (Sweden)'),
(85788, 71132, 'no_lang_code', 'name', 'Brains4Drones (United States)'),
(85789, 71133, 'en', 'name', 'Library of the Russian Academy of Sciences'),
(85790, 71133, 'ru', 'name', 'Библиотека Российской акаГемии наук'),
(85791, 71134, 'en', 'name', 'Foundation Jewish Contemporary Documentation Center'),
(85792, 71134, 'fr', 'name', 'La Fondazione Centro di Documentazione Ebraica Contemporanea'),
(85793, 71134, 'it', 'name', 'Centro di Documentazione Ebraica Contemporanea'),
(85794, 71135, 'es', 'name', 'Fundación ProYungas'),
(85795, 71136, 'no_lang_code', 'name', 'Artemis (United States)'),
(85796, 71137, 'en', 'name', 'American Correctional Association'),
(85797, 71138, 'no_lang_code', 'name', 'SGL Carbon (Poland)'),
(85798, 71139, 'no_lang_code', 'name', 'Ideas Engineering & Technology (United States)'),
(85799, 71140, 'en', 'name', 'Breakthrough Science Society'),
(85800, 71141, 'de', 'name', 'Deutsche Akademie für Kinder- und Jugendmedizin'),
(85801, 71142, 'no_lang_code', 'name', 'Navdanya'),
(85802, 71143, 'en', 'name', 'Learning and Work Institute'),
(85803, 71144, 'no_lang_code', 'name', 'PHI'),
(85804, 71145, 'en', 'name', 'International Solid Waste Association'),
(85805, 71146, 'no_lang_code', 'name', 'BoroPharm (United States)'),
(85806, 71147, 'en', 'name', 'Philanthropy West Virginia'),
(85807, 71148, 'en', 'name', 'International Broadcasting Trust'),
(85808, 71149, 'fr', 'name', 'Centre Régional Songhaï'),
(85809, 71149, 'no_lang_code', 'name', 'Songhai'),
(85810, 71150, 'en', 'name', 'London Arts in Health Forum'),
(85811, 71151, 'no_lang_code', 'name', 'Braxton (United States)'),
(85812, 71152, 'en', 'name', 'Victorian Bar'),
(85813, 71153, 'en', 'name', 'Manchester Health and Wellbeing Service'),
(85814, 71154, 'pt', 'name', 'Uma Gota no Oceano'),
(85815, 71155, 'en', 'name', 'St Ethelburga’s Centre for Reconciliation and Peace'),
(85816, 71156, 'en', 'name', 'Media Matters for America'),
(85817, 71157, 'no_lang_code', 'name', 'Kerberos International (United States)'),
(85818, 71158, 'no_lang_code', 'name', 'BorgWarner (United Kingdom)'),
(85819, 71159, 'en', 'name', 'Ceiba Foundation for Tropical Conservation'),
(85820, 71160, 'en', 'name', 'LGBT Foundation'),
(85821, 71161, 'no_lang_code', 'name', 'E-Line Media (United States)'),
(85822, 71162, 'no_lang_code', 'name', 'IBI Group (United Kingdom)'),
(85823, 71163, 'no_lang_code', 'name', 'Cambridge Electronics (United States)'),
(85824, 71164, 'en', 'name', 'Jonathan A Law & Associates'),
(85825, 71165, 'de', 'name', 'Spiekermann and Wegener'),
(85826, 71166, 'no_lang_code', 'name', 'NanoRidge (United States)'),
(85827, 71167, 'en', 'name', 'Wuhan College'),
(85828, 71168, 'no_lang_code', 'name', 'Cell Podium (United States)'),
(85829, 71169, 'no_lang_code', 'name', 'Dextra Laboratories (United Kingdom)'),
(85830, 71170, 'de', 'name', 'Krankenhaus Sachsenhausen'),
(85831, 71171, 'no_lang_code', 'name', 'Alliance for Multispecialty Research (United States)'),
(85832, 71172, 'en', 'name', 'Ministry of Economy of the Republic of Uzbekistan'),
(85833, 71172, 'uz', 'name', 'O''zbekiston Respublikasi Iqtisodiyot Vazirligi'),
(85834, 71173, 'en', 'name', 'Institute of History of Ukraine'),
(85835, 71173, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ історії України ŠŠŠ України'),
(85836, 71174, 'en', 'name', 'Partnership for Working Families'),
(85837, 71175, 'no_lang_code', 'name', 'Mote Research (United Kingdom)'),
(85838, 71176, 'en', 'name', 'North Somerset Council'),
(85839, 71177, 'no_lang_code', 'name', 'Odlewnie Polskie (Poland)'),
(85840, 71178, 'en', 'name', 'Peggy Dodd Centre'),
(85841, 71179, 'en', 'name', 'National Institute of Disaster Management'),
(85842, 71179, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ आपदा ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(85843, 71180, 'en', 'name', 'Asian Americans/Pacific Islanders in Philanthropy'),
(85844, 71181, 'ar', 'name', 'Ł…Ų³Ų±Ų­ ŁˆŲ³ŁŠŁ†Ł…Ų§ŲŖŁƒ القصبة'),
(85845, 71181, 'no_lang_code', 'name', 'Al-Kasaba Theatre & Cinematheque'),
(85846, 71182, 'en', 'name', 'National Academy of Arts, Culture and Heritage'),
(85847, 71182, 'ms', 'name', 'Akademi Seni Budaya Dan Warisan Kebangsaan'),
(85848, 71183, 'no_lang_code', 'name', 'Norstel (Sweden)'),
(85849, 71184, 'no_lang_code', 'name', 'Bioendev (Sweden)'),
(85850, 71185, 'pt', 'name', 'Centro de Estudos e Pesquisa em SaĆŗde Coletiva'),
(85851, 71186, 'en', 'name', 'Indonesia Philanthropy Association'),
(85852, 71186, 'id', 'name', 'Filantropi Indonesia'),
(85853, 71187, 'en', 'name', 'Institute of Social Sciences'),
(85854, 71187, 'sr', 'name', 'Institut druŔtvenih nauka'),
(85855, 71188, 'no_lang_code', 'name', 'Diamir (United States)'),
(85856, 71189, 'en', 'name', 'Museum of the Order of St John'),
(85857, 71190, 'en', 'name', 'Interfaith Worker Justice'),
(85858, 71191, 'no_lang_code', 'name', 'Bova (Taiwan)'),
(85859, 71192, 'no_lang_code', 'name', 'Vikas Samvad'),
(85860, 71193, 'en', 'name', 'Japan Institute for Labour Policy and Training'),
(85861, 71193, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒę”æē­–ē ”ē©¶ćƒ»ē ”äæ®ę©Ÿę§‹'),
(85862, 71194, 'no_lang_code', 'name', 'FirstPass Engineering (United States)'),
(85863, 71195, 'no_lang_code', 'name', 'Tony Coll and Associates (United Kingdom)'),
(85864, 71196, 'ar', 'name', 'وزارة Ų§Ł„Ų®Ų§Ų±Ų¬ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(85865, 71196, 'en', 'name', 'Ministry of Foreign Affairs'),
(85866, 71197, 'no_lang_code', 'name', 'Peptide Protein Research (United Kingdom)'),
(85867, 71198, 'en', 'name', 'International Bluegrass Music Association'),
(85868, 71199, 'no_lang_code', 'name', 'Electric Propulsion Laboratory (United States)'),
(85869, 71200, 'en', 'name', 'Brighton Museum'),
(85870, 71201, 'en', 'name', 'The Ministry of Education and Science of the Kyrgyz Republic'),
(85871, 71201, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š· Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Š½ билим берүү жана илим министрлиги'),
(85872, 71201, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾Š¹ Республики'),
(85873, 71202, 'no_lang_code', 'name', 'Sanskriti Samvardhan Mandal'),
(85874, 71203, 'de', 'name', 'Klinikum Lüdenscheid'),
(85875, 71204, 'en', 'name', 'Green Camel Bell'),
(85876, 71204, 'zh', 'name', 'ē»æé©¼é“ƒ'),
(85877, 71205, 'no_lang_code', 'name', 'Land Sea Air Autonomy (United States)'),
(85878, 71206, 'en', 'name', 'Community Connect Foundation'),
(85879, 71207, 'no_lang_code', 'name', 'Avantherm (Sweden)'),
(85880, 71208, 'en', 'name', 'DC Arts & Humanities Education Collaborative'),
(85881, 71209, 'en', 'name', 'The Aquatic Coleoptera Conservation Trust'),
(85882, 71210, 'no_lang_code', 'name', 'Astrox (United States)'),
(85883, 71211, 'ko', 'name', 'ģœ ģ•„ģ“ķ‹°'),
(85884, 71211, 'no_lang_code', 'name', 'UIT Solutions (South Korea)'),
(85885, 71212, 'en', 'name', 'St. Scholastica''s College'),
(85886, 71213, 'en', 'name', 'Kingswood Oxford'),
(85887, 71214, 'en', 'name', 'The Beles Group'),
(85888, 71215, 'en', 'name', 'Teylers Museum'),
(85889, 71216, 'en', 'name', 'Canadian Foundation for the Americas'),
(85890, 71217, 'en', 'name', 'Culture Coventry'),
(85891, 71218, 'no_lang_code', 'name', 'Biocentre Technology (United Kingdom)'),
(85892, 71219, 'en', 'name', 'I Choose Life'),
(85893, 71220, 'no_lang_code', 'name', 'Dynamic Systems Integration (United States)'),
(85894, 71221, 'no_lang_code', 'name', 'Inertial Labs (United States)'),
(85895, 71222, 'no_lang_code', 'name', 'C&A Foundation (Switzerland)'),
(85896, 71223, 'en', 'name', 'Indian Institute of Information Technology, Pune'),
(85897, 71223, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø,ą¤Ŗą„ą¤£ą„‡'),
(85898, 71224, 'no_lang_code', 'name', 'Kepley BioSystems (United States)'),
(85899, 71225, 'no_lang_code', 'name', 'Sprint Bioscience (Sweden)'),
(85900, 71226, 'en', 'name', 'Institute for Cultural Inquiry'),
(85901, 71227, 'en', 'name', 'West Lothian Council'),
(85902, 71228, 'en', 'name', 'Eyebeam'),
(85903, 71229, 'en', 'name', 'Sustainable Livelihoods Foundation'),
(85904, 71230, 'no_lang_code', 'name', 'Annexon Biosciences (United States)'),
(85905, 71231, 'en', 'name', 'US Embassy in Turkmenistan'),
(85906, 71232, 'en', 'name', 'Glasgow Women''s Library'),
(85907, 71233, 'en', 'name', 'Scientific Studies Association'),
(85908, 71233, 'tr', 'name', 'İlmi Etüdler Derneğ'),
(85909, 71234, 'en', 'name', 'Institute for Intergovernmental Research'),
(85910, 71235, 'no_lang_code', 'name', 'Pharmaron (United Kingdom)'),
(85911, 71236, 'en', 'name', 'Black Country Living Museum'),
(85912, 71237, 'en', 'name', 'Evangelical Church Winning All'),
(85913, 71238, 'en', 'name', 'Balor Arts Centre'),
(85914, 71239, 'en', 'name', 'Adaptive Design Association'),
(85915, 71240, 'en', 'name', 'College of St George'),
(85916, 71241, 'en', 'name', 'Horniman Museum and Gardens'),
(85917, 71242, 'en', 'name', 'Anna Lindh Foundation'),
(85918, 71243, 'en', 'name', 'Kenya School of Government'),
(85919, 71244, 'no_lang_code', 'name', 'Tretyakov Gallery'),
(85920, 71244, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¢Ń€ŠµŃ‚ŃŒŃŠŗŠ¾Š²ŃŠŗŠ°Ń Š“Š°Š»ŠµŃ€ŠµŃ'),
(85921, 71245, 'en', 'name', 'Saffron Walden Museum'),
(85922, 71246, 'en', 'name', 'Trees and Design Action Group'),
(85923, 71247, 'en', 'name', 'The National Autistic Society'),
(85924, 71248, 'en', 'name', 'Texas Association Against Sexual Assault'),
(85925, 71249, 'no_lang_code', 'name', 'Inteligistics (United States)'),
(85926, 71250, 'no_lang_code', 'name', 'MAST Technologies (United States)'),
(85927, 71251, 'fr', 'name', 'Alliance Citoyenne'),
(85928, 71252, 'hy', 'name', 'Õ†ÕøÖ€Õ”Õ¾Õ”Õ¶Ö„Ā» Õ°Õ«Õ“Õ¶Õ”Õ¤Ö€Õ”Õ“'),
(85929, 71252, 'no_lang_code', 'name', 'Noravank Foundation'),
(85930, 71253, 'no_lang_code', 'name', 'Publicis Groupe (France)'),
(85931, 71254, 'en', 'name', 'Xuzhou Cancer Hospital'),
(85932, 71255, 'no_lang_code', 'name', 'Brain (Germany)'),
(85933, 71256, 'no_lang_code', 'name', 'Fulcrum Composites (United States)'),
(85934, 71257, 'no_lang_code', 'name', 'No Picnic (Sweden)'),
(85935, 71258, 'en', 'name', 'The Elizabeth Foundation for the Arts'),
(85936, 71259, 'en', 'name', 'Coventry and Warwickshire Partnership NHS Trust'),
(85937, 71260, 'no_lang_code', 'name', 'Medical Diagnostic Laboratories (United States)'),
(85938, 71261, 'es', 'name', 'Cultura, Instituto de Cultura, Turismo y Arte de Mazatlan'),
(85939, 71262, 'cs', 'name', 'OtevřenĆ” Společnost'),
(85940, 71262, 'en', 'name', 'Open Society'),
(85941, 71263, 'en', 'name', 'Interamerican Society of Cardiology'),
(85942, 71263, 'es', 'name', 'Sociedad Interamericana de CardiologĆ­a'),
(85943, 71264, 'de', 'name', 'Bayerische Landesanstalt für Landwirtschaft'),
(85944, 71264, 'en', 'name', 'Bavarian State Research Center for Agriculture'),
(85945, 71265, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ†ćƒ¬ćƒ“ęœę—„'),
(85946, 71265, 'no_lang_code', 'name', 'TV Asahi (Japan)'),
(85947, 71266, 'en', 'name', 'Shetland Museum and Archives'),
(85948, 71267, 'en', 'name', 'Rodrigues Economic Chamber and Industry'),
(85949, 71268, 'en', 'name', 'Detroit Economic Growth Corporation'),
(85950, 71269, 'pt', 'name', 'Observatório do Meio Rural'),
(85951, 71270, 'no_lang_code', 'name', 'Amydis (United States)'),
(85952, 71271, 'fr', 'name', 'Gouvernance, Risque, Environnement, DƩveloppement'),
(85953, 71272, 'en', 'name', 'Taiwan Public Television Service Foundation'),
(85954, 71272, 'zh', 'name', 'č²”åœ˜ę³•äŗŗå…¬å…±é›»č¦–ę–‡åŒ–äŗ‹ę„­åŸŗé‡‘ęœƒ'),
(85955, 71273, 'en', 'name', 'mySociety'),
(85956, 71274, 'no_lang_code', 'name', 'Applied Graphene Materials (United Kingdom)'),
(85957, 71275, 'no_lang_code', 'name', 'Lanka Hydraulic Institute (Sri Lanka)'),
(85958, 71276, 'no_lang_code', 'name', 'Connecticut Analytical Corporation (United States)'),
(85959, 71277, 'en', 'name', 'Association of Baltimore Area Grantmakers'),
(85960, 71278, 'en', 'name', 'Seoyeong University'),
(85961, 71279, 'fr', 'name', 'MusƩe d''Orsay'),
(85962, 71280, 'es', 'name', 'Instituto de Lengua y Cultura Aymara'),
(85963, 71281, 'en', 'name', 'New York Theatre Workshop'),
(85964, 71282, 'no_lang_code', 'name', 'BSC Associates (United States)'),
(85965, 71283, 'en', 'name', 'One-Handed Musical Instrument'),
(85966, 71284, 'en', 'name', 'Equal Rights Trust'),
(85967, 71285, 'en', 'name', 'Te Wānanga o Raukawa'),
(85968, 71286, 'no_lang_code', 'name', 'Boehringer Ingelheim (Brazil)'),
(85969, 71287, 'no_lang_code', 'name', 'McClatchy (United States)'),
(85970, 71288, 'en', 'name', 'Choithram College of Nursing'),
(85971, 71288, 'hi', 'name', 'ą¤šą„‹ą¤‡ą¤„ą¤°ą¤¾ą¤® ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ़ ą¤Øą¤°ą„ą¤øą¤æą¤‚ą¤—'),
(85972, 71289, 'en', 'name', 'World Endometriosis Research Foundation'),
(85973, 71290, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„Ų£Ł…Ł†ŁŠŲ©'),
(85974, 71290, 'en', 'name', 'King Fahd Security College'),
(85975, 71291, 'no_lang_code', 'name', 'Advent Systems (United States)'),
(85976, 71292, 'en', 'name', 'Lloyd''s'),
(85977, 71293, 'en', 'name', 'London Social Science'),
(85978, 71294, 'no_lang_code', 'name', 'CyberOptics (United States)'),
(85979, 71295, 'en', 'name', 'Foundation for Revitalisation of Local Health Traditions'),
(85980, 71296, 'en', 'name', 'Time-Line computer Archive'),
(85981, 71297, 'no_lang_code', 'name', 'Kereval (France)'),
(85982, 71298, 'no_lang_code', 'name', 'Biomarker Profiles (United States)'),
(85983, 71299, 'no_lang_code', 'name', 'EcoTech (Sweden)'),
(85984, 71300, 'en', 'name', 'The IARS International Institute'),
(85985, 71301, 'no_lang_code', 'name', 'Liquidmetal Technologies (United States)'),
(85986, 71302, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŲ§Ł†ŁŠ Ų§Ł„Ų«Ł‚Ų§ŁŁŠ - ŲÆŲ§Ų± الآثار Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(85987, 71302, 'no_lang_code', 'name', 'Dar al Athar al Islamiyyah'),
(85988, 71303, 'en', 'name', 'Manor Gardens Welfare Trust'),
(85989, 71304, 'en', 'name', 'Say Yes to Education'),
(85990, 71305, 'en', 'name', 'Autism at Kingwood'),
(85991, 71306, 'en', 'name', 'Shakespeare Birthplace Trust'),
(85992, 71307, 'en', 'name', 'Centre for Polar Observation and Modelling'),
(85993, 71308, 'no_lang_code', 'name', 'DoseOptics (United States)'),
(85994, 71309, 'no_lang_code', 'name', 'Cheyney (United Kingdom)'),
(85995, 71310, 'no_lang_code', 'name', 'Lankard Materials Laboratory (United States)'),
(85996, 71311, 'no_lang_code', 'name', 'Qamcom Research and Technology (Sweden)'),
(85997, 71312, 'no_lang_code', 'name', 'AccessData (United States)'),
(85998, 71313, 'en', 'name', 'The Heather Trust'),
(85999, 71314, 'no_lang_code', 'name', 'Micron Corporation (United States)'),
(86000, 71315, 'en', 'name', 'Federal State Budget Scientific Institution Institute of Applied Mathematics and Automation'),
(86001, 71315, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ Š˜ŠšŠ›ŠŠ”ŠŠžŠ™ ŠœŠŠ¢Š•ŠœŠŠ¢Š˜ŠšŠ˜ И ŠŠ’Š¢ŠžŠœŠŠ¢Š˜Š—ŠŠ¦Š˜Š˜'),
(86002, 71316, 'no_lang_code', 'name', 'Digital Native Academy (United Kingdom)'),
(86003, 71317, 'en', 'name', 'Association of London Environmental Health Managers'),
(86004, 71318, 'no_lang_code', 'name', 'Millennium Dynamics (United States)'),
(86005, 71319, 'en', 'name', 'Open Health Systems Laboratory'),
(86006, 71320, 'pl', 'name', 'Polskie Stowarzyszenie Terapii Behawioralnej'),
(86007, 71321, 'en', 'name', 'West Yorkshire Joint Services'),
(86008, 71322, 'en', 'name', 'Stockholm University College of Music Education'),
(86009, 71322, 'sv', 'name', 'Stockholms Musikpedagogiska Institut'),
(86010, 71323, 'no_lang_code', 'name', 'Sweden Water Research (Sweden)'),
(86011, 71324, 'no_lang_code', 'name', 'Idhelio (France)'),
(86012, 71325, 'no_lang_code', 'name', 'Hays Innovations (United States)'),
(86013, 71326, 'en', 'name', 'British Machine Vision Association'),
(86014, 71327, 'no_lang_code', 'name', 'Infrascan (United States)'),
(86015, 71328, 'en', 'name', 'St Albans and Hertfordshire Architectural and Archaeological Society'),
(86016, 71329, 'no_lang_code', 'name', 'Forward Photonics (United States)'),
(86017, 71330, 'en', 'name', 'Refugee Council'),
(86018, 71331, 'en', 'name', 'Digital Curation Centre'),
(86019, 71332, 'en', 'name', 'York Theatre Royal'),
(86020, 71333, 'en', 'name', 'Office of Governor'),
(86021, 71334, 'en', 'name', 'International Planned Parenthood Federation'),
(86022, 71335, 'en', 'name', 'San Gabriel Pomona Regional Center'),
(86023, 71336, 'en', 'name', 'Council on Higher Education'),
(86024, 71337, 'en', 'name', 'Rotherham United Community Sports Trust'),
(86025, 71338, 'fr', 'name', 'Conseil DƩpartemental de la Creuse'),
(86026, 71339, 'en', 'name', 'Ministry of Welfare'),
(86027, 71339, 'is', 'name', 'VelferưarrƔưuneytiư'),
(86028, 71340, 'pt', 'name', 'Associação Nacional de Direitos Humanos, Pesquisa e Pós-Graduação'),
(86029, 71341, 'en', 'name', 'Muslim Women''s Research and Action Forum'),
(86030, 71342, 'no_lang_code', 'name', 'Norrkƶping Visualisering (Sweden)'),
(86031, 71343, 'en', 'name', 'The Parks Trust'),
(86032, 71344, 'en', 'name', 'Thomas Mann Cultural Centre'),
(86033, 71344, 'lt', 'name', 'Thomo Manno Kultūros Centras'),
(86034, 71345, 'en', 'name', 'Medicines Patent Pool'),
(86035, 71346, 'en', 'name', 'Northern Ireland Council for Voluntary Action'),
(86036, 71347, 'en', 'name', 'Abaseen Foundation'),
(86037, 71348, 'en', 'name', 'Quakers'),
(86038, 71349, 'en', 'name', 'Thomas Pocklington Trust'),
(86039, 71350, 'en', 'name', 'The Association of Early Pregnancy Units'),
(86040, 71351, 'en', 'name', 'City Year'),
(86041, 71352, 'en', 'name', 'United Nations Children''s Fund Kosovo'),
(86042, 71353, 'en', 'name', 'Dhow Countries Music Academy'),
(86043, 71354, 'en', 'name', 'The Wye & Usk Foundation'),
(86044, 71355, 'no_lang_code', 'name', 'Guidestar Optical Systems (United States)'),
(86045, 71356, 'no_lang_code', 'name', 'Hoh Aeronautics (United States)'),
(86046, 71357, 'no_lang_code', 'name', 'ReproCELL (United Kingdom)'),
(86047, 71358, 'no_lang_code', 'name', 'PolymemTech (Poland)'),
(86048, 71359, 'en', 'name', 'Durham Dales Health Federation'),
(86049, 71360, 'no_lang_code', 'name', 'Noviga Research (Sweden)'),
(86050, 71361, 'it', 'name', 'Museo Civico di Zoologia'),
(86051, 71362, 'no_lang_code', 'name', 'Pragma Therapeutics (France)'),
(86052, 71363, 'no_lang_code', 'name', 'Greensea Systems (United States)'),
(86053, 71364, 'en', 'name', 'Tripura State Pollution Control Board'),
(86054, 71365, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ ŃŃƒŃ‡Š°ŃŠ½Ń‹Ń… Š²ŠµŠ“Š°Ńž Ń–Š¼Ń А. М. Шырокава'),
(86055, 71365, 'en', 'name', 'Institute of Modern Knowledge named after A.M. Shirokova'),
(86056, 71365, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ современных знаний имени А. М. Широкова'),
(86057, 71366, 'no_lang_code', 'name', 'Agile RF Systems (United States)'),
(86058, 71367, 'en', 'name', 'Oral History Society'),
(86059, 71368, 'en', 'name', 'Centre for Research and Technology Development'),
(86060, 71369, 'en', 'name', 'International Centre on Space Technologies for Natural and Cultural Heritage'),
(86061, 71369, 'zh', 'name', 'å›½é™…č‡Ŗē„¶äøŽę–‡åŒ–é—äŗ§ē©ŗé—“ęŠ€ęœÆäø­åæƒ'),
(86062, 71370, 'en', 'name', 'Center for Neighborhood Technology'),
(86063, 71371, 'no_lang_code', 'name', 'Meva Energy (Sweden)'),
(86064, 71372, 'no_lang_code', 'name', 'Celtic Research (United Kingdom)'),
(86065, 71373, 'no_lang_code', 'name', 'Clean Motion (Sweden)'),
(86066, 71374, 'en', 'name', 'J P French Associates'),
(86067, 71375, 'en', 'name', 'Professional Publishers Association'),
(86068, 71376, 'en', 'name', 'Tyne Rivers Trust'),
(86069, 71377, 'no_lang_code', 'name', 'NanoSD (United States)'),
(86070, 71378, 'de', 'name', 'Nawi Graz'),
(86071, 71379, 'no_lang_code', 'name', 'Caktus Group (United States)'),
(86072, 71380, 'en', 'name', 'Houston Galveston Institute'),
(86073, 71381, 'en', 'name', 'Coram'),
(86074, 71382, 'en', 'name', 'The K.R. Cama Oriental Institute'),
(86075, 71383, 'en', 'name', 'Education Law Center'),
(86076, 71384, 'en', 'name', 'Tostan'),
(86077, 71385, 'en', 'name', 'Respons'),
(86078, 71386, 'en', 'name', 'YoungMinds'),
(86079, 71387, 'pt', 'name', 'Fundepag'),
(86080, 71388, 'no_lang_code', 'name', 'Ɓjtte'),
(86081, 71388, 'sv', 'name', 'Svenskt fjƤll- och samemuseum'),
(86082, 71389, 'en', 'name', 'Quality of Life Partnership'),
(86083, 71390, 'en', 'name', 'Migrants Rights Network'),
(86084, 71391, 'en', 'name', 'Institute for Research on Population and Social Policies'),
(86085, 71391, 'it', 'name', 'Istituto di Ricerche sulla Popolazione e le Politiche Sociali'),
(86086, 71392, 'en', 'name', 'Ukrainian State Employment Service Training Institute'),
(86087, 71392, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ піГготовки каГрів'),
(86088, 71393, 'no_lang_code', 'name', 'Stri (Sweden)'),
(86089, 71394, 'es', 'name', 'Oxfam MƩxico'),
(86090, 71395, 'en', 'name', 'PPMA Group of Associations'),
(86091, 71396, 'no_lang_code', 'name', 'Glosten (United States)'),
(86092, 71397, 'tr', 'name', 'Türk Eğitim Vakfı'),
(86093, 71398, 'en', 'name', 'Center for Quantum Nanoscience'),
(86094, 71398, 'ko', 'name', 'ģ–‘ģžė‚˜ė…øź³¼ķ•™ģ—°źµ¬ė‹Ø'),
(86095, 71399, 'en', 'name', 'Foundation for the Advancement of Social Theory'),
(86096, 71400, 'no_lang_code', 'name', 'Capgemini (United Kingdom)'),
(86097, 71401, 'en', 'name', 'Edinburgh City of Literature'),
(86098, 71402, 'en', 'name', 'United States Courts'),
(86099, 71403, 'en', 'name', 'Honolulu Theatre for Youth'),
(86100, 71404, 'no_lang_code', 'name', 'Bio-Bras'),
(86101, 71405, 'no_lang_code', 'name', 'PharmChem (United States)'),
(86102, 71406, 'no_lang_code', 'name', 'StereoVision Imaging (United States)'),
(86103, 71407, 'en', 'name', 'National Organizations for Youth Safety'),
(86104, 71408, 'no_lang_code', 'name', 'Seva Mandir'),
(86105, 71409, 'no_lang_code', 'name', 'Soliya'),
(86106, 71410, 'en', 'name', 'Constituency for Africa'),
(86107, 71411, 'en', 'name', 'National Defense University'),
(86108, 71411, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž€įž¶įžšįž–įž¶įžšįž‡įž¶įžįž·'),
(86109, 71412, 'fr', 'name', 'CIEP'),
(86110, 71413, 'en', 'name', 'Gulf Coast Housing Partnership'),
(86111, 71414, 'no_lang_code', 'name', 'GPD Optoelectronics (United States)'),
(86112, 71415, 'en', 'name', 'Portsmouth Museum'),
(86113, 71416, 'en', 'name', 'Aston Reinvestment Trust'),
(86114, 71417, 'no_lang_code', 'name', 'La Strada'),
(86115, 71418, 'no_lang_code', 'name', 'JBS Technologies (United States)'),
(86116, 71419, 'en', 'name', 'Scottish Association of Meat Wholesalers'),
(86117, 71420, 'ro', 'name', 'Institutul Medicina de Urgenta'),
(86118, 71421, 'no_lang_code', 'name', 'Echandia Marine (Sweden)'),
(86119, 71422, 'no_lang_code', 'name', 'Gorgias Press (United States)'),
(86120, 71423, 'no_lang_code', 'name', 'Polish Security Printing Works (Poland)'),
(86121, 71423, 'pl', 'name', 'Polska Wytwornia Papierow Wartosciowych'),
(86122, 71424, 'en', 'name', 'Abhivyakti Media for Development'),
(86123, 71425, 'en', 'name', 'Norfolk Record Office'),
(86124, 71426, 'en', 'name', 'Central Road Research Institute'),
(86125, 71427, 'en', 'name', 'Kotka Maritime Research Centre'),
(86126, 71427, 'fi', 'name', 'Meriturvallisuuden ja -liikenteen Tutkimuskeskus'),
(86127, 71428, 'en', 'name', 'The Institute for Food Brain and Behaviour'),
(86128, 71429, 'en', 'name', 'National Central Library'),
(86129, 71429, 'zh', 'name', 'åœ‹å®¶åœ–ę›øé¤Ø'),
(86130, 71430, 'az', 'name', 'Azərbaycan Respublikasının Mərkəzi Bankı'),
(86131, 71430, 'en', 'name', 'Central Bank of the Republic of Azerbaijan'),
(86132, 71431, 'no_lang_code', 'name', 'DiSTI (United States)'),
(86133, 71432, 'en', 'name', 'The Golden Bridges Foundation'),
(86134, 71433, 'en', 'name', 'Ministry of Foreign Affairs'),
(86135, 71433, 'ro', 'name', 'Ministerul Afacerilor Externe'),
(86136, 71434, 'pt', 'name', 'Instituto Eqüit – GĆŖnero, Economia e Cidadania Global'),
(86137, 71435, 'no_lang_code', 'name', 'Leaflabs (United States)'),
(86138, 71436, 'en', 'name', 'Institute of Health Research, Epidemiological Surveillance and Training'),
(86139, 71436, 'fr', 'name', 'Institut de Recherche en SantĆ©, de Surveillance ƉpidĆ©miologique et de Formation'),
(86140, 71437, 'en', 'name', 'UK Carbon Capture and Research Centre'),
(86141, 71438, 'no_lang_code', 'name', 'Hanson & Associates (United Kingdom)'),
(86142, 71439, 'en', 'name', 'Media Rights Agenda'),
(86143, 71440, 'en', 'name', 'Office of National Intelligence'),
(86144, 71441, 'no_lang_code', 'name', 'Financial Network Analytics (United Kingdom)'),
(86145, 71442, 'fr', 'name', 'Arteria, Association Arteria MƩdiation'),
(86146, 71443, 'en', 'name', 'National AIDS Trust'),
(86147, 71444, 'en', 'name', 'Institute of Translation and Interpreting'),
(86148, 71445, 'no_lang_code', 'name', 'MJ Medical (United Kingdom)'),
(86149, 71446, 'en', 'name', 'Buffs Social Club'),
(86150, 71447, 'en', 'name', 'Capital Impact Partners'),
(86151, 71448, 'cs', 'name', 'Archiv VýtvarnĆ©ho UměnĆ­'),
(86152, 71448, 'en', 'name', 'The Fine Art Archive'),
(86153, 71449, 'no_lang_code', 'name', 'Fluent (United States)'),
(86154, 71450, 'en', 'name', 'Armenian Genocide Museum-Institute Foundation'),
(86155, 71451, 'no_lang_code', 'name', 'ATSP Innovations (United States)'),
(86156, 71452, 'no_lang_code', 'name', 'Kabar'),
(86157, 71453, 'en', 'name', 'National Women''s Health Network'),
(86158, 71454, 'en', 'name', 'British Arts Festivals Association'),
(86159, 71455, 'en', 'name', 'Sampad'),
(86160, 71456, 'no_lang_code', 'name', 'Energesis Pharmaceuticals (United States)'),
(86161, 71457, 'no_lang_code', 'name', 'Proboscis'),
(86162, 71458, 'en', 'name', 'AshƩ'),
(86163, 71459, 'no_lang_code', 'name', 'Medical Moulded Products (United Kingdom)'),
(86164, 71460, 'no_lang_code', 'name', 'Flow Neuroscience (Sweden)'),
(86165, 71461, 'en', 'name', 'The Investment Association'),
(86166, 71462, 'no_lang_code', 'name', 'Ellison Laboratories (United States)'),
(86167, 71463, 'no_lang_code', 'name', 'Botswana Open University'),
(86168, 71464, 'en', 'name', 'Interaction Institute for Social Change'),
(86169, 71465, 'ms', 'name', 'Hospital Raja Perempuan Zainab II'),
(86170, 71466, 'no_lang_code', 'name', 'Oxford MicroMedical (United Kingdom)'),
(86171, 71467, 'no_lang_code', 'name', 'Kheiron Medical Technologies (United Kingdom)'),
(86172, 71468, 'en', 'name', 'Angmering Community Centre'),
(86173, 71469, 'en', 'name', 'Nerve Centre'),
(86174, 71470, 'no_lang_code', 'name', 'Fedor-Bis (Poland)'),
(86175, 71471, 'az', 'name', 'Azərbaycan Milli Elmlər Akademiyası Abbasqulu Ağa Bakıxanov Adina Tarix Institutu'),
(86176, 71472, 'en', 'name', 'York Castle Museum'),
(86177, 71473, 'no_lang_code', 'name', 'bioMƩrieux (Brazil)'),
(86178, 71474, 'en', 'name', 'Ministry of Social Justice and Empowerment'),
(86179, 71475, 'en', 'name', 'Economic and Social Research Foundation'),
(86180, 71476, 'no_lang_code', 'name', 'Digital First Media (United States)'),
(86181, 71477, 'en', 'name', 'New City College'),
(86182, 71478, 'no_lang_code', 'name', 'Suzano (Brazil)'),
(86183, 71479, 'no_lang_code', 'name', 'The McCrone Group (United States)'),
(86184, 71480, 'no_lang_code', 'name', 'Sempre (Poland)'),
(86185, 71481, 'no_lang_code', 'name', 'CMA Technologies (United States)'),
(86186, 71482, 'no_lang_code', 'name', 'Spirit AeroSystems (United Kingdom)'),
(86187, 71483, 'no_lang_code', 'name', 'Advent Life Sciences (United Kingdom)'),
(86188, 71484, 'en', 'name', 'Law Centres Network'),
(86189, 71485, 'de', 'name', 'Malteser Waldkrankenhaus Erlangen'),
(86190, 71486, 'no_lang_code', 'name', 'SoletAer (Sweden)'),
(86191, 71487, 'sv', 'name', 'Bergslagssjukhuset'),
(86192, 71488, 'pt', 'name', 'Instituto Sou da Paz'),
(86193, 71489, 'de', 'name', 'Diplomatische Akademie Wien'),
(86194, 71489, 'en', 'name', 'Diplomatic Academy of Vienna'),
(86195, 71490, 'en', 'name', 'ExpandED Schools'),
(86196, 71491, 'en', 'name', 'Border Network for Human Rights'),
(86197, 71492, 'en', 'name', 'Leadership Conference Education Fund'),
(86198, 71493, 'en', 'name', 'American Society for Yad Vashem'),
(86199, 71494, 'no_lang_code', 'name', 'Luxbright (Sweden)'),
(86200, 71495, 'es', 'name', 'Instituto de Ciencias Astronómicas, de la Tierra y del Espacio'),
(86201, 71496, 'en', 'name', 'Mapungubwe Institute for Strategic Reflection'),
(86202, 71497, 'en', 'name', 'CR Rao Advanced Institute of Mathematics, Statistics and Computer Science'),
(86203, 71498, 'en', 'name', 'International Association for the History of Religions'),
(86204, 71499, 'en', 'name', 'Industry and Parliament Trust'),
(86205, 71500, 'no_lang_code', 'name', 'Orphelia Pharma (France)'),
(86206, 71501, 'en', 'name', 'Boromarajonani College of Nursing'),
(86207, 71501, 'th', 'name', 'ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø¢ąø²ąøšąø²ąø„ąøšąø£ąø”ąø£ąø²ąøŠąøŠąø™ąø™ąøµ ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(86208, 71502, 'en', 'name', 'Global Canopy'),
(86209, 71503, 'en', 'name', 'NeighborWorks America'),
(86210, 71504, 'en', 'name', 'Gurkha Welfare Trust'),
(86211, 71505, 'es', 'name', 'ConCuerpos'),
(86212, 71506, 'no_lang_code', 'name', 'Songklanagarind Hospital'),
(86213, 71506, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøŖąø‡ąø‚ąø„ąø²ąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(86214, 71507, 'es', 'name', 'Hospital d''Igualada'),
(86215, 71508, 'no_lang_code', 'name', 'LightPointe (United States)'),
(86216, 71509, 'nl', 'name', 'Stichting Hester'),
(86217, 71510, 'en', 'name', 'Veterans Affairs Canada'),
(86218, 71510, 'fr', 'name', 'Anciens Combattants Canada'),
(86219, 71511, 'no_lang_code', 'name', 'Aili Innovations (Sweden)'),
(86220, 71512, 'en', 'name', 'Newark Trust for Education'),
(86221, 71513, 'en', 'name', 'Scottish Public Pensions Agency'),
(86222, 71514, 'en', 'name', 'National Disability Rights Network'),
(86223, 71515, 'en', 'name', 'All India Artisans and Craftworkers Welfare Association'),
(86224, 71516, 'en', 'name', 'National Hispanic Leadership Agenda'),
(86225, 71517, 'no_lang_code', 'name', 'Flexsys (United States)'),
(86226, 71518, 'no_lang_code', 'name', 'Gen-9 (United States)'),
(86227, 71519, 'en', 'name', 'Association of Chief Executives of Voluntary Organisations'),
(86228, 71520, 'en', 'name', 'Creative & Cultural Skills'),
(86229, 71521, 'no_lang_code', 'name', 'Advratech (United States)'),
(86230, 71522, 'no_lang_code', 'name', 'Manufacturing Laboratories (United States)'),
(86231, 71523, 'sv', 'name', 'LƤnsstyrelsen VƤstra Gƶtalands lƤn'),
(86232, 71524, 'cy', 'name', 'Cymdeithas Thomas Pennant'),
(86233, 71525, 'en', 'name', 'Asian Arts Initiative'),
(86234, 71526, 'no_lang_code', 'name', 'Microsonic Systems (United States)'),
(86235, 71527, 'no_lang_code', 'name', 'Hydroacoustics (United States)'),
(86236, 71528, 'es', 'name', 'Hospital ClĆ­nico FUSAT'),
(86237, 71529, 'en', 'name', 'Mazatlan Professional School of Dance'),
(86238, 71530, 'en', 'name', 'Living Cities'),
(86239, 71531, 'en', 'name', 'National Association of British Market Authorities'),
(86240, 71532, 'en', 'name', 'Action Health Incorporated'),
(86241, 71533, 'en', 'name', 'Museum of Contemporary African Diasporan Arts'),
(86242, 71534, 'en', 'name', 'Institute of Geology, Komi Science Centre'),
(86243, 71534, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Коми ŠŠ¦ Š£Ń€Šž Š ŠŠ'),
(86244, 71535, 'no_lang_code', 'name', 'Electric Funstuff (United States)'),
(86245, 71536, 'no_lang_code', 'name', 'Fauji Fertilizer (Pakistan)'),
(86246, 71537, 'cy', 'name', 'Comunn Eachdraidh na Pairc'),
(86247, 71538, 'en', 'name', 'Aitchison College'),
(86248, 71538, 'ur', 'name', 'Ų§ŪŒŚ†ŪŒŲ³Ł† Ś©Ų§Ł„Ų¬ā€Ž'),
(86249, 71539, 'no_lang_code', 'name', 'Ecome (France)'),
(86250, 71540, 'en', 'name', 'New Florida Majority'),
(86251, 71541, 'en', 'name', 'Hertford County Hospital'),
(86252, 71542, 'en', 'name', 'Regional Water Management Authority in Warsaw'),
(86253, 71542, 'pl', 'name', 'Regionalny Zarząd Gospodarki Wodnej w Warszawie'),
(86254, 71543, 'da', 'name', 'Museum Salling'),
(86255, 71544, 'en', 'name', 'Public Interest Research and Advocacy Center'),
(86256, 71545, 'en', 'name', 'The GoDown Arts Centre'),
(86257, 71546, 'en', 'name', 'Tianjin Internal Combustion Engine Research Institute'),
(86258, 71546, 'zh', 'name', 'å¤©ę“„å†…ē‡ƒęœŗē ”ē©¶ę‰€'),
(86259, 71547, 'no_lang_code', 'name', 'BTS Software Solutions (United States)'),
(86260, 71548, 'en', 'name', 'Neighborhood Funders Group'),
(86261, 71549, 'it', 'name', 'Istituto storico italiano per il Medio Evo'),
(86262, 71550, 'en', 'name', 'Observatories and Research Facilities for European Seismology'),
(86263, 71551, 'en', 'name', 'Seattle Film Institute'),
(86264, 71552, 'en', 'name', 'The Institute for Southern Studies'),
(86265, 71553, 'no_lang_code', 'name', 'Centralny Ośrodek Badawczo Rozwojowy Aparatury Badawczej i Dydaktycznej (Poland)'),
(86266, 71554, 'en', 'name', 'Midlands Partnership NHS Foundation Trust'),
(86267, 71555, 'no_lang_code', 'name', 'Defense Engineering Corporation (United States)'),
(86268, 71556, 'no_lang_code', 'name', 'Enika (Poland)'),
(86269, 71557, 'no_lang_code', 'name', 'Apple (United Kingdom)'),
(86270, 71558, 'no_lang_code', 'name', 'Eltraf (Poland)'),
(86271, 71559, 'en', 'name', 'Community Voices Heard'),
(86272, 71560, 'no_lang_code', 'name', 'ERA Software Systems (United States)'),
(86273, 71561, 'en', 'name', 'Matheny'),
(86274, 71562, 'en', 'name', 'West Dunbartonshire Council'),
(86275, 71563, 'tl', 'name', 'De La Salle Lipa'),
(86276, 71564, 'en', 'name', 'Wales Co-operative Centre'),
(86277, 71565, 'en', 'name', 'NEO Philanthropy'),
(86278, 71566, 'en', 'name', 'Iseal Alliance'),
(86279, 71567, 'en', 'name', 'Rome International Center for Materials Science'),
(86280, 71568, 'en', 'name', 'Council on Energy, Environment and Water'),
(86281, 71569, 'en', 'name', 'Environmental Council of the States'),
(86282, 71570, 'az', 'name', 'Azərbaycan Dƶvlət Aqrar Universiteti'),
(86283, 71570, 'en', 'name', 'Azerbaijan State Agricultural University'),
(86284, 71571, 'no_lang_code', 'name', 'Sarissa Biomedical (United Kingdom)'),
(86285, 71572, 'en', 'name', 'Brighton Peace and Environment Centre'),
(86286, 71573, 'en', 'name', 'Metropolitan Arts Centre'),
(86287, 71574, 'en', 'name', 'Westford Academy'),
(86288, 71575, 'en', 'name', 'Center for Social Sciences'),
(86289, 71575, 'ka', 'name', 'įƒ”įƒįƒŖįƒ˜įƒįƒšįƒ£įƒ  įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒįƒ—įƒ įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜'),
(86290, 71576, 'en', 'name', 'SOVA Center for Information and Analysis'),
(86291, 71576, 'ru', 'name', 'Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Š¾-аналитического центра Дова'),
(86292, 71577, 'en', 'name', 'West Cumbria Rivers Trust'),
(86293, 71578, 'pl', 'name', 'Powszechna Kasa Oszczędności Bank Polski Spółka Akcyjna'),
(86294, 71579, 'no_lang_code', 'name', 'Grid Logic (United States)'),
(86295, 71580, 'en', 'name', 'Centre on Dynamics of Ethnicity'),
(86296, 71581, 'en', 'name', 'The Center for Arts Education'),
(86297, 71582, 'no_lang_code', 'name', 'Codex Biosolutions (United States)'),
(86298, 71583, 'en', 'name', 'Community Development Advocates of Detroit'),
(86299, 71584, 'es', 'name', 'Consejo Estatal Para la Cultura y las Artes de Hidalgo'),
(86300, 71585, 'en', 'name', 'Museum of London'),
(86301, 71586, 'en', 'name', '21st Century Education Research Institute'),
(86302, 71586, 'zh', 'name', '21世纪教育研究院'),
(86303, 71587, 'no_lang_code', 'name', 'Auger Communications (United States)'),
(86304, 71588, 'de', 'name', 'Kliniken Maria Hilf'),
(86305, 71589, 'no_lang_code', 'name', 'Mavenoid (Sweden)'),
(86306, 71590, 'de', 'name', 'Zentrum für Rhinologie und Allergologie'),
(86307, 71591, 'fr', 'name', 'Alistore'),
(86308, 71592, 'en', 'name', 'CittĆ  di Castello Hospital'),
(86309, 71593, 'no_lang_code', 'name', 'Zaslaw (Poland)'),
(86310, 71594, 'en', 'name', 'Watsonville Community Hospital'),
(86311, 71595, 'en', 'name', 'China Port Museum'),
(86312, 71595, 'zh', 'name', 'äø­å›½ęøÆå£åšē‰©é¦†'),
(86313, 71596, 'en', 'name', 'Biology of Infection'),
(86314, 71596, 'fr', 'name', 'DƩpartement Biologie Cellulaire et Infection'),
(86315, 71597, 'en', 'name', 'University of Neyshabur'),
(86316, 71597, 'fa', 'name', 'دانؓگاه Ł†ŪŒŲ“Ų§ŲØŁˆŲ±');
INSERT INTO `ror_settings` VALUES
(86317, 71598, 'en', 'name', 'Hainan Modern Women and Children''s Hospital'),
(86318, 71598, 'zh', 'name', 'ęµ·å—ēŽ°ä»£å¦‡å„³å„æē«„åŒ»é™¢'),
(86319, 71599, 'pt', 'name', 'Fundação Raquel e Martin Sain'),
(86320, 71600, 'hu', 'name', 'Budapesti Fazekas MihÔly Gyakorló ÁltalÔnos Iskola és GimnÔzium'),
(86321, 71601, 'es', 'name', 'Instituto OceanogrƔfico de la Armada del Ecuador'),
(86322, 71602, 'en', 'name', 'Govanhill Housing Association'),
(86323, 71603, 'en', 'name', 'International School of Dakar'),
(86324, 71604, 'en', 'name', 'Chai Found Music Workshop'),
(86325, 71605, 'en', 'name', 'The Geffrye Museum of the Home'),
(86326, 71606, 'en', 'name', 'Delaware Youth Center'),
(86327, 71607, 'no_lang_code', 'name', 'Motivational Educational Entertainment Productions (United States)'),
(86328, 71608, 'no_lang_code', 'name', 'Electric Ant Lab (Netherlands)'),
(86329, 71609, 'en', 'name', 'Northern Ireland Office'),
(86330, 71609, 'ga', 'name', 'Oifig Thuaisceart Ɖireann'),
(86331, 71610, 'de', 'name', 'Bundesministerium der Justiz und für Verbraucherschutz'),
(86332, 71610, 'en', 'name', 'Federal Ministry of Justice and Consumer Protection'),
(86333, 71611, 'id', 'name', 'HuMA, Perkumpulan HuMa Indonesia'),
(86334, 71612, 'no_lang_code', 'name', 'L-Nutra (United States)'),
(86335, 71613, 'en', 'name', 'United Learning'),
(86336, 71614, 'en', 'name', 'GeoEnergy Research Centre'),
(86337, 71615, 'fr', 'name', 'Laboratoire ArchƩomatƩriaux et PrƩvision de l''AltƩration'),
(86338, 71616, 'en', 'name', 'Lviv State University of Internal Affairs'),
(86339, 71616, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(86340, 71617, 'en', 'name', 'Asian Women Lone Parent Association'),
(86341, 71618, 'en', 'name', 'Ministry of Health and Sports'),
(86342, 71619, 'no_lang_code', 'name', 'Northvolt (Sweden)'),
(86343, 71620, 'no_lang_code', 'name', 'Cardax (United States)'),
(86344, 71621, 'en', 'name', 'New Walk Museum and Art Gallery'),
(86345, 71622, 'en', 'name', 'Guide Dogs'),
(86346, 71623, 'en', 'name', 'Dutch Foundation for Literature'),
(86347, 71623, 'nl', 'name', 'Nederlands Letterenfonds'),
(86348, 71624, 'de', 'name', 'Christoph-Dornier-Stiftung für Klinische Psychologie'),
(86349, 71625, 'en', 'name', 'Tyne & Wear Building Preservation Trust'),
(86350, 71626, 'en', 'name', 'Intercultural Institute Timisoara'),
(86351, 71627, 'sr', 'name', 'Institut za savremenu istoriju'),
(86352, 71628, 'no_lang_code', 'name', 'DecImmune Therapeutics (United States)'),
(86353, 71629, 'en', 'name', 'Foundation for Water Research'),
(86354, 71630, 'en', 'name', 'Athens Clarke County Police Department'),
(86355, 71631, 'no_lang_code', 'name', 'MDA Engineering (United States)'),
(86356, 71632, 'en', 'name', 'Wigston College'),
(86357, 71633, 'en', 'name', 'Institute of History of the Slovak Academy of Sciences'),
(86358, 71633, 'sk', 'name', 'Historický Ústav Slovenskej Akadémie Vied'),
(86359, 71634, 'no_lang_code', 'name', 'SageTech Medical Equipment (United Kingdom)'),
(86360, 71635, 'en', 'name', 'Comann Eachdraidh Bharabhais Agus Bhrù'),
(86361, 71636, 'en', 'name', 'Huntington''s Disease Association'),
(86362, 71637, 'en', 'name', 'Youth Junction'),
(86363, 71638, 'en', 'name', 'Vietnam National Institute of Culture and Arts Studies'),
(86364, 71638, 'vi', 'name', 'Viện Văn hóa Nghệ thuįŗ­t quốc gia Việt Nam'),
(86365, 71639, 'no_lang_code', 'name', 'CytoLumina Technologies (United States)'),
(86366, 71640, 'no_lang_code', 'name', 'Maximus (United States)'),
(86367, 71641, 'en', 'name', 'AIR'),
(86368, 71642, 'en', 'name', 'Trinity House Community Resource Centre'),
(86369, 71643, 'no_lang_code', 'name', 'Chhandam School of Kathak'),
(86370, 71644, 'no_lang_code', 'name', 'MC Power (United States)'),
(86371, 71645, 'en', 'name', 'Alaska Department of Public Safety'),
(86372, 71646, 'en', 'name', 'Central Adoption Resource Authority'),
(86373, 71646, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¦ą¤¤ą„ą¤¤ą¤• ą¤—ą„ą¤°ą¤¹ą¤£ संसाधन ą¤Ŗą„ą¤°ą¤¾ą¤§ą¤æą¤•ą¤°ą¤£'),
(86374, 71647, 'en', 'name', 'Kharadar General Hospital'),
(86375, 71647, 'ur', 'name', 'کھارادر جنرل ہسپتال'),
(86376, 71648, 'no_lang_code', 'name', 'Flight Works (United States)'),
(86377, 71649, 'no_lang_code', 'name', 'Neural Analytics (United States)'),
(86378, 71650, 'en', 'name', 'Heritage Medical Research Clinic'),
(86379, 71651, 'no_lang_code', 'name', 'Fibralign (United States)'),
(86380, 71652, 'en', 'name', 'UK Centre for Tobacco & Alcohol Studies'),
(86381, 71653, 'en', 'name', 'Hlanganisa Institute for Development Southern Africa'),
(86382, 71654, 'en', 'name', 'Goldsmiths Community Centre'),
(86383, 71655, 'en', 'name', 'The Jerusalem Academy of Music and Dance'),
(86384, 71655, 'he', 'name', 'האקדמיה למוהיקה ולמחול ×‘×™×Ø×•×©×œ×™×'),
(86385, 71656, 'en', 'name', 'The Interuniversity Institute for Research and Development'),
(86386, 71657, 'en', 'name', 'Tanzania Meteorological Agency'),
(86387, 71658, 'en', 'name', 'Bexhill Museum'),
(86388, 71659, 'en', 'name', 'Institute of Practitioners in Advertising'),
(86389, 71660, 'en', 'name', 'Buckinghamshire Military Museum Trust'),
(86390, 71661, 'en', 'name', 'Portsmouth City Council'),
(86391, 71662, 'en', 'name', 'Infrastructure Transitions Research Consortium'),
(86392, 71663, 'pt', 'name', 'GeledƩs Instituto da Mulher Negra'),
(86393, 71664, 'en', 'name', 'European Network of Guardianship Institutions'),
(86394, 71665, 'no_lang_code', 'name', 'Kalyra Pharmaceuticals (United States)'),
(86395, 71666, 'fr', 'name', 'Centre Hospitalier de Mouscron'),
(86396, 71667, 'no_lang_code', 'name', 'CI&T (Brasil)'),
(86397, 71668, 'no_lang_code', 'name', 'Organic Electronics Saxony (Germany)'),
(86398, 71669, 'en', 'name', 'Virginia Center for Policing Innovation'),
(86399, 71670, 'en', 'name', 'Cromarty Courthouse Museum'),
(86400, 71671, 'en', 'name', 'United Kingdom Petroleum Industry Association'),
(86401, 71672, 'no_lang_code', 'name', 'D-2 Incorporated (United States)'),
(86402, 71673, 'no_lang_code', 'name', 'EP Analytics (United States)'),
(86403, 71674, 'es', 'name', 'Club Matador'),
(86404, 71675, 'no_lang_code', 'name', 'Valve (United States)'),
(86405, 71676, 'no_lang_code', 'name', 'MixZon (United States)'),
(86406, 71677, 'en', 'name', 'Nautilus Institute'),
(86407, 71678, 'en', 'name', 'King County Council'),
(86408, 71679, 'en', 'name', 'Institute of Social Studies Trust'),
(86409, 71680, 'no_lang_code', 'name', 'NDE Technologies (United States)'),
(86410, 71681, 'no_lang_code', 'name', 'Callen Lenz (United Kingdom)'),
(86411, 71682, 'fr', 'name', 'Laboratoire National de RƩfƩrence'),
(86412, 71683, 'en', 'name', 'L.V. Prasad Film & TV Academy'),
(86413, 71684, 'en', 'name', 'University Alliance'),
(86414, 71685, 'en', 'name', 'Centre for Social Sciences and Humanities'),
(86415, 71686, 'en', 'name', 'Coalition Against Trafficking Women'),
(86416, 71687, 'no_lang_code', 'name', 'Wind Power Engineering (Japan)'),
(86417, 71688, 'en', 'name', 'Community Health And Information Network'),
(86418, 71689, 'en', 'name', 'Council of Urban Professionals'),
(86419, 71690, 'en', 'name', 'Museums Sheffield'),
(86420, 71691, 'no_lang_code', 'name', 'Bally Ribbon Mills (United States)'),
(86421, 71692, 'ro', 'name', 'Asociația RomĆ¢nă de Artă Contemporană'),
(86422, 71693, 'en', 'name', 'Smart Water Networks Forum'),
(86423, 71694, 'en', 'name', 'National Drug Addiction Center'),
(86424, 71695, 'no_lang_code', 'name', 'Sysnav (France)'),
(86425, 71696, 'en', 'name', 'The Justice Research Center'),
(86426, 71697, 'no_lang_code', 'name', 'Emmune (United States)'),
(86427, 71698, 'no_lang_code', 'name', 'Life Services (United States)'),
(86428, 71699, 'no_lang_code', 'name', 'Vivo Smart Medical Devices (United Kingdom)'),
(86429, 71700, 'sv', 'name', 'Vetenskap I Skolan'),
(86430, 71701, 'no_lang_code', 'name', 'Mi-Tech (United States)'),
(86431, 71702, 'de', 'name', 'Hans-Bredow-Institut, Hans-Bredow-Institute'),
(86432, 71703, 'en', 'name', 'College of Science, Technology and Applied Arts of Trinidad and Tobago'),
(86433, 71704, 'en', 'name', 'National Survivor User Network'),
(86434, 71705, 'en', 'name', 'Social Progress Imperative'),
(86435, 71706, 'en', 'name', 'Iceland Symphony Orchestra'),
(86436, 71706, 'is', 'name', 'SinfónĆ­uhljómsveit ƍslands'),
(86437, 71707, 'no_lang_code', 'name', 'Calibrant Digital (United States)'),
(86438, 71708, 'en', 'name', 'Bradford Museums and Galleries'),
(86439, 71709, 'no_lang_code', 'name', 'CLEARink (Canada)'),
(86440, 71710, 'no_lang_code', 'name', 'eMagin (United States)'),
(86441, 71711, 'en', 'name', 'BMCC Tribeca Performing Arts Center'),
(86442, 71712, 'no_lang_code', 'name', 'Ceebus Technologies (United States)'),
(86443, 71713, 'en', 'name', 'Glastonbury Abbey'),
(86444, 71714, 'en', 'name', 'Blueberry Academy'),
(86445, 71715, 'en', 'name', 'Big Sky Institute'),
(86446, 71716, 'de', 'name', 'St. Vincentius-Kliniken'),
(86447, 71717, 'sq', 'name', 'Stacion'),
(86448, 71718, 'en', 'name', 'Los Angeles Area Chamber of Commerce'),
(86449, 71719, 'no_lang_code', 'name', 'Intraband (United States)'),
(86450, 71720, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—„ēµŒ'),
(86451, 71720, 'no_lang_code', 'name', 'Nikkei Business Publications (Japan)'),
(86452, 71721, 'en', 'name', 'Construction Technologies Institute'),
(86453, 71721, 'it', 'name', 'Istituto per le Tecnologie della Costruzione'),
(86454, 71722, 'en', 'name', 'Settlement Centre Waikato'),
(86455, 71723, 'no_lang_code', 'name', 'Applied Sonics (United States)'),
(86456, 71724, 'en', 'name', 'The Pevensey Court House Museum and Gaol'),
(86457, 71725, 'no_lang_code', 'name', 'LaserGuide (United States)'),
(86458, 71726, 'en', 'name', 'Democracy Development Centre'),
(86459, 71726, 'uk', 'name', 'Розвиток Гемократії'),
(86460, 71727, 'en', 'name', 'Warsaw School of Computer Science'),
(86461, 71727, 'pl', 'name', 'Warszawska Wyższa Szkoła Informatyki'),
(86462, 71728, 'no_lang_code', 'name', 'Centre Culturel Bactria'),
(86463, 71729, 'en', 'name', 'Health Action International'),
(86464, 71730, 'en', 'name', 'Sri Lanka Foundation'),
(86465, 71731, 'en', 'name', 'Nafici Environmental Research'),
(86466, 71732, 'en', 'name', 'Shenyang First People''s Hospital'),
(86467, 71732, 'zh', 'name', 'ę²ˆé˜³åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(86468, 71733, 'en', 'name', 'Detroit River International Wildlife Refuge'),
(86469, 71734, 'en', 'name', 'Ladies College'),
(86470, 71735, 'pt', 'name', 'Hospital AraĆŗjo Jorge'),
(86471, 71736, 'en', 'name', 'SETsquared Partnership'),
(86472, 71737, 'en', 'name', 'Oil & Gas Innovation Centre'),
(86473, 71738, 'no_lang_code', 'name', 'MIE Medical Research (United Kingdom)'),
(86474, 71739, 'en', 'name', 'Contemporary Dance Center'),
(86475, 71739, 'ru', 'name', 'Центр современного танца'),
(86476, 71740, 'en', 'name', 'Article 19'),
(86477, 71741, 'en', 'name', 'Institute of Economic Development'),
(86478, 71742, 'no_lang_code', 'name', 'ECD for the Masses (United States)'),
(86479, 71743, 'es', 'name', 'Museo De Arte Contemporaneo'),
(86480, 71744, 'en', 'name', 'The Bewdley School'),
(86481, 71745, 'en', 'name', 'World Travel and Tourism Council'),
(86482, 71746, 'no_lang_code', 'name', 'Kennen Technologies (United States)'),
(86483, 71747, 'en', 'name', 'Ministry of Natural Resources and Environmental Conservation'),
(86484, 71748, 'en', 'name', 'Economic Policy Research Centre'),
(86485, 71749, 'en', 'name', 'V.M. Koretsky Institute of State and Law'),
(86486, 71749, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²Š° Šø права имени Š’. М. ŠšŠ¾Ń€ŠµŃ†ŠŗŠ¾Š³Š¾ ŠŠŠ Украины'),
(86487, 71749, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гержави і права імені Š’. М. ŠšŠ¾Ń€ŠµŃ†ŃŒŠŗŠ¾Š³Š¾ ŠŠŠ України'),
(86488, 71750, 'no_lang_code', 'name', 'Aura Technologies (United States)'),
(86489, 71751, 'no_lang_code', 'name', 'Tecomet (United Kingdom)'),
(86490, 71752, 'no_lang_code', 'name', 'Black Swift Technologies (United States)'),
(86491, 71753, 'en', 'name', 'Parliamentary Advisory Council for Transport Safety'),
(86492, 71754, 'en', 'name', 'Uganda Media Women’s Association'),
(86493, 71755, 'en', 'name', 'Royal Institution of Naval Architects'),
(86494, 71756, 'en', 'name', 'Security Council Report'),
(86495, 71757, 'bn', 'name', 'বাংলাদেশ ą¦¬ą§ą¦Æą¦¾ą¦‚ą¦•'),
(86496, 71757, 'en', 'name', 'Bangladesh Bank'),
(86497, 71758, 'en', 'name', 'ZanaAfrica Foundation'),
(86498, 71759, 'en', 'name', 'MIT Lincoln Laboratory'),
(86499, 71760, 'en', 'name', 'The Potteries Museum and Art Gallery'),
(86500, 71761, 'no_lang_code', 'name', 'Cox & Company (United States)'),
(86501, 71762, 'en', 'name', 'Framework'),
(86502, 71763, 'es', 'name', 'Hospital Regional de Antofagasta'),
(86503, 71764, 'en', 'name', 'Centre for Excellence for Looked After Children in Scotland'),
(86504, 71765, 'cy', 'name', 'Canolfan y Dechnoleg Amgen'),
(86505, 71765, 'en', 'name', 'Centre for Alternative Technology'),
(86506, 71766, 'cy', 'name', 'Gweld Gwyddoniaeth'),
(86507, 71766, 'en', 'name', 'See Science'),
(86508, 71767, 'en', 'name', 'Perth and Kinross Heritage Trust'),
(86509, 71768, 'en', 'name', 'Elderly Accommodation Counsel'),
(86510, 71769, 'en', 'name', 'Business Technology Incubator of Technical Faculties Belgrade'),
(86511, 71770, 'en', 'name', 'Maine Center for Economic Policy'),
(86512, 71771, 'no_lang_code', 'name', 'Lokadharmi'),
(86513, 71772, 'no_lang_code', 'name', 'Integrity Systems (United States)'),
(86514, 71773, 'en', 'name', 'Green Liberty'),
(86515, 71773, 'lv', 'name', 'Zaļā brīvība'),
(86516, 71774, 'en', 'name', 'LEAP Africa'),
(86517, 71775, 'no_lang_code', 'name', 'Bauer Associates (United States)'),
(86518, 71776, 'en', 'name', 'Kyrgyz State Law Academy'),
(86519, 71776, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(86520, 71777, 'en', 'name', 'Houston Forensic Science Center'),
(86521, 71778, 'en', 'name', 'Programme on Women’s Economic, Social and Cultural Rights'),
(86522, 71779, 'en', 'name', 'South Downs National Park Authority'),
(86523, 71780, 'fr', 'name', 'Groupe Ginger'),
(86524, 71780, 'no_lang_code', 'name', 'Ginger (France)'),
(86525, 71781, 'no_lang_code', 'name', 'MorganFranklin (United States)'),
(86526, 71782, 'en', 'name', 'The Northwest School'),
(86527, 71783, 'no_lang_code', 'name', 'Kaleidoscopio'),
(86528, 71784, 'en', 'name', 'Ministry of Justice and Public Security'),
(86529, 71784, 'pt', 'name', 'Ministério da Justiça e Segurança Pública'),
(86530, 71785, 'no_lang_code', 'name', 'Blueenergy'),
(86531, 71786, 'no_lang_code', 'name', 'American Xtal Technology (United States)'),
(86532, 71787, 'no_lang_code', 'name', 'Mirage Systems (United States)'),
(86533, 71788, 'no_lang_code', 'name', 'Mgenuity (United States)'),
(86534, 71789, 'ro', 'name', 'Biblioteca Metropolitană București'),
(86535, 71790, 'en', 'name', 'Funders'' Network for Smart Growth and Livable Communities'),
(86536, 71791, 'no_lang_code', 'name', 'Nine Health CIC (United Kingdom)'),
(86537, 71792, 'en', 'name', 'Transport Analysis'),
(86538, 71793, 'no_lang_code', 'name', 'Solvay (Brazil)'),
(86539, 71794, 'no_lang_code', 'name', 'AI Signal Research (United States)'),
(86540, 71795, 'pt', 'name', 'Redes da MarƩ'),
(86541, 71796, 'en', 'name', 'Nonprofit Finance Fund'),
(86542, 71797, 'no_lang_code', 'name', 'Tetra Pak (Brazil)'),
(86543, 71798, 'en', 'name', 'Gloucestershire Wildlife Trust'),
(86544, 71799, 'en', 'name', 'Central Bank of Uruguay'),
(86545, 71799, 'es', 'name', 'Banco Central del Uruguay'),
(86546, 71800, 'no_lang_code', 'name', 'Phenikaa (Vietnam)'),
(86547, 71801, 'no_lang_code', 'name', 'Amprion (United States)'),
(86548, 71802, 'en', 'name', 'EngageMedia'),
(86549, 71803, 'en', 'name', 'Mull and Iona Community Trust'),
(86550, 71804, 'no_lang_code', 'name', 'TeXtreme (Sweden)'),
(86551, 71805, 'en', 'name', 'Friends of Cumbria Archives'),
(86552, 71806, 'en', 'name', 'Jinan Institute of Quantum Technology'),
(86553, 71806, 'zh', 'name', 'ęµŽå—é‡å­ęŠ€ęœÆē ”ē©¶é™¢'),
(86554, 71807, 'en', 'name', 'Planet Earth Institute'),
(86555, 71808, 'en', 'name', 'Association for the Prevention of Torture'),
(86556, 71809, 'no_lang_code', 'name', 'Vere Software (United States)'),
(86557, 71810, 'en', 'name', 'Rhondda Cynon Taff Library Service'),
(86558, 71811, 'en', 'name', 'Federation of Small Businesses'),
(86559, 71812, 'fr', 'name', 'Binche MusƩe International du Carnaval et du Masque'),
(86560, 71813, 'en', 'name', 'Forest Trends'),
(86561, 71814, 'en', 'name', 'America''s Voice'),
(86562, 71815, 'no_lang_code', 'name', 'DZYNE Technologies (United States)'),
(86563, 71816, 'ja', 'name', 'ē„žęˆøę–°čž'),
(86564, 71816, 'no_lang_code', 'name', 'Kobe Shimbun (Japan)'),
(86565, 71817, 'no_lang_code', 'name', 'Atvos (Brazil)'),
(86566, 71818, 'en', 'name', 'Glossop Heritage Trust'),
(86567, 71819, 'en', 'name', 'International Energy Research Centre'),
(86568, 71820, 'no_lang_code', 'name', 'Advanced Energy Dynamics (United States)'),
(86569, 71821, 'en', 'name', 'Public Religion Research Institute'),
(86570, 71822, 'no_lang_code', 'name', 'AgileDelta (United States)'),
(86571, 71823, 'en', 'name', 'Wessex Chalk Stream and Rivers Trust'),
(86572, 71824, 'no_lang_code', 'name', 'Iguacu'),
(86573, 71825, 'en', 'name', 'South Yorkshire Fire and Rescue'),
(86574, 71826, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“šą“°ą“æą“¤ąµą“° ą“®ąµą“Æąµ‚ą“øą“æą“Æą“‚'),
(86575, 71826, 'no_lang_code', 'name', 'Kerala Museum'),
(86576, 71827, 'no_lang_code', 'name', 'Child Watabaran Center'),
(86577, 71828, 'en', 'name', 'Saudi Heritage Preservation Society'),
(86578, 71829, 'en', 'name', 'Chilled Food Association'),
(86579, 71830, 'de', 'name', 'Maschinenbauschule Ansbach'),
(86580, 71831, 'no_lang_code', 'name', 'Kinetic Art & Technology (United States)'),
(86581, 71832, 'no_lang_code', 'name', 'HS Owen (United States)'),
(86582, 71833, 'no_lang_code', 'name', 'Micro-Precision Technologies (United States)'),
(86583, 71834, 'sv', 'name', 'Konsthantverkscentrum'),
(86584, 71835, 'it', 'name', 'Istituto di Metodologie Chimiche'),
(86585, 71836, 'en', 'name', 'Helen Storey Foundation'),
(86586, 71837, 'en', 'name', 'Minshar School of Art'),
(86587, 71837, 'he', 'name', '×ž× ×©×Ø ×œ××ž× ×•×Ŗ'),
(86588, 71838, 'no_lang_code', 'name', 'Balcones Technologies (United States)'),
(86589, 71839, 'es', 'name', 'Centro de Recursos Educativos Avanzados'),
(86590, 71840, 'no_lang_code', 'name', 'Esensors (United States)'),
(86591, 71841, 'no_lang_code', 'name', 'AsclepiX Therapeutics (United States)'),
(86592, 71842, 'en', 'name', 'Bellahouston Academy'),
(86593, 71843, 'no_lang_code', 'name', 'Goodmark Medical (United States)'),
(86594, 71844, 'en', 'name', 'Sir Arthur Lewis Community College'),
(86595, 71845, 'en', 'name', 'National Theatre Wales'),
(86596, 71846, 'en', 'name', 'New York Musical Festival'),
(86597, 71847, 'no_lang_code', 'name', 'AstraZeneca (Brazil)'),
(86598, 71848, 'es', 'name', 'Hospital Santiago Oriente - Dr. Luis Tisne Brousse'),
(86599, 71849, 'en', 'name', 'Uppsala Innovation Centre'),
(86600, 71850, 'en', 'name', 'Maharashtra Association of Anthropological Sciences'),
(86601, 71850, 'mr', 'name', 'ą¤®ą¤¾ą¤Øą¤µą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° ą¤…ą¤øą„‹ą¤øą¤æą¤ą¤¶ą¤Ø'),
(86602, 71851, 'no_lang_code', 'name', 'Poznańska Hodowla Roślin (Poland)'),
(86603, 71852, 'en', 'name', 'Eastbridge Hospital'),
(86604, 71853, 'en', 'name', 'MeetFactory'),
(86605, 71854, 'no_lang_code', 'name', 'MicroConnex (United States)'),
(86606, 71855, 'en', 'name', 'American Museum and Gardens'),
(86607, 71856, 'no_lang_code', 'name', 'CounterPath (United States)'),
(86608, 71857, 'no_lang_code', 'name', 'Intan Technologies (United States)'),
(86609, 71858, 'en', 'name', 'Florence English Language Theatre Artists'),
(86610, 71859, 'en', 'name', 'Viet Nam National Academy of Music'),
(86611, 71859, 'vi', 'name', 'Hį»c viện Ƃm nhįŗ”c Quốc gia Việt Nam'),
(86612, 71860, 'en', 'name', 'St Monica Trust'),
(86613, 71861, 'en', 'name', 'Fordingbridge Museum Trust'),
(86614, 71862, 'en', 'name', 'Safe Motherhood Ladies Association'),
(86615, 71863, 'no_lang_code', 'name', 'Flex Force Enterprises (United States)'),
(86616, 71864, 'no_lang_code', 'name', 'InnovaPrep (United States)'),
(86617, 71865, 'no_lang_code', 'name', 'Attainment (United States)'),
(86618, 71866, 'en', 'name', 'Citizen University'),
(86619, 71867, 'ar', 'name', 'الملتقى Ų§Ł„ŲŖŲ±ŲØŁˆŁŠ Ų§Ł„Ų¹Ų±ŲØŁŠ'),
(86620, 71867, 'en', 'name', 'Arab Education Forum'),
(86621, 71868, 'fi', 'name', 'Alma Media Oyj'),
(86622, 71868, 'no_lang_code', 'name', 'Alma Media (Finland)'),
(86623, 71869, 'en', 'name', 'Swedish Performing Arts Agency'),
(86624, 71869, 'sv', 'name', 'Statens musikverk'),
(86625, 71870, 'en', 'name', 'Northshore Education Consortium'),
(86626, 71871, 'es', 'name', 'Hospital Italiano La Plata'),
(86627, 71872, 'no_lang_code', 'name', 'Ligand Pharmaceuticals (United Kingdom)'),
(86628, 71873, 'es', 'name', 'Instituto Nacional de Patrimonio Cultural'),
(86629, 71874, 'en', 'name', 'Future Earth'),
(86630, 71875, 'no_lang_code', 'name', 'Machakos School'),
(86631, 71876, 'en', 'name', 'Liverpool College'),
(86632, 71877, 'no_lang_code', 'name', 'Grier Forensics (United States)'),
(86633, 71878, 'en', 'name', 'Roja Muthiah Research Library'),
(86634, 71879, 'no_lang_code', 'name', 'Magzor (United States)'),
(86635, 71880, 'en', 'name', 'Himalayan Environmental Studies and Conservation Organization'),
(86636, 71881, 'en', 'name', 'International New Town Institute'),
(86637, 71882, 'no_lang_code', 'name', 'Tecplot (United States)'),
(86638, 71883, 'ar', 'name', 'ؓبكة Ų§Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„ŲŖŲ±ŲØŁˆŁŠŲ©'),
(86639, 71883, 'en', 'name', 'Arab Educational Information Network'),
(86640, 71884, 'no_lang_code', 'name', 'Social Policy Research Associates (United States)'),
(86641, 71885, 'no_lang_code', 'name', 'Hdm Systems (United States)'),
(86642, 71886, 'no_lang_code', 'name', 'Biodesigns (United States)'),
(86643, 71887, 'en', 'name', 'The Poetry Society'),
(86644, 71888, 'en', 'name', 'Institute of Hydrogeology and Geoecology. Ahmedsafina'),
(86645, 71888, 'kk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гиГрогеологии Šø Š³ŠµŠ¾ŃŠŗŠ¾Š»Š¾Š³ŠøŠø им. АхмеГсафина'),
(86646, 71889, 'en', 'name', 'Echo Network Africa'),
(86647, 71890, 'no_lang_code', 'name', 'IR Dynamics (United States)'),
(86648, 71891, 'en', 'name', 'Woodbrooke'),
(86649, 71892, 'en', 'name', 'Ministry of Culture'),
(86650, 71893, 'no_lang_code', 'name', 'Nitroerg (Poland)'),
(86651, 71894, 'no_lang_code', 'name', 'Interphase Materials (United States)'),
(86652, 71895, 'en', 'name', 'Institute for Computational Linguistics ā€œA. Zampolliā€'),
(86653, 71895, 'it', 'name', 'Istituto di Linguistica Computazionale "A. Zampolli"'),
(86654, 71896, 'en', 'name', 'Shaw Trust'),
(86655, 71897, 'no_lang_code', 'name', 'Meloq (Sweden)'),
(86656, 71898, 'en', 'name', 'San Francisco Police Department'),
(86657, 71899, 'no_lang_code', 'name', 'EndoProtech (United States)'),
(86658, 71900, 'cs', 'name', 'Zelený kruh'),
(86659, 71900, 'en', 'name', 'Green Circle'),
(86660, 71901, 'no_lang_code', 'name', 'Chromafora (Sweden)'),
(86661, 71902, 'no_lang_code', 'name', 'Century (United States)'),
(86662, 71903, 'en', 'name', 'Wear Rivers Trust'),
(86663, 71904, 'en', 'name', 'Academy of Ancient Music'),
(86664, 71905, 'en', 'name', 'Hong Kong America Center'),
(86665, 71906, 'en', 'name', 'Climate Centre'),
(86666, 71907, 'en', 'name', 'Albury Wodonga Health'),
(86667, 71908, 'en', 'name', 'Lourdes Health System'),
(86668, 71909, 'en', 'name', 'Michigan United'),
(86669, 71910, 'fr', 'name', 'Conservatoire des Arts et MƩtiers MultimƩdia'),
(86670, 71911, 'en', 'name', 'Ilfracombe Museum'),
(86671, 71912, 'no_lang_code', 'name', 'Maskpol (Poland)'),
(86672, 71913, 'en', 'name', 'Baria Vungtau University'),
(86673, 71913, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c BĆ  Rịa - VÅ©ng TĆ u'),
(86674, 71914, 'en', 'name', 'West of England Academic Health Science Network'),
(86675, 71915, 'en', 'name', 'Enlightened Myanmar Research Foundation'),
(86676, 71916, 'en', 'name', 'Academy of Policy and Development'),
(86677, 71917, 'en', 'name', 'International Development Research Centre'),
(86678, 71917, 'fr', 'name', 'Centre de Recherches pour le DƩveloppement International'),
(86679, 71918, 'en', 'name', 'United Philanthropy Forum'),
(86680, 71919, 'en', 'name', 'Sydney Jewish Museum'),
(86681, 71920, 'no_lang_code', 'name', 'Amastan Technologies (United States)'),
(86682, 71921, 'en', 'name', 'Childhood Bereavement Network'),
(86683, 71922, 'en', 'name', 'Association for Democratic Reforms'),
(86684, 71923, 'cy', 'name', 'Cyngor Sir Fynwy'),
(86685, 71923, 'en', 'name', 'Monmouthshire County Council'),
(86686, 71924, 'no_lang_code', 'name', 'Amjet Turbine System (United States)'),
(86687, 71925, 'no_lang_code', 'name', 'Fischer Imaging (United States)'),
(86688, 71926, 'no_lang_code', 'name', 'Wyld (United Kingdom)'),
(86689, 71927, 'en', 'name', 'Association for India’s Development'),
(86690, 71928, 'en', 'name', 'Foundation for International Cooperation In Higher Education of Taiwan'),
(86691, 71928, 'zh', 'name', 'č²”åœ˜ę³•äŗŗé«˜ē­‰ę•™č‚²åœ‹éš›åˆä½œåŸŗé‡‘ęœƒ'),
(86692, 71929, 'no_lang_code', 'name', 'PBG (Poland)'),
(86693, 71930, 'en', 'name', 'Biomedical Research Institute of Southern California'),
(86694, 71931, 'en', 'name', 'Regional Education Centre for the area of primary care'),
(86695, 71932, 'pt', 'name', 'Conservatório Pernambucano de Música'),
(86696, 71933, 'en', 'name', 'American Indian Development Associates'),
(86697, 71934, 'en', 'name', 'Taiwan Design Center'),
(86698, 71934, 'zh', 'name', 'å°ē£å‰µę„čØ­čØˆäø­åæƒ'),
(86699, 71935, 'no_lang_code', 'name', 'Kosovo Telecom (Kosovo)'),
(86700, 71935, 'sq', 'name', 'Telekomi i Kosovƫs'),
(86701, 71935, 'sr', 'name', 'Телеком Косова'),
(86702, 71936, 'en', 'name', 'Contemporary Art Society'),
(86703, 71937, 'en', 'name', 'Useful Simple Trust'),
(86704, 71938, 'da', 'name', 'Dansk Filosofisk Selskab'),
(86705, 71939, 'en', 'name', 'Anglo-Boer War Museum'),
(86706, 71940, 'no_lang_code', 'name', '358 (Finland)'),
(86707, 71941, 'no_lang_code', 'name', 'Maroon Biotech (United States)'),
(86708, 71942, 'no_lang_code', 'name', 'Ampersand (Sweden)'),
(86709, 71943, 'no_lang_code', 'name', 'BGI (United States)'),
(86710, 71944, 'no_lang_code', 'name', 'Adroit Science (Sweden)'),
(86711, 71945, 'en', 'name', 'More Associates'),
(86712, 71946, 'es', 'name', 'Centro de Implementación de Políticas Públicas para la Equidad y el Crecimiento'),
(86713, 71947, 'no_lang_code', 'name', 'Melink (United States)'),
(86714, 71948, 'en', 'name', 'Orkney Library and Archive'),
(86715, 71949, 'no_lang_code', 'name', 'Crecare (United States)'),
(86716, 71950, 'en', 'name', 'Tiree Community Development Trust'),
(86717, 71951, 'no_lang_code', 'name', 'AlzeCure Pharma (Sweden)'),
(86718, 71952, 'sv', 'name', 'Medeon'),
(86719, 71953, 'en', 'name', 'British Egg Industry Council'),
(86720, 71954, 'en', 'name', 'Cool Farm Alliance'),
(86721, 71955, 'es', 'name', 'Hospital de Referencia La Equina'),
(86722, 71956, 'en', 'name', 'Centre for Contemporary Arts'),
(86723, 71957, 'en', 'name', 'Centre for Rural Studies and Development'),
(86724, 71958, 'de', 'name', 'Agaplesion Frankfurter Diakonie Kliniken'),
(86725, 71959, 'no_lang_code', 'name', 'Termetal (Poland)'),
(86726, 71960, 'en', 'name', 'National Historical Museums'),
(86727, 71960, 'sv', 'name', 'Statens Historiska Museer'),
(86728, 71961, 'en', 'name', 'Southwestern Association for Indian Arts'),
(86729, 71962, 'en', 'name', 'Royal Education Council'),
(86730, 71963, 'en', 'name', 'Defence Electronics History Society'),
(86731, 71964, 'no_lang_code', 'name', 'Microwave Applications Group (United States)'),
(86732, 71965, 'fr', 'name', 'MusĆ©e du Quai Branly – Jacques Chirac'),
(86733, 71966, 'en', 'name', 'Pen International'),
(86734, 71967, 'no_lang_code', 'name', 'Solibro Research (Sweden)'),
(86735, 71968, 'es', 'name', 'Instituto para la Seguridad y Democracia'),
(86736, 71969, 'no_lang_code', 'name', 'Advaita (United States)'),
(86737, 71970, 'no_lang_code', 'name', 'All Street Research (United Kingdom)'),
(86738, 71971, 'en', 'name', 'Transport and Health Study Group'),
(86739, 71972, 'en', 'name', 'Mason Perkins Deafness Fund Onlus'),
(86740, 71973, 'en', 'name', 'Deepak Foundation'),
(86741, 71974, 'no_lang_code', 'name', 'FGH Biotech (United States)'),
(86742, 71975, 'en', 'name', 'Karnataka Health Promotion Trust'),
(86743, 71976, 'en', 'name', 'Bush Heritage Australia'),
(86744, 71977, 'no_lang_code', 'name', 'Comfort Talk (United States)'),
(86745, 71978, 'no_lang_code', 'name', 'Biomass and Fossil Fuel Research Alliance (United Kingdom)'),
(86746, 71979, 'en', 'name', 'Center for Large Landscape Conservation'),
(86747, 71980, 'no_lang_code', 'name', 'Moller International (United States)'),
(86748, 71981, 'no_lang_code', 'name', 'Dassault SystĆØmes (Japan)'),
(86749, 71982, 'en', 'name', 'Surfers Against Sewage'),
(86750, 71983, 'en', 'name', 'Tenet Healthcare'),
(86751, 71984, 'en', 'name', 'Luton Culture'),
(86752, 71985, 'en', 'name', 'Hft'),
(86753, 71986, 'no_lang_code', 'name', 'Scotia Gas Networks (United Kingdom)'),
(86754, 71987, 'pl', 'name', 'Słodownia Soufflet Polska'),
(86755, 71988, 'en', 'name', 'The Parks Agency'),
(86756, 71989, 'en', 'name', 'Road Haulage Association'),
(86757, 71990, 'en', 'name', 'Swedish Dementia Centre'),
(86758, 71990, 'sv', 'name', 'Svenskt Demenscentrum'),
(86759, 71991, 'no_lang_code', 'name', 'Antagen Pharmaceuticals (United States)'),
(86760, 71992, 'en', 'name', 'Auroville Foundation'),
(86761, 71993, 'no_lang_code', 'name', 'Inovatia Laboratories (United States)'),
(86762, 71994, 'en', 'name', 'State of Rhode Island General Assembly'),
(86763, 71995, 'no_lang_code', 'name', 'ScrewFast Foundations (United Kingdom)'),
(86764, 71996, 'en', 'name', 'International Ceramics Studio'),
(86765, 71996, 'hu', 'name', 'Nemzetközi KerÔmia Stúdió'),
(86766, 71997, 'no_lang_code', 'name', 'Mood Media (United States)'),
(86767, 71998, 'no_lang_code', 'name', 'Envention (United States)'),
(86768, 71999, 'no_lang_code', 'name', 'Spectronic (Sweden)'),
(86769, 72000, 'en', 'name', 'Salford Museum and Art Gallery'),
(86770, 72001, 'en', 'name', 'CSIRO Scientific Computing'),
(86771, 72002, 'no_lang_code', 'name', 'Exos (United States)'),
(86772, 72003, 'no_lang_code', 'name', 'Fuse (United States)'),
(86773, 72004, 'sv', 'name', 'Marin Biogas'),
(86774, 72005, 'es', 'name', 'Fundacion ArriarƔn'),
(86775, 72006, 'no_lang_code', 'name', 'Aereon (United States)'),
(86776, 72007, 'en', 'name', 'Norfolk Rivers Trust'),
(86777, 72008, 'en', 'name', 'iCivics'),
(86778, 72009, 'cs', 'name', 'EvropskĆ” asociace archeologÅÆ'),
(86779, 72009, 'en', 'name', 'European Association of Archaeologists'),
(86780, 72010, 'en', 'name', 'Ashwell Museum'),
(86781, 72011, 'en', 'name', 'Birmingham Museums Trust'),
(86782, 72012, 'en', 'name', 'National Library of Kosovo'),
(86783, 72012, 'sq', 'name', 'Biblioteka Kombƫtare e Kosovƫs'),
(86784, 72012, 'sr', 'name', 'ŠŠ°Ń€Š¾Š“Š½Š° библиотека Косова'),
(86785, 72013, 'en', 'name', 'Whitecliffe College of Arts and Design'),
(86786, 72014, 'no_lang_code', 'name', 'ID Genomics (United States)'),
(86787, 72015, 'no_lang_code', 'name', 'EnginZyme (Sweden)'),
(86788, 72016, 'no_lang_code', 'name', 'Peak Associates (United Kingdom)'),
(86789, 72017, 'hi', 'name', 'Bhasha'),
(86790, 72018, 'cy', 'name', 'Chwaraeon Cymru'),
(86791, 72018, 'en', 'name', 'Sport Wales'),
(86792, 72019, 'en', 'name', 'Rail Research UK Association'),
(86793, 72020, 'en', 'name', 'Gunnersbury'),
(86794, 72021, 'no_lang_code', 'name', 'DATA4 (France)'),
(86795, 72022, 'en', 'name', 'National Academy of Public Administration'),
(86796, 72022, 'vi', 'name', 'Hį»c viện HĆ nh chĆ­nh Quốc gia'),
(86797, 72023, 'en', 'name', 'Institute for Science and International Security'),
(86798, 72024, 'no_lang_code', 'name', 'Les Kurbas Center'),
(86799, 72024, 'uk', 'name', 'Š¦Š•ŠŠ¢Š  ЛЕДЯ ŠšŠ£Š Š‘ŠŠ”Š'),
(86800, 72025, 'cs', 'name', 'Nemocnice KutnĆ” Hora'),
(86801, 72026, 'en', 'name', 'Studio in a School'),
(86802, 72027, 'en', 'name', 'The Ark'),
(86803, 72028, 'sv', 'name', 'Svenska NationalkommittƩn fƶr kemi'),
(86804, 72029, 'en', 'name', 'Halsway Manor National Centre for Folk Arts'),
(86805, 72030, 'no_lang_code', 'name', 'Maxon Motor (Switzerland)'),
(86806, 72031, 'no_lang_code', 'name', 'Cellf BIO (United States)'),
(86807, 72032, 'es', 'name', 'Pronatura Noroeste'),
(86808, 72033, 'no_lang_code', 'name', 'Primetals Technologies (United Kingdom)'),
(86809, 72034, 'no_lang_code', 'name', 'First Wave Technologies (United States)'),
(86810, 72035, 'en', 'name', 'Cooper''s Ferry Partnership'),
(86811, 72036, 'es', 'name', 'Instituto de QuĆ­mica del Noroeste Argentino'),
(86812, 72037, 'en', 'name', 'Alabama Department of Forensic Sciences'),
(86813, 72038, 'no_lang_code', 'name', 'Kupiec (Poland)'),
(86814, 72039, 'en', 'name', 'The Western Front Association'),
(86815, 72040, 'en', 'name', 'Rural Development Foundation of Pakistan'),
(86816, 72041, 'es', 'name', 'Escuela Superior de Artes de YucatƔn'),
(86817, 72042, 'no_lang_code', 'name', 'Curoverse (United States)'),
(86818, 72043, 'en', 'name', 'Associates Research'),
(86819, 72044, 'no_lang_code', 'name', 'Albion (United States)'),
(86820, 72045, 'en', 'name', 'Stornoway Historical Society'),
(86821, 72046, 'no_lang_code', 'name', 'Mitek Analytics (United States)'),
(86822, 72047, 'en', 'name', 'Grace Eyre'),
(86823, 72048, 'fr', 'name', 'AcadƩmie de Versailles'),
(86824, 72049, 'en', 'name', 'Community Catalyst'),
(86825, 72050, 'en', 'name', 'United Way of Greater Houston'),
(86826, 72051, 'en', 'name', 'TechSoup'),
(86827, 72052, 'no_lang_code', 'name', 'CRE Consulting (Poland)'),
(86828, 72053, 'no_lang_code', 'name', 'Block Engineering (United States)'),
(86829, 72054, 'no_lang_code', 'name', 'Allvivo Vascular (United States)'),
(86830, 72055, 'no_lang_code', 'name', 'SDL (United States)'),
(86831, 72056, 'no_lang_code', 'name', 'BitPlus (United States)'),
(86832, 72057, 'en', 'name', 'Centre for Regeneration Excellence Wales'),
(86833, 72058, 'no_lang_code', 'name', 'Tekceleo (France)'),
(86834, 72059, 'en', 'name', 'Association for Decentralised Energy'),
(86835, 72060, 'en', 'name', 'Mourne Heritage Trust'),
(86836, 72061, 'en', 'name', 'Brick Development Association'),
(86837, 72062, 'en', 'name', 'NIHR MindTech MedTech Co-operative'),
(86838, 72063, 'en', 'name', 'Bennetts Associates'),
(86839, 72064, 'en', 'name', 'Russian State Archive of Literature and Arts'),
(86840, 72064, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ архив Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²Š°'),
(86841, 72065, 'no_lang_code', 'name', 'Nanoshell Company (United States)'),
(86842, 72066, 'en', 'name', 'Noida Deaf Society'),
(86843, 72067, 'no_lang_code', 'name', 'Adeptrix (United States)'),
(86844, 72068, 'en', 'name', 'Institute of Chemistry named after V.I. Nikitin'),
(86845, 72068, 'ru', 'name', 'Institut Khimii Imeni V.i.nikitina Akademii Nauk Respubliki Tajikistan'),
(86846, 72068, 'tg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Šø кимиёи ба номи Š’.И.ŠŠøŠŗŠøŃ‚ŠøŠ½Šø ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŠø илмҳои Ņ¶ŃƒŠ¼Ņ³ŃƒŃ€ŠøŠø Тоҷикистон'),
(86847, 72069, 'en', 'name', 'Section 27'),
(86848, 72070, 'no_lang_code', 'name', 'Vultus (Sweden)'),
(86849, 72071, 'en', 'name', 'American Mandarin Society'),
(86850, 72072, 'no_lang_code', 'name', 'Tecna (Poland)'),
(86851, 72073, 'en', 'name', 'The Incorporated Council of Law Reporting for England & Wales'),
(86852, 72074, 'en', 'name', 'Toi Whakaari: NZ Drama School'),
(86853, 72075, 'en', 'name', 'Municipal Association of Victoria'),
(86854, 72076, 'en', 'name', 'Institute of Healthcare Engineering and Estate Management'),
(86855, 72077, 'no_lang_code', 'name', 'ACF-Metals (United States)'),
(86856, 72078, 'en', 'name', 'CASA'),
(86857, 72078, 'fr', 'name', 'CASA de Maryland'),
(86858, 72079, 'en', 'name', 'African Centre for Global Health and Social Transformation'),
(86859, 72080, 'en', 'name', 'Embassy of Italy in Tel Aviv'),
(86860, 72080, 'he', 'name', 'Ambasciata d''Italia'),
(86861, 72081, 'en', 'name', 'Budapest Centre for Mass Atrocities Prevention'),
(86862, 72082, 'no_lang_code', 'name', 'AeroStream Communications (United States)'),
(86863, 72083, 'en', 'name', 'FreeBSD Foundation'),
(86864, 72084, 'pt', 'name', 'Instituto Nupef'),
(86865, 72085, 'en', 'name', 'Royal College of Speech and Language Therapists'),
(86866, 72086, 'en', 'name', 'Innovative Housing Institute'),
(86867, 72087, 'en', 'name', 'Dearne Valley College'),
(86868, 72088, 'no_lang_code', 'name', 'Concepts to Systems (United States)'),
(86869, 72089, 'en', 'name', 'Documentation Center of Cambodia'),
(86870, 72090, 'no_lang_code', 'name', 'Lifespan Associates (United States)'),
(86871, 72091, 'en', 'name', 'H-Net: Humanities & Social Sciences Online'),
(86872, 72092, 'no_lang_code', 'name', 'Drive DeVilbiss Healthcare (United Kingdom)'),
(86873, 72093, 'en', 'name', 'Bath Social and Development Research'),
(86874, 72094, 'no_lang_code', 'name', 'Pottstown Medical Specialists (United States)'),
(86875, 72095, 'en', 'name', 'Royal Museum of Mariemont'),
(86876, 72095, 'fr', 'name', 'MusƩe royal de Mariemont'),
(86877, 72096, 'no_lang_code', 'name', 'Harp Engineering (United States)'),
(86878, 72097, 'en', 'name', 'St Johns Theatre'),
(86879, 72098, 'en', 'name', 'The Center for Public Integrity'),
(86880, 72099, 'no_lang_code', 'name', 'Againity (Sweden)'),
(86881, 72100, 'no_lang_code', 'name', 'CoolCad Electronics (United States)'),
(86882, 72101, 'en', 'name', 'Kent Archaeological Society'),
(86883, 72102, 'no_lang_code', 'name', 'Natura (Brazil)'),
(86884, 72103, 'it', 'name', 'Istituto di Studi sul Mediterraneo Antico'),
(86885, 72104, 'no_lang_code', 'name', 'Insect Research Systems (United Kingdom)'),
(86886, 72105, 'no_lang_code', 'name', 'Juteborg (Sweden)'),
(86887, 72106, 'id', 'name', 'Asosiasi Perempuan Indonesia untuk Keadilan'),
(86888, 72107, 'en', 'name', 'Prague Film School'),
(86889, 72108, 'en', 'name', 'National Museum of Archaeology'),
(86890, 72108, 'es', 'name', 'Museo Nacional de ArqueologĆ­a de Bolivia'),
(86891, 72109, 'en', 'name', 'Nationwide Building Society'),
(86892, 72110, 'no_lang_code', 'name', 'Investigators Research Group (United States)'),
(86893, 72111, 'en', 'name', 'Supreme Arbitration Court of the Russian Federation'),
(86894, 72111, 'ru', 'name', 'Š’Ń‹ŃŃˆŠøŠ¹ Арбитражный суГ Российской ФеГерации'),
(86895, 72112, 'en', 'name', 'Pentucket Medical'),
(86896, 72113, 'hi', 'name', 'भगत ą¤«ą„‚ą¤² सिंह महिला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(86897, 72113, 'no_lang_code', 'name', 'Bhagat Phool Singh Mahila Vishwavidyalaya'),
(86898, 72114, 'en', 'name', 'Scottish Civic Trust'),
(86899, 72115, 'en', 'name', 'Saras Environment Consultant'),
(86900, 72116, 'en', 'name', 'Irish Cultural Centre'),
(86901, 72117, 'en', 'name', 'Observational & Pragmatic Research Institute'),
(86902, 72118, 'no_lang_code', 'name', 'Analytic Measures (United States)'),
(86903, 72119, 'en', 'name', 'Runway of Dreams Foundation'),
(86904, 72120, 'en', 'name', 'L. A. Orbeli Institute of Physiology NAS RA'),
(86905, 72120, 'hy', 'name', 'ՀՀ Ō³Ō±Ō± Ō±ÕÆÕ”Õ¤. Ō¼. Ō±. Õ•Ö€Õ¢Õ„Õ¬ÕøÖ‚ Õ”Õ¶Õ¾Õ”Õ¶ Õ–Õ«Õ¦Õ«ÕøÕ¬ÕøÕ£Õ«Õ”ÕµÕ« Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(86906, 72121, 'en', 'name', 'Capital Cardiology Associates'),
(86907, 72122, 'en', 'name', 'Surrey Police'),
(86908, 72123, 'no_lang_code', 'name', 'Function Promoting Therapies (United States)'),
(86909, 72124, 'en', 'name', 'Institute for Development and Economic Analysis'),
(86910, 72124, 'id', 'name', 'Perhimpunan IDEA'),
(86911, 72125, 'en', 'name', 'Kings Foundation'),
(86912, 72126, 'en', 'name', 'Cadence Performance'),
(86913, 72127, 'en', 'name', 'National library of Uzbekistan'),
(86914, 72127, 'uz', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š° библиотека Узбекистана'),
(86915, 72128, 'en', 'name', 'Taiwan Miaoli District Court'),
(86916, 72128, 'zh', 'name', 'č‡ŗē£č‹—ę —åœ°ę–¹ę³•é™¢'),
(86917, 72129, 'no_lang_code', 'name', 'Codar Ocean Sensors (United States)'),
(86918, 72130, 'no_lang_code', 'name', 'Chadwick Optical (United States)'),
(86919, 72131, 'no_lang_code', 'name', 'Airflow Sciences (United States)'),
(86920, 72132, 'en', 'name', 'Indian Institute of Journalism and New Media'),
(86921, 72133, 'no_lang_code', 'name', 'Advanced Life Technologies (United States)'),
(86922, 72134, 'de', 'name', 'Institut für Nichtklassische Chemie'),
(86923, 72135, 'no_lang_code', 'name', 'AuSIM (United States)'),
(86924, 72136, 'en', 'name', 'Kyiv Institute of Music. R. Glier'),
(86925, 72136, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ музики ім. Š .М.Глієра'),
(86926, 72137, 'en', 'name', 'Silesian Institute in Opole'),
(86927, 72137, 'pl', 'name', 'Instytut Śląski w Opolu'),
(86928, 72138, 'no_lang_code', 'name', 'Panasonic (Poland)'),
(86929, 72139, 'en', 'name', 'Catalyst Science Discovery Centre'),
(86930, 72140, 'en', 'name', 'World Sugar Research Organisation'),
(86931, 72141, 'en', 'name', 'International Academy of Environmental Sciences'),
(86932, 72141, 'it', 'name', 'Accademia internazionale di Scienze Ambientali'),
(86933, 72142, 'no_lang_code', 'name', 'Tropical Marine Centre (United Kingdom)'),
(86934, 72143, 'ar', 'name', 'ؓبكة المنظمات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© غير Ų§Ł„Ų­ŁƒŁˆŁ…ŁŠŲ© Ł„Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(86935, 72143, 'en', 'name', 'Arab NGO Network for Development'),
(86936, 72144, 'en', 'name', 'Charles Rennie Mackintosh Society'),
(86937, 72145, 'no_lang_code', 'name', 'Lindo Catsystem (Poland)'),
(86938, 72146, 'no_lang_code', 'name', 'Unchained Labs (United States)'),
(86939, 72147, 'en', 'name', 'Mahatma Gandhi Institute'),
(86940, 72148, 'no_lang_code', 'name', 'Office of the Ombudsman for Bermuda'),
(86941, 72149, 'en', 'name', 'Samuel Johnson Birthplace Museum'),
(86942, 72150, 'en', 'name', 'Committee to Protect Journalists'),
(86943, 72151, 'en', 'name', 'Center for Rural Strategies'),
(86944, 72152, 'pt', 'name', 'Comissão Pastoral da Terra'),
(86945, 72153, 'es', 'name', 'ACICAFOC'),
(86946, 72154, 'en', 'name', 'Alfred Gillett Trust'),
(86947, 72155, 'no_lang_code', 'name', 'Waelzholz (Brasil)'),
(86948, 72155, 'pt', 'name', 'Waelzholz Brasmetal Laminação'),
(86949, 72156, 'no_lang_code', 'name', 'Spitfire Spark Change (United States)'),
(86950, 72157, 'en', 'name', 'Great Lakes Institute for Strategic Studies'),
(86951, 72158, 'en', 'name', 'Centre for the Study of Labour and Mobility'),
(86952, 72159, 'it', 'name', 'Ospedale Veris Delli Ponti Scorrano'),
(86953, 72160, 'en', 'name', 'Holocaust Educational Trust'),
(86954, 72161, 'en', 'name', 'Moray Art Centre'),
(86955, 72162, 'en', 'name', 'Perth & Kinross Association of Voluntary Service'),
(86956, 72163, 'no_lang_code', 'name', 'Accumed Systems (United States)'),
(86957, 72164, 'en', 'name', 'The Society of Portrait Sculptors'),
(86958, 72165, 'no_lang_code', 'name', 'Forum 2000'),
(86959, 72166, 'no_lang_code', 'name', 'DRG Undersea Consulting (United States)'),
(86960, 72167, 'no_lang_code', 'name', 'Fluoresprobe Sciences (United States)'),
(86961, 72168, 'en', 'name', 'Vietnam National University of Forestry'),
(86962, 72169, 'en', 'name', 'National Health Insurance Fund'),
(86963, 72170, 'en', 'name', 'Women''s Rights International'),
(86964, 72171, 'en', 'name', 'Maidstone Museum'),
(86965, 72172, 'en', 'name', 'Margarita Rudomino All-Russia State Library for Foreign Literature'),
(86966, 72172, 'ru', 'name', 'Библиотека иностранной Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹'),
(86967, 72173, 'en', 'name', 'National Centre for Product Design and Development Research'),
(86968, 72174, 'en', 'name', 'Southern Environmental Law Center'),
(86969, 72175, 'no_lang_code', 'name', 'Cortus Energy (Sweden)'),
(86970, 72176, 'no_lang_code', 'name', 'Minerva Laboratories (United Kingdom)'),
(86971, 72177, 'en', 'name', 'Good Jobs First'),
(86972, 72178, 'en', 'name', 'Ukrainian National Museum'),
(86973, 72179, 'en', 'name', 'Novita'),
(86974, 72180, 'en', 'name', 'Campaign to End Loneliness'),
(86975, 72181, 'no_lang_code', 'name', 'Sunwave Solutions (China)'),
(86976, 72182, 'en', 'name', 'Conservation through Poverty Alleviation International'),
(86977, 72183, 'en', 'name', 'Rama Hospital & Research Centre'),
(86978, 72184, 'es', 'name', 'Benemerito Hospital General con Especialidades "Juan Maria de Salvatierra"'),
(86979, 72185, 'en', 'name', 'Bee Farmers Association'),
(86980, 72186, 'fi', 'name', 'Demos Helsinki'),
(86981, 72187, 'kk', 'name', 'ŅšŠ°Š·ŠœŅ±Š½Š°Š¹Š“Š°Š·'),
(86982, 72187, 'no_lang_code', 'name', 'KazMunayGas (Kazakhstan)'),
(86983, 72188, 'pt', 'name', 'Hospital Napoleão Laureano'),
(86984, 72189, 'no_lang_code', 'name', 'Zakłady Magnezytowe (Poland)'),
(86985, 72190, 'en', 'name', 'Institute of Law Studies'),
(86986, 72190, 'pl', 'name', 'Instytut Nauk Prawnych'),
(86987, 72191, 'en', 'name', 'Housing Studies Association'),
(86988, 72192, 'no_lang_code', 'name', 'Aurelia Bioscience (United Kingdom)'),
(86989, 72193, 'en', 'name', 'Milnbank Housing Association'),
(86990, 72194, 'en', 'name', 'Connecticut Statistical Analysis Center'),
(86991, 72195, 'en', 'name', 'National Center for Tuberculosis and Lung Disease'),
(86992, 72196, 'no_lang_code', 'name', 'Design Intelligence (United States)'),
(86993, 72197, 'no_lang_code', 'name', 'Advanced Media Research (United States)'),
(86994, 72198, 'no_lang_code', 'name', 'Vacuumschmelze (Germany)'),
(86995, 72199, 'no_lang_code', 'name', 'Western Energy Support & Technology (United States)'),
(86996, 72200, 'en', 'name', 'National Slate Museum'),
(86997, 72201, 'no_lang_code', 'name', 'Velez College'),
(86998, 72202, 'it', 'name', 'Ospedale Ferdinando Veneziale di Isernia'),
(86999, 72203, 'no_lang_code', 'name', 'Innovia Medical (United Kingdom)'),
(87000, 72204, 'no_lang_code', 'name', 'Taiwan Futures Exchange (Taiwan)'),
(87001, 72204, 'zh', 'name', 'č‡ŗē£ęœŸč²Øäŗ¤ę˜“ę‰€'),
(87002, 72205, 'de', 'name', 'Gesellschaft zur Fƶrderung von Medizin-, Bio- und Umwelttechnologien'),
(87003, 72206, 'en', 'name', 'Isles of Scilly Museum'),
(87004, 72207, 'no_lang_code', 'name', 'Creative MicroSystems (United States)'),
(87005, 72208, 'en', 'name', 'San Francisco County Transportation Authority'),
(87006, 72209, 'no_lang_code', 'name', 'Value Chain Lab (United Kingdom)'),
(87007, 72210, 'no_lang_code', 'name', 'Fallbrook Engineering (United States)'),
(87008, 72211, 'no_lang_code', 'name', 'Aldatu Biosciences (United States)'),
(87009, 72212, 'no_lang_code', 'name', 'N&N Pharmaceuticals (United States)'),
(87010, 72213, 'no_lang_code', 'name', 'Mahle (Brazil)'),
(87011, 72214, 'no_lang_code', 'name', 'Reed Medical (United Kingdom)'),
(87012, 72215, 'en', 'name', 'British Bobsleigh and Skeleton Association'),
(87013, 72216, 'no_lang_code', 'name', 'Cythelia (France)'),
(87014, 72217, 'en', 'name', 'National Education Union'),
(87015, 72218, 'en', 'name', 'South West Yorkshire Partnership NHS Foundation Trust'),
(87016, 72219, 'da', 'name', 'Kroppedal Museum'),
(87017, 72220, 'en', 'name', 'Center for Family Policy and Practice'),
(87018, 72221, 'en', 'name', 'Dag Hammarskjƶld Foundation'),
(87019, 72222, 'it', 'name', 'Humanitas Castelli'),
(87020, 72223, 'en', 'name', 'Myanmar Institute of Theology'),
(87021, 72224, 'en', 'name', 'National White Collar Crime Center'),
(87022, 72225, 'no_lang_code', 'name', 'Hanby Environmental (United States)'),
(87023, 72226, 'en', 'name', 'Beijing Administration Institute'),
(87024, 72226, 'zh', 'name', 'åŒ—äŗ¬č”Œę”æå­¦é™¢'),
(87025, 72227, 'ga', 'name', 'Glór'),
(87026, 72228, 'en', 'name', 'Homeland Security and Emergency Management'),
(87027, 72229, 'en', 'name', 'Sussex Police'),
(87028, 72230, 'no_lang_code', 'name', 'Arctic Business Incubator (Sweden)'),
(87029, 72231, 'en', 'name', 'Fund for Constitutional Government'),
(87030, 72232, 'no_lang_code', 'name', 'AxoSim (United States)'),
(87031, 72233, 'en', 'name', 'The Alexander Centre'),
(87032, 72234, 'en', 'name', 'Rockwood Leadership Institute'),
(87033, 72235, 'no_lang_code', 'name', 'Liberty Ammunition (United States)'),
(87034, 72236, 'en', 'name', 'Institute for Education in International Media'),
(87035, 72237, 'cs', 'name', 'RegionÔlní Centrum Pokrocilych Technologií a MateriÔlů'),
(87036, 72237, 'en', 'name', 'Regional Centre of Advanced Technologies and Materials'),
(87037, 72238, 'en', 'name', 'Race Equality Foundation'),
(87038, 72239, 'de', 'name', 'Deutschen Zentrums für Kinder- und Jugendrheumatologie'),
(87039, 72239, 'en', 'name', 'German Center for Pediatric and Adolescent Rheumatology'),
(87040, 72240, 'en', 'name', 'Food and Finance High School'),
(87041, 72241, 'en', 'name', 'Better Life Association for Comprehensive Development'),
(87042, 72242, 'no_lang_code', 'name', 'Airborne Innovations (United States)'),
(87043, 72243, 'en', 'name', 'Ministry of Scientific Research and Innovation'),
(87044, 72243, 'fr', 'name', 'MinistĆØre de la Recherche Scientifique et de l''Innovation'),
(87045, 72244, 'en', 'name', 'Holocaust Survivors Friendship Association'),
(87046, 72245, 'en', 'name', 'R&G Associates'),
(87047, 72246, 'en', 'name', 'The Constitution Society'),
(87048, 72247, 'en', 'name', 'Diplomatic Academy of Vietnam'),
(87049, 72247, 'vi', 'name', 'Hį»c viện Ngoįŗ”i giao Việt Nam'),
(87050, 72248, 'no_lang_code', 'name', 'Creative Aero Engineering Solutions (United States)'),
(87051, 72249, 'no_lang_code', 'name', 'Argil (United States)'),
(87052, 72250, 'no_lang_code', 'name', 'Miltran (United States)'),
(87053, 72251, 'en', 'name', 'International Aluminium Institute'),
(87054, 72252, 'en', 'name', 'Men''s Health Forum'),
(87055, 72253, 'en', 'name', 'The UK Cards Association'),
(87056, 72254, 'no_lang_code', 'name', 'Pilloxa (Sweden)'),
(87057, 72255, 'en', 'name', 'Citizens’ Housing and Planning Association'),
(87058, 72256, 'no_lang_code', 'name', 'AAVogen (United States)'),
(87059, 72257, 'no_lang_code', 'name', 'Xi''an City Planning&Design Institute (China)'),
(87060, 72257, 'zh', 'name', 'č„æå®‰åø‚åŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(87061, 72258, 'no_lang_code', 'name', 'Bitlink (Australia)'),
(87062, 72259, 'en', 'name', 'Ekaterinburg Academy of Contemporary Art'),
(87063, 72259, 'ru', 'name', 'Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ современного ŠøŃŠŗŃƒŃŃŃ‚ва'),
(87064, 72260, 'en', 'name', 'Pham Van Dong University'),
(87065, 72260, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Phįŗ”m Văn Đồng'),
(87066, 72261, 'no_lang_code', 'name', 'Colorado Power Electronics (United States)'),
(87067, 72262, 'en', 'name', 'Gamaliel'),
(87068, 72263, 'en', 'name', 'Schieffelin Institute of Health Research and Leprosy Centre');
INSERT INTO `ror_settings` VALUES
(87069, 72264, 'no_lang_code', 'name', 'Eskra Technical Products (United States)'),
(87070, 72265, 'en', 'name', 'Copenhagen Consensus Center'),
(87071, 72266, 'en', 'name', 'Sheffield & Rotherham Wildlife Trust'),
(87072, 72267, 'en', 'name', 'Energy Programs Consortium'),
(87073, 72268, 'en', 'name', 'Naval Dockyards Society'),
(87074, 72269, 'en', 'name', 'BayMark Health Services'),
(87075, 72270, 'en', 'name', 'Centre for Conservation Biology & Sustainable Development'),
(87076, 72271, 'no_lang_code', 'name', 'Solkompaniet (Sweden)'),
(87077, 72272, 'en', 'name', 'The Sentencing Project'),
(87078, 72273, 'en', 'name', 'Action Center on Race and the Economy'),
(87079, 72274, 'fr', 'name', 'SƩcuritƩ des Aliments et Microbiologie'),
(87080, 72275, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²šą²æą²¤ą³ą²°ą²•ą²²ą²¾ ą²Ŗą²°ą²æą²·ą²¤ą³'),
(87081, 72275, 'no_lang_code', 'name', 'Karnataka Chitrakala Parishath'),
(87082, 72276, 'en', 'name', 'National Phenotypic Screening Centre'),
(87083, 72277, 'no_lang_code', 'name', 'MMR Technologies (United States)'),
(87084, 72278, 'no_lang_code', 'name', 'Shalom Hartman Institute'),
(87085, 72279, 'en', 'name', 'Deaf Studies Trust'),
(87086, 72280, 'no_lang_code', 'name', 'SenSanna (United States)'),
(87087, 72281, 'no_lang_code', 'name', 'VeterinƦrmedicinsk Industriforening'),
(87088, 72282, 'en', 'name', 'Association of Illustrators'),
(87089, 72283, 'no_lang_code', 'name', 'Ascilion (Sweden)'),
(87090, 72284, 'en', 'name', 'Chicago Arts Partnerships in Education'),
(87091, 72285, 'no_lang_code', 'name', 'GlyTech (United States)'),
(87092, 72286, 'en', 'name', 'Central Bank of Turkmenistan'),
(87093, 72286, 'tk', 'name', 'Türkmenistanyň Merkezi Banky'),
(87094, 72287, 'en', 'name', 'Asian Arts Agency'),
(87095, 72288, 'no_lang_code', 'name', 'Applied Engineering Management (United States)'),
(87096, 72289, 'en', 'name', 'Cromarty History Society'),
(87097, 72290, 'no_lang_code', 'name', 'Inhibrx (United States)'),
(87098, 72291, 'en', 'name', 'West Midlands Police'),
(87099, 72292, 'no_lang_code', 'name', 'Go Sheng'),
(87100, 72293, 'en', 'name', 'The Schumacher Institute'),
(87101, 72294, 'en', 'name', 'Parliamentary Office of Science and Technology'),
(87102, 72295, 'no_lang_code', 'name', 'Carrera Bioscience (United States)'),
(87103, 72296, 'en', 'name', 'Cumberland and Westmorland Antiquarian and Archaeological Society'),
(87104, 72297, 'ar', 'name', 'Ų§Ł„Ł…ŁˆŲ±ŲÆ Ų§Ł„Ų«Ł‚Ų§ŁŁŠ'),
(87105, 72297, 'en', 'name', 'Culture Resource'),
(87106, 72298, 'en', 'name', 'Institute of Literary Research'),
(87107, 72298, 'pl', 'name', 'Instytut Badań Literackich Polskiej Akademii Nauk'),
(87108, 72299, 'no_lang_code', 'name', 'OptiBiotix (United Kingdom)'),
(87109, 72300, 'en', 'name', 'South East Rivers Trust'),
(87110, 72301, 'no_lang_code', 'name', 'Corrdesa (United States)'),
(87111, 72302, 'en', 'name', 'The Institute of Concrete Technology'),
(87112, 72303, 'no_lang_code', 'name', 'Lipigon Pharmaceuticals (Sweden)'),
(87113, 72304, 'en', 'name', 'Hackney Museum'),
(87114, 72305, 'en', 'name', 'African Leadership Institute'),
(87115, 72306, 'en', 'name', 'National Hispanic Media Coalition'),
(87116, 72307, 'no_lang_code', 'name', 'Men-Tsee-Khang'),
(87117, 72308, 'no_lang_code', 'name', 'Enigio Time (Sweden)'),
(87118, 72309, 'en', 'name', 'Changes Community Health Project'),
(87119, 72310, 'no_lang_code', 'name', 'LiveSchool (United States)'),
(87120, 72311, 'no_lang_code', 'name', 'Endomimetics (United States)'),
(87121, 72312, 'en', 'name', 'Public Media Alliance'),
(87122, 72313, 'en', 'name', 'Isha Foundation'),
(87123, 72314, 'es', 'name', 'Projazz Instituto Profesional'),
(87124, 72315, 'en', 'name', 'Santa Fe Art Institute'),
(87125, 72316, 'en', 'name', 'Center for International Policy'),
(87126, 72317, 'no_lang_code', 'name', 'Arctan (United States)'),
(87127, 72318, 'en', 'name', 'The Churches Conservation Trust'),
(87128, 72319, 'en', 'name', 'In-Q-Tel'),
(87129, 72320, 'cs', 'name', 'ČeskĆ” společnost pro religionistiku'),
(87130, 72320, 'en', 'name', 'Czech Association for the Study of Religions'),
(87131, 72321, 'no_lang_code', 'name', 'Geospatial Research (United Kingdom)'),
(87132, 72322, 'en', 'name', 'Welsh Refugee Council'),
(87133, 72323, 'en', 'name', 'Crimea University of Culture Art and Tourism'),
(87134, 72324, 'en', 'name', 'Massachusetts Budget and Policy Center'),
(87135, 72325, 'no_lang_code', 'name', 'Artwork Conversion Software (United States)'),
(87136, 72326, 'no_lang_code', 'name', 'Chab Dai'),
(87137, 72327, 'en', 'name', 'Institute for Research on Engines'),
(87138, 72327, 'it', 'name', 'Istituto Motori'),
(87139, 72328, 'en', 'name', 'National Institute of Arts'),
(87140, 72328, 'fr', 'name', 'l''Institut National des Arts'),
(87141, 72329, 'en', 'name', 'Viet Nam University Of Traditional Medicine'),
(87142, 72329, 'vi', 'name', 'Hį»c viện Y Dược hį»c Cổ truyền Việt Nam'),
(87143, 72330, 'en', 'name', 'Center for Civic Policy'),
(87144, 72331, 'en', 'name', 'Association for Prevention and Control of Rabies in India'),
(87145, 72332, 'en', 'name', 'Association of Child Psychotherapists'),
(87146, 72333, 'en', 'name', 'International Renaissance Foundation'),
(87147, 72333, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ фонГ "Š’Ń–Š“Ń€Š¾Š“Š¶ŠµŠ½Š½Ń'),
(87148, 72334, 'cs', 'name', 'Å ance na vzdělĆ”nĆ­'),
(87149, 72334, 'en', 'name', 'Chance for Education'),
(87150, 72335, 'no_lang_code', 'name', 'Adams Business Associates (United Kingdom)'),
(87151, 72336, 'no_lang_code', 'name', 'Fortem Technologies (United States)'),
(87152, 72337, 'no_lang_code', 'name', 'Kibow Biotech (United States)'),
(87153, 72338, 'no_lang_code', 'name', 'Countervail Corporation (United States)'),
(87154, 72339, 'en', 'name', 'Berkhamsted and District Archaeological Society'),
(87155, 72340, 'no_lang_code', 'name', 'Glucan Biorenewables (United States)'),
(87156, 72341, 'ar', 'name', 'لمعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© في Ų§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ ŲØŲŖŁˆŁ†Ų³'),
(87157, 72341, 'fr', 'name', 'Institut SupĆ©rieur des Ɖtudes Technologiques en Communications de Tunis'),
(87158, 72342, 'en', 'name', 'Earthjustice'),
(87159, 72343, 'en', 'name', 'Magna'),
(87160, 72344, 'en', 'name', 'Green Innovation and Development Centre'),
(87161, 72344, 'vi', 'name', 'Trung tâm PhÔt triển SÔng tẔo Xanh'),
(87162, 72345, 'no_lang_code', 'name', 'Registry Trust (United Kingdom)'),
(87163, 72346, 'no_lang_code', 'name', 'AMPAC (United States)'),
(87164, 72347, 'en', 'name', 'Amnesty International Brazil'),
(87165, 72348, 'no_lang_code', 'name', 'Creavo (United Kingdom)'),
(87166, 72349, 'en', 'name', 'Northumbria Police'),
(87167, 72350, 'da', 'name', 'Dansk Byplanlaboratorium'),
(87168, 72350, 'en', 'name', 'The Danish Town Planning Institute'),
(87169, 72351, 'de', 'name', 'Die Paracelsus Heilpraktikerschulen'),
(87170, 72352, 'it', 'name', 'Opera del Vocabolario Italiano'),
(87171, 72353, 'en', 'name', 'Scarborough Museums Trust'),
(87172, 72354, 'en', 'name', 'Metta Development Foundation'),
(87173, 72355, 'es', 'name', 'Instituto de Investigaciones en Ciencias Agrarias de Rosario'),
(87174, 72356, 'en', 'name', 'GDP Ayurvedic University'),
(87175, 72357, 'fr', 'name', 'Kahuzi-BiƩga National Park'),
(87176, 72358, 'en', 'name', 'Health Services and Performance Research Laboratory'),
(87177, 72359, 'en', 'name', 'The Textile Institute'),
(87178, 72360, 'en', 'name', 'The Intercultural Communication Institute'),
(87179, 72361, 'en', 'name', 'Institute for Nonprofit News'),
(87180, 72362, 'pt', 'name', 'Faculdades Guarulhos, Faculdades Integradas de Ciências Humanas, Saúde e Educação de Guarulhos'),
(87181, 72363, 'en', 'name', 'Warwickshire Wildlife Trust'),
(87182, 72364, 'en', 'name', 'Association of Breastfeeding Mothers'),
(87183, 72365, 'de', 'name', 'St. Josef Krankenhaus'),
(87184, 72366, 'en', 'name', 'Hansard Society'),
(87185, 72367, 'en', 'name', 'Vine Trust'),
(87186, 72368, 'en', 'name', 'Pakistan Muslim Centre'),
(87187, 72369, 'en', 'name', 'Art UK'),
(87188, 72370, 'no_lang_code', 'name', 'Moxtek (United States)'),
(87189, 72371, 'en', 'name', 'Freight Transport Association'),
(87190, 72372, 'en', 'name', 'Lawyers and Advocates of Northwest and Human Rights Studies Social'),
(87191, 72372, 'es', 'name', 'Abogados y Abogadas del NOA en Derechos Humanos y Estudios Sociales'),
(87192, 72373, 'no_lang_code', 'name', 'Grinm Advanced Materials (China)'),
(87193, 72373, 'zh', 'name', 'ęœ‰ē ”ę–°ęę–™č‚”ä»½ęœ‰é™å…¬åø'),
(87194, 72374, 'en', 'name', 'Scottish Hydrogen and Fuel Cell Association'),
(87195, 72375, 'en', 'name', 'Local Government Association'),
(87196, 72376, 'no_lang_code', 'name', 'Elcon (United States)'),
(87197, 72377, 'en', 'name', 'Kazakh Research Institute of Plant Protection and Quarantine'),
(87198, 72377, 'ru', 'name', 'казахский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ защиты Šø карантина растений'),
(87199, 72378, 'no_lang_code', 'name', 'Ecofiltration (Sweden)'),
(87200, 72379, 'en', 'name', 'Condensed Matter Physics Research Center'),
(87201, 72380, 'de', 'name', 'Inn-Salzach-Klinikum'),
(87202, 72381, 'en', 'name', 'Division of Public Defender Services'),
(87203, 72382, 'en', 'name', 'The School of Visual Theatre'),
(87204, 72382, 'he', 'name', 'בית ההפר ×œ×Ŗ×™××˜×Ø×•×Ÿ חזותי'),
(87205, 72383, 'en', 'name', 'United States Court of Appeals for the Ninth Circuit'),
(87206, 72384, 'en', 'name', 'The Reed Institute'),
(87207, 72385, 'no_lang_code', 'name', 'Netzsch (United Kingdom)'),
(87208, 72386, 'en', 'name', 'National Energy Action'),
(87209, 72387, 'en', 'name', 'The Bronx Academy of Arts and Dance'),
(87210, 72388, 'en', 'name', 'Karakalpakstan State Museum of Art named after I.V. Savitsky'),
(87211, 72388, 'uz', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ музей ŠøŃŠŗŃƒŃŃŃ‚в имени И. Š’. Давицкого'),
(87212, 72389, 'en', 'name', 'Cognitive Engineering Research Institute'),
(87213, 72390, 'en', 'name', 'National Archives of Senegal'),
(87214, 72390, 'fr', 'name', 'Archives Nationales du SƩnƩgal'),
(87215, 72391, 'en', 'name', 'National Archaeological Museum'),
(87216, 72391, 'it', 'name', 'Museo Archeologico Nazionale di Napoli'),
(87217, 72392, 'en', 'name', 'Kaivalya Education Foundation'),
(87218, 72393, 'sv', 'name', 'Svebio, Svenska Bioenergifƶreningen'),
(87219, 72394, 'en', 'name', 'Places for People'),
(87220, 72395, 'no_lang_code', 'name', 'Sveriges Television (Sweden)'),
(87221, 72396, 'no_lang_code', 'name', 'Orsus Medical (United Kingdom)'),
(87222, 72397, 'sv', 'name', 'Stockholms Stadsmission'),
(87223, 72398, 'en', 'name', 'London Irish Centre'),
(87224, 72399, 'en', 'name', 'Social Science Research and Evaluation'),
(87225, 72400, 'no_lang_code', 'name', 'Digital Wave (United States)'),
(87226, 72401, 'en', 'name', 'Pastoral Women''s Council'),
(87227, 72402, 'no_lang_code', 'name', 'Metrum (Sweden)'),
(87228, 72403, 'en', 'name', 'Centre for Human Rights and Policy Studies'),
(87229, 72404, 'ar', 'name', 'وزارة الثقافة'),
(87230, 72404, 'en', 'name', 'Ministry of Culture'),
(87231, 72405, 'no_lang_code', 'name', 'Cassia (United States)'),
(87232, 72406, 'no_lang_code', 'name', 'Health Solutions (Sweden)'),
(87233, 72407, 'en', 'name', 'Yorkshire & Humber Academic Health Science Network'),
(87234, 72408, 'en', 'name', 'Gregson Arts & Community Centre'),
(87235, 72409, 'en', 'name', 'Aarno Labs'),
(87236, 72410, 'en', 'name', 'Uttarakhand Government'),
(87237, 72411, 'en', 'name', 'Association of Media Women in Kenya'),
(87238, 72412, 'en', 'name', 'Scottish Poetry Library'),
(87239, 72413, 'no_lang_code', 'name', 'Sphere Medical (United Kingdom)'),
(87240, 72414, 'no_lang_code', 'name', 'Litecom (United States)'),
(87241, 72415, 'en', 'name', 'The National Trust'),
(87242, 72416, 'no_lang_code', 'name', 'Innovative Materials Testing Technologies (United States)'),
(87243, 72417, 'fr', 'name', 'Association des Journalistes Lesbiennes'),
(87244, 72418, 'no_lang_code', 'name', 'MGT Capital Investments (United Kingdom)'),
(87245, 72419, 'en', 'name', 'Australian Energy Council'),
(87246, 72420, 'en', 'name', 'Association of British Orchestras'),
(87247, 72421, 'no_lang_code', 'name', 'Deregallera (United Kingdom)'),
(87248, 72422, 'no_lang_code', 'name', 'Ocunexus Therapeutics (United States)'),
(87249, 72423, 'no_lang_code', 'name', 'Akston Biosciences (United States)'),
(87250, 72424, 'no_lang_code', 'name', 'Thornhill Medical (Canada)'),
(87251, 72425, 'no_lang_code', 'name', 'Neon Century (United Kingdom)'),
(87252, 72426, 'no_lang_code', 'name', 'Natama'),
(87253, 72427, 'no_lang_code', 'name', 'McCormick Stevenson (United States)'),
(87254, 72428, 'es', 'name', 'Instituto Nacional de Biodiversidad'),
(87255, 72429, 'no_lang_code', 'name', 'Arborsense (United States)'),
(87256, 72430, 'no_lang_code', 'name', 'Aizu Hokurei High School'),
(87257, 72431, 'no_lang_code', 'name', 'Logistic Gliders (United States)'),
(87258, 72432, 'en', 'name', 'Internews'),
(87259, 72433, 'en', 'name', 'Library of Tibetan Works and Archives'),
(87260, 72434, 'en', 'name', 'Egyptian Foundation for Refugee Rights'),
(87261, 72435, 'da', 'name', 'Arbejdermuseet'),
(87262, 72435, 'en', 'name', 'The Workers Museum'),
(87263, 72436, 'en', 'name', 'National Museum of Natural History'),
(87264, 72436, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¾ą¤•ą„ƒą¤¤ą¤æą¤• इतिहास ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ, नई ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(87265, 72437, 'no_lang_code', 'name', 'Sebastian Conran Associates (United Kingdom)'),
(87266, 72438, 'no_lang_code', 'name', 'Hexagon Interactive (United States)'),
(87267, 72439, 'en', 'name', 'North Lanarkshire Council'),
(87268, 72440, 'en', 'name', 'Baltic Sea Cultural Centre in Gdańsk'),
(87269, 72440, 'pl', 'name', 'Nadbałtyckie Centrum Kultury'),
(87270, 72441, 'en', 'name', 'Swaziland National Trust Commission'),
(87271, 72442, 'en', 'name', 'National Galleries of Scotland'),
(87272, 72442, 'gd', 'name', 'Gailearaidhean NĆ iseanta na h-Alba'),
(87273, 72443, 'it', 'name', 'Fondazione Studio Marangoni'),
(87274, 72444, 'en', 'name', 'FenArch'),
(87275, 72445, 'pl', 'name', 'Dolnośląskie Centrum Onkologii'),
(87276, 72446, 'en', 'name', 'What Works Network'),
(87277, 72447, 'en', 'name', 'Royal Academy of Arts'),
(87278, 72448, 'no_lang_code', 'name', 'Thinfilm (Sweden)'),
(87279, 72449, 'en', 'name', 'World Education Services'),
(87280, 72450, 'en', 'name', 'Stonebridge Trust'),
(87281, 72451, 'es', 'name', 'Asociación Herpetológica Española'),
(87282, 72452, 'no_lang_code', 'name', 'Verdesian (United Kingdom)'),
(87283, 72453, 'en', 'name', 'Restoke'),
(87284, 72454, 'en', 'name', 'Edna Manley College of the Visual and Performing Arts'),
(87285, 72455, 'es', 'name', 'Administración Nacional de Usinas y Trasmisiones Eléctricas'),
(87286, 72455, 'no_lang_code', 'name', 'National Administration of Power Plants and Electrical Transmissions (Uruguay)'),
(87287, 72456, 'en', 'name', 'Quebec Labrador Foundation'),
(87288, 72457, 'de', 'name', 'IWW Zentrum Wasser'),
(87289, 72457, 'en', 'name', 'IWW Water Centre'),
(87290, 72458, 'en', 'name', 'China Family Planning Association'),
(87291, 72458, 'zh', 'name', 'äø­å›½č®”åˆ’ē”Ÿč‚²åä¼š'),
(87292, 72459, 'en', 'name', 'Ribble Rivers Trust'),
(87293, 72460, 'no_lang_code', 'name', 'Arradiance (United States)'),
(87294, 72461, 'no_lang_code', 'name', 'Graf Research (United States)'),
(87295, 72462, 'en', 'name', 'Ministry of Defence'),
(87296, 72463, 'ka', 'name', 'įƒ įƒ”įƒ–įƒįƒœįƒįƒœįƒ”įƒ˜'),
(87297, 72463, 'no_lang_code', 'name', 'Rezonansi'),
(87298, 72464, 'de', 'name', 'Mikroskopie im Nanometerbereich und Molekularphysiologie des Gehirns Exzellenzcluster 171 — DFG Forschungszentrum 103'),
(87299, 72464, 'en', 'name', 'Nanoscale Microscopy and Molecular Physiology of the Brain Cluster of Excellence 171 — DFG Research Center 103'),
(87300, 72465, 'no_lang_code', 'name', 'Brain Wellness and Biofeedback Center (United States)'),
(87301, 72466, 'en', 'name', 'The National Holocaust Centre & Museum'),
(87302, 72467, 'en', 'name', 'National Centre for Advocacy Studies'),
(87303, 72468, 'no_lang_code', 'name', 'Short and Associates (United States)'),
(87304, 72469, 'no_lang_code', 'name', 'Tpa (Poland)'),
(87305, 72470, 'es', 'name', 'Fundación para el Desarrollo Integral del Valle del Cauca, ProPacífico'),
(87306, 72471, 'en', 'name', 'International Bar Association'),
(87307, 72472, 'en', 'name', 'The Emergency Planning Society'),
(87308, 72473, 'en', 'name', 'The Marie Collins Foundation'),
(87309, 72474, 'no_lang_code', 'name', 'Ahmic Aerospace (United States)'),
(87310, 72475, 'en', 'name', 'Automotive Council UK'),
(87311, 72476, 'en', 'name', 'Social Research Association'),
(87312, 72477, 'en', 'name', 'Findhorn Foundation'),
(87313, 72478, 'no_lang_code', 'name', 'Keystone Automation (United States)'),
(87314, 72479, 'en', 'name', 'Intellectual Property Watch'),
(87315, 72480, 'no_lang_code', 'name', 'Nitrochem (Poland)'),
(87316, 72481, 'en', 'name', 'Royal Society for the Prevention of Accidents'),
(87317, 72482, 'en', 'name', 'The National Centre for Early Music'),
(87318, 72483, 'no_lang_code', 'name', 'China Regenerative Medicine International (China)'),
(87319, 72483, 'zh', 'name', 'äø­åœ‹å†ē”Ÿé†«å­øåœ‹éš›ęœ‰é™å…¬åø'),
(87320, 72484, 'am', 'name', 'į‹ØįŠ¢į‰µį‹®įŒµį‹« įˆµį”įˆµ įˆ³į‹­įŠ•įˆµ įŠ„įŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ į‰°į‰‹įˆ'),
(87321, 72484, 'en', 'name', 'Ethiopian Space Science and Technology Institute'),
(87322, 72485, 'es', 'name', 'Consejo Civil Mexicano para la Silvicultura Sostenible'),
(87323, 72486, 'en', 'name', 'Tanzania Media Women''s Association'),
(87324, 72486, 'sw', 'name', 'Chama cha Wanahabari Wanawake Tanzania'),
(87325, 72487, 'en', 'name', 'Amical Veterinary Centre'),
(87326, 72488, 'de', 'name', 'Forio'),
(87327, 72489, 'no_lang_code', 'name', 'Lupine Labs (United States)'),
(87328, 72490, 'no_lang_code', 'name', 'Amazon (United Kingdom)'),
(87329, 72491, 'en', 'name', 'Folkestone College'),
(87330, 72492, 'en', 'name', 'National Flood Forum'),
(87331, 72493, 'no_lang_code', 'name', 'Enthought (United States)'),
(87332, 72494, 'en', 'name', 'Mobox Foundation'),
(87333, 72495, 'no_lang_code', 'name', 'AptaMatrix (United States)'),
(87334, 72496, 'en', 'name', 'Institute of Economic and Social Development'),
(87335, 72496, 'es', 'name', 'Instituto de Desarrollo Económico y Social'),
(87336, 72497, 'no_lang_code', 'name', 'SLE (United Kingdom)'),
(87337, 72498, 'no_lang_code', 'name', 'Bergoz Instrumentation (France)'),
(87338, 72499, 'no_lang_code', 'name', 'Heureka (United States)'),
(87339, 72500, 'no_lang_code', 'name', 'Hawaii Hydrogen Carriers (United States)'),
(87340, 72501, 'en', 'name', 'The Modernist Society'),
(87341, 72502, 'no_lang_code', 'name', 'Composites Automation (United States)'),
(87342, 72503, 'it', 'name', 'Istituto per le Tecnologie Didattiche'),
(87343, 72504, 'en', 'name', 'United Nations University Institute on Computing and Society'),
(87344, 72504, 'zh', 'name', 'čÆåˆåœ‹å¤§å­øčØˆē®—čˆ‡ē¤¾ęœƒē ”ē©¶ę‰€'),
(87345, 72505, 'en', 'name', 'Constitution and Reform Education Consortium'),
(87346, 72506, 'en', 'name', 'Center for Global Policy Solutions'),
(87347, 72507, 'en', 'name', 'United States Public Interest Research Group Education Fund'),
(87348, 72508, 'no_lang_code', 'name', 'A123 Systems (United States)'),
(87349, 72509, 'hi', 'name', 'ą¤‰ą¤Øą„ą¤Øą¤¤ą¤æ'),
(87350, 72509, 'no_lang_code', 'name', 'UNNATI'),
(87351, 72510, 'en', 'name', 'ALZHIR Museum and Memorial Complex'),
(87352, 72510, 'kk', 'name', 'ŠœŅ±Ń€Š°Š¶Š°Š¹ мен Ā«ŠŠ›Š–Š˜Š Ā» мемориалГы ŠŗŠµŃˆŠµŠ½Ń–Š½Ń–Ņ£'),
(87353, 72510, 'ru', 'name', 'Музейно-Š¼ŠµŠ¼Š¾Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ комплекс "ŠŠ›Š–Š˜Š "'),
(87354, 72511, 'no_lang_code', 'name', 'Zurad (Poland)'),
(87355, 72512, 'en', 'name', 'UbonRatchathani Rice Research Center'),
(87356, 72512, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œąø§ąø“ąøˆąø±ąø¢ąø‚ą¹‰ąø²ąø§ąø­ąøøąøšąø„ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(87357, 72513, 'en', 'name', 'The Angelou Centre'),
(87358, 72514, 'no_lang_code', 'name', 'InterVision Media (United States)'),
(87359, 72515, 'en', 'name', 'Asian Institute of Medical Sciences'),
(87360, 72516, 'no_lang_code', 'name', 'Engineering Matters (United States)'),
(87361, 72517, 'en', 'name', 'Japanese Foundation for Multidisciplinary Treatment of Cancer'),
(87362, 72517, 'ja', 'name', 'ćŒć‚“é›†å­¦ēš„ę²»ē™‚ē ”ē©¶č²”å›£'),
(87363, 72518, 'en', 'name', 'Windrush Foundation'),
(87364, 72519, 'en', 'name', 'Southwest Florida Research'),
(87365, 72520, 'en', 'name', 'Institute for the Conservation and Valorization of Cultural Heritage'),
(87366, 72520, 'it', 'name', 'Istituto per la Conservazione e la Valorizzazione dei Beni Culturali'),
(87367, 72521, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© أفاق جديدة Ł„Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(87368, 72521, 'en', 'name', 'New Horizon Association for Social Development'),
(87369, 72522, 'en', 'name', 'Eurasia Foundation of Central Asia'),
(87370, 72522, 'ru', 'name', 'ФонГ Š•Š²Ń€Š°Š·ŠøŃ Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(87371, 72523, 'en', 'name', 'Tranby National Indigenous Adult Education and Training'),
(87372, 72524, 'en', 'name', 'Islamic Foundation for Ecology and Environmental Science'),
(87373, 72525, 'en', 'name', 'Kent History and Library Centre'),
(87374, 72526, 'en', 'name', 'Department of Finance'),
(87375, 72527, 'no_lang_code', 'name', 'Ksaria (United States)'),
(87376, 72528, 'en', 'name', 'Allied Media Projects'),
(87377, 72529, 'no_lang_code', 'name', 'Surgical Energetics (United States)'),
(87378, 72530, 'no_lang_code', 'name', 'Rantor (Sweden)'),
(87379, 72531, 'no_lang_code', 'name', 'Metstat (United States)'),
(87380, 72532, 'en', 'name', 'National Association of Eco-Friendly Salons and Spas'),
(87381, 72533, 'no_lang_code', 'name', 'Ohmedics (United Kingdom)'),
(87382, 72534, 'en', 'name', 'Mauritian Wildlife Foundation'),
(87383, 72535, 'en', 'name', 'Belfast Healthy Cities'),
(87384, 72536, 'en', 'name', 'Institute of Travel & Tourism'),
(87385, 72537, 'en', 'name', 'Mittag-Leffler Institute'),
(87386, 72537, 'sv', 'name', 'Institut Mittag-Leffler'),
(87387, 72538, 'no_lang_code', 'name', 'Expektra (Sweden)'),
(87388, 72539, 'en', 'name', 'Canfranc Underground Laboratory'),
(87389, 72539, 'es', 'name', 'Laboratorio SubterrƔneo de Canfranc'),
(87390, 72540, 'en', 'name', 'Wheat Trust'),
(87391, 72541, 'en', 'name', 'Derbyshire Community Health Services NHS Foundation Trust'),
(87392, 72542, 'en', 'name', 'Museum Of Modern Art'),
(87393, 72543, 'en', 'name', 'Center for the Study of Childhood and Adolescence'),
(87394, 72544, 'no_lang_code', 'name', 'Coltene (United States)'),
(87395, 72545, 'en', 'name', 'Connections for Abused Women and their Children'),
(87396, 72546, 'no_lang_code', 'name', 'High Force Research (United Kingdom)'),
(87397, 72547, 'en', 'name', 'ARC Centre of Excellence for Gravitational Wave Discovery'),
(87398, 72548, 'no_lang_code', 'name', 'Ashton Security Laboratories (United States)'),
(87399, 72549, 'no_lang_code', 'name', 'Arete (United Kingdom)'),
(87400, 72550, 'no_lang_code', 'name', 'Scottish Canals (United Kingdom)'),
(87401, 72551, 'en', 'name', 'Royal Academy of Fine Arts'),
(87402, 72551, 'sv', 'name', 'Kungliga Akademien fƶr de fria konsterna'),
(87403, 72552, 'en', 'name', 'National Museum of Korea'),
(87404, 72552, 'ko', 'name', '국립중앙박물꓀'),
(87405, 72553, 'en', 'name', 'Green and Seidner Family Practice Associates'),
(87406, 72554, 'en', 'name', 'East Suffolk Council'),
(87407, 72555, 'en', 'name', 'Greater Boston Interfaith Organization'),
(87408, 72556, 'en', 'name', 'The Ethical Small Traders Association'),
(87409, 72557, 'en', 'name', 'African Migration and Development Policy Centre'),
(87410, 72558, 'no_lang_code', 'name', 'Cambia'),
(87411, 72559, 'no_lang_code', 'name', 'Bristol Maid (United Kingdom)'),
(87412, 72560, 'en', 'name', 'Royal Society for the Conservation of Nature'),
(87413, 72561, 'en', 'name', 'Japan Institute of International Affairs'),
(87414, 72561, 'ja', 'name', 'ę—„ęœ¬å›½éš›å•é”Œē ”ē©¶ę‰€'),
(87415, 72562, 'en', 'name', 'Nanjing Collaborator Community Development Center'),
(87416, 72562, 'zh', 'name', 'å—äŗ¬åø‚åä½œč€…ē¤¾åŒŗå‘å±•äø­åæƒ'),
(87417, 72563, 'no_lang_code', 'name', 'Cortrol Services (United States)'),
(87418, 72564, 'no_lang_code', 'name', 'Immunosciences Lab (United States)'),
(87419, 72565, 'no_lang_code', 'name', 'Trusted Information Consulting (Poland)'),
(87420, 72566, 'no_lang_code', 'name', 'Intuidex (United States)'),
(87421, 72567, 'en', 'name', 'San Diego Housing Federation'),
(87422, 72568, 'en', 'name', 'Habib University'),
(87423, 72568, 'ur', 'name', 'حبيب ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(87424, 72569, 'en', 'name', 'Swansea Museum'),
(87425, 72570, 'en', 'name', 'Her Majesty''s Inspectorate of Probation'),
(87426, 72571, 'en', 'name', 'West African Research Center'),
(87427, 72572, 'en', 'name', 'Intercultural Center for the Study of Deserts and Oceans'),
(87428, 72572, 'es', 'name', 'Centro Intercultural de Estudios de Desiertos y OcƩanos'),
(87429, 72573, 'en', 'name', 'Newcastle United Foundation'),
(87430, 72574, 'en', 'name', 'Goree Institute'),
(87431, 72574, 'fr', 'name', 'L’Institut GorĆ©e – Centre pour la DĆ©mocratie, le DĆ©vĆ©loppement et la Culture en Afrique'),
(87432, 72575, 'en', 'name', 'Chetham’s Library'),
(87433, 72576, 'en', 'name', 'Xingyi Normal University for Nationalities'),
(87434, 72576, 'zh', 'name', 'å…“ä¹‰ę°‘ę—åøˆčŒƒå­¦é™¢'),
(87435, 72577, 'en', 'name', 'Free Word'),
(87436, 72578, 'en', 'name', 'China Association for NGO Cooperation'),
(87437, 72578, 'zh', 'name', 'äø­å›½å›½é™…ę°‘é—“ē»„ē»‡åˆä½œäæƒčæ›ä¼š'),
(87438, 72579, 'en', 'name', 'Lisburn & Castlereagh City Council'),
(87439, 72580, 'no_lang_code', 'name', 'National Milk Records (United Kingdom)'),
(87440, 72581, 'no_lang_code', 'name', 'Shanghai Museum'),
(87441, 72581, 'zh', 'name', 'äøŠęµ·åšē‰©é¦†'),
(87442, 72582, 'en', 'name', 'British and Irish Association of Zoos and Aquariums'),
(87443, 72583, 'no_lang_code', 'name', 'LM Group (United States)'),
(87444, 72584, 'no_lang_code', 'name', 'Sea Level Research (United Kingdom)'),
(87445, 72585, 'en', 'name', 'The New World Foundation'),
(87446, 72586, 'no_lang_code', 'name', 'Gastops (United States)'),
(87447, 72587, 'no_lang_code', 'name', 'Agilent Technologies (Brazil)'),
(87448, 72588, 'no_lang_code', 'name', 'Cofactor Genomics (United States)'),
(87449, 72589, 'en', 'name', 'Northumberland and Durham Family History Society'),
(87450, 72590, 'en', 'name', 'Center For Biomarker Research In Medicine'),
(87451, 72591, 'no_lang_code', 'name', 'Numedicus (United Kingdom)'),
(87452, 72592, 'en', 'name', 'Emirates Center for Strategic Studies and Research'),
(87453, 72593, 'en', 'name', 'Central Illinois Neuroscience Foundation'),
(87454, 72594, 'en', 'name', 'Q & T Research'),
(87455, 72594, 'fr', 'name', 'Q & T Recherche Sherbrooke'),
(87456, 72595, 'no_lang_code', 'name', 'PNDetector (Germany)'),
(87457, 72596, 'no_lang_code', 'name', 'SentiOne (Poland)'),
(87458, 72597, 'en', 'name', 'Fetal Care Research Foundation'),
(87459, 72598, 'no_lang_code', 'name', 'Metastable Instruments (United States)'),
(87460, 72599, 'no_lang_code', 'name', 'Soley (Poland)'),
(87461, 72600, 'en', 'name', 'Philanthropy Northwest'),
(87462, 72601, 'es', 'name', 'Stael Ruffinelli de Ortiz'),
(87463, 72602, 'en', 'name', 'Blueenergy'),
(87464, 72603, 'no_lang_code', 'name', 'Atrex Energy (United States)'),
(87465, 72604, 'ar', 'name', 'ؓركاؔ Ų§Ł„ŲŖŁ†Ł…ŁŠŲ© Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„Ų§Ų³ŲŖŲ“Ų§Ų±Ų§ŲŖ ŁˆŲ§Ł„ŲŖŲÆŲ±ŁŠŲØ'),
(87466, 72604, 'no_lang_code', 'name', 'Partners in Development for Research, Consulting and Training (Egypt)'),
(87467, 72605, 'en', 'name', 'Royal National Theatre'),
(87468, 72606, 'no_lang_code', 'name', 'Ad-Tech (United States)'),
(87469, 72607, 'en', 'name', 'Centre for Women’s Research'),
(87470, 72608, 'fr', 'name', 'BibliothĆØque Universitaire des Langues et Civilisations'),
(87471, 72609, 'en', 'name', 'Campbell College'),
(87472, 72610, 'no_lang_code', 'name', 'Heat Management (Sweden)'),
(87473, 72611, 'no_lang_code', 'name', 'Annexin Pharmaceuticals (Sweden)'),
(87474, 72612, 'en', 'name', 'Society for Community Health Awareness Research and Action'),
(87475, 72613, 'no_lang_code', 'name', 'Microprobes (United States)'),
(87476, 72614, 'en', 'name', 'The Equality Trust'),
(87477, 72615, 'no_lang_code', 'name', 'ETI Instrument Systems (United States)'),
(87478, 72616, 'en', 'name', 'Thanhtay University'),
(87479, 72616, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c ThĆ nh TĆ¢y'),
(87480, 72617, 'en', 'name', 'Institute for Human Rights and Development in Africa'),
(87481, 72618, 'es', 'name', 'Fundación Pro Vivienda Social'),
(87482, 72619, 'ar', 'name', 'معهد Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ų­Ł‚ŁˆŁ‚ الانسان'),
(87483, 72619, 'en', 'name', 'Arab Institute for Human Rights'),
(87484, 72620, 'no_lang_code', 'name', 'Geost (United States)'),
(87485, 72621, 'en', 'name', 'Equitas - International Centre for Human Rights Education'),
(87486, 72622, 'no_lang_code', 'name', 'Invisense (Sweden)'),
(87487, 72623, 'no_lang_code', 'name', 'Search (Poland)'),
(87488, 72624, 'en', 'name', 'Geo Explore Foundation'),
(87489, 72625, 'en', 'name', 'Mediciti Institute of Medical Sciences'),
(87490, 72625, 'te', 'name', 'ą°®ą±†ą°”ą°æą°øą°æą°Ÿą°æ ą°µą±ˆą°¦ą±ą°Æ ą°µą°æą°œą±ą°žą°¾ą°Ø ą°øą°‚ą°øą±ą°„'),
(87491, 72626, 'en', 'name', 'University of Science and Technology, Meghalaya, ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤®ą„‡ą¤˜ą¤¾ą¤²ą¤Æ'),
(87492, 72627, 'en', 'name', 'Xiamen University Malaysia'),
(87493, 72627, 'ms', 'name', 'Universiti Xiamen Malaysia'),
(87494, 72628, 'en', 'name', 'Institute for Technologies Applied to Cultural Heritage'),
(87495, 72628, 'it', 'name', 'Istituto per le Tecnologie Applicate ai Beni Culturali'),
(87496, 72629, 'en', 'name', 'Children and War Foundation'),
(87497, 72630, 'no_lang_code', 'name', 'Development Services Group (United States)'),
(87498, 72631, 'en', 'name', 'Newfoundland and Labrador Centre for Applied Health Research'),
(87499, 72632, 'no_lang_code', 'name', 'In Depth Engineering (United States)'),
(87500, 72633, 'no_lang_code', 'name', 'Juneteenth Productions (United States)'),
(87501, 72634, 'ne', 'name', 'ą¤®ą¤¾ą¤°ą„ą¤Ÿą¤æą¤Ø ą¤šą„Œą¤¤ą¤¾ą¤°ą„€'),
(87502, 72634, 'no_lang_code', 'name', 'Martin Chautari'),
(87503, 72635, 'en', 'name', 'Kinetica Museum'),
(87504, 72636, 'no_lang_code', 'name', 'GreenTech Consultants (Sri Lanka)'),
(87505, 72637, 'es', 'name', 'Dejusticia'),
(87506, 72638, 'no_lang_code', 'name', 'Marine Design Dynamics (United States)'),
(87507, 72639, 'en', 'name', 'Wolverhampton Art Gallery'),
(87508, 72640, 'en', 'name', 'Lowry Memorial College & Group of Institutions'),
(87509, 72641, 'en', 'name', 'Brockhouse Institute for Materials Research'),
(87510, 72642, 'en', 'name', 'National Council for the Evaluation of Social Development Policy'),
(87511, 72642, 'es', 'name', 'Consejo Nacional de Evaluación de la Política de Desarrollo Social'),
(87512, 72643, 'no_lang_code', 'name', 'Aggamin (United States)'),
(87513, 72644, 'no_lang_code', 'name', 'Ubuntu Institute'),
(87514, 72645, 'en', 'name', 'Srishti Institute of Art Design and Technology'),
(87515, 72646, 'en', 'name', 'Pasargad Institute for Advanced Innovative Solutions'),
(87516, 72646, 'fa', 'name', 'معهد ŲØŲ§Ų³Ų§Ų±Ų¬Ų§ŲÆ Ł„Ł„Ų­Ł„ŁˆŁ„ Ų§Ł„Ł…ŲØŲŖŁƒŲ±Ų© المتقدمة'),
(87517, 72647, 'fr', 'name', 'Laboratoire d''Anthropologie et de Psychologie Cognitives et Sociales'),
(87518, 72648, 'en', 'name', 'National Institute of Economic Research'),
(87519, 72648, 'sv', 'name', 'Konjunkturinstitutet'),
(87520, 72649, 'no_lang_code', 'name', 'Aechelon Technology (United States)'),
(87521, 72650, 'en', 'name', 'Oxleas NHS Foundation Trust'),
(87522, 72651, 'en', 'name', 'Polish Chamber of Packaging'),
(87523, 72651, 'pl', 'name', 'Polska Izba Opakowań'),
(87524, 72652, 'en', 'name', 'photo.circle'),
(87525, 72653, 'en', 'name', 'Crimean Republican Institute of Post-Decisive Pedagogical Education'),
(87526, 72653, 'ru', 'name', 'ŠšŃ€Ń‹Š¼ŃŠŗŠøŠ¹ Ń€ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ постГипломного пеГагогического Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(87527, 72654, 'it', 'name', 'Archivio di Stato di Venezia'),
(87528, 72655, 'en', 'name', 'Centre for Social Research and Development'),
(87529, 72655, 'vi', 'name', 'Trung tĆ¢m NghiĆŖn cứu vĆ  PhĆ”t triển xĆ£ hį»™i'),
(87530, 72656, 'no_lang_code', 'name', 'Tromp Medical (Netherlands)'),
(87531, 72657, 'no_lang_code', 'name', 'A&P Technology (United States)'),
(87532, 72658, 'no_lang_code', 'name', 'Jacobi Consulting (New Zealand)'),
(87533, 72659, 'en', 'name', 'Equality Now'),
(87534, 72660, 'no_lang_code', 'name', 'ArteEast'),
(87535, 72661, 'en', 'name', 'Association of British Insurers'),
(87536, 72662, 'en', 'name', 'Health Innovation Manchester'),
(87537, 72663, 'en', 'name', 'Yorkshire Dales Rivers Trust'),
(87538, 72664, 'no_lang_code', 'name', 'Solelia Greentech (Sweden)'),
(87539, 72665, 'no_lang_code', 'name', 'TSI (United States)'),
(87540, 72666, 'en', 'name', 'The Data Lab'),
(87541, 72667, 'en', 'name', 'Insight Center for Community Economic Development'),
(87542, 72668, 'en', 'name', 'Yunnan Archaeology'),
(87543, 72668, 'zh', 'name', 'äŗ‘å—ēœę–‡ē‰©č€ƒå¤ē ”ē©¶ę‰€ęˆē«‹äŗŽ'),
(87544, 72669, 'no_lang_code', 'name', 'Cortest (United States)'),
(87545, 72670, 'no_lang_code', 'name', 'Procosi'),
(87546, 72671, 'en', 'name', 'Rainforest Foundation Norway'),
(87547, 72671, 'no', 'name', 'Regnskogfondet'),
(87548, 72672, 'no_lang_code', 'name', 'Dispomedical (United Kingdom)'),
(87549, 72673, 'no_lang_code', 'name', 'Beyond Photonics (United States)'),
(87550, 72674, 'ar', 'name', 'Ų£Ų“ŁƒŲ§Ł„ Ų£Ł„ŁˆŲ§Ł†'),
(87551, 72674, 'fr', 'name', 'Ashkal Alwan'),
(87552, 72675, 'no_lang_code', 'name', 'Intelli-Firewall (United States)'),
(87553, 72676, 'en', 'name', 'Kazakhstan Medical University'),
(87554, 72676, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½Š“Ń‹Ņ› меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(87555, 72677, 'no_lang_code', 'name', 'Hf Designworks (United States)'),
(87556, 72678, 'en', 'name', 'British Computer Association of the Blind'),
(87557, 72679, 'en', 'name', 'Medical Education Cooperation with Cuba'),
(87558, 72680, 'no_lang_code', 'name', 'Entropic Systems (United States)'),
(87559, 72681, 'en', 'name', 'Instituto Cultural Steve Biko'),
(87560, 72682, 'en', 'name', 'China Law Society'),
(87561, 72683, 'en', 'name', 'Fulbright Japan'),
(87562, 72683, 'ja', 'name', 'ę—„ē±³ę•™č‚²å§”å“”ä¼š'),
(87563, 72684, 'no_lang_code', 'name', 'Hexagon (United States)'),
(87564, 72685, 'no_lang_code', 'name', 'Delaware Diamond Knives (United States)'),
(87565, 72686, 'en', 'name', 'China Arms Control and Disarmament Association'),
(87566, 72686, 'zh', 'name', 'äø­å›½å†›ęŽ§äøŽč£å†›åä¼š'),
(87567, 72687, 'no_lang_code', 'name', 'Argonide (United States)'),
(87568, 72688, 'en', 'name', 'Community Aid International'),
(87569, 72689, 'en', 'name', 'Zhicheng Public Interest Lawyers'),
(87570, 72689, 'zh', 'name', 'č‡“čÆšå…¬ē›Šå¾‹åøˆ'),
(87571, 72690, 'no_lang_code', 'name', 'Boehringer Ingelheim (Egypt)'),
(87572, 72691, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Sweden)'),
(87573, 72692, 'es', 'name', 'Forum Solidaridad PerĆŗ'),
(87574, 72693, 'de', 'name', 'Zentrale Knochenmarkspender-Register Deutschland'),
(87575, 72693, 'en', 'name', 'German National Bone Marrow Donor Registry'),
(87576, 72694, 'no_lang_code', 'name', 'Cooltech Applications (France)'),
(87577, 72695, 'en', 'name', 'Royal Television Society'),
(87578, 72696, 'pt', 'name', 'Hospital das ClĆ­nicas da Universidade Federal de Minas Gerais'),
(87579, 72697, 'no_lang_code', 'name', 'Experiad (United States)'),
(87580, 72698, 'no_lang_code', 'name', 'Dream Laboratory (United Kingdom)'),
(87581, 72699, 'no_lang_code', 'name', 'InEnTec (United States)'),
(87582, 72700, 'en', 'name', 'Down''s Syndrome Association'),
(87583, 72701, 'en', 'name', 'Institute for International Legal Studies'),
(87584, 72701, 'it', 'name', 'Istituto di Studi Giuridici Internazionali'),
(87585, 72702, 'es', 'name', 'Hospital Dipreca'),
(87586, 72703, 'no_lang_code', 'name', 'Strainlabs (Sweden)'),
(87587, 72704, 'en', 'name', 'ABFE'),
(87588, 72705, 'en', 'name', 'Museum of the History of Science'),
(87589, 72706, 'es', 'name', 'Sisma Mujer'),
(87590, 72707, 'en', 'name', 'The Bingo Association'),
(87591, 72708, 'no_lang_code', 'name', 'S&C Electric Company (United States)'),
(87592, 72709, 'en', 'name', 'Caribbean Disaster Emergency Management Agency'),
(87593, 72710, 'en', 'name', 'Centre for Policy Alternatives'),
(87594, 72711, 'en', 'name', 'Cloud Innovation Centre'),
(87595, 72712, 'en', 'name', 'Institute of Food Science & Technology'),
(87596, 72713, 'en', 'name', 'Particulate Solid Research (United States)'),
(87597, 72714, 'en', 'name', 'British Limousin Cattle Society'),
(87598, 72715, 'no_lang_code', 'name', '​Advanced Systems Technology (United States)'),
(87599, 72716, 'de', 'name', 'Augusta-Kranken-Anstalt'),
(87600, 72717, 'en', 'name', 'UNITE-LA'),
(87601, 72718, 'en', 'name', 'Blackwood'),
(87602, 72719, 'en', 'name', 'African Centre for Advanced Studies'),
(87603, 72720, 'no_lang_code', 'name', 'Conspiro (Sweden)'),
(87604, 72721, 'en', 'name', 'Institute for Research in Schools'),
(87605, 72722, 'no_lang_code', 'name', 'Keysight Technologies (Austria)'),
(87606, 72723, 'no_lang_code', 'name', 'Vector (United States)'),
(87607, 72724, 'en', 'name', 'The Hindu Group (India)'),
(87608, 72725, 'en', 'name', 'Legal Policy Research Centre'),
(87609, 72725, 'ru', 'name', 'Центр ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Š½ŠøŃ правовой политики'),
(87610, 72726, 'en', 'name', 'Cambodian Institute for Cooperation and Peace'),
(87611, 72726, 'km', 'name', 'įžœįž·įž‘įŸ’įž™įž¶įžŸįŸ’įžįž¶įž“įžįŸ’įž˜įŸ‚įžšįžŸįž˜įŸ’įžšįž¶įž”įŸ‹įžŸįž įž”įŸ’įžšįžįž·įž”įžįŸ’įžįž·įž€įž¶įžšįž“įž·įž„įžŸįž“įŸ’įžįž·įž—įž¶įž–'),
(87612, 72727, 'no_lang_code', 'name', 'Agile Scientific (Canada)'),
(87613, 72728, 'en', 'name', 'The Soar Foundation'),
(87614, 72729, 'en', 'name', 'Satyajit Ray Film and Television Institute'),
(87615, 72730, 'no_lang_code', 'name', 'cPacket (United States)'),
(87616, 72731, 'en', 'name', 'The Samdhana Institute'),
(87617, 72732, 'no_lang_code', 'name', 'Frontier Energy (United States)'),
(87618, 72733, 'fr', 'name', 'Laboratoire Structure et Dynamique par RƩsonance MagnƩtique'),
(87619, 72734, 'no_lang_code', 'name', 'Medical Architecture (United Kingdom)'),
(87620, 72735, 'en', 'name', 'Moving the GoalPosts'),
(87621, 72736, 'en', 'name', 'Aberlour'),
(87622, 72737, 'en', 'name', 'New Zealand eScience Infrastructure'),
(87623, 72738, 'no_lang_code', 'name', 'Actar (Spain)'),
(87624, 72739, 'en', 'name', 'Architects for Health'),
(87625, 72740, 'no_lang_code', 'name', 'Concentris Systems (United States)'),
(87626, 72741, 'en', 'name', 'Efficient Energy Centre'),
(87627, 72742, 'en', 'name', 'Myanmar Geosciences Society'),
(87628, 72743, 'en', 'name', 'The Lewis Carroll Society'),
(87629, 72744, 'en', 'name', 'British Chambers of Commerce'),
(87630, 72745, 'en', 'name', 'Volunteer Dundee'),
(87631, 72746, 'en', 'name', 'Studies in Poverty and Inequality Institute'),
(87632, 72747, 'en', 'name', 'Norfolk Archaeological Trust'),
(87633, 72748, 'no_lang_code', 'name', 'Samsung (Poland)'),
(87634, 72749, 'cs', 'name', 'ZÔkladní Ŕkola a PraktickÔ Ŕkola SvítÔní'),
(87635, 72750, 'no_lang_code', 'name', 'Blekinge Business Incubator (Sweden)'),
(87636, 72751, 'en', 'name', 'International Center for Transitional Justice'),
(87637, 72752, 'no_lang_code', 'name', 'NMAS Group (United States)'),
(87638, 72753, 'en', 'name', 'International Center for Advanced Research and Training'),
(87639, 72754, 'no_lang_code', 'name', 'Sri Caitanya Prema Samsthana'),
(87640, 72755, 'pt', 'name', 'ClĆ­nica de Psiquiatria Psiquimei'),
(87641, 72756, 'en', 'name', 'Hawley Collection'),
(87642, 72757, 'en', 'name', 'National Army Museum'),
(87643, 72758, 'en', 'name', 'The German Marshall Fund of the United States'),
(87644, 72759, 'no_lang_code', 'name', 'Copersucar (Brazil)'),
(87645, 72760, 'en', 'name', 'Astana Medical University'),
(87646, 72760, 'kk', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Астана'),
(87647, 72761, 'en', 'name', 'Institute of Directors'),
(87648, 72762, 'en', 'name', 'Supreme Court of the Republic of Slovenia'),
(87649, 72762, 'sl', 'name', 'Vrhovno sodiŔče Republike Slovenije'),
(87650, 72763, 'en', 'name', 'Kelvingrove Art Gallery and Museum'),
(87651, 72764, 'de', 'name', 'Bayerische Landesanstalt für Wald und Forstwirtschaft'),
(87652, 72765, 'no_lang_code', 'name', 'GHKN Engineering (United States)'),
(87653, 72766, 'en', 'name', 'Myanmar Institute of Information Technology'),
(87654, 72767, 'no_lang_code', 'name', 'Critical Imaging (United States)'),
(87655, 72768, 'en', 'name', 'Northern Architecture'),
(87656, 72769, 'pt', 'name', 'Instituto Papai'),
(87657, 72770, 'en', 'name', 'Pomfret School'),
(87658, 72771, 'no_lang_code', 'name', 'VĆØringer (Spain)'),
(87659, 72772, 'no_lang_code', 'name', 'Anagin (United States)'),
(87660, 72773, 'en', 'name', 'Comprehensive Cardiovascular'),
(87661, 72774, 'cs', 'name', 'Nadace Neziskovky'),
(87662, 72775, 'no_lang_code', 'name', 'Chip Scan (United States)'),
(87663, 72776, 'en', 'name', 'European Theoretical Spectroscopy Facility'),
(87664, 72777, 'en', 'name', 'The David Hume Institute'),
(87665, 72778, 'no_lang_code', 'name', 'Command and Control Technologies Corporation (United States)'),
(87666, 72779, 'no_lang_code', 'name', 'American Metal Processing (United States)'),
(87667, 72780, 'no_lang_code', 'name', 'Ash Access Technology (United States)'),
(87668, 72781, 'en', 'name', 'National Association of Cider Makers'),
(87669, 72782, 'en', 'name', 'Slovak Rectors“Conference'),
(87670, 72782, 'sk', 'name', 'SlovenskĆ” rektorskĆ” konferencia'),
(87671, 72783, 'en', 'name', 'Vienna Institute for Urban Sustainability'),
(87672, 72784, 'no_lang_code', 'name', 'Hattaway Communications (United States)'),
(87673, 72785, 'en', 'name', 'Kenya Community Development Foundation'),
(87674, 72786, 'en', 'name', 'Garden Street Academy'),
(87675, 72787, 'no_lang_code', 'name', 'CMGI (Poland)'),
(87676, 72788, 'en', 'name', 'West of England Centre for Inclusive Living'),
(87677, 72789, 'no', 'name', 'Kongsberg sykehus'),
(87678, 72790, 'en', 'name', 'China Automotive Engineering Research Institute'),
(87679, 72790, 'zh', 'name', 'äø­å›½ę±½č½¦å·„ēØ‹ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(87680, 72791, 'no_lang_code', 'name', 'Eaton (Brazil)'),
(87681, 72792, 'en', 'name', 'New York City Council'),
(87682, 72793, 'no_lang_code', 'name', 'Lightening Energy (United States)'),
(87683, 72794, 'en', 'name', 'Kidney Associates'),
(87684, 72795, 'no_lang_code', 'name', 'Stratec (Germany)'),
(87685, 72796, 'no_lang_code', 'name', 'Nanogen (United States)'),
(87686, 72797, 'no_lang_code', 'name', 'DGT (Poland)'),
(87687, 72797, 'pl', 'name', 'Centrum Badawczo - Produkcyjne'),
(87688, 72798, 'en', 'name', 'Public Affairs Research Institute'),
(87689, 72799, 'en', 'name', 'Tyrone County Hospital'),
(87690, 72799, 'gd', 'name', 'Otharlann Chontae ThĆ­r Eoghain'),
(87691, 72800, 'en', 'name', 'Lawyers'' Committee for Civil Rights Under Law'),
(87692, 72801, 'no_lang_code', 'name', 'Laser & Plasma Technologies (United States)'),
(87693, 72802, 'en', 'name', 'Buddhist Digital Resource Center'),
(87694, 72803, 'en', 'name', 'Institute of History of Mediterranean Europe'),
(87695, 72803, 'it', 'name', 'Istituto di Storia dell''Europa Mediterranea'),
(87696, 72804, 'no_lang_code', 'name', 'Fidesmo (Sweden)'),
(87697, 72805, 'en', 'name', 'Museum of Australian Democracy'),
(87698, 72806, 'en', 'name', 'Institute for Research and Empowerment'),
(87699, 72807, 'en', 'name', 'Institute of Physics of Molecules and Crystals'),
(87700, 72807, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики молекул Šø кристаллов'),
(87701, 72808, 'en', 'name', 'Freedman Consulting'),
(87702, 72809, 'en', 'name', 'Mental Health America'),
(87703, 72810, 'en', 'name', 'European Association for Biometrics'),
(87704, 72811, 'no_lang_code', 'name', 'Hermes Medical Solutions (United Kingdom)'),
(87705, 72812, 'en', 'name', 'Restaurant Opportunities Centers United'),
(87706, 72813, 'en', 'name', 'China Society for Urban Studies'),
(87707, 72814, 'en', 'name', 'The Colebrooke Centre'),
(87708, 72815, 'no_lang_code', 'name', 'Microscale (United States)'),
(87709, 72816, 'en', 'name', 'District of Columbia Department of Forensic Sciences'),
(87710, 72817, 'no_lang_code', 'name', 'Inossia (Sweden)'),
(87711, 72818, 'en', 'name', 'Dupuytren Research Group'),
(87712, 72819, 'no_lang_code', 'name', 'Ecoat (France)'),
(87713, 72820, 'no_lang_code', 'name', 'intuVision (United States)'),
(87714, 72821, 'en', 'name', 'The Fermanagh Trust'),
(87715, 72822, 'en', 'name', 'Oak Field School and Sports College'),
(87716, 72823, 'no_lang_code', 'name', 'ChM (Poland)'),
(87717, 72824, 'en', 'name', 'Alliance for Justice'),
(87718, 72825, 'no_lang_code', 'name', 'TetraScience (United States)'),
(87719, 72826, 'no_lang_code', 'name', 'Archimage (United States)'),
(87720, 72827, 'no_lang_code', 'name', 'Biomedical Research Laboratories (United States)'),
(87721, 72828, 'en', 'name', 'National Gugak Center'),
(87722, 72828, 'ko', 'name', '국립국악원'),
(87723, 72829, 'en', 'name', 'Roberto Marinho Foundation'),
(87724, 72829, 'pt', 'name', 'Fundação Roberto Marinho'),
(87725, 72830, 'no_lang_code', 'name', 'Fiore Industries (United States)'),
(87726, 72831, 'no_lang_code', 'name', 'Canget BioTekpharma (United States)'),
(87727, 72832, 'en', 'name', 'Centre for the Study of Culture and Society'),
(87728, 72832, 'kn', 'name', 'ą²øą²‚ą²øą³ą²•ą³ƒą²¤ą²æ ą²®ą²¤ą³ą²¤ą³ ಸಮಾಜ ą²…ą²§ą³ą²Æą²Æą²Ø ą²•ą³†ą³•ą²‚ą²¦ą³ą²°ą²¦'),
(87729, 72833, 'no_lang_code', 'name', 'Voltaiq (United States)'),
(87730, 72834, 'no_lang_code', 'name', 'Tech-X (United Kingdom)'),
(87731, 72835, 'en', 'name', 'Chief Fire Officers Association'),
(87732, 72836, 'en', 'name', 'Industry, Tourism and Investment'),
(87733, 72836, 'fr', 'name', 'Industrie, Tourisme et Investissement'),
(87734, 72837, 'en', 'name', 'Xcellon School of Business'),
(87735, 72838, 'en', 'name', 'The Wahid Institute'),
(87736, 72839, 'no_lang_code', 'name', 'Fracsun (United States)'),
(87737, 72840, 'en', 'name', 'Sheffield Beekeepers'' Association'),
(87738, 72841, 'bn', 'name', 'ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦ą¦Ŗą¦æą¦”ą§‡ą¦®ą§‹ą¦²ą§‹ą¦œą¦æ ঔিজিজ ą¦•ą¦Øą§ą¦Ÿą§ą¦°ą§‹ą¦² ą¦ą¦Øą§ą¦” ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š আইইঔিসিআর'),
(87739, 72841, 'en', 'name', 'Institute of Epidemiology, Disease Control and Research'),
(87740, 72842, 'no_lang_code', 'name', 'Design Science (United Kingdom)'),
(87741, 72843, 'en', 'name', 'Medical Prescription Services'),
(87742, 72844, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁŁ„Ų³Ų·ŁŠŁ†ŁŠ للدراسات وحوار'),
(87743, 72844, 'en', 'name', 'Palestinian Center for Research and Cultural Dialogue'),
(87744, 72845, 'en', 'name', 'Alliance for a Just Society'),
(87745, 72846, 'no_lang_code', 'name', 'Absorption Systems (United States)'),
(87746, 72847, 'no_lang_code', 'name', 'Minitube (United States)'),
(87747, 72848, 'no_lang_code', 'name', 'Telesis Corporation (United States)'),
(87748, 72849, 'en', 'name', 'Colonial Society of Massachusetts'),
(87749, 72850, 'en', 'name', 'National Sheep Association'),
(87750, 72851, 'en', 'name', 'United Kingdom Antarctic Heritage Trust'),
(87751, 72852, 'en', 'name', 'Los Angeles Police Department'),
(87752, 72853, 'no_lang_code', 'name', 'Judd Systems Technologies (United States)'),
(87753, 72854, 'no_lang_code', 'name', 'Innovimmune Biotherapeutics (United States)'),
(87754, 72855, 'en', 'name', 'The Point of Care Foundation'),
(87755, 72856, 'en', 'name', 'Tanganyika Law Society'),
(87756, 72857, 'en', 'name', 'Swadhinata Trust'),
(87757, 72858, 'en', 'name', 'Colchester + Ipswich Museums'),
(87758, 72859, 'no_lang_code', 'name', 'Jericho Sciences (United States)'),
(87759, 72860, 'en', 'name', 'The Mainichi'),
(87760, 72860, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ęÆŽę—„ę–°čžē¤¾'),
(87761, 72861, 'no_lang_code', 'name', 'Elveflow (France)'),
(87762, 72862, 'en', 'name', 'American Visionary Art Museum'),
(87763, 72863, 'en', 'name', 'Regen'),
(87764, 72864, 'no_lang_code', 'name', 'Newind (Poland)'),
(87765, 72865, 'en', 'name', 'Occupational Research and Assessment'),
(87766, 72866, 'no_lang_code', 'name', 'TCC Group (United States)'),
(87767, 72867, 'en', 'name', 'Erie Arts and Culture'),
(87768, 72868, 'ar', 'name', 'وزارة الثقافة'),
(87769, 72868, 'en', 'name', 'Ministry of Culture'),
(87770, 72869, 'fr', 'name', 'Comportement et Ɖcologie de la Faune Sauvage'),
(87771, 72870, 'en', 'name', 'Leonard Cheshire'),
(87772, 72871, 'no_lang_code', 'name', 'DBV Technology (United States)'),
(87773, 72872, 'en', 'name', 'Dallas Theological Seminary'),
(87774, 72873, 'no_lang_code', 'name', 'Allen (United States)'),
(87775, 72874, 'bn', 'name', 'ইসলামিক ą¦«ą¦¾ą¦‰ą¦Øą§ą¦”ą§‡ą¦¶ą¦Ø বাংলাদেশ'),
(87776, 72874, 'en', 'name', 'Bangladesh Islamic Foundation'),
(87777, 72875, 'no_lang_code', 'name', 'K-Rep Development Agency (Kenya)'),
(87778, 72876, 'en', 'name', 'Media Design School'),
(87779, 72877, 'en', 'name', 'International Summer School of Photography'),
(87780, 72878, 'no', 'name', 'Skedsmo Medisinske Senter'),
(87781, 72879, 'en', 'name', 'Indonesian Coffee and Cocoa Research Institute'),
(87782, 72880, 'en', 'name', 'University of Washington Applied Physics Laboratory'),
(87783, 72881, 'fr', 'name', 'Laboratoire de GƩnie Civil, Diagnostic et DurabilitƩ'),
(87784, 72882, 'no_lang_code', 'name', 'Protected Trust Services (United Kingdom)'),
(87785, 72883, 'en', 'name', 'United Nations System Staff College'),
(87786, 72884, 'en', 'name', 'Rare Breeds Survival Trust'),
(87787, 72885, 'no_lang_code', 'name', 'Centripetal (United States)'),
(87788, 72886, 'de', 'name', 'Evangelisches Klinikum Kƶln Weyertal'),
(87789, 72887, 'no_lang_code', 'name', 'Austral Engineering and Software (United States)'),
(87790, 72888, 'de', 'name', 'DRK Kliniken Berlin'),
(87791, 72889, 'en', 'name', 'Center for Economic Progress'),
(87792, 72890, 'no_lang_code', 'name', 'TOMSAD Tomasz Sadowski (Poland)'),
(87793, 72891, 'en', 'name', 'Local Area Research & Intelligence Association'),
(87794, 72892, 'no_lang_code', 'name', 'LaCell (United States)'),
(87795, 72893, 'en', 'name', 'Center for Effective Global Action'),
(87796, 72894, 'en', 'name', 'Ministry of Internal Affairs'),
(87797, 72894, 'mk', 'name', 'ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Šž ЗА Š’ŠŠŠ¢Š Š•ŠØŠŠ˜ Š ŠŠ‘ŠžŠ¢Š˜'),
(87798, 72895, 'no_lang_code', 'name', 'Opegieka (Poland)'),
(87799, 72896, 'es', 'name', 'Instituto Mora, Instituto de Investigaciones Dr. JosƩ Marƭa Luis Mora'),
(87800, 72897, 'sv', 'name', 'Funka Nu');
INSERT INTO `ror_settings` VALUES
(87801, 72898, 'en', 'name', 'Partick Housing Association'),
(87802, 72899, 'en', 'name', 'Co.As.It.'),
(87803, 72900, 'no_lang_code', 'name', 'MPTS (Poland)'),
(87804, 72901, 'en', 'name', 'Community-Campus Partnerships for Health'),
(87805, 72902, 'no_lang_code', 'name', 'GenomeDesigns Lab (United States)'),
(87806, 72903, 'en', 'name', 'Broadstairs College'),
(87807, 72904, 'no_lang_code', 'name', 'Liquids Research (United Kingdom)'),
(87808, 72905, 'en', 'name', 'New York City Bar Association'),
(87809, 72906, 'en', 'name', 'National Indigenous Organization of Colombia'),
(87810, 72906, 'es', 'name', 'Organización Nacional Indígena de Colombia'),
(87811, 72907, 'no_lang_code', 'name', 'Applied Tissue Technologies (United States)'),
(87812, 72908, 'en', 'name', 'Sheppey College'),
(87813, 72909, 'en', 'name', 'Association for Learning Technology'),
(87814, 72910, 'en', 'name', 'Dubai International Financial Centre'),
(87815, 72911, 'en', 'name', 'Centre for Rural Legal Studies'),
(87816, 72912, 'en', 'name', 'Wildfowl & Wetlands Trust'),
(87817, 72913, 'en', 'name', 'Islamic Azad University, Buin-Zahra'),
(87818, 72914, 'sv', 'name', 'NyfƶretagarCentrum'),
(87819, 72915, 'en', 'name', 'Chartered Management Institute'),
(87820, 72916, 'no_lang_code', 'name', 'AgroBio'),
(87821, 72916, 'pt', 'name', 'Associação das Empresas de Biotecnologia na Agricultura e Agroindústria'),
(87822, 72917, 'en', 'name', 'Communications Consortium Media Center'),
(87823, 72918, 'no_lang_code', 'name', 'AVL (Sweden)'),
(87824, 72919, 'en', 'name', 'The LGBT Centre'),
(87825, 72919, 'mn', 'name', 'ЛГБТ Төв'),
(87826, 72920, 'en', 'name', 'Asian-Pacific Resource and Research Centre for Women'),
(87827, 72921, 'en', 'name', 'Institute of Environmental Management and Assessment'),
(87828, 72922, 'en', 'name', 'Shenyang Fifth People Hospital'),
(87829, 72922, 'zh', 'name', 'ę²ˆé˜³åø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(87830, 72923, 'no_lang_code', 'name', 'Search'),
(87831, 72924, 'en', 'name', 'British Council'),
(87832, 72925, 'no_lang_code', 'name', 'Companhia Brasileira de Aluminio'),
(87833, 72926, 'no_lang_code', 'name', 'Biorecro (Sweden)'),
(87834, 72927, 'en', 'name', 'Learning Spaces Collaboratory'),
(87835, 72928, 'en', 'name', 'Ahmad Dahlan School of Economics'),
(87836, 72928, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Ahmad Dahlan Jakarta'),
(87837, 72929, 'no_lang_code', 'name', 'Mobile Foundations (United States)'),
(87838, 72930, 'no_lang_code', 'name', 'Concordance Health Solutions (United States)'),
(87839, 72931, 'no_lang_code', 'name', 'Gesynta Pharma (Sweden)'),
(87840, 72932, 'en', 'name', 'V&A Museum of Childhood'),
(87841, 72933, 'no_lang_code', 'name', 'Hyperion Technology Group (United States)'),
(87842, 72934, 'en', 'name', 'United States Court of Appeals for the Seventh Circuit'),
(87843, 72935, 'no_lang_code', 'name', 'BrightSpec'),
(87844, 72936, 'en', 'name', 'National Centre for Resilience'),
(87845, 72937, 'en', 'name', 'Mahidol Oxford Tropical Medicine Research Unit'),
(87846, 72938, 'no_lang_code', 'name', 'Applied Decision Science (United States)'),
(87847, 72939, 'en', 'name', 'Shenzhen Baoan High School Group'),
(87848, 72939, 'zh', 'name', 'ę·±åœ³åø‚å®å®‰äø­å­¦'),
(87849, 72940, 'en', 'name', 'Social Market Foundation'),
(87850, 72941, 'no_lang_code', 'name', 'AlyXan (France)'),
(87851, 72942, 'en', 'name', 'Saint Louis Zoo'),
(87852, 72943, 'en', 'name', 'Institute of Town Planners, Sri lanka'),
(87853, 72944, 'en', 'name', 'MRS Training & Rescue'),
(87854, 72945, 'ar', 'name', 'المستؓفى Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠ Ų§Ł„Ų“ŁŠŲ® زايد'),
(87855, 72945, 'fr', 'name', 'HƓpital Universitaire International Cheikh Khalifa'),
(87856, 72946, 'no_lang_code', 'name', 'Mind (Poland)'),
(87857, 72947, 'no_lang_code', 'name', 'FSCX (United States)'),
(87858, 72948, 'en', 'name', 'Canterbury College'),
(87859, 72949, 'no_lang_code', 'name', 'Simerics (United States)'),
(87860, 72950, 'en', 'name', 'The Christian and Missionary Alliance'),
(87861, 72951, 'no_lang_code', 'name', 'Imaxio (France)'),
(87862, 72952, 'no_lang_code', 'name', 'EUV Labs (Russia)'),
(87863, 72953, 'en', 'name', 'London Fire Brigade'),
(87864, 72954, 'az', 'name', 'Azərbaycan Sosial İş İctimai Birliyi'),
(87865, 72954, 'en', 'name', 'Azerbaijan Social Work Public Union'),
(87866, 72955, 'en', 'name', 'The Hearth'),
(87867, 72956, 'en', 'name', 'Institute of Coal Chemistry and Material Science'),
(87868, 72956, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š° ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŠø Šø химического Š¼Š°Ń‚ŠµŃ€ŠøŠ°Š»Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(87869, 72957, 'en', 'name', 'National Film and Sound Archive of Australia'),
(87870, 72958, 'no_lang_code', 'name', 'CytaCoat (Sweden)'),
(87871, 72959, 'en', 'name', 'Shaanxi Research Association for Women and Family'),
(87872, 72959, 'zh', 'name', 'é™•č„æēœå¦‡å„³ē†č®ŗå©šå§»å®¶åŗ­ē ”ē©¶ä¼š'),
(87873, 72960, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ της Δανίας ĻƒĻ„Ī·Ī½ Αθήνα'),
(87874, 72960, 'en', 'name', 'Danish Institute at Athens'),
(87875, 72961, 'en', 'name', 'Our Lady of Maryknoll Hospital'),
(87876, 72961, 'zh', 'name', 'č–ęÆé†«é™¢'),
(87877, 72962, 'en', 'name', 'Kazakh-American Free University'),
(87878, 72962, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½-АмериканГық еркін ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(87879, 72963, 'no_lang_code', 'name', 'Pelago Bioscience (Sweden)'),
(87880, 72964, 'fr', 'name', 'Aide et Recherche en CancƩrologie Digestive, Fondation ARCAD'),
(87881, 72965, 'no_lang_code', 'name', 'BioVentures (United States)'),
(87882, 72966, 'en', 'name', 'Polish Society of Oriental Art'),
(87883, 72966, 'pl', 'name', 'Polski Instytut Studiów nad Sztuką Świata'),
(87884, 72967, 'pt', 'name', 'Coopercitrus Cooperativa de Produtores Rurais'),
(87885, 72968, 'en', 'name', 'Niels Brock'),
(87886, 72969, 'en', 'name', 'Transparency International'),
(87887, 72970, 'en', 'name', 'Walk Free Foundation'),
(87888, 72971, 'en', 'name', 'SolarAid'),
(87889, 72972, 'no_lang_code', 'name', 'Royal Shakespeare Company (United Kingdom)'),
(87890, 72973, 'no_lang_code', 'name', 'Iceotope Technologies (United Kingdom)'),
(87891, 72974, 'en', 'name', 'Botswana Institute for Technology Research and Innovation'),
(87892, 72975, 'nl', 'name', 'Astronomisch Fysisch Onderzoek Nederland'),
(87893, 72976, 'en', 'name', 'International Union of Police Associations'),
(87894, 72977, 'no_lang_code', 'name', 'Binergy Scientific (United States)'),
(87895, 72978, 'pt', 'name', 'Instituto Paulo Gontijo'),
(87896, 72979, 'no_lang_code', 'name', 'Engineering Technologies and Developments (Ukraine)'),
(87897, 72980, 'it', 'name', 'Opificio delle Pietre Dure'),
(87898, 72981, 'en', 'name', 'Collaborative Laboratory Services'),
(87899, 72982, 'no_lang_code', 'name', 'Airbus (United States)'),
(87900, 72983, 'en', 'name', 'Nautical Archaeology Society'),
(87901, 72984, 'no_lang_code', 'name', 'Palumed (France)'),
(87902, 72985, 'en', 'name', 'Witness'),
(87903, 72986, 'en', 'name', 'Ho Chi Minh National Academy of Politics'),
(87904, 72986, 'vi', 'name', 'Hį»c viện ChĆ­nh trị Quốc gia Hồ ChĆ­ Minh'),
(87905, 72987, 'en', 'name', 'Yunnan Building Materials Research & Design Institute'),
(87906, 72987, 'zh', 'name', 'äŗ‘å—å¤§å­¦å»ŗē­‘äøŽč§„åˆ’å­¦é™¢'),
(87907, 72988, 'en', 'name', 'Peace Through Folk'),
(87908, 72989, 'no_lang_code', 'name', 'Daico Industries (United States)'),
(87909, 72990, 'en', 'name', 'Wallace Kelsey Research Foundation'),
(87910, 72991, 'en', 'name', 'Angela Ash Associates'),
(87911, 72992, 'es', 'name', 'Plan Ceibal'),
(87912, 72993, 'no_lang_code', 'name', 'Microtrace (United States)'),
(87913, 72994, 'en', 'name', 'The History Teachers'' Association of Australia'),
(87914, 72995, 'no_lang_code', 'name', 'Gadusol Laboratories (United States)'),
(87915, 72996, 'en', 'name', 'Camino Public Relations'),
(87916, 72997, 'en', 'name', '1947 Partition Archive'),
(87917, 72998, 'en', 'name', 'Wildlife Conservation Society United Kingdom'),
(87918, 72999, 'no_lang_code', 'name', 'Shopping Live (Russia)'),
(87919, 73000, 'en', 'name', 'Club & Institute Union'),
(87920, 73001, 'no_lang_code', 'name', 'Detector Technology (United States)'),
(87921, 73002, 'en', 'name', 'North Norfolk Clinical Commissioning Group'),
(87922, 73003, 'ro', 'name', 'Spitalul Clinic Dr. Victor Babes'),
(87923, 73004, 'no_lang_code', 'name', 'HOPE Innovations (Canada)'),
(87924, 73005, 'en', 'name', 'International Air Transport Association'),
(87925, 73006, 'en', 'name', 'Cumberland County Historical Society'),
(87926, 73007, 'en', 'name', 'Association for Play Therapy'),
(87927, 73008, 'no_lang_code', 'name', 'Multibeam (United States)'),
(87928, 73009, 'en', 'name', 'Africa Research Institute'),
(87929, 73010, 'en', 'name', 'Association of University Research Parks'),
(87930, 73011, 'en', 'name', 'Social Tech Trust'),
(87931, 73012, 'ar', 'name', 'وزارة الزراعة ŁˆŲ§Ł„Ų«Ų±ŁˆŲ© Ų§Ł„Ų³Ł…ŁƒŁŠŲ© - سلطنة Ų¹ŁŁ…Ų§Ł†'),
(87932, 73012, 'en', 'name', 'Ministry of Agriculture and Fisheries'),
(87933, 73013, 'en', 'name', 'Green Technology'),
(87934, 73014, 'en', 'name', 'Los Angeles County Superior Court'),
(87935, 73015, 'en', 'name', 'Harry S. Truman Presidential Library and Museum'),
(87936, 73016, 'no_lang_code', 'name', 'Metal Storm (United States)'),
(87937, 73017, 'no_lang_code', 'name', 'Lumibird (France)'),
(87938, 73018, 'en', 'name', 'Blackpool Better Start'),
(87939, 73019, 'no_lang_code', 'name', 'Zębiec (Poland)'),
(87940, 73020, 'en', 'name', 'British Association for South Asian Studies'),
(87941, 73021, 'en', 'name', 'Havering College of Further and Higher Education'),
(87942, 73022, 'de', 'name', 'Energiewirtschaftliches Institut an der UniversitƤt zu Kƶln'),
(87943, 73022, 'en', 'name', 'Institute of Energy Economics at the University of Cologne'),
(87944, 73023, 'no_lang_code', 'name', 'Alaskanativetech (United States)'),
(87945, 73024, 'en', 'name', 'Kino Klassika Foundation'),
(87946, 73025, 'pt', 'name', 'Instituto de Estudos do Trabalho e Sociedade'),
(87947, 73026, 'en', 'name', 'Virgin Care'),
(87948, 73027, 'en', 'name', 'One Text Initiative'),
(87949, 73028, 'no_lang_code', 'name', 'Infinity (United States)'),
(87950, 73029, 'en', 'name', 'Learning Policy Institute'),
(87951, 73030, 'en', 'name', 'Convergence'),
(87952, 73031, 'en', 'name', 'Council of State Administrators of Vocational Rehabilitation'),
(87953, 73032, 'en', 'name', 'Consumer Federation of America'),
(87954, 73033, 'nl', 'name', 'College voor de Rechten van de Mens'),
(87955, 73034, 'en', 'name', 'Canterbury Museums and Galleries'),
(87956, 73035, 'no_lang_code', 'name', 'Diassess (United States)'),
(87957, 73036, 'en', 'name', 'PRS Legislative Research'),
(87958, 73037, 'en', 'name', 'Turnaround for Children'),
(87959, 73038, 'en', 'name', 'Community Development and Health Network'),
(87960, 73039, 'no_lang_code', 'name', 'Inanovate (United States)'),
(87961, 73040, 'en', 'name', 'Dynamic Object Language Labs'),
(87962, 73041, 'en', 'name', 'Jobs With Justice'),
(87963, 73042, 'no_lang_code', 'name', 'NuSep (United States)'),
(87964, 73043, 'en', 'name', 'AARP Foundation'),
(87965, 73044, 'no_lang_code', 'name', 'GPB Scientific (United States)'),
(87966, 73045, 'en', 'name', 'Structural Timber Association'),
(87967, 73046, 'en', 'name', 'Nile University'),
(87968, 73047, 'no_lang_code', 'name', 'Bashpole Software (United States)'),
(87969, 73048, 'en', 'name', 'UK Health Forum'),
(87970, 73049, 'en', 'name', 'Beijing Gender Health Education Institute'),
(87971, 73049, 'zh', 'name', 'åŒ—äŗ¬ēŗŖå®‰å¾·å’ØčÆ¢äø­åæƒ'),
(87972, 73050, 'en', 'name', 'National Institute for Pharmaceutical Technology & Education'),
(87973, 73051, 'no_lang_code', 'name', 'Kytaro (United States)'),
(87974, 73052, 'en', 'name', 'Wales Council for Voluntary Action'),
(87975, 73053, 'en', 'name', 'Gloag Foundation'),
(87976, 73054, 'en', 'name', 'Alfred Williams Heritage Society'),
(87977, 73055, 'no_lang_code', 'name', 'Shirkat Gah'),
(87978, 73056, 'no_lang_code', 'name', 'Axiom (United States)'),
(87979, 73057, 'en', 'name', 'The Kauri Museum'),
(87980, 73058, 'en', 'name', 'California Latinas for Reproductive Justice'),
(87981, 73059, 'en', 'name', 'Lapido Media'),
(87982, 73060, 'en', 'name', 'Oswestry Town Museum'),
(87983, 73061, 'ar', 'name', 'Ł…Ų±ŁƒŲ² الأهرام للدراسات Ų§Ł„Ų³ŁŠŲ§Ų³ŁŠŲ© ŁˆŲ§Ł„Ų§Ų³ŲŖŲ±Ų§ŲŖŁŠŲ¬ŁŠŲ©'),
(87984, 73061, 'en', 'name', 'Al-Ahram Center for Political and Strategic Studies'),
(87985, 73062, 'en', 'name', 'DanChurchAid'),
(87986, 73063, 'en', 'name', 'The Work Foundation'),
(87987, 73064, 'en', 'name', 'Institute of Livelihood Research and Training'),
(87988, 73064, 'te', 'name', 'ą°²ą±†ą±–ą°µą±ą°²ą±€ą°¹ą±ą°”ą± ą°°ą±€ą°øą±†ą°°ą±ą°šą± ą°…ą°‚ą°”ą± ą°Ÿą±ą°°ą±†ą±–ą°Øą°æą°‚ą°—ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą±'),
(87989, 73065, 'en', 'name', 'Seattle Psychoanalytic Society and Institute'),
(87990, 73066, 'fr', 'name', 'Bases, Corpus, Langage'),
(87991, 73067, 'no_lang_code', 'name', 'Torkapparater (Sweden)'),
(87992, 73068, 'en', 'name', 'Limón Institute'),
(87993, 73069, 'no_lang_code', 'name', 'LogMeIn (United Kingdom)'),
(87994, 73070, 'ar', 'name', 'Ų³Ų³Ų© زايد Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł…Ų¤Ų³Ų³Ų© زايد Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų±Ų¹Ų§ŁŠŲ© Ų§Ł„Ų„Ł†Ų³Ų§Ł†ŁŠŲ© ŁˆŲ§Ł„Ų„Ų­ŲŖŁŠŲ§Ų¬Ų§ŲŖ الخاصة'),
(87995, 73070, 'en', 'name', 'Zayed Higher Organization for Humanitarian Care and Special Needs'),
(87996, 73071, 'en', 'name', 'Salem City Schools'),
(87997, 73072, 'en', 'name', 'International Association of Teachers of English as a Foreign Language'),
(87998, 73073, 'no_lang_code', 'name', 'KuÅŗnia Stalowa Wola (Poland)'),
(87999, 73074, 'no_lang_code', 'name', 'SpectraCure (Sweden)'),
(88000, 73075, 'en', 'name', 'Federation for Self Financing Tertiary Education'),
(88001, 73075, 'zh', 'name', 'č‡Ŗč³‡é«˜ē­‰ę•™č‚²čÆē›Ÿ'),
(88002, 73076, 'en', 'name', 'Ways to Wellness'),
(88003, 73077, 'en', 'name', 'Airport Services Association'),
(88004, 73078, 'en', 'name', 'Sheffield Industrial Museums Trust'),
(88005, 73079, 'no_lang_code', 'name', 'Royal London Group (United Kingdom)'),
(88006, 73080, 'no_lang_code', 'name', 'Jonas (United States)'),
(88007, 73081, 'en', 'name', 'Institute of Religious Studies'),
(88008, 73081, 'pt', 'name', 'Instituto de Estudos da Religião'),
(88009, 73082, 'en', 'name', 'Family Mediation Council'),
(88010, 73083, 'en', 'name', 'Habitat for Humanity'),
(88011, 73084, 'en', 'name', 'Institute of Criminology of the Polish Forensic Association'),
(88012, 73084, 'pl', 'name', 'Polskie Towarzystwo Kryminalistyczne'),
(88013, 73085, 'de', 'name', 'DRK Krankenhaus Altenkirchen-Hachenburg'),
(88014, 73086, 'en', 'name', 'Paediatric Emergency Research in the United Kingdom & Ireland'),
(88015, 73087, 'en', 'name', 'Koshish Charitable Trust'),
(88016, 73087, 'hi', 'name', 'ą¤•ą„‹ą¤¶ą¤æą¤¶'),
(88017, 73088, 'en', 'name', 'Solar Fuels Institute'),
(88018, 73089, 'no_lang_code', 'name', 'Chhandam School of Kathak'),
(88019, 73090, 'en', 'name', 'Human Services Coalition'),
(88020, 73091, 'en', 'name', 'Coalition for Community Schools'),
(88021, 73092, 'no_lang_code', 'name', 'Carbon Carbon Advanced Technologies (United States)'),
(88022, 73093, 'en', 'name', 'Association for Robots in Architecture'),
(88023, 73094, 'no_lang_code', 'name', 'Corgenix (United States)'),
(88024, 73095, 'en', 'name', 'Worcestershire Health and Care NHS Trust'),
(88025, 73096, 'en', 'name', 'Media Archive for Central England'),
(88026, 73097, 'en', 'name', 'Glenbow Museum'),
(88027, 73098, 'no_lang_code', 'name', 'Howell Laboratories (United States)'),
(88028, 73099, 'en', 'name', 'One to One Development Trust'),
(88029, 73100, 'no_lang_code', 'name', 'Getica (Sweden)'),
(88030, 73101, 'no_lang_code', 'name', 'Bell Biosystems (United States)'),
(88031, 73102, 'de', 'name', 'Mannheimer Zentrum für Evaluation und Entwicklungsforschung'),
(88032, 73102, 'en', 'name', 'Center for Evaluation and Development'),
(88033, 73103, 'no_lang_code', 'name', 'C-2 Innovations (United States)'),
(88034, 73104, 'no_lang_code', 'name', 'SilMach (France)'),
(88035, 73105, 'no_lang_code', 'name', 'CheckUp & Choices (United States)'),
(88036, 73106, 'en', 'name', 'Xavier Institute of Communications'),
(88037, 73106, 'hi', 'name', 'ą¤œą¤¼ą„‡ą¤µą¤æą¤Æą¤° ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤•ą¤®ą„ą¤Æą„ą¤Øą¤æą¤•ą„‡ą¤¶ą¤Øą„ą¤ø'),
(88038, 73107, 'no_lang_code', 'name', 'Acorn Science & Innovation (United States)'),
(88039, 73108, 'no_lang_code', 'name', 'Insilixa (United States)'),
(88040, 73109, 'en', 'name', 'Toniic Institute'),
(88041, 73110, 'no_lang_code', 'name', 'Cardiosolv Ablation Technologies (United States)'),
(88042, 73111, 'en', 'name', 'Association of English Cathedrals'),
(88043, 73112, 'no_lang_code', 'name', 'Uttarakhand Seva Nidhi Paryavaran Shiksha Sansthan'),
(88044, 73113, 'no_lang_code', 'name', 'Curl Bio (United States)'),
(88045, 73114, 'en', 'name', 'American Jazz Institute'),
(88046, 73115, 'no_lang_code', 'name', 'ISCO International (United States)'),
(88047, 73116, 'en', 'name', 'National Council for Black Studies'),
(88048, 73117, 'en', 'name', 'Center for Whale Research'),
(88049, 73118, 'no_lang_code', 'name', 'LightStanza (United States)'),
(88050, 73119, 'en', 'name', 'Amani Institute Uganda'),
(88051, 73120, 'no_lang_code', 'name', 'Tauron Wytwarzanie (Poland)'),
(88052, 73121, 'no_lang_code', 'name', 'AlphaTRAC (United States)'),
(88053, 73122, 'en', 'name', 'Health Nest Uganda'),
(88054, 73123, 'en', 'name', 'Arkansas Community Colleges'),
(88055, 73124, 'no_lang_code', 'name', 'Lingua et Machina (France)'),
(88056, 73125, 'no_lang_code', 'name', 'Emerald Sky Technologies'),
(88057, 73126, 'no_lang_code', 'name', 'Heliospectra (Sweden)'),
(88058, 73127, 'en', 'name', 'Darbar'),
(88059, 73128, 'en', 'name', 'International Association of Plumbing and Mechanical Officials'),
(88060, 73129, 'sv', 'name', 'WeMind'),
(88061, 73130, 'en', 'name', 'Zhuzhou Central Hospital'),
(88062, 73130, 'zh', 'name', 'ę Ŗę“²åø‚äø­åæƒåŒ»é™¢'),
(88063, 73131, 'no_lang_code', 'name', '4Power (United States)'),
(88064, 73132, 'en', 'name', 'Watershed Support Services and Activities Network'),
(88065, 73133, 'no_lang_code', 'name', 'AsystBio (United States)'),
(88066, 73134, 'en', 'name', 'Kansas City Public Schools'),
(88067, 73135, 'no_lang_code', 'name', 'NBL Technovator Group (Japan)'),
(88068, 73136, 'en', 'name', 'IST Research'),
(88069, 73137, 'no_lang_code', 'name', 'RIKA (Austria)'),
(88070, 73138, 'el', 'name', 'ĪœĪæĻ…ĻƒĪµĪÆĪæ Ī‘ĪŗĻĻŒĻ€ĪæĪ»Ī·Ļ‚'),
(88071, 73138, 'en', 'name', 'Acropolis Museum'),
(88072, 73139, 'no_lang_code', 'name', 'Valero Energy (United States)'),
(88073, 73140, 'no_lang_code', 'name', '​Eicosis (United States)'),
(88074, 73141, 'en', 'name', 'Polish Academy of Learning'),
(88075, 73141, 'pl', 'name', 'Polska Akademia Umiejętności'),
(88076, 73142, 'no_lang_code', 'name', 'Goleta Engineering (United States)'),
(88077, 73143, 'en', 'name', 'Academy of Public Administration'),
(88078, 73143, 'ro', 'name', 'Academia de Administrare Publică'),
(88079, 73144, 'en', 'name', 'Gladstone Pottery Museum'),
(88080, 73145, 'en', 'name', 'China Institutes of Contemporary International Relations'),
(88081, 73145, 'zh', 'name', 'äø­å›½ēŽ°ä»£å›½é™…å…³ē³»ē ”ē©¶é™¢'),
(88082, 73146, 'no_lang_code', 'name', 'Saratoga Cardiology Associates (United States)'),
(88083, 73147, 'no_lang_code', 'name', 'Inscopix (United States)'),
(88084, 73148, 'en', 'name', 'Directorate General of Training'),
(88085, 73149, 'no_lang_code', 'name', 'HNU Photonics (United States)'),
(88086, 73150, 'es', 'name', 'Escuela Nacional Superior de Ballet'),
(88087, 73151, 'en', 'name', 'Ministry of Labour, Social Security and Services'),
(88088, 73152, 'en', 'name', 'Inward Bound Mindfulness Education'),
(88089, 73153, 'no_lang_code', 'name', 'Medsleuth (United States)'),
(88090, 73154, 'no_lang_code', 'name', 'Cervantes Institute'),
(88091, 73155, 'no_lang_code', 'name', 'Danpet (Sweden)'),
(88092, 73156, 'en', 'name', 'Alaska Community Action on Toxics'),
(88093, 73157, 'no_lang_code', 'name', 'Kyocera (United Kingdom)'),
(88094, 73158, 'no_lang_code', 'name', 'Accacia International (United States)'),
(88095, 73159, 'no_lang_code', 'name', 'NeuroProof (Germany)'),
(88096, 73160, 'en', 'name', 'Cat Tien National Park'),
(88097, 73160, 'vi', 'name', 'VĘ°į»n Quốc Gia CĆ”t TiĆŖn'),
(88098, 73161, 'pt', 'name', 'Anis'),
(88099, 73162, 'no_lang_code', 'name', 'Inproel (Poland)'),
(88100, 73163, 'en', 'name', 'Indonesia International Institute for Life Sciences'),
(88101, 73164, 'no_lang_code', 'name', 'Automation, Information, and Management Systems (United States)'),
(88102, 73165, 'en', 'name', 'British Ports Association'),
(88103, 73166, 'en', 'name', 'Equal Education Law Centre'),
(88104, 73167, 'en', 'name', 'Vietnam Journalists Association'),
(88105, 73167, 'vi', 'name', 'Hį»™i NhĆ  bĆ”o Việt Nam'),
(88106, 73168, 'en', 'name', 'Beijing Social Work Development Center for Facilitators'),
(88107, 73168, 'zh', 'name', 'åŒ—äŗ¬åø‚åä½œč€…ē¤¾ä¼šå·„ä½œå‘å±•äø­åæƒ'),
(88108, 73169, 'sv', 'name', 'VƤsttrafik'),
(88109, 73170, 'en', 'name', 'The Carbon Monoxide and Gas Safety Society'),
(88110, 73171, 'no_lang_code', 'name', 'Apptronik (United States)'),
(88111, 73172, 'pt', 'name', 'Hospital das Clínicas Samuel Libânio'),
(88112, 73173, 'no_lang_code', 'name', 'LatinoJustice PRLDEF'),
(88113, 73174, 'en', 'name', 'Polish Stem Cell Bank'),
(88114, 73174, 'pl', 'name', 'Polski Bank Komórek Macierzystych'),
(88115, 73175, 'en', 'name', 'Bulgarian Helsinki Committee'),
(88116, 73176, 'fr', 'name', 'Centre Lavallois de Ressources Technologiques, Clarte'),
(88117, 73177, 'en', 'name', 'Poetry International Foundation'),
(88118, 73178, 'ar', 'name', 'الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„Ų¬Ł†ŁˆŲØŁŠŲ©'),
(88119, 73178, 'en', 'name', 'Southern Technical University'),
(88120, 73179, 'no_lang_code', 'name', 'TeleMedic Systems (United Kingdom)'),
(88121, 73180, 'no_lang_code', 'name', 'Cognionics (United States)'),
(88122, 73181, 'en', 'name', 'Ministry of Land Management, Urban Planning and Construction'),
(88123, 73181, 'km', 'name', 'įž€įŸ’įžšįžŸįž½įž„įžšįŸ€įž”įž…įŸ†įžŠįŸ‚įž“įžŠįžø įž“įž‚įžšįž¼įž”įž“įžøįž™įž€įž˜įŸ’įž˜ įž“įž·įž„įžŸįŸ†įžŽįž„įŸ‹'),
(88124, 73182, 'en', 'name', 'Arab Center for International Humanitarian Law and Human Rights Education'),
(88125, 73182, 'fr', 'name', 'Centre Arabe pour l''Education au Droit International Humanitaire et aux Droits Humains'),
(88126, 73183, 'no_lang_code', 'name', 'CLEARink (United States)'),
(88127, 73184, 'de', 'name', 'Senckenberg am Meer'),
(88128, 73185, 'en', 'name', 'Marine Science Coordination Committee'),
(88129, 73186, 'no_lang_code', 'name', 'Axillium Research (United Kingdom)'),
(88130, 73187, 'en', 'name', 'Cohen Medical Associates'),
(88131, 73188, 'de', 'name', 'Ameos Klinikum Inntal'),
(88132, 73189, 'en', 'name', 'Institute of Information Security Professionals'),
(88133, 73190, 'en', 'name', 'British Council'),
(88134, 73191, 'en', 'name', 'Empower Schools'),
(88135, 73192, 'en', 'name', 'Red Poll Cattle Society'),
(88136, 73193, 'en', 'name', 'Society for Labour & Development'),
(88137, 73194, 'de', 'name', 'Dermatopathologie Friedrichshafen'),
(88138, 73195, 'en', 'name', 'HealthWORKS Newcastle'),
(88139, 73196, 'en', 'name', 'Publishers Licensing Services'),
(88140, 73197, 'no_lang_code', 'name', 'EnetjƤrn Natur (Sweden)'),
(88141, 73198, 'no_lang_code', 'name', 'Shanxi Museum'),
(88142, 73198, 'zh', 'name', 'å±±č„æåšē‰©é™¢'),
(88143, 73199, 'de', 'name', 'Südharz Klinikum'),
(88144, 73200, 'en', 'name', 'British Association for Islamic Studies'),
(88145, 73201, 'no_lang_code', 'name', 'Sama (Brazil)'),
(88146, 73202, 'en', 'name', 'National Engineering and Scientific Commission'),
(88147, 73203, 'no_lang_code', 'name', 'CellSight Technologies (United States)'),
(88148, 73204, 'en', 'name', 'The Communication Trust'),
(88149, 73205, 'en', 'name', 'East Belfast Community Development Agency'),
(88150, 73206, 'en', 'name', 'Corrymeela Community'),
(88151, 73207, 'no_lang_code', 'name', 'Peppy Pals (Sweden)'),
(88152, 73208, 'no_lang_code', 'name', 'Compositex (United States)'),
(88153, 73209, 'no_lang_code', 'name', 'AchƩ (Brazil)'),
(88154, 73210, 'en', 'name', 'Jammu and Kashmir Academy of Art, Culture and Languages'),
(88155, 73211, 'en', 'name', 'American Bible Society'),
(88156, 73212, 'no_lang_code', 'name', 'Dendris (France)'),
(88157, 73213, 'en', 'name', 'Indian Law Resource Center'),
(88158, 73214, 'en', 'name', 'Patagonian Ecosystems Investigation Research Center'),
(88159, 73214, 'es', 'name', 'Centro de Investigación en Ecosistemas de la Patagonia'),
(88160, 73215, 'no_lang_code', 'name', 'Hesperos (United States)'),
(88161, 73216, 'no_lang_code', 'name', 'Ceryx Medical (United Kingdom)'),
(88162, 73217, 'no_lang_code', 'name', 'Erallo Technologies (United States)'),
(88163, 73218, 'en', 'name', 'Centre for Social Innovation'),
(88164, 73219, 'en', 'name', 'Police Executive Research Forum'),
(88165, 73220, 'no_lang_code', 'name', 'Marine Environmental Analysis (Sweden)'),
(88166, 73220, 'sv', 'name', 'Marin Miljƶanalys'),
(88167, 73221, 'no_lang_code', 'name', 'Jackson and Tull (United States)'),
(88168, 73222, 'no_lang_code', 'name', 'CellOptic (United States)'),
(88169, 73223, 'de', 'name', 'Medizinische Zentrum für Gesundheit'),
(88170, 73224, 'en', 'name', 'Georgian Arts and Culture Center'),
(88171, 73224, 'ka', 'name', 'įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜ įƒ®įƒ”įƒšįƒįƒ•įƒœįƒ”įƒ‘įƒ˜įƒ” ინეტიტუტი įƒ¬įƒįƒ›įƒ§įƒ•įƒįƒœįƒ˜ įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ˜'),
(88172, 73225, 'en', 'name', 'WATCH'),
(88173, 73226, 'en', 'name', 'The National Institute for Latino Policy'),
(88174, 73227, 'no_lang_code', 'name', 'Coapt (United States)'),
(88175, 73228, 'en', 'name', 'Public Health Research Consortium'),
(88176, 73229, 'no_lang_code', 'name', 'Governo (Sweden)'),
(88177, 73230, 'no_lang_code', 'name', 'Alector (United States)'),
(88178, 73231, 'en', 'name', 'Center for Urban History of East Central Europe'),
(88179, 73231, 'uk', 'name', 'Центр Š¼Ń–ŃŃŒŠŗŠ¾Ń— історії Ń†ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-схіГної Європи'),
(88180, 73232, 'en', 'name', 'DDR Museum'),
(88181, 73233, 'no_lang_code', 'name', 'FringeArts'),
(88182, 73234, 'en', 'name', 'Software Carpentry'),
(88183, 73235, 'en', 'name', 'Bay Area Cardiology and Vascular Associates'),
(88184, 73236, 'no_lang_code', 'name', 'Brinks Gilson & Lione (United States)'),
(88185, 73237, 'de', 'name', 'Bundesamt für Migration und Flüchtlinge'),
(88186, 73237, 'en', 'name', 'Federal Office for Migration and Refugees'),
(88187, 73238, 'en', 'name', 'Money Advice Trust'),
(88188, 73239, 'no_lang_code', 'name', 'Gamma Therapeutics (United States)'),
(88189, 73240, 'en', 'name', 'Institute of Chartered Financial Analysts of India University, Jaipur'),
(88190, 73241, 'en', 'name', 'National Management Degree College'),
(88191, 73242, 'en', 'name', 'Xi''an High Tech University'),
(88192, 73242, 'zh', 'name', 'č„æå®‰é«˜ę–°ē§‘ęŠ€čŒäøšå­¦é™¢'),
(88193, 73243, 'en', 'name', 'Toft Historical Society'),
(88194, 73244, 'en', 'name', 'PetroVietnam University'),
(88195, 73244, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Dįŗ§u khĆ­ Việt Nam'),
(88196, 73245, 'en', 'name', 'Mamta Health Institute for Mother and Child'),
(88197, 73246, 'en', 'name', 'Bletchley Park Trust'),
(88198, 73247, 'no_lang_code', 'name', 'PressCise (Sweden)'),
(88199, 73248, 'en', 'name', 'National Mining Museum Scotland'),
(88200, 73249, 'no_lang_code', 'name', 'Gleechi (Sweden)'),
(88201, 73250, 'no_lang_code', 'name', 'Amercom (United States)'),
(88202, 73251, 'en', 'name', 'Ishara Puppet Theatre Trust'),
(88203, 73252, 'no_lang_code', 'name', 'Adient Medical (United States)'),
(88204, 73253, 'en', 'name', 'British Olympic Association'),
(88205, 73254, 'en', 'name', 'West Virginia Department of Military Affairs and Public Safety'),
(88206, 73255, 'en', 'name', 'SB Science Management'),
(88207, 73256, 'no_lang_code', 'name', '4D (United Kingdom)'),
(88208, 73257, 'en', 'name', 'The Facilities Society'),
(88209, 73258, 'en', 'name', 'The Hellenic Centre'),
(88210, 73259, 'en', 'name', 'Britannia Panopticon'),
(88211, 73260, 'en', 'name', 'Shaoguan Railway Hospital'),
(88212, 73260, 'zh', 'name', 'éŸ¶å…³åø‚é“č·ÆåŒ»é™¢'),
(88213, 73261, 'en', 'name', 'Foster Care Associates Scotland'),
(88214, 73262, 'no_lang_code', 'name', 'Cytonics (United States)'),
(88215, 73263, 'en', 'name', 'Center for Interdisciplinary Studies'),
(88216, 73264, 'no_lang_code', 'name', 'Express Medicals (United Kingdom)'),
(88217, 73265, 'no_lang_code', 'name', 'Oxford Applied Research (United Kingdom)'),
(88218, 73266, 'en', 'name', 'Center for Democracy in the Americas'),
(88219, 73267, 'en', 'name', 'Serendib Foundation for Music and Performing Arts'),
(88220, 73268, 'en', 'name', 'Barbados Community College'),
(88221, 73269, 'en', 'name', 'Education Through Music'),
(88222, 73270, 'no_lang_code', 'name', 'Richard Allitt Associates (United Kingdom)'),
(88223, 73271, 'no_lang_code', 'name', 'Furukawa Electric (Denmark)'),
(88224, 73272, 'en', 'name', 'Topos'),
(88225, 73273, 'en', 'name', 'Torbay Council'),
(88226, 73274, 'en', 'name', 'Centre for Fine Arts'),
(88227, 73274, 'fr', 'name', 'Palais des Beaux-Arts'),
(88228, 73274, 'nl', 'name', 'Paleis voor Schone Kunsten'),
(88229, 73275, 'en', 'name', 'Nanjing Foreign Language School'),
(88230, 73275, 'zh', 'name', 'å—äŗ¬å¤–å›½čÆ­å­¦ę ”'),
(88231, 73276, 'no_lang_code', 'name', 'CMM Energy (United States)'),
(88232, 73277, 'en', 'name', 'South West Vineyards Association'),
(88233, 73278, 'no_lang_code', 'name', 'Ketebul Music'),
(88234, 73279, 'no_lang_code', 'name', 'Menard (Poland)'),
(88235, 73280, 'no_lang_code', 'name', 'SpaceX (United States)'),
(88236, 73281, 'en', 'name', 'HAT Community Foundation'),
(88237, 73282, 'no_lang_code', 'name', 'Mikronatura Środowisko (Poland)'),
(88238, 73283, 'en', 'name', 'Royal Liverpool Philharmonic'),
(88239, 73284, 'en', 'name', 'Torquay Museum'),
(88240, 73285, 'no_lang_code', 'name', 'Model Driven Solutions (United States)'),
(88241, 73286, 'en', 'name', 'Molecular Sciences Software Institute'),
(88242, 73287, 'en', 'name', 'Working Families'),
(88243, 73288, 'de', 'name', 'Bayerisches Nationalmuseum'),
(88244, 73288, 'en', 'name', 'Bavarian National Museum'),
(88245, 73289, 'sv', 'name', 'Aleris HƤlsocentral BollnƤs'),
(88246, 73290, 'no_lang_code', 'name', 'Fourth State (United Kingdom)'),
(88247, 73291, 'en', 'name', 'Center for Responsible Enterprise And Trade'),
(88248, 73292, 'en', 'name', 'Mind Music Labs'),
(88249, 73293, 'en', 'name', 'Prosperity Now'),
(88250, 73294, 'no_lang_code', 'name', 'Bakhtar Research and Engineering (United States)'),
(88251, 73295, 'no_lang_code', 'name', 'Adelwitz Technologiezentrum (Germany)'),
(88252, 73296, 'no_lang_code', 'name', 'David Jarvis Associates (United Kingdom)'),
(88253, 73297, 'en', 'name', 'Ministry of Internal Affairs of the Kyrgyz Republic'),
(88254, 73297, 'ky', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел ŠšŠøŃ€Š³ŠøŠ·ŃŠŗŠ¾Š¹ Республики'),
(88255, 73297, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š· Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Š½ Š˜Ń‡ŠŗŠø Š˜ŃˆŃ‚ŠµŃ€ ŠœŠøŠ½ŠøŃŃ‚Ń€Š»ŠøŠ³Šø'),
(88256, 73298, 'en', 'name', 'Dalarna Science Park'),
(88257, 73299, 'en', 'name', 'Kovno Communications'),
(88258, 73300, 'en', 'name', 'Galt Museum & Archives'),
(88259, 73301, 'en', 'name', 'Population Media Center'),
(88260, 73302, 'da', 'name', 'Orionplanetarium'),
(88261, 73303, 'es', 'name', 'Vasos Comunicantes'),
(88262, 73304, 'en', 'name', 'African Woman and Child Feature Service'),
(88263, 73305, 'no_lang_code', 'name', 'Proteca (Brazil)'),
(88264, 73306, 'en', 'name', 'Delegation of the European Union to the Kyrgyz Republic'),
(88265, 73307, 'en', 'name', 'Community Museum Project'),
(88266, 73308, 'en', 'name', 'Citizens UK'),
(88267, 73309, 'en', 'name', 'HB Studio'),
(88268, 73310, 'no_lang_code', 'name', 'Intelligent Medical Objects (United States)'),
(88269, 73311, 'en', 'name', 'TAFE Directors Australian'),
(88270, 73312, 'en', 'name', 'National Heritage Science Forum'),
(88271, 73313, 'en', 'name', 'Action for Trans Health'),
(88272, 73314, 'en', 'name', 'Scottish Council for Voluntary Organisations'),
(88273, 73315, 'no_lang_code', 'name', 'Sigrid Therapeutics (Sweden)'),
(88274, 73316, 'en', 'name', 'Sing Up Foundation'),
(88275, 73317, 'en', 'name', 'Sunraysia Institute of TAFE'),
(88276, 73318, 'en', 'name', 'Banner Health Foundation'),
(88277, 73319, 'no_lang_code', 'name', 'Effecta (Sweden)'),
(88278, 73320, 'en', 'name', 'Update Institute of Professional Studies'),
(88279, 73321, 'no_lang_code', 'name', 'Advanced Space Technology Research (United States)'),
(88280, 73322, 'en', 'name', 'Centre for Low Carbon Futures'),
(88281, 73323, 'en', 'name', 'European Second Language Association'),
(88282, 73324, 'no_lang_code', 'name', 'Tektura Opakowania Papier (Poland)'),
(88283, 73325, 'en', 'name', 'Brazilian Interdisciplinary AIDS Association'),
(88284, 73326, 'en', 'name', 'Royal African Society'),
(88285, 73327, 'en', 'name', 'El Museo'),
(88286, 73328, 'no_lang_code', 'name', 'Advanced Genomic Technology (United States)'),
(88287, 73329, 'en', 'name', 'British Texel Sheep Society'),
(88288, 73330, 'en', 'name', 'Child Welfare Society of Kenya'),
(88289, 73331, 'no_lang_code', 'name', 'Klogene (United States)'),
(88290, 73332, 'cs', 'name', 'Centrum pro SoučasnĆ© UměnĆ­ Praha'),
(88291, 73332, 'en', 'name', 'Center for Contemporary Arts Prague'),
(88292, 73333, 'en', 'name', 'The Arboretum at Flagstaff'),
(88293, 73334, 'en', 'name', 'Native American Rights Fund'),
(88294, 73335, 'en', 'name', 'Comunn Eachdraidh Nis'),
(88295, 73336, 'fr', 'name', 'HƓpitaux Iris Sud'),
(88296, 73337, 'no_lang_code', 'name', 'Buildlab (United States)'),
(88297, 73338, 'en', 'name', 'Krinova Incubator & Science Park'),
(88298, 73339, 'no_lang_code', 'name', 'Cliris (Switzerland)'),
(88299, 73340, 'en', 'name', 'Institute for Conflict Research'),
(88300, 73341, 'en', 'name', 'Institute for the Dynamics of Environmental Processes'),
(88301, 73341, 'it', 'name', 'Istituto per la Dinamica dei Processi Ambientali'),
(88302, 73342, 'no_lang_code', 'name', 'Cardinal Engineering (United States)'),
(88303, 73343, 'de', 'name', 'Fachhochschule für die Wirtschaft Hannover'),
(88304, 73343, 'en', 'name', 'University of Applied Sciences FHDW Hannover'),
(88305, 73344, 'no_lang_code', 'name', 'Custom Scientific (United States)'),
(88306, 73345, 'en', 'name', 'Aga Khan Foundation'),
(88307, 73346, 'en', 'name', 'National Ice Centre'),
(88308, 73347, 'no_lang_code', 'name', 'EngineersHRW (United Kingdom)'),
(88309, 73348, 'en', 'name', 'Institute of Peruvian Studies'),
(88310, 73348, 'es', 'name', 'Instituto de Estudios Peruanos'),
(88311, 73349, 'no_lang_code', 'name', 'Angel Secure Networks (United States)'),
(88312, 73350, 'en', 'name', 'New Museum'),
(88313, 73351, 'no_lang_code', 'name', 'MapLarge (United States)'),
(88314, 73352, 'en', 'name', 'Chancellery of the Prime Minister'),
(88315, 73352, 'pl', 'name', 'Kancelaria Prezesa Rady Ministrów'),
(88316, 73353, 'en', 'name', 'Centre for Contemporary Art'),
(88317, 73354, 'no_lang_code', 'name', 'Edge Case Research (United States)'),
(88318, 73355, 'en', 'name', 'American University of Phnom Penh'),
(88319, 73355, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž¢įž¶įž˜įŸįžšįž·įž€įž¶įŸ†įž„įž—įŸ’įž“įŸ†įž–įŸįž‰'),
(88320, 73356, 'no_lang_code', 'name', 'CalciMedica (United States)'),
(88321, 73357, 'en', 'name', 'Groninger Museum'),
(88322, 73358, 'af', 'name', 'Afesis-Corplan'),
(88323, 73359, 'en', 'name', 'The Judge Advocate General''s Legal Center and School'),
(88324, 73360, 'no_lang_code', 'name', 'ReceptorPharma (Sweden)'),
(88325, 73361, 'en', 'name', 'Institute for Social Transformation'),
(88326, 73362, 'no_lang_code', 'name', 'ƅland Maritime Museum'),
(88327, 73362, 'sv', 'name', 'ƅlands sjƶfartsmuseum'),
(88328, 73363, 'en', 'name', 'Hungarian Demographic Research Institute'),
(88329, 73364, 'en', 'name', 'Mondo Foundation'),
(88330, 73365, 'en', 'name', 'Poplar Housing and Regeneration Community Association'),
(88331, 73366, 'no_lang_code', 'name', 'CellProtect Nordic Pharmaceuticals (Sweden)'),
(88332, 73367, 'en', 'name', 'Climate and Development Knowledge Network'),
(88333, 73368, 'no_lang_code', 'name', 'International Centre for Advanced Materials (United Kingdom)'),
(88334, 73369, 'no_lang_code', 'name', 'Lexplore (Sweden)'),
(88335, 73370, 'en', 'name', 'Residency Unlimited'),
(88336, 73371, 'en', 'name', 'Feminist Archive South'),
(88337, 73372, 'en', 'name', 'Press Association'),
(88338, 73373, 'en', 'name', 'Norfolk Museums Service'),
(88339, 73374, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ΠαιΓικό ĪœĪæĻ…ĻƒĪµĪÆĪæ'),
(88340, 73374, 'en', 'name', 'Hellenic Children''s Museum'),
(88341, 73375, 'no_lang_code', 'name', 'Clearwater Group (United States)'),
(88342, 73376, 'no_lang_code', 'name', 'Image Metrics (United Kingdom)'),
(88343, 73377, 'en', 'name', 'Institute of Social Sciences'),
(88344, 73378, 'no_lang_code', 'name', 'Nomino (Poland)'),
(88345, 73379, 'de', 'name', 'Helios Endo-Klinik Hamburg'),
(88346, 73380, 'en', 'name', 'National Youth Science Forum'),
(88347, 73381, 'en', 'name', 'Thomson Reuters Foundation'),
(88348, 73382, 'it', 'name', 'Associazione Radioamatori Italiani'),
(88349, 73383, 'en', 'name', 'Seoul Central District Court'),
(88350, 73383, 'ko', 'name', 'ģ„œģšøģ¤‘ģ•™ģ§€ė°©ė²•ģ›'),
(88351, 73384, 'en', 'name', 'Keswick Museum'),
(88352, 73385, 'en', 'name', 'Tyndall Centre'),
(88353, 73386, 'en', 'name', 'Quakers'),
(88354, 73387, 'en', 'name', 'Hawaii Institute for Public Affairs'),
(88355, 73388, 'en', 'name', 'Airports Council International Europe'),
(88356, 73389, 'no_lang_code', 'name', 'Falmouth Scientific (United States)'),
(88357, 73390, 'no_lang_code', 'name', 'Multidisciplinary Software Systems Research (United States)'),
(88358, 73391, 'en', 'name', 'Il’laramatak Community Concerns'),
(88359, 73392, 'en', 'name', 'British Council'),
(88360, 73393, 'no_lang_code', 'name', 'AVEKA (United States)'),
(88361, 73394, 'en', 'name', 'Central Compilation & Translation Bureau'),
(88362, 73394, 'zh', 'name', 'äø­å¤®ē¼–čÆ‘å±€ęÆ”č¾ƒę”æę²»äøŽē»ęµŽē ”ē©¶äø­åæƒ'),
(88363, 73395, 'no_lang_code', 'name', 'Walker-Moffat (United States)'),
(88364, 73396, 'no_lang_code', 'name', 'Daktari Diagnostics (United States)'),
(88365, 73397, 'no_lang_code', 'name', 'Foresite (United States)'),
(88366, 73398, 'en', 'name', 'American Chamber of Commerce in Kosovo'),
(88367, 73398, 'sq', 'name', 'Oda Ekonomike Amerikane ne Kosove'),
(88368, 73399, 'no_lang_code', 'name', 'Amalgamated Sugar (United States)'),
(88369, 73400, 'en', 'name', 'British Deaf Association'),
(88370, 73401, 'en', 'name', 'Her Majesty''s Inspectorate of Constabulary in Scotland'),
(88371, 73402, 'no_lang_code', 'name', 'Fealinx (France)'),
(88372, 73403, 'en', 'name', 'South African Council for Planners'),
(88373, 73404, 'en', 'name', 'Islamic Azad University Yasuj'),
(88374, 73404, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد یاسوج'),
(88375, 73405, 'en', 'name', 'The African Arts Trust'),
(88376, 73406, 'en', 'name', 'Housing and Community Development Network of New Jersey'),
(88377, 73407, 'no_lang_code', 'name', '2D Fab (Sweden)'),
(88378, 73408, 'no_lang_code', 'name', 'Critical Innovations (United States)'),
(88379, 73409, 'en', 'name', 'SANE Mental Health Charity'),
(88380, 73410, 'sv', 'name', 'Adopticum'),
(88381, 73411, 'no_lang_code', 'name', 'Pain Care Labs (United States)'),
(88382, 73412, 'no_lang_code', 'name', 'Influx (United States)'),
(88383, 73413, 'no_lang_code', 'name', 'Cyteir Therapeutics (United States)'),
(88384, 73414, 'en', 'name', 'China Education Press Agency'),
(88385, 73414, 'zh', 'name', 'äø­å›½ę•™č‚²ęŠ„åˆŠē¤¾'),
(88386, 73415, 'en', 'name', 'Berkshire Buckinghamshire and Oxfordshire Wildlife Trust'),
(88387, 73416, 'en', 'name', 'Indian Institute of Water Management'),
(88388, 73417, 'en', 'name', 'North of England Civic Trust'),
(88389, 73418, 'no_lang_code', 'name', 'Biomedical Acoustics (United States)'),
(88390, 73419, 'en', 'name', 'Indian Pharmacist Association'),
(88391, 73420, 'en', 'name', 'European Communication Research and Education Association'),
(88392, 73421, 'en', 'name', 'Global Campaign for Education United States'),
(88393, 73422, 'es', 'name', 'Instituto Nacional de LimnologĆ­a'),
(88394, 73423, 'en', 'name', 'Physicotechnical Institute'),
(88395, 73423, 'uz', 'name', 'Fizika-Texnika Instituti'),
(88396, 73424, 'no_lang_code', 'name', 'Colfax (United States)'),
(88397, 73425, 'de', 'name', 'Clemenshospital Münster'),
(88398, 73426, 'no_lang_code', 'name', 'Nolan Associates (United Kingdom)'),
(88399, 73427, 'no_lang_code', 'name', 'Ascent Solar (United States)'),
(88400, 73428, 'hi', 'name', 'Ramakrishna Mission Vidyalaya'),
(88401, 73429, 'es', 'name', 'Centro Mexicano de Derecho Ambiental'),
(88402, 73430, 'en', 'name', 'Institution of Agricultural Engineers'),
(88403, 73431, 'en', 'name', 'School Health Research Network'),
(88404, 73432, 'en', 'name', 'Northwest Evaluation Association'),
(88405, 73433, 'en', 'name', 'MI College'),
(88406, 73434, 'no_lang_code', 'name', 'H-DOX (United States)'),
(88407, 73435, 'en', 'name', 'Association of Colleges'),
(88408, 73436, 'en', 'name', 'Wild Trout Trust'),
(88409, 73437, 'no_lang_code', 'name', 'Cova (United States)'),
(88410, 73438, 'en', 'name', 'PNLP'),
(88411, 73439, 'en', 'name', 'Hendrick Hudson School District'),
(88412, 73440, 'en', 'name', 'Ensenada Institute of Technology'),
(88413, 73440, 'es', 'name', 'Instituto Tecnológico de Ensenada'),
(88414, 73441, 'en', 'name', 'Children’s Arthritis Association'),
(88415, 73442, 'en', 'name', 'Center for Story-based Strategy'),
(88416, 73443, 'en', 'name', 'Environmental Education Exchange'),
(88417, 73444, 'no_lang_code', 'name', 'Ourofino SaĆŗde Animal (Brazil)'),
(88418, 73445, 'en', 'name', 'Athena Sustainable Materials Institute'),
(88419, 73446, 'no_lang_code', 'name', 'BioMimetic Systems (United States)'),
(88420, 73447, 'no_lang_code', 'name', 'Applied Design Labs (United States)'),
(88421, 73448, 'en', 'name', 'Development Alternatives with Women for a New Era'),
(88422, 73449, 'no_lang_code', 'name', 'Saur (Armenia)'),
(88423, 73450, 'en', 'name', 'Union of Economists of Turkmenistan'),
(88424, 73451, 'no_lang_code', 'name', 'Food Radar Systems (Sweden)'),
(88425, 73452, 'en', 'name', 'Bali Animal Welfare Association'),
(88426, 73453, 'en', 'name', 'Tamba'),
(88427, 73454, 'en', 'name', 'Bayimba'),
(88428, 73455, 'et', 'name', 'PƵlva Haigla'),
(88429, 73456, 'no_lang_code', 'name', 'Cognitive Electronics (United States)'),
(88430, 73457, 'no_lang_code', 'name', 'PPAM Solkraft (Sweden)'),
(88431, 73458, 'no_lang_code', 'name', 'Mikhulu Trust'),
(88432, 73459, 'no_lang_code', 'name', 'Mademoiselle Desserts (United Kingdom)'),
(88433, 73460, 'en', 'name', 'The British Antique Dealers Association'),
(88434, 73461, 'en', 'name', 'Center for High Pressure Science & Technology Advanced Research'),
(88435, 73461, 'zh', 'name', 'åŒ—äŗ¬é«˜åŽ‹ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(88436, 73462, 'en', 'name', 'LearnPlay Foundation'),
(88437, 73463, 'en', 'name', 'Colombian Commission of Jurists'),
(88438, 73463, 'es', 'name', 'Comisión Colombiana de Juristas'),
(88439, 73464, 'en', 'name', 'Berneray Historical Society'),
(88440, 73464, 'gd', 'name', 'Comunn Eachdraidh BheĆ rnaraigh'),
(88441, 73465, 'en', 'name', 'Institute for Social and Economic Research'),
(88442, 73466, 'it', 'name', 'Gruppo Editoriale L''Espresso'),
(88443, 73466, 'no_lang_code', 'name', 'GEDI Gruppo Editoriale (Italy)'),
(88444, 73467, 'en', 'name', 'Ossett Academy'),
(88445, 73468, 'de', 'name', 'Kommission für Geschichte und Kultur der Deutschen in Südosteuropa'),
(88446, 73469, 'no_lang_code', 'name', 'Accel Diagnostics (United States)'),
(88447, 73470, 'en', 'name', 'Research Institute on Sustainable Economic Growth'),
(88448, 73470, 'it', 'name', 'Istituto di Ricerca sulla Crescita Economica Sostenibile'),
(88449, 73471, 'en', 'name', 'Cope Environmental Center'),
(88450, 73472, 'en', 'name', 'York Blind & Partially Sighted Society'),
(88451, 73473, 'en', 'name', 'Ministry of Foreign Affairs'),
(88452, 73473, 'vi', 'name', 'Bį»™ Ngoįŗ”i giao Việt Nam'),
(88453, 73474, 'en', 'name', 'Medic Mobile'),
(88454, 73475, 'es', 'name', 'Poder Judicial de la Ciudad de Buenos Aires'),
(88455, 73476, 'en', 'name', 'Leicestershire Police'),
(88456, 73477, 'no_lang_code', 'name', 'Knopp Biosciences (United States)'),
(88457, 73478, 'en', 'name', 'The Vietnam National Institute of Educational Sciences'),
(88458, 73478, 'vi', 'name', 'Viện Khoa hį»c GiĆ”o dỄc Việt Nam'),
(88459, 73479, 'en', 'name', 'Center for Economic and Social Rights'),
(88460, 73480, 'en', 'name', 'Participatory Development Training Centre'),
(88461, 73480, 'lo', 'name', 'ąŗŖąŗ¹ąŗ™ąŗąŗ¶ąŗąŗ­ąŗ»ąŗšąŗ®ąŗ»ąŗ”ąŗąŗ²ąŗ™ąŗžąŗ±ąŗ”ąŗ—ąŗ°ąŗ™ąŗ²ąŗ—ąŗµą»ˆąŗ”ąŗµąŗŖą»ˆąŗ§ąŗ™ąŗ®ą»ˆąŗ§ąŗ”'),
(88462, 73481, 'en', 'name', 'People''s Action'),
(88463, 73482, 'en', 'name', 'Migration & Asylum Project'),
(88464, 73483, 'en', 'name', 'Perry Foundation'),
(88465, 73484, 'en', 'name', 'The Community Trust'),
(88466, 73485, 'no_lang_code', 'name', 'RxMP Therapeutics (United States)'),
(88467, 73486, 'en', 'name', 'NIHR WoundTec Healthcare Technology Co-operative'),
(88468, 73487, 'no_lang_code', 'name', 'Accord Solutions (United States)'),
(88469, 73488, 'no_lang_code', 'name', 'Ecofys (Germany)'),
(88470, 73489, 'no_lang_code', 'name', 'Bill Harvey Associates (United Kingdom)'),
(88471, 73490, 'en', 'name', 'Private Sector Foundation Uganda'),
(88472, 73491, 'no_lang_code', 'name', 'GamesThatWork (United States)'),
(88473, 73492, 'en', 'name', 'William Temple Foundation'),
(88474, 73493, 'en', 'name', 'Suffolk Horse Society'),
(88475, 73494, 'en', 'name', 'Submicron Heterostructures for Microelectronics Research and Engineering Center'),
(88476, 73494, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠŠ°ŃƒŃ‡Š½Š¾-технологический центр Š¼ŠøŠŗŃ€Š¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø Šø ŃŃƒŠ±Š¼ŠøŠŗŃ€Š¾Š½Š½Ń‹Ń… Š³ŠµŃ‚ŠµŃ€Š¾ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€ Российской акаГемии наук'),
(88477, 73495, 'en', 'name', 'Chelsea Primary School'),
(88478, 73496, 'no_lang_code', 'name', 'Aries Design Automation (United States)'),
(88479, 73497, 'no_lang_code', 'name', 'Riverside Medical Packaging (United Kingdom)'),
(88480, 73498, 'no_lang_code', 'name', 'Arvinas (United States)'),
(88481, 73499, 'en', 'name', 'Foundation for Civil Society'),
(88482, 73500, 'no_lang_code', 'name', 'Zenicor Medical Systems (Sweden)'),
(88483, 73501, 'pt', 'name', 'Terra de Direitos'),
(88484, 73502, 'en', 'name', 'Turquoise Mountain'),
(88485, 73503, 'en', 'name', 'Sex Workers Education & Advocacy Taskforce'),
(88486, 73504, 'no_lang_code', 'name', 'Empirical Systems Aerospace (United States)'),
(88487, 73505, 'es', 'name', 'Dirección Regional de Salud del Callao'),
(88488, 73506, 'no_lang_code', 'name', 'Izola General Hospital'),
(88489, 73506, 'sl', 'name', 'SploŔna BolniŔnica Izola'),
(88490, 73507, 'no_lang_code', 'name', 'BioFactura (United States)'),
(88491, 73508, 'en', 'name', 'Canterbury Archaeological Trust'),
(88492, 73509, 'no_lang_code', 'name', 'Quazar Technologies (India)'),
(88493, 73510, 'en', 'name', 'Centre for Multi-disciplinary Development Research'),
(88494, 73511, 'en', 'name', 'Institute for Agricultural and Earthmoving Machines'),
(88495, 73511, 'it', 'name', 'Istituto per le Macchine Agricole e Movimento Terra'),
(88496, 73512, 'es', 'name', 'Centro Peruano de Estudios Sociales'),
(88497, 73513, 'en', 'name', 'Nanolayers'),
(88498, 73514, 'no_lang_code', 'name', 'Brown and Caldwell (United States)'),
(88499, 73515, 'pt', 'name', 'Grupo de Açãoe Estudos Ambientais'),
(88500, 73516, 'en', 'name', 'Gwynedd Archaeological Trust'),
(88501, 73517, 'it', 'name', 'Cineteca di Bologna'),
(88502, 73518, 'en', 'name', 'Aquincum Institute of Technology'),
(88503, 73519, 'en', 'name', 'Nepal Participatory Action Network'),
(88504, 73520, 'no_lang_code', 'name', 'AdTech Optics (United States)'),
(88505, 73521, 'pt', 'name', 'Instituto Nacional de Psiquiatria do Desenvolvimento para CrianƧas e Adolescentes'),
(88506, 73522, 'en', 'name', 'The National Lobster Hatchery'),
(88507, 73523, 'no_lang_code', 'name', 'Daniel Black and Associates (United States)'),
(88508, 73524, 'no_lang_code', 'name', 'Electroformed Nickel (United States)'),
(88509, 73525, 'az', 'name', 'Genetik Ehtiyatlar İnstitutu'),
(88510, 73525, 'en', 'name', 'Azerbaijan Genetic Resources Institute'),
(88511, 73526, 'no_lang_code', 'name', 'Lifesize (Sweden)'),
(88512, 73527, 'en', 'name', 'Botswana Predator Conservation Trust'),
(88513, 73528, 'en', 'name', 'Association for Social and Environmental Development'),
(88514, 73529, 'pt', 'name', 'Instituto Brasileiro de Defesa do Consumidor'),
(88515, 73530, 'no_lang_code', 'name', 'Peptaderm (Poland)'),
(88516, 73531, 'no_lang_code', 'name', 'Wala Heilmittel (Germany)'),
(88517, 73532, 'en', 'name', 'China Sexology Association'),
(88518, 73532, 'zh', 'name', 'äø­å›½ę€§å­¦ä¼š'),
(88519, 73533, 'no_lang_code', 'name', 'Itres (Canada)'),
(88520, 73534, 'en', 'name', 'Indian Institute of Mass Communication'),
(88521, 73534, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ जन ą¤øą¤‚ą¤šą¤¾ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(88522, 73535, 'en', 'name', 'Institute for War and Peace Reporting'),
(88523, 73536, 'en', 'name', 'Huddersfield Local History Society'),
(88524, 73537, 'en', 'name', 'Centre for European Reform'),
(88525, 73538, 'en', 'name', 'Midland Heart'),
(88526, 73539, 'no_lang_code', 'name', 'Embedded Systems (United States)'),
(88527, 73540, 'no_lang_code', 'name', 'TLM Shahdara Hospital'),
(88528, 73541, 'en', 'name', 'Jimmy Mac’s Centre'),
(88529, 73542, 'no_lang_code', 'name', 'The Seattle Times (United States)'),
(88530, 73543, 'en', 'name', 'National Security and Defense Council of Ukraine'),
(88531, 73543, 'uk', 'name', 'РаГа Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— безпеки і оборони України'),
(88532, 73544, 'en', 'name', 'Centre of Excellence for Sensory Impairment'),
(88533, 73545, 'en', 'name', 'African Centre for Technology Studies'),
(88534, 73546, 'en', 'name', 'Le Beau Vallon - Psychiatric Hospital'),
(88535, 73546, 'fr', 'name', 'HƓpital Psychiatrique du Beau Vallon'),
(88536, 73547, 'en', 'name', 'Stratified Medicine Scotland'),
(88537, 73548, 'en', 'name', 'Bay Area Oppositional and Conduct Clinic'),
(88538, 73549, 'no_lang_code', 'name', 'Eko-Konnect'),
(88539, 73550, 'en', 'name', 'Gear Research Institute'),
(88540, 73551, 'en', 'name', 'Marine Stewardship Council'),
(88541, 73552, 'en', 'name', 'International Association of Directors of Law Enforcement Standards and Training'),
(88542, 73553, 'no_lang_code', 'name', 'KUKA (United Kingdom)'),
(88543, 73554, 'en', 'name', 'Puppet Centre Trust'),
(88544, 73555, 'en', 'name', 'South Dakota Department of Public Safety'),
(88545, 73556, 'en', 'name', 'Americans for Indian Opportunity');
INSERT INTO `ror_settings` VALUES
(88546, 73557, 'en', 'name', 'National Day Laborer Organizing Network'),
(88547, 73558, 'no_lang_code', 'name', 'Innodura (France)'),
(88548, 73559, 'en', 'name', 'Israeli Center for Libraries'),
(88549, 73559, 'he', 'name', '×ž×Ø×›×– ההפר וההפריות'),
(88550, 73560, 'en', 'name', 'Royal Society for Public Health'),
(88551, 73561, 'no_lang_code', 'name', 'Max Biopharma (United States)'),
(88552, 73562, 'en', 'name', 'Sharma Centre for Heritage Education India'),
(88553, 73563, 'no_lang_code', 'name', 'Integrated Medicines (United Kingdom)'),
(88554, 73564, 'en', 'name', 'Institute for Technology & Society'),
(88555, 73564, 'pt', 'name', 'Instituto de Tecnologia e Sociedade'),
(88556, 73565, 'no_lang_code', 'name', 'Boston Dynamics (United States)'),
(88557, 73566, 'en', 'name', 'Wuyi University'),
(88558, 73566, 'zh', 'name', '五邑大学'),
(88559, 73567, 'en', 'name', 'Flemish Radio and Television Broadcasting Organisation'),
(88560, 73567, 'fr', 'name', 'Vlaamse Radio- en Televisieomroeporganisatie'),
(88561, 73568, 'en', 'name', 'Spencer Academies Trust'),
(88562, 73569, 'en', 'name', 'San Diego State University, Imperial Valley Campus'),
(88563, 73570, 'no_lang_code', 'name', 'Era (Sweden)'),
(88564, 73571, 'en', 'name', 'Anokhi Museum of Hand Printing'),
(88565, 73571, 'hi', 'name', 'ą¤…ą¤Øą„‹ą¤–ą„€ ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ'),
(88566, 73572, 'en', 'name', 'Transparency International'),
(88567, 73573, 'en', 'name', 'Polytechnic College Suriname'),
(88568, 73574, 'no_lang_code', 'name', 'Kyiv International Institute of Sociology (Ukraine)'),
(88569, 73574, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ міжнароГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ соціології'),
(88570, 73575, 'en', 'name', 'The Orderly Society Trust'),
(88571, 73576, 'no_lang_code', 'name', 'ImCare Biotech (United States)'),
(88572, 73577, 'en', 'name', 'Chess Valley Archaeological and Historical Society'),
(88573, 73578, 'no_lang_code', 'name', 'KeyW (United States)'),
(88574, 73579, 'cs', 'name', 'Nemocnice Strakonice'),
(88575, 73579, 'en', 'name', 'Strakonice Hospital'),
(88576, 73580, 'no_lang_code', 'name', 'Dust Identity (United States)'),
(88577, 73581, 'no_lang_code', 'name', 'Ingenious Targeting Laboratory (United States)'),
(88578, 73582, 'en', 'name', 'Renewable Energy Association'),
(88579, 73583, 'no_lang_code', 'name', 'Alomone Labs (Israel)'),
(88580, 73584, 'no_lang_code', 'name', 'Akron Polymer Systems (United States)'),
(88581, 73585, 'en', 'name', 'Scottish Jewish Archives Centre'),
(88582, 73586, 'en', 'name', 'Hennadii Udovenko Diplomatic Academy Of Ukraine'),
(88583, 73586, 'uk', 'name', 'Дипломатична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України'),
(88584, 73587, 'en', 'name', 'International Security and Development Center'),
(88585, 73588, 'cy', 'name', 'Gardd Fotaneg Genedlaethol Cymru'),
(88586, 73588, 'en', 'name', 'National Botanic Garden of Wales'),
(88587, 73589, 'es', 'name', 'Escuela de Actores de Canarias'),
(88588, 73590, 'no_lang_code', 'name', 'Sue Mbaya & Associates (South Africa)'),
(88589, 73591, 'en', 'name', 'American Sustainable Business Institute'),
(88590, 73592, 'en', 'name', 'Ghana Museums and Monuments Board'),
(88591, 73593, 'fr', 'name', 'Ɖcole FranƧaise de Rome'),
(88592, 73594, 'en', 'name', 'Center for High Pressure Science & Technology Advanced Research'),
(88593, 73594, 'zh', 'name', 'åŒ—äŗ¬é«˜åŽ‹ē§‘å­¦ē ”ē©¶äø­åæƒ'),
(88594, 73595, 'en', 'name', 'Poetry Society of America'),
(88595, 73596, 'en', 'name', 'St Paul''s Cathedral'),
(88596, 73597, 'no_lang_code', 'name', 'Electroimpact (United States)'),
(88597, 73598, 'no_lang_code', 'name', 'Ultrapar (Brazil)'),
(88598, 73599, 'en', 'name', 'Fred Roche Foundation'),
(88599, 73600, 'en', 'name', 'Young Citizens'),
(88600, 73601, 'ar', 'name', 'Ł…Ų±ŁƒŲ² البحث Ų§Ł„Ł†ŁˆŁˆŁŠ بالجزائر'),
(88601, 73601, 'fr', 'name', 'Centre de Recherche NuclĆ©aire d’Alger'),
(88602, 73602, 'en', 'name', 'International Finance Corporation'),
(88603, 73603, 'en', 'name', 'Arkansas State Crime Laboratory'),
(88604, 73604, 'en', 'name', 'National Dance Institute of New Mexico'),
(88605, 73605, 'no_lang_code', 'name', 'Dovetail Genomics (United States)'),
(88606, 73606, 'en', 'name', 'Next City'),
(88607, 73607, 'en', 'name', 'Guatemala National Police Archives'),
(88608, 73607, 'es', 'name', 'Archivo Histórico de la Policía Nacional'),
(88609, 73608, 'no_lang_code', 'name', 'Sto (Poland)'),
(88610, 73609, 'no_lang_code', 'name', 'Fo Guang Shan'),
(88611, 73609, 'zh', 'name', '佛光山'),
(88612, 73610, 'en', 'name', 'Academy of Public Administration under the President of the Kyrgyz Republic'),
(88613, 73610, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при ŠŸŃ€ŠµŠ·ŠøŠ“енте ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾Š¹ Республики'),
(88614, 73611, 'az', 'name', 'Azərbaycan İnvestisiya Şirkəti'),
(88615, 73611, 'no_lang_code', 'name', 'Azerbaijan Investment (Azerbaijan)'),
(88616, 73612, 'en', 'name', 'Committee on the Administration of Justice'),
(88617, 73613, 'no_lang_code', 'name', 'TCG Nordica'),
(88618, 73614, 'no_lang_code', 'name', 'Denovx (United States)'),
(88619, 73615, 'en', 'name', 'Strategic Society Centre'),
(88620, 73616, 'en', 'name', 'The Tuke Centre'),
(88621, 73617, 'en', 'name', 'Society of Editors'),
(88622, 73618, 'en', 'name', 'Cadre Research'),
(88623, 73619, 'en', 'name', 'Bureau of Plant Industry'),
(88624, 73619, 'tl', 'name', 'Kawanihan ng Paghahalaman'),
(88625, 73620, 'en', 'name', 'Investor Relations Society'),
(88626, 73621, 'el', 'name', 'Αμερικανική Γεωργική Σχολή'),
(88627, 73621, 'en', 'name', 'American Farm School'),
(88628, 73622, 'en', 'name', 'Howard Cottage Housing Association'),
(88629, 73623, 'en', 'name', 'InternetLab'),
(88630, 73624, 'en', 'name', 'Centre for Equity Studies'),
(88631, 73625, 'en', 'name', 'Franco-British Council'),
(88632, 73626, 'no_lang_code', 'name', 'Holst Centre (Netherlands)'),
(88633, 73627, 'no_lang_code', 'name', 'ATC Materials (United States)'),
(88634, 73628, 'en', 'name', 'Scottish Community Development Centre'),
(88635, 73629, 'en', 'name', 'David Livingstone Trust'),
(88636, 73630, 'en', 'name', 'Shropshire Archives'),
(88637, 73631, 'no_lang_code', 'name', 'VSE Corporation (United States)'),
(88638, 73632, 'en', 'name', 'The Supreme People''s Procuratorate of the People''s Republic of China'),
(88639, 73632, 'zh', 'name', 'äø­å›½ę£€åÆŸå®˜åä¼š'),
(88640, 73633, 'no_lang_code', 'name', 'Ikonix (United States)'),
(88641, 73634, 'en', 'name', 'Institute for Defence Studies and Analyses'),
(88642, 73634, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø और ą¤µą¤æą¤¶ą„ą¤²ą„‡ą¤·ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(88643, 73635, 'en', 'name', 'Eastern Africa Centre for Constitutional Development'),
(88644, 73635, 'sw', 'name', 'Kituo cha Katiba'),
(88645, 73636, 'es', 'name', 'Fundación Naturaleza y Hombre'),
(88646, 73637, 'en', 'name', 'Oasis Charitable Trust'),
(88647, 73638, 'es', 'name', 'ESE:O'),
(88648, 73639, 'en', 'name', 'Bell Educational Trust'),
(88649, 73640, 'no_lang_code', 'name', 'Coridea (United States)'),
(88650, 73641, 'en', 'name', 'Association for Real Change'),
(88651, 73642, 'en', 'name', 'Open Air Laboratories Network'),
(88652, 73643, 'en', 'name', 'Military Institute of Telecommunications and Informatization'),
(88653, 73643, 'uk', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²ŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ зв''ŃŠ·ŠŗŃƒ'),
(88654, 73644, 'en', 'name', 'Center for Popular Democracy'),
(88655, 73645, 'no_lang_code', 'name', 'Hongzhiwei Technology (China)'),
(88656, 73645, 'zh', 'name', 'éøæä¹‹å¾®ē§‘ęŠ€'),
(88657, 73646, 'no_lang_code', 'name', 'Molecular Fingerprint (Sweden)'),
(88658, 73647, 'en', 'name', 'National Rehabilitation Hospital'),
(88659, 73647, 'ga', 'name', 'Ospidéal NÔisiúnta AthshlÔnúchÔin'),
(88660, 73648, 'no_lang_code', 'name', 'Eau de Paris (France)'),
(88661, 73649, 'en', 'name', 'Association to Contribute to Improve the Governance of Land, Water and Natural Resources'),
(88662, 73650, 'en', 'name', 'Abergavenny Museum'),
(88663, 73651, 'en', 'name', 'Center for Advanced Defense Studies'),
(88664, 73652, 'no_lang_code', 'name', 'Banco Montepio (Portugal)'),
(88665, 73653, 'en', 'name', 'Bhutan Centre for Media and Democracy'),
(88666, 73654, 'en', 'name', 'Albuquerque Academy'),
(88667, 73655, 'en', 'name', '32° East Ugandan Arts Trust'),
(88668, 73656, 'en', 'name', 'Alternative Technology Centre'),
(88669, 73657, 'en', 'name', 'Centre for AIDS Development, Research and Evaluation'),
(88670, 73658, 'en', 'name', 'Centre for Self Managed Learning'),
(88671, 73659, 'no_lang_code', 'name', 'Zakład Mechaniki Maszyn (Poland)'),
(88672, 73660, 'en', 'name', 'National Great Rivers Research and Education Center'),
(88673, 73661, 'en', 'name', 'Rylsky Institute of Art Studies, Folklore and Ethnology'),
(88674, 73661, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мистецтвознавства, Ń„Š¾Š»ŃŒŠŗŠ»Š¾Ń€ŠøŃŃ‚ŠøŠŗŠø та етнології ім. М. Š¢. Рильського'),
(88675, 73662, 'en', 'name', 'Maya Educational Foundation'),
(88676, 73663, 'en', 'name', 'Kerala State Chalachitra Academy'),
(88677, 73663, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“øą“‚ą“øąµą“„ą“¾ą“Ø ą“šą“²ą“šąµą“šą“æą“¤ąµą“° ą“…ą“•ąµą“•ą“¾ą“¦ą“®ą“æ'),
(88678, 73664, 'en', 'name', 'Purdue University Fort Wayne'),
(88679, 73665, 'en', 'name', 'Galicia Jewish Museum'),
(88680, 73665, 'pl', 'name', 'Żydowskie Muzeum Galicja'),
(88681, 73666, 'no_lang_code', 'name', 'Kalpavriksh'),
(88682, 73667, 'no_lang_code', 'name', 'SGL Carbon (Germany)'),
(88683, 73668, 'en', 'name', 'Pontus Research'),
(88684, 73669, 'de', 'name', 'Institut für Mittelstandsforschung'),
(88685, 73670, 'no_lang_code', 'name', 'DeviceFarm (United States)'),
(88686, 73671, 'en', 'name', 'The Princes Foundation'),
(88687, 73672, 'en', 'name', 'New Leaf Center'),
(88688, 73673, 'en', 'name', 'Lancaster City Museum'),
(88689, 73674, 'no_lang_code', 'name', 'Electron Optica (United States)'),
(88690, 73675, 'en', 'name', 'Conservancies KZN'),
(88691, 73676, 'no_lang_code', 'name', 'Engin-Ic (United States)'),
(88692, 73677, 'en', 'name', 'Swedish Air Transport Society'),
(88693, 73677, 'sv', 'name', 'Fƶreningen Svenskt Flyg Intresse'),
(88694, 73678, 'en', 'name', 'Out & Equal Workplace Advocates'),
(88695, 73679, 'en', 'name', 'Friends of the National Railway Museum'),
(88696, 73680, 'no_lang_code', 'name', '​Sevalanka Foundation'),
(88697, 73681, 'en', 'name', 'Jeremy Gardner Associates'),
(88698, 73682, 'en', 'name', 'Tunbridge Wells Museum & Art Gallery'),
(88699, 73683, 'no_lang_code', 'name', 'Vanu (United States)'),
(88700, 73684, 'en', 'name', 'Institute for Complex Analysis of Regional Problems'),
(88701, 73685, 'el', 'name', 'ĪœĪæĻ…ĻƒĪ¹ĪŗĻŒ ĪµĻĪ³Ī±ĻƒĻ„Ī®ĻĪ¹ Ī›Ī±Ī²ĻĻĪ¹Ī½ĪøĪæĻ‚'),
(88702, 73685, 'en', 'name', 'Labyrinth Musical Workshop'),
(88703, 73686, 'en', 'name', 'The Dialogue'),
(88704, 73687, 'en', 'name', 'TakeAction Minnesota'),
(88705, 73688, 'en', 'name', 'China Philanthropy Research Institute'),
(88706, 73688, 'zh', 'name', 'äø­å›½å…¬ē›Šē ”ē©¶é™¢'),
(88707, 73689, 'de', 'name', 'Niedersächsisch Landesamt für Verbraucherschutz und Lebensmittelsicherheit'),
(88708, 73689, 'en', 'name', 'Lower Saxony State Office for Consumer Protection and Food Safety'),
(88709, 73690, 'no_lang_code', 'name', 'TwoCan Associates (United Kingdom)'),
(88710, 73691, 'en', 'name', 'Society for Social Uplift Through Rural Action'),
(88711, 73692, 'en', 'name', 'Khizra Foundation'),
(88712, 73693, 'de', 'name', 'Klinikum Osnabrück'),
(88713, 73694, 'en', 'name', 'International Longevity Centre - India'),
(88714, 73695, 'en', 'name', 'Vienna Institute for Nature Conservation & Analyses'),
(88715, 73696, 'no_lang_code', 'name', 'Burt (Sweden)'),
(88716, 73697, 'en', 'name', 'Swedish National Forensic Centre'),
(88717, 73697, 'sv', 'name', 'Nationellt Forensiskt Centrum'),
(88718, 73698, 'en', 'name', 'Pretrial Justice Institute'),
(88719, 73699, 'ar', 'name', 'المتحف Ų§Ł„ŁˆŲ·Ł†ŁŠ Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ Ł„Ł„ŁŁ†ŁˆŁ† Ų§Ł„Ų¬Ł…ŁŠŁ„Ų©'),
(88720, 73699, 'en', 'name', 'Jordan National Gallery of Fine Arts'),
(88721, 73700, 'no_lang_code', 'name', 'COBRO (Poland)'),
(88722, 73701, 'no_lang_code', 'name', 'Indivior (United States)'),
(88723, 73702, 'pt', 'name', 'Central Única das Favelas'),
(88724, 73703, 'en', 'name', 'Orchestra of the Age of Enlightenment'),
(88725, 73704, 'no_lang_code', 'name', 'Polska Grupa Górnicza (Poland)'),
(88726, 73705, 'en', 'name', 'Nottingham Contemporary'),
(88727, 73706, 'it', 'name', 'Istituto Tecnico Industriale Alessandro Volta'),
(88728, 73707, 'en', 'name', 'Favela Observatory'),
(88729, 73707, 'pt', 'name', 'Observatório de Favelas'),
(88730, 73708, 'en', 'name', 'Rural Support Partners'),
(88731, 73709, 'es', 'name', 'Federación de Instituciones y Organismos Financieros Rurales'),
(88732, 73710, 'en', 'name', 'French Institute for Research in Africa'),
(88733, 73711, 'en', 'name', 'Southbank Centre'),
(88734, 73712, 'en', 'name', 'Open Acting Academy'),
(88735, 73713, 'en', 'name', 'Dialogue Society'),
(88736, 73714, 'en', 'name', 'Organic Centre Wales'),
(88737, 73715, 'no_lang_code', 'name', 'Hope Pharmaceuticals (United States)'),
(88738, 73716, 'en', 'name', 'Herefordshire & Worcestershire Earth Heritage Trust'),
(88739, 73717, 'en', 'name', 'Cambridge Cardiac Care Centre'),
(88740, 73718, 'en', 'name', 'Turner-Fairbank Highway Research Center'),
(88741, 73719, 'no_lang_code', 'name', 'Cognitec (Germany)'),
(88742, 73720, 'en', 'name', 'Rethink Mental Illness'),
(88743, 73721, 'en', 'name', 'Clevedon Pier & Heritage Trust'),
(88744, 73722, 'en', 'name', 'DrawBridge'),
(88745, 73723, 'no_lang_code', 'name', 'Winfoor (Sweden)'),
(88746, 73724, 'en', 'name', 'Generation 2.0 for Rights, Equality & Diversity'),
(88747, 73725, 'en', 'name', 'Team Restoration Ministries'),
(88748, 73726, 'en', 'name', 'National Lesbian and Gay Journalists Association'),
(88749, 73727, 'no_lang_code', 'name', 'Fairmount Technologies (United States)'),
(88750, 73728, 'no_lang_code', 'name', 'Woundchek Laboratories (United Kingdom)'),
(88751, 73729, 'en', 'name', 'Civil Service'),
(88752, 73730, 'en', 'name', 'Foundations of Success'),
(88753, 73731, 'en', 'name', 'University of Swabi'),
(88754, 73731, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŲµŁˆŲ§ŲØŪŒā€¬ā€Ž'),
(88755, 73732, 'no_lang_code', 'name', 'Laboratório Teuto (Brazil)'),
(88756, 73733, 'no_lang_code', 'name', 'Corona (Poland)'),
(88757, 73734, 'en', 'name', 'The Democratic Society'),
(88758, 73735, 'en', 'name', 'Sylva Foundation'),
(88759, 73736, 'no_lang_code', 'name', 'Enviresearch (United Kingdom)'),
(88760, 73737, 'en', 'name', 'Paternity Testing Corporation Laboratories'),
(88761, 73738, 'no_lang_code', 'name', 'Advanced Algorithm and Systems (Japan)'),
(88762, 73739, 'en', 'name', 'The Basketmakers Association'),
(88763, 73740, 'es', 'name', 'Instituto de BiologĆ­a AgrĆ­cola de Mendoza'),
(88764, 73741, 'sv', 'name', 'Fryshuset'),
(88765, 73742, 'en', 'name', 'Robert Gordon''s College'),
(88766, 73743, 'az', 'name', 'Hacıbəyov adına Bakı Musiqi Akademiyası'),
(88767, 73743, 'en', 'name', 'Baku Academy of Music'),
(88768, 73744, 'en', 'name', 'Virginia Department of Forensic Science'),
(88769, 73745, 'en', 'name', 'Public Knowledge'),
(88770, 73746, 'en', 'name', 'Institute of Diplomacy and Foreign Relations'),
(88771, 73747, 'en', 'name', 'Chartered Institute for Archaeologists'),
(88772, 73748, 'en', 'name', 'Earth Trust'),
(88773, 73749, 'no_lang_code', 'name', 'Vashon Partners (United States)'),
(88774, 73750, 'no_lang_code', 'name', 'Inuheat (Sweden)'),
(88775, 73751, 'en', 'name', 'Taigh Chearsabhagh Museum and Arts Centre'),
(88776, 73752, 'en', 'name', 'Institute of Food Biotechnology and Genomics'),
(88777, 73752, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ харчової біотехнології та геноміки'),
(88778, 73753, 'da', 'name', 'Tycho Brahe Planetarium'),
(88779, 73754, 'en', 'name', 'Ministry of Education'),
(88780, 73755, 'en', 'name', 'The Feminist Library'),
(88781, 73756, 'no_lang_code', 'name', 'Discerning Technologies (United States)'),
(88782, 73757, 'en', 'name', 'East Africa Law Society'),
(88783, 73758, 'en', 'name', 'Theatrescience'),
(88784, 73759, 'en', 'name', 'Cromarty Arts Trust'),
(88785, 73760, 'no_lang_code', 'name', 'Standard Chartered (Singapore)'),
(88786, 73761, 'en', 'name', 'State Institute of Cultural Heritage of the Peoples of Turkmenistan'),
(88787, 73761, 'tk', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½Š¾Š³Š¾ Š½Š°ŃŠ»ŠµŠ“ŠøŃ нароГов Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŠøŃŃ‚ана'),
(88788, 73762, 'no_lang_code', 'name', 'InfoAssure (United States)'),
(88789, 73763, 'en', 'name', 'The Tavistock and Portman NHS Foundation Trust'),
(88790, 73764, 'en', 'name', 'Sustainable Inshore Fisheries Trust'),
(88791, 73765, 'en', 'name', 'Jana Sanskriti Centre for Theatre of the Oppressed'),
(88792, 73766, 'en', 'name', 'Shaanxi History Museum'),
(88793, 73766, 'zh', 'name', 'é™•č„æåŽ†å²åšē‰©é¦†'),
(88794, 73767, 'no_lang_code', 'name', 'Riwaq'),
(88795, 73768, 'ja', 'name', 'ć‚ć¹ć®ćƒćƒ«ć‚«ć‚¹ē¾Žč”“é¤Ø'),
(88796, 73768, 'no_lang_code', 'name', 'Abeno Harukas Art Museum'),
(88797, 73769, 'el', 'name', 'Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĪæĪ½Ī¹ĪŗĪ® ĪˆĪ½Ļ‰ĻƒĪ· Ī•ĪŗĻ€Ī±ĪÆĪ“ĪµĻ…ĻƒĪ·Ļ‚ Ενηλίκων'),
(88798, 73769, 'en', 'name', 'Hellenic Adult Education Association'),
(88799, 73770, 'en', 'name', 'The Justice Management Institute'),
(88800, 73771, 'no_lang_code', 'name', 'Advanced Optical Technologies (United States)'),
(88801, 73772, 'no_lang_code', 'name', 'Dinntec (Colombia)'),
(88802, 73773, 'no_lang_code', 'name', 'KW Engineering (United States)'),
(88803, 73774, 'en', 'name', 'The Institute of History of The Academy of Sciences of The Republic of Uzbekistan'),
(88804, 73774, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š˜ŃŃ‚Š¾Ń€ŠøŠø АкаГемии ŠŠ°ŃƒŠŗ Республики Узбекистан'),
(88805, 73774, 'uz', 'name', 'Oā€˜zbekiston Respublikasi Fanlar Akademiyasi Tarix Instituti'),
(88806, 73775, 'en', 'name', 'Ethnic Media Institute'),
(88807, 73775, 'pt', 'name', 'Instituto Midia Ɖtnica'),
(88808, 73776, 'en', 'name', 'British Record Society'),
(88809, 73777, 'no_lang_code', 'name', 'Herrick Technology Laboratories (United States)'),
(88810, 73778, 'no_lang_code', 'name', 'Champions Oncology (United States)'),
(88811, 73779, 'no_lang_code', 'name', 'Transbit (Poland)'),
(88812, 73780, 'en', 'name', 'The First People''s Hospital of Zhaoqing'),
(88813, 73780, 'zh', 'name', 'č‚‡åŗ†åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(88814, 73781, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(88815, 73781, 'en', 'name', 'University of Modern Sciences'),
(88816, 73782, 'no_lang_code', 'name', 'British American Tobacco (Uzbekistan)'),
(88817, 73783, 'en', 'name', 'Ministry of Culture'),
(88818, 73783, 'es', 'name', 'Ministerio de Cultura'),
(88819, 73784, 'en', 'name', 'Southern Coalition for Social Justice'),
(88820, 73785, 'no_lang_code', 'name', 'Intact Genomics (United States)'),
(88821, 73786, 'no_lang_code', 'name', 'Two Sigma Investments (United States)'),
(88822, 73787, 'es', 'name', 'Ministerio PĆŗblico de la Defensa'),
(88823, 73788, 'pt', 'name', 'Centro de Cultura Luiz Freire'),
(88824, 73789, 'en', 'name', 'The BEARR Trust'),
(88825, 73790, 'no_lang_code', 'name', 'Chase Research Cryogenics (United Kingdom)'),
(88826, 73791, 'no_lang_code', 'name', 'H6 Systems (United States)'),
(88827, 73792, 'en', 'name', 'South Lanarkshire Council'),
(88828, 73793, 'no_lang_code', 'name', 'AngelMed (United States)'),
(88829, 73794, 'en', 'name', 'Chartered Society of Designers'),
(88830, 73795, 'es', 'name', 'Seminario Permanente de Investigación Agraria'),
(88831, 73796, 'en', 'name', 'Heritage Lower Saint Lawrence'),
(88832, 73797, 'no_lang_code', 'name', 'Ferroamp Elektronik (Sweden)'),
(88833, 73798, 'en', 'name', 'End Violence Against Women'),
(88834, 73799, 'no_lang_code', 'name', 'Scanmed (Poland)'),
(88835, 73800, 'en', 'name', 'Staffordshire County Council'),
(88836, 73801, 'en', 'name', 'Sisters of Mercy of the Americas'),
(88837, 73802, 'no_lang_code', 'name', 'DigitalSpace (United States)'),
(88838, 73803, 'en', 'name', 'Institute of Art and Ideas'),
(88839, 73804, 'en', 'name', 'National Secretariat - Indonesian Forum for Budget Transparency'),
(88840, 73804, 'id', 'name', 'Sekretariat Nasional Forum Indonesia untuk Transparansi'),
(88841, 73805, 'no_lang_code', 'name', 'Intel (Brazil)'),
(88842, 73806, 'no_lang_code', 'name', 'Firestar Technologies (United States)'),
(88843, 73807, 'en', 'name', 'Interdisciplinary Scientific Research'),
(88844, 73808, 'de', 'name', 'Gemeinschaftsklinikum Mittelrhein'),
(88845, 73809, 'en', 'name', 'Sobhraj Maternity Hospital'),
(88846, 73810, 'en', 'name', 'Mitchell Library'),
(88847, 73811, 'no_lang_code', 'name', 'Alvin Ailey (United States)'),
(88848, 73812, 'en', 'name', 'The Allaince Advancing Regional Equity'),
(88849, 73813, 'en', 'name', 'National Employment Savings Trust'),
(88850, 73814, 'no_lang_code', 'name', 'Hardric Laboratories (United States)'),
(88851, 73815, 'no_lang_code', 'name', 'Group W (United States)'),
(88852, 73816, 'no_lang_code', 'name', 'Perpetuity Research (United Kingdom)'),
(88853, 73817, 'en', 'name', 'Milapfest'),
(88854, 73818, 'no_lang_code', 'name', 'Mantis Vision (Israel)'),
(88855, 73819, 'en', 'name', 'Haywood Academy'),
(88856, 73820, 'en', 'name', 'Fabric Workshop and Museum'),
(88857, 73821, 'no_lang_code', 'name', 'Camras Vision (United States)'),
(88858, 73822, 'no_lang_code', 'name', 'Kamukunji Paralegal Trust'),
(88859, 73823, 'en', 'name', 'British Association of Picture Libraries and Agencies'),
(88860, 73824, 'no_lang_code', 'name', 'Evispot (Sweden)'),
(88861, 73825, 'no_lang_code', 'name', 'i2 Media Research (United Kingdom)'),
(88862, 73826, 'bn', 'name', 'ą¦¬ą§ą¦°ą§ą¦Æą¦¾ą¦• ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦°'),
(88863, 73826, 'no_lang_code', 'name', 'BRAC'),
(88864, 73827, 'pt', 'name', 'Instituto Vladimir Herzog'),
(88865, 73828, 'no_lang_code', 'name', 'Medituner (Sweden)'),
(88866, 73829, 'en', 'name', 'Yorkshire Agricultural Society'),
(88867, 73830, 'en', 'name', 'Arms Control Association'),
(88868, 73831, 'en', 'name', 'Institute of Scientific Information on Social Sciences'),
(88869, 73831, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š°ŃƒŃ‡Š½Š¾Š¹ информации по общественным наукам'),
(88870, 73832, 'ga', 'name', 'Garda SƭochƔna Inspectorate'),
(88871, 73833, 'no_lang_code', 'name', '3Eflow (Sweden)'),
(88872, 73834, 'en', 'name', 'Institute for Jewish Policy Research'),
(88873, 73835, 'cs', 'name', 'Francouzský Ćŗstav pro výzkum ve společenských vědĆ”ch'),
(88874, 73835, 'en', 'name', 'French Research Center in Humanities and Social Sciences'),
(88875, 73835, 'fr', 'name', 'Centre FranƧais de Recherche en Sciences Sociales'),
(88876, 73836, 'en', 'name', 'Science Oxford'),
(88877, 73837, 'en', 'name', 'Wysing Arts Centre'),
(88878, 73838, 'da', 'name', 'Dansk FlygtningehjƦlp'),
(88879, 73838, 'en', 'name', 'Danish Refugee Council'),
(88880, 73839, 'no_lang_code', 'name', 'Adjuvance (United States)'),
(88881, 73840, 'no_lang_code', 'name', 'Data:Lab Munich (Germany)'),
(88882, 73841, 'no_lang_code', 'name', 'iGW (Sweden)'),
(88883, 73842, 'en', 'name', 'Blue Marine Foundation'),
(88884, 73843, 'no_lang_code', 'name', 'Inkbit (United States)'),
(88885, 73844, 'en', 'name', 'Asian Pacific Environmental Network'),
(88886, 73845, 'no_lang_code', 'name', 'C&R Technologies (United States)'),
(88887, 73846, 'en', 'name', 'Office of the Governor'),
(88888, 73847, 'no_lang_code', 'name', 'Arne Jensen (Sweden)'),
(88889, 73848, 'de', 'name', 'Albertinen Diakoniewerk'),
(88890, 73849, 'en', 'name', 'ASEM Water Resources Research and Development Centre'),
(88891, 73850, 'en', 'name', 'Centre for Literacy in Primary Education'),
(88892, 73851, 'no_lang_code', 'name', 'Conrad Technologies (United States)'),
(88893, 73852, 'en', 'name', 'Global Stem cell & Regenerative medicine Acceleration Center'),
(88894, 73853, 'no_lang_code', 'name', 'Elex Biotech (United States)'),
(88895, 73854, 'en', 'name', 'National Eczema Society'),
(88896, 73855, 'en', 'name', 'Pennsylvania Coalition Against Domestic Violence'),
(88897, 73856, 'no_lang_code', 'name', 'GlobalAgRisk (United States)'),
(88898, 73857, 'en', 'name', 'Green Capacity'),
(88899, 73858, 'no_lang_code', 'name', 'Molecular Theranostics (United States)'),
(88900, 73859, 'en', 'name', 'Epic Theatre Ensemble'),
(88901, 73860, 'no_lang_code', 'name', 'ADW (Poland)'),
(88902, 73861, 'en', 'name', 'Blind and Sight Impaired Society'),
(88903, 73862, 'en', 'name', 'Museum Dr Guislain'),
(88904, 73862, 'fr', 'name', 'Le musƩe Dr Guislain'),
(88905, 73863, 'no_lang_code', 'name', 'Sa-Dhan'),
(88906, 73864, 'en', 'name', 'Horse Hospital'),
(88907, 73865, 'no_lang_code', 'name', 'EpiSys Science (United States)'),
(88908, 73866, 'en', 'name', 'NIHR Trauma Management MedTech Co-operative'),
(88909, 73867, 'en', 'name', 'Instituto'),
(88910, 73868, 'en', 'name', 'Irrigation Management Training Institute'),
(88911, 73869, 'cy', 'name', 'Awdurdod Ystadegau''r DU'),
(88912, 73869, 'en', 'name', 'UK Statistics Authority'),
(88913, 73870, 'no_lang_code', 'name', 'Katiba Institute'),
(88914, 73871, 'en', 'name', 'Purdue University Northwest'),
(88915, 73872, 'en', 'name', 'European Centre for Living Technology'),
(88916, 73873, 'en', 'name', 'Manufacturing Technologies Association'),
(88917, 73874, 'en', 'name', 'Northern Ireland Council for Integrated Education'),
(88918, 73875, 'en', 'name', 'The Swedish Hip Arthroplasty Register'),
(88919, 73875, 'sv', 'name', 'Svenska Hƶftprotesregistret'),
(88920, 73876, 'en', 'name', 'Law Institute of Lithuania'),
(88921, 73876, 'lt', 'name', 'Teisės institutas'),
(88922, 73877, 'en', 'name', 'Center for Responsible Lending'),
(88923, 73878, 'en', 'name', 'Housing California'),
(88924, 73879, 'no_lang_code', 'name', 'Nokia (France)'),
(88925, 73880, 'en', 'name', 'Local Trust'),
(88926, 73881, 'fr', 'name', 'Centre de Recherche en Technologie des Semi-conducteurs pour l’EnergĆ©tique'),
(88927, 73882, 'en', 'name', 'MidSchoolMath'),
(88928, 73883, 'en', 'name', 'Zambia Red Cross Society'),
(88929, 73884, 'en', 'name', 'Ormiston Bushfield Academy'),
(88930, 73885, 'no_lang_code', 'name', 'Arcos (United States)'),
(88931, 73886, 'vi', 'name', 'Hį»c viện Tʰ phĆ”p'),
(88932, 73887, 'no_lang_code', 'name', 'Bioinduction (United Kingdom)'),
(88933, 73888, 'en', 'name', 'Americans for Financial Reform Education Fund'),
(88934, 73889, 'en', 'name', 'Chartered Institute of Procurement & Supply'),
(88935, 73890, 'en', 'name', 'Music Venue Trust'),
(88936, 73891, 'no_lang_code', 'name', 'Drakontas (United States)'),
(88937, 73892, 'no_lang_code', 'name', 'Eligo Bioscience (France)'),
(88938, 73893, 'ja', 'name', 'ć‚¹ćƒ—ćƒŖćƒ³ć‚°ć‚Øć‚¤ćƒˆć‚µćƒ¼ćƒ“ć‚¹'),
(88939, 73893, 'no_lang_code', 'name', 'SPring-8 (Japan)'),
(88940, 73894, 'en', 'name', 'Istanbul Foundation for Research and Education'),
(88941, 73894, 'tr', 'name', 'İSTANBUL ARAŞTIRMA VE EĞİTİM VAKFI'),
(88942, 73895, 'en', 'name', 'New York City Department of Transportation'),
(88943, 73896, 'en', 'name', 'Rural Action'),
(88944, 73897, 'en', 'name', 'The Cinema Museum'),
(88945, 73898, 'en', 'name', 'National Coastal Tourism Academy'),
(88946, 73899, 'en', 'name', 'Chicago Youth Symphony Orchestras'),
(88947, 73900, 'fr', 'name', 'Agence France Presse'),
(88948, 73901, 'en', 'name', 'Rajasthan Police Academy'),
(88949, 73901, 'hi', 'name', 'ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤²ą¤æą¤ø ą¤…ą¤•ą¤¾ą¤¦ą¤®ą„€'),
(88950, 73902, 'no_lang_code', 'name', 'NanoCor Therapeutics (United States)'),
(88951, 73903, 'no_lang_code', 'name', 'Ten Medical Design (Sweden)'),
(88952, 73904, 'en', 'name', 'Twentieth Century Society'),
(88953, 73905, 'en', 'name', 'Dudhope Multicultural Centre'),
(88954, 73906, 'en', 'name', 'National Health Systems Resource Centre'),
(88955, 73907, 'no_lang_code', 'name', 'Airospring (United Kingdom)'),
(88956, 73908, 'en', 'name', 'The Nuclear Institute'),
(88957, 73909, 'pt', 'name', 'Fórum Nacional das Entidades Civis de Defesa do Consumidor'),
(88958, 73910, 'en', 'name', 'National Portrait Gallery'),
(88959, 73911, 'no_lang_code', 'name', 'ECM Technologies (France)'),
(88960, 73912, 'en', 'name', 'Ardler Village Trust'),
(88961, 73913, 'no_lang_code', 'name', 'Flometrics (United States)'),
(88962, 73914, 'en', 'name', 'Economic Policy Research Institute'),
(88963, 73915, 'no_lang_code', 'name', 'Graphensic (Sweden)'),
(88964, 73916, 'en', 'name', 'Supra-Regional Assay Service'),
(88965, 73917, 'no_lang_code', 'name', 'Lab Resources (United States)'),
(88966, 73918, 'en', 'name', 'Kenya Health Informatics Association'),
(88967, 73919, 'en', 'name', 'American Immigration Lawyers Association'),
(88968, 73920, 'en', 'name', 'Kraszna-Krausz Foundation'),
(88969, 73921, 'en', 'name', 'Anthropological Survey of India'),
(88970, 73922, 'en', 'name', 'Contemporary Visual Arts Network'),
(88971, 73923, 'no_lang_code', 'name', 'Molecule Works (United States)'),
(88972, 73924, 'en', 'name', 'Sichuan Academy Of Social Sciences'),
(88973, 73924, 'zh', 'name', 'å››å·ēœē¤¾ä¼šē§‘å­¦é™¢'),
(88974, 73925, 'no_lang_code', 'name', 'SwissLitho (Switzerland)'),
(88975, 73926, 'en', 'name', 'St. Thomas Medical Group'),
(88976, 73927, 'en', 'name', 'Girls Not Brides'),
(88977, 73928, 'en', 'name', 'Philippine Cancer Society'),
(88978, 73929, 'en', 'name', 'Poltava Regional Institute of Postgraduate Education'),
(88979, 73929, 'uk', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ обласний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ–ŃŠ»ŃŠ“ŠøŠæŠ»Š¾Š¼Š½Š¾Ń— пеГагогічної освіти імені М. Š’. ŠžŃŃ‚Ń€Š¾Š³Ń€Š°Š“ŃŃŒŠŗŠ¾Š³Š¾'),
(88980, 73930, 'en', 'name', 'Church Service Society'),
(88981, 73931, 'no_lang_code', 'name', 'A Luck Associates (United Kingdom)'),
(88982, 73932, 'en', 'name', 'Tinderbox Theatre'),
(88983, 73933, 'en', 'name', 'Lambda Legal'),
(88984, 73934, 'en', 'name', 'International Cinema Education'),
(88985, 73935, 'no_lang_code', 'name', 'Tricol Biomedical (United States)'),
(88986, 73936, 'en', 'name', 'Comhairle Choitcheann Teagaisg na h-Alba, The General Teaching Council for Scotland'),
(88987, 73937, 'en', 'name', 'International Comparative Literature Association'),
(88988, 73938, 'en', 'name', 'Metropolitan Black Police Association'),
(88989, 73939, 'no_lang_code', 'name', 'CRRC (United Kingdom)'),
(88990, 73940, 'en', 'name', 'Foundation Tallinn 2011'),
(88991, 73940, 'et', 'name', 'Sihtasutus Tallinn 2011 Ajalugu'),
(88992, 73940, 'ru', 'name', 'Š¦Š•Š›Š•Š’ŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• Ā«Š¢ŠŠ›Š›Š˜ŠŠ 2011Ā»'),
(88993, 73941, 'en', 'name', 'Centre for Nepal Studies'),
(88994, 73942, 'no_lang_code', 'name', 'W. L. Gore & Associates (United Kingdom)'),
(88995, 73943, 'en', 'name', 'The Greenlining Institute'),
(88996, 73944, 'no_lang_code', 'name', 'Specialist Vehicle Research and Development (United Kingdom)'),
(88997, 73945, 'en', 'name', 'Ministry of Education and Science of the Republic of Tatarstan'),
(88998, 73945, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки Республики Татарстан'),
(88999, 73946, 'no_lang_code', 'name', 'Nanosolar (United States)'),
(89000, 73947, 'en', 'name', 'Electoral Reform Society'),
(89001, 73948, 'no_lang_code', 'name', 'Allure (United States)'),
(89002, 73949, 'en', 'name', 'Daedalus Trust'),
(89003, 73950, 'no_lang_code', 'name', 'DWA Aluminum Composites (United States)'),
(89004, 73951, 'en', 'name', 'Edinburgh World Heritage'),
(89005, 73952, 'en', 'name', 'Creative Foundation'),
(89006, 73953, 'no_lang_code', 'name', 'DJ Associates (United States)'),
(89007, 73954, 'no_lang_code', 'name', 'Engineering Science Analysis (United States)'),
(89008, 73955, 'no_lang_code', 'name', 'Kiko Labs (United States)'),
(89009, 73956, 'no_lang_code', 'name', 'GlaxoSmithKline (Brazil)'),
(89010, 73957, 'no_lang_code', 'name', 'Chromation (United States)'),
(89011, 73958, 'no_lang_code', 'name', 'Deciwatt (United Kingdom)'),
(89012, 73959, 'no_lang_code', 'name', 'PublicPolicy.ie (Ireland)'),
(89013, 73960, 'no_lang_code', 'name', 'Ananse (Brazil)'),
(89014, 73961, 'en', 'name', 'Republic Klaipeda Hospital'),
(89015, 73961, 'lt', 'name', 'Respublikinė Klaipėdos ligoninė'),
(89016, 73962, 'no_lang_code', 'name', 'Brown Computer Company (United States)'),
(89017, 73963, 'en', 'name', 'Chaudhary Ranbir Singh University'),
(89018, 73963, 'hi', 'name', 'ą¤šą„Œą¤§ą¤°ą„€ ą¤°ą¤£ą¤¬ą„€ą¤° सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(89019, 73964, 'en', 'name', 'Pitt Rivers Museum'),
(89020, 73965, 'no_lang_code', 'name', 'Brainquake (United States)'),
(89021, 73966, 'en', 'name', 'Carbon180'),
(89022, 73967, 'en', 'name', 'Shoreditch Trust'),
(89023, 73968, 'en', 'name', 'National Museum of the Royal Navy'),
(89024, 73969, 'no_lang_code', 'name', 'Proen (Poland)'),
(89025, 73970, 'ar', 'name', 'Ł…Ų±ŁƒŲ² ŲŖŁ‚ŁˆŁŠŁ… ŁˆŲŖŲ¹Ł„ŁŠŁ… الطفل'),
(89026, 73970, 'en', 'name', 'Centre for Child Evaluation & Teaching'),
(89027, 73971, 'pt', 'name', 'NĆŗcleo Interdisciplinar da CiĆŖncia do Sono'),
(89028, 73972, 'en', 'name', 'Institute of Archaeology named after A.Kh.Margulan'),
(89029, 73972, 'kk', 'name', 'Ә.Š„. ŠœŠ°Ń€Ņ“Ņ±Š»Š°Š½ атынГағы ŠŃ€Ń…ŠµŠ¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(89030, 73973, 'en', 'name', 'Language Systems International College of English'),
(89031, 73974, 'en', 'name', 'The Katie Piper Foundation'),
(89032, 73975, 'en', 'name', 'Veterinary Medicines Directorate'),
(89033, 73976, 'en', 'name', 'World Healthal Trust'),
(89034, 73977, 'no_lang_code', 'name', 'Cambridge Research Biochemicals (United Kingdom)'),
(89035, 73978, 'no_lang_code', 'name', 'Dedini Industrias De Base (Brazil)'),
(89036, 73979, 'en', 'name', 'Theatre Royal and Royal Concert Hall'),
(89037, 73980, 'no_lang_code', 'name', 'Berge (Sweden)'),
(89038, 73981, 'en', 'name', 'Taichung City Government'),
(89039, 73981, 'zh', 'name', 'å°äø­åø‚ę”æåŗœ'),
(89040, 73982, 'en', 'name', 'Community Labor United'),
(89041, 73983, 'en', 'name', 'State of Alaska Office of the Governor'),
(89042, 73984, 'en', 'name', 'The Academy at Shotton Hall'),
(89043, 73985, 'no_lang_code', 'name', 'Magnetic Resonance Innovations (United States)'),
(89044, 73986, 'fr', 'name', 'ComitĆ© Rhodanien d’Accueil des RĆ©fugiĆ©s et de DĆ©fense du Droit d''Asile, Forum RĆ©fugiĆ©s - Cosi'),
(89045, 73987, 'en', 'name', 'Institute for High Performance Computing and Networking'),
(89046, 73987, 'it', 'name', 'Istituto di Calcolo e Reti ad Alte Prestazioni'),
(89047, 73988, 'no_lang_code', 'name', 'Soleno Therapeutics (United States)'),
(89048, 73989, 'es', 'name', 'Agrupación Astronómica de la Safor'),
(89049, 73990, 'no_lang_code', 'name', 'Diapin Therapeutics (United States)'),
(89050, 73991, 'en', 'name', 'Hadaf Institute of Higher Education'),
(89051, 73992, 'en', 'name', 'Islamic Azad University, Langarud Branch'),
(89052, 73992, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł„Ł†ŚÆŲ±ŁˆŲÆ'),
(89053, 73993, 'no_lang_code', 'name', 'Ondine (Canada)'),
(89054, 73994, 'en', 'name', 'Mountain Association for Community Economic Development'),
(89055, 73995, 'en', 'name', 'South West Heritage Trust'),
(89056, 73996, 'en', 'name', 'Felipe GonzƔlez Foundation'),
(89057, 73996, 'es', 'name', 'Fundación Felipe GonzÔlez'),
(89058, 73997, 'en', 'name', 'Islamic Azad University of Marand'),
(89059, 73998, 'no_lang_code', 'name', 'Materion (United States)'),
(89060, 73999, 'no_lang_code', 'name', 'Patliputra University'),
(89061, 74000, 'en', 'name', 'President of the Office of Electronic Communications'),
(89062, 74000, 'pl', 'name', 'Urząd Komunikacji Elektronicznej'),
(89063, 74001, 'no_lang_code', 'name', 'Holland and Knight (United Arab Emirates)'),
(89064, 74002, 'en', 'name', 'Petnica Science Center'),
(89065, 74002, 'sr', 'name', 'Istraživačka stanica Petnica'),
(89066, 74003, 'pl', 'name', 'Stowarzyszenie Pomocy Niepełnosprawnym Kierowcom'),
(89067, 74004, 'en', 'name', 'International Centre for Mathematical and Computer Sciences'),
(89068, 74005, 'en', 'name', 'Solidago Foundation'),
(89069, 74006, 'no_lang_code', 'name', 'QuizRR (Sweden)'),
(89070, 74007, 'sq', 'name', 'Instituti i Sigurisƫ Ushqimore dhe Veterinarisƫ'),
(89071, 74008, 'no_lang_code', 'name', 'Aqua Resources (United States)'),
(89072, 74009, 'no_lang_code', 'name', 'Fƶretagsfabriken i Kronoberg (Sweden)'),
(89073, 74010, 'en', 'name', 'Muslim Advocates'),
(89074, 74011, 'no_lang_code', 'name', 'Laser Shot (United States)'),
(89075, 74012, 'en', 'name', 'The Matthew Elvidge Trust'),
(89076, 74013, 'id', 'name', 'Ciliwung Merdeka'),
(89077, 74014, 'no_lang_code', 'name', 'Lund Science (Sweden)'),
(89078, 74015, 'no_lang_code', 'name', 'Twerd (Poland)'),
(89079, 74016, 'en', 'name', 'British Crystallographic Association'),
(89080, 74017, 'en', 'name', 'Small Woods Association'),
(89081, 74018, 'hi', 'name', 'भारत ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤¾ą¤ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(89082, 74018, 'no_lang_code', 'name', 'India Habitat Centre'),
(89083, 74019, 'no_lang_code', 'name', 'Loc (United States)'),
(89084, 74020, 'en', 'name', 'University Hospital of Lord’s Transfiguration'),
(89085, 74020, 'pl', 'name', 'Szpital Kliniczny Przemienienia Pańskiego'),
(89086, 74021, 'en', 'name', 'Essex Wildlife Trust'),
(89087, 74022, 'pt', 'name', 'Museu da Lourinhã'),
(89088, 74023, 'en', 'name', 'National Gallery of Arts'),
(89089, 74024, 'en', 'name', 'PROMETRA International'),
(89090, 74024, 'fr', 'name', 'L''Association de la Promotion de la MƩdecine Traditionnelle'),
(89091, 74025, 'en', 'name', 'Fredric Rieders Family Foundation'),
(89092, 74026, 'en', 'name', 'Scottish Federation of Housing Associations'),
(89093, 74027, 'en', 'name', 'Kirknewton Community Development Trust'),
(89094, 74028, 'no_lang_code', 'name', 'Unilever (France)'),
(89095, 74029, 'en', 'name', 'Learning Ovations'),
(89096, 74030, 'en', 'name', 'Softwarica College'),
(89097, 74031, 'da', 'name', 'Det Kongelige Nordiske Oldskriftselskab'),
(89098, 74031, 'no_lang_code', 'name', 'Royal Nordic Society of Antiquaries (Denmark)'),
(89099, 74032, 'en', 'name', 'Cuban Artists Fund'),
(89100, 74033, 'no_lang_code', 'name', 'Phoenix Contact (Poland)'),
(89101, 74034, 'en', 'name', 'South Cumbria Rivers Trust'),
(89102, 74035, 'en', 'name', 'Common Cause Education Fund'),
(89103, 74036, 'no_lang_code', 'name', 'UK-China Guangdong CCUS Centre'),
(89104, 74037, 'no_lang_code', 'name', 'Rhinomed (United States)'),
(89105, 74038, 'no_lang_code', 'name', 'Inceptus (United States)'),
(89106, 74039, 'no_lang_code', 'name', 'DeviceRadio (Sweden)'),
(89107, 74040, 'no_lang_code', 'name', 'Camx Power (United States)'),
(89108, 74041, 'en', 'name', 'Chartered Institution of Water and Environmental Management'),
(89109, 74042, 'no_lang_code', 'name', 'Szkuner (Poland)'),
(89110, 74043, 'no_lang_code', 'name', 'Mimerse (Sweden)'),
(89111, 74044, 'no_lang_code', 'name', 'Hong Kong Maritime Museum'),
(89112, 74044, 'zh', 'name', 'é¦™ęøÆęµ·äŗ‹åšē‰©é¤Ø'),
(89113, 74045, 'en', 'name', 'Infectious Diseases Data Observatory'),
(89114, 74046, 'en', 'name', 'Dr. Sadhana Nayak’s Voice Clinic and Center'),
(89115, 74047, 'no_lang_code', 'name', 'Nanoacademic Technologies'),
(89116, 74048, 'no_lang_code', 'name', 'DNA Diagnostics Center (United States)'),
(89117, 74049, 'no_lang_code', 'name', 'Lime Associates (United Kingdom)'),
(89118, 74050, 'no_lang_code', 'name', 'Ideon Innovation (Sweden)'),
(89119, 74051, 'en', 'name', 'International Space Science Institute - Beijing'),
(89120, 74051, 'zh', 'name', '国际空闓科学研究所-åŒ—äŗ¬'),
(89121, 74052, 'en', 'name', 'Beverly Hills Cardiology'),
(89122, 74053, 'en', 'name', 'Grassroots Institute for Fundraising Training'),
(89123, 74054, 'en', 'name', 'Institute of Cast Metals Engineers'),
(89124, 74055, 'en', 'name', 'Rights and Resources'),
(89125, 74056, 'no_lang_code', 'name', 'Ezenia (United States)'),
(89126, 74057, 'en', 'name', 'Cornwall Museums Partnership'),
(89127, 74058, 'en', 'name', 'Council of Magistrates of the Nation'),
(89128, 74058, 'es', 'name', 'Consejo de la Magistratura de la Nación'),
(89129, 74059, 'no_lang_code', 'name', 'Golden Agri-Resources (Singapore)'),
(89130, 74060, 'no_lang_code', 'name', 'Hqphotonics (United States)'),
(89131, 74061, 'en', 'name', 'Insigneo'),
(89132, 74062, 'no_lang_code', 'name', 'Vestas (United Kingdom)'),
(89133, 74063, 'no_lang_code', 'name', 'NeoGenomics (United States)'),
(89134, 74064, 'en', 'name', 'Zambia National Broadcasting Corporation'),
(89135, 74065, 'no_lang_code', 'name', 'Cell IDx (United States)'),
(89136, 74066, 'no_lang_code', 'name', 'Planact'),
(89137, 74067, 'en', 'name', 'Institute for Research on Innovation and Services for Development'),
(89138, 74067, 'it', 'name', 'Istituto di Ricerca su Innovazione e Servizi per lo Sviluppo'),
(89139, 74068, 'en', 'name', 'China Association of Higher Educaiton'),
(89140, 74068, 'zh', 'name', 'äø­å›½é«˜ē­‰ę•™č‚²å­¦ä¼š'),
(89141, 74069, 'en', 'name', 'Scottish Graduate School for Arts & Humanities'),
(89142, 74070, 'no_lang_code', 'name', 'Data One Global (United States)'),
(89143, 74071, 'en', 'name', 'British Cattle Veterinary Association'),
(89144, 74072, 'no_lang_code', 'name', 'Igennus Healthcare Nutrition (United Kingdom)'),
(89145, 74073, 'en', 'name', 'IsoForensics'),
(89146, 74074, 'en', 'name', 'Forward Cities'),
(89147, 74075, 'en', 'name', 'National Center for Historical Memory'),
(89148, 74075, 'es', 'name', 'Centre National de MƩmoire Historique'),
(89149, 74076, 'en', 'name', 'South Essex Rape and Incest Crisis Centre'),
(89150, 74077, 'no_lang_code', 'name', 'Healthcare Technologies and Methods (United States)'),
(89151, 74078, 'en', 'name', 'Indian Institute of Dalit Studies'),
(89152, 74078, 'hi', 'name', 'दलित ą¤øą„ą¤Ÿą¤”ą„€ą¤œ का ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(89153, 74079, 'ar', 'name', 'Ł…Ų±ŁƒŲ² بيروت للفن'),
(89154, 74079, 'en', 'name', 'Beirut Art Center'),
(89155, 74080, 'en', 'name', 'Sustainability Accounting Standards Board'),
(89156, 74081, 'no_lang_code', 'name', 'Jingpin Materials (China)'),
(89157, 74081, 'zh', 'name', 'č‹å·žę™¶å“ę–°ęę–™č‚”ä»½ęœ‰é™å…¬åø'),
(89158, 74082, 'fr', 'name', 'Institut SupƩrieur PrivƩ Polytechnique'),
(89159, 74083, 'en', 'name', 'New Gorbals Housing Association'),
(89160, 74084, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ł…Ł„ŁƒŁŠŲ© Ų§Ł„Ų§Ų±ŲÆŁ†ŁŠŲ© للأفلام'),
(89161, 74084, 'en', 'name', 'Royal Film Commission'),
(89162, 74085, 'en', 'name', 'Exercise Science Consulting'),
(89163, 74086, 'en', 'name', 'Dover Technical College'),
(89164, 74087, 'en', 'name', 'LifeMoves'),
(89165, 74088, 'en', 'name', 'QuTech'),
(89166, 74089, 'no_lang_code', 'name', 'Brooks Rand Instruments (United States)'),
(89167, 74090, 'no_lang_code', 'name', 'Brite Bio (United States)'),
(89168, 74091, 'no_lang_code', 'name', 'HumanN (United States)'),
(89169, 74092, 'en', 'name', 'National Telford Institute'),
(89170, 74093, 'en', 'name', 'Respect'),
(89171, 74094, 'no_lang_code', 'name', 'Cells Therapy (Poland)'),
(89172, 74095, 'no_lang_code', 'name', 'Petrol (Poland)'),
(89173, 74096, 'en', 'name', 'Centre for Sustainable Energy Use in Food'),
(89174, 74097, 'en', 'name', 'The Scottish Forestry Trust'),
(89175, 74098, 'no_lang_code', 'name', 'Sprint (Poland)'),
(89176, 74099, 'en', 'name', 'Hospitalfield'),
(89177, 74100, 'en', 'name', 'Newark Air Museum'),
(89178, 74101, 'en', 'name', 'Court of Appeal'),
(89179, 74101, 'th', 'name', 'ąøØąø²ąø„ąø­ąøøąø—ąø˜ąø£ąø“ą¹Œ'),
(89180, 74102, 'en', 'name', 'Delima Associates'),
(89181, 74103, 'es', 'name', 'Instituto de BiologĆ­a Molecular y Celular de Rosario'),
(89182, 74104, 'en', 'name', 'Provincial Polyclinical Hospital in Toruń'),
(89183, 74104, 'pl', 'name', 'Wojewódzki Szpital Zespolony im. L. Rydygiera w Toruniu'),
(89184, 74105, 'no_lang_code', 'name', 'NajĆ­t Technologies (United States)'),
(89185, 74106, 'bn', 'name', 'বাংলাদেশ ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø গবেষণা ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø'),
(89186, 74106, 'en', 'name', 'Bangladesh Institute of Development Studies'),
(89187, 74107, 'en', 'name', 'Justice Research and Statistics Association'),
(89188, 74108, 'no_lang_code', 'name', 'Textile Recycling Association'),
(89189, 74109, 'en', 'name', 'International University of Central Asia'),
(89190, 74110, 'en', 'name', 'Committee on Radioactive Waste Management'),
(89191, 74111, 'no_lang_code', 'name', 'Health and Education Research Management and Epidemiologic Services (United States)'),
(89192, 74112, 'en', 'name', 'NonFerrous Materials Technology Development Centre'),
(89193, 74113, 'en', 'name', 'Lincolnshire Partnership NHS Foundation Trust'),
(89194, 74114, 'en', 'name', 'St. Anna Hospital'),
(89195, 74115, 'es', 'name', 'Biblioteca Palafoxiana'),
(89196, 74116, 'en', 'name', 'Centre for Computing History'),
(89197, 74117, 'en', 'name', 'Egyptian Center for Culture and Arts'),
(89198, 74118, 'en', 'name', 'Rescobie Loch Development Association'),
(89199, 74119, 'en', 'name', 'Wrexham County Borough Museum & Archives'),
(89200, 74120, 'en', 'name', 'Southern Africa Nazarene University'),
(89201, 74121, 'no_lang_code', 'name', 'DayStar (United States)'),
(89202, 74122, 'en', 'name', 'Second Air Division Memorial Library'),
(89203, 74123, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure, Ɖcole Normale SupĆ©rieure d''Abidjan'),
(89204, 74124, 'no_lang_code', 'name', 'N5 Sensors (United States)'),
(89205, 74125, 'ar', 'name', 'Ł…Ų±ŁƒŲ² حفظ التراث Ų§Ł„Ų«Ł‚Ų§ŁŁŠ'),
(89206, 74125, 'en', 'name', 'Centre for Cultural Heritage Preservation'),
(89207, 74126, 'no_lang_code', 'name', 'Muquans (France)'),
(89208, 74127, 'en', 'name', 'Cleantech Scandinavia'),
(89209, 74128, 'en', 'name', 'Association for Young People’s Health'),
(89210, 74129, 'no_lang_code', 'name', 'Marshall Motor Holdings (United Kingdom)'),
(89211, 74130, 'no_lang_code', 'name', 'Hogan Lovells (United States)'),
(89212, 74131, 'en', 'name', 'Centre for Cosmology and Particle Physics Phenomenology'),
(89213, 74132, 'en', 'name', 'CarrotNewYork'),
(89214, 74133, 'en', 'name', 'Kenya Human Rights Commission'),
(89215, 74134, 'en', 'name', 'Driving Mobility'),
(89216, 74135, 'en', 'name', 'Northern Rock Foundation'),
(89217, 74136, 'en', 'name', 'Cardiovascular Medical Group'),
(89218, 74137, 'en', 'name', 'Urban Design Research Institute'),
(89219, 74138, 'no_lang_code', 'name', 'Enhanced Systems Consulting (United States)'),
(89220, 74139, 'en', 'name', 'The Meththa Foundation'),
(89221, 74140, 'en', 'name', 'Public Citizen'),
(89222, 74141, 'en', 'name', 'Tibetan Academy of Social Science'),
(89223, 74141, 'zh', 'name', 'č„æč—č‡Ŗę²»åŒŗē¤¾ä¼šē§‘å­¦é™¢'),
(89224, 74142, 'en', 'name', 'Saamarthya Foundation'),
(89225, 74143, 'en', 'name', 'Western States Center'),
(89226, 74144, 'no_lang_code', 'name', 'Micatu (United States)'),
(89227, 74145, 'no_lang_code', 'name', 'Informa (Sweden)'),
(89228, 74146, 'en', 'name', 'International Centre for Ethnic Studies'),
(89229, 74146, 'si', 'name', 'ą¶¢ą¶±ą·€ą·ą¶»ą·Šą¶œą·’ą¶š ą¶…ą¶°ą·Šą¶ŗą¶ŗą¶± ą·ƒą¶³ą·„ą· ą¶¢ą·ą¶­ą·Šą¶ŗą¶±ą·Šą¶­ą¶» ą¶øą¶°ą·Šą¶ŗą·ƒą·Šą¶®ą·ą¶±ą¶ŗ'),
(89230, 74147, 'en', 'name', 'Center for Responsible Travel'),
(89231, 74148, 'no_lang_code', 'name', 'iTaukei Trust Fund Board'),
(89232, 74149, 'no_lang_code', 'name', 'BuildSafe (Sweden)'),
(89233, 74150, 'no_lang_code', 'name', 'Nexstar Media Group (United States)'),
(89234, 74151, 'es', 'name', 'Hospital Regional de Talca'),
(89235, 74152, 'en', 'name', 'Landscape Research & Management'),
(89236, 74153, 'ar', 'name', 'Ų¬Ł…Ų¹ŁŠŲ© الامل Ų§Ł„Ų¹Ų±Ų§Ł‚ŁŠŲ© - Ł…ŁƒŲŖŲØ كركوك'),
(89237, 74153, 'en', 'name', 'Iraqi Al-Amal Association'),
(89238, 74154, 'no_lang_code', 'name', 'Skotan (Poland)'),
(89239, 74155, 'es', 'name', 'Ministerio Público Fiscal de la Ciudad Autónoma de Buenos Aires'),
(89240, 74156, 'en', 'name', 'Regional Inter-agency Task Team on Children and AIDS'),
(89241, 74157, 'no_lang_code', 'name', 'Riela (Poland)'),
(89242, 74158, 'en', 'name', 'The Trussell Trust'),
(89243, 74159, 'no_lang_code', 'name', 'COSM Advanced Manufacturing Systems (United States)'),
(89244, 74160, 'no_lang_code', 'name', 'Gem Power (United States)'),
(89245, 74161, 'de', 'name', 'Senckenberg Deutsches Entomologisches Institut'),
(89246, 74161, 'en', 'name', 'Senckenberg German Entomological Institute'),
(89247, 74162, 'en', 'name', 'Kenya Land Alliance'),
(89248, 74163, 'pt', 'name', 'Fórum Nacional pela Democratização da Comunicação'),
(89249, 74164, 'en', 'name', 'Weight Concern'),
(89250, 74165, 'en', 'name', 'George Sexton Associates'),
(89251, 74166, 'en', 'name', 'International Association for the Study of Traditional Environments'),
(89252, 74167, 'no_lang_code', 'name', 'ImpeDx Diagnostics (United States)'),
(89253, 74168, 'en', 'name', 'South East Health Technologies Alliance'),
(89254, 74169, 'pt', 'name', 'Movimento Interestadual das Quebradeiras de Coco BabaƧu'),
(89255, 74170, 'en', 'name', 'Royal College of Occupational Therapists'),
(89256, 74171, 'no_lang_code', 'name', 'Ambient Micro (United States)'),
(89257, 74172, 'no_lang_code', 'name', 'Dignitana (Sweden)'),
(89258, 74173, 'en', 'name', 'National District Attorneys Association'),
(89259, 74174, 'en', 'name', 'Kern Community College District'),
(89260, 74175, 'no_lang_code', 'name', 'Dyenamo (Sweden)'),
(89261, 74176, 'en', 'name', 'Grantmakers for Effective Organizations'),
(89262, 74177, 'no_lang_code', 'name', 'Energy Quest Technologies (United States)'),
(89263, 74178, 'en', 'name', 'Indiana Criminal Justice Institute'),
(89264, 74179, 'en', 'name', 'Borneo Orangutan Survival Foundation'),
(89265, 74180, 'en', 'name', 'Missouri Budget Project'),
(89266, 74181, 'en', 'name', 'Horn of Africa Press Institute'),
(89267, 74182, 'en', 'name', 'League of Resident Theatres'),
(89268, 74183, 'en', 'name', 'Moscow State University'),
(89269, 74183, 'ru', 'name', 'Филиал Московского Š³Š¾ŃŃƒŠ“арственного ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š° имени М.Š’. Ломоносова в гороГе Š”ŃƒŃˆŠ°Š½Š±Šµ'),
(89270, 74184, 'en', 'name', 'British Dragonfly Society'),
(89271, 74185, 'en', 'name', 'The Stables'),
(89272, 74186, 'no_lang_code', 'name', 'BioFluidica (United States)'),
(89273, 74187, 'en', 'name', 'Citizen Engagement Laboratory'),
(89274, 74188, 'en', 'name', 'International Alliance on Natural Resources in Africa'),
(89275, 74189, 'en', 'name', 'Namgyal Monastery Institute of Buddhist Studies'),
(89276, 74189, 'fr', 'name', 'Namgyal monastère Institut d''études bouddhistes'),
(89277, 74190, 'en', 'name', 'World Bioenergy Association'),
(89278, 74191, 'en', 'name', 'Colorado Organization for Latina Opportunity and Reproductive Rights'),
(89279, 74192, 'en', 'name', 'Centre for Rural and Remote Mental Health'),
(89280, 74193, 'en', 'name', 'Collaboration on International ICT Policy in East and Southern Africa'),
(89281, 74194, 'no_lang_code', 'name', 'EBTIC'),
(89282, 74195, 'es', 'name', 'Fundación Nacional para el Desarrollo');
INSERT INTO `ror_settings` VALUES
(89283, 74196, 'no_lang_code', 'name', 'InTouch Health (United States)'),
(89284, 74197, 'en', 'name', 'The W. Haywood Burns Institute'),
(89285, 74198, 'en', 'name', 'Ministry of Culture, Youth and Sport'),
(89286, 74198, 'sq', 'name', 'Ministria e Kulturƫs, Rinisƫ dhe Sportit e Kosovƫs'),
(89287, 74199, 'en', 'name', 'Playwrights Horizons'),
(89288, 74200, 'no_lang_code', 'name', 'Certerra (United States)'),
(89289, 74201, 'es', 'name', 'Centro de Investigación de la Caña de Azúcar de Colombia'),
(89290, 74202, 'no_lang_code', 'name', 'Metabolic Nutritionals (United States)'),
(89291, 74203, 'no_lang_code', 'name', 'Integration Innovation (United States)'),
(89292, 74204, 'en', 'name', 'Cornwall Partnership NHS Foundation Trust'),
(89293, 74205, 'en', 'name', 'Hackney Learning Trust'),
(89294, 74206, 'no_lang_code', 'name', 'Polbud-Pomorze (Poland)'),
(89295, 74207, 'en', 'name', 'Nepal Water Conservation Foundation'),
(89296, 74208, 'en', 'name', 'The Pier Arts Centre'),
(89297, 74209, 'en', 'name', 'Swedish Construction Clients'),
(89298, 74209, 'sv', 'name', 'Byggherrarna Sverige'),
(89299, 74210, 'no_lang_code', 'name', 'Elicityl (France)'),
(89300, 74211, 'en', 'name', 'Thackray Medical Museum'),
(89301, 74212, 'no_lang_code', 'name', 'Maestro (Sweden)'),
(89302, 74213, 'no_lang_code', 'name', 'Genpact (United States)'),
(89303, 74214, 'no_lang_code', 'name', 'Hartsci (United States)'),
(89304, 74215, 'en', 'name', 'Northern Ireland Housing Executive'),
(89305, 74216, 'en', 'name', 'Oregon Center for Public Policy'),
(89306, 74217, 'no_lang_code', 'name', 'Reece Innovation (United Kingdom)'),
(89307, 74218, 'en', 'name', 'Aga Khan Foundation'),
(89308, 74219, 'en', 'name', 'Leeds Community Foundation'),
(89309, 74220, 'en', 'name', 'Moseley Community Development Trust'),
(89310, 74221, 'fr', 'name', 'ANDI – Comunicación y Derechos'),
(89311, 74221, 'pt', 'name', 'ANDI'),
(89312, 74222, 'no_lang_code', 'name', 'LTCalcoli (Italy)'),
(89313, 74223, 'en', 'name', 'Cementitious Slag Makers Association'),
(89314, 74224, 'en', 'name', 'Day One'),
(89315, 74225, 'en', 'name', 'Brunelcare'),
(89316, 74226, 'en', 'name', 'Royal School of Administration'),
(89317, 74226, 'km', 'name', 'įžŸįž¶įž›įž¶įž—įž¼įž˜įž·įž“įŸ’įž‘įžšįžŠįŸ’įž‹įž”įž¶įž›'),
(89318, 74227, 'en', 'name', 'Joint Institute for Computational Sciences'),
(89319, 74228, 'no_lang_code', 'name', 'X-Code (Poland)'),
(89320, 74229, 'en', 'name', 'Molteno Institute for Language and Literacy'),
(89321, 74230, 'en', 'name', 'Big Science Suppliers Network'),
(89322, 74231, 'en', 'name', 'Feminist Center for Studies and Advisory Services'),
(89323, 74231, 'pt', 'name', 'Centro Feminista de Estudos e Assessoria'),
(89324, 74232, 'en', 'name', 'Bucks County Intermediate Unit'),
(89325, 74233, 'no_lang_code', 'name', 'Chornobyl Center'),
(89326, 74233, 'uk', 'name', 'Š§Š¾Ń€Š½Š¾Š±ŠøŠ»ŃŒŃŃŒŠŗŠøŠ¹ центр'),
(89327, 74234, 'no_lang_code', 'name', 'IC Tech (United States)'),
(89328, 74235, 'pt', 'name', 'Instituto Akatu'),
(89329, 74236, 'en', 'name', 'Mural Arts Philadelphia'),
(89330, 74237, 'no_lang_code', 'name', 'MBC Pharma (United States)'),
(89331, 74238, 'no_lang_code', 'name', 'NETGEAR (United States)'),
(89332, 74239, 'no_lang_code', 'name', 'Osteotronix (United Kingdom)'),
(89333, 74240, 'en', 'name', 'Port Washington Public Library'),
(89334, 74241, 'en', 'name', 'Center on Policy Initiatives'),
(89335, 74242, 'en', 'name', 'Alabama State Office of Governor'),
(89336, 74243, 'no_lang_code', 'name', 'Hotto Link (Japan)'),
(89337, 74244, 'en', 'name', 'Centre for Environmental Rights'),
(89338, 74245, 'no_lang_code', 'name', 'PASSAsia (Sri Lanka)'),
(89339, 74246, 'no_lang_code', 'name', 'Global Professional Consulting (United States)'),
(89340, 74247, 'no_lang_code', 'name', 'Folded Structures (United States)'),
(89341, 74248, 'no_lang_code', 'name', 'Lithium Power (United States)'),
(89342, 74249, 'pt', 'name', 'Fundo Brasil, Fundo Brasil de Direitos Humanos'),
(89343, 74250, 'en', 'name', 'Middlesex University'),
(89344, 74251, 'en', 'name', 'City of Stoke-on-Trent Sixth Form College'),
(89345, 74252, 'en', 'name', 'Liberty Hill'),
(89346, 74253, 'no_lang_code', 'name', 'C4 Therapeutics (United States)'),
(89347, 74254, 'no_lang_code', 'name', 'Enterprise Sciences (United States)'),
(89348, 74255, 'en', 'name', 'Northwest Heart Clinical Research'),
(89349, 74256, 'en', 'name', 'Align Economy Environment Equity'),
(89350, 74257, 'en', 'name', 'Mount Sanford Tribal Consortium'),
(89351, 74258, 'en', 'name', 'Civil Society Budget Advocacy Group'),
(89352, 74259, 'no_lang_code', 'name', 'Madeleine Pharmaceuticals (United States)'),
(89353, 74260, 'en', 'name', 'Amnesty International USA'),
(89354, 74261, 'en', 'name', 'South Asians for Human Rights'),
(89355, 74262, 'no_lang_code', 'name', 'Globalworks (Sweden)'),
(89356, 74263, 'en', 'name', 'Gideon''s Promise'),
(89357, 74264, 'en', 'name', 'Wormingford Community Education Centre'),
(89358, 74265, 'no_lang_code', 'name', 'Lumetrics (United States)'),
(89359, 74266, 'en', 'name', 'Centre for Effective Dispute Resolution'),
(89360, 74267, 'id', 'name', 'Dewan Kesenian Jakarta'),
(89361, 74268, 'en', 'name', 'Association of Convenience Stores'),
(89362, 74269, 'en', 'name', 'Artspace'),
(89363, 74270, 'no_lang_code', 'name', 'Chalmers Ventures (Sweden)'),
(89364, 74271, 'en', 'name', 'Centre for Global Equality'),
(89365, 74272, 'no_lang_code', 'name', 'Fomos-Materials (Russia)'),
(89366, 74273, 'en', 'name', 'English Folk Dance and Song Society'),
(89367, 74274, 'no_lang_code', 'name', 'Digital Science Technologies (United States)'),
(89368, 74275, 'no_lang_code', 'name', 'Sensefarm (Sweden)'),
(89369, 74276, 'no_lang_code', 'name', 'Elforest Technologies (Sweden)'),
(89370, 74277, 'no_lang_code', 'name', 'Front Range Engineering (United States)'),
(89371, 74278, 'en', 'name', 'Shakespeare Globe Trust'),
(89372, 74279, 'en', 'name', 'Portland Center Stage at The Armory'),
(89373, 74280, 'en', 'name', 'The London College'),
(89374, 74281, 'no_lang_code', 'name', 'Bergskraft Bergslagen (Sweden)'),
(89375, 74282, 'en', 'name', 'Eureka'),
(89376, 74283, 'en', 'name', 'The Cartoon Museum'),
(89377, 74284, 'no_lang_code', 'name', 'Brainxell (United States)'),
(89378, 74285, 'en', 'name', 'Ironbridge Gorge Museum Trust'),
(89379, 74286, 'en', 'name', 'International Islamic Center for Population Studies and Research'),
(89380, 74287, 'en', 'name', 'British Council for Offices'),
(89381, 74288, 'no_lang_code', 'name', 'Advanced Medical Equipment (United Kingdom)'),
(89382, 74289, 'en', 'name', 'Fintry Development Trust'),
(89383, 74290, 'no_lang_code', 'name', 'Nuvia (United Kingdom)'),
(89384, 74291, 'no_lang_code', 'name', 'BMSEED (United States)'),
(89385, 74292, 'no_lang_code', 'name', 'Materials Resources (United States)'),
(89386, 74293, 'fr', 'name', 'Institut des Hautes Ɖtudes du MinistĆØre de l''IntĆ©rieur'),
(89387, 74294, 'bn', 'name', 'ą¦Ŗą¦²ą§ą¦²ą§€ ą¦•ą¦°ą§ą¦®-ą¦øą¦¹ą¦¾ą§Ÿą¦• ą¦«ą¦¾ą¦‰ą¦Øą§ą¦”ą§‡ą¦¶ą¦Øą„¤'),
(89388, 74294, 'en', 'name', 'Palli Karma Sahayak Foundation'),
(89389, 74295, 'en', 'name', 'National Association of Funeral Directors'),
(89390, 74296, 'no_lang_code', 'name', 'Post Bellum'),
(89391, 74297, 'en', 'name', 'Reading International Solidarity Centre'),
(89392, 74298, 'en', 'name', 'Procomum Institute'),
(89393, 74298, 'pt', 'name', 'Instituto Procomum'),
(89394, 74299, 'en', 'name', 'Centre for Study of Society and Secularism'),
(89395, 74300, 'en', 'name', 'Wisconsin Disability Association'),
(89396, 74301, 'en', 'name', 'St. Vincent and the Grenadines Community College'),
(89397, 74302, 'he', 'name', 'مدى Ų§Ł„ŁƒŲ±Ł…Ł„'),
(89398, 74302, 'no_lang_code', 'name', 'Mada al-Carmel'),
(89399, 74303, 'de', 'name', 'Ɩsterreichische Forschungsstiftung für Internationale Entwicklung'),
(89400, 74303, 'en', 'name', 'Austrian Foundation for Development Research'),
(89401, 74304, 'en', 'name', 'Railway Industry Association'),
(89402, 74305, 'de', 'name', 'Jesuiten, Jesuitenkolleg'),
(89403, 74306, 'it', 'name', 'Ospedale "Floraspe Renzetti"'),
(89404, 74307, 'no_lang_code', 'name', 'Rolfes Henry (United States)'),
(89405, 74308, 'en', 'name', 'Centre for Social Justice'),
(89406, 74309, 'no_lang_code', 'name', 'AdƔmas Nano (United States)'),
(89407, 74310, 'no_lang_code', 'name', 'AirLift Environmental (United States)'),
(89408, 74311, 'no_lang_code', 'name', 'Advanced Fluidics (United States)'),
(89409, 74312, 'no_lang_code', 'name', 'Aspin (United Kingdom)'),
(89410, 74313, 'no_lang_code', 'name', 'Jan Biotech (United States)'),
(89411, 74314, 'en', 'name', 'Asha Foundation'),
(89412, 74315, 'en', 'name', 'Twaweza Communications'),
(89413, 74316, 'en', 'name', 'Independent Institute for Social Policy'),
(89414, 74316, 'ru', 'name', 'ŠŠµŠ·Š°Š²ŠøŃŠøŠ¼Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ политики'),
(89415, 74317, 'no_lang_code', 'name', 'Veridict (Sweden)'),
(89416, 74318, 'no_lang_code', 'name', 'Zenergy (Sweden)'),
(89417, 74319, 'no_lang_code', 'name', 'Topricin (United States)'),
(89418, 74320, 'en', 'name', 'African Centre for Parliamentary Affairs'),
(89419, 74321, 'no_lang_code', 'name', 'Energy Concepts (United States)'),
(89420, 74322, 'en', 'name', 'RAC Foundation'),
(89421, 74323, 'en', 'name', 'Center for Indonesian Veterinary Analytical Studies'),
(89422, 74324, 'en', 'name', 'Fuping Development Institute'),
(89423, 74324, 'zh', 'name', 'åŒ—äŗ¬åÆŒå¹³å­¦ę ”'),
(89424, 74325, 'en', 'name', 'Amina'),
(89425, 74326, 'no_lang_code', 'name', 'MegaChips (United States)'),
(89426, 74327, 'en', 'name', '9to5'),
(89427, 74328, 'ar', 'name', 'منتدى Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(89428, 74328, 'en', 'name', 'Social Science Forum'),
(89429, 74329, 'no_lang_code', 'name', 'SMC (United Kingdom)'),
(89430, 74330, 'pt', 'name', 'Centro Panamericano de Fiebre Aftosa'),
(89431, 74331, 'no_lang_code', 'name', 'Miyazaki Enterprises (United States)'),
(89432, 74332, 'en', 'name', 'Institute of Industry Analyst Relations'),
(89433, 74333, 'no_lang_code', 'name', 'BiVACOR (United States)'),
(89434, 74334, 'no_lang_code', 'name', 'Ballet HispƔnico (United States)'),
(89435, 74335, 'sv', 'name', 'BrƤcke Diakoni'),
(89436, 74336, 'en', 'name', 'St. Francis Referral Hospital'),
(89437, 74337, 'no_lang_code', 'name', 'Backyard Brains (United States)'),
(89438, 74338, 'no_lang_code', 'name', 'Cameca (United States)'),
(89439, 74339, 'en', 'name', 'Shawlands Academy'),
(89440, 74340, 'no_lang_code', 'name', 'Life Cycle Engineering (United States)'),
(89441, 74341, 'no_lang_code', 'name', 'Automex (Poland)'),
(89442, 74342, 'ar', 'name', 'Ų§Ł„Ł‚ŲØŲ·ŁŠŲ© Ų§Ł„Ų„Ł†Ų¬ŁŠŁ„ŁŠŲ© للخدمات Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© في ŲŖŁ‚'),
(89443, 74342, 'en', 'name', 'Coptic Evangelical Organization for Social Services'),
(89444, 74343, 'en', 'name', 'Foundation for Common Land'),
(89445, 74344, 'no_lang_code', 'name', 'Clock Spring (United States)'),
(89446, 74345, 'fr', 'name', 'Centre National de Lutte Antiacridienne'),
(89447, 74346, 'de', 'name', 'Landesamt für Denkmalpflege Sachsen'),
(89448, 74347, 'en', 'name', 'Institute of Archeology and Ethnography'),
(89449, 74347, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ археологии Šø ŃŃ‚Š½Š¾Š³Ń€Š°Ń„ŠøŠø'),
(89450, 74348, 'no_lang_code', 'name', 'Torbay Development Agency (United Kingdom)'),
(89451, 74349, 'en', 'name', 'Coastal Cancer Center'),
(89452, 74350, 'no_lang_code', 'name', 'Infinite Technologies (United States)'),
(89453, 74351, 'ar', 'name', 'فيوتؓر Ų§ŁƒŲ§ŲÆŁŠŁ…Ł‰'),
(89454, 74351, 'en', 'name', 'Future Academy'),
(89455, 74352, 'no_lang_code', 'name', 'VoicePIN.com (Poland)'),
(89456, 74353, 'en', 'name', 'North Alabama Research Center'),
(89457, 74354, 'en', 'name', 'Fife Coast and Countryside Trust'),
(89458, 74355, 'ja', 'name', 'ę²³åŒ—ę–°å ±'),
(89459, 74355, 'no_lang_code', 'name', 'Kahoku Shimpō'),
(89460, 74356, 'en', 'name', 'Kenya Association of Professional Counsellors'),
(89461, 74357, 'es', 'name', 'Instituto de AgrobiotecnologĆ­a del Litoral'),
(89462, 74358, 'no_lang_code', 'name', 'Kinetic Resolve (United States)'),
(89463, 74359, 'en', 'name', 'Smuts House Museum'),
(89464, 74360, 'en', 'name', 'Indira Gandhi Delhi Technical University for Women'),
(89465, 74361, 'no_lang_code', 'name', 'Great Basin Data Recovery (United States)'),
(89466, 74362, 'no_lang_code', 'name', 'Cobra Design & Engineering (United States)'),
(89467, 74363, 'en', 'name', 'Ramblers'),
(89468, 74364, 'en', 'name', 'The Environmental Foundation for Africa'),
(89469, 74365, 'en', 'name', 'Freedom of the Press Foundation'),
(89470, 74366, 'no_lang_code', 'name', 'Coreform (United States)'),
(89471, 74367, 'en', 'name', 'British Hydropower Association'),
(89472, 74368, 'no_lang_code', 'name', 'Sweheat & Cooling (Sweden)'),
(89473, 74369, 'no_lang_code', 'name', 'American Maglev Technology (United States)'),
(89474, 74370, 'no_lang_code', 'name', 'Igenbio (United States)'),
(89475, 74371, 'en', 'name', 'University of Warwick Science Park'),
(89476, 74372, 'en', 'name', 'Understanding Childhood Arthritis Network'),
(89477, 74373, 'en', 'name', 'Chengdu Shuguang Community Development Capacity Building Center'),
(89478, 74374, 'no_lang_code', 'name', 'Argos Intelligence (United States)'),
(89479, 74375, 'no_lang_code', 'name', 'Shanghai Dramatic Arts Centre (China)'),
(89480, 74375, 'zh', 'name', 'äøŠęµ·čÆå‰§č‰ŗęœÆäø­åæƒ'),
(89481, 74376, 'en', 'name', 'Putnoe Medical Centre'),
(89482, 74377, 'en', 'name', 'National Institute for Seismology, Vulcanology, Meteorology and Hydrology'),
(89483, 74377, 'es', 'name', 'Instituto Nacional de SismologĆ­a, VulcanologĆ­a, MeteorologĆ­a e HidrologĆ­a'),
(89484, 74378, 'en', 'name', 'Centre for Indigenous Cultures of Peru'),
(89485, 74378, 'es', 'name', 'Centro de Culturas IndĆ­genas del PerĆŗ'),
(89486, 74379, 'no_lang_code', 'name', 'HarmonoLogic (United States)'),
(89487, 74380, 'de', 'name', 'Institut für Zuckerrübenforschung'),
(89488, 74381, 'no_lang_code', 'name', 'Rochester Precision Optics (United States)'),
(89489, 74382, 'en', 'name', 'Metal Industries Research & Development Centre'),
(89490, 74382, 'zh', 'name', 'é‡‘å±¬å·„ę„­ē ”ē©¶ē™¼å±•äø­åæƒ'),
(89491, 74383, 'no_lang_code', 'name', 'Gemini Computers (United States)'),
(89492, 74384, 'en', 'name', 'Ministry of Education, Science and Technology'),
(89493, 74384, 'sq', 'name', 'Ministria e Arsimit, e Shkencƫs dhe e Teknologjisƫ'),
(89494, 74385, 'en', 'name', 'Phu Yen University'),
(89495, 74385, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c PhĆŗ YĆŖn'),
(89496, 74386, 'no_lang_code', 'name', 'Analysis, Integration & Design (United States)'),
(89497, 74387, 'en', 'name', 'Forest Peoples Programme'),
(89498, 74388, 'en', 'name', 'The Mill'),
(89499, 74389, 'no_lang_code', 'name', 'Aptinyx (United States)'),
(89500, 74390, 'en', 'name', 'Advanced Propulsion Centre'),
(89501, 74391, 'en', 'name', 'Capital Academy of Finance and Humanities'),
(89502, 74391, 'ru', 'name', 'Š”Ń‚Š¾Š»ŠøŃ‡Š½Š°Ń Финансово-Š“ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(89503, 74392, 'en', 'name', 'Hamilton Multicultural Services Trust'),
(89504, 74393, 'en', 'name', 'National Society for Earthquake Technology'),
(89505, 74394, 'no_lang_code', 'name', 'Actoprobe (United States)'),
(89506, 74395, 'en', 'name', 'Geographical Association'),
(89507, 74396, 'en', 'name', 'State of Vermont Office of Governor'),
(89508, 74397, 'en', 'name', 'Cyprus Arbitration & Mediation Centre'),
(89509, 74398, 'en', 'name', 'Center for Public Policy Priorities'),
(89510, 74399, 'no_lang_code', 'name', 'HyPerComp Engineering (United States)'),
(89511, 74400, 'pt', 'name', 'Sindicato dos Trabalhadores Rurais de Caxias do Sul'),
(89512, 74401, 'en', 'name', 'Urban Justice Center'),
(89513, 74402, 'no_lang_code', 'name', 'Teraphysics (United States)'),
(89514, 74403, 'en', 'name', 'Cranfield Trust'),
(89515, 74404, 'no_lang_code', 'name', 'TESco Associates (United States)'),
(89516, 74405, 'it', 'name', 'Museo Egizio'),
(89517, 74406, 'en', 'name', 'Internal Displacement Monitoring Centre'),
(89518, 74407, 'no_lang_code', 'name', 'Studio Olgoj Chorchoj'),
(89519, 74408, 'en', 'name', 'Indian Institute of Public Health Gandhinagar'),
(89520, 74408, 'gu', 'name', 'ભારતીય જન ąŖøą«ąŖµąŖ¾ąŖøą«ąŖ„ ąŖøąŖ‚ąŖøą«ąŖ„ąŖ¾ąŖØ ગાંધીનગર'),
(89521, 74409, 'no_lang_code', 'name', 'Akron Rubber Development Laboratory (United States)'),
(89522, 74410, 'en', 'name', 'Powell Cotton Museum'),
(89523, 74411, 'es', 'name', 'Red Universitaria Mutis'),
(89524, 74412, 'es', 'name', 'Centro Regional de Derechos Humanos y Justicia de Género, Corporación Humanas'),
(89525, 74413, 'en', 'name', 'National Association of Drug Court Professionals'),
(89526, 74414, 'no_lang_code', 'name', 'Uniswed (Sweden)'),
(89527, 74415, 'en', 'name', 'Centre for Women War Victims'),
(89528, 74416, 'no_lang_code', 'name', 'UVElite (Sweden)'),
(89529, 74417, 'no_lang_code', 'name', 'Hocuslocus (United States)'),
(89530, 74418, 'en', 'name', 'Oxford Centre for Drug Delivery Devices'),
(89531, 74419, 'no_lang_code', 'name', 'Hydromar (Poland)'),
(89532, 74420, 'no_lang_code', 'name', 'Mod9 Technologies (United States)'),
(89533, 74421, 'no_lang_code', 'name', 'The Medical Device (United Kingdom)'),
(89534, 74422, 'no_lang_code', 'name', 'International Data Group (Sweden)'),
(89535, 74423, 'en', 'name', 'Leeds College of Building'),
(89536, 74424, 'en', 'name', 'Center for Khmer Studies'),
(89537, 74425, 'en', 'name', 'China Classification Society'),
(89538, 74425, 'zh', 'name', 'äø­åœ‹čˆ¹ē“šē¤¾'),
(89539, 74426, 'no_lang_code', 'name', 'Telvis (Poland)'),
(89540, 74427, 'en', 'name', 'Dudley Associates'),
(89541, 74428, 'en', 'name', 'Alternate Roots'),
(89542, 74429, 'no_lang_code', 'name', 'M C I SantƩ Animale (Morocco)'),
(89543, 74430, 'no_lang_code', 'name', 'Oxipit (Lithuania)'),
(89544, 74431, 'no_lang_code', 'name', 'Innovative Materials & Processes (United States)'),
(89545, 74432, 'en', 'name', 'Washington Glass School'),
(89546, 74433, 'en', 'name', 'St Albans Museums'),
(89547, 74434, 'no_lang_code', 'name', 'Alice Films (France)'),
(89548, 74435, 'no_lang_code', 'name', 'Precipio (United States)'),
(89549, 74436, 'en', 'name', 'Peace Museum'),
(89550, 74437, 'en', 'name', 'Water Industry Forum'),
(89551, 74438, 'no_lang_code', 'name', 'Descartes Labs (United States)'),
(89552, 74439, 'en', 'name', 'Centre for Printing History and Culture'),
(89553, 74440, 'en', 'name', 'Arts & Health South'),
(89554, 74441, 'en', 'name', 'Judicial Yuan'),
(89555, 74441, 'zh', 'name', 'åøę³•é™¢'),
(89556, 74442, 'no_lang_code', 'name', 'VoiceLab (Poland)'),
(89557, 74443, 'en', 'name', 'China Population Welfare Foundation'),
(89558, 74443, 'zh', 'name', 'äø­å›½äŗŗå£ē¦åˆ©åŸŗé‡‘ä¼š'),
(89559, 74444, 'en', 'name', 'Centre for Crime and Justice Studies'),
(89560, 74445, 'no_lang_code', 'name', 'Taylor McKenzie (United Kingdom)'),
(89561, 74446, 'pt', 'name', 'Instituto de Pesquisas e Estudos Afro Brasileiros'),
(89562, 74447, 'fr', 'name', 'MinistĆØre des Affaires Ɖconomiques et de la Promotion des Secteurs Productifs'),
(89563, 74448, 'no_lang_code', 'name', 'Materials Research Group (United States)'),
(89564, 74449, 'en', 'name', 'Social Action'),
(89565, 74450, 'no_lang_code', 'name', 'Harare Central Hospital'),
(89566, 74451, 'no_lang_code', 'name', 'Antigua State College'),
(89567, 74452, 'es', 'name', 'Instituto Nacional de Medicina Tropical'),
(89568, 74453, 'fr', 'name', 'Centre International de PoƩsie Marseille'),
(89569, 74454, 'en', 'name', 'Gujarat Institute of Desert Ecology'),
(89570, 74455, 'en', 'name', 'Community Development Corporation of Brownsville'),
(89571, 74456, 'en', 'name', 'Internet Service Providers Association'),
(89572, 74457, 'no_lang_code', 'name', 'Owens Corning (Brazil)'),
(89573, 74458, 'sv', 'name', 'Carlanderska Sjukhuset'),
(89574, 74459, 'en', 'name', 'Michigan League for Public Policy'),
(89575, 74460, 'no_lang_code', 'name', 'DHPC Technologies (United States)'),
(89576, 74461, 'es', 'name', 'Universidad San Carlos'),
(89577, 74462, 'en', 'name', 'Russian State University of Justice'),
(89578, 74462, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŸŃ€Š°Š²Š¾ŃŃƒŠ“ŠøŃ'),
(89579, 74463, 'en', 'name', 'Ecological Continuity Trust'),
(89580, 74464, 'no_lang_code', 'name', 'dTEC Systems (United States)'),
(89581, 74465, 'de', 'name', 'Nephrologisches Zentrum Emsland'),
(89582, 74466, 'en', 'name', 'UK Collaborative on Development Research'),
(89583, 74467, 'en', 'name', 'Federal Senate'),
(89584, 74467, 'pt', 'name', 'Senado Federal'),
(89585, 74468, 'no_lang_code', 'name', 'Lentex (Poland)'),
(89586, 74469, 'en', 'name', 'Crossroads Youth & Community Association'),
(89587, 74470, 'en', 'name', 'Public Works Department Buildings and Roads'),
(89588, 74471, 'en', 'name', 'Queen Elizabeth’s Academy'),
(89589, 74472, 'en', 'name', 'Clifton Suspension Bridge Trust'),
(89590, 74473, 'ar', 'name', 'متحف البصرة'),
(89591, 74473, 'en', 'name', 'Friends of Basrah Museum'),
(89592, 74474, 'en', 'name', 'Institute of Group Analysis'),
(89593, 74475, 'en', 'name', 'The National Coalition on Black Civic Participation'),
(89594, 74476, 'en', 'name', 'Emil Racovita Institute of Speleology'),
(89595, 74476, 'ro', 'name', 'Institutul De Speologie Emil Racoviţă'),
(89596, 74477, 'en', 'name', 'Dutch Institute for Alcohol Policy'),
(89597, 74477, 'nl', 'name', 'Nederlands Instituut voor Alcoholbeleid'),
(89598, 74478, 'no_lang_code', 'name', 'ItaĆŗsa (Brazil)'),
(89599, 74479, 'no_lang_code', 'name', 'Cytoptics (United States)'),
(89600, 74480, 'en', 'name', 'Institute of Chartered Accountants in England and Wales'),
(89601, 74481, 'no_lang_code', 'name', 'HTD Biosystems (United States)'),
(89602, 74482, 'en', 'name', 'The Patients Association'),
(89603, 74483, 'pt', 'name', 'Associação Brasileira de Pesquisadores Negros'),
(89604, 74484, 'en', 'name', 'National Capital Commission'),
(89605, 74484, 'fr', 'name', 'Commission de la Capitale Nationale'),
(89606, 74485, 'no_lang_code', 'name', 'Elysium Therapeutics (United States)'),
(89607, 74486, 'en', 'name', 'National Center for Technological Progress'),
(89608, 74486, 'vi', 'name', 'Viện ứng dỄng cĆ“ng nghệ'),
(89609, 74487, 'en', 'name', 'Fair Share Education Fund'),
(89610, 74488, 'en', 'name', 'Stockholm Makerspace'),
(89611, 74489, 'en', 'name', 'Start'),
(89612, 74490, 'pt', 'name', 'Museu Afro Brasil'),
(89613, 74491, 'pt', 'name', 'Instituto para o Desenvolvimento do Jornalismo'),
(89614, 74492, 'no_lang_code', 'name', 'NTS (United States)'),
(89615, 74493, 'en', 'name', 'National Committee for Responsive Philanthropy'),
(89616, 74494, 'en', 'name', 'British Meat Processors Association'),
(89617, 74495, 'en', 'name', 'National Space Agency'),
(89618, 74495, 'ms', 'name', 'Agensi Angkasa Negara'),
(89619, 74496, 'no_lang_code', 'name', 'Micro Vascular Theraputics (United States)'),
(89620, 74497, 'en', 'name', 'Oregon Shakespeare Festival'),
(89621, 74498, 'no_lang_code', 'name', 'Mevia (Sweden)'),
(89622, 74499, 'no_lang_code', 'name', 'Agilent Technologies (Sweden)'),
(89623, 74500, 'no_lang_code', 'name', 'Direct Electron (United States)'),
(89624, 74501, 'en', 'name', 'North Tolsta Historical Society'),
(89625, 74502, 'en', 'name', 'Centre for Environment Education'),
(89626, 74503, 'en', 'name', 'PLA Academy of Military Science'),
(89627, 74503, 'zh', 'name', '中国人民解放军军事科学院'),
(89628, 74504, 'en', 'name', 'Planned Environment Therapy Trust'),
(89629, 74505, 'no_lang_code', 'name', 'Iamip (Sweden)'),
(89630, 74506, 'en', 'name', 'National Korean American Service & Education Consortium'),
(89631, 74507, 'no_lang_code', 'name', 'Gnosco (Sweden)'),
(89632, 74508, 'en', 'name', 'Ocean Doctor'),
(89633, 74509, 'en', 'name', 'Oldham Council'),
(89634, 74510, 'ja', 'name', 'čŖ­å£²ę–°čž'),
(89635, 74510, 'no_lang_code', 'name', 'Yomiuri Group (Japan)'),
(89636, 74511, 'en', 'name', 'Wildwood Trust'),
(89637, 74512, 'en', 'name', 'Renewable Energy and Energy Efficiency Partnership'),
(89638, 74513, 'no_lang_code', 'name', 'Lasanaa'),
(89639, 74514, 'en', 'name', 'The Financial Inclusion Centre'),
(89640, 74515, 'en', 'name', 'Angelman Syndrome Support Education & Research Trust'),
(89641, 74516, 'en', 'name', 'City of Knowledge'),
(89642, 74516, 'es', 'name', 'Ciudad del Saber'),
(89643, 74517, 'no_lang_code', 'name', 'Nomura Plating (Japan)'),
(89644, 74518, 'en', 'name', 'Uganda Association of Women Lawyers'),
(89645, 74519, 'es', 'name', 'Hospital Regional de Arica Doctor Juan NoƩ Crevani'),
(89646, 74520, 'de', 'name', 'Genfer Zentrum für die demokratische Kontrolle der Streitkräfte'),
(89647, 74520, 'en', 'name', 'Geneva Centre for the Democratic Control of Armed Forces'),
(89648, 74520, 'fr', 'name', 'Centre pour le contrƓle dƩmocratique des forces armƩes'),
(89649, 74521, 'en', 'name', 'Bach Dancing and Dynamite Society'),
(89650, 74522, 'en', 'name', 'Uganda National Council for Higher Education'),
(89651, 74523, 'en', 'name', 'Campaign for Migrant Worker Justice'),
(89652, 74524, 'no_lang_code', 'name', 'Naftogaz (Ukraine)'),
(89653, 74524, 'uk', 'name', 'ŠŠ°Ń„Ń‚Š¾Š³Š°Š· України'),
(89654, 74525, 'en', 'name', 'Clinton Foundation'),
(89655, 74526, 'en', 'name', 'Energy Technology Centre'),
(89656, 74527, 'en', 'name', 'Wise Monkey Foundation'),
(89657, 74528, 'no_lang_code', 'name', 'Engemasa (Brazil)'),
(89658, 74529, 'en', 'name', 'Geophysical Institute of Peru'),
(89659, 74529, 'es', 'name', 'Instituto GeofĆ­sico del PerĆŗ'),
(89660, 74530, 'no_lang_code', 'name', 'Promote Medical (United Kingdom)'),
(89661, 74531, 'ja', 'name', 'RKBęÆŽę—„ę”¾é€ę Ŗå¼ä¼šē¤¾'),
(89662, 74531, 'no_lang_code', 'name', 'RKB Mainichi Broadcasting (Japan)'),
(89663, 74532, 'fr', 'name', 'HƩmostase et Dynamique Cellulaire Vasculaire'),
(89664, 74533, 'en', 'name', 'Chartered Institute of Management Accountants'),
(89665, 74534, 'en', 'name', 'The Center For Rural Development'),
(89666, 74535, 'en', 'name', 'Samata Foundation'),
(89667, 74535, 'ne', 'name', 'समता ą¤«ą¤¾ą¤‰ą¤Øą„ą¤”ą„‡ą¤¶ą¤Ø'),
(89668, 74536, 'en', 'name', 'European Public Health Association'),
(89669, 74537, 'no_lang_code', 'name', 'Special Production Plant Gamrat (Poland)'),
(89670, 74537, 'pl', 'name', 'Zaklad Produkcji Specjalnej Gamrat'),
(89671, 74538, 'no_lang_code', 'name', 'Shangri-la Institute'),
(89672, 74538, 'zh', 'name', 'é¦™ę ¼é‡Œę‹‰åÆęŒē»­ē¤¾åŒŗå­¦ä¼š'),
(89673, 74539, 'fr', 'name', 'Centre National d''Art et de Culture Georges-Pompidou, Centre Pompidou'),
(89674, 74540, 'en', 'name', 'Hereford Health and Safety Group'),
(89675, 74541, 'es', 'name', 'Hospital Las Higueras'),
(89676, 74542, 'no_lang_code', 'name', 'Cerberus Security Laboratories (United Kingdom)'),
(89677, 74543, 'en', 'name', 'Directorate of Scheduled Tribes Development Department'),
(89678, 74544, 'en', 'name', 'Center for Domestic Violence Prevention'),
(89679, 74545, 'no_lang_code', 'name', 'Detectogen (United States)'),
(89680, 74546, 'no_lang_code', 'name', 'AlphaMicron (United States)'),
(89681, 74547, 'en', 'name', 'Nepal Centre for Contemporary Studies'),
(89682, 74548, 'en', 'name', 'Department for Communities'),
(89683, 74549, 'en', 'name', 'Brunei Polytechnic'),
(89684, 74549, 'ms', 'name', 'Politeknik Brunei'),
(89685, 74550, 'no_lang_code', 'name', 'BCO (United States)'),
(89686, 74551, 'no_lang_code', 'name', 'Dependable Computing (United States)'),
(89687, 74552, 'no_lang_code', 'name', 'Capture Pharmaceuticals (United States)'),
(89688, 74553, 'en', 'name', 'Khoj International Artists'' Association'),
(89689, 74554, 'en', 'name', 'The Research Network'),
(89690, 74555, 'en', 'name', 'Justice & Security Strategies'),
(89691, 74556, 'en', 'name', 'Regional Plan Association'),
(89692, 74557, 'en', 'name', 'Barrier Breakers Foundation'),
(89693, 74558, 'pl', 'name', 'Specjalistyczny Szpital Miejski im. M. Kopernika'),
(89694, 74559, 'no_lang_code', 'name', 'API Engineering (United States)'),
(89695, 74560, 'en', 'name', 'Nehru Memorial Museum & Library'),
(89696, 74560, 'hi', 'name', 'ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤øą„ą¤®ą¤¾ą¤°ą¤• ą¤øą¤‚ą¤—ą„ą¤°ą¤¹ą¤¾ą¤²ą¤Æ और ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą¤¾ą¤²ą¤Æ'),
(89697, 74561, 'en', 'name', 'Digital Engineering and Test Centre'),
(89698, 74562, 'sv', 'name', 'Avfallshantering Ɩstra Skaraborg'),
(89699, 74563, 'en', 'name', 'National Religious Campaign Against Torture'),
(89700, 74564, 'en', 'name', 'Sunlight Foundation'),
(89701, 74565, 'en', 'name', 'Hadejia Jama’are Komadugu Yobe Basin-Trust Fund'),
(89702, 74566, 'en', 'name', 'Bethlehem Bible College'),
(89703, 74567, 'en', 'name', 'The Anne Frank Trust UK'),
(89704, 74568, 'no_lang_code', 'name', 'RAPID Biomedical (Germany)'),
(89705, 74569, 'en', 'name', 'Institute of Bio-Sensing Technology'),
(89706, 74570, 'en', 'name', 'Sigtuna Foundation'),
(89707, 74570, 'sv', 'name', 'Sigtunastiftelsen'),
(89708, 74571, 'no_lang_code', 'name', 'Mentaid'),
(89709, 74572, 'en', 'name', 'National Housing Conference'),
(89710, 74573, 'en', 'name', 'Capital Museum'),
(89711, 74573, 'zh', 'name', 'é¦–éƒ½åšē‰©é¦†'),
(89712, 74574, 'es', 'name', 'Centro de AnÔlisis e Investigación, Fundar'),
(89713, 74575, 'no_lang_code', 'name', 'Lumen (United Kingdom)'),
(89714, 74576, 'id', 'name', 'Pancur Kasih Association, Perkumpulan Pancur Kasih'),
(89715, 74577, 'no_lang_code', 'name', 'Dayton T. Brown (United States)'),
(89716, 74578, 'en', 'name', 'The Grierson Trust'),
(89717, 74579, 'en', 'name', 'PĆ rlamaid na h-Alba, Scottish Parliament'),
(89718, 74580, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ŲÆŲ§Ų± Ų§Ł„ŁƒŁ„Ł…Ų© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„ŁŁ†ŁˆŁ† ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ©'),
(89719, 74580, 'en', 'name', 'Dar Al-Kalima University College of Arts and Culture'),
(89720, 74581, 'en', 'name', 'World Dementia Council'),
(89721, 74582, 'ka', 'name', 'įƒ”įƒ”įƒ˜įƒž - ეეეტც įƒ“įƒ”įƒšįƒ¢įƒ'),
(89722, 74582, 'no_lang_code', 'name', 'Delta International (Georgia)'),
(89723, 74583, 'no_lang_code', 'name', 'Spyra Primo (Poland)'),
(89724, 74584, 'en', 'name', 'Research!Sweden'),
(89725, 74584, 'sv', 'name', 'Forska Sverige'),
(89726, 74585, 'dv', 'name', 'Ž‰ŽØŽ‚ŽØŽŽ°Ž“Ž°ŽƒŽ© Ž‡Ž®ŽŠŽ° ŽŠŽ®ŽƒŽØŽ‚Ž° Ž‡Ž¬ŽŠŽ¬Ž‡Ž§Ž’Ž°'),
(89727, 74585, 'en', 'name', 'Ministry of Foreign Affairs'),
(89728, 74586, 'fr', 'name', 'Processus Infectieux en Milieu Insulaire Tropical'),
(89729, 74587, 'no_lang_code', 'name', 'Anolytech (Sweden)'),
(89730, 74588, 'en', 'name', 'Landscape Research Group'),
(89731, 74589, 'en', 'name', 'The Bay Trust'),
(89732, 74590, 'en', 'name', 'Modern Art Research Institute'),
(89733, 74590, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃŃƒŃ‡Š°ŃŠ½Š¾Š³Š¾ мистецтва'),
(89734, 74591, 'sv', 'name', 'Sunderby Folkhƶgskola'),
(89735, 74592, 'en', 'name', 'Greater Manchester Police Museum & Archives'),
(89736, 74593, 'en', 'name', 'Grantmakers in the Arts'),
(89737, 74594, 'en', 'name', 'Higher Education Statistics Agency'),
(89738, 74595, 'no_lang_code', 'name', 'Coramed (United States)'),
(89739, 74596, 'fr', 'name', 'Laboratoire Philippe Auguste'),
(89740, 74597, 'pl', 'name', 'Beskidzkie Centrum Onkologii Szpital Miejski im. Jana Pawla II w Bielsku-Bialej'),
(89741, 74598, 'en', 'name', 'International Graduate School of Leadership'),
(89742, 74599, 'no_lang_code', 'name', 'LunaLEC (Sweden)'),
(89743, 74600, 'en', 'name', 'Goethe Institute'),
(89744, 74601, 'no_lang_code', 'name', 'Change.org (United States)'),
(89745, 74602, 'en', 'name', 'Yorkshire Film Archive'),
(89746, 74603, 'en', 'name', 'Oxford Spires Academy'),
(89747, 74604, 'no_lang_code', 'name', 'Gallagher (United States)'),
(89748, 74605, 'en', 'name', 'The Georgian Concert Society'),
(89749, 74606, 'no_lang_code', 'name', 'Carritech Research (United Kingdom)'),
(89750, 74607, 'no_lang_code', 'name', 'MH Acoustics (United States)'),
(89751, 74608, 'en', 'name', 'Centre for Responsible Credit'),
(89752, 74609, 'en', 'name', 'Sir James Knott Trust'),
(89753, 74610, 'no_lang_code', 'name', 'DxTerity (United States)'),
(89754, 74611, 'en', 'name', 'Delius Trust'),
(89755, 74612, 'en', 'name', 'Educational Video Center'),
(89756, 74613, 'no_lang_code', 'name', 'Eko-Energia (Poland)'),
(89757, 74614, 'en', 'name', 'Staffordshire Film Archive'),
(89758, 74615, 'en', 'name', 'Institute of Biomedical Physics'),
(89759, 74615, 'vi', 'name', 'Viện Vįŗ­t Lý Y Sinh'),
(89760, 74616, 'en', 'name', 'Michigan Nonprofit Association'),
(89761, 74617, 'no_lang_code', 'name', 'InflamaCore (United States)'),
(89762, 74618, 'en', 'name', 'Institute for Voluntary Action Research'),
(89763, 74619, 'en', 'name', 'Rural Self-Reliance Development Centre'),
(89764, 74620, 'de', 'name', 'Marienhospital Gelsenkirchen'),
(89765, 74621, 'no_lang_code', 'name', 'High Throughput Biology (United States)'),
(89766, 74622, 'en', 'name', 'Association for Micro-Finance Institutions'),
(89767, 74623, 'no_lang_code', 'name', 'Sewaco System (Poland)'),
(89768, 74624, 'no_lang_code', 'name', 'Tedspaw (Poland)'),
(89769, 74625, 'en', 'name', 'Association of Independent Crop Consultants'),
(89770, 74626, 'no_lang_code', 'name', 'Innovative Design Engineeering & Analysis (United States)'),
(89771, 74627, 'en', 'name', 'Watershed Center'),
(89772, 74628, 'no_lang_code', 'name', 'Wematter (Sweden)'),
(89773, 74629, 'en', 'name', 'JNCL-NCLIS'),
(89774, 74630, 'en', 'name', 'Information Group on Reproductive Choice'),
(89775, 74630, 'es', 'name', 'Grupo de Información en Reproducción Elegida'),
(89776, 74631, 'en', 'name', 'National Museum of China'),
(89777, 74631, 'zh', 'name', 'äø­å›½å›½å®¶åšē‰©é¦†'),
(89778, 74632, 'en', 'name', 'Movement Strategy Center'),
(89779, 74633, 'no_lang_code', 'name', 'JK Research (United States)'),
(89780, 74634, 'en', 'name', 'Association of British Professional Conference Organisers'),
(89781, 74635, 'no_lang_code', 'name', 'Entech (United States)'),
(89782, 74636, 'pt', 'name', 'Museu de Lamego'),
(89783, 74637, 'no_lang_code', 'name', 'Evosens (France)'),
(89784, 74638, 'en', 'name', 'Dharma Drum Institute of Liberal Arts'),
(89785, 74638, 'zh', 'name', '法鼓文理學院'),
(89786, 74639, 'en', 'name', 'Westmill Sustainable Energy Trust'),
(89787, 74640, 'no_lang_code', 'name', 'Nexteer Automotive (Poland)'),
(89788, 74641, 'pt', 'name', 'CooxupƩ'),
(89789, 74642, 'en', 'name', 'New Rules for Global Finance'),
(89790, 74643, 'no_lang_code', 'name', 'Semcon (Sweden)'),
(89791, 74644, 'no_lang_code', 'name', 'Io Therapeutics (United States)'),
(89792, 74645, 'en', 'name', 'Ukrainian Academy of Agrarian Sciences'),
(89793, 74645, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ¾Ń— акаГемії аграрних наук'),
(89794, 74646, 'az', 'name', 'Strateji Araşdırmalar Mərkəzi'),
(89795, 74647, 'no_lang_code', 'name', 'Alpha Environmental (United States)'),
(89796, 74648, 'sv', 'name', 'Industriella UtvecklingsCentra'),
(89797, 74649, 'en', 'name', 'The Queen''s Foundation'),
(89798, 74650, 'ro', 'name', 'Spitalul Clinic Județean de Urgență Cluj-Napoca'),
(89799, 74651, 'no_lang_code', 'name', 'Kelly Space & Technology (United States)'),
(89800, 74652, 'fr', 'name', 'Centre de Recherche en Ɖcologie ExpĆ©rimentale et PrĆ©dictive, Cereep Ecotron Ǝle-de-France'),
(89801, 74653, 'de', 'name', 'Museum Strom und Leben'),
(89802, 74654, 'en', 'name', 'International Media Support'),
(89803, 74655, 'no_lang_code', 'name', 'Sdiptech (Sweden)'),
(89804, 74656, 'no_lang_code', 'name', 'Marvel Medtech (United States)'),
(89805, 74657, 'en', 'name', 'Iran Meteorological Organization'),
(89806, 74657, 'fa', 'name', 'سازمان Ł‡ŁˆŲ§Ų“Ł†Ų§Ų³ŪŒ Ų¬Ł…Ł‡ŁˆŲ±ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(89807, 74658, 'en', 'name', 'Strategic Concepts in Organizing and Policy Education'),
(89808, 74659, 'no_lang_code', 'name', 'Research Network Services (Germany)'),
(89809, 74660, 'no_lang_code', 'name', 'John Regan Associates (United Kingdom)'),
(89810, 74661, 'en', 'name', 'National Institute of Criminology'),
(89811, 74661, 'hu', 'name', 'OrszÔgos Kriminológiai Intézet'),
(89812, 74662, 'en', 'name', 'National Literacy Trust'),
(89813, 74663, 'en', 'name', 'Youth Development Administration'),
(89814, 74663, 'zh', 'name', 'é’å¹“ē™¼å±•ē½²'),
(89815, 74664, 'en', 'name', 'Entrepreneurial Ecosystems'),
(89816, 74665, 'no_lang_code', 'name', 'LW Microsystems (United States)'),
(89817, 74666, 'en', 'name', 'Environmental Health Coalition'),
(89818, 74667, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© Ų§Ł„Ł…Ł„Łƒ Ų§Ł„Ų­Ų³ŁŠŁ†'),
(89819, 74667, 'en', 'name', 'King Hussein Foundation'),
(89820, 74668, 'en', 'name', 'Seethapathy Clinic and Hospital'),
(89821, 74669, 'en', 'name', 'Rossdales Veterinary Surgeons'),
(89822, 74670, 'en', 'name', 'Global Environmental Institute'),
(89823, 74670, 'zh', 'name', 'å…ØēƒēŽÆå¢ƒē ”ē©¶ę‰€'),
(89824, 74671, 'az', 'name', 'İqtisadi Tədqiqatlar Mərkəzi'),
(89825, 74671, 'en', 'name', 'Economic Research Centre'),
(89826, 74672, 'de', 'name', 'Senckenberg Museum für Naturkunde Görlitz'),
(89827, 74672, 'en', 'name', 'Senckenberg Museum of Natural History Gƶrlitz'),
(89828, 74673, 'en', 'name', 'Donetsk Christian University'),
(89829, 74673, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š„Ń€ŠøŃŃ‚ŠøŃŠ½ŃŃŒŠŗŠøŠ¹ Університет'),
(89830, 74674, 'en', 'name', 'Ministry of Natural Resources and Environment'),
(89831, 74674, 'lo', 'name', 'ąŗąŗ°ąŗŠąŗ§ąŗ‡ ąŗŠąŗ±ąŗšąŗžąŗ°ąŗąŗ²ąŗąŗ­ąŗ™ ąŗ—ąŗ³ąŗ”ąŗ°ąŗŠąŗ²ąŗ” ແຄະ ąŗŖąŗ“ą»ˆąŗ‡ą»ąŗ§ąŗ”ąŗ„ą»‰ąŗ­ąŗ”'),
(89832, 74675, 'no_lang_code', 'name', 'Consolidated Precision Products (Poland)'),
(89833, 74676, 'en', 'name', 'Wallingford Museum'),
(89834, 74677, 'en', 'name', 'Natural History Society of Northumbria'),
(89835, 74678, 'en', 'name', 'Institute for the Study of Regionalism, Federalism and Self-Government'),
(89836, 74678, 'it', 'name', 'Istituto di Studi sui Sistemi Regionali Federali e sulle Autonomie ''''Massimo Severo Giannini'''''),
(89837, 74679, 'hi', 'name', 'अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ किसान सभा'),
(89838, 74679, 'no_lang_code', 'name', 'All India Kisan Sabha'),
(89839, 74680, 'en', 'name', 'Vana Trust'),
(89840, 74681, 'no_lang_code', 'name', 'Medfield Diagnostics (Sweden)'),
(89841, 74682, 'en', 'name', 'Children’s Action Alliance'),
(89842, 74683, 'no_lang_code', 'name', 'Advanced Numerical Solutions (United States)'),
(89843, 74684, 'no_lang_code', 'name', 'BioHybrid Solutions (United States)'),
(89844, 74685, 'en', 'name', 'BOTEC Analysis'),
(89845, 74686, 'de', 'name', 'Institut für Dünnschichttechnologie und Mikrosensorik'),
(89846, 74687, 'en', 'name', 'Dundee Carers Centre'),
(89847, 74688, 'en', 'name', 'Centre for the Study of Violence and Reconciliation'),
(89848, 74689, 'ro', 'name', 'Spitalul Clinic Judetean Mures'),
(89849, 74690, 'en', 'name', 'Phoenix Futures'),
(89850, 74691, 'en', 'name', 'Dudley Street Neighborhood Initiative'),
(89851, 74692, 'en', 'name', 'The Stuttering Association for the Young'),
(89852, 74693, 'en', 'name', 'Wales & West Housing'),
(89853, 74694, 'en', 'name', 'Raspberry Pi Foundation'),
(89854, 74695, 'no_lang_code', 'name', 'AgeSoya (Poland)'),
(89855, 74696, 'es', 'name', 'Hospital de Carabineros'),
(89856, 74697, 'en', 'name', 'British Beet Research Organisation'),
(89857, 74698, 'en', 'name', 'University Professional and Continuing Education Association'),
(89858, 74699, 'no_lang_code', 'name', 'Deep Ocean Engineering (United States)'),
(89859, 74700, 'en', 'name', 'International Press Center'),
(89860, 74700, 'fr', 'name', 'RƩsidence Palace - Internationales Pressezentrum'),
(89861, 74701, 'no_lang_code', 'name', 'Greenerwave (France)'),
(89862, 74702, 'en', 'name', 'Interdisciplinary Centre for Storage, Transformation and Upgrading of Thermal Energy'),
(89863, 74703, 'no_lang_code', 'name', 'Prindit (Sweden)'),
(89864, 74704, 'no_lang_code', 'name', 'Mettler-Toledo (United Kingdom)'),
(89865, 74705, 'en', 'name', 'Community Life Project'),
(89866, 74706, 'en', 'name', 'Socio-Economic Rights Institute of South Africa'),
(89867, 74707, 'no_lang_code', 'name', 'Innerco (Poland)'),
(89868, 74708, 'en', 'name', 'The Vega Science Trust'),
(89869, 74709, 'no_lang_code', 'name', 'InVivo Analytics (United States)'),
(89870, 74710, 'no_lang_code', 'name', 'Oberon (United States)'),
(89871, 74711, 'en', 'name', 'Institute for Studies of Society, Economy and Environment'),
(89872, 74711, 'vi', 'name', 'Viện nghiĆŖn cứu XĆ£ hį»™i, Kinh tįŗæ vĆ  MĆ“i trĘ°į»ng'),
(89873, 74712, 'en', 'name', 'American Society of Crime Laboratory Directors'),
(89874, 74713, 'en', 'name', 'Eric Liddell Centre'),
(89875, 74714, 'no_lang_code', 'name', 'Sensatech Designs (United Kingdom)'),
(89876, 74715, 'en', 'name', 'Spacelink Learning Foundation'),
(89877, 74716, 'no_lang_code', 'name', '3DReid (United Kingdom)'),
(89878, 74717, 'it', 'name', 'Istituto di Biometeorologia'),
(89879, 74718, 'en', 'name', 'Peruvian Association of People Affected by Tuberculosis'),
(89880, 74719, 'no_lang_code', 'name', 'Infinid Technologies (United States)'),
(89881, 74720, 'pt', 'name', 'Sociedade Paraense de Defesa dos Direitos Humanos'),
(89882, 74721, 'en', 'name', 'Group of Institutes, Foundations and Enterprises'),
(89883, 74721, 'pt', 'name', 'Grupo de Institutos FundaƧƵes e Empresas'),
(89884, 74722, 'pt', 'name', 'Associação Brasileira do Papelão Ondulado'),
(89885, 74723, 'no_lang_code', 'name', 'Mician (Germany)'),
(89886, 74724, 'es', 'name', 'Instituto de Información Científica y Tecnológica'),
(89887, 74725, 'en', 'name', 'Islamic Azad University, Masjed Soleyman'),
(89888, 74725, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ų³Ų¬ŲÆŲ³Ł„ŪŒŁ…Ų§Ł†'),
(89889, 74726, 'no_lang_code', 'name', 'Analog Photonics (United States)'),
(89890, 74727, 'no_lang_code', 'name', 'AnatomyWorks (United States)'),
(89891, 74728, 'no_lang_code', 'name', 'Health Decision Technologies (United States)'),
(89892, 74729, 'en', 'name', 'Consumer VOICE'),
(89893, 74730, 'en', 'name', 'Newpark Music Centre'),
(89894, 74731, 'en', 'name', 'Disabled Living Foundation'),
(89895, 74732, 'es', 'name', 'Hospital Base'),
(89896, 74733, 'en', 'name', 'MB Recycling'),
(89897, 74734, 'no_lang_code', 'name', 'Codemill (Sweden)'),
(89898, 74735, 'de', 'name', 'Versuchs- und Lehranstalt für Brauerei in Berlin'),
(89899, 74735, 'en', 'name', 'Institute for Fermentation and Biotechnology, Berlin'),
(89900, 74736, 'en', 'name', 'Keep Sweden Tidy Foundation'),
(89901, 74736, 'sv', 'name', 'HƄll Sverige Rent'),
(89902, 74737, 'en', 'name', 'Sanctuary Housing'),
(89903, 74738, 'no_lang_code', 'name', 'Dura Biotech (United States)'),
(89904, 74739, 'no_lang_code', 'name', 'Innovation SkƄne (Sweden)'),
(89905, 74740, 'no_lang_code', 'name', 'Sixera Pharma (Sweden)'),
(89906, 74741, 'no_lang_code', 'name', 'Mimsi Materials (Sweden)'),
(89907, 74742, 'no_lang_code', 'name', 'iStar'),
(89908, 74743, 'en', 'name', 'The Grotowski Institute'),
(89909, 74743, 'pl', 'name', 'Instytut im. Jerzego Grotowskiego'),
(89910, 74744, 'es', 'name', 'Comisión Mexicana de Defensa y Promoción de los Derechos Humanos'),
(89911, 74745, 'no_lang_code', 'name', 'Halcyon Biomedical (United States)'),
(89912, 74746, 'no_lang_code', 'name', 'SwissScientific Technologies (Switzerland)'),
(89913, 74747, 'en', 'name', 'Centre for Innovation Policy and Governance'),
(89914, 74748, 'cs', 'name', 'Loutky v Nemocnici'),
(89915, 74748, 'en', 'name', 'Puppets in Hospital'),
(89916, 74749, 'en', 'name', 'Good Things Foundation'),
(89917, 74750, 'en', 'name', 'Conect Association'),
(89918, 74751, 'en', 'name', 'Adaptive Cognitive Systems'),
(89919, 74752, 'en', 'name', 'Anglo-Norman Text Society'),
(89920, 74753, 'no_lang_code', 'name', 'Alcis Sports (India)'),
(89921, 74754, 'en', 'name', 'Marin Endocrine Care and Research'),
(89922, 74755, 'en', 'name', 'Charles River Medical Associates'),
(89923, 74756, 'en', 'name', 'Save the Rhino Trust'),
(89924, 74757, 'no_lang_code', 'name', 'Translational Research Platform for Veterinary Biologicals (India)'),
(89925, 74758, 'en', 'name', 'Institute of Polymers, Composites and Biomaterials'),
(89926, 74758, 'it', 'name', 'Istituto dei Polimeri, Compositi e Biomateriali'),
(89927, 74759, 'en', 'name', 'The Acronym Institute for Disarmament Diplomacy'),
(89928, 74760, 'en', 'name', 'National Economic and Social Rights Initiative'),
(89929, 74761, 'en', 'name', 'The Association of Boarding Schools'),
(89930, 74762, 'no_lang_code', 'name', 'MD Informatics (United States)'),
(89931, 74763, 'en', 'name', 'Terrence Higgins Trust'),
(89932, 74764, 'no_lang_code', 'name', 'Celestica (Brasil)'),
(89933, 74765, 'en', 'name', 'Institute of Biomembranes, Bioenergetics and Molecular Biotechnologies'),
(89934, 74765, 'it', 'name', 'Istituto di Biomembrane, Bioenergetica e Biotecnologie Molecolari'),
(89935, 74766, 'no_lang_code', 'name', 'Merx (Poland)'),
(89936, 74767, 'en', 'name', 'Nubuke Foundation'),
(89937, 74768, 'no_lang_code', 'name', 'Endovab Endovascular Development (Sweden)'),
(89938, 74769, 'en', 'name', 'Jakarta Theological Seminary'),
(89939, 74769, 'id', 'name', 'Sekolah Tinggi Filsafat Teologi Jakarta'),
(89940, 74770, 'en', 'name', 'Anshan Hospital'),
(89941, 74770, 'zh', 'name', 'éžå±±åø‚é“č„æåŒ»é™¢'),
(89942, 74771, 'en', 'name', 'Shahid Beheshti Teacher Training College'),
(89943, 74771, 'fa', 'name', 'دانؓگاه تربیت معلم Ų“Ł‡ŪŒŲÆ ŲØŁ‡Ų“ŲŖŪŒ مؓهد'),
(89944, 74772, 'en', 'name', 'Centre for Performance Research'),
(89945, 74773, 'no_lang_code', 'name', 'Amcom Communications (United States)'),
(89946, 74774, 'no_lang_code', 'name', 'Frontier Aerospace Corporation (United States)'),
(89947, 74775, 'en', 'name', 'Institute for Women Human Rights'),
(89948, 74775, 'id', 'name', 'Institut Hak Asasi Perempuan'),
(89949, 74776, 'en', 'name', 'Taiwan Shilin District Prosecutors Office'),
(89950, 74776, 'zh', 'name', 'č‡ŗē£å£«ęž—åœ°ę–¹ęŖ¢åÆŸē½²'),
(89951, 74777, 'en', 'name', 'Skylight'),
(89952, 74778, 'no_lang_code', 'name', 'Generation 2 Materials Technology (United States)'),
(89953, 74779, 'de', 'name', 'Klinikum Links der Weser'),
(89954, 74780, 'no_lang_code', 'name', 'Fiji Museum'),
(89955, 74781, 'en', 'name', 'Innovation Centre for Sensor and Imaging Systems'),
(89956, 74782, 'no_lang_code', 'name', 'Luraco Technologies (United States)'),
(89957, 74783, 'en', 'name', 'Development Trusts Association Scotland'),
(89958, 74784, 'en', 'name', 'Southern African Social Policy Research Institute'),
(89959, 74785, 'en', 'name', 'National Museums of World Culture'),
(89960, 74785, 'sv', 'name', 'VƤrldskulturmuseerna'),
(89961, 74786, 'en', 'name', 'Reconnecting America'),
(89962, 74787, 'no_lang_code', 'name', 'Viscovery Software (Austria)'),
(89963, 74788, 'no_lang_code', 'name', 'Biosensing Instrument (United States)'),
(89964, 74789, 'da', 'name', 'Aarhus Handelsforenings Aftenskole'),
(89965, 74789, 'en', 'name', 'Aarhus Business College'),
(89966, 74790, 'en', 'name', 'Rochester Community and Technical College'),
(89967, 74791, 'no_lang_code', 'name', 'Hytton Technologies (Sweden)'),
(89968, 74792, 'en', 'name', 'Measures for Justice'),
(89969, 74793, 'no_lang_code', 'name', 'Altmetric (United Kingdom)'),
(89970, 74794, 'no_lang_code', 'name', 'Voice of America (United States)'),
(89971, 74795, 'en', 'name', 'Asiaq Greenland Survey'),
(89972, 74796, 'no_lang_code', 'name', 'Light Curable Coatings (United States)'),
(89973, 74797, 'es', 'name', 'Jardƭn EtnobotƔnico de Oaxaca'),
(89974, 74798, 'no_lang_code', 'name', 'Porslinsfabriken (Sweden)'),
(89975, 74799, 'es', 'name', 'Instituto de Medicina y BiologĆ­a Experimental de Cuyo'),
(89976, 74800, 'en', 'name', 'Slovak National Gallery'),
(89977, 74800, 'sk', 'name', 'SlovenskƔ nƔrodnƔ galƩria'),
(89978, 74801, 'en', 'name', 'Omaha Community Foundation'),
(89979, 74802, 'en', 'name', 'Council for Wales of Voluntary Youth Services'),
(89980, 74803, 'en', 'name', 'International Research School of Planetary Sciences'),
(89981, 74804, 'no_lang_code', 'name', 'CohesionForce (United States)'),
(89982, 74805, 'en', 'name', 'Kyoto Costume Institute'),
(89983, 74805, 'ja', 'name', 'äŗ¬éƒ½ęœé£¾ę–‡åŒ–ē ”ē©¶č²”å›£'),
(89984, 74806, 'no_lang_code', 'name', 'Levings & Associates (United States)'),
(89985, 74807, 'en', 'name', 'Institute of Seismology'),
(89986, 74807, 'kk', 'name', 'Š”ŠµŠ¹ŃŠ¼Š¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(89987, 74808, 'no_lang_code', 'name', 'BnearIT (Sweden)'),
(89988, 74809, 'pl', 'name', 'Stowarzyszenie Radość Życia'),
(89989, 74810, 'es', 'name', 'Católicas por el Derecho a Decidir'),
(89990, 74811, 'no_lang_code', 'name', 'Minc (Sweden)'),
(89991, 74812, 'no_lang_code', 'name', 'Cascade Drives (Sweden)'),
(89992, 74813, 'en', 'name', 'Lexington Institute'),
(89993, 74814, 'no_lang_code', 'name', 'Infibra (Brazil)'),
(89994, 74815, 'no_lang_code', 'name', 'ABT Molecular Imaging (United States)'),
(89995, 74816, 'no_lang_code', 'name', 'Enterprise Products (United States)'),
(89996, 74817, 'en', 'name', 'South Western Housing Society'),
(89997, 74818, 'no_lang_code', 'name', 'Ballas, Pelecanos & Associates (Greece)'),
(89998, 74819, 'no_lang_code', 'name', 'Quantemplate (United Kingdom)'),
(89999, 74820, 'pl', 'name', 'Lambda Warszawa, Stowarzyszenie Lambda Warszawa'),
(90000, 74821, 'en', 'name', 'Museums Northumberland'),
(90001, 74822, 'en', 'name', 'Ministry of Industries and Production'),
(90002, 74823, 'en', 'name', 'Centre for Chinese Contemporary Art'),
(90003, 74824, 'no_lang_code', 'name', 'BH Sensors (United States)'),
(90004, 74825, 'en', 'name', 'Global Americans'),
(90005, 74826, 'en', 'name', 'Iowa Diabetes and Endocrinology Research Center'),
(90006, 74827, 'en', 'name', 'International Center for Transitional Justice'),
(90007, 74828, 'no_lang_code', 'name', 'SDS Optic (Poland)'),
(90008, 74829, 'en', 'name', 'iHealth'),
(90009, 74830, 'en', 'name', 'Dmitri Hvorostovsky Siberian State Institute of Arts'),
(90010, 74830, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² имени Š”Š¼ŠøŃ‚Ń€ŠøŃ Єворостовского'),
(90011, 74831, 'en', 'name', 'Ahmed Iqbal Ullah Education Trust'),
(90012, 74832, 'no_lang_code', 'name', 'Instrumental Polymer Technologies (United States)'),
(90013, 74833, 'no_lang_code', 'name', 'Dovzhenko Film Studios'),
(90014, 74833, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° ŠŗŃ–Š½Š¾ŃŃ‚ŃƒŠ“Ń–Ń Ń…ŃƒŠ“Š¾Š¶Š½Ń–Ń… Ń„Ń–Š»ŃŒŠ¼Ń–Š² імені Šž. Довженка'),
(90015, 74834, 'no_lang_code', 'name', 'Qwed (Poland)'),
(90016, 74835, 'en', 'name', 'Magic Lantern Movies'),
(90017, 74836, 'de', 'name', 'BDH-Klinik Elzach'),
(90018, 74837, 'en', 'name', 'Solas Festival'),
(90019, 74838, 'en', 'name', 'The Ectopic Pregnancy Trust'),
(90020, 74839, 'en', 'name', 'China National Silk Museum'),
(90021, 74839, 'zh', 'name', 'äø­å›½äøē»øåšē‰©é¦†'),
(90022, 74840, 'en', 'name', 'The AD Centre'),
(90023, 74841, 'en', 'name', 'Helen Bamber Foundation'),
(90024, 74842, 'en', 'name', 'Citizenship, Studies, Research, Information and Action'),
(90025, 74843, 'en', 'name', 'South Devon Prime Beef'),
(90026, 74844, 'ar', 'name', 'بيت Ų§Ł„Ų³ŲÆŁˆ'),
(90027, 74844, 'en', 'name', 'Al Sadu Society'),
(90028, 74845, 'en', 'name', 'United Kingdom Council for Psychotherapy');
INSERT INTO `ror_settings` VALUES
(90029, 74846, 'no_lang_code', 'name', 'InertialWave (United States)'),
(90030, 74847, 'no_lang_code', 'name', 'MEMStim (United States)'),
(90031, 74848, 'en', 'name', 'Voluntary Health Scotland'),
(90032, 74849, 'no_lang_code', 'name', 'Sullivan and Worcester (United States)'),
(90033, 74850, 'en', 'name', 'Study Center for National Reconciliation'),
(90034, 74850, 'sl', 'name', 'Å tudijski center za narodno spravo'),
(90035, 74851, 'en', 'name', 'University Teaching Hospital of Butare'),
(90036, 74851, 'fr', 'name', 'Centre Hospitalier Universitaire of Butare'),
(90037, 74852, 'en', 'name', 'Raphael Samuel History Centre'),
(90038, 74853, 'no_lang_code', 'name', 'iK9'),
(90039, 74854, 'no_lang_code', 'name', 'Elbit Systems (United States)'),
(90040, 74855, 'en', 'name', 'Richmond School and Sixth Form College'),
(90041, 74856, 'no_lang_code', 'name', 'Fuss & O’Neill (United States)'),
(90042, 74857, 'de', 'name', 'Gespag'),
(90043, 74858, 'no_lang_code', 'name', 'Aster Medcity'),
(90044, 74859, 'es', 'name', 'Fundación Ciencias Exactas y Naturales'),
(90045, 74860, 'en', 'name', 'Combine Resource Institution'),
(90046, 74861, 'en', 'name', 'Centre for Invasive Species Solution'),
(90047, 74862, 'en', 'name', 'Movement for Freedom'),
(90048, 74862, 'ru', 'name', 'Движение «За ДвобоГу»'),
(90049, 74863, 'no_lang_code', 'name', 'Zakłady Mechaniczne Tarnów (Poland)'),
(90050, 74864, 'en', 'name', 'International Studio & Curatorial Program'),
(90051, 74865, 'no_lang_code', 'name', 'Modertrans (Poland)'),
(90052, 74866, 'en', 'name', 'Funder'),
(90053, 74867, 'en', 'name', 'Policy Matters Ohio'),
(90054, 74868, 'no_lang_code', 'name', 'Niki (Greece)'),
(90055, 74869, 'no_lang_code', 'name', 'Zoetis (United Kingdom)'),
(90056, 74870, 'en', 'name', 'Northern Ireland Civil Service'),
(90057, 74870, 'ga', 'name', 'StĆ”tseirbhĆ­s Thuaisceart Ɖireann'),
(90058, 74871, 'en', 'name', 'Chawton House'),
(90059, 74872, 'en', 'name', 'Equal Education'),
(90060, 74873, 'en', 'name', 'The Military Intelligence Museum'),
(90061, 74874, 'no_lang_code', 'name', 'Saintpro (Sweden)'),
(90062, 74875, 'no_lang_code', 'name', 'LucidEnergy (United States)'),
(90063, 74876, 'en', 'name', 'South Asian Americans Leading Together'),
(90064, 74877, 'en', 'name', 'NHS Employers'),
(90065, 74878, 'en', 'name', 'The Cabell Brand Center'),
(90066, 74879, 'en', 'name', 'Pigorini National Museum of Prehistory and Ethnography'),
(90067, 74879, 'it', 'name', 'Museo Nazionale Preistorico Etnografico Luigi Pigorini'),
(90068, 74880, 'en', 'name', 'Mitchell Arts Centre'),
(90069, 74881, 'en', 'name', 'National Deaf Children''s Society'),
(90070, 74882, 'no_lang_code', 'name', 'JP Group (Brazil)'),
(90071, 74883, 'en', 'name', 'National Institute for Defense Studies'),
(90072, 74883, 'ja', 'name', 'é˜²č”›ē ”ē©¶ę‰€'),
(90073, 74884, 'no_lang_code', 'name', 'Koning (United States)'),
(90074, 74885, 'no_lang_code', 'name', 'US-China Strong'),
(90075, 74886, 'en', 'name', 'Green Cross International'),
(90076, 74887, 'en', 'name', 'Agricultural Genetics Institute'),
(90077, 74887, 'vi', 'name', 'Viện Di truyền NĆ“ng nghiệp'),
(90078, 74888, 'en', 'name', 'Royal Yachting Association'),
(90079, 74889, 'en', 'name', 'Electric Infrastructure Security Council'),
(90080, 74890, 'en', 'name', 'National Housing Trust'),
(90081, 74891, 'en', 'name', 'MeetShareDance Association'),
(90082, 74891, 'es', 'name', 'Asociación MeetShareDance'),
(90083, 74892, 'no_lang_code', 'name', 'SHL Group (Taiwan)'),
(90084, 74893, 'en', 'name', 'Mothering Justice'),
(90085, 74894, 'en', 'name', 'The Center for Victims of Torture'),
(90086, 74895, 'no_lang_code', 'name', 'Stalprodukt (Poland)'),
(90087, 74896, 'en', 'name', 'Community Media Association'),
(90088, 74897, 'en', 'name', 'Fab Foundation'),
(90089, 74898, 'en', 'name', 'Sensory Support Service'),
(90090, 74899, 'en', 'name', 'MuseumNext'),
(90091, 74900, 'no_lang_code', 'name', 'Cirrus Aircraft (United States)'),
(90092, 74901, 'en', 'name', 'Polistovsky National Nature Reserve'),
(90093, 74901, 'ru', 'name', 'ŠŸŠ¾Š»ŠøŃŃ‚Š¾Š²ŃŠŗŠøŠ¹ заповеГник'),
(90094, 74902, 'no_lang_code', 'name', 'Wijeya Newspapers (Sri Lanka)'),
(90095, 74903, 'en', 'name', 'EARN'),
(90096, 74904, 'en', 'name', 'British Institute of Facilities Management'),
(90097, 74905, 'en', 'name', 'California Institute for Behavioral Health Solutions'),
(90098, 74906, 'no_lang_code', 'name', 'Microwave Products and Technology (United States)'),
(90099, 74907, 'es', 'name', 'Instituto Superior Tecnológico de Artes del Ecuador'),
(90100, 74908, 'no_lang_code', 'name', 'Fluid Synchrony (United States)'),
(90101, 74909, 'en', 'name', 'National Laboratory for Superconductivity'),
(90102, 74909, 'zh', 'name', 'č¶…åÆ¼å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(90103, 74910, 'no_lang_code', 'name', 'Laipac Technology (Canada)'),
(90104, 74911, 'no_lang_code', 'name', 'IBM (Brazil)'),
(90105, 74912, 'en', 'name', 'Solidarity and Action Against the HIV Infection in India'),
(90106, 74913, 'en', 'name', 'Employment Agency'),
(90107, 74914, 'en', 'name', 'Advanced Center for Water Resources Development and Management'),
(90108, 74915, 'en', 'name', 'Bandaranaike Centre for International Studies'),
(90109, 74916, 'en', 'name', 'Sydney Living Museums'),
(90110, 74917, 'no_lang_code', 'name', 'Lumme Labs (United States)'),
(90111, 74918, 'no_lang_code', 'name', 'Anton Paar (United States)'),
(90112, 74919, 'pt', 'name', 'Instituto de Terras do ParĆ”'),
(90113, 74920, 'en', 'name', 'The Hague Centre for Strategic Studies'),
(90114, 74920, 'nl', 'name', 'Den Haag Centrum voor Strategische Studies'),
(90115, 74921, 'en', 'name', 'Inyathelo: The South African Institute for Advancement'),
(90116, 74922, 'no_lang_code', 'name', 'Central Bela Vista (Brazil)'),
(90117, 74922, 'pt', 'name', 'Angus Bela Vista PecuƔria'),
(90118, 74923, 'en', 'name', 'People''s History Museum'),
(90119, 74924, 'en', 'name', 'Georgia Stand-Up'),
(90120, 74925, 'no_lang_code', 'name', 'Expedition Technology (United States)'),
(90121, 74926, 'en', 'name', 'National Childbirth Trust'),
(90122, 74927, 'no_lang_code', 'name', 'Filene'),
(90123, 74928, 'no_lang_code', 'name', 'ArcelorMittal (Brazil)'),
(90124, 74929, 'fr', 'name', 'Laboratoire de GĆ©ologie de l’École Normale SupĆ©rieure'),
(90125, 74930, 'no_lang_code', 'name', 'Gaia Herbs (United States)'),
(90126, 74931, 'no_lang_code', 'name', 'ChromaTan'),
(90127, 74932, 'en', 'name', 'Arkansas Insurance Department'),
(90128, 74933, 'no_lang_code', 'name', 'Villares Metals (Brasil)'),
(90129, 74934, 'en', 'name', 'Kansas Office of the Governor'),
(90130, 74935, 'en', 'name', 'Museum of East Anglian Life'),
(90131, 74936, 'en', 'name', 'Research and Information Centre Memorial'),
(90132, 74936, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-информационный центр ŠœŠµŠ¼Š¾Ń€ŠøŠ°Š»'),
(90133, 74937, 'en', 'name', 'Centre for Women''s Development Studies'),
(90134, 74938, 'fr', 'name', 'Bibliothèque d''Agglomération du Pays de Saint-Omer'),
(90135, 74939, 'no_lang_code', 'name', 'Juniper Industries (United States)'),
(90136, 74940, 'en', 'name', 'International Hydropower Association'),
(90137, 74941, 'no_lang_code', 'name', 'Fifth Gait Technologies (United States)'),
(90138, 74942, 'no_lang_code', 'name', 'Create (Sweden)'),
(90139, 74943, 'pl', 'name', 'Instytut Badań Rynku, Konsumpcji i Koniunktur'),
(90140, 74944, 'pt', 'name', 'Instituto Brasileiro de AnƔlises Sociais e EconƓmicas'),
(90141, 74945, 'en', 'name', 'National Institute of Cancer Prevention and Research'),
(90142, 74946, 'en', 'name', 'Ministry of Education'),
(90143, 74947, 'en', 'name', 'The Cancer Treatment Center'),
(90144, 74948, 'no_lang_code', 'name', 'InnoGenomics (United States)'),
(90145, 74949, 'no_lang_code', 'name', 'Braskem (Brazil)'),
(90146, 74950, 'en', 'name', 'National Scientific Center for Surgery named after A.N. Syzganov'),
(90147, 74950, 'kk', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø им. А.Š. Дызганова'),
(90148, 74951, 'no_lang_code', 'name', 'General Oceanics (United States)'),
(90149, 74952, 'en', 'name', 'Kirklees & Calderdale Rape & Sexual Abuse Counselling Centre'),
(90150, 74953, 'es', 'name', 'Instituto CentroAmericano de Estudios para la Democracia Social'),
(90151, 74954, 'no_lang_code', 'name', 'Sioo Wood Protection (Sweden)'),
(90152, 74955, 'en', 'name', 'Chinese National Museum of Ethnology'),
(90153, 74956, 'no_lang_code', 'name', 'Double Bond Pharmaceutical (Sweden)'),
(90154, 74957, 'en', 'name', 'Angered Hospital'),
(90155, 74957, 'sv', 'name', 'Angereds NƤrsjukhus'),
(90156, 74958, 'en', 'name', 'The Campaign Against Living Miserably'),
(90157, 74959, 'en', 'name', 'Colorado Public Television'),
(90158, 74960, 'no_lang_code', 'name', 'Boehringer Ingelheim (Australia)'),
(90159, 74961, 'en', 'name', 'Centre for Higher Education Trust'),
(90160, 74962, 'en', 'name', 'National Ready Mixed Concrete Association'),
(90161, 74963, 'en', 'name', 'Avvai Village Welfare Society'),
(90162, 74963, 'ta', 'name', 'ą®…ą®µąÆą®µąÆˆ ą®•ą®æą®°ą®¾ą®®ą®®ąÆ ą®Øą®²ąÆą®µą®¾ą®“ąÆą®µąÆ ą®šą®™ąÆą®•ą®¤ąÆą®¤ą®¾ą®²ąÆ'),
(90163, 74964, 'es', 'name', 'Museo Nacional de EtnografĆ­a y Folklore'),
(90164, 74965, 'no_lang_code', 'name', 'Forsythe Technologies (United States)'),
(90165, 74966, 'no_lang_code', 'name', 'NeoZeo (Sweden)'),
(90166, 74967, 'es', 'name', 'Instituto Universitario Hospital Italiano'),
(90167, 74968, 'en', 'name', 'Ptoukha Institute for Demography and Social Studies of the National Academy of Sciences of Ukraine'),
(90168, 74968, 'uk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гемографии Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… исслеГований имени М.Š’. ŠŸŃ‚ŃƒŃ…Šø ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Украины'),
(90169, 74969, 'en', 'name', 'Scottish Collaboration for Public Health Research and Policy'),
(90170, 74970, 'en', 'name', 'Washington Office on Latin America'),
(90171, 74971, 'en', 'name', 'Association of Mental Health Providers'),
(90172, 74972, 'en', 'name', 'Department of Archaeology'),
(90173, 74972, 'si', 'name', 'ą¶“ą·”ą¶»ą·ą·€ą·’ą¶Æą·Šā€ą¶ŗą· ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(90174, 74972, 'ta', 'name', 'ą®¤ąÆŠą®²ąÆą®ŖąÆŠą®°ąÆą®³ą®æą®Æą®²ąÆ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ'),
(90175, 74973, 'en', 'name', 'Government of Mizoram'),
(90176, 74974, 'en', 'name', 'Tyneside Cinema'),
(90177, 74975, 'en', 'name', 'Media Standards Trust'),
(90178, 74976, 'en', 'name', 'Labor Community Strategy Center'),
(90179, 74977, 'en', 'name', 'The Fairbanking Foundation'),
(90180, 74978, 'en', 'name', 'Freedom Festival Arts Trust'),
(90181, 74979, 'en', 'name', 'All Ireland Institute for Hospice and Palliative Care'),
(90182, 74980, 'en', 'name', 'York Museums Trust'),
(90183, 74981, 'no_lang_code', 'name', 'Cell Biologics (United States)'),
(90184, 74982, 'en', 'name', 'Advanced Science Research Center'),
(90185, 74982, 'ja', 'name', 'å…ˆē«ÆåŸŗē¤Žē ”ē©¶ć‚»ćƒ³ć‚æ'),
(90186, 74983, 'en', 'name', 'Dumfries Museum and Camera Obscura'),
(90187, 74984, 'no_lang_code', 'name', 'Lund and Company Invention (United States)'),
(90188, 74985, 'no_lang_code', 'name', 'Clearsky Medical Diagnostics (United Kingdom)'),
(90189, 74986, 'no_lang_code', 'name', 'Flexicare (United Kingdom)'),
(90190, 74987, 'en', 'name', 'Welwyn Archaeological Society'),
(90191, 74988, 'en', 'name', 'Riverside'),
(90192, 74989, 'en', 'name', 'Comann Eachdraidh Uig'),
(90193, 74990, 'no_lang_code', 'name', 'Radarbolaget (Sweden)'),
(90194, 74991, 'en', 'name', 'Trials Methodology Research Network'),
(90195, 74992, 'en', 'name', 'West Africa Vocational Education'),
(90196, 74993, 'en', 'name', 'High Life Highland'),
(90197, 74994, 'no_lang_code', 'name', 'Full Radius Dance (United States)'),
(90198, 74995, 'no_lang_code', 'name', 'Mesh Robotics (United States)'),
(90199, 74996, 'en', 'name', 'Royal College of Veterinary Surgeons'),
(90200, 74997, 'de', 'name', 'Bezirkskrankenhaus Augsburg'),
(90201, 74998, 'no_lang_code', 'name', 'BatAndCat Sound Labs (United States)'),
(90202, 74999, 'en', 'name', 'A Better Balance'),
(90203, 75000, 'en', 'name', 'Penn Associates'),
(90204, 75001, 'no_lang_code', 'name', 'Global Unichip (Taiwan)'),
(90205, 75002, 'de', 'name', 'Landesbetrieb Landwirtschaft Hessen'),
(90206, 75003, 'no_lang_code', 'name', 'Oxford Biotherapeutics (United Kingdom)'),
(90207, 75004, 'no_lang_code', 'name', 'Ansys (Germany)'),
(90208, 75005, 'en', 'name', 'Sanming Agricultural Science Research Institute'),
(90209, 75005, 'zh', 'name', 'äø‰ę˜Žåø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(90210, 75006, 'no_lang_code', 'name', 'Gel4Med (United States)'),
(90211, 75007, 'en', 'name', 'Bank of Lithuania'),
(90212, 75007, 'lt', 'name', 'Lietuvos Bankas'),
(90213, 75008, 'no_lang_code', 'name', 'Hillenbrand (United States)'),
(90214, 75009, 'de', 'name', 'Photonik-Zentrum Kaiserslautern'),
(90215, 75010, 'en', 'name', 'Bank of Latvia'),
(90216, 75010, 'lv', 'name', 'Latvijas Banka'),
(90217, 75011, 'no_lang_code', 'name', 'Grindeks (Latvia)'),
(90218, 75012, 'en', 'name', 'British Psychoanalytical Society'),
(90219, 75013, 'en', 'name', 'Emerald Coast Science Center'),
(90220, 75014, 'no_lang_code', 'name', 'Industrieverband Feuerverzinken (Germany)'),
(90221, 75015, 'no_lang_code', 'name', 'Stresau Laboratory (United States)'),
(90222, 75016, 'no_lang_code', 'name', 'Stress Photonics (United States)'),
(90223, 75017, 'no_lang_code', 'name', 'Documents Workflow Content (Slovakia)'),
(90224, 75018, 'en', 'name', 'Baokang Hospital Affiliated to Tianjin University of Traditional Chinese Medicine'),
(90225, 75018, 'zh', 'name', 'å¤©ę“„äø­åŒ»čÆå¤§å­¦é™„å±žäæåŗ·åŒ»é™¢'),
(90226, 75019, 'no_lang_code', 'name', 'Pharmabridge (United States)'),
(90227, 75020, 'no_lang_code', 'name', 'Theracule (Norway)'),
(90228, 75021, 'no_lang_code', 'name', 'Lensar (United States)'),
(90229, 75022, 'no_lang_code', 'name', 'Sensopath Technologies (United States)'),
(90230, 75023, 'en', 'name', 'Research Center for Information Technology Innovation, Academia Sinica'),
(90231, 75023, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢č³‡čØŠē§‘ęŠ€å‰µę–°ē ”ē©¶äø­åæƒ'),
(90232, 75024, 'no_lang_code', 'name', 'Phenox (Germany)'),
(90233, 75025, 'de', 'name', 'Institut für Mittelstandsforschung'),
(90234, 75026, 'no_lang_code', 'name', 'Institut für Modelle Beruflicher und Sozialer Entwicklung (Germany)'),
(90235, 75027, 'no_lang_code', 'name', 'Precision Vision (United States)'),
(90236, 75028, 'no_lang_code', 'name', 'Stuttgarter Straßenbahnen (Germany)'),
(90237, 75029, 'no_lang_code', 'name', 'SensoDx (United States)'),
(90238, 75030, 'en', 'name', 'National Electronic Information Consortium'),
(90239, 75030, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½Š½Š¾-информационный ŠŗŠ¾Š½ŃŠ¾Ń€Ń†ŠøŃƒŠ¼'),
(90240, 75031, 'no_lang_code', 'name', 'Elliptika (France)'),
(90241, 75032, 'id', 'name', 'Universitas Teknokrat Indonesia'),
(90242, 75033, 'no_lang_code', 'name', 'Northeast Semiconductor (United States)'),
(90243, 75034, 'no_lang_code', 'name', 'Energie Aus Der Mitte (Germany)'),
(90244, 75035, 'de', 'name', 'DGB Bildungswerk BUND'),
(90245, 75036, 'no_lang_code', 'name', 'JGC Catalysts and Chemicals (Japan)'),
(90246, 75037, 'en', 'name', 'Institute of Political Science, Academia Sinica'),
(90247, 75037, 'zh', 'name', '中央研究院政治學研究所'),
(90248, 75038, 'en', 'name', 'Osaka Kaisei Hospital'),
(90249, 75038, 'ja', 'name', 'å¤§é˜Ŗå›žē”Ÿē—…é™¢'),
(90250, 75039, 'no_lang_code', 'name', 'Catalent (Belgium)'),
(90251, 75040, 'no_lang_code', 'name', 'KOB (Germany)'),
(90252, 75041, 'no_lang_code', 'name', 'Adivit (Slovakia)'),
(90253, 75042, 'no_lang_code', 'name', 'Koch Industries (United Kingdom)'),
(90254, 75043, 'ar', 'name', 'معهد Ų§Ł„Ų§ŲØŲŖŁƒŲ§Ų± Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(90255, 75043, 'en', 'name', 'Technology Innovation Institute'),
(90256, 75044, 'no_lang_code', 'name', 'Spectrum Associates (United States)'),
(90257, 75045, 'de', 'name', 'Institut für Sicherheitstechnik / Schiffssicherheit'),
(90258, 75046, 'en', 'name', 'Kansai Vocational College of Medicine'),
(90259, 75046, 'ja', 'name', 'é–¢č„æåŒ»ē™‚å­¦åœ’å°‚é–€å­¦ę ”'),
(90260, 75047, 'no_lang_code', 'name', 'Givaudan (Sweden)'),
(90261, 75048, 'en', 'name', 'Barajas Clinic'),
(90262, 75048, 'es', 'name', 'ClĆ­nica Barajas'),
(90263, 75049, 'de', 'name', 'Staatliche Lehr- und Versuchsanstalt für Wein- und Obstbau Weinsberg'),
(90264, 75049, 'en', 'name', 'State Education and Research Institute for Viticulture and Pomology Weinsberg'),
(90265, 75050, 'en', 'name', 'Industrial Development Bureau'),
(90266, 75050, 'zh', 'name', 'ē¶“ęæŸéƒØå·„ę„­å±€'),
(90267, 75051, 'en', 'name', 'Greenland Ecosystem Monitoring'),
(90268, 75052, 'en', 'name', 'Centre for Natural Resource Governance'),
(90269, 75053, 'en', 'name', 'Art Aia - Creatives / In / Residence'),
(90270, 75054, 'no_lang_code', 'name', 'Eloxx Pharmaceuticals (United States)'),
(90271, 75055, 'en', 'name', 'Higashitagawa Culture Memorial Hall'),
(90272, 75055, 'ja', 'name', 'ę±ē”°å·ę–‡åŒ–čØ˜åæµé¤Ø'),
(90273, 75056, 'en', 'name', 'Anhui Geological Museum'),
(90274, 75057, 'no_lang_code', 'name', 'BeDimensional (Italy)'),
(90275, 75058, 'no_lang_code', 'name', 'TechnoSpex (Singapore)'),
(90276, 75059, 'en', 'name', 'Rwanda Wildlife Conservation Association'),
(90277, 75060, 'no_lang_code', 'name', 'AIMM Therapeutics (Netherlands)'),
(90278, 75061, 'en', 'name', 'International Education Specialist College'),
(90279, 75062, 'en', 'name', 'Electronics and Radar Development Establishment'),
(90280, 75062, 'kn', 'name', 'ą²Žą²²ą³†ą²•ą³ą²Ÿą³ą²°ą²¾ą²Øą²æą²•ą³ą²øą³ ą²°ą³†ą²”ą²¾ą²°ą³ ą²”ą³†ą²µą²²ą²Ŗą³ą²®ą³†ą²‚ą²Ÿą³ ą²Žą²øą³ą²Ÿą²¾ą²¬ą³ą²²ą²æą²·ą³ą²®ą³†ą²‚ą²Ÿą³'),
(90281, 75063, 'en', 'name', 'Institute of Electronic Business'),
(90282, 75064, 'en', 'name', 'Mie Forestry Research Institute'),
(90283, 75064, 'ja', 'name', 'äø‰é‡ēœŒ ęž—ę„­ē ”ē©¶ę‰€'),
(90284, 75065, 'no_lang_code', 'name', 'Taro Pharmaceuticals (Israel)'),
(90285, 75066, 'no_lang_code', 'name', 'Dascena (United States)'),
(90286, 75067, 'no_lang_code', 'name', 'CKM Analytix (United States)'),
(90287, 75068, 'no_lang_code', 'name', 'BGR Energy Systems (India)'),
(90288, 75069, 'no_lang_code', 'name', 'Owens & Minor (United States)'),
(90289, 75070, 'de', 'name', 'Institut zur Modernisierung von Wirtschafts- und BeschƤftigungsstrukturen'),
(90290, 75071, 'en', 'name', 'Mercator Research Institute on Global Commons and Climate Change'),
(90291, 75072, 'az', 'name', 'ʏlyazmalar İnstitutu'),
(90292, 75072, 'en', 'name', 'Institute of Manuscripts of Azerbaijan'),
(90293, 75073, 'en', 'name', 'European School of Materials'),
(90294, 75074, 'en', 'name', 'Drugs & Diagnostics for Tropical Diseases'),
(90295, 75075, 'no_lang_code', 'name', 'BioInteractions (United Kingdom)'),
(90296, 75076, 'no_lang_code', 'name', 'Laboklin (Germany)'),
(90297, 75077, 'no_lang_code', 'name', 'Ferno (United States)'),
(90298, 75078, 'no_lang_code', 'name', 'SilBiotech (United States)'),
(90299, 75079, 'no_lang_code', 'name', 'Altus Capital Partners (United States)'),
(90300, 75080, 'no_lang_code', 'name', 'PerceptiMed (United States)'),
(90301, 75081, 'en', 'name', 'Physical Education and Medicine Research Foundation'),
(90302, 75081, 'ja', 'name', 'čŗ«ä½“ę•™č‚²åŒ»å­¦ē ”ē©¶ę‰€'),
(90303, 75082, 'no_lang_code', 'name', 'Pherin Pharmaceuticals (United States)'),
(90304, 75083, 'en', 'name', 'China Education and Research Network'),
(90305, 75083, 'zh', 'name', 'äø­å›½ę•™č‚²å’Œē§‘ē ”č®”ē®—ęœŗē½‘ē½‘ē»œäø­åæƒ'),
(90306, 75084, 'de', 'name', 'Institut Dr. Flad'),
(90307, 75085, 'hi', 'name', 'ą¤øą¤¾ą¤øą„‡ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(90308, 75085, 'no_lang_code', 'name', 'Snow & Avalanche Study Estt'),
(90309, 75086, 'no_lang_code', 'name', 'Micos Engineering (Switzerland)'),
(90310, 75087, 'no_lang_code', 'name', 'Schƶlly (Germany)'),
(90311, 75088, 'ne', 'name', 'ą¤µą„‡ą¤°ą„ą¤¤ą¤æą¤µą¤°'),
(90312, 75088, 'no_lang_code', 'name', 'Vertiver (India)'),
(90313, 75089, 'en', 'name', 'North Cumbria Integrated Care NHS Foundation Trust'),
(90314, 75090, 'no_lang_code', 'name', 'Linde (Italy)'),
(90315, 75091, 'es', 'name', 'Mutualista Hospital EvangƩlico'),
(90316, 75092, 'no_lang_code', 'name', 'Takeda (Ireland)'),
(90317, 75093, 'no_lang_code', 'name', 'Unisearch (United States)'),
(90318, 75094, 'no_lang_code', 'name', 'Gewerbliche Institut für Umweltanalytik (Germany)'),
(90319, 75095, 'no_lang_code', 'name', 'Stat Medical Devices (United States)'),
(90320, 75096, 'no_lang_code', 'name', 'Hydroisotop (Germany)'),
(90321, 75097, 'de', 'name', 'Institut für Deutsches, Europäisches und Internationales Medizinrecht, Gesundheitsrecht und Bioethik'),
(90322, 75097, 'en', 'name', 'Institute for German, European and International Medical Law, Public Health Law and Bioethics'),
(90323, 75098, 'en', 'name', 'Animal Husbandry & Veterinary'),
(90324, 75099, 'en', 'name', 'Alphacrucis College'),
(90325, 75100, 'no_lang_code', 'name', 'Helperby Therapeutics (United Kingdom)'),
(90326, 75101, 'no_lang_code', 'name', 'Magstim (United Kingdom)'),
(90327, 75102, 'no_lang_code', 'name', 'NeoPhotonics (United States)'),
(90328, 75103, 'en', 'name', 'Alberta Biodiversity Monitoring Institute'),
(90329, 75104, 'no_lang_code', 'name', 'Staar Surgical (United States)'),
(90330, 75105, 'no_lang_code', 'name', 'Tosk (United States)'),
(90331, 75106, 'en', 'name', 'Capital University of Science and Technology'),
(90332, 75106, 'ur', 'name', 'جامعہ ŲÆŲ§Ų±Ų§Ł„Ų­Ś©ŁˆŁ…ŲŖ سائنس و Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒā€Ž'),
(90333, 75107, 'en', 'name', 'Shikoku Occupational Skills Development College'),
(90334, 75107, 'ja', 'name', 'é¦™å·č·ę„­čØ“ē·“ēŸ­ęœŸå¤§å­¦ę ”'),
(90335, 75108, 'de', 'name', 'Institut für Informationsverarbeitung'),
(90336, 75109, 'en', 'name', 'Jiangxi Provincial Academy of Medical Sciences'),
(90337, 75109, 'zh', 'name', 'ę±Ÿč„æēœåŒ»å­¦ē§‘å­¦é™¢'),
(90338, 75110, 'en', 'name', 'Burkina Faso Ministry of the Environment, Green Economy, and Climate Change'),
(90339, 75110, 'fr', 'name', 'MinistĆØre de L''Environnement, de l''Economie verte et du Changement Climatique'),
(90340, 75111, 'no_lang_code', 'name', 'Siddharth Starch (India)'),
(90341, 75112, 'no_lang_code', 'name', 'Unity Biotechnology (United States)'),
(90342, 75113, 'fr', 'name', 'Association Nationale des Producteurs de Noisettes'),
(90343, 75114, 'en', 'name', 'Vinh Phuc Department of Health'),
(90344, 75115, 'en', 'name', 'Yamanashi Research Institute'),
(90345, 75115, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å±±ę¢Øē·åˆē ”ē©¶ę‰€'),
(90346, 75116, 'no_lang_code', 'name', 'Vapotherm (United States)'),
(90347, 75117, 'no_lang_code', 'name', 'Klinikum Westfalen (Germany)'),
(90348, 75118, 'no_lang_code', 'name', 'Alpine Immune Sciences (United States)'),
(90349, 75119, 'en', 'name', 'Shanghai Institute for Science of Science'),
(90350, 75119, 'zh', 'name', 'äøŠęµ·åø‚ē§‘å­¦å­¦ē ”ē©¶ę‰€'),
(90351, 75120, 'en', 'name', 'Laser Science & Technology Centre'),
(90352, 75121, 'ja', 'name', 'ćƒ‹ćƒćƒćƒ³ę Ŗå¼ä¼šē¤¾'),
(90353, 75121, 'no_lang_code', 'name', 'Nichiban (Japan)'),
(90354, 75122, 'no_lang_code', 'name', 'Pipestone (United States)'),
(90355, 75123, 'en', 'name', 'Center for Light Energy Activated Redox Processes'),
(90356, 75124, 'no_lang_code', 'name', 'Forestadent (Germany)'),
(90357, 75125, 'en', 'name', 'Beltsville Human Nutrition Research Center'),
(90358, 75126, 'no_lang_code', 'name', 'Wanfang Data (China)'),
(90359, 75127, 'de', 'name', 'Hamburger Kunsthalle'),
(90360, 75128, 'no_lang_code', 'name', 'EdgeWave (Germany)'),
(90361, 75129, 'no_lang_code', 'name', 'Eureka Therapeutics (United States)'),
(90362, 75130, 'no_lang_code', 'name', 'Matador (Slovakia)'),
(90363, 75131, 'en', 'name', 'Consortium of European Taxonomic Facilities'),
(90364, 75132, 'de', 'name', 'Forschungsgemeinschaft Feuerfest'),
(90365, 75133, 'en', 'name', 'World Wide Web Consortium'),
(90366, 75134, 'no_lang_code', 'name', 'Apollo Global Management (United States)'),
(90367, 75135, 'no_lang_code', 'name', 'Piezosystem Jena (Germany)'),
(90368, 75136, 'en', 'name', 'Aeronautical Development Establishment'),
(90369, 75136, 'hi', 'name', 'ą¤µą„ˆą¤®ą¤¾ą¤Øą¤æą¤•ą„€ विकास ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(90370, 75136, 'kn', 'name', 'ą²ą²°ą³†ą³‚ą²Øą²¾ą²Ÿą²æą²•ą²²ą³ ą²”ą³†ą²µą²²ą²Ŗą³ą²®ą³†ą²‚ą²Ÿą³ ą²Žą²øą³ą²Ÿą²¾ą²¬ą³ą²²ą²æą²·ą³ą²®ą³†ą²‚ą²Ÿą³'),
(90371, 75137, 'de', 'name', 'Economica'),
(90372, 75138, 'no_lang_code', 'name', 'IMU Institut (Germany)'),
(90373, 75139, 'no_lang_code', 'name', 'ASELTA Nanographics (France)'),
(90374, 75140, 'no_lang_code', 'name', 'Systems Analytics (United States)'),
(90375, 75141, 'no_lang_code', 'name', 'Colour Control Farbmesstechnik (Germany)'),
(90376, 75142, 'en', 'name', 'Shenyang Center for Disease Control and Prevention'),
(90377, 75142, 'zh', 'name', 'ę²ˆé˜³åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(90378, 75143, 'no_lang_code', 'name', 'Tianjin Synthetic Material Research Institute (China)'),
(90379, 75143, 'zh', 'name', 'å¤©ę“„åø‚åˆęˆęę–™å·„äøšē ”ē©¶ę‰€ęœ‰é™å…¬åø'),
(90380, 75144, 'no_lang_code', 'name', 'Oxford Plastics (United Kingdom)'),
(90381, 75145, 'ja', 'name', 'ćƒćƒŖćƒ„ćƒ¼ćƒ•ć‚”ćƒ¼ćƒ ćƒ»ć‚³ćƒ³ć‚µćƒ«ćƒ†ć‚£ćƒ³ć‚°'),
(90382, 75145, 'no_lang_code', 'name', 'Value Farm Consulting (Japan)'),
(90383, 75146, 'no_lang_code', 'name', 'MiCell Technologies (United States)'),
(90384, 75147, 'no_lang_code', 'name', 'Transphorm (United States)'),
(90385, 75148, 'en', 'name', 'World Health Organization - Morocco'),
(90386, 75149, 'en', 'name', 'Central Sericultural Germplasm Resources Centre'),
(90387, 75150, 'no_lang_code', 'name', 'Protia (United States)'),
(90388, 75151, 'en', 'name', 'Bauhaus Archive'),
(90389, 75152, 'no_lang_code', 'name', 'Shilpa (India)'),
(90390, 75153, 'no_lang_code', 'name', 'Institut für Umwelttechnologien und Strahlenschutz (Germany)'),
(90391, 75154, 'no_lang_code', 'name', 'U.S. Composites (United States)'),
(90392, 75155, 'en', 'name', 'Hunan Provincial Center for Disease Control and Prevention'),
(90393, 75155, 'zh', 'name', 'ę¹–å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ)'),
(90394, 75156, 'de', 'name', 'Naturhistorisches Museum Bern'),
(90395, 75156, 'en', 'name', 'Natural History Museum of Bern'),
(90396, 75157, 'en', 'name', 'Nemuro Education Institute'),
(90397, 75157, 'ja', 'name', '根室教育研究所'),
(90398, 75158, 'en', 'name', 'Yanan University Affiliated Hospital'),
(90399, 75158, 'zh', 'name', '延安大学附属医院'),
(90400, 75159, 'en', 'name', 'Institute of Mental Health'),
(90401, 75159, 'ta', 'name', 'ą®•ąÆ€ą®“ąÆą®Ŗą®¾ą®•ąÆą®•ą®®ąÆ ą®…ą®°ą®šąÆ மனநல ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(90402, 75160, 'en', 'name', 'Latin American and Caribbean Confederation of Religious Orders'),
(90403, 75160, 'es', 'name', 'Confederación Latinoamericana de Religiosos'),
(90404, 75161, 'es', 'name', 'Observatorio de Mortalidad Materna en MƩxico'),
(90405, 75162, 'no_lang_code', 'name', 'Fulcrum Therapeutics (United States)'),
(90406, 75163, 'no_lang_code', 'name', 'Science Spaza'),
(90407, 75164, 'no_lang_code', 'name', 'Gripple (United Kingdom)'),
(90408, 75165, 'en', 'name', 'American Farm Bureau Federation'),
(90409, 75166, 'no_lang_code', 'name', 'Anova Corp (Vietnam)'),
(90410, 75167, 'en', 'name', 'Kyoto City Archaeological Research Institute'),
(90411, 75167, 'ja', 'name', 'äŗ¬éƒ½åø‚č€ƒå¤č³‡ę–™é¤Ø'),
(90412, 75168, 'no_lang_code', 'name', 'Wellesley Pharmaceuticals (United States)'),
(90413, 75169, 'en', 'name', 'Ishikawa Prefectural Museum of History'),
(90414, 75169, 'ja', 'name', 'ēŸ³å·ēœŒē«‹ę­“å²åšē‰©é¤Ø'),
(90415, 75170, 'no_lang_code', 'name', '6 Dimensions Capital (United States)'),
(90416, 75171, 'ja', 'name', 'ć„ć—ć‹ć‚Šē ‚äø˜ć®é¢Øč³‡ę–™é¤Ø'),
(90417, 75171, 'no_lang_code', 'name', 'Shishikari Sand Dune Museum'),
(90418, 75172, 'bn', 'name', 'জিঔি হসপিটাল ą¦ą¦Øą§ą¦” ą¦”ą¦¾ą¦Æą¦¼ą¦¾ą¦¬ą§‡ą¦Ÿą¦æą¦ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(90419, 75172, 'en', 'name', 'GD Hospital & Diabetes Institute'),
(90420, 75173, 'no_lang_code', 'name', 'Serimmune (United States)'),
(90421, 75174, 'no_lang_code', 'name', 'FirstUnion (China)'),
(90422, 75175, 'fr', 'name', 'Institut Universitaire d''Abidjan'),
(90423, 75176, 'en', 'name', 'Mazumdar Shaw Medical Foundation'),
(90424, 75177, 'de', 'name', 'Institut für Dauerhaft Umweltgerechte Entwicklung Von Naturräumen der Erde'),
(90425, 75177, 'en', 'name', 'Institute of Sustainable Development of Landscapes of the Earth'),
(90426, 75178, 'no_lang_code', 'name', 'Haim Bio (South Korea)'),
(90427, 75179, 'ja', 'name', 'åƒč‘‰ēœŒē«‹ęˆæē·ć®ć‚€ć‚‰'),
(90428, 75179, 'no_lang_code', 'name', 'Boso no Mura'),
(90429, 75180, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¦ćƒ¤ćƒž'),
(90430, 75180, 'no_lang_code', 'name', 'Yuyama (Japan)'),
(90431, 75181, 'en', 'name', 'European Regional and Local Health Authorities'),
(90432, 75182, 'de', 'name', 'Philosophisch-Theologische Hochschule Münster'),
(90433, 75183, 'en', 'name', 'Massachusetts Space Grant Consortium'),
(90434, 75184, 'no_lang_code', 'name', 'Bioscience (China)'),
(90435, 75184, 'zh', 'name', 'åšå„„čµ›ę–Æ'),
(90436, 75185, 'no_lang_code', 'name', 'Wienerberger (Austria)'),
(90437, 75186, 'de', 'name', 'Institut für Gebäudeanalyse und Sanierungsplanung'),
(90438, 75186, 'en', 'name', 'Institute for Building Analysis and Reconstruction Planning'),
(90439, 75187, 'de', 'name', 'Deutsche Akademie für Städtebau und Landesplanung'),
(90440, 75188, 'en', 'name', 'Hubei Water Resources Research Institute'),
(90441, 75188, 'zh', 'name', 'ę¹–åŒ—ēœę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(90442, 75189, 'no_lang_code', 'name', 'Protochips (United States)'),
(90443, 75190, 'en', 'name', 'Sammy''s Superheroes'),
(90444, 75191, 'no_lang_code', 'name', 'Changchun Discovery Sciences (China)'),
(90445, 75191, 'zh', 'name', 'é•æę˜„å‰å¤§å¤©å…ƒåŒ–å­¦ęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(90446, 75192, 'no_lang_code', 'name', 'Cryosoft (Slovakia)'),
(90447, 75193, 'en', 'name', 'Parker Conservation'),
(90448, 75194, 'no_lang_code', 'name', 'Rapt Therapeutics (United States)'),
(90449, 75195, 'de', 'name', 'StƤdtisches Klinikum Dresden'),
(90450, 75196, 'en', 'name', 'Hong Kong Tuberculosis, Chest and Heart Diseases Association'),
(90451, 75196, 'zh', 'name', 'é¦™ęøÆé˜²ē™†åæƒč‡ŸåŠčƒøē—…å”ęœƒ'),
(90452, 75197, 'ar', 'name', 'المعاهد Ų§Ł„Ų¹Ł„ŁŠŲ§ للمهن Ų§Ł„ŲŖŁ…Ų±ŁŠŲ¶ŁŠŲ© ŁˆŲŖŁ‚Ł†ŁŠŲ§ŲŖ الصحة'),
(90453, 75197, 'en', 'name', 'Higher Institutes of Nursing and Health Technical Professions'),
(90454, 75197, 'fr', 'name', 'Instituts Supérieurs des Professions Infirmières et Techniques de Santé'),
(90455, 75198, 'no_lang_code', 'name', 'Danieli (United Kingdom)'),
(90456, 75199, 'no_lang_code', 'name', 'Laurus labs (India)'),
(90457, 75200, 'en', 'name', 'Guangzhou Center for Disease Control and Prevention'),
(90458, 75200, 'zh', 'name', 'å¹æå·žåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(90459, 75201, 'no_lang_code', 'name', 'Specialty Devices (United States)'),
(90460, 75202, 'no_lang_code', 'name', 'Arjo (Sweden)'),
(90461, 75203, 'no_lang_code', 'name', 'DNARx (United States)'),
(90462, 75204, 'en', 'name', 'National Research Centre on Litchi'),
(90463, 75204, 'hi', 'name', 'ą¤†ą¤ˆą¤øą„€ą¤ą¤†ą¤°-ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤²ą„€ą¤šą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(90464, 75205, 'en', 'name', 'Shanghai Medical Information Center'),
(90465, 75205, 'zh', 'name', 'äøŠęµ·åø‚åŒ»ē–—äæé™©äæ”ęÆäø­åæƒ'),
(90466, 75206, 'en', 'name', 'Directorate of Religious Affairs'),
(90467, 75206, 'tr', 'name', 'Diyanet İşleri Başkanlığı'),
(90468, 75207, 'es', 'name', 'Instituto de Salud PĆŗblica de Chile'),
(90469, 75208, 'no_lang_code', 'name', 'Spine Wave (United States)'),
(90470, 75209, 'no_lang_code', 'name', 'Neurotech (United States)'),
(90471, 75210, 'no_lang_code', 'name', 'Martimex (Slovakia)'),
(90472, 75211, 'no_lang_code', 'name', 'PYC Therapeutics (Australia)'),
(90473, 75212, 'no_lang_code', 'name', 'Manaty (France)'),
(90474, 75213, 'de', 'name', 'Deutsches Apotheken-Museum'),
(90475, 75213, 'en', 'name', 'German Museum of Pharmacy'),
(90476, 75214, 'en', 'name', 'Polish Botanical Society'),
(90477, 75214, 'pl', 'name', 'Polskie Towarzystwo Botaniczne'),
(90478, 75215, 'no_lang_code', 'name', 'Immune Pharmaceuticals (United States)'),
(90479, 75216, 'en', 'name', 'Research Center of Saline and Akali Land of State Foresty Administration'),
(90480, 75216, 'zh', 'name', 'å›½å®¶ęž—äøšå±€ē›ē¢±åœ°ē ”ē©¶äø­åæƒäŗŽ'),
(90481, 75217, 'no_lang_code', 'name', 'Astellas Pharma (China)'),
(90482, 75217, 'zh', 'name', 'å®‰ę–Æę³°ę„åˆ¶čÆ'),
(90483, 75218, 'en', 'name', 'Action Toward Independence'),
(90484, 75219, 'en', 'name', 'Institute of Sustainable Development, Environmental & Scientific Research'),
(90485, 75220, 'hi', 'name', 'ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤øą¤¾ą¤°'),
(90486, 75220, 'no_lang_code', 'name', 'Vigyan Prasar'),
(90487, 75221, 'no_lang_code', 'name', 'Farvet (Peru)'),
(90488, 75222, 'de', 'name', 'Museum Folkwang'),
(90489, 75223, 'no_lang_code', 'name', 'Strange Loop Games (United States)'),
(90490, 75224, 'no_lang_code', 'name', 'Eurobio Scientific (France)'),
(90491, 75225, 'en', 'name', 'European Research Infrastructure on Highly Pathogenic Agents'),
(90492, 75226, 'en', 'name', 'Xiangshan County First People''s Hospital'),
(90493, 75226, 'zh', 'name', 'č±”å±±åŽæē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(90494, 75227, 'no_lang_code', 'name', 'Ricardo (India)'),
(90495, 75228, 'en', 'name', 'Biodiversity and Nature Conservation Association'),
(90496, 75229, 'en', 'name', 'Shanghai Institute of Science & Technology Management'),
(90497, 75230, 'en', 'name', 'Bhartiya Skill Development University'),
(90498, 75230, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„ą¤•ą¤æą¤² ą¤”ą¤µą¤²ą¤Ŗą¤®ą„‡ą¤Øą„ą¤Ÿ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(90499, 75231, 'no_lang_code', 'name', 'Joint Active Systems (United States)'),
(90500, 75232, 'en', 'name', 'Islamic Azad University Kashmar Branch'),
(90501, 75232, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد کاؓمر'),
(90502, 75233, 'en', 'name', 'First Consultants Medical Center'),
(90503, 75234, 'no_lang_code', 'name', 'Medibeacon (United States)'),
(90504, 75235, 'en', 'name', 'Xian Center for Disease Control and Prevention'),
(90505, 75235, 'zh', 'name', 'č„æå®‰åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(90506, 75236, 'de', 'name', 'Vereinte Dienstleistungsgewerkschaft'),
(90507, 75236, 'en', 'name', 'German United Services Trade Union'),
(90508, 75237, 'en', 'name', 'Electric Vehicle Transportation Center'),
(90509, 75238, 'en', 'name', 'Center for Environmental Concerns'),
(90510, 75239, 'no_lang_code', 'name', 'Tredegar (United States)'),
(90511, 75240, 'en', 'name', 'Matsue History Museum'),
(90512, 75240, 'ja', 'name', 'ę¾ę±Ÿę­“å²åšē‰©é¤Ø'),
(90513, 75241, 'no_lang_code', 'name', 'Storagenergy Technologies (United States)'),
(90514, 75242, 'no_lang_code', 'name', 'Theron Pharmaceuticals (United States)'),
(90515, 75243, 'no_lang_code', 'name', 'Biomed Protection (United States)'),
(90516, 75244, 'no_lang_code', 'name', 'Energetický a Průmyslový Holding (Czechia)'),
(90517, 75245, 'no_lang_code', 'name', 'Shell (Malaysia)'),
(90518, 75246, 'en', 'name', 'Pharmacy of the Eastern Vaud Hospitals'),
(90519, 75246, 'fr', 'name', 'Pharmacie des HƓpitaux de l''Est LƩmanique'),
(90520, 75247, 'de', 'name', 'Schön Klinik München Harlaching'),
(90521, 75248, 'no_lang_code', 'name', 'Hosokawa Micron (United Kingdom)'),
(90522, 75249, 'no_lang_code', 'name', 'Pollution Control Technologies (United States)'),
(90523, 75250, 'de', 'name', 'Zentrum für Osteuropa- und internationale Studien'),
(90524, 75250, 'en', 'name', 'Centre for East European and International Studies'),
(90525, 75251, 'en', 'name', 'ISRO Propulsion Complex'),
(90526, 75251, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤…ą¤‚ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø संगठन ą¤Ŗą„ą¤°ą¤£ą„‹ą¤¦ą¤Ø ą¤øą¤®ą„‚ą¤¹'),
(90527, 75251, 'te', 'name', 'ą°‡ą°øą±ą°°ą±‹ ą°Ŗą±ą°°ą±Šą°Ŗą°²ą±ą°·ą°Øą± ą°•ą°¾ą°‚ą°Ŗą±ą°²ą±†ą°•ą±ą°øą±'),
(90528, 75252, 'en', 'name', 'Environment and Plant Protection Research Institute'),
(90529, 75252, 'zh', 'name', 'ēŽÆå¢ƒäøŽę¤ē‰©äæęŠ¤ē ”ē©¶ę‰€'),
(90530, 75253, 'no_lang_code', 'name', 'TCI (Taiwan)'),
(90531, 75253, 'zh', 'name', 'å¤§ę±Ÿē”Ÿé†«č‚”ä»½ęœ‰é™å…¬åø'),
(90532, 75254, 'no_lang_code', 'name', 'Barricaid (United States)'),
(90533, 75255, 'en', 'name', 'University of Khanh Hoa'),
(90534, 75255, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c KhĆ”nh Hòa'),
(90535, 75256, 'no_lang_code', 'name', 'Noveratech (United States)'),
(90536, 75257, 'no_lang_code', 'name', 'Renova Life (United States)'),
(90537, 75258, 'en', 'name', 'United Nations Office for the Coordination of Humanitarian Affairs'),
(90538, 75258, 'fr', 'name', 'Bureau de la Coordination des Affaires Humanitaires'),
(90539, 75259, 'en', 'name', 'National Institute of Technology Manipur'),
(90540, 75259, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą¤£ą¤æą¤Ŗą„ą¤°'),
(90541, 75260, 'en', 'name', 'Art College kobe'),
(90542, 75260, 'ja', 'name', 'ć‚¢ćƒ¼ćƒˆć‚«ćƒ¬ćƒƒć‚øē„žęˆø'),
(90543, 75261, 'no_lang_code', 'name', 'Kenwood (United Kingdom)'),
(90544, 75262, 'en', 'name', 'Oscar G. Johnson VA Medical Center'),
(90545, 75263, 'no_lang_code', 'name', 'Saluda Medical (Australia)'),
(90546, 75264, 'en', 'name', 'Eastern Mediterranean Public Health Network'),
(90547, 75265, 'es', 'name', 'Consejo Nacional de Ciencia y TecnologĆ­a'),
(90548, 75266, 'en', 'name', 'L.T. Malaya National Therapy Institute of the National Academy of Medical Sciences of Ukraine'),
(90549, 75266, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠŠ°Ń†iональний iŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ терапії iменi Š›.Š¢.ŠœŠ°Š»Š¾Ń— ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(90550, 75267, 'no_lang_code', 'name', 'Centire Research (Slovakia)'),
(90551, 75268, 'no_lang_code', 'name', 'SunRay Scientific (United States)'),
(90552, 75269, 'de', 'name', 'Blindeninstitutsstiftung'),
(90553, 75270, 'en', 'name', 'Southern African Migration Programme'),
(90554, 75271, 'no_lang_code', 'name', 'Noom (United States)'),
(90555, 75272, 'no_lang_code', 'name', 'Paragon 28 (United States)'),
(90556, 75273, 'en', 'name', 'Inner Mongolia Chifeng Forestry Science Research Institute'),
(90557, 75273, 'zh', 'name', 'å†…č’™å¤čµ¤å³°åø‚ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(90558, 75274, 'no_lang_code', 'name', 'International Research Associates (United States)'),
(90559, 75275, 'en', 'name', 'Electronics Corporation of India'),
(90560, 75276, 'en', 'name', 'Sudan Childhood Diabetes Association'),
(90561, 75277, 'no_lang_code', 'name', 'ORIG3N (United States)'),
(90562, 75278, 'en', 'name', 'Defence Institute of High Altitude Research'),
(90563, 75279, 'no_lang_code', 'name', 'Huizhou Kimree Technology (China)'),
(90564, 75279, 'zh', 'name', 'ęƒ å·žåø‚é‡‘ē‘žē§‘ęŠ€ęœ‰é™å…¬åø'),
(90565, 75280, 'no_lang_code', 'name', 'Dornier MedTech (Germany)'),
(90566, 75281, 'fr', 'name', 'RƩseau National de Surveillance AƩrobiologique'),
(90567, 75282, 'en', 'name', 'Marine Megafauna Foundation'),
(90568, 75283, 'de', 'name', 'Hans-Litten-Archiv'),
(90569, 75283, 'en', 'name', 'Hans Litten Archive'),
(90570, 75284, 'en', 'name', 'Museum of Old and New Art'),
(90571, 75285, 'no_lang_code', 'name', 'GLS Industries (Canada)'),
(90572, 75286, 'no_lang_code', 'name', 'Deutsches Institut für Bautechnik (Germany)'),
(90573, 75287, 'en', 'name', 'Hokkaido Arisu High School'),
(90574, 75287, 'ja', 'name', 'åŒ—ęµ·é“ęœ‰ę –é«˜ę ”'),
(90575, 75288, 'en', 'name', 'United Nations University Institute for Sustainability and Peace'),
(90576, 75288, 'ja', 'name', 'å›½é€£å¤§å­¦ć‚µć‚¹ćƒ†ć‚¤ćƒŠćƒ“ćƒŖćƒ†ć‚£ćØå¹³å’Œē ”ē©¶ę‰€'),
(90577, 75289, 'no_lang_code', 'name', 'Volkswagen Financial Services (Germany)'),
(90578, 75290, 'no_lang_code', 'name', 'SkEyes Unlimited (United States)'),
(90579, 75291, 'en', 'name', 'Chellaram Hospital'),
(90580, 75292, 'no_lang_code', 'name', 'Ethypharm (United Kingdom)'),
(90581, 75293, 'no_lang_code', 'name', 'InnoLas Solutions (Germany)'),
(90582, 75294, 'en', 'name', 'Pediatric Hospital "Baca Ortiz"'),
(90583, 75294, 'es', 'name', 'Hospital PediƔtrico "Baca Ortiz"'),
(90584, 75295, 'en', 'name', 'United Nations Department of Peacekeeping Operations'),
(90585, 75296, 'no_lang_code', 'name', 'Cannuflow (United States)'),
(90586, 75297, 'fr', 'name', 'Centre Hospitalier de Wallonie Picarde'),
(90587, 75298, 'en', 'name', 'Waikato Regional Council'),
(90588, 75298, 'mi', 'name', 'Te Kaunihera ā-Rohe o Waikato'),
(90589, 75299, 'ar', 'name', 'Ł…Ų±ŁƒŲ² قطر Ł„Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ų§Ł„Ų§Ų¦ŲŖŁ…Ų§Ł†ŁŠŲ©'),
(90590, 75299, 'no_lang_code', 'name', 'Qatar Credit Bureau'),
(90591, 75300, 'no_lang_code', 'name', 'Gorongosa National Park'),
(90592, 75301, 'fr', 'name', 'Groupe FranƧais de Transplantation FƩcale'),
(90593, 75302, 'en', 'name', 'The Technological College of Beer Sheva'),
(90594, 75302, 'he', 'name', 'המכללה ×”×˜×›× ×•×œ×•×’×™×Ŗ באר שבע'),
(90595, 75303, 'no_lang_code', 'name', 'werusys (Germany)'),
(90596, 75304, 'no_lang_code', 'name', 'Tosho (Japan)'),
(90597, 75305, 'en', 'name', 'Terminal Ballistics Research Laboratory'),
(90598, 75306, 'en', 'name', 'Jewish Voice for Peace'),
(90599, 75307, 'no_lang_code', 'name', 'Querium (United States)'),
(90600, 75308, 'no_lang_code', 'name', 'Vishay Intertechnology (United States)'),
(90601, 75309, 'en', 'name', 'Vivekananda Memorial Hospital'),
(90602, 75310, 'ja', 'name', 'äø‰č±UFJćƒŖć‚µćƒ¼ćƒ&ć‚³ćƒ³ć‚µćƒ«ćƒ†ć‚£ćƒ³ć‚°'),
(90603, 75310, 'no_lang_code', 'name', 'Mitsubishi UFJ Research & Consulting (Japan)'),
(90604, 75311, 'en', 'name', 'Australian National Insect Collection'),
(90605, 75312, 'no_lang_code', 'name', 'Parasim (United States)'),
(90606, 75313, 'en', 'name', 'Northland District Health Board'),
(90607, 75314, 'en', 'name', 'Institute of Food Resources of National Academy of Agrarian Sciences of Ukraine'),
(90608, 75314, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ харчових Ń€ŠµŃŃƒŃ€ŃŃ–Š² ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(90609, 75315, 'es', 'name', 'Departamento de EpidemiologĆ­a'),
(90610, 75316, 'en', 'name', 'Providence Health & Services Alaska'),
(90611, 75317, 'no_lang_code', 'name', 'Soterix Medical (United States)'),
(90612, 75318, 'en', 'name', 'World Islamic Economic Forum Foundation'),
(90613, 75318, 'ms', 'name', 'Forum Ekonomi Islam Dunia'),
(90614, 75319, 'no_lang_code', 'name', 'Boundless Bio (United States)'),
(90615, 75320, 'en', 'name', 'Centre for Interdisciplinary Research and Education'),
(90616, 75321, 'no_lang_code', 'name', 'Tesi (Finland)'),
(90617, 75322, 'de', 'name', 'BUND-Hof Wendbüdel'),
(90618, 75323, 'en', 'name', 'Center for Promotion of Advancement of Society'),
(90619, 75324, 'no_lang_code', 'name', 'AbMax AntibodyChina (China)'),
(90620, 75324, 'zh', 'name', 'åŒ—äŗ¬å¤©ęˆę–°č„‰ē”Ÿē‰©ęŠ€ęœÆęœ‰é™å…¬åø'),
(90621, 75325, 'no_lang_code', 'name', 'Fonterra (Australia)'),
(90622, 75326, 'en', 'name', 'Islamic Azad University, Estahban Branch'),
(90623, 75326, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد استهبان'),
(90624, 75327, 'no_lang_code', 'name', 'Pixel Velocity (United States)'),
(90625, 75328, 'no_lang_code', 'name', 'Cambridge Systematics (United States)'),
(90626, 75329, 'no_lang_code', 'name', 'Atom Medical (Japan)'),
(90627, 75330, 'en', 'name', 'Iranian National Center for Laser Science and Techology'),
(90628, 75330, 'fa', 'name', 'مرکز Ł…Ł„ŪŒ Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† Ł„ŪŒŲ²Ų± Ų§ŪŒŲ±Ų§Ł†'),
(90629, 75331, 'no_lang_code', 'name', 'Sessler'),
(90630, 75332, 'en', 'name', 'Association of German Agricultural Analytic and Research Institutes'),
(90631, 75333, 'de', 'name', 'Übersee Museum'),
(90632, 75333, 'en', 'name', 'Overseas Museum'),
(90633, 75334, 'no_lang_code', 'name', 'Sensirion (Switzerland)'),
(90634, 75335, 'no_lang_code', 'name', 'Orbits Lightwave (United States)'),
(90635, 75336, 'en', 'name', 'Eskişehir City Hospital'),
(90636, 75336, 'tr', 'name', 'Eskişehir Şehir Hastanesi'),
(90637, 75337, 'no_lang_code', 'name', 'Pacific Antenna Systems (United States)'),
(90638, 75338, 'no_lang_code', 'name', 'Modern Electron (United States)'),
(90639, 75339, 'de', 'name', 'Institut für Qualitätssicherung von Stoffsystemen Freiberg'),
(90640, 75340, 'de', 'name', 'Eidgenƶssisches Justiz- und Polizeidepartement'),
(90641, 75340, 'en', 'name', 'Federal Department of Justice and Police'),
(90642, 75340, 'fr', 'name', 'DƩpartement FƩdƩral de Justice et Police'),
(90643, 75340, 'it', 'name', 'Dipartimento Federale di Giustizia e Polizia'),
(90644, 75340, 'rm', 'name', 'Departament Federal da Giustia e Polizia'),
(90645, 75341, 'no_lang_code', 'name', 'Novilytic (United States)'),
(90646, 75342, 'en', 'name', 'GoCare Health Solutions Limited'),
(90647, 75343, 'en', 'name', 'Center for Dynamic Research on High Latitude Marine Ecosystems'),
(90648, 75343, 'es', 'name', 'Centro de Investigación DinÔmica de Ecosistemas Marinos de Altas Latitudes'),
(90649, 75344, 'no_lang_code', 'name', 'Viroclinics Biosciences (Netherlands)'),
(90650, 75345, 'no_lang_code', 'name', 'Isogen (Germany)'),
(90651, 75346, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ কারিগরী পরিষদ'),
(90652, 75346, 'en', 'name', 'West Bengal State Council of Technical Education'),
(90653, 75347, 'de', 'name', 'Institut zur Fƶrderung von Bildung und Integration'),
(90654, 75348, 'no_lang_code', 'name', 'DCA (United Kingdom)'),
(90655, 75349, 'en', 'name', 'Institute of Economic Affairs, Ghana'),
(90656, 75350, 'no_lang_code', 'name', 'SoftTeam Solutions (India)'),
(90657, 75351, 'en', 'name', 'TIFR Centre for Applicable Mathematics'),
(90658, 75352, 'no_lang_code', 'name', 'Caixin (China)'),
(90659, 75352, 'zh', 'name', '蓢新传媒'),
(90660, 75353, 'no_lang_code', 'name', 'AnywherEnergy (United States)'),
(90661, 75354, 'no_lang_code', 'name', 'Mutabilis (France)'),
(90662, 75355, 'en', 'name', 'Western Human Nutrition Research Center'),
(90663, 75356, 'no_lang_code', 'name', 'Gibaud (France)'),
(90664, 75357, 'no_lang_code', 'name', 'Acura Pharmaceuticals (United States)'),
(90665, 75358, 'en', 'name', 'The Neuroblastoma Children''s Cancer Society'),
(90666, 75359, 'en', 'name', 'Centre for Personnel Talent Management'),
(90667, 75359, 'hi', 'name', 'ą¤•ą¤¾ą¤°ą„ą¤®ą¤æą¤• ą¤Ŗą„ą¤°ą¤¤ą¤æą¤­ą¤¾ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(90668, 75360, 'no_lang_code', 'name', 'Vector Composites (United States)'),
(90669, 75361, 'en', 'name', 'Institute of Electronics, Information and Communication Engineers'),
(90670, 75361, 'ja', 'name', 'é›»å­ęƒ…å ±é€šäæ”å­¦ä¼š'),
(90671, 75362, 'no_lang_code', 'name', 'Sogrape Vinhos (Portugal)'),
(90672, 75363, 'no_lang_code', 'name', 'Synthonics (United States)'),
(90673, 75364, 'no_lang_code', 'name', 'Phoenix Digital (United States)'),
(90674, 75365, 'en', 'name', 'Anabuki Design College'),
(90675, 75365, 'ja', 'name', 'ē©“å¹ćƒ‡ć‚¶ć‚¤ćƒ³å°‚é–€å­¦ę ”'),
(90676, 75366, 'en', 'name', 'Scottish Council on Human Bioethics'),
(90677, 75367, 'no_lang_code', 'name', 'AutomatizĆ”cia železničnej Dopravy (Slovakia)'),
(90678, 75368, 'en', 'name', 'Kumamoto Prefectural Museum Network Center'),
(90679, 75368, 'ja', 'name', 'ē†Šęœ¬ēœŒåšē‰©é¤ØćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æć‚»ćƒ³ć‚æćƒ¼'),
(90680, 75369, 'en', 'name', 'Fuyang Second People''s Hospital'),
(90681, 75369, 'zh', 'name', 'é˜œé˜³åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(90682, 75370, 'no_lang_code', 'name', 'NewPath Learning (United States)'),
(90683, 75371, 'no_lang_code', 'name', 'RegeneRx Biopharmaceuticals (United States)'),
(90684, 75372, 'no_lang_code', 'name', 'DO'),
(90685, 75373, 'de', 'name', 'Rhein-Ruhr Institut für Sozialforschung und Politikberatung'),
(90686, 75374, 'en', 'name', 'Coalition of Open Access Policy Institutions'),
(90687, 75375, 'no_lang_code', 'name', 'Institut für Qualität im Management (Germany)'),
(90688, 75376, 'en', 'name', 'Miyazaki Prefectural Art Museum'),
(90689, 75376, 'ja', 'name', 'å®®å“ŽēœŒē«‹ē¾Žč”“é¤Ø'),
(90690, 75377, 'de', 'name', 'Institut für Kommunikation und Wirtschaftsbildung'),
(90691, 75378, 'no_lang_code', 'name', 'Northern Minerals (Australia)'),
(90692, 75379, 'no_lang_code', 'name', 'Procedyne (United States)'),
(90693, 75380, 'de', 'name', 'Bundesamt für die Sicherheit der nuklearen Entsorgung'),
(90694, 75380, 'en', 'name', 'Federal Office for the Safety of Nuclear Waste Management'),
(90695, 75381, 'no_lang_code', 'name', 'Dril Quip (United States)'),
(90696, 75382, 'no_lang_code', 'name', 'Northern Power Systems (United States)'),
(90697, 75383, 'en', 'name', 'Cummings Veterinary Medical Center'),
(90698, 75384, 'no_lang_code', 'name', 'Mitaka Kohki (Japan)'),
(90699, 75385, 'de', 'name', 'Forschungsvereinigung Antriebstechnik'),
(90700, 75386, 'no_lang_code', 'name', 'Shanghai Techwell Biopharmaceutical (China)'),
(90701, 75387, 'en', 'name', 'Aomori Prefectural School Education Center'),
(90702, 75387, 'ja', 'name', 'é’ę£®ēœŒē·åˆå­¦ę ”ę•™č‚²ć‚»ćƒ³ć‚æ'),
(90703, 75388, 'no_lang_code', 'name', 'Iridex (United States)'),
(90704, 75389, 'ja', 'name', 'ćƒ‘ćƒ©ćƒžć‚¦ćƒ³ćƒˆćƒ™ćƒƒćƒ‰ę Ŗå¼ä¼šē¤¾'),
(90705, 75389, 'no_lang_code', 'name', 'Paramount Bed (Japan)'),
(90706, 75390, 'no_lang_code', 'name', 'GI Dynamics (United States)'),
(90707, 75391, 'no_lang_code', 'name', 'Institut für Umformtechnik (Germany)'),
(90708, 75392, 'en', 'name', 'ZRT Laboratory'),
(90709, 75393, 'no_lang_code', 'name', 'Norbrook (United Kingdom)'),
(90710, 75394, 'en', 'name', 'Centre for Air Borne System'),
(90711, 75394, 'hi', 'name', 'ą¤µą¤¾ą¤Æą„ą¤µą¤¾ą¤¹ą¤æą¤¤ ą¤Ŗą„ą¤°ą¤£ą¤¾ą¤²ą„€ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(90712, 75395, 'fr', 'name', 'Institut Amadeus'),
(90713, 75396, 'no_lang_code', 'name', 'Xalud Therapeutics (United States)'),
(90714, 75397, 'de', 'name', 'Institut für Kompetenz und Begabung'),
(90715, 75398, 'en', 'name', 'Center for Advanced Biomaterials for Healthcare'),
(90716, 75399, 'en', 'name', 'Guangzhou Experimental Station'),
(90717, 75399, 'zh', 'name', 'äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢å¹æå·žå®žéŖŒē«™'),
(90718, 75400, 'en', 'name', 'Poma International Business University'),
(90719, 75401, 'en', 'name', 'National Institute of Animal Biotechnology'),
(90720, 75402, 'no_lang_code', 'name', 'The 451 Group (United States)'),
(90721, 75403, 'en', 'name', 'Dulbecco Telethon Institute'),
(90722, 75404, 'en', 'name', 'Curculio Institute'),
(90723, 75405, 'es', 'name', 'SELVA'),
(90724, 75406, 'en', 'name', 'Earl Haig Secondary School'),
(90725, 75407, 'no_lang_code', 'name', 'DIGIBƍS (Spain)'),
(90726, 75408, 'no_lang_code', 'name', 'Laboratorios FarmaceĆŗticos Rovi (Spain)'),
(90727, 75409, 'no_lang_code', 'name', 'Loewenstein Medical Technology (Germany)'),
(90728, 75410, 'no_lang_code', 'name', 'Henke-Sass Wolf (Germany)'),
(90729, 75411, 'no_lang_code', 'name', 'PureCircle (United States)'),
(90730, 75412, 'en', 'name', 'Women''s Aid Organisation'),
(90731, 75412, 'ms', 'name', 'Pertubuhan Pertolongan Wanita');
INSERT INTO `ror_settings` VALUES
(90732, 75413, 'en', 'name', 'Australian Hearing'),
(90733, 75414, 'ja', 'name', 'åøåœ‹č£½č–¬ćˆ±'),
(90734, 75414, 'no_lang_code', 'name', 'Teikoku Seiyaku (Japan)'),
(90735, 75415, 'no_lang_code', 'name', 'Stadtwerk Haßfurt (Germany)'),
(90736, 75416, 'no_lang_code', 'name', 'ThrustMe (France)'),
(90737, 75417, 'no_lang_code', 'name', 'PowerFilm (United States)'),
(90738, 75418, 'en', 'name', 'Canadian Media Concentration Research Project'),
(90739, 75419, 'en', 'name', 'China Centre for Resources Satellite Data and Application'),
(90740, 75419, 'zh', 'name', 'äø­å›½čµ„ęŗå«ę˜Ÿåŗ”ē”Øäø­åæƒ'),
(90741, 75420, 'en', 'name', 'Lebanon VA Medical Center'),
(90742, 75421, 'no_lang_code', 'name', 'Xenex Disinfection Services (United States)'),
(90743, 75422, 'no_lang_code', 'name', 'Visage Technologies (Sweden)'),
(90744, 75423, 'no_lang_code', 'name', 'Royal Engineered Composites (United States)'),
(90745, 75424, 'en', 'name', 'HOSEI Daini Junior and Senior High School'),
(90746, 75424, 'ja', 'name', 'ę³•ę”æå¤§å­¦ē¬¬äŗŒäø­'),
(90747, 75425, 'no_lang_code', 'name', 'Nyangabgwe Referral Hospital'),
(90748, 75426, 'no_lang_code', 'name', 'Xybion Corporation (United States)'),
(90749, 75427, 'no_lang_code', 'name', 'Njoy (United States)'),
(90750, 75428, 'no_lang_code', 'name', 'EndoGastric Solutions (United States)'),
(90751, 75429, 'en', 'name', 'Ningbo Center for Disease Control and Prevention'),
(90752, 75429, 'zh', 'name', 'å®ę³¢åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(90753, 75430, 'no_lang_code', 'name', 'Phenex Pharmaceuticals (Germany)'),
(90754, 75431, 'en', 'name', 'Agricultural Product Processing Research Institute'),
(90755, 75431, 'zh', 'name', 'å†œäŗ§å“åŠ å·„ē ”ē©¶ę‰€'),
(90756, 75432, 'no_lang_code', 'name', 'Stoller Ingenieurtechnik (Germany)'),
(90757, 75433, 'de', 'name', 'Schweizerische Vereinigung für Unternehmensfinanzierung'),
(90758, 75433, 'en', 'name', 'The Swiss Private Equity & Corporate Finance Association'),
(90759, 75433, 'fr', 'name', 'Association Suisse des Investisseurs en Capital et de Financement'),
(90760, 75434, 'en', 'name', 'Shanghai Stomatological Hospital'),
(90761, 75434, 'zh', 'name', 'äøŠęµ·åø‚å£č…”ē—…é˜²ę²»é™¢'),
(90762, 75435, 'no_lang_code', 'name', 'Lianyungang Runzhong Pharmaceutical (China)'),
(90763, 75435, 'zh', 'name', 'čæžäŗ‘ęøÆę¶¦ä¼—åˆ¶čÆęœ‰é™å…¬åø'),
(90764, 75436, 'no_lang_code', 'name', 'Perpetua (United States)'),
(90765, 75437, 'en', 'name', 'Beijing Shijingshan Hospital'),
(90766, 75437, 'zh', 'name', 'åŒ—äŗ¬åø‚ēŸ³ę™Æå±±åŒ»é™¢'),
(90767, 75438, 'de', 'name', 'AWS-Institut für Digitale Produkte und Prozesse'),
(90768, 75438, 'en', 'name', 'AWS-Institute for Digitized Products and Processes'),
(90769, 75439, 'no_lang_code', 'name', 'Clinical Microbiomics (Denmark)'),
(90770, 75440, 'en', 'name', 'Global Alliance for Incinerator Alternatives'),
(90771, 75441, 'es', 'name', 'Corporación de Estudios Sociales y Educación'),
(90772, 75442, 'no_lang_code', 'name', 'Kirinyaga University'),
(90773, 75443, 'en', 'name', 'Mieko Fuji Contemporary Dance School & Company'),
(90774, 75443, 'ja', 'name', 'åÆŒå£«ē¾Žęžå­ć‚³ćƒ³ćƒ†ćƒ³ćƒćƒ©ćƒŖćƒ¼ćƒ€ćƒ³ć‚¹ć‚¹ć‚Æćƒ¼ćƒ«ļ¼†ć‚«ćƒ³ćƒ‘ćƒ‹ćƒ¼'),
(90775, 75444, 'no_lang_code', 'name', 'Fisher & Paykel Appliances (New Zealand)'),
(90776, 75445, 'no_lang_code', 'name', 'Ganesamoni Hospital'),
(90777, 75446, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é«˜ē ”'),
(90778, 75446, 'no_lang_code', 'name', 'Koken (Japan)'),
(90779, 75447, 'en', 'name', 'Fujian Blood Center'),
(90780, 75447, 'zh', 'name', 'ē¦å»ŗč”€ę¶²äø­åæƒ'),
(90781, 75448, 'en', 'name', 'Friends of Rosie Children''s Cancer Research Fund'),
(90782, 75449, 'en', 'name', 'Lifecare Innovations (India)'),
(90783, 75450, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų“ŁŠŲ® ؓخبوط Ų§Ł„Ų·ŲØŁŠŲ©'),
(90784, 75450, 'en', 'name', 'Sheikh Shakhbout Medical City'),
(90785, 75451, 'ja', 'name', 'äø‰ę™¶ę Ŗå¼ä¼šē¤¾'),
(90786, 75451, 'no_lang_code', 'name', 'Sansho (Japan)'),
(90787, 75452, 'no_lang_code', 'name', 'Xenotran (United States)'),
(90788, 75453, 'no_lang_code', 'name', 'SlovenskĆ” ElektrizačnĆ” PrenosovĆ” SĆŗstava (Slovakia)'),
(90789, 75454, 'en', 'name', 'Central Avian Research Institute'),
(90790, 75454, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤Ŗą¤•ą„ą¤·ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(90791, 75455, 'en', 'name', 'Clinica Esperanza/Hope Clinic'),
(90792, 75456, 'no_lang_code', 'name', 'Reflexion Health (United States)'),
(90793, 75457, 'pt', 'name', 'Instituto Gremar'),
(90794, 75458, 'no_lang_code', 'name', 'Inovance (China)'),
(90795, 75459, 'en', 'name', 'Association for BahÔ’í Studies'),
(90796, 75460, 'en', 'name', 'Centre for Public Policy Research'),
(90797, 75461, 'no_lang_code', 'name', 'Operative Experience (United States)'),
(90798, 75462, 'no_lang_code', 'name', 'Institut für Umwelttechnologien (Germany)'),
(90799, 75463, 'en', 'name', 'Hemophilia Center of Iran'),
(90800, 75463, 'fa', 'name', 'Ś©Ų§Ł†ŁˆŁ† Ł‡Ł…ŁˆŁŪŒŁ„ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(90801, 75464, 'no_lang_code', 'name', 'Seer Systems (United States)'),
(90802, 75465, 'de', 'name', 'Bayerisches Forschungsinstitut für digitale Transformation'),
(90803, 75465, 'en', 'name', 'Bavarian Research Institute for Digital Transformation'),
(90804, 75466, 'ko', 'name', 'SKė””ģŠ¤ģ»¤ė²„ė¦¬'),
(90805, 75466, 'no_lang_code', 'name', 'SK Discovery (South Korea)'),
(90806, 75467, 'en', 'name', 'The Fourth People''s Hospital of Zibo City'),
(90807, 75467, 'zh', 'name', 'ę·„åšåø‚ē¬¬å››äŗŗę°‘åŒ»é™¢'),
(90808, 75468, 'en', 'name', 'Mid-Atlantic University Transportation Center'),
(90809, 75469, 'no_lang_code', 'name', 'Science Learning Resources (United States)'),
(90810, 75470, 'no_lang_code', 'name', 'TrueOne Semiconductor (China)'),
(90811, 75470, 'zh', 'name', 'ä¼—å…ƒåŠåÆ¼ä½“'),
(90812, 75471, 'de', 'name', 'Die Senatorin für Kinder und Bildung'),
(90813, 75472, 'en', 'name', 'Kyoto Prefectural Library and Archives'),
(90814, 75472, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹ē·åˆč³‡ę–™é¤Ø'),
(90815, 75473, 'de', 'name', 'Institut für Innovations- und Informationsmanagement'),
(90816, 75474, 'de', 'name', 'Forschungsvereinigung Elektrotechnik beim ZVEI'),
(90817, 75475, 'no_lang_code', 'name', 'TaiGen Biotechnology (Taiwan)'),
(90818, 75476, 'no_lang_code', 'name', 'OSRAM (United Kingdom)'),
(90819, 75477, 'no_lang_code', 'name', 'TranS1 (United States)'),
(90820, 75478, 'no_lang_code', 'name', 'Sentien (United States)'),
(90821, 75479, 'no_lang_code', 'name', 'Fichtner (Germany)'),
(90822, 75480, 'de', 'name', 'Forschungsinstitut für Bildungs- und Sozialökonomie'),
(90823, 75480, 'en', 'name', 'Research Institute for the Economics of Education and Social Affairs'),
(90824, 75481, 'en', 'name', 'Antwerp Management School'),
(90825, 75482, 'no_lang_code', 'name', 'Everspin Technologies (United States)'),
(90826, 75483, 'en', 'name', 'Central Bank of Argentina'),
(90827, 75483, 'es', 'name', 'Banco Central de la RepĆŗblica Argentina'),
(90828, 75484, 'de', 'name', 'Haus der Natur - Museum für Natur und Technik'),
(90829, 75485, 'no_lang_code', 'name', 'A.M. Surgical (United States)'),
(90830, 75486, 'en', 'name', 'Shenzhen Research Institute of China University of Geosciences'),
(90831, 75486, 'zh', 'name', 'äø­å›½åœ°č“Øå¤§å­¦ę·±åœ³ē ”ē©¶é™¢'),
(90832, 75487, 'no_lang_code', 'name', 'NanoGraf (United States)'),
(90833, 75488, 'no_lang_code', 'name', 'Theva (Germany)'),
(90834, 75489, 'de', 'name', 'Institut für Medizinische Biometrie, Informatik und Epidemiologie'),
(90835, 75490, 'he', 'name', 'אדמה בע"×žā€Ž'),
(90836, 75490, 'no_lang_code', 'name', 'Adama (Israel)'),
(90837, 75491, 'en', 'name', 'Central Bank of Ireland'),
(90838, 75491, 'ga', 'name', 'Banc Ceannais na hƉireann'),
(90839, 75492, 'en', 'name', 'Women''s Coalition of Zimbabwe'),
(90840, 75493, 'no_lang_code', 'name', 'Focused Photonics (China)'),
(90841, 75493, 'zh', 'name', 'čšå…‰ē§‘ęŠ€'),
(90842, 75494, 'en', 'name', 'Cambridge Science Centre'),
(90843, 75495, 'no_lang_code', 'name', 'Zobele (Italy)'),
(90844, 75496, 'no_lang_code', 'name', 'Tasso (United States)'),
(90845, 75497, 'no_lang_code', 'name', 'Branston (United Kingdom)'),
(90846, 75498, 'no_lang_code', 'name', 'Propath Services (United States)'),
(90847, 75499, 'no_lang_code', 'name', 'HKScan (Finland)'),
(90848, 75500, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚³ćƒ¼ć‚»ćƒ¼'),
(90849, 75500, 'no_lang_code', 'name', 'KOSƉ (Japan)'),
(90850, 75501, 'en', 'name', 'Center for the Neural Basis of Cognition'),
(90851, 75502, 'no_lang_code', 'name', 'POGO (United States)'),
(90852, 75503, 'es', 'name', 'Dr. Lucio MelƩndez Hospital Zonal General de Agudos'),
(90853, 75504, 'no_lang_code', 'name', 'iCeutica (United States)'),
(90854, 75505, 'en', 'name', 'Institute of Plant and Microbial Biology, Academia Sinica'),
(90855, 75505, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ę¤ē‰©ęšØå¾®ē”Ÿē‰©å­øē ”ē©¶ę‰€'),
(90856, 75506, 'no_lang_code', 'name', 'Mattson Technology (Germany)'),
(90857, 75507, 'de', 'name', 'Batteryuniversity'),
(90858, 75508, 'de', 'name', 'PƤdagogische Hochschule Oberƶsterreich'),
(90859, 75508, 'en', 'name', 'University of Education Upper Austria'),
(90860, 75509, 'no_lang_code', 'name', 'Dragonfly Data Science (New Zealand)'),
(90861, 75510, 'en', 'name', 'Institute of Biological Chemistry, Academia Sinica'),
(90862, 75510, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ē”Ÿē‰©åŒ–å­øē ”ē©¶ę‰€'),
(90863, 75511, 'no_lang_code', 'name', 'Nehemiah Security (United States)'),
(90864, 75512, 'de', 'name', 'Verein für Umweltmanagement und Nachhaltigkeit in Finanzinstituten'),
(90865, 75513, 'no_lang_code', 'name', 'Meyra (Germany)'),
(90866, 75514, 'no_lang_code', 'name', 'CoImmune (United States)'),
(90867, 75515, 'no_lang_code', 'name', 'NanoMedical Systems (United States)'),
(90868, 75516, 'en', 'name', 'Vector & Vector-Borne Diseases Research Institute'),
(90869, 75517, 'no_lang_code', 'name', 'Rahko (United Kingdom)'),
(90870, 75518, 'en', 'name', 'Polar Libraries Colloquy'),
(90871, 75519, 'no_lang_code', 'name', 'Yashentech (China)'),
(90872, 75519, 'zh', 'name', 'äŗšē”³ē§‘ęŠ€'),
(90873, 75520, 'en', 'name', 'VA Illiana Health Care System'),
(90874, 75521, 'no_lang_code', 'name', 'Hameln (Slovakia)'),
(90875, 75522, 'fr', 'name', 'Centre Hospitalier RƩgional de Namur'),
(90876, 75523, 'en', 'name', 'Defence Bioengineering and Electromedical Laboratory'),
(90877, 75523, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤œą„ˆą¤µ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ और ą¤µą¤æą¤¦ą„ą¤Æą„ą¤¤ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤•ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(90878, 75524, 'no_lang_code', 'name', 'Airway Technologies (United States)'),
(90879, 75525, 'no_lang_code', 'name', 'Ultradent Products (United States)'),
(90880, 75526, 'no_lang_code', 'name', 'Praj (India)'),
(90881, 75527, 'en', 'name', 'Qinzhou Maternity and Child Health Care Hospital'),
(90882, 75527, 'zh', 'name', 'é’¦å·žåø‚å¦‡å¹¼äæå„é™¢'),
(90883, 75528, 'no_lang_code', 'name', 'Tennet (Germany)'),
(90884, 75529, 'ko', 'name', 'ė”ė¦¬ė³øģ…€'),
(90885, 75529, 'no_lang_code', 'name', 'The RebornCell (South Korea)'),
(90886, 75530, 'no_lang_code', 'name', 'Nippon Chemiphar (Japan)'),
(90887, 75531, 'no_lang_code', 'name', 'Smart Electric Grid (United States)'),
(90888, 75532, 'no_lang_code', 'name', 'Hensoldt (Germany)'),
(90889, 75533, 'en', 'name', 'Equal Justice Initiative'),
(90890, 75534, 'no_lang_code', 'name', 'MeVis BreastCare (Germany)'),
(90891, 75535, 'no_lang_code', 'name', 'Neovasc Tiara (Canada)'),
(90892, 75536, 'no_lang_code', 'name', 'Pentum Group (United States)'),
(90893, 75537, 'no_lang_code', 'name', 'Ascensia Diabetes Care (Switzerland)'),
(90894, 75538, 'en', 'name', 'Federal Polytechnic Oko'),
(90895, 75539, 'no_lang_code', 'name', 'Vim Spectrum'),
(90896, 75540, 'en', 'name', 'Solar Heating and Cooling Programme'),
(90897, 75541, 'no_lang_code', 'name', 'Polypipe (United Kingdom)'),
(90898, 75542, 'en', 'name', 'Center for Creative Initiatives in Health and Population'),
(90899, 75543, 'no_lang_code', 'name', 'Northern Microdesign (United States)'),
(90900, 75544, 'no_lang_code', 'name', 'RS Global (Poland)'),
(90901, 75545, 'no_lang_code', 'name', 'Exxelia (France)'),
(90902, 75546, 'de', 'name', 'Landwirtschaftskammer Niedersachsen'),
(90903, 75546, 'en', 'name', 'Chamber of Agriculture in Lower Saxony'),
(90904, 75547, 'no_lang_code', 'name', 'Solano Pharmaceuticals (United States)'),
(90905, 75548, 'he', 'name', 'אינדי-וט'),
(90906, 75548, 'no_lang_code', 'name', 'Indi-Vet (Israel)'),
(90907, 75549, 'de', 'name', 'Medien Management Institut'),
(90908, 75550, 'no_lang_code', 'name', 'Lungpacer Medical (Canada)'),
(90909, 75551, 'no_lang_code', 'name', 'LafargeHolcim (Switzerland)'),
(90910, 75552, 'no_lang_code', 'name', 'nPoint (United States)'),
(90911, 75553, 'en', 'name', 'Cook County Department of Public Health'),
(90912, 75554, 'no_lang_code', 'name', 'Advanced Procurement Center (United States)'),
(90913, 75555, 'no_lang_code', 'name', 'Daihachi Chemical Industry (Japan)'),
(90914, 75556, 'no_lang_code', 'name', 'NovaBiotics (United Kingdom)'),
(90915, 75557, 'no_lang_code', 'name', 'Rincon Research (United States)'),
(90916, 75558, 'no_lang_code', 'name', 'Surfx Technologies (United States)'),
(90917, 75559, 'no_lang_code', 'name', 'Institut für Angewandte Funksystemtechnik (Germany)'),
(90918, 75560, 'es', 'name', 'Instituto EspaƱol de Estudios EstratƩgicos'),
(90919, 75561, 'no_lang_code', 'name', 'FLAVIA IT (Germany)'),
(90920, 75562, 'hi', 'name', 'ą¤¬ą¤¾ą¤Æą„‹ą¤Ÿą„‡ą¤• ą¤Ŗą¤¾ą¤°ą„ą¤•'),
(90921, 75562, 'no_lang_code', 'name', 'Biotech Park'),
(90922, 75563, 'de', 'name', 'Grimme Institut'),
(90923, 75564, 'no_lang_code', 'name', 'Anocca (Sweden)'),
(90924, 75565, 'no_lang_code', 'name', 'Wuhan Amysen Life Technology (China)'),
(90925, 75566, 'no_lang_code', 'name', 'Restech (United States)'),
(90926, 75567, 'en', 'name', 'Provincial Institute for Hygiene'),
(90927, 75567, 'nl', 'name', 'Provinciaal Instituut voor Hygiƫne'),
(90928, 75568, 'en', 'name', 'Be Strong, Fight On!'),
(90929, 75569, 'no_lang_code', 'name', 'Advanced BioNutrition (United States)'),
(90930, 75570, 'en', 'name', 'Kochi Prefecture Archaeological Center'),
(90931, 75570, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹åŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(90932, 75571, 'en', 'name', 'Norton Priory Museum & Gardens'),
(90933, 75572, 'no_lang_code', 'name', 'Digital China Health (China)'),
(90934, 75572, 'zh', 'name', 'ē„žå·žåŒ»ē–—'),
(90935, 75573, 'no_lang_code', 'name', 'Sana Biotechnology (United States)'),
(90936, 75574, 'en', 'name', 'Association of British Neurologists'),
(90937, 75575, 'en', 'name', 'Hamamatsu University School of Medicine'),
(90938, 75575, 'ja', 'name', 'ęµœę¾åŒ»ē§‘å¤§å­¦'),
(90939, 75576, 'fr', 'name', 'UniversitƩ Tertiaire et Technologique-Lokko'),
(90940, 75577, 'en', 'name', 'Institute of Sociology, Academia Sinica'),
(90941, 75577, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ē¤¾ęœƒå­øē ”ē©¶ę‰€'),
(90942, 75578, 'he', 'name', '×”×—×§×œ××™×Ŗ'),
(90943, 75578, 'no_lang_code', 'name', 'Hachaklait (Israel)'),
(90944, 75579, 'en', 'name', 'Stockholm Environment Institute'),
(90945, 75580, 'nl', 'name', 'Port of Moerdijk'),
(90946, 75581, 'no_lang_code', 'name', 'Michelin (Japan)'),
(90947, 75582, 'de', 'name', 'Deutsches Technikmuseum Berlin'),
(90948, 75582, 'en', 'name', 'German Museum of Technology'),
(90949, 75583, 'de', 'name', 'Institut für Musikinstrumentenbau'),
(90950, 75584, 'en', 'name', 'Jyoban Hospital'),
(90951, 75584, 'ja', 'name', '常磐病院'),
(90952, 75585, 'en', 'name', 'Research Institute of Tropical Forestry'),
(90953, 75585, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ēƒ­åø¦ęž—äøšē ”ē©¶ę‰€'),
(90954, 75586, 'no_lang_code', 'name', 'Traverse Biosciences (United States)'),
(90955, 75587, 'no_lang_code', 'name', 'CMR Surgical (United Kingdom)'),
(90956, 75588, 'no_lang_code', 'name', 'Windmill International (United States)'),
(90957, 75589, 'en', 'name', 'Islamic Azad University of Gachsaran'),
(90958, 75589, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد گچساران'),
(90959, 75590, 'no_lang_code', 'name', 'Scott Laboratories (United States)'),
(90960, 75591, 'no_lang_code', 'name', 'Thermal Storage Systems (United States)'),
(90961, 75592, 'no_lang_code', 'name', 'SuperTurbo Technologies (United States)'),
(90962, 75593, 'no_lang_code', 'name', 'Dongwha Pharm (South Korea)'),
(90963, 75594, 'de', 'name', 'Passivhaus Institut'),
(90964, 75594, 'en', 'name', 'Passive House Institute'),
(90965, 75595, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾é‡Žę‘ē·åˆē ”ē©¶ę‰€'),
(90966, 75595, 'no_lang_code', 'name', 'Nomura Research Institute'),
(90967, 75596, 'en', 'name', 'Institute of Philosophy'),
(90968, 75596, 'hr', 'name', 'Institut za filozofiju'),
(90969, 75597, 'no_lang_code', 'name', 'Aker (Norway)'),
(90970, 75598, 'no_lang_code', 'name', 'Inis Biotech (Argentina)'),
(90971, 75599, 'en', 'name', 'Usambara Field Studies Centre'),
(90972, 75600, 'no_lang_code', 'name', 'Badger Licensing (United States)'),
(90973, 75601, 'en', 'name', 'National Energy Commission'),
(90974, 75601, 'zh', 'name', 'å›½å®¶čƒ½ęŗå§”å‘˜ä¼š'),
(90975, 75602, 'no_lang_code', 'name', 'Specialty Materials (United States)'),
(90976, 75603, 'fr', 'name', 'Institut SupƩrieur de DƩveloppement Rural'),
(90977, 75604, 'no_lang_code', 'name', 'Arkema (United Kingdom)'),
(90978, 75605, 'de', 'name', 'Hessische LehrkrƤfteakademie'),
(90979, 75606, 'no_lang_code', 'name', 'Q-Flex (United States)'),
(90980, 75607, 'en', 'name', 'State Administration of Foreign Exchange'),
(90981, 75607, 'zh', 'name', '国家外汇箔理局'),
(90982, 75608, 'no_lang_code', 'name', 'Science and Technology in Atmospheric Research (United States)'),
(90983, 75609, 'en', 'name', 'Georgia''s Innovation and Technology Agency'),
(90984, 75609, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ˜įƒœįƒįƒ•įƒįƒŖįƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ“įƒ įƒ¢įƒ”įƒ„įƒœįƒįƒšįƒįƒ’įƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ”įƒįƒįƒ’įƒ”įƒœįƒ¢įƒ'),
(90985, 75610, 'no_lang_code', 'name', 'Sencera Energy (United States)'),
(90986, 75611, 'en', 'name', 'Eunpyeong Hospital'),
(90987, 75611, 'ko', 'name', 'ģ„œģšøķŠ¹ė³„ģ‹œ ģ€ķ‰ė³‘ģ›'),
(90988, 75612, 'en', 'name', 'Research Center for Agricultural Information Technology'),
(90989, 75612, 'ja', 'name', 'č¾²ę„­ęƒ…å ±ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(90990, 75613, 'en', 'name', 'Indiana Geological and Water Survey'),
(90991, 75614, 'en', 'name', 'China Development Bank'),
(90992, 75614, 'zh', 'name', 'å›½å®¶å¼€å‘é“¶č”Œ'),
(90993, 75615, 'no_lang_code', 'name', 'Atos (Slovakia)'),
(90994, 75616, 'de', 'name', 'Institut für Fortbildung, Forschung und Entwicklung'),
(90995, 75617, 'no_lang_code', 'name', 'Ventrix (United States)'),
(90996, 75618, 'de', 'name', 'Staatsinstitut für Schulqualität und Bildungsforschung'),
(90997, 75619, 'en', 'name', 'Kunming Third People''s Hospital'),
(90998, 75619, 'zh', 'name', 'ę˜†ę˜Žåø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢ęˆ'),
(90999, 75620, 'no_lang_code', 'name', 'Vyne Therapeutics (Israel)'),
(91000, 75621, 'de', 'name', 'Staats- und UniversitƤtsbibliothek Hamburg'),
(91001, 75621, 'en', 'name', 'Hamburg State and University Library'),
(91002, 75622, 'en', 'name', 'Kavli Institute for Particle Astrophysics and Cosmology'),
(91003, 75622, 'fr', 'name', 'Institut Kavli pour l''astrophysique des particules et la cosmologie'),
(91004, 75623, 'no_lang_code', 'name', 'Shenzhen Bioeasy Biotechnology (China)'),
(91005, 75624, 'no_lang_code', 'name', 'TMG (Slovakia)'),
(91006, 75625, 'en', 'name', 'William and Barbara Leonard Transportation Center'),
(91007, 75626, 'en', 'name', 'Southern Tohoku General Hospital'),
(91008, 75626, 'ja', 'name', 'ē·åˆå—ę±åŒ—ē—…é™¢'),
(91009, 75627, 'no_lang_code', 'name', 'Collegium Pharmaceutical (United States)'),
(91010, 75628, 'no_lang_code', 'name', 'BAROnova (United States)'),
(91011, 75629, 'de', 'name', 'Leibniz-Institut für Resilienzforschung'),
(91012, 75629, 'en', 'name', 'Leibniz Institute for Resilience Research'),
(91013, 75630, 'de', 'name', 'Forschungszentrum Energiespeichertechnologien'),
(91014, 75631, 'no_lang_code', 'name', 'Marathon (United States)'),
(91015, 75632, 'no_lang_code', 'name', 'ProteinQure (Canada)'),
(91016, 75633, 'en', 'name', 'Royal Alberta Museum'),
(91017, 75634, 'no_lang_code', 'name', 'Medacta International (Switzerland)'),
(91018, 75635, 'no_lang_code', 'name', 'Research, Evaluation and Social Solutions (United States)'),
(91019, 75636, 'no_lang_code', 'name', 'SignPath Pharma (United States)'),
(91020, 75637, 'de', 'name', 'Arbeitsgemeinschaft ƶkologischer Forschungsinstitute'),
(91021, 75638, 'en', 'name', 'Institute of Molecular Functional Materials'),
(91022, 75638, 'zh', 'name', 'åˆ†å­åŠŸčƒ½ęę–™ē ”ē©¶ę‰€'),
(91023, 75639, 'no_lang_code', 'name', 'Line Corporation (Japan)'),
(91024, 75640, 'no_lang_code', 'name', 'Phiar (United States)'),
(91025, 75641, 'no_lang_code', 'name', 'PI Electronics (China)'),
(91026, 75642, 'no_lang_code', 'name', 'Insightra Medical (United States)'),
(91027, 75643, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ و البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(91028, 75643, 'en', 'name', 'Research Center in Industrial Technologies'),
(91029, 75644, 'no_lang_code', 'name', 'Prevayl (United Kingdom)'),
(91030, 75645, 'en', 'name', 'China Enterprise Confederation'),
(91031, 75645, 'zh', 'name', 'äø­å›½ä¼äøšč”åˆä¼š'),
(91032, 75646, 'en', 'name', 'Qinghai No.3 People''s Hospital'),
(91033, 75646, 'zh', 'name', 'é’ęµ·ēœē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(91034, 75647, 'fr', 'name', 'Institut de la Filtration et des Techniques SƩparatives'),
(91035, 75648, 'no_lang_code', 'name', 'Ideaya Biosciences (United States)'),
(91036, 75649, 'no_lang_code', 'name', 'Faculty (United Kingdom)'),
(91037, 75650, 'no_lang_code', 'name', 'Rebion (United States)'),
(91038, 75651, 'en', 'name', 'Gamagori City Marine Science Museum'),
(91039, 75651, 'ja', 'name', 'č’²éƒ”åø‚ē”Ÿå‘½ć®ęµ·ē§‘å­¦é¤Ø'),
(91040, 75652, 'no_lang_code', 'name', 'Ionetix (United States)'),
(91041, 75653, 'en', 'name', 'Wuhan Wudong Hospital'),
(91042, 75653, 'zh', 'name', 'ę­¦ę±‰åø‚ę­¦äøœåŒ»é™¢'),
(91043, 75654, 'en', 'name', 'Agricultural Research Service - Pacific West Area'),
(91044, 75655, 'no_lang_code', 'name', 'Lifetech Scientific (China)'),
(91045, 75656, 'de', 'name', 'Landesnahverkehrsgesellschaft Niedersachsen'),
(91046, 75657, 'no_lang_code', 'name', 'Beijing Zhongke Science and Technology (China)'),
(91047, 75657, 'zh', 'name', 'åŒ—äŗ¬äø­ē§‘ē§‘ä»Ŗč‚”ä»½ęœ‰é™å…¬åø'),
(91048, 75658, 'fr', 'name', 'Groupe Lesaffre'),
(91049, 75658, 'no_lang_code', 'name', 'Lesaffre (France)'),
(91050, 75659, 'no_lang_code', 'name', 'Biomark (United States)'),
(91051, 75660, 'de', 'name', 'Institut für Innovation, Transfer und Beratung'),
(91052, 75661, 'en', 'name', 'North Canyon Medical Center'),
(91053, 75662, 'no_lang_code', 'name', 'Floratech (United States)'),
(91054, 75663, 'no_lang_code', 'name', 'Click Diagnostics (United States)'),
(91055, 75664, 'en', 'name', 'Amanosan Cultural Heritages Research Institute'),
(91056, 75664, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗ å¤©é‡Žå±±ę–‡åŒ–éŗē”£ē ”ē©¶ę‰€'),
(91057, 75665, 'en', 'name', 'United Nations Office for Project Services'),
(91058, 75666, 'no_lang_code', 'name', 'Silicon Therapeutics (United States)'),
(91059, 75667, 'no_lang_code', 'name', 'System Dynamics International (United States)'),
(91060, 75668, 'no_lang_code', 'name', 'Object Computing (United States)'),
(91061, 75669, 'en', 'name', 'Centre for Democracy and Development'),
(91062, 75670, 'id', 'name', 'Politeknik Medica Farma Husada Mataram'),
(91063, 75671, 'no_lang_code', 'name', 'Atea Pharmaceuticals (United States)'),
(91064, 75672, 'no_lang_code', 'name', 'Stannah (United Kingdom)'),
(91065, 75673, 'no_lang_code', 'name', 'E-Techco Group (China)'),
(91066, 75674, 'de', 'name', 'Zug Cantonal Hospital, Zuger Kantonsspital'),
(91067, 75675, 'no_lang_code', 'name', 'Caregen (South Korea)'),
(91068, 75676, 'no_lang_code', 'name', 'Quantum Diamond Technologies (United States)'),
(91069, 75677, 'en', 'name', 'Experimental Center of Tropical Forestry'),
(91070, 75677, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ēƒ­åø¦ęž—äøšå®žéŖŒäø­åæƒ'),
(91071, 75678, 'no_lang_code', 'name', 'Advanced Energy (United States)'),
(91072, 75679, 'no_lang_code', 'name', 'Ingeneric (Germany)'),
(91073, 75680, 'en', 'name', 'Mann-Grandstaff VA Medical Center'),
(91074, 75681, 'no_lang_code', 'name', 'Zeomedix (United States)'),
(91075, 75682, 'en', 'name', 'Shanghai Institute of Nutrition and Health'),
(91076, 75682, 'zh', 'name', '中国科学院 äøŠęµ·č„å…»äøŽå„åŗ·ē ”ē©¶é™¢'),
(91077, 75683, 'en', 'name', 'RIKEN BioResource Research Center'),
(91078, 75683, 'ja', 'name', 'ē†ē ”ćƒć‚¤ć‚ŖćƒŖć‚½ćƒ¼ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(91079, 75684, 'en', 'name', 'Shandong Freshwater Fisheries Research Institute'),
(91080, 75684, 'zh', 'name', 'å±±äøœēœę·”ę°“ęø”äøšē ”ē©¶é™¢'),
(91081, 75685, 'no_lang_code', 'name', 'Photonics (United States)'),
(91082, 75686, 'no_lang_code', 'name', 'First Quality (United States)'),
(91083, 75687, 'en', 'name', 'Baoson Hospital'),
(91084, 75687, 'vi', 'name', 'Bệnh viện Đa khoa Bįŗ£o SĘ”n'),
(91085, 75688, 'en', 'name', 'Misato Observatory'),
(91086, 75688, 'ja', 'name', 'ćæć•ćØå¤©ę–‡å°'),
(91087, 75689, 'no_lang_code', 'name', 'Exogenesis (United States)'),
(91088, 75690, 'en', 'name', 'Health Education England'),
(91089, 75691, 'no_lang_code', 'name', 'Strategic Science & Technologies (United States)'),
(91090, 75692, 'de', 'name', 'Institut für Brand- und Katastrophenschutz Heyrothsberge'),
(91091, 75693, 'ca', 'name', 'Consorci d’Atenció PrimĆ ria de Salut Barcelona Esquerra'),
(91092, 75694, 'no_lang_code', 'name', 'Seno Medical (United States)'),
(91093, 75695, 'no_lang_code', 'name', 'SMD (United States)'),
(91094, 75696, 'de', 'name', 'Waldrappteam'),
(91095, 75697, 'en', 'name', 'Ministry of Public Works Transportation and Communications'),
(91096, 75697, 'ht', 'name', 'MinistĆØre des Travaux Publics Transports et Communications'),
(91097, 75698, 'no_lang_code', 'name', 'Modeinstitut Berlin (Germany)'),
(91098, 75699, 'no_lang_code', 'name', 'Primus Consulting (United States)'),
(91099, 75700, 'no_lang_code', 'name', 'Compass (United States)'),
(91100, 75701, 'de', 'name', 'Deutsche Gesellschaft für Information und Wissen'),
(91101, 75702, 'en', 'name', 'International Academy of Astronautics'),
(91102, 75703, 'no_lang_code', 'name', 'Promet Optics (United States)'),
(91103, 75704, 'no_lang_code', 'name', 'Lohmann (Germany)'),
(91104, 75705, 'no_lang_code', 'name', 'Alphatec Spine Approach Technologies (United States)'),
(91105, 75706, 'en', 'name', 'Shikoku Central Medical Welfare Institute'),
(91106, 75706, 'ja', 'name', 'å››å›½äø­å¤®åŒ»ē™‚ē¦ē„‰ē·åˆå­¦é™¢'),
(91107, 75707, 'no_lang_code', 'name', 'Ensysce Biosciences (United States)'),
(91108, 75708, 'no_lang_code', 'name', 'Quantlab (United States)'),
(91109, 75709, 'en', 'name', 'Euro-Arab Foundation for Higher Studies'),
(91110, 75710, 'ja', 'name', 'ć‚ÆćƒŖćƒ³ć‚°ćƒ«ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(91111, 75710, 'no_lang_code', 'name', 'Kringle Pharma (Japan)'),
(91112, 75711, 'no_lang_code', 'name', 'Sto (Germany)'),
(91113, 75712, 'no_lang_code', 'name', 'Arrayed Materials (China)'),
(91114, 75713, 'no_lang_code', 'name', 'Johns Manville (Slovakia)'),
(91115, 75714, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚°ćƒƒćƒ‰ćƒžćƒ³'),
(91116, 75714, 'no_lang_code', 'name', 'Goodman (Japan)'),
(91117, 75715, 'no_lang_code', 'name', 'Scribner (United States)'),
(91118, 75716, 'en', 'name', 'National Bank of Slovakia'),
(91119, 75716, 'sk', 'name', 'NƔrodnƔ banka Slovenska'),
(91120, 75717, 'fr', 'name', 'Le Soleil dans la Main'),
(91121, 75718, 'en', 'name', 'National Brain Centre'),
(91122, 75718, 'id', 'name', 'Rumah Sakit Pusat Otak Nasional'),
(91123, 75719, 'no_lang_code', 'name', 'OpenCell Technologies (United States)'),
(91124, 75720, 'no_lang_code', 'name', 'iSense (United States)'),
(91125, 75721, 'en', 'name', 'Center for Nanoscale Science and Technology'),
(91126, 75722, 'en', 'name', 'Taiwan Semiconductor Industry Association'),
(91127, 75723, 'no_lang_code', 'name', 'ZoneOne Pharma (United States)'),
(91128, 75724, 'no_lang_code', 'name', 'Molecular Partners (Switzerland)'),
(91129, 75725, 'no_lang_code', 'name', 'Solutions Through Innovative Technologies (United States)'),
(91130, 75726, 'no_lang_code', 'name', 'Think Surgical (United States)'),
(91131, 75727, 'no_lang_code', 'name', 'Tegut (Germany)'),
(91132, 75728, 'no_lang_code', 'name', 'RF Laboratories (United States)'),
(91133, 75729, 'en', 'name', 'Sanjay Ghodawat University'),
(91134, 75730, 'no_lang_code', 'name', 'Widder Brothers (United States)'),
(91135, 75731, 'en', 'name', 'Chianti Multifunctional Observatory'),
(91136, 75731, 'it', 'name', 'Osservatorio Polifunzionale del Chianti'),
(91137, 75732, 'de', 'name', 'Das Institut für Seevölkerrecht und Internationales Meersumweltrecht'),
(91138, 75732, 'en', 'name', 'The Institute for the Law of the Sea and International Marine Environmental Law'),
(91139, 75733, 'no_lang_code', 'name', 'Purilogics (United States)'),
(91140, 75734, 'no_lang_code', 'name', 'NetDragon (United States)'),
(91141, 75735, 'no_lang_code', 'name', 'Huaibei Mining (China)'),
(91142, 75736, 'no_lang_code', 'name', 'Royalty Pharma (United States)'),
(91143, 75737, 'no_lang_code', 'name', 'Schwenk (Germany)'),
(91144, 75738, 'en', 'name', 'Xinjiang Uygur Autonomous Region Disease Prevention and Control Center'),
(91145, 75738, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(91146, 75739, 'en', 'name', 'College of Contract Management'),
(91147, 75740, 'no_lang_code', 'name', 'GenISys (Germany)'),
(91148, 75741, 'en', 'name', 'Centre For Human Genetics'),
(91149, 75742, 'en', 'name', 'The Fifth People''s Hospital of Anyang'),
(91150, 75742, 'zh', 'name', 'å®‰é˜³åø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(91151, 75743, 'en', 'name', 'National Bank of Poland'),
(91152, 75743, 'pl', 'name', 'Narodowy Bank Polski'),
(91153, 75744, 'no_lang_code', 'name', 'Welland Medical (United Kingdom)'),
(91154, 75745, 'de', 'name', 'Landesamt für Kultur und Denkmalpflege Mecklenburg-Vorpommern'),
(91155, 75746, 'no_lang_code', 'name', 'PTC (United Kingdom)'),
(91156, 75747, 'no_lang_code', 'name', 'Syntrotek (United States)'),
(91157, 75748, 'de', 'name', 'Rechenkraft.net'),
(91158, 75749, 'no_lang_code', 'name', 'LDK Solar (China)'),
(91159, 75749, 'zh', 'name', 'č³½ē¶­å¤Ŗé™½čƒ½'),
(91160, 75750, 'ja', 'name', 'äŗ¬éƒ½č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(91161, 75750, 'no_lang_code', 'name', 'Kyoto Pharmaceutical Industries (Japan)'),
(91162, 75751, 'ja', 'name', 'äø‰äŗ•č£½ē³–ę Ŗå¼ä¼šē¤¾'),
(91163, 75751, 'no_lang_code', 'name', 'Mitsui Sugar (Japan)'),
(91164, 75752, 'en', 'name', 'The Mark Foundation for Cancer Research'),
(91165, 75753, 'de', 'name', 'Halle Zoo, Zoologischer Garten Halle'),
(91166, 75754, 'no_lang_code', 'name', 'United Initiators (Germany)'),
(91167, 75755, 'en', 'name', 'Biological and Chemical Oceanography Data Management Office'),
(91168, 75756, 'no_lang_code', 'name', 'Technology Applications Group (United States)'),
(91169, 75757, 'en', 'name', 'Islamic Azad University, Firuzabad Branch'),
(91170, 75757, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد فیروزآباد'),
(91171, 75758, 'en', 'name', 'Vehicles Research Development Establishment'),
(91172, 75759, 'en', 'name', 'Liaoning Vocational College of Medical'),
(91173, 75759, 'zh', 'name', 'č¾½å®åŒ»å­¦é™¢å­¦ęŠ„'),
(91174, 75760, 'ja', 'name', 'å¤©å‡Æå…‰é€šäæ”'),
(91175, 75760, 'no_lang_code', 'name', 'TianKai Optical Communication (China)'),
(91176, 75761, 'no_lang_code', 'name', 'Oscilla Power (United States)'),
(91177, 75762, 'en', 'name', 'Handan Polytechnic College'),
(91178, 75762, 'zh', 'name', 'é‚ÆéƒøčŒäøšęŠ€ęœÆå­¦é™¢'),
(91179, 75763, 'de', 'name', 'Institut für Inklusive Bildung'),
(91180, 75763, 'en', 'name', 'Institute for Inclusive Education'),
(91181, 75764, 'no_lang_code', 'name', 'Syntermed (United States)'),
(91182, 75765, 'en', 'name', 'Darwin Centre'),
(91183, 75766, 'no_lang_code', 'name', 'Melexis (Belgium)'),
(91184, 75767, 'en', 'name', 'Animal Resources Development Department'),
(91185, 75768, 'en', 'name', 'Kagoshima Medical Corporation Association Nursing College'),
(91186, 75768, 'ja', 'name', 'é¹æå…å³¶ēœŒåŒ»ē™‚ę³•äŗŗå”ä¼šē«‹ēœ‹č­·å°‚é–€å­¦ę ”'),
(91187, 75769, 'no_lang_code', 'name', 'Bard Access Systems (United States)'),
(91188, 75770, 'no_lang_code', 'name', 'Blockheizkraftwerks- TrƤger- und Betreibergesellschaft (Germany)'),
(91189, 75771, 'en', 'name', 'PEG-Bio Biopharm'),
(91190, 75771, 'zh', 'name', 'é‡åŗ†ę“¾é‡‘ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(91191, 75772, 'en', 'name', 'Iguaque Foundation'),
(91192, 75772, 'es', 'name', 'Fundación Iguaque'),
(91193, 75773, 'de', 'name', 'Forschungszentrum Küste'),
(91194, 75774, 'en', 'name', 'Wenzhou Central Hospital'),
(91195, 75774, 'zh', 'name', 'ęø©å·žåø‚äø­åæƒåŒ»é™¢'),
(91196, 75775, 'no_lang_code', 'name', 'Liebherr (Switzerland)'),
(91197, 75776, 'de', 'name', 'Sternwarte Bochum'),
(91198, 75776, 'en', 'name', 'Bochum Observatory'),
(91199, 75777, 'en', 'name', 'Research & Development Establishment (Engrs.)'),
(91200, 75777, 'hi', 'name', 'ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø आणि विकास ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾ ą¤‡ą¤‚ą¤œą¤æą¤Øą¤æą¤Æą¤°ą„ą¤ø'),
(91201, 75778, 'no_lang_code', 'name', 'JW Medical Systems (China)'),
(91202, 75779, 'en', 'name', 'Defence Electronics Research Laboratory'),
(91203, 75779, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤‡ą¤²ą„‡ą¤•ą„ą¤Ÿą„ą¤°ą„‰ą¤Øą¤æą¤•ą„ą¤ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(91204, 75780, 'no_lang_code', 'name', 'Starship Health Technologies (United States)'),
(91205, 75781, 'de', 'name', 'Institut für Textoptimierung'),
(91206, 75782, 'de', 'name', 'Bildungswerk der Wirtschaft Hamburg'),
(91207, 75782, 'en', 'name', 'Education and Training Service for Hamburg Businesses'),
(91208, 75783, 'no_lang_code', 'name', 'RealTimePurity (United States)'),
(91209, 75784, 'no_lang_code', 'name', 'CCP Technologies (United States)'),
(91210, 75785, 'en', 'name', 'Ontario Science Centre'),
(91211, 75785, 'fr', 'name', 'Centre des sciences de l''Ontario'),
(91212, 75786, 'no_lang_code', 'name', 'Tiburon Associates (United States)'),
(91213, 75787, 'no_lang_code', 'name', 'China Light Industry Press (China)'),
(91214, 75787, 'zh', 'name', 'äø­å›½č½»å·„äøšå‡ŗē‰ˆē¤¾'),
(91215, 75788, 'ja', 'name', 'ć‚µć‚¤ćƒćƒ¼ćƒ€ć‚¤ćƒ³'),
(91216, 75788, 'no_lang_code', 'name', 'Cyberdyne (Japan)'),
(91217, 75789, 'no_lang_code', 'name', 'Stiegelmeyer (Germany)'),
(91218, 75790, 'no_lang_code', 'name', 'Esox-Plast (Slovakia)'),
(91219, 75791, 'no_lang_code', 'name', 'West Coast Solutions (United States)'),
(91220, 75792, 'no_lang_code', 'name', 'Ingenium (Germany)'),
(91221, 75793, 'en', 'name', 'Guanacaste Conservation Area'),
(91222, 75793, 'es', 'name', 'Área de Conservación Guanacaste'),
(91223, 75794, 'en', 'name', 'Sabalan University of Advanced Technologies'),
(91224, 75794, 'fa', 'name', 'دانؓگاه ŁŁ†Ų§ŁˆŲ±ŪŒ Ł‡Ų§ŪŒ Ł†ŁˆŪŒŁ† سبلان'),
(91225, 75795, 'no_lang_code', 'name', 'MRJ Consulting (United States)'),
(91226, 75796, 'de', 'name', 'Klinikum Mittelbaden'),
(91227, 75797, 'en', 'name', 'Museum of Military Medicine'),
(91228, 75798, 'en', 'name', 'Wilkes-Barre VA Medical Center'),
(91229, 75799, 'no_lang_code', 'name', 'Advania (Sweden)'),
(91230, 75800, 'no_lang_code', 'name', 'Picoyune (United States)'),
(91231, 75801, 'no_lang_code', 'name', 'Praeses (United States)'),
(91232, 75802, 'de', 'name', 'Allensbach Hochschule'),
(91233, 75802, 'en', 'name', 'Allensbach University'),
(91234, 75803, 'en', 'name', 'Slovak Caves Administration'),
(91235, 75803, 'sk', 'name', 'SzlovÔkiai Barlangok IgazgatósÔga'),
(91236, 75804, 'no_lang_code', 'name', 'Ibule Photonics (South Korea)'),
(91237, 75805, 'en', 'name', 'Reality of Aid Africa Network'),
(91238, 75806, 'en', 'name', 'Falklands Conservation'),
(91239, 75807, 'en', 'name', 'Suratthani Cancer Hospital'),
(91240, 75807, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø”ąø°ą¹€ąø£ą¹‡ąø‡ąøŖąøøąø£ąø²ąø©ąøŽąø£ą¹Œąø˜ąø²ąø™ąøµ'),
(91241, 75808, 'no_lang_code', 'name', 'Equinor (United Kingdom)'),
(91242, 75809, 'ar', 'name', 'منظمة Ų§Ł„ŲŖŲ¹Ų§ŁˆŁ† Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(91243, 75809, 'en', 'name', 'Organisation of Islamic Cooperation'),
(91244, 75810, 'de', 'name', 'Arbeitsgruppe für regionale Struktur- und Umweltforschung'),
(91245, 75811, 'sk', 'name', 'ŠtÔtny VeterinÔrny a Potravinový Ústav'),
(91246, 75812, 'en', 'name', 'P.V. Narsimha Rao Telangana Veterinary University'),
(91247, 75812, 'te', 'name', 'PV ą°Øą°°ą°øą°æą°‚ą°¹ రావు తెలంగాణ ą°µą±†ą°Ÿą°°ą±ą°Øą°°ą±€ ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(91248, 75813, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒć‚¤ćƒ¬ćƒƒć‚Æć‚¹ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(91249, 75813, 'no_lang_code', 'name', 'HI-LEX (Japan)'),
(91250, 75814, 'de', 'name', 'Hermann-Josef-Krankenhaus Erkelenz'),
(91251, 75815, 'no_lang_code', 'name', 'PeoplePower (United States)'),
(91252, 75816, 'no_lang_code', 'name', 'Keramische Folien (Germany)'),
(91253, 75817, 'en', 'name', 'Coconut Research Institute'),
(91254, 75817, 'zh', 'name', 'äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢ę¤°å­ē ”ē©¶ę‰€'),
(91255, 75818, 'no_lang_code', 'name', 'Transparency Lab (Netherlands)'),
(91256, 75819, 'no_lang_code', 'name', 'AutoMedx (United States)'),
(91257, 75820, 'en', 'name', 'China Construction Bank'),
(91258, 75820, 'zh', 'name', 'äø­å›½å»ŗč®¾é“¶č”Œ'),
(91259, 75821, 'en', 'name', 'Chartered Institute of Personnel and Development'),
(91260, 75822, 'no_lang_code', 'name', 'AIR Worldwide (United States)'),
(91261, 75823, 'no_lang_code', 'name', 'TransMed7 (United States)'),
(91262, 75824, 'no_lang_code', 'name', 'Kintech Lab (Russia)'),
(91263, 75825, 'en', 'name', 'Shiga Prefectural Higashi Otsu High School'),
(91264, 75825, 'ja', 'name', 'ę»‹č³€ēœŒē«‹ę±å¤§ę“„é«˜'),
(91265, 75826, 'no_lang_code', 'name', 'Vivant (United States)'),
(91266, 75827, 'no_lang_code', 'name', 'LRC Products (United States)'),
(91267, 75828, 'no_lang_code', 'name', 'WinSanTor (United States)'),
(91268, 75829, 'no_lang_code', 'name', 'Abcentra (United States)'),
(91269, 75830, 'en', 'name', 'Institute of Desertification Studies'),
(91270, 75830, 'zh', 'name', 'č’ę¼ åŒ–ē ”ē©¶ę‰€'),
(91271, 75831, 'en', 'name', 'Axis Multispecialty Hospital'),
(91272, 75832, 'en', 'name', 'Islamic Azad University, Ashtian Branch'),
(91273, 75832, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų¢Ų“ŲŖŁŠŲ§Ł†'),
(91274, 75833, 'en', 'name', 'British Society for the History of Medicine'),
(91275, 75834, 'no_lang_code', 'name', 'Jiangsu Changjiang Electronics Technology (China)'),
(91276, 75834, 'zh', 'name', 'ę±Ÿč˜‡é•·é›»ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(91277, 75835, 'no_lang_code', 'name', 'Krishi Vigyan Kendra, Hingoli'),
(91278, 75836, 'en', 'name', 'Brennan Center for Justice'),
(91279, 75837, 'de', 'name', 'Bremer Umweltinstitut'),
(91280, 75838, 'no_lang_code', 'name', 'Neuboron (China)'),
(91281, 75839, 'no_lang_code', 'name', 'Opticslah (United States)'),
(91282, 75840, 'no_lang_code', 'name', 'Cefla (Italy)'),
(91283, 75841, 'no_lang_code', 'name', 'Silver Bullet Solutions (United States)'),
(91284, 75842, 'no_lang_code', 'name', 'Vcrsoft (United States)'),
(91285, 75843, 'de', 'name', 'Institut für Hämatopathologie Hamburg'),
(91286, 75844, 'no_lang_code', 'name', 'Sarcos (United States)'),
(91287, 75845, 'no_lang_code', 'name', 'Hengdian Group DMEGC Magnetics (China)'),
(91288, 75846, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ микробиологии'),
(91289, 75846, 'en', 'name', 'Institute of Microbiology'),
(91290, 75847, 'en', 'name', 'Institute for Global Dialogue'),
(91291, 75848, 'no_lang_code', 'name', 'Sentimetrix (United States)'),
(91292, 75849, 'en', 'name', 'Fayetteville VA Medical Center'),
(91293, 75850, 'en', 'name', 'University Transportation Center for Railway Safety'),
(91294, 75851, 'en', 'name', 'Chigasaki Rehabilitation College'),
(91295, 75851, 'ja', 'name', 'čŒ…ćƒ¶å“ŽćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€å­¦ę ”ćÆ'),
(91296, 75852, 'no_lang_code', 'name', 'Gesellschaft für Materialforschung und Prüfungsanstalt für das Bauwesen (Germany)'),
(91297, 75853, 'en', 'name', 'Afghan Paramount Welfare and Development Organization'),
(91298, 75854, 'no_lang_code', 'name', 'Fraunhofer Singapore'),
(91299, 75855, 'en', 'name', 'Multi Vaccines Development Program'),
(91300, 75856, 'ja', 'name', 'åÆŒå£«åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(91301, 75856, 'no_lang_code', 'name', 'Fuji Chemical Industries (Japan)'),
(91302, 75857, 'no_lang_code', 'name', 'Ossur (United States)'),
(91303, 75858, 'de', 'name', 'Propstei Johannesberg'),
(91304, 75859, 'en', 'name', 'Beijing Fengtai Disease Prevention and Control Center'),
(91305, 75859, 'zh', 'name', 'åŒ—äŗ¬åø‚äø°å°åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(91306, 75860, 'no_lang_code', 'name', 'Microline Surgical (United States)'),
(91307, 75861, 'no_lang_code', 'name', 'Novel (United States)'),
(91308, 75862, 'no_lang_code', 'name', 'Merete (Germany)'),
(91309, 75863, 'es', 'name', 'Tierra'),
(91310, 75864, 'en', 'name', 'Jewish Museum London'),
(91311, 75865, 'en', 'name', 'Institute of Information Science, Academia Sinica'),
(91312, 75865, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢č³‡čØŠē§‘å­øē ”ē©¶ę‰€'),
(91313, 75866, 'no_lang_code', 'name', 'HAMR Industries (United States)'),
(91314, 75867, 'no_lang_code', 'name', 'MANI (Japan)'),
(91315, 75868, 'fr', 'name', 'Agitel-Formation'),
(91316, 75869, 'no_lang_code', 'name', 'SecurAcath (United States)'),
(91317, 75870, 'en', 'name', 'Canada''s Ecofiscal Commission'),
(91318, 75871, 'no_lang_code', 'name', 'SI-Bone (United States)'),
(91319, 75872, 'en', 'name', 'Northern Ireland Ambulance Service Health and Social Care Trust'),
(91320, 75873, 'en', 'name', 'Horseed International University'),
(91321, 75874, 'de', 'name', 'Gesellschaft für Akademische Studienvorbereitung und Testentwicklung'),
(91322, 75875, 'no_lang_code', 'name', 'Optics Balzers (Germany)'),
(91323, 75876, 'en', 'name', 'Aichi Medical University Hospital'),
(91324, 75876, 'ja', 'name', 'ę„›ēŸ„åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(91325, 75877, 'no_lang_code', 'name', 'Silergy (China)'),
(91326, 75878, 'no_lang_code', 'name', 'Berry (Switzerland)'),
(91327, 75879, 'en', 'name', 'Brooke'),
(91328, 75880, 'no_lang_code', 'name', 'Kage Mikrofotografie (Germany)'),
(91329, 75881, 'no_lang_code', 'name', 'Sunset Laboratory (United States)'),
(91330, 75882, 'no_lang_code', 'name', 'Seelos Therapeutics (United States)'),
(91331, 75883, 'es', 'name', 'Universidad Autónoma de Baja California Sur'),
(91332, 75884, 'no_lang_code', 'name', 'Exactech (United States)'),
(91333, 75885, 'en', 'name', 'Gorilla Doctors'),
(91334, 75886, 'en', 'name', 'Mabula Ground Hornbill Project'),
(91335, 75887, 'en', 'name', 'Komatsu University'),
(91336, 75887, 'ja', 'name', 'å…¬ē«‹å°ę¾å¤§å­¦'),
(91337, 75888, 'no_lang_code', 'name', 'Launch Alaska (United States)'),
(91338, 75889, 'no_lang_code', 'name', 'XUV Lasers (United States)'),
(91339, 75890, 'en', 'name', 'BIOP Institute'),
(91340, 75891, 'en', 'name', 'Zoo Atlanta'),
(91341, 75892, 'no_lang_code', 'name', 'OTI Lumionics (Canada)'),
(91342, 75893, 'no_lang_code', 'name', 'Nabors Industries (United States)'),
(91343, 75894, 'no_lang_code', 'name', 'Institut für Nachhaltige Landbewirtschaftung (Germany)'),
(91344, 75895, 'en', 'name', 'African Heritage Institution'),
(91345, 75896, 'no_lang_code', 'name', 'Ventions (United States)'),
(91346, 75897, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗ č®ƒē”Ÿä¼š å®®ć®ę£®čØ˜åæµē—…é™¢'),
(91347, 75897, 'no_lang_code', 'name', 'Miyanomori Memorial Hospital'),
(91348, 75898, 'no_lang_code', 'name', 'Azur Space Solar Power'),
(91349, 75899, 'no_lang_code', 'name', 'Institut für Bauphysik und Bauchemie (Germany)'),
(91350, 75900, 'en', 'name', 'Clear Path for Veterans'),
(91351, 75901, 'no_lang_code', 'name', 'Stf Technologies (United States)'),
(91352, 75902, 'no_lang_code', 'name', 'Shijia Photons (China)'),
(91353, 75902, 'zh', 'name', '仕佳光子'),
(91354, 75903, 'no_lang_code', 'name', 'ID Quantique (United Kingdom)'),
(91355, 75904, 'no_lang_code', 'name', 'Safeware Engineering (United States)'),
(91356, 75905, 'de', 'name', 'Virtus - Institut für Neue Lehr- und Lernmethoden'),
(91357, 75906, 'ja', 'name', 'åŒ—čˆˆåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(91358, 75906, 'no_lang_code', 'name', 'Hokko Chemical Industry (Japan)'),
(91359, 75907, 'de', 'name', 'Versuchsanstalt der Hefeindustrie'),
(91360, 75907, 'en', 'name', 'Research Institute for Baker’s Yeast'),
(91361, 75908, 'no_lang_code', 'name', 'Sabin Medicina Diagnostica (Brazil)'),
(91362, 75909, 'en', 'name', 'National Transportation Research Center'),
(91363, 75910, 'no_lang_code', 'name', 'Hatz (Germany)'),
(91364, 75911, 'en', 'name', 'Institute of Sand Control, Shaanxi Academy of Forestry'),
(91365, 75911, 'zh', 'name', 'é™•č„æēœę²»ę²™ē ”ē©¶ę‰€'),
(91366, 75912, 'no_lang_code', 'name', 'Berliner Stadtreinigungsbetriebe (Germany)'),
(91367, 75913, 'en', 'name', 'National Center for Gene Research'),
(91368, 75913, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å›½å®¶åŸŗå› ē ”ē©¶äø­åæƒ'),
(91369, 75914, 'en', 'name', 'Chinese Society of Forestry'),
(91370, 75914, 'zh', 'name', 'äø­å›½ęž—å­¦ä¼š'),
(91371, 75915, 'en', 'name', 'International Federation of Surveyors'),
(91372, 75916, 'en', 'name', 'Agri-Food Business Innovation Center'),
(91373, 75916, 'ja', 'name', 'é£Ÿč¾²ćƒ“ć‚øćƒć‚¹ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(91374, 75917, 'en', 'name', 'Mianyang Institute of Traditional Chinese Medicine'),
(91375, 75917, 'zh', 'name', 'ē»µé˜³äø­åŒ»å­¦é™¢'),
(91376, 75918, 'ja', 'name', 'ęœØę›“ę“„ē—…é™¢'),
(91377, 75918, 'no_lang_code', 'name', 'Kisarazu Hospital'),
(91378, 75919, 'en', 'name', 'Research and Action in Natural Wealth Administration'),
(91379, 75919, 'hi', 'name', 'ą¤Øą„ˆą¤øą¤°ą„ą¤—ą¤æą¤• ą¤øą¤‚ą¤Ŗą¤¤ą„ą¤¤ą„€ ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤øą¤Ø ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø आणि ą¤•ą„ƒą¤¤ą„€'),
(91380, 75920, 'de', 'name', 'Fraunhofer-Zentrum für Chemisch-Biotechnologische Prozesse'),
(91381, 75920, 'en', 'name', 'Fraunhofer Center for Chemical-Biotechnological Processes'),
(91382, 75921, 'en', 'name', 'African Forum and Network on Debt and Development'),
(91383, 75922, 'no_lang_code', 'name', 'Averis Seeds (Netherlands)'),
(91384, 75923, 'no_lang_code', 'name', 'TerraVerdae BioWorks (United Kingdom)'),
(91385, 75924, 'no_lang_code', 'name', 'Dynapel Systems (United States)'),
(91386, 75925, 'en', 'name', 'Institute of Mathematics, Academia Sinica'),
(91387, 75925, 'zh', 'name', '中央研究院數學所'),
(91388, 75926, 'no_lang_code', 'name', 'Footstar (United States)'),
(91389, 75927, 'no_lang_code', 'name', 'Institut Stadt I MobilitƤt I Energie (Germany)'),
(91390, 75928, 'ja', 'name', 'ć‚»ć‚¤ć‚³ćƒ¼åŒ–å·„ę©Ÿ'),
(91391, 75928, 'no_lang_code', 'name', 'Seikow Chemical Engineering and Machinery (Japan)'),
(91392, 75929, 'no_lang_code', 'name', 'NantWorks (United States)'),
(91393, 75930, 'en', 'name', 'Georgia Department of Economic Development'),
(91394, 75931, 'en', 'name', 'Egyptian Center for Innovation and Technology Development'),
(91395, 75932, 'en', 'name', 'Baoding People''s Hospital'),
(91396, 75932, 'zh', 'name', 'äæå®šåø‚äŗŗę°‘åŒ»é™¢'),
(91397, 75933, 'de', 'name', 'Kreisklinik Trostberg'),
(91398, 75934, 'de', 'name', 'Die Johanniter'),
(91399, 75935, 'no_lang_code', 'name', 'Pendar Technologies (United States)'),
(91400, 75936, 'no_lang_code', 'name', 'Institut für Zukunftsorientierte Arbeitsgestaltung (Germany)'),
(91401, 75937, 'de', 'name', 'Fraunhofer-Verbund Mikroelektronik'),
(91402, 75937, 'en', 'name', 'Fraunhofer Group for Microelectronics'),
(91403, 75938, 'ja', 'name', 'ę˜­å’ŒåŒ»ē§‘å·„ę„­'),
(91404, 75938, 'no_lang_code', 'name', 'Showa Ika Kogyo (Japan)'),
(91405, 75939, 'no_lang_code', 'name', 'CGI (Canada)'),
(91406, 75940, 'no_lang_code', 'name', 'Meagan Medical (United States)'),
(91407, 75941, 'en', 'name', 'Diagnostic Microbiology Development Program'),
(91408, 75942, 'no_lang_code', 'name', 'Praxis BioSciences (United States)'),
(91409, 75943, 'es', 'name', 'Centro de Salud Casa del Barco'),
(91410, 75944, 'no_lang_code', 'name', 'Mackinac Technology (United States)'),
(91411, 75945, 'no_lang_code', 'name', 'IS-Wireless (Poland)'),
(91412, 75946, 'no_lang_code', 'name', 'BrightPath Biotherapeutics (Japan)'),
(91413, 75947, 'no_lang_code', 'name', 'Stadtwerke Duisburg (Germany)'),
(91414, 75948, 'no_lang_code', 'name', 'Plasmology4 (United States)'),
(91415, 75949, 'en', 'name', 'Western Transportation Institute'),
(91416, 75950, 'no_lang_code', 'name', 'Secondpeak (United States)'),
(91417, 75951, 'no_lang_code', 'name', 'Belron (Switzerland)'),
(91418, 75952, 'de', 'name', 'Institut für Angewandte Bauforschung Weimar'),
(91419, 75953, 'en', 'name', 'China Tibetology Research Center'),
(91420, 75953, 'zh', 'name', 'äø­å›½č—å­¦ē ”ē©¶äø­åæƒ'),
(91421, 75954, 'no_lang_code', 'name', 'LiveDo (Japan)'),
(91422, 75955, 'en', 'name', 'The Gordon Life Science Institute'),
(91423, 75956, 'no_lang_code', 'name', 'SpaceTech (Germany)'),
(91424, 75957, 'sk', 'name', 'Prevencia'),
(91425, 75958, 'no_lang_code', 'name', 'Teva Pharmaceuticals (Switzerland)'),
(91426, 75959, 'en', 'name', 'Xianning Central Hospital'),
(91427, 75959, 'zh', 'name', 'å’øå®åø‚äø­åæƒåŒ»é™¢'),
(91428, 75960, 'en', 'name', 'Jinshan Hospital of Fudan University'),
(91429, 75960, 'zh', 'name', 'å¤ę—¦å¤§å­¦é™„å±žé‡‘å±±åŒ»é™¢'),
(91430, 75961, 'de', 'name', 'Progress-Institut für Wirtschaftsforschung'),
(91431, 75962, 'hr', 'name', 'DruŔtvo za Istraživanje i IskoriŔtavanje Voda'),
(91432, 75962, 'no_lang_code', 'name', 'D.I.I.V. (Croatia)'),
(91433, 75963, 'en', 'name', 'Cleveland Metroparks'),
(91434, 75964, 'en', 'name', 'Federation of Colombian Insurers'),
(91435, 75964, 'es', 'name', 'Federación de Aseguradores Colombianos'),
(91436, 75965, 'no_lang_code', 'name', 'Elixiron Immunotherapeutics (Taiwan)'),
(91437, 75965, 'zh', 'name', 'å®‰ē«‹ēŽŗč£ē”Ÿē‰©åŒ»čÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(91438, 75966, 'no_lang_code', 'name', 'SiOnyx (United States)'),
(91439, 75967, 'en', 'name', 'University of the Sacred Heart Gulu'),
(91440, 75968, 'no_lang_code', 'name', 'Sinus Markt- und Sozialforschung (Germany)'),
(91441, 75969, 'ja', 'name', 'ć‚³ć‚¹ćƒ”ćƒ‡ć‚£č£½č–¬'),
(91442, 75969, 'no_lang_code', 'name', 'CosMED Pharmaceutical (Japan)'),
(91443, 75970, 'no_lang_code', 'name', 'Technology Focus (United States)'),
(91444, 75971, 'no_lang_code', 'name', 'ZTS Sabinov (Slovakia)'),
(91445, 75972, 'no_lang_code', 'name', 'GEOtest Bratislava (Slovakia)'),
(91446, 75973, 'en', 'name', 'Shizuoka Prefecture Archaeological Center'),
(91447, 75973, 'ja', 'name', 'é™å²”ēœŒåŸ‹č”µę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(91448, 75974, 'no_lang_code', 'name', 'H2 Mobility (Germany)'),
(91449, 75975, 'en', 'name', 'Institute of European and American Studies, Academia Sinica'),
(91450, 75975, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ę­ē¾Žē ”ē©¶ę‰€'),
(91451, 75976, 'no_lang_code', 'name', 'Potrero Medical (United States)'),
(91452, 75977, 'en', 'name', 'Bunka Gakuen Nagano Technical College'),
(91453, 75977, 'ja', 'name', 'ę–‡åŒ–å­¦åœ’é•·é‡Žäæč‚²å°‚é–€å­¦ę ”'),
(91454, 75978, 'he', 'name', 'החברה ×œ×™×©×Ø××œ'),
(91455, 75978, 'no_lang_code', 'name', 'Israel Corp (Israel)'),
(91456, 75979, 'no_lang_code', 'name', 'Bayer (Australia)');
INSERT INTO `ror_settings` VALUES
(91457, 75980, 'de', 'name', 'Ministerium für Finanzen und Europa'),
(91458, 75981, 'ar', 'name', 'مصرف قطر Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(91459, 75981, 'no_lang_code', 'name', 'Qatar Central Bank'),
(91460, 75982, 'fa', 'name', 'ŲØŁ„ŁˆŲ±Ų¢Ų²Ł…Ų§'),
(91461, 75982, 'no_lang_code', 'name', 'Bloorazma (Iran)'),
(91462, 75983, 'en', 'name', 'Whole Health Institute'),
(91463, 75984, 'no_lang_code', 'name', 'ACS Dobfar (Italy)'),
(91464, 75985, 'en', 'name', 'FIRST Robotics Canada'),
(91465, 75986, 'no_lang_code', 'name', 'Atotech (Germany)'),
(91466, 75987, 'no_lang_code', 'name', 'Envitec Biogas (Germany)'),
(91467, 75988, 'it', 'name', 'Ordine Ospedaliero di San Giovanni di Dio Fatebenefratelli'),
(91468, 75989, 'no_lang_code', 'name', 'Rubius Therapeutics (United States)'),
(91469, 75990, 'en', 'name', 'Centro Pipistrelli Sardegna'),
(91470, 75991, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ćƒ»ćƒ‡ć‚£ćƒ¼ćƒ»ć‚Øć‚¹ ćƒć‚¤ć‚Ŗćƒ†ćƒƒć‚Æ'),
(91471, 75991, 'no_lang_code', 'name', 'SDS Biotech (Japan)'),
(91472, 75992, 'no_lang_code', 'name', 'Stiftung Liebenau (Germany)'),
(91473, 75993, 'no_lang_code', 'name', 'Natreon (United States)'),
(91474, 75994, 'no_lang_code', 'name', 'Pigeon (Japan)'),
(91475, 75995, 'no_lang_code', 'name', 'The Scatter Works (United States)'),
(91476, 75996, 'no_lang_code', 'name', 'Recovery Record (United States)'),
(91477, 75997, 'en', 'name', 'Qualitative Data Repository'),
(91478, 75998, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ аграрных навук'),
(91479, 75998, 'en', 'name', 'Department of Agrarian Sciences'),
(91480, 75999, 'no_lang_code', 'name', 'OVO (Indonesia)'),
(91481, 76000, 'no_lang_code', 'name', 'DenMat (United States)'),
(91482, 76001, 'de', 'name', 'Institut für Bildung und Kultur'),
(91483, 76001, 'en', 'name', 'Institute for Education and Culture'),
(91484, 76002, 'no_lang_code', 'name', 'Observatory and Planetarium of PreŔov'),
(91485, 76003, 'no_lang_code', 'name', 'Catalyst Chemical Industries (India)'),
(91486, 76004, 'no_lang_code', 'name', 'Dyckerhoff (Germany)'),
(91487, 76005, 'en', 'name', 'Islamic Azad University Rasht Branch'),
(91488, 76005, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد Ų±Ų“ŲŖā€Ž'),
(91489, 76006, 'fr', 'name', 'Centre Hospitalier Avranches Granville, Le centre hospitalier Avranches Granville'),
(91490, 76007, 'en', 'name', 'Foundation for Environment and Economic Development Services'),
(91491, 76008, 'no_lang_code', 'name', 'Locate Bio (United Kingdom)'),
(91492, 76009, 'no_lang_code', 'name', 'Institut für Stahlbau Leipzig (Germany)'),
(91493, 76010, 'ja', 'name', 'ćˆ±ć‚¢ćƒŸćƒŽć‚¢ćƒƒćƒ—'),
(91494, 76010, 'no_lang_code', 'name', 'Amino Up (Japan)'),
(91495, 76011, 'de', 'name', 'Landesinstitut für Arbeitsgestaltung des Landes Nordrhein-Westfalen'),
(91496, 76012, 'ja', 'name', 'äøŠé‡Žč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(91497, 76012, 'no_lang_code', 'name', 'Ueno Fine Chemicals Industry (Japan)'),
(91498, 76013, 'en', 'name', 'Network for Computational Modeling in the Social and Ecological Sciences'),
(91499, 76014, 'no_lang_code', 'name', 'Dilon Technologies (United States)'),
(91500, 76015, 'no_lang_code', 'name', 'TCI Peptide Therapeutics (United States)'),
(91501, 76016, 'de', 'name', 'Forschungsgemeinschaft für elektrische Anlagen und Stromwirtschaft'),
(91502, 76017, 'en', 'name', 'North Dakota Game and Fish Department'),
(91503, 76018, 'en', 'name', 'Agricultural Bank of China'),
(91504, 76019, 'en', 'name', 'Kochi Agricultural Technology Center'),
(91505, 76019, 'ja', 'name', 'é«˜ēŸ„ēœŒč¾²ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(91506, 76020, 'no_lang_code', 'name', 'Vital Art and Science (United States)'),
(91507, 76021, 'no_lang_code', 'name', 'Auchem (Slovakia)'),
(91508, 76022, 'no_lang_code', 'name', 'Power+Energy (United States)'),
(91509, 76023, 'en', 'name', 'James Family Prescott YMCA'),
(91510, 76024, 'no_lang_code', 'name', 'Nima (United States)'),
(91511, 76025, 'sk', 'name', 'SlovenskƩ PlanetƔriƔ'),
(91512, 76026, 'no_lang_code', 'name', 'T2C-Energy (United States)'),
(91513, 76027, 'ar', 'name', 'المعهد Ų§Ł„Ł‚ŁˆŁ…ŁŠ للجهاز Ų§Ł„Ų­Ų±ŁƒŁŠ Ų§Ł„Ų¹ŲµŲØŁŠ'),
(91514, 76027, 'en', 'name', 'The National Institute of Neuromotor System'),
(91515, 76028, 'en', 'name', 'Kerala Livestock Development Board'),
(91516, 76028, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“•ą“Øąµą“Øąµą“•ą“¾ą“²ą“æ ą“µą“æą“•ą“øą“Ø ą“¬ąµ‡ą“¾ąµ¼ą“”ąµ'),
(91517, 76029, 'no_lang_code', 'name', 'Bonesupport (Sweden)'),
(91518, 76030, 'no_lang_code', 'name', 'Wave Life Sciences (United States)'),
(91519, 76031, 'en', 'name', 'Communications Technology Laboratory'),
(91520, 76032, 'en', 'name', 'Biosciences Research Support Foundation'),
(91521, 76033, 'no_lang_code', 'name', 'Grosskraftwerk Mannheim (Germany)'),
(91522, 76034, 'no_lang_code', 'name', 'Kanto Chemical (Japan)'),
(91523, 76035, 'en', 'name', 'Beijing Chang''an Integrated Traditional Chinese and Western Medicine Hospital'),
(91524, 76035, 'zh', 'name', 'åŒ—äŗ¬é•æå®‰äø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(91525, 76036, 'no_lang_code', 'name', 'PhotoniCare (United States)'),
(91526, 76037, 'en', 'name', 'Chief Scientist Office'),
(91527, 76038, 'en', 'name', 'University of Gonabad'),
(91528, 76038, 'fa', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŁŠ گناباد'),
(91529, 76039, 'no_lang_code', 'name', 'Calibrium (Slovakia)'),
(91530, 76040, 'no_lang_code', 'name', 'One-Cycle Control (United States)'),
(91531, 76041, 'no_lang_code', 'name', 'Proteus (New Zealand)'),
(91532, 76042, 'en', 'name', 'State Public Scientific Technological Library of Siberian Branch of Russian Academy of Sciences'),
(91533, 76042, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠæŃƒŠ±Š»ŠøŃ‡Š½Š°Ń Š½Š°ŃƒŃ‡Š½Š¾-Ń‚ŠµŃ…Š½ŠøŃ‡ŠµŃŠŗŠ°Ń библиотека Š”Šž Š ŠŠ'),
(91534, 76043, 'ja', 'name', 'å ŗåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(91535, 76043, 'no_lang_code', 'name', 'Sakai Chemical Industry (Japan)'),
(91536, 76044, 'no_lang_code', 'name', 'Geocomplex (Slovakia)'),
(91537, 76045, 'no_lang_code', 'name', 'Zymeworks (Canada)'),
(91538, 76046, 'en', 'name', 'Lusaka Apex Medical University'),
(91539, 76047, 'ar', 'name', 'ؓركة أبوظبي للخدمات Ų§Ł„ŲµŲ­ŁŠŲ© - ŲµŲ­Ų©'),
(91540, 76047, 'no_lang_code', 'name', 'Abu Dhabi Health Services'),
(91541, 76048, 'en', 'name', 'Humber Teaching NHS Foundation Trust'),
(91542, 76049, 'no_lang_code', 'name', 'Phoenix Integration (United States)'),
(91543, 76050, 'no_lang_code', 'name', 'Wittenstein (Germany)'),
(91544, 76051, 'en', 'name', 'National Confidential Enquiry into Patient Outcome and Death'),
(91545, 76052, 'no_lang_code', 'name', 'Biota Institut für ökologische Forschung und Planung (Germany)'),
(91546, 76053, 'en', 'name', 'Kumamoto Prefectural College of Technology'),
(91547, 76053, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹ęŠ€č”“ēŸ­ęœŸå¤§å­¦ę ”'),
(91548, 76054, 'no_lang_code', 'name', 'Particle Beam Lasers (United States)'),
(91549, 76055, 'no_lang_code', 'name', 'Achieve Life Sciences (United States)'),
(91550, 76056, 'no_lang_code', 'name', 'WiTricity (United States)'),
(91551, 76057, 'en', 'name', 'Physical Measurement Laboratory'),
(91552, 76058, 'no_lang_code', 'name', 'Cognetix (India)'),
(91553, 76059, 'no_lang_code', 'name', 'Kvant (Slovakia)'),
(91554, 76060, 'en', 'name', 'Institute of Scientific and Technical Information'),
(91555, 76061, 'no_lang_code', 'name', 'Genetic Signatures (Australia)'),
(91556, 76062, 'no_lang_code', 'name', 'Exploramed (United States)'),
(91557, 76063, 'no_lang_code', 'name', 'Engineering Software Steyr (Austria)'),
(91558, 76064, 'en', 'name', 'Foundation for Finnish Inventions'),
(91559, 76064, 'fi', 'name', 'KeksintƶsƤƤtiƶ'),
(91560, 76065, 'en', 'name', 'Hong Kong Institute of Contemporary Culture'),
(91561, 76065, 'zh', 'name', 'é¦™ęøÆē•¶ä»£ę–‡åŒ–äø­åæƒę–¼'),
(91562, 76066, 'no_lang_code', 'name', 'New England Biolabs (United Kingdom)'),
(91563, 76067, 'no_lang_code', 'name', 'Insiders Technologies (Germany)'),
(91564, 76068, 'en', 'name', 'Advanced Systems Laboratory'),
(91565, 76068, 'hi', 'name', 'ą¤‰ą¤Øą„ą¤Øą¤¤ ą¤Ŗą„ą¤°ą¤£ą¤¾ą¤²ą„€ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(91566, 76069, 'en', 'name', 'Sunshine Coast University Hospital'),
(91567, 76070, 'en', 'name', 'Baylor Scott & White Medical Center - Temple'),
(91568, 76071, 'no_lang_code', 'name', 'Jiangsu T-mab BioPharma (China)'),
(91569, 76071, 'zh', 'name', 'ę±Ÿč‹ę³°åŗ·ē”Ÿē‰©åŒ»čÆęœ‰é™å…¬åøåˆ›'),
(91570, 76072, 'pt', 'name', 'Instituto Biopesca'),
(91571, 76073, 'ar', 'name', 'Ų§Ł„Ų“ŲØŁƒŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„Ų·ŁŁˆŁ„Ų© Ų§Ł„Ł…ŲØŁƒŲ±Ų©'),
(91572, 76073, 'en', 'name', 'Arab Network for Early Childhood Development'),
(91573, 76074, 'en', 'name', 'Kutaisi International University'),
(91574, 76074, 'ka', 'name', 'įƒ„įƒ£įƒ—įƒįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ”įƒ įƒ—įƒįƒØįƒįƒ įƒ˜įƒ”įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(91575, 76075, 'no_lang_code', 'name', 'Modumetal (United States)'),
(91576, 76076, 'en', 'name', 'Mercator Institute for China Studies'),
(91577, 76077, 'en', 'name', 'Turkish Academic Network and Information Center'),
(91578, 76077, 'tr', 'name', 'Ulusal Akademik Ağ ve Bilgi Merkezi'),
(91579, 76078, 'en', 'name', 'Naval Physical & Oceanographic Laboratory'),
(91580, 76079, 'no_lang_code', 'name', 'Spectrum Coatings (United States)'),
(91581, 76080, 'no_lang_code', 'name', 'ExxonMobil (Germany)'),
(91582, 76081, 'no_lang_code', 'name', 'ProActive Memory Services (United States)'),
(91583, 76082, 'no_lang_code', 'name', 'Riso (Slovakia)'),
(91584, 76083, 'no_lang_code', 'name', 'CNH Industrial (Netherlands)'),
(91585, 76084, 'no_lang_code', 'name', 'Thermo Solar (Slovakia)'),
(91586, 76085, 'no_lang_code', 'name', 'Kisters (Germany)'),
(91587, 76086, 'en', 'name', 'Stockholm Environment Institute'),
(91588, 76087, 'no_lang_code', 'name', 'Alanod (Germany)'),
(91589, 76088, 'no_lang_code', 'name', 'Lohmann & Rauscher (Germany)'),
(91590, 76089, 'en', 'name', 'Harcourt Butler Technical University'),
(91591, 76089, 'hi', 'name', 'ą¤¹ą¤°ą¤•ą„‹ą¤°ą„ą¤Ÿ बटलर ą¤Ÿą„‡ą¤•ą„ą¤Øą¤æą¤•ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(91592, 76090, 'en', 'name', 'Tochigi Prefectural Police'),
(91593, 76090, 'ja', 'name', '栃木県警察'),
(91594, 76091, 'en', 'name', 'InterAmerican Network of Academies of Sciences'),
(91595, 76092, 'en', 'name', 'Aachen Institute for Nuclear Training'),
(91596, 76093, 'no_lang_code', 'name', 'Deutsche Messe (Germany)'),
(91597, 76094, 'en', 'name', 'Ryugasaki City Museum of History and Folklore'),
(91598, 76094, 'ja', 'name', 'é¾ć‚±å“Žåø‚ę­“å²ę°‘äæ—č³‡ę–™é¤Ø'),
(91599, 76095, 'no_lang_code', 'name', 'Skeletal Dynamics (United States)'),
(91600, 76096, 'en', 'name', 'Forest Ecosystem Monitoring Cooperative'),
(91601, 76097, 'de', 'name', 'Nestor Bildungsinstitut'),
(91602, 76098, 'no_lang_code', 'name', 'K8 Institute of Strategic Aesthetics (Germany)'),
(91603, 76099, 'no_lang_code', 'name', 'Therapeutic Vision (United States)'),
(91604, 76100, 'en', 'name', 'Directorate of Cashew Research'),
(91605, 76100, 'hi', 'name', 'ą¤•ą¤¾ą¤œą„‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(91606, 76101, 'no_lang_code', 'name', 'Klox Technologies (Canada)'),
(91607, 76102, 'en', 'name', 'Atlas of Living Australia'),
(91608, 76103, 'fr', 'name', 'Ɖcole de Formation aux CarriĆØres de SantĆ©'),
(91609, 76104, 'en', 'name', 'Centre for Research and Information on Substance Abuse'),
(91610, 76105, 'en', 'name', 'Beijing Emergency Medical Center'),
(91611, 76105, 'zh', 'name', 'åŒ—äŗ¬ę€„ę•‘äø­åæƒ'),
(91612, 76106, 'no_lang_code', 'name', 'Swift Solar (United States)'),
(91613, 76107, 'no_lang_code', 'name', 'Vibration and Shock Technologies (United States)'),
(91614, 76108, 'no_lang_code', 'name', 'Schunk Carbon Technology (Germany)'),
(91615, 76109, 'no_lang_code', 'name', 'Sofar Acoustics (United States)'),
(91616, 76110, 'en', 'name', 'Hubei Provincial Center for Disease Control and Prevention'),
(91617, 76110, 'zh', 'name', 'ę¹–åŒ—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(91618, 76111, 'fr', 'name', 'IRT M2P, Instituts de Recherche Technologique'),
(91619, 76112, 'en', 'name', 'Jundi-Shapur University of Technology'),
(91620, 76112, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų¬Ł†ŲÆŪŒ ؓاپور ŲÆŲ²ŁŁˆŁ„'),
(91621, 76113, 'no_lang_code', 'name', 'Duoject Medical Systems (Canada)'),
(91622, 76114, 'en', 'name', 'East Suffolk and North Essex NHS Foundation Trust'),
(91623, 76115, 'no_lang_code', 'name', 'Aerogen (Ireland)'),
(91624, 76116, 'no_lang_code', 'name', 'Nuvaira (United States)'),
(91625, 76117, 'no_lang_code', 'name', 'Mardil (United States)'),
(91626, 76118, 'no_lang_code', 'name', 'Vattenfall (United Kingdom)'),
(91627, 76119, 'en', 'name', 'Algebra University College'),
(91628, 76119, 'hr', 'name', 'Visoko učiliŔte Algebra'),
(91629, 76120, 'no_lang_code', 'name', 'HEC Pharm (China)'),
(91630, 76121, 'fr', 'name', 'Château de Montsoreau Museum of Contemporary Art'),
(91631, 76122, 'no_lang_code', 'name', 'Boly Media Communications (United States)'),
(91632, 76123, 'en', 'name', 'Suriname Indigenous Health Fund'),
(91633, 76124, 'no_lang_code', 'name', 'SpineVision (France)'),
(91634, 76125, 'no_lang_code', 'name', 'Valagro (India)'),
(91635, 76126, 'no_lang_code', 'name', 'Phase IV (United States)'),
(91636, 76127, 'en', 'name', 'State Scientific and Technical Library of Ukraine'),
(91637, 76127, 'uk', 'name', 'Державна науково-технічна бібліотека України'),
(91638, 76128, 'de', 'name', 'Hamburger Institut für Berufliche Bildung'),
(91639, 76128, 'en', 'name', 'Hamburg Institute for Vocational Education and Training'),
(91640, 76129, 'en', 'name', 'Hubei 672 Orthopedics Hospital of Traditional Chinese Medicine and Western Medicine'),
(91641, 76129, 'zh', 'name', 'ę¹–åŒ—å…­äøƒäŗŒäø­č„æåŒ»ē»“åˆéŖØē§‘åŒ»é™¢'),
(91642, 76130, 'no_lang_code', 'name', 'Lundin Mining (Canada)'),
(91643, 76131, 'en', 'name', 'Rongo University'),
(91644, 76132, 'no_lang_code', 'name', 'Opti-Logic (United States)'),
(91645, 76133, 'en', 'name', 'Children''s Play School Citizen Stage'),
(91646, 76133, 'ja', 'name', 'é‡§č·Æåø‚ć“ć©ć‚‚éŠå­¦é¤Ø'),
(91647, 76134, 'fr', 'name', 'Service Volontaire International'),
(91648, 76135, 'no_lang_code', 'name', 'Solvis (Germany)'),
(91649, 76136, 'en', 'name', 'Government Logistics Department'),
(91650, 76136, 'zh', 'name', 'ę”æåŗœē‰©ęµęœå‹™ē½²'),
(91651, 76137, 'no_lang_code', 'name', 'Bien-Air Medical Technologies (Switzerland)'),
(91652, 76138, 'no_lang_code', 'name', 'ConsenSys (United States)'),
(91653, 76139, 'fa', 'name', 'ŁŲ±ŁˆŲ“ŚÆŲ§Ł‡ Ł‡Ų§ŪŒ Ų²Ł†Ų¬ŪŒŲ±Ł‡ ای افق کوروؓ'),
(91654, 76139, 'no_lang_code', 'name', 'Ofogh Koorosh Chain Stores'),
(91655, 76140, 'no_lang_code', 'name', 'Apex (Taiwan)'),
(91656, 76141, 'en', 'name', 'Hakodate Clinical Welfare College'),
(91657, 76141, 'ja', 'name', 'å‡½é¤Øč‡ØåŗŠē¦ē„‰å°‚é–€å­¦ę ”'),
(91658, 76142, 'en', 'name', 'Institute of Traditional Japanese Architecture'),
(91659, 76142, 'ja', 'name', 'ę—„ęœ¬å»ŗēÆ‰å°‚é–€å­¦ę ”'),
(91660, 76143, 'en', 'name', 'American Action Forum'),
(91661, 76144, 'no_lang_code', 'name', 'Castellini (Italy)'),
(91662, 76145, 'no_lang_code', 'name', 'IDS (Germany)'),
(91663, 76146, 'no_lang_code', 'name', 'PEEL Therapeutics (United States)'),
(91664, 76147, 'en', 'name', 'Mahendra Institute of Management and Technical Studies'),
(91665, 76147, 'or', 'name', 'ą¬®ą¬¹ą­‡ą¬Øą­ą¬¦ą­ą¬° ą¬‡ą¬Øą¬·ą­ą¬Ÿą¬æą¬šą­ą­Ÿą­ą¬Ÿą­ ą¬…ą¬«ą­ ą¬®ą­ą­Ÿą¬¾ą¬Øą­‡ą¬œą¬®ą­‡ą¬£ą­ą¬Ÿ ą¬†ą¬£ą­ą¬” ą¬Ÿą­‡ą¬•ą­ą¬Øą¬æą¬•ą¬¾ą¬² ą¬·ą­ą¬Ÿą¬”ą¬æą¬ø (ą¬®ą¬æą¬®ą­ā€Œą¬Ÿą­ą¬ø)'),
(91666, 76148, 'no_lang_code', 'name', 'Xellia (Denmark)'),
(91667, 76149, 'no_lang_code', 'name', 'Simetri (United States)'),
(91668, 76150, 'en', 'name', 'Islamic Azad University, Zahedan Branch'),
(91669, 76150, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد زاهدان'),
(91670, 76151, 'en', 'name', 'Sumitomo Mitsui Banking Corporation'),
(91671, 76151, 'ja', 'name', 'äø‰äŗ•ä½å‹éŠ€č”Œ'),
(91672, 76152, 'no_lang_code', 'name', 'Balipara Foundation'),
(91673, 76153, 'en', 'name', 'Biotechnology and Pharmaceutical Industries Promotion Office'),
(91674, 76153, 'zh', 'name', 'ē¶“ęæŸéƒØē”ŸęŠ€é†«č—„ē”¢ę„­ē™¼å±•ęŽØå‹•å°ēµ„'),
(91675, 76154, 'en', 'name', 'Rama Devi Women''s University'),
(91676, 76154, 'or', 'name', 'ରମା ଦେବୀ ମହିଳା ą¬¬ą¬æą¬¶ą­ą¬µ ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(91677, 76155, 'no_lang_code', 'name', 'Knowledge Raven Management (Germany)'),
(91678, 76156, 'no_lang_code', 'name', 'Amazentis (Switzerland)'),
(91679, 76157, 'no_lang_code', 'name', 'Allogene Therapeutics (United States)'),
(91680, 76158, 'no_lang_code', 'name', 'Wizbe Innovations (United States)'),
(91681, 76159, 'no_lang_code', 'name', 'Suguna Holdings (India)'),
(91682, 76160, 'no_lang_code', 'name', 'Chanel (United Kingdom)'),
(91683, 76161, 'no_lang_code', 'name', 'SinoMaps Press'),
(91684, 76161, 'zh', 'name', 'äø­å›½åœ°å›¾å‡ŗē‰ˆē¤¾'),
(91685, 76162, 'de', 'name', 'BilSE - Institut für Bildung und Forschung'),
(91686, 76163, 'en', 'name', 'Homi Bhabha Centre for Science Education'),
(91687, 76163, 'hi', 'name', 'ą¤¹ą„‹ą¤®ą„€ भाभा ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°, ą¤Ÿą„€.ą¤†ą¤ˆ.ą¤ą¤«.आर'),
(91688, 76164, 'no_lang_code', 'name', '13Therapeutics (United States)'),
(91689, 76165, 'no_lang_code', 'name', 'ATS Sardegna (Italy)'),
(91690, 76166, 'de', 'name', 'Deutsche Angestellten-Akademie'),
(91691, 76167, 'no_lang_code', 'name', 'MSSCORPS (Taiwan)'),
(91692, 76168, 'en', 'name', 'Transportation Safety Institute'),
(91693, 76169, 'no_lang_code', 'name', 'Gynesonics (United States)'),
(91694, 76170, 'no_lang_code', 'name', 'Medipan (Germany)'),
(91695, 76171, 'no_lang_code', 'name', 'Silverside Detectors (United States)'),
(91696, 76172, 'de', 'name', 'Beratungs und Schulungsinstitut für Tierschutz bei Transport und Schlachtung'),
(91697, 76173, 'en', 'name', 'Academy of Law Management of the Federal Penal Service of Russia'),
(91698, 76173, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ права Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Š¤Š”Š˜Š'),
(91699, 76174, 'en', 'name', 'Institute of History and Philology, Academia Sinica'),
(91700, 76174, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ę­·å²čŖžčØ€ē ”ē©¶ę‰€ē ”ē©¶å¤§ęØ“ęŖ”ę”ˆé¤Ø'),
(91701, 76175, 'no_lang_code', 'name', 'Newtec Services Group (United States)'),
(91702, 76176, 'no_lang_code', 'name', 'Strabag (Germany)'),
(91703, 76177, 'no_lang_code', 'name', 'Venable Instruments (United States)'),
(91704, 76178, 'no', 'name', 'Biofokus'),
(91705, 76179, 'de', 'name', 'Thüringer Institut für Akademische Weiterbildung'),
(91706, 76180, 'no_lang_code', 'name', 'S&K Aerospace (United States)'),
(91707, 76181, 'en', 'name', 'W. G. (Bill) Hefner VA Medical Center'),
(91708, 76182, 'en', 'name', 'Rotunda – The Center for Human Reproduction'),
(91709, 76183, 'en', 'name', 'Hebei Rehabilitation Hospital'),
(91710, 76183, 'ja', 'name', 'ę²³åŒ—ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(91711, 76184, 'de', 'name', 'Institut für Wasser und Boden Dr. Uhlmann'),
(91712, 76185, 'en', 'name', 'PROCURE'),
(91713, 76186, 'en', 'name', 'Gallup Korea'),
(91714, 76187, 'en', 'name', 'University College of Azarabadegan'),
(91715, 76187, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ آذرآبادگان'),
(91716, 76188, 'en', 'name', 'Directorate of Poultry Research'),
(91717, 76188, 'te', 'name', 'ą°ą°øą°æą°Žą°†ą°°ą±-ą°”ą±†ą±–ą°°ą±†ą°•ą±ą°Ÿą°°ą±‡ą°Ÿą± ą°Ŗą±Œą°²ą±ą°Ÿą±ą°°ą±€ ą°°ą±€ą°øą±†ą°°ą±ą°šą±'),
(91718, 76189, 'en', 'name', 'Kinki Polytechnic College'),
(91719, 76189, 'ja', 'name', 'čæ‘ē•æćƒćƒŖćƒ†ć‚Æć‚«ćƒ¬ćƒƒć‚ø'),
(91720, 76190, 'de', 'name', 'Kleine Private Lehrinstitut Derksen'),
(91721, 76191, 'no_lang_code', 'name', 'Regio (Germany)'),
(91722, 76192, 'en', 'name', 'Heilongjiang Coldland Building Science Research Institute'),
(91723, 76192, 'zh', 'name', 'é»‘é¾™ę±ŸēœåÆ’åœ°å»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢'),
(91724, 76193, 'en', 'name', 'Tongliao Academy of Agricultural Sciences'),
(91725, 76193, 'zh', 'name', 'é€šč¾½åø‚å†œäøšē§‘å­¦ē ”ē©¶é™¢'),
(91726, 76194, 'en', 'name', 'Krishi Vigyan Kendra, Ghatkhed Amravati'),
(91727, 76195, 'no_lang_code', 'name', 'STC Biologics (United States)'),
(91728, 76196, 'no_lang_code', 'name', 'Powertech Technology (Taiwan)'),
(91729, 76196, 'zh', 'name', 'åŠ›ęˆē§‘ęŠ€'),
(91730, 76197, 'it', 'name', 'ASP CittĆ  di Bologna'),
(91731, 76198, 'en', 'name', 'Tana High-Level Forum on Security in Africa'),
(91732, 76199, 'no_lang_code', 'name', 'Scribe Biosciences (United States)'),
(91733, 76200, 'no_lang_code', 'name', 'Raumedic (Germany)'),
(91734, 76201, 'no_lang_code', 'name', 'GF Biochemicals (Italy)'),
(91735, 76202, 'no_lang_code', 'name', 'Qiagen (Spain)'),
(91736, 76203, 'de', 'name', 'Forschungsstelle für Energiewirtschaft'),
(91737, 76203, 'en', 'name', 'Research Center for Energy Economics'),
(91738, 76204, 'en', 'name', 'Pakistan Scientific and Technological Information Centre'),
(91739, 76204, 'ur', 'name', 'پاکستان Ų³Ų§Ų¦Ł†Ų³ŪŒ اور ŲŖŚ©Ł†ŪŒŚ©ŪŒ Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ مرکز'),
(91740, 76205, 'no_lang_code', 'name', 'Haleakala Research and Development (United States)'),
(91741, 76206, 'en', 'name', 'Liverpool Medical Institution'),
(91742, 76207, 'en', 'name', 'Unlimited Potential'),
(91743, 76208, 'en', 'name', 'Southern Regional Research Center'),
(91744, 76209, 'de', 'name', 'Bayerischer Rundfunk'),
(91745, 76209, 'en', 'name', 'Bavarian Broadcasting'),
(91746, 76210, 'en', 'name', 'State Forest Research Institute'),
(91747, 76211, 'en', 'name', 'Adani Institute of Infrastructure Engineering'),
(91748, 76211, 'gu', 'name', 'અદાણી ąŖ‡ąŖØą«ąŖøą«ąŖŸąŖæąŖŸą«ąŖÆą«‚ąŖŸ ąŖ“ąŖ« ąŖˆąŖØą«ąŖ«ą«ąŖ°ąŖ¾ąŖøą«ąŖŸą«ąŖ°ąŖ•ą«ąŖšąŖ° ąŖąŖØą«ąŖœąŖæąŖØąŖæąŖÆąŖ°ąŖæąŖ‚ąŖ—'),
(91749, 76212, 'no_lang_code', 'name', 'PKG (United States)'),
(91750, 76213, 'no_lang_code', 'name', 'Auven Therapeutics (United States)'),
(91751, 76214, 'en', 'name', 'Initiative Prospective Agricole et Rurale'),
(91752, 76215, 'no_lang_code', 'name', 'Xenstats (Poland)'),
(91753, 76216, 'en', 'name', 'Jean Mayer Human Nutrition Research Center on Aging'),
(91754, 76217, 'no_lang_code', 'name', 'Viz-Tek (United States)'),
(91755, 76218, 'de', 'name', 'Technologiezentrum Halbleitermaterialien'),
(91756, 76219, 'es', 'name', 'Centro Jambatu de Investigación y Conservación de Anfibios'),
(91757, 76220, 'en', 'name', 'Bath VA Medical Center'),
(91758, 76221, 'no_lang_code', 'name', 'Enzo Life Sciences (United States)'),
(91759, 76222, 'en', 'name', 'Africa Centres for Disease Control and Prevention'),
(91760, 76223, 'en', 'name', 'National Research Centre for Integrated Pest Management'),
(91761, 76223, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„‡ą¤•ą¤æą¤¤ ą¤Øą¤¾ą¤¶ą„€ą¤œą„€ą¤µ ą¤Ŗą„ą¤°ą¤¬ą¤Øą„ą¤§ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(91762, 76224, 'no_lang_code', 'name', 'DUKSAN Neolux (South Korea)'),
(91763, 76225, 'no_lang_code', 'name', 'Fachverband GebƤude-Klima (Germany)'),
(91764, 76226, 'no_lang_code', 'name', 'Enteris Biopharma (United States)'),
(91765, 76227, 'no_lang_code', 'name', 'Neuraxpharm (Spain)'),
(91766, 76228, 'no_lang_code', 'name', 'Besins Healthcare (Thailand)'),
(91767, 76229, 'no_lang_code', 'name', 'VitreaLab (Austria)'),
(91768, 76230, 'fr', 'name', 'Centre Autonome d''Etudes et de Renforcement des capacitƩs pour le DƩveloppement au Togo'),
(91769, 76231, 'en', 'name', 'Federal Reserve Bank of Boston'),
(91770, 76232, 'en', 'name', 'Scholarly Publishing and Academic Resources Coalition'),
(91771, 76233, 'en', 'name', 'National Institute of Pharmaceutical Education and Research'),
(91772, 76234, 'en', 'name', 'Iora Ecological Solutions'),
(91773, 76235, 'no_lang_code', 'name', 'Tactical Edge (United States)'),
(91774, 76236, 'no_lang_code', 'name', 'Technologiezentrum Dresden (Germany)'),
(91775, 76237, 'ar', 'name', 'Ų§Ł„ŲÆŁŠŁˆŲ§Ł† Ų§Ł„Ų£Ł…ŁŠŲ±ŁŠ'),
(91776, 76237, 'no_lang_code', 'name', 'Amiri Diwan'),
(91777, 76238, 'en', 'name', 'VA Hudson Valley Health Care System'),
(91778, 76239, 'no_lang_code', 'name', 'Shanghai Aerospace Automobile Electromechanical (China)'),
(91779, 76239, 'zh', 'name', 'äøŠęµ·čˆŖå¤©ę±½č½¦ęœŗē”µč‚”ä»½ęœ‰é™å…¬åø'),
(91780, 76240, 'fr', 'name', 'Nature Environnement 17'),
(91781, 76241, 'es', 'name', 'Fundación A LA PAR'),
(91782, 76242, 'no_lang_code', 'name', 'Autodesk (United Kingdom)'),
(91783, 76243, 'en', 'name', 'VA Central Western Massachusetts Healthcare System'),
(91784, 76244, 'en', 'name', 'Croatian National Bank'),
(91785, 76244, 'hr', 'name', 'Hrvatska Narodna Banka'),
(91786, 76245, 'en', 'name', 'Dr Jenner''s House, Museum and Garden'),
(91787, 76246, 'en', 'name', 'Mid-Atlantic Transportation Sustainability Center'),
(91788, 76247, 'en', 'name', 'Gujarat Science City'),
(91789, 76248, 'no_lang_code', 'name', 'Kistler (United Kingdom)'),
(91790, 76249, 'no_lang_code', 'name', 'Vantage Health Solutions (Myanmar)'),
(91791, 76250, 'en', 'name', 'Velleja Research'),
(91792, 76251, 'ja', 'name', 'ćƒ¢ćƒ”ćƒ³ćƒ†ć‚£ćƒ–ćƒ»ćƒ‘ćƒ•ć‚©ćƒ¼ćƒžćƒ³ć‚¹ćƒ»ćƒžćƒ†ćƒŖć‚¢ćƒ«ć‚ŗćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(91793, 76251, 'no_lang_code', 'name', 'Momentive (Japan)'),
(91794, 76252, 'no_lang_code', 'name', 'NeoMatrix Therapeutics (United States)'),
(91795, 76253, 'en', 'name', 'Shanghai Stock Exchange'),
(91796, 76253, 'zh', 'name', 'äøŠęµ·čÆåˆøäŗ¤ę˜“ę‰€'),
(91797, 76254, 'no_lang_code', 'name', 'Inari Agriculture (United States)'),
(91798, 76255, 'en', 'name', 'Second People Hospital of Hunan'),
(91799, 76255, 'zh', 'name', 'ę¹–å—ēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(91800, 76256, 'no_lang_code', 'name', 'Enercity (Germany)'),
(91801, 76257, 'en', 'name', 'Centre for Humanitarian Dialogue'),
(91802, 76258, 'en', 'name', 'UK Astronomy Technology Centre'),
(91803, 76259, 'no_lang_code', 'name', 'Zensun (China)'),
(91804, 76260, 'de', 'name', 'Institut für berufliche Bildung, Arbeitsmarkt- und Sozialpolitik'),
(91805, 76260, 'no_lang_code', 'name', 'Institute for Vocational Education, Labor Market and Social Policy (Germany)'),
(91806, 76261, 'no_lang_code', 'name', 'Renova Therapeutics (United States)'),
(91807, 76262, 'en', 'name', 'MiMER Centre'),
(91808, 76263, 'no_lang_code', 'name', 'Venator Solutions (United States)'),
(91809, 76264, 'de', 'name', 'Landesbetrieb für Küstenschutz, Nationalpark und Meeresschutz Schleswig-Holstein'),
(91810, 76265, 'no_lang_code', 'name', 'BMW (United Kingdom)'),
(91811, 76266, 'en', 'name', 'Yango University'),
(91812, 76266, 'zh', 'name', '阳光学院'),
(91813, 76267, 'no_lang_code', 'name', 'Astro- und Feinwerktechnik Adlershof (Germany)'),
(91814, 76268, 'en', 'name', 'Henan Nonferrous Metals Geological Exploration Institute'),
(91815, 76268, 'zh', 'name', 'ę²³å—ēœęœ‰č‰²é‡‘å±žåœ°č“Øå‹˜ęŸ„ę€»é™¢'),
(91816, 76269, 'no_lang_code', 'name', 'Phelix Therapeutics (United States)'),
(91817, 76270, 'en', 'name', 'The Institution of Environmental Sciences'),
(91818, 76271, 'en', 'name', 'Jazeera University'),
(91819, 76272, 'en', 'name', 'Wuhan Prevention and Treatment Center for Occupational Diseases'),
(91820, 76272, 'zh', 'name', 'ę­¦ę±‰åø‚čŒäøšē—…é˜²ę²»é™¢'),
(91821, 76273, 'de', 'name', 'Institut für Frauengesundheit'),
(91822, 76274, 'en', 'name', 'The Browns'' School'),
(91823, 76275, 'no_lang_code', 'name', 'Visca (United States)'),
(91824, 76276, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚æć‚«ć‚¾ćƒŽ'),
(91825, 76276, 'no_lang_code', 'name', 'Takazono (Japan)'),
(91826, 76277, 'no_lang_code', 'name', 'CJSC Ekran FEP (Russia)'),
(91827, 76277, 'ru', 'name', 'Š—ŠŠž Экран ФЭП'),
(91828, 76278, 'no_lang_code', 'name', 'Nogra Pharma (Ireland)'),
(91829, 76279, 'no_lang_code', 'name', 'Venus Concept (Canada)'),
(91830, 76280, 'en', 'name', 'Gifu Academy of Forest Science and Culture'),
(91831, 76280, 'ja', 'name', 'å²é˜œēœŒē«‹ę£®ęž—ę–‡åŒ–ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(91832, 76281, 'pt', 'name', 'Governo do Estado de ParaĆ­ba'),
(91833, 76282, 'en', 'name', 'EAT'),
(91834, 76283, 'de', 'name', 'Institut für Sozialforschung und Sozialplanung'),
(91835, 76284, 'no_lang_code', 'name', 'Vacuum Process Engineering (United States)'),
(91836, 76285, 'en', 'name', 'China Productivity Center'),
(91837, 76286, 'en', 'name', 'Kyoto College of Economics'),
(91838, 76286, 'ja', 'name', '京都経済短期大学'),
(91839, 76287, 'en', 'name', 'National Federation of Cooperative Sugar Factories'),
(91840, 76287, 'hi', 'name', 'ą¤•ą¤‚ą¤Ŗą¤Øą„€ ą¤•ą„‡ ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤«ą„‡ą¤”ą¤°ą„‡ą¤¶ą¤Ø - ą¤øą„‡ą¤¶ą¤Ø ą¤¶ą„ą¤—ą¤° ą¤«ą„ˆą¤•ą„ą¤Ÿą„ą¤°ą„€ą¤œ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(91841, 76288, 'de', 'name', 'Primed Halberstadt Medizintechnik'),
(91842, 76288, 'no_lang_code', 'name', 'Primed (Germany)'),
(91843, 76289, 'no_lang_code', 'name', 'Bagilstein (Germany)'),
(91844, 76290, 'en', 'name', 'Heilongjiang Provincial Wildlife Research Institute'),
(91845, 76290, 'zh', 'name', 'é»‘é¾™ę±Ÿēœé‡Žē”ŸåŠØē‰©ē ”ē©¶ę‰€'),
(91846, 76291, 'no_lang_code', 'name', 'Ramboll (Germany)'),
(91847, 76292, 'no_lang_code', 'name', 'Stu Segall Productions (United States)'),
(91848, 76293, 'no_lang_code', 'name', 'Coty (United States)'),
(91849, 76294, 'no_lang_code', 'name', 'Reliant Technologies (United States)'),
(91850, 76295, 'en', 'name', 'Northeast Cancer Centre'),
(91851, 76296, 'no_lang_code', 'name', 'Siegfried (Switzerland)'),
(91852, 76297, 'ja', 'name', 'ćƒ”ćƒ‡ć‚£ć‚«ćƒ­ć‚¤ćƒ‰'),
(91853, 76297, 'no_lang_code', 'name', 'Medicaroid (Japan)'),
(91854, 76298, 'no_lang_code', 'name', 'Gloor Instruments (Switzerland)'),
(91855, 76299, 'no_lang_code', 'name', 'Appvion (United States)'),
(91856, 76300, 'no_lang_code', 'name', 'DK Recycling und Roheisen (Germany)'),
(91857, 76301, 'no_lang_code', 'name', 'Arte (Japan)'),
(91858, 76302, 'no_lang_code', 'name', 'Vaxess Technologies (United States)'),
(91859, 76303, 'sk', 'name', 'Nemocnica SvƤtƩho Michala'),
(91860, 76304, 'no_lang_code', 'name', 'Paragon Genomics (United States)'),
(91861, 76305, 'en', 'name', 'TRENDS Research & Advisory'),
(91862, 76305, 'ur', 'name', 'Ł…Ų±ŁƒŲ² ŲŖŲ±ŁŠŁ†ŲÆŲ² Ł„Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„Ų§Ų³ŲŖŲ“Ų§Ų±Ų§ŲŖ'),
(91863, 76306, 'no_lang_code', 'name', 'TerraVia (United States)'),
(91864, 76307, 'pt', 'name', 'Instituto Laura Fressatto'),
(91865, 76308, 'no_lang_code', 'name', 'Novapharm Research (Australia)'),
(91866, 76309, 'ja', 'name', 'ćƒć‚¤ć‚Ŗćƒćƒƒćƒˆē ”ē©¶ę‰€'),
(91867, 76309, 'no_lang_code', 'name', 'BioNet Lab (Japan)'),
(91868, 76310, 'en', 'name', 'Kaimosi Friends University College'),
(91869, 76311, 'no_lang_code', 'name', 'Virtual Phantoms (United States)'),
(91870, 76312, 'de', 'name', 'HeurekaNet'),
(91871, 76313, 'no_lang_code', 'name', 'Bio Medic Data Systems (United States)'),
(91872, 76314, 'es', 'name', 'Fundación Andaluza Beturia para la Investigación en Salud'),
(91873, 76315, 'no_lang_code', 'name', 'Thyssengas (Germany)'),
(91874, 76316, 'no_lang_code', 'name', 'Pollere (United States)'),
(91875, 76317, 'no_lang_code', 'name', 'Sonendo (United States)'),
(91876, 76318, 'no_lang_code', 'name', 'Essity (Sweden)'),
(91877, 76319, 'no_lang_code', 'name', 'Celltechgen (United States)'),
(91878, 76320, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Ireland)'),
(91879, 76321, 'no_lang_code', 'name', 'Axa (United Kingdom)'),
(91880, 76322, 'no_lang_code', 'name', 'Transmural Systems (United States)'),
(91881, 76323, 'de', 'name', 'AGFW'),
(91882, 76324, 'no_lang_code', 'name', 'Endotronix (United States)'),
(91883, 76325, 'ja', 'name', 'å¾”čˆ¹ē”ŗęē«œåšē‰©é¤Ø'),
(91884, 76325, 'no_lang_code', 'name', 'Mifune Dinosaur Museum'),
(91885, 76326, 'en', 'name', 'Institute of Forest Resource Information Techniques'),
(91886, 76326, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢čµ„ęŗäæ”ęÆē ”ē©¶ę‰€'),
(91887, 76327, 'en', 'name', 'Southern Nevada Water Authority'),
(91888, 76328, 'ja', 'name', 'ćƒ‡ćƒ¼ć‚æć‚¹ćƒˆćƒ©ćƒ†ć‚ø'),
(91889, 76328, 'no_lang_code', 'name', 'DataStrategy (Japan)'),
(91890, 76329, 'en', 'name', 'The Central Hospital of Xiao gan'),
(91891, 76329, 'zh', 'name', 'å­ę„Ÿåø‚äø­åæƒåŒ»é™¢'),
(91892, 76330, 'no_lang_code', 'name', 'Thyssenkrupp (Slovakia)'),
(91893, 76331, 'de', 'name', 'Gewerkschaft Erziehung und Wissenschaft'),
(91894, 76331, 'en', 'name', 'Education and Science Workers'' Union'),
(91895, 76332, 'no_lang_code', 'name', 'Login BV (Slovenia)'),
(91896, 76333, 'da', 'name', 'Danmarks Nationalbank'),
(91897, 76334, 'no_lang_code', 'name', 'Zelseed (Slovakia)'),
(91898, 76335, 'no_lang_code', 'name', 'Optimal Solutions Software (United States)'),
(91899, 76336, 'en', 'name', 'Federal Police of Brazil'),
(91900, 76336, 'es', 'name', 'PolicĆ­a Federal'),
(91901, 76336, 'fr', 'name', 'Police FƩdƩrale'),
(91902, 76336, 'pt', 'name', 'PolĆ­cia Federal'),
(91903, 76337, 'hi', 'name', 'ą¤•ą„ƒą¤·ą„€ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°, ą¤²ą¤¾ą¤¤ą„‚ą¤°'),
(91904, 76337, 'no_lang_code', 'name', 'Krishi Vigyan Kendra, Latur'),
(91905, 76338, 'no_lang_code', 'name', 'Hydroquest (France)'),
(91906, 76339, 'en', 'name', 'IBM Research - United Kingdom'),
(91907, 76340, 'en', 'name', 'The First Hospital of Kunming'),
(91908, 76340, 'zh', 'name', 'ę˜†ę˜Žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(91909, 76341, 'en', 'name', 'Health Commission of Anhui Province'),
(91910, 76341, 'zh', 'name', 'å®‰å¾½ēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(91911, 76342, 'de', 'name', 'Museumslandschaft Hessen Kassel'),
(91912, 76343, 'no_lang_code', 'name', 'Hamilton Medical (Switzerland)'),
(91913, 76344, 'no_lang_code', 'name', 'Becker Technologies (Germany)'),
(91914, 76345, 'en', 'name', 'Punjab State Council for Science & Technology'),
(91915, 76345, 'pa', 'name', 'ਵਿਗਿਆਨ ਅਤੇ ąØ¤ąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ਦੇ ਲਈ ਪੰਜਾਬ ਰਾਜ ąØŖą©ąØ°ą©€ąØøąØ¼ąØ¦'),
(91916, 76346, 'no_lang_code', 'name', 'Altum Pharmaceuticals (Canada)'),
(91917, 76347, 'no_lang_code', 'name', 'Plasma Controls (United States)'),
(91918, 76348, 'no_lang_code', 'name', 'Universalbeton Heringen (Germany)'),
(91919, 76349, 'en', 'name', 'International Work Group for Indigenous Affairs'),
(91920, 76350, 'es', 'name', 'Asociación Jardín BotÔnico La Laguna'),
(91921, 76351, 'de', 'name', 'Verein zur Fƶrderung Agrar- und Stadtƶkologischer Projekte'),
(91922, 76352, 'de', 'name', 'Erzbistum Kƶln'),
(91923, 76352, 'en', 'name', 'Archdiocese of Cologne'),
(91924, 76353, 'no_lang_code', 'name', 'Medical Components (United States)'),
(91925, 76354, 'no_lang_code', 'name', 'CathRx (Australia)'),
(91926, 76355, 'no_lang_code', 'name', 'Tgv (United States)'),
(91927, 76356, 'no_lang_code', 'name', 'UbiQD (United States)'),
(91928, 76357, 'no_lang_code', 'name', 'Stealthyx (United Kingdom)'),
(91929, 76358, 'no_lang_code', 'name', 'Treventis (Canada)'),
(91930, 76359, 'no_lang_code', 'name', 'Aptiv (Ireland)'),
(91931, 76360, 'no_lang_code', 'name', 'Kemin (Belgium)'),
(91932, 76361, 'de', 'name', 'Institut für Tier-, Natur- und Umweltethik'),
(91933, 76362, 'no_lang_code', 'name', 'Singleron Biotechnologies (china)'),
(91934, 76363, 'no_lang_code', 'name', 'Tendeg (United States)'),
(91935, 76364, 'de', 'name', 'Zwischenstaatliche Plattform für BiodiversitƤt und Ɩkosystem-Dienstleistungen'),
(91936, 76364, 'en', 'name', 'Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services'),
(91937, 76365, 'en', 'name', 'Mazingira Institute'),
(91938, 76366, 'en', 'name', 'Florida Center for Dermatology'),
(91939, 76367, 'no_lang_code', 'name', 'Institut für Entsorgung und Umwelttechnik (Germany)'),
(91940, 76368, 'ko', 'name', 'ķ•œźµ­ģ„ źø‰'),
(91941, 76368, 'no_lang_code', 'name', 'Korean Register (South Korea)'),
(91942, 76369, 'no_lang_code', 'name', 'Biedermann Technologies (Germany)'),
(91943, 76370, 'no_lang_code', 'name', 'Bioinformatics Solutions (Canada)'),
(91944, 76371, 'en', 'name', 'Maryland Advanced Development Laboratory'),
(91945, 76372, 'no_lang_code', 'name', 'MKS Instruments (Germany)'),
(91946, 76373, 'no_lang_code', 'name', 'Bronkhorst (Netherlands)'),
(91947, 76374, 'no_lang_code', 'name', 'Zeteo Tech (United States)'),
(91948, 76375, 'ja', 'name', 'ć‹ćæć„ć”ē·åˆē—…é™¢'),
(91949, 76375, 'no_lang_code', 'name', 'Kamiichi General Hospital'),
(91950, 76376, 'no_lang_code', 'name', 'Maui Imaging (United States)'),
(91951, 76377, 'de', 'name', 'UniversitƤt Bayern'),
(91952, 76378, 'no_lang_code', 'name', 'CytoSMART Technologies (Netherlands)'),
(91953, 76379, 'de', 'name', 'Internationales Institut für Sozio-Informatik'),
(91954, 76380, 'no_lang_code', 'name', 'G.E.O.S. Ingenieurgesellschaft (Germany)'),
(91955, 76381, 'en', 'name', 'Islamic Azad University, Abhar Branch'),
(91956, 76381, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ابهر'),
(91957, 76382, 'de', 'name', 'Institut für innovative Verfahrenstechnik'),
(91958, 76382, 'en', 'name', 'Institute for Innovative Process Engineering'),
(91959, 76383, 'en', 'name', 'Moscow Research Institute for Cybernetic Medicine'),
(91960, 76383, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кибернетической меГицины'),
(91961, 76384, 'de', 'name', 'Fraunhofer-Verbund IUK-Technologie'),
(91962, 76384, 'en', 'name', 'Fraunhofer ICT Group'),
(91963, 76385, 'no_lang_code', 'name', 'Agency for Medical Innovations (Austria)'),
(91964, 76386, 'no_lang_code', 'name', 'Seriad (United States)'),
(91965, 76387, 'no_lang_code', 'name', 'Scientific Toolworks (United States)'),
(91966, 76388, 'en', 'name', 'Tameside and Glossop Integrated Care NHS Foundation Trust'),
(91967, 76389, 'no_lang_code', 'name', 'Flow Pharma (United States)'),
(91968, 76390, 'ja', 'name', 'ć‚Æćƒ©ćƒ¬ćƒŽćƒŖć‚æć‚±ćƒ‡ćƒ³ć‚æćƒ«ę Ŗå¼ä¼šē¤¾'),
(91969, 76390, 'no_lang_code', 'name', 'Kuraray Noritake Dental (Japan)'),
(91970, 76391, 'en', 'name', 'Wuhan Pulmonary Hospital'),
(91971, 76391, 'zh', 'name', 'ę­¦ę±‰åø‚č‚ŗē§‘åŒ»é™¢'),
(91972, 76392, 'no_lang_code', 'name', 'Opus 12 (United States)'),
(91973, 76393, 'no_lang_code', 'name', 'VNIR Biotechnologies (India)'),
(91974, 76394, 'de', 'name', 'Institut für Rohrleitungsbau an der Fachhochschule Oldenburg'),
(91975, 76395, 'no_lang_code', 'name', 'Varex Imaging (United States)'),
(91976, 76396, 'de', 'name', 'Schweißtechnische Lehr- und Versuchsanstalt Nord'),
(91977, 76397, 'no_lang_code', 'name', 'Redbud Labs (United States)'),
(91978, 76398, 'es', 'name', 'Instituto Superior Tecnológico Loja'),
(91979, 76399, 'no_lang_code', 'name', 'Indus Biotech (India)'),
(91980, 76400, 'de', 'name', 'Hanse Institut Oldenburg Bildung und Gesundheit'),
(91981, 76401, 'en', 'name', 'Chameli Devi Institute of Pharmacy'),
(91982, 76402, 'en', 'name', 'Tate & Lyle (United Kingdom)'),
(91983, 76403, 'en', 'name', 'Genetic Resources Center'),
(91984, 76403, 'ja', 'name', 'éŗä¼č³‡ęŗć‚»ćƒ³ć‚æćƒ¼'),
(91985, 76404, 'no_lang_code', 'name', 'Summit Test Solutions (United States)'),
(91986, 76405, 'no_lang_code', 'name', 'Aquestive (United States)'),
(91987, 76406, 'en', 'name', 'Colorado Space Grant Consortium'),
(91988, 76407, 'en', 'name', 'Analysis and Testing Centre'),
(91989, 76407, 'zh', 'name', 'åˆ†ęžęµ‹čÆ•äø­åæƒ'),
(91990, 76408, 'no_lang_code', 'name', 'Isochem (France)'),
(91991, 76409, 'no_lang_code', 'name', 'RTI (United States)'),
(91992, 76410, 'en', 'name', 'Fujian Business University'),
(91993, 76410, 'zh', 'name', 'ē¦å»ŗå•†å­¦é™¢'),
(91994, 76411, 'no_lang_code', 'name', 'Old Harbor Native (United States)'),
(91995, 76412, 'no_lang_code', 'name', 'Truma (Germany)'),
(91996, 76413, 'no_lang_code', 'name', 'Konzeko, spol (Slovakia)'),
(91997, 76414, 'no_lang_code', 'name', 'Semba Biosciences (United States)'),
(91998, 76415, 'en', 'name', 'Snohomish Health District'),
(91999, 76416, 'no_lang_code', 'name', 'Viewpoint Molecular Targeting (United States)'),
(92000, 76417, 'no_lang_code', 'name', 'Biocure (United States)'),
(92001, 76418, 'en', 'name', 'China Institute of Finance and Capital Markets'),
(92002, 76419, 'no_lang_code', 'name', 'Alivio Therapeutics (United States)'),
(92003, 76420, 'no_lang_code', 'name', 'Jnana Therapeutics (United States)'),
(92004, 76421, 'de', 'name', 'Professor Hellriegel Institut'),
(92005, 76422, 'en', 'name', 'Bridge Consultants Foundation'),
(92006, 76423, 'de', 'name', 'Institut der Feuerwehr Nordrhein-Westfalen'),
(92007, 76424, 'en', 'name', 'Central Institute for Research on Goats'),
(92008, 76424, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¬ą¤•ą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(92009, 76425, 'no_lang_code', 'name', 'Sonavex (United States)'),
(92010, 76426, 'no_lang_code', 'name', 'A-dec (United States)'),
(92011, 76427, 'no_lang_code', 'name', 'QualiMed (Germany)'),
(92012, 76428, 'en', 'name', 'Universal Scientific Education and Research Network'),
(92013, 76428, 'fa', 'name', 'ؓبکه Ų¬Ł‡Ų§Ł†ŪŒ Ų¢Ł…ŁˆŲ²Ų“ و Ł¾Ś˜ŁˆŁ‡Ų“ Ł‡Ų§ŪŒ Ų¹Ł„Ł…ŪŒ'),
(92014, 76429, 'en', 'name', 'Chiba Prefectural Center Museum Otone Branch'),
(92015, 76429, 'ja', 'name', 'åƒč‘‰ēœŒē«‹äø­å¤®åšē‰©é¤Ø å¤§åˆ©ę ¹åˆ†é¤Ø'),
(92016, 76430, 'en', 'name', 'Scientific Society of Otolaryngology and Head and Neck Surgery'),
(92017, 76430, 'es', 'name', 'Sociedad Otorrinolaringológica de Castilla y León, Cantabria y La Rioja'),
(92018, 76431, 'de', 'name', 'Institut für Biodiversität'),
(92019, 76431, 'en', 'name', 'Institute for Biodiversity'),
(92020, 76432, 'no_lang_code', 'name', 'Seafire Micros (United States)'),
(92021, 76433, 'no_lang_code', 'name', 'AllaChem (United States)'),
(92022, 76434, 'no_lang_code', 'name', 'Uvex (Germany)'),
(92023, 76435, 'no_lang_code', 'name', 'Protgen (China)'),
(92024, 76436, 'no_lang_code', 'name', 'Alpek (Mexico)'),
(92025, 76437, 'no_lang_code', 'name', 'SDI Engineering (United States)'),
(92026, 76438, 'no_lang_code', 'name', 'Avanos Medical (United States)'),
(92027, 76439, 'de', 'name', 'Westfalen-Kolleg'),
(92028, 76440, 'no_lang_code', 'name', 'QuEra Computing (United States)'),
(92029, 76441, 'ko', 'name', 'źøˆķ˜øģ„ģœ ķ™”ķ•™ ģ£¼ģ‹ķšŒģ‚¬'),
(92030, 76441, 'no_lang_code', 'name', 'Kumho Petrochemical (South Korea)'),
(92031, 76442, 'de', 'name', 'Forschungsinstitut für Bergbaufolgelandschaften'),
(92032, 76443, 'no_lang_code', 'name', 'Silicon Mitus (United States)'),
(92033, 76444, 'no_lang_code', 'name', 'Hydromer (United States)'),
(92034, 76445, 'en', 'name', 'VA Montana Health Care System'),
(92035, 76446, 'no_lang_code', 'name', 'GNA Research (Israel)'),
(92036, 76447, 'tr', 'name', 'Medical Park Tarsus Hastanesi'),
(92037, 76448, 'en', 'name', 'Flemish Patiƫnt Platform vzw'),
(92038, 76448, 'nl', 'name', 'Vlaams Patiƫntenplatform'),
(92039, 76449, 'no_lang_code', 'name', 'Signals Analytics (United States)'),
(92040, 76450, 'no_lang_code', 'name', 'DEEP.KBB (Germany)'),
(92041, 76451, 'no_lang_code', 'name', 'Sichuan Mianyang 404 Hospital'),
(92042, 76451, 'zh', 'name', 'å››å·ē»µé˜³å››ć€‡å››åŒ»é™¢'),
(92043, 76452, 'no_lang_code', 'name', 'Beijing Chemical Industry Research Institute (China)'),
(92044, 76452, 'zh', 'name', 'åŒ—äŗ¬åø‚åŒ–å­¦å·„äøšē ”ē©¶é™¢'),
(92045, 76453, 'no_lang_code', 'name', 'Opticyte (United States)'),
(92046, 76454, 'en', 'name', 'Abdul Latif Jameel Poverty Action Lab'),
(92047, 76455, 'no_lang_code', 'name', 'Transitions Optical (United States)'),
(92048, 76456, 'fr', 'name', 'Centre Africain d’Etudes Internationales Diplomatiques Economiques et StratĆ©giques'),
(92049, 76457, 'no_lang_code', 'name', 'Prenosis (United States)'),
(92050, 76458, 'no_lang_code', 'name', 'Nota Laboratories (United States)'),
(92051, 76459, 'no_lang_code', 'name', 'Centro Nacional de Endemias'),
(92052, 76460, 'no_lang_code', 'name', 'Penumbra (United States)'),
(92053, 76461, 'no_lang_code', 'name', 'Oscor (United States)'),
(92054, 76462, 'de', 'name', 'Institut für Europäische Gesundheits- und Sozialwirtschaft'),
(92055, 76463, 'en', 'name', 'The People''s Hospital Tongling'),
(92056, 76463, 'zh', 'name', 'é“œé™µåø‚äŗŗę°‘åŒ»é™¢'),
(92057, 76464, 'no_lang_code', 'name', 'Platelet BioGenesis (United States)'),
(92058, 76465, 'it', 'name', 'Ospedale Civile di Voghera'),
(92059, 76466, 'en', 'name', 'National Art Institute'),
(92060, 76466, 'ja', 'name', 'č²”å›£ę³•äŗŗę°‘ę—čŠøč”“ē ”ē©¶ę‰€'),
(92061, 76467, 'en', 'name', 'Otemae College of Nutrition'),
(92062, 76467, 'ja', 'name', 'å¤§ę‰‹å‰ę „é¤Šå¤§å­¦'),
(92063, 76468, 'en', 'name', 'Institute of Network Cultures'),
(92064, 76469, 'no_lang_code', 'name', 'EssilorLuxottica (France)'),
(92065, 76470, 'no_lang_code', 'name', 'Cardinal Health (Ireland)'),
(92066, 76471, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© المجتمع في قطر'),
(92067, 76471, 'en', 'name', 'Community College of Qatar'),
(92068, 76472, 'en', 'name', 'Zhejiang Medical and Health Group Hangzhou Hospital'),
(92069, 76472, 'zh', 'name', 'ęµ™ę±ŸēœåŒ»ē–—å„åŗ·é›†å›¢ę­å·žåŒ»é™¢'),
(92070, 76473, 'de', 'name', 'Institut für Abfall, Abwasser, Site und Facility Management'),
(92071, 76474, 'no_lang_code', 'name', 'YAN Engines (United States)'),
(92072, 76475, 'no_lang_code', 'name', 'Quantum Devices (United States)'),
(92073, 76476, 'en', 'name', 'Hamburg Archaeological Museum'),
(92074, 76477, 'no_lang_code', 'name', 'OVD - OvocinÔrske Družstvo (Slovakia)'),
(92075, 76478, 'no_lang_code', 'name', 'DATADVANCE (France)'),
(92076, 76479, 'no_lang_code', 'name', 'HighLife (France)'),
(92077, 76480, 'en', 'name', 'Endometriosis'),
(92078, 76481, 'no_lang_code', 'name', 'NLA Diagnostics (United States)'),
(92079, 76482, 'de', 'name', 'Institut für Prozessoptimierung und Informationstechnologien'),
(92080, 76483, 'no_lang_code', 'name', 'SignalRx Pharmaceuticals (United States)'),
(92081, 76484, 'en', 'name', 'Protein Research Foundation'),
(92082, 76485, 'en', 'name', 'Tax and Customs Administration'),
(92083, 76485, 'nl', 'name', 'Belastingdienst'),
(92084, 76486, 'en', 'name', 'Hohhot Minzu College'),
(92085, 76486, 'zh', 'name', 'å‘¼å’Œęµ©ē‰¹ę°‘ę—å­¦é™¢'),
(92086, 76487, 'no_lang_code', 'name', 'Signature Analytics (United States)'),
(92087, 76488, 'no_lang_code', 'name', 'Amano Enzyme (Japan)'),
(92088, 76489, 'no_lang_code', 'name', 'Alps Electric (United Kingdom)'),
(92089, 76490, 'en', 'name', 'Nagasaki Ajisai Hospital'),
(92090, 76490, 'ja', 'name', 'é•·å“Žé€“äæ”ē—…é™¢'),
(92091, 76491, 'de', 'name', 'Institut für Berufliche Bildung'),
(92092, 76492, 'de', 'name', 'Akademie der Kulturellen Bildung'),
(92093, 76492, 'en', 'name', 'Academy of Arts Education'),
(92094, 76493, 'ja', 'name', 'äø‰äŗ•ć‚°ćƒ«ćƒ¼ćƒ—'),
(92095, 76493, 'no_lang_code', 'name', 'Mitsui (Japan)'),
(92096, 76494, 'no_lang_code', 'name', 'YMS (Slovakia)'),
(92097, 76495, 'en', 'name', 'Community Agroecology Network'),
(92098, 76496, 'no_lang_code', 'name', 'Ambrx (United States)'),
(92099, 76497, 'en', 'name', 'Beckley VA Medical Center'),
(92100, 76498, 'no_lang_code', 'name', 'Ocular Proteomics (United States)'),
(92101, 76499, 'he', 'name', 'ć‚æćƒÆćƒ¼ć‚»ćƒŸć‚³ćƒ³ćƒ€ć‚Æć‚æćƒ¼'),
(92102, 76499, 'no_lang_code', 'name', 'Tower Semiconductor (Israel)'),
(92103, 76500, 'no_lang_code', 'name', 'Vasoptic Medical (United States)'),
(92104, 76501, 'en', 'name', 'National Center for Chronic and Noncommunicable Disease Control and Prevention'),
(92105, 76501, 'zh', 'name', 'äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒę…¢ę€§éžä¼ ęŸ“ę€§ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(92106, 76502, 'no_lang_code', 'name', 'Tactical Communications Group (United States)'),
(92107, 76503, 'no_lang_code', 'name', 'Azimuth (United States)'),
(92108, 76504, 'no_lang_code', 'name', 'Synertech PM (United States)'),
(92109, 76505, 'no_lang_code', 'name', 'Swabian Instruments (Germany)'),
(92110, 76506, 'no_lang_code', 'name', 'Dempsey Ventures (United States)'),
(92111, 76507, 'no_lang_code', 'name', 'Reinhart & Associates (United States)'),
(92112, 76508, 'no_lang_code', 'name', 'Axonics Modulation Technologies (United States)'),
(92113, 76509, 'en', 'name', 'Institute of Agro-Products Processing Science and Technology'),
(92114, 76509, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å†œäŗ§å“åŠ å·„ę‰€'),
(92115, 76510, 'en', 'name', 'Xiamen Blood Center'),
(92116, 76510, 'zh', 'name', 'åŽ¦é—Øåø‚äø­åæƒč”€ē«™'),
(92117, 76511, 'no_lang_code', 'name', 'Omnicell (United States)'),
(92118, 76512, 'en', 'name', 'New Development Bank'),
(92119, 76513, 'de', 'name', 'Evangelisches Krankenhaus Oberhausen'),
(92120, 76514, 'es', 'name', 'Centro Nacional de Investigaciones en Salud Materno Infantil'),
(92121, 76515, 'en', 'name', 'China Association of Agricultural Science Societies'),
(92122, 76515, 'zh', 'name', 'äø­å›½å†œå­¦ä¼š'),
(92123, 76516, 'no_lang_code', 'name', 'Angiochem (Canada)'),
(92124, 76517, 'no_lang_code', 'name', 'United Electric Controls (United States)'),
(92125, 76518, 'en', 'name', 'Kitami Industrial Technology Center'),
(92126, 76518, 'ja', 'name', 'åŒ—č¦‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(92127, 76519, 'no_lang_code', 'name', 'DMT Produktentwicklung (Germany)'),
(92128, 76520, 'no_lang_code', 'name', 'Syntek Technologies (United States)'),
(92129, 76521, 'nl', 'name', 'Huisarts en Wetenschap'),
(92130, 76522, 'no_lang_code', 'name', 'Northgate Technologies (United States)'),
(92131, 76523, 'en', 'name', 'James Lind Institute'),
(92132, 76524, 'en', 'name', 'AINET Association of English Teachers'),
(92133, 76525, 'no_lang_code', 'name', 'Ancora Heart (United States)'),
(92134, 76526, 'no_lang_code', 'name', 'Integer (United States)'),
(92135, 76527, 'ja', 'name', 'å‘ę—„åø‚ę–‡åŒ–č³‡ę–™é¤Ø'),
(92136, 76527, 'no_lang_code', 'name', 'Muko City Cultural Museum'),
(92137, 76528, 'no_lang_code', 'name', 'Passport Systems (United States)'),
(92138, 76529, 'de', 'name', 'PECO-Institut'),
(92139, 76530, 'de', 'name', 'Hessischer Volkshochschulverband'),
(92140, 76531, 'no_lang_code', 'name', 'BioCardia (United States)'),
(92141, 76532, 'no_lang_code', 'name', 'Kyivmetroproekt (Ukraine)'),
(92142, 76532, 'uk', 'name', 'ŠšŠ˜Š‡Š’ŠŸŠ ŠžŠ•ŠšŠ¢'),
(92143, 76533, 'no_lang_code', 'name', 'Scientific Technologies Corporation (United States)'),
(92144, 76534, 'en', 'name', 'Veterans Health Care System of the Ozarks'),
(92145, 76535, 'en', 'name', 'Natural History Museum Rotterdam'),
(92146, 76535, 'nl', 'name', 'Natuurhistorisch Museum Rotterdam'),
(92147, 76536, 'no_lang_code', 'name', 'Kinection (United States)'),
(92148, 76537, 'no_lang_code', 'name', 'Mountain Data Group (United States)'),
(92149, 76538, 'no_lang_code', 'name', 'Truventic (United States)'),
(92150, 76539, 'en', 'name', 'International Medical And Welfare College Nanao School'),
(92151, 76539, 'ja', 'name', 'å›½éš›åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”äøƒå°¾ę ”'),
(92152, 76540, 'no_lang_code', 'name', 'Varidesk (United States)'),
(92153, 76541, 'no_lang_code', 'name', 'Planmeca (Finland)'),
(92154, 76542, 'no_lang_code', 'name', 'Electro Optical Systems (United Kingdom)'),
(92155, 76543, 'no_lang_code', 'name', 'Test & Evaluation Solutions (United States)'),
(92156, 76544, 'ja', 'name', 'ę–°ę—„ęœ¬ćƒć‚¤ć‚Ŗćƒ”ćƒ‡ć‚£ć‚«ćƒ«ē ”ē©¶ę‰€'),
(92157, 76544, 'no_lang_code', 'name', 'Shin Nippon Biomedical Laboratories (Japan)'),
(92158, 76545, 'fr', 'name', 'HĆ“pital Ɖmile-Roux'),
(92159, 76546, 'en', 'name', 'ICLEI - Local Governments for Sustainability USA'),
(92160, 76547, 'ar', 'name', 'Ų§Ł„ŲµŁ†ŲÆŁˆŁ‚ Ų§Ł„Ł‚Ų·Ų±ŁŠ Ł„Ų±Ų¹Ų§ŁŠŲ© البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(92161, 76547, 'en', 'name', 'Qatar National Research Fund'),
(92162, 76548, 'no_lang_code', 'name', 'Centre for Conflict Management and Transformation'),
(92163, 76549, 'no_lang_code', 'name', 'We Predict (United Kingdom)');
INSERT INTO `ror_settings` VALUES
(92164, 76550, 'fr', 'name', 'Institut Catholique d''Arts et MƩtiers'),
(92165, 76551, 'en', 'name', 'The First Hospital of Changsha'),
(92166, 76551, 'zh', 'name', 'é•æę²™åø‚ē¬¬äø€åŒ»é™¢'),
(92167, 76552, 'en', 'name', 'Coalition for Epidemic Preparedness Innovations'),
(92168, 76553, 'en', 'name', 'Chiba City Lifelong Learning Center'),
(92169, 76553, 'ja', 'name', 'åƒč‘‰åø‚ ē”Ÿę¶Æå­¦ēæ’ć‚»ćƒ³ć‚æćƒ¼'),
(92170, 76554, 'no_lang_code', 'name', 'Lotte Fine Chemical (South Korea)'),
(92171, 76555, 'no_lang_code', 'name', 'Pharmazeutische Fabrik Dr. Reckeweg (Germany)'),
(92172, 76556, 'en', 'name', 'Toyota City Museum of Local History'),
(92173, 76556, 'ja', 'name', 'č±Šē”°åø‚éƒ·åœŸč³‡ę–™é¤Ø'),
(92174, 76557, 'en', 'name', 'Koul Research Foundation'),
(92175, 76558, 'en', 'name', 'Hormuud University'),
(92176, 76559, 'no_lang_code', 'name', 'Guhua Hospital'),
(92177, 76559, 'zh', 'name', 'äøŠęµ·åø‚å„‰č“¤åŒŗå¤åŽåŒ»é™¢'),
(92178, 76560, 'no_lang_code', 'name', 'Arcturus Therapeutics (United States)'),
(92179, 76561, 'en', 'name', 'Africa Youth Growth Foundation'),
(92180, 76562, 'en', 'name', 'BRIQ Institute on Behavior and Inequality'),
(92181, 76563, 'no_lang_code', 'name', 'Kentropy Technologies (India)'),
(92182, 76564, 'no_lang_code', 'name', 'John Wood Group (United Kingdom)'),
(92183, 76565, 'en', 'name', 'MRC Brain Network Dynamics Unit'),
(92184, 76566, 'de', 'name', 'Sozialwissenschaftliches Forschungszentrum Berlin-Brandenburg'),
(92185, 76567, 'en', 'name', 'Institute of Chemical Industry of Forest Products'),
(92186, 76567, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ęž—äŗ§åŒ–å­¦å·„äøšē ”ē©¶ę‰€'),
(92187, 76568, 'no_lang_code', 'name', 'Excelitas Technologies (United States)'),
(92188, 76569, 'no_lang_code', 'name', 'd-fine (Germany)'),
(92189, 76570, 'ja', 'name', 'ęœ¬å·žåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(92190, 76570, 'no_lang_code', 'name', 'Honshu Chemical Industry (Japan)'),
(92191, 76571, 'en', 'name', 'Mustard Research and Promotion Consortium'),
(92192, 76571, 'hi', 'name', 'ą¤øą¤°ą¤øą„‹ą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤øą¤‚ą¤µą¤°ą„ą¤§ą¤Ø ą¤•ą¤‚ą¤øą„‹ą¤°ą„ą¤Ÿą¤æą¤Æą¤®'),
(92193, 76572, 'en', 'name', 'Institute of Ethnology, Academia Sinica'),
(92194, 76572, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ę°‘ę—å­øē ”ē©¶ę‰€'),
(92195, 76573, 'no_lang_code', 'name', 'Sino-American Silicon Products (Taiwan)'),
(92196, 76574, 'en', 'name', 'Mie Agricultural Research Institute'),
(92197, 76574, 'ja', 'name', 'äø‰é‡ēœŒč¾²ę„­ē ”ē©¶ę‰€'),
(92198, 76575, 'el', 'name', 'Εθνική Επιτροπή Ī¤Ī·Ī»ĪµĻ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½ και ΤαχυΓρομείων'),
(92199, 76575, 'no_lang_code', 'name', 'Hellenic Telecommunications and Post Commission (Greece)'),
(92200, 76576, 'en', 'name', 'National Center for Women and Children’s Health, China CDC'),
(92201, 76576, 'zh', 'name', 'äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒå¦‡å¹¼äæå„äø­åæƒ'),
(92202, 76577, 'en', 'name', 'National Medical and Surgical Center named after N.I. Pirogov'),
(92203, 76577, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГико-Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Центр имени Š.И. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(92204, 76578, 'en', 'name', 'Rayos Contra Cancer'),
(92205, 76579, 'no_lang_code', 'name', 'McKinsey & Company (United Kingdom)'),
(92206, 76580, 'es', 'name', 'Guyra Paraguay'),
(92207, 76581, 'en', 'name', 'Flemish Advisory Council for Innovation & Enterprise'),
(92208, 76581, 'nl', 'name', 'Vlaamse Adviesraad voor Innoveren en Ondernemen'),
(92209, 76582, 'ja', 'name', 'ć²ćØć‚ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(92210, 76582, 'no_lang_code', 'name', 'Hitowa Holdings (Japan)'),
(92211, 76583, 'en', 'name', 'Guizhou Botanical Garden'),
(92212, 76583, 'zh', 'name', 'č“µå·žēœę¤ē‰©å›­'),
(92213, 76584, 'no_lang_code', 'name', 'Orihara Industrial (Japan)'),
(92214, 76585, 'no_lang_code', 'name', 'Hoppecke (Germany)'),
(92215, 76586, 'no_lang_code', 'name', 'Vital Probes (United States)'),
(92216, 76587, 'en', 'name', 'INFINITY Science Center'),
(92217, 76588, 'no_lang_code', 'name', 'Mackie Research (New Zealand)'),
(92218, 76589, 'no_lang_code', 'name', 'Endologix (United States)'),
(92219, 76590, 'de', 'name', 'ThüringenForst'),
(92220, 76591, 'en', 'name', 'Association for Scottish Literary Studies'),
(92221, 76592, 'en', 'name', 'Zhengzhou Jinshui District General Hospital'),
(92222, 76592, 'zh', 'name', 'éƒ‘å·žåø‚é‡‘ę°“åŒŗę€»åŒ»é™¢'),
(92223, 76593, 'en', 'name', 'Tamil Nadu Board of Rural Development'),
(92224, 76593, 'ta', 'name', 'ą®Šą®°ą®• ą®®ąÆ‡ą®®ąÆą®Ŗą®¾ą®ŸąÆą®ŸąÆ ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®µą®¾ą®°ą®æą®Æą®®ąÆ'),
(92225, 76594, 'no_lang_code', 'name', 'Vectrus (United States)'),
(92226, 76595, 'no_lang_code', 'name', 'Neurotargeting (United States)'),
(92227, 76596, 'en', 'name', 'LogicalOutcomes'),
(92228, 76597, 'no_lang_code', 'name', 'QuantaLab'),
(92229, 76598, 'ja', 'name', 'å±±ęœ¬åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(92230, 76598, 'no_lang_code', 'name', 'Yamamoto Chamicals (Japan)'),
(92231, 76599, 'no_lang_code', 'name', 'Venebio (United States)'),
(92232, 76600, 'no_lang_code', 'name', 'Alpenforschungsinstitut (Germany)'),
(92233, 76601, 'en', 'name', 'Rubber Research Institute'),
(92234, 76601, 'zh', 'name', 'äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢ę©”čƒ¶ē ”ē©¶ę‰€'),
(92235, 76602, 'no_lang_code', 'name', 'Robocasting (United States)'),
(92236, 76603, 'en', 'name', 'Tamano General Medical College'),
(92237, 76603, 'ja', 'name', 'ēŽ‰é‡Žē·åˆåŒ»ē™‚å°‚å•å­¦ę ”'),
(92238, 76604, 'fr', 'name', 'Centre National des Soins Palliatifs et de la Fin de Vie'),
(92239, 76605, 'no_lang_code', 'name', 'Synamedia (United Kingdom)'),
(92240, 76606, 'en', 'name', 'Istanbul Kent University'),
(92241, 76606, 'tr', 'name', 'İstanbul Kent Üniversitesi'),
(92242, 76607, 'en', 'name', 'VA Connecticut Research and Education Foundation'),
(92243, 76608, 'en', 'name', 'VA Gulf Coast Veterans Health Care System'),
(92244, 76609, 'en', 'name', 'Biomedical Translation Research Center'),
(92245, 76610, 'no_lang_code', 'name', 'Spectrum Dynamics Medical (Switzerland)'),
(92246, 76611, 'en', 'name', 'IIT@MIT'),
(92247, 76612, 'no_lang_code', 'name', 'Proteos (United States)'),
(92248, 76613, 'no_lang_code', 'name', 'User Systems (United States)'),
(92249, 76614, 'no_lang_code', 'name', 'Durect (United States)'),
(92250, 76615, 'sk', 'name', 'SlovenskĆ” FyzikĆ”lna SpoločnosÅ„'),
(92251, 76616, 'no_lang_code', 'name', 'NAEJA-RGM Pharmaceuticals (Canada)'),
(92252, 76617, 'no_lang_code', 'name', 'Neuronano (Sweden)'),
(92253, 76618, 'no_lang_code', 'name', 'Stratom (United States)'),
(92254, 76619, 'no_lang_code', 'name', 'Loadhog (United Kingdom)'),
(92255, 76620, 'no_lang_code', 'name', 'ImageRive (Switzerland)'),
(92256, 76621, 'ko', 'name', 'ģ‚¼ģ–‘ė°”ģ“ģ˜¤ķŒœ'),
(92257, 76621, 'no_lang_code', 'name', 'Samyang Holdings (South Korea)'),
(92258, 76622, 'en', 'name', 'Baotou Teachers College'),
(92259, 76622, 'zh', 'name', 'åŒ…å¤“åøˆčŒƒå­¦é™¢'),
(92260, 76623, 'no_lang_code', 'name', 'Metallurgical Industry Press (China)'),
(92261, 76623, 'zh', 'name', 'å†¶é‡‘å·„äøšå‡ŗē‰ˆē¤¾'),
(92262, 76624, 'no_lang_code', 'name', 'Ensuiko Sugar Refining (Japan)'),
(92263, 76625, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© ŲØŁ†Ų²ŁˆŁ‰'),
(92264, 76625, 'en', 'name', 'College of Applied Sciences, Nizwa'),
(92265, 76626, 'no_lang_code', 'name', 'Isagro (Italy)'),
(92266, 76627, 'no_lang_code', 'name', 'Seward (United States)'),
(92267, 76628, 'en', 'name', 'Centre for Artificial Intelligence and Robotics'),
(92268, 76628, 'hi', 'name', 'ą¤•ą„ƒą¤¤ą„ą¤°ą¤æą¤® ą¤œą„ą¤žą¤¾ą¤Ø तऄा ą¤°ą„‹ą¤¬ą„‹ą¤Ÿą¤æą¤•ą„€ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(92269, 76629, 'no_lang_code', 'name', 'Severn Glocon Group (United Kingdom)'),
(92270, 76630, 'en', 'name', 'SƔmi High School and Reindeer Husbandry School'),
(92271, 76631, 'no_lang_code', 'name', 'Plus Designs (United States)'),
(92272, 76632, 'no_lang_code', 'name', 'Intersect ENT (United States)'),
(92273, 76633, 'de', 'name', 'Institut für Sozialforschung und Berufliche Weiterbildung'),
(92274, 76634, 'de', 'name', 'Institut für Betontechnologie und Oberflächenschutz'),
(92275, 76635, 'ja', 'name', 'ę ¹ęœ¬ęęž—å ‚'),
(92276, 76635, 'no_lang_code', 'name', 'Nemoto (Japan)'),
(92277, 76636, 'de', 'name', 'Wienbibliothek im Rathaus'),
(92278, 76636, 'en', 'name', 'Vienna City Library'),
(92279, 76637, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ фізіка-Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹Ń… навук'),
(92280, 76637, 'en', 'name', 'Department of Physical and Technical Sciences'),
(92281, 76638, 'no_lang_code', 'name', 'Seven Solutions (Spain)'),
(92282, 76639, 'no_lang_code', 'name', 'MIA Engineering (Slovakia)'),
(92283, 76640, 'no_lang_code', 'name', 'China Metallurgical Planning Net (China)'),
(92284, 76640, 'zh', 'name', 'å†¶é‡‘å·„äøšč§„åˆ’ē ”ē©¶é™¢'),
(92285, 76641, 'en', 'name', 'Institute of Economics, Academia Sinica'),
(92286, 76641, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ē¶“ęæŸē ”ē©¶ę‰€'),
(92287, 76642, 'no_lang_code', 'name', 'TechnoView (United States)'),
(92288, 76643, 'no_lang_code', 'name', 'Cergentis (Netherlands)'),
(92289, 76644, 'no_lang_code', 'name', 'GenePath Dx (India)'),
(92290, 76645, 'en', 'name', 'Tropical Crops Genetic Resources Institute'),
(92291, 76645, 'zh', 'name', 'ēƒ­åø¦ä½œē‰©å“ē§čµ„ęŗē ”ē©¶ę‰€'),
(92292, 76646, 'en', 'name', 'King Institute of Preventive Medicine and Research'),
(92293, 76646, 'ta', 'name', 'ą®¤ą®ŸąÆą®ŖąÆą®ŖąÆ ą®®ą®°ąÆą®ØąÆą®¤ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®•ą®æą®™ąÆ ą®‡ą®©ąÆą®øąÆą®Ÿą®æą®Ÿą®æą®ÆąÆ‚ą®ŸąÆ'),
(92294, 76647, 'en', 'name', 'Fragrance & Flavour Development Centre'),
(92295, 76647, 'hi', 'name', 'ą¤«ą„ą¤°ą¤¾ą¤—ą„ą¤°ą¤¾ą¤‚ą¤ø & ą¤«ą„ą¤²ą„‡ą¤µą¤° ą¤”ą„‡ą¤µą„‡ą¤²ą¤Ŗą¤®ą„‡ą¤‚ą¤Ÿ ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(92296, 76648, 'no_lang_code', 'name', 'Rex Medical (United States)'),
(92297, 76649, 'en', 'name', 'Defence Terrain Research Laboratory'),
(92298, 76649, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤­ą„‚-भाग और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(92299, 76650, 'no_lang_code', 'name', 'Quandela (France)'),
(92300, 76651, 'no_lang_code', 'name', 'Devolo (Germany)'),
(92301, 76652, 'en', 'name', 'Tertiary Research and Education Network of South Africa'),
(92302, 76653, 'no_lang_code', 'name', 'Urban Planning & Design Institute of Shenzhen (China)'),
(92303, 76653, 'zh', 'name', 'ę·±åœ³åø‚åŸŽåø‚č§„åˆ’č®¾č®”ē ”ē©¶é™¢'),
(92304, 76654, 'no_lang_code', 'name', 'Planetary Systems (United States)'),
(92305, 76655, 'en', 'name', 'Asia-Pacific Regional Network for Early Childhood'),
(92306, 76656, 'en', 'name', 'Partnership for Economic Policy'),
(92307, 76657, 'en', 'name', 'World Organisation of Family Doctors'),
(92308, 76658, 'en', 'name', 'Bank of Estonia'),
(92309, 76658, 'et', 'name', 'Eesti Pank'),
(92310, 76659, 'en', 'name', 'Delta Institute for Theoretical Physics'),
(92311, 76660, 'no_lang_code', 'name', 'Fleetwood Specialty Pharmacy (United States)'),
(92312, 76661, 'no_lang_code', 'name', 'Photon Spot (United States)'),
(92313, 76662, 'en', 'name', 'Xiaogan First People''s Hospital'),
(92314, 76662, 'zh', 'name', 'å­ę„Ÿåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(92315, 76663, 'en', 'name', 'Science and Technology Corporation for Naval, Maritime and Riverine Industry Development'),
(92316, 76663, 'es', 'name', 'Corporación de Ciencia y Tecnología para el Desarrollo de la Industria Naval Marítima y Fluvial'),
(92317, 76664, 'en', 'name', 'Shizuoka Prefecture Institute of Environmental Health Sciences'),
(92318, 76664, 'ja', 'name', 'é™å²”ēœŒē’°å¢ƒč”›ē”Ÿē§‘å­¦ē ”ē©¶ę‰€'),
(92319, 76665, 'no_lang_code', 'name', 'NevadaNano (United States)'),
(92320, 76666, 'de', 'name', 'Ostasien-Institut'),
(92321, 76667, 'en', 'name', 'Zhejiang Provincial Public Security Department'),
(92322, 76667, 'zh', 'name', 'ęµ™ę±Ÿēœå…¬å®‰åŽ…'),
(92323, 76668, 'no_lang_code', 'name', 'Fabbrica Italiana Sintetici (Italy)'),
(92324, 76669, 'no_lang_code', 'name', 'EoTech (United States)'),
(92325, 76670, 'no_lang_code', 'name', 'EQUIcon (Germany)'),
(92326, 76671, 'no_lang_code', 'name', 'Visionary Pharmaceuticals (United States)'),
(92327, 76672, 'no_lang_code', 'name', 'MeMed (Israel)'),
(92328, 76673, 'en', 'name', 'International Step by Step Association'),
(92329, 76674, 'no_lang_code', 'name', 'Humanigen (United States)'),
(92330, 76675, 'en', 'name', 'Department of Animal Husbandry, Veterinary and Dairy Development'),
(92331, 76676, 'no_lang_code', 'name', 'Vytronus (United States)'),
(92332, 76677, 'en', 'name', 'Plasma University'),
(92333, 76678, 'no_lang_code', 'name', 'Wilo (Germany)'),
(92334, 76679, 'hi', 'name', 'ą¤”ą„‰ą¤°ą„ą¤«-ą¤•ą„‡ą¤Ÿą¤² ą¤•ą„‡ą¤®ą¤æą¤•ą¤²ą„ą¤ø इंऔिया ą¤Ŗą„ą¤°ą¤¾ą¤‡ą¤µą„‡ą¤Ÿ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(92335, 76679, 'no_lang_code', 'name', 'Dorf Ketal (India)'),
(92336, 76680, 'en', 'name', 'Jingzhou Maternal and Child Health Hospital'),
(92337, 76680, 'zh', 'name', 'č†å·žåø‚å¦‡å¹¼äæå„é™¢'),
(92338, 76681, 'en', 'name', 'Institute for Justice and Reconciliation'),
(92339, 76682, 'no_lang_code', 'name', 'RetrieverTech (United States)'),
(92340, 76683, 'en', 'name', 'West Ridge Veterinary Practice'),
(92341, 76684, 'en', 'name', 'Beijing Institue Of Electronics Technology And Application'),
(92342, 76684, 'zh', 'name', 'åŒ—äŗ¬ē”µå­ē§‘ęŠ€ęŠ€ęœÆē ”ē©¶ę‰€'),
(92343, 76685, 'en', 'name', 'General Clinic Phʰʔng Nam'),
(92344, 76685, 'vi', 'name', 'Phòng KhÔm Đa Khoa PhưƔng Nam'),
(92345, 76686, 'de', 'name', 'Standardarzneimittel Deutscher Apotheker'),
(92346, 76686, 'no_lang_code', 'name', 'Stada Arzneimittel (Germany)'),
(92347, 76687, 'no_lang_code', 'name', 'Equis (Slovakia)'),
(92348, 76688, 'no_lang_code', 'name', 'HCL Technologies (United States)'),
(92349, 76689, 'no_lang_code', 'name', 'Associated Fund Administrators (Botswana)'),
(92350, 76690, 'no_lang_code', 'name', 'IQM (Finland)'),
(92351, 76691, 'no_lang_code', 'name', 'Vulintus (United States)'),
(92352, 76692, 'en', 'name', 'Joint Center for Quantum Information and Computer Science'),
(92353, 76693, 'no_lang_code', 'name', 'Springstar (United States)'),
(92354, 76694, 'no_lang_code', 'name', 'Amstein + Walthert (Switzerland)'),
(92355, 76695, 'en', 'name', 'Shanghai Zhangjiang Laboratory'),
(92356, 76695, 'zh', 'name', 'äøŠęµ·ęŽØčæ›ē§‘ęŠ€åˆ›ę–°äø­åæƒå»ŗč®¾åŠžå…¬å®¤'),
(92357, 76696, 'no_lang_code', 'name', 'Brightwake (United Kingdom)'),
(92358, 76697, 'es', 'name', 'Fundación Salvadoreña para el Desarrollo Económico y Social'),
(92359, 76698, 'en', 'name', 'Togus VA Medical Center'),
(92360, 76699, 'en', 'name', 'Animal Quarantine Office'),
(92361, 76699, 'ne', 'name', 'ą¤Ŗą¤¶ą„ ą¤•ą„ā€ą¤µą¤¾ą¤°ą„‡ą¤Øą„ą¤Ÿą¤¾ą¤ˆą¤Ø ą¤•ą¤¾ą¤°ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(92362, 76700, 'no_lang_code', 'name', 'Urkund (Sweden)'),
(92363, 76701, 'no_lang_code', 'name', 'Universal-Kugellager-Fabrik (Germany)'),
(92364, 76702, 'en', 'name', 'Armaments Research Board'),
(92365, 76702, 'hi', 'name', 'ą¤†ą¤Æą„ą¤§ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤¬ą„‹ą¤°ą„ą¤”'),
(92366, 76703, 'hi', 'name', 'बल उमंग ą¤¦ą„ƒą¤·ą„ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(92367, 76703, 'no_lang_code', 'name', 'Bal Umang Drishya Sanstha'),
(92368, 76704, 'no_lang_code', 'name', 'Particle Flux Analytics (United States)'),
(92369, 76705, 'da', 'name', 'Nordisk Laboratorium for Luminescensdatering'),
(92370, 76705, 'en', 'name', 'Nordic Laboratory for Luminescence Dating'),
(92371, 76706, 'en', 'name', 'Hartpury University'),
(92372, 76707, 'en', 'name', 'The Shoto Museum of Art'),
(92373, 76707, 'ja', 'name', 'ęø‹č°·åŒŗē«‹ę¾ę¶›ē¾Žč”“é¤Ø'),
(92374, 76708, 'en', 'name', 'Port of Antwerp'),
(92375, 76709, 'en', 'name', 'Environmental Construction College'),
(92376, 76709, 'ja', 'name', 'åå¤å±‹ē’°å¢ƒå»ŗčØ­å°‚é–€å­¦ę ”'),
(92377, 76710, 'en', 'name', 'Insight Healthcare'),
(92378, 76711, 'no_lang_code', 'name', 'LeikTec (Slovakia)'),
(92379, 76712, 'no_lang_code', 'name', 'New Century Pharmaceuticals (United States)'),
(92380, 76713, 'en', 'name', 'Albuquerque Cat Clinic'),
(92381, 76714, 'no_lang_code', 'name', 'Royal HaskoningDHV (Netherlands)'),
(92382, 76715, 'en', 'name', 'Mianyang City Center for Disease Control and Prevention'),
(92383, 76715, 'zh', 'name', 'ē»µé˜³åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(92384, 76716, 'no_lang_code', 'name', 'Sinocelltech Group (China)'),
(92385, 76716, 'zh', 'name', 'äø­å›½ē»†čƒžęŠ€ęœÆé›†å›¢ęœ‰é™å…¬åø'),
(92386, 76717, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒ³ć‚®'),
(92387, 76717, 'no_lang_code', 'name', 'Sangi (Japan)'),
(92388, 76718, 'en', 'name', 'Martinsburg VA Medical Center'),
(92389, 76719, 'fr', 'name', 'Regroupement QuƩbƩcois sur les MatƩriaux de Pointe'),
(92390, 76720, 'no_lang_code', 'name', 'Informacne Technologie A Konzultacie (Slovakia)'),
(92391, 76721, 'de', 'name', 'Forschungsinstitut für biologischen Landbau'),
(92392, 76722, 'en', 'name', 'Eurasia Institutes'),
(92393, 76723, 'no_lang_code', 'name', 'Novanta (United States)'),
(92394, 76724, 'no_lang_code', 'name', 'Piolax (Japan)'),
(92395, 76725, 'en', 'name', 'Louis A. Johnson VA Medical Center'),
(92396, 76726, 'en', 'name', 'Shenzhen Chronic Disease Prevention Center'),
(92397, 76726, 'zh', 'name', 'ę·±åœ³åø‚ę…¢ę€§ē—…é˜²ę²»äø­åæƒ'),
(92398, 76727, 'no_lang_code', 'name', 'RUA Life Sciences (United Kingdom)'),
(92399, 76728, 'no_lang_code', 'name', 'Amicrobe (United States)'),
(92400, 76729, 'en', 'name', 'Institute of Business Leadership'),
(92401, 76730, 'en', 'name', 'The Japanese Society of Gastroenterological Surgery'),
(92402, 76730, 'ja', 'name', 'ę—„ęœ¬ę¶ˆåŒ–å™Øå¤–ē§‘å­¦ä¼š'),
(92403, 76731, 'no_lang_code', 'name', 'Pola Chemical Industries (Japan)'),
(92404, 76732, 'en', 'name', 'General Administration of Sport of China'),
(92405, 76732, 'zh', 'name', '国家体育总局'),
(92406, 76733, 'en', 'name', 'Hangzhou Women’s Hospital'),
(92407, 76733, 'zh', 'name', 'ę­å·žåø‚å¦‡ē§‘åŒ»é™¢'),
(92408, 76734, 'no_lang_code', 'name', 'Refocus Group (United States)'),
(92409, 76735, 'no_lang_code', 'name', 'hySolutions (Germany)'),
(92410, 76736, 'no_lang_code', 'name', 'Institut für Innovative Technologien (Germany)'),
(92411, 76737, 'en', 'name', 'Erie VA Medical Center'),
(92412, 76738, 'no_lang_code', 'name', 'Yaso Therapeutics (United States)'),
(92413, 76739, 'en', 'name', 'Kushiro City Museum'),
(92414, 76739, 'ja', 'name', 'é‡§č·Æåø‚ē«‹åšē‰©é¤Ø'),
(92415, 76740, 'no_lang_code', 'name', 'Polymer Exploration Group (United States)'),
(92416, 76741, 'no_lang_code', 'name', 'Geothermie Neubrandenburg (Germany)'),
(92417, 76742, 'en', 'name', 'Ayurvet Research Foundation'),
(92418, 76743, 'en', 'name', 'Shandong Coalfield Geological Planning and Investigation Institute'),
(92419, 76744, 'de', 'name', 'Verein für Psychosoziale Initiativen'),
(92420, 76745, 'fr', 'name', 'Centre D''analyse et de Recherche sur les Politiques Economiques et Sociales du Cameroun'),
(92421, 76746, 'en', 'name', 'Penang Development Corporation'),
(92422, 76746, 'ms', 'name', 'Perbadanan Pembangunan Pulau Pinang'),
(92423, 76747, 'en', 'name', 'Collaborative Innovation Center of Chemical Science and Engineering Tianjin'),
(92424, 76747, 'zh', 'name', 'å¤©ę“„åŒ–å­¦åŒ–å·„ååŒåˆ›ę–°äø­åæƒ'),
(92425, 76748, 'ja', 'name', 'ę—„ęœ¬ę°“ē”£ę Ŗå¼ä¼šē¤¾'),
(92426, 76748, 'no_lang_code', 'name', 'Nippon Suisan Kaisha (Japan)'),
(92427, 76749, 'en', 'name', 'Ishigaki City Library'),
(92428, 76749, 'ja', 'name', 'ēŸ³åž£åø‚ē«‹å›³ę›øé¤Ø'),
(92429, 76750, 'no_lang_code', 'name', 'Museum of SpiÅ”'),
(92430, 76751, 'en', 'name', 'National Supercomputing Center in Shenzhen'),
(92431, 76751, 'zh', 'name', 'å›½å®¶č¶…ēŗ§č®”ē®—ę·±åœ³äø­åæƒ'),
(92432, 76752, 'no_lang_code', 'name', 'Drive-CarSharing (Germany)'),
(92433, 76753, 'en', 'name', 'Technologies for Safe and Efficient Transportation'),
(92434, 76754, 'en', 'name', 'Guangxi Open University'),
(92435, 76754, 'zh', 'name', '广脿开放大学'),
(92436, 76755, 'no_lang_code', 'name', 'Aurum Biosciences (United Kingdom)'),
(92437, 76756, 'en', 'name', 'Chisholm Institute'),
(92438, 76757, 'en', 'name', 'Islamic Azad University, Shahr-e-Qods Branch'),
(92439, 76757, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓهر قدس'),
(92440, 76758, 'en', 'name', 'The CART Fund'),
(92441, 76759, 'fr', 'name', 'Analyses et Diagnostics Medicaux'),
(92442, 76759, 'no_lang_code', 'name', 'ADMED (Switzerland)'),
(92443, 76760, 'en', 'name', 'Hefei Infectious Disease Hospital'),
(92444, 76760, 'zh', 'name', 'åˆč‚„åø‚ä¼ ęŸ“ē—…åŒ»é™¢'),
(92445, 76761, 'en', 'name', 'West Texas VA Health Care System'),
(92446, 76762, 'no_lang_code', 'name', 'Aspect Imaging (Israel)'),
(92447, 76763, 'no_lang_code', 'name', 'Savari (United States)'),
(92448, 76764, 'no_lang_code', 'name', 'Ascendis Pharma (Denmark)'),
(92449, 76765, 'no_lang_code', 'name', 'SMART Global Holdings (United States)'),
(92450, 76766, 'no_lang_code', 'name', 'Kebotix (United States)'),
(92451, 76767, 'en', 'name', 'Chartered Institute of Arbitrators'),
(92452, 76768, 'en', 'name', 'Province of Antwerp'),
(92453, 76768, 'nl', 'name', 'Provincie Antwerpen'),
(92454, 76769, 'en', 'name', 'Elemental Excelerator'),
(92455, 76770, 'en', 'name', 'DuPage Health Coalition'),
(92456, 76771, 'no_lang_code', 'name', 'Rubicon Technology (United States)'),
(92457, 76772, 'no_lang_code', 'name', 'CrossRoads Extremity Systems (United States)'),
(92458, 76773, 'en', 'name', 'METRANS Transportation Center'),
(92459, 76774, 'en', 'name', 'Transportation Research Center for Livable Communities'),
(92460, 76775, 'no_lang_code', 'name', 'Kurz (Germany)'),
(92461, 76776, 'no_lang_code', 'name', 'Qubitekk (United States)'),
(92462, 76777, 'no_lang_code', 'name', 'Coventry & Warwickshire Local Enterprise Partnership (United Kingdom)'),
(92463, 76778, 'no_lang_code', 'name', 'UNE Partnerships (Australia)'),
(92464, 76779, 'en', 'name', 'Qianjiang Central Hospital'),
(92465, 76779, 'zh', 'name', 'ę½œę±Ÿåø‚äø­åæƒåŒ»é™¢'),
(92466, 76780, 'no_lang_code', 'name', 'Helvetica Exploration Services (Switzerland)'),
(92467, 76781, 'no_lang_code', 'name', 'SihuanPharm (China)'),
(92468, 76782, 'de', 'name', 'Agentur für Qualitätssicherung und Akkreditierung Austria'),
(92469, 76782, 'en', 'name', 'Agency for Quality Assurance and Accreditation Austria'),
(92470, 76783, 'no_lang_code', 'name', 'SeaSpine (United States)'),
(92471, 76784, 'no_lang_code', 'name', 'Galapagos (France)'),
(92472, 76785, 'en', 'name', 'Institut Input'),
(92473, 76786, 'en', 'name', 'Intelligent Synthetic Biology Center'),
(92474, 76786, 'ko', 'name', 'ģ§€ėŠ„ķ˜• ė°”ģ“ģ˜¤ģ‹œģŠ¤ķ…œ 설계 ė° 합성 연구단'),
(92475, 76787, 'no_lang_code', 'name', 'Akademie Überlingen (Germany)'),
(92476, 76788, 'en', 'name', 'Gansu Coalfield Geology Bureau'),
(92477, 76788, 'zh', 'name', 'ē”˜č‚ƒē…¤ē”°åœ°č“Øå±€'),
(92478, 76789, 'ja', 'name', 'ćƒ•ćƒžć‚­ćƒ©ćƒ¼'),
(92479, 76789, 'no_lang_code', 'name', 'Fumakilla (Japan)'),
(92480, 76790, 'ja', 'name', 'ćƒ•ć‚”ćƒŸćƒŖćƒ¼ć‚¤ćƒŠćƒ€ę Ŗå¼ä¼šē¤¾'),
(92481, 76790, 'no_lang_code', 'name', 'Family Inada (Japan)'),
(92482, 76791, 'en', 'name', 'International Council on Education for Teaching'),
(92483, 76792, 'ja', 'name', 'ę—„ę®ę Ŗå¼ä¼šē¤¾'),
(92484, 76792, 'no_lang_code', 'name', 'JGC (Japan)'),
(92485, 76793, 'no_lang_code', 'name', 'Mayne Pharma (Australia)'),
(92486, 76794, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ фізікі, Š¼Š°Ń‚ŃŠ¼Š°Ń‚Ń‹ŠŗŃ– і інфарматыкі'),
(92487, 76794, 'en', 'name', 'Department of Physics, Mathematics and Informatics'),
(92488, 76795, 'en', 'name', 'Parenting Research Centre'),
(92489, 76796, 'en', 'name', 'Public Health Scotland'),
(92490, 76797, 'no_lang_code', 'name', 'Vektrex (United States)'),
(92491, 76798, 'en', 'name', 'Human Fertilisation and Embryology Authority'),
(92492, 76799, 'no_lang_code', 'name', 'Materialprüfungsamt NRW (Germany)'),
(92493, 76800, 'en', 'name', 'Veterinary Biological and Research Institute'),
(92494, 76801, 'no_lang_code', 'name', 'Burcon (Canada)'),
(92495, 76802, 'no_lang_code', 'name', 'Aquanova (Germany)'),
(92496, 76803, 'no_lang_code', 'name', 'Koh Young Technology (South Korea)'),
(92497, 76804, 'en', 'name', 'Rwanda Development Board'),
(92498, 76805, 'en', 'name', 'Metropolitan International University'),
(92499, 76806, 'no_lang_code', 'name', 'Premier Dental Products (United States)'),
(92500, 76807, 'no_lang_code', 'name', 'WestMountain Asset Management (United States)'),
(92501, 76808, 'en', 'name', 'Reef Ecologic'),
(92502, 76809, 'de', 'name', 'Institut für Polymerwerkstoffe'),
(92503, 76810, 'no_lang_code', 'name', 'FGP (Italy)'),
(92504, 76811, 'de', 'name', 'Institut für nachhaltige Berufsbildung & Management-Services'),
(92505, 76811, 'en', 'name', 'Institute for Sustainable TVET & Management Services'),
(92506, 76812, 'no_lang_code', 'name', 'Radix (United States)'),
(92507, 76813, 'en', 'name', 'Japan Electronics College'),
(92508, 76813, 'ja', 'name', 'ę—„ęœ¬é›»å­å°‚é–€å­¦ę ”'),
(92509, 76814, 'no_lang_code', 'name', 'Medtrade (United Kingdom)'),
(92510, 76815, 'no_lang_code', 'name', 'Bentley Systems (United States)'),
(92511, 76816, 'en', 'name', 'Systems Engineering Society of China'),
(92512, 76816, 'zh', 'name', 'äø­å›½ē³»ē»Ÿå·„ēØ‹å­¦ä¼š'),
(92513, 76817, 'no_lang_code', 'name', 'Conformis (United States)'),
(92514, 76818, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŲŖŲ±ŲØŁŠŲ© بالرستاق'),
(92515, 76818, 'en', 'name', 'Rustaq College of Education'),
(92516, 76819, 'no_lang_code', 'name', 'Zdye (United States)'),
(92517, 76820, 'en', 'name', 'Fujian Institute of Education'),
(92518, 76820, 'zh', 'name', 'ē¦å»ŗę•™č‚²å­¦é™¢'),
(92519, 76821, 'no_lang_code', 'name', 'Parabilis Space Technologies (United States)'),
(92520, 76822, 'no_lang_code', 'name', 'National Institutes of Pharmaceutical Research and Development (China)'),
(92521, 76822, 'zh', 'name', 'äø­å›½åŒ»čÆē ”ē©¶å¼€å‘äø­åæƒęœ‰é™å…¬åø'),
(92522, 76823, 'no_lang_code', 'name', 'Kode Biotech (New Zealand)'),
(92523, 76824, 'no_lang_code', 'name', 'ScinoPharm Taiwan (Taiwan)'),
(92524, 76824, 'zh', 'name', 'å°ē£ē„žéš†č‚”ä»½ęœ‰é™å…¬åø'),
(92525, 76825, 'en', 'name', 'Center for Collaborative Interdisciplinary Sciences'),
(92526, 76826, 'no_lang_code', 'name', 'Wisdom Health (United States)'),
(92527, 76827, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ بن زايد Ł„Ł„Ų°ŁƒŲ§Ų” Ų§Ł„Ų§ŲµŲ·Ł†Ų§Ų¹ŁŠ'),
(92528, 76827, 'en', 'name', 'Mohamed bin Zayed University of Artificial Intelligence'),
(92529, 76828, 'de', 'name', 'Asys Automatisierungssysteme'),
(92530, 76828, 'no_lang_code', 'name', 'ASYS Group (Germany)'),
(92531, 76829, 'no_lang_code', 'name', 'Manav Vikas Evam Sewa Sansthan'),
(92532, 76830, 'en', 'name', 'Carl Vinson VA Medical Center'),
(92533, 76831, 'no_lang_code', 'name', 'Diatex (France)'),
(92534, 76832, 'de', 'name', 'Institut für sozialwissenschaftliche Beratung'),
(92535, 76832, 'en', 'name', 'Institute for Socio-Scientific Consultancy'),
(92536, 76833, 'no_lang_code', 'name', 'Shifamed (United States)'),
(92537, 76834, 'en', 'name', 'NEADS World Class Service Dogs Change'),
(92538, 76835, 'de', 'name', 'Landeskriminalamt Niedersachsen'),
(92539, 76836, 'de', 'name', 'Gisela Vogel Institut für berufliche Bildung'),
(92540, 76837, 'en', 'name', 'Bozhou People''s Hospital'),
(92541, 76837, 'zh', 'name', 'äŗ³å·žåø‚äŗŗę°‘åŒ»é™¢'),
(92542, 76838, 'no_lang_code', 'name', 'Vegum (Slovakia)'),
(92543, 76839, 'ja', 'name', 'ćƒŠć‚¬ć‚»ć‚±ćƒ ćƒ†ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(92544, 76839, 'no_lang_code', 'name', 'Nagase ChemteX (Japan)'),
(92545, 76840, 'no_lang_code', 'name', 'Chemnitzer Werkstoffmechanik GmbH (Germany)'),
(92546, 76841, 'no_lang_code', 'name', 'Edan (China)'),
(92547, 76842, 'no_lang_code', 'name', 'Forschungs- und Applikationslabor Plasmatechnik (Germany)'),
(92548, 76843, 'no_lang_code', 'name', 'Forma Therapeutics (United States)'),
(92549, 76844, 'de', 'name', 'Fraunhofer-Arbeitsgruppe für Supply Chain Services'),
(92550, 76844, 'en', 'name', 'Fraunhofer Center for Applied Research on Supply Chain Services'),
(92551, 76845, 'en', 'name', 'Guangdong Institute for Drug Control'),
(92552, 76845, 'zh', 'name', 'å¹æäøœēœčÆå“ę£€éŖŒę‰€'),
(92553, 76846, 'no_lang_code', 'name', 'Comeb (Italy)'),
(92554, 76847, 'en', 'name', 'Chiba Prefectural Agriculture and Forestry Research Center Forest Research Institute'),
(92555, 76847, 'ja', 'name', 'åƒč‘‰ēœŒč¾²ęž—ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼ę£®ęž—ē ”ē©¶ę‰€'),
(92556, 76848, 'en', 'name', 'Center for Indonesian Policy Studies'),
(92557, 76849, 'no_lang_code', 'name', 'Zobele (Spain)'),
(92558, 76850, 'no_lang_code', 'name', 'Versitech (United States)'),
(92559, 76851, 'en', 'name', 'Fjellhaug International University College'),
(92560, 76851, 'no', 'name', 'Fjellhaug Internasjonale HĆøgskole'),
(92561, 76852, 'de', 'name', 'FernwƤrme-Forschungsinstitut'),
(92562, 76852, 'en', 'name', 'District Heating Research Institute'),
(92563, 76853, 'en', 'name', 'Atlanta University Center Robert W. Woodruff Library'),
(92564, 76854, 'no_lang_code', 'name', 'Swallow Solutions (United States)'),
(92565, 76855, 'no_lang_code', 'name', 'Molecular Microbiology and Genomics Consultants (Germany)'),
(92566, 76856, 'de', 'name', 'Max-Planck-Institut für Verhaltensbiologie'),
(92567, 76856, 'en', 'name', 'Max Planck Institute of Animal Behavior'),
(92568, 76857, 'en', 'name', 'National Center for Intermodal Transportation'),
(92569, 76858, 'en', 'name', 'Energy Safety Research Institute'),
(92570, 76859, 'de', 'name', 'TUMAINI-Institut für Präventionsmanagement'),
(92571, 76860, 'en', 'name', 'Vlokh Institute of Physical Optics'),
(92572, 76860, 'uk', 'name', 'IŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізичної оптики iменi Šž. Š“. Влоха'),
(92573, 76861, 'no_lang_code', 'name', 'Relievant Medsystem (United States)'),
(92574, 76862, 'en', 'name', 'Conquer Cancer Foundation'),
(92575, 76863, 'en', 'name', 'Alaska Wildlife Alliance'),
(92576, 76864, 'de', 'name', 'SÜSS MicroOptics'),
(92577, 76864, 'no_lang_code', 'name', 'Suss Microoptics (Switzerland)'),
(92578, 76865, 'en', 'name', 'National Public Health Laboratory'),
(92579, 76866, 'no_lang_code', 'name', 'ElFys (Finland)'),
(92580, 76867, 'en', 'name', 'Radio, Film & TV Design and Research Institute'),
(92581, 76868, 'en', 'name', 'Northlake Behavioral Health System'),
(92582, 76869, 'no_lang_code', 'name', 'optX Imaging Systems (United States)'),
(92583, 76870, 'en', 'name', 'Canadian Quantum Research Center'),
(92584, 76871, 'no_lang_code', 'name', 'Appili Therapeutics (Canada)'),
(92585, 76872, 'no_lang_code', 'name', 'True (United States)'),
(92586, 76873, 'de', 'name', 'Pestel Institut'),
(92587, 76874, 'no_lang_code', 'name', 'COLAS Slovakia (Slovakia)'),
(92588, 76875, 'no_lang_code', 'name', 'Imerys (France)'),
(92589, 76876, 'no_lang_code', 'name', 'InferVision (China)'),
(92590, 76877, 'it', 'name', 'Agenzia Regionale Sanitaria della Puglia'),
(92591, 76878, 'no_lang_code', 'name', 'Apogee Semiconductor (United States)'),
(92592, 76879, 'pt', 'name', 'Instituto Argonauta'),
(92593, 76880, 'no_lang_code', 'name', 'Allwinner Technology (China)'),
(92594, 76880, 'zh', 'name', 'å…Øåæ—'),
(92595, 76881, 'de', 'name', 'DEUTSCHES ZENTRUM DES INTERNATIONALEN THEATERINSTITUTS'),
(92596, 76881, 'en', 'name', 'German Centre of the International Theatre Institute'),
(92597, 76882, 'de', 'name', 'FlƤmisches Parlament'),
(92598, 76882, 'en', 'name', 'Flemish Parliament'),
(92599, 76882, 'fr', 'name', 'Parlement Flamand'),
(92600, 76882, 'nl', 'name', 'Vlaams Parlement'),
(92601, 76883, 'no_lang_code', 'name', 'DeRoyal (United States)'),
(92602, 76884, 'de', 'name', 'Johann-Adam-Mƶhler-Institut für Ɩkumenik'),
(92603, 76884, 'en', 'name', 'Johann Adam Mƶhler Institute for Ecumenism'),
(92604, 76885, 'no_lang_code', 'name', 'SafelyYou (United States)'),
(92605, 76886, 'no_lang_code', 'name', 'Systemech (United States)'),
(92606, 76887, 'en', 'name', 'Anthrologica'),
(92607, 76888, 'en', 'name', 'The SILVA Ribosomal RNA Database Project'),
(92608, 76889, 'de', 'name', 'Planetarium Bochum'),
(92609, 76890, 'en', 'name', 'Kagoshima City Aquarium Foundation'),
(92610, 76890, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ é¹æå…å³¶åø‚ę°“ę—é¤Øå…¬ē¤¾'),
(92611, 76891, 'no_lang_code', 'name', 'Scripps Laboratories (United States)'),
(92612, 76892, 'en', 'name', 'Center for Research in Molecular Medicine and Chronic Diseases'),
(92613, 76892, 'es', 'name', 'Centro singular de investigación de Galicia'),
(92614, 76893, 'no_lang_code', 'name', 'Terason (United States)'),
(92615, 76894, 'de', 'name', 'Deutscher Energieholz- und Pellet-Verband'),
(92616, 76895, 'en', 'name', 'African University For Cooperative Development'),
(92617, 76895, 'fr', 'name', 'UniversitƩ Africaine de DƩveloppement CoopƩratif'),
(92618, 76896, 'en', 'name', 'Global Antibiotic Research & Development Partnership'),
(92619, 76897, 'no_lang_code', 'name', 'SysLogic (United States)'),
(92620, 76898, 'en', 'name', 'Toyama Science Museum'),
(92621, 76898, 'ja', 'name', 'åÆŒå±±åø‚ē§‘å­¦åšē‰©é¤Ø'),
(92622, 76899, 'de', 'name', 'Institut für kybernetisches Planen und Bauen'),
(92623, 76900, 'no_lang_code', 'name', 'KemPharm (United States)'),
(92624, 76901, 'no_lang_code', 'name', 'Pixium Vision (France)'),
(92625, 76902, 'no_lang_code', 'name', 'Materialise (United Kingdom)'),
(92626, 76903, 'en', 'name', 'Jiangxi Chest Hospital'),
(92627, 76903, 'zh', 'name', 'ę±Ÿč„æēœčƒøē§‘åŒ»é™¢'),
(92628, 76904, 'en', 'name', 'Institute of Animal Biology NAAS'),
(92629, 76904, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біології тварин ŠŠŠŠ'),
(92630, 76905, 'no_lang_code', 'name', 'Aroma Marketing (Slovakia)'),
(92631, 76906, 'no_lang_code', 'name', 'Delmar (Canada)'),
(92632, 76907, 'en', 'name', 'Department of Animal Husbandry and Veterinary'),
(92633, 76908, 'en', 'name', 'Botanical Society of China'),
(92634, 76908, 'zh', 'name', 'äø­å›½ę¤ē‰©å­¦ä¼š'),
(92635, 76909, 'no_lang_code', 'name', 'Lyell Immunopharma (United States)'),
(92636, 76910, 'en', 'name', 'North American Renderers Association'),
(92637, 76911, 'de', 'name', 'Landesforst Mecklenburg‑Vorpommern'),
(92638, 76912, 'en', 'name', 'Association for Environmental Health and Sciences Foundation'),
(92639, 76913, 'de', 'name', 'Kuratorium für Forschung im Küsteningenieurwesen'),
(92640, 76913, 'en', 'name', 'German Coastal Engineering Research Council'),
(92641, 76914, 'de', 'name', 'Stiftung Warentest'),
(92642, 76915, 'no_lang_code', 'name', 'Seqirus (United Kingdom)'),
(92643, 76916, 'en', 'name', 'Spinney Vets'),
(92644, 76917, 'no_lang_code', 'name', 'SpectrumK (Germany)'),
(92645, 76918, 'en', 'name', 'Qujiang People''s Hospital'),
(92646, 76918, 'zh', 'name', 'ę›²ę±ŸåŽæäŗŗę°‘åŒ»é™¢'),
(92647, 76919, 'pt', 'name', 'Clinica De Doencas Renais De Brasilia'),
(92648, 76920, 'en', 'name', 'World Health Organization - Jordan'),
(92649, 76921, 'en', 'name', 'Sheridan VA Medical Center'),
(92650, 76922, 'en', 'name', 'Ningbo Municipal Bureau of Ecology and Environment'),
(92651, 76923, 'no_lang_code', 'name', 'Fertin Pharma (Denmark)'),
(92652, 76924, 'en', 'name', 'Defence Materials and Stores Research and Development Establishment'),
(92653, 76924, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤øą¤¾ą¤®ą¤—ą„ą¤°ą„€ ą¤ą¤‚ą¤µ ą¤­ą¤£ą„ą¤”ą¤¾ą¤° ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø तऄा विकास ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾'),
(92654, 76925, 'en', 'name', 'Livestock Breeding and Veterinary Department'),
(92655, 76925, 'my', 'name', 'မွေးမြူရေးနှင့် į€€į€Æį€žį€›į€±į€ø į€¦į€øį€…į€®į€øį€Œį€¬į€”'),
(92656, 76926, 'no_lang_code', 'name', 'Wetech (Germany)'),
(92657, 76927, 'de', 'name', 'Institut für Hygiene und Umwelt'),
(92658, 76928, 'no_lang_code', 'name', 'NoNO (Canada)'),
(92659, 76929, 'no_lang_code', 'name', 'Cook Biotech (United States)'),
(92660, 76930, 'no_lang_code', 'name', 'Adc Therapeutics (Switzerland)'),
(92661, 76931, 'en', 'name', 'Human Technopole'),
(92662, 76932, 'en', 'name', 'Chiba-Nishi General Hospital'),
(92663, 76932, 'ja', 'name', 'åƒč‘‰č„æē·åˆē—…é™¢'),
(92664, 76933, 'no_lang_code', 'name', 'SpineThera (United States)'),
(92665, 76934, 'no_lang_code', 'name', 'Tenet 3 (United States)'),
(92666, 76935, 'no_lang_code', 'name', 'OrthAlign (United States)'),
(92667, 76936, 'no_lang_code', 'name', 'Wuhan Youfu Hospital'),
(92668, 76936, 'zh', 'name', 'ę­¦ę±‰åø‚ä¼˜ęŠšåŒ»é™¢'),
(92669, 76937, 'no_lang_code', 'name', 'Kazia Therapeutics (Australia)'),
(92670, 76938, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č† åŽŸē—…ē ”ē©¶ę‰€'),
(92671, 76938, 'no_lang_code', 'name', 'Institute for Rheumatic Diseases (Japan)'),
(92672, 76939, 'en', 'name', 'Virtual University of Uganda'),
(92673, 76940, 'no_lang_code', 'name', 'Institut für Arbeitswissenschaft und Unternehmensoptimierung (Germany)'),
(92674, 76941, 'no_lang_code', 'name', 'Eyesense (Germany)'),
(92675, 76942, 'en', 'name', 'Safer Medicines Trust'),
(92676, 76943, 'en', 'name', 'State Council of Science Technology & Environment, Meghalaya'),
(92677, 76944, 'en', 'name', 'Hunan Hydro&Power Design Institute'),
(92678, 76944, 'zh', 'name', 'ę¹–å—ę°“åˆ©ę°“ē”µå‹˜ęµ‹č®¾č®”ē ”ē©¶é™¢'),
(92679, 76945, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© النقد Ų§Ł„Ų¹Ų±ŲØŁŠ Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠā€Ž'),
(92680, 76945, 'en', 'name', 'Saudi Arabian Monetary Authority'),
(92681, 76946, 'de', 'name', 'Mathe im Leben'),
(92682, 76947, 'en', 'name', 'The Academic Association for Contemporary European Studies'),
(92683, 76948, 'no_lang_code', 'name', 'Shanghai Senyi Medical Technology (China)'),
(92684, 76949, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Statistique et d''Ɖconomie AppliquĆ©e'),
(92685, 76950, 'es', 'name', 'Centro Regional de Hemodonación'),
(92686, 76951, 'en', 'name', 'Advanced Numerical Research and Analysis Group'),
(92687, 76951, 'hi', 'name', 'ą¤‰ą¤Øą„ą¤Øą„ą¤¤ ą¤…ą¤‚ą¤•ą„€ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø तऄा ą¤µą¤æą¤¶ą„ą¤²ą„‡ą¤·ą¤£ ą¤øą¤®ą„‚ą¤¹'),
(92688, 76952, 'no_lang_code', 'name', 'Silk Road Medical (United States)'),
(92689, 76953, 'en', 'name', 'Middle East Institute of Japan'),
(92690, 76953, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ äø­ę±čŖæęŸ»ä¼š'),
(92691, 76954, 'en', 'name', 'Defence Institute of Psychological Research'),
(92692, 76954, 'hi', 'name', 'ą¤®ą¤Øą„‹ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ ą¤°ą¤•ą„ą¤·ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(92693, 76955, 'no_lang_code', 'name', 'Winning Health Technology Group (China)'),
(92694, 76956, 'no_lang_code', 'name', 'Biozeen (India)'),
(92695, 76957, 'no_lang_code', 'name', 'Zepto (United States)'),
(92696, 76958, 'en', 'name', 'Association of Colombian Faculties of Engineering'),
(92697, 76958, 'es', 'name', 'Asociación Colombiana de Facultades de Ingeniería'),
(92698, 76959, 'en', 'name', 'Boxing People''s Hospital'),
(92699, 76959, 'zh', 'name', 'åšå…“åŽæäŗŗę°‘åŒ»é™¢'),
(92700, 76960, 'no_lang_code', 'name', 'Flight Calibration Services (Germany)'),
(92701, 76961, 'en', 'name', 'Health Crescendos Foundation'),
(92702, 76962, 'no_lang_code', 'name', 'Apyx Medical (United States)'),
(92703, 76963, 'de', 'name', 'Ɩsterreichisches Rotes Kreuz'),
(92704, 76963, 'en', 'name', 'Austrian Red Cross'),
(92705, 76964, 'no_lang_code', 'name', 'Inphi (United Kingdom)'),
(92706, 76965, 'no_lang_code', 'name', 'Avinger (United States)'),
(92707, 76966, 'no_lang_code', 'name', 'Volk (United States)'),
(92708, 76967, 'no_lang_code', 'name', 'Insync Technology (United Kingdom)'),
(92709, 76968, 'no_lang_code', 'name', 'EControl-Glas (Germany)'),
(92710, 76969, 'no_lang_code', 'name', 'Fahrenheit (Germany)'),
(92711, 76970, 'no_lang_code', 'name', 'Ultra Biotech (India)'),
(92712, 76971, 'bn', 'name', 'ą¦¬ą¦æą¦¬ą§‡ą¦•ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦¬ą¦¾ą¦Æą¦¼ą§‹ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(92713, 76971, 'en', 'name', 'Vivekananda Institute of Biotechnology'),
(92714, 76972, 'de', 'name', 'Institut für Regionalmanagement'),
(92715, 76973, 'no_lang_code', 'name', 'Eurostep (United Kingdom)'),
(92716, 76974, 'no_lang_code', 'name', 'Probus (United States)'),
(92717, 76975, 'en', 'name', 'Institute of Computer Vision and Applied Computer Sciences'),
(92718, 76976, 'de', 'name', 'Feuerwehr Dortmund'),
(92719, 76977, 'no_lang_code', 'name', 'Finnvera (Finland)'),
(92720, 76978, 'de', 'name', 'Innovationstransfer- und Forschungsinstitut Schwerin'),
(92721, 76979, 'no_lang_code', 'name', 'SeNA Research (United States)'),
(92722, 76980, 'no_lang_code', 'name', 'Holtzbrinck Publishing Group (Germany)'),
(92723, 76981, 'no_lang_code', 'name', 'Redwood Scientific (United States)'),
(92724, 76982, 'no_lang_code', 'name', 'Schunk (United Kingdom)'),
(92725, 76983, 'en', 'name', 'Office of Science and Technology Policy'),
(92726, 76984, 'en', 'name', 'Uganda Petroleum Institute'),
(92727, 76985, 'no_lang_code', 'name', 'Südzucker (Germany)'),
(92728, 76986, 'ar', 'name', 'Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© لأمراض الدم ŁˆŲ§Ł„ŲØŲ­ŁˆŲ«'),
(92729, 76986, 'en', 'name', 'The Egyptian Society of Hematology and Research'),
(92730, 76987, 'en', 'name', 'Research ICT Africa'),
(92731, 76988, 'no_lang_code', 'name', 'Way Industries (Slovakia)'),
(92732, 76989, 'no_lang_code', 'name', 'Deerfield (United States)'),
(92733, 76990, 'no_lang_code', 'name', 'Soliculture (United States)'),
(92734, 76991, 'en', 'name', 'South African Institute of International Affairs'),
(92735, 76992, 'no_lang_code', 'name', 'APC Europe (Spain)'),
(92736, 76993, 'de', 'name', 'Landwirtschaftlichen Zentrums Baden-Württemberg​'),
(92737, 76994, 'en', 'name', 'scidecode science consulting & research'),
(92738, 76995, 'no_lang_code', 'name', 'RHK Technology (United States)'),
(92739, 76996, 'sk', 'name', 'AsociƔcia Doktorandov Slovenska'),
(92740, 76997, 'no_lang_code', 'name', 'Convalife (China)'),
(92741, 76998, 'de', 'name', 'Behörde für Wissenschaft, Forschung und Gleichstellung'),
(92742, 76999, 'en', 'name', 'Virginia Department of Veterans Services'),
(92743, 77000, 'no_lang_code', 'name', 'Sedecal Medical Imaging (Spain)'),
(92744, 77001, 'ja', 'name', 'ę³‰å±‹åšå¤é¤Ø'),
(92745, 77001, 'no_lang_code', 'name', 'Sen-oku HakukoKan Museum'),
(92746, 77002, 'en', 'name', 'Chinese Society for Plant Pathology'),
(92747, 77002, 'zh', 'name', 'äø­å›½ę¤ē‰©ē—…ē†å­¦ä¼š'),
(92748, 77003, 'no_lang_code', 'name', 'CTL Amedica (United States)'),
(92749, 77004, 'no_lang_code', 'name', 'PiDust Quantum Computing (Greece)'),
(92750, 77005, 'de', 'name', 'Hessisches Ministerium für Wirtschaft, Energie, Verkehr und Wohnen'),
(92751, 77005, 'en', 'name', 'Hessian Ministry of Economics, Energy, Transport and Housing'),
(92752, 77006, 'en', 'name', 'Infectious Diseases Institute'),
(92753, 77007, 'en', 'name', 'Foundation for Agricultural Resources Management and Environmental Remediation'),
(92754, 77008, 'no_lang_code', 'name', 'Mainzer Stadtwerke (Germany)'),
(92755, 77009, 'de', 'name', 'Jüdisches Museum'),
(92756, 77010, 'fr', 'name', 'Groupe de Recherche et d’Analyse AppliquĆ©es pour le DĆ©veloppement'),
(92757, 77011, 'en', 'name', 'China Editology Society of Science Periodicals'),
(92758, 77011, 'zh', 'name', 'äø­å›½ē§‘ęŠ€ęœŸåˆŠē¼–č¾‘å­¦ä¼š'),
(92759, 77012, 'en', 'name', 'Miyazaki Prefectural Library'),
(92760, 77012, 'ja', 'name', 'å®®å“ŽēœŒē«‹å›³ę›øé¤Ø'),
(92761, 77013, 'ja', 'name', 'å²”å±±ēœŒč¾²ęž—ę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼ē”Ÿē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(92762, 77013, 'no_lang_code', 'name', 'Okayama Prefecture'),
(92763, 77014, 'no_lang_code', 'name', 'Ramdo (United States)'),
(92764, 77015, 'de', 'name', 'Forschungszentrum Ultraschall'),
(92765, 77016, 'en', 'name', 'Sytenko Institute of Spine and Joint Pathology of the National Academy of Medical Sciences of Ukraine'),
(92766, 77016, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ патології хребта та ŃŃƒŠ³Š»Š¾Š±Ń–Š² імені Дитенка'),
(92767, 77017, 'no_lang_code', 'name', 'Axsome Therapeutics (United States)'),
(92768, 77018, 'en', 'name', 'Islamic Azad University of Chalous'),
(92769, 77018, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ś†Ų§Ł„ŁˆŲ³'),
(92770, 77019, 'no_lang_code', 'name', 'On Time Systems (United States)'),
(92771, 77020, 'no_lang_code', 'name', 'Radial Analytics (United States)'),
(92772, 77021, 'no_lang_code', 'name', 'Forms Syntron Information (China)'),
(92773, 77021, 'zh', 'name', 'å››ę–¹ē²¾åˆ›'),
(92774, 77022, 'no_lang_code', 'name', 'Promentis Pharmaceuticals (United States)'),
(92775, 77023, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ų®ŁŠŁˆŁ„ Ų§Ł„Ų·ŲØŁŠ Ų§Ł„ŲØŁŠŲ·Ų±ŁŠ'),
(92776, 77023, 'en', 'name', 'Equine Veterinary Medical Center'),
(92777, 77024, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŁˆŁ‚Ų§ŁŠŲ© من الأمراض ŁˆŁ…ŁƒŲ§ŁŲ­ŲŖŁ‡Ų§'),
(92778, 77024, 'en', 'name', 'Saudi Center for Disease Prevention and Control'),
(92779, 77025, 'no_lang_code', 'name', 'Energy to Power Solution (United States)'),
(92780, 77026, 'no_lang_code', 'name', 'The Open Group (United States)'),
(92781, 77027, 'fr', 'name', 'Institut SupƩrieur de l''Informatique et de Gestion'),
(92782, 77028, 'en', 'name', 'Urolife Stone Hospital'),
(92783, 77029, 'no_lang_code', 'name', 'SkySentry (United States)'),
(92784, 77030, 'no_lang_code', 'name', 'Miragen Therapeutics (United States)'),
(92785, 77031, 'no_lang_code', 'name', 'Kayser Automotive (Germany)'),
(92786, 77032, 'no_lang_code', 'name', 'Admedes (Germany)'),
(92787, 77033, 'no_lang_code', 'name', 'China-US (Henan) Hormel Cancer Institute'),
(92788, 77033, 'zh', 'name', 'ę²³å—ēœč‚æē˜¤åŒ»é™¢'),
(92789, 77034, 'de', 'name', 'Europa-Institut'),
(92790, 77035, 'no_lang_code', 'name', 'Tristel (United Kingdom)'),
(92791, 77036, 'no_lang_code', 'name', 'Hefei Everpower Equipment (China)'),
(92792, 77037, 'no_lang_code', 'name', 'ContraFect (United States)'),
(92793, 77038, 'en', 'name', 'Surgo Foundation'),
(92794, 77039, 'de', 'name', 'Hochschule für Polizei und Ɩffentliche Verwaltung Nordrhein-Westfalen'),
(92795, 77039, 'en', 'name', 'University for Police and Public Administration North Rhine-Westphalia'),
(92796, 77040, 'no_lang_code', 'name', 'Intelesens (United Kingdom)'),
(92797, 77041, 'no_lang_code', 'name', 'Intermodulation Products (Sweden)'),
(92798, 77042, 'de', 'name', 'Deutsche Gesellschaft für Internistische Intensivmedizin und Notfallmedizin'),
(92799, 77042, 'en', 'name', 'German Society of Medical Intensive Care and Emergency Medicine'),
(92800, 77043, 'de', 'name', 'Hochschuldidaktischen Zentrum Sachsen'),
(92801, 77044, 'de', 'name', 'Berufsverband der Deutschen Dermatologen'),
(92802, 77045, 'en', 'name', 'Liu Zhou Center for Disease Prevention and Control'),
(92803, 77045, 'zh', 'name', 'ęŸ³å·žē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(92804, 77046, 'no_lang_code', 'name', 'Trividia Health (United States)'),
(92805, 77047, 'en', 'name', 'ProMedica Monroe Regional Hospital'),
(92806, 77048, 'de', 'name', 'Forschungsgruppe Soziale Neurowissenschaft'),
(92807, 77048, 'en', 'name', 'Social Neuroscience Lab'),
(92808, 77049, 'no_lang_code', 'name', 'Bafna Group (India)'),
(92809, 77050, 'no_lang_code', 'name', 'Merit Medical (United States)'),
(92810, 77051, 'no_lang_code', 'name', 'Lhoist (Belgium)'),
(92811, 77052, 'en', 'name', 'Tokyo Medical Examiner''s Office'),
(92812, 77052, 'ja', 'name', 'ę±äŗ¬éƒ½ē›£åÆŸåŒ»å‹™é™¢'),
(92813, 77053, 'no_lang_code', 'name', 'Adhera Therapeutics (United States)'),
(92814, 77054, 'no_lang_code', 'name', 'Research - Development Application Services (Slovakia)'),
(92815, 77055, 'no_lang_code', 'name', 'Otter Controls (United Kingdom)'),
(92816, 77056, 'ja', 'name', 'ę°“ęµ·é“åŽšē”Ÿē—…é™¢'),
(92817, 77056, 'no_lang_code', 'name', 'MitsukaidoKosei Hospital'),
(92818, 77057, 'en', 'name', 'Association for Awareness on Rural and Tribal Health Institute'),
(92819, 77058, 'de', 'name', 'Edith-Stein-Schulstiftung des Bistums Magdeburg'),
(92820, 77059, 'de', 'name', 'Klinik St. Irmingard'),
(92821, 77060, 'en', 'name', 'International Rescue System'),
(92822, 77060, 'ja', 'name', 'å›½éš›ćƒ¬ć‚¹ć‚­ćƒ„ćƒ¼ć‚·ć‚¹ćƒ†ćƒ '),
(92823, 77061, 'en', 'name', 'Global Nature Fund'),
(92824, 77062, 'no_lang_code', 'name', 'Conagen (United States)'),
(92825, 77063, 'en', 'name', 'VA Western Colorado Health Care System'),
(92826, 77064, 'en', 'name', 'Yunnan Population and Family Planning Research Institute'),
(92827, 77064, 'zh', 'name', 'äŗ‘å—ēœäŗŗå£å’Œč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(92828, 77065, 'de', 'name', 'Progenius'),
(92829, 77066, 'no_lang_code', 'name', 'Jena Bioscience (Germany)'),
(92830, 77067, 'en', 'name', 'Polytechnic University'),
(92831, 77067, 'ja', 'name', 'č·ę„­čƒ½åŠ›é–‹ē™ŗē·åˆå¤§å­¦ę ”'),
(92832, 77068, 'en', 'name', 'Institute for Labour and Family Research'),
(92833, 77068, 'sk', 'name', 'InŔtitút Pre Výskum PrÔce a Rodiny'),
(92834, 77069, 'en', 'name', 'Carnegie Mellon University Africa'),
(92835, 77070, 'en', 'name', 'Scottish Universities Insight Institute'),
(92836, 77071, 'no_lang_code', 'name', 'SMA Solar Technology (United Kingdom)'),
(92837, 77072, 'en', 'name', 'The Cambridge Centre for Advanced Research and Education in Singapore'),
(92838, 77073, 'en', 'name', 'Apollo Institute of Medical Sciences & Research'),
(92839, 77073, 'te', 'name', 'అపోలో ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°®ą±†ą°”ą°æą°•ą°²ą± ą°øą±ˆą°Øą±ą°øą±†ą°øą± ą°…ą°‚ą°”ą± ą°°ą±€ą°øą±†ą°°ą±ą°šą±'),
(92840, 77074, 'no_lang_code', 'name', 'Evive Biotech (China)'),
(92841, 77075, 'en', 'name', 'Motamed Cancer Institute'),
(92842, 77075, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ł…Ų¹ŲŖŁ…ŲÆ جهاد ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ'),
(92843, 77076, 'no_lang_code', 'name', 'Autonomix Medical (United States)'),
(92844, 77077, 'no_lang_code', 'name', 'W&H (Austria)'),
(92845, 77078, 'no_lang_code', 'name', 'Air Water (Japan)'),
(92846, 77079, 'no_lang_code', 'name', 'Life Spine (United States)'),
(92847, 77080, 'no_lang_code', 'name', 'Simworx (United Kingdom)'),
(92848, 77081, 'es', 'name', 'Escuela Superior de Guerra'),
(92849, 77082, 'no_lang_code', 'name', 'Smith & Co (United States)'),
(92850, 77083, 'no_lang_code', 'name', 'Zietchick Research Institute (United States)'),
(92851, 77084, 'ja', 'name', 'å¤§é˜Ŗć‚½ćƒ¼ćƒ€'),
(92852, 77084, 'no_lang_code', 'name', 'Osaka Soda (Japan)'),
(92853, 77085, 'en', 'name', 'Interdisciplinary Earth Data Alliance'),
(92854, 77086, 'no_lang_code', 'name', 'Sciogen (United States)'),
(92855, 77087, 'de', 'name', 'Mainzer Zentrum für Digitalität in den Geistes- und Kulturwissenschaften'),
(92856, 77088, 'en', 'name', 'Nagoya Future Culture College'),
(92857, 77088, 'ja', 'name', 'åå¤å±‹ęœŖę„ę–‡åŒ–å°‚é–€å­¦ę ”'),
(92858, 77089, 'no_lang_code', 'name', 'Omni Sciences (United States)'),
(92859, 77090, 'no_lang_code', 'name', 'Minerva Surgical (United States)'),
(92860, 77091, 'de', 'name', 'Büro für Technikfolgen-Abschätzung beim Deutschen Bundestag'),
(92861, 77091, 'en', 'name', 'Office of Technology Assessment at the German Bundestag'),
(92862, 77092, 'en', 'name', 'Business Development Bank of Canada'),
(92863, 77092, 'fr', 'name', 'Banque de dƩveloppement du Canada'),
(92864, 77093, 'no_lang_code', 'name', 'Marine Polymer Technologies (United States)'),
(92865, 77094, 'en', 'name', 'East Riding of Yorkshire Council'),
(92866, 77095, 'no_lang_code', 'name', 'LinkedIn (United States)'),
(92867, 77096, 'no_lang_code', 'name', 'Gestamp (Spain)'),
(92868, 77097, 'en', 'name', 'Mercy Health Foundation'),
(92869, 77098, 'no_lang_code', 'name', 'Control4 (United States)'),
(92870, 77099, 'no_lang_code', 'name', 'Synopsys (Belgium)'),
(92871, 77100, 'en', 'name', 'Virgo');
INSERT INTO `ror_settings` VALUES
(92872, 77101, 'de', 'name', 'Hochschule für Technik Rapperswil'),
(92873, 77101, 'en', 'name', 'University of Applied Sciences Rapperswil'),
(92874, 77102, 'en', 'name', 'TÜBİTAK Marmara Research Center'),
(92875, 77102, 'tr', 'name', 'TÜBİTAK Marmara Araştırma Merkezi'),
(92876, 77103, 'ko', 'name', '주)ģ‹¤ė¦¬ģ½˜ģ›ģŠ¤'),
(92877, 77103, 'no_lang_code', 'name', 'Silicon Works (South Korea)'),
(92878, 77104, 'en', 'name', 'The Initiative for Equal Rights'),
(92879, 77105, 'en', 'name', 'National Center for Agricultural Utilization Research'),
(92880, 77106, 'no_lang_code', 'name', 'FSD Pharma (Canada)'),
(92881, 77107, 'no_lang_code', 'name', 'Lysando (Liechtenstein)'),
(92882, 77108, 'en', 'name', 'Hunan Police Academy'),
(92883, 77108, 'zh', 'name', 'ę¹–å—č­¦åÆŸå­¦é™¢'),
(92884, 77109, 'en', 'name', 'Loyola University of Congo'),
(92885, 77109, 'fr', 'name', 'UniversitƩ Loyola du Congo'),
(92886, 77110, 'no_lang_code', 'name', 'Medigus (Israel)'),
(92887, 77111, 'de', 'name', 'Bau-Institut für Ressourceneffizientes und Nachhaltiges Bauen'),
(92888, 77111, 'no_lang_code', 'name', 'Birn (Germany)'),
(92889, 77112, 'en', 'name', 'Technology Centre for Offshore and Marine, Singapore'),
(92890, 77113, 'no_lang_code', 'name', 'Minda Hospital'),
(92891, 77113, 'zh', 'name', 'ę¹–åŒ—ę°‘ę—å¤§å­¦é™„å±žę°‘å¤§åŒ»é™¢'),
(92892, 77114, 'en', 'name', 'Shenyang Ninth People''s Hospital'),
(92893, 77114, 'zh', 'name', 'ę²ˆé˜³åø‚ē¬¬ä¹äŗŗę°‘åŒ»é™¢'),
(92894, 77115, 'en', 'name', 'Federal Reserve Bank of Philadelphia'),
(92895, 77116, 'no_lang_code', 'name', 'Institut für Technische Beratung und Produktentwicklung (Germany)'),
(92896, 77117, 'no_lang_code', 'name', 'EVRAZ (United Kingdom)'),
(92897, 77118, 'en', 'name', 'Integrated Test Range'),
(92898, 77119, 'no_lang_code', 'name', 'Lexion Medical (United States)'),
(92899, 77120, 'de', 'name', 'Forschungsinstitut für Denkmalpflege und Archäometrie'),
(92900, 77121, 'en', 'name', 'Shropshire Community Health NHS Trust'),
(92901, 77122, 'en', 'name', 'Xichang University'),
(92902, 77122, 'zh', 'name', 'č„æę˜Œå­¦é™¢'),
(92903, 77123, 'no_lang_code', 'name', 'Dr. Brill + Dr. Steinmann (Germany)'),
(92904, 77124, 'es', 'name', 'MĆŗtua Terrassa'),
(92905, 77125, 'de', 'name', 'Institut für Site und Facility Management'),
(92906, 77126, 'en', 'name', 'Colombian Association of Dermatology and Dermatological Surgery'),
(92907, 77126, 'es', 'name', 'Asociación Colombiana de Dermatología y Cirugía Dermatológica'),
(92908, 77127, 'no_lang_code', 'name', 'Deinove (Germany)'),
(92909, 77128, 'no_lang_code', 'name', 'Novartis (Slovakia)'),
(92910, 77129, 'no_lang_code', 'name', 'Orasure Technologies (United States)'),
(92911, 77130, 'no_lang_code', 'name', 'Laboratory Catalyst Systems (United States)'),
(92912, 77131, 'no_lang_code', 'name', 'Bharat Immunologicals and Biologicals Corporation (India)'),
(92913, 77132, 'hu', 'name', 'Fejér Megyei Szent György Egyetemi Oktató KórhÔz'),
(92914, 77133, 'en', 'name', 'Police Dog Technical School'),
(92915, 77133, 'zh', 'name', 'č­¦ēŠ¬ęŠ€ęœÆå­¦ę ”'),
(92916, 77134, 'no_lang_code', 'name', 'Industriale Chimica (Italy)'),
(92917, 77135, 'es', 'name', 'Fundación Centro de Gestión Tecnológica e InformÔtica Industrial'),
(92918, 77136, 'fr', 'name', 'Le Laboratoire P4 Inserm Jean MƩrieux'),
(92919, 77137, 'en', 'name', 'International Engineering and Technology Institute'),
(92920, 77138, 'en', 'name', 'The Geneva Association'),
(92921, 77139, 'de', 'name', 'BDH-Klinik Hessisch Oldendorf'),
(92922, 77140, 'no_lang_code', 'name', 'Quimba Software (United States)'),
(92923, 77141, 'no_lang_code', 'name', 'Consentec (Germany)'),
(92924, 77142, 'de', 'name', 'Dissens – Institut für Bildung und Forschung'),
(92925, 77143, 'no_lang_code', 'name', 'Laser Systems & Solutions of Europe (France)'),
(92926, 77144, 'en', 'name', 'Directorate of Weed Research'),
(92927, 77144, 'hi', 'name', 'खरपतवार ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(92928, 77145, 'en', 'name', 'Phthisiopneumology Institute "Chiril Draganiuc"'),
(92929, 77145, 'ro', 'name', 'Institutul de Ftiziopneumologie ā€žChiril Draganiucā€'),
(92930, 77146, 'en', 'name', 'Dr. Kamakshi Memorial Hospital'),
(92931, 77147, 'no_lang_code', 'name', 'Schmid (Germany)'),
(92932, 77148, 'en', 'name', 'SPIRIT Slovenia - Public Agency for Entrepreneurship, Internationalization, ForeĀ­ign Investments and Technology'),
(92933, 77148, 'sl', 'name', 'Javna agencija Republike Slovenije za spodbujanje podjetniŔtva, internacionalizacije, tujih investicij in tehnologije'),
(92934, 77149, 'no_lang_code', 'name', 'Guangxi Longtan Hospital'),
(92935, 77149, 'zh', 'name', 'ęŸ³å·žåø‚é¾™ę½­åŒ»é™¢'),
(92936, 77150, 'ja', 'name', 'ć‚¼ćƒŖć‚¢ę–°č–¬å·„ę„­'),
(92937, 77150, 'no_lang_code', 'name', 'Zeria Pharmaceutical (Japan)'),
(92938, 77151, 'en', 'name', 'Lung Cancer Initiative of North Carolina'),
(92939, 77152, 'no_lang_code', 'name', 'CoreTech (China)'),
(92940, 77153, 'de', 'name', 'Stephanus Stiftung'),
(92941, 77154, 'no_lang_code', 'name', 'Paulownia Research Center'),
(92942, 77154, 'zh', 'name', 'å›½å®¶ęž—äøšå’Œč‰åŽŸå±€ę³”ę”ē ”ē©¶å¼€å‘äø­åæƒ'),
(92943, 77155, 'no_lang_code', 'name', 'H.C. Starck (Germany)'),
(92944, 77156, 'ar', 'name', 'معهد بحوث الامصال ŁˆŲ§Ł„Ł„Ł‚Ų§Ų­Ų§ŲŖ Ų§Ł„ŲØŁŠŲ·Ų±ŁŠŲ©'),
(92945, 77156, 'en', 'name', 'Veterinary Serum and Vaccine Research Institute'),
(92946, 77157, 'no_lang_code', 'name', 'Huahai Pharmaceutical (China)'),
(92947, 77157, 'zh', 'name', 'ęµ™ę±ŸåŽęµ·čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(92948, 77158, 'no_lang_code', 'name', 'Weinan Central Hospital'),
(92949, 77158, 'zh', 'name', 'ęø­å—åø‚äø­åæƒåŒ»é™¢'),
(92950, 77159, 'en', 'name', 'Sumatera Institute of Technology'),
(92951, 77159, 'id', 'name', 'Institut Teknologi Sumatera'),
(92952, 77160, 'no_lang_code', 'name', 'Alber (Germany)'),
(92953, 77161, 'de', 'name', 'Naturalienkabinett Waldenburg'),
(92954, 77162, 'en', 'name', 'Moving Academy of Medicine and Biomedicine'),
(92955, 77162, 'mr', 'name', 'ą¤®ą„ą¤µą„ą¤¹ą„€ą¤‚ą¤— ą¤…ą„…ą¤•ą„…ą¤”ą¤®ą„€ ą¤…ą„‰ą¤« ą¤®ą„‡ą¤”ą„€ą¤øą¤æą¤Ø अँऔ ą¤¬ą¤¾ą¤Æą„‹ą¤®ą„‡ą¤”ą„€ą¤øą¤æą¤Ø'),
(92956, 77163, 'no_lang_code', 'name', 'Jamboxx (United States)'),
(92957, 77164, 'no_lang_code', 'name', 'Lead Discovery Center (Germany)'),
(92958, 77165, 'no_lang_code', 'name', 'AP2E (France)'),
(92959, 77166, 'no_lang_code', 'name', 'PowerHouse Proteomic Systems (United States)'),
(92960, 77167, 'en', 'name', 'Defence Avionics Research Establishment'),
(92961, 77167, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤µą„ˆą¤®ą¤¾ą¤Øą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Øą¤¾'),
(92962, 77168, 'en', 'name', 'Islamic Azad University, Jiroft Branch'),
(92963, 77168, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد جیرفت'),
(92964, 77169, 'en', 'name', 'British Astronomical Association'),
(92965, 77170, 'gu', 'name', 'કામધેનુ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(92966, 77170, 'no_lang_code', 'name', 'Kamdhenu University'),
(92967, 77171, 'en', 'name', 'Shandong Police College'),
(92968, 77171, 'zh', 'name', 'å±±äøœč­¦åÆŸå­¦é™¢'),
(92969, 77172, 'en', 'name', 'Taiwan Geographic Information Center'),
(92970, 77172, 'zh', 'name', 'č²”åœ˜ę³•äŗŗå°ē£åœ°ē†č³‡čØŠäø­åæƒ'),
(92971, 77173, 'en', 'name', 'National Institute for Education'),
(92972, 77173, 'sk', 'name', 'ŠtÔtny Pedagogický ústav'),
(92973, 77174, 'ja', 'name', 'å¤§å”ē²¾å·„'),
(92974, 77174, 'no_lang_code', 'name', 'Daikyo Seiko (Japan)'),
(92975, 77175, 'no_lang_code', 'name', 'Oxford Computer Services (United States)'),
(92976, 77176, 'en', 'name', 'Pan African Institute for Development'),
(92977, 77177, 'no_lang_code', 'name', 'Progressive Expert Consulting (United States)'),
(92978, 77178, 'en', 'name', 'Government Ayurvedic College and Hospital'),
(92979, 77178, 'hi', 'name', 'ą¦šą§°ą¦•ą¦¾ą§°ą§€ ą¦†ą¦Æą¦¼ą§ą§°ą§ą¦¬ą§‡ą¦¦ą¦æą¦• ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(92980, 77179, 'no_lang_code', 'name', 'Kerntechnische Entsorgung Karlsruhe (Germany)'),
(92981, 77180, 'en', 'name', 'Oyama City Museum'),
(92982, 77180, 'ja', 'name', 'å°å±±åø‚åšē‰©é¤Ø'),
(92983, 77181, 'no_lang_code', 'name', 'Vividion Therapeutics (United States)'),
(92984, 77182, 'no_lang_code', 'name', 'Akasol (Germany)'),
(92985, 77183, 'sk', 'name', 'Kúpele VyŔné Ružbachy'),
(92986, 77184, 'no_lang_code', 'name', 'USV (India)'),
(92987, 77185, 'en', 'name', 'Palmer Soil and Water Conservation District'),
(92988, 77186, 'en', 'name', 'International Centre for Interdisciplinary Science and Education'),
(92989, 77186, 'vi', 'name', 'Trung tĆ¢m Quốc tįŗæ Khoa hį»c vĆ  GiĆ”o dỄc liĆŖn ngĆ nh'),
(92990, 77187, 'no_lang_code', 'name', 'Olatec (United States)'),
(92991, 77188, 'no_lang_code', 'name', 'ThermoTek (United States)'),
(92992, 77189, 'no_lang_code', 'name', 'Laserline (Germany)'),
(92993, 77190, 'sk', 'name', 'ŠtÔtne Lesy Tatranského NÔrodního Parku'),
(92994, 77191, 'pt', 'name', 'Unichristus'),
(92995, 77192, 'de', 'name', 'Bundeskunsthalle'),
(92996, 77193, 'cs', 'name', 'ALAI ČeskÔ republika'),
(92997, 77193, 'en', 'name', 'ALAI Czech Republic'),
(92998, 77194, 'no_lang_code', 'name', 'Forschungszentrum für Verbrennungsmotoren und Thermodynamik Rostock (Germany)'),
(92999, 77195, 'no_lang_code', 'name', 'NonInvasive Technologies (United States)'),
(93000, 77196, 'en', 'name', 'Izumi Biosciences'),
(93001, 77197, 'no_lang_code', 'name', 'Onai (United States)'),
(93002, 77198, 'no_lang_code', 'name', 'Rotam (China)'),
(93003, 77198, 'zh', 'name', 'č½®ä½œä½œē‰©ē§‘å­¦'),
(93004, 77199, 'no_lang_code', 'name', 'Zhejiang Lab'),
(93005, 77199, 'zh', 'name', 'ä¹‹ę±Ÿå®žéŖŒå®¤'),
(93006, 77200, 'en', 'name', 'Explore York'),
(93007, 77201, 'en', 'name', 'WA Country Health Service'),
(93008, 77202, 'no_lang_code', 'name', 'Royal Caliber (United States)'),
(93009, 77203, 'no_lang_code', 'name', 'Kaman (United States)'),
(93010, 77204, 'en', 'name', 'Battle Creek VA Medical Center'),
(93011, 77205, 'no_lang_code', 'name', 'Cendres+MƩtaux (Switzerland)'),
(93012, 77206, 'en', 'name', 'Toyama Prefectural Agricultural, Forestry & Fisheries Research Center'),
(93013, 77206, 'ja', 'name', 'åÆŒå±±ēœŒč¾²ęž—ę°“ē”£ē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(93014, 77207, 'no_lang_code', 'name', 'Wƶlfel (Germany)'),
(93015, 77208, 'no_lang_code', 'name', 'Plastal (Sweden)'),
(93016, 77209, 'en', 'name', 'Sepsis Trust NZ'),
(93017, 77210, 'en', 'name', 'Harbin Foresty Machinery Institute'),
(93018, 77210, 'zh', 'name', 'å›½å®¶ęž—äøšå±€å“ˆå°”ę»Øęž—äøšęœŗę¢°ē ”ē©¶ę‰€'),
(93019, 77211, 'no_lang_code', 'name', 'Axelgaard Manufacturing (United States)'),
(93020, 77212, 'no_lang_code', 'name', 'Shenzhen Beauty Star (China)'),
(93021, 77212, 'zh', 'name', 'ę·±åœ³åø‚åŠ›åˆē§‘åˆ›č‚”ä»½ęœ‰é™å…¬åø'),
(93022, 77213, 'en', 'name', 'New Hampshire Space Grant Consortium'),
(93023, 77214, 'en', 'name', 'Bam University of Medical Sciences'),
(93024, 77214, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŁ…'),
(93025, 77215, 'no_lang_code', 'name', 'Ozark Integrated Circuits (United States)'),
(93026, 77216, 'no_lang_code', 'name', 'LeMaitre Vascular (United States)'),
(93027, 77217, 'fa', 'name', 'کافه ŲØŲ§Ų²Ų§Ų±'),
(93028, 77217, 'no_lang_code', 'name', 'Cafe Bazaar (Iran)'),
(93029, 77218, 'no_lang_code', 'name', 'Tianjin Zhujin Technology Development (China)'),
(93030, 77218, 'zh', 'name', 'å¤©ę“„é“øé‡‘ē§‘ęŠ€å¼€å‘'),
(93031, 77219, 'de', 'name', 'Rhein-Ruhr Institut für angewandte Systeminnovation'),
(93032, 77219, 'en', 'name', 'Rhine-Ruhr Institute for Applied Systeminnovation'),
(93033, 77220, 'en', 'name', 'Wuchang University of Technology'),
(93034, 77220, 'zh', 'name', 'ę­¦ę˜Œē†å·„å­¦é™¢'),
(93035, 77221, 'no_lang_code', 'name', 'Salts Healthcare (United Kingdom)'),
(93036, 77222, 'el', 'name', 'Kεντρική Τράπεζα της ĪšĻĻ€ĻĪæĻ…'),
(93037, 77222, 'en', 'name', 'Central Bank of Cyprus'),
(93038, 77222, 'tr', 'name', 'Kıbrıs Merkez Bankası'),
(93039, 77223, 'en', 'name', 'Agronomical Institute of Campinas'),
(93040, 77223, 'pt', 'name', 'Instituto AgronƓmico de Campinas'),
(93041, 77224, 'id', 'name', 'Universitas Ibrahimy'),
(93042, 77225, 'no_lang_code', 'name', 'Milestone Scientific (United States)'),
(93043, 77226, 'de', 'name', 'Brüderkrankenhaus St. Josef Paderborn'),
(93044, 77227, 'no_lang_code', 'name', 'Renuvix (United States)'),
(93045, 77228, 'no_lang_code', 'name', 'Pliant (United States)'),
(93046, 77229, 'no_lang_code', 'name', 'Genex Systems (United States)'),
(93047, 77230, 'no_lang_code', 'name', 'Kronos Bios (United Kingdom)'),
(93048, 77231, 'en', 'name', 'Meteorological Bureau of Shenzhen Municipality'),
(93049, 77231, 'zh', 'name', 'ę·±åœ³åø‚ę°”č±”å±€'),
(93050, 77232, 'no_lang_code', 'name', 'Emisphere Technologies (United States)'),
(93051, 77233, 'no_lang_code', 'name', 'Euro Institute for Information and Technology Transfer in Environmental Protection (Germany)'),
(93052, 77234, 'no_lang_code', 'name', 'Guangzhou Jingpai Technology (China)'),
(93053, 77234, 'zh', 'name', 'å¹æå·žę™Æę“¾ē§‘ęŠ€ęœ‰é™å…¬åø'),
(93054, 77235, 'no_lang_code', 'name', 'Innovationszentrum für Mobilität und Gesellschaftlichen Wandel (Germany)'),
(93055, 77236, 'de', 'name', 'Institut für Enterprise Systems'),
(93056, 77236, 'en', 'name', 'Institute for Enterprise Systems'),
(93057, 77237, 'en', 'name', 'Gansu Provincial Maternal and Child Health Hospital'),
(93058, 77237, 'zh', 'name', 'ē”˜č‚ƒēœå¦‡å¹¼äæå„é™¢'),
(93059, 77238, 'en', 'name', 'Max Planck University of Twente Center for Complex Fluid Dynamics'),
(93060, 77239, 'en', 'name', 'Navy League of the United States'),
(93061, 77240, 'en', 'name', 'Michigan Works! Macomb/St. Clair'),
(93062, 77241, 'no_lang_code', 'name', 'Recordati (Ireland)'),
(93063, 77242, 'en', 'name', 'Center for Micro-BioRobotics'),
(93064, 77243, 'no_lang_code', 'name', 'Princeton Technology Advisors (United States)'),
(93065, 77244, 'ne', 'name', 'ą¤Øą„‹ą¤µą„‹ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¾ą„¤ ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(93066, 77244, 'no_lang_code', 'name', 'Novo Informatics (India)'),
(93067, 77245, 'no_lang_code', 'name', 'Kunststoff Institut Südwest (Germany)'),
(93068, 77246, 'no_lang_code', 'name', 'ZKxKZ (United States)'),
(93069, 77247, 'en', 'name', 'DMI-St. John the Baptist University'),
(93070, 77248, 'en', 'name', 'Chinese Soil and Water Conservation Society'),
(93071, 77248, 'zh', 'name', 'äø­å›½ę°“åœŸäæęŒå­¦ä¼š'),
(93072, 77249, 'en', 'name', 'PredictImmune'),
(93073, 77250, 'de', 'name', 'Institut für Wasserwirtschaft Siedlungswasserbau und Ɩkologie'),
(93074, 77251, 'no_lang_code', 'name', 'ProtonVDA (United States)'),
(93075, 77252, 'en', 'name', 'Research Institute of Forestry'),
(93076, 77252, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ęž—äøšē ”ē©¶ę‰€'),
(93077, 77253, 'no_lang_code', 'name', 'Tidi (United States)'),
(93078, 77254, 'en', 'name', 'Forest Survey of India'),
(93079, 77254, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ वन ą¤øą¤°ą„ą¤µą„‡ą¤•ą„ą¤·ą¤£'),
(93080, 77255, 'no_lang_code', 'name', 'a.i. solutions (United States)'),
(93081, 77256, 'no_lang_code', 'name', 'Prognos (Switzerland)'),
(93082, 77257, 'no_lang_code', 'name', 'JSC R&D Center "Applied Logistics" (Russia)'),
(93083, 77257, 'ru', 'name', 'ŠŸŃ€ŠøŠŗŠ»Š°Š“Š½Š°Ń логистика'),
(93084, 77258, 'no_lang_code', 'name', 'Janssen (United Kingdom)'),
(93085, 77259, 'no_lang_code', 'name', 'Sest (United States)'),
(93086, 77260, 'no_lang_code', 'name', 'Butamax (United States)'),
(93087, 77261, 'no_lang_code', 'name', 'Tibbar Plasma Technologies (United States)'),
(93088, 77262, 'ja', 'name', 'ęœ­å¹Œå—ē—…é™¢'),
(93089, 77262, 'no_lang_code', 'name', 'Sapporo Minami Hospital'),
(93090, 77263, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ų±ŁŠŲ“'),
(93091, 77263, 'en', 'name', 'Arish University'),
(93092, 77264, 'sk', 'name', 'ŠtÔtny InŔtitút Odborného VzdelÔvania'),
(93093, 77265, 'en', 'name', 'Center for Translational Neurophysiology of Speech and Communication'),
(93094, 77265, 'it', 'name', 'Centro di Neurofisiologia Traslazionale del Linguaggio e della Comunicazione'),
(93095, 77266, 'no_lang_code', 'name', 'China National Chemical Information Centre (China)'),
(93096, 77266, 'zh', 'name', 'äø­å›½åŒ–å·„äæ”ęÆäø­åæƒ'),
(93097, 77267, 'no_lang_code', 'name', 'Multiverse Computing (Spain)'),
(93098, 77268, 'no_lang_code', 'name', 'Resolute Marine Energy (United States)'),
(93099, 77269, 'en', 'name', 'Creative Destruction Lab'),
(93100, 77270, 'no_lang_code', 'name', 'DIAL (Germany)'),
(93101, 77271, 'en', 'name', 'LEAP Science and Maths Schools'),
(93102, 77272, 'no_lang_code', 'name', 'Frito-Lay (Switzerland)'),
(93103, 77273, 'no_lang_code', 'name', 'Pieris Pharmaceuticals (United States)'),
(93104, 77274, 'no_lang_code', 'name', 'Midmark (United States)'),
(93105, 77275, 'de', 'name', 'Leipziger Institut für Angewandte Weiterbildungsforschung'),
(93106, 77276, 'no_lang_code', 'name', 'BET (Germany)'),
(93107, 77277, 'en', 'name', 'The Tokugawa Institute for the History of Forestry'),
(93108, 77277, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¾³å·é»Žę˜Žä¼š'),
(93109, 77278, 'no_lang_code', 'name', 'RetiVue (United States)'),
(93110, 77279, 'de', 'name', 'Institut der Wirtschaft Thüringens'),
(93111, 77280, 'no_lang_code', 'name', 'Arrow International (United States)'),
(93112, 77281, 'en', 'name', 'Agricultural Research Service - Southeast Area'),
(93113, 77282, 'no_lang_code', 'name', 'BGT Bischoff Glastechnik (Germany)'),
(93114, 77283, 'en', 'name', 'California Fire Science Consortium'),
(93115, 77284, 'no_lang_code', 'name', 'Euphrates Vascular (United States)'),
(93116, 77285, 'no_lang_code', 'name', 'AGC Interpane (Germany)'),
(93117, 77286, 'en', 'name', 'Kanagawa Archeology Foundation'),
(93118, 77286, 'ja', 'name', 'ć‹ćŖćŒć‚č€ƒå¤å­¦č²”å›£'),
(93119, 77287, 'no_lang_code', 'name', 'Engeneic (Australia)'),
(93120, 77288, 'en', 'name', 'Saga Prefectural Museum'),
(93121, 77288, 'ja', 'name', 'ä½č³€ēœŒē«‹åšē‰©é¤Ø'),
(93122, 77289, 'no_lang_code', 'name', 'Testco (United States)'),
(93123, 77290, 'en', 'name', 'Islamic Azad University, Nowshahr Branch'),
(93124, 77290, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ś†Ų§Ł„ŁˆŲ³'),
(93125, 77291, 'no_lang_code', 'name', 'Eaton (Netherlands)'),
(93126, 77292, 'no_lang_code', 'name', 'Radiometrics (United States)'),
(93127, 77293, 'en', 'name', 'Wuxi Ninth People''s Hospital'),
(93128, 77293, 'zh', 'name', 'ę— é””åø‚ē¬¬ä¹äŗŗę°‘åŒ»é™¢'),
(93129, 77294, 'no_lang_code', 'name', 'Nexstim (Finland)'),
(93130, 77295, 'no_lang_code', 'name', 'StackFrame (United States)'),
(93131, 77296, 'en', 'name', 'Indian Institute of Millets Research, ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą¤¦ą¤Øą„ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(93132, 77297, 'en', 'name', 'Hebei Food Inspection and Research Institute'),
(93133, 77297, 'zh', 'name', 'ę²³åŒ—ēœé£Ÿå“ę£€éŖŒē ”ē©¶é™¢'),
(93134, 77298, 'no_lang_code', 'name', 'Poly Medicure (India)'),
(93135, 77299, 'no_lang_code', 'name', 'GenCat (United Kingdom)'),
(93136, 77300, 'en', 'name', 'State Enterprise "L.I. Medved''s Research Center of Preventive Toxicology, Food and Chemical Safety" of the Ministry of Health of Ukraine'),
(93137, 77300, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²ŠøŠ¹ центр превентивної токсикології, харчової та хімічної безпеки імені акаГеміка Š›.І. ŠœŠµŠ“Š²ŠµŠ“Ń ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š° охорони зГоров''я України'),
(93138, 77301, 'no_lang_code', 'name', 'Research Applications (United States)'),
(93139, 77302, 'en', 'name', 'Derby College'),
(93140, 77303, 'fr', 'name', 'CHR Verviers'),
(93141, 77304, 'en', 'name', 'Administrative Council for Economic Defense'),
(93142, 77304, 'pt', 'name', 'Conselho Administrativo de Defesa EconƓmica'),
(93143, 77305, 'no_lang_code', 'name', 'Molecular Templates (United States)'),
(93144, 77306, 'no_lang_code', 'name', 'Widetronix (United States)'),
(93145, 77307, 'en', 'name', 'Itami City Museum'),
(93146, 77307, 'ja', 'name', 'ä¼Šäø¹åø‚ē«‹åšē‰©é¤Ø'),
(93147, 77308, 'no_lang_code', 'name', 'SilcsBio (United States)'),
(93148, 77309, 'en', 'name', 'MOA Museum of Art'),
(93149, 77309, 'ja', 'name', 'MOAē¾Žč”“é¤Ø'),
(93150, 77310, 'no_lang_code', 'name', 'Schwan-Stabilo (Germany)'),
(93151, 77311, 'de', 'name', 'Psychologische Hochschule Berlin'),
(93152, 77312, 'en', 'name', 'Yunnan Center for Disease Control And Prevention'),
(93153, 77312, 'zh', 'name', 'äŗ‘å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(93154, 77313, 'es', 'name', 'ClĆ­nica Santa MarĆ­a'),
(93155, 77314, 'en', 'name', 'Veneto Eye Bank Foundation'),
(93156, 77314, 'it', 'name', 'Fondazione Banca degli Occhi del Veneto Onlus'),
(93157, 77315, 'en', 'name', 'Nordic Optical Telescope Scientific Association'),
(93158, 77316, 'no_lang_code', 'name', 'Cresset (United Kingdom)'),
(93159, 77317, 'en', 'name', 'Taiwan Electrical and Electronic Manufacturers’ Association'),
(93160, 77317, 'zh', 'name', 'å°ē£å€é›»ę©Ÿé›»å­å·„ę„­åŒę„­å…¬ęœƒ'),
(93161, 77318, 'en', 'name', 'Advocata Institute'),
(93162, 77319, 'en', 'name', 'Production Development Corporation'),
(93163, 77319, 'es', 'name', 'Corporación de Fomento de la Producción de Chile'),
(93164, 77320, 'no_lang_code', 'name', 'Northrop Grumman (United Kingdom)'),
(93165, 77321, 'no_lang_code', 'name', 'Biedermann Motech (Germany)'),
(93166, 77322, 'en', 'name', 'Mirai Hospital'),
(93167, 77322, 'ja', 'name', '会 みらい病院'),
(93168, 77323, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„ŲÆŁˆŲ­Ų© Ł„Ų­Ų±ŁŠŲ© ال؄علام'),
(93169, 77323, 'en', 'name', 'Doha Centre for Media Freedom'),
(93170, 77324, 'en', 'name', 'Institute of Marine Engineering'),
(93171, 77324, 'it', 'name', 'Istituto di Ingegneria del Mare'),
(93172, 77325, 'en', 'name', 'Cambridge Hands-On Science'),
(93173, 77326, 'no_lang_code', 'name', 'Fontem Ventures (Netherlands)'),
(93174, 77327, 'no_lang_code', 'name', 'Polarix (United States)'),
(93175, 77328, 'no_lang_code', 'name', 'Topcon (United Kingdom)'),
(93176, 77329, 'no_lang_code', 'name', 'Landeswasserversorgung (Germany)'),
(93177, 77330, 'no_lang_code', 'name', 'Vivor (United States)'),
(93178, 77331, 'ja', 'name', 'čŠ±åœ’ē—…é™¢'),
(93179, 77331, 'no_lang_code', 'name', 'Hanazono Hospital'),
(93180, 77332, 'no_lang_code', 'name', 'ProCom (Germany)'),
(93181, 77333, 'no_lang_code', 'name', 'BNP Paribas (China)'),
(93182, 77334, 'no_lang_code', 'name', 'Thermedical (United States)'),
(93183, 77335, 'de', 'name', 'Institut für Finanzdienstleistungen'),
(93184, 77336, 'no_lang_code', 'name', 'X-Ability (Japan)'),
(93185, 77337, 'no_lang_code', 'name', 'Sustainum Institut (Germany)'),
(93186, 77338, 'no_lang_code', 'name', 'Bruin Biometrics (United States)'),
(93187, 77339, 'en', 'name', 'Beijing Research and Design Institute of Rubber Industry'),
(93188, 77339, 'zh', 'name', 'åŒ—äŗ¬ę©”čƒ¶å·„äøšē ”ē©¶č®¾č®”é™¢'),
(93189, 77340, 'no_lang_code', 'name', 'ProLynx (United States)'),
(93190, 77341, 'ja', 'name', 'ć‚Øćƒć‚Ŗć‚¹'),
(93191, 77341, 'no_lang_code', 'name', 'Eneos (Japan)'),
(93192, 77342, 'no_lang_code', 'name', 'Johner Institut (Germany)'),
(93193, 77343, 'no_lang_code', 'name', 'Ebert Ingenieure (Germany)'),
(93194, 77344, 'no_lang_code', 'name', 'Rayonix (United States)'),
(93195, 77345, 'en', 'name', 'Pollinator Partnership'),
(93196, 77346, 'no_lang_code', 'name', 'Drees & Sommer (Germany)'),
(93197, 77347, 'en', 'name', 'Australis Environmental Research and Monitoring Institute'),
(93198, 77347, 'pt', 'name', 'Instituto Australis, Instituto Australis de Pesquisa e Monitoramento Ambiental'),
(93199, 77348, 'en', 'name', 'Henan Provincial Institute of Land and Resources Sciences'),
(93200, 77348, 'zh', 'name', 'ę²³å—ēœå›½åœŸčµ„ęŗē§‘å­¦ē ”ē©¶é™¢'),
(93201, 77349, 'de', 'name', 'Institut für Angewandte Trainingswissenschaft'),
(93202, 77350, 'no_lang_code', 'name', 'Phelps2020 (United States)'),
(93203, 77351, 'en', 'name', 'Scientific Analysis Group'),
(93204, 77352, 'no_lang_code', 'name', 'Ingenieurgesellschaft für Zuverlässigkeit und Prozessmodellierung (Germany)'),
(93205, 77353, 'no_lang_code', 'name', 'Hindawi (United Kingdom)'),
(93206, 77354, 'no_lang_code', 'name', 'Boehringer Ingelheim (Switzerland)'),
(93207, 77355, 'no_lang_code', 'name', 'Shal Technologies (United States)'),
(93208, 77356, 'no_lang_code', 'name', 'Ressler & Associates (United States)'),
(93209, 77357, 'no_lang_code', 'name', 'OVM/ECH Consulting Engineers (Germany)'),
(93210, 77358, 'en', 'name', 'Institute of Astronomy and National Astronomical Observatory'),
(93211, 77359, 'no_lang_code', 'name', 'CINOGY Technologies (Germany)'),
(93212, 77360, 'en', 'name', 'Israeli Association for the Study of Religions'),
(93213, 77360, 'he', 'name', 'האגודה ×”×™×©×Ø××œ×™×Ŗ ×œ×—×§×Ø דתות'),
(93214, 77361, 'no_lang_code', 'name', 'Odyssey Space Research (United States)'),
(93215, 77362, 'no_lang_code', 'name', 'Wuhan Hankou Hospital'),
(93216, 77362, 'zh', 'name', 'ę­¦ę±‰åø‚ę±‰å£åŒ»é™¢'),
(93217, 77363, 'no_lang_code', 'name', 'Amann Girrbach (Austria)'),
(93218, 77364, 'no_lang_code', 'name', 'Photonic Associates (United States)'),
(93219, 77365, 'en', 'name', 'Social Service Sericulture Project Trust'),
(93220, 77366, 'no_lang_code', 'name', 'Nordex (Germany)'),
(93221, 77367, 'no_lang_code', 'name', 'Squadron Capital (China)'),
(93222, 77368, 'en', 'name', 'Flemish Institute for Archives'),
(93223, 77368, 'nl', 'name', 'Vlaams Instituut voor Archivering'),
(93224, 77369, 'no_lang_code', 'name', 'Kraton (United States)'),
(93225, 77370, 'no_lang_code', 'name', 'Sarda (United States)'),
(93226, 77371, 'en', 'name', 'Defence Scientific Information & Documentation Centre'),
(93227, 77372, 'ja', 'name', 'ę—„ęœ¬ć‚Øćƒ¼ć‚·ćƒ¼ćƒ”ćƒ¼'),
(93228, 77372, 'no_lang_code', 'name', 'ACP Japan (Japan)'),
(93229, 77373, 'en', 'name', 'Nagano University of Health and Medicine'),
(93230, 77373, 'ja', 'name', 'é•·é‡Žäæå„åŒ»ē™‚å¤§å­¦'),
(93231, 77374, 'no_lang_code', 'name', 'SpeechVive (United States)'),
(93232, 77375, 'no_lang_code', 'name', 'IGM Group (Greece)'),
(93233, 77376, 'no_lang_code', 'name', 'Huanggang Central Hospital'),
(93234, 77377, 'no_lang_code', 'name', 'ScienceTomorrow (United States)'),
(93235, 77378, 'no_lang_code', 'name', 'Accent Therapeutics (United States)'),
(93236, 77379, 'en', 'name', 'Fuzhou Maternity and Child Health Care Hospital'),
(93237, 77379, 'zh', 'name', 'ē¦å·žåø‚å¦‡å¹¼äæå„é™¢'),
(93238, 77380, 'no_lang_code', 'name', 'Jabil (United States)'),
(93239, 77381, 'sk', 'name', 'Trojsten'),
(93240, 77382, 'en', 'name', 'Changsha Normal University'),
(93241, 77382, 'zh', 'name', 'é•æę²™åøˆčŒƒå­¦é™¢'),
(93242, 77383, 'no_lang_code', 'name', 'Next Energy Technologies (United States)'),
(93243, 77384, 'en', 'name', 'Gibraltar Health Authority'),
(93244, 77385, 'en', 'name', 'Chilika Development Authority'),
(93245, 77386, 'fr', 'name', 'Centre Hospitalier Intercommunal Castres-Mazamet'),
(93246, 77387, 'no_lang_code', 'name', 'Spiber (Japan)'),
(93247, 77388, 'en', 'name', 'Czech-Moravian Guarantee and Development Bank'),
(93248, 77389, 'en', 'name', 'Naval Science & Technological Laboratory'),
(93249, 77390, 'no_lang_code', 'name', 'Fitbase'),
(93250, 77391, 'no_lang_code', 'name', 'Dantec Dynamics (Denmark)'),
(93251, 77392, 'no_lang_code', 'name', 'Nocturnal Product Development (United States)'),
(93252, 77393, 'en', 'name', 'People''s Hospital of Shiyan'),
(93253, 77393, 'zh', 'name', 'åå °åø‚äŗŗę°‘åŒ»é™¢'),
(93254, 77394, 'no_lang_code', 'name', 'Fagor Ederlan (Slovakia)'),
(93255, 77395, 'de', 'name', 'Kulturpolitische Gesellschaft'),
(93256, 77396, 'no_lang_code', 'name', 'Jülicher Entsorgungsgesellschaft für Nuklearanlagen (Germany)'),
(93257, 77397, 'no_lang_code', 'name', 'SystƩmy Priemyselnej Informatiky (Slovakia)'),
(93258, 77398, 'en', 'name', 'Microwave Tube Research & Development Centre'),
(93259, 77399, 'no_lang_code', 'name', 'Sino Biological (China)'),
(93260, 77400, 'no_lang_code', 'name', 'Oryn Therapeutics (United States)'),
(93261, 77401, 'en', 'name', 'Fidelco Guide Dog Foundation'),
(93262, 77402, 'en', 'name', 'International Investment Bank'),
(93263, 77402, 'hu', 'name', 'Nemzetkƶzi BeruhƔzƔsi Bank'),
(93264, 77403, 'no_lang_code', 'name', 'Global Communication Semiconductors (United States)'),
(93265, 77404, 'no_lang_code', 'name', 'BME Bergmann (Germany)'),
(93266, 77405, 'no_lang_code', 'name', 'Plureon (United States)'),
(93267, 77406, 'no_lang_code', 'name', 'Nephros (United States)'),
(93268, 77407, 'no_lang_code', 'name', 'Josef Meissner (Germany)'),
(93269, 77408, 'no_lang_code', 'name', 'Arotop Food & Environmet (Germany)'),
(93270, 77409, 'de', 'name', 'WEK Tierarzt'),
(93271, 77410, 'en', 'name', 'FATA University'),
(93272, 77410, 'ps', 'name', 'فاټا Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†ā€Ž'),
(93273, 77410, 'ur', 'name', 'فاٹا ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(93274, 77411, 'id', 'name', 'Universitas Internasional Semen Indonesia'),
(93275, 77412, 'no_lang_code', 'name', 'Roche (Tunisia)'),
(93276, 77413, 'de', 'name', 'Steyler Mission'),
(93277, 77414, 'no_lang_code', 'name', 'Accurate Solar Power (United States)'),
(93278, 77415, 'no_lang_code', 'name', 'Berg (United States)'),
(93279, 77416, 'no_lang_code', 'name', 'Tesla Laboratories (United States)'),
(93280, 77417, 'no_lang_code', 'name', 'Touchstone (China)'),
(93281, 77418, 'en', 'name', 'Institute of Policy Analysis and Research - Rwanda'),
(93282, 77419, 'no_lang_code', 'name', 'Translate Bio (United States)'),
(93283, 77420, 'no_lang_code', 'name', 'Perricone MD (United States)'),
(93284, 77421, 'en', 'name', 'Federal Polytechnic Ede'),
(93285, 77422, 'no_lang_code', 'name', 'Constellium (United Kingdom)'),
(93286, 77423, 'no_lang_code', 'name', 'Finning (United Kingdom)'),
(93287, 77424, 'de', 'name', 'Diakonie Deutschland'),
(93288, 77425, 'en', 'name', 'Cheshire Image Bank'),
(93289, 77426, 'de', 'name', 'VKTA'),
(93290, 77427, 'no_lang_code', 'name', 'Probiotical (Italy)'),
(93291, 77428, 'no_lang_code', 'name', 'Ichnos Sciences (United States)'),
(93292, 77429, 'no_lang_code', 'name', 'Pressure Profile Systems (United States)'),
(93293, 77430, 'no_lang_code', 'name', 'Tobii (United Kingdom)'),
(93294, 77431, 'en', 'name', 'Australian Securities and Investments Commission'),
(93295, 77432, 'en', 'name', 'Institute of Taiwan History, Academia Sinica'),
(93296, 77432, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢č‡ŗē£å²ē ”ē©¶ę‰€ęŖ”ę”ˆé¤Ø'),
(93297, 77433, 'no_lang_code', 'name', 'Shanghai Fudan Microelectronics (China)'),
(93298, 77433, 'zh', 'name', 'äøŠęµ·å¤ę—¦å¾®ē”µå­é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(93299, 77434, 'en', 'name', 'Whittington Health NHS Trust'),
(93300, 77435, 'no_lang_code', 'name', 'Gurulogic Microsystems (Finland)'),
(93301, 77436, 'no_lang_code', 'name', 'Holoeye Photonics (Germany)'),
(93302, 77437, 'no_lang_code', 'name', 'XCell Science (United States)'),
(93303, 77438, 'no_lang_code', 'name', 'Staib Instruments (United States)'),
(93304, 77439, 'en', 'name', 'Kyiv Academic University'),
(93305, 77439, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ АкаГемічний Університет'),
(93306, 77440, 'no_lang_code', 'name', 'Pride Mobility Products (United States)'),
(93307, 77441, 'no_lang_code', 'name', 'Norgine (Netherlands)'),
(93308, 77442, 'no_lang_code', 'name', 'NextTechnologies (Hungary)'),
(93309, 77443, 'no_lang_code', 'name', 'Muse Technologies (United States)'),
(93310, 77444, 'no_lang_code', 'name', 'HealthpointCapital (United States)'),
(93311, 77445, 'en', 'name', 'World Health Organization - Uganda'),
(93312, 77446, 'fr', 'name', 'Conseil RƩgional de l''Environnement du Bas-Saint-Laurent'),
(93313, 77447, 'en', 'name', 'Incheon Medical Center'),
(93314, 77447, 'ko', 'name', 'ģøģ²œź“‘ģ—­ģ‹œģ˜ė£Œģ›'),
(93315, 77448, 'en', 'name', 'Global Alliance to Prevent Prematurity and Stillbirth'),
(93316, 77449, 'no_lang_code', 'name', 'Vesperix (United States)'),
(93317, 77450, 'de', 'name', 'Institut für Kunststofftechnologie und -recycling'),
(93318, 77451, 'no_lang_code', 'name', 'Protean Electric (United Kingdom)'),
(93319, 77452, 'no_lang_code', 'name', 'Corvia Medical (United States)'),
(93320, 77453, 'en', 'name', 'CAS Key Laboratory of Urban Pollutant Conversion'),
(93321, 77453, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŸŽåø‚ę±”ęŸ“ē‰©č½¬åŒ–é‡ē‚¹å®žéŖŒå®¤'),
(93322, 77454, 'no_lang_code', 'name', 'Cantel Medical (United States)'),
(93323, 77455, 'no_lang_code', 'name', 'Nymox (Canada)'),
(93324, 77456, 'no_lang_code', 'name', 'Staton (Slovakia)'),
(93325, 77457, 'en', 'name', 'Institute of Forest Productivity'),
(93326, 77457, 'hi', 'name', 'वन ą¤‰ą¤¤ą„ą¤Ŗą¤¾ą¤¦ą¤•ą¤¤ą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(93327, 77458, 'es', 'name', 'Fundacio Investigacio Hospital General Universitari De Valencia'),
(93328, 77459, 'no_lang_code', 'name', 'Comet (Switzerland)'),
(93329, 77460, 'en', 'name', 'Ngaanyatjarra Health Service'),
(93330, 77461, 'no_lang_code', 'name', 'Daio Paper Corporation (Japan)'),
(93331, 77462, 'en', 'name', 'Central Cotton Research Institute'),
(93332, 77463, 'no_lang_code', 'name', 'Besi (Netherlands)'),
(93333, 77464, 'en', 'name', 'Naval Air Warfare Center Training Systems Division'),
(93334, 77465, 'en', 'name', 'Hawke''s Bay Regional Council, Te Kaunihera ā-Rohe o Te Matau-a-Māui'),
(93335, 77466, 'no_lang_code', 'name', 'SES Group & Associates (United States)'),
(93336, 77467, 'en', 'name', 'Taiwan External Trade Development Council'),
(93337, 77467, 'zh', 'name', 'äø­čÆę°‘åœ‹å°å¤–č²æę˜“ē™¼å±•å”ęœƒ'),
(93338, 77468, 'en', 'name', 'Yancheng Second People''s Hospital'),
(93339, 77468, 'zh', 'name', 'ē›åŸŽåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(93340, 77469, 'en', 'name', 'GoodPlanet Belgium'),
(93341, 77470, 'no_lang_code', 'name', 'Silab (France)'),
(93342, 77471, 'en', 'name', 'Anyang Hospital of Traditional Chinese Medicine'),
(93343, 77471, 'zh', 'name', 'å®‰é˜³åø‚äø­åŒ»é™¢'),
(93344, 77472, 'en', 'name', 'Fuyang Maternity and Child Health Care Hospital'),
(93345, 77472, 'zh', 'name', 'é˜œé˜³åø‚å¦‡å„³å„æē«„åŒ»é™¢'),
(93346, 77473, 'no_lang_code', 'name', 'Sulzer (United States)'),
(93347, 77474, 'no_lang_code', 'name', 'Inform (Germany)'),
(93348, 77475, 'no_lang_code', 'name', 'Impedimed (Australia)'),
(93349, 77476, 'no_lang_code', 'name', 'Innovation Cluster (Canada)'),
(93350, 77477, 'en', 'name', 'Wuhu No 1 People''s Hospital'),
(93351, 77477, 'zh', 'name', 'čŠœę¹–åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(93352, 77478, 'ja', 'name', 'å››å›½åŒ–ęˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(93353, 77478, 'no_lang_code', 'name', 'Shikoku (Japan)'),
(93354, 77479, 'no_lang_code', 'name', 'Energy & Meteo Systems (Germany)'),
(93355, 77480, 'no_lang_code', 'name', 'IEF-Werner (Germany)'),
(93356, 77481, 'en', 'name', 'Duchenne UK'),
(93357, 77482, 'en', 'name', 'Global Earthquake Model'),
(93358, 77483, 'fr', 'name', 'HƓpital Marin de Hendaye'),
(93359, 77484, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½Ń‹Ń… навук і Š¼Š°ŃŃ‚Š°Ń†Ń‚Š²Š°Ńž'),
(93360, 77484, 'en', 'name', 'Department of Humanities and Arts'),
(93361, 77484, 'ru', 'name', 'ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… наук Šø ŠøŃŠŗŃƒŃŃŃ‚Š² ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(93362, 77485, 'nl', 'name', 'Willem-Alexander Kinderziekenhuis'),
(93363, 77486, 'en', 'name', 'International Centre for Tax and Development'),
(93364, 77487, 'en', 'name', 'National Center for AIDS/STD Control and Prevention,China CDC'),
(93365, 77487, 'zh', 'name', 'ę€§ē—…č‰¾ę»‹ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(93366, 77488, 'en', 'name', 'VA Southern Nevada Healthcare System'),
(93367, 77489, 'de', 'name', 'Stiftung Umweltenergierecht'),
(93368, 77490, 'en', 'name', 'Andhra Pradesh Forest Department'),
(93369, 77490, 'te', 'name', 'ą°†ą°‚ą°§ą±ą°°ą°Ŗą±ą°°ą°¦ą±‡ą°¶ą± ą°…ą°Ÿą°µą±€ శాఖ'),
(93370, 77491, 'no_lang_code', 'name', 'Phoenix Analysis and Design Technologies (United States)'),
(93371, 77492, 'no_lang_code', 'name', 'American Med Systems (United States)'),
(93372, 77493, 'no_lang_code', 'name', 'Rhizen Pharmaceuticals (Switzerland)'),
(93373, 77494, 'en', 'name', 'Southern California Institute of Architecture'),
(93374, 77495, 'de', 'name', 'LKH Hochsteiermark'),
(93375, 77496, 'en', 'name', 'International Council of Nurses'),
(93376, 77496, 'fr', 'name', 'Conseil International des InfirmiĆØres'),
(93377, 77497, 'no_lang_code', 'name', 'Benvenue Medical (United States)'),
(93378, 77498, 'de', 'name', 'Dresdner Grundwasserforschungszentrum'),
(93379, 77499, 'en', 'name', 'Wildlife Vets International'),
(93380, 77500, 'en', 'name', 'Inner Mongolia Comprehensive Disease Prevention and Control Center'),
(93381, 77500, 'zh', 'name', 'å†…č’™å¤ē»¼åˆē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(93382, 77501, 'no_lang_code', 'name', 'Afrobarometer'),
(93383, 77502, 'no_lang_code', 'name', 'Infraserv (Germany)'),
(93384, 77503, 'de', 'name', 'Hessisches Landesamt für Naturschutz, Umwelt und Geologie'),
(93385, 77503, 'en', 'name', 'Hessian Agency for Nature Conservation, Environment and Geology'),
(93386, 77504, 'de', 'name', 'Naturschutzbund Deutschland'),
(93387, 77504, 'en', 'name', 'Nature And Biodiversity Conservation Union'),
(93388, 77505, 'no_lang_code', 'name', 'Spectabit Optics (United States)'),
(93389, 77506, 'de', 'name', 'Industriegewerkschaft Bauen-Agrar-Umwelt'),
(93390, 77507, 'no_lang_code', 'name', 'SpiŔcol (Slovakia)'),
(93391, 77508, 'no_lang_code', 'name', 'Gene Signal (Switzerland)'),
(93392, 77509, 'ja', 'name', 'ćƒ­ćƒ¼ćƒˆč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(93393, 77509, 'no_lang_code', 'name', 'Rohto Pharmaceutical (Japan)'),
(93394, 77510, 'en', 'name', 'Renewable Energy Alaska Project'),
(93395, 77511, 'no_lang_code', 'name', 'Terra Quantum (Switzerland)'),
(93396, 77512, 'en', 'name', 'Professional Association of Sociologists and Political Scientists'),
(93397, 77512, 'es', 'name', 'Ilustre Colegio Nacional de Doctores y Licenciados en Ciencias PolĆ­ticas y SociologĆ­a'),
(93398, 77513, 'no_lang_code', 'name', 'U-blox (Switzerland)'),
(93399, 77514, 'en', 'name', 'Foundation Yamanashi Cultural Property Research Institute'),
(93400, 77514, 'ja', 'name', 'å±±ę¢Øę–‡åŒ–č²”ē ”ē©¶ę‰€'),
(93401, 77515, 'en', 'name', 'Defence Institute of Bio-Energy Research'),
(93402, 77516, 'no_lang_code', 'name', 'SciClone Pharmaceuticals (United States)'),
(93403, 77517, 'en', 'name', 'Edexcel University'),
(93404, 77517, 'fr', 'name', 'Institut Universitaire Edexcel du BƩnin'),
(93405, 77518, 'en', 'name', 'Canberra Innovation Network'),
(93406, 77519, 'no_lang_code', 'name', 'Klƶckner (United Kingdom)'),
(93407, 77520, 'de', 'name', 'Unabhängiges Institut für Umweltfragen'),
(93408, 77520, 'en', 'name', 'Independent Institute for Environmental Issues'),
(93409, 77521, 'no_lang_code', 'name', 'Hainan Center for Disease Control & Prevention'),
(93410, 77521, 'zh', 'name', 'ęµ·å—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(93411, 77522, 'en', 'name', 'Arctic Borderlands Ecological Knowledge Society'),
(93412, 77523, 'no_lang_code', 'name', 'Sugen Life Sciences (India)'),
(93413, 77524, 'no_lang_code', 'name', 'Cornelsen (Germany)'),
(93414, 77525, 'de', 'name', 'Forschungsinstitut für Arbeit, Technik und Kultur'),
(93415, 77525, 'en', 'name', 'Research Institute for Work, Technology and Culture'),
(93416, 77526, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾č¾²ę„­ē·åˆē ”ē©¶ę‰€'),
(93417, 77526, 'no_lang_code', 'name', 'Nousouken (Japan)'),
(93418, 77527, 'no_lang_code', 'name', 'Vistec Electron Beam (Germany)'),
(93419, 77528, 'no_lang_code', 'name', 'MicroAire (United States)'),
(93420, 77529, 'en', 'name', 'Kenya Paediatric Research Consortium'),
(93421, 77530, 'en', 'name', 'Thanh Hoa Department of Health'),
(93422, 77530, 'vi', 'name', 'Sį»ž Y Tįŗ¾ THANH HƓA'),
(93423, 77531, 'en', 'name', 'Heilongjiang Provincial Environmental Science Research Institute'),
(93424, 77531, 'zh', 'name', 'é»‘é¾™ę±ŸēœēŽÆå¢ƒäæęŠ¤ē ”ē©¶ę‰€'),
(93425, 77532, 'no_lang_code', 'name', 'Virent (United States)'),
(93426, 77533, 'es', 'name', 'Programa de Salud Global'),
(93427, 77534, 'no_lang_code', 'name', 'BenevolentAI (United Kingdom)'),
(93428, 77535, 'de', 'name', 'Landesanstalt für Landwirtschaft und Gartenbau'),
(93429, 77536, 'de', 'name', 'Faktor 10 – Institut für nachhaltiges Wirtschaften gemeinnützige'),
(93430, 77537, 'no_lang_code', 'name', 'Novekon (Slovakia)'),
(93431, 77538, 'no_lang_code', 'name', 'LDI Innovation (Estonia)'),
(93432, 77539, 'no_lang_code', 'name', 'Terumo Aortic (United Kingdom)'),
(93433, 77540, 'no_lang_code', 'name', 'Ushio (Germany)'),
(93434, 77541, 'no_lang_code', 'name', 'Institut für Normenmanagement (Germany)'),
(93435, 77542, 'no_lang_code', 'name', 'BioDerm (United States)'),
(93436, 77543, 'no_lang_code', 'name', 'Flowserve (Germany)'),
(93437, 77544, 'de', 'name', 'Institut Mensch, Ethik und Wissenschaft'),
(93438, 77545, 'en', 'name', 'World Marrow Donor Association'),
(93439, 77546, 'en', 'name', 'South African Agency for Science and Technology Advancement'),
(93440, 77547, 'ja', 'name', 'ćƒ©ć‚Æć‚ŖćƒŖć‚¢å‰µč–¬'),
(93441, 77547, 'no_lang_code', 'name', 'RaQualia Pharma (Japan)'),
(93442, 77548, 'no_lang_code', 'name', 'United Language Group (United States)'),
(93443, 77549, 'en', 'name', 'The Medical Foundation'),
(93444, 77550, 'no_lang_code', 'name', 'Savaria (Canada)'),
(93445, 77551, 'en', 'name', 'Diabetes in Asia Study Group'),
(93446, 77552, 'en', 'name', 'European Federation for the Science and Technology of Lipids'),
(93447, 77553, 'en', 'name', 'Mexican Association of Psychology and Community Development'),
(93448, 77553, 'es', 'name', 'Asociación Mexicana de Psicología y Desarrollo Comunitario'),
(93449, 77554, 'en', 'name', 'South African Medical Association'),
(93450, 77555, 'no_lang_code', 'name', 'Electrosciences (United Kingdom)'),
(93451, 77556, 'en', 'name', 'Parliament of Ghana'),
(93452, 77557, 'no_lang_code', 'name', 'Conventus Orthopaedics (United States)'),
(93453, 77558, 'en', 'name', 'Bhailalbhai and Bhikhabhai Institute of Technology'),
(93454, 77558, 'gu', 'name', 'ભાઈલાલભાઈ ąŖąŖØą«ąŖ” ąŖ­ą«€ąŖ–ąŖ¾ąŖ­ąŖ¾ąŖˆ ąŖ‡ąŖØą«ąŖøą«ąŖŸąŖæąŖŸą«ąŖÆą«‚ąŖŸ ąŖ“ąŖ« ąŖŸą«‡ąŖ•ą«ąŖØą«‹ąŖ²ą«‹ąŖœą«€'),
(93455, 77559, 'en', 'name', 'Okinawa Academy College'),
(93456, 77559, 'ja', 'name', 'ę²–ēø„ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼å°‚é–€å­¦ę ”'),
(93457, 77560, 'no_lang_code', 'name', 'NICO (United States)'),
(93458, 77561, 'es', 'name', 'Parque Explora'),
(93459, 77562, 'no_lang_code', 'name', 'Indian Ocean Medical Trading (Somalia)'),
(93460, 77563, 'bs', 'name', 'Institut zа Jаvnо Zdrаvstvо Rеpublikе Srpskе'),
(93461, 77563, 'en', 'name', 'Public Health Institute of the Republic of Srpska'),
(93462, 77564, 'no_lang_code', 'name', 'VSL Software (Slovakia)'),
(93463, 77565, 'nl', 'name', 'Beatrix Kinderziekenhuis'),
(93464, 77566, 'no_lang_code', 'name', 'Precision Spine (United States)'),
(93465, 77567, 'en', 'name', 'Gurukul School of Design'),
(93466, 77568, 'no_lang_code', 'name', 'HeartFlow (United States)'),
(93467, 77569, 'no_lang_code', 'name', 'Ball Horticultural (United States)'),
(93468, 77570, 'no_lang_code', 'name', 'Institut für Betriebliche Bildung und Unternehmenskultur (Germany)'),
(93469, 77571, 'de', 'name', 'Institut für Sozialarbeit und Sozialpädagogik'),
(93470, 77572, 'no_lang_code', 'name', 'ONL Therapeutic (United States)'),
(93471, 77573, 'en', 'name', 'The First People''s Hospital of Tianmen'),
(93472, 77573, 'zh', 'name', 'å¤©é—Øåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(93473, 77574, 'en', 'name', 'Academic Bridge Program'),
(93474, 77575, 'de', 'name', 'Hochschul Informations System'),
(93475, 77576, 'en', 'name', 'Science and Development Network'),
(93476, 77577, 'en', 'name', 'Adaptive Physical Education'),
(93477, 77578, 'no_lang_code', 'name', 'Frontline Medical Products (United States)'),
(93478, 77579, 'no_lang_code', 'name', 'Biocartis (Belgium)'),
(93479, 77580, 'de', 'name', 'Bayerisches Landeskriminalamt'),
(93480, 77581, 'no_lang_code', 'name', 'Fischer Group (Germany)'),
(93481, 77582, 'no_lang_code', 'name', 'Novalia (United Kingdom)'),
(93482, 77583, 'en', 'name', 'Scientific Research Institute of Healthcare Organization and Medical Management'),
(93483, 77583, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ организации Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø меГицинского менеГжмента'),
(93484, 77584, 'no_lang_code', 'name', 'Cynora (Germany)'),
(93485, 77585, 'de', 'name', 'Institut für Experimentelle Psychophysiologie'),
(93486, 77585, 'no_lang_code', 'name', 'Institute for Experimental Psychophysiology (Germany)'),
(93487, 77586, 'no_lang_code', 'name', 'Future Science Group (United Kingdom)'),
(93488, 77587, 'de', 'name', 'Institut für Praxisforschung und Projektberatung'),
(93489, 77588, 'no_lang_code', 'name', 'Nemera (France)'),
(93490, 77589, 'de', 'name', 'Agentur für Erneuerbare Energien'),
(93491, 77589, 'en', 'name', 'Renewable Energies Agency'),
(93492, 77590, 'no_lang_code', 'name', 'Micron Semiconductor (United Kingdom)'),
(93493, 77591, 'no_lang_code', 'name', 'Simphotek (United States)'),
(93494, 77592, 'ja', 'name', 'ēŸ³ē¦é‡‘å±žčˆˆę„­'),
(93495, 77592, 'no_lang_code', 'name', 'ISHIFUKU (Japan)'),
(93496, 77593, 'en', 'name', 'Museum of Natural and Environmental History, Shizuoka'),
(93497, 77593, 'ja', 'name', 'ćµć˜ć®ćć«åœ°ēƒē’°å¢ƒå²ćƒŸćƒ„ćƒ¼ć‚øć‚¢ćƒ '),
(93498, 77594, 'en', 'name', 'Ningbo Medical Center Lihuili Hospital'),
(93499, 77594, 'zh', 'name', 'å®ę³¢åø‚åŒ»ē–—äø­åæƒęŽęƒ åˆ©åŒ»é™¢'),
(93500, 77595, 'pt', 'name', 'Instituto Superior de Ciências de Educação à Distância'),
(93501, 77596, 'no_lang_code', 'name', 'Qinghai New Energy (China)'),
(93502, 77597, 'no_lang_code', 'name', 'Hans Raj Mahila Maha Vidyalaya'),
(93503, 77597, 'pa', 'name', 'ਹੰਸ ਰਾਜ ਮਹਿਲਾ ਮਹਾ ਵਿਦਿਆਲਾ'),
(93504, 77598, 'en', 'name', 'Infection Control Africa Network'),
(93505, 77599, 'no_lang_code', 'name', 'Cardiac Dimensions (United States)'),
(93506, 77600, 'no_lang_code', 'name', 'Hochbahn (Germany)'),
(93507, 77601, 'no_lang_code', 'name', 'Onto Innovation (United States)'),
(93508, 77602, 'no_lang_code', 'name', 'Interfels (Germany)'),
(93509, 77603, 'no_lang_code', 'name', 'Sembid'),
(93510, 77604, 'aa', 'name', 'ŠšŠŠ‘ŠŠ Š”Š˜ŠŠž-Š‘ŠŠ›ŠšŠŠ Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠ«Š™ Š¦Š•ŠŠ¢Š  Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ ŠŠšŠŠ”Š•ŠœŠ˜Š˜ ŠŠŠ£Šš'),
(93511, 77604, 'en', 'name', 'Kabardino-Balkarian Scientific Center'),
(93512, 77605, 'no_lang_code', 'name', 'I.C. Medical (United States)'),
(93513, 77606, 'no_lang_code', 'name', 'Muehlhan (Germany)'),
(93514, 77607, 'en', 'name', 'Delhi Development Authority'),
(93515, 77607, 'hi', 'name', 'ą¤¦ą¤æą¤²ą„ą¤²ą„€ विकास ą¤Ŗą„ą¤°ą¤¾ą¤§ą¤æą¤•ą¤°ą¤£'),
(93516, 77608, 'en', 'name', 'PLA Air Force Aviation University'),
(93517, 77608, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›čˆŖē©ŗå¤§å­¦'),
(93518, 77609, 'no_lang_code', 'name', 'Pharnext (France)'),
(93519, 77610, 'no_lang_code', 'name', 'Silixa (United Kingdom)'),
(93520, 77611, 'no_lang_code', 'name', 'Zhong Ke San Huan (China)'),
(93521, 77611, 'zh', 'name', 'äø­ē§‘äø‰ēŽÆ'),
(93522, 77612, 'de', 'name', 'Hygiene-Institut des Ruhrgebiets'),
(93523, 77613, 'de', 'name', 'Volkswirtschaftliches Institut für Mittelstand und Handwerk an der Universität Göttingen'),
(93524, 77613, 'en', 'name', 'Institute for Small Business Economics'),
(93525, 77614, 'de', 'name', 'Gewerkschaft Nahrung-Genuss-GaststƤtten'),
(93526, 77614, 'en', 'name', 'Food, Beverages and Catering Union'),
(93527, 77615, 'no_lang_code', 'name', 'JIT Labs (United States)'),
(93528, 77616, 'en', 'name', 'South African Sugarcane Research Institute'),
(93529, 77617, 'no_lang_code', 'name', 'Becker Photonik (Germany)'),
(93530, 77618, 'no_lang_code', 'name', 'Lumenis (Israel)'),
(93531, 77619, 'no_lang_code', 'name', 'Celularity (United States)'),
(93532, 77620, 'en', 'name', 'Animal Husbandry and Veterinary Department'),
(93533, 77621, 'de', 'name', 'MuseumspƤdagogische Zentrum'),
(93534, 77622, 'no_lang_code', 'name', 'MAM Babyartikel (Germany)'),
(93535, 77623, 'no_lang_code', 'name', 'Affectiva (United States)'),
(93536, 77624, 'no_lang_code', 'name', 'Torc Robotics (United States)'),
(93537, 77625, 'en', 'name', 'Elaine Roberts Foundation'),
(93538, 77626, 'en', 'name', 'Central Institute of Technology Kokrajhar'),
(93539, 77626, 'hi', 'name', 'ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą„‹ą¤•ą¤°ą¤¾ą¤ą¤¾ą¤°'),
(93540, 77627, 'no_lang_code', 'name', 'Aurinia (Canada)'),
(93541, 77628, 'sk', 'name', 'StrednÔ OdbornÔ Skola Lesnícka TvrdoŔín'),
(93542, 77629, 'en', 'name', 'Southern District Health Board'),
(93543, 77630, 'no_lang_code', 'name', 'Gurit (United Kingdom)'),
(93544, 77631, 'en', 'name', 'China Business Executives Academy'),
(93545, 77631, 'zh', 'name', 'äø­å›½å¤§čæžé«˜ēŗ§ē»ē†å­¦é™¢'),
(93546, 77632, 'en', 'name', 'Institute of Wetland Research'),
(93547, 77632, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ę¹æåœ°ē ”ē©¶ę‰€'),
(93548, 77633, 'de', 'name', 'Institut für Gewässerschutz Mesocosm, Mesocosm'),
(93549, 77634, 'no_lang_code', 'name', 'Xona Microfluidics (United States)'),
(93550, 77635, 'no_lang_code', 'name', 'Polynt (Italy)'),
(93551, 77636, 'en', 'name', 'Zoo Outreach Organisation'),
(93552, 77637, 'en', 'name', 'Magnetic Resonance Institute for Safety, Technology and Research'),
(93553, 77638, 'ja', 'name', 'ę—„å»ŗčØ­čØˆ'),
(93554, 77638, 'no_lang_code', 'name', 'Nikken Sekkei (Japan)'),
(93555, 77639, 'no_lang_code', 'name', 'SonarMed (United States)'),
(93556, 77640, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ‡ćƒ©ćƒ³ć‚¹'),
(93557, 77640, 'no_lang_code', 'name', 'Aderans (Japan)'),
(93558, 77641, 'en', 'name', 'Islamic Azad University, Omidieh Branch'),
(93559, 77641, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ł…ŪŒŲÆŪŒŁ‡'),
(93560, 77642, 'de', 'name', 'Deutsche Umwelthilfe'),
(93561, 77642, 'en', 'name', 'Environmental Action Germany'),
(93562, 77643, 'no_lang_code', 'name', 'SmarAct (Germany)'),
(93563, 77644, 'no_lang_code', 'name', 'Volkswohnung (Germany)'),
(93564, 77645, 'en', 'name', 'Sichuan Integrative Medicine Hosipital'),
(93565, 77645, 'zh', 'name', 'å››å·ēœäø­č„æåŒ»ē»“åˆåŒ»é™¢'),
(93566, 77646, 'en', 'name', 'Avantha Centre for Industrial Research & Development'),
(93567, 77646, 'hi', 'name', 'ą¤”ą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤•ą„‡ ą¤²ą¤æą¤ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° अवंता'),
(93568, 77647, 'ja', 'name', 'ęœę—„ć‚¤ćƒ³ćƒ†ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(93569, 77647, 'no_lang_code', 'name', 'Asahi Intecc (Japan)'),
(93570, 77648, 'no_lang_code', 'name', 'MEDRx (Japan)'),
(93571, 77649, 'no_lang_code', 'name', 'AVIC Optronics (China)'),
(93572, 77649, 'zh', 'name', 'čˆŖē©ŗå·„äøšå…‰ē”µę‰€'),
(93573, 77650, 'no_lang_code', 'name', 'WƤrtsilƤ (United Kingdom)'),
(93574, 77651, 'no_lang_code', 'name', 'Tracoe Medical (Germany)'),
(93575, 77652, 'en', 'name', 'Write Inspired'),
(93576, 77653, 'en', 'name', 'Miyagi Prefectural Research Institute of The Tagajo site'),
(93577, 77653, 'ja', 'name', 'å®®åŸŽēœŒå¤šč³€åŸŽč·”čŖæęŸ»ē ”ē©¶ę‰€'),
(93578, 77654, 'en', 'name', 'Participatory Rural Development Foundation'),
(93579, 77655, 'no_lang_code', 'name', 'Partek (United States)');
INSERT INTO `ror_settings` VALUES
(93580, 77656, 'no_lang_code', 'name', 'Qualicaps (Japan)'),
(93581, 77657, 'en', 'name', 'Himi City Library'),
(93582, 77657, 'ja', 'name', '氷見市立図書館'),
(93583, 77658, 'en', 'name', 'Hyogo Prefectural Institute for Educational Research and In-Service Training'),
(93584, 77658, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ę•™č‚²ē ”äæ®ę‰€'),
(93585, 77659, 'no_lang_code', 'name', 'Carag (Switzerland)'),
(93586, 77660, 'en', 'name', 'Institute of Taiwan Studies Chinese Academy of Social Sciences'),
(93587, 77660, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å°ę¹¾ē ”ē©¶ę‰€'),
(93588, 77661, 'no_lang_code', 'name', 'Theragnostic Technologies (United States)'),
(93589, 77662, 'no_lang_code', 'name', 'Primaira (United States)'),
(93590, 77663, 'no_lang_code', 'name', 'Quad-C Management (United States)'),
(93591, 77664, 'de', 'name', 'Pathologie Hamburg-West'),
(93592, 77665, 'no_lang_code', 'name', 'Cook Research (United States)'),
(93593, 77666, 'en', 'name', 'DS Smith (United Kingdom)'),
(93594, 77667, 'no_lang_code', 'name', 'Arithmer (Japan)'),
(93595, 77668, 'en', 'name', 'Electoral Institute for Sustainable Democracy in Africa'),
(93596, 77669, 'ja', 'name', 'ć‚°ćƒ³ć‚¼ę Ŗå¼ä¼šē¤¾'),
(93597, 77669, 'no_lang_code', 'name', 'Gunze (Japan)'),
(93598, 77670, 'fr', 'name', 'Fondation Botnar'),
(93599, 77671, 'no_lang_code', 'name', 'Pregistry (United States)'),
(93600, 77672, 'en', 'name', 'African Refuge'),
(93601, 77673, 'no_lang_code', 'name', 'ROM Technik (Germany)'),
(93602, 77674, 'en', 'name', 'Shiga Prefecture Cultural Property Protection Association'),
(93603, 77674, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę»‹č³€ēœŒę–‡åŒ–č²”äæč­·å”ä¼š'),
(93604, 77675, 'it', 'name', 'Centro per le Nano-Scienze della Vita'),
(93605, 77676, 'ja', 'name', 'åŗƒę „åŒ–å­¦'),
(93606, 77676, 'no_lang_code', 'name', 'Koei Chemical (Japan)'),
(93607, 77677, 'no_lang_code', 'name', 'Epix Pharmaceuticals (United States)'),
(93608, 77678, 'no_lang_code', 'name', 'Medtentia (Finland)'),
(93609, 77679, 'no_lang_code', 'name', 'Trench (Germany)'),
(93610, 77680, 'en', 'name', 'East Foundation'),
(93611, 77681, 'no_lang_code', 'name', 'Shape Memory Medical (United States)'),
(93612, 77682, 'no_lang_code', 'name', 'Vivex Biologics (United States)'),
(93613, 77683, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ åÆŒå£«ć‚­ćƒ”ćƒ©ē·ē ”'),
(93614, 77683, 'no_lang_code', 'name', 'Fuji Chimera Research Institute (Japan)'),
(93615, 77684, 'no_lang_code', 'name', 'Elena International (Germany)'),
(93616, 77685, 'no_lang_code', 'name', 'Oledcomm (France)'),
(93617, 77686, 'no_lang_code', 'name', 'Sleep Number (United States)'),
(93618, 77687, 'en', 'name', 'Debark University'),
(93619, 77688, 'ko', 'name', 'ģ˜¤ģŠ¤ķ…œģž„ķ”Œėž€ķŠø'),
(93620, 77688, 'no_lang_code', 'name', 'Osstem Implant (South Korea)'),
(93621, 77689, 'no_lang_code', 'name', 'Scorpion Therapeutics (United States)'),
(93622, 77690, 'no_lang_code', 'name', 'VitalConnect (United States)'),
(93623, 77691, 'af', 'name', 'Twende Mbele'),
(93624, 77692, 'ja', 'name', 'é«˜ēŸ„åø‚ē«‹é«˜ēŸ„åø‚ę°‘å›³ę›øé¤Ø'),
(93625, 77692, 'no_lang_code', 'name', 'Otepia Kochi Library'),
(93626, 77693, 'bg', 'name', 'Главна Š“ŠøŃ€ŠµŠŗŃ†ŠøŃ "Борба с организираната ŠæŃ€ŠµŃŃ‚ŃŠŠæŠ½Š¾ŃŃ‚"'),
(93627, 77693, 'en', 'name', 'General Directorate Combating Organized Crime'),
(93628, 77694, 'en', 'name', 'Veterinary & Animal Husbandry'),
(93629, 77695, 'en', 'name', 'National Institute of High Security Animal Diseases'),
(93630, 77695, 'hi', 'name', 'ą¤‰ą¤šą„ą¤š ą¤øą„ą¤°ą¤•ą„ą¤·ą¤¾ ą¤Ŗą¤¶ą„ ą¤°ą„‹ą¤— ą¤•ą„‡ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(93631, 77696, 'de', 'name', 'Institut für Angewandte Innovationsforschung'),
(93632, 77697, 'fr', 'name', 'HƓpital Maritime de Berck'),
(93633, 77698, 'en', 'name', 'The Carpentries'),
(93634, 77699, 'fr', 'name', 'UniversitƩ Pelefero Gon Coulibaly'),
(93635, 77700, 'no_lang_code', 'name', 'PureCircle (Malaysia)'),
(93636, 77701, 'no_lang_code', 'name', 'Neurelis (United States)'),
(93637, 77702, 'en', 'name', 'Siberian Law University'),
(93638, 77702, 'ru', 'name', 'Дибирский ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(93639, 77703, 'en', 'name', 'Environs Kimberley'),
(93640, 77704, 'no_lang_code', 'name', 'Goldfinch Bio (United States)'),
(93641, 77705, 'no_lang_code', 'name', 'Procomcure Biotech (Austria)'),
(93642, 77706, 'en', 'name', 'World Health Organization - Lebanon'),
(93643, 77707, 'no_lang_code', 'name', 'Sigma Designs (United States)'),
(93644, 77708, 'no_lang_code', 'name', 'Synecor (United States)'),
(93645, 77709, 'nl', 'name', 'J.M. Burgerscentrum'),
(93646, 77710, 'de', 'name', 'Institut für Neue Medien'),
(93647, 77710, 'en', 'name', 'Institute for New Media'),
(93648, 77711, 'fr', 'name', 'LabƩo'),
(93649, 77712, 'en', 'name', 'Centre for Military Airworthiness and Certification'),
(93650, 77712, 'hi', 'name', 'ą¤øą„‡ą¤Øą¤¾ ą¤‰ą„œą¤Øą¤Æą„‹ą¤—ą„ą¤Æą¤¤ą¤¾ और ą¤Ŗą„ą¤°ą¤®ą¤¾ą¤£ą„€ą¤•ą¤°ą¤£ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(93651, 77713, 'no_lang_code', 'name', 'BioRankings (United States)'),
(93652, 77714, 'no_lang_code', 'name', 'Simmtec (United States)'),
(93653, 77715, 'no_lang_code', 'name', 'Titan Medical (Canada)'),
(93654, 77716, 'en', 'name', 'Anhui Academy of Medical Sciences'),
(93655, 77716, 'zh', 'name', 'å®‰å¾½ēœåŒ»å­¦ē§‘å­¦ē ”ē©¶é™¢'),
(93656, 77717, 'no_lang_code', 'name', 'Evalf Computing (Netherlands)'),
(93657, 77718, 'en', 'name', 'Bunkyo Furusato History Museum'),
(93658, 77718, 'ja', 'name', 'ę–‡äŗ¬ćµć‚‹ć•ćØę­“å²é¤Ø'),
(93659, 77719, 'no_lang_code', 'name', 'Teamtechnik (Germany)'),
(93660, 77720, 'en', 'name', 'El Paso VA Health Care System'),
(93661, 77721, 'en', 'name', 'International Centre for Trade and Sustainable Development'),
(93662, 77722, 'de', 'name', 'Bayerische Landesanstalt für Weinbau und Gartenbau'),
(93663, 77723, 'no_lang_code', 'name', 'Spiegel Institut (Germany)'),
(93664, 77724, 'ja', 'name', 'ē¦å²”åø‚åšē‰©é¤Ø'),
(93665, 77724, 'no_lang_code', 'name', 'Fukuoka City Museum'),
(93666, 77725, 'en', 'name', 'Liaoning Meteorological Bureau'),
(93667, 77725, 'zh', 'name', 'č¾½å®ēœę°”č±”å±€'),
(93668, 77726, 'no_lang_code', 'name', 'E4D Technologies (United States)'),
(93669, 77727, 'no_lang_code', 'name', 'Mineralƶlverbundleitung (Germany)'),
(93670, 77728, 'no_lang_code', 'name', 'AXO Dresden (Germany)'),
(93671, 77729, 'en', 'name', 'Yomiuri Science and Technology College'),
(93672, 77729, 'ja', 'name', 'čŖ­å£²ē†å·„åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(93673, 77730, 'ja', 'name', 'äøøēŸ³č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(93674, 77730, 'no_lang_code', 'name', 'Maruishi Pharmaceutical (Japan)'),
(93675, 77731, 'en', 'name', 'Zambia Forestry College'),
(93676, 77732, 'de', 'name', 'Naturstiftung David'),
(93677, 77733, 'ar', 'name', 'منظمة العالم Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ Ł„Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŲ©'),
(93678, 77733, 'en', 'name', 'Islamic World Educational, Scientific and Cultural Organization'),
(93679, 77734, 'en', 'name', 'Arunachal Pradesh State Council for Science & Technology'),
(93680, 77735, 'en', 'name', 'Johannesburg Wildlife Vet'),
(93681, 77736, 'no_lang_code', 'name', 'Albumedix (United Kingdom)'),
(93682, 77737, 'no_lang_code', 'name', 'Zuiko (Japan)'),
(93683, 77738, 'no_lang_code', 'name', 'Secant Group (United States)'),
(93684, 77739, 'en', 'name', 'Perry Point VA Medical Center'),
(93685, 77740, 'en', 'name', 'London Borough of Hackney'),
(93686, 77741, 'fr', 'name', 'HƓpital Paul-Doumer'),
(93687, 77742, 'no_lang_code', 'name', 'BioQ Pharma (United States)'),
(93688, 77743, 'no_lang_code', 'name', 'Radianse (United States)'),
(93689, 77744, 'en', 'name', 'National Academy of History of Argentina'),
(93690, 77744, 'es', 'name', 'Academia Nacional de la Historia de la RepĆŗblica Argentina'),
(93691, 77745, 'no_lang_code', 'name', 'Compass Technology (China)'),
(93692, 77746, 'no_lang_code', 'name', 'Protix (Netherlands)'),
(93693, 77747, 'no_lang_code', 'name', 'Rockstep Solutions (United States)'),
(93694, 77748, 'en', 'name', 'The San Raffaele Telethon Institute for Gene Therapy'),
(93695, 77749, 'en', 'name', 'NDIS Quality and Safeguards Commission'),
(93696, 77750, 'no_lang_code', 'name', 'Sitronix Technology (Taiwan)'),
(93697, 77751, 'no_lang_code', 'name', 'Thorleaf Research (United States)'),
(93698, 77752, 'de', 'name', 'Inter 3, inter 3 Institut für Ressourcenmanagement'),
(93699, 77753, 'no_lang_code', 'name', 'Protection Engineering Consultants (United States)'),
(93700, 77754, 'en', 'name', 'Gorilla Doctors'),
(93701, 77755, 'es', 'name', 'Colegio Colombiano de Terapia Ocupacional'),
(93702, 77756, 'en', 'name', 'Babylon Health'),
(93703, 77757, 'no_lang_code', 'name', 'Xtant Medical (United States)'),
(93704, 77758, 'no_lang_code', 'name', 'InCube Labs (United States)'),
(93705, 77759, 'no_lang_code', 'name', 'AcuFocus (United States)'),
(93706, 77760, 'no_lang_code', 'name', 'Semtech (United Kingdom)'),
(93707, 77761, 'en', 'name', 'Preusser Research Group'),
(93708, 77762, 'no_lang_code', 'name', 'F-Secure (Finland)'),
(93709, 77763, 'no_lang_code', 'name', 'Pursuant Health (United States)'),
(93710, 77764, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© طرابلس Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(93711, 77764, 'en', 'name', 'University of Tripoli Al-ahlia'),
(93712, 77765, 'en', 'name', 'The Task Force for Global Health'),
(93713, 77766, 'no_lang_code', 'name', 'DOT (Germany)'),
(93714, 77767, 'no_lang_code', 'name', 'Medinol (Israel)'),
(93715, 77768, 'en', 'name', 'Kalam Institute of Health Technology'),
(93716, 77769, 'no_lang_code', 'name', 'PetroIneos (United Kingdom)'),
(93717, 77770, 'de', 'name', 'Institut für Biogas, Kreislaufwirtschaft und Energie'),
(93718, 77770, 'no_lang_code', 'name', 'Institute of Biogas, Waste Management and Energy (Germany)'),
(93719, 77771, 'no_lang_code', 'name', 'Hong Kong Auto Parts Industry Association (China)'),
(93720, 77771, 'zh', 'name', 'é¦™ęøÆę±½č»Šé›¶éƒØä»¶å·„ę„­å”ęœƒ'),
(93721, 77772, 'en', 'name', 'Okayama City Library'),
(93722, 77772, 'ja', 'name', '岔山市図書館'),
(93723, 77773, 'no_lang_code', 'name', 'KleinwƤchter (Germany)'),
(93724, 77774, 'en', 'name', 'National Committee for the Development of Technologies'),
(93725, 77774, 'fr', 'name', 'ComitƩ National de DƩveloppement des Technologies'),
(93726, 77775, 'en', 'name', 'New Hampshire Sea Grant'),
(93727, 77776, 'no_lang_code', 'name', 'Cosmo Tech (France)'),
(93728, 77777, 'en', 'name', 'Guangxi Zhuang Autonomous Region Hydraulic Research Institute'),
(93729, 77777, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(93730, 77778, 'en', 'name', 'University of Halabja'),
(93731, 77778, 'ku', 'name', 'Ų²Ų§Ł†ŁƒŪ†Ł‰ Ł‡Ł‡ā€ŒŚµŁ‡ā€ŒŲØŲ¬Ł‡'),
(93732, 77779, 'no_lang_code', 'name', 'ConjuChem (Canada)'),
(93733, 77780, 'en', 'name', 'Nevada National Security Site'),
(93734, 77781, 'en', 'name', 'John J. Pershing VA Medical Center'),
(93735, 77782, 'no_lang_code', 'name', 'Alcami (United States)'),
(93736, 77783, 'no_lang_code', 'name', 'Graebener Maschinentechnik (Germany)'),
(93737, 77784, 'es', 'name', 'Ecuatesis'),
(93738, 77785, 'en', 'name', 'Stockholm Environment Institute'),
(93739, 77786, 'no_lang_code', 'name', 'CosmoCode (Germany)'),
(93740, 77787, 'no_lang_code', 'name', 'Emweb (Belgium)'),
(93741, 77788, 'en', 'name', 'Global Emerging Pathogens Treatment Consortium'),
(93742, 77789, 'en', 'name', 'Wuhan No. 7 Hospital'),
(93743, 77789, 'zh', 'name', 'ę­¦ę±‰åø‚ē¬¬äøƒåŒ»é™¢'),
(93744, 77790, 'en', 'name', 'Federal Reserve Bank of Minneapolis'),
(93745, 77791, 'no_lang_code', 'name', 'Mammoth Biosciences (United States)'),
(93746, 77792, 'nl', 'name', 'Nederlands Instituut Forensische Psychiatrie'),
(93747, 77793, 'no_lang_code', 'name', 'Step Tools (United States)'),
(93748, 77794, 'no_lang_code', 'name', 'Roche (Ecuador)'),
(93749, 77795, 'no_lang_code', 'name', 'Osmic Enterprises (United States)'),
(93750, 77796, 'no_lang_code', 'name', 'Vigilant Cyber Systems (United States)'),
(93751, 77797, 'en', 'name', 'James E. Van Zandt VA Medical Center'),
(93752, 77798, 'no_lang_code', 'name', 'Kind Consumer (United Kingdom)'),
(93753, 77799, 'no_lang_code', 'name', 'Synaptive (Canada)'),
(93754, 77800, 'en', 'name', 'Islamic Azad University, Khoy Branch'),
(93755, 77800, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد خوی'),
(93756, 77801, 'no_lang_code', 'name', 'Syncro Medical Innovations (United States)'),
(93757, 77802, 'fr', 'name', 'Centre ParamƩdical Santy'),
(93758, 77803, 'en', 'name', 'China Academy of Information and Communications Technology'),
(93759, 77804, 'no_lang_code', 'name', 'Stadtwerke Kƶln (Germany)'),
(93760, 77805, 'en', 'name', 'State Key Laboratory of Synthetic Chemistry'),
(93761, 77805, 'zh', 'name', 'åˆęˆåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(93762, 77806, 'no_lang_code', 'name', 'Freiberger Compound Materials (Germany)'),
(93763, 77807, 'en', 'name', 'German Foreign Trade and Transport Academy'),
(93764, 77808, 'en', 'name', 'Department of International Relations and Cooperation'),
(93765, 77809, 'no_lang_code', 'name', 'Mitsubishi Corporation (United Kingdom)'),
(93766, 77810, 'no_lang_code', 'name', 'Agile Therapeutics (United States)'),
(93767, 77811, 'de', 'name', 'Ostschweizer Fachhochschule OST'),
(93768, 77811, 'en', 'name', 'Eastern Switzerland University of Applied Sciences'),
(93769, 77812, 'no_lang_code', 'name', 'Jinyintan Hospital'),
(93770, 77812, 'zh', 'name', 'ę­¦ę±‰åø‚é‡‘é“¶ę½­åŒ»é™¢'),
(93771, 77813, 'no_lang_code', 'name', 'Esteve QuĆ­mica (Spain)'),
(93772, 77814, 'en', 'name', 'Delaware Sea Grant'),
(93773, 77815, 'en', 'name', 'Lifenet Health'),
(93774, 77816, 'no_lang_code', 'name', 'Silatronix (United States)'),
(93775, 77817, 'en', 'name', 'International Medical And Welfare College'),
(93776, 77817, 'ja', 'name', 'å›½éš›åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(93777, 77818, 'de', 'name', 'Forschungsinstitut Bioaktive Polymersysteme'),
(93778, 77818, 'en', 'name', 'Research Institute Bioactive Polymer Systems'),
(93779, 77819, 'en', 'name', 'Centre for African Wetlands'),
(93780, 77820, 'en', 'name', 'World Health Organization - Afghanistan'),
(93781, 77821, 'no_lang_code', 'name', 'Neuronetics (United States)'),
(93782, 77822, 'en', 'name', 'Hearing4all'),
(93783, 77823, 'en', 'name', 'Tarsus University'),
(93784, 77823, 'tr', 'name', 'Tarsus Üniversitesi'),
(93785, 77824, 'no_lang_code', 'name', 'RiboNova (United States)'),
(93786, 77825, 'no_lang_code', 'name', 'TherapeuticsMD (United States)'),
(93787, 77826, 'en', 'name', 'The Yellow Tulip Project'),
(93788, 77827, 'no_lang_code', 'name', 'Concentrating Solar Power Services (Germany)'),
(93789, 77828, 'en', 'name', 'Centre For Wildlife Studies'),
(93790, 77829, 'de', 'name', 'M2C Institut für Angewandte Medienforschung'),
(93791, 77830, 'no_lang_code', 'name', 'Vestar (United States)'),
(93792, 77831, 'no_lang_code', 'name', 'Parade Technologies (United States)'),
(93793, 77832, 'de', 'name', 'Deutsche Akademie der Technikwissenschaften'),
(93794, 77832, 'en', 'name', 'Acatech'),
(93795, 77833, 'no_lang_code', 'name', 'Vetservis (Slovakia)'),
(93796, 77834, 'en', 'name', 'Norwegian Radiation and Nuclear Safety Authority'),
(93797, 77834, 'no', 'name', 'Direktoratet for StrƄlevern og Atomtryggleik'),
(93798, 77835, 'no_lang_code', 'name', 'YumaWorks (United States)'),
(93799, 77836, 'en', 'name', 'Mie Chuo Medical Center'),
(93800, 77836, 'ja', 'name', 'äø‰é‡äø­å¤®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(93801, 77837, 'en', 'name', 'The Australian Prevention Partnership Centre'),
(93802, 77838, 'en', 'name', 'Ann Arbor VA Medical Center'),
(93803, 77839, 'en', 'name', 'Weihai Chest Hospital'),
(93804, 77839, 'zh', 'name', 'åØęµ·åø‚čƒøē§‘åŒ»é™¢'),
(93805, 77840, 'de', 'name', 'Forschungsinstitut Betriebliche Bildung'),
(93806, 77841, 'no_lang_code', 'name', 'Comecer (Italy)'),
(93807, 77842, 'no_lang_code', 'name', 'Rainbow Medical (Israel)'),
(93808, 77843, 'no_lang_code', 'name', 'Fukuda Denshi (Japan)'),
(93809, 77844, 'es', 'name', 'Instituto Tecnológico de Pabellón de Arteaga'),
(93810, 77845, 'en', 'name', 'University Hospital Kyoto Prefectural University of Medicine'),
(93811, 77845, 'ja', 'name', 'äŗ¬éƒ½åŗœē«‹åŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(93812, 77846, 'no_lang_code', 'name', 'Editas Medicine (United States)'),
(93813, 77847, 'de', 'name', 'Bildungsinstitut im Gesundheitswesen'),
(93814, 77848, 'fr', 'name', 'Agence RƩgionale de SantƩ Nouvelle-Aquitaine'),
(93815, 77849, 'de', 'name', 'München Klinik Harlaching'),
(93816, 77850, 'no_lang_code', 'name', 'Entropica Labs (Singapore)'),
(93817, 77851, 'de', 'name', 'FIVE - Forschungs- und Innovationsverbund an der Evangelischen Hochschule Freiburg'),
(93818, 77852, 'en', 'name', 'Islamic Azad University, Khorramabad Branch'),
(93819, 77852, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų®Ų±Ł…ā€ŒŲ¢ŲØŲ§ŲÆ'),
(93820, 77853, 'de', 'name', 'Institut für Angewandte Statistik'),
(93821, 77854, 'no_lang_code', 'name', 'Helm (Germany)'),
(93822, 77855, 'af', 'name', 'Suid-Afrikaanse Reserwebank'),
(93823, 77855, 'en', 'name', 'South African Reserve Bank'),
(93824, 77856, 'no_lang_code', 'name', 'Großmann Ingenieur Consult (Germany)'),
(93825, 77857, 'de', 'name', 'Institut für Angewandte Bodenbiologie'),
(93826, 77857, 'en', 'name', 'Institute for Applied Soil Biology'),
(93827, 77858, 'no_lang_code', 'name', 'Shimadzu (Slovakia)'),
(93828, 77859, 'no_lang_code', 'name', 'Sonic Healthcare (Germany)'),
(93829, 77860, 'en', 'name', 'Shougang Institute of Technology'),
(93830, 77860, 'zh', 'name', 'é¦–é’¢å·„å­¦é™¢ęˆē«‹äŗŽ'),
(93831, 77861, 'de', 'name', 'Gesellschaft für Musikforschung'),
(93832, 77861, 'en', 'name', 'German Musicological Society'),
(93833, 77862, 'no_lang_code', 'name', 'NES (Slovakia)'),
(93834, 77863, 'no_lang_code', 'name', 'Uniqarta (United States)'),
(93835, 77864, 'no_lang_code', 'name', '3B the Fiberglass (Belgium)'),
(93836, 77865, 'no_lang_code', 'name', 'Extremiti3D (United States)'),
(93837, 77866, 'no_lang_code', 'name', 'Agnostiq (Canada)'),
(93838, 77867, 'no_lang_code', 'name', 'Applied Spectral Imaging (United States)'),
(93839, 77868, 'en', 'name', 'Tecres (Italy)'),
(93840, 77869, 'en', 'name', 'Sheltering Arms Institute'),
(93841, 77870, 'en', 'name', 'Beltsville Agricultural Research Center'),
(93842, 77871, 'no_lang_code', 'name', 'GhScientific'),
(93843, 77872, 'en', 'name', 'Lipomic Healthcare (India)'),
(93844, 77873, 'no_lang_code', 'name', 'KettenbachDental (Germany)'),
(93845, 77874, 'no_lang_code', 'name', 'Intellia Therapeutics (United States)'),
(93846, 77875, 'no_lang_code', 'name', 'Graphcore (United Kingdom)'),
(93847, 77876, 'en', 'name', 'Woodlands Health Campus'),
(93848, 77877, 'en', 'name', 'Research Institute of Resource Insects'),
(93849, 77877, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢čµ„ęŗę˜†č™«ē ”ē©¶ę‰€'),
(93850, 77878, 'no_lang_code', 'name', 'Himalayan Biodiversity Network'),
(93851, 77879, 'en', 'name', 'National Diabetes Obesity and Cholesterol Foundation'),
(93852, 77880, 'de', 'name', 'Berufsforschungs- und Beratungsinstitut für interdisziplinäre Technikgestaltung'),
(93853, 77881, 'de', 'name', 'Fachinstitut für Informatik und Grafikdesign'),
(93854, 77882, 'en', 'name', 'Tengzhou Central People''s Hospital'),
(93855, 77882, 'zh', 'name', 'ę»•å·žåø‚äø­åæƒäŗŗę°‘åŒ»é™¢'),
(93856, 77883, 'no_lang_code', 'name', 'DemeRx (United States)'),
(93857, 77884, 'no_lang_code', 'name', 'Vactronix Scientific (United States)'),
(93858, 77885, 'en', 'name', 'Higashihiroshima Medical Center'),
(93859, 77885, 'ja', 'name', 'ę±åŗƒå³¶åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(93860, 77886, 'en', 'name', 'The Salvation Army China'),
(93861, 77886, 'zh', 'name', '救世军'),
(93862, 77887, 'de', 'name', 'Institut für Umweltwirtschaftsanalysen Heidelberg'),
(93863, 77888, 'de', 'name', 'Wilhelm Löhe Hochschule für angewandte Wissenschaften'),
(93864, 77888, 'en', 'name', 'Wilhelm Lƶhe University for Applied Sciences'),
(93865, 77889, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ хіміі і навук аб Š—ŃŠ¼Š»Ń–'),
(93866, 77889, 'en', 'name', 'Department of Chemistry and Earth Sciences'),
(93867, 77890, 'no_lang_code', 'name', 'Sun Valley Technology (United States)'),
(93868, 77891, 'no_lang_code', 'name', 'Noddle (United States)'),
(93869, 77892, 'no_lang_code', 'name', 'Ambu (Denmark)'),
(93870, 77893, 'en', 'name', 'Stavanger Museum'),
(93871, 77894, 'no_lang_code', 'name', 'Cherry Biotech (France)'),
(93872, 77895, 'no_lang_code', 'name', 'Veriskin (United States)'),
(93873, 77896, 'en', 'name', 'HFC Hope for Children CRC Policy Center'),
(93874, 77897, 'en', 'name', 'University Of Information Technology'),
(93875, 77897, 'my', 'name', 'į€žį€į€„į€ŗį€øį€”į€į€»į€€į€ŗį€”į€œį€€į€ŗį€”į€Šį€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(93876, 77898, 'no_lang_code', 'name', 'SFC Energy (Germany)'),
(93877, 77899, 'en', 'name', 'Institute for Biomedical Research and Innovation'),
(93878, 77899, 'it', 'name', 'L’istituto per la Ricerca e l’innovazione Biomedica'),
(93879, 77900, 'no_lang_code', 'name', 'Misonix (United States)'),
(93880, 77901, 'no_lang_code', 'name', 'Institut für Angewandte Gewässerökologie (Germany)'),
(93881, 77902, 'en', 'name', 'Fraunhofer USA Center for Sustainable Energy Systems'),
(93882, 77903, 'en', 'name', 'Kerrville VA Medical Center'),
(93883, 77904, 'en', 'name', 'Institute of Earth Sciences, Academia Sinica'),
(93884, 77904, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢åœ°ēƒē§‘å­øē ”ē©¶ę‰€'),
(93885, 77905, 'en', 'name', 'Institute of Technology Management'),
(93886, 77905, 'hi', 'name', 'ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø (ą¤†ą¤ˆ ą¤Ÿą„€ ą¤ą¤®) ą¤”ą„€ आर ą¤”ą„€ ओ, ą¤®ą¤øą„‚ą¤°ą„€'),
(93887, 77906, 'ja', 'name', 'ę—„ę±ē“”ēø¾ę Ŗå¼ä¼šē¤¾'),
(93888, 77906, 'no_lang_code', 'name', 'Nitto Boseki (Japan)'),
(93889, 77907, 'no_lang_code', 'name', 'Oticon Medical (Denmark)'),
(93890, 77908, 'no_lang_code', 'name', 'Ortho Tain (United States)'),
(93891, 77909, 'de', 'name', 'Landesinstitut für Präventives Handeln'),
(93892, 77910, 'en', 'name', 'Australian Taxation Office'),
(93893, 77911, 'en', 'name', 'Shanghai Public Security Bureau'),
(93894, 77911, 'zh', 'name', 'äøŠęµ·åø‚å…¬å®‰å±€'),
(93895, 77912, 'no_lang_code', 'name', 'Memcomputing (United States)'),
(93896, 77913, 'no_lang_code', 'name', 'US Night Vision (United States)'),
(93897, 77914, 'no_lang_code', 'name', 'Cetex (Germany)'),
(93898, 77915, 'no_lang_code', 'name', 'Topia Technology (United States)'),
(93899, 77916, 'no_lang_code', 'name', 'Rayner (United States)'),
(93900, 77917, 'en', 'name', 'Eastmed'),
(93901, 77918, 'en', 'name', 'RIKEN Center for Advanced Intelligence Project'),
(93902, 77918, 'ja', 'name', 'ē‰¹å®šå›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ é©ę–°ēŸ„čƒ½ēµ±åˆē ”ē©¶ć‚»ćƒ³ć‚æ'),
(93903, 77919, 'no_lang_code', 'name', 'Yidu Central Hospital of Weifang'),
(93904, 77919, 'zh', 'name', 'ę½åŠåø‚ē›Šéƒ½äø­åæƒåŒ»é™¢'),
(93905, 77920, 'no_lang_code', 'name', 'Bainbridge Development Corporation (United States)'),
(93906, 77921, 'no_lang_code', 'name', 'Sol-Gel Technologies (Israel)'),
(93907, 77922, 'en', 'name', 'Institute of Agricultural Machinery'),
(93908, 77922, 'ja', 'name', 'č¾²ę„­ē’°å¢ƒå¤‰å‹•ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(93909, 77923, 'en', 'name', 'Fargo VA Health Care System'),
(93910, 77924, 'no_lang_code', 'name', 'Mycronic (Sweden)'),
(93911, 77925, 'no_lang_code', 'name', 'Oculus OptikgerƤte (Germany)'),
(93912, 77926, 'no_lang_code', 'name', 'Rockley Photonics (United States)'),
(93913, 77927, 'en', 'name', 'National Bureau of Animal Genetic Resources'),
(93914, 77927, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą¤¶ą„ ą¤†ą¤Øą„ą¤µą¤‚ą¤¶ą¤æą¤• संसाधन ą¤¬ą„ą¤Æą„‚ą¤°ą„‹'),
(93915, 77928, 'no_lang_code', 'name', 'Curt G Joa (United States)'),
(93916, 77929, 'no_lang_code', 'name', 'ClĆ­nica MEDS (Chile)'),
(93917, 77930, 'no_lang_code', 'name', 'Qorvo (United Kingdom)'),
(93918, 77931, 'no_lang_code', 'name', 'Bau- und Liegenschaftsbetrieb des Landes Nordrhein-Westfalen (Germany)'),
(93919, 77932, 'no_lang_code', 'name', 'Q2 Solutions (United Kingdom)'),
(93920, 77933, 'en', 'name', 'Medical Business College'),
(93921, 77933, 'ja', 'name', 'åŒ»ē™‚ćƒ“ć‚øćƒć‚¹å°‚é–€å­¦ę ”'),
(93922, 77934, 'no_lang_code', 'name', 'TrueBinding (United States)'),
(93923, 77935, 'ja', 'name', 'ć‚¢ć‚·ćƒƒć‚Æć‚¹'),
(93924, 77935, 'no_lang_code', 'name', 'Asics (Japan)'),
(93925, 77936, 'no_lang_code', 'name', 'SoundPipe Therapeutics (United States)'),
(93926, 77937, 'de', 'name', 'Institut für Sozialinnovation'),
(93927, 77937, 'en', 'name', 'Institute for Social Innovation'),
(93928, 77938, 'no_lang_code', 'name', 'Omnitech Robotics (United States)'),
(93929, 77939, 'no_lang_code', 'name', 'Tesat-Spacecom (Germany)'),
(93930, 77940, 'ja', 'name', 'ę±Ÿęˆøå·å­¦åœ’ćŠćŠćŸć‹ć®ę£®å°‚é–€å­¦ę ”'),
(93931, 77940, 'no_lang_code', 'name', 'EDOSEN'),
(93932, 77941, 'no_lang_code', 'name', 'Seven Networks (United States)'),
(93933, 77942, 'en', 'name', 'Tropical Bioscience and Biotechnology Research Institute'),
(93934, 77942, 'zh', 'name', 'ēƒ­åø¦ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(93935, 77943, 'no_lang_code', 'name', 'Estech Systems (United States)'),
(93936, 77944, 'de', 'name', 'Forschungsinstitut für Beschäftigung Arbeit Qualifikation'),
(93937, 77945, 'ja', 'name', 'ę—„é‰„ć‚±ćƒŸć‚«ćƒ«&ćƒžćƒ†ćƒŖć‚¢ćƒ«'),
(93938, 77945, 'no_lang_code', 'name', 'Nippon Steel Chemical and Material (Japan)'),
(93939, 77946, 'en', 'name', 'International Thorium Molten-Salt Forum'),
(93940, 77946, 'ja', 'name', 'ćƒˆćƒŖć‚¦ćƒ ē†”čžå”©åŽŸå­ē‚‰'),
(93941, 77947, 'no_lang_code', 'name', 'Syktyvkar Forest Institute'),
(93942, 77947, 'ru', 'name', 'Дыктывкарский Лесной Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(93943, 77948, 'no_lang_code', 'name', 'Toyota Motor Corporation (Germany)'),
(93944, 77949, 'no_lang_code', 'name', 'Path BioAnalytics (United States)'),
(93945, 77950, 'de', 'name', 'Felsenweg-Institut'),
(93946, 77951, 'en', 'name', 'Shinshu Medical and Welfare College'),
(93947, 77951, 'ja', 'name', 'äæ”å·žåŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(93948, 77952, 'fr', 'name', 'HƓpital RenƩ-Muret'),
(93949, 77953, 'no_lang_code', 'name', 'Central Alliance (United Kingdom)'),
(93950, 77954, 'en', 'name', 'Central Hokkaido Animal Health Center'),
(93951, 77954, 'ja', 'name', 'ēœŒå¤®å®¶ē•œäæå„č”›ē”Ÿę‰€'),
(93952, 77955, 'en', 'name', 'Christus Stehlin Foundation for Cancer Research'),
(93953, 77956, 'it', 'name', 'BresciaMEd'),
(93954, 77957, 'de', 'name', 'Institut für Ausbildung Jugendlicher'),
(93955, 77958, 'no_lang_code', 'name', 'Shuttle Pharmaceuticals (United States)'),
(93956, 77959, 'no_lang_code', 'name', 'University Technical Services (United States)'),
(93957, 77960, 'en', 'name', 'NewClimate Institute'),
(93958, 77961, 'en', 'name', 'Shriners Hospitals for Children'),
(93959, 77962, 'en', 'name', 'Urban Upbound'),
(93960, 77963, 'de', 'name', 'Institut für Industrieaerodynamik'),
(93961, 77964, 'en', 'name', 'Samson Institute For Ageing Research'),
(93962, 77965, 'en', 'name', 'Mattapally Technologies'),
(93963, 77966, 'no_lang_code', 'name', 'Bregau (Germany)'),
(93964, 77967, 'en', 'name', 'National Radiation Protection Agency of Cameroon'),
(93965, 77967, 'fr', 'name', 'Agence Nationale de Radioprotection'),
(93966, 77968, 'no_lang_code', 'name', 'Linares Medical Devices (United States)'),
(93967, 77969, 'en', 'name', 'Royal Observatory in Greenwich'),
(93968, 77970, 'no_lang_code', 'name', 'Patz Materials and Technologies (United States)'),
(93969, 77971, 'no_lang_code', 'name', 'Dow Chemical (France)'),
(93970, 77972, 'no_lang_code', 'name', 'IGM Biosciences (United States)'),
(93971, 77973, 'en', 'name', 'Islamic Azad University, Malayer Branch'),
(93972, 77973, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł…Ł„Ų§ŪŒŲ±'),
(93973, 77974, 'de', 'name', 'Institut für Demoskopie Allensbach'),
(93974, 77974, 'en', 'name', 'Allensbach Institute'),
(93975, 77975, 'no_lang_code', 'name', 'Giuliani (Italy)'),
(93976, 77976, 'no_lang_code', 'name', 'Guided Therapy Systems (United States)'),
(93977, 77977, 'fr', 'name', 'Pigier CƓte d''Ivoire'),
(93978, 77978, 'en', 'name', 'MIT Sea Grant'),
(93979, 77979, 'no_lang_code', 'name', 'Itaconix (United Kingdom)'),
(93980, 77980, 'no_lang_code', 'name', 'Vista Equity Partners (United States)'),
(93981, 77981, 'de', 'name', 'Institut für Grundwasserökologie'),
(93982, 77981, 'en', 'name', 'Institute of Groundwater Ecology'),
(93983, 77982, 'no_lang_code', 'name', 'Synetics Systems Engineering Corp (United States)'),
(93984, 77983, 'no_lang_code', 'name', 'SHL Medical (Switzerland)'),
(93985, 77984, 'en', 'name', 'Yancheng Central Blood Station'),
(93986, 77984, 'zh', 'name', 'ē›åŸŽåø‚äø­åæƒč”€ē«™'),
(93987, 77985, 'en', 'name', 'Central Citrus Research Institute'),
(93988, 77985, 'mr', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤²ą¤æą¤‚ą¤¬ą„‚ą¤µą¤°ą„ą¤—ą„€ą¤Æ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(93989, 77986, 'no_lang_code', 'name', 'Prosthetic Design + Research (United States)'),
(93990, 77987, 'no_lang_code', 'name', 'Halocarbon (United States)'),
(93991, 77988, 'en', 'name', 'Center for Constitutional Governance'),
(93992, 77989, 'en', 'name', 'Saint Regis Mohawk Tribe'),
(93993, 77990, 'no_lang_code', 'name', 'Maspoma (Slovakia)'),
(93994, 77991, 'no_lang_code', 'name', 'Bridge Of Nucleic Acids Chemistry (Japan)'),
(93995, 77992, 'no_lang_code', 'name', 'Abilia (United Kingdom)'),
(93996, 77993, 'no_lang_code', 'name', 'MicroMega (France)'),
(93997, 77994, 'en', 'name', 'Saitama Prefectural Police'),
(93998, 77994, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒč­¦åÆŸ'),
(93999, 77995, 'en', 'name', 'Center of Immunology Pierre Fabre'),
(94000, 77995, 'fr', 'name', 'Centre d’Immunologie Pierre Fabre'),
(94001, 77996, 'en', 'name', 'Nanjing Municipal Center for Disease Control And Prevention'),
(94002, 77996, 'zh', 'name', 'å—äŗ¬åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(94003, 77997, 'no_lang_code', 'name', 'Kiio (United States)'),
(94004, 77998, 'no_lang_code', 'name', 'Eloquence Communications (United States)'),
(94005, 77999, 'en', 'name', 'Yueyang Second People''s Hospital'),
(94006, 77999, 'zh', 'name', 'å²³é˜³åø‚äŗŒäŗŗę°‘åŒ»é™¢'),
(94007, 78000, 'no_lang_code', 'name', 'Pratt & Miller (United States)'),
(94008, 78001, 'en', 'name', 'Centre for International Law Research and Policy'),
(94009, 78002, 'no_lang_code', 'name', 'Vision Technology (United States)'),
(94010, 78003, 'no_lang_code', 'name', 'Sab Biotherapeutics (United States)'),
(94011, 78004, 'no_lang_code', 'name', 'Lenzing (United Kingdom)'),
(94012, 78005, 'no_lang_code', 'name', 'Ore Holdings (United States)'),
(94013, 78006, 'no_lang_code', 'name', 'Institut für Bahntechnik (Germany)'),
(94014, 78007, 'no_lang_code', 'name', 'Somnics (Taiwan)'),
(94015, 78008, 'no_lang_code', 'name', 'Crystal Consulting (Germany)'),
(94016, 78009, 'de', 'name', 'Hochschule für öffentliche Verwaltung und Finanzen Ludwigsburg'),
(94017, 78009, 'en', 'name', 'University of Applied Sciences - Public Administration and Finance Ludwigsburg'),
(94018, 78010, 'en', 'name', 'Ninghai First Hospital Medicare and Health Group'),
(94019, 78010, 'zh', 'name', 'å®ęµ·åŽæē¬¬äø€åŒ»é™¢'),
(94020, 78011, 'en', 'name', 'Tennessee Space Grant Consortium'),
(94021, 78012, 'en', 'name', 'Foshan Second People''s Hospital'),
(94022, 78012, 'zh', 'name', 'ä½›å±±åø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(94023, 78013, 'fr', 'name', 'HƓpital Sainte-PƩrine'),
(94024, 78014, 'no_lang_code', 'name', 'NewAge (United States)'),
(94025, 78015, 'en', 'name', 'UNC/NCSU Joint Department of Biomedical Engineering'),
(94026, 78016, 'en', 'name', 'Chengdu Center for Disease Control and Prevention'),
(94027, 78016, 'zh', 'name', 'ęˆéƒ½åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(94028, 78017, 'no_lang_code', 'name', 'Lipocine (United States)'),
(94029, 78018, 'en', 'name', 'Islamic Azad University, Bushehr Branch'),
(94030, 78018, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŁŠ واحد ŲØŁˆŲ“Ł‡Ų±'),
(94031, 78019, 'no_lang_code', 'name', 'ClearPoint Neuro (United States)'),
(94032, 78020, 'no_lang_code', 'name', 'KHD Humboldt Wedag (Germany)'),
(94033, 78021, 'no_lang_code', 'name', 'Fürstenberg Institut (Germany)'),
(94034, 78022, 'no_lang_code', 'name', 'Arcadis (Netherlands)'),
(94035, 78023, 'en', 'name', 'Fukuoka Higashi Medical Center'),
(94036, 78023, 'ja', 'name', 'ē¦å²”ę±åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(94037, 78024, 'en', 'name', 'Carbon Valley Animal Hospital'),
(94038, 78025, 'en', 'name', 'Fresno VA Medical Center'),
(94039, 78026, 'no_lang_code', 'name', 'IFU Privates Institut für Analytik (Germany)'),
(94040, 78027, 'en', 'name', 'Institute of Economic Affairs'),
(94041, 78028, 'id', 'name', 'Universitas Pahlawan Tuanku Tambusai'),
(94042, 78029, 'no_lang_code', 'name', 'Osemi (United States)'),
(94043, 78030, 'es', 'name', 'Consejo Superior De Salud Publica'),
(94044, 78031, 'de', 'name', 'Leibniz-Institut für jüdische Geschichte und Kultur – Simon Dubnow'),
(94045, 78031, 'en', 'name', 'Leibniz Institute for Jewish History and Culture – Simon Dubnow'),
(94046, 78032, 'no_lang_code', 'name', 'Semandex Networks (United States)'),
(94047, 78033, 'de', 'name', 'Gouverneur Kinsbergencentrum'),
(94048, 78034, 'en', 'name', 'Nanyang Medical College'),
(94049, 78034, 'zh', 'name', 'å—é™½é†«å­øé«˜ē­‰å°ˆē§‘å­øę ”'),
(94050, 78035, 'en', 'name', 'Pingliang People''s Hospital'),
(94051, 78035, 'zh', 'name', 'å¹³å‡‰åø‚äŗŗę°‘åŒ»é™¢'),
(94052, 78036, 'no_lang_code', 'name', 'CryoRay Coolers (United States)'),
(94053, 78037, 'nl', 'name', 'De Kinderkliniek'),
(94054, 78038, 'en', 'name', 'Kagoshima Prefectural Library'),
(94055, 78038, 'ja', 'name', 'é¹æå…å³¶ēœŒē«‹å›³ę›øé¤Ø'),
(94056, 78039, 'no_lang_code', 'name', 'Typs (Canada)'),
(94057, 78040, 'en', 'name', 'Directorate of Coldwater Fisheries Research, ठंऔा ą¤Ŗą¤¾ą¤Øą„€ ą¤®ą¤¤ą„ą¤øą„ą¤Æ ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(94058, 78041, 'no_lang_code', 'name', 'Urtek Water Technologies (Spain)'),
(94059, 78042, 'en', 'name', 'Mackay Junior College of Medicine, Nursing and Management'),
(94060, 78042, 'zh', 'name', 'é¦¬å•é†«č­·ē®”ē†å°ˆē§‘å­øę ”'),
(94061, 78043, 'da', 'name', 'Nordisk Fond for MiljĆø og Udvikling'),
(94062, 78044, 'no_lang_code', 'name', 'Tronox (United States)'),
(94063, 78045, 'no_lang_code', 'name', 'Aurigon (Hungary)'),
(94064, 78046, 'en', 'name', 'Thailand Board of Investment'),
(94065, 78046, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø„ąø“ąø°ąøąø£ąø£ąø”ąøąø²ąø£ąøŖą¹ˆąø‡ą¹€ąøŖąø£ąø“ąø”ąøąø²ąø£ąø„ąø‡ąø—ąøøąø™'),
(94066, 78047, 'no_lang_code', 'name', 'Roche (Nicaragua)'),
(94067, 78048, 'de', 'name', 'Fraunhofer-Projektzentrum Wolfsburg'),
(94068, 78048, 'en', 'name', 'Fraunhofer Project Centre Wolfsburg'),
(94069, 78049, 'no_lang_code', 'name', 'VOLTARIS (Germany)'),
(94070, 78050, 'no_lang_code', 'name', 'gec-co Global Engineering & Consulting (Germany)'),
(94071, 78051, 'en', 'name', 'Institute for Children, Poverty & Homelessness'),
(94072, 78052, 'no_lang_code', 'name', 'Cercacor (United States)'),
(94073, 78053, 'en', 'name', 'Shonan University of Medical Sciences'),
(94074, 78053, 'ja', 'name', 'ę¹˜å—åŒ»ē™‚å¤§å­¦'),
(94075, 78054, 'en', 'name', 'Miyazaki Welfare Medical College'),
(94076, 78054, 'ja', 'name', 'å®®å“Žē¦ē„‰åŒ»ē™‚ć‚«ćƒ¬ćƒƒć‚ø'),
(94077, 78055, 'no_lang_code', 'name', 'Oceana Sensor (United States)'),
(94078, 78056, 'no_lang_code', 'name', 'Grail (United States)'),
(94079, 78057, 'de', 'name', 'StƤdtisches Museum Schloss Rheydt'),
(94080, 78058, 'en', 'name', 'Instruments Research & Development Establishment'),
(94081, 78059, 'de', 'name', 'Staatliche Lehr- und Versuchsanstalt für Gartenbau'),
(94082, 78060, 'en', 'name', 'The Ream Foundation'),
(94083, 78061, 'no_lang_code', 'name', 'ifp Consulting (Germany)'),
(94084, 78062, 'de', 'name', 'Zentrum für Verwaltungsforschung'),
(94085, 78062, 'en', 'name', 'KDZ - Centre for Public Administration Research'),
(94086, 78063, 'en', 'name', 'The People''s Hospital of LinXia'),
(94087, 78063, 'zh', 'name', 'äø“å¤å·žäŗŗę°‘åŒ»é™¢'),
(94088, 78064, 'de', 'name', 'Behörde für Gesundheit und Verbraucherschutz'),
(94089, 78065, 'no_lang_code', 'name', 'NexGen Composites (United States)'),
(94090, 78066, 'no_lang_code', 'name', 'Nexogen (United States)'),
(94091, 78067, 'en', 'name', 'Nova Laboratories'),
(94092, 78068, 'no_lang_code', 'name', 'Cambridge Mechatronics (United Kingdom)'),
(94093, 78069, 'no_lang_code', 'name', 'Merus (Netherlands)'),
(94094, 78070, 'en', 'name', 'Hummingbird Monitoring Network'),
(94095, 78071, 'no_lang_code', 'name', 'Antea Group (France)'),
(94096, 78072, 'en', 'name', 'Chinese Society for Cell Biology'),
(94097, 78072, 'zh', 'name', 'äø­å›½ē»†čƒžē”Ÿē‰©å­¦å­¦ä¼š'),
(94098, 78073, 'en', 'name', 'Harrison International Peace Hospital'),
(94099, 78073, 'zh', 'name', 'č””ę°“åø‚äŗŗę°‘åŒ»é™¢'),
(94100, 78074, 'no_lang_code', 'name', 'Cousin Biotech (France)'),
(94101, 78075, 'no_lang_code', 'name', 'Stadtwerke Jülich (Germany)'),
(94102, 78076, 'en', 'name', 'Institute of Environmental Rehabilitation and Conservation'),
(94103, 78076, 'ja', 'name', 'ē’°å¢ƒäæ®å¾©äæå…Øę©Ÿę§‹'),
(94104, 78077, 'no_lang_code', 'name', 'Verasci (United States)'),
(94105, 78078, 'no_lang_code', 'name', 'Bicycle Therapeutics (United Kingdom)'),
(94106, 78079, 'en', 'name', 'Cooperative Mobility for Competitive Megaregions'),
(94107, 78080, 'en', 'name', 'Guigang Orthopedic Hospital of Integrated Traditional Chinese and Western Medicine'),
(94108, 78080, 'zh', 'name', 'č“µęøÆåø‚äø­č„æåŒ»ē»“åˆéŖØē§‘åŒ»é™¢'),
(94109, 78081, 'en', 'name', 'National Institute of Quality'),
(94110, 78081, 'es', 'name', 'Instituto Nacional de Calidad'),
(94111, 78082, 'no_lang_code', 'name', 'Hydrogen Slovakia (Slovakia)'),
(94112, 78083, 'no_lang_code', 'name', 'Platinum Group Coatings (United States)'),
(94113, 78084, 'no_lang_code', 'name', 'Industrial & Marine Service (Germany)'),
(94114, 78085, 'ja', 'name', 'ć‚»ćƒ¼ćƒ¬ćƒ³ę Ŗå¼ä¼šē¤¾'),
(94115, 78085, 'no_lang_code', 'name', 'Seiren (Japan)'),
(94116, 78086, 'en', 'name', 'Experimental Drug Development Centre'),
(94117, 78087, 'ja', 'name', 'ćƒ›ćƒ¼ćƒ¦ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(94118, 78087, 'no_lang_code', 'name', 'Hoyu (Japan)'),
(94119, 78088, 'en', 'name', 'Haikou Experimental Station'),
(94120, 78088, 'zh', 'name', 'äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢ęµ·å£å®žéŖŒē«™'),
(94121, 78089, 'no_lang_code', 'name', 'Immunolight (United States)'),
(94122, 78090, 'no_lang_code', 'name', 'Sony Olympus Medical Solutions (Japan)'),
(94123, 78091, 'no_lang_code', 'name', 'Nonlinear Control Strategies (United States)'),
(94124, 78092, 'en', 'name', 'Sabah Parks'),
(94125, 78092, 'ms', 'name', 'Taman-Taman Sabah'),
(94126, 78093, 'no_lang_code', 'name', 'RenBio (United States)'),
(94127, 78094, 'no_lang_code', 'name', 'Raven (United States)'),
(94128, 78095, 'en', 'name', 'Open Data Infrastructure for Social Science and Economic Innovations'),
(94129, 78096, 'no_lang_code', 'name', 'Cellix Bio (India)'),
(94130, 78097, 'en', 'name', 'Chinese Society of Plant Nutrition and Fertilizer Science'),
(94131, 78097, 'zh', 'name', 'äø­å›½ę¤ē‰©č„å…»äøŽč‚„ę–™å­¦ä¼š'),
(94132, 78098, 'de', 'name', 'Interstaatliche Hochschule für Technik NTB Buchs'),
(94133, 78098, 'en', 'name', 'Interstate University of Applied Sciences of Technology Buchs'),
(94134, 78099, 'en', 'name', 'Hiroshima Prefectural Library'),
(94135, 78099, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹å›³ę›øé¤Ø'),
(94136, 78100, 'no_lang_code', 'name', 'ECA Medical (United States)'),
(94137, 78101, 'no_lang_code', 'name', 'Phyre Technologies (United States)'),
(94138, 78102, 'en', 'name', 'Center for Cultural Heritage Technology'),
(94139, 78103, 'en', 'name', 'Xinjiang Police College'),
(94140, 78104, 'no_lang_code', 'name', 'Volition (United States)'),
(94141, 78105, 'no_lang_code', 'name', 'Cygnal Therapeutics (United States)'),
(94142, 78106, 'en', 'name', 'Yangzhou Municipal Meteorological Bureau'),
(94143, 78106, 'zh', 'name', 'ę‰¬å·žåø‚ę°”č±”å±€'),
(94144, 78107, 'en', 'name', 'Research Centre Imarat'),
(94145, 78107, 'te', 'name', 'ą°°ą±€ą°øą±†ą°°ą±ą°šą± ą°øą±†ą°‚ą°Ÿą°°ą± ą°‡ą°®ą°¾ą°°ą°¾ą°¤ą±'),
(94146, 78108, 'en', 'name', 'Center for Nano Science and Technology'),
(94147, 78109, 'en', 'name', 'Higher School of Innovation Management'),
(94148, 78109, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń школа инновационного менеГжмента'),
(94149, 78110, 'no_lang_code', 'name', 'Rocky Mountain Orthodontics (United States)'),
(94150, 78111, 'en', 'name', 'National Center for Climate Change Strategy and International Cooperation'),
(94151, 78111, 'zh', 'name', 'å›½å®¶åŗ”åÆ¹ę°”å€™å˜åŒ–ęˆ˜ē•„ē ”ē©¶å’Œå›½é™…åˆä½œäø­åæƒ'),
(94152, 78112, 'en', 'name', 'Jilin Medical University'),
(94153, 78112, 'zh', 'name', 'å‰ęž—åŒ»čÆå­¦é™¢'),
(94154, 78113, 'de', 'name', 'Institut für Netz- und Anwendungstechnik'),
(94155, 78114, 'en', 'name', 'The Institute of Military History'),
(94156, 78114, 'sk', 'name', 'Vojenský historický ústav'),
(94157, 78115, 'no_lang_code', 'name', 'China National GeneBank'),
(94158, 78115, 'zh', 'name', 'å›½å®¶åŸŗå› åŗ“'),
(94159, 78116, 'no_lang_code', 'name', 'Institut für gewerbliche Wasserwirtschaft und Luftreinhaltung (Germany)'),
(94160, 78117, 'no_lang_code', 'name', 'R-Dex Systems (United States)'),
(94161, 78118, 'de', 'name', 'Ostbayerisches Technologie-Transfer-Institut'),
(94162, 78119, 'en', 'name', 'Association for the Development of Douro Viticulture'),
(94163, 78119, 'pt', 'name', 'Associação para o Desenvolvimento da Viticultura Duriense'),
(94164, 78120, 'no_lang_code', 'name', 'NGK Insulators (United Kingdom)'),
(94165, 78121, 'en', 'name', 'Jiang Xi Institute for Drug Control'),
(94166, 78121, 'zh', 'name', 'ę±Ÿč„æēœčÆå“ę£€éŖŒę£€ęµ‹ē ”ē©¶é™¢'),
(94167, 78122, 'en', 'name', 'University of Torbat Heydarieh'),
(94168, 78122, 'fa', 'name', 'دانؓگاه ŲŖŲ±ŲØŲŖ Ų­ŪŒŲÆŲ±ŪŒŁ‡'),
(94169, 78123, 'no_lang_code', 'name', 'ReThink Medical (United States)'),
(94170, 78124, 'de', 'name', 'PƤdea'),
(94171, 78125, 'en', 'name', 'Research Institute of Health Sciences'),
(94172, 78125, 'es', 'name', 'Instituto Universitario de Investigación en Ciencias de la Salud'),
(94173, 78126, 'no_lang_code', 'name', 'Outokumpu (United Kingdom)'),
(94174, 78127, 'no_lang_code', 'name', 'MSCI (China)'),
(94175, 78128, 'no_lang_code', 'name', 'Bluefors (Finland)'),
(94176, 78129, 'en', 'name', 'Hainan Meteorological Service'),
(94177, 78129, 'zh', 'name', 'ęµ·å—ēœę°”č±”å±€'),
(94178, 78130, 'en', 'name', 'Islamic Azad University, Sirjan Branch'),
(94179, 78130, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų³ŪŒŲ±Ų¬Ų§Ł†'),
(94180, 78131, 'ja', 'name', 'ę±Ÿå“Žć‚°ćƒŖć‚³ę Ŗå¼ä¼šē¤¾'),
(94181, 78131, 'no_lang_code', 'name', 'Ezaki Glico (Japan)'),
(94182, 78132, 'en', 'name', 'Chinese Society for Plant Biology'),
(94183, 78132, 'zh', 'name', 'äø­å›½ę¤ē‰©ē”Ÿē‰©å­¦ä¼š'),
(94184, 78133, 'no_lang_code', 'name', 'Oasis Advanced Engineering (United States)'),
(94185, 78134, 'en', 'name', 'Institute for Economic Research and Consulting'),
(94186, 78135, 'en', 'name', 'China Anti-Doping Agency'),
(94187, 78136, 'en', 'name', 'Hangzhou Botanical Garden'),
(94188, 78136, 'zh', 'name', 'ę­å·žę¤ē‰©å›­'),
(94189, 78137, 'no_lang_code', 'name', 'Prioria Robotics (United States)'),
(94190, 78138, 'en', 'name', 'Italian Society for International Organization'),
(94191, 78138, 'it', 'name', 'SocietĆ  Italiana Organizzazione Internazionale'),
(94192, 78139, 'no_lang_code', 'name', 'Windenergiepark Westküste (Germany)'),
(94193, 78140, 'no_lang_code', 'name', 'SuviCa (United States)'),
(94194, 78141, 'no_lang_code', 'name', 'Datar Cancer Genetics (India)'),
(94195, 78142, 'en', 'name', 'Aleda E. Lutz VA Medical Center'),
(94196, 78143, 'no_lang_code', 'name', 'QuantumCTek (China)'),
(94197, 78144, 'no_lang_code', 'name', 'Microban (United States)'),
(94198, 78145, 'de', 'name', 'Lausitzer Seenland Klinikum'),
(94199, 78146, 'no_lang_code', 'name', 'Nujira (United Kingdom)'),
(94200, 78147, 'en', 'name', 'VA Black Hills Health Care System'),
(94201, 78148, 'no_lang_code', 'name', 'Infinitus (China)'),
(94202, 78148, 'zh', 'name', 'ę— é™ęžäø­åæƒ'),
(94203, 78149, 'en', 'name', 'ICAR-National Research Centre on Pig'),
(94204, 78150, 'no_lang_code', 'name', 'CapsoVision (United States)'),
(94205, 78151, 'en', 'name', 'National Bureau of Agricultural Insect Resources'),
(94206, 78152, 'ja', 'name', '飛島建設'),
(94207, 78152, 'no_lang_code', 'name', 'Tobishima (Japan)'),
(94208, 78153, 'de', 'name', 'Deutscher Bundestag'),
(94209, 78154, 'ko', 'name', 'ģ›ģµģ•„ģ“ķ”¼ģ—ģŠ¤'),
(94210, 78154, 'no_lang_code', 'name', 'Wonik IPS (South Korea)'),
(94211, 78155, 'no_lang_code', 'name', 'PVA TePla (Germany)'),
(94212, 78156, 'de', 'name', 'Hochschule für Musik Karlsruhe'),
(94213, 78156, 'en', 'name', 'University of Music Karlsruhe'),
(94214, 78157, 'en', 'name', 'Cancer Hospital of Huanxing Chaoyang District Beijing'),
(94215, 78157, 'zh', 'name', 'åŒ—äŗ¬åø‚ęœé˜³åŒŗę”“å…“č‚æē˜¤åŒ»é™¢'),
(94216, 78158, 'en', 'name', 'Northwest Institute of Mechanical and Electrical Engineering'),
(94217, 78158, 'zh', 'name', 'č„æåŒ—ęœŗē”µå·„ēØ‹å­¦é™¢'),
(94218, 78159, 'en', 'name', 'University Transportation Research Center'),
(94219, 78160, 'en', 'name', 'Kanazawa Medical University Hospital'),
(94220, 78160, 'ja', 'name', 'é‡‘ę²¢åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(94221, 78161, 'en', 'name', 'Fins Medical University'),
(94222, 78162, 'en', 'name', 'The Thousand'),
(94223, 78163, 'no_lang_code', 'name', 'Ostwestfälisches Institut für Innovative Technologien in der Automatisierungstechnik (Germany)'),
(94224, 78164, 'no_lang_code', 'name', 'General Electric (Netherlands)'),
(94225, 78165, 'en', 'name', 'Research Institute of Wood Industry'),
(94226, 78165, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ ęœØęå·„äøšē ”ē©¶ę‰€'),
(94227, 78166, 'no_lang_code', 'name', 'Sapper Institut (Germany)'),
(94228, 78167, 'no_lang_code', 'name', 'Genomix Biotech (India)'),
(94229, 78168, 'ja', 'name', 'ä¼Šč—¤åæ å•†äŗ‹ę Ŗå¼ä¼šē¤¾'),
(94230, 78168, 'no_lang_code', 'name', 'Itochu (Japan)'),
(94231, 78169, 'en', 'name', 'New Dawn University'),
(94232, 78169, 'fr', 'name', 'UniversitƩ Aube Nouvelle'),
(94233, 78170, 'no_lang_code', 'name', 'Adare Pharma Solutions (United States)'),
(94234, 78171, 'no_lang_code', 'name', 'Turnkey Design Services (United States)'),
(94235, 78172, 'no_lang_code', 'name', 'Space Information Laboratories (United States)'),
(94236, 78173, 'en', 'name', 'Wuhan Red Cross Hospital'),
(94237, 78173, 'zh', 'name', 'ę­¦ę±‰åø‚ēŗ¢åå­—ä¼šåŒ»é™¢'),
(94238, 78174, 'no_lang_code', 'name', 'WƤtas WƤrmetauscher Sachsen (Germany)'),
(94239, 78175, 'no_lang_code', 'name', 'Serionix (United States)'),
(94240, 78176, 'ja', 'name', 'KMćƒć‚¤ć‚Ŗćƒ­ć‚øć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(94241, 78176, 'no_lang_code', 'name', 'KM Biologics (Japan)'),
(94242, 78177, 'en', 'name', 'Central Bank of Malta'),
(94243, 78177, 'mt', 'name', 'Bank Ċentrali ta’ Malta'),
(94244, 78178, 'no_lang_code', 'name', 'Genus (United States)'),
(94245, 78179, 'de', 'name', 'Lebensmittelinstitut KIN'),
(94246, 78180, 'en', 'name', 'Experimental Factory Magdeburg'),
(94247, 78181, 'no_lang_code', 'name', 'Princeton BioMeditech (United States)'),
(94248, 78182, 'no_lang_code', 'name', 'Xyleco (United States)'),
(94249, 78183, 'de', 'name', 'Brandenburg-Berliner Institut für Sozialwissenschaftliche Studien'),
(94250, 78184, 'no_lang_code', 'name', 'Radiation Safety Engineering (United States)'),
(94251, 78185, 'en', 'name', 'China National Institute of Standardization'),
(94252, 78185, 'zh', 'name', 'äø­å›½ę ‡å‡†åŒ–äøŽäæ”ęÆåˆ†ē±»ē¼–ē ē ”ē©¶ę‰€'),
(94253, 78186, 'en', 'name', 'Asia Pacific Institute of Research'),
(94254, 78186, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ アジア太平擋研究所'),
(94255, 78187, 'no_lang_code', 'name', 'Natel Energy (United States)'),
(94256, 78188, 'no_lang_code', 'name', 'Prytime Medical (United States)'),
(94257, 78189, 'en', 'name', 'Kiang Wu Hospital'),
(94258, 78189, 'zh', 'name', 'é”ę¹–é†«é™¢'),
(94259, 78190, 'de', 'name', 'Institut für Bauforschung'),
(94260, 78191, 'no_lang_code', 'name', 'TP Orthodontics (United States)'),
(94261, 78192, 'en', 'name', 'International Institute of Biotechnology and Toxicology'),
(94262, 78193, 'no_lang_code', 'name', 'Swarco (Austria)'),
(94263, 78194, 'en', 'name', 'Zambia Institute for Policy Analysis and Research'),
(94264, 78195, 'en', 'name', 'Scientific Research Group in Egypt'),
(94265, 78196, 'no_lang_code', 'name', 'Bluejay Mining (United Kingdom)'),
(94266, 78197, 'en', 'name', 'NEIKER, the Basque Institute for Agricultural Research and Development'),
(94267, 78197, 'es', 'name', 'NEIKER, Instituto Vasco de Investigación y Desarrollo Agrario'),
(94268, 78197, 'eu', 'name', 'NEIKER, Nekazaritza Ikerketa eta Garapenerako Euskal Erakundea'),
(94269, 78198, 'en', 'name', 'Colombian Federation of Obstetrics and Gynecology'),
(94270, 78198, 'es', 'name', 'Federación Colombiana de Obstetricia y Ginecología'),
(94271, 78199, 'en', 'name', 'Military & Health Research Foundation'),
(94272, 78200, 'ja', 'name', 'ć‚µćƒ³ćƒć‚¤ć‚Ŗ'),
(94273, 78200, 'no_lang_code', 'name', 'SanBio (Japan)'),
(94274, 78201, 'no_lang_code', 'name', 'Beijing Tuofeng Technology Development (China)'),
(94275, 78202, 'en', 'name', 'Ballad Health'),
(94276, 78203, 'no_lang_code', 'name', 'MIMOT (Germany)'),
(94277, 78204, 'en', 'name', 'National Centre for Infectious Diseases'),
(94278, 78205, 'de', 'name', 'Landtag Nordrhein-Westfalen, Landtag of North Rhine-Westphalia'),
(94279, 78206, 'de', 'name', 'UniversitƤtsverband zur Qualifizierung des wissenschaftlichen Nachwuchses in Deutschland'),
(94280, 78206, 'en', 'name', 'German University Association of Advanced Graduate Training'),
(94281, 78207, 'ja', 'name', 'ピトラン'),
(94282, 78207, 'no_lang_code', 'name', 'Metran (Japan)'),
(94283, 78208, 'no_lang_code', 'name', 'ThermoGenesis (United States)'),
(94284, 78209, 'hi', 'name', 'चाचा ą¤Øą„‡ą¤¹ą¤°ą„ बाल ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ą¤²ą¤Æ'),
(94285, 78209, 'no_lang_code', 'name', 'Chacha Nehru Bal Chikitsalaya'),
(94286, 78210, 'en', 'name', 'Wroclaw University of Applied Informatics "Horizon"'),
(94287, 78210, 'pl', 'name', 'Wrocławska Wyższa Szkoła Informatyki Stosowanej ā€žHoryzontā€'),
(94288, 78211, 'en', 'name', 'Paws Assisting Veterans'),
(94289, 78212, 'no_lang_code', 'name', 'Carbon Block Technology (United States)'),
(94290, 78213, 'no', 'name', 'Horten Kommune'),
(94291, 78214, 'no_lang_code', 'name', 'Plantex (Slovakia)'),
(94292, 78215, 'en', 'name', 'Zoo New England'),
(94293, 78216, 'no_lang_code', 'name', 'Zenta Group (Chile)'),
(94294, 78217, 'en', 'name', 'Saitama Prefectural Kasukabe Special Support School'),
(94295, 78217, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹ę˜„ę—„éƒØé¤Šč­·å­¦ę ”'),
(94296, 78218, 'no_lang_code', 'name', 'EBR Systems (United States)'),
(94297, 78219, 'no_lang_code', 'name', 'Hexion (United States)'),
(94298, 78220, 'en', 'name', 'Children''s Nutrition Research Center at Baylor College of Medicine'),
(94299, 78221, 'no_lang_code', 'name', 'Kyulux (Japan)'),
(94300, 78222, 'no_lang_code', 'name', 'Torque (United States)'),
(94301, 78223, 'no_lang_code', 'name', 'Qfix (United States)'),
(94302, 78224, 'no_lang_code', 'name', 'Waterborne Environmental (United States)');
INSERT INTO `ror_settings` VALUES
(94303, 78225, 'no_lang_code', 'name', 'Stella Maris Polytechnic'),
(94304, 78226, 'no_lang_code', 'name', 'Rhein-Main-Verkehrsverbund'),
(94305, 78227, 'no_lang_code', 'name', 'Boehringer Ingelheim (Philippines)'),
(94306, 78228, 'no_lang_code', 'name', 'Sentec (United Kingdom)'),
(94307, 78229, 'en', 'name', 'Agricultural Research Service - Plains Area'),
(94308, 78230, 'en', 'name', 'Policy Center for the New South'),
(94309, 78231, 'no_lang_code', 'name', 'Velocity Laboratories (United States)'),
(94310, 78232, 'en', 'name', 'Institute of Japanese Studies'),
(94311, 78232, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢ę—„ęœ¬ē ”ē©¶ę‰€'),
(94312, 78233, 'en', 'name', 'Florida Institute for Conservation Science'),
(94313, 78234, 'no_lang_code', 'name', 'Stellar Exploration (United States)'),
(94314, 78235, 'no_lang_code', 'name', 'Hamburg Institut (Germany)'),
(94315, 78236, 'no_lang_code', 'name', 'Shibuya (Japan)'),
(94316, 78237, 'no_lang_code', 'name', 'Nou Systems (United States)'),
(94317, 78238, 'no_lang_code', 'name', 'Sanya Central Hospital'),
(94318, 78238, 'zh', 'name', 'äø‰äŗšäø­åæƒåŒ»é™¢'),
(94319, 78239, 'de', 'name', 'Arbeitskreis deutscher BildungsstƤtten'),
(94320, 78239, 'en', 'name', 'Association of German Educational Organizations'),
(94321, 78240, 'en', 'name', 'Alexandria VA Medical Center'),
(94322, 78241, 'de', 'name', 'Duale Hochschule Gera-Eisenach'),
(94323, 78242, 'ja', 'name', 'ć‚³ć‚¹ćƒ¢ć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(94324, 78242, 'no_lang_code', 'name', 'Cosmo Energy (Japan)'),
(94325, 78243, 'no_lang_code', 'name', 'ShockWave Medical (United States)'),
(94326, 78244, 'en', 'name', 'Forest Stewards Guild'),
(94327, 78245, 'en', 'name', 'North Eastern Space Applications Centre'),
(94328, 78246, 'no_lang_code', 'name', 'Hi Tech BioSciences India (India)'),
(94329, 78247, 'no_lang_code', 'name', 'EkoWatt (Slovakia)'),
(94330, 78248, 'en', 'name', 'Niigata Agro-Food University'),
(94331, 78248, 'ja', 'name', 'ę–°ę½Ÿé£Ÿę–™č¾²ę„­å¤§å­¦'),
(94332, 78249, 'no_lang_code', 'name', 'Schlumberger (Germany)'),
(94333, 78250, 'en', 'name', 'Eastern Oklahoma VA Health Care System'),
(94334, 78251, 'de', 'name', 'Deutsches Rundfunkarchiv'),
(94335, 78251, 'en', 'name', 'German Broadcasting Archive'),
(94336, 78252, 'no_lang_code', 'name', 'BVI (United States)'),
(94337, 78253, 'no_lang_code', 'name', 'RTS Labs (United States)'),
(94338, 78254, 'no_lang_code', 'name', 'Viti (United States)'),
(94339, 78255, 'no_lang_code', 'name', 'Spineology (United States)'),
(94340, 78256, 'en', 'name', 'Grand Junction VA Medical Center'),
(94341, 78257, 'no_lang_code', 'name', 'Xencor (United States)'),
(94342, 78258, 'no_lang_code', 'name', 'HZPC (Netherlands)'),
(94343, 78259, 'no_lang_code', 'name', 'Wista (Germany)'),
(94344, 78260, 'en', 'name', 'University of Kigali'),
(94345, 78261, 'no_lang_code', 'name', 'VitalQuan (United States)'),
(94346, 78262, 'en', 'name', 'Ioannis A. Lougaris Veterans Affairs Medical Center'),
(94347, 78263, 'en', 'name', 'Botswana Institute for Development Policy Analysis'),
(94348, 78264, 'no_lang_code', 'name', 'DSG Technology (Norway)'),
(94349, 78265, 'no_lang_code', 'name', 'Archimica (Italy)'),
(94350, 78266, 'de', 'name', 'Gewi-Institut für Gesundheitswirtschaft'),
(94351, 78267, 'no_lang_code', 'name', 'Phoenix Nest (United States)'),
(94352, 78268, 'no_lang_code', 'name', 'Sabre Engineering (United States)'),
(94353, 78269, 'en', 'name', 'University Institute of the Gulf of Guinea'),
(94354, 78269, 'fr', 'name', 'Institut Universitaire du Golfe de GuinƩe'),
(94355, 78270, 'en', 'name', 'United Nations University Institute for the Advanced Study of Sustainability'),
(94356, 78270, 'ja', 'name', 'å›½é€£å¤§å­¦ć‚µć‚¹ćƒ†ć‚¤ćƒŠćƒ“ćƒŖćƒ†ć‚£é«˜ē­‰ē ”ē©¶ę‰€'),
(94357, 78271, 'no_lang_code', 'name', 'Scientific Computing Associates (United States)'),
(94358, 78272, 'no_lang_code', 'name', 'Extend3D (Germany)'),
(94359, 78273, 'en', 'name', 'Institute of Medical Ethics'),
(94360, 78274, 'ja', 'name', 'ć‚µć‚¤ćƒćƒ¼ćƒ¬ćƒ¼ć‚¶'),
(94361, 78274, 'no_lang_code', 'name', 'Cyber Laser (Japan)'),
(94362, 78275, 'no_lang_code', 'name', 'SR2 Group (United States)'),
(94363, 78276, 'en', 'name', 'Advanced Centre for Energetic Materials'),
(94364, 78276, 'hi', 'name', 'ą¤Šą¤°ą„ą¤œą¤øą„ą¤µą„€ ą¤Ŗą¤¦ą¤¾ą¤°ą„ą¤„ ą¤‰ą¤Øą„ą¤Øą¤¤ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(94365, 78277, 'en', 'name', 'Arkansas Children''s Nutrition Center'),
(94366, 78278, 'en', 'name', 'Charles George VA Medical Center'),
(94367, 78279, 'no_lang_code', 'name', 'TeVido BioDevices (United States)'),
(94368, 78280, 'no_lang_code', 'name', 'Max Bƶgl (Germany)'),
(94369, 78281, 'no_lang_code', 'name', 'Spero Devices (United States)'),
(94370, 78282, 'en', 'name', 'Matsumoto City Hospital'),
(94371, 78282, 'ja', 'name', 'ę¾ęœ¬åø‚ē«‹ē—…é™¢'),
(94372, 78283, 'no_lang_code', 'name', 'Bridgestone (United Kingdom)'),
(94373, 78284, 'ja', 'name', 'ćŠčŒ¶ć®ę°“å„³å­å¤§å­¦é™„å±žå¹¼ēØšåœ’'),
(94374, 78284, 'no_lang_code', 'name', 'Ochanomizu University Kindergarten'),
(94375, 78285, 'no_lang_code', 'name', 'Quantum Opus (United States)'),
(94376, 78286, 'de', 'name', 'Institut für Lonenstrahl– und Vakuumverfahrenstechnik'),
(94377, 78287, 'no_lang_code', 'name', 'Verkehrsbetriebe Hamburg-Holstein (Germany)'),
(94378, 78288, 'no_lang_code', 'name', 'Herrenknecht Vertical (Germany)'),
(94379, 78289, 'no_lang_code', 'name', 'Novo Nordisk (Mexico)'),
(94380, 78290, 'en', 'name', 'Advanced Analysis Center'),
(94381, 78290, 'ja', 'name', 'é«˜åŗ¦č§£ęžć‚»ćƒ³ć‚æćƒ¼'),
(94382, 78291, 'no_lang_code', 'name', 'IPM Solutions (Slovakia)'),
(94383, 78292, 'no_lang_code', 'name', 'Hester'),
(94384, 78293, 'en', 'name', 'Society for Applied Microwave Electronics Engineering & Research'),
(94385, 78294, 'no_lang_code', 'name', 'Bioness (United States)'),
(94386, 78295, 'no_lang_code', 'name', 'P N Lee Statistics and Computing (United Kingdom)'),
(94387, 78296, 'no_lang_code', 'name', 'Tela Innovations (United States)'),
(94388, 78297, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē”ŗē”°č£½ä½œę‰€'),
(94389, 78297, 'no_lang_code', 'name', 'Machida Endoscope (Japan)'),
(94390, 78298, 'de', 'name', 'Gebr. Brasseler'),
(94391, 78298, 'no_lang_code', 'name', 'Brasseler (Germany)'),
(94392, 78299, 'no_lang_code', 'name', 'Magnolia Medical Technologies (United States)'),
(94393, 78300, 'en', 'name', 'American Speech-Language-Hearing Foundation'),
(94394, 78301, 'en', 'name', 'National Institute for Parasitic Diseases'),
(94395, 78302, 'no_lang_code', 'name', 'LafargeHolcim (Canada)'),
(94396, 78303, 'no_lang_code', 'name', 'Cailabs (France)'),
(94397, 78304, 'ja', 'name', 'ę…¶å‹ę•“å½¢å¤–ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(94398, 78304, 'no_lang_code', 'name', 'Keiyu Orthopedic Hospital'),
(94399, 78305, 'en', 'name', 'VA Butler Healthcare'),
(94400, 78306, 'no_lang_code', 'name', 'Konstrukta Defence (Slovakia)'),
(94401, 78307, 'ko', 'name', 'ģ—”ģ—ģ“ģ¹˜ģ—” ģ£¼ģ‹ķšŒģ‚¬'),
(94402, 78307, 'no_lang_code', 'name', 'NHN (South Korea)'),
(94403, 78308, 'no_lang_code', 'name', 'Ultrasonic Technologies (United States)'),
(94404, 78309, 'en', 'name', 'China Science and Technology Museum'),
(94405, 78309, 'zh', 'name', 'äø­å›½ē§‘å­¦ęŠ€ęœÆé¦†'),
(94406, 78310, 'no_lang_code', 'name', 'Apax Partners (United Kingdom)'),
(94407, 78311, 'no_lang_code', 'name', 'BABCOCK Industry & Power (Germany)'),
(94408, 78312, 'en', 'name', 'Western Regional Research Center'),
(94409, 78313, 'no_lang_code', 'name', 'Sila Nanotechnologies (United States)'),
(94410, 78314, 'pt', 'name', 'Fundação de Apoio à Universidade do Rio Grande'),
(94411, 78315, 'no_lang_code', 'name', 'Symbiotix Biotherapies (United States)'),
(94412, 78316, 'de', 'name', 'Institut für Freizeitwissenschaft und Kulturarbeit'),
(94413, 78317, 'no_lang_code', 'name', 'QNu Labs (India)'),
(94414, 78318, 'en', 'name', 'Shikoku Central Hospital of the Mutual Aid Association of Public School Teachers'),
(94415, 78318, 'ja', 'name', 'å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆå››å›½äø­å¤®ē—…é™¢ć€ę„›åŖ›ēœŒć€ę—„ęœ¬'),
(94416, 78319, 'en', 'name', 'International Centre for Archival Research'),
(94417, 78320, 'de', 'name', 'Datenverarbeitung und Dienstleistung für den steuerberatenden Beruf'),
(94418, 78320, 'no_lang_code', 'name', 'DATEV (Germany)'),
(94419, 78321, 'pt', 'name', 'Itaipu Binacional'),
(94420, 78322, 'no_lang_code', 'name', 'Nodes & Links (United Kingdom)'),
(94421, 78323, 'de', 'name', 'Institut für Berufs- und Sozialpädagogik'),
(94422, 78324, 'en', 'name', 'Institute for Integrated Management of Material Fluxes and of Resources'),
(94423, 78325, 'no_lang_code', 'name', 'Polar (Finland)'),
(94424, 78326, 'de', 'name', 'Forsa'),
(94425, 78326, 'en', 'name', 'Forsa Institute for Social Research and Statistical Analysis'),
(94426, 78327, 'no_lang_code', 'name', 'Poietis (France)'),
(94427, 78328, 'no_lang_code', 'name', 'Institut Raum & Energie (Germany)'),
(94428, 78329, 'en', 'name', 'Qingdao Eighth People''s Hospital'),
(94429, 78329, 'zh', 'name', 'é’å²›åø‚ē¬¬å…«äŗŗę°‘åŒ»é™¢'),
(94430, 78330, 'no_lang_code', 'name', 'ABmerit'),
(94431, 78331, 'ja', 'name', 'ćØćć‚å‹•ē‰©åœ’'),
(94432, 78331, 'no_lang_code', 'name', 'Tokiwa Park'),
(94433, 78332, 'no_lang_code', 'name', 'Alpine Quantum Technologies (Austria)'),
(94434, 78333, 'no_lang_code', 'name', 'Hamburg Wasser (Germany)'),
(94435, 78334, 'no_lang_code', 'name', 'ISB (Germany)'),
(94436, 78335, 'no_lang_code', 'name', 'Millet Innovation (France)'),
(94437, 78336, 'fr', 'name', 'Centre National de Recherche et de Formation sur le Paludisme'),
(94438, 78337, 'de', 'name', 'Institut für Automobilwirtschaft'),
(94439, 78338, 'en', 'name', 'Osaka Animal Plant & Ocean College'),
(94440, 78338, 'ja', 'name', 'å¤§é˜Ŗå‹•ę¤ē‰©ęµ·ę“‹å°‚é–€å­¦ę ”'),
(94441, 78339, 'en', 'name', 'National Institute on Consumer Education'),
(94442, 78339, 'ja', 'name', 'ę¶ˆč²»č€…ę•™č‚²ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(94443, 78340, 'no_lang_code', 'name', 'Tidewater Consulting (United States)'),
(94444, 78341, 'en', 'name', 'Trailfinders Travel Clinic'),
(94445, 78342, 'no_lang_code', 'name', 'Raith (Germany)'),
(94446, 78343, 'sk', 'name', 'Strednej Odbornej Ŕkole Lesníckej BanskÔ Štiavnica'),
(94447, 78344, 'no_lang_code', 'name', 'Oricula Therapeutics (United States)'),
(94448, 78345, 'no_lang_code', 'name', 'Wellstat Biologics (United States)'),
(94449, 78346, 'no_lang_code', 'name', 'Varsha Bioscience and Technology (India)'),
(94450, 78347, 'no_lang_code', 'name', 'Viveve (United States)'),
(94451, 78348, 'no_lang_code', 'name', 'Ciena (United Kingdom)'),
(94452, 78349, 'ar', 'name', 'Ų§Ł„Ų„Ų³ŁƒŁˆŲ§ā€Ž'),
(94453, 78349, 'en', 'name', 'United Nations Economic and Social Commission for Western Asia'),
(94454, 78350, 'ar', 'name', 'الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„Ų“Ł…Ų§Ł„ŁŠŲ©'),
(94455, 78350, 'en', 'name', 'Northern Technical University'),
(94456, 78351, 'de', 'name', 'Wilhelm-Jost-Institut'),
(94457, 78352, 'no_lang_code', 'name', 'Wen''s Food Group (China)'),
(94458, 78352, 'zh', 'name', 'ęø©ę°é£Ÿå“é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(94459, 78353, 'no_lang_code', 'name', 'Savi (United States)'),
(94460, 78354, 'no_lang_code', 'name', 'WELLS BIO (United States)'),
(94461, 78355, 'no_lang_code', 'name', 'Spectra Solutions (United States)'),
(94462, 78356, 'no_lang_code', 'name', 'Medrobotics (United States)'),
(94463, 78357, 'en', 'name', 'Royal Museums of Fine Arts of Belgium'),
(94464, 78357, 'fr', 'name', 'MusƩes royaux des Beaux-Arts de Belgique'),
(94465, 78357, 'nl', 'name', 'Koninklijke Musea voor Schone Kunsten van Belgiƫ'),
(94466, 78358, 'en', 'name', 'National Tax College'),
(94467, 78358, 'ja', 'name', 'ēØŽå‹™å¤§å­¦ę ”'),
(94468, 78359, 'en', 'name', 'Ageo Nursing College'),
(94469, 78359, 'ja', 'name', 'äøŠå°¾ēœ‹č­·å°‚é–€å­¦ę ”'),
(94470, 78360, 'no_lang_code', 'name', 'VRC Metal Systems (United States)'),
(94471, 78361, 'en', 'name', 'Odessa Military Academy'),
(94472, 78361, 'uk', 'name', 'Š’Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾Ń— AкаГемії'),
(94473, 78362, 'no_lang_code', 'name', 'Actigen (United Kingdom)'),
(94474, 78363, 'no_lang_code', 'name', 'Inprother (Denmark)'),
(94475, 78364, 'no_lang_code', 'name', 'Penta-Ocean Construction (Japan)'),
(94476, 78365, 'no_lang_code', 'name', 'Centrient Pharmaceuticals (Netherlands)'),
(94477, 78366, 'no_lang_code', 'name', 'Kerry Group (United Kingdom)'),
(94478, 78367, 'no_lang_code', 'name', 'Quantropi (Canada)'),
(94479, 78368, 'en', 'name', 'American College of Veterinary Radiology'),
(94480, 78369, 'no_lang_code', 'name', 'Powerscreen (United Kingdom)'),
(94481, 78370, 'en', 'name', 'Slovak Water Management Enterprise'),
(94482, 78370, 'sk', 'name', 'Slovenský VodohospodÔrsky Podnik'),
(94483, 78371, 'de', 'name', 'Medicover'),
(94484, 78372, 'fr', 'name', 'HƓpital Georges-Clemenceau'),
(94485, 78373, 'no_lang_code', 'name', 'Microsoft (Switzerland)'),
(94486, 78374, 'no_lang_code', 'name', 'Synaptic Research (United States)'),
(94487, 78375, 'no_lang_code', 'name', 'Vitalitec International (Germany)'),
(94488, 78376, 'no_lang_code', 'name', 'Centinel Spine (United States)'),
(94489, 78377, 'no_lang_code', 'name', 'Bayer (Mexico)'),
(94490, 78378, 'no_lang_code', 'name', 'Polygon Physics (France)'),
(94491, 78379, 'no_lang_code', 'name', 'DNA Diagnostic (Denmark)'),
(94492, 78380, 'no_lang_code', 'name', 'AIM Infrarot-Module (Germany)'),
(94493, 78381, 'de', 'name', 'Märkisches Institut für Technologie- und Innovationsförderung'),
(94494, 78382, 'no_lang_code', 'name', 'SpectraDynamics (United States)'),
(94495, 78383, 'no_lang_code', 'name', 'Edgewell Personal Care (United States)'),
(94496, 78384, 'en', 'name', 'Institute for Fundamental Physics of the Universe'),
(94497, 78385, 'no_lang_code', 'name', 'DeVilbiss Healthcare (United States)'),
(94498, 78386, 'en', 'name', 'University of Civil Protection'),
(94499, 78386, 'ru', 'name', 'Университет гражГанской защиты МЧД Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(94500, 78387, 'ja', 'name', 'ę±ę“‹ę°“ē”£ę Ŗå¼ä¼šē¤¾'),
(94501, 78387, 'no_lang_code', 'name', 'Toyo Suisan (Japan)'),
(94502, 78388, 'en', 'name', 'Global Research and Advocacy Group'),
(94503, 78389, 'no_lang_code', 'name', 'Riptide Autonomous Solutions (United States)'),
(94504, 78390, 'en', 'name', 'Biodiversity Research Center, Academia Sinica'),
(94505, 78390, 'zh', 'name', '中央研究院 ē”Ÿē‰©å¤šęØ£ę€§ē ”ē©¶äø­åæƒ'),
(94506, 78391, 'de', 'name', 'Institut für Wissenschaft und Ethik'),
(94507, 78391, 'en', 'name', 'Institute of Science and Ethics'),
(94508, 78392, 'no_lang_code', 'name', 'Wave CPC (United States)'),
(94509, 78393, 'no_lang_code', 'name', 'US Biotest (United States)'),
(94510, 78394, 'id', 'name', 'Institut Teknologi dan Sains Nahdlatul Ulama'),
(94511, 78395, 'no_lang_code', 'name', 'Therabel (Netherlands)'),
(94512, 78396, 'en', 'name', 'HCOV Global'),
(94513, 78397, 'no_lang_code', 'name', 'Sanofi (Turkey)'),
(94514, 78398, 'no_lang_code', 'name', 'Hip Innovation Technology (United States)'),
(94515, 78399, 'es', 'name', 'Centro de Estudios FotosintƩticos y Bioquƭmicos'),
(94516, 78400, 'en', 'name', 'European Magnetic Field Laboratory'),
(94517, 78401, 'en', 'name', 'Wildlife Information Liaison Development'),
(94518, 78402, 'de', 'name', 'Ruhr-Forschungsinstitut für Innovations- und Strukturpolitik'),
(94519, 78403, 'no_lang_code', 'name', 'Institut Für Arbeits- und Baubetriebswissenschaft (Germany)'),
(94520, 78404, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹čŒØåŸŽę±ē—…é™¢'),
(94521, 78404, 'no_lang_code', 'name', 'Ibarakihigashi National Hospital'),
(94522, 78405, 'no_lang_code', 'name', 'Ingine (United States)'),
(94523, 78406, 'ja', 'name', 'ę—„é€²ć‚µć‚¤ć‚Øćƒ³ćƒ†ć‚£ć‚¢'),
(94524, 78406, 'no_lang_code', 'name', 'Nisshin Scientia (Japan)'),
(94525, 78407, 'en', 'name', 'Bidar Organization for Medicinal and Aromatic plants'),
(94526, 78408, 'de', 'name', 'Institut für Ressourceneffizienz und Energiestrategien'),
(94527, 78408, 'en', 'name', 'Institute for Resource Efficiency and Energy Strategies'),
(94528, 78409, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų£ŲØŲ±Ų§Ų±'),
(94529, 78409, 'en', 'name', 'Abrar University'),
(94530, 78410, 'en', 'name', 'Aerospace Information Research Institute'),
(94531, 78410, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē©ŗå¤©äæ”ęÆåˆ›ę–°ē ”ē©¶é™¢'),
(94532, 78411, 'en', 'name', 'Ishikawa Prefectural Library'),
(94533, 78411, 'ja', 'name', 'ēŸ³å·ēœŒē«‹å›³ę›øé¤Ø'),
(94534, 78412, 'no_lang_code', 'name', 'QVT (United States)'),
(94535, 78413, 'en', 'name', 'Ghent University Global Campus'),
(94536, 78413, 'ko', 'name', 'ź²ķŠøėŒ€ķ•™źµ'),
(94537, 78414, 'de', 'name', 'Verein zur Fƶrderung Innovativer Verfahren in der Logistik'),
(94538, 78415, 'no_lang_code', 'name', 'Advance (Japan)'),
(94539, 78416, 'de', 'name', 'Institut für Umweltplanung und Raumentwicklung'),
(94540, 78417, 'en', 'name', 'Central Alabama Veterans Health Care System'),
(94541, 78418, 'en', 'name', 'South African Environmental Observation Network'),
(94542, 78419, 'no_lang_code', 'name', 'Retrotope (United States)'),
(94543, 78420, 'en', 'name', 'Beijing Foresty Machinery Institute'),
(94544, 78420, 'zh', 'name', 'å›½å®¶ęž—äøšå’Œč‰åŽŸå±€åŒ—äŗ¬ęž—äøšęœŗę¢°ē ”ē©¶ę‰€'),
(94545, 78421, 'en', 'name', 'SouthSouthNorth'),
(94546, 78422, 'es', 'name', 'Menescalia Centro Veterinario'),
(94547, 78423, 'no_lang_code', 'name', 'Hesse (Germany)'),
(94548, 78424, 'en', 'name', 'NCMI Information and Data Centre'),
(94549, 78425, 'en', 'name', 'Affiliated Hospital of Shaanxi University of Chinese Medicine'),
(94550, 78425, 'zh', 'name', 'é™•č„æäø­åŒ»čÆå¤§å­¦é™„å±žåŒ»é™¢'),
(94551, 78426, 'ja', 'name', 'ę‰¶ę”‘č–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(94552, 78426, 'no_lang_code', 'name', 'Fuso Pharmaceutical Industries (Japan)'),
(94553, 78427, 'no_lang_code', 'name', 'Spetec (Germany)'),
(94554, 78428, 'no_lang_code', 'name', 'Richardson Electronics (United Kingdom)'),
(94555, 78429, 'no_lang_code', 'name', 'Heliae (United States)'),
(94556, 78430, 'de', 'name', 'Verband SƤchsischer Bildungsinstitute'),
(94557, 78431, 'no_lang_code', 'name', 'Precision Polyolefins (United States)'),
(94558, 78432, 'en', 'name', 'National University of Sciences, Technologies, Engineering and Mathematics'),
(94559, 78432, 'fr', 'name', 'UniversitƩ Nationale des Sciences, Technologies, IngƩnierie et MathƩmatiques'),
(94560, 78433, 'no_lang_code', 'name', 'Allied Healthcare Products (United States)'),
(94561, 78434, 'en', 'name', 'Tama County Public Health & Home Care'),
(94562, 78435, 'de', 'name', 'Borderstep Institut für Innovation und Nachhaltigkeit'),
(94563, 78435, 'en', 'name', 'Borderstep Institute for Innovation and Sustainability'),
(94564, 78436, 'de', 'name', 'Institut für Postfossile Logistik'),
(94565, 78437, 'no_lang_code', 'name', 'Institut für Produktionsmanagement und Logistik (Germany)'),
(94566, 78438, 'de', 'name', 'Forschungsinstitut für innovative Arbeitsgestaltung und Prävention'),
(94567, 78439, 'no_lang_code', 'name', 'Pacific Research Group (United States)'),
(94568, 78440, 'en', 'name', 'Orlando VA Medical Center'),
(94569, 78441, 'en', 'name', 'Ehime Institute of Industrial Technology Paper Technology Center'),
(94570, 78441, 'ja', 'name', 'ę„›åŖ›ēœŒē”£ę„­ęŠ€č”“ē ”ē©¶ę‰€ ē“™ē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(94571, 78442, 'no_lang_code', 'name', 'UCT Coatings (United States)'),
(94572, 78443, 'no_lang_code', 'name', 'Mane (France)'),
(94573, 78444, 'en', 'name', 'Startups.be'),
(94574, 78445, 'no_lang_code', 'name', '3Shape (Denmark)'),
(94575, 78446, 'no_lang_code', 'name', 'Lacer (Spain)'),
(94576, 78447, 'no_lang_code', 'name', 'Graphic Science (United Kingdom)'),
(94577, 78448, 'de', 'name', 'Stiftung Jugend forscht'),
(94578, 78449, 'no_lang_code', 'name', 'Ophidion (United States)'),
(94579, 78450, 'en', 'name', 'UK Council on Deafness'),
(94580, 78451, 'ja', 'name', 'ę—„ę±ē†åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(94581, 78451, 'no_lang_code', 'name', 'Nitto RIKEN (Japan)'),
(94582, 78452, 'es', 'name', 'Centro de Investigación en Salud Dr. Hugo Mendoza'),
(94583, 78453, 'no_lang_code', 'name', 'Solid State Ceramics (United States)'),
(94584, 78454, 'no_lang_code', 'name', 'Seeqc (United States)'),
(94585, 78455, 'no_lang_code', 'name', 'Thuringian Institute of Sustainability and Climate Protection (Germany)'),
(94586, 78456, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° нароГна банка'),
(94587, 78456, 'en', 'name', 'Bulgarian National Bank'),
(94588, 78457, 'en', 'name', 'Selangor Business School'),
(94589, 78458, 'no_lang_code', 'name', 'Vatech (South Korea)'),
(94590, 78459, 'de', 'name', 'Lehr- und Versuchsanstalt für Viehhaltung Hofgut Neumühle'),
(94591, 78460, 'en', 'name', 'Aso Information Business College Fukuoka'),
(94592, 78460, 'ja', 'name', 'éŗ»ē”Ÿęƒ…å ±ćƒ“ć‚øćƒć‚¹å°‚é–€å­¦ę ”ē¦å²”ę ”'),
(94593, 78461, 'de', 'name', 'Max Zƶllner Stiftung'),
(94594, 78462, 'no_lang_code', 'name', 'Corium (United States)'),
(94595, 78463, 'no_lang_code', 'name', 'Bochumer Institut für Technologie (Germany)'),
(94596, 78464, 'en', 'name', 'Croatian Personal Data Protection Agency'),
(94597, 78464, 'hr', 'name', 'Agencija za ZaŔtitu Osobnih Podataka'),
(94598, 78465, 'en', 'name', 'euroCRIS'),
(94599, 78466, 'en', 'name', 'International SƔmi Film Institute'),
(94600, 78467, 'en', 'name', 'City of Antwerp'),
(94601, 78467, 'nl', 'name', 'Stad Antwerpen'),
(94602, 78468, 'no_lang_code', 'name', '22nd Century Group (United States)'),
(94603, 78469, 'ar', 'name', 'المبادرة Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ł„Ł„Ų­Ł‚ŁˆŁ‚ Ų§Ł„Ų“Ų®ŲµŁŠŲ©ā€Ž'),
(94604, 78469, 'en', 'name', 'Egyptian Initiative for Personal Rights'),
(94605, 78470, 'en', 'name', 'Women''s Brain Project'),
(94606, 78471, 'en', 'name', 'Catalytic Longevity'),
(94607, 78472, 'en', 'name', 'Center for Regional Economic Competitiveness'),
(94608, 78473, 'no_lang_code', 'name', 'Stimwave Technologies (United States)'),
(94609, 78474, 'no_lang_code', 'name', 'SUSS MicroTec (Switzerland)'),
(94610, 78475, 'en', 'name', 'Tokyo Technical College'),
(94611, 78475, 'ja', 'name', 'ę±äŗ¬ćƒ†ć‚Æćƒ‹ć‚«ćƒ«ć‚«ćƒ¬ćƒƒć‚ø'),
(94612, 78476, 'no_lang_code', 'name', 'Orbia (Mexico)'),
(94613, 78477, 'en', 'name', 'The First People''s Hospital of Guiyang'),
(94614, 78477, 'zh', 'name', 'č“µé˜³åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(94615, 78478, 'en', 'name', 'Center for the Study of Equity and Governance in Health Systems'),
(94616, 78478, 'es', 'name', 'Centro de Estudios para la Equidad y Gobernanza en Sistemas de Salud'),
(94617, 78479, 'no_lang_code', 'name', 'Bioquell (United Kingdom)'),
(94618, 78480, 'en', 'name', 'Organization for Social Science Research in Eastern and Southern Africa'),
(94619, 78481, 'no_lang_code', 'name', 'Kobe Material Testing Laboratory (Japan)'),
(94620, 78482, 'no_lang_code', 'name', 'Dytron (Slovakia)'),
(94621, 78483, 'de', 'name', 'Wissenschaftliche Stadtbibliothek Mainz'),
(94622, 78484, 'no_lang_code', 'name', 'Spectradyne (United States)'),
(94623, 78485, 'en', 'name', 'Mental Health Commission'),
(94624, 78486, 'no_lang_code', 'name', 'Vanilla Unmanned (United States)'),
(94625, 78487, 'en', 'name', 'East-Siberian Institute of Economics and Management'),
(94626, 78487, 'ru', 'name', 'Восточно-сибирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø менеГжмента'),
(94627, 78488, 'en', 'name', 'Information Technology Laboratory'),
(94628, 78489, 'no_lang_code', 'name', 'Perorsaanermik Ilinniarfik / College of Social Education'),
(94629, 78490, 'en', 'name', 'Iwate Cultural Promotion agency'),
(94630, 78490, 'ja', 'name', 'č²”å›£ę³•äŗŗå²©ę‰‹ēœŒę–‡åŒ–ęŒÆčˆˆäŗ‹ę„­'),
(94631, 78491, 'de', 'name', 'DVGW - Technologiezentrum Wasser, DVGW - Water Technology Center'),
(94632, 78492, 'no_lang_code', 'name', 'Scomm (United States)'),
(94633, 78493, 'no_lang_code', 'name', 'Deutsche WindGuard (Germany)'),
(94634, 78494, 'en', 'name', 'Wuhan Blood Center'),
(94635, 78494, 'zh', 'name', 'ę­¦ę±‰č”€ę¶²äø­åæƒ'),
(94636, 78495, 'en', 'name', 'Team University'),
(94637, 78496, 'ja', 'name', 'ć‚ÆćƒŸć‚¢ć‚¤åŒ–å­¦å·„ę„­'),
(94638, 78496, 'no_lang_code', 'name', 'Kumiai Chemical Industry (Japan)'),
(94639, 78497, 'en', 'name', 'IIT@Harvard'),
(94640, 78498, 'no_lang_code', 'name', 'Traycer (United States)'),
(94641, 78499, 'no_lang_code', 'name', 'ForteBio (United States)'),
(94642, 78500, 'no_lang_code', 'name', 'Cesic (Germany)'),
(94643, 78501, 'de', 'name', 'Staatliche Kunsthalle Karlsruhe'),
(94644, 78502, 'no_lang_code', 'name', 'Clariance (Luxembourg)'),
(94645, 78503, 'en', 'name', 'National Bank of Romania'),
(94646, 78503, 'ro', 'name', 'Banca Națională a RomĆ¢niei'),
(94647, 78504, 'en', 'name', 'Otsu City Museum Of History'),
(94648, 78504, 'ja', 'name', 'å¤§ę“„åø‚ę­“å²åšē‰©é¤Ø'),
(94649, 78505, 'no_lang_code', 'name', 'Pathlab (New Zealand)'),
(94650, 78506, 'no_lang_code', 'name', 'Ghana Institute of Languages'),
(94651, 78507, 'en', 'name', 'Research Institute of Forestry Policy and Information'),
(94652, 78507, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ęž—äøšē ”ē©¶ę‰€'),
(94653, 78508, 'no_lang_code', 'name', 'ABEnzymes (Germany)'),
(94654, 78509, 'no_lang_code', 'name', 'ProteinOne (United States)'),
(94655, 78510, 'ja', 'name', 'ę£®äø‹ä»äø¹ę Ŗå¼ä¼šē¤¾'),
(94656, 78510, 'no_lang_code', 'name', 'Morishita Jintan (Japan)'),
(94657, 78511, 'no_lang_code', 'name', 'Osteomed (United States)'),
(94658, 78512, 'en', 'name', 'European Centre for Community Education'),
(94659, 78513, 'fr', 'name', 'CNR de la RƩsistance aux Antibiotiques'),
(94660, 78514, 'en', 'name', 'Brazilian Institute of Neuroscience and Neurotechnology'),
(94661, 78514, 'pt', 'name', 'Instituto Brasileiro de NeurociĆŖncia e Neurotecnologia'),
(94662, 78515, 'de', 'name', 'ForschungsVerbund Erneuerbare Energien'),
(94663, 78515, 'en', 'name', 'Renewable Energy Research Association'),
(94664, 78516, 'no_lang_code', 'name', 'PapGene (United States)'),
(94665, 78517, 'en', 'name', 'United Nations Office on Drugs and Crime'),
(94666, 78518, 'ja', 'name', 'äø‰å„½åŒ–ęˆę Ŗå¼ä¼šē¤¾'),
(94667, 78518, 'no_lang_code', 'name', 'Miyoshi Kasei (Japan)'),
(94668, 78519, 'ja', 'name', 'å±±å½¢ēœŒē«‹ę–°åŗ„ē—…é™¢'),
(94669, 78519, 'no_lang_code', 'name', 'Yamagata Prefectural Shinjo Hospital'),
(94670, 78520, 'ja', 'name', 'č¶Šå¾Œę¾ä¹‹å±±ć€Œę£®ć®å­¦ę ”ć€ć‚­ćƒ§ćƒ­ćƒ­'),
(94671, 78520, 'no_lang_code', 'name', 'Echigo Matsunoyama Forest School Kiroro'),
(94672, 78521, 'no_lang_code', 'name', 'VivaQuant (United States)'),
(94673, 78522, 'de', 'name', 'Dommuseum Hildesheim'),
(94674, 78523, 'en', 'name', 'International Fertilizer Development Center'),
(94675, 78524, 'ja', 'name', 'ć‚ŖćƒŖćƒ±ćƒ³ćƒˆåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(94676, 78524, 'no_lang_code', 'name', 'Orient Chemical Industries (Japan)'),
(94677, 78525, 'no_lang_code', 'name', 'Chevron (China)'),
(94678, 78525, 'zh', 'name', 'é›Ŗä½›é¾é¦™ęøÆęœ‰é™å…¬åø'),
(94679, 78526, 'no_lang_code', 'name', 'Wescam (Canada)'),
(94680, 78527, 'no_lang_code', 'name', 'Michelin (United Kingdom)'),
(94681, 78528, 'en', 'name', 'Institute for Building Systems Engineering Dresden Research and Application'),
(94682, 78529, 'de', 'name', 'Instituts für Strukturpolitik und Wirtschaftsförderung Gemeinnützige Gesellschaft'),
(94683, 78530, 'de', 'name', 'Erich-Brost-Institut'),
(94684, 78531, 'en', 'name', 'Flanders Institute for Logistics'),
(94685, 78531, 'nl', 'name', 'Vlaams Instituut voor de Logistiek'),
(94686, 78532, 'en', 'name', 'Center for Security and Emerging Technology'),
(94687, 78533, 'no_lang_code', 'name', 'Shock Transients (United States)'),
(94688, 78534, 'no_lang_code', 'name', 'CIP Chemisches Institut Pforzheim GmbH (Germany)'),
(94689, 78535, 'en', 'name', 'Alabama Library Association'),
(94690, 78536, 'en', 'name', 'Warm Heart Worldwide'),
(94691, 78537, 'de', 'name', 'Lehmbruck Museum'),
(94692, 78538, 'no_lang_code', 'name', 'Tech 21 (United States)'),
(94693, 78539, 'no_lang_code', 'name', 'Crescita Therapeutics (Canada)'),
(94694, 78540, 'no_lang_code', 'name', 'Quick-Med Technologies (United States)'),
(94695, 78541, 'en', 'name', 'Center for Neuroscience and Cognitive Systems'),
(94696, 78542, 'no_lang_code', 'name', 'E-T-A Elektrotechnische Apparate (Germany)'),
(94697, 78543, 'en', 'name', 'Maharashtra Forest Department'),
(94698, 78543, 'hi', 'name', 'ą¤®ą¤¹ą¤¾ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤° वन विभाग'),
(94699, 78544, 'en', 'name', 'China Academic Degrees and Graduate Education Development Center'),
(94700, 78544, 'zh', 'name', 'äø­å›½å­¦ä½äøŽē ”ē©¶ē”Ÿę•™č‚²äæ”ęÆē½‘'),
(94701, 78545, 'no_lang_code', 'name', 'Herrenknecht (Germany)'),
(94702, 78546, 'en', 'name', 'UK Data Service'),
(94703, 78547, 'no_lang_code', 'name', 'NeuroGenetic Pharmaceuticals (United States)'),
(94704, 78548, 'en', 'name', 'Saitama Prefectural River Museum'),
(94705, 78548, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹å·ć®åšē‰©é¤Ø'),
(94706, 78549, 'en', 'name', 'The Japanese Institute of Fisheries Infrastructure and Communities'),
(94707, 78549, 'ja', 'name', 'ę¼ęøÆę¼å “ę¼ę‘ē·åˆē ”ē©¶ę‰€'),
(94708, 78550, 'no_lang_code', 'name', 'Velcro (United Kingdom)'),
(94709, 78551, 'en', 'name', 'Wyoming Game and Fish Department'),
(94710, 78552, 'ja', 'name', 'ćƒ•ćƒ©ćƒ³ć‚¹ćƒ™ćƒƒćƒ‰ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(94711, 78552, 'no_lang_code', 'name', 'France Bed Holdings (Japan)'),
(94712, 78553, 'en', 'name', 'China Society of Plant Protection'),
(94713, 78553, 'zh', 'name', 'äø­å›½ę¤ē‰©äæęŠ¤å­¦ä¼š'),
(94714, 78554, 'de', 'name', 'Internationales Institut für Nachhaltiges Energiemanagement, Politik, Risiko und Soziale Innovationen'),
(94715, 78555, 'en', 'name', 'Western Returned Scholars AssociationĀ·Overseas-Educated Scholars Association of China'),
(94716, 78555, 'zh', 'name', 'ę¬§ē¾ŽåŒå­¦ä¼š'),
(94717, 78556, 'en', 'name', 'Public Health Clinical Center of Chengdu'),
(94718, 78556, 'zh', 'name', 'ęˆéƒ½åø‚å…¬å…±å«ē”Ÿäø“åŗŠåŒ»ē–—äø­åæƒ'),
(94719, 78557, 'no_lang_code', 'name', 'Silk Technologies (United States)'),
(94720, 78558, 'no_lang_code', 'name', 'MS-Schramberg (Germany)'),
(94721, 78559, 'no_lang_code', 'name', '4D Pharma (United Kingdom)'),
(94722, 78560, 'no_lang_code', 'name', 'Bejo Zaden (Netherlands)'),
(94723, 78561, 'no_lang_code', 'name', 'Saban Ventures (Israel)'),
(94724, 78562, 'de', 'name', 'Deutsche Handwerksinstitut'),
(94725, 78563, 'no_lang_code', 'name', 'AB Vista (United Kingdom)'),
(94726, 78564, 'en', 'name', 'Research Institute of Machinery Industry Economic&Management'),
(94727, 78564, 'zh', 'name', 'ęœŗę¢°å·„äøšē»ęµŽäøŽē®”ē†ē ”ē©¶ę‰€'),
(94728, 78565, 'no_lang_code', 'name', 'Golden Biotech (Taiwan)'),
(94729, 78565, 'zh', 'name', 'åœ‹é¼Žē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(94730, 78566, 'en', 'name', 'The Sixth People''s Hospital of Zhengzhou'),
(94731, 78566, 'zh', 'name', 'éƒ‘å·žåø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(94732, 78567, 'no_lang_code', 'name', 'Infineon Technologies (Singapore)'),
(94733, 78568, 'en', 'name', 'Marine Technical College'),
(94734, 78568, 'ja', 'name', 'ęµ·ęŠ€å¤§å­¦ę ”'),
(94735, 78569, 'no_lang_code', 'name', 'Retractable Technologies (United States)'),
(94736, 78570, 'no_lang_code', 'name', 'PeopleTec (United States)'),
(94737, 78571, 'en', 'name', 'Telerehabilitation International'),
(94738, 78572, 'de', 'name', 'Permakultur Institut'),
(94739, 78573, 'en', 'name', 'Centre for the Observation and Modelling of Earthquakes, Volcanoes and Tectonics'),
(94740, 78574, 'no_lang_code', 'name', 'Cemex (Mexico)'),
(94741, 78575, 'en', 'name', 'Likhatchev Russian Research Institute for Cultural and Natural Heritage'),
(94742, 78575, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Š½Š¾Š³Š¾ Šø прироГного Š½Š°ŃŠ»ŠµŠ“ŠøŃ'),
(94743, 78576, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęµ·äŗ‹å”ä¼š'),
(94744, 78576, 'no_lang_code', 'name', 'ClassNK'),
(94745, 78577, 'no_lang_code', 'name', 'Urban Institute (Germany)'),
(94746, 78578, 'en', 'name', 'Islamic Azad University, Larestan Branch'),
(94747, 78578, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد لارستان'),
(94748, 78579, 'no_lang_code', 'name', 'BlueDot (Canada)'),
(94749, 78580, 'no_lang_code', 'name', 'SpineWelding (Switzerland)'),
(94750, 78581, 'en', 'name', 'Network on Urban Research in the European Union'),
(94751, 78582, 'no_lang_code', 'name', 'Mobileeee (Germany)'),
(94752, 78583, 'en', 'name', 'Indian Institute of Natural Resins and Gums'),
(94753, 78584, 'no_lang_code', 'name', 'New Dimensions Research (United States)'),
(94754, 78585, 'en', 'name', 'Beijing Computing Center'),
(94755, 78586, 'en', 'name', 'Institute for the Science and Technology of Plasmas'),
(94756, 78586, 'it', 'name', 'Istituto per la Scienza e Tecnologia dei Plasmi'),
(94757, 78587, 'no_lang_code', 'name', 'Witzenhausen-Institut (Germany)'),
(94758, 78588, 'en', 'name', 'Institute of Molecular Biology, Academia Sinica'),
(94759, 78588, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢åˆ†å­ē”Ÿē‰©ē ”ē©¶ę‰€'),
(94760, 78589, 'en', 'name', 'Centre for Multidisciplinary Research in Health Science'),
(94761, 78590, 'no_lang_code', 'name', 'ICU Medical (United States)'),
(94762, 78591, 'es', 'name', 'Incubadora Venezolana de la Ciencia'),
(94763, 78592, 'en', 'name', 'paws4people'),
(94764, 78593, 'en', 'name', 'Sri Konda Laxman Telangana State Horticultural University'),
(94765, 78593, 'te', 'name', 'ą°¶ą±ą°°ą±€ ą°•ą±Šą°‚ą°”ą°¾ ą°²ą°•ą±ą°·ą±ą°®ą°£ą± తెలంగాణ ą°°ą°¾ą°·ą±ą°Ÿą±ą°°ą°‚ ą°¹ą°¾ą°°ą±ą°Ÿą°æą°•ą°²ą±ą°šą°°ą± ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(94766, 78594, 'no_lang_code', 'name', 'NHanced Semiconductors (United States)'),
(94767, 78595, 'en', 'name', 'Okinawa Prefecture'),
(94768, 78595, 'ja', 'name', 'ę²–ēø„ēœŒå…¬å®³č”›ē”Ÿē ”ē©¶ę‰€'),
(94769, 78596, 'en', 'name', 'United Nations Economic and Social Commission for Asia and the Pacific'),
(94770, 78597, 'en', 'name', 'Public interest incorporated foundation Keep Association'),
(94771, 78597, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚­ćƒ¼ćƒ—å”ä¼š'),
(94772, 78598, 'no_lang_code', 'name', 'Atlas Spine (United States)'),
(94773, 78599, 'en', 'name', 'The Physical Society of Japan'),
(94774, 78599, 'ja', 'name', 'ę—„ęœ¬ē‰©ē†å­¦ä¼š'),
(94775, 78600, 'no_lang_code', 'name', 'Institut für Pflanzenkultur (Germany)'),
(94776, 78601, 'en', 'name', 'Himalayan Institute of Alternatives, Ladakh'),
(94777, 78602, 'en', 'name', 'Chiba Prefecture Cultural Property Center'),
(94778, 78602, 'ja', 'name', 'čŖåƒč‘‰ēœŒę–‡åŒ–č²”ć‚»ćƒ³ć‚æćƒ¼'),
(94779, 78603, 'no_lang_code', 'name', 'Broncus (United States)'),
(94780, 78604, 'no_lang_code', 'name', 'Compagnie Tunisienne de Forage (Tunisia)'),
(94781, 78605, 'no_lang_code', 'name', 'Viavi Solutions (United Kingdom)'),
(94782, 78606, 'no_lang_code', 'name', 'Acoustic Metamaterials Group (China)'),
(94783, 78607, 'no_lang_code', 'name', 'GTT-Technologies (Germany)'),
(94784, 78608, 'no_lang_code', 'name', 'Sonoran Biosciences (United States)'),
(94785, 78609, 'en', 'name', 'Institute of Cellular and Organismic Biology, Academia Sinica'),
(94786, 78609, 'zh', 'name', 'ē“°čƒžčˆ‡å€‹é«”ē”Ÿē‰©ē ”ē©¶ę‰€'),
(94787, 78610, 'no_lang_code', 'name', 'IDBI Bank'),
(94788, 78611, 'es', 'name', 'Centro Tecnológico Avanzado de La Piedra'),
(94789, 78612, 'en', 'name', 'Saratoga Hospital'),
(94790, 78613, 'no_lang_code', 'name', 'Rocky Mountain Scientific Laboratory (United States)'),
(94791, 78614, 'no_lang_code', 'name', 'Tusaar (United States)'),
(94792, 78615, 'en', 'name', 'Xiamen Chang Gung Hospital'),
(94793, 78615, 'zh', 'name', 'åŽ¦é—Øé•æåŗšåŒ»é™¢'),
(94794, 78616, 'en', 'name', 'Bank of Slovenia'),
(94795, 78616, 'sl', 'name', 'Banka Slovenije'),
(94796, 78617, 'en', 'name', 'EngineeringUK'),
(94797, 78618, 'en', 'name', 'ESEP-LE BERGER University'),
(94798, 78619, 'en', 'name', 'World University Service'),
(94799, 78620, 'en', 'name', 'Youth Network for Reform'),
(94800, 78621, 'no_lang_code', 'name', 'Cancerrop (South Korea)'),
(94801, 78622, 'ko', 'name', 'ģ£¼ģ„±ģ—”ģ§€ė‹ˆģ–“ė§'),
(94802, 78622, 'no_lang_code', 'name', 'Jusung Engineering (South Korea)'),
(94803, 78623, 'no_lang_code', 'name', 'THD (Italy)'),
(94804, 78624, 'no_lang_code', 'name', 'Hamari Chemicals (Japan)'),
(94805, 78625, 'no_lang_code', 'name', 'Vemac (Germany)'),
(94806, 78626, 'de', 'name', 'Zentrum für Angewandte Luftfahrtforschung'),
(94807, 78626, 'en', 'name', 'Center of Applied Aeronautical Research'),
(94808, 78627, 'en', 'name', 'Great Lakes Maritime Research Institute'),
(94809, 78628, 'en', 'name', 'Instrumentation Technology and Economy Institute'),
(94810, 78628, 'zh', 'name', 'ä»Ŗå™Øä»Ŗč”ØęŠ€ęœÆē»ęµŽē ”ē©¶ę‰€'),
(94811, 78629, 'de', 'name', 'Klinikum Brandenburg'),
(94812, 78630, 'en', 'name', 'Henan Institute of Geological Survey'),
(94813, 78630, 'zh', 'name', 'ę²³å—ēœåœ°č“Øč°ƒęŸ„å±€'),
(94814, 78631, 'en', 'name', 'Oita Prefectural Hida Forest Engineering High School'),
(94815, 78631, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹ę—„ē”°ęž—å·„é«˜'),
(94816, 78632, 'de', 'name', 'FHS St. Gallen Hochschule für Angewandte Wissenschaften'),
(94817, 78632, 'en', 'name', 'University of Applied Sciences St. Gallen'),
(94818, 78633, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ меГыцынскіх навук'),
(94819, 78633, 'en', 'name', 'Department of Medical Sciences'),
(94820, 78634, 'en', 'name', 'Reserve Bank of Australia'),
(94821, 78635, 'no_lang_code', 'name', 'Arrakis Therapeutics (United States)'),
(94822, 78636, 'no_lang_code', 'name', 'Melior Discovery (United States)'),
(94823, 78637, 'it', 'name', 'Azienda Regionale Emergenza Urgenza'),
(94824, 78638, 'no_lang_code', 'name', 'Fermion (Finland)'),
(94825, 78639, 'en', 'name', 'Islamic Azad University Dolatabad'),
(94826, 78639, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲÆŁˆŁ„ŲŖ Ų¢ŲØŲ§ŲÆ'),
(94827, 78640, 'en', 'name', 'University of Tartu Natural History Museum and Botanical Garden'),
(94828, 78640, 'et', 'name', 'Tartu Ülikooli Loodusmuuseum'),
(94829, 78641, 'en', 'name', 'High Intensity Heavy-ion Accelerator Facility'),
(94830, 78641, 'zh', 'name', 'å¼ŗęµé‡ē¦»å­åŠ é€Ÿå™Øč£…ē½®'),
(94831, 78642, 'en', 'name', 'National Hansen''s Disease Program'),
(94832, 78643, 'en', 'name', 'Government College Kodanchery'),
(94833, 78643, 'ml', 'name', 'ą“—ą“µą“£ąµā€ą“®ąµ†ą“Øąµą“±ąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“•ąµ‹ą“Ÿą“žąµą“šąµ‡ą“°ą“æ'),
(94834, 78644, 'sk', 'name', 'Slovenský Metrologický Ústav'),
(94835, 78645, 'no_lang_code', 'name', 'Orbis Health Solutions (United States)'),
(94836, 78646, 'en', 'name', 'Zimbabwe Council For Higher Education'),
(94837, 78647, 'no_lang_code', 'name', 'Quside Technologies (Spain)'),
(94838, 78648, 'no_lang_code', 'name', 'Q4 (United States)'),
(94839, 78649, 'fr', 'name', 'RƩseau des Acheteurs Hospitaliers'),
(94840, 78650, 'no_lang_code', 'name', 'VAWD (United States)'),
(94841, 78651, 'en', 'name', 'Environmental Development Centre'),
(94842, 78652, 'no_lang_code', 'name', 'VITOK Engineers (United States)'),
(94843, 78653, 'en', 'name', 'Material Measurement Laboratory'),
(94844, 78654, 'es', 'name', 'SecretarĆ­a de Salud de BogotĆ”'),
(94845, 78655, 'no_lang_code', 'name', 'Navitas Systems (United States)'),
(94846, 78656, 'no_lang_code', 'name', 'Phagenesis (United Kingdom)'),
(94847, 78657, 'en', 'name', 'New England University Transportation Center'),
(94848, 78658, 'en', 'name', 'Institute of Genetic and Regenerative Medicine of the National Academy of Medical Sciences of Ukraine'),
(94849, 78658, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ генетичної та регенеративної меГицини ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України"'),
(94850, 78659, 'en', 'name', 'Vietnamese - German Center of Excellence in Medical Research'),
(94851, 78660, 'ja', 'name', 'ę¹§ę°øč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(94852, 78660, 'no_lang_code', 'name', 'Wakunaga (Japan)'),
(94853, 78661, 'de', 'name', 'Deutsche MTM-Vereinigung'),
(94854, 78661, 'en', 'name', 'German MTM Association'),
(94855, 78662, 'no_lang_code', 'name', 'Elementis (United Kingdom)'),
(94856, 78663, 'en', 'name', 'Department of Animal Husbandry'),
(94857, 78663, 'hi', 'name', 'ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ ą¤Ŗą¤¶ą„ą¤Ŗą¤¾ą¤²ą¤Ø'),
(94858, 78664, 'no_lang_code', 'name', 'FineSoft (Slovakia)'),
(94859, 78665, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„ŲŖŲ±ŲØŁŠŲ© في Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„'),
(94860, 78665, 'en', 'name', 'The Arab Academic College for Education in Israel'),
(94861, 78665, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ הערבית לחינוך ×‘×™×©×Ø××œ'),
(94862, 78666, 'de', 'name', 'Matthias-Claudius-Stiftung'),
(94863, 78667, 'en', 'name', 'Noah''s Light Foundation'),
(94864, 78668, 'no_lang_code', 'name', 'VR Rehab (United States)'),
(94865, 78669, 'no_lang_code', 'name', 'Leag (Germany)'),
(94866, 78670, 'en', 'name', 'Chubu University Daiichi High School'),
(94867, 78670, 'ja', 'name', 'äø­éƒØå¤§å­¦ē¬¬äø€é«˜ē­‰å­¦ę ”'),
(94868, 78671, 'no_lang_code', 'name', 'Noack Laboratorien (Germany)'),
(94869, 78672, 'no_lang_code', 'name', 'Tecomet (United States)'),
(94870, 78673, 'no_lang_code', 'name', 'KalƩo (United States)'),
(94871, 78674, 'de', 'name', 'Institut für Sozialpädagogische Forschung Mainz'),
(94872, 78675, 'no_lang_code', 'name', 'Ipsen (Italy)'),
(94873, 78676, 'ar', 'name', 'متحف الفن Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(94874, 78676, 'en', 'name', 'Museum of Islamic Art'),
(94875, 78677, 'en', 'name', 'African Rural University'),
(94876, 78678, 'no_lang_code', 'name', 'Sharma & Associates (United States)'),
(94877, 78679, 'no_lang_code', 'name', 'Stadtwerke München (Germany)'),
(94878, 78680, 'en', 'name', 'Ministry of Agriculture Natural Resources and Rural Development'),
(94879, 78680, 'fr', 'name', 'Ministère de l''Agriculture des Ressources Naturelles et du Développement Rural'),
(94880, 78680, 'ht', 'name', 'MinistĆØ l''Agrikilti Resous NatirĆØl ak Devlopman Riral'),
(94881, 78681, 'no_lang_code', 'name', 'Engineering Service Center und Handel (Germany)'),
(94882, 78682, 'en', 'name', 'National Museum of Fine Arts of Quebec'),
(94883, 78682, 'fr', 'name', 'MusƩe National des Beaux-Arts du QuƩbec'),
(94884, 78683, 'no_lang_code', 'name', 'Silony Medical (Switzerland)'),
(94885, 78684, 'no_lang_code', 'name', 'IPS Elektroniklabor (Germany)'),
(94886, 78685, 'de', 'name', 'Institut für Soziale Arbeit'),
(94887, 78686, 'en', 'name', 'Dr. S.R. Chandrasekhar Institute of Speech and Hearing'),
(94888, 78687, 'no_lang_code', 'name', '3-D Matrix (Japan)'),
(94889, 78688, 'no_lang_code', 'name', 'Shenzhen Goodix Technology (China)'),
(94890, 78688, 'zh', 'name', 'ę±‡é”¶ē§‘ęŠ€'),
(94891, 78689, 'no_lang_code', 'name', 'GEF Ingenieur (Germany)'),
(94892, 78690, 'de', 'name', 'Aerospace Institut'),
(94893, 78690, 'no_lang_code', 'name', 'Aerospace Institute (Germany)'),
(94894, 78691, 'en', 'name', 'Jesuit Centre for Theological Reflection'),
(94895, 78692, 'no_lang_code', 'name', 'Starix Technology (United States)'),
(94896, 78693, 'en', 'name', 'Daily Life'),
(94897, 78694, 'en', 'name', 'Institute of Modern History, Academia Sinica'),
(94898, 78694, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢čæ‘ä»£å²ē ”ē©¶ę‰€ē ”ē©¶å¤§ęØ“'),
(94899, 78695, 'no_lang_code', 'name', 'Trifecta Solutions (United States)'),
(94900, 78696, 'en', 'name', 'Public Works'),
(94901, 78697, 'en', 'name', 'Hebei Provincial Center for Disease Control and Prevention'),
(94902, 78697, 'zh', 'name', 'ę²³åŒ—ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(94903, 78698, 'no_lang_code', 'name', 'Sensitron Semiconductor (United States)'),
(94904, 78699, 'no_lang_code', 'name', 'Ɖternelle (United States)'),
(94905, 78700, 'no_lang_code', 'name', 'Syncopated Products (United States)'),
(94906, 78701, 'no_lang_code', 'name', 'Tietronix (United States)'),
(94907, 78702, 'en', 'name', 'Asia Pacific Construction Science and Technology Information Research Institute'),
(94908, 78702, 'zh', 'name', 'äŗšå¤Ŗå»ŗč®¾ē§‘ęŠ€äæ”ęÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(94909, 78703, 'no_lang_code', 'name', 'Nutramax Laboratories (United States)'),
(94910, 78704, 'en', 'name', 'Ministry of Foreign Affairs'),
(94911, 78704, 'pt', 'name', 'MinistƩrio das RelaƧƵes Exteriores'),
(94912, 78705, 'de', 'name', 'DRK Landesverband Rheinland-Pfalz'),
(94913, 78706, 'no_lang_code', 'name', 'Applus+ IDIADA (United Kingdom)'),
(94914, 78707, 'en', 'name', 'Jiangsu Academy of Safety Science & Technology'),
(94915, 78708, 'de', 'name', 'Franziskus-Krankenhaus Berlin'),
(94916, 78709, 'de', 'name', 'Gustav-Stresemann-Institut'),
(94917, 78709, 'en', 'name', 'Gustav Stresemann Institute'),
(94918, 78710, 'en', 'name', 'University of Global Health Equity'),
(94919, 78711, 'en', 'name', 'Phelps Hospital'),
(94920, 78712, 'no_lang_code', 'name', 'Wasatch Photonics (United States)'),
(94921, 78713, 'no_lang_code', 'name', 'Winchester Technologies (United States)'),
(94922, 78714, 'no_lang_code', 'name', 'OsteoVantage (United States)'),
(94923, 78715, 'de', 'name', 'Institut für Korrosions- und Schadensanalyse Dr.-Ing. Sabine Schultze'),
(94924, 78716, 'no_lang_code', 'name', 'NeuroMetrix (United States)'),
(94925, 78717, 'en', 'name', 'International Foundation for Integrated Care'),
(94926, 78718, 'no_lang_code', 'name', 'Arkion Life Sciences (United States)'),
(94927, 78719, 'de', 'name', 'Institut Berufs- und Innovationsforschung Medien'),
(94928, 78720, 'en', 'name', 'Yichang Central People''s Hospital'),
(94929, 78720, 'zh', 'name', 'å®œę˜Œåø‚äø­åæƒäŗŗę°‘åŒ»é™¢'),
(94930, 78721, 'de', 'name', 'Deutsches Institut für Tropische und Subtropische Landwirtschaft'),
(94931, 78722, 'en', 'name', 'Sukraraj Tropical & Infectious Disease Hospital'),
(94932, 78723, 'de', 'name', 'Staats- und UniversitƤtsbibliothek Bremen'),
(94933, 78724, 'de', 'name', 'Frankfurter Stiftung für Blinde und Sehbehinderte'),
(94934, 78725, 'en', 'name', 'Karamay Central Hospital of Xinjiang'),
(94935, 78725, 'zh', 'name', 'å…‹ę‹‰ēŽ›ä¾åø‚äø­åæƒåŒ»é™¢'),
(94936, 78726, 'en', 'name', 'Shanghai Optical Instrument Research Institute'),
(94937, 78726, 'zh', 'name', 'äøŠęµ·å…‰å­¦ä»Ŗå™Øē ”ē©¶ę‰€'),
(94938, 78727, 'no_lang_code', 'name', 'Finch Therapeutics (United States)'),
(94939, 78728, 'no_lang_code', 'name', 'Chemko (Slovakia)'),
(94940, 78729, 'en', 'name', 'Agricultural Research Service - Midwest Area'),
(94941, 78730, 'no_lang_code', 'name', 'Berliner Wasserbetriebe (Germany)'),
(94942, 78731, 'en', 'name', 'Institute Of Horticulture Technology'),
(94943, 78731, 'hi', 'name', 'ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¬ą¤¾ą¤—ą¤µą¤¾ą¤Øą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€'),
(94944, 78732, 'de', 'name', 'Landesanstalt für Kommunikation'),
(94945, 78733, 'ja', 'name', 'ē”°äø­ē¾Žéƒ·ę•™č‚²ē ”ē©¶ę‰€'),
(94946, 78733, 'no_lang_code', 'name', 'Noside'),
(94947, 78734, 'de', 'name', 'Deutsch Amerikanisches Institut Saarland'),
(94948, 78735, 'no_lang_code', 'name', 'Xian Mechanical & Electric Institute (China)'),
(94949, 78735, 'zh', 'name', 'č„æå®‰ęœŗē”µē ”ē©¶ę‰€'),
(94950, 78736, 'en', 'name', 'MarĆ­a Cristina Masaveu Peterson Foundation'),
(94951, 78736, 'es', 'name', 'Fundación María Cristina Masaveu Peterson'),
(94952, 78737, 'de', 'name', 'Malteser-Krankenhaus'),
(94953, 78738, 'en', 'name', 'Chongqing Public Health Medical Center'),
(94954, 78738, 'zh', 'name', 'é‡åŗ†åø‚å…¬å…±å«ē”ŸåŒ»ē–—ę•‘ę²»äø­åæƒ'),
(94955, 78739, 'no_lang_code', 'name', 'PVI System Technology (United States)'),
(94956, 78740, 'no_lang_code', 'name', 'Verus Research (United States)'),
(94957, 78741, 'en', 'name', 'State Scientific Institution "Institute of Educational Analytics"'),
(94958, 78741, 'uk', 'name', 'Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾ŃŠ²Ń–Ń‚Š½ŃŒŠ¾Ń— аналітики"'),
(94959, 78742, 'no_lang_code', 'name', 'Ocuphire Pharma (United States)'),
(94960, 78743, 'en', 'name', 'Africa Early Childhood Network'),
(94961, 78744, 'en', 'name', 'Shenzhen Bao''an District People''s Hospital'),
(94962, 78744, 'zh', 'name', 'ę·±åœ³åø‚å®å®‰åŒŗäŗŗę°‘åŒ»é™¢'),
(94963, 78745, 'no_lang_code', 'name', 'Tyvak (United States)'),
(94964, 78746, 'de', 'name', 'Institut Für Angewandte Kulturforschung'),
(94965, 78747, 'en', 'name', 'Dhanalakshmi Srinivasan Group of Institutions'),
(94966, 78748, 'de', 'name', 'Medizinische Akademie Erfurt'),
(94967, 78749, 'en', 'name', 'Cheyenne VA Medical Center'),
(94968, 78750, 'en', 'name', 'Wakayama Department of Agriculture, Forestry and Fisheries'),
(94969, 78750, 'ja', 'name', 'å’Œę­Œå±±ēœŒč¾²ęž—ę°“ē”£éƒØ'),
(94970, 78751, 'ja', 'name', 'å”å’ŒåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(94971, 78751, 'no_lang_code', 'name', 'Kyowa Chemical Industry (Japan)'),
(94972, 78752, 'en', 'name', 'Hengyang Academy of Agricultural Sciences'),
(94973, 78752, 'zh', 'name', 'č””é˜³åø‚å†œäøšē§‘å­¦é™¢'),
(94974, 78753, 'bn', 'name', 'শহীদ ą¦øą§‹ą¦¹ą¦°ą¦¾ą¦“ą¦Æą¦¼ą¦¾ą¦°ą§ą¦¦ą§€ মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(94975, 78753, 'en', 'name', 'Shaheed Suhrawardy Medical College'),
(94976, 78754, 'no_lang_code', 'name', 'Riparian Pharmaceuticals (United States)'),
(94977, 78755, 'en', 'name', 'Cleveland Clinic London'),
(94978, 78756, 'no_lang_code', 'name', 'Azotic Technologies (United Kingdom)'),
(94979, 78757, 'ja', 'name', 'ę—„ęœ¬ę°—č±”å”ä¼š'),
(94980, 78757, 'no_lang_code', 'name', 'Japan Weather Association (Japan)'),
(94981, 78758, 'no_lang_code', 'name', 'Powerchip (Taiwan)'),
(94982, 78758, 'zh', 'name', 'åŠ›ę™¶ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(94983, 78759, 'en', 'name', 'The First People''s Hospital of Wenling'),
(94984, 78759, 'zh', 'name', 'ęø©å²­åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(94985, 78760, 'no_lang_code', 'name', 'Mevion Medical Systems (United States)'),
(94986, 78761, 'no_lang_code', 'name', 'Codon Biosciences (India)'),
(94987, 78762, 'no_lang_code', 'name', 'Kendrick Laboratories (United States)'),
(94988, 78763, 'no_lang_code', 'name', 'Tribologix (United States)'),
(94989, 78764, 'no_lang_code', 'name', 'Voipac (Slovakia)'),
(94990, 78765, 'en', 'name', 'Centre for the Study of the Economies of Africa'),
(94991, 78766, 'en', 'name', 'China Rural Technology Development Center'),
(94992, 78766, 'zh', 'name', 'äø­å›½å†œę‘ęŠ€ęœÆå¼€å‘äø­åæƒ'),
(94993, 78767, 'en', 'name', 'Yamagata Prefectural Institute of Public Health'),
(94994, 78767, 'ja', 'name', 'å±±å½¢ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(94995, 78768, 'no_lang_code', 'name', 'SVXR (United States)'),
(94996, 78769, 'en', 'name', 'Andalusian Centre for Nanomedicine and Biotechnology'),
(94997, 78769, 'es', 'name', 'Centro Andaluz de Nanomedicina y BiotecnologĆ­a'),
(94998, 78770, 'en', 'name', 'Eucalyptus Research Center'),
(94999, 78770, 'zh', 'name', 'å›½å®¶ęž—äøšå’Œč‰åŽŸå±€ę”‰ę ‘ē ”ē©¶å¼€å‘äø­åæƒ'),
(95000, 78771, 'en', 'name', 'Toronto Zoo'),
(95001, 78772, 'no_lang_code', 'name', 'CRISPR Therapeutics (Switzerland)'),
(95002, 78773, 'no_lang_code', 'name', 'Gencor (China)'),
(95003, 78774, 'en', 'name', 'Shri A.M.M. Murugappa Chettiar Research Centre'),
(95004, 78775, 'en', 'name', 'National Institute for Communicable Disease Control and Prevention'),
(95005, 78775, 'zh', 'name', 'äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒä¼ ęŸ“ē—…é¢„é˜²ęŽ§åˆ¶ę‰€'),
(95006, 78776, 'no_lang_code', 'name', 'Response Technologies (United States)'),
(95007, 78777, 'no_lang_code', 'name', 'CTFusion (United States)'),
(95008, 78778, 'no_lang_code', 'name', 'Nihon Plast (Japan)'),
(95009, 78779, 'de', 'name', 'Holzbau Deutschland-Institut');
INSERT INTO `ror_settings` VALUES
(95010, 78780, 'no_lang_code', 'name', 'Starfire Systems (United States)'),
(95011, 78781, 'no_lang_code', 'name', 'Probility Media (United States)'),
(95012, 78782, 'ja', 'name', 'ę „ē ”åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(95013, 78782, 'no_lang_code', 'name', 'Eiken Chemical (Japan)'),
(95014, 78783, 'no_lang_code', 'name', 'Zts Inmart Atóm (Slovakia)'),
(95015, 78784, 'no_lang_code', 'name', 'Star Vision Technologies (United States)'),
(95016, 78785, 'no_lang_code', 'name', 'Schrack Technik (Slovakia)'),
(95017, 78786, 'en', 'name', 'National Center of Ocean Standards and Metrology'),
(95018, 78786, 'zh', 'name', 'å›½å®¶ęµ·ę“‹ę ‡å‡†č®”é‡äø­åæƒ'),
(95019, 78787, 'en', 'name', 'The Fusebox'),
(95020, 78788, 'no_lang_code', 'name', 'KACO New Energy (Germany)'),
(95021, 78789, 'no_lang_code', 'name', 'HLT (United States)'),
(95022, 78790, 'en', 'name', 'Gulf Coast Center for Evacuation and Transportation Resiliency'),
(95023, 78791, 'no_lang_code', 'name', 'Intergen (Turkey)'),
(95024, 78791, 'tr', 'name', 'İntergen Genetik Hastalıklar Tanı Merkezi'),
(95025, 78792, 'en', 'name', 'Academy of Emergency Medicine and Care'),
(95026, 78793, 'no_lang_code', 'name', 'Fels-Werke (Germany)'),
(95027, 78794, 'no_lang_code', 'name', 'ELCA (Switzerland)'),
(95028, 78795, 'no_lang_code', 'name', 'Transpower (New Zealand)'),
(95029, 78796, 'en', 'name', 'Belle Chasse Academy'),
(95030, 78797, 'en', 'name', 'Southern Plains Transportation Center'),
(95031, 78798, 'no_lang_code', 'name', 'Freund (Japan)'),
(95032, 78799, 'no_lang_code', 'name', 'Newport Sensors (United States)'),
(95033, 78800, 'en', 'name', 'Izumo Science Center'),
(95034, 78800, 'ja', 'name', '出雲科学館'),
(95035, 78801, 'no_lang_code', 'name', 'Roche (Bosnia-Herzegovina)'),
(95036, 78802, 'de', 'name', 'Gesteinslabor Dr. Eberhard Jahns'),
(95037, 78803, 'no_lang_code', 'name', 'Geistlich (Switzerland)'),
(95038, 78804, 'en', 'name', 'Shandong Maternal and Child Health Hospital'),
(95039, 78804, 'zh', 'name', 'å±±äøœēœå¦‡å¹¼äæå„é™¢'),
(95040, 78805, 'no_lang_code', 'name', 'Pandion Laboratories (United States)'),
(95041, 78806, 'en', 'name', 'National Centre for Clinical Research on Emerging Drugs'),
(95042, 78807, 'es', 'name', 'Hospital Zonal General De Agudos Descentralizado "Evita Pueblo"'),
(95043, 78808, 'no_lang_code', 'name', 'Runtime Verification (United States)'),
(95044, 78809, 'no_lang_code', 'name', 'SiO2 Materials Science (United States)'),
(95045, 78810, 'id', 'name', 'IAIN Palangka Raya'),
(95046, 78811, 'en', 'name', 'Open Book Publishers'),
(95047, 78812, 'no_lang_code', 'name', 'Southern Community Laboratories (New Zealand)'),
(95048, 78813, 'en', 'name', 'Missing Children Europe'),
(95049, 78814, 'no_lang_code', 'name', 'Xenetic Biosciences (United Kingdom)'),
(95050, 78815, 'en', 'name', 'Internet Matters'),
(95051, 78816, 'en', 'name', 'Institute of Medical Information - CAMS'),
(95052, 78817, 'no_lang_code', 'name', 'Olon (Italy)'),
(95053, 78818, 'no_lang_code', 'name', 'Kuehne + Nagel (United Kingdom)'),
(95054, 78819, 'no_lang_code', 'name', 'Katalyst Surgical (United States)'),
(95055, 78820, 'no_lang_code', 'name', 'CorMatrix (United States)'),
(95056, 78821, 'no_lang_code', 'name', 'Sippa Solutions (United States)'),
(95057, 78822, 'es', 'name', 'Clƭnica DƔvila'),
(95058, 78823, 'hi', 'name', 'Kendriya Vidyalaya Sangathan, ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ संगठन'),
(95059, 78824, 'no_lang_code', 'name', 'CoDa Therapeutics (United States)'),
(95060, 78825, 'no_lang_code', 'name', 'Pointwise (United States)'),
(95061, 78826, 'hi', 'name', 'ą¤…ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¤'),
(95062, 78826, 'no_lang_code', 'name', 'Ayurvet (India)'),
(95063, 78827, 'de', 'name', 'Energie-Anlagen Berlin'),
(95064, 78828, 'en', 'name', 'Catholic Legal Immigration Network'),
(95065, 78829, 'no_lang_code', 'name', 'Native American Technologies (United States)'),
(95066, 78830, 'no_lang_code', 'name', 'Advanced Technology Systems Company (United States)'),
(95067, 78831, 'no_lang_code', 'name', 'BFKW (United States)'),
(95068, 78832, 'en', 'name', 'Okayama University of Commerce Attached high School'),
(95069, 78832, 'ja', 'name', 'å²”å±±å•†ē§‘å¤§å­¦é™„å±žé«˜ē­‰å­¦ę ”'),
(95070, 78833, 'no_lang_code', 'name', 'New Hope Liuhe (China)'),
(95071, 78834, 'no_lang_code', 'name', 'PreventAGE Health Care (United States)'),
(95072, 78835, 'en', 'name', 'Chameli Devi Group of Institutions'),
(95073, 78836, 'de', 'name', 'Institut für Energie- und Umwelttechnik'),
(95074, 78837, 'no_lang_code', 'name', 'RetinalGeniX Technologies (United States)'),
(95075, 78838, 'no_lang_code', 'name', 'NGK Insulators (Germany)'),
(95076, 78839, 'no_lang_code', 'name', 'Perlegen (United States)'),
(95077, 78840, 'en', 'name', 'Chinese Neuroscience Society'),
(95078, 78840, 'zh', 'name', 'äø­å›½ē„žē»ē§‘å­¦å­¦ä¼š'),
(95079, 78841, 'en', 'name', 'Iridium Cancer Network'),
(95080, 78841, 'nl', 'name', 'Iridium Kankernetwerk'),
(95081, 78842, 'en', 'name', 'Center for Theoretical Biological Physics'),
(95082, 78843, 'no_lang_code', 'name', 'Minerals Technologies (United States)'),
(95083, 78844, 'no_lang_code', 'name', 'Biocartis (Switzerland)'),
(95084, 78845, 'no_lang_code', 'name', 'Glacigen Materials (United States)'),
(95085, 78846, 'en', 'name', 'Center for Seeds and Seedlings'),
(95086, 78846, 'ja', 'name', 'ēØ®č‹—ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(95087, 78847, 'en', 'name', 'Fraunhofer Centre for Applied Photonics'),
(95088, 78848, 'en', 'name', 'Centre for Aromatic Plants'),
(95089, 78849, 'en', 'name', 'Aichi Mizuho Junior College'),
(95090, 78849, 'ja', 'name', 'ę„›ēŸ„ćæćšć»ēŸ­ęœŸå¤§å­¦'),
(95091, 78850, 'en', 'name', 'Idemitsu Museum Of Arts'),
(95092, 78850, 'ja', 'name', 'å‡ŗå…‰ē¾Žč”“é¤Ø'),
(95093, 78851, 'no_lang_code', 'name', 'Hangzhou DAC Biotech (China)'),
(95094, 78851, 'zh', 'name', 'ę­å·žå¤šē¦§ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(95095, 78852, 'de', 'name', 'Margarethe Krupp-Stiftung'),
(95096, 78853, 'no_lang_code', 'name', 'Quantum Northwest (United States)'),
(95097, 78854, 'fr', 'name', 'HƓpital PrivƩ Guillaume de Varye'),
(95098, 78855, 'no_lang_code', 'name', 'Kindeva Drug Delivery (United States)'),
(95099, 78856, 'no_lang_code', 'name', 'Intego (Germany)'),
(95100, 78857, 'no_lang_code', 'name', 'Deargen (South Korea)'),
(95101, 78858, 'no_lang_code', 'name', 'QGLex (Canada)'),
(95102, 78859, 'no_lang_code', 'name', 'Real Prevention (United States)'),
(95103, 78860, 'no_lang_code', 'name', 'Geologischer Dienst Nordrhein-Westfalen (Germany)'),
(95104, 78861, 'en', 'name', 'Henan Bioengineering Technology Research Center'),
(95105, 78861, 'zh', 'name', 'ę²³å—ēœē”Ÿē‰©å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(95106, 78862, 'no_lang_code', 'name', 'Stress Engineering Services (United States)'),
(95107, 78863, 'de', 'name', 'Institut für Instandhaltung und Korrosionsschutztechnik'),
(95108, 78864, 'no_lang_code', 'name', 'Skyhaven Systems (United States)'),
(95109, 78865, 'en', 'name', 'Association for Rural Development'),
(95110, 78866, 'no_lang_code', 'name', 'IBExU Institut für Sicherheitstechnik (Germany)'),
(95111, 78867, 'no_lang_code', 'name', 'Vitronic (Germany)'),
(95112, 78868, 'no_lang_code', 'name', 'Mycovia Pharmaceuticals (United States)'),
(95113, 78869, 'en', 'name', 'Independent Administrative Agency National Museum of Art'),
(95114, 78869, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē¾Žč”“é¤Ø'),
(95115, 78870, 'no_lang_code', 'name', 'DJO Global (United States)'),
(95116, 78871, 'en', 'name', 'Tokyo Metropolitan Foundation for History and Culture'),
(95117, 78871, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę±äŗ¬éƒ½ę­“å²ę–‡åŒ–č²”å›£'),
(95118, 78872, 'en', 'name', 'Einstein Medical Center Montgomery'),
(95119, 78873, 'en', 'name', 'Nordic e-Infrastructure Collaboration'),
(95120, 78874, 'no_lang_code', 'name', 'North Star Scientific (United States)'),
(95121, 78875, 'ja', 'name', 'å—ć•ć¤ć¾åø‚ åŠ äø–ē”°éƒ·åœŸč³‡ę–™é¤Ø'),
(95122, 78875, 'no_lang_code', 'name', 'Kaseda Folklore Museum'),
(95123, 78876, 'en', 'name', 'Zambia National Public Health Institute'),
(95124, 78877, 'en', 'name', 'South Subtropical Crops Research Institute'),
(95125, 78877, 'zh', 'name', 'å¹æäøœēœę¹›ę±Ÿåø‚éŗ»ē« åŒŗę¹–ē§€č·Æäø€å·'),
(95126, 78878, 'en', 'name', 'Experimental Center of Subtropical Forestry'),
(95127, 78879, 'en', 'name', 'University of Science and Technology of Mazandaran'),
(95128, 78879, 'fa', 'name', 'دانؓگاه علم و ŁŁ†Ų§ŁˆŲ±ŪŒ مازندران'),
(95129, 78880, 'no_lang_code', 'name', 'Takeda (Australia)'),
(95130, 78881, 'no_lang_code', 'name', 'Hyland Software (United States)'),
(95131, 78882, 'en', 'name', 'Fraunhofer USA Center for Laser Applications'),
(95132, 78883, 'de', 'name', 'Steinbeis Forschungszentrum Technologie-Management Nordost'),
(95133, 78884, 'en', 'name', 'Norwegian Biodiversity Information Centre'),
(95134, 78884, 'no', 'name', 'Artsdatabanken'),
(95135, 78885, 'no_lang_code', 'name', 'FormFactor (Germany)'),
(95136, 78886, 'de', 'name', 'RCI Banque Niederlassung Deutschland'),
(95137, 78887, 'en', 'name', 'Loudi Central Hospital'),
(95138, 78887, 'zh', 'name', 'åØ„åŗ•åø‚äø­åæƒåŒ»é™¢'),
(95139, 78888, 'de', 'name', 'Verkehrsinstitut München'),
(95140, 78889, 'no_lang_code', 'name', 'Optical Coating Solutions (United States)'),
(95141, 78890, 'de', 'name', 'Verband der Automobilindustrie'),
(95142, 78890, 'no_lang_code', 'name', 'German Association of the Automotive Industry (Germany)'),
(95143, 78891, 'en', 'name', 'Center for Jewish–Christian Understanding and Cooperation'),
(95144, 78891, 'he', 'name', 'Center for Judeo-Christian Understanding and Cooperation'),
(95145, 78892, 'en', 'name', 'State Library of North Carolina'),
(95146, 78893, 'no_lang_code', 'name', 'Grintech (Germany)'),
(95147, 78894, 'no_lang_code', 'name', 'Sterix (Philippines)'),
(95148, 78895, 'it', 'name', 'Ospedale D. Cotugno'),
(95149, 78896, 'en', 'name', 'Hubei Provincial Museum'),
(95150, 78896, 'zh', 'name', 'ę¹–åŒ—ēœåšē‰©é¦†'),
(95151, 78897, 'no_lang_code', 'name', 'Hallstar Beauty (United States)'),
(95152, 78898, 'en', 'name', 'Coalition Against Childhood Cancer'),
(95153, 78899, 'no_lang_code', 'name', 'Sibatel Communications (United States)'),
(95154, 78900, 'en', 'name', 'Sichuan Economic Management Cadre College'),
(95155, 78900, 'zh', 'name', 'å››å·ēœē»ęµŽē®”ē†å¹²éƒØå­¦é™¢'),
(95156, 78901, 'en', 'name', 'Sphere Institute'),
(95157, 78902, 'no_lang_code', 'name', 'Nrgtek (United States)'),
(95158, 78903, 'en', 'name', 'The Canadian Association of Professional Academic Librarians'),
(95159, 78903, 'fr', 'name', 'L''Association Canadienne des BibliothƩcaires en Enseignement SupƩrieur'),
(95160, 78904, 'no_lang_code', 'name', 'Spectral Platforms (United States)'),
(95161, 78905, 'no_lang_code', 'name', 'Zabal Menuiseries (France)'),
(95162, 78906, 'no_lang_code', 'name', 'Speak Agent (United States)'),
(95163, 78907, 'no_lang_code', 'name', 'Heine Optotechnik (Germany)'),
(95164, 78908, 'no_lang_code', 'name', 'Pronghorn Technologies (United States)'),
(95165, 78909, 'no_lang_code', 'name', 'Thurmelec (France)'),
(95166, 78910, 'no_lang_code', 'name', 'Made For Retail (United States)'),
(95167, 78911, 'en', 'name', 'Asphalt Institute'),
(95168, 78912, 'no_lang_code', 'name', 'Heidenhain (United Kingdom)'),
(95169, 78913, 'en', 'name', 'Jiujiang Maternal and Child Care Centres'),
(95170, 78913, 'zh', 'name', 'ä¹ę±Ÿåø‚å¦‡å¹¼äæå„é™¢'),
(95171, 78914, 'no_lang_code', 'name', 'Spatial Cognition (United States)'),
(95172, 78915, 'no_lang_code', 'name', 'Kulicke & Soffa (Singapore)'),
(95173, 78916, 'en', 'name', 'NHS Wales Shared Services Partnership'),
(95174, 78917, 'en', 'name', 'S.I. Vavilov Institute for the History of Science and Technology'),
(95175, 78917, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории ŠµŃŃ‚ŠµŃŃ‚Š²Š¾Š·Š½Š°Š½ŠøŃ Šø техники имени Š”. И. Вавилова Š ŠŠ'),
(95176, 78918, 'no_lang_code', 'name', 'SAACKE (Germany)'),
(95177, 78919, 'en', 'name', 'Japan Society of English for Research'),
(95178, 78919, 'ja', 'name', 'ē ”ē©¶č€…ć®ćŸć‚ć®č‹±čŖž'),
(95179, 78920, 'en', 'name', 'China National Democratic Construction Association'),
(95180, 78920, 'zh', 'name', 'äø­å›½ę°‘äø»å»ŗå›½ä¼š'),
(95181, 78921, 'en', 'name', 'Yukon Department of Environment'),
(95182, 78922, 'en', 'name', 'ECC Kokusai College of Foreign Languages'),
(95183, 78922, 'ja', 'name', 'ECCå›½éš›å¤–čŖžå°‚é–€å­¦ę ”'),
(95184, 78923, 'en', 'name', 'Zhe Jiang Institute of Geology and Mineral Resource'),
(95185, 78923, 'zh', 'name', 'ęµ™ę±Ÿēœåœ°č“ØēŸæäŗ§ē ”ē©¶ę‰€'),
(95186, 78924, 'en', 'name', 'Centre for Advanced Bioenergy Research'),
(95187, 78925, 'es', 'name', 'Fundación Centro de Estudios Infectológicos'),
(95188, 78926, 'no_lang_code', 'name', 'Roccor (United States)'),
(95189, 78927, 'no_lang_code', 'name', 'Adelphi Consult (Germany)'),
(95190, 78928, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ć‚«'),
(95191, 78928, 'no_lang_code', 'name', 'Arca (Japan)'),
(95192, 78929, 'en', 'name', 'New York State Nurses Association'),
(95193, 78930, 'en', 'name', 'NPO Net work for Shizuoka Prefecture Museum of Natural History'),
(95194, 78930, 'ja', 'name', 'é™å²”ēœŒč‡Ŗē„¶å²åšē‰©é¤ØćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(95195, 78931, 'en', 'name', 'Nigerian Institute of International Affairs'),
(95196, 78932, 'en', 'name', 'State Forest Enterprise'),
(95197, 78932, 'lt', 'name', 'Valstybinių MiÅ”kų Urėdija'),
(95198, 78933, 'en', 'name', 'Prashanti Cancer Care Mission'),
(95199, 78934, 'en', 'name', 'CAF – Development Bank of Latin America'),
(95200, 78934, 'es', 'name', 'Corporacion Andina de Fomento– Banco de Desarrollo de AmĆ©rica Latina'),
(95201, 78935, 'no_lang_code', 'name', 'Medlab Central (New Zealand)'),
(95202, 78936, 'no_lang_code', 'name', 'Institut für Nachhaltige, Innovative und Angewandte Systemtechnik (Germany)'),
(95203, 78937, 'no_lang_code', 'name', 'Diagnostic Photonics (United States)'),
(95204, 78938, 'no_lang_code', 'name', 'Spirogen (United Kingdom)'),
(95205, 78939, 'en', 'name', 'Huzhou Women and Children''s Hospital'),
(95206, 78939, 'zh', 'name', 'ę¹–å·žåø‚å¦‡å¹¼äæå„é™¢'),
(95207, 78940, 'en', 'name', 'Charing Cross Cat Clinic'),
(95208, 78941, 'no_lang_code', 'name', 'Nice Solar Energy (Germany)'),
(95209, 78942, 'de', 'name', 'Deutsches Zentralinstitut für soziale Fragen'),
(95210, 78942, 'en', 'name', 'German Central Institute for Social Issues'),
(95211, 78943, 'en', 'name', 'The Conservation Fund'),
(95212, 78944, 'no_lang_code', 'name', 'LPE (Italy)'),
(95213, 78945, 'en', 'name', 'Assistance Dogs of the West'),
(95214, 78946, 'no_lang_code', 'name', 'Soft Gel Technologies (United States)'),
(95215, 78947, 'no_lang_code', 'name', 'BioConsult SH (Germany)'),
(95216, 78948, 'no_lang_code', 'name', 'Sansure Biotech (China)'),
(95217, 78948, 'zh', 'name', 'åœ£ę¹˜ē”Ÿē‰©'),
(95218, 78949, 'no_lang_code', 'name', 'BioSolutions Halle (Germany)'),
(95219, 78950, 'no_lang_code', 'name', 'n&k Technology (United States)'),
(95220, 78951, 'no_lang_code', 'name', 'Eagle Pharmaceuticals (United States)'),
(95221, 78952, 'en', 'name', 'Naval Materials Research Laboratory'),
(95222, 78953, 'no_lang_code', 'name', 'Cardno (United Kingdom)'),
(95223, 78954, 'en', 'name', 'Young Africa FOUNDATION'),
(95224, 78955, 'en', 'name', 'Colombian Institute of Anthropology and History'),
(95225, 78955, 'es', 'name', 'Instituto Colombiano de AntropologĆ­a e Historia'),
(95226, 78956, 'no_lang_code', 'name', 'BearingPoint (United Kingdom)'),
(95227, 78957, 'no_lang_code', 'name', 'Glidewell (United States)'),
(95228, 78958, 'no_lang_code', 'name', 'Ampio Pharmaceuticals (United States)'),
(95229, 78959, 'en', 'name', 'China Electrotechnical Society'),
(95230, 78959, 'zh', 'name', 'äø­å›½ē”µå·„ęŠ€ęœÆå­¦ä¼š'),
(95231, 78960, 'no_lang_code', 'name', 'Takeda (Austria)'),
(95232, 78961, 'no_lang_code', 'name', 'Glykos (Finland)'),
(95233, 78962, 'es', 'name', 'Hospital Marina Baixa'),
(95234, 78963, 'en', 'name', 'Unilever Foods Innovation Centre'),
(95235, 78964, 'no_lang_code', 'name', 'Hochtemperatur-Kernkraftwerk (Germany)'),
(95236, 78965, 'no_lang_code', 'name', 'Third Pole Therapeutics (United States)'),
(95237, 78966, 'en', 'name', 'Clinical Research Associates'),
(95238, 78967, 'no_lang_code', 'name', 'Arioso Systems (Germany)'),
(95239, 78968, 'en', 'name', 'R3 Animal'),
(95240, 78969, 'de', 'name', 'Deutscher Gewerkschaftsbund'),
(95241, 78969, 'en', 'name', 'German Trade Union Confederation'),
(95242, 78970, 'en', 'name', 'Hershel Woody Williams VA Medical Center'),
(95243, 78971, 'no_lang_code', 'name', 'Zynga (United Kingdom)'),
(95244, 78972, 'no_lang_code', 'name', 'Renaissance Services (United States)'),
(95245, 78973, 'no_lang_code', 'name', 'ViaDerm (United States)'),
(95246, 78974, 'no_lang_code', 'name', 'Enveda Therapeutics (United States)'),
(95247, 78975, 'en', 'name', 'African Centre for the Constructive Resolution of Disputes'),
(95248, 78976, 'en', 'name', 'Medical Governance Research Institute'),
(95249, 78976, 'ja', 'name', 'åŒ»ē™‚ć‚¬ćƒćƒŠćƒ³ć‚¹ē ”ē©¶ę‰€'),
(95250, 78977, 'en', 'name', 'Hainan Agricultural School'),
(95251, 78977, 'zh', 'name', 'ęµ·å—ēœå†œäøšå­¦ę ”'),
(95252, 78978, 'no_lang_code', 'name', 'Lubris BioPharma (United States)'),
(95253, 78979, 'no_lang_code', 'name', 'Stadtwerke Münster (Germany)'),
(95254, 78980, 'no_lang_code', 'name', 'Takeda (Sweden)'),
(95255, 78981, 'de', 'name', 'Reha-Zentrum Bad Frankenhausen'),
(95256, 78982, 'no_lang_code', 'name', 'Kantar (Germany)'),
(95257, 78983, 'ca', 'name', 'Consorci Sanitari Garraf'),
(95258, 78984, 'de', 'name', 'Dominikanerkloster Prenzlau'),
(95259, 78985, 'en', 'name', 'The NSF AI Institute for Artificial Intelligence and Fundamental Interactions'),
(95260, 78986, 'en', 'name', 'Department Of Agriculture and Rural Affairs Of Jiangxi Province'),
(95261, 78986, 'zh', 'name', 'ę±Ÿč„æēœå†œäøšåŽ…'),
(95262, 78987, 'en', 'name', 'Natural History Museum Brabant'),
(95263, 78987, 'nl', 'name', 'Natuurmuseum Brabant'),
(95264, 78988, 'en', 'name', 'Shanghai Institute of Geological Survey'),
(95265, 78988, 'zh', 'name', 'äøŠęµ·åø‚åœ°č“Øč°ƒęŸ„ē ”ē©¶é™¢'),
(95266, 78989, 'en', 'name', 'Aravali Foundation for Education'),
(95267, 78990, 'no_lang_code', 'name', 'Saurer (Switzerland)'),
(95268, 78991, 'en', 'name', 'Wilmington VA Medical Center'),
(95269, 78992, 'es', 'name', 'BiblioMadSalud'),
(95270, 78993, 'no_lang_code', 'name', 'Nuclear Plasma Laboratories (United States)'),
(95271, 78994, 'en', 'name', 'Terra Foundation for American Art'),
(95272, 78995, 'no_lang_code', 'name', 'Innotec (United Kingdom)'),
(95273, 78996, 'en', 'name', 'Saga Prefectural Police'),
(95274, 78996, 'ja', 'name', 'ä½č³€ēœŒč­¦åÆŸęœ¬éƒØ'),
(95275, 78997, 'en', 'name', 'VA Northern Indiana Health Care System'),
(95276, 78998, 'en', 'name', 'Royal Commission Medical Center'),
(95277, 78999, 'en', 'name', 'Automotive Service Excellence'),
(95278, 79000, 'no_lang_code', 'name', 'Sylex (Slovakia)'),
(95279, 79001, 'en', 'name', 'Shiun Junior High School'),
(95280, 79001, 'ja', 'name', 'é«˜ę¾åø‚ē«‹ē“«é›²äø­'),
(95281, 79002, 'en', 'name', 'Defence Electronics Application Laboratory'),
(95282, 79003, 'en', 'name', 'Agricultural Research Service - Northeast Area'),
(95283, 79004, 'no_lang_code', 'name', 'Omniphase Defense Systems (United States)'),
(95284, 79005, 'en', 'name', 'International Baccalaureate'),
(95285, 79006, 'en', 'name', 'Central Bank of the Russian Federation'),
(95286, 79006, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ банк Российской ФеГерации'),
(95287, 79007, 'en', 'name', 'Haffkine Institute'),
(95288, 79007, 'hi', 'name', 'ą¤¹ą¤«ą¤¼ą¤•ą„‡ą¤Ø ą¤Ŗą„ą¤°ą¤¶ą¤æą¤•ą„ą¤·ą¤£, ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą¤°ą„€ą¤•ą„ą¤·ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(95289, 79008, 'no_lang_code', 'name', 'Ultra Safe Nuclear Corporation (United States)'),
(95290, 79009, 'no_lang_code', 'name', 'Vidatak (United States)'),
(95291, 79010, 'no_lang_code', 'name', 'CRG Services (United States)'),
(95292, 79011, 'no_lang_code', 'name', 'Visus (United States)'),
(95293, 79012, 'no_lang_code', 'name', 'Groupe LƩpine (France)'),
(95294, 79013, 'en', 'name', 'Slovak Renewable Energy Agency'),
(95295, 79014, 'no_lang_code', 'name', 'Breezing (United States)'),
(95296, 79015, 'de', 'name', 'Ɩsterreichische Physikalische Gesellschaft'),
(95297, 79015, 'en', 'name', 'Austrian Physical Society'),
(95298, 79016, 'no_lang_code', 'name', 'Silexon AI Technology (China)'),
(95299, 79017, 'no_lang_code', 'name', 'SemQuest (United States)'),
(95300, 79018, 'de', 'name', 'Institut für Regionale Innovation und Sozialforschung'),
(95301, 79019, 'no_lang_code', 'name', 'Swift Engineering (United States)'),
(95302, 79020, 'no_lang_code', 'name', 'Marcus (United States)'),
(95303, 79021, 'en', 'name', 'Sullivan Nicolaides Pathology'),
(95304, 79022, 'no_lang_code', 'name', 'Vigor (United States)'),
(95305, 79023, 'no_lang_code', 'name', 'Casma Therapeutics (United States)'),
(95306, 79024, 'en', 'name', 'Beijing Yingwu Conference Center'),
(95307, 79024, 'zh', 'name', 'åŒ—äŗ¬åŗ”ē‰©ä¼šč®®äø­åæƒ'),
(95308, 79025, 'en', 'name', 'Horn Economic and Social Policy Institute'),
(95309, 79026, 'en', 'name', 'Space Engineering University'),
(95310, 79026, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęˆ˜ē•„ę”Æę“éƒØé˜ŸčˆŖå¤©å·„ēØ‹å¤§å­¦'),
(95311, 79027, 'no_lang_code', 'name', 'Valent BioSciences (United States)'),
(95312, 79028, 'no_lang_code', 'name', 'Thornton Tomasetti (United States)'),
(95313, 79029, 'no_lang_code', 'name', 'Fast Biomedical (United States)'),
(95314, 79030, 'no_lang_code', 'name', 'Yunnan Yingmao Biotechnology (China)'),
(95315, 79030, 'zh', 'name', 'äŗ‘å—č‹±čŒ‚ē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(95316, 79031, 'en', 'name', 'Caspr Biotech'),
(95317, 79032, 'en', 'name', 'MODUL University Dubai'),
(95318, 79033, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ų§Ų²ŁŠ'),
(95319, 79033, 'en', 'name', 'Al-Razi University'),
(95320, 79034, 'en', 'name', 'K9 Partners for Patriots'),
(95321, 79035, 'no_lang_code', 'name', 'UltraCell (United States)'),
(95322, 79036, 'en', 'name', 'Jewish Community Center of Greater Buffalo'),
(95323, 79037, 'en', 'name', 'American Finance Association'),
(95324, 79038, 'no_lang_code', 'name', 'Berger Paints (India)'),
(95325, 79039, 'no_lang_code', 'name', 'QT Medical (United States)'),
(95326, 79040, 'en', 'name', 'Forestry, Environmental and Agri-Food Units Command'),
(95327, 79040, 'it', 'name', 'Organizzazione per la Tutela Forestale, Ambientale e Agroalimentare'),
(95328, 79041, 'en', 'name', 'Sa''adatu Rimi College of Education'),
(95329, 79042, 'ja', 'name', 'ę±äŗ¬éƒ½äæå„åŒ»ē™‚å…¬ē¤¾ č±Šå³¶ē—…é™¢'),
(95330, 79042, 'no_lang_code', 'name', 'Toshima Hospital'),
(95331, 79043, 'no_lang_code', 'name', 'Breg (United States)'),
(95332, 79044, 'en', 'name', 'Osaka Prefecture University College of Technology'),
(95333, 79044, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹å¤§å­¦å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(95334, 79045, 'en', 'name', 'James Paget University Hospitals NHS Foundation Trust'),
(95335, 79046, 'no_lang_code', 'name', 'Sonivate Medical (United States)'),
(95336, 79047, 'de', 'name', 'Kreditanstalt für Wiederaufbau'),
(95337, 79048, 'pt', 'name', 'Instituto de Conservação de Animais Silvestres'),
(95338, 79049, 'en', 'name', 'Dingxi City People''s Hospital'),
(95339, 79049, 'zh', 'name', 'å®šč„æåø‚äŗŗę°‘åŒ»é™¢'),
(95340, 79050, 'en', 'name', 'International Council for Open and Distance Education'),
(95341, 79051, 'no_lang_code', 'name', 'Solarzentrum Stuttgart (Germany)'),
(95342, 79052, 'en', 'name', 'The Historical Museum of Jomon Village Oku-Matsushima'),
(95343, 79052, 'ja', 'name', 'å„„ę¾å³¶ēø„ę–‡ę‘ę­“å²č³‡ę–™é¤Ø'),
(95344, 79053, 'no_lang_code', 'name', 'Troxler (United States)'),
(95345, 79054, 'no_lang_code', 'name', 'Tuya (China)'),
(95346, 79054, 'zh', 'name', 'ę¶‚éø¦'),
(95347, 79055, 'en', 'name', 'Global Flyway Network'),
(95348, 79056, 'no_lang_code', 'name', 'Kalusugan + Kalakasan'),
(95349, 79057, 'hi', 'name', 'Kanya Maha Vidyalaya'),
(95350, 79057, 'pa', 'name', 'ਕੰਨਿਆ ਮਹਾਂ ਵਿਦਿਆਲਾ'),
(95351, 79058, 'no_lang_code', 'name', 'Apollo Proton Cancer Centre'),
(95352, 79059, 'it', 'name', 'Scuola Superiore Meridionale'),
(95353, 79060, 'en', 'name', 'Dangerous Speech Project'),
(95354, 79061, 'de', 'name', 'Kybernetische Organisation Planung Führung'),
(95355, 79062, 'de', 'name', 'Leibniz-Institut für Lebensmittel-Systembiologie an der Technischen Universität München'),
(95356, 79062, 'en', 'name', 'Leibniz-Institute for Food Systems Biology at the Technical University of Munich'),
(95357, 79063, 'no_lang_code', 'name', 'Reihoo (France)'),
(95358, 79064, 'de', 'name', 'Klimaschutz- und Energieagentur Baden-Württemberg'),
(95359, 79065, 'en', 'name', 'Staffin Dinosaur Museum'),
(95360, 79066, 'no_lang_code', 'name', 'Schmalz (Germany)'),
(95361, 79067, 'no_lang_code', 'name', 'NursIT Institute (Germany)'),
(95362, 79068, 'no_lang_code', 'name', 'Hesco (United States)'),
(95363, 79069, 'en', 'name', 'National Centre for Radio Astrophysics'),
(95364, 79069, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą„‡ą¤”ą¤æą¤Æą„‹ ą¤–ą¤—ą„‹ą¤² ą¤­ą„Œą¤¤ą¤æą¤•ą„€ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(95365, 79070, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŲÆŲ± بالقاهرة'),
(95366, 79070, 'en', 'name', 'Badr University in Cairo'),
(95367, 79071, 'no_lang_code', 'name', 'Tianshui Huatian Technology (China)'),
(95368, 79071, 'zh', 'name', 'åŽå¤©ē§‘ęŠ€'),
(95369, 79072, 'en', 'name', 'Uttar Pradesh Pandit Deen Dayal Upadhyaya Pashu Chikitsa Vigyan Vishwavidyalaya Evam Go-Anusandhan Sansthan'),
(95370, 79073, 'no_lang_code', 'name', 'Raytum Photonics (United States)'),
(95371, 79074, 'en', 'name', 'The Osaka YWCA'),
(95372, 79074, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗļ¼¹ļ¼·ļ¼£ļ¼”'),
(95373, 79075, 'en', 'name', 'Child Rights Foundation'),
(95374, 79075, 'hu', 'name', 'Hintalovon Alapitvany'),
(95375, 79076, 'no_lang_code', 'name', 'Information Visualization and Innovative Research'),
(95376, 79077, 'no_lang_code', 'name', 'nChain (United Kingdom)'),
(95377, 79078, 'no_lang_code', 'name', 'Natural Process Design (United States)'),
(95378, 79079, 'no_lang_code', 'name', 'Senseeker Engineering (United States)'),
(95379, 79080, 'en', 'name', 'National University of Medical Sciences'),
(95380, 79081, 'no_lang_code', 'name', 'TargaGenix (United States)'),
(95381, 79082, 'de', 'name', 'Institut für Arbeitsmarktforschung und Jugendberufshilfe'),
(95382, 79083, 'en', 'name', 'Guangdong Provincial Center for Disease Control and Prevention'),
(95383, 79083, 'zh', 'name', 'å¹æäøœēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(95384, 79084, 'no_lang_code', 'name', 'Kite (United States)'),
(95385, 79085, 'fr', 'name', 'Ɖcole SupĆ©rieure Polytechnique d''Antsiranana'),
(95386, 79086, 'en', 'name', 'Başkent University Alanya Hospital'),
(95387, 79086, 'tr', 'name', 'Başkent Üniversitesi Alanya Hastanesi'),
(95388, 79087, 'no_lang_code', 'name', 'Deutsche Bank (United Kingdom)'),
(95389, 79088, 'en', 'name', 'Biodiversity Heritage Library'),
(95390, 79089, 'en', 'name', 'Somali Institute for Development Research and Analysis'),
(95391, 79090, 'no_lang_code', 'name', 'Lucht Probst Associates (Germany)'),
(95392, 79091, 'de', 'name', 'Internationale Akademie Berlin'),
(95393, 79092, 'de', 'name', 'Deutsch-französische Büro für die Energiewende'),
(95394, 79093, 'en', 'name', 'Leverhulme Centre for Climate Change Mitigation'),
(95395, 79094, 'en', 'name', 'Saveh University of Medical Sciences'),
(95396, 79094, 'fa', 'name', 'دانؓکده Ų¹Ł„ŁˆŁ… پزؓکی Ų³Ų§ŁˆŁ‡'),
(95397, 79095, 'no_lang_code', 'name', 'Wilmar International (Singapore)'),
(95398, 79096, 'no_lang_code', 'name', 'Chromocell (United States)'),
(95399, 79097, 'no_lang_code', 'name', 'CPH Innovations (United Kingdom)'),
(95400, 79098, 'no_lang_code', 'name', 'TraskBritt (United States)'),
(95401, 79099, 'no_lang_code', 'name', 'Filtertek (United States)'),
(95402, 79100, 'mr', 'name', 'ą¤«ą„‹ą¤°ą„ą¤Ÿą¤æą¤ø C-ą¤”ą„‰ą¤• ą¤¹ą„‰ą¤øą„ą¤Ŗą¤æą¤Ÿą¤²'),
(95403, 79100, 'no_lang_code', 'name', 'Fortis C-DOC Hospital'),
(95404, 79101, 'no_lang_code', 'name', 'VNG (Germany)'),
(95405, 79102, 'no_lang_code', 'name', 'Yuyao Joywee Electrics (China)'),
(95406, 79102, 'zh', 'name', 'ā€ä½™å§šåø‚éŖ„åØē”µå™Ø'),
(95407, 79103, 'en', 'name', 'Malatya Fahri Kayahan Health Care Center'),
(95408, 79103, 'tr', 'name', 'FAHRİ KAYAHAN AİLE SAĞLIĞI MERKEZİ'),
(95409, 79104, 'no_lang_code', 'name', 'NP Medical (United States)'),
(95410, 79105, 'de', 'name', 'Institut für Kälte-, Klima- und Energietechnik'),
(95411, 79106, 'no_lang_code', 'name', 'DongKook Pharmaceutical (South Korea)'),
(95412, 79107, 'en', 'name', 'China Academy of Management Sciences'),
(95413, 79107, 'zh', 'name', '中国箔理科学研究院'),
(95414, 79108, 'en', 'name', 'Lester Smith Medical Research Institute'),
(95415, 79109, 'en', 'name', 'Oyster Hospital'),
(95416, 79110, 'en', 'name', 'Jiangsu Province Institute of Quality & Safety Engineering'),
(95417, 79110, 'zh', 'name', 'ę±Ÿč‹ēœč“Øé‡å®‰å…Øå·„ēØ‹ē ”ē©¶ę‰€'),
(95418, 79111, 'en', 'name', 'Australian Institue of Men''s Health and Studies'),
(95419, 79112, 'no_lang_code', 'name', 'Plasmore (Italy)'),
(95420, 79113, 'en', 'name', 'Desert Forestry Experimental Center'),
(95421, 79113, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ę²™ę¼ ęž—äøšå®žéŖŒäø­åæƒ'),
(95422, 79114, 'en', 'name', 'Islamic Azad University, Ahvaz Branch'),
(95423, 79114, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ł‡ŁˆŲ§Ų²'),
(95424, 79115, 'no_lang_code', 'name', 'Kobayashi Pharmaceutical (Japan)'),
(95425, 79116, 'no_lang_code', 'name', 'Sigmatech (United States)'),
(95426, 79117, 'no_lang_code', 'name', 'Luxottica (Italy)'),
(95427, 79118, 'no_lang_code', 'name', 'Sensorion (France)'),
(95428, 79119, 'en', 'name', 'Criminal Investigation Police University of China'),
(95429, 79119, 'zh', 'name', 'åˆ‘äŗ‹č°ƒęŸ„äø­å›½č­¦åÆŸå¤§å­¦'),
(95430, 79120, 'en', 'name', 'Shared Services Canada'),
(95431, 79120, 'fr', 'name', 'Services PartagƩs Canada'),
(95432, 79121, 'en', 'name', 'Beijing Glass Research Institute'),
(95433, 79121, 'zh', 'name', 'åŒ—äŗ¬ēŽ»ē’ƒē ”ē©¶é™¢'),
(95434, 79122, 'no_lang_code', 'name', 'Quantix (United States)'),
(95435, 79123, 'en', 'name', 'University of Southampton Malaysia'),
(95436, 79124, 'en', 'name', 'Islamic Azad University, Shoushtar Branch'),
(95437, 79124, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓوؓتر'),
(95438, 79125, 'en', 'name', 'Croatian Hydrographic Institute'),
(95439, 79125, 'hr', 'name', 'Hrvatski Hidrografski Institut'),
(95440, 79126, 'en', 'name', 'Levy Economics Institute of Bard College'),
(95441, 79127, 'no_lang_code', 'name', 'Ferno (United Kingdom)'),
(95442, 79128, 'no_lang_code', 'name', 'VerdaSee Solutions (United States)'),
(95443, 79129, 'en', 'name', 'University Hospitals of Derby and Burton NHS Foundation Trust'),
(95444, 79130, 'de', 'name', 'Zentrum für Erinnerungskultur und Geschichtsforschung'),
(95445, 79131, 'no_lang_code', 'name', 'IBM (Spain)'),
(95446, 79132, 'en', 'name', 'Proof & Experimental Establishment'),
(95447, 79132, 'hi', 'name', 'ą¤Ŗą„ą¤°ą„‚ą¤« ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¾ą¤¤ą„ą¤®ą¤• संगठन'),
(95448, 79133, 'en', 'name', 'TrinityCare Hospice'),
(95449, 79134, 'no_lang_code', 'name', 'Strategic Analysis Enterprises (United States)'),
(95450, 79135, 'no_lang_code', 'name', 'Protekum (Germany)'),
(95451, 79136, 'no_lang_code', 'name', 'Berlin Heart (Germany)'),
(95452, 79137, 'no_lang_code', 'name', 'Mangar Health (United Kingdom)'),
(95453, 79138, 'no_lang_code', 'name', 'Bentley Systems (United Kingdom)'),
(95454, 79139, 'de', 'name', 'Deutsches Institut für Katastrophenmedizin'),
(95455, 79139, 'en', 'name', 'German Institute for Disaster Medicine'),
(95456, 79140, 'no_lang_code', 'name', 'Marvell (United States)'),
(95457, 79141, 'no_lang_code', 'name', 'Vascular Flow Technologies (United Kingdom)'),
(95458, 79142, 'no_lang_code', 'name', 'Tris Pharma (United States)'),
(95459, 79143, 'es', 'name', 'Instituto Universitario de Ciencias MƩdicas y Humanƭsticas de Nayarit'),
(95460, 79144, 'no_lang_code', 'name', 'SIM*VIVO (United States)'),
(95461, 79145, 'no_lang_code', 'name', 'Otherlab'),
(95462, 79146, 'no_lang_code', 'name', 'OptiScan (United States)'),
(95463, 79147, 'de', 'name', 'Bundesinstitut für Bevölkerungsforschung'),
(95464, 79147, 'en', 'name', 'Federal Institute for Population Research'),
(95465, 79148, 'no_lang_code', 'name', 'Redx Pharma (United Kingdom)'),
(95466, 79149, 'no_lang_code', 'name', 'Crystal Pharmatech (United States)'),
(95467, 79150, 'no_lang_code', 'name', 'Optikron (Germany)'),
(95468, 79151, 'en', 'name', 'Hokkaido Environment Foundation'),
(95469, 79151, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“ē’°å¢ƒč²”å›£'),
(95470, 79152, 'no_lang_code', 'name', 'Holota Optics (Germany)'),
(95471, 79153, 'de', 'name', 'Gesellschaft für Pädagogik und Information'),
(95472, 79154, 'en', 'name', 'University Transportation Center for Mobility'),
(95473, 79155, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Finland)'),
(95474, 79156, 'en', 'name', 'National Innovation Foundation'),
(95475, 79156, 'gu', 'name', 'નેશનલ ઇનોવેશન ąŖ«ąŖ¾ąŖ‰ąŖØą«ąŖ”ą«‡ąŖ¶ąŖØ ભારત'),
(95476, 79157, 'ja', 'name', 'ę–°ę—„ęœ¬ē†åŒ–ę Ŗå¼ä¼šē¤¾'),
(95477, 79157, 'no_lang_code', 'name', 'New Japan Chemical (Japan)'),
(95478, 79158, 'en', 'name', 'Hamamatsu Japan Language College'),
(95479, 79159, 'en', 'name', 'Hainan Provincial Hospital of Traditional Chinese Medicine'),
(95480, 79159, 'zh', 'name', 'ęµ·å—ēœäø­åŒ»é™¢'),
(95481, 79160, 'en', 'name', 'Center for Genomic Science'),
(95482, 79161, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ć‚ć‚“ć—ć‚“ä¼šå››č°·ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚­ćƒ„ćƒ¼ćƒ–'),
(95483, 79161, 'no_lang_code', 'name', 'Yotsuya Medical Cube'),
(95484, 79162, 'de', 'name', 'Wissenschaftliches Institut für Infrastruktur und Kommunikationsdienste'),
(95485, 79163, 'en', 'name', 'Pulmonary Hospital of Lanzhou'),
(95486, 79163, 'zh', 'name', 'å…°å·žåø‚č‚ŗē§‘åŒ»é™¢'),
(95487, 79164, 'no_lang_code', 'name', 'CIBBIM-Nanomedicine'),
(95488, 79165, 'en', 'name', 'Tata Institute for Genetics and Society'),
(95489, 79166, 'no_lang_code', 'name', 'QuintessenceLabs (Australia)'),
(95490, 79167, 'no_lang_code', 'name', 'Microsoft (Canada)'),
(95491, 79168, 'no_lang_code', 'name', 'Trisa (Switzerland)'),
(95492, 79169, 'no_lang_code', 'name', 'Rapid Flow (United States)'),
(95493, 79170, 'no_lang_code', 'name', 'Opt-E (United States)'),
(95494, 79171, 'en', 'name', 'Transportation Learning Center'),
(95495, 79172, 'no_lang_code', 'name', 'Trace-Ability (United States)'),
(95496, 79173, 'no_lang_code', 'name', 'Integra TDS (Slovakia)'),
(95497, 79174, 'en', 'name', 'Environmental Information Data Centre'),
(95498, 79175, 'en', 'name', 'Bosom Buddies of Arizona'),
(95499, 79176, 'no_lang_code', 'name', 'Resis (Italy)'),
(95500, 79177, 'en', 'name', 'Amersham Vale Practice'),
(95501, 79178, 'en', 'name', 'State Archives of Belgium'),
(95502, 79178, 'fr', 'name', 'Archives de l''Ɖtat'),
(95503, 79178, 'nl', 'name', 'Rijksarchief'),
(95504, 79179, 'no_lang_code', 'name', 'Leyard (United States)'),
(95505, 79180, 'no_lang_code', 'name', 'Respec (United States)'),
(95506, 79181, 'en', 'name', 'Latin American Society for Travel Medicine'),
(95507, 79181, 'es', 'name', 'Sociedad Latinoamericana de Medicina del Viajero'),
(95508, 79182, 'no_lang_code', 'name', 'Sanmina (United States)'),
(95509, 79183, 'nl', 'name', 'Stichting Jij Speelt de Hoofdrol'),
(95510, 79184, 'en', 'name', 'The Cattle Museum'),
(95511, 79184, 'ja', 'name', 'ē‰›ć®åšē‰©é¤Ø'),
(95512, 79185, 'no_lang_code', 'name', 'Ferrosan Medical Devices (Denmark)'),
(95513, 79186, 'no_lang_code', 'name', 'Universal Music Group (United States)'),
(95514, 79187, 'en', 'name', 'Shenzhen University Health Science Center'),
(95515, 79188, 'no_lang_code', 'name', 'PodbrezovĆ” Iron Works (Slovakia)'),
(95516, 79188, 'sk', 'name', 'Železiarne PodbrezovÔ'),
(95517, 79189, 'fr', 'name', 'Clinique GƩnƩrale-Beaulieu, GƩnƩrale-Beaulieu Clinic'),
(95518, 79190, 'no_lang_code', 'name', 'Thermofluidics (United Kingdom)'),
(95519, 79191, 'en', 'name', 'The British Blockchain Association'),
(95520, 79192, 'en', 'name', 'Japan Association for Fire Science and Engineering'),
(95521, 79192, 'ja', 'name', 'ę—„ęœ¬ē«ē½å­¦ä¼š'),
(95522, 79193, 'en', 'name', 'Institute of Animal Health and Veterinary Biologicals'),
(95523, 79193, 'kn', 'name', 'ಪಶು ą²†ą²°ą³‹ą²—ą³ą²Æ ą²®ą²¤ą³ą²¤ą³ ą²œą³ˆą²µą²æą²• ą²øą²‚ą²øą³ą²„ą³†'),
(95524, 79194, 'no_lang_code', 'name', 'MediGuide (United States)'),
(95525, 79195, 'no_lang_code', 'name', 'Institut für Angewandte Verkehrs- und Tourismusforschung (Germany)'),
(95526, 79196, 'no_lang_code', 'name', 'Occlutech (Sweden)'),
(95527, 79197, 'no_lang_code', 'name', 'Management Institut Bochum (Germany)'),
(95528, 79198, 'en', 'name', 'Mahatma Gandhi University'),
(95529, 79199, 'en', 'name', 'Tanaka Institute of Education'),
(95530, 79199, 'ja', 'name', '田中教育研究所'),
(95531, 79200, 'no_lang_code', 'name', 'Scionix (Netherlands)'),
(95532, 79201, 'no_lang_code', 'name', 'Woodwelding (Switzerland)'),
(95533, 79202, 'en', 'name', 'United States Agricultural Information Network'),
(95534, 79203, 'no_lang_code', 'name', 'O''Donnell Consulting Engineers (United States)'),
(95535, 79204, 'sk', 'name', 'Centrum Pedagogicko PsychologickƩho Poradenstva a Prevencie'),
(95536, 79205, 'en', 'name', 'The Dainippon Silk Foundation'),
(95537, 79205, 'ja', 'name', '貔団法人 å¤§ę—„ęœ¬čš•ē³øä¼š'),
(95538, 79206, 'en', 'name', 'Sendai Vocational College of Health and Welfare'),
(95539, 79206, 'ja', 'name', 'ä»™å°åŒ»ē™‚ē¦ē„‰å°‚é–€å­¦ę ”'),
(95540, 79207, 'en', 'name', 'Islamic Azad University Islamshahr Branch'),
(95541, 79207, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد اسلامؓهر'),
(95542, 79208, 'en', 'name', 'Bureau of Geology and Mineral Exploration and Development of Guizhou Province'),
(95543, 79209, 'no_lang_code', 'name', 'MeVis Medical Solutions (Germany)'),
(95544, 79210, 'en', 'name', 'State Institution "Ukrainian Research Institute of Medical Rehabilitation and Resort Therapy of Ministry of Health of Ukraine"'),
(95545, 79210, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Украинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицинской реабилитации Šø ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠø ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Украины"'),
(95546, 79210, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГичної реабілітації та ŠŗŃƒŃ€Š¾Ń€Ń‚ології ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š° охорони зГоров''я України"'),
(95547, 79211, 'de', 'name', 'Brandenburgische Institut für Gesellschaft und Sicherheit'),
(95548, 79211, 'en', 'name', 'Brandenburg Institute for Society and Security'),
(95549, 79212, 'en', 'name', 'Marion VA Medical Center'),
(95550, 79213, 'no_lang_code', 'name', 'Molecular Pathology Laboratory Network (United States)'),
(95551, 79214, 'en', 'name', 'Bank of Japan'),
(95552, 79214, 'ja', 'name', 'ę—„ęœ¬éŠ€č”Œ'),
(95553, 79215, 'ja', 'name', 'äæ”åŽŸē—…é™¢'),
(95554, 79215, 'no_lang_code', 'name', 'Nobuhara Hospital'),
(95555, 79216, 'no_lang_code', 'name', 'HDG Bavaria (Germany)'),
(95556, 79217, 'no_lang_code', 'name', 'CAO Group (United States)'),
(95557, 79218, 'no_lang_code', 'name', 'Hexima (Australia)'),
(95558, 79219, 'en', 'name', 'Silvestrum Climate Associates'),
(95559, 79220, 'no_lang_code', 'name', 'ERT (Germany)'),
(95560, 79221, 'en', 'name', 'Zhengzhou Railway Vocational & Technical College'),
(95561, 79221, 'zh', 'name', 'éƒ‘å·žé“č·ÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(95562, 79222, 'no_lang_code', 'name', 'OQ (Oman)'),
(95563, 79223, 'de', 'name', 'Landesanstalt für Schweinezucht'),
(95564, 79224, 'en', 'name', 'Gold Coast Health'),
(95565, 79225, 'en', 'name', 'Institute Of Psychomedical Education For Children And Adults'),
(95566, 79225, 'ja', 'name', 'ćƒšćƒƒć‚Æē ”ē©¶ę‰€'),
(95567, 79226, 'no_lang_code', 'name', 'Petkus (Germany)'),
(95568, 79227, 'no_lang_code', 'name', 'United Parcel Service (United Kingdom)'),
(95569, 79228, 'en', 'name', 'Centre for Fire, Explosive and Environment Safety'),
(95570, 79228, 'hi', 'name', 'ą¤…ą¤—ą„ą¤Øą¤æ, ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤°ą¤£ तऄा ą¤µą¤æą¤øą„ą¤«ą„‹ą¤Ÿą¤• ą¤øą„ą¤°ą¤•ą„ą¤·ą¤¾ ą¤•ą„‡ą¤‚ą¤¦'),
(95571, 79229, 'de', 'name', 'DRK-Blutspendedienst Baden-Württemberg - Hessen'),
(95572, 79230, 'no_lang_code', 'name', 'Closer Consultoria (Portugal)'),
(95573, 79231, 'no_lang_code', 'name', 'Beijing Zhongchuangwei Quantum Communication Technology (China)'),
(95574, 79231, 'zh', 'name', 'äø­åˆ›äøŗé‡å­'),
(95575, 79232, 'no_lang_code', 'name', 'ERGONOMIC Institut für Arbeits- und Sozialforschung Forschungsgesellschaft (Germany)'),
(95576, 79233, 'no_lang_code', 'name', 'Sisu Data (United States)'),
(95577, 79234, 'en', 'name', 'Scripps MD Anderson Cancer Center'),
(95578, 79235, 'no_lang_code', 'name', 'Shine Micro (United States)'),
(95579, 79236, 'en', 'name', 'Government Accountability Project'),
(95580, 79237, 'no_lang_code', 'name', '247Solar Plant (United States)'),
(95581, 79238, 'en', 'name', 'Colombian Association of Nephrology and Arterial Hypertension'),
(95582, 79238, 'es', 'name', 'Asociación Colombiana de Nefrología e Hipertensión Arterial'),
(95583, 79239, 'no_lang_code', 'name', 'Progenity (United States)'),
(95584, 79240, 'en', 'name', 'Aquarius Population Health'),
(95585, 79241, 'no_lang_code', 'name', 'Jiangnan Industry Group (China)'),
(95586, 79241, 'zh', 'name', 'ę±Ÿå—å·„äøšé›†å›¢'),
(95587, 79242, 'no_lang_code', 'name', 'Normag (Germany)'),
(95588, 79243, 'no_lang_code', 'name', 'Openbeds (United States)'),
(95589, 79244, 'de', 'name', 'Klaus Kuhn Edelstahlgießerei'),
(95590, 79244, 'no_lang_code', 'name', 'Kuhn Special Steel (Germany)'),
(95591, 79245, 'no_lang_code', 'name', 'Roche (Chile)'),
(95592, 79246, 'en', 'name', 'Research Center for Environmental Changes, Academia Sinica'),
(95593, 79246, 'zh', 'name', 'ē’°å¢ƒč®Šé·ē ”ē©¶äø­åæƒ'),
(95594, 79247, 'en', 'name', 'Nanobiosensorics Laboratory'),
(95595, 79248, 'no_lang_code', 'name', 'Currax Pharmaceuticals (United States)'),
(95596, 79249, 'no_lang_code', 'name', 'Y.K. Bae (United States)'),
(95597, 79250, 'en', 'name', 'Department of Animal Husbandry Livestock, Fisheries & Veterinary'),
(95598, 79250, 'ne', 'name', 'ą¤Ŗą¤¶ą„ą¤Ŗą¤¾ą¤²ą¤Ø ą¤Ŗą¤¶ą„ą¤§ą¤Ø ą¤®ą¤¤ą„ą¤øą„ą¤Æ र ą¤Ŗą¤¶ą„'),
(95599, 79251, 'am', 'name', 'ዓድዋ į“įŠ• įŠ£įįˆŖįŠ« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(95600, 79251, 'en', 'name', 'Adwa-Pan African University'),
(95601, 79252, 'no_lang_code', 'name', 'Sample6 (United States)'),
(95602, 79253, 'en', 'name', 'Churapcha State Institute of Physical Education and Sports'),
(95603, 79253, 'ru', 'name', 'Š¤Š“Š‘ŠžŠ£ Š’Šž Š§ŃƒŃ€Š°ŠæŃ‡ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø спорта'),
(95604, 79254, 'no_lang_code', 'name', 'Proton Motor (Germany)'),
(95605, 79255, 'no_lang_code', 'name', 'Entwicklungsagentur Region Heide (Germany)'),
(95606, 79256, 'no_lang_code', 'name', 'AspenTech (United Kingdom)'),
(95607, 79257, 'no_lang_code', 'name', 'Bruker (Austria)'),
(95608, 79258, 'no_lang_code', 'name', 'Drevar (Slovakia)'),
(95609, 79259, 'pt', 'name', 'Centro UniversitƔrio Maurƭcio de Nassau'),
(95610, 79260, 'no_lang_code', 'name', 'Frequency Therapeutics (United States)'),
(95611, 79261, 'ko', 'name', 'ģ„œģšøė°”ģ“ģ˜¤ģ‹œģŠ¤ėŠ”'),
(95612, 79261, 'no_lang_code', 'name', 'Seoul Viosys (South Korea)'),
(95613, 79262, 'no_lang_code', 'name', 'ELAN Microelectronics (Taiwan)'),
(95614, 79262, 'zh', 'name', 'ē¾©éš†é›»å­'),
(95615, 79263, 'no_lang_code', 'name', 'Drylock Technologies (Belgium)'),
(95616, 79264, 'en', 'name', 'Experimental Center of Forestry in North China'),
(95617, 79264, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢åŽåŒ—ęž—äøšå®žéŖŒäø­åæƒ'),
(95618, 79265, 'no_lang_code', 'name', 'Cemex (United Kingdom)'),
(95619, 79266, 'en', 'name', 'Final International University'),
(95620, 79266, 'tr', 'name', 'Uluslararası Final Üniversitesi'),
(95621, 79267, 'en', 'name', 'Hainan Marine Monitoring and Forecasting Center'),
(95622, 79267, 'zh', 'name', 'ęµ·å—ęµ·ę“‹ē›‘ęµ‹é¢„ęŠ„äø­åæƒ'),
(95623, 79268, 'en', 'name', 'Yandex School of Data Analysis'),
(95624, 79268, 'ru', 'name', 'Школа анализа Ганных'),
(95625, 79269, 'no_lang_code', 'name', 'Steelco (Italy)'),
(95626, 79270, 'en', 'name', 'Indian Society of Agribusiness Professionals'),
(95627, 79271, 'en', 'name', 'Kursk Federal Agrarian Scientific Center'),
(95628, 79271, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŠŠ°ŃƒŃ‡Š½Š¾Šµ УчрежГение'),
(95629, 79272, 'no_lang_code', 'name', 'CeramTec (United Kingdom)'),
(95630, 79273, 'no_lang_code', 'name', 'PPA Controll (Slovakia)'),
(95631, 79274, 'no_lang_code', 'name', 'vTv Therapeutics (United States)'),
(95632, 79275, 'en', 'name', 'Institute for Social Research and Project Consultancy'),
(95633, 79276, 'no_lang_code', 'name', 'Techulon (United States)'),
(95634, 79277, 'no_lang_code', 'name', 'Omsktransmash (Russia)'),
(95635, 79277, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ завоГ транспортного Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(95636, 79278, 'de', 'name', 'Institut für Bodenkultur und Pflanzenbau'),
(95637, 79279, 'no_lang_code', 'name', 'Somnarus (United States)'),
(95638, 79280, 'no_lang_code', 'name', 'AlzChem (Germany)'),
(95639, 79281, 'no_lang_code', 'name', 'McCarter (Slovakia)'),
(95640, 79282, 'no_lang_code', 'name', 'Doxa (Sweden)'),
(95641, 79283, 'no_lang_code', 'name', 'PLC Connections (United States)'),
(95642, 79284, 'en', 'name', 'The Sixth People''s Hospital of Shenyang'),
(95643, 79284, 'zh', 'name', 'ę²ˆé˜³åø‚ē¬¬å…­äŗŗę°‘åŒ»é™¢'),
(95644, 79285, 'en', 'name', 'Cyber Campus Consortium TIES'),
(95645, 79286, 'no_lang_code', 'name', 'Poseida Therapeutics (United States)'),
(95646, 79287, 'no_lang_code', 'name', 'Institut Für Prozeßadaptive und Erfahrungsgeleitete Automatisierung (Germany)'),
(95647, 79288, 'no_lang_code', 'name', 'Epic Sciences (United States)'),
(95648, 79289, 'de', 'name', 'Institut für technisch-wissenschaftliche Hydrologie'),
(95649, 79289, 'no_lang_code', 'name', 'Institute for Technical and Scientific Hydrology (Germany)'),
(95650, 79290, 'no_lang_code', 'name', 'PatientsVoices (United States)'),
(95651, 79291, 'fr', 'name', 'Clinique VƩtƩrinaire Benjamin Franklin'),
(95652, 79292, 'no_lang_code', 'name', 'GTT Communications (United States)'),
(95653, 79293, 'en', 'name', 'Yunnan Provincial Infectious Disease Hospital'),
(95654, 79293, 'zh', 'name', 'äŗ‘å—ēœä¼ ęŸ“ē—…äø“ē§‘åŒ»é™¢'),
(95655, 79294, 'de', 'name', 'Institut für Internationale Kommunikation'),
(95656, 79295, 'en', 'name', 'Robert J. Dole VA Medical Center'),
(95657, 79296, 'no_lang_code', 'name', 'Factor Bioscience (United States)'),
(95658, 79297, 'no_lang_code', 'name', 'VinUniversity'),
(95659, 79297, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c VinUni'),
(95660, 79298, 'en', 'name', 'Xi''an Chest Hospital'),
(95661, 79298, 'zh', 'name', 'č„æå®‰åø‚čƒøē§‘åŒ»é™¢'),
(95662, 79299, 'de', 'name', 'Deutsches Jungforscher Netzwerk - juFORUM'),
(95663, 79300, 'de', 'name', 'Medizinischer FakultƤtentag'),
(95664, 79301, 'no_lang_code', 'name', 'Industrial Research & Engineering (Germany)'),
(95665, 79302, 'de', 'name', 'DRK Bezirksverband Frankfurt'),
(95666, 79303, 'no_lang_code', 'name', 'Visonex (United States)'),
(95667, 79304, 'en', 'name', 'Nanchang Center for Disease Control and Prevention'),
(95668, 79304, 'zh', 'name', 'å—ę˜Œåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(95669, 79305, 'no_lang_code', 'name', 'PPG Industries (United Kingdom)'),
(95670, 79306, 'de', 'name', 'Ministerium für Wirtschaft, Arbeit, Energie und Verkehr'),
(95671, 79307, 'de', 'name', 'Institut für Assistenzsysteme und Qualifizierung'),
(95672, 79308, 'no_lang_code', 'name', 'Prognos (Germany)'),
(95673, 79309, 'ja', 'name', 'å€‰å‰åšē‰©é¤Ø'),
(95674, 79309, 'no_lang_code', 'name', 'Kurayoshi Museum'),
(95675, 79310, 'en', 'name', 'Arthur Rylah Institute for Environmental Research'),
(95676, 79311, 'en', 'name', 'Eastern Regional Research Center'),
(95677, 79312, 'no_lang_code', 'name', 'Exsymol (Monaco)'),
(95678, 79313, 'no_lang_code', 'name', 'VƔdium (Slovakia)'),
(95679, 79314, 'no_lang_code', 'name', 'Helsana Group (Switzerland)'),
(95680, 79315, 'en', 'name', 'Institute for Disease Modeling'),
(95681, 79316, 'no_lang_code', 'name', 'Arsenal Biosciences (United States)'),
(95682, 79317, 'fr', 'name', 'HƓpital Dupuytren'),
(95683, 79318, 'en', 'name', 'Islamic Azad University, Azadshahr Branch'),
(95684, 79318, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ آزادؓهر'),
(95685, 79319, 'en', 'name', 'National College Of Nursing'),
(95686, 79319, 'ja', 'name', 'å›½ē«‹ēœ‹č­·å¤§å­¦ę ”'),
(95687, 79320, 'en', 'name', 'Japan Coal Energy Center'),
(95688, 79320, 'ja', 'name', 'ēŸ³ē‚­ć‚Øćƒćƒ«ć‚®ćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(95689, 79321, 'no_lang_code', 'name', 'ROWO Coating (Germany)'),
(95690, 79322, 'no_lang_code', 'name', 'Zalgen (United States)'),
(95691, 79323, 'no_lang_code', 'name', 'Taisei Kako (Japan)'),
(95692, 79324, 'en', 'name', 'Eswatini Economic Policy Analysis and Research Centre'),
(95693, 79325, 'no_lang_code', 'name', 'J.M. Huber Corporation (United States)'),
(95694, 79326, 'no_lang_code', 'name', 'Yebio Bioengineering (China)'),
(95695, 79327, 'no_lang_code', 'name', 'Raydium Semiconductor (Taiwan)'),
(95696, 79328, 'en', 'name', 'Grammar School'),
(95697, 79328, 'sk', 'name', 'GymnƔzium v Snine'),
(95698, 79329, 'no_lang_code', 'name', 'Clement Clarke International (United Kingdom)'),
(95699, 79330, 'no_lang_code', 'name', 'Bitunova (Slovakia)'),
(95700, 79331, 'no_lang_code', 'name', 'ETKM (Slovakia)'),
(95701, 79332, 'en', 'name', 'Laudes Foundation'),
(95702, 79333, 'en', 'name', 'Northeast Gas Association'),
(95703, 79334, 'en', 'name', 'College Of Certified Psychophysiologists'),
(95704, 79335, 'en', 'name', 'Dawu County People''s Hospital'),
(95705, 79335, 'zh', 'name', 'å¤§ę‚ŸåŽæäŗŗę°‘åŒ»é™¢'),
(95706, 79336, 'de', 'name', 'Landesinstitut für Schule und Medien Berlin-Brandenburg'),
(95707, 79337, 'de', 'name', 'Institut für Ɩkologie und Politik'),
(95708, 79337, 'no_lang_code', 'name', 'Ɩkopol (Germany)'),
(95709, 79338, 'de', 'name', 'Institut Psychologie und Bedrohungsmanagement'),
(95710, 79339, 'de', 'name', 'Kasseler Institut für Ländliche Entwicklung'),
(95711, 79340, 'no_lang_code', 'name', 'Geodis (Slovakia)'),
(95712, 79341, 'en', 'name', 'Hunan Institute of Microbiology'),
(95713, 79341, 'zh', 'name', 'ę¹–å—ēœå¾®ē”Ÿē‰©ē ”ē©¶é™¢'),
(95714, 79342, 'no_lang_code', 'name', 'Virtual Technology (United States)'),
(95715, 79343, 'en', 'name', 'New Insights for Tourism'),
(95716, 79344, 'de', 'name', 'An-Institut für Transfer und Weiterbildung'),
(95717, 79345, 'en', 'name', 'MiQro Innovation Collaborative Centre');
INSERT INTO `ror_settings` VALUES
(95718, 79345, 'fr', 'name', 'Centre de Collaboration MiQro Innovation'),
(95719, 79346, 'fr', 'name', 'Ɖcole de Gouvernance et d''Ɖconomie de Rabat'),
(95720, 79347, 'en', 'name', 'Kazakh University of Technology and Business'),
(95721, 79347, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ және бизнес ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(95722, 79348, 'en', 'name', 'Isaac Newton Group'),
(95723, 79349, 'en', 'name', 'Center for Inherited Blood Disorders'),
(95724, 79350, 'no_lang_code', 'name', 'Medomics (China)'),
(95725, 79350, 'zh', 'name', 'ę±Ÿč‹ē¾Žå…‹åŒ»å­¦ęŠ€ęœÆęœ‰é™å…¬åø'),
(95726, 79351, 'en', 'name', 'Guangzhou Zoo'),
(95727, 79351, 'zh', 'name', 'å¹æå·žåŠØē‰©å›­'),
(95728, 79352, 'no_lang_code', 'name', 'Cytologics (United States)'),
(95729, 79353, 'no_lang_code', 'name', 'PreludeDx (United States)'),
(95730, 79354, 'it', 'name', 'Istituto Zooprofilattico Sperimentale della Puglia e della Basilicata'),
(95731, 79355, 'no_lang_code', 'name', 'DAC Tools (United States)'),
(95732, 79356, 'en', 'name', 'College of Europe, Warsaw'),
(95733, 79357, 'en', 'name', 'Epson Information Technology College'),
(95734, 79357, 'ja', 'name', 'ć‚Øćƒ—ć‚½ćƒ³ęƒ…å ±ē§‘å­¦å°‚é–€å­¦ę ”'),
(95735, 79358, 'en', 'name', 'Aerial Delivery Research and Development Establishment'),
(95736, 79358, 'hi', 'name', 'हवाई ą¤”ą¤æą¤²ą„€ą¤µą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(95737, 79359, 'no_lang_code', 'name', 'IBC Pharmaceuticals (India)'),
(95738, 79360, 'no_lang_code', 'name', 'Summit Technology Laboratory (United States)'),
(95739, 79361, 'no_lang_code', 'name', 'Xinjiang New Energy Research Institute (China)'),
(95740, 79362, 'no_lang_code', 'name', 'Spa-ce.net'),
(95741, 79363, 'no_lang_code', 'name', 'RaySearch Laboratories (Sweden)'),
(95742, 79364, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒšćƒ—ćƒćƒ‰ē ”ē©¶ę‰€'),
(95743, 79364, 'no_lang_code', 'name', 'Peptide Institute (Japan)'),
(95744, 79365, 'no_lang_code', 'name', 'IBM (Slovakia)'),
(95745, 79366, 'no_lang_code', 'name', 'Pacific Research Laboratories (United States)'),
(95746, 79367, 'en', 'name', 'Central Bank of Luxembourg'),
(95747, 79367, 'lb', 'name', 'Banque centrale du Luxembourg'),
(95748, 79368, 'en', 'name', 'Combat Vehicles Research and Development Establishment'),
(95749, 79368, 'hi', 'name', 'ą¤øą¤‚ą¤—ą„ą¤°ą¤¾ą¤® वाहन ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø तऄा विकास ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ŗą¤Ø'),
(95750, 79369, 'en', 'name', 'Arctic Data Center'),
(95751, 79370, 'no_lang_code', 'name', 'Navigant (Germany)'),
(95752, 79371, 'en', 'name', 'The Korean Institute of Electrical and Electronic Material Engineers'),
(95753, 79371, 'ko', 'name', 'ķ•œźµ­ģ „źø°ģ „ģžģž¬ė£Œķ•™ķšŒ'),
(95754, 79372, 'no_lang_code', 'name', 'Quest Thermal Group (United States)'),
(95755, 79373, 'no_lang_code', 'name', 'DMG Mori (United Kingdom)'),
(95756, 79374, 'no_lang_code', 'name', 'Cybersonics (United States)'),
(95757, 79375, 'no_lang_code', 'name', 'Gerresheimer (Germany)'),
(95758, 79376, 'en', 'name', 'Wenzhou-Kean University'),
(95759, 79376, 'zh', 'name', 'ęø©å·žč‚Æę©å¤§å­¦'),
(95760, 79377, 'no_lang_code', 'name', 'Optinav (United States)'),
(95761, 79378, 'en', 'name', 'DermaTronnier'),
(95762, 79379, 'no_lang_code', 'name', 'Acrux (Australia)'),
(95763, 79380, 'en', 'name', 'CananƩia Research Institute'),
(95764, 79380, 'pt', 'name', 'Instituto de Pesquisas CananƩia'),
(95765, 79381, 'no_lang_code', 'name', 'Technovative Applications (United States)'),
(95766, 79382, 'la', 'name', 'Institutum Iurisprudentiae, Academia Sinica'),
(95767, 79382, 'zh', 'name', '中央研究院法律學研究所'),
(95768, 79383, 'no_lang_code', 'name', 'Oral Health Solutions (United States)'),
(95769, 79384, 'de', 'name', 'Cogito Institut für Autonomieforschung'),
(95770, 79385, 'no_lang_code', 'name', 'Expanse (United States)'),
(95771, 79386, 'no_lang_code', 'name', 'Haselmeier (Germany)'),
(95772, 79387, 'en', 'name', 'The Eighth Hospital of Xi''an'),
(95773, 79387, 'zh', 'name', 'č„æå®‰åø‚ē¬¬å…«åŒ»é™¢'),
(95774, 79388, 'no_lang_code', 'name', 'Meiko (Germany)'),
(95775, 79389, 'no_lang_code', 'name', 'Institut für Leichte Elektrische Antriebe und Generatoren (Germany)'),
(95776, 79390, 'en', 'name', 'Indonesian Orthopaedic Association'),
(95777, 79390, 'id', 'name', 'Perkumpulan Ahli Bedah Orthopaedi Indonesia'),
(95778, 79391, 'no_lang_code', 'name', 'Takeda (Canada)'),
(95779, 79392, 'de', 'name', 'Badische Landesmuseum'),
(95780, 79392, 'en', 'name', 'Baden State Museum'),
(95781, 79393, 'en', 'name', 'Arctic Research Center of the Yamal-Nenets Autonomous District'),
(95782, 79393, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃ Арктики'),
(95783, 79394, 'no_lang_code', 'name', 'Owen Mumford (United Kingdom)'),
(95784, 79395, 'no_lang_code', 'name', 'Alcon (Switzerland)'),
(95785, 79396, 'ja', 'name', 'č²”å›£ę³•äŗŗå ±å¾³ē¦é‹ē¤¾'),
(95786, 79396, 'no_lang_code', 'name', 'Hotoku Museum'),
(95787, 79397, 'no_lang_code', 'name', 'Techverse (United States)'),
(95788, 79398, 'no_lang_code', 'name', 'Spinal Elements (United States)'),
(95789, 79399, 'no_lang_code', 'name', 'Active Implants (United States)'),
(95790, 79400, 'en', 'name', 'Senshu University Kitakami welfare education technical school'),
(95791, 79400, 'ja', 'name', 'å°‚äæ®å¤§å­¦åŒ—äøŠē¦ē„‰ę•™č‚²å°‚é–€å­¦ę ”'),
(95792, 79401, 'de', 'name', 'MedAustron'),
(95793, 79402, 'no_lang_code', 'name', 'Vtec Laboratories (United States)'),
(95794, 79403, 'no_lang_code', 'name', 'Sheehan Medical (United States)'),
(95795, 79404, 'no_lang_code', 'name', 'Salus (United States)'),
(95796, 79405, 'no_lang_code', 'name', 'Volition (United Kingdom)'),
(95797, 79406, 'en', 'name', 'Yamaguchi Prefectural Police'),
(95798, 79406, 'ja', 'name', 'å±±å£ēœŒč­¦åÆŸ'),
(95799, 79407, 'no_lang_code', 'name', 'APCON (Germany)'),
(95800, 79408, 'de', 'name', 'Chemisches und VeterinƤruntersuchungsamt Ostwestfalen-Lippe'),
(95801, 79409, 'no_lang_code', 'name', 'Nimbic Systems (United States)'),
(95802, 79410, 'de', 'name', 'Museum für Kunst und Gewerbe Hamburg'),
(95803, 79410, 'en', 'name', 'Museum of Art and Design Hamburg'),
(95804, 79411, 'no_lang_code', 'name', 'Recipharm (France)'),
(95805, 79412, 'en', 'name', 'National Food Safety and Quality Service'),
(95806, 79412, 'es', 'name', 'Servicio Nacional de Sanidad y Calidad Agroalimentaria'),
(95807, 79413, 'no_lang_code', 'name', 'Agriculture Victoria Services (Australia)'),
(95808, 79414, 'no_lang_code', 'name', 'Cengage Learning (United Kingdom)'),
(95809, 79415, 'en', 'name', 'Center for Reliable Energy Systems'),
(95810, 79416, 'no_lang_code', 'name', 'Lb Minerals (Slovakia)'),
(95811, 79417, 'no_lang_code', 'name', 'Recon Dynamics (United States)'),
(95812, 79418, 'no_lang_code', 'name', 'Gentian Diagnostics (Sweden)'),
(95813, 79419, 'es', 'name', 'Colección Ornitológica Phelps'),
(95814, 79420, 'no_lang_code', 'name', 'Biolase (United States)'),
(95815, 79421, 'en', 'name', 'American Public Transportation Association'),
(95816, 79422, 'en', 'name', 'Safer Sim'),
(95817, 79423, 'en', 'name', 'Extreme Wellness Institute'),
(95818, 79424, 'en', 'name', 'Common Community Commission'),
(95819, 79424, 'fr', 'name', 'Commission communautaire commune'),
(95820, 79424, 'nl', 'name', 'Gemeenschappelijke Gemeenschapscommissie'),
(95821, 79425, 'hu', 'name', 'KiskunsƔg National Park, KiskunsƔgi Nemzeti Park'),
(95822, 79426, 'no_lang_code', 'name', 'Planmed (Finland)'),
(95823, 79427, 'en', 'name', 'Univation Institut für Evaluation Dr. Beywl & Associates'),
(95824, 79428, 'de', 'name', 'mmb Institut'),
(95825, 79429, 'de', 'name', 'Deutsches Krankenhaus Institut'),
(95826, 79430, 'ja', 'name', 'é‡Žę‘ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(95827, 79430, 'no_lang_code', 'name', 'Nomura Holdings (Japan)'),
(95828, 79431, 'no_lang_code', 'name', 'Cara Therapeutics (United States)'),
(95829, 79432, 'no_lang_code', 'name', 'Macopharma (Germany)'),
(95830, 79433, 'fr', 'name', 'Ecole SupƩrieure d''Ambulancier et Soins d''Urgence Romande'),
(95831, 79434, 'en', 'name', 'Eckert Schools International'),
(95832, 79435, 'no_lang_code', 'name', 'Centrix (United States)'),
(95833, 79436, 'no_lang_code', 'name', 'KDS Development (United States)'),
(95834, 79437, 'en', 'name', 'Advanced Functional Fabrics of America'),
(95835, 79438, 'no_lang_code', 'name', 'Scientific Design Company (United States)'),
(95836, 79439, 'no_lang_code', 'name', 'Silicon Motion (Taiwan)'),
(95837, 79439, 'zh', 'name', 'ę…§ę¦®ē§‘ęŠ€'),
(95838, 79440, 'en', 'name', 'Sichuan Research Center of New Materials'),
(95839, 79440, 'zh', 'name', 'å››å·ēœę–°ęę–™ē ”ē©¶äø­åæƒ'),
(95840, 79441, 'en', 'name', 'China Association of Acupuncture-Moxibustion'),
(95841, 79441, 'zh', 'name', 'äø­å›½é’ˆēøå­¦ä¼š'),
(95842, 79442, 'no_lang_code', 'name', 'Origin Quantum Computing Technology Company (China)'),
(95843, 79442, 'zh', 'name', 'å›½å†…ē¬¬äø€ę¬¾é‡å­č®”ē®—ęœŗę“ä½œē³»ē»Ÿ'),
(95844, 79443, 'en', 'name', 'Jiangxi Institute Of Economic Administraors'),
(95845, 79443, 'zh', 'name', 'ę±Ÿč„æē»ęµŽē®”ē†å¹²éƒØå­¦é™¢'),
(95846, 79444, 'no_lang_code', 'name', 'Veralase (United States)'),
(95847, 79445, 'no_lang_code', 'name', 'Magic Leap (United States)'),
(95848, 79446, 'no_lang_code', 'name', 'Apeiron Biologics (Austria)'),
(95849, 79447, 'no_lang_code', 'name', 'Semefab (United Kingdom)'),
(95850, 79448, 'no_lang_code', 'name', 'Curemark (United States)'),
(95851, 79449, 'de', 'name', 'Forschungsanstalt für Waldökologie und Forstwirtschaft'),
(95852, 79450, 'en', 'name', 'Federal Reserve Bank of Richmond'),
(95853, 79451, 'no_lang_code', 'name', 'Siemens (Slovakia)'),
(95854, 79452, 'en', 'name', 'Central Muga Eri Research and Training Institute'),
(95855, 79453, 'de', 'name', 'Institut für Diagnostik und Konservierung an Denkmalen in Sachsen und Sachsen-Anhalt'),
(95856, 79454, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų³ŁˆŲÆŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ…'),
(95857, 79454, 'en', 'name', 'Sudan Academy of Sciences'),
(95858, 79455, 'en', 'name', 'Export–Import Bank of Korea'),
(95859, 79456, 'no_lang_code', 'name', 'Kinamed (United States)'),
(95860, 79457, 'en', 'name', 'Citizens Information Board'),
(95861, 79458, 'en', 'name', 'Cape Town Science Centre'),
(95862, 79459, 'en', 'name', 'China Training Center for Senior Civil Servants'),
(95863, 79459, 'zh', 'name', 'äø­å›½é«˜ēŗ§å…¬åŠ”å‘˜åŸ¹č®­äø­åæƒ'),
(95864, 79460, 'en', 'name', 'Wisconsin Project on Nuclear Arms Control'),
(95865, 79461, 'en', 'name', 'Center for Migration Studies of New York'),
(95866, 79462, 'no_lang_code', 'name', 'Fiat Chrysler Automobiles (Japan)'),
(95867, 79463, 'no_lang_code', 'name', 'Bezwada Biomedical (United States)'),
(95868, 79464, 'en', 'name', 'Titi Monkey Project'),
(95869, 79464, 'es', 'name', 'Proyecto Mono Tocón'),
(95870, 79465, 'no_lang_code', 'name', 'Veroscience (United States)'),
(95871, 79466, 'en', 'name', 'Global Institute for Water Security'),
(95872, 79467, 'no_lang_code', 'name', 'Medicomp (United States)'),
(95873, 79468, 'en', 'name', 'Eye Hospital in Bangalore'),
(95874, 79469, 'no_lang_code', 'name', 'Patient Knowhow (United States)'),
(95875, 79470, 'no_lang_code', 'name', 'Bobst (United Kingdom)'),
(95876, 79471, 'no_lang_code', 'name', 'China Central Television'),
(95877, 79471, 'zh', 'name', 'äø­å›½äø­å¤®ē”µč§†å°'),
(95878, 79472, 'de', 'name', 'Landwirtschaftskammer Nordrhein-Westfalen'),
(95879, 79473, 'no_lang_code', 'name', 'AnaKat (Germany)'),
(95880, 79474, 'en', 'name', 'Australian National Wildlife Collection'),
(95881, 79475, 'en', 'name', 'VA Roseburg Healthcare System'),
(95882, 79476, 'no_lang_code', 'name', 'Turbon (Germany)'),
(95883, 79477, 'no_lang_code', 'name', 'Institut für Textiltechnik Augsburg (Germany)'),
(95884, 79478, 'no_lang_code', 'name', 'Triad (United States)'),
(95885, 79479, 'no_lang_code', 'name', 'Starodub (United States)'),
(95886, 79480, 'en', 'name', 'Skyline University Nigeria'),
(95887, 79481, 'nl', 'name', 'Domus Medica'),
(95888, 79482, 'no_lang_code', 'name', 'PowerPhotonic (United States)'),
(95889, 79483, 'no_lang_code', 'name', 'Nexgenia (United States)'),
(95890, 79484, 'en', 'name', 'University of Kisubi'),
(95891, 79485, 'no_lang_code', 'name', 'GenomeScan (Netherlands)'),
(95892, 79486, 'de', 'name', 'Rat für Sozial- und Wirtschaftsdaten'),
(95893, 79486, 'en', 'name', 'German Data Forum'),
(95894, 79487, 'en', 'name', 'Renewable Energy Corporation of India'),
(95895, 79488, 'no_lang_code', 'name', 'IMRIS (United States)'),
(95896, 79489, 'en', 'name', 'Islamic Azad University, Damghan Branch'),
(95897, 79489, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد دامغان'),
(95898, 79490, 'no_lang_code', 'name', 'Regionalverkehr Kƶln (Germany)'),
(95899, 79491, 'no_lang_code', 'name', 'BioAtla (United States)'),
(95900, 79492, 'am', 'name', 'į‹ˆįˆį‹µį‹« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(95901, 79492, 'en', 'name', 'Woldia University'),
(95902, 79493, 'en', 'name', 'Koto Cultural Community Foundation'),
(95903, 79493, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę±Ÿę±åŒŗę–‡åŒ–ć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£č²”å›£'),
(95904, 79494, 'de', 'name', 'Hessische Zentrale für Datenverarbeitung'),
(95905, 79495, 'es', 'name', 'Hospital PiƱero'),
(95906, 79496, 'no_lang_code', 'name', 'CD-adapco (United States)'),
(95907, 79497, 'no_lang_code', 'name', 'Immunovative Therapies (Israel)'),
(95908, 79498, 'no_lang_code', 'name', 'Urenco (Germany)'),
(95909, 79499, 'en', 'name', 'National Center for Sustainable Transportation'),
(95910, 79500, 'bn', 'name', 'মহারাজা বির ą¦¬ą¦æą¦•ą§ą¦°ą¦® ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(95911, 79500, 'en', 'name', 'Maharaja Bir Bikram University'),
(95912, 79501, 'en', 'name', 'Institute of Political Science'),
(95913, 79501, 'pl', 'name', 'Instytut Nauki o Polityce'),
(95914, 79502, 'es', 'name', 'Academia Nacional de Medicina Venezuela'),
(95915, 79503, 'no_lang_code', 'name', 'Windpark Ellhƶft (Germany)'),
(95916, 79504, 'no_lang_code', 'name', 'Perceptive Innovations (United States)'),
(95917, 79505, 'en', 'name', 'Beijing Chaoyang Emergency Medical Center'),
(95918, 79505, 'zh', 'name', 'åŒ—äŗ¬ęœé˜³ę€„čÆŠęŠ¢ę•‘äø­åæƒ'),
(95919, 79506, 'no_lang_code', 'name', 'Tobishi (Japan)'),
(95920, 79507, 'no_lang_code', 'name', 'Institut für Angewandte Zellkultur (Germany)'),
(95921, 79508, 'en', 'name', 'Kofi Annan International Peacekeeping Training Centre'),
(95922, 79509, 'en', 'name', 'ABC for Health'),
(95923, 79510, 'no_lang_code', 'name', 'NeuroEM Therapeutics (United States)'),
(95924, 79511, 'en', 'name', 'Centre for Rural Education and Economic Development'),
(95925, 79512, 'de', 'name', 'Landesinstitut für Lehrerbildung und Schulentwicklung'),
(95926, 79513, 'no_lang_code', 'name', 'Acesion Pharma (Denmark)'),
(95927, 79514, 'no_lang_code', 'name', 'Biokine (Israel)'),
(95928, 79515, 'no_lang_code', 'name', 'CooperSurgical (United States)'),
(95929, 79516, 'en', 'name', 'Hokkaido Prefectual Police'),
(95930, 79516, 'ja', 'name', 'åŒ—ęµ·é“č­¦åÆŸ'),
(95931, 79517, 'no_lang_code', 'name', 'Institut für Geologie und Umwelt (Germany)'),
(95932, 79518, 'no_lang_code', 'name', 'Techmart Industrial Limited (China)'),
(95933, 79518, 'zh', 'name', 'ē§‘ę±‡å·„äøšęœŗę¢°ęœ‰é™å…¬åø'),
(95934, 79519, 'no_lang_code', 'name', 'VPDiagnostics (United States)'),
(95935, 79520, 'no_lang_code', 'name', 'LimaCorporate (Italy)'),
(95936, 79521, 'no_lang_code', 'name', 'Pfalzwerke (Germany)'),
(95937, 79522, 'ja', 'name', 'ę±ę“‹ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ę Ŗå¼ä¼šē¤¾'),
(95938, 79522, 'no_lang_code', 'name', 'Toyo Engineering (Japan)'),
(95939, 79523, 'es', 'name', 'Para La Tierra'),
(95940, 79524, 'en', 'name', 'Sabzevar University of New Technology'),
(95941, 79524, 'fa', 'name', 'دانؓگاه ŁŁ†Ų§ŁˆŲ±ŪŒ Ł‡Ų§ŪŒ Ł†ŁˆŪŒŁ† سبزوار'),
(95942, 79525, 'de', 'name', 'Institut für Berufliche Aus- und Fortbildung'),
(95943, 79526, 'no_lang_code', 'name', 'IZI Medical (United States)'),
(95944, 79527, 'no_lang_code', 'name', 'Pflüger (Germany)'),
(95945, 79528, 'de', 'name', 'Mannheimer Zentrum für Europäische Sozialforschung'),
(95946, 79528, 'en', 'name', 'Mannheim Centre for European Social Research'),
(95947, 79529, 'es', 'name', 'Hospital Universitario de Sincelejo'),
(95948, 79530, 'de', 'name', 'Institut für Europäisches Medienrecht'),
(95949, 79530, 'en', 'name', 'Institute of European Media Law'),
(95950, 79531, 'en', 'name', 'Center for Biomolecular Nanotechnologies'),
(95951, 79531, 'it', 'name', 'Centro per le Nanotecnologie Biomolecolari'),
(95952, 79532, 'de', 'name', 'Museum für Völkerkunde Hamburg'),
(95953, 79532, 'en', 'name', 'Museum am Rothenbaum'),
(95954, 79533, 'en', 'name', 'Carolina Small Business Development Fund'),
(95955, 79534, 'no_lang_code', 'name', 'Siuvo (China)'),
(95956, 79535, 'en', 'name', 'Spice and Beverage Research Institute'),
(95957, 79535, 'zh', 'name', '香料鄮料研究所'),
(95958, 79536, 'en', 'name', 'WHO European Office for the Prevention and Control of NCD'),
(95959, 79537, 'no_lang_code', 'name', 'Roche (Bolivia)'),
(95960, 79538, 'en', 'name', 'Morgridge Institute for Research'),
(95961, 79539, 'en', 'name', 'Colombian Association of Surgery'),
(95962, 79539, 'es', 'name', 'Asociación Colombiana de Cirugía'),
(95963, 79540, 'en', 'name', 'The TAU Institute'),
(95964, 79541, 'en', 'name', 'Concrete Reinforcing Steel Institute'),
(95965, 79542, 'da', 'name', 'LVK KvƦgdyrlƦgerne'),
(95966, 79543, 'de', 'name', 'Wallraf-Richartz-Museum & Fondation Corboud, Wallraf–Richartz-Museum'),
(95967, 79544, 'en', 'name', 'Gifu Prefectural Gifu Kita Senior High School'),
(95968, 79544, 'ja', 'name', 'å²é˜œēœŒå²é˜œåŒ—é«˜'),
(95969, 79545, 'en', 'name', 'Institute of Petroleum Studies Kampala'),
(95970, 79546, 'es', 'name', 'Escuela Superior Tecnológica de Artes Débora Arango'),
(95971, 79547, 'en', 'name', 'Colombian Army Military Academy "General José María Córdova"'),
(95972, 79547, 'es', 'name', 'Escuela Militar de Cadetes General José María Córdova'),
(95973, 79548, 'no_lang_code', 'name', 'Biocensus (United Kingdom)'),
(95974, 79549, 'en', 'name', 'Gas Turbine Research Establishment'),
(95975, 79550, 'no_lang_code', 'name', 'Xi''an Airborne Electromagnetic Technology (China)'),
(95976, 79550, 'zh', 'name', 'č„æå®‰ēˆ±é‚¦ē”µē£ęŠ€ęœÆęœ‰é™č“£ä»»å…¬åø'),
(95977, 79551, 'fr', 'name', 'HƓpital San Salvadour'),
(95978, 79552, 'no_lang_code', 'name', 'Roche (Lebanon)'),
(95979, 79553, 'en', 'name', 'Miami Transplant Institute'),
(95980, 79554, 'en', 'name', 'Sengkang General Hospital'),
(95981, 79554, 'ms', 'name', 'Hospital Besar Sengkang'),
(95982, 79554, 'ta', 'name', 'ą®šąÆ†ą®™ąÆą®•ą®¾ą®™ąÆ பொது ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(95983, 79554, 'zh', 'name', 'ē››ęøÆē»¼åˆåŒ»é™¢'),
(95984, 79555, 'en', 'name', 'Niigata Prefectural Library'),
(95985, 79555, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹å›³ę›øé¤Ø'),
(95986, 79556, 'el', 'name', 'Ī•ĪøĪ½Ī¹ĪŗĻŒĻ‚ ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ Ī”Ī·Ī¼ĻŒĻƒĪ¹Ī±Ļ‚ ΄γείας'),
(95987, 79556, 'en', 'name', 'National Public Health Organization'),
(95988, 79557, 'no_lang_code', 'name', 'Alfred E. Tiefenbacher (Germany)'),
(95989, 79558, 'no_lang_code', 'name', 'Professional Analytical and Consulting Services (United States)'),
(95990, 79559, 'no_lang_code', 'name', 'Dong-A Pharmaceutical (South Korea)'),
(95991, 79560, 'de', 'name', 'Institut für Angewandte Ɩkosystemforschung'),
(95992, 79560, 'en', 'name', 'Institute for Applied Ecosystem Research'),
(95993, 79561, 'en', 'name', 'Somali International University'),
(95994, 79562, 'no_lang_code', 'name', 'Plasmatreat (Germany)'),
(95995, 79563, 'no_lang_code', 'name', 'Recursion (United States)'),
(95996, 79564, 'no_lang_code', 'name', 'Electron (Ukraine)'),
(95997, 79564, 'uk', 'name', 'Електрон'),
(95998, 79565, 'no_lang_code', 'name', 'Fonar (United States)'),
(95999, 79566, 'no_lang_code', 'name', 'Proteostasis Therapeutics (United States)'),
(96000, 79567, 'de', 'name', 'Klinikum Passau'),
(96001, 79568, 'no_lang_code', 'name', 'KRONOS (United States)'),
(96002, 79569, 'en', 'name', 'Golden West College'),
(96003, 79570, 'no_lang_code', 'name', 'GemerskĆ” NerudnĆ” SpoločnosÅ„ (Slovakia)'),
(96004, 79571, 'no_lang_code', 'name', 'Theratechnologies (Canada)'),
(96005, 79572, 'no_lang_code', 'name', 'Hannoversche Informationstechnologien (Germany)'),
(96006, 79573, 'no_lang_code', 'name', 'Wave Up (Italy)'),
(96007, 79574, 'en', 'name', 'Foundation for Neglected Disease Research'),
(96008, 79574, 'kn', 'name', 'ą²Øą²æą²°ą³ą²²ą²•ą³ą²·ą³ą²Æ ರೋಗ ą²°ą²æą²øą²°ą³ą²šą³ ą²«ą³Œą²‚ą²”ą³†ą³•ą²¶ą²Øą³'),
(96009, 79575, 'en', 'name', 'Impact'),
(96010, 79576, 'no_lang_code', 'name', 'Eurofarma (Brazil)'),
(96011, 79577, 'no_lang_code', 'name', 'Sarfez (United States)'),
(96012, 79578, 'no_lang_code', 'name', 'Ya-Man (Japan)'),
(96013, 79579, 'no_lang_code', 'name', 'Qynergy (United States)'),
(96014, 79580, 'no_lang_code', 'name', 'Atlas Antibodies (Sweden)'),
(96015, 79581, 'no_lang_code', 'name', 'Private Machines (United States)'),
(96016, 79582, 'en', 'name', 'Hangzhou Children''s Hospital'),
(96017, 79582, 'zh', 'name', 'ę­å·žåø‚å„æē«„åŒ»é™¢'),
(96018, 79583, 'no_lang_code', 'name', 'Mitokinin (United States)'),
(96019, 79584, 'en', 'name', 'Lukenya University'),
(96020, 79585, 'no_lang_code', 'name', 'Gototags (United States)'),
(96021, 79586, 'de', 'name', 'Bundesverband Farbe Gestaltung Bautenschutz'),
(96022, 79587, 'be', 'name', 'ŠŠ“Š“Š·ŃŠ»ŠµŠ½Š½Šµ Š±Ń–ŃŠ»Š°Š³Ń–Ń‡Š½Ń‹Ń… навук'),
(96023, 79587, 'en', 'name', 'Department of Biological Sciences'),
(96024, 79588, 'en', 'name', 'Memorial Medical Center Foundation'),
(96025, 79589, 'it', 'name', 'ASST Fatebenefratelli Sacco'),
(96026, 79590, 'no_lang_code', 'name', 'Zacros (Japan)'),
(96027, 79591, 'no_lang_code', 'name', 'Theragenics Corporation (United States)'),
(96028, 79592, 'no_lang_code', 'name', 'Hottinger Baldwin Messtechnik (United Kingdom)'),
(96029, 79593, 'no_lang_code', 'name', '3V Sigma (Italy)'),
(96030, 79594, 'de', 'name', 'Institut für Gerontologische Forschung'),
(96031, 79594, 'en', 'name', 'Institute for Gerontological Research'),
(96032, 79595, 'en', 'name', 'CTOR Press'),
(96033, 79596, 'no_lang_code', 'name', 'naviHealth (United States)'),
(96034, 79597, 'en', 'name', 'Nebraska Public Health Laboratory'),
(96035, 79598, 'de', 'name', 'ESWE Verkehrsgesellschaft'),
(96036, 79598, 'no_lang_code', 'name', 'ESWE Transport Company (Germany)'),
(96037, 79599, 'no_lang_code', 'name', 'Linak (Denmark)'),
(96038, 79600, 'no_lang_code', 'name', 'Recludix Pharma (United States)'),
(96039, 79601, 'no_lang_code', 'name', 'Capsum (France)'),
(96040, 79602, 'no_lang_code', 'name', 'R3Logic (United States)'),
(96041, 79603, 'en', 'name', 'Caritas Cyprus'),
(96042, 79604, 'en', 'name', 'Ningxia Center for Diseases Prevention and Control'),
(96043, 79604, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(96044, 79605, 'de', 'name', 'Zentrallaboratorium Deutscher Apotheker'),
(96045, 79606, 'de', 'name', 'Bayerisches Staatsinstitut für Hochschulforschung und Hochschulplanung'),
(96046, 79607, 'en', 'name', 'Green Communities Canada'),
(96047, 79608, 'no_lang_code', 'name', 'Tec-Masters (United States)'),
(96048, 79609, 'en', 'name', 'Chillicothe VA Medical Center'),
(96049, 79610, 'no_lang_code', 'name', 'Volition (Belgium)'),
(96050, 79611, 'no_lang_code', 'name', 'Innoviva (United States)'),
(96051, 79612, 'en', 'name', 'Shanghai Institute of Computing Technology'),
(96052, 79612, 'zh', 'name', 'äøŠęµ·åø‚č®”ē®—ęŠ€ęœÆē ”ē©¶ę‰€'),
(96053, 79613, 'no_lang_code', 'name', 'Volition (Singapore)'),
(96054, 79614, 'no_lang_code', 'name', 'Rani Therapeutics (United States)'),
(96055, 79615, 'de', 'name', 'Betriebswirtschaftliches Institut für Empirische Gründungs- und Organisationsforschung'),
(96056, 79616, 'hi', 'name', 'ą¤¬ą¤¾ą¤²ą¤¾ą¤œą„€ ą¤‰ą¤¤ą„ą¤„ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(96057, 79616, 'no_lang_code', 'name', 'Balaji Utthan Sansthan'),
(96058, 79617, 'de', 'name', 'Deutscher Volkshochschul-Verband'),
(96059, 79617, 'en', 'name', 'German Adult Education Association'),
(96060, 79618, 'no_lang_code', 'name', 'Energy Fuels (United States)'),
(96061, 79619, 'en', 'name', 'Musoon Women''s Clinic'),
(96062, 79619, 'zh', 'name', 'ęœØē”Ÿå©¦ē”¢ē§‘čØŗę‰€'),
(96063, 79620, 'no_lang_code', 'name', 'Bardy Diagnostics (United States)'),
(96064, 79621, 'en', 'name', 'Supershine University'),
(96065, 79622, 'no_lang_code', 'name', 'AYR (United Kingdom)'),
(96066, 79623, 'no_lang_code', 'name', 'Akoya Biosciences (United States)'),
(96067, 79624, 'no_lang_code', 'name', 'Armscor (South Africa)'),
(96068, 79625, 'no_lang_code', 'name', 'R.M. Associates (United States)'),
(96069, 79626, 'es', 'name', 'Escuela Internacional de Negocios y Desarrollo Empresarial de Colombia'),
(96070, 79627, 'no_lang_code', 'name', 'Nyxoah (Belgium)'),
(96071, 79628, 'en', 'name', 'Society For Environment And Development'),
(96072, 79628, 'hi', 'name', 'ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤°ą¤£ और विकास ą¤•ą„‡ ą¤²ą¤æą¤ ą¤øą„‹ą¤øą¤¾ą¤Æą¤Ÿą„€'),
(96073, 79629, 'en', 'name', 'Hamburg Commercial Bank'),
(96074, 79630, 'no_lang_code', 'name', 'Lumtec (Taiwan)'),
(96075, 79631, 'no_lang_code', 'name', 'Juul (United States)'),
(96076, 79632, 'no_lang_code', 'name', 'CK Hutchison (China)'),
(96077, 79632, 'zh', 'name', 'é•·ę±Ÿå’ŒčØ˜åÆ¦ę„­ęœ‰é™å…¬åø'),
(96078, 79633, 'en', 'name', 'Rehabilitation College Shimane'),
(96079, 79633, 'ja', 'name', 'ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚«ćƒ¬ćƒƒć‚øå³¶ę ¹'),
(96080, 79634, 'no_lang_code', 'name', 'Z-Terra (United States)'),
(96081, 79635, 'no_lang_code', 'name', 'Interface (United Kingdom)'),
(96082, 79636, 'en', 'name', 'Tierra Verde Nature and Culture'),
(96083, 79636, 'es', 'name', 'Tierra Verde Naturaleza y Cultura'),
(96084, 79637, 'no_lang_code', 'name', 'Lorem Vascular (Singapore)'),
(96085, 79638, 'no_lang_code', 'name', 'Incept (United States)'),
(96086, 79639, 'en', 'name', 'Federal Reserve'),
(96087, 79640, 'no_lang_code', 'name', 'Xilio Therapeutics (United States)'),
(96088, 79641, 'no_lang_code', 'name', 'Optitek (United States)'),
(96089, 79642, 'no_lang_code', 'name', 'Vyaire Medical (United States)'),
(96090, 79643, 'de', 'name', 'Katalyse Institut'),
(96091, 79644, 'no_lang_code', 'name', 'The Eppley Laboratory (United States)'),
(96092, 79645, 'no_lang_code', 'name', 'Itasca Consultants (United States)'),
(96093, 79646, 'no_lang_code', 'name', 'Institut für Molekularbiologie und Analytik (Germany)'),
(96094, 79647, 'no_lang_code', 'name', 'Implantica (Switzerland)'),
(96095, 79648, 'no_lang_code', 'name', 'Translational Sciences (United States)'),
(96096, 79649, 'en', 'name', 'Hachinohe Kodai2 High School'),
(96097, 79649, 'ja', 'name', 'å…«ęˆøå·„ę„­å¤§å­¦ē¬¬äŗŒé«˜ē­‰å­¦ę ”'),
(96098, 79650, 'no_lang_code', 'name', 'Solar Roadways (United States)'),
(96099, 79651, 'en', 'name', 'Microstructure and Pores'),
(96100, 79652, 'no_lang_code', 'name', 'Stadtwerke Offenbach (Germany)'),
(96101, 79653, 'no_lang_code', 'name', 'LightTrans (Germany)'),
(96102, 79654, 'no_lang_code', 'name', 'SACHEM (United States)'),
(96103, 79655, 'no_lang_code', 'name', 'Iasis Molecular Sciences (United States)'),
(96104, 79656, 'en', 'name', 'Hangzhou Medical College'),
(96105, 79656, 'zh', 'name', 'ę­å·žåŒ»å­¦é™¢'),
(96106, 79657, 'no_lang_code', 'name', 'Solutia (Czechia)'),
(96107, 79658, 'de', 'name', 'Institut für Hochschulforschung'),
(96108, 79659, 'en', 'name', 'Freedom From Diabetes'),
(96109, 79660, 'en', 'name', 'The Talent Development Education Research Foundation'),
(96110, 79660, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę‰čƒ½é–‹ē™ŗę•™č‚²ē ”ē©¶č²”å›£'),
(96111, 79661, 'no_lang_code', 'name', 'Forte (United States)'),
(96112, 79662, 'no_lang_code', 'name', 'TCG Crest'),
(96113, 79663, 'no_lang_code', 'name', 'STgenetics (United States)'),
(96114, 79664, 'en', 'name', 'Providence St. Mary Medical Center'),
(96115, 79665, 'no_lang_code', 'name', 'Robust Analysis (United States)'),
(96116, 79666, 'no_lang_code', 'name', 'Zhejiang Medicine (China)'),
(96117, 79667, 'de', 'name', 'Forschungsinstitut Geragogik'),
(96118, 79668, 'no_lang_code', 'name', 'Roche (Turkey)'),
(96119, 79669, 'no_lang_code', 'name', 'Marui Galvanizing (Japan)'),
(96120, 79670, 'en', 'name', 'Australian National Fish Collection'),
(96121, 79671, 'en', 'name', 'Social Awareness Through Human Involvement'),
(96122, 79672, 'no_lang_code', 'name', 'PreCyte (United States)'),
(96123, 79673, 'en', 'name', 'The Crop Science Society of China'),
(96124, 79673, 'zh', 'name', 'äø­å›½ä½œē‰©å­¦ä¼š'),
(96125, 79674, 'no_lang_code', 'name', 'HOBAS (Germany)'),
(96126, 79675, 'en', 'name', 'Children’s Future International'),
(96127, 79676, 'de', 'name', 'Deutsche Meeresmuseum'),
(96128, 79676, 'en', 'name', 'German Oceanographic Museum'),
(96129, 79677, 'no_lang_code', 'name', 'TerraMetrics (United States)'),
(96130, 79678, 'ar', 'name', 'نقابة Ų§Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(96131, 79678, 'en', 'name', 'Egyptian Engineers Syndicate'),
(96132, 79679, 'no_lang_code', 'name', 'Syntheon (United States)'),
(96133, 79680, 'no_lang_code', 'name', 'Tetra Research (United States)'),
(96134, 79681, 'en', 'name', 'Chongqing Academy of Agricultural Sciences'),
(96135, 79681, 'zh', 'name', 'é‡åŗ†åø‚å†œäøšē§‘å­¦é™¢'),
(96136, 79682, 'en', 'name', 'Peermade Development Society'),
(96137, 79683, 'pl', 'name', 'Wojewódzki Szpital Specjalistyczny Nr 2'),
(96138, 79684, 'no_lang_code', 'name', 'Anges (Japan)'),
(96139, 79685, 'en', 'name', 'Coleridge Initiative'),
(96140, 79686, 'no_lang_code', 'name', 'CEM (United States)'),
(96141, 79687, 'no_lang_code', 'name', 'Nimbis Services (United States)'),
(96142, 79688, 'en', 'name', 'China Science Center of International Eurasian Academy of Sciences'),
(96143, 79688, 'zh', 'name', 'å›½é™…ę¬§äŗšē§‘å­¦é™¢äø­å›½ē§‘å­¦äø­åæƒ'),
(96144, 79689, 'no_lang_code', 'name', 'Kinex Bearings (Slovakia)'),
(96145, 79690, 'no_lang_code', 'name', 'Spectra Group Limited (United States)'),
(96146, 79691, 'no_lang_code', 'name', 'Kuantum Papers (India)'),
(96147, 79692, 'no_lang_code', 'name', '3D Systems (United Kingdom)'),
(96148, 79693, 'no_lang_code', 'name', 'Institut für Bauwerkserhaltung und Sanierung (Germany)'),
(96149, 79694, 'en', 'name', 'Salmon Technology Institute'),
(96150, 79694, 'es', 'name', 'Instituto Tecnológico del Salmón'),
(96151, 79695, 'no_lang_code', 'name', 'Nevada Composites (United States)'),
(96152, 79696, 'en', 'name', 'London Internet Exchange'),
(96153, 79697, 'no_lang_code', 'name', 'Dipharma (Italy)'),
(96154, 79698, 'en', 'name', 'Joint Center for Artificial Photosynthesis'),
(96155, 79699, 'no_lang_code', 'name', 'Rebound (United States)'),
(96156, 79700, 'no_lang_code', 'name', 'Biocrine (Sweden)'),
(96157, 79701, 'en', 'name', 'Marine Ecology and Telemetry Research'),
(96158, 79702, 'no_lang_code', 'name', 'Nanzhong Zhangzhongjing Hospital'),
(96159, 79702, 'zh', 'name', 'å—é˜³å¼ ä»²ę™ÆåŒ»é™¢'),
(96160, 79703, 'en', 'name', 'Max Planck-Bristol Centre for Minimal Biology'),
(96161, 79704, 'az', 'name', 'Azərbaycan Tibb Assosiasiyası'),
(96162, 79704, 'en', 'name', 'Azerbaijan Medical Association'),
(96163, 79705, 'no_lang_code', 'name', 'Nurix (United States)'),
(96164, 79706, 'no_lang_code', 'name', 'SlovenskƩ ElektrƔrne (Slovakia)'),
(96165, 79707, 'no_lang_code', 'name', 'Mimedx (United States)'),
(96166, 79708, 'no_lang_code', 'name', 'Vascor (United States)'),
(96167, 79709, 'en', 'name', 'Allen Institute for Cell Science'),
(96168, 79710, 'no_lang_code', 'name', 'Northern Gas Networks (United Kingdom)'),
(96169, 79711, 'en', 'name', 'The Fourth People''s Hospital of Ningxia Hui Autonomous Region'),
(96170, 79711, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗē¬¬å››äŗŗę°‘åŒ»é™¢'),
(96171, 79712, 'sk', 'name', 'Nemocnica Malacky'),
(96172, 79713, 'no_lang_code', 'name', 'Qusemde (United States)'),
(96173, 79714, 'no_lang_code', 'name', 'Active Fiber Systems (Germany)'),
(96174, 79715, 'no_lang_code', 'name', 'Nkmax (South Korea)'),
(96175, 79716, 'en', 'name', 'Ningxia Academy of Social Sciences'),
(96176, 79716, 'zh', 'name', 'å®å¤ē¤¾ä¼šē§‘å­¦é™¢'),
(96177, 79717, 'no_lang_code', 'name', 'Aequor (United States)'),
(96178, 79718, 'en', 'name', 'Federal Reserve Bank of Dallas'),
(96179, 79719, 'no_lang_code', 'name', 'PV Crystalox Solar (Germany)'),
(96180, 79720, 'en', 'name', 'The Hong Kong Council of Social Service'),
(96181, 79720, 'zh', 'name', 'é¦™ęøÆē¤¾ęœƒęœå‹™čÆęœƒ'),
(96182, 79721, 'no_lang_code', 'name', 'Cardio Flow (United States)'),
(96183, 79722, 'no_lang_code', 'name', 'Optical Air Data Systems (United States)'),
(96184, 79723, 'no_lang_code', 'name', 'Halkey-Roberts (United States)'),
(96185, 79724, 'no_lang_code', 'name', 'Atrion Medical (United States)'),
(96186, 79725, 'en', 'name', 'The First People''s Hospital of Xiaoshan District, Hangzhou'),
(96187, 79725, 'zh', 'name', 'ę­å·žåø‚č§å±±åŒŗē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(96188, 79726, 'de', 'name', 'Stiftung SozialpƤdagogisches Institut'),
(96189, 79727, 'no_lang_code', 'name', 'GEWOS (Germany)'),
(96190, 79728, 'en', 'name', 'Simetri Foundation'),
(96191, 79728, 'id', 'name', 'Yayasan Simetri'),
(96192, 79729, 'no_lang_code', 'name', 'Technetix (United Kingdom)'),
(96193, 79730, 'it', 'name', 'Fondazione Piemontese per la Ricerca sul Cancro Onlus'),
(96194, 79731, 'es', 'name', 'Hospital de Emergencias Jose Casimiro Ulloa'),
(96195, 79732, 'no_lang_code', 'name', 'Institut für Markt- und Werbeforschung (Germany)'),
(96196, 79733, 'no_lang_code', 'name', 'RDMChem (United States)'),
(96197, 79734, 'no_lang_code', 'name', 'Adimab (United States)'),
(96198, 79735, 'no_lang_code', 'name', 'Windmill (United States)'),
(96199, 79736, 'no_lang_code', 'name', 'Pansophia'),
(96200, 79737, 'en', 'name', 'Institute of Forest Ecology, Environment and Protection'),
(96201, 79737, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢ę£®ęž—ē”Ÿę€ēŽÆå¢ƒäøŽäæęŠ¤ē ”ē©¶ę‰€'),
(96202, 79738, 'no_lang_code', 'name', 'Kunshan SW laser Technology (China)'),
(96203, 79739, 'no_lang_code', 'name', 'Silicon Micro Display (United States)'),
(96204, 79740, 'de', 'name', 'Gollwitzer-Meier-Klinik'),
(96205, 79741, 'ja', 'name', '徳島市民病院'),
(96206, 79741, 'no_lang_code', 'name', 'Tokushima Municipal Hospital'),
(96207, 79742, 'en', 'name', 'Jinan Infectious Disease Hospital'),
(96208, 79742, 'zh', 'name', 'ęµŽå—åø‚ä¼ ęŸ“ē—…åŒ»é™¢'),
(96209, 79743, 'no_lang_code', 'name', 'Aap Implantate (Germany)'),
(96210, 79744, 'en', 'name', 'Ankara Hacı Bayram Veli University'),
(96211, 79744, 'tr', 'name', 'Ankara Hacı Bayram Veli Üniversitesi'),
(96212, 79745, 'no_lang_code', 'name', 'Zata Pharmaceuticals (United States)'),
(96213, 79746, 'no_lang_code', 'name', 'DHI (Slovakia)'),
(96214, 79747, 'no_lang_code', 'name', 'Ethris (Germany)'),
(96215, 79748, 'en', 'name', 'Jack C. Montgomery VA Medical Center'),
(96216, 79749, 'de', 'name', 'Ev. Diakonissenkrankenhaus Leipzig'),
(96217, 79750, 'de', 'name', 'Zentrum Digitalisierung.Bayern'),
(96218, 79751, 'de', 'name', 'Vetter Pharma-Fertigung'),
(96219, 79751, 'no_lang_code', 'name', 'Vetter (Germany)'),
(96220, 79752, 'en', 'name', 'National Highway Institute'),
(96221, 79753, 'en', 'name', 'Research Center for Humanities and Social Sciences, Academia Sinica'),
(96222, 79753, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢äŗŗę–‡ē¤¾ęœƒē§‘å­øē ”ē©¶äø­åæƒ'),
(96223, 79754, 'en', 'name', 'National Institute for Occupational Health and Poison Control'),
(96224, 79754, 'zh', 'name', 'äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒčŒäøšå«ē”ŸäøŽäø­ęÆ’ęŽ§åˆ¶ę‰€'),
(96225, 79755, 'hi', 'name', 'ą¤•ą„ƒą¤·ą„€ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤° , करऔा'),
(96226, 79755, 'no_lang_code', 'name', 'Krishi Vigyan Kendra, Karda'),
(96227, 79756, 'de', 'name', 'Gesellschaft für Konsumforschung'),
(96228, 79756, 'no_lang_code', 'name', 'GfK (Germany)'),
(96229, 79757, 'no_lang_code', 'name', 'OrthoSensor (United States)'),
(96230, 79758, 'no_lang_code', 'name', 'Mapi Pharma (Israel)'),
(96231, 79759, 'no_lang_code', 'name', 'Helixmith (South Korea)'),
(96232, 79760, 'no_lang_code', 'name', 'SK Capital (United States)'),
(96233, 79761, 'no_lang_code', 'name', 'Teachley (United States)'),
(96234, 79762, 'no_lang_code', 'name', 'Altair Engineering (United Kingdom)'),
(96235, 79763, 'no_lang_code', 'name', 'PurpleSun (United States)'),
(96236, 79764, 'no_lang_code', 'name', 'ON Semiconductor (Slovakia)'),
(96237, 79765, 'no_lang_code', 'name', 'Phyto-Technologies (United States)'),
(96238, 79766, 'ja', 'name', 'ć„ć™ć‚žäø­å¤®ē ”ē©¶ę‰€'),
(96239, 79766, 'no_lang_code', 'name', 'Isuzu Advanced Engineering Center (Japan)'),
(96240, 79767, 'no_lang_code', 'name', 'Spirax Sarco (United Kingdom)'),
(96241, 79768, 'no_lang_code', 'name', 'Industrie Borla (Italy)'),
(96242, 79769, 'no_lang_code', 'name', 'Health & Life (Taiwan)'),
(96243, 79769, 'zh', 'name', 'åˆäø–ē”Ÿé†«ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(96244, 79770, 'de', 'name', 'Bundesverband MuseumspƤdagogik'),
(96245, 79771, 'en', 'name', 'British Athletics'),
(96246, 79772, 'no_lang_code', 'name', 'Polyhedron Learning Media (United States)'),
(96247, 79773, 'no_lang_code', 'name', 'Q-Cells (Germany)'),
(96248, 79774, 'no_lang_code', 'name', 'RxFunction (United States)'),
(96249, 79775, 'no_lang_code', 'name', 'Entangly (Sweden)'),
(96250, 79776, 'ja', 'name', 'ę–°é›»å…ƒå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(96251, 79776, 'no_lang_code', 'name', 'Shindengen Electric Manufacturing (Japan)'),
(96252, 79777, 'en', 'name', 'MRC London Institute of Medical Sciences'),
(96253, 79778, 'no_lang_code', 'name', 'Emery Oleochemicals (Malaysia)'),
(96254, 79779, 'en', 'name', 'Australian Tree Seed Centre'),
(96255, 79780, 'en', 'name', 'Portuguese Association for the Conservation of Grapevine Diversity'),
(96256, 79780, 'pt', 'name', 'Associação Portuguesa para a Diversidade da Videira'),
(96257, 79781, 'en', 'name', 'Federal Reserve Bank of San Francisco'),
(96258, 79782, 'en', 'name', 'Kishokai Medical Corporation'),
(96259, 79782, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗ č‘µé˜ä¼š'),
(96260, 79783, 'en', 'name', 'Cemmap'),
(96261, 79784, 'en', 'name', 'The Wojciech Kętrzyński Northern Institute'),
(96262, 79784, 'pl', 'name', 'Instytut Północny im. W. Kętrzyńskiego'),
(96263, 79785, 'de', 'name', 'Institut für Internationale Stadtforschung'),
(96264, 79785, 'en', 'name', 'Institute for International Urban Research'),
(96265, 79786, 'no_lang_code', 'name', 'Providence Medical Technology (United States)'),
(96266, 79787, 'no_lang_code', 'name', 'Valtris Specialty Chemicals (United States)'),
(96267, 79788, 'en', 'name', 'Centre for Research and Development'),
(96268, 79789, 'no_lang_code', 'name', 'Supratek Pharma (Canada)'),
(96269, 79790, 'no_lang_code', 'name', 'Lorentz Solution (United States)'),
(96270, 79791, 'no_lang_code', 'name', 'SoftServe (United States)'),
(96271, 79792, 'en', 'name', 'Centre for Health and Social Justice'),
(96272, 79793, 'no_lang_code', 'name', 'Metacept (United States)'),
(96273, 79794, 'no_lang_code', 'name', 'NanoVector (United States)'),
(96274, 79795, 'en', 'name', 'Hangzhou Cancer Hospital'),
(96275, 79795, 'zh', 'name', 'ę­å·žåø‚č‚æē˜¤åŒ»é™¢'),
(96276, 79796, 'no_lang_code', 'name', 'Bridge Pharma (United States)'),
(96277, 79797, 'de', 'name', 'Fraunhofer-Institut für Energiewirtschaft und Energiesystemtechnik'),
(96278, 79797, 'en', 'name', 'Fraunhofer Institute for Energy Economics and Energy System Technology'),
(96279, 79798, 'en', 'name', 'Qingdao Women and Children''s Hospital'),
(96280, 79798, 'zh', 'name', 'é’å²›åø‚å¦‡å„³å„æē«„åŒ»é™¢'),
(96281, 79799, 'en', 'name', 'Jiangsu Provincial Family Planning Institute of Science and Technology'),
(96282, 79799, 'zh', 'name', 'ę±Ÿč‹ēœč®”åˆ’ē”Ÿč‚²ē§‘å­¦ęŠ€ęœÆē ”ē©¶ę‰€'),
(96283, 79800, 'no_lang_code', 'name', 'Zoetis (Belgium)'),
(96284, 79801, 'no_lang_code', 'name', 'TIB Molbiol (Germany)'),
(96285, 79802, 'en', 'name', 'National Zoological Gardens of South Africa'),
(96286, 79803, 'en', 'name', 'Ministry of Law and Justice'),
(96287, 79803, 'hi', 'name', 'विधि और ą¤Øą„ą¤Æą¤¾ą¤Æ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(96288, 79804, 'en', 'name', 'Institute of New Technology of Forestry'),
(96289, 79805, 'en', 'name', 'Hong Kong College of Health Service Executives'),
(96290, 79805, 'zh', 'name', 'é¦™ęøÆå«ē”Ÿå­¦é™¢č”Œę”æäŗŗå‘˜'),
(96291, 79806, 'en', 'name', 'Hospice Palliative Care Alliance of China Foundation'),
(96292, 79807, 'en', 'name', 'Xiang Yang No.1 People''s Hospital'),
(96293, 79807, 'zh', 'name', 'č„„é˜³åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(96294, 79808, 'no_lang_code', 'name', 'Senior Flexonics (Germany)'),
(96295, 79809, 'no_lang_code', 'name', 'IMDS (United States)'),
(96296, 79810, 'no_lang_code', 'name', 'Philotek (United States)'),
(96297, 79811, 'en', 'name', 'Royal Museums Greenwich'),
(96298, 79812, 'no_lang_code', 'name', 'Vocalid (United States)'),
(96299, 79813, 'no_lang_code', 'name', 'Simplify Medical (United States)'),
(96300, 79814, 'en', 'name', 'Federal Reserve Bank of Atlanta'),
(96301, 79815, 'no_lang_code', 'name', 'Henkel (United Kingdom)'),
(96302, 79816, 'en', 'name', 'NIST Center for Neutron Research'),
(96303, 79817, 'en', 'name', 'Microbiomas Foundation'),
(96304, 79817, 'es', 'name', 'Asociación Fundación de Investigación Microbiomas'),
(96305, 79818, 'no_lang_code', 'name', 'Lutronic (South Korea)'),
(96306, 79819, 'en', 'name', 'British Dental Association'),
(96307, 79820, 'en', 'name', 'Center for Sustainable Future Technologies'),
(96308, 79821, 'en', 'name', 'National Academy of Sciences'),
(96309, 79821, 'es', 'name', 'Academia Nacional de Ciencias'),
(96310, 79822, 'en', 'name', 'Tropical Agricultural Machinery Research Institute'),
(96311, 79822, 'zh', 'name', 'å†œäøšęœŗę¢°ē ”ē©¶ę‰€'),
(96312, 79823, 'no_lang_code', 'name', 'Chemi (Italy)'),
(96313, 79824, 'no_lang_code', 'name', 'PsiKick (United States)'),
(96314, 79825, 'no_lang_code', 'name', 'Tex Tech Industries (United States)'),
(96315, 79826, 'en', 'name', 'Centre of Technology & Entrepreneurship Development'),
(96316, 79827, 'en', 'name', 'Dazhou Central Hospital'),
(96317, 79827, 'zh', 'name', 'č¾¾å·žåø‚äø­åæƒåŒ»é™¢'),
(96318, 79828, 'no_lang_code', 'name', 'Harro Hƶfliger (Germany)'),
(96319, 79829, 'no_lang_code', 'name', 'HoMedics (United States)'),
(96320, 79830, 'no_lang_code', 'name', 'Glo (Sweden)'),
(96321, 79831, 'en', 'name', 'Center for Nanotechnology Innovation'),
(96322, 79831, 'it', 'name', 'Centro per l''Innovazione delle Nanotecnologie'),
(96323, 79832, 'en', 'name', 'Institute of Linguistics, Academia Sinica'),
(96324, 79832, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢čŖžčØ€å­øē ”ē©¶ę‰€'),
(96325, 79833, 'es', 'name', 'Weber'),
(96326, 79834, 'en', 'name', 'Hague Institute of Private International and Foreign Law'),
(96327, 79834, 'nl', 'name', 'Stichting Internationaal Juridisch Instituut'),
(96328, 79835, 'no_lang_code', 'name', 'CACI International (United Kingdom)'),
(96329, 79836, 'en', 'name', 'Islamic Azad University Ilam Branch'),
(96330, 79836, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§ŪŒŁ„Ų§Ł…'),
(96331, 79837, 'no_lang_code', 'name', 'r2b Energy Consulting (Germany)'),
(96332, 79838, 'en', 'name', 'Empower Tanzania'),
(96333, 79839, 'no_lang_code', 'name', 'OtoScience Labs (United States)'),
(96334, 79840, 'no_lang_code', 'name', 'Lamberti (Italy)'),
(96335, 79841, 'en', 'name', 'ISBAT University'),
(96336, 79842, 'pt', 'name', 'Unidade Hospitalar de BraganƧa'),
(96337, 79843, 'de', 'name', 'Institut für Wildbiologie Göttingen und Dresden'),
(96338, 79844, 'no_lang_code', 'name', 'Derwen (United States)'),
(96339, 79845, 'no_lang_code', 'name', 'Erregierre (Italy)'),
(96340, 79846, 'en', 'name', 'Slovak Technical Museum'),
(96341, 79846, 'sk', 'name', 'Slovenské Technické Múzeum'),
(96342, 79847, 'en', 'name', 'North Carolina Natural Heritage Program'),
(96343, 79848, 'de', 'name', 'Landwirtschaftliches Technologiezentrum Augustenberg'),
(96344, 79849, 'no_lang_code', 'name', 'Kobo Products (United States)'),
(96345, 79850, 'en', 'name', 'Zhanjiang Experimental Station'),
(96346, 79850, 'zh', 'name', 'ę¹›ę±Ÿå®žéŖŒē«™'),
(96347, 79851, 'de', 'name', 'München Klinik Neuperlach'),
(96348, 79852, 'en', 'name', 'Hokkaido Chitose College of Rehabilitation'),
(96349, 79852, 'ja', 'name', 'åŒ—ęµ·é“åƒę­³ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å¤§å­¦'),
(96350, 79853, 'no_lang_code', 'name', 'Mycomed (United States)'),
(96351, 79854, 'en', 'name', 'Hong Kong Trade Development Council'),
(96352, 79854, 'zh', 'name', 'é¦™ęøÆč²æę˜“ē™¼å±•å±€'),
(96353, 79855, 'en', 'name', 'The College of Veracruz'),
(96354, 79855, 'es', 'name', 'El Colegio de Veracruz'),
(96355, 79856, 'en', 'name', 'Sierra Leone Urban Research Centre'),
(96356, 79857, 'de', 'name', 'Westdeutscher Rundfunk'),
(96357, 79857, 'no_lang_code', 'name', 'West German Broadcasting Cologne'),
(96358, 79858, 'no_lang_code', 'name', 'Optodot (United States)'),
(96359, 79859, 'en', 'name', 'InterPore'),
(96360, 79860, 'de', 'name', 'Institut für das Bauen mit Kunststoffen'),
(96361, 79861, 'de', 'name', 'Bach Archiv Leipzig'),
(96362, 79862, 'no_lang_code', 'name', 'Semikron (United Kingdom)'),
(96363, 79863, 'en', 'name', 'Australian Centre for Heart Health'),
(96364, 79864, 'no_lang_code', 'name', 'Modular Bionics (United States)'),
(96365, 79865, 'en', 'name', 'Greater Manchester Mental Health NHS Foundation Trust'),
(96366, 79866, 'no_lang_code', 'name', 'China Petrochemical Development Corporation (Taiwan)'),
(96367, 79866, 'zh', 'name', 'äø­åœ‹ēŸ³ę²¹åŒ–å­øå·„ę„­é–‹ē™¼č‚”ä»½ęœ‰é™å…¬åø'),
(96368, 79867, 'en', 'name', 'Research Institute of Subtropical Foresty'),
(96369, 79867, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢äŗšēƒ­åø¦ęž—äøšē ”ē©¶ę‰€'),
(96370, 79868, 'en', 'name', 'Centre for Evaluation in Education and Science'),
(96371, 79869, 'en', 'name', 'Veterinary And Animal Husbandry Services'),
(96372, 79870, 'en', 'name', 'British Neuroscience Association'),
(96373, 79871, 'en', 'name', 'TepatitlƔn''s Institute for Theoretical Studies'),
(96374, 79872, 'pt', 'name', 'Unifunec - Centro UniversitƔrio de Santa FƩ do Sul'),
(96375, 79873, 'en', 'name', 'Nigeria Centre for Disease Control'),
(96376, 79874, 'no_lang_code', 'name', 'SURAGUS (Germany)'),
(96377, 79875, 'en', 'name', 'University Transportation Center for Alabama'),
(96378, 79876, 'de', 'name', 'Deutsche Vereinigung für Verbrennungsforschung'),
(96379, 79877, 'en', 'name', 'George H. O''Brien, Jr. VA Medical Center'),
(96380, 79878, 'en', 'name', 'American Institute for Behavioral Research and Technology'),
(96381, 79879, 'no_lang_code', 'name', 'Spineart (Switzerland)'),
(96382, 79880, 'en', 'name', 'Chiba Environment Foundation'),
(96383, 79880, 'ja', 'name', 'åƒč‘‰ēœŒē’°å¢ƒč²”å›£'),
(96384, 79881, 'en', 'name', 'Aberdeen Science Centre'),
(96385, 79882, 'en', 'name', 'Hunan Provincial Maternal and Child Health Hospital'),
(96386, 79882, 'zh', 'name', 'ę¹–å—ēœå¦‡å¹¼äæå„é™¢'),
(96387, 79883, 'no_lang_code', 'name', 'Geuder (Germany)'),
(96388, 79884, 'no_lang_code', 'name', 'Optimal Solutions (United States)'),
(96389, 79885, 'ja', 'name', 'ę „é¤Šē—…ē†ē ”ē©¶ę‰€'),
(96390, 79885, 'no_lang_code', 'name', 'Institute of Nutrition and Pathology (Japan)'),
(96391, 79886, 'en', 'name', 'Puyang Vocational and Technical College'),
(96392, 79886, 'zh', 'name', 'ęæ®é˜³čŒäøšęŠ€ęœÆå­¦é™¢'),
(96393, 79887, 'en', 'name', 'Institute for Natural Resources in Africa'),
(96394, 79888, 'en', 'name', 'Wuhan Center for Disease Control and Prevention'),
(96395, 79888, 'zh', 'name', 'ę­¦ę±‰åø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(96396, 79889, 'no_lang_code', 'name', 'SlovenskƩ MagnezitovƩ ZƔvody (Slovakia)'),
(96397, 79890, 'en', 'name', 'Institute for Systems Studies & Analyses'),
(96398, 79891, 'fr', 'name', 'Unitaid'),
(96399, 79892, 'en', 'name', 'Sci Paper Edit'),
(96400, 79893, 'en', 'name', 'Cluster of Excellence "Matters of Activity. Image Space Material"'),
(96401, 79894, 'no_lang_code', 'name', 'Voci (United States)'),
(96402, 79895, 'en', 'name', 'Gansu Provincial Center for Disease Control and Prevention'),
(96403, 79895, 'zh', 'name', 'ē”˜č‚ƒēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(96404, 79896, 'en', 'name', 'S.P.E.C.I.E.S.'),
(96405, 79897, 'en', 'name', 'American Trucking Associations'),
(96406, 79898, 'no_lang_code', 'name', 'Helix Biomedix (United States)'),
(96407, 79899, 'no_lang_code', 'name', 'Gavekal Intelligence Software (France)'),
(96408, 79900, 'no_lang_code', 'name', 'Focus (Germany)'),
(96409, 79901, 'en', 'name', 'Nishinari Labor Welfare Center'),
(96410, 79901, 'ja', 'name', 'č²”å›£ę³•äŗŗč„æęˆåŠ“åƒē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼'),
(96411, 79902, 'no_lang_code', 'name', 'Anthogyr (France)'),
(96412, 79903, 'no_lang_code', 'name', 'Cyclerion (United States)'),
(96413, 79904, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³Ų¹ŁŠŲÆŲ©'),
(96414, 79904, 'en', 'name', 'Al-Saeeda University'),
(96415, 79905, 'no_lang_code', 'name', 'SuperSonic Imagine (France)'),
(96416, 79906, 'no_lang_code', 'name', 'EEW Energy from Waste'),
(96417, 79907, 'no_lang_code', 'name', 'San-Ei Gen F.F.I (Japan)'),
(96418, 79908, 'en', 'name', 'Indian Institute of Management Visakhapatnam'),
(96419, 79908, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤µą¤æą¤¶ą¤¾ą¤–ą¤Ŗą¤Ÿą„ą¤Øą¤®'),
(96420, 79909, 'fr', 'name', 'Groupe de Recherche en Ɖcologie Arctique'),
(96421, 79910, 'en', 'name', 'Peconic Bay Medical Center'),
(96422, 79911, 'no_lang_code', 'name', 'Arthrosurface (United States)'),
(96423, 79912, 'no_lang_code', 'name', 'Disco (Germany)'),
(96424, 79913, 'no_lang_code', 'name', 'Deutsches Dialog Institut (Germany)'),
(96425, 79914, 'no_lang_code', 'name', 'SyncScience (United States)'),
(96426, 79915, 'no_lang_code', 'name', 'Roche (Norway)'),
(96427, 79916, 'az', 'name', 'Milli Aviasiya Akademiyası'),
(96428, 79916, 'en', 'name', 'National Aviation Academy'),
(96429, 79916, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ авиации АзербайГжана'),
(96430, 79917, 'no_lang_code', 'name', 'Omitron (United States)'),
(96431, 79918, 'no_lang_code', 'name', 'Stereotaxis (United States)'),
(96432, 79919, 'no_lang_code', 'name', 'SUSS MicroTec (Germany)'),
(96433, 79920, 'no_lang_code', 'name', 'PredictionProbe (United States)'),
(96434, 79921, 'no_lang_code', 'name', 'Shared Medical Technology (United States)'),
(96435, 79922, 'no_lang_code', 'name', 'Hyprotek (United States)'),
(96436, 79923, 'en', 'name', 'Koforidua Technical University'),
(96437, 79924, 'no_lang_code', 'name', 'Vidrio (United States)'),
(96438, 79925, 'no_lang_code', 'name', 'Atos (United Kingdom)'),
(96439, 79926, 'no_lang_code', 'name', 'Steca Elektronik (Germany)'),
(96440, 79927, 'en', 'name', 'Indian Institute of Soybean Research'),
(96441, 79927, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‹ą¤Æą¤¾ą¤¬ą„€ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(96442, 79928, 'no_lang_code', 'name', 'DM3D Technology (United States)'),
(96443, 79929, 'en', 'name', 'World Health Organization - Slovakia'),
(96444, 79930, 'no_lang_code', 'name', 'Institut für Technische und Angewandte Physik (Germany)'),
(96445, 79931, 'en', 'name', 'Henan Provincial Institute of Cultural Heritage and Archaeology'),
(96446, 79931, 'zh', 'name', 'ę²³å—ēœę–‡ē‰©č€ƒå¤ē ”ē©¶ę‰€');
INSERT INTO `ror_settings` VALUES
(96447, 79932, 'en', 'name', 'Health Protection Research Unit in Emerging and Zoonotic Infections at University of Liverpool'),
(96448, 79933, 'no_lang_code', 'name', 'Schell Games (United States)'),
(96449, 79934, 'no_lang_code', 'name', 'Atom Computing (United States)'),
(96450, 79935, 'no_lang_code', 'name', 'Eisenhuth (Germany)'),
(96451, 79936, 'no_lang_code', 'name', 'Adey (United Kingdom)'),
(96452, 79937, 'en', 'name', 'Farmers Education Association Kashiwa Gakuen Agricultural Nutrition College'),
(96453, 79937, 'ja', 'name', 'éÆ‰ę·µå­¦åœ’č¾²ę„­ę „é¤Šå°‚é–€å­¦ę ”'),
(96454, 79938, 'de', 'name', 'Centre Emys'),
(96455, 79938, 'en', 'name', 'Emys Center'),
(96456, 79939, 'no_lang_code', 'name', 'Ocean Bay (United States)'),
(96457, 79940, 'no_lang_code', 'name', 'ZeoSys Medical (Germany)'),
(96458, 79941, 'en', 'name', 'Advocates Coalition for Development and Environment'),
(96459, 79942, 'no_lang_code', 'name', 'Altergon (Italy)'),
(96460, 79943, 'no_lang_code', 'name', 'Sanofi (Mexico)'),
(96461, 79944, 'no_lang_code', 'name', 'Oakpont (Australia)'),
(96462, 79945, 'no_lang_code', 'name', 'Phoenix Mecano (Switzerland)'),
(96463, 79946, 'en', 'name', 'Children’s Hospital of Fudan University Xiamen Branch'),
(96464, 79946, 'zh', 'name', 'åŽ¦é—Øåø‚å„æē«„åŒ»é™¢ē®€ä»‹'),
(96465, 79947, 'no_lang_code', 'name', 'Persyst (United States)'),
(96466, 79948, 'en', 'name', 'National Institute for Radiological Protection'),
(96467, 79948, 'zh', 'name', 'äø­å›½ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒč¾å°„é˜²ęŠ¤äøŽę øå®‰å…ØåŒ»å­¦ę‰€'),
(96468, 79949, 'no_lang_code', 'name', 'Ovid Therapeutics (United States)'),
(96469, 79950, 'no_lang_code', 'name', 'Schleifring (Germany)'),
(96470, 79951, 'no_lang_code', 'name', 'Integra LifeSciences (Switzerland)'),
(96471, 79952, 'no_lang_code', 'name', 'Deutsche Amphibolin-Werke (Germany)'),
(96472, 79953, 'en', 'name', 'Institute of Structural and Molecular Biology'),
(96473, 79954, 'en', 'name', 'Noah''s Path'),
(96474, 79955, 'en', 'name', 'Colombian Association of Gastroenterology'),
(96475, 79955, 'es', 'name', 'Asociación Colombiana de Gastroenterología'),
(96476, 79956, 'de', 'name', 'Leibniz-Institut für Finanzmarktforschung'),
(96477, 79956, 'en', 'name', 'Leibniz Institute for Financial Research SAFE, Sustainable Architecture for Finance in Europe'),
(96478, 79957, 'no_lang_code', 'name', 'HighFinesse (Germany)'),
(96479, 79958, 'ja', 'name', 'å…¬ē«‹ć¤ć‚‹ćŽē—…é™¢'),
(96480, 79958, 'no_lang_code', 'name', 'Tsurugi Hospital'),
(96481, 79959, 'no_lang_code', 'name', 'Synaptics (United Kingdom)'),
(96482, 79960, 'no_lang_code', 'name', 'CarGurus (United States)'),
(96483, 79961, 'no_lang_code', 'name', 'Valepro (United States)'),
(96484, 79962, 'en', 'name', 'National Mediterranean Botanical Conservatory of Porquerolles'),
(96485, 79962, 'fr', 'name', 'Conservatoire Botanique National MƩditerranƩen de Porquerolles'),
(96486, 79963, 'en', 'name', 'DKFZ-ZMBH Alliance'),
(96487, 79964, 'no_lang_code', 'name', 'Regend Therapeutics (China)'),
(96488, 79965, 'no_lang_code', 'name', 'Preferred Networks (Japan)'),
(96489, 79966, 'no_lang_code', 'name', 'Propper Manufacturing (United States)'),
(96490, 79967, 'no_lang_code', 'name', 'New Amsterdam Sciences (United States)'),
(96491, 79968, 'no_lang_code', 'name', 'FujiFilm VisualSonics (Canada)'),
(96492, 79969, 'no_lang_code', 'name', 'Qrono (United States)'),
(96493, 79970, 'no_lang_code', 'name', 'Deutsche Telekom (Slovakia)'),
(96494, 79971, 'de', 'name', 'Museumsverbund Nordfriesland'),
(96495, 79972, 'no_lang_code', 'name', 'Neutrogena (United States)'),
(96496, 79973, 'ja', 'name', 'åęˆøćƒ¶č°·ē—…é™¢'),
(96497, 79973, 'no_lang_code', 'name', 'Nadogaya Hospital'),
(96498, 79974, 'en', 'name', 'Centre of Biomedical Research'),
(96499, 79974, 'hi', 'name', 'ą¤œą„ˆą¤µ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(96500, 79975, 'no_lang_code', 'name', 'Robotic Technology (United States)'),
(96501, 79976, 'en', 'name', 'Policy Research Center for Environment and Economy'),
(96502, 79977, 'no_lang_code', 'name', 'Sutro Biopharma (United States)'),
(96503, 79978, 'no_lang_code', 'name', 'Venus Medtech (China)'),
(96504, 79979, 'en', 'name', 'IDMRC Institut Engineering Design of Mechatronik System und MPLM'),
(96505, 79980, 'no_lang_code', 'name', 'NxGEN Electronics (United States)'),
(96506, 79981, 'no_lang_code', 'name', 'PICO Technologies (United States)'),
(96507, 79982, 'no_lang_code', 'name', 'Sequoia (United States)'),
(96508, 79983, 'en', 'name', 'Berghof Foundation'),
(96509, 79984, 'no_lang_code', 'name', 'University Medical Pharmaceuticals (United States)'),
(96510, 79985, 'de', 'name', 'Institut für Wohnungswesen Immobilienwirtschaft Stadt- und Regionalentwicklung'),
(96511, 79986, 'en', 'name', 'Secretariat of Housing and Urban Development'),
(96512, 79986, 'es', 'name', 'SecretarĆ­a de Desarrollo Urbano y Vivienda'),
(96513, 79987, 'no_lang_code', 'name', 'Stein Seal (United States)'),
(96514, 79988, 'no_lang_code', 'name', 'Shanghai Science and Technical Publishers (China)'),
(96515, 79988, 'zh', 'name', 'äøŠęµ·ē§‘å­¦ęŠ€ęœÆå‡ŗē‰ˆē¤¾'),
(96516, 79989, 'en', 'name', 'Hainan Earthquake Administration'),
(96517, 79989, 'zh', 'name', 'ęµ·å—ēœåœ°éœ‡å±€'),
(96518, 79990, 'de', 'name', 'Institut für angewandte Forschung im Bauwesen'),
(96519, 79991, 'no_lang_code', 'name', 'Sustainable Business Institute (Germany)'),
(96520, 79992, 'no_lang_code', 'name', 'Europa Service Autovermietung (Germany)'),
(96521, 79993, 'ar', 'name', 'Ų§Ł„Ų¬Ł…Ų¹ŁŠŲ© Ų§Ł„Ł…ŲµŲ±ŁŠŲ© للطب المعملى'),
(96522, 79993, 'en', 'name', 'Egyptian Society of Laboratory Medicine'),
(96523, 79994, 'no_lang_code', 'name', 'Renmatix (United States)'),
(96524, 79995, 'no_lang_code', 'name', 'DocBox (United States)'),
(96525, 79996, 'en', 'name', 'IfG.Research - The Institute for eGovernment'),
(96526, 79997, 'en', 'name', 'Senegal Ministry of Agriculture'),
(96527, 79997, 'fr', 'name', 'Ministère de l''Agriculture et de l''Èquipement Rural'),
(96528, 79998, 'no_lang_code', 'name', 'Zeta Economics (United Kingdom)'),
(96529, 79999, 'no_lang_code', 'name', 'Stadtwerke Dinslaken (Germany)'),
(96530, 80000, 'es', 'name', 'Fundación IRAUy'),
(96531, 80001, 'en', 'name', 'Kivach Nature Reserve'),
(96532, 80001, 'ru', 'name', 'ŠšŠøŠ²Š°Ń‡ заповеГник'),
(96533, 80002, 'no_lang_code', 'name', 'Quark Pharmaceuticals (United States)'),
(96534, 80003, 'en', 'name', 'James Martin Center for Nonproliferation Studies'),
(96535, 80004, 'no_lang_code', 'name', 'Tata Sons (India)'),
(96536, 80005, 'en', 'name', 'Bureau of Justice Statistics'),
(96537, 80006, 'en', 'name', 'Institute of Nephrology of the National Academy of Medical Sciences of Ukraine'),
(96538, 80006, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефрології ŠŠŠœŠ України'),
(96539, 80007, 'en', 'name', 'Kobe Pharmaceutical University'),
(96540, 80007, 'ja', 'name', 'ē„žęˆøč–¬ē§‘å¤§å­¦'),
(96541, 80008, 'en', 'name', 'The Urology Center of Colorado'),
(96542, 80009, 'fr', 'name', 'Clinique des CĆØdres'),
(96543, 80010, 'en', 'name', 'Southeastern Fruit and Tree Nut Research Laboratory'),
(96544, 80011, 'en', 'name', 'Open Targets'),
(96545, 80012, 'no_lang_code', 'name', 'Scoular (United States)'),
(96546, 80013, 'en', 'name', 'National Institute of Technology, Hakodate College'),
(96547, 80013, 'ja', 'name', 'å‡½é¤Øå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(96548, 80014, 'no_lang_code', 'name', 'Nuclera (United Kingdom)'),
(96549, 80015, 'en', 'name', 'Innovation Center of NanoMedicine'),
(96550, 80015, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå·å“Žåø‚ē”£ę„­ęŒÆčˆˆč²”å›£'),
(96551, 80016, 'en', 'name', 'The Ocean Cleanup'),
(96552, 80017, 'en', 'name', 'European Incoherent Scatter Scientific Association'),
(96553, 80018, 'en', 'name', 'Gillies McIndoe Research Institute'),
(96554, 80019, 'en', 'name', 'International Theravada Buddhist Missionary University'),
(96555, 80020, 'en', 'name', 'Islamic University of Indonesia'),
(96556, 80020, 'id', 'name', 'Universitas Islam Indonesia'),
(96557, 80021, 'en', 'name', 'Nagano Matsushiro General Hospital'),
(96558, 80021, 'ja', 'name', 'JAé•·é‡ŽåŽšē”Ÿé€£é•·é‡Žę¾ä»£ē·åˆē—…é™¢'),
(96559, 80022, 'en', 'name', 'Ministry of Health'),
(96560, 80023, 'no_lang_code', 'name', 'Dr. Friedrich Eberth Arzneimittel (Germany)'),
(96561, 80024, 'en', 'name', 'GW4'),
(96562, 80025, 'ja', 'name', 'TOTOę Ŗå¼ä¼šē¤¾'),
(96563, 80025, 'no_lang_code', 'name', 'Toto (Japan)'),
(96564, 80026, 'no_lang_code', 'name', 'Bruce Power (Canada)'),
(96565, 80027, 'en', 'name', 'Yukon Department of Tourism and Culture'),
(96566, 80028, 'ja', 'name', 'ć‚Ŗćƒ³ć‚³ć‚»ćƒ©ćƒ”ćƒ¼ćƒ»ć‚µć‚¤ć‚Øćƒ³ć‚¹ę Ŗå¼ä¼šē¤¾'),
(96567, 80028, 'no_lang_code', 'name', 'OncoTherapy Science (Japan)'),
(96568, 80029, 'en', 'name', 'Noda Institute for Scientific Research'),
(96569, 80029, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé‡Žē”°ē”£ę„­ē§‘å­¦ē ”ē©¶ę‰€'),
(96570, 80030, 'no_lang_code', 'name', 'Grand Ɖquipement National de Calcul Intensif (France)'),
(96571, 80031, 'pt', 'name', 'Fundo de Defesa da Citricultura'),
(96572, 80032, 'en', 'name', 'Affiliated Hospital of Southwest Medical University'),
(96573, 80032, 'zh', 'name', 'č„æå—åŒ»ē§‘å¤§å­¦é™„å±žäø­åŒ»åŒ»é™¢'),
(96574, 80033, 'en', 'name', 'Australian General Practice Accreditation Limited'),
(96575, 80034, 'no_lang_code', 'name', 'Thames Water (United Kingdom)'),
(96576, 80035, 'ja', 'name', 'JAę„›ēŸ„åŽšē”Ÿé€£ę±Ÿå—åŽšē”Ÿē—…é™¢'),
(96577, 80035, 'no_lang_code', 'name', 'Konan Kosei Hospital'),
(96578, 80036, 'no_lang_code', 'name', 'Molecular Devices'),
(96579, 80037, 'en', 'name', 'U SPORTS'),
(96580, 80038, 'en', 'name', 'Eastern Regional Medical Center'),
(96581, 80039, 'ja', 'name', 'ć‚¢ćƒ«ćƒćƒƒć‚Æćƒ»ćƒ•ć‚”ć‚¤ę Ŗå¼ä¼šē¤¾'),
(96582, 80039, 'no_lang_code', 'name', 'Ulvac-Phi (Japan)'),
(96583, 80040, 'no_lang_code', 'name', 'GoodAI (Czechia)'),
(96584, 80041, 'no_lang_code', 'name', 'Data Tecnica International (United States)'),
(96585, 80042, 'en', 'name', 'Canadian Academic Accounting Association'),
(96586, 80043, 'no_lang_code', 'name', 'IriSys (United States)'),
(96587, 80044, 'no_lang_code', 'name', 'Five Prime Therapeutics (United States)'),
(96588, 80045, 'en', 'name', 'Kuban State University of Physical Education, Sport and Tourism'),
(96589, 80045, 'ru', 'name', 'Кубанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(96590, 80046, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الحسن Ų§Ł„Ų«Ų§Ł†ŁŠ'),
(96591, 80046, 'en', 'name', 'University of Hassan II Casablanca'),
(96592, 80046, 'fr', 'name', 'UniversitƩ hassan ii de casablanca'),
(96593, 80047, 'no_lang_code', 'name', 'Jinergy (China)'),
(96594, 80047, 'zh', 'name', 'é‡‘čƒ½ęø…ę“čƒ½ęŗē§‘ęŠ€ęœ‰é™å…¬åø'),
(96595, 80048, 'no_lang_code', 'name', 'Haaretz Group (Israel)'),
(96596, 80049, 'en', 'name', 'Shimon Peres Negev Nuclear Research Center'),
(96597, 80049, 'he', 'name', 'קריה ×œ×ž×—×§×Ø גרעיני – נגב ×¢"ש שמעון פרה'),
(96598, 80050, 'en', 'name', 'University Foundation'),
(96599, 80050, 'fr', 'name', 'Fondation universitaire'),
(96600, 80050, 'nl', 'name', 'Universitaire Stichting'),
(96601, 80051, 'en', 'name', 'The Biblical Institute'),
(96602, 80051, 'hr', 'name', 'Biblijski Institut'),
(96603, 80052, 'en', 'name', 'Canadian Association of Research Libraries'),
(96604, 80052, 'fr', 'name', 'Association des bibliothĆØques de recherche du canada'),
(96605, 80053, 'no_lang_code', 'name', 'Planta'),
(96606, 80054, 'de', 'name', 'Barmherzige Schwestern Krankenhaus Wien'),
(96607, 80055, 'en', 'name', 'Southern Cross University'),
(96608, 80056, 'en', 'name', 'Indian Institute of Management Udaipur'),
(96609, 80056, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‰ą¤¦ą¤Æą¤Ŗą„ą¤°'),
(96610, 80057, 'en', 'name', 'Center of Plant Systems Biology and Biotechnology'),
(96611, 80058, 'ro', 'name', 'Institutul de Urgenţă pentru Boli Cardiovasculare "Prof.Dr. C.C. Iliescu"'),
(96612, 80059, 'en', 'name', 'Worldwise Travellers Health & Vaccination Centres'),
(96613, 80060, 'en', 'name', 'Amosov National Institute of Cardiovascular Surgery'),
(96614, 80061, 'en', 'name', 'Calar Alto Observatory'),
(96615, 80062, 'en', 'name', 'St. Petersburg Research Center of the Russian Academy of Sciences'),
(96616, 80062, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Š ŠŠ'),
(96617, 80063, 'en', 'name', 'Sendai National College of Technology'),
(96618, 80063, 'ja', 'name', 'ä»™å°é«˜ē­‰å°‚é–€å­¦ę ”'),
(96619, 80064, 'en', 'name', 'Keyano College'),
(96620, 80065, 'en', 'name', 'Ark Medical Center'),
(96621, 80066, 'en', 'name', 'Japan Diabetes Foundation'),
(96622, 80066, 'ja', 'name', 'ę—„ęœ¬ē³–å°æē—…č²”å›£'),
(96623, 80067, 'no_lang_code', 'name', 'Bell Resources (Australia)'),
(96624, 80068, 'de', 'name', 'Niedersächsischer Landesbetrieb für Wasserwirtschaft, Küsten- und Naturschutz'),
(96625, 80068, 'en', 'name', 'Lower Saxony State Agency for Water Management, Coastal Protection and Nature Conservation'),
(96626, 80069, 'en', 'name', 'Arctic Research Centre'),
(96627, 80070, 'en', 'name', 'Tokyo Zoological Park Society'),
(96628, 80070, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬å‹•ē‰©åœ’å”ä¼š'),
(96629, 80071, 'en', 'name', 'British Heart Foundation Centre for Cardiovascular Science'),
(96630, 80072, 'pt', 'name', 'Instituto AgronƓmico de Pernambuco'),
(96631, 80073, 'en', 'name', 'University of Sciences and Arts of Latin America'),
(96632, 80073, 'es', 'name', 'Universidad de Ciencias y Artes de AmƩrica Latina'),
(96633, 80074, 'no_lang_code', 'name', 'Oxford Nanoimaging (United Kingdom)'),
(96634, 80075, 'no_lang_code', 'name', '4C Air (United States)'),
(96635, 80076, 'en', 'name', 'Genomics Research Center, Academia Sinica'),
(96636, 80076, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢åŸŗå› é«”ē ”ē©¶äø­åæƒ'),
(96637, 80077, 'en', 'name', 'Columbus State University'),
(96638, 80078, 'cu', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¼ŠµŃ‚Ń€Š¾Š»Š¾Š³ŠøŃ'),
(96639, 80078, 'en', 'name', 'Bulgarian Institute of Metrology'),
(96640, 80079, 'en', 'name', 'Manukau Institute of Technology'),
(96641, 80080, 'en', 'name', 'Islamia University of Bahawalpur'),
(96642, 80080, 'ur', 'name', 'Ų§Ų³Ł„Ų§Ł…ŪŒŪ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŲØŪŲ§ŁˆŁ„Ł¾ŁˆŲ±'),
(96643, 80081, 'no_lang_code', 'name', 'Ulrich Medical (Germany)'),
(96644, 80082, 'ja', 'name', 'ć‚«ć‚·ć‚ŖčØˆē®—ę©Ÿę Ŗå¼ä¼šē¤¾'),
(96645, 80082, 'no_lang_code', 'name', 'Casio (Japan)'),
(96646, 80083, 'en', 'name', 'Canadians Living with HIV'),
(96647, 80083, 'fr', 'name', 'Conseil Canadien de Surveillance et d''AccĆØs aux Traitements'),
(96648, 80084, 'en', 'name', 'Hydrocephalus Association'),
(96649, 80085, 'en', 'name', 'Ipar Perspective'),
(96650, 80086, 'en', 'name', 'Sikhote-Alin Nature Reserve'),
(96651, 80086, 'ru', 'name', 'Š”ŠøŃ…Š¾Ń‚Ń-Алинский заповеГник'),
(96652, 80087, 'fr', 'name', 'SociƩtƩ des historiens mƩdiƩvistes de l''enseignement supƩrieur public'),
(96653, 80088, 'en', 'name', 'International Potato Center'),
(96654, 80088, 'es', 'name', 'Centro Internacional de la Papa'),
(96655, 80089, 'en', 'name', 'Seoul Metropolitan Government'),
(96656, 80090, 'no_lang_code', 'name', 'Agios Pharmaceuticals (United States)'),
(96657, 80091, 'es', 'name', 'Instituto de Investigación Hospital 12 de Octubre, Research Institute Hospital 12 de Octubre'),
(96658, 80092, 'en', 'name', 'Guizhou Education University'),
(96659, 80092, 'zh', 'name', 'č“µå·žåøˆčŒƒå­¦é™¢'),
(96660, 80093, 'en', 'name', 'Institute for Agriculture and Trade Policy'),
(96661, 80094, 'en', 'name', 'East Siberia State University of Technology and Management'),
(96662, 80094, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Восточно-Дибирский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ технологий Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(96663, 80095, 'en', 'name', 'Utica College'),
(96664, 80096, 'no_lang_code', 'name', 'Sivantos (Germany)'),
(96665, 80097, 'en', 'name', 'Canadian Rheumatology Association'),
(96666, 80097, 'fr', 'name', 'SociƩtƩ Canadienne Rheumatologie'),
(96667, 80098, 'en', 'name', 'European Society of Biomechanics'),
(96668, 80099, 'de', 'name', 'Schmerzmedizin Berlin'),
(96669, 80100, 'en', 'name', 'Institute of Pharmacology and Toxicology of the National Academy of Medical Sciences of Ukraine'),
(96670, 80100, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фармакології та токсикології ŠŠŠœŠ України'),
(96671, 80101, 'en', 'name', 'Fairview Lakes Medical Center'),
(96672, 80102, 'am', 'name', 'įŠ į‹²įŒįˆ«į‰µ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(96673, 80102, 'en', 'name', 'Adigrat University'),
(96674, 80103, 'en', 'name', 'Aksum University'),
(96675, 80104, 'en', 'name', 'Madras Institute of Orthopaedics and Traumatology'),
(96676, 80105, 'no_lang_code', 'name', 'Akebia Therapeutics (United States)'),
(96677, 80106, 'en', 'name', 'Gansu Academy of Sciences'),
(96678, 80106, 'zh', 'name', 'ē”˜č‚ƒēœē§‘å­¦é™¢'),
(96679, 80107, 'en', 'name', 'Black Hills Special Services Cooperative'),
(96680, 80108, 'en', 'name', 'Technological University of the Mixteca'),
(96681, 80108, 'es', 'name', 'Universidad Tecnológica de la Mixteca'),
(96682, 80109, 'en', 'name', 'CorVita Science Foundation'),
(96683, 80110, 'en', 'name', 'Institute of Geosciences'),
(96684, 80111, 'fr', 'name', 'Scladina'),
(96685, 80111, 'nl', 'name', 'Centre ArchƩologique de la Grotte Scladina'),
(96686, 80112, 'en', 'name', 'Japan Hospital Association'),
(96687, 80112, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē—…é™¢ä¼š'),
(96688, 80113, 'en', 'name', 'Dominion University College'),
(96689, 80114, 'no_lang_code', 'name', 'CYBO (Japan)'),
(96690, 80115, 'en', 'name', 'Ochsner Health System'),
(96691, 80116, 'en', 'name', 'Endocrinology Research Center'),
(96692, 80116, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ½Š“Š¾ŠŗŃ€ŠøŠ½Š¾Š»Š¾Š³ŠøŠø'),
(96693, 80117, 'en', 'name', 'Indian Academy of Pediatrics'),
(96694, 80118, 'en', 'name', 'Turkish Society of Hematology'),
(96695, 80118, 'tr', 'name', 'Türk Hematoloji Derneği'),
(96696, 80119, 'en', 'name', 'Kibale Chimpanzee Project'),
(96697, 80120, 'en', 'name', 'Canadian Institute for International Peace and Security'),
(96698, 80120, 'fr', 'name', 'Centre d''Ʃtudes sur la paix et la sƩcuritƩ internationale'),
(96699, 80121, 'en', 'name', 'Karst Waters Institute'),
(96700, 80122, 'no_lang_code', 'name', 'Tango Therapeutics (United States)'),
(96701, 80123, 'en', 'name', 'National School of Public Health'),
(96702, 80123, 'es', 'name', 'Escuela Nacional de Sanidad'),
(96703, 80124, 'no_lang_code', 'name', 'Q Chem (United States)'),
(96704, 80125, 'en', 'name', 'Technological Institute of Production'),
(96705, 80125, 'es', 'name', 'Instituto Tecnológico de la Producción'),
(96706, 80126, 'en', 'name', 'Research Institute for Brain and Blood Vessels Akita'),
(96707, 80126, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē§‹ē”°ēœŒē«‹ē—…é™¢ę©Ÿę§‹ē§‹ē”°ēœŒē«‹č„³č”€ē®”ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(96708, 80127, 'ja', 'name', 'ć‚Ŗć‚¤ćƒ¬ć‚¹å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(96709, 80127, 'no_lang_code', 'name', 'Oiles (japan)'),
(96710, 80128, 'en', 'name', 'City University of New York'),
(96711, 80128, 'es', 'name', 'Universidad de la Ciudad de Nueva York'),
(96712, 80128, 'fr', 'name', 'UniversitƩ de la Ville de New York'),
(96713, 80129, 'en', 'name', 'National Hospital Organization Kochi National Hospital'),
(96714, 80129, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹é«˜ēŸ„ē—…é™¢'),
(96715, 80130, 'en', 'name', 'National Security Agency'),
(96716, 80131, 'en', 'name', 'King County Department of Natural Resources and Parks'),
(96717, 80132, 'no_lang_code', 'name', 'NTT (United States)'),
(96718, 80133, 'en', 'name', 'Health and Wellbeing Queensland'),
(96719, 80134, 'en', 'name', 'Basir Eye Health Research Center'),
(96720, 80135, 'en', 'name', 'Children''s Aid Society'),
(96721, 80136, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ćƒ«ćƒ•ćƒŖćƒ¼ć‚µć‚¤ć‚Øćƒ³ć‚¹'),
(96722, 80136, 'no_lang_code', 'name', 'CellFree Sciences (Japan)'),
(96723, 80137, 'es', 'name', 'Universidad TƩcnica de Cotopaxi'),
(96724, 80138, 'en', 'name', 'Mason County District Library'),
(96725, 80139, 'en', 'name', 'Center for Grain and Animal Health Research'),
(96726, 80140, 'en', 'name', 'Dale Bumpers National Rice Research Center'),
(96727, 80141, 'en', 'name', 'Salve Regina University'),
(96728, 80142, 'en', 'name', 'China National Space Administration'),
(96729, 80142, 'zh', 'name', 'å›½å®¶čˆŖå¤©å±€'),
(96730, 80143, 'en', 'name', 'Gordon Center for Medical Imaging'),
(96731, 80144, 'en', 'name', 'South Atlantic Environmental Research Institute'),
(96732, 80145, 'fr', 'name', 'Centre Pour le DƩveloppement des Vaccins-Mali'),
(96733, 80146, 'en', 'name', 'Saint Louis College La Union'),
(96734, 80147, 'en', 'name', 'Wellington Free Ambulance'),
(96735, 80148, 'en', 'name', 'Montana Learning Center'),
(96736, 80149, 'en', 'name', 'Khvalynsky National Park'),
(96737, 80149, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ парка «Євалынский»'),
(96738, 80150, 'en', 'name', 'University of Engineering and Technology Lahore'),
(96739, 80150, 'ur', 'name', 'جامعہ ŪŁ†ŲÆŲ³ŪŒŲ§ŲŖ و طرزیات، Ł„Ų§ŪŁˆŲ±'),
(96740, 80151, 'en', 'name', 'Chinese Academy of Science South America Center for Astronomy'),
(96741, 80151, 'es', 'name', 'äø­å›½ē§‘å­¦é™¢å—ē¾Žå¤©ę–‡äø­åæƒ'),
(96742, 80152, 'en', 'name', 'Arizona''s Public Universities'),
(96743, 80153, 'en', 'name', 'Women in Sport'),
(96744, 80154, 'ja', 'name', 'ę¾å±±åø‚ę°‘ē—…é™¢'),
(96745, 80154, 'no_lang_code', 'name', 'Matsuyama Shimin Hospital'),
(96746, 80155, 'en', 'name', 'Catholic University of BrasĆ­lia'),
(96747, 80155, 'es', 'name', 'Universidad Católica de Brasilia'),
(96748, 80155, 'pt', 'name', 'Universidade Católica de Brasília'),
(96749, 80156, 'ja', 'name', 'ē§‘ē ”č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(96750, 80156, 'no_lang_code', 'name', 'Kaken Pharmaceutical (Japan)'),
(96751, 80157, 'en', 'name', 'Elman Retina Group'),
(96752, 80158, 'en', 'name', 'Global Forum for Health Research'),
(96753, 80159, 'no_lang_code', 'name', 'DXC Technology (Denmark)'),
(96754, 80160, 'no_lang_code', 'name', 'Atrad (Australia)'),
(96755, 80161, 'en', 'name', 'Tohoku University of Community Service and Science'),
(96756, 80161, 'ja', 'name', 'ę±åŒ—å…¬ē›Šę–‡ē§‘å¤§å­¦'),
(96757, 80162, 'en', 'name', 'Basque Summer University'),
(96758, 80162, 'es', 'name', 'Universidad Vasca de Verano'),
(96759, 80162, 'eu', 'name', 'Udako Euskal Unibertsitatea'),
(96760, 80162, 'fr', 'name', 'UniversitƩ basque d''ƩtƩ'),
(96761, 80163, 'en', 'name', 'Northern Plains Agricultural Research Laboratory'),
(96762, 80164, 'no_lang_code', 'name', 'Infineon Technologies (Germany)'),
(96763, 80165, 'en', 'name', 'African Studies Association'),
(96764, 80166, 'da', 'name', 'LƦgeforeningen'),
(96765, 80166, 'en', 'name', 'Danish Medical Association'),
(96766, 80167, 'en', 'name', 'Southwest Minnesota State University'),
(96767, 80168, 'en', 'name', 'Nara Prefectural Institute of Public Health Research Center'),
(96768, 80168, 'ja', 'name', 'å„ˆč‰ÆēœŒäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(96769, 80169, 'en', 'name', 'Japan International Research Center for Agricultural Sciences'),
(96770, 80169, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½éš›č¾²ęž—ę°“ē”£ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(96771, 80170, 'en', 'name', 'Senckenberg Centre for Human Evolution and Palaeoenvironment'),
(96772, 80171, 'no_lang_code', 'name', 'Veritas (Italy)'),
(96773, 80172, 'en', 'name', 'World Diabetes Foundation'),
(96774, 80172, 'es', 'name', 'Fundación Mundial de Diabetes'),
(96775, 80172, 'pt', 'name', 'Fundação Mundial de Diabetes'),
(96776, 80173, 'en', 'name', 'New Guinea Highland Wild Dog Foundation'),
(96777, 80174, 'sv', 'name', 'Jubileumskliniken Cancerfond'),
(96778, 80175, 'en', 'name', 'Chiang Rai Rajabhat University'),
(96779, 80175, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøą¹€ąøŠąøµąø¢ąø‡ąø£ąø²ąø¢'),
(96780, 80176, 'en', 'name', 'Allergy Clinic of Tulsa'),
(96781, 80177, 'en', 'name', 'North American Society for Pediatric Gastroenterology, Hepatology, and Nutrition'),
(96782, 80178, 'en', 'name', 'SKiN Health'),
(96783, 80179, 'en', 'name', 'Colorado School of Public Health'),
(96784, 80180, 'en', 'name', 'Tokyo Medical Center'),
(96785, 80180, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ę±äŗ¬åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(96786, 80181, 'de', 'name', 'Schƶn Klinik Vogtareuth'),
(96787, 80182, 'ja', 'name', 'ę±å’Œč–¬å“ę Ŗå¼ä¼šē¤¾'),
(96788, 80182, 'no_lang_code', 'name', 'Towa Pharmaceutical (Japan)'),
(96789, 80183, 'no_lang_code', 'name', 'Wren Therapeutics (United Kingdom)'),
(96790, 80184, 'en', 'name', 'Envoi Specialist Pathologists'),
(96791, 80185, 'en', 'name', 'University of Southern Indiana'),
(96792, 80185, 'fr', 'name', 'UniversitƩ de l''indiana du sud'),
(96793, 80186, 'en', 'name', 'Delaware Museum of Nature and Science'),
(96794, 80187, 'no_lang_code', 'name', 'ESI Group (Sweden)'),
(96795, 80188, 'en', 'name', 'Ohio University Eastern'),
(96796, 80189, 'no_lang_code', 'name', 'MicroPort (China)'),
(96797, 80190, 'en', 'name', 'Bay Area Medical Center'),
(96798, 80191, 'en', 'name', 'Newport Museum and Art Gallery'),
(96799, 80192, 'en', 'name', 'Global Environment Facility'),
(96800, 80193, 'en', 'name', 'London Biofoundry'),
(96801, 80194, 'en', 'name', 'Home and Community Care Support Services'),
(96802, 80194, 'fr', 'name', 'Services de soutien Ć  domicile et en milieu communautaire'),
(96803, 80195, 'en', 'name', 'Pasvik Nature Reserve'),
(96804, 80195, 'no', 'name', 'Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник "Пасвик"'),
(96805, 80196, 'en', 'name', 'Hoso Bunka Foundation'),
(96806, 80196, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę”¾é€ę–‡åŒ–åŸŗé‡‘'),
(96807, 80197, 'nl', 'name', 'Artesis Plantijn Hogeschool Antwerpen'),
(96808, 80198, 'no_lang_code', 'name', 'Cerecor (United States)'),
(96809, 80199, 'en', 'name', 'University College London Qatar'),
(96810, 80200, 'en', 'name', 'Beijing Aerospace Flight Control Center'),
(96811, 80200, 'zh', 'name', 'åŒ—äŗ¬čˆŖå¤©é£žč”ŒęŽ§åˆ¶äø­åæƒ'),
(96812, 80201, 'de', 'name', 'Gesundheitsamt, Gesundheitsamt Frankfurt'),
(96813, 80202, 'no_lang_code', 'name', 'UK EPC'),
(96814, 80203, 'en', 'name', 'Tokyo Institute of Psychiatry'),
(96815, 80203, 'ja', 'name', 'č²”å›£ę³•äŗŗę±äŗ¬éƒ½åŒ»å­¦ē ”ē©¶ę©Ÿę§‹ę±äŗ¬éƒ½ē²¾ē„žåŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(96816, 80204, 'en', 'name', 'Tyndall National Institute'),
(96817, 80204, 'ga', 'name', 'Tyndall InstitiĆŗid Naisiunta'),
(96818, 80205, 'en', 'name', 'Government of Hungary'),
(96819, 80206, 'en', 'name', 'Cabinet Office'),
(96820, 80206, 'ja', 'name', 'å†…é–£åŗœ'),
(96821, 80207, 'en', 'name', 'Kostomuksha Nature Reserve'),
(96822, 80207, 'ru', 'name', 'ŠšŠ¾ŃŃ‚Š¾Š¼ŃƒŠŗŃˆŃŠŗŠøŠ¹ заповеГник'),
(96823, 80208, 'en', 'name', 'Kumamoto City Hospital'),
(96824, 80208, 'ja', 'name', 'ē†Šęœ¬åø‚ē«‹ē†Šęœ¬åø‚ę°‘ē—…é™¢'),
(96825, 80209, 'en', 'name', 'Huanggang Normal University'),
(96826, 80209, 'zh', 'name', 'é»„å†ˆåøˆčŒƒå­¦é™¢'),
(96827, 80210, 'en', 'name', 'Tri-Service General Hospital'),
(96828, 80210, 'zh', 'name', 'äø‰č»ēø½é†«é™¢'),
(96829, 80211, 'es', 'name', 'Corporación Universitaria Comfacauca - Unicomfacauca'),
(96830, 80212, 'en', 'name', 'Daiwa Securities Health Foundation'),
(96831, 80212, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§å’ŒčØ¼åˆøćƒ˜ćƒ«ć‚¹č²”å›£'),
(96832, 80213, 'no_lang_code', 'name', 'Gustavus Adolphus College'),
(96833, 80214, 'no_lang_code', 'name', 'BioGaia (Sweden)'),
(96834, 80215, 'no_lang_code', 'name', 'Open Ephys Production Site (Portugal)'),
(96835, 80216, 'en', 'name', 'Aurora West Allis Medical Center'),
(96836, 80217, 'en', 'name', 'First People’s Hospital of Jingmen'),
(96837, 80217, 'zh', 'name', 'č†é—Øåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(96838, 80218, 'nl', 'name', 'Sint Franciscus Gasthuis'),
(96839, 80219, 'en', 'name', 'Dystonia Medical Research Foundation Canada'),
(96840, 80219, 'fr', 'name', 'Fondation de Recherche MƩdicale sur la Dystonie'),
(96841, 80220, 'no_lang_code', 'name', 'RTI Surgical (United States)'),
(96842, 80221, 'no_lang_code', 'name', 'The Centre for Health (New Zealand)'),
(96843, 80222, 'en', 'name', 'Xavier University of Louisiana'),
(96844, 80223, 'en', 'name', 'Nepal Academy of Science and Technology'),
(96845, 80224, 'en', 'name', 'Einstein Center Digital Future'),
(96846, 80225, 'bn', 'name', 'ą¦‡ą¦¬ą§ą¦°ą¦¾ą¦¹ą¦æą¦® ą¦•ą¦¾ą¦°ą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦• হসপিটাল ą¦ą¦Øą§ą¦” ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(96847, 80225, 'en', 'name', 'Ibrahim Cardiac Hospital & Research Institute'),
(96848, 80226, 'en', 'name', 'The Julian Centre'),
(96849, 80227, 'es', 'name', 'Instituto de Astronomía Teórica y Experimental'),
(96850, 80228, 'de', 'name', 'Rhƶn-Klinikum'),
(96851, 80229, 'no_lang_code', 'name', 'ResearchGate'),
(96852, 80230, 'ja', 'name', 'ćƒ‹ćƒć‚¢ć‚¹ę Ŗå¼ä¼šē¤¾'),
(96853, 80230, 'no_lang_code', 'name', 'Nichias (Japan)'),
(96854, 80231, 'fr', 'name', 'Institut de CancƩrologie Strasbourg'),
(96855, 80232, 'en', 'name', 'Potomac Institute for Policy Studies'),
(96856, 80233, 'en', 'name', 'London Road Community Hospital'),
(96857, 80234, 'en', 'name', 'Canadian Water and Wastewater Association'),
(96858, 80234, 'fr', 'name', 'Association Nationale qui Représente les Intérêts Communs des Services Publics'),
(96859, 80235, 'no_lang_code', 'name', 'Symphogen (Denmark)'),
(96860, 80236, 'ar', 'name', 'متحف Ų£ŁˆŲØŁ„Ų§Ł†ŲÆ'),
(96861, 80236, 'sv', 'name', 'Upplandsmuseet, Upplandsmuseum'),
(96862, 80237, 'de', 'name', 'Institut für Zeitgeschichte München–Berlin'),
(96863, 80237, 'en', 'name', 'Institute for Contemporary History München–Berlin, Institute of Contemporary History, Leibniz Institute for Contemporary History (IfZ)'),
(96864, 80238, 'en', 'name', 'Ural State Academy of Architecture and Arts'),
(96865, 80238, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(96866, 80239, 'no_lang_code', 'name', 'Institut MƩrieux (France)'),
(96867, 80240, 'en', 'name', 'Gujarat Cancer Society'),
(96868, 80240, 'hi', 'name', 'ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤•ą„ˆą¤‚ą¤øą¤° ą¤øą„‹ą¤øą¤¾ą¤‡ą¤Ÿą„€'),
(96869, 80241, 'de', 'name', 'Institut für Bewusstseins- und Traumforschung'),
(96870, 80242, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šę°“ęˆøęøˆē”Ÿä¼šē·åˆē—…é™¢'),
(96871, 80242, 'no_lang_code', 'name', 'Mito Saiseikai General Hospital'),
(96872, 80243, 'en', 'name', 'Nagoya University Hospital'),
(96873, 80243, 'ja', 'name', 'åå¤å±‹å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(96874, 80244, 'en', 'name', 'Fatima Jinnah Women University'),
(96875, 80244, 'ur', 'name', 'جامعہ فاطمہ جناح ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ†'),
(96876, 80245, 'en', 'name', 'University of Pattimura'),
(96877, 80245, 'id', 'name', 'Universitas Pattimura'),
(96878, 80246, 'en', 'name', 'Institute of Arctic and Alpine Research'),
(96879, 80247, 'en', 'name', 'Alberta Barley'),
(96880, 80248, 'en', 'name', 'Monash University Prato Centre'),
(96881, 80248, 'it', 'name', 'Palazzo Vai'),
(96882, 80249, 'no_lang_code', 'name', 'DeepMind (United Kingdom)'),
(96883, 80250, 'de', 'name', 'Rostocker Zentrum zur Erforschung des Demografischen Wandels'),
(96884, 80251, 'en', 'name', 'Main Center of Special Monitoring'),
(96885, 80251, 'uk', 'name', 'Головний центр ŃŠæŠµŃ†Ń–Š°Š»ŃŒŠ½Š¾Š³Š¾ ŠŗŠ¾Š½Ń‚Ń€Š¾Š»ŃŽ'),
(96886, 80252, 'en', 'name', 'Aga Khan Development Network'),
(96887, 80253, 'no_lang_code', 'name', 'Regenxbio (United States)'),
(96888, 80254, 'en', 'name', 'National Institution for Finance and Development'),
(96889, 80254, 'zh', 'name', 'å›½å®¶é‡‘čžäøŽå‘å±•å®žéŖŒå®¤'),
(96890, 80255, 'en', 'name', 'KuDos'),
(96891, 80256, 'en', 'name', 'Portsmouth Hospitals NHS Trust'),
(96892, 80257, 'en', 'name', 'Mapi Research Trust'),
(96893, 80258, 'en', 'name', 'Anshun University'),
(96894, 80259, 'en', 'name', 'Norwegian Public Roads Administration'),
(96895, 80260, 'es', 'name', 'AZTERLAN Centro de Investigación Metalúrgica'),
(96896, 80260, 'eu', 'name', 'AZTERLAN Metalurgia Ikerketa Zentroa'),
(96897, 80260, 'no_lang_code', 'name', 'AZTERLAN'),
(96898, 80261, 'en', 'name', 'King Abdullah International Medical Research Center'),
(96899, 80262, 'no_lang_code', 'name', 'Cosmote (Greece)'),
(96900, 80263, 'en', 'name', 'Cyto Labs'),
(96901, 80264, 'no_lang_code', 'name', 'Kiwa (Germany)'),
(96902, 80265, 'en', 'name', 'Newman University'),
(96903, 80266, 'en', 'name', 'USA Mitchell Cancer Institute'),
(96904, 80267, 'en', 'name', 'Mukogawa Women''s University'),
(96905, 80267, 'ja', 'name', 'ę­¦åŗ«å·å„³å­å¤§å­¦'),
(96906, 80268, 'en', 'name', 'San Joaquin Valley Agricultural Sciences Center'),
(96907, 80269, 'no_lang_code', 'name', 'HiFiBiO Therapeutics (United States)'),
(96908, 80270, 'ja', 'name', 'čˆˆå’Œę Ŗå¼ä¼šē¤¾'),
(96909, 80270, 'no_lang_code', 'name', 'Kowa (Japan)'),
(96910, 80271, 'en', 'name', 'Commonweal'),
(96911, 80272, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å €å “č£½ä½œę‰€'),
(96912, 80272, 'no_lang_code', 'name', 'Horiba (Japan)'),
(96913, 80273, 'en', 'name', 'National Clinical Research Center for Digestive Diseases'),
(96914, 80273, 'zh', 'name', 'å›½å®¶ę¶ˆåŒ–ē³»ē»Ÿē–¾ē—…äø“åŗŠåŒ»å­¦ē ”ē©¶äø­åæƒ'),
(96915, 80274, 'en', 'name', 'Phycological Society of America'),
(96916, 80275, 'en', 'name', 'Kushiro Junior College'),
(96917, 80275, 'ja', 'name', 'é‡§č·ÆēŸ­ęœŸå¤§å­¦'),
(96918, 80276, 'de', 'name', 'Max-Planck-Institut für Kohlenforschung'),
(96919, 80277, 'en', 'name', 'International Federation on Ageing'),
(96920, 80277, 'fr', 'name', 'FƩdƩration Internationale du Vieillissement'),
(96921, 80278, 'no_lang_code', 'name', 'Hexal (Germany)'),
(96922, 80279, 'ar', 'name', 'المعهد Ų§Ł„ŲÆŁˆŁ„ŁŠ للزراعة Ų§Ł„Ų§Ų³ŲŖŁˆŲ§Ų¦ŁŠŲ©'),
(96923, 80279, 'en', 'name', 'International Institute of Tropical Agriculture'),
(96924, 80280, 'es', 'name', 'Universidad Autónoma Agraria Antonio Narro'),
(96925, 80281, 'en', 'name', 'Indian Institute of Packaging'),
(96926, 80281, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ˆą¤•ą„‡ą¤œą¤æą¤‚ą¤— ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(96927, 80282, 'en', 'name', 'Willis-Knighton Cancer Center'),
(96928, 80283, 'no_lang_code', 'name', 'Vertex Pharmaceuticals (United States)'),
(96929, 80284, 'de', 'name', 'Kollegium St. Michael'),
(96930, 80284, 'fr', 'name', 'CollĆØge St-Michel'),
(96931, 80285, 'en', 'name', 'Ministry of Economy, Development and Tourism'),
(96932, 80285, 'es', 'name', 'Ministerio de Economía, Fomento y Reconstrucción de Chile'),
(96933, 80286, 'en', 'name', 'The Hersh Foundation'),
(96934, 80287, 'hi', 'name', 'ą¤¹ą¤æą¤Øą„ą¤¦ą„ą¤øą„ą¤¤ą¤¾ą¤Ø ą¤Ŗą„‡ą¤Ÿą„ą¤°ą„‹ą¤²ą¤æą¤Æą¤® निगम ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(96935, 80287, 'no_lang_code', 'name', 'Hindustan Petroleum Corporation Limited (India)'),
(96936, 80288, 'en', 'name', 'D-Tree International'),
(96937, 80289, 'no_lang_code', 'name', 'Institute of Reactor Materials (Russia)'),
(96938, 80289, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š Š•ŠŠšŠ¢ŠžŠ ŠŠ«Š„ ŠœŠŠ¢Š•Š Š˜ŠŠ›ŠžŠ’'),
(96939, 80290, 'en', 'name', 'Ministry of Land, Infrastructure, Transport and Tourism'),
(96940, 80290, 'ja', 'name', 'å›½åœŸäŗ¤é€šēœ'),
(96941, 80291, 'no_lang_code', 'name', 'Tata Motors (India)'),
(96942, 80292, 'en', 'name', 'Amhara Regional Health Bureau'),
(96943, 80293, 'en', 'name', 'Barts Health NHS Trust'),
(96944, 80294, 'no_lang_code', 'name', 'Mercedes-Benz Research and Development North America (United States)'),
(96945, 80295, 'en', 'name', 'New York State Office for People With Developmental Disabilities'),
(96946, 80296, 'en', 'name', 'Osaka National Hospital'),
(96947, 80296, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å¤§é˜ŖåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(96948, 80297, 'en', 'name', 'American Astronomical Society'),
(96949, 80298, 'en', 'name', 'National Solar Observatory'),
(96950, 80299, 'id', 'name', 'Universitas ''Aisyiyah Bandung'),
(96951, 80300, 'ja', 'name', 'ę—„ęœ¬č£½ē²‰ę Ŗå¼ä¼šē¤¾'),
(96952, 80300, 'no_lang_code', 'name', 'Nippon Flour Mills (Japan)'),
(96953, 80301, 'en', 'name', 'Kobe University Hospital'),
(96954, 80301, 'ja', 'name', 'ē„žęˆøå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(96955, 80302, 'en', 'name', 'Institute of Public Health'),
(96956, 80303, 'en', 'name', 'Indian Institute of Information Technology Guwahati'),
(96957, 80303, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€'),
(96958, 80304, 'en', 'name', 'Moscow Academy of the Investigative Committee of the Russian Federation'),
(96959, 80304, 'ru', 'name', 'ŠœŠ¾ŃŠŗŠ¾Š²ŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ДлеГственного ŠšŠ¾Š¼ŠøŃ‚ета Российской ФеГерации'),
(96960, 80305, 'en', 'name', 'Vyzhnytsia National Nature Park'),
(96961, 80305, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГний парк Ā«Š’ŠøŠ¶Š½ŠøŃ†ŃŒŠŗŠøŠ¹Ā»'),
(96962, 80306, 'en', 'name', 'Children’s Health Queensland Hospital and Health Service'),
(96963, 80307, 'no_lang_code', 'name', 'Technicolor (Germany)'),
(96964, 80308, 'en', 'name', 'Puerto Rico Space Grant Consortium'),
(96965, 80309, 'en', 'name', 'Nara Prefecture General Medical Center'),
(96966, 80309, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå„ˆč‰ÆēœŒē«‹ē—…é™¢ę©Ÿę§‹å„ˆč‰ÆēœŒē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(96967, 80310, 'de', 'name', 'Max-Planck-Institut für Sicherheit und Privatsphäre'),
(96968, 80310, 'en', 'name', 'Max Planck Institute for Security and Privacy'),
(96969, 80311, 'bn', 'name', 'বাংলাদেশ গম ও ą¦­ą§ą¦Ÿą§ą¦Ÿą¦¾ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(96970, 80311, 'en', 'name', 'Bangladesh Wheat and Maize Research Institute'),
(96971, 80312, 'en', 'name', 'Geoscience BC'),
(96972, 80313, 'en', 'name', 'Oklahoma Department of Wildlife Conservation'),
(96973, 80314, 'es', 'name', 'Centro MƩdico Bustos Fernandez'),
(96974, 80315, 'en', 'name', 'Autonomous University of Ica'),
(96975, 80315, 'es', 'name', 'Universidad Autónoma de Ica'),
(96976, 80316, 'fr', 'name', 'Institut Salah-AzaĆÆz'),
(96977, 80317, 'en', 'name', 'Medical College of Chile'),
(96978, 80317, 'es', 'name', 'Colegio MƩdico de Chile'),
(96979, 80318, 'en', 'name', 'Ministry of Public Security of the People''s Republic of China'),
(96980, 80318, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å…¬å®‰éƒØ'),
(96981, 80319, 'de', 'name', 'Botanischer Garten und Botanisches Museum Berlin'),
(96982, 80319, 'en', 'name', 'Botanic Garden and Botanical Museum Berlin'),
(96983, 80320, 'en', 'name', 'Japanese Foundation For Cancer Research'),
(96984, 80320, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćŒć‚“ē ”ē©¶ä¼š'),
(96985, 80321, 'en', 'name', 'Institute of Transportation and Logistic Trisakti'),
(96986, 80322, 'no_lang_code', 'name', 'Dopavision (Germany)'),
(96987, 80323, 'en', 'name', 'Cardiovascular Center Bethanien'),
(96988, 80324, 'en', 'name', 'National Wildlife Federation'),
(96989, 80325, 'en', 'name', 'Queensland Health'),
(96990, 80326, 'da', 'name', 'Rockwool Fonden'),
(96991, 80326, 'en', 'name', 'Rockwool Foundation'),
(96992, 80327, 'ja', 'name', 'ę—„ęœ¬ćƒ†ć‚­ć‚µć‚¹ćƒ»ć‚¤ćƒ³ć‚¹ćƒ„ćƒ«ćƒ”ćƒ³ćƒ„ę Ŗå¼ä¼šē¤¾'),
(96993, 80327, 'no_lang_code', 'name', 'Texas Instruments (Japan)'),
(96994, 80328, 'en', 'name', 'University of Sonora'),
(96995, 80328, 'es', 'name', 'Universidad de Sonora'),
(96996, 80329, 'en', 'name', 'Aichi Human Service Center'),
(96997, 80329, 'ja', 'name', 'ę„›ēŸ„ēœŒåæƒčŗ«éšœå®³č€…ć‚³ćƒ­ćƒ‹ćƒ¼'),
(96998, 80330, 'en', 'name', 'Belfast City Council'),
(96999, 80331, 'es', 'name', 'Red de Investigación en Sida'),
(97000, 80332, 'en', 'name', 'Dalian Polytechnic University'),
(97001, 80332, 'zh', 'name', 'å¤§čæžå·„äøšå¤§å­¦'),
(97002, 80333, 'en', 'name', 'National University of Northwestern Buenos Aires'),
(97003, 80333, 'es', 'name', 'Universidad Nacional del Noroeste de la Provincia de Buenos Aires'),
(97004, 80334, 'en', 'name', 'New York Foundation for the Arts'),
(97005, 80335, 'fr', 'name', 'ThƩorie et Histoire des Arts et des LittƩratures de la ModernitƩ'),
(97006, 80336, 'en', 'name', 'Northwest Watershed Research Center'),
(97007, 80337, 'de', 'name', 'Hirslanden Klinik Im Park'),
(97008, 80338, 'en', 'name', 'Ted Rogers Centre for Heart Research'),
(97009, 80339, 'en', 'name', 'Society for Mathematical Biology'),
(97010, 80340, 'no_lang_code', 'name', 'CRB Innovations (Canada)'),
(97011, 80341, 'nl', 'name', 'GGD Brabant-Zuidoost'),
(97012, 80342, 'en', 'name', 'Civicus'),
(97013, 80343, 'en', 'name', 'Surgical Infection Society of Europe'),
(97014, 80344, 'en', 'name', 'Institute of Materials Jean Rouxel'),
(97015, 80344, 'fr', 'name', 'Institut des MatƩriaux Jean Rouxel'),
(97016, 80345, 'no_lang_code', 'name', 'MatTek (Slovakia)'),
(97017, 80346, 'en', 'name', 'Dallas Plastic Surgery Institute'),
(97018, 80347, 'en', 'name', 'The Gottman Institute'),
(97019, 80348, 'en', 'name', 'Eastern Institute of Technology'),
(97020, 80349, 'no_lang_code', 'name', 'ENPICOM (Netherlands)'),
(97021, 80350, 'no_lang_code', 'name', 'Incyte (United States)'),
(97022, 80351, 'en', 'name', 'Children’s Minnesota - St. Paul Hospital'),
(97023, 80352, 'en', 'name', 'St Mary''s Hospital'),
(97024, 80352, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé›Ŗć®č–ęÆä¼šč–ćƒžćƒŖć‚¢ē—…é™¢'),
(97025, 80353, 'de', 'name', 'Bank für Internationalen Zahlungsausgleich'),
(97026, 80353, 'en', 'name', 'Bank for International Settlements'),
(97027, 80354, 'en', 'name', 'Central Power Research Institute'),
(97028, 80355, 'en', 'name', 'University of Santo Tomas'),
(97029, 80355, 'es', 'name', 'Pontificia y Real Universidad de Santo TomƔs'),
(97030, 80356, 'no_lang_code', 'name', 'Megaputer Intelligence (United States)'),
(97031, 80357, 'en', 'name', 'Fukuoka University Hospital'),
(97032, 80357, 'ja', 'name', 'ē¦å²”å¤§å­¦ē—…é™¢'),
(97033, 80358, 'en', 'name', 'Ontario Society of Occupational Therapists'),
(97034, 80359, 'es', 'name', 'Fundación Biodiversidad'),
(97035, 80360, 'no_lang_code', 'name', 'Ipsen (France)'),
(97036, 80361, 'no_lang_code', 'name', 'Wearifi (United States)'),
(97037, 80362, 'es', 'name', 'Fundación Grupo para la Investigación, Formación, y Edición Transdisciplinar'),
(97038, 80363, 'en', 'name', 'CW+'),
(97039, 80364, 'en', 'name', 'Tri-Service General Hospital Beitou Branch'),
(97040, 80364, 'zh', 'name', 'äø‰č»ēø½é†«é™¢åŒ—ęŠ•åˆ†é™¢'),
(97041, 80365, 'en', 'name', 'Genki Plaza Medical Center for Health Care'),
(97042, 80366, 'nl', 'name', 'Long Fonds'),
(97043, 80367, 'no_lang_code', 'name', 'Nepal Institute of Research and Communications (NIRC)'),
(97044, 80368, 'en', 'name', 'Federal University of SĆ£o Francisco Valley'),
(97045, 80368, 'pt', 'name', 'Universidade Federal do Vale do SĆ£o Francisco'),
(97046, 80369, 'en', 'name', 'Stone Soup Group'),
(97047, 80370, 'no_lang_code', 'name', 'Swiss Re (United States)'),
(97048, 80371, 'en', 'name', 'Clifford Craig Foundation'),
(97049, 80372, 'en', 'name', 'Randall University'),
(97050, 80373, 'no_lang_code', 'name', 'Opris Consulting (United States)'),
(97051, 80374, 'no_lang_code', 'name', 'Sound Agriculture (United States)'),
(97052, 80375, 'en', 'name', 'Guangdong Industry Technical College'),
(97053, 80375, 'zh', 'name', 'å¹æäøœč½»å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(97054, 80376, 'fr', 'name', 'Centre Hospitalier de Perpignan'),
(97055, 80377, 'en', 'name', 'Illawarra Health and Medical Research Institute'),
(97056, 80378, 'no_lang_code', 'name', 'Neomorph'),
(97057, 80379, 'en', 'name', 'International Institute of Tropical Agriculture'),
(97058, 80380, 'en', 'name', 'Experimental Psychology Society'),
(97059, 80381, 'no_lang_code', 'name', 'CellOxess (United States)'),
(97060, 80382, 'en', 'name', 'Institute of Agricultural and Forest Environment'),
(97061, 80382, 'pl', 'name', 'Instytut Środowiska Rolniczego i Leśnego Polskiej Akademii Nauk'),
(97062, 80383, 'no_lang_code', 'name', 'Fidia Farmaceutici (Italy)'),
(97063, 80384, 'no_lang_code', 'name', 'Istanbul Retina Institute (Turkey)'),
(97064, 80385, 'no_lang_code', 'name', 'Sailbri Cooper (United States)'),
(97065, 80386, 'en', 'name', 'Canadian Bulletin of Medical History'),
(97066, 80386, 'fr', 'name', 'Bulletin canadien d''histoire de la mƩdecine'),
(97067, 80387, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼ę–°ę½Ÿē—…é™¢'),
(97068, 80387, 'no_lang_code', 'name', 'Niigata Cancer Center Hospital'),
(97069, 80388, 'en', 'name', 'Psychiatric Hospital Sveti Ivan'),
(97070, 80388, 'hr', 'name', 'Psihijatrijska Bolnica Sveti Ivan'),
(97071, 80389, 'no_lang_code', 'name', 'Meito Sangyo (Japan)'),
(97072, 80390, 'no_lang_code', 'name', 'Biogemma (France)'),
(97073, 80391, 'en', 'name', 'Individual Development and Adaptive Education'),
(97074, 80392, 'en', 'name', 'International Severe Acute Respiratory and Emerging Infection Consortium'),
(97075, 80393, 'no_lang_code', 'name', 'Biortus (China)'),
(97076, 80394, 'en', 'name', 'St. Luke''s International University'),
(97077, 80394, 'ja', 'name', 'č–č·ÆåŠ å›½éš›å¤§å­¦'),
(97078, 80395, 'en', 'name', 'Alliance for International Medical Action'),
(97079, 80396, 'en', 'name', 'ASTRO-3D'),
(97080, 80397, 'en', 'name', 'Rajiv Gandhi Cancer Institute and Research Centre'),
(97081, 80398, 'en', 'name', 'United States Department of Agriculture Climate Hubs'),
(97082, 80399, 'en', 'name', 'Evolve Restorative Center'),
(97083, 80400, 'no_lang_code', 'name', 'Corin (United Kingdom)'),
(97084, 80401, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£ē·åˆē—…é™¢č–éš·äø‰ę–¹åŽŸē—…é™¢'),
(97085, 80401, 'no_lang_code', 'name', 'Seirei Mikatabara General Hospital'),
(97086, 80402, 'en', 'name', 'American Society for Investigative Pathology'),
(97087, 80403, 'en', 'name', 'Hvidovre Hospital'),
(97088, 80404, 'en', 'name', 'Global Energy Interconnection Research Institute North America'),
(97089, 80405, 'en', 'name', 'Columbia VA Health Care System'),
(97090, 80406, 'en', 'name', 'American Economic Association'),
(97091, 80407, 'en', 'name', 'New Hope Fertility Center'),
(97092, 80408, 'en', 'name', 'Faroe Islands National Museum'),
(97093, 80408, 'fo', 'name', 'Tjóðsavn Føroya'),
(97094, 80409, 'no_lang_code', 'name', 'JenaValve (United States)'),
(97095, 80410, 'no_lang_code', 'name', 'Alimera Sciences (United States)'),
(97096, 80411, 'en', 'name', 'Associated Retinal Consultants'),
(97097, 80412, 'en', 'name', 'Bureau of Metrology of Macedonia'),
(97098, 80412, 'hr', 'name', 'Biro za metrologija'),
(97099, 80412, 'mk', 'name', 'Š‘Š˜Š Šž ЗА ŠœŠ•Š¢Š ŠžŠ›ŠžŠ“Š˜ŠˆŠ'),
(97100, 80412, 'sq', 'name', 'Byroja pƫr metrologji'),
(97101, 80413, 'en', 'name', 'Guizhou Academy of Agricultural Sciences'),
(97102, 80413, 'zh', 'name', 'č“µå·žēœå†œäøšē§‘å­¦é™¢'),
(97103, 80414, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒŸćƒ³ćƒ•ć‚”ćƒ¼ćƒžē ”ē©¶ę‰€'),
(97104, 80414, 'no_lang_code', 'name', 'Amine Pharma (Japan)'),
(97105, 80415, 'en', 'name', 'IEDP Developing Leaders'),
(97106, 80416, 'no_lang_code', 'name', 'MorphoSys (Germany)'),
(97107, 80417, 'de', 'name', 'Deutsches Historisches Institut Rom'),
(97108, 80417, 'en', 'name', 'German Historical Institute in Rome'),
(97109, 80417, 'it', 'name', 'Istituto Storico Germanico di Roma'),
(97110, 80418, 'en', 'name', 'VIB-KU Leuven Center for Cancer Biology'),
(97111, 80419, 'en', 'name', 'Cherkasy Medical Academy'),
(97112, 80419, 'uk', 'name', 'Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠ° меГична Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(97113, 80420, 'en', 'name', 'Punjab Medical Center'),
(97114, 80421, 'en', 'name', 'Seeta Eye Centers'),
(97115, 80422, 'pt', 'name', 'Hospital de CĆ¢ncer de Barretos'),
(97116, 80423, 'no_lang_code', 'name', 'Cumberland Research Associates (United States)'),
(97117, 80424, 'en', 'name', 'Hunter Cancer Research Alliance'),
(97118, 80425, 'ja', 'name', 'ę—„ęœ¬č‡“å™Øč£½č–¬'),
(97119, 80425, 'no_lang_code', 'name', 'Nippon Zoki (Japan)'),
(97120, 80426, 'en', 'name', 'Magnetics Information Consortium'),
(97121, 80427, 'en', 'name', 'Cancer Focus Northern Ireland'),
(97122, 80428, 'en', 'name', 'Royal Australasian College of Medical Administrators'),
(97123, 80429, 'no_lang_code', 'name', 'MoTeC (Australia)'),
(97124, 80430, 'en', 'name', 'Homeopathy Research Institute'),
(97125, 80431, 'en', 'name', 'CARE Fertility'),
(97126, 80432, 'is', 'name', 'Fornleifastofnun ƍslands'),
(97127, 80433, 'no_lang_code', 'name', 'Micro Systems Engineering (United States)'),
(97128, 80434, 'en', 'name', 'Hong Kong Institute of Steel Construction'),
(97129, 80435, 'en', 'name', 'Newborn Screening Ontario'),
(97130, 80435, 'fr', 'name', 'DƩpistage NƩonatal Ontario'),
(97131, 80436, 'no_lang_code', 'name', 'Inflarx (Germany)'),
(97132, 80437, 'en', 'name', 'Nasional University'),
(97133, 80437, 'id', 'name', 'Universitas Nasional'),
(97134, 80438, 'en', 'name', 'Plymouth State University'),
(97135, 80438, 'fr', 'name', 'UniversitĆ© d''Ɖtat de plymouth'),
(97136, 80439, 'en', 'name', 'European Graduate School of Neuroscience'),
(97137, 80440, 'en', 'name', 'Asahikawa Medical College Hospital'),
(97138, 80440, 'ja', 'name', 'ę—­å·åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(97139, 80441, 'en', 'name', 'Dermatology Research and Education Foundation'),
(97140, 80442, 'en', 'name', 'Brien Holden Vision Institute'),
(97141, 80443, 'en', 'name', 'European Federation of Pharmaceutical Industries and Associations'),
(97142, 80444, 'en', 'name', 'Washington State University Vancouver'),
(97143, 80445, 'es', 'name', 'Universidad de la Ciudad de Buenos Aires'),
(97144, 80446, 'en', 'name', 'Hunter College'),
(97145, 80447, 'en', 'name', 'Mining and Geological Survey of Hungary'),
(97146, 80447, 'hu', 'name', 'Magyar BƔnyƔszati Ʃs Fƶldtani SzolgƔlat'),
(97147, 80448, 'en', 'name', 'American Productivity and Quality Center'),
(97148, 80449, 'en', 'name', 'Saga Medical School Hospital'),
(97149, 80449, 'ja', 'name', 'ä½č³€å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(97150, 80450, 'no_lang_code', 'name', 'Triad Interactive Media (United States)'),
(97151, 80451, 'en', 'name', 'Center for Urban Waters'),
(97152, 80452, 'en', 'name', 'National School of Occupational Medicine'),
(97153, 80452, 'es', 'name', 'Escuela Nacional de Medicina del Trabajo'),
(97154, 80453, 'en', 'name', 'Iwate Prefectural Central Hospital'),
(97155, 80453, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹äø­å¤®ē—…é™¢'),
(97156, 80454, 'no_lang_code', 'name', 'Biotronik (Singapore)'),
(97157, 80455, 'en', 'name', 'National Epilepsy Center'),
(97158, 80455, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹é™å²”ć¦ć‚“ć‹ć‚“ćƒ»ē„žēµŒåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(97159, 80456, 'no_lang_code', 'name', 'Surgical Innovations (United Kingdom)'),
(97160, 80457, 'en', 'name', 'American Society of Addiction Medicine'),
(97161, 80458, 'en', 'name', 'Acupuncture And Massage College'),
(97162, 80459, 'en', 'name', 'Young Men''s Christian Association'),
(97163, 80460, 'ja', 'name', 'ć‚·ć‚¹ćƒ”ćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(97164, 80460, 'no_lang_code', 'name', 'Sysmex (Japan)'),
(97165, 80461, 'en', 'name', 'Faith Regional Health Services');
INSERT INTO `ror_settings` VALUES
(97166, 80462, 'en', 'name', 'UK Web Archive'),
(97167, 80463, 'no_lang_code', 'name', 'Pernod Ricard (France)'),
(97168, 80464, 'en', 'name', 'Institute of Pediatrics, Obstetrics, and Gynecology named after acad. O.M. Lukyanova of the National Academy of Medical Sciences of Ukraine'),
(97169, 80464, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пеГіатрії, Š°ŠŗŃƒŃˆŠµŃ€ŃŃ‚Š²Š° та гінекології ŠŠŠœŠ України'),
(97170, 80465, 'en', 'name', 'Queen Nandi Regional Hospital'),
(97171, 80466, 'en', 'name', 'Ivan Kozhedub Kharkiv National Air Force University'),
(97172, 80466, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŠ¾Š²Ń–Ń‚Ń€ŃŠ½ŠøŃ… сил імені Івана КожеГуба'),
(97173, 80467, 'no_lang_code', 'name', 'Intelligify (United Kingdom)'),
(97174, 80468, 'en', 'name', 'Nippon Medical School Musashi Kosugi Hospital'),
(97175, 80468, 'ja', 'name', 'ę—„ęœ¬åŒ»ē§‘å¤§å­¦ę­¦č”µå°ę‰ē—…é™¢'),
(97176, 80469, 'ja', 'name', 'ä½å‹é‡‘å±žé‰±å±±ę Ŗå¼ä¼šē¤¾'),
(97177, 80469, 'no_lang_code', 'name', 'Sumitomo Metal Mining (Japan)'),
(97178, 80470, 'en', 'name', 'Toronto Dementia Research Alliance'),
(97179, 80471, 'fr', 'name', 'Institut de Statistiques et d’Études Ɖconomiques du Burundi'),
(97180, 80472, 'en', 'name', 'Royal Saskatchewan Museum'),
(97181, 80473, 'en', 'name', 'Oregon Nanoscience and Microtechnologies Institute'),
(97182, 80474, 'en', 'name', 'National Institute of Neurological Sciences'),
(97183, 80474, 'es', 'name', 'Instituto Nacional de Ciencias Neurológicas'),
(97184, 80475, 'en', 'name', 'Suzhou Vocational University'),
(97185, 80475, 'zh', 'name', 'č‹å·žåø‚čŒäøšå¤§å­¦'),
(97186, 80476, 'no_lang_code', 'name', 'Ifm Therapeutics (United States)'),
(97187, 80477, 'no_lang_code', 'name', 'Inzen Therapeutics (United States)'),
(97188, 80478, 'en', 'name', 'Anesthesiology and Surgical Oncology Research Group'),
(97189, 80479, 'en', 'name', 'Inamori Foundation'),
(97190, 80479, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗēØ²ē››č²”å›£'),
(97191, 80480, 'en', 'name', 'Florida Institute of Oceanography'),
(97192, 80481, 'en', 'name', 'Pacific Institute for Climate Solutions'),
(97193, 80482, 'en', 'name', 'Pontifical Biblical Institute'),
(97194, 80482, 'it', 'name', 'Pontificio Istituto Biblico'),
(97195, 80482, 'la', 'name', 'Pontificium Institutum Biblicum'),
(97196, 80483, 'en', 'name', 'Finnish Cancer Registry'),
(97197, 80483, 'fi', 'name', 'Suomen SyƶpƤrekisteri'),
(97198, 80484, 'es', 'name', 'ClĆ­nica Las Condes'),
(97199, 80485, 'en', 'name', 'Ratio'),
(97200, 80486, 'en', 'name', 'Center for Digital Image Evaluation'),
(97201, 80487, 'de', 'name', 'Bayerisches Landesamt für Umwelt'),
(97202, 80488, 'en', 'name', 'Nagaoka National College of Technology'),
(97203, 80488, 'ja', 'name', 'é•·å²”å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(97204, 80489, 'en', 'name', 'Gasol Foundation'),
(97205, 80490, 'en', 'name', 'Galicia Sur Biomedical Foundation'),
(97206, 80490, 'es', 'name', 'Fundación Biomédica Galicia Sur'),
(97207, 80491, 'en', 'name', 'American Community Schools'),
(97208, 80492, 'en', 'name', 'Children''s Investment Fund Foundation'),
(97209, 80493, 'fr', 'name', 'L’Institut du Cancer Courlancy Reims'),
(97210, 80494, 'no_lang_code', 'name', 'AZTI'),
(97211, 80495, 'en', 'name', 'Nuclear Materials Authority'),
(97212, 80496, 'en', 'name', 'Łukasiewicz Research Network - Industrial Chemistry Institute'),
(97213, 80496, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Instytut Chemii Przemysłowej'),
(97214, 80497, 'en', 'name', 'Nantucket Cottage Hospital'),
(97215, 80498, 'de', 'name', 'Forschungsinstitut für Philosophie Hannover'),
(97216, 80498, 'en', 'name', 'Research Institute for Philosophy Hannover'),
(97217, 80499, 'no_lang_code', 'name', 'Prothena (United States)'),
(97218, 80500, 'de', 'name', 'Max-Planck-Institut für Rechtsgeschichte und Rechtstheorie'),
(97219, 80500, 'en', 'name', 'Max Planck Institute for Legal History and Legal Theory'),
(97220, 80501, 'en', 'name', 'Society for Neuroscience in Anesthesiology and Critical Care'),
(97221, 80502, 'no_lang_code', 'name', 'Acibadem City Clinic'),
(97222, 80503, 'it', 'name', 'Puglia Salute'),
(97223, 80504, 'en', 'name', 'The Institute of Legislation and Comparative Law under the Government of the Russian Federation'),
(97224, 80505, 'de', 'name', 'Deutsche Morbus Crohn/Colitis ulcerosa Vereinigung'),
(97225, 80506, 'en', 'name', 'Japan Industrial Safety and Health Association'),
(97226, 80506, 'ja', 'name', 'ē‰¹åˆ„ę°‘é–“ę³•äŗŗäø­å¤®åŠ“åƒē½å®³é˜²ę­¢å”ä¼š'),
(97227, 80507, 'en', 'name', 'Walloon Government'),
(97228, 80507, 'fr', 'name', 'Gouvernement wallon'),
(97229, 80508, 'sv', 'name', 'Malmƶ Museer'),
(97230, 80509, 'en', 'name', 'Radiation Research Society'),
(97231, 80510, 'en', 'name', 'The Land Institute'),
(97232, 80511, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬Ł†ŁˆŲØ Ų§Ł„ŁˆŲ§ŲÆŁŠ'),
(97233, 80511, 'en', 'name', 'South Valley University'),
(97234, 80512, 'no_lang_code', 'name', 'NotABook (United States)'),
(97235, 80513, 'en', 'name', 'Optica'),
(97236, 80514, 'en', 'name', 'Kronotsky Reserve'),
(97237, 80514, 'ru', 'name', 'ŠšŃ€Š¾Š½Š¾Ń†ŠŗŠøŠ¹ заповеГник'),
(97238, 80515, 'en', 'name', 'Japan Society of Home Economics'),
(97239, 80515, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å®¶ę”æå­¦ä¼š'),
(97240, 80516, 'en', 'name', 'Singapore Cancer Society'),
(97241, 80517, 'en', 'name', 'Privolshky Les Nature Reserve'),
(97242, 80517, 'ru', 'name', 'ŠŸŃ€ŠøŠ²Š¾Š»Š¶ŃŠŗŠ°Ń Š»ŠµŃŠ¾ŃŃ‚ŠµŠæŃŒ заповеГник'),
(97243, 80518, 'no_lang_code', 'name', 'Alibaba Group (China)'),
(97244, 80518, 'zh', 'name', 'é˜æé‡Œå·“å·“é›†å›¢ęŽ§č‚”ęœ‰é™å…¬åø'),
(97245, 80519, 'it', 'name', 'Associazione Calabrese di Epatologia'),
(97246, 80520, 'en', 'name', 'Tohoku University Hospital'),
(97247, 80520, 'ja', 'name', 'ę±åŒ—å¤§å­¦ē—…é™¢'),
(97248, 80521, 'no_lang_code', 'name', 'L3Harris (United Kingdom)'),
(97249, 80522, 'en', 'name', 'National Institute of Technology, Ichinoseki College'),
(97250, 80522, 'ja', 'name', 'äø€é–¢å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(97251, 80523, 'en', 'name', 'Gastroenterology Group of Rochester'),
(97252, 80524, 'en', 'name', 'Institute of Feed and Agriculture of Podillya of the National Academy of Agrarian Sciences'),
(97253, 80524, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кормів та ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠŸŠ¾Š“Ń–Š»Š»Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(97254, 80525, 'en', 'name', 'Southeast Watershed Research Laboratory'),
(97255, 80526, 'no_lang_code', 'name', 'MBMed (Argentina)'),
(97256, 80527, 'en', 'name', 'Medical Defence Union'),
(97257, 80528, 'en', 'name', 'Winona State University'),
(97258, 80528, 'fr', 'name', 'UniversitĆ© d''Ɖtat de winona'),
(97259, 80529, 'en', 'name', 'Chinese Academy of Inspection and Quarantine'),
(97260, 80529, 'zh', 'name', 'äø­å›½ę£€éŖŒę£€ē–«ē§‘å­¦ē ”ē©¶é™¢'),
(97261, 80530, 'no_lang_code', 'name', 'EPC Natural Products'),
(97262, 80530, 'zh', 'name', 'ä¼ŠęÆ”č„æę¤ē‰©čÆē‰©ęŠ€ęœÆęœ‰é™å…¬åø'),
(97263, 80531, 'no_lang_code', 'name', 'Ocellus (United States)'),
(97264, 80532, 'en', 'name', 'Beijing Hypertension Prevention Association'),
(97265, 80532, 'zh', 'name', 'åŒ—äŗ¬é«˜č”€åŽ‹é˜²ę²»åä¼š'),
(97266, 80533, 'cs', 'name', 'Člověk v Tƭsni'),
(97267, 80533, 'en', 'name', 'People in Need'),
(97268, 80534, 'en', 'name', 'Luquillo Long Term Ecological Research'),
(97269, 80535, 'no_lang_code', 'name', 'Tauri Group (United States)'),
(97270, 80536, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾KRI'),
(97271, 80536, 'no_lang_code', 'name', 'KRI'),
(97272, 80537, 'en', 'name', 'Canadian Society for International Health'),
(97273, 80537, 'fr', 'name', 'SociƩtƩ Canadienne de SantƩ Internationale'),
(97274, 80538, 'en', 'name', 'American Society for Bone and Mineral Research'),
(97275, 80539, 'en', 'name', 'Spinal Cord Injury Ontario'),
(97276, 80540, 'no_lang_code', 'name', 'Horizon Therapeutics (United States)'),
(97277, 80541, 'bn', 'name', 'ą¦øą¦¤ą§ą¦Æą§‡ą¦Øą§ą¦¦ą§ą¦°ą¦Øą¦¾ą¦„ বসু ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦®ą§Œą¦²ą¦æą¦• ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦•ą§‡ą¦Øą§ą¦¦ą§ą¦°'),
(97278, 80541, 'en', 'name', 'S.N. Bose National Centre for Basic Sciences'),
(97279, 80542, 'en', 'name', 'National Soil Dynamics Research Laboratory'),
(97280, 80543, 'es', 'name', 'Centro Científico Tecnológico de Valparaíso'),
(97281, 80544, 'no_lang_code', 'name', 'Biohaven Pharmaceuticals (United States)'),
(97282, 80545, 'fr', 'name', 'Laboratoire Interdisciplinaire des Ɖnergies de Demain'),
(97283, 80546, 'en', 'name', 'New Tokyo Hospital'),
(97284, 80546, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é¦Øä¼šę–°ę±äŗ¬ē—…é™¢'),
(97285, 80547, 'en', 'name', 'FoAM'),
(97286, 80548, 'en', 'name', 'The Swedish Association of Health Professionals'),
(97287, 80548, 'sv', 'name', 'VƄrdfƶrbundet'),
(97288, 80549, 'no_lang_code', 'name', 'Thomson Reuters (United States)'),
(97289, 80550, 'en', 'name', 'Field Projects International'),
(97290, 80551, 'it', 'name', 'Istituti Clinici Scientifici Maugeri'),
(97291, 80552, 'no_lang_code', 'name', 'Lee & Man Chemical Company (China)'),
(97292, 80552, 'zh', 'name', 'ē†ę–‡åŒ–å·„ęœ‰é™å…¬åø'),
(97293, 80553, 'en', 'name', 'Academy of Family Physicians of India'),
(97294, 80554, 'no_lang_code', 'name', 'Gene and GreenTK (France)'),
(97295, 80555, 'en', 'name', 'National Biodiversity Network Trust'),
(97296, 80556, 'en', 'name', 'Retinal Consultants of Arizona'),
(97297, 80557, 'en', 'name', 'Brain Injury Association of America'),
(97298, 80558, 'no_lang_code', 'name', 'Infant'),
(97299, 80559, 'en', 'name', 'German Peruvian Private University'),
(97300, 80559, 'es', 'name', 'Universidad Privada Peruano Alemana'),
(97301, 80560, 'no_lang_code', 'name', 'Olin Corporation (United States)'),
(97302, 80561, 'ja', 'name', 'ć‚øćƒ§ć‚¤ć‚½ćƒ³ ć‚»ć‚¤ćƒ•ćƒ†ć‚£ ć‚·ć‚¹ćƒ†ćƒ ć‚ŗ ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(97303, 80561, 'no_lang_code', 'name', 'Joyson Safety Systems (Japan)'),
(97304, 80562, 'en', 'name', 'Hubbard Brook Long Term Ecological Research'),
(97305, 80563, 'en', 'name', 'PLA Information Engineering University'),
(97306, 80563, 'zh', 'name', '中国人民解放军俔息巄程大学'),
(97307, 80564, 'en', 'name', 'Suratthani Rajabhat University'),
(97308, 80564, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąøøąø£ąø²ąø©ąøŽąø£ą¹Œąø˜ąø²ąø™ąøµ'),
(97309, 80565, 'en', 'name', 'Canadian Orthopaedic Foundation'),
(97310, 80566, 'no_lang_code', 'name', 'Biosyntia (Denmark)'),
(97311, 80567, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ų£Ł…ŁŠŲ± سلطان Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠŲ©'),
(97312, 80567, 'en', 'name', 'Riyadh Armed Forces Hospital'),
(97313, 80568, 'en', 'name', 'Akademi Keperawatan YKY'),
(97314, 80569, 'en', 'name', 'Providence Health & Services'),
(97315, 80570, 'en', 'name', 'Noosa Hospital'),
(97316, 80571, 'en', 'name', 'Leeds and York Partnership NHS Foundation Trust'),
(97317, 80572, 'no_lang_code', 'name', 'Mission Therapeutics (United Kingdom)'),
(97318, 80573, 'en', 'name', 'Center for Muscle Health and Neuromuscular Disorders'),
(97319, 80574, 'no_lang_code', 'name', 'Cross Compass (Japan)'),
(97320, 80575, 'en', 'name', 'Regional Centre for Biotechnology'),
(97321, 80575, 'hi', 'name', 'ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°ą„€ą¤Æ ą¤œą„ˆą¤µą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(97322, 80576, 'en', 'name', 'California Botanical Society'),
(97323, 80577, 'en', 'name', 'ESME - School of Engineering'),
(97324, 80577, 'fr', 'name', 'ESME - Ɖcole d’ingĆ©nieurs pluridisciplinaires'),
(97325, 80578, 'en', 'name', 'Catholic Medical Center'),
(97326, 80579, 'no_lang_code', 'name', 'Plasmionique (Canada)'),
(97327, 80580, 'en', 'name', 'University of Tennessee at Chattanooga'),
(97328, 80580, 'fr', 'name', 'UniversitƩ du tennessee Ơ chattanooga'),
(97329, 80581, 'en', 'name', 'BioVale'),
(97330, 80582, 'en', 'name', 'Parkway Cancer Centre'),
(97331, 80583, 'en', 'name', 'Erwin L. Hahn Institute for Magnetic Resonance Imaging'),
(97332, 80584, 'no_lang_code', 'name', 'Aaniiih Nakoda College'),
(97333, 80585, 'en', 'name', 'Widener University'),
(97334, 80586, 'en', 'name', 'General Department of Preventive Medicine'),
(97335, 80586, 'vi', 'name', 'CỄc Y tế Dự phòng'),
(97336, 80587, 'en', 'name', 'Chartered Institution of Building Services Engineers'),
(97337, 80588, 'en', 'name', 'Hogg Foundation for Mental Health'),
(97338, 80589, 'no_lang_code', 'name', 'InterGrain'),
(97339, 80590, 'en', 'name', 'National Council of University Research Administrators'),
(97340, 80591, 'es', 'name', 'Hospital Infantil de México Federico Gómez'),
(97341, 80592, 'en', 'name', 'Mycological Society of America'),
(97342, 80593, 'en', 'name', 'Cherokee Nation'),
(97343, 80594, 'no_lang_code', 'name', 'The Hyve (Netherlands)'),
(97344, 80595, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾SCREENćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹'),
(97345, 80595, 'no_lang_code', 'name', 'SCREEN (Japan)'),
(97346, 80596, 'en', 'name', 'Advanced Institute of Materials Science'),
(97347, 80596, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē‰¹ę®Šē„”ę©Ÿęę–™ē ”ē©¶ę‰€'),
(97348, 80597, 'en', 'name', 'Bozeman Health Deaconess Hospital'),
(97349, 80598, 'en', 'name', 'Manx National Heritage'),
(97350, 80598, 'gv', 'name', 'Eiraght Ashoonagh Vannin'),
(97351, 80599, 'en', 'name', 'Singapore Maritime Institute'),
(97352, 80600, 'en', 'name', 'American Philosophical Association'),
(97353, 80601, 'no_lang_code', 'name', 'Pacific Radiology (New Zealand)'),
(97354, 80602, 'no_lang_code', 'name', 'Ixico (United Kingdom)'),
(97355, 80603, 'en', 'name', 'Wayo Women''s University'),
(97356, 80603, 'ja', 'name', 'å’Œę“‹å„³å­å¤§å­¦'),
(97357, 80604, 'en', 'name', 'Institute for Marine Biological Resources and Biotechnology'),
(97358, 80604, 'it', 'name', 'Istituto per le Risorse Biologiche e le Biotecnologie Marine'),
(97359, 80605, 'it', 'name', 'SocietĆ  Italiana di Cardiologia'),
(97360, 80606, 'en', 'name', 'International University School of Medicine'),
(97361, 80607, 'en', 'name', 'Chinese Arctic and Antarctic Administration'),
(97362, 80607, 'zh', 'name', 'å›½å®¶ęµ·ę“‹å±€ęžåœ°č€ƒåÆŸåŠžå…¬å®¤'),
(97363, 80608, 'de', 'name', 'Universitätsklinikum Tübingen'),
(97364, 80609, 'en', 'name', 'Tsinghua Sichuan Energy Internet Research Institute'),
(97365, 80610, 'no_lang_code', 'name', 'IBM (Germany)'),
(97366, 80611, 'en', 'name', 'Institute of Agricultural Economics Belgrade'),
(97367, 80611, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за економику пољопривреГе БеограГ'),
(97368, 80612, 'en', 'name', 'Lute Society'),
(97369, 80613, 'en', 'name', 'Interuniversity Institute for Marine Sciences in Eilat'),
(97370, 80613, 'he', 'name', 'המכון ×”×‘×™× ××•× ×™×‘×Ø×”×™×˜××™ למדעי הים ×‘××™×œ×Ŗ'),
(97371, 80614, 'en', 'name', 'Advanced Technologies Application Center'),
(97372, 80615, 'no_lang_code', 'name', 'Biomica (Israel)'),
(97373, 80616, 'es', 'name', 'Instituto Interamericano de Derechos Humanos'),
(97374, 80617, 'de', 'name', 'SRH Klinikum Karlsbad-Langensteinbach'),
(97375, 80618, 'no_lang_code', 'name', 'Aclaris Therapeutics (United States)'),
(97376, 80619, 'en', 'name', 'Indian Statistical Institute'),
(97377, 80619, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą¤¾ą¤‚ą¤–ą„ą¤Æą¤æą¤•ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(97378, 80620, 'da', 'name', 'LƦgemiddelstyrelsen'),
(97379, 80620, 'en', 'name', 'Danish Medicines Agency'),
(97380, 80621, 'en', 'name', 'California NanoSystems Institute'),
(97381, 80622, 'es', 'name', 'Centro de Investigaciones de Ecosistemas Costeros'),
(97382, 80623, 'en', 'name', 'National Measurement Standards Unit'),
(97383, 80623, 'id', 'name', 'Standar Nasional Satuan Ukuran'),
(97384, 80624, 'en', 'name', 'Shandong Institute of Automation'),
(97385, 80624, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢č‡ŖåŠØåŒ–ē ”ē©¶ę‰€ęˆ'),
(97386, 80625, 'en', 'name', 'Toho University Omori Medical Center'),
(97387, 80625, 'ja', 'name', 'ę±é‚¦å¤§å­¦åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼å¤§ę£®ē—…é™¢'),
(97388, 80626, 'en', 'name', 'Shoklo Malaria Research Unit'),
(97389, 80627, 'en', 'name', 'Brazilian Micro and Small Enterprises Support Service'),
(97390, 80627, 'pt', 'name', 'ServiƧo Brasileiro de Apoio Ơs Micro e Pequenas Empresas'),
(97391, 80628, 'en', 'name', 'Fiji National University'),
(97392, 80629, 'en', 'name', 'Kobe Kaisei Hospital'),
(97393, 80629, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£ē„žęˆøęµ·ę˜Ÿē—…é™¢'),
(97394, 80630, 'en', 'name', 'Invest Northern Ireland'),
(97395, 80631, 'en', 'name', 'Edwin Clark University'),
(97396, 80632, 'en', 'name', 'General Practitioners Research Institute'),
(97397, 80633, 'no_lang_code', 'name', 'Pivot'),
(97398, 80634, 'en', 'name', 'Saint Camillus International University of Health and Medical Sciences'),
(97399, 80635, 'no_lang_code', 'name', 'Pepsi (United States)'),
(97400, 80636, 'no_lang_code', 'name', 'Applied Research (United States)'),
(97401, 80637, 'no_lang_code', 'name', 'Immunitas Therapeutics (United States)'),
(97402, 80638, 'fr', 'name', 'IRT Jules Verne'),
(97403, 80639, 'en', 'name', 'Chiba Convention Bureau and International Center'),
(97404, 80639, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ć”ć°å›½éš›ć‚³ćƒ³ćƒ™ćƒ³ć‚·ćƒ§ćƒ³ćƒ“ćƒ„ćƒ¼ćƒ­ćƒ¼'),
(97405, 80640, 'en', 'name', 'Centers for Disease Control and Prevention'),
(97406, 80641, 'pt', 'name', 'Centro UniversitƔrio SATC'),
(97407, 80642, 'en', 'name', 'Knowledge Network for Biocomplexity'),
(97408, 80643, 'en', 'name', 'Northern Ireland Assembly'),
(97409, 80644, 'en', 'name', 'Ontario Drug Policy Research Network'),
(97410, 80645, 'no_lang_code', 'name', 'KrioSystem (Poland)'),
(97411, 80646, 'ar', 'name', 'Ł…Ų±ŁƒŲ² ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„ŁˆŲ­ŲÆŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(97412, 80646, 'en', 'name', 'Centre for Arab Unity Studies'),
(97413, 80647, 'en', 'name', 'ERN Board of Member States'),
(97414, 80648, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„Ų·ŲØ Ų§Ł„ŲŖŲ¬ŲÆŁŠŲÆŁ‰'),
(97415, 80648, 'en', 'name', 'Egypt Center for Research and Regenerative Medicine'),
(97416, 80649, 'no_lang_code', 'name', 'Portola Pharmaceuticals (United States)'),
(97417, 80650, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ الخامس'),
(97418, 80650, 'en', 'name', 'Mohammed V University'),
(97419, 80650, 'fr', 'name', 'UniversitƩ Mohammed-V de Rabat'),
(97420, 80651, 'en', 'name', 'Southern Connecticut State University'),
(97421, 80652, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŃŠæŠµŃ€ŠøŠ¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ ботаники им. Š’. Ф. ŠšŃƒŠæŃ€ŠµŠ²ŠøŃ‡Š° ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(97422, 80652, 'en', 'name', 'Institute of Experimental Botany named after V.F. Kuprevich of the National Academy of Sciences of Belarus'),
(97423, 80653, 'en', 'name', 'Pennsylvania Department of Agriculture'),
(97424, 80654, 'en', 'name', 'Mother and Child Face to Tropical Infections'),
(97425, 80654, 'fr', 'name', 'MĆØre et Enfant en Milieu Tropical'),
(97426, 80655, 'en', 'name', 'Association of Nurses in AIDS Care'),
(97427, 80656, 'en', 'name', 'Polar Knowledge Canada'),
(97428, 80657, 'en', 'name', 'The Seventh Affiliated Hospital of Sun Yat-sen University'),
(97429, 80657, 'zh', 'name', 'äø­å±±å¤§å­¦é™„å±žē¬¬äøƒåŒ»é™¢'),
(97430, 80658, 'en', 'name', 'North District Hospital'),
(97431, 80658, 'zh', 'name', '北區醫院'),
(97432, 80659, 'en', 'name', 'Center for the Socioeconomic Impact of Environmental Policies'),
(97433, 80659, 'es', 'name', 'Centro para el Impacto Socioeconómico de las Políticas Ambientales'),
(97434, 80660, 'en', 'name', 'Meteoceanics Institute for Complex System Science'),
(97435, 80661, 'no_lang_code', 'name', 'Karsa (Finland)'),
(97436, 80662, 'en', 'name', 'Hwa Chong Institution'),
(97437, 80662, 'ta', 'name', 'ą®¹ąÆą®µą®¾ ą®šą®¾ą®™ąÆ ą®Ŗą®³ąÆą®³ą®æ'),
(97438, 80662, 'zh', 'name', 'ę–°åŠ å”åŽä¾Øäø­å­¦'),
(97439, 80663, 'en', 'name', 'Museum of Natural History'),
(97440, 80663, 'es', 'name', 'Museo de Historia Natural'),
(97441, 80664, 'en', 'name', 'Visim Nature Reserve'),
(97442, 80664, 'ru', 'name', 'Висимский Š³Š¾ŃŃƒŠ“арственный заповеГник'),
(97443, 80665, 'en', 'name', 'Prison Reform Trust'),
(97444, 80666, 'no_lang_code', 'name', 'DeepBiome Therapeutics (United States)'),
(97445, 80667, 'en', 'name', 'Providence College'),
(97446, 80668, 'en', 'name', 'Beijing Institute of Big Data Research'),
(97447, 80668, 'zh', 'name', 'åŒ—äŗ¬å¤§ę•°ę®ē ”ē©¶é™¢'),
(97448, 80669, 'en', 'name', 'Kansas Historical Society'),
(97449, 80670, 'no_lang_code', 'name', 'iDirect Government (United States)'),
(97450, 80671, 'de', 'name', 'Arbeitsstelle für Kulturwissenschaftliche Forschungen'),
(97451, 80672, 'no_lang_code', 'name', 'Telekom Malaysia Berhad (Malaysia)'),
(97452, 80673, 'en', 'name', 'National Institute of Mental Health "Honorio Delgado - Hideyo Noguchi"'),
(97453, 80673, 'es', 'name', 'Instituto Nacional de Salud Mental "Honorio Delgado - Hideyo Noguchi"'),
(97454, 80674, 'en', 'name', 'University City Science Center'),
(97455, 80675, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½ę•™č·å“”äŗ’åŠ©ä¼šäø‰ę„½ē—…é™¢'),
(97456, 80675, 'no_lang_code', 'name', 'Sanraku Hospital'),
(97457, 80676, 'en', 'name', 'General Medical Council'),
(97458, 80677, 'no_lang_code', 'name', 'Saertex (Germany)'),
(97459, 80678, 'en', 'name', 'Jubilee Clinical Research'),
(97460, 80679, 'no_lang_code', 'name', 'Immunai (United States)'),
(97461, 80680, 'en', 'name', 'Society for Experimental Biology and Medicine'),
(97462, 80681, 'en', 'name', 'Mercy Hospital and Medical Center'),
(97463, 80682, 'en', 'name', 'European Rhinologic Society'),
(97464, 80683, 'en', 'name', 'Department of Home Affairs'),
(97465, 80684, 'en', 'name', 'Flatiron Institute'),
(97466, 80685, 'en', 'name', 'Wellcome Trust Liverpool Glasgow Centre for Global Health Research'),
(97467, 80686, 'en', 'name', 'Thames Valley Archaeological Services'),
(97468, 80687, 'no_lang_code', 'name', 'Comcast (United States)'),
(97469, 80688, 'en', 'name', 'National University of Ireland'),
(97470, 80688, 'ga', 'name', 'Ollscoil na hƉireann'),
(97471, 80689, 'en', 'name', 'Society of Tribologists and Lubrication Engineers'),
(97472, 80690, 'en', 'name', 'Foundation for Science and Technology'),
(97473, 80690, 'pt', 'name', 'Fundação para a Ciência e Tecnologia, Fundação para a Ciência e a Tecnologia'),
(97474, 80691, 'de', 'name', 'Herder-Institut für Historische Ostmitteleuropaforschung – Institut der Leibniz-Gemeinschaft'),
(97475, 80691, 'en', 'name', 'Herder Institute'),
(97476, 80692, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„ĪæĻ… ĪœĪµĻƒĪæĪ³ĪµĪ¹Ī±ĪŗĻŽĪ½ Ī£Ļ€ĪæĻ…Ī“ĻŽĪ½'),
(97477, 80692, 'en', 'name', 'FORTH Institute of Mediterranean Studies'),
(97478, 80693, 'en', 'name', 'Malaysian Society of Nephrology'),
(97479, 80694, 'en', 'name', 'Khabarovsk State University of Economics and Law'),
(97480, 80694, 'ru', 'name', 'Š„Š°Š±Š°Ń€Š¾Š²ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(97481, 80695, 'en', 'name', 'American Association of Nurse Practitioners'),
(97482, 80696, 'de', 'name', 'Sonnenhalde (Switzerland)'),
(97483, 80697, 'en', 'name', 'BioXFEL Science and Technology Center'),
(97484, 80698, 'de', 'name', 'Fraunhofer-Institut für Produktionstechnologie IPT'),
(97485, 80698, 'en', 'name', 'Fraunhofer Institute for Production Technology IPT'),
(97486, 80699, 'en', 'name', 'Michigan Department of Natural Resources'),
(97487, 80700, 'no_lang_code', 'name', 'Zora Biosciences (Finland)'),
(97488, 80701, 'en', 'name', 'The Institute of Conservation'),
(97489, 80702, 'en', 'name', 'Thaksin University'),
(97490, 80702, 'th', 'name', 'ดหาวณทยาคัยทักษณณ'),
(97491, 80703, 'en', 'name', 'Faraday Institute for Science and Religion'),
(97492, 80704, 'en', 'name', 'Leeds Cares'),
(97493, 80705, 'en', 'name', 'Foreign Agricultural Service'),
(97494, 80706, 'en', 'name', 'Mackay Medical College'),
(97495, 80706, 'zh', 'name', '馬偕醫學院'),
(97496, 80707, 'no_lang_code', 'name', 'Ionis Pharmaceuticals (United States)'),
(97497, 80708, 'en', 'name', 'National Center for Communicable Diseases'),
(97498, 80708, 'mn', 'name', 'ЄАЛДВАРТ ÓØŠ’Š§Š˜Š Š”Š£Š”Š›ŠŠ›Š«Š Ņ®ŠŠ”Š­Š”ŠŠ˜Š™ Š¢ÓØŠ’'),
(97499, 80709, 'en', 'name', 'Russian Federal Centre of Forensic Science of the Ministry of Justice of the Russian Federation'),
(97500, 80709, 'ru', 'name', 'Российский Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ центр суГебной ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ при ŠœŠøŠ½ŠøŃŃ‚ерстве ŃŽŃŃ‚ŠøŃ†ŠøŠø Российской ФеГерации'),
(97501, 80710, 'da', 'name', 'Bispebjerg Hospital'),
(97502, 80711, 'en', 'name', 'National Agrarian Health Service'),
(97503, 80711, 'es', 'name', 'Servicio Nacional de Sanidad Agraria'),
(97504, 80712, 'pt', 'name', 'Laboratório DNA Center'),
(97505, 80713, 'en', 'name', 'Mental Health Research Canada'),
(97506, 80713, 'fr', 'name', 'Recherche en SantƩ Mentale Canada'),
(97507, 80714, 'en', 'name', 'Institute for Diagnostic Imaging and Research of the Skin and Soft Tissues'),
(97508, 80714, 'es', 'name', 'Instituto de Investigacion y Diagnostico por Imagenes en Piel y Tejidos Blandos'),
(97509, 80715, 'en', 'name', 'Te Pūkenga'),
(97510, 80716, 'it', 'name', 'Ospedale Vincenzo Cervello'),
(97511, 80717, 'en', 'name', 'Osaka City General Hospital'),
(97512, 80717, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§é˜Ŗåø‚ę°‘ē—…é™¢ę©Ÿę§‹å¤§é˜Ŗåø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(97513, 80718, 'en', 'name', 'Moscow Institute of Physics and Technology'),
(97514, 80718, 'ru', 'name', 'Московский физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(97515, 80719, 'fr', 'name', 'ConfƩrence Universitaire de Suisse Occidentale'),
(97516, 80720, 'no_lang_code', 'name', 'Single Cell Discoveries (Netherlands)'),
(97517, 80721, 'en', 'name', 'China Institute of Atomic Energy'),
(97518, 80721, 'zh', 'name', 'äø­å›½åŽŸå­čƒ½ē§‘å­¦ē ”ē©¶é™¢'),
(97519, 80722, 'en', 'name', 'National Institute of Justice'),
(97520, 80723, 'ko', 'name', 'ģ§€ģ•„ģ“ģ“ė…øė² ģ“ģ…˜'),
(97521, 80723, 'no_lang_code', 'name', 'GI Innovation (South Korea)'),
(97522, 80724, 'be', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š˜Š—Š˜ŠžŠ›ŠžŠ“Š˜Š˜ ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠžŠ™ ŠŠšŠŠ”Š•ŠœŠ˜Š˜ ŠŠŠ£Šš Š‘Š•Š›ŠŠ Š£Š”Š˜'),
(97523, 80724, 'en', 'name', 'Institute of Physiology National Academy of Sciences of Belarus'),
(97524, 80725, 'en', 'name', 'Royal Ontario Museum'),
(97525, 80725, 'fr', 'name', 'MusƩe royal de l''Ontario'),
(97526, 80726, 'en', 'name', 'Tree Fruit Research Laboratory'),
(97527, 80727, 'en', 'name', 'Henan Academy of Agricultural Sciences'),
(97528, 80727, 'zh', 'name', 'ę²³å—ēœå†œäøšē§‘å­¦é™¢'),
(97529, 80728, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪˆĻĪµĻ…Ī½Ī±Ļ‚ Πετρελαίου'),
(97530, 80728, 'en', 'name', 'FORTH Institute of Petroleum Research'),
(97531, 80729, 'en', 'name', 'British Pain Society'),
(97532, 80730, 'no_lang_code', 'name', 'Next Interactions (United States)'),
(97533, 80731, 'en', 'name', 'International Institute for Molecular Oncology'),
(97534, 80732, 'de', 'name', 'Hirslanden Salem-Spital'),
(97535, 80733, 'en', 'name', 'Kenya Fisheries Service'),
(97536, 80734, 'en', 'name', 'Caucasus Research Resource Centers'),
(97537, 80734, 'ka', 'name', 'įƒ™įƒįƒ•įƒ™įƒįƒ”įƒ˜įƒ˜įƒ” įƒ™įƒ•įƒšįƒ”įƒ•įƒ˜įƒ—įƒ˜ įƒ įƒ”įƒ”įƒ£įƒ įƒ”įƒ”įƒ‘įƒ˜įƒ” įƒŖįƒ”įƒœįƒ¢įƒ įƒ”įƒ‘įƒ˜įƒ”'),
(97538, 80735, 'en', 'name', 'Simula Research Laboratory'),
(97539, 80736, 'en', 'name', 'International Institute for Sustainability Australia'),
(97540, 80737, 'en', 'name', 'American Society of Agricultural and Biological Engineers'),
(97541, 80738, 'en', 'name', 'Iranshahr University'),
(97542, 80738, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų§ŪŒŲ±Ų§Ł†Ų“Ł‡Ų±'),
(97543, 80739, 'en', 'name', 'Grand Teton National Park'),
(97544, 80740, 'en', 'name', 'American Headache Society'),
(97545, 80741, 'ja', 'name', 'JCRćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(97546, 80741, 'no_lang_code', 'name', 'JCR Pharmaceuticals (Japan)'),
(97547, 80742, 'en', 'name', 'Platov South-Russian State Polytechnic University'),
(97548, 80742, 'ru', 'name', 'Южно-Российский Š³Š¾ŃŃƒŠ“арственный политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ (ŠŠŸŠ˜) имени М.И. ŠŸŠ»Š°Ń‚Š¾Š²Š°'),
(97549, 80743, 'no_lang_code', 'name', 'Wessling (Hungary)'),
(97550, 80744, 'en', 'name', 'European Physical Society'),
(97551, 80745, 'en', 'name', 'Ministry of Internal Affairs and Communications'),
(97552, 80745, 'ja', 'name', 'ē·å‹™å¤§č‡£'),
(97553, 80746, 'no_lang_code', 'name', 'Blazegraph (United States)'),
(97554, 80747, 'en', 'name', 'Ezhou Central Hospital'),
(97555, 80747, 'zh', 'name', 'é„‚å·žåø‚äø­åæƒåŒ»é™¢'),
(97556, 80748, 'en', 'name', 'Canadian Egg Marketing Agency'),
(97557, 80749, 'no_lang_code', 'name', 'Wikov (Czechia)'),
(97558, 80750, 'nl', 'name', 'Rode Kruis Ziekenhuis'),
(97559, 80751, 'it', 'name', 'Istituto S.Anna Crotone'),
(97560, 80752, 'en', 'name', 'Hunter Genetics'),
(97561, 80753, 'en', 'name', 'Tokyo Metropolitan Institute of Public Health'),
(97562, 80753, 'ja', 'name', 'ę±äŗ¬éƒ½å„åŗ·å®‰å…Øē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(97563, 80754, 'en', 'name', 'Luqman Unani Medical College Hospital and Research Center'),
(97564, 80755, 'en', 'name', 'Southern California Reproductive Center'),
(97565, 80756, 'en', 'name', 'National Centre of Tropical Medicine'),
(97566, 80756, 'es', 'name', 'Centro Nacional de Medicina Tropical'),
(97567, 80757, 'en', 'name', 'Directorate General for Communications Networks, Content and Technology'),
(97568, 80757, 'fr', 'name', 'RƩseaux de communication, contenu et technologies'),
(97569, 80757, 'nl', 'name', 'Kommunikationsnetze, Inhalte und Technologien'),
(97570, 80758, 'en', 'name', 'Max Planck - University of Ottawa Centre for Extreme and Quantum Photonics'),
(97571, 80758, 'fr', 'name', 'Centre Max Planck - Université d''Ottawa pour la Photonique Extrême et Quantique'),
(97572, 80759, 'en', 'name', 'OpenCitations'),
(97573, 80760, 'en', 'name', 'Con Vida Foundation'),
(97574, 80760, 'es', 'name', 'Fundación Con Vida'),
(97575, 80761, 'en', 'name', 'Korean Association for the Study of Intestinal Diseases'),
(97576, 80761, 'ko', 'name', 'ėŒ€ķ•œģž„ģ—°źµ¬ķ•™ķšŒ'),
(97577, 80762, 'en', 'name', 'Indian Academy of Sciences'),
(97578, 80763, 'en', 'name', 'American Society of Ichthyologists and Herpetologists'),
(97579, 80764, 'en', 'name', 'Institute for Research in Immunology and Cancer'),
(97580, 80764, 'fr', 'name', 'Institut de Recherche en Immunologie et CancƩrologie'),
(97581, 80765, 'en', 'name', 'Netherlands Haemophilia Society'),
(97582, 80765, 'nl', 'name', 'Nederlandse Vereniging van Hemofilie-Patiƫnten'),
(97583, 80766, 'ar', 'name', 'معهد الصحة و السلامة Ų§Ł„Ł…Ł‡Ł†ŁŠŲ© ŲØŲŖŁˆŁ†Ų³'),
(97584, 80766, 'fr', 'name', 'Institut de SantƩ et de SƩcuritƩ au Travail'),
(97585, 80767, 'en', 'name', 'American Institute for Contemporary German Studies'),
(97586, 80768, 'no_lang_code', 'name', 'Umicore (United States)'),
(97587, 80769, 'de', 'name', 'Hirslanden Klinik Aarau'),
(97588, 80770, 'no_lang_code', 'name', 'Allergan (Ireland)'),
(97589, 80771, 'de', 'name', 'Institut Papst Benedikt XVI.'),
(97590, 80771, 'en', 'name', 'Pope Benedict XVI Institute'),
(97591, 80772, 'en', 'name', 'Association for Science'),
(97592, 80772, 'ka', 'name', 'įƒįƒ”įƒįƒŖįƒ˜įƒįƒŖįƒ˜įƒ įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒ˜įƒ”įƒįƒ—įƒ•įƒ˜įƒ”'),
(97593, 80773, 'en', 'name', 'Global Fishing Watch'),
(97594, 80774, 'en', 'name', 'Nelson Marlborough Institute of Technology'),
(97595, 80775, 'en', 'name', 'American Iron and Steel Institute'),
(97596, 80776, 'en', 'name', 'Templeton World Charity Foundation'),
(97597, 80777, 'en', 'name', 'Homes England'),
(97598, 80778, 'en', 'name', 'Coordinating Research Council'),
(97599, 80779, 'en', 'name', 'ENEA Portici Research Centre'),
(97600, 80779, 'it', 'name', 'ENEA Centro Ricerche Portici'),
(97601, 80780, 'nl', 'name', 'Stichting Oogfonds Nederland'),
(97602, 80781, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عمان Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(97603, 80781, 'no_lang_code', 'name', 'Al-Ahliyya Amman University'),
(97604, 80782, 'es', 'name', 'Fundación Valle del Lili'),
(97605, 80783, 'pt', 'name', 'Hospital Santa Paula'),
(97606, 80784, 'en', 'name', 'Congregation Emanu El of New York'),
(97607, 80785, 'ja', 'name', 'GKNćƒ‰ćƒ©ć‚¤ćƒ–ćƒ©ć‚¤ćƒ³ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(97608, 80785, 'no_lang_code', 'name', 'GKN (Japan)'),
(97609, 80786, 'en', 'name', 'Max Planck - Harvard Research Center for the Archaeoscience of the Ancient Mediterranean'),
(97610, 80787, 'en', 'name', 'Center for Personalized Cancer Treatment'),
(97611, 80788, 'en', 'name', 'Nagano Prefectural Suzaka Hospital'),
(97612, 80788, 'ja', 'name', 'é•·é‡ŽēœŒē«‹äæ”å·žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(97613, 80789, 'en', 'name', 'Von Hippel Lindau Alliance'),
(97614, 80790, 'en', 'name', 'Gifu City Women''s College'),
(97615, 80790, 'ja', 'name', 'å²é˜œåø‚ē«‹å„³å­ēŸ­ęœŸå¤§å­¦'),
(97616, 80791, 'en', 'name', 'Kanazawa University Hospital'),
(97617, 80791, 'ja', 'name', 'é‡‘ę²¢å¤§å­¦é™„å±žē—…é™¢'),
(97618, 80792, 'de', 'name', 'Stiftung der Deutschen Wirtschaft'),
(97619, 80793, 'en', 'name', 'Massachusetts Medical Society'),
(97620, 80794, 'no_lang_code', 'name', 'Nanostring Technologies (United States)'),
(97621, 80795, 'ja', 'name', 'JAę–°ę½ŸåŽšē”Ÿé€£äøŠč¶Šē·åˆē—…é™¢'),
(97622, 80795, 'no_lang_code', 'name', 'Jōetsu General Hospital'),
(97623, 80796, 'es', 'name', 'Hospital Roberto del Rio'),
(97624, 80797, 'en', 'name', 'American Society of Cataract and Refractive Surgery'),
(97625, 80798, 'en', 'name', 'Canadian Association of Occupational Therapists'),
(97626, 80798, 'fr', 'name', 'Association Canadienne des ErgothƩrapeutes'),
(97627, 80799, 'no_lang_code', 'name', 'McKing Consulting (United States)'),
(97628, 80800, 'no_lang_code', 'name', 'Valio (Finland)'),
(97629, 80801, 'en', 'name', 'Zoological Institute, State Academy of Sciences'),
(97630, 80801, 'ko', 'name', '국가과학원 ė™ė¬¼ķ•™ģ—°źµ¬ģ†Œ'),
(97631, 80802, 'es', 'name', 'Unión de Ornitólogos de Costa Rica'),
(97632, 80803, 'en', 'name', 'SKA Telescope, Australia'),
(97633, 80804, 'en', 'name', 'Beit Rivka Geriatric Medical Center'),
(97634, 80804, 'he', 'name', '×ž×Ø×›×– רפואי ×’×Ø×™××˜×Ø×™ בית רבקה'),
(97635, 80805, 'en', 'name', 'Research Institute for Chromatography'),
(97636, 80805, 'fr', 'name', 'Institut de Recherche pour la Chromatographie'),
(97637, 80806, 'en', 'name', 'State University of Malang'),
(97638, 80806, 'id', 'name', 'Universitas Negeri Malang'),
(97639, 80807, 'en', 'name', 'Cobalt Institute'),
(97640, 80808, 'sv', 'name', 'Drottning Silvias barn- och ungdomssjukhus'),
(97641, 80809, 'en', 'name', 'University of Shahrood'),
(97642, 80809, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų“Ų§Ł‡Ų±ŁˆŲÆ'),
(97643, 80810, 'en', 'name', 'Canadian Institute for Military and Veteran Health Research'),
(97644, 80810, 'fr', 'name', 'Institut Canadien de Recherche sur la SantƩ des Militaires et des VƩtƩrans'),
(97645, 80811, 'fr', 'name', 'Hirslanden Clinique Bois-Cerf'),
(97646, 80812, 'en', 'name', 'Arrowhead Regional Medical Center'),
(97647, 80813, 'en', 'name', 'Tropenbos International'),
(97648, 80814, 'en', 'name', 'Japan Pediatric Society'),
(97649, 80814, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°å…ē§‘å­¦ä¼š'),
(97650, 80815, 'en', 'name', 'European Forest Institute'),
(97651, 80816, 'ja', 'name', 'ę—„ęœ¬č£½ē“™ę Ŗå¼ä¼šē¤¾'),
(97652, 80816, 'no_lang_code', 'name', 'Nippon Paper Industries (Japan)'),
(97653, 80817, 'en', 'name', 'Hamilton Medical Research Group'),
(97654, 80818, 'en', 'name', 'Royal Centre for Disease Control'),
(97655, 80819, 'en', 'name', 'Huawei German Research Center'),
(97656, 80820, 'de', 'name', 'Ɩsterreichische Mathematische Gesellschaft'),
(97657, 80820, 'en', 'name', 'Austrian Mathematical Society'),
(97658, 80821, 'no_lang_code', 'name', 'Pfizer (Switzerland)'),
(97659, 80822, 'en', 'name', 'National Heart Institute'),
(97660, 80822, 'hi', 'name', 'ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤¹ą¤¾ą¤°ą„ą¤Ÿ ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ'),
(97661, 80823, 'no_lang_code', 'name', 'Embraer (Brazil)'),
(97662, 80824, 'no_lang_code', 'name', 'Cambridge Crystallographic Data Centre'),
(97663, 80825, 'en', 'name', 'Center for Research and Interdisciplinarity'),
(97664, 80825, 'fr', 'name', 'Centre de Recherches Interdisciplinaires'),
(97665, 80826, 'en', 'name', 'Black Sea Biosphere Reserve'),
(97666, 80827, 'en', 'name', 'Biomedical Research Networking Center on Neurodegenerative Diseases'),
(97667, 80827, 'es', 'name', 'Centro de Investigación Biomédica en Red, Enfermedades Neurodegenerativas'),
(97668, 80828, 'en', 'name', 'New England Center for OCD and Anxiety'),
(97669, 80829, 'no_lang_code', 'name', 'Quansight (United States)'),
(97670, 80830, 'en', 'name', 'Saskatchewan Research Council (Canada)'),
(97671, 80831, 'de', 'name', 'Eidgenössische Hochschule für Berufsbildung EHB'),
(97672, 80831, 'en', 'name', 'Swiss Federal University for Vocational Education and Training SFUVET'),
(97673, 80831, 'fr', 'name', 'Haute Ʃcole fƩdƩrale en formation professionnelle HEFP'),
(97674, 80831, 'it', 'name', 'Scuola universitaria federale per la formazione professionale SUFFP'),
(97675, 80832, 'en', 'name', 'Parkinson’s Disease and Movement Disorder Center of Silicon Valley'),
(97676, 80833, 'id', 'name', 'Universitas Sari Mutiara Indonesia'),
(97677, 80834, 'no_lang_code', 'name', 'DataJoint NEURO (United States)'),
(97678, 80835, 'en', 'name', 'Computer Algorithms for Medicine'),
(97679, 80836, 'en', 'name', 'National Health Laboratory Service'),
(97680, 80837, 'no_lang_code', 'name', 'NeuroPace (United States)'),
(97681, 80838, 'en', 'name', 'Shanghai Municipal Human Resources and Social Security Bureau'),
(97682, 80838, 'zh', 'name', 'äøŠęµ·åø‚äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœå±€'),
(97683, 80839, 'en', 'name', 'Italian Liver Foundation'),
(97684, 80839, 'it', 'name', 'Fondazione Italiana Fegato'),
(97685, 80840, 'en', 'name', 'Northeast Electric Power University'),
(97686, 80840, 'zh', 'name', 'äøœåŒ—ē”µåŠ›å¤§å­¦'),
(97687, 80841, 'en', 'name', 'Proton Therapy Centre'),
(97688, 80842, 'no_lang_code', 'name', 'Umicore (Belgium)'),
(97689, 80843, 'en', 'name', 'Heilongjiang Provincial Academy of Agricultural Sciences'),
(97690, 80843, 'zh', 'name', 'é»‘é¾™ę±Ÿēœå†œäøšē§‘å­¦é™¢'),
(97691, 80844, 'en', 'name', 'Laboratory Dr. Wisplinghoff'),
(97692, 80845, 'fr', 'name', 'Ministère de la Santé et de l''Hygiène Publique'),
(97693, 80846, 'no_lang_code', 'name', 'Novametrics (United Kingdom)'),
(97694, 80847, 'en', 'name', 'Research Institute of Emergency Childrens Surgery and Traumatology'),
(97695, 80847, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ неотложной Гетской Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø Šø травматологии'),
(97696, 80848, 'en', 'name', 'Allegheny Health Network'),
(97697, 80849, 'en', 'name', 'ENEA Frascati Research Centre'),
(97698, 80849, 'it', 'name', 'ENEA Centro Ricerche Frascati'),
(97699, 80850, 'no_lang_code', 'name', 'Nanoscribe (Germany)'),
(97700, 80851, 'en', 'name', 'Scholar Rock (United States)'),
(97701, 80852, 'en', 'name', 'Community College of Rhode Island'),
(97702, 80853, 'sl', 'name', 'Å KUC Association'),
(97703, 80854, 'no_lang_code', 'name', 'IQM (Germany)'),
(97704, 80855, 'en', 'name', 'Samara Federal Research Scientific Center'),
(97705, 80855, 'ru', 'name', 'Дамарский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук'),
(97706, 80856, 'en', 'name', 'California Current Ecosystem Long Term Ecological Research'),
(97707, 80857, 'en', 'name', 'The VTCT Foundation'),
(97708, 80858, 'no_lang_code', 'name', 'Quest Diagnostics (United States)'),
(97709, 80859, 'no_lang_code', 'name', 'Menarini Group (Luxembourg)'),
(97710, 80860, 'en', 'name', 'Jichi Medical University'),
(97711, 80860, 'ja', 'name', 'č‡Ŗę²»åŒ»ē§‘å¤§å­¦'),
(97712, 80861, 'en', 'name', 'Central University of Ecuador'),
(97713, 80861, 'es', 'name', 'Universidad Central del Ecuador'),
(97714, 80862, 'en', 'name', 'Korea Culture & Tourism Institute'),
(97715, 80862, 'ko', 'name', 'ķ•œźµ­ė¬øķ™”ź“€ź“‘ģ—°źµ¬ģ›'),
(97716, 80863, 'en', 'name', 'Phase One Foundation'),
(97717, 80864, 'en', 'name', 'Lomonosov Moscow State University'),
(97718, 80864, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(97719, 80865, 'no_lang_code', 'name', 'Rentschler Biopharma (Germany)'),
(97720, 80866, 'no_lang_code', 'name', 'XING Technologies (Australia)'),
(97721, 80867, 'de', 'name', 'Leibniz-Forschungsinstitut für Molekulare Pharmakologie'),
(97722, 80868, 'no_lang_code', 'name', 'Novana (United States)'),
(97723, 80869, 'no_lang_code', 'name', 'Alcon (France)'),
(97724, 80870, 'en', 'name', 'New Jersey Urology'),
(97725, 80871, 'en', 'name', 'NLR India'),
(97726, 80872, 'en', 'name', 'Illinois Society for the Prevention of Blindness'),
(97727, 80873, 'en', 'name', 'New Zealand Brain Research Institute'),
(97728, 80874, 'en', 'name', 'International Institute of Innovation and Technology'),
(97729, 80875, 'en', 'name', 'D Y Patil International University'),
(97730, 80875, 'mr', 'name', 'ą¤”ą„€ वाय ą¤Ŗą¤¾ą¤Ÿą„€ą¤² ą¤†ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(97731, 80876, 'es', 'name', 'Fundación para el Fomento de la Investigación Sanitaria y Biomédica de la Comunitat Valenciana'),
(97732, 80877, 'bn', 'name', 'ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(97733, 80877, 'en', 'name', 'University of Chittagong'),
(97734, 80878, 'en', 'name', 'George & Fay Yee Centre for Healthcare Innovation'),
(97735, 80879, 'en', 'name', 'Spanish Nutrition Foundation'),
(97736, 80879, 'es', 'name', 'Fundación Española de la Nutrición'),
(97737, 80880, 'de', 'name', 'Fraunhofer-Einrichtung Forschungsfertigung Batteriezelle'),
(97738, 80880, 'en', 'name', 'Fraunhofer Research Institution for Battery Cell Production'),
(97739, 80881, 'es', 'name', 'Centro de Investigación Biomédica en Red de Enfermedades Respiratorias'),
(97740, 80882, 'en', 'name', 'Bangladesh Academy of Sciences'),
(97741, 80883, 'en', 'name', 'Colombian Family Welfare Institute'),
(97742, 80884, 'en', 'name', 'University of Tolima'),
(97743, 80884, 'es', 'name', 'Universidad del Tolima'),
(97744, 80885, 'no_lang_code', 'name', 'Victorinox (Switzerland)'),
(97745, 80886, 'en', 'name', 'Southampton General Hospital'),
(97746, 80887, 'en', 'name', 'College of Optometrists'),
(97747, 80888, 'en', 'name', 'Finnish Centre for Pensions'),
(97748, 80888, 'fi', 'name', 'ElƤketurvakeskus'),
(97749, 80889, 'en', 'name', 'MRC Human Genetics Unit'),
(97750, 80890, 'en', 'name', 'Institute for Scientific and Technological Information'),
(97751, 80891, 'no_lang_code', 'name', 'Emulate (United States)'),
(97752, 80892, 'en', 'name', 'World Federation of Science Journalists'),
(97753, 80892, 'fr', 'name', 'FƩdƩration Mondiale Des Journalistes Scientifiques'),
(97754, 80893, 'en', 'name', 'Shimane Prefectural Police'),
(97755, 80893, 'ja', 'name', '島根県警察'),
(97756, 80894, 'en', 'name', 'American Indian College Fund'),
(97757, 80895, 'en', 'name', 'William Angliss Institute'),
(97758, 80896, 'en', 'name', 'North Jersey Brain and Spine Center'),
(97759, 80897, 'en', 'name', 'Open University of Sri Lanka'),
(97760, 80897, 'si', 'name', 'ශ් රී ą¶½ą¶‚ą¶šą· ą·€ą·’ą·€ą·˜ą¶­ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(97761, 80897, 'ta', 'name', 'ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®¤ą®æą®±ą®ØąÆą®¤ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(97762, 80898, 'en', 'name', 'Directorate of Measures and Precious Metals of the Republic of Serbia'),
(97763, 80898, 'sl', 'name', 'Direkcija za mere i dragocene metale'),
(97764, 80898, 'sr', 'name', 'Š”ŠøŃ€ŠµŠŗŃ†ŠøŃ˜Šµ за мере Šø Грагоцене метале'),
(97765, 80899, 'en', 'name', 'Institute for Clinical and Economic Review'),
(97766, 80900, 'en', 'name', 'Roman Society of Natural Science'),
(97767, 80900, 'it', 'name', 'SocietĆ  Romana di Scienze Naturali'),
(97768, 80901, 'en', 'name', 'Jƶnkƶping County Museum'),
(97769, 80902, 'en', 'name', 'Otsuma Women''s University'),
(97770, 80902, 'ja', 'name', '大妻儳子大学'),
(97771, 80903, 'en', 'name', 'Jeffrey D. Horn Vision For Life'),
(97772, 80904, 'en', 'name', 'Consortium for Policy Research in Education'),
(97773, 80905, 'en', 'name', 'Chiba University Hospital'),
(97774, 80905, 'ja', 'name', 'åƒč‘‰å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(97775, 80906, 'en', 'name', 'Kielanowski Institute of Animal Physiology and Nutrition'),
(97776, 80906, 'pl', 'name', 'Instytut Fizjologii i Żywienia Zwierząt im. Jana Kielanowskiego PAN'),
(97777, 80907, 'en', 'name', 'South Bay Interdisciplinary Science Center'),
(97778, 80908, 'en', 'name', 'Danesh-e-Tandorosti Iranian Institute of Higher Health'),
(97779, 80909, 'no_lang_code', 'name', 'Cloud Posse (United States)'),
(97780, 80910, 'en', 'name', 'Centre For Sustainable Urban Development'),
(97781, 80910, 'es', 'name', 'Centro de Desarrollo Urbano Sustentable'),
(97782, 80911, 'en', 'name', 'University of Mysore'),
(97783, 80911, 'fr', 'name', 'UniversitƩ de mysore'),
(97784, 80911, 'kn', 'name', 'ą²®ą³ˆą²øą³‚ą²°ą³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(97785, 80911, 'ml', 'name', 'ą“®ąµˆą“øąµ‚ąµ¼ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(97786, 80911, 'ta', 'name', 'ą®®ąÆˆą®šąÆ‚ą®°ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(97787, 80911, 'te', 'name', 'ą°®ą±ˆą°øą±‚ą°°ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(97788, 80912, 'no_lang_code', 'name', 'Pacific Theological College'),
(97789, 80913, 'en', 'name', 'Japan Anti Tuberculosis Association'),
(97790, 80913, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗēµę øäŗˆé˜²ä¼š'),
(97791, 80914, 'en', 'name', 'Kids'' Brain Tumor Cure Foundation'),
(97792, 80915, 'de', 'name', 'Hirslanden Klinik Am Rosenberg'),
(97793, 80916, 'fr', 'name', 'Centre de RƩfƩrence des Maladies Autoinflammatoires et des Amyloses'),
(97794, 80917, 'en', 'name', 'Annenberg Foundation'),
(97795, 80918, 'en', 'name', 'Southern California Eye Institute'),
(97796, 80919, 'en', 'name', 'Perm State Humanitarian-Pedagogical University'),
(97797, 80919, 'ru', 'name', 'ŠŸŠµŃ€Š¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(97798, 80920, 'no_lang_code', 'name', 'Gemalto (France)'),
(97799, 80921, 'no_lang_code', 'name', 'Water Technology (Australia)'),
(97800, 80922, 'ja', 'name', 'ćƒć‚¤ć‚Ŗćƒćƒ³ć‚Æ ć‚øćƒ£ćƒ‘ćƒ³'),
(97801, 80922, 'no_lang_code', 'name', 'BioBank Japan'),
(97802, 80923, 'en', 'name', 'Anhui Sanlian University'),
(97803, 80923, 'zh', 'name', '安徽三联学院'),
(97804, 80924, 'en', 'name', 'Ryukoku University'),
(97805, 80924, 'ja', 'name', 'é¾č°·å¤§å­¦'),
(97806, 80925, 'no_lang_code', 'name', 'BeiGene (China)'),
(97807, 80926, 'en', 'name', 'University of Malakand'),
(97808, 80926, 'ur', 'name', 'جامعہ Ł…Ų§Ł„Ų§Ś©Ł†Śˆ'),
(97809, 80927, 'it', 'name', 'Fondazione Querini Stampalia'),
(97810, 80928, 'no_lang_code', 'name', 'Theolytics (United Kingdom)'),
(97811, 80929, 'no_lang_code', 'name', 'Givaudan (Netherlands)'),
(97812, 80930, 'en', 'name', 'Korea Institute for Animal Products Quality Evaluation'),
(97813, 80930, 'ko', 'name', 'ģ¶•ģ‚°ė¬¼ķ’ˆģ§ˆķ‰ź°€ģ›'),
(97814, 80931, 'en', 'name', 'University of Surabaya'),
(97815, 80931, 'id', 'name', 'Universitas Surabaya'),
(97816, 80932, 'no_lang_code', 'name', 'Tishcon (United States)'),
(97817, 80933, 'en', 'name', 'National Institute of Metrology (Thailand)'),
(97818, 80933, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø”ąø²ąø•ąø£ąø§ąø“ąø—ąø¢ąø²ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(97819, 80934, 'en', 'name', 'Central Intelligence Agency'),
(97820, 80935, 'en', 'name', 'Center for Agricultural Resources Research'),
(97821, 80936, 'en', 'name', 'Tuskegee University'),
(97822, 80937, 'en', 'name', 'Palmer Long Term Ecological Research'),
(97823, 80938, 'no_lang_code', 'name', 'Enterome (France)'),
(97824, 80939, 'en', 'name', 'Institute of Mental Health and Neurosciences'),
(97825, 80940, 'en', 'name', 'Advantage West Midlands'),
(97826, 80941, 'en', 'name', 'Beijing Graphene Institute'),
(97827, 80941, 'zh', 'name', 'åŒ—äŗ¬ēŸ³å¢ØēƒÆē ”ē©¶é™¢'),
(97828, 80942, 'en', 'name', 'Institute for the Study of Anthropic Impact and Sustainability in the Marine Environment'),
(97829, 80942, 'it', 'name', 'Istituto per lo studio degli impatti Antropici e SostenibilitĆ  in ambiente marino'),
(97830, 80943, 'ca', 'name', 'Institut Català d''Investigació Química'),
(97831, 80943, 'en', 'name', 'Institute of Chemical Research of Catalonia'),
(97832, 80944, 'en', 'name', 'Cohen Veterans Bioscience'),
(97833, 80945, 'ja', 'name', 'å¤§å”šč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(97834, 80945, 'no_lang_code', 'name', 'Otsuka (Japan)'),
(97835, 80946, 'en', 'name', 'Millennium Initiative for Collaborative Research on Bacterial Resistance'),
(97836, 80947, 'en', 'name', 'Perimeter Institute'),
(97837, 80947, 'fr', 'name', 'Institut Périmètre de Physique Théorique'),
(97838, 80948, 'en', 'name', 'Laureate Education'),
(97839, 80949, 'en', 'name', 'Cosmetology Research Foundation'),
(97840, 80949, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚³ć‚¹ćƒ”ćƒˆćƒ­ć‚øćƒ¼ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(97841, 80950, 'en', 'name', 'Finnish Environment Institute'),
(97842, 80950, 'fi', 'name', 'Suomen ympƤristƶkeskus'),
(97843, 80950, 'sv', 'name', 'Finlands miljƶcentral'),
(97844, 80951, 'no_lang_code', 'name', 'Invixium (Canada)'),
(97845, 80952, 'en', 'name', 'Arthur B. McDonald-Canadian Astroparticle Physics Research Institute'),
(97846, 80953, 'en', 'name', 'Kochi Medical School Hospital'),
(97847, 80953, 'ja', 'name', 'é«˜ēŸ„å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(97848, 80954, 'no_lang_code', 'name', 'Guardant (United States)'),
(97849, 80955, 'en', 'name', 'Virginia Coast Reserve Long Term Ecological Research'),
(97850, 80956, 'en', 'name', 'Canadian Nuclear Laboratories'),
(97851, 80957, 'en', 'name', 'Countess of Chester Hospital NHS Foundation Trust'),
(97852, 80958, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ سعود بن Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ² Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲµŲ­ŁŠŲ©'),
(97853, 80958, 'en', 'name', 'King Saud bin Abdulaziz University for Health Sciences'),
(97854, 80959, 'en', 'name', 'Hamburg Centre for Ultrafast Imaging'),
(97855, 80960, 'en', 'name', 'Ateneum University'),
(97856, 80960, 'pl', 'name', 'Ateneum Szkoła Wyższa'),
(97857, 80961, 'en', 'name', 'Crystal Run Healthcare'),
(97858, 80962, 'en', 'name', 'Centre of Registers Vastra Gotaland'),
(97859, 80962, 'sv', 'name', 'Registercentrum VƤstra Gƶtaland'),
(97860, 80963, 'en', 'name', 'United Nations Children''s Fund Niger'),
(97861, 80964, 'en', 'name', 'Canadian Respiratory Research Network, RƩseau canadien de recherche respiratoire'),
(97862, 80965, 'pt', 'name', 'UniFG Centro UniversitƔrio'),
(97863, 80966, 'en', 'name', 'University Hospitals Birmingham NHS Foundation Trust'),
(97864, 80967, 'pt', 'name', 'Universidade Federal do Delta do ParnaĆ­ba'),
(97865, 80968, 'en', 'name', 'American Academy In Rome'),
(97866, 80969, 'de', 'name', 'Gesellschaft zur Fƶrderung Kynologischer Forschung'),
(97867, 80970, 'en', 'name', 'Sydney Sexual Health Centre'),
(97868, 80971, 'fr', 'name', 'Droit et changement social');
INSERT INTO `ror_settings` VALUES
(97869, 80972, 'en', 'name', 'Endeavour College of Natural Health'),
(97870, 80973, 'en', 'name', 'Symbiosis Group'),
(97871, 80974, 'no_lang_code', 'name', 'ZOE (United Kingdom)'),
(97872, 80975, 'en', 'name', 'Dutch Institute for Clinical Auditing'),
(97873, 80976, 'es', 'name', 'Hospital Dr Arturo OƱativia'),
(97874, 80977, 'en', 'name', 'Whyteman’s Brae Hospital'),
(97875, 80978, 'en', 'name', 'Ministry of Justice'),
(97876, 80978, 'et', 'name', 'Justiitsministeerium'),
(97877, 80979, 'en', 'name', 'Peterson Institute for International Economics'),
(97878, 80980, 'en', 'name', 'Mie University'),
(97879, 80980, 'ja', 'name', 'äø‰é‡å¤§å­¦'),
(97880, 80981, 'en', 'name', 'Anhui University of Finance and Economics'),
(97881, 80981, 'zh', 'name', 'å®‰å¾½č“¢ē»å¤§å­¦'),
(97882, 80982, 'en', 'name', 'Pinega Nature Reserve'),
(97883, 80982, 'ru', 'name', 'Pinezhsky Zapovednik'),
(97884, 80983, 'en', 'name', 'National Police Academy'),
(97885, 80983, 'ja', 'name', '警察庁警察大学栔'),
(97886, 80984, 'en', 'name', 'Seattle Epidemiologic Information and Research Center'),
(97887, 80985, 'en', 'name', 'Western Connecticut State University'),
(97888, 80986, 'en', 'name', 'Philippine Social Science Council'),
(97889, 80987, 'no_lang_code', 'name', 'Xi''an Honghui Hospital'),
(97890, 80987, 'zh', 'name', 'č„æå®‰åø‚ēŗ¢ä¼šåŒ»é™¢'),
(97891, 80988, 'en', 'name', 'Gujarat Cancer & Research Institute'),
(97892, 80989, 'pt', 'name', 'Centro UniversitƔrio Unigran Capital'),
(97893, 80990, 'en', 'name', 'Bread for the World Institute'),
(97894, 80991, 'en', 'name', 'Game & Wildlife Conservation Trust'),
(97895, 80992, 'en', 'name', 'Showa General Hospital'),
(97896, 80992, 'ja', 'name', 'å…¬ē«‹ę˜­å’Œē—…é™¢'),
(97897, 80993, 'en', 'name', 'Adobe Gastroenterology'),
(97898, 80994, 'no_lang_code', 'name', 'Remit Kenya (Kenya)'),
(97899, 80995, 'de', 'name', 'Genetikum'),
(97900, 80996, 'en', 'name', 'State Institution "Institute for Children and Adolescents Health Care at the National Academy of Medical Sciences of Ukraine"'),
(97901, 80996, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ охорони зГоров''я Гітей та піГлітків ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України"'),
(97902, 80997, 'en', 'name', 'Burke Museum of Natural History and Culture'),
(97903, 80998, 'en', 'name', 'Academy of Sciences of the Republic of Sakha'),
(97904, 80998, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Республики Даха'),
(97905, 80999, 'no_lang_code', 'name', 'Anaconda (United States)'),
(97906, 81000, 'en', 'name', 'Office of the Privacy Commissioner of Canada'),
(97907, 81000, 'fr', 'name', 'Commissariat Ơ la Protection de la vie PrivƩe du Canada'),
(97908, 81001, 'en', 'name', 'Rajabu St Augustine''s, Hospitali Teule'),
(97909, 81002, 'en', 'name', 'I.Krypiakevych Institute of Ukrainian Studies National Academy of Sciences of Ukraine'),
(97910, 81002, 'uk', 'name', 'І.ŠšŃ€ŠøŠæā€™ŃŠŗŠµŠ²ŠøŃ‡Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(97911, 81003, 'da', 'name', 'Naturhistorisk Museum Aarhus'),
(97912, 81003, 'en', 'name', 'Natural History Museum Aarhus'),
(97913, 81004, 'en', 'name', 'Technological University of Mexico'),
(97914, 81004, 'es', 'name', 'Universidad Tecnológica de México'),
(97915, 81005, 'en', 'name', 'Children’s Mercy Research Institute'),
(97916, 81006, 'en', 'name', 'Beijing Academy of Artificial Intelligence'),
(97917, 81006, 'zh', 'name', 'åŒ—äŗ¬ę™ŗęŗäŗŗå·„ę™ŗčƒ½ē ”ē©¶é™¢'),
(97918, 81007, 'en', 'name', 'National Institute of Information and Communications Technology'),
(97919, 81007, 'ja', 'name', 'ęƒ…å ±é€šäæ”ē ”ē©¶ę©Ÿę§‹'),
(97920, 81008, 'no_lang_code', 'name', 'ADx NeuroSciences'),
(97921, 81009, 'es', 'name', 'Universidad de las Artes'),
(97922, 81010, 'en', 'name', 'Center of Applied Ecology & Sustainability'),
(97923, 81011, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ генетыкі і цыталогіі'),
(97924, 81011, 'en', 'name', 'Institute of Genetics and Cytology of the National Academy of Sciences of Belarus'),
(97925, 81012, 'en', 'name', 'Japan Real Estate Institute'),
(97926, 81012, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬äøå‹•ē”£ē ”ē©¶ę‰€'),
(97927, 81013, 'en', 'name', 'American Institute of Biological Sciences'),
(97928, 81014, 'en', 'name', 'The Institute of History of the National Academy of Sciences of Belarus'),
(97929, 81014, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ истории ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(97930, 81015, 'de', 'name', 'Marien Hospital Wesel'),
(97931, 81016, 'no_lang_code', 'name', 'Few Chemicals (Germany)'),
(97932, 81017, 'en', 'name', 'ART Reproductive Center'),
(97933, 81018, 'en', 'name', 'Samara Law Institute of the Federal Penitentiary Service of Russia'),
(97934, 81018, 'ru', 'name', 'Š”ŠŠœŠŠ Š”ŠšŠ˜Š™ Š®Š Š˜Š”Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¤Š”Š˜Š Š ŠžŠ”Š”Š˜Š˜'),
(97935, 81019, 'en', 'name', 'East Siberian University of Economics and Law'),
(97936, 81019, 'ru', 'name', 'Восточно-Дибирский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø права'),
(97937, 81020, 'no_lang_code', 'name', 'CSPC Pharmaceutical Group'),
(97938, 81020, 'zh', 'name', 'ēŸ³č—„é›†åœ˜'),
(97939, 81021, 'no_lang_code', 'name', 'Jilian Technology Group (China)'),
(97940, 81022, 'en', 'name', 'Institute of Applied Mathematical Research of the Karelian Research Centre of the Russian Academy of Sciences'),
(97941, 81022, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГных математических исслеГований ŠšŠ°Ń€ŠµŠ»ŃŒŃŠŗŠ¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(97942, 81023, 'no_lang_code', 'name', 'Asia Centre'),
(97943, 81024, 'en', 'name', 'Academy of Sciences of Albania'),
(97944, 81025, 'en', 'name', 'Tri-Institutional PhD Program in Chemical Biology'),
(97945, 81026, 'en', 'name', 'Council on Postsecondary Education'),
(97946, 81027, 'de', 'name', 'Senckenberg Naturhistorische Sammlungen Dresden'),
(97947, 81027, 'en', 'name', 'Senckenberg Natural History Collections Dresden'),
(97948, 81028, 'de', 'name', 'UniversitƤt von Namibia'),
(97949, 81028, 'en', 'name', 'University of Namibia'),
(97950, 81029, 'en', 'name', 'Longhua Hospital Shanghai University of Traditional Chinese Medicine'),
(97951, 81029, 'zh', 'name', 'äøŠęµ·äø­åŒ»čÆå¤§å­¦é™„å±žé¾™åŽåŒ»é™¢'),
(97952, 81030, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾LTTćƒć‚¤ć‚Ŗćƒ•ć‚”ćƒ¼ćƒž'),
(97953, 81030, 'no_lang_code', 'name', 'LTT Bio-Pharma (Japan)'),
(97954, 81031, 'en', 'name', 'North Shore Health Department'),
(97955, 81032, 'en', 'name', 'Shushensky Bor National Park'),
(97956, 81032, 'ru', 'name', 'Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк «Шушенский бор'),
(97957, 81033, 'en', 'name', 'Grove City College'),
(97958, 81034, 'en', 'name', 'Quantum University'),
(97959, 81035, 'en', 'name', 'Coral Reef Research Foundation'),
(97960, 81036, 'nl', 'name', 'Martini Ziekenhuis'),
(97961, 81037, 'en', 'name', 'National University of Frontera'),
(97962, 81037, 'es', 'name', 'Universidad Nacional de Frontera'),
(97963, 81038, 'en', 'name', 'Georgia Coastal Ecosystems Long Term Ecological Research'),
(97964, 81039, 'no_lang_code', 'name', 'CTI BioPharma (United States)'),
(97965, 81040, 'it', 'name', 'Provincia Autonoma di Trento'),
(97966, 81041, 'de', 'name', 'Ministerium für Wirtschaft, Wissenschaft und Digitalisierung des Landes Sachsen-Anhalt'),
(97967, 81041, 'en', 'name', 'Ministry of Economy, Science and Digitalisation'),
(97968, 81042, 'en', 'name', 'World Cancer Research Fund Netherlands'),
(97969, 81042, 'nl', 'name', 'Wereld Kanker Onderzoek Fonds'),
(97970, 81043, 'no_lang_code', 'name', 'Fistulacure'),
(97971, 81044, 'en', 'name', 'Medawar Building for Pathogen Research'),
(97972, 81045, 'en', 'name', 'Quantified Uncertainty Research Institute'),
(97973, 81046, 'en', 'name', 'Atlantic States Marine Fisheries Commission'),
(97974, 81047, 'el', 'name', 'ĪšĪæĪ¹Ī½Ļ‰Ļ†ĪµĪ»Ī­Ļ‚ ΙΓρυμα ΑλεξανΓρου Ωνάση'),
(97975, 81047, 'en', 'name', 'Alexander S Onassis Public Benefit Foundation'),
(97976, 81048, 'en', 'name', 'Roger Williams University'),
(97977, 81049, 'en', 'name', 'Institute of Forestry'),
(97978, 81049, 'sr', 'name', 'ŠØŃƒŠ¼Š°Ń€ŃŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(97979, 81050, 'en', 'name', 'British Columbia Centre on Substance Use'),
(97980, 81051, 'en', 'name', 'Institute of Blood Pathology and Transfusion Medicine of the National Academy of Medical Sciences of Ukraine'),
(97981, 81051, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ патології крові та Ń‚Ń€Š°Š½ŃŃ„ŃƒŠ·Ń–Š¹Š½Š¾Ń— меГицини ŠŠŠœŠ України'),
(97982, 81052, 'en', 'name', 'Railway and Canal Historical Society'),
(97983, 81053, 'pt', 'name', 'Fundação de Empreendimentos Científicos e Tecnológicos'),
(97984, 81054, 'en', 'name', 'National Autonomous University of Alto Amazonas'),
(97985, 81054, 'es', 'name', 'Universidad Nacional Autónoma de Alto Amazonas'),
(97986, 81055, 'en', 'name', 'Pirogov Russian National Research Medical University'),
(97987, 81055, 'ru', 'name', 'Российский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. И. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(97988, 81056, 'no_lang_code', 'name', 'Shandong Jiaotong University'),
(97989, 81057, 'no_lang_code', 'name', 'Fluxus Technology (United Kingdom)'),
(97990, 81058, 'no_lang_code', 'name', 'Sunesis (United States)'),
(97991, 81059, 'en', 'name', 'Vindolanda Trust'),
(97992, 81060, 'en', 'name', 'Beijing Satellite Navigation Center'),
(97993, 81060, 'zh', 'name', 'åŒ—äŗ¬å«ę˜ŸåÆ¼čˆŖäø­åæƒē‰ˆęƒę‰€ęœ‰'),
(97994, 81061, 'no_lang_code', 'name', 'Yu Jun Biotechnology'),
(97995, 81061, 'zh', 'name', 'č£•é›‹ē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(97996, 81062, 'en', 'name', 'American Contact Dermatitis Society'),
(97997, 81063, 'en', 'name', 'The Kavli Trust'),
(97998, 81063, 'no', 'name', 'Kavli Fondet'),
(97999, 81064, 'no_lang_code', 'name', 'Lightmatter (United States)'),
(98000, 81065, 'en', 'name', 'American Society for Dermatologic Surgery'),
(98001, 81066, 'en', 'name', 'Jilin Engineering Normal University'),
(98002, 81066, 'zh', 'name', 'å‰ęž—å·„ēØ‹ęŠ€ęœÆåøˆčŒƒå­¦é™¢'),
(98003, 81067, 'en', 'name', 'Amigos Library Services'),
(98004, 81068, 'pt', 'name', 'Sobest – Associacao Brasileira de Estomaterapia'),
(98005, 81069, 'ja', 'name', 'ćƒ›ć‚½ć‚«ćƒÆćƒŸć‚Æćƒ­ćƒ³ę Ŗå¼ä¼šē¤¾'),
(98006, 81069, 'no_lang_code', 'name', 'Hosokawa Micron (Japan)'),
(98007, 81070, 'en', 'name', 'ENEA Santa Teresa Research Centre'),
(98008, 81070, 'it', 'name', 'ENEA Centro Ricerche Santa Teresa'),
(98009, 81071, 'en', 'name', 'National Park Meshera'),
(98010, 81071, 'ru', 'name', 'ŠœŠµŃ‰Ń‘Ń€Š° (Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк))'),
(98011, 81072, 'en', 'name', 'Association New Music'),
(98012, 81073, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾IHI'),
(98013, 81073, 'no_lang_code', 'name', 'IHI Corporation (Japan)'),
(98014, 81074, 'no_lang_code', 'name', 'Aurubis (Germany)'),
(98015, 81075, 'ja', 'name', 'ē„žęˆøå­¦é™¢å¤§å­¦'),
(98016, 81075, 'no_lang_code', 'name', 'Kobe Gakuin University'),
(98017, 81076, 'en', 'name', 'Hubei University of Science and Technology'),
(98018, 81076, 'zh', 'name', 'ę¹–åŒ—ē§‘ęŠ€å­¦é™¢'),
(98019, 81077, 'no_lang_code', 'name', 'Arvato'),
(98020, 81078, 'en', 'name', 'Physicians Committee for Responsible Medicine'),
(98021, 81079, 'de', 'name', 'Fachhochschule Clara Hoffbauer Potsdam'),
(98022, 81080, 'en', 'name', 'Association of Teacher Educators'),
(98023, 81081, 'en', 'name', 'Hawaii Pacific University'),
(98024, 81082, 'en', 'name', 'Nakatomi Foundation'),
(98025, 81082, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­å†Øå„åŗ·ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(98026, 81083, 'en', 'name', 'Cropping Systems Research Laboratory'),
(98027, 81084, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­Ų³ŁŠŁ† بن طلال'),
(98028, 81084, 'en', 'name', 'Al-Hussein Bin Talal University'),
(98029, 81085, 'ja', 'name', 'ę˜„ę—„äŗ•åø‚ę°‘ē—…é™¢'),
(98030, 81085, 'no_lang_code', 'name', 'Kasugai Municipal Hospital'),
(98031, 81086, 'en', 'name', 'Salford Royal NHS Foundation Trust'),
(98032, 81087, 'no_lang_code', 'name', 'Gojo (United States)'),
(98033, 81088, 'en', 'name', 'Mount Sinai Hospital'),
(98034, 81089, 'en', 'name', 'Inner Mongolia Academy of Agricultural & Animal Husbandry Sciences'),
(98035, 81089, 'zh', 'name', 'å†…č’™å¤å†œē‰§äøšē§‘å­¦é™¢'),
(98036, 81090, 'en', 'name', 'Mercy College of Ohio'),
(98037, 81091, 'en', 'name', 'State Museum of Natural History of the National Academy of Sciences of Ukraine'),
(98038, 81091, 'uk', 'name', 'Державний прироГознавчий музей ŠŠŠ України'),
(98039, 81092, 'en', 'name', 'Community Care'),
(98040, 81093, 'en', 'name', 'Institute for Matching Person and Technology'),
(98041, 81094, 'en', 'name', 'Okayama University Hospital'),
(98042, 81094, 'ja', 'name', '岔山大学病院'),
(98043, 81095, 'de', 'name', 'Leibniz Zentrum für Marine Tropenforschung'),
(98044, 81095, 'en', 'name', 'Leibniz Centre for Tropical Marine Research'),
(98045, 81096, 'en', 'name', 'Kanti Children''s Hospital'),
(98046, 81097, 'bn', 'name', 'ą¦°ą¦¾ą¦®ą¦•ą§ƒą¦·ą§ą¦£ মিশন'),
(98047, 81097, 'hi', 'name', 'Ramakrishna Mission Vidyamandira'),
(98048, 81098, 'en', 'name', 'Vaasa Central Hospital'),
(98049, 81099, 'no_lang_code', 'name', 'Tencent Healthcare (China)'),
(98050, 81100, 'en', 'name', 'Catholic University of Uruguay'),
(98051, 81100, 'es', 'name', 'Universidad Católica del Uruguay'),
(98052, 81101, 'en', 'name', 'Society for Sedimentary Geology'),
(98053, 81102, 'en', 'name', 'National Micobiology Centre'),
(98054, 81102, 'es', 'name', 'Centro Nacional de Microbiologia'),
(98055, 81103, 'en', 'name', 'Audubon Society of Greater Denver'),
(98056, 81104, 'en', 'name', 'National Institute of Occupational Safety and Health'),
(98057, 81104, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹åŠ“åƒå®‰å…Øč”›ē”Ÿē·åˆē ”ē©¶ę‰€'),
(98058, 81105, 'fr', 'name', 'Observatoire FranƧais de la SclƩrose en Plaques, SclƩrose en plaques'),
(98059, 81106, 'en', 'name', 'International Institute of Tropical Agriculture'),
(98060, 81107, 'no_lang_code', 'name', 'Synthego (United States)'),
(98061, 81108, 'en', 'name', 'Groundswell Fund'),
(98062, 81109, 'en', 'name', 'Bose Institute'),
(98063, 81109, 'ml', 'name', 'ą“¬ąµ‹ą“øąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(98064, 81110, 'en', 'name', 'Schaumburg Township District Library'),
(98065, 81111, 'no_lang_code', 'name', 'Riemser Pharma (Germany)'),
(98066, 81112, 'no_lang_code', 'name', 'PicoQuant (Germany)'),
(98067, 81113, 'ja', 'name', 'å¤é‡Žé›»ę°—ę Ŗå¼ä¼šē¤¾'),
(98068, 81113, 'no_lang_code', 'name', 'Furuno (Japan)'),
(98069, 81114, 'fr', 'name', 'Centre de Recherche sur les Biotechnologies Marines'),
(98070, 81115, 'nl', 'name', 'Ikazia Ziekenhuis'),
(98071, 81116, 'fr', 'name', 'Ɖcole du Louvre'),
(98072, 81117, 'no_lang_code', 'name', 'Lexical Computing CZ'),
(98073, 81118, 'es', 'name', 'Observatorio Naval Buenos Aires'),
(98074, 81119, 'ba', 'name', 'Өфө Гәүләт Š½ŠµŃ„Ń‚ŃŒ техник ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(98075, 81119, 'en', 'name', 'Ufa State Petroleum Technological University'),
(98076, 81119, 'ru', 'name', 'Уфимский Š³Š¾ŃŃƒŠ“арственный Š½ŠµŃ„Ń‚ŃŠ½Š¾Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98077, 81120, 'en', 'name', 'Zurich Heart House'),
(98078, 81121, 'be', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(98079, 81121, 'en', 'name', 'Belarusian State Institute for Metrology'),
(98080, 81122, 'no_lang_code', 'name', 'ScienCell Research Laboratories (United States)'),
(98081, 81123, 'en', 'name', 'Vaganova Ballet Academy'),
(98082, 81123, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Русского балета имени А. ŠÆ. Вагановой'),
(98083, 81124, 'en', 'name', 'Ohio Supercomputer Center'),
(98084, 81125, 'en', 'name', 'Global Development Network'),
(98085, 81126, 'en', 'name', 'Huyck Preserve and Biological Research Station'),
(98086, 81127, 'ja', 'name', 'ä¼Šč—¤ćƒćƒ ę Ŗå¼ä¼šē¤¾'),
(98087, 81127, 'no_lang_code', 'name', 'Itoham Foods (Japan)'),
(98088, 81128, 'en', 'name', 'St. Anne''s Health Centre'),
(98089, 81129, 'en', 'name', 'Novosibirsk State Technical University'),
(98090, 81129, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98091, 81130, 'no_lang_code', 'name', 'ELUTIS Modelling and Consulting (Canada)'),
(98092, 81131, 'en', 'name', 'National Speleological Society'),
(98093, 81132, 'en', 'name', 'St Vincent’s Private Hospital Sydney'),
(98094, 81133, 'no_lang_code', 'name', 'Tata Consultancy Services (India)'),
(98095, 81134, 'en', 'name', 'Genesis Research Trust'),
(98096, 81135, 'en', 'name', 'Graphic Era Hill University'),
(98097, 81136, 'en', 'name', 'Anan National College of Technology'),
(98098, 81136, 'ja', 'name', 'é˜æå—å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(98099, 81137, 'no_lang_code', 'name', 'Nabsys (United States)'),
(98100, 81138, 'en', 'name', 'Banneker Douglass Museum'),
(98101, 81139, 'en', 'name', 'Sutter Solano Medical Center'),
(98102, 81140, 'no_lang_code', 'name', 'Samsung (United States)'),
(98103, 81141, 'en', 'name', 'Child Mind Institute'),
(98104, 81142, 'en', 'name', 'New York Institute of Technology'),
(98105, 81143, 'no_lang_code', 'name', 'Zapata (United States)'),
(98106, 81144, 'no_lang_code', 'name', 'Novavax (United States)'),
(98107, 81145, 'de', 'name', 'Schweizerische Studienstiftung'),
(98108, 81145, 'en', 'name', 'Swiss Study Foundation'),
(98109, 81146, 'no_lang_code', 'name', 'Regen Network (United States)'),
(98110, 81147, 'de', 'name', 'Bundesdeutsche Arbeitsgemeinschaft für Veränderliche Sterne'),
(98111, 81148, 'en', 'name', 'Australasian Society for Infectious Diseases'),
(98112, 81149, 'en', 'name', 'Riverside Community Hospital'),
(98113, 81150, 'en', 'name', 'North Carolina Museum of Natural Sciences'),
(98114, 81151, 'de', 'name', 'Hirslanden Klinik Beau-Site'),
(98115, 81152, 'ja', 'name', 'ćƒ©ć‚¤ć‚Ŗćƒ³ę Ŗå¼ä¼šē¤¾'),
(98116, 81152, 'no_lang_code', 'name', 'Lion Corporation (Japan)'),
(98117, 81153, 'en', 'name', 'Hong Kong Observatory'),
(98118, 81153, 'zh', 'name', 'é¦™ęøÆå¤©ę–‡å°'),
(98119, 81154, 'no_lang_code', 'name', 'Avidea Technologies (United States)'),
(98120, 81155, 'en', 'name', 'Millennium Science Initiative'),
(98121, 81156, 'en', 'name', 'Finnish Biodiversity Information Facility'),
(98122, 81156, 'fi', 'name', 'Suomen Lajitietokeskus'),
(98123, 81156, 'sv', 'name', 'Finlands Artdatacenter'),
(98124, 81157, 'id', 'name', 'Universitas PGRI Semarang'),
(98125, 81158, 'en', 'name', 'Human Computation Institute'),
(98126, 81159, 'en', 'name', 'Global Health Drug Discovery Institute'),
(98127, 81159, 'zh', 'name', 'å…Øēƒå„åŗ·čÆē‰©ē ”å‘äø­åæƒ'),
(98128, 81160, 'no_lang_code', 'name', 'NanoTemper Technologies (Germany)'),
(98129, 81161, 'en', 'name', 'Chengdu Medical College'),
(98130, 81161, 'zh', 'name', 'ęˆéƒ½åŒ»å­¦é™¢'),
(98131, 81162, 'de', 'name', 'Krankenhaus Lübbecke-Rahden, Universitätsklinik für Psychosomatik und Psychotherapie'),
(98132, 81163, 'en', 'name', 'Alliance of Crop, Soil, and Environmental Science Societies'),
(98133, 81164, 'en', 'name', 'Sigma Theta Tau International'),
(98134, 81165, 'en', 'name', 'Life Quality Research Centre'),
(98135, 81166, 'en', 'name', 'Great Lakes Bioenergy Research Center'),
(98136, 81167, 'en', 'name', 'Christian Doppler Laboratory for Thermoelectricity'),
(98137, 81168, 'en', 'name', 'Cyrus Tang Foundation'),
(98138, 81169, 'en', 'name', 'Nebraska Academy of Sciences'),
(98139, 81170, 'no_lang_code', 'name', 'H2Pro (Israel)'),
(98140, 81171, 'en', 'name', 'Iowa Department of Agriculture and Land Stewardship'),
(98141, 81172, 'ja', 'name', 'NOKę Ŗå¼ä¼šē¤¾'),
(98142, 81172, 'no_lang_code', 'name', 'NOK Corporation (Japan)'),
(98143, 81173, 'de', 'name', 'Deutsches Institut für Japanstudien Tokyo'),
(98144, 81173, 'en', 'name', 'German Institute for Japanese Studies'),
(98145, 81173, 'ja', 'name', 'ćƒ‰ć‚¤ćƒ„ę—„ęœ¬ē ”ē©¶ę‰€'),
(98146, 81174, 'en', 'name', 'Joep Lange Institute'),
(98147, 81175, 'no_lang_code', 'name', 'Galecto (Denmark)'),
(98148, 81176, 'no_lang_code', 'name', 'Immunetics (United States)'),
(98149, 81177, 'no_lang_code', 'name', 'Cardiovascular Systems (United States)'),
(98150, 81178, 'en', 'name', 'American Leprosy Missions'),
(98151, 81179, 'en', 'name', 'Northern Gulf of Alaska Long Term Ecological Research'),
(98152, 81180, 'en', 'name', 'Hospiten Group'),
(98153, 81181, 'en', 'name', 'University of King''s College'),
(98154, 81182, 'no_lang_code', 'name', 'PQ Corporation (Canada)'),
(98155, 81183, 'en', 'name', 'Minuchin Center for the Family'),
(98156, 81184, 'en', 'name', 'John Peter Smith Hospital'),
(98157, 81185, 'en', 'name', 'Research Foundation of The City University of New York'),
(98158, 81186, 'en', 'name', 'SPring-8'),
(98159, 81186, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ę”¾å°„å…‰ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(98160, 81187, 'en', 'name', 'Ministry of Agriculture & Farmers Welfare'),
(98161, 81187, 'hi', 'name', 'ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ किसान ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(98162, 81188, 'en', 'name', 'Rostov State University of Economics'),
(98163, 81188, 'ru', 'name', 'Ростовский Š³Š¾ŃŃƒŠ“арственный ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98164, 81189, 'en', 'name', 'Inter-American Foundation'),
(98165, 81190, 'en', 'name', 'Missouri State University'),
(98166, 81190, 'fr', 'name', 'UniversitĆ© d''Ɖtat du missouri'),
(98167, 81191, 'es', 'name', 'Instituto de Medicina Tropical'),
(98168, 81192, 'en', 'name', 'Babraham Institute'),
(98169, 81193, 'en', 'name', 'China National Nuclear Corporation'),
(98170, 81193, 'zh', 'name', 'äø­å›½ę øå·„äøšé›†å›¢å…¬åø'),
(98171, 81194, 'no_lang_code', 'name', 'CatalystNeuro'),
(98172, 81195, 'en', 'name', 'Strang Cancer Prevention Institute'),
(98173, 81196, 'en', 'name', 'Central Food Technological Research Institute'),
(98174, 81196, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤–ą¤¾ą¤¦ą„ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(98175, 81196, 'kn', 'name', 'ą²•ą³‡ą²‚ą²¦ą³ą²°ą³€ą²Æ ಆಹಾರ ಸಂಶೋಧನಾಲಯ'),
(98176, 81196, 'ml', 'name', 'ą“øąµ†ąµ»ą“Ÿąµą“°ąµ½ ą“«ąµą“”ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æą“•ąµą“•ąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(98177, 81197, 'no_lang_code', 'name', 'Lancet Laboratories'),
(98178, 81198, 'dz', 'name', 'ą½‘ą½”ą½£ą¼‹ą½ ą½–ą¾²ą½“ą½‚ą¼‹ą½žą½²ą½–ą¼‹ą½ ą½‡ą½“ą½‚ą¼‹ą½£ą¾Ÿą½ŗą¼‹ą½–ą¼‹'),
(98179, 81198, 'en', 'name', 'Centre for Bhutan Studies and GNH Research'),
(98180, 81199, 'en', 'name', 'Association Canadienne Des Medecins d''Urgence, Canadian Association of Emergency Physicians'),
(98181, 81200, 'en', 'name', 'New Mexico Academy of Science'),
(98182, 81201, 'en', 'name', 'National Epidemiology Centre'),
(98183, 81201, 'es', 'name', 'Centro Nacional de EpidemiologĆ­a'),
(98184, 81202, 'pt', 'name', 'SĆ£o Germano Oncologia'),
(98185, 81203, 'en', 'name', 'Cary Institute of Ecosystem Studies'),
(98186, 81204, 'it', 'name', 'Accademia Italiana Medicina Osteopatica'),
(98187, 81205, 'no_lang_code', 'name', 'Xcel Energy (United States)'),
(98188, 81206, 'en', 'name', 'HeartMath Institute'),
(98189, 81207, 'en', 'name', 'LifeArc'),
(98190, 81208, 'en', 'name', 'Hubei University of Medicine'),
(98191, 81208, 'zh', 'name', 'ę¹–åŒ—åŒ»čÆå­¦é™¢'),
(98192, 81209, 'no_lang_code', 'name', 'Promega (United States)'),
(98193, 81210, 'en', 'name', 'Multiple System Atrophy Trust'),
(98194, 81211, 'en', 'name', 'Argentine National Observatory'),
(98195, 81211, 'es', 'name', 'Observatori Astronòmic de Córdoba'),
(98196, 81212, 'en', 'name', 'Wuhan No.9 Hospital'),
(98197, 81212, 'zh', 'name', 'ę­¦ę±‰åø‚ē¬¬ä¹åŒ»é™¢'),
(98198, 81213, 'en', 'name', 'Keldysh Institute of Applied Mathematics'),
(98199, 81213, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной математики им. М.Š’. ŠšŠµŠ»Š“Ń‹ŃˆŠ° Российской акаГемии наук"'),
(98200, 81214, 'de', 'name', 'Institut für Axiologische Forschungen'),
(98201, 81214, 'en', 'name', 'Institute of Axiological Research'),
(98202, 81215, 'en', 'name', 'Natchaug Hospital'),
(98203, 81216, 'en', 'name', 'English Institute of Sport'),
(98204, 81217, 'en', 'name', 'Hunan Agricultural University'),
(98205, 81217, 'zh', 'name', 'ę¹–å—å†œäøšå¤§å­¦'),
(98206, 81218, 'no_lang_code', 'name', 'ABL Bio (South Korea)'),
(98207, 81219, 'en', 'name', 'Southwestern Educational Society'),
(98208, 81220, 'en', 'name', 'Brazilian Academy of Sciences'),
(98209, 81220, 'pt', 'name', 'Academia Brasileira de CiĆŖncias'),
(98210, 81221, 'pt', 'name', 'Instituto Benjamin Constant'),
(98211, 81222, 'no_lang_code', 'name', 'Mira Geoscience (Canada)'),
(98212, 81223, 'en', 'name', 'CRC Robotics'),
(98213, 81224, 'en', 'name', 'Metrology Institute of the Republic of Slovenia'),
(98214, 81225, 'no_lang_code', 'name', 'Oxagen (United Kingdom)'),
(98215, 81226, 'en', 'name', 'Russian Customs Academy'),
(98216, 81226, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Ń‚Š°Š¼Š¾Š¶ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(98217, 81227, 'en', 'name', 'St. Francis Hospital'),
(98218, 81228, 'no_lang_code', 'name', 'Firmenich (United States)'),
(98219, 81229, 'no_lang_code', 'name', 'TransCanada (Canada)'),
(98220, 81230, 'no_lang_code', 'name', 'Nanfang Hospital'),
(98221, 81231, 'en', 'name', 'Security Service of Ukraine'),
(98222, 81231, 'uk', 'name', 'Длужба безпеки України'),
(98223, 81232, 'en', 'name', 'Myanmar Oxford Clinical Research Unit'),
(98224, 81233, 'en', 'name', 'National Institute of Menthal Health, Neurology and Neurosurgery - NyĆ­rő Gyula Hospital'),
(98225, 81233, 'hu', 'name', 'OrszĆ”gos MentĆ”lis, IdeggyógyĆ”szati Ć©s IdegsebĆ©szeti IntĆ©zet - NyĆ­rő Gyula KórhĆ”z'),
(98226, 81234, 'no_lang_code', 'name', 'Volkswagen Group (Germany)'),
(98227, 81235, 'en', 'name', 'Institute of Ionosphere'),
(98228, 81236, 'en', 'name', 'Paleontological Society'),
(98229, 81237, 'en', 'name', 'Meiji Yasuda Life Foundation of Health and Welfare'),
(98230, 81237, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę˜Žę²»å®‰ē”°åŽšē”Ÿäŗ‹ę„­å›£'),
(98231, 81238, 'en', 'name', 'The Carter Center'),
(98232, 81239, 'en', 'name', 'Ohu University'),
(98233, 81239, 'ja', 'name', '億羽大学'),
(98234, 81240, 'es', 'name', 'Instituto Nacional de Investigación en Glaciares y Ecosistemas de Montaña'),
(98235, 81241, 'en', 'name', 'Donald & Barbara Zucker School of Medicine at Hofstra/Northwell'),
(98236, 81242, 'en', 'name', 'Johns Hopkins Center for Health Security'),
(98237, 81243, 'en', 'name', 'Hunan Academy of Agricultural Sciences'),
(98238, 81243, 'zh', 'name', 'ę¹–å—ēœå†œäøšē§‘å­¦é™¢'),
(98239, 81244, 'en', 'name', 'International University of Beirut'),
(98240, 81245, 'pt', 'name', 'Fundação Parque Tecnológico Itaipu'),
(98241, 81246, 'en', 'name', 'Sanquin'),
(98242, 81247, 'no_lang_code', 'name', 'Olink (United States)'),
(98243, 81248, 'en', 'name', 'Radiation Effects Research Foundation'),
(98244, 81248, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę”¾å°„ē·šå½±éŸæē ”ē©¶ę‰€'),
(98245, 81249, 'en', 'name', 'Patty Brisben Foundation for Women’s Sexual Health'),
(98246, 81250, 'es', 'name', 'Universidad DomĆ­nico Americana'),
(98247, 81251, 'en', 'name', 'Indian Institute of Technology Patna'),
(98248, 81251, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®Ŗą®ŸąÆą®©ą®¾'),
(98249, 81252, 'no_lang_code', 'name', 'Hellenic Atherosclerosis Society'),
(98250, 81253, 'no_lang_code', 'name', 'Eurofins (Netherlands)'),
(98251, 81254, 'no_lang_code', 'name', 'Digizyme (United States)'),
(98252, 81255, 'en', 'name', 'United Nations Children''s Fund Cameroon'),
(98253, 81256, 'en', 'name', 'Breast Cancer Society of Canada'),
(98254, 81256, 'fr', 'name', 'SociƩtƩ du Cancer du Canada'),
(98255, 81257, 'en', 'name', 'Seafish'),
(98256, 81258, 'pt', 'name', 'Observatório da Emigração'),
(98257, 81259, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗčæ‘ę£®ä¼ščæ‘ę£®ē—…é™¢'),
(98258, 81259, 'no_lang_code', 'name', 'Chikamori Hospital'),
(98259, 81260, 'en', 'name', 'Amsterdam Institute for Advanced Metropolitan Solutions'),
(98260, 81261, 'en', 'name', 'IT Step University'),
(98261, 81261, 'uk', 'name', 'Вищий Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ заклаГ'),
(98262, 81262, 'ja', 'name', 'ę—„ęœ¬ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(98263, 81262, 'no_lang_code', 'name', 'Nippon Seiki (Japan)'),
(98264, 81263, 'no_lang_code', 'name', 'Yangtze River Delta Physics Research Center (China)'),
(98265, 81263, 'zh', 'name', 'é•æäø‰č§’ē‰©ē†ē ”ē©¶äø­åæƒ'),
(98266, 81264, 'en', 'name', 'Ekhaga Foundation'),
(98267, 81264, 'sv', 'name', 'Ekhagastiftelsen'),
(98268, 81265, 'en', 'name', 'Kobayasi Institute of Physical Research'),
(98269, 81265, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå°ęž—ē†å­¦ē ”ē©¶ę‰€'),
(98270, 81266, 'no_lang_code', 'name', 'HemoSonics (United States)'),
(98271, 81267, 'en', 'name', 'Tokyo International University'),
(98272, 81267, 'ja', 'name', 'ę±äŗ¬å›½éš›å¤§å­¦'),
(98273, 81268, 'en', 'name', 'Guangdong Academy of Sciences'),
(98274, 81268, 'zh', 'name', 'å¹æäøœēœē§‘å­¦é™¢'),
(98275, 81269, 'en', 'name', 'Oklahoma State University'),
(98276, 81270, 'en', 'name', 'The First People''s Hospital of Changzhou'),
(98277, 81270, 'zh', 'name', 'åøøå·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(98278, 81271, 'en', 'name', 'Guangdong Provincial Hospital of Traditional Chinese Medicine'),
(98279, 81271, 'zh', 'name', 'å¹æäøœēœäø­åŒ»é™¢'),
(98280, 81272, 'en', 'name', 'Georgia Department of Natural Resources'),
(98281, 81273, 'no_lang_code', 'name', 'Tempus Labs (United States)'),
(98282, 81274, 'en', 'name', 'Khazanah Research Institute'),
(98283, 81275, 'en', 'name', 'The Royal Free Hospital'),
(98284, 81276, 'no_lang_code', 'name', 'Orlovskoye Polesye National Park'),
(98285, 81276, 'ru', 'name', 'ŠžŃ€Š»Š¾Š²ŃŠŗŠ¾Šµ Полесье'),
(98286, 81277, 'en', 'name', 'Climate Modelling Laboratory'),
(98287, 81278, 'en', 'name', 'Kameda Medical Center'),
(98288, 81278, 'ja', 'name', 'äŗ€ē”°ē·åˆē—…é™¢'),
(98289, 81279, 'en', 'name', 'Institute of Legislation and Legal Information of the Republic of Kazakhstan'),
(98290, 81280, 'en', 'name', 'Institute for Local Self-Reliance'),
(98291, 81281, 'en', 'name', 'British Association for Counselling and Psychotherapy'),
(98292, 81282, 'en', 'name', 'Islamic University of Riau'),
(98293, 81282, 'id', 'name', 'Universitas Islam Riau'),
(98294, 81283, 'no_lang_code', 'name', 'Honghu People’s Hospital'),
(98295, 81283, 'zh', 'name', 'ę“Ŗę¹–åø‚äŗŗę°‘åŒ»é™¢'),
(98296, 81284, 'en', 'name', 'Chongqing Academy of Science and Technology'),
(98297, 81284, 'zh', 'name', 'é‡åŗ†åø‚ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(98298, 81285, 'no_lang_code', 'name', 'Bavarian Nordic (Denmark)'),
(98299, 81286, 'en', 'name', 'Aba Teachers University'),
(98300, 81286, 'zh', 'name', 'é˜æååøˆčŒƒå­¦é™¢'),
(98301, 81287, 'fr', 'name', 'Centre Hospitalier Universitaire Sainte-Justine'),
(98302, 81288, 'en', 'name', 'Tokai University Hospital'),
(98303, 81288, 'ja', 'name', 'ę±ęµ·å¤§å­¦åŒ»å­¦éƒØä»˜å±žē—…é™¢'),
(98304, 81289, 'en', 'name', 'Software Training and Development Centre'),
(98305, 81290, 'en', 'name', 'Zhangjiagang First People''s Hospital'),
(98306, 81291, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ ĪœĪæĻĪ¹Ī±ĪŗĪ®Ļ‚ Βιολογίας και Βιοτεχνολογίας'),
(98307, 81291, 'en', 'name', 'FORTH Institute of Molecular Biology and Biotechnology'),
(98308, 81292, 'bs', 'name', 'Ministarstvo Civilnih Poslova'),
(98309, 81292, 'en', 'name', 'Ministry of Civil Affairs'),
(98310, 81293, 'en', 'name', 'University of Applied and Environmental Sciences'),
(98311, 81293, 'es', 'name', 'Universidad de Ciencias Aplicadas y Ambientales'),
(98312, 81294, 'de', 'name', 'Deutsche Gesellschaft für Ernährung'),
(98313, 81295, 'en', 'name', 'Hiroshima Red Cross Hospital & Atomic-bomb Survivors Hospital'),
(98314, 81295, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾åŗƒå³¶čµ¤åå­—ćƒ»åŽŸēˆ†ē—…é™¢'),
(98315, 81296, 'fr', 'name', 'Grenoble Ecole de Management'),
(98316, 81297, 'en', 'name', 'ARC Centre of Excellence for the Digital Child'),
(98317, 81298, 'en', 'name', 'Historic Environment Scotland'),
(98318, 81298, 'gd', 'name', 'ƀrainneachd Eachdraidheil Alba'),
(98319, 81299, 'en', 'name', 'Petroleum Technology Alliance Canada'),
(98320, 81300, 'no_lang_code', 'name', 'Pointcloud (United States)'),
(98321, 81301, 'no_lang_code', 'name', 'MacroGenics (United States)'),
(98322, 81302, 'pt', 'name', 'Centro Paulista de Investigação Clinica'),
(98323, 81303, 'en', 'name', 'Bow Valley College'),
(98324, 81304, 'en', 'name', 'Indian Institute of Technology Indore'),
(98325, 81304, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‡ą¤‚ą¤¦ą„Œą¤°'),
(98326, 81304, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®‡ą®ØąÆą®¤ąÆ‚ą®°ąÆ'),
(98327, 81305, 'en', 'name', 'Aventura Hospital and Medical Center'),
(98328, 81306, 'de', 'name', 'CiS Forschungsinstitut für Mikrosensorik'),
(98329, 81306, 'en', 'name', 'CiS Research Institute for Micro Sensors and Photovoltaics'),
(98330, 81307, 'en', 'name', 'Spanish Society of Family and Community Medicine'),
(98331, 81308, 'ja', 'name', 'ęœę—„ę–°čžē¤¾'),
(98332, 81308, 'no_lang_code', 'name', 'Asahi Shimbun Company (Japan)'),
(98333, 81309, 'de', 'name', 'Leibniz-Institut für Bildungsmedien | Georg-Eckert-Institut'),
(98334, 81309, 'en', 'name', 'Leibniz Institute for Educational Media | Georg Eckert Institute'),
(98335, 81310, 'no_lang_code', 'name', 'Japan Lifeline (Japan)'),
(98336, 81311, 'en', 'name', 'HIV Legal Network'),
(98337, 81311, 'fr', 'name', 'RƩseau juridique VIH'),
(98338, 81312, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ سلمان لأبحاث ال؄عاقة'),
(98339, 81312, 'en', 'name', 'King Salman Center for Disability Research'),
(98340, 81313, 'en', 'name', 'Visitor Studies Association'),
(98341, 81314, 'no_lang_code', 'name', 'Ruijin Hospital'),
(98342, 81314, 'zh', 'name', 'äøŠęµ·äŗ¤é€šå¤§å­¦åŒ»å­¦é™¢é™„å±žē‘žé‡‘åŒ»é™¢'),
(98343, 81315, 'ar', 'name', 'Ų§Ł„Ł‚Ų·Ų±ŁŠŲ©ā€Ž'),
(98344, 81315, 'no_lang_code', 'name', 'Qatar Airways (Qatar)'),
(98345, 81316, 'en', 'name', 'Far Eastern State Agrarian University'),
(98346, 81316, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98347, 81317, 'fr', 'name', 'Conseil RƩgional de La RƩunion'),
(98348, 81318, 'en', 'name', 'Urology Cancer Center and GU Research Network'),
(98349, 81319, 'en', 'name', 'Grazinglands Research Laboratory'),
(98350, 81320, 'en', 'name', 'Regenerative Sciences Institute'),
(98351, 81321, 'en', 'name', 'Nurgush Nature Reserve'),
(98352, 81321, 'ru', 'name', 'ŠŃƒŃ€Š³ŃƒŃˆ заповеГник'),
(98353, 81322, 'en', 'name', 'Lahore Garrison University'),
(98354, 81322, 'ur', 'name', 'Ł„Ų§ŪŁˆŲ± ŚÆŪŒŲ±ŪŒŚ˜Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒā€Ž'),
(98355, 81323, 'no_lang_code', 'name', 'Kantar Health (Brazil)'),
(98356, 81324, 'es', 'name', 'Fundación Instituto de Inmunología de Colombia'),
(98357, 81325, 'en', 'name', 'Austrian Institute for Sports Medicine'),
(98358, 81326, 'en', 'name', 'Centre for Research in Intensive Care'),
(98359, 81327, 'ja', 'name', 'ć‚°ćƒ©ć‚Æć‚½ćƒ»ć‚¹ćƒŸć‚¹ć‚Æćƒ©ć‚¤ćƒ³ę Ŗå¼ä¼šē¤¾'),
(98360, 81327, 'no_lang_code', 'name', 'GlaxoSmithKline (Japan)'),
(98361, 81328, 'no_lang_code', 'name', 'Oil and Natural Gas Corporation (India)'),
(98362, 81329, 'en', 'name', 'North West London Pathology'),
(98363, 81330, 'no_lang_code', 'name', 'Hydrosolutions (Switzerland)'),
(98364, 81331, 'en', 'name', 'Association of Canadian Universities for Northern Studies'),
(98365, 81331, 'fr', 'name', 'Association Universitaire Canadienne d''Ɖtudes Nordiques'),
(98366, 81332, 'no_lang_code', 'name', 'Juice Plus+ (United States)'),
(98367, 81333, 'en', 'name', 'Hefei National Center for Physical Sciences at Nanoscale'),
(98368, 81333, 'zh', 'name', 'åˆč‚„å¾®å°ŗåŗ¦ē‰©č“Øē§‘å­¦å›½å®¶å®žéŖŒå®¤'),
(98369, 81334, 'en', 'name', 'Central Scientific Research Institute of Armament and Military Equipment of the Armed Forces of Ukraine'),
(98370, 81334, 'uk', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¾Š·Š±Ń€Š¾Ń”Š½Š½Ń та Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾Ń— техніки Збройних Дил України'),
(98371, 81335, 'en', 'name', 'Society for the History of Technology'),
(98372, 81336, 'en', 'name', 'African Union Commission'),
(98373, 81337, 'da', 'name', 'Region Hovedstadens Apotek'),
(98374, 81337, 'en', 'name', 'The Capital Region Pharmacy'),
(98375, 81338, 'en', 'name', 'Salt Lake Regional Medical Center'),
(98376, 81339, 'en', 'name', 'Ebonyi State University'),
(98377, 81339, 'yo', 'name', 'YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ įŗøĢ€bį»ĢnyƬ'),
(98378, 81340, 'no_lang_code', 'name', 'Naturex (France)'),
(98379, 81341, 'en', 'name', 'Baton Rouge General'),
(98380, 81342, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å¤§ē‰Ÿē”°ē—…é™¢'),
(98381, 81342, 'no_lang_code', 'name', 'Omuta hospital'),
(98382, 81343, 'en', 'name', 'Altai State Agricultural University'),
(98383, 81343, 'ru', 'name', 'Алтайский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98384, 81344, 'en', 'name', 'Community Integrated Development Initiatives'),
(98385, 81345, 'de', 'name', 'Ɩsterreichisches Institut für Berufsbildungsforschung'),
(98386, 81346, 'en', 'name', 'International Livestock Research Institute'),
(98387, 81347, 'en', 'name', 'Rhode Island College'),
(98388, 81348, 'en', 'name', 'Miami Foundation'),
(98389, 81349, 'en', 'name', 'Hospice and Palliative Nurses Foundation'),
(98390, 81350, 'pt', 'name', 'Instituto Estadual do CƩrebro Paulo Niemeyer'),
(98391, 81351, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŲµŁˆŲ±Ų©'),
(98392, 81351, 'en', 'name', 'Mansoura University'),
(98393, 81352, 'en', 'name', 'Tibetan Children’s Village'),
(98394, 81352, 'hi', 'name', 'ą¤¹ą„‡ą¤” ऑफिस, ą¤¤ą¤æą¤¬ą„ą¤¬ą¤¤ą„€ ą¤šą¤æą¤²ą„ą¤”ą„ą¤°ą¤Øą„ą¤ø ą¤µą¤æą¤²ą„‡ą¤œ ą¤øą„ą¤•ą„‚ą¤²'),
(98395, 81353, 'fr', 'name', 'Shell Canada LimitƩe'),
(98396, 81353, 'no_lang_code', 'name', 'Shell (Canada)'),
(98397, 81354, 'ja', 'name', 'ćƒžćƒ«ćƒˆćƒ¢ę Ŗå¼ä¼šē¤¾'),
(98398, 81354, 'no_lang_code', 'name', 'Marutomo (Japan)'),
(98399, 81355, 'en', 'name', 'Rush University'),
(98400, 81356, 'en', 'name', 'The University of Texas at San Antonio'),
(98401, 81356, 'fr', 'name', 'UniversitƩ du texas Ơ san antonio'),
(98402, 81357, 'en', 'name', 'Clinical Physiology Institute'),
(98403, 81357, 'it', 'name', 'Istituto di Fisiologia Clinica'),
(98404, 81358, 'es', 'name', 'Fundación Universitaria Horizonte'),
(98405, 81359, 'en', 'name', 'Bristow Pediatrics'),
(98406, 81360, 'de', 'name', 'Hochschullehrerbund'),
(98407, 81360, 'en', 'name', 'German Association of Professors of Universities of Applied Sciences'),
(98408, 81361, 'en', 'name', 'Oregon Department of Environmental Quality'),
(98409, 81362, 'en', 'name', 'NIHR Imperial Biomedical Research Centre'),
(98410, 81363, 'en', 'name', 'National Geographic Institute'),
(98411, 81363, 'es', 'name', 'Instituto GeogrƔfico Nacional'),
(98412, 81364, 'en', 'name', 'Gifu University Hospital'),
(98413, 81364, 'ja', 'name', 'å²é˜œå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(98414, 81365, 'en', 'name', 'Don Honorio Ventura State University'),
(98415, 81365, 'tl', 'name', 'Pamantasang Don Honorio Ventura'),
(98416, 81366, 'ja', 'name', 'å‡øē‰ˆå°åˆ·ę Ŗå¼ä¼šē¤¾'),
(98417, 81366, 'no_lang_code', 'name', 'Toppan (Japan)'),
(98418, 81367, 'en', 'name', 'Education Development Trust'),
(98419, 81368, 'en', 'name', 'Ministry of Agriculture'),
(98420, 81369, 'en', 'name', 'St. George''s University'),
(98421, 81370, 'en', 'name', 'The Ilya Glazunov Russian Academy of Painting, Sculpture and Architecture'),
(98422, 81370, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ живописи, Š²Š°ŃŠ½ŠøŃ Šø зоГчества Ильи Š“Š»Š°Š·ŃƒŠ½Š¾Š²Š°'),
(98423, 81371, 'en', 'name', 'NTT Basic Research Laboratories'),
(98424, 81371, 'ja', 'name', 'NTT ē‰©ę€§ē§‘å­¦åŸŗē¤Žē ”ē©¶ę‰€'),
(98425, 81372, 'it', 'name', 'Azienda Ospedaliero Universitaria di Sassari'),
(98426, 81373, 'en', 'name', 'Lysosomal and Rare Disorders Research and Treatment Center'),
(98427, 81374, 'en', 'name', 'East Tennessee Clinical Research'),
(98428, 81375, 'en', 'name', 'Russian Society of Sociologists'),
(98429, 81375, 'ru', 'name', 'Российское общество социологов'),
(98430, 81376, 'en', 'name', 'Himalayan Environment Research Institute'),
(98431, 81376, 'ne', 'name', 'हिमालय ą¤Ŗą¤°ą„ą¤Æą¤¾ą¤µą¤°ą¤£ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(98432, 81377, 'en', 'name', 'National Institute of Ionizing Radiation Metrology'),
(98433, 81377, 'it', 'name', 'Istituto Nazionale di Metrologia delle Radiazioni Ionizzanti'),
(98434, 81378, 'en', 'name', 'New York Proton Center'),
(98435, 81379, 'en', 'name', 'Institute of Orthopedics Banjica'),
(98436, 81379, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¾Ń€Ń‚Š¾ŠæŠµŠ“ŠøŃ˜Ńƒ Š‘Š°ŃšŠøŃ†Š°'),
(98437, 81380, 'no_lang_code', 'name', 'Aarhus GeoSoftware (Denmark)'),
(98438, 81381, 'en', 'name', 'National Medical Holding'),
(98439, 81381, 'kk', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский холГинг'),
(98440, 81382, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šę–°ę½Ÿē¬¬äŗŒē—…é™¢'),
(98441, 81382, 'no_lang_code', 'name', 'Saiseikai Niigata Daini Hospital'),
(98442, 81383, 'en', 'name', 'LifeDoc Health'),
(98443, 81384, 'en', 'name', 'Forest Research Institute Malaysia'),
(98444, 81385, 'en', 'name', 'Institute of Oncology NN Petrov'),
(98445, 81385, 'ru', 'name', 'ŠŠ˜Š˜ онкологии им. Š.Š. ŠŸŠµŃ‚Ń€Š¾Š²Š°'),
(98446, 81386, 'en', 'name', 'Federal Transit Administration'),
(98447, 81387, 'en', 'name', 'Eye & Retina Surgeons'),
(98448, 81388, 'no_lang_code', 'name', 'Hitachi (Sweden)'),
(98449, 81389, 'en', 'name', 'Heising-Simons Foundation'),
(98450, 81390, 'en', 'name', 'Federal State Budgetary Institution Russian Scientific Center of Roentgenoradiology'),
(98451, 81390, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр рентгенораГиологии"'),
(98452, 81391, 'en', 'name', 'Agriculture Victoria'),
(98453, 81392, 'en', 'name', 'Department of National Parks Wildlife and Plant Conservation'),
(98454, 81392, 'th', 'name', 'ąøąø£ąø”ąø­ąøøąø—ąø¢ąø²ąø™ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“ ąøŖąø±ąø•ąø§ą¹Œąø›ą¹ˆąø² ą¹ąø„ąø°ąøžąø±ąø™ąø˜ąøøą¹Œąøžąø·ąøŠ'),
(98455, 81393, 'de', 'name', 'Brustzentrum Klinik St. Anna'),
(98456, 81394, 'no_lang_code', 'name', 'Electrolux (Italy)'),
(98457, 81395, 'en', 'name', 'St. Elisabeth-Hospital Bochum'),
(98458, 81396, 'en', 'name', 'New York State Library'),
(98459, 81397, 'ja', 'name', 'ę–°ę±å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(98460, 81397, 'no_lang_code', 'name', 'Sinto (Japan)'),
(98461, 81398, 'en', 'name', 'King''s College Hospital NHS Foundation Trust'),
(98462, 81399, 'en', 'name', 'Guangzhou Regenerative Medicine and Health Guangdong Laboratory'),
(98463, 81399, 'zh', 'name', 'å¹æå·žå†ē”ŸåŒ»å­¦äøŽå„åŗ·å¹æäøœēœå®žéŖŒå®¤'),
(98464, 81400, 'no_lang_code', 'name', 'Etymotic Research (United States)'),
(98465, 81401, 'en', 'name', 'Hanoi Medical University'),
(98466, 81401, 'fr', 'name', 'Université de médecine de hanoï'),
(98467, 81401, 'vi', 'name', 'ĐẔi hį»c Y HĆ  Nį»™i'),
(98468, 81402, 'en', 'name', 'Resuscitation Council'),
(98469, 81403, 'fr', 'name', 'Technopole Maritime du QuƩbec'),
(98470, 81404, 'no_lang_code', 'name', 'Equibreed (New Zealand)'),
(98471, 81405, 'en', 'name', 'National Nanotechnology Center'),
(98472, 81405, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œąø™ąø²ą¹‚ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(98473, 81406, 'en', 'name', 'Whitireia New Zealand'),
(98474, 81407, 'en', 'name', 'Geriatric Research Education and Clinical Center'),
(98475, 81408, 'es', 'name', 'Gastroenterología Diagnóstica Terapeútica'),
(98476, 81409, 'en', 'name', 'Biruni University'),
(98477, 81409, 'tr', 'name', 'Biruni Üniversitesi'),
(98478, 81410, 'en', 'name', 'Himalayan Institute Hospital Trust'),
(98479, 81410, 'hi', 'name', 'ą¤¹ą¤æą¤®ą¤¾ą¤²ą¤Æą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤…ą¤øą„ą¤Ŗą¤¤ą¤¾ą¤² ą¤Ÿą„ą¤°ą¤øą„ą¤Ÿ'),
(98480, 81411, 'en', 'name', 'Garland VA Medical Center'),
(98481, 81412, 'en', 'name', 'Sumitomo Foundation'),
(98482, 81412, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä½å‹č²”å›£'),
(98483, 81413, 'nl', 'name', 'Diakonessenhuis hospital'),
(98484, 81414, 'en', 'name', 'Baptist Memorial Health Care'),
(98485, 81415, 'en', 'name', 'ARC Centre of Excellence for Enabling Eco-Efficient Beneficiation of Minerals'),
(98486, 81416, 'no_lang_code', 'name', 'Tang Shiu Kin Hospital'),
(98487, 81416, 'zh', 'name', '鄧肇堅醫院'),
(98488, 81417, 'iu', 'name', 'Pauktuutit'),
(98489, 81418, 'en', 'name', 'Plant Biosecurity Cooperative Research Centre'),
(98490, 81419, 'en', 'name', 'Towada City Hospital'),
(98491, 81419, 'ja', 'name', 'åå’Œē”°åø‚ē«‹äø­å¤®ē—…é™¢'),
(98492, 81420, 'no_lang_code', 'name', 'CryoLife (United States)'),
(98493, 81421, 'no_lang_code', 'name', 'BioBridges (United States)'),
(98494, 81422, 'en', 'name', 'Pacific Centre for Isotopic and Geochemical Research'),
(98495, 81423, 'en', 'name', 'Arnold Regge Center'),
(98496, 81424, 'en', 'name', 'Covenant Medical Center'),
(98497, 81425, 'en', 'name', 'Thomas University'),
(98498, 81426, 'en', 'name', 'ARC Centre of Excellence in Synthetic Biology'),
(98499, 81427, 'en', 'name', 'Gundersen Health System'),
(98500, 81428, 'en', 'name', 'MRC Population Health Research Unit'),
(98501, 81429, 'en', 'name', 'Gashaka Primate Project'),
(98502, 81430, 'no_lang_code', 'name', 'B-Ware (Netherlands)'),
(98503, 81431, 'en', 'name', 'Morehouse School of Medicine'),
(98504, 81432, 'en', 'name', 'Alaska Historical Society'),
(98505, 81433, 'en', 'name', 'Russian Research Institute for Integrated Water Management and Protection'),
(98506, 81434, 'en', 'name', 'The Negros Museum'),
(98507, 81435, 'no_lang_code', 'name', 'Fluidigm (United States)'),
(98508, 81436, 'en', 'name', 'Madhav Institute of Technology & Science'),
(98509, 81437, 'en', 'name', 'Kyushu Hospital'),
(98510, 81437, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹ä¹å·žē—…é™¢'),
(98511, 81438, 'en', 'name', 'Northern Ontario Academic Medicine Association'),
(98512, 81439, 'en', 'name', 'Geophysics GPR International'),
(98513, 81439, 'fr', 'name', 'Geophysique GPR International'),
(98514, 81440, 'no_lang_code', 'name', 'Apollomics (United States)'),
(98515, 81441, 'en', 'name', 'Federal University of Technology'),
(98516, 81442, 'en', 'name', 'Anhui Academy of Agricultural Sciences'),
(98517, 81442, 'zh', 'name', 'å®‰å¾½ēœå†œē§‘é™¢'),
(98518, 81443, 'en', 'name', 'Baikal Research Centre'),
(98519, 81444, 'en', 'name', 'Shangdong Agriculture and Engineering University'),
(98520, 81444, 'zh', 'name', 'å±±äøœå†œäøšå·„ēØ‹å­¦é™¢'),
(98521, 81445, 'en', 'name', 'Unitec Institute of Technology'),
(98522, 81446, 'en', 'name', 'DRDO Young Scientist Laboratory'),
(98523, 81447, 'no_lang_code', 'name', 'JenaBatteries (Germany)'),
(98524, 81448, 'en', 'name', 'Smart Data Analysis Systems Group'),
(98525, 81449, 'en', 'name', 'University of Portland'),
(98526, 81449, 'fr', 'name', 'UniversitƩ de portland'),
(98527, 81450, 'de', 'name', 'Bundesamt für Kartographie und Geodäsie'),
(98528, 81450, 'en', 'name', 'Federal Agency for Cartography and Geodesy'),
(98529, 81451, 'en', 'name', 'Center for Northern Studies'),
(98530, 81451, 'fr', 'name', 'Centre d''Ʃtudes nordiques'),
(98531, 81452, 'en', 'name', 'Baltimore City Health Department'),
(98532, 81453, 'ca', 'name', 'Universitat de NĆ pols – L''Oriental'),
(98533, 81453, 'de', 'name', 'UniversitƤt Neapel L’Orientale'),
(98534, 81453, 'en', 'name', 'University of Naples - L''Orientale'),
(98535, 81453, 'fr', 'name', 'UniversitƩ de naples - l''orientale'),
(98536, 81453, 'it', 'name', 'UniversitĆ  degli Studi di Napoli L''Orientale'),
(98537, 81454, 'en', 'name', 'Catharina Hospital'),
(98538, 81454, 'nl', 'name', 'Catharina Ziekenhuis'),
(98539, 81455, 'en', 'name', 'UK Stem Cell Foundation'),
(98540, 81456, 'en', 'name', 'Duke Raleigh Hospital'),
(98541, 81457, 'en', 'name', 'Altaiskiy State Nature Biosphere Reserve'),
(98542, 81457, 'ru', 'name', 'Алтайский заповеГник'),
(98543, 81458, 'no_lang_code', 'name', 'Syncrude (Canada)'),
(98544, 81459, 'en', 'name', 'Wheelchair Rugby Canada'),
(98545, 81459, 'fr', 'name', 'Association Canadienne des Sports en Fauteuil Roulant'),
(98546, 81460, 'no_lang_code', 'name', 'USP Technologies (United Kingdom)'),
(98547, 81461, 'en', 'name', 'Sevilleta Long Term Ecological Research'),
(98548, 81462, 'en', 'name', 'Japanese Red Cross Kobe Hospital'),
(98549, 81462, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ē„žęˆøčµ¤åå­—ē—…é™¢'),
(98550, 81463, 'fr', 'name', 'Biologie de l''os et du cartilage, Bioscar'),
(98551, 81464, 'en', 'name', 'Lindenwood University'),
(98552, 81465, 'en', 'name', 'State Key Laboratory of Transducer Technology'),
(98553, 81465, 'zh', 'name', 'ä¼ ę„ŸęŠ€ęœÆå›½å®¶č”åˆé‡ē‚¹å®žéŖŒå®¤'),
(98554, 81466, 'en', 'name', 'Mangalore Institute of Oncology'),
(98555, 81466, 'kn', 'name', 'ಮಂಗಳೂರು ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²Øą³ą²•ą²¾ą²²ą²œą²æ'),
(98556, 81467, 'es', 'name', 'Red de Investigación en Actividades Preventivas y Promoción de la Salud'),
(98557, 81468, 'en', 'name', 'National Institute of Genomic Medicine'),
(98558, 81468, 'es', 'name', 'Instituto Nacional de Medicina Genómica'),
(98559, 81469, 'en', 'name', 'Bannari Amman Institute of Technology'),
(98560, 81470, 'en', 'name', 'American Academy of Forensic Sciences'),
(98561, 81471, 'en', 'name', 'VIB-UGent Center for Plant Systems Biology'),
(98562, 81472, 'no_lang_code', 'name', 'Gossamer Bio (United States)'),
(98563, 81473, 'en', 'name', 'Beyond Conflict'),
(98564, 81474, 'en', 'name', 'Political Studies Association'),
(98565, 81475, 'no_lang_code', 'name', 'EMI (United Kingdom)'),
(98566, 81476, 'no_lang_code', 'name', 'Bruker (China)'),
(98567, 81477, 'no_lang_code', 'name', 'Kallyope (United States)'),
(98568, 81478, 'en', 'name', 'Otago Polytechnic'),
(98569, 81479, 'en', 'name', 'Osaka Prefectural Institute of Public Health'),
(98570, 81479, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹å…¬č”†č”›ē”Ÿē ”ē©¶ę‰€'),
(98571, 81480, 'fr', 'name', 'Centre d''Ɖtude et de DĆ©couverte des Tortues Marines'),
(98572, 81481, 'en', 'name', 'Uniting'),
(98573, 81482, 'en', 'name', 'Philippine Science High School System'),
(98574, 81482, 'tl', 'name', 'Mataas na Paaralang Pang-agham ng Pilipinas'),
(98575, 81483, 'en', 'name', 'Bay Area Hospital');
INSERT INTO `ror_settings` VALUES
(98576, 81484, 'en', 'name', 'Xianyang Normal University'),
(98577, 81484, 'zh', 'name', 'å’øé˜³åøˆčŒƒå­¦é™¢'),
(98578, 81485, 'en', 'name', 'Innovative Genomics Institute'),
(98579, 81486, 'en', 'name', 'Chelonia Applied Science'),
(98580, 81487, 'en', 'name', 'JKA Foundation'),
(98581, 81487, 'ja', 'name', '貔団法人JKA'),
(98582, 81488, 'en', 'name', 'Dazhou Academy of Agricultural Sciences'),
(98583, 81489, 'no_lang_code', 'name', 'Xilinx (United States)'),
(98584, 81490, 'en', 'name', 'Banki College'),
(98585, 81491, 'en', 'name', 'Dermacross'),
(98586, 81492, 'en', 'name', 'National Environmental Health Centre'),
(98587, 81492, 'es', 'name', 'Centro Nacional de Sanidad Ambiental'),
(98588, 81493, 'en', 'name', 'Osaka Neurological Institute'),
(98589, 81493, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå”ę¾¤čØ˜åæµä¼šå¤§é˜Ŗč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(98590, 81494, 'no_lang_code', 'name', 'Arog Pharmaceuticals (United States)'),
(98591, 81495, 'en', 'name', 'Northwest Kidney Centers'),
(98592, 81496, 'no_lang_code', 'name', 'Chemometrix (Germany)'),
(98593, 81497, 'en', 'name', 'Worldwide Laser Institute'),
(98594, 81498, 'de', 'name', 'Leibniz-Institut für Raumbezogene Sozialforschung'),
(98595, 81498, 'en', 'name', 'Leibniz Institute for Research on Society and Space'),
(98596, 81499, 'en', 'name', 'Guangdong Academy of Agricultural Sciences'),
(98597, 81499, 'zh', 'name', 'å¹æäøœēœå†œäøšē§‘å­¦é™¢'),
(98598, 81500, 'en', 'name', 'VA Finger Lakes Healthcare System'),
(98599, 81501, 'en', 'name', 'Royal Aeronautical Society'),
(98600, 81502, 'en', 'name', 'Calvary Riverina Hospital'),
(98601, 81503, 'es', 'name', 'Fundación Marques de Valdecilla'),
(98602, 81504, 'no_lang_code', 'name', 'Yumanity Therapeutics (United States)'),
(98603, 81505, 'no_lang_code', 'name', 'International Wildlife Consultants (United Kingdom)'),
(98604, 81506, 'no_lang_code', 'name', 'Fusion Genomics (Canada)'),
(98605, 81507, 'en', 'name', 'Orot Israel College'),
(98606, 81507, 'he', 'name', '×ž×›×œ×œ×Ŗ אורות ×™×©×Ø××œ'),
(98607, 81508, 'es', 'name', 'Laboratorios Ruiz'),
(98608, 81509, 'en', 'name', 'Center for International Forestry Research'),
(98609, 81510, 'en', 'name', 'Melnikov Permafrost Institute of the Siberian Branch of the Russian Academy of Science'),
(98610, 81510, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼ŠµŃ€Š·Š»Š¾Ń‚Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ имени П. И. Мельникова Š”Šž Š ŠŠ'),
(98611, 81511, 'ja', 'name', 'ę„›ēŸ„å­¦é™¢å¤§å­¦'),
(98612, 81511, 'no_lang_code', 'name', 'Aichi Gakuin University'),
(98613, 81512, 'en', 'name', 'World Vision'),
(98614, 81513, 'de', 'name', 'Fraunhofer-Institut für Translationale Medizin und Pharmakologie'),
(98615, 81513, 'en', 'name', 'Fraunhofer Institute for Translational Medicine and Pharmacology'),
(98616, 81514, 'en', 'name', 'Nippon Dental University'),
(98617, 81514, 'ja', 'name', 'ę—„ęœ¬ę­Æē§‘å¤§å­¦'),
(98618, 81515, 'es', 'name', 'Hospital Universitario La Paz'),
(98619, 81516, 'en', 'name', 'Kamchatka State Technical University'),
(98620, 81516, 'ru', 'name', 'ŠšŠ°Š¼Ń‡Š°Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98621, 81517, 'en', 'name', 'Division Technique de I''INSU'),
(98622, 81518, 'en', 'name', 'Glympse Bio'),
(98623, 81519, 'no_lang_code', 'name', 'Tomita Hospital'),
(98624, 81520, 'en', 'name', 'Peng Huanwu Center for Fundamental Theory'),
(98625, 81521, 'it', 'name', 'Ospedale Papa Giovanni XXIII'),
(98626, 81522, 'en', 'name', 'University Hospitals Parma Medical Center'),
(98627, 81523, 'en', 'name', 'WellChild'),
(98628, 81524, 'en', 'name', 'Institute for Global Environmental Strategies'),
(98629, 81524, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåœ°ēƒē’°å¢ƒęˆ¦ē•„ē ”ē©¶ę©Ÿé–¢'),
(98630, 81525, 'fr', 'name', 'Hirslanden Clinique La Colline'),
(98631, 81526, 'en', 'name', 'Wisconsin State Law Library'),
(98632, 81527, 'en', 'name', 'Federal Scientific Center for Biological Systems and Agricultural Technologies of the Russian Academy of Sciences'),
(98633, 81527, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр биологических систем Šø агротехнологий Российской акаГемии наук»'),
(98634, 81528, 'en', 'name', 'American Society of Landscape Architects'),
(98635, 81529, 'el', 'name', 'Δίκτυο Ī Ī”Ī‘ĪžĪ—'),
(98636, 81529, 'no_lang_code', 'name', 'PRAXI Network'),
(98637, 81530, 'en', 'name', 'Biotherapy Institute of Japan'),
(98638, 81530, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—„ęœ¬ćƒć‚¤ć‚Ŗć‚»ćƒ©ćƒ”ćƒ¼ē ”ē©¶ę‰€'),
(98639, 81531, 'de', 'name', 'Kompetenznetz Vorhofflimmern'),
(98640, 81531, 'en', 'name', 'Atrial Fibrillation NETwork'),
(98641, 81532, 'en', 'name', 'Institute of Pharmacology'),
(98642, 81533, 'en', 'name', 'Mallacoota Medical Centre'),
(98643, 81534, 'en', 'name', 'Pain in Motion'),
(98644, 81535, 'no_lang_code', 'name', 'Intercept Pharmaceuticals (United States)'),
(98645, 81536, 'en', 'name', 'Helmholtz Graduate School for Hadron and Ion Research'),
(98646, 81537, 'no_lang_code', 'name', 'envibee (Switzerland)'),
(98647, 81538, 'no_lang_code', 'name', 'Implantcast (Germany)'),
(98648, 81539, 'no_lang_code', 'name', 'Mendeley (United Kingdom)'),
(98649, 81540, 'en', 'name', 'Toi Ohomai Institute of Technology'),
(98650, 81541, 'en', 'name', 'Russian Medical Academy of Continuous Professional Education'),
(98651, 81541, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ непрерывного ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ'),
(98652, 81542, 'en', 'name', 'Scottish Natural Heritage'),
(98653, 81543, 'no_lang_code', 'name', 'Ultra Electronics (United States)'),
(98654, 81544, 'en', 'name', 'Hamaguchi Foundation for the Advancement of Biochemistry'),
(98655, 81544, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęæ±å£ē”ŸåŒ–å­¦ęŒÆčˆˆč²”å›£'),
(98656, 81545, 'en', 'name', 'Institute for Soldier Nanotechnologies'),
(98657, 81546, 'en', 'name', 'National Institute of Technology, Kisarazu College'),
(98658, 81546, 'ja', 'name', 'ęœØę›“ę“„å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(98659, 81547, 'no_lang_code', 'name', 'MedDay (France)'),
(98660, 81548, 'en', 'name', 'International Crops Research Institute for the Semi-Arid Tropics'),
(98661, 81549, 'en', 'name', 'Zhuhai Fudan Innovation Research Institute'),
(98662, 81549, 'zh', 'name', 'ē ęµ·å¤ę—¦åˆ›ę–°ē ”ē©¶é™¢'),
(98663, 81550, 'ro', 'name', 'Institutul National pentru Sanatatea Mamei si Copilului "Alessandrescu-Rusescu"'),
(98664, 81551, 'en', 'name', 'Canadian Society for Immunology'),
(98665, 81551, 'fr', 'name', 'SociƩtƩ Canadienne d''Immunologie'),
(98666, 81552, 'en', 'name', 'India Meteorological Department'),
(98667, 81553, 'hr', 'name', 'Klinički Centar Crne Gore'),
(98668, 81554, 'ja', 'name', 'ä½å‹ē²¾åŒ–ę Ŗå¼ä¼šē¤¾'),
(98669, 81554, 'no_lang_code', 'name', 'Sumitomo Seika Chemicals (Japan)'),
(98670, 81555, 'en', 'name', 'Brain Mapping Medical Research Organization & Support Foundation'),
(98671, 81556, 'en', 'name', 'Coventry University'),
(98672, 81557, 'no_lang_code', 'name', 'Murata (Finland)'),
(98673, 81558, 'no_lang_code', 'name', 'Stora Enso (Sweden)'),
(98674, 81559, 'en', 'name', 'Center for the National Interest'),
(98675, 81560, 'no_lang_code', 'name', 'Science Exchange (United States)'),
(98676, 81561, 'en', 'name', 'Gannan Medical University'),
(98677, 81561, 'zh', 'name', 'čµ£å—åŒ»å­¦é™¢'),
(98678, 81562, 'no_lang_code', 'name', 'Guangxi Medicinal Botanical Garden'),
(98679, 81562, 'zh', 'name', 'å¹æč„æčÆē”Øę¤ē‰©å›­'),
(98680, 81563, 'en', 'name', 'Japan Textbook Research Center'),
(98681, 81563, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę•™ē§‘ę›øē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(98682, 81564, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей Šø неорганической химии ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(98683, 81564, 'en', 'name', 'Institute of General and Inorganic Chemistry of National Academy of Sciences of Belarus'),
(98684, 81565, 'en', 'name', 'Newport Restoration Foundation'),
(98685, 81566, 'de', 'name', 'Leibniz-Institut für Polymerforschung Dresden'),
(98686, 81566, 'en', 'name', 'Leibniz Institute of Polymer Research'),
(98687, 81567, 'en', 'name', 'Institute for Diagnosis and Animal Health'),
(98688, 81567, 'ro', 'name', 'Institutul de Diagnostic şi Sănătate Animală'),
(98689, 81568, 'en', 'name', 'Southern Federal University'),
(98690, 81568, 'ru', 'name', 'Южный Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98691, 81569, 'en', 'name', 'Osaka Health Science University'),
(98692, 81569, 'ja', 'name', 'å¤§é˜Ŗäæå„åŒ»ē™‚å¤§å­¦'),
(98693, 81570, 'en', 'name', 'Kavli Institute for Systems Neuroscience'),
(98694, 81571, 'en', 'name', 'Japan Sport Council'),
(98695, 81571, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(98696, 81572, 'fr', 'name', 'Ɖcole des Cadres'),
(98697, 81573, 'no_lang_code', 'name', 'Seagen (Canada)'),
(98698, 81574, 'es', 'name', 'Ministerio de Salud PĆŗblica'),
(98699, 81575, 'no_lang_code', 'name', 'JEOL (China)'),
(98700, 81575, 'zh', 'name', 'ę·ę¬§č·Æ'),
(98701, 81576, 'ja', 'name', 'ć‚µćƒ³ć‚±ćƒ³é›»ę°—ę Ŗå¼ä¼šē¤¾'),
(98702, 81576, 'no_lang_code', 'name', 'Sanken Electric (Japan)'),
(98703, 81577, 'en', 'name', 'Sonora Institute of Technology'),
(98704, 81577, 'es', 'name', 'Instituto Tecnológico de Sonora'),
(98705, 81578, 'en', 'name', 'MIRCORE'),
(98706, 81579, 'no', 'name', 'Norges Bank'),
(98707, 81580, 'en', 'name', 'Dehradun Institute of Technology University'),
(98708, 81580, 'hi', 'name', 'ą¤¦ą„‡ą¤¹ą¤°ą¤¾ą¤¦ą„‚ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(98709, 81581, 'en', 'name', 'Prion Alliance'),
(98710, 81582, 'fr', 'name', 'HƓpitaux Universitaires Paris-Ouest'),
(98711, 81583, 'en', 'name', 'Nephrology Center of Maryland'),
(98712, 81584, 'en', 'name', 'T''Sou-ke First Nation'),
(98713, 81585, 'en', 'name', 'Laerdal Foundation'),
(98714, 81586, 'en', 'name', 'Academy of Medical Sciences of Bosnia and Herzegovina'),
(98715, 81587, 'be', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń библиотека им. И. Š”. Š›ŃƒŠæŠøŠ½Š¾Š²ŠøŃ‡Š°'),
(98716, 81587, 'en', 'name', 'I.S. Lupinovich Belarus Agricultural Library'),
(98717, 81588, 'en', 'name', 'Pirkanmaa Hospital District'),
(98718, 81588, 'fi', 'name', 'Pirkanmaan Sairaanhoitopiiri'),
(98719, 81589, 'en', 'name', 'Russian Dialysis Society'),
(98720, 81589, 'ru', 'name', 'Российское Гиализное общество'),
(98721, 81590, 'en', 'name', 'Dokkyo University'),
(98722, 81590, 'ja', 'name', 'ēØå”å¤§å­¦'),
(98723, 81591, 'en', 'name', 'Department of Ecology and Environment of Hainan Province'),
(98724, 81591, 'zh', 'name', 'ęµ·å—ēœē”Ÿę€ēŽÆå¢ƒåŽ…'),
(98725, 81592, 'en', 'name', 'Norwegian Institute for Sustainability Research'),
(98726, 81592, 'no', 'name', 'Norsk institutt for bƦrekraftsforskning AS'),
(98727, 81593, 'en', 'name', 'AVA – Academy of Visual Arts'),
(98728, 81593, 'sk', 'name', 'AVA – Akademija za Vizualne Umetnosti'),
(98729, 81594, 'no_lang_code', 'name', 'Sensory Cloud (United States)'),
(98730, 81595, 'en', 'name', 'Ehime University Hospital'),
(98731, 81595, 'ja', 'name', 'ę„›åŖ›å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(98732, 81596, 'en', 'name', 'Beaufort County Community College'),
(98733, 81597, 'en', 'name', 'Occupational Cancer Research Centre'),
(98734, 81598, 'no_lang_code', 'name', 'Reva Medical (United States)'),
(98735, 81599, 'en', 'name', 'Wuzhou University'),
(98736, 81599, 'zh', 'name', 'ę¢§å·žå­¦é™¢'),
(98737, 81600, 'no_lang_code', 'name', 'Bühler (Switzerland)'),
(98738, 81601, 'en', 'name', 'Romanian Institute For Research on National Minorities'),
(98739, 81601, 'hu', 'name', 'Nemzeti Kisebbségkutató Intézet'),
(98740, 81601, 'ro', 'name', 'Institutul pentru Studierea Problemelor Minorităţilor Naţionale'),
(98741, 81602, 'es', 'name', 'INDCRAN'),
(98742, 81603, 'en', 'name', 'Sutter Auburn Faith Hospital'),
(98743, 81604, 'en', 'name', 'Indian Institute of Science Education and Research Mohali'),
(98744, 81605, 'en', 'name', 'Lakeside Labs'),
(98745, 81606, 'en', 'name', 'Nuffield Health'),
(98746, 81607, 'no_lang_code', 'name', '10X Genomics (Sweden)'),
(98747, 81608, 'en', 'name', 'Second Affiliated Hospital of Xinjiang Medical University'),
(98748, 81608, 'zh', 'name', 'ę–°ē–†åŒ»ē§‘å¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(98749, 81609, 'en', 'name', 'Social Welfare Organization Saiseikai Imperial Gift Foundation'),
(98750, 81609, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼š'),
(98751, 81610, 'no_lang_code', 'name', 'Willow Biosciences (Canada)'),
(98752, 81611, 'en', 'name', 'Notre-Dame Hospital'),
(98753, 81611, 'fr', 'name', 'HƓpital Notre-Dame'),
(98754, 81612, 'en', 'name', 'National Center for Spinal Disorders'),
(98755, 81612, 'hu', 'name', 'OrszÔgos GerincgyógyÔszati Központ'),
(98756, 81613, 'en', 'name', 'Department for Levelling Up, Housing & Communities'),
(98757, 81614, 'en', 'name', 'Florida Department of Health in Orange County'),
(98758, 81615, 'no_lang_code', 'name', 'OWL (Spain)'),
(98759, 81616, 'ja', 'name', '巄学院大学'),
(98760, 81616, 'no_lang_code', 'name', 'Kogakuin University'),
(98761, 81617, 'fr', 'name', 'Centre de Recherche sur les Liens Sociaux'),
(98762, 81618, 'en', 'name', 'Institute of Urology of the National Academy of Medical Sciences of Ukraine'),
(98763, 81618, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŃ€Š¾Š»Š¾Š³Ń–Ń— ŠŠŠœŠ України'),
(98764, 81619, 'en', 'name', 'Scientific and Technical Central Units'),
(98765, 81619, 'es', 'name', 'Unidades Centrales Cientƭfico-TƩcnicas'),
(98766, 81620, 'bs', 'name', 'Centar izuzetne vrednosti u oblasti istraživanja ishrane i metabolizma'),
(98767, 81620, 'en', 'name', 'Centre of Research Excellence in Nutrition and Metabolism'),
(98768, 81621, 'en', 'name', 'North Pacific Anadromous Fish Commission'),
(98769, 81622, 'pt', 'name', 'Instituto Butantan, Instituto Butantã'),
(98770, 81623, 'en', 'name', 'NARD Institute'),
(98771, 81623, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŠćƒ¼ćƒ‰ē ”ē©¶ę‰€'),
(98772, 81624, 'en', 'name', 'Guangdong Polytechnic of Science and Technology'),
(98773, 81624, 'zh', 'name', 'å¹æäøœē§‘å­¦ęŠ€ęœÆčŒäøšå­¦é™¢'),
(98774, 81625, 'no_lang_code', 'name', 'Obstech (Chile)'),
(98775, 81626, 'en', 'name', 'Zhejiang Academy of Social Sciences'),
(98776, 81626, 'zh', 'name', 'ęµ™ę±Ÿēœē¤¾ä¼šē§‘å­¦é™¢'),
(98777, 81627, 'en', 'name', 'China Automotive Battery Research Institute'),
(98778, 81627, 'zh', 'name', 'å›½č”ę±½č½¦åŠØåŠ›ē”µę± ē ”ē©¶é™¢'),
(98779, 81628, 'en', 'name', 'Norfolk and Norwich University Hospitals NHS Foundation Trust'),
(98780, 81629, 'es', 'name', 'Universidad Internacional de Ciencia y TecnologĆ­a - UNICyT'),
(98781, 81630, 'en', 'name', 'National Clonal Germplasm Repository'),
(98782, 81631, 'en', 'name', 'Kryvyi Rih State Pedagogical University'),
(98783, 81631, 'uk', 'name', 'ŠšŃ€ŠøŠ²Š¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(98784, 81632, 'en', 'name', 'Singapore Institute of Management'),
(98785, 81632, 'zh', 'name', 'ę–°åŠ å”ē®”ē†å­¦é™¢'),
(98786, 81633, 'sv', 'name', 'VƤstergƶtlands Museum'),
(98787, 81634, 'en', 'name', 'Montefiore Health System'),
(98788, 81635, 'en', 'name', 'Tethys Research Institute'),
(98789, 81635, 'it', 'name', 'Istituto Tethys ONLUS'),
(98790, 81636, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚µćƒ ć‚¹ćƒ³ę—„ęœ¬ē ”ē©¶ę‰€'),
(98791, 81636, 'no_lang_code', 'name', 'Samsung (Japan)'),
(98792, 81637, 'en', 'name', 'Helsinki Institute of Physics'),
(98793, 81637, 'fi', 'name', 'Fysiikan Tutkimuslaitos'),
(98794, 81637, 'sv', 'name', 'Forskningsinstitutet fƶr Fysik'),
(98795, 81638, 'no_lang_code', 'name', 'Rolls-Royce (Canada)'),
(98796, 81639, 'en', 'name', 'Saint Paul University'),
(98797, 81639, 'fr', 'name', 'UniversitƩ Saint-Paul'),
(98798, 81640, 'en', 'name', 'Flexible Learning Association of New Zealand'),
(98799, 81641, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¹ć‚æćƒ¼ć‚øć‚§ćƒ³'),
(98800, 81641, 'no_lang_code', 'name', 'StaGen (Japan)'),
(98801, 81642, 'en', 'name', 'Commonwealth Health Research Board'),
(98802, 81643, 'en', 'name', 'Royal Australian and New Zealand College of Radiologists'),
(98803, 81644, 'en', 'name', 'Department of Aerospace Science and Technology'),
(98804, 81645, 'en', 'name', 'University of Louisiana at Lafayette'),
(98805, 81645, 'fr', 'name', 'UniversitƩ de louisiane Ơ lafayette'),
(98806, 81646, 'en', 'name', 'Antibiotic Research UK'),
(98807, 81647, 'no_lang_code', 'name', 'CDM Smith (Australia)'),
(98808, 81648, 'en', 'name', 'Botkin Hospital'),
(98809, 81648, 'ru', 'name', 'Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° имени Š”. П. Боткина'),
(98810, 81649, 'en', 'name', 'Bakrie University'),
(98811, 81649, 'id', 'name', 'Universitas Bakrie'),
(98812, 81650, 'en', 'name', 'Flathead National Forest'),
(98813, 81651, 'en', 'name', 'Veneto Institute of Oncology'),
(98814, 81651, 'it', 'name', 'Istituto Oncologico Veneto'),
(98815, 81652, 'en', 'name', 'Beijing Electronic Science and Technology Institute'),
(98816, 81652, 'zh', 'name', 'åŒ—äŗ¬ē”µå­ē§‘ęŠ€å­¦é™¢'),
(98817, 81653, 'en', 'name', 'University of Gujrat'),
(98818, 81653, 'ur', 'name', 'جامعہ ŚÆŲ¬Ų±Ų§ŲŖ'),
(98819, 81654, 'en', 'name', 'International Performance Research Institute'),
(98820, 81655, 'en', 'name', 'BC Children''s Hospital Foundation'),
(98821, 81656, 'en', 'name', 'California Geological Survey'),
(98822, 81657, 'en', 'name', 'American College of Medical Toxicology'),
(98823, 81658, 'no_lang_code', 'name', 'Moderna Therapeutics (United States)'),
(98824, 81659, 'en', 'name', 'Center for Construction Research and Training'),
(98825, 81660, 'en', 'name', 'Western Indian Ocean Marine Science Association'),
(98826, 81661, 'en', 'name', 'Software Engineering Institute'),
(98827, 81662, 'en', 'name', 'Institute for Protein Innovation'),
(98828, 81663, 'en', 'name', 'Nuclear Waste Management Organization'),
(98829, 81664, 'en', 'name', 'Altlabs'),
(98830, 81665, 'en', 'name', 'Agricultural Marketing Service'),
(98831, 81666, 'en', 'name', 'Toscana Life Sciences'),
(98832, 81667, 'de', 'name', 'Hochschule für Technik und Wirtschaft Berlin'),
(98833, 81667, 'en', 'name', 'HTW Berlin - University of Applied Sciences'),
(98834, 81668, 'en', 'name', 'Institute of Artificial Intelligence Problems'),
(98835, 81668, 'uk', 'name', 'Š†ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŸŠ ŠžŠ‘Š›Š•Šœ ŠØŠ¢Š£Š§ŠŠžŠ“Šž Š†ŠŠ¢Š•Š›Š•ŠšŠ¢Š£'),
(98836, 81669, 'no_lang_code', 'name', 'China National Biotechnology (China)'),
(98837, 81669, 'zh', 'name', 'äø­å›½ē”Ÿē‰©ęŠ€ęœÆ'),
(98838, 81670, 'en', 'name', 'National University of Barranca'),
(98839, 81670, 'es', 'name', 'Universidad Nacional de Barranca'),
(98840, 81671, 'en', 'name', 'International Institute of Molecular and Cell Biology'),
(98841, 81672, 'en', 'name', 'Domestic Nuclear Detection Office'),
(98842, 81673, 'en', 'name', 'Tennessee Valley Authority'),
(98843, 81674, 'fr', 'name', 'Centre de Linguistique Inter-langues, de Lexicologie, de Linguistique Anglaise et de Corpus-Atelier de Recherche sur la Parole'),
(98844, 81675, 'en', 'name', 'Aerospace Center Hospital'),
(98845, 81675, 'zh', 'name', 'čˆŖå¤©äø­åæƒåŒ»é™¢'),
(98846, 81676, 'ja', 'name', 'ēŸ³åŽŸē”£ę„­ę Ŗå¼ä¼šē¤¾'),
(98847, 81676, 'no_lang_code', 'name', 'Ishihara Sangyo Kaisha (Japan)'),
(98848, 81677, 'en', 'name', 'Gothenburg Natural History Museum'),
(98849, 81677, 'sv', 'name', 'Gƶteborgs Naturhistoriska Museum'),
(98850, 81678, 'no_lang_code', 'name', 'Nitric Oxide Services (United States)'),
(98851, 81679, 'es', 'name', 'Fundación Renacer'),
(98852, 81680, 'no_lang_code', 'name', 'Saaz Genetics (India)'),
(98853, 81681, 'fr', 'name', 'CollĆØge LaflĆØche'),
(98854, 81682, 'en', 'name', 'Northeast Amyotrophic Lateral Sclerosis Consortium'),
(98855, 81683, 'en', 'name', 'NIHR Leeds In Vitro Diagnostics Co-operative'),
(98856, 81684, 'en', 'name', 'Dutch Butterfly Conservation'),
(98857, 81684, 'nl', 'name', 'De Vlinderstichting'),
(98858, 81685, 'az', 'name', 'Azərbaycan Respublikasının Təhsil Institutu'),
(98859, 81685, 'en', 'name', 'Institute of Education of the Republic of Azerbaijan'),
(98860, 81686, 'no_lang_code', 'name', 'California Institute of Behavioral Neurosciences and Psychology (United States)'),
(98861, 81687, 'no_lang_code', 'name', 'LipidALL Technologies (China)'),
(98862, 81687, 'zh', 'name', 'åøøå·žäø­ē§‘č„‚å…øē”Ÿē‰©ęŠ€ęœÆ'),
(98863, 81688, 'fr', 'name', 'HƓpital Saint- Camille'),
(98864, 81689, 'en', 'name', 'Victorian Cancer Biobank'),
(98865, 81690, 'en', 'name', 'Sichuan Provincial Library'),
(98866, 81690, 'zh', 'name', 'å››å·ēœå›¾ä¹¦é¦†'),
(98867, 81691, 'no_lang_code', 'name', 'Sunrise Medical (United States)'),
(98868, 81692, 'en', 'name', 'European Medicines Agency'),
(98869, 81693, 'en', 'name', 'US Climate Variability and Predictability Program'),
(98870, 81694, 'en', 'name', 'Institute for Research in Biomedicine'),
(98871, 81695, 'en', 'name', 'Tibor Rubin VA Medical Center'),
(98872, 81696, 'en', 'name', 'International Centre for Theoretical Physics Asia-Pacific'),
(98873, 81696, 'zh', 'name', 'å›½é™…ē†č®ŗē‰©ē†äø­åæƒ-亚太地区'),
(98874, 81697, 'es', 'name', 'Laboratorio Costarricense de MetrologĆ­a'),
(98875, 81698, 'en', 'name', 'University of Travnik'),
(98876, 81698, 'hr', 'name', 'Univerzitet u Travniku'),
(98877, 81699, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŖć‚¬ć‚Æ'),
(98878, 81699, 'no_lang_code', 'name', 'Rigaku (Japan)'),
(98879, 81700, 'no_lang_code', 'name', 'Ampel BioSolutions (United States)'),
(98880, 81701, 'en', 'name', 'Japan Prize Foundation'),
(98881, 81701, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē§‘å­¦ęŠ€č”“č²”å›£'),
(98882, 81702, 'en', 'name', 'Eastern Finland Laboratory Center'),
(98883, 81702, 'fi', 'name', 'ItƤ-Suomen laboratoriokeskuksen liikelaitoskuntayhtymƤ'),
(98884, 81703, 'en', 'name', 'Environment Agency'),
(98885, 81704, 'en', 'name', 'Municipal Higher Education Institution "Kherson Academy of Continuing Education" of the Kherson Regional Council'),
(98886, 81704, 'uk', 'name', 'Комунальний вищий Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ заклаГ "Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń неперервної освіти" Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠ¾Ń— обласної раГи'),
(98887, 81705, 'de', 'name', 'Institut für Molekulare Biotechnologie'),
(98888, 81705, 'en', 'name', 'Institute of Molecular Biotechnology'),
(98889, 81706, 'be', 'name', 'Š’Š°ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(98890, 81706, 'en', 'name', 'Military Academy of the Republic of Belarus'),
(98891, 81706, 'ru', 'name', 'Š’Š¾ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(98892, 81707, 'no_lang_code', 'name', 'QunaSys'),
(98893, 81708, 'de', 'name', 'Deutsches Forum für Kunstgeschichte Paris'),
(98894, 81708, 'en', 'name', 'German Center for Art History, German Center for Art History Paris'),
(98895, 81708, 'fr', 'name', 'Centre Allemand d''Histoire de l’Art Paris'),
(98896, 81709, 'en', 'name', 'American Petroleum Institute'),
(98897, 81710, 'en', 'name', 'Łukasiewicz Research Network - Textile Research Institute'),
(98898, 81710, 'pl', 'name', 'Sieć Badawczą Łukasiewicz - Instytut Włókiennictwa'),
(98899, 81711, 'ja', 'name', 'ęØŖęµœć‚“ćƒ ę Ŗå¼ä¼šē¤¾'),
(98900, 81711, 'no_lang_code', 'name', 'Yokohama Rubber (Japan)'),
(98901, 81712, 'en', 'name', 'Rippe Health'),
(98902, 81713, 'en', 'name', 'Phenomics Australia'),
(98903, 81714, 'en', 'name', 'Sheng Jing Hospital'),
(98904, 81714, 'zh', 'name', 'äø­å›½åŒ»ē§‘å¤§å­¦é™„å±žē››äŗ¬åŒ»é™¢'),
(98905, 81715, 'en', 'name', 'North Pacific Marine Science Organization'),
(98906, 81716, 'no_lang_code', 'name', 'LinXis Biopharmaceuticals (Netherlands)'),
(98907, 81717, 'de', 'name', 'Hirslanden Klinik Stephanshorn'),
(98908, 81718, 'no_lang_code', 'name', 'Bureau Waardenburg (Netherlands)'),
(98909, 81719, 'en', 'name', 'Flinders Medical Centre'),
(98910, 81720, 'no_lang_code', 'name', 'Sprint PNS System (United States)'),
(98911, 81721, 'es', 'name', 'Observatorio de la Inmigración de Tenerife'),
(98912, 81722, 'en', 'name', 'NHS Research Scotland'),
(98913, 81723, 'en', 'name', 'Kurita Water and Environment Foundation'),
(98914, 81723, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚ÆćƒŖć‚æę°“ćƒ»ē’°å¢ƒē§‘å­¦ęŒÆčˆˆč²”å›£'),
(98915, 81724, 'en', 'name', 'Hartford Foundation for Public Giving'),
(98916, 81725, 'en', 'name', 'CTA Observatory'),
(98917, 81726, 'en', 'name', 'Ilembula Lutheran Hospital'),
(98918, 81727, 'no_lang_code', 'name', 'Kolej Poly-Tech MARA'),
(98919, 81728, 'en', 'name', 'University College of Norwegian Correctional Service'),
(98920, 81728, 'no', 'name', 'Kriminalomsorgens hĆøgskole og utdanningssenter KRUS'),
(98921, 81729, 'de', 'name', 'Fraunhofer-Institut für Photonische Mikrosysteme'),
(98922, 81729, 'en', 'name', 'Fraunhofer Institute for Photonic Microsystems'),
(98923, 81730, 'en', 'name', 'University of Occupational and Environmental Health Japan'),
(98924, 81730, 'ja', 'name', 'ē”£ę„­åŒ»ē§‘å¤§å­¦'),
(98925, 81731, 'en', 'name', 'Toin University of Yokohama'),
(98926, 81731, 'ja', 'name', 'ę”č”­ęØŖęµœå¤§å­¦'),
(98927, 81732, 'en', 'name', 'Academic Pediatric Association'),
(98928, 81733, 'de', 'name', 'Hirslanden Klinik Permanence'),
(98929, 81734, 'en', 'name', 'Guangxi Academy of Agricultural Science'),
(98930, 81734, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗå†œäøšē§‘å­¦é™¢'),
(98931, 81735, 'en', 'name', 'World Wildlife Fund Canada'),
(98932, 81736, 'en', 'name', 'Polish Academy of Sciences Botanical Garden – Center for Biological Diversity Conservation in Powsin'),
(98933, 81736, 'pl', 'name', 'Polska Akademia Nauk Ogród Botaniczny – Centrum Zachowania Różnorodności Biologicznej w Powsinie'),
(98934, 81737, 'en', 'name', 'Songshan Lake Materials Laboratory'),
(98935, 81737, 'zh', 'name', 'ę¾å±±ę¹–ęę–™å®žéŖŒå®¤'),
(98936, 81738, 'en', 'name', 'Convergence Research Center for Diagnosis Treatment and Care System of Dementia'),
(98937, 81739, 'ko', 'name', 'ķŒŒģ“ģ  '),
(98938, 81739, 'no_lang_code', 'name', 'Phyzen (South Korea)'),
(98939, 81740, 'ca', 'name', 'Institut d''Investigació Biomèdica de Girona'),
(98940, 81740, 'en', 'name', 'Biomedical Research Institute of Girona'),
(98941, 81741, 'en', 'name', 'European University Association'),
(98942, 81742, 'en', 'name', 'SME'),
(98943, 81743, 'en', 'name', 'Central Arizona–Phoenix Long Term Ecological Research'),
(98944, 81744, 'en', 'name', 'Scientific Association ICONO 14'),
(98945, 81744, 'es', 'name', 'Asociación científica ICONO 14'),
(98946, 81745, 'en', 'name', 'Canada Health Infoway'),
(98947, 81746, 'es', 'name', 'Instituto Oncológico Henry Moore'),
(98948, 81747, 'en', 'name', 'Hubei University of Arts and Science'),
(98949, 81747, 'zh', 'name', 'ę¹–åŒ—ę–‡ē†å­¦é™¢'),
(98950, 81748, 'no_lang_code', 'name', 'ViewRay (United States)'),
(98951, 81749, 'en', 'name', 'Kenozero National Park'),
(98952, 81749, 'ru', 'name', 'ŠšŠµŠ½Š¾Š·ŠµŃ€ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк'),
(98953, 81750, 'en', 'name', 'Fairfield Medical Center'),
(98954, 81751, 'de', 'name', 'Institut für Forensische Genetik'),
(98955, 81752, 'en', 'name', 'America''s Essential Hospitals'),
(98956, 81753, 'en', 'name', 'Tokyo University of Technology'),
(98957, 81753, 'ja', 'name', 'ę±äŗ¬å·„ē§‘å¤§å­¦'),
(98958, 81754, 'en', 'name', 'Nizhny Novgorod Academy of the Ministry of Internal Affairs of Russia'),
(98959, 81754, 'ru', 'name', 'ŠŠ˜Š–Š•Š“ŠžŠ ŠžŠ”Š”ŠšŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(98960, 81755, 'en', 'name', 'Virtual Library of Virginia'),
(98961, 81756, 'en', 'name', 'California Air Resources Board'),
(98962, 81756, 'es', 'name', 'Junta de Recursos del Aire de California'),
(98963, 81757, 'en', 'name', 'British Cardiovascular Society'),
(98964, 81758, 'en', 'name', 'Christian Sarkine Autism Treatment Center'),
(98965, 81759, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© حفرالباطن'),
(98966, 81759, 'en', 'name', 'University of Hafr Al-Batin'),
(98967, 81760, 'en', 'name', 'Koen Gakuen Women''s Junior College'),
(98968, 81760, 'ja', 'name', 'å…‰å”©å­¦åœ’å„³å­ēŸ­ęœŸå¤§å­¦'),
(98969, 81761, 'en', 'name', 'Research Academic Computer Technology Institute'),
(98970, 81762, 'en', 'name', 'Ministry of Economy'),
(98971, 81762, 'mk', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ за економија'),
(98972, 81763, 'en', 'name', 'Tokushima University Hospital'),
(98973, 81763, 'ja', 'name', '徳島大学病院'),
(98974, 81764, 'en', 'name', 'Josai University'),
(98975, 81764, 'ja', 'name', 'åŸŽč„æå¤§å­¦'),
(98976, 81765, 'fr', 'name', 'Office National de la Chasse et de la Faune Sauvage'),
(98977, 81766, 'en', 'name', 'Brazilian Research in Intensive Care Network'),
(98978, 81766, 'pt', 'name', 'Rede Brasileira de Pesquisa em Terapia Intensiva'),
(98979, 81767, 'en', 'name', 'Russian Foreign Trade Academy'),
(98980, 81767, 'ru', 'name', 'Š’ŃŠµŃ€Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ внешней торговли'),
(98981, 81768, 'no_lang_code', 'name', 'Lundin (Norway)'),
(98982, 81769, 'no_lang_code', 'name', 'Faraday Technology (Taiwan)'),
(98983, 81769, 'zh', 'name', 'ę™ŗåŽŸē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(98984, 81770, 'en', 'name', 'National Economics University'),
(98985, 81770, 'vi', 'name', 'ĐẔi hį»c Kinh tįŗæ Quốc dĆ¢n'),
(98986, 81771, 'no_lang_code', 'name', 'Clover Biopharmaceuticals (China)'),
(98987, 81772, 'no_lang_code', 'name', 'Agrisearch (United Kingdom)'),
(98988, 81773, 'en', 'name', 'Royal Brompton & Harefield NHS Foundation Trust'),
(98989, 81774, 'en', 'name', 'Norwegian Diabetes Association'),
(98990, 81774, 'no', 'name', 'Diabetesforbundet'),
(98991, 81775, 'en', 'name', 'Edward Hines, Jr. VA Hospital'),
(98992, 81776, 'en', 'name', 'European Society of Intensive Care Medicine'),
(98993, 81776, 'fr', 'name', 'SociƩtƩ EuropƩenne de MƩdecine de Soins Intensifs'),
(98994, 81777, 'fr', 'name', 'Laboratoire de Linguistique Formelle'),
(98995, 81778, 'be', 'name', 'Аб''ŃŠ“Š½Š°Š½Ń‹ Ń–Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ ŃŠ½ŠµŃ€Š³ŠµŃ‚Ń‹Ń‡Š½Ń‹Ń… і ŃŠ“Š·ŠµŃ€Š½Ń‹Ń… Š“Š°ŃŠ»ŠµŠ“Š°Š²Š°Š½Š½ŃŃž'),
(98996, 81778, 'en', 'name', 'Joint Institute for Power and Nuclear Research'),
(98997, 81779, 'en', 'name', 'I-Form Advanced Manufacturing Research Centre'),
(98998, 81780, 'en', 'name', 'Boston Collaborative Drug Surveillance Program'),
(98999, 81781, 'en', 'name', 'Borowiec Astrogeodynamic Observatory'),
(99000, 81781, 'pl', 'name', 'Obserwatorium Astrogeodynamiczne w Borówcu'),
(99001, 81782, 'en', 'name', 'Delhi Pharmaceutical Science and Research University'),
(99002, 81783, 'en', 'name', 'Arizona Research Center'),
(99003, 81784, 'en', 'name', 'British Society for Heart Failure'),
(99004, 81785, 'en', 'name', 'Forest History Society'),
(99005, 81786, 'it', 'name', 'Centro Ricerche Musicali'),
(99006, 81787, 'ja', 'name', 'åŒ»ē™‚ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(99007, 81787, 'no_lang_code', 'name', 'Translational Research Informatics Center (Japan)'),
(99008, 81788, 'en', 'name', 'Adolescent Health Clinic'),
(99009, 81789, 'en', 'name', 'GW4 Facility for High-Resolution Electron Cryo-Microscopy'),
(99010, 81790, 'no_lang_code', 'name', 'Elasmo Project'),
(99011, 81791, 'pt', 'name', 'Associação de Assistência à Criança Deficiente'),
(99012, 81792, 'fr', 'name', 'SociƩtƩ FranƧaise de MƩdecine d''Urgence'),
(99013, 81793, 'en', 'name', 'Global Campus of Human Rights'),
(99014, 81794, 'no_lang_code', 'name', 'Cordlife (Singapore)'),
(99015, 81795, 'de', 'name', 'Paracelsus Medizinische PrivatuniversitƤt'),
(99016, 81796, 'no_lang_code', 'name', 'RayBiotech (United States)'),
(99017, 81797, 'no_lang_code', 'name', 'BSH HausgerƤte (Germany)'),
(99018, 81798, 'no_lang_code', 'name', 'Sibel (United States)'),
(99019, 81799, 'en', 'name', 'Rotterdam Stroke Service'),
(99020, 81800, 'en', 'name', 'Slovenian Forestry Institute'),
(99021, 81801, 'de', 'name', 'Musikwissenschaftliches Seminar Detmold/Paderborn'),
(99022, 81802, 'en', 'name', 'Mid America Regional Council'),
(99023, 81803, 'en', 'name', 'Broadlawns Medical Center'),
(99024, 81804, 'en', 'name', 'Hawaii Academy of Science'),
(99025, 81805, 'en', 'name', 'Academy of Management of the Interior Ministry of Russia'),
(99026, 81805, 'ru', 'name', 'ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ Š£ŠŸŠ ŠŠ’Š›Š•ŠŠ˜ŠÆ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š’ŠŠ£Š¢Š Š•ŠŠŠ˜Š„ ДЕЛ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(99027, 81806, 'en', 'name', 'ICAR Research Complex for NEH Region'),
(99028, 81807, 'no_lang_code', 'name', 'Kraken Systems (Croatia)'),
(99029, 81808, 'no_lang_code', 'name', 'Seven Past Nine'),
(99030, 81809, 'en', 'name', 'Simons Center for Geometry and Physics'),
(99031, 81810, 'en', 'name', 'Centre for International Governance Innovation'),
(99032, 81811, 'no_lang_code', 'name', 'GSI Environmental (United States)'),
(99033, 81812, 'no_lang_code', 'name', 'Universal Printing House "Alpha Print" (Russia)'),
(99034, 81812, 'ru', 'name', 'Š£Š½ŠøŠ²ŠµŃ€ŃŠ°Š»ŃŒŠ½Š°Ń Š¢ŠøŠæŠ¾Š³Ń€Š°Ń„ŠøŃ Ā«ŠŠ»ŃŒŃ„Š° ŠŸŃ€ŠøŠ½Ń‚Ā»'),
(99035, 81813, 'no_lang_code', 'name', 'Toyota Motor Corporation (Belgium)'),
(99036, 81814, 'en', 'name', 'Wild Chimpanzee Foundation'),
(99037, 81815, 'en', 'name', 'Qazvin Islamic Azad University'),
(99038, 81815, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł‚Ų²ŁˆŪŒŁ†'),
(99039, 81816, 'en', 'name', 'Massachusetts Audubon Society'),
(99040, 81817, 'no_lang_code', 'name', 'Regen Network (Argentina)'),
(99041, 81818, 'en', 'name', 'ENEA Trisaia Research Centre'),
(99042, 81818, 'it', 'name', 'ENEA Centro Ricerche Trisaia'),
(99043, 81819, 'en', 'name', 'Baruch College'),
(99044, 81820, 'en', 'name', 'Hubrecht Institute for Developmental Biology and Stem Cell Research'),
(99045, 81820, 'nl', 'name', 'Hubrecht-Instituut'),
(99046, 81821, 'en', 'name', 'KidsOR'),
(99047, 81822, 'en', 'name', 'Yanet Health College'),
(99048, 81823, 'en', 'name', 'Medanta The Medicity'),
(99049, 81824, 'en', 'name', 'Romodanov Neurosurgery Institute of the National Academy of Medical Sciences of Ukraine'),
(99050, 81824, 'uk', 'name', 'РомоГанова Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠµŠ¹Ń€Š¾Ń…Ń–Ń€ŃƒŃ€Š³Ń–Ń— ŠŠŠœŠ України'),
(99051, 81825, 'en', 'name', 'Kobe Design University'),
(99052, 81825, 'ja', 'name', 'ē„žęˆøčŠøč”“å·„ē§‘å¤§å­¦'),
(99053, 81826, 'no_lang_code', 'name', 'Symrise (Germany)'),
(99054, 81827, 'en', 'name', 'Zaporizhzhya Institute of Economics and Information Technologies'),
(99055, 81827, 'uk', 'name', 'Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Економіки та Інформаційних Технологій'),
(99056, 81828, 'en', 'name', 'American Academy of Addiction Psychiatry'),
(99057, 81829, 'no_lang_code', 'name', 'Gubra (Denmark)'),
(99058, 81830, 'en', 'name', 'Institute for Economics and Forecasting of the National Academy of Sciences of Ukraine'),
(99059, 81830, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€Ń твенное ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ā€œŠ˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Š½ŠøŃ ŠŠŠ Š£ŠŗŃ€Š°ŠøŠ½Ń‹ā€'),
(99060, 81830, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економіки та ŠæŃ€Š¾Š³Š½Š¾Š·ŃƒŠ²Š°Š½Š½Ń ŠŠŠ Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(99061, 81831, 'en', 'name', 'Shinshu University'),
(99062, 81831, 'ja', 'name', 'äæ”å·žå¤§å­¦'),
(99063, 81832, 'en', 'name', 'Secretariat of the Pacific Regional Environment Programme'),
(99064, 81833, 'en', 'name', 'James H. Quillen VA Medical Center'),
(99065, 81834, 'en', 'name', 'The Steven G. AYA Cancer Research Fund'),
(99066, 81835, 'en', 'name', 'National Autonomous University of Nicaragua-León'),
(99067, 81835, 'es', 'name', 'Universidad Nacional Autónoma de Nicaragua-León'),
(99068, 81836, 'de', 'name', 'Hannoversche Kinderheilanstalt'),
(99069, 81837, 'en', 'name', 'The Korean Urological Association'),
(99070, 81837, 'ko', 'name', 'ėŒ€ķ•œė¹„ė‡Øźø°ź³¼ķ•™ķšŒ'),
(99071, 81838, 'no_lang_code', 'name', 'Arctic Slope Regional (United States)'),
(99072, 81839, 'en', 'name', 'Ovarian Cancer Canada'),
(99073, 81839, 'fr', 'name', 'Cancer de l''Ovaire Canada'),
(99074, 81840, 'en', 'name', 'Federal University of Catalao'),
(99075, 81840, 'pt', 'name', 'Universidade Federal de Catalão'),
(99076, 81841, 'en', 'name', 'Borno State University'),
(99077, 81842, 'en', 'name', 'T.H. Shevchenko National University "Chernihiv Colehium"'),
(99078, 81842, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ńƒ "Š§ŠµŃ€Š½Ń–Š³Ń–Š²ŃŃŒŠŗŃ–Š¹ ŠŗŠ¾Š»ŠµŠ³Ń–ŃƒŠ¼" імені Š¢.Š“. Шевченка'),
(99079, 81843, 'de', 'name', 'Deutsches Historisches Institut London'),
(99080, 81843, 'en', 'name', 'German Historical Institute London'),
(99081, 81844, 'en', 'name', 'Missile Defense Agency'),
(99082, 81845, 'it', 'name', 'Regione Siciliana'),
(99083, 81846, 'it', 'name', 'Polo d’Innovazione di Genomica'),
(99084, 81847, 'en', 'name', 'China Academy of Space Technology'),
(99085, 81847, 'zh', 'name', 'äø­å›½ē©ŗé—“ęŠ€ęœÆē ”ē©¶é™¢'),
(99086, 81848, 'en', 'name', 'National Center of Neurology and Psychiatry'),
(99087, 81848, 'ja', 'name', 'ē„žēµŒē²¾ē„žåŒ»å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(99088, 81849, 'no_lang_code', 'name', 'Evon (Austria)'),
(99089, 81850, 'no_lang_code', 'name', 'Parallel Quantum Solutions (United States)'),
(99090, 81851, 'en', 'name', 'Wirral Community Health and Care NHS Foundations Trust'),
(99091, 81852, 'en', 'name', 'Moscow Automobile and Road Construction State Technical University'),
(99092, 81852, 'ru', 'name', 'Московский Š°Š²Ń‚Š¾Š¼Š¾Š±ŠøŠ»ŃŒŠ½Š¾-Горожный Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99093, 81853, 'en', 'name', 'The Family Centre'),
(99094, 81854, 'en', 'name', 'Portsmouth Public Library'),
(99095, 81855, 'en', 'name', 'San Francisco Estuary Institute'),
(99096, 81856, 'en', 'name', 'Migration Institute of Finland'),
(99097, 81856, 'fi', 'name', 'Siirtolaisuusinstituutti'),
(99098, 81857, 'en', 'name', 'Netherlands Graduate Research School of Science, Technology and Modern Culture'),
(99099, 81858, 'en', 'name', 'Łukasiewicz Research Network - Institute of Non-Ferrous Metals'),
(99100, 81858, 'pl', 'name', 'Sieć Badawcza Łukasiewicz – Instytut Metali Nieżelaznych'),
(99101, 81859, 'no_lang_code', 'name', 'University of Peradeniya'),
(99102, 81859, 'si', 'name', 'ą¶“ą·šą¶»ą·ą¶Æą·™ą¶«ą·’ą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(99103, 81859, 'ta', 'name', 'ą®ŖąÆ‡ą®°ą®¾ą®¤ą®©ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(99104, 81860, 'en', 'name', 'Asahikawa Medical University'),
(99105, 81860, 'ja', 'name', 'ę—­å·åŒ»ē§‘å¤§å­¦'),
(99106, 81861, 'en', 'name', 'Indiana Department of Transportation'),
(99107, 81862, 'no_lang_code', 'name', 'Verlab (Bosnia and Herzegovina)'),
(99108, 81863, 'no_lang_code', 'name', 'Human Factors (Norway)'),
(99109, 81864, 'en', 'name', 'American Society for Biochemistry and Molecular Biology'),
(99110, 81865, 'no_lang_code', 'name', 'FrieslandCampina (Netherlands)'),
(99111, 81866, 'en', 'name', 'National Clonal Germplasm Repository for Citrus'),
(99112, 81867, 'en', 'name', 'Geological Survey of Namibia'),
(99113, 81868, 'en', 'name', 'Meteorological Service Singapore'),
(99114, 81869, 'no_lang_code', 'name', 'IBM (Canada)'),
(99115, 81870, 'no_lang_code', 'name', 'SK Life Science (United States)'),
(99116, 81871, 'en', 'name', 'Berlin Center for Genomics in Biodiversity Research'),
(99117, 81872, 'en', 'name', 'Northwest General Hospital and Research Center'),
(99118, 81873, 'de', 'name', 'Aids-Hilfe Schweiz'),
(99119, 81873, 'en', 'name', 'Swiss AIDS Federation'),
(99120, 81874, 'no_lang_code', 'name', 'Electro Scientific Industries (United States)'),
(99121, 81875, 'en', 'name', 'Astrogeology Science Center'),
(99122, 81876, 'en', 'name', 'Wisconsin Academy of Sciences, Arts & Letters'),
(99123, 81877, 'en', 'name', 'Canadian Institute for Theoretical Astrophysics'),
(99124, 81877, 'fr', 'name', 'Institut canadien d''astrophysique thƩorique'),
(99125, 81878, 'en', 'name', 'Inception Institute of Artificial Intelligence'),
(99126, 81879, 'ja', 'name', 'å¤§åž£åø‚ę°‘ē—…é™¢'),
(99127, 81879, 'no_lang_code', 'name', 'Ogaki Municipal Hospital'),
(99128, 81880, 'en', 'name', 'Mataram College of Health Sciences'),
(99129, 81880, 'id', 'name', 'Sekolah Tinggi Ilmu Kesehatan (STIKES) Mataram'),
(99130, 81881, 'no_lang_code', 'name', 'Scispace (United States)'),
(99131, 81882, 'en', 'name', 'St. Bonaventure University'),
(99132, 81882, 'es', 'name', 'Universidad de San Buenaventura'),
(99133, 81882, 'fr', 'name', 'UniversitƩ de st. bonaventure'),
(99134, 81883, 'no_lang_code', 'name', 'ESI Group (Switzerland)'),
(99135, 81884, 'en', 'name', 'National Intercultural University of the Central Jungle Juan Santos Atahualpa'),
(99136, 81884, 'es', 'name', 'Universidad Nacional Intercultural de la Selva Central Juan Santos Atahualpa'),
(99137, 81885, 'en', 'name', 'International Federation of Library Associations and Institutions'),
(99138, 81886, 'en', 'name', 'Bruce Museum'),
(99139, 81887, 'en', 'name', 'Ministry of Climate and Environment'),
(99140, 81887, 'no', 'name', 'Klima- og miljĆødepartementet'),
(99141, 81888, 'en', 'name', 'Ministry of Agriculture'),
(99142, 81888, 'hu', 'name', 'AgrƔrminisztƩrium'),
(99143, 81889, 'en', 'name', 'Andrews Forest Long Term Ecological Research'),
(99144, 81890, 'en', 'name', 'Center for Scientific and Technical Study of Aquitaine'),
(99145, 81890, 'fr', 'name', 'Centre d''Ɖtudes Scientifiques et Techniques d''Aquitaine, Centre d''Ć©tudes Scientifiques et Techniques d''Aquitaine'),
(99146, 81891, 'en', 'name', 'Republican Center for Healthcare Development'),
(99147, 81891, 'kk', 'name', 'Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°Š»Ń‹Ņ› Š“ŠµŠ½ŃŠ°ŃƒŠ»Ń‹Ņ› ŃŠ°Ņ›Ń‚Š°Ńƒ орталығы'),
(99148, 81892, 'en', 'name', 'Greater Worcester Community Foundation'),
(99149, 81893, 'en', 'name', 'Chiba East Hospital'),
(99150, 81893, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹åƒč‘‰ę±ē—…é™¢'),
(99151, 81894, 'en', 'name', 'National Center for Cool and Cold Water Aquaculture'),
(99152, 81895, 'no_lang_code', 'name', 'Boehringer Ingelheim (Austria)'),
(99153, 81896, 'en', 'name', 'Virginia Department of Game and Inland Fisheries'),
(99154, 81897, 'en', 'name', 'Kaohsiung Armed Forces General Hospital'),
(99155, 81898, 'en', 'name', 'Harbin Normal University'),
(99156, 81898, 'zh', 'name', 'å“ˆå°”ę»ØåøˆčŒƒå¤§å­¦'),
(99157, 81899, 'no_lang_code', 'name', 'Motorpharma (Hungary)'),
(99158, 81900, 'en', 'name', 'Uro Care Hospital'),
(99159, 81901, 'en', 'name', 'Defence Materiel Administration'),
(99160, 81901, 'sv', 'name', 'Fƶrsvarets materielverk'),
(99161, 81902, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¾³å³¶ēœŒé³“é–€ē—…é™¢'),
(99162, 81902, 'no_lang_code', 'name', 'Naruto, Tokushima Prefecture hospital'),
(99163, 81903, 'en', 'name', 'World Cancer Research Fund International'),
(99164, 81904, 'en', 'name', 'Hyderabad Rheumatology Center'),
(99165, 81905, 'en', 'name', 'Federal Railroad Administration'),
(99166, 81906, 'el', 'name', 'ĪĪµĻ…ĻĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(99167, 81906, 'en', 'name', 'Neurological Institute of Athens'),
(99168, 81907, 'en', 'name', 'Open Data Commons for Spinal Cord Injury'),
(99169, 81908, 'en', 'name', 'People''s Government of Guangzhou Municipality'),
(99170, 81908, 'zh', 'name', 'å¹æå·žåø‚ę”æåŗœ'),
(99171, 81909, 'en', 'name', 'Janbazan Medical and Engineering Research Center'),
(99172, 81909, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ł…Ł‡Ł†ŲÆŲ³ŪŒ و Ų¹Ł„ŁˆŁ… پزؓکی جانبازان'),
(99173, 81910, 'en', 'name', 'Computer Research Institute of MontrƩal'),
(99174, 81910, 'fr', 'name', 'Centre De Recherche Informatique De MontrƩal'),
(99175, 81911, 'en', 'name', 'Shandong Center for Disease Control and Prevention'),
(99176, 81912, 'en', 'name', 'Nizhny Novgorod Research Institute of Traumatology and Orthopedics'),
(99177, 81912, 'ru', 'name', 'ŠŸŃ€ŠøŠ²Š¾Š»Š¶ŃŠŗŠøŠ¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр'),
(99178, 81913, 'en', 'name', 'Leiden University'),
(99179, 81913, 'nl', 'name', 'Universiteit Leiden'),
(99180, 81914, 'en', 'name', 'St John New Zealand'),
(99181, 81915, 'id', 'name', 'Universitas Islam Negeri Raden Intan Lampung'),
(99182, 81916, 'en', 'name', 'Petrozavodsk State Glazunov Conservatory'),
(99183, 81916, 'ru', 'name', 'ŠŸŠµŃ‚Ń€Š¾Š·Š°Š²Š¾Š“ŃŠŗŠ°Ń Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠšŠ¾Š½ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ им. А.К. Š“Š»Š°Š·ŃƒŠ½Š¾Š²Š°'),
(99184, 81917, 'no_lang_code', 'name', 'WuXi AppTec (United States)'),
(99185, 81918, 'en', 'name', 'Ellen MacArthur Foundation'),
(99186, 81919, 'en', 'name', 'Japanese Society for Dialysis Therapy'),
(99187, 81919, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é€ęžåŒ»å­¦ä¼š'),
(99188, 81920, 'no_lang_code', 'name', 'Duality (United States)'),
(99189, 81921, 'pt', 'name', 'IPO Porto'),
(99190, 81922, 'en', 'name', 'Michigan Center for Translational Pathology'),
(99191, 81923, 'nl', 'name', 'Canisius-Wilhelmina Ziekenhuis'),
(99192, 81924, 'en', 'name', 'International Water Association'),
(99193, 81925, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øćƒ¼ćƒ³ć‚±ć‚¢ē ”ē©¶ę‰€'),
(99194, 81925, 'no_lang_code', 'name', 'GeneCare Research Institute (Japan)'),
(99195, 81926, 'en', 'name', 'Institute for Poverty, Land and Agrarian Studies'),
(99196, 81927, 'en', 'name', 'Loch Raven VA Medical Center'),
(99197, 81928, 'en', 'name', 'Open University of Israel'),
(99198, 81929, 'en', 'name', 'Houston Methodist'),
(99199, 81930, 'de', 'name', 'Rheumaliga Schweiz'),
(99200, 81931, 'en', 'name', 'Science for All'),
(99201, 81932, 'en', 'name', 'Ngogo Chimpanzee Project'),
(99202, 81933, 'en', 'name', 'American Academy of Ophthalmology'),
(99203, 81934, 'en', 'name', 'Texas A&M International University'),
(99204, 81934, 'es', 'name', 'Universidad Internacional de Texas A&M'),
(99205, 81935, 'no_lang_code', 'name', 'ARAconsult (Austria)'),
(99206, 81936, 'en', 'name', 'Institute of International Affairs'),
(99207, 81936, 'it', 'name', 'Istituto Affari Internazionali'),
(99208, 81937, 'en', 'name', 'University Canada West'),
(99209, 81938, 'en', 'name', 'Stolby Nature Reserve'),
(99210, 81938, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник ā€œŠ”Ń‚Š¾Š»Š±Ń‹ā€'),
(99211, 81939, 'en', 'name', 'Aja University of Medical Sciences'),
(99212, 81939, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų¢Ų¬Ų§'),
(99213, 81940, 'en', 'name', 'University of Tsukuba Hospital'),
(99214, 81940, 'ja', 'name', 'ē­‘ę³¢å¤§å­¦é™„å±žē—…é™¢'),
(99215, 81941, 'en', 'name', 'Childhood Eye Cancer Trust'),
(99216, 81942, 'ja', 'name', 'SBIćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(99217, 81942, 'no_lang_code', 'name', 'SBI Pharmaceuticals (Japan)'),
(99218, 81943, 'en', 'name', 'Aga Khan Development Network'),
(99219, 81944, 'no_lang_code', 'name', 'Impulse Dynamics (United States)'),
(99220, 81945, 'en', 'name', 'Mahavir Cancer Institute and Research Centre'),
(99221, 81946, 'fr', 'name', 'Laboratoire de Chimie et Biochimie Pharmacologiques et Toxicologiques'),
(99222, 81947, 'no_lang_code', 'name', 'BioPhorum (United Kingdom)'),
(99223, 81948, 'en', 'name', 'Alvin C. York VA Medical Center'),
(99224, 81949, 'es', 'name', 'Instituto Nacional de MetrologĆ­a de Colombia'),
(99225, 81950, 'en', 'name', 'European Society of Human Reproduction and Embryology'),
(99226, 81951, 'no', 'name', 'Unicare'),
(99227, 81952, 'en', 'name', 'National Meteorological Service'),
(99228, 81952, 'es', 'name', 'Servicio Meteorológico Nacional'),
(99229, 81953, 'en', 'name', 'Mukachevo State University'),
(99230, 81953, 'uk', 'name', 'ŠœŃƒŠŗŠ°Ń‡Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99231, 81954, 'en', 'name', 'Island Conservation Society'),
(99232, 81955, 'de', 'name', 'Tirol Kliniken'),
(99233, 81956, 'en', 'name', 'Isfahan Fertility and Infertility Center'),
(99234, 81956, 'fa', 'name', 'مرکز باروری و Ł†Ų§ŲØŲ§Ų±ŁˆŲ±ŪŒ اصفهان'),
(99235, 81957, 'de', 'name', 'Landesamt für Bergbau, Energie und Geologie'),
(99236, 81958, 'en', 'name', 'National Centre for Pharmacoeconomics'),
(99237, 81959, 'no_lang_code', 'name', 'Castings Technology International'),
(99238, 81960, 'en', 'name', 'Japan Chemical Innovation and Inspection Institute'),
(99239, 81960, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ–å­¦ē ”ē©¶č©•ä¾”ę©Ÿę§‹'),
(99240, 81961, 'no_lang_code', 'name', 'Aptiv (United States)'),
(99241, 81962, 'en', 'name', 'Park Terrace Care Center'),
(99242, 81963, 'en', 'name', 'Chinese Institute for Brain Research'),
(99243, 81963, 'zh', 'name', 'åŒ—äŗ¬č„‘ē§‘å­¦äøŽē±»č„‘ē ”ē©¶äø­åæƒ'),
(99244, 81964, 'en', 'name', 'Indian Creek Farm'),
(99245, 81965, 'en', 'name', 'The Jane Goodall Institute'),
(99246, 81966, 'en', 'name', 'Centre in Green Chemistry and Catalysis'),
(99247, 81967, 'en', 'name', 'National Tropical Botanical Garden'),
(99248, 81968, 'en', 'name', 'Sapporo Kosei General Hospital'),
(99249, 81968, 'ja', 'name', 'JAåŒ—ęµ·é“åŽšē”Ÿé€£ęœ­å¹ŒåŽšē”Ÿē—…é™¢'),
(99250, 81969, 'no_lang_code', 'name', 'International Water Association Publishing'),
(99251, 81970, 'ja', 'name', 'åÆå…ćØć†ć®ć†ē—…é™¢'),
(99252, 81970, 'no_lang_code', 'name', 'Kani Tono Hospital'),
(99253, 81971, 'en', 'name', 'National Institute of Technology, Akashi College'),
(99254, 81971, 'ja', 'name', 'ę˜ŽēŸ³å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(99255, 81972, 'no_lang_code', 'name', 'Opty'),
(99256, 81973, 'en', 'name', 'Centre for Southern Hemisphere Oceans Research'),
(99257, 81974, 'de', 'name', 'Forschungsinstitut zur Zukunft der Arbeit GmbH (IZA)'),
(99258, 81974, 'en', 'name', 'IZA - Institute of Labor Economics'),
(99259, 81975, 'en', 'name', 'University of Darussalam Gontor'),
(99260, 81975, 'id', 'name', 'Universitas Darussalam Gontor'),
(99261, 81976, 'no_lang_code', 'name', 'Antaros Medical (Sweden)'),
(99262, 81977, 'en', 'name', 'HCA International Foundation'),
(99263, 81978, 'en', 'name', 'Canadian Museum of Nature'),
(99264, 81978, 'fr', 'name', 'MusƩe Canadien de la nature'),
(99265, 81979, 'fr', 'name', 'Centre National en Ɖlectrochimie et en Technologies Environnementales'),
(99266, 81980, 'en', 'name', 'Jeanes Hospital'),
(99267, 81981, 'en', 'name', 'Biomedical Advanced Research and Development Authority'),
(99268, 81982, 'en', 'name', 'Society for the Study of Amphibians and Reptiles'),
(99269, 81983, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ηλεκτρονικής Δομής και Λέιζερ'),
(99270, 81983, 'en', 'name', 'FORTH Institute of Electronic Structure and Laser'),
(99271, 81984, 'no_lang_code', 'name', 'Metrohm Dropsens (Spain)'),
(99272, 81985, 'en', 'name', 'Fortune Institute of International Business'),
(99273, 81986, 'en', 'name', 'Peter MacCallum Cancer Centre'),
(99274, 81987, 'no_lang_code', 'name', 'Epistem (United Kingdom)'),
(99275, 81988, 'en', 'name', 'Wits University Donald Gordon Medical Centre'),
(99276, 81989, 'no_lang_code', 'name', 'Roivant Sciences (Switzerland)'),
(99277, 81990, 'no_lang_code', 'name', 'Eisbach Bio (Germany)'),
(99278, 81991, 'en', 'name', 'Craig Newmark Graduate School of Journalism at the City University of New York'),
(99279, 81992, 'en', 'name', 'Texas Academy of Science');
INSERT INTO `ror_settings` VALUES
(99280, 81993, 'en', 'name', 'Cancer Research Institute Ghent'),
(99281, 81994, 'no_lang_code', 'name', 'Estonian Environmental Research Center (Estonia)'),
(99282, 81995, 'en', 'name', 'Misawa City Hospital'),
(99283, 81995, 'ja', 'name', '三沢市立三沢病院'),
(99284, 81996, 'en', 'name', 'Louisiana State Department of Health and Hospitals'),
(99285, 81997, 'en', 'name', 'Association for the Development of Earthquake Prediction'),
(99286, 81997, 'ja', 'name', 'åœ°éœ‡äŗˆēŸ„ē·åˆē ”ē©¶ęŒÆčˆˆä¼š'),
(99287, 81998, 'en', 'name', 'Continental Scientific Drilling Facility'),
(99288, 81999, 'en', 'name', 'International Trade Administration'),
(99289, 82000, 'en', 'name', 'Bacha Khan University'),
(99290, 82001, 'id', 'name', 'Balai Arkeologi Sulawesi Selatan'),
(99291, 82002, 'ja', 'name', 'äø‰č±é‡å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(99292, 82002, 'no_lang_code', 'name', 'Mitsubishi Heavy Industries (Japan)'),
(99293, 82003, 'en', 'name', 'European Biomedical Research Institute of Salerno'),
(99294, 82004, 'en', 'name', 'University of Monterrey'),
(99295, 82004, 'es', 'name', 'Universidad de Monterrey'),
(99296, 82005, 'no_lang_code', 'name', 'Resolve Therapeutics (United States)'),
(99297, 82006, 'en', 'name', 'WaterAid'),
(99298, 82007, 'en', 'name', 'National Research Center for Preventive Medicine'),
(99299, 82007, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр ŠŸŃ€Š¾Ń„ŠøŠ»Š°ŠŗŃ‚ŠøŃ‡ŠµŃŠŗŠ¾Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½Ń‹'),
(99300, 82008, 'no_lang_code', 'name', 'Rydberg (United States)'),
(99301, 82009, 'en', 'name', 'Mid-America Transportation Center'),
(99302, 82010, 'en', 'name', 'Hexi University'),
(99303, 82010, 'zh', 'name', '河脿学院'),
(99304, 82011, 'ja', 'name', 'å¤§é˜ŖęŽ–ęøˆä¼šē—…é™¢'),
(99305, 82011, 'no_lang_code', 'name', 'Osaka Ekisaikai Hospital'),
(99306, 82012, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚«ćƒ³ē ”ē©¶ę‰€'),
(99307, 82012, 'no_lang_code', 'name', 'KAN Research Institute'),
(99308, 82013, 'en', 'name', 'Olyokma Nature Reserve'),
(99309, 82013, 'ru', 'name', 'ФГБУ Ā«Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник Ā«ŠžŠ»Ń‘ŠŗŠ¼ŠøŠ½ŃŠŗŠøŠ¹Ā»'),
(99310, 82014, 'en', 'name', 'Wigmore Hall'),
(99311, 82015, 'en', 'name', 'Eternal Hospital'),
(99312, 82016, 'en', 'name', 'Gallaudet University'),
(99313, 82017, 'en', 'name', 'Palau International Coral Reef Center'),
(99314, 82018, 'no_lang_code', 'name', 'Wessex Academic Health Science Network (United Kingdom)'),
(99315, 82019, 'ja', 'name', 'ćƒ”ć‚æć‚¦ć‚©ćƒ¼ć‚æ'),
(99316, 82019, 'no_lang_code', 'name', 'Metawater (Japan)'),
(99317, 82020, 'en', 'name', 'Neijiang Normal University'),
(99318, 82020, 'zh', 'name', 'å†…ę±ŸåøˆčŒƒå­¦é™¢'),
(99319, 82021, 'en', 'name', 'Ministry of Jobs, Economic Recovery and Innovation'),
(99320, 82022, 'no_lang_code', 'name', 'Catalyst Biosciences (United States)'),
(99321, 82023, 'no_lang_code', 'name', 'MEI Pharma (United States)'),
(99322, 82024, 'no_lang_code', 'name', 'Betasciencepress Publishing'),
(99323, 82025, 'en', 'name', 'Waikato Institute of Technology'),
(99324, 82026, 'en', 'name', 'Millennium Nucleus of Ion Channel Associated Diseases'),
(99325, 82026, 'es', 'name', 'Núcleo Milenio de Enfermedades Asociadas a Canales iónicos'),
(99326, 82027, 'en', 'name', 'Guangzhou Development Zone Hospital'),
(99327, 82027, 'zh', 'name', 'å¹æå·žå¼€å‘åŒŗåŒ»é™¢'),
(99328, 82028, 'en', 'name', 'VIB-KU Leuven Center for Microbiology'),
(99329, 82029, 'en', 'name', 'Homi Bhabha National Institute'),
(99330, 82029, 'hi', 'name', 'ą¤¹ą„‹ą¤®ą„€ भाभा ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(99331, 82029, 'ta', 'name', 'ஹோமி பாபா ą®Øą®æą®•ą®°ąÆ ą®Øą®æą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(99332, 82030, 'no_lang_code', 'name', 'BioClinicum (Russia)'),
(99333, 82031, 'en', 'name', 'Hiroshima Institute of Technology'),
(99334, 82031, 'ja', 'name', '広島巄愭大学'),
(99335, 82032, 'en', 'name', 'Guangzhou First People''s Hospital'),
(99336, 82032, 'zh', 'name', 'å¹æå·žåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(99337, 82033, 'cs', 'name', 'Fakultní nemocnice Plzeň'),
(99338, 82033, 'en', 'name', 'University Hospital Plzen'),
(99339, 82034, 'no_lang_code', 'name', 'Google (Israel)'),
(99340, 82035, 'en', 'name', 'National Rehabilitation Institute of "Dra. Adriana Rebaza Flores" Peru-Japan Friendship'),
(99341, 82035, 'es', 'name', 'Instituto Nacional de Rehabilitación de "Dra. Adriana Rebaza Flores" Amistad Perú-Japón'),
(99342, 82036, 'fr', 'name', 'Institut Jacques Monod'),
(99343, 82037, 'en', 'name', 'National Museum of 21st Century Arts'),
(99344, 82037, 'it', 'name', 'Museo Nazionale delle Arti del XXI Secolo'),
(99345, 82038, 'en', 'name', 'Systems Biology Institute'),
(99346, 82038, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗć‚·ć‚¹ćƒ†ćƒ ćƒ»ćƒć‚¤ć‚Ŗćƒ­ć‚øćƒ¼ē ”ē©¶ę©Ÿę§‹'),
(99347, 82039, 'no_lang_code', 'name', 'Apexigen (United States)'),
(99348, 82040, 'no_lang_code', 'name', 'Beijing Institute of Radio Metrology and Measurement'),
(99349, 82040, 'zh', 'name', 'åŒ—äŗ¬ę— ēŗæē”µęµ‹é‡ē ”ē©¶ę‰€'),
(99350, 82041, 'en', 'name', 'Donbas National Academy of Civil Engineering and Architecture - Kramatorsk'),
(99351, 82041, 'uk', 'name', 'Š”Š¾Š½Š±Š°ŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° і Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(99352, 82042, 'en', 'name', 'Standards, Productivity and Innovation Board'),
(99353, 82042, 'zh', 'name', '标新局'),
(99354, 82043, 'en', 'name', 'European Bioinformatics Institute'),
(99355, 82044, 'no_lang_code', 'name', 'Fluid Gravity Engineering (United Kingdom)'),
(99356, 82045, 'am', 'name', 'įŠ į‹³įˆ› įˆ³į‹­įŠ•įˆµįŠ“ į‰“įŠ­įŠ–įˆŽįŒ‚ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(99357, 82045, 'en', 'name', 'Adama Science and Technology University'),
(99358, 82046, 'it', 'name', 'La Fondazione Ettore Sansavini per la Ricerca Scientifica'),
(99359, 82047, 'en', 'name', 'University of Sudbury'),
(99360, 82047, 'fr', 'name', 'UniversitƩ de Sudbury'),
(99361, 82048, 'ja', 'name', 'ćƒćƒ³ćƒ‰ćƒ¼åŒ–å­¦ę Ŗå¼ä¼šē¤¾'),
(99362, 82048, 'no_lang_code', 'name', 'Bando Chemical Industries (Japan)'),
(99363, 82049, 'no_lang_code', 'name', 'Medela (Switzerland)'),
(99364, 82050, 'en', 'name', 'Institute of Remote Sensing and Digital Earth'),
(99365, 82050, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åÆ¹åœ°č§‚ęµ‹äøŽę•°å­—åœ°ēƒē§‘å­¦äø­åæƒ'),
(99366, 82051, 'en', 'name', 'National Institute of Technology, Kure College'),
(99367, 82051, 'ja', 'name', 'å‘‰å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(99368, 82052, 'en', 'name', 'Steel Foundation for Environmental Protection Technology'),
(99369, 82052, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé‰„é‹¼ē’°å¢ƒåŸŗé‡‘'),
(99370, 82053, 'ar', 'name', 'منظمة ŲÆŁˆŁ„ ؓرق البحر Ų§Ł„ŁƒŲ§Ų±ŁŠŲØŁŠ'),
(99371, 82053, 'en', 'name', 'Organisation of Eastern Caribbean States'),
(99372, 82053, 'es', 'name', 'Organisation des Ɖtats de la CaraĆÆbe Orientale'),
(99373, 82054, 'en', 'name', 'Sendai Medical Center'),
(99374, 82054, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ä»™å°åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(99375, 82055, 'en', 'name', 'Northland Polytechnic'),
(99376, 82056, 'en', 'name', 'Korea University Medical Center'),
(99377, 82056, 'ko', 'name', 'ź³ ė ¤ėŒ€ķ•™źµ ģ˜ė£Œģ›'),
(99378, 82057, 'en', 'name', 'Riddle Hospital'),
(99379, 82058, 'de', 'name', 'Bundesamt für Landestopografie swisstopo'),
(99380, 82058, 'en', 'name', 'Federal Office of Topography swisstopo'),
(99381, 82058, 'fr', 'name', 'Office fƩdƩral de topographie swisstopo'),
(99382, 82058, 'it', 'name', 'Ufficio federale di topografia swisstopo'),
(99383, 82059, 'en', 'name', 'Genomic and Immunotherapy Medical Institute'),
(99384, 82060, 'en', 'name', 'Hopp Children''s Cancer Center Heidelberg'),
(99385, 82061, 'en', 'name', 'Shupyk National Healthcare University of Ukraine'),
(99386, 82061, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ охорони зГоров''я України імені П. Š›. Шупика'),
(99387, 82062, 'en', 'name', 'Chongqing University of Education'),
(99388, 82062, 'zh', 'name', 'é‡åŗ†ę•™č‚²å¤§å­¦'),
(99389, 82063, 'en', 'name', 'Nippon Sheet Glass Foundation for Materials Science and Engineering'),
(99390, 82063, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęæē”å­ęę–™å·„å­¦åŠ©ęˆä¼š'),
(99391, 82064, 'en', 'name', 'Durham VA Health Care System'),
(99392, 82065, 'en', 'name', 'Agricultural Research Service'),
(99393, 82066, 'no_lang_code', 'name', 'Gastro One (United States)'),
(99394, 82067, 'en', 'name', 'Chinese University of Hong Kong, Shenzhen'),
(99395, 82067, 'zh', 'name', '香港中文大學 (深圳)'),
(99396, 82068, 'no_lang_code', 'name', 'Oroboros Instruments (Austria)'),
(99397, 82069, 'no_lang_code', 'name', 'Tiande (China)'),
(99398, 82069, 'zh', 'name', 'å¤©å¾·ē§‘ęŠ€'),
(99399, 82070, 'en', 'name', 'Latin American and Caribbean Society of Medical Oncology'),
(99400, 82070, 'es', 'name', 'Sociedad Latinoamericana y del Caribe de Oncologƭa MƩdica'),
(99401, 82071, 'el', 'name', 'Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĪæĪ½Ī¹ĪŗĻŒ και Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Πάρκο ĪšĻĪ®Ļ„Ī·Ļ‚'),
(99402, 82071, 'en', 'name', 'Science and Technology Park of Crete'),
(99403, 82072, 'en', 'name', 'International Breast Cancer Research Foundation'),
(99404, 82073, 'en', 'name', 'Belgian Health Care Knowledge Centre'),
(99405, 82073, 'fr', 'name', 'Centre fƩdƩral d''expertise des soins de santƩ'),
(99406, 82073, 'nl', 'name', 'Federaal Kenniscentrum voor de Gezondheidszorg'),
(99407, 82074, 'en', 'name', 'Yamaguchi University Hospital'),
(99408, 82074, 'ja', 'name', 'å±±å£å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(99409, 82075, 'en', 'name', 'Novartis-MIT Center for Continuous Manufacturing'),
(99410, 82076, 'en', 'name', 'Lethbridge-Layton-Mackay Rehabilitation Centre'),
(99411, 82076, 'fr', 'name', 'Centre de rƩadaptation Lethbridge-Layton-Mackay'),
(99412, 82077, 'es', 'name', 'Fundación Juan March'),
(99413, 82078, 'en', 'name', 'Barasat Government College'),
(99414, 82079, 'en', 'name', 'Higashi Osaka City General Hospital'),
(99415, 82079, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåø‚ē«‹ę±å¤§é˜ŖåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(99416, 82080, 'en', 'name', 'Tochigi Prefectural Fisheries Experimental Station'),
(99417, 82080, 'ja', 'name', 'ę ƒęœØēœŒę°“ē”£č©¦éØ“å “'),
(99418, 82081, 'es', 'name', 'Universidad Autónoma de Occidente'),
(99419, 82082, 'en', 'name', 'Plum Island Animal Disease Center'),
(99420, 82083, 'en', 'name', 'Cambodia-Oxford Medical Research Unit'),
(99421, 82084, 'en', 'name', 'National Children''s Bureau'),
(99422, 82085, 'en', 'name', 'University of Shiga Prefecture'),
(99423, 82085, 'ja', 'name', 'ę»‹č³€ēœŒē«‹å¤§å­¦'),
(99424, 82086, 'en', 'name', 'Gunma Astronomical Observatory'),
(99425, 82086, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹ćć‚“ć¾å¤©ę–‡å°'),
(99426, 82087, 'en', 'name', 'Central Forest Nature Reserve'),
(99427, 82087, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾-Лесной заповеГник'),
(99428, 82088, 'en', 'name', 'Saving the Blue'),
(99429, 82089, 'en', 'name', 'Wild Nature Institute'),
(99430, 82090, 'en', 'name', 'Search for Extraterrestrial Intelligence'),
(99431, 82091, 'en', 'name', 'Swedish National Board of Forensic Medicine'),
(99432, 82092, 'en', 'name', 'Challenger Society for Marine Science'),
(99433, 82093, 'en', 'name', 'Mudanjiang Normal University'),
(99434, 82093, 'zh', 'name', 'ē‰”äø¹ę±ŸåøˆčŒƒå­¦é™¢'),
(99435, 82094, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ADEKA'),
(99436, 82094, 'no_lang_code', 'name', 'Adeka (Japan)'),
(99437, 82095, 'en', 'name', 'Lithuanian Centre for Social Sciences'),
(99438, 82095, 'lt', 'name', 'Lietuvos socialiniu mokslu centras'),
(99439, 82096, 'no_lang_code', 'name', 'Aquinnah (United States)'),
(99440, 82097, 'en', 'name', 'LupusChat'),
(99441, 82098, 'no_lang_code', 'name', 'Harbour BioMed (Netherlands)'),
(99442, 82099, 'en', 'name', 'American University in Cairo New York Office'),
(99443, 82100, 'no_lang_code', 'name', 'Melinta Therapeutics (United States)'),
(99444, 82101, 'en', 'name', 'Nosivska Breeding And Research Station'),
(99445, 82101, 'uk', 'name', 'ŠŠ¾ŃŃ–Š²ŃŃŒŠŗŠ° селекційно-ГосліГна ŃŃ‚Š°Š½Ń†Ń–Ń'),
(99446, 82102, 'en', 'name', 'National Defense Medical College'),
(99447, 82102, 'ja', 'name', 'é˜²č”›ēœé˜²č”›åŒ»ē§‘å¤§å­¦ę ”'),
(99448, 82103, 'en', 'name', 'Vikram Hospital'),
(99449, 82104, 'en', 'name', 'National Institute of Statistics and Informatics'),
(99450, 82104, 'es', 'name', 'Instituto Nacional de Estadƭstica e InformƔtica'),
(99451, 82105, 'en', 'name', 'Shastri Indo-Canadian Institute'),
(99452, 82105, 'fr', 'name', 'L''Institut indo-canadien Shastri'),
(99453, 82106, 'en', 'name', 'Indiana University Southeast'),
(99454, 82107, 'no_lang_code', 'name', 'Oasen (Netherlands)'),
(99455, 82108, 'no_lang_code', 'name', 'Pandawa Institute'),
(99456, 82109, 'en', 'name', 'Fayette County Public Schools'),
(99457, 82110, 'en', 'name', 'Royal Australasian College of Surgeons'),
(99458, 82111, 'en', 'name', 'Eastern Michigan University'),
(99459, 82111, 'es', 'name', 'Universidad de Michigan Oriental'),
(99460, 82112, 'en', 'name', 'Polytechnic Institute of Lunda Sul'),
(99461, 82112, 'pt', 'name', 'Instituto PolitƩcnico da Lunda Sul'),
(99462, 82113, 'en', 'name', 'Shifa International Hospital'),
(99463, 82114, 'en', 'name', 'Niwot Ridge Long Term Ecological Research'),
(99464, 82115, 'en', 'name', 'South African National Space Agency'),
(99465, 82116, 'en', 'name', 'Avon Foundation for Women'),
(99466, 82117, 'no_lang_code', 'name', 'Sawyer Technical Materials (United States)'),
(99467, 82118, 'en', 'name', 'Taipei City Government'),
(99468, 82119, 'fr', 'name', 'PROTEO'),
(99469, 82120, 'en', 'name', 'National Women''s Education Center'),
(99470, 82120, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹å„³ę€§ę•™č‚²ä¼šé¤Ø'),
(99471, 82121, 'en', 'name', 'Boulder Community Hospital'),
(99472, 82122, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ų§ŲÆŲ³ŁŠŲ©'),
(99473, 82122, 'no_lang_code', 'name', 'University of Al-Qadisiyah'),
(99474, 82123, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų£Ł…ŁŠŲŖŁŠ'),
(99475, 82123, 'en', 'name', 'Amity University'),
(99476, 82124, 'en', 'name', 'Ministry for Innovation and Technology'),
(99477, 82124, 'hu', 'name', 'InnovÔciós és Technológiai Minisztérium'),
(99478, 82125, 'no_lang_code', 'name', 'Denssolutions (Netherlands)'),
(99479, 82126, 'de', 'name', 'Deutsches Historisches Institut Paris'),
(99480, 82126, 'en', 'name', 'German Historical Institute Paris'),
(99481, 82126, 'fr', 'name', 'Institut Historique Allemand'),
(99482, 82127, 'en', 'name', 'Australian Institute for Musculoskeletal Science'),
(99483, 82128, 'en', 'name', 'Blagoveschensk State Pedagogical University'),
(99484, 82128, 'ru', 'name', 'Благовещенский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(99485, 82129, 'en', 'name', 'Axiom Data Science'),
(99486, 82130, 'no_lang_code', 'name', 'Verve Therapeutics (United States)'),
(99487, 82131, 'no_lang_code', 'name', 'Quality and Reliability (Greece)'),
(99488, 82132, 'en', 'name', 'Telemark Hospital'),
(99489, 82133, 'en', 'name', 'Japanese Red Cross Kumamoto Hospital'),
(99490, 82133, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ē†Šęœ¬čµ¤åå­—ē—…é™¢'),
(99491, 82134, 'no_lang_code', 'name', 'Eiffage (France)'),
(99492, 82135, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å…ˆē«ÆćƒŠćƒŽćƒ—ćƒ­ć‚»ć‚¹åŸŗē›¤é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(99493, 82135, 'no_lang_code', 'name', 'Evolving Nano Process Infrastructure Development Center (Japan)'),
(99494, 82136, 'no_lang_code', 'name', 'Amarin (Ireland)'),
(99495, 82137, 'de', 'name', 'Fraunhofer-Institut für Kognitive Systeme IKS'),
(99496, 82137, 'en', 'name', 'Fraunhofer Institute for Cognitive Systems'),
(99497, 82138, 'en', 'name', 'Royal Academy of Cambodia'),
(99498, 82138, 'km', 'name', 'įžšįž¶įž‡įž”įžŽįŸ’įžŒįž·įžįŸ’įž™įžŸįž—įž¶įž€įž˜įŸ’įž–įž»įž‡įž¶'),
(99499, 82139, 'it', 'name', 'Centri Associati di Allergologia Molecolare'),
(99500, 82140, 'en', 'name', 'University Hospitals of Leicester NHS Trust'),
(99501, 82141, 'fi', 'name', 'Pohjois-Suomen laboratoriokeskuksen liikelaitoskuntayhtymƤ'),
(99502, 82141, 'no_lang_code', 'name', 'NordLab'),
(99503, 82142, 'en', 'name', 'Office of the National Coordinator for Health Information Technology'),
(99504, 82143, 'en', 'name', 'Central Scientific Library of the Far Eastern Branch of the Russian Academy of Sciences'),
(99505, 82143, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ Š¾Š±ŃŠ»ŃƒŠ¶ŠøŠ²Š°Š½ŠøŃ Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń Š½Š°ŃƒŃ‡Š½Š°Ń библиотека Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(99506, 82144, 'en', 'name', 'Key Laboratory for High Strength Lightweight Metallic Materials of Shandong Province'),
(99507, 82144, 'zh', 'name', 'å±±äøœēœč½»č“Øé«˜å¼ŗé‡‘å±žęę–™ēœēŗ§é‡ē‚¹å®žéŖŒå®¤'),
(99508, 82145, 'en', 'name', 'Jawaharlal Institute of Post Graduate Medical Education and Research'),
(99509, 82145, 'ml', 'name', 'ą“œą“æą“Ŗąµą“®ąµ†ąµ¼'),
(99510, 82145, 'ta', 'name', 'ą®œą®µą®¹ą®°ąÆą®²ą®¾ą®²ąÆ ą®Ŗą®ŸąÆą®Ÿ ą®®ąÆ‡ą®±ąÆą®Ŗą®Ÿą®æą®ŖąÆą®ŖąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆą®•ą®²ąÆą®µą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(99511, 82146, 'en', 'name', 'Research Society on Marijuana'),
(99512, 82147, 'en', 'name', 'Ministry of Agriculture of the Republic of Lithuania'),
(99513, 82147, 'lt', 'name', 'Lietuvos Respublikos žemės ūkio ministerija'),
(99514, 82148, 'no_lang_code', 'name', 'IonQ (United States)'),
(99515, 82149, 'pt', 'name', 'Hospital UniversitƔrio Cajuru'),
(99516, 82150, 'en', 'name', 'Georgetown-Howard Universities Center for Clinical and Translational Science'),
(99517, 82151, 'en', 'name', 'Kindai University Sakai Hospital'),
(99518, 82151, 'ja', 'name', 'čæ‘ē•æå¤§å­¦åŒ»å­¦éƒØå ŗē—…é™¢'),
(99519, 82152, 'no_lang_code', 'name', 'Eskom (South Africa)'),
(99520, 82153, 'en', 'name', 'New Ulm Medical Center'),
(99521, 82154, 'no_lang_code', 'name', 'CytoDel (United States)'),
(99522, 82155, 'en', 'name', 'Suzhou Institute of North China Electric Power University'),
(99523, 82155, 'zh', 'name', 'åŽåŒ—ē”µåŠ›å¤§å­¦č‹å·žē ”ē©¶é™¢'),
(99524, 82156, 'en', 'name', 'Future Law'),
(99525, 82157, 'en', 'name', 'Villanova University'),
(99526, 82157, 'es', 'name', 'Universidad Villanova'),
(99527, 82158, 'es', 'name', 'Centro de Investigación Biomédica en Red'),
(99528, 82159, 'en', 'name', 'Spinal Injuries Center'),
(99529, 82159, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹ē·åˆć›ćęć‚»ćƒ³ć‚æćƒ¼'),
(99530, 82160, 'en', 'name', 'Institute of Radiotherapy and Nuclear Medicine'),
(99531, 82160, 'ur', 'name', 'جوہری طبی اور ؓعاعي علاج کا ادارہ'),
(99532, 82161, 'en', 'name', 'Philippine Rice Research Institute'),
(99533, 82162, 'en', 'name', 'North Central Soil Conservation Research Laboratory'),
(99534, 82163, 'no_lang_code', 'name', 'ILF (Switzerland)'),
(99535, 82164, 'no_lang_code', 'name', 'Institute for Clinical Pharmacodynamics (United States)'),
(99536, 82165, 'en', 'name', 'Japan Institute of Plant Maintenance'),
(99537, 82165, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ©ćƒ³ćƒˆćƒ”ćƒ³ćƒ†ćƒŠćƒ³ć‚¹å”ä¼š'),
(99538, 82166, 'en', 'name', 'Chinese Mathematical Society'),
(99539, 82166, 'zh', 'name', 'äø­å›½ę•°å­¦ä¼š'),
(99540, 82167, 'no_lang_code', 'name', 'Essity (Germany)'),
(99541, 82168, 'en', 'name', 'Turkana University College'),
(99542, 82169, 'en', 'name', 'Laser Fusion Research Center'),
(99543, 82169, 'zh', 'name', 'ęæ€å…‰čšå˜ē ”ē©¶äø­åæƒ'),
(99544, 82170, 'de', 'name', 'Deutsche Gesellschaft für Muskelkranke'),
(99545, 82171, 'pt', 'name', 'Instituto de Patologia da Coluna'),
(99546, 82172, 'en', 'name', 'Chinese Academy of Geological Sciences'),
(99547, 82172, 'zh', 'name', 'äø­å›½åœ°č“Øē§‘å­¦é™¢'),
(99548, 82173, 'no_lang_code', 'name', 'SPL L''Eau des Collines'),
(99549, 82174, 'en', 'name', 'Bone Cancer Research Trust'),
(99550, 82175, 'de', 'name', 'Physikalisch-Meteorologisches Observatorium Davos'),
(99551, 82176, 'en', 'name', 'Atomic Weapons Establishment'),
(99552, 82177, 'en', 'name', 'Association for Machine Translation in the Americas'),
(99553, 82178, 'en', 'name', 'Guangdong-Hongkong-Macau Joint Laboratory of Collaborative Innovation for Environmental Quality'),
(99554, 82178, 'zh', 'name', 'ē²¤ęøÆę¾³ēŽÆå¢ƒč“Øé‡ååŒåˆ›ę–°č”åˆå®žéŖŒå®¤'),
(99555, 82179, 'no_lang_code', 'name', 'GlobalFoundries (United States)'),
(99556, 82180, 'en', 'name', 'Kazakh Institute of Oncology and Radiology'),
(99557, 82180, 'kk', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ онкологии Šø раГиологии'),
(99558, 82181, 'no_lang_code', 'name', 'Menarini Group (Italy)'),
(99559, 82182, 'en', 'name', 'Federal State Budgetary Scientific Institution Research Institute of Medical Primatology'),
(99560, 82183, 'no_lang_code', 'name', 'PharmaMar (Spain)'),
(99561, 82184, 'en', 'name', 'Campbell Collaboration'),
(99562, 82185, 'en', 'name', 'Biola University'),
(99563, 82186, 'en', 'name', 'Arctic State Institute of Culture and Arts'),
(99564, 82186, 'ru', 'name', 'Арктический Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(99565, 82187, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŁŠŁ€Ų§'),
(99566, 82187, 'en', 'name', 'Minia University'),
(99567, 82188, 'es', 'name', 'Kavilando'),
(99568, 82189, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ по Ń„ŃƒŃ€Š°Š¶Š½ŠøŃ‚Šµ ŠŗŃƒŠ»Ń‚ŃƒŃ€Šø'),
(99569, 82189, 'en', 'name', 'Institute of Forage Crops'),
(99570, 82190, 'en', 'name', 'Swiss Data Science Center'),
(99571, 82191, 'en', 'name', 'Romanian Ornithological Society'),
(99572, 82191, 'ro', 'name', 'Societatea Ornitologică Română'),
(99573, 82192, 'en', 'name', 'Glacier Cave Explorers'),
(99574, 82193, 'de', 'name', 'Biologische Station Neusiedler See'),
(99575, 82194, 'en', 'name', 'Japanese Red Cross Kochi Hospital'),
(99576, 82194, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é«˜ēŸ„čµ¤åå­—ē—…é™¢'),
(99577, 82195, 'en', 'name', 'Academician F. H. Burchak Scientific-Research Institute of Private Law and Entrepreneurship'),
(99578, 82195, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГниq Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приватного права і піГприємництва імені акаГеміка Ф. Š“. Š‘ŃƒŃ€Ń‡Š°ŠŗŠ°'),
(99579, 82196, 'bs', 'name', 'Univerzitet u Sarajevu'),
(99580, 82196, 'en', 'name', 'University of Sarajevo'),
(99581, 82196, 'hr', 'name', 'SveučiliŔte u Sarajevu'),
(99582, 82196, 'sr', 'name', 'Универзитет у Š”Š°Ń€Š°Ń˜ŠµŠ²Ńƒ'),
(99583, 82197, 'en', 'name', 'Tsinghua–Berkeley Shenzhen Institute'),
(99584, 82197, 'zh', 'name', 'ęø…åŽå¤§å­¦ä¼Æå…‹åˆ©åˆ†ę ”ę·±åœ³ē ”ē©¶é™¢'),
(99585, 82198, 'no_lang_code', 'name', 'Lettis Consultants International (United States)'),
(99586, 82199, 'no_lang_code', 'name', 'Reaction Biology (Germany)'),
(99587, 82200, 'bg', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø комплекс "Š”-р Щерев"'),
(99588, 82200, 'no_lang_code', 'name', 'Dr. Shterev Hospital'),
(99589, 82201, 'es', 'name', 'Instituto Oncológico de Córdoba'),
(99590, 82202, 'de', 'name', 'SPZ Frankfurt Mitte, SozialpƤdiatrisches Zentrum Frankfurt Mitte'),
(99591, 82203, 'en', 'name', 'Connecticut Department of Energy and Environmental Protection'),
(99592, 82204, 'en', 'name', 'Tampere University Hospital'),
(99593, 82205, 'en', 'name', 'Kanazawa University'),
(99594, 82205, 'ja', 'name', '金沢大学'),
(99595, 82206, 'en', 'name', 'Pike County Schools'),
(99596, 82207, 'no_lang_code', 'name', 'Chifeng Municipal Hospital'),
(99597, 82207, 'zh', 'name', 'čµ¤å³°åø‚åŒ»é™¢'),
(99598, 82208, 'en', 'name', 'The Wallace H. Coulter Department of Biomedical Engineering'),
(99599, 82209, 'en', 'name', 'Macular Society'),
(99600, 82210, 'en', 'name', 'Metanoia Institute'),
(99601, 82211, 'en', 'name', 'Tokyo Metropolitan Neurological Hospital'),
(99602, 82211, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ē„žēµŒē—…é™¢'),
(99603, 82212, 'en', 'name', 'Foundation for Clinical and Applied Cancer Research'),
(99604, 82213, 'no_lang_code', 'name', 'Royal GD (Netherlands)'),
(99605, 82214, 'de', 'name', 'Neue Kantonsschule Aarau'),
(99606, 82215, 'en', 'name', 'Freshwater Biological Association'),
(99607, 82216, 'no_lang_code', 'name', 'Alcon (China)'),
(99608, 82217, 'de', 'name', 'Münchner Sicherheitskonferenz'),
(99609, 82217, 'en', 'name', 'Munich Security Conference'),
(99610, 82218, 'it', 'name', 'Centro Universitario Internazionale'),
(99611, 82219, 'en', 'name', 'CSIRO BioFoundry'),
(99612, 82220, 'no_lang_code', 'name', 'Amplyx Pharmaceuticals (United States)'),
(99613, 82221, 'no_lang_code', 'name', 'CVS Health (United States)'),
(99614, 82222, 'ja', 'name', 'ć‚µćƒ³ćƒˆćƒŖćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(99615, 82222, 'no_lang_code', 'name', 'Suntory (Japan)'),
(99616, 82223, 'fr', 'name', 'Railenium'),
(99617, 82224, 'de', 'name', 'Max-Planck-Institut für Demografische Forschung'),
(99618, 82224, 'en', 'name', 'Max Planck Institute for Demographic Research'),
(99619, 82225, 'no_lang_code', 'name', 'Concert Pharmaceuticals (United States)'),
(99620, 82226, 'en', 'name', 'EUMETNET'),
(99621, 82227, 'en', 'name', 'Bank of Sweden Tercentenary Foundation'),
(99622, 82227, 'sv', 'name', 'Stiftelsen Riksbankens Jubileumsfond'),
(99623, 82228, 'en', 'name', 'Sickle Cell Institute Chhattisgarh, Raipur'),
(99624, 82228, 'hi', 'name', 'सिकल ą¤øą„‡ą¤² ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą¤¢ą¤¼, ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(99625, 82229, 'fa', 'name', 'Ł¾ŪŒŲ“ŚÆŲ§Ł… Ł†Ł‚Ų“Ł‡ā€ŒŁ¾Ų±ŲÆŲ§Ų² Ų§Ų“Ų±Ų§Ł‚'),
(99626, 82229, 'no_lang_code', 'name', 'PNPE Company (Iran)'),
(99627, 82230, 'en', 'name', 'Southwest Hospital'),
(99628, 82230, 'zh', 'name', 'č„æå—åŒ»é™¢'),
(99629, 82231, 'en', 'name', 'Brazilian Association of Psychiatry'),
(99630, 82231, 'pt', 'name', 'Associação Brasileira de Psiquiatria'),
(99631, 82232, 'en', 'name', 'Jewish Community Foundation'),
(99632, 82233, 'en', 'name', 'Orthopaedic Trauma Association'),
(99633, 82234, 'de', 'name', 'Institut für Beschäftigung und Employability'),
(99634, 82235, 'no_lang_code', 'name', 'Reata Pharmaceuticals (United States)'),
(99635, 82236, 'en', 'name', 'Liver Institute Northwest'),
(99636, 82237, 'no_lang_code', 'name', 'Chimerix (United States)'),
(99637, 82238, 'ar', 'name', 'Ł…ŁƒŲŖŲØŲ© قطر Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(99638, 82238, 'en', 'name', 'Qatar National Library'),
(99639, 82239, 'fr', 'name', 'Centre intƩgrƩ universitaire de santƩ et de services sociaux de la Mauricie-et-du-Centre-du-QuƩbec'),
(99640, 82240, 'en', 'name', 'Central Marine Fisheries Research Institute'),
(99641, 82240, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„ą¤¦ą„ą¤°ą„€ ą¤®ą¤¾ą¤¤ą„ą¤øą„ą¤Æą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø'),
(99642, 82240, 'ta', 'name', 'ą®®ą®¤ąÆą®¤ą®æą®Æ ą®•ą®Ÿą®²ąÆą®®ąÆ€ą®©ąÆą®µą®³ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®²ąÆˆą®Æą®®ąÆ'),
(99643, 82241, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بيروت Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(99644, 82241, 'en', 'name', 'Beirut Arab University'),
(99645, 82241, 'fr', 'name', 'UniversitƩ arabe de beyrouth'),
(99646, 82242, 'en', 'name', 'International Society for Laboratory Hematology'),
(99647, 82243, 'de', 'name', 'Deutsche Gesellschaft für Zahn-, Mund- und Kieferheilkunde'),
(99648, 82244, 'en', 'name', 'Canadian Cardiovascular Society'),
(99649, 82245, 'de', 'name', 'Christiani'),
(99650, 82246, 'en', 'name', 'National Geospatial-Intelligence Agency'),
(99651, 82246, 'es', 'name', 'Agencia Nacional de Inteligencia-Geoespacial'),
(99652, 82247, 'no_lang_code', 'name', 'The Clorox (United States)'),
(99653, 82248, 'en', 'name', 'Pinnacle Clinical Research'),
(99654, 82249, 'de', 'name', 'GSI Helmholtzzentrum für Schwerionenforschung'),
(99655, 82249, 'en', 'name', 'GSI Helmholtz Centre for Heavy Ion Research'),
(99656, 82250, 'en', 'name', 'Foundation for Promotion of Material Science and Technology of Japan'),
(99657, 82250, 'ja', 'name', 'čˆ¬č²”å›£ę³•äŗŗęę–™ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(99658, 82251, 'en', 'name', 'Forestry Research Institute'),
(99659, 82251, 'uz', 'name', 'O''RMON XO''JALIGI ILMIY-TADQIQOT INSTITUTI'),
(99660, 82252, 'en', 'name', 'The Dian Fossey Gorilla Fund International'),
(99661, 82253, 'en', 'name', 'Colt Foundation'),
(99662, 82254, 'en', 'name', 'Oklahoma Department of Transportation'),
(99663, 82255, 'en', 'name', 'Modern Diet and Physiology Research Center'),
(99664, 82256, 'en', 'name', 'State Library and Archives of Florida'),
(99665, 82257, 'no_lang_code', 'name', 'Tillotts Pharma (Switzerland)'),
(99666, 82258, 'en', 'name', 'National Engineering Research Center of Human Stem Cells'),
(99667, 82258, 'zh', 'name', 'äŗŗē±»å¹²ē»†čƒžå›½å®¶å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(99668, 82259, 'it', 'name', 'ENEA Casaccia Research Centre, ENEA Centro Ricerche Casaccia'),
(99669, 82260, 'en', 'name', 'Anova Health Institute'),
(99670, 82261, 'en', 'name', 'Lueji A''Nkonde University'),
(99671, 82261, 'pt', 'name', 'Universidade Lueji A''nkonde'),
(99672, 82262, 'en', 'name', 'Innlandet Hospital Trust'),
(99673, 82263, 'en', 'name', 'Ministry of Health'),
(99674, 82263, 'pl', 'name', 'Ministerstwo Zdrowia Rzeczypospolitej Polskiej'),
(99675, 82264, 'no_lang_code', 'name', 'Veterinary Anaesthesia Services (Switzerland)'),
(99676, 82265, 'ja', 'name', 'ä½å‹ćƒ™ćƒ¼ć‚Æćƒ©ć‚¤ćƒˆę Ŗå¼ä¼šē¤¾'),
(99677, 82265, 'no_lang_code', 'name', 'Sumitomo Bakelite (Japan)'),
(99678, 82266, 'en', 'name', 'Vorarlberg Institute for Vascular Investigation and Treatment'),
(99679, 82267, 'en', 'name', 'Southwest Healthcare System'),
(99680, 82268, 'ja', 'name', 'ć‚¤ć‚Ŗćƒ³ćƒ†ć‚ÆćƒŽć‚»ćƒ³ć‚æćƒ¼'),
(99681, 82268, 'no_lang_code', 'name', 'Ion Technology Center (Japan)'),
(99682, 82269, 'no_lang_code', 'name', 'Vaccitech (United Kingdom)'),
(99683, 82270, 'en', 'name', 'Tianjin Fourth Central Hospital'),
(99684, 82270, 'zh', 'name', 'å¤©ę“„åø‚ē¬¬å››äø­åæƒåŒ»é™¢'),
(99685, 82271, 'en', 'name', 'Hunan University of Science and Technology'),
(99686, 82271, 'zh', 'name', 'ę¹–å—ē§‘ęŠ€å¤§å­¦'),
(99687, 82272, 'no_lang_code', 'name', 'Laboratory of Data Discovery for Health'),
(99688, 82272, 'zh', 'name', 'é†«č”žå¤§ę•øę“šę·±ęžåÆ¦é©—å®¤ęœ‰é™å…¬åø'),
(99689, 82273, 'en', 'name', 'Extreme Weather Expertise'),
(99690, 82274, 'de', 'name', 'Praxis für Humangenetik Tübingen'),
(99691, 82275, 'en', 'name', 'Rajamangala University of Technology Phra Nakhon'),
(99692, 82275, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøžąø£ąø°ąø™ąø„ąø£'),
(99693, 82276, 'en', 'name', 'Vishera Nature Reserve'),
(99694, 82276, 'ru', 'name', 'Š’ŠøŃˆŠµŃ€ŃŠŗŠøŠ¹ заповеГник'),
(99695, 82277, 'en', 'name', 'Mastery Charter Schools'),
(99696, 82278, 'fr', 'name', 'Clinique Cecil, Hirslanden Clinique Cecil'),
(99697, 82279, 'no_lang_code', 'name', 'Cyano Biotech (Germany)'),
(99698, 82280, 'de', 'name', 'EuropƤische Verteidigungsagentur'),
(99699, 82280, 'en', 'name', 'European Defence Agency'),
(99700, 82280, 'fr', 'name', 'Agence EuropƩenne de DƩfense'),
(99701, 82280, 'nl', 'name', 'Europees Defensieagentschap'),
(99702, 82281, 'nl', 'name', 'GGD Limburg-Noord, Gemeenschappelijke Gezondheidsdienst Limburg-Noord'),
(99703, 82282, 'no_lang_code', 'name', 'Informulate (United States)'),
(99704, 82283, 'no_lang_code', 'name', 'Rocscience (Canada)'),
(99705, 82284, 'no_lang_code', 'name', 'Carl Zeiss (Germany)'),
(99706, 82285, 'en', 'name', 'Kansas State University Salina Aerospace and Technology Campus'),
(99707, 82286, 'es', 'name', 'Universidad del Norte'),
(99708, 82287, 'en', 'name', 'Canadian Association of Nurses in Oncology'),
(99709, 82287, 'fr', 'name', 'Association Canadienne des InfirmiĆØres en Oncologie'),
(99710, 82288, 'en', 'name', 'Utah System of Higher Education'),
(99711, 82289, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹ęµœę¾åŠ“ē½ē—…é™¢'),
(99712, 82289, 'no_lang_code', 'name', 'Hamamatsu Rosai Hospital'),
(99713, 82290, 'ja', 'name', 'ę±ę“‹é‹¼éˆ‘ę Ŗå¼ä¼šē¤¾'),
(99714, 82290, 'no_lang_code', 'name', 'Toyo Kohan (Japan)'),
(99715, 82291, 'en', 'name', 'Population Health Research Network'),
(99716, 82292, 'no_lang_code', 'name', 'Kulicke & Soffa (United States)'),
(99717, 82293, 'en', 'name', 'Sharks Pacific'),
(99718, 82294, 'en', 'name', 'Callaghan Innovation'),
(99719, 82295, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ†Ī±ĻĪ¼ĪæĻƒĪ¼Ī­Ī½Ļ‰Ī½ και Ī„Ļ€ĪæĪ»ĪæĪ³Ī¹ĻƒĻ„Ī¹ĪŗĻŽĪ½ ĪœĪ±ĪøĪ·Ī¼Ī±Ļ„Ī¹ĪŗĻŽĪ½'),
(99720, 82295, 'en', 'name', 'FORTH Institute of Applied and Computational Mathematics'),
(99721, 82296, 'en', 'name', 'University of Central Oklahoma'),
(99722, 82296, 'fr', 'name', 'UniversitƩ du centre de l''oklahoma'),
(99723, 82297, 'en', 'name', 'Hunter Water'),
(99724, 82298, 'en', 'name', 'Shandong Institute of Advanced Technology'),
(99725, 82298, 'zh', 'name', 'å±±äøœé«˜ē­‰ęŠ€ęœÆē ”ē©¶é™¢'),
(99726, 82299, 'no_lang_code', 'name', 'Digital Health Cooperative Research Centre'),
(99727, 82300, 'no_lang_code', 'name', 'River Publishers (Denmark)'),
(99728, 82301, 'en', 'name', 'Carle Foundation Hospital'),
(99729, 82302, 'no_lang_code', 'name', 'Gilson (United States)'),
(99730, 82303, 'en', 'name', 'National Forage Seed Production Research Center'),
(99731, 82304, 'en', 'name', 'Large Marine Vertebrates Research Institute Philippines'),
(99732, 82305, 'en', 'name', 'Fuyang Normal University'),
(99733, 82305, 'zh', 'name', 'é˜œé˜³åøˆčŒƒå­¦é™¢'),
(99734, 82306, 'no_lang_code', 'name', 'Amryt Pharma (Germany)'),
(99735, 82307, 'de', 'name', 'Eidgenƶssisches Nuklearsicherheitsinspektorat'),
(99736, 82307, 'en', 'name', 'Swiss Federal Nuclear Safety Inspectorate'),
(99737, 82308, 'nl', 'name', 'Academie Verloskunde Amsterdam Groningen'),
(99738, 82309, 'en', 'name', 'Indian Institute of Management Amritsar'),
(99739, 82310, 'no_lang_code', 'name', 'Complete Omics (United States)'),
(99740, 82311, 'no_lang_code', 'name', 'Curonz (New Zealand)'),
(99741, 82312, 'de', 'name', 'Mammazentrum Hamburg'),
(99742, 82313, 'en', 'name', 'Physical Research Laboratory'),
(99743, 82314, 'en', 'name', 'National Guard Military Academy of Ukraine'),
(99744, 82314, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— гварГії України'),
(99745, 82315, 'bs', 'name', 'Institut za javno zdravlje Vojvodine'),
(99746, 82315, 'en', 'name', 'Institute of Public Health of Vojvodina'),
(99747, 82316, 'en', 'name', 'Astrakhan Biosphere Nature Reserve'),
(99748, 82317, 'en', 'name', 'Manaaki Whenua – Landcare Research'),
(99749, 82318, 'en', 'name', 'Cedars-Sinai Medical Center'),
(99750, 82319, 'no_lang_code', 'name', 'Printnet (Hungary)'),
(99751, 82320, 'en', 'name', 'Chihlee Institute of Technology'),
(99752, 82320, 'zh', 'name', 'č‡“ē†ē§‘ęŠ€å¤§å­ø'),
(99753, 82321, 'en', 'name', 'Northeast Georgia Medical Center'),
(99754, 82322, 'en', 'name', 'Orthopaedic Research Group'),
(99755, 82323, 'no_lang_code', 'name', 'AOP Orphan (Austria)'),
(99756, 82324, 'en', 'name', 'National Scientific Agricultural Library of the National Academy of Agrarian Sciences of Ukraine'),
(99757, 82324, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° наукова ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ŃŠæŠ¾Š“Š°Ń€ŃŃŒŠŗŠ° бібліотека ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(99758, 82325, 'no_lang_code', 'name', 'Aker Arctic (Finland)'),
(99759, 82326, 'no_lang_code', 'name', 'Corteva (United States)'),
(99760, 82327, 'en', 'name', 'Fuzhou General Hospital of Nanjing Military Command'),
(99761, 82327, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›č”å‹¤äæéšœéƒØé˜Ÿē¬¬ä¹ć€‡ć€‡åŒ»é™¢'),
(99762, 82328, 'en', 'name', 'Allergy Action'),
(99763, 82329, 'en', 'name', 'Park Vale Academy'),
(99764, 82330, 'en', 'name', 'Wisconsin Department of Health Services'),
(99765, 82331, 'en', 'name', 'Lewis Gale Medical Center'),
(99766, 82332, 'en', 'name', 'Sacred Heart College'),
(99767, 82333, 'en', 'name', 'Woods Hole Coastal and Marine Science Center'),
(99768, 82334, 'en', 'name', 'Cochrane'),
(99769, 82335, 'en', 'name', 'Taiwan Nurses Association'),
(99770, 82336, 'en', 'name', 'Memphis Zoo'),
(99771, 82337, 'en', 'name', 'St Philip''s Centre'),
(99772, 82338, 'en', 'name', 'State University of Infrastructure and Technologies'),
(99773, 82338, 'uk', 'name', 'Š”Š•Š Š–ŠŠ’ŠŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢ Š†ŠŠ¤Š ŠŠ”Š¢Š Š£ŠšŠ¢Š£Š Š˜ ТА Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š†Š™'),
(99774, 82339, 'en', 'name', 'International College of Defence Studies'),
(99775, 82339, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›å›½é˜²å¤§å­¦å›½é™…é˜²åŠ”å­¦é™¢'),
(99776, 82340, 'de', 'name', 'Gesellschaft für Thrombose- und Hämostaseforschung'),
(99777, 82341, 'no_lang_code', 'name', 'Templeton Religion Trust'),
(99778, 82342, 'sv', 'name', 'Sydsvensk Arkeologi'),
(99779, 82343, 'en', 'name', 'Mitsui Memorial Hospital'),
(99780, 82343, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗäø‰äŗ•čØ˜åæµē—…é™¢'),
(99781, 82344, 'de', 'name', 'St. Anna Kinderspital'),
(99782, 82344, 'en', 'name', 'St Anna Children''s Hospital'),
(99783, 82345, 'en', 'name', 'Matsumae International Foundation'),
(99784, 82345, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę¾å‰å›½éš›å‹å„½č²”å›£'),
(99785, 82346, 'en', 'name', 'ZheJiang Academy of Agricultural Sciences'),
(99786, 82346, 'zh', 'name', 'ęµ™ę±Ÿēœå†œäøšē§‘å­¦é™¢'),
(99787, 82347, 'en', 'name', 'Carl von LinnƩ Clinic'),
(99788, 82348, 'en', 'name', 'Kensington Health'),
(99789, 82349, 'en', 'name', 'Black Rock Forest Consortium'),
(99790, 82350, 'en', 'name', 'Nippon Institute for Biological Science'),
(99791, 82350, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(99792, 82351, 'en', 'name', 'St. Mary''s Medical Center'),
(99793, 82352, 'de', 'name', 'Gemeinsame Forschungsstelle'),
(99794, 82352, 'en', 'name', 'Joint Research Centre'),
(99795, 82352, 'fr', 'name', 'Centre commun de recherche'),
(99796, 82352, 'it', 'name', 'Centro Comune di Ricerca'),
(99797, 82353, 'ja', 'name', '関脿学院大学'),
(99798, 82353, 'no_lang_code', 'name', 'Kwansei Gakuin University'),
(99799, 82354, 'no_lang_code', 'name', 'Xtretch (China)'),
(99800, 82354, 'zh', 'name', 'ęžå±•ē§‘ęŠ€'),
(99801, 82355, 'en', 'name', 'Aioi City Board of Education'),
(99802, 82355, 'ja', 'name', 'ē›øē”Ÿåø‚ę•™č‚²å§”å“”ä¼š'),
(99803, 82356, 'en', 'name', 'Pelita Harapan University'),
(99804, 82357, 'en', 'name', 'State Institute For Christian Studies Ambon'),
(99805, 82357, 'id', 'name', 'Institut Agama Kristen Negeri Ambon'),
(99806, 82358, 'en', 'name', 'Nopparat Rajathanee Hospital'),
(99807, 82358, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø™ąøžąø£ąø±ąø•ąø™ąø£ąø²ąøŠąø˜ąø²ąø™ąøµ'),
(99808, 82359, 'en', 'name', 'Amada Foundation'),
(99809, 82359, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤©ē”°č²”å›£'),
(99810, 82360, 'en', 'name', 'Institute for Digitalisation of Education of the NAES of Ukraine'),
(99811, 82360, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ цифровізації освіти ŠŠŠŸŠ України'),
(99812, 82361, 'en', 'name', 'Dale Bumpers Small Farms Research Center'),
(99813, 82362, 'no_lang_code', 'name', 'AB Vista (Germany)'),
(99814, 82363, 'en', 'name', 'Sutter Davis Hospital'),
(99815, 82364, 'pt', 'name', 'Instituto Uniemp'),
(99816, 82365, 'en', 'name', 'Aichi Institute of Technology'),
(99817, 82365, 'ja', 'name', 'ę„›ēŸ„å·„ę„­å¤§å­¦'),
(99818, 82366, 'fi', 'name', 'Satakunnan Sairaanhoitopiirin'),
(99819, 82367, 'en', 'name', 'International Slavic University Gavrilo Romanovich Derzhavin'),
(99820, 82367, 'mk', 'name', 'ŠœŠµŃ“ŃƒŠ½Š°Ń€Š¾Š“ŠµŠ½ Длавјански Универзитет Гаврило Романович Державин'),
(99821, 82367, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ā€œŠ“Š°Š²Ń€ŠøŠ»Š¾ Романович Š”ŠµŃ€Š¶Š°Š²ŠøŠ½ā€'),
(99822, 82368, 'no_lang_code', 'name', 'Tigireksky Nature Reserve'),
(99823, 82368, 'ru', 'name', 'Тигирекский заповеГник'),
(99824, 82369, 'en', 'name', 'Center for Translational Research in Neuroimaging and Data Science'),
(99825, 82370, 'en', 'name', 'Hebei University of Chinese Medicine'),
(99826, 82371, 'en', 'name', 'International Water Management Institute'),
(99827, 82372, 'en', 'name', 'The Cancer Imaging Archive'),
(99828, 82373, 'en', 'name', 'Pontifical Catholic University of Ecuador'),
(99829, 82373, 'es', 'name', 'Pontificia Universidad Católica del Ecuador'),
(99830, 82374, 'fr', 'name', 'Banque Canadienne ImpƩriale de Commerce'),
(99831, 82374, 'no_lang_code', 'name', 'Canadian Imperial Bank of Commerce (Canada)'),
(99832, 82375, 'en', 'name', 'Avondale University'),
(99833, 82376, 'en', 'name', 'National Institute of Science Education and Research'),
(99834, 82376, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(99835, 82376, 'ml', 'name', 'ą“Øąµˆą“øąµ¼'),
(99836, 82377, 'fr', 'name', 'Laboratoire Recherche Informatique Maisonneuve'),
(99837, 82378, 'en', 'name', 'Punjab Remote Sensing Centre'),
(99838, 82379, 'en', 'name', 'IITB-Monash Research Academy'),
(99839, 82380, 'en', 'name', 'International Technological University'),
(99840, 82381, 'en', 'name', 'National Autonomous University of Chota'),
(99841, 82381, 'es', 'name', 'Universidad Nacional Autónoma de Chota'),
(99842, 82382, 'en', 'name', 'National Health Research Institutes'),
(99843, 82382, 'zh', 'name', 'åœ‹å®¶č”›ē”Ÿē ”ē©¶é™¢'),
(99844, 82383, 'no_lang_code', 'name', 'Gobio (Germany)'),
(99845, 82384, 'en', 'name', 'Kagoshima City Hospital'),
(99846, 82384, 'ja', 'name', '鹿児島市立病院'),
(99847, 82385, 'en', 'name', 'Russian Ilizarov Scientific Center for Restorative Traumatology and Orthopaedics'),
(99848, 82385, 'ru', 'name', 'Российский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ā«Š’Š¾ŃŃŃ‚Š°Š½Š¾Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń Ń‚Ń€Š°Š²Š¼Š°Ń‚Š¾Š»Š¾Š³ŠøŃ Šø Š¾Ń€Ń‚Š¾ŠæŠµŠ“ŠøŃĀ» имени акаГемика Š“. А. Š˜Š»ŠøŠ·Š°Ń€Š¾Š²Š°'),
(99849, 82386, 'en', 'name', 'Golisano Children''s Hospital'),
(99850, 82387, 'no_lang_code', 'name', 'ChemBridge (United States)'),
(99851, 82388, 'no_lang_code', 'name', 'Maple Leaf Foods'),
(99852, 82389, 'en', 'name', 'Algarve Biomedical Center'),
(99853, 82390, 'ja', 'name', 'ę“—č¶³å­¦åœ’éŸ³ę„½å¤§å­¦'),
(99854, 82390, 'no_lang_code', 'name', 'Senzoku Gakuen College of Music'),
(99855, 82391, 'no_lang_code', 'name', 'RedCastle Resources (United States)'),
(99856, 82392, 'no_lang_code', 'name', 'SAS Institute (Ireland)'),
(99857, 82393, 'en', 'name', 'Meiji University'),
(99858, 82393, 'ja', 'name', 'ę˜Žę²»å¤§å­¦'),
(99859, 82394, 'en', 'name', 'Canada East Spine Centre'),
(99860, 82395, 'nl', 'name', 'Leidsche Rijn Julius Gezondheidscentra, Leidsche Rijn Julius Health Centers'),
(99861, 82396, 'no_lang_code', 'name', 'Notal Vision (Israel)'),
(99862, 82397, 'fr', 'name', 'FƩdƩration FranƧaise des Associations et Amicales de Malades Insuffisants ou HandicapƩs Respiratoires'),
(99863, 82398, 'ja', 'name', '中国中央病院'),
(99864, 82398, 'no_lang_code', 'name', 'Chugoku Central Hospital'),
(99865, 82399, 'en', 'name', 'Hope Funds for Cancer Research'),
(99866, 82400, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę—„ęœ¬č§¦åŖ’'),
(99867, 82400, 'no_lang_code', 'name', 'Nippon Shokubai (Japan)'),
(99868, 82401, 'en', 'name', 'Amundsen Science'),
(99869, 82402, 'en', 'name', 'Bayan College'),
(99870, 82403, 'en', 'name', 'Biomedical Research and Innovation Institute of Cadiz'),
(99871, 82403, 'es', 'name', 'Instituto de Investigación e Innovación Biomédica de CÔdiz'),
(99872, 82404, 'pt', 'name', 'Instituto de Tecnologia e Pesquisa'),
(99873, 82405, 'en', 'name', 'Center for Outcomes Research in Liver Diseases'),
(99874, 82406, 'en', 'name', 'Sam Rayburn Memorial Veterans Center'),
(99875, 82407, 'ja', 'name', 'ę—„ęœ¬č¾²č–¬ę Ŗå¼ä¼šē¤¾'),
(99876, 82407, 'no_lang_code', 'name', 'Nihon Nohyaku (Japan)'),
(99877, 82408, 'en', 'name', 'Montavid Thermodynamic Research Group'),
(99878, 82408, 'hu', 'name', 'Montavid Termodinamikai Kutatócsoport'),
(99879, 82409, 'no_lang_code', 'name', 'De Beers (Canada)'),
(99880, 82410, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ł‡ŁˆŁŠ لمهن Ų§Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŁƒŁˆŁŠŁ† لجهة الدار Ų§Ł„ŲØŁŠŲ¶Ų§Ų” Ų³Ų·Ų§ŲŖ'),
(99881, 82410, 'fr', 'name', 'Centre RĆ©gional des MĆ©tiers de l''Ɖducation et de la Formation Casablanca-Settat'),
(99882, 82411, 'en', 'name', 'Southern Institute of Technology'),
(99883, 82412, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии новых материалов ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(99884, 82412, 'en', 'name', 'Institute of Chemistry of New Materials of the National Academy of Sciences of Belarus'),
(99885, 82413, 'en', 'name', 'Centre of Excellence for Advanced Materials'),
(99886, 82413, 'zh', 'name', 'äøœčŽžęę–™åŸŗå› é«˜ē­‰ē†å·„ē ”ē©¶é™¢'),
(99887, 82414, 'ja', 'name', 'JAć‹ćæć¤ćŒåŽšē”Ÿé€£äøŠéƒ½č³€ē·åˆē—…é™¢'),
(99888, 82414, 'no_lang_code', 'name', 'Kamituga General Hospital'),
(99889, 82415, 'en', 'name', 'Government of Brunei Darussalam'),
(99890, 82416, 'no_lang_code', 'name', '1Cellbio (United States)'),
(99891, 82417, 'en', 'name', 'Intermountain St. George Regional Hospital'),
(99892, 82418, 'en', 'name', 'Ochsner Baptist Medical Center'),
(99893, 82419, 'no_lang_code', 'name', 'Aivok (Russia)'),
(99894, 82420, 'en', 'name', 'International Institute for Environment and Development'),
(99895, 82421, 'de', 'name', 'Hirslanden Klinik St. Anna'),
(99896, 82422, 'en', 'name', 'The University of Notre Dame Australia'),
(99897, 82423, 'es', 'name', 'BenemƩrita Escuela Normal "Manuel Ɓvila Camacho"'),
(99898, 82424, 'en', 'name', 'Ahmedabad University'),
(99899, 82424, 'gu', 'name', 'અમદાવાદ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(99900, 82425, 'en', 'name', 'Society of Women Engineers'),
(99901, 82426, 'en', 'name', 'Shenzhen Institute of Neuroscience'),
(99902, 82426, 'zh', 'name', 'ę·±åœ³åø‚ē„žē»ē§‘å­¦ē ”ē©¶é™¢'),
(99903, 82427, 'no_lang_code', 'name', 'Iamgold (Canada)'),
(99904, 82428, 'en', 'name', 'Kazakh University Ways of Communications'),
(99905, 82429, 'en', 'name', 'Renal Pathology Society'),
(99906, 82430, 'en', 'name', 'Akita University Hospital'),
(99907, 82430, 'ja', 'name', 'ē§‹ē”°å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(99908, 82431, 'no_lang_code', 'name', 'Veracyte (United States)'),
(99909, 82432, 'en', 'name', 'Sri Sathya Sai Institute of Higher Medical Sciences'),
(99910, 82433, 'en', 'name', 'University of Peshawar'),
(99911, 82433, 'ur', 'name', 'Ų¬Ų§Ł…Ų¹Ū‚ پؓاور'),
(99912, 82434, 'en', 'name', 'Kazan State Academy of Veterinary Medicine named after N.E. Bauman'),
(99913, 82434, 'ru', 'name', 'ŠšŠ°Š·Š°Š½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ветеринарной меГицины имени Š.Š­. Š‘Š°ŃƒŠ¼Š°Š½Š°'),
(99914, 82435, 'en', 'name', 'Exxon Valdez Oil Spill Trustee Council'),
(99915, 82436, 'es', 'name', 'Centro de Medicina Avanzada Dr. Abel Gonzalez'),
(99916, 82437, 'no_lang_code', 'name', 'Just Associates (United States)'),
(99917, 82438, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹ŁŠŁ†'),
(99918, 82438, 'en', 'name', 'Al-Ayen University'),
(99919, 82439, 'en', 'name', 'UNESCO Institute for Statistics'),
(99920, 82440, 'no_lang_code', 'name', 'Celescreen (France)'),
(99921, 82441, 'en', 'name', 'CONEM Autism Research'),
(99922, 82442, 'no_lang_code', 'name', 'Petronas (Malaysia)'),
(99923, 82443, 'no_lang_code', 'name', 'Hologic (United States)'),
(99924, 82444, 'en', 'name', 'Medical Plus'),
(99925, 82445, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ€Ī¹ĻƒĻ„Ī®Ī¼Ī·Ļ‚ Ī„Ļ€ĪæĪ»ĪæĪ³Ī¹ĻƒĻ„ĻŽĪ½'),
(99926, 82445, 'en', 'name', 'FORTH Institute of Computer Science'),
(99927, 82446, 'no_lang_code', 'name', 'Midatech Pharma (United Kingdom)'),
(99928, 82447, 'en', 'name', 'Institute for Agricultural and Forest Systems in the Mediterranean'),
(99929, 82447, 'it', 'name', 'Istituto per i Sistemi Agricoli e Forestali del Mediterraneo'),
(99930, 82448, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęµä½‘ä¼šęœ­å¹Œē—…é™¢'),
(99931, 82448, 'no_lang_code', 'name', 'Keiyukai Sapporo Hospital'),
(99932, 82449, 'en', 'name', 'St.Amant'),
(99933, 82450, 'en', 'name', 'National Botanic Gardens of Ireland'),
(99934, 82450, 'ga', 'name', 'Garraithe NÔisiúnta na Lus'),
(99935, 82451, 'no_lang_code', 'name', 'Ark Therapeutic (United States)'),
(99936, 82452, 'nl', 'name', 'Flevoziekenhuis'),
(99937, 82453, 'en', 'name', 'Institute of Molecular Pathology and Pathomorphology'),
(99938, 82453, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š¾Š»ŠµŠŗŃƒŠ»ŃŃ€Š½Š¾Š¹ патологии Šø патоморфологии'),
(99939, 82454, 'en', 'name', 'Connecticut Geological Survey'),
(99940, 82455, 'en', 'name', 'Nagaoka Red Cross Hospital'),
(99941, 82455, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é•·å²”čµ¤åå­—ē—…é™¢'),
(99942, 82456, 'no_lang_code', 'name', 'Alcon (Japan)'),
(99943, 82457, 'en', 'name', 'Maxwell Institute for Mathematical Sciences'),
(99944, 82458, 'en', 'name', 'RIKEN Center for Quantum Computing'),
(99945, 82458, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ é‡å­ć‚³ćƒ³ćƒ”ćƒ„ćƒ¼ć‚æē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(99946, 82459, 'en', 'name', 'Saint Joseph Hospital'),
(99947, 82460, 'en', 'name', 'National Quality Inspection and Testing Center for Surveying and Mapping Products'),
(99948, 82460, 'zh', 'name', 'å›½å®¶ęµ‹ē»˜äŗ§å“č“Øé‡ę£€éŖŒęµ‹čÆ•äø­åæƒ'),
(99949, 82461, 'no_lang_code', 'name', 'Gryaab (Sweden)'),
(99950, 82462, 'ja', 'name', 'ćƒ•ć‚”ćƒŠćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(99951, 82462, 'no_lang_code', 'name', 'Fanuc (Japan)'),
(99952, 82463, 'en', 'name', 'National Institute of Animal Science'),
(99953, 82464, 'en', 'name', 'State Key Laboratory of Gas Disaster Detecting, Preventing and Emergency Controlling'),
(99954, 82464, 'zh', 'name', 'ē“¦ę–Æē¾å®³ē›‘ęŽ§äøŽåŗ”ę€„ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(99955, 82465, 'en', 'name', 'Jackson State Community College'),
(99956, 82466, 'en', 'name', 'Indonesia Defense University'),
(99957, 82466, 'id', 'name', 'Universitas Pertahanan Indonesia'),
(99958, 82467, 'en', 'name', 'State Administration of Work Safety'),
(99959, 82467, 'zh', 'name', 'å›½å®¶å®‰å…Øē”Ÿäŗ§ē›‘ē£ē®”ē†ę€»å±€'),
(99960, 82468, 'no_lang_code', 'name', 'PharmaZell (Germany)'),
(99961, 82469, 'en', 'name', 'American Society for Metabolic and Bariatric Surgery'),
(99962, 82470, 'en', 'name', 'Federal State Budgetary Institution of Science Federal Scientific Center "Vladikavkaz Scientific Center of the Russian Academy of Sciences"'),
(99963, 82470, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр «ВлаГикавказский Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской акаГемии наук»'),
(99964, 82471, 'pt', 'name', 'Centro UniversitƔrio UniProcessus'),
(99965, 82472, 'en', 'name', 'Museums Galleries Scotland'),
(99966, 82473, 'en', 'name', 'Japan Proton Accelerator Research Complex'),
(99967, 82473, 'ja', 'name', 'å¤§å¼·åŗ¦é™½å­åŠ é€Ÿå™Øę–½čØ­'),
(99968, 82474, 'es', 'name', 'Axencia Galega de Innovacion'),
(99969, 82475, 'en', 'name', 'Microscopy Society of America'),
(99970, 82476, 'en', 'name', 'Memorial Regional Medical Center'),
(99971, 82477, 'en', 'name', 'Desert Research Institute');
INSERT INTO `ror_settings` VALUES
(99972, 82478, 'no_lang_code', 'name', 'Danubius University'),
(99973, 82478, 'sk', 'name', 'VysokÔ Ŕkola Danubius'),
(99974, 82479, 'en', 'name', 'Dart Center for Journalism and Trauma'),
(99975, 82480, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾MTI'),
(99976, 82480, 'no_lang_code', 'name', 'Monohakobi Technology Institute (Japan)'),
(99977, 82481, 'en', 'name', 'Gas Technology Institute'),
(99978, 82482, 'no_lang_code', 'name', 'PAREXEL International (United States)'),
(99979, 82483, 'en', 'name', 'Kellogg Biological Station Long Term Ecological Research'),
(99980, 82484, 'de', 'name', 'Allgemeiner Deutscher Hochschulsportverband'),
(99981, 82484, 'en', 'name', 'German University Sports Federation'),
(99982, 82485, 'no_lang_code', 'name', 'ESI Group (Germany)'),
(99983, 82486, 'en', 'name', 'Markfield Institute of Higher Education'),
(99984, 82487, 'en', 'name', 'Krishna Institute of Medical Sciences Deemed University'),
(99985, 82488, 'en', 'name', 'Western Regional Hospital'),
(99986, 82489, 'no_lang_code', 'name', 'Alcon (Canada)'),
(99987, 82490, 'no_lang_code', 'name', 'Renovo Research (United States)'),
(99988, 82491, 'en', 'name', 'European Institute of Oncology'),
(99989, 82491, 'it', 'name', 'Istituto Europeo di Oncologia'),
(99990, 82492, 'en', 'name', 'Nordic Optical Telescope'),
(99991, 82493, 'en', 'name', 'The Retina Center'),
(99992, 82494, 'en', 'name', 'Argentine Antarctic Institute'),
(99993, 82494, 'es', 'name', 'Instituto AntƔrtico Argentino'),
(99994, 82495, 'en', 'name', 'Montreal Council on Foreign Relations'),
(99995, 82495, 'fr', 'name', 'Conseil des relations internationales de MontrƩal'),
(99996, 82496, 'en', 'name', 'Japanese Society of Anesthesiologist'),
(99997, 82496, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬éŗ»é…”ē§‘å­¦ä¼š'),
(99998, 82497, 'en', 'name', 'McGill Genome Centre'),
(99999, 82498, 'no_lang_code', 'name', 'CRV (Netherlands)'),
(100000, 82499, 'en', 'name', 'Canadian Centre for Electron Microscopy'),
(100001, 82500, 'en', 'name', 'Ministry of Education and Culture'),
(100002, 82501, 'sv', 'name', 'VƤrmlands LƤns Landsting'),
(100003, 82502, 'hi', 'name', 'ą¤øą¤æą¤Ŗą„ą¤²ą¤¾'),
(100004, 82502, 'no_lang_code', 'name', 'Cipla (India)'),
(100005, 82502, 'ta', 'name', 'ą®šą®æą®ŖąÆą®²ą®¾'),
(100006, 82503, 'nl', 'name', 'Stichting HIV Monitoring'),
(100007, 82504, 'no_lang_code', 'name', 'IBM (United Kingdom)'),
(100008, 82505, 'en', 'name', 'Konza Prairie Long Term Ecological Research'),
(100009, 82506, 'en', 'name', 'Health City Institute'),
(100010, 82507, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹å¤§é˜Ŗē—…é™¢'),
(100011, 82507, 'no_lang_code', 'name', 'Osaka Hospital'),
(100012, 82508, 'en', 'name', 'Then Try This'),
(100013, 82509, 'ja', 'name', 'ę—„ęœ¬å¤§å­¦ē—…é™¢'),
(100014, 82509, 'no_lang_code', 'name', 'Surugadai Nihon University Hospital'),
(100015, 82510, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³ŁˆŁ‡Ų§Ų¬'),
(100016, 82510, 'en', 'name', 'Sohag University'),
(100017, 82511, 'en', 'name', 'Hanazono University'),
(100018, 82511, 'ja', 'name', 'čŠ±åœ’å¤§å­¦'),
(100019, 82512, 'en', 'name', 'African Conservation Centre'),
(100020, 82513, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ΄γείας'),
(100021, 82513, 'en', 'name', 'Hellenic Health Foundation'),
(100022, 82514, 'en', 'name', 'International Academy of Business and New Technologies'),
(100023, 82514, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ бизнеса Šø новых технологий'),
(100024, 82515, 'en', 'name', 'Association of Southeast Asian Nations'),
(100025, 82516, 'en', 'name', 'TeamConnor Childhood Cancer Foundation'),
(100026, 82517, 'en', 'name', 'Palace Museum'),
(100027, 82517, 'zh', 'name', 'ę•…å®«åšē‰©é¦†'),
(100028, 82518, 'no_lang_code', 'name', 'Oxurion (Belgium)'),
(100029, 82519, 'he', 'name', '×›×Ø×ž×œ בע"מ'),
(100030, 82519, 'no_lang_code', 'name', 'Carmel (Israel)'),
(100031, 82520, 'en', 'name', 'The Mining, Geological & Metallurgical Insititute of India'),
(100032, 82521, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å¾®ē”Ÿē‰©åŒ–å­¦ē ”ē©¶ę‰€'),
(100033, 82521, 'no_lang_code', 'name', 'Kyoto Biken Laboratories (Japan)'),
(100034, 82522, 'en', 'name', 'Taiwan Clinical Oncology Research Foundation'),
(100035, 82522, 'zh', 'name', 'č²”åœ˜ę³•äŗŗå°ē£ē™Œē—‡č‡ØåŗŠē ”ē©¶ē™¼å±•åŸŗé‡‘ęœƒ'),
(100036, 82523, 'en', 'name', 'Baystate Health'),
(100037, 82524, 'no_lang_code', 'name', 'BG Medicine (United States)'),
(100038, 82525, 'no_lang_code', 'name', 'Mediprobe Research (Canada)'),
(100039, 82526, 'no_lang_code', 'name', 'Arrien Pharmaceuticals (United States)'),
(100040, 82527, 'ar', 'name', 'الجامعة Ų§Ł„Ł…ŲµŲ±ŁŠŲ© Ų§Ł„ŁŠŲ§ŲØŲ§Ł†ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ā€Ž'),
(100041, 82527, 'en', 'name', 'Egypt-Japan University of Science and Technology'),
(100042, 82528, 'de', 'name', 'Landesamt für Geologie, Rohstoffe und Bergbau'),
(100043, 82529, 'en', 'name', 'Maxima Medical Centre'),
(100044, 82529, 'nl', 'name', 'MƔxima Medisch Centrum'),
(100045, 82530, 'en', 'name', 'Tasmanian Land Conservancy'),
(100046, 82531, 'en', 'name', 'Kumamoto Prefectural Educaiton Center'),
(100047, 82531, 'ja', 'name', 'ē†Šęœ¬ēœŒē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(100048, 82532, 'en', 'name', 'Oregon Water Resources Department'),
(100049, 82533, 'no_lang_code', 'name', 'Nevro (United States)'),
(100050, 82534, 'en', 'name', 'Renown Regional Medical Center'),
(100051, 82535, 'en', 'name', 'Yebes Observatory'),
(100052, 82535, 'es', 'name', 'Centro Astronómico de Yebes'),
(100053, 82536, 'en', 'name', 'Interamerican Open University'),
(100054, 82536, 'es', 'name', 'Universidad Abierta Interamericana'),
(100055, 82537, 'ja', 'name', 'ę—„ę²¹ę Ŗå¼ä¼šē¤¾'),
(100056, 82537, 'no_lang_code', 'name', 'NOF Corporation (Japan)'),
(100057, 82538, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¢ćƒ«ćƒćƒƒć‚Æ'),
(100058, 82538, 'no_lang_code', 'name', 'Ulvac (Japan)'),
(100059, 82539, 'en', 'name', 'Main Astronomical Observatory'),
(100060, 82539, 'uk', 'name', 'Головна астрономічна Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€Ń–Ń'),
(100061, 82540, 'es', 'name', 'Ministerio de Ciencia, TecnologĆ­a y Medio Ambiente'),
(100062, 82541, 'en', 'name', 'National Clonal Germplasm Repository for Tree Fruit, Nut Crops, and Grapes'),
(100063, 82542, 'no_lang_code', 'name', 'Systems, Applications, and Products in Data Processing (Russia)'),
(100064, 82543, 'en', 'name', 'Jerzy Haber Institute of Catalysis and Surface Chemistry, Polish Academy of Sciences'),
(100065, 82543, 'pl', 'name', 'Instytut Katalizy i Fizykochemii Powierzchni im. Jerzego Habera Polskiej Akademii Nauk'),
(100066, 82544, 'no_lang_code', 'name', 'Genemo (United States)'),
(100067, 82545, 'en', 'name', 'Directorate of Health and Family Welfare Government of Chhattisgarh'),
(100068, 82545, 'hi', 'name', 'ą¤øą¤‚ą¤šą¤¾ą¤²ą¤Øą¤¾ą¤²ą¤Æ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤ą¤µą¤‚ परिवार ą¤•ą¤²ą„ą¤Æą¤¾ą¤£ विभाग ą¤›ą¤¤ą„ą¤¤ą„€ą¤øą¤—ą„ शासन'),
(100069, 82546, 'en', 'name', 'American Society of Association Executives'),
(100070, 82547, 'en', 'name', 'Mitsubishi Foundation'),
(100071, 82547, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø‰č±č²”å›£'),
(100072, 82548, 'en', 'name', 'Chronic Disease Research Foundation'),
(100073, 82549, 'en', 'name', 'State Nature Reserve "Bolshaya Kokshaga"'),
(100074, 82549, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ прироГный заповеГник Ā«Š‘Š¾Š»ŃŒŃˆŠ°Ń Кокшага»'),
(100075, 82550, 'en', 'name', 'Ethiopian Public Health Association'),
(100076, 82551, 'no_lang_code', 'name', 'Saddle Point Science (United Kingdom)'),
(100077, 82552, 'en', 'name', 'Dali University'),
(100078, 82552, 'zh', 'name', '大理学院'),
(100079, 82553, 'en', 'name', 'Sustainable Sciences Institute'),
(100080, 82554, 'en', 'name', 'University of Alaska Southeast'),
(100081, 82554, 'fr', 'name', 'UniversitƩ de l''alaska du sud-est'),
(100082, 82555, 'en', 'name', 'European Society for Clinical Nutrition and Metabolism'),
(100083, 82556, 'en', 'name', 'Bat Conservation Trust'),
(100084, 82557, 'en', 'name', 'Rizzoli Orthopaedic Institute'),
(100085, 82557, 'it', 'name', 'Istituto Ortopedico Rizzoli'),
(100086, 82558, 'en', 'name', 'Lincoln University College'),
(100087, 82559, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾čåŽŸč£½ä½œę‰€'),
(100088, 82559, 'no_lang_code', 'name', 'Ebara (Japan)'),
(100089, 82560, 'en', 'name', 'Afagh Higher Education Institute'),
(100090, 82560, 'fa', 'name', 'مؤسسه Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ آفاق'),
(100091, 82561, 'en', 'name', 'Beijing Municipal Ecological and Environmental Monitoring Center'),
(100092, 82561, 'zh', 'name', 'åŒ—äŗ¬åø‚ēŽÆå¢ƒäæęŠ¤ē›‘ęµ‹äø­åæƒ'),
(100093, 82562, 'en', 'name', 'Fulbright University Vietnam'),
(100094, 82562, 'vi', 'name', 'ĐẔi hį»c Fulbright Việt Nam'),
(100095, 82563, 'en', 'name', 'Brazilian Association of Scientific Editors'),
(100096, 82563, 'pt', 'name', 'Associação Brasileira de Editores Científicos'),
(100097, 82564, 'en', 'name', 'American Institute of Chemical Engineers'),
(100098, 82565, 'es', 'name', 'Centro de Documentación de las Artes Escénicas y de la Música'),
(100099, 82566, 'en', 'name', 'International Society of Automation'),
(100100, 82567, 'en', 'name', 'Primary HealthCare'),
(100101, 82568, 'en', 'name', 'Betanien Hospital'),
(100102, 82568, 'no', 'name', 'Betanien sykehus'),
(100103, 82569, 'no_lang_code', 'name', 'China Three Gorges Corporation (China)'),
(100104, 82569, 'zh', 'name', 'äø­å›½é•æę±Ÿäø‰å³”é›†å›¢å…¬åø'),
(100105, 82570, 'en', 'name', 'Climate Analytics'),
(100106, 82571, 'en', 'name', 'Jain Family Institute'),
(100107, 82572, 'en', 'name', 'Institute of International Politics and Economics'),
(100108, 82572, 'sr', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ЗА ŠœŠ•Š‚Š£ŠŠŠ ŠžŠ”ŠŠ£ ŠŸŠžŠ›Š˜Š¢Š˜ŠšŠ£ И ŠŸŠ Š˜Š’Š Š•Š”Š£'),
(100109, 82573, 'en', 'name', 'Institute of Geological Sciences'),
(100110, 82573, 'pl', 'name', 'Instytut Nauk Geologicznych'),
(100111, 82574, 'en', 'name', 'Unit of Functional and Adaptive Biology'),
(100112, 82575, 'en', 'name', 'University of the Ryukyus'),
(100113, 82575, 'ja', 'name', 'ē‰ēƒå¤§å­¦'),
(100114, 82576, 'en', 'name', 'Peking University First Hospital'),
(100115, 82577, 'en', 'name', 'Royal Meteorological Society'),
(100116, 82578, 'en', 'name', 'American Public Gardens Association'),
(100117, 82579, 'en', 'name', 'Ankara Spine Center'),
(100118, 82580, 'en', 'name', 'American Society for Colposcopy and Cervical Pathology'),
(100119, 82581, 'en', 'name', 'The Multiple Births Foundation'),
(100120, 82582, 'id', 'name', 'Institut Agama Islam Negeri Bukittinggi'),
(100121, 82583, 'ar', 'name', 'المعهد Ų§Ł„Ł‚ŁˆŁ…Ł‰ Ł„Ł„Ł‚ŁŠŲ§Ų³ ŁˆŲ§Ł„Ł…Ų¹Ų§ŁŠŲ±Ų©'),
(100122, 82583, 'en', 'name', 'National Institute of Standards'),
(100123, 82584, 'en', 'name', 'Technological University of North Tamaulipas'),
(100124, 82584, 'es', 'name', 'Universidad Tecnológica de Tamaulipas Norte'),
(100125, 82585, 'en', 'name', 'Canadian Association for Laboratory Animal Science'),
(100126, 82585, 'fr', 'name', 'L’Association Canadienne de la MĆ©decine des Animaux de Laboratoire'),
(100127, 82586, 'en', 'name', 'American Society for Clinical Pathology'),
(100128, 82587, 'fr', 'name', 'Centre Hospitalier Sud-Essonne Dourdan-Etampes'),
(100129, 82588, 'en', 'name', 'Osaka Institute of Technology'),
(100130, 82588, 'ja', 'name', '大阪巄愭大学'),
(100131, 82589, 'en', 'name', 'International City/County Management Association'),
(100132, 82590, 'de', 'name', 'Institut für Empirische Gesundheitsökonomie'),
(100133, 82590, 'en', 'name', 'Institute of Empirical Health Economics'),
(100134, 82591, 'en', 'name', 'Beef Farmers of Ontario'),
(100135, 82592, 'no_lang_code', 'name', 'Waves Audio (Israel)'),
(100136, 82593, 'pt', 'name', 'Hospital UniversitÔrio Polydoro Ernani de São Thiago, Polydoro Ernani de São Thiago University Hospital'),
(100137, 82594, 'en', 'name', 'Norwegian Food Safety Authority'),
(100138, 82595, 'en', 'name', 'Ottawa Allergy Research Corporation'),
(100139, 82596, 'no_lang_code', 'name', 'Acadia Pharmaceuticals (United States)'),
(100140, 82597, 'en', 'name', 'Committee on Publication Ethics'),
(100141, 82598, 'en', 'name', 'Virginia Academy of Science'),
(100142, 82599, 'en', 'name', 'BreastScreen WA'),
(100143, 82600, 'nl', 'name', 'Ziekenhuis Nij Smellinghe'),
(100144, 82601, 'en', 'name', 'Heilongjiang Bayi Agricultural University'),
(100145, 82602, 'es', 'name', 'Universidad de MedellĆ­n'),
(100146, 82603, 'en', 'name', 'Nord University'),
(100147, 82604, 'en', 'name', 'Wildlife Conservation Society Uganda'),
(100148, 82605, 'en', 'name', 'Shanghai Key Laboratory of Trustworthy Computing'),
(100149, 82605, 'zh', 'name', 'äøŠęµ·åø‚é«˜åÆäæ”č®”ē®—é‡ē‚¹å®žéŖŒå®¤'),
(100150, 82606, 'en', 'name', 'MRC Integrative Epidemiology Unit'),
(100151, 82607, 'en', 'name', 'RIKEN Advanced Science Institute'),
(100152, 82607, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€'),
(100153, 82608, 'no_lang_code', 'name', 'Purdue Pharma (United States)'),
(100154, 82609, 'es', 'name', 'CartogrƔfica de Canarias'),
(100155, 82610, 'en', 'name', 'Queen Elisabeth Medical Foundation'),
(100156, 82611, 'en', 'name', 'Heilongjiang University of Science and Technology'),
(100157, 82611, 'zh', 'name', 'é»‘é¾™ę±Ÿå·„ēØ‹å­¦é™¢'),
(100158, 82612, 'en', 'name', 'The Northern Ireland Cancer Centre'),
(100159, 82613, 'en', 'name', 'Alberta Gambling Research Institute'),
(100160, 82614, 'en', 'name', 'Middlesex University'),
(100161, 82615, 'en', 'name', 'Wasage Divers'),
(100162, 82616, 'en', 'name', 'Sleep Comprehensive Care Clinic Yoyogi'),
(100163, 82616, 'ja', 'name', 'ē”ēœ ē·åˆć‚±ć‚¢ć‚ÆćƒŖćƒ‹ćƒƒć‚Æä»£ć€…ęœØćÆ'),
(100164, 82617, 'en', 'name', 'Nutrifood'),
(100165, 82618, 'no_lang_code', 'name', 'Okmetic (Finland)'),
(100166, 82619, 'en', 'name', 'Canadian Electricity Association'),
(100167, 82619, 'fr', 'name', 'Association canadienne de l''ƩlectricitƩ'),
(100168, 82620, 'en', 'name', 'Voronezh Institute of the Federal Penitentiary Service of Russia'),
(100169, 82620, 'ru', 'name', 'Воронежский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¤Š”Š˜Š России'),
(100170, 82621, 'ja', 'name', 'ć‚¢ć‚ŗćƒ“ćƒ«ę Ŗå¼ä¼šē¤¾'),
(100171, 82621, 'no_lang_code', 'name', 'Azbil (Japan)'),
(100172, 82622, 'en', 'name', 'New York Academy of Sciences'),
(100173, 82623, 'ko', 'name', 'ģ§€ė†ˆģøģ‚¬ģ“ķŠøėŠ”'),
(100174, 82623, 'no_lang_code', 'name', 'Genome Insight (South Korea)'),
(100175, 82624, 'en', 'name', 'MarĆ­a Auxiliadora University'),
(100176, 82624, 'es', 'name', 'Universidad MarĆ­a Auxiliadora'),
(100177, 82625, 'no_lang_code', 'name', 'Metrica (United States)'),
(100178, 82626, 'no_lang_code', 'name', 'Color (United States)'),
(100179, 82627, 'en', 'name', 'American Society of Agronomy'),
(100180, 82628, 'en', 'name', 'Ghana College of Physicians and Surgeons'),
(100181, 82629, 'en', 'name', 'Carpathian National Nature Park'),
(100182, 82629, 'uk', 'name', 'ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГний парк'),
(100183, 82630, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ»ć‚Øćƒ ćƒ»ć‚Øć‚¹'),
(100184, 82630, 'no_lang_code', 'name', 'JMS (Japan)'),
(100185, 82631, 'en', 'name', 'Church of Ireland Theological Institute'),
(100186, 82632, 'no_lang_code', 'name', 'PVD Products (United States)'),
(100187, 82633, 'fr', 'name', 'Centre de SantƩ et de Services Sociaux de Chicoutimi'),
(100188, 82634, 'en', 'name', 'Dr. Ram Manohar Lohia Institute of Medical Sciences'),
(100189, 82635, 'fi', 'name', 'Fimlab Laboratoriot'),
(100190, 82635, 'no_lang_code', 'name', 'Fimlab (Finland)'),
(100191, 82636, 'en', 'name', 'Children''s Cancer Association of Japan'),
(100192, 82636, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćŒć‚“ć®å­ć©ć‚‚ć‚’å®ˆć‚‹ä¼š'),
(100193, 82637, 'en', 'name', 'Long Island University'),
(100194, 82637, 'fr', 'name', 'UniversitƩ de Long Island'),
(100195, 82638, 'en', 'name', 'Fauna and Flora International'),
(100196, 82639, 'no_lang_code', 'name', 'ESI Group (United States)'),
(100197, 82640, 'en', 'name', 'Delta State University'),
(100198, 82641, 'en', 'name', 'Adolfo IbƔƱez University'),
(100199, 82641, 'es', 'name', 'Universidad Adolfo IbƔƱez'),
(100200, 82642, 'no_lang_code', 'name', 'Acide Carbonique Pur (Belgium)'),
(100201, 82643, 'ja', 'name', 'ę±čŠ'),
(100202, 82643, 'no_lang_code', 'name', 'Toshiba (Japan)'),
(100203, 82644, 'en', 'name', 'Institute of Radiobiology of NAS of Belarus'),
(100204, 82644, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиобиологии ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(100205, 82645, 'en', 'name', 'Lakeland University Japan'),
(100206, 82646, 'en', 'name', 'Oeschger Centre for Climate Change Research'),
(100207, 82647, 'fr', 'name', 'MƩtƩorage'),
(100208, 82648, 'da', 'name', 'Sydvestjyske Museer'),
(100209, 82648, 'en', 'name', 'Museum of Southwest Jutland'),
(100210, 82649, 'no_lang_code', 'name', 'Centre de Recherche Industrielle du QuƩbec'),
(100211, 82650, 'en', 'name', 'European Society of Radiology'),
(100212, 82651, 'no_lang_code', 'name', 'International Scientific Network'),
(100213, 82652, 'en', 'name', 'Busara Center for Behavioral Economics'),
(100214, 82653, 'en', 'name', 'University of Mumbai'),
(100215, 82653, 'fr', 'name', 'UniversitƩ de mumbai'),
(100216, 82653, 'hi', 'name', 'ą¤®ą„ą¤‚ą¤¬ą¤ˆ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(100217, 82653, 'ta', 'name', 'ą®®ąÆą®®ąÆą®ŖąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(100218, 82653, 'te', 'name', 'ముంబయి ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(100219, 82654, 'no_lang_code', 'name', 'Otolith Labs (United States)'),
(100220, 82655, 'no_lang_code', 'name', 'Wikimedia Foundation'),
(100221, 82656, 'en', 'name', 'Cardiovascular Institute Hospital'),
(100222, 82656, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåæƒč‡“č”€ē®”ē ”ē©¶ę‰€'),
(100223, 82657, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šē¦äŗ•ēœŒęøˆē”Ÿä¼šē—…é™¢'),
(100224, 82657, 'no_lang_code', 'name', 'Fukui-ken Saiseikai Hospital'),
(100225, 82658, 'en', 'name', 'Louis Pasteur Center for Medical Research'),
(100226, 82658, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ«ć‚¤ćƒ»ćƒ‘ć‚¹ćƒˆć‚„ćƒ¼ćƒ«åŒ»å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(100227, 82659, 'en', 'name', 'Ukrainian Research Institute of Transport Medicine'),
(100228, 82659, 'uk', 'name', 'Украинский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицины транспорта'),
(100229, 82660, 'en', 'name', 'Flanders Innovation and Entrepreneurship'),
(100230, 82660, 'nl', 'name', 'Agentschap Innoveren & Ondernemen'),
(100231, 82661, 'de', 'name', 'Institut für Weltwirtschaft'),
(100232, 82661, 'en', 'name', 'Kiel Institute for the World Economy'),
(100233, 82662, 'no_lang_code', 'name', 'Isomer Design (Canada)'),
(100234, 82663, 'en', 'name', 'African Population and Health Research Center'),
(100235, 82664, 'no_lang_code', 'name', 'Chemstations (United States)'),
(100236, 82665, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę¾„åæƒä¼šč±Šę©‹ćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(100237, 82665, 'no_lang_code', 'name', 'Toyohashi Heart Center'),
(100238, 82666, 'en', 'name', 'Institute of Policy Studies of Sri Lanka'),
(100239, 82667, 'en', 'name', 'Caucasian State Natural Biosphere Reserve named after Kh.G. Shaposhnikov'),
(100240, 82667, 'ru', 'name', 'Кавказский Š³Š¾ŃŃƒŠ“арственный прироГный биосферный заповеГник имени Š„.Š“.Шапошникова'),
(100241, 82668, 'no_lang_code', 'name', 'Oxford University Press (United Kingdom)'),
(100242, 82669, 'en', 'name', 'American College Testing'),
(100243, 82670, 'no_lang_code', 'name', 'Synthace (United Kingdom)'),
(100244, 82671, 'en', 'name', 'Sunshine Hospital'),
(100245, 82672, 'en', 'name', 'Institute of General & Endovascular Neurosurgery'),
(100246, 82673, 'en', 'name', 'Kalmar County Council'),
(100247, 82673, 'sv', 'name', 'Landstinget i Kalmar lƤn'),
(100248, 82674, 'no_lang_code', 'name', 'Therachem Research Medilab (India)'),
(100249, 82675, 'en', 'name', 'Great Lakes Adaptive Sports Association'),
(100250, 82676, 'en', 'name', 'Royal University of Agriculture, Cambodia'),
(100251, 82676, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž—įž¼įž˜įž·įž“įŸ’įž‘įž€įžŸįž·įž€įž˜įŸ’įž˜'),
(100252, 82677, 'no_lang_code', 'name', 'Ceinge Biotecnologie Avanzate (Italy)'),
(100253, 82678, 'no_lang_code', 'name', 'Myriad (Germany)'),
(100254, 82679, 'no_lang_code', 'name', 'Chongqing 2D Materials Institute (China)'),
(100255, 82680, 'en', 'name', 'Armed Forces College of Medicine'),
(100256, 82681, 'ja', 'name', 'KAGRA å¤§åž‹ä½Žęø©é‡åŠ›ę³¢ęœ›é é”'),
(100257, 82681, 'no_lang_code', 'name', 'KAGRA'),
(100258, 82682, 'no_lang_code', 'name', 'NanoPHAB (Netherlands)'),
(100259, 82683, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ć‚§ćƒ‹ćƒƒć‚Æć‚¹ćƒć‚¤ć‚Ŗ'),
(100260, 82683, 'no_lang_code', 'name', 'PhoenixBio (Japan)'),
(100261, 82684, 'no_lang_code', 'name', 'Liberate Science'),
(100262, 82685, 'en', 'name', 'Prison Advice and Care Trust'),
(100263, 82686, 'no_lang_code', 'name', 'Atuka (Canada)'),
(100264, 82687, 'en', 'name', 'Academic City College University'),
(100265, 82688, 'en', 'name', 'Mahatma Gandhi Memorial Hospital'),
(100266, 82689, 'no_lang_code', 'name', 'PowerPhotonic (United Kingdom)'),
(100267, 82690, 'en', 'name', 'Digital Repository of Ireland'),
(100268, 82690, 'ga', 'name', 'Taisclann Dhigiteach na hƉireann'),
(100269, 82691, 'en', 'name', 'Tamil Virtual Academy'),
(100270, 82691, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆ ą®‡ą®£ąÆˆą®Æą®•ąÆ ą®•ą®²ąÆą®µą®æą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(100271, 82692, 'ja', 'name', 'ę¾č°·åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(100272, 82692, 'no_lang_code', 'name', 'Matsutani (Japan)'),
(100273, 82693, 'en', 'name', 'Minnesota Geological Survey'),
(100274, 82694, 'no_lang_code', 'name', 'Computable Publishing'),
(100275, 82695, 'en', 'name', 'Institute of Biophysics'),
(100276, 82696, 'en', 'name', 'University of New Orleans'),
(100277, 82696, 'fr', 'name', 'UniversitƩ de la nouvelle-orlƩans'),
(100278, 82697, 'no_lang_code', 'name', 'Domtar (Canada)'),
(100279, 82698, 'en', 'name', 'Electronics Testing Center'),
(100280, 82699, 'no_lang_code', 'name', 'Medizinisch Wissenschaftliche Verlagsgesellschaft (Germany)'),
(100281, 82700, 'en', 'name', 'Hellenic Parliament'),
(100282, 82701, 'en', 'name', 'Institute of Biochemistry and Biophysics, Polish Academy of Sciences'),
(100283, 82701, 'pl', 'name', 'Instytut Biochemii i Biofizyki Polskiej Akademii Nauk'),
(100284, 82702, 'en', 'name', 'The Priory Hospital'),
(100285, 82703, 'en', 'name', 'Soweto CTC'),
(100286, 82704, 'en', 'name', 'Rehabilitation Foundation'),
(100287, 82704, 'fi', 'name', 'KuntoutussƤƤtiƶ'),
(100288, 82705, 'en', 'name', 'Fairchild Tropical Botanic Garden'),
(100289, 82706, 'no_lang_code', 'name', 'Molecular Pathology Centre Cellgen'),
(100290, 82706, 'pl', 'name', 'Centrum Patologii Molekularnej Cellgen'),
(100291, 82707, 'bs', 'name', 'Federalno Ministarstvo Obrazovanja i Nauke'),
(100292, 82708, 'no_lang_code', 'name', 'ELSA'),
(100293, 82709, 'en', 'name', 'Northamptonshire Healthcare NHS Foundation Trust'),
(100294, 82710, 'en', 'name', 'Peking University People''s Hospital'),
(100295, 82710, 'zh', 'name', 'åŒ—äŗ¬å¤§å­¦äŗŗę°‘åŒ»é™¢'),
(100296, 82711, 'no_lang_code', 'name', 'XBiotech (United States)'),
(100297, 82712, 'no_lang_code', 'name', 'Sinotech Genomics (China)'),
(100298, 82712, 'zh', 'name', 'äø­ē§‘ę™®ē‘ž'),
(100299, 82713, 'en', 'name', 'Busitema University'),
(100300, 82714, 'en', 'name', 'Łukasiewicz Research Network - Institute of Heavy Organic Synthesis "Blachownia"'),
(100301, 82714, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Instytut Ciężkiej Syntezy Organicznej "Blachownia"'),
(100302, 82715, 'no_lang_code', 'name', 'Ahava (Israel)'),
(100303, 82716, 'no_lang_code', 'name', 'Fixstars Solutions (United States)'),
(100304, 82717, 'en', 'name', 'Pryazovskyi National Nature Park'),
(100305, 82717, 'uk', 'name', 'ŠŸŃ€ŠøŠ°Š·Š¾Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ прироГний парк'),
(100306, 82718, 'en', 'name', 'Stanley Foundation'),
(100307, 82719, 'en', 'name', 'Eden Medical Center'),
(100308, 82720, 'en', 'name', 'Gothenburg Botanic Garden'),
(100309, 82720, 'sv', 'name', 'Gƶteborgs Botaniska TrƤdgƄrd'),
(100310, 82721, 'en', 'name', 'Heritage Christian College'),
(100311, 82722, 'no_lang_code', 'name', 'HistoGeneX (Belgium)'),
(100312, 82723, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå²©č°·ē›“ę²»čØ˜åæµč²”å›£'),
(100313, 82723, 'no_lang_code', 'name', 'Iwatani Naoji Foundation'),
(100314, 82724, 'no_lang_code', 'name', 'Alcon (India)'),
(100315, 82725, 'en', 'name', 'Flone Initiative Trust'),
(100316, 82726, 'en', 'name', 'Academy of Engineering Sciences of Serbia'),
(100317, 82726, 'sr', 'name', 'АкаГемија ŠøŠ½Š¶ŠµŃšŠµŃ€ŃŠŗŠøŃ… наука Š”Ń€Š±ŠøŃ˜Šµ'),
(100318, 82727, 'en', 'name', 'Pyatigorsk Medical and Pharmaceutical Institute - branch of Volgograd State Medical University'),
(100319, 82727, 'ru', 'name', 'ŠŸŃŃ‚ŠøŠ³Š¾Ń€ŃŠŗŠøŠ¹ меГико-фармацевтический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ – филиал ВолгограГского Š³Š¾ŃŃƒŠ“арственного меГицинского ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100320, 82728, 'en', 'name', 'West Coast Fertility Centers'),
(100321, 82729, 'no_lang_code', 'name', 'Mahonia Na Dari – Guardian of the Sea'),
(100322, 82730, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¤ćƒ»ć‚¤ćƒ¼ćƒ»ć‚Øć‚¹'),
(100323, 82730, 'no_lang_code', 'name', 'Advanced Engineering Services (Japan)'),
(100324, 82731, 'en', 'name', 'Duta Wacana Christian University'),
(100325, 82731, 'id', 'name', 'Universitas Kristen Duta Wacana'),
(100326, 82732, 'en', 'name', 'Hospital District of Southwest Finland'),
(100327, 82732, 'fi', 'name', 'Varsinais-Suomen Sairaanhoitopiiri'),
(100328, 82733, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ•ćƒ„ćƒ¼ć‚Øćƒ³ć‚¹'),
(100329, 82733, 'no_lang_code', 'name', 'Fuence (Japan)'),
(100330, 82734, 'en', 'name', 'Ministry of Sports'),
(100331, 82735, 'no_lang_code', 'name', 'Hikari Giken (Japan)'),
(100332, 82736, 'en', 'name', 'Łukasiewicz Research Network'),
(100333, 82736, 'pl', 'name', 'Sieć Badawcza Łukasiewicz'),
(100334, 82737, 'en', 'name', 'Ştefan cel Mare Police Academy'),
(100335, 82737, 'ro', 'name', 'Academia "Ștefan cel Mare" a Ministerului Afacerilor Interne'),
(100336, 82738, 'de', 'name', 'Ɩsterreichische Galerie Belvedere'),
(100337, 82739, 'en', 'name', 'Advanced Center for Chronic Diseases'),
(100338, 82740, 'ja', 'name', 'ę—„ęœ¬ćƒ¦ćƒ‹ć‚·ć‚¹ę Ŗå¼ä¼šē¤¾'),
(100339, 82740, 'no_lang_code', 'name', 'Nihon Unisys (Japan)'),
(100340, 82741, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£ē·åˆē—…é™¢č–éš·ęµœę¾ē—…é™¢'),
(100341, 82741, 'no_lang_code', 'name', 'Seirei Hamamatsu General Hospital'),
(100342, 82742, 'no_lang_code', 'name', 'Heidelberg Pharma (Germany)'),
(100343, 82743, 'en', 'name', 'Private University of Huancayo "Franklin Roosevelt"'),
(100344, 82743, 'es', 'name', 'Universidad Privada de Huancayo "Franklin Roosevelt"'),
(100345, 82744, 'en', 'name', 'University Grants Commission Sri Lanka'),
(100346, 82744, 'si', 'name', 'ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ ą¶“ą·Šā€ą¶»ą¶­ą·’ą¶“ą·ą¶Æą¶± ą¶šą·œą¶øą·’ą·‚ą¶±ą·Š ą·ƒą¶·ą·ą·€ - ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą·'),
(100347, 82744, 'ta', 'name', 'ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®• ą®®ą®¾ą®©ą®æą®Æą®™ąÆą®•ą®³ąÆ ą®†ą®£ąÆˆą®•ąÆą®•ąÆą®“ąÆ'),
(100348, 82745, 'en', 'name', 'Association of Community Cancer Centers'),
(100349, 82746, 'pt', 'name', 'Centro De Medicina VeterinƔria Anjos De Assis'),
(100350, 82747, 'en', 'name', 'Advocate Illinois Masonic Medical Center'),
(100351, 82748, 'no_lang_code', 'name', 'Occidental Petroleum (United States)'),
(100352, 82749, 'en', 'name', 'Research Centre for Astronomy and Earth Sciences'),
(100353, 82749, 'hu', 'name', 'CsillagÔszati és FöldtudomÔnyi Kutatóközpont'),
(100354, 82750, 'en', 'name', 'Chinese National Engineering Research Center for Control and Treatment of Heavy Metal Pollution'),
(100355, 82751, 'en', 'name', 'National Centre for Earth Observation'),
(100356, 82752, 'de', 'name', 'Berlin-Brandenburger Centrum für Regenerative Therapien'),
(100357, 82753, 'en', 'name', 'Wham Lab'),
(100358, 82754, 'en', 'name', 'National Research Centre for Georgian Art History and Heritage Preservation'),
(100359, 82754, 'ka', 'name', 'įƒ’įƒ˜įƒįƒ įƒ’įƒ˜ įƒ©įƒ£įƒ‘įƒ˜įƒœįƒįƒØįƒ•įƒ˜įƒšįƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒįƒ‘įƒ˜įƒ” įƒ„įƒįƒ įƒ—įƒ£įƒšįƒ˜ įƒ®įƒ”įƒšįƒįƒ•įƒœįƒ”įƒ‘įƒ˜įƒ” įƒ˜įƒ”įƒ¢įƒįƒ įƒ˜įƒ˜įƒ”įƒ įƒ“įƒ įƒ«įƒ”įƒ’įƒšįƒ—įƒ įƒ“įƒįƒŖįƒ•įƒ˜įƒ” įƒ™įƒ•įƒšįƒ”įƒ•įƒ˜įƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜'),
(100360, 82755, 'en', 'name', 'The National Databank for Rheumatic Diseases'),
(100361, 82756, 'en', 'name', 'Center for Advanced Energy Studies'),
(100362, 82757, 'en', 'name', 'China-Japan Friendship Hospital'),
(100363, 82757, 'zh', 'name', 'äø­ę—„å‹å„½åŒ»é™¢'),
(100364, 82758, 'en', 'name', 'Ningbo University of Technology'),
(100365, 82759, 'en', 'name', 'Hybrid Rapeseed Research Center of Shaanxi Province'),
(100366, 82759, 'zh', 'name', 'é™•č„æēœę‚äŗ¤ę²¹čœē ”ē©¶äø­åæƒ'),
(100367, 82760, 'en', 'name', 'Sunagawa City Medical Center'),
(100368, 82760, 'ja', 'name', 'ē ‚å·åø‚ē«‹ē—…é™¢'),
(100369, 82761, 'no_lang_code', 'name', 'Defence Materials Technology Centre (Australia)'),
(100370, 82762, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹ę±åŒ—åŠ“ē½ē—…é™¢'),
(100371, 82762, 'no_lang_code', 'name', 'Tohoku Rosai Hospital'),
(100372, 82763, 'no_lang_code', 'name', 'EstƔtikos (Brazil)'),
(100373, 82764, 'de', 'name', 'Hirslanden Klinik Birshof'),
(100374, 82765, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ–å­¦åŠč”€ęø…ē™‚ę³•ē ”ē©¶ę‰€'),
(100375, 82765, 'no_lang_code', 'name', 'Kaketsuken (Japan)'),
(100376, 82766, 'en', 'name', 'Sankalchand Patel University'),
(100377, 82767, 'en', 'name', 'Flaget Memorial Hospital'),
(100378, 82768, 'en', 'name', 'Baptist Memorial Hospital for Women'),
(100379, 82769, 'no_lang_code', 'name', 'Xiamen Tungsten (China)'),
(100380, 82770, 'no_lang_code', 'name', 'Achieve Life Sciences (Canada)'),
(100381, 82771, 'en', 'name', 'Edmund Mach Foundation'),
(100382, 82771, 'it', 'name', 'Fondazione Edmund Mach'),
(100383, 82772, 'en', 'name', 'Virginia Office of Intergovernmental Affairs'),
(100384, 82773, 'nl', 'name', 'Ziekenhuis Gelderse Vallei'),
(100385, 82774, 'en', 'name', 'University of Minnesota Health Maple Grove Clinics'),
(100386, 82775, 'en', 'name', 'International Glaucoma Association'),
(100387, 82776, 'en', 'name', 'Contra Costa Regional Medical Center'),
(100388, 82777, 'en', 'name', 'Xi''an University of Technology'),
(100389, 82777, 'zh', 'name', '脿安理巄大学'),
(100390, 82778, 'en', 'name', 'Institute for Musculoskeletal Health'),
(100391, 82779, 'en', 'name', 'Iowa Department of Natural Resources'),
(100392, 82780, 'no_lang_code', 'name', 'Digital Preservation Coalition (United Kingdom)'),
(100393, 82781, 'en', 'name', 'Botswana Geoscience Institute'),
(100394, 82782, 'en', 'name', 'University of Magdalena'),
(100395, 82782, 'es', 'name', 'Universidad del Magdalena'),
(100396, 82783, 'en', 'name', 'Vivekananda Global University'),
(100397, 82784, 'ms', 'name', 'Hospital Kemaman'),
(100398, 82785, 'en', 'name', 'Canadian Public Health Association'),
(100399, 82786, 'en', 'name', 'Pain Management Centers Of America'),
(100400, 82787, 'en', 'name', 'Lincoln Public Library'),
(100401, 82788, 'en', 'name', 'NanoMedicines Innovation Network'),
(100402, 82789, 'de', 'name', 'Institut zur QualitƤtsentwicklung im Bildungswesen'),
(100403, 82789, 'en', 'name', 'Institute for Educational Quality Improvement'),
(100404, 82790, 'id', 'name', 'Universitas Dharmas Indonesia'),
(100405, 82791, 'en', 'name', 'Lewis Clark State College, Lewis–Clark State College'),
(100406, 82792, 'en', 'name', 'Glycodisplay'),
(100407, 82793, 'en', 'name', 'TMG Research'),
(100408, 82794, 'en', 'name', 'Vodlozersky National Park'),
(100409, 82794, 'ru', 'name', 'ВоГлозерский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк'),
(100410, 82795, 'en', 'name', 'China University of Labor Relations'),
(100411, 82795, 'zh', 'name', 'äø­å›½åŠ³åŠØå…³ē³»å­¦é™¢'),
(100412, 82796, 'en', 'name', 'Pancreatic Cancer Canada Foundation'),
(100413, 82797, 'sv', 'name', 'Norrbottens lƤns Landsting'),
(100414, 82798, 'no_lang_code', 'name', 'Blacktrace (United Kingdom)'),
(100415, 82799, 'no_lang_code', 'name', 'BridgeBio (United States)'),
(100416, 82800, 'en', 'name', 'Irish Children''s Arthritis Network'),
(100417, 82801, 'en', 'name', 'Chettinad Academy of Research and Education'),
(100418, 82801, 'ta', 'name', 'ą®šąÆ†ą®ŸąÆą®Ÿą®æą®Øą®¾ą®ŸąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(100419, 82802, 'en', 'name', 'LOEWE Centre for Translational Biodiversity Genomics'),
(100420, 82803, 'en', 'name', 'North Carolina Department of Agriculture and Consumer Services'),
(100421, 82804, 'en', 'name', 'Collegio Carlo Alberto'),
(100422, 82805, 'de', 'name', 'Fraunhofer-Einrichtung für Individualisierte und Zellbasierte Medizintechnik, Fraunhofer-Einrichtung für Marine Biotechnologie und Zelltechnik'),
(100423, 82805, 'en', 'name', 'Fraunhofer Research Institution for Individualized and Cell-Based Medical Engineering'),
(100424, 82806, 'no_lang_code', 'name', 'Tianmu Lake Institute of Advanced Energy Storage Technologies (China)'),
(100425, 82807, 'en', 'name', 'Huntington Hospital'),
(100426, 82808, 'no_lang_code', 'name', 'Nucana (United Kingdom)'),
(100427, 82809, 'en', 'name', 'ARC Centre of Excellence for Automated Decision-Making and Society'),
(100428, 82810, 'no_lang_code', 'name', 'e-Watchdog'),
(100429, 82811, 'no_lang_code', 'name', 'ProQuest (United States)'),
(100430, 82812, 'en', 'name', 'Shri Lakshmi Clinic & Scan Centre'),
(100431, 82813, 'bn', 'name', 'ą¦‰ą¦¤ą§ą¦¤ą¦°ą¦¬ą¦™ą§ą¦— ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(100432, 82813, 'en', 'name', 'North Bengal University'),
(100433, 82814, 'no_lang_code', 'name', 'Atlas Copco (Germany)'),
(100434, 82815, 'es', 'name', 'Asociación Española de Urología'),
(100435, 82816, 'it', 'name', 'IRCCS Ospedale San Raffaele'),
(100436, 82817, 'en', 'name', 'Canberra Aesthetic Plastic Surgery Clinic'),
(100437, 82818, 'es', 'name', 'CEVAXIN'),
(100438, 82819, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Æćƒ¬ćƒ'),
(100439, 82819, 'no_lang_code', 'name', 'Kureha (Japan)'),
(100440, 82820, 'en', 'name', 'Shinshu University Hospital'),
(100441, 82820, 'ja', 'name', 'äæ”å·žå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(100442, 82821, 'no_lang_code', 'name', 'Nkarta Therapeutics (United States)'),
(100443, 82822, 'no_lang_code', 'name', 'Genevention (Germany)'),
(100444, 82823, 'es', 'name', 'Centro de OrnitologĆ­a y Biodiversidad'),
(100445, 82824, 'en', 'name', 'Biofuel Research Team'),
(100446, 82825, 'ja', 'name', 'ć‚¢ćƒ”ę Ŗå¼ä¼šē¤¾'),
(100447, 82825, 'no_lang_code', 'name', 'API (Japan)'),
(100448, 82826, 'no_lang_code', 'name', 'Loxo Oncology at Lilly (United States)'),
(100449, 82827, 'en', 'name', 'Light Metal Educational Foundation'),
(100450, 82827, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč»½é‡‘å±žå„Øå­¦ä¼š'),
(100451, 82828, 'en', 'name', 'Council for Scientific and Industrial Research'),
(100452, 82829, 'en', 'name', 'State Scientific Center of the Russian Federation - Federal Medical Biophysical Center named after A.I. Burnazyan'),
(100453, 82829, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Российской ФеГерации – Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский биофизический центр имени А.И. Š‘ŃƒŃ€Š½Š°Š·ŃŠ½Š°'),
(100454, 82830, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šå‘‰å…±ęøˆē—…é™¢'),
(100455, 82830, 'no_lang_code', 'name', 'Kure Kyosai Hospital'),
(100456, 82831, 'en', 'name', 'Udmurt Federal Research Center, Ural Branch of the Russian Academy of Sciences'),
(100457, 82831, 'ru', 'name', 'Š£Š“Š¼ŃƒŃ€Ń‚ŃŠŗŠøŠ¹ Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр'),
(100458, 82832, 'en', 'name', 'Kamchatka State University named after Vitus Bering'),
(100459, 82832, 'ru', 'name', 'ŠšŠ°Š¼Ń‡Š°Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’ŠøŃ‚ŃƒŃŠ° Беринга'),
(100460, 82833, 'de', 'name', 'Evangelisches Waldkrankenhaus Spandau'),
(100461, 82833, 'en', 'name', 'Waldkrankenhaus Protestant Hospital'),
(100462, 82834, 'no_lang_code', 'name', 'ESI Group (Czechia)'),
(100463, 82835, 'en', 'name', 'Canadian Foundation for Pharmacy'),
(100464, 82836, 'en', 'name', 'West Texas Retina Consultants'),
(100465, 82837, 'en', 'name', 'Maine Community College System'),
(100466, 82838, 'no_lang_code', 'name', 'Phenikaa University'),
(100467, 82838, 'vi', 'name', 'ĐẔi hį»c PHENIKAA'),
(100468, 82839, 'da', 'name', 'MiljĆøministeriet'),
(100469, 82839, 'en', 'name', 'Danish Ministry of Environment'),
(100470, 82840, 'en', 'name', 'International Nemrud Foundation'),
(100471, 82841, 'fr', 'name', 'Laboratoire d''Electrochimie MolƩculaire'),
(100472, 82842, 'en', 'name', 'Crop Science Research Laboratory'),
(100473, 82843, 'cy', 'name', 'Bwrdd Iechyd Prifysgol Betsi Cadwaladr'),
(100474, 82843, 'en', 'name', 'Betsi Cadwaladr University Health Board'),
(100475, 82844, 'en', 'name', 'Shanghai Institute of Planned Parenthood Research'),
(100476, 82844, 'zh', 'name', 'äøŠęµ·åø‚č®”åˆ’ē”Ÿč‚²ē§‘å­¦ē ”ē©¶ę‰€'),
(100477, 82845, 'en', 'name', 'Yamagata Research Institute Of Technology'),
(100478, 82845, 'ja', 'name', 'å±±å½¢ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(100479, 82846, 'en', 'name', 'United Soybean Board'),
(100480, 82847, 'en', 'name', 'Niigata University Medical and Dental Hospital'),
(100481, 82847, 'ja', 'name', 'ę–°ę½Ÿå¤§å­¦åŒ»ę­Æå­¦ē·åˆē—…é™¢'),
(100482, 82848, 'no_lang_code', 'name', 'Shenzhen Planck Innovation (China)'),
(100483, 82848, 'zh', 'name', 'ę·±åœ³ę‰‘ęµŖåˆ›ę–°ē§‘ęŠ€'),
(100484, 82849, 'en', 'name', 'HELIN Library Consortium'),
(100485, 82850, 'ja', 'name', 'ę±ęµ·å­¦é™¢å¤§å­¦'),
(100486, 82850, 'no_lang_code', 'name', 'Tokai Gakuin University'),
(100487, 82851, 'no_lang_code', 'name', 'Somahlution (United States)'),
(100488, 82852, 'en', 'name', 'American Association for Laboratory Animal Science'),
(100489, 82853, 'en', 'name', 'Fawcett Society'),
(100490, 82854, 'no_lang_code', 'name', 'Bluefin Biomedicine (United States)'),
(100491, 82855, 'en', 'name', 'National Atmospheric Deposition Program'),
(100492, 82856, 'no_lang_code', 'name', 'Notable Labs (United States)'),
(100493, 82857, 'es', 'name', 'Centro Universitario Anglo Mexicano'),
(100494, 82858, 'de', 'name', 'Kardiologie Frankfurt-Sachsenhausen'),
(100495, 82859, 'en', 'name', 'American Society for the Prevention of Cruelty to Animals'),
(100496, 82860, 'es', 'name', 'El Colegio Mexiquense'),
(100497, 82861, 'no_lang_code', 'name', 'Auris Health (United States)'),
(100498, 82862, 'it', 'name', 'Azienda Socio Sanitaria Territoriale Lariana'),
(100499, 82863, 'en', 'name', 'IEEE Industry Applications Society'),
(100500, 82864, 'en', 'name', 'Jilin University of Chemical Technology'),
(100501, 82864, 'zh', 'name', 'å‰ęž—åŒ–å·„å­¦é™¢'),
(100502, 82865, 'en', 'name', 'Southern Urals Biophysics Institute'),
(100503, 82865, 'ru', 'name', 'Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биофизики'),
(100504, 82865, 'sl', 'name', 'Ûžno-Ural''skij institut biofiziki'),
(100505, 82866, 'en', 'name', 'Provincial Government of Sarangani'),
(100506, 82867, 'en', 'name', 'Southwest Watershed Research Center'),
(100507, 82868, 'en', 'name', 'NIHR Central Commissioning Facility'),
(100508, 82869, 'en', 'name', 'Taipei Hospital'),
(100509, 82869, 'zh', 'name', 'č‡ŗåŒ—é†«é™¢'),
(100510, 82870, 'en', 'name', 'Tane General Hospital'),
(100511, 82870, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗćć¤ć“ć†ä¼šå¤šę ¹ē·åˆē—…é™¢'),
(100512, 82871, 'no_lang_code', 'name', 'Evides (Netherlands)'),
(100513, 82872, 'es', 'name', 'Inria Chile'),
(100514, 82873, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¹ŲØŲÆ Ų§Ł„Ł…Ų§Ł„Łƒ Ų§Ł„Ų³Ų¹ŲÆŁŠ'),
(100515, 82873, 'en', 'name', 'Abdelmalek Essaâdi University'),
(100516, 82873, 'fr', 'name', 'Université Abdelmalek Essaâdi'),
(100517, 82874, 'en', 'name', 'Government Office of the Capital City Budapest'),
(100518, 82874, 'hu', 'name', 'Budapest FővĆ”ros KormĆ”nyhivatala'),
(100519, 82875, 'en', 'name', 'Frimley Park Hospital'),
(100520, 82876, 'no_lang_code', 'name', 'PamGene (Netherlands)'),
(100521, 82877, 'en', 'name', 'Joint Fire Science Program'),
(100522, 82878, 'no_lang_code', 'name', 'Centogene (Germany)'),
(100523, 82879, 'no_lang_code', 'name', 'SuVi Eye Institute and Lasik Laser Center'),
(100524, 82880, 'en', 'name', 'Flight Academy of the National Aviation University'),
(100525, 82880, 'uk', 'name', 'Š›Ń‘Ń‚Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ авиационного ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š°'),
(100526, 82881, 'en', 'name', 'Kerzhinski Nature Reserve'),
(100527, 82881, 'ru', 'name', 'ŠšŠµŃ€Š¶ŠµŠ½ŃŠŗŠøŠ¹ заповеГник'),
(100528, 82882, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„'),
(100529, 82882, 'en', 'name', 'Nile University'),
(100530, 82883, 'en', 'name', 'Ogasawara Foundation for the Promotion of Science and Engineering'),
(100531, 82883, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å°ē¬ åŽŸē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(100532, 82884, 'en', 'name', 'Pacific National University'),
(100533, 82884, 'ru', 'name', 'Тихоокеанский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(100534, 82885, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ł„Ł…ŁŠ الرباط'),
(100535, 82885, 'en', 'name', 'Scientific Institute of Rabat'),
(100536, 82886, 'en', 'name', 'Northern Mine Research Society'),
(100537, 82887, 'en', 'name', 'Muhammadiyah University of Surakarta'),
(100538, 82887, 'id', 'name', 'univerˈsitas muhamaˈdijah suraˈkarta'),
(100539, 82888, 'en', 'name', 'Sarah Cannon Research Institute'),
(100540, 82889, 'no_lang_code', 'name', 'Siemens (Canada)'),
(100541, 82890, 'ja', 'name', 'ćƒ‹ćƒ—ćƒ­ę Ŗå¼ä¼šē¤¾'),
(100542, 82890, 'no_lang_code', 'name', 'Nipro (Japan)'),
(100543, 82891, 'no_lang_code', 'name', 'Alcon (Italy)'),
(100544, 82892, 'no_lang_code', 'name', 'British Steel (United Kingdom)'),
(100545, 82893, 'pt', 'name', 'Universidade Estadual de Alagoas'),
(100546, 82894, 'no_lang_code', 'name', 'Provinn (Sweden)'),
(100547, 82895, 'en', 'name', 'Alabama Department of Conservation and Natural Resources'),
(100548, 82896, 'en', 'name', 'Knox'),
(100549, 82897, 'no_lang_code', 'name', 'Nama Development (United States)'),
(100550, 82898, 'en', 'name', 'Zabol University'),
(100551, 82898, 'fa', 'name', 'دانؓگاه Ų²Ų§ŲØŁ„'),
(100552, 82899, 'en', 'name', 'LifeStream'),
(100553, 82900, 'en', 'name', 'Florida Coastal Everglades Long Term Ecological Research'),
(100554, 82901, 'en', 'name', 'Legal Pathways'),
(100555, 82902, 'en', 'name', 'Central Midlands Council of Governments'),
(100556, 82903, 'no_lang_code', 'name', 'Unichem Laboratories'),
(100557, 82904, 'en', 'name', 'Institute of General Energy of the National Academy of Sciences of Ukraine'),
(100558, 82904, 'ru', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠžŠ‘Š©Š•Š™ Š­ŠŠ•Š Š“Š•Š¢Š˜ŠšŠ˜ ŠŠŠ Š£ŠšŠ ŠŠ˜ŠŠ«'),
(100559, 82904, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š·Š°Š³Š°Š»ŃŒŠ½Š¾Ń— енергетики ŠŠŠ України'),
(100560, 82905, 'en', 'name', 'Orthopaedic Center of New Jersey'),
(100561, 82906, 'es', 'name', 'Centro de Investigación y Proyectos en Ambiente y Desarrollo'),
(100562, 82907, 'en', 'name', 'Biofuel Research Team'),
(100563, 82908, 'en', 'name', 'National MS Center Melsbroek'),
(100564, 82908, 'nl', 'name', 'MS-Kliniek, Nationaal Multiple Sclerose Centrum'),
(100565, 82909, 'en', 'name', 'Guangdong Greater Bay Area Institute of Integrated Circuit and System'),
(100566, 82909, 'zh', 'name', 'å¹æäøœēœå¤§ę¹¾åŒŗé›†ęˆē”µč·ÆäøŽē³»ē»Ÿåŗ”ē”Øē ”ē©¶é™¢'),
(100567, 82910, 'en', 'name', 'Hiroshima International University'),
(100568, 82910, 'ja', 'name', 'åŗƒå³¶å›½éš›å¤§å­¦'),
(100569, 82911, 'en', 'name', 'Tennessee Department of Environment and Conservation'),
(100570, 82912, 'en', 'name', 'Helen Keller International'),
(100571, 82913, 'en', 'name', 'New York Medical College'),
(100572, 82914, 'no_lang_code', 'name', 'Dempsey (Canada)'),
(100573, 82915, 'no_lang_code', 'name', 'ABB (Poland)'),
(100574, 82916, 'en', 'name', 'Almeida Memorial Hospital'),
(100575, 82916, 'ja', 'name', 'å¤§åˆ†åø‚åŒ»åø«ä¼šē«‹ć‚¢ćƒ«ćƒ”ć‚¤ćƒ€ē—…é™¢'),
(100576, 82917, 'no_lang_code', 'name', 'Biognosys (Switzerland)'),
(100577, 82918, 'ar', 'name', 'Ų§Ł„Ų£ŁƒŲ§ŲÆŁ…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„ŲÆŲ§Ų±ŁŠŲ© ŁˆŲ§Ł„Ł…Ų§Ł„ŁŠŲ© ŁˆŲ§Ł„Ł…ŲµŲ±ŁŁŠŲ©'),
(100578, 82918, 'en', 'name', 'Arab Academy for Management, Banking and Financial Sciences'),
(100579, 82919, 'en', 'name', 'Farmington Community Library'),
(100580, 82920, 'en', 'name', 'Wyss Academy for Nature'),
(100581, 82921, 'no_lang_code', 'name', 'GE Global Research (United States)'),
(100582, 82922, 'en', 'name', 'Abdus Salam Centre for Physics'),
(100583, 82922, 'ur', 'name', 'عبداسلام ادارہ ŲØŲ±Ų§Ų¦Ū’ طبیعیات'),
(100584, 82923, 'ja', 'name', 'ć‚¤ćƒćƒ©ć‚±ćƒŸć‚«ćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(100585, 82923, 'no_lang_code', 'name', 'Ihara Chemical Industry (Japan)'),
(100586, 82924, 'en', 'name', 'St. John''s School'),
(100587, 82925, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ Ī§Ī·Ī¼Ī¹ĪŗĻŽĪ½ ĪœĪ·Ļ‡Ī±Ī½Ī¹ĪŗĻŽĪ½'),
(100588, 82925, 'en', 'name', 'FORTH Institute of Chemical Engineering Sciences'),
(100589, 82926, 'en', 'name', 'Kansas City National Security Campus'),
(100590, 82927, 'fr', 'name', 'Equipe Soutenue par la RƩgion et par l''Inserm'),
(100591, 82928, 'en', 'name', 'VIB-VUB Center for Structural Biology'),
(100592, 82929, 'no_lang_code', 'name', 'Water Corporation of Western Australia (Australia)'),
(100593, 82930, 'en', 'name', 'ISI Foundation'),
(100594, 82931, 'en', 'name', 'Autonomous University of Aguascalientes'),
(100595, 82931, 'es', 'name', 'Universidad Autónoma de Aguascalientes'),
(100596, 82932, 'en', 'name', 'University of Da Nang'),
(100597, 82932, 'fr', 'name', 'UniversitƩ de danang'),
(100598, 82932, 'vi', 'name', 'ĐẔi hį»c ĐƠ Nįŗµng'),
(100599, 82933, 'en', 'name', 'İLKE Science, Culture and Education Foundation'),
(100600, 82933, 'tr', 'name', 'İLKE İlim Kültür Eğitim Vakfı'),
(100601, 82934, 'fr', 'name', 'Interfaces Traitements Organisation et Dynamique des SystĆØmes'),
(100602, 82935, 'no_lang_code', 'name', 'Gran Telescopio Canarias (Spain)'),
(100603, 82936, 'en', 'name', 'Cox Medical Center South'),
(100604, 82937, 'en', 'name', 'Hamilton County Coroner'),
(100605, 82938, 'en', 'name', 'Huaibei Normal University'),
(100606, 82938, 'zh', 'name', 'ę·®åŒ—åøˆčŒƒå¤§å­¦'),
(100607, 82939, 'en', 'name', 'Renmin Hospital of Wuhan University'),
(100608, 82940, 'en', 'name', 'Bon Secours Mercy Health'),
(100609, 82941, 'no_lang_code', 'name', 'SyMO-Chem (Netherlands)'),
(100610, 82942, 'en', 'name', 'Australian College of Optometry'),
(100611, 82943, 'en', 'name', 'Leiden Observatory'),
(100612, 82943, 'nl', 'name', 'Sterrewacht Leiden'),
(100613, 82944, 'no_lang_code', 'name', 'Museo Dabawenyo'),
(100614, 82945, 'en', 'name', 'Pontifical Xavierian University'),
(100615, 82945, 'es', 'name', 'Pontificia Universidad Javeriana'),
(100616, 82946, 'en', 'name', 'United Nations Children''s Fund'),
(100617, 82947, 'en', 'name', 'National Ovarian Cancer Coalition'),
(100618, 82948, 'en', 'name', 'Sacred Heart Hospital of Montreal'),
(100619, 82948, 'fr', 'name', 'HĆ“pital du SacrĆ©-Cœur de MontrĆ©al'),
(100620, 82949, 'no_lang_code', 'name', 'Berry Oncology (China)'),
(100621, 82949, 'zh', 'name', 'å’Œē‘žåŸŗå› '),
(100622, 82950, 'no_lang_code', 'name', 'Regulus Therapeutics (United States)'),
(100623, 82951, 'en', 'name', 'University of Wisconsin Foundation'),
(100624, 82952, 'en', 'name', 'State Forestry and Grassland Administration'),
(100625, 82952, 'zh', 'name', 'å›½å®¶ęž—äøšå’Œč‰åŽŸå±€'),
(100626, 82953, 'en', 'name', 'Cooperative Research Centre for Mental Health'),
(100627, 82954, 'no_lang_code', 'name', 'Jiangling Motors Corporation (China)'),
(100628, 82954, 'zh', 'name', 'ę±Ÿé“ƒę±½č½¦å…¬åø'),
(100629, 82955, 'en', 'name', 'Kimberley Hospital'),
(100630, 82956, 'no_lang_code', 'name', 'First American (United States)'),
(100631, 82957, 'en', 'name', 'Institute of Natural and Technical Systems'),
(100632, 82958, 'en', 'name', 'Gerash University of Medical Sciences'),
(100633, 82959, 'en', 'name', 'European League Against Rheumatism'),
(100634, 82960, 'no_lang_code', 'name', 'Yalong Hydro (China)'),
(100635, 82960, 'zh', 'name', 'é›…ē »ę±ŸęµåŸŸę°“ē”µå¼€å‘'),
(100636, 82961, 'en', 'name', 'Japanese Red Cross Nagoya Daiichi Hospital'),
(100637, 82961, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾åå¤å±‹ē¬¬äø€čµ¤åå­—ē—…é™¢'),
(100638, 82962, 'en', 'name', 'Illinois State Academy of Science'),
(100639, 82963, 'en', 'name', 'Heartland Cancer Research'),
(100640, 82964, 'en', 'name', 'Institute for Advanced Study in Toulouse'),
(100641, 82965, 'en', 'name', 'Kohnan Hospital'),
(100642, 82965, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŗƒå—ä¼šåŗƒå—ē—…é™¢'),
(100643, 82966, 'en', 'name', 'Shanghai Chest Hospital'),
(100644, 82967, 'en', 'name', 'Institute of Social Sciences and Humanities, Skopje'),
(100645, 82967, 'mk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š¾Ń‚ за Š¾ŠæŃˆŃ‚ествени Šø Ń…ŃƒŠ¼Š°Š½ŠøŃŃ‚ŠøŃ‡ŠŗŠø науки – Дкопје'),
(100646, 82968, 'no_lang_code', 'name', 'GHGSat (Canada)'),
(100647, 82969, 'en', 'name', 'Nanjing Xiaozhuang University'),
(100648, 82969, 'zh', 'name', 'å—äŗ¬ę™“åŗ„å­¦é™¢'),
(100649, 82970, 'ja', 'name', 'JAę–°ę½ŸåŽšē”Ÿé€£ä½ęø”ē·åˆē—…é™¢'),
(100650, 82970, 'no_lang_code', 'name', 'Sado General Hospital'),
(100651, 82971, 'no_lang_code', 'name', 'Cipher Gene (China)'),
(100652, 82972, 'de', 'name', 'Landesinstitut für Pädagogik und Medien'),
(100653, 82973, 'en', 'name', 'Comon Foundation'),
(100654, 82973, 'nl', 'name', 'COmON Stichting'),
(100655, 82974, 'az', 'name', 'Milli Nüvə Tədqiqatları Mərkəzi'),
(100656, 82974, 'en', 'name', 'National Nuclear Research Center'),
(100657, 82974, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(100658, 82975, 'en', 'name', 'National Research Institute of Police Science'),
(100659, 82975, 'ja', 'name', 'č­¦åÆŸåŗē§‘å­¦č­¦åÆŸē ”ē©¶ę‰€'),
(100660, 82976, 'en', 'name', 'Comprehensive Research Organization for Science and Society'),
(100661, 82976, 'ja', 'name', 'ē·åˆē§‘å­¦ē ”ē©¶ę©Ÿę§‹'),
(100662, 82977, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł†Ų·ŁˆŁ†ŁŠŲ©'),
(100663, 82977, 'en', 'name', 'Antonine University'),
(100664, 82978, 'de', 'name', 'InteruniversitƤre Kooperationszentrum Wasser und Gesundheit'),
(100665, 82978, 'en', 'name', 'Interuniversity Cooperation Centre Water & Health'),
(100666, 82979, 'en', 'name', 'Equilibrium Research'),
(100667, 82980, 'en', 'name', 'MacNeal Hospital'),
(100668, 82981, 'en', 'name', 'National Centre for Biological Sciences'),
(100669, 82981, 'kn', 'name', 'ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ą²œą³€ą²µ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²•ą³†ą³•ą²‚ą²¦ą³ą²°'),
(100670, 82982, 'en', 'name', 'Canadian Nutrition Society, SociƩtƩ Canadienne de Nutrition'),
(100671, 82983, 'en', 'name', 'NEWhub'),
(100672, 82984, 'en', 'name', 'Mykolaiv Observatory'),
(100673, 82984, 'ru', 'name', 'ŠŠøŠŗŠ¾Š»Š°ŠµŠ²ŃŠŗŠ°Ń Š°ŃŃ‚Ń€Š¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ');
INSERT INTO `ror_settings` VALUES
(100674, 82984, 'uk', 'name', 'ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠ° астрономічна Š¾Š±ŃŠµŃ€Š²Š°Ń‚Š¾Ń€Ń–Ń'),
(100675, 82985, 'en', 'name', 'Canadian Institute for Public Safety Research and Treatment'),
(100676, 82985, 'fr', 'name', 'Institut Canadien de Recherche et de Traitement en SƩcuritƩ Publique'),
(100677, 82986, 'en', 'name', 'Ludwig Boltzmann Institute Applied Diagnostics'),
(100678, 82987, 'no_lang_code', 'name', 'Pantheon Biosciences (Israel)'),
(100679, 82988, 'no_lang_code', 'name', 'Yahoo (Spain)'),
(100680, 82989, 'en', 'name', 'BC Cancer Foundation'),
(100681, 82990, 'en', 'name', 'Shanghai Sunshine Rehabilitation Center'),
(100682, 82990, 'zh', 'name', 'äøŠęµ·åø‚å…»åæ—åŗ·å¤åŒ»é™¢'),
(100683, 82991, 'en', 'name', 'Network of Biological Alerts Laboratories'),
(100684, 82991, 'es', 'name', 'Red de Laboratorios de Alertas Biológicas'),
(100685, 82992, 'en', 'name', 'RIKEN Center for Emergent Matter Science'),
(100686, 82992, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€å‰µē™ŗē‰©ę€§ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(100687, 82993, 'en', 'name', 'Paris Cardiovascular Research Center'),
(100688, 82993, 'fr', 'name', 'Paris Centre de Recherche Cardiovasculaire'),
(100689, 82994, 'no_lang_code', 'name', 'VASP Software (Austria)'),
(100690, 82995, 'ja', 'name', 'č±Šę©‹åø‚ę°‘ē—…é™¢'),
(100691, 82995, 'no_lang_code', 'name', 'Toyohashi Municipal Hospital'),
(100692, 82996, 'en', 'name', 'Daniel K. Inouye U.S. Pacific Basin Agricultural Research Center'),
(100693, 82997, 'no_lang_code', 'name', 'Shanghai Centennial Scientific (China)'),
(100694, 82997, 'zh', 'name', 'äøŠęµ·ē››ē‰¹å°¼åŒ»čÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(100695, 82998, 'de', 'name', 'KHM-Museumsverband'),
(100696, 82998, 'en', 'name', 'Museum of Art History'),
(100697, 82999, 'en', 'name', 'Tsuruga Nursing University'),
(100698, 82999, 'ja', 'name', 'ę•¦č³€åø‚ē«‹ēœ‹č­·å¤§å­¦'),
(100699, 83000, 'fr', 'name', 'Institut de Readaptation Gingras Lindsay de Montreal'),
(100700, 83001, 'en', 'name', 'Lviv Academy of Commerce'),
(100701, 83001, 'ru', 'name', 'Š›ŃŒŠ²Š¾Š²ŃŠŗŠ°Ń ŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(100702, 83001, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠ° комерційна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(100703, 83002, 'no_lang_code', 'name', 'Prioris.ai (Canada)'),
(100704, 83003, 'no_lang_code', 'name', 'bioMƩrieux (France)'),
(100705, 83004, 'en', 'name', 'Global Health 50/50'),
(100706, 83005, 'en', 'name', 'Ludwig Boltzmann Institute for Rare and Undiagnosed Diseases'),
(100707, 83006, 'en', 'name', 'Beijing Institute of Fashion Technology'),
(100708, 83006, 'zh', 'name', 'åŒ—äŗ¬ęœč£…å­¦é™¢'),
(100709, 83007, 'no_lang_code', 'name', 'Pharmacyclics (United States)'),
(100710, 83008, 'de', 'name', 'Nordwestdeutsche Forstliche Versuchsanstalt'),
(100711, 83008, 'en', 'name', 'Northwest German Forest Research Institute'),
(100712, 83009, 'ja', 'name', 'åƒåÆæč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(100713, 83009, 'no_lang_code', 'name', 'Senju Pharmaceutical (Japan)'),
(100714, 83010, 'en', 'name', 'Hebei North University'),
(100715, 83010, 'zh', 'name', 'ę²³åŒ—åŒ—ę–¹å­¦é™¢'),
(100716, 83011, 'es', 'name', 'Hospital Regional de Alta Especialidad del BajĆ­o'),
(100717, 83012, 'en', 'name', 'William & Mary'),
(100718, 83013, 'no', 'name', 'SpesialistSenteret Pilestredet Park'),
(100719, 83014, 'en', 'name', 'China International Medical Foundation'),
(100720, 83015, 'en', 'name', 'Roman L. Hruska U.S. Meat Animal Research Center'),
(100721, 83016, 'en', 'name', 'American Beverage Association'),
(100722, 83017, 'no_lang_code', 'name', 'Anevo (Greece)'),
(100723, 83018, 'en', 'name', 'Muhammadiyah University Purwokerto'),
(100724, 83018, 'id', 'name', 'Universitas Muhammadiyah Purwokerto'),
(100725, 83019, 'en', 'name', 'Nagano National Hospital'),
(100726, 83019, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ę±é•·é‡Žē—…é™¢'),
(100727, 83020, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚»ć‚¬'),
(100728, 83020, 'no_lang_code', 'name', 'Sega (Japan)'),
(100729, 83021, 'es', 'name', 'Agua y Saneamientos Argentinos'),
(100730, 83021, 'no_lang_code', 'name', 'Argentine Water and Sanitation (Argentina)'),
(100731, 83022, 'en', 'name', 'Monash IVF'),
(100732, 83023, 'en', 'name', 'Chukyo Hospital'),
(100733, 83023, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹äø­äŗ¬ē—…é™¢'),
(100734, 83024, 'en', 'name', 'Natural Resources Conservation Service'),
(100735, 83025, 'ja', 'name', 'ę—„äæ”å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(100736, 83025, 'no_lang_code', 'name', 'Nissin Kogyo (Japan)'),
(100737, 83026, 'en', 'name', 'Phoenix Hospital Chelmsford'),
(100738, 83027, 'en', 'name', 'Council of Local Authorities for International Relations'),
(100739, 83027, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč‡Ŗę²»ä½“å›½éš›åŒ–å”ä¼š'),
(100740, 83028, 'en', 'name', 'Harry K. Dupree Stuttgart National Aquaculture Research Center'),
(100741, 83029, 'en', 'name', 'World Health Organization - Malawi'),
(100742, 83030, 'en', 'name', 'National Boron Research Institute'),
(100743, 83030, 'tr', 'name', 'Ulusal Bor Araştırma Enstitüsü'),
(100744, 83031, 'en', 'name', 'Indian Institute of Tropical Meteorology'),
(100745, 83031, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤‰ą¤·ą„ą¤£ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ą„€ą¤Æ ą¤¹ą¤µą¤¾ą¤®ą¤¾ą¤Øą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(100746, 83032, 'en', 'name', 'Clark County Public Health'),
(100747, 83033, 'no_lang_code', 'name', 'Afflux Consulting (Australia)'),
(100748, 83034, 'en', 'name', 'Postgraduate School of Molecular Medicine'),
(100749, 83034, 'pl', 'name', 'Studium Medycyny Molekularnej'),
(100750, 83035, 'en', 'name', 'Luso American Development Foundation'),
(100751, 83035, 'pt', 'name', 'Fundação Luso-Americana Para o Desenvolvimento'),
(100752, 83036, 'en', 'name', 'Texas Fertility Center'),
(100753, 83037, 'no_lang_code', 'name', 'UZR (Germany)'),
(100754, 83038, 'en', 'name', 'United Cerebral Palsy'),
(100755, 83039, 'en', 'name', 'Norton Hospital'),
(100756, 83040, 'fr', 'name', 'HƓtel-Dieu de Paris'),
(100757, 83041, 'en', 'name', 'Vidzeme University of Applied Sciences'),
(100758, 83041, 'lv', 'name', 'Vidzemes Augstskola'),
(100759, 83042, 'fr', 'name', 'Fondation Maladies Rares'),
(100760, 83043, 'de', 'name', 'Institut für Prävention und Arbeitsmedizin'),
(100761, 83043, 'en', 'name', 'Institute for Prevention and Occupational Medicine'),
(100762, 83044, 'en', 'name', 'Princess Margaret Hospital'),
(100763, 83044, 'zh', 'name', 'ē‘Ŗå˜‰ēƒˆé†«é™¢'),
(100764, 83045, 'fr', 'name', 'Fondation JƩrƓme-Lejeune'),
(100765, 83046, 'en', 'name', 'Japanese Society of Hypertension'),
(100766, 83046, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬é«˜č”€åœ§å­¦ä¼š'),
(100767, 83047, 'en', 'name', 'Daiichi University of Pharmacy'),
(100768, 83047, 'ja', 'name', '第一薬科大学'),
(100769, 83048, 'en', 'name', 'Center for Marine and Oceanographic Research'),
(100770, 83048, 'fr', 'name', 'Centre de Recherches OcƩanologiques'),
(100771, 83049, 'fr', 'name', 'UnitƩ de Technologies Chimiques et Biologiques pour la SantƩ'),
(100772, 83050, 'en', 'name', 'University of Alaska Anchorage'),
(100773, 83050, 'es', 'name', 'Universidad de Alaska Anchorage'),
(100774, 83050, 'fr', 'name', 'UniversitƩ de l''alaska Ơ anchorage'),
(100775, 83051, 'en', 'name', 'Department of Health'),
(100776, 83051, 'ga', 'name', 'An Roinn SlƔinte'),
(100777, 83052, 'en', 'name', 'Employment and Social Development Canada'),
(100778, 83052, 'fr', 'name', 'Ministère des Ressources humaines et Développement des compétences'),
(100779, 83053, 'en', 'name', 'Global Institutes on Addictions'),
(100780, 83054, 'en', 'name', 'Yokohama City University Medical Center'),
(100781, 83054, 'ja', 'name', 'ęØŖęµœåø‚ē«‹å¤§å­¦é™„å±žåø‚ę°‘ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(100782, 83055, 'id', 'name', 'Universitas PGRI Yogyakarta'),
(100783, 83056, 'en', 'name', 'Marine Design & Research Institute of China'),
(100784, 83057, 'en', 'name', 'Takoradi Technical University'),
(100785, 83058, 'en', 'name', 'China National Center for Food Safety Risk Assessment'),
(100786, 83058, 'zh', 'name', 'å›½å®¶é£Ÿå“å®‰å…Øé£Žé™©čÆ„ä¼°äø­åæƒ'),
(100787, 83059, 'en', 'name', 'Stanford Blood Center'),
(100788, 83060, 'en', 'name', 'Aichi Cancer Center'),
(100789, 83060, 'ja', 'name', 'ę„›ēŸ„ēœŒćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(100790, 83061, 'en', 'name', 'Biomedical Research Institute of New Mexico'),
(100791, 83062, 'en', 'name', 'Nigerian Institute of Medical Research'),
(100792, 83063, 'no_lang_code', 'name', 'USGI Medical (United States)'),
(100793, 83064, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šę¾å±±ē—…é™¢'),
(100794, 83064, 'no_lang_code', 'name', 'Saiseikai Matsuyama Hospital'),
(100795, 83065, 'ja', 'name', 'JSRę Ŗå¼ä¼šē¤¾'),
(100796, 83065, 'no_lang_code', 'name', 'JSR (Japan)'),
(100797, 83066, 'en', 'name', 'Jiangsu Food and Pharmaceutical Science College'),
(100798, 83066, 'zh', 'name', 'ę±Ÿč‹é£Ÿå“čÆå“čŒäøšęŠ€ęœÆå­¦é™¢'),
(100799, 83067, 'en', 'name', 'International Institute of Tropical Agriculture'),
(100800, 83067, 'fr', 'name', 'Institut International d''Agriculture Tropicale'),
(100801, 83068, 'de', 'name', 'Swiss Cancer Center LƩman'),
(100802, 83068, 'fr', 'name', 'Centro Suisse du Cancer'),
(100803, 83069, 'en', 'name', 'Latvian State Forest Research Institute "Silava"'),
(100804, 83069, 'lv', 'name', 'Latvijas Valsts mežzinātnes institūts "Silava"'),
(100805, 83070, 'de', 'name', 'Helios Dr. Horst Schmidt Kliniken Wiesbaden'),
(100806, 83071, 'en', 'name', 'American College of Preventive Medicine'),
(100807, 83072, 'en', 'name', 'Nizhne-Svirsky State Nature Reserve'),
(100808, 83072, 'ru', 'name', 'ŠŠøŠ¶Š½Šµ-Двирский Š³Š¾ŃŃƒŠ“арственный прироГный заповеГник'),
(100809, 83073, 'en', 'name', 'Berhampur University'),
(100810, 83074, 'en', 'name', 'Michigan Primary Care Association'),
(100811, 83075, 'en', 'name', 'West Virginia Geological & Economic Survey'),
(100812, 83076, 'no_lang_code', 'name', 'Crozet BioPharma (United States)'),
(100813, 83077, 'en', 'name', 'Royal Institute of the Architects of Ireland'),
(100814, 83077, 'ga', 'name', 'InstitiĆŗid RĆ­oga AiltirĆ­ na hƉireann'),
(100815, 83078, 'da', 'name', 'Rigshospitalet'),
(100816, 83079, 'no_lang_code', 'name', 'Wren Laboratories (United States)'),
(100817, 83080, 'en', 'name', 'Newburgh Free Library'),
(100818, 83081, 'no_lang_code', 'name', 'GeoModelling Solutions (Switzerland)'),
(100819, 83082, 'en', 'name', 'Shujitsu University'),
(100820, 83082, 'ja', 'name', '就実大学'),
(100821, 83083, 'ca', 'name', 'Instituto de Investigación Biomédica de Lleida'),
(100822, 83083, 'en', 'name', 'Biomedical Research Institute of Lleida'),
(100823, 83083, 'es', 'name', 'Institut de Recerca BiomĆØdica de Lleida'),
(100824, 83084, 'fr', 'name', 'Centre Hospitalier de Dax –CĆ“te d’Argent'),
(100825, 83085, 'en', 'name', '"National Medical Research Center for Rehabilitation and Balneology" of the Ministry of Health of the Russian Federation'),
(100826, 83085, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр реабилитации Šø ŠŗŃƒŃ€Š¾Ń€Ń‚Š¾Š»Š¾Š³ŠøŠøĀ» ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(100827, 83086, 'en', 'name', 'University of the East'),
(100828, 83086, 'tl', 'name', 'Pamantasan ng Silangan'),
(100829, 83087, 'en', 'name', 'The Behavioural Insights Team'),
(100830, 83088, 'en', 'name', 'International Potato Center'),
(100831, 83089, 'ja', 'name', 'ćƒžć‚¤ć‚Æćƒ­ćƒ³ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(100832, 83089, 'no_lang_code', 'name', 'Micron (Japan)'),
(100833, 83090, 'en', 'name', 'International Shariʽah Research Academy for Islamic Finance'),
(100834, 83091, 'en', 'name', 'Fukui Prefectural Police'),
(100835, 83091, 'ja', 'name', 'ē¦äŗ•ēœŒč­¦åÆŸ'),
(100836, 83092, 'en', 'name', 'Ann Arbor District Library'),
(100837, 83093, 'en', 'name', 'Pharmaceuticals and Medical Devices Agency'),
(100838, 83093, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ åŒ»č–¬å“åŒ»ē™‚ę©Ÿå™Øē·åˆę©Ÿę§‹'),
(100839, 83094, 'fr', 'name', 'Langues, Textes, Traitements Informatiques, Cognition'),
(100840, 83095, 'en', 'name', 'Foundation for Advanced Studies on International Development'),
(100841, 83095, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›é–‹ē™ŗę©Ÿę§‹'),
(100842, 83096, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē”Ÿé•·ä¼šćƒ™ćƒ«ćƒ©ćƒ³ćƒ‰ē·åˆē—…é™¢'),
(100843, 83096, 'no_lang_code', 'name', 'Berurando General Hospital'),
(100844, 83097, 'en', 'name', 'Possover International Medical Center'),
(100845, 83098, 'en', 'name', 'Persian Gulf University'),
(100846, 83098, 'fa', 'name', 'دانؓگاه Ų®Ł„ŪŒŲ¬ فارس'),
(100847, 83099, 'en', 'name', 'National Public Health Institute of Liberia'),
(100848, 83100, 'en', 'name', 'Centre of Excellence for Development Impact and Learning'),
(100849, 83101, 'en', 'name', 'Chongqing University of Science and Technology'),
(100850, 83101, 'zh', 'name', 'é‡åŗ†ē§‘ęŠ€å­¦é™¢'),
(100851, 83102, 'no_lang_code', 'name', 'Braile BiomƩdica (Brazil)'),
(100852, 83103, 'it', 'name', 'Associazione Meteo Professionisti'),
(100853, 83104, 'fr', 'name', 'HƓpital Saint-Jacques'),
(100854, 83105, 'no_lang_code', 'name', 'New England Biolabs (China)'),
(100855, 83106, 'no_lang_code', 'name', 'Ricardo AEA (United Kingdom)'),
(100856, 83107, 'en', 'name', 'The Institution of Engineers Malaysia'),
(100857, 83108, 'en', 'name', 'Northeast Petroleum University'),
(100858, 83108, 'zh', 'name', 'äøœåŒ—ēŸ³ę²¹å¤§å­¦'),
(100859, 83109, 'en', 'name', 'Arctic State Agrotechnological University'),
(100860, 83109, 'ru', 'name', 'ŠÆŠŗŃƒŃ‚ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(100861, 83110, 'es', 'name', 'Instituto de Investigación Sanitaria Aragón'),
(100862, 83111, 'en', 'name', 'Ventura County Medical Center'),
(100863, 83112, 'en', 'name', 'Atomic Energy Commission of Syria'),
(100864, 83113, 'en', 'name', 'Wisconsin Department of Natural Resources'),
(100865, 83114, 'no_lang_code', 'name', 'HiFiBiO Therapeutics (France)'),
(100866, 83115, 'sq', 'name', 'Akademia e Studimeve Albanologjike'),
(100867, 83116, 'no_lang_code', 'name', 'WayRay (Russia)'),
(100868, 83117, 'no_lang_code', 'name', 'Akvaplan-niva'),
(100869, 83118, 'en', 'name', 'Center of Hubei Cooperative Innovation for Emissions Trading System'),
(100870, 83118, 'zh', 'name', 'ē¢³ęŽ’ę”¾ęƒäŗ¤ę˜“ę¹–åŒ—ēœååŒåˆ›ę–°äø­åæƒ'),
(100871, 83119, 'en', 'name', 'Japan Coast Guard'),
(100872, 83119, 'ja', 'name', 'ęµ·äøŠäæå®‰åŗ'),
(100873, 83120, 'ja', 'name', 'ćƒ‡ć‚Æć‚»ćƒŖć‚¢ćƒ«ć‚ŗę Ŗå¼ä¼šē¤¾'),
(100874, 83120, 'no_lang_code', 'name', 'Dexerials (Japan)'),
(100875, 83121, 'en', 'name', 'Association of European Schools of Planning'),
(100876, 83122, 'en', 'name', 'Bomet University College'),
(100877, 83123, 'ja', 'name', 'äæåœŸč°·åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(100878, 83123, 'no_lang_code', 'name', 'Hodogaya Chemical (Japan)'),
(100879, 83124, 'de', 'name', 'Max Weber Forum für Südasienstudien Delhi'),
(100880, 83124, 'en', 'name', 'Max Weber Forum for South Asian Studies in Delhi'),
(100881, 83125, 'en', 'name', '1 Military Clinical Hospital with Outpatient Clinic'),
(100882, 83125, 'pl', 'name', '1 Wojskowy Szpital Kliniczny z Polikliniką'),
(100883, 83126, 'en', 'name', 'Persistent Systems (India)'),
(100884, 83127, 'en', 'name', 'The Intergovernmental Committee on Surveying and Mapping'),
(100885, 83128, 'en', 'name', 'Marine Biomedical Research Institute of Qingdao'),
(100886, 83128, 'zh', 'name', 'é’å²›ęµ·ę“‹ē”Ÿē‰©åŒ»čÆē ”ē©¶é™¢'),
(100887, 83129, 'no_lang_code', 'name', 'Allergan (United States)'),
(100888, 83130, 'fi', 'name', 'Aarne Koskelon SƤƤtiƶ'),
(100889, 83131, 'de', 'name', 'St. Josef-Krankenhaus Wien'),
(100890, 83132, 'en', 'name', 'Center for Social Studies on African, American and Asian Worlds'),
(100891, 83132, 'fr', 'name', 'Centre d’études en Sciences Sociales sur les Mondes Africains, AmĆ©ricains et Asiatiques'),
(100892, 83133, 'en', 'name', 'Key Laboratory of Nuclear Radiation and Nuclear Energy Technology'),
(100893, 83133, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę øč¾å°„äøŽę øčƒ½ęŠ€ęœÆé‡ē‚¹å®žéŖŒå®¤'),
(100894, 83134, 'en', 'name', 'Institute of Public Health of Serbia'),
(100895, 83134, 'sr', 'name', 'Institut za Javno Zdravlje Srbije'),
(100896, 83135, 'en', 'name', 'Łukasiewicz Research Network - Metal Forming Institute'),
(100897, 83135, 'pl', 'name', 'Sieć Badawcza Łukasiewicz – Instytut Obróbki Plastycznej'),
(100898, 83136, 'en', 'name', 'Collaborative Care Systems Finland'),
(100899, 83137, 'en', 'name', 'Japan Community Healthcare Organization'),
(100900, 83137, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹'),
(100901, 83138, 'no_lang_code', 'name', 'Immune Modulatory Therapies (United States)'),
(100902, 83139, 'no_lang_code', 'name', 'Uks'),
(100903, 83140, 'en', 'name', 'Data61'),
(100904, 83141, 'no_lang_code', 'name', 'Coral Publications'),
(100905, 83142, 'no_lang_code', 'name', 'Carl Zeiss (China)'),
(100906, 83143, 'en', 'name', 'Miller Dwan Foundation'),
(100907, 83144, 'en', 'name', 'Datalys Center for Sports Injury Research and Prevention'),
(100908, 83145, 'en', 'name', 'National Coffee Research Center'),
(100909, 83145, 'es', 'name', 'Centro Nacional de Investigaciones de CafƩ'),
(100910, 83146, 'en', 'name', 'Toyota Physical and Chemical Research Institute'),
(100911, 83146, 'ja', 'name', 'č±Šē”°ē†åŒ–å­¦ē ”ē©¶ę‰€čØ­ē«‹'),
(100912, 83147, 'no_lang_code', 'name', 'Genomic Prediction (United States)'),
(100913, 83148, 'en', 'name', 'Korean Society of Gastrointestinal Endoscopy'),
(100914, 83148, 'ko', 'name', 'ėŒ€ķ•œģ†Œķ™”źø°ė‚“ģ‹œź²½ķ•™ķšŒ'),
(100915, 83149, 'en', 'name', 'Japan Coast Guard Academy'),
(100916, 83149, 'ja', 'name', 'ęµ·äøŠäæå®‰å¤§å­¦ę ”'),
(100917, 83150, 'en', 'name', 'Guangzhou University of Chinese Medicine'),
(100918, 83150, 'zh', 'name', 'å¹æå·žäø­åŒ»čÆå¤§å­¦'),
(100919, 83151, 'en', 'name', 'Tomishiro Central Hospital'),
(100920, 83151, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå‹ę„›ä¼šč±Šč¦‹åŸŽäø­å¤®ē—…é™¢'),
(100921, 83152, 'en', 'name', 'Osaka Mishima Emergency and Critical Care Center'),
(100922, 83152, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗåŗœäø‰å³¶ę•‘ę€„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(100923, 83153, 'en', 'name', 'David Hide Asthma and Allergy Research Centre'),
(100924, 83154, 'en', 'name', 'Academy Of Finance'),
(100925, 83154, 'vi', 'name', 'Hį»c Viện TĆ i ChĆ­nh'),
(100926, 83155, 'en', 'name', 'Harbin Science and Technology Bureau'),
(100927, 83156, 'no_lang_code', 'name', 'FLSmidth (Denmark)'),
(100928, 83157, 'no_lang_code', 'name', 'Marie Stopes Society'),
(100929, 83158, 'no_lang_code', 'name', 'Medline (United States)'),
(100930, 83159, 'nl', 'name', 'IJsselland Ziekenhuis'),
(100931, 83160, 'en', 'name', 'Society of Vertebrate Paleontology'),
(100932, 83161, 'en', 'name', 'Kemmons Wilson Family Foundation'),
(100933, 83162, 'en', 'name', 'United Kingdom Sport'),
(100934, 83163, 'en', 'name', 'Edwards Comprehensive Cancer Center'),
(100935, 83164, 'en', 'name', 'U.S. Arid Land Agricultural Research Center'),
(100936, 83165, 'ja', 'name', 'ćƒ‰ć‚Æć‚æćƒ¼ć‚ŗćƒćƒ§ć‚¤ć‚¹'),
(100937, 83165, 'no_lang_code', 'name', 'Doctor''s Choice (Japan)'),
(100938, 83166, 'en', 'name', 'Baker Foundation'),
(100939, 83167, 'en', 'name', 'Taymyr Nature Reserve'),
(100940, 83167, 'ru', 'name', 'Таймырский заповеГник'),
(100941, 83168, 'en', 'name', 'Heilongjiang University of Technology'),
(100942, 83168, 'zh', 'name', 'é»‘é¾™ę±Ÿå·„äøšå­¦é™¢'),
(100943, 83169, 'en', 'name', 'Osaka Research Institute of Industrial Science and Technology'),
(100944, 83169, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§é˜Ŗē”£ę„­ęŠ€č”“ē ”ē©¶ę‰€'),
(100945, 83170, 'en', 'name', 'Erasmus MC Cancer Institute'),
(100946, 83170, 'nl', 'name', 'Erasmus MC Kanker Instituut'),
(100947, 83171, 'no_lang_code', 'name', 'Vetcare (Finland)'),
(100948, 83172, 'en', 'name', 'RIKEN Center for Computational Science'),
(100949, 83172, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€čØˆē®—ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(100950, 83173, 'en', 'name', 'The Metabolomics Innovation Centre'),
(100951, 83174, 'no_lang_code', 'name', 'Emodo (United States)'),
(100952, 83175, 'en', 'name', 'Global VetPathology'),
(100953, 83176, 'ja', 'name', 'KDDIę Ŗå¼ä¼šē¤¾'),
(100954, 83176, 'no_lang_code', 'name', 'KDDI (Japan)'),
(100955, 83177, 'en', 'name', 'Golpayegan University of Engineering'),
(100956, 83177, 'fa', 'name', 'دانؓکده ŁŁ†ŪŒ و Ł…Ł‡Ł†ŲÆŲ³ŪŒ ŚÆŁ„Ł¾Ų§ŁŠŚÆŲ§Ł†'),
(100957, 83178, 'en', 'name', 'Institute of Marine Research'),
(100958, 83179, 'en', 'name', 'Virtual Reality Medical Institute'),
(100959, 83180, 'no_lang_code', 'name', 'Dexcom (United States)'),
(100960, 83181, 'en', 'name', 'Tokyo Metropolitan Institute of Gerontology'),
(100961, 83181, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę±äŗ¬éƒ½å„åŗ·é•·åÆæåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(100962, 83182, 'fr', 'name', 'HƓpital Maisonneuve-Rosemont'),
(100963, 83183, 'en', 'name', 'Owensboro Health'),
(100964, 83184, 'no_lang_code', 'name', 'Adamas Pharmaceuticals (United States)'),
(100965, 83185, 'en', 'name', 'Kaniv Nature Reserve'),
(100966, 83185, 'uk', 'name', 'ŠšŠ°Š½Ń–Š²ŃŃŒŠŗŠøŠ¹ прироГний заповіГник'),
(100967, 83186, 'en', 'name', 'TERI University'),
(100968, 83187, 'en', 'name', 'Fayetteville State University'),
(100969, 83187, 'fr', 'name', 'UniversitĆ© d''Ɖtat de fayetteville'),
(100970, 83188, 'cy', 'name', 'Llyfrgell Genedlaethol Cymru'),
(100971, 83188, 'en', 'name', 'National Library of Wales'),
(100972, 83189, 'no_lang_code', 'name', 'MSIGHT Technologies (China)'),
(100973, 83190, 'en', 'name', 'Millennium Institute of Oceanography'),
(100974, 83190, 'es', 'name', 'Instituto Milenio de OceanografĆ­a'),
(100975, 83191, 'en', 'name', 'American Association of Nurse Anesthetists'),
(100976, 83192, 'no_lang_code', 'name', 'HCG Cancer Centre'),
(100977, 83193, 'en', 'name', 'Gdansk University of Physical Education and Sport'),
(100978, 83193, 'pl', 'name', 'Akademia Wychowania Fizycznego i Sportu im. Jędrzeja Śniadeckiego w Gdańsku'),
(100979, 83194, 'en', 'name', 'Institute of Biostructure and Bioimaging'),
(100980, 83194, 'it', 'name', 'Istituto di Biostrutture e Bioimmagini'),
(100981, 83195, 'es', 'name', 'Instituto de Investigación Geológico y Energético'),
(100982, 83196, 'en', 'name', 'Łukasiewicz Research Network – PORT Polish Center for Technology Development'),
(100983, 83196, 'pl', 'name', 'Sieć Badawcza Łukasiewicz – PORT Polski Ośrodek Rozwoju Technologii'),
(100984, 83197, 'no_lang_code', 'name', 'Nortel (Canada)'),
(100985, 83198, 'en', 'name', 'Willows Veterinary Centre and Referral Service'),
(100986, 83199, 'no_lang_code', 'name', 'Monasterium Laboratory Skin & Hair Research Solutions (Germany)'),
(100987, 83200, 'en', 'name', 'The Norwegian Institute for Children’s Books'),
(100988, 83200, 'no', 'name', 'Norsk barnebokinstitutt'),
(100989, 83201, 'en', 'name', 'Blue Resources Trust'),
(100990, 83202, 'pt', 'name', 'Universidade Federal do Agreste de Pernambuco'),
(100991, 83203, 'en', 'name', 'High Tropics Foundation'),
(100992, 83204, 'en', 'name', 'Southern Plains Agricultural Research Center'),
(100993, 83205, 'de', 'name', 'Sternwarte Sonneberg'),
(100994, 83205, 'en', 'name', 'Sonneberg Observatory'),
(100995, 83206, 'en', 'name', 'Green Chemistry'),
(100996, 83206, 'pl', 'name', 'Zielona Chemia'),
(100997, 83207, 'en', 'name', 'Temple University, Japan'),
(100998, 83207, 'ja', 'name', 'ćƒ†ćƒ³ćƒ—ćƒ«å¤§å­¦'),
(100999, 83208, 'no_lang_code', 'name', 'Geneious (New Zealand)'),
(101000, 83209, 'en', 'name', 'U.S. National Poultry Research Center'),
(101001, 83210, 'nl', 'name', 'Museon-Omniversum'),
(101002, 83211, 'en', 'name', 'Stem Cell Network'),
(101003, 83211, 'fr', 'name', 'RƩseau de Cellules Souches'),
(101004, 83212, 'no_lang_code', 'name', 'Zinpro (United States)'),
(101005, 83213, 'en', 'name', 'Public Central Hospital of Matto Ishikawa'),
(101006, 83213, 'ja', 'name', 'å…¬ē«‹ę¾ä»»ēŸ³å·äø­å¤®ē—…é™¢'),
(101007, 83214, 'no_lang_code', 'name', 'Paraza Pharma (Canada)'),
(101008, 83215, 'en', 'name', 'Growing Spine Foundation'),
(101009, 83216, 'en', 'name', 'Research Design and Technological Institute of Concrete and Reinforced Concrete'),
(101010, 83216, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹, проектно-ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ Šø технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ бетона Šø железобетона'),
(101011, 83217, 'fr', 'name', 'Conservatoire national supƩrieur de musique et de danse de Lyon'),
(101012, 83218, 'en', 'name', 'Jiangxi Applied Engineering Vocational Institute'),
(101013, 83218, 'zh', 'name', 'ę±Ÿč„æåŗ”ē”Øå·„ēØ‹čŒäøšå­¦é™¢'),
(101014, 83219, 'de', 'name', 'DeGEval - Gesellschaft für Evaluation'),
(101015, 83219, 'en', 'name', 'DeGEval – Evaluation Society'),
(101016, 83220, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© زايد'),
(101017, 83220, 'en', 'name', 'Zayed University'),
(101018, 83220, 'fa', 'name', 'دانؓگاه زاید'),
(101019, 83221, 'en', 'name', 'The MuseumFactory'),
(101020, 83221, 'nl', 'name', 'De MuseumFabriek'),
(101021, 83222, 'en', 'name', 'Centre for Ocean Research and Education'),
(101022, 83223, 'en', 'name', 'Institute of Applied Physics and Computational Mathematics'),
(101023, 83223, 'zh', 'name', 'åŒ—äŗ¬åŗ”ē”Øē‰©ē†äøŽč®”ē®—ę•°å­¦ē ”ē©¶ę‰€'),
(101024, 83224, 'nl', 'name', 'Centrum voor Gynaecologische Oncologie Amsterdam'),
(101025, 83225, 'en', 'name', 'Poisonous Plant Research Laboratory'),
(101026, 83226, 'no_lang_code', 'name', 'Adamas Pharmaceuticals (India)'),
(101027, 83227, 'en', 'name', 'Pediatrics and Genetics'),
(101028, 83228, 'en', 'name', 'Norton Women''s and Children''s Hospital'),
(101029, 83229, 'en', 'name', 'National Institute for the Defense of Competition and the Protection of Intellectual Property'),
(101030, 83229, 'es', 'name', 'Instituto Nacional de Defensa de la Competencia y de la Protección de la Propiedad Intelectual'),
(101031, 83230, 'no_lang_code', 'name', 'Sage Therapeutics (United States)'),
(101032, 83231, 'no_lang_code', 'name', 'SciTech Strategies (United States)'),
(101033, 83232, 'en', 'name', 'Southwest Research Institute'),
(101034, 83232, 'es', 'name', 'Instituto de Investigación del Suroeste'),
(101035, 83233, 'no_lang_code', 'name', 'Heidelberg Engineering (Germany)'),
(101036, 83234, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŽŸåœŸäŗ•ē—…é™¢'),
(101037, 83234, 'no_lang_code', 'name', 'Haradoi Hospital'),
(101038, 83235, 'en', 'name', 'Karnali Academy of Health Sciences'),
(101039, 83235, 'ne', 'name', 'ą¤•ą¤°ą„ą¤£ą¤¾ą¤²ą„€ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤¬ą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(101040, 83236, 'no_lang_code', 'name', 'Inergio (Switzerland)'),
(101041, 83237, 'no_lang_code', 'name', 'Transgenomic (United States)'),
(101042, 83238, 'de', 'name', 'Landesamt für Umwelt, Naturschutz und Geologie'),
(101043, 83239, 'en', 'name', 'Mississippi Academy of Sciences'),
(101044, 83240, 'de', 'name', 'Institut für Managementkompetenz'),
(101045, 83241, 'no_lang_code', 'name', 'Cytokinetics (United States)'),
(101046, 83242, 'ja', 'name', 'ę—„ęœ¬åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(101047, 83242, 'no_lang_code', 'name', 'Nippon Chemical Industrial (Japan)'),
(101048, 83243, 'en', 'name', 'Bureau of Ocean Energy Management'),
(101049, 83244, 'en', 'name', 'University of Engineering and Technology Taxila'),
(101050, 83245, 'en', 'name', 'Middle East Liver Disease Center'),
(101051, 83245, 'fa', 'name', 'مرکز ŲØŪŒŁ…Ų§Ų±ŪŒŁ‡Ų§ŪŒ کبدی Ų®Ų§ŁˆŲ±Ł…ŪŒŲ§Ł†Ł‡'),
(101052, 83246, 'hr', 'name', 'Institut za javno zdravlje Crne Gore'),
(101053, 83247, 'en', 'name', 'Spartanburg Regional Healthcare System'),
(101054, 83248, 'en', 'name', 'Philadelphia Water Department'),
(101055, 83249, 'no_lang_code', 'name', 'Active Biotech (Sweden)'),
(101056, 83250, 'en', 'name', 'Corporation for Production and Research of Laboratory Primates'),
(101057, 83250, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗˆé˜²č”›ē”Ÿå”ä¼š'),
(101058, 83251, 'no_lang_code', 'name', 'Nova Measuring Instruments (United States)'),
(101059, 83252, 'en', 'name', 'Engineering Laboratory'),
(101060, 83253, 'en', 'name', 'Epidemic Intelligence Service'),
(101061, 83254, 'en', 'name', 'Institute of Information and Computational Technologies'),
(101062, 83254, 'kk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ информационных Šø Š²Ń‹Ń‡ŠøŃŠ»ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… технологий'),
(101063, 83255, 'en', 'name', 'Association of Environmental & Engineering Geologists'),
(101064, 83256, 'de', 'name', 'Institut für Auslandsbeziehungen'),
(101065, 83256, 'en', 'name', 'Institute for Foreign Cultural Relations'),
(101066, 83257, 'en', 'name', 'The State Bank of Vietnam'),
(101067, 83257, 'vi', 'name', 'NgĆ¢n hĆ ng NhĆ  nước Việt Nam'),
(101068, 83258, 'en', 'name', 'Wellcome Connecting Science'),
(101069, 83259, 'en', 'name', 'American Orthopaedic Society for Sports Medicine'),
(101070, 83260, 'no_lang_code', 'name', '4Science'),
(101071, 83261, 'en', 'name', 'Carl Hayden Bee Research Center'),
(101072, 83262, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦¦ą§ą¦°ą¦Ŗą§ą¦°ą¦øą§ą¦„ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ ą¦¤ą¦„ą§ą¦Æ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ -ą¦¦ą¦æą¦²ą§ą¦²ą¦æ'),
(101073, 83262, 'en', 'name', 'Indraprastha Institute of Information Technology Delhi'),
(101074, 83262, 'gu', 'name', 'ąŖˆąŖØą«ąŖ¦ą«ąŖ°ąŖŖą«ąŖ°ąŖøą«ąŖ„ માહિતી ąŖŸą«‡ąŖ•ąŖØą«‹ąŖ²ą«‹ąŖœą«€ ąŖøąŖ‚ąŖøą«ąŖ„ąŖ¾ - ąŖ¦ąŖæąŖ²ą«ąŖ¹ą«€'),
(101075, 83262, 'hi', 'name', 'ą¤‡ą¤‚ą¤¦ą„ą¤°ą¤Ŗą„ą¤°ą¤øą„ą¤„ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(101076, 83262, 'kn', 'name', 'ą²‡ą²‚ą²¦ą³ą²°ą²Ŗą³ą²°ą²øą³ą²„ ಮಾಹಿತಿ ą²¤ą²‚ą²¤ą³ą²°ą²œą³ą²žą²¾ą²Ø ą²‡ą²Øą³ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ - ದೆಹಲಿ'),
(101077, 83262, 'ml', 'name', 'ą“‡ą“Øąµą“¦ąµą“°ą“Ŗąµą“°ą“øąµą“„ ą“µą“æą“µą“° ą“øą“¾ą“™ąµą“•ąµ‡ą“¤ą“æą“• ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ - ą“”ąµ†ąµ½ą“¹ą“æ'),
(101078, 83262, 'mr', 'name', 'ą¤‡ą¤‚ą¤¦ą„ą¤°ą¤Ŗą„ą¤°ą¤øą„ą¤„ ą¤®ą¤¾ą¤¹ą¤æą¤¤ą„€ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ -ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(101079, 83262, 'pa', 'name', 'ąØ‡ą©°ąØ¦ąØ°ąØŖą©ąØ°ąØøąØ„ ąØœąØ¾ąØ£ąØ•ąØ¾ąØ°ą©€ ąØ¤ąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ąØ‡ą©°ąØøąØŸą©€ąØšąØæąØŠąØŸ - ਦਿੱਲੀ '''),
(101080, 83262, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®°ą®Ŗą®æą®°ą®øąÆą®¤ą®¾ ą®¤ą®•ą®µą®²ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(101081, 83262, 'te', 'name', 'ą°‡ą°‚ą°¦ą±ą°°ą°Ŗą±ą°°ą°øą±ą°„ ą°‡ą°Øą±ą°«ą°°ą±ą°®ą±‡ą°·ą°Øą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± - ą°¢ą°æą°²ą±ą°²ą±€'),
(101082, 83262, 'ur', 'name', 'اندر پرستھ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ آف Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(101083, 83263, 'en', 'name', 'Hope International University'),
(101084, 83264, 'en', 'name', 'State Institute for Drug Control'),
(101085, 83264, 'sk', 'name', 'Å tĆ”tny Ćŗstav pre kontrolu liečiv'),
(101086, 83265, 'en', 'name', 'Southern California Earthquake Center'),
(101087, 83266, 'no_lang_code', 'name', 'Advanced Micro-Fabrication Equipment (China)'),
(101088, 83266, 'zh', 'name', 'äø­å¾®åŠåÆ¼ä½“č®¾å¤‡'),
(101089, 83267, 'no_lang_code', 'name', 'Sentieon (United States)'),
(101090, 83268, 'en', 'name', 'Geological Survey of Finland'),
(101091, 83269, 'en', 'name', 'The California Eye Institute'),
(101092, 83270, 'no_lang_code', 'name', 'Baidu (China)'),
(101093, 83270, 'zh', 'name', '百度'),
(101094, 83271, 'no_lang_code', 'name', 'Nanobase (South Korea)'),
(101095, 83272, 'en', 'name', 'Virginia Department of Energy Geology and Mineral Resources Program'),
(101096, 83273, 'en', 'name', 'International Association for Identification'),
(101097, 83274, 'en', 'name', 'Effective Basic Services for Africa'),
(101098, 83275, 'af', 'name', 'Akademie Reformatoriese Opleiding en Studies'),
(101099, 83276, 'no_lang_code', 'name', 'OmniVision (Germany)'),
(101100, 83277, 'pl', 'name', 'Centrum Onkologii'),
(101101, 83278, 'en', 'name', 'Centre for Disability Prevention and Rehabilitation'),
(101102, 83279, 'en', 'name', 'Hong Kong Society of Nephrology'),
(101103, 83280, 'en', 'name', 'Johnson & Wales University'),
(101104, 83281, 'en', 'name', 'Saolta University Health Care Group'),
(101105, 83281, 'ga', 'name', 'Grúpa Cúram SlÔinte Ollscoile Saolta'),
(101106, 83282, 'en', 'name', 'Research Institute for Applied Sciences'),
(101107, 83282, 'ja', 'name', 'åæœē”Øē§‘å­¦ē ”ē©¶ę‰€'),
(101108, 83283, 'en', 'name', 'Start International'),
(101109, 83284, 'no_lang_code', 'name', 'Freenome (United States)'),
(101110, 83285, 'pt', 'name', 'Sociedade Brasileira de Psicologia'),
(101111, 83286, 'no_lang_code', 'name', 'NestlƩ (Singapore)'),
(101112, 83287, 'en', 'name', 'Hanover institute of integrated production'),
(101113, 83287, 'no_lang_code', 'name', 'Institut fuer Integrierte Produktion Hannover (Germany)'),
(101114, 83288, 'en', 'name', 'Tottori University Hospital'),
(101115, 83288, 'ja', 'name', 'é³„å–å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(101116, 83289, 'en', 'name', 'European Academy of Allergy and Clinical Immunology'),
(101117, 83290, 'de', 'name', 'EuropƤische Melanchthon Akademie Bretten'),
(101118, 83291, 'en', 'name', 'Consolidated Mosquito Abatement District'),
(101119, 83292, 'en', 'name', 'Research Institute of Influenza'),
(101120, 83292, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гриппа ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(101121, 83293, 'ar', 'name', 'لمعهد Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠ للأبحاث Ų§Ł„Ų“Ų±Ł‚ŁŠŲ©'),
(101122, 83293, 'en', 'name', 'Orient-Institute Beirut'),
(101123, 83293, 'no_lang_code', 'name', 'Orient-Institut Beirut'),
(101124, 83294, 'ja', 'name', 'ę±ę“‹č‹±å’Œå„³å­¦é™¢å¤§å­¦'),
(101125, 83294, 'no_lang_code', 'name', 'Toyo Eiwa Jogakuin'),
(101126, 83295, 'en', 'name', 'Government of Nunavut'),
(101127, 83296, 'en', 'name', 'Wexham Park Hospital'),
(101128, 83297, 'en', 'name', 'St. Lawrence Global Observatory'),
(101129, 83297, 'fr', 'name', 'Observatoire Global du Saint-Laurent (OGSL)'),
(101130, 83298, 'en', 'name', 'Collaborative Clean Air Policy Centre'),
(101131, 83299, 'be', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ботанический саГ'),
(101132, 83299, 'en', 'name', 'Central Botanical Garden'),
(101133, 83300, 'no_lang_code', 'name', 'Norsvin (Norway)'),
(101134, 83301, 'en', 'name', 'Kake Educational Institution'),
(101135, 83301, 'ja', 'name', 'åŠ čØˆå­¦åœ’'),
(101136, 83302, 'fr', 'name', 'Polyclinique de Franche ComtƩ'),
(101137, 83303, 'en', 'name', 'Shanghai Drug Administration'),
(101138, 83303, 'zh', 'name', 'äøŠęµ·åø‚čÆå“ē›‘ē£ē®”ē†å±€'),
(101139, 83304, 'ja', 'name', 'åøå”šå±±å­¦é™¢å¤§å­¦'),
(101140, 83304, 'no_lang_code', 'name', 'Tezukayama Gakuin University'),
(101141, 83305, 'ja', 'name', 'äø‰ę“‹åŒ–ęˆå·„ę„­ę Ŗå¼ä¼šē¤¾'),
(101142, 83305, 'no_lang_code', 'name', 'Sanyo (Japan)'),
(101143, 83306, 'en', 'name', 'Association for Computing Machinery'),
(101144, 83307, 'pl', 'name', 'Wyższej Szkoły Kadr Menedżerskich w Koninie'),
(101145, 83308, 'en', 'name', 'University Hospitals Sussex NHS Foundation Trust'),
(101146, 83309, 'en', 'name', 'Institute of Water Problems of the North Karelian Research Centre'),
(101147, 83309, 'ru', 'name', 'ŠšŠ°Ń€ŠŠ¦ Š ŠŠ в рамках работы ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š Š“Šž в Республике ŠšŠ°Ń€ŠµŠ»ŠøŃ'),
(101148, 83310, 'en', 'name', 'Hunan Provincial People''s Hospital'),
(101149, 83310, 'zh', 'name', 'ę¹–å—ēœäŗŗę°‘åŒ»é™¢'),
(101150, 83311, 'no_lang_code', 'name', 'Timken (United States)'),
(101151, 83312, 'en', 'name', 'Asian Social Institute'),
(101152, 83313, 'en', 'name', 'National Sedimentation Laboratory'),
(101153, 83314, 'en', 'name', 'Second Affiliated Hospital of Jilin University'),
(101154, 83315, 'en', 'name', 'Center for Scientific Collaboration and Community Engagement'),
(101155, 83316, 'en', 'name', 'U.S. National Arboretum'),
(101156, 83317, 'en', 'name', 'American Center of Oriental Research'),
(101157, 83318, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾SUBARU'),
(101158, 83318, 'no_lang_code', 'name', 'Subaru (Japan)'),
(101159, 83319, 'en', 'name', 'Royal Institute and Observatory of the Spanish Navy'),
(101160, 83319, 'es', 'name', 'Real Instituto y Observatorio de la Armada'),
(101161, 83320, 'en', 'name', 'Mesothelioma Center'),
(101162, 83321, 'en', 'name', 'National Institute of Science and Technology Complex Fluids'),
(101163, 83321, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia de Fluidos Complexos'),
(101164, 83322, 'en', 'name', 'Hebei Academy of Sciences'),
(101165, 83322, 'zh', 'name', 'ę²³åŒ—ē§‘å­¦é™¢'),
(101166, 83323, 'ja', 'name', 'é–¢č„æé›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(101167, 83323, 'no_lang_code', 'name', 'Kansai Electric Power (Japan)'),
(101168, 83324, 'en', 'name', 'UNICEF East Asia and Pacific Regional Office'),
(101169, 83324, 'th', 'name', 'ąø­ąø‡ąø„ą¹Œąøąø²ąø£ąø¢ąø¹ąø™ąø“ą¹€ąø‹ąøŸ ประเทศไทย'),
(101170, 83325, 'de', 'name', 'Reiner Lemoine Institut'),
(101171, 83325, 'en', 'name', 'Reiner Lemoine Institute'),
(101172, 83326, 'nl', 'name', 'Ziekenhuis Rivierenland'),
(101173, 83327, 'en', 'name', 'Manchester School of Architecture'),
(101174, 83328, 'en', 'name', 'Fairview Ridges Hospital'),
(101175, 83329, 'en', 'name', 'Biomedical Research Council'),
(101176, 83330, 'en', 'name', 'Los Angeles County Department of Health Services'),
(101177, 83330, 'es', 'name', 'Departamento de Servicios de Salud del Condado de Los Ɓngeles'),
(101178, 83331, 'en', 'name', 'Urology of Indiana'),
(101179, 83332, 'en', 'name', 'Scientific Foundation SPIROSKI'),
(101180, 83332, 'mk', 'name', 'ŠŠ°ŃƒŃ‡Š½Š° Ń„Š¾Š½Š“Š°Ń†ŠøŃ˜Š° Š”ŠŸŠ˜Š ŠžŠ”ŠšŠ˜'),
(101181, 83333, 'no', 'name', 'CatoSenteret'),
(101182, 83334, 'ja', 'name', 'ćƒ­ćƒ¼ćƒ¬ćƒ«ćƒćƒ³ć‚Æćƒžć‚·ćƒ³ę Ŗå¼ä¼šē¤¾'),
(101183, 83334, 'no_lang_code', 'name', 'Laurel Bank Machines (Japan)'),
(101184, 83335, 'en', 'name', 'Ecological Society of America'),
(101185, 83336, 'en', 'name', 'Nur University'),
(101186, 83336, 'es', 'name', 'Universidad Nur'),
(101187, 83337, 'no_lang_code', 'name', 'Fastbase Solutions (Spain)'),
(101188, 83338, 'en', 'name', 'Network for Socioeconomic Research and Advancement'),
(101189, 83339, 'no_lang_code', 'name', 'Molecular Devices (United Kingdom)'),
(101190, 83340, 'en', 'name', 'Estonian Evangelical Lutheran Church'),
(101191, 83340, 'et', 'name', 'Eesti Evangeelne Luterlik Kirik'),
(101192, 83341, 'en', 'name', 'The National Lottery Heritage Fund'),
(101193, 83342, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بجاية'),
(101194, 83342, 'en', 'name', 'University of Béjaïa'),
(101195, 83342, 'fr', 'name', 'UniversitƩ Abderrahmane Mira'),
(101196, 83343, 'en', 'name', 'National Archeological Anthropological Memory Management'),
(101197, 83344, 'en', 'name', 'Wellington Institute of Technology'),
(101198, 83345, 'de', 'name', 'Bundesamt für Seeschifffahrt und Hydrographie'),
(101199, 83345, 'en', 'name', 'Federal Maritime and Hydrographic Agency of Germany'),
(101200, 83346, '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'),
(101201, 83346, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр имени акаГемика Кулакова" ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(101202, 83347, 'en', 'name', 'Beijing Institute of Graphic Communication'),
(101203, 83347, 'zh', 'name', 'åŒ—äŗ¬å°åˆ·å­¦é™¢'),
(101204, 83348, 'en', 'name', 'Hercules Foundation'),
(101205, 83349, 'en', 'name', 'National Institute of Child Health-San Borja'),
(101206, 83349, 'es', 'name', 'Instituto Nacional de Salud del NiƱo-San Borja'),
(101207, 83350, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒåŗ'),
(101208, 83350, 'no_lang_code', 'name', 'Saitama Prefecture'),
(101209, 83351, 'de', 'name', 'Deutsches Zentrum für Integrations- und Migrationsforschung'),
(101210, 83351, 'en', 'name', 'German Center for Integration and Migration Research'),
(101211, 83352, 'no_lang_code', 'name', 'Veolia (Norway)'),
(101212, 83353, 'es', 'name', 'Casa del NiƱo Hospital Infantil'),
(101213, 83354, 'no_lang_code', 'name', 'Zogenix (United States)'),
(101214, 83355, 'en', 'name', 'Łukasiewicz - Institute for Sustainable Technologies'),
(101215, 83355, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Instytut Technologii Eksploatacji'),
(101216, 83356, 'no_lang_code', 'name', 'Atossa Therapeutics (United States)'),
(101217, 83357, 'en', 'name', 'Reid Health'),
(101218, 83358, 'en', 'name', 'Industrial Research Institute of Ishikawa'),
(101219, 83358, 'ja', 'name', 'ēŸ³å·ēœŒå·„ę„­č©¦éØ“å “'),
(101220, 83359, 'en', 'name', 'Gustavo Bueno Foundation'),
(101221, 83359, 'es', 'name', 'Fundación Gustavo Bueno'),
(101222, 83360, 'no_lang_code', 'name', 'Nference (India)'),
(101223, 83361, 'no_lang_code', 'name', 'Autovista (Finland)'),
(101224, 83362, 'ja', 'name', 'äø‰ćƒ„ę˜Ÿćƒ™ćƒ«ćƒˆę Ŗå¼ä¼šē¤¾'),
(101225, 83362, 'no_lang_code', 'name', 'Mitsuboshi Belting (Japan)'),
(101226, 83363, 'en', 'name', 'Nucro Technics'),
(101227, 83364, 'en', 'name', 'Protein Research Foundation'),
(101228, 83364, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč›‹ē™½č³Ŗē ”ē©¶å„ØåŠ±ä¼š'),
(101229, 83365, 'ja', 'name', 'ć‚Æćƒ©ć‚·ć‚Øćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(101230, 83365, 'no_lang_code', 'name', 'Kracie (Japan)'),
(101231, 83366, 'en', 'name', 'WiSys'),
(101232, 83367, 'en', 'name', 'International Academy of Agrarian Education'),
(101233, 83367, 'ru', 'name', 'ŠœŠ•Š–Š”Š£ŠŠŠ ŠžŠ”ŠŠŠÆ ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ ŠŠ“Š ŠŠ ŠŠžŠ“Šž ŠžŠ‘Š ŠŠ—ŠžŠ’ŠŠŠ˜ŠÆ'),
(101234, 83367, 'zh', 'name', 'åœ‹éš›č¾²ę„­ę•™č‚²å­øé™¢'),
(101235, 83368, 'pt', 'name', 'Centro UniversitÔrio São Lucas'),
(101236, 83369, 'no_lang_code', 'name', 'Ferespe (Portugal)'),
(101237, 83370, 'en', 'name', 'United Nations Institute for Disarmament Research'),
(101238, 83371, 'en', 'name', 'National Engineering Laboratory of Deep Learning Technology and Application'),
(101239, 83371, 'zh', 'name', 'ę·±åŗ¦å­¦ä¹ ęŠ€ęœÆåŠåŗ”ē”Øå›½å®¶å·„ēØ‹å®žéŖŒå®¤'),
(101240, 83372, 'en', 'name', 'VASCage'),
(101241, 83373, 'en', 'name', 'Vietnam Maritime University'),
(101242, 83373, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c HĆ ng hįŗ£i Việt Nam'),
(101243, 83374, 'en', 'name', 'The Korean Society of Hematology'),
(101244, 83374, 'ko', 'name', 'ėŒ€ķ•œķ˜ˆģ•”ķ•™ķšŒ'),
(101245, 83375, 'no_lang_code', 'name', 'Transition Technologies (Poland)'),
(101246, 83376, 'en', 'name', 'MUFG Bank (United Kingdom)'),
(101247, 83377, 'en', 'name', 'Washington School of Psychiatry'),
(101248, 83378, 'en', 'name', 'Canossa Private Hospital'),
(101249, 83379, 'en', 'name', 'Hunan Institute of Engineering'),
(101250, 83379, 'zh', 'name', 'ę¹–å—å·„ēØ‹å­¦é™¢'),
(101251, 83380, 'en', 'name', 'ENEA Brasimone Research Centre'),
(101252, 83380, 'it', 'name', 'ENEA Centro Ricerche Brasimone'),
(101253, 83381, 'en', 'name', 'European Atherosclerosis Society'),
(101254, 83382, 'en', 'name', 'Penza State Pedagogical University'),
(101255, 83383, 'en', 'name', 'US Forest Service'),
(101256, 83384, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ€ć‚¤ćƒ•ć‚Æ'),
(101257, 83384, 'no_lang_code', 'name', 'Daifuku (Japan)'),
(101258, 83385, 'en', 'name', 'Al Jalila Foundation'),
(101259, 83386, 'en', 'name', 'APEC Climate Center'),
(101260, 83387, 'en', 'name', 'Shenzhen Science Museum'),
(101261, 83387, 'zh', 'name', 'å·ę·±åœ³ē§‘å­¦é¦†'),
(101262, 83388, 'en', 'name', 'Oku Okut Association'),
(101263, 83388, 'tr', 'name', 'Oku Okut Derneği'),
(101264, 83389, 'en', 'name', 'Department of Statistics Malaysia'),
(101265, 83390, 'en', 'name', 'Oxford Centre for Mission Studies'),
(101266, 83391, 'en', 'name', 'Measurement Standards Laboratory of New Zealand'),
(101267, 83392, 'en', 'name', 'International Superconductivity Technology Center'),
(101268, 83392, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›č¶…é›»å°Žē”£ę„­ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(101269, 83393, 'en', 'name', 'Japanese Red Cross Hadano Hospital'),
(101270, 83393, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ē§¦é‡Žčµ¤åå­—ē—…é™¢'),
(101271, 83394, 'no_lang_code', 'name', 'ImmunityBio (United States)'),
(101272, 83395, 'en', 'name', 'Centre for High Performance Computing'),
(101273, 83396, 'ja', 'name', 'ę›™ćƒ–ćƒ¬ćƒ¼ć‚­å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(101274, 83396, 'no_lang_code', 'name', 'Akebono (Japan)'),
(101275, 83397, 'en', 'name', 'Indian Institute of Public Administration'),
(101276, 83397, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤²ą„‹ą¤• ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤øą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(101277, 83398, 'de', 'name', 'DVGW-Forschungsstelle am Engler-Bunte-Institut des Karlsruher Instituts für Technologie'),
(101278, 83399, 'en', 'name', 'Government College University, Lahore'),
(101279, 83399, 'pa', 'name', 'ąØ—ą©ŒąØ°ąØ®ąØæą©°ąØŸ ąØ•ąØ¾ąØ²ąØœ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(101280, 83399, 'ur', 'name', 'ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ کالج Ł„Ų§ŪŁˆŲ±'),
(101281, 83400, 'en', 'name', 'Nizhny Novgorod Federal Research Institute of Pediatric Gastroenterology'),
(101282, 83400, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ ŠŠ˜Š˜ Гетской Š³Š°ŃŃ‚Ń€Š¾ŃŠ½Ń‚ŠµŃ€Š¾Š»Š¾Š³ŠøŠø'),
(101283, 83401, 'ko', 'name', 'ė ˆėŖØė„„ģŠ¤'),
(101284, 83401, 'no_lang_code', 'name', 'Lemonex (South Korea)'),
(101285, 83402, 'en', 'name', 'Program Systems Institute of RAS'),
(101286, 83402, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ программных систем Российской акаГемии наук'),
(101287, 83403, 'ja', 'name', 'ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚°ćƒ«ćƒ¼ćƒ“'),
(101288, 83403, 'no_lang_code', 'name', 'Science Groove (Japan)'),
(101289, 83404, 'da', 'name', 'Dansk Geoteknisk Forening'),
(101290, 83404, 'en', 'name', 'Danish Geotechnical Society'),
(101291, 83405, 'en', 'name', 'The Micheli Center for Sports Injury Prevention'),
(101292, 83406, 'it', 'name', 'Igenomix'),
(101293, 83407, 'en', 'name', 'Horace Mann School'),
(101294, 83408, 'fr', 'name', 'Centre Hospitalier de l’UniversitĆ© de MontrĆ©al, Centre hospitalier de l''universitĆ© de montrĆ©al'),
(101295, 83409, 'en', 'name', '1 CP Place (United States)'),
(101296, 83410, 'en', 'name', 'Clark University'),
(101297, 83410, 'es', 'name', 'Universidad Clark'),
(101298, 83411, 'en', 'name', 'Marine Technology Society'),
(101299, 83412, 'en', 'name', 'Shanghai Municipal Commission of Economy and Informatization'),
(101300, 83412, 'zh', 'name', 'äøŠęµ·åø‚ē»ęµŽå’Œäæ”ęÆåŒ–å§”å‘˜ä¼š'),
(101301, 83413, 'fr', 'name', 'KƩlonia'),
(101302, 83414, 'en', 'name', 'Hokkaido University Hospital'),
(101303, 83414, 'ja', 'name', 'åŒ—ęµ·é“å¤§å­¦ē—…é™¢'),
(101304, 83415, 'en', 'name', 'International Centre for Research on the Environment and the Economy'),
(101305, 83416, 'en', 'name', 'Community of Physics'),
(101306, 83417, 'en', 'name', 'Age Institute'),
(101307, 83417, 'fi', 'name', 'IkƤinstituutin'),
(101308, 83418, 'no_lang_code', 'name', 'Rusal (Russia)'),
(101309, 83418, 'ru', 'name', 'ŠžŠš РУДАЛ'),
(101310, 83419, 'en', 'name', 'Marien Hospital Witten'),
(101311, 83420, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å°ę£®ć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(101312, 83420, 'no_lang_code', 'name', 'Komori (Japan)'),
(101313, 83421, 'en', 'name', 'Academy for Scientific Investigative Training'),
(101314, 83422, 'ja', 'name', 'ć‚Ŗćƒ¼ć‚Øć‚¹ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(101315, 83422, 'no_lang_code', 'name', 'OSG (Japan)'),
(101316, 83423, 'en', 'name', 'Bridgeport Public Library'),
(101317, 83424, 'en', 'name', 'Nagano Red Cross Hospital'),
(101318, 83424, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é•·é‡Žčµ¤åå­—ē—…é™¢'),
(101319, 83425, 'no_lang_code', 'name', 'Altimmune (United States)'),
(101320, 83426, 'no_lang_code', 'name', 'Autarcon (Germany)'),
(101321, 83427, 'en', 'name', 'Heatherwood Hospital'),
(101322, 83428, 'en', 'name', 'VA Northeast Ohio Healthcare System'),
(101323, 83429, 'no_lang_code', 'name', 'GI Specialists of Georgia (United States)'),
(101324, 83430, 'en', 'name', 'Mongolian Agency for Standardization and Metrology'),
(101325, 83430, 'fr', 'name', 'Agence mongole de normalisation et de mƩtrologie'),
(101326, 83430, 'mn', 'name', 'ДтанГартчилал, Ń…ŃŠ¼Š¶ŠøŠ» зүйн газар'),
(101327, 83431, 'no_lang_code', 'name', 'Cedars-Sinai Smidt Heart Institute'),
(101328, 83432, 'en', 'name', 'Outcomes Research Consortium'),
(101329, 83433, 'en', 'name', 'VIB-UAntwerp Center for Molecular Neurology'),
(101330, 83434, 'ja', 'name', 'ćƒ€ć‚¦ćƒ»ć‚±ćƒŸć‚«ćƒ«ę—„ęœ¬ę Ŗå¼ä¼šē¤¾'),
(101331, 83434, 'no_lang_code', 'name', 'Dow Chemical (Japan)'),
(101332, 83435, 'en', 'name', 'Polish Agency for Enterprise Development'),
(101333, 83435, 'pl', 'name', 'Polska Agencja Rozwoju Przedsiębiorczości'),
(101334, 83436, 'en', 'name', 'Heze University'),
(101335, 83436, 'zh', 'name', 'čę³½å¤§å­¦'),
(101336, 83437, 'en', 'name', 'National Hospital Organization Miyazaki Higashi Hospital'),
(101337, 83437, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å®®å“Žę±ē—…é™¢'),
(101338, 83438, 'en', 'name', 'Proton Collaborative Group'),
(101339, 83439, 'de', 'name', 'Hector-Stiftung'),
(101340, 83440, 'en', 'name', 'Hartwig Medical Foundation'),
(101341, 83441, 'no_lang_code', 'name', 'Nouscom (Italy)'),
(101342, 83442, 'en', 'name', 'University College London Hospitals NHS Foundation Trust'),
(101343, 83443, 'en', 'name', 'International Institute for Sustainability'),
(101344, 83443, 'pt', 'name', 'Instituto Internacional para Sustentabilidade'),
(101345, 83444, 'en', 'name', 'Center for Conservation, Research and Management of Natural Areas'),
(101346, 83444, 'es', 'name', 'Centro de Conservación Investigación y Manejo de Areas Naturales'),
(101347, 83445, 'en', 'name', 'European Association for Palliative Care'),
(101348, 83446, 'en', 'name', 'Research Institute of Human Morphology'),
(101349, 83446, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ морфологии человека'),
(101350, 83447, 'en', 'name', 'International Innovative University'),
(101351, 83447, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ инновационный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101352, 83448, 'en', 'name', 'Association of Indian Universities'),
(101353, 83448, 'fr', 'name', 'Association des universitƩs indiennes'),
(101354, 83449, 'en', 'name', 'Sendai City Hospital'),
(101355, 83449, 'ja', 'name', 'ä»™å°åø‚ē«‹ē—…é™¢'),
(101356, 83450, 'no_lang_code', 'name', 'CSD Engineers (Switzerland)'),
(101357, 83451, 'en', 'name', 'Laboratory Krone'),
(101358, 83452, 'en', 'name', 'Canadian Forest Service'),
(101359, 83453, 'es', 'name', 'Asociación Colombiana de Infectología'),
(101360, 83454, 'en', 'name', 'Knipling-Bushland U.S. Livestock Insects Research Laboratory'),
(101361, 83455, 'en', 'name', 'British Academy of Management'),
(101362, 83456, 'en', 'name', 'Centre for Health Technology and Services Research');
INSERT INTO `ror_settings` VALUES
(101363, 83456, 'pt', 'name', 'Centro de Investigação em Tecnologias e Serviços de Saúde'),
(101364, 83457, 'en', 'name', 'Ohio Department of Health'),
(101365, 83458, 'en', 'name', 'Ghana Armed Forces Command and Staff College'),
(101366, 83459, 'en', 'name', 'Office of the United Nations High Commissioner for Refugees'),
(101367, 83459, 'fr', 'name', 'Haut Commissariat des Nations Unies pour les RƩfugiƩs'),
(101368, 83460, 'en', 'name', 'National Research Council Institute for Biodiagnostics'),
(101369, 83461, 'en', 'name', 'Kazakh Research Institute of Agriculture and Plant growing'),
(101370, 83461, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› Жер ŠØŠ°Ń€ŃƒŠ°ŃˆŃ‹Š»Ń‹Ņ“Ń‹ Ғылыми Š—ŠµŃ€Ń‚Ń‚ŠµŃƒ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(101371, 83462, 'es', 'name', 'Agencia EspaƱola de Medicamentos y Productos Sanitarios'),
(101372, 83463, 'en', 'name', 'Centre for Research in Anthropology'),
(101373, 83463, 'pt', 'name', 'Centro em Rede de Investigacao em Antropologia'),
(101374, 83464, 'en', 'name', 'Gerens Graduate School'),
(101375, 83464, 'es', 'name', 'Escuela de Postgrado Gěrens'),
(101376, 83465, 'no_lang_code', 'name', 'SalvageBlue (Saint Vincent and the Grenadines)'),
(101377, 83466, 'en', 'name', 'Universities Space Research Association'),
(101378, 83467, 'bn', 'name', 'ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦Øą¦æą¦‰ą¦•ą§ą¦²ą¦æą¦Æą¦¼ą¦¾ą¦° মেঔিসিন ą¦ą¦Øą§ą¦” ą¦…ą§ą¦Æą¦¾ą¦²ą¦¾ą¦Æą¦¼ą§‡ą¦” ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦øą§‡ą¦ø'),
(101379, 83467, 'en', 'name', 'National Institute of Nuclear Medicine & Allied Sciences'),
(101380, 83468, 'no_lang_code', 'name', 'DNAnexus (United States)'),
(101381, 83469, 'en', 'name', 'Japanese Red Cross Nagoya Daini Hospital'),
(101382, 83469, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾åå¤å±‹ē¬¬äŗŒčµ¤åå­—ē—…é™¢'),
(101383, 83470, 'en', 'name', 'Japan Wildlife Research Center'),
(101384, 83470, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗ č‡Ŗē„¶ē’°å¢ƒē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(101385, 83471, 'en', 'name', 'The First People''s Hospital of Jiangxia District'),
(101386, 83471, 'zh', 'name', 'ę±Ÿå¤åŒŗē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(101387, 83472, 'ja', 'name', 'åŒ—č¦‹ęƒ…å ±ęŠ€č”“ę Ŗå¼ä¼šē¤¾'),
(101388, 83472, 'no_lang_code', 'name', 'Kitami Information Technology (Japan)'),
(101389, 83473, 'en', 'name', 'Puerto Rico Community Foundation'),
(101390, 83473, 'es', 'name', 'Fundación Comunitaria de Puerto Rico'),
(101391, 83474, 'pt', 'name', 'Sociedade Portuguesa de Ciências da Educação'),
(101392, 83475, 'en', 'name', 'Environmental Research Institute Charlotteville'),
(101393, 83476, 'en', 'name', 'Charotar University of Science and Technology'),
(101394, 83476, 'gu', 'name', 'ąŖšąŖ°ą«‹ąŖ¤ąŖ° ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸąŖæ ąŖ“ąŖ« ąŖøąŖ¾ąŖÆąŖØą«ąŖø ąŖąŖØą«ąŖ” ąŖŸą«‡ąŖ•ą«ąŖØą«‰ąŖ²ą«‹ąŖœą«€'),
(101395, 83477, 'en', 'name', 'Bay Area Air Quality Management District'),
(101396, 83478, 'en', 'name', 'Center for Advanced Internet Studies'),
(101397, 83479, 'en', 'name', 'University of Toyama'),
(101398, 83479, 'ja', 'name', '富山大学'),
(101399, 83480, 'es', 'name', 'Instituto de FilosofĆ­a y Ciencias de la Complejidad'),
(101400, 83481, 'no_lang_code', 'name', 'Castor'),
(101401, 83482, 'no_lang_code', 'name', 'EarthCape (Finland)'),
(101402, 83483, 'ja', 'name', 'ć‚«ć‚¬ćƒŸć‚ÆćƒŖć‚¹ć‚æćƒ«'),
(101403, 83483, 'no_lang_code', 'name', 'Kagami Crystal (Japan)'),
(101404, 83484, 'en', 'name', 'National Institute of Technology and Evaluation'),
(101405, 83484, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗč£½å“č©•ä¾”ęŠ€č”“åŸŗē›¤ę©Ÿę§‹'),
(101406, 83485, 'no_lang_code', 'name', 'Glassomer (Germany)'),
(101407, 83486, 'en', 'name', 'University of Gastronomic Sciences'),
(101408, 83486, 'it', 'name', 'UniversitĆ  degli Studi di Scienze Gastronomiche'),
(101409, 83487, 'ja', 'name', 'ę±äŗ¬ē“¦ę–Æę Ŗå¼ä¼šē¤¾'),
(101410, 83487, 'no_lang_code', 'name', 'Tokyo Gas (Japan)'),
(101411, 83488, 'en', 'name', 'Japan Geoscience Union'),
(101412, 83488, 'ja', 'name', 'ę—„ęœ¬åœ°ēƒęƒ‘ę˜Ÿē§‘å­¦é€£åˆ'),
(101413, 83489, 'en', 'name', 'Junior College Library Association'),
(101414, 83489, 'ja', 'name', 'ē§ē«‹ēŸ­ęœŸå¤§å­¦å›³ę›øé¤Øå”č­°ä¼š'),
(101415, 83490, 'en', 'name', 'Inner Mongolia University of Science and Technology'),
(101416, 83490, 'zh', 'name', 'å†…č’™å¤ē§‘ęŠ€å¤§å­¦'),
(101417, 83491, 'no_lang_code', 'name', 'Grandomics (China)'),
(101418, 83492, 'no_lang_code', 'name', 'CSL (Australia)'),
(101419, 83493, 'en', 'name', 'China Railway Corporation'),
(101420, 83493, 'zh', 'name', 'äø­å›½é“č·Æę€»å…¬åø'),
(101421, 83494, 'en', 'name', 'Broome Regional Aboriginal Medical Service'),
(101422, 83495, 'no_lang_code', 'name', 'AlphaThera (United States)'),
(101423, 83496, 'en', 'name', 'Federal Research Center of Fundamental and Translational Medicine'),
(101424, 83496, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр Š¤ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Š¾Š¹ Šø Š¢Ń€Š°Š½ŃŠ»ŃŃ†ŠøŠ¾Š½Š½Š¾Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½Ń‹'),
(101425, 83497, 'en', 'name', 'Molecular Diagnostics Services'),
(101426, 83498, 'ja', 'name', 'é™å²”ēœŒē«‹ē·åˆē—…é™¢'),
(101427, 83498, 'no_lang_code', 'name', 'Shizuoka General Hospital'),
(101428, 83499, 'no_lang_code', 'name', 'Schiffbau-Versuchsanstalt Potsdam (Germany)'),
(101429, 83500, 'en', 'name', 'VIB-KU Leuven Center for Brain & Disease Research'),
(101430, 83501, 'en', 'name', 'Astronomical Observatory of Cagliari'),
(101431, 83501, 'it', 'name', 'Osservatorio Astronomico di Cagliari'),
(101432, 83502, 'en', 'name', 'Oxford Archaeology'),
(101433, 83503, 'ja', 'name', 'å¤§å’Œåø‚ē«‹ē—…é™¢'),
(101434, 83503, 'no_lang_code', 'name', 'Yamato Municipal Hospital'),
(101435, 83504, 'en', 'name', 'Gloucester Marine Genomics Institute'),
(101436, 83505, 'no_lang_code', 'name', 'Vale (Canada)'),
(101437, 83506, 'en', 'name', 'Food Safety and Inspection Service'),
(101438, 83507, 'en', 'name', 'V. Peskov Voronezhsky State Nature Biosphere Reserve'),
(101439, 83507, 'ru', 'name', 'Š’ŠžŠ ŠžŠŠ•Š–Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠŸŠ Š˜Š ŠžŠ”ŠŠ«Š™ Š‘Š˜ŠžŠ”Š¤Š•Š ŠŠ«Š™ Š—ŠŠŸŠžŠ’Š•Š”ŠŠ˜Šš Š˜ŠœŠ•ŠŠ˜ Š’.М. ŠŸŠ•Š”ŠšŠžŠ’Š'),
(101440, 83508, 'en', 'name', 'Guangdong Provincial People''s Hospital'),
(101441, 83508, 'zh', 'name', 'å¹æäøœēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(101442, 83509, 'de', 'name', 'Zentrum für Pränataldiagnostik'),
(101443, 83510, 'no_lang_code', 'name', 'Iridian Genomes'),
(101444, 83511, 'en', 'name', 'Nagoya Heart Center'),
(101445, 83511, 'ja', 'name', 'åå¤å±‹ćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(101446, 83512, 'en', 'name', 'Boston Sports & Shoulder Center'),
(101447, 83513, 'no_lang_code', 'name', 'Engineering (Italy)'),
(101448, 83514, 'en', 'name', 'Taipei Institute of Pathology'),
(101449, 83514, 'zh', 'name', 'å°åŒ—ē—…ē†äø­åæƒ'),
(101450, 83515, 'en', 'name', 'Lao-Oxford-Mahosot Hospital-Wellcome Trust Research Unit'),
(101451, 83516, 'en', 'name', 'CODE University of Applied Sciences'),
(101452, 83517, 'en', 'name', 'Canadian Patient Safety Institute'),
(101453, 83517, 'fr', 'name', 'Institut canadien pour la sƩcuritƩ des patients'),
(101454, 83518, 'en', 'name', 'Fujian Provincial Hospital'),
(101455, 83518, 'zh', 'name', 'ē¦å»ŗēœē«‹åŒ»é™¢'),
(101456, 83519, 'en', 'name', 'University Carlo Cattaneo'),
(101457, 83519, 'it', 'name', 'Libera UniversitĆ  Carlo Cattaneo'),
(101458, 83520, 'en', 'name', 'Jiangsu Center for Collaborative Innovation in Geographical Information Resource Development and Application'),
(101459, 83520, 'zh', 'name', 'ę±Ÿč‹ēœåœ°ē†äæ”ęÆčµ„ęŗå¼€å‘äøŽåˆ©ē”ØååŒåˆ›ę–°'),
(101460, 83521, 'no_lang_code', 'name', 'Powertech Labs (Canada)'),
(101461, 83522, 'en', 'name', 'Ivanovo Research Institute of Motherhood and Childhood named after VN Gorodkov'),
(101462, 83523, 'en', 'name', 'Nara Medical University'),
(101463, 83523, 'ja', 'name', 'å„ˆč‰ÆēœŒē«‹åŒ»ē§‘å¤§å­¦'),
(101464, 83524, 'en', 'name', 'Malawi Epidemiology and Intervention Research Unit'),
(101465, 83525, 'en', 'name', 'Jnana Deepa, Institute of Philosophy and Theology'),
(101466, 83526, 'no_lang_code', 'name', 'ABB (India)'),
(101467, 83527, 'en', 'name', 'Alliance Healthcare Foundation'),
(101468, 83528, 'en', 'name', 'Manmohan Memorial Institute of Health Sciences'),
(101469, 83529, 'no_lang_code', 'name', 'Clariant (Switzerland)'),
(101470, 83530, 'fr', 'name', 'Conseil RƩgional de Lorraine'),
(101471, 83531, 'fr', 'name', 'HƓtel-Dieu de MontrƩal'),
(101472, 83532, 'no_lang_code', 'name', 'Integrated Spaceflight Services (United States)'),
(101473, 83533, 'no_lang_code', 'name', 'Sangamo BioSciences (United States)'),
(101474, 83534, 'en', 'name', 'Andrija Stampar Teaching Institute of Public Health'),
(101475, 83534, 'hr', 'name', 'Nastavni Zavod za Javno Zdravstvo "Dr. Andrija Å tampar"'),
(101476, 83535, 'es', 'name', 'Instituto Peruano de Orientación Psicológica'),
(101477, 83536, 'en', 'name', 'Kabardino-Balkarski Nature Reserve'),
(101478, 83536, 'ru', 'name', 'ŠšŠ°Š±Š°Ń€Š“ŠøŠ½Š¾-Балкарский заповеГник'),
(101479, 83537, 'en', 'name', 'Slovak Organization for Space Activities'),
(101480, 83537, 'sk', 'name', 'SlovenskƔ OrganizƔcia pre Vesmƭrne Aktivity'),
(101481, 83538, 'en', 'name', 'Federal State Budgetary Institution of Science "Scientific and Technological Center of Unique Instrumentation" of the Russian Academy of Sciences'),
(101482, 83538, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки ŠŠ°ŃƒŃ‡Š½Š¾-технологический центр уникального ŠæŃ€ŠøŠ±Š¾Ń€Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ Российской акаГемии наук'),
(101483, 83539, 'en', 'name', 'Printability And Graphic Communications Institute'),
(101484, 83539, 'fr', 'name', 'Institut Des Communications Graphiques Du QuƩbec'),
(101485, 83540, 'en', 'name', 'Canadian Mennonite University'),
(101486, 83541, 'en', 'name', 'Hungarian School Sport Federation'),
(101487, 83541, 'hu', 'name', 'Magyar DiƔksport SzƶvetsƩg'),
(101488, 83542, 'de', 'name', 'Verbund Katholischer Kliniken Düsseldorf'),
(101489, 83543, 'en', 'name', 'Federal Medical Research Centre for Psychiatry and Narcology'),
(101490, 83543, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр психиатрии Šø наркологии имени Š’.П. Дербского'),
(101491, 83544, 'en', 'name', 'Canadian Agricultural Economics Society'),
(101492, 83544, 'fr', 'name', 'SociƩtƩ Canadienne d''AgroƩconomie'),
(101493, 83545, 'en', 'name', 'Memorial Hermann–Texas Medical Center'),
(101494, 83546, 'en', 'name', 'Umkhuseli Innovation and Research Management'),
(101495, 83547, 'en', 'name', 'California Public Utilities Commission'),
(101496, 83548, 'en', 'name', 'Northern Great Plains Research Laboratory'),
(101497, 83549, 'no_lang_code', 'name', 'Sahodaran'),
(101498, 83549, 'ta', 'name', 'ą®šą®¹ąÆ‹ą®¤ą®°ą®©ąÆ'),
(101499, 83550, 'no_lang_code', 'name', 'Health Economics and Outcomes Research (United Kingdom)'),
(101500, 83551, 'en', 'name', 'Erasmus MC - Sophia Children’s Hospital'),
(101501, 83552, 'no_lang_code', 'name', 'Bayern Innovativ (Germany)'),
(101502, 83553, 'de', 'name', 'Ethnologisches Museum Berlin'),
(101503, 83553, 'en', 'name', 'Ethnological Museum'),
(101504, 83554, 'en', 'name', 'Jewish Rehabilitation Hospital'),
(101505, 83554, 'fr', 'name', 'HƓpital juif de rƩadaptation'),
(101506, 83555, 'en', 'name', 'Swiss National Data and Service Center for the Humanities'),
(101507, 83556, 'en', 'name', 'Centers for Disease Control and Prevention'),
(101508, 83557, 'ja', 'name', 'ć‚¢ć‚¹ćƒˆćƒ©ć‚¼ćƒć‚«ę Ŗå¼ä¼šē¤¾'),
(101509, 83557, 'no_lang_code', 'name', 'AstraZeneca (Japan)'),
(101510, 83558, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒœć‚¾ćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(101511, 83558, 'no_lang_code', 'name', 'BoZo Research Center (Japan)'),
(101512, 83559, 'en', 'name', 'Doylestown Hospital'),
(101513, 83560, 'no_lang_code', 'name', 'Greo'),
(101514, 83561, 'en', 'name', 'International Chemical Secretariat'),
(101515, 83562, 'en', 'name', 'Universal Academy'),
(101516, 83563, 'en', 'name', 'Institute for Animal Husbandry'),
(101517, 83564, 'ar', 'name', 'منتدى Ų§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŁŠŲ©'),
(101518, 83564, 'en', 'name', 'Economic Research Forum'),
(101519, 83565, 'ja', 'name', 'ć‚­ćƒ£ć‚æćƒ”ćƒ©ćƒ¼ć‚øćƒ£ćƒ‘ćƒ³ę Ŗå¼ä¼šē¤¾'),
(101520, 83565, 'no_lang_code', 'name', 'Caterpillar (Japan)'),
(101521, 83566, 'es', 'name', 'Fundación Hospital San Pedro'),
(101522, 83567, 'en', 'name', 'National Museum of the Philippines'),
(101523, 83567, 'tl', 'name', 'Pambansang Museo ng Pilipinas'),
(101524, 83568, 'ja', 'name', 'å›½éš›ēŸ³ę²¹é–‹ē™ŗåøēŸ³ę Ŗå¼ä¼šē¤¾'),
(101525, 83568, 'no_lang_code', 'name', 'Inpex (Japan)'),
(101526, 83569, 'en', 'name', 'Pittsburgh Quantum Institute'),
(101527, 83570, 'en', 'name', 'Biological Museum, Lund University'),
(101528, 83570, 'sv', 'name', 'Biologiska Museet, Lunds universitet'),
(101529, 83571, 'pt', 'name', 'Associação Brasileira de Saúde Coletiva'),
(101530, 83572, 'ja', 'name', 'ć‚°ćƒ­ćƒ¼ćƒŖćƒ¼ę Ŗå¼ä¼šē¤¾'),
(101531, 83572, 'no_lang_code', 'name', 'Glory (Japan)'),
(101532, 83573, 'no_lang_code', 'name', 'AVL (Turkey)'),
(101533, 83574, 'en', 'name', 'Natural History Museum Maastricht'),
(101534, 83574, 'nl', 'name', 'Natuurhistorisch Museum Maastricht'),
(101535, 83575, 'en', 'name', 'IPS Central'),
(101536, 83576, 'en', 'name', 'BioInnovation Institute'),
(101537, 83577, 'en', 'name', 'Wyss Foundation'),
(101538, 83578, 'en', 'name', 'National Engineering Research Center for Nanotechnology'),
(101539, 83578, 'zh', 'name', 'ēŗ³ē±³ęŠ€ęœÆåŠåŗ”ē”Øå›½å®¶å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(101540, 83579, 'en', 'name', 'International Water Management Institute'),
(101541, 83580, 'en', 'name', 'University of the Sciences'),
(101542, 83580, 'fr', 'name', 'UniversitƩ des sciences Ơ philadelphie'),
(101543, 83581, 'no_lang_code', 'name', 'von Hoerner & Sulger (Germany)'),
(101544, 83582, 'no_lang_code', 'name', 'AiCuris (Germany)'),
(101545, 83583, 'pt', 'name', 'Centro UniversitƔrio do Distrito Federal'),
(101546, 83584, 'en', 'name', 'Beijing Research Center for Agricultural and Standards and Testing'),
(101547, 83584, 'zh', 'name', 'åŒ—äŗ¬å†œäøšč“Øé‡ę ‡å‡†äøŽę£€ęµ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(101548, 83585, 'es', 'name', 'Universidad TƩcnica de Ambato'),
(101549, 83586, 'en', 'name', 'National Laboratory for Agriculture and the Environment'),
(101550, 83587, 'cs', 'name', 'VysokĆ” Å”kola JagiellońskĆ” v Toruni'),
(101551, 83587, 'en', 'name', 'Jagiellonian College'),
(101552, 83587, 'pl', 'name', 'Kolegium Jagiellońskie Toruńskiej Szkoły Wyższej'),
(101553, 83588, 'en', 'name', 'National Trauma Research Institute'),
(101554, 83589, 'en', 'name', 'Nagano Children''s Hospital'),
(101555, 83589, 'ja', 'name', 'é•·é‡ŽēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(101556, 83590, 'en', 'name', 'Islamic Azad University Sanandaj Branch'),
(101557, 83590, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سنندج'),
(101558, 83591, 'en', 'name', 'National Trust for Historic Preservation'),
(101559, 83592, 'en', 'name', 'Gunma Prefectural College of Health Sciences'),
(101560, 83592, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹ēœŒę°‘å„åŗ·ē§‘å­¦å¤§å­¦'),
(101561, 83593, 'en', 'name', 'SmartCity.institute'),
(101562, 83594, 'de', 'name', 'Klinikum Kassel'),
(101563, 83595, 'en', 'name', 'Research Institute of Economy, Trade and Industry'),
(101564, 83595, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗēµŒęøˆē”£ę„­ē ”ē©¶ę‰€'),
(101565, 83596, 'en', 'name', 'U.S. Dairy Forage Research Center'),
(101566, 83597, 'en', 'name', 'Institute of Paediatric Virology'),
(101567, 83598, 'en', 'name', 'IBM Research - Tokyo'),
(101568, 83598, 'ja', 'name', 'ę—„ęœ¬ć‚¢ć‚¤ćƒ»ćƒ“ćƒ¼ćƒ»ć‚Øćƒ ę Ŗå¼ä¼šē¤¾'),
(101569, 83599, 'en', 'name', 'Jikei University Kashiwa hospital'),
(101570, 83599, 'ja', 'name', 'ę±äŗ¬ę…ˆęµä¼šåŒ»ē§‘å¤§å­¦é™„å±žęŸē—…é™¢'),
(101571, 83600, 'no_lang_code', 'name', 'Sophia Genetics (France)'),
(101572, 83601, 'en', 'name', 'Scientific Center of Children''s Health'),
(101573, 83601, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр Š·Š“Š¾Ń€Š¾Š²ŃŒŃ Гетей'),
(101574, 83602, 'no_lang_code', 'name', 'Taproot Health (United States)'),
(101575, 83603, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åæƒč‡“č”€åœ§ē ”ē©¶ęŒÆčˆˆä¼šę¦ŠåŽŸčØ˜åæµē—…é™¢'),
(101576, 83603, 'no_lang_code', 'name', 'Sakakibara Memorial Hospital'),
(101577, 83604, 'de', 'name', 'Neurologisches Rehabilitationszentrum Quellenhof Bad Wildbad'),
(101578, 83605, 'en', 'name', 'ENEA Bologna Research Centre'),
(101579, 83605, 'it', 'name', 'ENEA Centro Ricerche Bologna'),
(101580, 83606, 'ja', 'name', 'ćƒžćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(101581, 83606, 'no_lang_code', 'name', 'Max (Japan)'),
(101582, 83607, 'en', 'name', 'Sapporo City General Hospital'),
(101583, 83607, 'ja', 'name', 'åø‚ē«‹ęœ­å¹Œē—…é™¢'),
(101584, 83608, 'en', 'name', 'Taylor''s University'),
(101585, 83609, 'no_lang_code', 'name', 'NestlƩ (Brazil)'),
(101586, 83610, 'en', 'name', 'Kuma Hospital'),
(101587, 83610, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē„žē”²ä¼šéšˆē—…é™¢'),
(101588, 83611, 'no_lang_code', 'name', 'Inimex Pharmaceuticals (Canada)'),
(101589, 83612, 'en', 'name', 'Antioquia Research Institute'),
(101590, 83612, 'es', 'name', 'Instituto Antioqueño de Investigación'),
(101591, 83613, 'ja', 'name', 'å¤§åŒćƒ”ć‚æćƒ«å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(101592, 83613, 'no_lang_code', 'name', 'Daido Metal (Japan)'),
(101593, 83614, 'es', 'name', 'Complejo Asistencial Sótero del Río'),
(101594, 83615, 'en', 'name', 'Inspire Institute'),
(101595, 83616, 'en', 'name', 'Thai Health Promotion Foundation'),
(101596, 83617, 'en', 'name', 'AMPATH'),
(101597, 83618, 'en', 'name', 'Kent and Medway Medical School'),
(101598, 83619, 'en', 'name', 'Jesse Brown VA Medical Center'),
(101599, 83620, 'no_lang_code', 'name', 'Saputo (Canada)'),
(101600, 83621, 'en', 'name', 'NorthBay Healthcare'),
(101601, 83622, 'en', 'name', 'Rowan University'),
(101602, 83623, 'no_lang_code', 'name', 'Hauri (Germany)'),
(101603, 83624, 'en', 'name', 'Reflex Sympathetic Dystrophy Syndrome Association'),
(101604, 83625, 'el', 'name', 'Ογκολογικό ĪšĪ­Ī½Ļ„ĻĪæ Τράπεζας ĪšĻĻ€ĻĪæĻ…'),
(101605, 83625, 'en', 'name', 'Bank of Cyprus Oncology Center'),
(101606, 83626, 'en', 'name', 'Institute of Social and Political Psychology'),
(101607, 83626, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ¾Ń†Ń–Š°Š»ŃŒŠ½Š¾Ń— та політичної психології ŠŠŠŸŠ України'),
(101608, 83627, 'en', 'name', 'Defense Security Cooperation Agency'),
(101609, 83628, 'no_lang_code', 'name', 'AgBioData'),
(101610, 83629, 'en', 'name', 'The Institute of Europe of the Russian Academy of Sciences'),
(101611, 83629, 'ru', 'name', 'Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠžŠ• Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• ŠŠŠ£ŠšŠ˜ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š•Š’Š ŠžŠŸŠ« Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ ŠŠšŠŠ”Š•ŠœŠ˜Š˜ ŠŠŠ£Šš'),
(101612, 83630, 'ar', 'name', 'الجامعة Ų§Ł„Ł‡Ų§Ų“Ł…ŁŠŲ©'),
(101613, 83630, 'en', 'name', 'Hashemite University'),
(101614, 83631, 'en', 'name', 'Toyama University Hospital'),
(101615, 83631, 'ja', 'name', 'åÆŒå±±å¤§å­¦é™„å±žē—…é™¢'),
(101616, 83632, 'no_lang_code', 'name', 'Donetsk Botanical Garden'),
(101617, 83632, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ ботанічний саГ'),
(101618, 83633, 'en', 'name', 'Chung-Hua Institution for Economic Research'),
(101619, 83633, 'zh', 'name', 'äø­čÆē¶“ęæŸē ”ē©¶é™¢'),
(101620, 83634, 'en', 'name', 'U.S. Horticultural Research Laboratory'),
(101621, 83635, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų© Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(101622, 83635, 'en', 'name', 'Al-Zaytoonah University of Jordan'),
(101623, 83636, 'en', 'name', 'Kids Saving the Rainforest'),
(101624, 83637, 'en', 'name', 'Institute for Informatics and Automation Problems'),
(101625, 83638, 'de', 'name', 'Max-Planck-Institut zur Erforschung von KriminalitƤt, Sicherheit und Recht'),
(101626, 83638, 'en', 'name', 'Max Planck Institute for the Study of Crime, Security and Law'),
(101627, 83639, 'en', 'name', 'International Association of Geodesy'),
(101628, 83639, 'fr', 'name', 'Association internationale de gƩodƩsie'),
(101629, 83640, 'en', 'name', 'Gastroenterology Center of Connecticut'),
(101630, 83641, 'no_lang_code', 'name', 'ECOTAS Group Indonesia'),
(101631, 83642, 'en', 'name', 'COVID-19 Genomics UK Consortium'),
(101632, 83643, 'en', 'name', 'Thuyloi University'),
(101633, 83643, 'vi', 'name', 'ĐẔi hį»c Thį»§y lợi'),
(101634, 83644, 'de', 'name', 'Klinik Schützen Rheinfelden'),
(101635, 83645, 'en', 'name', 'Chukyo University'),
(101636, 83645, 'ja', 'name', '中京大学'),
(101637, 83646, 'en', 'name', 'Planned Parenthood Toronto'),
(101638, 83647, 'en', 'name', 'The White House'),
(101639, 83648, 'es', 'name', 'Asociación por los Derechos Civiles'),
(101640, 83649, 'no_lang_code', 'name', 'Swedish Orphan Biovitrum (Sweden)'),
(101641, 83650, 'en', 'name', 'Florida Institute of Technology'),
(101642, 83650, 'fr', 'name', 'Institut Technologique de Floride'),
(101643, 83651, 'en', 'name', 'Wildlife Conservation Society Congo'),
(101644, 83652, 'en', 'name', 'Horticultural Crops Research Laboratory'),
(101645, 83653, 'en', 'name', 'AdventHealth Kissimmee'),
(101646, 83654, 'no_lang_code', 'name', 'Berlitz (United States)'),
(101647, 83655, 'en', 'name', 'Centre for Clinical Interventions'),
(101648, 83656, 'en', 'name', 'National Institute of Technology, Niihama College'),
(101649, 83656, 'ja', 'name', 'ę–°å±…ęµœå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(101650, 83657, 'en', 'name', 'Filatov Institute of Eye Diseases and Tissue Therapy of the National Academy of Medical Sciences of Ukraine'),
(101651, 83657, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ очних хвороб та тканинної терапії імені Філатова ŠŠŠœŠ України'),
(101652, 83658, 'en', 'name', 'Kansas Academy of Science'),
(101653, 83659, 'en', 'name', 'OMERACT Patient Research Partner Network'),
(101654, 83660, 'no_lang_code', 'name', 'Ally Therapeutics (United States)'),
(101655, 83661, 'de', 'name', 'Hirslanden Klinik Linde'),
(101656, 83661, 'fr', 'name', 'Hirslanden Clinique des Tilleuls'),
(101657, 83662, 'no_lang_code', 'name', 'Walailak University'),
(101658, 83662, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø§ąø„ąø±ąø¢ąø„ąø±ąøąø©ąø“ą¹Œ'),
(101659, 83663, 'es', 'name', 'Universidad Independiente'),
(101660, 83664, 'en', 'name', 'Honey Bee Breeding, Genetics, and Physiology Laboratory'),
(101661, 83665, 'en', 'name', 'Cleveland Museum of Natural History'),
(101662, 83666, 'en', 'name', 'PTEN Research Foundation'),
(101663, 83667, 'en', 'name', 'Łukasiewicz Research Network - Industrial Research Institute for Automation and Measurements'),
(101664, 83667, 'pl', 'name', 'Sieć Badawcza Łukasiewicz – Przemysłowy Instytut Automatyki i Pomiarów'),
(101665, 83668, 'en', 'name', 'Japan Student Services Organization'),
(101666, 83668, 'ja', 'name', 'ę—„ęœ¬å­¦ē”Ÿę”Æę“ę©Ÿę§‹'),
(101667, 83669, 'en', 'name', 'Duke University Hospital'),
(101668, 83670, 'en', 'name', 'Gifu Heart Center'),
(101669, 83670, 'ja', 'name', 'å²é˜œćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(101670, 83671, 'en', 'name', 'New England Plant, Soil and Water Research Laboratory'),
(101671, 83672, 'en', 'name', 'Interdisciplinary Center for Aquaculture Research'),
(101672, 83672, 'es', 'name', 'Centro Interdisciplinario para la Investigación Acuícola'),
(101673, 83673, 'no_lang_code', 'name', 'Maize Research Institute Zemun Polje'),
(101674, 83673, 'sr', 'name', 'Institut za kukuruz "Zemun Polje"'),
(101675, 83674, 'en', 'name', 'Shandong Provincial Key Laboratory of Renewable Energy Building Application Technology'),
(101676, 83674, 'zh', 'name', 'å±±äøœēœåÆå†ē”Ÿčƒ½ęŗå»ŗē­‘åŗ”ē”ØęŠ€ęœÆé‡ē‚¹å®žéŖŒå®¤'),
(101677, 83675, 'en', 'name', 'Peruvian Institute of Nuclear Energy'),
(101678, 83675, 'es', 'name', 'Instituto Peruano de EnergĆ­a Nuclear'),
(101679, 83676, 'en', 'name', 'Mercer University'),
(101680, 83676, 'fr', 'name', 'UniversitƩ de Mercer'),
(101681, 83677, 'no_lang_code', 'name', 'Alcon (Ireland)'),
(101682, 83678, 'fr', 'name', 'MinistĆØre de la Culture'),
(101683, 83679, 'en', 'name', 'The All-Russian State University of Justice'),
(101684, 83679, 'ru', 'name', 'Всероссийский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŽŃŃ‚ŠøŃ†ŠøŠø'),
(101685, 83680, 'am', 'name', 'įˆ˜į‰įˆˆ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(101686, 83680, 'en', 'name', 'Mekelle University'),
(101687, 83680, 'ti', 'name', 'įˆ˜į‰įˆˆ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(101688, 83681, 'en', 'name', 'Jeonbuk Agricultural Research & Extension Services'),
(101689, 83681, 'ko', 'name', 'ģ „ė¼ė¶ė„ė†ģ—…źø°ģˆ ģ›'),
(101690, 83682, 'en', 'name', 'Geriatric Education and Research Institute'),
(101691, 83683, 'no_lang_code', 'name', 'Catalent (United States)'),
(101692, 83684, 'en', 'name', 'The National Institute of Research – Development for Machines and Installations Designed for Agriculture and Food Industry'),
(101693, 83684, 'ro', 'name', 'Institutul Național de Cercetare-Dezvoltare pentru Mașini și Instalații Destinate Agriculturii și Industriei Alimentare'),
(101694, 83685, 'en', 'name', 'Bioinformatics Institute'),
(101695, 83685, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биоинформатики'),
(101696, 83686, 'no_lang_code', 'name', 'NLR Nepal'),
(101697, 83687, 'no_lang_code', 'name', 'Invisible Software (United States)'),
(101698, 83688, 'nl', 'name', 'Zuidwester'),
(101699, 83689, 'en', 'name', 'Jacobs Institute'),
(101700, 83690, 'en', 'name', 'Keene State College'),
(101701, 83691, 'no_lang_code', 'name', 'Evolved Analytics (United States)'),
(101702, 83692, 'fr', 'name', 'Agence RƩgionale de SantƩ Ile-de-France'),
(101703, 83693, 'fr', 'name', 'SociƩtƩ Nationale FranƧaise de Gastro-EntƩrologie'),
(101704, 83694, 'es', 'name', 'Instituto Nacional de Electricidad y EnergĆ­as Limpias'),
(101705, 83695, 'en', 'name', 'Dalian Medical University'),
(101706, 83695, 'zh', 'name', 'å¤§čæžåŒ»ē§‘å¤§å­¦'),
(101707, 83696, 'en', 'name', 'Cereneo'),
(101708, 83697, 'en', 'name', 'Advocate Lutheran General Hospital'),
(101709, 83698, 'no_lang_code', 'name', 'Terrafix Geosynthetics (Canada)'),
(101710, 83699, 'en', 'name', 'National University of TucumƔn'),
(101711, 83699, 'es', 'name', 'Universidad Nacional de TucumƔn'),
(101712, 83699, 'fr', 'name', 'UniversitƩ nationale de tucumƔn'),
(101713, 83700, 'en', 'name', 'Central European Initiative'),
(101714, 83701, 'en', 'name', 'National Soil Erosion Research Laboratory'),
(101715, 83702, 'fr', 'name', 'UniversitƩ Moulay Ismail de Meknes'),
(101716, 83703, 'en', 'name', 'Austin Regional Clinic'),
(101717, 83704, 'de', 'name', 'Akademie für orale Implantologie'),
(101718, 83704, 'en', 'name', 'Academy for Oral Implantology'),
(101719, 83705, 'en', 'name', 'Interdisciplinary Research Center of Biology and Chemistry'),
(101720, 83705, 'zh', 'name', 'äø­ē§‘é™¢ē”Ÿē‰©äøŽåŒ–å­¦äŗ¤å‰ē ”ē©¶äø­åæƒ'),
(101721, 83706, 'sv', 'name', 'Stockholm IVF'),
(101722, 83707, 'en', 'name', 'National Center of Public Health of the Ministry of Health of the Republic of Kazakhstan'),
(101723, 83707, 'kk', 'name', 'ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠ«Š™ Š¦Š•ŠŠ¢Š  ŠžŠ‘Š©Š•Š”Š¢Š’Š•ŠŠŠžŠ“Šž Š—Š”Š ŠŠ’ŠžŠžŠ„Š ŠŠŠ•ŠŠ˜ŠÆ ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š—Š”Š ŠŠ’ŠžŠžŠ„Š ŠŠŠ•ŠŠ˜ŠÆ Š Š•Š”ŠŸŠ£Š‘Š›Š˜ŠšŠ˜ ŠšŠŠ—ŠŠ„Š”Š¢ŠŠ'),
(101724, 83708, 'en', 'name', 'Tameside Hospital'),
(101725, 83709, 'pt', 'name', 'Instituto Nacional de EstatĆ­stica, National Statistics Institute'),
(101726, 83710, 'no_lang_code', 'name', 'Firmenich (Switzerland)'),
(101727, 83711, 'en', 'name', 'IN2P3’s Computing Centre'),
(101728, 83711, 'fr', 'name', 'Centre de Calcul de l’Institut National de Physique NuclĆ©aire et de Physique des Particules'),
(101729, 83712, 'en', 'name', 'National Intercultural University "Fabiola Salazar Leguƍa" of Bagua'),
(101730, 83712, 'es', 'name', 'Universidad Nacional Intercultural "Fabiola Salazar Leguƍa" de Bagua'),
(101731, 83713, 'de', 'name', 'Erziehungsdepartement Basel Stadt'),
(101732, 83714, 'no_lang_code', 'name', 'Logopharm (Germany)'),
(101733, 83715, 'en', 'name', 'Kamioka Observatory'),
(101734, 83715, 'ja', 'name', 'ē„žå²”å®‡å®™ē“ ē²’å­ē ”ē©¶ę–½čØ­'),
(101735, 83716, 'en', 'name', 'Auburn Hospital'),
(101736, 83717, 'en', 'name', 'Japan Kidney Foundation'),
(101737, 83717, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č…Žč‡“č²”å›£'),
(101738, 83718, 'en', 'name', 'University Of Transport Technology'),
(101739, 83718, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ Giao thĆ“ng Vįŗ­n tįŗ£i'),
(101740, 83719, 'en', 'name', 'Yunnan Agricultural University'),
(101741, 83719, 'zh', 'name', 'äŗ‘å—å†œäøšå¤§å­¦'),
(101742, 83720, 'en', 'name', 'National Agricultural Statistics Service'),
(101743, 83721, 'en', 'name', 'Nottingham University Samworth Academy'),
(101744, 83722, 'en', 'name', 'Latino Medical Student Association'),
(101745, 83723, 'en', 'name', 'Utah Tech University'),
(101746, 83724, 'en', 'name', 'London Chamber of Commerce and Industry'),
(101747, 83725, 'en', 'name', 'Adekunle Ajasin University'),
(101748, 83726, 'en', 'name', 'The Korean Atopic Dermatitis Association'),
(101749, 83726, 'ko', 'name', 'ėŒ€ķ•œģ•„ķ† ķ”¼ķ”¼ė¶€ģ—¼ķ•™ķšŒ'),
(101750, 83727, 'en', 'name', 'Downers Grove Public Library'),
(101751, 83728, 'en', 'name', 'Hood College'),
(101752, 83729, 'en', 'name', 'The Japanese Data Center for Hematopoietic Cell Transplantation'),
(101753, 83729, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗ ę—„ęœ¬é€ č”€ē“°čƒžē§»ę¤ćƒ‡ćƒ¼ć‚æć‚»ćƒ³ć‚æćƒ¼'),
(101754, 83730, 'es', 'name', 'Consello da Cultura Galega'),
(101755, 83731, 'no_lang_code', 'name', 'Acuitas Therapeutics (Canada)'),
(101756, 83732, 'en', 'name', 'African Institute for Development Policy'),
(101757, 83733, 'es', 'name', 'Universidad JuÔrez Autónoma de Tabasco'),
(101758, 83734, 'en', 'name', 'Kansai Research Foundation for Technology Promotion'),
(101759, 83734, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé–¢č„æć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ»ćƒŖć‚µć‚¤ć‚Æćƒ«ē§‘å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(101760, 83735, 'en', 'name', 'Virginia Institute of Marine Science'),
(101761, 83736, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سيدي Ł…Ų­Ł…ŲÆ بن Ų¹ŲØŲÆ الله'),
(101762, 83736, 'en', 'name', 'Sidi Mohamed Ben Abdellah University'),
(101763, 83736, 'fr', 'name', 'UniversitƩ Sidi Mohamed Ben Abdellah'),
(101764, 83737, 'en', 'name', 'Mediterranean Universities Union'),
(101765, 83737, 'it', 'name', 'Unione delle UniversitĆ  del Mediterraneo'),
(101766, 83738, 'en', 'name', 'European Corporate Governance Institute'),
(101767, 83739, 'de', 'name', 'Fachkrankenhaus Kloster Grafschaft'),
(101768, 83740, 'en', 'name', 'Komaki City Hospital'),
(101769, 83740, 'ja', 'name', 'å°ē‰§åø‚ę°‘ē—…é™¢'),
(101770, 83741, 'en', 'name', 'Hagyard Equine Medical Institute'),
(101771, 83742, 'en', 'name', 'Institute of Bioorganic Chemistry, Polish Academy of Sciences'),
(101772, 83742, 'pl', 'name', 'Instytut Chemii Bioorganicznej Polskiej Akademii Nauk'),
(101773, 83743, 'no_lang_code', 'name', 'Acumed (United States)'),
(101774, 83744, 'es', 'name', 'Fundacion Venezolana de Investigaciones Sismologicas'),
(101775, 83745, 'de', 'name', 'Leibniz-Institut für Atmosphärenphysik'),
(101776, 83745, 'en', 'name', 'Leibniz Institute of Atmospheric Physics at the Rostock University'),
(101777, 83746, 'en', 'name', 'University of Faisalabad'),
(101778, 83746, 'ur', 'name', 'جامعہ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(101779, 83747, 'en', 'name', 'Henan Agricultural University'),
(101780, 83747, 'zh', 'name', 'ę²³å—å†œäøšå¤§å­¦'),
(101781, 83748, 'en', 'name', 'Pakistan Agricultural Research Council'),
(101782, 83749, 'no_lang_code', 'name', '1QBit'),
(101783, 83750, 'en', 'name', 'Dorset HealthCare University NHS Foundation Trust'),
(101784, 83751, 'en', 'name', 'State Space Agency of Ukraine'),
(101785, 83751, 'uk', 'name', 'Державне космічне агентство України'),
(101786, 83752, 'pt', 'name', 'Hospital Sepaco'),
(101787, 83753, 'en', 'name', 'Austin Medical Research Foundation'),
(101788, 83754, 'no_lang_code', 'name', 'Environmental Earth Observation Information Technology (Austria)'),
(101789, 83755, 'ja', 'name', 'ę—„ęœ¬ćƒ’ćƒ„ćƒ¼ćƒ¬ćƒƒćƒˆćƒ»ćƒ‘ćƒƒć‚«ćƒ¼ćƒ‰ę Ŗå¼ä¼šē¤¾'),
(101790, 83755, 'no_lang_code', 'name', 'Hewlett-Packard (Japan)'),
(101791, 83756, 'en', 'name', 'National Medical Research Center of Cardiology'),
(101792, 83756, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠŠ¦Š˜ŠžŠŠŠ›Š¬ŠŠ«Š™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠ˜Š™ Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š¦Š•ŠŠ¢Š  ŠšŠŠ Š”Š˜ŠžŠ›ŠžŠ“Š˜Š˜ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(101793, 83757, 'en', 'name', 'Patient-Led Research Collaborative'),
(101794, 83758, 'en', 'name', 'Oxford Institute for Energy Studies'),
(101795, 83759, 'en', 'name', 'Pawsey Supercomputing Research Centre'),
(101796, 83760, 'en', 'name', 'Louisiana Cancer Research Center'),
(101797, 83761, 'de', 'name', 'Hochschule Bremen'),
(101798, 83761, 'en', 'name', 'Bremen University of Applied Sciences'),
(101799, 83762, 'fr', 'name', 'Pays Germaniques'),
(101800, 83763, 'en', 'name', 'Sense about Science'),
(101801, 83764, 'en', 'name', 'Xuzhou Medical College'),
(101802, 83764, 'zh', 'name', '徐州医学院'),
(101803, 83765, 'no_lang_code', 'name', 'DNACARE (South Korea)'),
(101804, 83766, 'en', 'name', 'Cell Therapy Catapult'),
(101805, 83767, 'no_lang_code', 'name', 'The Cooper Companies (United States)'),
(101806, 83768, 'pl', 'name', 'Trzy Epoki Pracownia Archeologiczna'),
(101807, 83769, 'en', 'name', 'Graduate School of Health Care Sciences, Jikei Institute'),
(101808, 83769, 'ja', 'name', 'ę»‹ę…¶åŒ»ē™‚ē§‘å­¦å¤§å­¦é™¢å¤§å­¦'),
(101809, 83770, 'no_lang_code', 'name', 'Cholangiocarcinoma Foundation'),
(101810, 83771, 'no_lang_code', 'name', 'Korea Electric Power Corporation (South Korea)'),
(101811, 83772, 'no_lang_code', 'name', 'Alcon (South Korea)'),
(101812, 83773, 'de', 'name', 'See-Spital'),
(101813, 83774, 'no_lang_code', 'name', 'New Iridium (United States)'),
(101814, 83775, 'en', 'name', 'University of Customs and Finance'),
(101815, 83775, 'uk', 'name', 'Університет митної справи та фінансів'),
(101816, 83776, 'en', 'name', 'Nagoya Medical Center'),
(101817, 83776, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹åå¤å±‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(101818, 83777, 'no_lang_code', 'name', 'AlvƩole (France)'),
(101819, 83778, 'no_lang_code', 'name', 'Carisma Therapeutics (United States)'),
(101820, 83779, 'en', 'name', 'Cereal Disease Laboratory'),
(101821, 83780, 'ja', 'name', 'ćƒŠćƒ–ćƒ†ć‚¹ć‚³ę Ŗå¼ä¼šē¤¾'),
(101822, 83780, 'no_lang_code', 'name', 'Nabtesco (Japan)'),
(101823, 83781, 'en', 'name', 'Japanese Red Cross Kanazawa Hospital'),
(101824, 83781, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾é‡‘ę²¢čµ¤åå­—ē—…é™¢'),
(101825, 83782, 'en', 'name', 'Greater London Authority'),
(101826, 83783, 'en', 'name', 'Juntendo University Hospital'),
(101827, 83783, 'ja', 'name', 'é †å¤©å ‚å¤§å­¦åŒ»å­¦éƒØé™„å±žé †å¤©å ‚åŒ»é™¢'),
(101828, 83784, 'en', 'name', 'Kyorin University Hospital'),
(101829, 83784, 'ja', 'name', 'ęęž—å¤§å­¦åŒ»å­¦éƒØä»˜å±žē—…é™¢'),
(101830, 83785, 'fr', 'name', 'Laboratoire de MathƩmatiques Jean Leray'),
(101831, 83786, 'no_lang_code', 'name', 'DataKind'),
(101832, 83787, 'en', 'name', 'Analytical Services'),
(101833, 83788, 'en', 'name', 'Kobe Women''s University'),
(101834, 83788, 'ja', 'name', 'ē„žęˆøå„³å­å¤§å­¦'),
(101835, 83789, 'no_lang_code', 'name', 'Factual (United States)'),
(101836, 83790, 'en', 'name', 'Ho Chi Minh City Institute of Physics'),
(101837, 83790, 'vi', 'name', 'Trung tĆ¢m Vįŗ­t lý tįŗ”i ThĆ nh phố Hồ ChĆ­ Minh'),
(101838, 83791, 'en', 'name', 'Papal Seminary'),
(101839, 83792, 'de', 'name', 'Institut für Gießereitechnik'),
(101840, 83793, 'be', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ социологии ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ акаГемии наук Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(101841, 83793, 'en', 'name', 'Institute of Sociology of the National Academy of Sciences of Belarus'),
(101842, 83794, 'en', 'name', 'Yale-NUS College'),
(101843, 83794, 'zh', 'name', '耶魯-ę–°åŠ å”åœ‹ē«‹å¤§å­øå­øé™¢'),
(101844, 83795, 'no_lang_code', 'name', 'National Cooperative for the Disposal of Radioactive Waste (Switzerland)'),
(101845, 83796, 'en', 'name', 'Tenerife Island Energy Agency'),
(101846, 83796, 'es', 'name', 'Agencia Insular de la EnergĆ­a de Tenerife'),
(101847, 83797, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¤ć‚Æćƒ«ćƒˆęœ¬ē¤¾'),
(101848, 83797, 'no_lang_code', 'name', 'Yakult Central Institute'),
(101849, 83798, 'el', 'name', 'ĪœĪæĻ…ĻƒĪµĪÆĪæ Ī¦Ļ…ĻƒĪ¹ĪŗĪ®Ļ‚ Ī™ĻƒĻ„ĪæĻĪÆĪ±Ļ‚ Απολιθωμένου Ī”Ī¬ĻƒĪæĻ…Ļ‚ Ī›Ī­ĻƒĪ²ĪæĻ…'),
(101850, 83798, 'en', 'name', 'Natural History Museum of the Lesvos Petrified Forest'),
(101851, 83799, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øć‚¹ć‚¢ćƒ¼ćƒ«ć‚Øćƒ«'),
(101852, 83799, 'no_lang_code', 'name', 'SRL (Japan)'),
(101853, 83800, 'en', 'name', 'Elisha Hospital'),
(101854, 83800, 'he', 'name', 'בית חולים אלישע'),
(101855, 83801, 'en', 'name', 'I.Horbachevsky Ternopil National Medical University'),
(101856, 83801, 'pl', 'name', 'Państwowy Uniwersytet Medyczny imienia I.Ya Horbaczewskiego w Tarnopolu'),
(101857, 83801, 'ru', 'name', 'Š¢ŠµŃ€Š½Š¾ŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. ŠÆ. Горбачевского ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Украины'),
(101858, 83801, 'uk', 'name', 'Š¢ŠµŃ€Š½Š¾ŠæŃ–Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені І. ŠÆ. Š“Š¾Ń€Š±Š°Ń‡ŠµŠ²ŃŃŒŠŗŠ¾Š³Š¾'),
(101859, 83802, 'no_lang_code', 'name', 'Incisive Genetics (Canada)'),
(101860, 83803, 'en', 'name', 'Office of Marine and Aviation Operations'),
(101861, 83804, 'en', 'name', 'Inha University Hospital'),
(101862, 83805, 'no_lang_code', 'name', 'Insulet (United States)'),
(101863, 83806, 'en', 'name', 'National Commission for Science and Technology Malawi'),
(101864, 83807, 'no_lang_code', 'name', 'Tikkurila (Finland)'),
(101865, 83808, 'no_lang_code', 'name', 'KUSUDAMA Therapeutics (Spain)'),
(101866, 83809, 'no_lang_code', 'name', 'GenomiCare (China)'),
(101867, 83810, 'en', 'name', 'Materials Research Center'),
(101868, 83811, 'en', 'name', 'North Temperate Lakes Long Term Ecological Research'),
(101869, 83812, 'en', 'name', 'Institute of the Americas'),
(101870, 83813, 'en', 'name', 'Campus Bio Medico University Hospital'),
(101871, 83813, 'it', 'name', 'Policlinico Universitario Campus Bio Medico'),
(101872, 83814, 'en', 'name', 'The Childhood Acute Illness and Nutrition Network'),
(101873, 83815, 'en', 'name', 'SciGenom Research Foundation'),
(101874, 83816, 'en', 'name', 'Advocate Christ Medical Center'),
(101875, 83817, 'no_lang_code', 'name', 'Humana (United States)'),
(101876, 83818, 'en', 'name', 'Chiayi Chang Gung Memorial Hospital'),
(101877, 83819, 'en', 'name', 'Meijo University'),
(101878, 83819, 'ja', 'name', '名城大学'),
(101879, 83820, 'en', 'name', 'VisMederi Research'),
(101880, 83821, 'no_lang_code', 'name', 'CareEvolution (United States)'),
(101881, 83822, 'en', 'name', 'American Neurological Association'),
(101882, 83823, 'no_lang_code', 'name', 'OriginWater (China)'),
(101883, 83823, 'zh', 'name', '碧氓源'),
(101884, 83824, 'en', 'name', 'International College for Postgraduate Buddhist Studies'),
(101885, 83824, 'ja', 'name', 'å›½éš›ä»ę•™å­¦å¤§å­¦é™¢å¤§å­¦'),
(101886, 83825, 'no_lang_code', 'name', 'Atara Biotherapeutics (United States)'),
(101887, 83826, 'en', 'name', 'International Max Planck Research School for Advanced Methods in Process and Systems Engineering'),
(101888, 83827, 'en', 'name', 'VIB-UGent Center for Medical Biotechnology'),
(101889, 83828, 'en', 'name', 'State Key Laboratory of Respiratory Disease'),
(101890, 83828, 'zh', 'name', 'å‘¼åøē–¾ē—…å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(101891, 83829, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ‡ćƒ³ć‚½ćƒ¼'),
(101892, 83829, 'no_lang_code', 'name', 'Denso (Japan)'),
(101893, 83830, 'en', 'name', 'Federal State Budgetary Institution "Federal Center For Cardiovascular Surgery" Ministry of Health of The Russian Federation'),
(101894, 83830, 'ru', 'name', 'Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠžŠ• Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠžŠ• Š‘Š®Š”Š–Š•Š¢ŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• "Š¤Š•Š”Š•Š ŠŠ›Š¬ŠŠ«Š™ Š¦Š•ŠŠ¢Š  Š”Š•Š Š”Š•Š§ŠŠž-Š”ŠžŠ”Š£Š”Š˜Š”Š¢ŠžŠ™ Š„Š˜Š Š£Š Š“Š˜Š˜" ŠœŠ˜ŠŠ˜Š”Š¢Š•Š Š”Š¢Š’Š Š—Š”Š ŠŠ’ŠžŠžŠ„Š ŠŠŠ•ŠŠ˜ŠÆ Š ŠžŠ”Š”Š˜Š™Š”ŠšŠžŠ™ Š¤Š•Š”Š•Š ŠŠ¦Š˜Š˜'),
(101895, 83831, 'en', 'name', 'American Spinal Injury Association'),
(101896, 83832, 'de', 'name', 'Bundesamt für Bauwesen und Raumordnung'),
(101897, 83833, 'en', 'name', 'Department of Public Health'),
(101898, 83834, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© باتنة 1 الحاج لخضر'),
(101899, 83834, 'en', 'name', 'University of Batna 1'),
(101900, 83834, 'fr', 'name', 'UniversitƩ de Batna 1'),
(101901, 83835, 'en', 'name', 'Institute of Mathematics'),
(101902, 83835, 'pl', 'name', 'Instytut Matematyczny Polskiej Akademii Nauk'),
(101903, 83836, 'en', 'name', 'Study World College of Engineering'),
(101904, 83837, 'en', 'name', 'Iowa Digestive Disease Center'),
(101905, 83838, 'no_lang_code', 'name', 'E-Phy-Science (France)'),
(101906, 83839, 'en', 'name', 'National Education and Research Network'),
(101907, 83839, 'pt', 'name', 'Rede Nacional de Ensino e Pesquisa'),
(101908, 83840, 'de', 'name', 'Universitäres Zentrum für Zahnmedizin Basel'),
(101909, 83841, 'en', 'name', 'Magistrates Association'),
(101910, 83842, 'en', 'name', 'Thomas Jefferson Foundation'),
(101911, 83843, 'no_lang_code', 'name', 'Metrum Research Group (United States)'),
(101912, 83844, 'de', 'name', 'Heinz Nixdorf Stiftung'),
(101913, 83845, 'en', 'name', 'Glasgow Centre for Population Health'),
(101914, 83846, 'en', 'name', 'Ebina General Hospital'),
(101915, 83846, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć‚øćƒ£ćƒ‘ćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚¢ćƒ©ć‚¤ć‚¢ćƒ³ć‚¹ęµ·č€åē·åˆē—…é™¢'),
(101916, 83847, 'en', 'name', 'Society for Developmental and Behavioral Pediatrics'),
(101917, 83848, 'en', 'name', 'Centre for Environmental Data Analysis'),
(101918, 83849, 'en', 'name', 'Kobe City Medical Center General Hospital'),
(101919, 83849, 'ja', 'name', 'ē„žęˆøåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼äø­å¤®åø‚ę°‘ē—…é™¢'),
(101920, 83850, 'en', 'name', 'Foundation for Professional Development'),
(101921, 83851, 'en', 'name', 'Canadian Association of Geographers'),
(101922, 83851, 'fr', 'name', 'Association Canadienne des GƩographes'),
(101923, 83852, 'en', 'name', 'Tsurumi University'),
(101924, 83852, 'ja', 'name', '鶓見大学'),
(101925, 83853, 'en', 'name', 'Cooperative Institute for Mesoscale Meteorological Studies'),
(101926, 83854, 'en', 'name', 'Jiangsu University of Technology'),
(101927, 83854, 'zh', 'name', 'ę±Ÿč‹ē†å·„å­¦é™¢'),
(101928, 83855, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚¤ć‚·ćƒ€'),
(101929, 83855, 'no_lang_code', 'name', 'Ishida (Japan)'),
(101930, 83856, 'no_lang_code', 'name', 'Alphora Research (Canada)'),
(101931, 83857, 'no_lang_code', 'name', 'HPO Center (Netherlands)'),
(101932, 83858, 'en', 'name', 'Fu Jen Catholic University'),
(101933, 83858, 'zh', 'name', '辅仁大学'),
(101934, 83859, 'es', 'name', 'Hospital Universitario HM Sanchinarro'),
(101935, 83860, 'da', 'name', 'Sygehus LillebƦlt'),
(101936, 83860, 'en', 'name', 'Lillebaelt Hospital'),
(101937, 83861, 'no_lang_code', 'name', 'Quantum Design (United States)'),
(101938, 83862, 'de', 'name', 'Klinikum Fulda'),
(101939, 83863, 'en', 'name', 'Chestnut Health Systems'),
(101940, 83864, 'en', 'name', 'South China Institute of Collaborative Innovation'),
(101941, 83864, 'zh', 'name', 'åŽå—ååŒåˆ›ę–°ē ”ē©¶é™¢'),
(101942, 83865, 'en', 'name', 'All-Med'),
(101943, 83866, 'no_lang_code', 'name', 'OPKO Health (Israel)'),
(101944, 83867, 'en', 'name', 'Zhejiang University-University of Edinburgh Institute'),
(101945, 83867, 'zh', 'name', 'ęµ™ę±Ÿå¤§å­¦ēˆ±äøå ”å¤§å­¦č”åˆå­¦é™¢'),
(101946, 83868, 'no_lang_code', 'name', 'General Fusion (Canada)'),
(101947, 83869, 'no_lang_code', 'name', 'Pfizer (Austria)'),
(101948, 83870, 'bn', 'name', 'ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą¦®ą¦žą§ą¦œą§ą¦°ą§€ কমিশন'),
(101949, 83870, 'en', 'name', 'University Grants Commission of Bangladesh'),
(101950, 83871, 'en', 'name', 'Council for British Archaeology'),
(101951, 83872, 'en', 'name', 'Shirak State University'),
(101952, 83872, 'hy', 'name', 'Õ‡Õ«Ö€Õ”ÕÆÕ« Õ„Õ«Ö„Õ”ÕµÕ„Õ¬ Õ†Õ”Õ¬Õ¢Õ”Õ¶Õ¤ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(101953, 83873, 'en', 'name', 'Kap Natirel'),
(101954, 83874, 'en', 'name', 'Universal College of Learning'),
(101955, 83875, 'fr', 'name', 'Cegep de Thetford, Collège d''Enseignement Général et Professionnel'),
(101956, 83876, 'en', 'name', 'Kyoto University Hospital'),
(101957, 83876, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(101958, 83877, 'en', 'name', 'Plano Public Library System'),
(101959, 83878, 'no_lang_code', 'name', 'Kattaikkuttu Sangam'),
(101960, 83879, 'el', 'name', 'Ελληνικο Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻ…Ļ„Īæ ĪœĪµĻ„ĻĪæĪ»ĪæĪ³Ī¹Ī±Ļ‚'),
(101961, 83879, 'en', 'name', 'Hellenic Institute of Metrology'),
(101962, 83880, 'en', 'name', 'The Geneva Foundation'),
(101963, 83881, 'en', 'name', 'Harvard Stem Cell Institute'),
(101964, 83882, 'en', 'name', 'Brazilian Biosciences National Laboratory'),
(101965, 83882, 'pt', 'name', 'Laboratório Nacional de Biociências'),
(101966, 83883, 'en', 'name', 'National Fisheries University'),
(101967, 83883, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗę°“ē”£ē ”ē©¶ćƒ»ę•™č‚²ę©Ÿę§‹ę°“ē”£å¤§å­¦ę ”'),
(101968, 83884, 'no_lang_code', 'name', 'TScan Therapeutics (United States)'),
(101969, 83885, 'no_lang_code', 'name', 'PanTheryx (United States)'),
(101970, 83886, 'en', 'name', 'National Institute of Technology, Gunma College'),
(101971, 83886, 'ja', 'name', 'ē¾¤é¦¬å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(101972, 83887, 'en', 'name', 'Little Rock School District'),
(101973, 83888, 'en', 'name', 'Mount Kenya University'),
(101974, 83889, 'en', 'name', 'The Wilson Centre'),
(101975, 83890, 'en', 'name', 'ICAR-Indian Institute of Agricultural Biotechnology'),
(101976, 83890, 'hi', 'name', 'भा.ą¤•ą„ƒ.ą¤…ą¤Øą„.प. ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤œą„ˆą¤µą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(101977, 83891, 'en', 'name', 'National Animal Disease Center'),
(101978, 83892, 'en', 'name', 'Candid'),
(101979, 83893, 'en', 'name', 'Geological Survey of Ireland'),
(101980, 83893, 'ga', 'name', 'SuirbhĆ©ireacht GheolaĆ­ochta Ɖireann'),
(101981, 83894, 'en', 'name', 'Altai State University'),
(101982, 83894, 'ru', 'name', 'Алтайский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(101983, 83895, 'en', 'name', 'National Institute of Science and Technology in Regenerative Medicine'),
(101984, 83895, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia em Medicina Regenerativa'),
(101985, 83896, 'en', 'name', 'Bernice P. Bishop Museum'),
(101986, 83897, 'en', 'name', 'Institute of Advanced Research in Artificial Intelligence'),
(101987, 83898, 'fr', 'name', 'Communication, Information, MƩdias'),
(101988, 83899, 'en', 'name', 'RIKEN Center for Integrative Medical Sciences'),
(101989, 83899, 'ja', 'name', '国立研究開発法人 ē†åŒ–å­¦ē ”ē©¶ę‰€ ē”Ÿå‘½åŒ»ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(101990, 83900, 'en', 'name', 'Ontario Shores Centre for Mental Health Sciences'),
(101991, 83901, 'en', 'name', 'Society For Range Management'),
(101992, 83902, 'en', 'name', 'Heriot-Watt University'),
(101993, 83903, 'no_lang_code', 'name', 'HE Space (Netherlands)'),
(101994, 83904, 'no_lang_code', 'name', 'COPESSA'),
(101995, 83905, 'en', 'name', 'Department of Marine and Coastal Resources'),
(101996, 83905, 'th', 'name', 'ąøąø£ąø”ąø—ąø£ąø±ąøžąø¢ąø²ąøąø£ąø—ąø²ąø‡ąø—ąø°ą¹€ąø„ą¹ąø„ąø°ąøŠąø²ąø¢ąøąø±ą¹ˆąø‡'),
(101997, 83906, 'en', 'name', 'Trabzon University'),
(101998, 83906, 'tr', 'name', 'Trabzon Üniversitesi'),
(101999, 83907, 'en', 'name', 'SCQM Foundation'),
(102000, 83908, 'de', 'name', 'Internationale Gesellschaft für Ɩkologische Langzeitforschung'),
(102001, 83908, 'en', 'name', 'International Long Term Ecological Research Network'),
(102002, 83909, 'en', 'name', 'Australasian College of Dermatologists'),
(102003, 83910, 'en', 'name', 'Autonomous University of Chihuahua'),
(102004, 83910, 'es', 'name', 'Universidad Autónoma de Chihuahua'),
(102005, 83911, 'no_lang_code', 'name', 'Renishaw (Russia)'),
(102006, 83912, 'en', 'name', 'National Research Council Canada'),
(102007, 83912, 'fr', 'name', 'Conseil National de Recherches Canada'),
(102008, 83913, 'ja', 'name', 'ę„›äø‰å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(102009, 83913, 'no_lang_code', 'name', 'Aisan (Japan)'),
(102010, 83914, 'en', 'name', 'Intermountain Healthcare'),
(102011, 83915, 'no_lang_code', 'name', 'RapidAIM (Australia)'),
(102012, 83916, 'en', 'name', 'Global Policy Institute'),
(102013, 83917, 'en', 'name', 'Sardar Patel University of Police, Security and Criminal Justice, Jodhpur'),
(102014, 83918, 'nl', 'name', 'Meander Medisch Centrum'),
(102015, 83919, 'de', 'name', 'Deutsche Alzheimer Gesellschaft'),
(102016, 83920, 'no_lang_code', 'name', 'Basilea Pharmaceutica (Switzerland)'),
(102017, 83921, 'fr', 'name', 'Physiopathologie et EpidƩmiologie des Maladies Respiratoires'),
(102018, 83922, 'en', 'name', 'Medford Radiology Group'),
(102019, 83923, 'fr', 'name', 'L’Agence Nationale pour l’amĆ©lioration des Conditions de Travail'),
(102020, 83924, 'en', 'name', 'Tel Aviv Sourasky Medical Center'),
(102021, 83925, 'no_lang_code', 'name', 'AlgiPharma (Norway)'),
(102022, 83926, 'en', 'name', 'Western Regional Medical Center'),
(102023, 83927, 'es', 'name', 'Instituto de Investigaciones CientĆ­ficas y Servicios de Alta TecnologĆ­a'),
(102024, 83928, 'en', 'name', 'Hallym University Sacred Heart Hospital'),
(102025, 83928, 'ko', 'name', 'ķ•œė¦¼ėŒ€ķ•™źµģ„±ģ‹¬ė³‘ģ›'),
(102026, 83929, 'no_lang_code', 'name', 'Velocity Clinical Research (United States)'),
(102027, 83930, 'de', 'name', 'LWL-UniversitƤtsklinikum Bochum'),
(102028, 83931, 'en', 'name', 'Centre for Ageing Better'),
(102029, 83932, 'es', 'name', 'Centro Atómico Constituyentes'),
(102030, 83933, 'en', 'name', 'Right to Care'),
(102031, 83934, 'no_lang_code', 'name', 'Seagate (United States)'),
(102032, 83935, 'en', 'name', 'Center of Excellence on Hazardous Substance Management'),
(102033, 83936, 'en', 'name', 'Momentum Research'),
(102034, 83937, 'en', 'name', 'Cooperative Research Centre for Water Sensitive Cities'),
(102035, 83938, 'fr', 'name', 'Laboratoire ICT'),
(102036, 83939, 'en', 'name', 'Center for Outcomes Research and Clinical Epidemiology'),
(102037, 83940, 'en', 'name', 'Tetiaroa Society'),
(102038, 83941, 'no_lang_code', 'name', 'Motac Neuroscience (United Kingdom)'),
(102039, 83942, 'no_lang_code', 'name', 'Lumiphase (Switzerland)'),
(102040, 83943, 'en', 'name', 'San Beda University'),
(102041, 83944, 'no_lang_code', 'name', 'Medpharmgene (Canada)'),
(102042, 83945, 'no_lang_code', 'name', 'Linkster Therapeutics (Switzerland)'),
(102043, 83946, 'en', 'name', 'U.S. Salinity Laboratory'),
(102044, 83947, 'en', 'name', 'Japanese Red Cross Narita Hospital'),
(102045, 83947, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ęˆē”°čµ¤åå­—ē—…é™¢');
INSERT INTO `ror_settings` VALUES
(102046, 83948, 'no_lang_code', 'name', 'Clovis Oncology (United States)'),
(102047, 83949, 'en', 'name', 'Centre for DNA Fingerprinting and Diagnostics'),
(102048, 83949, 'hi', 'name', 'ą¤”ą„€ą¤ą¤Øą¤ ą¤«ą¤æą¤‚ą¤—ą¤°ą¤Ŗą„ą¤°ą¤æą¤‚ą¤Ÿą¤æą¤‚ą¤— ą¤ą¤µą¤‚ निदान ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(102049, 83950, 'en', 'name', 'American Academy of Environmental Engineers and Scientists'),
(102050, 83951, 'en', 'name', 'FENS Kavli Network of Excellence'),
(102051, 83952, 'en', 'name', 'Southeastern Community College - Iowa'),
(102052, 83953, 'en', 'name', 'Mass General Brigham'),
(102053, 83954, 'en', 'name', 'National Mie Hospital'),
(102054, 83954, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹äø‰é‡ē—…é™¢'),
(102055, 83955, 'no_lang_code', 'name', 'Oncovision (Spain)'),
(102056, 83956, 'es', 'name', 'Universidad Autónoma de la Ciudad de México'),
(102057, 83957, 'en', 'name', 'University of Petroleum and Energy Studies'),
(102058, 83957, 'hi', 'name', 'ą¤Ŗą„‡ą¤Ÿą„ą¤°ą„‹ą¤²ą¤æą¤Æą¤® और ą¤Šą¤°ą„ą¤œą¤¾ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(102059, 83958, 'en', 'name', 'Fuji Machine (Japan)'),
(102060, 83958, 'ja', 'name', 'åÆŒå£«ę©Ÿę¢°ę Ŗå¼ä¼šē¤¾'),
(102061, 83959, 'en', 'name', 'Association of Environmental Engineering and Science Professors'),
(102062, 83960, 'en', 'name', 'Smoking Research Foundation'),
(102063, 83960, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå–«ē…™ē§‘å­¦ē ”ē©¶č²”å›£'),
(102064, 83961, 'en', 'name', 'VIB-UGent Center for Inflammation Research'),
(102065, 83962, 'en', 'name', 'Jeffrey Modell Foundation'),
(102066, 83963, 'en', 'name', 'Volgograd State Medical University'),
(102067, 83963, 'ru', 'name', 'ВолгограГский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(102068, 83964, 'en', 'name', 'Quantum Science Center'),
(102069, 83965, 'en', 'name', 'Association for Supervision and Curriculum Development'),
(102070, 83966, 'en', 'name', 'Northeast Ohio Medical University'),
(102071, 83967, 'no_lang_code', 'name', 'Covenant Research and Clinics (United States)'),
(102072, 83968, 'en', 'name', 'Indiana Department of Natural Resources'),
(102073, 83969, 'da', 'name', 'Kulturministeriet'),
(102074, 83969, 'en', 'name', 'Danish Ministry of Culture'),
(102075, 83970, 'en', 'name', 'Hubei Academy of Agricultural Sciences'),
(102076, 83970, 'zh', 'name', 'ę¹–åŒ—ēœå†œäøšē§‘å­¦é™¢'),
(102077, 83971, 'en', 'name', 'British Film Institute'),
(102078, 83972, 'no_lang_code', 'name', 'Altran (France)'),
(102079, 83973, 'en', 'name', 'Xinjiang Agricultural University'),
(102080, 83973, 'zh', 'name', 'ę–°ē–†å†œäøšå¤§å­¦'),
(102081, 83974, 'en', 'name', 'Wright State University'),
(102082, 83974, 'fr', 'name', 'UniversitĆ© d''Ɖtat wright'),
(102083, 83975, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾JIMRO'),
(102084, 83975, 'no_lang_code', 'name', 'JIMRO (Japan)'),
(102085, 83976, 'en', 'name', 'Innovative Scientific Information & Services Network'),
(102086, 83977, 'no_lang_code', 'name', 'Spital Thurgau (Switzerland)'),
(102087, 83978, 'en', 'name', 'MIREA - Russian Technological University'),
(102088, 83978, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ раГиотехники'),
(102089, 83979, 'en', 'name', 'Episcopal High School'),
(102090, 83980, 'en', 'name', 'Arecibo Observatory'),
(102091, 83981, 'no_lang_code', 'name', 'Scientific Aviation (United States)'),
(102092, 83982, 'en', 'name', 'Wenner-Gren Foundation'),
(102093, 83983, 'en', 'name', 'Society for Visual Anthropology'),
(102094, 83984, 'en', 'name', 'Angelus Silesius State University'),
(102095, 83984, 'pl', 'name', 'Państwowa Uczelnia Angelusa Silesiusa'),
(102096, 83985, 'no_lang_code', 'name', 'Alcon (United Kingdom)'),
(102097, 83986, 'es', 'name', 'Estudios Clƭnicos LatinoamƩrica'),
(102098, 83987, 'en', 'name', 'North American Butterfly Association'),
(102099, 83988, 'es', 'name', 'Centro de diseño, cine y televisión'),
(102100, 83989, 'nl', 'name', 'Admiraal De Ruyter Ziekenhuis'),
(102101, 83990, 'en', 'name', 'Kenya Medical Research Institute'),
(102102, 83991, 'it', 'name', 'Europa Donna'),
(102103, 83992, 'en', 'name', 'Indian Council of Forestry Research and Education'),
(102104, 83993, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŁŠŲÆŁ„Ų³ŁƒŲ³ دبي'),
(102105, 83993, 'en', 'name', 'Middlesex University Dubai'),
(102106, 83994, 'en', 'name', 'Parkview Medical Center'),
(102107, 83995, 'en', 'name', 'Hattori Hokokai Foundation'),
(102108, 83995, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęœéƒØå ±å…¬ä¼š'),
(102109, 83996, 'no_lang_code', 'name', 'Professor Wühr und Simmel Gesundheits MANAGEMENT Systeme (Germany)'),
(102110, 83997, 'no_lang_code', 'name', 'GC Europe (Belgium)'),
(102111, 83998, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåœ°åŸŸåŒ»ē™‚ę©Ÿčƒ½ęŽØé€²ę©Ÿę§‹ä»™å°ē—…é™¢'),
(102112, 83998, 'no_lang_code', 'name', 'Sendai Shakai Hoken Hospital'),
(102113, 83999, 'en', 'name', 'University of International Relations'),
(102114, 83999, 'zh', 'name', '国际关系学院'),
(102115, 84000, 'en', 'name', 'Centre for Environment, Fisheries and Aquaculture Science'),
(102116, 84001, 'en', 'name', 'University College of Vocational Education'),
(102117, 84001, 'no', 'name', 'HĆøgskolen for yrkesfag, HĆøyskolen for yrkesfag'),
(102118, 84002, 'en', 'name', 'British Institute at Ankara'),
(102119, 84003, 'en', 'name', 'P.A. Hertzen Moscow Oncology Research Institute'),
(102120, 84003, 'ru', 'name', 'ŠœŠŠ˜ŠžŠ˜ им. П.А. Герцена - филиал ФГБУ Ā«ŠŠœŠ˜Š Š¦Ā» ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России'),
(102121, 84004, 'no_lang_code', 'name', 'National Center for Advanced Packaging (China)'),
(102122, 84005, 'en', 'name', 'eLife Sciences Publications'),
(102123, 84006, 'en', 'name', 'World Association of Theoretical and Computational Chemists'),
(102124, 84007, 'en', 'name', 'African Governance and Development Institute'),
(102125, 84008, 'en', 'name', 'University of Montana Western'),
(102126, 84009, 'en', 'name', 'Hampton Roads Sanitation District'),
(102127, 84010, 'en', 'name', 'United Nations Relief and Works Agency for Palestine Refugees in the Near East'),
(102128, 84011, 'de', 'name', 'Schweizerische Arbeitsgruppe für klinische Krebsforschung'),
(102129, 84011, 'en', 'name', 'Swiss Group For Clinical Cancer Research'),
(102130, 84012, 'no_lang_code', 'name', 'Abt Associates (Nepal)'),
(102131, 84013, 'en', 'name', 'Yellowstone National Park'),
(102132, 84014, 'es', 'name', 'Centro de AstrofĆ­sica y TecnologĆ­as Afines'),
(102133, 84015, 'fr', 'name', 'Conseil RƩgional de Picardie'),
(102134, 84016, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å®‡å¤šé‡Žē—…é™¢'),
(102135, 84016, 'no_lang_code', 'name', 'Utano Hospital'),
(102136, 84017, 'no_lang_code', 'name', 'Arbor Pharmaceuticals (United States)'),
(102137, 84018, 'es', 'name', 'Instituto Volcanológico de Canarias'),
(102138, 84019, 'de', 'name', 'inatura - Erlebnis Naturschau'),
(102139, 84019, 'no_lang_code', 'name', 'Inatura'),
(102140, 84020, 'en', 'name', 'National Institute of Health Sciences'),
(102141, 84020, 'ja', 'name', 'åŽšē”ŸåŠ“åƒēœå›½ē«‹åŒ»č–¬å“é£Ÿå“č”›ē”Ÿē ”ē©¶ę‰€'),
(102142, 84021, 'en', 'name', 'Centre for Advanced Process Technology for Urban Resource Recovery'),
(102143, 84022, 'no_lang_code', 'name', 'Pancreas Centre (Canada)'),
(102144, 84023, 'en', 'name', 'Institute of New Materials'),
(102145, 84023, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢ę–°ęę–™ē ”ē©¶ę‰€'),
(102146, 84024, 'en', 'name', 'Odessa State Environmental University'),
(102147, 84025, 'no_lang_code', 'name', 'Qeios (United Kingdom)'),
(102148, 84026, 'en', 'name', 'Gromov Flight Research Institute'),
(102149, 84026, 'ru', 'name', 'Летно-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени М.М. Громова'),
(102150, 84027, 'en', 'name', 'Animal and Plant Quarantine Agency'),
(102151, 84028, 'en', 'name', 'University Hospital Galway'),
(102152, 84028, 'ga', 'name', 'OspidƩil na hOllscoile'),
(102153, 84029, 'en', 'name', 'Armed Forces Institute of Pathology'),
(102154, 84030, 'en', 'name', 'Rovereto Civic Museum Foundation'),
(102155, 84030, 'it', 'name', 'Fondazione Museo Civico di Rovereto'),
(102156, 84031, 'en', 'name', 'Ambrose University'),
(102157, 84032, 'cs', 'name', 'Fakultnƭ nemocnice KrƔlovskƩ Vinohrady'),
(102158, 84032, 'en', 'name', 'University Hospital Kralovske Vinohrady'),
(102159, 84033, 'no_lang_code', 'name', 'Enzen (India)'),
(102160, 84034, 'en', 'name', 'Corner House'),
(102161, 84035, 'en', 'name', 'Kathmandu Cancer Center'),
(102162, 84036, 'en', 'name', 'Northeast U.S. Shelf Long Term Ecological Research'),
(102163, 84037, 'en', 'name', 'Tiny Beam Fund'),
(102164, 84038, 'en', 'name', 'Gump South Pacific Research Station'),
(102165, 84039, 'es', 'name', 'Instituto de Educación Superior Tecnológico Público "Eleazar GuzmÔn Barrón"'),
(102166, 84040, 'en', 'name', 'Institute for Experimental Endocrinology and Oncology'),
(102167, 84040, 'it', 'name', 'Istituto per l''Endocrinologia e l''Oncologica Sperimentale "G. Salvatore"'),
(102168, 84041, 'sv', 'name', 'Centralsjukhuset Kristianstad'),
(102169, 84042, 'en', 'name', 'Born Free Foundation'),
(102170, 84043, 'es', 'name', 'Universidad de San Buenaventura, Bogota'),
(102171, 84044, 'en', 'name', 'Duke Kunshan University'),
(102172, 84044, 'zh', 'name', 'ę˜†å±±ęœå…‹å¤§å­¦'),
(102173, 84045, 'no_lang_code', 'name', 'Lenovo (China)'),
(102174, 84045, 'zh', 'name', 'č”ęƒ³äø­å›½'),
(102175, 84046, 'pt', 'name', 'Universidade Federal do Norte do Tocantins'),
(102176, 84047, 'en', 'name', 'Chartered Institute of Architectural Technologists'),
(102177, 84048, 'en', 'name', 'Sten A Olsson Foundation for Research and Culture'),
(102178, 84048, 'sv', 'name', 'Sten A Olssons Stiftelse fƶr Forskning och Kultur'),
(102179, 84049, 'en', 'name', 'Centre for Palaeogenetics'),
(102180, 84050, 'de', 'name', 'Schilddrüsenpraxis Josefstadt'),
(102181, 84051, 'ar', 'name', 'Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠŲ©'),
(102182, 84051, 'en', 'name', 'Military Medical Academy'),
(102183, 84052, 'ja', 'name', 'äø‰č±ć‚¹ćƒšćƒ¼ć‚¹ćƒ»ć‚½ćƒ•ćƒˆć‚¦ć‚Øć‚¢ę Ŗå¼ä¼šē¤¾'),
(102184, 84052, 'no_lang_code', 'name', 'Mitsubishi Space Software (Japan)'),
(102185, 84053, 'en', 'name', 'Animal Welfare Institute'),
(102186, 84054, 'en', 'name', 'Baotou Medical College'),
(102187, 84054, 'zh', 'name', '包夓医学院'),
(102188, 84055, 'en', 'name', 'Nordre Ƙyeren Bird Observatory'),
(102189, 84055, 'no', 'name', 'Nordre Ƙyeren Fuglestasjon'),
(102190, 84056, 'id', 'name', 'STIE Kesuma Negara Blitar'),
(102191, 84057, 'en', 'name', 'Olivia Newton-John Cancer Wellness & Research Centre'),
(102192, 84058, 'no_lang_code', 'name', 'DarwinHealth (United States)'),
(102193, 84059, 'en', 'name', 'Cherepovets State University'),
(102194, 84059, 'ru', 'name', 'Череповецкий Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(102195, 84060, 'en', 'name', 'WellSpan Ephrata Community Hospital'),
(102196, 84061, 'en', 'name', 'American Podiatric Medical Association'),
(102197, 84062, 'en', 'name', 'Asser Institute'),
(102198, 84063, 'fr', 'name', 'L’Institut Franco-EuropĆ©en de Chiropraxie'),
(102199, 84064, 'en', 'name', 'Coastal Impact'),
(102200, 84065, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęøˆē”Ÿä¼šęØŖęµœåø‚ę±éƒØē—…é™¢'),
(102201, 84065, 'no_lang_code', 'name', 'Saiseikai Yokohama Eastern Hospital'),
(102202, 84066, 'en', 'name', 'Toronto Liver Centre'),
(102203, 84067, 'en', 'name', 'Alex Ekwueme Federal University, Ndufu-Alike'),
(102204, 84068, 'en', 'name', 'Anti Leprosy Campaign'),
(102205, 84069, 'es', 'name', 'Instituto Universitario de Innovación Ciencia y Tecnología Inudi Perú'),
(102206, 84070, 'en', 'name', 'Ministry of Fisheries and Marine Resource Development'),
(102207, 84071, 'en', 'name', 'Northwest Irrigation and Soils Research Laboratory'),
(102208, 84072, 'en', 'name', 'Federal Neurosurgical Center Novosibirsk'),
(102209, 84072, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ центр Š½ŠµŠ¹Ń€Š¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(102210, 84073, 'ja', 'name', 'ę±ę“‹ć‚¤ćƒ³ć‚­ę Ŗå¼ä¼šē¤¾'),
(102211, 84073, 'no_lang_code', 'name', 'Toyo Ink (Japan)'),
(102212, 84074, 'sv', 'name', 'Spine Center Gƶteborg'),
(102213, 84075, 'en', 'name', 'Collaborative Innovation Center of Advanced Microstructures'),
(102214, 84075, 'zh', 'name', 'äŗŗå·„å¾®ē»“ęž„ē§‘å­¦äøŽęŠ€ęœÆååŒåˆ›ę–°äø­åæƒ'),
(102215, 84076, 'en', 'name', 'Mary M. Gooley Hemophilia Center'),
(102216, 84077, 'en', 'name', 'Institute of Biochemistry of Biologically Active Compounds of the National Academy of Sciences of Belarus'),
(102217, 84077, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии биологически активных соеГинений ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŠø'),
(102218, 84078, 'en', 'name', 'European Association for the Study of Diabetes'),
(102219, 84079, 'en', 'name', 'Norton Community Hospital'),
(102220, 84080, 'no_lang_code', 'name', 'Helen Keller International Nepal'),
(102221, 84081, 'en', 'name', 'Scripps Institution of Oceanography'),
(102222, 84082, 'en', 'name', 'British Beekeepers Association'),
(102223, 84083, 'no_lang_code', 'name', 'Bluebird Bio (United States)'),
(102224, 84084, 'en', 'name', 'Yuanmeng Precision Technology Research Institute'),
(102225, 84084, 'zh', 'name', 'ę·±åœ³åø‚åœ†ę¢¦ē²¾åÆ†ęŠ€ęœÆē ”ē©¶é™¢'),
(102226, 84085, 'en', 'name', 'Geos Institute'),
(102227, 84086, 'en', 'name', 'American Association of Diabetes Educators'),
(102228, 84087, 'fr', 'name', 'UniversitƩ kore d''enna'),
(102229, 84087, 'it', 'name', 'UniversitĆ  Kore di Enna, UniversitĆ  degli Studi di Enna Kore'),
(102230, 84088, 'de', 'name', 'Niederer Kraft and Frey'),
(102231, 84089, 'no_lang_code', 'name', 'Atos (Netherlands)'),
(102232, 84090, 'en', 'name', 'Kulkarni reconstructive Urology Center'),
(102233, 84091, 'no_lang_code', 'name', 'EVERSANA (Canada)'),
(102234, 84092, 'en', 'name', 'Norwegian Centre for Organic Agriculture'),
(102235, 84092, 'no', 'name', 'Norsk senter for Ćøkologisk landbruk'),
(102236, 84093, 'pt', 'name', 'Mecila'),
(102237, 84094, 'ja', 'name', 'ć‚µćƒ³ćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(102238, 84094, 'no_lang_code', 'name', 'Sun Pharma (Japan)'),
(102239, 84095, 'no_lang_code', 'name', 'Global Seismological Services (United States)'),
(102240, 84096, 'de', 'name', 'HSD Hochschule Dƶpfer'),
(102241, 84097, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęµé€šć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(102242, 84097, 'no_lang_code', 'name', 'GS1 Japan'),
(102243, 84098, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ“ćƒ¼ćƒ»ć‚Øćƒ ćƒ»ć‚Øćƒ«'),
(102244, 84098, 'no_lang_code', 'name', 'BML (Japan)'),
(102245, 84099, 'en', 'name', 'The Trust for Public Land'),
(102246, 84100, 'en', 'name', 'The Origins Project Foundation'),
(102247, 84101, 'en', 'name', 'Taian City Central Hospital'),
(102248, 84101, 'zh', 'name', 'å±±äøœēœę³°å®‰åø‚äø­åæƒåŒ»é™¢'),
(102249, 84102, 'de', 'name', 'Museum für Naturkunde Magdeburg'),
(102250, 84102, 'en', 'name', 'Museum of Natural History Magdeburg'),
(102251, 84103, 'en', 'name', 'Chinese Society for Electrical Engineering'),
(102252, 84103, 'zh', 'name', 'äø­å›½ē”µęœŗå·„ēØ‹å­¦ä¼š'),
(102253, 84104, 'no_lang_code', 'name', 'MBC BioLabs (United States)'),
(102254, 84105, 'en', 'name', 'The Forestry Commission of Ghana'),
(102255, 84106, 'en', 'name', 'Academy of Cognitive and Natural Sciences'),
(102256, 84106, 'uk', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń когнітивних та прироГничих наук'),
(102257, 84107, 'en', 'name', 'Chengdu Institute of Biology'),
(102258, 84107, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ęˆéƒ½ē”Ÿē‰©ē ”ē©¶ę‰€'),
(102259, 84108, 'no_lang_code', 'name', 'Alto Neuroscience (United States)'),
(102260, 84109, 'fr', 'name', 'RƩseau d''Allergo-Vigilance'),
(102261, 84110, 'de', 'name', 'Evangelische Hochschule für Soziale Arbeit & Diakonie'),
(102262, 84110, 'en', 'name', 'Evangelical School of Social Work & Diakonie'),
(102263, 84111, 'en', 'name', 'Renal Associates P. A.'),
(102264, 84112, 'en', 'name', 'BirdLife international'),
(102265, 84113, 'en', 'name', 'Georgia Department of Public Health'),
(102266, 84114, 'en', 'name', 'Hokuriku University'),
(102267, 84114, 'ja', 'name', 'åŒ—é™øå¤§å­¦'),
(102268, 84115, 'en', 'name', 'National Research Institute of Brewing'),
(102269, 84115, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗé…’é”žē·åˆē ”ē©¶ę‰€'),
(102270, 84116, 'en', 'name', 'Westchester County Department of Health'),
(102271, 84117, 'de', 'name', 'Dermatologikum Hamburg'),
(102272, 84118, 'en', 'name', 'Buffalo Bill Center of the West'),
(102273, 84119, 'en', 'name', 'National Intercultural University of Quillabamba'),
(102274, 84119, 'es', 'name', 'Universidad Nacional Intercultural de Quillabamba'),
(102275, 84120, 'en', 'name', 'Showa University Hospital'),
(102276, 84120, 'ja', 'name', 'ę˜­å’Œå¤§å­¦ē—…é™¢'),
(102277, 84121, 'en', 'name', 'Nagoya City University'),
(102278, 84121, 'ja', 'name', 'åå¤å±‹åø‚ē«‹å¤§å­¦'),
(102279, 84122, 'en', 'name', 'Institute for Physics'),
(102280, 84123, 'no_lang_code', 'name', 'Reneco (United Arab Emirates)'),
(102281, 84124, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© عمان لطب الأسنان'),
(102282, 84124, 'en', 'name', 'Oman Dental College'),
(102283, 84125, 'en', 'name', 'British Society for Geomorphology'),
(102284, 84126, 'en', 'name', 'Yamagata Prefectural Yonezawa University of Nutrition Sciences'),
(102285, 84126, 'ja', 'name', 'å±±å½¢ēœŒē«‹ē±³ę²¢ę „é¤Šå¤§å­¦'),
(102286, 84127, 'en', 'name', 'Polk County High School'),
(102287, 84128, 'de', 'name', 'Gƶttlicher Heiland Krankenhaus Wien'),
(102288, 84129, 'no_lang_code', 'name', 'Heartfile'),
(102289, 84130, 'en', 'name', 'Nippon Veterinary and Life Science University'),
(102290, 84130, 'ja', 'name', 'ę—„ęœ¬ē£åŒ»ē”Ÿå‘½ē§‘å­¦å¤§å­¦'),
(102291, 84131, 'no_lang_code', 'name', 'Twitter (United States)'),
(102292, 84132, 'en', 'name', 'Levinson Medical Center for Learning Disabilities'),
(102293, 84133, 'ca', 'name', 'Agrotecnio (Fundació UdL-IRTA)'),
(102294, 84133, 'en', 'name', 'Agrotecnio - Centre for Food and Agriculture Research'),
(102295, 84134, 'nl', 'name', 'Heineken Pilsener'),
(102296, 84134, 'no_lang_code', 'name', 'Heineken (Netherlands)'),
(102297, 84135, 'en', 'name', 'Ministry of Finance'),
(102298, 84135, 'id', 'name', 'Kementerian Keuangan'),
(102299, 84136, 'en', 'name', 'Niigata University'),
(102300, 84136, 'ja', 'name', 'ę–°ę½Ÿå¤§å­¦'),
(102301, 84137, 'de', 'name', 'Fraunhofer-Center für Silizium-Photovoltaik'),
(102302, 84137, 'en', 'name', 'Fraunhofer Center for Silicon Photovoltaics'),
(102303, 84138, 'en', 'name', 'Peking University Third Hospital'),
(102304, 84138, 'zh', 'name', 'åŒ—äŗ¬å¤§å­¦ē¬¬äø‰åŒ»é™¢'),
(102305, 84139, 'en', 'name', 'Korean Society of Spine Surgery'),
(102306, 84139, 'ko', 'name', 'ėŒ€ķ•œģ²™ģ¶”ģ™øź³¼ķ•™ķšŒ'),
(102307, 84140, 'en', 'name', 'Unitary Fund'),
(102308, 84141, 'no_lang_code', 'name', 'DataCite'),
(102309, 84142, 'ja', 'name', 'ć‚½ćƒ‹ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(102310, 84142, 'no_lang_code', 'name', 'Sony (Japan)'),
(102311, 84143, 'no_lang_code', 'name', 'Abound Bio (United States)'),
(102312, 84144, 'en', 'name', 'Gynecologic Oncology Group'),
(102313, 84145, 'en', 'name', 'National Association of Psychiatric Intensive Care and Low Secure Unit'),
(102314, 84146, 'en', 'name', 'National Cold Water Marine Aquaculture Center'),
(102315, 84147, 'en', 'name', 'European Laboratory for Non-Linear Spectroscopy'),
(102316, 84147, 'it', 'name', 'Laboratorio europeo di spettroscopia non lineare'),
(102317, 84148, 'en', 'name', 'New Hampshire NeuroSpine Institute'),
(102318, 84149, 'en', 'name', 'Edward T. Schafer Agricultural Research Center'),
(102319, 84150, 'en', 'name', 'Baptist Health Madisonville'),
(102320, 84151, 'en', 'name', 'Energy Research Centre of the Netherlands'),
(102321, 84152, 'no_lang_code', 'name', 'Dong Wha Pharm (South Korea)'),
(102322, 84153, 'no_lang_code', 'name', 'Advanced Research Center for Nanolithography (Netherlands)'),
(102323, 84154, 'en', 'name', 'Japanese Red Cross Society Kyoto Daini Hospital'),
(102324, 84154, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾äŗ¬éƒ½ē¬¬äŗŒčµ¤åå­—ē—…é™¢'),
(102325, 84155, 'en', 'name', 'SeaWorld San Diego'),
(102326, 84156, 'en', 'name', 'DigitalGlobe Foundation'),
(102327, 84157, 'no_lang_code', 'name', 'ESI Group (United Kingdom)'),
(102328, 84158, 'fr', 'name', 'HƓpital Saint-Luc'),
(102329, 84159, 'no_lang_code', 'name', 'Brewer Science (United States)'),
(102330, 84160, 'no_lang_code', 'name', 'Atlantic Copper (Spain)'),
(102331, 84161, 'en', 'name', 'Ocean Medical Center'),
(102332, 84162, 'en', 'name', 'Lebanon Support'),
(102333, 84163, 'ja', 'name', 'ę—„ęø…č£½ē²‰ć‚°ćƒ«ćƒ¼ćƒ—ęœ¬ē¤¾'),
(102334, 84163, 'no_lang_code', 'name', 'Nisshin Seifun Group (Japan)'),
(102335, 84164, 'no_lang_code', 'name', 'Estonian Biocentre'),
(102336, 84165, 'en', 'name', 'Simula Metropolitan Center for Digital Engineering'),
(102337, 84166, 'no', 'name', 'BƦrum Kommune'),
(102338, 84167, 'en', 'name', 'FGK Clinical Research'),
(102339, 84168, 'en', 'name', 'Faroese Research Council'),
(102340, 84169, 'ca', 'name', 'Institut CatalĆ  de Recerca En Patrimoni Cultural'),
(102341, 84169, 'en', 'name', 'Catalan Institute for Cultural Heritage Research'),
(102342, 84170, 'no_lang_code', 'name', 'Otonomy (United States)'),
(102343, 84171, 'en', 'name', 'Queen Elizabeth University Hospital'),
(102344, 84172, 'en', 'name', 'Hungarian Natural History Museum'),
(102345, 84172, 'hu', 'name', 'Magyar TermészettudomÔnyi Múzeum'),
(102346, 84173, 'nl', 'name', 'De Bastei'),
(102347, 84174, 'no_lang_code', 'name', 'ASRO (Finland)'),
(102348, 84175, 'no_lang_code', 'name', 'MantraCare'),
(102349, 84176, 'en', 'name', 'Nippon Medical School Hospital'),
(102350, 84176, 'ja', 'name', 'ę—„ęœ¬åŒ»ē§‘å¤§å­¦ä»˜å±žē—…é™¢'),
(102351, 84177, 'nl', 'name', 'St. Anna Ziekenhuis'),
(102352, 84178, 'en', 'name', 'Shandong Academy of Sciences'),
(102353, 84178, 'zh', 'name', 'å±±äøœēœē§‘å­¦é™¢'),
(102354, 84179, 'en', 'name', 'Constitutional Court of Korea'),
(102355, 84179, 'ko', 'name', 'ķ—Œė²•ģž¬ķŒģ†Œ'),
(102356, 84180, 'en', 'name', 'Koyasan University'),
(102357, 84180, 'ja', 'name', '高野山大学'),
(102358, 84181, 'en', 'name', 'Sydney Water'),
(102359, 84182, 'en', 'name', 'Science Table'),
(102360, 84183, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£åœ­ę˜„ä¼šå°å¼µē·åˆē—…é™¢'),
(102361, 84183, 'no_lang_code', 'name', 'Kobari General Hospital'),
(102362, 84184, 'no_lang_code', 'name', 'Three-Speed Logic (Canada)'),
(102363, 84185, 'no_lang_code', 'name', 'Celsius Therapeutics (United States)'),
(102364, 84186, 'en', 'name', 'American Academy of Hospice and Palliative Medicine'),
(102365, 84187, 'en', 'name', 'Snolab'),
(102366, 84188, 'fr', 'name', 'Centre Africain de Recherche en EpidƩmiologie et en SantƩ Publique'),
(102367, 84189, 'en', 'name', 'Kanagawa Academy of Science and Technology'),
(102368, 84189, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žå„ˆå·ē§‘å­¦ęŠ€č”“ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(102369, 84190, 'en', 'name', 'Nagpur Institute of Technology'),
(102370, 84191, 'de', 'name', 'Institut für Radio- und Informationssysteme – IRIS'),
(102371, 84191, 'en', 'name', 'Institute of Radio and Information Systems (IRIS)'),
(102372, 84192, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© حسيبة بن ŲØŁˆŲ¹Ł„ŁŠ -الؓلف'),
(102373, 84192, 'en', 'name', 'Hassiba Benbouali University of Chlef'),
(102374, 84193, 'en', 'name', 'University of Molise'),
(102375, 84193, 'fr', 'name', 'UniversitƩ du molise'),
(102376, 84193, 'it', 'name', 'UniversitĆ  degli Studi del Molise'),
(102377, 84194, 'en', 'name', 'Moline Public Library'),
(102378, 84195, 'en', 'name', 'Global Health Research Center of Central Asia'),
(102379, 84195, 'kk', 'name', 'Центр Š˜Š·ŃƒŃ‡ŠµŠ½ŠøŃ Š“Š»Š¾Š±Š°Š»ŃŒŠ½Š¾Š³Š¾ Š—Š“Š¾Ń€Š¾Š²ŃŒŃ в Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(102380, 84196, 'fr', 'name', 'Institut du Savoir Montfort'),
(102381, 84197, 'pl', 'name', 'Przedszkole Nr 81'),
(102382, 84198, 'en', 'name', 'Minnesota Academy of Science'),
(102383, 84199, 'en', 'name', 'Japan Health Sciences Foundation'),
(102384, 84199, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ’ćƒ„ćƒ¼ćƒžćƒ³ć‚µć‚¤ć‚Øćƒ³ć‚¹ęŒÆčˆˆč²”å›£'),
(102385, 84200, 'en', 'name', 'National Electronics and Computer Technology Center'),
(102386, 84201, 'en', 'name', 'Remote Sensing Technology Center of Japan'),
(102387, 84201, 'ja', 'name', 'ćƒŖćƒ¢ćƒ¼ćƒˆćƒ»ć‚»ćƒ³ć‚·ćƒ³ć‚°ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(102388, 84202, 'en', 'name', 'Saitama Medical University'),
(102389, 84202, 'ja', 'name', 'åŸ¼ēŽ‰åŒ»ē§‘å¤§å­¦'),
(102390, 84203, 'no_lang_code', 'name', 'Public Power Corporation (Greece)'),
(102391, 84204, 'no_lang_code', 'name', 'FlowJo (United States)'),
(102392, 84205, 'en', 'name', 'Academy of Neuroscience for Architecture'),
(102393, 84206, 'da', 'name', 'Langelands Museum'),
(102394, 84207, 'cy', 'name', 'Bwrdd lechyd Prifysgol Bae Abertawe'),
(102395, 84207, 'en', 'name', 'Swansea Bay University Health Board'),
(102396, 84208, 'en', 'name', 'State Key Laboratory of Food Science and Technology'),
(102397, 84208, 'zh', 'name', 'é£Ÿå“ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(102398, 84209, 'en', 'name', 'Health Service Executive'),
(102399, 84209, 'ga', 'name', 'Feidhmeannacht na Seirbhƭse SlƔinte'),
(102400, 84210, 'en', 'name', 'CMT Research Foundation'),
(102401, 84211, 'fr', 'name', 'Institut National de SantƩ Publique'),
(102402, 84212, 'en', 'name', 'First Nations University of Canada'),
(102403, 84213, 'en', 'name', 'Multimedia University'),
(102404, 84213, 'th', 'name', 'ดหาวณทยาคัยดัคตณดีเดีย'),
(102405, 84214, 'en', 'name', 'Ministry of Culture and Tourism'),
(102406, 84214, 'tr', 'name', 'T.C. Kültür ve Turizm Bakanlığı, Türkiye Cumhuriyeti Kültür ve Turizm Bakanlığı'),
(102407, 84215, 'en', 'name', 'Hospital and Rehabilitation for Disabled Children'),
(102408, 84216, 'en', 'name', 'Rotary Club of Eureka'),
(102409, 84217, 'en', 'name', 'Society of Hematologic Oncology'),
(102410, 84218, 'en', 'name', 'Center for Pain and the Brain'),
(102411, 84219, 'de', 'name', 'Krankenhaus Lübbecke-Rahden, Universitätsklinik für Psychiatrie und Psychotherapie'),
(102412, 84220, 'en', 'name', 'Tambov Military Aviation Engineering Institute'),
(102413, 84220, 'ru', 'name', 'Тамбовский военный авиационный инженерный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(102414, 84221, 'it', 'name', 'Istituto di Sessuologia Clinica'),
(102415, 84222, 'it', 'name', 'Istituto Nazionale Tumori IRCCS "Fondazione G. Pascale"'),
(102416, 84223, 'en', 'name', 'MTA-SZTE Research Group on Artificial Intelligence'),
(102417, 84224, 'no_lang_code', 'name', 'Mavenir (Israel)'),
(102418, 84225, 'en', 'name', 'United in Health'),
(102419, 84226, 'en', 'name', 'Labour Relations Agency'),
(102420, 84227, 'en', 'name', 'Illinois State University'),
(102421, 84227, 'es', 'name', 'Universidad del Estado de Illinois'),
(102422, 84227, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''illinois'),
(102423, 84228, 'en', 'name', 'Farm Service Agency'),
(102424, 84229, 'en', 'name', 'European Academy of Dermatology and Venereology'),
(102425, 84230, 'no_lang_code', 'name', 'Bio-Rad (Germany)'),
(102426, 84231, 'en', 'name', 'John F. Kennedy University'),
(102427, 84232, 'en', 'name', 'Shanghai Academy of Spaceflight Technology'),
(102428, 84232, 'zh', 'name', 'äøŠęµ·čˆŖå¤©ęŠ€ęœÆē ”ē©¶é™¢'),
(102429, 84233, 'en', 'name', 'Buck Institute for Research on Aging'),
(102430, 84234, 'en', 'name', 'Kyiv National University of Technologies and Design'),
(102431, 84234, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ технологій та Гизайну'),
(102432, 84235, 'en', 'name', 'Institute of Professional Accountants of Russia'),
(102433, 84235, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Ń… Š±ŃƒŃ…Š³Š°Š»Ń‚ŠµŃ€Š¾Š² Šø Š°ŃƒŠ“ŠøŃ‚Š¾Ń€Š¾Š² России'),
(102434, 84236, 'en', 'name', 'Choctaw County School District'),
(102435, 84237, 'en', 'name', 'Robert W. Holley Center for Agriculture & Health'),
(102436, 84238, 'pt', 'name', 'Hospital SĆ£o Paulo'),
(102437, 84239, 'en', 'name', 'American Society of Parasitologists'),
(102438, 84240, 'en', 'name', 'North Carolina Academy of Science'),
(102439, 84241, 'en', 'name', 'Shipping Federation of Canada'),
(102440, 84241, 'fr', 'name', 'La FƩdƩration maritime du Canada'),
(102441, 84242, 'de', 'name', 'Epilepsiezentrum Kleinwachau Gemeinnützige'),
(102442, 84243, 'en', 'name', 'Western University of Health Sciences'),
(102443, 84244, 'en', 'name', 'American Holistic Nurses Association'),
(102444, 84245, 'no_lang_code', 'name', 'ZTE (United States)'),
(102445, 84246, 'en', 'name', 'Argentine Naval Hydrographic Service'),
(102446, 84246, 'es', 'name', 'Servicio de Hidrografia Naval'),
(102447, 84247, 'de', 'name', 'Tiroler Zukunftsstiftung'),
(102448, 84248, 'en', 'name', 'Resphera Biosciences'),
(102449, 84249, 'no_lang_code', 'name', 'Samsung (Russia)'),
(102450, 84250, 'fr', 'name', 'Institut de Formation et de Recherche DƩmographiques'),
(102451, 84251, 'no_lang_code', 'name', 'Erum Biotechnologies (South Korea)'),
(102452, 84252, 'no_lang_code', 'name', 'Selective Catalytic Reduction (United States)'),
(102453, 84253, 'en', 'name', 'Loyola University New Orleans'),
(102454, 84253, 'es', 'name', 'Universidad Loyola Nueva Orleans'),
(102455, 84254, 'no_lang_code', 'name', 'Zygo (United States)'),
(102456, 84255, 'en', 'name', 'IMEK Research Center in Marketing & Development'),
(102457, 84255, 'es', 'name', 'IMEK Centro de Investigación en Mercadeo & Desarrollo'),
(102458, 84256, 'en', 'name', 'Institute of Radiophysics and Electronics'),
(102459, 84256, 'hy', 'name', 'ÕŒÕ”Õ¤Õ«ÕøÖ†Õ«Õ¦Õ«ÕÆÕ”ÕµÕ« և Õ§Õ¬Õ„ÕÆÕæÖ€ÕøÕ¶Õ«ÕÆÕ”ÕµÕ« Õ«Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(102460, 84257, 'no_lang_code', 'name', 'Lava Therapeutics (Netherlands)'),
(102461, 84258, 'en', 'name', 'Tokai Central Hospital'),
(102462, 84258, 'ja', 'name', 'å…¬ē«‹å­¦ę ”å…±ęøˆēµ„åˆę±ęµ·äø­å¤®ē—…é™¢'),
(102463, 84259, 'no_lang_code', 'name', 'Acellera (Spain)'),
(102464, 84260, 'en', 'name', 'Ilia State University'),
(102465, 84260, 'ka', 'name', 'ილიაე įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(102466, 84260, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ильи'),
(102467, 84261, 'en', 'name', 'Rajamangala University of Technology'),
(102468, 84261, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„'),
(102469, 84262, 'en', 'name', 'Newcastle Hospitals - Campus for Ageing and Vitality'),
(102470, 84263, 'en', 'name', 'Biomedical Research Foundation'),
(102471, 84264, 'en', 'name', 'Soreq Nuclear Research Center'),
(102472, 84264, 'he', 'name', '×”×ž×Ø×›×– ×œ×ž×—×§×Ø גרעיני שורק'),
(102473, 84265, 'cy', 'name', 'Llyfrgell Genedlaethol yr Alban'),
(102474, 84265, 'en', 'name', 'National Library of Scotland'),
(102475, 84266, 'da', 'name', 'Roskilde Museum'),
(102476, 84267, 'en', 'name', 'United Kingdom Space Agency'),
(102477, 84268, 'fr', 'name', 'Institut Cochin'),
(102478, 84269, 'en', 'name', 'Higher Institute for Artistic Industries Roma'),
(102479, 84269, 'it', 'name', 'Istituto Superiore per le Industrie Artistiche'),
(102480, 84270, 'en', 'name', 'Institute of Transport Science and Technology'),
(102481, 84270, 'vi', 'name', 'Viện Khoa hį»c vĆ  CĆ“ng nghệ Giao thĆ“ng vįŗ­n tįŗ£i'),
(102482, 84271, 'en', 'name', 'National University of JaƩn'),
(102483, 84271, 'es', 'name', 'Universidad Nacional de JaƩn'),
(102484, 84272, 'en', 'name', 'Huashan Hospital'),
(102485, 84273, 'no_lang_code', 'name', 'Refuge Biotechnologies (United States)'),
(102486, 84274, 'en', 'name', 'Risk Management Agency'),
(102487, 84275, 'en', 'name', 'Innovating Health International'),
(102488, 84276, 'no_lang_code', 'name', 'China Aerospace Science and Industry Corporation (China)'),
(102489, 84276, 'zh', 'name', 'äø­å›½čˆŖå¤©ē§‘å·„é›†å›¢å…¬åø'),
(102490, 84277, 'fr', 'name', 'HÓpital Rivière-des-Prairies'),
(102491, 84278, 'en', 'name', 'People''s Trust for Endangered Species'),
(102492, 84279, 'en', 'name', 'Ngātiwai Trust Board'),
(102493, 84280, 'en', 'name', 'The Turner Scientific Research Institute for Children''s Orthopedics'),
(102494, 84280, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Гетский ортопеГический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š“. И'),
(102495, 84281, 'en', 'name', 'Western Institute of Technology at Taranaki'),
(102496, 84282, 'en', 'name', 'People''s Hospital of Yangzhong'),
(102497, 84282, 'zh', 'name', 'ę‰¬äø­åø‚äŗŗę°‘åŒ»é™¢'),
(102498, 84283, 'no_lang_code', 'name', 'Invizyne Technologies (United States)'),
(102499, 84284, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī‘ĻƒĻ„ĻĪæĻ†Ļ…ĻƒĪ¹ĪŗĪ®Ļ‚'),
(102500, 84284, 'en', 'name', 'FORTH Institute of Astrophysics'),
(102501, 84285, 'no_lang_code', 'name', 'Fera Science (United Kingdom)'),
(102502, 84286, 'en', 'name', 'Center for Excellence in Tibetan Plateau Earth Sciences'),
(102503, 84287, 'en', 'name', 'Benazir Bhutto Hospital'),
(102504, 84287, 'ur', 'name', 'ŲØŪ’ Ł†ŲøŪŒŲ± بھٹو ہسپتال'),
(102505, 84288, 'en', 'name', 'American Association of Colleges for Teacher Education'),
(102506, 84289, 'en', 'name', 'Nazarbayev University'),
(102507, 84289, 'kk', 'name', 'ŠŠ°Š·Š°Ń€Š±Š°ŠµŠ² Университеті'),
(102508, 84289, 'ru', 'name', 'ŠŠ°Š·Š°Ń€Š±Š°ŠµŠ² Университет'),
(102509, 84290, 'de', 'name', 'Max-Planck-Institut für Kernphysik'),
(102510, 84290, 'en', 'name', 'Max Planck Institute for Nuclear Physics'),
(102511, 84291, 'en', 'name', 'Łukasiewicz Research Network - Institute of Industrial Organic Chemistry, Branch Pszczyna'),
(102512, 84292, 'en', 'name', 'Austrian Cluster for Tissue Regeneration'),
(102513, 84293, 'en', 'name', 'Glaucoma Research Society of Canada'),
(102514, 84293, 'fr', 'name', 'SociƩtƩ canadienne de recherche sur le glaucome'),
(102515, 84294, 'en', 'name', 'Columbia St. Mary''s Hospital Ozaukee'),
(102516, 84295, 'no_lang_code', 'name', 'BioNTech (United States)'),
(102517, 84296, 'en', 'name', 'Appalachian Fruit Research Laboratory'),
(102518, 84297, 'en', 'name', 'Musculoskeletal Tumor Society'),
(102519, 84298, 'en', 'name', 'Icelandic Cancer Society'),
(102520, 84298, 'is', 'name', 'KrabbameinsfƩlagiư'),
(102521, 84299, 'en', 'name', 'Ugra National Park'),
(102522, 84299, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ парк Угра'),
(102523, 84300, 'en', 'name', 'National Institute for Minamata Disease'),
(102524, 84300, 'ja', 'name', 'ē’°å¢ƒēœå›½ē«‹ę°“äæ£ē—…ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(102525, 84301, 'it', 'name', 'Istituto Nazionale della Previdenza Sociale'),
(102526, 84302, 'en', 'name', 'Łukasiewicz Research Network - Wood Technology Institute'),
(102527, 84302, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Instytut Technologii Drewna'),
(102528, 84303, 'no_lang_code', 'name', 'Docbot (United States)'),
(102529, 84304, 'en', 'name', 'Cape Breton University'),
(102530, 84304, 'fr', 'name', 'UniversitƩ du cap-breton'),
(102531, 84305, 'no_lang_code', 'name', 'CymaBay Therapeutics (United States)'),
(102532, 84306, 'en', 'name', 'Mizutani Foundation for Glycoscience'),
(102533, 84306, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę°“č°·ē³–č³Ŗē§‘å­¦ęŒÆčˆˆč²”å›£'),
(102534, 84307, 'no_lang_code', 'name', 'Arcadia Science'),
(102535, 84308, 'en', 'name', 'Niagara University'),
(102536, 84308, 'es', 'name', 'Universidad de NiƔgara'),
(102537, 84308, 'fr', 'name', 'UniversitƩ de niagara'),
(102538, 84309, 'en', 'name', 'Norfolk Public Library'),
(102539, 84310, 'en', 'name', 'Centre for Policy Studies'),
(102540, 84311, 'de', 'name', 'Deutscher Wasserstoff und Brennstoffzellen Verband'),
(102541, 84311, 'en', 'name', 'German Hydrogen and Fuel-Cell Association'),
(102542, 84312, 'en', 'name', 'Gyeongju National Museum'),
(102543, 84312, 'ko', 'name', '국립경주박물꓀'),
(102544, 84313, 'en', 'name', 'Torbay and South Devon NHS Foundation Trust'),
(102545, 84314, 'en', 'name', 'London Film School'),
(102546, 84315, 'no_lang_code', 'name', 'Genomics (United Kingdom)'),
(102547, 84316, 'no_lang_code', 'name', 'MorphogƩnie Logiciels (France)'),
(102548, 84317, 'no_lang_code', 'name', 'FM Global (United States)'),
(102549, 84318, 'en', 'name', 'Anhui Xinhua University'),
(102550, 84319, 'en', 'name', 'National University of CaƱete'),
(102551, 84319, 'es', 'name', 'Universidad Nacional de CaƱete'),
(102552, 84320, 'en', 'name', 'Showa Pharmaceutical University'),
(102553, 84320, 'ja', 'name', 'ę˜­å’Œč–¬ē§‘å¤§å­¦'),
(102554, 84321, 'no_lang_code', 'name', 'Eastman Chemical Company (United States)'),
(102555, 84322, 'nl', 'name', 'Laurentius Ziekenhuis'),
(102556, 84323, 'en', 'name', 'Honghu Hospital of Traditional Chinese Medicine'),
(102557, 84323, 'zh', 'name', 'ę“Ŗę¹–äø­åŒ»ę–‡åŒ–'),
(102558, 84324, 'en', 'name', 'Ragon Institute of MGH, MIT and Harvard'),
(102559, 84325, 'en', 'name', 'Academy of Scientific and Innovative Research'),
(102560, 84326, 'no_lang_code', 'name', 'Bexon Clinical Consulting (United States)'),
(102561, 84327, 'no_lang_code', 'name', 'Febus Optics (France)'),
(102562, 84328, 'en', 'name', 'Veterans Medical Research Foundation of San Diego'),
(102563, 84329, 'en', 'name', 'Lachine Hospital'),
(102564, 84329, 'fr', 'name', 'HƓpital de Lachine'),
(102565, 84330, 'en', 'name', 'Department of Industrial Technology'),
(102566, 84331, 'en', 'name', 'Tri-Institutional Therapeutics Discovery Institute'),
(102567, 84332, 'en', 'name', 'Oslo National Academy of the Arts'),
(102568, 84332, 'no', 'name', 'KunsthĆøgskolen i Oslo'),
(102569, 84333, 'ja', 'name', 'ę˜­å’Œå¤§å­¦č—¤ćŒäø˜ē—…é™¢'),
(102570, 84333, 'no_lang_code', 'name', 'Showa University Fujigaoka Hospital'),
(102571, 84334, 'es', 'name', 'Fundación Para La Investigación Y Gestión En Servicios de Salud'),
(102572, 84335, 'es', 'name', 'Hospital Universitario Nacional de Colombia'),
(102573, 84336, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å°ē³øč£½ä½œę‰€'),
(102574, 84336, 'no_lang_code', 'name', 'Koito Manufacturing (Japan)'),
(102575, 84337, 'en', 'name', 'Hunan Railway Professional Technology College'),
(102576, 84337, 'zh', 'name', 'ę¹–å—é“é“čŒäøšęŠ€ęœÆå­¦é™¢'),
(102577, 84338, 'no_lang_code', 'name', 'Cycle (Germany)'),
(102578, 84339, 'en', 'name', 'Institute of Geological Sciences'),
(102579, 84339, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологічних наук ŠŠŠ України'),
(102580, 84340, 'en', 'name', 'Baylor Jack and Jane Hamilton Heart and Vascular Hospital'),
(102581, 84341, 'en', 'name', 'Marine Ecology Research Institute'),
(102582, 84341, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęµ·ę“‹ē”Ÿē‰©ē’°å¢ƒē ”ē©¶ę‰€'),
(102583, 84342, 'en', 'name', 'Sha''ar Menashe Mental Health Center'),
(102584, 84342, 'he', 'name', '×”×ž×Ø×›×– ×œ×‘×Ø×™××•×Ŗ הנפש- בית חולים שער מנשה'),
(102585, 84343, 'en', 'name', 'Chonnam National University Hwasun Hospital'),
(102586, 84343, 'ko', 'name', 'ķ™”ģˆœģ „ė‚ØėŒ€ķ•™źµė³‘ģ›'),
(102587, 84344, 'en', 'name', 'Federal State Budgetary Institution "Center for Expertise and Quality Control of Medical Care"'),
(102588, 84344, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ «Центр ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ Šø ŠŗŠ¾Š½Ń‚Ń€Š¾Š»Ń качества меГицинской помощи» ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(102589, 84345, 'no_lang_code', 'name', 'Fugro (Netherlands)'),
(102590, 84346, 'en', 'name', 'Kato Memorial Bioscience Foundation'),
(102591, 84346, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŠ č—¤čØ˜åæµćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ęŒÆčˆˆč²”å›£'),
(102592, 84347, 'no_lang_code', 'name', 'BDO Unicon (Russia)'),
(102593, 84348, 'fr', 'name', 'Conservatoire de Musique et d’art Dramatique du QuĆ©bec'),
(102594, 84349, 'en', 'name', 'Kartal Koşuyolu High Specialization Training and Research Hospital'),
(102595, 84349, 'tr', 'name', 'Kartal Koşuyolu Yüksek İhtisas Eğitim ve Araştırma Hastanesi'),
(102596, 84350, 'en', 'name', 'Millenium Nucleus for Planet Formation'),
(102597, 84350, 'es', 'name', 'Núcleo Milenio de Formación Planetaria'),
(102598, 84351, 'no_lang_code', 'name', 'IDEXX Laboratories (Germany)'),
(102599, 84352, 'ja', 'name', 'ć‚µćƒˆćƒ¼ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(102600, 84352, 'no_lang_code', 'name', 'SATO (Japan)'),
(102601, 84353, 'id', 'name', 'Universitas Bondowoso'),
(102602, 84354, 'en', 'name', 'Research4Life'),
(102603, 84355, 'en', 'name', 'Federico Santa MarĆ­a Technical University'),
(102604, 84355, 'es', 'name', 'Universidad TƩcnica Federico Santa Marƭa'),
(102605, 84356, 'en', 'name', 'Shanghai Center for Brain Science and Brain-Inspired Technology'),
(102606, 84356, 'zh', 'name', 'äøŠęµ·č„‘ē§‘å­¦äøŽē±»č„‘ē ”ē©¶äø­åæƒ'),
(102607, 84357, 'en', 'name', 'National Registry of Exonerations'),
(102608, 84358, 'en', 'name', 'Kyiv City Clinical Oncology Center'),
(102609, 84359, 'nl', 'name', 'Bravis Ziekenhuis'),
(102610, 84360, 'no_lang_code', 'name', 'Celldex Therapeutics (United States)'),
(102611, 84361, 'en', 'name', 'Beaufort Lagoon Ecosystems Long Term Ecological Research Network'),
(102612, 84362, 'en', 'name', 'Harvard Global Health Institute'),
(102613, 84363, 'fr', 'name', 'Association FranƧaise du Syndrome d''Ondine'),
(102614, 84364, 'no_lang_code', 'name', 'BuiltWith'),
(102615, 84365, 'no_lang_code', 'name', 'Geistlich Pharma (Switzerland)'),
(102616, 84366, 'en', 'name', 'Wheaton College - Massachusetts'),
(102617, 84367, 'en', 'name', 'Wildlife Science Center'),
(102618, 84368, 'no_lang_code', 'name', 'ConMed (United States)'),
(102619, 84369, 'en', 'name', 'Sanno Medical Center'),
(102620, 84370, 'en', 'name', 'Statistics New Zealand'),
(102621, 84370, 'mi', 'name', 'Tatauranga Aotearoa'),
(102622, 84371, 'no_lang_code', 'name', 'Kologrivsky Nature Reserve'),
(102623, 84371, 'ru', 'name', 'ŠšŠ¾Š»Š¾Š³Ń€ŠøŠ²ŃŠŗŠøŠ¹ лес заповеГник'),
(102624, 84372, 'no_lang_code', 'name', 'PCL Health (United Kingdom)'),
(102625, 84373, 'en', 'name', 'ERN GUARD-Heart'),
(102626, 84374, 'en', 'name', 'Ministry of Economy, Trade and Industry'),
(102627, 84374, 'ja', 'name', 'ēµŒęøˆē”£ę„­ēœ'),
(102628, 84375, 'en', 'name', 'Crop Protection Network'),
(102629, 84376, 'pt', 'name', 'Fundação Hospitalar de Hematologia e Hemoterapia do Amazonas'),
(102630, 84377, 'pl', 'name', 'Polskie Towarzystwo Gastroenterologii'),
(102631, 84378, 'en', 'name', 'Hawaii Medical Service Association'),
(102632, 84379, 'en', 'name', 'Urban Emissions Info'),
(102633, 84380, 'ca', 'name', 'Parc Sanitari Pere Virgili'),
(102634, 84380, 'es', 'name', 'Parque Sanitario Pere Virgili'),
(102635, 84381, 'no_lang_code', 'name', 'Nference (United States)'),
(102636, 84382, 'en', 'name', 'Arkansas Department of Agriculture'),
(102637, 84383, 'en', 'name', 'Poplar Creek Public Library District'),
(102638, 84384, 'ar', 'name', 'لمعاهد Ų§Ł„Ų¹Ł„ŁŠŲ§ ŲØŁƒŁŠŁ†Ų¬ Ł…Ų±ŁŠŁˆŲ·'),
(102639, 84384, 'en', 'name', 'Higher Institute of Engineering and Technology - King Marriott'),
(102640, 84385, 'en', 'name', 'Worldwide Veterinary Service'),
(102641, 84386, 'en', 'name', 'John H. Stroger, Jr. Hospital of Cook County'),
(102642, 84387, 'no_lang_code', 'name', 'Verastem (United States)'),
(102643, 84388, 'en', 'name', 'Harasanshin Hospital'),
(102644, 84388, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåŽŸäø‰äæ”ē—…é™¢'),
(102645, 84389, 'en', 'name', 'Fox Chase Cancer Center'),
(102646, 84390, 'pt', 'name', 'UniBrasil Centro UniversitƔrio'),
(102647, 84391, 'en', 'name', 'China Women''s University'),
(102648, 84391, 'zh', 'name', 'äø­åŽå„³å­å­¦é™¢'),
(102649, 84392, 'en', 'name', 'Birmingham Women’s and Children’s NHS Foundation Trust'),
(102650, 84393, 'en', 'name', 'Centre for Excellence in Mining Innovation'),
(102651, 84394, 'en', 'name', 'Japan Link Center'),
(102652, 84394, 'ja', 'name', 'ć‚øćƒ£ćƒ‘ćƒ³ćƒŖćƒ³ć‚Æć‚»ćƒ³ć‚æ'),
(102653, 84395, 'en', 'name', 'Dominican University of California'),
(102654, 84396, 'en', 'name', 'National Peanut Research Laboratory'),
(102655, 84397, 'en', 'name', 'Qilu Hospital of Shandong University'),
(102656, 84398, 'en', 'name', 'Canadian Philosophical Association'),
(102657, 84398, 'fr', 'name', 'L''Association Canadienne de Philosophie'),
(102658, 84399, 'no_lang_code', 'name', 'Comsol (United Kingdom)'),
(102659, 84400, 'en', 'name', 'Mortimer Market Centre'),
(102660, 84401, 'en', 'name', 'GO FAIR Foundation'),
(102661, 84401, 'nl', 'name', 'Stichting GO FAIR'),
(102662, 84402, 'no_lang_code', 'name', 'Helix (United States)'),
(102663, 84403, 'en', 'name', 'Jewish General Hospital'),
(102664, 84403, 'fr', 'name', 'HƓpital gƩnƩral juif'),
(102665, 84404, 'no_lang_code', 'name', 'PTT Public Company Limited (Thailand)'),
(102666, 84404, 'th', 'name', 'ปตท'),
(102667, 84405, 'fr', 'name', 'CATI'),
(102668, 84406, 'de', 'name', 'Europäische Behörde für Lebensmittelsicherheit'),
(102669, 84406, 'en', 'name', 'European Food Safety Authority'),
(102670, 84406, 'fr', 'name', 'AutoritƩ EuropƩenne de SƩcuritƩ des Aliments'),
(102671, 84406, 'it', 'name', 'AutoritĆ  Europea per la Sicurezza Alimentare'),
(102672, 84407, 'en', 'name', 'Lake Macquarie Private Hospital'),
(102673, 84408, 'en', 'name', 'American Association for Respiratory Care'),
(102674, 84409, 'no_lang_code', 'name', 'Volcanic Basin Petroleum Research (Norway)'),
(102675, 84410, 'no_lang_code', 'name', 'Sandfire (Australia)'),
(102676, 84411, 'en', 'name', 'Kokura Memorial Hospital'),
(102677, 84411, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¹³ęˆē“«å·ä¼šå°å€‰čØ˜åæµē—…é™¢'),
(102678, 84412, 'en', 'name', 'Naval University of Engineering'),
(102679, 84412, 'zh', 'name', '中国人民解放军海军巄程大学'),
(102680, 84413, 'de', 'name', 'Institut für Pharmaökonomische Forschung'),
(102681, 84413, 'en', 'name', 'Institute for Pharmaeconomic Research'),
(102682, 84414, 'en', 'name', 'International Pole and Line Foundation'),
(102683, 84415, 'en', 'name', 'ClimateWorks Foundation'),
(102684, 84416, 'en', 'name', 'DonorConnect'),
(102685, 84417, 'en', 'name', 'American Automatic Control Council'),
(102686, 84418, 'no_lang_code', 'name', 'Amedes Genetics (Germany)'),
(102687, 84419, 'en', 'name', 'Temasek Life Sciences Laboratory'),
(102688, 84420, 'en', 'name', 'Henry Moore Foundation'),
(102689, 84421, 'en', 'name', 'Grand Council of the Crees'),
(102690, 84422, 'en', 'name', 'Henan Institute of Science and Technology'),
(102691, 84423, 'en', 'name', 'Skin Research Center'),
(102692, 84424, 'en', 'name', 'Tsukuba University of Technology'),
(102693, 84424, 'ja', 'name', 'ē­‘ę³¢ęŠ€č”“å¤§å­¦'),
(102694, 84425, 'no_lang_code', 'name', 'Shanghai Model Organisms (China)'),
(102695, 84425, 'zh', 'name', 'äøŠęµ·å—ę–¹ęØ”å¼ē”Ÿē‰©ē ”ē©¶äø­åæƒ'),
(102696, 84426, 'en', 'name', 'National Eye Centre'),
(102697, 84427, 'fr', 'name', 'Fondation VallƩe'),
(102698, 84428, 'no_lang_code', 'name', 'Gen-info'),
(102699, 84429, 'bi', 'name', 'Vanuatu Kaljoral Senta'),
(102700, 84429, 'fr', 'name', 'Centre Culturel du Vanuatu, Vanuatu Cultural Centre'),
(102701, 84430, 'en', 'name', 'Kurume Shin-Ai Women''s College'),
(102702, 84430, 'ja', 'name', 'ä¹…ē•™ē±³äæ”ę„›ēŸ­ęœŸå¤§å­¦'),
(102703, 84431, 'en', 'name', 'Safe Work Australia'),
(102704, 84432, 'fr', 'name', 'Groupe de Recherche sur le Psoriasis'),
(102705, 84433, 'nl', 'name', 'Groene Hart Ziekenhuis'),
(102706, 84434, 'bn', 'name', 'অসম ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(102707, 84434, 'en', 'name', 'Assam Agricultural University'),
(102708, 84434, 'hi', 'name', 'असम ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(102709, 84435, 'en', 'name', 'Erasmus MC Transplant Institute'),
(102710, 84435, 'nl', 'name', 'Erasmus MC Transplantatie Instituut'),
(102711, 84436, 'en', 'name', 'Geisinger Neuroscience Institute'),
(102712, 84437, 'en', 'name', 'Invest in Open Infrastructure'),
(102713, 84438, 'en', 'name', 'Icelandic Fisheries Laboratories'),
(102714, 84439, 'no_lang_code', 'name', 'BML Munjal University'),
(102715, 84440, 'es', 'name', 'Observatorio Nacional de las Telecomunicaciones y de la Sociedad de la Información'),
(102716, 84441, 'no_lang_code', 'name', 'PIVOT'),
(102717, 84442, 'no_lang_code', 'name', 'Statistical Research (United States)'),
(102718, 84443, 'en', 'name', 'Kenya Bureau of Standards'),
(102719, 84444, 'en', 'name', 'Walloon Heritage Agency'),
(102720, 84444, 'fr', 'name', 'Agence Wallonne du Patrimoine'),
(102721, 84445, 'no_lang_code', 'name', 'Centrica (United Kingdom)'),
(102722, 84446, 'en', 'name', 'Shenzhen Stock Exchange'),
(102723, 84447, 'en', 'name', 'University Museum Utrecht'),
(102724, 84447, 'nl', 'name', 'Universiteitsmuseum Utrecht'),
(102725, 84448, 'en', 'name', 'Florida Department of Agriculture and Consumer Services'),
(102726, 84449, 'en', 'name', 'Research Institute of Ukrainian Studies'),
(102727, 84449, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠŗŃ€Š°Ń—Š½Š¾Š·Š½Š°Š²ŃŃ‚Š²Š° ŠœŠžŠ України'),
(102728, 84450, 'en', 'name', 'National Rehabilitation Center for Persons with Disabilities'),
(102729, 84450, 'ja', 'name', 'åŽšē”ŸåŠ“åƒēœå›½ē«‹éšœå®³č€…ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(102730, 84451, 'en', 'name', 'Central Military Commission'),
(102731, 84451, 'zh', 'name', 'äø­å¤®å†›äŗ‹å§”å‘˜ä¼š'),
(102732, 84452, 'en', 'name', 'Bhagwan Mahaveer Jain Hospital'),
(102733, 84453, 'en', 'name', 'FHU Neurovasc'),
(102734, 84454, 'en', 'name', 'Al-Ihya Islamic University of Kuningan'),
(102735, 84454, 'id', 'name', 'Universitas Islam Al-Ihya Kuningan'),
(102736, 84455, 'en', 'name', 'Military Technical Institute'),
(102737, 84455, 'sr', 'name', 'Vojnotehnički Institut Beograd'),
(102738, 84456, 'en', 'name', 'Geochemical Society'),
(102739, 84457, 'en', 'name', 'Jornada Basin Long Term Ecological Research'),
(102740, 84458, 'en', 'name', 'National Institute of Technology, Oita College'),
(102741, 84458, 'ja', 'name', 'å¤§åˆ†ēœŒē«‹å¤§åˆ†é«˜ē­‰ęŠ€č”“å°‚é–€ę ”'),
(102742, 84459, 'en', 'name', 'St Catherine''s Health Centre'),
(102743, 84460, 'en', 'name', 'Harvard Forest Long Term Ecological Research'),
(102744, 84461, 'en', 'name', 'Asthma and Allergy Foundation of America'),
(102745, 84462, 'en', 'name', 'Toyo University'),
(102746, 84462, 'ja', 'name', 'ę±ę“‹å¤§å­¦'),
(102747, 84463, 'el', 'name', 'ΙΑΣΩ ΠαίΓων'),
(102748, 84463, 'en', 'name', 'Iaso Children’s Hospital'),
(102749, 84464, 'no_lang_code', 'name', 'Simplex Manufacturing (United States)'),
(102750, 84465, 'de', 'name', 'Leibniz-Institut für Europäische Geschichte'),
(102751, 84465, 'en', 'name', 'Leibniz Institute of European History'),
(102752, 84466, 'en', 'name', 'Japan Fine Ceramics Center'),
(102753, 84466, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ•ć‚”ć‚¤ćƒ³ć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(102754, 84467, 'en', 'name', 'TissuPath'),
(102755, 84468, 'en', 'name', 'Institute of Environmental Economics and Sustainable Development of the National Academy of Sciences of Ukraine'),
(102756, 84468, 'ru', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економіки ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń та сталого Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України»');
INSERT INTO `ror_settings` VALUES
(102757, 84469, 'no_lang_code', 'name', 'Pfizer (Canada)'),
(102758, 84470, 'en', 'name', 'Chilean Air Force'),
(102759, 84470, 'es', 'name', 'Fuerza AƩrea de Chile'),
(102760, 84471, 'en', 'name', 'Tenwek Hospital'),
(102761, 84472, 'de', 'name', 'Forschungsverbund Berlin'),
(102762, 84473, 'en', 'name', 'Donbas State Pedagogical University'),
(102763, 84473, 'uk', 'name', 'Š”Š¾Š½Š±Š°ŃŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(102764, 84474, 'no_lang_code', 'name', 'Siemens (Germany)'),
(102765, 84475, 'no_lang_code', 'name', 'Genecast (China)'),
(102766, 84475, 'zh', 'name', 'č‡»å’Œē§‘ęŠ€'),
(102767, 84476, 'en', 'name', 'Chung Shan Medical University'),
(102768, 84477, 'da', 'name', 'Muskelsvindfonden'),
(102769, 84477, 'en', 'name', 'Muscular Dystrophy Foundation'),
(102770, 84478, 'en', 'name', 'Little Sosva Nature Reserve'),
(102771, 84478, 'ru', 'name', 'ŠœŠ°Š»Š°Ń Досьва заповеГник'),
(102772, 84479, 'no_lang_code', 'name', 'Celavie Biosciences (United States)'),
(102773, 84480, 'en', 'name', 'Kawasaki Medical School'),
(102774, 84480, 'ja', 'name', 'å·å“ŽåŒ»ē§‘å¤§å­¦'),
(102775, 84481, 'en', 'name', 'The Queen''s Medical Research Institute'),
(102776, 84482, 'no_lang_code', 'name', 'Materia Nova'),
(102777, 84483, 'en', 'name', 'Institute of Technology and Business'),
(102778, 84483, 'ru', 'name', 'Техническо-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ в г. Чешские Š‘ŃƒŠ“ŠµŠ¹Š¾Š²ŠøŃ†Šµ'),
(102779, 84483, 'sk', 'name', 'VysokÔ Ŕkola technickÔ a ekonomickÔ'),
(102780, 84484, 'it', 'name', 'Azienda Usl Toscana Centro'),
(102781, 84485, 'en', 'name', 'Weston A. Price Foundation'),
(102782, 84486, 'en', 'name', 'Hubei Engineering University'),
(102783, 84486, 'zh', 'name', 'ę¹–åŒ—å·„ēØ‹å¤§å­¦'),
(102784, 84487, 'en', 'name', 'VSL Dutch Metrology Institute'),
(102785, 84487, 'nl', 'name', 'VSL Nationaal Metrologisch Instituut'),
(102786, 84488, 'en', 'name', 'Nepal Agricultural Research Council'),
(102787, 84488, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø परिषद'),
(102788, 84489, 'en', 'name', 'State Agricultural Academy of Velikie Luki'),
(102789, 84489, 'ru', 'name', 'Š’ŠµŠ»ŠøŠŗŠ¾Š»ŃƒŠŗŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(102790, 84490, 'ja', 'name', 'ćƒć‚¤ć‚Øćƒ«č–¬å“ę Ŗå¼ä¼šē¤¾'),
(102791, 84490, 'no_lang_code', 'name', 'Bayer (Japan)'),
(102792, 84491, 'fr', 'name', 'L''Alliance Boviteq'),
(102793, 84492, 'en', 'name', 'Health and Human Development (2HD) Research Network'),
(102794, 84493, 'ja', 'name', 'äøäŗŒč£½ę²¹ę Ŗå¼ä¼šē¤¾'),
(102795, 84493, 'no_lang_code', 'name', 'Fuji Oil (Japan)'),
(102796, 84494, 'en', 'name', 'Plymouth Marine Laboratory'),
(102797, 84495, 'en', 'name', 'Geological Survey of Slovenia'),
(102798, 84495, 'sl', 'name', 'GeoloŔki zavod Slovenije'),
(102799, 84496, 'en', 'name', 'Kazan State University of Architecture and Engineering'),
(102800, 84496, 'ru', 'name', 'Казанский Š³Š¾ŃŃƒŠ“арственный Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-инженерный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(102801, 84497, 'fr', 'name', 'MusƩes de la Ville de Strasbourg'),
(102802, 84498, 'en', 'name', 'Africa Academy for Public Health'),
(102803, 84499, 'no_lang_code', 'name', 'Crown Estate (United Kingdom)'),
(102804, 84500, 'no_lang_code', 'name', 'Ohana Biosciences (United States)'),
(102805, 84501, 'no_lang_code', 'name', 'PRT Growing Services (Canada)'),
(102806, 84502, 'nl', 'name', 'Ziekenhuis Bernhoven'),
(102807, 84503, 'en', 'name', 'Chemicals Evaluation and Research Institute'),
(102808, 84503, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ–å­¦ē‰©č³Ŗč©•ä¾”ē ”ē©¶ę©Ÿę§‹'),
(102809, 84504, 'no_lang_code', 'name', 'CISI IngƩnierie (France)'),
(102810, 84505, 'en', 'name', 'CPM Academy of Business'),
(102811, 84505, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ бизнеса'),
(102812, 84506, 'no_lang_code', 'name', 'Olnica (France)'),
(102813, 84507, 'en', 'name', 'Doaba College'),
(102814, 84508, 'en', 'name', 'Vel Tech Rangarajan Dr. Sagunthala R&D Institute of Science and Technology'),
(102815, 84509, 'en', 'name', 'European Crohn''s and Colitis Organisation'),
(102816, 84510, 'en', 'name', 'NIHR CRUK Experimental Cancer Medicine Centre'),
(102817, 84511, 'en', 'name', 'Canola Council of Canada'),
(102818, 84512, 'no_lang_code', 'name', 'Paveprime'),
(102819, 84513, 'no_lang_code', 'name', 'Masimo (United States)'),
(102820, 84514, 'en', 'name', 'Norwegian Space Agency'),
(102821, 84514, 'fi', 'name', 'Norjan avaruuskeskus'),
(102822, 84515, 'en', 'name', 'VIB - International Plant Biotechnology Outreach'),
(102823, 84516, 'es', 'name', 'Universidad de AysƩn'),
(102824, 84517, 'en', 'name', 'Invasive Plant Research Laboratory'),
(102825, 84518, 'ja', 'name', 'ć‚ć‹ć‚‚ćØč£½č–¬ę Ŗå¼ä¼šē¤¾'),
(102826, 84518, 'no_lang_code', 'name', 'Wakamoto Pharmaceutical (Japan)'),
(102827, 84519, 'en', 'name', 'European College of Neuropsychopharmacology'),
(102828, 84520, 'en', 'name', 'Federal Agency for Scientific Organizations'),
(102829, 84520, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ агентство Š½Š°ŃƒŃ‡Š½Ń‹Ń… организаций'),
(102830, 84521, 'en', 'name', 'South Dakota Science and Technology Authority'),
(102831, 84522, 'en', 'name', 'Frankfurt Cancer Institute'),
(102832, 84523, 'en', 'name', 'Baylor Genetics'),
(102833, 84524, 'en', 'name', 'Musashino Red Cross Hospital'),
(102834, 84524, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾ę­¦č”µé‡Žčµ¤åå­—ē—…é™¢'),
(102835, 84525, 'en', 'name', 'Togolese Ministry of Health'),
(102836, 84526, 'no_lang_code', 'name', 'NetApp (United States)'),
(102837, 84527, 'en', 'name', 'British Society of Soil Science'),
(102838, 84528, 'no_lang_code', 'name', 'BTG International (United Kingdom)'),
(102839, 84529, 'en', 'name', 'Virginia Sea Grant'),
(102840, 84530, 'en', 'name', 'International Institute of Tropical Agriculture'),
(102841, 84530, 'fr', 'name', 'Institut International d''Agriculture Tropicale'),
(102842, 84531, 'ja', 'name', 'ę—„ęœ¬åŒ–č–¬ę Ŗå¼ä¼šē¤¾'),
(102843, 84531, 'no_lang_code', 'name', 'Nippon Kayaku (Japan)'),
(102844, 84532, 'en', 'name', 'Daegu-Gyeongbuk Medical Innovation Foundation'),
(102845, 84532, 'ko', 'name', 'Daegu-Gyeongbuk Advanced Medical Industry Promotion Foundation'),
(102846, 84533, 'en', 'name', 'State Scientific Institution "Institute of Education Content Modernization"'),
(102847, 84533, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ моГернізації Š·Š¼Ń–ŃŃ‚Ńƒ освіти'),
(102848, 84534, 'no_lang_code', 'name', 'Ansys (United States)'),
(102849, 84535, 'en', 'name', 'Roosevelt Institute for American Studies'),
(102850, 84536, 'fr', 'name', 'Centre Hospitalier Universitaire de Saint-Pierre'),
(102851, 84537, 'en', 'name', 'Burman University'),
(102852, 84538, 'en', 'name', 'U.S. Vegetable Laboratory'),
(102853, 84539, 'en', 'name', 'NextFlex'),
(102854, 84540, 'en', 'name', 'Vancouver Spine Surgery Institute'),
(102855, 84541, 'ja', 'name', 'å¤§ę±ę–‡åŒ–å¤§å­¦'),
(102856, 84541, 'no_lang_code', 'name', 'Daito Bunka University'),
(102857, 84542, 'no_lang_code', 'name', 'GIRD Systems (United States)'),
(102858, 84543, 'en', 'name', 'University Hospitals of Morecambe Bay NHS Foundation Trust'),
(102859, 84544, 'no_lang_code', 'name', 'Tieto (Finland)'),
(102860, 84545, 'de', 'name', 'Deutsche Gesellschaft für Erziehungswissenschaft'),
(102861, 84546, 'en', 'name', 'Caspian University'),
(102862, 84546, 'kk', 'name', 'Каспий Университеті'),
(102863, 84547, 'en', 'name', 'Middlebury Institute of International Studies at Monterey'),
(102864, 84548, 'en', 'name', 'American Medical Society for Sports Medicine'),
(102865, 84549, 'en', 'name', 'Institute of Applied Biochemistry'),
(102866, 84549, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåæœē”Øē”ŸåŒ–å­¦ē ”ē©¶ę‰€'),
(102867, 84550, 'nl', 'name', 'Spaarne Gasthuis'),
(102868, 84551, 'no_lang_code', 'name', 'Neurocrine Biosciences (United States)'),
(102869, 84552, 'en', 'name', 'Global Health Literacy Academy'),
(102870, 84553, 'no_lang_code', 'name', 'Rhodium Group (United States)'),
(102871, 84554, 'no_lang_code', 'name', 'Antares Pharma (United States)'),
(102872, 84555, 'en', 'name', 'RIKEN BNL Research Center'),
(102873, 84556, 'en', 'name', 'Population Council Institute'),
(102874, 84557, 'no_lang_code', 'name', 'Osprey Medical (United States)'),
(102875, 84558, 'en', 'name', 'Bapuji Institute of Engineering and Technology'),
(102876, 84559, 'en', 'name', 'Spokane Public Library'),
(102877, 84560, 'en', 'name', 'American Society for Legal History'),
(102878, 84561, 'id', 'name', 'Institut Kesehatan Medistra Lubuk Pakam'),
(102879, 84562, 'no_lang_code', 'name', 'Jupiter (United States)'),
(102880, 84563, 'en', 'name', 'BioMed X Institute'),
(102881, 84564, 'en', 'name', 'Center for Special Minimally Invasive and Robotic Surgery'),
(102882, 84565, 'nl', 'name', 'GGD Hart voor Brabant, Gemeentelijke gezondheidsdienst Hart voor Brabant'),
(102883, 84566, 'no_lang_code', 'name', 'Austrian Drug Screening Institute (Austria)'),
(102884, 84567, 'ja', 'name', 'é˜Ŗę€„é˜Ŗē„žćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(102885, 84567, 'no_lang_code', 'name', 'Hankyu Hanshin Holdings (Japan)'),
(102886, 84568, 'en', 'name', 'Central Research Institute for Dryland Agriculture'),
(102887, 84568, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¶ą„ą¤·ą„ą¤• ą¤­ą„‚ą¤®ą¤æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(102888, 84569, 'en', 'name', 'National University of Technology'),
(102889, 84570, 'no_lang_code', 'name', 'Middleton Spectral Vision (United States)'),
(102890, 84571, 'es', 'name', 'IREC, Institut de Recerques Envers la Cultura'),
(102891, 84572, 'en', 'name', 'University of Zanjan'),
(102892, 84572, 'fa', 'name', 'دانؓگاه زنجان'),
(102893, 84573, 'en', 'name', 'Centre of Molecular and Macromolecular Studies'),
(102894, 84573, 'pl', 'name', 'Centrum Badań Molekularnych i Makromolekularnych Polskiej Akademii Nauk'),
(102895, 84574, 'en', 'name', 'International Center for Advanced Studies'),
(102896, 84575, 'nl', 'name', 'Ziekenhuis Amstelland'),
(102897, 84576, 'en', 'name', 'Woodland Trust'),
(102898, 84577, 'en', 'name', 'California Energy Commission'),
(102899, 84578, 'en', 'name', 'Taraclia State University'),
(102900, 84578, 'ro', 'name', 'Universitatea de Stat ā€žGrigore Țamblacā€ din Taraclia'),
(102901, 84579, 'no_lang_code', 'name', 'TerraRad Tech (Switzerland)'),
(102902, 84580, 'en', 'name', 'Autry National Center'),
(102903, 84581, 'en', 'name', 'FX Palo Alto Laboratory'),
(102904, 84582, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ عبدالله للطاقة Ų§Ł„Ų°Ų±ŁŠŲ© ŁˆŲ§Ł„Ł…ŲŖŲ¬ŲÆŲÆŲ©'),
(102905, 84582, 'en', 'name', 'King Abdullah City for Atomic and Renewable Energy'),
(102906, 84583, 'en', 'name', 'Siliwangi University'),
(102907, 84583, 'id', 'name', 'Universitas Siliwangi'),
(102908, 84584, 'ja', 'name', 'ę±ć‚½ćƒ¼ę Ŗå¼ä¼šē¤¾'),
(102909, 84584, 'no_lang_code', 'name', 'Tosoh (Japan)'),
(102910, 84585, 'en', 'name', 'Institute for Environment and Human Security'),
(102911, 84586, 'en', 'name', 'Vascular Institute of New York'),
(102912, 84587, 'de', 'name', 'Leibniz-WissenschaftsCampus Primatenkognition'),
(102913, 84587, 'en', 'name', 'Leibniz ScienceCampus Primate Cognition'),
(102914, 84588, 'en', 'name', 'University of Applied Sciences and Arts of Southern Switzerland'),
(102915, 84588, 'it', 'name', 'Scuola Universitaria Professionale della Svizzera Italiana'),
(102916, 84589, 'en', 'name', 'ProHealth Oconomowoc Memorial Hospital'),
(102917, 84590, 'en', 'name', 'V.I. Vernadsky Crimean Federal University'),
(102918, 84590, 'ru', 'name', 'ŠšŃ€Ń‹Š¼ŃŠŗŠøŠ¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’.И. ВернаГского'),
(102919, 84591, 'es', 'name', 'Centro de Investigaciones CientifĆ­cas de las Huastecas ''Aguazarca'''),
(102920, 84592, 'no_lang_code', 'name', 'Riverside Technology (United States)'),
(102921, 84593, 'en', 'name', 'Auburn University at Montgomery'),
(102922, 84594, 'en', 'name', 'Duy Tan University'),
(102923, 84594, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Duy TĆ¢n'),
(102924, 84595, 'no_lang_code', 'name', 'Water-link (Belgium)'),
(102925, 84596, 'en', 'name', 'National AIDS Control Organisation'),
(102926, 84596, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤ą¤”ą„ą¤ø ą¤Øą¤æą¤Æą¤‚ą¤¤ą„ą¤°ą¤£ संगठन'),
(102927, 84597, 'en', 'name', 'National Geological Archives of China'),
(102928, 84597, 'zh', 'name', 'å…Øå›½åœ°č“Øčµ„ę–™é¦†'),
(102929, 84598, 'en', 'name', 'Whittle School & Studios'),
(102930, 84599, 'fr', 'name', 'Institut Agronomique et VƩtƩrinaire Hassan II'),
(102931, 84600, 'nl', 'name', 'KU Leuven, Katholieke Universiteit Leuven'),
(102932, 84601, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚Øćƒ³ćƒ—ćƒ©ć‚¹'),
(102933, 84601, 'no_lang_code', 'name', 'Enplas (Japan)'),
(102934, 84602, 'en', 'name', 'Showa Inan General Hospital'),
(102935, 84602, 'ja', 'name', 'ę˜­å’Œä¼Šå—ē·åˆē—…é™¢'),
(102936, 84603, 'en', 'name', 'Vinkovci Municipal Museum'),
(102937, 84603, 'hr', 'name', 'Gradski muzej Vinkovci'),
(102938, 84604, 'no_lang_code', 'name', 'Nutreco (Netherlands)'),
(102939, 84605, 'en', 'name', 'Center for Disease Dynamics, Economics and Policy'),
(102940, 84606, 'el', 'name', '"Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼Ī¹Ī±ĪŗĪ­Ļ‚ Ī•ĪŗĪ“ĻŒĻƒĪµĪ¹Ļ‚ ĪšĻĪ®Ļ„Ī·Ļ‚ "'),
(102941, 84606, 'en', 'name', 'Crete University Press'),
(102942, 84607, 'en', 'name', 'Coalition of Northeastern Governors'),
(102943, 84608, 'no_lang_code', 'name', 'Forschungs- und Entwicklungszentrum Fachhochschule Kiel (Germany)'),
(102944, 84609, 'en', 'name', 'Kyushu Kyoritsu University'),
(102945, 84609, 'ja', 'name', 'ä¹å·žå…±ē«‹å¤§å­¦'),
(102946, 84610, 'en', 'name', 'ILMA University'),
(102947, 84610, 'ur', 'name', 'علما ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(102948, 84611, 'en', 'name', 'Youth Research and Evaluation eXchange'),
(102949, 84612, 'en', 'name', 'Sussex Partnership NHS Foundation Trust'),
(102950, 84613, 'ja', 'name', 'ē†ęƒ³ē§‘å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(102951, 84613, 'no_lang_code', 'name', 'Riso Kagaku (Japan)'),
(102952, 84614, 'de', 'name', 'Stiftung Wissenschaft und Politik, Deutsches Institut für Internationale Politik und Sicherheit'),
(102953, 84614, 'no_lang_code', 'name', 'Stiftung Wissenschaft und Politik, German Institute for International and Security Affairs'),
(102954, 84615, 'en', 'name', 'Binzhou University'),
(102955, 84615, 'zh', 'name', 'ę»Øå·žå­¦é™¢'),
(102956, 84616, 'no_lang_code', 'name', 'Axpo (Switzerland)'),
(102957, 84617, 'en', 'name', 'Sanin Rosai Hospital'),
(102958, 84617, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹å±±é™°åŠ“ē½ē—…é™¢'),
(102959, 84618, 'en', 'name', 'Siberian Federal University'),
(102960, 84618, 'ru', 'name', 'Дибирский Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(102961, 84619, 'no_lang_code', 'name', 'Astex Pharmaceuticals'),
(102962, 84620, 'no_lang_code', 'name', 'Dynamita (France)'),
(102963, 84621, 'en', 'name', 'Manchester City Football Club'),
(102964, 84622, 'en', 'name', 'Parks and Wildlife Commission of the Northern Territory'),
(102965, 84623, 'en', 'name', 'Kawasaki Medical School Hospital'),
(102966, 84623, 'ja', 'name', 'å·å“ŽåŒ»ē§‘å¤§å­¦é™„å±žē—…é™¢'),
(102967, 84624, 'es', 'name', 'Universidad Nacional De CaaguazĆŗ'),
(102968, 84625, 'en', 'name', 'Autonomous University of Sinaloa'),
(102969, 84625, 'es', 'name', 'Universidad Autónoma de Sinaloa'),
(102970, 84626, 'en', 'name', 'European Association of Cardiothoracic Anaesthesiology'),
(102971, 84627, 'ko', 'name', 'ķ•œģ§„ģ¤‘ź³µģ—…'),
(102972, 84627, 'no_lang_code', 'name', 'Hanjin Heavy Industries (South Korea)'),
(102973, 84628, 'en', 'name', 'Changshu Institute of Technology'),
(102974, 84628, 'zh', 'name', 'åøøē†Ÿē†å·„å­¦é™¢'),
(102975, 84629, 'it', 'name', 'Azienda Sanitaria Universitaria Integrata di Trieste'),
(102976, 84630, 'no_lang_code', 'name', 'Dynamic Biosensors (Germany)'),
(102977, 84631, 'no_lang_code', 'name', 'OrbusNeich (China)'),
(102978, 84632, 'no_lang_code', 'name', 'Aker BP (Norway)'),
(102979, 84633, 'en', 'name', 'Pakistan Academy of Sciences'),
(102980, 84633, 'ur', 'name', 'پاکستان اكيڈ مى ﺁف سائنسز'),
(102981, 84634, 'am', 'name', 'į‰ įŠ įˆ›įˆ« į‰„įˆ”įˆ«į‹Š įŠ­įˆįˆ‹į‹Š įˆ˜įŠ•įŒįˆµį‰µ į‹Øįˆ•į‰„įˆØį‰°įˆ°į‰„ įŒ¤įŠ“ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(102982, 84634, 'en', 'name', 'Amhara National Regional State Public Health Institute'),
(102983, 84635, 'en', 'name', 'Doha Institute for Graduate Studies'),
(102984, 84635, 'fa', 'name', 'معهد Ų§Ł„ŲÆŁˆŲ­Ų© للدراسات Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł…Ų¤Ų³Ų³Ų© Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(102985, 84636, 'ja', 'name', 'ę±äŗ¬ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ³'),
(102986, 84636, 'no_lang_code', 'name', 'Tokyo Electron (Japan)'),
(102987, 84637, 'fr', 'name', 'Société Francophone du Diabète'),
(102988, 84638, 'bg', 'name', 'Дократес'),
(102989, 84638, 'en', 'name', 'Docrates Cancer Center'),
(102990, 84638, 'fi', 'name', 'Docrates SyƶpƤsairaala'),
(102991, 84638, 'sv', 'name', 'Docrates Cancersjukhus'),
(102992, 84639, 'en', 'name', 'Vladivostok Branch of the Russian Customs Academy'),
(102993, 84639, 'ru', 'name', 'ВлаГивостокский филиал Российской таможенной акаГемии'),
(102994, 84640, 'ja', 'name', 'ć‚»ć‚³ćƒ ę Ŗå¼ä¼šē¤¾'),
(102995, 84640, 'no_lang_code', 'name', 'Secom (Japan)'),
(102996, 84641, 'en', 'name', 'Tra Vinh University'),
(102997, 84641, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c TrĆ  Vinh'),
(102998, 84642, 'en', 'name', 'Allergy Partners of Lynchburg'),
(102999, 84643, 'no_lang_code', 'name', 'Guru Nanak Dev University'),
(103000, 84643, 'pa', 'name', 'ਗੁਰੂ ਨਾਨਕ ਦੇਵ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(103001, 84644, 'no_lang_code', 'name', 'Menarini Group (Germany)'),
(103002, 84645, 'en', 'name', 'Melbourne Bioinformatics'),
(103003, 84646, 'en', 'name', 'Nepalese Army Institute of Health Services'),
(103004, 84646, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤²ą„€ ą¤øą„‡ą¤Øą¤¾ ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(103005, 84647, 'id', 'name', 'Universitas Riau Kepulauan'),
(103006, 84648, 'en', 'name', 'Deenbandhu Chhotu Ram University of Science and Technology'),
(103007, 84648, 'hi', 'name', 'ą¤¦ą„€ą¤Øą¤¬ą¤‚ą¤§ą„ ą¤›ą„‹ą¤Ÿą„‚ राम ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ साइंस ą¤ą¤‚ą¤” ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(103008, 84649, 'no_lang_code', 'name', 'Omiics (Denmark)'),
(103009, 84650, 'en', 'name', 'Australian Veterinary Association'),
(103010, 84651, 'en', 'name', 'Digital Health Research Unit'),
(103011, 84651, 'es', 'name', 'Unidad de Investigación en Salud Digital'),
(103012, 84652, 'en', 'name', 'Howard University'),
(103013, 84652, 'es', 'name', 'Universidad Howard'),
(103014, 84653, 'en', 'name', 'University of Bangka Belitung'),
(103015, 84653, 'id', 'name', 'Universitas Bangka Belitung'),
(103016, 84654, 'ar', 'name', 'Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ł…ŁŠŲ²Ų§ŲØ Ų§Ł„Ų±Ł‚Ł…ŁŠŲ©'),
(103017, 84654, 'no_lang_code', 'name', 'Almayzab Digital Library'),
(103018, 84655, 'fr', 'name', 'LMI Adaptation des Plantes et Microorganismes Associés aux Stress Environnementaux'),
(103019, 84656, 'no_lang_code', 'name', 'Gpack (France)'),
(103020, 84657, 'en', 'name', 'National Center for Geriatrics and Gerontology'),
(103021, 84657, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹é•·åÆæåŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103022, 84658, 'en', 'name', 'CROSS Neutron Science and Technology Center'),
(103023, 84658, 'ja', 'name', 'CROSSäø­ę€§å­ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(103024, 84659, 'de', 'name', 'Muskelzentrum/ALS Clinic'),
(103025, 84660, 'en', 'name', 'Shenzhen Nanshan Center for Chronic Disease Control'),
(103026, 84660, 'zh', 'name', 'ę·±åœ³å—å±±åŒŗę…¢ę€§ē—…é˜²ę²»é™¢'),
(103027, 84661, 'en', 'name', 'Osaka Red Cross Hospital'),
(103028, 84661, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾å¤§é˜Ŗčµ¤åå­—ē—…é™¢'),
(103029, 84662, 'en', 'name', 'Institute of Biomedical and Genetic Engineering'),
(103030, 84663, 'no_lang_code', 'name', 'Akari Therapeutics (United Kingdom)'),
(103031, 84664, 'no_lang_code', 'name', 'SDS Life Science (Sweden)'),
(103032, 84665, 'en', 'name', 'National Commission on Indigenous Peoples'),
(103033, 84665, 'tl', 'name', 'Pambansang Komisyon sa mga Katutubong Mamamayan'),
(103034, 84666, 'ja', 'name', 'ćƒˆćƒ¼ć‚¢ć‚Øć‚¤ćƒØćƒ¼'),
(103035, 84666, 'no_lang_code', 'name', 'TOA EIYO (Japan)'),
(103036, 84667, 'en', 'name', 'International Center for Research, Education and Training'),
(103037, 84668, 'en', 'name', 'Drug Policy Alliance'),
(103038, 84669, 'en', 'name', 'SRCC Children’s Hospital'),
(103039, 84670, 'en', 'name', 'Hanoi University of Industry'),
(103040, 84670, 'vi', 'name', 'ĐẔi hį»c CĆ“ng nghiệp HĆ  Nį»™i'),
(103041, 84671, 'de', 'name', 'Ferring Arzneimittel'),
(103042, 84671, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Germany)'),
(103043, 84672, 'en', 'name', 'Nizhny Tagil State Socio-Pedagogical Institute'),
(103044, 84672, 'ru', 'name', 'ŠŠøŠ¶Š½ŠµŃ‚Š°Š³ŠøŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(103045, 84673, 'en', 'name', 'Dnipro University of Technology'),
(103046, 84673, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ горный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украина'),
(103047, 84673, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° політехніка»'),
(103048, 84674, 'en', 'name', 'Santa Barbara Coastal Long Term Ecological Research'),
(103049, 84675, 'no_lang_code', 'name', 'CommuniCare Family of Companies (United States)'),
(103050, 84676, 'en', 'name', 'Foundation for Reproductive Medicine'),
(103051, 84677, 'en', 'name', 'British Sociological Association'),
(103052, 84678, 'en', 'name', 'A.T. Still University'),
(103053, 84679, 'no_lang_code', 'name', 'Lux Research (United States)'),
(103054, 84680, 'en', 'name', 'Johns Hopkins Center for Communication Programs'),
(103055, 84681, 'en', 'name', 'Niramaya Healthcare'),
(103056, 84681, 'hi', 'name', 'निरामय ą¤¹ą„‡ą¤²ą„ą¤„ą¤•ą„‡ą¤Æą¤°'),
(103057, 84682, 'no_lang_code', 'name', 'Glaceum (South Korea)'),
(103058, 84683, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ē„žé‹¼ē’°å¢ƒć‚½ćƒŖćƒ„ćƒ¼ć‚·ćƒ§ćƒ³'),
(103059, 84683, 'no_lang_code', 'name', 'Kobelco Eco-Solutions (Japan)'),
(103060, 84684, 'en', 'name', 'Alaska Pacific University'),
(103061, 84685, 'en', 'name', 'Ho Chi Minh City University of Technology and Education'),
(103062, 84685, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m Kỹ thuįŗ­t ThĆ nh phố Hồ ChĆ­ Minh'),
(103063, 84686, 'no_lang_code', 'name', 'Bermuda Institute of Ocean Sciences'),
(103064, 84687, 'en', 'name', 'State Healthcare Institution "Regional Clinical Oncological Dispensary"'),
(103065, 84688, 'en', 'name', 'Society for Women''s Health Research'),
(103066, 84689, 'en', 'name', 'Race Forward'),
(103067, 84690, 'en', 'name', 'Comprehensive Cancer Center Erlangen'),
(103068, 84691, 'en', 'name', 'Dedan Kimathi University of Technology'),
(103069, 84692, 'en', 'name', 'Edith Cowan University'),
(103070, 84693, 'no_lang_code', 'name', 'Lexical Computing'),
(103071, 84694, 'en', 'name', 'Orient-Institut Istanbul, Orient-Institute Istanbul'),
(103072, 84694, 'tr', 'name', 'Orient Enstitüsü İstanbul'),
(103073, 84695, 'en', 'name', 'University of Social Welfare and Rehabilitation Sciences'),
(103074, 84695, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… ŲØŁ‡Ų²ŪŒŲ³ŲŖŪŒ و ŲŖŁˆŲ§Ł†ŲØŲ®Ų“ŪŒ'),
(103075, 84696, 'en', 'name', 'American Society on Aging'),
(103076, 84697, 'en', 'name', 'Reproductive Biology Associates'),
(103077, 84698, 'en', 'name', 'London Centre for Neglected Tropical Disease Research'),
(103078, 84699, 'en', 'name', 'Tan Kah Kee Innovation Laboratory'),
(103079, 84699, 'zh', 'name', 'å˜‰åŗšåˆ›ę–°å®žéŖŒå®¤'),
(103080, 84700, 'no_lang_code', 'name', 'Wuyistar (China)'),
(103081, 84700, 'zh', 'name', '武夷星'),
(103082, 84701, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾LIXIL'),
(103083, 84701, 'no_lang_code', 'name', 'Lixil (Japan)'),
(103084, 84702, 'en', 'name', 'Wrocław Technology Park'),
(103085, 84702, 'pl', 'name', 'Wrocławskim Parku Technologicznym'),
(103086, 84703, 'no_lang_code', 'name', 'ConvaTec (United Kingdom)'),
(103087, 84704, 'en', 'name', 'University of Glasgow Singapore'),
(103088, 84705, 'en', 'name', 'Queen Margaret''s'),
(103089, 84706, 'en', 'name', 'State Fund for Fundamental Research of Ukraine'),
(103090, 84707, 'en', 'name', 'Dana-Farber/Boston Children''s Cancer and Blood Disorders Center'),
(103091, 84708, 'en', 'name', 'ENEA Brindisi Research Centre'),
(103092, 84708, 'it', 'name', 'ENEA Centro Ricerche Brindisi'),
(103093, 84709, 'en', 'name', 'Department of Education - Division of Bataan'),
(103094, 84710, 'en', 'name', 'Indian Institute of Space Science and Technology'),
(103095, 84710, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æą“Øąµā€ ą“‡ą“Øąµā€ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“øąµą“Ŗąµ‡ą“øąµ ą“øą“Æąµ»ą“øąµ ą“†ą“Øąµą“±ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ .'),
(103096, 84711, 'bn', 'name', 'ą¦Ŗą§ą¦°ą¦¤ą¦æą¦°ą¦•ą§ą¦·ą¦¾ গবেষণা ও ą¦‰ą¦Øą§ą¦Øą¦Æą¦¼ą¦Ø সংগঠন'),
(103097, 84711, 'en', 'name', 'Defence Research and Development Organisation'),
(103098, 84711, 'hi', 'name', 'ą¤°ą¤•ą„ą¤·ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤ą¤µą¤‚ विकास संगठन'),
(103099, 84711, 'kn', 'name', 'ą²°ą²•ą³ą²·ą²£ą²¾ ಸಂಶೋಧನೆ ವಿಕಾಸ ą²øą²‚ą²˜ą²Ÿą²Øą³†'),
(103100, 84711, 'ml', 'name', 'ą“”ą“æą“«ąµ»ą“øąµ ą“±ą“æą“øąµ‡ąµ¼ą“šąµą“šąµ ą“†ąµ»ą“”ąµ ą“”ąµ†ą“µą“²ą“Ŗąµą“®ąµ†ą“Øąµą“±ąµ ą““ąµ¼ą“—ą“Øąµˆą“øąµ‡ą“·ąµ»'),
(103101, 84711, 'mr', 'name', 'ą¤øą¤‚ą¤°ą¤•ą„ą¤·ą¤£ ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø आणि विकास ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(103102, 84711, 'ta', 'name', 'ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®³ą®°ąÆą®šąÆą®šą®æ ą®…ą®®ąÆˆą®ŖąÆą®ŖąÆ'),
(103103, 84711, 'te', 'name', 'భారత ą°°ą°•ą±ą°·ą°£ పరిశోధన ą°…ą°­ą°æą°µą±ƒą°¦ą±ą°§ą°æ ą°øą°‚ą°øą±ą°„'),
(103104, 84712, 'en', 'name', 'Institute of Food Technologists'),
(103105, 84713, 'no_lang_code', 'name', 'Cougaar Software (United States)'),
(103106, 84714, 'en', 'name', 'Fairmed'),
(103107, 84715, 'iu', 'name', 'Inuit Tapiriit Kanatami'),
(103108, 84716, 'en', 'name', 'Nagasaki University Hospital'),
(103109, 84716, 'ja', 'name', 'é•·å“Žå¤§å­¦ē—…é™¢'),
(103110, 84717, 'en', 'name', 'North Karelia Center for Public Health'),
(103111, 84717, 'fi', 'name', 'Pohjois-Karjalan Kansanterveyden Keskus'),
(103112, 84718, 'ko', 'name', 'ģ‚¼ģ¼ģ œģ•½'),
(103113, 84718, 'no_lang_code', 'name', 'Samil Pharm (South Korea)'),
(103114, 84719, 'en', 'name', 'Institute for International Studies and Training'),
(103115, 84719, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč²æę˜“ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(103116, 84720, 'en', 'name', 'American College of Foot and Ankle Surgeons'),
(103117, 84721, 'en', 'name', 'Spinoza Centre for Neuroimaging'),
(103118, 84722, 'en', 'name', 'Beijing Ditan Hospital'),
(103119, 84722, 'zh', 'name', 'åŒ—äŗ¬åœ°å›åŒ»é™¢'),
(103120, 84723, 'en', 'name', 'Simula UiB'),
(103121, 84724, 'no_lang_code', 'name', 'Sophia Genetics (Switzerland)'),
(103122, 84725, 'en', 'name', 'Gunma University Hospital'),
(103123, 84725, 'ja', 'name', 'ē¾¤é¦¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(103124, 84726, 'ja', 'name', 'ę“„ē”°é§’å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(103125, 84726, 'no_lang_code', 'name', 'Tsudakoma (Japan)'),
(103126, 84727, 'no_lang_code', 'name', 'Diamond Materials (Germany)'),
(103127, 84728, 'en', 'name', 'Clifton Hospital'),
(103128, 84729, 'es', 'name', 'Universidad Nacional de Concepción'),
(103129, 84730, 'en', 'name', 'National Institute for Implementation Research on Non-Communicable Diseases'),
(103130, 84731, 'en', 'name', 'Day Family Medicine'),
(103131, 84732, 'en', 'name', 'Korea Institute of Science and Technology'),
(103132, 84732, 'ko', 'name', 'ķ•œźµ­ź³¼ķ•™źø°ģˆ ģ—°źµ¬ģ›'),
(103133, 84733, 'en', 'name', 'Allerhand Institute'),
(103134, 84733, 'pl', 'name', 'Instytut Allerhanda'),
(103135, 84734, 'en', 'name', 'Bariloche Atomic Centre'),
(103136, 84734, 'es', 'name', 'Centro Atómico Bariloche'),
(103137, 84735, 'en', 'name', 'Kagawa Prefectural Central Hospital'),
(103138, 84735, 'ja', 'name', 'é¦™å·ēœŒē«‹äø­å¤®ē—…é™¢'),
(103139, 84736, 'en', 'name', 'Health & Safety in Sports'),
(103140, 84737, 'no_lang_code', 'name', 'Rogers (United States)'),
(103141, 84738, 'en', 'name', 'Specialized Cardiosurgical Clinical Hospital named after Academician B.A. Korolev'),
(103142, 84738, 'ru', 'name', 'Š”ŠæŠµŃ†ŠøŠ°Š»ŠøŠ·ŠøŃ€Š¾Š²Š°Š½Š½Š°Ń ŠŗŠ°Ń€Š“ŠøŠ¾Ń…ŠøŃ€ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŗŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(103143, 84739, 'en', 'name', 'Bonneville Power Administration'),
(103144, 84740, 'no_lang_code', 'name', 'Kuznetsk Alatau Nature Reserve'),
(103145, 84740, 'ru', 'name', 'ŠšŃƒŠ·Š½ŠµŃ†ŠŗŠøŠ¹ ŠŠ»Š°Ń‚Š°Ńƒ заповеГник'),
(103146, 84741, 'no_lang_code', 'name', 'FAIRMED'),
(103147, 84742, 'nl', 'name', '''s Heeren Loo'),
(103148, 84743, 'en', 'name', 'Armauer Hansen Research Institute'),
(103149, 84744, 'es', 'name', 'Universidad Latina'),
(103150, 84745, 'en', 'name', 'Grassland, Soil and Water Research Laboratory'),
(103151, 84746, 'nl', 'name', 'PAMM'),
(103152, 84747, 'en', 'name', 'Research Center for Integrated Disaster Risk Management'),
(103153, 84747, 'es', 'name', 'Centro de Investigación para la Gestión Integrada del Riesgo de Desastres'),
(103154, 84748, 'en', 'name', 'Panamanian Association for the Advancement of Science'),
(103155, 84749, 'no_lang_code', 'name', 'Century Therapeutics (United States)'),
(103156, 84750, 'no_lang_code', 'name', 'Ignyta (United States)'),
(103157, 84751, 'en', 'name', 'Asia Pacific League of Associations for Rheumatology'),
(103158, 84752, 'en', 'name', 'Fort Valley State University'),
(103159, 84753, 'en', 'name', 'Horlivka Institute for Foreign Languages'),
(103160, 84753, 'uk', 'name', 'Š“Š¾Ń€Š»Ń–Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ іноземних мов'),
(103161, 84754, 'en', 'name', 'Combined Military Hospital'),
(103162, 84754, 'ur', 'name', 'مؓترکہ فوجی ہسپتال'),
(103163, 84755, 'no_lang_code', 'name', 'Studsvik (Germany)'),
(103164, 84756, 'no_lang_code', 'name', 'TiDA (New Zealand)'),
(103165, 84757, 'de', 'name', 'Hochschule Geisenheim'),
(103166, 84757, 'en', 'name', 'Hochschule Geisenheim University'),
(103167, 84758, 'de', 'name', 'Deutsches Historisches Institut Warschau'),
(103168, 84758, 'en', 'name', 'German Historical Institute Warsaw'),
(103169, 84758, 'pl', 'name', 'Niemiecki Instytut Historyczny w Warszawie'),
(103170, 84759, 'en', 'name', 'Arizona Liver Health'),
(103171, 84760, 'da', 'name', 'Regionshospitalet Randers'),
(103172, 84760, 'en', 'name', 'Regional Hospital Randers'),
(103173, 84761, 'en', 'name', 'Idaho State Board of Education'),
(103174, 84762, 'de', 'name', 'Landesamt für Landwirtschaft, Lebensmittelsicherheit und Fischerei'),
(103175, 84763, 'en', 'name', 'Regional Technology Strategies'),
(103176, 84764, 'de', 'name', 'Deutsches Institut für Urbanistik'),
(103177, 84764, 'en', 'name', 'German Institute of Urban Affairs'),
(103178, 84765, 'ja', 'name', '和光大学'),
(103179, 84765, 'no_lang_code', 'name', 'Wako University'),
(103180, 84766, 'no_lang_code', 'name', 'Guangzhou Research and Creativity Biotechnology (China)'),
(103181, 84766, 'zh', 'name', 'å¹æå·žē ”åˆ›ē”Ÿē‰©'),
(103182, 84767, 'en', 'name', 'ENEA Saluggia Research Centre'),
(103183, 84767, 'it', 'name', 'ENEA Centro Ricerche Saluggia'),
(103184, 84768, 'en', 'name', 'Academy of Cryptography Techniques'),
(103185, 84768, 'vi', 'name', 'Hį»c viện Kỹ thuįŗ­t Mįŗ­t mĆ£'),
(103186, 84769, 'en', 'name', 'Chamber of Commerce of Metropolitan Montreal'),
(103187, 84769, 'fr', 'name', 'Chambre de commerce du MontrƩal mƩtropolitain'),
(103188, 84770, 'no_lang_code', 'name', 'Icon (Australia)'),
(103189, 84771, 'en', 'name', 'New York Historical Society'),
(103190, 84772, 'en', 'name', 'Novosibirsk Scientific Research Institute of Traumatology and Orthopedics. Ya.L. Tsivyan'),
(103191, 84772, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ травматологии Šø ортопеГии им. ŠÆ.Š›.Š¦ŠøŠ²ŃŒŃŠ½Š°'),
(103192, 84773, 'en', 'name', 'University of Sopron'),
(103193, 84773, 'hu', 'name', 'Soproni Egyetem'),
(103194, 84774, 'id', 'name', 'Institut Bisnis dan Teknologi Pelita Indonesia'),
(103195, 84775, 'en', 'name', 'International Gorilla Conservation Programme'),
(103196, 84776, 'no_lang_code', 'name', 'ACS Solutions (United States)'),
(103197, 84777, 'no_lang_code', 'name', 'Plastic Omnium (France)'),
(103198, 84778, 'no_lang_code', 'name', 'Quantify Research (Sweden)'),
(103199, 84779, 'en', 'name', 'Yamada Science Foundation'),
(103200, 84779, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå±±ē”°ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(103201, 84780, 'en', 'name', 'Association of Public and Land-grant Universities'),
(103202, 84781, 'en', 'name', 'Royal Statistical Society'),
(103203, 84782, 'en', 'name', 'ORSI Academy'),
(103204, 84783, 'en', 'name', 'Society of Chemical Industry'),
(103205, 84784, 'en', 'name', 'California Perinatal Quality Care Collaborative'),
(103206, 84785, 'en', 'name', 'Puerto Rico Science, Technology & Research Trust'),
(103207, 84785, 'es', 'name', 'Fideicomiso de Ciencias, Tecnología e Investigación de Puerto Rico'),
(103208, 84786, 'no_lang_code', 'name', 'Biostatistical Consulting (United States)'),
(103209, 84787, 'cs', 'name', 'LĆ©Äebna Dlouhodobě Nemocných'),
(103210, 84788, 'ja', 'name', 'ę±čŠćƒŠćƒŽć‚¢ćƒŠćƒŖć‚·ć‚¹ę Ŗå¼ä¼šē¤¾'),
(103211, 84788, 'no_lang_code', 'name', 'Toshiba Nanoanalysis Corporation'),
(103212, 84789, 'en', 'name', 'The Humane League'),
(103213, 84790, 'en', 'name', 'Ukrainian State Research Institute for Carbochemistry'),
(103214, 84790, 'ru', 'name', 'Украинский Š³Š¾ŃŃƒŠ“арственный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ³Š»ŠµŃ…ŠøŠ¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(103215, 84790, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний науково-ГосліГний Š²ŃƒŠ³Š»ŠµŃ…імічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(103216, 84791, 'en', 'name', 'Parthenope University of Naples'),
(103217, 84791, 'fr', 'name', 'UniversitƩ de naples - parthƩnope'),
(103218, 84791, 'it', 'name', 'UniversitĆ  degli Studi di Napoli Parthenope'),
(103219, 84792, 'no_lang_code', 'name', 'Cajal Neuroscience (United States)'),
(103220, 84793, 'en', 'name', 'State University of Physical Education and Sport'),
(103221, 84793, 'ro', 'name', 'Universitatea de Stat de Educaţie Fizică şi Sport'),
(103222, 84794, 'en', 'name', 'Close Up Foundation'),
(103223, 84795, 'en', 'name', 'International Biometric Society'),
(103224, 84796, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŁŠ سويف'),
(103225, 84796, 'en', 'name', 'Beni-Suef University'),
(103226, 84797, 'bn', 'name', 'খুলনা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(103227, 84797, 'en', 'name', 'Khulna University'),
(103228, 84798, 'cs', 'name', 'Policie České republiky'),
(103229, 84798, 'en', 'name', 'Police of the Czech Republic'),
(103230, 84799, 'id', 'name', 'Pusat Penelitian Arkeologi Nasional'),
(103231, 84800, 'en', 'name', 'University of East Asia'),
(103232, 84800, 'ja', 'name', 'ę±äŗœå¤§å­¦'),
(103233, 84801, 'en', 'name', 'Iwokrama International Centre for Rainforest Conservation and Development'),
(103234, 84802, 'en', 'name', 'Mammal Research Institute'),
(103235, 84802, 'pl', 'name', 'Instytut Biologii Ssaków Polskiej Akademii Nauk'),
(103236, 84803, 'en', 'name', 'ENN-Tongji Advanced Institute of Clean Energy'),
(103237, 84803, 'zh', 'name', 'ę–°å„„-åŒęµŽęø…ę“čƒ½ęŗé«˜ē­‰ē ”ē©¶é™¢'),
(103238, 84804, 'nl', 'name', 'AZ Sint-Lucas'),
(103239, 84805, 'en', 'name', 'Hawk Mountain Sanctuary'),
(103240, 84806, 'en', 'name', 'Federal Scientific Research Centre Crystallography and Photonics'),
(103241, 84806, 'ru', 'name', 'ŠšŃ€ŠøŃŃ‚Š°Š»Š»Š¾Š³Ń€Š°Ń„ŠøŃ Šø фотоника'),
(103242, 84807, 'no_lang_code', 'name', 'Trelleborg (Sweden)'),
(103243, 84808, 'no_lang_code', 'name', 'Wyatt Technology (China)'),
(103244, 84808, 'zh', 'name', 'ę€€é›…ē‰¹ęŠ€ęœÆå…¬åø'),
(103245, 84809, 'en', 'name', 'Nordic Africa Institute'),
(103246, 84810, 'en', 'name', 'Testicular Cancer Commons'),
(103247, 84811, 'en', 'name', 'Research Institute for the Study of Leprosy'),
(103248, 84811, 'ru', 'name', 'ā€œŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠøŠ·ŃƒŃ‡ŠµŠ½ŠøŃŽ Š»ŠµŠæŃ€Ń‹ā€'),
(103249, 84812, 'en', 'name', 'Łukasiewicz Research Network - Industrial Institute of Agricultural Engineering'),
(103250, 84812, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Przemysłowy Instytut Maszyn Rolniczych'),
(103251, 84813, 'en', 'name', 'Ludwig Cancer Research'),
(103252, 84814, 'no_lang_code', 'name', 'Xanadu Quantum Technologies (Canada)'),
(103253, 84815, 'en', 'name', 'Pervasive Artificial Intelligence Research Labs'),
(103254, 84815, 'zh', 'name', 'äŗŗå·„ę™ŗę…§ę™®é©ē ”ē©¶äø­åæƒ'),
(103255, 84816, 'no_lang_code', 'name', 'Solarea Bio (United States)'),
(103256, 84817, 'en', 'name', 'Federative Institute of Behavioral Addictions'),
(103257, 84817, 'fr', 'name', 'Institut FƩdƩratif des Addictions Comportementales'),
(103258, 84818, 'en', 'name', 'Health Technology Assessment Agency'),
(103259, 84818, 'es', 'name', 'Agencia de Evaluación de Tecnologías Sanitarias'),
(103260, 84819, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾KDDIē·åˆē ”ē©¶ę‰€'),
(103261, 84819, 'no_lang_code', 'name', 'KDDI Research (Japan)'),
(103262, 84820, 'ja', 'name', 'ć‚Ŗćƒ³ć‚³ćƒŖć‚¹ćƒć‚¤ć‚Ŗćƒ•ć‚”ćƒ¼ćƒžę Ŗå¼ä¼šē¤¾'),
(103263, 84820, 'no_lang_code', 'name', 'Oncolys BioPharma (Japan)'),
(103264, 84821, 'en', 'name', 'National Athletic Trainers Association'),
(103265, 84822, 'en', 'name', 'National Institute of Food and Agriculture'),
(103266, 84823, 'en', 'name', 'Tennessee Higher Education Commission & Student Assistance Corporation'),
(103267, 84824, 'en', 'name', 'Zonta International Foundation'),
(103268, 84825, 'en', 'name', 'Redcliffe Hospital'),
(103269, 84826, 'en', 'name', 'Archaeological Museum in Poznań'),
(103270, 84826, 'pl', 'name', 'Muzeum Archeologiczne w Poznaniu'),
(103271, 84827, 'no_lang_code', 'name', 'Abraxis (United States)'),
(103272, 84828, 'en', 'name', 'Zhuhai Institute of Advanced Technology'),
(103273, 84828, 'zh', 'name', 'ē ęµ·äø­ē§‘å…ˆčæ›ęŠ€ęœÆē ”ē©¶é™¢'),
(103274, 84829, 'no_lang_code', 'name', 'Flagship Pioneering (United States)'),
(103275, 84830, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ—ę–—åŒ—ę–—ē—…é™¢'),
(103276, 84830, 'no_lang_code', 'name', 'Hokuto Hospital'),
(103277, 84831, 'en', 'name', 'Hubbard Brook Research Foundation'),
(103278, 84832, 'en', 'name', 'Multi-Robot Systems Research Group'),
(103279, 84833, 'no_lang_code', 'name', 'Vifor Pharma (United States)'),
(103280, 84834, 'no_lang_code', 'name', 'Dian Diagnostics (China)'),
(103281, 84834, 'zh', 'name', 'čæŖå®‰čÆŠę–­'),
(103282, 84835, 'en', 'name', 'Daye People''s Hospital'),
(103283, 84835, 'zh', 'name', 'å¤§å†¶åø‚äŗŗę°‘åŒ»é™¢'),
(103284, 84836, 'en', 'name', 'Great Lakes Colleges Association'),
(103285, 84837, 'en', 'name', 'European Consortium for Political Research'),
(103286, 84838, 'en', 'name', 'FitzPatrick Institute of African Ornithology'),
(103287, 84839, 'en', 'name', 'Institute of Fluid Physics'),
(103288, 84839, 'zh', 'name', '流体物理研究所'),
(103289, 84840, 'en', 'name', 'The Prostate Centre'),
(103290, 84841, 'no_lang_code', 'name', 'Myriad Genetics'),
(103291, 84842, 'en', 'name', 'Jichi Medical University Saitama Medical Center'),
(103292, 84842, 'ja', 'name', 'č‡Ŗę²»åŒ»ē§‘å¤§å­¦é™„å±žć•ć„ćŸć¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103293, 84843, 'en', 'name', 'Chongqing Three Gorges University'),
(103294, 84843, 'zh', 'name', 'é‡åŗ†äø‰å³”å­¦é™¢'),
(103295, 84844, 'en', 'name', 'Alliance for Public Health'),
(103296, 84844, 'uk', 'name', 'ŠŠ»ŃŒŃŠ½Ń Š³Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ¾Š³Š¾ зГоров''я'),
(103297, 84845, 'no_lang_code', 'name', 'Ethiopian Biodiversity Institute'),
(103298, 84846, 'en', 'name', 'Melbourne Genomics Health Alliance'),
(103299, 84847, 'en', 'name', 'Canadian Society of Plastic Surgeons'),
(103300, 84848, 'no_lang_code', 'name', 'AMAG Pharmaceuticals (United States)'),
(103301, 84849, 'en', 'name', 'National Library of Health Sciences'),
(103302, 84849, 'es', 'name', 'Biblioteca Nacional de Ciencias de la Salud'),
(103303, 84850, 'pt', 'name', 'Associação Projecto Vitó'),
(103304, 84851, 'de', 'name', 'Hirslanden Andreasklinik Cham Zug'),
(103305, 84852, 'en', 'name', 'Baikal Nature Reserve'),
(103306, 84852, 'ru', 'name', 'Š‘Š°Š¹ŠŗŠ°ĢŠ»ŃŒŃŠŗŠøŠ¹ запове́Гник'),
(103307, 84853, 'en', 'name', 'Dolishniy Institute of Regional Research of NAS of Ukraine'),
(103308, 84853, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ім. М. І. Š”Š¾Š»Ń–ŃˆŠ½ŃŒŠ¾Š³Š¾ ŠŠŠ Š£ŠŗŃ€Š°Ń—Š½ŠøŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ім. М. І. Š”Š¾Š»Ń–ŃˆŠ½ŃŒŠ¾Š³Š¾ ŠŠŠ України'),
(103309, 84854, 'en', 'name', 'Einstein Center for Neurosciences Berlin'),
(103310, 84855, 'en', 'name', 'European Resuscitation Council'),
(103311, 84856, 'en', 'name', 'National Medical Research Center of Dentistry and Maxillofacial Surgery'),
(103312, 84856, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стоматологии Šø Ń‡ŠµŠ»ŃŽŃŃ‚Š½Š¾-лицевой Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø'),
(103313, 84857, 'en', 'name', 'Wildlife Conservation Society Fiji'),
(103314, 84858, 'no_lang_code', 'name', 'Alkermes (Ireland)'),
(103315, 84859, 'en', 'name', 'United States Trade and Development Agency'),
(103316, 84860, 'no_lang_code', 'name', 'Emka Technologies (Canada)'),
(103317, 84861, 'en', 'name', 'ARC Centre of Excellence for Transformative Meta-Optical Systems'),
(103318, 84862, 'no_lang_code', 'name', 'Dr Falk Pharma (Germany)'),
(103319, 84863, 'en', 'name', 'Opole University of Technology'),
(103320, 84863, 'pl', 'name', 'Politechnika Opolska'),
(103321, 84864, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© الخاصة'),
(103322, 84864, 'en', 'name', 'Arab International University'),
(103323, 84864, 'hy', 'name', 'Ō±Ö€Õ”Õ¢Õ”ÕÆÕ”Õ¶ Õ“Õ«Õ»Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(103324, 84865, 'no_lang_code', 'name', 'TriNetX (United States)'),
(103325, 84866, 'en', 'name', 'Ministry of Health'),
(103326, 84867, 'en', 'name', 'The Society for Academic Primary Care'),
(103327, 84868, 'en', 'name', 'Zoological Institute'),
(103328, 84868, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Зоологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Российской акаГемии наук'),
(103329, 84869, 'fr', 'name', 'Laboratoire de mƩtrologie de la Direction GƩnƩrale des Transmissions et de l''Informatique'),
(103330, 84870, 'no_lang_code', 'name', 'VisMederi (Italy)'),
(103331, 84871, 'no_lang_code', 'name', 'Yunkawasi'),
(103332, 84872, 'en', 'name', 'Centre for Sight'),
(103333, 84873, 'en', 'name', 'W.M. Keck Science Center'),
(103334, 84874, 'en', 'name', 'Advocate Heart Institute'),
(103335, 84875, 'en', 'name', 'National Institute of Ophthalmology "Dr. Francisco Contreras Campos"'),
(103336, 84875, 'es', 'name', 'Instituto Nacional de OftalmologĆ­a "Dr. Francisco Contreras Campos"'),
(103337, 84876, 'fr', 'name', 'Expression GƩnƩtique Microbienne'),
(103338, 84877, 'en', 'name', 'Turkish Society of Cardiology'),
(103339, 84877, 'tr', 'name', 'Türk Kardiyoloji Derneği'),
(103340, 84878, 'en', 'name', 'Private University of the North'),
(103341, 84878, 'es', 'name', 'Universidad Privada del Norte'),
(103342, 84879, 'en', 'name', 'Puerto Rico Sea Grant'),
(103343, 84880, 'en', 'name', 'The Norwegian Center for Child Behavioral Development'),
(103344, 84880, 'no', 'name', 'Nasjonalt utviklingssenter for barn og unge'),
(103345, 84881, 'en', 'name', 'Clinical Academic Center of Braga'),
(103346, 84881, 'pt', 'name', 'Centro ClĆ­nico AcadĆ©mico – Braga'),
(103347, 84882, 'en', 'name', 'Salt Science Research Foundation'),
(103348, 84882, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚½ćƒ«ćƒˆćƒ»ć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶č²”å›£'),
(103349, 84883, 'en', 'name', 'Energy Technologies Institute'),
(103350, 84884, 'en', 'name', 'Regional Obstetrical Consultants'),
(103351, 84885, 'no_lang_code', 'name', 'Bio4Dreams (Italy)'),
(103352, 84886, 'en', 'name', 'Institute of Political Studies'),
(103353, 84886, 'pl', 'name', 'Instytut Studiów Politycznych'),
(103354, 84887, 'en', 'name', 'Indira Gandhi Centre for Atomic Research'),
(103355, 84887, 'hi', 'name', 'इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤Ŗą¤°ą¤®ą¤¾ą¤£ą„ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(103356, 84887, 'mr', 'name', 'इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤…ą¤£ą„ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(103357, 84887, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®°ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ அணு ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®®ąÆˆą®Æą®®ąÆ'),
(103358, 84888, 'en', 'name', 'National Supercomputing Center of Tianjin'),
(103359, 84888, 'zh', 'name', 'å›½å®¶č¶…ēŗ§č®”ē®—å¤©ę“„äø­åæƒ'),
(103360, 84889, 'de', 'name', 'KMU Forschung Austria'),
(103361, 84889, 'en', 'name', 'Austrian Institute for SME Research'),
(103362, 84890, 'en', 'name', 'RIKEN Nishina Center'),
(103363, 84890, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ä»ē§‘åŠ é€Ÿå™Øē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103364, 84891, 'en', 'name', 'American Society for Environmental History'),
(103365, 84892, 'de', 'name', 'ParkinsonFonds Deutschland gGmbH'),
(103366, 84893, 'en', 'name', 'Gregor Mendel Institute of Molecular Plant Biology'),
(103367, 84894, 'en', 'name', 'Austin Peay State University'),
(103368, 84894, 'es', 'name', 'Universidad Estatal Austin Peay'),
(103369, 84895, 'en', 'name', 'National Metrology Center'),
(103370, 84895, 'es', 'name', 'Centro Nacional de MetrologĆ­a'),
(103371, 84896, 'ja', 'name', 'ę—„ę–°č£½é‹¼ę Ŗå¼ä¼šē¤¾'),
(103372, 84896, 'no_lang_code', 'name', 'Nisshin Steel (Japan)'),
(103373, 84897, 'no_lang_code', 'name', 'Cerebrotech Medical Systems (United States)'),
(103374, 84898, 'en', 'name', 'Sunnaas Hospital'),
(103375, 84898, 'no', 'name', 'Sunnaas sykehus'),
(103376, 84899, 'es', 'name', 'Instituto MƩdico Rƭo Cuarto'),
(103377, 84900, 'be', 'name', 'ŠŠ°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Ń‹ парк Š‘Ń€Š°ŃŠ»Š°ŃžŃŠŗŃ–Ń азёры'),
(103378, 84900, 'no_lang_code', 'name', 'National Park Braslavskie Ozera'),
(103379, 84901, 'pt', 'name', 'Centro de Reprodução Humana Prof. Franco Junior'),
(103380, 84902, 'en', 'name', 'Adams State University'),
(103381, 84903, 'en', 'name', 'National Museum of Mongolia'),
(103382, 84903, 'mn', 'name', 'ŠœŠ¾Š½Š³Š¾Š»Ń‹Š½ ŅÆŠ½Š“ŃŃŠ½ŠøŠ¹ түүхийн музей'),
(103383, 84904, 'en', 'name', 'Macmillan Cancer Support'),
(103384, 84905, 'en', 'name', 'University of St. Thomas - Minnesota'),
(103385, 84906, 'en', 'name', 'Okayama Foundation for Science and Technology'),
(103386, 84906, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ 岔山巄学振興会'),
(103387, 84907, 'en', 'name', 'Laboratory of Racing Chemistry'),
(103388, 84907, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē«¶čµ°é¦¬ē†åŒ–å­¦ē ”ē©¶ę‰€'),
(103389, 84908, 'no_lang_code', 'name', 'FinVector (Finland)'),
(103390, 84909, 'en', 'name', 'Institute for Microelectronics and Microsystems'),
(103391, 84909, 'it', 'name', 'Istituto per la Microelettronica e Microsistemi'),
(103392, 84910, 'no_lang_code', 'name', 'Uber AI (United States)'),
(103393, 84911, 'en', 'name', 'Norwegian Railway Museum'),
(103394, 84911, 'no', 'name', 'Norsk jernbanemuseum'),
(103395, 84912, 'en', 'name', 'Science and Technology Development Fund'),
(103396, 84913, 'de', 'name', 'GastroZentrum Hirslanden Zürich'),
(103397, 84914, 'en', 'name', 'Hamamatsu Medical Center'),
(103398, 84914, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęµœę¾åø‚åŒ»ē™‚å…¬ē¤¾ęµœę¾åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(103399, 84915, 'de', 'name', 'Bayerische Motoren Werke'),
(103400, 84915, 'no_lang_code', 'name', 'BMW (Germany)'),
(103401, 84916, 'en', 'name', 'Chartered Institute of Building'),
(103402, 84917, 'de', 'name', 'Medizinisches Zentrum für Seelische Gesundheit'),
(103403, 84918, 'en', 'name', 'Blond McIndoe Research Foundation'),
(103404, 84919, 'en', 'name', 'The Princes Trust'),
(103405, 84920, 'no_lang_code', 'name', 'Deutsche Flugsicherung (Germany)'),
(103406, 84921, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Προληπτικής Περιβαλλοντικής & Ī•ĻĪ³Ī±ĻƒĪ¹Ī±ĪŗĪ®Ļ‚ Ιατρικής'),
(103407, 84921, 'no_lang_code', 'name', 'Prolepsis Institute'),
(103408, 84922, 'en', 'name', 'Society for Research in Child Development'),
(103409, 84923, 'en', 'name', 'D. Mendeleyev University of Chemical Technology of Russia'),
(103410, 84923, 'ru', 'name', 'Российский химико-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. И. МенГелеева'),
(103411, 84924, 'de', 'name', 'LWL-UniversitƤtsklinik Hamm'),
(103412, 84925, 'it', 'name', 'Centro di Terapia Metacognitiva Interpersonale'),
(103413, 84926, 'de', 'name', 'Auschwitz Birkenau'),
(103414, 84926, 'pl', 'name', 'Państwowe Muzeum Auschwitz-Birkenau w Oświęcimiu'),
(103415, 84927, 'en', 'name', 'Institute for Biological Systems'),
(103416, 84927, 'it', 'name', 'Istituto per i Sistemi Biologici'),
(103417, 84928, 'nl', 'name', 'Deventer Ziekenhuis'),
(103418, 84929, 'no_lang_code', 'name', 'Cooley (United States)'),
(103419, 84930, 'de', 'name', 'Zentrum für Chemische Genomik'),
(103420, 84930, 'en', 'name', 'Chemical Genomics Centre'),
(103421, 84931, 'bn', 'name', 'ą¦Øą¦°ą§ą¦„ সাউ঄ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(103422, 84931, 'en', 'name', 'North South University'),
(103423, 84932, 'en', 'name', 'State Scientific Institution "Ukrainian Institute of Scientific and Technical Expertise and Information"'),
(103424, 84932, 'uk', 'name', 'Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ науково-технічної експертизи та інформації»'),
(103425, 84933, 'fr', 'name', 'Institut SupƩrieur de Technologie MƩdicale'),
(103426, 84934, 'en', 'name', 'Japan Brain Foundation'),
(103427, 84935, 'en', 'name', 'Karelian Research Centre'),
(103428, 84935, 'ru', 'name', 'ŠšŠ°Ń€ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр'),
(103429, 84936, 'en', 'name', 'Kitami Institute of Technology'),
(103430, 84936, 'ja', 'name', 'åŒ—č¦‹å·„ę„­å¤§å­¦'),
(103431, 84937, 'en', 'name', 'Finnish Social Science Data Archive'),
(103432, 84937, 'fi', 'name', 'Yhteiskuntatieteellinen tietoarkisto'),
(103433, 84937, 'sv', 'name', 'Finlands SamhƤllsvetenskapliga Dataarkiv'),
(103434, 84938, 'en', 'name', 'Irkutsk Regional Museum of Local History'),
(103435, 84938, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ областной краевеГческий музей'),
(103436, 84939, 'no_lang_code', 'name', 'XeUS Technologies (Cyprus)'),
(103437, 84940, 'no_lang_code', 'name', 'Frontier Geosciences (Canada)'),
(103438, 84941, 'no_lang_code', 'name', 'Dentsply Sirona (United States)');
INSERT INTO `ror_settings` VALUES
(103439, 84942, 'no_lang_code', 'name', 'Analytical Biosciences (China)'),
(103440, 84943, 'en', 'name', 'Lampung University'),
(103441, 84943, 'id', 'name', 'Universitas Lampung'),
(103442, 84944, 'no_lang_code', 'name', 'ESI Group (France)'),
(103443, 84945, 'en', 'name', 'Tai Poutini Polytechnic'),
(103444, 84946, 'no_lang_code', 'name', 'P2i (United Kingdom)'),
(103445, 84947, 'en', 'name', 'Orthopaedic Research Foundation'),
(103446, 84948, 'no_lang_code', 'name', 'Tissue Dynamics (Israel)'),
(103447, 84949, 'ja', 'name', 'ę—„ęœ¬ę–°č–¬ę Ŗå¼ä¼šē¤¾'),
(103448, 84949, 'no_lang_code', 'name', 'Nippon Shinyaku (Japan)'),
(103449, 84950, 'en', 'name', 'Zhengzhou Institute of Emerging Industrial Technology'),
(103450, 84950, 'zh', 'name', 'éƒ‘å·žäø­ē§‘ę–°å…“äŗ§äøšęŠ€ęœÆē ”ē©¶é™¢'),
(103451, 84951, 'ja', 'name', 'åÆŒå£«ę©Ÿå·„ę Ŗå¼ä¼šē¤¾'),
(103452, 84951, 'no_lang_code', 'name', 'Fuji Kiko (Japan)'),
(103453, 84952, 'en', 'name', 'Zaozhuang University'),
(103454, 84953, 'en', 'name', 'Shizuoka Children''s Hospital'),
(103455, 84953, 'ja', 'name', 'é™å²”ēœŒē«‹ć“ć©ć‚‚ē—…é™¢'),
(103456, 84954, 'en', 'name', 'University Hospitals Plymouth NHS Trust'),
(103457, 84955, 'en', 'name', 'Conservation and Production Research Laboratory'),
(103458, 84956, 'en', 'name', 'Guizhou Institute of Technology'),
(103459, 84956, 'zh', 'name', 'č“µå·žē†å·„å­¦é™¢'),
(103460, 84957, 'en', 'name', 'Skin Health Institute'),
(103461, 84958, 'en', 'name', 'The FRAM Centre'),
(103462, 84958, 'no', 'name', 'Framsenteret'),
(103463, 84959, 'en', 'name', 'Lviv University of Business and Law'),
(103464, 84959, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š±Ń–Š·Š½ŠµŃŃƒ та права'),
(103465, 84960, 'en', 'name', 'Qingdao Center of Resource Chemistry and New Materials'),
(103466, 84960, 'zh', 'name', 'é’å²›åø‚čµ„ęŗåŒ–å­¦äøŽę–°ęę–™ē ”ē©¶äø­åæƒ'),
(103467, 84961, 'en', 'name', 'Ministry of Social Affairs and Employment'),
(103468, 84961, 'nl', 'name', 'Ministerie van Sociale Zaken en Werkgelegenheid'),
(103469, 84962, 'ar', 'name', 'Ų£Ų·ŲØŲ§Ų” بلا حدود'),
(103470, 84962, 'fr', 'name', 'Médecins Sans Frontières'),
(103471, 84963, 'en', 'name', 'Millennium Institute for Integrative Biology'),
(103472, 84963, 'es', 'name', 'Instituto Milenio de BiologĆ­a Integrativa'),
(103473, 84964, 'en', 'name', 'Foundation for Biomedical Research and Innovation'),
(103474, 84964, 'ja', 'name', 'å…ˆē«ÆåŒ»ē™‚ęŒÆčˆˆč²”å›£'),
(103475, 84965, 'en', 'name', 'Physico-Chemical Institute of Environmental and Human Protection'),
(103476, 84965, 'uk', 'name', 'Фізико-хімічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ охорони навколишнього сереГовища та Š»ŃŽŠ“ини'),
(103477, 84966, 'en', 'name', 'American Laryngological Association'),
(103478, 84967, 'en', 'name', 'Biological Control of Insects Research Laboratory'),
(103479, 84968, 'en', 'name', 'University Hospital of Pisa'),
(103480, 84968, 'it', 'name', 'Azienda Ospedaliera Universitaria Pisana'),
(103481, 84969, 'en', 'name', 'Adventist Hinsdale Hospital'),
(103482, 84970, 'no_lang_code', 'name', 'Italfarmaco (Italy)'),
(103483, 84971, 'en', 'name', 'Arnold Arboretum'),
(103484, 84972, 'no_lang_code', 'name', 'S&B Christ Consulting (United States)'),
(103485, 84973, 'en', 'name', 'Genetics Society of America'),
(103486, 84974, 'no_lang_code', 'name', 'Transcend Vivoscope (China)'),
(103487, 84974, 'zh', 'name', 'åŒ—äŗ¬č¶…ē»“ę™Æē”Ÿē‰©ē§‘ęŠ€'),
(103488, 84975, 'en', 'name', 'Fort Keogh Livestock and Range Research Laboratory'),
(103489, 84976, 'en', 'name', 'Multiscale Bioimaging'),
(103490, 84977, 'fr', 'name', 'Paris AƩroport'),
(103491, 84978, 'ne', 'name', 'जिवन ą¤Øą„‡ą¤Ŗą¤¾ą¤²'),
(103492, 84978, 'no_lang_code', 'name', 'Life Nepal'),
(103493, 84979, 'en', 'name', 'Lehmann Eye Center'),
(103494, 84980, 'en', 'name', 'Joint Attosecond Science Laboratory'),
(103495, 84981, 'en', 'name', 'First United Methodist Church'),
(103496, 84982, 'no_lang_code', 'name', 'Loblaw Companies (Canada)'),
(103497, 84983, 'en', 'name', 'Nottingham University Hospitals NHS Trust'),
(103498, 84984, 'en', 'name', 'Semnan University of Medical Sciences'),
(103499, 84985, 'en', 'name', 'VIB-VUB Laboratory Myeloid Cell Immunology'),
(103500, 84986, 'en', 'name', 'Institute for Animal Reproduction'),
(103501, 84986, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå‹•ē‰©ē¹ę®–ē ”ē©¶ę‰€'),
(103502, 84987, 'en', 'name', 'Comunidades Latinas Unidas En Servicio'),
(103503, 84988, 'en', 'name', 'Hubei Provincial Department of Education'),
(103504, 84989, 'en', 'name', 'Institution of Occupational Safety and Health'),
(103505, 84990, 'en', 'name', 'Global Wildlife Conservation'),
(103506, 84991, 'en', 'name', 'Myelin Repair Foundation'),
(103507, 84992, 'en', 'name', 'Economic Research Service'),
(103508, 84993, 'de', 'name', 'UniversitƤt Passau'),
(103509, 84993, 'en', 'name', 'University of Passau'),
(103510, 84994, 'en', 'name', 'National Standardization Agency of Indonesia'),
(103511, 84994, 'id', 'name', 'Badan Standardisasi Nasional'),
(103512, 84995, 'en', 'name', 'International Laboratory for Brain, Music and Sound Research'),
(103513, 84995, 'fr', 'name', 'Laboratoire international de recherche sur le Cerveau, la Musique et le Son'),
(103514, 84996, 'no_lang_code', 'name', 'Kone (Finland)'),
(103515, 84997, 'en', 'name', 'Olympic Medical Center'),
(103516, 84998, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾IDćƒ•ć‚”ćƒ¼ćƒž'),
(103517, 84998, 'no_lang_code', 'name', 'ID Pharma (Japan)'),
(103518, 84999, 'en', 'name', 'Ministry of Health and Care Services'),
(103519, 84999, 'no', 'name', 'Helse- og omsorgsministeren'),
(103520, 85000, 'no_lang_code', 'name', 'WƤrtsilƤ (Finland)'),
(103521, 85001, 'no_lang_code', 'name', 'Otis (United States)'),
(103522, 85002, 'en', 'name', 'Pontifical Catholic University of Peru'),
(103523, 85002, 'es', 'name', 'Pontificia Universidad Católica del Perú'),
(103524, 85003, 'en', 'name', 'Demos'),
(103525, 85004, 'en', 'name', 'State Key Laboratory of Pollution Control and Resource Reuse'),
(103526, 85004, 'zh', 'name', 'ę±”ęŸ“ęŽ§åˆ¶äøŽčµ„ęŗåŒ–ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(103527, 85005, 'en', 'name', 'Family Health Council Of Central Pennsylvania'),
(103528, 85006, 'en', 'name', 'Royal Marsden NHS Foundation Trust'),
(103529, 85007, 'en', 'name', 'Mach-Gaensslen Foundation'),
(103530, 85008, 'no_lang_code', 'name', 'Counsyl (United States)'),
(103531, 85009, 'no_lang_code', 'name', 'Potentia Pharmaceuticals (United States)'),
(103532, 85010, 'en', 'name', 'Okazaki National Research Institutes'),
(103533, 85010, 'ja', 'name', 'å²”å“Žå›½ē«‹å…±åŒē ”ē©¶ę©Ÿę§‹'),
(103534, 85011, 'fr', 'name', 'CEA LIST'),
(103535, 85012, 'en', 'name', 'Regional Centre for Training in Aerospace Surveys'),
(103536, 85013, 'en', 'name', 'SUNY Polytechnic Institute'),
(103537, 85014, 'en', 'name', 'University of New Mexico Gallup'),
(103538, 85015, 'en', 'name', 'Heiwa Nakajima Foundation'),
(103539, 85015, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¹³å’Œäø­å³¶č²”å›£'),
(103540, 85016, 'no_lang_code', 'name', 'Labrida (Norway)'),
(103541, 85017, 'en', 'name', 'Swedish Transport Administration'),
(103542, 85018, 'fr', 'name', 'Institut Necker Enfants Malades'),
(103543, 85019, 'en', 'name', 'Madison University'),
(103544, 85020, 'no_lang_code', 'name', 'Rete Ventures S.C.R.L.'),
(103545, 85021, 'en', 'name', 'Hypertension Canada'),
(103546, 85022, 'no_lang_code', 'name', 'Pear Therapeutics (United States)'),
(103547, 85023, 'cy', 'name', 'Llywodraeth Cymru'),
(103548, 85023, 'en', 'name', 'Welsh Government'),
(103549, 85024, 'en', 'name', 'Broward County Division of Libraries'),
(103550, 85025, 'no_lang_code', 'name', 'Tine (Norway)'),
(103551, 85026, 'en', 'name', 'Chengdu Branch, Chinese Academy of Sciences'),
(103552, 85026, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ęˆéƒ½åˆ†é™¢'),
(103553, 85027, 'no_lang_code', 'name', 'Dr. F.P. Fischer-Stichting (Netherlands)'),
(103554, 85028, 'en', 'name', 'Tianjin Agricultural University'),
(103555, 85028, 'zh', 'name', 'å¤©ę“„å†œå­¦é™¢'),
(103556, 85029, 'en', 'name', 'Yokkaichi University Junior College'),
(103557, 85029, 'ja', 'name', 'å››ę—„åø‚å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(103558, 85030, 'nl', 'name', 'Prinses Beatrix Spierfonds'),
(103559, 85031, 'en', 'name', 'Women''s and Children''s Hospital'),
(103560, 85032, 'en', 'name', 'Osaka Kidney Foundation'),
(103561, 85033, 'en', 'name', 'National Library of the Philippines'),
(103562, 85034, 'en', 'name', 'Cambridge Philosophical Society'),
(103563, 85035, 'en', 'name', 'Noida International University'),
(103564, 85035, 'hi', 'name', 'ą¤Øą„‹ą¤ą¤”ą¤¾ ą¤‡ą¤‚ą¤Ÿą¤°ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(103565, 85036, 'en', 'name', 'Society for Maternal-Fetal Medicine'),
(103566, 85037, 'en', 'name', 'NZ on Air'),
(103567, 85037, 'mi', 'name', 'Irirangi te Motu'),
(103568, 85038, 'en', 'name', 'Punxsutawney Area Hospital'),
(103569, 85039, 'en', 'name', 'John Carroll University'),
(103570, 85040, 'en', 'name', 'Emory University School of Medicine'),
(103571, 85041, 'en', 'name', 'Arc of the Piedmont'),
(103572, 85042, 'en', 'name', 'Histiocytosis Association'),
(103573, 85043, 'en', 'name', 'National Rosacea Society'),
(103574, 85044, 'en', 'name', 'Northland Community and Technical College'),
(103575, 85045, 'en', 'name', 'New Hampshire College & University Council'),
(103576, 85046, 'en', 'name', 'Bashkir Academy of Public Administration and Management'),
(103577, 85046, 'ru', 'name', 'Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ Šø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при Главе Республики Š‘Š°ŃˆŠŗŠ¾Ń€Ń‚Š¾ŃŃ‚Š°Š½'),
(103578, 85047, 'en', 'name', 'Organisation for Economic Co-operation and Development'),
(103579, 85048, 'en', 'name', 'King Stanisław Leszczyński Higher School of Humanities'),
(103580, 85049, 'bn', 'name', 'ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø, শিলচর, অাসাম'),
(103581, 85049, 'en', 'name', 'National Institute Of Technology Silchar'),
(103582, 85049, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(103583, 85050, 'en', 'name', 'Institute for Anthropological Research'),
(103584, 85050, 'hr', 'name', 'Institut za antropologiju'),
(103585, 85051, 'en', 'name', 'Northern Virginia Community College'),
(103586, 85052, 'de', 'name', 'Mathematisches Forschungsinstitut Oberwolfach'),
(103587, 85052, 'en', 'name', 'Mathematical Research Institute of Oberwolfach'),
(103588, 85053, 'en', 'name', 'Canadian Orthopaedic Trauma Society'),
(103589, 85054, 'en', 'name', 'National Computer Network Emergency Response Technical Team/Coordination Center of Chinar'),
(103590, 85054, 'zh', 'name', 'å›½å®¶č®”ē®—ęœŗē½‘ē»œåŗ”ę€„ęŠ€ęœÆå¤„ē†åč°ƒäø­åæƒ'),
(103591, 85055, 'en', 'name', 'Children Living with Inherited Metabolic Diseases'),
(103592, 85056, 'en', 'name', 'Public Health Wales'),
(103593, 85057, 'en', 'name', 'VƤinƶ and Laina Kivi Foundation'),
(103594, 85057, 'fi', 'name', 'VƤinƶ ja Laina Kiven SƤƤtiƶ'),
(103595, 85058, 'en', 'name', 'Kaiser Permanente Washington Health Research Institute'),
(103596, 85059, 'en', 'name', 'Okinawa Churashima Foundation'),
(103597, 85059, 'ja', 'name', 'ę²–ēø„ē¾Žć‚‰å³¶č²”å›£'),
(103598, 85060, 'en', 'name', 'Gunadarma University'),
(103599, 85060, 'id', 'name', 'Universitas Gunadarma'),
(103600, 85061, 'en', 'name', 'Gunnar Nilsson Cancer Foundation'),
(103601, 85062, 'en', 'name', 'Daniel Webster College'),
(103602, 85063, 'en', 'name', 'A. Lindsay & Olive B. O''Connor Foundation'),
(103603, 85064, 'en', 'name', 'Samuel Neaman Institute for National Policy Research'),
(103604, 85065, 'en', 'name', 'Penn State Shenango'),
(103605, 85066, 'en', 'name', 'Atlas Network'),
(103606, 85067, 'en', 'name', 'Zhejiang Research Institute of Chemical Industry'),
(103607, 85067, 'zh', 'name', 'ęµ™ę±ŸēœåŒ–å·„ē ”ē©¶é™¢'),
(103608, 85068, 'no_lang_code', 'name', 'Peoples Gas (United States)'),
(103609, 85069, 'en', 'name', 'Massachusetts General Hospital'),
(103610, 85069, 'es', 'name', 'Hospital General de Massachusetts'),
(103611, 85070, 'en', 'name', 'Centre of Excellence for Biosensors, Instrumentation and Process Control'),
(103612, 85071, 'es', 'name', 'Universidad Juan Pablo II'),
(103613, 85072, 'en', 'name', 'Svey Rieng University'),
(103614, 85072, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžŸįŸ’įžœįž¶įž™įžšįŸ€įž„'),
(103615, 85073, 'en', 'name', 'Institute for Transfusion Medicine'),
(103616, 85074, 'en', 'name', 'Society for Social Studies of Science'),
(103617, 85075, 'pt', 'name', 'Sociedade Brasileira de NeurociĆŖncias e Comportamento'),
(103618, 85076, 'no_lang_code', 'name', 'GE Healthcare (Netherlands)'),
(103619, 85077, 'en', 'name', 'National University of Computer and Emerging Sciences'),
(103620, 85077, 'sd', 'name', 'Ł†ŁŠŲ“Ł†Ł„ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ آف ŚŖŁ…Ł¾ŁŠŁˆŁ½Ų± Ų§ŁŠŁ†ŚŠ امرجنگ Ų³Ų§Ų¦Ł†Ų³Ų²ā€Ž'),
(103621, 85077, 'ur', 'name', 'فاسٹ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(103622, 85078, 'en', 'name', 'McKnight Foundation'),
(103623, 85079, 'da', 'name', 'Region Nordjylland'),
(103624, 85079, 'en', 'name', 'North Denmark Region'),
(103625, 85080, 'ko', 'name', 'ģ„œģšø ė³“ė¼ė§¤ 병원'),
(103626, 85080, 'no_lang_code', 'name', 'Seoul Boramae Hospital'),
(103627, 85081, 'en', 'name', 'Vermont Oxford Network'),
(103628, 85082, 'la', 'name', 'Caritas Roma'),
(103629, 85083, 'en', 'name', 'Rainwater Charitable Foundation'),
(103630, 85084, 'en', 'name', 'Black Belt Community Foundation'),
(103631, 85085, 'ar', 'name', 'الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© - Ų§Ł„Ų³ŁˆŲÆŲ§Ł†'),
(103632, 85085, 'en', 'name', 'National University'),
(103633, 85086, 'es', 'name', 'Centro Internacional de Entrenamiento e Investigaciones Medicas'),
(103634, 85087, 'no_lang_code', 'name', 'X-wave Innovations (United States)'),
(103635, 85088, 'en', 'name', 'Penn State Hazleton'),
(103636, 85089, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ за театрално Šø филмово ŠøŠ·ŠŗŃƒŃŃ‚во ā€žŠšŃ€ŃŠŃŃ‚ŃŒŠ¾ Дарафов'),
(103637, 85089, 'en', 'name', 'National Academy for Theatre and Film Arts'),
(103638, 85090, 'en', 'name', 'Saint Luke''s Hospita'),
(103639, 85091, 'fr', 'name', 'Centre Technologique des RƩsidus Industriels'),
(103640, 85092, 'en', 'name', 'The SUDD Institute'),
(103641, 85093, 'en', 'name', 'Denver Museum of Nature and Science'),
(103642, 85094, 'en', 'name', 'Vitreous Retina Macula Consultants of New York'),
(103643, 85095, 'fi', 'name', 'Vatsatautien TutkimussƤƤtiƶ'),
(103644, 85096, 'en', 'name', 'Utrecht Life Sciences'),
(103645, 85097, 'pt', 'name', 'Faculdade Frassinetti do Recife'),
(103646, 85098, 'en', 'name', 'European Screening Port'),
(103647, 85099, 'en', 'name', 'Malek Ashtar University of Technology'),
(103648, 85099, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ مالک Ų§Ų“ŲŖŲ±'),
(103649, 85100, 'en', 'name', 'Association for Career and Technical Education'),
(103650, 85101, 'en', 'name', 'John S. Latsis Public Benefit Foundation'),
(103651, 85102, 'no_lang_code', 'name', 'Theraclion (France)'),
(103652, 85103, 'en', 'name', 'Yulin Normal University'),
(103653, 85103, 'zh', 'name', 'ēŽ‰ęž—åøˆčŒƒå­¦é™¢'),
(103654, 85104, 'en', 'name', 'National Institute of Policy and Strategic Studies'),
(103655, 85105, 'sv', 'name', 'KƤrnsjukhuset i Skƶvde'),
(103656, 85106, 'en', 'name', 'Your Community Foundation'),
(103657, 85107, 'en', 'name', 'Sturge Weber Foundation'),
(103658, 85108, 'no_lang_code', 'name', 'Raufoss Fuel Systems (Norway)'),
(103659, 85109, 'en', 'name', 'Massachusetts Association for Mental Health'),
(103660, 85110, 'es', 'name', 'Hospital Infantil La Paz'),
(103661, 85111, 'en', 'name', 'Bay Area Community Foundation'),
(103662, 85112, 'en', 'name', 'Open Philanthropy Project'),
(103663, 85113, 'en', 'name', 'Canadian Society for the Study of Education'),
(103664, 85114, 'en', 'name', 'University of Wisconsin–Whitewater at Rock County'),
(103665, 85115, 'en', 'name', 'NIHR Moorfields Biomedical Research Centre'),
(103666, 85116, 'en', 'name', 'Knut and Alice Wallenberg Foundation'),
(103667, 85117, 'en', 'name', 'Canadian Association for Co-operative Education'),
(103668, 85117, 'fr', 'name', 'Association Canadienne de l’Enseignement Cooperatif'),
(103669, 85118, 'no_lang_code', 'name', 'e2v (United Kingdom)'),
(103670, 85119, 'en', 'name', 'Klarman Family Foundation'),
(103671, 85120, 'en', 'name', 'RIKEN Center for Developmental Biology'),
(103672, 85120, 'ja', 'name', 'ē†åŒ–å­¦ē ”ē©¶ę‰€ å¤šē“°čƒžć‚·ć‚¹ćƒ†ćƒ å½¢ęˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(103673, 85121, 'no_lang_code', 'name', 'Aptiv (United States)'),
(103674, 85122, 'en', 'name', 'San Francisco Bay Area Planning and Urban Research Association'),
(103675, 85123, 'ja', 'name', 'å±±å£å­¦čŠøå¤§å­¦'),
(103676, 85123, 'no_lang_code', 'name', 'Yamaguchi Gakugei University'),
(103677, 85124, 'hi', 'name', 'ą¤…ą¤œą¤¼ą„€ą¤® ą¤Ŗą„ą¤°ą„‡ą¤®ą¤œą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(103678, 85124, 'no_lang_code', 'name', 'Azim Premji University'),
(103679, 85125, 'en', 'name', 'Dutch Institute for Advanced Logistics'),
(103680, 85126, 'en', 'name', 'Beatrice Hunter Cancer Research Institute'),
(103681, 85127, 'no_lang_code', 'name', 'Roi et Rajabhat University'),
(103682, 85127, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø£ą¹‰ąø­ąø¢ą¹€ąø­ą¹‡ąø”'),
(103683, 85128, 'en', 'name', 'West Chester University'),
(103684, 85128, 'fr', 'name', 'UniversitƩ west chester de pennsylvanie'),
(103685, 85129, 'de', 'name', 'Kantonsspital Bruderholz'),
(103686, 85130, 'no_lang_code', 'name', 'S&B Minerals (Greece)'),
(103687, 85131, 'en', 'name', 'Glycemic Index Laboratories'),
(103688, 85132, 'en', 'name', 'NSW Office of Environment & Heritage'),
(103689, 85133, 'pt', 'name', 'Centro de Desenvolvimento da Tecnologia Nuclear'),
(103690, 85134, 'de', 'name', 'Herz-Jesu Krankenhaus'),
(103691, 85135, 'no_lang_code', 'name', 'NPS Pharmaceuticals (United States)'),
(103692, 85136, 'en', 'name', 'Ministry of Research, Technology and Higher Education'),
(103693, 85136, 'id', 'name', 'Direktorat Jenderal Pendidikan Tinggi'),
(103694, 85137, 'pt', 'name', 'Universidade Nove de Julho'),
(103695, 85138, 'de', 'name', 'UniversitƤtsallianz Ruhr'),
(103696, 85138, 'en', 'name', 'University Alliance Ruhr'),
(103697, 85139, 'en', 'name', 'CO2CRC'),
(103698, 85140, 'fr', 'name', 'FƩdƩration pour la Recherche sur le Cerveau'),
(103699, 85141, 'en', 'name', 'Sutter Health'),
(103700, 85142, 'no_lang_code', 'name', 'CyberAgent (Japan)'),
(103701, 85143, 'en', 'name', 'PinnacleHealth System'),
(103702, 85144, 'no_lang_code', 'name', 'British Steel, Swinden Technology Centre (United Kingdom)'),
(103703, 85145, 'en', 'name', 'Izaak Walton Killam Health Centre'),
(103704, 85146, 'en', 'name', 'National Time Service Center'),
(103705, 85146, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å›½å®¶ęŽˆę—¶äø­åæƒ'),
(103706, 85147, 'no_lang_code', 'name', 'RainDance Technologies (United States)'),
(103707, 85148, 'en', 'name', 'Quanzhou Normal University'),
(103708, 85148, 'zh', 'name', 'ę³‰å·žåøˆčŒƒå­¦é™¢'),
(103709, 85149, 'en', 'name', 'Ji Hua Laboratory'),
(103710, 85149, 'zh', 'name', 'å­£åŽå®žéŖŒå®¤'),
(103711, 85150, 'en', 'name', 'North China Coal Medical University'),
(103712, 85151, 'no_lang_code', 'name', 'Fresenius Kabi (India)'),
(103713, 85152, 'en', 'name', 'University of Transport and Communications'),
(103714, 85152, 'vi', 'name', 'TrĘ°į»ng đẔi hį»c Giao thĆ“ng vįŗ­n tįŗ£i'),
(103715, 85153, 'en', 'name', 'Yugra State University'),
(103716, 85153, 'ru', 'name', 'Югорский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(103717, 85154, 'no_lang_code', 'name', 'Shanxi Coal Transportation and Sales Group (China)'),
(103718, 85154, 'zh', 'name', 'å±±č„æē…¤ē‚­čæé”€é›†å›¢ęœ‰é™å…¬åø ęŠ€ęœÆę”ÆęŒ'),
(103719, 85155, 'en', 'name', 'National University of San Marcos'),
(103720, 85155, 'es', 'name', 'Universidad Nacional Mayor de San Marcos'),
(103721, 85156, 'en', 'name', 'Gordon and Betty Moore Foundation'),
(103722, 85157, 'it', 'name', 'Associazione Italiana Sclerosi Multipla'),
(103723, 85158, 'no_lang_code', 'name', 'Mellanox Technologies (United States)'),
(103724, 85159, 'no_lang_code', 'name', 'Kongsberg Maritime (Norway)'),
(103725, 85160, 'en', 'name', 'Mathematical Association of America'),
(103726, 85161, 'en', 'name', 'Kawasaki Medical University'),
(103727, 85162, 'en', 'name', 'Alberto Hurtado University'),
(103728, 85162, 'es', 'name', 'Universidad Alberto Hurtado'),
(103729, 85163, 'no_lang_code', 'name', 'Plastsveis (Norway)'),
(103730, 85164, 'en', 'name', 'Malaviya National Institute of Technology Jaipur'),
(103731, 85164, 'hi', 'name', 'ą¤®ą¤¾ą¤²ą¤µą„€ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(103732, 85165, 'en', 'name', 'Water Research Institute'),
(103733, 85166, 'en', 'name', 'Pound Civil Justice Institute'),
(103734, 85167, 'en', 'name', 'Te Whare Wānanga o Awanuiārangi'),
(103735, 85168, 'en', 'name', 'Japan Construction Information Center'),
(103736, 85168, 'ja', 'name', 'ę—„ęœ¬å»ŗčØ­ęƒ…å ±ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(103737, 85169, 'en', 'name', 'Guy Harvey Ocean Foundation'),
(103738, 85170, 'es', 'name', 'Fundacion Agencia Aragonesa para la Investigacion y el Desarrollo'),
(103739, 85171, 'en', 'name', 'Council of Science Editors'),
(103740, 85172, 'no_lang_code', 'name', 'Eyegaze (United States)'),
(103741, 85173, 'en', 'name', 'University of Sumatera'),
(103742, 85174, 'en', 'name', 'PharmAccess Group'),
(103743, 85175, 'en', 'name', 'Infrastructure Canada'),
(103744, 85176, 'en', 'name', 'West China Hospital of Sichuan University'),
(103745, 85177, 'en', 'name', 'Institute for Operations Research and the Management Sciences'),
(103746, 85178, 'en', 'name', 'University of the Potomac'),
(103747, 85179, 'en', 'name', 'Walter S. Johnson Foundation'),
(103748, 85180, 'en', 'name', 'Churchill Northern Studies Centre'),
(103749, 85181, 'no_lang_code', 'name', 'Willis Towers Watson (United Kingdom)'),
(103750, 85182, 'en', 'name', 'Ross Foundation'),
(103751, 85183, 'en', 'name', 'Jinzhong University'),
(103752, 85183, 'zh', 'name', '晋中学院'),
(103753, 85184, 'en', 'name', 'University of the Philippines Visayas'),
(103754, 85185, 'en', 'name', 'Gubkin Russian State University of Oil and Gas'),
(103755, 85185, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ нефти Šø газа имени И. М. Š“ŃƒŠ±ŠŗŠøŠ½Š°'),
(103756, 85186, 'en', 'name', 'Blanton Peale Institute and Counseling Center'),
(103757, 85187, 'en', 'name', 'Primorsky State Agricultural Academy'),
(103758, 85187, 'ru', 'name', 'ŠŸŃ€ŠøŠ¼Š¾ĢŃ€ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°ĢŃ€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃĢŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµĢŠ¼ŠøŃ'),
(103759, 85188, 'en', 'name', 'Consumer Healthcare Products Association'),
(103760, 85189, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š¼Š°ŃŃ‚Š°Ń†Ń‚Š²Š°Ńž'),
(103761, 85189, 'en', 'name', 'Belarusian State Academy of Arts'),
(103762, 85189, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(103763, 85190, 'no_lang_code', 'name', 'Canfor (Canada)'),
(103764, 85191, 'en', 'name', 'Aqua Terra'),
(103765, 85192, 'en', 'name', 'University College Maastricht'),
(103766, 85193, 'en', 'name', 'Hispanics in Philanthropy'),
(103767, 85194, 'en', 'name', 'Basil Hetzel Institute'),
(103768, 85195, 'de', 'name', 'Gemeinsamer Bundesausschuss'),
(103769, 85195, 'en', 'name', 'Federal Joint Committee'),
(103770, 85196, 'en', 'name', 'Sax Institute'),
(103771, 85197, 'no_lang_code', 'name', 'Interoute (Norway)'),
(103772, 85198, 'nl', 'name', 'Mobiel 21'),
(103773, 85199, 'no_lang_code', 'name', 'AMS (Singapore)'),
(103774, 85200, 'en', 'name', 'Shangqiu Normal University'),
(103775, 85200, 'zh', 'name', 'å•†äø˜åøˆčŒƒå­¦é™¢'),
(103776, 85201, 'en', 'name', 'Japan Heart Foundation'),
(103777, 85201, 'ja', 'name', 'ę—„ęœ¬åæƒč‡“č²”å›£'),
(103778, 85202, 'fr', 'name', 'Wallonie-Bruxelles International'),
(103779, 85203, 'en', 'name', 'American Cryonics Society'),
(103780, 85204, 'en', 'name', 'Department of Drug and Alcohol Programs'),
(103781, 85205, 'fr', 'name', 'Banque publique d''investissement, Bpifrance'),
(103782, 85206, 'no_lang_code', 'name', 'Arrowhead Pharmaceuticals (United States)'),
(103783, 85207, 'no_lang_code', 'name', 'Minophagen Pharmaceutical (Japan)'),
(103784, 85208, 'en', 'name', 'Secretariat of Agriculture, Livestock, Rural Development, Fisheries and Food'),
(103785, 85208, 'es', 'name', 'Secretaría de Agricultura, Ganadería, Desarrollo Rural, Pesca y Alimentación'),
(103786, 85209, 'en', 'name', 'Max and Minnie Tomerlin Voelcker Fund'),
(103787, 85210, 'no_lang_code', 'name', 'Mirada Medical (United Kingdom)'),
(103788, 85211, 'ja', 'name', 'ć‚ć™ć‹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(103789, 85211, 'no_lang_code', 'name', 'ASKA Pharmaceutical (Japan)'),
(103790, 85212, 'en', 'name', 'Kirkhouse Trust'),
(103791, 85213, 'en', 'name', 'Crop Science Society of America'),
(103792, 85214, 'en', 'name', 'Maria Fertility Hospital'),
(103793, 85215, 'no_lang_code', 'name', 'Alexander Street Press (United States)'),
(103794, 85216, 'es', 'name', 'Hospital Virgen de la Torre'),
(103795, 85217, 'en', 'name', 'Far East Geological Institute'),
(103796, 85217, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ геологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(103797, 85218, 'de', 'name', 'Deutsche Kniegesellschaft e.V.'),
(103798, 85218, 'en', 'name', 'German Knee Society'),
(103799, 85219, 'en', 'name', 'Greater Manchester West Mental Health NHS Foundation Trust'),
(103800, 85220, 'en', 'name', 'National Bureau of Fish Genetic Resources'),
(103801, 85221, 'en', 'name', 'National Yang Ming University'),
(103802, 85222, 'en', 'name', 'Chang Gung University of Science and Technology'),
(103803, 85223, 'en', 'name', 'Wolkite University'),
(103804, 85224, 'en', 'name', 'Ministry of Transportation of Ontario'),
(103805, 85224, 'fr', 'name', 'MinistĆØre des Transports'),
(103806, 85225, 'en', 'name', 'Art Institute of Tampa'),
(103807, 85226, 'en', 'name', 'Kohno Clinical Medicine Research Institute'),
(103808, 85226, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę²³é‡Žč‡Øē‰€åŒ»å­¦ē ”ē©¶ę‰€'),
(103809, 85227, 'en', 'name', 'National Institute of Technology, Asahikawa College'),
(103810, 85227, 'ja', 'name', 'ę—­å·å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(103811, 85228, 'en', 'name', 'Egg Industry Center'),
(103812, 85229, 'en', 'name', 'IMDEA Materials'),
(103813, 85229, 'es', 'name', 'Instituto IMDEA Materiales'),
(103814, 85230, 'no_lang_code', 'name', 'Vjatka State Humanitarian University'),
(103815, 85231, 'en', 'name', 'Cass Foundation'),
(103816, 85232, 'en', 'name', 'Beloit College'),
(103817, 85233, 'pl', 'name', 'Akademia Pomorska w Słupsku'),
(103818, 85234, 'en', 'name', 'South University Savannah'),
(103819, 85235, 'en', 'name', 'VA Western New York Healthcare System'),
(103820, 85236, 'no_lang_code', 'name', 'Nordic Nanovector (Norway)'),
(103821, 85237, 'en', 'name', 'Medicines Discovery Catapult'),
(103822, 85238, 'en', 'name', 'Swedish Cancer Institute'),
(103823, 85239, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³Ł†Ų¬ŁˆŲ±'),
(103824, 85239, 'en', 'name', 'Senghor University'),
(103825, 85239, 'fr', 'name', 'UniversitƩ Senghor d''Alexandrie'),
(103826, 85240, 'no_lang_code', 'name', 'Excel Technology (United States)'),
(103827, 85241, 'no_lang_code', 'name', 'Truphatek (Israel)'),
(103828, 85242, 'en', 'name', 'Nanjing Forest Police College'),
(103829, 85242, 'zh', 'name', 'å—äŗ¬ę£®ęž—č­¦åÆŸå­¦é™¢'),
(103830, 85243, 'no_lang_code', 'name', 'BillerudKorsnƤs (Sweden)'),
(103831, 85244, 'no_lang_code', 'name', 'Shodor'),
(103832, 85245, 'no_lang_code', 'name', 'Iveco (Italy)'),
(103833, 85246, 'en', 'name', 'Japan Association for Chemical Innovation'),
(103834, 85246, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę–°åŒ–å­¦ęŠ€č”“ęŽØé€²å”ä¼š'),
(103835, 85247, 'no_lang_code', 'name', 'Abt SRBI'),
(103836, 85248, 'en', 'name', 'The Wine Monopoly'),
(103837, 85248, 'no_lang_code', 'name', 'Vinmonopolet (Norway)'),
(103838, 85249, 'en', 'name', 'National Institute of Ecology'),
(103839, 85249, 'ko', 'name', 'źµ­ė¦½ģƒķƒœģ›'),
(103840, 85250, 'en', 'name', 'Nanchang Institute of Technology'),
(103841, 85250, 'zh', 'name', 'å—ę˜Œå·„ēØ‹å­¦é™¢'),
(103842, 85251, 'en', 'name', 'Kenneth T. and Eileen L. Norris Foundation'),
(103843, 85252, 'en', 'name', 'Center for Adoption Support and Education'),
(103844, 85253, 'no_lang_code', 'name', 'Nui (Norway)'),
(103845, 85254, 'no_lang_code', 'name', 'Computer Sciences Corporation (Australia)'),
(103846, 85255, 'no_lang_code', 'name', 'T Mobile (Germany)'),
(103847, 85256, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© ŲØŲ§Ł„ŲØŲ­Ų±ŁŠŁ†'),
(103848, 85256, 'en', 'name', 'American University of Bahrain'),
(103849, 85257, 'de', 'name', 'Institutszentrum Schloss Birlinghoven'),
(103850, 85257, 'en', 'name', 'Fraunhofer Institute Centre Schloss Birlinghoven'),
(103851, 85258, 'en', 'name', 'StemCyte'),
(103852, 85259, 'en', 'name', 'National Cowboy & Western Heritage Museum'),
(103853, 85260, 'en', 'name', 'South African Institute for Aquatic Biodiversity'),
(103854, 85261, 'en', 'name', 'Nilamber Pitamber University'),
(103855, 85261, 'hi', 'name', 'ą¤Øą„€ą¤²ą¤¾ą¤®ą„ą¤¬ą¤° ą¤Ŗą„€ą¤¤ą¤¾ą¤®ą„ą¤¬ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(103856, 85262, 'en', 'name', 'Hosokawa Powder Technology Foundation'),
(103857, 85262, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ćƒ›ć‚½ć‚«ćƒÆē²‰ä½“å·„å­¦ęŒÆčˆˆč²”å›£'),
(103858, 85263, 'en', 'name', 'Alexandria Technical and Community College'),
(103859, 85264, 'en', 'name', 'National Institute of Astrophysics, Optics and Electronics'),
(103860, 85264, 'es', 'name', 'Instituto Nacional de AstrofĆ­sica, Ɠptica y Electrónica'),
(103861, 85265, 'en', 'name', 'Bear Necessities Pediatric Cancer Foundation'),
(103862, 85266, 'en', 'name', 'Larry L. Hillblom Foundation'),
(103863, 85267, 'fr', 'name', 'Conseil rƩgional du Centre-Val de Loire'),
(103864, 85268, 'en', 'name', 'Northern Seminary'),
(103865, 85269, 'en', 'name', 'Punjab Engineering College'),
(103866, 85269, 'hi', 'name', 'ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ ą¤‡ą¤‚ą¤œą¤æą¤Øą¤æą¤Æą¤°ą¤æą¤‚ą¤— ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(103867, 85270, 'en', 'name', 'Wichita Medical Research and Education Foundation'),
(103868, 85271, 'ko', 'name', 'ģœ ķ•œģ–‘ķ–‰'),
(103869, 85271, 'no_lang_code', 'name', 'Yuhan (South Korea)'),
(103870, 85272, 'en', 'name', 'Anusandhan Trust'),
(103871, 85273, 'no_lang_code', 'name', 'Medicon'),
(103872, 85274, 'en', 'name', 'Islamic Azad University, Mashhad'),
(103873, 85274, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد مؓهد'),
(103874, 85275, 'en', 'name', 'Academy of Korean Studies'),
(103875, 85275, 'ko', 'name', 'ķ•œźµ­ķ•™ģ¤‘ģ•™ģ—°źµ¬ģ›'),
(103876, 85276, 'no_lang_code', 'name', 'Roquette FrĆØres (France)'),
(103877, 85277, 'no_lang_code', 'name', 'Tomey (Japan)'),
(103878, 85278, 'en', 'name', 'Palestinian American Research Council'),
(103879, 85279, 'en', 'name', 'Society for the Study of Reproduction'),
(103880, 85280, 'en', 'name', 'Lighthouse Academies'),
(103881, 85281, 'en', 'name', 'International Fibrodysplasia Ossificans Progressiva Association'),
(103882, 85282, 'no_lang_code', 'name', 'ARUP Laboratories (United States)'),
(103883, 85283, 'no_lang_code', 'name', 'Dansk Selskab for AnƦstesiologi og Intensiv Medicin (Denmark)'),
(103884, 85284, 'en', 'name', 'Ta Hwa University of Science and Technology'),
(103885, 85284, 'zh', 'name', 'å¤§čÆē§‘ęŠ€å¤§å­ø'),
(103886, 85285, 'en', 'name', 'American Society of Head and Neck Radiology'),
(103887, 85286, 'en', 'name', 'Syarif Hidayatullah State Islamic University Jakarta'),
(103888, 85286, 'id', 'name', 'Universitas Islam Negeri Syarif Hidayatullah Jakarta'),
(103889, 85287, 'en', 'name', 'Latin American and Caribbean Consortium of Engineering Institutions'),
(103890, 85288, 'en', 'name', 'National Agricultural Research Center for Tohoku Region'),
(103891, 85289, 'es', 'name', 'Universidad Andina Simón Bolívar'),
(103892, 85290, 'en', 'name', 'Seoul National University Bundang Hospital'),
(103893, 85290, 'ko', 'name', '분당 ģ„œģšøėŒ€ė³‘ģ›'),
(103894, 85291, 'en', 'name', 'Sacred Heart Hospital'),
(103895, 85292, 'en', 'name', 'Physician Assistant Education Association'),
(103896, 85293, 'en', 'name', 'Honolulu University'),
(103897, 85294, 'no_lang_code', 'name', 'Cermavein (France)'),
(103898, 85295, 'en', 'name', 'American University for Humanities'),
(103899, 85296, 'en', 'name', 'Hilda and Preston Davis Foundation'),
(103900, 85297, 'no_lang_code', 'name', 'Mateon Therapeutics (United States)'),
(103901, 85298, 'no_lang_code', 'name', 'OSGeo'),
(103902, 85299, 'en', 'name', 'Synchrotron Light Research Institute'),
(103903, 85300, 'en', 'name', 'The Medical Oncology Centre of Rosebank'),
(103904, 85301, 'en', 'name', 'Mid Atlantic Fishery Management Council'),
(103905, 85302, 'en', 'name', 'Sri Venkateswara Medical College and Ruia Hospital'),
(103906, 85302, 'te', 'name', 'ą°¶ą±ą°°ą±€ ą°µą±†ą°‚ą°•ą°Ÿą±‡ą°¶ą±ą°µą°° ą°µą±ˆą°¦ą±ą°Æ కళాశాల మరియు రుయా ą°†ą°øą±ą°Ŗą°¤ą±ą°°ą°æ'),
(103907, 85303, 'no_lang_code', 'name', 'Boston Biomedical (United States)'),
(103908, 85304, 'en', 'name', 'The Salvation Army'),
(103909, 85305, 'no_lang_code', 'name', 'Sematech (United States)'),
(103910, 85306, 'no_lang_code', 'name', 'CapeSym (United States)'),
(103911, 85307, 'no_lang_code', 'name', 'Bard (France)'),
(103912, 85308, 'en', 'name', 'Shenzhen Polytechnic'),
(103913, 85308, 'zh', 'name', 'ę·±åœ³čŒäøšęŠ€ęœÆå­¦é™¢'),
(103914, 85309, 'en', 'name', 'ECOG-ACRIN Cancer Research Group'),
(103915, 85310, 'no_lang_code', 'name', 'Frontier Scientific (United States)'),
(103916, 85311, 'en', 'name', 'Great Barrier Reef Foundation'),
(103917, 85312, 'en', 'name', 'Lorentz Center'),
(103918, 85313, 'fr', 'name', 'CancĆ©ropĆ“le Ǝle-de-France'),
(103919, 85314, 'en', 'name', 'Amazon Conservation Association'),
(103920, 85315, 'en', 'name', 'Shiga University of Medical Science'),
(103921, 85315, 'ja', 'name', 'ę»‹č³€åŒ»ē§‘å¤§å­¦'),
(103922, 85316, 'de', 'name', 'Helmut Horten Stiftung'),
(103923, 85317, 'no_lang_code', 'name', 'Molecular Vista (United States)'),
(103924, 85318, 'en', 'name', 'K''ima:w Medical Center'),
(103925, 85319, 'en', 'name', 'Quebec Breast Cancer Foundation'),
(103926, 85319, 'fr', 'name', 'Fondation du cancer du sein du QuƩbec'),
(103927, 85320, 'en', 'name', 'Western Grains Research Foundation'),
(103928, 85321, 'en', 'name', 'Research Councils UK'),
(103929, 85322, 'ja', 'name', 'ć‚»ć‚¤ć‚³ćƒ¼ć‚Øćƒ—ć‚½ćƒ³ę Ŗå¼ä¼šē¤¾'),
(103930, 85322, 'no_lang_code', 'name', 'Seiko Epson (Japan)'),
(103931, 85323, 'en', 'name', 'The Australasian Institute of Judicial Administration'),
(103932, 85324, 'no_lang_code', 'name', 'Iveco (United Kingdom)'),
(103933, 85325, 'es', 'name', 'Centro de Investigación Biomédica en Red Diabetes y Enfermedades Metabólicas Asociadas'),
(103934, 85326, 'en', 'name', 'Tennessee Department of Education'),
(103935, 85327, 'en', 'name', 'Philanthropic Educational Organization'),
(103936, 85328, 'en', 'name', 'Saskatchewan Cancer Agency'),
(103937, 85329, 'no_lang_code', 'name', 'Simpson Strong-Tie (United States)'),
(103938, 85330, 'en', 'name', 'Les Roches GruyĆØre University of Applied Sciences'),
(103939, 85331, 'en', 'name', 'Canadian Economics Association'),
(103940, 85331, 'fr', 'name', 'Association canadienne d''Ʃconomique'),
(103941, 85332, 'en', 'name', 'Jiangsu Second Normal University'),
(103942, 85332, 'zh', 'name', 'ę±Ÿč‹ē¬¬äŗŒåøˆčŒƒå­¦é™¢'),
(103943, 85333, 'en', 'name', 'New Zealand Law Foundation'),
(103944, 85334, 'en', 'name', 'Centre for Medical Systems Biology'),
(103945, 85335, 'es', 'name', 'Universidad SalvadoreƱa Alberto Masferrer'),
(103946, 85336, 'en', 'name', 'Scotland and Northern Ireland Forum for Environmental Research'),
(103947, 85337, 'no_lang_code', 'name', 'Koch Industries (United States)'),
(103948, 85338, 'en', 'name', 'Argosy University'),
(103949, 85339, 'de', 'name', 'Heinz Maier-Leibnitz Zentrum'),
(103950, 85340, 'en', 'name', 'Easton & Otley College'),
(103951, 85341, 'no_lang_code', 'name', 'Retroscreen Virology (United Kingdom)'),
(103952, 85342, 'pt', 'name', 'Sociedade Brasileira de Endoscopia Digestiva'),
(103953, 85343, 'en', 'name', 'Canadian Polar Commission'),
(103954, 85344, 'de', 'name', 'Rhoen-Klinikum AG'),
(103955, 85345, 'en', 'name', 'Shanghai Municipal Agricultural Commission'),
(103956, 85345, 'zh', 'name', 'äøŠęµ·åø‚å†œäøšå§”å‘˜ä¼š'),
(103957, 85346, 'no_lang_code', 'name', 'Controls and Data Services (United Kingdom)'),
(103958, 85347, 'en', 'name', 'Lovely Professional University'),
(103959, 85347, 'pa', 'name', 'ਲਵਲੀ ąØŖą©ąØ°ą©‹ąØ«ą©ˆąØøąØ¼ąØØąØ² ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(103960, 85348, 'en', 'name', 'St. Mary''s Hospital Lacor'),
(103961, 85349, 'en', 'name', 'Institute for Water of the Republic of Slovenia'),
(103962, 85350, 'de', 'name', 'Max-Planck-Institut für Mathematik in den Naturwissenschaften'),
(103963, 85350, 'en', 'name', 'Max Planck Institute for Mathematics in the Sciences'),
(103964, 85351, 'de', 'name', 'Marga und Walter Boll - Stiftung'),
(103965, 85352, 'en', 'name', 'West London Research Network'),
(103966, 85353, 'en', 'name', 'Politecnica Salesiana University'),
(103967, 85353, 'es', 'name', 'Universidad PolitƩcnica Salesiana'),
(103968, 85354, 'no_lang_code', 'name', 'Satavahana University'),
(103969, 85355, 'en', 'name', 'Scottish Alliance for Geoscience, Environment and Society'),
(103970, 85356, 'ca', 'name', 'Hospital Universitari Sant Joan D''Alacant'),
(103971, 85356, 'en', 'name', 'Hospital San Juan de Alicante'),
(103972, 85357, 'no_lang_code', 'name', 'Space Systems Research Corporation (United States)'),
(103973, 85358, 'en', 'name', 'Lung Cancer Research Foundation'),
(103974, 85359, 'no_lang_code', 'name', 'Cray (United Kingdom)'),
(103975, 85360, 'en', 'name', 'Mogadishu Somali Turkish Training and Research Hospital'),
(103976, 85361, 'no_lang_code', 'name', 'Provexis Limited'),
(103977, 85362, 'no_lang_code', 'name', 'Imanova (United Kingdom)'),
(103978, 85363, 'en', 'name', 'HIV Research Trust'),
(103979, 85364, 'en', 'name', 'Southeast Asian Fisheries Development Center'),
(103980, 85365, 'no_lang_code', 'name', 'Eurofins (Netherlands)'),
(103981, 85366, 'en', 'name', 'Bone and Joint Canada'),
(103982, 85367, 'no_lang_code', 'name', 'Palmetto Pharmaceuticals (United States)'),
(103983, 85368, 'en', 'name', 'French School of Asian Studies'),
(103984, 85368, 'fr', 'name', 'Ɖcole FranƧaise d''ExtrĆŖme-Orient'),
(103985, 85369, 'en', 'name', 'National Agency for Social Insurance'),
(103986, 85370, 'en', 'name', 'Colorado Office of Economic Development and International Trade'),
(103987, 85371, 'en', 'name', 'University of Mataram'),
(103988, 85371, 'id', 'name', 'Universitas Mataram'),
(103989, 85372, 'en', 'name', 'Kothiwal Dental College and Research Centre'),
(103990, 85373, 'en', 'name', 'Argosy University'),
(103991, 85374, 'en', 'name', 'Illawarra Shoalhaven Local Health District'),
(103992, 85375, 'no_lang_code', 'name', 'SK Chemicals (South Korea)'),
(103993, 85376, 'en', 'name', 'State Key Laboratory of Oil and Gas Reservoir Geology and Exploitation'),
(103994, 85376, 'zh', 'name', 'ę²¹ę°”č—åœ°č“ØåŠå¼€å‘å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(103995, 85377, 'en', 'name', 'Scottish Rite Freemasonry'),
(103996, 85378, 'no_lang_code', 'name', 'Nara Gakuen University'),
(103997, 85379, 'en', 'name', 'Washington Drug and Alcohol Commission'),
(103998, 85380, 'en', 'name', 'Materials innovation institute'),
(103999, 85381, 'en', 'name', 'Cancer Research Malaysia'),
(104000, 85382, 'en', 'name', 'The Sherwood Institute'),
(104001, 85383, 'en', 'name', 'State Key Laboratory on Integrated Optoelectronics'),
(104002, 85383, 'zh', 'name', 'é›†ęˆå…‰ē”µå­å­¦å›½å®¶é‡ē‚¹č”åˆå®žéŖŒå®¤'),
(104003, 85384, 'no_lang_code', 'name', 'Fisabio'),
(104004, 85385, 'en', 'name', 'Ryazan State Radiotechnical University'),
(104005, 85386, 'en', 'name', 'Zunyi Normal College'),
(104006, 85386, 'zh', 'name', 'éµä¹‰åøˆčŒƒå­¦é™¢'),
(104007, 85387, 'en', 'name', 'Bunka Womens University Muroran Junior College'),
(104008, 85387, 'ja', 'name', 'ę–‡åŒ–å„³å­å¤§å­¦å®¤č˜­ēŸ­ęœŸå¤§å­¦'),
(104009, 85388, 'en', 'name', 'State Key Laboratory of Building Safety and Built Environment'),
(104010, 85389, 'en', 'name', 'Yugra State University'),
(104011, 85389, 'ru', 'name', 'Югорский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104012, 85390, 'de', 'name', 'RenƩ und Susanne Braginsky Stiftung'),
(104013, 85391, 'en', 'name', 'The Nature Conservancy'),
(104014, 85392, 'no_lang_code', 'name', 'Apotex (Hungary)'),
(104015, 85393, 'no_lang_code', 'name', 'CH2M Hill (United Kingdom)'),
(104016, 85394, 'fr', 'name', 'Centre EuropĆ©en d’Etudes de SĆ©curitĆ© et d’Analyse des Risques'),
(104017, 85395, 'no_lang_code', 'name', 'Cytec (Austria)'),
(104018, 85396, 'en', 'name', 'Hualien Armed Forces General Hospital'),
(104019, 85396, 'zh', 'name', 'åœ‹č»čŠ±č“®ēø½é†«é™¢'),
(104020, 85397, 'en', 'name', 'Morgan Adams Foundation'),
(104021, 85398, 'en', 'name', 'Tsukuba College of Technology'),
(104022, 85399, 'no_lang_code', 'name', 'ChanTest (United States)'),
(104023, 85400, 'en', 'name', 'National Radio Research Agency'),
(104024, 85401, 'no_lang_code', 'name', 'Alcatel-Lucent (Germany)'),
(104025, 85402, 'en', 'name', 'District of Columbia Space Grant Consortium'),
(104026, 85403, 'en', 'name', 'New Zealand Association of Scientists'),
(104027, 85404, 'en', 'name', 'Easter Seals Delaware & Marylands Eastern Shore'),
(104028, 85405, 'no_lang_code', 'name', 'Avid Bioservices (United States)'),
(104029, 85406, 'en', 'name', 'Texas Tech University'),
(104030, 85407, 'en', 'name', 'Swedish Carnivore Association'),
(104031, 85407, 'sv', 'name', 'Svenska Rovdjursfƶreningen'),
(104032, 85408, 'en', 'name', 'Ashridge Business School'),
(104033, 85409, 'no_lang_code', 'name', 'Tempronics (United States)'),
(104034, 85410, 'en', 'name', 'Military Technical Institute'),
(104035, 85411, 'en', 'name', 'Botanical Survey of India'),
(104036, 85412, 'en', 'name', 'Hanoi University of Natural Resources and Environment'),
(104037, 85412, 'vi', 'name', 'ĐẔi hį»c TĆ i nguyĆŖn vĆ  MĆ“i trĘ°į»ng HĆ  Nį»™i'),
(104038, 85413, 'en', 'name', 'Macula and Retina Institute'),
(104039, 85414, 'en', 'name', 'Society for the Study of School Psychology'),
(104040, 85415, 'en', 'name', 'Massachusetts Clean Energy Center'),
(104041, 85416, 'en', 'name', 'Cystic Fibrosis Australia'),
(104042, 85417, 'en', 'name', 'University Hospital Foundation'),
(104043, 85418, 'no_lang_code', 'name', 'Shire (Canada)'),
(104044, 85419, 'en', 'name', 'American Health Quality Association'),
(104045, 85420, 'en', 'name', 'National Alliance of State and Territorial AIDS Directors'),
(104046, 85421, 'en', 'name', 'Colorado Springs Neurological Associates'),
(104047, 85422, 'en', 'name', 'Southern African Centre for Infectious Disease Surveillance'),
(104048, 85423, 'fr', 'name', 'Centre Hospitalier de Saint-Quentin'),
(104049, 85424, 'en', 'name', 'Donetsk National Medical University'),
(104050, 85424, 'ru', 'name', 'Донецкий Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. Š“Š¾Ń€ŃŒŠŗŠ¾Š³Š¾'),
(104051, 85424, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Максима Š“Š¾Ń€ŃŒŠŗŠ¾Š³Š¾'),
(104052, 85425, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأندلس Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ©'),
(104053, 85425, 'en', 'name', 'Al Andalus University'),
(104054, 85426, 'en', 'name', 'Jining Normal University'),
(104055, 85427, 'en', 'name', 'Whitehall Foundation'),
(104056, 85428, 'en', 'name', 'New Brunswick Health Research Foundation'),
(104057, 85429, 'no_lang_code', 'name', 'Recombinetics (United States)'),
(104058, 85430, 'no_lang_code', 'name', 'Tencent (China)'),
(104059, 85430, 'zh', 'name', 'č…¾č®ÆęŽ§č‚”ęœ‰é™å…¬åø'),
(104060, 85431, 'en', 'name', 'Npistanbul Brain Hospital'),
(104061, 85431, 'tr', 'name', 'Npistanbul Beyin Hastanesi'),
(104062, 85432, 'no_lang_code', 'name', 'Rubicon Genomics (United States)'),
(104063, 85433, 'lv', 'name', 'Banku Augstskola'),
(104064, 85434, 'en', 'name', 'Texas Tech University Health Sciences Center'),
(104065, 85435, 'no_lang_code', 'name', 'Adventium Enterprises (United States)'),
(104066, 85436, 'en', 'name', 'Caplan Foundation for Early Childhood'),
(104067, 85437, 'en', 'name', 'Kangnam Sacred Heart Hospital'),
(104068, 85438, 'en', 'name', 'San Leandro Medical Center'),
(104069, 85439, 'en', 'name', 'The Chicago School of Professional Psychology'),
(104070, 85440, 'no_lang_code', 'name', 'United Technologies (Germany)'),
(104071, 85441, 'no_lang_code', 'name', 'oekom'),
(104072, 85442, 'en', 'name', 'The Alzheimer Society of Ireland'),
(104073, 85443, 'en', 'name', 'Harbin Institute of Technology Shenzhen Graduate School'),
(104074, 85443, 'zh', 'name', 'å“ˆå°”ę»Øå·„äøšå¤§å­¦ę·±åœ³ē ”ē©¶ē”Ÿé™¢'),
(104075, 85444, 'en', 'name', 'Endangered Language Fund'),
(104076, 85445, 'no_lang_code', 'name', 'Duchossois Group (United States)'),
(104077, 85446, 'ar', 'name', 'بريدة ŁƒŁ„ŁŠŲ§ŲŖ'),
(104078, 85446, 'en', 'name', 'Buraydah Colleges'),
(104079, 85447, 'en', 'name', 'Slavonic State Pedagogical University'),
(104080, 85448, 'en', 'name', 'Islamic Azad University, Shahrood'),
(104081, 85448, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų“Ų§Ł‡Ų±ŁˆŲÆ'),
(104082, 85449, 'en', 'name', 'National Museum of Australia'),
(104083, 85450, 'en', 'name', 'Eurasian Humanities Institute'),
(104084, 85450, 'kk', 'name', 'Š•ŃƒŃ€Š°Š·ŠøŃ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š»Ń‹Ņ› ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(104085, 85451, 'en', 'name', 'Kelliher Charitable Trust'),
(104086, 85452, 'en', 'name', 'Foundation for Alcohol Research and Education'),
(104087, 85453, 'en', 'name', 'Erie Community Foundation'),
(104088, 85454, 'en', 'name', 'Guilin University'),
(104089, 85454, 'zh', 'name', 'ę”‚ęž—å­¦é™¢'),
(104090, 85455, 'en', 'name', 'Konkuk University Medical Center'),
(104091, 85456, 'en', 'name', 'Norwegian Physiotherapist Association'),
(104092, 85456, 'no', 'name', 'Norsk Fysioterapeutforbund'),
(104093, 85457, 'en', 'name', 'Washington Academy of Sciences'),
(104094, 85458, 'en', 'name', 'Estonian Research Council'),
(104095, 85459, 'en', 'name', 'Council for the Central Laboratory of the Research Councils'),
(104096, 85460, 'en', 'name', 'Future Forests Research'),
(104097, 85461, 'en', 'name', 'Japan Institute of the Moving Image'),
(104098, 85461, 'ja', 'name', 'ę—„ęœ¬ę˜ ē”»å¤§å­¦'),
(104099, 85462, 'en', 'name', 'Vietnam Institute for Advanced Study in Mathematics'),
(104100, 85462, 'vi', 'name', 'Viện nghiĆŖn cứu cao cįŗ„p về toĆ”n'),
(104101, 85463, 'en', 'name', 'Forces in Mind Trust'),
(104102, 85464, 'en', 'name', 'Beijing Planning Office of Philosophy and Social Science'),
(104103, 85464, 'zh', 'name', 'åŒ—äŗ¬åø‚å“²å­¦ē¤¾ä¼šē§‘å­¦č§„åˆ’åŠžå…¬å®¤'),
(104104, 85465, 'fr', 'name', 'UniversitƩ de Saint-Boniface'),
(104105, 85466, 'en', 'name', 'Freshwater Future'),
(104106, 85467, 'en', 'name', 'European Society for Paediatric Infectious Diseases'),
(104107, 85468, 'en', 'name', 'Midwest University'),
(104108, 85469, 'en', 'name', 'Naval Medical Research Institute'),
(104109, 85469, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›åŒ»å­¦ē ”ē©¶ę‰€'),
(104110, 85470, 'en', 'name', 'Ariadna Publishing'),
(104111, 85470, 'es', 'name', 'Ariadna Ediciones'),
(104112, 85471, 'en', 'name', 'Craig H Neilsen Foundation'),
(104113, 85472, 'no_lang_code', 'name', 'MKS Instruments (United States)'),
(104114, 85473, 'en', 'name', 'Kaohsiung Chang Gung Memorial Hospital'),
(104115, 85474, 'en', 'name', 'Mama Cash'),
(104116, 85475, 'en', 'name', 'University of the Philippines Mindanao'),
(104117, 85475, 'tl', 'name', 'Unibersidad ng Pilipinas Mindanao'),
(104118, 85476, 'en', 'name', 'National Center for Health Research'),
(104119, 85477, 'en', 'name', 'Meharry Medical College'),
(104120, 85478, 'en', 'name', 'Liaoning Shihua University'),
(104121, 85478, 'zh', 'name', 'č¾½å®ēŸ³ę²¹åŒ–å·„å¤§å­¦'),
(104122, 85479, 'en', 'name', 'Andrew McDonough B+ Foundation'),
(104123, 85480, 'no_lang_code', 'name', 'Papula-Nevinpat (Finland)'),
(104124, 85481, 'en', 'name', 'KIIT University'),
(104125, 85482, 'en', 'name', 'Sir Run Run Shaw Hospital'),
(104126, 85482, 'zh', 'name', 'ęµ™ę±Ÿå¤§å­¦åŒ»å­¦é™¢é™„å±žé‚µé€øå¤«åŒ»é™¢'),
(104127, 85483, 'en', 'name', 'Columbia Medical Practice'),
(104128, 85484, 'de', 'name', 'Schweizerische Anorexia Nervosa Stiftung'),
(104129, 85484, 'en', 'name', 'Swiss Anorexia Nervosa Foundation'),
(104130, 85485, 'en', 'name', 'National Institute of Science and Technology Policy'),
(104131, 85485, 'ja', 'name', 'ē§‘å­¦ęŠ€č”“ćƒ»å­¦č”“ę”æē­–ē ”ē©¶ę‰€'),
(104132, 85486, 'en', 'name', 'National Institute of Technology, Nagano College'),
(104133, 85486, 'ja', 'name', 'é•·é‡Žå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(104134, 85487, 'de', 'name', 'Zentrum für Qualität in der Pflege'),
(104135, 85488, 'de', 'name', 'Velux Stiftung'),
(104136, 85489, 'en', 'name', 'San Diego Natural History Museum'),
(104137, 85490, 'en', 'name', 'Tourettes Action'),
(104138, 85491, 'en', 'name', 'Food and Agriculture Organization of the United Nations'),
(104139, 85492, 'no_lang_code', 'name', 'asteur Institute of Iran'),
(104140, 85493, 'fr', 'name', 'Laboratoire de Neurobiologie & DƩveloppement'),
(104141, 85494, 'no_lang_code', 'name', 'Agro-Kanesho (Japan)'),
(104142, 85495, 'en', 'name', 'Institute of Physical Chemistry'),
(104143, 85496, 'ja', 'name', 'å››å¤©ēŽ‹åÆŗå¤§å­¦'),
(104144, 85496, 'no_lang_code', 'name', 'Shitennoji University'),
(104145, 85497, 'en', 'name', 'South East European University'),
(104146, 85497, 'mk', 'name', 'Универзитет на ŠˆŃƒŠ³Š¾ŠøŃŃ‚очна Европа'),
(104147, 85497, 'sq', 'name', 'Universiteti i Evropƫs Juglindore'),
(104148, 85497, 'tr', 'name', 'Güneydoğu Avrupa Üniversitesi'),
(104149, 85498, 'no_lang_code', 'name', 'Methuselah Foundation'),
(104150, 85499, 'en', 'name', 'Benefis Hospital'),
(104151, 85500, 'no_lang_code', 'name', 'Radius Health (United States)'),
(104152, 85501, 'en', 'name', 'Alopecia UK'),
(104153, 85502, 'en', 'name', 'Austrian Center for Medical Innovation and Technology'),
(104154, 85503, 'fr', 'name', 'Ɖcole d''Architecture de la Ville et des Territoires Ć  Marne-la-VallĆ©e'),
(104155, 85504, 'en', 'name', 'Sulaiman Al Rajhi Colleges'),
(104156, 85505, 'en', 'name', 'Oregon Health Policy and Research'),
(104157, 85506, 'en', 'name', 'Center for Children'),
(104158, 85507, 'en', 'name', 'Virtua'),
(104159, 85508, 'en', 'name', 'Nakatani Foundation'),
(104160, 85508, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ äø­č°·åŒ»å·„čØˆęø¬ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(104161, 85509, 'en', 'name', 'University of Professional Studies'),
(104162, 85510, 'en', 'name', 'Taizhou Second People''s Hospital'),
(104163, 85511, 'en', 'name', 'Fukushima National College of Technology');
INSERT INTO `ror_settings` VALUES
(104164, 85511, 'ja', 'name', 'ē¦å³¶å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(104165, 85512, 'en', 'name', 'Vern University of Applied Sciences'),
(104166, 85512, 'hr', 'name', 'VeleučiliŔte VERN'''),
(104167, 85513, 'en', 'name', 'University Hospital Dubrava'),
(104168, 85513, 'hr', 'name', 'Klinička Bolnica Dubrava'),
(104169, 85514, 'en', 'name', 'International University of Business and New Technologies'),
(104170, 85514, 'ru', 'name', 'Ярославский Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ бизнеса Šø новых технологий'),
(104171, 85515, 'no_lang_code', 'name', 'Flexterra (United States)'),
(104172, 85516, 'en', 'name', 'David Geffen School of Medicine at UCLA'),
(104173, 85517, 'no_lang_code', 'name', 'Biosense Webster (United States)'),
(104174, 85518, 'en', 'name', 'Clore Israel Foundation'),
(104175, 85518, 'he', 'name', 'קרן ×§×œ×•×Ø ×œ×™×©×Ø××œ'),
(104176, 85519, 'en', 'name', 'National Dong Hwa University'),
(104177, 85519, 'zh', 'name', 'åœ‹ē«‹ę±čÆå¤§å­ø'),
(104178, 85520, 'no_lang_code', 'name', 'Revolution Medicines (United States)'),
(104179, 85521, 'de', 'name', 'Johann Heinrich von Thünen-Institut'),
(104180, 85521, 'en', 'name', 'Johann Heinrich von Thünen Institute Federal Research Institute for Rural Areas, Forestry and Fisheries'),
(104181, 85522, 'ja', 'name', 'ē¦å±±å¤§å­¦'),
(104182, 85522, 'no_lang_code', 'name', 'Fukuyama University'),
(104183, 85523, 'en', 'name', 'Terry Fox Research Institute'),
(104184, 85523, 'fr', 'name', 'L''Institut de recherche Terry Fox'),
(104185, 85524, 'en', 'name', 'Barwon Health'),
(104186, 85525, 'en', 'name', 'Western Sussex Hospitals NHS Foundation Trust'),
(104187, 85526, 'en', 'name', 'Ophthalmic Research Institute of Australia'),
(104188, 85527, 'no_lang_code', 'name', 'Azure Summit Technology (United States)'),
(104189, 85528, 'en', 'name', 'St. Anne’s University Hospital Brno'),
(104190, 85529, 'en', 'name', 'Sir Ross and Sir Keith Smith Fund'),
(104191, 85530, 'ja', 'name', 'ē„žęˆøå¤™å·å­¦é™¢å¤§å­¦'),
(104192, 85530, 'no_lang_code', 'name', 'Kobe Shukugawa Gakuin University'),
(104193, 85531, 'no_lang_code', 'name', 'Intelligent Fingerprinting (United Kingdom)'),
(104194, 85532, 'en', 'name', 'Findlay Hancock County Public Library'),
(104195, 85533, 'en', 'name', 'School of Management and Engineering Vaud'),
(104196, 85534, 'en', 'name', 'Information Technology University'),
(104197, 85535, 'en', 'name', 'Institute for Problems in Mechanics'),
(104198, 85535, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем механики им.А.Š®.Ишлинского Российской акаГемии наук'),
(104199, 85536, 'no_lang_code', 'name', 'Interoute (Italy)'),
(104200, 85537, 'en', 'name', 'Asia Pacific Observatory on Health Systems and Policies'),
(104201, 85538, 'en', 'name', 'Office for Students'),
(104202, 85539, 'es', 'name', 'Centro Universitario de la Defensa'),
(104203, 85540, 'en', 'name', 'Workers Compensation Board of Alberta'),
(104204, 85541, 'en', 'name', 'Dutch Colorectal Cancer Group'),
(104205, 85542, 'en', 'name', 'Amen Clinics'),
(104206, 85543, 'en', 'name', 'National Disability Insurance Agency'),
(104207, 85544, 'en', 'name', 'Barth Syndrome Foundation'),
(104208, 85545, 'de', 'name', 'Fiskesekretariatet'),
(104209, 85545, 'en', 'name', 'Federal Research Centre For Fisheries'),
(104210, 85546, 'en', 'name', 'Society for Conservation Biology'),
(104211, 85547, 'no_lang_code', 'name', 'Taawon'),
(104212, 85548, 'en', 'name', 'Strayer University'),
(104213, 85549, 'fr', 'name', 'Thunken'),
(104214, 85550, 'en', 'name', 'John P. Hussman Foundation'),
(104215, 85551, 'en', 'name', 'Immune Tolerance Network'),
(104216, 85552, 'en', 'name', 'Society for Healthcare Epidemiology of America'),
(104217, 85553, 'en', 'name', 'Australian Education Research Organisation'),
(104218, 85554, 'en', 'name', 'The Taylor Matthews Foundation'),
(104219, 85555, 'de', 'name', 'Hochschulrektorenkonferenz'),
(104220, 85555, 'en', 'name', 'German Rectors'' Conference'),
(104221, 85556, 'en', 'name', 'National University of Water and Environmental Engineering'),
(104222, 85556, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного госпоГарства та ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń'),
(104223, 85557, 'no_lang_code', 'name', 'Denali Therapeutics (United States)'),
(104224, 85558, 'en', 'name', 'Maori Education Trust'),
(104225, 85559, 'ko', 'name', 'ģ§€ė†ˆģ•¤ģ»“ķ¼ė‹ˆ'),
(104226, 85559, 'no_lang_code', 'name', 'Genome and Company (South Korea)'),
(104227, 85560, 'en', 'name', 'Angiogenesis and Cancer Microenvironment Laboratory'),
(104228, 85560, 'fr', 'name', 'AngiogenĆØse et laboratoire sur le microenvironnement du cancer'),
(104229, 85561, 'en', 'name', 'Toronto Arts Council'),
(104230, 85562, 'de', 'name', 'Deutsche Gesellschaft für Internationale Zusammenarbeit'),
(104231, 85562, 'en', 'name', 'German Corporation for International Cooperation'),
(104232, 85563, 'ja', 'name', 'ć‚Ŗćƒ ćƒ­ćƒ³ę Ŗå¼ä¼šē¤¾'),
(104233, 85563, 'no_lang_code', 'name', 'Omron (Japan)'),
(104234, 85564, 'en', 'name', 'University of Texas Health Science Center at Dallas'),
(104235, 85565, 'no_lang_code', 'name', 'Orbotech (Israel)'),
(104236, 85566, 'en', 'name', 'Worldwide Universities Network'),
(104237, 85567, 'en', 'name', 'Research Center for Ecology and Environment of Central Asia'),
(104238, 85567, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äø­äŗšē”Ÿę€äøŽēŽÆå¢ƒē ”ē©¶äø­åæƒ'),
(104239, 85568, 'no_lang_code', 'name', 'Mountain Equipment Co-op (Canada)'),
(104240, 85569, 'en', 'name', 'James Madison Memorial Fellowship Foundation'),
(104241, 85570, 'en', 'name', 'Princess Takamatsu Cancer Research Fund'),
(104242, 85570, 'ja', 'name', 'é«˜ę¾ēŽ‹å„³ćŒć‚“ē ”ē©¶åŸŗé‡‘'),
(104243, 85571, 'fr', 'name', 'Centre QuƩbƩcois de Recherche et de DƩveloppement de l''Aluminium'),
(104244, 85572, 'de', 'name', 'Stiftung Mercator'),
(104245, 85573, 'no_lang_code', 'name', 'IEE (Luxembourg)'),
(104246, 85574, 'en', 'name', 'Alberta Crop Industry Development Fund'),
(104247, 85575, 'en', 'name', 'Hue University'),
(104248, 85575, 'vi', 'name', 'ĐẔi hį»c Huįŗæ'),
(104249, 85576, 'en', 'name', 'Fund for Astrophysical Research'),
(104250, 85577, 'en', 'name', 'Nova Scotia Health Research Foundation'),
(104251, 85578, 'no_lang_code', 'name', 'InfoUse'),
(104252, 85579, 'en', 'name', 'Association of Ontario Midwives'),
(104253, 85580, 'nl', 'name', 'Stichting MS Research'),
(104254, 85581, 'en', 'name', 'Anesthesia Quality Institute'),
(104255, 85582, 'en', 'name', 'Seattle Reproductive Medicine'),
(104256, 85583, 'en', 'name', 'Nanjing Institute of Industry Technology'),
(104257, 85583, 'zh', 'name', 'å—äŗ¬å·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(104258, 85584, 'de', 'name', 'Landeszentrum Gesundheit Nordrhein-Westfalen'),
(104259, 85585, 'en', 'name', 'Tokyo University of Agriculture and Technology'),
(104260, 85585, 'ja', 'name', 'ę±äŗ¬č¾²å·„å¤§å­¦'),
(104261, 85586, 'en', 'name', 'Norwegian Labour and Welfare Administration'),
(104262, 85587, 'no_lang_code', 'name', 'Vygon (France)'),
(104263, 85588, 'no_lang_code', 'name', 'Mondragon Assembly (Spain)'),
(104264, 85589, 'en', 'name', 'Korea Occupational Safety and Health Agency'),
(104265, 85589, 'ko', 'name', 'ģ•ˆģ „ė³“ź±“ź³µė‹Ø'),
(104266, 85590, 'en', 'name', 'American Sentinel University'),
(104267, 85591, 'en', 'name', 'Guizhou Minzu University'),
(104268, 85591, 'zh', 'name', 'č“µå·žę°‘ę—å¤§å­¦'),
(104269, 85592, 'en', 'name', 'Health & Medicine Policy Research Group'),
(104270, 85593, 'sv', 'name', 'Medicinska Understƶdsfƶreningen Liv och HƤlsa'),
(104271, 85594, 'en', 'name', 'Wuhan Institute of Bioengineering'),
(104272, 85594, 'zh', 'name', 'ę­¦ę±‰ē”Ÿē‰©å·„ēØ‹ē ”ē©¶ę‰€'),
(104273, 85595, 'en', 'name', 'Noguchi Thyroid Clinic and Hospital Foundation'),
(104274, 85595, 'ja', 'name', 'äæé™ŗåŒ»ē™‚ę©Ÿé–¢ åŒ»ē™‚ę³•äŗŗ é‡Žå£ē—…é™¢'),
(104275, 85596, 'bn', 'name', 'সিটি ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(104276, 85596, 'en', 'name', 'City University'),
(104277, 85597, 'en', 'name', 'Advance HE'),
(104278, 85598, 'no_lang_code', 'name', 'Calsonic Kansei (United Kingdom)'),
(104279, 85599, 'no_lang_code', 'name', 'STI Optronics (United States)'),
(104280, 85600, 'en', 'name', 'Wallops Flight Facility'),
(104281, 85601, 'no_lang_code', 'name', 'Mentor Graphics (United States)'),
(104282, 85602, 'no_lang_code', 'name', 'CCD Design & Ergonomics (United Kingdom)'),
(104283, 85603, 'en', 'name', 'Long Island University Hudson'),
(104284, 85604, 'en', 'name', 'Korea Health Promotion Institute'),
(104285, 85604, 'ko', 'name', 'ķ•œźµ­ź±“ź°•ģ¦ģ§„ź°œė°œģ›'),
(104286, 85605, 'nl', 'name', 'Nederlandse CF Registratie, Nederlandse Cystic Fibrosis Stichting'),
(104287, 85606, 'en', 'name', 'Capability Scotland'),
(104288, 85607, 'en', 'name', 'Stand Among Friends'),
(104289, 85608, 'en', 'name', 'Macaulay Development Trust'),
(104290, 85609, 'no_lang_code', 'name', 'Intra Cellular Therapies (United States)'),
(104291, 85610, 'en', 'name', 'Cerebral Palsy Alliance'),
(104292, 85611, 'en', 'name', 'Alliant International University'),
(104293, 85612, 'en', 'name', 'Magee-Womens Research Institute'),
(104294, 85613, 'no_lang_code', 'name', 'ARCA Biopharma (United States)'),
(104295, 85614, 'en', 'name', 'New Jersey Space Grant Consortium'),
(104296, 85615, 'fr', 'name', 'Fondation FondaMental'),
(104297, 85616, 'en', 'name', 'CPA Australia'),
(104298, 85617, 'pt', 'name', 'Associação Brasileira de Avaliação de Impacto'),
(104299, 85618, 'de', 'name', 'Deutsche Stiftung für Chronisch Kranke'),
(104300, 85619, 'no_lang_code', 'name', 'Intarcia Therapeutics (United States)'),
(104301, 85620, 'en', 'name', 'Lampang Rajabhat University'),
(104302, 85620, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø„ąø³ąø›ąø²ąø‡'),
(104303, 85621, 'en', 'name', 'Lahore General Hospital'),
(104304, 85621, 'ur', 'name', 'Ł„Ų§ŪŁˆŲ± جنرل ہسپتال'),
(104305, 85622, 'de', 'name', 'Fƶderalregierung Belgien'),
(104306, 85622, 'en', 'name', 'Federal Government of Belgium'),
(104307, 85622, 'fr', 'name', 'Gouvernement FƩdƩral Belgique'),
(104308, 85622, 'nl', 'name', 'Belgische Federale Regering'),
(104309, 85623, 'en', 'name', 'Centre for Energy Advancement through Technological Innovation'),
(104310, 85624, 'en', 'name', 'Johnson C. Smith University'),
(104311, 85625, 'en', 'name', 'Insight'),
(104312, 85626, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁŠ'),
(104313, 85626, 'en', 'name', 'El-Oued University'),
(104314, 85626, 'fr', 'name', 'UniversitƩ d''El-Oued'),
(104315, 85627, 'en', 'name', 'Lipeck State Technical University'),
(104316, 85628, 'no_lang_code', 'name', 'Etnoteam S.p.A'),
(104317, 85629, 'no_lang_code', 'name', 'Jawbone (United States)'),
(104318, 85630, 'no_lang_code', 'name', 'Spark Therapeutics (United States)'),
(104319, 85631, 'en', 'name', 'National Center for Mathematics and Interdisciplinary Sciences'),
(104320, 85631, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å›½å®¶ę•°å­¦äøŽäŗ¤å‰ē§‘å­¦äø­åæƒ'),
(104321, 85632, 'de', 'name', 'Max-Planck-Institut für Polymerforschung'),
(104322, 85632, 'en', 'name', 'Max Planck Institute for Polymer Research'),
(104323, 85633, 'no_lang_code', 'name', 'ImmunoGen (United States)'),
(104324, 85634, 'en', 'name', 'Air Force Engineering University'),
(104325, 85634, 'zh', 'name', '中国人民解放军空军巄程大学'),
(104326, 85635, 'en', 'name', 'Veer Chandra Singh Garhwali Uttarakhand University of Horticulture & Forestry'),
(104327, 85635, 'hi', 'name', 'ą¤¬ą¤¾ą¤—ą¤µą¤¾ą¤Øą„€ और ą¤µą¤¾ą¤Øą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤‚ą¤”'),
(104328, 85636, 'en', 'name', 'Pontifical Catholic University of SĆ£o Paulo'),
(104329, 85636, 'pt', 'name', 'Pontifícia Universidade Católica de São Paulo'),
(104330, 85637, 'en', 'name', 'Academy of Labor and Social Relations'),
(104331, 85637, 'ru', 'name', 'Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ филиал АкаГемии Ń‚Ń€ŃƒŠ“Š° Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Ń… Š¾Ń‚Š½Š¾ŃˆŠµŠ½ŠøŠ¹'),
(104332, 85638, 'en', 'name', 'Sobolev Institute of Mathematics'),
(104333, 85638, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики им. Š”. Š›. Доболева Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(104334, 85639, 'en', 'name', 'Russian-Tajik Slavonic University'),
(104335, 85639, 'ru', 'name', 'Российско-таГжикский ŃŠ»Š°Š²ŃŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104336, 85639, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø ŃŠ»Š°Š²ŃŠ½ŠøŠø Тоҷикистон-Š ŃƒŃŠøŃ'),
(104337, 85640, 'en', 'name', 'Penn State Schuylkill'),
(104338, 85641, 'en', 'name', 'Energy Policy and Planning Office'),
(104339, 85641, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø™ą¹‚ąø¢ąøšąø²ąø¢ą¹ąø„ąø°ą¹ąøœąø™ąøžąø„ąø±ąø‡ąø‡ąø²ąø™'),
(104340, 85642, 'en', 'name', 'Indian Institute for Human Settlemnts'),
(104341, 85643, 'no_lang_code', 'name', 'HeiTech Services (United States)'),
(104342, 85644, 'en', 'name', 'Aerospace Medical Association'),
(104343, 85645, 'en', 'name', 'ARK Foundation'),
(104344, 85646, 'no_lang_code', 'name', 'Jinchuan (China)'),
(104345, 85646, 'zh', 'name', '金川集团'),
(104346, 85647, 'en', 'name', 'La Salle University'),
(104347, 85647, 'es', 'name', 'Universidad La Salle'),
(104348, 85648, 'no_lang_code', 'name', 'Centro Elettrotecnico Sperimentale Italiano (Germany)'),
(104349, 85649, 'en', 'name', 'State Audit Office of Hungary'),
(104350, 85650, 'en', 'name', 'Crown Research Institutes'),
(104351, 85651, 'en', 'name', 'Cancer Research Society'),
(104352, 85651, 'fr', 'name', 'SociƩtƩ de Recherche sur le Cancer'),
(104353, 85652, 'de', 'name', 'Deutsche Gesellschaft für Traditionelle Chinesische Medizin'),
(104354, 85653, 'en', 'name', 'University of Phoenix'),
(104355, 85654, 'en', 'name', 'National Inter-University Consortium for Marine Sciences'),
(104356, 85654, 'it', 'name', 'CoNISMa, Consorzio Nazionale Interuniversitario per le Scienze del Mare'),
(104357, 85655, 'no_lang_code', 'name', 'St. Jude Medical (United States)'),
(104358, 85656, 'en', 'name', 'Federal Bureau of Investigation'),
(104359, 85657, 'nl', 'name', 'WoonZorgcentra Haaglanden'),
(104360, 85658, 'en', 'name', 'Canadian Nurses Association'),
(104361, 85658, 'fr', 'name', 'Association des infirmiĆØres et infirmiers du Canada'),
(104362, 85659, 'en', 'name', 'Institute for Scientific Interchange'),
(104363, 85659, 'it', 'name', 'Istituto per l''Interscambio Scientifico'),
(104364, 85660, 'no_lang_code', 'name', 'Betta Pharmaceuticals (China)'),
(104365, 85660, 'zh', 'name', 'č“č¾¾čÆäøš'),
(104366, 85661, 'en', 'name', 'Work + Family Researchers Network'),
(104367, 85662, 'en', 'name', 'Institute of Biomedical Sciences, Academia Sinica'),
(104368, 85662, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢ē”Ÿē‰©é†«å­øē§‘å­øē ”ē©¶ę‰€'),
(104369, 85663, 'en', 'name', 'National Association of Universities and Higher Education Institutions'),
(104370, 85663, 'es', 'name', 'Asociación Nacional de Universidades e Instituciones de Educación Superior'),
(104371, 85664, 'en', 'name', 'Cerebral Palsy Alliance Research Foundation'),
(104372, 85665, 'en', 'name', 'Long Island University Hudson at Westchester'),
(104373, 85666, 'en', 'name', 'International Livestock Research Institute'),
(104374, 85667, 'sv', 'name', 'Fredrik och Ingrid Thurings Stiftelse'),
(104375, 85668, 'en', 'name', 'Okazaki Institute for Integrative Bioscience'),
(104376, 85668, 'ja', 'name', 'å²”å“Žēµ±åˆćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(104377, 85669, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ود Ł…ŲÆŁ†ŁŠ Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(104378, 85669, 'no_lang_code', 'name', 'Wad Medani Ahlia University'),
(104379, 85670, 'no_lang_code', 'name', 'Lexicon Pharmaceuticals (United States)'),
(104380, 85671, 'en', 'name', 'Translational Research Institute'),
(104381, 85672, 'en', 'name', 'Japan Racing Association'),
(104382, 85672, 'ja', 'name', 'ē‰¹ę®Šę³•äŗŗę—„ęœ¬äø­å¤®ē«¶é¦¬ä¼š'),
(104383, 85673, 'en', 'name', 'Middletown Thrall Library'),
(104384, 85674, 'en', 'name', 'Water Research Australia'),
(104385, 85675, 'en', 'name', 'Canadian Academy of Sport and Exercise Medicine'),
(104386, 85676, 'de', 'name', 'Infrafrontier'),
(104387, 85677, 'es', 'name', 'Universidad de la Sierra JuƔrez'),
(104388, 85678, 'no_lang_code', 'name', 'Oakdene Hollins (United Kingdom)'),
(104389, 85679, 'en', 'name', 'Osaka Prefectural Medical Center'),
(104390, 85679, 'ja', 'name', 'å¤§é˜Ŗę€„ę€§ęœŸ'),
(104391, 85680, 'fi', 'name', 'Walter Ahlstrƶmin sƤƤtiƶ'),
(104392, 85681, 'es', 'name', 'Instituto de Estudios de Ciencias de la Salud de Castilla y León'),
(104393, 85682, 'en', 'name', 'Sumy National Agrarian University'),
(104394, 85682, 'ru', 'name', 'Думский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104395, 85682, 'uk', 'name', 'Думський Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104396, 85683, 'no_lang_code', 'name', 'Crucell (Sweden)'),
(104397, 85684, 'en', 'name', 'University Hospital of Caracas'),
(104398, 85684, 'es', 'name', 'Hospital ClĆ­nico Universitario de Caracas, Hospital ClĆ­nico Universitario de la UCV'),
(104399, 85685, 'en', 'name', 'Community Relations Council'),
(104400, 85686, 'ja', 'name', 'ćƒ­ćƒ¼ćƒ ę Ŗå¼ä¼šē¤¾'),
(104401, 85686, 'no_lang_code', 'name', 'ROHM'),
(104402, 85687, 'en', 'name', 'International Women''s Media Foundation'),
(104403, 85688, 'no_lang_code', 'name', 'Esterline (United States)'),
(104404, 85689, 'no_lang_code', 'name', 'Symplectic (UK)'),
(104405, 85690, 'en', 'name', 'Kyushu Tokai University'),
(104406, 85690, 'ja', 'name', 'ä¹å·žę±ęµ·å¤§å­¦'),
(104407, 85691, 'en', 'name', 'Texas A&M University at Galveston'),
(104408, 85691, 'es', 'name', 'Universidad de Texas A&M en Galveston'),
(104409, 85692, 'en', 'name', 'Tallinn University of Applied Sciences'),
(104410, 85692, 'et', 'name', 'Tallinna TehnikakƵrgkool'),
(104411, 85693, 'en', 'name', 'National Information Infrastructure Development Institute'),
(104412, 85694, 'en', 'name', 'California Community Foundation'),
(104413, 85695, 'no_lang_code', 'name', 'Innoplexus'),
(104414, 85696, 'hi', 'name', 'ą¤œą„€ą¤µą¤¾ą¤œą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤—ą„ą¤µą¤¾ą¤²ą¤æą¤Æą¤°'),
(104415, 85696, 'no_lang_code', 'name', 'Jiwaji University'),
(104416, 85697, 'ar', 'name', 'Ų§Ł„Ł…Ł…Ł„ŁƒŲ© Ų§Ł„Ł…ŲŗŲ±ŲØŁŠŲ© - وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© و Ų§Ł„ŲŖŁƒŁˆŁŠŁ† Ų§Ł„Ł…Ł‡Ł†ŁŠ و Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ و البحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(104417, 85697, 'en', 'name', 'Ministry of National Education, Vocational Training, Higher Education and Scientific Research'),
(104418, 85697, 'fr', 'name', 'Ministère de l''Education Nationale, de la Formation Professionnelle, de l''Enseignement Supérieur & de la Recherche Scientifique'),
(104419, 85698, 'de', 'name', 'Ɩsterreichische Diabetes Gesellschaft'),
(104420, 85698, 'en', 'name', 'Austrian Diabetes Association'),
(104421, 85699, 'no_lang_code', 'name', 'MVV Energie'),
(104422, 85700, 'en', 'name', 'Islamic Azad University, Bojnourd Branch'),
(104423, 85700, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲØŲ¬Ł†ŁˆŲ±ŲÆ'),
(104424, 85701, 'en', 'name', 'South African Association for Marine Biological Research'),
(104425, 85702, 'en', 'name', 'Jean Shanks Foundation'),
(104426, 85703, 'en', 'name', 'Bevill State Community College'),
(104427, 85704, 'en', 'name', 'National CFIDS Foundation'),
(104428, 85705, 'en', 'name', 'Maine Department of Marine Resources'),
(104429, 85706, 'en', 'name', 'Handel Institute'),
(104430, 85707, 'en', 'name', 'Zaporizhzhya State Medical University'),
(104431, 85708, 'en', 'name', 'National Science and Technology Council'),
(104432, 85709, 'en', 'name', 'Kitakyushu Foundation for the Advancement of Industry, Science and Technology'),
(104433, 85709, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ä¹å·žē”£ę„­å­¦č”“ęŽØé€²ę©Ÿę§‹'),
(104434, 85710, 'no_lang_code', 'name', 'Northwest Biotherapeutics (United States)'),
(104435, 85711, 'ko', 'name', '젬백스 & ģ¹“ģ—˜'),
(104436, 85711, 'no_lang_code', 'name', 'GemVax & KAEL (South Korea)'),
(104437, 85712, 'en', 'name', 'Melanoma Research Foundation'),
(104438, 85713, 'no_lang_code', 'name', 'JDSU (Switzerland)'),
(104439, 85714, 'en', 'name', 'Azabu University'),
(104440, 85714, 'ja', 'name', '麻布大学'),
(104441, 85715, 'pt', 'name', 'Associação Viver a Ciência'),
(104442, 85716, 'fr', 'name', 'Association Laurette Fugain'),
(104443, 85717, 'en', 'name', 'Rural Sociological Society'),
(104444, 85718, 'en', 'name', 'Xinjiang Technical Institute of Physics & Chemistry'),
(104445, 85718, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę–°ē–†ē†åŒ–ęŠ€ęœÆē ”ē©¶ę‰€'),
(104446, 85719, 'en', 'name', 'V.Ye. Tairov Institute of Viticulture and Winemaking'),
(104447, 85719, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ винограГарства і виноробства імені Š’.Š„. Таїрова'),
(104448, 85720, 'no_lang_code', 'name', 'MƩrieux NutriSciences (France)'),
(104449, 85721, 'ar', 'name', 'سبيتار'),
(104450, 85721, 'en', 'name', 'Qatar Orthopaedic and Sports Medicine Hospital'),
(104451, 85722, 'en', 'name', 'Suan Dusit University'),
(104452, 85722, 'th', 'name', 'ดหาวณทยาคัยสวนดุสณต'),
(104453, 85723, 'en', 'name', 'Society for Applied Studies'),
(104454, 85724, 'no_lang_code', 'name', 'Aerie Pharmaceuticals (United States)'),
(104455, 85725, 'en', 'name', 'City University of Hong Kong, Shenzhen Research Institute'),
(104456, 85725, 'zh', 'name', 'é¦™ęøÆåŸŽåø‚å¤§å­¦ę·±åœ³ē ”ē©¶é™¢'),
(104457, 85726, 'en', 'name', 'Industrial University of Santander'),
(104458, 85726, 'es', 'name', 'Universidad Industrial de Santander'),
(104459, 85727, 'bg', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š¾ висше бизнес ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ'),
(104460, 85727, 'en', 'name', 'International Business School'),
(104461, 85728, 'en', 'name', 'Africa Centre for Health and Population Studies'),
(104462, 85729, 'en', 'name', 'Environmental Leadership Program'),
(104463, 85730, 'en', 'name', 'Consortium for Plant Biotechnology Research'),
(104464, 85731, 'no_lang_code', 'name', 'Nirma (India)'),
(104465, 85732, 'en', 'name', 'Loyola Marymount University'),
(104466, 85733, 'en', 'name', 'Eighth Affiliated Hospital of Sun Yat-sen University'),
(104467, 85733, 'zh', 'name', 'äø­å±±å¤§å­¦é™„å±žē¬¬å…«åŒ»é™¢'),
(104468, 85734, 'en', 'name', 'Guarantors of Brain'),
(104469, 85735, 'en', 'name', 'Penn State DuBois'),
(104470, 85736, 'en', 'name', 'Chinese Society of Endocrinology'),
(104471, 85736, 'zh', 'name', 'äø­å›½å†…åˆ†ę³Œå­¦ä¼š'),
(104472, 85737, 'no_lang_code', 'name', 'Nikkiso (Japan)'),
(104473, 85738, 'fr', 'name', 'Institut National des Recherches Agricoles du BƩnin'),
(104474, 85739, 'en', 'name', 'Catholic University of Cameroon'),
(104475, 85739, 'fr', 'name', 'UniversitƩ catholique du Cameroun'),
(104476, 85740, 'en', 'name', 'Sichuan Youth Science & Technology Foundation'),
(104477, 85741, 'en', 'name', 'Cocoa Research Institute of Nigeria'),
(104478, 85742, 'en', 'name', 'International Agency for the Prevention of Blindness'),
(104479, 85743, 'en', 'name', 'Art Institute of Colorado'),
(104480, 85744, 'en', 'name', 'Ethics and Excellence in Journalism Foundation'),
(104481, 85745, 'en', 'name', 'British Society for Research on Ageing'),
(104482, 85746, 'en', 'name', 'Children’s Leukemia Research Association'),
(104483, 85747, 'no_lang_code', 'name', 'Celon Pharma (Poland)'),
(104484, 85748, 'en', 'name', 'Shanghai Urban Construction Design and Research Institute (Group)'),
(104485, 85748, 'zh', 'name', 'äøŠęµ·åŸŽåø‚å»ŗč®¾č®¾č®”ē ”ē©¶é™¢'),
(104486, 85749, 'en', 'name', 'Massachusetts Historical Society'),
(104487, 85750, 'no_lang_code', 'name', 'Oligomerix (United States)'),
(104488, 85751, 'no_lang_code', 'name', 'Ceramatec (United States)'),
(104489, 85752, 'en', 'name', 'Federation for the Humanities and Social Sciences'),
(104490, 85752, 'fr', 'name', 'FƩdƩration des Sciences Humaines'),
(104491, 85753, 'en', 'name', 'Institute for Environmental Sciences'),
(104492, 85753, 'ja', 'name', 'ē’°å¢ƒē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(104493, 85754, 'en', 'name', 'Virtual University of Pakistan'),
(104494, 85754, 'ur', 'name', 'جامعہ Ł…Ų¬Ų§Ų²ŪŒ پاکستان'),
(104495, 85755, 'en', 'name', 'Sonoran Joint Venture'),
(104496, 85756, 'en', 'name', 'California Health Care Safety Net Institute'),
(104497, 85757, 'en', 'name', 'Chinese Nutrition Society'),
(104498, 85757, 'zh', 'name', 'äø­å›½č„å…»å­¦ä¼š'),
(104499, 85758, 'en', 'name', 'Antiquities, Monuments and Museums Corporation'),
(104500, 85759, 'en', 'name', 'Australian Trade and Investment Commission'),
(104501, 85760, 'en', 'name', 'Sichuan College of Architectural Technology'),
(104502, 85760, 'zh', 'name', 'å››å·å»ŗē­‘čŒäøšęŠ€ęœÆå­¦é™¢'),
(104503, 85761, 'en', 'name', 'Caritas Junior College'),
(104504, 85761, 'ja', 'name', 'ć‚«ćƒŖć‚æć‚¹å„³å­ēŸ­ęœŸå¤§å­¦'),
(104505, 85762, 'de', 'name', 'Osservatorio Astronomico di Torino'),
(104506, 85762, 'fr', 'name', 'Observatoire astronomique de turin'),
(104507, 85762, 'it', 'name', 'Osservatorio Astrofisico di Torino, Osservatorio astronomico di Torino'),
(104508, 85763, 'no_lang_code', 'name', 'Media and Process Technology (United States)'),
(104509, 85764, 'en', 'name', 'Horace Smith Fund'),
(104510, 85765, 'en', 'name', 'Independent Television Service'),
(104511, 85766, 'de', 'name', 'Fachhochschule der Diakonie'),
(104512, 85767, 'en', 'name', 'EMBL Australia'),
(104513, 85768, 'no_lang_code', 'name', 'Bull (United Kingdom)'),
(104514, 85769, 'no_lang_code', 'name', 'VBM Laboratoriet (Denmark)'),
(104515, 85770, 'da', 'name', 'Dansk Nefrologisk Selskab'),
(104516, 85770, 'en', 'name', 'Danish Society of Nephrology'),
(104517, 85771, 'no_lang_code', 'name', 'Tongfu Microelectronics (China)'),
(104518, 85772, 'nl', 'name', 'Nationale vereniging voor LUPUS, APS, Sclerodermie en MCTD'),
(104519, 85773, 'no_lang_code', 'name', 'Bio Food Tech (Canada)'),
(104520, 85774, 'en', 'name', 'Shenzhen Research Institute of Big Data'),
(104521, 85774, 'zh', 'name', 'ę·±åœ³åø‚å¤§ę•°ę®ē ”ē©¶é™¢'),
(104522, 85775, 'en', 'name', 'Okayama Institute for Quantum Physics'),
(104523, 85775, 'ja', 'name', 'å²”å±±å…‰é‡å­ē§‘å­¦ē ”ē©¶ę‰€'),
(104524, 85776, 'no_lang_code', 'name', 'Nanshan Group (China)'),
(104525, 85776, 'zh', 'name', 'å—å±±ęŽ§č‚”'),
(104526, 85777, 'en', 'name', 'African American Museum in Philadelphia'),
(104527, 85778, 'en', 'name', 'University Centre of the Westfjords'),
(104528, 85778, 'is', 'name', 'HÔskóli Vestfjarða'),
(104529, 85779, 'en', 'name', 'Chinese Academy of Engineering'),
(104530, 85779, 'zh', 'name', '中国巄程院'),
(104531, 85780, 'sv', 'name', 'Insamlingsstiftelsen Cancer- och Allergifonden'),
(104532, 85781, 'en', 'name', 'Shinjuku College of Information Technology'),
(104533, 85781, 'ja', 'name', 'ę–°å®æęƒ…å ±ćƒ“ć‚øćƒć‚¹å°‚é–€å­¦ę ”'),
(104534, 85782, 'en', 'name', 'Society for Experimental Mechanics'),
(104535, 85783, 'el', 'name', 'Κολλέγιο Ī¤ĪæĻ…ĻĪ¹ĻƒĪ¼ĪæĻ και Ī”Ī¹ĪæĪÆĪŗĪ·ĻƒĪ·Ļ‚ ĪžĪµĪ½ĪæĪ“ĪæĻ‡ĪµĪÆĻ‰Ī½'),
(104536, 85783, 'en', 'name', 'College of Tourism and Hotel Management'),
(104537, 85784, 'no_lang_code', 'name', 'Ultragenyx Pharmaceutical (United States)'),
(104538, 85785, 'en', 'name', 'Propionic Acidemia Foundation'),
(104539, 85786, 'no_lang_code', 'name', 'NeRRe Therapeutics (United Kingdom)'),
(104540, 85787, 'en', 'name', 'Pierce College'),
(104541, 85788, 'en', 'name', 'Midwestern University'),
(104542, 85789, 'no', 'name', 'Sykehuset Ƙstfold'),
(104543, 85790, 'no_lang_code', 'name', 'Silicon Graphics International (United Kingdom)'),
(104544, 85791, 'fr', 'name', 'Laboratoire de Physique Statistique'),
(104545, 85792, 'en', 'name', 'National Institute of Technology Akita College'),
(104546, 85792, 'ja', 'name', 'ē§‹ē”°å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(104547, 85793, 'no_lang_code', 'name', 'CellCentric (United Kingdom)'),
(104548, 85794, 'no', 'name', 'Landsforeningen for hjerte- og lungesyke'),
(104549, 85795, 'en', 'name', 'Institute of Ecology and Biodiversity'),
(104550, 85796, 'en', 'name', 'Dr Marnie Rose Foundation'),
(104551, 85797, 'en', 'name', 'Iowa Pork Producers Association'),
(104552, 85798, 'no_lang_code', 'name', 'Polaris Industries (United States)'),
(104553, 85799, 'ro', 'name', 'Institutului de Biologie Bucureşti'),
(104554, 85800, 'en', 'name', 'South Gloucestershire Council'),
(104555, 85801, 'no_lang_code', 'name', 'Hazen and Sawyer (United States)'),
(104556, 85802, 'am', 'name', 'የደቔቄ į‰„įˆ”įˆ­ į‰„įˆ”įˆØįˆ°į‰¦į‰½įŠ“ įˆ…į‹į‰¦į‰½ įŠ­įˆįˆ'),
(104557, 85802, 'en', 'name', 'Southern Nations, Nationalities, and Peoples'' Region'),
(104558, 85803, 'en', 'name', 'Peanut Institute'),
(104559, 85804, 'en', 'name', 'Art Institute of Washington'),
(104560, 85805, 'en', 'name', 'European Society of Anaesthesiology'),
(104561, 85806, 'en', 'name', 'China Primary Health Care Foundation'),
(104562, 85806, 'zh', 'name', 'äø­å›½åˆēŗ§å«ē”Ÿäæå„åŸŗé‡‘ä¼š'),
(104563, 85807, 'de', 'name', 'Stiftung Lindenhof Bern'),
(104564, 85808, 'fr', 'name', 'Luc Hoffmann Institute'),
(104565, 85809, 'en', 'name', 'Calcutta Research Group'),
(104566, 85810, 'en', 'name', 'Dent Neurologic Institute'),
(104567, 85811, 'en', 'name', 'Tioga County Historical Society'),
(104568, 85812, 'en', 'name', 'Tata Memorial Hospital'),
(104569, 85812, 'hi', 'name', 'टाटा ą¤®ą„‡ą¤®ą„‹ą¤°ą¤æą¤Æą¤² ą¤øą„‡ą¤‚ą¤Ÿą¤°'),
(104570, 85812, 'ta', 'name', 'ą®Ÿą®¾ą®ŸąÆą®Ÿą®¾ நினைவு ą®®ąÆˆą®Æą®®ąÆ'),
(104571, 85813, 'en', 'name', 'TomKat Foundation'),
(104572, 85814, 'en', 'name', 'Joint United Nations Programme on HIV/AIDS'),
(104573, 85815, 'no_lang_code', 'name', 'Voyager Therapeutics (United States)'),
(104574, 85816, 'en', 'name', 'Harry and Jeanette Weinberg Foundation'),
(104575, 85817, 'en', 'name', 'National Institute of Development Administration'),
(104576, 85817, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąøšąø±ąø“ąø‘ąø“ąø•ąøžąø±ąø’ąø™ąøšąø£ąø“ąø«ąø²ąø£ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(104577, 85818, 'no_lang_code', 'name', 'Aerpio Pharmaceuticals (United States)'),
(104578, 85819, 'ja', 'name', 'ę—„ęø…ć‚Ŗć‚¤ćƒŖć‚Ŗć‚°ćƒ«ćƒ¼ćƒ— 名古屋巄堓'),
(104579, 85819, 'no_lang_code', 'name', 'The Nisshin OilliO Group (Japan)'),
(104580, 85820, 'no_lang_code', 'name', 'Black & Decker (United Kingdom)'),
(104581, 85821, 'no_lang_code', 'name', 'Research and Production Center "Fox and Co"'),
(104582, 85821, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-произвоГственный Центр "Š¤ŠžŠšŠ” Šø Ко"'),
(104583, 85822, 'en', 'name', 'Virginia–Maryland College of Veterinary Medicine'),
(104584, 85823, 'sv', 'name', 'Anna och Edwin Bergers Stiftelse'),
(104585, 85824, 'en', 'name', 'Churchill School and Center'),
(104586, 85825, 'en', 'name', 'RIKEN Center for Sustainable Resource Science'),
(104587, 85825, 'ja', 'name', 'ē’°å¢ƒč³‡ęŗē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(104588, 85826, 'en', 'name', 'National Film Preservation Foundation'),
(104589, 85827, 'en', 'name', 'Chartered Institution of Wastes Management'),
(104590, 85828, 'en', 'name', 'Logan City Council'),
(104591, 85829, 'pl', 'name', 'Elbląska Uczelnia Humanistyczno-Ekonomiczna'),
(104592, 85830, 'en', 'name', 'Waitemata District Health Board'),
(104593, 85831, 'en', 'name', 'Forest Park'),
(104594, 85832, 'en', 'name', 'College of Allied Medical Science Akita University'),
(104595, 85832, 'ja', 'name', 'ē§‹ē”°å¤§å­¦åŒ»ē™‚ęŠ€č”“ēŸ­ęœŸå¤§å­¦éƒØ'),
(104596, 85833, 'en', 'name', 'The Battlefields Trust'),
(104597, 85834, 'en', 'name', 'Earth Observatory of Singapore'),
(104598, 85835, 'en', 'name', 'Xinzhou Teachers University'),
(104599, 85835, 'zh', 'name', 'åæ»å·žåøˆčŒƒå­¦é™¢'),
(104600, 85836, 'en', 'name', 'Man Adult Hospital'),
(104601, 85836, 'ja', 'name', 'äø‡ęˆē—…é™¢'),
(104602, 85837, 'en', 'name', 'Penn State Greater Allegheny'),
(104603, 85838, 'no_lang_code', 'name', 'Liander (Netherlands)'),
(104604, 85839, 'no_lang_code', 'name', 'Fluorinov Pharma (Canada)'),
(104605, 85840, 'it', 'name', 'Laboratori Baldacci'),
(104606, 85840, 'no_lang_code', 'name', 'Baldacci (Italy)'),
(104607, 85841, 'en', 'name', 'Spaulding Rehabilitation Hospital'),
(104608, 85842, 'en', 'name', 'Nagoya Keizai University Junior College'),
(104609, 85843, 'en', 'name', 'National Gallery of Australia'),
(104610, 85844, 'en', 'name', 'EuroScience'),
(104611, 85845, 'en', 'name', 'SmithKline Beecham Animal Health'),
(104612, 85846, 'ja', 'name', 'ę±äŗ¬ē²¾åÆ†'),
(104613, 85846, 'no_lang_code', 'name', 'Accretech (Japan)'),
(104614, 85847, 'no_lang_code', 'name', 'Eileen Fisher (United States)'),
(104615, 85848, 'en', 'name', 'Stanford University School of Medicine'),
(104616, 85849, 'en', 'name', 'Institute of Materials Science'),
(104617, 85849, 'vi', 'name', 'Viện Khoa hį»c Vįŗ­t liệu'),
(104618, 85850, 'en', 'name', 'InterMedia'),
(104619, 85851, 'no_lang_code', 'name', 'Esgee Technologies (United States)'),
(104620, 85852, 'en', 'name', 'University of Wisconsin–Washington County'),
(104621, 85853, 'en', 'name', 'Rutgers University–Newark'),
(104622, 85854, 'en', 'name', 'Miscarriage Association'),
(104623, 85855, 'en', 'name', 'Royal Forest Department'),
(104624, 85855, 'th', 'name', 'ąøąø£ąø”ąø›ą¹ˆąø²ą¹„ąø”ą¹‰'),
(104625, 85856, 'en', 'name', 'Wenzhou Vocational College of Science and Technology'),
(104626, 85857, 'nl', 'name', 'Nederlandse Vereniging voor Tropische Geneeskunde'),
(104627, 85858, 'en', 'name', 'Academic Center for Education, Culture and Research'),
(104628, 85858, 'fa', 'name', 'جهاد ŲÆŲ§Ł†Ų“ŚÆŲ§Ł‡ŪŒ'),
(104629, 85859, 'en', 'name', 'Saint Luke''s Health System'),
(104630, 85860, 'en', 'name', 'Cluster University Srinagar'),
(104631, 85861, 'en', 'name', 'Rennie Center for Education Research & Policy'),
(104632, 85862, 'no_lang_code', 'name', 'Accuray (United States)'),
(104633, 85863, 'en', 'name', 'United Nations Educational Scientific and Cultural Organization'),
(104634, 85864, 'no_lang_code', 'name', 'Pure Technologies (Canada)'),
(104635, 85865, 'en', 'name', 'Innovative Medicines Canada'),
(104636, 85866, 'en', 'name', 'Mauritius Research Council'),
(104637, 85867, 'en', 'name', 'Kyiv National University of Culture and Arts'),
(104638, 85867, 'pl', 'name', 'Kijowski Narodowy Uniwersytet Kultury i Sztuki'),
(104639, 85867, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹ Šø ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(104640, 85867, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø і мистецтв'),
(104641, 85868, 'en', 'name', 'Nkrumah University'),
(104642, 85869, 'en', 'name', 'Japan Primary Care Association'),
(104643, 85870, 'en', 'name', 'Rostov State University of Railways'),
(104644, 85871, 'no_lang_code', 'name', 'Cassava Sciences (United States)'),
(104645, 85872, 'en', 'name', 'University of Alabama School of Medicine'),
(104646, 85873, 'no_lang_code', 'name', 'IBI Group (Canada)'),
(104647, 85874, 'no_lang_code', 'name', 'Marks and Spencer (United Kingdom)'),
(104648, 85875, 'en', 'name', 'Kaifeng University'),
(104649, 85875, 'zh', 'name', '开封大学'),
(104650, 85876, 'no_lang_code', 'name', 'ProQR Therapeutics (Netherlands)'),
(104651, 85877, 'en', 'name', 'Faruk Sarac Vocational School of Design'),
(104652, 85877, 'tr', 'name', 'Faruk Saraç Tasarım Meslek Yüksekokulu'),
(104653, 85878, 'en', 'name', 'Benedictine University'),
(104654, 85879, 'en', 'name', 'Cork Institute of Technology'),
(104655, 85879, 'ga', 'name', 'InstitiĆŗd TeicneolaĆ­ochta ChorcaĆ­'),
(104656, 85880, 'en', 'name', 'U.S. President''s Malaria Initiative'),
(104657, 85881, 'en', 'name', 'Leuven Institute for Fertility and Embryology'),
(104658, 85881, 'fr', 'name', 'Leuvens Instituut voor Fertiliteit en Embryologie'),
(104659, 85882, 'en', 'name', 'Fourth Affiliated Hospital of China Medical University'),
(104660, 85882, 'zh', 'name', 'äø­å›½åŒ»ē§‘å¤§å­¦é™„å±žē¬¬å››åŒ»é™¢'),
(104661, 85883, 'de', 'name', 'Manfred LautenschlƤger-Stiftung'),
(104662, 85884, 'en', 'name', 'National Institute of Advanced Studies'),
(104663, 85885, 'en', 'name', 'University of Phoenix'),
(104664, 85886, 'fr', 'name', 'UniversitƩ Lille 2 Droit et SantƩ'),
(104665, 85887, 'en', 'name', 'National University of Civil Engineering'),
(104666, 85887, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c XĆ¢y dį»±ng'),
(104667, 85888, 'en', 'name', 'Henry Royce Institute'),
(104668, 85889, 'no', 'name', 'Larvik kommune'),
(104669, 85890, 'de', 'name', 'UniversitƤtsklinikum Heidelberg'),
(104670, 85890, 'en', 'name', 'University Hospital Heidelberg'),
(104671, 85891, 'es', 'name', 'Universidad Metropolitana Castro Carazo'),
(104672, 85892, 'en', 'name', 'Kenya Industrial Research and Development Institute'),
(104673, 85893, 'en', 'name', 'Broadview University'),
(104674, 85894, 'no_lang_code', 'name', 'Beihua University'),
(104675, 85894, 'zh', 'name', '北华大学'),
(104676, 85895, 'no_lang_code', 'name', 'Leica Microsystems (United Kingdom)'),
(104677, 85896, 'de', 'name', 'Deutsche Nierenstiftung'),
(104678, 85897, 'en', 'name', 'Harris and Eliza Kempner Fund'),
(104679, 85898, 'en', 'name', 'Genome Prairie'),
(104680, 85899, 'en', 'name', 'Necmettin Erbakan University'),
(104681, 85899, 'tr', 'name', 'Necmettin Erbakan Üniversitesi'),
(104682, 85900, 'en', 'name', 'Chinese Physical Society'),
(104683, 85900, 'zh', 'name', 'äø­å›½ē‰©ē†å­¦ä¼š'),
(104684, 85901, 'no', 'name', 'Sogn og Fjordane Fylkeskommune'),
(104685, 85902, 'ja', 'name', '至誠館大学'),
(104686, 85902, 'no_lang_code', 'name', 'Shiseikan University'),
(104687, 85903, 'no_lang_code', 'name', 'Crain Communications (United States)'),
(104688, 85904, 'sv', 'name', 'Demensfƶrbundet'),
(104689, 85905, 'no_lang_code', 'name', 'Aker BioMarine (Norway)'),
(104690, 85906, 'no_lang_code', 'name', 'BMT Hi-Q Sigma'),
(104691, 85907, 'no_lang_code', 'name', 'Oxford Medical Diagnostics (United Kingdom)'),
(104692, 85908, 'en', 'name', 'Pacific International Center for High Technology Research'),
(104693, 85909, 'en', 'name', 'Fund for the Replacement of Animals in Medical Experiments'),
(104694, 85910, 'es', 'name', 'Universidad Iberoamericana del Norte'),
(104695, 85911, 'en', 'name', 'Fraser Health'),
(104696, 85912, 'no_lang_code', 'name', 'Second Sight Medical Products'),
(104697, 85913, 'hi', 'name', 'ą¤•ą„ą¤µą„‡ą¤‚ą¤Ŗą„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(104698, 85913, 'kn', 'name', 'ಕುವೆಂಪು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(104699, 85913, 'mr', 'name', 'ą¤•ą„ą¤µą„‡ą¤‚ą¤Ŗą„‚ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(104700, 85913, 'no_lang_code', 'name', 'Kuvempu University'),
(104701, 85913, 'ta', 'name', 'ą®•ąÆą®µąÆ‡ą®®ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(104702, 85913, 'te', 'name', 'కువెంపు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(104703, 85914, 'sv', 'name', 'HjƤrnfonden'),
(104704, 85915, 'en', 'name', 'National Collegiate Athletic Association'),
(104705, 85916, 'en', 'name', 'Vienna Center for Quantum Science and Technology'),
(104706, 85917, 'no_lang_code', 'name', 'Synergy Farm Health (United Kingdom)'),
(104707, 85918, 'no_lang_code', 'name', 'Zettlex (United Kingdom)'),
(104708, 85919, 'en', 'name', 'Sion College'),
(104709, 85920, 'ja', 'name', 'é…Ŗč¾²å­¦åœ’å¤§å­¦'),
(104710, 85920, 'no_lang_code', 'name', 'Rakuno Gakuen University'),
(104711, 85921, 'en', 'name', 'European Centre for Medium-Range Weather Forecasts'),
(104712, 85922, 'no_lang_code', 'name', 'Aileron (United States)'),
(104713, 85923, 'no_lang_code', 'name', 'Audax Medical (United States)'),
(104714, 85924, 'en', 'name', 'Botanic Gardens Conservation International'),
(104715, 85925, 'no_lang_code', 'name', 'Utlendingsdirektoratet'),
(104716, 85926, 'de', 'name', 'Werner Otto Stiftung'),
(104717, 85927, 'en', 'name', 'University of Hyogo'),
(104718, 85927, 'ja', 'name', 'å…µåŗ«ēœŒē«‹å¤§å­¦'),
(104719, 85928, 'nl', 'name', 'Gratama Stichting'),
(104720, 85929, 'en', 'name', 'CureSearch for Children''s Cancer'),
(104721, 85930, 'en', 'name', 'Bodo Regional University'),
(104722, 85931, 'no_lang_code', 'name', 'Exa Corporation (United States)'),
(104723, 85932, 'en', 'name', 'Allen Institute for Immunology'),
(104724, 85933, 'en', 'name', 'Legal Aid New South Wales'),
(104725, 85934, 'en', 'name', 'Educational Advancement Foundation'),
(104726, 85935, 'fr', 'name', 'Association pour l''Utilisation du Rein Artificiel dans la rƩgion Lyonnaise'),
(104727, 85936, 'en', 'name', 'Canadian Wind Energy Association'),
(104728, 85936, 'fr', 'name', 'Association canadienne de l’énergie Ć©olienne'),
(104729, 85937, 'en', 'name', 'Horses and Humans Research Foundation'),
(104730, 85938, 'en', 'name', 'St. Paul Medical Center'),
(104731, 85939, 'en', 'name', 'Rhode Island Department of Health'),
(104732, 85940, 'de', 'name', 'Fraunhofer-Institut für Holzforschung Wilhelm-Klauditz-Institut'),
(104733, 85940, 'no_lang_code', 'name', 'Fraunhofer Institute for Wood Research Wilhelm-Klauditz-Institut'),
(104734, 85941, 'no_lang_code', 'name', 'TauRx Pharmaceuticals (Singapore)'),
(104735, 85942, 'es', 'name', 'Instituto Tecnológico y de Energías Renovables'),
(104736, 85943, 'en', 'name', 'Jomo Kenyatta University of Agriculture and Technology'),
(104737, 85943, 'sw', 'name', 'Chuo Kikuu cha Kilimo na Teknolojia cha Jomo Kenyatta'),
(104738, 85944, 'no_lang_code', 'name', 'COMAT Composite Materials (Germany)'),
(104739, 85945, 'ko', 'name', 'ķ…”ė ˆģ½¤ or ģ—ģŠ¤ģ¼€ģ“ķ…”ė ˆģ½¤'),
(104740, 85945, 'no_lang_code', 'name', 'SK Telecom (South Korea)'),
(104741, 85946, 'en', 'name', 'North China University of Science and Technology Affiliated Hospital'),
(104742, 85946, 'zh', 'name', 'åŽåŒ—ē†å·„å¤§å­¦é™„å±žåŒ»é™¢'),
(104743, 85947, 'no_lang_code', 'name', 'Dimagi (United States)'),
(104744, 85948, 'de', 'name', 'Nationale Versorgungskonferenz Hautkrebs'),
(104745, 85948, 'en', 'name', 'Skin Cancer Council Germany'),
(104746, 85949, 'en', 'name', 'British Exploring Society'),
(104747, 85950, 'en', 'name', 'Shoe and Allied Trades Research Association'),
(104748, 85951, 'en', 'name', 'City & Guilds Group'),
(104749, 85952, 'en', 'name', 'Association of American Colleges and Universities'),
(104750, 85953, 'en', 'name', 'European Association for Endoscopic Surgery'),
(104751, 85954, 'en', 'name', 'China Computer Federation'),
(104752, 85954, 'zh', 'name', 'äø­å›½č®”ē®—ęœŗå­¦ä¼š'),
(104753, 85955, 'pt', 'name', 'Universidade Tiradentes'),
(104754, 85956, 'en', 'name', 'South Carolina Educational Television Commission'),
(104755, 85957, 'en', 'name', 'Scottish Enterprise'),
(104756, 85958, 'en', 'name', 'Dementia Collaborative Research Centres'),
(104757, 85959, 'en', 'name', 'Perth Children''s Hospital'),
(104758, 85960, 'en', 'name', 'American Speech Language Hearing Association'),
(104759, 85961, 'no_lang_code', 'name', 'Qamcom Research & Technology (Sweden)'),
(104760, 85962, 'en', 'name', 'New England Research Institutes'),
(104761, 85963, 'fr', 'name', 'Théâtre de la Tempête'),
(104762, 85964, 'en', 'name', 'International Society of Travel Medicine'),
(104763, 85965, 'no_lang_code', 'name', 'Venus Remedies (India)'),
(104764, 85966, 'en', 'name', 'Leuka'),
(104765, 85967, 'en', 'name', 'South Carolina Universities Research and Education Foundation'),
(104766, 85968, 'en', 'name', 'Jane Bradley Pettit Foundation'),
(104767, 85969, 'fr', 'name', 'Association pour l’Assistance et la RĆ©habilitation Ć  Domicile'),
(104768, 85970, 'en', 'name', 'St. Cloud State University'),
(104769, 85970, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Saint Cloud'),
(104770, 85971, 'pt', 'name', 'Hospital Socor'),
(104771, 85972, 'en', 'name', 'Sungsan Hyo University'),
(104772, 85972, 'ko', 'name', 'ģ„±ģ‚°ķšØėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(104773, 85973, 'no_lang_code', 'name', 'Axio Research (United States)'),
(104774, 85974, 'en', 'name', 'Center For Advanced Meta-Materials'),
(104775, 85975, 'en', 'name', 'Psychology Beyond Borders'),
(104776, 85976, 'no_lang_code', 'name', 'GCell (United Kingdom)'),
(104777, 85977, 'en', 'name', 'Center For Produce Safety'),
(104778, 85978, 'en', 'name', 'Association of Fish and Wildlife Agencies'),
(104779, 85979, 'en', 'name', 'Lipedema Foundation'),
(104780, 85980, 'en', 'name', 'Marine Research Foundation'),
(104781, 85981, 'en', 'name', 'Shanghai Information Center for Life Sciences'),
(104782, 85981, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·ē”Ÿå‘½ē§‘å­¦äæ”ęÆäø­åæƒå­¦ä¼šå·„ä½œéƒØ'),
(104783, 85982, 'da', 'name', 'Dansk Boldspil-Union'),
(104784, 85982, 'en', 'name', 'Danish Football Association'),
(104785, 85983, 'no_lang_code', 'name', 'Polymun (Austria)'),
(104786, 85984, 'pl', 'name', 'Wyższa Szkoła Turystyki i Hotelarstwa w Gdańsku'),
(104787, 85985, 'en', 'name', 'National Jewish Health'),
(104788, 85986, 'it', 'name', 'Fondazione IRCCS Ca'' Granda Ospedale Maggiore Policlinico, Ospedale Maggiore'),
(104789, 85987, 'en', 'name', 'Saint-Petersburg State Agrarian University'),
(104790, 85987, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(104791, 85988, 'no_lang_code', 'name', 'Chemtura (Germany)'),
(104792, 85989, 'ja', 'name', 'ę·±ē”°åœ°č³Ŗē ”ē©¶ę‰€'),
(104793, 85989, 'no_lang_code', 'name', 'Fukada Geological Institute'),
(104794, 85990, 'en', 'name', 'SRI'),
(104795, 85991, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© بالقاهرة'),
(104796, 85991, 'en', 'name', 'American University in Cairo'),
(104797, 85991, 'fr', 'name', 'UniversitƩ AmƩricaine du Caire'),
(104798, 85992, 'en', 'name', 'Oral Reconstruction Foundation'),
(104799, 85993, 'en', 'name', 'University of Holy Cross'),
(104800, 85994, 'en', 'name', 'Shanxi Provincial Cancer Hospital'),
(104801, 85994, 'zh', 'name', 'å±±č„æēœč‚æē˜¤åŒ»é™¢'),
(104802, 85995, 'en', 'name', 'School Based Health Alliance'),
(104803, 85996, 'en', 'name', 'National Development and Reform Commission'),
(104804, 85996, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶å‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(104805, 85997, 'en', 'name', 'Jiangsu Agri-animal Husbandry Vocational College'),
(104806, 85997, 'zh', 'name', 'ę±Ÿč‹ē‰§åŒ»å­¦é™¢'),
(104807, 85998, 'en', 'name', 'Dental Innovation Foundation Under Royal Patronage'),
(104808, 85998, 'th', 'name', 'ąø”ąø¹ąø„ąø™ąø“ąø˜ąø“ąø—ąø±ąø™ąø•ąø™ąø§ąø±ąø•ąøąø£ąø£ąø” ą¹ƒąø™ąøžąø£ąø°ąøšąø£ąø”ąø£ąø²ąøŠąø¹ąø›ąø–ąø±ąø”ąø ą¹Œ ąø«ąø™ą¹ˆąø§ąø¢ąø—ąø±ąø™ąø•'),
(104809, 85999, 'en', 'name', 'University of Wisconsin-Baraboo-Sauk County'),
(104810, 86000, 'en', 'name', 'Nurses Organization of Veterans Affairs'),
(104811, 86001, 'fr', 'name', 'Centre Hospitalier Universitaire de Toulouse'),
(104812, 86002, 'en', 'name', 'Moorfields Eye Charity'),
(104813, 86003, 'en', 'name', 'Japanese Geotechnical Society'),
(104814, 86003, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåœ°ē›¤å·„å­¦ä¼š'),
(104815, 86004, 'en', 'name', 'The Wright Center for Graduate Medical Education'),
(104816, 86005, 'no_lang_code', 'name', 'Air France KLM (France)'),
(104817, 86006, 'no_lang_code', 'name', 'Holcim (Belgium)'),
(104818, 86007, 'en', 'name', 'Welsh Ambulance Services NHS Trust'),
(104819, 86008, 'no_lang_code', 'name', 'Omnipol (Czechia)'),
(104820, 86009, 'en', 'name', 'Korea Institute of Brain Science'),
(104821, 86010, 'no_lang_code', 'name', 'WPL (United States)'),
(104822, 86011, 'en', 'name', 'TB HIV Care Association'),
(104823, 86012, 'en', 'name', 'Colorado Association of School Executives'),
(104824, 86013, 'en', 'name', 'Lumbini Medical College'),
(104825, 86013, 'ne', 'name', 'ą¤²ą„ą¤®ą„ą¤¬ą¤æą¤Øą¤æ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤²ą„‡ą¤œ'),
(104826, 86014, 'en', 'name', 'Abingdon and Witney College'),
(104827, 86015, 'no_lang_code', 'name', 'Lake Capital'),
(104828, 86016, 'en', 'name', 'Department of Industry, Skills and Regional Development'),
(104829, 86017, 'en', 'name', 'Iranian Research Organization for Science and Technology'),
(104830, 86018, 'no_lang_code', 'name', 'Plextek (United Kingdom)'),
(104831, 86019, 'en', 'name', 'Cape Leopard Trust'),
(104832, 86020, 'en', 'name', 'British Orthopaedic Research Society'),
(104833, 86021, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł†Ų³ŁˆŲ± الجامعة'),
(104834, 86021, 'en', 'name', 'Al-Nisour University College'),
(104835, 86022, 'en', 'name', 'Parker Institute for Cancer Immunotherapy'),
(104836, 86023, 'no_lang_code', 'name', 'C-Com Satellite Systems (Canada)'),
(104837, 86024, 'en', 'name', 'Lefkofsky Family Foundation'),
(104838, 86025, 'no_lang_code', 'name', 'Novocure (Jersey)'),
(104839, 86026, 'no_lang_code', 'name', 'Kairos (United States)'),
(104840, 86027, 'de', 'name', 'Deutsche Gesellschaft für Parkinson und Bewegungsstörungen'),
(104841, 86028, 'no_lang_code', 'name', 'Abon Pharmaceuticals'),
(104842, 86029, 'en', 'name', 'Parkinson''s and Movement Disorder Institute'),
(104843, 86030, 'en', 'name', 'National Development Agency'),
(104844, 86030, 'hu', 'name', 'Nemzeti Fejlesztési Ügynökség'),
(104845, 86031, 'en', 'name', 'Center for Transportation and the Environment'),
(104846, 86032, 'nl', 'name', 'Innovatiefonds Zorgverzekeraars'),
(104847, 86033, 'en', 'name', 'Brain Tumour Research'),
(104848, 86034, 'de', 'name', 'Klinik für Kinder- und Jugendmedizin'),
(104849, 86035, 'en', 'name', 'Emory and Henry College'),
(104850, 86036, 'en', 'name', 'Art Institute of San Antonio'),
(104851, 86037, 'en', 'name', 'American Institute of Chemists'),
(104852, 86038, 'en', 'name', 'Xinyang Normal University'),
(104853, 86038, 'zh', 'name', 'äæ”é˜³åøˆčŒƒå­¦é™¢'),
(104854, 86039, 'no_lang_code', 'name', 'Yoshino Kogyosho (Japan)'),
(104855, 86040, 'en', 'name', 'Norwegian Cancer Society'),
(104856, 86041, 'en', 'name', 'Psoriasis and Psoriatic Arthritis Alliance'),
(104857, 86042, 'en', 'name', 'Iranian Legal Medicine Organization'),
(104858, 86042, 'fa', 'name', 'سازمان پزؓکی Ł‚Ų§Ł†ŁˆŁ†ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(104859, 86043, 'en', 'name', 'New England Institute of Art'),
(104860, 86044, 'en', 'name', 'Life Sciences Research Foundation'),
(104861, 86045, 'bg', 'name', 'Рила Š”Š¾Š»ŃŽŃˆŃŠŠ½Ń'),
(104862, 86045, 'no_lang_code', 'name', 'Rila Solutions (Bulgaria)'),
(104863, 86046, 'no_lang_code', 'name', 'Kruger (Canada)'),
(104864, 86047, 'en', 'name', 'Ministry for Foreign Affairs of Finland'),
(104865, 86047, 'fi', 'name', 'Ulkoasiainministeriƶ'),
(104866, 86048, 'en', 'name', 'Center of Biotechnogy of Borj CƩdria'),
(104867, 86049, 'en', 'name', 'Architectural Design and Research Institute of Guangdong Province'),
(104868, 86049, 'zh', 'name', 'å¹æäøœēœå»ŗē­‘č®¾č®”ē ”ē©¶é™¢'),
(104869, 86050, 'ko', 'name', '(주)미넓기술'),
(104870, 86050, 'no_lang_code', 'name', 'Mirtec (South Korea)'),
(104871, 86051, 'en', 'name', 'Triological Society'),
(104872, 86052, 'en', 'name', 'Mississippi State Department of Health'),
(104873, 86053, 'en', 'name', 'William Harvey Research Foundation'),
(104874, 86054, 'en', 'name', 'Society for French Historical Studies'),
(104875, 86055, 'en', 'name', 'John Douglas French Alzheimers Foundation');
INSERT INTO `ror_settings` VALUES
(104876, 86056, 'en', 'name', 'Far Eastern University Institute of Law'),
(104877, 86057, 'no_lang_code', 'name', 'Esperion Therapeutics (United States)'),
(104878, 86058, 'no_lang_code', 'name', 'Synlogic (United States)'),
(104879, 86059, 'en', 'name', 'Couch Family Foundation'),
(104880, 86060, 'no_lang_code', 'name', 'Diamond V (United States)'),
(104881, 86061, 'en', 'name', 'National Police University of China'),
(104882, 86061, 'zh', 'name', 'äø­å›½åˆ‘äŗ‹č­¦åÆŸå­¦é™¢'),
(104883, 86062, 'fi', 'name', 'Maa- ja Vesitekniikan Tuki Ry'),
(104884, 86063, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŽćƒŖć‚æć‚±ć‚«ćƒ³ćƒ‘ćƒ‹ćƒ¼ćƒŖćƒŸćƒ†ćƒ‰'),
(104885, 86063, 'no_lang_code', 'name', 'Noritake (Japan)'),
(104886, 86064, 'en', 'name', 'Gdańsk Medical University, Medical University of Gdansk'),
(104887, 86064, 'pl', 'name', 'Gdański Uniwersytet Medyczny'),
(104888, 86065, 'en', 'name', 'Near and Far Aid'),
(104889, 86066, 'da', 'name', 'Spar Nord Fonden'),
(104890, 86066, 'en', 'name', 'Spar Nord Foundation'),
(104891, 86067, 'en', 'name', 'World Agroforestry Centre'),
(104892, 86068, 'en', 'name', 'National University of Science and Technology'),
(104893, 86068, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ МИДиД'),
(104894, 86069, 'en', 'name', 'European Organisation for Rare Diseases'),
(104895, 86070, 'en', 'name', 'CDA College'),
(104896, 86071, 'en', 'name', 'Tampa Bay Estuary Program'),
(104897, 86072, 'en', 'name', 'Pomona Valley Hospital Medical Center'),
(104898, 86073, 'no_lang_code', 'name', 'Corvid Technologies (United States)'),
(104899, 86074, 'no_lang_code', 'name', 'Balfour Beatty Rail (United Kingdom)'),
(104900, 86075, 'en', 'name', 'Barking and Dagenham College'),
(104901, 86076, 'ja', 'name', 'č²žé™å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(104902, 86076, 'no_lang_code', 'name', 'Teisei Gakuen Junior College'),
(104903, 86077, 'en', 'name', 'George A. Ramlose Foundation'),
(104904, 86078, 'en', 'name', 'St Olav''s University Hospital'),
(104905, 86079, 'da', 'name', 'Helen og Ejnar BjĆørnows Fond'),
(104906, 86080, 'no_lang_code', 'name', 'JDSU (United States)'),
(104907, 86081, 'en', 'name', 'Nebraska Environmental Trust'),
(104908, 86082, 'en', 'name', 'Iran Polymer and Petrochemical Institute'),
(104909, 86083, 'en', 'name', 'National Centre for Earth Science Studies'),
(104910, 86083, 'ml', 'name', 'ą“¦ąµ‡ą“¶ą“æą“Æ ą“­ąµ‚ą“®ą“æ ą“¶ą“¾ą“øąµą“¤ąµą“° ą“Ŗą“ ą“Ø ą“•ąµ‡'),
(104911, 86084, 'en', 'name', 'Canadian Climate Forum'),
(104912, 86085, 'en', 'name', 'National Parks and Wildlife Service'),
(104913, 86086, 'de', 'name', 'AKh Linz'),
(104914, 86087, 'no_lang_code', 'name', 'DompƩ (Italy)'),
(104915, 86088, 'en', 'name', 'Konrad Lorenz Institute for Evolution and Cognition Research'),
(104916, 86089, 'no_lang_code', 'name', 'H&R Block (United States)'),
(104917, 86090, 'en', 'name', 'Roy J. Carver Charitable Trust'),
(104918, 86091, 'en', 'name', 'Banff Centre'),
(104919, 86092, 'en', 'name', 'Hull Maternity Hospital'),
(104920, 86093, 'en', 'name', 'University Hospital St. Ivan Rilski'),
(104921, 86094, 'en', 'name', 'Miami University’s Voice of America Learning Center'),
(104922, 86095, 'de', 'name', 'Senckenberg BiodiversitƤt und Klima Forschungszentrum'),
(104923, 86095, 'en', 'name', 'Senckenberg Biodiversity and Climate Research Centre'),
(104924, 86096, 'pt', 'name', 'Fundação de Apoio ao Instituto de Pesquisas Tecnológicas'),
(104925, 86097, 'en', 'name', 'Trine University'),
(104926, 86098, 'en', 'name', 'Art Institute of Tennessee'),
(104927, 86099, 'no_lang_code', 'name', 'Bard (Germany)'),
(104928, 86100, 'en', 'name', 'Ministry of the Interior and Kingdom Relations'),
(104929, 86100, 'nl', 'name', 'Ministerie van Binnenlandse Zaken en Koninkrijksrelaties'),
(104930, 86101, 'en', 'name', 'College of Occupational Therapists'),
(104931, 86102, 'en', 'name', 'United States Agency for International Development'),
(104932, 86103, 'en', 'name', 'Rhode Island Hospital'),
(104933, 86104, 'no_lang_code', 'name', 'UPM (Finland)'),
(104934, 86105, 'no_lang_code', 'name', 'Bellerophon Therapeutics (United States)'),
(104935, 86106, 'en', 'name', 'Louisiana State University Agricultural Center'),
(104936, 86107, 'en', 'name', 'N. I. Lobachevsky State University of Nizhny Novgorod'),
(104937, 86107, 'ru', 'name', 'ŠŠøŠ¶ŠµŠ³Š¾Ń€Š¾Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. И. Лобачевского'),
(104938, 86108, 'no_lang_code', 'name', 'On Target Laboratories (United States)'),
(104939, 86109, 'en', 'name', 'Jaseng Medical Foundation'),
(104940, 86109, 'ko', 'name', 'ģžģƒģ˜ė£Œģž¬ė‹Ø'),
(104941, 86110, 'en', 'name', 'Hamline University'),
(104942, 86111, 'en', 'name', 'Conjuring Arts Research Center'),
(104943, 86112, 'es', 'name', 'Fundacion Para La Investigacion Del Hospital Universitario La Fe De La Comunidad Valenciana'),
(104944, 86113, 'en', 'name', 'Einstein Healthcare Network'),
(104945, 86114, 'en', 'name', 'Tele & Radio Research Institute'),
(104946, 86115, 'en', 'name', 'Herbert Scoville Jr. Peace Fellowship'),
(104947, 86116, 'es', 'name', 'Fundación Pública Andaluza para la Gestión de la Investigación en Salud de Sevilla'),
(104948, 86117, 'en', 'name', 'National Centre for Cell Science'),
(104949, 86117, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤•ą„‹ą¤¶ą¤æą¤•ą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°, ą¤Ŗą„ą¤£ą„‡'),
(104950, 86118, 'en', 'name', 'State Academic University of Humanities'),
(104951, 86118, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ акаГемический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Ń… наук'),
(104952, 86119, 'en', 'name', 'Biophysics Center of Armenian'),
(104953, 86120, 'en', 'name', 'Swedish e-Science Research Center'),
(104954, 86121, 'en', 'name', 'Shivaji University'),
(104955, 86121, 'ta', 'name', 'சிவாஜி ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(104956, 86122, 'nl', 'name', 'Nederlandse Vereniging voor Kindergeneeskunde'),
(104957, 86123, 'no_lang_code', 'name', 'GE Healthcare (United States)'),
(104958, 86124, 'no_lang_code', 'name', 'Mirati Therapeutics (United States)'),
(104959, 86125, 'en', 'name', 'Egyptian Society of Ear, Nose, Throat and Allied Sciences'),
(104960, 86126, 'en', 'name', 'International Peace Maternity & Child Health Hospital'),
(104961, 86127, 'en', 'name', 'Ohio History Connection'),
(104962, 86128, 'en', 'name', 'Advanced Materials and BioEngineering Research'),
(104963, 86129, 'en', 'name', 'Montessori Education Institute of the Pacific Northwest'),
(104964, 86130, 'no_lang_code', 'name', 'Precision Acoustics (United Kingdom)'),
(104965, 86131, 'no_lang_code', 'name', 'Tingvoll Kommune'),
(104966, 86132, 'en', 'name', 'Ecumenical Project for International Cooperation'),
(104967, 86133, 'no_lang_code', 'name', 'Marvel Fusion'),
(104968, 86134, 'en', 'name', 'Helen Keller Foundation'),
(104969, 86135, 'en', 'name', 'Art Institute of Portland'),
(104970, 86136, 'sv', 'name', 'Malmƶ AllmƤnna Sjukhus'),
(104971, 86137, 'es', 'name', 'Universidad Simón Bolívar'),
(104972, 86138, 'no_lang_code', 'name', 'AIM Photonics (United States)'),
(104973, 86139, 'en', 'name', 'Soil and Water Conservation Society'),
(104974, 86140, 'en', 'name', 'Pulmonary Fibrosis Foundation'),
(104975, 86141, 'en', 'name', 'Vermont Community Foundation'),
(104976, 86142, 'en', 'name', 'International Christian University'),
(104977, 86142, 'ja', 'name', 'å›½éš›åŸŗē£ę•™å¤§å­¦'),
(104978, 86143, 'fr', 'name', 'Ecole Nationale SupƩrieure d''Hydraulique Abdellah Arbaoui'),
(104979, 86144, 'en', 'name', 'American Academy of Cosmetic Surgery'),
(104980, 86145, 'en', 'name', 'Alliance for a Green Revolution in Africa'),
(104981, 86146, 'en', 'name', 'Santa Monica College'),
(104982, 86147, 'en', 'name', 'Institute of Translational Health Sciences'),
(104983, 86148, 'en', 'name', 'Nagoya University of Arts and Sciences'),
(104984, 86148, 'ja', 'name', 'åå¤å±‹å­¦čŠøå¤§å­¦'),
(104985, 86149, 'en', 'name', 'Bryansk State Academy of Agriculture'),
(104986, 86150, 'en', 'name', 'The Waterloo Foundation'),
(104987, 86151, 'no_lang_code', 'name', 'Computational Industry Technologies (Norway)'),
(104988, 86152, 'en', 'name', 'Nunavut Research Institute'),
(104989, 86153, 'en', 'name', 'Norwegian Directorate of Health'),
(104990, 86154, 'en', 'name', 'Taiwan Forestry Research Institute'),
(104991, 86154, 'zh', 'name', 'ꞗꄭ試驗ꉀ'),
(104992, 86155, 'en', 'name', 'Saskatchewan Canola Development Commission'),
(104993, 86156, 'no_lang_code', 'name', 'JDSU (China)'),
(104994, 86157, 'fr', 'name', 'Direction des Applications Militaires'),
(104995, 86158, 'en', 'name', 'Monmouth University'),
(104996, 86158, 'es', 'name', 'Universidad de Monmouth'),
(104997, 86159, 'en', 'name', 'Christian Medical Association of India'),
(104998, 86160, 'en', 'name', 'Institute for Information Industry'),
(104999, 86160, 'zh', 'name', 'č³‡čØŠå·„ę„­ē­–é€²ęœƒ'),
(105000, 86161, 'no_lang_code', 'name', 'Kockums Computer Systems (Sweden)'),
(105001, 86162, 'fr', 'name', 'ENOES'),
(105002, 86163, 'en', 'name', 'A.P. Ershov Institute of Informatics Systems, Siberian Branch of the Russian Academy of Sciences'),
(105003, 86163, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ систем информатики им. А.П. Š•Ń€ŃˆŠ¾Š²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(105004, 86164, 'no_lang_code', 'name', 'Leica (Singapore)'),
(105005, 86165, 'en', 'name', 'Paul G. Allen Family Foundation'),
(105006, 86166, 'en', 'name', 'International Renewable Energy Agency'),
(105007, 86167, 'en', 'name', 'University of Wisconsin–Marinette'),
(105008, 86168, 'no_lang_code', 'name', 'Esterline (United Kingdom)'),
(105009, 86169, 'no_lang_code', 'name', 'Solulink (United States)'),
(105010, 86170, 'no_lang_code', 'name', 'DornerWorks (United States)'),
(105011, 86171, 'no_lang_code', 'name', 'Anite (United Kingdom)'),
(105012, 86172, 'en', 'name', 'Society of Urologic Oncology'),
(105013, 86173, 'ko', 'name', 'ė™źµ­ėŒ€ķ•™źµ WISEģŗ ķ¼ģŠ¤'),
(105014, 86173, 'no_lang_code', 'name', 'Dongguk University WISE'),
(105015, 86174, 'en', 'name', 'National Palliative Care Research Center'),
(105016, 86175, 'pl', 'name', 'Prywatna Wyższa Szkoła Ochrony Środowiska w Radomiu'),
(105017, 86176, 'en', 'name', 'Foshan Hospital of TCM'),
(105018, 86176, 'zh', 'name', 'ä½›å±±åø‚äø­åŒ»é™¢'),
(105019, 86177, 'no_lang_code', 'name', 'ARIAD Pharmaceuticals (United States)'),
(105020, 86178, 'en', 'name', 'Diabetes QuƩbec'),
(105021, 86178, 'fr', 'name', 'Diabète Québecs'),
(105022, 86179, 'en', 'name', 'Islamic Azad University of Falavarjan'),
(105023, 86179, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ ŁŁ„Ų§ŁˆŲ±Ų¬Ų§Ł†'),
(105024, 86180, 'en', 'name', 'American Institute of Iranian Studies'),
(105025, 86181, 'no_lang_code', 'name', 'Great Lakes NeuroTechnologies (United States)'),
(105026, 86182, 'en', 'name', 'Swedish e-Science Research Centre'),
(105027, 86183, 'en', 'name', 'Florida Polytechnic University'),
(105028, 86184, 'en', 'name', 'All-Russian Institute of Plant Protection'),
(105029, 86184, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ защиты растений'),
(105030, 86185, 'en', 'name', 'Qinghai University for Nationalities'),
(105031, 86185, 'zh', 'name', 'é’ęµ·ę°‘ę—å¤§å­¦'),
(105032, 86186, 'en', 'name', 'Kosar University of Bojnord'),
(105033, 86186, 'fa', 'name', 'دانؓگاه کوثر ŲØŲ¬Ł†ŁˆŲ±ŲÆ'),
(105034, 86187, 'en', 'name', 'Shahed University'),
(105035, 86187, 'fa', 'name', 'دانؓگاه ؓاهد'),
(105036, 86188, 'no_lang_code', 'name', 'ATEC (United States)'),
(105037, 86189, 'no_lang_code', 'name', 'Amec Foster Wheeler (Italy)'),
(105038, 86190, 'en', 'name', 'Cellular Biology and Neurobiology Institute'),
(105039, 86190, 'it', 'name', 'Istituto di Biologia Cellulare e Neurobiologia'),
(105040, 86191, 'no_lang_code', 'name', 'Leica (United Kingdom)'),
(105041, 86192, 'en', 'name', 'Exploit Technologies Pte Ltd'),
(105042, 86193, 'en', 'name', 'Combined Military Hospital Rawalpindi'),
(105043, 86194, 'en', 'name', 'Chia-Yi Christian Hospital'),
(105044, 86195, 'en', 'name', 'Moscow Institute of Transport'),
(105045, 86195, 'ru', 'name', 'ŠœŠžŠ”ŠšŠžŠ’Š”ŠšŠ˜Š™ ŠŠ’Š¢ŠžŠœŠžŠ‘Š˜Š›Š¬ŠŠž-Š”ŠžŠ ŠžŠ–ŠŠ«Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ Š¢Š•Š„ŠŠ˜Š§Š•Š”ŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(105046, 86196, 'no_lang_code', 'name', 'Mast Therapeutics (United States)'),
(105047, 86197, 'en', 'name', 'Turner Foundation'),
(105048, 86198, 'en', 'name', 'The Salah Foundation'),
(105049, 86199, 'en', 'name', 'University of Bielsko-Biała'),
(105050, 86199, 'pl', 'name', 'Akademia Techniczno-Humanistyczna w Bielsku-Białej'),
(105051, 86200, 'en', 'name', 'National Coalition of Hispanic Health and Human Services Organizations'),
(105052, 86201, 'en', 'name', 'The Olav Raagholt and Gerd Meidel Raagholt Research Foundation'),
(105053, 86201, 'no', 'name', 'Olav Raagholt og Gerd Meidel Raagholts stiftelse'),
(105054, 86202, 'pt', 'name', 'Sociedade Portuguesa de Cardiologia'),
(105055, 86203, 'en', 'name', 'Ahmanson Foundation'),
(105056, 86204, 'no_lang_code', 'name', 'CIMA+ (Canada)'),
(105057, 86205, 'en', 'name', 'Kazimierz Pułaski University of Technology and Humanities in Radom'),
(105058, 86205, 'pl', 'name', 'Uniwersytet Technologiczno-Humanistyczny im. Kazimierza Pułaskiego w Radomiu'),
(105059, 86206, 'fr', 'name', 'Institut International d’IngĆ©nierie de l’Eau et de l’Environnement'),
(105060, 86207, 'no_lang_code', 'name', 'Conetec Investigations'),
(105061, 86208, 'en', 'name', 'Heffter Research Institute'),
(105062, 86209, 'en', 'name', 'Third Affiliated Hospital of Harbin Medical University'),
(105063, 86209, 'zh', 'name', 'å“ˆå°”ę»ØåŒ»ē§‘å¤§å­¦ē¬¬äø‰äø“åŗŠåŒ»å­¦é™¢'),
(105064, 86210, 'de', 'name', 'Hermann und Lilly Schilling-Stiftung'),
(105065, 86211, 'pt', 'name', 'Sociedade Brasileira de Anatomia'),
(105066, 86212, 'de', 'name', 'Karl-Franzens-UniversitƤt Graz'),
(105067, 86212, 'en', 'name', 'University of Graz'),
(105068, 86212, 'hr', 'name', 'SveučiliŔte u Grazu'),
(105069, 86212, 'sl', 'name', 'Univerza v Gradcu'),
(105070, 86213, 'en', 'name', 'Netaji Subhas University of Technology'),
(105071, 86213, 'hi', 'name', 'ą¤Øą„‡ą¤¤ą¤¾ą¤œą„€ ą¤øą„ą¤­ą¤¾ą¤· ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(105072, 86214, 'en', 'name', 'Genesee Country Village and Museum'),
(105073, 86215, 'no_lang_code', 'name', 'VistaGen Therapeutics (United States)'),
(105074, 86216, 'en', 'name', 'Ara Institute of Canterbury'),
(105075, 86217, 'es', 'name', 'Sociedad EspaƱola de Reumatologƭa'),
(105076, 86218, 'en', 'name', 'Foundation for Ichthyosis and Related Skin Types'),
(105077, 86219, 'en', 'name', 'Pediatric Cancer Foundation'),
(105078, 86220, 'no_lang_code', 'name', 'McCormick (United States)'),
(105079, 86221, 'en', 'name', 'Research Foundation for Opto-Science and Technology'),
(105080, 86221, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…‰ē§‘å­¦ęŠ€č”“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(105081, 86222, 'en', 'name', 'Lewis and Clark Library'),
(105082, 86223, 'en', 'name', 'Borlaug Institute for South Asia'),
(105083, 86224, 'no_lang_code', 'name', 'Sharp (United States)'),
(105084, 86225, 'en', 'name', 'The Neurosciences Foundation'),
(105085, 86226, 'no_lang_code', 'name', 'Compureg (Czechia)'),
(105086, 86227, 'en', 'name', 'Pennsylvania Athletic Trainers'' Society'),
(105087, 86228, 'en', 'name', 'Unity Worldwide Ministries'),
(105088, 86229, 'en', 'name', 'Kobe University of Welfare'),
(105089, 86229, 'ja', 'name', 'ē„žęˆøåŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(105090, 86230, 'en', 'name', 'eThekwini Municipality'),
(105091, 86231, 'no_lang_code', 'name', 'Exiqon (Denmark)'),
(105092, 86232, 'en', 'name', 'Hyogo Earthquake Memorial 21st Century Research Institute'),
(105093, 86232, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ć²ć‚‡ć†ć”éœ‡ē½čØ˜åæµ21äø–ē“€ē ”ē©¶ę©Ÿę§‹'),
(105094, 86233, 'en', 'name', 'National Commission for the Knowledge and Use of Biodiversity'),
(105095, 86233, 'es', 'name', 'Comisión Nacional para el Conocimiento y Uso de la Biodiversidad'),
(105096, 86234, 'en', 'name', 'Osteology Foundation'),
(105097, 86235, 'en', 'name', 'Concordia International University Estonia'),
(105098, 86235, 'et', 'name', 'Concordia Rahvusvaheline Ülikool Eestis'),
(105099, 86236, 'en', 'name', 'National Polytechnic School'),
(105100, 86236, 'es', 'name', 'Escuela PolitƩcnica Nacional'),
(105101, 86237, 'no_lang_code', 'name', 'Adaptive Biotechnologies (United States)'),
(105102, 86238, 'en', 'name', 'Letten Foundation'),
(105103, 86239, 'en', 'name', 'Jinzhong College of Information'),
(105104, 86239, 'zh', 'name', '晋中俔息学院'),
(105105, 86240, 'no_lang_code', 'name', 'Neurim Pharmaceuticals (Israel)'),
(105106, 86241, 'en', 'name', 'Shanghai Finance University'),
(105107, 86241, 'zh', 'name', 'äøŠęµ·é‡‘čžå­¦é™¢'),
(105108, 86242, 'no_lang_code', 'name', 'Phoenix (United States)'),
(105109, 86243, 'en', 'name', 'Centre for Social Intervention Studies'),
(105110, 86243, 'pt', 'name', 'Centro de Estudos para a Intervencao Social'),
(105111, 86244, 'fr', 'name', 'Laboratoire de Physique ThƩorique Ecole Normale SupƩrieure'),
(105112, 86245, 'en', 'name', 'National Performance Network'),
(105113, 86246, 'en', 'name', 'Biofuels Center of North Carolina'),
(105114, 86247, 'en', 'name', 'Wuhan Institute of Tuberculosis Control'),
(105115, 86247, 'zh', 'name', 'ę­¦ę±‰ē»“ę øē—…é˜²ę²»ē ”ē©¶ę‰€'),
(105116, 86248, 'no_lang_code', 'name', 'Mylan (South Africa)'),
(105117, 86249, 'no_lang_code', 'name', 'SOS OxygĆØne (France)'),
(105118, 86250, 'en', 'name', 'A. James & Alice B. Clark Foundation'),
(105119, 86251, 'en', 'name', 'Petroleum Technology Research Centre'),
(105120, 86252, 'en', 'name', 'National University of the West'),
(105121, 86252, 'es', 'name', 'Universidad Nacional del Oeste'),
(105122, 86253, 'en', 'name', 'Hong Kong Research Institute of Textiles and Apparel'),
(105123, 86254, 'en', 'name', 'Helen Macpherson Smith Trust'),
(105124, 86255, 'en', 'name', 'University College of Medical Sciences'),
(105125, 86256, 'en', 'name', 'United Nations Development Programme'),
(105126, 86257, 'en', 'name', 'Machine Intelligence Research Institute'),
(105127, 86258, 'de', 'name', 'St.Anna Kinderspital'),
(105128, 86259, 'no_lang_code', 'name', 'Harrisvaccines (United States)'),
(105129, 86260, 'en', 'name', 'Sapporo Medical University'),
(105130, 86260, 'ja', 'name', 'ęœ­å¹ŒåŒ»ē§‘å¤§å­¦'),
(105131, 86261, 'en', 'name', 'Dow University of Health Sciences'),
(105132, 86261, 'ur', 'name', 'ڈاؤ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŪŪŒŁ„ŲŖŚ¾ سائنسز'),
(105133, 86262, 'en', 'name', 'National Library of Nigeria'),
(105134, 86263, 'en', 'name', 'James Merrill House'),
(105135, 86264, 'en', 'name', 'Charles Darwin Foundation'),
(105136, 86265, 'en', 'name', 'Maine Technology Institute'),
(105137, 86266, 'no_lang_code', 'name', 'Triune Systems (United States)'),
(105138, 86267, 'en', 'name', 'Kieikai Research Foundation'),
(105139, 86268, 'no_lang_code', 'name', 'Medicines Company (United Kingdom)'),
(105140, 86269, 'en', 'name', 'American Neurogastroenterology and Motility Society'),
(105141, 86270, 'no_lang_code', 'name', 'China Architecture Design & Research Group (China)'),
(105142, 86270, 'zh', 'name', '中国建筑设讔研究院'),
(105143, 86271, 'en', 'name', 'State University of Jakarta'),
(105144, 86271, 'id', 'name', 'Universitas Negeri Jakarta'),
(105145, 86272, 'no_lang_code', 'name', 'Teledyne RD Instruments (United States)'),
(105146, 86273, 'en', 'name', 'Chorley and South Ribble Hospital'),
(105147, 86274, 'no_lang_code', 'name', 'Smart Information Flow Technologies (United States)'),
(105148, 86275, 'en', 'name', 'Health and Disability Commissioner'),
(105149, 86276, 'en', 'name', 'Arturo Prat University'),
(105150, 86276, 'es', 'name', 'Universidad Arturo Prat'),
(105151, 86277, 'ja', 'name', 'å¤§é˜Ŗå…¬ē«‹å¤§å­¦'),
(105152, 86277, 'no_lang_code', 'name', 'Osaka Metropolitan University'),
(105153, 86278, 'en', 'name', 'St. Norbert College'),
(105154, 86279, 'no_lang_code', 'name', 'Molecular NeuroImaging (United States)'),
(105155, 86280, 'en', 'name', 'Fight for Sight'),
(105156, 86281, 'en', 'name', 'Finnish Coeliac Society'),
(105157, 86281, 'fi', 'name', 'Keliakialiitto'),
(105158, 86282, 'de', 'name', 'Länderinstitut für Bienenkunde'),
(105159, 86282, 'en', 'name', 'Institute for Bee Research'),
(105160, 86283, 'no_lang_code', 'name', 'Luxcel Biosciences (Ireland)'),
(105161, 86284, 'en', 'name', 'Irkutsk State University'),
(105162, 86284, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105163, 86285, 'en', 'name', 'Wihuri Research Institute'),
(105164, 86286, 'en', 'name', 'Spanish Breast Cancer Group'),
(105165, 86286, 'es', 'name', 'Grupo Español de Investigación en CÔncer de Mama'),
(105166, 86287, 'no_lang_code', 'name', 'Scalable Network Technologies (United States)'),
(105167, 86288, 'en', 'name', 'National Institute for Theoretical Physics'),
(105168, 86289, 'en', 'name', 'The Lowy Medical Research Institute'),
(105169, 86290, 'en', 'name', 'International Specialised Skills Institute'),
(105170, 86291, 'en', 'name', 'Neurological Foundation of New Zealand'),
(105171, 86292, 'en', 'name', 'P.N. Lebedev Physical Institute of the Russian Academy of Sciences'),
(105172, 86292, 'ru', 'name', 'Физический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. П. Š. ЛебеГева'),
(105173, 86293, 'es', 'name', 'Instituto Profesional Virginio Gómez'),
(105174, 86294, 'en', 'name', 'Carlos Albizu University'),
(105175, 86295, 'en', 'name', 'Anhui Development and Reform Commission'),
(105176, 86295, 'zh', 'name', 'å®‰å¾½ēœå‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(105177, 86296, 'es', 'name', 'Hospital Privado de Comunidad'),
(105178, 86297, 'en', 'name', 'Natural Hazards Research Platform'),
(105179, 86298, 'en', 'name', 'Virginia Marine Resources Commission'),
(105180, 86299, 'no_lang_code', 'name', 'KIK Custom Products (Canada)'),
(105181, 86300, 'de', 'name', 'Bremer Institut für angewandte Strahltechnik'),
(105182, 86300, 'en', 'name', 'Bremen Institute for Applied Beam Technology'),
(105183, 86301, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų£Ł…ŁŠŲ± سلطان Ų§Ł„Ų¹Ų³ŁƒŲ±ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲµŲ­ŁŠŲ©'),
(105184, 86301, 'en', 'name', 'Prince Sultan Military College of Health Sciences'),
(105185, 86302, 'en', 'name', 'Alfred University'),
(105186, 86303, 'no', 'name', 'Vinje Kommune'),
(105187, 86304, 'en', 'name', 'Institute of Molecular Sciences and Bioinformatics'),
(105188, 86305, 'en', 'name', 'General Services Administration'),
(105189, 86305, 'es', 'name', 'Administración de Servicios Generales'),
(105190, 86305, 'fr', 'name', 'Administration des services gƩnƩraux'),
(105191, 86306, 'no_lang_code', 'name', 'B&W Tek (United States)'),
(105192, 86307, 'en', 'name', 'National Imaging Facility'),
(105193, 86308, 'no_lang_code', 'name', 'Sanovel (Turkey)'),
(105194, 86309, 'en', 'name', 'National Association of Orthopaedic Nurses'),
(105195, 86310, 'en', 'name', 'Institute of Solid State Chemistry'),
(105196, 86310, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ химии тверГого тела Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(105197, 86311, 'en', 'name', 'Qiqihar University'),
(105198, 86311, 'zh', 'name', '齐齐哈尔大学'),
(105199, 86312, 'en', 'name', 'Institute of Dendrology'),
(105200, 86312, 'pl', 'name', 'Instytut Dendrologii PAN'),
(105201, 86313, 'ja', 'name', 'å¤§é˜Ŗę˜Žęµ„å„³å­ēŸ­ęœŸå¤§å­¦'),
(105202, 86313, 'no_lang_code', 'name', 'Osaka Meijo Women''s College'),
(105203, 86314, 'ja', 'name', 'ćƒˆćƒØć‚æē“”ē¹”ę Ŗå¼ä¼šē¤¾'),
(105204, 86314, 'no_lang_code', 'name', 'Toyota Boshoku (Japan)'),
(105205, 86315, 'en', 'name', 'Yamazaki College of Animal Health Technology'),
(105206, 86315, 'ja', 'name', 'ćƒ¤ćƒžć‚¶ć‚­å‹•ē‰©ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(105207, 86316, 'en', 'name', 'Batken State University'),
(105208, 86316, 'ky', 'name', 'Баткенский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105209, 86317, 'en', 'name', 'Academic Hospital Paramaribo'),
(105210, 86317, 'nl', 'name', 'Academisch Ziekenhuis Paramaribo'),
(105211, 86318, 'en', 'name', 'Penn State Behrend'),
(105212, 86319, 'no_lang_code', 'name', 'InterMune (Canada)'),
(105213, 86320, 'no_lang_code', 'name', 'UTC Aerospace Systems (United Kingdom)'),
(105214, 86321, 'en', 'name', 'Marine National Facility'),
(105215, 86322, 'no_lang_code', 'name', 'BPE (Germany)'),
(105216, 86323, 'en', 'name', 'Monell Chemical Senses Center'),
(105217, 86324, 'en', 'name', 'SouthCoast Health'),
(105218, 86325, 'en', 'name', 'Eastern Connecticut State University'),
(105219, 86326, 'en', 'name', 'Thuyloi University'),
(105220, 86327, 'no_lang_code', 'name', 'Thomson Csf (France)'),
(105221, 86328, 'no_lang_code', 'name', 'Intravacc (Netherlands)'),
(105222, 86329, 'en', 'name', 'Victorian Clinical Genetics Services'),
(105223, 86330, 'no_lang_code', 'name', 'Acacia Research Corporation (United States)'),
(105224, 86331, 'en', 'name', 'Hoshi University'),
(105225, 86331, 'ja', 'name', 'ę˜Ÿč–¬ē§‘å¤§å­¦'),
(105226, 86332, 'no_lang_code', 'name', 'MAN (Germany)'),
(105227, 86333, 'no_lang_code', 'name', 'Foster Wheeler (Finland)'),
(105228, 86334, 'no_lang_code', 'name', 'Domainex (United Kingdom)'),
(105229, 86335, 'fr', 'name', 'CancƩropƓle PACA'),
(105230, 86336, 'de', 'name', 'Leibniz-Institut für Pflanzenbiochemie'),
(105231, 86336, 'en', 'name', 'Leibniz Institute of Plant Biochemistry'),
(105232, 86337, 'en', 'name', 'CSIRO Marine and Atmospheric Research'),
(105233, 86338, 'no_lang_code', 'name', 'Tandem Diabetes Care (United States)'),
(105234, 86339, 'en', 'name', 'Oncode Institute'),
(105235, 86340, 'en', 'name', 'Duke University School of Medicine'),
(105236, 86341, 'en', 'name', 'MRC Medical Sociology Unit'),
(105237, 86342, 'en', 'name', 'Sophia University'),
(105238, 86342, 'ja', 'name', 'äøŠę™ŗå¤§å­¦'),
(105239, 86343, 'en', 'name', 'American Institute of Bisexuality'),
(105240, 86344, 'en', 'name', 'D A Pandu Memorial RV Dental College and Hospital'),
(105241, 86345, 'en', 'name', 'International Maize and Wheat Improvement Center'),
(105242, 86346, 'no_lang_code', 'name', 'Sema4 (United States)'),
(105243, 86347, 'no_lang_code', 'name', 'Quintessa (United Kingdom)'),
(105244, 86348, 'pt', 'name', 'Universidade Regional de Blumenau'),
(105245, 86349, 'en', 'name', 'Consortium For Research and Innovation In Aerospace In Quebec'),
(105246, 86350, 'en', 'name', 'Kurdistan University of Medical Sciences'),
(105247, 86350, 'ku', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲÆŲ±Ł…Ų§Ł†ŪŒ کردستان'),
(105248, 86351, 'de', 'name', 'Hamburger Krebsgesellschaft'),
(105249, 86352, 'en', 'name', 'Central European Institute of Technology'),
(105250, 86353, 'en', 'name', 'Arkansas Soybean Promotion Board'),
(105251, 86354, 'en', 'name', 'Uganda Technology and Management University'),
(105252, 86355, 'es', 'name', 'Escuela Colombiana de Ingenieria Julio Garavito, Escuela Colombiana de IngenierĆ­a'),
(105253, 86356, 'en', 'name', 'ARC Centre of Excellence in Future Low-Energy Electronics Technologies'),
(105254, 86357, 'en', 'name', 'Age Endeavour Fellowship'),
(105255, 86358, 'en', 'name', 'The Art Institutes'),
(105256, 86359, 'fr', 'name', 'Fondation Hopale'),
(105257, 86360, 'en', 'name', 'South Metropolitan Technical and Further Education'),
(105258, 86361, 'no_lang_code', 'name', 'Inmos'),
(105259, 86362, 'no_lang_code', 'name', 'Scientific Systems Company (United States)'),
(105260, 86363, 'en', 'name', 'University of Medicine and Health Sciences'),
(105261, 86364, 'en', 'name', 'Union University'),
(105262, 86365, 'en', 'name', 'State Ethnic Affairs Commission'),
(105263, 86366, 'en', 'name', 'Sichuan Animal Science Academy'),
(105264, 86366, 'zh', 'name', 'å››å·ēœē•œē‰§ē§‘å­¦ē ”ē©¶é™¢'),
(105265, 86367, 'ja', 'name', 'ä¼Šč—¤ē—…é™¢'),
(105266, 86367, 'no_lang_code', 'name', 'Ito Hospital'),
(105267, 86368, 'en', 'name', 'Bhagwan Mahavir Medical Research Centre'),
(105268, 86369, 'it', 'name', 'Conservatorio di Musica "Luisa D''Annunzio"'),
(105269, 86370, 'no_lang_code', 'name', 'Oracle (United Kingdom)'),
(105270, 86371, 'en', 'name', 'Center for Cancer and Blood Disorders'),
(105271, 86372, 'en', 'name', 'Beni American University'),
(105272, 86373, 'en', 'name', 'Van Xuan University of Technology'),
(105273, 86373, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ Vįŗ”n XuĆ¢n'),
(105274, 86374, 'id', 'name', 'Universitas Muhammadiyah Aceh'),
(105275, 86375, 'en', 'name', 'Indian Institute of Teacher Education'),
(105276, 86376, 'en', 'name', 'Science Council of Japan'),
(105277, 86376, 'ja', 'name', 'ę—„ęœ¬å­¦č”“ä¼šč­°'),
(105278, 86377, 'en', 'name', 'Bournemouth and Poole College'),
(105279, 86378, 'en', 'name', 'Financialist'),
(105280, 86379, 'no_lang_code', 'name', 'Berner & Mattner (Germany)'),
(105281, 86380, 'en', 'name', 'Izhevsk State Technical University'),
(105282, 86380, 'ru', 'name', 'Ижевский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. Š¢. Калашникова'),
(105283, 86381, 'no_lang_code', 'name', 'Ulrich Creative Simulations (Switzerland)'),
(105284, 86382, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†Ų²ŁˆŁ‰'),
(105285, 86382, 'en', 'name', 'University of Nizwa'),
(105286, 86383, 'en', 'name', 'GreyNet International'),
(105287, 86384, 'en', 'name', 'Council of Professional Geropsychology Training Programs'),
(105288, 86385, 'en', 'name', 'United States Bone and Joint Initiative'),
(105289, 86386, 'en', 'name', 'PADI Foundation'),
(105290, 86387, 'no_lang_code', 'name', 'Dyax (United States)'),
(105291, 86388, 'en', 'name', 'National Institute of Health Sciences'),
(105292, 86389, 'en', 'name', 'Ministry of the Environment, Conservation and Parks'),
(105293, 86389, 'fr', 'name', 'MinistĆØre de l’Environnement, de la Protection de la Nature et des Parcs'),
(105294, 86390, 'no_lang_code', 'name', 'Faxitron (United States)'),
(105295, 86391, 'no_lang_code', 'name', 'Latour (Sweden)'),
(105296, 86392, 'en', 'name', 'MRC Weatherall Institute of Molecular Medicine'),
(105297, 86393, 'en', 'name', 'University Hospital of Bern'),
(105298, 86394, 'no_lang_code', 'name', 'Lincoln Agritech (New Zealand)'),
(105299, 86395, 'en', 'name', 'Enrico Fermi Center for Study and Research'),
(105300, 86395, 'it', 'name', 'Museo Storico della Fisica e Centro Studi e Ricerche Enrico Fermi'),
(105301, 86396, 'en', 'name', 'Triple Negative Breast Cancer Foundation'),
(105302, 86397, 'en', 'name', 'St. Luke''s University Health Network'),
(105303, 86398, 'en', 'name', 'Glaucoma Foundation'),
(105304, 86399, 'en', 'name', 'Social Welfare Department'),
(105305, 86399, 'zh', 'name', 'ē¤¾ęœƒē¦åˆ©ē½²'),
(105306, 86400, 'en', 'name', 'Asian Pacific American Institute for Congressional Studies'),
(105307, 86401, 'fr', 'name', 'Institut Jean Nicod'),
(105308, 86402, 'en', 'name', 'Center for Technology & Innovation Management'),
(105309, 86403, 'en', 'name', 'Translational Health Science and Technology Institute'),
(105310, 86404, 'en', 'name', 'Swedish Cement and Concrete Research Institute'),
(105311, 86405, 'en', 'name', 'Kaiser Foundation Health Plan'),
(105312, 86406, 'no_lang_code', 'name', 'SQZ Biotech (United States)'),
(105313, 86407, 'en', 'name', 'NIHR Southampton Biomedical Research Centre'),
(105314, 86408, 'no', 'name', 'Vestfold fylkeskommune'),
(105315, 86409, 'en', 'name', 'Qingdao University of Technology'),
(105316, 86409, 'zh', 'name', 'é’å²›ē†å·„å¤§å­¦'),
(105317, 86410, 'en', 'name', 'Ethiopian Health and Nutrition Research Institute'),
(105318, 86411, 'da', 'name', 'VUC Aarhus'),
(105319, 86412, 'no_lang_code', 'name', 'Chicken Farmers of Saskatchewan (Canada)'),
(105320, 86413, 'en', 'name', 'Marine Corps University'),
(105321, 86414, 'no_lang_code', 'name', 'Omeros Corporation (United States)'),
(105322, 86415, 'en', 'name', 'Russian State University for Physical Education Sport Youth and Tourism'),
(105323, 86415, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹, спорта, молоГёжи Šø Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(105324, 86416, 'no_lang_code', 'name', 'Alta (Italy)'),
(105325, 86417, 'en', 'name', 'Campus Benjamin Franklin'),
(105326, 86418, 'en', 'name', 'Norwegian Aviation Museum'),
(105327, 86419, 'no_lang_code', 'name', 'Dell (Ireland)'),
(105328, 86420, 'en', 'name', 'Cancer Hospital and Research Institute'),
(105329, 86421, 'en', 'name', 'Arthritis New Zealand'),
(105330, 86422, 'fr', 'name', 'Bipea'),
(105331, 86423, 'no_lang_code', 'name', 'Focaltech Systems (Taiwan)'),
(105332, 86424, 'en', 'name', 'The Korean Society of Nephrology'),
(105333, 86424, 'ko', 'name', 'ėŒ€ķ•œģ‹ ģž„ķ•™ķšŒ'),
(105334, 86425, 'en', 'name', 'Koning Willem I College'),
(105335, 86426, 'nl', 'name', 'Pharmo Instituut'),
(105336, 86427, 'en', 'name', 'Society of Family Planning'),
(105337, 86428, 'en', 'name', 'Sanjay Gandhi Post Graduate Institute of Medical Sciences'),
(105338, 86428, 'fr', 'name', 'Institut supƩrieur de mƩdecine sanjay gandhi'),
(105339, 86428, 'hi', 'name', 'ą¤øą¤‚ą¤œą¤Æ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(105340, 86429, 'pl', 'name', 'Akademia Wychowania Fizycznego we Wrocławiu'),
(105341, 86430, 'de', 'name', 'Rat der Eidgenƶssischen Technischen Hochschulen'),
(105342, 86430, 'en', 'name', 'Board of the Swiss Federal Institutes of Technology'),
(105343, 86430, 'fr', 'name', 'Conseil des Ɖcoles Polytechniques FĆ©dĆ©rales'),
(105344, 86431, 'en', 'name', 'Duchenne Parent Project'),
(105345, 86432, 'no_lang_code', 'name', 'NPS Allelix (Canada)'),
(105346, 86433, 'en', 'name', 'Institute of Mathematics and its Applications'),
(105347, 86434, 'no_lang_code', 'name', 'IQuity (United States)'),
(105348, 86435, 'en', 'name', 'Yashima Gakuen University'),
(105349, 86435, 'ja', 'name', 'å…«ę“²å­¦åœ’å¤§å­¦'),
(105350, 86436, 'no_lang_code', 'name', 'Silicon Graphics International (Canada)'),
(105351, 86437, 'en', 'name', 'Joanna M. Nicolay Melanoma Foundation'),
(105352, 86438, 'en', 'name', 'Yale New Haven Health System'),
(105353, 86439, 'en', 'name', 'National Agency for New Technologies Energy and Sustainable Economic Development'),
(105354, 86440, 'en', 'name', 'Devon History Society'),
(105355, 86441, 'en', 'name', 'Suan Sunandha Rajabhat University'),
(105356, 86441, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąø§ąø™ąøŖąøøąø™ąø±ąø™ąø—ąø²'),
(105357, 86442, 'no_lang_code', 'name', 'Gen9 (United States)'),
(105358, 86443, 'en', 'name', 'Gen Foundation'),
(105359, 86444, 'en', 'name', 'Australasian Society of Clinical and Experimental Pharmacologists and Toxicologists'),
(105360, 86445, 'en', 'name', 'University of Phoenix'),
(105361, 86446, 'no_lang_code', 'name', 'Kancera (Sweden)'),
(105362, 86447, 'de', 'name', 'Ias-Gruppe'),
(105363, 86448, 'en', 'name', 'Salvation Army'),
(105364, 86449, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization'),
(105365, 86450, 'en', 'name', 'Bloomberg Philanthropies'),
(105366, 86451, 'en', 'name', 'Institute of Neuroscience'),
(105367, 86451, 'it', 'name', 'Istituto di Neuroscienze'),
(105368, 86452, 'no_lang_code', 'name', 'GeneSys Research'),
(105369, 86453, 'en', 'name', 'Institute of Cellular Biology and Pathology'),
(105370, 86454, 'pt', 'name', 'Universidade Estadual da Região Tocantina do Maranhão'),
(105371, 86455, 'en', 'name', 'University of the West Indies System'),
(105372, 86456, 'en', 'name', 'German Institute of Development and Sustainability'),
(105373, 86457, 'en', 'name', 'Australian Prawn Farmers Association'),
(105374, 86458, 'no_lang_code', 'name', 'Endeavor Global (United States)'),
(105375, 86459, 'en', 'name', 'William V. S. Tubman University'),
(105376, 86460, 'en', 'name', 'Ministry of Environmental Protection'),
(105377, 86460, 'he', 'name', '×”×ž×©×Ø×“ ×œ×”×’× ×Ŗ ההביבה'),
(105378, 86461, 'en', 'name', 'University of Information Technology and Management in Rzeszow'),
(105379, 86461, 'pl', 'name', 'Wyższa Szkoła Informatyki i Zarządzania w Rzeszowie'),
(105380, 86462, 'en', 'name', 'Prince Albert II of Monaco Foundation'),
(105381, 86463, 'en', 'name', 'Canadian Association of Gastroenterology'),
(105382, 86463, 'fr', 'name', 'Association Canadienne de GastroentƩrologie'),
(105383, 86464, 'en', 'name', 'ArcticNet'),
(105384, 86465, 'en', 'name', 'Thailand Center of Excellence in Physics'),
(105385, 86466, 'en', 'name', 'Institute of Applied Ecology'),
(105386, 86466, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę²ˆé˜³åŗ”ē”Øē”Ÿę€ē ”ē©¶ę‰€'),
(105387, 86467, 'en', 'name', 'Cure CMD'),
(105388, 86468, 'no_lang_code', 'name', 'Clough (Australia)'),
(105389, 86469, 'no_lang_code', 'name', 'PhosphorTech Corporation (United States)'),
(105390, 86470, 'en', 'name', 'I Care I Cure Childhood Cancer Foundation'),
(105391, 86471, 'fr', 'name', 'Haute Ɖcole de SantĆ© de GenĆØve'),
(105392, 86472, 'en', 'name', 'NASA Exoplanet Science Institute'),
(105393, 86473, 'en', 'name', 'United Nations Population Fund'),
(105394, 86474, 'no_lang_code', 'name', 'World Agroforestry Centre'),
(105395, 86475, 'en', 'name', 'The Rothschild Archive'),
(105396, 86476, 'no_lang_code', 'name', 'Advanced Targeting Systems (United States)'),
(105397, 86477, 'en', 'name', 'EBZ Business School'),
(105398, 86478, 'en', 'name', 'Islamic Azad University, Jahrom Branch'),
(105399, 86478, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد جهرم'),
(105400, 86479, 'en', 'name', 'Easter Seals Iowa'),
(105401, 86480, 'en', 'name', 'Tokyo Metropolitan Government'),
(105402, 86480, 'ja', 'name', 'ę±äŗ¬éƒ½åŗ'),
(105403, 86481, 'en', 'name', 'Russian-Armenian University'),
(105404, 86481, 'hy', 'name', 'Õ€Õ”Õµ-Õ¼ÕøÖ‚Õ½Õ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(105405, 86482, 'en', 'name', 'Network for Business Sustainability'),
(105406, 86482, 'fr', 'name', 'RĆ©seau Entreprise et DĆ©veloppement Durable​'),
(105407, 86483, 'en', 'name', 'Polish-Japanese Academy of Information Technology'),
(105408, 86483, 'pl', 'name', 'Polsko-Japońska Akademia Technik Komputerowych'),
(105409, 86484, 'en', 'name', 'National Cerebral and Cardiovascular Center'),
(105410, 86484, 'ja', 'name', 'å›½ē«‹å¾Ŗē’°å™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(105411, 86485, 'en', 'name', 'Zhongnan Hospital of Wuhan University'),
(105412, 86486, 'en', 'name', 'Rafsanjan University of Medical Sciences'),
(105413, 86486, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکي رفسنجان'),
(105414, 86487, 'en', 'name', 'National University of Santiago del Estero'),
(105415, 86487, 'es', 'name', 'Universidad Nacional de Santiago del Estero'),
(105416, 86488, 'no_lang_code', 'name', 'Church & Dwight (United States)'),
(105417, 86489, 'no_lang_code', 'name', 'Jiamusi University'),
(105418, 86489, 'zh', 'name', 'ä½³ęœØę–Æå¤§å­¦'),
(105419, 86490, 'en', 'name', 'Centre for Research in Early Childhood'),
(105420, 86491, 'en', 'name', 'Hunan City University'),
(105421, 86491, 'zh', 'name', 'ę¹–å—åŸŽåø‚å­¦é™¢'),
(105422, 86492, 'de', 'name', 'Max-Planck-Institut für Quantenoptik'),
(105423, 86492, 'en', 'name', 'Max Planck Institute of Quantum Optics'),
(105424, 86493, 'es', 'name', 'Instituto Nacional de Investigaciones Agropecuarias'),
(105425, 86494, 'en', 'name', 'Korean Society of Hypertension'),
(105426, 86495, 'no_lang_code', 'name', 'Cameron (United States)'),
(105427, 86496, 'no_lang_code', 'name', 'Kolyada Theater'),
(105428, 86496, 'ru', 'name', 'ŠšŠ¾Š»ŃŠ“Š°-театр'),
(105429, 86497, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁˆŁŠŲŖ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(105430, 86497, 'en', 'name', 'Kuwait College of Science and Technology'),
(105431, 86498, 'de', 'name', 'Helmholtz-Institut Erlangen-Nürnberg für Erneuerbare Energien'),
(105432, 86498, 'en', 'name', 'Helmholtz Institute Erlangen-Nürnberg'),
(105433, 86499, 'en', 'name', 'Dalhousie Medical Research Foundation'),
(105434, 86500, 'en', 'name', 'Microbial Institute for Fermentation Industry'),
(105435, 86500, 'ko', 'name', '발효 ėÆøģƒė¬¼ ģ‚°ģ—… ģ§„ķ„ 기금'),
(105436, 86501, 'en', 'name', 'Shiga University'),
(105437, 86501, 'ja', 'name', '滋賀大学'),
(105438, 86502, 'en', 'name', 'Schüttler Waske Tennis-University'),
(105439, 86503, 'en', 'name', 'Corvinus University of Budapest'),
(105440, 86503, 'hu', 'name', 'Budapesti Corvinus Egyetem'),
(105441, 86504, 'pt', 'name', 'Sociedade Brasileira de Retina e VĆ­treo'),
(105442, 86505, 'en', 'name', 'All Saints Educational Trust'),
(105443, 86506, 'en', 'name', 'The Korean Society of International Law'),
(105444, 86506, 'ko', 'name', 'ķ•œźµ­ źµ­ģ œė²• ķ•™ķšŒ'),
(105445, 86507, 'ar', 'name', 'معهد قطر Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų­ŁˆŲ³ŲØŲ©'),
(105446, 86507, 'en', 'name', 'Qatar Computing Research Institute'),
(105447, 86508, 'no_lang_code', 'name', 'Vyzkumny Ustav Kovu (Czechia)'),
(105448, 86509, 'en', 'name', 'National Agricultural Research and Innovation Centre'),
(105449, 86509, 'hu', 'name', 'Nemzeti AgrÔrkutatÔsi és InnovÔciós Központ'),
(105450, 86510, 'en', 'name', 'Argosy University'),
(105451, 86511, 'en', 'name', 'Lepage Research Institute'),
(105452, 86512, 'fr', 'name', 'Inserm Transfert'),
(105453, 86513, 'de', 'name', 'Bertelsmann Stiftung'),
(105454, 86514, 'en', 'name', 'Psychoanalytic Institute of Northern California'),
(105455, 86515, 'en', 'name', 'World Bank'),
(105456, 86516, 'en', 'name', 'African Bible University'),
(105457, 86517, 'en', 'name', 'Osaka Women''s Junior College'),
(105458, 86517, 'ja', 'name', '大阪儳子短期大学'),
(105459, 86518, 'no_lang_code', 'name', 'Bard (United States)'),
(105460, 86519, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia de CatÔlise em Sistemas Moleculares e Nanoestruturados'),
(105461, 86520, 'no_lang_code', 'name', 'Biolab Pharma (Brazil)'),
(105462, 86521, 'es', 'name', 'Fundación Banco Santander'),
(105463, 86522, 'en', 'name', 'Kyiv National Economic University'),
(105464, 86522, 'pl', 'name', 'Kijowski Narodowy Uniwersytet Ekonomiczny im. Wadyma Hetmana'),
(105465, 86522, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(105466, 86522, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВаГима Š“ŠµŃ‚ŃŒŠ¼Š°Š½Š°'),
(105467, 86523, 'en', 'name', 'Australian National Maritime Museum'),
(105468, 86524, 'no_lang_code', 'name', 'Terumo BCT (United States)'),
(105469, 86525, 'no_lang_code', 'name', 'Regienov Groupement D Interet Economique'),
(105470, 86526, 'no_lang_code', 'name', 'NGM Biopharmaceuticals (United States)'),
(105471, 86527, 'id', 'name', 'Institut Teknologi Kalimantan'),
(105472, 86528, 'en', 'name', 'Department of Communications and the Arts'),
(105473, 86529, 'no_lang_code', 'name', 'Gammex (United States)'),
(105474, 86530, 'no_lang_code', 'name', 'AxoGen (United States)'),
(105475, 86531, 'no_lang_code', 'name', 'Momenta Pharmaceuticals (United States)'),
(105476, 86532, 'no_lang_code', 'name', 'Saurer Schlafhorst (Czechia)'),
(105477, 86533, 'en', 'name', 'National Institute of Traumatology & Orthopaedic Rehabilitation'),
(105478, 86534, 'it', 'name', 'Centro Clinico Nemo'),
(105479, 86535, 'en', 'name', 'Texas A&M Health Science Center'),
(105480, 86536, 'no_lang_code', 'name', 'Martindale Pharma (United Kingdom)'),
(105481, 86537, 'en', 'name', 'Guignard University of Art of Minas Gerais'),
(105482, 86537, 'pt', 'name', 'Escola Guignard'),
(105483, 86538, 'en', 'name', 'Living Classrooms Foundation'),
(105484, 86539, 'en', 'name', 'Military Institute of Aviation Medicine'),
(105485, 86539, 'pl', 'name', 'Wojskowy Instytut Medycyny Lotniczej'),
(105486, 86540, 'ja', 'name', '高矄大学'),
(105487, 86540, 'no_lang_code', 'name', 'Kōchi University'),
(105488, 86541, 'es', 'name', 'Universidad Tecnológica de Tula-Tepeji'),
(105489, 86542, 'en', 'name', 'United Nations Development Programme'),
(105490, 86543, 'en', 'name', 'National Institute of Metrology'),
(105491, 86543, 'ro', 'name', 'Institutului National de Metrologie'),
(105492, 86544, 'en', 'name', 'La Source'),
(105493, 86545, 'en', 'name', 'National Pingtung University of Science and Technology'),
(105494, 86546, 'en', 'name', 'Saginaw Valley State University'),
(105495, 86547, 'en', 'name', 'Mozilla Foundation'),
(105496, 86548, 'no_lang_code', 'name', 'Council of Grain Grower Organisations (Australia)'),
(105497, 86549, 'en', 'name', 'ICSU Regional Office for Africa'),
(105498, 86550, 'en', 'name', 'West Virginia Higher Education Policy Commission'),
(105499, 86551, 'en', 'name', 'Grammy Foundation'),
(105500, 86552, 'en', 'name', 'Information Technology Industry Development Agency'),
(105501, 86553, 'en', 'name', 'Alliant International University'),
(105502, 86554, 'en', 'name', 'Physicians Committee'),
(105503, 86555, 'pt', 'name', 'Hospital de CĆ¢ncer de Pernambuco'),
(105504, 86556, 'no_lang_code', 'name', 'Charlotte''s Web (United States)'),
(105505, 86557, 'no_lang_code', 'name', 'Luciad (Belgium)'),
(105506, 86558, 'en', 'name', 'Ashland Bellefonte Cancer Center'),
(105507, 86559, 'no_lang_code', 'name', 'GigOptix (Switzerland)'),
(105508, 86560, 'en', 'name', 'Kyoto Pharmaceutical University'),
(105509, 86560, 'ja', 'name', 'äŗ¬éƒ½č–¬ē§‘å¤§å­¦'),
(105510, 86561, 'en', 'name', 'Aid for Cancer Research'),
(105511, 86562, 'en', 'name', 'Psychiatry Research Trust'),
(105512, 86563, 'en', 'name', 'Spondylitis Association of America'),
(105513, 86564, 'en', 'name', 'Jahrom University of Medical Sciences'),
(105514, 86564, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی جهرم'),
(105515, 86565, 'en', 'name', 'Royal Norwegian Society of Sciences and Letters'),
(105516, 86566, 'de', 'name', 'Institut für Rechts- und Kriminalsoziologie'),
(105517, 86566, 'en', 'name', 'Institute for the Sociology of Law and Criminology'),
(105518, 86567, 'en', 'name', 'Stone Age Institute'),
(105519, 86568, 'en', 'name', 'Far Eastern State Academy of Art'),
(105520, 86569, 'no_lang_code', 'name', 'INSIA'),
(105521, 86570, 'en', 'name', 'Daegu University of Foreign Studies'),
(105522, 86570, 'ko', 'name', 'ėŒ€źµ¬ģ™øźµ­ģ–“ėŒ€ķ•™źµ'),
(105523, 86571, 'no_lang_code', 'name', 'Vision Medicals (China)'),
(105524, 86571, 'zh', 'name', 'å¾®čæœåŸŗå› '),
(105525, 86572, 'no_lang_code', 'name', 'Forest Protection Limited (Canada)'),
(105526, 86573, 'en', 'name', 'WIP - Renewable Energies'),
(105527, 86574, 'en', 'name', 'National Fire Protection Association'),
(105528, 86575, 'en', 'name', 'National Institute for Health Care Management'),
(105529, 86576, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© تكريت'),
(105530, 86576, 'en', 'name', 'University of Tikrit'),
(105531, 86577, 'ko', 'name', 'ė©”ė””ķ†”ģŠ¤'),
(105532, 86577, 'no_lang_code', 'name', 'Medytox'),
(105533, 86578, 'en', 'name', 'General Insurance Association of Japan'),
(105534, 86578, 'ja', 'name', 'ę—„ęœ¬ęå®³äæé™ŗå”ä¼š'),
(105535, 86579, 'id', 'name', 'Universitas Stikubank'),
(105536, 86580, 'no_lang_code', 'name', 'Shenyang Jianzhu University'),
(105537, 86580, 'zh', 'name', 'ę²ˆé˜³å»ŗē­‘å¤§å­¦'),
(105538, 86581, 'en', 'name', 'University of California - San Francisco School of Medicine'),
(105539, 86582, 'en', 'name', 'International Social Science Council'),
(105540, 86583, 'de', 'name', 'Christina Barz-Stiftung'),
(105541, 86584, 'en', 'name', 'Providence Health and Services'),
(105542, 86585, 'no_lang_code', 'name', 'Shire (Switzerland)'),
(105543, 86586, 'en', 'name', 'ALS Recovery Fund'),
(105544, 86587, 'en', 'name', 'Hemophilia Center of Western Pennsylvania'),
(105545, 86588, 'nl', 'name', 'Nederlandse Vereniging voor Gastroenterologie'),
(105546, 86589, 'no_lang_code', 'name', 'Cytec (United Kingdom)'),
(105547, 86590, 'no_lang_code', 'name', 'Dacco Sci (United States)'),
(105548, 86591, 'ja', 'name', 'ę±ę“‹ē“”ēø¾ę Ŗå¼ä¼šē¤¾'),
(105549, 86591, 'no_lang_code', 'name', 'Toyobo (Japan)'),
(105550, 86592, 'en', 'name', 'American Macular Degeneration Foundation'),
(105551, 86593, 'no_lang_code', 'name', 'Bohdan Khmelnytsky National University of Cherkasy'),
(105552, 86593, 'uk', 'name', 'Š§ŠµŃ€ŠŗŠ°ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(105553, 86594, 'en', 'name', 'Open Polytechnic'),
(105554, 86594, 'mi', 'name', 'Kuratini Tuwhera'),
(105555, 86595, 'en', 'name', 'Administration of Ocean and Fisheries of Guangdong Province'),
(105556, 86596, 'en', 'name', 'ARC Centre of Excellence for Electromaterials Science'),
(105557, 86597, 'en', 'name', 'British Renal Society'),
(105558, 86598, 'en', 'name', 'Law and Society Association'),
(105559, 86599, 'en', 'name', 'Jacob of Paradyż University of Applied Sciences in Gorzów Wielkopolski'),
(105560, 86599, 'pl', 'name', 'Państwowa Wyższa Szkoła Zawodowa im. Jakuba z Paradyża w Gorzowie Wielkopolskim'),
(105561, 86600, 'en', 'name', 'African Union'),
(105562, 86601, 'en', 'name', 'Ben May Charitable Trust'),
(105563, 86602, 'en', 'name', 'Texas Epilepsy Group'),
(105564, 86603, 'no_lang_code', 'name', 'BioLife Solutions (United States)'),
(105565, 86604, 'en', 'name', 'Minnesota Eye Consultants'),
(105566, 86605, 'no_lang_code', 'name', 'Meta (United Kingdom)'),
(105567, 86606, 'nl', 'name', 'Algemene Nederlandse Vereniging ter Voorkoming van Blindheid'),
(105568, 86607, 'en', 'name', 'Campden and Chorleywood Food Research Association'),
(105569, 86608, 'en', 'name', 'Haldia Institute of Technology'),
(105570, 86609, 'sr', 'name', 'Univerzitetski Klinički Centar Srbije, Универзитетски клинички центар Š”Ń€Š±ŠøŃ˜Šµ'),
(105571, 86610, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© صلاح Ų§Ł„ŲÆŁŠŁ†'),
(105572, 86610, 'en', 'name', 'Salahaddin University-Erbil'),
(105573, 86611, 'no_lang_code', 'name', 'State Power Investment Corporation (China)'),
(105574, 86611, 'zh', 'name', 'å›½å®¶ē”µåŠ›ęŠ•čµ„é›†å›¢'),
(105575, 86612, 'de', 'name', 'Institut für Umweltstudien'),
(105576, 86612, 'no_lang_code', 'name', 'Institute for Environmental Studies Weibel & Ness (Germany)'),
(105577, 86613, 'no_lang_code', 'name', 'Lorillard (United States)'),
(105578, 86614, 'no_lang_code', 'name', 'Specifica (United States)'),
(105579, 86615, 'en', 'name', 'Society of Australasian Social Psychologists'),
(105580, 86616, 'en', 'name', 'Killam Trusts'),
(105581, 86617, 'cy', 'name', 'Swyddfa Ystadegau Gwladol'),
(105582, 86617, 'en', 'name', 'Office for National Statistics'),
(105583, 86618, 'en', 'name', 'Kristian Gerhard Jebsen Foundation'),
(105584, 86618, 'no', 'name', 'Stiftelsen Kristian Gerhard Jebsen');
INSERT INTO `ror_settings` VALUES
(105585, 86619, 'en', 'name', 'Indian Institute of Rice Research'),
(105586, 86620, 'no_lang_code', 'name', 'Psychogenics (United States)'),
(105587, 86621, 'en', 'name', 'University of Connecticut'),
(105588, 86622, 'no_lang_code', 'name', 'Cameron (United Kingdom)'),
(105589, 86623, 'no_lang_code', 'name', 'Florence (Netherlands)'),
(105590, 86624, 'en', 'name', 'Wuhan No.1 Hospital'),
(105591, 86624, 'zh', 'name', 'ę­¦ę±‰åø‚ē¬¬äø€åŒ»é™¢'),
(105592, 86625, 'it', 'name', 'Ospedale San Giovanni Calibita Fatebenefratelli'),
(105593, 86626, 'en', 'name', 'Xinyu University'),
(105594, 86626, 'zh', 'name', '新余大学'),
(105595, 86627, 'en', 'name', 'Florida Cancer Specialists & Research Institute'),
(105596, 86628, 'en', 'name', 'Townsville Hospital'),
(105597, 86629, 'en', 'name', 'The Hague University of Applied Sciences'),
(105598, 86629, 'nl', 'name', 'De Haagse Hogeschool'),
(105599, 86630, 'no_lang_code', 'name', 'Nanōmix (United States)'),
(105600, 86631, 'nl', 'name', 'Stichting De Weijerhorst'),
(105601, 86632, 'he', 'name', '×ž×•×¢×¦×Ŗ החלב'),
(105602, 86632, 'no_lang_code', 'name', 'Israel Dairy Board (Israel)'),
(105603, 86633, 'en', 'name', 'Korea Institute of S&T Evaluation and Planning'),
(105604, 86633, 'ko', 'name', 'éŸ“åœ‹ē§‘å­øęŠ€č”“ä¼åŠƒč©•åƒ¹é™¢,'),
(105605, 86634, 'no', 'name', 'Bergen Kommune'),
(105606, 86635, 'en', 'name', 'Energy Foundation'),
(105607, 86636, 'no_lang_code', 'name', 'Exicure (United States)'),
(105608, 86637, 'bn', 'name', 'ঢাকা ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(105609, 86637, 'en', 'name', 'Dhaka National Medical College'),
(105610, 86638, 'en', 'name', 'Australian Respiratory Council'),
(105611, 86639, 'en', 'name', 'Child and Family Agency of Southeastern Connecticut'),
(105612, 86640, 'es', 'name', 'Instituto AntƔrtico Chileno'),
(105613, 86641, 'en', 'name', 'State University of Medan'),
(105614, 86641, 'id', 'name', 'Universitas Negeri Medan'),
(105615, 86642, 'en', 'name', 'Institute for Neurodegenerative Disorders'),
(105616, 86643, 'en', 'name', 'Geneva University of Music'),
(105617, 86643, 'fr', 'name', 'Haute Ɖcole de Musique de GenĆØve, Haute Ć©cole de musique de genĆØve'),
(105618, 86644, 'ja', 'name', 'å°é‡Žč–¬å“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(105619, 86644, 'no_lang_code', 'name', 'Ono Pharmaceutical (Japan)'),
(105620, 86645, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization'),
(105621, 86646, 'en', 'name', 'St. Thomas University'),
(105622, 86646, 'ja', 'name', 'č–ćƒˆćƒžć‚¹å¤§å­¦'),
(105623, 86647, 'en', 'name', 'International Center for Agricultural Research in the Dry Areas'),
(105624, 86648, 'no_lang_code', 'name', 'The Metropolitan Opera (United States)'),
(105625, 86649, 'en', 'name', 'JFE 21st Century Foundation'),
(105626, 86649, 'ja', 'name', 'JFE21世瓀貔団'),
(105627, 86650, 'en', 'name', 'Korea Environmental Industry and Technology Institute'),
(105628, 86651, 'en', 'name', 'Dayton Foundation'),
(105629, 86652, 'da', 'name', 'Colitis-Crohn Foreningen'),
(105630, 86653, 'en', 'name', 'Sarcoma Foundation of America'),
(105631, 86654, 'en', 'name', 'West Georgia Regional Library'),
(105632, 86655, 'no_lang_code', 'name', 'Reis Robotics (Germany)'),
(105633, 86656, 'en', 'name', 'Swedish Institute'),
(105634, 86657, 'de', 'name', 'Krebsforschung Schweiz'),
(105635, 86658, 'en', 'name', 'Meisei University'),
(105636, 86658, 'ja', 'name', 'ę˜Žę˜Ÿå¤§å­¦'),
(105637, 86659, 'en', 'name', 'Texas Department of State Health Services'),
(105638, 86660, 'de', 'name', 'Bundesamt für Justiz'),
(105639, 86660, 'en', 'name', 'Federal Office of Justice'),
(105640, 86660, 'fr', 'name', 'Office fƩdƩral de la justice'),
(105641, 86660, 'it', 'name', 'Ufficio federale di giustizia'),
(105642, 86661, 'no_lang_code', 'name', 'Apellis Pharmaceuticals (United States)'),
(105643, 86662, 'en', 'name', 'Nair Hospital Dental College'),
(105644, 86662, 'hi', 'name', 'नायर दंत ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ आणि ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ'),
(105645, 86663, 'no_lang_code', 'name', 'Guerbet (United States)'),
(105646, 86664, 'fr', 'name', 'Groupe Ɖcole Polyvalente SupĆ©rieure d''Informatique & Ɖlectronique'),
(105647, 86665, 'no_lang_code', 'name', 'Meta (Israel)'),
(105648, 86666, 'tr', 'name', 'Bağcılar Eğitim ve Araştırma Hastanesi'),
(105649, 86667, 'en', 'name', 'Transport Canada'),
(105650, 86667, 'fr', 'name', 'Transports Canada'),
(105651, 86668, 'no_lang_code', 'name', 'Sustainable Innovations (United States)'),
(105652, 86669, 'en', 'name', 'Research Campus Golm'),
(105653, 86670, 'no_lang_code', 'name', 'Acceleron Pharma (United States)'),
(105654, 86671, 'en', 'name', 'Resource Development Institute'),
(105655, 86672, 'en', 'name', 'Xinjiang Academy of Agricultural Sciences'),
(105656, 86672, 'zh', 'name', 'ę–°ē–†å†œäøšē§‘å­¦é™¢'),
(105657, 86673, 'en', 'name', 'Finnish Literature Society'),
(105658, 86674, 'en', 'name', 'Brookwood Medical Center'),
(105659, 86675, 'en', 'name', 'Art Institute of York - Pennsylvania'),
(105660, 86676, 'en', 'name', 'National University of Austral Patagonia'),
(105661, 86676, 'es', 'name', 'Universidad Nacional de la Patagonia Austral'),
(105662, 86677, 'en', 'name', 'Daphne Jackson Trust'),
(105663, 86678, 'en', 'name', 'Grain Research Centre'),
(105664, 86679, 'en', 'name', 'Norwegian Environment Agency'),
(105665, 86680, 'no_lang_code', 'name', 'Progenics Pharmaceuticals (United States)'),
(105666, 86681, 'no_lang_code', 'name', 'Princeton Technology Corporation (United States)'),
(105667, 86682, 'en', 'name', 'The Winnipeg Foundation'),
(105668, 86683, 'en', 'name', 'National Water and Sewerage Corporation'),
(105669, 86684, 'en', 'name', 'Grain Farmers of Ontario'),
(105670, 86685, 'es', 'name', 'Universidad del Golfo de MƩxico'),
(105671, 86686, 'no_lang_code', 'name', 'Sabre (United States)'),
(105672, 86687, 'en', 'name', 'State Scholarships Foundation'),
(105673, 86688, 'no_lang_code', 'name', 'American Science and Engineering (United States)'),
(105674, 86689, 'en', 'name', 'Nanjing Hydraulic Research Institute'),
(105675, 86689, 'zh', 'name', 'ę°“åˆ©éƒØäŗ¤é€ščæč¾“éƒØå›½å®¶čƒ½ęŗå±€å—äŗ¬ę°“åˆ©ē§‘å­¦ē ”ē©¶é™¢'),
(105676, 86690, 'en', 'name', 'Foundation for Scientific and Industrial Research'),
(105677, 86691, 'en', 'name', 'International Society of Arthroscopy, Knee Surgery and Orthopaedic Sports Medicine'),
(105678, 86692, 'en', 'name', 'Mind and Life Institute'),
(105679, 86693, 'fr', 'name', 'Centre Hospitalier Sud Francilien'),
(105680, 86694, 'da', 'name', 'Region Midtjylland'),
(105681, 86694, 'en', 'name', 'Central Denmark Region'),
(105682, 86695, 'no_lang_code', 'name', 'Alcatel-Lucent (France)'),
(105683, 86696, 'en', 'name', 'West of Scotland Regional Equality Council'),
(105684, 86697, 'en', 'name', 'Joseph William Gottstein Memorial Trust'),
(105685, 86698, 'en', 'name', 'UCL Australia'),
(105686, 86699, 'en', 'name', 'Innopharma Education'),
(105687, 86700, 'en', 'name', 'Richmond, The American International University in London'),
(105688, 86701, 'en', 'name', 'Marcus and Amalia Wallenberg Foundation'),
(105689, 86702, 'no_lang_code', 'name', 'AO (Germany)'),
(105690, 86703, 'en', 'name', 'Galway-Mayo Institute of Technology'),
(105691, 86703, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta na Gaillimhe-Maigh Eo'),
(105692, 86704, 'no_lang_code', 'name', 'Electro Medical Systems (Switzerland)'),
(105693, 86705, 'no_lang_code', 'name', 'PopTech'),
(105694, 86706, 'en', 'name', 'Great Lakes Protection Fund'),
(105695, 86707, 'en', 'name', 'Korea Institute of Ceramic Engineering and Technology'),
(105696, 86708, 'en', 'name', 'Bay Area Environmental Research Institute'),
(105697, 86709, 'en', 'name', 'Edinburgh & Lothians Health Foundation'),
(105698, 86710, 'en', 'name', 'National University of Jujuy'),
(105699, 86710, 'es', 'name', 'Universidad Nacional de Jujuy'),
(105700, 86711, 'en', 'name', 'Hong Kong Anti-Cancer Society'),
(105701, 86712, 'pl', 'name', 'Instytut Biotechnologii i Antybiotyków'),
(105702, 86713, 'de', 'name', 'Bayerisches Staatsministerium für Ernährung, Landwirtschaft und Forsten'),
(105703, 86714, 'en', 'name', 'Dutch CAA Foundation'),
(105704, 86715, 'en', 'name', 'National Academy of Education'),
(105705, 86716, 'en', 'name', 'Iqra National University'),
(105706, 86716, 'ur', 'name', 'اقراؔ Ł†ŪŒŲ“Ł†Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(105707, 86717, 'no_lang_code', 'name', 'Levi Strauss (United States)'),
(105708, 86718, 'de', 'name', 'Exekutivagentur für Verbraucher, Gesundheit, Landwirtschaft und Lebensmittel'),
(105709, 86718, 'en', 'name', 'Consumers, Health, Agriculture and Food Executive Agency'),
(105710, 86718, 'fr', 'name', 'Agence ExĆ©cutive pour les Consommateurs, la SantĆ©, l’agriculture et l’alimentation'),
(105711, 86719, 'no_lang_code', 'name', 'Shire (France)'),
(105712, 86720, 'en', 'name', 'The Institute of Moralogy'),
(105713, 86720, 'ja', 'name', 'ćƒ¢ćƒ©ćƒ­ć‚øćƒ¼ē ”ē©¶ę‰€'),
(105714, 86721, 'en', 'name', 'United Nations Population Fund'),
(105715, 86722, 'en', 'name', 'Poznan Supercomputing and Networking Center'),
(105716, 86723, 'en', 'name', 'Melanoma Research Alliance'),
(105717, 86724, 'fr', 'name', 'HƓpital des Cadolles'),
(105718, 86725, 'no_lang_code', 'name', 'Guiyang University'),
(105719, 86725, 'zh', 'name', 'č“µé˜³å­¦é™¢'),
(105720, 86726, 'no_lang_code', 'name', 'Primity (United States)'),
(105721, 86727, 'en', 'name', 'Institute of Urban Environment'),
(105722, 86727, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŸŽåø‚ēŽÆå¢ƒē ”ē©¶ę‰€'),
(105723, 86728, 'es', 'name', 'Instituto de Investigación Marqués de Valdecilla'),
(105724, 86729, 'no_lang_code', 'name', 'JDSU (Canada)'),
(105725, 86730, 'en', 'name', 'Harold Hyam Wingate Foundation'),
(105726, 86731, 'en', 'name', 'University Hospitals Coventry and Warwickshire NHS Trust'),
(105727, 86732, 'en', 'name', 'National Institute of Pharmaceutical Education and Research'),
(105728, 86733, 'en', 'name', 'Coastal Education and Research Foundation'),
(105729, 86734, 'en', 'name', 'Oregon Lions Sight & Hearing Foundation'),
(105730, 86735, 'no_lang_code', 'name', 'Rockwell Collins (United States)'),
(105731, 86736, 'en', 'name', 'Seattle Foundation'),
(105732, 86737, 'en', 'name', 'Santa Barbara and Ventura Colleges of Law'),
(105733, 86738, 'en', 'name', 'International Society on Aging and Disease'),
(105734, 86739, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ł‚ŲÆŁŠŲ“Łˆ'),
(105735, 86739, 'en', 'name', 'Mogadishu University'),
(105736, 86739, 'so', 'name', 'Jaamacada Muqdisho'),
(105737, 86740, 'no_lang_code', 'name', 'Sandpiper Technologies (United States)'),
(105738, 86741, 'en', 'name', 'Beijing National Laboratory for Molecular Sciences'),
(105739, 86741, 'zh', 'name', 'åŒ—äŗ¬åˆ†å­ē§‘å­¦å›½å®¶å®žéŖŒå®¤'),
(105740, 86742, 'en', 'name', 'Western Michigan University Homer Stryker M.D. School of Medicine'),
(105741, 86743, 'en', 'name', 'Clinks (United Kingdom)'),
(105742, 86744, 'no_lang_code', 'name', 'Intelligent Bio-Systems (United States)'),
(105743, 86745, 'no_lang_code', 'name', 'Fugro (United Kingdom)'),
(105744, 86746, 'pt', 'name', 'Universidade Estadual do Norte do ParanĆ”'),
(105745, 86747, 'en', 'name', 'Bill of Rights Institute'),
(105746, 86748, 'en', 'name', 'Institute for Health Metrics and Evaluation'),
(105747, 86749, 'pt', 'name', 'Faculdades Oswaldo Cruz'),
(105748, 86750, 'en', 'name', 'Limerick Institute of Technology'),
(105749, 86750, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta Luimneach'),
(105750, 86751, 'en', 'name', 'Nanjing Drum Tower Hospital'),
(105751, 86752, 'ro', 'name', 'Radio România Cluj'),
(105752, 86753, 'no_lang_code', 'name', 'AFC Technologies (Israel)'),
(105753, 86754, 'no', 'name', 'Ski kommune'),
(105754, 86755, 'en', 'name', 'National University of East Timor'),
(105755, 86755, 'id', 'name', 'Universidade NasionÔl Timór Lorosa''e'),
(105756, 86755, 'pt', 'name', 'Universidade Nacional de Timor Lorosa''e'),
(105757, 86756, 'en', 'name', 'Astronomical Society of Japan'),
(105758, 86756, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗ ę—„ęœ¬å¤©ę–‡å­¦ä¼š'),
(105759, 86757, 'en', 'name', 'Filamer Christian University'),
(105760, 86758, 'en', 'name', 'Squibb Institute for Medical Research'),
(105761, 86759, 'no_lang_code', 'name', 'JPK Instruments (Germany)'),
(105762, 86760, 'en', 'name', 'United Nations Population Fund'),
(105763, 86761, 'en', 'name', 'National Atmospheric Research Laboratory'),
(105764, 86762, 'no_lang_code', 'name', 'LKC Technologies (United States)'),
(105765, 86763, 'en', 'name', 'Lyrasis'),
(105766, 86764, 'en', 'name', 'Maulana Azad National Institute of Technology'),
(105767, 86765, 'de', 'name', 'Ministerium für Wirtschaft, Innovation, Digitalisierung und Energie des Landes Nordrhein-Westfalen'),
(105768, 86766, 'en', 'name', 'North Cumbria University Hospitals NHS Trust'),
(105769, 86767, 'en', 'name', 'Navsari Agricultural University'),
(105770, 86767, 'gu', 'name', 'ąŖ•ą«ƒąŖ·ąŖæ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€, નવસારી'),
(105771, 86767, 'te', 'name', 'నవసరి ą°µą±ą°Æą°µą°øą°¾ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°‚'),
(105772, 86768, 'nl', 'name', 'SBOH'),
(105773, 86769, 'en', 'name', 'Edgware Community Hospital'),
(105774, 86770, 'en', 'name', 'East China University of Technology'),
(105775, 86770, 'zh', 'name', 'äøœåŽē†å·„å¤§å­¦'),
(105776, 86771, 'en', 'name', 'Eastern and Southern African Management Institute'),
(105777, 86772, 'en', 'name', 'Forestry Research Institute of Ghana'),
(105778, 86773, 'en', 'name', 'Chongqing Vocational Institute of Engineering'),
(105779, 86773, 'zh', 'name', 'é‡åŗ†å·„ēØ‹čŒäøšęŠ€ęœÆå­¦é™¢'),
(105780, 86774, 'no_lang_code', 'name', 'Pristop (Slovenia)'),
(105781, 86775, 'en', 'name', 'International Society for Autism Research'),
(105782, 86776, 'sv', 'name', 'Riksfƶrbundet Cystisk Fibros'),
(105783, 86777, 'en', 'name', 'Kharkov State Zooveterinary Academy'),
(105784, 86778, 'en', 'name', 'Polar Research Institute of China'),
(105785, 86778, 'zh', 'name', 'äø­å›½ęžåœ°ē ”ē©¶äø­åæƒ'),
(105786, 86779, 'no_lang_code', 'name', 'Evince Technology (United Kingdom)'),
(105787, 86780, 'no_lang_code', 'name', 'Innocrin Pharmaceuticals (United States)'),
(105788, 86781, 'mr', 'name', 'ą¤†ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤—ą¤°ą¤µą¤¾ą¤°ą„‡ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(105789, 86781, 'no_lang_code', 'name', 'Abasaheb Garware College'),
(105790, 86782, 'en', 'name', 'International Society for Computer Aided Surgery'),
(105791, 86783, 'pt', 'name', 'Santa Casa de Misericórdia de Passos'),
(105792, 86784, 'en', 'name', 'RIKEN Quantitative Biology Center'),
(105793, 86785, 'en', 'name', 'Dr Emilio B Espinosa Sr Memorial State College of Agriculture and Technology'),
(105794, 86786, 'en', 'name', 'Indonesian National Institute of Aeronautics and Space'),
(105795, 86786, 'id', 'name', 'Lembaga Penerbangan dan Antariksa Nasional'),
(105796, 86787, 'en', 'name', 'Cheju Halla General Hospital'),
(105797, 86787, 'ko', 'name', 'ģ œģ£¼ķ•œė¼ė³‘ģ›'),
(105798, 86788, 'en', 'name', 'Muhimbili University of Health and Allied Sciences'),
(105799, 86788, 'sw', 'name', 'Chuo Kikuu cha Afya na Sayansi Shirikishi Muhimbili'),
(105800, 86789, 'no_lang_code', 'name', 'Sogeti (France)'),
(105801, 86790, 'en', 'name', 'Global Foundation for Eating Disorders'),
(105802, 86791, 'en', 'name', 'BIOCAP Canada Foundation'),
(105803, 86792, 'en', 'name', 'Management and Science University'),
(105804, 86793, 'da', 'name', 'Bloddonorerne i Danmark'),
(105805, 86793, 'en', 'name', 'Danish Blood Donor Association'),
(105806, 86794, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© المرأة ŁˆŲ§Ł„Ų°Ų§ŁƒŲ±Ų©'),
(105807, 86794, 'en', 'name', 'Women and Memory Forum'),
(105808, 86795, 'en', 'name', 'Childhood Arthritis and RheumatolĀ­ogy Research Alliance'),
(105809, 86796, 'en', 'name', 'Qom Islamic Azad University'),
(105810, 86796, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ قم'),
(105811, 86797, 'en', 'name', 'Yorkshire Forward'),
(105812, 86798, 'en', 'name', 'Council of American Overseas Research Centers'),
(105813, 86799, 'en', 'name', 'Kyoto Technoscience Center'),
(105814, 86799, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ äŗ¬éƒ½ęŠ€č”“ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(105815, 86800, 'es', 'name', 'Fundación CajaCanarias'),
(105816, 86801, 'en', 'name', 'Woolf Fisher Trust'),
(105817, 86802, 'en', 'name', 'SƔmi University of Applied Sciences'),
(105818, 86802, 'fi', 'name', 'SƔmi allaskuvla'),
(105819, 86803, 'en', 'name', 'New Zealand Association of Counsellors'),
(105820, 86803, 'mi', 'name', 'Te Ropu Kaiwhiriwhiri o Aotearoa)'),
(105821, 86804, 'es', 'name', 'Fundación Carolina'),
(105822, 86805, 'en', 'name', 'ARC Centre of Excellence for Coral Reef Studies'),
(105823, 86806, 'no_lang_code', 'name', 'Urs Dames & Moore S.R.L.'),
(105824, 86807, 'no_lang_code', 'name', 'Computer Sciences Corporation (Belgium)'),
(105825, 86808, 'no_lang_code', 'name', 'Shire (United States)'),
(105826, 86809, 'no_lang_code', 'name', 'Sempra Praha (Czechia)'),
(105827, 86810, 'de', 'name', 'Rostocker Institut für Sozialforschung und gesellschaftliche Praxis e.V.'),
(105828, 86811, 'ja', 'name', 'ć‚­ćƒƒć‚»ć‚¤č–¬å“å·„ę„­'),
(105829, 86811, 'no_lang_code', 'name', 'Kissei Pharmaceutical (Japan)'),
(105830, 86812, 'en', 'name', 'University of Information Technology and Communications'),
(105831, 86813, 'en', 'name', 'Granulosa Cell Tumor of the Ovary Foundation'),
(105832, 86814, 'en', 'name', 'Royal Economic Society'),
(105833, 86815, 'da', 'name', 'Nordisk Institut for Kiropraktik og Klinisk Biomekanik'),
(105834, 86816, 'en', 'name', 'Metakids'),
(105835, 86817, 'en', 'name', 'Federal University of ABC'),
(105836, 86817, 'fr', 'name', 'UniversitƩ fƩdƩrale de l''abc'),
(105837, 86817, 'pt', 'name', 'Universidade Federal do ABC'),
(105838, 86818, 'en', 'name', 'University of Michigan Medical School'),
(105839, 86819, 'en', 'name', 'Graduate Institute for Entrepreneurial Studies'),
(105840, 86819, 'ja', 'name', '事愭創造大学院大学'),
(105841, 86820, 'en', 'name', 'Strategic Management Society'),
(105842, 86821, 'no_lang_code', 'name', 'Mylan (United Kingdom)'),
(105843, 86822, 'en', 'name', 'British Association of Dermatologists'),
(105844, 86823, 'en', 'name', 'Maudsley Charity'),
(105845, 86824, 'en', 'name', 'Lishui City People''s Hospital'),
(105846, 86825, 'no_lang_code', 'name', 'Biocatalytics, Inc.'),
(105847, 86826, 'en', 'name', 'Institute of Legal Practice and Development'),
(105848, 86827, 'en', 'name', 'Association of Super-Advanced Electronics'),
(105849, 86827, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆ č¶…å…ˆē«Æé›»å­ęŠ€č”“é–‹ē™ŗę©Ÿę§‹'),
(105850, 86828, 'nl', 'name', 'Stichting Coolsingel'),
(105851, 86829, 'en', 'name', 'Korea Breast Cancer Foundation'),
(105852, 86829, 'ko', 'name', 'ķ•œźµ­ģœ ė°©ź±“ź°•ģž¬ė‹Ø'),
(105853, 86830, 'en', 'name', 'London Borough of Camden'),
(105854, 86831, 'en', 'name', 'International Society for Research in Human Milk and Lactation'),
(105855, 86832, 'no_lang_code', 'name', 'General Cable (Germany)'),
(105856, 86833, 'es', 'name', 'ClĆ­nica Somer'),
(105857, 86834, 'en', 'name', 'Central Land Council'),
(105858, 86835, 'no', 'name', 'Rehabiliteringssenteret Nord-Norges Kurbad'),
(105859, 86836, 'en', 'name', 'Offshore Energy Research Association of Nova Scotia'),
(105860, 86837, 'no_lang_code', 'name', 'Calithera (United States)'),
(105861, 86838, 'en', 'name', 'American Glaucoma Society'),
(105862, 86839, 'no_lang_code', 'name', 'MSD Animal Health (Norway)'),
(105863, 86840, 'no_lang_code', 'name', 'SEAKR Engineering (United States)'),
(105864, 86841, 'en', 'name', 'Luoyang Normal University'),
(105865, 86841, 'zh', 'name', 'ę“›é˜³åøˆčŒƒå­¦é™¢'),
(105866, 86842, 'no_lang_code', 'name', 'Dairy Farmers of Ontario'),
(105867, 86843, 'en', 'name', 'Louisiana Christian University'),
(105868, 86844, 'en', 'name', 'Barrow Cadbury Trust'),
(105869, 86845, 'en', 'name', 'Trichy SRM Medical College Hospital and Research Centre'),
(105870, 86845, 'ta', 'name', 'ą®¤ą®æą®°ąÆą®šąÆą®šą®æ ą®Žą®øąÆą®†ą®°ąÆą®Žą®®ąÆ ą®®ąÆ†ą®Ÿą®æą®•ąÆą®•ą®²ąÆ ą®•ą®¾ą®²ąÆ‡ą®œąÆ ą®¹ą®¾ą®øąÆą®Ŗą®æą®Ÿą®²ąÆ & ą®°ą®æą®šą®°ąÆą®šąÆ ą®šąÆ†ą®©ąÆą®Ÿą®°ąÆ'),
(105871, 86846, 'en', 'name', 'Islamic Azad University of Nishapur'),
(105872, 86846, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ł†ŪŒŲ“Ų§ŲØŁˆŲ±'),
(105873, 86847, 'en', 'name', 'University of Moncton'),
(105874, 86847, 'fr', 'name', 'UniversitƩ de Moncton'),
(105875, 86848, 'en', 'name', 'Enterprise Cape Breton Corporation'),
(105876, 86849, 'en', 'name', 'Northshore Psychological Associates'),
(105877, 86850, 'cs', 'name', 'VysokĆ” Å”kola mezinĆ”rodnĆ­ch a veřejných vztahÅÆ Praha'),
(105878, 86850, 'en', 'name', 'College of International and Public Relations'),
(105879, 86851, 'no_lang_code', 'name', 'Emera (Canada)'),
(105880, 86852, 'en', 'name', 'Osteoporosis Canada'),
(105881, 86853, 'no_lang_code', 'name', 'Montimage (France)'),
(105882, 86854, 'da', 'name', 'Sygehus Vendsyssel'),
(105883, 86855, 'no_lang_code', 'name', 'Dermira (United States)'),
(105884, 86856, 'no_lang_code', 'name', 'The Italian Ship Research Centre'),
(105885, 86857, 'en', 'name', 'University of Pennsylvania Museum of Archaeology and Anthropology'),
(105886, 86858, 'fi', 'name', 'Tekes'),
(105887, 86859, 'en', 'name', 'Astronomical Association'),
(105888, 86860, 'no_lang_code', 'name', 'Dynamet Technology (United States)'),
(105889, 86861, 'en', 'name', 'Sapporo Otani Junior College'),
(105890, 86861, 'ja', 'name', '札幌大谷大学短期大学部'),
(105891, 86862, 'no_lang_code', 'name', 'SGL Group (Germany)'),
(105892, 86863, 'no_lang_code', 'name', 'Medichem (Spain)'),
(105893, 86864, 'en', 'name', 'Fujian Academy of Agricultural Sciences'),
(105894, 86865, 'en', 'name', 'Foundation for Neurologic Diseases'),
(105895, 86866, 'en', 'name', 'Stupski Foundation'),
(105896, 86867, 'en', 'name', 'National Museum of Marine Biology and Aquarium'),
(105897, 86868, 'en', 'name', 'MATI-Russian State Technological University'),
(105898, 86869, 'en', 'name', 'Australian Film, Television and Radio School'),
(105899, 86870, 'no_lang_code', 'name', 'Holcim (Switzerland)'),
(105900, 86871, 'en', 'name', 'Judicial Council of California'),
(105901, 86872, 'no_lang_code', 'name', 'Desitin Arzneimittel (Germany)'),
(105902, 86873, 'en', 'name', 'Utah Academy of Sciences and Arts and Letters'),
(105903, 86874, 'en', 'name', 'American Center for Mongolian Studies'),
(105904, 86875, 'en', 'name', 'Gheorghe Dima Music Academy'),
(105905, 86875, 'ro', 'name', 'Academia de Muzică Gheorghe Dima'),
(105906, 86876, 'en', 'name', 'Velikolukskaya State Agricultural Academy'),
(105907, 86876, 'ru', 'name', 'Š’ŠµŠ»ŠøŠŗŠ¾Š»ŃƒŠŗŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(105908, 86877, 'no_lang_code', 'name', 'Sand9 (United States)'),
(105909, 86878, 'no_lang_code', 'name', 'Circle Cardiovascular Imaging'),
(105910, 86879, 'en', 'name', 'Geoffrey Beene Foundation'),
(105911, 86880, 'en', 'name', 'Research for Better Schools'),
(105912, 86881, 'en', 'name', 'Chittaranjan National Cancer Institute'),
(105913, 86882, 'no_lang_code', 'name', 'Patrys (Australia)'),
(105914, 86883, 'en', 'name', 'Kitasato University Hospital'),
(105915, 86883, 'ja', 'name', 'åŒ—é‡Œå¤§å­¦ē—…é™¢'),
(105916, 86884, 'en', 'name', 'University of Louisville Foundation'),
(105917, 86885, 'en', 'name', 'Federal Urdu University'),
(105918, 86885, 'ur', 'name', 'ŁˆŁŲ§Ł‚ŪŒ Ų¬Ų§Ł…Ų¹Ū‚ اردو'),
(105919, 86886, 'en', 'name', 'Opportunity Alliance'),
(105920, 86887, 'no_lang_code', 'name', 'Graco (United States)'),
(105921, 86888, 'en', 'name', 'wanage Community Hospital'),
(105922, 86889, 'en', 'name', 'Lahore College for Women University'),
(105923, 86889, 'ur', 'name', 'Ł„Ų§ŪŁˆŲ± کالج ŲØŲ±Ų§Ų¦Ū’ Ų®ŁˆŲ§ŲŖŪŒŁ† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(105924, 86890, 'pt', 'name', 'Fundação de Desenvolvimento de Tecnópolis'),
(105925, 86891, 'no_lang_code', 'name', 'Analysys Mason (United Kingdom)'),
(105926, 86892, 'en', 'name', 'Libertas Business School'),
(105927, 86893, 'en', 'name', 'General Jerzy Ziętek Silesian School of Management'),
(105928, 86894, 'en', 'name', 'Changhai Hospital'),
(105929, 86895, 'no_lang_code', 'name', '5T (Italy)'),
(105930, 86896, 'no_lang_code', 'name', 'Relay Therapeutics (United States)'),
(105931, 86897, 'en', 'name', 'South African Veterinary Foundation'),
(105932, 86897, 'zu', 'name', 'Suid-Afrikaanse Veterinere Stigting'),
(105933, 86898, 'en', 'name', 'Moscow State Institute of Music named after A.G. Schnittke'),
(105934, 86898, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(105935, 86899, 'en', 'name', 'Schmidt Ocean Institute'),
(105936, 86900, 'en', 'name', 'Laboratory for Photonics and Nanostructures'),
(105937, 86900, 'fr', 'name', 'Laboratoire de Photonique et de Nanostructures'),
(105938, 86901, 'en', 'name', 'GW Medical Faculty Associates'),
(105939, 86902, 'en', 'name', 'Society for Underwater Technology'),
(105940, 86903, 'en', 'name', 'State Key Laboratory of Information Engineering in Surveying Mapping and Remote Sensing'),
(105941, 86904, 'no_lang_code', 'name', 'Patriot (Czechia)'),
(105942, 86905, 'en', 'name', 'Turing Foundation'),
(105943, 86906, 'en', 'name', 'Islamic Azad University of Zanjan'),
(105944, 86906, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد زنجان'),
(105945, 86907, 'es', 'name', 'Fundación Seimc-Gesida'),
(105946, 86908, 'en', 'name', 'Vologda State Pedagogical University'),
(105947, 86909, 'en', 'name', 'Dr. Y.S.R Horticultural University'),
(105948, 86909, 'te', 'name', 'ą°†ą°‚ą°§ą±ą°°ą°Ŗą±ą°°ą°¦ą±‡ą°¶ą± ą°‰ą°¦ą±ą°Æą°¾ą°Øą°µą°Ø ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(105949, 86910, 'en', 'name', 'British Infection Association'),
(105950, 86911, 'en', 'name', 'National Training Foundation'),
(105951, 86912, 'en', 'name', 'Rufford Foundation'),
(105952, 86913, 'no_lang_code', 'name', 'Cleveland BioLabs (United States)'),
(105953, 86914, 'en', 'name', 'Lahti University of Applied Sciences'),
(105954, 86914, 'fi', 'name', 'Lahden ammattikorkeakoulu'),
(105955, 86915, 'en', 'name', 'Geological Survey of Iran'),
(105956, 86916, 'am', 'name', 'į‹Øį‹°į‰„įˆØ į‰³į‰¦įˆ­ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(105957, 86916, 'en', 'name', 'Debre Tabor University'),
(105958, 86917, 'de', 'name', 'Deutsche Stiftung Sklerodermie'),
(105959, 86918, 'en', 'name', 'Hyogo Science and Technology Association'),
(105960, 86918, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ć²ć‚‡ć†ć”ē§‘å­¦ęŠ€č”“å”ä¼š'),
(105961, 86919, 'en', 'name', 'Cardiovascular Institute of the South'),
(105962, 86920, 'en', 'name', 'Louisiana State University in Shreveport'),
(105963, 86920, 'fr', 'name', 'UniversitĆ© d''Ɖtat de louisiane Ć  shreveport'),
(105964, 86921, 'bn', 'name', 'ą¦œą¦—ą¦Øą§ą¦Øą¦¾ą¦„ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(105965, 86921, 'en', 'name', 'Jagannath University'),
(105966, 86922, 'en', 'name', 'Ekiti State University'),
(105967, 86923, 'en', 'name', 'United Library'),
(105968, 86924, 'en', 'name', 'Aichi Kiwami College of Nursing'),
(105969, 86924, 'ja', 'name', 'ę„›ēŸ„ćć‚ćæēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(105970, 86925, 'en', 'name', 'Pulmonary Vascular Research Institute'),
(105971, 86926, 'da', 'name', 'Nationalt Center for MiljĆø og Energi'),
(105972, 86926, 'en', 'name', 'DCE - Danish Centre for Environment and Energy'),
(105973, 86927, 'en', 'name', 'Osaka Prefecture University'),
(105974, 86927, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹å¤§å­¦'),
(105975, 86928, 'en', 'name', 'Swiss Finance Institute'),
(105976, 86929, 'en', 'name', 'Oklahoma State Department of Health'),
(105977, 86930, 'en', 'name', 'Stroud Water Research Center'),
(105978, 86931, 'el', 'name', '΄πουργείο Παραγωγικής Ī‘Ī½Ī±ĻƒĻ…Ī³ĪŗĻĻŒĻ„Ī·ĻƒĪ·Ļ‚, Περιβάλλοντος και Ενέργειας'),
(105979, 86931, 'en', 'name', 'Ministry of Environment and Energy'),
(105980, 86932, 'fr', 'name', 'Action LIONS Vaincre le Cancer'),
(105981, 86933, 'en', 'name', 'Methodist Hospital Foundation'),
(105982, 86934, 'en', 'name', 'Beth Israel Deaconess Hospital'),
(105983, 86935, 'en', 'name', 'Institute for the Promotion of Teaching Science and Technology'),
(105984, 86935, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąøŖą¹ˆąø‡ą¹€ąøŖąø£ąø“ąø”ąøąø²ąø£ąøŖąø­ąø™ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œą¹ąø„ąø°ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµ'),
(105985, 86936, 'en', 'name', 'KwaZulu-Natal Research Institute for Tuberculosis and HIV'),
(105986, 86937, 'no_lang_code', 'name', 'Aqualinc (New Zealand)'),
(105987, 86938, 'en', 'name', 'National Center for Cancer Care and Research'),
(105988, 86939, 'no_lang_code', 'name', 'Affymetrix (United Kingdom)'),
(105989, 86940, 'pt', 'name', 'BeneficĆŖncia Portuguesa de SĆ£o Paulo'),
(105990, 86941, 'fr', 'name', 'CHU Ambroise ParƩ'),
(105991, 86942, 'en', 'name', 'Penn State Worthington Scranton'),
(105992, 86943, 'no_lang_code', 'name', 'Kleinwanzlebener Saatzucht (United Kingdom)'),
(105993, 86944, 'fr', 'name', 'Fondation de l''Avenir'),
(105994, 86945, 'en', 'name', 'International Institute of Information Technology'),
(105995, 86945, 'hi', 'name', 'ą¤…ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤Ŗą„ą¤£ą„‡'),
(105996, 86946, 'en', 'name', 'Centre of Excellence in Mathematics'),
(105997, 86947, 'en', 'name', 'Myalgic Encephalomyelitis Research Group'),
(105998, 86948, 'no_lang_code', 'name', 'AutoNation (United States)'),
(105999, 86949, 'de', 'name', 'Max-Planck-Institut für Mathematik'),
(106000, 86949, 'en', 'name', 'Max Planck Institute for Mathematics'),
(106001, 86950, 'en', 'name', 'Netherlands Federation of University Medical Centres'),
(106002, 86950, 'nl', 'name', 'Nederlandse Federatie van Universitair Medische Centra'),
(106003, 86951, 'en', 'name', 'Van Lodenstein College'),
(106004, 86952, 'en', 'name', 'European Centre for Training and Research in Earthquake Engineering'),
(106005, 86953, 'fr', 'name', 'Centre LƩa-Roback'),
(106006, 86954, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁˆŁŲ©'),
(106007, 86954, 'en', 'name', 'University of Kufa'),
(106008, 86955, 'en', 'name', 'Athlone Institute of Technology'),
(106009, 86955, 'ga', 'name', 'Institiúid Teicneolaíochta Bhaile Átha Luain'),
(106010, 86956, 'en', 'name', 'Dwight Englewood School'),
(106011, 86957, 'no_lang_code', 'name', 'Allied Insurance (United States)'),
(106012, 86958, 'en', 'name', 'Society of Anesthesia and Sleep Medicine'),
(106013, 86959, 'en', 'name', 'Industrial Biotechnology Innovation Centre'),
(106014, 86960, 'en', 'name', 'Huntington Hospital'),
(106015, 86961, 'no_lang_code', 'name', 'Alcatel-Lucent (United States)'),
(106016, 86962, 'de', 'name', 'Blum & Grob RechtsanwƤlte'),
(106017, 86962, 'en', 'name', 'Blum & Grob Attorneys at Law'),
(106018, 86963, 'no_lang_code', 'name', 'Quantel (France)'),
(106019, 86964, 'en', 'name', 'Penn State York'),
(106020, 86965, 'en', 'name', 'Koriyama Institute of Health Sciences'),
(106021, 86965, 'ja', 'name', 'éƒ”å±±å„åŗ·ē§‘å­¦å°‚é–€å­¦ę ”'),
(106022, 86966, 'en', 'name', 'Infection Prevention Society'),
(106023, 86967, 'en', 'name', 'Uganda Cancer Institute'),
(106024, 86968, 'am', 'name', 'įŠ įˆį‰¦ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(106025, 86968, 'en', 'name', 'Ambo University'),
(106026, 86968, 'om', 'name', 'Yunivarsiitii Amboo'),
(106027, 86969, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ελπίς'),
(106028, 86969, 'en', 'name', 'General Hospital of Athens Elpis'),
(106029, 86970, 'en', 'name', 'John Randolph Haynes and Dora Haynes Foundation'),
(106030, 86971, 'no_lang_code', 'name', 'Alphabet (United States)'),
(106031, 86972, 'en', 'name', 'LeadingAge New York'),
(106032, 86973, 'en', 'name', 'Usona Institute'),
(106033, 86974, 'no_lang_code', 'name', 'Windtree Therapeutics (United States)'),
(106034, 86975, 'en', 'name', 'Palmerston North City Council'),
(106035, 86976, 'en', 'name', 'Art Institute of Pittsburgh'),
(106036, 86977, 'no_lang_code', 'name', 'WorldFish'),
(106037, 86978, 'en', 'name', 'Epsom Hospital'),
(106038, 86979, 'no', 'name', 'Stiftelsen Dam'),
(106039, 86980, 'en', 'name', 'Irkutsk State Academy of Agriculture'),
(106040, 86981, 'en', 'name', 'Rana University'),
(106041, 86981, 'fa', 'name', 'رنا Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(106042, 86982, 'en', 'name', 'Saitama University'),
(106043, 86982, 'ja', 'name', 'åŸ¼ēŽ‰å¤§å­¦'),
(106044, 86983, 'en', 'name', 'Zoucheng People''s Hospital'),
(106045, 86983, 'zh', 'name', 'é‚¹åŸŽåø‚äŗŗę°‘åŒ»é™¢'),
(106046, 86984, 'en', 'name', 'Bank of Spain'),
(106047, 86984, 'es', 'name', 'Banco de EspaƱa'),
(106048, 86985, 'de', 'name', 'Max Planck Institut für Chemie - Otto Hahn Institut'),
(106049, 86985, 'en', 'name', 'Max Planck Institute for Chemistry'),
(106050, 86986, 'de', 'name', 'Schering Stiftung'),
(106051, 86986, 'en', 'name', 'Ernst Schering Foundation'),
(106052, 86987, 'no_lang_code', 'name', 'Qinetiq (United Kingdom)'),
(106053, 86988, 'en', 'name', 'Ohio Lions Eye Research Foundation'),
(106054, 86989, 'no_lang_code', 'name', 'Atmel (Germany)'),
(106055, 86990, 'fr', 'name', 'MinistĆØre de l''Education Nationale and de la Formation Professionnelle'),
(106056, 86991, 'en', 'name', 'National Institute of Education'),
(106057, 86992, 'en', 'name', 'Joe Niekro Foundation'),
(106058, 86993, 'en', 'name', 'Society of American Archivists'),
(106059, 86994, 'en', 'name', 'Benedictine College'),
(106060, 86995, 'en', 'name', 'British Society for Haematology'),
(106061, 86996, 'pl', 'name', 'Akademia Marynarki Wojennej im. Bohaterów Westerplatte'),
(106062, 86997, 'en', 'name', 'Canadian Association of Physicists'),
(106063, 86997, 'fr', 'name', 'Association canadienne des physiciens et physiciennes'),
(106064, 86998, 'en', 'name', 'Friesland College'),
(106065, 86999, 'en', 'name', 'State University of Semarang'),
(106066, 86999, 'id', 'name', 'Universitas Negeri Semarang'),
(106067, 87000, 'ar', 'name', 'الجامعة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„ŁˆŲ³Ų·Ł‰'),
(106068, 87000, 'en', 'name', 'Middle Technical University'),
(106069, 87001, 'en', 'name', 'Memorial University Medical Center'),
(106070, 87002, 'en', 'name', 'Soil Science Society of America'),
(106071, 87003, 'no_lang_code', 'name', 'Santeon (Netherlands)'),
(106072, 87004, 'fr', 'name', 'Pharmacie des HƓpitaux de l''Est LƩmanique'),
(106073, 87005, 'en', 'name', 'Deutsches Historisches Institut Washington, German Historical Institute'),
(106074, 87006, 'no_lang_code', 'name', 'Nexans (France)'),
(106075, 87007, 'no_lang_code', 'name', 'Stanimex (Poland)'),
(106076, 87008, 'de', 'name', 'Pädagogische Hochschule Schwäbisch Gmünd'),
(106077, 87008, 'en', 'name', 'University of Education Schwaebisch Gmuend'),
(106078, 87009, 'no_lang_code', 'name', 'Enzymatics (United States)'),
(106079, 87010, 'en', 'name', 'Walter & Elise Haas Fund'),
(106080, 87011, 'en', 'name', 'Housing Engineering Design and Research Association'),
(106081, 87012, 'no_lang_code', 'name', 'ARIAD Pharmaceuticals (United Kingdom)'),
(106082, 87013, 'en', 'name', 'Third Affiliated Hospital of Nanchang University'),
(106083, 87013, 'zh', 'name', 'å—ę˜Œå¤§å­¦ē¬¬äø‰é™„å±žåŒ»é™¢'),
(106084, 87014, 'fi', 'name', 'Maire Taposen SƤƤtiƶ'),
(106085, 87015, 'it', 'name', 'Fondazione Tercas'),
(106086, 87016, 'no_lang_code', 'name', 'Smiths Detection (United Kingdom)'),
(106087, 87017, 'en', 'name', 'Grand Slam Club/Ovis'),
(106088, 87018, 'en', 'name', 'Institute of Critical Care Medicine'),
(106089, 87019, 'no_lang_code', 'name', 'Cochrane'),
(106090, 87020, 'en', 'name', 'Moroccan Foundation for Advanced Science, Innovation and Research'),
(106091, 87021, 'no_lang_code', 'name', 'Clarus Ventures'),
(106092, 87022, 'no_lang_code', 'name', 'ASE Holdings (United States)'),
(106093, 87023, 'es', 'name', 'Comisión México-Estados Unidos para el Intercambio Educativo y Cultural'),
(106094, 87024, 'no_lang_code', 'name', 'AccuVein (United States)'),
(106095, 87025, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في الؓرق Ų§Ł„Ų£ŁˆŲ³Ų·'),
(106096, 87025, 'en', 'name', 'American University of the Middle East'),
(106097, 87026, 'no_lang_code', 'name', 'Hugging Face'),
(106098, 87027, 'en', 'name', 'Ichinomiya Kenshin College'),
(106099, 87027, 'ja', 'name', '一宮研伸大学 ēœ‹č­·å­¦éƒØ'),
(106100, 87028, 'en', 'name', 'Argosy University'),
(106101, 87029, 'en', 'name', 'Northern Counties Kidney Research Fund'),
(106102, 87030, 'en', 'name', 'Walter and Duncan Gordon Foundation'),
(106103, 87031, 'no_lang_code', 'name', 'Ocean Optics (United States)'),
(106104, 87032, 'en', 'name', 'New Earth Foundation'),
(106105, 87033, 'en', 'name', 'Shantou University Medical College'),
(106106, 87034, 'en', 'name', 'Helgeland Museum'),
(106107, 87035, 'no_lang_code', 'name', 'CSR (United States)'),
(106108, 87036, 'no_lang_code', 'name', 'Psyadon Pharmaceuticals (United States)'),
(106109, 87037, 'nl', 'name', 'Waddenfonds'),
(106110, 87038, 'en', 'name', 'Vietnam Military Medical University'),
(106111, 87039, 'en', 'name', 'International Copper Association'),
(106112, 87040, 'en', 'name', 'Organisation for Economic Co-operation and Development'),
(106113, 87041, 'en', 'name', 'Kobe University of Fashion and Design'),
(106114, 87041, 'ja', 'name', 'ē„žęˆøćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³é€ å½¢å¤§å­¦'),
(106115, 87042, 'en', 'name', 'PGP College of Engineering and Technology'),
(106116, 87043, 'en', 'name', 'Directorate of Onion and Garlic Research'),
(106117, 87043, 'hi', 'name', 'ą¤Ŗą„ą¤Æą¤¾ą¤œ ą¤ą¤µą¤‚ ą¤²ą¤¹ą¤øą„ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤Øą¤æą¤¦ą„‡ą¤¶ą¤¾ą¤²ą¤Æ'),
(106118, 87044, 'en', 'name', 'Lowell Community Health Center'),
(106119, 87045, 'de', 'name', 'Abwasserverband Achental-Inntal-Zillertal'),
(106120, 87046, 'da', 'name', 'Aase og Ejnar Danielsens Fond'),
(106121, 87047, 'no_lang_code', 'name', 'HydroCision (United States)'),
(106122, 87048, 'en', 'name', 'Universal Spa Training Academy'),
(106123, 87049, 'en', 'name', 'Translational Genomics Research Institute'),
(106124, 87050, 'no_lang_code', 'name', 'Allen-Vanguard (Canada)'),
(106125, 87051, 'en', 'name', 'New Horizons for Women Trust'),
(106126, 87052, 'en', 'name', 'Fuyang City People''s Hospital'),
(106127, 87053, 'no_lang_code', 'name', 'Angiocrine Bioscience (United States)'),
(106128, 87054, 'es', 'name', 'Fundación Para la Gestión de la Investigación Biomédica de CÔdiz'),
(106129, 87055, 'en', 'name', 'Building Changes'),
(106130, 87056, 'no_lang_code', 'name', 'Gannett (United States)'),
(106131, 87057, 'en', 'name', 'Crafoord Foundation'),
(106132, 87058, 'en', 'name', 'M J Murdock Charitable Trust'),
(106133, 87059, 'en', 'name', 'National Metrology Institute of South Africa'),
(106134, 87060, 'en', 'name', 'Presence Health'),
(106135, 87061, 'no_lang_code', 'name', 'Cardio3 BioSciences (Belgium)'),
(106136, 87062, 'en', 'name', 'Kurnool Medical College'),
(106137, 87062, 'te', 'name', 'ą°•ą°°ą±ą°Øą±‚ą°²ą± ą°µą±ˆą°¦ą±ą°Æ కళాశాల'),
(106138, 87063, 'en', 'name', 'Cumbria Institute of the Arts'),
(106139, 87064, 'en', 'name', 'British and Foreign School Society'),
(106140, 87065, 'fr', 'name', 'EconomiX'),
(106141, 87066, 'no_lang_code', 'name', 'Stratatech Corporation'),
(106142, 87067, 'en', 'name', 'Fujian Polytechnic of Information Technology'),
(106143, 87067, 'zh', 'name', 'ē¦å»ŗäæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(106144, 87068, 'en', 'name', 'Coalition for Epidemic Preparedness Innovations'),
(106145, 87069, 'en', 'name', 'United States Army War College'),
(106146, 87070, 'en', 'name', 'EuroSpine'),
(106147, 87071, 'en', 'name', 'Nizhnevartovsk State University'),
(106148, 87071, 'ru', 'name', 'ŠŠøŠ¶Š½ŠµŠ²Š°Ń€Ń‚Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106149, 87072, 'en', 'name', 'Northwest Samar State University'),
(106150, 87073, 'en', 'name', 'Association of Canadian Archivists'),
(106151, 87074, 'en', 'name', 'Eye Center'),
(106152, 87075, 'en', 'name', 'BioTechMed-Graz'),
(106153, 87076, 'en', 'name', 'Cardea Services'),
(106154, 87077, 'no_lang_code', 'name', 'Elanco (United States)'),
(106155, 87078, 'en', 'name', 'Royal Dutch Lawn Tennis Federation'),
(106156, 87078, 'nl', 'name', 'Koninklijke Nederlandse Lawn Tennis Bond'),
(106157, 87079, 'en', 'name', 'Philbrook Museum of Art'),
(106158, 87080, 'en', 'name', 'Czechoslovak Documentation Centre'),
(106159, 87081, 'no_lang_code', 'name', 'Telenor (Norway)'),
(106160, 87082, 'en', 'name', 'Ukrainian Institute of Public Health Policy'),
(106161, 87083, 'en', 'name', 'Beijing Hospital'),
(106162, 87084, 'en', 'name', 'Folke Bernadotte Academy'),
(106163, 87084, 'sv', 'name', 'Folke Bernadotteakademin'),
(106164, 87085, 'en', 'name', 'Melanoma Institute Australia'),
(106165, 87086, 'ar', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ ŚÆŪ•Ų“Ū•Ł¾ŪŽŲÆŲ§Ł†ŪŒ Ł…Ų±Ū†ŪŒŪŒ'),
(106166, 87086, 'en', 'name', 'University of Human Development'),
(106167, 87087, 'sl', 'name', 'Ekonomska Å ola Novo Mesto'),
(106168, 87088, 'no_lang_code', 'name', 'IQE Silicon Compounds (United Kingdom)'),
(106169, 87089, 'en', 'name', 'Society of the Cincinnati'),
(106170, 87090, 'en', 'name', 'Zhengzhou Preschool Education College'),
(106171, 87090, 'zh', 'name', 'éƒ‘å·žå¹¼å„æåøˆčŒƒé«˜ē­‰äø“ē§‘å­¦ę ”'),
(106172, 87091, 'en', 'name', 'Pueblo of Isleta'),
(106173, 87092, 'no_lang_code', 'name', 'Aptevo Therapeutics (United states)'),
(106174, 87093, 'no_lang_code', 'name', 'Sound Approach (United Kingdom)'),
(106175, 87094, 'en', 'name', 'Art Institute of Wisconsin'),
(106176, 87095, 'en', 'name', 'Liberators University'),
(106177, 87096, 'en', 'name', 'MRC Molecular Haematology Unit'),
(106178, 87097, 'en', 'name', 'American College of Veterinary Pathologists'),
(106179, 87098, 'no_lang_code', 'name', 'UES (United States)'),
(106180, 87099, 'ko', 'name', 'ė§ˆģŒģ‚¬ėž‘ė³‘ģ›'),
(106181, 87099, 'no_lang_code', 'name', 'Maeumsarang Hospital'),
(106182, 87100, 'en', 'name', 'South Asian University'),
(106183, 87101, 'it', 'name', 'Fondazione Progetto Ematologia'),
(106184, 87102, 'en', 'name', 'First Congregational Church'),
(106185, 87103, 'en', 'name', 'Southeastern Transportation Research, Innovation, Development and Education Center'),
(106186, 87104, 'no_lang_code', 'name', 'TransDerm (United States)'),
(106187, 87105, 'en', 'name', 'Rajamangala University of Technology Srivijaya'),
(106188, 87105, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøØąø£ąøµąø§ąø“ąøŠąø±ąø¢'),
(106189, 87106, 'en', 'name', 'Ontario Historical Society'),
(106190, 87107, 'en', 'name', 'Adygei State University'),
(106191, 87108, 'en', 'name', 'Stoke-on-Trent City Council'),
(106192, 87109, 'en', 'name', 'New Brunswick Arts Board'),
(106193, 87110, 'en', 'name', 'Office for Health Improvement and Disparities'),
(106194, 87111, 'en', 'name', 'Latvian Institute of Aquatic Ecology'),
(106195, 87111, 'lv', 'name', 'Latvijas Hidroekoloģijas institūts'),
(106196, 87112, 'fr', 'name', 'UniversitƩ Sultan Moulay Slimane'),
(106197, 87113, 'en', 'name', 'Sheffield Children''s NHS Foundation Trust'),
(106198, 87114, 'en', 'name', 'Agriculture Research Center'),
(106199, 87115, 'en', 'name', 'Oklahoma State University Center for Health Sciences'),
(106200, 87116, 'en', 'name', 'Scioto Foundation'),
(106201, 87117, 'no_lang_code', 'name', 'Arcam (Sweden)'),
(106202, 87118, 'en', 'name', 'Tsinghua-UC Berkeley Shenzhen Institute'),
(106203, 87119, 'en', 'name', 'Shandong University of Technology'),
(106204, 87119, 'zh', 'name', 'å±±äøœē†å·„å¤§å­¦'),
(106205, 87120, 'en', 'name', 'Donaghue Foundation'),
(106206, 87121, 'en', 'name', 'Polymer Research Center'),
(106207, 87122, 'no_lang_code', 'name', 'Titan Pharmaceuticals (United States)'),
(106208, 87123, 'de', 'name', 'Medizinische UniversitƤt Graz'),
(106209, 87123, 'en', 'name', 'Medical University of Graz'),
(106210, 87124, 'en', 'name', 'Royal Australian and New Zealand College of Psychiatrists'),
(106211, 87125, 'en', 'name', 'Glenrose Rehabilitation Hospital'),
(106212, 87126, 'en', 'name', 'Rosemere Cancer Foundation'),
(106213, 87127, 'no_lang_code', 'name', 'Sirrix (Germany)'),
(106214, 87128, 'de', 'name', 'Bayerisches Staatsministerium für Umwelt und Verbraucherschutz'),
(106215, 87128, 'en', 'name', 'Bavarian State Ministry of the Environment and Consumer Protection'),
(106216, 87129, 'en', 'name', 'Breast Cancer Alliance'),
(106217, 87130, 'en', 'name', 'National Pancreas Foundation'),
(106218, 87131, 'en', 'name', 'Centre for Nano and Soft Matter Sciences'),
(106219, 87132, 'en', 'name', 'Nagoya University Museum'),
(106220, 87132, 'ja', 'name', '名古屋大学 åšē‰©é¤Ø'),
(106221, 87133, 'en', 'name', 'Monterey Bay Aquarium Research Institute'),
(106222, 87134, 'en', 'name', 'MVJ Medical College and Research Hospital'),
(106223, 87135, 'en', 'name', 'Hebrew Union College - Jewish Institute of Religion'),
(106224, 87136, 'no_lang_code', 'name', 'Yung Shin Pharmaceutical Industrial (Taiwan)'),
(106225, 87137, 'en', 'name', 'Xi''an Siyuan University'),
(106226, 87137, 'zh', 'name', 'č„æå®‰ę€ęŗå­¦é™¢'),
(106227, 87138, 'en', 'name', 'Elabuga State Pedagogical University'),
(106228, 87139, 'es', 'name', 'Hospital Xeral'),
(106229, 87140, 'no_lang_code', 'name', 'Arqule (United States)'),
(106230, 87141, 'en', 'name', 'Hermon Slade Foundation'),
(106231, 87142, 'en', 'name', 'JPS Health Network'),
(106232, 87143, 'no_lang_code', 'name', 'Akastor (Norway)'),
(106233, 87144, 'en', 'name', 'Susquehanna University'),
(106234, 87144, 'fr', 'name', 'UniversitƩ de Susquehanna'),
(106235, 87145, 'en', 'name', 'Takahashi Industrial and Economic Research Foundation'),
(106236, 87145, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ é«˜ę©‹ē”£ę„­ēµŒęøˆē ”ē©¶č²”å›£'),
(106237, 87146, 'en', 'name', 'North Pacific Research Board'),
(106238, 87147, 'en', 'name', 'Ophthalmic Consultants of Boston'),
(106239, 87148, 'no_lang_code', 'name', 'Indumetal Recycling (Spain)'),
(106240, 87149, 'fr', 'name', 'Epi-Phare'),
(106241, 87150, 'no_lang_code', 'name', 'Target (United Kingdom)'),
(106242, 87151, 'en', 'name', 'Chang Bing Show Chwan Memorial Hospital'),
(106243, 87152, 'en', 'name', 'The International Research Foundation for English Language Education'),
(106244, 87153, 'en', 'name', 'Swami Rama Himalayan University'),
(106245, 87153, 'hi', 'name', 'ą¤øą„ą¤µą¤¾ą¤®ą„€ राम हिमालयन ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(106246, 87154, 'en', 'name', 'British Burn Association'),
(106247, 87155, 'en', 'name', 'Seva Foundation'),
(106248, 87156, 'en', 'name', 'Princeton Public Library'),
(106249, 87157, 'de', 'name', 'Hochschule für öffentliche Verwaltung Rheinland-Pfalz'),
(106250, 87158, 'no_lang_code', 'name', 'Risk & Policy Analysts (United Kingdom)'),
(106251, 87159, 'en', 'name', 'College of Staten Island'),
(106252, 87160, 'en', 'name', 'National Institute for Health and Disability Insurance'),
(106253, 87160, 'fr', 'name', 'Institut National d''Assurance Maladie InvaliditƩ'),
(106254, 87160, 'nl', 'name', 'Rijksinstituut voor Ziekte- en Invaliditeitsverzekering'),
(106255, 87161, 'de', 'name', 'Deutsche Gesellschaft für Kardiologie – Herz- und Kreislaufforschung e.V.'),
(106256, 87161, 'en', 'name', 'German Cardiac Society'),
(106257, 87162, 'en', 'name', 'Ministry of the Environment and Protection of Land and Sea'),
(106258, 87162, 'it', 'name', 'Ministero dell''Ambiente e della Tutela del Territorio e del Mare'),
(106259, 87163, 'en', 'name', 'Materials and Energy Research Center'),
(106260, 87163, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł…ŁˆŲ§ŲÆ و Ų§Ł†Ų±Ś˜ŪŒ'),
(106261, 87164, 'en', 'name', 'Western Health'),
(106262, 87165, 'en', 'name', 'MedTech CoRE'),
(106263, 87166, 'en', 'name', 'Perm State Pedagogical University'),
(106264, 87167, 'en', 'name', 'The University of Texas Rio Grande Valley'),
(106265, 87167, 'es', 'name', 'Universidad de Texas Valle del RĆ­o Grande'),
(106266, 87168, 'en', 'name', 'National MPS Society'),
(106267, 87169, 'en', 'name', 'Argosy University'),
(106268, 87170, 'en', 'name', 'Malaysian Nuclear Agency'),
(106269, 87170, 'ms', 'name', 'Agensi Nuklear Malaysia'),
(106270, 87171, 'en', 'name', 'American Institute of Steel Construction'),
(106271, 87172, 'de', 'name', 'Max-Planck-Institut für Softwaresysteme'),
(106272, 87172, 'en', 'name', 'Max Planck Institute for Software Systems'),
(106273, 87173, 'tr', 'name', 'Beyoglu Goz Egitim ve Arastirma Hastanesi'),
(106274, 87174, 'no_lang_code', 'name', 'Exiqon (United States)'),
(106275, 87175, 'it', 'name', 'Fondazione Caritro, Fondazione Cassa di Risparmio di Trento e Rovereto'),
(106276, 87176, 'en', 'name', 'University College Hospital at Westmoreland Street'),
(106277, 87177, 'en', 'name', 'Suntory Foundation for Life Sciences'),
(106278, 87177, 'ja', 'name', 'ć‚µćƒ³ćƒˆćƒŖćƒ¼ē”Ÿå‘½ē§‘å­¦č²”å›£'),
(106279, 87178, 'de', 'name', 'Phospholipid Forschungszentrum'),
(106280, 87178, 'en', 'name', 'Phospholipid Research Center'),
(106281, 87179, 'de', 'name', 'Max-Planck-Institut für Bildungsforschung'),
(106282, 87179, 'en', 'name', 'Max Planck Institute for Human Development'),
(106283, 87180, 'no_lang_code', 'name', 'Angion (United States)'),
(106284, 87181, 'no_lang_code', 'name', 'United Technologies (Canada)'),
(106285, 87182, 'en', 'name', 'Ontario Lung Association'),
(106286, 87183, 'en', 'name', 'Łukasiewicz Research Network - Rail Vehicles Institute'),
(106287, 87183, 'pl', 'name', 'Sieć Badawczą Łukasiewicz - Instytut Pojazdów Szynowych "TABORā€'),
(106288, 87184, 'nl', 'name', 'Trombosestichting Nederland'),
(106289, 87185, 'fr', 'name', 'Fondation Neurodis'),
(106290, 87186, 'en', 'name', 'Northshore Technical Community College'),
(106291, 87187, 'no_lang_code', 'name', 'Nanowave Technologies (Canada)'),
(106292, 87188, 'no_lang_code', 'name', 'Neuromorphometrics (United States)'),
(106293, 87189, 'en', 'name', 'Changi General Hospital'),
(106294, 87190, 'en', 'name', 'Punjab Agricultural University'),
(106295, 87190, 'hi', 'name', 'ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(106296, 87190, 'pa', 'name', 'ਪੰਜਾਬ ąØąØ—ąØ°ą©€ąØ•ąØ²ąØšąØ°ąØ² ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(106297, 87191, 'de', 'name', 'Institut für Arbeitsmarkt und Berufsforschung'),
(106298, 87191, 'en', 'name', 'Institute for Employment Research'),
(106299, 87192, 'no_lang_code', 'name', 'Shire (Belgium)'),
(106300, 87193, 'en', 'name', 'International Professional University of Technology in Nagoya'),
(106301, 87193, 'ja', 'name', 'åå¤å±‹å›½éš›å·„ē§‘å°‚é–€č·å¤§å­¦'),
(106302, 87194, 'en', 'name', 'Penn State Abington'),
(106303, 87195, 'en', 'name', 'TechnoServe'),
(106304, 87196, 'no_lang_code', 'name', 'MSD Animal Health (Germany)'),
(106305, 87197, 'en', 'name', 'VA Pittsburgh Healthcare System'),
(106306, 87198, 'en', 'name', 'Lincoln Memorial University'),
(106307, 87199, 'en', 'name', 'Hope Against Cancer'),
(106308, 87200, 'en', 'name', 'Canadian Association of Petroleum Producers'),
(106309, 87201, 'en', 'name', 'Institute for Economic Liberty'),
(106310, 87201, 'es', 'name', 'Instituto de Libertad Económica'),
(106311, 87202, 'en', 'name', 'Iraqi Institute of Ancient Culture'),
(106312, 87202, 'ja', 'name', 'ć‚¤ćƒ©ć‚Æå¤ä»£ę–‡åŒ–ē ”ē©¶ę‰€'),
(106313, 87203, 'en', 'name', 'Mastercard Foundation'),
(106314, 87204, 'en', 'name', 'Japan Chemical Industry Association');
INSERT INTO `ror_settings` VALUES
(106315, 87204, 'ja', 'name', 'ę—„ęœ¬åŒ–å­¦å·„ę„­å”ä¼š'),
(106316, 87205, 'en', 'name', 'WEGEMT Organisation'),
(106317, 87206, 'no_lang_code', 'name', 'BioMedPress'),
(106318, 87207, 'no_lang_code', 'name', 'Tsumura (Japan)'),
(106319, 87208, 'en', 'name', 'Workplace Safety & Insurance Board'),
(106320, 87208, 'fi', 'name', 'Commission de la sƩcuritƩ professionnelle et de l''assurance contre les accidents du travail'),
(106321, 87209, 'en', 'name', 'SUNY Oneonta'),
(106322, 87209, 'fr', 'name', 'UniversitĆ© d''Ɖtat de new york Ć  oneonta'),
(106323, 87210, 'no_lang_code', 'name', 'Casmed (United States)'),
(106324, 87211, 'en', 'name', 'Baltic International Academy'),
(106325, 87211, 'lt', 'name', 'Tarptautinė Baltijos akademija'),
(106326, 87211, 'lv', 'name', 'Baltijas Starptautiskā akadēmija'),
(106327, 87211, 'ru', 'name', 'Š‘Š°Š»Ń‚ŠøŠ¹ŃŠŗŠ°Ń Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(106328, 87212, 'it', 'name', 'Associazione Comuni Terremotati e Sindaci della Ricostruzione del Friuli'),
(106329, 87213, 'en', 'name', 'Frankfurt University of Applied Sciences'),
(106330, 87214, 'en', 'name', 'Freemasons New Zealand'),
(106331, 87215, 'en', 'name', 'Hawaii Loa College'),
(106332, 87216, 'en', 'name', 'New Brunswick Innovation Foundation'),
(106333, 87217, 'no_lang_code', 'name', 'Steinbichler (Germany)'),
(106334, 87218, 'en', 'name', 'Mianyang Normal University'),
(106335, 87218, 'zh', 'name', 'ē»µé˜³åøˆčŒƒå­¦é™¢'),
(106336, 87219, 'ca', 'name', 'i2CAT'),
(106337, 87220, 'en', 'name', 'Baltic Defence College'),
(106338, 87220, 'et', 'name', 'Balti Kaitsekolledž'),
(106339, 87220, 'lt', 'name', 'Baltijos gynybos koledžas'),
(106340, 87220, 'lv', 'name', 'Baltijas Aizsardzības koledža'),
(106341, 87221, 'en', 'name', 'Flora Family Foundation'),
(106342, 87222, 'en', 'name', 'Mote Marine Laboratory'),
(106343, 87223, 'en', 'name', 'Food and Drug Safety Center'),
(106344, 87223, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé£Ÿå“č–¬å“å®‰å…Øć‚»ćƒ³ć‚æćƒ¼'),
(106345, 87224, 'de', 'name', 'Stiftung Mainzer Herz'),
(106346, 87225, 'bn', 'name', 'বাংলাদেশ ą¦Ŗą¦¾ą¦Ÿą¦•ą¦² করপোরেশন'),
(106347, 87225, 'en', 'name', 'Bangladesh Jute Mills Corporation'),
(106348, 87226, 'en', 'name', 'Islamic Azad University, UAE Branch'),
(106349, 87226, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų§Ł…Ų§Ų±Ų§ŲŖ متحده'),
(106350, 87227, 'en', 'name', 'United Nations Development Programme'),
(106351, 87228, 'no_lang_code', 'name', 'Trex (United States)'),
(106352, 87229, 'no_lang_code', 'name', 'SystemsX.ch'),
(106353, 87230, 'no_lang_code', 'name', 'Polytec (Germany)'),
(106354, 87231, 'en', 'name', 'New Zealand Freshwater Sciences Society'),
(106355, 87232, 'en', 'name', 'Council of Economic Advisers'),
(106356, 87233, 'en', 'name', 'Spanish Biomedical Research Centre in Physiopathology of Obesity and Nutrition'),
(106357, 87233, 'es', 'name', 'Centro de Investigación Biomédica en Red de Fisiopatología de la Obesidad y Nutrición'),
(106358, 87234, 'en', 'name', 'Institute of Microelectronics'),
(106359, 87234, 'zh', 'name', '中国科学院微电子研究所'),
(106360, 87235, 'en', 'name', 'Budge Budge Institute of Technology'),
(106361, 87236, 'no_lang_code', 'name', 'Selgen (Czechia)'),
(106362, 87237, 'en', 'name', 'Penn State New Kensington'),
(106363, 87238, 'no_lang_code', 'name', 'Guangzhou Metro Design & Research Institute'),
(106364, 87238, 'zh', 'name', 'å¹æå·žåœ°é“č®¾č®”ē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(106365, 87239, 'en', 'name', 'Andrews Institute for Orthopaedics & Sports Medicine'),
(106366, 87240, 'en', 'name', 'Texas Tech University Health Sciences Center'),
(106367, 87241, 'en', 'name', 'SUNY Cobleskill'),
(106368, 87242, 'en', 'name', 'Global Cancer Institute'),
(106369, 87243, 'no_lang_code', 'name', 'Zynerba Pharmaceuticals (United States)'),
(106370, 87244, 'de', 'name', 'Leibniz-Institut für Pflanzengenetik und Kulturpflanzenforschung'),
(106371, 87244, 'en', 'name', 'Leibniz Institute of Plant Genetics and Crop Plant Research'),
(106372, 87245, 'en', 'name', 'Osaka City University'),
(106373, 87245, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹å¤§å­¦'),
(106374, 87246, 'en', 'name', 'University of Oregon'),
(106375, 87246, 'es', 'name', 'Universidad de Oregón'),
(106376, 87247, 'ja', 'name', '淑徳大学'),
(106377, 87247, 'no_lang_code', 'name', 'Shukutoku University'),
(106378, 87248, 'en', 'name', 'Tokyo Metropolitan Hiroo Hospital'),
(106379, 87248, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹åŗƒå°¾ē—…é™¢'),
(106380, 87249, 'no', 'name', 'Unifor'),
(106381, 87250, 'en', 'name', 'Gill Foundation'),
(106382, 87251, 'en', 'name', 'Stavropol State Medical University'),
(106383, 87252, 'ja', 'name', 'ē“€ä¼Šåœ‹å±‹ę›øåŗ—'),
(106384, 87252, 'no_lang_code', 'name', 'Kinokuniya'),
(106385, 87253, 'id', 'name', 'Universitas 17 Agustus 1945 Cirebon'),
(106386, 87254, 'fr', 'name', 'Institut d''Electronique Fondamentale'),
(106387, 87255, 'en', 'name', 'Historic Hudson Valley'),
(106388, 87256, 'no_lang_code', 'name', 'Enamine (Ukraine)'),
(106389, 87257, 'en', 'name', 'Indian Institute of Oil Palm Research'),
(106390, 87258, 'en', 'name', 'Boca Raton Community High School'),
(106391, 87259, 'en', 'name', 'South African History Archive'),
(106392, 87260, 'en', 'name', 'Matrix Biology Institute'),
(106393, 87261, 'de', 'name', 'Archivschule Marburg'),
(106394, 87261, 'en', 'name', 'Archives School Marburg'),
(106395, 87262, 'en', 'name', 'Environmental Defense Fund'),
(106396, 87263, 'en', 'name', 'Steacie Institute for Molecular Sciences'),
(106397, 87264, 'en', 'name', 'Postgraduate Institute of Medical Education and Research'),
(106398, 87264, 'hi', 'name', 'ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤šą¤‚ą¤”ą„€ą¤—ą¤¢ą¤¼'),
(106399, 87265, 'en', 'name', 'Max Kade Foundation'),
(106400, 87266, 'pt', 'name', 'Grupo Anchieta'),
(106401, 87267, 'en', 'name', 'Allied Services'),
(106402, 87268, 'en', 'name', 'Scottish Rite Charitable Foundation of Canada'),
(106403, 87269, 'en', 'name', 'Collurania Teramo Observatory'),
(106404, 87269, 'it', 'name', 'Osservatorio Astronomico di Collurania "Vincenzo Cerulli"'),
(106405, 87270, 'de', 'name', 'Diabeteszentrum Bad Lauterberg'),
(106406, 87271, 'en', 'name', 'Amol University of Special Modern Technologies'),
(106407, 87271, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų§Ł…ŁˆŁ„ آمل'),
(106408, 87272, 'no_lang_code', 'name', 'Integromics (Spain)'),
(106409, 87273, 'en', 'name', 'Nantong Science and Technology Bureau'),
(106410, 87273, 'zh', 'name', 'å—é€šåø‚ē§‘ęŠ€å±€'),
(106411, 87274, 'en', 'name', 'Cheongju University'),
(106412, 87274, 'ko', 'name', 'ģ²­ģ£¼ėŒ€ķ•™źµ'),
(106413, 87275, 'nl', 'name', 'Instituut Gak'),
(106414, 87276, 'en', 'name', 'Epilepsy Society of Australia'),
(106415, 87277, 'cs', 'name', 'VysokĆ” Skola Ekonomie a Managementu'),
(106416, 87278, 'en', 'name', 'Indepth Network'),
(106417, 87279, 'en', 'name', 'Knox County Health Department'),
(106418, 87280, 'en', 'name', 'Finnish Work Environment Fund'),
(106419, 87281, 'en', 'name', 'Native Arts and Cultures Foundation'),
(106420, 87282, 'no_lang_code', 'name', 'Blue Ridge Research and Consulting (United States)'),
(106421, 87283, 'fr', 'name', 'Laboratoire HƩtƩrochimie Fondamentale et AppliquƩe'),
(106422, 87284, 'no_lang_code', 'name', 'Insight Equity (United States)'),
(106423, 87285, 'en', 'name', 'Pennsylvania College of Health Sciences'),
(106424, 87286, 'no_lang_code', 'name', 'Renishaw (United Kingdom)'),
(106425, 87287, 'en', 'name', 'Daiichi Institute of Technology'),
(106426, 87287, 'ja', 'name', '第一巄愭大学'),
(106427, 87288, 'en', 'name', 'Coordinating Council for Women in History'),
(106428, 87289, 'en', 'name', 'Sultan Abdul Halim Mu''adzam Shah International Islamic University'),
(106429, 87289, 'ms', 'name', 'Universiti Islam Antarabangsa Sultan Abdul Halim Mu''adzam Shah'),
(106430, 87290, 'en', 'name', 'Korea Golf University'),
(106431, 87290, 'ko', 'name', 'ķ•œźµ­ź³Øķ”„ėŒ€ķ•™źµ'),
(106432, 87291, 'en', 'name', 'Bahria University'),
(106433, 87291, 'ur', 'name', 'Ų¬Ų§Ł…Ų¹Ū‚ بحریہ'),
(106434, 87292, 'en', 'name', 'Stockholm Municipality'),
(106435, 87293, 'en', 'name', 'Georgia Association of Educational Leaders'),
(106436, 87294, 'no_lang_code', 'name', 'MannKind Corporation (United States)'),
(106437, 87295, 'no_lang_code', 'name', 'OAI Consulting (United States)'),
(106438, 87296, 'en', 'name', 'Art Institute of Seattle'),
(106439, 87297, 'en', 'name', 'Zhejiang A & F University'),
(106440, 87297, 'zh', 'name', 'ęµ™ę±Ÿå†œęž—å¤§å­¦'),
(106441, 87298, 'en', 'name', 'European Society of Clinical Microbiology and Infectious Diseases'),
(106442, 87299, 'en', 'name', 'RGK Foundation'),
(106443, 87300, 'no_lang_code', 'name', 'SS&C Technologies (United States)'),
(106444, 87301, 'en', 'name', 'Saken Seifullin Kazakh Agro Technical University'),
(106445, 87301, 'kk', 'name', 'Š”. Š”ŠµŠ¹Ń„ŃƒŠ»Š»ŠøŠ½ атынГағы қазақ агротехникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(106446, 87302, 'en', 'name', 'Texas A&M Health Science Center'),
(106447, 87303, 'no_lang_code', 'name', 'Technik und Forschung im Betonbau (Switzerland)'),
(106448, 87304, 'pt', 'name', 'Instituto Maria e Joao Aleixo'),
(106449, 87305, 'no_lang_code', 'name', 'SIRIS Academic'),
(106450, 87306, 'en', 'name', 'Ethel And James Flinn Foundation'),
(106451, 87307, 'en', 'name', 'China Academy of Telecommunication Research'),
(106452, 87307, 'zh', 'name', 'å·„äøšå’Œäæ”ęÆåŒ–éƒØē”µäæ”ē ”ē©¶é™¢'),
(106453, 87308, 'it', 'name', 'Istituto Nazionale della Nutrizione'),
(106454, 87309, 'no_lang_code', 'name', 'EMS (United Kingdom)'),
(106455, 87310, 'en', 'name', 'Institute for Computational Science and Technology'),
(106456, 87311, 'en', 'name', 'American Association of Colleges of Nursing'),
(106457, 87312, 'en', 'name', 'Shanghai University of Electric Power'),
(106458, 87312, 'zh', 'name', 'äøŠęµ·ē”µåŠ›å­¦é™¢'),
(106459, 87313, 'pt', 'name', 'Instituto de Urologia e Nefrologia'),
(106460, 87314, 'en', 'name', 'UK Dementia Research Institute'),
(106461, 87315, 'en', 'name', 'Center for Health and Gender Equity'),
(106462, 87316, 'en', 'name', 'Parkside School'),
(106463, 87317, 'en', 'name', 'Southern Regional Education Board'),
(106464, 87318, 'en', 'name', 'Korea Foundation for the Advancement of Science and Creativity'),
(106465, 87319, 'en', 'name', 'Maryland Stem Cell Research Fund'),
(106466, 87320, 'en', 'name', 'Minnesota Food Association'),
(106467, 87321, 'en', 'name', 'Kanazawa Institute of Technology'),
(106468, 87321, 'ja', 'name', '金沢巄愭大学'),
(106469, 87322, 'en', 'name', 'Sonoma County Museum'),
(106470, 87323, 'en', 'name', 'Crotched Mountain'),
(106471, 87324, 'en', 'name', 'Susan G Komen Utah'),
(106472, 87325, 'en', 'name', 'Gray Foundation'),
(106473, 87326, 'en', 'name', 'Jining Medical College'),
(106474, 87327, 'en', 'name', 'NIIT University'),
(106475, 87328, 'fr', 'name', 'Hochalpines Institut Ftan'),
(106476, 87329, 'no_lang_code', 'name', 'Glidden (United States)'),
(106477, 87330, 'de', 'name', 'Austria Institut für Europa- und Sicherheitspolitik'),
(106478, 87330, 'en', 'name', 'Austrian Institute for European and Security Policy'),
(106479, 87331, 'en', 'name', 'Yazd University'),
(106480, 87331, 'fa', 'name', 'دانؓگاه یزد'),
(106481, 87332, 'en', 'name', 'Southern Nursing Research Society'),
(106482, 87333, 'en', 'name', 'The Economic Research Institute for Northeast Asia'),
(106483, 87333, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē’°ę—„ęœ¬ęµ·ēµŒęøˆē ”ē©¶ę‰€'),
(106484, 87334, 'en', 'name', 'Association of Community Health Nursing Educators'),
(106485, 87335, 'no_lang_code', 'name', 'Chunichi Shimbun'),
(106486, 87336, 'en', 'name', 'Epilepsy Ireland'),
(106487, 87337, 'en', 'name', 'National Institute of Environmental Research'),
(106488, 87338, 'en', 'name', 'Norwegian Institute for Cultural Heritage Research'),
(106489, 87339, 'en', 'name', 'Centre for Marine Socioecology'),
(106490, 87340, 'en', 'name', 'Second Affiliated Hospital of Soochow University'),
(106491, 87341, 'en', 'name', 'Korean Association of Shipping and Logistics'),
(106492, 87341, 'ko', 'name', 'ķ•œźµ­ķ•“ģš“ė¬¼ė„˜ķ•™ķšŒ'),
(106493, 87342, 'en', 'name', 'Kaohsiung Medical University Chung-Ho Memorial Hospital'),
(106494, 87343, 'en', 'name', 'United Nations Office for Project Services'),
(106495, 87344, 'en', 'name', 'Vineland Research and Innovation Centre'),
(106496, 87345, 'en', 'name', 'Pacific State Medical University'),
(106497, 87346, 'cy', 'name', 'Mapiau Arolwg Ordnans'),
(106498, 87346, 'en', 'name', 'Ordnance Survey'),
(106499, 87347, 'it', 'name', 'Associazione Italiana di Tecnologia Meccanica'),
(106500, 87348, 'en', 'name', 'Institute of Indigenous Peoples'' Health'),
(106501, 87348, 'fr', 'name', 'Institut de la santƩ des Autochtones'),
(106502, 87349, 'en', 'name', 'Resource Center for Parents and Children'),
(106503, 87350, 'en', 'name', 'Dove Cottage & the Wordsworth Museum'),
(106504, 87351, 'no_lang_code', 'name', 'ReShape Lifesciences (United States)'),
(106505, 87352, 'en', 'name', 'Alliant International University'),
(106506, 87353, 'en', 'name', 'Bushehr University of Medical Sciences'),
(106507, 87353, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲØŁˆŲ“Ł‡Ų±'),
(106508, 87354, 'no_lang_code', 'name', 'Top Hat (Canada)'),
(106509, 87355, 'fr', 'name', 'Ɖcole des Hautes Etudes Commerciales du Maroc'),
(106510, 87356, 'en', 'name', 'Cancer Genomics Centre'),
(106511, 87357, 'en', 'name', 'ARC Centre of Excellence for Integrative Brain Function'),
(106512, 87358, 'en', 'name', 'Regional Research Council in Uppsala-Ɩrebro Region'),
(106513, 87359, 'en', 'name', 'Jack Brockhoff Foundation'),
(106514, 87360, 'es', 'name', 'Hospital General Universitario de Alicante Doctor Balmis'),
(106515, 87361, 'en', 'name', 'Global Health Innovative Technology Fund'),
(106516, 87362, 'no_lang_code', 'name', 'BioVentrix (United States)'),
(106517, 87363, 'en', 'name', 'Manitoba Lung Association'),
(106518, 87364, 'nl', 'name', 'Nederlandse Vereniging voor Anesthesiologie'),
(106519, 87365, 'pt', 'name', 'Santa Casa de Misericórdia de Marília'),
(106520, 87366, 'pt', 'name', 'Universidade de Fortaleza'),
(106521, 87367, 'en', 'name', 'Society of Antiquaries'),
(106522, 87368, 'en', 'name', 'Alex C. Walker Educational and Charitable Foundation'),
(106523, 87369, 'en', 'name', 'Institutes for Journalism and Natural Resources'),
(106524, 87370, 'en', 'name', 'Sechenov University'),
(106525, 87370, 'ru', 'name', 'ŠŸŠµŃ€Š²Ń‹Š¹ московский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени И. М. Деченова'),
(106526, 87371, 'en', 'name', 'Memorial Sloan Kettering Cancer Center'),
(106527, 87372, 'en', 'name', 'Pan African University Institute for Governance, Humanities and Social Sciences'),
(106528, 87373, 'en', 'name', 'Odessa State Academy of Civil Engineering and Architecture'),
(106529, 87373, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Š±ŃƒŠ“Ń–Š²Š½ŠøŃ†Ń‚Š²Š° та Š°Ń€Ń…Ń–Ń‚ŠµŠŗŃ‚ŃƒŃ€Šø'),
(106530, 87374, 'en', 'name', 'Helmholtz Alberta Initiative'),
(106531, 87375, 'fr', 'name', 'Institut BergoniƩ'),
(106532, 87376, 'no_lang_code', 'name', 'Search Technologies (United States)'),
(106533, 87377, 'fr', 'name', 'Laboratoire EpidƩmiologie et Analyses en SantƩ Publique : Risques, Maladies Chroniques et Handicaps'),
(106534, 87378, 'no_lang_code', 'name', 'Analytical Biological Services (United States)'),
(106535, 87379, 'de', 'name', 'Institut für Psychologische Psychotherapie'),
(106536, 87380, 'no_lang_code', 'name', 'PharmaResearch Products (South Korea)'),
(106537, 87381, 'no_lang_code', 'name', 'Avanir Pharmaceuticals (United States)'),
(106538, 87382, 'en', 'name', 'SkƄne University Hospital'),
(106539, 87382, 'sv', 'name', 'SkƄnes universitetssjukhus'),
(106540, 87383, 'en', 'name', 'NIHR Exeter Clinical Research Facility'),
(106541, 87384, 'es', 'name', 'Instituto Nacional de Formación Técnica Profesional'),
(106542, 87385, 'es', 'name', 'Fundación para la Investigación, Docencia y Prevención del CÔncer'),
(106543, 87386, 'no_lang_code', 'name', 'Ansys (France)'),
(106544, 87387, 'en', 'name', 'Indian Institute of Information Technology Una'),
(106545, 87387, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ऊना'),
(106546, 87388, 'en', 'name', 'Swiss Polar Institute'),
(106547, 87389, 'en', 'name', 'District Department of Transportation'),
(106548, 87389, 'es', 'name', 'Departamento de Transporte del Distrito de Columbia'),
(106549, 87390, 'no_lang_code', 'name', 'Universal Display Corporation'),
(106550, 87391, 'en', 'name', 'Industrial and Commercial Bank of China'),
(106551, 87391, 'zh', 'name', 'äø­å›½å·„å•†é“¶č”Œč‚”ä»½ęœ‰é™å…¬åø'),
(106552, 87392, 'en', 'name', 'Tübitak National Metrology Institute'),
(106553, 87392, 'tr', 'name', 'Ulusal Metroloji Enstitüsü'),
(106554, 87393, 'en', 'name', 'Purdue University Calumet'),
(106555, 87394, 'en', 'name', 'Prek Leap National College of Agriculture'),
(106556, 87394, 'km', 'name', 'įžŸįž¶įž›įž¶įž‡įž¶įžįž·įž€įžŸįž·įž€įž˜įŸ’įž˜įž–įŸ’įžšįŸ‚įž€įž›įŸ€įž”'),
(106557, 87395, 'fr', 'name', 'Centre Hospitalier Universitaire de Tivoli'),
(106558, 87396, 'pl', 'name', 'Akademia Wychowania Fizycznego Józefa Piłsudskiego w Warszawie'),
(106559, 87397, 'hu', 'name', 'Egri HittudomĆ”nyi Főiskola'),
(106560, 87398, 'en', 'name', 'Virginia G Piper Charitable Trust'),
(106561, 87399, 'de', 'name', 'Adolf Messer Stiftung'),
(106562, 87399, 'en', 'name', 'Adolf Messer Foundation'),
(106563, 87400, 'en', 'name', 'Guru Jambheshwar University of Science and Technology'),
(106564, 87400, 'hi', 'name', 'ą¤—ą„ą¤°ą„ ą¤œą¤‚ą¤­ą„‡ą¤¶ą„ą¤µą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(106565, 87400, 'ta', 'name', 'குரு ą®œą®®ąÆą®ŖąÆ‡ą®šąÆą®µą®°ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(106566, 87401, 'en', 'name', 'Visvesvaraya National Institute of Technology'),
(106567, 87401, 'hi', 'name', 'ą¤µą¤æą¤¶ą„ą¤µą„‡ą¤¶ą„ą¤µą¤°ą„ˆą¤Æą¤¾ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(106568, 87402, 'de', 'name', 'Institut für Angewandte Geodäsie'),
(106569, 87403, 'en', 'name', 'EcoHealth Alliance'),
(106570, 87404, 'en', 'name', 'Australian Centre for Robotic Vision'),
(106571, 87405, 'da', 'name', 'Fonden af 17-12-1981'),
(106572, 87406, 'en', 'name', 'Biomass Centre for Energy'),
(106573, 87406, 'pt', 'name', 'Centro da Biomassa para a Energia'),
(106574, 87407, 'no_lang_code', 'name', 'MBF Bioscience (United States)'),
(106575, 87408, 'no_lang_code', 'name', 'Da Volterra (France)'),
(106576, 87409, 'en', 'name', 'Bliss'),
(106577, 87410, 'no_lang_code', 'name', 'Microsoft Research Asia (China)'),
(106578, 87411, 'en', 'name', 'University of Technology, Mauritius'),
(106579, 87412, 'no_lang_code', 'name', 'MDA Corporation'),
(106580, 87413, 'en', 'name', 'Linda Hall Library'),
(106581, 87414, 'en', 'name', 'Idea Wild'),
(106582, 87415, 'en', 'name', 'Egyptian Society of Cardiology'),
(106583, 87416, 'no_lang_code', 'name', 'AT&S (Austria)'),
(106584, 87417, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° музикална Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ā€žŠŸŠ°Š½Ń‡Š¾ ВлаГигеров'),
(106585, 87417, 'en', 'name', 'National Academy of Music Prof. Pancho Vladigerov'),
(106586, 87418, 'en', 'name', 'Eijkman Institute for Molecular Biology'),
(106587, 87419, 'en', 'name', 'United Nations Population Fund'),
(106588, 87420, 'en', 'name', 'Jishan County People''s Hospital'),
(106589, 87420, 'zh', 'name', 'ēØ·å±±åŽæäŗŗę°‘åŒ»é™¢'),
(106590, 87421, 'en', 'name', 'Ministry of Health'),
(106591, 87422, 'en', 'name', 'European Association of Nuclear Medicine'),
(106592, 87423, 'en', 'name', 'Perth and Kinross Council'),
(106593, 87424, 'no_lang_code', 'name', 'DB Schenker Rail Automotive (Germany)'),
(106594, 87425, 'en', 'name', 'Aberystwyth University'),
(106595, 87426, 'en', 'name', 'Aerospace Technology Institute'),
(106596, 87427, 'no_lang_code', 'name', 'VIR Biotechnology (United States)'),
(106597, 87428, 'de', 'name', 'Stadtarchiv Krems'),
(106598, 87429, 'en', 'name', 'New Music USA'),
(106599, 87430, 'no_lang_code', 'name', 'Bunge (United States)'),
(106600, 87431, 'no_lang_code', 'name', 'Maze (United States)'),
(106601, 87432, 'en', 'name', 'University Hospital of North Norway'),
(106602, 87433, 'en', 'name', 'Technological University of Panama'),
(106603, 87433, 'es', 'name', 'Universidad Tecnológica de PanamÔ'),
(106604, 87434, 'en', 'name', 'International Nut and Dried Fruit Council'),
(106605, 87435, 'en', 'name', 'Argosy University'),
(106606, 87436, 'en', 'name', 'Jiangsu Cancer Hospital'),
(106607, 87436, 'zh', 'name', 'ę±Ÿč‹ēœč‚æē˜¤é˜²ę²»ē ”ē©¶ę‰€'),
(106608, 87437, 'da', 'name', 'Teres Hospitalet Parken'),
(106609, 87438, 'en', 'name', 'Rzeszów School of Engineering and Economics'),
(106610, 87438, 'pl', 'name', 'Wyższa Szkoła Inżynieryjno – Ekonomiczna z siedzibą w Rzeszowie'),
(106611, 87439, 'no_lang_code', 'name', 'UKK Institute'),
(106612, 87440, 'no_lang_code', 'name', 'KIC InnoEnergy (Netherlands)'),
(106613, 87441, 'en', 'name', 'The University Press'),
(106614, 87441, 'no_lang_code', 'name', 'Universitetsforlaget (Norway)'),
(106615, 87442, 'en', 'name', 'Louisiana State University Health Sciences Center Shreveport'),
(106616, 87443, 'en', 'name', 'McPin Foundation'),
(106617, 87444, 'en', 'name', 'Cleen Foundation'),
(106618, 87445, 'pt', 'name', 'Instituto Pró-Carnívoros'),
(106619, 87446, 'de', 'name', 'Schweizerische Stiftung für das cerebral gelähmte Kind'),
(106620, 87446, 'en', 'name', 'Swiss Foundation for Children with Cerebral Palsy'),
(106621, 87447, 'no_lang_code', 'name', 'Selexys Pharmaceuticals (United States)'),
(106622, 87448, 'en', 'name', 'Kirov State Medical Academy'),
(106623, 87448, 'ru', 'name', 'ŠšŠøŃ€Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106624, 87449, 'no_lang_code', 'name', 'HyTest (Finland)'),
(106625, 87450, 'en', 'name', 'University of Medicine and Pharmacy of Craiova'),
(106626, 87450, 'ro', 'name', 'Universitatea de Medicină și Farmacie din Craiova'),
(106627, 87451, 'en', 'name', 'North Eastern Polytechnic Vocational College'),
(106628, 87452, 'no_lang_code', 'name', 'Leica Biosystems (United States)'),
(106629, 87453, 'en', 'name', 'Framingham Heart Study'),
(106630, 87454, 'en', 'name', 'CAS-MPG Partner Institute for Computational Biology'),
(106631, 87454, 'zh', 'name', '中国科学院-é©¬ę™®å­¦ä¼šč®”ē®—ē”Ÿē‰©å­¦ä¼™ä¼“ē ”ē©¶ę‰€'),
(106632, 87455, 'en', 'name', 'European & Developing Countries Clinical Trials Partnership'),
(106633, 87456, 'de', 'name', 'Helmholtz-Gemeinschaft Deutscher Forschungszentren'),
(106634, 87456, 'en', 'name', 'GBF German Research Centre for Biotechnology'),
(106635, 87457, 'en', 'name', 'Illinois Coalition Against Sexual Assault'),
(106636, 87458, 'de', 'name', 'Landesnervenklinik Wagner-Jauregg'),
(106637, 87459, 'no_lang_code', 'name', 'BioCryst Pharmaceuticals (United States)'),
(106638, 87460, 'en', 'name', 'Duke Institute for Health Innovation'),
(106639, 87461, 'en', 'name', 'Chongqing Institute of Green and Intelligent Technology'),
(106640, 87461, 'zh', 'name', 'é‡åŗ†ē»æč‰²ę™ŗčƒ½ęŠ€ęœÆē ”ē©¶é™¢'),
(106641, 87462, 'no_lang_code', 'name', 'Amorepacific (South Korea)'),
(106642, 87463, 'no_lang_code', 'name', 'Bard (United Kingdom)'),
(106643, 87464, 'no_lang_code', 'name', 'Rothband (United Kingdom)'),
(106644, 87465, 'de', 'name', 'TU Bergakademie Freiberg, Technische UniversitƤt Bergakademie Freiberg'),
(106645, 87466, 'en', 'name', 'Casper LĆ­bero Foundation'),
(106646, 87466, 'pt', 'name', 'Fundação CÔsper Líbero'),
(106647, 87467, 'no_lang_code', 'name', 'Canfor Pulp Products (Canada)'),
(106648, 87468, 'en', 'name', 'National Archives and Records Administration'),
(106649, 87468, 'es', 'name', 'Archivos Nacionales y Administración de Documentos de los Estados Unidos'),
(106650, 87469, 'no_lang_code', 'name', 'ZBC Multicare (Netherlands)'),
(106651, 87470, 'no_lang_code', 'name', 'BioDelivery Sciences International (United States)'),
(106652, 87471, 'en', 'name', 'University of California Museum of Paleontology'),
(106653, 87472, 'en', 'name', 'Maurice Wilkins Centre'),
(106654, 87473, 'en', 'name', 'David and Lucile Packard Foundation'),
(106655, 87474, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³Ų§Ł…Ų±Ų§Ų”'),
(106656, 87474, 'en', 'name', 'University of Samarra'),
(106657, 87475, 'en', 'name', 'Medical Foundation of North Carolina'),
(106658, 87476, 'en', 'name', 'Public Safety Canada'),
(106659, 87476, 'fr', 'name', 'SƩcuritƩ publique Canada'),
(106660, 87477, 'en', 'name', 'Center for Economic Research and its Applications'),
(106661, 87477, 'fr', 'name', 'Centre Pour La Recherche Economique et ses Applications'),
(106662, 87478, 'en', 'name', 'Athinoula A. Martinos Center for Biomedical Imaging'),
(106663, 87479, 'en', 'name', 'Southern Oregon Orthopedics'),
(106664, 87480, 'no_lang_code', 'name', 'SK Innovation (South Korea)'),
(106665, 87481, 'en', 'name', 'Norwegian Armed Forces'),
(106666, 87482, 'en', 'name', 'Museum of Applied Arts & Sciences'),
(106667, 87483, 'en', 'name', 'Penn State Fayette'),
(106668, 87484, 'en', 'name', 'National Institute of Public Health of Mexico'),
(106669, 87484, 'es', 'name', 'Instituto Nacional de Salud PĆŗblica'),
(106670, 87485, 'en', 'name', 'Understanding Society'),
(106671, 87486, 'en', 'name', 'Akershus University Hospital'),
(106672, 87486, 'no', 'name', 'Akershus universitetssykehus'),
(106673, 87487, 'no_lang_code', 'name', 'Siriraj Hospital'),
(106674, 87487, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąøØąø“ąø£ąø“ąø£ąø²ąøŠ'),
(106675, 87488, 'en', 'name', 'Juvenile Diabetes Research Foundation'),
(106676, 87489, 'fr', 'name', 'Recherches Scientifiques Luxembourg'),
(106677, 87490, 'en', 'name', 'Howard and Georgeanna Jones Foundation for Reproductive Medicine'),
(106678, 87491, 'no_lang_code', 'name', 'C-Motion (United States)'),
(106679, 87492, 'en', 'name', 'Dimitrie Cantemir Christian University'),
(106680, 87492, 'ro', 'name', 'Universitatea Creștină Dimitrie Cantemir'),
(106681, 87493, 'en', 'name', 'California Academy of Family Physicians'),
(106682, 87494, 'no_lang_code', 'name', 'RWE npower (United Kingdom)'),
(106683, 87495, 'no_lang_code', 'name', 'Cepheid (United States)'),
(106684, 87496, 'en', 'name', 'Thurgood Marshall College Fund'),
(106685, 87497, 'de', 'name', 'Katholischer Akademischer AuslƤnder-Dienst'),
(106686, 87498, 'en', 'name', 'NCCR Chemical Biology - Visualisation and Control of Biological Processes Using Chemistry'),
(106687, 87499, 'en', 'name', 'Quebec Rehabilitation Research Network'),
(106688, 87499, 'fr', 'name', 'RƩseau Provincial de Recherche en Adaptation RƩadaptation'),
(106689, 87500, 'en', 'name', 'Australian Access Federation'),
(106690, 87501, 'en', 'name', 'General Hospital Nice Piraeus Saint Panteleimon'),
(106691, 87502, 'en', 'name', 'Shanghai Pulmonary Hospital'),
(106692, 87503, 'en', 'name', 'Tokyo Women''s Junior College of Physical Education'),
(106693, 87503, 'ja', 'name', 'ę±äŗ¬å„³å­ä½“č‚²ēŸ­ęœŸå¤§å­¦'),
(106694, 87504, 'fr', 'name', 'Zéfiro Théâtre'),
(106695, 87505, 'no_lang_code', 'name', 'MindSpec'),
(106696, 87506, 'fi', 'name', 'SilmƤsƤƤtiƶ'),
(106697, 87507, 'no_lang_code', 'name', 'Dow Agrosciences (United Kingdom)'),
(106698, 87508, 'en', 'name', 'Argosy University'),
(106699, 87509, 'nl', 'name', 'Medisch Spectrum Twente'),
(106700, 87510, 'no_lang_code', 'name', 'Medical & Biological Laboratories (Japan)'),
(106701, 87511, 'fr', 'name', 'Association FranƧaise de PƩdiatrie Ambulatoire'),
(106702, 87512, 'no_lang_code', 'name', 'Shire (Sweden)'),
(106703, 87513, 'en', 'name', 'Texas Tech University Health Sciences Center'),
(106704, 87514, 'en', 'name', 'Government of Hong Kong'),
(106705, 87514, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½é¦™ęøÆē‰¹åˆ«č”Œę”æåŒŗę”æåŗœ'),
(106706, 87515, 'en', 'name', 'Penn State Brandywine'),
(106707, 87516, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ų±ŁˆŁŠŁŠŁ†'),
(106708, 87516, 'fr', 'name', 'UniversitƩ Al Quaraouiyine'),
(106709, 87516, 'no_lang_code', 'name', 'University of al-Qarawiyyin'),
(106710, 87517, 'en', 'name', 'Royal Town Planning Institute'),
(106711, 87518, 'en', 'name', 'Finnish Cardiac Society'),
(106712, 87518, 'fi', 'name', 'Suomen Kardiologinen Seura'),
(106713, 87519, 'en', 'name', 'Society for Leukocyte Biology'),
(106714, 87520, 'en', 'name', 'Texas Tech University'),
(106715, 87521, 'fr', 'name', 'Laboratoires Servier'),
(106716, 87521, 'no_lang_code', 'name', 'Servier (France)'),
(106717, 87522, 'de', 'name', 'DGPro, Deutsche Gesellschaft für Prothetische Zahnmedizin und Biomaterialien'),
(106718, 87523, 'no_lang_code', 'name', 'Intas Pharmaceuticals (India)'),
(106719, 87524, 'en', 'name', 'Royal New Zealand College of General Practitioners'),
(106720, 87525, 'en', 'name', 'First Hospital of Jilin University'),
(106721, 87525, 'zh', 'name', 'å‰ęž—å¤§å­¦ē¬¬äø€åŒ»é™¢'),
(106722, 87526, 'en', 'name', 'Infant Foundation'),
(106723, 87526, 'es', 'name', 'Fundación INFANT'),
(106724, 87527, 'en', 'name', 'Africa Health Research Institute'),
(106725, 87528, 'es', 'name', 'Universidad del Valle'),
(106726, 87529, 'en', 'name', 'Digestive Health Research Institute'),
(106727, 87529, 'fr', 'name', 'Institut de Recherche en SantƩ Digestive'),
(106728, 87530, 'no_lang_code', 'name', 'Selex ES (Germany)'),
(106729, 87531, 'no_lang_code', 'name', 'Madrigal Pharmaceuticals (United States)'),
(106730, 87532, 'de', 'name', 'Helmholtz-Institut Ulm'),
(106731, 87532, 'en', 'name', 'Helmholtz-Institute Ulm'),
(106732, 87533, 'fr', 'name', 'Plan Bleu'),
(106733, 87534, 'en', 'name', 'Chatham House'),
(106734, 87535, 'en', 'name', 'University Hospital'),
(106735, 87536, 'en', 'name', 'George Washington University Museum'),
(106736, 87537, 'de', 'name', 'LehrkrankenhƤuser'),
(106737, 87538, 'hy', 'name', 'Õ„Õ„Õ½Ö€ÕøÕŗ ՄՔշտոցի Õ”Õ¶Õ¾Õ”Õ¶ Õ°Õ«Õ¶ Õ±Õ„Õ¼Õ”Õ£Ö€Õ„Ö€Õ« Õ«Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(106738, 87538, 'no_lang_code', 'name', 'Matenadaran'),
(106739, 87539, 'en', 'name', 'Art Institute of New York'),
(106740, 87540, 'en', 'name', 'MRC Anatomical Neuropharmacology Unit'),
(106741, 87541, 'fr', 'name', 'HƓpital Rangueil'),
(106742, 87542, 'no_lang_code', 'name', 'Kinetics Technology (Italy)'),
(106743, 87543, 'de', 'name', 'Hochschule für Angewandte Sprachen, Sprachen & Dolmetscher Institut München'),
(106744, 87544, 'en', 'name', 'Avila College'),
(106745, 87545, 'en', 'name', 'Koryo International College'),
(106746, 87545, 'ja', 'name', 'å…‰é™µå„³å­ēŸ­ęœŸå¤§å­¦'),
(106747, 87546, 'en', 'name', 'International Institute of Tropical Agriculture'),
(106748, 87547, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ…ŁŠŲ§Ų·'),
(106749, 87547, 'en', 'name', 'Damietta University'),
(106750, 87548, 'en', 'name', 'Tongren University'),
(106751, 87548, 'zh', 'name', '铜仁大学'),
(106752, 87549, 'en', 'name', 'Nordic Energy Research'),
(106753, 87550, 'ja', 'name', 'č–ęÆå„³å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(106754, 87550, 'no_lang_code', 'name', 'Seibo Jogakuin Junior College'),
(106755, 87551, 'en', 'name', 'Tokyo Polytechnic University'),
(106756, 87551, 'ja', 'name', 'ę±äŗ¬å·„čŠøå¤§å­¦'),
(106757, 87552, 'no_lang_code', 'name', 'Saudi Aramco (United States)'),
(106758, 87553, 'no_lang_code', 'name', 'Acoustic MedSystems'),
(106759, 87554, 'no_lang_code', 'name', 'Evercyte (Austria)'),
(106760, 87555, 'en', 'name', 'Texas Tech University'),
(106761, 87556, 'de', 'name', 'UniversitƤtsklinikum Jena'),
(106762, 87556, 'en', 'name', 'Jena University Hospital'),
(106763, 87557, 'en', 'name', 'Edward Mallinckrodt Jr. Foundation'),
(106764, 87558, 'en', 'name', 'Acquired Brain Injury Ireland'),
(106765, 87559, 'en', 'name', 'Shionogi Institute For Medical Science'),
(106766, 87560, 'en', 'name', 'Housing Research Foundation'),
(106767, 87560, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä½ē·ē ”'),
(106768, 87561, 'en', 'name', 'Japan Surgical Society'),
(106769, 87561, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å¤–ē§‘å­¦ä¼š'),
(106770, 87562, 'en', 'name', 'Brightlands Materials Center'),
(106771, 87563, 'en', 'name', 'Ruppin Academic Center'),
(106772, 87563, 'he', 'name', '×”×ž×Ø×›×– האקדמי ×Ø×•×¤×™×Ÿ'),
(106773, 87564, 'en', 'name', 'Gnanamani College of Technology'),
(106774, 87565, 'en', 'name', 'James N. Kirby Foundation'),
(106775, 87566, 'no_lang_code', 'name', 'Novarex (South Korea)'),
(106776, 87567, 'no_lang_code', 'name', 'Scientific Systems (United States)'),
(106777, 87568, 'ko', 'name', 'ģ—ģŠ¤ģ¼€ģ“ź·øė£¹'),
(106778, 87568, 'no_lang_code', 'name', 'SK Group (South Korea)'),
(106779, 87569, 'en', 'name', 'Ministry of Livestock Development and Fisheries, Tanzania, Ministry of Livestock and Fisheries'),
(106780, 87569, 'sw', 'name', 'Wizara ya Mifugo na Uvuvi'),
(106781, 87570, 'no_lang_code', 'name', 'Cambridge Energy Research Associates'),
(106782, 87571, 'no_lang_code', 'name', 'Ferd (Norway)'),
(106783, 87572, 'en', 'name', 'Foundation of Hope'),
(106784, 87573, 'en', 'name', 'PLA Navy General Hospital'),
(106785, 87574, 'de', 'name', 'Bundesministerium für Arbeit und Soziales'),
(106786, 87574, 'en', 'name', 'Federal Ministry of Labour and Social Affairs'),
(106787, 87575, 'de', 'name', 'Europäisches Institut für Multidisziplinäre Studien zu Menschenrechten und Wissenschaften - Knowmad Institut'),
(106788, 87575, 'en', 'name', 'European Institute for Multidisciplinary Studies on Human Rights and Science - Knowmad Institut'),
(106789, 87575, 'es', 'name', 'Instituto Europeo de Estudios Multidisciplinarios sobre Derechos Humanos y Ciencias - Knowmad Institut'),
(106790, 87576, 'en', 'name', 'The Arrhythmia Institute'),
(106791, 87577, 'en', 'name', 'Dioraphte Foundation'),
(106792, 87577, 'nl', 'name', 'Stichting Dioraphte'),
(106793, 87578, 'no_lang_code', 'name', 'Eurovia (Czechia)'),
(106794, 87579, 'no_lang_code', 'name', 'Alberta Pacific Forest Industries'),
(106795, 87580, 'en', 'name', 'Foundation for the Promotion of Ion Engineering'),
(106796, 87581, 'en', 'name', 'Webster University'),
(106797, 87582, 'en', 'name', 'Argosy University'),
(106798, 87583, 'no_lang_code', 'name', 'Applied Biomathematics (United States)'),
(106799, 87584, 'en', 'name', 'Society for Adolescent Health and Medicine'),
(106800, 87585, 'ja', 'name', '至学館大学'),
(106801, 87585, 'no_lang_code', 'name', 'Shigakkan University'),
(106802, 87586, 'no_lang_code', 'name', 'Isles'),
(106803, 87587, 'pt', 'name', 'Fundação Escola de Sociologia e Política de São Paulo'),
(106804, 87588, 'en', 'name', 'Centre for Applied Science and Technology'),
(106805, 87589, 'en', 'name', 'China Academy of Building Research'),
(106806, 87589, 'zh', 'name', '中国建筑科学研究院'),
(106807, 87590, 'en', 'name', 'Analysis & Policy Observatory'),
(106808, 87591, 'en', 'name', 'Darwin College'),
(106809, 87592, 'en', 'name', 'Kathmandu University'),
(106810, 87592, 'ne', 'name', 'ą¤•ą¤¾ą¤ ą¤®ą¤¾ą¤”ą„Œą¤‚ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(106811, 87593, 'en', 'name', 'International University of Professional Studies'),
(106812, 87594, 'en', 'name', 'National Quemoy University'),
(106813, 87594, 'zh', 'name', 'åœ‹ē«‹é‡‘é–€å¤§å­ø'),
(106814, 87595, 'en', 'name', 'Wuhan Union Hospital'),
(106815, 87595, 'zh', 'name', 'ę­¦ę±‰åå’ŒåŒ»é™¢'),
(106816, 87596, 'en', 'name', 'Covenant HealthCare'),
(106817, 87597, 'en', 'name', 'DOEN Foundation'),
(106818, 87597, 'nl', 'name', 'Stichting DOEN'),
(106819, 87598, 'en', 'name', 'POSCO TJ Park Foundation'),
(106820, 87599, 'fr', 'name', 'Centre Hospitalier Universitaire de Martinique'),
(106821, 87600, 'en', 'name', 'Texas Tech University'),
(106822, 87601, 'en', 'name', 'South African National Parks'),
(106823, 87602, 'en', 'name', 'Southern Medical University Shenzhen Hospital'),
(106824, 87602, 'zh', 'name', 'å—ę–¹åŒ»ē§‘å¤§å­¦ę·±åœ³åŒ»é™¢'),
(106825, 87603, 'no_lang_code', 'name', 'Glenmark Pharmaceuticals (India)'),
(106826, 87604, 'en', 'name', 'Asia School of Business'),
(106827, 87605, 'en', 'name', 'Iranian National Institute for Oceanography and Atmospheric Science'),
(106828, 87605, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł…Ł„ŪŒ Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų“Ł†Ų§Ų³ŪŒ و Ų¹Ł„ŁˆŁ… جوی'),
(106829, 87606, 'en', 'name', 'Art Institute of Fort Worth'),
(106830, 87607, 'en', 'name', 'Jingchu University of Technology'),
(106831, 87608, 'en', 'name', 'Conservation Science Partners'),
(106832, 87609, 'en', 'name', 'Amsterdam Institute for Global Health and Development'),
(106833, 87610, 'en', 'name', 'Wayside Youth And Family Support Network'),
(106834, 87611, 'en', 'name', 'University Heights, Newark'),
(106835, 87612, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗēŸ³ę²¹å­¦ä¼š'),
(106836, 87612, 'no_lang_code', 'name', 'Japan Petroleum Institute'),
(106837, 87613, 'en', 'name', 'Canadian Paediatric Society'),
(106838, 87613, 'fr', 'name', 'SociƩtƩ Canadienne de PƩdiatrie'),
(106839, 87614, 'ja', 'name', '学習院大学'),
(106840, 87614, 'no_lang_code', 'name', 'Gakushuin University'),
(106841, 87615, 'en', 'name', 'SRM University'),
(106842, 87616, 'en', 'name', 'Friends Together'),
(106843, 87617, 'en', 'name', 'Lamar State College–Orange'),
(106844, 87618, 'en', 'name', 'Zabol University of Medical Sciences'),
(106845, 87618, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų²Ų§ŲØŁ„'),
(106846, 87619, 'no_lang_code', 'name', '3D Reid (United Kingdom)'),
(106847, 87620, 'en', 'name', 'Organization for Autism Research'),
(106848, 87621, 'en', 'name', 'Yangon School of Political Science'),
(106849, 87622, 'en', 'name', 'Center for Humans and Nature'),
(106850, 87623, 'en', 'name', 'Otterbein University'),
(106851, 87624, 'en', 'name', 'Physicians'' Services Incorporated Foundation'),
(106852, 87625, 'no_lang_code', 'name', 'Otto Fuchs (Germany)'),
(106853, 87626, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المثنى'),
(106854, 87626, 'en', 'name', 'Al-Muthanna University'),
(106855, 87627, 'no_lang_code', 'name', 'Bennett Aerospace (United States)'),
(106856, 87628, 'de', 'name', 'Deutsche MigrƤne- und Kopfschmerzgesellschaft'),
(106857, 87629, 'en', 'name', 'Liupanshui Normal University'),
(106858, 87630, 'no_lang_code', 'name', 'Lero'),
(106859, 87631, 'en', 'name', 'SzƔzadvƩg Foundation'),
(106860, 87632, 'no_lang_code', 'name', 'Deciphera Pharmaceuticals (United States)'),
(106861, 87633, 'no_lang_code', 'name', 'Nishinippon Shimbun'),
(106862, 87634, 'bn', 'name', 'ইবাইস ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(106863, 87634, 'en', 'name', 'IBAIS University'),
(106864, 87635, 'en', 'name', 'ALS Therapy Alliance'),
(106865, 87636, 'en', 'name', 'Rebecca L. Cooper Medical Research Foundation'),
(106866, 87637, 'no_lang_code', 'name', 'Pharmadrome (United Kingdom)'),
(106867, 87638, 'no_lang_code', 'name', 'Wanhua Chemical (China)'),
(106868, 87638, 'zh', 'name', 'äø‡åŽåŒ–å­¦'),
(106869, 87639, 'no_lang_code', 'name', 'Dominion (United States)'),
(106870, 87640, 'en', 'name', 'Miami University Hamilton'),
(106871, 87641, 'en', 'name', 'Southwestern Medical Foundation'),
(106872, 87642, 'en', 'name', 'International Society for Magnetic Resonance in Medicine'),
(106873, 87643, 'no_lang_code', 'name', 'EnergyNest (Norway)'),
(106874, 87644, 'en', 'name', 'Art Institute of Charleston'),
(106875, 87645, 'en', 'name', 'Australian Society for Antimicrobials'),
(106876, 87646, 'no_lang_code', 'name', 'Wiener Linien'),
(106877, 87647, 'en', 'name', 'Institute on Aging'),
(106878, 87648, 'en', 'name', 'Association for Japanese-Language Teaching'),
(106879, 87648, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗ å›½éš›ę—„ęœ¬čŖžę™®åŠå”ä¼š'),
(106880, 87649, 'hu', 'name', 'Kőrƶsi Csoma TĆ”rsasĆ”g'),
(106881, 87650, 'no_lang_code', 'name', 'Overseas Shipholding Group (United States)'),
(106882, 87651, 'no_lang_code', 'name', 'Geno Global (Norway)'),
(106883, 87652, 'no_lang_code', 'name', 'Vanda Pharmaceuticals (United States)'),
(106884, 87653, 'en', 'name', 'China Institute Of Communications'),
(106885, 87653, 'zh', 'name', 'äø­å›½é€šäæ”å­¦ä¼š'),
(106886, 87654, 'en', 'name', 'Genesis Oncology Trust'),
(106887, 87655, 'fi', 'name', 'SeinƤjoen Keskussairaala'),
(106888, 87656, 'en', 'name', 'University of Wisconsin–Stevens Point at Wausau'),
(106889, 87657, 'en', 'name', 'Mineral Resources'),
(106890, 87658, 'it', 'name', 'Associazione Genitori Contro le Leucemie e Tumori Infantili'),
(106891, 87659, 'no_lang_code', 'name', 'Orbus Therapeutics (United States)'),
(106892, 87660, 'no_lang_code', 'name', 'Mylan (India)'),
(106893, 87661, 'no_lang_code', 'name', 'Nanosphere (United States)'),
(106894, 87662, 'it', 'name', 'Regione Puglia'),
(106895, 87663, 'en', 'name', 'Finnish Geodetic Institute'),
(106896, 87664, 'ja', 'name', 'ćƒŸćƒ„ćƒŸé›»ę©Ÿę Ŗå¼ä¼šē¤¾'),
(106897, 87664, 'no_lang_code', 'name', 'Mitsumi Electric (Japan)'),
(106898, 87665, 'no_lang_code', 'name', 'MedicaSafe (United States)'),
(106899, 87666, 'en', 'name', 'International Food Policy Research Institute'),
(106900, 87667, 'de', 'name', 'Leibniz-Institut für Ost- und Südosteuropaforschung'),
(106901, 87667, 'en', 'name', 'Leibniz Institute for East and Southeast European Studies'),
(106902, 87668, 'en', 'name', 'Connecticut State University System'),
(106903, 87669, 'en', 'name', 'Japan Food Chemical Research Foundation'),
(106904, 87669, 'ja', 'name', 'ę—„ęœ¬é£Ÿå“åŒ–å­¦ē ”ē©¶č²”å›£'),
(106905, 87670, 'en', 'name', 'Informatics and Business Institute Darmajaya'),
(106906, 87670, 'id', 'name', 'Institut Informatika Dan Bisnis Darmajaya'),
(106907, 87671, 'no_lang_code', 'name', 'Topsoe Fuel Cell (Denmark)'),
(106908, 87672, 'en', 'name', 'Art Institutes International Minnesota'),
(106909, 87673, 'en', 'name', 'British Mass Spectrometry Society'),
(106910, 87674, 'en', 'name', 'Technological Corporation of Andalusia'),
(106911, 87674, 'es', 'name', 'Corporación Tecnológica de Andalucía'),
(106912, 87675, 'en', 'name', 'Foundation for European Progressive Studies'),
(106913, 87676, 'en', 'name', 'Brain & Behavior Research Foundation'),
(106914, 87677, 'no_lang_code', 'name', 'Theravance Biopharma (United States)'),
(106915, 87678, 'en', 'name', 'Elton John AIDS Foundation'),
(106916, 87679, 'en', 'name', 'Far Eastern State University of Humanities'),
(106917, 87680, 'en', 'name', 'Asian Eye Institute'),
(106918, 87681, 'fr', 'name', 'Institut des MolƩcules et MatƩriaux du Mans'),
(106919, 87682, 'en', 'name', 'Moscow State Pedagogical University'),
(106920, 87682, 'ru', 'name', 'Московский пеГагогический Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(106921, 87683, 'en', 'name', 'Biocenter Finland'),
(106922, 87684, 'en', 'name', 'Arthritis National Research Foundation'),
(106923, 87685, 'en', 'name', 'Sidra Medical and Research Center'),
(106924, 87686, 'no_lang_code', 'name', 'Fiskevegn (Norway)'),
(106925, 87687, 'no_lang_code', 'name', 'Reinnervate (United Kingdom)'),
(106926, 87688, 'en', 'name', 'John Wesley Community Health Institute'),
(106927, 87689, 'en', 'name', 'Phoenix Children''s Hospital'),
(106928, 87690, 'en', 'name', 'Danang Architecture University'),
(106929, 87690, 'vi', 'name', 'ĐẔi hį»c Kiįŗæn trĆŗc ĐƠ Nįŗµng'),
(106930, 87691, 'de', 'name', 'Hochschule für Bildende Künste Braunschweig'),
(106931, 87691, 'en', 'name', 'Braunschweig University of Art'),
(106932, 87692, 'de', 'name', 'Krankenhaus der Barmherzigen Schwestern Ried'),
(106933, 87693, 'en', 'name', 'Embry–Riddle Aeronautical University'),
(106934, 87694, 'en', 'name', 'Long Island Community Foundation'),
(106935, 87695, 'en', 'name', 'Volodymyr Dahl East Ukrainian National University'),
(106936, 87695, 'pl', 'name', 'Wschodnioukraiński Uniwersytet Narodowy im. Wołodymyra Dala'),
(106937, 87695, 'ru', 'name', 'Š’Š¾ŃŃ‚Š¾Ń‡Š½Š¾ŃƒŠŗŃ€Š°ŠøŠ½ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени ВлаГимира Š”Š°Š»Ń'),
(106938, 87695, 'uk', 'name', 'Š”Ń…Ń–Š“Š½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВолоГимира Š”Š°Š»Ń'),
(106939, 87696, 'sv', 'name', 'K. Albin Johanssons stiftelse'),
(106940, 87697, 'de', 'name', 'Max Planck Institut für Multidisziplinäre Naturwissenschaften'),
(106941, 87697, 'en', 'name', 'Max Planck Institute for Multidisciplinary Sciences'),
(106942, 87698, 'no_lang_code', 'name', 'SCImago Research Group'),
(106943, 87699, 'es', 'name', 'Corporacion Biotec'),
(106944, 87700, 'en', 'name', 'Ministry of Agriculture, Nature and Food Quality'),
(106945, 87700, 'nl', 'name', 'Ministerie van Landbouw, Natuur en Voedselkwaliteit'),
(106946, 87701, 'no_lang_code', 'name', 'Silicon Austria Labs (Austria)'),
(106947, 87702, 'en', 'name', 'Mining Association of Canada'),
(106948, 87702, 'fr', 'name', 'Association miniĆØre du Canada'),
(106949, 87703, 'no_lang_code', 'name', 'Jaguar Land Rover (United Kingdom)'),
(106950, 87704, 'no_lang_code', 'name', 'Ciro'),
(106951, 87705, 'en', 'name', 'International Crane Foundation'),
(106952, 87706, 'en', 'name', 'Interdisciplinary Institute for BroadBand Technology'),
(106953, 87706, 'nl', 'name', 'iMinds'),
(106954, 87707, 'en', 'name', 'Department for Education and Child Development'),
(106955, 87708, 'en', 'name', 'Public Library of Science'),
(106956, 87709, 'ar', 'name', 'Ų§Ł„Ł…ŁƒŲŖŲØŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© في Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„ā€Ž'),
(106957, 87709, 'en', 'name', 'National Library of Israel'),
(106958, 87709, 'he', 'name', 'ההפרייה ×”×œ××•×ž×™×Ŗ'),
(106959, 87710, 'no_lang_code', 'name', 'Inventiva (France)'),
(106960, 87711, 'en', 'name', 'Finnish Dental Association'),
(106961, 87711, 'fi', 'name', 'Suomen HammaslƤƤkƤriliitto'),
(106962, 87712, 'en', 'name', 'Surfrider Foundation'),
(106963, 87713, 'no_lang_code', 'name', 'Displaytech Incorporated'),
(106964, 87714, 'en', 'name', 'Education Endowment Foundation'),
(106965, 87715, 'en', 'name', 'Ministry of Rural Development'),
(106966, 87716, 'en', 'name', 'Sonoran Spine Research and Education Foundation'),
(106967, 87717, 'en', 'name', 'Council for the Central Laboratory of the Research Councils'),
(106968, 87718, 'en', 'name', 'Johns Hopkins Center for Communication Programs'),
(106969, 87719, 'no_lang_code', 'name', 'OM Group (Germany)'),
(106970, 87720, 'en', 'name', 'National University'),
(106971, 87721, 'en', 'name', 'Centre For Cold Ocean Resources Engineering'),
(106972, 87722, 'no_lang_code', 'name', 'Turbomeca (France)'),
(106973, 87723, 'no_lang_code', 'name', 'Beckman Coulter (United Kingdom)'),
(106974, 87724, 'en', 'name', 'Batumi State Maritime Academy'),
(106975, 87724, 'ka', 'name', 'įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ”įƒįƒ–įƒ¦įƒ•įƒįƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(106976, 87725, 'no_lang_code', 'name', 'Dow Wolff Cellulosics (United States)'),
(106977, 87726, 'en', 'name', 'George S. and Dolores Dore Eccles Foundation'),
(106978, 87727, 'no_lang_code', 'name', 'Andromed (Netherlands)'),
(106979, 87728, 'en', 'name', 'Wild Blueberry Producers Association of Nova Scotia'),
(106980, 87729, 'no_lang_code', 'name', 'CytomX Therapeutics (United States)'),
(106981, 87730, 'no_lang_code', 'name', 'GeneTex (United States)'),
(106982, 87731, 'en', 'name', 'Papua New Guinea University of Natural Resources and Environment'),
(106983, 87732, 'no_lang_code', 'name', 'Strafica (Finland)'),
(106984, 87733, 'en', 'name', 'Mexican Academy of Sciences'),
(106985, 87733, 'es', 'name', 'Academia Mexicana de Ciencias'),
(106986, 87734, 'en', 'name', 'National Computer Facilities'),
(106987, 87734, 'nl', 'name', 'Stichting Nationale Computerfaciliteiten'),
(106988, 87735, 'en', 'name', 'Akrofi-Christaller Institute of Theology, Mission and Culture'),
(106989, 87736, 'en', 'name', 'Isabela State University'),
(106990, 87737, 'en', 'name', 'Maritime Museum of San Diego'),
(106991, 87738, 'en', 'name', 'Saint Petersburg Art and Industry Academy'),
(106992, 87738, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š½Š¾-ŠæŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени А.Š›. Штиглица'),
(106993, 87739, 'en', 'name', 'Brittle Bone Society'),
(106994, 87740, 'en', 'name', 'Institute of Behavioral Sciences'),
(106995, 87740, 'ja', 'name', 'č”Œå‹•ē§‘å­¦ē ”ē©¶ę‰€'),
(106996, 87741, 'no_lang_code', 'name', 'Haldor Topsoe (Denmark)'),
(106997, 87742, 'es', 'name', 'Escuela Campo Alegre'),
(106998, 87743, 'en', 'name', 'Shaanxi Polytechnic Institute'),
(106999, 87743, 'zh', 'name', '陕脿理巄学院'),
(107000, 87744, 'en', 'name', 'National Health Insurance Service Ilsan Hospital'),
(107001, 87744, 'ko', 'name', 'źµ­ėÆ¼ź±“ź°•ė³“ķ—˜ ģ¼ģ‚°ė³‘ģ›'),
(107002, 87745, 'no_lang_code', 'name', 'Airgas (United States)'),
(107003, 87746, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الحسن Ų§Ł„Ų£ŁˆŁ„ Ų³Ų·Ų§ŲŖ'),
(107004, 87746, 'fr', 'name', 'UniversitƩ Hassan 1er'),
(107005, 87747, 'en', 'name', 'Hebrew Union College - Jewish Institute of Religion'),
(107006, 87748, 'en', 'name', 'Bennett College'),
(107007, 87749, 'en', 'name', 'Hokkaido Red Cross Blood Center'),
(107008, 87749, 'ja', 'name', 'åŒ—ęµ·é“čµ¤åå­—č”€ę¶²ć‚»ćƒ³ć‚æćƒ¼'),
(107009, 87750, 'en', 'name', 'International Collaboration On Repair Discoveries'),
(107010, 87751, 'no_lang_code', 'name', 'CRM Group (Belgium)'),
(107011, 87752, 'en', 'name', 'Threepenny Review'),
(107012, 87753, 'en', 'name', 'Biomedical Research Network Center for Liver and Digestive Diseases'),
(107013, 87753, 'es', 'name', 'Centro de Investigación Biomédica en Red de Enfermedades HepÔticas y Digestivas'),
(107014, 87754, 'no_lang_code', 'name', 'Chatten Associates (United States)'),
(107015, 87755, 'de', 'name', 'Lars-Hierta-GedƤchtnis-Stiftung'),
(107016, 87755, 'en', 'name', 'Lars Hierta Memorial Foundation'),
(107017, 87755, 'fr', 'name', 'La Fondation Ć  la Memoire de Lars Hierta'),
(107018, 87756, 'en', 'name', 'Khon Kaen University'),
(107019, 87756, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø‚ąø­ąø™ą¹ąøą¹ˆąø™'),
(107020, 87757, 'en', 'name', 'Wilson Ornithological Society'),
(107021, 87758, 'en', 'name', 'Psychonomic Society'),
(107022, 87759, 'en', 'name', 'Scottish Aquaculture Innovation Centre'),
(107023, 87760, 'en', 'name', 'World Congress of Science and Factual Producers'),
(107024, 87761, 'en', 'name', 'BlueCrest University College'),
(107025, 87762, 'en', 'name', 'Pegaso University'),
(107026, 87762, 'it', 'name', 'UniversitĆ  degli Studi Pegaso'),
(107027, 87763, 'en', 'name', 'Yamaguchi University'),
(107028, 87763, 'ja', 'name', '山口大学'),
(107029, 87764, 'en', 'name', 'American Mosquito Control Association'),
(107030, 87765, 'en', 'name', 'Croatian Academy of Sciences and Arts'),
(107031, 87765, 'hr', 'name', 'Hrvatska akademija znanosti i umjetnosti'),
(107032, 87766, 'de', 'name', 'IST-Hochschule für Management'),
(107033, 87767, 'no_lang_code', 'name', 'Nortel (United Kingdom)'),
(107034, 87768, 'en', 'name', 'University of Wisconsin–Platteville Richland'),
(107035, 87768, 'fr', 'name', 'UniversitƩ du wisconsin Ơ richland center');
INSERT INTO `ror_settings` VALUES
(107036, 87769, 'en', 'name', 'Brighton and Hove City Council'),
(107037, 87770, 'no_lang_code', 'name', 'Quanta Computer (Taiwan)'),
(107038, 87770, 'zh', 'name', '廣達電腦'),
(107039, 87771, 'en', 'name', 'Children''s Minnesota'),
(107040, 87772, 'en', 'name', 'The Sumners Foundation'),
(107041, 87773, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± Ł…Ų­Ł…ŲÆ بن فهد'),
(107042, 87773, 'en', 'name', 'Prince Mohammad bin Fahd University'),
(107043, 87774, 'en', 'name', 'Penn State Altoona'),
(107044, 87775, 'en', 'name', 'Florida Education Fund'),
(107045, 87776, 'en', 'name', 'Valencia Catholic University Saint Vincent Martyr'),
(107046, 87776, 'es', 'name', 'Universidad Católica de Valencia San Vicente MÔrtir'),
(107047, 87777, 'en', 'name', 'Indonesian Institute of Sciences'),
(107048, 87777, 'id', 'name', 'Lembaga Ilmu Pengetahuan Indonesia'),
(107049, 87778, 'en', 'name', 'College of Mount Saint Vincent'),
(107050, 87779, 'en', 'name', 'Animal Cancer Foundation'),
(107051, 87780, 'pl', 'name', 'Szkoła Wyższa Prawa i Dyplomacji w Gdyni'),
(107052, 87781, 'en', 'name', 'Bournemouth Hospital'),
(107053, 87782, 'en', 'name', 'Kaohsiung Municipal Ta-Tung Hospital'),
(107054, 87782, 'zh', 'name', 'é«˜é›„åø‚ē«‹å¤§åŒé†«é™¢'),
(107055, 87783, 'en', 'name', 'Anderson County Library System'),
(107056, 87784, 'en', 'name', 'Michael & Associates'),
(107057, 87785, 'en', 'name', 'Southwest Forestry University'),
(107058, 87785, 'zh', 'name', 'č„æå—ęž—äøšå¤§å­¦'),
(107059, 87786, 'en', 'name', 'JMIR Publications'),
(107060, 87787, 'en', 'name', 'All Ways Up Foundation'),
(107061, 87788, 'en', 'name', 'American Society for Photobiology'),
(107062, 87789, 'no_lang_code', 'name', 'Ahold (Netherlands)'),
(107063, 87790, 'no_lang_code', 'name', 'Leica Microsystems (Switzerland)'),
(107064, 87791, 'no_lang_code', 'name', 'The Medicines Company (Switzerland)'),
(107065, 87792, 'en', 'name', 'Washington Department of Fish and Wildlife'),
(107066, 87793, 'no_lang_code', 'name', 'Areva (United Kingdom)'),
(107067, 87794, 'no_lang_code', 'name', 'Modular Genetics (United States)'),
(107068, 87795, 'no', 'name', 'Nasjonalforeningen for Folkehelsen'),
(107069, 87796, 'en', 'name', 'Luther College'),
(107070, 87797, 'no_lang_code', 'name', 'OvaScience (United States)'),
(107071, 87798, 'en', 'name', 'Republic of Turkey Ministry of Health'),
(107072, 87799, 'ar', 'name', 'وزارة الدفاع'),
(107073, 87799, 'en', 'name', 'Ministry of Defense'),
(107074, 87800, 'en', 'name', 'Swedish Species Information Centre'),
(107075, 87801, 'en', 'name', 'Centre for Clinical Research in Neuropsychiatry'),
(107076, 87802, 'en', 'name', 'Association for Science Education'),
(107077, 87803, 'en', 'name', 'Tenth People''s Hospital of Tongji University'),
(107078, 87804, 'en', 'name', 'Institute for Health Economics and Policy'),
(107079, 87805, 'en', 'name', 'Oregon Health & Science University School of Medicine'),
(107080, 87806, 'no_lang_code', 'name', 'Tomegavax (United States)'),
(107081, 87807, 'en', 'name', 'Bruegel'),
(107082, 87808, 'de', 'name', 'Max-Planck-Institut für Biophysikalische Chemie'),
(107083, 87808, 'en', 'name', 'Max Planck Institute for Biophysical Chemistry'),
(107084, 87809, 'en', 'name', 'Institute of Health Economics'),
(107085, 87810, 'en', 'name', 'Southern Education Foundation'),
(107086, 87811, 'no_lang_code', 'name', 'Mocon (United States)'),
(107087, 87812, 'en', 'name', 'Loras College'),
(107088, 87813, 'en', 'name', 'Metastatic Breast Cancer Network'),
(107089, 87814, 'en', 'name', 'Arthritis Health Professions Association'),
(107090, 87815, 'en', 'name', 'National Institute of Animal Nutrition and Physiology'),
(107091, 87816, 'es', 'name', 'Sociedad Andaluza de Medicina Familiar y Comunitaria'),
(107092, 87817, 'no_lang_code', 'name', 'Scientific Methods (United States)'),
(107093, 87818, 'en', 'name', 'International Union of Radio Science'),
(107094, 87818, 'fr', 'name', 'Union Radio-Scientifique Internationale'),
(107095, 87819, 'en', 'name', 'FPT University'),
(107096, 87819, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c FPT'),
(107097, 87820, 'no_lang_code', 'name', 'Stepan (United States)'),
(107098, 87821, 'fr', 'name', 'Haute Ɖcole de Travail Social et de la SantĆ©'),
(107099, 87822, 'en', 'name', 'National Socio-Environmental Synthesis Center'),
(107100, 87823, 'de', 'name', 'AIO Studien gGmbH'),
(107101, 87824, 'en', 'name', 'Hamad bin Khalifa University'),
(107102, 87825, 'en', 'name', 'Claremont University Consortium'),
(107103, 87826, 'en', 'name', 'Torbat Heydarieh University of Medical Sciences'),
(107104, 87826, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ŲŖŲ±ŲØŲŖ Ų­ŪŒŲÆŲ±ŪŒŁ‡'),
(107105, 87827, 'en', 'name', 'Saastamoinen Foundation'),
(107106, 87828, 'en', 'name', 'Finnish Dental Society Apollonia'),
(107107, 87828, 'fi', 'name', 'Suomen HammaslƤƤkƤriseura Apollonia'),
(107108, 87829, 'no_lang_code', 'name', 'Fisher & Paykel Healthcare (New Zealand)'),
(107109, 87830, 'fr', 'name', 'MinistĆØre des Relations Internationales et de la Francophonie'),
(107110, 87831, 'en', 'name', 'APC Microbiome Institute'),
(107111, 87832, 'en', 'name', 'Baise University'),
(107112, 87832, 'zh', 'name', '百色学院'),
(107113, 87833, 'en', 'name', 'Henan Provincial People''s Hospital'),
(107114, 87833, 'zh', 'name', 'ę²³å—ēœäŗŗę°‘åŒ»é™¢'),
(107115, 87834, 'en', 'name', 'National Treasury'),
(107116, 87835, 'no_lang_code', 'name', 'Separation Systems (United States)'),
(107117, 87836, 'en', 'name', 'Energy Institute'),
(107118, 87837, 'en', 'name', 'Ghana Education Trust Fund'),
(107119, 87838, 'no_lang_code', 'name', 'Handan College'),
(107120, 87838, 'zh', 'name', 'é‚Æéƒøå­¦é™¢'),
(107121, 87839, 'pt', 'name', 'Hospital Oftalmologico de BrasĆ­lia'),
(107122, 87840, 'no_lang_code', 'name', 'Dendreon (United States)'),
(107123, 87841, 'en', 'name', 'Vincent Wildlife Trust'),
(107124, 87842, 'nl', 'name', 'Nationaal Fonds Geestelijke Volksgezondheid'),
(107125, 87843, 'no_lang_code', 'name', 'Maney Publishing (United Kingdom)'),
(107126, 87844, 'de', 'name', 'Museum für Naturkunde Chemnitz'),
(107127, 87845, 'no_lang_code', 'name', 'Alcatel-Lucent (United Kingdom)'),
(107128, 87846, 'en', 'name', 'History of Science Society'),
(107129, 87847, 'en', 'name', 'Watson-Brown Foundation'),
(107130, 87848, 'en', 'name', 'Beckley Foundation'),
(107131, 87849, 'en', 'name', 'American Society of Anesthesiologists'),
(107132, 87850, 'no_lang_code', 'name', 'Scania (Sweden)'),
(107133, 87851, 'en', 'name', 'Tennessee Department of Transportation'),
(107134, 87852, 'en', 'name', 'University of Wisconsin–Marshfield Wood County'),
(107135, 87853, 'en', 'name', 'CVPath Institute'),
(107136, 87854, 'en', 'name', 'Swedish Collegium for Advanced Study'),
(107137, 87855, 'fr', 'name', 'Institut Universitaire de Cardiologie et de Pneumologie de QuƩbec'),
(107138, 87856, 'en', 'name', 'Southeast Asian Ministers of Education Organization'),
(107139, 87857, 'en', 'name', 'Gerber Foundation'),
(107140, 87858, 'en', 'name', 'Bowdoin College'),
(107141, 87859, 'no_lang_code', 'name', 'Ansell (Australia)'),
(107142, 87860, 'en', 'name', 'International Crops Research Institute for the Semi-Arid Tropics'),
(107143, 87861, 'no_lang_code', 'name', 'Muons (United States)'),
(107144, 87862, 'pt', 'name', 'Sociedade Brasileira Infectologia'),
(107145, 87863, 'de', 'name', 'Landesamt für Natur, Umwelt und Verbraucherschutz Nordrhein-Westfalen'),
(107146, 87864, 'en', 'name', 'Innovate Washington Foundation'),
(107147, 87865, 'en', 'name', 'Central American Technological University'),
(107148, 87865, 'es', 'name', 'Universidad Tecnológica Centroamericana'),
(107149, 87866, 'en', 'name', 'Paulo PicanƧo School of Dentistry'),
(107150, 87866, 'pt', 'name', 'Faculdade Paulo PicanƧo'),
(107151, 87867, 'en', 'name', 'National Graduate Institute for Policy Studies'),
(107152, 87867, 'ja', 'name', '政策研究大学院大学'),
(107153, 87868, 'en', 'name', 'NewYork–Presbyterian Hospital'),
(107154, 87869, 'en', 'name', 'Gunnison Valley Hospital'),
(107155, 87870, 'no_lang_code', 'name', 'Lenterra (United States)'),
(107156, 87871, 'en', 'name', 'NoVo Foundation'),
(107157, 87872, 'en', 'name', 'The Myositis Association'),
(107158, 87873, 'en', 'name', 'Chemical Heritage Foundation'),
(107159, 87874, 'en', 'name', 'FH Foundation'),
(107160, 87875, 'en', 'name', 'Xinjiang Production and Construction Corps'),
(107161, 87875, 'zh', 'name', 'ę–°ē–†ē”Ÿäŗ§å»ŗč®¾å…µå›¢'),
(107162, 87876, 'en', 'name', 'Thomas Young Centre'),
(107163, 87877, 'de', 'name', 'Klinik für Hautkrankheiten'),
(107164, 87878, 'en', 'name', 'All Talent Agency'),
(107165, 87879, 'en', 'name', 'International Council for the Exploration of the Sea'),
(107166, 87879, 'fr', 'name', 'Conseil International de l''Exploration de la Mer'),
(107167, 87880, 'en', 'name', 'Michael & Susan Dell Foundation'),
(107168, 87881, 'en', 'name', 'Royal Bank of Canada'),
(107169, 87881, 'fr', 'name', 'Banque Royale du Canada'),
(107170, 87882, 'en', 'name', 'QuƩbec Consortium for Drug Discovery'),
(107171, 87883, 'en', 'name', 'Hemophilia Foundation of Michigan'),
(107172, 87884, 'de', 'name', 'Leibniz-Institut für Agrarentwicklung in Transformationsökonomien'),
(107173, 87884, 'en', 'name', 'Leibniz Institute of Agricultural Development in Transition Economies'),
(107174, 87885, 'en', 'name', 'Thrasher Research Fund'),
(107175, 87886, 'en', 'name', 'MRC Centre'),
(107176, 87887, 'en', 'name', 'Norwegian Institute for Water Research'),
(107177, 87888, 'en', 'name', 'University of St. Augustine for Health Sciences'),
(107178, 87889, 'no_lang_code', 'name', 'Sonalysts (United States)'),
(107179, 87890, 'en', 'name', 'University of Tennessee Institute of Agriculture'),
(107180, 87891, 'en', 'name', 'Akita University'),
(107181, 87891, 'ja', 'name', '秋田大学'),
(107182, 87892, 'da', 'name', 'Kongelige Danske Videnskabernes Selskab'),
(107183, 87892, 'en', 'name', 'The Royal Danish Academy of Sciences and Letters'),
(107184, 87893, 'en', 'name', 'Evolving Earth Foundation'),
(107185, 87894, 'en', 'name', 'State Agency for Consumer and Health Protection'),
(107186, 87895, 'en', 'name', 'National Water Research Institute'),
(107187, 87896, 'en', 'name', 'Pontifical Catholic University of Minas Gerais'),
(107188, 87896, 'fr', 'name', 'UniversitƩ Pontificale Catholique du Minas Gerais'),
(107189, 87896, 'pt', 'name', 'Pontifícia Universidade Católica de Minas Gerais'),
(107190, 87897, 'en', 'name', 'Kay Kendall Leukaemia Fund'),
(107191, 87898, 'en', 'name', 'Issues Research'),
(107192, 87899, 'en', 'name', 'Society for Imaging Science and Technology'),
(107193, 87900, 'en', 'name', 'Institute of Psychology, Chinese Academy of Sciences'),
(107194, 87900, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åæƒē†ē ”ē©¶ę‰€'),
(107195, 87901, 'en', 'name', 'Association for Innovation and Biomedical Research on Light and Image'),
(107196, 87901, 'pt', 'name', 'Associação Para a Investigação Biomédica e Inovação Em Luz e Imagem'),
(107197, 87902, 'no_lang_code', 'name', 'Marine Acoustics (United States)'),
(107198, 87903, 'en', 'name', 'Foundation for Economic Education'),
(107199, 87903, 'fi', 'name', 'Liikesivistysrahasto'),
(107200, 87904, 'fr', 'name', 'Institut des Sciences Sociales du Politique'),
(107201, 87905, 'en', 'name', 'Loulou Foundation'),
(107202, 87906, 'en', 'name', 'Rwanda Biomedical Center'),
(107203, 87907, 'en', 'name', 'Shenzhen Municipal Development and Reform Commission'),
(107204, 87907, 'zh', 'name', 'ę·±åœ³åø‚å‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(107205, 87908, 'en', 'name', 'Nellie Mae Education Foundation'),
(107206, 87909, 'no_lang_code', 'name', 'FEI (Netherlands)'),
(107207, 87910, 'no_lang_code', 'name', 'Mylan (Sweden)'),
(107208, 87911, 'en', 'name', 'The Long Island Museum'),
(107209, 87912, 'en', 'name', 'Hawaii Community Foundation'),
(107210, 87913, 'en', 'name', 'Tri College University'),
(107211, 87914, 'en', 'name', 'South East Physics Network'),
(107212, 87915, 'en', 'name', 'Leopardstown Park Hospital'),
(107213, 87916, 'no_lang_code', 'name', 'Myriad Rules-Based Medicine (United States)'),
(107214, 87917, 'en', 'name', 'Taipei Medical University Hospital'),
(107215, 87917, 'zh', 'name', 'č‡ŗåŒ—é†«å­øå¤§å­øé™„čØ­é†«é™¢)'),
(107216, 87918, 'no_lang_code', 'name', 'K.C. Associates (United States)'),
(107217, 87919, 'en', 'name', 'Ethiopian Environment and Forest Research Institute'),
(107218, 87920, 'de', 'name', 'Bundesinstitut für Risikobewertung'),
(107219, 87920, 'en', 'name', 'Federal Institute for Risk Assessment'),
(107220, 87921, 'en', 'name', 'Capital Institute of Physical Education and Sports'),
(107221, 87922, 'en', 'name', 'Guangzhou Psychiatric Hospital'),
(107222, 87923, 'no_lang_code', 'name', 'CMC Microsystems (Canada)'),
(107223, 87924, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ å³¶ę“„č£½ä½œę‰€'),
(107224, 87924, 'no_lang_code', 'name', 'Shimadzu (Japan)'),
(107225, 87925, 'en', 'name', 'National Fragile X Foundation'),
(107226, 87926, 'it', 'name', 'Consorzio Interuniversitario per le Biotecnologie'),
(107227, 87927, 'en', 'name', 'Danish Institute for Study Abroad'),
(107228, 87928, 'en', 'name', 'Shri Vishwakarma Skill University'),
(107229, 87929, 'en', 'name', 'WavEC Offshore Renewables'),
(107230, 87930, 'en', 'name', 'Humane Research Trust'),
(107231, 87931, 'en', 'name', 'Skyrail Rainforest Foundation'),
(107232, 87932, 'en', 'name', 'Hospital HƩdi Chaker of Sfax'),
(107233, 87933, 'en', 'name', 'Japan Organization of Occupational Health and Safety'),
(107234, 87933, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ“åƒč€…å„åŗ·å®‰å…Øę©Ÿę§‹'),
(107235, 87934, 'es', 'name', 'Cidemco'),
(107236, 87935, 'en', 'name', 'Future Generations Graduate School'),
(107237, 87936, 'en', 'name', 'Vector Institute'),
(107238, 87936, 'fr', 'name', 'Institut de Vector'),
(107239, 87937, 'en', 'name', 'Center for Public Policy Alternatives'),
(107240, 87938, 'en', 'name', 'National University of Misiones'),
(107241, 87938, 'es', 'name', 'Universidad Nacional de Misiones'),
(107242, 87939, 'en', 'name', 'Yunnan Institute of Environmental Sciences'),
(107243, 87939, 'zh', 'name', 'äŗ‘å—ēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(107244, 87940, 'en', 'name', 'Equal Measure'),
(107245, 87941, 'no_lang_code', 'name', 'Novalait (Canada)'),
(107246, 87942, 'en', 'name', 'Yamawaki Gakuen Junior College'),
(107247, 87942, 'ja', 'name', 'å±±č„‡å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(107248, 87943, 'no_lang_code', 'name', 'Xhale (United States)'),
(107249, 87944, 'no_lang_code', 'name', 'Johnson & Johnson (Israel)'),
(107250, 87945, 'no_lang_code', 'name', 'Alcatel-Lucent (China)'),
(107251, 87946, 'en', 'name', 'Nunavut Arctic College'),
(107252, 87946, 'fr', 'name', 'CollĆØge de l’Arctique du Nunavut'),
(107253, 87946, 'iu', 'name', 'į“„į“‡į•—į’»į’„į“Æį“šį‘¦į‘į–…į““į•į••į’ƒ'),
(107254, 87947, 'no_lang_code', 'name', 'Crucell (Switzerland)'),
(107255, 87948, 'pl', 'name', 'Akademia Wychowania Fizycznego im. Bronisława Czecha w Krakowie'),
(107256, 87949, 'de', 'name', 'Roland Ernst Stiftung'),
(107257, 87950, 'no_lang_code', 'name', 'WilliamsRDM (United States)'),
(107258, 87951, 'en', 'name', 'National Institute of Ocean Technology'),
(107259, 87951, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤®ą„ą¤¦ą„ą¤° ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ā€ą¤„ą¤¾ą¤Ø'),
(107260, 87952, 'no_lang_code', 'name', 'Powerchina Huadong Engineering Corporation (China)'),
(107261, 87953, 'en', 'name', 'North County Serenity House'),
(107262, 87954, 'en', 'name', 'European Hospital'),
(107263, 87955, 'bn', 'name', 'ą¦¹ą¦¾ą¦®ą¦¦ą¦°ą§ą¦¦ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ বাংলাদেশ'),
(107264, 87955, 'en', 'name', 'Hamdard University Bangladesh'),
(107265, 87956, 'it', 'name', 'Regione del Veneto'),
(107266, 87957, 'en', 'name', 'Institute for Law and Justice'),
(107267, 87958, 'en', 'name', 'The Scar Free Foundation'),
(107268, 87959, 'no_lang_code', 'name', 'Second Genome (United States)'),
(107269, 87960, 'en', 'name', 'Jiangxi Provincial Cancer Hospital'),
(107270, 87960, 'zh', 'name', 'ę±Ÿč„æēœč‚æē˜¤åŒ»é™¢'),
(107271, 87961, 'tr', 'name', 'Dr. Suat Seren Göğüs Hastalıkları Hastanesi'),
(107272, 87962, 'en', 'name', 'Knights Templar Eye Foundation'),
(107273, 87963, 'de', 'name', 'Leibniz-Institut für Astrophysik Potsdam'),
(107274, 87963, 'en', 'name', 'Leibniz Institute for Astrophysics Potsdam'),
(107275, 87964, 'en', 'name', 'Antarctic Climate and Ecosystems Cooperative Research Centre'),
(107276, 87965, 'en', 'name', 'LIXIL JS Foundation'),
(107277, 87965, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗLIXILä½ē”Ÿę“»č²”å›£'),
(107278, 87966, 'no_lang_code', 'name', 'GE Healthcare (India)'),
(107279, 87967, 'en', 'name', 'Wellcome Centre for Mitochondrial Research'),
(107280, 87968, 'en', 'name', 'British Society for Matrix Biology'),
(107281, 87969, 'en', 'name', 'Milwaukee Metropolitan Sewerage District'),
(107282, 87970, 'en', 'name', 'University of Miyazaki Hospital'),
(107283, 87970, 'ja', 'name', 'å®®å“Žå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(107284, 87971, 'en', 'name', 'International Institute of Islamic Thought'),
(107285, 87972, 'en', 'name', 'University of Wisconsin Colleges'),
(107286, 87973, 'no_lang_code', 'name', 'LGL (Canada)'),
(107287, 87974, 'en', 'name', 'Illawarra Area Health Service'),
(107288, 87975, 'en', 'name', 'Prisma Health'),
(107289, 87976, 'hu', 'name', 'Neumann JƔnos Egyetem'),
(107290, 87976, 'no_lang_code', 'name', 'John von Neumann University'),
(107291, 87977, 'en', 'name', 'University of Pittsburgh at Johnstown'),
(107292, 87978, 'en', 'name', 'The Christie Hospital'),
(107293, 87979, 'en', 'name', 'Institute of Marine Engineering Science and Technology'),
(107294, 87980, 'no_lang_code', 'name', 'ADMA Biologics (United States)'),
(107295, 87981, 'en', 'name', 'Dogs Trust'),
(107296, 87982, 'en', 'name', 'Bowel Cancer UK'),
(107297, 87983, 'no_lang_code', 'name', 'Rockwell (United States)'),
(107298, 87984, 'en', 'name', 'ARC Centre of Excellence for Core to Crust Fluid Systems'),
(107299, 87985, 'en', 'name', 'Consortium of Universities for Global Health'),
(107300, 87986, 'en', 'name', 'Ministry of Agriculture and Cooperatives'),
(107301, 87986, 'th', 'name', 'ąøąø£ąø°ąø—ąø£ąø§ąø‡ą¹€ąøąø©ąø•ąø£ą¹ąø„ąø°ąøŖąø«ąøąø£ąø“ą¹Œ'),
(107302, 87987, 'en', 'name', 'Haukeland University Hospital'),
(107303, 87988, 'no_lang_code', 'name', 'Lasergen (United States)'),
(107304, 87989, 'no_lang_code', 'name', 'Orthofix (United States)'),
(107305, 87990, 'en', 'name', 'Alexander & Margaret Stewart Trust'),
(107306, 87991, 'en', 'name', 'Arthur Ashe Institute for Urban Health'),
(107307, 87992, 'en', 'name', 'King Center'),
(107308, 87993, 'en', 'name', 'Baylor University Medical Center'),
(107309, 87994, 'de', 'name', 'Chinesisch-Deutsche Zentrum für Wissenschaftsförderung'),
(107310, 87994, 'en', 'name', 'Sino-German Center for Research Promotion'),
(107311, 87995, 'en', 'name', 'Pacific Eye Associates'),
(107312, 87996, 'en', 'name', 'National Academy of Governance'),
(107313, 87996, 'mn', 'name', 'УГирГлагын АкаГемийн'),
(107314, 87997, 'no_lang_code', 'name', 'Lac Hong University'),
(107315, 87997, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Lįŗ”c Hồng'),
(107316, 87998, 'no_lang_code', 'name', 'Italdesign Giugiaro (Italy)'),
(107317, 87999, 'no_lang_code', 'name', 'Marine Biodiversity Institute of Korea'),
(107318, 88000, 'en', 'name', 'Iranian Center for Quantum Technologies'),
(107319, 88001, 'en', 'name', 'D.Y. Patil Education Society'),
(107320, 88001, 'hi', 'name', 'D Y पाटिल ą¤ą¤œą„‚ą¤•ą„‡ą¤¶ą¤Ø ą¤øą„‹ą¤øą¤¾ą¤‡ą¤Ÿą„€'),
(107321, 88002, 'en', 'name', 'Spices Board India'),
(107322, 88002, 'hi', 'name', 'मसाला ą¤¬ą„‹ą¤°ą„ą¤” भारत'),
(107323, 88002, 'ml', 'name', 'ą“øąµą“Ŗąµˆą“øą“øąµ ą“¬ąµ‡ą“¾ąµ¼ą“”ąµ ą“‡ą“Øąµą“¤ąµą“Æ'),
(107324, 88003, 'no_lang_code', 'name', 'Dow Agrosciences (Canada)'),
(107325, 88004, 'fr', 'name', 'Pharmacochimie et Pharmacologie pour le DƩveloppement'),
(107326, 88005, 'no_lang_code', 'name', 'FEI (Germany)'),
(107327, 88006, 'en', 'name', 'Texas Tech University'),
(107328, 88007, 'fr', 'name', 'Institut Francilien de Recherche sur les Atomes Froids'),
(107329, 88008, 'sv', 'name', 'Torsten Sƶderbergs Stiftelse'),
(107330, 88009, 'en', 'name', 'Saint Joseph''s Seminary, St. Joseph’s Seminary and College'),
(107331, 88010, 'no_lang_code', 'name', 'Medicines Company (India)'),
(107332, 88011, 'no_lang_code', 'name', 'Sapa (Norway)'),
(107333, 88012, 'no_lang_code', 'name', 'Cardinal Health (United States)'),
(107334, 88013, 'no_lang_code', 'name', 'EnGlobe (Canada)'),
(107335, 88014, 'en', 'name', 'Structural Genomics Consortium'),
(107336, 88015, 'en', 'name', 'The Central Hospital of Shaoyang'),
(107337, 88015, 'zh', 'name', 'é‚µé˜³åø‚äø­åæƒåŒ»é™¢'),
(107338, 88016, 'en', 'name', 'National University of Lomas de Zamora'),
(107339, 88016, 'es', 'name', 'Universidad Nacional de Lomas de Zamora'),
(107340, 88017, 'no_lang_code', 'name', 'Graymont (Canada)'),
(107341, 88018, 'no_lang_code', 'name', 'Genome Explorations (United States)'),
(107342, 88019, 'en', 'name', 'National Institute for Testing and Evaluation'),
(107343, 88019, 'he', 'name', '×ž×Ø×›×– ארצי ×œ×‘×—×™× ×•×Ŗ ×•×œ×”×¢×Ø×›×”'),
(107344, 88020, 'en', 'name', 'Hofstra University'),
(107345, 88021, 'no_lang_code', 'name', 'Ebelle D''ebelle Pharmaceutical (United States)'),
(107346, 88022, 'en', 'name', 'Yale School of Medicine'),
(107347, 88023, 'en', 'name', 'Maine Department of Agriculture Conservation and Forestry'),
(107348, 88024, 'en', 'name', 'Jemez Pueblo Community Library'),
(107349, 88025, 'en', 'name', 'Boston University School of Medicine'),
(107350, 88026, 'de', 'name', 'Medizinische UniversitƤt Innsbruck'),
(107351, 88026, 'en', 'name', 'Innsbruck Medical University'),
(107352, 88027, 'en', 'name', 'Seikei University'),
(107353, 88027, 'ja', 'name', '成蹊大学'),
(107354, 88028, 'en', 'name', 'British Society for Surgery of the Hand'),
(107355, 88029, 'en', 'name', 'International Foundation for Science'),
(107356, 88030, 'en', 'name', 'Changzhou Vocational Institute of Engineering'),
(107357, 88030, 'zh', 'name', 'åøøå·žå·„ēØ‹čŒäøšęŠ€ęœÆå­¦é™¢'),
(107358, 88031, 'en', 'name', 'Center of Regenerative Medicine in Barcelona'),
(107359, 88032, 'no_lang_code', 'name', 'Applied Nanotech Holdings (United States)'),
(107360, 88033, 'en', 'name', 'Pan Asian Repertory Theatre'),
(107361, 88034, 'en', 'name', 'Cancer Patient Care'),
(107362, 88035, 'en', 'name', 'Canadian Association on Gerontology'),
(107363, 88036, 'en', 'name', 'First Hospital of Jiaxing'),
(107364, 88036, 'zh', 'name', 'å˜‰å…“åø‚ē¬¬äø€åŒ»é™¢'),
(107365, 88037, 'en', 'name', 'Earth Science Information Partners'),
(107366, 88038, 'en', 'name', 'Midwest Nursing Research Society'),
(107367, 88039, 'en', 'name', 'Kamprad Family Foundation'),
(107368, 88039, 'sv', 'name', 'Familjen Kamprads Stiftelse'),
(107369, 88040, 'en', 'name', 'Peng Cheng Laboratory'),
(107370, 88040, 'zh', 'name', 'é¹åŸŽå®žéŖŒå®¤'),
(107371, 88041, 'en', 'name', 'History of Advertising Trust'),
(107372, 88042, 'en', 'name', 'Cancer Foundation of China'),
(107373, 88042, 'zh', 'name', 'äø­å›½ē™Œē—‡åŸŗé‡‘ä¼š'),
(107374, 88043, 'en', 'name', 'A.O. Kovalevsky Institute of Biology of the Southern Seas'),
(107375, 88043, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ біології півГенних морів ім. Šž.Šž. Ковалевського'),
(107376, 88044, 'no_lang_code', 'name', 'Consulintel (Spain)'),
(107377, 88045, 'en', 'name', 'National Children''s Advocacy Center'),
(107378, 88046, 'fr', 'name', 'Le Studium'),
(107379, 88047, 'en', 'name', 'Wagner Free Institute of Science'),
(107380, 88048, 'en', 'name', 'LivingStone International University'),
(107381, 88049, 'no_lang_code', 'name', 'United Technologies (United Kingdom)'),
(107382, 88050, 'en', 'name', 'Friends Research Institute'),
(107383, 88051, 'no_lang_code', 'name', 'SpheriTech (United Kingdom)'),
(107384, 88052, 'no_lang_code', 'name', 'Magnitogorsk Iron and Steel Works (Russia)'),
(107385, 88052, 'ru', 'name', 'ŠœŠ°Š³Š½ŠøŃ‚Š¾Š³Š¾Ń€ŃŠŗŠøŠ¹ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ комбинат'),
(107386, 88053, 'fr', 'name', 'Bombardier Produits Recreatifs'),
(107387, 88053, 'no_lang_code', 'name', 'Bombardier Recreational Products (Canada)'),
(107388, 88054, 'en', 'name', 'Yuncheng University'),
(107389, 88054, 'zh', 'name', 'čæåŸŽå­¦é™¢'),
(107390, 88055, 'de', 'name', 'Fraunhofer-Institut für Sichere Informationstechnologie'),
(107391, 88055, 'en', 'name', 'Fraunhofer Institute for Secure Information Technology'),
(107392, 88056, 'en', 'name', 'Gwynedd Mercy University'),
(107393, 88057, 'no_lang_code', 'name', 'Mary Kay (United States)'),
(107394, 88058, 'en', 'name', 'Wills Eye Hospital'),
(107395, 88059, 'en', 'name', 'Wadia Institute of Himalayan Geology'),
(107396, 88059, 'hi', 'name', 'वाऔिया ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø हिमालय ą¤­ą„‚ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø'),
(107397, 88060, 'en', 'name', 'The Japan Society of Mechanical Engineers'),
(107398, 88060, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę©Ÿę¢°å­¦ä¼š'),
(107399, 88061, 'en', 'name', 'Wellcome / EPSRC Centre for Interventional and Surgical Sciences'),
(107400, 88062, 'en', 'name', 'Stephen Lewis Foundation'),
(107401, 88063, 'en', 'name', 'Society for American Archaeology'),
(107402, 88064, 'en', 'name', 'Society of Petroleum Engineers'),
(107403, 88065, 'en', 'name', 'Pan African University Institute of Life and Earth Sciences'),
(107404, 88066, 'en', 'name', 'Taskforce for Applied Research'),
(107405, 88066, 'nl', 'name', 'Nationaal Regieorgaan Praktijkgericht Onderzoek SIA'),
(107406, 88067, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization'),
(107407, 88068, 'en', 'name', 'Iowa City VA Medical Center'),
(107408, 88069, 'en', 'name', 'Froebel Trust'),
(107409, 88070, 'en', 'name', 'Second Hospital of Tianjin Medical University'),
(107410, 88071, 'en', 'name', 'National Marine Sanctuary Foundation'),
(107411, 88072, 'en', 'name', 'Centre for Development and Enterprise'),
(107412, 88073, 'en', 'name', 'Sbarro Health Research Organization'),
(107413, 88074, 'en', 'name', 'NERC Environmental Bioinformatics Centre'),
(107414, 88075, 'no_lang_code', 'name', 'Communication Disorders Technology (United States)'),
(107415, 88076, 'en', 'name', 'Community Service Society of New York'),
(107416, 88077, 'en', 'name', 'Society for Industrial Microbiology and Biotechnology'),
(107417, 88078, 'no_lang_code', 'name', 'Naval Group (France)'),
(107418, 88079, 'no_lang_code', 'name', 'Kawasumi Laboratories (Japan)'),
(107419, 88080, 'en', 'name', 'Central Agricultural University'),
(107420, 88080, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(107421, 88081, 'en', 'name', 'Clore Duffield Foundation'),
(107422, 88082, 'en', 'name', 'National Synchrotron Radiation Laboratory'),
(107423, 88082, 'zh', 'name', 'å›½å®¶åŒę­„č¾å°„å®žéŖŒå®¤'),
(107424, 88083, 'en', 'name', 'Society For Investigative Dermatology'),
(107425, 88084, 'en', 'name', 'Institute for Democracy and Mediation'),
(107426, 88085, 'en', 'name', 'Faith Baptist Bible College and Theological Seminary'),
(107427, 88086, 'en', 'name', 'Chaozhou Central Hospital'),
(107428, 88086, 'zh', 'name', 'ę½®å·žåø‚äø­åæƒåŒ»é™¢'),
(107429, 88087, 'fr', 'name', 'Association Neuro-Bretagne'),
(107430, 88088, 'en', 'name', 'University of America'),
(107431, 88089, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å°ę¾č£½ä½œę‰€'),
(107432, 88089, 'no_lang_code', 'name', 'Komatsu (Japan)'),
(107433, 88090, 'en', 'name', 'Mazandaran University of Science and Technology'),
(107434, 88090, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† مازندران'),
(107435, 88091, 'en', 'name', 'Rett Syndrome Research Trust'),
(107436, 88092, 'en', 'name', 'Osteo Science Foundation'),
(107437, 88093, 'en', 'name', 'Wuxi Institute of Arts & Technology'),
(107438, 88093, 'zh', 'name', 'ę— é””č‰ŗęœÆå­¦é™¢'),
(107439, 88094, 'en', 'name', 'Reva and David Logan Foundation'),
(107440, 88095, 'en', 'name', 'Ulsan University Hospital'),
(107441, 88095, 'ko', 'name', 'ģšøģ‚°ėŒ€ķ•™źµė³‘ģ›'),
(107442, 88096, 'en', 'name', 'Riley Children''s Foundation'),
(107443, 88097, 'en', 'name', 'Catalan Association of Public Universities'),
(107444, 88097, 'es', 'name', 'Asociación Catalana de Universidades Públicas'),
(107445, 88098, 'en', 'name', 'Mississippi Department of Wildlife Fisheries and Parks'),
(107446, 88099, 'en', 'name', 'Ningxia Normal University'),
(107447, 88100, 'no_lang_code', 'name', 'ATCO (Canada)'),
(107448, 88101, 'en', 'name', 'Schwartz/Reisman Emergency Medicine Institute'),
(107449, 88102, 'en', 'name', 'Queensland Cyber Infrastructure Foundation'),
(107450, 88103, 'no_lang_code', 'name', 'Supernus Pharmaceuticals (United States)'),
(107451, 88104, 'en', 'name', 'Umma University'),
(107452, 88105, 'no_lang_code', 'name', 'Imricor (United States)'),
(107453, 88106, 'en', 'name', 'Mt. Ascutney Hospital and Health Center'),
(107454, 88107, 'en', 'name', 'National Institute of Technology Srinagar'),
(107455, 88107, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¶ą„ą¤°ą„€ą¤Øą¤—ą¤°'),
(107456, 88108, 'en', 'name', 'National University of Food Technologies'),
(107457, 88108, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ пищевых технологий'),
(107458, 88108, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ харчових технологій'),
(107459, 88109, 'no_lang_code', 'name', 'Daqing Oilfield of CNPC'),
(107460, 88109, 'zh', 'name', 'äø­å›½ēŸ³ę²¹å¤§åŗ†ę²¹ē”°'),
(107461, 88110, 'en', 'name', 'Raincoast Conservation Foundation'),
(107462, 88111, 'en', 'name', 'Finnish Concordia Fund'),
(107463, 88111, 'fi', 'name', 'Suomalainen Konkordia-liitto'),
(107464, 88112, 'en', 'name', 'Chesapeake Bay Trust'),
(107465, 88113, 'en', 'name', 'BRACE'),
(107466, 88114, 'en', 'name', 'Iran National Science Foundation'),
(107467, 88115, 'no_lang_code', 'name', 'Renishaw Diagnostics (United Kingdom)'),
(107468, 88116, 'en', 'name', 'NSCAD University'),
(107469, 88117, 'en', 'name', 'Fukuoka International University'),
(107470, 88117, 'ja', 'name', 'ē¦å²”å›½éš›å¤§å­¦'),
(107471, 88118, 'en', 'name', 'Forefront of Dermatology'),
(107472, 88119, 'en', 'name', 'Global Fund for Women'),
(107473, 88120, 'en', 'name', 'Indo-US Science and Technology Forum'),
(107474, 88121, 'no_lang_code', 'name', 'Mentor Graphics (United Kingdom)'),
(107475, 88122, 'en', 'name', 'Foundation for Individual Rights in Education'),
(107476, 88123, 'en', 'name', 'University of California Division of Agriculture and Natural Resources'),
(107477, 88124, 'nl', 'name', 'Freek en Hella de Jonge Stichting'),
(107478, 88125, 'en', 'name', 'Lion Foundation'),
(107479, 88126, 'en', 'name', 'JECS Trust'),
(107480, 88127, 'en', 'name', 'Aga Khan Foundation'),
(107481, 88128, 'en', 'name', 'Crimean State Humanitarian University'),
(107482, 88129, 'en', 'name', 'Moorfields Eye Hospital'),
(107483, 88130, 'en', 'name', 'Shanghai Meteorological Bureau'),
(107484, 88130, 'zh', 'name', 'äøŠęµ·åø‚ę°”č±”å±€'),
(107485, 88131, 'en', 'name', 'Tokyo Environmental Public Service Corporation'),
(107486, 88131, 'ja', 'name', 'ę±äŗ¬éƒ½ē’°å¢ƒå…¬ē¤¾'),
(107487, 88132, 'no_lang_code', 'name', 'Weatherford (United States)'),
(107488, 88133, 'no_lang_code', 'name', 'Blindsight (United States)'),
(107489, 88134, 'en', 'name', 'Foster Foundation'),
(107490, 88135, 'en', 'name', 'Armenian National Institute'),
(107491, 88136, 'en', 'name', 'Rudd Foundation'),
(107492, 88137, 'en', 'name', 'Kobe University'),
(107493, 88137, 'ja', 'name', 'ē„žęˆøå¤§å­¦'),
(107494, 88138, 'en', 'name', 'Osato Research Institute'),
(107495, 88138, 'ja', 'name', 'ć‚Ŗć‚µćƒˆē ”ē©¶ę‰€'),
(107496, 88139, 'en', 'name', 'Mississippi Department of Marine Resources'),
(107497, 88140, 'en', 'name', 'State Library of Victoria'),
(107498, 88141, 'nl', 'name', 'Expertisecentrum Nederlands'),
(107499, 88142, 'en', 'name', 'Smolensk University for Humanities'),
(107500, 88142, 'ru', 'name', 'Дмоленский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(107501, 88143, 'en', 'name', 'ISMA University'),
(107502, 88143, 'lv', 'name', 'Informācijas sistēmu menedžmenta augstskola'),
(107503, 88143, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń школа менеГжмента Šø информационных систем'),
(107504, 88144, 'fr', 'name', 'Ɖcole nationale vĆ©tĆ©rinaire de Lyon'),
(107505, 88145, 'en', 'name', 'City of Portland'),
(107506, 88146, 'en', 'name', 'Ministry of Science, Technology, Knowledge and Innovation'),
(107507, 88146, 'es', 'name', 'Ministerio de Ciencia, Tecnología, Conocimiento e Innovación'),
(107508, 88147, 'en', 'name', 'Ministry of Education, Culture and Research'),
(107509, 88147, 'ro', 'name', 'Ministerul Educației, Culturii și Cercetării'),
(107510, 88148, 'en', 'name', 'Shepherd University Research Corporation'),
(107511, 88149, 'no_lang_code', 'name', 'Combe (United States)'),
(107512, 88150, 'no_lang_code', 'name', 'Atlantic Healthcare (United Kingdom)'),
(107513, 88151, 'de', 'name', 'Nationale Akademie der Wissenschaften Leopoldina'),
(107514, 88151, 'en', 'name', 'German National Academy of Sciences Leopoldina'),
(107515, 88152, 'no_lang_code', 'name', 'Medin (Czechia)'),
(107516, 88153, 'en', 'name', 'Dublin Dental University Hospital'),
(107517, 88154, 'no_lang_code', 'name', 'Duchesnay (Canada)'),
(107518, 88155, 'de', 'name', 'Dr. Rolf M. Schwiete Stiftung'),
(107519, 88156, 'en', 'name', 'Queens College, CUNY, Queens College, City University of New York'),
(107520, 88156, 'fr', 'name', 'Queens college, city university of new york'),
(107521, 88157, 'en', 'name', 'Russian Quantum Center'),
(107522, 88157, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ центр квантовой оптики Šø квантовых технологий'),
(107523, 88158, 'en', 'name', 'Guru Nanak Institutions'),
(107524, 88159, 'no_lang_code', 'name', 'High Value Manufacturing Catapult'),
(107525, 88160, 'en', 'name', 'Associated Universities, Inc.'),
(107526, 88161, 'en', 'name', 'Myanmar Maritime University'),
(107527, 88161, 'my', 'name', 'į€™į€¼į€”į€ŗį€™į€¬į€”į€­į€Æį€„į€ŗį€„į€¶į€›į€±į€€į€¼į€±į€¬į€„į€ŗį€øį€•į€Šį€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(107528, 88162, 'fr', 'name', 'HƓpital Purpan'),
(107529, 88163, 'en', 'name', 'Office of Public and Intergovernmental Affairs'),
(107530, 88164, 'en', 'name', 'Great Ormond Street Hospital Children''s Charity'),
(107531, 88165, 'fr', 'name', 'Centre Hospitalier Saint-Joseph Saint-Luc'),
(107532, 88166, 'en', 'name', 'Liaoning Academy of Agricultural Sciences'),
(107533, 88166, 'zh', 'name', 'č¾½å®ēœå†œäøšē§‘å­¦é™¢'),
(107534, 88167, 'en', 'name', 'Graham and Carolyn Holloway Family Foundation'),
(107535, 88168, 'en', 'name', 'Manchester and Lancashire Family History Society'),
(107536, 88169, 'no_lang_code', 'name', 'Corlife (Germany)'),
(107537, 88170, 'no_lang_code', 'name', 'Woodside (Australia)'),
(107538, 88171, 'no_lang_code', 'name', 'Invivo (United States)'),
(107539, 88172, 'en', 'name', 'Jaap Schouten Foundation'),
(107540, 88173, 'en', 'name', 'Urals State Medical University'),
(107541, 88173, 'ru', 'name', 'Š£Š ŠŠ›Š¬Š”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ ŠœŠ•Š”Š˜Š¦Š˜ŠŠ”ŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(107542, 88174, 'en', 'name', 'Cold Laser Therapy Center'),
(107543, 88175, 'no_lang_code', 'name', 'AfaSci (United States)'),
(107544, 88176, 'no_lang_code', 'name', 'EMC (United States)'),
(107545, 88177, 'en', 'name', 'Sixteenth Century Society and Conference'),
(107546, 88178, 'en', 'name', 'Bamboo Research Center'),
(107547, 88178, 'zh', 'name', 'å›½å®¶ęž—äøšå’Œč‰åŽŸå±€ē«¹å­ē ”ē©¶å¼€å‘äø­åæƒ'),
(107548, 88179, 'no_lang_code', 'name', 'Baosteel (China)'),
(107549, 88180, 'en', 'name', 'Purdue University North Central'),
(107550, 88181, 'en', 'name', 'Weil Foot & Ankle Institute'),
(107551, 88182, 'no_lang_code', 'name', 'Alere Wellbeing'),
(107552, 88183, 'no_lang_code', 'name', 'ipIQ'),
(107553, 88184, 'en', 'name', 'Longdong University'),
(107554, 88184, 'zh', 'name', 'é™‡äøœå­¦é™¢'),
(107555, 88185, 'en', 'name', 'Eastern Townships Forest Research Trust'),
(107556, 88185, 'fr', 'name', 'Fiducie de Recherche sur la ForĆŖt des Cantons-de-l’Est'),
(107557, 88186, 'en', 'name', 'South West Public Health Observatory'),
(107558, 88187, 'en', 'name', 'Sahand University of Technology'),
(107559, 88187, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ سهند'),
(107560, 88188, 'en', 'name', 'South Australian Health'),
(107561, 88189, 'en', 'name', 'National Bureau of Asian Research'),
(107562, 88190, 'en', 'name', 'Foundation for Circulatory Health'),
(107563, 88191, 'no_lang_code', 'name', 'GlobalStem (United States)'),
(107564, 88192, 'en', 'name', 'Association for Frontotemporal Degeneration'),
(107565, 88193, 'ca', 'name', 'USP Institut Universitari Dexeus'),
(107566, 88194, 'no_lang_code', 'name', 'Takata (United States)'),
(107567, 88195, 'pl', 'name', 'Państwowy Instytut Badawczy'),
(107568, 88196, 'en', 'name', 'Centres of Excellence'),
(107569, 88197, 'en', 'name', 'InterAcademy Partnership'),
(107570, 88198, 'no_lang_code', 'name', 'Illumina Digital (United Kingdom)'),
(107571, 88199, 'en', 'name', 'European Leukodystrophy Association'),
(107572, 88199, 'fr', 'name', 'L’Association EuropĆ©enne contre les Leucodystrophies'),
(107573, 88200, 'no_lang_code', 'name', 'Novion Technologies (United States)'),
(107574, 88201, 'en', 'name', 'University of Ibadan'),
(107575, 88201, 'yo', 'name', 'YunifÔsítì ìlú Ìbàdàn'),
(107576, 88202, 'en', 'name', 'Helmholtz Alliance for Astroparticle Physics'),
(107577, 88203, 'en', 'name', 'International Foundation for Sonography Education and Research'),
(107578, 88204, 'fr', 'name', 'ModĆØles Dynamiques Corpus'),
(107579, 88205, 'en', 'name', 'Białystok School of Public Administration'),
(107580, 88205, 'pl', 'name', 'Wyższa Szkoła Administracji Publicznej w Białymstoku'),
(107581, 88206, 'no_lang_code', 'name', 'Sinochem Group (China)'),
(107582, 88206, 'zh', 'name', 'äø­å›½äø­åŒ–é›†å›¢å…¬åø'),
(107583, 88207, 'en', 'name', 'National American University'),
(107584, 88208, 'en', 'name', 'AndrĆ”s Pető College'),
(107585, 88208, 'hu', 'name', 'Š¤Š°ŠŗŃƒŠ»ŃŒŃ‚ŠµŃ‚ ŠŠ½Š“Ń€Š°Ńˆ ŠŸŠµŃ‚Ń‘'),
(107586, 88209, 'en', 'name', 'Centre for Global Health Research'),
(107587, 88210, 'en', 'name', 'Peacock Foundation'),
(107588, 88211, 'no_lang_code', 'name', 'Kvaerner (Norway)'),
(107589, 88212, 'en', 'name', 'National Council for Air and Stream Improvement'),
(107590, 88213, 'en', 'name', 'Salk Institute for Biological Studies'),
(107591, 88214, 'en', 'name', 'Cutaneous Lymphoma Foundation'),
(107592, 88215, 'en', 'name', 'Astronomy Australia'),
(107593, 88216, 'de', 'name', 'Leibniz-Institut für Ostseeforschung Warnemünde'),
(107594, 88216, 'en', 'name', 'Leibniz Institute for Baltic Sea Research'),
(107595, 88217, 'en', 'name', 'Batumi Navigation Teaching University'),
(107596, 88217, 'ka', 'name', 'įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒœįƒįƒ•įƒ˜įƒ’įƒįƒŖįƒ˜įƒ˜įƒ” įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(107597, 88218, 'en', 'name', 'University of Art and Social Sciences'),
(107598, 88218, 'es', 'name', 'Universidad de Arte y Ciencias Sociales'),
(107599, 88219, 'en', 'name', 'Golden Opportunities Foundation'),
(107600, 88220, 'en', 'name', 'European Geosciences Union'),
(107601, 88221, 'en', 'name', 'Texas A&M Health Science Center'),
(107602, 88222, 'no_lang_code', 'name', 'MSC Software (Germany)'),
(107603, 88223, 'no_lang_code', 'name', 'Cascade Technologies (United States)'),
(107604, 88224, 'en', 'name', 'United States Army Public Health Command'),
(107605, 88225, 'no_lang_code', 'name', 'Electro Optical Systems (Germany)'),
(107606, 88226, 'sv', 'name', 'Diabetesfƶrbundet, Svenska Diabetesfƶrbundet'),
(107607, 88227, 'en', 'name', 'European Venous Forum'),
(107608, 88228, 'en', 'name', 'Korean Breast Cancer Society'),
(107609, 88229, 'en', 'name', 'Business and Hotel Management School'),
(107610, 88230, 'en', 'name', 'Iziko Museums of South Africa'),
(107611, 88231, 'en', 'name', 'Yan Chai Hospital'),
(107612, 88231, 'zh', 'name', 'ä»ęæŸé†«é™¢'),
(107613, 88232, 'en', 'name', 'University of Medicine Tirana'),
(107614, 88232, 'sq', 'name', 'Universiteti i Mjekƫsisƫ, Tiranƫ'),
(107615, 88233, 'en', 'name', 'Louisiana Delta Community College'),
(107616, 88234, 'es', 'name', 'Fundación Instituto para la Mejora de la Asistencia Sanitaria'),
(107617, 88235, 'en', 'name', 'Ingham Institute'),
(107618, 88236, 'ja', 'name', 'ć‚¦ć‚·ć‚Ŗé›»ę©Ÿ'),
(107619, 88236, 'no_lang_code', 'name', 'Ushio (Japan)'),
(107620, 88237, 'no_lang_code', 'name', 'Manitoba Hydro'),
(107621, 88238, 'nl', 'name', 'Nefrovisie'),
(107622, 88239, 'en', 'name', 'Department of Biomedicine Basel'),
(107623, 88240, 'en', 'name', 'Milagro Foundation'),
(107624, 88241, 'en', 'name', 'Ministry of Finance of the Slovak Republic'),
(107625, 88241, 'sk', 'name', 'Ministerstvo FinanciĆ­ Slovenskej Republiky'),
(107626, 88242, 'en', 'name', 'Suzugamine Women''s College'),
(107627, 88242, 'ja', 'name', '鈓峯儳子短期大学'),
(107628, 88243, 'en', 'name', 'New York State Economic Development Council'),
(107629, 88244, 'no_lang_code', 'name', 'Aftenposten (Norway)'),
(107630, 88245, 'en', 'name', 'Rochester Museum and Science Center'),
(107631, 88246, 'en', 'name', 'University of Washington School of Medicine'),
(107632, 88247, 'en', 'name', 'Texas Tech University Health Sciences Center'),
(107633, 88248, 'en', 'name', 'Taipei Veterans General Hospital'),
(107634, 88248, 'zh', 'name', 'å°åŒ—ę¦®ę°‘ēø½é†«é™¢'),
(107635, 88249, 'en', 'name', 'Palaeontological Scientific Trust'),
(107636, 88250, 'en', 'name', 'Ipswich Hospital NHS Trust'),
(107637, 88251, 'no_lang_code', 'name', 'Flowmetrics (United States)'),
(107638, 88252, 'en', 'name', 'International Union of Toxicology'),
(107639, 88253, 'en', 'name', 'The Russian Presidential Academy of National Economy and Public Administration'),
(107640, 88253, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ нароГного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ при ŠŸŃ€ŠµŠ·ŠøŠ“енте Российской ФеГерации'),
(107641, 88254, 'en', 'name', 'Hislop College'),
(107642, 88255, 'en', 'name', 'Vanderbilt University School of Medicine'),
(107643, 88256, 'en', 'name', 'Children''s Oncology Group'),
(107644, 88257, 'en', 'name', 'Penn State Beaver'),
(107645, 88258, 'en', 'name', 'Underwood Memorial Hospital'),
(107646, 88259, 'en', 'name', 'Reno Sparks Indian Colony'),
(107647, 88260, 'en', 'name', 'Colorectal Surgical Society of Australia and New Zealand'),
(107648, 88261, 'de', 'name', 'Paracelsus Medizinische PrivatuniversitƤt'),
(107649, 88261, 'en', 'name', 'Paracelsus Medical University'),
(107650, 88262, 'sv', 'name', 'S:t Eriks Ɩgonsjukhus'),
(107651, 88263, 'de', 'name', 'Bundesanstalt für Wasserbau'),
(107652, 88263, 'en', 'name', 'Federal Waterways Engineering and Research Institute'),
(107653, 88264, 'en', 'name', 'Jay and Rose Phillips Family Foundation of Minnesota'),
(107654, 88265, 'en', 'name', 'Russian State Social University'),
(107655, 88265, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(107656, 88266, 'es', 'name', 'Instituto Tecnológico Metropolitano'),
(107657, 88267, 'de', 'name', 'UniversitƤtsklinikum der Ruhr-UniversitƤt Bochum'),
(107658, 88267, 'en', 'name', 'University Hospitals of the Ruhr-University of Bochum'),
(107659, 88268, 'en', 'name', 'Liver Foundation West Bengal'),
(107660, 88269, 'de', 'name', 'UniversitƤt Rostock'),
(107661, 88269, 'en', 'name', 'University of Rostock'),
(107662, 88270, 'en', 'name', 'Mary Reynolds Babcock Foundation'),
(107663, 88271, 'en', 'name', 'Hospital for Special Surgery'),
(107664, 88272, 'en', 'name', 'Chicago School of Professional Psychology'),
(107665, 88273, 'no_lang_code', 'name', 'Cognitive Technologies (United States)'),
(107666, 88274, 'it', 'name', 'Finpiemonte'),
(107667, 88275, 'no_lang_code', 'name', 'Regenxbio (United States)'),
(107668, 88276, 'en', 'name', 'Ministry of Research, Innovation and Science'),
(107669, 88277, 'en', 'name', 'St. Mary''s Hospital'),
(107670, 88277, 'ja', 'name', 'č–ćƒžćƒŖć‚¢ē—…é™¢'),
(107671, 88278, 'en', 'name', 'Federal Social Insurance Office'),
(107672, 88279, 'no_lang_code', 'name', 'Abeona Therapeutics (United States)'),
(107673, 88280, 'en', 'name', 'Alaska Council of School Administrators'),
(107674, 88281, 'en', 'name', 'International Studies Association'),
(107675, 88282, 'en', 'name', 'Sun Yat-sen University Cancer Center'),
(107676, 88282, 'zh', 'name', 'äø­å±±å¤§å­¦č‚æē˜¤é˜²ę²»äø­åæƒ'),
(107677, 88283, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الباحة'),
(107678, 88283, 'en', 'name', 'Al Baha University'),
(107679, 88284, 'no_lang_code', 'name', 'Rio Tinto Alcan (Canada)'),
(107680, 88285, 'aa', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بيؓة'),
(107681, 88285, 'en', 'name', 'University of Bisha'),
(107682, 88286, 'en', 'name', 'Kamenets Podolsky National University'),
(107683, 88287, 'en', 'name', 'National Institute of Mental Health and Neurosciences'),
(107684, 88287, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ मानसिक जाँच ą¤ą¤µą¤‚ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(107685, 88287, 'kn', 'name', 'ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ಮಾನಸಿಕ ą²†ą²°ą³‹ą²—ą³ą²Æ ಹಾಗೂ ą²Øą²°ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(107686, 88287, 'ml', 'name', 'ą“Øą“æą“‚ą“¹ą“¾ąµ»ą“øąµ'),
(107687, 88288, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š½Š°Ń†Ń‹ŃŠ½Š°Š»ŃŒŠ½Ń‹ Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(107688, 88288, 'en', 'name', 'Belarusian National Technical University'),
(107689, 88288, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(107690, 88289, 'no_lang_code', 'name', 'Karus Therapeutics (United Kingdom)'),
(107691, 88290, 'de', 'name', 'Fondation Partager le Savoir'),
(107692, 88290, 'en', 'name', 'Sharing Knowledge Foundation'),
(107693, 88291, 'en', 'name', 'SUNY Upstate Medical University'),
(107694, 88292, 'en', 'name', 'New Jersey Health Foundation'),
(107695, 88293, 'en', 'name', 'Art Institute of Austin'),
(107696, 88294, 'no_lang_code', 'name', 'GRA (United States)'),
(107697, 88295, 'en', 'name', 'Hospital for Tropical Diseases'),
(107698, 88296, 'no_lang_code', 'name', 'Pohl Boskamp (Germany)'),
(107699, 88297, 'de', 'name', 'Luxemburgisches Institut für die Normung, Akkreditierung, Sicherheit und Qualität von Produkten und Dienstleistungen'),
(107700, 88297, 'fr', 'name', 'Institut Luxembourgeois de la Normalisation, de l''AccrƩditation, de la SƩcuritƩ et qualitƩ des produits et services'),
(107701, 88298, 'en', 'name', 'MOA Health Science Foundation'),
(107702, 88298, 'ja', 'name', 'MOA偄康科学貔団'),
(107703, 88299, 'no_lang_code', 'name', 'GenMont Biotech (Taiwan)'),
(107704, 88300, 'no_lang_code', 'name', 'China Shipbuilding Industry Corporation (China)'),
(107705, 88300, 'zh', 'name', 'äø­å›½čˆ¹čˆ¶é‡å·„é›†å›¢å…¬åø'),
(107706, 88301, 'en', 'name', 'Institute for Research, Education and Training in Addictions'),
(107707, 88302, 'en', 'name', 'Far Eastern Federal University'),
(107708, 88302, 'ru', 'name', 'Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Ń‹Š¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(107709, 88303, 'en', 'name', 'Child & Family Service'),
(107710, 88304, 'en', 'name', 'Huron Mountain Wildlife Foundation'),
(107711, 88305, 'de', 'name', 'Bundesstiftung zur Aufarbeitung der SED-Diktatur'),
(107712, 88305, 'en', 'name', 'Federal Foundation for the Study of Communist Dictatorship in East Germany'),
(107713, 88306, 'en', 'name', 'Shenzhen Bao''an Maternal And Child Health Hospital'),
(107714, 88307, 'de', 'name', 'Hochschule Fulda'),
(107715, 88307, 'en', 'name', 'Fulda University of Applied Sciences'),
(107716, 88308, 'en', 'name', 'Lianyungang Technical College'),
(107717, 88308, 'zh', 'name', 'čæžäŗ‘ęøÆčŒé™¢'),
(107718, 88309, 'en', 'name', 'Far-western University'),
(107719, 88309, 'ne', 'name', 'ą¤øą„ą¤¦ą„‚ą¤°ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(107720, 88310, 'en', 'name', 'Dundee Science Centre'),
(107721, 88311, 'en', 'name', 'National Hospice and Palliative Care Organization'),
(107722, 88312, 'en', 'name', 'University of New Mexico'),
(107723, 88313, 'en', 'name', 'Tree Research and Education Endowment Fund'),
(107724, 88314, 'en', 'name', 'Penn State Berks'),
(107725, 88315, 'en', 'name', 'Raymond and Ruth Perelman School of Medicine at the University of Pennsylvania'),
(107726, 88316, 'pt', 'name', 'Universidade do Vale do ItajaĆ­'),
(107727, 88317, 'de', 'name', 'KfH-Stiftung PrƤventivmedizin'),
(107728, 88318, 'en', 'name', 'Missouri Department of Health and Senior Services'),
(107729, 88319, 'en', 'name', 'California College of the Arts'),
(107730, 88320, 'en', 'name', 'Zhengzhou Central Hospital'),
(107731, 88321, 'en', 'name', 'National Institutes for Food and Drug Control'),
(107732, 88321, 'zh', 'name', 'äø­å›½é£Ÿå“čÆå“ę£€å®šē ”ē©¶é™¢'),
(107733, 88322, 'en', 'name', 'National Museum of Play'),
(107734, 88323, 'en', 'name', 'Sri Rajiv Gandhi College of Dental Sciences and Hospital'),
(107735, 88324, 'en', 'name', 'Immanuel Kant Baltic Federal University'),
(107736, 88324, 'ru', 'name', 'Балтийский Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Иммануила ŠšŠ°Š½Ń‚а'),
(107737, 88325, 'en', 'name', 'Central Coast Local Health District'),
(107738, 88326, 'es', 'name', 'Instituto de Estudios de la Inmunidad Humoral Prof. Ricardo A. Margni'),
(107739, 88327, 'en', 'name', 'Henri Coanda Air Force Academy'),
(107740, 88327, 'ro', 'name', 'Academia Fortelor Aeriene "Henri Coandă"'),
(107741, 88328, 'en', 'name', 'Primate Society of Great Britain'),
(107742, 88329, 'en', 'name', 'Nanzan University'),
(107743, 88329, 'ja', 'name', '南山大学'),
(107744, 88330, 'en', 'name', 'SINTEF Petroleum Research'),
(107745, 88330, 'no', 'name', 'Iku Petroleumsforskning As'),
(107746, 88331, 'en', 'name', 'Trinity House'),
(107747, 88332, 'en', 'name', 'Swedish Asthma and Allergy Association'),
(107748, 88332, 'sv', 'name', 'Astma och Allergi Fƶrbundet'),
(107749, 88333, 'en', 'name', 'National Czech and Slovak Museum & Library'),
(107750, 88334, 'en', 'name', 'Lazarex Cancer Foundation'),
(107751, 88335, 'en', 'name', 'Canadian Poultry Research Council'),
(107752, 88335, 'fr', 'name', 'Le Conseil de recherches avicoles du Canada'),
(107753, 88336, 'it', 'name', 'Centro di Risonanze Magnetiche'),
(107754, 88337, 'en', 'name', 'Thailand Institute of Scientific and Technological Research'),
(107755, 88338, 'en', 'name', 'Owl Research Institute'),
(107756, 88339, 'en', 'name', 'International Institute of Tropical Forestry'),
(107757, 88340, 'no_lang_code', 'name', 'Inovio Pharmaceuticals (United States)'),
(107758, 88341, 'en', 'name', 'Italian Institute of Technology'),
(107759, 88341, 'it', 'name', 'Istituto Italiano di Tecnologia');
INSERT INTO `ror_settings` VALUES
(107760, 88342, 'en', 'name', 'Pan African University Institute for Basic Sciences, Technology and Innovation'),
(107761, 88343, 'en', 'name', 'Agricultural and Marketing Research and Development Trust'),
(107762, 88344, 'en', 'name', 'Garnett Passe and Rodney Williams Memorial Foundation'),
(107763, 88345, 'en', 'name', 'Department of Finance'),
(107764, 88346, 'en', 'name', 'Stetson University'),
(107765, 88347, 'en', 'name', 'Penn State Great Valley'),
(107766, 88348, 'en', 'name', 'University of Phoenix'),
(107767, 88349, 'en', 'name', 'Joe W. and Dorothy Dorsett Brown Foundation'),
(107768, 88350, 'en', 'name', 'Swedish Society for Medical Research'),
(107769, 88351, 'en', 'name', 'Rocky Mountain Research Station'),
(107770, 88352, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization'),
(107771, 88353, 'en', 'name', 'Rajarajeswari Dental College and Hospital'),
(107772, 88354, 'en', 'name', 'International Winter University Kassel'),
(107773, 88355, 'en', 'name', 'Shandong Province Health and Family Planning Commission'),
(107774, 88355, 'zh', 'name', 'å±±äøœēœå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(107775, 88356, 'en', 'name', 'Hervey Foundation'),
(107776, 88357, 'no_lang_code', 'name', 'TISICS (United Kingdom)'),
(107777, 88358, 'no_lang_code', 'name', 'Tadiran Batteries (Israel)'),
(107778, 88359, 'de', 'name', 'Eiblmayr Frank Architekten'),
(107779, 88360, 'ko', 'name', 'ģ¼€ģ“ķ‹° ģ£¼ģ‹ķšŒģ‚¬'),
(107780, 88360, 'no_lang_code', 'name', 'Korea Telecom (South Korea)'),
(107781, 88361, 'en', 'name', 'University of Houston Sugar Land'),
(107782, 88362, 'en', 'name', 'Mary Bird Perkins Cancer Center'),
(107783, 88363, 'en', 'name', 'Paris Grand Ouest University'),
(107784, 88364, 'en', 'name', 'University of Nevada, Reno School of Medicine'),
(107785, 88365, 'en', 'name', 'Turkish Cultural Foundation'),
(107786, 88366, 'bn', 'name', 'ą¦øą§ą¦Ÿą§ą¦Æą¦¾ą¦®ą¦«ą§‹ą¦°ą§ą¦” ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ, বাংলাদেশ'),
(107787, 88366, 'en', 'name', 'Stamford University Bangladesh'),
(107788, 88367, 'en', 'name', 'The Second Affiliated Hospital of Bengbu Medical College'),
(107789, 88367, 'zh', 'name', 'čšŒåŸ åŒ»å­¦é™¢ē¬¬äŗŒé™„å±žåŒ»é™¢'),
(107790, 88368, 'en', 'name', 'Catholic University of Kabgayi'),
(107791, 88368, 'fr', 'name', 'Institut Catholique de Kabgayi'),
(107792, 88369, 'he', 'name', 'מכון מופ"×Ŗ'),
(107793, 88369, 'no_lang_code', 'name', 'The Mofet Institute'),
(107794, 88370, 'en', 'name', 'National Center for Science and Engineering Statistics'),
(107795, 88371, 'en', 'name', 'Tischner European University'),
(107796, 88371, 'pl', 'name', 'Wyższa Szkoła Europejska'),
(107797, 88372, 'en', 'name', 'athenahealth'),
(107798, 88373, 'en', 'name', 'Korean College of Helicobacter and Upper Gastrointestinal Research'),
(107799, 88373, 'ko', 'name', 'ėŒ€ķ•œģƒė¶€ģœ„ģž„ź“€Ā·ķ—¬ė¦¬ģ½”ė°•ķ„°ķ•™ķšŒģ§€'),
(107800, 88374, 'en', 'name', 'San Antonio Area Foundation'),
(107801, 88375, 'es', 'name', 'Universidad de Ciencias Pedagógicas Enrique José Varona'),
(107802, 88376, 'en', 'name', 'Forestry and Forest Products Research Institute'),
(107803, 88376, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗę£®ęž—ē ”ē©¶ćƒ»ę•“å‚™ę©Ÿę§‹'),
(107804, 88377, 'en', 'name', 'Beaver County Library System'),
(107805, 88378, 'en', 'name', 'Mie Chukyo University'),
(107806, 88378, 'ja', 'name', 'äø‰é‡äø­äŗ¬å¤§å­¦'),
(107807, 88379, 'en', 'name', 'Art Institute of California'),
(107808, 88380, 'en', 'name', 'Kanagawa Prefectural Hospital Organization'),
(107809, 88380, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē„žå„ˆå·ēœŒē«‹ē—…é™¢ę©Ÿę§‹'),
(107810, 88381, 'en', 'name', 'Riverland Community College'),
(107811, 88382, 'no_lang_code', 'name', 'BioForce Nanosciences (United States)'),
(107812, 88383, 'en', 'name', 'Dynasty Foundation'),
(107813, 88384, 'no_lang_code', 'name', 'Argumentum Kiadó (Hungary)'),
(107814, 88385, 'en', 'name', 'NIHR Newcastle Biomedical Research Centre'),
(107815, 88386, 'en', 'name', 'Brain Aneurysm Foundation'),
(107816, 88387, 'en', 'name', 'Slovak Academic Information Agency'),
(107817, 88388, 'de', 'name', 'Nationale Einrichtung für Radioaktive Abfälle und angereicherte Spaltmaterialien'),
(107818, 88388, 'fr', 'name', 'Organisme national des déchets radioactifs et des matières fissiles enrichies'),
(107819, 88388, 'nl', 'name', 'Nationale Instelling voor Radioactief Aval en verijkte Splijtstoffen, Nationale instelling voor radioactief afval en verrijkte Splijtstoffen'),
(107820, 88389, 'en', 'name', 'Rostov Research Institute of Microbiology and Parasitology'),
(107821, 88389, 'ru', 'name', 'Ростовский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ микробиологии Šø паразитологии'),
(107822, 88390, 'no_lang_code', 'name', 'Guru Performance (United Kingdom)'),
(107823, 88391, 'en', 'name', 'Food and Agriculture Organization of the United Nations'),
(107824, 88392, 'en', 'name', 'American College of Healthcare Architects'),
(107825, 88393, 'en', 'name', 'Argosy University'),
(107826, 88394, 'en', 'name', 'The Association of Child and Adolescent Mental Health'),
(107827, 88395, 'en', 'name', 'Institute of Atomic Physics'),
(107828, 88395, 'ro', 'name', 'Institutul de Fizică Atomică'),
(107829, 88396, 'en', 'name', 'The Ogden Trust'),
(107830, 88397, 'no_lang_code', 'name', 'FLEx (United States)'),
(107831, 88398, 'en', 'name', 'Cures Within Reach'),
(107832, 88399, 'en', 'name', 'The New Press'),
(107833, 88400, 'en', 'name', 'Royal College of Physicians of Edinburgh'),
(107834, 88401, 'en', 'name', 'Graduate University of Advanced Technology'),
(107835, 88401, 'fa', 'name', 'دانؓگاه ŲŖŲ­ŲµŪŒŁ„Ų§ŲŖ ŲŖŚ©Ł…ŪŒŁ„ŪŒ ŲµŁ†Ų¹ŲŖŪŒ و ŁŁ†Ų§ŁˆŲ±ŪŒ Ł¾ŪŒŲ“Ų±ŁŲŖŁ‡'),
(107836, 88402, 'en', 'name', 'Ministry of Higher Education Science, and Technology'),
(107837, 88402, 'sl', 'name', 'Ministrstvo za Visoko Solstvo, Znanost in Tehnologijo'),
(107838, 88403, 'en', 'name', 'Research Center for Islamic History, Art and Culture'),
(107839, 88403, 'tr', 'name', 'Islam Tarih, Sanat ve Kültür Araştırma Merkezi'),
(107840, 88404, 'en', 'name', 'Academy of Spinal Cord Injury Professionals'),
(107841, 88405, 'en', 'name', 'Kearney Agricultural Research and Extension Center'),
(107842, 88406, 'en', 'name', 'University of Puerto Rico at RĆ­o Piedras'),
(107843, 88406, 'es', 'name', 'Universidad de Puerto Rico, Recinto de RĆ­o Piedras'),
(107844, 88407, 'nl', 'name', 'Stichting ParkinsonFonds'),
(107845, 88408, 'en', 'name', 'Software Sustainability Institute'),
(107846, 88409, 'no_lang_code', 'name', 'Biological Mimetics (United States)'),
(107847, 88410, 'en', 'name', 'Tribeca Film Institute'),
(107848, 88411, 'en', 'name', 'Cured Foundation'),
(107849, 88412, 'en', 'name', 'Vermont Department of Health'),
(107850, 88413, 'en', 'name', 'Institute for Migration and Ethnic Studies'),
(107851, 88413, 'hr', 'name', 'Institut za Migracije i Narodnosti'),
(107852, 88414, 'it', 'name', 'Accademia di Belle Arti di Catanzaro'),
(107853, 88415, 'en', 'name', 'Norwegian Air Ambulance Foundation'),
(107854, 88415, 'no', 'name', 'Stiftelsen Norsk Luftambulanse'),
(107855, 88416, 'nl', 'name', 'Amersfoort Total Office B.V.'),
(107856, 88417, 'no_lang_code', 'name', 'China Coal Technology and Engineering Group Corp (China)'),
(107857, 88417, 'zh', 'name', 'äø­å›½ē…¤ē‚­ē§‘å·„é›†å›¢ęœ‰é™å…¬åø'),
(107858, 88418, 'da', 'name', 'Fredericia Sygehus'),
(107859, 88419, 'es', 'name', 'Universidad Privada Juan MejĆ­a Baca'),
(107860, 88420, 'en', 'name', 'Fisheries Agency'),
(107861, 88420, 'zh', 'name', 'č”Œę”æé™¢č¾²ę„­å§”å“”ęœƒę¼ę„­ē½²'),
(107862, 88421, 'en', 'name', 'Benedict College'),
(107863, 88422, 'no_lang_code', 'name', 'Mylan (Switzerland)'),
(107864, 88423, 'en', 'name', 'French Infrastructure for Integrated Structural Biology'),
(107865, 88424, 'no_lang_code', 'name', 'BioMonde (United Kingdom)'),
(107866, 88425, 'en', 'name', 'National PKU Alliance'),
(107867, 88426, 'en', 'name', 'Hunan Vocational Institute of Technology'),
(107868, 88426, 'zh', 'name', 'ę¹–å—ē†å·„čŒäøšęŠ€ęœÆå­¦é™¢'),
(107869, 88427, 'no_lang_code', 'name', 'Celgene (Germany)'),
(107870, 88428, 'en', 'name', 'Statistical Society of Australia'),
(107871, 88429, 'da', 'name', 'Dansk Selskab for Rumfartsforskning'),
(107872, 88429, 'en', 'name', 'Danish Astronautical Society'),
(107873, 88430, 'ja', 'name', 'ć‚Øćƒ¼ć‚¶ć‚¤ę Ŗå¼ä¼šē¤¾'),
(107874, 88430, 'no_lang_code', 'name', 'Eisai (United States)'),
(107875, 88431, 'en', 'name', 'Florida Department of State'),
(107876, 88432, 'en', 'name', 'Associated Colleges of the Midwest'),
(107877, 88433, 'en', 'name', 'Biotechnology Innovation Organization'),
(107878, 88434, 'no_lang_code', 'name', 'CooperVision (United States)'),
(107879, 88435, 'no_lang_code', 'name', 'Forestia (Norway)'),
(107880, 88436, 'en', 'name', 'Nottingham Biomedical Research Centre'),
(107881, 88437, 'en', 'name', 'Bath Royal Literary and Scientific Institution'),
(107882, 88438, 'en', 'name', 'Institute of Refrigeration'),
(107883, 88439, 'de', 'name', 'Kantonsschule Rychenberg'),
(107884, 88440, 'en', 'name', 'The Abbeyfield Research Foundation'),
(107885, 88441, 'en', 'name', 'Obour Institutes'),
(107886, 88442, 'de', 'name', 'Daimler und Benz Stiftung'),
(107887, 88442, 'en', 'name', 'Daimler and Benz Foundation'),
(107888, 88443, 'en', 'name', 'Argosy University, Twin Cities'),
(107889, 88444, 'en', 'name', 'Singapore Bioimaging Consortium'),
(107890, 88445, 'en', 'name', 'Technological University Hmawbi'),
(107891, 88446, 'no_lang_code', 'name', 'Dignify Therapeutics (United States)'),
(107892, 88447, 'en', 'name', 'Dr. Somervell Memorial CSI Medical College and Hospital'),
(107893, 88448, 'no_lang_code', 'name', 'Ineos (United Kingdom)'),
(107894, 88449, 'en', 'name', 'Midwestern University'),
(107895, 88450, 'no_lang_code', 'name', 'Fios Genomics (United Kingdom)'),
(107896, 88451, 'en', 'name', 'Diakonhjemmet Foundation'),
(107897, 88452, 'en', 'name', 'Austrian Development Agency'),
(107898, 88453, 'no_lang_code', 'name', 'Blue Belt Technologies (United States)'),
(107899, 88454, 'en', 'name', 'Chamberlain College of Nursing'),
(107900, 88455, 'en', 'name', 'West Ukrainian National University'),
(107901, 88455, 'uk', 'name', 'Š—Š°Ń…Ń–Š“Š½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(107902, 88456, 'en', 'name', 'Ivan Ziaziun Institute of Pedagogical Education and Adult Education of the National Academy of Pedagogical Sciences of Ukraine'),
(107903, 88456, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ пеГагогічної освіти і освіти Горослих імені Івана Š—ŃŠ·ŃŽŠ½Š° ŠŠŠŸŠ України'),
(107904, 88457, 'en', 'name', 'National Center for Genetic Engineering and Biotechnology'),
(107905, 88458, 'en', 'name', 'Union Institute & University'),
(107906, 88459, 'en', 'name', 'The Fertilizer Institute'),
(107907, 88460, 'en', 'name', 'Moredun Research Institute'),
(107908, 88461, 'en', 'name', 'Chongqing Cancer Hospital'),
(107909, 88461, 'zh', 'name', 'é‡åŗ†åø‚č‚æē˜¤ē ”ē©¶ę‰€'),
(107910, 88462, 'en', 'name', 'Smell & Taste Treatment and Research Foundation'),
(107911, 88463, 'en', 'name', 'Evelyn Trust'),
(107912, 88464, 'en', 'name', 'Life & Peace Institute'),
(107913, 88465, 'en', 'name', 'Planetary Society'),
(107914, 88466, 'en', 'name', 'Manufacturing Academy of Denmark'),
(107915, 88467, 'en', 'name', 'National Marine Environmental Forecasting Center'),
(107916, 88467, 'zh', 'name', 'ēš„å›½å®¶ęµ·ę“‹ēŽÆå¢ƒé¢„ęŠ„äø­åæƒ'),
(107917, 88468, 'en', 'name', 'World Resources Institute'),
(107918, 88469, 'en', 'name', 'Guangzhou Hospital of Traditional Chinese Medicine'),
(107919, 88470, 'en', 'name', 'Guangzhou Institute of Energy Conversion'),
(107920, 88470, 'zh', 'name', 'å¹æå·žčƒ½ęŗē ”ē©¶ę‰€'),
(107921, 88471, 'en', 'name', 'KFAI'),
(107922, 88472, 'en', 'name', 'Nha Trang University'),
(107923, 88472, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Nha Trang'),
(107924, 88473, 'en', 'name', 'University of Hong Kong - Shenzhen Hospital'),
(107925, 88473, 'zh', 'name', 'é¦™ęøÆå¤§å­¦ę·±åœ³åŒ»é™¢'),
(107926, 88474, 'en', 'name', 'MNR Dental College and Hospital'),
(107927, 88475, 'fr', 'name', 'Laboratoire de Recherche en Sciences VƩgƩtales'),
(107928, 88476, 'en', 'name', 'PATH To Reading'),
(107929, 88477, 'no_lang_code', 'name', 'G1 Therapeutics (United States)'),
(107930, 88478, 'en', 'name', 'Spirit Mountain Community Fund'),
(107931, 88479, 'en', 'name', 'USF Health Byrd Alzheimer''s Institute'),
(107932, 88480, 'en', 'name', 'Oregon Health and Science University Hospital'),
(107933, 88481, 'en', 'name', 'University of Granma'),
(107934, 88481, 'es', 'name', 'Universidad de Granma'),
(107935, 88482, 'en', 'name', 'Canadian Partnership Against Cancer'),
(107936, 88483, 'no', 'name', 'Lyngdal kommune'),
(107937, 88484, 'en', 'name', 'African Federation for Emergency Medicine'),
(107938, 88485, 'en', 'name', 'Psoriasis Association'),
(107939, 88486, 'en', 'name', 'Australian Communications and Media Authority'),
(107940, 88487, 'en', 'name', 'National Institute of Food Technology Entrepreneurship and Management'),
(107941, 88487, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤–ą¤¾ą¤¦ą„ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤‰ą¤§ą¤®ą¤¶ą„€ą¤²ą¤¤ą¤¾ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(107942, 88488, 'en', 'name', 'University of Computer Engineering and Telecommunications'),
(107943, 88489, 'nl', 'name', 'Fonds Psychische Gezondheid'),
(107944, 88490, 'en', 'name', 'Paulo Foundation'),
(107945, 88490, 'fi', 'name', 'Paulon SƤƤtiƶ'),
(107946, 88491, 'en', 'name', 'Chulabhorn Graduate Institute'),
(107947, 88491, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąøšąø±ąø“ąø‘ąø“ąø•ąøØąø¶ąøąø©ąø²ąøˆąøøąø¬ąø²ąø ąø£ąø“ą¹Œ'),
(107948, 88492, 'en', 'name', 'Queen Elizabeth Hospital Birmingham'),
(107949, 88493, 'no_lang_code', 'name', 'Cristalia (Brazil)'),
(107950, 88494, 'de', 'name', 'Fachhochschule für Rechtspflege Schwetzingen'),
(107951, 88494, 'en', 'name', 'Schwetzingen Technical Institute & Graduate Court Registrars'' College'),
(107952, 88495, 'en', 'name', 'Milton and Tamar Maltz Family Foundation'),
(107953, 88496, 'no_lang_code', 'name', 'Scottish Power (United Kingdom)'),
(107954, 88497, 'fr', 'name', 'Haute Ɖcole de SantĆ© Vaud'),
(107955, 88498, 'en', 'name', 'Pharmac'),
(107956, 88499, 'no_lang_code', 'name', 'Bhaikaka University'),
(107957, 88500, 'en', 'name', 'Covenant Hospice'),
(107958, 88501, 'en', 'name', 'Tokyo University of Marine Science and Technology'),
(107959, 88501, 'ja', 'name', 'ę±äŗ¬ęµ·ę“‹å¤§å­¦'),
(107960, 88502, 'sv', 'name', 'Carl Tryggers stiftelse fƶr vetenskaplig forskning'),
(107961, 88503, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų£Ų³ŁˆŲ§Ł†'),
(107962, 88503, 'en', 'name', 'Aswan University'),
(107963, 88504, 'en', 'name', 'Robert and Joan Dircks Foundation'),
(107964, 88505, 'en', 'name', 'EEG & Clinical Neuroscience Society'),
(107965, 88506, 'en', 'name', 'Nuclear Threat Initiative'),
(107966, 88507, 'no_lang_code', 'name', 'British Association of Plastic, Reconstructive and Aesthetic Surgeons'),
(107967, 88508, 'en', 'name', 'Pacific Salmon Foundation'),
(107968, 88509, 'en', 'name', 'National Remote Sensing Centre'),
(107969, 88509, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„ą¤¦ą„‚ą¤° ą¤øą¤‚ą¤µą„‡ą¤¦ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(107970, 88509, 'te', 'name', 'ą°Øą±‡ą°·ą°Øą°²ą± ą°°ą°æą°®ą±‹ą°Ÿą± ą°øą±†ą°Øą±ą°øą°æą°‚ą°—ą± ą°øą±†ą°‚ą°Ÿą°°ą±'),
(107971, 88510, 'de', 'name', 'Berliner Institut für Gesundheitsforschung'),
(107972, 88510, 'en', 'name', 'Berlin Institute of Health at CharitƩ - UniversitƤtsmedizin Berlin'),
(107973, 88511, 'nl', 'name', 'Koninklijk Nederlands Genootschap voor Fysiotherapie'),
(107974, 88512, 'no_lang_code', 'name', 'Amneal (United States)'),
(107975, 88513, 'en', 'name', 'Bone Health and Osteoporosis Foundation'),
(107976, 88514, 'no_lang_code', 'name', 'SuperGen (United States)'),
(107977, 88515, 'en', 'name', 'Monroe Center'),
(107978, 88516, 'en', 'name', 'The Little Foundation'),
(107979, 88517, 'de', 'name', 'Höhere Bundeslehranstalt und Bundesamt für Wein- und Obstbau'),
(107980, 88518, 'en', 'name', 'University of Wisconsin-Green Bay, Manitowoc'),
(107981, 88518, 'fr', 'name', 'UniversitƩ du wisconsin Ơ manitowoc'),
(107982, 88519, 'cs', 'name', 'VysokÔ Ŕkola NEWTON'),
(107983, 88519, 'en', 'name', 'NEWTON University'),
(107984, 88520, 'no_lang_code', 'name', 'Garrad Hassan and Partners'),
(107985, 88521, 'en', 'name', 'Beijing Institute of Genomics'),
(107986, 88521, 'zh', 'name', 'åŒ—äŗ¬åŸŗå› ē»„ē ”ē©¶ę‰€'),
(107987, 88522, 'en', 'name', 'Wassit University'),
(107988, 88523, 'en', 'name', 'National Nuclear Energy Agency of Indonesia'),
(107989, 88523, 'id', 'name', 'Badan Tenaga Nuklir Nasional'),
(107990, 88524, 'en', 'name', 'Alice Kleberg Reynolds Foundation'),
(107991, 88525, 'en', 'name', 'University of Creation Art, Music & Social Work'),
(107992, 88525, 'ja', 'name', '創造学園大学'),
(107993, 88526, 'en', 'name', 'National CMV Foundation'),
(107994, 88527, 'en', 'name', 'Arkansas Department of Education'),
(107995, 88528, 'no_lang_code', 'name', 'Northern Telecom (Ireland)'),
(107996, 88529, 'en', 'name', 'Japanese Red Cross Musashino Junior College Of Nursing'),
(107997, 88529, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ę­¦č”µé‡ŽēŸ­ęœŸå¤§å­¦'),
(107998, 88530, 'en', 'name', 'First Affiliated Hospital of University of South China'),
(107999, 88531, 'no_lang_code', 'name', 'Chromasun (United States)'),
(108000, 88532, 'no_lang_code', 'name', 'Spheryx (United States)'),
(108001, 88533, 'en', 'name', 'Gonbad Kavous University'),
(108002, 88534, 'en', 'name', 'Helmholtz International Center for FAIR'),
(108003, 88535, 'en', 'name', 'Doerenkamp-Zbinden Foundation'),
(108004, 88536, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للصناعات Ų§Ł„Ł…Ų¹ŲÆŁ†ŁŠŲ© (المغرب)'),
(108005, 88536, 'en', 'name', 'National School of Mineral Industry'),
(108006, 88536, 'fr', 'name', 'Ɖcole nationale de l''industrie minĆ©rale'),
(108007, 88537, 'en', 'name', 'Shanghai First People''s Hospital'),
(108008, 88538, 'sv', 'name', 'BesƶksnƤringens Forsknings- Och Utvecklingsfond'),
(108009, 88539, 'en', 'name', 'State Historical Society of Missouri'),
(108010, 88540, 'de', 'name', 'Max-Planck-Institut für Experimentelle Medizin'),
(108011, 88540, 'en', 'name', 'Max Planck Institute of Experimental Medicine'),
(108012, 88541, 'en', 'name', 'Don Mariano Marcos Memorial State University'),
(108013, 88542, 'no_lang_code', 'name', 'UnitedHealth Group (United States)'),
(108014, 88543, 'en', 'name', 'Southwest Scoliosis Institute'),
(108015, 88544, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© كفر Ų§Ł„Ų“ŁŠŲ®'),
(108016, 88544, 'no_lang_code', 'name', 'Kafrelsheikh University'),
(108017, 88545, 'ja', 'name', 'ę—„ęœ¬IDDMćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(108018, 88545, 'no_lang_code', 'name', 'Japan IDDM network'),
(108019, 88546, 'it', 'name', 'Centro Interuniversitario ABITA'),
(108020, 88547, 'no_lang_code', 'name', 'Nanyang Polytechnic'),
(108021, 88548, 'no_lang_code', 'name', 'Universitas Istropolitana'),
(108022, 88549, 'en', 'name', 'Institute of General and Physical Chemistry'),
(108023, 88549, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¾ŠæŃˆŃ‚Ńƒ Šø Ń„ŠøŠ·ŠøŃ‡ŠŗŃƒ Ń…ŠµŠ¼ŠøŃ˜Ńƒ'),
(108024, 88550, 'no_lang_code', 'name', 'F-star (United Kingdom)'),
(108025, 88551, 'en', 'name', 'European Meteorological Society'),
(108026, 88552, 'en', 'name', 'Danish Data Archives'),
(108027, 88553, 'no_lang_code', 'name', 'Jiangsu Hengrui Medicine (China)'),
(108028, 88553, 'zh', 'name', 'ę±Ÿč‹ę’ē‘žåŒ»čÆ'),
(108029, 88554, 'en', 'name', 'Silicon Valley Education Foundation'),
(108030, 88555, 'en', 'name', 'Society for Cardiovascular Magnetic Resonance'),
(108031, 88556, 'en', 'name', 'Dalian National Laboratory for Clean Energy'),
(108032, 88557, 'en', 'name', 'Sadjad University of Technology'),
(108033, 88557, 'fa', 'name', 'دانؓگاه ŲµŁ†Ų¹ŲŖŪŒ Ų³Ų¬Ų§ŲÆ'),
(108034, 88558, 'en', 'name', 'Indigenous Services Canada'),
(108035, 88558, 'fr', 'name', 'Services aux Autochtones Canada'),
(108036, 88559, 'en', 'name', 'Connecticut Breast Health Initiative'),
(108037, 88560, 'en', 'name', 'Levine Children''s Hospita'),
(108038, 88561, 'en', 'name', 'Roberts Enterprise Development Fund'),
(108039, 88562, 'en', 'name', 'Bassett Medical Center'),
(108040, 88563, 'en', 'name', 'Central Scientific Instruments Organisation'),
(108041, 88563, 'hi', 'name', 'ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• उपकरण संगठन'),
(108042, 88564, 'ar', 'name', 'جـامعة الجنان'),
(108043, 88564, 'en', 'name', 'Jinan University'),
(108044, 88565, 'en', 'name', 'Kostroma State Technological University'),
(108045, 88565, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ ŠæŃ€Š¾Ń„ŠµŃŃŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ¾Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108046, 88566, 'no_lang_code', 'name', 'HAL Allergy (Netherlands)'),
(108047, 88567, 'no_lang_code', 'name', 'Inrad Optics (United States)'),
(108048, 88568, 'en', 'name', 'SuperSTEM'),
(108049, 88569, 'en', 'name', 'International Society for Stem Cell Research'),
(108050, 88570, 'no_lang_code', 'name', 'WorldFish'),
(108051, 88571, 'en', 'name', 'Augustana College'),
(108052, 88572, 'en', 'name', 'Health Sciences North'),
(108053, 88573, 'no_lang_code', 'name', 'Innovia Films (United Kingdom)'),
(108054, 88574, 'en', 'name', 'Hospital of Stomatology, Sun Yat-sen University'),
(108055, 88574, 'zh', 'name', 'äø­å±±å¤§å­¦é™„å±žå£č…”åŒ»é™¢'),
(108056, 88575, 'no', 'name', 'Norsk Revmatikerforbund'),
(108057, 88576, 'en', 'name', 'Huizhou Central People''s Hospital'),
(108058, 88576, 'zh', 'name', 'ęƒ å·žåø‚äø­åæƒäŗŗę°‘åŒ»é™¢'),
(108059, 88577, 'en', 'name', 'Connecticut Bar Foundation'),
(108060, 88578, 'en', 'name', 'Tokyo Biochemical Research Foundation'),
(108061, 88578, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ę±äŗ¬ē”ŸåŒ–å­¦ē ”ē©¶ä¼š'),
(108062, 88579, 'no_lang_code', 'name', 'Bayer CropScience (Netherlands)'),
(108063, 88580, 'en', 'name', 'United Nations Population Fund'),
(108064, 88581, 'de', 'name', 'Leibniz-Institut für Bildungsverläufe e.V.'),
(108065, 88581, 'en', 'name', 'Leibniz Institute for Educational Trajectories'),
(108066, 88582, 'no_lang_code', 'name', 'Amphenol (United Kingdom)'),
(108067, 88583, 'en', 'name', 'Swedish Water & Wastewater Association'),
(108068, 88584, 'en', 'name', 'Citrus Research International'),
(108069, 88585, 'en', 'name', 'People''s Government of Yunnan Province'),
(108070, 88585, 'zh', 'name', 'äŗ‘å—ēœäŗŗę°‘ę”æåŗœ'),
(108071, 88586, 'en', 'name', 'Oxford Health NHS Foundation Trust'),
(108072, 88587, 'en', 'name', 'Haematology Society of Australia and New Zealand'),
(108073, 88588, 'en', 'name', 'Chartered Institute of Ecology and Environmental Management'),
(108074, 88589, 'en', 'name', 'Kherson State University'),
(108075, 88589, 'pl', 'name', 'Chersoński Uniwersytet Państwowy'),
(108076, 88589, 'ru', 'name', 'Єерсонский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108077, 88589, 'uk', 'name', 'Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠøŠ¹ Гержавний унiверситет'),
(108078, 88590, 'en', 'name', 'Central Institute of Fisheries Technology'),
(108079, 88591, 'ja', 'name', 'ę—„ęœ¬ćƒ”ć‚øćƒ•ć‚£ć‚øćƒƒć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(108080, 88591, 'no_lang_code', 'name', 'Nihon Medi-Physics (Japan)'),
(108081, 88592, 'en', 'name', 'National University of Civil Protection of Ukraine'),
(108082, 88592, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń†ŠøŠ²Ń–Š»ŃŒŠ½Š¾Š³Š¾ Š·Š°Ń…ŠøŃŃ‚Ńƒ України'),
(108083, 88593, 'en', 'name', 'Nakhon Si Thammarat Rajabhat University'),
(108084, 88593, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø™ąø„ąø£ąøØąø£ąøµąø˜ąø£ąø£ąø”ąø£ąø²ąøŠ'),
(108085, 88594, 'en', 'name', 'Dutch Diabetes Research Foundation'),
(108086, 88595, 'no_lang_code', 'name', 'EA Pharma (Japan)'),
(108087, 88596, 'no_lang_code', 'name', 'Mistras Group (United States)'),
(108088, 88597, 'en', 'name', 'Independent Age'),
(108089, 88598, 'en', 'name', 'Marianne and Marcus Wallenberg Foundation'),
(108090, 88599, 'en', 'name', 'Oregon Watershed Enhancement Board'),
(108091, 88600, 'en', 'name', 'Lung Cancer Online Foundation'),
(108092, 88601, 'en', 'name', 'Rutgers University–Camden'),
(108093, 88602, 'en', 'name', 'Sarnoff Cardiovascular Research Foundation'),
(108094, 88603, 'en', 'name', 'St Louis Community College'),
(108095, 88604, 'en', 'name', 'National Association of Chronic Disease Directors'),
(108096, 88605, 'no_lang_code', 'name', 'FEI (Norway)'),
(108097, 88606, 'en', 'name', 'Iwate Medical University'),
(108098, 88606, 'ja', 'name', 'å²©ę‰‹åŒ»ē§‘å¤§å­¦'),
(108099, 88607, 'no_lang_code', 'name', 'Australian Centre for Advanced Computing and Communications (Australia)'),
(108100, 88608, 'en', 'name', 'Geocenter Denmark'),
(108101, 88609, 'en', 'name', 'Mend a Heart Foundation'),
(108102, 88610, 'en', 'name', 'State Administration of Cultural Heritage'),
(108103, 88610, 'zh', 'name', '国家文物局'),
(108104, 88611, 'en', 'name', 'Foundation for Anesthesia Education and Research'),
(108105, 88612, 'no_lang_code', 'name', 'Cook Group (United States)'),
(108106, 88613, 'en', 'name', 'The University of Texas at El Paso'),
(108107, 88613, 'es', 'name', 'Universidad de Texas en El Paso'),
(108108, 88613, 'fr', 'name', 'UniversitƩ du texas Ơ el paso'),
(108109, 88614, 'en', 'name', 'Cooper Institute'),
(108110, 88615, 'en', 'name', 'Royal College of Physicians and Surgeons of Glasgow'),
(108111, 88616, 'en', 'name', 'Agroscope'),
(108112, 88617, 'en', 'name', 'Power Systems Engineering Research Center'),
(108113, 88618, 'en', 'name', 'University of Colorado Museum of Natural History'),
(108114, 88619, 'no_lang_code', 'name', 'Crystal Technology and Industries (United States)'),
(108115, 88620, 'no_lang_code', 'name', 'Cray (United States)'),
(108116, 88621, 'en', 'name', 'Zhejiang University of Water Resource and Electric Power'),
(108117, 88621, 'zh', 'name', 'ęµ™ę±Ÿę°“åˆ©ę°“ē”µå­¦é™¢'),
(108118, 88622, 'nl', 'name', 'G.Ph. Verhagen-Stichting'),
(108119, 88623, 'en', 'name', 'Independent Colleges and Universities of Florida'),
(108120, 88624, 'en', 'name', 'Center for Neuroscience and Regenerative Medicine'),
(108121, 88625, 'de', 'name', 'Deutsche Gesellschaft für Kieferorthopädie e.V'),
(108122, 88626, 'en', 'name', 'New Venture Fund'),
(108123, 88627, 'en', 'name', 'All-Russian Scientific Research Institute of Medicinal and Aromatic Plants'),
(108124, 88627, 'ru', 'name', 'Всероссийский ŠŠ˜Š˜ лекарственных Šø ароматических растений'),
(108125, 88628, 'en', 'name', 'Sholokhov Moscow State University for Humanities'),
(108126, 88628, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М. А. Шолохова'),
(108127, 88629, 'en', 'name', 'Tokyo City University'),
(108128, 88629, 'ja', 'name', 'ę±äŗ¬éƒ½åø‚å¤§å­¦'),
(108129, 88630, 'no_lang_code', 'name', 'GeneFluidics (United States)'),
(108130, 88631, 'en', 'name', 'Amadeu Antonio Foundation'),
(108131, 88632, 'no_lang_code', 'name', 'Constellation Pharmaceuticals (United States)'),
(108132, 88633, 'sv', 'name', 'Studiefƶrbundet NƤringsliv och SamhƤlle'),
(108133, 88634, 'no_lang_code', 'name', 'CSR (United Kingdom)'),
(108134, 88635, 'en', 'name', 'Narabunka Women''s College'),
(108135, 88635, 'ja', 'name', 'å„ˆč‰Æę–‡åŒ–å„³å­ēŸ­ęœŸå¤§å­¦'),
(108136, 88636, 'en', 'name', 'National Agricultural Research Foundation'),
(108137, 88637, 'en', 'name', 'American Hearing Research Foundation'),
(108138, 88638, 'en', 'name', 'International Visegrad Fund'),
(108139, 88639, 'no_lang_code', 'name', 'Celsis (United States)'),
(108140, 88640, 'nl', 'name', 'Janivo Stichting'),
(108141, 88641, 'en', 'name', 'State Key Laboratory of Vehicle NVH and Safety Technology'),
(108142, 88642, 'en', 'name', 'Lewis and Clark Community College'),
(108143, 88643, 'en', 'name', 'Finnish Foundation for Alcohol Studies'),
(108144, 88644, 'en', 'name', 'Princess Margaret Hospital for Children'),
(108145, 88645, 'en', 'name', 'Helicopter Association International'),
(108146, 88646, 'ro', 'name', 'Universitatea Petrol Si Gaze Ploiesti'),
(108147, 88647, 'en', 'name', 'Luke Neuhedel Foundation'),
(108148, 88648, 'en', 'name', 'Irrua Specialist Teaching Hospital'),
(108149, 88649, 'es', 'name', 'Centro Universitario JosƩ Vasconcelos'),
(108150, 88650, 'en', 'name', 'Kirtland Air Force Base'),
(108151, 88651, 'pl', 'name', 'Lasy Państwowe'),
(108152, 88652, 'nl', 'name', 'Fonds NutsOhra, Stichting Fonds NutsOhra'),
(108153, 88653, 'no_lang_code', 'name', 'Aegerion Pharmaceuticals (United States)'),
(108154, 88654, 'en', 'name', 'Gaston College'),
(108155, 88655, 'no_lang_code', 'name', 'ArboraNano'),
(108156, 88656, 'no_lang_code', 'name', 'Teledyne Technologies (United Kingdom)'),
(108157, 88657, 'en', 'name', 'Jaeb Center for Health Research'),
(108158, 88658, 'en', 'name', 'International OCD Foundation'),
(108159, 88659, 'en', 'name', 'Saga University'),
(108160, 88659, 'ja', 'name', '佐賀大学'),
(108161, 88660, 'en', 'name', 'Alberta Milk'),
(108162, 88661, 'de', 'name', 'Bundessortenamt'),
(108163, 88661, 'en', 'name', 'Federal Plant Variety Office'),
(108164, 88662, 'en', 'name', 'National Federation of Palm Oil Producers'),
(108165, 88662, 'es', 'name', 'Federación Nacional de Cultivadores de Palma de Aceite'),
(108166, 88663, 'en', 'name', 'National Heart Centre Singapore'),
(108167, 88664, 'en', 'name', 'Gombe State University'),
(108168, 88665, 'en', 'name', 'Pok Oi Hospital'),
(108169, 88665, 'zh', 'name', 'åšę„›é†«é™¢'),
(108170, 88666, 'en', 'name', 'Rosalind Franklin University of Medicine and Science'),
(108171, 88667, 'en', 'name', 'Russian State University of Trade and Economics'),
(108172, 88668, 'en', 'name', 'Council for At-Risk Academics'),
(108173, 88669, 'en', 'name', 'National Institute of Immunology'),
(108174, 88670, 'en', 'name', 'VA Healthcare-VISN 4'),
(108175, 88671, 'it', 'name', 'Consorzio per la Ricerca Sanitaria'),
(108176, 88672, 'en', 'name', 'Carol Davila University of Medicine and Pharmacy'),
(108177, 88672, 'ro', 'name', 'Universitatea de Medicină și Farmacie Carol Davila'),
(108178, 88673, 'no_lang_code', 'name', 'Mylan (Germany)'),
(108179, 88674, 'en', 'name', 'Al-Qalam University Katsina'),
(108180, 88675, 'en', 'name', 'Sarcoma Alliance for Research through Collaboration'),
(108181, 88676, 'en', 'name', 'Neurosurgery Research & Education Foundation'),
(108182, 88677, 'en', 'name', 'San Diego Zoo Institute for Conservation Research'),
(108183, 88678, 'en', 'name', 'North American University'),
(108184, 88679, 'en', 'name', 'Solent NHS Trust'),
(108185, 88680, 'en', 'name', 'The Kinghorn Cancer Centre'),
(108186, 88681, 'en', 'name', 'American Australian Association'),
(108187, 88682, 'en', 'name', 'Arctic Yukon Kuskokwim Sustainable Salmon Initiative'),
(108188, 88683, 'no_lang_code', 'name', 'Foster Wheeler (United Kingdom)'),
(108189, 88684, 'en', 'name', 'New Mongol Institute of Technology'),
(108190, 88684, 'mn', 'name', 'ŠØŠøŠ½Ń Монгол Технологийн Š“ŃŃŠ“ ŃŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(108191, 88685, 'en', 'name', 'University of Central Punjab'),
(108192, 88685, 'ur', 'name', 'جامعہ وسطی پنجاب'),
(108193, 88686, 'en', 'name', 'Thu Duc City Hospital'),
(108194, 88686, 'vi', 'name', 'Bệnh viện thĆ nh phố Thį»§ Đức'),
(108195, 88687, 'en', 'name', 'Wolfsonian Florida International University'),
(108196, 88688, 'no_lang_code', 'name', 'Petromat'),
(108197, 88688, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œąø„ąø§ąø²ąø”ą¹€ąø›ą¹‡ąø™ą¹€ąø„ąø“ąøØąø”ą¹‰ąø²ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø›ąø“ą¹‚ąø•ąø£ą¹€ąø„ąø”ąøµą¹ąø„ąø°ąø§ąø±ąøŖąø”ąøø'),
(108198, 88689, 'en', 'name', 'Ernest Gallo Clinic and Research Center'),
(108199, 88690, 'fr', 'name', 'La Coop FƩdƩrƩe'),
(108200, 88691, 'de', 'name', 'Ɩsterreichische Kardiologische Gesellschaft'),
(108201, 88691, 'en', 'name', 'Austrian Society of Cardiology'),
(108202, 88692, 'en', 'name', 'Indian Institute of Petroleum'),
(108203, 88693, 'en', 'name', 'All - Russian Scientific Research Institute of Tobacco, Makhorka and Tobacco Products'),
(108204, 88693, 'ru', 'name', 'ŠŠŠ£Š§ŠŠžŠ• Š£Š§Š Š•Š–Š”Š•ŠŠ˜Š• Š’Š”Š•Š ŠžŠ”Š”Š˜Š™Š”ŠšŠ˜Š™ ŠŠŠ£Š§ŠŠž-Š˜Š”Š”Š›Š•Š”ŠžŠ’ŠŠ¢Š•Š›Š¬Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ Š¢ŠŠ‘ŠŠšŠ, ŠœŠŠ„ŠžŠ ŠšŠ˜ И Š¢ŠŠ‘ŠŠ§ŠŠ«Š„ Š˜Š—Š”Š•Š›Š˜Š™'),
(108205, 88694, 'en', 'name', 'Duke University Center for International Studies'),
(108206, 88695, 'en', 'name', 'Iacocca Family Foundation'),
(108207, 88696, 'nl', 'name', 'Stichting ALS Nederland'),
(108208, 88697, 'en', 'name', 'Cancer Nurses Society of Australia'),
(108209, 88698, 'en', 'name', 'MacDiarmid Institute for Advanced Materials and Nanotechnology'),
(108210, 88699, 'no_lang_code', 'name', 'Custom Manufacturing & Engineering (United States)'),
(108211, 88700, 'en', 'name', 'Lung Foundation Netherlands'),
(108212, 88701, 'en', 'name', 'Kaohsiung Municipal Hsiao-Kang Hospital'),
(108213, 88702, 'en', 'name', 'West Texas A&M University'),
(108214, 88703, 'no_lang_code', 'name', 'Hager Sharp (United States)'),
(108215, 88704, 'en', 'name', 'Tellus Institute'),
(108216, 88705, 'en', 'name', 'Mid-America Arts Alliance'),
(108217, 88706, 'en', 'name', 'International University Of Health And Welfare Atami Hospital'),
(108218, 88706, 'ja', 'name', 'å›½éš›åŒ»ē™‚ē¦ē„‰å¤§å­¦ē†±ęµ·ē—…é™¢'),
(108219, 88707, 'no_lang_code', 'name', 'AngioDynamics (United States)'),
(108220, 88708, 'en', 'name', 'National Bureau of Economic Research'),
(108221, 88709, 'en', 'name', 'Central Inland Fisheries Research Institute'),
(108222, 88710, 'da', 'name', 'Diabetesforeningen'),
(108223, 88710, 'en', 'name', 'Danish Diabetes Association'),
(108224, 88711, 'no_lang_code', 'name', 'Alcatel-Lucent (Canada)'),
(108225, 88712, 'en', 'name', 'Robertson Foundation'),
(108226, 88713, 'el', 'name', '΄πουργείο Αγροτικής Ανάπτυξης και Τροφίμων'),
(108227, 88713, 'en', 'name', 'Hellenic Ministry of Rural Development and Food'),
(108228, 88714, 'it', 'name', 'Fondazione Cassa di Risparmio di Lucca'),
(108229, 88715, 'en', 'name', 'Yunnan Provincial Department of Transportation'),
(108230, 88715, 'zh', 'name', 'äŗ‘å—ēœäŗ¤é€ščæč¾“åŽ…'),
(108231, 88716, 'en', 'name', 'Montana Academy of Sciences'),
(108232, 88717, 'en', 'name', 'Scottsdale Lincoln Health Network'),
(108233, 88718, 'no_lang_code', 'name', 'Alverno College'),
(108234, 88719, 'no_lang_code', 'name', 'Rottapharm (Germany)'),
(108235, 88720, 'en', 'name', 'Weifang University of Science and Technology'),
(108236, 88721, 'es', 'name', 'Centro Tecnológico de la Industria CÔrnica de La Rioja'),
(108237, 88722, 'en', 'name', 'European Academy of Neurology'),
(108238, 88723, 'en', 'name', 'Knox College'),
(108239, 88724, 'en', 'name', 'Autonomous University of Tamaulipas'),
(108240, 88724, 'es', 'name', 'Universidad Autónoma de Tamaulipas'),
(108241, 88725, 'de', 'name', 'Internationale Stiftung fur Forschung in Paraplegie'),
(108242, 88725, 'en', 'name', 'International Foundation for Research in Paraplegia'),
(108243, 88725, 'fr', 'name', 'Fondation internationale pour la recherche en paraplƩgie'),
(108244, 88726, 'en', 'name', 'Islamic Azad University of Tabriz'),
(108245, 88726, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تبریز'),
(108246, 88727, 'en', 'name', 'Williams Syndrome Foundation'),
(108247, 88728, 'en', 'name', 'Indiana Wesleyan University'),
(108248, 88729, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الفرات Ų§Ł„Ų§ŁˆŲ³Ų· Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(108249, 88729, 'en', 'name', 'Al-Furat Al-Awsat Technical University'),
(108250, 88730, 'en', 'name', 'J. Armand Bombardier Foundation'),
(108251, 88731, 'en', 'name', 'International Union for the Scientific Study of Population'),
(108252, 88732, 'en', 'name', 'keiyu Hospital'),
(108253, 88732, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē„žå„ˆå·ēœŒč­¦å‹ä¼šć‘ć„ć‚†ć†ē—…é™¢'),
(108254, 88733, 'en', 'name', 'Foundation for Liver and Gastrointestinal Research'),
(108255, 88733, 'nl', 'name', 'Stichting voor Lever- en Maag-Darm Onderzoek'),
(108256, 88734, 'es', 'name', 'Centro de Investigación Biomédica en Red de Fragilidad y Envejecimiento Saludable'),
(108257, 88735, 'en', 'name', 'Bank of Finland'),
(108258, 88735, 'fi', 'name', 'Suomen Pankki'),
(108259, 88735, 'sv', 'name', 'Finlands Bank'),
(108260, 88736, 'nl', 'name', 'Centraal Instituut voor Toetsontwikkeling'),
(108261, 88736, 'no_lang_code', 'name', 'Cito (Netherlands)'),
(108262, 88737, 'en', 'name', 'Australia Council for the Arts'),
(108263, 88738, 'en', 'name', 'Kagawa University'),
(108264, 88738, 'ja', 'name', '香川大学'),
(108265, 88739, 'no_lang_code', 'name', 'Deutsches Windenergie Institut'),
(108266, 88740, 'en', 'name', 'American Dairy Science Association'),
(108267, 88741, 'en', 'name', 'State University of Maranhão'),
(108268, 88741, 'pt', 'name', 'Universidade Estadual do Maranhão'),
(108269, 88742, 'pt', 'name', 'Sociedade Portuguesa de Vida Selvagem'),
(108270, 88743, 'en', 'name', 'Institute for European Environmental Policy'),
(108271, 88744, 'id', 'name', 'Universitas Teknologi Yogyakarta'),
(108272, 88745, 'en', 'name', 'Institution of Structural Engineers'),
(108273, 88746, 'es', 'name', 'Instituto de BiologĆ­a Subtropical'),
(108274, 88747, 'en', 'name', 'Holt Radium Institute'),
(108275, 88748, 'en', 'name', 'Materials Research Society'),
(108276, 88749, 'en', 'name', 'Korea Disease Control and Prevention Agency'),
(108277, 88749, 'ko', 'name', 'ģ§ˆė³‘ź“€ė¦¬ģ²­'),
(108278, 88750, 'nl', 'name', 'Tekke Huizinga Fonds'),
(108279, 88751, 'fa', 'name', 'تناݢ Ł†Ų§Ų³ŁŠŁˆŁ†Ł„ ŲØŲ±Ų­ŲÆ'),
(108280, 88751, 'no_lang_code', 'name', 'Tenaga Nasional Berhad (Malaysia)'),
(108281, 88752, 'en', 'name', 'CancerFree KIDS'),
(108282, 88753, 'en', 'name', 'Stanislaw Staszic College of Public Administration'),
(108283, 88754, 'no_lang_code', 'name', 'Vanguard International Semiconductor (Taiwan)'),
(108284, 88754, 'zh', 'name', 'äø–ē•Œå…ˆé€²ē©é«”é›»č·Æč‚”ä»½ęœ‰é™å…¬åø'),
(108285, 88755, 'en', 'name', 'Shantou Central Hospital'),
(108286, 88755, 'zh', 'name', 'ę±•å¤“åø‚äø­åæƒåŒ»é™¢'),
(108287, 88756, 'fr', 'name', 'Centre d’études et de Recherches sur l’espace Germanophone'),
(108288, 88757, 'en', 'name', 'University of Minnesota Medical School'),
(108289, 88758, 'no_lang_code', 'name', 'Rockwell Collins (United Kingdom)'),
(108290, 88759, 'en', 'name', 'Fukuoka Social Medical Welfare University'),
(108291, 88759, 'ja', 'name', 'ē¦å²”åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(108292, 88760, 'no_lang_code', 'name', 'Brennan & Company (Ireland)'),
(108293, 88761, 'de', 'name', 'Max-Planck-Institut für Radioastronomie'),
(108294, 88761, 'en', 'name', 'Max Planck Institute for Radio Astronomy'),
(108295, 88762, 'en', 'name', 'National Center for Victims of Crime'),
(108296, 88763, 'en', 'name', 'Saint Joseph Hospital'),
(108297, 88764, 'no_lang_code', 'name', 'Catacel (United States)'),
(108298, 88765, 'en', 'name', 'Whitman Hospital & Medical Center'),
(108299, 88766, 'en', 'name', 'SENS Research Foundation'),
(108300, 88767, 'no_lang_code', 'name', 'Guanghua Hospital'),
(108301, 88768, 'no_lang_code', 'name', 'Mylan (Italy)'),
(108302, 88769, 'no_lang_code', 'name', 'BioFire Diagnostics (United States)'),
(108303, 88770, 'en', 'name', 'Lincoln Institute of Land Policy'),
(108304, 88771, 'sl', 'name', 'Univerzitetno SrediŔče Novo mesto'),
(108305, 88772, 'en', 'name', 'National Interuniversity Consortium of Materials Science and Technology'),
(108306, 88772, 'it', 'name', 'Consorzio Interuniversitario Nazionale per la Scienza e Tecnologia dei Materiali'),
(108307, 88773, 'en', 'name', 'Charcot-Marie-Tooth Association'),
(108308, 88774, 'en', 'name', 'Taipei Medical University-Shuang Ho Hospital'),
(108309, 88775, 'en', 'name', 'American Geographical Society'),
(108310, 88776, 'de', 'name', 'Helmholtz-Institut Freiberg für Ressourcentechnologie'),
(108311, 88776, 'en', 'name', 'Helmholtz Institute Freiberg for Resource Technology'),
(108312, 88777, 'en', 'name', 'The William Buckland Foundation'),
(108313, 88778, 'en', 'name', 'Netherlands Interdisciplinary Demographic Institute'),
(108314, 88778, 'nl', 'name', 'Nederlands Interdisciplinair Demografisch Instituut'),
(108315, 88779, 'fr', 'name', 'Association Philippe Jabre'),
(108316, 88780, 'en', 'name', 'Zigong First People''s Hospital'),
(108317, 88780, 'zh', 'name', 'č‡Ŗč“”åø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(108318, 88781, 'sv', 'name', 'Ella and Georg Ehrnrooth Foundation'),
(108319, 88782, 'en', 'name', 'Society for Agriculture and Arid Ecology Research'),
(108320, 88782, 'hi', 'name', 'ą¤•ą„ƒą¤·ą¤æ ą¤ą¤µą¤‚ ą¤¶ą„ą¤·ą„ą¤• ą¤Ŗą¤¾ą¤°ą¤æą¤øą„ą¤„ą¤æą¤¤ą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą„‹ą¤øą¤¾ą¤‡ą¤Ÿą„€'),
(108321, 88783, 'en', 'name', 'Nanjing General Hospital of Nanjing Military Command'),
(108322, 88783, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›å—äŗ¬å†›åŒŗå—äŗ¬ę€»åŒ»é™¢'),
(108323, 88784, 'no_lang_code', 'name', 'Dominica State College'),
(108324, 88785, 'no_lang_code', 'name', 'Advatech Pacific (United States)'),
(108325, 88786, 'en', 'name', 'Cardinal Tien Hospital'),
(108326, 88786, 'zh', 'name', 'č€•čŽ˜åŒ»é™¢'),
(108327, 88787, 'en', 'name', 'Nando Peretti Foundation'),
(108328, 88787, 'it', 'name', 'Fondazione Nando ed Elsa Peretti'),
(108329, 88788, 'en', 'name', 'CHAS Health'),
(108330, 88789, 'en', 'name', 'Genesis Research Institute'),
(108331, 88790, 'en', 'name', 'Cap Digital'),
(108332, 88791, 'en', 'name', 'University of Wisconsin Green Bay – Sheboygan'),
(108333, 88792, 'en', 'name', 'National Institute of Meteorological Sciences'),
(108334, 88792, 'ko', 'name', 'źµ­ė¦½źø°ģƒź³¼ķ•™ģ›'),
(108335, 88793, 'no_lang_code', 'name', 'General Cable (United States)'),
(108336, 88794, 'en', 'name', 'University of South Carolina Salkehatchie'),
(108337, 88795, 'en', 'name', 'Saint Francis de Sales Seminary'),
(108338, 88796, 'en', 'name', 'Brain Research New Zealand'),
(108339, 88797, 'no_lang_code', 'name', 'AKL (United Kingdom)'),
(108340, 88798, 'en', 'name', 'Interactive Media Institute'),
(108341, 88799, 'en', 'name', 'University of Phoenix'),
(108342, 88800, 'no_lang_code', 'name', 'Neurocomp Systems (United States)'),
(108343, 88801, 'en', 'name', 'Life Sciences Research Board'),
(108344, 88802, 'en', 'name', 'Igenomix'),
(108345, 88803, 'en', 'name', 'Canadian Medical Hall of Fame'),
(108346, 88804, 'no_lang_code', 'name', 'ARM (United Kingdom)'),
(108347, 88805, 'no_lang_code', 'name', 'Metamagnetics (United States)'),
(108348, 88806, 'it', 'name', 'Istituto Oncologico Romagnolo'),
(108349, 88807, 'en', 'name', 'Harvard Club of Australia'),
(108350, 88808, 'en', 'name', 'Indian Institute of Art & Design'),
(108351, 88809, 'en', 'name', 'Huzhou University'),
(108352, 88810, 'no_lang_code', 'name', 'Oncor Electric Delivery (United States)'),
(108353, 88811, 'en', 'name', 'Mast Cell Disease Society'),
(108354, 88812, 'en', 'name', 'Montessori Education Center of the Rockies'),
(108355, 88813, 'en', 'name', 'National Taiwan University of Sport'),
(108356, 88813, 'zh', 'name', 'åœ‹ē«‹č‡ŗē£é«”č‚²é‹å‹•å¤§å­ø'),
(108357, 88814, 'no_lang_code', 'name', 'Acreo (Sweden)'),
(108358, 88815, 'en', 'name', 'AOSpine'),
(108359, 88816, 'en', 'name', 'Hearing Loss Association of America'),
(108360, 88817, 'en', 'name', 'Texas General Land Office'),
(108361, 88818, 'en', 'name', 'Washington Tree Fruit Research Commission'),
(108362, 88819, 'en', 'name', 'Canadian Breast Cancer Foundation'),
(108363, 88819, 'fr', 'name', 'Fondation canadienne du cancer du sein'),
(108364, 88820, 'en', 'name', 'Brain Mapping Foundation'),
(108365, 88821, 'it', 'name', 'Istituto Zooprofilattico Sperimentale delle Venezie'),
(108366, 88822, 'en', 'name', 'Directorate of Medicinal and Aromatic Plants Research'),
(108367, 88822, 'gu', 'name', 'ઔષધીય ąŖ”ąŖæąŖ°ą«‡ąŖ•ą«ąŖŸą«‹ąŖ°ą«‡ąŖŸ અને ąŖ–ą«ąŖ¶ą«ąŖ¬ą«‹ąŖ¦ąŖ¾ąŖ° છોઔ ąŖøąŖ‚ąŖ¶ą«‹ąŖ§ąŖØ'),
(108368, 88823, 'en', 'name', '1675 Foundation'),
(108369, 88824, 'en', 'name', 'The Robertson Trust'),
(108370, 88825, 'en', 'name', 'Navrongo Health Research Centre'),
(108371, 88826, 'en', 'name', 'British Columbia Children''s Hospital'),
(108372, 88827, 'en', 'name', 'Mountain States Health Alliance'),
(108373, 88828, 'en', 'name', 'Keaton Raphael Memorial'),
(108374, 88829, 'en', 'name', 'State University of New York Polytechnic Institute'),
(108375, 88830, 'en', 'name', 'Alcohol and Drug Foundation'),
(108376, 88831, 'en', 'name', 'The Retina Foundation of Canada'),
(108377, 88831, 'fr', 'name', 'Fondation De La RƩtine Du Canada'),
(108378, 88832, 'en', 'name', 'Society of Cardiovascular Anesthesiologists'),
(108379, 88833, 'no_lang_code', 'name', 'STARmed (South Korea)'),
(108380, 88834, 'en', 'name', 'Open Source Hardware Association'),
(108381, 88835, 'es', 'name', 'Universidad Tecnológica La Salle'),
(108382, 88836, 'en', 'name', 'Michigan State University Foundation'),
(108383, 88837, 'en', 'name', 'CRUK Lung Cancer Centre of Excellence'),
(108384, 88838, 'no_lang_code', 'name', 'Vascular Biogenics (Israel)'),
(108385, 88839, 'en', 'name', 'Hezhou University'),
(108386, 88839, 'zh', 'name', 'č“ŗå·žå­¦é™¢'),
(108387, 88840, 'no_lang_code', 'name', 'Ortho Clinical Diagnostics (United States)'),
(108388, 88841, 'no_lang_code', 'name', 'Windlift (United States)'),
(108389, 88842, 'en', 'name', 'Alpha Hospital Bury'),
(108390, 88843, 'no_lang_code', 'name', 'OpenAlgae (United States)'),
(108391, 88844, 'no_lang_code', 'name', 'Mylan (United States)'),
(108392, 88845, 'en', 'name', 'W. W. Smith Charitable Trust'),
(108393, 88846, 'en', 'name', 'Greenville College'),
(108394, 88847, 'en', 'name', 'Center for Dielectrics & Piezoelectrics'),
(108395, 88848, 'no_lang_code', 'name', 'Advanced Technologies and Laboratories International (United States)'),
(108396, 88849, 'en', 'name', 'Hanoi University of Science and Technology'),
(108397, 88849, 'fr', 'name', 'Institut polytechnique de hanoĆÆ'),
(108398, 88849, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c BĆ”ch khoa HĆ  Nį»™i'),
(108399, 88850, 'en', 'name', 'Autonomous State Medical College, Fatehpur'),
(108400, 88850, 'hi', 'name', 'ą¤‘ą¤Ÿą„‹ą¤Øą„‰ą¤®ą¤ø ą¤øą„ą¤Ÿą„‡ą¤Ÿ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ, ą¤«ą¤¤ą„‡ą¤¹ą¤Ŗą„ą¤°'),
(108401, 88851, 'en', 'name', 'Korean Nurses Association'),
(108402, 88851, 'ko', 'name', 'ėŒ€ķ•œź°„ķ˜øķ˜‘ķšŒ'),
(108403, 88852, 'bg', 'name', 'Тракийски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108404, 88852, 'en', 'name', 'Trakia University'),
(108405, 88853, 'en', 'name', 'Panjab University'),
(108406, 88853, 'hi', 'name', 'ą¤Ŗą¤‚ą¤œą¤¾ą¤¬ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(108407, 88853, 'pa', 'name', 'ਪੰਜਾਬ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€, ąØšą©°ąØ”ą©€ąØ—ą©œą©ąØ¹'),
(108408, 88853, 'ta', 'name', 'ą®Ŗą®žąÆą®šą®¾ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®šą®£ąÆą®Ÿą®æą®•ą®°ąÆ'),
(108409, 88854, 'en', 'name', 'LIU Post'),
(108410, 88855, 'fi', 'name', 'Turun KauppaopetussƤƤtiƶ'),
(108411, 88856, 'en', 'name', 'Hackensack Meridian Health'),
(108412, 88857, 'en', 'name', 'Baird Institute'),
(108413, 88858, 'en', 'name', 'Moi University'),
(108414, 88858, 'sw', 'name', 'Chuo Kikuu cha Moi'),
(108415, 88859, 'en', 'name', 'Northeast-Midwest Institute'),
(108416, 88860, 'en', 'name', 'Earthquake Commission'),
(108417, 88861, 'en', 'name', 'Centre of Natural Hazards and Disaster Science'),
(108418, 88862, 'no_lang_code', 'name', 'Bayer CropScience (Belgium)'),
(108419, 88863, 'it', 'name', 'Conservatorio di Musica Bruno Maderna'),
(108420, 88864, 'en', 'name', 'Department of Justice'),
(108421, 88865, 'no_lang_code', 'name', 'Multiplicom (Belgium)'),
(108422, 88866, 'no_lang_code', 'name', 'TEI Biosciences (United States)'),
(108423, 88867, 'en', 'name', 'Kazusa DNA Research Institute'),
(108424, 88867, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‹ćšć•DNA研究所'),
(108425, 88868, 'en', 'name', 'Nicholls State University'),
(108426, 88868, 'fr', 'name', 'UniversitĆ© d''Ɖtat nicholls'),
(108427, 88869, 'en', 'name', 'The Sanskrit College and University'),
(108428, 88870, 'en', 'name', 'SIR Institute for Pharmacy Practice and Policy'),
(108429, 88871, 'en', 'name', 'Letterkenny Institute of Technology'),
(108430, 88871, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta Leitir Ceanainn'),
(108431, 88872, 'en', 'name', 'Virginia Museum of Fine Arts'),
(108432, 88873, 'en', 'name', 'Information and Communications University'),
(108433, 88874, 'en', 'name', 'The Leon Lowenstein Foundation'),
(108434, 88875, 'en', 'name', 'Lieber Institute for Brain Development'),
(108435, 88876, 'en', 'name', 'Citrus Research Board'),
(108436, 88877, 'en', 'name', 'Oracle Cancer Trust'),
(108437, 88878, 'en', 'name', 'Milford on Sea War Memorial Hospital'),
(108438, 88879, 'no_lang_code', 'name', 'Thor Industries (United States)'),
(108439, 88880, 'fr', 'name', 'Institut Sainte Catherine'),
(108440, 88881, 'en', 'name', 'Central Council for Research in Homoeopathy'),
(108441, 88882, 'en', 'name', 'Walloon Excellence in Lifesciences and Biotechnology'),
(108442, 88883, 'en', 'name', 'TromsĆø research foundation'),
(108443, 88883, 'no', 'name', 'TromsĆø forskningsstiftelse'),
(108444, 88884, 'en', 'name', 'American International Medical University'),
(108445, 88885, 'en', 'name', 'Pan African University Institute of Water and Energy Science'),
(108446, 88886, 'de', 'name', 'Berufskolleg Am Wasserturm'),
(108447, 88887, 'no_lang_code', 'name', 'Shire (Germany)'),
(108448, 88888, 'en', 'name', 'Mongolian Academy of Sciences'),
(108449, 88888, 'mn', 'name', 'Монгол ŃƒŠ»ŃŃ‹Š½ ŠØŠøŠ½Š¶Š»ŃŃ… ŃƒŃ…Š°Š°Š½Ń‹ АкаГеми'),
(108450, 88889, 'en', 'name', 'Canadian Animal Health Institute'),
(108451, 88889, 'fr', 'name', 'Institut Canadien de la SantƩ Animale'),
(108452, 88890, 'en', 'name', 'Huntsville Bible College'),
(108453, 88891, 'de', 'name', 'Universität Osnabrück'),
(108454, 88891, 'en', 'name', 'Osnabrück University'),
(108455, 88892, 'en', 'name', 'Swedish Armed Forces'),
(108456, 88892, 'sv', 'name', 'Fƶrsvarsmakten'),
(108457, 88893, 'en', 'name', 'Russian State University named after AN Kosygin'),
(108458, 88894, 'en', 'name', 'Art Institute of Virginia Beach'),
(108459, 88895, 'de', 'name', 'Deutsche Zƶliakie-Gesellschaft e.V.'),
(108460, 88896, 'en', 'name', 'Ann and Bill Swindells Charitable Trust'),
(108461, 88897, 'en', 'name', 'Gunma Shorei Junior College of Welfare'),
(108462, 88897, 'ja', 'name', 'ē¾¤é¦¬ę¾å¶ŗē¦ē„‰ēŸ­ęœŸå¤§å­¦'),
(108463, 88898, 'am', 'name', 'įˆ€į‹‹įˆ³ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(108464, 88898, 'no_lang_code', 'name', 'Hawassa University'),
(108465, 88899, 'de', 'name', 'Krankenhaus St. Joseph-Stift Bremen'),
(108466, 88900, 'en', 'name', 'Jiangxi Science and Technology Normal University'),
(108467, 88900, 'zh', 'name', 'ę±Ÿč„æē§‘ęŠ€åøˆčŒƒå¤§å­¦'),
(108468, 88901, 'no_lang_code', 'name', 'ProSyst Software (Germany)'),
(108469, 88902, 'de', 'name', 'Reiner Lemoine Stiftung');
INSERT INTO `ror_settings` VALUES
(108470, 88903, 'en', 'name', 'Australia and Pacific Science Foundation'),
(108471, 88904, 'en', 'name', 'Hall Family Foundation'),
(108472, 88905, 'en', 'name', 'Trudeau Institute'),
(108473, 88906, 'en', 'name', 'National Museum of Nature and Science'),
(108474, 88906, 'ja', 'name', 'å›½ē«‹ē§‘å­¦åšē‰©é¤Ø'),
(108475, 88907, 'nl', 'name', 'OnderzoeksCentrum voor de Aanwending van Staal'),
(108476, 88908, 'en', 'name', 'Pan-African University'),
(108477, 88909, 'en', 'name', 'University of the Philippines Baguio'),
(108478, 88910, 'en', 'name', 'Minerals Metals and Materials Society'),
(108479, 88911, 'en', 'name', 'Mercator Research Center Ruhr'),
(108480, 88912, 'en', 'name', 'Buddhist Tzu Chi Medical Foundation'),
(108481, 88913, 'en', 'name', 'The Neuro Well'),
(108482, 88914, 'en', 'name', 'Wellcome Trust/DBT India Alliance'),
(108483, 88915, 'en', 'name', 'Long Island University at Riverhead'),
(108484, 88916, 'no_lang_code', 'name', 'Oclaro Technology (United Kingdom)'),
(108485, 88917, 'en', 'name', 'Harte Research Institute for Gulf of Mexico Studies'),
(108486, 88918, 'fr', 'name', 'Laboratoire de Microbiologie et GƩnƩtique MolƩculaires'),
(108487, 88919, 'en', 'name', 'Foundation of Stars'),
(108488, 88919, 'fr', 'name', 'Fondation des Ʃtoiles'),
(108489, 88920, 'en', 'name', 'Royal Free London NHS Foundation Trust'),
(108490, 88921, 'en', 'name', 'Center of Medical Genetics and Primary Health Care'),
(108491, 88922, 'en', 'name', 'National Foundation for Science and Technology Development'),
(108492, 88923, 'en', 'name', 'Monterey Bay Aquarium Foundation'),
(108493, 88924, 'no_lang_code', 'name', 'Alberta Newsprint Company (Canada)'),
(108494, 88925, 'en', 'name', 'South Ural State Humanitarian Pedagogical University'),
(108495, 88925, 'ru', 'name', 'Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108496, 88926, 'en', 'name', 'Ontario Medical Association'),
(108497, 88927, 'id', 'name', 'Universitas Muhammadiyah Pontianak'),
(108498, 88928, 'en', 'name', 'Consortium of Universities for the Advancement of Hydrologic Science'),
(108499, 88929, 'no_lang_code', 'name', 'Delta Electronics (China)'),
(108500, 88930, 'en', 'name', 'National Cattlemen''s Beef Association'),
(108501, 88931, 'no_lang_code', 'name', 'Preactor (United Kingdom)'),
(108502, 88932, 'no_lang_code', 'name', 'InterMune (Switzerland)'),
(108503, 88933, 'no_lang_code', 'name', 'Debre Markos University'),
(108504, 88934, 'no_lang_code', 'name', 'Siradel (France)'),
(108505, 88935, 'en', 'name', 'Russian Christian Humanitarian Academy'),
(108506, 88935, 'ru', 'name', 'Š ŃƒŃŃŠŗŠ°Ń Ń…Ń€ŠøŃŃ‚ŠøŠ°Š½ŃŠŗŠ°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(108507, 88936, 'sv', 'name', 'Familjen Erling-Perssons Stiftelse'),
(108508, 88937, 'en', 'name', 'Goshen Health'),
(108509, 88938, 'en', 'name', 'Nanjing Jiangning Hospital'),
(108510, 88939, 'en', 'name', 'Beijing Children’s Hospital'),
(108511, 88939, 'zh', 'name', 'åŒ—äŗ¬å„æē«„åŒ»é™¢'),
(108512, 88940, 'en', 'name', 'Saint Francis University'),
(108513, 88940, 'fr', 'name', 'UniversitƩ saint francis'),
(108514, 88941, 'en', 'name', 'Chartered Society of Physiotherapy'),
(108515, 88942, 'no_lang_code', 'name', 'Kraft (Canada)'),
(108516, 88943, 'en', 'name', 'World Heart Federation'),
(108517, 88944, 'no_lang_code', 'name', 'Shangluo Central Hospital'),
(108518, 88944, 'zh', 'name', 'å•†ę“›åø‚äø­åæƒåŒ»é™¢'),
(108519, 88945, 'no_lang_code', 'name', 'Moroccan Agency For Solar Energy (Morocco)'),
(108520, 88946, 'en', 'name', 'Illinois Institute of Art'),
(108521, 88947, 'en', 'name', 'Research Institute for Aging'),
(108522, 88948, 'en', 'name', 'Hill Stead Museum'),
(108523, 88949, 'en', 'name', 'Alpha-1 Foundation'),
(108524, 88950, 'en', 'name', 'International Diabetes Federation'),
(108525, 88951, 'en', 'name', 'Durrell Wildlife Conservation Trust'),
(108526, 88952, 'no_lang_code', 'name', 'Vaxin (United States)'),
(108527, 88953, 'en', 'name', 'Kanazawa Technical College'),
(108528, 88953, 'ja', 'name', 'é‡‘ę²¢å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(108529, 88954, 'en', 'name', 'National Institute of Pharmaceutical Education and Research'),
(108530, 88955, 'no_lang_code', 'name', 'Sucampo (United States)'),
(108531, 88956, 'no_lang_code', 'name', 'O''Neal Steel (United States)'),
(108532, 88957, 'en', 'name', 'Crowder College'),
(108533, 88958, 'fr', 'name', 'Conseil RƩgional de Bourgogne'),
(108534, 88959, 'en', 'name', 'Cooperative University of Colombia'),
(108535, 88959, 'es', 'name', 'Universidad Cooperativa de Colombia'),
(108536, 88960, 'no_lang_code', 'name', 'CareFusion'),
(108537, 88961, 'en', 'name', 'Pro-Implant Foundation'),
(108538, 88962, 'ko', 'name', '툓젠'),
(108539, 88962, 'no_lang_code', 'name', 'ToolGen (South Korea)'),
(108540, 88963, 'en', 'name', 'United African University of Tanzania'),
(108541, 88964, 'en', 'name', 'Archstone Foundation'),
(108542, 88965, 'en', 'name', 'Otago Medical Research Foundation'),
(108543, 88966, 'en', 'name', 'National Children’s’ Cardiac Hospital'),
(108544, 88967, 'de', 'name', 'Leibniz-Institut für Geschichte und Kultur des östlichen Europa (GWZO)'),
(108545, 88967, 'en', 'name', 'Leibniz Institute for the History and Culture of Eastern Europe (GWZO)'),
(108546, 88968, 'en', 'name', 'Shingyeong University'),
(108547, 88968, 'ko', 'name', 'ģ‹ ź²½ėŒ€ķ•™źµ'),
(108548, 88969, 'no_lang_code', 'name', 'Bigfoot Biomedical (United States)'),
(108549, 88970, 'no_lang_code', 'name', 'The Medicines Company (Canada)'),
(108550, 88971, 'en', 'name', 'Geochemistry of Soil Evolution'),
(108551, 88971, 'fr', 'name', 'Geochimie des sols et des eaux'),
(108552, 88972, 'en', 'name', 'Salvation Army'),
(108553, 88973, 'en', 'name', 'NorthShore University HealthSystem'),
(108554, 88974, 'no_lang_code', 'name', 'Biosense Webster (Israel)'),
(108555, 88975, 'fr', 'name', 'Fondation Pierre-Gilles de Gennes pour la Recherche'),
(108556, 88976, 'en', 'name', 'Darwin Center for Biogeosciences'),
(108557, 88977, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų°Ł…Ų§Ų±'),
(108558, 88977, 'en', 'name', 'Thamar University'),
(108559, 88978, 'en', 'name', 'National Board of Medical Examiners'),
(108560, 88979, 'en', 'name', 'Gzhel State University'),
(108561, 88979, 'ru', 'name', 'Š“Š¶ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108562, 88980, 'en', 'name', 'Wettenhall Environment Trust'),
(108563, 88981, 'en', 'name', 'Les Turner ALS Foundation'),
(108564, 88982, 'en', 'name', 'First Affiliated Hospital of Bengbu Medical College'),
(108565, 88982, 'zh', 'name', 'čšŒåŸ åŒ»å­¦é™¢ē¬¬äø€é™„å±žåŒ»é™¢'),
(108566, 88983, 'en', 'name', 'Health Economics Bergen'),
(108567, 88984, 'en', 'name', 'Rhodes Trust'),
(108568, 88985, 'no_lang_code', 'name', 'Swederail Ab'),
(108569, 88986, 'en', 'name', 'St. Philip''s College'),
(108570, 88987, 'no_lang_code', 'name', 'Adelphi Technology (United States)'),
(108571, 88988, 'es', 'name', 'Asociación Española de Psicología Conductual'),
(108572, 88989, 'en', 'name', 'Polish Geological Institute'),
(108573, 88990, 'fr', 'name', 'General Motors du Canada LimitƩe'),
(108574, 88990, 'no_lang_code', 'name', 'General Motors (Canada)'),
(108575, 88991, 'en', 'name', 'Fukuoka Junior College of Social Work and Child Education'),
(108576, 88991, 'ja', 'name', 'ē¦å²”ēœŒē¤¾ä¼šäæč‚²ēŸ­ęœŸå¤§å­¦'),
(108577, 88992, 'en', 'name', 'Pedagogical and Technological University of Colombia'),
(108578, 88992, 'es', 'name', 'Universidad Pedagógica y Tecnológica de Colombia'),
(108579, 88993, 'no_lang_code', 'name', 'Allergy Therapeutics (United Kingdom)'),
(108580, 88994, 'no_lang_code', 'name', 'Manzanita Pharmaceuticals (United States)'),
(108581, 88995, 'en', 'name', 'Academy of Fine Arts of Bari'),
(108582, 88995, 'it', 'name', 'Accademia di Belle Arti di Bari'),
(108583, 88996, 'en', 'name', 'World Bank'),
(108584, 88997, 'en', 'name', 'Swisselectric'),
(108585, 88998, 'en', 'name', 'Paochien Hospital'),
(108586, 88998, 'zh', 'name', '寶建醫院'),
(108587, 88999, 'en', 'name', 'Whitehead Institute for Biomedical Research'),
(108588, 89000, 'en', 'name', 'Institute of Cardiology'),
(108589, 89000, 'es', 'name', 'Instituto de CardiologĆ­a'),
(108590, 89001, 'no_lang_code', 'name', 'Anasys Instruments (United States)'),
(108591, 89002, 'no_lang_code', 'name', 'Photon Machines (United States)'),
(108592, 89003, 'en', 'name', 'Mava Foundation'),
(108593, 89004, 'en', 'name', 'American Association for the History of Medicine'),
(108594, 89005, 'en', 'name', 'United Nations High Commissioner for Refugees'),
(108595, 89005, 'fr', 'name', 'Haut Commissariat des Nations unies pour les rƩfugiƩs'),
(108596, 89006, 'fr', 'name', 'Mission InterministƩrielle de Lutte contre les Drogues Et les Conduites Addictives'),
(108597, 89007, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų²ŁˆŁŠŁ„ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(108598, 89007, 'en', 'name', 'Zewail City of Science and Technology'),
(108599, 89008, 'en', 'name', 'Jilin Agricultural Science and Technology University'),
(108600, 89008, 'zh', 'name', 'å‰ęž—å†œäøšē§‘ęŠ€å­¦é™¢'),
(108601, 89009, 'en', 'name', 'Canadian Institute of Steel Construction'),
(108602, 89010, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒŠć‚«ćƒ‹ć‚·'),
(108603, 89010, 'no_lang_code', 'name', 'Nakanishi (Japan)'),
(108604, 89011, 'en', 'name', 'Yaroslav Mudryi National Law University'),
(108605, 89011, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃŽŃ€ŠøŠ“ŠøŃ‡Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Ярослава ŠœŃƒŠ“рого'),
(108606, 89012, 'en', 'name', 'National GEM Consortium'),
(108607, 89013, 'en', 'name', 'Norwich University'),
(108608, 89013, 'fr', 'name', 'UniversitƩ de norwich'),
(108609, 89014, 'en', 'name', 'Art Institute of Phoenix'),
(108610, 89015, 'en', 'name', 'Kyoto Sosei University'),
(108611, 89015, 'ja', 'name', 'äŗ¬éƒ½å‰µęˆå¤§å­¦'),
(108612, 89016, 'en', 'name', 'Art Institute of Las Vegas'),
(108613, 89017, 'en', 'name', 'Dan David Prize'),
(108614, 89018, 'en', 'name', 'Institute of Physics'),
(108615, 89019, 'no_lang_code', 'name', 'Thermal Wave Imaging (United States)'),
(108616, 89020, 'en', 'name', 'Canadian Centre on Substance Use and Addiction'),
(108617, 89020, 'fr', 'name', 'Centre canadien sur les dĆ©pendances et l’usage de substances'),
(108618, 89021, 'en', 'name', 'General Confederation of the Portuguese Workers'),
(108619, 89021, 'pt', 'name', 'Confederação Geral dos Trabalhadores Portugueses'),
(108620, 89022, 'no_lang_code', 'name', 'Energiforsk (Sweden)'),
(108621, 89023, 'es', 'name', 'Corporación de Lucha Contra el Sida'),
(108622, 89024, 'en', 'name', 'Ƙstfold Hospital Trust'),
(108623, 89024, 'no', 'name', 'Sykehuset Ƙstfold'),
(108624, 89025, 'fr', 'name', 'Institut pour la Recherche sur la Moelle EpiniĆØre et l’EncĆ©phale'),
(108625, 89026, 'sk', 'name', 'Univerzita Sv. Cyrila A Metoda V Trnave'),
(108626, 89027, 'en', 'name', 'Ed Evans Foundation'),
(108627, 89028, 'es', 'name', 'Fundación Copec UC'),
(108628, 89029, 'ja', 'name', 'ę—„ęø…ćƒ•ć‚”ćƒ«ćƒž'),
(108629, 89029, 'no_lang_code', 'name', 'Nisshin Pharma (Japan)'),
(108630, 89030, 'en', 'name', 'George F. and Sybil H. Fuller Foundation'),
(108631, 89031, 'en', 'name', 'College of Law and Business'),
(108632, 89032, 'ja', 'name', 'ē”ŸåŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(108633, 89032, 'no_lang_code', 'name', 'Seikagaku Corporation (Japan)'),
(108634, 89033, 'en', 'name', 'Institute of Ismaili Studies'),
(108635, 89034, 'en', 'name', 'Institute for Hydrological Research'),
(108636, 89035, 'pt', 'name', 'Instituto do Coração'),
(108637, 89036, 'en', 'name', 'All-Russian Scientific Research Veterinary Institute of Pathology, Pharmacology and Therapy'),
(108638, 89036, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарной патологии, фармакологии Šø терапии'),
(108639, 89037, 'de', 'name', 'Fraunhofer-Institut für Zelltherapie und Immunologie'),
(108640, 89037, 'en', 'name', 'Fraunhofer Institute for Cell Therapy and Immunology'),
(108641, 89038, 'en', 'name', 'Huygens Institute for History and Culture of the Netherlands'),
(108642, 89038, 'nl', 'name', 'Huygens Instituut voor Nederlandse geschiedenis en cultuur'),
(108643, 89039, 'en', 'name', 'National Institute for Space Research'),
(108644, 89039, 'pt', 'name', 'Instituto Nacional de Pesquisas Espaciais'),
(108645, 89040, 'en', 'name', 'National Institute for International Education'),
(108646, 89040, 'ko', 'name', 'źµ­ė¦½źµ­ģ œźµģœ”ģ›'),
(108647, 89041, 'en', 'name', 'Association for Behavioral and Cognitive Therapies'),
(108648, 89042, 'en', 'name', 'Lumbini Buddhist University'),
(108649, 89042, 'ne', 'name', 'ą¤²ą„ą¤®ą„ą¤¬ą¤æą¤Øą„€ ą¤¬ą„Œą¤¦ą„ą¤§ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(108650, 89043, 'en', 'name', 'Ming Chi University of Technology'),
(108651, 89043, 'zh', 'name', 'ę˜Žåæ—ē§‘ęŠ€å¤§å­ø'),
(108652, 89044, 'en', 'name', 'Department of the Environment and Energy'),
(108653, 89045, 'en', 'name', 'Institute of Agro Environmental and Forest Biology'),
(108654, 89046, 'no_lang_code', 'name', 'FMC Technologies (Norway)'),
(108655, 89047, 'en', 'name', 'The Russian Presidential Academy of National Economy and Public Administration'),
(108656, 89047, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ нароГного Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š¹ ŃŠ»ŃƒŠ¶Š±Ń‹ при ŠŸŃ€ŠµŠ·ŠøŠ“енте Российской ФеГерации'),
(108657, 89048, 'en', 'name', 'Pennsylvania Academy of Science'),
(108658, 89049, 'en', 'name', 'International Retinal Research Foundation'),
(108659, 89050, 'en', 'name', 'Madhya Pradesh Council of Science and Technology'),
(108660, 89051, 'en', 'name', 'Shaanxi Tumor Hospital'),
(108661, 89052, 'no_lang_code', 'name', 'Tongji Hospital'),
(108662, 89053, 'en', 'name', 'Joint Quantum Institute'),
(108663, 89054, 'en', 'name', 'Ryazan State Radio Engineering University'),
(108664, 89054, 'ru', 'name', 'Š ŃŠ·Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ раГиотехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108665, 89055, 'en', 'name', 'Royal Dutch Society for the Promotion of Dentistry'),
(108666, 89055, 'nl', 'name', 'Koninklijke Nederlandse Maatschappij tot bevordering der Tandheelkunde'),
(108667, 89056, 'en', 'name', 'St. Paul''s Hospital'),
(108668, 89056, 'ko', 'name', 'ź°€ķ†Øė¦­ėŒ€ķ•™źµ ģ„œģšøģ„±ėŖØė³‘ģ›'),
(108669, 89057, 'en', 'name', 'Dutch Brain Foundation'),
(108670, 89057, 'nl', 'name', 'Hersenstichting'),
(108671, 89058, 'en', 'name', 'Argosy University'),
(108672, 89059, 'no_lang_code', 'name', 'Anacor Pharmaceuticals (United States)'),
(108673, 89060, 'en', 'name', 'United Nations Environment Programme'),
(108674, 89061, 'no_lang_code', 'name', 'CGIAR'),
(108675, 89062, 'en', 'name', 'Pueblo of Laguna'),
(108676, 89063, 'en', 'name', 'American Society for Bone and Mineral Research'),
(108677, 89064, 'en', 'name', 'Pharmacy Research UK'),
(108678, 89065, 'en', 'name', 'Operation Wallacea'),
(108679, 89066, 'no_lang_code', 'name', 'Huadong Sanatorium'),
(108680, 89066, 'zh', 'name', 'åŽäøœē–—å…»é™¢'),
(108681, 89067, 'en', 'name', 'GCE Lab School'),
(108682, 89068, 'pt', 'name', 'CĆ¢mara Municipal de Almada'),
(108683, 89069, 'no_lang_code', 'name', 'Mathematical Sciences Publishers (United States)'),
(108684, 89070, 'en', 'name', 'Hunan University of Science and Engineering'),
(108685, 89070, 'zh', 'name', 'ę¹–å—ē§‘ęŠ€å­¦é™¢'),
(108686, 89071, 'en', 'name', 'Imam Khomeini Marine Science University'),
(108687, 89071, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† دریایی Ų§Ł…Ų§Ł… Ų®Ł…ŪŒŁ†ŪŒ'),
(108688, 89072, 'en', 'name', 'Perron Institute for Neurological and Translational Science'),
(108689, 89073, 'no_lang_code', 'name', 'Esteve (Spain)'),
(108690, 89074, 'en', 'name', 'Australian National Fabrication Facility'),
(108691, 89075, 'fr', 'name', 'Institut SupƩrieur des Biotechnologies de Paris'),
(108692, 89076, 'no_lang_code', 'name', 'Staples (United States)'),
(108693, 89077, 'en', 'name', 'National Centre for the Performing Arts'),
(108694, 89077, 'zh', 'name', '国家大剧院'),
(108695, 89078, 'en', 'name', 'The Royal Swedish Academy of Letters, History and Antiquities'),
(108696, 89078, 'sv', 'name', 'Kungliga Vitterhets Historie och Antikvitets Akademien'),
(108697, 89079, 'en', 'name', 'Random Walk Imaging'),
(108698, 89080, 'en', 'name', 'British Society of Prosthodontics'),
(108699, 89081, 'en', 'name', 'National Library of Australia'),
(108700, 89082, 'en', 'name', 'Macmurray College'),
(108701, 89083, 'en', 'name', 'Calouste Gulbenkian Foundation'),
(108702, 89083, 'pt', 'name', 'Fundação Calouste Gulbenkian'),
(108703, 89084, 'pl', 'name', 'Międzyleski Szpital Specjalistyczny w Warszawie'),
(108704, 89085, 'en', 'name', 'Health Systems Research Institute'),
(108705, 89086, 'en', 'name', 'Kids'' Cancer Project'),
(108706, 89087, 'en', 'name', 'Giles W. and Elise G. Mead Foundation'),
(108707, 89088, 'de', 'name', 'Ministerium für Soziales, Integration und Gleichstellung des Landes Mecklenburg-Vorpommern'),
(108708, 89089, 'en', 'name', 'United States India Educational Foundation'),
(108709, 89090, 'en', 'name', 'National Administration of Surveying, Mapping and Geoinformation of China'),
(108710, 89090, 'zh', 'name', 'å›½å®¶ęµ‹ē»˜åœ°ē†äæ”ęÆå±€äø»ē«™'),
(108711, 89091, 'no_lang_code', 'name', 'Calabazas Creek Research (United States)'),
(108712, 89092, 'en', 'name', 'North China University of Science and Technology'),
(108713, 89092, 'zh', 'name', 'åŽåŒ—ē†å·„å¤§å­¦'),
(108714, 89093, 'en', 'name', 'European Stroke Organisation'),
(108715, 89094, 'no_lang_code', 'name', 'Combustion Science & Engineering (United States)'),
(108716, 89095, 'fr', 'name', 'Institut des Corps Gras'),
(108717, 89096, 'en', 'name', 'Sheffield Teaching Hospital'),
(108718, 89097, 'no_lang_code', 'name', 'Cerus (United States)'),
(108719, 89098, 'en', 'name', 'Purple Mountain Laboratories'),
(108720, 89098, 'zh', 'name', 'ē½‘ē»œé€šäæ”äøŽå®‰å…Øē“«é‡‘å±±å®žéŖŒå®¤'),
(108721, 89099, 'en', 'name', 'Investigative Reporters and Editors'),
(108722, 89100, 'en', 'name', 'Qom University of Technology'),
(108723, 89101, 'en', 'name', 'Agricultural Biotechnology Research Center, Academia Sinica'),
(108724, 89101, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢č¾²ę„­ē”Ÿē‰©ē§‘ęŠ€ē ”ē©¶äø­åæƒ'),
(108725, 89102, 'en', 'name', 'Huaihua University'),
(108726, 89102, 'zh', 'name', 'ę€€åŒ–å­¦é™¢'),
(108727, 89103, 'en', 'name', 'Stavanger University Hospital'),
(108728, 89104, 'en', 'name', 'Flax Council Of Canada'),
(108729, 89105, 'en', 'name', 'Bethlehem Griffiths Research Foundation'),
(108730, 89106, 'no_lang_code', 'name', 'GreenLight Biosciences (United States)'),
(108731, 89107, 'en', 'name', 'Sardar Swaran Singh National Institute of Bio-Energy'),
(108732, 89108, 'no_lang_code', 'name', 'SP Processum (Sweden)'),
(108733, 89109, 'en', 'name', 'Marine Alliance for Science and Technology for Scotland'),
(108734, 89110, 'pl', 'name', 'Wojskowy Instytut Medyczny'),
(108735, 89111, 'en', 'name', 'University of Pittsburgh School of Medicine'),
(108736, 89112, 'en', 'name', 'Mineralogical Society of America'),
(108737, 89113, 'en', 'name', 'CDC Foundation'),
(108738, 89114, 'no_lang_code', 'name', 'Zafgen (United States)'),
(108739, 89115, 'no_lang_code', 'name', 'KM-RoBoTa'),
(108740, 89116, 'en', 'name', 'Postharvest Technology Innovation Center'),
(108741, 89116, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œąø™ąø§ąø±ąø•ąøąø£ąø£ąø”ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø«ąø„ąø±ąø‡ąøąø²ąø£ą¹€ąøą¹‡ąøšą¹€ąøąøµą¹ˆąø¢ąø§'),
(108742, 89117, 'en', 'name', 'Osteoarthritis Research Society International'),
(108743, 89118, 'no_lang_code', 'name', 'Iveco (Switzerland)'),
(108744, 89119, 'ko', 'name', 'ģ™€ģ“ė””ģƒėŖ…ź³¼ķ•™'),
(108745, 89119, 'no_lang_code', 'name', 'YD Global Life Science (South Korea)'),
(108746, 89120, 'en', 'name', 'Long Island University Brooklyn'),
(108747, 89121, 'no_lang_code', 'name', 'Linde Material Handling (Germany)'),
(108748, 89122, 'no_lang_code', 'name', 'MSC Software (United Kingdom)'),
(108749, 89123, 'no_lang_code', 'name', 'Prayon (Belgium)'),
(108750, 89124, 'en', 'name', 'Nano-Convergence Foundation'),
(108751, 89125, 'en', 'name', 'Society for Archaeological Sciences'),
(108752, 89126, 'en', 'name', 'Center for Climate and Resilience Research'),
(108753, 89126, 'es', 'name', 'Centro de Ciencia del Clima y la Resiliencia'),
(108754, 89127, 'en', 'name', 'Mercer University'),
(108755, 89128, 'en', 'name', 'Yuncheng Central Hospital'),
(108756, 89128, 'zh', 'name', 'ē‰ˆęƒę‰€ęœ‰ čæåŸŽåø‚äø­åæƒåŒ»é™¢'),
(108757, 89129, 'en', 'name', 'Maine Department of Inland Fisheries and Wildlife'),
(108758, 89130, 'en', 'name', 'Scranton Area Foundation'),
(108759, 89131, 'no_lang_code', 'name', 'NRG Oncology'),
(108760, 89132, 'en', 'name', 'Children''s Healthcare of Atlanta'),
(108761, 89133, 'en', 'name', 'University Network of Excellence in Nuclear Engineering'),
(108762, 89134, 'en', 'name', 'Ministry of Minority Affairs'),
(108763, 89135, 'en', 'name', 'Liberty Mutual Research Institute for Safety'),
(108764, 89136, 'en', 'name', 'Ministry of Social Affairs and Health'),
(108765, 89136, 'fi', 'name', 'sosiaali- ja terveysministeriƶ'),
(108766, 89136, 'sv', 'name', 'Social- och hƤlsovƄrdsministeriet'),
(108767, 89137, 'en', 'name', 'Povolzhskiy State University of Telecommunications and Informatics'),
(108768, 89138, 'no_lang_code', 'name', 'OriGene Technologies (United States)'),
(108769, 89139, 'en', 'name', 'South African National AIDS Council'),
(108770, 89140, 'no_lang_code', 'name', 'Cavendish University Zambi'),
(108771, 89141, 'no_lang_code', 'name', 'Kaggle'),
(108772, 89142, 'de', 'name', 'Head Genuit Stiftung'),
(108773, 89143, 'en', 'name', 'New Zealand Federation of Graduate Women'),
(108774, 89144, 'en', 'name', 'National Book Foundation'),
(108775, 89145, 'en', 'name', 'Civil Protection Department'),
(108776, 89145, 'it', 'name', 'Dipartimento della Protezione Civile'),
(108777, 89146, 'en', 'name', 'Miryang National University'),
(108778, 89147, 'de', 'name', 'Bundesministerium für Nachhaltigkeit und Tourismus, Federal Ministry of Sustainability and Tourism'),
(108779, 89148, 'en', 'name', 'Barts Charity'),
(108780, 89149, 'en', 'name', 'Japan Medical Association'),
(108781, 89149, 'ja', 'name', 'ę—„ęœ¬åŒ»åø«ä¼š'),
(108782, 89150, 'en', 'name', 'Kaiser Permanente Division of Research'),
(108783, 89151, 'en', 'name', 'Rambhai Barni Rajabhat University'),
(108784, 89151, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąø£ąø³ą¹„ąøžąøžąø£ąø£ąø“ąøµ'),
(108785, 89152, 'en', 'name', 'Dr. Jeffrey Thomas Stroke Shield Foundation'),
(108786, 89153, 'en', 'name', 'Bryant & Stratton College'),
(108787, 89154, 'en', 'name', 'Wine and Food Foundation of Texas'),
(108788, 89155, 'en', 'name', 'Argosy University'),
(108789, 89156, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للفلاحة ŲØŁ…ŁƒŁ†Ų§Ų³'),
(108790, 89156, 'fr', 'name', 'Ɖcole Nationale d''Agriculture de MeknĆØs'),
(108791, 89157, 'en', 'name', 'Head of The Unit of Foodborne Zoonoses and Veterinary Epidemiology'),
(108792, 89158, 'en', 'name', 'Taiyuan Normal University'),
(108793, 89158, 'zh', 'name', 'å¤ŖåŽŸåøˆčŒƒå­¦é™¢'),
(108794, 89159, 'en', 'name', 'St. Nicholas Hospital'),
(108795, 89160, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(108796, 89160, 'en', 'name', 'World Islamic Sciences and Education University'),
(108797, 89161, 'en', 'name', 'National Nuclear Laboratory'),
(108798, 89162, 'en', 'name', 'Ministry of Environment and Tourism'),
(108799, 89163, 'es', 'name', 'Sanatorio Otamendi y Miroli'),
(108800, 89164, 'no_lang_code', 'name', 'Terumo Medical (United States)'),
(108801, 89165, 'en', 'name', 'Oxford University Museum of Natural History'),
(108802, 89166, 'en', 'name', 'Qingdao Agricultural University'),
(108803, 89166, 'zh', 'name', 'é’å²›å†œäøšå¤§å­¦'),
(108804, 89167, 'en', 'name', 'Icelandic Heart Association'),
(108805, 89168, 'en', 'name', 'Nh State Department of Health and Human Sers'),
(108806, 89169, 'en', 'name', 'Novosibirsk State Academy of Architecture and Art'),
(108807, 89170, 'en', 'name', 'Federal Institute of Industrial Research Oshodi'),
(108808, 89171, 'en', 'name', 'Gulf of Mexico Alliance'),
(108809, 89172, 'da', 'name', 'Den Danske Maritime Fond'),
(108810, 89172, 'en', 'name', 'Danish Maritime Fund'),
(108811, 89173, 'en', 'name', 'Film University'),
(108812, 89174, 'no_lang_code', 'name', 'Esko (Germany)'),
(108813, 89175, 'en', 'name', 'Veer Surendra Sai Medical College and Hospital'),
(108814, 89176, 'en', 'name', 'Iwate College of Nursing'),
(108815, 89176, 'ja', 'name', 'å²©ę‰‹ēœ‹č­·ēŸ­ęœŸå¤§å­¦'),
(108816, 89177, 'en', 'name', 'Max-Planck-POSTECH Center for Complex Phase Material'),
(108817, 89177, 'ko', 'name', 'ė§‰ģŠ¤ķ”Œėž‘ķ¬ ķ•œźµ­ / ķ¬ģŠ¤ķ… ģ—°źµ¬ģ†Œ'),
(108818, 89178, 'no_lang_code', 'name', 'Celgene (United States)'),
(108819, 89179, 'en', 'name', 'SpinalCure Australia'),
(108820, 89180, 'en', 'name', 'Maine Cancer Foundation'),
(108821, 89181, 'en', 'name', 'St. John''s College'),
(108822, 89182, 'en', 'name', 'Breast Cancer Research Trust'),
(108823, 89183, 'en', 'name', 'Amsterdam health & technology institute'),
(108824, 89184, 'en', 'name', 'Canadian Society for the History of Medicine'),
(108825, 89184, 'fr', 'name', 'SociĆ©tĆ© Canadienne d’Histoire de la MĆ©decine'),
(108826, 89185, 'en', 'name', 'Institute of Health Sciences'),
(108827, 89185, 'zh', 'name', '偄康科学研究所'),
(108828, 89186, 'en', 'name', 'Devon & Exeter Institution'),
(108829, 89187, 'en', 'name', 'Economic History Association'),
(108830, 89188, 'en', 'name', 'Government Communications Headquarters'),
(108831, 89189, 'en', 'name', 'Indian Institute of Information Technology Senapati, Manipur'),
(108832, 89190, 'en', 'name', 'Institute of Medicinal Plant Development'),
(108833, 89190, 'zh', 'name', 'čÆē”Øę¤ē‰©ē ”ē©¶ę‰€'),
(108834, 89191, 'en', 'name', 'Policy Innovation and Co-ordination Office'),
(108835, 89192, 'bg', 'name', 'Технически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Š”Š¾Ń„ŠøŃ'),
(108836, 89192, 'en', 'name', 'Technical University of Sofia'),
(108837, 89192, 'tr', 'name', 'Sofya Teknik Üniversitesi'),
(108838, 89193, 'en', 'name', 'Texas Tech University Health Sciences Center'),
(108839, 89194, 'en', 'name', 'Experimental Therapeutics Centre'),
(108840, 89195, 'en', 'name', 'Society for Music Theory'),
(108841, 89196, 'en', 'name', 'Cocoa Research Institute of Ghana'),
(108842, 89197, 'en', 'name', 'Society for Industrial and Applied Mathematics'),
(108843, 89198, 'fr', 'name', 'Université de l''extrême sud de santa catarina'),
(108844, 89198, 'pt', 'name', 'Universidade do Extremo Sul Catarinense'),
(108845, 89199, 'en', 'name', 'Primary Health Care Institute'),
(108846, 89200, 'no_lang_code', 'name', 'Aptose Biosciences (United States)'),
(108847, 89201, 'no_lang_code', 'name', 'Computas (Norway)'),
(108848, 89202, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š¤Š¾Š½Š“Š°Ń†ŠøŃ Биоразнообразие'),
(108849, 89202, 'no_lang_code', 'name', 'Bulgarian Biodiversity Foundation'),
(108850, 89203, 'en', 'name', 'Spanish Society of Hematology and Hemotherapy'),
(108851, 89204, 'no_lang_code', 'name', 'Chemtura (Canada)'),
(108852, 89205, 'en', 'name', 'Riddet Institute'),
(108853, 89206, 'en', 'name', 'The Foundling Museum'),
(108854, 89207, 'en', 'name', 'European Underground Research Infrastructure for Disposal of nuclear waste in a Clay Environment'),
(108855, 89208, 'de', 'name', 'Forschungszentrum caesar'),
(108856, 89208, 'en', 'name', 'Center of Advanced European Studies and Research'),
(108857, 89209, 'en', 'name', 'Kentucky Valley Educational Cooperative'),
(108858, 89210, 'en', 'name', 'Ishibashi Foundation'),
(108859, 89210, 'ja', 'name', 'ēŸ³ę©‹č²”å›£'),
(108860, 89211, 'en', 'name', 'Artsadmin'),
(108861, 89212, 'en', 'name', 'Ankang University'),
(108862, 89212, 'zh', 'name', '安康学院'),
(108863, 89213, 'en', 'name', 'Advanced Mental Health Care'),
(108864, 89214, 'en', 'name', 'International Zinc Association'),
(108865, 89215, 'en', 'name', 'Japan Epilepsy Research Foundation'),
(108866, 89215, 'ja', 'name', 'ć¦ć‚“ć‹ć‚“ę²»ē™‚ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(108867, 89216, 'en', 'name', 'Douglas Foundation'),
(108868, 89217, 'en', 'name', 'Honor Frost Foundation'),
(108869, 89218, 'no_lang_code', 'name', 'Puma Biotechnology (United States)'),
(108870, 89219, 'en', 'name', 'Swedish Association of Local Authorities and Regions'),
(108871, 89220, 'no_lang_code', 'name', 'Humigen'),
(108872, 89221, 'en', 'name', 'Tempus Public Foundation'),
(108873, 89222, 'de', 'name', 'BG Ingenieure und Berater'),
(108874, 89222, 'fr', 'name', 'BG IngƩnieurs Conseils'),
(108875, 89222, 'no_lang_code', 'name', 'BG Consulting Engineers (Switzerland)'),
(108876, 89223, 'no_lang_code', 'name', 'Dow Corning (United States)'),
(108877, 89224, 'en', 'name', 'Salman Farsi University of Kazerun'),
(108878, 89224, 'fa', 'name', 'دانؓگاه سلمان فارسی Ś©Ų§Ų²Ų±ŁˆŁ†'),
(108879, 89225, 'en', 'name', 'MIB Agents'),
(108880, 89226, 'en', 'name', 'Voronezh State University of Architecture and Civil Engineering'),
(108881, 89227, 'en', 'name', 'Canadian Sphagnum Peat Moss Association'),
(108882, 89228, 'en', 'name', 'Beijing Friendship Hospital'),
(108883, 89228, 'zh', 'name', 'åŒ—äŗ¬å‹č°ŠåŒ»é™¢'),
(108884, 89229, 'en', 'name', 'MIT-Harvard Center for Ultracold Atoms'),
(108885, 89230, 'en', 'name', 'Australian Genome Research Facility'),
(108886, 89231, 'en', 'name', 'Virginia Transportation Research Council'),
(108887, 89232, 'en', 'name', 'Access Alliance Multicultural Health and Community Services'),
(108888, 89233, 'no_lang_code', 'name', 'Seagen (United States)'),
(108889, 89234, 'en', 'name', 'British Horseracing Authority'),
(108890, 89235, 'en', 'name', 'Voronezh State University'),
(108891, 89235, 'ru', 'name', 'Воронежский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(108892, 89236, 'en', 'name', 'Science and Technology on Surface Physics and Chemistry Laboratory'),
(108893, 89236, 'zh', 'name', 'č”Øé¢ē‰©ē†äøŽåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(108894, 89237, 'en', 'name', 'Department of Natural Resources'),
(108895, 89238, 'en', 'name', 'Society for Cardiothoracic Surgery in Great Britain & Ireland'),
(108896, 89239, 'fr', 'name', 'UniversitƩ de Lille'),
(108897, 89240, 'no_lang_code', 'name', 'Shire (United Kingdom)'),
(108898, 89241, 'en', 'name', 'Cardiac Children''s Foundation Taiwan'),
(108899, 89242, 'en', 'name', 'Pakistan Association of Cognitive Therapists'),
(108900, 89243, 'no_lang_code', 'name', 'PDI (United States)'),
(108901, 89244, 'en', 'name', 'EGU HV Laboratory'),
(108902, 89245, 'no_lang_code', 'name', 'Sarepta Therapeutics (United States)'),
(108903, 89246, 'en', 'name', 'Pacific Disaster Center'),
(108904, 89247, 'en', 'name', 'Zambia Catholic University'),
(108905, 89248, 'no_lang_code', 'name', 'Cybernetica (Estonia)'),
(108906, 89249, 'no_lang_code', 'name', 'Satellite Healthcare (United States)'),
(108907, 89250, 'en', 'name', 'Richard and Ethel Herzfeld Foundation'),
(108908, 89251, 'no_lang_code', 'name', 'Snap-on (United States)'),
(108909, 89252, 'en', 'name', 'Ministry of Health, Nutrition and Indigenous Medicine'),
(108910, 89253, 'en', 'name', 'Sri Sivasubramaniya Nadar College of Engineering'),
(108911, 89253, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ ą¤¶ą¤æą¤µą¤øą„ą¤¬ą„ą¤°ą¤®ą¤£ą„ą¤Æ नादर ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ ą¤‡ą¤‚ą¤œą„€ą¤Øą¤æą¤Æą¤°ą¤æą¤‚ą¤—'),
(108912, 89254, 'en', 'name', 'British Society of Colposcopy and Cervical Pathology'),
(108913, 89255, 'en', 'name', 'Czech Society for Ornithology'),
(108914, 89256, 'en', 'name', 'Divine Word University'),
(108915, 89257, 'en', 'name', 'University of Health and Allied Sciences'),
(108916, 89258, 'en', 'name', 'Transport Infrastructure Ireland'),
(108917, 89258, 'ga', 'name', 'Bonneagar Iompair Ɖireann'),
(108918, 89259, 'en', 'name', 'Midwest Palliative and Hospice Care Center'),
(108919, 89260, 'en', 'name', 'Saint Augustine''s University'),
(108920, 89261, 'en', 'name', 'Guangxi Academy of Sciences'),
(108921, 89261, 'zh', 'name', '广脿科学院'),
(108922, 89262, 'en', 'name', 'Nanjing Science and Technology Commission'),
(108923, 89262, 'zh', 'name', 'å—äŗ¬åø‚ē§‘ęŠ€å±€'),
(108924, 89263, 'no_lang_code', 'name', 'Kimball International (United States)'),
(108925, 89264, 'de', 'name', 'Deutsche Telekom Stiftung'),
(108926, 89265, 'en', 'name', 'Extreme Science and Engineering Discovery Environment'),
(108927, 89266, 'en', 'name', 'Sylvester Comprehensive Cancer Center'),
(108928, 89267, 'en', 'name', 'Portuguese Canadian National Congress'),
(108929, 89267, 'fr', 'name', 'CongrĆØs National Luso Canadien'),
(108930, 89268, 'en', 'name', 'Wildlife Institute of India'),
(108931, 89268, 'ml', 'name', 'ą“µąµˆąµ½ą“”ąµą“²ąµˆą“«ąµ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“‡ą“Øąµą“¤ąµą“Æ'),
(108932, 89269, 'no_lang_code', 'name', 'Advanced Cell Diagnostics (United States)'),
(108933, 89270, 'en', 'name', 'Touro University California'),
(108934, 89271, 'en', 'name', 'Carnegie Museum of Natural History'),
(108935, 89271, 'es', 'name', 'Museo Carnegie de Historia Natural'),
(108936, 89272, 'en', 'name', 'Mystic Seaport'),
(108937, 89273, 'es', 'name', 'Servicio Murciano de Salud'),
(108938, 89274, 'en', 'name', 'Mt. Sinai Health Care Foundation'),
(108939, 89275, 'en', 'name', 'Sardar Patel Renewable Energy Research Institute'),
(108940, 89275, 'gu', 'name', 'ąŖøą«ąŖŖą«ąŖ°ą«‡ąŖ°ą«€'),
(108941, 89276, 'en', 'name', 'United States Maritime Administration'),
(108942, 89277, 'no_lang_code', 'name', 'Systems and Technology Research (United States)'),
(108943, 89278, 'no_lang_code', 'name', 'Bull (Germany)'),
(108944, 89279, 'no_lang_code', 'name', 'Jazz Pharmaceuticals (Ireland)'),
(108945, 89280, 'en', 'name', 'Foundation for Baltic and East European Studies'),
(108946, 89281, 'pt', 'name', 'Instituto Nacional do CĆ¢ncer'),
(108947, 89282, 'en', 'name', 'African Mathematics Millennium Science Initiative'),
(108948, 89283, 'en', 'name', 'Institute of Microbial Technology'),
(108949, 89283, 'hi', 'name', 'ą¤øą„‚ą¤•ą„ą¤·ą„ą¤®ą¤œą„€ą¤µ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(108950, 89284, 'en', 'name', 'South Florida Water Management District'),
(108951, 89285, 'en', 'name', 'Yongcheng Vocational College'),
(108952, 89285, 'zh', 'name', 'ę°øåŸŽčŒäøšå­¦é™¢'),
(108953, 89286, 'en', 'name', 'Society for Pediatric Urology'),
(108954, 89287, 'en', 'name', 'Korea Brain Research Institute'),
(108955, 89287, 'ko', 'name', 'ķ•œźµ­ė‡Œģ—°źµ¬ģ›'),
(108956, 89288, 'no_lang_code', 'name', 'Sigma-Aldrich (Canada)'),
(108957, 89289, 'en', 'name', 'Ariake College of Education and the Arts'),
(108958, 89289, 'ja', 'name', 'ęœ‰ę˜Žę•™č‚²čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(108959, 89290, 'en', 'name', 'Human Sciences Research Council'),
(108960, 89291, 'en', 'name', 'Bay Area Black United Fund'),
(108961, 89292, 'en', 'name', 'The Nature Conservancy'),
(108962, 89293, 'no_lang_code', 'name', 'Nion (United States)'),
(108963, 89294, 'no_lang_code', 'name', 'Ivantis (United States)'),
(108964, 89295, 'en', 'name', 'Beijing Shijitan Hospital'),
(108965, 89295, 'zh', 'name', 'åŒ—äŗ¬äø–ēŗŖå›åŒ»é™¢'),
(108966, 89296, 'en', 'name', 'Art Institute of Indianapolis'),
(108967, 89297, 'en', 'name', 'Health Holland'),
(108968, 89298, 'no_lang_code', 'name', 'SOFCpower (Italy)'),
(108969, 89299, 'en', 'name', 'Otsuka Toshimi Scholarship Foundation'),
(108970, 89300, 'en', 'name', 'Institute for Bioengineering of Catalonia'),
(108971, 89300, 'es', 'name', 'L’Institut de Bioenginyeria de Catalunya'),
(108972, 89301, 'en', 'name', 'Health Foundation for Western & Central New York'),
(108973, 89302, 'de', 'name', 'Institut für Quantenoptik und Quanteninformation'),
(108974, 89302, 'en', 'name', 'Institute for Quantum Optics and Quantum Information Innsbruck'),
(108975, 89303, 'de', 'name', 'Bundesministerium für Familie, Senioren, Frauen und Jugend'),
(108976, 89303, 'en', 'name', 'Federal Ministry for Family Affairs, Senior Citizens, Women and Youth'),
(108977, 89304, 'en', 'name', 'Schmidt Institute of Physics of the Earth'),
(108978, 89304, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики Земли им. Šž.Š®. ШмиГта Российской акаГемии наук'),
(108979, 89305, 'no_lang_code', 'name', 'Pratt & Whitney Canada (Canada)'),
(108980, 89306, 'no_lang_code', 'name', 'Integral Molecular (United States)'),
(108981, 89307, 'en', 'name', 'Imagination Institute'),
(108982, 89308, 'en', 'name', 'Federal University of Ouro Preto'),
(108983, 89308, 'pt', 'name', 'Universidade Federal de Ouro Preto'),
(108984, 89309, 'en', 'name', 'Centre for Ethnology and Comparative Sociology'),
(108985, 89309, 'fr', 'name', 'Laboratoire d''ethnologie et de sociologie comparative'),
(108986, 89310, 'en', 'name', 'Jishou University'),
(108987, 89310, 'zh', 'name', '吉首大学'),
(108988, 89311, 'en', 'name', 'Islamic Azad University, Bonab Branch'),
(108989, 89311, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد بناب'),
(108990, 89312, 'no_lang_code', 'name', 'Asana Biosciences (United States)'),
(108991, 89313, 'pt', 'name', 'Escola Superior ArtĆ­stica do Porto'),
(108992, 89314, 'no_lang_code', 'name', 'Nextel (Spain)'),
(108993, 89315, 'en', 'name', 'King Edward Memorial Hospital Research Centre'),
(108994, 89316, 'en', 'name', 'Institute of Microchemical Technology'),
(108995, 89317, 'en', 'name', 'Concord Consortium'),
(108996, 89318, 'en', 'name', 'Lean Enterprise Institute Polska'),
(108997, 89319, 'no_lang_code', 'name', 'Karger Publishers (Switzerland)'),
(108998, 89320, 'no_lang_code', 'name', 'Salesforce (United States)'),
(108999, 89321, 'en', 'name', 'Guangdong University of Education'),
(109000, 89321, 'zh', 'name', 'å¹æäøœē¬¬äŗŒåøˆčŒƒå­¦é™¢'),
(109001, 89322, 'is', 'name', 'Orkuveita ReykjavĆ­kur'),
(109002, 89322, 'no_lang_code', 'name', 'ReykjavĆ­k Energy (Iceland)'),
(109003, 89323, 'en', 'name', 'Beijing Obstetrics and Gynecology Hospital'),
(109004, 89324, 'en', 'name', 'Christchurch Hospital'),
(109005, 89325, 'en', 'name', 'Massachusetts College of Pharmacy and Health Sciences'),
(109006, 89326, 'en', 'name', 'International Association for Psychoanalytic Self Psychology'),
(109007, 89327, 'en', 'name', 'St. James''s Laundry Centre'),
(109008, 89328, 'no_lang_code', 'name', 'Sinovac Biotech'),
(109009, 89328, 'zh', 'name', 'åŒ—äŗ¬ē§‘å…“ē”Ÿē‰©åˆ¶å“ęœ‰é™å…¬åø'),
(109010, 89329, 'en', 'name', 'Lviv State University of Life Safety'),
(109011, 89329, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Державний Університет Безпеки Š–ŠøŃ‚Ń‚Ń”Š“Ń–ŃŠ»ŃŒŠ½Š¾ŃŃ‚Ń–'),
(109012, 89330, 'en', 'name', 'Children''s Cancer and Leukaemia Group'),
(109013, 89331, 'en', 'name', 'National Chemical Laboratory'),
(109014, 89331, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą¤¾ą¤øą¤¾ą¤Æą¤Øą¤æą¤•ą„€ ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(109015, 89331, 'ml', 'name', 'ą“Øą“¾ą“·ą“£ąµ½ ą“•ąµ†ą“®ą“æą“•ąµą“•ąµ½ ą“²ą“¾ą“¬ą“±ą“Ÿąµą“Ÿą“±ą“æ'),
(109016, 89331, 'mr', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ रासायनिक ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤³ą¤¾'),
(109017, 89332, 'ko', 'name', 'ė™źµ­ėŒ€ķ•™źµ'),
(109018, 89332, 'no_lang_code', 'name', 'Dongguk University'),
(109019, 89333, 'en', 'name', 'Shanghai Clinical Research Center'),
(109020, 89334, 'no_lang_code', 'name', 'FEI Company (United States)'),
(109021, 89335, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© قرطاج'),
(109022, 89335, 'en', 'name', 'University of Carthage'),
(109023, 89335, 'fr', 'name', 'UniversitƩ de carthage'),
(109024, 89336, 'en', 'name', 'Kurume University'),
(109025, 89336, 'ja', 'name', '久留米大学'),
(109026, 89337, 'en', 'name', 'State Key Laboratory of Chemical Engineering'),
(109027, 89337, 'zh', 'name', 'åŒ–å­¦å·„ēØ‹č”åˆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(109028, 89338, 'en', 'name', 'Polytechnic University of Queretaro'),
(109029, 89338, 'es', 'name', 'Universidad PolitƩcnica de QuerƩtaro'),
(109030, 89339, 'en', 'name', 'Public Risk Management Association'),
(109031, 89340, 'en', 'name', 'PLA Navy Submarine Academy'),
(109032, 89340, 'zh', 'name', 'ęµ·å†›ę½œč‰‡å­¦é™¢'),
(109033, 89341, 'en', 'name', 'Gauss Centre for Supercomputing'),
(109034, 89342, 'de', 'name', 'Chirurgie Plastique Erni'),
(109035, 89342, 'en', 'name', 'Erni Plastic Surgery'),
(109036, 89343, 'en', 'name', 'Arts & Health Alliance'),
(109037, 89344, 'en', 'name', 'Construction Industry Institute'),
(109038, 89345, 'en', 'name', 'MGIMO University'),
(109039, 89346, 'en', 'name', 'State Council of Higher Education for Virginia'),
(109040, 89347, 'en', 'name', 'John & Marcia Goldman Foundation'),
(109041, 89348, 'en', 'name', 'Nagasaki University'),
(109042, 89348, 'ja', 'name', '長哎大学'),
(109043, 89349, 'no_lang_code', 'name', 'Advanced Marine Systems (United States)'),
(109044, 89350, 'en', 'name', 'South University'),
(109045, 89351, 'de', 'name', 'UniversitƤt Paderborn'),
(109046, 89351, 'en', 'name', 'Paderborn University'),
(109047, 89352, 'en', 'name', 'Shanghai Pudong New Area Public Interest Hospital'),
(109048, 89352, 'zh', 'name', 'äøŠęµ·åø‚ęµ¦äøœę–°åŒŗå…¬åˆ©åŒ»é™¢'),
(109049, 89353, 'en', 'name', 'Conchologists of America'),
(109050, 89354, 'en', 'name', 'China National Centre for Food Safety Risk Assessment'),
(109051, 89355, 'en', 'name', 'Institute on Membrane Technology'),
(109052, 89355, 'it', 'name', 'Istituto per la Tecnologia delle Membrane'),
(109053, 89356, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å»ŗčØ­ęŠ€č”“ē ”ē©¶ę‰€'),
(109054, 89356, 'no_lang_code', 'name', 'CTI Engineering (Japan)'),
(109055, 89357, 'no_lang_code', 'name', 'Marinus Pharmaceuticals (United States)'),
(109056, 89358, 'en', 'name', 'Agency for Assessment and Implementation Technology'),
(109057, 89358, 'id', 'name', 'Badan Pengkajian dan Penerapan Teknologi'),
(109058, 89359, 'en', 'name', 'Canadian Aeronautics and Space Institute'),
(109059, 89360, 'en', 'name', 'Wan Fang Hospital'),
(109060, 89360, 'zh', 'name', 'č‡ŗåŒ—åø‚ē«‹č¬čŠ³é†«é™¢'),
(109061, 89361, 'en', 'name', 'Fu Wai Hospital'),
(109062, 89361, 'zh', 'name', 'äø­å›½åŒ»å­¦ē§‘å­¦é™¢é˜œå¤–åæƒč”€ē®”ē—…åŒ»é™¢'),
(109063, 89362, 'en', 'name', 'Montana Institute on Ecosystems'),
(109064, 89363, 'en', 'name', 'Denver Foundation'),
(109065, 89364, 'no_lang_code', 'name', 'Bard (Ireland)'),
(109066, 89365, 'en', 'name', 'Jewish National Fund'),
(109067, 89366, 'en', 'name', 'Association of Professors of Gynecology and Obstetrics'),
(109068, 89367, 'no_lang_code', 'name', 'Viavi Solutions (United States)'),
(109069, 89368, 'en', 'name', 'National Council for Behavioral Health'),
(109070, 89369, 'en', 'name', 'MB Research Laboratories'),
(109071, 89370, 'no_lang_code', 'name', 'Cameco (Germany)'),
(109072, 89371, 'no_lang_code', 'name', 'Indlas VIMHANS Hospital'),
(109073, 89372, 'en', 'name', 'The Lucy Faithfull Foundation'),
(109074, 89373, 'no_lang_code', 'name', 'Aureo (Japan)'),
(109075, 89374, 'en', 'name', 'Chronic Liver Disease Foundation'),
(109076, 89375, 'no_lang_code', 'name', 'Promedior (United States)'),
(109077, 89376, 'no_lang_code', 'name', 'Hologic Gen-Probe Incorporated (United States)'),
(109078, 89377, 'no_lang_code', 'name', 'Agnitron Technology (United States)'),
(109079, 89378, 'en', 'name', 'Carnegie Dunfermline Trust'),
(109080, 89379, 'no_lang_code', 'name', 'Teikoku Pharma (United States)'),
(109081, 89380, 'en', 'name', 'Brain Plasticity Institute'),
(109082, 89381, 'en', 'name', 'African Society for Laboratory Medicine'),
(109083, 89382, 'en', 'name', 'Facility Guidelines Institute'),
(109084, 89383, 'de', 'name', 'Innosuisse - Schweizerische Agentur für Innovationsförderung'),
(109085, 89383, 'en', 'name', 'Innosuisse – Swiss Innovation Agency'),
(109086, 89384, 'en', 'name', 'Kentucky Department for Public Health'),
(109087, 89385, 'no_lang_code', 'name', 'Alimentary Health (Ireland)'),
(109088, 89386, 'bn', 'name', 'ą¦—ą§Œą¦¹ą¦¾ą¦Ÿą§€ ą¦šą¦æą¦•ą¦æą§Žą¦øą¦¾ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(109089, 89386, 'en', 'name', 'Gauhati Medical College and Hospital'),
(109090, 89387, 'en', 'name', 'College of Agriculture, Food and Rural Enterprise'),
(109091, 89388, 'en', 'name', 'Tumori Foundation'),
(109092, 89389, 'es', 'name', 'Instituto Nacional de Pediatria'),
(109093, 89390, 'en', 'name', 'Arthur L. and Elaine V. Johnson Foundation'),
(109094, 89391, 'en', 'name', 'Arolsen Archives - International Center on Nazi Persecution'),
(109095, 89392, 'en', 'name', 'Dowager Countess Eleanor Peel Trust'),
(109096, 89393, 'en', 'name', 'GHR Foundation'),
(109097, 89394, 'en', 'name', 'Amur State University of Humanities and Pedagogy'),
(109098, 89394, 'ru', 'name', 'ŠŠ¼ŃƒŃ€ŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š¾-пеГагогический Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(109099, 89395, 'en', 'name', 'Canadian Council on International Law'),
(109100, 89395, 'fr', 'name', 'Conseil canadien de droit international'),
(109101, 89396, 'en', 'name', 'Tides Foundation'),
(109102, 89397, 'en', 'name', 'Mario Negri Institute for Pharmacological Research'),
(109103, 89397, 'it', 'name', 'Instituto di Ricerche Farmacologiche Mario Negri'),
(109104, 89398, 'en', 'name', 'International Potato Center'),
(109105, 89398, 'es', 'name', 'Centro Internacional de la Papa'),
(109106, 89399, 'en', 'name', 'State Scientific Institution "Institute of Information, Security and Law of the National Academy of Legal Sciences of Ukraine"'),
(109107, 89399, 'uk', 'name', 'Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ інформації, безпеки і права ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії правових наук Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(109108, 89400, 'ar', 'name', 'معهد Ų„Ų³Ų±Ų§Ų¦ŁŠŁ„ للابحاث Ų§Ł„ŲØŁŠŁˆŁ„ŁˆŲ¬ŁŠŲ©'),
(109109, 89400, 'en', 'name', 'Israel Institute for Biological Research'),
(109110, 89401, 'en', 'name', 'United States Marine Corps'),
(109111, 89402, 'en', 'name', 'Black AIDS Institute'),
(109112, 89403, 'en', 'name', 'Cornelia de Lange Syndrome Foundation'),
(109113, 89404, 'en', 'name', 'Children''s Hospital Association'),
(109114, 89405, 'en', 'name', 'Riga Teacher Training and Educational Management Academy'),
(109115, 89406, 'no_lang_code', 'name', 'Boston Fusion (United States)'),
(109116, 89407, 'no_lang_code', 'name', 'Ribon Therapeutics (United States)'),
(109117, 89408, 'es', 'name', 'Universidad Privada del Este'),
(109118, 89409, 'de', 'name', 'Institut für Biomedizinische und Pharmazeutische Forschung'),
(109119, 89409, 'en', 'name', 'Institute for Biomedical and Pharmaceutical Research'),
(109120, 89410, 'en', 'name', 'Burdett Trust for Nursing'),
(109121, 89411, 'en', 'name', 'National Beef Cattle Industrial Technology System'),
(109122, 89412, 'en', 'name', 'North York General Hospital'),
(109123, 89413, 'en', 'name', 'Social Change and Development'),
(109124, 89414, 'en', 'name', 'Argosy University'),
(109125, 89415, 'pt', 'name', 'University Alto Vale do Rio do Peixe'),
(109126, 89416, 'en', 'name', 'Baily Thomas Charitable Fund'),
(109127, 89417, 'no_lang_code', 'name', 'TransDigm Group (United States)'),
(109128, 89418, 'en', 'name', 'Philadelphia Area Center for History of Science'),
(109129, 89419, 'en', 'name', 'Fama College'),
(109130, 89419, 'sq', 'name', 'Kolegji Fama'),
(109131, 89420, 'en', 'name', 'Apor Vilmos Catholic College'),
(109132, 89420, 'hu', 'name', 'Apor Vilmos Katolikus Főiskola'),
(109133, 89421, 'en', 'name', 'Business Finland'),
(109134, 89422, 'fr', 'name', 'Gymnase de Nyon'),
(109135, 89423, 'en', 'name', 'Tall Timbers Research Station and Land Conservancy'),
(109136, 89424, 'no_lang_code', 'name', 'Unison (United Kingdom)'),
(109137, 89425, 'hi', 'name', 'ą¤—ą„ą¤°ą„‚ ą¤˜ą¤¾ą¤øą„€ą¤¦ą¤¾ą¤ø ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(109138, 89425, 'no_lang_code', 'name', 'Guru Ghasidas Vishwavidyalaya'),
(109139, 89426, 'en', 'name', 'Italian Institute of Telemedicine'),
(109140, 89426, 'it', 'name', 'Istituto Italiano di Telemedicina'),
(109141, 89427, 'de', 'name', 'EuropƤische Fachhochschule'),
(109142, 89427, 'en', 'name', 'European University of Applied Sciences'),
(109143, 89428, 'en', 'name', 'Xiangnan University'),
(109144, 89428, 'zh', 'name', 'ę¹˜å—å­¦é™¢'),
(109145, 89429, 'en', 'name', 'National Institute for Nanotechnology'),
(109146, 89430, 'en', 'name', 'Agri Food and Biosciences Institute'),
(109147, 89431, 'en', 'name', 'Ivanovo State Textile Academy'),
(109148, 89432, 'en', 'name', 'Texas A&M Health Science Center'),
(109149, 89433, 'en', 'name', 'Shenzhen Second People''s Hospital'),
(109150, 89434, 'en', 'name', 'Australian Pain Society'),
(109151, 89435, 'en', 'name', 'Judith and Jean Pape Adams Charitable Foundation'),
(109152, 89436, 'en', 'name', 'Johns Hopkins Hospital'),
(109153, 89436, 'fr', 'name', 'HƓpital Johns-Hopkins'),
(109154, 89437, 'no_lang_code', 'name', 'ACEA Biosciences (United States)'),
(109155, 89438, 'en', 'name', 'Korean Diabetes Association'),
(109156, 89439, 'no_lang_code', 'name', 'CeraMem Corporation (United States)'),
(109157, 89440, 'en', 'name', 'NIHR Birmingham Biomedical Research Centre'),
(109158, 89441, 'no_lang_code', 'name', 'Shenyang Normal University'),
(109159, 89441, 'zh', 'name', '沈阳师范大学'),
(109160, 89442, 'en', 'name', 'Randolph County School System'),
(109161, 89443, 'en', 'name', 'Yunnan Environmental Protection Bureau'),
(109162, 89443, 'zh', 'name', 'äŗ‘å—ēœēŽÆå¢ƒäæęŠ¤åŽ…'),
(109163, 89444, 'en', 'name', 'International Fine Particle Research Institute'),
(109164, 89445, 'fr', 'name', 'Tour du Valat'),
(109165, 89446, 'en', 'name', 'Texas Southern University'),
(109166, 89447, 'de', 'name', 'Leibniz-Institut für Arbeitsforschung an der TU Dortmund'),
(109167, 89447, 'en', 'name', 'Leibniz Research Centre for Working Environment and Human Factors'),
(109168, 89448, 'no_lang_code', 'name', 'Oxford Frozen Foods (Canada)'),
(109169, 89449, 'nl', 'name', 'JKF Kinderfonds'),
(109170, 89450, 'en', 'name', 'Netherlands Institute for Neuroscience'),
(109171, 89450, 'nl', 'name', 'Nederlands Herseninstituut'),
(109172, 89451, 'pt', 'name', 'Universidade do Vale do Rio dos Sinos'),
(109173, 89452, 'fr', 'name', 'BiodivERsA'),
(109174, 89453, 'en', 'name', 'Museum of Chinese in America'),
(109175, 89454, 'en', 'name', 'Canadian Association of University Research Administrators'),
(109176, 89454, 'fr', 'name', 'Association Canadienne d''Administrateurs de Recherche Universitaire'),
(109177, 89455, 'en', 'name', 'Attorney-General''s Department Australia'),
(109178, 89456, 'es', 'name', 'Universidad Tangamanga'),
(109179, 89457, 'en', 'name', 'Epic Care'),
(109180, 89458, 'en', 'name', 'Systemic Risk Centre'),
(109181, 89459, 'en', 'name', 'Swim Across America'),
(109182, 89460, 'es', 'name', 'Universidad Mundo Maya'),
(109183, 89461, 'en', 'name', 'United Nations Office for Project Services'),
(109184, 89462, 'en', 'name', 'Spina Bifida Association'),
(109185, 89463, 'en', 'name', 'Santiago Library System');
INSERT INTO `ror_settings` VALUES
(109186, 89464, 'en', 'name', 'Wu Jieping Medical Foundation'),
(109187, 89465, 'en', 'name', 'Ioffe Institute'),
(109188, 89465, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. А.Ф. Š˜Š¾Ń„Ń„Šµ Российской акаГемии наук'),
(109189, 89466, 'en', 'name', 'Sultan Ageng Tirtayasa University'),
(109190, 89466, 'id', 'name', 'Universitas Sultan Ageng Tirtayasa'),
(109191, 89467, 'en', 'name', 'Texas Tech University Health Sciences Center'),
(109192, 89468, 'en', 'name', 'International Plant Nutrition Institute'),
(109193, 89469, 'en', 'name', 'South Dakota Agricultural Heritage Museum'),
(109194, 89470, 'en', 'name', 'Feinstein Institute for Medical Research'),
(109195, 89471, 'en', 'name', 'Hidradenitis Suppurativa Foundation'),
(109196, 89472, 'en', 'name', 'The Faraday Institution'),
(109197, 89473, 'no_lang_code', 'name', 'Genetic Alliance UK (United Kingdom)'),
(109198, 89474, 'en', 'name', 'Portland VA Research Foundation'),
(109199, 89475, 'en', 'name', 'National Institute of Metrology'),
(109200, 89475, 'zh', 'name', 'äø­å›½č®”é‡ē§‘å­¦ē ”ē©¶é™¢'),
(109201, 89476, 'en', 'name', 'Sungsan Hyodo Graduate School'),
(109202, 89476, 'ko', 'name', 'č–å±±å­å¤§å­øé™¢å¤§å­øę•Ž'),
(109203, 89477, 'no_lang_code', 'name', 'Linz Center of Mechatronics (Austria)'),
(109204, 89478, 'en', 'name', 'Foundation for Prader-Willi Research'),
(109205, 89479, 'en', 'name', 'Norwegian Mapping Authority'),
(109206, 89480, 'en', 'name', 'Artquest'),
(109207, 89481, 'en', 'name', 'West Pomeranian Business School'),
(109208, 89481, 'pl', 'name', 'Zachodniopomorska Szkoła Biznesu w Szczecinie'),
(109209, 89482, 'en', 'name', 'Paul M. Angell Family Foundation'),
(109210, 89483, 'en', 'name', 'NSABP Foundation'),
(109211, 89484, 'en', 'name', 'Manav Bharti University'),
(109212, 89485, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćæćšć»ćƒ•ć‚£ćƒŠćƒ³ć‚·ćƒ£ćƒ«ć‚°ćƒ«ćƒ¼ćƒ—'),
(109213, 89485, 'no_lang_code', 'name', 'Mizuho (Japan)'),
(109214, 89486, 'no_lang_code', 'name', 'Geomembrane Technologies (Canada)'),
(109215, 89487, 'no_lang_code', 'name', 'MED-EL (Austria)'),
(109216, 89488, 'en', 'name', 'Maimonides State Classical Academy'),
(109217, 89488, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń ŠŗŠ»Š°ŃŃŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени МаймониГа'),
(109218, 89489, 'en', 'name', 'Laureate Institute for Brain Research'),
(109219, 89490, 'en', 'name', 'Institute of Mental Health and Hospital'),
(109220, 89491, 'en', 'name', 'Institute of Physical Chemistry'),
(109221, 89491, 'pl', 'name', 'Instytut Chemii Fizycznej Polskiej Akademii Nauk'),
(109222, 89492, 'no_lang_code', 'name', 'GEI Consultants'),
(109223, 89493, 'en', 'name', 'Shanxi Agricultural University'),
(109224, 89493, 'zh', 'name', 'å±±č„æå†œäøšå¤§å­¦'),
(109225, 89494, 'es', 'name', 'Unidad Nacional para la Gestión del Riesgo de Desastres'),
(109226, 89495, 'en', 'name', 'Blue Cross and Blue Shield of Kansas City'),
(109227, 89496, 'en', 'name', 'Ontario Brain Institute'),
(109228, 89496, 'fr', 'name', 'Institut Ontarien'),
(109229, 89497, 'no_lang_code', 'name', 'Cerevel Therapeutics (United States)'),
(109230, 89498, 'no_lang_code', 'name', 'aTyr Pharma (United States)'),
(109231, 89499, 'en', 'name', 'Argosy University'),
(109232, 89500, 'en', 'name', 'Coventry City Council'),
(109233, 89501, 'en', 'name', 'Aromatic Plant Research Center'),
(109234, 89502, 'en', 'name', 'Canadian Bureau for International Education'),
(109235, 89502, 'fr', 'name', 'Bureau Canadien de l''Ʃducation Internationale'),
(109236, 89503, 'no_lang_code', 'name', 'TRM (United Kingdom)'),
(109237, 89504, 'no_lang_code', 'name', 'Wƶrwag Pharma (Germany)'),
(109238, 89505, 'en', 'name', 'National Center for Genome Resources'),
(109239, 89506, 'en', 'name', 'International Educational Foundation'),
(109240, 89507, 'en', 'name', 'Zhengzhou University of Industrial Technology'),
(109241, 89507, 'zh', 'name', 'éƒ‘å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(109242, 89508, 'en', 'name', 'Central Salt and Marine Chemicals Research Institute'),
(109243, 89509, 'en', 'name', 'Canadian Plastics Industry Association'),
(109244, 89509, 'fr', 'name', 'Association Canadienne de l''Industrie des Plastiques'),
(109245, 89510, 'tr', 'name', 'İstanbul Kalkınma Ajansı'),
(109246, 89511, 'en', 'name', 'Alberta Glycomics Centre'),
(109247, 89512, 'no_lang_code', 'name', 'Farfield Group (United Kingdom)'),
(109248, 89513, 'no_lang_code', 'name', 'Bang & Olufsen (Denmark)'),
(109249, 89514, 'no_lang_code', 'name', 'Abiomed (United States)'),
(109250, 89515, 'en', 'name', 'Glaucoma Research Foundation'),
(109251, 89516, 'en', 'name', 'Shared Hierarchical Academic Research Computing Network'),
(109252, 89517, 'en', 'name', 'Sandler Foundation'),
(109253, 89518, 'fr', 'name', 'UniversitƩ franco-allemande'),
(109254, 89519, 'en', 'name', 'United Nations Organization for Education, Science and Culture'),
(109255, 89520, 'no_lang_code', 'name', 'PFI (Germany)'),
(109256, 89521, 'no_lang_code', 'name', 'Ionic Liquids Technologies (Germany)'),
(109257, 89522, 'en', 'name', 'National Research Institute of Animal Production'),
(109258, 89523, 'no_lang_code', 'name', 'Gwent Electronic Materials (United Kingdom)'),
(109259, 89524, 'en', 'name', 'Laval University Cancer Research Center'),
(109260, 89525, 'en', 'name', 'International Union of Nutritional Sciences'),
(109261, 89526, 'en', 'name', 'The Postal Museum'),
(109262, 89527, 'en', 'name', 'Art Institute of California'),
(109263, 89528, 'en', 'name', 'Florence Nightingale Foundation'),
(109264, 89529, 'en', 'name', 'Canadian Water Network'),
(109265, 89529, 'fr', 'name', 'RĆ©seau canadien de l’eau'),
(109266, 89530, 'en', 'name', 'Tamagawa University'),
(109267, 89530, 'ja', 'name', 'ēŽ‰å·å¤§å­¦'),
(109268, 89531, 'no_lang_code', 'name', 'Entasis Therapeutics (United States)'),
(109269, 89532, 'en', 'name', 'Farrell Family Foundation'),
(109270, 89533, 'en', 'name', 'Tsimbazaza Zoo'),
(109271, 89534, 'en', 'name', 'Royal Commission for the Exhibition of 1851'),
(109272, 89535, 'no_lang_code', 'name', 'Swedish ICT Research (Sweden)'),
(109273, 89536, 'en', 'name', 'Collaborative Innovation Center of Chemistry for Energy Materials'),
(109274, 89537, 'en', 'name', 'Firland Foundation'),
(109275, 89538, 'no_lang_code', 'name', 'Algaecytes (United Kingdom)'),
(109276, 89539, 'en', 'name', 'Mangalore University'),
(109277, 89539, 'hi', 'name', 'ą¤®ą¤‚ą¤—ą¤²ą„Œą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(109278, 89539, 'kn', 'name', 'ಮಂಗಳೂರು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(109279, 89539, 'mr', 'name', 'ą¤®ą¤‚ą¤—ą¤³ą„‚ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(109280, 89540, 'en', 'name', 'Saskatchewan Pulse Growers'),
(109281, 89541, 'en', 'name', 'Alpro Foundation'),
(109282, 89542, 'de', 'name', 'Stiftung Institut für Werkstofftechnik'),
(109283, 89542, 'en', 'name', 'Foundation Institute of Materials Science'),
(109284, 89543, 'de', 'name', 'Hanse-Wissenschaftskolleg'),
(109285, 89543, 'en', 'name', 'Institute for Advanced Study'),
(109286, 89544, 'en', 'name', 'National Institute for Medical Research'),
(109287, 89545, 'en', 'name', 'Global Biodiversity Information Facility'),
(109288, 89546, 'en', 'name', 'Sudbury Regional Hospital'),
(109289, 89546, 'fr', 'name', 'HƓpital rƩgional de Sudbury'),
(109290, 89547, 'no_lang_code', 'name', 'Seres Therapeutics (United States)'),
(109291, 89548, 'no_lang_code', 'name', 'Femtolasers Produktions (Austria)'),
(109292, 89549, 'en', 'name', 'GLA University'),
(109293, 89550, 'en', 'name', 'Wilhelmina Children''s Hospital'),
(109294, 89550, 'nl', 'name', 'Wilhelmina Kinderziekenhuis'),
(109295, 89551, 'en', 'name', 'Hinkley Center for Solid and Hazardous Waste Management'),
(109296, 89552, 'nl', 'name', 'Vlaamse Liga tegen Kanker'),
(109297, 89553, 'en', 'name', 'Tear Film & Ocular Surface Society'),
(109298, 89554, 'en', 'name', 'African Economic Research Consortium'),
(109299, 89555, 'no_lang_code', 'name', 'Ultra Electronics Holdings (United States)'),
(109300, 89556, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ł‘ŁˆŲ­ القدس - Ų§Ł„ŁƒŲ³Ł„ŁŠŁƒ'),
(109301, 89556, 'en', 'name', 'Holy Spirit University of Kaslik'),
(109302, 89556, 'fr', 'name', 'UniversitƩ saint-esprit de kaslik'),
(109303, 89557, 'en', 'name', 'Tropical Biology Association'),
(109304, 89558, 'no_lang_code', 'name', 'ČeskÔ Zbrojovka (Czechia)'),
(109305, 89559, 'en', 'name', 'The Catholic University of Malawi'),
(109306, 89560, 'en', 'name', 'Intermountain Health Care'),
(109307, 89561, 'en', 'name', 'Odesa National University of Technology'),
(109308, 89561, 'ru', 'name', 'ŠžŠ“ŠµŃŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ пищевых технологий'),
(109309, 89561, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń харчових технологій, ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(109310, 89562, 'en', 'name', 'Institute for Student Achievement'),
(109311, 89563, 'en', 'name', 'Cook For Your Life'),
(109312, 89564, 'en', 'name', 'Conrad N. Hilton Foundation'),
(109313, 89565, 'en', 'name', 'Consultative Group on International Agricultural Research'),
(109314, 89566, 'en', 'name', 'Archives and Records Association'),
(109315, 89567, 'en', 'name', 'Montreal Neurological Institute and Hospital'),
(109316, 89567, 'fr', 'name', 'Institut et hƓpital neurologiques de montrƩal'),
(109317, 89568, 'fr', 'name', 'HƓpital Tarnier-Cochin'),
(109318, 89569, 'en', 'name', 'Department of Education of Zhejiang Province'),
(109319, 89570, 'en', 'name', 'Rowland Foundation'),
(109320, 89571, 'en', 'name', 'Samara State University of Architecture and Civil Engineering'),
(109321, 89572, 'en', 'name', 'American Surgical Association'),
(109322, 89573, 'no_lang_code', 'name', 'Hartmann & Braun (Germany)'),
(109323, 89574, 'nl', 'name', 'Vereniging Samenwerkende Ouder- en Patiƫntenorganisaties'),
(109324, 89575, 'no_lang_code', 'name', 'Sirtex (Australia)'),
(109325, 89576, 'en', 'name', 'The Lane Libraries'),
(109326, 89577, 'no_lang_code', 'name', 'Thalmic Labs (Canada)'),
(109327, 89578, 'en', 'name', 'Kyoto University Museum'),
(109328, 89578, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦ē·åˆåšē‰©é¤Ø'),
(109329, 89579, 'en', 'name', 'Council for Grants of the President of the Russian Federation'),
(109330, 89579, 'ru', 'name', 'Довет по грантам ŠŸŃ€ŠµŠ·ŠøŠ“ента Российской ФеГерации'),
(109331, 89580, 'en', 'name', 'Foundation KiKa'),
(109332, 89580, 'nl', 'name', 'Stichting Kinderen Kankervrij'),
(109333, 89581, 'en', 'name', 'Prevention Research Center'),
(109334, 89582, 'en', 'name', 'Alberta Advanced Education'),
(109335, 89583, 'en', 'name', 'Promotion and Mutual Aid Corporation for Private Schools of Japan'),
(109336, 89583, 'ja', 'name', 'ę—„ęœ¬ē§ē«‹å­¦ę ”ęŒÆčˆˆćƒ»å…±ęøˆäŗ‹ę„­å›£'),
(109337, 89584, 'en', 'name', 'Iowa Western Foundation'),
(109338, 89585, 'no_lang_code', 'name', 'AeroDynamic Solutions (United States)'),
(109339, 89586, 'nl', 'name', 'OCON Orthopedische kliniek'),
(109340, 89587, 'en', 'name', 'Canadian Association for the Study of the Liver'),
(109341, 89587, 'fr', 'name', 'Association canadienne pour l''Ʃtude du foie'),
(109342, 89588, 'no_lang_code', 'name', 'Imperial Brands (United Kingdom)'),
(109343, 89589, 'en', 'name', 'Federal University of Acre'),
(109344, 89589, 'pt', 'name', 'Universidade Federal do Acre'),
(109345, 89590, 'en', 'name', 'Rick Hansen Foundation'),
(109346, 89591, 'en', 'name', 'Wellcome Library'),
(109347, 89592, 'no_lang_code', 'name', 'TE Connectivity (Switzerland)'),
(109348, 89593, 'en', 'name', 'Veterinary Research Institute'),
(109349, 89594, 'fr', 'name', 'Fondation Vaincre Alzheimer'),
(109350, 89595, 'en', 'name', 'Massachusetts Lions Eye Research Fund'),
(109351, 89596, 'en', 'name', 'Rockefeller Family Fund'),
(109352, 89597, 'en', 'name', 'North London College'),
(109353, 89598, 'no_lang_code', 'name', 'KCETLink'),
(109354, 89599, 'en', 'name', 'Oxford Academic Health Science Network'),
(109355, 89600, 'ja', 'name', 'ćƒžćƒ«ćƒ›ę Ŗå¼ä¼šē¤¾'),
(109356, 89600, 'no_lang_code', 'name', 'Maruho (Japan)'),
(109357, 89601, 'no_lang_code', 'name', 'Protein Sciences (United States)'),
(109358, 89602, 'en', 'name', 'Kermanshah University of Technology'),
(109359, 89603, 'en', 'name', 'National Centre for Disease Informatics and Research'),
(109360, 89603, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą„‹ą¤— ą¤øą„‚ą¤šą¤Øą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(109361, 89603, 'kn', 'name', 'ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ಕಾಯಿಲೆ ą²®ą²¾ą²¹ą²æą²¤ą²æą²Æą³ą²•ą³ą²¤ ą²®ą²¤ą³ą²¤ą³ ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(109362, 89604, 'no_lang_code', 'name', 'Anhui Jiyuan Software'),
(109363, 89604, 'zh', 'name', 'å®‰å¾½ē»§čæœč½Æä»¶ęœ‰é™å…¬åø'),
(109364, 89605, 'en', 'name', 'University of Central Asia'),
(109365, 89606, 'en', 'name', 'Institute of Pesticides and Environmental Protection'),
(109366, 89607, 'en', 'name', 'Screen Australia'),
(109367, 89608, 'en', 'name', 'Northwest Louisiana Technical Community College'),
(109368, 89609, 'en', 'name', 'Indiana University School of Medicine - Lafayette'),
(109369, 89610, 'ar', 'name', 'Ł„ŁƒŁ„ŁŠŲ© Ł…Ų­Ł…ŲÆ بن Ų±Ų§Ų“ŲÆ لل؄دارة Ų§Ł„Ų­ŁƒŁˆŁ…ŁŠŲ©'),
(109370, 89610, 'en', 'name', 'Mohammed Bin Rashid School of Government'),
(109371, 89611, 'en', 'name', 'Washington Center for Equitable Growth'),
(109372, 89612, 'en', 'name', 'Carson Newman College'),
(109373, 89613, 'no_lang_code', 'name', 'Organ Recovery Systems (United States)'),
(109374, 89614, 'en', 'name', 'Banco de Portugal, Bank of Portugal'),
(109375, 89615, 'en', 'name', 'Alaska Eskimo Whaling Commission'),
(109376, 89616, 'en', 'name', 'Pingxiang University'),
(109377, 89616, 'zh', 'name', 'čä¹”å­¦é™¢'),
(109378, 89617, 'no_lang_code', 'name', 'Knology'),
(109379, 89618, 'no_lang_code', 'name', 'Foghorn Therapeutics (United States)'),
(109380, 89619, 'en', 'name', 'Millennium Institute on Immunology and Immunotherapy'),
(109381, 89620, 'de', 'name', 'Bundesamt für Naturschutz'),
(109382, 89620, 'en', 'name', 'Federal Agency for Nature Conservation'),
(109383, 89621, 'en', 'name', 'Richard and Susan Smith Family Foundation'),
(109384, 89622, 'en', 'name', 'Barrett Hospital & HealthCare'),
(109385, 89623, 'en', 'name', 'College of the Sequoias'),
(109386, 89624, 'no_lang_code', 'name', 'EMD Millipore (United States)'),
(109387, 89625, 'en', 'name', 'Society for Translational Oncology'),
(109388, 89626, 'no_lang_code', 'name', 'Beckman Coulter (Australia)'),
(109389, 89627, 'en', 'name', 'Crozer Chester Medical Center'),
(109390, 89628, 'el', 'name', 'ĪœĪ—Ī¤Ī”ĪŸĪ ĪŸĪ›Ī™Ī¤Ī™ĪšĪŸ ĪšĪŸĪ›Ī›Ī•Ī“Ī™ĪŸ'),
(109391, 89628, 'en', 'name', 'Metropolitan College'),
(109392, 89629, 'de', 'name', 'Poliklinik für Kieferorthopädie'),
(109393, 89630, 'en', 'name', 'Pediatric Dermatology Research Alliance'),
(109394, 89631, 'en', 'name', 'Institute of Sports Medicine and Science'),
(109395, 89631, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¹ćƒćƒ¼ćƒ„åŒ»ćƒ»ē§‘å­¦ē ”ē©¶ę‰€'),
(109396, 89632, 'en', 'name', 'European Brain Council'),
(109397, 89633, 'nl', 'name', 'Maag Lever Darm Stichting'),
(109398, 89634, 'en', 'name', 'Zhejiang University Libraries System'),
(109399, 89634, 'zh', 'name', 'ęµ™ę±Ÿå¤§å­¦å›¾ä¹¦é¦†'),
(109400, 89635, 'en', 'name', 'Social and Health Research Center'),
(109401, 89636, 'no_lang_code', 'name', 'Heron Therapeutics (United States)'),
(109402, 89637, 'en', 'name', 'L.E. Fletcher Technical Community College'),
(109403, 89638, 'no_lang_code', 'name', 'Beam Therapeutics (United States)'),
(109404, 89639, 'en', 'name', 'Mihail Kogălniceanu University of Iași'),
(109405, 89640, 'en', 'name', 'Tatematsu Foundation'),
(109406, 89640, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē«‹ę¾č²”å›£'),
(109407, 89641, 'de', 'name', 'Bayerische Forschungsallianz'),
(109408, 89641, 'en', 'name', 'Bavarian Research Alliance'),
(109409, 89642, 'ja', 'name', 'åŒ—é‡Œå¤§å­¦åŒ—é‡Œē ”ē©¶ę‰€ē—…é™¢'),
(109410, 89642, 'no_lang_code', 'name', 'Kitasato Institute Hospital'),
(109411, 89643, 'en', 'name', 'Quebec Network for Research on Aging'),
(109412, 89643, 'fr', 'name', 'RƩseau QuƩbƩcois de Recherche sur le Vieillissement'),
(109413, 89644, 'en', 'name', 'Water Institute of the Gulf'),
(109414, 89645, 'en', 'name', 'Tata Institute of Social Sciences'),
(109415, 89645, 'hi', 'name', 'टाटा ą¤øą¤¾ą¤®ą¤¾ą¤œą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(109416, 89645, 'ml', 'name', 'ą“Ÿą“¾ą“±ąµą“± ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“øąµ‹ą“·ąµą“Æąµ½ ą“øą“Æąµ»ą“øą“øąµ'),
(109417, 89645, 'mr', 'name', 'टाटा ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤øą„‹ą¤¶ą¤² ą¤øą¤¾ą¤Æą¤Øą„ą¤øą„‡ą¤ø'),
(109418, 89646, 'en', 'name', 'Australian and New Zealand Urogenital and Prostate Cancer Trials Group'),
(109419, 89647, 'en', 'name', 'Newmarket Equine Hospital'),
(109420, 89648, 'en', 'name', 'Uganda National Council for Science and Technology'),
(109421, 89649, 'no_lang_code', 'name', 'Hollister (United States)'),
(109422, 89650, 'en', 'name', 'University of Papua New Guinea'),
(109423, 89651, 'no_lang_code', 'name', 'Mersana Therapeutics (United States)'),
(109424, 89652, 'en', 'name', 'Lambda Alpha International'),
(109425, 89653, 'en', 'name', 'Marfan Foundation'),
(109426, 89654, 'de', 'name', 'Thüringer Landessternwarte Tautenburg'),
(109427, 89655, 'en', 'name', 'MEF University'),
(109428, 89656, 'en', 'name', 'Medical Oncology Group of Australia'),
(109429, 89657, 'no_lang_code', 'name', 'AgStar Financial Services, ACA (United States)'),
(109430, 89658, 'fr', 'name', 'GƩosciences Environnement Toulouse'),
(109431, 89659, 'no_lang_code', 'name', 'Aurigene Discovery Technologies (India)'),
(109432, 89660, 'en', 'name', 'Washington and Jefferson College'),
(109433, 89661, 'en', 'name', 'Fraunhofer Center for Molecular Biotechnology'),
(109434, 89662, 'en', 'name', 'Against Breast Cancer'),
(109435, 89663, 'en', 'name', 'Moscow State University of Applied Biotechnology'),
(109436, 89664, 'en', 'name', 'International Society of Ultrasound in Obstetrics and Gynecology'),
(109437, 89665, 'en', 'name', 'Thad Cochran National Warmwater Aquaculture Center'),
(109438, 89666, 'en', 'name', 'Esophageal Cancer Hospital'),
(109439, 89667, 'en', 'name', 'The Swifty Foundation'),
(109440, 89668, 'no_lang_code', 'name', 'First Quantum Minerals (Canada)'),
(109441, 89669, 'en', 'name', 'Center for Life Sciences'),
(109442, 89669, 'zh', 'name', 'ē”Ÿå‘½ē§‘å­¦č”åˆäø­åæƒ'),
(109443, 89670, 'en', 'name', 'Science Foundation Arizona'),
(109444, 89671, 'en', 'name', 'Hill Museum and Manuscript Library'),
(109445, 89672, 'en', 'name', 'Berea College'),
(109446, 89673, 'en', 'name', 'Environment and Development Action Third World'),
(109447, 89674, 'no_lang_code', 'name', 'Tenax Therapeutics (United States)'),
(109448, 89675, 'en', 'name', 'Argosy University'),
(109449, 89676, 'no_lang_code', 'name', 'Keeling & Walker (United Kingdom)'),
(109450, 89677, 'en', 'name', 'Jenner Institute'),
(109451, 89678, 'no_lang_code', 'name', 'Langfang Normal University'),
(109452, 89678, 'zh', 'name', 'å»ŠåŠåøˆčŒƒå­¦é™¢'),
(109453, 89679, 'en', 'name', 'Aichi Prefectural Cardiovascular Respiratory Disease Center'),
(109454, 89679, 'ja', 'name', 'ę„›ēŸ„ēœŒē«‹å¾Ŗē’°å™Øå‘¼åøå™Øē—…ć‚»ćƒ³ć‚æćƒ¼'),
(109455, 89680, 'en', 'name', 'Anita Borg Institute'),
(109456, 89681, 'en', 'name', 'Leningrad State University named after AS Pushkin'),
(109457, 89681, 'ru', 'name', 'ЛенинграГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š”. Пушкина'),
(109458, 89682, 'en', 'name', 'Jurassic Foundation'),
(109459, 89683, 'en', 'name', 'University of Gilan'),
(109460, 89684, 'en', 'name', 'Cancer Research Initiatives Foundation'),
(109461, 89685, 'en', 'name', 'National Medicines Institute'),
(109462, 89685, 'pl', 'name', 'Narodowy Instytut Leków'),
(109463, 89686, 'en', 'name', 'International Centre for the Study of the Preservation and Restoration of Cultural Property'),
(109464, 89686, 'it', 'name', 'Centro Internazionale di Studi per la Conservazione ed il Restauro dei Beni Culturali'),
(109465, 89687, 'en', 'name', 'Office of the Higher Education Commission'),
(109466, 89687, 'th', 'name', 'สำนักงานคณะกรรดการการอุดดศึกษา'),
(109467, 89688, 'en', 'name', 'Japan Pancreatic Disease Research Foundation'),
(109468, 89688, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č†µč‡“ē—…ē ”ē©¶č²”å›£'),
(109469, 89689, 'en', 'name', 'Susan G Komen Southern Arizona'),
(109470, 89690, 'en', 'name', 'United Nations Foundation'),
(109471, 89691, 'no_lang_code', 'name', 'Edimer Pharmaceuticals (United States)'),
(109472, 89692, 'en', 'name', 'Grand Charleroi Hospital'),
(109473, 89692, 'nl', 'name', 'Grand HƓpital de Charleroi'),
(109474, 89693, 'no_lang_code', 'name', 'Virbac (France)'),
(109475, 89694, 'no_lang_code', 'name', 'Mallinckrodt (Czechia)'),
(109476, 89695, 'fr', 'name', 'Ɖcole SupĆ©rieure de Commerce'),
(109477, 89696, 'no_lang_code', 'name', 'Vital Strategies'),
(109478, 89697, 'en', 'name', 'PLA Army Engineering University'),
(109479, 89697, 'zh', 'name', '中国人民解放军陆军巄程大学'),
(109480, 89698, 'en', 'name', 'The Historical Society of Israel'),
(109481, 89698, 'he', 'name', 'החברה ×”×”×™×”×˜×•×Ø×™×Ŗ ×”×™×©×Ø××œ×™×Ŗ'),
(109482, 89699, 'en', 'name', 'Clinical Nutrition Research Centre'),
(109483, 89700, 'no_lang_code', 'name', 'Praxair Surface Technologies (Italy)'),
(109484, 89701, 'de', 'name', 'Max-Planck-Institut für Menschheitsgeschichte'),
(109485, 89701, 'en', 'name', 'Max Planck Institute for the Science of Human History'),
(109486, 89702, 'en', 'name', 'Alliance College-Ready Public Schools'),
(109487, 89703, 'ar', 'name', 'Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„ŲŖŁ‚Ł†ŁŠŁ† Ų§Ł„Ł…ŁˆŲ§ŲµŁ„Ų§ŲŖ'),
(109488, 89703, 'en', 'name', 'National Telecommunications Regulatory Agency'),
(109489, 89703, 'fr', 'name', 'Agence Nationale de RƩglementation des TƩlƩcommunications'),
(109490, 89704, 'en', 'name', 'University of AtlƔntico'),
(109491, 89704, 'es', 'name', 'Universidad del AtlƔntico'),
(109492, 89705, 'no_lang_code', 'name', 'NCI Information Systems (United States)'),
(109493, 89706, 'no_lang_code', 'name', 'International Geosynthetics Society (United States)'),
(109494, 89707, 'en', 'name', 'Fernbank Museum of Natural History'),
(109495, 89708, 'en', 'name', 'Minneapolis College of Art and Design'),
(109496, 89708, 'fr', 'name', 'Beaux-arts de minneapolis'),
(109497, 89709, 'en', 'name', 'University of North Texas Health Science Center'),
(109498, 89709, 'fr', 'name', 'Centre des Sciences de SantƩ de l''UniversitƩ du Texas du Nord'),
(109499, 89710, 'en', 'name', 'Federal University of Pelotas'),
(109500, 89710, 'pt', 'name', 'Universidade Federal de Pelotas'),
(109501, 89711, 'en', 'name', 'Japanese Foundation for Research and Promotion of Endoscopy'),
(109502, 89711, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å†…č¦–é”åŒ»å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(109503, 89712, 'no_lang_code', 'name', 'Investigen (United States)'),
(109504, 89713, 'en', 'name', 'Osaka City University Hospital'),
(109505, 89713, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(109506, 89714, 'de', 'name', 'UniversitƤtsklinikum Kƶln'),
(109507, 89714, 'en', 'name', 'University Hospital Cologne'),
(109508, 89715, 'en', 'name', 'Argosy University'),
(109509, 89716, 'en', 'name', 'Sandwell & West Birmingham Hospitals NHS Trust'),
(109510, 89717, 'en', 'name', 'Affiliated Hospital of Zunyi Medical College'),
(109511, 89717, 'zh', 'name', '遵义医学院附属医院'),
(109512, 89718, 'en', 'name', 'Shanxi Cardiovascular Hospital'),
(109513, 89718, 'zh', 'name', 'å±±č„æēœåæƒč”€ē®”åŒ»é™¢'),
(109514, 89719, 'en', 'name', 'Military University Nueva Granada'),
(109515, 89719, 'es', 'name', 'Universidad Militar Nueva Granada'),
(109516, 89720, 'en', 'name', 'Retina Research Foundation'),
(109517, 89721, 'en', 'name', 'American Academy for Cerebral Palsy and Developmental Medicine'),
(109518, 89722, 'en', 'name', 'Science made simple'),
(109519, 89723, 'no_lang_code', 'name', 'Societas pro Fauna et Flora Fennica'),
(109520, 89724, 'de', 'name', 'Nationalmuseum für Naturgeschichte Luxemburg'),
(109521, 89724, 'fr', 'name', 'MusƩe National d''Histoire Naturelle, MusƩe national d''histoire naturelle du Luxembourg'),
(109522, 89724, 'lb', 'name', 'NationalmusƩe fir Naturgeschicht, NaturmusƩe'),
(109523, 89725, 'en', 'name', 'Jiangxi Academy of Agricultural Sciences'),
(109524, 89725, 'zh', 'name', 'ę±Ÿč„æēœå†œäøšē§‘å­¦é™¢'),
(109525, 89726, 'en', 'name', 'Canadian Child Health Clinician Scientist Program'),
(109526, 89727, 'en', 'name', 'Jiangxi Normal University'),
(109527, 89727, 'zh', 'name', '江脿师范大学'),
(109528, 89728, 'en', 'name', 'Albion College'),
(109529, 89729, 'en', 'name', 'National Agri-Food Biotechnology Institute'),
(109530, 89730, 'en', 'name', 'SBA Research'),
(109531, 89731, 'bn', 'name', 'ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(109532, 89731, 'en', 'name', 'University of Rajshahi'),
(109533, 89732, 'en', 'name', 'Ningbo Institute of Industrial Technology'),
(109534, 89732, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å®ę³¢ęę–™ęŠ€ęœÆäøŽå·„ēØ‹ē ”ē©¶ę‰€'),
(109535, 89733, 'en', 'name', 'Oceanography Society'),
(109536, 89734, 'en', 'name', 'Ontario Federation of Anglers and Hunters'),
(109537, 89735, 'en', 'name', 'Louisiana Universities Marine Consortium'),
(109538, 89736, 'en', 'name', 'Robert and Patricia Switzer Foundation'),
(109539, 89737, 'de', 'name', 'Leibniz-Institut für Zoo- und Wildtierforschung'),
(109540, 89737, 'en', 'name', 'Leibniz Institute for Zoo and Wildlife Research'),
(109541, 89738, 'en', 'name', 'Wellcome/MRC Cambridge Stem Cell Institute'),
(109542, 89739, 'en', 'name', 'Władysław Szafer Institute of Botany'),
(109543, 89740, 'en', 'name', 'Dementias Platform UK'),
(109544, 89741, 'en', 'name', 'Association for the Sciences of Limnology and Oceanography'),
(109545, 89742, 'no_lang_code', 'name', 'Sogeti (United Kingdom)'),
(109546, 89743, 'en', 'name', 'American Hip Institute'),
(109547, 89744, 'en', 'name', 'The Dodd-Walls Centre for Photonic and Quantum Technologies'),
(109548, 89745, 'en', 'name', 'Jeju National University Hospital'),
(109549, 89745, 'ko', 'name', '제주 ėŒ€ķ•™źµ 병원'),
(109550, 89746, 'no_lang_code', 'name', 'China Telecom'),
(109551, 89746, 'zh', 'name', 'äø­å›½ē”µäæ”č‚”ä»½ęœ‰é™å…¬åø'),
(109552, 89747, 'en', 'name', 'Institute for Clinical Evaluative Sciences'),
(109553, 89748, 'en', 'name', 'Catalan Water Agency'),
(109554, 89748, 'es', 'name', 'Agencia Catalana de L''Aigua'),
(109555, 89749, 'de', 'name', 'Klinik für Hals-, Nasen- und Ohrenheilkunde'),
(109556, 89750, 'no_lang_code', 'name', 'Skulpt (United States)'),
(109557, 89751, 'no_lang_code', 'name', 'Manufacturing Advocacy & Growth Network (United States)'),
(109558, 89752, 'es', 'name', 'Centro Universitario Une'),
(109559, 89753, 'en', 'name', 'Massachusetts Green High Performance Computing Center'),
(109560, 89754, 'en', 'name', 'Maranatha Christian University'),
(109561, 89754, 'id', 'name', 'Universitas Kristen Maranatha'),
(109562, 89755, 'es', 'name', 'Universidad Panamericana'),
(109563, 89756, 'en', 'name', 'Disability Rights Fund'),
(109564, 89757, 'en', 'name', 'Italian National Agency for the Evaluation of Universities and Research Institutes'),
(109565, 89757, 'it', 'name', 'Agenzia Nazionale di Valutazione del Sistema Universitario e della Ricerca'),
(109566, 89758, 'en', 'name', 'Baring Foundation'),
(109567, 89759, 'no_lang_code', 'name', 'ARVYS Proteins (United States)'),
(109568, 89760, 'en', 'name', 'Aboriginal Affairs Northern Dev Canada'),
(109569, 89760, 'fr', 'name', 'Affaires autochtones et du dƩveloppement du Nord canadien'),
(109570, 89761, 'en', 'name', 'Shanghai Planning Office of Philosophy and Social Science'),
(109571, 89761, 'zh', 'name', 'äøŠęµ·åø‚å“²å­¦ē¤¾ä¼šē§‘å­¦č§„åˆ’åŠžå…¬å®¤'),
(109572, 89762, 'en', 'name', 'Institute for Clinical Acupuncture and Oriental Medicine'),
(109573, 89763, 'en', 'name', 'Maccabi Institute for Health Services Research'),
(109574, 89764, 'en', 'name', 'Center for China and Globalization'),
(109575, 89764, 'zh', 'name', 'äø­å›½äøŽå…ØēƒåŒ–ę™ŗåŗ“'),
(109576, 89765, 'en', 'name', 'New College Nottingham'),
(109577, 89766, 'en', 'name', 'Iredell Statesville Schools'),
(109578, 89767, 'en', 'name', 'Ranken Jordan Pediatric Bridge Hospital'),
(109579, 89768, 'en', 'name', 'African Academy of Sciences'),
(109580, 89769, 'en', 'name', 'Quaternary Research Association'),
(109581, 89770, 'no_lang_code', 'name', 'UTC Aerospace Systems (France)'),
(109582, 89771, 'en', 'name', 'Heinz Endowments'),
(109583, 89772, 'en', 'name', 'Wildlife Management Institute'),
(109584, 89773, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦”ą¦æą¦Ŗą§‡ą¦Øą§ą¦”ą§‡ą¦Øą§ą¦Ÿ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ বাংলাদেশ'),
(109585, 89773, 'en', 'name', 'Independent University'),
(109586, 89774, 'no_lang_code', 'name', 'Elopak (Norway)'),
(109587, 89775, 'en', 'name', 'Mahanakorn University of Technology'),
(109588, 89775, 'th', 'name', 'ดหาวณทยาคัยเทคโนโคยีดหานคร'),
(109589, 89776, 'en', 'name', 'Sakon Nakhon Rajabhat University'),
(109590, 89776, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøŖąøąø„ąø™ąø„ąø£'),
(109591, 89777, 'en', 'name', 'Canadian Society of Nephrology'),
(109592, 89778, 'no_lang_code', 'name', 'Aminex Therapeutics (United States)'),
(109593, 89779, 'nl', 'name', 'Stichting Stoffels-Hornstra'),
(109594, 89780, 'no_lang_code', 'name', 'Alcen (France)'),
(109595, 89781, 'en', 'name', 'University of Wisconsin–Waukesha'),
(109596, 89781, 'fr', 'name', 'UniversitƩ du wisconsin Ơ waukesha'),
(109597, 89782, 'en', 'name', 'Skolkovo Foundation'),
(109598, 89783, 'en', 'name', 'National Institute of Psychiatry Ramón de la Fuente Muñiz'),
(109599, 89783, 'es', 'name', 'Instituto Nacional de PsiquiatrĆ­a'),
(109600, 89784, 'en', 'name', 'Economic Research Institute'),
(109601, 89784, 'kk', 'name', 'Экономикалық Š·ŠµŃ€Ń‚Ń‚ŠµŃƒŠ»ŠµŃ€ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(109602, 89785, 'en', 'name', 'Mary S. and David C. Corbin Foundation'),
(109603, 89786, 'no_lang_code', 'name', 'DAK-Gesundheit (Germany)'),
(109604, 89787, 'en', 'name', 'Santa Barbara and Ventura Colleges of Law'),
(109605, 89788, 'en', 'name', 'Biotechnology Industry Research Assistance Council'),
(109606, 89789, 'en', 'name', 'Reading & Writing Foundation'),
(109607, 89790, 'no_lang_code', 'name', 'OM Group (United States)'),
(109608, 89791, 'en', 'name', 'Immune Deficiency Foundation'),
(109609, 89792, 'en', 'name', 'South Ural State Medical University'),
(109610, 89793, 'no_lang_code', 'name', 'Nexgenix Pharmaceuticals (United States)'),
(109611, 89794, 'en', 'name', 'National Association for Research in Science Teaching'),
(109612, 89795, 'no_lang_code', 'name', 'Mylan (Australia)'),
(109613, 89796, 'en', 'name', 'Romanian Space Agency'),
(109614, 89796, 'ro', 'name', 'Agenţia Spaţială Română'),
(109615, 89797, 'en', 'name', 'Robert J Kleberg Jr and Helen C Kleberg Foundation'),
(109616, 89798, 'en', 'name', 'British Columbia Lung Association'),
(109617, 89799, 'en', 'name', 'Zhebei Mingzhou Hospital'),
(109618, 89800, 'de', 'name', 'Max-Planck-Institut für Terrestrische Mikrobiologie'),
(109619, 89800, 'en', 'name', 'Max Planck Institute for Terrestrial Microbiology'),
(109620, 89801, 'en', 'name', 'Washington and Lee University'),
(109621, 89801, 'es', 'name', 'Universidad Washington y Lee'),
(109622, 89802, 'no_lang_code', 'name', 'GE Renewable Energy (Germany)'),
(109623, 89803, 'fr', 'name', 'Association FranƧois Aupetit'),
(109624, 89804, 'en', 'name', 'Ogun State University Teaching Hospital'),
(109625, 89805, 'en', 'name', 'The Wende Museum'),
(109626, 89806, 'en', 'name', 'Dutch Dairymen Board'),
(109627, 89807, 'en', 'name', 'Lucie and AndrƩ Chagnon Foundation'),
(109628, 89807, 'fr', 'name', 'Fondation Lucie et AndrƩ Chagnon'),
(109629, 89808, 'en', 'name', 'Bread & Roses Community Fund'),
(109630, 89809, 'en', 'name', 'Commonwealth Foundation'),
(109631, 89810, 'en', 'name', 'The Kubert School'),
(109632, 89811, 'en', 'name', 'Central Bible College'),
(109633, 89812, 'en', 'name', 'Pipeline Research Council International'),
(109634, 89813, 'no_lang_code', 'name', 'MEL Chemicals (United Kingdom)'),
(109635, 89814, 'ja', 'name', 'ä½å‹é›»ę°—å·„ę„­'),
(109636, 89814, 'no_lang_code', 'name', 'Sumitomo Electric Industries (Japan)'),
(109637, 89815, 'no_lang_code', 'name', 'UES (United States)'),
(109638, 89816, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† رازی Ų±Ų“ŲŖ'),
(109639, 89816, 'no_lang_code', 'name', 'Razi Hospital'),
(109640, 89817, 'en', 'name', 'Chita State Academy of Medicine'),
(109641, 89817, 'ru', 'name', 'Š§ŠøŃ‚ŠøŠ½ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(109642, 89818, 'en', 'name', 'Asian Pacific Development Center'),
(109643, 89819, 'en', 'name', 'American Coastline University'),
(109644, 89820, 'no_lang_code', 'name', 'Chemtura (United States)'),
(109645, 89821, 'en', 'name', 'Royal Zoological Society of Scotland'),
(109646, 89822, 'no_lang_code', 'name', 'Conexant (United States)'),
(109647, 89823, 'en', 'name', 'Royal College of Physicians and Surgeons of Canada'),
(109648, 89823, 'fr', 'name', 'Collège royal des médecins et chirurgiens du Canada'),
(109649, 89824, 'en', 'name', 'Moravian Archives'),
(109650, 89825, 'ar', 'name', 'الجامعة Ų§Ł„Ł…Ų³ŲŖŁ†ŲµŲ±ŁŠŲ©'),
(109651, 89825, 'no_lang_code', 'name', 'Mustansiriyah University'),
(109652, 89826, 'en', 'name', 'Airey Neave Trust'),
(109653, 89827, 'en', 'name', 'International Sociological Association'),
(109654, 89828, 'en', 'name', 'Startup Foundation'),
(109655, 89829, 'en', 'name', 'SRI International'),
(109656, 89830, 'nl', 'name', 'Sporten voor Sophia'),
(109657, 89831, 'en', 'name', 'Samara State Pedagogical University'),
(109658, 89831, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(109659, 89832, 'en', 'name', 'Women''s & Children''s Hospital Foundation'),
(109660, 89833, 'pt', 'name', 'Fundação do ABC'),
(109661, 89834, 'no_lang_code', 'name', 'Raydiance (United States)'),
(109662, 89835, 'de', 'name', 'Institut für Grenzgebiete der Psychologie und Psychohygiene'),
(109663, 89835, 'en', 'name', 'Institute for Frontier Areas of Psychology and Mental Health'),
(109664, 89836, 'en', 'name', 'Borchard Foundation Center on Law and Aging'),
(109665, 89837, 'en', 'name', 'CatWalk Spinal Cord Injury Trust'),
(109666, 89838, 'it', 'name', 'Istituto Euro Mediterraneo di Scienza e Tecnologia'),
(109667, 89839, 'en', 'name', 'Tula State University'),
(109668, 89839, 'ru', 'name', 'Тульский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(109669, 89840, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŁˆŁŁŠŲ©ā€Ž'),
(109670, 89840, 'en', 'name', 'Menoufia University'),
(109671, 89841, 'pt', 'name', 'Instituto Brasileiro de Controle do CĆ¢ncer'),
(109672, 89842, 'en', 'name', 'Japan Association for Diabetes Education and Care'),
(109673, 89842, 'ja', 'name', 'ę—„ęœ¬ē³–å°æē—…å”ä¼š'),
(109674, 89843, 'es', 'name', 'Universidad La Salle'),
(109675, 89844, 'en', 'name', 'Otto A. Malm Foundation'),
(109676, 89844, 'fi', 'name', 'Otto A. Malms Donationsfond'),
(109677, 89845, 'en', 'name', 'Detroit Baptist Theological Seminary'),
(109678, 89846, 'en', 'name', 'Campbell Collaboration'),
(109679, 89847, 'en', 'name', 'Lown Institute'),
(109680, 89848, 'en', 'name', 'Saint Petersburg State Institute of Psychology and Social Work'),
(109681, 89848, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологии Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š¹ работы'),
(109682, 89849, 'en', 'name', 'North Carolina Cotton Producers Association'),
(109683, 89850, 'en', 'name', 'Federal University of EspĆ­rito Santo'),
(109684, 89850, 'pt', 'name', 'Universidade Federal do EspĆ­rito Santo'),
(109685, 89851, 'no_lang_code', 'name', 'LaVision BioTec (Germany)'),
(109686, 89852, 'en', 'name', 'Yasouj University'),
(109687, 89853, 'en', 'name', 'Prize4Life'),
(109688, 89854, 'no_lang_code', 'name', 'Visa (United States)'),
(109689, 89855, 'no_lang_code', 'name', 'Gƶteborg Energi (Sweden)'),
(109690, 89856, 'ja', 'name', 'ę±äŗ¬å„³å­¦é¤Øå¤§å­¦'),
(109691, 89856, 'no_lang_code', 'name', 'Tokyo Jogakkan College'),
(109692, 89857, 'no_lang_code', 'name', 'Blue Ocean Mariculture (United States)'),
(109693, 89858, 'en', 'name', 'St. Christopher''s Hospital for Children'),
(109694, 89859, 'pt', 'name', 'Faculdade de Pato Branco'),
(109695, 89860, 'en', 'name', 'Higher Administrative School of St.Peterburg''s Administration'),
(109696, 89861, 'en', 'name', 'Kenya Marine and Fisheries Research Institute'),
(109697, 89862, 'no_lang_code', 'name', 'Augmenix (United States)'),
(109698, 89863, 'en', 'name', 'Chandigarh University'),
(109699, 89864, 'de', 'name', 'Kantonsschule Zürcher Oberland'),
(109700, 89865, 'en', 'name', 'Carl and Ruth Shapiro Family Foundation'),
(109701, 89866, 'es', 'name', 'Centro de Aplicaciones Tecnológicas y Desarrollo Nuclear'),
(109702, 89867, 'en', 'name', 'China Foundation for Hepatitis Prevention and Control'),
(109703, 89868, 'en', 'name', 'Lauri Strauss Leukemia Foundation'),
(109704, 89869, 'en', 'name', 'Discovery Institute'),
(109705, 89870, 'en', 'name', 'Sampoerna University'),
(109706, 89870, 'id', 'name', 'Universitas Siswa Bangsa Internasional'),
(109707, 89871, 'en', 'name', 'Iranian Research Institute of Plant Protection'),
(109708, 89872, 'en', 'name', 'Indrashil University'),
(109709, 89872, 'ur', 'name', 'ąŖ‡ąŖØą«ąŖ¦ą«ąŖ°ąŖ¶ą«€ąŖ² ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(109710, 89873, 'no_lang_code', 'name', 'Cytori Therapeutics (United States)'),
(109711, 89874, 'en', 'name', 'Helsingin Sanomat Foundation'),
(109712, 89874, 'fi', 'name', 'Helsingin Sanomain SƤƤtiƶ'),
(109713, 89875, 'pt', 'name', 'ServiƧo Nacional de Aprendizagem Comercial'),
(109714, 89876, 'en', 'name', 'Wyss Center for Bio and Neuroengineering'),
(109715, 89877, 'en', 'name', 'European Foundation for the Study of Diabetes'),
(109716, 89878, 'en', 'name', 'American Society for Mass Spectrometry'),
(109717, 89879, 'en', 'name', 'Hanyang Cyber University'),
(109718, 89879, 'ko', 'name', 'ķ•œģ–‘ģ‚¬ģ“ė²„ėŒ€ķ•™źµ'),
(109719, 89880, 'no_lang_code', 'name', 'Rapiscan Systems (United States)'),
(109720, 89881, 'en', 'name', 'Yale New Haven Hospital'),
(109721, 89882, 'en', 'name', 'Golfers Against Cancer'),
(109722, 89883, 'no_lang_code', 'name', 'Condor Petroleum (Canada)'),
(109723, 89884, 'en', 'name', 'Japan Association for the Advancement of Medical Equipment'),
(109724, 89884, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ»ē™‚ę©Ÿå™Øć‚»ćƒ³ć‚æćƒ¼'),
(109725, 89885, 'en', 'name', 'Network for Studies on Pensions, Aging and Retirement'),
(109726, 89886, 'en', 'name', 'China People''s Public Security University'),
(109727, 89886, 'zh', 'name', '中国人民公安大学'),
(109728, 89887, 'no_lang_code', 'name', 'Freescale Semiconductor (United Kingdom)'),
(109729, 89888, 'en', 'name', 'Foundation for the Education and Research in Neurological Emergencies'),
(109730, 89889, 'en', 'name', 'Maurice and Phyllis Paykel Trust'),
(109731, 89890, 'no_lang_code', 'name', 'Ondax (United States)'),
(109732, 89891, 'en', 'name', 'American Civil War Museum'),
(109733, 89892, 'en', 'name', 'Global Lyme Alliance'),
(109734, 89893, 'no_lang_code', 'name', 'Foster + Freeman (United Kingdom)'),
(109735, 89894, 'en', 'name', 'Ukrainian National Tchaikovsky Academy of Music'),
(109736, 89894, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŃƒŠ·ŠøŃ‡Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України імені ŠŸŠµŃ‚Ń€Š° Чайковського'),
(109737, 89895, 'en', 'name', 'Sint Anna Hospital'),
(109738, 89896, 'en', 'name', 'International Academy of Oral Medicine and Toxicology'),
(109739, 89897, 'id', 'name', 'Universitas Widyatama'),
(109740, 89898, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†Ł‡Ų±ŁŠŁ†'),
(109741, 89898, 'en', 'name', 'Nahrain University'),
(109742, 89899, 'en', 'name', 'Nur International University'),
(109743, 89900, 'en', 'name', 'Gustavus And Louise Pfeiffer Research Foundation'),
(109744, 89901, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų·ŲØ ŁˆŲ§ŁŠŁ„ ŁƒŁˆŲ±Ł†ŁŠŁ„'),
(109745, 89901, 'en', 'name', 'Weill Cornell Medical College in Qatar'),
(109746, 89902, 'en', 'name', 'Korean Society of Ginseng'),
(109747, 89903, 'en', 'name', 'National Niemann-Pick Disease Foundation'),
(109748, 89904, 'en', 'name', 'Taronga Conservation Society Australia'),
(109749, 89905, 'en', 'name', 'Northwest–Shoals Community College'),
(109750, 89906, 'en', 'name', 'Howard G. Buffett Foundation'),
(109751, 89907, 'en', 'name', 'Qatar Environment and Energy Research Institute'),
(109752, 89908, 'en', 'name', 'Military Child Education Coalition'),
(109753, 89909, 'en', 'name', 'Barrackpore Rastraguru Surendranath College'),
(109754, 89910, 'en', 'name', 'Yiddish Book Center'),
(109755, 89911, 'no_lang_code', 'name', 'Australian Broadcasting Corporation (Australia)'),
(109756, 89912, 'en', 'name', 'Japan Cancer Society'),
(109757, 89912, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åÆ¾ćŒć‚“å”ä¼š'),
(109758, 89913, 'en', 'name', 'Association of American Indian Physicians'),
(109759, 89914, 'en', 'name', 'Rockford University'),
(109760, 89915, 'en', 'name', 'The Borrow Foundation'),
(109761, 89916, 'en', 'name', 'Norwegian Institute of Marine Research'),
(109762, 89917, 'en', 'name', 'Morrison Child and Family Services'),
(109763, 89918, 'en', 'name', 'Aeronautics Institute of Technology'),
(109764, 89918, 'pt', 'name', 'Instituto Tecnológico de AeronÔutica'),
(109765, 89919, 'en', 'name', 'Traditional Chinese Medicine Bureau of Guangdong Province'),
(109766, 89919, 'zh', 'name', 'å¹æäøœēœäø­åŒ»čÆå±€'),
(109767, 89920, 'en', 'name', 'RIKEN Center for Advanced Photonics'),
(109768, 89920, 'ja', 'name', 'å…‰é‡å­å·„å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(109769, 89921, 'en', 'name', 'Agouron Institute'),
(109770, 89922, 'en', 'name', 'Taiwan Kansei Information Association'),
(109771, 89922, 'zh', 'name', 'å°ē£ę„Ÿę€§č³‡čØŠå­øęœƒ'),
(109772, 89923, 'en', 'name', 'Qatar Biomedical Research Institute'),
(109773, 89924, 'en', 'name', 'Spalding Trust'),
(109774, 89925, 'en', 'name', 'Penn State Wilkes-Barre'),
(109775, 89926, 'en', 'name', 'Western Australian Marine Science Institution'),
(109776, 89927, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ę¾é¢Ø'),
(109777, 89927, 'no_lang_code', 'name', 'Shofu (Japan)'),
(109778, 89928, 'en', 'name', 'State Key Laboratory of Polymer Physics and Chemistry'),
(109779, 89928, 'zh', 'name', 'äø­ē§‘é™¢é«˜åˆ†å­ē‰©ē†äøŽåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(109780, 89929, 'en', 'name', 'Vallo Sadovsky Architects'),
(109781, 89930, 'en', 'name', 'VNU University of Science'),
(109782, 89930, 'vi', 'name', 'ĐẔi hį»c Khoa hį»c Tį»± nhiĆŖn HĆ  Nį»™i'),
(109783, 89931, 'no_lang_code', 'name', 'Central Research Institute of Electronics (Russia)'),
(109784, 89931, 'ru', 'name', 'Š¦ŠŠ˜Š˜ Электроника'),
(109785, 89932, 'en', 'name', 'Heineman Foundation'),
(109786, 89933, 'en', 'name', 'Partnership for Clean Competition'),
(109787, 89934, 'de', 'name', 'Deutsche Multiple Sklerose Gesellschaft'),
(109788, 89935, 'en', 'name', 'The Leprosy Mission International'),
(109789, 89936, 'en', 'name', 'Baku Engineering University'),
(109790, 89937, 'en', 'name', 'Baylor Scott & White Health'),
(109791, 89938, 'no_lang_code', 'name', 'Biostats (United States)'),
(109792, 89939, 'no_lang_code', 'name', 'Cambridge Polymer Group (United States)'),
(109793, 89940, 'en', 'name', 'Uganda Industrial Research Institute'),
(109794, 89941, 'en', 'name', 'Catholic University of Malawi'),
(109795, 89942, 'en', 'name', 'Canadian Centre for Applied Research in Cancer Control'),
(109796, 89943, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization'),
(109797, 89944, 'en', 'name', 'Ross University School of Medicine'),
(109798, 89945, 'fr', 'name', 'Retina France'),
(109799, 89946, 'en', 'name', 'University of New Mexico'),
(109800, 89947, 'en', 'name', 'Supergrid Institute'),
(109801, 89948, 'en', 'name', 'Nippon Foundation'),
(109802, 89948, 'ja', 'name', 'ę—„ęœ¬č²”å›£'),
(109803, 89949, 'en', 'name', 'Auckland Medical Research Foundation'),
(109804, 89950, 'en', 'name', 'The Jerzy Kukuczka Academy of Physical Education in Katowice'),
(109805, 89950, 'pl', 'name', 'Akademii Wychowania Fizycznego im. Jerzego Kukuczki w Katowicach'),
(109806, 89951, 'no_lang_code', 'name', 'BioAxone BioSciences (United States)'),
(109807, 89952, 'en', 'name', 'State Key Laboratory of Remote Sensing Science'),
(109808, 89952, 'zh', 'name', 'é„ę„Ÿē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(109809, 89953, 'en', 'name', 'Adygeya State University'),
(109810, 89953, 'ru', 'name', 'АГыгейский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(109811, 89954, 'en', 'name', 'East China Jiaotong University'),
(109812, 89954, 'zh', 'name', 'åŽäøœäŗ¤é€šå¤§å­¦'),
(109813, 89955, 'en', 'name', 'Federal Rural University of Semi-Ɓrido'),
(109814, 89955, 'pt', 'name', 'Universidade Federal Rural do Semi-Ɓrido'),
(109815, 89956, 'en', 'name', 'Sofia University'),
(109816, 89957, 'no_lang_code', 'name', 'Dharmacon (United States)'),
(109817, 89958, 'en', 'name', 'Danish Diabetes Academy'),
(109818, 89959, 'en', 'name', 'VA Greater Los Angeles Healthcare System'),
(109819, 89960, 'en', 'name', 'Wayne and Gladys Valley Foundation'),
(109820, 89961, 'hr', 'name', 'HŽ Putnički Prijevoz'),
(109821, 89961, 'no_lang_code', 'name', 'HŽ Passenger Transport (Croatia)'),
(109822, 89962, 'no_lang_code', 'name', 'Selcia (United Kingdom)'),
(109823, 89963, 'en', 'name', 'Kentucky State University'),
(109824, 89963, 'fr', 'name', 'UniversitĆ© d''Ɖtat du kentucky'),
(109825, 89964, 'no_lang_code', 'name', 'Carlo Gavazzi (Italy)'),
(109826, 89965, 'en', 'name', 'Catholic Relief Services'),
(109827, 89966, 'en', 'name', 'Crown-Indigenous Relations and Northern Affairs Canada'),
(109828, 89966, 'fr', 'name', 'Relations Couronne-Autochtones et des Affaires du Nord Canada'),
(109829, 89967, 'en', 'name', 'Shanghai Municipal People''s Government'),
(109830, 89968, 'en', 'name', 'Office of Ocean Exploration and Research'),
(109831, 89969, 'en', 'name', 'International Research Institute for Advanced Systems'),
(109832, 89969, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ проблем ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(109833, 89970, 'en', 'name', 'NIHR Leicester Biomedical Research Centre'),
(109834, 89971, 'en', 'name', 'Foundation for a Cure for Mitochondrial Disease'),
(109835, 89972, 'en', 'name', 'Bernice Barbour Foundation'),
(109836, 89973, 'en', 'name', 'Anticancer Fund'),
(109837, 89973, 'fr', 'name', 'Fonds Anticancer'),
(109838, 89973, 'nl', 'name', 'Antikankerfonds'),
(109839, 89974, 'en', 'name', 'Mathile Institute For The Advancement of Human Nutrition'),
(109840, 89975, 'en', 'name', 'Center for Surveillance, Epidemiology, and Laboratory Services'),
(109841, 89976, 'en', 'name', 'The Kelvin and Eleanor Smith Foundation'),
(109842, 89977, 'en', 'name', 'Kala Art Institute'),
(109843, 89978, 'es', 'name', 'Instituto de Investigación Sanitaria del Principado de Asturias'),
(109844, 89979, 'ja', 'name', 'ę—„ęœ¬ć‚¼ć‚Ŗćƒ³ę Ŗå¼ä¼šē¤¾'),
(109845, 89979, 'no_lang_code', 'name', 'Zeon (Japan)'),
(109846, 89980, 'no_lang_code', 'name', 'Flanders'' Food (Belgium)'),
(109847, 89981, 'en', 'name', 'Alliance Against Cancer'),
(109848, 89981, 'it', 'name', 'Alleanza Contro il Cancro'),
(109849, 89982, 'it', 'name', 'Istituto Superiore Mario Boella'),
(109850, 89983, 'en', 'name', 'Rasmuson Foundation'),
(109851, 89984, 'en', 'name', 'Telecommunications Advancement Foundation'),
(109852, 89984, 'ja', 'name', 'é›»ę°—é€šäæ”ęŽØé€²č²”å›£'),
(109853, 89985, 'es', 'name', 'Instituto Nacional de Formacion Tecnica Profesional'),
(109854, 89986, 'de', 'name', 'Ɩsterreichische Austauschdienst GmbH'),
(109855, 89986, 'en', 'name', 'Austrian Agency for International Cooperation in Education and Research'),
(109856, 89987, 'en', 'name', 'Metastasis Research Society'),
(109857, 89988, 'en', 'name', 'Cancer Research UK Cambridge Institute'),
(109858, 89989, 'en', 'name', 'Hillsong International Leadership College'),
(109859, 89990, 'en', 'name', 'Japan Institute of Country-ology and Engineering'),
(109860, 89990, 'ja', 'name', 'č²”ļ¼‰å›½åœŸęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(109861, 89991, 'no_lang_code', 'name', 'Carmot Therapeutics (United States)'),
(109862, 89992, 'no_lang_code', 'name', 'Freeport-McMoRan (United States)'),
(109863, 89993, 'uz', 'name', 'Toshkent Davlat Pedagogika Universiteti'),
(109864, 89994, 'pl', 'name', 'Wyższa Szkoła Humanistyczno-Ekonomiczna we Włocławku'),
(109865, 89995, 'en', 'name', 'Iowa Soybean Association'),
(109866, 89996, 'en', 'name', 'Orthopedic Institute'),
(109867, 89997, 'en', 'name', 'McGovern Institute for Brain Research'),
(109868, 89998, 'en', 'name', 'UCSF Helen Diller Family Comprehensive Cancer Center'),
(109869, 89999, 'en', 'name', 'Schizophrenia Research Institute'),
(109870, 90000, 'en', 'name', 'HKBK College of Engineering'),
(109871, 90001, 'en', 'name', 'Thailand Science Research and Innovation'),
(109872, 90001, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø„ąø“ąø°ąøąø£ąø£ąø”ąøąø²ąø£ąøŖą¹ˆąø‡ą¹€ąøŖąø£ąø“ąø”ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œ ąø§ąø“ąøˆąø±ąø¢ą¹ąø„ąø°ąø™ąø§ąø±ąø•ąøąø£ąø£ąø”'),
(109873, 90002, 'fr', 'name', 'Fondation SegrƩ'),
(109874, 90003, 'de', 'name', 'ECOLOG-Institut für sozial-ökologische Forschung und Bildung'),
(109875, 90003, 'en', 'name', 'ECOLOG Institute for Social-Ecological Research and Education'),
(109876, 90004, 'en', 'name', 'Preventative Health'),
(109877, 90005, 'no_lang_code', 'name', 'Temasek Foundation'),
(109878, 90006, 'en', 'name', 'Genome Alberta'),
(109879, 90007, 'de', 'name', 'Fachagentur Windenergie an Land'),
(109880, 90008, 'en', 'name', 'Academic College at Wingate'),
(109881, 90008, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ בוינגייט'),
(109882, 90009, 'en', 'name', 'Michigan Botanical Foundation'),
(109883, 90010, 'en', 'name', 'High Meadows Foundation'),
(109884, 90011, 'en', 'name', 'Universidad American College'),
(109885, 90012, 'en', 'name', 'State Institution National Antarctic Scientific Center'),
(109886, 90012, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ антарктичний науковий центр'),
(109887, 90013, 'de', 'name', 'Oel-Waerme-Institut'),
(109888, 90014, 'en', 'name', 'Volodymyr Vynnychenko Central Ukrainian State University'),
(109889, 90014, 'uk', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ВолоГимира Винниченка');
INSERT INTO `ror_settings` VALUES
(109890, 90015, 'en', 'name', 'Institute for Biocomputation and Physics of Complex Systems'),
(109891, 90015, 'es', 'name', 'Instituto de Biocomputación y Física de Sistemas Complejos'),
(109892, 90016, 'en', 'name', 'Reef Check - Dominican Republic'),
(109893, 90016, 'es', 'name', 'Reef Check - RepĆŗblica Dominicana'),
(109894, 90017, 'en', 'name', 'Affiliated Eye Hospital of Wenzhou Medical College'),
(109895, 90017, 'zh', 'name', 'ęø©å·žåŒ»ē§‘å¤§å­¦é™„å±žēœ¼č§†å…‰åŒ»é™¢'),
(109896, 90018, 'it', 'name', 'Istituto di Astrofisica Spaziale e Fisica Cosmica di Bologna, Istituto di astrofisica spaziale e fisica cosmica'),
(109897, 90019, 'en', 'name', 'Al Rayyan International University College'),
(109898, 90020, 'en', 'name', 'Australian Disorders of the Corpus Callosum'),
(109899, 90021, 'ja', 'name', 'å”å’Œć‚­ćƒŖćƒ³ę Ŗå¼ä¼šē¤¾'),
(109900, 90021, 'no_lang_code', 'name', 'Kyowa Kirin (Japan)'),
(109901, 90022, 'en', 'name', 'Lille’s Cardiology Hospital'),
(109902, 90022, 'fr', 'name', 'HƓpital Cardiologique'),
(109903, 90023, 'en', 'name', 'Dudley and Walsall Mental Health Partnership NHS Trust'),
(109904, 90024, 'de', 'name', 'Max-Planck-Institut für Ornithologie'),
(109905, 90024, 'en', 'name', 'Max Planck Institute for Ornithology'),
(109906, 90025, 'en', 'name', 'Albuquerque Museum Foundation'),
(109907, 90026, 'en', 'name', 'Giraffe Conservation Foundation'),
(109908, 90027, 'no_lang_code', 'name', 'Scienion (United States)'),
(109909, 90028, 'en', 'name', 'Fujian Women and Children Hospital'),
(109910, 90029, 'en', 'name', 'Community Mercy Health Partners'),
(109911, 90030, 'de', 'name', 'Freie Hochschule Stuttgart'),
(109912, 90030, 'en', 'name', 'Free University of Stuttgart'),
(109913, 90031, 'es', 'name', 'Junta de Beneficencia de Guayaquil'),
(109914, 90032, 'en', 'name', 'Bernardino Rivadavia Natural Sciences Museum'),
(109915, 90032, 'es', 'name', 'Museo Argentino de Ciencias Naturales Bernardino Rivadavia'),
(109916, 90033, 'de', 'name', 'Institut für Unternehmenskybernetik'),
(109917, 90034, 'en', 'name', 'National Institute of Infectious Diseases'),
(109918, 90034, 'ja', 'name', 'åŽšē”ŸåŠ“åƒēœå›½ē«‹ę„ŸęŸ“ē—‡ē ”ē©¶ę‰€'),
(109919, 90035, 'fr', 'name', 'Agence wallonne Ơ l''Exportation et aux Investissements Ʃtrangers'),
(109920, 90036, 'ca', 'name', 'Hospital Sant Joan de DƩu Barcelona'),
(109921, 90036, 'en', 'name', 'Sant Joan de DĆ©u-Barcelona Children’s Hospital'),
(109922, 90037, 'en', 'name', 'Ankole Western University'),
(109923, 90038, 'en', 'name', 'Edinboro University'),
(109924, 90039, 'en', 'name', 'Norwegian Meteorological Institute'),
(109925, 90039, 'no', 'name', 'Meteorologisk institutt'),
(109926, 90040, 'en', 'name', 'Kalihi Palama Health Center'),
(109927, 90041, 'fr', 'name', 'Investigations sur l’histoire et l’actualitĆ© des mutations architecturales et urbaines'),
(109928, 90042, 'de', 'name', 'Bayerische Akademie der Wissenschaften'),
(109929, 90042, 'en', 'name', 'Bavarian Academy of Sciences and Humanities'),
(109930, 90043, 'es', 'name', 'Sociedad MatemƔtica Mexicana'),
(109931, 90044, 'en', 'name', 'State Horticultural Association of Pennsylvania'),
(109932, 90045, 'en', 'name', 'ICTP South American Institute for Fundamental Research'),
(109933, 90046, 'en', 'name', 'National Cancer Centre Japan'),
(109934, 90046, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹ćŒć‚“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(109935, 90047, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁƒŲ±ŲÆŲ³ŲŖŲ§Ł†'),
(109936, 90047, 'en', 'name', 'University of Kurdistan Hewler'),
(109937, 90047, 'ku', 'name', 'Zankoy Kurdistan – HewlĆŖr'),
(109938, 90048, 'en', 'name', 'National Chung Cheng University'),
(109939, 90048, 'zh', 'name', 'åœ‹ē«‹äø­ę­£å¤§å­ø'),
(109940, 90049, 'en', 'name', 'Open University of Libya'),
(109941, 90050, 'no_lang_code', 'name', 'BMT Fluid Mechanics (United Kingdom)'),
(109942, 90051, 'de', 'name', 'Institut für Geschichtliche Landeskunde Rheinland-Pfalz e.V.'),
(109943, 90052, 'en', 'name', 'IVC Evidensia'),
(109944, 90053, 'en', 'name', 'Aulavik National Park'),
(109945, 90053, 'fr', 'name', 'Parc national Aulavik'),
(109946, 90054, 'en', 'name', 'Peter Sowerby Foundation'),
(109947, 90055, 'de', 'name', 'Flughafen Zürich'),
(109948, 90055, 'no_lang_code', 'name', 'Zürich Airport (Switzerland)'),
(109949, 90056, 'en', 'name', 'Gamal Abdel Nasser University of Conakry'),
(109950, 90056, 'fr', 'name', 'UniversitƩ gamal abdel nasser de conakry'),
(109951, 90057, 'en', 'name', 'Bologna Astronomical Observatory'),
(109952, 90057, 'it', 'name', 'Osservatorio astronomico di Bologna'),
(109953, 90058, 'en', 'name', 'Fundy National Park'),
(109954, 90058, 'fr', 'name', 'Parc national de Fundy'),
(109955, 90059, 'cs', 'name', 'Centrum pro dopravu a energetiku'),
(109956, 90059, 'en', 'name', 'Centre for Transport and Energy'),
(109957, 90060, 'en', 'name', 'Jerusalem College of Technology'),
(109958, 90060, 'he', 'name', '×”×ž×Ø×›×– האקדמי לב'),
(109959, 90061, 'en', 'name', 'Brussels School of International Studies'),
(109960, 90062, 'en', 'name', 'Saimaa University of Applied Sciences'),
(109961, 90062, 'fi', 'name', 'Saimaan ammattikorkeakoulu'),
(109962, 90063, 'en', 'name', 'Department of Tourism, Culture, Arts and Recreation'),
(109963, 90064, 'en', 'name', 'NOAA National Weather Service Southern Region'),
(109964, 90065, 'en', 'name', 'Colchester Hospital University NHS Foundation Trust'),
(109965, 90066, 'en', 'name', 'Uzbek National Institute of Metrology'),
(109966, 90066, 'ru', 'name', 'Узбекский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(109967, 90066, 'uz', 'name', 'O''zbekiston Milliy Metrologiya Instituti'),
(109968, 90067, 'en', 'name', 'NOAA Office of Habitat Conservation'),
(109969, 90068, 'en', 'name', 'Mohamed Bin Zayed Species Conservation Fund'),
(109970, 90069, 'en', 'name', 'Australian Institute of Music'),
(109971, 90070, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Rhein'),
(109972, 90071, 'nl', 'name', 'Parnassia Groep'),
(109973, 90072, 'cs', 'name', 'NĆ”rodnĆ­ ĆŗÅ™ad pro kybernetickou a informačnĆ­ bezpečnost'),
(109974, 90072, 'en', 'name', 'National Cyber and Information Security Agency'),
(109975, 90073, 'es', 'name', 'ELLIS Alicante'),
(109976, 90074, 'no_lang_code', 'name', 'Takeda (Switzerland)'),
(109977, 90075, 'no_lang_code', 'name', 'ASM International (Netherlands)'),
(109978, 90076, 'en', 'name', 'Davee Foundation'),
(109979, 90077, 'en', 'name', 'Advanced Light Source'),
(109980, 90078, 'bn', 'name', 'ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦®ą¦Øą§ą¦¤ą§ą¦°ą¦£ą¦¾ą¦²ą¦Æą¦¼'),
(109981, 90078, 'en', 'name', 'Ministry of Science and Technology'),
(109982, 90079, 'en', 'name', 'Upper Great Plains Transportation Institute'),
(109983, 90080, 'en', 'name', 'University of Bandundu'),
(109984, 90080, 'fr', 'name', 'UniversitƩ de bandundu'),
(109985, 90081, 'no_lang_code', 'name', 'Freescale Semiconductor (Germany)'),
(109986, 90082, 'da', 'name', 'SjƦllands Universitetshospital'),
(109987, 90082, 'en', 'name', 'Zealand University Hospital'),
(109988, 90083, 'en', 'name', 'University of Guam'),
(109989, 90084, 'de', 'name', 'Schweizerische Nationalbibliothek'),
(109990, 90084, 'en', 'name', 'Swiss National Library'),
(109991, 90084, 'fr', 'name', 'BibliothĆØque nationale suisse'),
(109992, 90084, 'it', 'name', 'Biblioteca nazionale svizzera'),
(109993, 90085, 'en', 'name', 'Federal University of GoiƔs'),
(109994, 90085, 'pt', 'name', 'Universidade Federal de GoiƔs'),
(109995, 90086, 'no_lang_code', 'name', 'Globeride (Japan)'),
(109996, 90087, 'no_lang_code', 'name', 'Mahle (Austria)'),
(109997, 90088, 'en', 'name', 'Florida Academy of Science'),
(109998, 90089, 'fr', 'name', 'Laboratoire d''Ɖconomie MathĆ©matique et de MicroĆ©conomie AppliquĆ©e'),
(109999, 90090, 'fr', 'name', 'Institut de Physique NuclĆ©aire d’Orsay'),
(110000, 90091, 'no_lang_code', 'name', 'China Railway Eryuan Engineering Group Co.'),
(110001, 90091, 'zh', 'name', 'äø­é“äŗŒé™¢å·„ēØ‹é›†å›¢ęœ‰é™č“£ä»»å…¬åø'),
(110002, 90092, 'pt', 'name', 'Instituto Estadual do Ambiente do Rio de Janeiro'),
(110003, 90093, 'no_lang_code', 'name', 'Horizon Therapeutics (United Kingdom)'),
(110004, 90094, 'no_lang_code', 'name', 'Derma Sciences (United States)'),
(110005, 90095, 'en', 'name', 'Partido State University'),
(110006, 90096, 'en', 'name', 'Beijing Tian Tan Hospital'),
(110007, 90096, 'zh', 'name', 'åŒ—äŗ¬åø‚ē„žē»å¤–ē§‘ē ”ē©¶ę‰€'),
(110008, 90097, 'en', 'name', 'Gaston Memorial Hospital'),
(110009, 90098, 'es', 'name', 'Universidad San Marcos'),
(110010, 90099, 'en', 'name', 'Ho Chi Minh City International University'),
(110011, 90099, 'vi', 'name', 'ĐẔi hį»c Quốc Tįŗæ ThĆ nh phố Hồ ChĆ­ Minh'),
(110012, 90100, 'es', 'name', 'Centro Científico Tecnológico - Santa Fe'),
(110013, 90101, 'en', 'name', 'Kyiv Medical University'),
(110014, 90101, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(110015, 90102, 'es', 'name', 'Instituto Dominicano de Evaluación e Investigación de la Calidad Educativa'),
(110016, 90103, 'en', 'name', 'Research Institute for Geo-Hydrological Protection'),
(110017, 90103, 'it', 'name', 'Istituto di Ricerca per la Protezione Idrogeologica'),
(110018, 90104, 'no_lang_code', 'name', 'FogPharma (United States)'),
(110019, 90105, 'en', 'name', 'Eskenazi Health'),
(110020, 90106, 'en', 'name', 'Erasmus MC Cardiovascular Institute'),
(110021, 90106, 'nl', 'name', 'Erasmus MC Hart en Vaat Instituut'),
(110022, 90107, 'en', 'name', 'State Tax University'),
(110023, 90107, 'uk', 'name', 'Державний поГатковий ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(110024, 90108, 'fa', 'name', 'دانؓگاه مهرالبرز'),
(110025, 90108, 'no_lang_code', 'name', 'Mehr Alborz University'),
(110026, 90109, 'hu', 'name', 'Monguz InformÔciótechnológiai Kft.'),
(110027, 90109, 'no_lang_code', 'name', 'Monguz Information Technology Ltd. (Hungary)'),
(110028, 90110, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŠŲ±Ł…ŁˆŁƒ'),
(110029, 90110, 'en', 'name', 'Yarmouk University'),
(110030, 90111, 'en', 'name', 'Daughters of Charity Health System'),
(110031, 90112, 'en', 'name', 'European Society for Paediatric Research'),
(110032, 90113, 'en', 'name', 'Sudanese Universities Information Network'),
(110033, 90114, 'en', 'name', 'Republican Clinical Oncology Dispensary of the Ministry of Health of the Republic of Tatarstan named after Professor M.Z. Sigal'),
(110034, 90114, 'ru', 'name', 'ГАУЗ "Республиканский клинический онкологический Гиспансер ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Республики Татарстан имени профессора М.Š—. Дигала"'),
(110035, 90115, 'fr', 'name', 'Fondation Schlumberger pour l’Education et la Recherche'),
(110036, 90116, 'ca', 'name', 'Museu de Prehistòria de València'),
(110037, 90117, 'en', 'name', 'International Society for Prosthetics and Orthotics'),
(110038, 90118, 'de', 'name', 'FOSSGIS'),
(110039, 90119, 'en', 'name', 'SINTEF Ocean'),
(110040, 90120, 'en', 'name', 'Annai Velankanni College'),
(110041, 90120, 'ta', 'name', 'ą®…ą®©ąÆą®©ąÆˆ ą®µąÆ‡ą®³ą®¾ą®™ąÆą®•ą®£ąÆą®£ą®æ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(110042, 90121, 'fr', 'name', 'Archives nationales'),
(110043, 90122, 'af', 'name', 'Inqaba Biotegniese Nywerhede'),
(110044, 90122, 'no_lang_code', 'name', 'Inqaba Biotechnical Industries'),
(110045, 90123, 'en', 'name', 'Brain Tumor Awareness Organization'),
(110046, 90124, 'en', 'name', 'Korea Foundation'),
(110047, 90125, 'pl', 'name', 'Wyższa Szkoła Ekonomiczno-Humanistyczna im.prof. Szczepana A. Pieniążka'),
(110048, 90126, 'es', 'name', 'Asociación TEDIC'),
(110049, 90127, 'en', 'name', 'Sanaag University of Science and Technology'),
(110050, 90128, 'en', 'name', 'Henning and Johan Throne-Holst''s Foundation'),
(110051, 90128, 'sv', 'name', 'Henning och Johan Throne-Holst stiftelse'),
(110052, 90129, 'en', 'name', 'Constitutional Court of Spain'),
(110053, 90129, 'es', 'name', 'Tribunal Constitucional de EspaƱa'),
(110054, 90130, 'en', 'name', 'Wachemo University'),
(110055, 90131, 'en', 'name', 'Villa College'),
(110056, 90132, 'en', 'name', 'Center for Scientific Integrity'),
(110057, 90133, 'en', 'name', 'City College Southampton'),
(110058, 90134, 'no_lang_code', 'name', 'Testia (France)'),
(110059, 90135, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Stan Im'),
(110060, 90136, 'en', 'name', 'Neurophotonics Laboratory'),
(110061, 90137, 'en', 'name', 'Iberoamerican University of Science and Technology'),
(110062, 90137, 'es', 'name', 'Universidad Iberoamericana de Ciencias y TecnologĆ­a'),
(110063, 90138, 'de', 'name', 'Wehrtechnische Dienststelle für Schiffe und Marinewaffen, Maritime Technologie und Forschung'),
(110064, 90139, 'id', 'name', 'Universitas Mayjen Sungkono'),
(110065, 90140, 'en', 'name', 'Kapiolani Medical Center for Women and Children'),
(110066, 90141, 'de', 'name', 'Evangelische Stiftung Volmarstein'),
(110067, 90142, 'en', 'name', 'Aegean College'),
(110068, 90143, 'no_lang_code', 'name', 'Volvo Cars (Sweden)'),
(110069, 90144, 'en', 'name', 'Giorgio Cini Foundation'),
(110070, 90144, 'it', 'name', 'Fondazione Giorgio Cini'),
(110071, 90145, 'no_lang_code', 'name', 'GLE'),
(110072, 90146, 'no_lang_code', 'name', 'Sarawak Energy (Malaysia)'),
(110073, 90147, 'en', 'name', 'NOAA Geostationary Extended Observations'),
(110074, 90148, 'en', 'name', 'International Council for Science'),
(110075, 90149, 'de', 'name', 'Leibniz-Zentrum für Zeithistorische Forschung'),
(110076, 90149, 'en', 'name', 'Leibniz-Centre for Contemporary History'),
(110077, 90150, 'en', 'name', 'International Association for Promoting Geoethics'),
(110078, 90150, 'it', 'name', 'Associazione per la Promozione della Geoetica'),
(110079, 90151, 'en', 'name', 'NOAA Air Resources Laboratory'),
(110080, 90152, 'de', 'name', 'Zentrum für Militärgeschichte und Sozialwissenschaften der Bundeswehr'),
(110081, 90153, 'no_lang_code', 'name', 'Oncothyreon (United States)'),
(110082, 90154, 'en', 'name', 'Lucile Packard Foundation for Childrens Health'),
(110083, 90155, 'no_lang_code', 'name', 'BioMar (Denmark)'),
(110084, 90156, 'de', 'name', 'Leibniz-Institut für Globale und Regionale Studien'),
(110085, 90156, 'en', 'name', 'German Institute for Global and Area Studies'),
(110086, 90157, 'en', 'name', 'University of Wisconsin–Eau Claire – Barron County'),
(110087, 90158, 'en', 'name', 'Swedish Parliament'),
(110088, 90158, 'sv', 'name', 'Sveriges Riksdag'),
(110089, 90159, 'en', 'name', 'NOAA Global Systems Laboratory'),
(110090, 90160, 'en', 'name', 'Five Colleges'),
(110091, 90161, 'de', 'name', 'G2W'),
(110092, 90162, 'en', 'name', 'Interactive Institute'),
(110093, 90163, 'fr', 'name', 'HƓpital de la Croix-Rousse'),
(110094, 90164, 'en', 'name', '(ISC)²'),
(110095, 90165, 'no_lang_code', 'name', 'Cyberstar (France)'),
(110096, 90166, 'en', 'name', 'Electric Vehicle Challenge'),
(110097, 90167, 'no_lang_code', 'name', 'Exploro Geoservices'),
(110098, 90168, 'en', 'name', 'NOAA Aviation Weather Center'),
(110099, 90169, 'en', 'name', 'Foundation for Food and Agriculture Research'),
(110100, 90170, 'en', 'name', 'Syed Jamaluddin Afghan University'),
(110101, 90170, 'fa', 'name', 'دانؓگاه سید جمال Ų§Ł„ŲÆŪŒŁ† افغان'),
(110102, 90171, 'en', 'name', 'Khushal Khan Khattak University Karak'),
(110103, 90171, 'ps', 'name', 'ŲÆ Ų®ŁˆŲ“Ų­Ų§Ł„ خان خټک Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† کرک'),
(110104, 90172, 'no_lang_code', 'name', 'Okavango Research Institute'),
(110105, 90173, 'en', 'name', 'NOAA Joint Polar Satellite System Program Office'),
(110106, 90174, 'fr', 'name', 'Centre d''Ɖconomie de la Sorbonne'),
(110107, 90175, 'en', 'name', 'National University of Engineering'),
(110108, 90175, 'es', 'name', 'Universidad Nacional de IngenierĆ­a'),
(110109, 90176, 'en', 'name', 'St. Vincent''s Medical Center'),
(110110, 90177, 'en', 'name', 'HUN-REN Institute for Nuclear Research'),
(110111, 90177, 'hu', 'name', 'HUN-REN Atommagkutató Intézet'),
(110112, 90178, 'it', 'name', 'Istituto di Ricovero e Cura a Carattere Scientifico San Raffaele'),
(110113, 90179, 'en', 'name', 'International Life Sciences Institute'),
(110114, 90180, 'en', 'name', 'Brighton Hospital'),
(110115, 90181, 'fr', 'name', 'HÓpital Femme Mère Enfant'),
(110116, 90182, 'en', 'name', 'Trinity Health'),
(110117, 90183, 'eu', 'name', 'HABE Liburutegia'),
(110118, 90184, 'en', 'name', 'Can Tho University'),
(110119, 90184, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Cįŗ§n ThĘ”'),
(110120, 90185, 'fr', 'name', 'Institut d’HĆ©matologie et d’Oncologie PĆ©diatrique'),
(110121, 90186, 'no_lang_code', 'name', 'Cohu (United States)'),
(110122, 90187, 'en', 'name', 'Trinity Health Livingston Hospital'),
(110123, 90188, 'en', 'name', 'Ministry of Health'),
(110124, 90188, 'it', 'name', 'Ministero della Salute'),
(110125, 90189, 'en', 'name', 'Ministry of Defence'),
(110126, 90189, 'nl', 'name', 'Ministerie van Defensie'),
(110127, 90190, 'en', 'name', 'Department of Mines and Petroleum'),
(110128, 90191, 'en', 'name', 'AndrƩs Bello Catholic University'),
(110129, 90191, 'es', 'name', 'Universidad Católica Andrés Bello'),
(110130, 90192, 'no_lang_code', 'name', 'Fibabanka'),
(110131, 90193, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Main'),
(110132, 90194, 'no_lang_code', 'name', 'ATAF (Italy)'),
(110133, 90195, 'en', 'name', 'Family Health International 360'),
(110134, 90196, 'no_lang_code', 'name', 'Kairos Power (United States)'),
(110135, 90197, 'no_lang_code', 'name', 'Rohwedder (Germany)'),
(110136, 90198, 'en', 'name', 'Dallas Personal Injury Lawyer'),
(110137, 90199, 'en', 'name', 'University Hospital Waterford'),
(110138, 90199, 'ga', 'name', 'OspidƩal na hOllscoile, Port LƔirge'),
(110139, 90200, 'en', 'name', 'Kouchibouguac National Park'),
(110140, 90200, 'fr', 'name', 'Parc national de Kouchibouguac'),
(110141, 90201, 'en', 'name', 'Council for Science, Technology and Innovation'),
(110142, 90201, 'ja', 'name', 'ē·åˆē§‘å­¦ęŠ€č”“ćƒ»ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ä¼šč­°'),
(110143, 90202, 'en', 'name', 'Isaac Newton Institute for Mathematical Sciences'),
(110144, 90203, 'fr', 'name', 'Centre de SpectromƩtrie NuclƩaire et de SpectromƩtrie de Masse'),
(110145, 90204, 'af', 'name', 'Nasionale Instituut vir Oordraagbare Siektes'),
(110146, 90204, 'en', 'name', 'National Institute for Communicable Diseases'),
(110147, 90205, 'en', 'name', 'Institute for Citizens & Scholars'),
(110148, 90206, 'de', 'name', 'Max-Planck-Institut zur Erforschung Multireligiƶser und Multiethnischer Gesellschaften'),
(110149, 90206, 'en', 'name', 'Max Planck Institute for the Study of Religious and Ethnic Diversity'),
(110150, 90207, 'en', 'name', 'Coypu Foundation'),
(110151, 90208, 'en', 'name', 'Delta Research and Educational Foundation'),
(110152, 90209, 'es', 'name', 'Ministerio de Educación y Ciencias'),
(110153, 90210, 'en', 'name', 'Institute of Physics of Buenos Aires'),
(110154, 90210, 'es', 'name', 'Instituto de FĆ­sica de Buenos Aires'),
(110155, 90211, 'es', 'name', 'Secretaria de Salud'),
(110156, 90212, 'en', 'name', 'Health Services Research & Development'),
(110157, 90213, 'en', 'name', 'Shota Meskhia State Teaching University of Zugdidi'),
(110158, 90214, 'en', 'name', 'Ghana Standards Authority'),
(110159, 90215, 'ar', 'name', 'Ų§Ł„Ų£Ų±Ų“ŁŠŁ ŁˆŲ§Ł„Ł…ŁƒŲŖŲØŲ© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(110160, 90215, 'en', 'name', 'National Library and Archives'),
(110161, 90216, 'en', 'name', 'Sacred Heart University'),
(110162, 90217, 'az', 'name', 'Azerbaycan Metrologiya Institutu'),
(110163, 90217, 'en', 'name', 'Azerbaijan Institute of Metrology'),
(110164, 90218, 'fi', 'name', 'Suomen Biologian Seura Vanamo ry'),
(110165, 90219, 'en', 'name', 'South Russian State Technical University'),
(110166, 90219, 'ru', 'name', 'Южно-Российский Š³Š¾ŃŃƒŠ“арственный политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(110167, 90220, 'en', 'name', 'Tilak Dhari Post Graduate College'),
(110168, 90221, 'en', 'name', 'Atal Bihari Vajpayee Indian Institute of Information Technology and Management, Indian Institute of Information Technology and Management, Gwalior'),
(110169, 90221, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤—ą„ą¤µą¤¾ą¤²ą¤æą¤Æą¤°'),
(110170, 90221, 'ne', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾-ą¤Ŗą„ą¤°ą¤µą¤æą¤§ą¤æ ą¤ą¤µą¤‚ ą¤µą„ą¤Æą¤µą¤øą„ą¤„ą¤¾ą¤Ŗą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø (ABV)'),
(110171, 90222, 'en', 'name', 'Wyss Institute for Biologically Inspired Engineering'),
(110172, 90223, 'es', 'name', 'Universidad Nacional del Centro del PerĆŗ'),
(110173, 90224, 'en', 'name', 'Estonian National Defense College'),
(110174, 90224, 'et', 'name', 'KaitsevƤe Ɯhendatud ƕppeasutused'),
(110175, 90225, 'de', 'name', 'Historische Kommission bei der Bayerischen Akademie der Wissenschaften'),
(110176, 90225, 'en', 'name', 'Historical Commission at the Bavarian Academy of Sciences and Humanities'),
(110177, 90226, 'en', 'name', 'Canmet Mining'),
(110178, 90227, 'en', 'name', 'Lazio Region'),
(110179, 90227, 'it', 'name', 'Regione Lazio'),
(110180, 90228, 'pt', 'name', 'Hospital UniversitƔrio GaffrƩe e Guinle'),
(110181, 90229, 'en', 'name', 'World Health Organization Regional Office for the Americas'),
(110182, 90229, 'es', 'name', 'Organización Panamericana de la Salud'),
(110183, 90229, 'fr', 'name', 'Organisation PanamƩricaine de la SantƩ'),
(110184, 90230, 'no_lang_code', 'name', 'Cocrystal Pharma'),
(110185, 90231, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سنار'),
(110186, 90231, 'no_lang_code', 'name', 'Sinnar University'),
(110187, 90232, 'en', 'name', 'Griffin Hospital'),
(110188, 90233, 'en', 'name', 'Parks Canada'),
(110189, 90233, 'fr', 'name', 'Parcs Canada'),
(110190, 90234, 'en', 'name', 'Thornbury Hospital'),
(110191, 90235, 'en', 'name', 'Research and Development Agency of Pekanbaru City'),
(110192, 90235, 'id', 'name', 'Badan Penelitian dan Pengembangan Kota Pekanbaru'),
(110193, 90236, 'en', 'name', 'Health Foundation Limburg'),
(110194, 90237, 'de', 'name', 'Behörde für Schule und Berufsbildung'),
(110195, 90238, 'de', 'name', 'Ministerium für Bildung, Wissenschaft und Kultur'),
(110196, 90238, 'en', 'name', 'Ministry of Education, Science and Culture'),
(110197, 90239, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Nord-Ostsee-Kanal'),
(110198, 90240, 'cs', 'name', 'Centrum pokročilĆ©ho preklinickĆ©ho zobrazovĆ”nĆ­'),
(110199, 90240, 'en', 'name', 'Center for Advanced Preclinical Imaging'),
(110200, 90241, 'en', 'name', 'Academe of Grassland And Animal Science'),
(110201, 90241, 'zh', 'name', 'äŗ‘å—ēœč‰åœ°åŠØē‰©ē§‘å­¦ē ”ē©¶é™¢'),
(110202, 90242, 'en', 'name', 'Sir Edward ''Weary'' Dunlop Medical Research Foundation'),
(110203, 90243, 'de', 'name', 'Wasserstraßen-Neubauamt Helmstedt'),
(110204, 90244, 'en', 'name', 'NÔÔts''įhch''oh National Park Reserve'),
(110205, 90244, 'fr', 'name', 'RƩserve de parc national NƔƔts''ihch''oh'),
(110206, 90245, 'no_lang_code', 'name', 'China Electronics Technology Group Corporation'),
(110207, 90245, 'zh', 'name', 'äø­å›½ē”µå­ē§‘ęŠ€é›†å›¢å…¬åø'),
(110208, 90246, 'fr', 'name', 'Laboratoire de Cristallographie et RMN Biologiques'),
(110209, 90247, 'fr', 'name', 'DiffƩrenciation et Communication Neuronale et Neuroendocrine'),
(110210, 90248, 'de', 'name', 'Dienstleistungszentrum LƤndlicher Raum Rheinpfalz'),
(110211, 90249, 'en', 'name', 'Western Crop Genetics Alliance'),
(110212, 90250, 'fr', 'name', 'Institut d''Imagerie BiomƩdicale'),
(110213, 90251, 'id', 'name', 'UIN Sunan Ampel Surabaya, Universitas Islam Negeri Sunan Ampel Surabaya'),
(110214, 90252, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†ŁŠŁ„'),
(110215, 90252, 'en', 'name', 'Nile University'),
(110216, 90253, 'en', 'name', 'Universities Research Association'),
(110217, 90254, 'en', 'name', 'European Climate Foundation'),
(110218, 90255, 'cs', 'name', 'FakultnĆ­ nemocnice Bulovka'),
(110219, 90255, 'en', 'name', 'Bulovka Hospital'),
(110220, 90256, 'en', 'name', 'Texas State University System'),
(110221, 90257, 'en', 'name', 'Taichung Municipal Taichung First Senior High School'),
(110222, 90257, 'zh', 'name', 'č‡ŗäø­åø‚ē«‹č‡ŗäø­ē¬¬äø€é«˜ē“šäø­ē­‰å­øę ”'),
(110223, 90258, 'no_lang_code', 'name', 'Empresa Nacional de AeronƔutica'),
(110224, 90259, 'no_lang_code', 'name', 'Vodafone (Italy)'),
(110225, 90260, 'en', 'name', 'Southeast Climate Adaptation Science Center'),
(110226, 90261, 'en', 'name', 'International Cytokine & Interferon Society'),
(110227, 90262, 'en', 'name', 'Malaria Consortium'),
(110228, 90263, 'id', 'name', 'Universitas Ubudiyah Indonesia'),
(110229, 90264, 'en', 'name', 'Miami University Middletown'),
(110230, 90265, 'en', 'name', 'Post Graduate Institute of Medical Education and Research'),
(110231, 90265, 'hi', 'name', 'ą¤øą„ą¤Øą¤¾ą¤¤ą¤•ą„‹ą¤¤ą„ą¤¤ą¤° ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤šą¤£ą„ą¤”ą„€ą¤—ą¤¢ą¤¼'),
(110232, 90265, 'pa', 'name', 'ਪੀ. ąØœą©€. ąØ†ąØˆ.'),
(110233, 90266, 'en', 'name', 'Satya Wacana Christian University'),
(110234, 90266, 'id', 'name', 'Universitas Kristen Satya Wacana'),
(110235, 90267, 'cs', 'name', 'Středoevropský technologický institut – Masarykova univerzita'),
(110236, 90267, 'en', 'name', 'Central European Institute of Technology – Masaryk University'),
(110237, 90268, 'no_lang_code', 'name', 'Shenzhen Urban Transport Planning Center Co.'),
(110238, 90268, 'zh', 'name', 'ę·±åœ³åŸŽåø‚äŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶äø­åæƒč‚”ä»½ęœ‰é™å…¬åø'),
(110239, 90269, 'en', 'name', 'Banner McKee Medical Center'),
(110240, 90270, 'en', 'name', 'Center for Hydrometeorology and Remote Sensing'),
(110241, 90271, 'en', 'name', 'Technological University Dawei'),
(110242, 90272, 'ca', 'name', 'Departament d''Acció Climàtica, Alimentació i Agenda Rural'),
(110243, 90273, 'en', 'name', 'Cancer Consortium'),
(110244, 90274, 'en', 'name', 'Al-Furqan Islamic Heritage Foundation'),
(110245, 90275, 'de', 'name', 'Technische UniversitƤt Chemnitz'),
(110246, 90275, 'en', 'name', 'Chemnitz University of Technology'),
(110247, 90276, 'sv', 'name', 'Region VƤstra Gƶtaland'),
(110248, 90277, 'en', 'name', 'Department of Environment, Parks and Water Security'),
(110249, 90278, 'en', 'name', 'Penn State Mont Alto'),
(110250, 90279, 'de', 'name', 'Institut für Experimentelle und Klinische Traumatologie'),
(110251, 90279, 'en', 'name', 'Ludwig Boltzmann Institute for Experimental and Clinical Traumatology'),
(110252, 90280, 'en', 'name', 'Bristol Zoological Society'),
(110253, 90281, 'es', 'name', 'Consejo Nacional de Rectores'),
(110254, 90282, 'en', 'name', 'A Breath of Hope Lung Foundation'),
(110255, 90283, 'en', 'name', 'Kanagawa Cancer Center'),
(110256, 90283, 'ja', 'name', 'ē„žå„ˆå·ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(110257, 90284, 'en', 'name', 'Graham A. Barden Elementary School'),
(110258, 90285, 'sv', 'name', 'Chalmers Industriteknik'),
(110259, 90286, 'en', 'name', 'Joint Institute of the Dalian University of Technology and Belarusian State University'),
(110260, 90286, 'zh', 'name', 'å¤§čæžē†å·„å¤§å­¦ē™½äæ„ē½—ę–Æå›½ē«‹å¤§å­¦č”åˆå­¦é™¢ ē”µčÆ'),
(110261, 90287, 'no_lang_code', 'name', 'Ɖditions L''Harmattan (France)'),
(110262, 90288, 'fr', 'name', 'ISART Digital'),
(110263, 90289, 'fr', 'name', 'Centre de droit civil des affaires et du contentieux Ʃconomique'),
(110264, 90290, 'en', 'name', 'Helping Others in a Positive Environment'),
(110265, 90291, 'en', 'name', 'The Institute of Geotechnical Mechanics named by N. Polyakov NAS of Ukraine'),
(110266, 90291, 'uk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геотехнической механики им. Š.Š”. ŠŸŠ¾Š»ŃŠŗŠ¾Š²Š° ŠŠŠ Украины'),
(110267, 90292, 'en', 'name', 'Australian National Low Emissions Coal Research and Development'),
(110268, 90293, 'en', 'name', 'Central Committee of the Communist Party of China'),
(110269, 90294, 'es', 'name', 'Universidad Galilea'),
(110270, 90295, 'en', 'name', 'NIHR Oxford Musculoskeletal Biomedical Research Centre'),
(110271, 90296, 'no_lang_code', 'name', 'Paulo Freire University'),
(110272, 90297, 'en', 'name', 'Diabetes Canada'),
(110273, 90297, 'fr', 'name', 'Association Canadienne du DiabĆØte'),
(110274, 90298, 'en', 'name', 'Wisconsin Society for Cardiovascular and Pulmonary Health & Rehabilitation'),
(110275, 90299, 'no_lang_code', 'name', 'PLASMASCIENCE'),
(110276, 90300, 'en', 'name', 'Anhembi Morumbi University'),
(110277, 90300, 'pt', 'name', 'Universidade Anhembi Morumbi'),
(110278, 90301, 'fr', 'name', 'Centre de Recherche en Ɖducation de Nantes'),
(110279, 90302, 'no_lang_code', 'name', '4D Technology (United States)'),
(110280, 90303, 'en', 'name', 'South Dakota Public Universities and Research Center'),
(110281, 90304, 'en', 'name', 'Institute of Hydrobiology'),
(110282, 90304, 'zh', 'name', 'ę­¦ę±‰ę°“ē”Ÿē”Ÿē‰©ē ”ē©¶ę‰€'),
(110283, 90305, 'it', 'name', 'Provincia autonoma di Bolzano - Alto Adige'),
(110284, 90306, 'en', 'name', 'Department of Health and Human Services'),
(110285, 90307, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬Ų²ŁŠŲ±Ų© الخاصة'),
(110286, 90307, 'en', 'name', 'Aljazeera University'),
(110287, 90308, 'en', 'name', 'Ministry of Economic Affairs and Climate Policy'),
(110288, 90308, 'nl', 'name', 'Ministerie van Economische Zaken en Klimaat'),
(110289, 90309, 'en', 'name', 'Washington State Department of Agriculture'),
(110290, 90310, 'de', 'name', 'Bundesverband Druck und Medien'),
(110291, 90311, 'en', 'name', 'Ministry of Education, Recreation and Sports'),
(110292, 90311, 'fr', 'name', 'MinistĆØre de l’Éducation, de l''Enseignement supĆ©rieur'),
(110293, 90312, 'en', 'name', 'London Borough Of Lewisham'),
(110294, 90313, 'en', 'name', 'Kohnodai Hospital, National Center for Global Health and Medicine'),
(110295, 90313, 'ja', 'name', 'å›½ē«‹å›½éš›åŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼å›½åŗœå°ē—…é™¢'),
(110296, 90314, 'no_lang_code', 'name', 'Protagonist Therapeutics (United States)'),
(110297, 90315, 'en', 'name', 'Government College Women University Sialkot'),
(110298, 90315, 'ur', 'name', 'ŚÆŁˆŲ±Ł†Ł…Ł¹ کالج ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒŲŒ Ų³ŪŒŲ§Ł„Ś©ŁˆŁ¹'),
(110299, 90316, 'ar', 'name', 'ŲŖŁ…ŁƒŁŠŁ†'),
(110300, 90316, 'no_lang_code', 'name', 'Tamkeen'),
(110301, 90317, 'de', 'name', 'Bundesministerium für Land- und Forstwirtschaft, Umwelt und Wasserwirtschaft'),
(110302, 90317, 'en', 'name', 'Austrian Federal Ministry of Agriculture, Forestry, Environment and Water Management'),
(110303, 90318, 'sv', 'name', 'ForskningsrƄdet i Sydƶstra Sverige'),
(110304, 90319, 'en', 'name', 'Josep Carreras Leukaemia Research Institute'),
(110305, 90320, 'fr', 'name', 'La Pétrolière Impériale'),
(110306, 90320, 'no_lang_code', 'name', 'Imperial Oil (Canada)'),
(110307, 90321, 'no_lang_code', 'name', 'Dittel Avionik (Germany)'),
(110308, 90322, 'en', 'name', 'China Meteorological Administration'),
(110309, 90322, 'zh', 'name', '中国气豔局'),
(110310, 90323, 'en', 'name', 'Australian National Botanic Gardens'),
(110311, 90324, 'en', 'name', 'Hydropower Foundation'),
(110312, 90325, 'en', 'name', 'United States Army Medical Research Directorate - Africa'),
(110313, 90326, 'es', 'name', 'Instituto Nacional de Normalización'),
(110314, 90327, 'en', 'name', 'Korea Institute of Planning and Evaluation for Technology in Food, Agriculture, Forestry and Fisheries'),
(110315, 90328, 'de', 'name', 'Bundesamt für Strassen'),
(110316, 90328, 'en', 'name', 'Federal Roads Office'),
(110317, 90328, 'fr', 'name', 'Office fƩdƩral des routes'),
(110318, 90328, 'it', 'name', 'Ufficio federale delle strade'),
(110319, 90329, 'en', 'name', 'American Friends of the Alexander von Humboldt Foundation'),
(110320, 90330, 'en', 'name', 'Lithuanian Data Archive for Social Sciences and Humanities'),
(110321, 90330, 'lt', 'name', 'Lietuvos humanitarinių ir socialinių mokslų duomenų archyvas'),
(110322, 90331, 'en', 'name', 'IE Foundation'),
(110323, 90331, 'es', 'name', 'Fundación IE'),
(110324, 90332, 'no_lang_code', 'name', 'Alcatel Lucent (Germany)'),
(110325, 90333, 'en', 'name', 'Ministry of Oceans and Fisheries'),
(110326, 90333, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ķ•“ģ–‘ģˆ˜ģ‚°ė¶€'),
(110327, 90334, 'en', 'name', 'Ontario Genomics'),
(110328, 90335, 'en', 'name', 'State Enterprise «All-Ukrainian State Research and Production Center for Standardization, Metrology, Certification and Consumers Rights Protection»'),
(110329, 90335, 'uk', 'name', 'Š”Š•Š Š–ŠŠ’ŠŠ• ŠŸŠ†Š”ŠŸŠ Š˜Š„ŠœŠ”Š¢Š’Šž Ā«Š’Š”Š•Š£ŠšŠ ŠŠ‡ŠŠ”Š¬ŠšŠ˜Š™ Š”Š•Š Š–ŠŠ’ŠŠ˜Š™ ŠŠŠ£ŠšŠžŠ’Šž-Š’Š˜Š ŠžŠ‘ŠŠ˜Š§Š˜Š™ Š¦Š•ŠŠ¢Š  Š”Š¢ŠŠŠ”ŠŠ Š¢Š˜Š—ŠŠ¦Š†Š‡, ŠœŠ•Š¢Š ŠžŠ›ŠžŠ“Š†Š‡, Š”Š•Š Š¢Š˜Š¤Š†ŠšŠŠ¦Š†Š‡ ТА Š—ŠŠ„Š˜Š”Š¢Š£ ŠŸŠ ŠŠ’ Š”ŠŸŠžŠ–Š˜Š’ŠŠ§Š†Š’Ā»'),
(110330, 90336, 'en', 'name', 'National Kaohsiung Marine University'),
(110331, 90336, 'zh', 'name', 'åœ‹ē«‹é«˜é›„ęµ·ę“‹ē§‘ęŠ€å¤§å­ø'),
(110332, 90337, 'es', 'name', 'Universidad de Postgrado para la Investigación Estratégica en Bolivia'),
(110333, 90338, 'en', 'name', 'Shanghai Academy of Educational Sciences'),
(110334, 90338, 'zh', 'name', 'äøŠęµ·åø‚ę•™č‚²ē§‘å­¦ē ”ē©¶é™¢'),
(110335, 90339, 'fr', 'name', 'ModƩlisation alƩatoire de Paris Nanterre'),
(110336, 90340, 'no_lang_code', 'name', 'Symtavision (Germany)'),
(110337, 90341, 'en', 'name', 'Korea Youth Association'),
(110338, 90341, 'ko', 'name', 'ķ•œźµ­ ģ²­ģ†Œė…„ ķ˜‘ķšŒ'),
(110339, 90342, 'cs', 'name', 'ČeskÔ asociace paraplegiků'),
(110340, 90342, 'en', 'name', 'Czech Paraplegics Association'),
(110341, 90343, 'en', 'name', 'Princess Margaret Cancer Foundation'),
(110342, 90344, 'en', 'name', 'Department of Jobs, Tourism, Science and Innovation'),
(110343, 90345, 'en', 'name', 'Arizona Alzheimer’s Consortium'),
(110344, 90346, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ للدراسات Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© بقفصة'),
(110345, 90346, 'en', 'name', 'Higher Institue of Technological Studies'),
(110346, 90346, 'fr', 'name', 'Institut SupĆ©rieur des Ɖtudes Technologiques de Gafsa'),
(110347, 90347, 'no_lang_code', 'name', 'Monal Group (France)'),
(110348, 90348, 'no_lang_code', 'name', 'Interx'),
(110349, 90349, 'en', 'name', 'Biotechnology and Biological Sciences Research Council'),
(110350, 90350, 'en', 'name', 'National Biotechnology Development Agency'),
(110351, 90351, 'en', 'name', 'Federal Ministry of Health'),
(110352, 90352, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų©'),
(110353, 90352, 'en', 'name', 'Arab Open University'),
(110354, 90353, 'en', 'name', 'Broadmoor Hospital'),
(110355, 90354, 'de', 'name', 'Dienstleistungszentrum LƤndlicher Raum Eifel'),
(110356, 90355, 'en', 'name', 'NIA IMPACT Collaboratory'),
(110357, 90356, 'en', 'name', 'St Andrew''s Healthcare'),
(110358, 90357, 'en', 'name', 'European Distance and E-Learning Network'),
(110359, 90358, 'de', 'name', 'Evangelisches Krankenhaus Bethesda'),
(110360, 90359, 'es', 'name', 'Universidad de Cartago'),
(110361, 90360, 'en', 'name', 'Cochrane'),
(110362, 90361, 'en', 'name', 'Antigua and Barbuda Bureau of Standards'),
(110363, 90362, 'af', 'name', 'Suid-Afrikaanse Vereeniging vir Mikrobiologie'),
(110364, 90362, 'en', 'name', 'South African Society for Microbiology'),
(110365, 90363, 'en', 'name', 'United Nations Office on Drugs and Crime'),
(110366, 90364, 'en', 'name', 'University Medical Center Brackenridge'),
(110367, 90365, 'fr', 'name', 'Centre d’études d’agents PathogĆØnes et Biotechnologies Pour la SantĆ©'),
(110368, 90366, 'fr', 'name', 'Institut de Recherche bio-MƩdicale et d''EpidƩmiologie du Sport'),
(110369, 90367, 'en', 'name', 'Center for Innovative Medicine'),
(110370, 90367, 'sv', 'name', 'Centrum fƶr Innovativ Medicin'),
(110371, 90368, 'et', 'name', 'Eksperimentaalse ja Kliinilise Meditsiini Instituut'),
(110372, 90369, 'id', 'name', 'Universitas Batam'),
(110373, 90370, 'en', 'name', 'Elrha'),
(110374, 90371, 'en', 'name', 'University College of Aviation and Technology'),
(110375, 90372, 'en', 'name', 'Forest Resource Improvement Association of Alberta'),
(110376, 90373, 'en', 'name', 'Training Centre in Communication'),
(110377, 90374, 'en', 'name', 'Professor Jayashankar Telangana State Agricultural University'),
(110378, 90374, 'te', 'name', 'ą°†ą°šą°¾ą°°ą±ą°Æ ą°Žą°Øą±.ą°œą±€.ą°°ą°‚ą°—ą°¾ ą°µą±ą°Æą°µą°øą°¾ą°Æ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(110379, 90375, 'en', 'name', 'Career Point University'),
(110380, 90375, 'hi', 'name', 'करिअर ą¤Ŗą„‰ą¤‡ą¤‚ą¤Ÿ ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(110381, 90376, 'no_lang_code', 'name', 'Zhejiang Haikang Zhilian Science and Technology Co.'),
(110382, 90376, 'zh', 'name', 'ęµ™ę±Ÿęµ·åŗ·ę™ŗč”ē§‘ęŠ€ęœ‰é™å…¬åø'),
(110383, 90377, 'de', 'name', 'Bundesministerium für Verkehr und digitale Infrastruktur'),
(110384, 90377, 'en', 'name', 'Federal Ministry of Transport and Digital Infrastructure'),
(110385, 90378, 'fr', 'name', 'Institut de recherches philosophiques'),
(110386, 90379, 'en', 'name', 'Taichung Veterans General Hospital'),
(110387, 90379, 'zh', 'name', '臺中榮民總醫院'),
(110388, 90380, 'no_lang_code', 'name', 'Icon Process Systems (United Kingdom)'),
(110389, 90381, 'en', 'name', 'Karnataka State Open University'),
(110390, 90381, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²°ą²¾ą²œą³ą²Æ ą²®ą³ą²•ą³ą²¤ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(110391, 90382, 'no_lang_code', 'name', 'Esterline (France)'),
(110392, 90383, 'en', 'name', 'Mountain Top University'),
(110393, 90384, 'en', 'name', 'Kansas Health Sciences Center'),
(110394, 90385, 'en', 'name', 'NOAA Ocean Prediction Center'),
(110395, 90386, 'en', 'name', 'International Mammalian Genome Society'),
(110396, 90387, 'no_lang_code', 'name', 'State Grid Nanjing Power Supply Company (China)'),
(110397, 90387, 'zh', 'name', 'å›½ē½‘ę±Ÿč‹ēœē”µåŠ›ęœ‰é™å…¬åø'),
(110398, 90388, 'en', 'name', 'Henry L. and Grace Doherty Charitable Foundation'),
(110399, 90389, 'es', 'name', 'Universidad Internacional Iberoamericana'),
(110400, 90390, 'en', 'name', 'Wapusk National Park'),
(110401, 90390, 'fr', 'name', 'Parc national Wapusk'),
(110402, 90391, 'en', 'name', 'Government of Ukraine'),
(110403, 90391, 'uk', 'name', 'ŠšŠ°Š±Ń–Š½ŠµŃ‚ ŠœŃ–Š½Ń–ŃŃ‚Ń€Ń–Š² України'),
(110404, 90392, 'en', 'name', 'InLeaVe'),
(110405, 90393, 'en', 'name', 'Trinity Health Ann Arbor Hospital'),
(110406, 90394, 'en', 'name', 'Office of Multicultural Interests'),
(110407, 90395, 'en', 'name', 'Kyushu University Hospital'),
(110408, 90395, 'ja', 'name', 'ä¹å·žå¤§å­¦ē—…é™¢'),
(110409, 90396, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Elbe'),
(110410, 90397, 'en', 'name', 'United States Bureau of Reclamation'),
(110411, 90398, 'en', 'name', 'Noguchi Memorial Institute for Medical Research'),
(110412, 90399, 'en', 'name', 'Hector Fellow Academy'),
(110413, 90400, 'pl', 'name', 'Górnośląskie Centrum Zdrowia Dziecka w Katowicach'),
(110414, 90401, 'ko', 'name', 'ķ˜„ėŒ€ģ¼€ķ”¼ģ½”'),
(110415, 90401, 'no_lang_code', 'name', 'Hyundai Kefico (South Korea)'),
(110416, 90402, 'en', 'name', 'Knud HĆøjgaards Foundation'),
(110417, 90403, 'en', 'name', 'NOAA Weather Prediction Center'),
(110418, 90404, 'en', 'name', 'Women University Swabi'),
(110419, 90405, 'no_lang_code', 'name', 'LGC'),
(110420, 90406, 'en', 'name', 'Hiroshima Prefectural Art Museum'),
(110421, 90406, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹ē¾Žč”“é¤Ø'),
(110422, 90407, 'en', 'name', 'Iowa Space Grant Consortium'),
(110423, 90408, 'en', 'name', 'Toulouse School of Economics'),
(110424, 90409, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia em Biodiversidade e Produtos Naturais'),
(110425, 90410, 'en', 'name', 'European University of Armenia'),
(110426, 90410, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶ÕøÖ‚Õ“ ŌµÕ¾Ö€ÕøÕŗÕ”ÕÆÕ”Õ¶ Õ€Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(110427, 90411, 'en', 'name', 'Utah Division of Wildlife Resources'),
(110428, 90412, 'de', 'name', 'HAW Hamburg, Hochschule für Angewandte Wissenschaften Hamburg'),
(110429, 90413, 'no_lang_code', 'name', 'Yunnan Botanee Biotechnology Group Co.'),
(110430, 90413, 'zh', 'name', 'äŗ‘å—č“ę³°å¦®ē”Ÿē‰©ē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(110431, 90414, 'en', 'name', 'Huichon University of Telecommunications'),
(110432, 90414, 'ko', 'name', 'ķ¬ģ²œ 공업 ėŒ€ķ•™'),
(110433, 90415, 'en', 'name', 'Open Geospatial Consortium'),
(110434, 90416, 'en', 'name', 'Penn State Harrisburg'),
(110435, 90417, 'en', 'name', 'Wenlock District Hospital'),
(110436, 90418, 'en', 'name', 'Ural State Medical University'),
(110437, 90418, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(110438, 90419, 'en', 'name', 'Caswell County Schools'),
(110439, 90420, 'de', 'name', 'UniversitƤt Hamburg'),
(110440, 90420, 'en', 'name', 'Hamburg University'),
(110441, 90421, 'ar', 'name', 'Ł…Ų³ŲŖŲ“ŁŪŒ Ų§Ł„Ų“Ł‡ŪŒŲÆ Ł‡Ų§Ų“Ł…ŪŒ نجاد'),
(110442, 90421, 'en', 'name', 'Hasheminejad Kidney Center'),
(110443, 90421, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ Ł‡Ų§Ų“Ł…ŪŒ Ł†Ś˜Ų§ŲÆ'),
(110444, 90422, 'en', 'name', 'British Phycological Society'),
(110445, 90423, 'en', 'name', 'Parliament of Finland'),
(110446, 90423, 'fi', 'name', 'Eduskunta'),
(110447, 90423, 'sv', 'name', 'Finlands riksdag'),
(110448, 90424, 'no_lang_code', 'name', 'MFKK Invention and Research Center Services (Hungary)'),
(110449, 90425, 'en', 'name', 'Fred C. Gloeckner Foundation, Inc.'),
(110450, 90426, 'en', 'name', 'NOAA National Severe Storms Laboratory'),
(110451, 90427, 'en', 'name', 'Lomi School Foundation and Psychotherapy Clinic'),
(110452, 90428, 'en', 'name', 'National Metrology Center of Cambodia'),
(110453, 90428, 'km', 'name', 'įž˜įž‡įŸ’įžˆįž˜įžŽįŸ’įžŒįž›įž˜įž¶įžįŸ’įžšįž¶įžŸįž¶įžŸįŸ’įžįŸ’įžšįž‡įž¶įžįž·'),
(110454, 90429, 'en', 'name', 'Dublin Dental Hospital'),
(110455, 90430, 'de', 'name', 'Otto-von-Guericke-UniversitƤt Magdeburg'),
(110456, 90430, 'en', 'name', 'Otto-von-Guericke University Magdeburg'),
(110457, 90431, 'en', 'name', 'The Ministry of Education and Science of the Russian Federation'),
(110458, 90431, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки Российской ФеГерации'),
(110459, 90432, 'en', 'name', 'Ohio Department of Higher Education'),
(110460, 90433, 'en', 'name', 'Livingston Public Schools'),
(110461, 90434, 'de', 'name', 'Verband Forschender Arzneimittelhersteller'),
(110462, 90435, 'en', 'name', 'Pathogenesis of vascular infections'),
(110463, 90435, 'fr', 'name', 'PathogenĆØse des infections vasculaires'),
(110464, 90436, 'en', 'name', 'Institute of Archaeology'),
(110465, 90436, 'sl', 'name', 'InŔtitut za arheologijo'),
(110466, 90437, 'en', 'name', 'Wellness Pointe'),
(110467, 90438, 'en', 'name', 'Banner North Colorado Medical Center'),
(110468, 90439, 'en', 'name', 'Fujita Health University Okazaki Medical Center'),
(110469, 90439, 'ja', 'name', 'č—¤ē”°åŒ»ē§‘å¤§å­¦å²”å“ŽåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(110470, 90440, 'en', 'name', 'Center of New Drugs for Hypertension'),
(110471, 90441, 'en', 'name', 'State Key Laboratory of Urban and Regional Ecology'),
(110472, 90441, 'zh', 'name', 'åŸŽåø‚äøŽåŒŗåŸŸē”Ÿę€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(110473, 90442, 'it', 'name', 'Osservatorio di Astrofisica e Scienza dello Spazio'),
(110474, 90443, 'en', 'name', 'Fuel Cell Institute'),
(110475, 90443, 'ms', 'name', 'Institut Sel Fuel'),
(110476, 90444, 'no_lang_code', 'name', 'Amgen (Canada)'),
(110477, 90445, 'no_lang_code', 'name', 'Custom Interconnect Limited (United Kingdom)'),
(110478, 90446, 'en', 'name', 'Child Care And Youth Empowerment Foundation'),
(110479, 90447, 'de', 'name', 'Weierstraß-Institut für Angewandte Analysis und Stochastik'),
(110480, 90447, 'en', 'name', 'Weierstrass Institute for Applied Analysis and Stochastics'),
(110481, 90448, 'en', 'name', 'British Occupational Hygiene Society'),
(110482, 90449, 'en', 'name', 'Advanced Light Microscopy Italian Node'),
(110483, 90450, 'en', 'name', 'Association of Black Women Historians'),
(110484, 90451, 'en', 'name', 'New York State Education Department'),
(110485, 90452, 'no_lang_code', 'name', 'Mondragon Corporation (New Zealand)'),
(110486, 90453, 'en', 'name', 'Rhode Island Agricultural Experiment Station'),
(110487, 90454, 'en', 'name', 'Levinsky-Wingate Academic College'),
(110488, 90454, 'he', 'name', '×”×ž×Ø×›×– האקדמי לוינהקי-וינגייט'),
(110489, 90455, 'en', 'name', 'Indiana State Department of Health'),
(110490, 90456, 'en', 'name', 'Brain Physiology Lab'),
(110491, 90456, 'fr', 'name', 'Laboratoire Physiologie CƩrƩbrale'),
(110492, 90457, 'no_lang_code', 'name', 'Manz (Italy)'),
(110493, 90458, 'en', 'name', 'National Kaohsiung University of Science and Technology'),
(110494, 90458, 'zh', 'name', 'åœ‹ē«‹é«˜é›„ē§‘ęŠ€å¤§å­ø'),
(110495, 90459, 'en', 'name', 'Vuntut National Park'),
(110496, 90459, 'fr', 'name', 'Parc national Vuntut'),
(110497, 90460, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų©'),
(110498, 90460, 'en', 'name', 'Ez-Zitouna University'),
(110499, 90460, 'fr', 'name', 'UniversitƩ Ez-Zitouna'),
(110500, 90461, 'en', 'name', 'Media Development Authority'),
(110501, 90461, 'zh', 'name', 'åŖ’ä½“å‘å±•ē®”ē†å±€'),
(110502, 90462, 'no_lang_code', 'name', 'PVH (United States)'),
(110503, 90463, 'en', 'name', 'Government Medical College and Hospital'),
(110504, 90464, 'en', 'name', 'Erasmus Optical Imaging Centre'),
(110505, 90465, 'en', 'name', 'National Defense University'),
(110506, 90465, 'zh', 'name', 'åœ‹é˜²å¤§å­ø'),
(110507, 90466, 'no_lang_code', 'name', 'B/E Aerospace (United States)'),
(110508, 90467, 'en', 'name', 'Stephen F. Austin State University'),
(110509, 90468, 'en', 'name', 'United States Army Medical Research Directorate - Georgia'),
(110510, 90469, 'no_lang_code', 'name', 'New Technologies and Services (Russia)'),
(110511, 90469, 'ru', 'name', 'ŠŠ¾Š²Ń‹Šµ Технологии'),
(110512, 90470, 'no_lang_code', 'name', 'DataONE'),
(110513, 90471, 'en', 'name', 'C17 Council'),
(110514, 90472, 'en', 'name', 'University of the Rockies'),
(110515, 90473, 'de', 'name', 'Institut für Radiobiologie der Bundeswehr'),
(110516, 90474, 'en', 'name', 'Breast Cancer Trials'),
(110517, 90475, 'fr', 'name', 'Laboratoire des 2 Infinis Toulouse'),
(110518, 90476, 'de', 'name', 'Bremer Institut für Produktion und Logistik GmbH'),
(110519, 90477, 'fr', 'name', 'Centre de Recherche d''Histoire Quantitative'),
(110520, 90478, 'en', 'name', 'West Virginia Department of Arts, Culture and History'),
(110521, 90479, 'cs', 'name', 'Jihomoravský kraj'),
(110522, 90479, 'en', 'name', 'South Moravian Region'),
(110523, 90480, 'en', 'name', 'Education Department of Shaanxi Province'),
(110524, 90481, 'en', 'name', 'Islamic Azad University of Majlesi'),
(110525, 90481, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد علامه Ł…Ų¬Ł„Ų³ŪŒ'),
(110526, 90482, 'de', 'name', 'Amt der SteiermƤrkischen Landesregierung'),
(110527, 90483, 'no_lang_code', 'name', 'Institut Mihajlo Pupin'),
(110528, 90483, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŃ…Š°Ń˜Š»Š¾ Пупин'),
(110529, 90484, 'en', 'name', 'Atomic Energy Council'),
(110530, 90485, 'fr', 'name', 'DƩlƩgation RƩgionale Nord Ouest'),
(110531, 90486, 'en', 'name', 'Showa University Dental Hospital'),
(110532, 90486, 'ja', 'name', 'ę˜­å’Œå¤§å­¦ę­Æē§‘ē—…é™¢'),
(110533, 90487, 'de', 'name', 'Max-Planck-Institut für Geoanthropologie'),
(110534, 90487, 'en', 'name', 'Max Planck Institute of Geoanthropology'),
(110535, 90488, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أبي بكر ŲØŁ„Ł‚Ų§ŁŠŲÆ'),
(110536, 90488, 'en', 'name', 'University of Abou Bekr BelkaĆÆd'),
(110537, 90489, 'en', 'name', 'University of Gedo'),
(110538, 90490, 'en', 'name', 'Calleva Foundation'),
(110539, 90491, 'en', 'name', 'Agricultural Plant Physiology and Ecology Research Institute'),
(110540, 90491, 'es', 'name', 'Instituto de Investigaciones Fisiológicas y Ecológicas Vinculadas a la Agricultura'),
(110541, 90492, 'en', 'name', 'Tashkent State Transport University'),
(110542, 90492, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ инженеров железноГорожного транспорта'),
(110543, 90492, 'uz', 'name', 'Toshkent temir yoʻl muhandislari instituti'),
(110544, 90493, 'fr', 'name', 'L’Inserm dans Paris et lā€™ĆŽle-de-France Centre Nord'),
(110545, 90494, 'no_lang_code', 'name', 'DSM (Netherlands)'),
(110546, 90495, 'en', 'name', 'Jasper National Park'),
(110547, 90495, 'fr', 'name', 'Parc national Jasper'),
(110548, 90496, 'es', 'name', 'Instituto de FisiologĆ­a Vegetal'),
(110549, 90497, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(110550, 90497, 'en', 'name', 'Ministry of Higher Education and Scientific Research'),
(110551, 90498, 'en', 'name', 'National Synchrotron Radiation Research Center'),
(110552, 90498, 'zh', 'name', 'åœ‹å®¶åŒę­„č¼»å°„ē ”ē©¶äø­åæƒ'),
(110553, 90499, 'en', 'name', 'Tokyo Medical University'),
(110554, 90499, 'ja', 'name', 'ę±äŗ¬åŒ»ē§‘å¤§å­¦'),
(110555, 90500, 'en', 'name', 'B. K. Mody Government Pharmacy College'),
(110556, 90501, 'en', 'name', 'Cornell Lab of Ornithology'),
(110557, 90502, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(110558, 90502, 'en', 'name', 'Ministry of Higher Education and Scientific Research'),
(110559, 90503, 'en', 'name', 'Kazakh National Women''s Teacher Training University'),
(110560, 90503, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› ұлттық қызГар пеГагогикалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(110561, 90503, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ женский пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(110562, 90504, 'de', 'name', 'ESAB Fachhochschule für Sport und Management Potsdam'),
(110563, 90505, 'de', 'name', 'Hochschule für Gesellschaftsgestaltung'),
(110564, 90506, 'en', 'name', 'NOAA Climate Prediction Center'),
(110565, 90507, 'en', 'name', 'Webster University Utah'),
(110566, 90508, 'en', 'name', 'Regional Council of Auvergne-RhƓne-Alpes'),
(110567, 90508, 'fr', 'name', 'Conseil rƩgional d''Auvergne-RhƓne-Alpe'),
(110568, 90509, 'tr', 'name', 'Bahçeşehir Cyprus University'),
(110569, 90510, 'es', 'name', 'Universidad Tecnológica de Nogales'),
(110570, 90511, 'it', 'name', 'INGV Osservatorio Nazionale Terremoti'),
(110571, 90512, 'en', 'name', 'Anton Melik Geographical Institute'),
(110572, 90512, 'sl', 'name', 'Geografski inŔtitut Antona Melika'),
(110573, 90513, 'en', 'name', 'Kasturba Medical College Hospital'),
(110574, 90514, 'en', 'name', 'Connective Tissue Oncology Society'),
(110575, 90515, 'en', 'name', 'International National Trusts Organisation'),
(110576, 90516, 'en', 'name', 'C.K. Tedam University of Technology and Applied Sciences'),
(110577, 90517, 'de', 'name', 'Verband der deutschen Lack- und Druckfarbenindustrie'),
(110578, 90518, 'fr', 'name', 'Fondation Alzheimer'),
(110579, 90519, 'en', 'name', 'Hamilton Psychiatric Hospital'),
(110580, 90520, 'fr', 'name', 'Centre des Sciences des LittƩratures en langue FranƧaise'),
(110581, 90521, 'en', 'name', 'NourDanesh Institute of Higher Education'),
(110582, 90521, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ł†ŁˆŲ±ŲÆŲ§Ł†Ų“');
INSERT INTO `ror_settings` VALUES
(110583, 90522, 'en', 'name', 'Russian International Academy of Tourism'),
(110584, 90522, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń‚ŃƒŃ€ŠøŠ·Š¼Š°'),
(110585, 90523, 'en', 'name', 'MRC Clinical Sciences Centre'),
(110586, 90524, 'es', 'name', 'Centro Científico Tecnológico - San Juan'),
(110587, 90525, 'en', 'name', 'Guizhou Provincial Science and Technology Department'),
(110588, 90526, 'en', 'name', 'Guangxi Zhuang Autonomous Region Department of Education'),
(110589, 90526, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗę•™č‚²åŽ…'),
(110590, 90527, 'en', 'name', 'Health and Family Planning Commission of Sichuan Province'),
(110591, 90527, 'zh', 'name', 'å››å·ēœå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(110592, 90528, 'no_lang_code', 'name', 'WOODEXPERT'),
(110593, 90529, 'en', 'name', 'The Achieve Foundation'),
(110594, 90530, 'en', 'name', 'The Kavli Foundation'),
(110595, 90531, 'no_lang_code', 'name', 'BTG (United States)'),
(110596, 90532, 'en', 'name', 'Vaagdevi College of Engineering'),
(110597, 90533, 'en', 'name', 'Karolinska University Hospital'),
(110598, 90533, 'fi', 'name', 'Karoliininen yliopistosairaala'),
(110599, 90533, 'sv', 'name', 'Karolinska Universitetssjukhuset'),
(110600, 90534, 'de', 'name', 'Westpfalz Klinikum'),
(110601, 90535, 'en', 'name', 'Ɩrebro County Council'),
(110602, 90535, 'sv', 'name', 'Ɩrebro lƤns landsting'),
(110603, 90536, 'en', 'name', 'Al-Mustafa International University'),
(110604, 90536, 'fa', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŲµŲ·ŁŪŒ Ų§Ł„Ų¹Ų§Ł„Ł…ŪŒŲ©'),
(110605, 90537, 'no_lang_code', 'name', 'Excelitas Technologies (United Kingdom)'),
(110606, 90538, 'id', 'name', 'Sekola Tinggi Agama Islam Islamic Centre Demak'),
(110607, 90539, 'en', 'name', 'Culham Science Centre'),
(110608, 90540, 'en', 'name', 'Algarve Centre of Marine Sciences'),
(110609, 90540, 'pt', 'name', 'Centro de CiĆŖncias do Mar do Algarve'),
(110610, 90541, 'es', 'name', 'Hospital del Gran Chaco Fray Quebracho'),
(110611, 90542, 'no_lang_code', 'name', 'Rovedar'),
(110612, 90543, 'en', 'name', 'NOAA Climate Program Office'),
(110613, 90544, 'fr', 'name', 'Ɖcole nationale supĆ©rieure de la Police'),
(110614, 90545, 'fr', 'name', 'LittƩratures, Imaginaire, SociƩtƩs'),
(110615, 90546, 'no_lang_code', 'name', 'Solaris Bus & Coach (Poland)'),
(110616, 90547, 'en', 'name', 'Frimley Health NHS Foundation Trust'),
(110617, 90548, 'fr', 'name', 'Groupement des Industries de Construction and ActivitƩs Navales'),
(110618, 90549, 'en', 'name', 'University of Fukui'),
(110619, 90549, 'ja', 'name', 'ē¦äŗ•å¤§å­¦'),
(110620, 90550, 'en', 'name', 'North Lochs Historical Society'),
(110621, 90551, 'en', 'name', 'OAPEN Foundation'),
(110622, 90552, 'no_lang_code', 'name', 'China Railway 18th Bureau Group Corporation'),
(110623, 90552, 'zh', 'name', 'äø­é“åå…«å±€é›†å›¢ęœ‰é™å…¬åø'),
(110624, 90553, 'no_lang_code', 'name', 'Rio Tinto (Canada)'),
(110625, 90554, 'en', 'name', 'Netherlands Enterprise Agency'),
(110626, 90554, 'nl', 'name', 'Ondersteunt ondernemend Nederland'),
(110627, 90555, 'en', 'name', 'Stationers'' Company'),
(110628, 90556, 'en', 'name', 'Toronto Rehabilitation Institute'),
(110629, 90557, 'en', 'name', 'Lettie Pate Whitehead Foundation'),
(110630, 90558, 'no_lang_code', 'name', 'Solutions for Tomorrow (Sweden)'),
(110631, 90559, 'fr', 'name', 'Laboratoire Francis Perrin'),
(110632, 90560, 'no_lang_code', 'name', 'Carrier (United States)'),
(110633, 90561, 'en', 'name', 'National Agency for Archaeology'),
(110634, 90561, 'ro', 'name', 'Agenția Națională Arheologică'),
(110635, 90562, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų„Ų³ŁƒŁ†ŲÆŲ±ŁŠŲ©'),
(110636, 90562, 'en', 'name', 'Alexandria University'),
(110637, 90562, 'fr', 'name', 'UniversitƩ d''Alexandrie'),
(110638, 90563, 'en', 'name', 'Weinan Normal University'),
(110639, 90563, 'zh', 'name', 'ęø­å—åøˆčŒƒå­¦é™¢'),
(110640, 90564, 'fr', 'name', 'SupĆ©lec, Ɖcole supĆ©rieure d''Ć©lectricitĆ©'),
(110641, 90565, 'fr', 'name', 'Gefluc Languedoc Roussillon, Groupement des Entreprises FranƧaises dans la Lutte contre le Cancer'),
(110642, 90566, 'en', 'name', 'Centre for Australian National Biodiversity Research'),
(110643, 90567, 'en', 'name', 'Institute of Mountain Emergency Medicine'),
(110644, 90568, 'en', 'name', 'AF Jochnick Foundation'),
(110645, 90569, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŁŠŲ³'),
(110646, 90569, 'en', 'name', 'Suez University'),
(110647, 90570, 'no_lang_code', 'name', 'Lanxess (Germany)'),
(110648, 90571, 'en', 'name', 'AVRDC - The World Vegetable Center'),
(110649, 90572, 'de', 'name', 'Planetarium Stuttgart'),
(110650, 90573, 'de', 'name', 'Fraunhofer-Institut für Umwelt-, Sicherheits- und Energietechnik UMSICHT'),
(110651, 90573, 'en', 'name', 'Fraunhofer Institute for Environmental, Safety and Energy Technology UMSICHT'),
(110652, 90574, 'en', 'name', 'China Health Promotion Foundation'),
(110653, 90574, 'zh', 'name', 'äø­å›½å„åŗ·äæƒčæ›åŸŗé‡‘ä¼š'),
(110654, 90575, 'en', 'name', 'Hallym University Kangnam Sacred Heart Hospital'),
(110655, 90576, 'en', 'name', 'Bhatkhande Music Institute University'),
(110656, 90577, 'no', 'name', 'Kautokeino Kommune'),
(110657, 90578, 'pt', 'name', 'Escola UniversitƔria das Artes de Coimbra'),
(110658, 90579, 'en', 'name', 'Ministry of Science, Technology and Research'),
(110659, 90579, 'fa', 'name', 'ą·€ą·’ą¶Æą·Šą¶ŗą·, ą¶­ą·ą¶šą·Šą·‚ą¶« ą·„ą· ą¶“ą¶»ą·Šą¶ŗą·šą·‚ą¶« ą¶…ą¶øą·ą¶­ą·Šą¶ŗą·ą¶‚ą·ą¶ŗ'),
(110660, 90580, 'en', 'name', 'New Mexico Space Grant Consortium'),
(110661, 90581, 'fr', 'name', 'Institut Mines-TƩlƩcom Business School'),
(110662, 90582, 'no_lang_code', 'name', 'Hansoh Bio (United States)'),
(110663, 90583, 'no_lang_code', 'name', 'NICE America Research'),
(110664, 90584, 'en', 'name', 'Sydney University Musical Society'),
(110665, 90585, 'en', 'name', 'Thaidene NƫnƩ National Park Reserve'),
(110666, 90585, 'fr', 'name', 'RƩserve de parc national Thaidene Nene'),
(110667, 90586, 'pl', 'name', 'Instytut Historii Nauki im. Ludwika i Aleksandra Birkenmajerów Polskiej Akademii Nauk'),
(110668, 90587, 'en', 'name', 'Marisla Foundation'),
(110669, 90588, 'en', 'name', 'Levinsky College of Education'),
(110670, 90588, 'he', 'name', '×ž×›×œ×œ×Ŗ לוינהקי לחינוך'),
(110671, 90589, 'en', 'name', 'Open Geospatial Consortium'),
(110672, 90590, 'en', 'name', 'American Society of Overseas Research'),
(110673, 90591, 'en', 'name', 'Charles E. Kaufman Foundation'),
(110674, 90592, 'ko', 'name', '(주) źø°ģˆ ź³¼ź°€ģ¹˜'),
(110675, 90592, 'no_lang_code', 'name', 'TechnoValue'),
(110676, 90593, 'no_lang_code', 'name', 'Rockwell Collins (France)'),
(110677, 90594, 'en', 'name', 'Korea Post'),
(110678, 90594, 'ko', 'name', 'ģš°ģ •ģ‚¬ģ—…ė³øė¶€'),
(110679, 90595, 'en', 'name', 'Kyushu University'),
(110680, 90595, 'ja', 'name', '九州大学'),
(110681, 90596, 'en', 'name', 'ESIC Model Hospital & PGIMSR'),
(110682, 90597, 'en', 'name', 'AmeriCorps'),
(110683, 90598, 'en', 'name', 'NOAA National Marine Fisheries Service Office of International Affairs and Seafood Inspection'),
(110684, 90599, 'en', 'name', 'Showa University Northern Yokohama Hospital'),
(110685, 90599, 'ja', 'name', 'ę˜­å’Œå¤§å­¦ ęØŖęµœåø‚åŒ—éƒØē—…é™¢'),
(110686, 90600, 'no_lang_code', 'name', 'Alcorix (United States)'),
(110687, 90601, 'en', 'name', 'National Nanotechnology Research Center'),
(110688, 90601, 'tr', 'name', 'Ulusal Nanoteknoloji Araştırma Merkezi'),
(110689, 90602, 'no_lang_code', 'name', 'International Diamond Services (United States)'),
(110690, 90603, 'en', 'name', 'Great Barrier Reef Marine Park Authority'),
(110691, 90604, 'en', 'name', 'Poole Hospital'),
(110692, 90605, 'it', 'name', 'Ente Regionale per i Servizi all''Agricoltura e alle Foreste'),
(110693, 90606, 'fr', 'name', 'Centre Georges FranƧois Leclerc'),
(110694, 90607, 'no_lang_code', 'name', 'Jeppensen'),
(110695, 90608, 'en', 'name', 'Empire State Development'),
(110696, 90609, 'en', 'name', 'Wyoming Department of Transportation'),
(110697, 90610, 'no_lang_code', 'name', 'Advantech (Taiwan)'),
(110698, 90611, 'en', 'name', 'University Hospital Bratislava'),
(110699, 90612, 'no_lang_code', 'name', 'BioGene (United Kingdom)'),
(110700, 90613, 'no_lang_code', 'name', 'Unidost (Austria)'),
(110701, 90614, 'en', 'name', 'Long Island University Brentwood'),
(110702, 90615, 'en', 'name', 'Terra Nova National Park'),
(110703, 90615, 'fr', 'name', 'Parc national Terra-Nova'),
(110704, 90616, 'en', 'name', 'Georgian National University SEU'),
(110705, 90616, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ įƒįƒ•įƒœįƒ£įƒšįƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ įƒ”įƒ”įƒ£'),
(110706, 90617, 'de', 'name', 'artec Forschungszentrum Nachhailtigkeit'),
(110707, 90618, 'en', 'name', 'PolicyWise for Children & Families'),
(110708, 90619, 'fr', 'name', 'Laboratoire IngƩnierie, ProcƩdƩs, Aliments'),
(110709, 90620, 'de', 'name', 'GZO Spital Wetzikon'),
(110710, 90620, 'en', 'name', 'GZO Hospital Wetzikon/Zurich'),
(110711, 90621, 'de', 'name', 'Schƶpflin Stiftung'),
(110712, 90621, 'en', 'name', 'Schƶpflin Foundation'),
(110713, 90622, 'nl', 'name', 'Vlaamse Interuniversitaire Raad'),
(110714, 90623, 'en', 'name', 'Office of the Secretary of Defense'),
(110715, 90624, 'en', 'name', 'Research and Development Agency of East Java Province'),
(110716, 90624, 'id', 'name', 'Badan Penelitian dan Pengembangan Provinsi Jawa Timur'),
(110717, 90625, 'en', 'name', 'Ƈanakkale University Hospital'),
(110718, 90625, 'tr', 'name', 'Canakkale Onsekiz Mart Universitesi Tip Fakultesi Hastanesi'),
(110719, 90626, 'en', 'name', 'American University of Europe'),
(110720, 90626, 'mk', 'name', 'Š¤ŠžŠ Универзитет'),
(110721, 90627, 'es', 'name', 'Instituto Boliviano de Metrologia'),
(110722, 90628, 'en', 'name', 'Skanderbeg Military University'),
(110723, 90628, 'sq', 'name', 'Shkollat ushtarake tƫ Shqipƫrisƫ'),
(110724, 90629, 'en', 'name', 'V. B. Sochava Institute of Geography'),
(110725, 90629, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географии им. Š’.Š‘. Дочавы Š”Šž Š ŠŠ'),
(110726, 90630, 'de', 'name', 'SanitƤtsdienst der Bundeswehr'),
(110727, 90630, 'en', 'name', 'Bundeswehr Joint Medical Service'),
(110728, 90631, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© البلقاؔ Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(110729, 90631, 'en', 'name', 'Al-Balqa Applied University'),
(110730, 90632, 'en', 'name', 'Mindanao State University – Iligan Institute of Technology'),
(110731, 90633, 'en', 'name', 'Sarawak Multimedia Authority'),
(110732, 90634, 'en', 'name', 'Kumasi Technical University'),
(110733, 90635, 'de', 'name', 'Zentrum für Luft- und Raumfahrtmedizin der Luftwaffe'),
(110734, 90636, 'de', 'name', 'Nationale Oles-Hontschar-UniversitƤt Dnipro'),
(110735, 90636, 'en', 'name', 'Oles Honchar Dnipro National University'),
(110736, 90636, 'fr', 'name', 'UniversitƩ nationale Oles-Hontchar de Dnipro'),
(110737, 90636, 'pl', 'name', 'Dnieprzański Uniwersytet Narodowy im. Ołesia Honczara'),
(110738, 90636, 'ru', 'name', 'Днипровский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ŠøŠ¼ŠµŠ½Šø ŠžŠ»ŠµŃŃ Гончара'),
(110739, 90636, 'uk', 'name', 'Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠžŠ»ŠµŃŃ Гончара'),
(110740, 90637, 'no_lang_code', 'name', 'Sandvik (Sweden)'),
(110741, 90638, 'it', 'name', 'Istituto Nazionale di Geofisica e Vulcanologia'),
(110742, 90639, 'en', 'name', 'Consortium for Ocean-Sea Ice Modelling in Australia'),
(110743, 90640, 'fr', 'name', 'Centre de Recherches Anglophones'),
(110744, 90641, 'en', 'name', 'Australian Data Archive'),
(110745, 90642, 'en', 'name', 'Maharishi International University'),
(110746, 90643, 'en', 'name', 'Forestmoon'),
(110747, 90644, 'en', 'name', 'European Plate Observing System'),
(110748, 90645, 'es', 'name', 'Hospital Universitario 12 De Octubre'),
(110749, 90646, 'no_lang_code', 'name', 'EADS Innovation Works (Germany)'),
(110750, 90647, 'cs', 'name', 'ČeskĆ” rada dětĆ­ a mlĆ”deže'),
(110751, 90647, 'en', 'name', 'Czech Council of Children and Youth'),
(110752, 90648, 'de', 'name', 'Krankenhaus Mara'),
(110753, 90649, 'en', 'name', 'Office of the Assistant Secretary for Health'),
(110754, 90650, 'fr', 'name', 'Agence de l''eau Loire-Bretagne'),
(110755, 90651, 'es', 'name', 'Universidad Católica del Este'),
(110756, 90652, 'en', 'name', 'Kebri Dehar University'),
(110757, 90653, 'en', 'name', 'Institute of Materials and Environmental Chemistry'),
(110758, 90653, 'hu', 'name', 'Anyag- Ʃs KƶrnyezetkƩmiai IntƩzet'),
(110759, 90654, 'en', 'name', 'State Archives in Pazin'),
(110760, 90654, 'hr', 'name', 'Državni arhiv u Pazinu'),
(110761, 90655, 'en', 'name', 'National Center for Global Health and Medicine'),
(110762, 90655, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹å›½éš›åŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(110763, 90656, 'fr', 'name', 'MinistĆØre de l’Environnement, de la Lutte contre les changements climatiques, de la Faune et des Parcs'),
(110764, 90657, 'en', 'name', 'Millennium Institute for Subatomic Physics at High-Energy Frontier, Saphir'),
(110765, 90657, 'es', 'name', 'Instituto Milenio de Física Subatómica en la Frontera de Altas Energías, Saphir'),
(110766, 90658, 'no_lang_code', 'name', 'SK Hynix (South Korea)'),
(110767, 90659, 'en', 'name', 'Australian Bureau of Agricultural and Resource Economics'),
(110768, 90660, 'en', 'name', 'Agostino Gemelli University Polyclinic'),
(110769, 90660, 'it', 'name', 'Fondazione Policlinico Universitario Agostino Gemelli'),
(110770, 90661, 'de', 'name', 'Deutsche Stiftung Friedensforschung'),
(110771, 90661, 'en', 'name', 'German Foundation for Peace Research'),
(110772, 90662, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī’Ī¹ĪæĪµĻ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ & Ī•Ļ†Ī±ĻĪ¼ĪæĪ³ĻŽĪ½'),
(110773, 90662, 'en', 'name', 'Institute of Biosciences & Applications'),
(110774, 90663, 'en', 'name', 'LCPL Pathan'),
(110775, 90664, 'fr', 'name', 'La Ligue Contre le Cancer'),
(110776, 90665, 'en', 'name', 'Garfield Weston Foundation'),
(110777, 90666, 'de', 'name', 'PƤdagogische Hochschule Schwyz'),
(110778, 90666, 'en', 'name', 'Schwyz University of Teacher Education'),
(110779, 90667, 'nl', 'name', 'Alberta Mennega Stichting'),
(110780, 90668, 'en', 'name', 'Institute of Technology Tralee'),
(110781, 90668, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta ThrĆ” LĆ­'),
(110782, 90669, 'es', 'name', 'Colombiana de Trasplantes'),
(110783, 90670, 'en', 'name', 'Spinal Cord Injury Network'),
(110784, 90671, 'en', 'name', 'Central College Nottingham'),
(110785, 90672, 'en', 'name', 'Japan Electric Meters Inspection Corporation'),
(110786, 90672, 'ja', 'name', 'ę—„ęœ¬é›»ę°—čØˆå™Øę¤œå®šę‰€'),
(110787, 90673, 'no_lang_code', 'name', 'Messer (Germany)'),
(110788, 90674, 'en', 'name', 'Chamroeun University of Poly-Technology'),
(110789, 90675, 'en', 'name', 'Hunan First Normal University'),
(110790, 90675, 'zh', 'name', 'ę¹–å—ē¬¬äø€åøˆčŒƒå­¦é™¢'),
(110791, 90676, 'en', 'name', 'IgarapƩ Institute'),
(110792, 90676, 'pt', 'name', 'Instituto IgarapƩ'),
(110793, 90677, 'en', 'name', 'Office of Readiness and Response'),
(110794, 90678, 'en', 'name', 'Showa University Fujigaoka Rehabilitation Hospital'),
(110795, 90678, 'ja', 'name', 'ę˜­å’Œå¤§å­¦č—¤ćŒäø˜ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(110796, 90679, 'en', 'name', 'Nick Simons Foundation'),
(110797, 90680, 'en', 'name', 'Guangdong Association of STD and AIDS Prevention and Control'),
(110798, 90680, 'zh', 'name', 'å¹æäøœēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(110799, 90681, 'fr', 'name', 'Ɖcole Nationale d''Administration et de Magistrature'),
(110800, 90682, 'en', 'name', 'Baptist Cancer Center'),
(110801, 90683, 'en', 'name', 'Samara State University'),
(110802, 90683, 'ru', 'name', 'Дамарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(110803, 90684, 'en', 'name', 'Aichi Health Promotion Foundation'),
(110804, 90684, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę„›ēŸ„ēœŒå„åŗ·ć„ćć‚ŠęŒÆčˆˆäŗ‹ę„­å›£'),
(110805, 90685, 'no_lang_code', 'name', 'Areta International (Italy)'),
(110806, 90686, 'en', 'name', 'Banner Del E Webb Medical Center'),
(110807, 90687, 'fr', 'name', 'Laboratoire Psychologie de la Perception'),
(110808, 90688, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Oder-Havel'),
(110809, 90689, 'en', 'name', 'Jiangxi Provincial Department of Science and Technology'),
(110810, 90690, 'en', 'name', 'Korean Operations Research and Management Science Society'),
(110811, 90690, 'ko', 'name', 'ķ•œźµ­ź²½ģ˜ź³¼ķ•™ķšŒ'),
(110812, 90691, 'ca', 'name', 'Corporació Catalana de Mitjans Audiovisuals'),
(110813, 90692, 'en', 'name', 'Food and Nutrition Service'),
(110814, 90693, 'en', 'name', 'Science and Technology Department of Hubei Province'),
(110815, 90693, 'zh', 'name', 'ę¹–åŒ—ēœē§‘ęŠ€åŽ…'),
(110816, 90694, 'en', 'name', 'Mechanisms of epigenetic inheritance'),
(110817, 90694, 'fr', 'name', 'MƩcanismes de l''HƩrƩditƩ ƩpigƩnƩtique'),
(110818, 90695, 'en', 'name', 'Toronto General & Western Hospital Foundation'),
(110819, 90696, 'en', 'name', 'NOAA National Weather Service'),
(110820, 90696, 'es', 'name', 'Servicio Meteorológico Nacional'),
(110821, 90697, 'en', 'name', 'Royal Zoological Society of New South Wales'),
(110822, 90698, 'en', 'name', 'Joint Research Unit in Environmental Acoustics'),
(110823, 90698, 'fr', 'name', 'UnitƩ Mixte de Recherche en Acoustique Environnementale'),
(110824, 90699, 'no_lang_code', 'name', 'Bolt Threads'),
(110825, 90700, 'en', 'name', 'Mount Revelstoke National Park'),
(110826, 90700, 'fr', 'name', 'Parc national du Mont-Revelstoke'),
(110827, 90701, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī Ļ…ĻĪ·Ī½Ī¹ĪŗĻŽĪ½ & Ī”Ī±Ī“Ī¹ĪæĪ»ĪæĪ³Ī¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ & Τεχνολογίας, Ενέργειας & Ī‘ĻƒĻ†Ī¬Ī»ĪµĪ¹Ī±Ļ‚'),
(110828, 90701, 'en', 'name', 'Institute of Nuclear & Radiological Sciences and Technology, Energy & Safety'),
(110829, 90702, 'es', 'name', 'Universidad Privada de Irapuato'),
(110830, 90703, 'de', 'name', 'Besucherzentrum Welterbe Grube Messel'),
(110831, 90704, 'en', 'name', 'Handong Global University'),
(110832, 90704, 'ko', 'name', 'ķ•œė™ėŒ€ķ•™źµ'),
(110833, 90705, 'en', 'name', 'Ivanovo State Academy of Agriculture'),
(110834, 90706, 'en', 'name', 'Harlem Hospital Center'),
(110835, 90707, 'fr', 'name', 'Ɖcole Centrale Paris'),
(110836, 90708, 'no_lang_code', 'name', 'Functional Coating Technology (United States)'),
(110837, 90709, 'nl', 'name', 'Medisch Centrum Haaglanden'),
(110838, 90710, 'en', 'name', 'Hungarian Scientific Research Fund'),
(110839, 90711, 'de', 'name', 'Zentrum für Quantitative Biologie'),
(110840, 90711, 'en', 'name', 'Quantitative Biology Center'),
(110841, 90712, 'en', 'name', 'China Medical University'),
(110842, 90712, 'zh', 'name', 'äø­åœ‹é†«č—„å¤§å­ø'),
(110843, 90713, 'en', 'name', 'National Scientific Centre ā€œInstitute of Agrarian Economicsā€'),
(110844, 90713, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ аграрної економіки»'),
(110845, 90714, 'de', 'name', 'Dienstleistungszentrum Ländlicher Raum Rheinhessen-Nahe-Hunsrück'),
(110846, 90715, 'no_lang_code', 'name', 'Iris Light Technologies (United States)'),
(110847, 90716, 'en', 'name', 'NewSchool'),
(110848, 90717, 'no_lang_code', 'name', 'Airbus (Italy)'),
(110849, 90718, 'fr', 'name', 'UnitƩ de Recherche Interdisplinaire Octogone'),
(110850, 90719, 'en', 'name', 'Swedish Radiation Safety Authority'),
(110851, 90719, 'fi', 'name', 'Ruotsin sƤteilyturvavirasto'),
(110852, 90719, 'sv', 'name', 'StrƄlsƤkerhetsmyndigheten'),
(110853, 90720, 'en', 'name', 'International Institute of Tropical Agriculture'),
(110854, 90721, 'fr', 'name', 'Centre IntĆ©grĆ© Universitaire de SantĆ© et de Services Sociaux du Saguenay–Lac-Saint-Jean'),
(110855, 90722, 'en', 'name', 'Public Health England'),
(110856, 90723, 'en', 'name', 'MRC Centre for Medical Mycology'),
(110857, 90724, 'en', 'name', 'Administration for Community Living'),
(110858, 90725, 'it', 'name', 'INGV Sezione di Milano'),
(110859, 90726, 'it', 'name', 'INGV Sezione di Pisa'),
(110860, 90727, 'id', 'name', 'Institut Teknologi Tangerang Selatan'),
(110861, 90728, 'en', 'name', 'The Royal Society of Queensland'),
(110862, 90729, 'ga', 'name', 'Met Ɖireann'),
(110863, 90730, 'sv', 'name', 'Sveaskog'),
(110864, 90731, 'no_lang_code', 'name', 'EDF Renouvelables'),
(110865, 90732, 'da', 'name', '15. Juni Fonden'),
(110866, 90733, 'en', 'name', 'Center for Excellence in Brain Science and Intelligence Technology'),
(110867, 90733, 'zh', 'name', 'å­¦é™¢č„‘ē§‘å­¦äøŽę™ŗčƒ½ęŠ€ęœÆå“č¶Šåˆ›ę–°äø­åæƒ'),
(110868, 90734, 'de', 'name', 'HessenForst'),
(110869, 90734, 'en', 'name', 'Hessen Forest'),
(110870, 90735, 'es', 'name', 'Instituto de Investigaciones en Ciencias de la Salud'),
(110871, 90736, 'en', 'name', 'Physiopathology and Imaging of Neurological Disorders'),
(110872, 90736, 'fr', 'name', 'Physiopathologie et imagerie des troubles neurologiques'),
(110873, 90737, 'pl', 'name', 'Akademia Bialska im. Jana Pawła II'),
(110874, 90738, 'en', 'name', 'Darlington Memorial Hospital'),
(110875, 90739, 'en', 'name', 'Ministry of the Environment'),
(110876, 90739, 'pt', 'name', 'MinistƩrio do Meio Ambiente'),
(110877, 90740, 'en', 'name', 'Huadong Medical Institute of Biotechniques'),
(110878, 90740, 'zh', 'name', 'åŽäøœåŒ»å­¦ē”Ÿē‰©ęŠ€ęœÆē ”ē©¶ę‰€'),
(110879, 90741, 'de', 'name', 'Heubergstiftung'),
(110880, 90742, 'fr', 'name', 'Laboratoire des MatƩriaux AvancƩs'),
(110881, 90743, 'pt', 'name', 'Faculdade Ceres'),
(110882, 90744, 'fr', 'name', 'Fonds de recherche du QuƩbec'),
(110883, 90745, 'fr', 'name', 'Centre national interprofessionnel de l''économie laitière'),
(110884, 90746, 'en', 'name', 'City Of Hope National Medical Center'),
(110885, 90747, 'en', 'name', 'Memofonte Foundation'),
(110886, 90747, 'it', 'name', 'Fondazione Memofonte'),
(110887, 90748, 'en', 'name', 'Defense Forensics and Biometrics Agency'),
(110888, 90749, 'fr', 'name', 'UMR DƩveloppement et SociƩtƩs'),
(110889, 90750, 'en', 'name', 'Texas Biomedical Research Institute'),
(110890, 90751, 'no_lang_code', 'name', 'EurActiv'),
(110891, 90752, 'de', 'name', 'Bundesverfassungsggericht'),
(110892, 90753, 'en', 'name', 'Cape Town HVTN Immunology Laboratory / Hutchinson Centre Research Institute of South Africa'),
(110893, 90754, 'en', 'name', 'Sidney Kimmel Foundation'),
(110894, 90755, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по обща Šø неорганична Ń…ŠøŠ¼ŠøŃ'),
(110895, 90755, 'en', 'name', 'Institute of General and Inorganic Chemistry'),
(110896, 90756, 'no_lang_code', 'name', 'Sjƶgren’s Foundation'),
(110897, 90757, 'de', 'name', 'Das Schweizer Parlament'),
(110898, 90757, 'en', 'name', 'The Swiss Parliament'),
(110899, 90757, 'fr', 'name', 'Le Parlement suisse'),
(110900, 90757, 'it', 'name', 'Il Parlamento svizzero'),
(110901, 90757, 'rm', 'name', 'Il Parlament svizzer'),
(110902, 90758, 'pt', 'name', 'Instituto Superior de Contabilidade e Administracao do Porto'),
(110903, 90759, 'fr', 'name', 'Centre Henri Becquerel'),
(110904, 90760, 'en', 'name', 'Division of Graduate Education'),
(110905, 90761, 'en', 'name', 'Centre for International Mobility'),
(110906, 90762, 'en', 'name', 'Dutch Institute for Alcohol Policy STAP'),
(110907, 90762, 'nl', 'name', 'Nederlands Instituut voor Alcoholbeleid STAP'),
(110908, 90763, 'en', 'name', 'Indiana Space Grant Consortium'),
(110909, 90764, 'en', 'name', 'Meiji Pharmaceutical University'),
(110910, 90764, 'ja', 'name', 'ę˜Žę²»č–¬ē§‘å¤§å­¦'),
(110911, 90765, 'en', 'name', 'Royal Society of Biology'),
(110912, 90766, 'en', 'name', 'Government of Western Australia'),
(110913, 90767, 'id', 'name', 'Sekolah Tinggi Agama Kristen Teruna Bhakti'),
(110914, 90768, 'da', 'name', 'Frode V. Nyegaard og Hustru’s Fond'),
(110915, 90769, 'mi', 'name', 'Te Pūnaha Matatini'),
(110916, 90770, 'en', 'name', 'Western Wildland Environmental Threat Assessment Center'),
(110917, 90771, 'en', 'name', 'Koryo Songgyungwan University'),
(110918, 90771, 'ko', 'name', '고려성균꓀'),
(110919, 90772, 'en', 'name', 'University Sakartvelo'),
(110920, 90773, 'de', 'name', 'Landesamt für Umwelt'),
(110921, 90774, 'no_lang_code', 'name', 'Crystal Research (United States)'),
(110922, 90775, 'en', 'name', 'Neuroblastoma UK'),
(110923, 90776, 'fr', 'name', 'MƩtabiot'),
(110924, 90777, 'de', 'name', 'Zoologisches Forschungsmuseum Alexander Koenig'),
(110925, 90777, 'en', 'name', 'Zoological Research Museum Alexander Koenig'),
(110926, 90778, 'es', 'name', 'Universidad Bernardo O''Higgins'),
(110927, 90779, 'en', 'name', 'Hanbat National University'),
(110928, 90779, 'ko', 'name', 'ķ•œė°­ėŒ€ķ•™źµ'),
(110929, 90780, 'en', 'name', 'Research Nova Scotia'),
(110930, 90781, 'en', 'name', 'Standards and Calibration Laboratory'),
(110931, 90781, 'zh', 'name', 'ę ‡å‡†åŠę ”ę­£å®žéŖŒę‰€'),
(110932, 90782, 'en', 'name', 'Canadian Journal of Community Mental Health'),
(110933, 90783, 'de', 'name', 'Stammzellnetzwerk.NRW'),
(110934, 90783, 'en', 'name', 'Stem Cell Network North Rhine-Westphalia'),
(110935, 90784, 'pt', 'name', 'Unimed Belo Horizonte'),
(110936, 90785, 'en', 'name', 'MedicalOne Market Research'),
(110937, 90786, 'en', 'name', 'Tahoe Environmental Research Center'),
(110938, 90787, 'en', 'name', 'SingHealth Duke-NUS Academic Medical Centre'),
(110939, 90788, 'en', 'name', 'Orenburg Municipal Higher College of Humanities and Natural Sciences'),
(110940, 90789, 'ko', 'name', 'ė½ķ† ė©”ģ“ģŠØ'),
(110941, 90789, 'no_lang_code', 'name', 'Lactomason'),
(110942, 90790, 'en', 'name', 'Chengdu Science and Technology Bureau'),
(110943, 90790, 'zh', 'name', 'ęˆéƒ½åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(110944, 90791, 'fr', 'name', 'Centre de Recherche Universitaire Lorrain d’Histoire'),
(110945, 90792, 'en', 'name', 'Padjadjaran University'),
(110946, 90792, 'id', 'name', 'Universitas Padjadjaran'),
(110947, 90793, 'no_lang_code', 'name', 'Pacira (United States)'),
(110948, 90794, 'en', 'name', 'Thomas Adewumi University'),
(110949, 90795, 'en', 'name', 'Kantipur Engineering College'),
(110950, 90796, 'en', 'name', 'Shiga University of Medical Science Hospital'),
(110951, 90796, 'ja', 'name', 'ę»‹č³€åŒ»ē§‘å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(110952, 90797, 'bs', 'name', 'Sarajevska Ŕkola za nauku i tehnologiju'),
(110953, 90797, 'en', 'name', 'Sarajevo School of Science and Technology'),
(110954, 90798, 'en', 'name', 'American Brain Foundation'),
(110955, 90799, 'en', 'name', 'Ministry of Education'),
(110956, 90800, 'en', 'name', 'Clif Family Foundation'),
(110957, 90801, 'en', 'name', 'Wuxi Vocational College of Science and Technology'),
(110958, 90801, 'zh', 'name', 'ę— é””ē§‘ęŠ€čŒäøšå­¦é™¢'),
(110959, 90802, 'en', 'name', 'SollefteƄ Hospital'),
(110960, 90802, 'sv', 'name', 'SollefteƄ sjukhus'),
(110961, 90803, 'fr', 'name', 'UniversitƩ de kolwezi'),
(110962, 90803, 'no_lang_code', 'name', 'University of Kolwezi'),
(110963, 90804, 'en', 'name', 'Qom University of Medical Science and Health Services'),
(110964, 90804, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی قم'),
(110965, 90805, 'en', 'name', 'Naval Oceanography Office'),
(110966, 90806, 'en', 'name', 'Benghazi Military University Academy'),
(110967, 90807, 'cs', 'name', 'Sdružení pro integraci a migraci'),
(110968, 90807, 'en', 'name', 'Association for Integration and Migration'),
(110969, 90808, 'en', 'name', 'Zambia Metrology Agency'),
(110970, 90809, 'fr', 'name', 'Institut SupƩrieur PƩdagogique de Bukavu'),
(110971, 90810, 'en', 'name', 'State Key Laboratory of Food Nutrition and Safety'),
(110972, 90810, 'zh', 'name', 'é£Ÿå“č„å…»äøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(110973, 90811, 'no_lang_code', 'name', 'Cargill (United Kingdom)'),
(110974, 90812, 'no_lang_code', 'name', 'Copernicus.org (Germany)'),
(110975, 90813, 'en', 'name', 'Nemours Wildlife Foundation'),
(110976, 90814, 'es', 'name', 'Universidad Privada Sergio Bernales'),
(110977, 90815, 'no_lang_code', 'name', 'Intelligent Prosthetic Systems (United States)'),
(110978, 90816, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© دلتا Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(110979, 90816, 'en', 'name', 'Delta College of Science and Technology'),
(110980, 90817, 'de', 'name', 'Ernst Strüngmann Institut'),
(110981, 90817, 'en', 'name', 'Ernst Strüngmann Institute for Neuroscience'),
(110982, 90818, 'fr', 'name', 'Acta les instituts techniques agricoles'),
(110983, 90819, 'en', 'name', 'Saint John of God Hospital'),
(110984, 90820, 'en', 'name', 'Chuluncayani Adventist University'),
(110985, 90821, 'en', 'name', 'Alberta Innovates'),
(110986, 90822, 'en', 'name', 'Moore College, Moore Theological College'),
(110987, 90823, 'en', 'name', 'Center for the history and anthropology of law'),
(110988, 90823, 'fr', 'name', 'Centre d''histoire et d''anthropologie du droit'),
(110989, 90824, 'en', 'name', 'National Initiative for Education Research'),
(110990, 90824, 'nl', 'name', 'Nationaal Regieorgaan Onderwijsonderzoek'),
(110991, 90825, 'en', 'name', 'Fulbright Austria'),
(110992, 90826, 'en', 'name', 'Chartered Institute of Ergonomics and Human Factors'),
(110993, 90827, 'es', 'name', 'Instituto Nacional de Innovación Agropecuaria y Forestal'),
(110994, 90828, 'en', 'name', 'WSB Merito University in Warsaw'),
(110995, 90828, 'pl', 'name', 'Uczelnia WSB Merito Warszawa'),
(110996, 90829, 'en', 'name', 'Buda Health Center'),
(110997, 90829, 'hu', 'name', 'Budai EgƩszsƩgkƶzpont'),
(110998, 90830, 'de', 'name', 'Dienstleistungszentrum LƤndlicher Raum'),
(110999, 90831, 'en', 'name', 'ABRAN - Brazilian Association of Nutrology'),
(111000, 90831, 'pt', 'name', 'ABRAN - Associação Brasileira de Nutrologia'),
(111001, 90832, 'pt', 'name', 'Universidade da Paz'),
(111002, 90833, 'en', 'name', 'Shanghai University of Traditional Chinese Medicine'),
(111003, 90833, 'zh', 'name', 'äøŠęµ·äø­åŒ»čÆå¤§å­¦'),
(111004, 90834, 'en', 'name', 'Thoracic Oncology Group of Australasia'),
(111005, 90835, 'en', 'name', 'Center for Neuro-Oncology'),
(111006, 90836, 'no_lang_code', 'name', 'Environmental Analysis and Remote Sensing (Netherlands)'),
(111007, 90837, 'en', 'name', 'Centre for the Governance of AI'),
(111008, 90838, 'no_lang_code', 'name', 'Lasec (South Africa)'),
(111009, 90839, 'en', 'name', 'International Cancer Alternative Network'),
(111010, 90840, 'cs', 'name', 'ParlamentnĆ­ institut'),
(111011, 90840, 'en', 'name', 'Parliamentary Institute'),
(111012, 90841, 'en', 'name', 'Stratford University'),
(111013, 90842, 'fr', 'name', 'Centre FranƧais des Ɖtudes Ɖthiopiennes'),
(111014, 90843, 'en', 'name', 'Ministry of Education of Peru'),
(111015, 90843, 'es', 'name', 'Ministerio de Educación del Perú'),
(111016, 90844, 'de', 'name', 'Kammer für Arbeiter und Angestellte'),
(111017, 90844, 'en', 'name', 'Chamber of Labour'),
(111018, 90845, 'no_lang_code', 'name', 'Ollo group (Lithuania)'),
(111019, 90846, 'en', 'name', 'Alikhan Bokeikhan University'),
(111020, 90847, 'af', 'name', 'Keltiese MolekulĆŖre Diagnostiek'),
(111021, 90847, 'no_lang_code', 'name', 'Celtic Molecular Diagnostics (South Africa)'),
(111022, 90848, 'en', 'name', 'Great Ormond Street Hospital'),
(111023, 90849, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Ī•ĻĪ³Ī±ĻƒĻ„Ī®ĻĪ¹Īæ Ī£ĻĪ¼Ļ€Ī»ĪæĪŗĻ‰Ī½ Ī£Ļ…ĻƒĻ„Ī·Ī¼Ī¬Ļ„Ļ‰Ī½'),
(111024, 90849, 'en', 'name', 'Hellenic Complex Systems Laboratory'),
(111025, 90850, 'en', 'name', 'Kharkiv Medical Academy of Postgraduate Education'),
(111026, 90850, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ¾Ń— меГичної акаГемії ŠæŃ–ŃŠ»ŃŠ“ŠøŠæŠ»Š¾Š¼Š½Š¾Ń— освіти'),
(111027, 90851, 'no_lang_code', 'name', 'Millor Battery (Spain)'),
(111028, 90852, 'en', 'name', 'Marion County Public Health Department'),
(111029, 90853, 'de', 'name', 'Kunstakademie Münster'),
(111030, 90853, 'en', 'name', 'Academy of Fine Arts Münster'),
(111031, 90854, 'en', 'name', 'Mevlana University'),
(111032, 90854, 'tr', 'name', 'Mevlana Üniversitesi'),
(111033, 90855, 'en', 'name', 'American Bureau of Shipping'),
(111034, 90856, 'am', 'name', 'į‹°įˆį‰¢ į‹¶įˆŽ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(111035, 90856, 'en', 'name', 'Dambi Dollo University'),
(111036, 90856, 'om', 'name', 'Yuunivasitii Dambii Dolloo'),
(111037, 90857, 'en', 'name', 'University of Miami Health System'),
(111038, 90858, 'no_lang_code', 'name', 'Baba Guru Nanak University'),
(111039, 90858, 'pa', 'name', 'ਬਾਬਾ ਗੁਰੂ ਨਾਨਕ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(111040, 90859, 'en', 'name', 'United Bank of Carbon'),
(111041, 90860, 'en', 'name', 'American Hotel & Lodging Association'),
(111042, 90861, 'de', 'name', 'Europäische Zentrum für Forschung in Finanzökonomie und Unternehmensführung'),
(111043, 90861, 'en', 'name', 'European Center for Research in Financial Economics and Business Management'),
(111044, 90861, 'es', 'name', 'Centro Europeo de Investigación en Economía Financiera y Gestión Empresaria'),
(111045, 90861, 'fr', 'name', 'Centre Européen de Recherche en Economie Financière et Gestion des Entreprises'),
(111046, 90862, 'en', 'name', 'Bronx-Lebanon Hospital Center'),
(111047, 90863, 'en', 'name', 'RRF Foundation for Aging'),
(111048, 90864, 'en', 'name', 'Social Program Evaluators & Consultants, Inc.'),
(111049, 90865, 'en', 'name', 'Wessex Medical Research'),
(111050, 90866, 'en', 'name', 'Taguig City University'),
(111051, 90867, 'en', 'name', 'EC-Earth Consortium'),
(111052, 90868, 'en', 'name', 'Shree Medical and Technical College'),
(111053, 90869, 'da', 'name', 'Forsvarets Sanitetskommando'),
(111054, 90869, 'en', 'name', 'The Danish Armed Forces Medical Command'),
(111055, 90870, 'en', 'name', 'China Industrial Control Systems Cyber Emergency Response Team'),
(111056, 90870, 'zh', 'name', 'å›½å®¶å·„äøšäæ”ęÆå®‰å…Øå‘å±•ē ”ē©¶äø­åæƒ'),
(111057, 90871, 'en', 'name', 'University of Quebec'),
(111058, 90871, 'fr', 'name', 'UniversitƩ du QuƩbec'),
(111059, 90872, 'en', 'name', 'Sidney Kimmel Cancer Center'),
(111060, 90873, 'en', 'name', 'Yokohama City University Hospital'),
(111061, 90873, 'ja', 'name', 'ęØŖęµœåø‚ē«‹å¤§å­¦é™„å±žē—…é™¢'),
(111062, 90874, 'en', 'name', 'Auckland War Memorial Museum'),
(111063, 90874, 'mi', 'name', 'Tāmaki Paenga Hira'),
(111064, 90875, 'en', 'name', 'Zhejiang Provincial Health and Family Planning Commission'),
(111065, 90876, 'en', 'name', 'Don Law Institute'),
(111066, 90876, 'ru', 'name', 'Донской ЮриГический Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(111067, 90877, 'en', 'name', 'Virginia Space Grant Consortium'),
(111068, 90878, 'en', 'name', 'Institute of Comparative Law'),
(111069, 90878, 'sr', 'name', 'Institut za uporedno pravo'),
(111070, 90879, 'en', 'name', 'Kabardino-Balkarian State University'),
(111071, 90879, 'ru', 'name', 'ŠšŠ°Š±Š°Ń€Š“ŠøŠ½Š¾-Балкарский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111072, 90880, 'en', 'name', 'National Radiological Protection Board'),
(111073, 90881, 'en', 'name', 'Canadian Literacy and Learning Network'),
(111074, 90882, 'en', 'name', 'Musculoskeletal Transplant Foundation'),
(111075, 90883, 'en', 'name', 'Catholic University College of Bruges–Ostend'),
(111076, 90884, 'en', 'name', 'NBS Northern Business School'),
(111077, 90885, 'en', 'name', 'California Natural Resources Agency'),
(111078, 90886, 'de', 'name', 'Niedersächsisches Ministerium für Wissenschaft und Kultur'),
(111079, 90887, 'es', 'name', 'Centro de Investigaciones en Tecnologia de Pinturas'),
(111080, 90888, 'fr', 'name', 'ENCPB - LycƩe Pierre-Gilles-de-Gennes'),
(111081, 90889, 'fr', 'name', 'Laboratoire de GƩnie des ProcƩdƩs Catalytiques'),
(111082, 90890, 'en', 'name', 'Industrial Research Limited'),
(111083, 90891, 'en', 'name', 'Government of British Columbia'),
(111084, 90892, 'en', 'name', 'United States Air Force Office of Scientific Research'),
(111085, 90893, 'en', 'name', 'Interactive Technologies Institute'),
(111086, 90893, 'pt', 'name', 'Instituto de Tecnologias Interativas'),
(111087, 90894, 'en', 'name', 'National Scientific and Technical Research Council'),
(111088, 90894, 'es', 'name', 'Consejo Nacional para Investigaciones Científicas y Tecnológicas'),
(111089, 90895, 'es', 'name', 'Universidad Odontológica Dominicana'),
(111090, 90896, 'de', 'name', 'Popakademie Baden-Württemberg'),
(111091, 90897, 'no_lang_code', 'name', 'MiniSun (United States)'),
(111092, 90898, 'fr', 'name', 'BibliothĆØque de GenĆØve'),
(111093, 90899, 'de', 'name', 'Klinikum Darmstadt'),
(111094, 90900, 'en', 'name', 'Kohn Foundation'),
(111095, 90901, 'en', 'name', 'Bjerknes Centre for Climate Research'),
(111096, 90901, 'no', 'name', 'Bjerknessenteret for klimaforskning'),
(111097, 90902, 'sv', 'name', 'Tore Nilsons Stiftelse fƶr Medicinsk Forskning'),
(111098, 90903, 'en', 'name', 'Eastern Visayas State University'),
(111099, 90903, 'tl', 'name', 'Pamantasang Pambansa ng Silangang Kabisayaan'),
(111100, 90904, 'no_lang_code', 'name', 'Roche (United States)'),
(111101, 90905, 'de', 'name', 'Ɩsterreichisches Exzellenzzentrum für Tribologie'),
(111102, 90905, 'en', 'name', 'Austrian Excellence Center for Tribology'),
(111103, 90906, 'en', 'name', 'Australian Institute of Aboriginal and Torres Strait Islander Studies'),
(111104, 90907, 'en', 'name', 'Minu-Sepehr Aerospace University'),
(111105, 90908, 'en', 'name', 'Ricola Foundation'),
(111106, 90909, 'en', 'name', 'Guilin Science and Technology Bureau'),
(111107, 90909, 'zh', 'name', 'ę”‚ęž—åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(111108, 90910, 'fr', 'name', 'Conseil RƩgional des Hauts-de-France'),
(111109, 90911, 'pt', 'name', 'Universidade Candido Mendes'),
(111110, 90912, 'es', 'name', 'Centro Universitario De Integracion Humanistico'),
(111111, 90913, 'no_lang_code', 'name', 'Cognitive Radio Technologies'),
(111112, 90914, 'en', 'name', 'National Centre for Photovoltaic Research and Education'),
(111113, 90915, 'en', 'name', 'UKOLN'),
(111114, 90916, 'de', 'name', 'UniversitƤtsklinikum Regensburg'),
(111115, 90916, 'en', 'name', 'University Hospital Regensburg'),
(111116, 90917, 'en', 'name', 'Providence Hospital'),
(111117, 90918, 'da', 'name', 'Anti Doping Danmark'),
(111118, 90919, 'en', 'name', 'Central Institute For Subtropical Horticulture'),
(111119, 90919, 'hi', 'name', 'ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤‰ą¤Ŗą„‹ą¤·ą„ą¤£ ą¤¬ą¤¾ą¤—ą¤µą¤¾ą¤Øą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(111120, 90920, 'en', 'name', 'Venezuelan Society of Ecology'),
(111121, 90920, 'es', 'name', 'Sociedad Venezolana de Ecologia'),
(111122, 90921, 'de', 'name', 'Cusanuswerk'),
(111123, 90922, 'en', 'name', 'Probation Board for Northern Ireland'),
(111124, 90923, 'de', 'name', 'Ɩsterreichisches Kompetenzzentrum für Tribologie'),
(111125, 90923, 'no_lang_code', 'name', 'AC2T Research (Austria)'),
(111126, 90924, 'en', 'name', 'Tokyo Medical University Hospital'),
(111127, 90924, 'ja', 'name', 'ę±äŗ¬åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(111128, 90925, 'en', 'name', 'Ethical Consumer Research Association'),
(111129, 90926, 'en', 'name', 'University Hospital of UmeƄ'),
(111130, 90926, 'fi', 'name', 'Norlannin yliopistollinen sairaala'),
(111131, 90926, 'sv', 'name', 'Norrlands universitetssjukhus'),
(111132, 90927, 'no_lang_code', 'name', 'Affymetrix (United States)'),
(111133, 90928, 'no_lang_code', 'name', 'Finnish Research and Engineering (Finland)'),
(111134, 90929, 'en', 'name', 'Institute for Safety Problems of Nuclear Power Plants'),
(111135, 90929, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ проблем безпеки атомних електростанцій'),
(111136, 90930, 'en', 'name', 'American Academy of Optometry'),
(111137, 90931, 'en', 'name', 'St. Joseph''s Institute of Technology'),
(111138, 90932, 'en', 'name', 'Python in Heliophysics Community'),
(111139, 90933, 'en', 'name', 'Stellwagen Bank National Marine Sanctuary'),
(111140, 90934, 'it', 'name', 'INGV Sezione di Palermo'),
(111141, 90935, 'en', 'name', 'NOAA Uncrewed Systems Research Transition Office'),
(111142, 90936, 'cs', 'name', 'Jihočeský kraj'),
(111143, 90936, 'en', 'name', 'South Bohemian Region'),
(111144, 90937, 'en', 'name', 'Kalinga State University'),
(111145, 90938, 'es', 'name', 'Instituto Catequístico Universidad Católica'),
(111146, 90939, 'en', 'name', 'State Key Laboratory of Hydrology-Water Resources and Hydraulic Engineering'),
(111147, 90939, 'zh', 'name', 'ę°“ę–‡ę°“čµ„ęŗäøŽę°“åˆ©å·„ēØ‹ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(111148, 90940, 'en', 'name', 'David Center for the American Revolution'),
(111149, 90941, 'en', 'name', 'National Research Council for Economics Humanities and Social Science'),
(111150, 90942, 'es', 'name', 'Complejo Hospitalario de Salamanca'),
(111151, 90943, 'no_lang_code', 'name', 'BioSyntha Technology (United Kingdom)'),
(111152, 90944, 'en', 'name', 'Alexian Brothers Health System'),
(111153, 90945, 'en', 'name', 'Yokohama City University'),
(111154, 90945, 'ja', 'name', 'ęØŖęµœåø‚ē«‹å¤§å­¦'),
(111155, 90946, 'en', 'name', 'Kitt Peak National Observatory'),
(111156, 90946, 'fr', 'name', 'Observatoire de Kitt Peak'),
(111157, 90947, 'en', 'name', 'University of Florida Cancer Hospital'),
(111158, 90948, 'de', 'name', 'Fachagentur Nachwachsende Rohstoffe'),
(111159, 90949, 'en', 'name', 'University of Economics and Law'),
(111160, 90949, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ – Luįŗ­t, ĐẔi hį»c Quốc gia ThĆ nh phố Hồ ChĆ­ Minh'),
(111161, 90950, 'pt', 'name', 'Instituto Superior Monitor'),
(111162, 90951, 'en', 'name', 'Anhui University of Traditional Chinese Medicine'),
(111163, 90951, 'zh', 'name', 'å®‰å¾½äø­åŒ»å­¦é™¢'),
(111164, 90952, 'en', 'name', 'Andes Amazon Fund'),
(111165, 90953, 'en', 'name', 'United States Research Software Engineer Association'),
(111166, 90954, 'en', 'name', 'National Research Foundation of Korea'),
(111167, 90955, 'en', 'name', 'Alzahra University'),
(111168, 90955, 'fa', 'name', 'دانؓگاه الزهرا'),
(111169, 90956, 'en', 'name', 'NOAA Office of Water Prediction'),
(111170, 90957, 'es', 'name', 'Instituto de Investigaciones Psicológicas'),
(111171, 90958, 'en', 'name', 'University of N''Djamena'),
(111172, 90958, 'fr', 'name', 'UniversitƩ de N''Djamena'),
(111173, 90959, 'en', 'name', 'American Heart Association'),
(111174, 90960, 'no_lang_code', 'name', 'IIE MSA'),
(111175, 90961, 'en', 'name', 'Indiana Christian University'),
(111176, 90962, 'en', 'name', 'The Research Institute on Judicial Systems'),
(111177, 90962, 'it', 'name', 'Istituto di Ricerca sui Sistemi Giudiziari'),
(111178, 90963, 'en', 'name', 'Scarring Alopecia Foundation'),
(111179, 90964, 'en', 'name', 'Earl H. and Ethel M. Myers Oceanographic and Marine Biology Trust'),
(111180, 90965, 'en', 'name', 'Margaret Q. Landenberger Research Foundation'),
(111181, 90966, 'en', 'name', 'Science and Information Organization'),
(111182, 90967, 'en', 'name', 'Shandong Tumor Hospital'),
(111183, 90967, 'zh', 'name', 'å±±äøœēœč‚æē˜¤åŒ»é™¢'),
(111184, 90968, 'en', 'name', 'Gemini North Observatory'),
(111185, 90969, 'en', 'name', 'Foundation for Liver Research'),
(111186, 90970, 'en', 'name', 'Center for Power Electronics Systems'),
(111187, 90971, 'en', 'name', 'University of French Ontario'),
(111188, 90971, 'fr', 'name', 'UniversitƩ de l''Ontario franƧais'),
(111189, 90972, 'en', 'name', 'Showa University East Hospital'),
(111190, 90972, 'ja', 'name', 'ę˜­å’Œå¤§å­¦ē—…é™¢é™„å±žę±ē—…é™¢'),
(111191, 90973, 'en', 'name', 'Stockholm Resilience Centre'),
(111192, 90974, 'en', 'name', 'Brazilian Development Bank'),
(111193, 90974, 'pt', 'name', 'Banco Nacional de Desenvolvimento EconƓmico e Social'),
(111194, 90975, 'en', 'name', 'Walter Reed Army Institute of Research'),
(111195, 90976, 'en', 'name', 'National Center for Ecological Analysis and Synthesis'),
(111196, 90977, 'en', 'name', 'University of Kikwit'),
(111197, 90977, 'fr', 'name', 'UniversitƩ de kikwit'),
(111198, 90978, 'en', 'name', 'Georgian Bay Islands National Park'),
(111199, 90978, 'fr', 'name', 'Parc national des Ǝles-de-la-Baie-Georgienne'),
(111200, 90979, 'no_lang_code', 'name', 'Lallemand (France)'),
(111201, 90980, 'en', 'name', 'Neuromatch'),
(111202, 90981, 'en', 'name', 'FHF – Norwegian Seafood Research Fund'),
(111203, 90981, 'no', 'name', 'FHF – Fiskeri- og havbruksnƦringens forskningsfinansiering'),
(111204, 90982, 'no_lang_code', 'name', 'Cyrus Biotechnology'),
(111205, 90983, 'es', 'name', 'Instituto de BiologĆ­a Marina y Pesquera Almirante Storni'),
(111206, 90984, 'en', 'name', 'Taungoo Technological University'),
(111207, 90985, 'en', 'name', 'Wine Australia'),
(111208, 90986, 'en', 'name', 'Catholic Big Sisters & Big Brothers'),
(111209, 90987, 'en', 'name', 'Lviv Medical University'),
(111210, 90987, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111211, 90988, 'en', 'name', 'NOAA National Weather Service Pacific Region'),
(111212, 90989, 'en', 'name', 'M. Kh Dulati Taraz State University'),
(111213, 90989, 'kk', 'name', 'М.Š„. Š”ŃƒŠ»Š°Ń‚Šø атынГағы Тараз мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(111214, 90990, 'fr', 'name', 'NeuroDiderot'),
(111215, 90991, 'es', 'name', 'Caja Rural de JaƩn'),
(111216, 90992, 'es', 'name', 'Instituto de Geocronología y Geología Isotópica'),
(111217, 90993, 'en', 'name', 'Surakarta Christian University'),
(111218, 90994, 'en', 'name', 'Rocky Mountain Conservancy'),
(111219, 90995, 'en', 'name', 'Advanced Grid Institute'),
(111220, 90996, 'en', 'name', 'IP Australia'),
(111221, 90997, 'fr', 'name', 'Association Neurofibromatoses et Recklinghausen'),
(111222, 90998, 'es', 'name', 'Universidad Tecnológica del Sur'),
(111223, 90999, 'de', 'name', 'Bundesanstalt für Landwirtschaft und Ernährung'),
(111224, 90999, 'en', 'name', 'Federal Office for Food and Agriculture'),
(111225, 91000, 'en', 'name', 'Cooperative Research Centre for Developing Northern Australia'),
(111226, 91001, 'no_lang_code', 'name', 'Miyama Composites Materials (Greece)'),
(111227, 91002, 'no_lang_code', 'name', 'BGI Genomics'),
(111228, 91002, 'zh', 'name', 'åŽå¤§åŸŗå› č‚”ä»½ęœ‰é™å…¬åø'),
(111229, 91003, 'fr', 'name', 'Laboratoire de MƩcanique des Sols, Structures et MatƩriaux'),
(111230, 91004, 'en', 'name', 'University Kebangsaan Malaysia Medical Centre'),
(111231, 91004, 'ms', 'name', 'Pusat Perubatan Universiti Kebangsaan Malaysia'),
(111232, 91005, 'en', 'name', 'Gateway Technical College'),
(111233, 91006, 'en', 'name', 'Institute of Geosciences and Earth Resources'),
(111234, 91006, 'it', 'name', 'Istituto di Geoscienze e Georisorse'),
(111235, 91007, 'no_lang_code', 'name', 'Anatech'),
(111236, 91008, 'no_lang_code', 'name', 'Juris (Germany)'),
(111237, 91009, 'en', 'name', 'Italian Cultural Institute, Tokyo'),
(111238, 91009, 'ja', 'name', 'ć‚¤ć‚æćƒŖć‚¢ę–‡åŒ–ä¼šé¤Ø'),
(111239, 91010, 'en', 'name', 'Highways England'),
(111240, 91011, 'en', 'name', 'Living With Hope'),
(111241, 91011, 'nl', 'name', 'De Lisa Waller Hayes Stichting'),
(111242, 91012, 'cs', 'name', 'StĆ”tnĆ­ fond životnĆ­ho prostředĆ­ ČR'),
(111243, 91012, 'en', 'name', 'State Environmental Fund of the Czech Republic'),
(111244, 91013, 'en', 'name', 'Malden Grade School'),
(111245, 91014, 'no_lang_code', 'name', 'Whitehead Scientific (South Africa)'),
(111246, 91015, 'en', 'name', 'Good Hope Hospital'),
(111247, 91016, 'en', 'name', 'Texas A&M University – Central Texas'),
(111248, 91017, 'en', 'name', 'Galapagos Conservancy'),
(111249, 91018, 'en', 'name', 'French Research Institute for Development'),
(111250, 91018, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(111251, 91019, 'no_lang_code', 'name', 'IS3D (United States)'),
(111252, 91020, 'en', 'name', 'Nansen International Environmental and Remote Sensing Center'),
(111253, 91021, 'en', 'name', 'Worldwide Book Services (United Kingdom)'),
(111254, 91022, 'en', 'name', 'Foundation for Physical Therapy Research'),
(111255, 91023, 'en', 'name', 'Action for AT'),
(111256, 91024, 'en', 'name', 'Dell Children''s Medical Center of Central Texas'),
(111257, 91025, 'en', 'name', 'Federal Technical and Vocational Education and Training Institute'),
(111258, 91026, 'en', 'name', 'Fiona Wood Foundation'),
(111259, 91027, 'no_lang_code', 'name', 'Edge Foundation'),
(111260, 91028, 'en', 'name', 'National Peanut Board'),
(111261, 91029, 'en', 'name', 'Cumbria Partnership NHS Foundation Trust'),
(111262, 91030, 'fr', 'name', 'AndrƩ Losch Fondation'),
(111263, 91031, 'fr', 'name', 'HƓpital Roger Salengro'),
(111264, 91032, 'en', 'name', 'Solamalai College of Engineering'),
(111265, 91033, 'fr', 'name', 'Ɖcole Internationale des Sciences du Traitement de l''Information'),
(111266, 91034, 'en', 'name', 'Chengdu Research Base of Giant Panda Breeding'),
(111267, 91034, 'zh', 'name', 'ęˆéƒ½å¤§ē†ŠēŒ«ē¹č‚²ē ”ē©¶åŸŗåœ°'),
(111268, 91035, 'de', 'name', 'Andrologicum München'),
(111269, 91036, 'en', 'name', 'Ruralis - Institute for Rural and Regional Research'),
(111270, 91037, 'es', 'name', 'Hospital Christus Muguerza Alta Especialidad'),
(111271, 91038, 'en', 'name', 'Guangzhou Liwan District Traditional Chinese Medicine Hospital'),
(111272, 91039, 'en', 'name', 'University of Applied Management'),
(111273, 91040, 'en', 'name', 'Berkshire Medical Center'),
(111274, 91041, 'am', 'name', 'į‹³įŒįˆ›į‹Š įˆįŠ’įˆŠįŠ­ įˆ…įŠ­įˆįŠ“įŠ“ įŒ¤įŠ“ įˆ³į‹­įŠ•įˆµ įŠ®įˆŒįŒ…'),
(111275, 91041, 'en', 'name', 'Menelik II Medical and Health Science College'),
(111276, 91042, 'en', 'name', 'PsychoTropical Research'),
(111277, 91043, 'sv', 'name', 'LantmƤnnen'),
(111278, 91044, 'en', 'name', 'University of the Sunshine Coast'),
(111279, 91045, 'en', 'name', 'Queen''s Medical Center'),
(111280, 91046, 'fr', 'name', 'Alimentation et Sciences Sociales'),
(111281, 91047, 'en', 'name', 'Microbiology Society'),
(111282, 91048, 'en', 'name', 'International Institute of Information Technology'),
(111283, 91049, 'no_lang_code', 'name', 'Science-Metrix (Canada)'),
(111284, 91050, 'en', 'name', 'Israel Ministry of Health'),
(111285, 91050, 'he', 'name', '×žÖ“×©Ö°×‚×ØÖ·×“ הַבְּר֓יאוּת'),
(111286, 91051, 'en', 'name', 'Shanghai National Accounting Institute'),
(111287, 91051, 'zh', 'name', 'äøŠęµ·å›½å®¶ä¼šč®”å­¦é™¢'),
(111288, 91052, 'da', 'name', 'NordsjƦllands Hospital'),
(111289, 91053, 'fr', 'name', 'GƩnomique fonctionnelle comparative'),
(111290, 91054, 'de', 'name', 'VWA Hochschule'),
(111291, 91055, 'es', 'name', 'Hospital Universitario Virgen Macarena'),
(111292, 91056, 'fr', 'name', 'Neurobiologie de l''Olfaction et ModƩlisation en Imagerie'),
(111293, 91057, 'en', 'name', 'Academician Stepan Demianchuk International University Of Economics and Humanities'),
(111294, 91057, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ економіко-Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Дтепана Š”ŠµŠ¼ā€™ŃŠ½Ń‡ŃƒŠŗŠ°'),
(111295, 91058, 'ja', 'name', 'čŠ±ēŽ‹ę Ŗå¼ä¼šē¤¾'),
(111296, 91058, 'no_lang_code', 'name', 'Kao Corporation (Japan)'),
(111297, 91059, 'no_lang_code', 'name', 'Vianode (Norway)'),
(111298, 91060, 'en', 'name', 'ADEN University PanamĆ”'),
(111299, 91061, 'it', 'name', 'Confederazione Generale Italiana del Lavoro'),
(111300, 91062, 'de', 'name', 'Schifffahrtmedizinisches Institut der Marine'),
(111301, 91063, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų“ŁŠŲ® عبدالله Ų§Ł„ŲØŲÆŲ±ŁŠ'),
(111302, 91063, 'no_lang_code', 'name', 'Elsheikh Abdallah Elbadri University'),
(111303, 91064, 'en', 'name', 'Erasmus University College Brussels');
INSERT INTO `ror_settings` VALUES
(111304, 91064, 'fr', 'name', 'Erasmushogeschool brussel'),
(111305, 91064, 'nl', 'name', 'Erasmushogeschool Brussel'),
(111306, 91065, 'en', 'name', 'South Johnston High School'),
(111307, 91066, 'en', 'name', 'Hungarian Science and Technology Foundation'),
(111308, 91067, 'fr', 'name', 'Centre de Biologie du DƩveloppement'),
(111309, 91068, 'nl', 'name', 'Nederlands Olympisch ComitƩ Nederlandse Sport Federatie'),
(111310, 91069, 'es', 'name', 'Centro de Estudios Tecnológicos y Universitarios del Golfo'),
(111311, 91070, 'en', 'name', 'Cambridge Information Group'),
(111312, 91071, 'de', 'name', 'Labor für Kristallographie, Kernspinresonanz und Modellierung'),
(111313, 91071, 'en', 'name', 'Crystallography, Magnetic Resonance and Modeling Laboratory'),
(111314, 91071, 'fr', 'name', 'Laboratoire de Cristallographie, RƩsonance MagnƩtique et ModƩlisations'),
(111315, 91072, 'en', 'name', 'Birmingham Children''s Hospital'),
(111316, 91073, 'en', 'name', 'Southeastern Ontario Academic Medical Organization'),
(111317, 91074, 'es', 'name', 'Hospital Maciel'),
(111318, 91075, 'en', 'name', 'American Society for Bioethics and Humanities'),
(111319, 91076, 'fr', 'name', 'CEPN'),
(111320, 91077, 'en', 'name', 'World Animal Protection'),
(111321, 91078, 'en', 'name', 'Moorea Coral Reef Long Term Ecological Research'),
(111322, 91079, 'en', 'name', 'American Psychiatric Foundation'),
(111323, 91080, 'de', 'name', 'Forschungsstelle für Zeitgeschichte in Hamburg'),
(111324, 91081, 'de', 'name', 'DECHEMA-Forschungsinstitut'),
(111325, 91081, 'en', 'name', 'DECHEMA Research Institute'),
(111326, 91082, 'en', 'name', 'Instituto Marangoni'),
(111327, 91083, 'fr', 'name', 'Psychologie Ergonomique et Sociale pour l''ExpƩrience Utilisateurs'),
(111328, 91084, 'en', 'name', 'ESCP Business School'),
(111329, 91085, 'en', 'name', 'Hutchinson Centre Research Institute in Uganda'),
(111330, 91086, 'sv', 'name', 'Stiftelsen fƶr ƅbo Akademi'),
(111331, 91087, 'en', 'name', 'Biochemistry Research Institute of La Plata'),
(111332, 91088, 'en', 'name', 'Indian Institute of Management Rohtak'),
(111333, 91089, 'fr', 'name', 'MinistĆØre du travail, de l''emploi et de l''insertion'),
(111334, 91090, 'en', 'name', 'Barbados National Standards Institution'),
(111335, 91091, 'no_lang_code', 'name', 'Silicon Graphics International (United States)'),
(111336, 91092, 'no_lang_code', 'name', 'Rumbek University'),
(111337, 91093, 'en', 'name', 'Sichuan Tourism University'),
(111338, 91093, 'zh', 'name', 'å››å·ę—…ęøøå¤§å­¦'),
(111339, 91094, 'pt', 'name', 'Centro Nacional de Primatas'),
(111340, 91095, 'en', 'name', 'Department of Culture, Heritage and the Gaeltacht'),
(111341, 91095, 'ga', 'name', 'An Roinn EalaĆ­on, Oidhreachta agus Gaeltachta'),
(111342, 91096, 'no_lang_code', 'name', 'FluxSense AB (Sweden)'),
(111343, 91097, 'no_lang_code', 'name', 'FutureMeds (United Kingdom)'),
(111344, 91098, 'en', 'name', 'Human Vaccines Project Europe'),
(111345, 91098, 'nl', 'name', 'Stichting Human Vaccines Project Europe'),
(111346, 91099, 'en', 'name', 'Institute of Oceanology'),
(111347, 91099, 'zh', 'name', '中国科学院海擋研究所'),
(111348, 91100, 'en', 'name', 'Purwokerto Telkom Institute of Technology'),
(111349, 91100, 'id', 'name', 'Institut Teknologi Telkom Purwokerto'),
(111350, 91101, 'en', 'name', 'Health and Family Planning Commission of Hubei Province'),
(111351, 91101, 'zh', 'name', 'ę¹–åŒ—ēœå«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(111352, 91102, 'en', 'name', 'Pushchino Scientific Center for Biological Research'),
(111353, 91102, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Ā«ŠŸŃƒŃ‰ŠøŠ½ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр биологических исслеГований Российской АкаГемии наук»'),
(111354, 91103, 'en', 'name', 'Toxicology Society of South Africa'),
(111355, 91104, 'id', 'name', 'Universitas Veteran Republik Indonesia Makassar'),
(111356, 91105, 'en', 'name', 'Institute of Reflective Investigation and Specialization'),
(111357, 91105, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ рефлексивных исслеГований Šø специализаций'),
(111358, 91105, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Рефлексивних Š”Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ & Дпеціалізації'),
(111359, 91106, 'en', 'name', 'Milano University Press'),
(111360, 91107, 'en', 'name', 'Innovative Medicines Initiative'),
(111361, 91108, 'en', 'name', 'Nanjing Institute of Geology and Paleontology'),
(111362, 91108, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å—äŗ¬åœ°č“Øå¤ē”Ÿē‰©ē ”ē©¶ę‰€'),
(111363, 91109, 'en', 'name', 'Technological University Sittwe'),
(111364, 91110, 'es', 'name', 'Fundación Cellex'),
(111365, 91111, 'de', 'name', 'Zentrum für Mechatronik und Automatisierungstechnik'),
(111366, 91112, 'en', 'name', 'Northern Research Station'),
(111367, 91113, 'en', 'name', 'OpenAIRE Non-Profit Civil Partnership'),
(111368, 91114, 'no_lang_code', 'name', 'White arkitekter (Sweden)'),
(111369, 91115, 'en', 'name', 'Gros Morne National Park'),
(111370, 91115, 'fr', 'name', 'Parc national du Gros-Morne'),
(111371, 91116, 'en', 'name', 'Buenos Aires Interdisciplinary Political Economy Institute'),
(111372, 91116, 'es', 'name', 'Instituto Interdisciplinario de EconomĆ­a PolĆ­tica de Buenos Aires'),
(111373, 91117, 'no_lang_code', 'name', 'Zylem Biosciences'),
(111374, 91118, 'en', 'name', 'Abubakar Tafawa Balewa University'),
(111375, 91119, 'en', 'name', 'Institute for Water and Environmental Problems of the Siberian Branch of the Russian Academy of Sciences'),
(111376, 91119, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГных Šø ŃŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŃ… проблем Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(111377, 91120, 'en', 'name', 'European Union'),
(111378, 91121, 'en', 'name', 'Government of the Republic of Korea'),
(111379, 91122, 'en', 'name', 'Department for Business, Energy and Industrial Strategy'),
(111380, 91123, 'no_lang_code', 'name', 'Exploration and Development Research Institute of PetroChina Southwest Oil & Gas Field Company (China)'),
(111381, 91123, 'zh', 'name', 'äø­å›½ēŸ³ę²¹č„æå—ę²¹ę°”ē”°å…¬åøå‹˜ęŽ¢å¼€å‘ē ”ē©¶é™¢'),
(111382, 91124, 'en', 'name', 'Tiny Blue Dot Foundation'),
(111383, 91125, 'de', 'name', 'Bibliothek für Bildungsgeschichtliche Forschung des DIPF'),
(111384, 91126, 'en', 'name', 'The Federal State Budget Scientific Institution "Institute of Special Education"'),
(111385, 91126, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ коррекционной пеГагогики»'),
(111386, 91127, 'de', 'name', 'Hugo Grotius'),
(111387, 91128, 'en', 'name', 'Northeast Institute of Geography and Agroecology'),
(111388, 91128, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøœåŒ—åœ°ē†äøŽå†œäøšē”Ÿę€ē ”ē©¶ę‰€'),
(111389, 91129, 'no_lang_code', 'name', 'Covalence Research'),
(111390, 91130, 'de', 'name', 'Staatliches Institut für Musikforschung'),
(111391, 91131, 'en', 'name', 'Malta Competition and Consumer Affairs Authority'),
(111392, 91132, 'en', 'name', 'Hutchison/MRC Research Centre'),
(111393, 91133, 'en', 'name', 'Cumbria Northumberland Tyne and Wear NHS Foundation Trust'),
(111394, 91134, 'en', 'name', 'Simón Bolívar University'),
(111395, 91134, 'es', 'name', 'Universidad Simón Bolívar'),
(111396, 91135, 'pl', 'name', 'Szpital Morski im. PCK'),
(111397, 91136, 'no_lang_code', 'name', 'Mallinckrodt (United States)'),
(111398, 91137, 'no_lang_code', 'name', 'European Association of the Machine Tool Industries'),
(111399, 91138, 'en', 'name', 'Anti-Slavery'),
(111400, 91139, 'en', 'name', 'Agency for Innovation by Science and Technology'),
(111401, 91139, 'nl', 'name', 'Agentschap voor Innovatie door Wetenschap en Technologie'),
(111402, 91140, 'ca', 'name', 'Hospital Universitari i PolitĆØcnic La Fe'),
(111403, 91140, 'es', 'name', 'Hospital Universitario y PolitƩcnico de La Fe'),
(111404, 91141, 'en', 'name', 'WSB Merito University in Gdańsk'),
(111405, 91141, 'pl', 'name', 'Uniwersytet WSB Merito Gdańsk'),
(111406, 91142, 'en', 'name', 'Institute of Legal Information Theory and Techniques'),
(111407, 91142, 'it', 'name', 'Istituto di Teoria e Tecniche dell’Informazione Giuridica'),
(111408, 91143, 'no_lang_code', 'name', 'AvidBiotics (United States)'),
(111409, 91144, 'fr', 'name', 'PĆ“le d’Expertise de la RĆ©gulation NumĆ©rique'),
(111410, 91145, 'en', 'name', 'Hung Vuong University of Ho Chi Minh City'),
(111411, 91146, 'no_lang_code', 'name', 'Fiat Lux'),
(111412, 91147, 'en', 'name', 'Department of Primary Industries and Regional Development'),
(111413, 91148, 'en', 'name', 'European Chemicals Agency'),
(111414, 91148, 'fi', 'name', 'Euroopan kemikaalivirasto'),
(111415, 91149, 'en', 'name', 'Institute for High Pressure Physics'),
(111416, 91149, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики высоких Гавлений имени'),
(111417, 91150, 'en', 'name', 'Winifred Violet Scott Charitable Trust'),
(111418, 91151, 'en', 'name', 'Continuous Plankton Recorder Survey'),
(111419, 91152, 'en', 'name', 'International Center for Agricultural Research in the Dry Areas'),
(111420, 91153, 'no_lang_code', 'name', 'Apintech (Greece)'),
(111421, 91154, 'en', 'name', 'American University of Leadership'),
(111422, 91155, 'no_lang_code', 'name', 'Covestro (Germany)'),
(111423, 91156, 'de', 'name', 'Institut Jugend Film Fernsehen'),
(111424, 91157, 'en', 'name', 'University of San Carlos of Guatemala'),
(111425, 91157, 'es', 'name', 'Universidad de San Carlos de Guatemala'),
(111426, 91158, 'en', 'name', 'New American Colleges and Universities'),
(111427, 91159, 'en', 'name', 'Indonesia Research Institute for Tea and Cinchona'),
(111428, 91159, 'id', 'name', 'Pusat Penelitian Teh dan Kina'),
(111429, 91160, 'id', 'name', 'STIKes Wira Medika Bali'),
(111430, 91161, 'no_lang_code', 'name', 'SGL Group (Poland)'),
(111431, 91162, 'de', 'name', 'Hochschule Emden / Leer'),
(111432, 91162, 'en', 'name', 'University of Applied Sciences Emden Leer'),
(111433, 91163, 'en', 'name', 'North Dakota Department of Agriculture'),
(111434, 91164, 'en', 'name', 'Heartlands Hospital'),
(111435, 91165, 'en', 'name', 'Academy of Finance and Management in Białystok'),
(111436, 91165, 'pl', 'name', 'Wyższa Szkoła Finansów i Zarządzania w Białymstoku'),
(111437, 91166, 'en', 'name', 'Temerty Family Foundation'),
(111438, 91167, 'de', 'name', 'Helios Klinikum Krefeld'),
(111439, 91168, 'no_lang_code', 'name', 'GCP Applied Technologies (United States)'),
(111440, 91169, 'en', 'name', 'Israel Atomic Energy Commission'),
(111441, 91169, 'he', 'name', 'הוועדה ×œ×× ×Ø×’×™×” ××˜×•×ž×™×Ŗ'),
(111442, 91170, 'id', 'name', 'Universitas Islam Madura'),
(111443, 91171, 'en', 'name', 'University of Arts from TĆ¢rgu-Mureș'),
(111444, 91172, 'no_lang_code', 'name', 'ET Techtonics (United States)'),
(111445, 91173, 'fr', 'name', 'Ɖcole Nationale de la MĆ©tĆ©orologie'),
(111446, 91174, 'en', 'name', 'Tashkent Medical Academy Urgench Branch'),
(111447, 91174, 'ru', 'name', 'Ургенчский филиал Š¢Š°ŃˆŠŗŠµŠ½Ń‚ской меГицинской акаГемии'),
(111448, 91174, 'uz', 'name', 'Toshkent tibbiyot akademiyasi Urganch filiali'),
(111449, 91175, 'en', 'name', 'Langley Memorial Aeronautical Laboratory'),
(111450, 91176, 'sv', 'name', 'Sven och Lilly Lawskis fond fƶr naturvetenskaplig forskning'),
(111451, 91177, 'no_lang_code', 'name', 'Rank Hovis McDougall (United Kingdom)'),
(111452, 91178, 'cs', 'name', 'Ministerstvo prĆ”ce a sociĆ”lnĆ­ch věcĆ­ ČeskĆ© republiky'),
(111453, 91178, 'en', 'name', 'Ministry of Labour and Social Affairs'),
(111454, 91179, 'en', 'name', 'Museum of Paleontology Egidio Feruglio'),
(111455, 91179, 'es', 'name', 'Museo Paleontológico Egidio Feruglio'),
(111456, 91180, 'en', 'name', 'North Asheboro Middle School'),
(111457, 91181, 'fr', 'name', 'Laboratoire d''Ɖtudes et de Recherches AppliquĆ©es en Sciences Sociales'),
(111458, 91182, 'pt', 'name', 'Escola de SaĆŗde PĆŗblica do CearĆ”'),
(111459, 91183, 'fr', 'name', 'ComitƩ National de Coordination de la Recherche'),
(111460, 91184, 'en', 'name', 'Tajik Technical University named after academic M.S.Osimi'),
(111461, 91184, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø техникии Тоҷикистон ба номи акаГемик М.Š”.ŠžŃŠøŠ¼Ó£'),
(111462, 91185, 'fr', 'name', 'Centre d''Investigation Clinique de Vaccinologie Cochin-Pasteur'),
(111463, 91186, 'en', 'name', 'Norwegian Government Security and Service Organisation'),
(111464, 91186, 'no', 'name', 'Departementenes sikkerhets- og serviceorganisasjon'),
(111465, 91187, 'en', 'name', 'Shaanxi Science and Technology Department'),
(111466, 91188, 'no_lang_code', 'name', 'Calibraciones Industriales S.A. (Chile)'),
(111467, 91189, 'en', 'name', 'Clinical Hospital No. 8'),
(111468, 91189, 'ru', 'name', 'ŠšŠ»ŠøŠ½ŠøŃ‡ŠµŃŠŗŠ°Ń Š±Š¾Š»ŃŒŠ½ŠøŃ†Š° ā„–8'),
(111469, 91190, 'en', 'name', 'Schlinger Foundation'),
(111470, 91191, 'en', 'name', 'Environmental Restoration and Conservation Agency'),
(111471, 91191, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗē’°å¢ƒå†ē”Ÿäæå…Øę©Ÿę§‹'),
(111472, 91192, 'es', 'name', 'Hospital Obispo Polanco'),
(111473, 91193, 'en', 'name', 'Milko Kos Historical Institute'),
(111474, 91193, 'sl', 'name', 'Zgodovinski inŔtitut Milka Kosa'),
(111475, 91194, 'en', 'name', 'National Research Institute of Astronomy and Geophysics'),
(111476, 91195, 'fr', 'name', 'Biologie VƩgƩtale et de Microbiologie Environnementales'),
(111477, 91196, 'no_lang_code', 'name', 'Kodiak Sciences'),
(111478, 91197, 'fr', 'name', 'UnitƩ de Recherche en BiomatƩriaux Innovant et Interfaces'),
(111479, 91198, 'no_lang_code', 'name', 'CATX (United States)'),
(111480, 91199, 'en', 'name', 'Banner - University Medical Center Phoenix'),
(111481, 91200, 'no_lang_code', 'name', 'Anatrace'),
(111482, 91201, 'en', 'name', 'Simons Foundation'),
(111483, 91202, 'de', 'name', 'Institut für Pharmakologie und Toxikologie der Bundeswehr'),
(111484, 91203, 'en', 'name', 'Italian Cultural Institute, London'),
(111485, 91204, 'en', 'name', 'Volgograd State University of Architecture and Civil Engineering'),
(111486, 91204, 'ru', 'name', 'ВолгограГский Š³Š¾ŃŃƒŠ“арственный Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111487, 91205, 'en', 'name', 'State Office for Metrology'),
(111488, 91205, 'hr', 'name', 'Državni zavod za mjeriteljstvo'),
(111489, 91206, 'en', 'name', 'Farmer Family Foundation'),
(111490, 91207, 'en', 'name', 'Goddard Institute for Space Studies'),
(111491, 91208, 'nl', 'name', 'AZ Groeninge'),
(111492, 91209, 'en', 'name', 'Semyung University'),
(111493, 91210, 'en', 'name', 'Northern Ireland Environment Agency'),
(111494, 91211, 'en', 'name', 'Brain Imaging Network'),
(111495, 91212, 'id', 'name', 'Institut Seni Indonesia Denpasar'),
(111496, 91213, 'en', 'name', 'University of Maribor'),
(111497, 91213, 'sl', 'name', 'Univerza v Mariboru'),
(111498, 91214, 'es', 'name', 'Centro de Investigación y Extensión Forestal Andino Patagónico'),
(111499, 91215, 'tr', 'name', 'Türkiye Sağlık Enstitüleri Başkanlığı'),
(111500, 91216, 'en', 'name', 'Office of Atoms for Peace'),
(111501, 91216, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø›ąø£ąø”ąø²ąø“ąø¹ą¹€ąøžąø·ą¹ˆąø­ąøŖąø±ąø™ąø•ąø“'),
(111502, 91217, 'en', 'name', 'Canadian Hydrographic Service'),
(111503, 91217, 'fr', 'name', 'Service hydrographique du Canada'),
(111504, 91218, 'en', 'name', 'World Institute of Kimchi'),
(111505, 91218, 'ko', 'name', 'ģ„øź³„ź¹€ģ¹˜ģ—°źµ¬ģ†Œ'),
(111506, 91219, 'no_lang_code', 'name', 'South China Biological Medicine (China)'),
(111507, 91219, 'zh', 'name', 'å¹æå·žåø‚åŽå—å†œå¤§ē”Ÿē‰©čÆå“ęœ‰é™å…¬åø'),
(111508, 91220, 'ro', 'name', 'Universitatea Romano-Germana din Sibiu'),
(111509, 91221, 'fr', 'name', 'Institut Droit et SantƩ'),
(111510, 91222, 'en', 'name', 'Department of Sport and Recreation'),
(111511, 91223, 'en', 'name', 'Carondelet Health Network'),
(111512, 91224, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ© بقفصة'),
(111513, 91224, 'fr', 'name', 'Institut SupƩrieur des Sciences AppliquƩes et de Technologies de Gafsa'),
(111514, 91225, 'en', 'name', 'Texas A&M Health Science Center'),
(111515, 91226, 'no_lang_code', 'name', 'Labotec (South Africa)'),
(111516, 91227, 'en', 'name', 'Lutheran Theological University'),
(111517, 91228, 'en', 'name', 'El Mastaba Center for Egyptian Folk Music'),
(111518, 91229, 'en', 'name', 'Unit of Virus Host Cell Interactions'),
(111519, 91230, 'en', 'name', 'Lemelson Foundation'),
(111520, 91231, 'en', 'name', 'Kejimkujik National Park'),
(111521, 91231, 'fr', 'name', 'Parc national de Kejimkujik'),
(111522, 91232, 'en', 'name', 'Manton Foundation'),
(111523, 91233, 'en', 'name', 'Tohoku University'),
(111524, 91233, 'ja', 'name', 'ę±åŒ—å¤§å­¦'),
(111525, 91234, 'en', 'name', 'Ton Duc Thang University'),
(111526, 91234, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c TĆ“n Đức ThįŗÆng'),
(111527, 91235, 'en', 'name', 'Department of Land Resource Management'),
(111528, 91236, 'fr', 'name', 'Etudes romanes'),
(111529, 91237, 'sv', 'name', 'Landstinget i Uppsala lƤn'),
(111530, 91238, 'de', 'name', 'Max-Planck-Institut für Gesellschaftsforschung'),
(111531, 91238, 'en', 'name', 'Max Planck Institute for the Study of Societies'),
(111532, 91239, 'no_lang_code', 'name', 'Confluent Medical Technologies'),
(111533, 91240, 'en', 'name', 'Everglades Foundation'),
(111534, 91241, 'fr', 'name', 'Centre lorrain de recherches interdisciplinaires dans les domaines des littƩratures, des cultures et de la thƩologie'),
(111535, 91242, 'no_lang_code', 'name', 'BioMar (United Kingdom)'),
(111536, 91243, 'en', 'name', 'Cancer Council SA'),
(111537, 91244, 'en', 'name', 'College of Accounting'),
(111538, 91245, 'fr', 'name', 'Centre Hospitalier De Pau'),
(111539, 91246, 'fr', 'name', 'HƓpital Jeanne de Flandre'),
(111540, 91247, 'en', 'name', 'Sustainable Forestry Initiative'),
(111541, 91248, 'en', 'name', 'Bangladesh Standards and Testing Institution'),
(111542, 91249, 'en', 'name', 'Penitentiary Academy of Ukraine'),
(111543, 91249, 'uk', 'name', 'ŠŸŠµŠ½Ń–Ń‚ŠµŠ½Ń†Ń–Š°Ń€Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України'),
(111544, 91250, 'fr', 'name', 'Ecole SupƩrieure de Technologie de Safi'),
(111545, 91251, 'en', 'name', 'Villa Maria School'),
(111546, 91252, 'no_lang_code', 'name', 'Southern Water (United Kingdom)'),
(111547, 91253, 'en', 'name', 'Mingan Archipelago National Park Reserve'),
(111548, 91253, 'fr', 'name', 'RƩserve de parc national de l''Archipel-de-Mingan'),
(111549, 91254, 'en', 'name', 'Lebanese International University of Mauritania'),
(111550, 91254, 'fr', 'name', 'UniversitƩ libanaise internationale en mauritanie'),
(111551, 91255, 'en', 'name', 'University of the Commonwealth Caribbean'),
(111552, 91256, 'ja', 'name', 'ęøˆē”Ÿä¼šē„žå„ˆå·ēœŒē—…é™¢'),
(111553, 91256, 'no_lang_code', 'name', 'Saiseikai Kanagawa Hospital'),
(111554, 91257, 'af', 'name', 'Separation Wetenskaplik'),
(111555, 91257, 'no_lang_code', 'name', 'Separation Scientific (South Africa)'),
(111556, 91258, 'no_lang_code', 'name', 'Intel (United States)'),
(111557, 91259, 'en', 'name', 'Government of Western Australia Department of Health'),
(111558, 91260, 'fr', 'name', 'Laboratoire de Chimie MolƩculaire'),
(111559, 91261, 'en', 'name', 'Foundation Fighting Blindness'),
(111560, 91262, 'de', 'name', 'Bernhard-Nocht-Institut für Tropenmedizin'),
(111561, 91262, 'en', 'name', 'Bernhard Nocht Institute for Tropical Medicine'),
(111562, 91263, 'en', 'name', 'Delta Waterfowl Foundation'),
(111563, 91264, 'en', 'name', 'Imec the Netherlands'),
(111564, 91265, 'no_lang_code', 'name', 'Vidropol (Portugal)'),
(111565, 91266, 'en', 'name', 'ICAP Global Health'),
(111566, 91267, 'en', 'name', 'Foundation For Fundamental Research On Matter'),
(111567, 91268, 'no', 'name', 'SINTEF, Stiftelsen for Industriell og Teknisk Forskning'),
(111568, 91269, 'en', 'name', 'National Water Commission'),
(111569, 91270, 'de', 'name', 'Land Niederosterreich'),
(111570, 91270, 'en', 'name', 'Government of Lower Austria'),
(111571, 91271, 'en', 'name', 'Molecular Foundry'),
(111572, 91272, 'en', 'name', 'Karst Research Institute'),
(111573, 91272, 'sl', 'name', 'InŔtitut za raziskovanje krasa'),
(111574, 91273, 'pt', 'name', 'Instituto Nacional de Cardiologia'),
(111575, 91274, 'en', 'name', 'Radiation and Nuclear Safety Authority'),
(111576, 91274, 'fi', 'name', 'SƤteilyturvakeskus'),
(111577, 91274, 'sv', 'name', 'StrƄlsƤkerhetscentralen'),
(111578, 91275, 'en', 'name', 'NOAA Office of Chief Operating Officer'),
(111579, 91276, 'en', 'name', 'National Integrated Drought Information System'),
(111580, 91277, 'es', 'name', 'Universidad Ateneo de Monterrey'),
(111581, 91278, 'en', 'name', 'BioTherapeutics, Education and Research Foundation'),
(111582, 91279, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Oberrhein'),
(111583, 91280, 'en', 'name', 'Barrow Neurological Institute'),
(111584, 91281, 'de', 'name', 'Konventhospital der Barmherzigen Brüder Linz'),
(111585, 91281, 'en', 'name', 'Convent Hospital of the Brothers of Saint John of God'),
(111586, 91282, 'en', 'name', 'Institute for Information and Communications Technology Promotion'),
(111587, 91282, 'ko', 'name', 'ģ •ė³“ķ†µģ‹ źø°ģˆ ģ§„ķ„ģ„¼ķ„°'),
(111588, 91283, 'en', 'name', 'Graduate School of Business and Entrepreneurship under the Cabinet of Ministers of the Republic of Uzbekistan'),
(111589, 91283, 'ru', 'name', 'Š’Ń‹ŃŃˆŠ°Ń школа бизнеса Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° при ŠšŠ°Š±ŠøŠ½ŠµŃ‚е ŠœŠøŠ½ŠøŃŃ‚ров Республики Узбекистан'),
(111590, 91283, 'uz', 'name', 'Oʻzbekiston Respublikasi Vazirlar Mahkamasi huzuridagi biznes va tadbirkorlik oliy maktabi'),
(111591, 91284, 'en', 'name', 'Netherlands Institute of Ecology'),
(111592, 91284, 'nl', 'name', 'Nederlands Instituut voor Ecologie'),
(111593, 91285, 'en', 'name', 'Rajabhat University System'),
(111594, 91285, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąø'),
(111595, 91286, 'en', 'name', 'Guangzhou Women and Children Medical Center'),
(111596, 91286, 'zh', 'name', 'å¹æå·žåø‚å¦‡å„³å„æē«„åŒ»ē–—äø­åæƒ'),
(111597, 91287, 'es', 'name', 'Liga AtlƩtica Interuniversitaria de Puerto Rico'),
(111598, 91288, 'fr', 'name', 'Agence Nationale de SƩcuritƩ du MƩdicament et des Produits de SantƩ'),
(111599, 91289, 'no_lang_code', 'name', 'Reckitt Benckiser (United Kingdom)'),
(111600, 91290, 'en', 'name', 'International Iguana Foundation'),
(111601, 91291, 'hu', 'name', 'Semmelweis Egyetem'),
(111602, 91291, 'no_lang_code', 'name', 'Semmelweis University'),
(111603, 91292, 'en', 'name', 'Ulyanovsk State Pedagogical University'),
(111604, 91293, 'en', 'name', 'Kaishi Professional University'),
(111605, 91293, 'ja', 'name', '開志専門職大学'),
(111606, 91294, 'en', 'name', 'Popular University of Nicaragua'),
(111607, 91295, 'en', 'name', 'The University of Texas System'),
(111608, 91295, 'es', 'name', 'Sistema Universitario de Texas'),
(111609, 91295, 'fr', 'name', 'UniversitƩ du Texas'),
(111610, 91296, 'en', 'name', 'Yerevan State Linguistic University'),
(111611, 91296, 'hy', 'name', 'ŌµÖ€Ö‡Õ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ¬Õ„Õ¦Õ¾Õ”Õ°Õ”Õ½Õ”Ö€Õ”ÕÆÕ”Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(111612, 91297, 'en', 'name', 'Buncombe County Early College'),
(111613, 91298, 'tr', 'name', 'ASBU Kuzey Kibris Yerleşkesi̇'),
(111614, 91299, 'en', 'name', 'Henan College of Transportation'),
(111615, 91299, 'zh', 'name', 'ę²³å—äŗ¤é€ščŒäøšęŠ€ęœÆå­¦é™¢'),
(111616, 91300, 'ja', 'name', 'ę–—å—ē—…é™¢'),
(111617, 91300, 'no_lang_code', 'name', 'Tonan Hospital'),
(111618, 91301, 'no_lang_code', 'name', 'Cemat (Italy)'),
(111619, 91302, 'pt', 'name', 'Instituto CTEM+'),
(111620, 91303, 'ar', 'name', 'Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…ŲŖŲ±ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(111621, 91303, 'fr', 'name', 'Agence Nationale de MƩtrologie'),
(111622, 91304, 'en', 'name', 'California Postsecondary Education Commission'),
(111623, 91305, 'en', 'name', 'Natural Sciences and Engineering Research Council'),
(111624, 91305, 'fr', 'name', 'Conseil de Recherches en Sciences Naturelles et en GƩnie du Canada'),
(111625, 91306, 'en', 'name', 'Environmental Science Services Administration'),
(111626, 91307, 'en', 'name', 'Research Center on Earth Sciences'),
(111627, 91307, 'es', 'name', 'Centro de Investigaciones en Ciencias de la Tierra'),
(111628, 91308, 'en', 'name', 'Saint Lucia Bureau of Standards'),
(111629, 91309, 'en', 'name', 'NOAA National Marine Fisheries Service Alaska Fisheries Science Center'),
(111630, 91310, 'en', 'name', 'Engineering School of Information and Digital Technologies'),
(111631, 91310, 'fr', 'name', 'Ɖcole d''IngĆ©nieur GĆ©nĆ©raliste en Informatique et Technologies du NumĆ©rique'),
(111632, 91311, 'en', 'name', 'Hamilton Psychiatric Hospital'),
(111633, 91312, 'en', 'name', 'Moscow Open Social University'),
(111634, 91313, 'en', 'name', 'Parkside Hospital'),
(111635, 91314, 'en', 'name', 'Brazilian Biodiversity Fund'),
(111636, 91314, 'pt', 'name', 'Fundo Brasileiro para a Biodiversidade'),
(111637, 91315, 'en', 'name', 'ILS Research'),
(111638, 91316, 'en', 'name', 'Via Christi Regional Medical Center'),
(111639, 91317, 'en', 'name', 'Kyushu Rosai Hospital'),
(111640, 91317, 'ja', 'name', 'ä¹å·žåŠ“ē½ē—…é™¢'),
(111641, 91318, 'de', 'name', 'Ɩsterreichischer Verband für Elektrotechnik'),
(111642, 91318, 'en', 'name', 'Austrian Electrotechnical Association'),
(111643, 91319, 'de', 'name', 'Staatlichen Archive Bayerns'),
(111644, 91319, 'en', 'name', 'Bavarian State Archives'),
(111645, 91320, 'fr', 'name', 'Centre Hospitalier Universitaire de Bordeaux'),
(111646, 91321, 'en', 'name', 'National Institute of Forestry Science'),
(111647, 91321, 'ko', 'name', '국립산림과학원'),
(111648, 91322, 'en', 'name', 'Department of Primary Industries and Regions South Australia'),
(111649, 91323, 'en', 'name', 'Endeavour Foundation'),
(111650, 91324, 'no_lang_code', 'name', 'KJKP Sarajevogas (Bosnia-Herzegovina)'),
(111651, 91325, 'en', 'name', 'Rajamangala University of Technology Suvarnabhumi'),
(111652, 91325, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąø£ąø²ąøŠąø”ąø‡ąø„ąø„ąøŖąøøąø§ąø£ąø£ąø“ąø ąø¹ąø”ąø“'),
(111653, 91326, 'en', 'name', 'Bayfront Health'),
(111654, 91327, 'fy', 'name', 'Frysk Histoarysk en Letterkundich Sintrum'),
(111655, 91327, 'nl', 'name', 'Fries Historisch en Letterkundig Centrum, Tresoar'),
(111656, 91328, 'en', 'name', 'Aalborg Zoo'),
(111657, 91329, 'en', 'name', 'Ministry of Communications and Information'),
(111658, 91329, 'zh', 'name', 'ę–°åŠ å”é€šč®ÆåŠę–°é—»éƒØ'),
(111659, 91330, 'en', 'name', 'NOAA Space Weather Prediction Center'),
(111660, 91331, 'en', 'name', 'Theological University of Northern Italy'),
(111661, 91332, 'no_lang_code', 'name', 'Synthekine'),
(111662, 91333, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŲÆŁˆŁ„ŁŠ لدعم Ų§Ł„Ų­Ł‚ŁˆŁ‚ ŁˆŲ§Ł„Ų­Ų±ŁŠŲ§ŲŖ'),
(111663, 91333, 'en', 'name', 'The International Center for Supporting Rights and Freedoms'),
(111664, 91334, 'en', 'name', 'Urology Foundation'),
(111665, 91335, 'en', 'name', 'Center for International Forestry Research'),
(111666, 91336, 'en', 'name', 'Reinwardt Academie, Reinwardt Academy'),
(111667, 91337, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ŃŠŃ‚ по рибни Ń€ŠµŃŃƒŃ€ŃŠø, ИРР – Варна, към Делскостопанска ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ (ДДА)'),
(111668, 91337, 'en', 'name', 'Institute of Fish Resources - Varna (Agricultural Academy)'),
(111669, 91338, 'no_lang_code', 'name', 'ECI Telecom (United States)'),
(111670, 91339, 'en', 'name', 'Office of Research Infrastructure Programs'),
(111671, 91340, 'en', 'name', 'Government of Newfoundland and Labrador'),
(111672, 91341, 'en', 'name', 'Quttinirpaaq National Park'),
(111673, 91341, 'fr', 'name', 'Parc national Quttinirpaaq'),
(111674, 91342, 'ko', 'name', 'ķ•œėÆ¼ķ•™źµ'),
(111675, 91342, 'no_lang_code', 'name', 'Hanmin University'),
(111676, 91343, 'es', 'name', 'Universidad Peruana de Las AmƩricas'),
(111677, 91344, 'en', 'name', 'Ballarat Health Services'),
(111678, 91345, 'pl', 'name', 'Szpital Specjalistyczny im. F. Ceynowy'),
(111679, 91346, 'en', 'name', 'Ohio University'),
(111680, 91346, 'es', 'name', 'Universidad de Ohio'),
(111681, 91346, 'fr', 'name', 'UniversitƩ de l''ohio'),
(111682, 91347, 'en', 'name', 'University "Haxhi Zeka"'),
(111683, 91348, 'en', 'name', 'Chongqing Vocational and Technical University of Mechatronics'),
(111684, 91348, 'zh', 'name', 'é‡åŗ†ęœŗē”µčŒäøšęŠ€ęœÆå¤§å­¦'),
(111685, 91349, 'en', 'name', 'Iran University of Science and Technology'),
(111686, 91349, 'fa', 'name', 'دانؓگاه علم و صنعت Ų§ŪŒŲ±Ų§Ł†'),
(111687, 91350, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ±Ų© Ų³Ł…ŁŠŲ© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(111688, 91350, 'en', 'name', 'Princess Sumaya University for Technology'),
(111689, 91351, 'no_lang_code', 'name', 'C-Link Micro Imaging'),
(111690, 91352, 'en', 'name', 'Cyprus Science University'),
(111691, 91352, 'tr', 'name', 'Kıbrıs İlim Üniversitesi'),
(111692, 91353, 'sv', 'name', 'Wienerbageriet'),
(111693, 91354, 'pt', 'name', 'Centro UniversitÔrio Católica de Santa Catarina'),
(111694, 91355, 'no_lang_code', 'name', 'SK holdings (South Korea)'),
(111695, 91356, 'es', 'name', 'Universidad Estatal PenĆ­nsula de Santa Elena'),
(111696, 91357, 'de', 'name', 'Technische Hochschule Würzburg-Schweinfurt'),
(111697, 91357, 'en', 'name', 'Technical University of Applied Sciences Würzburg-Schweinfurt'),
(111698, 91358, 'en', 'name', 'Mount Zion College of Engineering and Technology'),
(111699, 91358, 'ta', 'name', 'ą®®ą®µąÆą®£ąÆą®ŸąÆ ą®šą®æą®ÆąÆ‹ą®©ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(111700, 91359, 'en', 'name', 'Showa University Karasuyama Hospital'),
(111701, 91359, 'ja', 'name', 'ę˜­å’Œå¤§å­¦é™„å±žēƒå±±ē—…é™¢'),
(111702, 91360, 'de', 'name', 'PƤdagogisches Landesinstitut Rheinland-Pfalz'),
(111703, 91361, 'es', 'name', 'Universidad Continental Justo Sierra'),
(111704, 91362, 'es', 'name', 'Centro de Estudios Universitarios Adolfo López Mateos'),
(111705, 91363, 'en', 'name', 'Ducks Unlimited'),
(111706, 91364, 'bs', 'name', 'Transkulturna psihosocijalna obrazovna fondacija'),
(111707, 91364, 'en', 'name', 'Transcultural Psychosocial Educational Foundation'),
(111708, 91365, 'en', 'name', 'Indian Institute of Technology BHU, ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø(का.हि.वि.),ą¤µą¤¾ą¤°ą¤¾ą¤£ą¤øą„€'),
(111709, 91366, 'de', 'name', 'Arbeitsgemeinschaft GynƤkologische Onkologie Studiengruppe'),
(111710, 91367, 'no_lang_code', 'name', 'Sol-Tech'),
(111711, 91368, 'de', 'name', 'Zentrum für Datenverarbeitung'),
(111712, 91369, 'en', 'name', 'University of Fukui Hospital'),
(111713, 91369, 'ja', 'name', 'ē¦äŗ•å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(111714, 91370, 'en', 'name', 'World Agroforestry Centre'),
(111715, 91371, 'no_lang_code', 'name', 'Apigenex (Czechia)'),
(111716, 91372, 'en', 'name', 'Fujita Health University Bantane Hospital'),
(111717, 91372, 'ja', 'name', 'č—¤ē”°åŒ»ē§‘å¤§å­¦ć°ć‚“ćŸć­ē—…é™¢'),
(111718, 91373, 'es', 'name', 'Centro Científico Tecnológico - Nordeste'),
(111719, 91374, 'en', 'name', 'Wollo University'),
(111720, 91375, 'en', 'name', 'Indian Institute of Information Technology Design and Manufacturing, Kurnool'),
(111721, 91375, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€, ą¤…ą¤­ą¤æą¤•ą¤²ą„ą¤Ŗą¤Øą¤¾ ą¤ą¤µą¤‚ ą¤µą¤æą¤Øą¤æą¤°ą„ą¤®ą¤¾ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą¤°ą„ą¤Øą„‚ą¤²'),
(111722, 91375, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°‡ą°Øą±ą°«ą°°ą±ą°®ą±‡ą°·ą°Øą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€, ą°”ą°æą°œą±ˆą°Øą± ą°…ą°‚ą°”ą± ą°®ą°¾ą°Øą±ą°Æą±ą°«ą±ą°Æą°¾ą°•ą±ą°šą°°ą°æą°‚ą°—ą±, ą°•ą°°ą±ą°Øą±‚ą°²ą±'),
(111723, 91376, 'fr', 'name', 'Laboratoire de Physique Subatomique et des Technologies AssociƩes'),
(111724, 91377, 'en', 'name', 'Scottish Environment Protection Agency'),
(111725, 91377, 'gd', 'name', 'Buidheann DƬon ƀrainneachd na h-Alba'),
(111726, 91378, 'en', 'name', 'Food Process Engineering and Microbiology'),
(111727, 91378, 'fr', 'name', 'GƩnie et Microbiologie des ProcƩdƩs Alimentaires'),
(111728, 91379, 'no_lang_code', 'name', 'ABS Materials (United States)'),
(111729, 91380, 'fr', 'name', 'Laboratoire SpƩcification et VƩrification'),
(111730, 91381, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© قفصة'),
(111731, 91381, 'en', 'name', 'University of Gafsa'),
(111732, 91381, 'fr', 'name', 'UniversitƩ de gafsa'),
(111733, 91382, 'ja', 'name', 'äø‰å³¶ęµ·é›²čØ˜åæµč²”å›£ćƒ›'),
(111734, 91382, 'no_lang_code', 'name', 'Mishima Kaiun Memorial Foundation'),
(111735, 91383, 'en', 'name', 'Vermont Center for the Book'),
(111736, 91384, 'en', 'name', 'Polish Grid Infrastructure'),
(111737, 91385, 'es', 'name', 'Instituto de Investigaciones BiomƩdicas en Retrovirus y Sida'),
(111738, 91386, 'en', 'name', 'Institute of Cancer Research'),
(111739, 91386, 'fr', 'name', 'Institut de CancƩrologie de l''Ouest'),
(111740, 91387, 'no_lang_code', 'name', 'CapeBio (South Africa)'),
(111741, 91388, 'en', 'name', 'University Grants Commission Nepal'),
(111742, 91389, 'en', 'name', 'Saint Petersburg Mining University'),
(111743, 91389, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ горный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(111744, 91390, 'es', 'name', 'Organismo Autónomo Parques Nacionales'),
(111745, 91391, 'en', 'name', 'Kaunas University of Technology'),
(111746, 91391, 'lt', 'name', 'Kauno technologijos universitetas'),
(111747, 91391, 'pl', 'name', 'Uniwersytet Techniczny w Kownie'),
(111748, 91391, 'ru', 'name', 'Каунасский технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111749, 91392, 'en', 'name', 'Republic of China Naval Academy'),
(111750, 91392, 'zh', 'name', 'äø­čÆę°‘åœ‹ęµ·č»č»å®˜å­øę ”'),
(111751, 91393, 'en', 'name', 'Hasso Plattner Foundation'),
(111752, 91394, 'en', 'name', 'Netherlands Heart Institute'),
(111753, 91394, 'nl', 'name', 'Interuniversitair Cardiologisch Instituut Nederland'),
(111754, 91395, 'en', 'name', 'fRI Research'),
(111755, 91396, 'id', 'name', 'Universitas Tri Tunggal'),
(111756, 91397, 'en', 'name', 'National Microscopy Infrastructure'),
(111757, 91398, 'no_lang_code', 'name', 'CodeX Discovery (Ireland)'),
(111758, 91399, 'en', 'name', 'SINTEF Manufacturing'),
(111759, 91400, 'en', 'name', 'Daugavpils University'),
(111760, 91400, 'lt', 'name', 'Daugpilio universitetas'),
(111761, 91400, 'lv', 'name', 'Daugavpils Universitāte'),
(111762, 91400, 'ru', 'name', 'Š”Š°ŃƒŠ³Š°Š²ŠæŠøŠ»ŃŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111763, 91401, 'cs', 'name', 'Hlavnƭ město Praha'),
(111764, 91401, 'en', 'name', 'City of Prague'),
(111765, 91402, 'en', 'name', 'University of Alaska System'),
(111766, 91402, 'es', 'name', 'Sistema de la Universidad de Alaska'),
(111767, 91403, 'en', 'name', 'Health and Family Planning Commission of Hunan Province'),
(111768, 91403, 'zh', 'name', 'ę¹–å—å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(111769, 91404, 'en', 'name', 'Institute of Chinese Literature and Philosophy, Academia Sinica'),
(111770, 91404, 'zh', 'name', 'äø­å¤®ē ”ē©¶é™¢äø­åœ‹ę–‡å“²ē ”ē©¶ę‰€'),
(111771, 91405, 'en', 'name', 'Nemours Children''s Health System'),
(111772, 91406, 'fr', 'name', 'Dauphine Recherches en Management'),
(111773, 91407, 'es', 'name', 'Fundación Tatiana Pérez de GuzmÔn el Bueno'),
(111774, 91408, 'en', 'name', 'International Charter School'),
(111775, 91409, 'en', 'name', 'Panamerican University'),
(111776, 91409, 'es', 'name', 'Universidad Panamericana'),
(111777, 91410, 'en', 'name', 'Mabalacat City College'),
(111778, 91411, 'no_lang_code', 'name', 'Adidas (Germany)'),
(111779, 91412, 'es', 'name', 'Laboratorio Nacional de Materiales y Modelos Estructurales'),
(111780, 91413, 'en', 'name', 'Native Forward Scholars Fund'),
(111781, 91414, 'no_lang_code', 'name', 'MathWorks (United States)'),
(111782, 91415, 'no_lang_code', 'name', 'Sikorsky Aircraft Corporation (United States)'),
(111783, 91416, 'en', 'name', 'United States Department of Agriculture'),
(111784, 91416, 'es', 'name', 'Departamento de Agricultura de los Estados Unidos'),
(111785, 91416, 'fr', 'name', 'DĆ©partement de l''Agriculture des Ɖtats-Unis'),
(111786, 91417, 'en', 'name', 'Idaho Academy of Science'),
(111787, 91418, 'de', 'name', 'Leibniz-Institut für Gewässerökologie und Binnenfischerei'),
(111788, 91418, 'en', 'name', 'Leibniz Institute of Freshwater Ecology and Inland Fisheries'),
(111789, 91419, 'no_lang_code', 'name', 'OM Group (Canada)'),
(111790, 91420, 'en', 'name', 'Amir Oncology Hospital'),
(111791, 91420, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¢Ł…ŁˆŲ²Ų“ŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų¢Ł†Ś©ŁˆŁ„ŁˆŚ˜ŪŒ Ų§Ł…ŪŒŲ±'),
(111792, 91421, 'de', 'name', 'Fraunhofer-Institut für Arbeitswirtschaft und Organisation IAO'),
(111793, 91421, 'en', 'name', 'Fraunhofer Institute for Industrial Engineering'),
(111794, 91422, 'pt', 'name', 'Centro UniversitƔrio Luterano de Palmas'),
(111795, 91423, 'no_lang_code', 'name', 'Biotec (United Kingdom)'),
(111796, 91424, 'en', 'name', 'National Metrology Institute of Ethiopia'),
(111797, 91425, 'cs', 'name', 'Fairtrade Česko a Slovensko'),
(111798, 91425, 'en', 'name', 'Fairtrade Czech Republic & Slovakia'),
(111799, 91426, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ© ŁˆŲ§Ł„Ų±ŁŠŲ§Ų¶ŁŠŲ§ŲŖ ŲØŲ§Ł„Ł…Ł†Ų³ŲŖŁŠŲ±'),
(111800, 91426, 'fr', 'name', 'Institut SupƩrieur d''Informatique et de MathƩmatiques de Monastir'),
(111801, 91427, 'en', 'name', 'Nara University of Education'),
(111802, 91427, 'ja', 'name', 'å„ˆč‰Æę•™č‚²å¤§å­¦'),
(111803, 91428, 'no_lang_code', 'name', 'S21sec (Spain)'),
(111804, 91429, 'en', 'name', 'Bonanza Creek Long Term Ecological Research'),
(111805, 91430, 'en', 'name', 'Pan American Health Organization (Cuba)'),
(111806, 91430, 'es', 'name', 'Organización Panamericana de la Salud (Cuba)'),
(111807, 91431, 'en', 'name', 'Ministry of Education'),
(111808, 91431, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ źµģœ”ė¶€'),
(111809, 91432, 'en', 'name', 'Royal Thai Army'),
(111810, 91432, 'th', 'name', 'ąøąø­ąø‡ąø—ąø±ąøžąøšąøą¹„ąø—ąø¢'),
(111811, 91433, 'en', 'name', 'Seerave Foundation'),
(111812, 91434, 'en', 'name', 'NASA Shared Services Center'),
(111813, 91435, 'en', 'name', 'Central European Institute of Technology'),
(111814, 91436, 'es', 'name', 'Universidad del Valle de Matatipac'),
(111815, 91437, 'id', 'name', 'Universitas Indo Global Mandiri'),
(111816, 91438, 'bs', 'name', 'Institut za vode doo Bijeljina'),
(111817, 91439, 'en', 'name', 'J.W. & H.M. Goodman Foundation'),
(111818, 91440, 'en', 'name', 'Fred Hollows Foundation'),
(111819, 91441, 'en', 'name', 'University of Toledo'),
(111820, 91441, 'fr', 'name', 'UniversitƩ de toledo'),
(111821, 91442, 'en', 'name', 'NOAA National Marine Fisheries Service Southeast Regional Office'),
(111822, 91443, 'fr', 'name', 'ISblue'),
(111823, 91444, 'en', 'name', 'Shiga Medical Center for Adults'),
(111824, 91444, 'ja', 'name', 'ę»‹č³€ēœŒē«‹ęˆäŗŗē—…ć‚»ćƒ³ć‚æćƒ¼'),
(111825, 91445, 'en', 'name', 'Sirindhorn College of Public Health'),
(111826, 91446, 'fr', 'name', 'Institut Universitaire International Luxembourg'),
(111827, 91447, 'en', 'name', 'Integrated Cardio Metabolic Centre'),
(111828, 91448, 'en', 'name', 'Banner Wyoming Medical Center'),
(111829, 91449, 'es', 'name', 'Hospital General de MƩxico'),
(111830, 91450, 'sv', 'name', 'VƤrnamo Sjukhus'),
(111831, 91451, 'en', 'name', 'American University of Cyprus'),
(111832, 91451, 'tr', 'name', 'Kıbrıs Amerikan Üniversitesi'),
(111833, 91452, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الرفاق'),
(111834, 91452, 'en', 'name', 'Alrefak University'),
(111835, 91453, 'en', 'name', 'Foundation for the Development of Ophthalmology'),
(111836, 91453, 'pl', 'name', 'Fundacja Wspierania Rozwoju Okulistyki "Okulistyka 21"'),
(111837, 91454, 'es', 'name', 'Instituto de FĆ­sica La Plata'),
(111838, 91455, 'en', 'name', 'University of Szeged'),
(111839, 91455, 'hu', 'name', 'Szegedi TudomƔnyegyetem'),
(111840, 91456, 'de', 'name', 'Historische Kommission zu Berlin e.V.'),
(111841, 91457, 'de', 'name', 'Deutsche Gesellschaft für Gefäßchirurgie und Gefäßmedizin'),
(111842, 91458, 'en', 'name', 'Turkish Air Force Academy'),
(111843, 91458, 'tr', 'name', 'Hava Harp Okulu'),
(111844, 91459, 'en', 'name', 'Reichman University'),
(111845, 91459, 'he', 'name', '××•× ×™×‘×Ø×”×™×˜×Ŗ ×Ø×™×™×›×ž×Ÿ'),
(111846, 91460, 'en', 'name', 'Mandela Institute for Development Studies'),
(111847, 91461, 'en', 'name', 'Talas State University'),
(111848, 91461, 'ky', 'name', 'Талас ŠœŠ°Š¼Š»ŠµŠŗŠµŃ‚Ń‚ŠøŠŗ Университети'),
(111849, 91462, 'en', 'name', 'Directory of Open Access Books'),
(111850, 91463, 'cs', 'name', 'VysokÔ Ŕkola HotelovÔ v Praze'),
(111851, 91463, 'en', 'name', 'Institute of Hospitality Management in Prague'),
(111852, 91464, 'en', 'name', 'Sorsogon State University'),
(111853, 91465, 'fr', 'name', 'UniversitƩ de Notre-Dame du Kasai'),
(111854, 91466, 'en', 'name', 'National Synchrotron Light Source II'),
(111855, 91467, 'tr', 'name', 'Bilim Akademisi'),
(111856, 91468, 'en', 'name', 'NOAA Weather Program Office'),
(111857, 91469, 'it', 'name', 'Libera UniversitĆ  Internazionale degli Studi Sociali Guido Carli'),
(111858, 91470, 'en', 'name', 'Directorate-General for Employment, Social Affairs and Inclusion'),
(111859, 91471, 'en', 'name', 'Korea Institute of Machinery and Materials'),
(111860, 91472, 'fr', 'name', 'Institut d''Histoire de la RƩvolution franƧaise'),
(111861, 91473, 'en', 'name', 'Royal Swedish Academy of Agriculture and Forestry'),
(111862, 91473, 'sv', 'name', 'Kungl. Skogs- och Lantbruksakademien'),
(111863, 91474, 'en', 'name', 'The First Affiliated Hospital of Guangxi University of Traditional Chinese Medicine'),
(111864, 91474, 'zh', 'name', 'å¹æč„æäø­åŒ»čÆå¤§å­¦ē¬¬äø€é™„å±žåŒ»é™¢'),
(111865, 91475, 'id', 'name', 'Sekolah Tinggi Agama Islam Ma''had Ali Cirebon'),
(111866, 91476, 'en', 'name', 'A G Leventis Foundation'),
(111867, 91477, 'es', 'name', 'Centro Científico Tecnólogico - Rosario'),
(111868, 91478, 'en', 'name', 'Healthcare Research Unit'),
(111869, 91478, 'es', 'name', 'Unidad de Investigación en cuidados y servicios de salud (Investén-isciii)'),
(111870, 91479, 'no_lang_code', 'name', 'Precision Castparts (United Kingdom)'),
(111871, 91480, 'pt', 'name', 'Fundação Amparo e Desenvolvimento da Pesquisa'),
(111872, 91481, 'en', 'name', 'AndrƩs Bello University'),
(111873, 91481, 'es', 'name', 'Universidad AndrƩs Bello'),
(111874, 91482, 'en', 'name', 'California Water Science Center'),
(111875, 91483, 'en', 'name', 'Glacier National Park'),
(111876, 91483, 'fr', 'name', 'Parc national des Glaciers'),
(111877, 91484, 'es', 'name', 'Ministerio de Educación Superior, Ciencia y Tecnología'),
(111878, 91485, 'en', 'name', 'Venezuelan Adventist University'),
(111879, 91486, 'no_lang_code', 'name', 'NASA Astrobiology Institute'),
(111880, 91487, 'en', 'name', 'International Society of Nephrology'),
(111881, 91488, 'es', 'name', 'Hospital Universitario Miguel Servet'),
(111882, 91489, 'en', 'name', 'Ilam University'),
(111883, 91490, 'en', 'name', 'Ministry of Defence'),
(111884, 91490, 'no', 'name', 'Det kgl. Forsvarsdepartement'),
(111885, 91491, 'no_lang_code', 'name', 'Rhodia (France)'),
(111886, 91492, 'pt', 'name', 'Fundação SOS Mata Atlântica, SOS Mata Atlântica Foundation'),
(111887, 91493, 'no_lang_code', 'name', 'Laboratori Guglielmo Marconi (Italy)'),
(111888, 91494, 'no_lang_code', 'name', 'McGraw Hill Financial (United States)'),
(111889, 91495, 'en', 'name', 'The Stanton Foundation'),
(111890, 91496, 'en', 'name', 'ESCP Business School'),
(111891, 91497, 'no_lang_code', 'name', 'Empresa de Manutenção de Equipamento FerroviÔrio (Portugal)'),
(111892, 91498, 'es', 'name', 'SubsecretarĆ­a de Control y Aplicaciones Nucleares'),
(111893, 91499, 'en', 'name', 'Computer Science Laboratory for Mechanics and Engineering Sciences'),
(111894, 91499, 'fr', 'name', 'Laboratoire d''Informatique pour la MƩcanique et les Sciences de l''IngƩnieur'),
(111895, 91500, 'fr', 'name', 'Fondation des Sciences du Patrimoine'),
(111896, 91501, 'en', 'name', 'Asian University'),
(111897, 91502, 'en', 'name', 'National Security Research Institute'),
(111898, 91502, 'ko', 'name', 'źµ­ź°€ė³“ģ•ˆźø°ģˆ ģ—°źµ¬ģ†Œ'),
(111899, 91503, 'en', 'name', 'Thiagarajar College of Engineering'),
(111900, 91504, 'en', 'name', 'Gwaii Haanas National Park Reserve and Haida Heritage Site'),
(111901, 91504, 'fr', 'name', 'Réserve de parc national et site du patrimoine haïda Gwaii Haanas'),
(111902, 91505, 'en', 'name', 'Trans-European Research and Education Networking Association'),
(111903, 91506, 'en', 'name', 'University of New Hampshire'),
(111904, 91506, 'fr', 'name', 'UniversitƩ du New Hampshire'),
(111905, 91507, 'en', 'name', 'Institute of Water Problems'),
(111906, 91507, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГных проблем Š ŠŠ'),
(111907, 91508, 'en', 'name', 'Agricultural Economics Nonprofit Kft.'),
(111908, 91508, 'hu', 'name', 'AgrƔrkƶzgazdasƔgi IntƩzet'),
(111909, 91509, 'en', 'name', 'Jiangsu Provincial Commission of Health and Family Planning'),
(111910, 91510, 'en', 'name', 'University of the Philippines Manila'),
(111911, 91511, 'de', 'name', 'Deutsche Forschungsanstalt für Lebensmittelchemie, Leibniz Institut'),
(111912, 91511, 'en', 'name', 'German Research Centre for Food Chemistry'),
(111913, 91512, 'fr', 'name', 'Laboratoire de Chimie de Coordination'),
(111914, 91513, 'en', 'name', 'Pennsylvania Elks Home Service Program'),
(111915, 91514, 'en', 'name', 'Hanoi University of Mining and Geology'),
(111916, 91514, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Mį» - Địa chįŗ„t'),
(111917, 91515, 'no_lang_code', 'name', 'RUAG (Switzerland)'),
(111918, 91516, 'en', 'name', 'Ashley IB Elementary Magnet School'),
(111919, 91517, 'es', 'name', 'Universidad Eugenio MarĆ­a de Hostos'),
(111920, 91518, 'en', 'name', 'New Mexico Economic Development Department'),
(111921, 91519, 'no_lang_code', 'name', 'Herff Jones (United States)'),
(111922, 91520, 'no_lang_code', 'name', 'NanoPattern Technologies (United States)'),
(111923, 91521, 'en', 'name', 'European Association for the Study of the Liver'),
(111924, 91522, 'no_lang_code', 'name', 'Poltava State Agrarian University'),
(111925, 91522, 'uk', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Гержавний аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(111926, 91523, 'en', 'name', 'National Space Science and Technology Center'),
(111927, 91524, 'de', 'name', 'Arnold-Bergstraesser-Institut'),
(111928, 91525, 'en', 'name', 'Department of Education of Guangdong Province'),
(111929, 91526, 'no_lang_code', 'name', 'Dragonfly Therapeutics (United States)'),
(111930, 91527, 'fr', 'name', 'Laboratoire Quartz'),
(111931, 91528, 'en', 'name', 'Child Neurology Associates'),
(111932, 91529, 'en', 'name', 'Australian Radiation Protection and Nuclear Safety Agency'),
(111933, 91530, 'en', 'name', 'European Institute for Health Records'),
(111934, 91531, 'el', 'name', 'ĪŸĻĪ³Ī±Ī½Ī¹ĻƒĪ¼ĻŒĻ‚ για τη Ī”Ī¹Ī±Ļ‡ĪµĪÆĻĪ¹ĻƒĪ· και Ī”Ī¹Ī±Ļ„Ī®ĻĪ·ĻƒĪ· της Ī’Ī¹ĪæĻ€ĪæĪ¹ĪŗĪ¹Ī»ĻŒĻ„Ī·Ļ„Ī±Ļ‚ ĻƒĻ„Ī± Αγροτικά ĪŸĪ¹ĪŗĪæĻƒĻ…ĻƒĻ„Ī®Ī¼Ī±Ļ„Ī± «Τ΄ΤΩ»'),
(111935, 91531, 'en', 'name', 'TYTO - Association for the Management and Conservation of Biodiversity in Agricultural Ecosystems'),
(111936, 91532, 'en', 'name', 'Providence Park Hospital'),
(111937, 91533, 'cy', 'name', 'Prifysgol Cymru'),
(111938, 91533, 'en', 'name', 'University of Wales'),
(111939, 91534, 'ja', 'name', 'ę±äŗ¬é›»åŠ›ę Ŗå¼ä¼šē¤¾'),
(111940, 91534, 'no_lang_code', 'name', 'TEPCO (Japan)'),
(111941, 91535, 'fr', 'name', 'HƓpital RenƩe Sabran'),
(111942, 91536, 'fr', 'name', 'Laboratoire d''Etude et de Recherche sur le MatƩriau Bois'),
(111943, 91537, 'en', 'name', 'California University of Pennsylvania'),
(111944, 91538, 'en', 'name', 'Olympic Coast Discovery Center'),
(111945, 91539, 'en', 'name', 'International Food Policy Research Institute'),
(111946, 91540, 'en', 'name', 'Parkwood Hospital'),
(111947, 91541, 'en', 'name', 'National Science and Technology Center for Disaster Reduction'),
(111948, 91541, 'zh', 'name', 'åœ‹å®¶ē½å®³é˜²ę•‘ē§‘ęŠ€äø­åæƒ'),
(111949, 91542, 'ja', 'name', 'ę—„ęœ¬ć‚¤ćƒ¼ćƒ©ć‚¤ćƒŖćƒŖćƒ¼ę Ŗå¼ä¼šē¤¾'),
(111950, 91542, 'no_lang_code', 'name', 'Eli Lilly (Japan)'),
(111951, 91543, 'en', 'name', 'Financial Services Commission'),
(111952, 91543, 'ko', 'name', 'źøˆģœµģœ„ģ›ķšŒ'),
(111953, 91544, 'no_lang_code', 'name', 'ExOne (United States)'),
(111954, 91545, 'en', 'name', 'Queensland Climate Change Centre of Excellence'),
(111955, 91546, 'cs', 'name', 'Nadačnƭ fond Neuron'),
(111956, 91546, 'en', 'name', 'Neuron Endowment Fund'),
(111957, 91547, 'en', 'name', 'Environmental System Science Data Infrastructure for a Virtual Ecosystem'),
(111958, 91548, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الزنتان'),
(111959, 91548, 'no_lang_code', 'name', 'Zintan University'),
(111960, 91549, 'es', 'name', 'Centro de Investigación y Desarrollo de medicamentos'),
(111961, 91550, 'sv', 'name', 'P. O. Zetterlings stiftelse'),
(111962, 91551, 'en', 'name', 'Dayton School District'),
(111963, 91552, 'no_lang_code', 'name', 'Luceat (Italy)'),
(111964, 91553, 'es', 'name', 'Vidarium - Centro de Investigación en Nutrición Salud y Bienestar'),
(111965, 91554, 'fr', 'name', 'CommunautƩ urbaine de Strasbourg, EuromƩtropole de Strasbourg'),
(111966, 91555, 'en', 'name', 'ISIS Neutron and Muon Source'),
(111967, 91556, 'en', 'name', 'Ontario Centre of Innovation'),
(111968, 91557, 'es', 'name', 'Academia Nacional de Ciencias Exactas FĆ­sicas y Naturales'),
(111969, 91558, 'en', 'name', 'Xi''an Technological University'),
(111970, 91558, 'zh', 'name', 'č„æå®‰å·„äøšå¤§å­¦'),
(111971, 91559, 'en', 'name', 'Uttar Pradesh Rajarshi Tandon Open University'),
(111972, 91559, 'hi', 'name', 'ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ ą¤°ą¤¾ą¤œą¤°ą„ą¤·ą¤æ ą¤Ÿą¤‚ą¤”ą¤Ø ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(111973, 91560, 'en', 'name', 'Cancer Institute (WIA)'),
(111974, 91561, 'fr', 'name', 'CHU de Limoges, Centre Hospitalier Universitaire de Limoges'),
(111975, 91562, 'de', 'name', 'Internationale Innovative Ophthalmochirurgie'),
(111976, 91563, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Donau MDK'),
(111977, 91564, 'no_lang_code', 'name', 'StromaLab'),
(111978, 91565, 'es', 'name', 'Estación Experimental de Pastos y Forrajes Indio Hatuey'),
(111979, 91566, 'en', 'name', 'Rainforest Trust'),
(111980, 91567, 'en', 'name', 'Department of the Environment, Climate and Communications'),
(111981, 91567, 'ga', 'name', 'An Roinn Comhshaoil, AerƔide agus CumarsƔide'),
(111982, 91568, 'en', 'name', 'Italian Medicines Agency'),
(111983, 91568, 'it', 'name', 'Agenzia Italiana del Farmaco');
INSERT INTO `ror_settings` VALUES
(111984, 91569, 'en', 'name', 'John H. Tietze Foundation Trust'),
(111985, 91570, 'da', 'name', 'Veterancentret'),
(111986, 91570, 'en', 'name', 'The Danish Veteran Centre'),
(111987, 91571, 'no_lang_code', 'name', 'Hstar Technologies Corporation (United States)'),
(111988, 91572, 'fr', 'name', 'Centre National de la Recherche Scientifique et Technologique'),
(111989, 91573, 'no_lang_code', 'name', 'Best Biotech'),
(111990, 91574, 'en', 'name', 'Royal Bournemouth Hospital'),
(111991, 91575, 'pl', 'name', 'Szpital św. Wincentego a Paulo'),
(111992, 91576, 'en', 'name', 'Eunice Kennedy Shriver Center'),
(111993, 91577, 'en', 'name', 'Erasmus+'),
(111994, 91578, 'en', 'name', 'Office of the Director of National Intelligence'),
(111995, 91579, 'en', 'name', 'Hortgro Science'),
(111996, 91580, 'en', 'name', 'Straub Medical Center'),
(111997, 91581, 'de', 'name', 'Fachhochschule Dresden'),
(111998, 91582, 'de', 'name', 'Deutscher Ethikrat'),
(111999, 91583, 'en', 'name', 'University of California - San Diego School of Medicine'),
(112000, 91584, 'en', 'name', 'Hans Hoheisen Charitable Trust'),
(112001, 91585, 'es', 'name', 'Fundacion Allende'),
(112002, 91586, 'en', 'name', 'Reference Center for Research, Development and Innovation in ATM'),
(112003, 91586, 'es', 'name', 'Centro de Referencia de Investigación, Desarrollo e Innovación ATM'),
(112004, 91587, 'hu', 'name', 'Mathias Corvinus Collegium'),
(112005, 91588, 'en', 'name', 'Research Institute of Technical Glass'),
(112006, 91588, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ технического стекла'),
(112007, 91589, 'de', 'name', 'Heinrich Bƶll Stiftung'),
(112008, 91590, 'en', 'name', 'America Nepal Medical Foundation'),
(112009, 91591, 'en', 'name', 'Eastern Savings Bank'),
(112010, 91592, 'en', 'name', 'Environmental and Occupational Health Sciences Institute'),
(112011, 91593, 'en', 'name', 'The Institute for Education Research'),
(112012, 91594, 'no_lang_code', 'name', 'Ningxia Road and Bridge Construction Company'),
(112013, 91594, 'zh', 'name', 'å®å¤č·Æę”„å»ŗč®¾ęœ‰é™å…¬åø'),
(112014, 91595, 'de', 'name', 'Kriminologische Zentralstelle'),
(112015, 91596, 'no_lang_code', 'name', 'Seagen (United States)'),
(112016, 91597, 'af', 'name', 'Davies Diagnostiek'),
(112017, 91597, 'no_lang_code', 'name', 'Davies Diagnostics (South Africa)'),
(112018, 91598, 'en', 'name', 'University John of the Cross'),
(112019, 91599, 'fr', 'name', 'Laboratoire de Physique ThƩorique'),
(112020, 91600, 'en', 'name', 'Oregon Space Grant Consortium'),
(112021, 91601, 'es', 'name', 'Hospital Universitario MarquƩs de Valdecilla, MarquƩs de Valdecilla University Hospital'),
(112022, 91602, 'en', 'name', 'New England Baptist Hospital'),
(112023, 91603, 'en', 'name', 'Faculty of Mechanical Engineering - University in Nis'),
(112024, 91603, 'sr', 'name', 'Masinski Fakultet - Univerziteta U Nisu'),
(112025, 91604, 'no_lang_code', 'name', 'Samsung (United Kingdom)'),
(112026, 91605, 'en', 'name', 'Trinidad and Tobago Bureau of Standards'),
(112027, 91606, 'en', 'name', 'Trinity Health Michigan'),
(112028, 91607, 'en', 'name', 'Ngee Ann Polytechnic'),
(112029, 91607, 'zh', 'name', '義安理巄學院'),
(112030, 91608, 'fr', 'name', 'Cecos, FƩdƩration FranƧaise des CECOS'),
(112031, 91609, 'en', 'name', 'Bangladesh University of Health Sciences'),
(112032, 91610, 'en', 'name', 'Hara University'),
(112033, 91611, 'de', 'name', 'Bundeswehrkrankenhaus'),
(112034, 91611, 'en', 'name', 'Bundeswehr Hospital'),
(112035, 91612, 'en', 'name', 'Myeloma UK'),
(112036, 91613, 'en', 'name', 'Congo Research Papers'),
(112037, 91614, 'en', 'name', 'Shirayuri Women''s University'),
(112038, 91615, 'en', 'name', 'Shanghai Technical Institute of Electronics & Information'),
(112039, 91615, 'zh', 'name', 'äøŠęµ·ē”µå­äæ”ęÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(112040, 91616, 'en', 'name', 'Shanghai Xuhui Central Hospital'),
(112041, 91616, 'zh', 'name', 'äøŠęµ·å¾ę±‡äø­åæƒåŒ»é™¢'),
(112042, 91617, 'en', 'name', 'University of Brawijaya'),
(112043, 91617, 'id', 'name', 'Universitas Brawijaya'),
(112044, 91618, 'es', 'name', 'Centro Universitario Haller'),
(112045, 91619, 'en', 'name', 'Muroc Army Air Base'),
(112046, 91620, 'da', 'name', 'Dansk Fundamental Metrologi'),
(112047, 91620, 'en', 'name', 'Danish National Metrology Institute'),
(112048, 91621, 'en', 'name', 'American Malting Barley Association'),
(112049, 91622, 'en', 'name', 'Consortium For Ocean Leadership'),
(112050, 91623, 'en', 'name', 'Ministry of Science and ICT'),
(112051, 91623, 'ko', 'name', 'ź³¼ķ•™źø°ģˆ ģ •ė³“ķ†µģ‹ ė¶€'),
(112052, 91624, 'en', 'name', 'European Huntington''s Disease Network'),
(112053, 91625, 'en', 'name', 'University of Hawaiʻi at Mānoa'),
(112054, 91625, 'fr', 'name', 'Université d''hawaï à mānoa'),
(112055, 91626, 'en', 'name', 'Hult International Business School'),
(112056, 91627, 'de', 'name', 'FƖD Inneres'),
(112057, 91627, 'en', 'name', 'Ministry of the Interior'),
(112058, 91627, 'fr', 'name', 'SPF IntƩrieur, Service Public FƩdƩral IntƩrieur'),
(112059, 91627, 'nl', 'name', 'FOD Binnenlandse Zaken'),
(112060, 91628, 'en', 'name', 'Nancy Yeary Women''s Cancer Research Foundation'),
(112061, 91629, 'en', 'name', 'Aichi University of Technology'),
(112062, 91629, 'ja', 'name', 'ę„›ēŸ„å·„ē§‘å¤§å­¦'),
(112063, 91630, 'no_lang_code', 'name', 'Voxtel (United States)'),
(112064, 91631, 'en', 'name', 'The Women in Medicine Legacy Foundation'),
(112065, 91632, 'en', 'name', 'Southern Middle School'),
(112066, 91633, 'en', 'name', 'National Institute of Research and Physico and Chemical Analysis'),
(112067, 91633, 'fr', 'name', 'Institut National de Recherches et d''Analyses Physico-chimiques'),
(112068, 91634, 'no_lang_code', 'name', 'Vivendi (France)'),
(112069, 91635, 'de', 'name', 'Zentrum für Geoinformationswesen der Bundeswehr'),
(112070, 91636, 'en', 'name', 'Local Government Training Institute'),
(112071, 91637, 'en', 'name', 'Bovey Tracey Hospital'),
(112072, 91638, 'en', 'name', 'Prague City University'),
(112073, 91639, 'en', 'name', 'United States Coast and Geodetic Survey'),
(112074, 91640, 'en', 'name', 'Advanced Digital Sciences Center'),
(112075, 91641, 'no_lang_code', 'name', 'ExxonMobil (United States)'),
(112076, 91642, 'en', 'name', 'Ministry of Justice'),
(112077, 91643, 'en', 'name', 'Almaty Technological University'),
(112078, 91643, 'kk', 'name', 'Алматы Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃŠ»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(112079, 91644, 'hr', 'name', 'Naklada Slap'),
(112080, 91645, 'en', 'name', 'Xing Wei College'),
(112081, 91645, 'zh', 'name', 'äøŠęµ·å…“ä¼Ÿå­¦é™¢'),
(112082, 91646, 'en', 'name', 'Beijing Municipal Government'),
(112083, 91646, 'zh', 'name', 'åŒ—äŗ¬åø‚ę”æåŗœ'),
(112084, 91647, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(112085, 91647, 'en', 'name', 'National Research Foundation'),
(112086, 91648, 'en', 'name', 'Vilentum University of applied sciences'),
(112087, 91649, 'en', 'name', 'United States Securities and Exchange Commission'),
(112088, 91650, 'no_lang_code', 'name', 'Xenocs (France)'),
(112089, 91651, 'ja', 'name', 'ć‚¢ć‚øćƒ¬ćƒ³ćƒˆćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ę Ŗå¼ä¼šē¤¾'),
(112090, 91651, 'no_lang_code', 'name', 'Agilent Technologies (Japan)'),
(112091, 91652, 'es', 'name', 'Instituto Tecnológico de Cancún'),
(112092, 91653, 'no_lang_code', 'name', 'Frontier Medicines (United States)'),
(112093, 91654, 'en', 'name', 'Department of Health Services'),
(112094, 91655, 'no', 'name', 'Patentstyret'),
(112095, 91656, 'no_lang_code', 'name', 'Ivan Rakovec Institute of Palaeontology'),
(112096, 91656, 'sl', 'name', 'PaleontoloŔki inŔtitut Ivana Rakovca'),
(112097, 91657, 'no_lang_code', 'name', 'Catalana de Gas (Spain)'),
(112098, 91658, 'en', 'name', 'American Physiological Society'),
(112099, 91659, 'en', 'name', 'France-BioImaging'),
(112100, 91660, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Mosel-Saar-Lahn'),
(112101, 91661, 'en', 'name', 'Our Lady of the Lake Regional Medical Center'),
(112102, 91662, 'en', 'name', 'International Maize and Wheat Improvement Center'),
(112103, 91663, 'en', 'name', 'Doncaster and Bassetlaw Teaching Hospitals NHS Foundation Trust'),
(112104, 91664, 'es', 'name', 'Universidad Americana'),
(112105, 91665, 'en', 'name', 'Dinosaur Research Institute'),
(112106, 91666, 'en', 'name', 'Louis and Harold Price Foundation'),
(112107, 91667, 'no_lang_code', 'name', 'GlobalWafers (Singapore)'),
(112108, 91668, 'pt', 'name', 'Escola Superior de Saúde Atlântica'),
(112109, 91669, 'en', 'name', 'Indonesian Adventist University'),
(112110, 91669, 'id', 'name', 'Universitas Advent Indonesia'),
(112111, 91670, 'no_lang_code', 'name', 'XRpro (United States)'),
(112112, 91671, 'en', 'name', 'Department of Family and Community Services'),
(112113, 91672, 'en', 'name', 'Zegar Family Foundation'),
(112114, 91673, 'no_lang_code', 'name', 'Icagen (United States)'),
(112115, 91674, 'en', 'name', 'Florida Ornithological Society'),
(112116, 91675, 'no_lang_code', 'name', 'Hansoh Pharma (China)'),
(112117, 91675, 'zh', 'name', 'ę±‰ē“¢åˆ¶čÆ'),
(112118, 91676, 'no_lang_code', 'name', 'Rio Tinto (Switzerland)'),
(112119, 91677, 'de', 'name', 'Landesamt für Landwirtschaft, Umwelt und ländliche Räume'),
(112120, 91678, 'de', 'name', 'Wasserstraßen-Neubauamt Nord-Ostsee-Kanal'),
(112121, 91679, 'en', 'name', 'Tianjin Municipal Education Commission'),
(112122, 91680, 'en', 'name', 'Aichi Medical University Medical Center'),
(112123, 91680, 'ja', 'name', 'ę„›ēŸ„åŒ»ē§‘å¤§å­¦ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(112124, 91681, 'en', 'name', 'Four Winds Foundation'),
(112125, 91682, 'no_lang_code', 'name', 'Pūrangakura'),
(112126, 91683, 'no_lang_code', 'name', 'Meta (United States)'),
(112127, 91684, 'en', 'name', 'European Society for Evolutionary Biology'),
(112128, 91685, 'en', 'name', 'Shahid Sadoughi University of Medical Sciences and Health Services'),
(112129, 91685, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų“Ł‡ŪŒŲÆ ŲµŲÆŁˆŁ‚ŪŒ یزد'),
(112130, 91686, 'no_lang_code', 'name', 'Bausch Health (Canada)'),
(112131, 91687, 'de', 'name', 'UniversitƤtsklinikum Hamburg-Eppendorf'),
(112132, 91687, 'en', 'name', 'University Medical Center Hamburg-Eppendorf'),
(112133, 91688, 'en', 'name', 'Tyumen State Architectural University'),
(112134, 91689, 'pt', 'name', 'Instituto Profissional de Canossa - IPDC'),
(112135, 91690, 'en', 'name', 'SINTEF Community'),
(112136, 91691, 'id', 'name', 'Institut Ilmu Kesehatan STRADA Indonesia'),
(112137, 91692, 'en', 'name', 'European Molecular Biology Laboratory'),
(112138, 91692, 'fr', 'name', 'Laboratoire EuropƩen de Biologie MolƩculaire'),
(112139, 91693, 'en', 'name', 'Finnish Food Safety Authority Evira'),
(112140, 91694, 'en', 'name', 'Bell Museum of Natural History'),
(112141, 91695, 'no_lang_code', 'name', 'DisChem (United States)'),
(112142, 91696, 'no_lang_code', 'name', 'Biocom Africa (South Africa)'),
(112143, 91697, 'en', 'name', 'Anchor University Lagos'),
(112144, 91698, 'en', 'name', 'International Society of Biomechanics'),
(112145, 91699, 'en', 'name', 'Regional Council of Pays de la Loire'),
(112146, 91699, 'fr', 'name', 'Conseil rƩgional des Pays de la Loire'),
(112147, 91700, 'no_lang_code', 'name', 'Nautilus Environmental'),
(112148, 91701, 'en', 'name', 'Irkutsk State Linguistic University'),
(112149, 91701, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ лингвистический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(112150, 91702, 'de', 'name', 'Leibniz-Institut für Neurobiologie'),
(112151, 91702, 'en', 'name', 'Leibniz Institute for Neurobiology'),
(112152, 91703, 'en', 'name', 'Ministry of Treasury and Finance'),
(112153, 91703, 'tr', 'name', 'T.C. Hazine ve Maliye Bakanlığı'),
(112154, 91704, 'no_lang_code', 'name', 'Aurobay (Sweden)'),
(112155, 91705, 'en', 'name', 'Kim Il-Sung Military University'),
(112156, 91705, 'ko', 'name', 'ź¹€ģ¼ģ„±źµ°ģ‚¬ģ¢…ķ•©ėŒ€ķ•™'),
(112157, 91706, 'en', 'name', 'Kurdistan Technical Institute'),
(112158, 91706, 'ku', 'name', 'Ł¾Ū•ŪŒŁ…Ų§Ł†ŚÆŪ•ŪŒ ŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ Ś©ŁˆŲ±ŲÆŲ³ŲŖŲ§Ł†'),
(112159, 91707, 'fr', 'name', 'Institut supƩrieur de l''automobile et des transports'),
(112160, 91708, 'en', 'name', 'Alberta Environment and Protected Areas'),
(112161, 91709, 'no_lang_code', 'name', 'NIKIMT-Atomstroy'),
(112162, 91709, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø ŠŗŠ¾Š½ŃŃ‚Ń€ŃƒŠŗŃ‚Š¾Ń€ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ монтажной технологии — Атомстрой'),
(112163, 91710, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų±Ų§ŁŲÆŁŠŁ† الجامعة'),
(112164, 91710, 'no_lang_code', 'name', 'Alrafidain University College'),
(112165, 91711, 'en', 'name', 'Ascension Providence Hospital'),
(112166, 91712, 'en', 'name', 'Association of Physician Associates in Obstetrics and Gynecology'),
(112167, 91713, 'es', 'name', 'Universidad Peruana Simón Bolívar'),
(112168, 91714, 'en', 'name', 'Harris foundation'),
(112169, 91715, 'en', 'name', 'Japan Foundation'),
(112170, 91716, 'en', 'name', 'Istanbul Şehir University'),
(112171, 91716, 'tr', 'name', 'İstanbul Şehir Üniversitesi'),
(112172, 91717, 'it', 'name', 'Regione Lombardia'),
(112173, 91718, 'pt', 'name', 'Instituto de Pesquisa Ambiental da AmazƓnia'),
(112174, 91719, 'es', 'name', 'Colegio de Etnólogos y Antropólogos Sociales'),
(112175, 91720, 'en', 'name', 'St John''s Innovation Centre'),
(112176, 91721, 'no_lang_code', 'name', 'Grupo Antolin (Spain)'),
(112177, 91722, 'id', 'name', 'Universitas Karo'),
(112178, 91723, 'en', 'name', 'Kremenchuk University of Economics Information Technology and Management'),
(112179, 91724, 'en', 'name', 'Spiria Medical'),
(112180, 91725, 'fr', 'name', 'Centre IntƩgrƩ de SantƩ et Services Sociaux de la GaspƩsie'),
(112181, 91726, 'en', 'name', 'Bibliosan'),
(112182, 91727, 'en', 'name', 'Chica and Heinz Schaller Foundation'),
(112183, 91728, 'ja', 'name', 'ę—„ē«‹Astemo'),
(112184, 91728, 'no_lang_code', 'name', 'Hitachi Astemo (Japan)'),
(112185, 91729, 'en', 'name', 'National University of Tainan'),
(112186, 91729, 'zh', 'name', 'åœ‹ē«‹č‡ŗå—å¤§å­ø'),
(112187, 91730, 'en', 'name', 'Korea Education and Research Information Service'),
(112188, 91730, 'ko', 'name', 'ķ•œźµ­źµģœ”ķ•™ģˆ ģ •ė³“ģ›'),
(112189, 91731, 'no_lang_code', 'name', 'Ambion Diagnostics'),
(112190, 91732, 'et', 'name', 'Eesti metroloogia keskasutus'),
(112191, 91732, 'no_lang_code', 'name', 'Metrosert'),
(112192, 91733, 'af', 'name', 'Suid-Afrikaanse Raad vir Natuur Wetenskaplike Professies'),
(112193, 91733, 'en', 'name', 'South African Council for Natural Scientific Professions'),
(112194, 91734, 'en', 'name', 'SEO Amsterdam Economics'),
(112195, 91734, 'nl', 'name', 'SEO Economisch Onderzoek'),
(112196, 91735, 'fr', 'name', 'Laboratoire Adaptations Travail-Individu'),
(112197, 91736, 'en', 'name', 'ESC Clermont Business School'),
(112198, 91737, 'no_lang_code', 'name', 'Dairy Australia (Australia)'),
(112199, 91738, 'fr', 'name', 'Service Public de Wallonie'),
(112200, 91739, 'en', 'name', 'Islamic American University'),
(112201, 91740, 'en', 'name', 'Technological University Loikaw'),
(112202, 91741, 'en', 'name', 'Pediatric Epilepsy Surgery Alliance'),
(112203, 91742, 'en', 'name', 'Tanzania Wildlife Management Authority'),
(112204, 91742, 'sw', 'name', 'Mamlaka ya Usimamizi wa Wanyamapori'),
(112205, 91743, 'en', 'name', 'United States Department of Education'),
(112206, 91743, 'es', 'name', 'Departamento de Educación de los Estados Unidos'),
(112207, 91743, 'fr', 'name', 'DĆ©partement de l''Ɖducation des Ɖtats-unis'),
(112208, 91744, 'en', 'name', 'National Institute of Clean and Low-Carbon Energy'),
(112209, 91744, 'zh', 'name', 'åŒ—äŗ¬ä½Žē¢³ęø…ę“čƒ½ęŗē ”ē©¶ę‰€'),
(112210, 91745, 'en', 'name', 'Ministry of Rural Development and Lands'),
(112211, 91745, 'es', 'name', 'Ministerio de Desarrollo Rural y Tierras'),
(112212, 91746, 'en', 'name', 'St. Mary''s University in Juba'),
(112213, 91747, 'fr', 'name', 'Laboratoire de Neurosciences IntƩgratives et Adaptatives'),
(112214, 91748, 'af', 'name', 'Suid-Afrikaanse Vereeniging van Plantkundiges'),
(112215, 91748, 'en', 'name', 'South African Association of Botanists'),
(112216, 91749, 'en', 'name', 'Colorado Water Center'),
(112217, 91750, 'fr', 'name', 'Centre de Recherche et d''Ɖtudes Germaniques'),
(112218, 91751, 'en', 'name', 'Institute of Agricultural Economics'),
(112219, 91751, 'ro', 'name', 'Institutul de Economie Agrara'),
(112220, 91752, 'es', 'name', 'Universidad Paccioli de Córdoba'),
(112221, 91753, 'en', 'name', 'New Zealand’s Biological Heritage'),
(112222, 91753, 'mi', 'name', 'Ngā Koiora Tuku Iho'),
(112223, 91754, 'en', 'name', 'The Linnean Society of New South Wales'),
(112224, 91755, 'no_lang_code', 'name', 'Kvaerner (United Kingdom)'),
(112225, 91756, 'es', 'name', 'Instituto de Investigaciones BioquĆ­micas de BahĆ­a Blanca, CONICET-UNS'),
(112226, 91757, 'no_lang_code', 'name', 'Legrand (France)'),
(112227, 91758, 'en', 'name', 'Aero Institute'),
(112228, 91759, 'en', 'name', 'Council of Scientific and Industrial Research'),
(112229, 91759, 'hi', 'name', 'ą¤µą„ˆą¤œą„ą¤žą¤¾ą¤Øą¤æą¤• ą¤ą¤µą¤‚ ą¤”ą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤• ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø परिषद'),
(112230, 91759, 'ml', 'name', 'ą“•ąµ—ąµŗą“øą“æąµ½ ą““ą“«ąµ ą“øą“Æą“Øąµą“±ą“æą“«ą“æą“•ąµ ą“†ąµ»ą“”ąµ ą“‡ąµ»ą“”ą“øąµą“Ÿąµą“°ą“æą“Æąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ'),
(112231, 91759, 'ta', 'name', 'ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ą®• ą®†ą®ÆąÆą®µąÆ ą®®ą®©ąÆą®±ą®®ąÆ'),
(112232, 91759, 'te', 'name', 'ą°¶ą°¾ą°øą±ą°¤ą±ą°°ą±€ą°Æ మరియు ą°Ŗą°¾ą°°ą°æą°¶ą±ą°°ą°¾ą°®ą°æą°• పరిశోధనా ą°Ŗą°°ą°æą°·ą°¤ą±ą°¤ą±'),
(112233, 91760, 'de', 'name', 'Zentrum für Sportmedizin der Bundeswehr'),
(112234, 91761, 'no_lang_code', 'name', 'Filter Sensing Technologies (United States)'),
(112235, 91762, 'en', 'name', 'Antalya Belek University'),
(112236, 91762, 'tr', 'name', 'Antalya Belek Üni̇versi̇tesi̇'),
(112237, 91763, 'en', 'name', 'Ivvavik National Park'),
(112238, 91763, 'fr', 'name', 'Parc national Ivvavik'),
(112239, 91764, 'fr', 'name', 'Institut de MƩdecine et d''EpidƩmiologie Africaines'),
(112240, 91765, 'en', 'name', 'NOAA Geostationary Operation Environmental Satellite-R Series'),
(112241, 91766, 'en', 'name', 'Centre for Development of Advanced Computing'),
(112242, 91766, 'hi', 'name', 'ą¤øą„€-ą¤”ą„ˆą¤•'),
(112243, 91766, 'ml', 'name', 'ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“”ąµ†ą“µą“²ą“Ŗąµą“®ąµ†ą“Øąµą“±ąµ ą““ą“«ąµ ą“…ą“”ąµą“µą“¾ąµ»ą“øąµą“”ąµ ą“•ą“®ąµą“Ŗąµą“Æąµ‚ą“Ÿąµą“Ÿą“æą“™ąµą“™ąµ'),
(112244, 91766, 'mr', 'name', 'ą¤øą„€-ą¤”ą„…ą¤•'),
(112245, 91766, 'ta', 'name', 'ą®šą®æą®Ÿą®¾ą®•ąÆ'),
(112246, 91767, 'no_lang_code', 'name', 'Yacimientos PetrolĆ­feros Fiscales'),
(112247, 91768, 'pt', 'name', 'Fundação para o Desenvolvimento da UNESP'),
(112248, 91769, 'no_lang_code', 'name', 'IMBIC (United States)'),
(112249, 91770, 'en', 'name', 'University of Tokyo Hospital'),
(112250, 91770, 'ja', 'name', 'ę±äŗ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(112251, 91771, 'en', 'name', 'P.M.N.M. Dental College and Hospital'),
(112252, 91772, 'en', 'name', 'NOAA National Marine Fisheries Service Southwest Fisheries Science Center'),
(112253, 91773, 'de', 'name', 'Berlin-Institut für Bevölkerung und Entwicklung'),
(112254, 91774, 'en', 'name', 'Southern Research Station'),
(112255, 91775, 'de', 'name', 'Ozeaneum Stralsund'),
(112256, 91776, 'en', 'name', 'Utah Department of Transportation'),
(112257, 91777, 'en', 'name', 'Institute of Nanoscience and Nanotechnology'),
(112258, 91778, 'en', 'name', 'Biomedical Research Foundation'),
(112259, 91779, 'en', 'name', 'York University'),
(112260, 91780, 'es', 'name', 'Universidad San Marcos'),
(112261, 91781, 'en', 'name', 'Northwestern University Settlement Association'),
(112262, 91782, 'en', 'name', 'Jilin Academy of Agricultural Sciences'),
(112263, 91782, 'zh', 'name', 'å‰ęž—ēœå†œäøšē§‘å­¦é™¢'),
(112264, 91783, 'fr', 'name', 'Laboratoire d’Informatique Fondamentale de Marseille'),
(112265, 91784, 'en', 'name', 'Baoding No.1 Central Hospital'),
(112266, 91784, 'zh', 'name', 'äæå®šåø‚ē¬¬äø€äø­åæƒåŒ»é™¢'),
(112267, 91785, 'en', 'name', 'Northwestern Polytechnic'),
(112268, 91786, 'en', 'name', 'Health Protection Agency'),
(112269, 91787, 'no_lang_code', 'name', 'AKHAN Semiconductor (United States)'),
(112270, 91788, 'en', 'name', 'Research Institute for Advanced Computer Science'),
(112271, 91789, 'pt', 'name', 'Programa Operacional TemƔtico Factores de Competitividade'),
(112272, 91790, 'en', 'name', 'Climate Service Center'),
(112273, 91791, 'fr', 'name', 'Sciences Po Toulouse'),
(112274, 91792, 'en', 'name', 'Netherlands Aerospace Centre'),
(112275, 91792, 'nl', 'name', 'Nationaal Lucht- en Ruimtevaartlaboratorium'),
(112276, 91793, 'no_lang_code', 'name', 'J2 Light (United States)'),
(112277, 91794, 'en', 'name', 'Institute of Bioengineering and Nanotechnology'),
(112278, 91795, 'en', 'name', 'NOAA National Ice Center'),
(112279, 91796, 'no_lang_code', 'name', 'Cogent Biosciences (United States)'),
(112280, 91797, 'en', 'name', 'Worcester County Public Schools'),
(112281, 91798, 'ro', 'name', 'Universitatea Mihae Eminescu Timisoara'),
(112282, 91799, 'en', 'name', 'P S Jones Middle School'),
(112283, 91800, 'de', 'name', 'Schweizerische ZahnƤrzte Gesellschaft'),
(112284, 91800, 'en', 'name', 'Swiss Dental Association'),
(112285, 91801, 'es', 'name', 'Universidad IndĆ­gena de Venezuela'),
(112286, 91802, 'en', 'name', 'Research Centre in Biological Chemistry of Córdoba'),
(112287, 91802, 'es', 'name', 'Centro de Investigaciones en Química Biológica de Córdoba'),
(112288, 91803, 'en', 'name', 'African Wildlife Foundation'),
(112289, 91804, 'en', 'name', 'Finnish Advanced Microscopy Node'),
(112290, 91805, 'en', 'name', 'Center for Architecture Foundation'),
(112291, 91806, 'es', 'name', 'Academia Joven de EspaƱa'),
(112292, 91807, 'en', 'name', 'Banner Alzheimer’s Institute'),
(112293, 91808, 'fr', 'name', 'Fondation du CollĆØge de France'),
(112294, 91809, 'en', 'name', 'Office of the Assistant Secretary for Health'),
(112295, 91810, 'en', 'name', 'Carolina University of Theology'),
(112296, 91811, 'no_lang_code', 'name', 'Airbus (France)'),
(112297, 91812, 'en', 'name', 'RIKEN Center for Biosystems Dynamics Research'),
(112298, 91812, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€ē”Ÿå‘½ę©Ÿčƒ½ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(112299, 91813, 'fr', 'name', 'Ecole SupƩrieure en GƩnie Electrique et EnergƩtique d''Oran'),
(112300, 91814, 'en', 'name', 'NOAA Near Earth Orbit Network'),
(112301, 91815, 'en', 'name', 'Armed Forces Research Institute of Medical Science'),
(112302, 91815, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø§ąø“ąøˆąø±ąø¢ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąøąø²ąø£ą¹ąøžąø—ąø¢ą¹Œąø—ąø«ąø²ąø£'),
(112303, 91816, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŃŠ¾Ń†ŠøŠ¾Š»Š¾Š³ŠøŃ'),
(112304, 91816, 'en', 'name', 'Institute of Philosophy and Sociology'),
(112305, 91817, 'no_lang_code', 'name', 'Ingeniería Energética y de Contaminación (Spain)'),
(112306, 91818, 'no_lang_code', 'name', 'Dynasol Group (Spain)'),
(112307, 91819, 'en', 'name', 'Arab Open University'),
(112308, 91820, 'no_lang_code', 'name', 'Kyowa Kirin (United States)'),
(112309, 91821, 'en', 'name', 'St Michaels Hospital'),
(112310, 91822, 'de', 'name', 'Albert-Ludwigs-UniversitƤt Freiburg'),
(112311, 91822, 'en', 'name', 'University of Freiburg'),
(112312, 91823, 'no_lang_code', 'name', 'Holcim (Canada)'),
(112313, 91824, 'en', 'name', 'New Mexico Department of Game and Fish'),
(112314, 91825, 'en', 'name', 'AMAQUEN Foundation'),
(112315, 91826, 'en', 'name', 'Genome Atlantic'),
(112316, 91827, 'en', 'name', 'Mississippi Space Grant Consortium'),
(112317, 91828, 'en', 'name', 'Kosin University'),
(112318, 91828, 'ko', 'name', 'ź³ ģ‹ ėŒ€ķ•™źµ'),
(112319, 91829, 'en', 'name', 'NOAA Office of Aquaculture'),
(112320, 91830, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ—ę„”ä¼š'),
(112321, 91830, 'no_lang_code', 'name', 'Sapporo Hokuyu Hospital'),
(112322, 91831, 'no_lang_code', 'name', 'OmniActive Health Technologies (United States)'),
(112323, 91832, 'no_lang_code', 'name', 'Shaanxi Provincial Land Engineering Construction Group'),
(112324, 91832, 'zh', 'name', 'é™•č„æēœåœŸåœ°å·„ēØ‹å»ŗč®¾é›†å›¢ęœ‰é™č“£ä»»å…¬åø'),
(112325, 91833, 'de', 'name', 'Max-Reger-Institut'),
(112326, 91834, 'en', 'name', 'Darwin Initiative'),
(112327, 91835, 'en', 'name', 'The HDF Group'),
(112328, 91836, 'es', 'name', 'Universidad de Ciencias MƩdicas de Pinar del Rƭo'),
(112329, 91837, 'es', 'name', 'LA Referencia'),
(112330, 91838, 'en', 'name', 'New York State Foundation for Science, Technology and Innovation'),
(112331, 91839, 'en', 'name', 'Edna Bailey Sussman Foundation'),
(112332, 91840, 'no_lang_code', 'name', 'Gedeon Programmes (France)'),
(112333, 91841, 'en', 'name', 'Guangxi University of Chinese Medicine'),
(112334, 91841, 'zh', 'name', 'å¹æč„æäø­åŒ»čÆå¤§å­¦'),
(112335, 91842, 'en', 'name', 'Kala-Azar Medical Research Centre'),
(112336, 91843, 'no_lang_code', 'name', 'E-Lyte Innovations GmbH (Germany)'),
(112337, 91844, 'en', 'name', 'Vardhaman College of Engineering'),
(112338, 91845, 'es', 'name', 'Universidad Federico HenrĆ­quez y Carvajal'),
(112339, 91846, 'en', 'name', 'Gediz University'),
(112340, 91846, 'tr', 'name', 'Gediz Üniversitesi'),
(112341, 91847, 'en', 'name', 'Childhood Cancer Canada Foundation'),
(112342, 91848, 'id', 'name', 'Universitas Dhyana Pura'),
(112343, 91849, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بيرزيت'),
(112344, 91849, 'en', 'name', 'Birzeit University'),
(112345, 91850, 'ar', 'name', 'الجامعة Ų§Ł„ŁƒŲ§Ų«ŁˆŁ„ŁŠŁƒŁŠŲ© في Ų§Ų±ŲØŁŠŁ„'),
(112346, 91850, 'en', 'name', 'Catholic University in Erbil'),
(112347, 91851, 'de', 'name', 'Anton Bruckner Institut Linz'),
(112348, 91852, 'en', 'name', 'Malacological Society of London'),
(112349, 91853, 'en', 'name', 'American Sheep Industry Association'),
(112350, 91854, 'es', 'name', 'Instituto de Estudios Sociales'),
(112351, 91855, 'de', 'name', 'Comenius-Institut'),
(112352, 91856, 'en', 'name', 'Minnesota State University Student Association'),
(112353, 91857, 'no_lang_code', 'name', 'Merz (Germany)'),
(112354, 91858, 'no_lang_code', 'name', 'PPG Industries (United States)'),
(112355, 91859, 'en', 'name', 'National Save the Sea Turtle Foundation'),
(112356, 91860, 'en', 'name', 'Unmanned Aerial Vehicle Collaborative'),
(112357, 91861, 'no_lang_code', 'name', 'Scientific Center of Innovative Research'),
(112358, 91862, 'en', 'name', 'Royal Society of Chemistry'),
(112359, 91863, 'ro', 'name', 'Universitatea de Stat ā€žBogdan Petriceicu Hasdeu" din Cahul'),
(112360, 91863, 'ru', 'name', 'Кагульский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени БогГана ŠŸŠµŃ‚Ń€ŠøŃ‡ŠµŠ¹ŠŗŃƒ ЄашГеу'),
(112361, 91864, 'cs', 'name', 'Sdružení Pro Rozvoj Moravskoslezského Kraje'),
(112362, 91865, 'en', 'name', 'National University Cancer Institute, Singapore'),
(112363, 91866, 'en', 'name', 'Gray''s Inn'),
(112364, 91867, 'en', 'name', 'University of Massachusetts System'),
(112365, 91867, 'es', 'name', 'Universidad de Massachusetts'),
(112366, 91867, 'fr', 'name', 'UniversitƩ du massachusetts'),
(112367, 91868, 'en', 'name', 'Georgia Ornithological Society'),
(112368, 91869, 'no_lang_code', 'name', 'Accenture (Germany)'),
(112369, 91870, 'en', 'name', 'University of Information Science and Technology St. Paul The Apostle'),
(112370, 91870, 'mk', 'name', 'Универзитет за информатички науки Šø технологии Дв. Апостол Павле'),
(112371, 91870, 'sq', 'name', 'Universiteti i Shkencƫs sƫ Informacionit dhe Teknologjisƫ Shƫn Apostull Pavli'),
(112372, 91871, 'en', 'name', 'Tohoku Medical and Pharmaceutical University'),
(112373, 91871, 'ja', 'name', 'ę±åŒ—č–¬ē§‘å¤§å­¦'),
(112374, 91872, 'en', 'name', 'Association of Universities and Colleges of Canada'),
(112375, 91872, 'fr', 'name', 'UniversitƩs Canada'),
(112376, 91873, 'en', 'name', 'Dutch postgraduate School for Art History'),
(112377, 91874, 'es', 'name', 'Hospital Universitario Mayor, Mederi'),
(112378, 91875, 'en', 'name', 'Pertamina University'),
(112379, 91875, 'id', 'name', 'Universitas Pertamina'),
(112380, 91876, 'en', 'name', 'National University of Water and Environmental Engineering'),
(112381, 91876, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ воГного госпоГарства та ŠæŃ€ŠøŃ€Š¾Š“Š¾ŠŗŠ¾Ń€ŠøŃŃ‚ŃƒŠ²Š°Š½Š½Ń'),
(112382, 91877, 'en', 'name', 'Arts South Australia'),
(112383, 91878, 'en', 'name', 'Indian Institute of Information Technology Sri City'),
(112384, 91878, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¶ą„ą¤°ą„€ ą¤øą¤æą¤Ÿą„€'),
(112385, 91879, 'en', 'name', 'Miami University Dolibois European Center'),
(112386, 91880, 'no_lang_code', 'name', 'b.geos'),
(112387, 91881, 'id', 'name', 'Institut Agama Islam Negeri Sorong'),
(112388, 91882, 'fr', 'name', 'Laboratoire d’Economie de Dauphine'),
(112389, 91883, 'en', 'name', 'Delaware General Assembly'),
(112390, 91884, 'en', 'name', 'Institute of Commerce and Business'),
(112391, 91885, 'en', 'name', 'UCH Macmillan Cancer Centre, University College Hospital Macmillan Cancer Centre'),
(112392, 91886, 'en', 'name', 'Cixian People''s Hospital'),
(112393, 91887, 'no_lang_code', 'name', 'Consensus Pharmaceuticals (United States)'),
(112394, 91888, 'en', 'name', 'Toronto General Hospital'),
(112395, 91889, 'de', 'name', 'Bundesamt für Ausrüstung, Informationstechnik und Nutzung der Bundeswehr'),
(112396, 91889, 'en', 'name', 'Federal Office of Bundeswehr Equipment, Information Technology and In-Service Support'),
(112397, 91890, 'en', 'name', 'Qingdao National Laboratory for Marine Science and Technology'),
(112398, 91890, 'zh', 'name', 'é’å²›ęµ·ę“‹ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶å®žéŖŒå®¤'),
(112399, 91891, 'en', 'name', 'Veterinary Medical Teaching Hospital'),
(112400, 91892, 'no_lang_code', 'name', 'Curium (France)'),
(112401, 91893, 'en', 'name', 'International Higher School of Medicine'),
(112402, 91893, 'ky', 'name', 'Š­Š» аралык Š–Š¾Š³Š¾Ń€ŠŗŃƒ ŠœŠµŠ“ŠøŃ†ŠøŠ½Š°Š»Ń‹Šŗ ŠœŠµŠŗŃ‚ŠµŠ±Šø'),
(112403, 91893, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Š°Ń Š’Ń‹ŃŃˆŠ°Ń Школа ŠœŠµŠ“ицины'),
(112404, 91894, 'en', 'name', 'National Metallurgical Academy of Ukraine'),
(112405, 91894, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Украины'),
(112406, 91894, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³Ń–Š¹Š½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń України'),
(112407, 91895, 'en', 'name', 'National Institute for Materials Science'),
(112408, 91895, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē‰©č³Ŗćƒ»ęę–™ē ”ē©¶ę©Ÿę§‹'),
(112409, 91896, 'en', 'name', 'Stenden University of Applied Sciences'),
(112410, 91896, 'nl', 'name', 'Stenden Hogeschool'),
(112411, 91897, 'en', 'name', 'Department of State Development'),
(112412, 91898, 'en', 'name', 'Banff National Park'),
(112413, 91898, 'fr', 'name', 'Parc national Banff'),
(112414, 91899, 'no_lang_code', 'name', 'Invigos'),
(112415, 91900, 'en', 'name', 'Quebec Bio-Imaging Network'),
(112416, 91900, 'fr', 'name', 'RƩseau en Bio-Imagerie du Quebec'),
(112417, 91901, 'en', 'name', 'Epicentre Uganda'),
(112418, 91902, 'fr', 'name', 'Centre SĆØvres'),
(112419, 91903, 'en', 'name', 'Wyoming Wildlife and Natural Resource Trust'),
(112420, 91904, 'en', 'name', 'Apex Foundation'),
(112421, 91905, 'en', 'name', 'Japan Meteorological Agency'),
(112422, 91905, 'ja', 'name', '気豔庁'),
(112423, 91906, 'en', 'name', 'Lukuru Foundation'),
(112424, 91907, 'de', 'name', 'Institut für Diabetesforschung'),
(112425, 91907, 'en', 'name', 'Institute of Diabetes Research'),
(112426, 91908, 'no', 'name', 'GenƘk'),
(112427, 91909, 'en', 'name', 'TEPCO Memorial Foundation'),
(112428, 91909, 'ja', 'name', 'ę±é›»čØ˜åæµē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(112429, 91910, 'no_lang_code', 'name', 'Instrumentation Technologies (Slovenia)'),
(112430, 91911, 'en', 'name', 'The Kidney Fund'),
(112431, 91912, 'es', 'name', 'Fundación Universitaria Internacional de Colombia'),
(112432, 91913, 'en', 'name', 'Jet Propulsion Laboratory'),
(112433, 91913, 'es', 'name', 'Laboratorio de Propulsión a Chorro'),
(112434, 91914, 'en', 'name', 'American Society of Safety Professionals'),
(112435, 91915, 'en', 'name', 'Clarion University'),
(112436, 91916, 'no_lang_code', 'name', 'Advanced hCMOS Systems'),
(112437, 91917, 'fr', 'name', 'Universite des Sciences AppliquƩe et Management'),
(112438, 91918, 'es', 'name', 'Universidad Pedagógica de Pinar del Río Rafael María de Mendive'),
(112439, 91919, 'no_lang_code', 'name', 'Sanofi (United States)'),
(112440, 91920, 'en', 'name', 'Embassy of France in Washington, D.C'),
(112441, 91920, 'fr', 'name', 'Ambassade de France Ć  Washington, D.C.'),
(112442, 91921, 'en', 'name', 'Shore Memorial Hospital'),
(112443, 91922, 'en', 'name', 'Finnish Transport Safety Agency'),
(112444, 91922, 'fi', 'name', 'Liikenteen turvallisuusvirasto Trafi'),
(112445, 91923, 'pt', 'name', 'Unimed Curitiba'),
(112446, 91924, 'nl', 'name', 'Koninklijke Nederlandse Chemische Vereniging'),
(112447, 91925, 'en', 'name', 'Neotropical Bird Club'),
(112448, 91926, 'no_lang_code', 'name', 'Fluor (United States)'),
(112449, 91927, 'en', 'name', 'ARC Centre of Excellence for Climate System Science'),
(112450, 91928, 'no_lang_code', 'name', 'Newron Pharmaceuticals (Sweden)'),
(112451, 91929, 'en', 'name', 'NOAA Office of Observations'),
(112452, 91930, 'no_lang_code', 'name', 'EMD Group (Canada)'),
(112453, 91931, 'en', 'name', 'Minderoo Foundation'),
(112454, 91932, 'no_lang_code', 'name', 'ConocoPhillips (Canada)'),
(112455, 91933, 'fr', 'name', 'Management et Ɖconomie Lyon Saint-Ɖtienne'),
(112456, 91934, 'no_lang_code', 'name', 'MSL Group (Spain)'),
(112457, 91935, 'en', 'name', 'Honda Research Institute Europe'),
(112458, 91936, 'en', 'name', 'Forillon National Park'),
(112459, 91936, 'fr', 'name', 'Parc national de Forillon'),
(112460, 91937, 'no_lang_code', 'name', 'Al Invest (Czechia)'),
(112461, 91938, 'ar', 'name', 'بوابة وزارة الاثار Ų§Ł„Ł…ŲµŲ±ŁŠŲ©'),
(112462, 91938, 'en', 'name', 'Ministry of Antiquities'),
(112463, 91939, 'no_lang_code', 'name', 'Integrated Photonics (United States)'),
(112464, 91940, 'fr', 'name', 'LittƩrature et poƩtique comparƩes'),
(112465, 91941, 'en', 'name', 'Romanian-American University'),
(112466, 91941, 'ro', 'name', 'Universitatea Româno-Americană'),
(112467, 91942, 'en', 'name', 'Korea Food Research Institute'),
(112468, 91942, 'ko', 'name', 'ķ•œźµ­ģ‹ķ’ˆģ—°źµ¬ģ›'),
(112469, 91943, 'en', 'name', 'Nebraska State Office of the Governor'),
(112470, 91944, 'en', 'name', 'Federal University of Sergipe'),
(112471, 91944, 'pt', 'name', 'Universidade Federal de Sergipe'),
(112472, 91945, 'en', 'name', 'SINTEF Digital'),
(112473, 91946, 'no_lang_code', 'name', 'BioOne'),
(112474, 91947, 'no_lang_code', 'name', 'UCB Pharma (United States)'),
(112475, 91948, 'fr', 'name', 'MobilitƩs: Vieillissement, Pathologie, SantƩ'),
(112476, 91949, 'fr', 'name', 'UniversitƩ de Kisangani'),
(112477, 91950, 'en', 'name', 'Birla Institute of Technology, Mesra'),
(112478, 91950, 'hi', 'name', 'बिरला ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(112479, 91951, 'en', 'name', 'Isabel Gotzkowsky and Friends'),
(112480, 91952, 'en', 'name', 'Carlos Hilado Memorial State University'),
(112481, 91953, 'en', 'name', 'The German Hospital of Santiago'),
(112482, 91953, 'es', 'name', 'ClĆ­nica Alemana'),
(112483, 91954, 'en', 'name', 'University of Applied Sciences Utrecht'),
(112484, 91954, 'nl', 'name', 'Hogeschool Utrecht'),
(112485, 91955, 'en', 'name', 'Nora Eccles Treadwell Foundation'),
(112486, 91956, 'no_lang_code', 'name', 'SandboxAQ'),
(112487, 91957, 'en', 'name', 'DASSI - Data Archive for Social Sciences in Italy'),
(112488, 91958, 'en', 'name', 'VA Pacific Islands Health Care System'),
(112489, 91959, 'fr', 'name', 'Centre de Recherche sur les IdentitƩs, les Nations et l''InterculturalitƩ'),
(112490, 91960, 'en', 'name', 'United States Department of Justice'),
(112491, 91960, 'es', 'name', 'Departamento de Justicia de los Estados Unidos'),
(112492, 91960, 'fr', 'name', 'DĆ©partement de la justice des Ɖtats-unis'),
(112493, 91961, 'en', 'name', 'Prairie Biotic Research'),
(112494, 91962, 'en', 'name', 'York District Hospital'),
(112495, 91963, 'en', 'name', 'St Grigol Peradze Tbilisi Teaching University'),
(112496, 91964, 'en', 'name', 'Vietnam Metrology Institute'),
(112497, 91964, 'vi', 'name', 'Viện Đo lĘ°į»ng Việt Nam'),
(112498, 91965, 'es', 'name', 'Hospital Infantil Dr. Robert Reid Cabral'),
(112499, 91966, 'en', 'name', 'Saint-Petersburg State University Information Technologies, Mechanic and Optics'),
(112500, 91967, 'no_lang_code', 'name', 'Levvel'),
(112501, 91968, 'en', 'name', 'Institute of Nuclear Medicine & Allied Sciences'),
(112502, 91968, 'hi', 'name', 'ą¤Øą¤¾ą¤®ą¤æą¤•ą„€ą¤Æ औषिध तऄा ą¤øą¤‚ą¤¬ą¤¦ą„ą¤§ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(112503, 91969, 'en', 'name', 'Ankara 29 Mayis State Hospital'),
(112504, 91969, 'tr', 'name', 'Ankara 29 Mayıs Devlet Hastanesi'),
(112505, 91970, 'en', 'name', 'Mimika District General Hospital'),
(112506, 91970, 'id', 'name', 'Rumah Sakit Umum Daerah Kabupaten Mimika'),
(112507, 91971, 'en', 'name', 'Cancer Care Ontario'),
(112508, 91972, 'en', 'name', 'Johns Hopkins University Applied Physics Laboratory'),
(112509, 91973, 'nl', 'name', 'Parnassia Groep Academie'),
(112510, 91974, 'de', 'name', 'Max-Planck-Institut für Plasmaphysik, Teilinstitut Greifswald'),
(112511, 91974, 'en', 'name', 'Max Planck Institute for Plasma Physics - Greifswald'),
(112512, 91975, 'it', 'name', 'INGV Amministrazione Centrale'),
(112513, 91976, 'it', 'name', 'Istituto di Radioastronomia di Bologna'),
(112514, 91977, 'it', 'name', 'INGV Sezione di Bologna'),
(112515, 91978, 'en', 'name', 'Changshu No. 2 People''s Hospital'),
(112516, 91978, 'zh', 'name', 'åøøē†Ÿåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(112517, 91979, 'en', 'name', 'Alzheimer Europe'),
(112518, 91980, 'en', 'name', 'Scientific Education and Research Foundation'),
(112519, 91981, 'no_lang_code', 'name', 'Kosan Biosciences (United States)'),
(112520, 91982, 'en', 'name', 'Swedish Exhibition & Congress Centre'),
(112521, 91982, 'sv', 'name', 'Svenska MƤssan'),
(112522, 91983, 'no_lang_code', 'name', 'aixACCT Systems (United States)'),
(112523, 91984, 'en', 'name', 'Australian Plague Locust Commission'),
(112524, 91985, 'no_lang_code', 'name', 'Kentucky Science and Technology Corporation (United States)'),
(112525, 91986, 'fr', 'name', 'Centre Technique Interprofessionnel des Fruits et LƩgumes'),
(112526, 91987, 'en', 'name', 'Alexander S. Onassis Foundation'),
(112527, 91988, 'en', 'name', 'G. Harold & Leila Y. Mathers Foundation'),
(112528, 91989, 'de', 'name', 'Bayerisches Staatsministerium für Familie, Arbeit und Soziales'),
(112529, 91989, 'en', 'name', 'Bavarian Ministry for Family, Labour and Social Affairs'),
(112530, 91990, 'en', 'name', 'Taras Shevchenko National University of Kyiv'),
(112531, 91990, 'hu', 'name', 'Kijevi Egyetem'),
(112532, 91990, 'pl', 'name', 'Uniwersytet Kijowski'),
(112533, 91990, 'ru', 'name', 'Киевский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Тараса Шевченко'),
(112534, 91990, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Тараса Шевченка'),
(112535, 91991, 'en', 'name', 'Ames Research Center'),
(112536, 91991, 'es', 'name', 'Centro de Investigación Ames'),
(112537, 91992, 'no_lang_code', 'name', 'Cisco Systems (Canada)'),
(112538, 91993, 'en', 'name', 'Manchester Mental Health and Social Care Trust'),
(112539, 91994, 'en', 'name', 'NASA Engineering and Safety Center'),
(112540, 91995, 'en', 'name', 'Henry J. Predolin Foundation for Research in Leukemia'),
(112541, 91996, 'en', 'name', 'Oakley Mental Health Research Foundation'),
(112542, 91997, 'de', 'name', 'Friedrich-Ebert-Stiftung e.V.'),
(112543, 91998, 'en', 'name', 'Deccan College of Medical Sciences'),
(112544, 91999, 'en', 'name', 'Catholic University of the North'),
(112545, 91999, 'es', 'name', 'Universidad Católica del Norte'),
(112546, 92000, 'es', 'name', 'Escuela Nacional de Salud PĆŗblica'),
(112547, 92001, 'en', 'name', 'NOAA National Marine Fisheries Service Pacific Islands Fisheries Science Center'),
(112548, 92002, 'es', 'name', 'Instituto Ecuatoriano de Normalización'),
(112549, 92003, 'en', 'name', 'Power and Water University of Technology'),
(112550, 92003, 'fa', 'name', 'دانؓگاه صنعت Ų¢ŲØ و برق'),
(112551, 92004, 'fr', 'name', 'Laboratoire de Biologie Cellulaire et MolƩculaire du ContrƓle de la ProlifƩration'),
(112552, 92005, 'no_lang_code', 'name', 'Odyssey Therapeutics (United States)'),
(112553, 92006, 'es', 'name', 'Fundación Salud, Ciencia y Tecnologia'),
(112554, 92007, 'tr', 'name', 'Türkiye Büyük Millet Meclisi'),
(112555, 92008, 'en', 'name', 'World Association for Disaster and Emergency Medicine'),
(112556, 92009, 'en', 'name', 'Government College of Engineering, Keonjhar'),
(112557, 92010, 'es', 'name', 'Escuela Nacional de Administración y Hacienda Pública-Instituto Universitario de Tecnología'),
(112558, 92011, 'en', 'name', 'Director of National Parks'),
(112559, 92012, 'en', 'name', 'National University of Arts and Culture Yangon'),
(112560, 92012, 'my', 'name', 'į€šį€‰į€ŗį€€į€»į€±į€øį€™į€¾į€Æ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ ရန်ကုန်'),
(112561, 92013, 'en', 'name', 'Technical University of Moldova'),
(112562, 92013, 'ro', 'name', 'Universitatea Tehnică a Moldovei'),
(112563, 92013, 'ru', 'name', 'Технический Университет ŠœŠ¾Š»Š“Š¾Š²Ń‹'),
(112564, 92014, 'en', 'name', 'Emek Medical Center'),
(112565, 92014, 'he', 'name', '×ž×Ø×›×– רפואי העמק'),
(112566, 92015, 'en', 'name', 'Tampere University of Technology'),
(112567, 92015, 'fi', 'name', 'Tampereen teknillinen yliopisto'),
(112568, 92015, 'sv', 'name', 'Tammerfors tekniska universitet'),
(112569, 92016, 'en', 'name', 'Plant & Food Research'),
(112570, 92017, 'en', 'name', 'Mycoplasmoses animales'),
(112571, 92018, 'en', 'name', 'Technological University Magway'),
(112572, 92019, 'fr', 'name', 'Histoire des arts et des reprƩsentations'),
(112573, 92020, 'en', 'name', 'NOAA Ocean Acidification Program'),
(112574, 92021, 'en', 'name', 'Australian Tropical Herbarium'),
(112575, 92022, 'no_lang_code', 'name', 'Jj X-Ray'),
(112576, 92023, 'en', 'name', 'Taishan University'),
(112577, 92023, 'zh', 'name', '泰山学院'),
(112578, 92024, 'en', 'name', 'Knowles Teacher Initiative'),
(112579, 92025, 'en', 'name', 'Zamzam University of Science and Technology'),
(112580, 92025, 'so', 'name', 'Jaamacadda Zamzam'),
(112581, 92026, 'no_lang_code', 'name', 'BIOVIA (United Kingdom)'),
(112582, 92027, 'ko', 'name', 'ź³ ė ¤ģ œģ•½'),
(112583, 92027, 'no_lang_code', 'name', 'Korean Drug Co.'),
(112584, 92028, 'en', 'name', 'China Railway Construction Investment Group Corporation'),
(112585, 92028, 'zh', 'name', 'äø­å›½é“å»ŗęŠ•čµ„é›†å›¢ęœ‰é™å…¬åø'),
(112586, 92029, 'en', 'name', 'Chinese Academy of Fishery Sciences'),
(112587, 92029, 'zh', 'name', 'äø­å›½ę°“äŗ§ē§‘å­¦ē ”ē©¶é™¢äøœęµ·ę°“äŗ§ē ”ē©¶ę‰€'),
(112588, 92030, 'de', 'name', 'Theologische Hochschule Elstal'),
(112589, 92031, 'en', 'name', 'NOAA National Marine Fisheries Service Pacific Islands Regional Office'),
(112590, 92032, 'en', 'name', 'Easter Seals North Texas'),
(112591, 92033, 'en', 'name', 'Bureau of Standards Jamaica'),
(112592, 92034, 'en', 'name', 'Blue Mountains International Hotel Management School'),
(112593, 92035, 'de', 'name', 'Centre de Recherche Christine Kühne sur l''Allergie et l’Education'),
(112594, 92035, 'en', 'name', 'CK-CARE'),
(112595, 92036, 'en', 'name', 'Hendrik Conscience Heritage Library'),
(112596, 92036, 'nl', 'name', 'Hendrik Conscience Erfgoedbibliotheek'),
(112597, 92037, 'fr', 'name', 'Centre de Recherches Pluridisciplinaires Multilingues'),
(112598, 92038, 'es', 'name', 'Universidad Cristiana del Sur'),
(112599, 92039, 'en', 'name', 'Ho Chi Minh City University of Social Sciences and Humanities'),
(112600, 92039, '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'),
(112601, 92040, 'en', 'name', 'Hanjiang Normal University'),
(112602, 92040, 'zh', 'name', 'ę±‰ę±ŸåøˆčŒƒå­¦é™¢'),
(112603, 92041, 'en', 'name', 'Institute of Musicology'),
(112604, 92041, 'sl', 'name', 'MuzikoloŔki inŔtitut'),
(112605, 92042, 'en', 'name', 'Private Institution ā€œKaraganda University of Kazpotrebsoyuzā€'),
(112606, 92042, 'kk', 'name', 'ŅšŠ°Š·Ń‚Ņ±Ń‚Ń‹Š½ŃƒŠ¾Š“Š°Ņ“Ń‹ ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ°Š»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(112607, 92043, 'en', 'name', 'David Suzuki Foundation'),
(112608, 92043, 'fr', 'name', 'Fondation David Suzuki'),
(112609, 92044, 'en', 'name', 'Knowledge Foundation'),
(112610, 92044, 'sv', 'name', 'KK-stiftelsen'),
(112611, 92045, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Elbe-Nordsee'),
(112612, 92046, 'en', 'name', 'Lyon Public Library'),
(112613, 92046, 'fr', 'name', 'BibliothĆØque municipale de Lyon'),
(112614, 92047, 'en', 'name', 'Yorkshire Cancer Research'),
(112615, 92048, 'en', 'name', 'California State Transportation Agency'),
(112616, 92049, 'en', 'name', 'Virgin Islands Housing Finance Authority'),
(112617, 92050, 'en', 'name', 'North Advancement Center for Science and Technology'),
(112618, 92050, 'ja', 'name', 'åŒ—ęµ·é“ē§‘å­¦ęŠ€č”“ē·åˆęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(112619, 92051, 'en', 'name', 'State Key Laboratory of Freshwater Ecology and Biotechnology'),
(112620, 92051, 'zh', 'name', 'ę·”ę°“ē”Ÿę€äøŽē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112621, 92052, 'no_lang_code', 'name', 'Eden’s Bowl (United States)'),
(112622, 92053, 'en', 'name', 'Camp Fire Conservation Fund'),
(112623, 92054, 'fr', 'name', 'Centre d''Investigation Clinique de Nantes'),
(112624, 92055, 'id', 'name', 'Universitas Islam Ogan Komering Ilir'),
(112625, 92056, 'en', 'name', 'Race to Erase MS'),
(112626, 92057, 'no_lang_code', 'name', 'Nottingham Scientific (United Kingdom)'),
(112627, 92058, 'en', 'name', 'Zhoushan Science and Technology Bureau'),
(112628, 92058, 'zh', 'name', 'čˆŸå±±åø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(112629, 92059, 'de', 'name', 'Institut für Landes- und Stadtentwicklungsforschung'),
(112630, 92059, 'en', 'name', 'ILS – Research Institute for Regional and Urban Development'),
(112631, 92060, 'en', 'name', 'O’Loughlin Elementary School'),
(112632, 92061, 'cs', 'name', 'Ústav fyziky materiÔlů AV ČR'),
(112633, 92061, 'en', 'name', 'Czech Academy of Sciences, Institute of Physics of Materials'),
(112634, 92062, 'de', 'name', 'Klinikum Coburg'),
(112635, 92063, 'en', 'name', 'Xinqiao Hospital'),
(112636, 92063, 'zh', 'name', 'ę–°ę”„åŒ»é™¢'),
(112637, 92064, 'de', 'name', 'Bundesministerium für Wissenschaft, Forschung und Wirtschaft'),
(112638, 92064, 'en', 'name', 'Federal Ministry of Science, Research and Economics'),
(112639, 92065, 'en', 'name', 'Fujita Health University Nanakuri Memorial Hospital'),
(112640, 92065, 'ja', 'name', 'č—¤ē”°åŒ»ē§‘å¤§å­¦äøƒę —čØ˜åæµē—…é™¢'),
(112641, 92066, 'en', 'name', 'Belnet'),
(112642, 92067, 'en', 'name', 'Sri Lanka Technological Campus'),
(112643, 92068, 'en', 'name', 'International Criminal Court'),
(112644, 92068, 'fr', 'name', 'Cour PƩnale Internationale'),
(112645, 92069, 'de', 'name', 'UniversitƤtsbibliothek Johann Christian Senckenberg'),
(112646, 92069, 'en', 'name', 'University Library Johann Christian Senckenberg'),
(112647, 92070, 'en', 'name', 'Auyuittuq National Park'),
(112648, 92070, 'fr', 'name', 'Parc national Auyuittuq'),
(112649, 92071, 'en', 'name', 'Kiyv Municipal Medical College'),
(112650, 92072, 'en', 'name', 'Mexican Institute of Petroleum'),
(112651, 92072, 'es', 'name', 'Instituto Mexicano del Petróleo'),
(112652, 92073, 'en', 'name', 'EEA and Norway Grants'),
(112653, 92074, 'no_lang_code', 'name', 'LumaSense Technologies (United States)'),
(112654, 92075, 'no_lang_code', 'name', 'China Steel (Taiwan)'),
(112655, 92075, 'zh', 'name', 'äø­åœ‹é‹¼éµč‚”ä»½ęœ‰é™å…¬åø'),
(112656, 92076, 'no_lang_code', 'name', 'Trans Tech Publications (Switzerland)'),
(112657, 92077, 'en', 'name', 'Linkou Chang Gung Memorial Hospital'),
(112658, 92078, 'en', 'name', 'Target Ovarian Cancer'),
(112659, 92079, 'en', 'name', 'Hamilton Health Sciences'),
(112660, 92080, 'en', 'name', 'Brighton and Sussex University Hospitals NHS Trust'),
(112661, 92081, 'en', 'name', 'Oldfield Surgery'),
(112662, 92082, 'en', 'name', 'Dean Martin Neuromuscular Clinic'),
(112663, 92083, 'no_lang_code', 'name', 'Rivian'),
(112664, 92084, 'en', 'name', 'Shonan Oiso Hospital'),
(112665, 92084, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼š ę¹˜å—å¤§ē£Æē—…é™¢'),
(112666, 92085, 'en', 'name', 'Pacific States Marine Fisheries Commission'),
(112667, 92086, 'en', 'name', 'Scripps Research Institute'),
(112668, 92086, 'fr', 'name', 'Institut de Recherche Scripps'),
(112669, 92087, 'es', 'name', 'Secretaria de Salud'),
(112670, 92088, 'fr', 'name', 'Centre EuropƩen de Recherche et de Formation AvancƩe en Calcul Scientifique'),
(112671, 92089, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة للصناعة'),
(112672, 92089, 'en', 'name', 'Public Authority for Industry'),
(112673, 92090, 'fr', 'name', 'ExpƩdition MED'),
(112674, 92091, 'en', 'name', 'State Key Laboratory of Genetic Resources and Evolution'),
(112675, 92091, 'zh', 'name', 'é—ä¼ čµ„ęŗäøŽčæ›åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(112676, 92092, 'en', 'name', 'The Mary E. Groff Charitable Trust'),
(112677, 92093, 'cs', 'name', 'VysokĆ” Å”kola uměleckoprÅÆmyslovĆ” v Praze'),
(112678, 92093, 'en', 'name', 'Academy of Arts, Architecture and Design in Prague'),
(112679, 92094, 'en', 'name', 'Open International University of Human Development Ukraine'),
(112680, 92094, 'ru', 'name', 'ŠžŃ‚ŠŗŃ€Ń‹Ń‚Ń‹Š¹ Š¼ŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ человека Украина'),
(112681, 92094, 'uk', 'name', 'ВіГкритий міжнароГний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ Š»ŃŽŠ“ŠøŠ½Šø Україна'),
(112682, 92095, 'en', 'name', 'Batalha Monastery'),
(112683, 92095, 'pt', 'name', 'Mosteiro da Batalha'),
(112684, 92096, 'en', 'name', 'Networks of Centres of Excellence'),
(112685, 92096, 'fr', 'name', 'RƩseaux de centres d''excellence'),
(112686, 92097, 'en', 'name', 'Xuzhou Kuangshan Hospital'),
(112687, 92097, 'zh', 'name', 'å¾å·žåø‚ēŸæå±±åŒ»é™¢'),
(112688, 92098, 'no_lang_code', 'name', 'Qlab Analytical Laboratory (Greece)'),
(112689, 92099, 'en', 'name', 'Swedish Institute for Health Services Development'),
(112690, 92100, 'en', 'name', 'The Sackler Trust'),
(112691, 92101, 'en', 'name', 'Tokyo Metropolitan Tama-Hokubu Medical Center'),
(112692, 92101, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å¤šę‘©åŒ—éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(112693, 92102, 'en', 'name', 'Fitzsimons Army Medical Center'),
(112694, 92103, 'en', 'name', 'Marshall Space Flight Center');
INSERT INTO `ror_settings` VALUES
(112695, 92103, 'es', 'name', 'Centro Marshall de Vuelos Espaciales'),
(112696, 92103, 'fr', 'name', 'Centre de Vol Spatial Marshall'),
(112697, 92104, 'en', 'name', 'National Academies of Sciences, Engineering, and Medicine'),
(112698, 92105, 'fr', 'name', 'Fonds de Recherche du QuƩbec - SantƩ'),
(112699, 92106, 'en', 'name', 'Russian Economic University after G.V. Plekhanov'),
(112700, 92106, 'ru', 'name', 'Российский ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š“.Š’. ŠŸŠ»ŠµŃ…Š°Š½Š¾Š²Š°'),
(112701, 92107, 'en', 'name', 'RoZetta Institute'),
(112702, 92108, 'ja', 'name', 'ę—„ē«‹č£½ä½œę‰€'),
(112703, 92108, 'no_lang_code', 'name', 'Hitachi (Japan)'),
(112704, 92109, 'en', 'name', 'Jiangsu Provincial Center for Disease Control and Prevention'),
(112705, 92109, 'zh', 'name', 'ę±Ÿč‹ēœē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(112706, 92110, 'no_lang_code', 'name', 'EDF Renewables'),
(112707, 92111, 'en', 'name', 'Geological Institute'),
(112708, 92111, 'ru', 'name', 'Š“Š•ŠžŠ›ŠžŠ“Š˜Š§Š•Š”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢'),
(112709, 92112, 'en', 'name', 'National Library of Malaysia'),
(112710, 92112, 'ms', 'name', 'Perpustakaan Negara Malaysia'),
(112711, 92113, 'en', 'name', 'University of Juba'),
(112712, 92114, 'ar', 'name', 'مفاعل الأبحاث ŁˆŲ§Ł„ŲŖŲÆŲ±ŁŠŲØ Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠ'),
(112713, 92114, 'en', 'name', 'Jordan Research and Training Reactor'),
(112714, 92115, 'en', 'name', 'Barro Colorado Island'),
(112715, 92115, 'es', 'name', 'Isla Barro Colorado'),
(112716, 92116, 'en', 'name', 'Black Country Healthcare NHS Foundation Trust'),
(112717, 92117, 'en', 'name', 'NOAA National Geodetic Survey'),
(112718, 92118, 'en', 'name', 'Human Resources University'),
(112719, 92119, 'en', 'name', 'Utah Department of Natural Resources'),
(112720, 92120, 'tr', 'name', 'Sağlık Hizmetleri Uygulama ve Araştırma Hastanesi'),
(112721, 92121, 'no_lang_code', 'name', 'OncoDetect (United States)'),
(112722, 92122, 'fr', 'name', 'Fondation de l''Ecole Normale Superieure'),
(112723, 92123, 'en', 'name', 'European Health Psychology Society'),
(112724, 92124, 'no_lang_code', 'name', 'Saint-Gobain (France)'),
(112725, 92125, 'ja', 'name', 'čŠ¦å±‹å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(112726, 92125, 'no_lang_code', 'name', 'Ashiya College'),
(112727, 92126, 'fr', 'name', 'GERFLINT'),
(112728, 92127, 'en', 'name', 'William Hill Manor'),
(112729, 92128, 'en', 'name', 'Temple University Health System'),
(112730, 92129, 'en', 'name', 'Sidney & Lois Eskenazi Hospital'),
(112731, 92130, 'de', 'name', 'Pädagogische Hochschule Graubünden'),
(112732, 92130, 'en', 'name', 'University of Teacher Education of the Grisons'),
(112733, 92130, 'it', 'name', 'Alta scuola pedagogica dei Grigioni'),
(112734, 92130, 'rm', 'name', 'Scola auta da pedagogia dal Grischun'),
(112735, 92131, 'en', 'name', 'Bonefish and Tarpon Trust'),
(112736, 92132, 'ja', 'name', 'DMGę£®ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(112737, 92132, 'no_lang_code', 'name', 'DMG Mori (Japan)'),
(112738, 92133, 'es', 'name', 'Universidad Autónoma de Encarnación'),
(112739, 92134, 'id', 'name', 'Institut Agama Islam Negeri Fattahul Muluk Papua'),
(112740, 92135, 'en', 'name', 'St. John Medical Center'),
(112741, 92136, 'en', 'name', 'Institute of International Relations of Moldova'),
(112742, 92136, 'ro', 'name', 'Institutul de Relații Internaționale din Moldova'),
(112743, 92137, 'de', 'name', 'Wasserstraßen-Neubauamt Aschaffenburg'),
(112744, 92138, 'en', 'name', 'Institute of Technology Carlow'),
(112745, 92138, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta Ceatharlach'),
(112746, 92139, 'en', 'name', 'Salpaus Further Education'),
(112747, 92139, 'fi', 'name', 'Koulutuskeskus Salpaus'),
(112748, 92140, 'no_lang_code', 'name', 'Micron (United States)'),
(112749, 92141, 'en', 'name', 'Office for Product Safety and Standards'),
(112750, 92142, 'en', 'name', 'Global Health and Education Projects'),
(112751, 92143, 'fr', 'name', 'UniversitƩ de Sarh'),
(112752, 92144, 'en', 'name', 'State Council of the People''s Republic of China'),
(112753, 92144, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å›½åŠ”é™¢'),
(112754, 92145, 'en', 'name', 'Department of Housing, Local Government and Heritage'),
(112755, 92145, 'ga', 'name', 'An Roinn Tithiochta, Rialtais AitiĆŗil agus Oidhreachta'),
(112756, 92146, 'de', 'name', 'Faserinstitut Bremen'),
(112757, 92147, 'en', 'name', 'Technological University Hinthada'),
(112758, 92148, 'it', 'name', 'Centro Alti Studi per la Difesa (CASD)'),
(112759, 92149, 'en', 'name', 'Dominica Bureau of Standards'),
(112760, 92150, 'es', 'name', 'Consejo Económico y Social'),
(112761, 92151, 'en', 'name', 'Winslow Foundation'),
(112762, 92152, 'en', 'name', 'Creative Victoria'),
(112763, 92153, 'ja', 'name', 'å¤§å’Œč–¬å“ę Ŗå¼ä¼šē¤¾'),
(112764, 92153, 'no_lang_code', 'name', 'Daiwa Pharmaceutical Co. (Japan)'),
(112765, 92154, 'en', 'name', 'TSC Alliance'),
(112766, 92155, 'no_lang_code', 'name', 'Biosurface Engineering Technologies (United States)'),
(112767, 92156, 'pt', 'name', 'Editora JRG'),
(112768, 92157, 'de', 'name', 'Wehrwissenschaftliche Institut für Schutztechnologien'),
(112769, 92158, 'fr', 'name', 'Centre de droit international de Nanterre'),
(112770, 92159, 'en', 'name', 'Australian National Herbarium'),
(112771, 92160, 'en', 'name', 'California Environmental Protection Agency'),
(112772, 92160, 'es', 'name', 'Agencia de Protección Ambiental de California'),
(112773, 92161, 'de', 'name', 'UniversitƤtsklinikum Aachen'),
(112774, 92161, 'en', 'name', 'University Hospital Aachen'),
(112775, 92162, 'no_lang_code', 'name', 'Forum (United States)'),
(112776, 92163, 'de', 'name', 'Marum, Zentrum für Marine Umweltwissenschaften'),
(112777, 92164, 'en', 'name', 'Hokkaido University of Education'),
(112778, 92164, 'ja', 'name', 'åŒ—ęµ·é“ę•™č‚²å¤§å­¦'),
(112779, 92165, 'en', 'name', 'Pohang Accelerator Laboratory'),
(112780, 92165, 'ko', 'name', 'ķ¬ķ•­ź°€ģ†źø°ģ—°źµ¬ģ†Œė”œź³ '),
(112781, 92166, 'en', 'name', 'American Indonesian Exchange Foundation'),
(112782, 92167, 'en', 'name', 'Progressive Foundation'),
(112783, 92168, 'en', 'name', 'Church of Saint Abuseridze State University'),
(112784, 92169, 'en', 'name', 'The Foundation for Conservation of Atlantic Salmon'),
(112785, 92169, 'fr', 'name', 'La Fondation Pour La Conservation Du Saumon Atlantique'),
(112786, 92170, 'it', 'name', 'INGV Sezione Irpinia'),
(112787, 92171, 'en', 'name', 'Access'),
(112788, 92172, 'en', 'name', 'European Lead Factory'),
(112789, 92173, 'de', 'name', 'Fraunhofer-Institut für Elektronische Nanosysteme'),
(112790, 92173, 'en', 'name', 'Fraunhofer Institute for Electronic Nano Systems'),
(112791, 92174, 'en', 'name', 'Institute for Systems Research Atomic and Molecular Complexes'),
(112792, 92174, 'fr', 'name', 'Institut de Recherche sur les Systèmes Atomiques et Moléculaires Complexes'),
(112793, 92175, 'es', 'name', 'Cooperación Latino Americana de Redes Avanzadas, RedCLARA'),
(112794, 92176, 'en', 'name', 'Earth and Planets Laboratory'),
(112795, 92177, 'es', 'name', 'Ministerio de Ciencia, Tecnología e Innovación'),
(112796, 92178, 'en', 'name', 'International Bamboo and Rattan Organization'),
(112797, 92178, 'zh', 'name', 'å›½é™…ē«¹č—¤äø­åæƒ'),
(112798, 92179, 'id', 'name', 'Institut Bisnis dan Informatika Kesatuan'),
(112799, 92180, 'en', 'name', 'Aichi Medical University'),
(112800, 92180, 'ja', 'name', 'ę„›ēŸ„åŒ»ē§‘å¤§å­¦'),
(112801, 92181, 'no_lang_code', 'name', 'Shire (Ireland)'),
(112802, 92182, 'fr', 'name', 'Centre d''Ɖtude et de Recherche Travail Organisation Pouvoir'),
(112803, 92183, 'fr', 'name', 'Laboratoire AssociƩ de DƩbitmƩtrie Gazeuse'),
(112804, 92184, 'no_lang_code', 'name', 'IniXium (Canada)'),
(112805, 92185, 'en', 'name', 'CoreTrustSeal'),
(112806, 92186, 'no_lang_code', 'name', 'Research Institute of Bast Fibres (Czechia)'),
(112807, 92187, 'en', 'name', 'Lupus Research Alliance'),
(112808, 92188, 'de', 'name', 'Landwirtschaftliche Rentenbank'),
(112809, 92189, 'en', 'name', 'Malaria Consortium'),
(112810, 92190, 'en', 'name', 'Guizhou Provincial Education Department'),
(112811, 92190, 'zh', 'name', 'č“µå·žēœę•™č‚²åŽ… 编辑'),
(112812, 92191, 'fr', 'name', 'Biologie des Plantes et Innovation'),
(112813, 92192, 'no_lang_code', 'name', 'Beckman Coulter (United States)'),
(112814, 92193, 'en', 'name', 'Institute for Biomedicine'),
(112815, 92193, 'it', 'name', 'Istituto di Biomedicina'),
(112816, 92194, 'no_lang_code', 'name', 'Aker Solutions (United Kingdom)'),
(112817, 92195, 'no_lang_code', 'name', 'Centro de Desarrollo Tecnológico del Cesar'),
(112818, 92196, 'en', 'name', 'North-American Interfraternity Conference'),
(112819, 92197, 'tr', 'name', 'Anka Teknoloji Üniversitesi'),
(112820, 92198, 'en', 'name', 'Australian Marine Mammal Centre'),
(112821, 92199, 'en', 'name', 'Duke-NUS Medical School'),
(112822, 92200, 'en', 'name', 'Ministry of Trade, Industry and Fisheries'),
(112823, 92201, 'en', 'name', 'Victorian Health Promotion Foundation'),
(112824, 92202, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‚Ų§Ų³ŁŠŁˆŁ† الخاصة'),
(112825, 92202, 'en', 'name', 'Qasyoun Private University'),
(112826, 92203, 'en', 'name', 'Eliette and Herbert von Karajan Institute'),
(112827, 92204, 'en', 'name', 'The Second Affiliated Hospital of Xiamen Medical College'),
(112828, 92204, 'zh', 'name', 'åŽ¦é—Øåø‚ē¬¬äŗŒåŒ»é™¢'),
(112829, 92205, 'id', 'name', 'Universitas Komputer Indonesia'),
(112830, 92206, 'az', 'name', 'İşıq Universiteti'),
(112831, 92206, 'en', 'name', 'Işık University'),
(112832, 92206, 'tr', 'name', 'Işık Üniversitesi'),
(112833, 92207, 'en', 'name', 'Bina Bangsa Getsempena University'),
(112834, 92208, 'en', 'name', 'Indian Veterinary Research Institute'),
(112835, 92208, 'fr', 'name', 'Institut indien de recherche vƩtƩrinaire'),
(112836, 92208, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą¤¶ą„ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(112837, 92209, 'es', 'name', 'Universidad de Ciencias MƩdicas de GuantƔnamo'),
(112838, 92210, 'no_lang_code', 'name', 'Redivis'),
(112839, 92211, 'pl', 'name', 'Narodowa Agencja Wymiany Akademickiej'),
(112840, 92212, 'en', 'name', 'Department of Measurement Units, Standards & Services'),
(112841, 92212, 'si', 'name', 'ą¶±ą·”ą¶øą·Š ą¶’ą¶šą¶š, ą¶“ą·Šą¶»ą¶øą·’ą¶­ą·’ ą·„ą· ą·ƒą·šą·€ą· ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(112842, 92212, 'ta', 'name', 'ą®…ą®³ą®•ąÆą®•ąÆą®®ąÆ ą®…ą®²ą®•ąÆą®•ą®³ąÆ, ą®¤ą®°ą®™ąÆą®•ą®³ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®šąÆ‡ą®µąÆˆą®•ą®³ąÆ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ'),
(112843, 92213, 'fr', 'name', 'Institut Catholique d''Arts et MƩtiers'),
(112844, 92214, 'en', 'name', 'Neanderthal Museum'),
(112845, 92215, 'no_lang_code', 'name', 'Smart Fibres (United Kingdom)'),
(112846, 92216, 'en', 'name', 'Human Immunome Project'),
(112847, 92217, 'en', 'name', 'Pan American Health Organization (Brasil)'),
(112848, 92217, 'pt', 'name', 'Organização Pan-Americana da Saúde (Brazil)'),
(112849, 92218, 'fr', 'name', 'Innovations ThƩrapeutiques en HƩmostase'),
(112850, 92219, 'en', 'name', 'One World University'),
(112851, 92220, 'en', 'name', 'University of New Caledonia'),
(112852, 92220, 'fr', 'name', 'UniversitƩ de la Nouvelle-CalƩdonie'),
(112853, 92221, 'no_lang_code', 'name', 'Trelleborg (Norway)'),
(112854, 92222, 'en', 'name', 'Puebla Technologic Institute'),
(112855, 92222, 'es', 'name', 'Instituto Tecnológico de Puebla'),
(112856, 92223, 'en', 'name', 'Ministry of Business, Innovation and Employment'),
(112857, 92223, 'mi', 'name', 'Hīkina Whakatutuki'),
(112858, 92224, 'en', 'name', 'NOAA National Marine Fisheries Service West Coast Region'),
(112859, 92225, 'no_lang_code', 'name', 'Voestalpine (Germany)'),
(112860, 92226, 'id', 'name', 'Universitas Mulia'),
(112861, 92227, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Port Numbay Jayapura'),
(112862, 92228, 'en', 'name', 'Emilia-Romagna Region'),
(112863, 92228, 'it', 'name', 'Regione Emilia-Romagna'),
(112864, 92229, 'ja', 'name', 'ćƒ†ćƒ«ćƒ¢ę Ŗå¼ä¼šē¤¾'),
(112865, 92229, 'no_lang_code', 'name', 'Terumo (Japan)'),
(112866, 92230, 'en', 'name', 'IMEC'),
(112867, 92231, 'en', 'name', 'Division of Undergraduate Education'),
(112868, 92232, 'en', 'name', 'Standards Norway'),
(112869, 92232, 'no', 'name', 'Standard Norge'),
(112870, 92233, 'en', 'name', 'The Systematics Association'),
(112871, 92234, 'en', 'name', 'Institute of Criminological & Sociological Research'),
(112872, 92234, 'sr', 'name', 'Institut za KriminoloŔka i SocioloŔka Istraživanja'),
(112873, 92235, 'en', 'name', 'Turku University Foundation'),
(112874, 92235, 'fi', 'name', 'Turun YliopistosƤƤtiƶ'),
(112875, 92236, 'no_lang_code', 'name', 'Energy Power Resources (United Kingdom)'),
(112876, 92237, 'en', 'name', 'Shri Dharmasthala Manjunatheshwara University'),
(112877, 92238, 'en', 'name', 'Cancer Care Centers of Brevard'),
(112878, 92239, 'en', 'name', 'West Suffolk NHS Foundation Trust'),
(112879, 92240, 'en', 'name', 'Zhejiang Radio and Television University'),
(112880, 92240, 'zh', 'name', 'ęµ™ę±Ÿå¹æę’­ē”µč§†å¤§å­¦'),
(112881, 92241, 'no_lang_code', 'name', 'Innventia (Sweden)'),
(112882, 92242, 'fi', 'name', 'Puolustusvoimien tutkimuslaitos'),
(112883, 92243, 'en', 'name', 'University College of Nabi Akram'),
(112884, 92243, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ł†ŲØŪŒ اکرم'),
(112885, 92244, 'en', 'name', 'Eluna'),
(112886, 92245, 'no_lang_code', 'name', 'Nallamuthu Gounder Mahalingam College'),
(112887, 92246, 'en', 'name', 'Tuktut Nogait National Park'),
(112888, 92246, 'fr', 'name', 'Parc national Tuktut Nogait'),
(112889, 92247, 'en', 'name', 'Department of Human Resources and Social Security of Jiangsu Province'),
(112890, 92247, 'zh', 'name', 'ę±Ÿč‹ēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(112891, 92248, 'en', 'name', 'National Science and Technology Council'),
(112892, 92248, 'zh', 'name', 'åœ‹ē§‘ęœƒ'),
(112893, 92249, 'en', 'name', 'Moscow Art Theatre School'),
(112894, 92250, 'en', 'name', 'Henry Ford Health System'),
(112895, 92251, 'en', 'name', 'University of Wisconsin–Fox Valley'),
(112896, 92252, 'en', 'name', 'Kerman University of Medical Sciences'),
(112897, 92252, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی کرمان'),
(112898, 92253, 'de', 'name', 'Medizinische FakultƤt Mannheim'),
(112899, 92254, 'en', 'name', 'Wet Tropics Management Authority'),
(112900, 92255, 'en', 'name', 'Woodcock-MuƱoz Foundation'),
(112901, 92256, 'en', 'name', 'Ɩrebro University Hospital'),
(112902, 92256, 'sv', 'name', 'Universitetssjukhuset Ɩrebro'),
(112903, 92257, 'en', 'name', 'Latin American School of Medicine'),
(112904, 92257, 'es', 'name', 'Escuela Latinoamericana de Medicina'),
(112905, 92258, 'de', 'name', 'Orff-Zentrum München'),
(112906, 92259, 'fr', 'name', 'Laboratoire de GƩographie Urbaine'),
(112907, 92260, 'fr', 'name', 'Centre d''Excellence en Technologies de l''Information et de la Communication'),
(112908, 92261, 'en', 'name', 'Northeast Iowa Community College'),
(112909, 92262, 'en', 'name', 'Shanghai Academy of Science & Technology'),
(112910, 92262, 'zh', 'name', 'äøŠęµ·ē§‘å­¦é™¢'),
(112911, 92263, 'en', 'name', 'Namibian Standards Institution'),
(112912, 92264, 'en', 'name', 'Russian Foundation for Basic Research'),
(112913, 92264, 'ru', 'name', 'Российский фонГ Ń„ŃƒŠ½Š“Š°Š¼ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Ń… исслеГований'),
(112914, 92265, 'en', 'name', 'Koltzov Institute of Developmental Biology'),
(112915, 92265, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Ń€Š°Š·Š²ŠøŃ‚ŠøŃ им. Š.К. ŠšŠ¾Š»ŃŒŃ†Š¾Š²Š° Š ŠŠ'),
(112916, 92266, 'no_lang_code', 'name', 'Covalent Associates (United States)'),
(112917, 92267, 'en', 'name', 'National Maritime Museums'),
(112918, 92268, 'pt', 'name', 'Observatório Oceânico da Madeira'),
(112919, 92269, 'en', 'name', 'Jiangsu Province Science and Technology Department'),
(112920, 92270, 'en', 'name', 'NOAA Technology Partnerships Office'),
(112921, 92271, 'en', 'name', 'Public University "Kadri Zeka"'),
(112922, 92271, 'sq', 'name', 'Universiteti Publik "Kadri Zeka"'),
(112923, 92272, 'en', 'name', 'Swiss Nanoscience Institute'),
(112924, 92273, 'fr', 'name', 'Conseil RƩgional de Nouvelle-Aquitaine'),
(112925, 92274, 'fi', 'name', 'Nordenskiƶld-samfundet'),
(112926, 92275, 'fr', 'name', 'Hypoxie et Poumon'),
(112927, 92276, 'en', 'name', 'Chinese National Academy of Arts'),
(112928, 92276, 'zh', 'name', 'äø­å›½č‰ŗęœÆē ”ē©¶é™¢'),
(112929, 92277, 'en', 'name', 'Institute of High Performance Computing'),
(112930, 92278, 'en', 'name', 'Tomori PƔl College'),
(112931, 92279, 'en', 'name', 'Korean History Research Society'),
(112932, 92279, 'ko', 'name', 'ķ•œźµ­ģ‚¬ģ—°źµ¬ķšŒ'),
(112933, 92280, 'bn', 'name', 'বাংলাদেশ ą¦øą§ą¦—ą¦¾ą¦°ą¦•ą§ą¦°ą¦Ŗ গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(112934, 92280, 'en', 'name', 'Bangladesh Sugarcrop Research Institute'),
(112935, 92281, 'en', 'name', 'University of Sistan and Baluchestan'),
(112936, 92281, 'fa', 'name', 'دانؓگاه Ų³ŪŒŲ³ŲŖŲ§Ł† و ŲØŁ„ŁˆŚ†Ų³ŲŖŲ§Ł†'),
(112937, 92282, 'de', 'name', 'Forschungsinstitut für Nutztierbiologie (FBN)'),
(112938, 92282, 'en', 'name', 'Research Institute for Farm Animal Biology (FBN)'),
(112939, 92283, 'fr', 'name', 'Mondes Iranien et Indien'),
(112940, 92284, 'sv', 'name', 'Ɩstersjƶcentrum'),
(112941, 92285, 'en', 'name', 'Colorado Native Plant Society'),
(112942, 92286, 'de', 'name', 'Private PƤdagogische Hochschule Augustinum'),
(112943, 92286, 'en', 'name', 'Private University College of Teacher Education Augustinum'),
(112944, 92287, 'fr', 'name', 'Laboratoire National de MƩtrologie'),
(112945, 92288, 'en', 'name', 'Alberta Ministry of Agriculture and Forestry'),
(112946, 92289, 'no_lang_code', 'name', 'Therapeutics Systems Research Laboratories (United States)'),
(112947, 92290, 'de', 'name', 'Helmholtz-Zentrum für Informationssicherheit'),
(112948, 92290, 'en', 'name', 'Helmholtz Center for Information Security'),
(112949, 92291, 'en', 'name', 'Rozgan University'),
(112950, 92291, 'fa', 'name', 'دانؓگاه ارزگان'),
(112951, 92292, 'fr', 'name', 'Fondation MƩrieux'),
(112952, 92293, 'en', 'name', 'Grenada Bureau of Standards'),
(112953, 92294, 'en', 'name', 'OurResearch'),
(112954, 92295, 'fr', 'name', 'Centre Integre de Sante et de Services Sociaux de Laval'),
(112955, 92296, 'en', 'name', 'Education, Formation, Travail, Savoirs'),
(112956, 92297, 'en', 'name', 'Italian Hospital of Montevideo'),
(112957, 92297, 'es', 'name', 'Hospital Italiano de Montevideo, Ospedale italiano Umberto I'),
(112958, 92298, 'en', 'name', 'Ministry of Natural Resources and Forestry'),
(112959, 92298, 'fr', 'name', 'MinistĆØre des Richesses Naturelles et des ForĆŖts'),
(112960, 92299, 'en', 'name', 'Korea Information & Communication Contractors Association'),
(112961, 92299, 'ko', 'name', 'ķ•œźµ­ģ •ė³“ķ†µģ‹ ź³µģ‚¬ķ˜‘ķšŒ'),
(112962, 92300, 'es', 'name', 'Antonio Ruiz de Montoya University, Universidad Antonio Ruiz de Montoya'),
(112963, 92301, 'en', 'name', 'China National Textile and Apparel Council'),
(112964, 92301, 'zh', 'name', 'äø­å›½ēŗŗē»‡å·„äøšč”åˆä¼š'),
(112965, 92302, 'no_lang_code', 'name', 'Fort Wayne Metals (United States)'),
(112966, 92303, 'en', 'name', 'Tyndale House'),
(112967, 92304, 'es', 'name', 'Hospital Infanta Margarita'),
(112968, 92305, 'en', 'name', 'Pittsburgh Foundation'),
(112969, 92306, 'pt', 'name', 'Universidade de DĆ­li'),
(112970, 92307, 'en', 'name', 'Everett Company Stage School'),
(112971, 92308, 'en', 'name', 'WITH Foundation'),
(112972, 92309, 'no_lang_code', 'name', 'Donaldson (United States)'),
(112973, 92310, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų®Ł„ŁŠŲ¬ السدرة'),
(112974, 92310, 'en', 'name', 'Gulf of Sidra University'),
(112975, 92311, 'en', 'name', 'University Hospitals Dorset NHS Foundation Trust'),
(112976, 92312, 'en', 'name', 'Okayama University'),
(112977, 92312, 'ja', 'name', '岔山大学'),
(112978, 92313, 'en', 'name', 'Deep Ocean Observing Strategy'),
(112979, 92314, 'en', 'name', 'Institute of Legal Informatics and Judicial Systems'),
(112980, 92314, 'it', 'name', 'Istituto di Informatica Giuridica e Sistemi Giudiziari'),
(112981, 92315, 'no_lang_code', 'name', 'Mountain Vista Medical Center'),
(112982, 92316, 'en', 'name', 'National Higher School of Artificial Intelligence'),
(112983, 92316, 'fr', 'name', 'Ecole Nationale SupƩrieure d''Intelligence Artificielle'),
(112984, 92317, 'ar', 'name', 'Ų§Ł„Ų“Ų¤ŁˆŁ† Ų§Ł„ŲµŲ­ŁŠŲ© بالحرس Ų§Ł„ŁˆŲ·Ł†ŁŠ'),
(112985, 92317, 'en', 'name', 'National Guard Health Affairs'),
(112986, 92318, 'en', 'name', 'American Arachnological Society'),
(112987, 92319, 'en', 'name', 'Korean Institute of Architects'),
(112988, 92319, 'ko', 'name', 'ķ•œźµ­ 걓축가 ķ˜‘ķšŒ'),
(112989, 92320, 'en', 'name', 'Group for Research in Decision Analysis'),
(112990, 92321, 'en', 'name', 'Ara Parseghian Medical Research Fund'),
(112991, 92322, 'no_lang_code', 'name', 'The Coatinc Company (Netherlands)'),
(112992, 92323, 'en', 'name', 'Smithsonian Tropical Research Institute'),
(112993, 92323, 'es', 'name', 'Instituto Smithsonian de Investigaciones Tropicales'),
(112994, 92324, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأزهر'),
(112995, 92324, 'en', 'name', 'Al Azhar University'),
(112996, 92325, 'no_lang_code', 'name', 'Artep'),
(112997, 92326, 'en', 'name', 'Cascadia College, Cascadia Community College'),
(112998, 92327, 'es', 'name', 'Laboratorio de Tecnogestión'),
(112999, 92328, 'en', 'name', 'International Institute of Tropical Agriculture'),
(113000, 92329, 'en', 'name', 'Community Health Alliance'),
(113001, 92330, 'en', 'name', 'Pillar College, Somerset Christian College'),
(113002, 92331, 'en', 'name', 'Korea National Arboretum'),
(113003, 92331, 'ko', 'name', 'źµ­ė¦½ģˆ˜ėŖ©ģ›'),
(113004, 92332, 'de', 'name', 'Zentrum für Telematik'),
(113005, 92333, 'no_lang_code', 'name', 'Instituttet for Anvendt Datateknik (Denmark)'),
(113006, 92334, 'de', 'name', 'Deutsche Verkehrswissenschaftliche Gesellschaft'),
(113007, 92335, 'no_lang_code', 'name', 'Esterline (Canada)'),
(113008, 92336, 'no_lang_code', 'name', 'Dolby (Canada)'),
(113009, 92337, 'no_lang_code', 'name', 'Alabama Audubon'),
(113010, 92338, 'en', 'name', 'Directorate-General for Migration and Home Affairs'),
(113011, 92339, 'en', 'name', 'Autism Consortium'),
(113012, 92340, 'en', 'name', 'Kentucky Department of Fish and Wildlife Resources'),
(113013, 92341, 'en', 'name', 'Mining Engineering Bandung Islamic University'),
(113014, 92342, 'ar', 'name', 'وزارة النفط - ŲÆŁˆŁ„Ų© Ų§Ł„ŁƒŁˆŁŠŲŖ'),
(113015, 92342, 'en', 'name', 'Ministry of Oil'),
(113016, 92343, 'en', 'name', 'EIS AFRICA'),
(113017, 92344, 'id', 'name', 'Institut Agama Kristen Negeri Manado'),
(113018, 92345, 'en', 'name', 'France Stele Institute of Art History'),
(113019, 92345, 'sl', 'name', 'Umetnostnozgodovinski inŔtitut Franceta Steleta'),
(113020, 92346, 'cs', 'name', 'ZdravotnĆ­ Ćŗstav se sĆ­dlem v Ostravě'),
(113021, 92346, 'en', 'name', 'Institute of Health'),
(113022, 92347, 'fr', 'name', 'HƓpital Edouard Herriot'),
(113023, 92348, 'pt', 'name', 'Faculdades Integradas do Vale do IvaĆ­'),
(113024, 92349, 'en', 'name', 'European Bureau of Library, Information and Documentation Associations'),
(113025, 92350, 'en', 'name', 'NOAA National Data Buoy Center'),
(113026, 92351, 'de', 'name', 'Jülich Aachen Research Alliance'),
(113027, 92352, 'en', 'name', 'Rauf Denktas University'),
(113028, 92352, 'tr', 'name', 'Rauf Denktas Üniversitesi'),
(113029, 92353, 'de', 'name', 'Leibniz-Institut für Virologie (LIV)'),
(113030, 92353, 'en', 'name', 'Leibniz Institute of Virology (LIV)'),
(113031, 92354, 'en', 'name', 'St. Jude Children''s Research Hospital'),
(113032, 92355, 'en', 'name', 'Fujita Health University Hospital'),
(113033, 92355, 'ja', 'name', 'č—¤ē”°äæå„č”›ē”Ÿå¤§å­¦ē—…é™¢'),
(113034, 92356, 'es', 'name', 'Instituto Universitario Centro de Docencia, Investigación e Información en Aprendizaje'),
(113035, 92357, 'de', 'name', 'Wasserstraßen-Neubauamt Hannover'),
(113036, 92358, 'it', 'name', 'Regione Toscana'),
(113037, 92359, 'id', 'name', 'Badan Pengelola Dana Perkebunan Kelapa Sawit'),
(113038, 92360, 'en', 'name', 'European Association of Zoos and Aquaria'),
(113039, 92361, 'en', 'name', 'Howard Brain Sciences Foundation'),
(113040, 92362, 'es', 'name', 'Centro Científico Tecnológico - San Luis'),
(113041, 92363, 'es', 'name', 'Hospital de QuipuƩ'),
(113042, 92364, 'en', 'name', 'Packet Clearing House'),
(113043, 92365, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Mulia Pratama'),
(113044, 92366, 'es', 'name', 'Universidad de Ciencias MƩdicas de Villa Clara'),
(113045, 92367, 'en', 'name', 'Institute of Higher Education of NAES of Ukraine'),
(113046, 92367, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вищої освіти ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії пеГагогічних наук Україн'),
(113047, 92368, 'no', 'name', 'L. Meltzers HĆøyskolefond'),
(113048, 92369, 'en', 'name', 'Ministry of Fisheries and Coastal Affairs'),
(113049, 92370, 'en', 'name', 'Alabama Space Grant Consortium'),
(113050, 92371, 'en', 'name', 'Launceston General Hospital'),
(113051, 92372, 'de', 'name', 'Landesarchiv Baden Württemberg'),
(113052, 92373, 'cs', 'name', 'Karel KomĆ”rek Proměny Foundation, Nadace Proměny Karla KomĆ”rka'),
(113053, 92374, 'fr', 'name', 'Centre de Recherche de l''Institut de DƩmographie de l''UniversitƩ Paris 1'),
(113054, 92375, 'en', 'name', 'Minnesota Department of Agriculture'),
(113055, 92376, 'de', 'name', 'Deutsche Diabetes Gesellschaft'),
(113056, 92377, 'en', 'name', 'Marine Environmental Observation Prediction and Response Network'),
(113057, 92378, 'en', 'name', 'Central European University - Budapest Campus'),
(113058, 92379, 'en', 'name', 'International Space Station'),
(113059, 92380, 'en', 'name', 'Pacific Northwest Research Station'),
(113060, 92381, 'de', 'name', 'Fraunhofer-Einrichtung für Wertstoffkreisläufe und Ressourcenstrategie IWKS'),
(113061, 92381, 'en', 'name', 'Fraunhofer Research Institution for Materials Recycling and Resource Strategies IWKS'),
(113062, 92382, 'en', 'name', 'Mercy University'),
(113063, 92383, 'en', 'name', 'Kootenay National Park'),
(113064, 92383, 'fr', 'name', 'Parc national Kootenay'),
(113065, 92384, 'no_lang_code', 'name', 'Australian Pork (Australia)'),
(113066, 92385, 'en', 'name', 'ISEAS - Yusof Ishak Institute, Institute of Southeast Asian Studies'),
(113067, 92385, 'zh', 'name', 'ę±å—äŗžē ”ē©¶ę‰€'),
(113068, 92386, 'en', 'name', 'Thanh Do University'),
(113069, 92386, 'vi', 'name', 'ĐẔi hį»c ThĆ nh ĐƓ'),
(113070, 92387, 'no_lang_code', 'name', 'Trescal'),
(113071, 92388, 'en', 'name', 'Macao Polytechnic University'),
(113072, 92388, 'pt', 'name', 'Universidade PolitƩcnica de Macau'),
(113073, 92388, 'zh', 'name', '澳門理巄大學'),
(113074, 92389, 'id', 'name', 'Politeknik Kesehatan Kemenkes Kendari, Poltekkes Kemenkes Kendari'),
(113075, 92390, 'es', 'name', 'Centro de Recursos Naturales Renovables de la Zona SemiƔrida'),
(113076, 92391, 'en', 'name', 'University of La Sabana'),
(113077, 92391, 'es', 'name', 'Universidad de La Sabana'),
(113078, 92392, 'en', 'name', 'Parkview Mirro Center for Research and Innovation'),
(113079, 92393, 'fr', 'name', 'Centre MƩdical de La Teppe'),
(113080, 92394, 'it', 'name', 'Fondazione di Sardegna'),
(113081, 92395, 'en', 'name', 'Western Illinois University'),
(113082, 92396, 'de', 'name', 'Zentrum für Konstruktive Erziehungswissenschaft'),
(113083, 92397, 'en', 'name', 'Arizona Department of Libraries, Archives and Public Records'),
(113084, 92398, 'en', 'name', 'High School of Music of Sakha'),
(113085, 92399, 'en', 'name', 'Forest Economic Research Institute'),
(113086, 92399, 'ja', 'name', 'ęž—ę„­ēµŒęøˆē ”ē©¶ę‰€'),
(113087, 92400, 'no_lang_code', 'name', 'Sigma Technologies International (United States)'),
(113088, 92401, 'en', 'name', 'Lafoole University'),
(113089, 92401, 'so', 'name', 'Jaamacada Lafoole'),
(113090, 92402, 'en', 'name', 'Monash Health'),
(113091, 92403, 'de', 'name', 'Leibniz-Institut für ökologische Raumentwicklung'),
(113092, 92403, 'en', 'name', 'Leibniz Institute of Ecological Urban and Regional Development'),
(113093, 92404, 'no_lang_code', 'name', 'Phase 3D (United States)'),
(113094, 92405, 'es', 'name', 'Instituto de Investigaciones Fisicoquímicas Teóricas y Aplicadas'),
(113095, 92406, 'en', 'name', 'African Bird Club'),
(113096, 92407, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Ī”ĻŒĪ“ĪæĻ…'),
(113097, 92407, 'en', 'name', 'General Hospital of Rhodes'),
(113098, 92408, 'en', 'name', 'Ukkusiksalik National Park'),
(113099, 92408, 'fr', 'name', 'Parc national Ukkusiksalik'),
(113100, 92409, 'no_lang_code', 'name', 'Vermaat Technics (Netherlands)'),
(113101, 92410, 'ca', 'name', 'PontifĆ­cia Universitat Gregoriana'),
(113102, 92410, 'de', 'name', 'PƤpstliche UniversitƤt Gregoriana'),
(113103, 92410, 'en', 'name', 'Pontifical Gregorian University'),
(113104, 92410, 'fr', 'name', 'UniversitƩ pontificale grƩgorienne'),
(113105, 92410, 'it', 'name', 'Pontificia UniversitĆ  Gregoriana'),
(113106, 92410, 'sl', 'name', 'PapeŔka univerza Gregoriana'),
(113107, 92411, 'no_lang_code', 'name', 'eScire'),
(113108, 92412, 'en', 'name', 'National Center for High Technology'),
(113109, 92412, 'es', 'name', 'Centro Nacional de Alta TecnologĆ­a'),
(113110, 92413, 'de', 'name', 'Deutschen Ornithologen-Gesellschaft e.V.'),
(113111, 92413, 'en', 'name', 'German Ornithologists’ Society'),
(113112, 92414, 'en', 'name', 'National University of Rosario'),
(113113, 92414, 'es', 'name', 'Universidad Nacional de Rosario'),
(113114, 92415, 'en', 'name', 'Indiana Health Information Exchange'),
(113115, 92416, 'en', 'name', 'Crossref'),
(113116, 92417, 'en', 'name', 'NOAA National Weather Service Eastern Region'),
(113117, 92418, 'en', 'name', 'Minerals and Energy Research Institute of Western Australia'),
(113118, 92419, 'en', 'name', 'Theoretical Physics and Mathematics Advancement Foundation ā€œBASISā€'),
(113119, 92419, 'ru', 'name', 'ФонГ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ теоретической физики Šø математики Ā«Š‘ŠŠ—Š˜Š”Ā»'),
(113120, 92420, 'en', 'name', 'Russian State Academy of Intellectual Property'),
(113121, 92420, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŠ½Ń‚ŠµŠ»Š»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Š¾Š¹ собственности'),
(113122, 92421, 'es', 'name', 'Hospital de Sabadell'),
(113123, 92422, 'en', 'name', 'NOAA National Marine Fisheries Service Greater Atlantic Regional Fisheries Office'),
(113124, 92423, 'no_lang_code', 'name', 'State Grid Hebei Electric Power Company'),
(113125, 92423, 'zh', 'name', 'å›½ē½‘ę²³åŒ—ēœē”µåŠ›ęœ‰é™å…¬åø'),
(113126, 92424, 'en', 'name', 'Saint-Petersburg Humanitarian University of Trade Unions'),
(113127, 92425, 'en', 'name', 'Gulf Islands National Park Reserve'),
(113128, 92425, 'fr', 'name', 'RĆ©serve de parc national des Ǝles-Gulf'),
(113129, 92426, 'az', 'name', 'ā€œKROKā€ Universitet'),
(113130, 92426, 'en', 'name', 'KROK University'),
(113131, 92426, 'es', 'name', 'Universidad de ā€œKROKā€'),
(113132, 92426, 'fr', 'name', 'Université «KROK»'),
(113133, 92426, 'ka', 'name', 'įƒ”įƒ™įƒįƒœįƒįƒ›įƒ˜įƒ™įƒ˜įƒ”įƒ įƒ“įƒ įƒ”įƒįƒ›įƒįƒ įƒ—įƒšįƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜ ā€œKROKā€'),
(113134, 92426, 'tr', 'name', 'KROK Üni̇versi̇tesi̇'),
(113135, 92426, 'uk', 'name', 'Університет Ā«ŠšŠ ŠžŠšĀ»'),
(113136, 92427, 'en', 'name', 'Information Processing Society of Japan'),
(113137, 92427, 'ja', 'name', 'ęƒ…å ±å‡¦ē†å­¦ä¼š'),
(113138, 92428, 'no_lang_code', 'name', '3i (United Kingdom)'),
(113139, 92429, 'no_lang_code', 'name', 'OmniVision Technologies (Norway)'),
(113140, 92430, 'no_lang_code', 'name', 'Robert Bosch (United States)'),
(113141, 92431, 'en', 'name', 'Linac Coherent Light Source'),
(113142, 92432, 'no_lang_code', 'name', 'Elektrobit (Germany)'),
(113143, 92433, 'en', 'name', 'National Cancer Institute'),
(113144, 92433, 'es', 'name', 'Instituto Nacional del CƔncer'),
(113145, 92434, 'fr', 'name', 'Sciences Techniques Ɖducation Formation'),
(113146, 92435, 'en', 'name', 'Specialist People Foundation'),
(113147, 92436, 'en', 'name', 'New York University Shanghai'),
(113148, 92436, 'zh', 'name', '上海纽约大学'),
(113149, 92437, 'es', 'name', 'Instituto Geológico Minero y Metalúrgico'),
(113150, 92438, 'tr', 'name', 'Türk Tarih Kurumu'),
(113151, 92439, 'en', 'name', 'Institute of Cognitive and Behavioural Neurology'),
(113152, 92439, 'es', 'name', 'Instituto de NeurologĆ­a Cognitiva'),
(113153, 92440, 'en', 'name', 'Institute of Philosophy'),
(113154, 92440, 'sl', 'name', 'Filozofski inŔtitut'),
(113155, 92441, 'en', 'name', 'Shanghai Theatre Academy'),
(113156, 92441, 'zh', 'name', 'äøŠęµ·ęˆå‰§å­¦é™¢'),
(113157, 92442, 'fr', 'name', 'ISEN MƩditerranƩe'),
(113158, 92443, 'en', 'name', 'Canadian University Society for Intercollegiate Debate'),
(113159, 92444, 'fr', 'name', 'AcadƩmie de recherche et d''enseignement supƩrieur'),
(113160, 92445, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ…'),
(113161, 92445, 'en', 'name', 'Ministry of Education'),
(113162, 92446, 'en', 'name', 'National Centre for the Replacement Refinement and Reduction of Animals in Research'),
(113163, 92447, 'no_lang_code', 'name', 'Advantech (United States)'),
(113164, 92448, 'en', 'name', 'Beijing Municipal Ecology and Environment Bureau'),
(113165, 92448, 'zh', 'name', 'åŒ—äŗ¬åø‚ē”Ÿę€ēŽÆå¢ƒå±€'),
(113166, 92449, 'fr', 'name', 'Institut Nanosciences et CryogƩnie'),
(113167, 92450, 'no_lang_code', 'name', 'Sovremennyi Gomunitarnyi University'),
(113168, 92451, 'ja', 'name', 'å¤§é˜ŖåŒ—é€“äæ”ē—…é™¢'),
(113169, 92451, 'no_lang_code', 'name', 'Osakakita Teishin Hospital'),
(113170, 92452, 'en', 'name', 'American Studies Association'),
(113171, 92453, 'es', 'name', 'Centro de Investigación Epidemiológica en Salud Sexual y Reproductiva'),
(113172, 92454, 'en', 'name', 'Experimental Security University'),
(113173, 92455, 'en', 'name', 'Sociomedical Institute'),
(113174, 92455, 'sl', 'name', 'Družbenomedicinski inŔtitut'),
(113175, 92456, 'en', 'name', 'Serlin Maternity Hospital'),
(113176, 92457, 'es', 'name', 'Universidad Privada Del Chaco'),
(113177, 92458, 'en', 'name', 'Italian University Line'),
(113178, 92458, 'it', 'name', 'UniversitĆ  telematica'),
(113179, 92459, 'en', 'name', 'Dayton Children''s Hospital'),
(113180, 92460, 'az', 'name', 'Bakı Asiya Universiteti'),
(113181, 92461, 'en', 'name', 'Ufa University of Science and Technology'),
(113182, 92461, 'ru', 'name', 'Уфимский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ науки Šø технологий'),
(113183, 92462, 'en', 'name', 'National Sugar Institute'),
(113184, 92463, 'it', 'name', 'Biblioteca di Storia Moderna e Contemporanea'),
(113185, 92464, 'en', 'name', 'Nuclear Energy Research Institute'),
(113186, 92465, 'en', 'name', 'Gemini South Observatory'),
(113187, 92466, 'en', 'name', 'EMERGENCY'),
(113188, 92467, 'en', 'name', 'National Metrology Laboratory of the Philippines'),
(113189, 92468, 'en', 'name', 'Research England'),
(113190, 92469, 'fr', 'name', 'UniversitƩ William Booth'),
(113191, 92470, 'en', 'name', 'NOAA National Weather Service Office of Science and Technology Integration'),
(113192, 92471, 'fr', 'name', 'Ɖcole Nationale d''Administration'),
(113193, 92472, 'da', 'name', 'William Demant Fonden'),
(113194, 92472, 'en', 'name', 'Oticon Foundation'),
(113195, 92473, 'en', 'name', 'The Finnish Foundation for Nature Conservation'),
(113196, 92473, 'fi', 'name', 'Suomen Luonnonsuojelun SƤƤtiƶ'),
(113197, 92473, 'sv', 'name', 'Naturskyddsstiftelsen i Finland'),
(113198, 92474, 'es', 'name', 'Real Sociedad EspaƱola de Quƭmica'),
(113199, 92475, 'en', 'name', 'Alagappa Chettiar Government College of Engineering and Technology'),
(113200, 92476, 'en', 'name', 'Argosy University'),
(113201, 92477, 'en', 'name', 'Near East University'),
(113202, 92477, 'tr', 'name', 'Yakın Doğu Üniversitesi'),
(113203, 92478, 'en', 'name', 'Indonesian Agency for Agricultural Instruments Standardization'),
(113204, 92478, 'id', 'name', 'Badan Standardisasi Instrumen Pertanian'),
(113205, 92479, 'en', 'name', 'Maine Space Grant Consortium'),
(113206, 92480, 'no_lang_code', 'name', 'Research Institute of Measuring Devices (Russia)'),
(113207, 92480, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŠ·Š¼ŠµŃ€ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… приборов — ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ завоГ имени ŠšŠ¾Š¼ŠøŠ½Ń‚ерна'),
(113208, 92481, 'en', 'name', 'Banner - University Medical Center Tucson'),
(113209, 92481, 'es', 'name', 'Centro mƩdico de la Universidad de Arizona'),
(113210, 92482, 'en', 'name', 'HM Prison Service'),
(113211, 92483, 'en', 'name', 'The Courtald Institute of Art'),
(113212, 92484, 'en', 'name', 'Hitachi Global Foundation'),
(113213, 92484, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ē«‹č²”å›£'),
(113214, 92485, 'no_lang_code', 'name', 'Humanitarian Institute'),
(113215, 92485, 'ru', 'name', 'Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(113216, 92486, 'no_lang_code', 'name', 'John Wiley & Sons (United States)'),
(113217, 92487, 'en', 'name', 'Supreme Court of the United States'),
(113218, 92488, 'en', 'name', 'National Consensus Project for Quality Palliative Care'),
(113219, 92489, 'en', 'name', 'Ho Chi Minh City University of Culture'),
(113220, 92489, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Văn hóa ThĆ nh phố Hồ ChĆ­ Minh'),
(113221, 92490, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Switzerland)'),
(113222, 92491, 'id', 'name', 'Universitas Indonesia Membangun'),
(113223, 92492, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture et de Paysage de Lille'),
(113224, 92493, 'en', 'name', 'Showa University Koto Toyosu Hospital'),
(113225, 92493, 'ja', 'name', 'ę˜­å’Œå¤§å­¦ę±Ÿę±č±Šę“²ē—…é™¢'),
(113226, 92494, 'de', 'name', 'Doerner Institut'),
(113227, 92495, 'no_lang_code', 'name', 'BioReka (United States)'),
(113228, 92496, 'en', 'name', 'Grains Research and Development Corporation'),
(113229, 92497, 'en', 'name', 'Takeda Science Foundation'),
(113230, 92497, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę­¦ē”°ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(113231, 92498, 'en', 'name', 'Virginia Innovation Partnership Corporation'),
(113232, 92499, 'no_lang_code', 'name', 'Sustainable Innovations Europe (Spain)'),
(113233, 92500, 'en', 'name', 'U.S. Coastal Research Program'),
(113234, 92501, 'en', 'name', 'Association of Universities For Research In Astronomy'),
(113235, 92502, 'en', 'name', 'Laikipia University'),
(113236, 92503, 'de', 'name', 'Herzog August Bibliothek'),
(113237, 92503, 'en', 'name', 'Herzog August Library'),
(113238, 92504, 'en', 'name', 'Rhode Island Foundation'),
(113239, 92505, 'en', 'name', 'Swedish Environmental Protection Agency'),
(113240, 92505, 'fi', 'name', 'Ruotsin luonnonsuojeluvirasto'),
(113241, 92505, 'sv', 'name', 'NaturvƄrdsverket'),
(113242, 92506, 'en', 'name', 'Technological University Lashio'),
(113243, 92507, 'cu', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š°ŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ по воГите'),
(113244, 92507, 'en', 'name', 'Bulgarian Water Association'),
(113245, 92508, 'en', 'name', 'Estonian Literary Museum'),
(113246, 92508, 'et', 'name', 'Eesti Kirjandusmuuseum'),
(113247, 92509, 'en', 'name', 'University of Puerto Rico System'),
(113248, 92509, 'es', 'name', 'Universidad de Puerto Rico'),
(113249, 92510, 'en', 'name', 'Delphi University'),
(113250, 92511, 'en', 'name', 'Ames Aeronautical Laboratory'),
(113251, 92512, 'en', 'name', 'Triangle Center for Evolutionary Medicine'),
(113252, 92513, 'en', 'name', 'Health & Hospital Corporation of Marion County'),
(113253, 92514, 'en', 'name', 'HCR Manor Care'),
(113254, 92515, 'en', 'name', 'Costa Rican Institute of Electricity'),
(113255, 92515, 'es', 'name', 'Instituto Costarricense de Electricidad'),
(113256, 92516, 'en', 'name', 'International Psychogeriatric Association'),
(113257, 92517, 'en', 'name', 'University Hospital of North Staffordshire NHS Trust'),
(113258, 92518, 'no_lang_code', 'name', 'MGI'),
(113259, 92518, 'zh', 'name', 'åŽå¤§ę™ŗé€ '),
(113260, 92519, 'en', 'name', 'Yunnan Provincial Department of Education'),
(113261, 92519, 'zh', 'name', 'äŗ‘å—ēœę•™č‚²åŽ…'),
(113262, 92520, 'en', 'name', 'South Carolina Department of Alcohol and Other Drug Abuse Services'),
(113263, 92521, 'no_lang_code', 'name', 'Sicambeni Rural University'),
(113264, 92522, 'en', 'name', 'Brighton International University'),
(113265, 92523, 'no_lang_code', 'name', 'AmƩlie - Ʃtudes environnementales et archƩologiques (France)'),
(113266, 92524, 'en', 'name', 'NASA Safety Center'),
(113267, 92525, 'en', 'name', 'Hawaii Space Grant Consortium'),
(113268, 92526, 'en', 'name', 'Ministry of Electronics and Information Technology'),
(113269, 92526, 'hi', 'name', 'ą¤‡ą¤²ą„‡ą¤•ą„ą¤Ÿą„ą¤°ą„‰ą¤Øą¤æą¤•ą„€ और ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(113270, 92527, 'fr', 'name', 'Diabète athérothrombose et thérapies Réunion Océan Indien'),
(113271, 92528, 'en', 'name', 'Murayama Medical Center'),
(113272, 92528, 'ja', 'name', 'å›½ē«‹ē—…é™¢ę©Ÿę§‹ ę‘å±±åŒ»ē™‚ć‚»ćƒ³ć‚æ'),
(113273, 92529, 'en', 'name', 'Manipal University College Malaysia'),
(113274, 92530, 'no_lang_code', 'name', 'Shire (Australia)'),
(113275, 92531, 'en', 'name', 'Meat & Livestock Australia'),
(113276, 92532, 'en', 'name', 'Judith Jane Mason and Harold Stannett Williams Memorial Foundation'),
(113277, 92533, 'en', 'name', 'Center for Social Inclusion'),
(113278, 92534, 'no_lang_code', 'name', 'Fidelity Comtech (United States)'),
(113279, 92535, 'en', 'name', 'Chinese People''s Liberation Army Navy Hospital of Guangzhou'),
(113280, 92536, 'de', 'name', 'Ɩsterreichische Gesellschaft für Neurowissenschaften'),
(113281, 92536, 'en', 'name', 'Austrian Neuroscience Association'),
(113282, 92537, 'en', 'name', 'International Federation of Library Associations and Institutions'),
(113283, 92538, 'en', 'name', 'Muscular Dystrophy UK'),
(113284, 92539, 'ja', 'name', 'ć‚·ćƒŽćƒ†ć‚¹ćƒˆ'),
(113285, 92539, 'no_lang_code', 'name', 'Shino-Test Corporation'),
(113286, 92540, 'en', 'name', 'Korea Hydrographic and Oceanographic Agency'),
(113287, 92540, 'ko', 'name', '국립핓양씰사원'),
(113288, 92540, 'zh', 'name', 'åœ‹ē«‹ęµ·ę“‹čŖæęŸ»é™¢'),
(113289, 92541, 'en', 'name', 'University of Hong Kong'),
(113290, 92542, 'fr', 'name', 'REseau NAtional de Rpe interDisciplinaire'),
(113291, 92543, 'en', 'name', 'Stockholm County Council'),
(113292, 92543, 'fi', 'name', 'Tukholman lƤƤnin maakƤrƤjƤkunta'),
(113293, 92543, 'sv', 'name', 'Stockholms lƤns landsting'),
(113294, 92544, 'en', 'name', 'Shanghai Hospital Development Center'),
(113295, 92544, 'zh', 'name', 'äøŠęµ·ē”³åŗ·åŒ»é™¢å‘å±•äø­åæƒ'),
(113296, 92545, 'en', 'name', 'Noble Research Institute'),
(113297, 92546, 'es', 'name', 'Ministerio de Salud PĆŗblica'),
(113298, 92547, 'en', 'name', 'Center for the Advancement of Science in Space'),
(113299, 92548, 'en', 'name', 'Veterinary Research Institute'),
(113300, 92549, 'cs', 'name', 'Ekodomov'),
(113301, 92550, 'en', 'name', 'Minnesota Soybean Research and Promotion Council'),
(113302, 92551, 'en', 'name', 'SRH Berlin School of Design and Communication'),
(113303, 92552, 'en', 'name', 'National Institute of Telecommunications'),
(113304, 92553, 'en', 'name', 'CSIR National Physical Laboratory of India'),
(113305, 92553, 'hi', 'name', 'ą¤øą„€ą¤ą¤øą¤†ą¤ˆą¤†ą¤°-ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤­ą„Œą¤¤ą¤æą¤• ą¤Ŗą„ą¤°ą¤Æą„‹ą¤—ą¤¶ą¤¾ą¤²ą¤¾'),
(113306, 92554, 'es', 'name', 'Universidad Nacional Experimental Sur del Lago "JesĆŗs MarĆ­a Semprum"'),
(113307, 92555, 'en', 'name', 'Divine Mercy University'),
(113308, 92556, 'en', 'name', 'Nordic Cancer Union'),
(113309, 92557, 'no_lang_code', 'name', 'Librede (United States)'),
(113310, 92558, 'en', 'name', 'Westerdijk Fungal Biodiversity Institute'),
(113311, 92559, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سيدة Ų§Ł„Ł„ŁˆŁŠŲ²Ų©'),
(113312, 92559, 'en', 'name', 'Notre Dame University – Louaize'),
(113313, 92560, 'en', 'name', 'Offield Family Foundation'),
(113314, 92561, 'en', 'name', 'Moscow Psycho-Social University'),
(113315, 92561, 'ru', 'name', 'Московский психолого-ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(113316, 92562, 'en', 'name', 'NOAA Physical Sciences Laboratory'),
(113317, 92563, 'en', 'name', 'Shanghai Science and Technology Development Foundation'),
(113318, 92563, 'zh', 'name', 'äøŠęµ·ē§‘ęŠ€å‘å±•åŸŗé‡‘ä¼š'),
(113319, 92564, 'en', 'name', 'Canada’s Oil Sands Innovation Alliance'),
(113320, 92565, 'no_lang_code', 'name', 'Yuracko and Hewitt Sustainable Global Solutions (United States)'),
(113321, 92566, 'es', 'name', 'Universidad Pedagógica Veracruzana'),
(113322, 92567, 'de', 'name', 'Fritz Bauer Institut'),
(113323, 92568, 'en', 'name', 'Scientific Advanced Learning Technologies'),
(113324, 92568, 'hi', 'name', 'ą¤øą¤¾ą¤‡ą¤‚ą¤Ÿą¤æą¤«ą¤æą¤• ą¤ą¤”ą¤µą¤¾ą¤‚ą¤ø ą¤²ą¤°ą„ą¤Øą¤æą¤‚ą¤— ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€ą¤œ (ą¤ą¤øą¤ą¤ą¤²ą¤Ÿą„€) ą¤Ÿą„ą¤°ą¤øą„ą¤Ÿ'),
(113325, 92569, 'en', 'name', 'Department of Local Government, Sport and Cultural Industries'),
(113326, 92570, 'en', 'name', 'Webster University Orlando'),
(113327, 92571, 'no_lang_code', 'name', 'Helix Biostructures (United States)'),
(113328, 92572, 'es', 'name', 'Instituto de Fisica de Liquidos y Sistemas Biologicos'),
(113329, 92573, 'en', 'name', 'Jinja District Health Directorate'),
(113330, 92574, 'en', 'name', 'Graduate Fellowships for STEM Diversity'),
(113331, 92575, 'no', 'name', 'Oslo Nye HĆøyskole'),
(113332, 92576, 'sv', 'name', 'Waldemar von Frenckells Stiftelse'),
(113333, 92577, 'no_lang_code', 'name', 'Syngenta (France)'),
(113334, 92578, 'en', 'name', 'Youth Innovation Promotion Association'),
(113335, 92578, 'zh', 'name', 'é™¢é’å¹“åˆ›ę–°äæƒčæ›ä¼š'),
(113336, 92579, 'no_lang_code', 'name', 'Nuance Communications (United States)'),
(113337, 92580, 'en', 'name', 'Biochemical Society'),
(113338, 92581, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Weser'),
(113339, 92582, 'en', 'name', 'Chinese Academy of Agricultural Sciences'),
(113340, 92582, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢'),
(113341, 92583, 'en', 'name', 'Krasnoyarsk State Agrarian University'),
(113342, 92583, 'ru', 'name', 'ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(113343, 92584, 'en', 'name', 'Office of Scientific and Technical Information'),
(113344, 92585, 'en', 'name', 'Peer Community In'),
(113345, 92586, 'es', 'name', 'Instituto de GeografĆ­a Tropical'),
(113346, 92587, 'de', 'name', 'Krankenhaus der Barmherzigen Brüder Wien'),
(113347, 92587, 'en', 'name', 'Hospital of the Brothers of St. John of God'),
(113348, 92588, 'en', 'name', 'Guyana National Bureau of Standards'),
(113349, 92589, 'en', 'name', 'Northern Ireland Chest Heart and Stroke'),
(113350, 92590, 'en', 'name', 'Bangladesh Reference Institute for Chemical Measurements'),
(113351, 92591, 'en', 'name', 'Penang Adventist Hospital'),
(113352, 92591, 'ms', 'name', 'Hospital Adventist'),
(113353, 92591, 'zh', 'name', 'ę§Ÿå®‰åŒ»é™¢'),
(113354, 92592, 'en', 'name', 'Institute of Slovenian Ethnology'),
(113355, 92592, 'sl', 'name', 'InŔtitut za slovensko narodopisje'),
(113356, 92593, 'en', 'name', 'International University of Batam'),
(113357, 92593, 'id', 'name', 'Universitas Internasional Batam'),
(113358, 92594, 'en', 'name', 'Earth-Life Science Institute'),
(113359, 92595, 'en', 'name', 'CODELCO'),
(113360, 92596, 'en', 'name', 'Institute of Sustainable Halophyte Utilization'),
(113361, 92597, 'en', 'name', 'Meteorological Research Institute'),
(113362, 92597, 'ja', 'name', '気豔庁気豔研究所'),
(113363, 92598, 'en', 'name', 'Jeppiaar Engineering College'),
(113364, 92598, 'ta', 'name', 'ą®œąÆ†ą®ŖąÆą®Ŗą®æą®Æą®¾ą®°ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(113365, 92599, 'no_lang_code', 'name', 'Mahle (Germany)'),
(113366, 92600, 'no_lang_code', 'name', 'Sylvatex (United States)'),
(113367, 92601, 'en', 'name', 'University of Wisconsin–Milwaukee'),
(113368, 92601, 'es', 'name', 'Universidad de Wisconsin–Milwaukee'),
(113369, 92601, 'fr', 'name', 'UniversitĆ© du Wisconsin–Milwaukee'),
(113370, 92602, 'en', 'name', 'The Dulverton Trust'),
(113371, 92603, 'en', 'name', 'Forest Products Laboratory'),
(113372, 92604, 'en', 'name', 'Shanghai University of International Business and Economics'),
(113373, 92604, 'zh', 'name', 'äøŠęµ·åÆ¹å¤–ē»č“øå¤§å­¦'),
(113374, 92605, 'en', 'name', 'Worldwide Cancer Research'),
(113375, 92606, 'ja', 'name', 'ęœ¬ćƒ”ćƒ‰ćƒˆćƒ­ćƒ‹ćƒƒć‚Æę Ŗå¼ä¼šē¤¾'),
(113376, 92606, 'no_lang_code', 'name', 'Medtronic (Japan)'),
(113377, 92607, 'no_lang_code', 'name', 'AlphaPortfolio (United States)'),
(113378, 92608, 'no_lang_code', 'name', 'Protagonist Therapeutics (Australia)'),
(113379, 92609, 'cs', 'name', 'EvropskƩ hodnoty'),
(113380, 92609, 'en', 'name', 'European Values'),
(113381, 92610, 'cs', 'name', 'Centrum pro regionÔlní rozvoj České republiky'),
(113382, 92610, 'en', 'name', 'Centre for Regional Development of the Czech Republic'),
(113383, 92611, 'en', 'name', 'Illinois Arts Council Agency'),
(113384, 92612, 'id', 'name', 'Institut Teknologi dan Bisnis Palcomtech'),
(113385, 92613, 'en', 'name', 'Jiangsu Ocean University'),
(113386, 92613, 'zh', 'name', 'ę±Ÿč‹ęµ·ę“‹å¤§å­¦'),
(113387, 92614, 'en', 'name', 'Portland Press'),
(113388, 92615, 'en', 'name', 'Environmental Smoke Institute'),
(113389, 92616, 'no_lang_code', 'name', 'Ion Beam Applications (France)'),
(113390, 92617, 'no_lang_code', 'name', 'First Consulting Group (United States)'),
(113391, 92618, 'en', 'name', 'Kaloji Narayana Rao University of Health Sciences'),
(113392, 92618, 'te', 'name', 'ą°•ą°¾ą°³ą±‹ą°œą°æ నారాయణ రావు ą°†ą°°ą±‹ą°—ą±ą°Æ ą°µą°æą°œą±ą°žą°¾ą°Ø ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(113393, 92619, 'no_lang_code', 'name', 'EVER Neuro Pharma (Austria)'),
(113394, 92620, 'en', 'name', 'University of Tennessee Southern'),
(113395, 92621, 'en', 'name', 'Cornell High Energy Synchrotron Source'),
(113396, 92622, 'en', 'name', 'Minerals Research Institute of Western Australia'),
(113397, 92623, 'de', 'name', 'Ernst Gƶhner Stiftung'),
(113398, 92624, 'en', 'name', 'Ministry of Science ICT and Future Planning'),
(113399, 92624, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ėÆøėž˜ģ°½ģ”°ź³¼ķ•™ė¶€'),
(113400, 92625, 'de', 'name', 'Diözesanbibliothek Münster'),
(113401, 92626, 'en', 'name', 'MAR Health Park'),
(113402, 92626, 'es', 'name', 'Parc de Salut'),
(113403, 92627, 'en', 'name', 'Institute of Technology Sligo'),
(113404, 92627, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta Sligeach'),
(113405, 92628, 'no_lang_code', 'name', 'RECETOX'),
(113406, 92629, 'en', 'name', 'Korea Institute of Ocean Science and Technology'),
(113407, 92630, 'en', 'name', 'Doctors Without Borders'),
(113408, 92630, 'fr', 'name', 'Médecins Sans Frontières'),
(113409, 92631, 'de', 'name', 'Fachhochschule Oldenburg/Ostfriesland/Wilhelmshaven'),
(113410, 92632, 'en', 'name', 'Casey Hospital'),
(113411, 92633, 'en', 'name', 'Autonomous University of YucatƔn'),
(113412, 92633, 'es', 'name', 'Universidad Autónoma de YucatÔn');
INSERT INTO `ror_settings` VALUES
(113413, 92634, 'en', 'name', 'Niemann Pick Research Foundation'),
(113414, 92635, 'no_lang_code', 'name', 'Zymtronix (United States)'),
(113415, 92636, 'en', 'name', 'Lyda Hill Philanthropies'),
(113416, 92637, 'no_lang_code', 'name', 'Enject (United States)'),
(113417, 92638, 'en', 'name', 'United States Science Support Program'),
(113418, 92639, 'en', 'name', 'Interactive Advertising Bureau (United States)'),
(113419, 92640, 'en', 'name', 'St.Vincent Health'),
(113420, 92641, 'fr', 'name', 'MorphogenĆØse du coeur'),
(113421, 92642, 'en', 'name', 'Batumi Independent University'),
(113422, 92643, 'de', 'name', 'Theresianische MilitƤrakademie'),
(113423, 92643, 'en', 'name', 'Theresian Military Academy'),
(113424, 92644, 'en', 'name', 'Jilin Province Development and Reform Commission'),
(113425, 92645, 'de', 'name', 'Technologie-Institut für Metall und Engineering (TIME)'),
(113426, 92646, 'en', 'name', 'Ukrainian Museum'),
(113427, 92647, 'no_lang_code', 'name', 'Danube Integrated Circuit Engineering (Austria)'),
(113428, 92648, 'ja', 'name', 'ę—„ē«‹ćƒć‚¤ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗ'),
(113429, 92648, 'no_lang_code', 'name', 'Hitachi High-Tech (Japan)'),
(113430, 92649, 'en', 'name', 'Banner Poison and Drug Information Center'),
(113431, 92650, 'no_lang_code', 'name', 'Conagra Brands (United States)'),
(113432, 92651, 'en', 'name', 'AgriFutures Australia'),
(113433, 92652, 'en', 'name', 'Wenner-Gren Foundations'),
(113434, 92653, 'de', 'name', 'Bauhaus-UniversitƤt Weimar'),
(113435, 92654, 'en', 'name', 'Agrifood Research and Technology Centre of Aragon'),
(113436, 92654, 'es', 'name', 'Centro de Investigación y Tecnología Agroalimentaria de Aragón'),
(113437, 92655, 'es', 'name', 'Centro de Estudios Tecnológicos y Universitarios'),
(113438, 92656, 'en', 'name', 'Philomathia Foundation'),
(113439, 92657, 'en', 'name', 'Sheppard and Lapsley Presbyterian University of Congo'),
(113440, 92658, 'en', 'name', 'NOAA National Marine Fisheries Service'),
(113441, 92659, 'en', 'name', 'GambleAware'),
(113442, 92660, 'en', 'name', 'Khmelnytskyi Humanitarian-Pedagogical Academy'),
(113443, 92660, 'uk', 'name', 'Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ° Š³ŃƒŠ¼Š°Š½Ń–Ń‚Š°Ń€Š½Š¾-пеГагогічна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(113444, 92661, 'en', 'name', 'NIHR Great Ormond Street Hospital Biomedical Research Centre'),
(113445, 92662, 'no_lang_code', 'name', 'Advanced Accelerator Applications (Italy)'),
(113446, 92663, 'en', 'name', 'Pears Foundation'),
(113447, 92664, 'en', 'name', 'Henri-Mondor University Hospital'),
(113448, 92664, 'fr', 'name', 'HƓpitaux Universitaires Henri-Mondor'),
(113449, 92665, 'de', 'name', 'Alemannisches Institut'),
(113450, 92666, 'fr', 'name', 'Centre d’Investigation Clinique 1436'),
(113451, 92667, 'no_lang_code', 'name', 'UCB Pharma (United Kingdom)'),
(113452, 92668, 'no_lang_code', 'name', 'Lucid Motors (United States)'),
(113453, 92669, 'en', 'name', 'Nobel Foundation'),
(113454, 92669, 'fi', 'name', 'Nobelin sƤƤtiƶ'),
(113455, 92669, 'sv', 'name', 'Nobelstiftelsen'),
(113456, 92670, 'en', 'name', 'Institute for Condensed Matter Physics of the National Academy of Sciences of Ukraine'),
(113457, 92670, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ фізики конГенсованих систем'),
(113458, 92671, 'de', 'name', 'Stiftung Datenschutz'),
(113459, 92671, 'en', 'name', 'Foundation for Data Protection'),
(113460, 92672, 'es', 'name', 'Instituto Superior Pedro Francisco Bono'),
(113461, 92673, 'no_lang_code', 'name', 'Aker Solutions (Norway)'),
(113462, 92674, 'en', 'name', 'National Institute of Airborne Acoustic Metrology'),
(113463, 92675, 'es', 'name', 'Instituto de Historia Argentina y Americana "Dr. Emilio Ravignani"'),
(113464, 92676, 'en', 'name', 'Ministry of Economy, Industry and Competitiveness'),
(113465, 92676, 'es', 'name', 'Ministerio de EconomĆ­a, Industria y Competitividad'),
(113466, 92677, 'no_lang_code', 'name', 'R.B. Toth Associates'),
(113467, 92678, 'de', 'name', 'Bauer-Hollmann Stiftung'),
(113468, 92679, 'en', 'name', 'Ascension St. Clare''s Hospital'),
(113469, 92680, 'no_lang_code', 'name', 'Cryopep (France)'),
(113470, 92681, 'en', 'name', 'Shushrusha Citizens'' Co-operative Hospital'),
(113471, 92682, 'no_lang_code', 'name', 'Bayer (United States)'),
(113472, 92683, 'en', 'name', 'Kingston Centre'),
(113473, 92684, 'en', 'name', 'Tokai University Tokyo Hospital'),
(113474, 92684, 'ja', 'name', 'ę±ęµ·å¤§å­¦åŒ»å­¦éƒØä»˜å±žę±äŗ¬ē—…é™¢'),
(113475, 92685, 'fr', 'name', 'Institut des ingƩnieurs Ʃlectriciens et Ʃlectroniciens'),
(113476, 92685, 'no_lang_code', 'name', 'Institute of Electrical and Electronics Engineers'),
(113477, 92686, 'en', 'name', 'International Union for Circumpolar Health'),
(113478, 92687, 'fr', 'name', 'Epicentre'),
(113479, 92688, 'en', 'name', 'Hai phong University Of Medicine and Pharmacy'),
(113480, 92689, 'es', 'name', 'Universidad Tecnológico de Baja California'),
(113481, 92690, 'no_lang_code', 'name', 'Fenris Technologies (United States)'),
(113482, 92691, 'es', 'name', 'Universidad de Ecatepec'),
(113483, 92692, 'en', 'name', 'Manash Kozybayev North Kazakhstan University'),
(113484, 92692, 'kk', 'name', 'М.ŅšŠ¾Š·Ń‹Š±Š°ŠµŠ² атынГағы Долтүстік ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(113485, 92692, 'ru', 'name', 'Деверо-ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени М.ŠšŠ¾Š·Ń‹Š±Š°ŠµŠ²Š°'),
(113486, 92693, 'en', 'name', 'Arctic Goose Joint Venture'),
(113487, 92693, 'es', 'name', 'Proyecto Conjunto para el Ganso del Ɓrtico'),
(113488, 92693, 'fr', 'name', 'Plan conjoint des OIES de l''Arctique'),
(113489, 92694, 'es', 'name', 'Escriba. Escuela de Escritores'),
(113490, 92695, 'no_lang_code', 'name', 'Deloitte (Czechia)'),
(113491, 92696, 'en', 'name', 'Federal Center of Brain Research and Neurotechnologies'),
(113492, 92696, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ центр мозга Šø нейротехнологий» Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(113493, 92697, 'en', 'name', 'Lake Erie College of Osteopathic Medicine'),
(113494, 92698, 'en', 'name', 'Council of Agriculture'),
(113495, 92699, 'en', 'name', 'Gatot Soebroto Army Hospital'),
(113496, 92699, 'id', 'name', 'Rumah Sakit Pusat Angkatan Darat Gatot Soebroto'),
(113497, 92700, 'no_lang_code', 'name', 'PreClinOmics (United States)'),
(113498, 92701, 'en', 'name', 'Technological University Pathein'),
(113499, 92702, 'en', 'name', 'Lithuanian Academy of Sciences'),
(113500, 92702, 'lt', 'name', 'Lietuvos mokslų akademija'),
(113501, 92702, 'pl', 'name', 'Litewska Akademia Nauk'),
(113502, 92702, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Литвы'),
(113503, 92703, 'no_lang_code', 'name', 'Axion Therapeutics (United States)'),
(113504, 92704, 'en', 'name', 'Magtymguly Turkmen State University'),
(113505, 92704, 'tk', 'name', 'Magtymguly adyndaky Türkmen döwlet uniwersiteti'),
(113506, 92705, 'en', 'name', 'JƩrƓme Lejeune Foundation'),
(113507, 92706, 'en', 'name', 'Center for Studies and Research on Organizations and Strategy'),
(113508, 92706, 'fr', 'name', 'Centre d''Ʃtudes et de recherches sur les organisations et la stratƩgie'),
(113509, 92707, 'en', 'name', 'Global Environment Fund'),
(113510, 92708, 'no_lang_code', 'name', 'BlueGreen Labs (bv) (Belgium)'),
(113511, 92709, 'fr', 'name', 'L''HƓpital Universitaire Justinien'),
(113512, 92710, 'no_lang_code', 'name', 'BIOVIA'),
(113513, 92711, 'en', 'name', 'New Uzbekistan University'),
(113514, 92711, 'uz', 'name', 'Yangi O''zbekiston Universiteti'),
(113515, 92712, 'en', 'name', 'Italian institute for Genomic Medicine'),
(113516, 92713, 'de', 'name', 'UniversitƤt Erfurt'),
(113517, 92713, 'en', 'name', 'University of Erfurt'),
(113518, 92714, 'en', 'name', 'Hanoi National University of Education'),
(113519, 92714, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m HĆ  Nį»™i'),
(113520, 92715, 'en', 'name', 'American School of Classical Studies at Athens'),
(113521, 92716, 'en', 'name', 'National Institute of Statistics and Geography'),
(113522, 92716, 'es', 'name', 'Instituto Nacional de EstadĆ­stica y GeografĆ­a'),
(113523, 92717, 'pt', 'name', 'Autoridade de Supervisão de Seguros e Fundos de Pensões'),
(113524, 92718, 'en', 'name', 'National Botanical Research Institute'),
(113525, 92719, 'en', 'name', 'Christian Museum'),
(113526, 92720, 'es', 'name', 'Universidad Cristiana Latinoamericana'),
(113527, 92721, 'no_lang_code', 'name', 'Formulate (Sweden)'),
(113528, 92722, 'en', 'name', 'Pacific Southwest Research Station'),
(113529, 92723, 'en', 'name', 'Institute for Medical Research'),
(113530, 92723, 'es', 'name', 'Instituto de Investigaciones MƩdicas'),
(113531, 92724, 'ar', 'name', 'الجهاز Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ Ł„Ł„ŲŖŁ‚ŁŠŁŠŲ³ ŁˆŲ§Ł„Ų³ŁŠŲ·Ų±Ų© Ų§Ł„Ł†ŁˆŲ¹ŁŠŲ©'),
(113532, 92724, 'en', 'name', 'Central Organization for Standardization and Quality Control'),
(113533, 92725, 'en', 'name', 'California Ocean Protection Council'),
(113534, 92726, 'en', 'name', 'ESCP Business School'),
(113535, 92727, 'en', 'name', 'Institute for Soil Sciences'),
(113536, 92727, 'hu', 'name', 'Talajtani IntƩzet'),
(113537, 92728, 'en', 'name', 'Autistica'),
(113538, 92729, 'bs', 'name', 'Univerzitet u Tuzli'),
(113539, 92729, 'en', 'name', 'University of Tuzla'),
(113540, 92729, 'sr', 'name', 'Универзитет у Тузли'),
(113541, 92730, 'fr', 'name', 'UniversitƩ PrivƩe d''Enseignement SupƩrieur El Amel'),
(113542, 92731, 'en', 'name', 'St Savas Hospital'),
(113543, 92732, 'en', 'name', 'Singapore General Hospital'),
(113544, 92732, 'ms', 'name', 'Hospital Besar Singapura'),
(113545, 92732, 'ta', 'name', 'ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®¤ąÆ‡ą®šą®æą®Æ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(113546, 92733, 'en', 'name', 'Clinical Research Unit Nanoro'),
(113547, 92734, 'en', 'name', 'Waiariki Institute of Technology'),
(113548, 92734, 'mi', 'name', 'Whare Takiura o Waiariki'),
(113549, 92735, 'en', 'name', 'Conservation Action Research Network'),
(113550, 92736, 'de', 'name', 'Forschungszentrum Borstel - Leibniz Lungenzentrum'),
(113551, 92736, 'en', 'name', 'Research Center Borstel - Leibniz Lung Center'),
(113552, 92737, 'es', 'name', 'Instituto Tecnológico de las Américas'),
(113553, 92738, 'id', 'name', 'Politeknik Negeri Tanah Laut'),
(113554, 92739, 'no_lang_code', 'name', 'Best Theratronics (Canada)'),
(113555, 92740, 'ja', 'name', 'ć‚¢ćƒƒćƒ“ć‚£åˆåŒä¼šē¤¾'),
(113556, 92740, 'no_lang_code', 'name', 'AbbVie (Japan)'),
(113557, 92741, 'en', 'name', 'North Bristol NHS Trust'),
(113558, 92742, 'no_lang_code', 'name', 'Fluor Marine Propulsion (United States)'),
(113559, 92743, 'en', 'name', 'Usman Institute of Technology'),
(113560, 92744, 'pt', 'name', 'Instituto Histórico da Ilha Terceira'),
(113561, 92745, 'no_lang_code', 'name', 'Swiss Re (Switzerland)'),
(113562, 92746, 'es', 'name', 'Fundación Williams'),
(113563, 92747, 'en', 'name', 'MRC Metabolic Diseases Unit'),
(113564, 92748, 'en', 'name', 'NOAA Global Ocean Monitoring and Observing Program'),
(113565, 92749, 'es', 'name', 'Sociedad de NeurologĆ­a, PsiquiatrĆ­a y NeurocirugĆ­a'),
(113566, 92750, 'en', 'name', 'Muley Fanatic Foundation'),
(113567, 92751, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ© ŲØŲ§Ł„Ł…Ł‡ŲÆŁŠŲ©'),
(113568, 92751, 'fr', 'name', 'Institut SupƩrieur d''Informatique de Mahdia'),
(113569, 92752, 'fr', 'name', 'Centre d''AndreĆÆ Sakharov'),
(113570, 92752, 'no_lang_code', 'name', 'Andrei Sakharov Center'),
(113571, 92752, 'ru', 'name', 'Да́харовский центр'),
(113572, 92753, 'en', 'name', 'Association of Geographic Information Laboratories Europe'),
(113573, 92754, 'no', 'name', 'Norges Astma- og Allergiforbund'),
(113574, 92755, 'en', 'name', 'Institute of Technology Tallaght'),
(113575, 92755, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta Tamhlacht'),
(113576, 92756, 'de', 'name', 'Triaplus AG'),
(113577, 92757, 'en', 'name', 'Petersburg Nuclear Physics Institute'),
(113578, 92757, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ физики им.Š‘.П.ŠšŠ¾Š½ŃŃ‚Š°Š½Ń‚ŠøŠ½Š¾Š²Š°'),
(113579, 92758, 'bs', 'name', 'Educons Univerzitet'),
(113580, 92758, 'en', 'name', 'Educons University'),
(113581, 92759, 'en', 'name', 'Hormozgan University of Medical Sciences'),
(113582, 92759, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی هرمزگان'),
(113583, 92760, 'ca', 'name', 'Institut d''Investigació Sanitària Illes Balears'),
(113584, 92760, 'en', 'name', 'Health Research Institute of the Balearic Islands'),
(113585, 92760, 'es', 'name', 'Instituto de Investigación Sanitaria Illes Balears'),
(113586, 92761, 'en', 'name', 'Endourological Society'),
(113587, 92762, 'de', 'name', 'Rheinische Fachhochschule Neuss'),
(113588, 92763, 'en', 'name', 'University of Houston System at Cinco Ranch'),
(113589, 92764, 'no_lang_code', 'name', 'Enterprise Holdings'),
(113590, 92765, 'en', 'name', 'Department of the Premier and Cabinet'),
(113591, 92766, 'fr', 'name', 'Adaptateurs de Signalisation en HƩmatologie'),
(113592, 92767, 'en', 'name', 'Fox Valley Technical College'),
(113593, 92768, 'en', 'name', 'Weihai Maternal and Child Health Hospital'),
(113594, 92768, 'zh', 'name', 'åØęµ·åø‚å¦‡å¹¼äæå„é™¢'),
(113595, 92769, 'de', 'name', 'Staatsinstitut für Familienforschung an der Universität Bamberg'),
(113596, 92770, 'en', 'name', 'National Kaohsiung First University of Science and Technology'),
(113597, 92771, 'en', 'name', 'International Community Foundation'),
(113598, 92772, 'en', 'name', 'Zhejiang Sci-Tech University'),
(113599, 92772, 'zh', 'name', 'ęµ™ę±Ÿē†å·„å¤§å­¦'),
(113600, 92773, 'cs', 'name', 'ĆšÅ™ad vlĆ”dy'),
(113601, 92773, 'en', 'name', 'Office of the Goverment'),
(113602, 92774, 'en', 'name', 'Lambda, London Academy of Music and Dramatic Art'),
(113603, 92775, 'en', 'name', 'Addis Ababa University'),
(113604, 92776, 'no_lang_code', 'name', 'Visual Awareness Research (United States)'),
(113605, 92777, 'en', 'name', 'The Independent Institute of Education'),
(113606, 92778, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ال؄مام عبدالرحمن بن ŁŁŠŲµŁ„'),
(113607, 92778, 'no_lang_code', 'name', 'Imam Abdulrahman Bin Faisal University'),
(113608, 92779, 'en', 'name', 'Philippe Foundation'),
(113609, 92780, 'ja', 'name', 'ē”°č¾ŗäø‰č±č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(113610, 92780, 'no_lang_code', 'name', 'Mitsubishi Tanabe Pharma Corporation'),
(113611, 92781, 'tr', 'name', 'Serik Devlet Hastanesi'),
(113612, 92782, 'en', 'name', 'Bruce Peninsula National Park'),
(113613, 92782, 'fr', 'name', 'Parc national de la PƩninsule-Bruce'),
(113614, 92783, 'en', 'name', 'University of Miskolc'),
(113615, 92783, 'hu', 'name', 'Miskolci Egyetem'),
(113616, 92784, 'en', 'name', 'NOAA National Weather Service Alaska Region'),
(113617, 92785, 'en', 'name', 'Peace Palace Library'),
(113618, 92785, 'fr', 'name', 'BibliothĆØque du Palais de la Paix'),
(113619, 92785, 'nl', 'name', 'Bibliotheek van het Vredespaleis'),
(113620, 92786, 'es', 'name', 'Centro Científico Tecnológico - Patagonia Norte'),
(113621, 92787, 'no_lang_code', 'name', 'Recordati (Spain)'),
(113622, 92788, 'en', 'name', 'The Jones Center at Ichauway'),
(113623, 92789, 'en', 'name', 'Tokyo Women''s Medical University Yachiyo Medical Center'),
(113624, 92789, 'ja', 'name', 'ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦å…«åƒä»£åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(113625, 92790, 'no_lang_code', 'name', 'Deutsche Telekom (Germany)'),
(113626, 92791, 'en', 'name', 'Australian Research Data Commons'),
(113627, 92792, 'en', 'name', 'International Institute for Geo-Information Science and Earth Observation'),
(113628, 92793, 'en', 'name', 'Indonesian Agency for Agricultural Research and Development'),
(113629, 92793, 'id', 'name', 'Badan Penelitian dan Pengembangan'),
(113630, 92794, 'en', 'name', 'Aichi Synchrotron Radiation Center'),
(113631, 92794, 'ja', 'name', 'ć‚ć„ć”ć‚·ćƒ³ć‚Æćƒ­ćƒˆćƒ­ćƒ³å…‰ć‚»ćƒ³ć‚æćƒ¼'),
(113632, 92795, 'es', 'name', 'Universidad CLAEH'),
(113633, 92796, 'en', 'name', 'Department of Agriculture'),
(113634, 92797, 'en', 'name', 'Higher Education Commission'),
(113635, 92797, 'ur', 'name', 'Ł„ŁŲ¬Ł†Ū‚ Ų§Ų¹Ł„ŪŒŁ° ŲŖŲ¹Ł„ŪŒŁ…'),
(113636, 92798, 'fr', 'name', 'Centre Hospitalier Ibn Sina'),
(113637, 92799, 'no_lang_code', 'name', 'Kadmon Corporation (United States)'),
(113638, 92800, 'en', 'name', 'Eskenazi Health Foundation'),
(113639, 92801, 'fr', 'name', 'Centre de Recherches sur le Droit Public'),
(113640, 92802, 'no_lang_code', 'name', 'Chemours (United States)'),
(113641, 92803, 'en', 'name', 'Ministry of Economic Development, Job Creation and Trade'),
(113642, 92803, 'fr', 'name', 'MinistĆØre du DĆ©veloppement Ɖconomique de la CrĆ©ation d’Emplois et du Commerce'),
(113643, 92804, 'pt', 'name', 'Instituto Nacional da Mata Atlântica'),
(113644, 92805, 'en', 'name', 'Dorothy Pattison Hospital'),
(113645, 92806, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Πληροφορικής & Ī¤Ī·Ī»ĪµĻ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½'),
(113646, 92806, 'en', 'name', 'Institute of Informatics & Telecommunications'),
(113647, 92807, 'en', 'name', 'NOAA National Marine Fisheries Service Southeast Fisheries Science Center'),
(113648, 92808, 'en', 'name', 'Langley Research Center'),
(113649, 92809, 'en', 'name', 'University of Warsaw'),
(113650, 92809, 'pl', 'name', 'Uniwersytet Warszawski'),
(113651, 92810, 'en', 'name', 'Touro University Rome'),
(113652, 92811, 'en', 'name', 'Ohio University Southern'),
(113653, 92812, 'no_lang_code', 'name', 'Hyperion Materials & Technologies (United States)'),
(113654, 92813, 'en', 'name', 'Nuclear Science and Technology Institute'),
(113655, 92814, 'no_lang_code', 'name', 'Yara (Germany)'),
(113656, 92815, 'no_lang_code', 'name', 'Mosadex CV (Netherlands)'),
(113657, 92816, 'en', 'name', 'Franciscan University Rugby'),
(113658, 92817, 'en', 'name', 'Laboratory of Chemistry, Catalysis, Polymers and Process'),
(113659, 92818, 'no_lang_code', 'name', 'Carling Point (United Kingdom)'),
(113660, 92819, 'en', 'name', 'Disability Practice Institute'),
(113661, 92820, 'en', 'name', 'Ichimura Foundation of New Technology'),
(113662, 92820, 'ja', 'name', 'åø‚ę‘ęø…ę–°ęŠ€č”“č²”å›£'),
(113663, 92821, 'fr', 'name', 'FƩdƩration franƧaise de cardiologie'),
(113664, 92822, 'en', 'name', 'The Japan Society of Applied Physics'),
(113665, 92822, 'ja', 'name', 'åæœē”Øē‰©ē†å­¦ä¼š'),
(113666, 92823, 'en', 'name', 'Greater Lawrence Family Health Center'),
(113667, 92824, 'en', 'name', 'Charles Koch Foundation'),
(113668, 92825, 'en', 'name', 'Salem Methodist Preschool'),
(113669, 92826, 'en', 'name', 'Islamic Azad University, Isfahan'),
(113670, 92826, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų®ŁˆŲ±Ų§Ų³ŚÆŲ§Ł†'),
(113671, 92827, 'en', 'name', 'Government of Kenya'),
(113672, 92828, 'no_lang_code', 'name', 'Chement (United States)'),
(113673, 92829, 'en', 'name', 'Penn State Lehigh Valley'),
(113674, 92830, 'en', 'name', 'Waterton Lakes National Park'),
(113675, 92830, 'fr', 'name', 'Parc national des Lacs-Waterton'),
(113676, 92831, 'en', 'name', 'V-Continent Beijing Parkview Wuzhou Hotel'),
(113677, 92832, 'en', 'name', 'State Key Laboratory of Digital Medical Engineering'),
(113678, 92833, 'no_lang_code', 'name', 'Husch Blackwell LLP (United States)'),
(113679, 92834, 'no_lang_code', 'name', 'SIRIRI'),
(113680, 92835, 'no_lang_code', 'name', 'LymphoSign Journal (Canada)'),
(113681, 92836, 'en', 'name', 'American Association of Petroleum Geologists'),
(113682, 92837, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ سعود Ų§Ł„Ų·ŲØŁŠŲ©'),
(113683, 92837, 'en', 'name', 'King Saud Medical City'),
(113684, 92838, 'no_lang_code', 'name', 'K&L Gates (United States)'),
(113685, 92839, 'de', 'name', 'Max-Planck-Institut für Neurobiologie'),
(113686, 92839, 'en', 'name', 'Max Planck Institute of Neurobiology'),
(113687, 92840, 'no_lang_code', 'name', 'TED Conferences (United States)'),
(113688, 92841, 'en', 'name', 'Michael J. Fox Foundation'),
(113689, 92842, 'en', 'name', 'European AIDS Treatment Network'),
(113690, 92843, 'en', 'name', 'Shanghai Municipal Commission of Health and Family Planning'),
(113691, 92844, 'no_lang_code', 'name', 'Ichor Life Sciences (United States)'),
(113692, 92845, 'en', 'name', 'Ernest Kleinwort Charitable Trust'),
(113693, 92846, 'en', 'name', 'Amruta Sinchana Spiritual University'),
(113694, 92847, 'en', 'name', 'Kutaisi Musical College'),
(113695, 92848, 'de', 'name', 'Kölner Forum für Internationale Beziehungen und Sicherheitspolitik'),
(113696, 92849, 'es', 'name', 'Instituto Tecnológico y de Estudios Superiores de Monterrey, Tecnológico de Monterrey'),
(113697, 92850, 'de', 'name', 'Nordrhein-Westfälische Akademie der Wissenschaften und der Künste'),
(113698, 92851, 'da', 'name', 'MedicinrƄdet'),
(113699, 92852, 'fr', 'name', 'Maison des Sciences de l’Homme et de la SociĆ©tĆ© de Toulouse'),
(113700, 92853, 'en', 'name', 'Institute of Organic Chemistry'),
(113701, 92853, 'hu', 'name', 'MTA TermészettudomÔnyi Kutatóközpont Szerves Kémiai Intézet'),
(113702, 92854, 'en', 'name', 'Colorado Department of Natural Resources'),
(113703, 92855, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© قرطبة الخاصة'),
(113704, 92855, 'en', 'name', 'Cordoba Private University'),
(113705, 92856, 'en', 'name', 'Tunku Abdul Rahman University of Management and Technology'),
(113706, 92856, 'ms', 'name', 'Kolej Universiti Tunku Abdul Rahman'),
(113707, 92856, 'zh', 'name', '拉曼大學學院'),
(113708, 92857, 'fr', 'name', 'Université Paris Lumières'),
(113709, 92858, 'no_lang_code', 'name', 'Nortel (United States)'),
(113710, 92859, 'es', 'name', 'Instituto Nacional de Diabetes, Endocrinología y Nutrición'),
(113711, 92860, 'no_lang_code', 'name', 'Pajarito Powder (United States)'),
(113712, 92861, 'en', 'name', 'Institute of Technology, Blanchardstown'),
(113713, 92861, 'ga', 'name', 'Institiúid Teicneolaíochta Baile Bhlainséir'),
(113714, 92862, 'en', 'name', 'National Measurement Institute'),
(113715, 92863, 'en', 'name', 'Korea Association of Literature for Children and Young Adults'),
(113716, 92863, 'ko', 'name', 'ķ•œźµ­ģ•„ė™ģ²­ģ†Œė…„ė¬øķ•™ķ•™ķšŒ ź¶Œķ˜ģ¤€ 올림'),
(113717, 92864, 'sv', 'name', 'RĆ„dman och Fru Ernst Collianders Stiftelse fƶr VƤlgƶrande ƄndamĆ„l'),
(113718, 92865, 'en', 'name', 'ICAR - National Meat Research Institute'),
(113719, 92865, 'hi', 'name', 'ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ- ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ मांस ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(113720, 92866, 'en', 'name', 'National Institute of Technology, Kochi College'),
(113721, 92866, 'ja', 'name', 'é«˜ēŸ„å·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(113722, 92867, 'en', 'name', 'Research Institute of Vaccines and Sera. Mechnikov of the Russian Academy of Medical Sciences'),
(113723, 92867, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ вакцин Šø сывороток им. И.И. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(113724, 92868, 'no_lang_code', 'name', 'Mettler-Toledo (Switzerland)'),
(113725, 92869, 'no_lang_code', 'name', 'Cameron (Norway)'),
(113726, 92870, 'nl', 'name', 'De Bascule'),
(113727, 92871, 'en', 'name', 'National Cancer Centre Singapore'),
(113728, 92872, 'en', 'name', 'Ministry of Education and Science'),
(113729, 92872, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Šø науки, молоГёжи Šø спорта Украины'),
(113730, 92872, 'uk', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ освіти і науки України'),
(113731, 92873, 'es', 'name', 'Universidad Americana'),
(113732, 92874, 'cs', 'name', 'Karlovarský kraj, Karlovy Vary Region'),
(113733, 92875, 'en', 'name', 'Mundelein College'),
(113734, 92876, 'no_lang_code', 'name', 'Thirst-Aid (United States)'),
(113735, 92877, 'en', 'name', 'American Malacological Society'),
(113736, 92878, 'fr', 'name', 'Institut national du patrimoine'),
(113737, 92879, 'en', 'name', 'Asia Pacific University of Technology & Innovation'),
(113738, 92879, 'ms', 'name', 'Universiti Teknologi dan Inovasi Asia Pasifik'),
(113739, 92880, 'no_lang_code', 'name', 'European Framework Program Consulting (Israel)'),
(113740, 92881, 'en', 'name', 'National Research Center for Rehabilitation Technical Aids'),
(113741, 92881, 'zh', 'name', 'å›½å®¶åŗ·å¤č¾…å…·ē ”ē©¶äø­åæƒ'),
(113742, 92882, 'es', 'name', 'Refinadora Costarricense de Petróleo'),
(113743, 92883, 'no_lang_code', 'name', 'Aptiv (Luxembourg)'),
(113744, 92884, 'en', 'name', 'National Advisory Committee for Aeronautics'),
(113745, 92885, 'en', 'name', 'Lanzhou City University'),
(113746, 92885, 'zh', 'name', 'å…°å·žåŸŽåø‚å­¦é™¢ę˜Æ'),
(113747, 92886, 'en', 'name', 'Directorate General for Specifications and Measurements'),
(113748, 92887, 'no_lang_code', 'name', 'Bio-Rad (United States)'),
(113749, 92888, 'fr', 'name', 'Laboratoire Sciences de l''Univers au Cerfacs'),
(113750, 92889, 'en', 'name', 'Allen Institute'),
(113751, 92890, 'en', 'name', 'Normandy Region'),
(113752, 92890, 'fr', 'name', 'RƩgion Normandie'),
(113753, 92891, 'en', 'name', 'Palm Beach Museum of Natural History'),
(113754, 92892, 'en', 'name', 'NOAA Pacific Marine Environmental Laboratory'),
(113755, 92893, 'en', 'name', 'NOAA National Marine Fisheries Office of Law Enforcement'),
(113756, 92894, 'fr', 'name', 'Phosphorylation de protƩines et Pathologies Humaines'),
(113757, 92895, 'nl', 'name', 'Alzheimer Nederland'),
(113758, 92896, 'en', 'name', 'Murray Darling Basin Authority'),
(113759, 92897, 'en', 'name', 'Extremadura Supercomputing, Technological Innovation and Research Center'),
(113760, 92897, 'es', 'name', 'Centro Extremeño de iNvestigación,Innovación Tecnológica y Supercomputación'),
(113761, 92898, 'en', 'name', 'Ministry of Forests'),
(113762, 92899, 'en', 'name', 'State Key Laboratory of Palaeobiology and Stratigraphy'),
(113763, 92899, 'zh', 'name', 'ēŽ°ä»£å¤ē”Ÿē‰©å­¦å’Œåœ°å±‚å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(113764, 92900, 'de', 'name', 'Evangelische Kirche von Westfalen'),
(113765, 92900, 'en', 'name', 'Evangelical Church of Westphalia'),
(113766, 92901, 'it', 'name', 'Associazione Italiana per la Ricerca Industriale'),
(113767, 92902, 'de', 'name', 'Deutsches Polen-Institut'),
(113768, 92903, 'en', 'name', 'Center for Behavioral Brain Sciences'),
(113769, 92904, 'en', 'name', 'Genetics Society'),
(113770, 92905, 'no_lang_code', 'name', 'SYSTRA (France)'),
(113771, 92906, 'es', 'name', 'Jardƭn BotƔnico de BogotƔ JosƩ Celestino Mutis'),
(113772, 92907, 'fr', 'name', 'Laboratoire de MathƩmatiques Analyse, ProbabilitƩs, ModƩlisation OrlƩans'),
(113773, 92908, 'en', 'name', 'Maryland Sea Grant'),
(113774, 92909, 'en', 'name', 'Yale Peabody Museum'),
(113775, 92910, 'en', 'name', 'Al-Khair University'),
(113776, 92911, 'es', 'name', 'Instituto Tecnológico de Tijuana'),
(113777, 92912, 'en', 'name', 'Falling Walls Foundation'),
(113778, 92913, 'no_lang_code', 'name', 'SK Techx (South Korea)'),
(113779, 92914, 'no_lang_code', 'name', 'Lush (United Kingdom)'),
(113780, 92915, 'fr', 'name', 'HES-SO GenĆØve'),
(113781, 92916, 'it', 'name', 'Consorzio Interuniversitario Risonanze Magnetiche di Metallo Proteine'),
(113782, 92917, 'en', 'name', 'Science Hub'),
(113783, 92917, 'hi', 'name', 'ą¤øą¤¾ą¤‡ą¤Øą„ą¤ø हव'),
(113784, 92918, 'es', 'name', 'Fundación Josep Carreras Contra la Leucemia'),
(113785, 92919, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Paris-La Villette'),
(113786, 92920, 'it', 'name', 'Museo tridentino di scienze naturali'),
(113787, 92921, 'de', 'name', 'BIO Deutschland'),
(113788, 92922, 'en', 'name', 'Ceipa University Foundation'),
(113789, 92922, 'es', 'name', 'Fundacion Universitaria Ceipa'),
(113790, 92923, 'en', 'name', 'HM Prison and Probation Service'),
(113791, 92924, 'en', 'name', 'Kiwifruit Breeding Centre'),
(113792, 92925, 'da', 'name', 'Haderslev Sygehus'),
(113793, 92925, 'en', 'name', 'Haderslev Hospital'),
(113794, 92926, 'en', 'name', 'Vakhushti Bagrationi Institute of Geography'),
(113795, 92926, 'ka', 'name', 'įƒ•įƒįƒ®įƒ£įƒØįƒ¢įƒ˜ įƒ‘įƒįƒ’įƒ įƒįƒ¢įƒ˜įƒįƒœįƒ˜įƒ” įƒ’įƒ”įƒįƒ’įƒ įƒįƒ¤įƒ˜įƒ˜įƒ” ინეტიტუტი'),
(113796, 92927, 'es', 'name', 'Ministerio de Industria, EnergĆ­a y MinerĆ­a'),
(113797, 92928, 'en', 'name', 'Glenbrook North High School'),
(113798, 92929, 'no_lang_code', 'name', 'Agrivet Research and Advisory Pvt Ltd (India)'),
(113799, 92930, 'no_lang_code', 'name', 'PulseRay (United States)'),
(113800, 92931, 'en', 'name', 'Technological University Maubin'),
(113801, 92932, 'no_lang_code', 'name', 'MyoKardia (United States)'),
(113802, 92933, 'no_lang_code', 'name', 'Sigma Genosys (United States)'),
(113803, 92934, 'es', 'name', 'Centro Científico Tecnológico - Bahía Blanca'),
(113804, 92935, 'en', 'name', 'National Marine Environmental Monitoring Center'),
(113805, 92936, 'en', 'name', 'San Bernardino County Library'),
(113806, 92937, 'en', 'name', 'Community Welfare Society Hospital'),
(113807, 92938, 'no_lang_code', 'name', 'Novozymes (Denmark)'),
(113808, 92939, 'en', 'name', 'United States Army Medical Directorate - Armed Forces Research Institute of Medical Sciences'),
(113809, 92940, 'de', 'name', 'Geologische Bundesanstalt'),
(113810, 92940, 'en', 'name', 'Geological Survey of Austria'),
(113811, 92941, 'en', 'name', 'Armstrong Flight Research Center'),
(113812, 92941, 'es', 'name', 'Centro Dryden de Investigaciones de Vuelo'),
(113813, 92942, 'es', 'name', 'Instituto de Investigación Biomédica de Salamanca'),
(113814, 92943, 'fr', 'name', 'Centre MƩdical de l''Institut Pasteur'),
(113815, 92944, 'en', 'name', 'National Health Fund'),
(113816, 92945, 'en', 'name', 'Journal of Medical Insight'),
(113817, 92946, 'en', 'name', 'Northwest Institute of Plateau Biology'),
(113818, 92946, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č„æåŒ—é«˜åŽŸē”Ÿē‰©ē ”ē©¶ę‰€'),
(113819, 92947, 'no_lang_code', 'name', 'Interoute (United Kingdom)'),
(113820, 92948, 'en', 'name', 'Rowland Institute at Harvard'),
(113821, 92949, 'no_lang_code', 'name', 'Sparta Systems (United States)'),
(113822, 92950, 'en', 'name', 'Ecological Society of Australia'),
(113823, 92951, 'pl', 'name', 'Wojewódzki Fundusz Ochrony Środowiska i Gospodarki Wodnej w Gdańsku'),
(113824, 92952, 'en', 'name', 'HealthSouth Rehabilitation Hospital of Tinton Falls'),
(113825, 92953, 'en', 'name', 'NOAA Chemical Sciences Laboratory'),
(113826, 92954, 'en', 'name', 'Wuhan Ship Communication Research Institute'),
(113827, 92954, 'zh', 'name', 'ę­¦ę±‰čˆ¹čˆ¶é€šäæ”ē ”ē©¶ę‰€'),
(113828, 92955, 'en', 'name', 'People''s Government of Shaanxi Province'),
(113829, 92955, 'zh', 'name', 'é™•č„æēœäŗŗę°‘ę”æåŗœ'),
(113830, 92956, 'en', 'name', 'Science Media Center Germany'),
(113831, 92957, 'en', 'name', 'European Climate, Infrastructure and Environment Executive Agency'),
(113832, 92958, 'en', 'name', 'Office of Tribal Affairs and Strategic Alliances'),
(113833, 92959, 'en', 'name', 'International Elephant Foundation'),
(113834, 92960, 'fr', 'name', 'Laboratoire de Glaciologie et GĆ©ophysique de l’Environnement'),
(113835, 92961, 'en', 'name', 'Speech-Language and Audiology Canada'),
(113836, 92961, 'fr', 'name', 'Orthophonie et Audiologie Canada'),
(113837, 92962, 'de', 'name', 'Max Planck Institut für Zellbiologie'),
(113838, 92962, 'en', 'name', 'Max Planck Institute for Cell Biology'),
(113839, 92963, 'en', 'name', 'Taraz State Pedagogical University'),
(113840, 92963, 'kk', 'name', 'ТАРАЗ ŠœŠ•ŠœŠ›Š•ŠšŠ•Š¢Š¢Š†Šš ŠŸŠ•Š”ŠŠ“ŠžŠ“Š˜ŠšŠŠ›Š«Ņš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š†'),
(113841, 92964, 'en', 'name', 'Mauritius Standards Bureau'),
(113842, 92965, 'en', 'name', 'Target ALS'),
(113843, 92966, 'ca', 'name', 'Conselleria d''Innovació, Universitats, Ciència i Societat Digital'),
(113844, 92966, 'es', 'name', 'Conselleria de Innovación, Universidades, Ciencia y Sociedad Digital'),
(113845, 92967, 'en', 'name', 'NOAA Office of Protected Resources'),
(113846, 92968, 'en', 'name', 'Swedish Association of Public Housing'),
(113847, 92969, 'en', 'name', 'ACT Government'),
(113848, 92970, 'es', 'name', 'Hospital ClĆ­nico Universitario Lozano Blesa'),
(113849, 92971, 'no_lang_code', 'name', 'Amgen (United States)'),
(113850, 92972, 'en', 'name', 'National Measurement and Regulation Office'),
(113851, 92973, 'de', 'name', 'Max-Planck-Institut für biologische Intelligenz'),
(113852, 92973, 'en', 'name', 'Max Planck Institute for Biological Intelligence'),
(113853, 92974, 'fr', 'name', 'Laboratoire de MathƩmatiques et Physique ThƩorique'),
(113854, 92975, 'en', 'name', 'National Bureau of Investigation'),
(113855, 92975, 'fi', 'name', 'Keskusrikospoliisi'),
(113856, 92975, 'sv', 'name', 'Centralkriminalpolisen'),
(113857, 92976, 'no_lang_code', 'name', 'DuPont (United States)'),
(113858, 92977, 'en', 'name', 'NOAA Office of Response and Restoration'),
(113859, 92978, 'no_lang_code', 'name', 'Form Energy (United States)'),
(113860, 92979, 'en', 'name', 'International Institute for Software Technology'),
(113861, 92979, 'pt', 'name', 'Instituto Internacional para Tecnologia de Programação da Universidade das Nações Unidas'),
(113862, 92980, 'en', 'name', 'Sant Joan de DƩu Research Foundation'),
(113863, 92981, 'no_lang_code', 'name', 'Synapse (Netherlands)'),
(113864, 92982, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الاسراؔ-ŁŁ„Ų³Ų·ŁŠŁ†'),
(113865, 92982, 'en', 'name', 'Israa University- Palestine'),
(113866, 92983, 'en', 'name', 'Pennsylvania Game Commission'),
(113867, 92984, 'no_lang_code', 'name', 'Festo (Germany)'),
(113868, 92985, 'en', 'name', 'Stenden University Qatar'),
(113869, 92986, 'es', 'name', 'Secretaría Nacional de Ciencia, Tecnología e Innovación'),
(113870, 92987, 'en', 'name', 'Spectrum-Sustainable Development Knowledge Network'),
(113871, 92988, 'en', 'name', 'Thailand Research Fund'),
(113872, 92989, 'no_lang_code', 'name', 'Boehringer Ingelheim (France)'),
(113873, 92990, 'en', 'name', 'Iran National Standards Organization'),
(113874, 92990, 'fa', 'name', 'سازمان Ł…Ł„ŪŒ استاندارد'),
(113875, 92991, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų“Ł†ŲÆŁŠ'),
(113876, 92991, 'en', 'name', 'Shendi University'),
(113877, 92992, 'tr', 'name', 'T.C. Cumhurbaşkanlığı Külliyesi'),
(113878, 92993, 'it', 'name', 'Scuola Superiore Internazionale di Studi Universitari di Ricerca e Formazione'),
(113879, 92994, 'en', 'name', 'Rio Branco Institute'),
(113880, 92994, 'pt', 'name', 'Instituto Rio Branco'),
(113881, 92995, 'en', 'name', 'University of Lynchburg'),
(113882, 92996, 'id', 'name', 'Universitas Kejuangan 45 Jakarta'),
(113883, 92997, 'en', 'name', 'Elk Island National Park'),
(113884, 92997, 'fr', 'name', 'Parc national Elk Island'),
(113885, 92998, 'es', 'name', 'Centro Universitario Promedac'),
(113886, 92999, 'en', 'name', 'The Tim and Karen Hixon Foundation'),
(113887, 93000, 'en', 'name', 'Woman''s Cancer Foundation'),
(113888, 93001, 'en', 'name', 'Institute of Marine and Coastal Research'),
(113889, 93001, 'es', 'name', 'Instituto de Investigaciones Marinas y Costeras'),
(113890, 93002, 'no_lang_code', 'name', 'Boston De Novo Design (United States)'),
(113891, 93003, 'es', 'name', 'Universidad Metropolitana'),
(113892, 93004, 'en', 'name', 'The Wolfson Family Charitable Trust'),
(113893, 93005, 'en', 'name', 'Greater Paris Sanitation Authority'),
(113894, 93005, 'fr', 'name', 'Syndicat InterdƩpartemental pour l''Assainissement de l''AgglomƩration Parisienne'),
(113895, 93006, 'fr', 'name', 'MusƩe de l''Air et de l''Espace'),
(113896, 93007, 'en', 'name', 'Shanghai Universities E-Institute for Chemical Biology'),
(113897, 93008, 'ca', 'name', 'Universitat Catòlica del Sagrat Cor'),
(113898, 93008, 'de', 'name', 'Katholische UniversitƤt vom Heiligen Herzen'),
(113899, 93008, 'it', 'name', 'UniversitĆ  Cattolica del Sacro Cuore'),
(113900, 93008, 'sl', 'name', 'KatoliŔka univerza Srca Jezusovega'),
(113901, 93009, 'en', 'name', 'Grasslands National Park'),
(113902, 93009, 'fr', 'name', 'Parc national des Prairies'),
(113903, 93010, 'es', 'name', 'Universidad Adventista Dominicana'),
(113904, 93011, 'ja', 'name', 'ę˜­ę „åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(113905, 93011, 'no_lang_code', 'name', 'Shoei Chemical (Japan)'),
(113906, 93012, 'es', 'name', 'Centro de Investigación en Materiales Avanzados'),
(113907, 93013, 'en', 'name', 'St. Luke''s Hospital and Health Network'),
(113908, 93014, 'en', 'name', 'National Chi Nan University'),
(113909, 93014, 'zh', 'name', 'åœ‹ē«‹ęšØå—åœ‹éš›å¤§å­ø'),
(113910, 93015, 'de', 'name', 'Ernst Ruska-Centrum'),
(113911, 93015, 'en', 'name', 'Ernst Ruska Centre'),
(113912, 93016, 'en', 'name', 'Swedish Entrepreneurship Forum'),
(113913, 93016, 'sv', 'name', 'Entreprenƶrskapsforum'),
(113914, 93017, 'tr', 'name', 'Gaziosmanpaşa Eğitim Ve Araştırma Hastanesi'),
(113915, 93018, 'en', 'name', 'Royal Entomological Society'),
(113916, 93019, 'en', 'name', 'Alborz University of Medical Sciences'),
(113917, 93019, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی البرز'),
(113918, 93020, 'fr', 'name', 'Centre de Recherche sur les Cultures et les LittƩratures EuropƩennes'),
(113919, 93021, 'de', 'name', 'Hochschule Fresenius'),
(113920, 93022, 'no_lang_code', 'name', 'HathiTrust'),
(113921, 93023, 'en', 'name', 'Forestry Commission England'),
(113922, 93024, 'en', 'name', 'NOAA Office of Climate, Water, and Weather Services'),
(113923, 93025, 'en', 'name', 'All-Russian Scientific Research Institute for the Use of Machinery and Petroleum Products in Agriculture'),
(113924, 93025, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠæŠ¾Š»ŃŒŠ·Š¾Š²Š°Š½ŠøŃ техники Šø Š½ŠµŃ„Ń‚ŠµŠæŃ€Š¾Š“ŃƒŠŗŃ‚Š¾Š² в сельском Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Šµ'),
(113925, 93026, 'en', 'name', 'Experimental Medicine and Biology Institute'),
(113926, 93026, 'es', 'name', 'Instituto de BiologĆ­a y Medicina Experimental'),
(113927, 93027, 'nl', 'name', 'Stichting Lucie Burgers'),
(113928, 93028, 'no_lang_code', 'name', 'Pacmar Technologies (United States)'),
(113929, 93029, 'es', 'name', 'Universidad Francisco MarroquĆ­n'),
(113930, 93030, 'en', 'name', 'Melbourne Free University'),
(113931, 93031, 'en', 'name', 'Tata Institute of Fundamental Research'),
(113932, 93031, 'hi', 'name', 'टाटा ą¤®ą„‚ą¤²ą¤­ą„‚ą¤¤ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(113933, 93031, 'ml', 'name', 'ą“Ÿą“¾ą“±ąµą“±ą“¾ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“«ą“£ąµą“Ÿą“®ąµ†ą“Øąµą“±ąµ½ ą“±ą“æą“øąµ¼ą“šąµą“šąµ'),
(113934, 93032, 'no_lang_code', 'name', 'SociƩtƩ d''Economie Mixte (France)'),
(113935, 93033, 'en', 'name', 'Ming Wai Lau Centre for Reparative Medicine'),
(113936, 93034, 'de', 'name', 'Deutsche Diabetes Stiftung'),
(113937, 93035, 'hu', 'name', 'L’Harmattan Kƶnyvkiadó Kft.'),
(113938, 93035, 'no_lang_code', 'name', 'L''Harmattan Publishing House, Budapest (Hungary)'),
(113939, 93036, 'en', 'name', 'Karnataka Folklore University, Haveri'),
(113940, 93037, 'de', 'name', 'Argentinisch-Deutsche GeodƤtische Observatorium'),
(113941, 93037, 'en', 'name', 'Argentine-German Geodetic Observatory'),
(113942, 93037, 'es', 'name', 'Observatorio Argentino-AlemƔn de Geodesia'),
(113943, 93038, 'no_lang_code', 'name', 'Vingroup (Vietnam)'),
(113944, 93038, 'vi', 'name', 'Tįŗ­p đoĆ n Vingroup'),
(113945, 93039, 'en', 'name', 'IU Health Foundation'),
(113946, 93040, 'en', 'name', 'Asian Women’s Leadership University'),
(113947, 93041, 'en', 'name', 'Healthy Communities Foundation'),
(113948, 93042, 'en', 'name', 'Journal of Bone & Joint Surgery'),
(113949, 93043, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ Ų§Ł„Ł…Ų¹ŲÆŁ†ŁŠŲ© معهد Ų§Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(113950, 93043, 'en', 'name', 'Central Metallurgical Research and Development Institute'),
(113951, 93044, 'en', 'name', 'Stennis Space Center'),
(113952, 93045, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŲÆŁˆŲÆ Ų§Ł„Ų“Ł…Ų§Ł„ŁŠŲ©'),
(113953, 93045, 'en', 'name', 'Northern Border University'),
(113954, 93046, 'id', 'name', 'Institut Sains dan Teknologi Terpadu Surabaya'),
(113955, 93047, 'en', 'name', 'National Institute of Sport, Expertise, and Performance'),
(113956, 93047, 'fr', 'name', 'Institut National du Sport, de l''Expertise et de la Performance'),
(113957, 93048, 'id', 'name', 'Universitas Islam Nahdlatul Ulama Jepara'),
(113958, 93049, 'ja', 'name', 'å¾³å³¶ę–°čž'),
(113959, 93049, 'no_lang_code', 'name', 'Tokushima Shimbun'),
(113960, 93050, 'en', 'name', 'African Organisation for Research and Training in Cancer'),
(113961, 93051, 'en', 'name', 'Chicago Botanic Garden'),
(113962, 93052, 'en', 'name', 'Let People Know'),
(113963, 93053, 'no_lang_code', 'name', 'DECTRIS (Switzerland)'),
(113964, 93054, 'no_lang_code', 'name', 'Deloitte (United Kingdom)'),
(113965, 93055, 'no_lang_code', 'name', 'TDL Sensors (United Kingdom)'),
(113966, 93056, 'en', 'name', 'International Center for Jefferson Studies at Monticello'),
(113967, 93057, 'en', 'name', 'Orel Regional Academy of Public Administration'),
(113968, 93058, 'no_lang_code', 'name', 'Zoetis (United States)'),
(113969, 93059, 'en', 'name', 'His Majesty''s Treasury'),
(113970, 93060, 'en', 'name', 'Foundation for Healthcare Advancement'),
(113971, 93061, 'de', 'name', 'Leibniz-Institut zur Analyse des BiodiversitƤtswandels'),
(113972, 93061, 'en', 'name', 'Leibniz Institute for the Analysis of Biodiversity Change'),
(113973, 93062, 'en', 'name', 'National Library of the Faroe Islands'),
(113974, 93062, 'is', 'name', 'Landsbókasavnið'),
(113975, 93063, 'de', 'name', 'Deutsches Bergbau-Museum Bochum'),
(113976, 93064, 'es', 'name', 'Museo Histórico Municipal de Ecija'),
(113977, 93065, 'en', 'name', 'St Mark''s Hospital'),
(113978, 93066, 'en', 'name', 'Department of Science and Technology'),
(113979, 93067, 'en', 'name', 'American University of Barbados'),
(113980, 93068, 'en', 'name', 'Ukrainian Centre for European Policy'),
(113981, 93068, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ центр Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠ¾Ń— політики'),
(113982, 93069, 'af', 'name', 'Suid-Afrikaanse Vereeniging vir Hematologie'),
(113983, 93069, 'en', 'name', 'South African Society of Haematology'),
(113984, 93070, 'de', 'name', 'Institut für Baustoff-Forschung'),
(113985, 93071, 'fr', 'name', 'Groupe de Recherche en FertilitƩ Humaine'),
(113986, 93072, 'en', 'name', 'Beijing Climate Center'),
(113987, 93072, 'zh', 'name', 'å›½å®¶ę°”å€™äø­åæƒ'),
(113988, 93073, 'en', 'name', 'Poole Hospital NHS Foundation Trust'),
(113989, 93074, 'en', 'name', 'Sligo University Hospital'),
(113990, 93074, 'ga', 'name', 'OspidƩal Ollscoile Shligigh'),
(113991, 93075, 'en', 'name', 'Ohio University Lancaster'),
(113992, 93076, 'sv', 'name', 'Stiftelsen Stig och Gunborg Westman'),
(113993, 93077, 'en', 'name', 'National Optical Astronomy Observatory'),
(113994, 93078, 'de', 'name', 'FH Joanneum'),
(113995, 93078, 'en', 'name', 'FH JOANNEUM University of Applied Sciences'),
(113996, 93079, 'en', 'name', 'Shanghai Civil Aviation College'),
(113997, 93079, 'zh', 'name', 'äøŠęµ·ę°‘čˆŖčŒäøšęŠ€ęœÆå­¦é™¢'),
(113998, 93080, 'de', 'name', 'Institut dal Dicziunari Rumantsch Grischun'),
(113999, 93081, 'bn', 'name', 'ą¦°ą¦¾ą¦®ą¦•ą§ƒą¦·ą§ą¦£ মিশন ą¦¬ą¦æą¦¬ą§‡ą¦•ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(114000, 93081, 'en', 'name', 'Ramakrishna Mission Vivekananda Educational and Research Institute'),
(114001, 93081, 'hi', 'name', 'ą¤°ą¤¾ą¤®ą¤•ą„ƒą¤·ą„ą¤£ मिशन ą¤µą¤æą¤µą„‡ą¤•ą¤¾ą¤Øą¤‚ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(114002, 93082, 'it', 'name', 'Fondazione Poliambulanza Istituto Ospedaliero'),
(114003, 93083, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ų§Ł„Ł‚Ų·Ų±ŁŠŲ© Ł„Ł„Ł…ŁˆŲ§ŲµŁŲ§ŲŖ و Ų§Ł„Ł…Ł‚Ų§ŁŠŁŠŲ³'),
(114004, 93083, 'en', 'name', 'Qatar General Organization for Standards and Metrology'),
(114005, 93084, 'en', 'name', 'Saint Vincent and the Grenadines Bureau of Standards'),
(114006, 93085, 'en', 'name', 'Peterborough and Stamford Hospitals NHS Foundation Trust'),
(114007, 93086, 'no_lang_code', 'name', 'Philips (United States)'),
(114008, 93087, 'en', 'name', 'Population Health Research Institute'),
(114009, 93088, 'en', 'name', 'Centre for Materials Elaboration and Structural Studies'),
(114010, 93088, 'fr', 'name', 'Centre d’Élaboration de MatĆ©riaux et d’Études Structurales'),
(114011, 93089, 'en', 'name', 'Cheshire and Wirral Partnership NHS Foundation Trust'),
(114012, 93090, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ…Ų“Ł‚'),
(114013, 93090, 'en', 'name', 'Damascus University'),
(114014, 93090, 'fr', 'name', 'UniversitƩ de damas'),
(114015, 93090, 'hy', 'name', 'Ō“Õ”Õ“Õ”Õ½ÕÆÕøÕ½Õ« Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(114016, 93091, 'en', 'name', 'Kunming Institute of Zoology'),
(114017, 93091, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę˜†ę˜ŽåŠØē‰©ē ”ē©¶ę‰€'),
(114018, 93092, 'es', 'name', 'AD&D 4D'),
(114019, 93093, 'en', 'name', 'University of Pedagogical Sciences'),
(114020, 93094, 'en', 'name', 'Cancer Council Australia'),
(114021, 93095, 'en', 'name', 'Liaoning University of International Business and Economics'),
(114022, 93095, 'zh', 'name', 'č¾½å®åÆ¹å¤–ē»č“øå­¦é™¢'),
(114023, 93096, 'en', 'name', 'Wolf Creek Charitable Foundation'),
(114024, 93097, 'en', 'name', 'Catholic University of Portugals Institute for Political Studies'),
(114025, 93098, 'en', 'name', 'Division of Equity for Excellence in STEM (EES)'),
(114026, 93099, 'en', 'name', 'Carl Vogel Center'),
(114027, 93100, 'en', 'name', 'Tamil Nadu Horticulture University'),
(114028, 93100, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®¤ąÆ‹ą®ŸąÆą®Ÿą®•ąÆą®•ą®²ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(114029, 93101, 'en', 'name', 'Royal Museum of Fine Arts Antwerp'),
(114030, 93101, 'fr', 'name', 'MusƩe Royal des Beaux-Arts Anvers'),
(114031, 93101, 'nl', 'name', 'Koninklijk Museum voor Schone Kunsten Antwerpen'),
(114032, 93102, 'en', 'name', 'Department of Conservation'),
(114033, 93103, 'no_lang_code', 'name', 'Biomerica (United States)'),
(114034, 93104, 'de', 'name', 'Generaldirektion Kulturelles Erbe Rheinland-Pfalz'),
(114035, 93105, 'en', 'name', 'Cape Breton Highlands National Park'),
(114036, 93105, 'fr', 'name', 'Parc national des Hautes-Terres-du-Cap-Breton'),
(114037, 93106, 'en', 'name', 'North Dakota University System'),
(114038, 93107, 'en', 'name', 'University of Natural Resources and Applied Life Sciences'),
(114039, 93108, 'en', 'name', 'The Peregrine Fund'),
(114040, 93108, 'fr', 'name', 'Fonds Peregrin'),
(114041, 93109, 'no_lang_code', 'name', 'Oritain (New Zealand)'),
(114042, 93110, 'en', 'name', 'International Association for Plant Taxonomy'),
(114043, 93111, 'en', 'name', 'Economic and Social Research Council'),
(114044, 93112, 'de', 'name', 'Konstanzer Arbeitskreis für Mittelalterliche Geschichte e.V.'),
(114045, 93113, 'en', 'name', 'Foundation S'),
(114046, 93114, 'en', 'name', 'Vienna Vaccine Safety Initiative'),
(114047, 93115, 'fi', 'name', 'Niemi-sƤƤtiƶ'),
(114048, 93116, 'es', 'name', 'Universidad de la Tercera Edad'),
(114049, 93117, 'en', 'name', 'The Institute for Regional Conservation'),
(114050, 93118, 'en', 'name', 'Ministry of Education'),
(114051, 93119, 'es', 'name', 'CEDUC UCN'),
(114052, 93120, 'ja', 'name', 'ć‚«ćƒ«ć‚½ćƒ‹ćƒƒć‚Æć‚«ćƒ³ć‚»ć‚¤'),
(114053, 93120, 'no_lang_code', 'name', 'Calsonic Kansei (Japan)'),
(114054, 93121, 'en', 'name', 'Adnan Menderes University'),
(114055, 93121, 'tr', 'name', 'Adnan Menderes Üniversitesi'),
(114056, 93122, 'ja', 'name', 'ęµœę¾ćƒ›ćƒˆćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(114057, 93122, 'no_lang_code', 'name', 'Hamamatsu Photonics (Japan)'),
(114058, 93123, 'en', 'name', 'Pyongyang University of Music and Dance'),
(114059, 93123, 'ko', 'name', 'ź¹€ģ›ź· ķ‰ģ–‘ģŒģ•…ėŒ€ķ•™'),
(114060, 93124, 'cs', 'name', 'Muzeum Brněnska'),
(114061, 93125, 'en', 'name', 'Ministry of Education, Culture and Sport'),
(114062, 93125, 'es', 'name', 'Ministerio de Educación Cultura y Deporte'),
(114063, 93126, 'no_lang_code', 'name', 'BPS Bioscience (United States)'),
(114064, 93127, 'no_lang_code', 'name', 'General Atomics (United States)'),
(114065, 93128, 'no_lang_code', 'name', 'aixACCT Systems (Germany)'),
(114066, 93129, 'be', 'name', 'ŠŸŠ¾Š»Š°Ń†Šŗi Š“Š·ŃŃ€Š¶Š°Ć½Š½Ń‹ ýнiверсiтэт'),
(114067, 93129, 'en', 'name', 'Euphrosyne Polotskaya State University'),
(114068, 93129, 'ru', 'name', 'ŠŸŠ¾Š»Š¾Ń†ŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114069, 93130, 'en', 'name', 'Serralves, Serralves Foundation'),
(114070, 93130, 'pt', 'name', 'Fundação Serralves'),
(114071, 93131, 'en', 'name', 'Institute of Biology of Inland Waters named Ivan Dmitrievich Papanin'),
(114072, 93131, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Š²Š½ŃƒŃ‚ренних воГ им. И.Š”.Папанина Российской акаГемии наук'),
(114073, 93132, 'da', 'name', 'Familien Erichsens Mindefond'),
(114074, 93133, 'en', 'name', 'Advocacy Unified Network'),
(114075, 93134, 'en', 'name', 'Orthopterists'' Society'),
(114076, 93135, 'no_lang_code', 'name', 'Oxford Photovoltaics (United Kingdom)'),
(114077, 93136, 'en', 'name', 'Cariam Health'),
(114078, 93137, 'no_lang_code', 'name', 'KME (Germany)'),
(114079, 93138, 'en', 'name', 'Shanghai University of Medicine and Health Sciences'),
(114080, 93138, 'zh', 'name', 'äøŠęµ·å„åŗ·åŒ»å­¦é™¢'),
(114081, 93139, 'en', 'name', 'Clean Aviation'),
(114082, 93140, 'en', 'name', 'Tusk Trust'),
(114083, 93141, 'no_lang_code', 'name', 'Metron (Greece)'),
(114084, 93142, 'en', 'name', 'Meritorious Autonomous University of Puebla'),
(114085, 93142, 'es', 'name', 'Benemérita Universidad Autónoma de Puebla'),
(114086, 93143, 'en', 'name', 'American Medical Association'),
(114087, 93144, 'en', 'name', 'Life Sciences Division'),
(114088, 93144, 'fr', 'name', 'Direction des Sciences du Vivant'),
(114089, 93145, 'no_lang_code', 'name', 'Elements Biosciences (United States)'),
(114090, 93146, 'en', 'name', 'Malaria Consortium'),
(114091, 93147, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ؄يؓك'),
(114092, 93147, 'en', 'name', 'Tishk International University'),
(114093, 93148, 'no_lang_code', 'name', 'Edgewise Therapeutics (United States)'),
(114094, 93149, 'en', 'name', 'Arthritis Research UK'),
(114095, 93150, 'fr', 'name', 'MinistĆØre des Outre-mer'),
(114096, 93151, 'en', 'name', 'Buncombe County Schools'),
(114097, 93152, 'en', 'name', 'NOAA Office of Research, Transition, & Application'),
(114098, 93153, 'no_lang_code', 'name', 'Sanofi (China)'),
(114099, 93153, 'zh', 'name', 'čµ›čÆŗč²'),
(114100, 93154, 'fr', 'name', 'Laboratoire d''Analyse et de Modélisation des Systèmes pour l''Aide à la Décision, Lamsade'),
(114101, 93155, 'de', 'name', 'Bernd Thies-Stiftung'),
(114102, 93156, 'no_lang_code', 'name', 'Itron (France)'),
(114103, 93157, 'no_lang_code', 'name', 'Lafarge (Canada)');
INSERT INTO `ror_settings` VALUES
(114104, 93158, 'en', 'name', 'Jovan Hadži Institute of Biology'),
(114105, 93158, 'sl', 'name', 'BioloŔki inŔtitut Jovana Hadžija'),
(114106, 93159, 'af', 'name', 'Suid-Afrikaanse Vereeniging vir Basiese en Kliniese Farmakologie'),
(114107, 93159, 'en', 'name', 'South African Society for Basic and Clinical Pharmacology'),
(114108, 93160, 'en', 'name', 'Louisiana Space Grant Consortium'),
(114109, 93161, 'es', 'name', 'Consejo Nacional de Ciencia y TecnologĆ­a'),
(114110, 93162, 'en', 'name', 'Florida International University Tianjin Center'),
(114111, 93163, 'en', 'name', 'European Institute for Medical Studies'),
(114112, 93164, 'fr', 'name', 'Institut Universitaire du BƩnin'),
(114113, 93165, 'fr', 'name', 'Centre de Recherche en GƩographie'),
(114114, 93166, 'fr', 'name', 'Biologie Structurale des Processus Cellulaires et des Agents Infectieux'),
(114115, 93167, 'en', 'name', 'Center for Environmental and Marine Studies'),
(114116, 93167, 'pt', 'name', 'Centro de Estudos Ambientais e Marinhos'),
(114117, 93168, 'en', 'name', 'A.V. Zhirmunsky National Scientific Center of Marine Biology Far Eastern Branch of the Russian Academy of Sciences'),
(114118, 93168, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки "ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр морской биологии им. А.Š’. Š–ŠøŃ€Š¼ŃƒŠ½ŃŠŗŠ¾Š³Š¾" Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(114119, 93169, 'fr', 'name', 'SantƩ MontƩrƩgie'),
(114120, 93170, 'no_lang_code', 'name', 'Safran Ceramics (France)'),
(114121, 93171, 'en', 'name', 'Victorian Heart Hospital'),
(114122, 93172, 'en', 'name', 'Kherson State Agrarian and Economic University'),
(114123, 93172, 'uk', 'name', 'Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠøŠ¹ Гержавний аграрно-економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114124, 93173, 'en', 'name', 'Islamic Azad University, Sepidan'),
(114125, 93173, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų³Ł¾ŪŒŲÆŲ§Ł†'),
(114126, 93174, 'no_lang_code', 'name', 'Citrix (United States)'),
(114127, 93175, 'no_lang_code', 'name', 'IHS Markit (United Kingdom)'),
(114128, 93176, 'en', 'name', 'Endocrine Fellows Foundation'),
(114129, 93177, 'en', 'name', 'Federal College of Education, Iwo'),
(114130, 93178, 'de', 'name', 'Helmholtz-Zentrum Hereon'),
(114131, 93179, 'no_lang_code', 'name', 'CESAME-EXADEBIT (France)'),
(114132, 93180, 'en', 'name', 'OSF Saint Francis Medical Center'),
(114133, 93181, 'en', 'name', 'Argentine Atlantis University'),
(114134, 93182, 'en', 'name', 'Toronto Western Hospital'),
(114135, 93183, 'en', 'name', 'Higher Education Complex of Bam'),
(114136, 93183, 'fa', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ ŲØŁ…'),
(114137, 93184, 'pt', 'name', 'Fatec Jahu'),
(114138, 93185, 'en', 'name', 'Ohsumi Frontier Science Foundation'),
(114139, 93185, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§éš…åŸŗē¤Žē§‘å­¦å‰µęˆč²”å›£'),
(114140, 93186, 'no_lang_code', 'name', 'Rolex SA (Switzerland)'),
(114141, 93187, 'en', 'name', 'Hainan Provincial Department of Science and Technology'),
(114142, 93187, 'zh', 'name', 'ęµ·å—ēœē§‘ęŠ€åŽ…'),
(114143, 93188, 'en', 'name', 'AECC University College'),
(114144, 93189, 'de', 'name', 'Hochschule der bildenden Künste Essen'),
(114145, 93189, 'en', 'name', 'University of Fine Arts Essen'),
(114146, 93190, 'no_lang_code', 'name', 'TTP (United Kingdom)'),
(114147, 93191, 'de', 'name', 'Deutsche Allianz Meeresforschung'),
(114148, 93192, 'en', 'name', 'Ocean Data Factory Sweden'),
(114149, 93193, 'en', 'name', 'Flanders Hydraulics'),
(114150, 93193, 'nl', 'name', 'Waterbouwkundig Laboratorium'),
(114151, 93194, 'no_lang_code', 'name', 'Bernhardt Laboratories'),
(114152, 93195, 'es', 'name', 'Universidad Nacional Tecnológica'),
(114153, 93196, 'en', 'name', 'Kharkiv International Medical University'),
(114154, 93196, 'uk', 'name', 'ŠŸŃ€ŠøŠ²Š°Ń‚Š½ŠøŠ¹ вищий Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ заклаГ "Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ міжнароГний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚"'),
(114155, 93197, 'en', 'name', 'Institute of Astronomy and Space Physics'),
(114156, 93197, 'es', 'name', 'Instituto de AstronomĆ­a y FĆ­sica del Espacio'),
(114157, 93198, 'en', 'name', 'National Chengchi University'),
(114158, 93199, 'en', 'name', 'Ministry of the Environment'),
(114159, 93200, 'en', 'name', 'M.S. Poliakov Institute of Geotechnical Mechanics of the National Academy of Sciences of Ukraine'),
(114160, 93200, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геотехнічної механіки ім. М.Š”. ŠŸŠ¾Š»ŃŠŗŠ¾Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(114161, 93201, 'en', 'name', 'Biotherapy of Genetic Diseases, Inflammatory Disorders and Cancers'),
(114162, 93201, 'fr', 'name', 'BiothƩrapies des Maladies GƩnƩtiques Inflammatoires et Cancers'),
(114163, 93202, 'en', 'name', 'American Lebanese Syrian Associated Charities'),
(114164, 93203, 'en', 'name', 'Institute for Literature and Art'),
(114165, 93203, 'hr', 'name', 'Institut za književnost i umetnost'),
(114166, 93203, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠŗŃšŠøŠ¶ŠµŠ²Š½Š¾ŃŃ‚ Šø ŃƒŠ¼ŠµŃ‚Š½Š¾ŃŃ‚'),
(114167, 93204, 'en', 'name', 'American Chemistry Council'),
(114168, 93205, 'en', 'name', 'Nahanni National Park Reserve'),
(114169, 93205, 'fr', 'name', 'RƩserve de parc national de Nahanni'),
(114170, 93206, 'en', 'name', 'Research Centre in Mathematics of Decision'),
(114171, 93206, 'fr', 'name', 'Centre de Recherche en MathƩmatiques de la DƩcision'),
(114172, 93207, 'en', 'name', 'Japan Healthcare University'),
(114173, 93207, 'ja', 'name', 'ę—„ęœ¬åŒ»ē™‚å¤§å­¦'),
(114174, 93208, 'en', 'name', 'University of Craiova'),
(114175, 93208, 'ro', 'name', 'Universitatea din Craiova'),
(114176, 93209, 'hr', 'name', 'Hrvatsko biospeleoloŔko druŔtvo'),
(114177, 93209, 'no_lang_code', 'name', 'Croatian Biospeleological Society'),
(114178, 93210, 'ja', 'name', 'ę¦ŠåŽŸē—…é™¢'),
(114179, 93210, 'no_lang_code', 'name', 'Sakakibara Hospital'),
(114180, 93211, 'en', 'name', 'State Key Laboratory of Geohazard Prevention and Geoenvironment Protection'),
(114181, 93211, 'zh', 'name', 'åœ°č“Øē¾å®³é˜²ę²»äøŽåœ°č“ØēŽÆå¢ƒäæęŠ¤å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114182, 93212, 'en', 'name', 'Delivery of Advanced Network Technology to Europe (United Kingdom)'),
(114183, 93213, 'en', 'name', 'Ventspils University of Applied Sciences'),
(114184, 93214, 'en', 'name', 'Society of Urodynamics, Female Pelvic Medicine & Urogenital Reconstruction'),
(114185, 93215, 'en', 'name', 'Luhansk State Medical University'),
(114186, 93215, 'ru', 'name', 'Š›ŃƒŠ³Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114187, 93215, 'uk', 'name', 'Š›ŃƒŠ³Š°Š½ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114188, 93216, 'en', 'name', 'Western Fire Chiefs Association'),
(114189, 93217, 'en', 'name', 'The Icelandic Centre for Research'),
(114190, 93217, 'is', 'name', 'Rannsóknamiưstƶư ƍslands'),
(114191, 93218, 'ar', 'name', 'Ų§Ł„Ł…ŲÆŁŠŲ±ŁŠŲ© العامة للآثار ŁˆŲ§Ł„Ł…ŲŖŲ§Ų­Łā€Ž'),
(114192, 93218, 'en', 'name', 'Directorate-General of Antiquities and Museums'),
(114193, 93219, 'en', 'name', 'WSB Merito University in Torun'),
(114194, 93219, 'pl', 'name', 'Uniwersytet WSB Merito Toruń'),
(114195, 93220, 'cs', 'name', 'NĆ”rodnĆ­ muzeum v přírodě'),
(114196, 93220, 'en', 'name', 'National Open Air Museum'),
(114197, 93221, 'en', 'name', 'Ministry of Education and Culture'),
(114198, 93221, 'id', 'name', 'Kementerian Pendidikan dan Kebudayaan'),
(114199, 93222, 'fr', 'name', 'Imagerie et ModƩlisation en Neurobiologie et CancƩrologie'),
(114200, 93223, 'en', 'name', 'State Organization «Grigoriev Institute for Medical Radiology and Oncology of the National Academy of Medical Sciences of Ukraine»'),
(114201, 93223, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГичної раГіології та онкології ім. C. П. Григор’єва ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України»'),
(114202, 93224, 'en', 'name', 'Vietnam Sweden hospital'),
(114203, 93224, 'vi', 'name', 'Bệnh viện Việt Nam-ThỄy Điển'),
(114204, 93225, 'en', 'name', 'Harry Crossley Foundation'),
(114205, 93226, 'de', 'name', 'Schader-Stiftung'),
(114206, 93227, 'no_lang_code', 'name', 'Acorda Therapeutics (Finland)'),
(114207, 93228, 'en', 'name', 'Kyushu Art Institute of Technology'),
(114208, 93228, 'ja', 'name', 'ä¹å·žčŠøč”“å·„ē§‘å¤§å­¦'),
(114209, 93229, 'en', 'name', 'New South Wales Department of Health'),
(114210, 93230, 'en', 'name', 'Pukaskwa National Park'),
(114211, 93230, 'fr', 'name', 'Parc national de Pukaskwa'),
(114212, 93231, 'de', 'name', 'Führungsakademie der Bundeswehr'),
(114213, 93232, 'en', 'name', 'Southern Alamance Middle School'),
(114214, 93233, 'de', 'name', 'Fraunhofer-Institut für Großstrukturen in der Produktionstechnik IGP'),
(114215, 93233, 'en', 'name', 'Fraunhofer Institute for Large Structures in Production Engineering IGP'),
(114216, 93234, 'en', 'name', 'Critical Ecosystem Partnership Fund'),
(114217, 93235, 'en', 'name', 'American Museum of Natural History'),
(114218, 93235, 'es', 'name', 'Museo Americano de Historia Natural'),
(114219, 93235, 'fr', 'name', 'MusƩe amƩricain d''histoire naturelle'),
(114220, 93236, 'en', 'name', 'Center for Advanced Soft Electronics'),
(114221, 93236, 'ko', 'name', 'ģ†Œķ”„ķŠøģ¼ė ‰ķŠøė”œė‹‰ģŠ¤ģ—°źµ¬ė‹Ø'),
(114222, 93237, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Mittellandkanal / Elbe-Seitenkanal'),
(114223, 93238, 'en', 'name', 'Australian Academy of Health and Medical Sciences'),
(114224, 93239, 'en', 'name', 'Sapporo Shiroishi Memorial Hospital'),
(114225, 93239, 'ja', 'name', 'ęœ­å¹Œē™½ēŸ³čØ˜åæµē—…é™¢'),
(114226, 93240, 'bn', 'name', 'ą¦°ą¦æą¦œą¦æą¦“ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦…ą¦Ŗą¦„ą§ą¦Æą¦¾ą¦²ą¦®ą§‹ą¦²ą¦œą¦æ'),
(114227, 93240, 'en', 'name', 'Regional Institute of Ophthalmology Kolkata'),
(114228, 93241, 'en', 'name', 'Yellowstone to Yukon Conservation Initiative'),
(114229, 93242, 'en', 'name', 'Seoul Graduate School of Counseling Psychology'),
(114230, 93242, 'ko', 'name', 'ģ„œģšøģƒė‹“ģ‹¬ė¦¬ėŒ€ķ•™ģ›ėŒ€ķ•™źµ'),
(114231, 93243, 'en', 'name', 'Neuroimaging and Psychiatry'),
(114232, 93244, 'en', 'name', 'Ohio Educational Technology Conference'),
(114233, 93245, 'no_lang_code', 'name', 'IncellDx (United States)'),
(114234, 93246, 'es', 'name', 'Universidad Internacional Para el Desarrollo Sostenible'),
(114235, 93247, 'no_lang_code', 'name', 'Zodiac Aerospace (France)'),
(114236, 93248, 'en', 'name', 'University of Zululand'),
(114237, 93249, 'en', 'name', 'State Key Laboratory of Plateau Ecology and Agriculture'),
(114238, 93249, 'zh', 'name', 'ēœéƒØå…±å»ŗäø‰ę±Ÿęŗē”Ÿę€äøŽé«˜åŽŸå†œē‰§äøšå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(114239, 93250, 'en', 'name', 'Veterinary Medical Center'),
(114240, 93250, 'ja', 'name', 'ę±äŗ¬å¤§å­¦ å‹•ē‰©åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(114241, 93251, 'fr', 'name', 'Laboratoire de sociologie, philosophie et anthropologie politiques'),
(114242, 93252, 'no_lang_code', 'name', 'Biocon (United States)'),
(114243, 93253, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture Paris-Val de Seine'),
(114244, 93254, 'en', 'name', 'Rajkiya Engineering College Azamgarh'),
(114245, 93255, 'es', 'name', 'Universidad St. John''s'),
(114246, 93256, 'es', 'name', 'Fundación Canaria de Investigación Sanitaria'),
(114247, 93257, 'en', 'name', 'Miami University Glee Club'),
(114248, 93258, 'en', 'name', 'NOAA Geophysical Fluid Dynamics Laboratory'),
(114249, 93259, 'en', 'name', 'Benenden Hospital Trust'),
(114250, 93260, 'en', 'name', 'Lalor Foundation'),
(114251, 93261, 'it', 'name', 'InLaser'),
(114252, 93262, 'en', 'name', 'Banner Heart Hospital'),
(114253, 93263, 'en', 'name', 'Federal University of São João del-Rei'),
(114254, 93263, 'pt', 'name', 'Universidade Federal de São João del-Rei'),
(114255, 93264, 'it', 'name', 'INGV Osservatorio Etneo'),
(114256, 93265, 'fr', 'name', 'CancƩropƓle Grand Ouest'),
(114257, 93266, 'es', 'name', 'Centro Científico Tecnológico - Córdoba'),
(114258, 93267, 'en', 'name', 'Jane and Aatos Erkko Foundation'),
(114259, 93267, 'fi', 'name', 'Jane ja Aatos Erkon sƤƤtiƶ'),
(114260, 93268, 'en', 'name', 'Science and Technology Department of Qinghai Province'),
(114261, 93268, 'zh', 'name', 'é’ęµ·ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(114262, 93269, 'en', 'name', 'Iran University of Medical Sciences'),
(114263, 93269, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§ŪŒŲ±Ų§Ł†'),
(114264, 93270, 'en', 'name', 'Unit of Neuroscience Information and Complexity'),
(114265, 93270, 'fr', 'name', 'UnitƩ de Neurosciences Information et ComplexitƩ'),
(114266, 93271, 'pt', 'name', 'Fundo Nacional de Desenvolvimento da Educação'),
(114267, 93272, 'en', 'name', 'Gansu Education Department'),
(114268, 93272, 'zh', 'name', 'ē”˜č‚ƒēœę•™č‚²åŽ…'),
(114269, 93273, 'en', 'name', 'Peachtree Orthopaedic Clinic'),
(114270, 93274, 'en', 'name', 'Cerro Tololo Inter-American Observatory'),
(114271, 93275, 'es', 'name', 'Institución Educativa Félix Henao Botero'),
(114272, 93276, 'es', 'name', 'Centro Científico Tecnológico - TucumÔn'),
(114273, 93277, 'no_lang_code', 'name', 'Buddhasravaka Bhiksu University'),
(114274, 93278, 'en', 'name', 'Luisenhospital Aachen'),
(114275, 93279, 'no_lang_code', 'name', 'AC Diagnostics (United States)'),
(114276, 93280, 'fr', 'name', 'TƩlescope Bernard Lyot'),
(114277, 93281, 'no_lang_code', 'name', 'Foresight Science & Technology (United States)'),
(114278, 93282, 'en', 'name', 'Harvard Medical School'),
(114279, 93283, 'en', 'name', 'Duke University Health System'),
(114280, 93284, 'en', 'name', 'Florida Center for Advanced Aero Propulsion'),
(114281, 93285, 'es', 'name', 'Universidad Panamericana de Nuevo Laredo'),
(114282, 93286, 'en', 'name', 'Yunnan Provincial Science and Technology Department'),
(114283, 93287, 'en', 'name', 'American Society of Colon and Rectal Surgeons'),
(114284, 93288, 'no_lang_code', 'name', 'Bracco (Italy)'),
(114285, 93289, 'en', 'name', 'Bioproducts Institute'),
(114286, 93290, 'no_lang_code', 'name', 'Zabala (Spain)'),
(114287, 93291, 'de', 'name', 'Cochrane Deutschland Stiftung'),
(114288, 93292, 'no_lang_code', 'name', 'Prevent Safety (Austria)'),
(114289, 93293, 'pt', 'name', 'Campo Arqueologico de Mertola'),
(114290, 93294, 'en', 'name', 'American Ornithological Society'),
(114291, 93295, 'en', 'name', 'InfectoGnostics Research Campus Jena'),
(114292, 93296, 'no_lang_code', 'name', 'Thermo Fisher Scientific (United States)'),
(114293, 93297, 'no_lang_code', 'name', 'Sir Ratan Tata Trust and Navajbai Ratan Tata Trust'),
(114294, 93298, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© الخاصة Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(114295, 93298, 'en', 'name', 'Arab Private University for Science and Technology'),
(114296, 93299, 'no_lang_code', 'name', 'Geohabitat (Spain)'),
(114297, 93300, 'no_lang_code', 'name', 'Waves in Solids (United States)'),
(114298, 93301, 'en', 'name', 'Auckland Council'),
(114299, 93301, 'mi', 'name', 'Te Kaunihera o Tāmaki Makaurau'),
(114300, 93302, 'en', 'name', 'International Center for Responsible Gaming'),
(114301, 93303, 'en', 'name', 'New England Botanical Club'),
(114302, 93304, 'fr', 'name', 'Centre Oscar Lambret'),
(114303, 93305, 'en', 'name', 'Pamir University'),
(114304, 93306, 'es', 'name', 'Fundación Mamíferos y Conservación'),
(114305, 93307, 'en', 'name', 'Finnish Biomedical Imaging Node'),
(114306, 93308, 'en', 'name', 'Colorado State University System'),
(114307, 93309, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Neckar'),
(114308, 93310, 'en', 'name', 'National Parks and Wildlife Service'),
(114309, 93310, 'ga', 'name', 'An tSeirbhís PÔirceanna NÔisiúnta agus Fiadhúlra'),
(114310, 93311, 'no_lang_code', 'name', 'Deloitte (United States)'),
(114311, 93312, 'en', 'name', 'Wisconsin Potato and Vegetable Growers Association'),
(114312, 93313, 'en', 'name', 'Sherman Fairchild Foundation'),
(114313, 93314, 'es', 'name', 'Hospital de Montilla'),
(114314, 93315, 'en', 'name', 'Royal Bournemouth and Christchurch Hospitals NHS Foundation Trust'),
(114315, 93316, 'de', 'name', 'Theologische Hochschule Reutlingen'),
(114316, 93317, 'en', 'name', 'Kaiser Permanente Moanalua Medical Center'),
(114317, 93318, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(114318, 93319, 'fr', 'name', 'Universite Adventiste de Lukanga'),
(114319, 93320, 'en', 'name', 'Prince Albert National Park'),
(114320, 93320, 'fr', 'name', 'Parc national de Prince Albert'),
(114321, 93321, 'es', 'name', 'Universidad de Oriente'),
(114322, 93322, 'en', 'name', 'Gansu Provincial Science and Technology Department'),
(114323, 93323, 'en', 'name', 'Shanghai American School'),
(114324, 93323, 'zh', 'name', 'äøŠęµ·ē¾Žå›½å­¦ę ”'),
(114325, 93324, 'es', 'name', 'Ministerio de Educación y Formación Profesional'),
(114326, 93325, 'fr', 'name', 'Institut National des Sciences AppliquƩes Centre Val de Loire'),
(114327, 93326, 'es', 'name', 'Universidad EAFIT'),
(114328, 93327, 'es', 'name', 'Centro Universitario Integral de ZacatlƔn'),
(114329, 93328, 'da', 'name', 'Beckett-Fonden'),
(114330, 93329, 'no_lang_code', 'name', 'Australian Carbon Innovation'),
(114331, 93330, 'es', 'name', 'Universidad Católica de la Santísima Concepción'),
(114332, 93331, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(114333, 93331, 'en', 'name', 'Jordan University of Science and Technology'),
(114334, 93332, 'en', 'name', 'Foundation for Advanced Research'),
(114335, 93332, 'ru', 'name', 'ФонГ перспективных исслеГований'),
(114336, 93333, 'pt', 'name', 'Centro de Estudos e Pesquisas em Educação, Cultura e Ação ComunitÔria'),
(114337, 93334, 'fr', 'name', 'GƩnomique Fonctionnelle des Tumeurs Solides'),
(114338, 93335, 'en', 'name', 'National Nuclear Energy Commission'),
(114339, 93335, 'pt', 'name', 'Comissão Nacional de Energia Nuclear'),
(114340, 93336, 'es', 'name', 'Universidad Peruana Cayetano Heredia'),
(114341, 93337, 'en', 'name', 'Izumi City General Hospital'),
(114342, 93337, 'ja', 'name', 'å’Œę³‰åø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(114343, 93338, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å››å›½ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(114344, 93338, 'no_lang_code', 'name', 'Shikoku Cancer Center'),
(114345, 93339, 'en', 'name', 'NOAA Center for Satellite Applications and Research'),
(114346, 93340, 'no_lang_code', 'name', 'Australian Eggs'),
(114347, 93341, 'en', 'name', 'Waterford Institute of Technology'),
(114348, 93341, 'ga', 'name', 'Institiúid Teicneolaíochta Phort LÔirge'),
(114349, 93342, 'no_lang_code', 'name', 'GigaScience Press'),
(114350, 93343, 'en', 'name', 'Tohoku Medical and Pharmaceutical University Hospital'),
(114351, 93343, 'ja', 'name', 'ę±åŒ—åŒ»ē§‘å¤§å­¦ē—…é™¢'),
(114352, 93344, 'fr', 'name', 'Centre Hospitalier VƩtƩrinaire FrƩgis'),
(114353, 93345, 'en', 'name', 'Imazon, Institute of Man and Environment of Amazonia'),
(114354, 93345, 'pt', 'name', 'Instituto do Homem e Meio Ambiente da AmazƓnia'),
(114355, 93346, 'no_lang_code', 'name', 'Quantum Detectors'),
(114356, 93347, 'no_lang_code', 'name', 'Atypon (United States)'),
(114357, 93348, 'en', 'name', 'African Development Bank Group'),
(114358, 93349, 'en', 'name', 'Institute of Nuclear Physics of Lyon'),
(114359, 93349, 'fr', 'name', 'Institut de Physique Nucleaire de Lyon'),
(114360, 93350, 'en', 'name', 'National Nanotechnology Initiative'),
(114361, 93351, 'en', 'name', 'Christian University of the Americas'),
(114362, 93352, 'no_lang_code', 'name', 'Clothing Textile & Fibre Technology Development (Greece)'),
(114363, 93353, 'en', 'name', 'Gerstner Philanthropies'),
(114364, 93354, 'cs', 'name', 'Lesy České republiky'),
(114365, 93354, 'en', 'name', 'Forests of the Czech Republic'),
(114366, 93355, 'en', 'name', 'BF/M-Bayreuth'),
(114367, 93356, 'it', 'name', 'INGV Sezione di Roma 2'),
(114368, 93357, 'no_lang_code', 'name', 'China Railway Group (China)'),
(114369, 93357, 'zh', 'name', 'äø­åœ‹äø­éµč‚”ä»½ęœ‰é™å…¬åø'),
(114370, 93358, 'es', 'name', 'Ministerio de Universidades'),
(114371, 93359, 'en', 'name', 'Society for Electronic Transactions and Security'),
(114372, 93360, 'en', 'name', 'Vatican Apostolic Library'),
(114373, 93360, 'it', 'name', 'Biblioteca Apostolica Vaticana'),
(114374, 93361, 'en', 'name', 'Sikt – Norwegian Agency for Shared Services in Education and Research'),
(114375, 93361, 'no', 'name', 'Sikt – Kunnskapssektorens tenesteleverandĆør'),
(114376, 93362, 'no_lang_code', 'name', 'Steklov Mathematical Institute'),
(114377, 93362, 'ru', 'name', 'ŠœŠ°Ń‚ŠµŠ¼Š°Ń‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’. А. Дтеклова'),
(114378, 93363, 'en', 'name', 'Berlin Mathematical School'),
(114379, 93364, 'en', 'name', 'Institute of Cultural History'),
(114380, 93364, 'sl', 'name', 'InŔtitut za kulturno zgodovino'),
(114381, 93365, 'fr', 'name', 'Laboratoire Interdisciplinaire d''Ʃtude du Politique Hannah Arendt'),
(114382, 93366, 'en', 'name', 'Women and Gender Equality Canada'),
(114383, 93366, 'fr', 'name', 'Femmes et ƉgalitĆ© des genres Canada'),
(114384, 93367, 'en', 'name', 'Aligning Science Across Parkinson''s'),
(114385, 93368, 'en', 'name', 'Petroleum Technology Development Fund'),
(114386, 93369, 'en', 'name', 'Space Research Centre'),
(114387, 93369, 'pl', 'name', 'Centrum Badań Kosmicznych'),
(114388, 93370, 'en', 'name', 'Assumption University'),
(114389, 93370, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø­ąø±ąøŖąøŖąø±ąø”ąøŠąø±ąø'),
(114390, 93371, 'ar', 'name', 'المعهد Ų§Ł„Ų„ŁŠŲ·Ų§Ł„ŁŠ للثقافة'),
(114391, 93371, 'en', 'name', 'Italian Cultural Institute, Tunis'),
(114392, 93372, 'ko', 'name', '명지병원'),
(114393, 93372, 'no_lang_code', 'name', 'Myongji Hospital'),
(114394, 93373, 'en', 'name', 'Institute of Nuclear and Particle Physics'),
(114395, 93374, 'en', 'name', 'Innovation, Science and Economic Development Canada'),
(114396, 93374, 'fr', 'name', 'Innovation, Sciences et DƩveloppement Ʃconomique Canada'),
(114397, 93375, 'en', 'name', 'American Microscopical Society'),
(114398, 93376, 'en', 'name', 'International Oil and Gas University'),
(114399, 93376, 'ru', 'name', 'Š¢ŃƒŃ€ŠŗŠ¼ŠµŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ нефти Šø газа'),
(114400, 93377, 'no_lang_code', 'name', 'Vivli'),
(114401, 93378, 'fr', 'name', 'Centre d’Investigation Clinique des HĆ“pitaux Universitaires de Strasbourg'),
(114402, 93379, 'be', 'name', 'Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр меГицинских технологий, информатизации, ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(114403, 93379, 'en', 'name', 'Republican Scientific and Practical Center for Medical Technologies, Informatization, Administration and Management of Health'),
(114404, 93379, 'ru', 'name', 'RSPC MT'),
(114405, 93380, 'en', 'name', 'Korean Academy of International Business Management'),
(114406, 93380, 'ko', 'name', 'ķ•œźµ­źµ­ģ œź²½ģ˜ź“€ė¦¬ķ•™ķšŒ ķ™ˆķŽ˜'),
(114407, 93381, 'en', 'name', 'Marshfield Clinic'),
(114408, 93382, 'en', 'name', 'Financial Stability Board'),
(114409, 93383, 'no_lang_code', 'name', 'Quantitative Genomics Medicine Laboratories (qGenomics)'),
(114410, 93384, 'fr', 'name', 'Sciences Po Aix'),
(114411, 93385, 'en', 'name', 'John Simon Guggenheim Memorial Foundation'),
(114412, 93386, 'en', 'name', 'NOAA Environmental Modeling Center'),
(114413, 93387, 'no_lang_code', 'name', 'Desktop Metal (United States)'),
(114414, 93388, 'da', 'name', 'Statens Naturhistoriske Museum'),
(114415, 93388, 'en', 'name', 'Natural History Museum of Denmark'),
(114416, 93389, 'en', 'name', 'Cancer Council Northern Territory'),
(114417, 93390, 'de', 'name', 'Fachhochschule für Interkulturelle Theologie Hermannsburg'),
(114418, 93391, 'en', 'name', 'ESCP Business School'),
(114419, 93392, 'en', 'name', 'Mater Misericordiae University Hospital'),
(114420, 93392, 'ga', 'name', 'OspidƩal an Mater Misercordiae'),
(114421, 93393, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأحقاف'),
(114422, 93393, 'en', 'name', 'Al-Ahgaff University'),
(114423, 93394, 'fi', 'name', 'OLVI-SƤƤtiƶ'),
(114424, 93395, 'de', 'name', 'Soziologisches Forschungsinstitut Gƶttingen'),
(114425, 93396, 'en', 'name', 'Beaumont Hospital'),
(114426, 93397, 'en', 'name', 'Eqrem Ƈabej University'),
(114427, 93397, 'sq', 'name', 'Universiteti Eqrem Ƈabej'),
(114428, 93398, 'fr', 'name', 'Conseil RƩgional Midi-PyrƩnƩes'),
(114429, 93399, 'de', 'name', 'DRK Krankenhaus Alzey'),
(114430, 93400, 'no_lang_code', 'name', 'Rominster (Cyprus)'),
(114431, 93401, 'de', 'name', 'Max-Planck-Institut für Struktur und Dynamik der Materie'),
(114432, 93401, 'en', 'name', 'Max Planck Institute for the Structure and Dynamics of Matter'),
(114433, 93402, 'en', 'name', 'Pazy Foundation'),
(114434, 93403, 'ar', 'name', 'مستؓفى طرابلس Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ'),
(114435, 93403, 'en', 'name', 'Tripoli Central Hospital'),
(114436, 93403, 'it', 'name', 'L''Ospedale Coloniale di Vittorio Emanuele III'),
(114437, 93404, 'fr', 'name', 'CEA Marcoule'),
(114438, 93405, 'fr', 'name', 'Laboratoire d’Ethologie ExpĆ©rimentale et ComparĆ©e'),
(114439, 93406, 'fr', 'name', 'Institut Catholique d''Arts et MƩtiers'),
(114440, 93407, 'fr', 'name', 'Laboratoire Collisions AgrƩgats RƩactivitƩ'),
(114441, 93408, 'no_lang_code', 'name', 'ISAGEN EnergĆ­a Productiva (Colombia)'),
(114442, 93409, 'es', 'name', 'Universidad Federal de Santa Catarina'),
(114443, 93409, 'fr', 'name', 'UniversitƩ fƩdƩrale de santa catarina'),
(114444, 93409, 'pt', 'name', 'Universidade Federal de Santa Catarina'),
(114445, 93410, 'en', 'name', 'Technological University Monywa'),
(114446, 93410, 'my', 'name', 'မုံရွာ į€”į€Šį€ŗį€øį€•į€Šį€¬ į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(114447, 93411, 'en', 'name', 'Okayama Medical Center'),
(114448, 93411, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹å²”å±±åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(114449, 93412, 'en', 'name', 'Neurocritical Care Society'),
(114450, 93413, 'it', 'name', 'Fondazione per le Scienze Religiose Giovanni XXIII'),
(114451, 93414, 'en', 'name', 'Ministry of Health Welfare and Sport'),
(114452, 93414, 'nl', 'name', 'Ministerie van Volksgezondheid Welzijn en Sport'),
(114453, 93415, 'en', 'name', 'Taizhou Municipal Science and Technology Bureau'),
(114454, 93415, 'zh', 'name', 'ę ¹ę®å°å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(114455, 93416, 'en', 'name', 'Healing Foundation'),
(114456, 93417, 'en', 'name', 'Swedish National Heritage Board'),
(114457, 93417, 'fi', 'name', 'Valtion antikviteettivirasto'),
(114458, 93417, 'sv', 'name', 'RiksantikvarieƤmbetet'),
(114459, 93418, 'de', 'name', 'Deutsches ArchƤologisches Institut, Zentrale'),
(114460, 93418, 'en', 'name', 'German Archaeological Institute, Head Office'),
(114461, 93419, 'en', 'name', 'Heart of England NHS Foundation Trust'),
(114462, 93420, 'es', 'name', 'Instituto de MatemƔtica de Bahƭa Blanca'),
(114463, 93421, 'en', 'name', 'Peninsula Open Space Trust'),
(114464, 93422, 'en', 'name', 'Ankara Science University'),
(114465, 93422, 'tr', 'name', 'Ankara Bilim Üniversitesi'),
(114466, 93423, 'fr', 'name', 'Clinique, psychanalyse, dƩveloppement'),
(114467, 93424, 'en', 'name', 'Chelsea Hospital'),
(114468, 93425, 'en', 'name', 'Abbott Fund'),
(114469, 93426, 'en', 'name', 'OpenResearch (United States)'),
(114470, 93427, 'en', 'name', 'University of North Carolina School of Medicine'),
(114471, 93428, 'en', 'name', 'University of Wisconsin School of Medicine and Public Health'),
(114472, 93429, 'de', 'name', 'StƤdtische Kliniken Mƶnchengladbach'),
(114473, 93430, 'fr', 'name', 'Interaction HÓtes Agents Pathogènes'),
(114474, 93431, 'no_lang_code', 'name', 'Applied Genetic Technologies (United States)'),
(114475, 93432, 'de', 'name', 'PƤpstliche Katholische UniversitƤt von Argentinien'),
(114476, 93432, 'en', 'name', 'Pontifical Catholic University of Argentina'),
(114477, 93432, 'es', 'name', 'Pontificia Universidad Católica Argentina'),
(114478, 93432, 'fr', 'name', 'UniversitƩ catholique argentine'),
(114479, 93432, 'it', 'name', 'Pontificia universitĆ  cattolica argentina'),
(114480, 93433, 'en', 'name', 'SINTEF Industry'),
(114481, 93434, 'en', 'name', 'University of New Mexico - Taos'),
(114482, 93435, 'en', 'name', 'Foundation for Equity and Research New Zealand'),
(114483, 93436, 'de', 'name', 'Bayerisches Staatsministerium des Innern, für Bau und Verkehr'),
(114484, 93436, 'en', 'name', 'The Bavarian Ministry of the Interior, for Building and Transport'),
(114485, 93437, 'nl', 'name', 'Universitair Ziekenhuis Leuven'),
(114486, 93438, 'en', 'name', 'Association of Avian Veterinarians'),
(114487, 93439, 'es', 'name', 'Gobierno de Aragón'),
(114488, 93440, 'en', 'name', 'Earth System Science Interdisciplinary Center'),
(114489, 93441, 'en', 'name', 'China Postdoctoral Science Foundation'),
(114490, 93441, 'zh', 'name', 'äø­å›½åšå£«åŽē§‘å­¦åŸŗé‡‘ä¼š'),
(114491, 93442, 'en', 'name', 'Children''s Hospital of Michigan'),
(114492, 93443, 'en', 'name', 'Center for Advanced Systems Understanding'),
(114493, 93444, 'no_lang_code', 'name', 'Barr and Stroud (United Kingdom)'),
(114494, 93445, 'en', 'name', 'National Academy of Medical Sciences of Ukraine'),
(114495, 93445, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń меГичних наук України'),
(114496, 93446, 'no_lang_code', 'name', 'Novartis (Spain)'),
(114497, 93447, 'en', 'name', 'South Australian Research and Development Institute'),
(114498, 93448, 'no_lang_code', 'name', 'LM Wind Power (Netherlands)'),
(114499, 93449, 'en', 'name', 'Catholic University of Salvador'),
(114500, 93449, 'es', 'name', 'Universidade Católica de Salvador'),
(114501, 93449, 'pt', 'name', 'Universidade Católica do Salvador'),
(114502, 93450, 'es', 'name', 'Centro de Estudios Universitarios de Periodismo y Arte en Radio y Televisión'),
(114503, 93451, 'no_lang_code', 'name', 'Aeron LifeCycles (United States)'),
(114504, 93452, 'en', 'name', 'International Commission on Missing Persons'),
(114505, 93453, 'no_lang_code', 'name', 'Nasertic (Spain)'),
(114506, 93454, 'hu', 'name', 'Magyar MadÔrtani és Természetvédelmi Egyesület'),
(114507, 93455, 'en', 'name', 'NOAA Atlantic Oceanographic and Meteorological Laboratories'),
(114508, 93456, 'no_lang_code', 'name', 'Plug Power (United States)'),
(114509, 93457, 'fr', 'name', 'IMT Nord Europe'),
(114510, 93458, 'en', 'name', 'Lloyd Carr-Harris Foundation'),
(114511, 93459, 'sv', 'name', 'LƤnsstyrelsen Hallands LƤn'),
(114512, 93460, 'de', 'name', 'Hochschule für Wirtschaft und Gesellschaft Ludwigshafen'),
(114513, 93460, 'en', 'name', 'Ludwigshafen University of Business and Society'),
(114514, 93461, 'es', 'name', 'Ministerio de Medio Ambiente y Recursos Naturales'),
(114515, 93462, 'de', 'name', 'Wasserstraßen-Neubauamt Datteln'),
(114516, 93463, 'no_lang_code', 'name', 'Inanovate (United Kingdom)'),
(114517, 93464, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁ‰ Ų§Ł„Ų¬ŲÆŁŠŲÆ'),
(114518, 93464, 'en', 'name', 'New Valley University'),
(114519, 93465, 'en', 'name', 'Saint Mary''s Academy and College'),
(114520, 93466, 'en', 'name', 'Torngat Mountains National Park'),
(114521, 93466, 'fr', 'name', 'Parc national des Monts-Torngat'),
(114522, 93467, 'fr', 'name', 'GREYC'),
(114523, 93468, 'sv', 'name', 'Stiftelsen VƤrldsnaturfonden WWF'),
(114524, 93469, 'de', 'name', 'Eidgenössisches Departement für Umwelt, Verkehr, Energie und Kommunikation'),
(114525, 93469, 'en', 'name', 'Federal Department of Environment, Transport, Energy and Communications'),
(114526, 93469, 'fr', 'name', 'DƩpartement fƩdƩral de l''environnement, des transports, de l''Ʃnergie et des communications'),
(114527, 93469, 'it', 'name', 'Dipartimento federale dell''ambiente, dei trasporti, dell''energia e delle comunicazioni'),
(114528, 93470, 'en', 'name', 'Wildlife Management International'),
(114529, 93471, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų§ŲŖŲ­Ų§ŲÆŁŠŲ© للرقابة Ų§Ł„Ł†ŁˆŁˆŁŠŲ©'),
(114530, 93471, 'en', 'name', 'Federal Authority for Nuclear Regulation'),
(114531, 93472, 'en', 'name', 'Engineering and Physical Sciences Research Council'),
(114532, 93473, 'en', 'name', 'American Academy in Rome'),
(114533, 93474, 'en', 'name', 'Quincy University'),
(114534, 93475, 'en', 'name', 'Caldwell County Schools'),
(114535, 93476, 'en', 'name', 'Department of Infrastructure, Transport, Regional Development, Communications and the Arts'),
(114536, 93477, 'fa', 'name', 'Ł…Ų¹Ų±ŁŪŒ ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ł†Ł…Ų§Ų²ŪŒ'),
(114537, 93477, 'no_lang_code', 'name', 'Namazi Hospital'),
(114538, 93478, 'en', 'name', 'National Institute of Allergy and Infectious Diseases'),
(114539, 93479, 'en', 'name', 'Wings for Life'),
(114540, 93480, 'en', 'name', 'Ministry of the Brussels-Capital Region'),
(114541, 93481, 'no_lang_code', 'name', 'GITAM University'),
(114542, 93482, 'en', 'name', 'National Physical and Standards Laboratory'),
(114543, 93483, 'de', 'name', 'Fachhochschule Ostschweiz'),
(114544, 93483, 'en', 'name', 'University of Applied Sciences of Eastern Switzerland'),
(114545, 93484, 'no_lang_code', 'name', 'Voestalpine (Sweden)'),
(114546, 93485, 'en', 'name', 'Society of Professional Journalists'),
(114547, 93486, 'en', 'name', 'Stockton University'),
(114548, 93487, 'ja', 'name', 'å…«ęˆøå­¦é™¢å¤§å­¦'),
(114549, 93487, 'no_lang_code', 'name', 'Hachinohe Gakuin University'),
(114550, 93488, 'no_lang_code', 'name', 'Geely (China)'),
(114551, 93488, 'zh', 'name', '吉利'),
(114552, 93489, 'de', 'name', 'Hochschule für Kirchenmusik der Evangelischen Kirche von Westfalen'),
(114553, 93489, 'en', 'name', 'University of Church Music of the Evangelical Church of Westphalia'),
(114554, 93490, 'en', 'name', 'Government Laboratory'),
(114555, 93490, 'zh', 'name', 'ę”æåŗœåŒ–é©—ę‰€'),
(114556, 93491, 'en', 'name', 'International Research Universities Network'),
(114557, 93492, 'no_lang_code', 'name', 'Siemens Healthcare (Germany)'),
(114558, 93493, 'en', 'name', 'ARC Centre of Excellence in Cognition and its Disorders'),
(114559, 93494, 'fr', 'name', 'Centre de recherches Ʃducation et formation'),
(114560, 93495, 'en', 'name', 'Newport News Public Library System'),
(114561, 93496, 'en', 'name', 'Eqbal Lahoori Institute of Higher Education'),
(114562, 93496, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ اقبال Ł„Ų§Ł‡ŁˆŲ±ŪŒ'),
(114563, 93497, 'fr', 'name', 'Ɖcole nationale supĆ©rieure d''arts de Paris-Cergy'),
(114564, 93498, 'en', 'name', 'Sandhills Theatre Arts Renaissance School'),
(114565, 93499, 'es', 'name', 'Hospital Central de las Fuerzas Armadas'),
(114566, 93500, 'no_lang_code', 'name', 'Symantec (Ireland)'),
(114567, 93501, 'no_lang_code', 'name', 'Environmental Energy & Engineering'),
(114568, 93502, 'no_lang_code', 'name', 'Pedrini (Italy)'),
(114569, 93503, 'en', 'name', 'Polissia National University'),
(114570, 93503, 'uk', 'name', 'ŠŸŠ¾Š»Ń–ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114571, 93504, 'en', 'name', 'Bioinformatics Institute'),
(114572, 93505, 'en', 'name', 'School of Clinical Research'),
(114573, 93506, 'en', 'name', 'Swedish Foundation for Strategic Research'),
(114574, 93507, 'en', 'name', 'A Shelter for Cancer Families'),
(114575, 93508, 'no_lang_code', 'name', 'Resonance (United States)'),
(114576, 93509, 'en', 'name', 'Society of Labor Law Theory and Profession'),
(114577, 93509, 'ko', 'name', 'ģ‚¬ė‹Øė²•ģø ė…øė™ė²•ģ“ė” ģ‹¤ė¬“ķ•™ķšŒ'),
(114578, 93510, 'no_lang_code', 'name', 'Emerson Collective (United States)'),
(114579, 93511, 'en', 'name', 'California Waterfowl Association'),
(114580, 93512, 'en', 'name', 'Kenneth M. Molson Foundation'),
(114581, 93513, 'en', 'name', 'NOAA Storm Prediction Center'),
(114582, 93514, 'af', 'name', 'Suid-Afrikaanse Vereeniging vir Biochemie en MolekulĆŖre Biologie'),
(114583, 93514, 'en', 'name', 'South African Society of Biochemistry and Molecular Biology'),
(114584, 93515, 'es', 'name', 'Universidad Internacional Iberoamericana'),
(114585, 93516, 'en', 'name', 'K.G. Razumovsky Moscow State University of Technologies and Management'),
(114586, 93516, 'ru', 'name', 'Моско́вский Š³Š¾ŃŃƒŠ“а́рственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµĢŃ‚ техноло́гий Šø ŃƒŠæŃ€Š°Š²Š»ŠµĢŠ½ŠøŃ имени К. Š“. Разумовского'),
(114587, 93517, 'en', 'name', 'University of Poonch Rawalakot'),
(114588, 93518, 'fr', 'name', 'Sciences en SociƩtƩ'),
(114589, 93519, 'en', 'name', 'Advanced Electromagnetics Journal'),
(114590, 93520, 'en', 'name', 'Encephalitis Society'),
(114591, 93521, 'en', 'name', 'International Center for Tropical Agriculture'),
(114592, 93522, 'en', 'name', 'University of Palangka Raya'),
(114593, 93522, 'id', 'name', 'Universitas Palangka Raya'),
(114594, 93523, 'en', 'name', 'UPHLS'),
(114595, 93524, 'en', 'name', 'Oulu University Hospital'),
(114596, 93524, 'fi', 'name', 'Oulun yliopistollinen sairaala'),
(114597, 93525, 'no_lang_code', 'name', 'BGI Group (China)'),
(114598, 93525, 'zh', 'name', 'åŽå¤§åŸŗå› '),
(114599, 93526, 'fr', 'name', 'GIP CEI'),
(114600, 93527, 'en', 'name', 'Flinders Foundation'),
(114601, 93528, 'id', 'name', 'Universitas Muhammadiyah Cirebon'),
(114602, 93529, 'en', 'name', 'Changcheng Institute of Metrology & Measurement'),
(114603, 93529, 'zh', 'name', 'čˆŖē©ŗå·„äøšåŒ—äŗ¬é•æåŸŽč®”é‡ęµ‹čÆ•ęŠ€ęœÆē ”ē©¶ę‰€'),
(114604, 93530, 'en', 'name', 'Institute for Materials Research, Tohoku University'),
(114605, 93530, 'ja', 'name', 'ę±åŒ—å¤§å­¦é‡‘å±žęę–™ē ”ē©¶ę‰€'),
(114606, 93531, 'fr', 'name', 'Le Laboratoire d''IngƩnierie OstƩo-Articulaire et Dentaire'),
(114607, 93532, 'no_lang_code', 'name', 'BHP (Australia)'),
(114608, 93533, 'ar', 'name', 'معهد دبي Ų§Ł„Ł‚Ų¶Ų§Ų¦ŁŠ'),
(114609, 93533, 'en', 'name', 'Dubai Judicial Institute'),
(114610, 93534, 'fr', 'name', 'Fondation SantƩ et DƩveloppement Durable'),
(114611, 93535, 'es', 'name', 'Instituto de Química y Fisicoquímica Biológicas'),
(114612, 93536, 'de', 'name', 'Deutsche Geophysikalische Gesellschaft e.V.'),
(114613, 93536, 'en', 'name', 'German Geophysical Society'),
(114614, 93537, 'en', 'name', 'Australasian Society for the Study of Animal Behaviour'),
(114615, 93538, 'en', 'name', 'Fujita Health University'),
(114616, 93538, 'ja', 'name', 'č—¤ē”°äæå„č”›ē”Ÿå¤§å­¦'),
(114617, 93539, 'en', 'name', 'South Carolina Ovarian Cancer Foundation'),
(114618, 93540, 'pt', 'name', 'Instituto Dom Luiz'),
(114619, 93541, 'ba', 'name', 'Өфө Гәүләт Š°Š²ŠøŠ°Ń†ŠøŃ техник ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(114620, 93541, 'en', 'name', 'Ufa State Aviation Technical University'),
(114621, 93541, 'ru', 'name', 'Уфимский Š³Š¾ŃŃƒŠ“арственный авиационный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(114622, 93542, 'en', 'name', 'Northwest Territories Department of Environment and Natural Resources'),
(114623, 93543, 'en', 'name', 'Amateur Chamber Music Players'),
(114624, 93544, 'no_lang_code', 'name', 'Eramet (Belgium)'),
(114625, 93545, 'en', 'name', 'National Institute for Medical Research Development'),
(114626, 93545, 'fa', 'name', 'مؤسسه Ł…Ł„ŪŒ ŲŖŁˆŲ³Ų¹Ł‡ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų¹Ł„ŁˆŁ… پزؓکی'),
(114627, 93546, 'tr', 'name', 'Gaziosmanpaşa Taksim Eğitim ve Araştırma Hastanesi'),
(114628, 93547, 'af', 'name', 'Wirsam Wetenskaplik'),
(114629, 93547, 'no_lang_code', 'name', 'Wirsam Scientific (South Africa)'),
(114630, 93548, 'fr', 'name', 'Laboratoire de l''AccƩlƩrateur LinƩaire'),
(114631, 93549, 'no_lang_code', 'name', 'Drug Hunter'),
(114632, 93550, 'en', 'name', 'Feni University'),
(114633, 93550, 'hi', 'name', 'ফেনী ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(114634, 93551, 'de', 'name', 'EuropƤischer Forschungsrat'),
(114635, 93551, 'en', 'name', 'European Research Council'),
(114636, 93551, 'fr', 'name', 'Conseil europƩen de la recherche'),
(114637, 93552, 'en', 'name', 'Alzheimer''s Society'),
(114638, 93553, 'en', 'name', 'Hangzhou Institute of Applied Acoustics'),
(114639, 93553, 'zh', 'name', 'äø­å›½čˆ¹čˆ¶é‡å·„é›†å›¢å…¬åøē¬¬äøƒäø€äŗ”ē ”ē©¶ę‰€'),
(114640, 93554, 'en', 'name', 'Baghlan University'),
(114641, 93554, 'fa', 'name', 'دانؓگاه بغلان'),
(114642, 93555, 'pt', 'name', 'Fundação Centro de Estudos do Universo'),
(114643, 93556, 'cs', 'name', 'State Regional Archive in Plzeň, StÔtní oblastní archiv v Plzni'),
(114644, 93557, 'ko', 'name', '삼성SDS'),
(114645, 93557, 'no_lang_code', 'name', 'Samsung SDS (South Korea)'),
(114646, 93558, 'fr', 'name', 'SociƩtƩ MathƩmatique de France'),
(114647, 93559, 'fr', 'name', 'Laboratoire de thermique interfaces environnement'),
(114648, 93560, 'fr', 'name', 'Institut d''Histoire Moderne et Contemporaine'),
(114649, 93561, 'en', 'name', 'Shanghai Police College'),
(114650, 93561, 'zh', 'name', 'äøŠęµ·å…¬å®‰å­¦é™¢'),
(114651, 93562, 'en', 'name', 'Portuguese Platform of BioImaging'),
(114652, 93563, 'de', 'name', 'Arzneimittelkommission der deutschen Ƅrzteschaft'),
(114653, 93564, 'en', 'name', 'British Institute in Eastern Africa'),
(114654, 93565, 'no_lang_code', 'name', 'Lumenari'),
(114655, 93566, 'es', 'name', 'Universidad de Estudios Profesionales de Ciencias y Artes'),
(114656, 93567, 'no_lang_code', 'name', 'Iveco (Germany)'),
(114657, 93568, 'no_lang_code', 'name', 'Improved Pharma (United States)'),
(114658, 93569, 'es', 'name', 'Instituto Tecnológico de Santo Domingo'),
(114659, 93570, 'en', 'name', 'Korea Carbon Capture & Sequestration R&D Center'),
(114660, 93570, 'ko', 'name', 'ķ•œźµ­ ķƒ„ģ†Œ ķ¬ģ§‘ ė° 격리 R & D 센터'),
(114661, 93571, 'no_lang_code', 'name', 'InfoEd Global (United States)'),
(114662, 93572, 'en', 'name', 'Middle East Studies Association of North America'),
(114663, 93573, 'fr', 'name', 'Ecole supƩrieure d''art | Dunkerque - Tourcoing'),
(114664, 93574, 'en', 'name', 'University of the Assumption'),
(114665, 93575, 'en', 'name', 'International Coral Reef Society'),
(114666, 93576, 'en', 'name', 'Williamson County Conservation Foundation'),
(114667, 93577, 'en', 'name', 'Catholic University of West Africa'),
(114668, 93577, 'fr', 'name', 'UniversitƩ Catholique de l''Afrique de l''Ouest'),
(114669, 93578, 'de', 'name', 'LEIZA - Leibniz-Zentrum für Archäologie'),
(114670, 93579, 'no_lang_code', 'name', 'Alticor (United States)'),
(114671, 93580, 'en', 'name', 'Montgomery County Public Libraries'),
(114672, 93581, 'en', 'name', 'Xinjiang Uygur Autonomous Region Education Department'),
(114673, 93581, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗę•™č‚²åŽ…'),
(114674, 93582, 'en', 'name', 'Ramathibodi Hospital'),
(114675, 93582, 'th', 'name', 'ą¹‚ąø£ąø‡ąøžąø¢ąø²ąøšąø²ąø„ąø£ąø²ąø”ąø²ąø˜ąø“ąøšąø”ąøµ'),
(114676, 93583, 'en', 'name', 'Iberoamerican Cochrane Centre'),
(114677, 93583, 'es', 'name', 'Centro Cochrane Iberoamericano'),
(114678, 93584, 'en', 'name', 'Rotary International'),
(114679, 93585, 'de', 'name', 'Zentralanstalt für Meteorologie und Geodynamik'),
(114680, 93585, 'en', 'name', 'Central Institution for Meteorology and Geodynamics'),
(114681, 93586, 'es', 'name', 'Instituto de Tecnologías en Detección y Astropartículas'),
(114682, 93587, 'en', 'name', 'Vera C. Rubin Observatory'),
(114683, 93588, 'en', 'name', 'Izeh Islamic Azad University'),
(114684, 93588, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ°Ł‡'),
(114685, 93589, 'no_lang_code', 'name', 'Groupe Lactalis (France)'),
(114686, 93590, 'en', 'name', 'Department of Science and Innovation'),
(114687, 93591, 'no_lang_code', 'name', 'Gebro Pharma (Spain)'),
(114688, 93592, 'it', 'name', 'Politecnico di Milano - Department of Design'),
(114689, 93593, 'no_lang_code', 'name', 'Carestream (United States)'),
(114690, 93594, 'en', 'name', 'Chernihiv Polytechnic National University'),
(114691, 93594, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š§ŠµŃ€Š½Ń–Š³Ń–Š²ŃŃŒŠŗŠ° політехніка»'),
(114692, 93595, 'en', 'name', 'Ocean Frontier Institute'),
(114693, 93596, 'no_lang_code', 'name', 'Escrypt (Germany)'),
(114694, 93597, 'en', 'name', 'Canadian Virtual University'),
(114695, 93598, 'en', 'name', 'State Agricultural Polytechnic of Kupang'),
(114696, 93598, 'id', 'name', 'Politeknik Pertanian Negeri Kupang'),
(114697, 93599, 'en', 'name', 'Tokyo Women''s Medical University Adachi Medical Center'),
(114698, 93599, 'ja', 'name', 'ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦é™„å±žč¶³ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(114699, 93600, 'en', 'name', 'Juvenile Diabetes Research Foundation in Israel'),
(114700, 93600, 'he', 'name', 'האגודה ×œ×”×•×›×Ø×Ŗ × ×¢×•×Ø×™× (הוג 1) ×‘×™×©×Ø××œ'),
(114701, 93601, 'no_lang_code', 'name', 'DAASI International (Germany)'),
(114702, 93602, 'en', 'name', 'G. K. Skryabin Institute of Biochemistry and Physiology of Microorganisms'),
(114703, 93602, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биохимии Šø физиологии микроорганизмов им. Š“.К.Š”ŠŗŃ€ŃŠ±ŠøŠ½Š° Š ŠŠ'),
(114704, 93603, 'no_lang_code', 'name', 'Sweco (Czechia)'),
(114705, 93604, 'no_lang_code', 'name', 'Opcondys (United States)'),
(114706, 93605, 'en', 'name', 'Community Science and Data Center'),
(114707, 93606, 'en', 'name', 'Adlerbertska Foundations'),
(114708, 93607, 'en', 'name', 'Afghan Defense University'),
(114709, 93608, 'pt', 'name', 'Universidade Lusófona da Guiné'),
(114710, 93609, 'en', 'name', 'Clarkton School of Discovery'),
(114711, 93610, 'es', 'name', 'Consultores De Automatización Y Robótica'),
(114712, 93611, 'no_lang_code', 'name', 'Rho (United States)'),
(114713, 93612, 'en', 'name', 'Hospital Ibn Sina'),
(114714, 93612, 'fr', 'name', 'HƓpital Ibn Sina-Rabat'),
(114715, 93613, 'en', 'name', 'Banner MD Anderson Cancer Center'),
(114716, 93614, 'en', 'name', 'Qausuittuq National Park'),
(114717, 93614, 'fr', 'name', 'Parc national Qausuittuq'),
(114718, 93615, 'en', 'name', 'Province of Noord-Brabant'),
(114719, 93615, 'nl', 'name', 'Provincie Noord-Brabant'),
(114720, 93616, 'fr', 'name', 'Centre de Recherche sur l’Action Locale'),
(114721, 93617, 'de', 'name', 'Dienstleistungszentrum LƤndlicher Raum Westpfalz'),
(114722, 93618, 'af', 'name', 'Koninklike Vereeniging van Suid-Africa'),
(114723, 93618, 'en', 'name', 'Royal Society of South Africa'),
(114724, 93619, 'en', 'name', 'Blavatnik Family Foundation'),
(114725, 93620, 'la', 'name', 'Iuridicum Remedium'),
(114726, 93621, 'en', 'name', 'Southern Illinois University Carbondale'),
(114727, 93621, 'es', 'name', 'Universidad del Sur de Illinois Carbondale'),
(114728, 93621, 'fr', 'name', 'UniversitƩ du sud de l''illinois Ơ carbondale'),
(114729, 93622, 'es', 'name', 'Comisión Nacional de Prevención de Riesgos y Atención de Emergencias'),
(114730, 93623, 'en', 'name', 'Sage Bionetworks'),
(114731, 93624, 'no_lang_code', 'name', 'GlaxoSmithKline (Spain)'),
(114732, 93625, 'en', 'name', 'J. Craig Venter Institute'),
(114733, 93626, 'en', 'name', 'Chinese Journal of Integrated Traditional and Western Medicine'),
(114734, 93627, 'en', 'name', 'National Institute on Aging'),
(114735, 93628, 'en', 'name', 'Jilin Province Science and Technology Department'),
(114736, 93629, 'es', 'name', 'Centro Científico Tecnológico Patagónico'),
(114737, 93630, 'de', 'name', 'Archiv der Deutschen Frauenbewegung'),
(114738, 93631, 'en', 'name', 'American Farmland Trust'),
(114739, 93632, 'no_lang_code', 'name', 'Global Thermostat (United States)'),
(114740, 93633, 'en', 'name', 'Brackley Community Hospital'),
(114741, 93634, 'no_lang_code', 'name', 'Intesa Sanpaolo (Italy)'),
(114742, 93635, 'cs', 'name', 'DÅÆm uměnĆ­ města Brna'),
(114743, 93635, 'en', 'name', 'Brno House of Arts'),
(114744, 93636, 'en', 'name', 'Swedish Institute for Children''s Books'),
(114745, 93637, 'en', 'name', 'İzmir Tınaztepe University'),
(114746, 93637, 'tr', 'name', 'İzmir Tınaztepe Üniversitesi'),
(114747, 93638, 'en', 'name', 'Panhandle Plains Historical Society'),
(114748, 93639, 'de', 'name', 'Swiss Society for Dermatology and Venereology'),
(114749, 93639, 'fr', 'name', 'SociƩtƩ Suisse de Dermatologie et VƩnƩrƩologie'),
(114750, 93640, 'en', 'name', 'Innovative Health Initiative'),
(114751, 93641, 'en', 'name', 'Georgia Southern University'),
(114752, 93642, 'en', 'name', 'South African School of Motion Picture Medium and Live Performance'),
(114753, 93643, 'ar', 'name', 'المخبر Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„Ł…Ų¹Ų§ŁŠŁŠŲ± ŁˆŲ§Ł„Ł…Ų¹Ų§ŁŠŲ±Ų© Ų¢Ų±.Ų„Ų³.Ų„Ų³'),
(114754, 93643, 'en', 'name', 'National Standards and Calibration Laboratory'),
(114755, 93644, 'en', 'name', 'Sapientia Hungarian University of Transylvania'),
(114756, 93644, 'hu', 'name', 'Sapientia ErdƩlyi Magyar TudomƔnyegyetem'),
(114757, 93644, 'ro', 'name', 'Universitatea Sapientia'),
(114758, 93645, 'am', 'name', 'į‹²įˆ‹ į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(114759, 93645, 'en', 'name', 'Dilla University'),
(114760, 93646, 'en', 'name', 'Technical Institute of Physics and Chemistry'),
(114761, 93646, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē†åŒ–ęŠ€ęœÆē ”ē©¶ę‰€'),
(114762, 93647, 'no_lang_code', 'name', 'United Business Media (Canada)'),
(114763, 93648, 'en', 'name', 'Parkinson Canada'),
(114764, 93648, 'fr', 'name', 'SociƩtƩ Parkinson Canada'),
(114765, 93649, 'no_lang_code', 'name', 'GE Global Research (Germany)'),
(114766, 93650, 'en', 'name', 'Indus Hospital'),
(114767, 93651, 'id', 'name', 'Universitas Labuhanbatu'),
(114768, 93652, 'es', 'name', 'Universidad Benavente'),
(114769, 93653, 'en', 'name', 'SIIS Research and Documentation Centre'),
(114770, 93653, 'es', 'name', 'SIIS Centro de Documentación y Estudios'),
(114771, 93653, 'eu', 'name', 'SIIS Dokumentazio eta Ikerketa Zentroa'),
(114772, 93654, 'es', 'name', 'Universidad Estatal de Sonora'),
(114773, 93655, 'en', 'name', 'National Defence Medical Centre'),
(114774, 93656, 'en', 'name', 'Dr. TMA Pai Hospital'),
(114775, 93657, 'es', 'name', 'Cabildo de Tenerife'),
(114776, 93658, 'en', 'name', 'Finnish Defence Forces'),
(114777, 93659, 'en', 'name', 'Canteen'),
(114778, 93660, 'en', 'name', 'St. Paul''s Hospital Millennium Medical College'),
(114779, 93661, 'en', 'name', 'Presidency for Turks Abroad and Related Communities'),
(114780, 93661, 'tr', 'name', 'Yurtdışı Türkler ve Akraba Topluluklar Başkanlığı'),
(114781, 93662, 'en', 'name', 'Australian Centre for Advanced Photovoltaics'),
(114782, 93663, 'no_lang_code', 'name', 'Shenzhen Chipscreen Biosciences Co.'),
(114783, 93663, 'zh', 'name', 'ę·±åœ³å¾®čŠÆē”Ÿē‰©ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(114784, 93664, 'en', 'name', 'NOAA National Water Center'),
(114785, 93665, 'en', 'name', 'Dnipro National University of Railway Transport named after Academician V. Lazaryan'),
(114786, 93665, 'ru', 'name', 'Днепровский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ железноГорожного транспорта имени акаГемика Š’. Š›Š°Š·Š°Ń€ŃŠ½Š°');
INSERT INTO `ror_settings` VALUES
(114787, 93665, 'uk', 'name', 'Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ залізничного Ń‚Ń€Š°Š½ŃŠæŠ¾Ń€Ń‚Ńƒ імені акаГеміка Š’. Š›Š°Š·Š°Ń€ŃŠ½Š°'),
(114788, 93666, 'en', 'name', 'Bilawal Medical College'),
(114789, 93667, 'en', 'name', 'Kharkiv State Academy of Physical Culture'),
(114790, 93667, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø'),
(114791, 93668, 'no_lang_code', 'name', 'Accelero Biostructures'),
(114792, 93669, 'en', 'name', 'Beijing Municipal Administration of Hospitals'),
(114793, 93670, 'en', 'name', 'Korean Association for Science Education'),
(114794, 93671, 'nl', 'name', 'Vogelbescherming Nederland'),
(114795, 93672, 'en', 'name', 'March of Dimes'),
(114796, 93673, 'en', 'name', 'National Scientific Centre "Institute of Metrology"'),
(114797, 93673, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии»'),
(114798, 93673, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрології»'),
(114799, 93674, 'fr', 'name', 'Centre de ThƩorie et Analyse du Droit'),
(114800, 93675, 'en', 'name', 'NOAA Office of National Marine Sanctuaries'),
(114801, 93676, 'no_lang_code', 'name', 'Altec (Greece)'),
(114802, 93677, 'en', 'name', 'Paralyzed Veterans of America, Buckeye Chapter'),
(114803, 93678, 'de', 'name', 'Stiftung des ƶffentlichen Rechts an der Martin-Luther-UniversitƤt Halle-Wittenberg'),
(114804, 93679, 'en', 'name', 'Serine Proteases and Pathophysiology of the neurovascular Unit'),
(114805, 93679, 'fr', 'name', 'SƩrine protƩases et physiopathologie de l''unitƩ neurovasculaire'),
(114806, 93680, 'en', 'name', 'College Track'),
(114807, 93681, 'en', 'name', 'Zagreb School of Economics and Management'),
(114808, 93681, 'hr', 'name', 'Zagrebačka Ŕkola ekonomije i managementa'),
(114809, 93682, 'en', 'name', 'Health and Environmental Sciences Institute'),
(114810, 93683, 'en', 'name', 'Life Science Center for Survival Dynamics, Tsukuba Advanced Research Alliance (TARA)'),
(114811, 93683, 'ja', 'name', '筑波大学 ē”Ÿå­˜ćƒ€ć‚¤ćƒŠćƒŸć‚Æć‚¹ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(114812, 93684, 'it', 'name', 'Istituto Nazionale di Studi sul Rinascimento'),
(114813, 93685, 'en', 'name', 'Runajambi Institute for the Study of Quichua Culture and Health'),
(114814, 93686, 'en', 'name', 'Yoho National Park'),
(114815, 93686, 'fr', 'name', 'Parc national Yoho'),
(114816, 93687, 'en', 'name', 'National Metrology Institute of the Republic of Moldova'),
(114817, 93687, 'ro', 'name', 'Institutul Național de Metrologie'),
(114818, 93688, 'en', 'name', 'Nepal Open University'),
(114819, 93688, 'hi', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤–ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(114820, 93689, 'en', 'name', 'Tokyo Metropolitan Tama Medical Center'),
(114821, 93689, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å¤šę‘©ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(114822, 93690, 'cs', 'name', 'VysokÔ Ŕkola Karlovy Vary'),
(114823, 93690, 'en', 'name', 'College of Karlovy Vary'),
(114824, 93691, 'en', 'name', 'Biomedicine Research Institute of Buenos Aires - CONICET - Partner Institute of the Max Planck Society'),
(114825, 93691, 'es', 'name', 'Instituto de Investigación en Biomedicina de Buenos Aires - Instituto Partner de la Sociedad Max Planck'),
(114826, 93692, 'en', 'name', 'Australian National Data Service'),
(114827, 93693, 'en', 'name', 'Griggs International Academy'),
(114828, 93694, 'en', 'name', 'TransCanada Calibrations'),
(114829, 93695, 'en', 'name', 'Centre for Safe Air'),
(114830, 93696, 'en', 'name', 'ICT University'),
(114831, 93697, 'en', 'name', 'Chongqing Municipal Health Commission'),
(114832, 93697, 'zh', 'name', 'é‡åŗ†åø‚å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(114833, 93698, 'en', 'name', 'Federal Department of Justice'),
(114834, 93699, 'de', 'name', 'Landesamt für Landwirtschaft und nachhaltige Landentwicklung'),
(114835, 93700, 'en', 'name', 'Institute of Taoist Education and Acupuncture'),
(114836, 93701, 'en', 'name', 'Crest Middle School'),
(114837, 93702, 'ko', 'name', 'ģ‚¬ģš“ė“œė°±ģ‹  ģ£¼ģ‹ķšŒģ‚¬'),
(114838, 93702, 'no_lang_code', 'name', 'Sound Vaccine'),
(114839, 93703, 'no_lang_code', 'name', 'AT Sciences (United States)'),
(114840, 93704, 'en', 'name', 'Canadian Operational Research Society'),
(114841, 93704, 'fr', 'name', 'SociƩtƩ Canadienne de Recherche OpƩrationnelle'),
(114842, 93705, 'en', 'name', 'Minnesota Veterans Medical Research and Education Foundation'),
(114843, 93706, 'en', 'name', 'Toronto General Hospital Research Institute'),
(114844, 93707, 'fi', 'name', 'Tiina ja Antti Herlinin sƤƤtiƶ'),
(114845, 93708, 'fr', 'name', 'Laboratoire interdisciplinaire en neurosciences, physiologie et psychologie'),
(114846, 93709, 'nl', 'name', 'Maaslandziekenhuis'),
(114847, 93710, 'en', 'name', 'Nazi Boni University'),
(114848, 93710, 'fr', 'name', 'UniversitƩ Nazi Boni'),
(114849, 93711, 'en', 'name', 'Korea Institute of Marine Science and Technology Promotion'),
(114850, 93711, 'ko', 'name', 'ķ•“ģ–‘ģˆ˜ģ‚°ź³¼ķ•™źø°ģˆ ģ§„ķ„ģ›'),
(114851, 93712, 'nl', 'name', 'Rathenau Instituut'),
(114852, 93713, 'en', 'name', 'Woodwell Climate Research Center'),
(114853, 93714, 'en', 'name', 'McEwen Stem Cell Institute'),
(114854, 93715, 'no_lang_code', 'name', 'Recovered (United States)'),
(114855, 93716, 'pl', 'name', 'Centrum Medyczne Smoluchowskiego - Gdańsk'),
(114856, 93717, 'no_lang_code', 'name', 'Vijaya College'),
(114857, 93718, 'en', 'name', 'Clermont-Ferrand’s Superior National School of Chemistry'),
(114858, 93718, 'fr', 'name', 'Ɖcole nationale supĆ©rieure de chimie de Clermont-Ferrand'),
(114859, 93719, 'es', 'name', 'Hospital Universitario de Valme'),
(114860, 93720, 'en', 'name', 'Finnish Heritage Agency'),
(114861, 93720, 'fi', 'name', 'Museovirasto'),
(114862, 93720, 'sv', 'name', 'Museiverket'),
(114863, 93721, 'es', 'name', 'Universidad Hispanoamericana'),
(114864, 93722, 'en', 'name', 'Western Metropolitan Area University Association'),
(114865, 93722, 'ja', 'name', 'é¦–éƒ½åœč„æéƒØå¤§å­¦å˜ä½äŗ’ę›å”å®šä¼š'),
(114866, 93723, 'es', 'name', 'Hospital ClĆ­nico San Carlos'),
(114867, 93724, 'en', 'name', 'Kazakhstan Institute of Standardization and Metrology'),
(114868, 93724, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ ŃŃ‚Š°Š½Š“Š°Ń€Ń‚Ń‚Š°Ńƒ және Š¼ŠµŃ‚Ń€Š¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(114869, 93724, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ станГартизации Šø метрологии'),
(114870, 93725, 'en', 'name', 'Stay in the Shade'),
(114871, 93726, 'no_lang_code', 'name', 'Theodor Bilharz Research Institute'),
(114872, 93727, 'en', 'name', 'International Maize and Wheat Improvement Center'),
(114873, 93728, 'en', 'name', 'International Medical University'),
(114874, 93728, 'ms', 'name', 'Universiti Perubatan Antarabangsa'),
(114875, 93729, 'en', 'name', 'Pat Tillman Foundation'),
(114876, 93730, 'en', 'name', 'AI Sweden'),
(114877, 93731, 'de', 'name', 'Bundesanstalt für Geowissenschaften und Rohstoffe'),
(114878, 93731, 'en', 'name', 'Federal Institute for Geosciences and Natural Resources'),
(114879, 93732, 'en', 'name', 'Virginia Society of Ornithology'),
(114880, 93733, 'en', 'name', 'Presidency of the Republic of Türkiye, Defense Industry Agency'),
(114881, 93733, 'tr', 'name', 'Türkiye Cumhuriyeti Cumhurbaşkanlığı Savunma Sanayii Başkanlığı'),
(114882, 93734, 'en', 'name', 'Education Department of Jiangxi Province'),
(114883, 93735, 'en', 'name', 'Bloxwich Hospital'),
(114884, 93736, 'en', 'name', 'Andalas University'),
(114885, 93736, 'id', 'name', 'Universitas Andalas'),
(114886, 93737, 'no_lang_code', 'name', 'KWS Momont (France)'),
(114887, 93738, 'en', 'name', 'Ufuk University'),
(114888, 93738, 'tr', 'name', 'Ufuk Üniversitesi'),
(114889, 93739, 'en', 'name', 'Government Polytechnic College, Rajkot'),
(114890, 93740, 'en', 'name', 'Secretariat of Energy'),
(114891, 93740, 'es', 'name', 'SecretarĆ­a de EnergĆ­a'),
(114892, 93741, 'en', 'name', 'NIHR BioResource'),
(114893, 93742, 'en', 'name', 'Forrest Research Foundation'),
(114894, 93743, 'fr', 'name', 'Unité transversale de recherche en psychogénèse et psychopathologie'),
(114895, 93744, 'en', 'name', 'Arthritis Research Centre of Canada'),
(114896, 93745, 'no_lang_code', 'name', 'Georex (France)'),
(114897, 93746, 'en', 'name', 'Universal Healthwatch'),
(114898, 93747, 'en', 'name', 'Peninsula College of Medicine and Dentistry'),
(114899, 93748, 'pt', 'name', 'Centro Hospitalar do Porto'),
(114900, 93749, 'en', 'name', 'Key Laboratory of Zoological Systematics and Evolution'),
(114901, 93749, 'zh', 'name', 'åŠØē‰©čæ›åŒ–äøŽē³»ē»Ÿå­¦é™¢é‡ē‚¹å®žéŖŒå®¤'),
(114902, 93750, 'af', 'name', 'Suid-Afrikaanse Immunologie Vereeniging'),
(114903, 93750, 'en', 'name', 'South African Immunology Society'),
(114904, 93751, 'no_lang_code', 'name', 'Cengage Learning (United States)'),
(114905, 93752, 'en', 'name', 'SOLARIS National Synchrotron Radiation Centre'),
(114906, 93752, 'pl', 'name', 'Narodowe Centrum Promieniowania Synchrotronowego SOLARIS'),
(114907, 93753, 'en', 'name', 'Tropical Institute Of Community Health And Development'),
(114908, 93754, 'en', 'name', 'Sussex Community NHS Foundation Trust'),
(114909, 93755, 'no_lang_code', 'name', 'Vonova (United States)'),
(114910, 93756, 'cs', 'name', 'Ministerstvo životnĆ­ho prostředĆ­ ČeskĆ© republiky'),
(114911, 93756, 'en', 'name', 'Ministry of the Environment of the Czech Republic'),
(114912, 93757, 'de', 'name', 'Hochschule für Kirchenmusik der Diözese Rottenburg-Stuttgart'),
(114913, 93757, 'en', 'name', 'University of Church Music of the Diocese of Rottenburg-Stuttgart'),
(114914, 93758, 'en', 'name', 'Nagase Science Technology Foundation'),
(114915, 93758, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé•·ē€¬ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(114916, 93759, 'en', 'name', 'World Prevention Alliance'),
(114917, 93760, 'es', 'name', 'Centro de Investigaciones Cardiovasculares'),
(114918, 93761, 'en', 'name', 'National Museum of Natural History of the National Academy of Sciences of Ukraine'),
(114919, 93761, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науково-прироГничий музей ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(114920, 93762, 'de', 'name', 'Theologische FakultƤt Fulda'),
(114921, 93762, 'en', 'name', 'Faculty of Theology Fulda'),
(114922, 93763, 'en', 'name', 'Pancreatic Cancer Research Fund'),
(114923, 93764, 'no_lang_code', 'name', 'Isos Housing (United Kingdom)'),
(114924, 93765, 'en', 'name', 'American Philosophical Society'),
(114925, 93766, 'en', 'name', 'University of Pittsburgh Medical Center'),
(114926, 93767, 'en', 'name', 'National Science and Technology Library'),
(114927, 93767, 'zh', 'name', 'å›½å®¶ē§‘ęŠ€å›¾ä¹¦ę–‡ēŒ®äø­åæƒ'),
(114928, 93768, 'en', 'name', 'Guilin Municipal People''s Government'),
(114929, 93768, 'zh', 'name', 'ę”‚ęž—åø‚äŗŗę°‘ę”æåŗœ'),
(114930, 93769, 'en', 'name', 'Paget Foundation'),
(114931, 93770, 'en', 'name', 'Korean Society For The Study Of Physical Education'),
(114932, 93770, 'ko', 'name', 'ķ•œźµ­ģ²“ģœ”źµģœ”ķ•™ķšŒ'),
(114933, 93771, 'ja', 'name', 'ę„ŸęŸ“ē—‡ć‚»ćƒ³ć‚æćƒ¼éƒ½ē«‹é§’č¾¼ē—…é™¢'),
(114934, 93771, 'no_lang_code', 'name', 'Tokyo Metropolitan Komagome Hospital'),
(114935, 93772, 'id', 'name', 'Universitas Teknologi Indonesia'),
(114936, 93773, 'en', 'name', 'Regional Health Administration of Thessaly'),
(114937, 93774, 'no_lang_code', 'name', 'Kantar TNS (France)'),
(114938, 93775, 'en', 'name', 'Motor Neurone Disease Research Australia'),
(114939, 93776, 'en', 'name', 'Oriental Bird Club'),
(114940, 93777, 'fr', 'name', 'Centre de Recherche sur les MƩdiations'),
(114941, 93778, 'en', 'name', 'Slovenian Academy of Sciences and Arts'),
(114942, 93778, 'sl', 'name', 'Slovenska Akademija Znanosti in Umetnosti'),
(114943, 93779, 'en', 'name', 'Center for Excellence in Molecular Plant Sciences'),
(114944, 93779, 'zh', 'name', 'å‘½ē§‘å­¦ē ”ē©¶é™¢åˆ†å­ę¤ē‰©ē§‘å­¦å“č¶Šåˆ›ę–°äø­åæƒ'),
(114945, 93780, 'de', 'name', 'Kommission für Archäologische Landesforschung in Hessen e.V.'),
(114946, 93781, 'no_lang_code', 'name', 'leadXpro'),
(114947, 93782, 'no_lang_code', 'name', 'Mindgardens Neuroscience Network'),
(114948, 93783, 'de', 'name', 'Deutsches Archäologisches Institut, Kommission für Alte Geschichte und Epigraphik'),
(114949, 93783, 'en', 'name', 'German Archaeological Institute, Commission for Ancient History and Epigraphy Munich'),
(114950, 93784, 'es', 'name', 'Centro de Estudios, Medición y Certificación de Calidad'),
(114951, 93785, 'fr', 'name', 'Office FranƧais de la BiodiversitƩ'),
(114952, 93786, 'en', 'name', 'Rajasthan University of Health Sciences'),
(114953, 93786, 'hi', 'name', 'ą¤°ą¤¾ą¤œą¤øą„ā€ą¤„ą¤¾ą¤Ø ą¤øą„ā€ą¤µą¤¾ą¤øą„ā€ą¤„ą„ā€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(114954, 93787, 'en', 'name', 'Teaching University European Academy'),
(114955, 93788, 'no_lang_code', 'name', 'Cirtec Medical (United States)'),
(114956, 93789, 'en', 'name', 'European Institute for Systems Biology and Medicine'),
(114957, 93790, 'en', 'name', 'EU Business School'),
(114958, 93791, 'en', 'name', 'Piedmont Region'),
(114959, 93791, 'it', 'name', 'Regione Piemonte'),
(114960, 93792, 'de', 'name', 'Janggen-Pƶhn-Stiftung'),
(114961, 93793, 'en', 'name', 'Tajikistan–Russian Modern University'),
(114962, 93794, 'en', 'name', 'Divine Word Missionaries'),
(114963, 93794, 'la', 'name', 'Societas Verbi Divini'),
(114964, 93795, 'cy', 'name', 'Ysbyty Athrofaol Cymru'),
(114965, 93795, 'en', 'name', 'University Hospital of Wales'),
(114966, 93796, 'en', 'name', 'National Information Center of Medical Sciences'),
(114967, 93796, 'es', 'name', 'Centro Nacional de Información de Ciencias Médicas'),
(114968, 93797, 'en', 'name', 'Center for Free-Electron Laser Science'),
(114969, 93798, 'af', 'name', 'Suid-Afrikaanse Genetiese Vereeniging'),
(114970, 93798, 'en', 'name', 'South African Genetics Society'),
(114971, 93799, 'no_lang_code', 'name', 'Sugar Research Australia (Australia)'),
(114972, 93800, 'no_lang_code', 'name', 'European Framework Program Consulting (United Kingdom)'),
(114973, 93801, 'no_lang_code', 'name', 'First Light Fusion'),
(114974, 93802, 'de', 'name', 'Neue Materialien Bayreuth GmbH'),
(114975, 93803, 'sv', 'name', 'Stiftelsen fƶr Gamla TjƤnarinnor'),
(114976, 93804, 'pt', 'name', 'Escola Superior Pedagógica do Bengo'),
(114977, 93805, 'en', 'name', 'Precious Cornerstone University'),
(114978, 93806, 'en', 'name', 'European University'),
(114979, 93806, 'ka', 'name', 'įƒ”įƒ•įƒ įƒįƒžįƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(114980, 93807, 'ar', 'name', 'المدرسة Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠŲ© للدار Ų§Ł„ŲØŁŠŲ¶Ų§Ų”'),
(114981, 93807, 'fr', 'name', 'Ecole Centrale Casablanca'),
(114982, 93808, 'en', 'name', 'Department of Chemistry Malaysia'),
(114983, 93808, 'ms', 'name', 'Jabatan Kimia Malaysia'),
(114984, 93809, 'no_lang_code', 'name', 'OpSaniTx (United States)'),
(114985, 93810, 'en', 'name', 'Office of Data Science Strategy'),
(114986, 93811, 'en', 'name', 'MQ: Transforming Mental Health'),
(114987, 93812, 'es', 'name', 'Corporación Universitaria de Ciencias Empresariales, Educación y Salud como proyecto Institucional'),
(114988, 93813, 'no_lang_code', 'name', 'Separations (South Africa)'),
(114989, 93814, 'en', 'name', 'Lake Forest Academy'),
(114990, 93815, 'en', 'name', 'Solihull Hospital'),
(114991, 93816, 'es', 'name', 'Colegio Nacional de Monserrat'),
(114992, 93817, 'no_lang_code', 'name', 'Clear Hat Consulting (United States)'),
(114993, 93818, 'cs', 'name', 'Plzeňský kraj'),
(114994, 93818, 'no_lang_code', 'name', 'Pilsen Region'),
(114995, 93819, 'de', 'name', 'Institut für Qualitätssicherung und Transparenz im Gesundheitswesen'),
(114996, 93819, 'en', 'name', 'Institute for Quality Assurance and Transparency in Healthcare'),
(114997, 93820, 'en', 'name', 'Shenzhen Institutes of Advanced Technology'),
(114998, 93820, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę·±åœ³å…ˆčæ›ęŠ€ęœÆē ”ē©¶é™¢'),
(114999, 93821, 'fr', 'name', 'Laboratoire Public d''Essais et d''Etudes'),
(115000, 93822, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³Ų¹ŁŠŲÆ'),
(115001, 93822, 'en', 'name', 'Al-Saeed University'),
(115002, 93823, 'en', 'name', 'Conservation Biology Institute'),
(115003, 93824, 'en', 'name', 'Hutton Parker Foundation'),
(115004, 93825, 'fr', 'name', 'Institut de recherches sur l''Ć©volution de la nation et de l''Ɖtat'),
(115005, 93826, 'en', 'name', 'Higher School of Privatization and Entrepreneurship'),
(115006, 93827, 'en', 'name', 'Bashkir State University'),
(115007, 93827, 'ru', 'name', 'Š‘Š°ŃˆŠŗŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115008, 93828, 'en', 'name', 'NOAA Office of Sustainable Fisheries'),
(115009, 93829, 'en', 'name', 'James Cook University'),
(115010, 93830, 'de', 'name', 'Wissenschaftspressekonferenz'),
(115011, 93831, 'de', 'name', 'Aachener Centrum für Technologietransfer in der Ophthalmologie'),
(115012, 93832, 'en', 'name', 'Landmark University'),
(115013, 93833, 'en', 'name', 'MRC Institute of Hearing Research'),
(115014, 93834, 'no_lang_code', 'name', 'Scienion (Germany)'),
(115015, 93835, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Ems-Nordsee'),
(115016, 93836, 'en', 'name', 'National Standards Authority of Ireland'),
(115017, 93836, 'ga', 'name', 'ÚdarĆ”s um ChaighdeĆ”in NĆ”isiĆŗnta na hƉireann'),
(115018, 93837, 'de', 'name', 'Japanisch-Deutsches Zentrum Berlin'),
(115019, 93837, 'en', 'name', 'Japanese-German Center Berlin'),
(115020, 93837, 'ja', 'name', 'ćƒ™ćƒ«ćƒŖćƒ³ę—„ē‹¬ć‚»ćƒ³ć‚æćƒ¼'),
(115021, 93838, 'en', 'name', 'Illinois Clean Coal Institute'),
(115022, 93839, 'en', 'name', 'Department of Terrestrial Magnetism'),
(115023, 93840, 'cs', 'name', 'Galerie výtvarnĆ©ho uměnĆ­ v Ostravě'),
(115024, 93840, 'en', 'name', 'Gallery of Fine Arts in Ostrava'),
(115025, 93841, 'en', 'name', 'NASA Research Park'),
(115026, 93842, 'es', 'name', 'Instituto Universitario Internacional de Toluca'),
(115027, 93843, 'en', 'name', 'New York State Department of Health'),
(115028, 93844, 'no_lang_code', 'name', 'Computer Sciences Corporation (United States)'),
(115029, 93845, 'en', 'name', 'Khorugh State University'),
(115030, 93845, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠ³Š¾Ņ³Šø Гавлатии Š„Š¾Ń€ŃƒŅ“ ба номи М. ŠŠ°Š·Š°Ń€ŃˆŠ¾ŠµŠ²'),
(115031, 93846, 'no_lang_code', 'name', 'Hanita Coatings (Israel)'),
(115032, 93847, 'en', 'name', 'International Centre for Mechanical Sciences'),
(115033, 93847, 'it', 'name', 'Centro Internazionale Scienze Meccaniche'),
(115034, 93848, 'az', 'name', 'İzmir İqtisadiyyat Universiteti'),
(115035, 93848, 'en', 'name', 'İzmir University of Economics'),
(115036, 93848, 'tr', 'name', 'İzmir Ekonomi Üniversitesi'),
(115037, 93849, 'en', 'name', 'Coastal and Estuarine Research Federation'),
(115038, 93850, 'en', 'name', 'Avatar Alliance Foundation'),
(115039, 93851, 'de', 'name', 'Fraunhofer-Institut für Werkstoffmechanik'),
(115040, 93851, 'en', 'name', 'Fraunhofer Institute for Mechanics of Materials'),
(115041, 93852, 'en', 'name', 'Technological University Myeik'),
(115042, 93853, 'en', 'name', 'Korea Foundation for Max Planck POSTECH'),
(115043, 93853, 'ko', 'name', 'ė§‰ģŠ¤ ķ”Œėž‘ķ¬ ķ¬ģŠ¤ķ… ķ•œźµ­ ģž¬ė‹Ø'),
(115044, 93854, 'es', 'name', 'Universidad Humanitas'),
(115045, 93855, 'en', 'name', 'Alberta Prion Research Institute'),
(115046, 93856, 'en', 'name', 'Arnold Ventures'),
(115047, 93857, 'es', 'name', 'Universidad de Turismo y Ciencias Administrativas'),
(115048, 93858, 'de', 'name', 'Dienstleistungszentrum LƤndlicher Raum Mosel'),
(115049, 93859, 'fr', 'name', 'Caisse nationale de l''assurance vieillesse'),
(115050, 93860, 'pt', 'name', 'Instituto Superior de Tecnologias AvanƧadas'),
(115051, 93861, 'en', 'name', 'RIKEN Center for Brain Science'),
(115052, 93861, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗē†åŒ–å­¦ē ”ē©¶ę‰€č„³ē„žēµŒē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(115053, 93862, 'id', 'name', 'Universitas Timbul Nusantara'),
(115054, 93863, 'en', 'name', 'Boscombe Community Hospital'),
(115055, 93864, 'en', 'name', 'State of Maryland'),
(115056, 93865, 'en', 'name', 'Southwest China Institute of Electronic Technology'),
(115057, 93865, 'zh', 'name', 'č„æå—ē”µå­ęŠ€ęœÆē ”ē©¶ę‰€'),
(115058, 93866, 'es', 'name', 'Instituto de Innovación Agropecuaria de PanamÔ'),
(115059, 93867, 'en', 'name', 'Tropical Resources Institute'),
(115060, 93868, 'en', 'name', 'Fran RamovÅ” Institute of the Slovenian Language'),
(115061, 93868, 'sl', 'name', 'InŔtitut za slovenski jezik Frana RamovŔa'),
(115062, 93869, 'en', 'name', 'Art Institute of Fort Lauderdale'),
(115063, 93870, 'id', 'name', 'Universitas Budi Luhur'),
(115064, 93871, 'en', 'name', 'TD Bank Group'),
(115065, 93871, 'fr', 'name', 'Groupe Banque TD'),
(115066, 93872, 'en', 'name', 'Wuhan Municipal Health Commission'),
(115067, 93872, 'zh', 'name', 'ę­¦ę±‰åø‚å«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(115068, 93873, 'es', 'name', 'Universidad Católica Nuestra Señora de la Asunción'),
(115069, 93874, 'en', 'name', 'Jefferson Scholars Foundation'),
(115070, 93875, 'ja', 'name', 'ę—„ęœ¬é›»ę°—'),
(115071, 93875, 'no_lang_code', 'name', 'NEC (Japan)'),
(115072, 93876, 'es', 'name', 'Universidad Latinoamericana de Comercio Exterior'),
(115073, 93877, 'en', 'name', 'Technological University, Taunggyi'),
(115074, 93878, 'no_lang_code', 'name', 'Kvaerner (Finland)'),
(115075, 93879, 'no_lang_code', 'name', 'Sinton Instruments'),
(115076, 93880, 'no_lang_code', 'name', 'Curium (United Kingdom)'),
(115077, 93881, 'en', 'name', 'Tasmanian Government'),
(115078, 93882, 'en', 'name', 'Naval Medical Research Institute'),
(115079, 93883, 'de', 'name', 'UniversitƤtsspital Basel'),
(115080, 93883, 'en', 'name', 'University Hospital of Basel'),
(115081, 93883, 'fr', 'name', 'HÓpital universitaire de Bâle'),
(115082, 93884, 'en', 'name', 'Department of Jobs and Small Business'),
(115083, 93885, 'en', 'name', 'Science Media Center Taiwan'),
(115084, 93885, 'zh', 'name', 'å°ē£ē§‘ęŠ€åŖ’é«”äø­åæƒ'),
(115085, 93886, 'en', 'name', 'School for Compassionate Action'),
(115086, 93887, 'en', 'name', 'Bu-Ali Sina University'),
(115087, 93887, 'fa', 'name', 'دانؓگاه ŲØŁˆŲ¹Ł„ŪŒ Ų³ŪŒŁ†Ų§'),
(115088, 93888, 'en', 'name', 'Institute of Normal Physiology named after P.K. Anokhin'),
(115089, 93888, 'ru', 'name', 'ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½Š¾Ń€Š¼Š°Š»ŃŒŠ½Š¾Š¹ физиологии имени П. К. Анохина'),
(115090, 93889, 'en', 'name', 'Calvary Mater Newcastle Hospital'),
(115091, 93890, 'en', 'name', 'Grampians Health'),
(115092, 93891, 'en', 'name', 'Providence Hospital'),
(115093, 93892, 'ro', 'name', 'Institutul National de Cercetari Economice "Costin C. Kiritescu"'),
(115094, 93893, 'en', 'name', 'NOAA National Weather Service Central Region'),
(115095, 93894, 'en', 'name', 'Black Country Partnership NHS Foundation Trust'),
(115096, 93895, 'de', 'name', 'Virchow Klinikum'),
(115097, 93896, 'en', 'name', 'Mississippi Institutions of Higher Learning'),
(115098, 93897, 'en', 'name', 'LabourƩ College'),
(115099, 93898, 'en', 'name', 'Justice for Magdalenes Research'),
(115100, 93899, 'ca', 'name', 'AgĆØncia Estatal de Meteorologia'),
(115101, 93899, 'en', 'name', 'State Meteorological Agency'),
(115102, 93899, 'es', 'name', 'Agencia Estatal de Meteorología, Instituto Central Meteorológico'),
(115103, 93899, 'eu', 'name', 'Meteorologiako Estatu Agentzia'),
(115104, 93900, 'no_lang_code', 'name', 'Astellas Pharma (Netherlands)'),
(115105, 93901, 'en', 'name', 'Dr. NTR University of Health Sciences'),
(115106, 93901, 'hi', 'name', 'ą¤ą¤Øą¤Ÿą„€ą¤†ą¤° ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(115107, 93901, 'ne', 'name', 'NTR ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(115108, 93901, 'te', 'name', 'ą°Žą°Øą±.టి.ą°†ą°°ą±. ą°†ą°°ą±‹ą°—ą±ą°Æą°¶ą°¾ą°øą±ą°¤ą±ą°° ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(115109, 93902, 'en', 'name', 'Graduate Women in Science'),
(115110, 93903, 'en', 'name', 'Rocky Mountain Elk Foundation'),
(115111, 93904, 'en', 'name', 'WSB Merito University in Poznan'),
(115112, 93904, 'pl', 'name', 'Uniwersytet WSB Merito Poznań'),
(115113, 93905, 'en', 'name', 'National Office of Philosophy and Social Sciences'),
(115114, 93905, 'zh', 'name', 'å…Øå›½å“²å­¦ē¤¾ä¼šē§‘å­¦å·„ä½œåŠžå…¬å®¤'),
(115115, 93906, 'en', 'name', 'Dutch Language Institute'),
(115116, 93906, 'nl', 'name', 'Instituut voor de Nederlandse Taal'),
(115117, 93907, 'en', 'name', 'Kansas Wheat Commission'),
(115118, 93908, 'es', 'name', 'Universidad Autonoma de Chinandega'),
(115119, 93909, 'en', 'name', 'United Nations Department of Peacekeeping Operations'),
(115120, 93910, 'cs', 'name', 'Unipetrol výzkumně vzdělĆ”vacĆ­ centrum'),
(115121, 93910, 'en', 'name', 'Unipetrol Centre of Research and Education'),
(115122, 93910, 'no_lang_code', 'name', 'ORLEN UniCRE'),
(115123, 93911, 'it', 'name', 'Instituto Nazionale Tumori Regina Elena'),
(115124, 93912, 'bn', 'name', 'মুগদা মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(115125, 93912, 'en', 'name', 'Mugda Medical College'),
(115126, 93913, 'no_lang_code', 'name', 'Altakitin (Portugal)'),
(115127, 93914, 'en', 'name', 'Best Buddies International'),
(115128, 93915, 'de', 'name', 'Bundesamt für Landwirtschaft'),
(115129, 93915, 'en', 'name', 'Federal Office for Agriculture'),
(115130, 93916, 'en', 'name', 'State Key Laboratory of Hydrology Water Resources and Hydraulic Engineering'),
(115131, 93916, 'zh', 'name', 'ę°“ę–‡ę°“čµ„ęŗäøŽę°“åˆ©å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(115132, 93917, 'en', 'name', 'Royal Osteoporosis Society'),
(115133, 93918, 'en', 'name', 'Grantham Foundation'),
(115134, 93919, 'en', 'name', 'International University & Polytechnic of Benin'),
(115135, 93920, 'fr', 'name', 'Saint-Gobain Recherche Paris'),
(115136, 93921, 'en', 'name', 'Department of Mines, Industry Regulation and Safety'),
(115137, 93922, 'de', 'name', 'Hochschule für Musik und Theater Felix Mendelssohn Bartholdy Leipzig'),
(115138, 93922, 'en', 'name', 'University of Music and Theatre Leipzig'),
(115139, 93923, 'en', 'name', 'Banner Children''s at Desert'),
(115140, 93924, 'no_lang_code', 'name', 'Amec Foster Wheeler (United Kingdom)'),
(115141, 93925, 'en', 'name', 'Canadian Journal of Administrative Sciences'),
(115142, 93925, 'fr', 'name', 'Revue Canadienne des Sciences de l''Administration'),
(115143, 93926, 'en', 'name', 'Netherlands Research School for Literary Studies'),
(115144, 93927, 'en', 'name', 'St Vincent Hospital'),
(115145, 93928, 'en', 'name', 'Alzahra Medical and Education Center'),
(115146, 93929, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁŠŲ§Ł†'),
(115147, 93929, 'en', 'name', 'Bayan University'),
(115148, 93930, 'en', 'name', 'Thoracic Society of Australia and New Zealand'),
(115149, 93931, 'en', 'name', 'Showa University'),
(115150, 93931, 'ja', 'name', 'ę˜­å’Œå¤§å­¦'),
(115151, 93932, 'en', 'name', 'University of Benin'),
(115152, 93932, 'yo', 'name', 'YunifÔsítì ìlú Benin'),
(115153, 93933, 'es', 'name', 'Unidad Ejecutora Lillo'),
(115154, 93934, 'no_lang_code', 'name', 'QB3'),
(115155, 93935, 'it', 'name', 'Istituto Marangoni London'),
(115156, 93936, 'no_lang_code', 'name', 'Process NMR Associates'),
(115157, 93937, 'fr', 'name', 'Ɖcole nationale supĆ©rieure de la photographie'),
(115158, 93938, 'en', 'name', 'Virginia Department of Transportation'),
(115159, 93939, 'en', 'name', 'Science History Institute'),
(115160, 93940, 'en', 'name', 'JCT College Of Engineering And Technology'),
(115161, 93940, 'ta', 'name', 'ą®œąÆ‡. சி. டி. ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(115162, 93941, 'es', 'name', 'Instituto de Investigación Médica Mercedes y Martín Ferreyra'),
(115163, 93942, 'en', 'name', 'Lindenwood University – Belleville'),
(115164, 93943, 'en', 'name', 'University of Hull'),
(115165, 93944, 'en', 'name', 'Sigma Xi'),
(115166, 93945, 'en', 'name', 'University of California Natural Reserve System'),
(115167, 93946, 'en', 'name', 'Skills'),
(115168, 93947, 'en', 'name', 'Booz Allen Foundation'),
(115169, 93948, 'en', 'name', 'Institute of Earth Environment'),
(115170, 93948, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åœ°ēƒēŽÆå¢ƒē ”ē©¶ę‰€'),
(115171, 93949, 'de', 'name', 'Linden-Museum Stuttgart'),
(115172, 93950, 'no_lang_code', 'name', 'GEO Group (Czechia)'),
(115173, 93951, 'cs', 'name', 'Akademie výtvarných uměnĆ­ v Praze'),
(115174, 93951, 'en', 'name', 'Academy of Fine Arts Prague'),
(115175, 93952, 'id', 'name', 'Sekolah Tinggi Pastoral Don Bosco Tomohon'),
(115176, 93953, 'es', 'name', 'Instituto Dermatológico y Cirugía de Piel "Dr. Huberto Bogaert Díaz"'),
(115177, 93954, 'en', 'name', 'Adventist La Grange Memorial Hospital'),
(115178, 93955, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Ɖlectronique de l''Ouest'),
(115179, 93956, 'no_lang_code', 'name', 'Shepherd Chemicals (United States)'),
(115180, 93957, 'en', 'name', 'Ascension Via Christi'),
(115181, 93958, 'en', 'name', 'Adithya Institute of Technology'),
(115182, 93959, 'no_lang_code', 'name', 'Prototype Productions (United States)'),
(115183, 93960, 'en', 'name', 'Malopolska Association For Agricultural Extension At The Agricultural University of Cracow'),
(115184, 93961, 'fr', 'name', 'Laboratoire Ethologie Cognition DƩveloppement'),
(115185, 93962, 'pl', 'name', 'WSHIU Akademia Nauk Stosowanych'),
(115186, 93963, 'en', 'name', 'Scottish Storytelling Centre'),
(115187, 93964, 'en', 'name', 'Credible Arts Therapies'),
(115188, 93965, 'en', 'name', 'Bear Fight Institute'),
(115189, 93966, 'no_lang_code', 'name', 'Biogen (Belgium)'),
(115190, 93967, 'no_lang_code', 'name', 'BuroHappold (United Kingdom)'),
(115191, 93968, 'fr', 'name', 'Imagerie par RƩsonance MagnƩtique MƩdicale et Multi-ModalitƩs'),
(115192, 93969, 'en', 'name', 'Einstein Forum'),
(115193, 93970, 'en', 'name', 'Kenya Library and Information Services Consortium'),
(115194, 93971, 'de', 'name', 'Verband der UniversitƤtsklinika Deutschlands'),
(115195, 93972, 'fr', 'name', 'ƉlectricitĆ© de France'),
(115196, 93972, 'no_lang_code', 'name', 'EDF Energy North America'),
(115197, 93973, 'en', 'name', 'Institute of the Pacific United, International Pacific College'),
(115198, 93974, 'no_lang_code', 'name', 'Bio-protocol (United States)'),
(115199, 93975, 'en', 'name', 'Brand University of Applied Science Hamburg'),
(115200, 93976, 'en', 'name', 'Infocomm Development Authority of Singapore'),
(115201, 93977, 'en', 'name', 'Marshall Aid Commemoration Commission'),
(115202, 93978, 'en', 'name', 'Cork University Hospital'),
(115203, 93978, 'ga', 'name', 'OspidƩal Ollscoil Chorcaƭ'),
(115204, 93979, 'en', 'name', 'Institute of Cognitive Neuroscience and Psychology'),
(115205, 93979, 'hu', 'name', 'MTA TermészettudomÔnyi Kutatóközpont Kognitív IdegtudomÔnyi és Pszichológiai Intézet'),
(115206, 93980, 'en', 'name', 'Brain Research UK'),
(115207, 93981, 'en', 'name', 'Institute of Health Surveillance'),
(115208, 93981, 'fr', 'name', 'Institut de Veille Sanitaire'),
(115209, 93982, 'en', 'name', 'China University of Geosciences (Beijing)'),
(115210, 93982, 'zh', 'name', 'äø­å›½åœ°č“Øå¤§å­¦ (åŒ—äŗ¬)'),
(115211, 93983, 'en', 'name', 'International Society of Bipolar Disorders'),
(115212, 93984, 'en', 'name', 'Kutaisi University'),
(115213, 93984, 'ka', 'name', 'įƒ„įƒ£įƒ—įƒįƒ˜įƒ”įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(115214, 93985, 'no_lang_code', 'name', 'C12 Quantum Electronics (France)'),
(115215, 93986, 'en', 'name', 'Ministry of the Environment of the Slovak Republic'),
(115216, 93986, 'sk', 'name', 'Ministerstvo životného prostredia SR'),
(115217, 93987, 'en', 'name', 'NOAA International & Interagency Affairs Division'),
(115218, 93988, 'en', 'name', 'Ontario Turtle Conservation Centre'),
(115219, 93989, 'en', 'name', 'Mid-Atlantic Association of Museums'),
(115220, 93990, 'en', 'name', 'International Research and Training Center'),
(115221, 93990, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ науково Š½Š°Š²Ń‡Š°Š»ŃŒŠ½ŠøŠ¹ центр інформаційних технологій і систем ŠŠŠ України та ŠœŠžŠ України'),
(115222, 93991, 'en', 'name', 'The Maria Sklodowska-Curie National Research Institute of Oncology'),
(115223, 93991, 'pl', 'name', 'Narodowy Instytut Onkologii im. Marii Skłodowskiej-Curie Państwowy Instytut Badawczy'),
(115224, 93992, 'en', 'name', 'Excelsia College, Wesley Institute'),
(115225, 93993, 'en', 'name', 'Sri Shankara Cancer Hospital and Research Center'),
(115226, 93993, 'kn', 'name', 'ą²¶ą³ą²°ą³€ ಶಂಕರ ą²•ą³ą²Æą²¾ą²Øą³ą²øą²°ą³ ą²†ą²øą³ą²Ŗą²¤ą³ą²°ą³† ą²®ą²¤ą³ą²¤ą³ ಸಂಶೋಧನಾ ą²•ą³‡ą²‚ą²¦ą³ą²°'),
(115227, 93994, 'en', 'name', 'Kyushu University Beppu Hospital'),
(115228, 93994, 'ja', 'name', 'ä¹å·žå¤§å­¦ē—…é™¢åˆ„åŗœē—…é™¢'),
(115229, 93995, 'en', 'name', 'University Press of Mississippi'),
(115230, 93996, 'en', 'name', 'Hunan Provincial Science and Technology Department'),
(115231, 93997, 'de', 'name', 'Schweizerische Stiftung für die Erforschung der Muskelkrankheiten'),
(115232, 93998, 'pt', 'name', 'Escola Superior de CiĆŖncias da SaĆŗde'),
(115233, 93999, 'no_lang_code', 'name', 'Universitet Kajnar'),
(115234, 94000, 'en', 'name', 'Manipal-Tata Medical College, Jamshedpur'),
(115235, 94001, 'no_lang_code', 'name', 'Polypico'),
(115236, 94002, 'en', 'name', 'Republican Clinical Oncology Center'),
(115237, 94002, 'ru', 'name', 'Республиканский клинический онкологический Гиспансер'),
(115238, 94003, 'es', 'name', 'Hospital Privado'),
(115239, 94004, 'en', 'name', 'Ho Chi Minh City University of Technology'),
(115240, 94004, 'fr', 'name', 'UniversitƩ polytechnique d''hƓ-chi-minh-ville'),
(115241, 94004, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c BĆ”ch khoa, ĐẔi hį»c Quốc gia ThĆ nh phố Hồ ChĆ­ Minh'),
(115242, 94005, 'no_lang_code', 'name', 'Kemira (Finland)'),
(115243, 94006, 'en', 'name', 'Advanced Photon Source'),
(115244, 94007, 'en', 'name', 'Heritage Baptist College and Heritage Theological Seminary, Heritage College and Seminary'),
(115245, 94008, 'en', 'name', 'Quahog Bay Conservancy'),
(115246, 94009, 'es', 'name', 'Instituto Tecnológico de Chascomús'),
(115247, 94010, 'id', 'name', 'Universitas Purwakarta'),
(115248, 94011, 'no_lang_code', 'name', 'Knowledge Networking Solutions (Greece)'),
(115249, 94012, 'en', 'name', 'Gottsegen National Cardiovascular Center'),
(115250, 94012, 'hu', 'name', 'Gottsegen Gyƶrgy OrszƔgos KardiovaszkulƔris IntƩzet'),
(115251, 94013, 'fr', 'name', 'Ɖcole supĆ©rieure d''art et design Le Havre-Rouen'),
(115252, 94014, 'en', 'name', 'Central Radio Management Service'),
(115253, 94015, 'en', 'name', 'Khmelnytskyi National University'),
(115254, 94015, 'pl', 'name', 'Chmielnicki Uniwersytet Narodowy'),
(115255, 94015, 'ru', 'name', 'Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115256, 94015, 'uk', 'name', 'Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115257, 94016, 'en', 'name', 'Thousand Islands National Park'),
(115258, 94016, 'fr', 'name', 'Parc national des Mille-Ǝles'),
(115259, 94017, 'en', 'name', 'Black Dog Institute'),
(115260, 94018, 'en', 'name', 'Mulago School of Nursing and Midwifery'),
(115261, 94019, 'en', 'name', 'Palo Alto Medical Foundation'),
(115262, 94020, 'en', 'name', 'Academic Data Science Alliance'),
(115263, 94021, 'de', 'name', 'Max-Planck-Forschungsstelle für die Wissenschaft der Pathogene'),
(115264, 94021, 'en', 'name', 'Max Planck Unit for the Science of Pathogens'),
(115265, 94022, 'no_lang_code', 'name', 'Oldham (France)'),
(115266, 94023, 'en', 'name', 'Global Water Futures'),
(115267, 94024, 'pt', 'name', 'Escola Superior de Tecnologias e Artes de Lisboa'),
(115268, 94025, 'de', 'name', 'Carl Ritter von Ghega Institut für integrierte Mobilitätsforschung'),
(115269, 94025, 'en', 'name', 'Carl Ritter von Ghega Institute for Integrated Mobility Research'),
(115270, 94026, 'en', 'name', 'Can Tho University of Medicine and Pharmacy'),
(115271, 94026, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y dược Cįŗ§n ThĘ”'),
(115272, 94027, 'en', 'name', 'International Society of Hematology'),
(115273, 94027, 'fr', 'name', 'SociƩtƩ Internationale d''HƩmatologie'),
(115274, 94028, 'en', 'name', 'Madan Bhandari Academy of Health Sciences'),
(115275, 94029, 'en', 'name', 'James Graham Brown Foundation'),
(115276, 94030, 'fr', 'name', 'Metaleurop'),
(115277, 94031, 'en', 'name', 'Wellcome EPSRC Centre for Medical Engineering'),
(115278, 94032, 'en', 'name', 'Reliant Medical Group'),
(115279, 94033, 'en', 'name', 'St. John Hospital & Medical Center'),
(115280, 94034, 'de', 'name', 'E+E Elektronik'),
(115281, 94035, 'en', 'name', 'Neuroelectronics Research Flanders'),
(115282, 94036, 'en', 'name', 'FIT to be a MOM'),
(115283, 94037, 'es', 'name', 'Hospital El Cruce'),
(115284, 94038, 'en', 'name', 'Mashhad University of Medical Sciences'),
(115285, 94038, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی مؓهد'),
(115286, 94039, 'no_lang_code', 'name', 'Novo Holdings (Denmark)'),
(115287, 94040, 'no_lang_code', 'name', 'Immersion (France)'),
(115288, 94041, 'id', 'name', 'Universitas Satria Makassar'),
(115289, 94042, 'no_lang_code', 'name', 'Total (France)'),
(115290, 94043, 'en', 'name', 'Drug Development and Discovery'),
(115291, 94044, 'ms', 'name', 'Majlis Amanah Rakyat'),
(115292, 94045, 'en', 'name', 'University of Georgia Research Foundation'),
(115293, 94046, 'ar', 'name', 'وزارة التجارة و الصناعة وترويج الاستثما'),
(115294, 94046, 'en', 'name', 'Ministry of Commerce, Industry and Investment Promotion'),
(115295, 94047, 'es', 'name', 'Instituto de Investigación y Desarrollo en Bioingeniería y BioinformÔtica'),
(115296, 94048, 'en', 'name', 'TCS Education System'),
(115297, 94049, 'en', 'name', 'Canadian Federation of University Women'),
(115298, 94049, 'fr', 'name', 'FƩdƩration canadienne des femmes diplƓmƩes des universitƩs'),
(115299, 94050, 'en', 'name', 'Torcuato Di Tella University'),
(115300, 94050, 'es', 'name', 'Universidad Torcuato Di Tella'),
(115301, 94051, 'en', 'name', 'Allen Institute for Neural Dynamics'),
(115302, 94052, 'es', 'name', 'Centro de Investigación Educativa'),
(115303, 94053, 'pt', 'name', 'Universidade Internacional do Cuanza'),
(115304, 94054, 'de', 'name', 'Institut für Steinkonservierung e.V.'),
(115305, 94054, 'en', 'name', 'Institute for Stone Conservation'),
(115306, 94055, 'tr', 'name', 'Nişantaşı Üniversitesi, İstanbul Nişantaşı Üniversitesi'),
(115307, 94056, 'en', 'name', 'Chamberlain University'),
(115308, 94057, 'en', 'name', 'Independent University Banja Luka'),
(115309, 94057, 'sr', 'name', 'Nezavisni univerzitet Banja Luka'),
(115310, 94058, 'en', 'name', 'National and University Library of Slovenia'),
(115311, 94058, 'sl', 'name', 'Narodna in univerzitetna knjižnica'),
(115312, 94059, 'de', 'name', 'DEval – Deutsches Evaluierungsinstitut der Entwicklungszusammenarbeit'),
(115313, 94059, 'en', 'name', 'DEval – German Institute for Development Evaluation'),
(115314, 94060, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Weser-Jade-Nordsee'),
(115315, 94061, 'no_lang_code', 'name', 'Tohwa University'),
(115316, 94062, 'en', 'name', 'Myelopathy.org'),
(115317, 94063, 'es', 'name', 'Centro Científico Tecnológico Salta - Jujuy'),
(115318, 94064, 'en', 'name', 'Colorado Scientific Society'),
(115319, 94065, 'en', 'name', 'Technological University Meiktila'),
(115320, 94066, 'es', 'name', 'Universidad Tecnológica de Sinaloa'),
(115321, 94067, 'en', 'name', 'National Kaohsiung Normal University'),
(115322, 94067, 'zh', 'name', 'åœ‹ē«‹é«˜é›„åø«ēÆ„å¤§å­ø'),
(115323, 94068, 'en', 'name', 'A-T Society'),
(115324, 94069, 'en', 'name', 'James B. Pendleton Charitable Trust'),
(115325, 94070, 'fr', 'name', 'Builders Ɖcole d''ingĆ©nieurs'),
(115326, 94071, 'en', 'name', 'ITMO University'),
(115327, 94071, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ информационных технологий, механики Šø оптики'),
(115328, 94072, 'es', 'name', 'Centro Universitario de Dirección Empresarial y de Negocios'),
(115329, 94073, 'en', 'name', 'National Library of France'),
(115330, 94073, 'eu', 'name', 'Frantziako Liburutegi Nazionala'),
(115331, 94073, 'fr', 'name', 'BibliothĆØque Nationale de France'),
(115332, 94074, 'en', 'name', 'American Association for Anatomy'),
(115333, 94075, 'es', 'name', 'Universidad Quetzalcóatl'),
(115334, 94076, 'en', 'name', 'Direct Health Media'),
(115335, 94077, 'es', 'name', 'Centro de Investigación y Desarrollo en Criotecnología de Alimentos'),
(115336, 94078, 'en', 'name', 'Government of New Zealand'),
(115337, 94078, 'mi', 'name', 'Te Kāwanatanga o Aotearoa'),
(115338, 94079, 'ms', 'name', 'Zoo Negara'),
(115339, 94080, 'no_lang_code', 'name', 'WorldFish'),
(115340, 94081, 'en', 'name', 'National Institute of Science Communication and Information Resources'),
(115341, 94081, 'hi', 'name', 'ą¤Øą¤æą¤øą„ą¤•ą„‡ą¤Æą¤°'),
(115342, 94082, 'no_lang_code', 'name', 'Jeans for Genes (United Kingdom)'),
(115343, 94083, 'es', 'name', 'Universidad PsicologĆ­a Industrial Dominicana'),
(115344, 94084, 'de', 'name', 'Christian-Albrechts-UniversitƤt zu Kiel'),
(115345, 94084, 'en', 'name', 'Kiel University'),
(115346, 94085, 'en', 'name', 'AO Foundation'),
(115347, 94086, 'fr', 'name', 'Centre Nantais de Sociologie'),
(115348, 94087, 'fr', 'name', 'INSA Euro-MƩditerranƩe'),
(115349, 94088, 'en', 'name', 'Atrium Health Wake Forest Baptist'),
(115350, 94089, 'en', 'name', 'Office of the Royal Society'),
(115351, 94089, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø‡ąø²ąø™ąø£ąø²ąøŠąøšąø±ąø“ąø‘ąø“ąø•ąø¢ąøŖąø ąø²'),
(115352, 94090, 'sv', 'name', 'Finska LƤkaresƤllskapet'),
(115353, 94091, 'no_lang_code', 'name', 'IVC Evidensia France'),
(115354, 94092, 'no_lang_code', 'name', 'Erasca (United States)'),
(115355, 94093, 'fr', 'name', 'Institut de Linguistique FranƧaise'),
(115356, 94094, 'en', 'name', 'Innovation and Technology Commission'),
(115357, 94094, 'zh', 'name', 'å‰µę–°ē§‘ęŠ€ē½²'),
(115358, 94095, 'en', 'name', 'Virgen del RocĆ­o University Hospital'),
(115359, 94095, 'es', 'name', 'Hospital Universitario Virgen del RocĆ­o'),
(115360, 94096, 'no_lang_code', 'name', 'Semantico (United Kingdom)'),
(115361, 94097, 'no_lang_code', 'name', 'Pinney Associates (United States)'),
(115362, 94098, 'en', 'name', 'UniCancer Group'),
(115363, 94099, 'en', 'name', 'Armagh Observatory & Planetarium'),
(115364, 94100, 'en', 'name', 'Multidisciplinary Institute of Plant Biology'),
(115365, 94100, 'es', 'name', 'Instituto Multidisciplinario de BiologĆ­a Vegetal'),
(115366, 94101, 'de', 'name', 'Moses Mendelssohn Zentrum für Europäisch-Jüdische Studien'),
(115367, 94101, 'en', 'name', 'Moses Mendelssohn Center for European Jewish Studies'),
(115368, 94102, 'en', 'name', 'Houghton University'),
(115369, 94103, 'en', 'name', 'Swedish Association of Graduate Engineers'),
(115370, 94104, 'it', 'name', 'Centro Universale del Bel Canto'),
(115371, 94105, 'de', 'name', 'Lutherische Theologische Hochschule Oberursel'),
(115372, 94105, 'en', 'name', 'Lutheran Academy of Theology Oberursel'),
(115373, 94106, 'de', 'name', 'Ɩsterreichische Ordensprovinz des Hospitalordens des heiligen Johannes von Gott "Barmherzige Brüder"'),
(115374, 94106, 'en', 'name', 'Hospitaller Order of St. John of God, Austrian Province'),
(115375, 94107, 'de', 'name', 'UniversitƤt Stuttgart'),
(115376, 94107, 'en', 'name', 'University of Stuttgart'),
(115377, 94108, 'en', 'name', 'Texas Board of Professional Engineers and Land Surveyors'),
(115378, 94109, 'fr', 'name', 'Centre de droit pƩnal et de criminologie'),
(115379, 94110, 'ar', 'name', 'Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„ŁŠŁ…Ł†ŁŠŲ© للدراسات Ų§Ł„Ų¹Ł„ŁŠŲ§'),
(115380, 94110, 'en', 'name', 'Yemen Academy for Graduate Studies'),
(115381, 94111, 'id', 'name', 'Sekolah Tinggi Agama Islam Negeri Teungku Dirundeng Meulaboh'),
(115382, 94112, 'no_lang_code', 'name', 'Sumitomo Dainippon Pharma (United States)'),
(115383, 94113, 'en', 'name', 'Admiral Nevelskoy Maritime State University'),
(115384, 94113, 'ru', 'name', 'ŠœŠ¾Ń€ŃŠŗŠ¾Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115385, 94114, 'en', 'name', 'National Science and Technology Development Agency'),
(115386, 94115, 'no_lang_code', 'name', 'Capsida Biotherapeutics (United States)'),
(115387, 94116, 'en', 'name', 'Archaeology Data Service'),
(115388, 94117, 'en', 'name', 'Textbook and Academic Authors Association'),
(115389, 94118, 'en', 'name', 'Korea Spatial Information Society'),
(115390, 94118, 'ko', 'name', 'ėŒ€ķ•œź³µź°„ģ •ė³“ķ•™ķšŒ'),
(115391, 94119, 'de', 'name', 'Institut für Bildungsmonitoring und Qualitätsentwicklung'),
(115392, 94119, 'en', 'name', 'Institute for Educational Monitoring and Quality Development'),
(115393, 94120, 'he', 'name', 'קופת חולים ושירותי בריאות'),
(115394, 94120, 'no_lang_code', 'name', 'Kupat Holim Meuchedet'),
(115395, 94121, 'en', 'name', 'Korea Animal Medical Center'),
(115396, 94121, 'ko', 'name', 'ź³ ė ¤ė™ė¬¼ė©”ė””ģ»¬ģ„¼ķ„°'),
(115397, 94122, 'en', 'name', 'Isfahan University of Medical Sciences'),
(115398, 94122, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی اصفهان'),
(115399, 94123, 'nl', 'name', 'Agentschap voor Natuur en Bos'),
(115400, 94124, 'no_lang_code', 'name', 'VistaMotif (United States)'),
(115401, 94125, 'en', 'name', 'Institute of Slovenian Literature and Literary Studies'),
(115402, 94125, 'sl', 'name', 'InŔtitut za slovensko literaturo in literarne vede'),
(115403, 94126, 'en', 'name', 'First Hospital of China Medical University'),
(115404, 94126, 'zh', 'name', 'äø­å›½åŒ»ē§‘å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(115405, 94127, 'en', 'name', 'Complex Engineering System Institute'),
(115406, 94127, 'es', 'name', 'Instituto Sistemas Complejos de IngenierĆ­a'),
(115407, 94128, 'en', 'name', 'A.N. Bukeikhan Kazakh Research Institute of Forestry and Agroforestry'),
(115408, 94128, 'kk', 'name', 'Ә.Š. Бөкейхан атынГағы ŅšŠ°Š·Š°Ņ› орман ŃˆŠ°Ń€ŃƒŠ°ŃˆŃ‹Š»Ń‹Ņ“Ń‹ және Š°Š³Ń€Š¾Š¾Ń€Š¼Š°Š½Š¼ŠµŠ»ŠøŠ¾Ń€Š°Ń†ŠøŃ ғылыми-Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(115409, 94129, 'en', 'name', 'Mrs. Berta Kamprad''s Cancer Foundation'),
(115410, 94129, 'sv', 'name', 'Fru Berta Kamprads stiftelse'),
(115411, 94130, 'en', 'name', 'Southern California Academy of Sciences'),
(115412, 94131, 'en', 'name', 'National Kaohsiung University of Applied Sciences'),
(115413, 94132, 'en', 'name', 'Global Young Academy'),
(115414, 94133, 'es', 'name', 'Universidad Dominicana Organización & Métodos'),
(115415, 94134, 'es', 'name', 'Consorcio MadroƱo'),
(115416, 94135, 'fr', 'name', 'Franche-ComtƩ Regional Council'),
(115417, 94136, 'fr', 'name', 'Laboratoire de Conception, Optimisation et Modélisation des Systèmes'),
(115418, 94137, 'en', 'name', 'International Platform of Registered Systematic Review and Meta-analysis Protocols'),
(115419, 94138, 'en', 'name', 'Stoas University of Applied Sciences'),
(115420, 94138, 'nl', 'name', 'Stoas Hogeschool'),
(115421, 94139, 'en', 'name', 'Ministry of Agriculture and Forestry'),
(115422, 94139, 'fi', 'name', 'Maa- ja metsƤtalousministeriƶ'),
(115423, 94140, 'en', 'name', 'Australian Food Allergy Foundation'),
(115424, 94141, 'en', 'name', 'Thornbury Hospital'),
(115425, 94142, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚Ų§Ų¶ŁŠ عياض'),
(115426, 94142, 'en', 'name', 'Cadi Ayyad University'),
(115427, 94142, 'fr', 'name', 'UniversitƩ Cadi Ayyad'),
(115428, 94143, 'en', 'name', 'Sorenson Legacy Foundation'),
(115429, 94144, 'en', 'name', 'Belize Bureau of Standards'),
(115430, 94145, 'no_lang_code', 'name', 'Vattenfall (Denmark)'),
(115431, 94146, 'en', 'name', 'Guangdong Food and Drug Vocational College'),
(115432, 94146, 'zh', 'name', 'å¹æäøœé£Ÿå“čÆå“čŒäøšå­¦é™¢'),
(115433, 94147, 'en', 'name', 'Institute of Molecular and Cell Biology'),
(115434, 94147, 'zh', 'name', 'åˆ†å­å’Œē”Ÿē‰©ē“°čƒžå­¦ē ”ē©¶é™¢'),
(115435, 94148, 'en', 'name', 'Katherine Johnson Independent Verification and Validation Facility'),
(115436, 94149, 'en', 'name', 'Swiss Light Source'),
(115437, 94150, 'de', 'name', 'Quadriga Hochschule Berlin'),
(115438, 94151, 'en', 'name', 'NHTI - Concord''s Community College, New Hampshire Technical Institute'),
(115439, 94152, 'sv', 'name', 'Stiftelsen Anna och Gunnar Vidfelts Fond fƶr Biologisk Forskning'),
(115440, 94153, 'en', 'name', 'Lord Buddha Education Foundation'),
(115441, 94154, 'en', 'name', 'Johnson Space Center'),
(115442, 94154, 'es', 'name', 'Centro Espacial Lyndon B. Johnson'),
(115443, 94155, 'de', 'name', 'Museum Wiesbaden'),
(115444, 94156, 'fr', 'name', 'Laboratoire de GƩnie Informatique, de Production et de Maintenance'),
(115445, 94157, 'en', 'name', 'Rembrandt Institute of Cardiovascular Science'),
(115446, 94158, 'en', 'name', 'Wood Buffalo National Park'),
(115447, 94158, 'fr', 'name', 'Parc national Wood Buffalo'),
(115448, 94159, 'en', 'name', 'Educational University Interpharma Plus'),
(115449, 94160, 'es', 'name', 'Instituto de Investigaciones y Control del EjƩrcito de Chile'),
(115450, 94161, 'en', 'name', 'Norwegian Centre for Research Data'),
(115451, 94161, 'no', 'name', 'Norsk senter for forskningsdata'),
(115452, 94162, 'en', 'name', 'Saint Thomas Health'),
(115453, 94163, 'en', 'name', 'University of Veterinary Science'),
(115454, 94164, 'no_lang_code', 'name', 'Pax Press (Rwanda)'),
(115455, 94165, 'de', 'name', 'SanitƤtsakademie der Bundeswehr'),
(115456, 94165, 'en', 'name', 'Bundeswehr Medical Service Academy'),
(115457, 94166, 'es', 'name', 'Universidad Michoacana de Oriente'),
(115458, 94167, 'en', 'name', 'Institute of Ethnomusicology'),
(115459, 94167, 'sl', 'name', 'Glasbenonarodopisni inŔtitut'),
(115460, 94168, 'en', 'name', 'Migrant Assistance Program Foundation'),
(115461, 94169, 'en', 'name', 'CHA University'),
(115462, 94169, 'ko', 'name', 'ģ°Øģ˜ź³¼ķ•™ėŒ€ķ•™źµ'),
(115463, 94170, 'en', 'name', 'Indian Medical Association'),
(115464, 94171, 'no_lang_code', 'name', 'UHC'),
(115465, 94172, 'en', 'name', 'Norwegian Directorate for Children, Youth and Family Affairs'),
(115466, 94172, 'no', 'name', 'Barne-, ungdoms- og familiedirektoratet'),
(115467, 94173, 'en', 'name', 'Institute for Geometry and Physics'),
(115468, 94174, 'no_lang_code', 'name', 'Praxair (United States)'),
(115469, 94175, 'en', 'name', 'North Gate University'),
(115470, 94176, 'es', 'name', 'Universidad Católica Santo Domingo'),
(115471, 94177, 'en', 'name', 'National Computational Infrastructure'),
(115472, 94178, 'en', 'name', 'Japan Technical Association of the Pulp and Paper Industry'),
(115473, 94179, 'en', 'name', 'Allen Whitehill Clowes Charitable Foundation'),
(115474, 94180, 'fr', 'name', 'Centre de Recherches sur le Sport et le Mouvement'),
(115475, 94181, 'es', 'name', 'Instituto Nacional de CancerologĆ­a');
INSERT INTO `ror_settings` VALUES
(115476, 94182, 'en', 'name', 'Astronomical Observatory of Padova'),
(115477, 94182, 'it', 'name', 'Osservatorio Astronomico di Padova'),
(115478, 94183, 'en', 'name', 'Ctl Eurocollege'),
(115479, 94184, 'no_lang_code', 'name', 'Studio CEVAS'),
(115480, 94185, 'en', 'name', 'Institute of Culture and Memory Studies'),
(115481, 94185, 'sl', 'name', 'InŔtitut za kulturne in spominske Ŕtudije'),
(115482, 94186, 'en', 'name', 'Sable Island National Park Reserve'),
(115483, 94186, 'fr', 'name', 'RĆ©serve de parc national de l''Ǝle-de-Sable'),
(115484, 94187, 'en', 'name', 'The Waterbird Society'),
(115485, 94187, 'es', 'name', 'Sociedad de Aves MarĆ­timas'),
(115486, 94188, 'es', 'name', 'Universidad de San Isidro "Dr. PlƔcido Marƭn"'),
(115487, 94189, 'fr', 'name', 'Centre d’histoire sociale des mondes contemporains'),
(115488, 94190, 'en', 'name', 'Foundation for Chemistry Research and Initiatives'),
(115489, 94191, 'de', 'name', 'Technische UniversitƤt Kaiserslautern'),
(115490, 94191, 'en', 'name', 'University of Kaiserslautern'),
(115491, 94192, 'am', 'name', 'įˆ˜į‹³ į‹ˆįˆ‹į‰” į‹©įŠ’į‰Øįˆ­įˆµį‰²'),
(115492, 94192, 'no_lang_code', 'name', 'Madda Walabu University'),
(115493, 94192, 'om', 'name', 'Yuniversiitii Madda Walaabuu'),
(115494, 94193, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŁŁ†ŁˆŁ†'),
(115495, 94193, 'en', 'name', 'Private University of Science and Arts'),
(115496, 94194, 'en', 'name', 'Jiangsu Province Development and Reform Commission'),
(115497, 94194, 'zh', 'name', 'ę±Ÿč‹ēœå‘å±•å’Œę”¹é©å§”å‘˜ä¼š'),
(115498, 94195, 'fr', 'name', 'Risques Travail MarchƩs Etat'),
(115499, 94196, 'de', 'name', 'Braunschweigische Wissenschaftliche Gesellschaft'),
(115500, 94197, 'en', 'name', 'Sungshin Women''s University'),
(115501, 94197, 'ko', 'name', 'ģ„±ģ‹ ģ—¬ģžėŒ€ķ•™źµ'),
(115502, 94198, 'fr', 'name', 'UniversitƩ d''ƩtƩ de Boulogne-sur-Mer'),
(115503, 94199, 'en', 'name', 'Independent Living Resources'),
(115504, 94200, 'en', 'name', 'Slovenian Migration Institute'),
(115505, 94200, 'sl', 'name', 'InŔtitut za slovensko izseljenstvo in migracije'),
(115506, 94201, 'de', 'name', 'Europäisches Laboratorium für Molekularbiologie'),
(115507, 94201, 'en', 'name', 'European Molecular Biology Laboratory'),
(115508, 94202, 'en', 'name', 'Arts and Humanities Research Council'),
(115509, 94203, 'en', 'name', 'South Central Climate Adaptation Science Center'),
(115510, 94204, 'en', 'name', 'Jesuit School of Philosophy and Theology'),
(115511, 94204, 'pt', 'name', 'Faculdade JesuĆ­ta de Filosofia e Teologia'),
(115512, 94205, 'en', 'name', 'Ministry of Science, Education and Sports'),
(115513, 94205, 'hr', 'name', 'Ministarstvo znanosti, obrazovanja i sporta'),
(115514, 94206, 'de', 'name', 'Bundesgesellschaft für Endlagerung'),
(115515, 94207, 'no_lang_code', 'name', 'X-Spectrum (Germany)'),
(115516, 94208, 'en', 'name', 'Iran Nanotechnology Initiative Council'),
(115517, 94209, 'no_lang_code', 'name', 'Interactive Motion Technologies (United States)'),
(115518, 94210, 'en', 'name', 'Khurasan University'),
(115519, 94210, 'fa', 'name', 'دانؓگاه خراسان'),
(115520, 94211, 'en', 'name', 'Wadsworth Center'),
(115521, 94212, 'de', 'name', 'Fraunhofer-Institut für Mikrostruktur von Werkstoffen und Systemen IMWS'),
(115522, 94212, 'en', 'name', 'Fraunhofer Institute for Microstructure of Materials and Systems'),
(115523, 94213, 'es', 'name', 'Centro Universitario de Chihuahua'),
(115524, 94214, 'pt', 'name', 'Instituto Serrapilheira'),
(115525, 94215, 'en', 'name', 'Singapore Management University'),
(115526, 94215, 'ms', 'name', 'Universiti Pengurusan Singapura'),
(115527, 94216, 'pl', 'name', 'Pomorska Szkoła Wyższa w Starogardzie Gdańskim'),
(115528, 94217, 'no_lang_code', 'name', 'Science and Technology Corporation (Netherlands)'),
(115529, 94218, 'en', 'name', 'Prokhorov General Physics Institute'),
(115530, 94218, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ общей физики им. А.М. ŠŸŃ€Š¾Ń…Š¾Ń€Š¾Š²Š° Российской акаГемии наук'),
(115531, 94219, 'en', 'name', 'Federal University of Agriculture'),
(115532, 94220, 'en', 'name', 'Key Laboratory of Drilling and Production Engineering for Oil and Gas, Hubei Province'),
(115533, 94220, 'zh', 'name', 'ę²¹ę°”é’»é‡‡å·„ēØ‹ę¹–åŒ—ēœé‡ē‚¹å®žéŖŒå®¤'),
(115534, 94221, 'en', 'name', 'Doncaster Royal Infirmary'),
(115535, 94222, 'no_lang_code', 'name', 'Garmin (Germany)'),
(115536, 94223, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ć‚øć‚§ć‚¤ćƒ†ćƒƒć‚Æć‚³ćƒ¼ćƒćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³'),
(115537, 94223, 'no_lang_code', 'name', 'JTEC Corporation (Japan)'),
(115538, 94224, 'en', 'name', 'Kharkiv National Kotlyarevsky University of Arts'),
(115539, 94225, 'en', 'name', 'Universal College of Medical Sciences'),
(115540, 94226, 'en', 'name', 'United States Army Medical Research Directorate - West'),
(115541, 94227, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł…ŲµŲ±'),
(115542, 94227, 'en', 'name', 'Ministry of Higher Education'),
(115543, 94228, 'en', 'name', 'Wake Forest Baptist Comprehensive Cancer Center'),
(115544, 94229, 'en', 'name', 'Project Apis m.'),
(115545, 94230, 'de', 'name', 'Theologische Hochschule Ewersbach'),
(115546, 94231, 'cs', 'name', 'Středočeský kraj'),
(115547, 94231, 'en', 'name', 'Central Bohemia Region'),
(115548, 94232, 'fr', 'name', 'Triangle de la Physique'),
(115549, 94233, 'en', 'name', 'Kawano Masanori Memorial Public Interest Incorporated Foundation for Promotion of Pediatrics'),
(115550, 94233, 'ja', 'name', 'å·é‡Žå°å…åŒ»å­¦å„Øå­¦č²”å›£'),
(115551, 94234, 'es', 'name', 'Universidad de Especialidades TurĆ­sticas'),
(115552, 94235, 'no_lang_code', 'name', 'Pro-Metrics (Estonia)'),
(115553, 94236, 'en', 'name', 'Minnesota Agricultural Experiment Station'),
(115554, 94237, 'en', 'name', 'Brazilian Linguistics Association'),
(115555, 94237, 'pt', 'name', 'Associação Brasileira de Linguística'),
(115556, 94238, 'en', 'name', 'Canada Research Chairs'),
(115557, 94238, 'fr', 'name', 'Chaires de recherche du Canada'),
(115558, 94239, 'en', 'name', 'ACT'),
(115559, 94240, 'no_lang_code', 'name', 'Carlson Caspers (United States)'),
(115560, 94241, 'en', 'name', 'Institute of Crop Sciences'),
(115561, 94241, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ä½œē‰©ē§‘å­¦ē ”ē©¶ę‰€'),
(115562, 94242, 'fr', 'name', 'Laboratoire d''Etude de et ContrƓle de l''Environnement SidƩrurgique'),
(115563, 94243, 'en', 'name', 'Citi University'),
(115564, 94243, 'mn', 'name', 'ДИТИ ИЄ ДУРГУУЛЬ'),
(115565, 94244, 'en', 'name', 'Western Ecological Research Center'),
(115566, 94245, 'en', 'name', 'EveryCat Health Foundation'),
(115567, 94246, 'en', 'name', 'Virginia Museum of History & Culture'),
(115568, 94247, 'en', 'name', 'Community Clinic Health Network'),
(115569, 94248, 'en', 'name', 'National Institute for Psychobiology'),
(115570, 94248, 'he', 'name', 'המכון הלאומי לפהיכוביולוגיה ×‘×™×©×Ø××œ'),
(115571, 94249, 'no_lang_code', 'name', 'Booz Allen Hamilton (United States)'),
(115572, 94250, 'es', 'name', 'Centro de Estudios Universitarios del Norte'),
(115573, 94251, 'en', 'name', 'Mongolian State University of Culture and Art'),
(115574, 94252, 'no_lang_code', 'name', 'Akademia'),
(115575, 94253, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§-صنعاؔ'),
(115576, 94253, 'en', 'name', 'University of Science and Technology, Sanaa'),
(115577, 94254, 'no_lang_code', 'name', 'Swerea (Sweden)'),
(115578, 94255, 'en', 'name', 'Dalian Ocean University'),
(115579, 94255, 'zh', 'name', 'å¤§čæžęµ·ę“‹å¤§å­¦'),
(115580, 94256, 'no_lang_code', 'name', 'China National Petroleum Corporation (China)'),
(115581, 94256, 'zh', 'name', 'å¤§åŗ†ę²¹ē”°ęœ‰é™č“£ä»»å…¬åøę²¹ē”°å»ŗč®¾č®¾č®”ē ”ē©¶é™¢'),
(115582, 94257, 'no_lang_code', 'name', 'Digital Infuzion (United States)'),
(115583, 94258, 'en', 'name', 'Kombolcha Institute of Technology'),
(115584, 94259, 'en', 'name', 'Swedish Cancer Society'),
(115585, 94260, 'no_lang_code', 'name', 'Shandong Electric Power Engineering Consulting Institute Corp'),
(115586, 94260, 'zh', 'name', 'å±±äøœē”µåŠ›å·„ēØ‹å’ØčÆ¢é™¢ęœ‰é™å…¬åø'),
(115587, 94261, 'es', 'name', 'Centro Universitario de Bienestar Rural'),
(115588, 94262, 'en', 'name', 'Indian Ocean University'),
(115589, 94263, 'en', 'name', 'North Carolina Land and Water Fund'),
(115590, 94264, 'en', 'name', 'Ministry of New and Renewable Energy'),
(115591, 94265, 'en', 'name', 'Kansas City University'),
(115592, 94266, 'en', 'name', 'Komi Republican Academy of State Service and Administration'),
(115593, 94267, 'en', 'name', 'Ocean Park Conservation Foundation'),
(115594, 94267, 'zh', 'name', 'é¦™ęøÆęµ·ę“‹å…¬åœ’äæč‚²åŸŗé‡‘'),
(115595, 94268, 'no_lang_code', 'name', 'Georgia-Pacific (United States)'),
(115596, 94269, 'en', 'name', 'Institute of Nuclear Energy Research'),
(115597, 94269, 'zh', 'name', 'ę øčƒ½ē ”ē©¶ę‰€'),
(115598, 94270, 'fr', 'name', 'Institut PhotovoltaĆÆque dā€™ĆŽle-de-France'),
(115599, 94271, 'en', 'name', 'Interdisciplinarity in English Studies'),
(115600, 94271, 'fr', 'name', 'InterdisciplinaritƩ dans les Etudes Anglophones'),
(115601, 94272, 'en', 'name', 'Lusófona University of Porto'),
(115602, 94272, 'pt', 'name', 'Universidade Lusófona do Porto'),
(115603, 94273, 'no_lang_code', 'name', 'NeuRho Farmaceutica (United States)'),
(115604, 94274, 'en', 'name', 'Louisiana Community and Technical College System'),
(115605, 94275, 'fr', 'name', 'SociƩtƩ FranƧaise de SantƩ Publique'),
(115606, 94276, 'en', 'name', 'Social Insurance Central General Hospital'),
(115607, 94276, 'ja', 'name', 'ę±äŗ¬å±±ę‰‹ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(115608, 94277, 'en', 'name', 'Knobloch Family Foundation'),
(115609, 94278, 'en', 'name', 'Ukrainian State University of Science and Technologies'),
(115610, 94278, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ науки і технологій'),
(115611, 94279, 'en', 'name', 'NOAA Office of Science Support'),
(115612, 94280, 'it', 'name', 'Istruzione Tecnica Superiore'),
(115613, 94281, 'no_lang_code', 'name', 'Biostar (United States)'),
(115614, 94282, 'en', 'name', 'Yamashita Thyroid Hospital'),
(115615, 94282, 'ja', 'name', 'ć‚„ć¾ć—ćŸē”²ēŠ¶č…ŗē—…é™¢'),
(115616, 94283, 'en', 'name', 'Seton Medical Center Austin'),
(115617, 94284, 'en', 'name', 'Plum Island Ecosystems Long Term Ecological Research'),
(115618, 94285, 'en', 'name', 'Australian Alzheimer’s Research Foundation'),
(115619, 94286, 'en', 'name', 'Friday Harbor Laboratories'),
(115620, 94287, 'no_lang_code', 'name', 'Bionnovation (Brazil)'),
(115621, 94288, 'no_lang_code', 'name', 'Hydro-Air (Germany)'),
(115622, 94289, 'no_lang_code', 'name', 'Forest and Wood Products (Australia)'),
(115623, 94290, 'is', 'name', 'Nýskƶpunarmiưstƶư ƍslands'),
(115624, 94290, 'no_lang_code', 'name', 'Innovation Center Iceland'),
(115625, 94291, 'en', 'name', 'Association for the Conservation of Energy'),
(115626, 94292, 'en', 'name', 'Fairland University'),
(115627, 94293, 'en', 'name', 'Electronics Research Institute'),
(115628, 94294, 'de', 'name', 'Max-Planck-Institut für Evolutionsbiologie'),
(115629, 94294, 'en', 'name', 'Max Planck Institute for Evolutionary Biology'),
(115630, 94295, 'en', 'name', 'University of Hawaiʻi Sea Grant'),
(115631, 94296, 'en', 'name', 'Ild Care Foundation'),
(115632, 94297, 'no_lang_code', 'name', 'Aggreko (United Kingdom)'),
(115633, 94298, 'en', 'name', 'Institute of Image-Guided Surgery'),
(115634, 94298, 'fr', 'name', 'Institut de Chirurgie GuidƩe par l''Image'),
(115635, 94299, 'no_lang_code', 'name', 'Adventium Labs (United States)'),
(115636, 94300, 'no_lang_code', 'name', 'Axalta Coating Systems (United States)'),
(115637, 94301, 'en', 'name', 'Riding Mountain National Park'),
(115638, 94301, 'fr', 'name', 'Parc national du Mont-Riding'),
(115639, 94302, 'en', 'name', 'Nutrition-Genetics and Exposure to Environmental Risks'),
(115640, 94302, 'fr', 'name', 'Nutrition-GƩnƩtique et Exposition aux Risques Environnementaux'),
(115641, 94303, 'ca', 'name', 'Banc de Sang i Teixits'),
(115642, 94303, 'en', 'name', 'Blood and Tissue Bank'),
(115643, 94303, 'es', 'name', 'Banco de Sangre y Tejidos'),
(115644, 94304, 'es', 'name', 'Consejo Nacional de Innovación, Ciencia y Tecnología'),
(115645, 94305, 'en', 'name', 'Wildlife Reserves Singapore Conservation Fund'),
(115646, 94306, 'en', 'name', 'Arizona Experiment Station'),
(115647, 94307, 'en', 'name', 'UMass Memorial Medical Center'),
(115648, 94308, 'hi', 'name', 'Gurukul Kangri Vishwavidyalaya, ą¤—ą„ą¤°ą„ą¤•ą„ą¤² ą¤•ą¤¾ą¤‚ą¤—ą¤”ą¤¼ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(115649, 94309, 'en', 'name', 'International Center for Quantum-field Measurement Systems for Studies of the Universe and Particles'),
(115650, 94309, 'ja', 'name', 'é‡å­å “čØˆęø¬ć‚·ć‚¹ćƒ†ćƒ å›½éš›ę‹ ē‚¹'),
(115651, 94310, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ŁƒŁŠŁ†ŁŠŲ±ŁŠŲŖ Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ©'),
(115652, 94310, 'en', 'name', 'Kinneret College on the Sea of Galilee'),
(115653, 94310, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ כנרת בעמק ×”×™×Ø×“×Ÿ'),
(115654, 94311, 'en', 'name', 'Radiation Biophysics Laboratory'),
(115655, 94312, 'fr', 'name', 'Laboratoire sur les interactions cognition, action, Ʃmotion'),
(115656, 94313, 'en', 'name', 'Cincinnati Foundation for Biomedical Research and Education'),
(115657, 94314, 'en', 'name', 'South Osaka Neurosurgical Hospital'),
(115658, 94315, 'fr', 'name', 'Institut de Recherche en Gestion'),
(115659, 94316, 'fr', 'name', 'Laboratoire d''informatique de Nantes Atlantique'),
(115660, 94317, 'en', 'name', 'The Hegel Society of Korea'),
(115661, 94317, 'ko', 'name', 'ķ•œźµ­ķ—¤ź²”ķ•™ķšŒ'),
(115662, 94318, 'en', 'name', 'College of Industrial Technology'),
(115663, 94318, 'ja', 'name', 'ē”£ę„­ęŠ€č”“ēŸ­ęœŸå¤§å­¦'),
(115664, 94319, 'en', 'name', 'Airline Training Program Flight School'),
(115665, 94320, 'es', 'name', 'Universidad Alfonso X el Sabio'),
(115666, 94321, 'en', 'name', 'St. John Medical Center'),
(115667, 94322, 'en', 'name', 'Tohoku Medical and Pharmaceutical University Wakabayashi Hospital'),
(115668, 94322, 'ja', 'name', 'ę±åŒ—åŒ»ē§‘č–¬ē§‘å¤§å­¦ č‹„ęž—ē—…é™¢'),
(115669, 94323, 'en', 'name', 'Moscow International University of Business and Information Technology'),
(115670, 94324, 'az', 'name', 'Bakı Dƶvlət Universiteti'),
(115671, 94324, 'en', 'name', 'Baku State University'),
(115672, 94324, 'hy', 'name', 'Ō²Õ”Ö„Õ¾Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(115673, 94324, 'ru', 'name', 'Бакинский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(115674, 94325, 'en', 'name', 'Maharashtra Institute of Medical Education and Research'),
(115675, 94326, 'en', 'name', 'Office of AIDS Research'),
(115676, 94327, 'no_lang_code', 'name', 'Mott MacDonald (United Kingdom)'),
(115677, 94328, 'no_lang_code', 'name', 'Quantumscape'),
(115678, 94329, 'az', 'name', 'Qazi Universiteti'),
(115679, 94329, 'en', 'name', 'Gazi University'),
(115680, 94329, 'tr', 'name', 'Gazi Üniversitesi'),
(115681, 94330, 'en', 'name', 'NOAA National Weather Service Western Region'),
(115682, 94331, 'en', 'name', 'Division of Elementary, Secondary, and Informal Education'),
(115683, 94332, 'en', 'name', 'Bonn Aachen International Center for Information Technology'),
(115684, 94333, 'de', 'name', 'Parlament Ɩsterreich'),
(115685, 94333, 'en', 'name', 'Austrian Parliament'),
(115686, 94334, 'en', 'name', 'Clean Cooking Alliance'),
(115687, 94335, 'no_lang_code', 'name', 'Celgene (Switzerland)'),
(115688, 94336, 'en', 'name', 'City Hospitals Sunderland NHS Foundation Trust'),
(115689, 94337, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture et de Paysage de Bordeaux'),
(115690, 94338, 'en', 'name', 'Kohsar University Murree'),
(115691, 94339, 'en', 'name', 'Technological Institute of Ciudad JuƔrez'),
(115692, 94339, 'es', 'name', 'Instituto Tecnológico de Ciudad JuÔrez'),
(115693, 94340, 'fr', 'name', 'ISIPCA'),
(115694, 94341, 'en', 'name', 'National Library of Vietnam'),
(115695, 94342, 'en', 'name', 'Indian National Defence University'),
(115696, 94342, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤°ą¤¾ą¤·ą„ā€ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą¤•ą„ą¤·ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(115697, 94343, 'en', 'name', 'Hiroshima Bunkyo University'),
(115698, 94343, 'ja', 'name', 'åŗƒå³¶ę–‡ę•™å¤§å­¦'),
(115699, 94344, 'en', 'name', 'ChaLearn'),
(115700, 94345, 'en', 'name', 'Galapagos Conservation Trust'),
(115701, 94346, 'en', 'name', 'Mongolian Foundation for Science and Technology'),
(115702, 94346, 'mn', 'name', 'ŠØŠøŠ½Š¶Š»ŃŃ… ŃƒŃ…Š°Š°Š½, технологийн сан'),
(115703, 94346, 'zh', 'name', 'č’™å¤ē§‘å­øęšØęŠ€č”“åŸŗé‡‘ęœƒ'),
(115704, 94347, 'en', 'name', 'Sri Venkatesa Perumal College of Engineering and Technology'),
(115705, 94348, 'en', 'name', 'Grantham Centre for Sustainable Futures'),
(115706, 94349, 'en', 'name', 'National Informatics Centre'),
(115707, 94350, 'en', 'name', 'Higher National School of Forests'),
(115708, 94350, 'fr', 'name', 'Ecole Nationale Supérieure des Forêts'),
(115709, 94351, 'fr', 'name', 'Laboratoire Matériaux Optiques, Photonique et Systèmes'),
(115710, 94352, 'it', 'name', 'INGV Osservatorio Vesuviano'),
(115711, 94353, 'en', 'name', 'International Maize and Wheat Improvement Center'),
(115712, 94354, 'fr', 'name', 'Institut de Biosciences et Biotechnologies'),
(115713, 94355, 'en', 'name', 'Casa GuaĀ­naĀ­juĀ­ato Quad Cities'),
(115714, 94356, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عمران'),
(115715, 94356, 'en', 'name', 'Amran University'),
(115716, 94357, 'en', 'name', 'Ministry for Primary Industries'),
(115717, 94357, 'mi', 'name', 'Manatū Ahu Matua'),
(115718, 94358, 'fr', 'name', 'Centre d''Etudes Germaniques Interculturelles de Lorraine'),
(115719, 94359, 'no_lang_code', 'name', 'Rosatom (Russia)'),
(115720, 94359, 'ru', 'name', 'Росатом'),
(115721, 94360, 'en', 'name', 'Iran''s National Elites Foundation'),
(115722, 94360, 'fa', 'name', 'ŲØŁ†ŁŠŲ§ŲÆ Ł…Ł„ŁŠ Ł†Ų®ŲØŚÆŲ§Ł†ā€Ž'),
(115723, 94361, 'az', 'name', 'Azərbaycan Kooperasiya Universiteti'),
(115724, 94361, 'en', 'name', 'Azerbaijan Cooperation University'),
(115725, 94362, 'no_lang_code', 'name', 'Smd Informatic (Portugal)'),
(115726, 94363, 'no_lang_code', 'name', 'Medicines Company (United States)'),
(115727, 94364, 'no_lang_code', 'name', 'Sumeru Hospital'),
(115728, 94365, 'en', 'name', 'Sirmilik National Park'),
(115729, 94365, 'fr', 'name', 'Parc national Sirmilik'),
(115730, 94366, 'de', 'name', 'Gips-Schüle-Stiftung'),
(115731, 94367, 'es', 'name', 'Confederación HidrogrÔfica del Duero'),
(115732, 94368, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚Ų© بالمصنعة'),
(115733, 94368, 'en', 'name', 'University of Technology and Applied Sciences - Al Mussanah'),
(115734, 94369, 'en', 'name', 'La Mauricie National Park'),
(115735, 94369, 'fr', 'name', 'Parc national de la Mauricie'),
(115736, 94370, 'en', 'name', 'Carteret General Hospital'),
(115737, 94371, 'pt', 'name', 'Formedia'),
(115738, 94372, 'de', 'name', 'Debra'),
(115739, 94373, 'en', 'name', 'Diponegoro University'),
(115740, 94373, 'id', 'name', 'Universitas Diponegoro'),
(115741, 94374, 'en', 'name', 'Hyogo University of Health Sciences'),
(115742, 94374, 'ja', 'name', 'å…µåŗ«åŒ»ē™‚å¤§å­¦'),
(115743, 94375, 'en', 'name', 'Digital Scholar (United States)'),
(115744, 94376, 'sv', 'name', 'Gyllenstiernska Krapperupsstiftelsen'),
(115745, 94377, 'fr', 'name', 'Conseil RƩgional Provence-Alpes-CƓte d''Azur'),
(115746, 94378, 'fr', 'name', 'Laboratoire de Chimie et Physique Quantiques'),
(115747, 94379, 'en', 'name', 'Mustafa Kemal University'),
(115748, 94379, 'tr', 'name', 'Mustafa Kemal Üniversitesi'),
(115749, 94380, 'en', 'name', 'One Door Mental Health'),
(115750, 94381, 'no_lang_code', 'name', 'TerraPower (United States)'),
(115751, 94382, 'en', 'name', 'Arak University of Medical Sciences'),
(115752, 94382, 'fa', 'name', 'Ł¾ŁˆŲ±ŲŖŲ§Ł„ دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§Ų±Ų§Ś©'),
(115753, 94383, 'fr', 'name', 'GEVES'),
(115754, 94384, 'af', 'name', 'Dierkundige Vereeniging van Suidelike Afrika'),
(115755, 94384, 'en', 'name', 'Zoological Society of Southern Africa'),
(115756, 94385, 'en', 'name', 'Department of Industry, Science, Energy and Resources'),
(115757, 94386, 'no_lang_code', 'name', 'ImpactMedia (Spain)'),
(115758, 94387, 'en', 'name', 'University of August 17, 1945 Banyuwangi'),
(115759, 94388, 'en', 'name', 'International Association for Bear Research and Management'),
(115760, 94389, 'en', 'name', 'The Herbert Wertheim UF Scripps Institute for Biomedical Innovation & Technology'),
(115761, 94390, 'en', 'name', 'EIFL'),
(115762, 94391, 'en', 'name', 'Jagadguru Ramanandacharya Rajasthan Sanskrit University'),
(115763, 94391, 'hi', 'name', 'ą¤œą¤—ą¤¦ą„ą¤—ą„ą¤°ą„ ą¤°ą¤¾ą¤®ą¤¾ą¤Øą¤Øą„ą¤¦ą¤¾ą¤šą¤¾ą¤°ą„ą¤Æ ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(115764, 94392, 'en', 'name', 'University of Educational Management'),
(115765, 94392, 'uk', 'name', 'Університет Š¼ŠµŠ½ŠµŠ“Š¶Š¼ŠµŠ½Ń‚Ńƒ освіти'),
(115766, 94393, 'en', 'name', 'Department of Natural and Environmental Resources'),
(115767, 94393, 'es', 'name', 'Departamento de Recursos Naturales y Ambientales'),
(115768, 94394, 'en', 'name', 'First Affiliated Hospital of Zhengzhou University'),
(115769, 94395, 'en', 'name', 'Health Commission of Shaanxi Province'),
(115770, 94395, 'zh', 'name', 'é™•č„æēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(115771, 94396, 'no_lang_code', 'name', 'Anthropic (United States)'),
(115772, 94397, 'sk', 'name', 'Spoločnosń Pro Historia'),
(115773, 94398, 'de', 'name', 'Dienstleistungszentrum LƤndlicher Raum Westerwald-Osteifel'),
(115774, 94399, 'fr', 'name', 'Institut de recherche Juridique sur l''entreprise et les relations professionnelles'),
(115775, 94400, 'en', 'name', 'Metrology Bureau'),
(115776, 94400, 'lv', 'name', 'Latvijas nacionālais metroloģijas centrs'),
(115777, 94401, 'en', 'name', 'Informa Healthcare'),
(115778, 94402, 'fr', 'name', 'Laboratoire de Psychologie et d’Ergonomie AppliquĆ©es'),
(115779, 94403, 'en', 'name', 'Multi-Modal Molecular Imaging Italian Node'),
(115780, 94404, 'en', 'name', 'British Institute at Ankara'),
(115781, 94405, 'en', 'name', 'Central University of Chile'),
(115782, 94405, 'es', 'name', 'Universidad Central de Chile'),
(115783, 94406, 'en', 'name', 'Department of Education of Jilin Province'),
(115784, 94406, 'zh', 'name', 'å‰ęž—ēœę•™č‚²åŽ…'),
(115785, 94407, 'en', 'name', 'Pancreatic Cancer Action'),
(115786, 94408, 'it', 'name', 'Istituto Nazionale di Riposo e Cura per Anziani'),
(115787, 94409, 'no_lang_code', 'name', 'Scientific Analysis Of Fine Art'),
(115788, 94410, 'en', 'name', 'Okura Institute for the Study of Spiritual Culture'),
(115789, 94410, 'ja', 'name', 'ē²¾ē„žę–‡åŒ–ć®ćŸć‚ć®å¤§å€‰ē ”ē©¶ę‰€'),
(115790, 94411, 'en', 'name', 'Tianjin Foreign Studies University'),
(115791, 94411, 'zh', 'name', '天擄外国语大学'),
(115792, 94412, 'en', 'name', 'Sacred Heart Health System'),
(115793, 94413, 'no_lang_code', 'name', 'Tata Trusts'),
(115794, 94414, 'no_lang_code', 'name', 'Avon (United States)'),
(115795, 94415, 'en', 'name', 'Nkumba University'),
(115796, 94416, 'no_lang_code', 'name', 'Solution Engineering (United States)'),
(115797, 94417, 'de', 'name', 'Staatliche Hochschule für Musik und Darstellende Kunst Stuttgart'),
(115798, 94417, 'en', 'name', 'State University of Music and Performing Arts Stuttgart'),
(115799, 94418, 'no_lang_code', 'name', 'Elea'),
(115800, 94419, 'en', 'name', 'International Institute of Tropical Agriculture'),
(115801, 94420, 'fr', 'name', 'Dynamique des CapacitƩs Humaines et des Conduites de SantƩ'),
(115802, 94421, 'en', 'name', 'Institute for Research in Language Teaching'),
(115803, 94421, 'ja', 'name', 'čŖžå­¦ę•™č‚²ē ”ē©¶ę‰€'),
(115804, 94422, 'es', 'name', 'Centro Universitario del Oriente de Hidalgo'),
(115805, 94423, 'en', 'name', 'Kappa Omicron Nu Honor Society'),
(115806, 94424, 'en', 'name', 'Neil A. Armstrong Test Facility'),
(115807, 94425, 'en', 'name', 'Muhammadiyah University of Magelang'),
(115808, 94425, 'id', 'name', 'Universitas Muhammadiyah Magelang'),
(115809, 94426, 'es', 'name', 'Instituto de BiotecnologĆ­a y BiologĆ­a Molecular'),
(115810, 94427, 'en', 'name', 'American Academy of Sleep Medicine Foundation'),
(115811, 94428, 'en', 'name', 'Paddy Pallin Foundation'),
(115812, 94429, 'de', 'name', 'Generaldirektion Wasserstraßen und Schifffahrt'),
(115813, 94430, 'fr', 'name', 'Fondation Maison des Sciences de l''Homme'),
(115814, 94431, 'en', 'name', 'Centre for Ecotoxicological Research'),
(115815, 94432, 'no_lang_code', 'name', 'Mowi (Canada)'),
(115816, 94433, 'no_lang_code', 'name', 'Proteovista (United States)'),
(115817, 94434, 'en', 'name', 'Tokyo Medical and Dental University Hospital'),
(115818, 94434, 'ja', 'name', 'ę±äŗ¬åŒ»ē§‘ę­Æē§‘å¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(115819, 94435, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ł…Ų²Ų§ŁŠŲ§ الجامعة'),
(115820, 94435, 'en', 'name', 'Mazaya University College'),
(115821, 94436, 'en', 'name', 'Mississippi Department of Environmental Quality'),
(115822, 94437, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المنارة'),
(115823, 94437, 'en', 'name', 'Manara University'),
(115824, 94437, 'fr', 'name', 'UniversitƩ Manara'),
(115825, 94438, 'no_lang_code', 'name', 'Cerene Biomedics'),
(115826, 94439, 'en', 'name', 'Carpathian Biosphere Reserve'),
(115827, 94439, 'uk', 'name', 'ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠøŠ¹ біосферний заповіГник'),
(115828, 94440, 'en', 'name', 'Savanna Institute'),
(115829, 94441, 'en', 'name', 'Kostroma State University named after N A Nekrasov'),
(115830, 94441, 'ru', 'name', 'Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ ŠšŠ¾ŃŃ‚Ń€Š¾Š¼ŃŠŗŠ¾Š¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š. А. ŠŠµŠŗŃ€Š°ŃŠ¾Š²Š°'),
(115831, 94442, 'no_lang_code', 'name', 'Bartenbach - The Lighting Innovators (Austria)'),
(115832, 94443, 'fr', 'name', 'UniversitƩ Hassan II Mohammedia'),
(115833, 94444, 'en', 'name', 'National Museum of History of Moldova'),
(115834, 94444, 'ro', 'name', 'Muzeul Național de Istorie a Moldovei'),
(115835, 94445, 'en', 'name', 'Federation of European Microbiological Societies'),
(115836, 94446, 'en', 'name', 'Industrial Technology Development Institute'),
(115837, 94447, 'no_lang_code', 'name', 'Molecular Dimensions'),
(115838, 94448, 'it', 'name', 'Biblioteca Universitaria di Napoli'),
(115839, 94449, 'en', 'name', 'Siberian Research Institute of Animal Husbandry'),
(115840, 94449, 'ru', 'name', 'Дибирский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø проектно-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ животновоГства Дибирского Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра агробиотехнологий Российской акаГемии наук'),
(115841, 94450, 'en', 'name', 'Global Brain Health Institute'),
(115842, 94451, 'de', 'name', 'Hasso-Plattner-Institut'),
(115843, 94451, 'en', 'name', 'Hasso Plattner Institute'),
(115844, 94452, 'en', 'name', 'National Research Council of Science and Technology'),
(115845, 94452, 'ko', 'name', 'źµ­ź°€ź³¼ķ•™źø°ģˆ ģ—°źµ¬ķšŒ'),
(115846, 94453, 'en', 'name', 'Turkish Military Academy'),
(115847, 94453, 'tr', 'name', 'Kara Harp Okulu'),
(115848, 94454, 'no_lang_code', 'name', 'Atego (United Kingdom)'),
(115849, 94455, 'en', 'name', 'Bolin Centre for Climate Research'),
(115850, 94456, 'en', 'name', 'Africa First'),
(115851, 94457, 'en', 'name', 'SINTEF Energy Research'),
(115852, 94458, 'en', 'name', 'Fisheries Research and Development Corporation'),
(115853, 94459, 'en', 'name', 'International Center for Tropical Agriculture'),
(115854, 94459, 'fr', 'name', 'Institut International d''Agriculture Tropicale'),
(115855, 94460, 'es', 'name', 'Instituto de Botanica Darwinion'),
(115856, 94461, 'en', 'name', 'Virginia Tech Transportation Institute'),
(115857, 94462, 'en', 'name', 'Dublin Metropolitan University'),
(115858, 94463, 'en', 'name', 'Henry Ford Health + Michigan State University Health Sciences'),
(115859, 94464, 'en', 'name', 'Animal and Plant Health Inspection Service'),
(115860, 94465, 'en', 'name', 'John Marshall Law School'),
(115861, 94466, 'en', 'name', 'Derby Hospitals NHS Foundation Trust'),
(115862, 94467, 'en', 'name', 'Glenn Research Center'),
(115863, 94468, 'en', 'name', 'Agency of Rural Development and Soil and Water Conservation'),
(115864, 94468, 'zh', 'name', 'č¾²ę„­éƒØč¾²ę‘ē™¼å±•åŠę°“åœŸäæęŒē½² ē‰ˆę¬Šę‰€ęœ‰'),
(115865, 94469, 'no_lang_code', 'name', 'Schreiner Group (Germany)'),
(115866, 94470, 'en', 'name', 'Robert E. Webber Institute for Worship Studies'),
(115867, 94471, 'it', 'name', 'Centro Polispecialistico Mediterraneo'),
(115868, 94472, 'en', 'name', 'Lady Tata Memorial Trust'),
(115869, 94473, 'pt', 'name', 'Centro UniversitÔrio União Dinâmica das Cataratas'),
(115870, 94474, 'ca', 'name', 'Hospital de Sant Pau'),
(115871, 94474, 'en', 'name', 'Hospital of the Holy Cross and Saint Paul'),
(115872, 94475, 'de', 'name', 'Fraunhofer-Einrichtung für Additive Produktionstechnologien IAPT'),
(115873, 94475, 'en', 'name', 'Fraunhofer Research Institution for Additive Manufacturing Technologies IAPT'),
(115874, 94476, 'no_lang_code', 'name', 'John Crane (United States)'),
(115875, 94477, 'es', 'name', 'Centro de Metrologƭa del EjƩrcito Ecuatoriano'),
(115876, 94478, 'tr', 'name', 'Kıbrıs Ada Kent Üniversitesi'),
(115877, 94479, 'es', 'name', 'Centro Universitario en Lenguas, Turismo y Empresas de Servicios'),
(115878, 94480, 'en', 'name', 'Ministry of Health'),
(115879, 94481, 'en', 'name', 'INCLIVA Health Research Institute'),
(115880, 94481, 'es', 'name', 'El Instituto de Investigación Sanitaria INCLIVA'),
(115881, 94482, 'id', 'name', 'Universitas Islam Balitar'),
(115882, 94483, 'en', 'name', 'The Crustacean Society'),
(115883, 94484, 'fr', 'name', 'Centre de recherches et d’études sur les droits fondamentaux'),
(115884, 94485, 'en', 'name', 'National Latino Cosmetology Association'),
(115885, 94486, 'en', 'name', 'Center for European and Comparative Legal Studies'),
(115886, 94486, 'fr', 'name', 'Centre d''Ʃtudes juridiques europƩennes et comparƩes'),
(115887, 94487, 'en', 'name', 'International Maize and Wheat Improvement Center'),
(115888, 94488, 'en', 'name', 'Government of Norway'),
(115889, 94489, 'es', 'name', 'Red de Investigadores De la Transcomplejidad'),
(115890, 94490, 'en', 'name', 'Point Pelee National Park'),
(115891, 94490, 'fr', 'name', 'Parc national de la Pointe-PelƩe'),
(115892, 94491, 'en', 'name', 'South Dakota Game, Fish and Parks'),
(115893, 94492, 'en', 'name', 'Tanzania Bureau of Standards'),
(115894, 94493, 'en', 'name', 'Edinburgh Cancer Research'),
(115895, 94494, 'en', 'name', 'Fraunhofer USA'),
(115896, 94495, 'en', 'name', 'Georgian National Academy of Sciences'),
(115897, 94495, 'hy', 'name', 'ÕŽÖ€Õ”Õ½ÕæÕ”Õ¶Õ« Ō³Õ«ÕæÕøÖ‚Õ©ÕµÕøÖ‚Õ¶Õ¶Õ„Ö€Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ”ÕÆÕ”Õ¤Õ„Õ“Õ«Õ”'),
(115898, 94495, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ›įƒ”įƒŖįƒœįƒ˜įƒ”įƒ įƒ”įƒ‘įƒįƒ—įƒ įƒįƒ™įƒįƒ“įƒ”įƒ›įƒ˜įƒ'),
(115899, 94495, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Š“Ń€ŃƒŠ·ŠøŠø'),
(115900, 94496, 'en', 'name', 'Ministry of Economic Affairs, Entrepreneurship and Technological Innovation'),
(115901, 94496, 'nl', 'name', 'Ministerie van Economische Zaken, Ondernemerschap en Technologische Innovatie'),
(115902, 94497, 'en', 'name', 'Texas A&M University – Kingsville'),
(115903, 94498, 'fr', 'name', 'Cibles thƩrapeutiques, formulation et expertise prƩclinique du mƩdicament'),
(115904, 94499, 'en', 'name', 'Polytechnic University of Tirana'),
(115905, 94499, 'sq', 'name', 'Universiteti Politeknik i Tiranƫs'),
(115906, 94500, 'no_lang_code', 'name', 'Garage Brain Science'),
(115907, 94501, 'en', 'name', 'National Centre for Antarctic and Ocean Research'),
(115908, 94501, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤•ą¤Ÿą¤æą¤• ą¤ą¤µą¤‚ ą¤øą¤®ą„ą¤¦ą„ą¤°ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(115909, 94502, 'en', 'name', 'Annenberg Foundation Trust at Sunnylands'),
(115910, 94503, 'en', 'name', 'TD Friends of the Environment Foundation'),
(115911, 94503, 'fr', 'name', 'Fondation TD des Amis de l''Environnement'),
(115912, 94504, 'en', 'name', 'National Gear Metrology Laboratory'),
(115913, 94505, 'en', 'name', 'Third Xiangya Hospital'),
(115914, 94505, 'zh', 'name', 'äø­å—å¤§å­¦ę¹˜é›…äø‰åŒ»é™¢-é—Øę€„čÆŠę„¼'),
(115915, 94506, 'en', 'name', 'PƔpa Reformed Theological Seminary'),
(115916, 94506, 'hu', 'name', 'PÔpai ReformÔtus Teológiai Akadémia'),
(115917, 94507, 'en', 'name', 'Directory of Open Access Journals'),
(115918, 94508, 'en', 'name', 'Queensland Self-Management Alliance'),
(115919, 94509, 'en', 'name', 'Child Neurology Society'),
(115920, 94510, 'es', 'name', 'Universidad de Comunicación Avanzada'),
(115921, 94511, 'en', 'name', 'Innovate UK'),
(115922, 94512, 'en', 'name', 'Arkin University of Creative Arts and Design'),
(115923, 94512, 'tr', 'name', 'Arkın Yaratıcı Sanatlar ve Tasarım Üniversitesi'),
(115924, 94513, 'no_lang_code', 'name', 'Dow Agrosciences (United States)'),
(115925, 94514, 'en', 'name', 'Maharishi Vedic Research Institute'),
(115926, 94515, 'id', 'name', 'Universitas Darma Agung'),
(115927, 94516, 'en', 'name', 'Ehlers-Danlos Society'),
(115928, 94517, 'en', 'name', 'Akami-Uapishkᵘ-KakKasuak-Mealy Mountains National Park Reserve'),
(115929, 94517, 'fr', 'name', 'RĆ©serve de parc national Akami-Uapishkįµ˜ā€“KakKasuak–Monts-Meal'),
(115930, 94518, 'en', 'name', 'Idaho Space Grant Consortium'),
(115931, 94519, 'de', 'name', 'StƤdelschule'),
(115932, 94520, 'en', 'name', 'Jinan City People''s Hospital'),
(115933, 94520, 'zh', 'name', 'ęµŽå—åø‚äŗŗę°‘åŒ»é™¢'),
(115934, 94521, 'en', 'name', 'Saint Petersburg University of Management and Economics'),
(115935, 94522, 'en', 'name', 'Aircraft Engine Research Laboratory'),
(115936, 94523, 'en', 'name', 'The Automobile Association'),
(115937, 94524, 'no_lang_code', 'name', 'AES (United States)'),
(115938, 94525, 'en', 'name', 'Ann and Gordon Getty Foundation'),
(115939, 94526, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© 21 Ų³ŲØŲŖŁ…ŲØŲ± Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(115940, 94526, 'en', 'name', '21 September University of Medical and Applied Sciences'),
(115941, 94527, 'cs', 'name', 'Olomouc Region, Olomoucký kraj'),
(115942, 94528, 'en', 'name', 'University of Makeni'),
(115943, 94529, 'en', 'name', 'Golden Key International Honour Society'),
(115944, 94530, 'en', 'name', 'Dementia Australia'),
(115945, 94531, 'en', 'name', 'Central-Eastern-European Recreational Association'),
(115946, 94531, 'hu', 'name', 'Közép-Kelet-Európai RekreÔciós TÔrsasÔg'),
(115947, 94532, 'en', 'name', 'Government of Yukon'),
(115948, 94532, 'fr', 'name', 'Gouvernement du Yukon'),
(115949, 94533, 'en', 'name', 'Yangtze University'),
(115950, 94533, 'zh', 'name', 'é•æę±Ÿå¤§å­¦'),
(115951, 94534, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… و Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(115952, 94534, 'en', 'name', 'University of Science and Technology'),
(115953, 94535, 'de', 'name', 'Nationale Einrichtung fur Radioactive AbfƤlle und angereicherte Spaltmaterialien'),
(115954, 94535, 'fr', 'name', 'Organisme National des Déchets Radioactifs et des Matières Fissiles Enrichies'),
(115955, 94535, 'nl', 'name', 'Nationale Instelling voor Radioactief Afval en verrijkte Splijtstoffen'),
(115956, 94536, 'no_lang_code', 'name', 'Cybernetics Technology (Belgium)'),
(115957, 94537, 'no', 'name', 'Ƙstfold Fylkeskommune'),
(115958, 94538, 'no_lang_code', 'name', 'Metadata Game Changers (United States)'),
(115959, 94539, 'no_lang_code', 'name', 'Customcells Itzehoe GmbH (Germany)'),
(115960, 94540, 'en', 'name', 'University of Batangas'),
(115961, 94540, 'tl', 'name', 'Western Philippine College'),
(115962, 94541, 'sv', 'name', 'C.F. Lundstrƶms Stiftelse'),
(115963, 94542, 'no_lang_code', 'name', 'SAXSLAB (Denmark)'),
(115964, 94543, 'en', 'name', 'Bucerius Law School'),
(115965, 94544, 'en', 'name', 'Xiangya Hospital Central South University'),
(115966, 94544, 'zh', 'name', 'äø­å—å¤§å­¦ę¹˜é›…åŒ»é™¢'),
(115967, 94545, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الزهراؔ Ų¹Ł„ŁŠŁ‡Ų§ السلام للبنات'),
(115968, 94545, 'en', 'name', 'Al-Zahraa University for Women'),
(115969, 94546, 'en', 'name', 'Sutton Trust'),
(115970, 94547, 'ja', 'name', 'ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆć‚¤ćƒ‹ć‚·ć‚¢ćƒ†ć‚£ćƒ–'),
(115971, 94547, 'no_lang_code', 'name', 'Internet Initiative Japan'),
(115972, 94548, 'en', 'name', 'Moscow State University of Technologies and Management named after K.G. Razumovskiy'),
(115973, 94548, 'ru', 'name', 'Московский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет Технологий Šø Š£ŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ им. К.Š“. Разумовского'),
(115974, 94549, 'es', 'name', 'Consejo Nacional de Ciencia, Tecnología e Innovación Tecnológica'),
(115975, 94550, 'en', 'name', 'Japan Society of Civil Engineers'),
(115976, 94550, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåœŸęœØå­¦ä¼š'),
(115977, 94551, 'fr', 'name', 'Sciences, Philosophie, Histoire'),
(115978, 94552, 'no_lang_code', 'name', 'SofTech (Italy)'),
(115979, 94553, 'es', 'name', 'Academia Mexicana de Investigación y Docencia en Innovación'),
(115980, 94554, 'en', 'name', 'Love Your Breasts'),
(115981, 94555, 'en', 'name', 'Texas Woman''s University'),
(115982, 94556, 'en', 'name', 'Institute of Encyclopedic Research'),
(115983, 94556, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ енциклопеГичних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України"'),
(115984, 94557, 'en', 'name', 'Izumi Science and Technology Promotion Foundation'),
(115985, 94557, 'ja', 'name', 'ę³‰ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(115986, 94558, 'en', 'name', 'Alfred Friendly Foundation'),
(115987, 94559, 'kk', 'name', 'ŠŅ±Ń€-ŠœŅÆŠ±Š°Ń€Š°Šŗ Египет ислам мәГениеті ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(115988, 94559, 'no_lang_code', 'name', 'Nur-Mubarak University'),
(115989, 94560, 'fr', 'name', 'HƓpital Claude Huriez'),
(115990, 94561, 'en', 'name', 'Chongqing Municipal Government'),
(115991, 94562, 'no_lang_code', 'name', 'Arkema (France)'),
(115992, 94563, 'en', 'name', 'Cyprus Health and Social Sciences University'),
(115993, 94563, 'tr', 'name', 'Kıbrıs Sağlık ve Toplum Bilimleri Üniversitesi'),
(115994, 94564, 'en', 'name', 'The University of Texas Health Science Center'),
(115995, 94565, 'no_lang_code', 'name', 'WSP Civils (United Kingdom)'),
(115996, 94566, 'en', 'name', 'Montenegrin Bureau of Metrology'),
(115997, 94567, 'fr', 'name', 'Acta - les Instituts Techniques Agricoles'),
(115998, 94568, 'fr', 'name', 'Ɖcole nationale supĆ©rieure de paysage de Versailles'),
(115999, 94569, 'it', 'name', 'IRCCS Humanitas Research Hospital, Istituto Clinico Humanitas IRCCS'),
(116000, 94570, 'no_lang_code', 'name', 'MSC Software (United States)'),
(116001, 94571, 'ar', 'name', 'معهد الامارات Ł„Ł„Ł…ŲŖŲ±ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(116002, 94571, 'en', 'name', 'Emirates Metrology Institute'),
(116003, 94572, 'ja', 'name', 'äø‰č±ć‚±ćƒŸć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(116004, 94572, 'no_lang_code', 'name', 'Mitsubishi Chemical (Japan)'),
(116005, 94573, 'en', 'name', 'Turku University Hospital'),
(116006, 94573, 'fi', 'name', 'Turun yliopistollinen keskussairaala'),
(116007, 94574, 'en', 'name', 'Institute of Biodiversity and Applied and Experimental Biology'),
(116008, 94574, 'es', 'name', 'Instituto de Biodiversidad y BiologĆ­a Experimental y Aplicada'),
(116009, 94575, 'fr', 'name', 'Laboratoire Stress Oxydant et Pathologies MƩtaboliques'),
(116010, 94576, 'no_lang_code', 'name', 'TWT GmbH Science & Innovation (Germany)'),
(116011, 94577, 'es', 'name', 'Instituto de Acuacultura del Estado de Sonora'),
(116012, 94578, 'en', 'name', 'Net Zero Technology Centre'),
(116013, 94579, 'fr', 'name', 'Sciences Po Lille'),
(116014, 94580, 'tr', 'name', 'Seferihisar Belediyesi'),
(116015, 94581, 'en', 'name', 'Martin Health System'),
(116016, 94582, 'en', 'name', 'IBS Center for Climate Physics'),
(116017, 94583, 'en', 'name', 'The Huntington Library, Art Museum, and Botanical Gardens'),
(116018, 94583, 'fr', 'name', 'BibliothĆØque huntington'),
(116019, 94584, 'de', 'name', 'Generaldirektion Wasserstraßen und Schifffahrt'),
(116020, 94585, 'en', 'name', 'World Vegetable Center'),
(116021, 94586, 'en', 'name', 'Ministry of Science and Higher Education'),
(116022, 94586, 'pl', 'name', 'Ministerstwo Nauki i Szkolnictwa Wyższego'),
(116023, 94587, 'no_lang_code', 'name', 'Arnika'),
(116024, 94588, 'en', 'name', 'St. John Macomb Oakland Hospital'),
(116025, 94589, 'no_lang_code', 'name', 'Triangle Research and Development Corporation (United States)'),
(116026, 94590, 'es', 'name', 'Hospital General San Jorge'),
(116027, 94591, 'en', 'name', 'IIJ Research Laboratory'),
(116028, 94591, 'ja', 'name', 'IIJęŠ€č”“ē ”ē©¶ę‰€'),
(116029, 94592, 'en', 'name', 'TOCA at Banner Health'),
(116030, 94593, 'en', 'name', 'WAPCOS Limited'),
(116031, 94593, 'hi', 'name', 'ą¤µą¤¾ą¤Ŗą„ą¤•ą„‹ą¤ø ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(116032, 94594, 'en', 'name', 'Baha''i World Centre'),
(116033, 94595, 'en', 'name', 'Pandian Educational Trust'),
(116034, 94595, 'ta', 'name', 'ą®Ŗą®¾ą®£ąÆą®Ÿą®æą®Æą®©ąÆ ą®•ą®²ąÆą®µą®æ ą®…ą®±ą®•ąÆą®•ą®ŸąÆą®Ÿą®³ąÆˆ'),
(116035, 94596, 'en', 'name', 'American Psychosocial Oncology Society'),
(116036, 94597, 'en', 'name', 'Australian Antarctic Division'),
(116037, 94598, 'fr', 'name', 'UniversitƩ Professionnelle d''Afrique'),
(116038, 94599, 'en', 'name', 'Moscow State University of Economics Statistics and Informatics'),
(116039, 94599, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø, статистики Šø информатики'),
(116040, 94600, 'en', 'name', 'Los Molinos Observatory'),
(116041, 94600, 'es', 'name', 'Observatorio Astronómico Los Molinos'),
(116042, 94601, 'es', 'name', 'Hospital Domingo Funes'),
(116043, 94602, 'en', 'name', 'Public Knowledge Project'),
(116044, 94603, 'en', 'name', 'National Center on Complex Processing of Mineral Raw Materials of the Republic of Kazakhstan'),
(116045, 94603, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ минералГық ŃˆŠøŠŗŃ–Š·Š°Ń‚Ń‚Ń‹ ŠŗŠµŃˆŠµŠ½Š“Ń– қайта өңГеу жөнінГегі ұлттық орталығы'),
(116046, 94603, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр по комплексной переработке Š¼ŠøŠ½ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ сырья Республики ŠšŠ°Š·Š°Ń…стан'),
(116047, 94604, 'no_lang_code', 'name', 'Bayer (United Kingdom)'),
(116048, 94605, 'id', 'name', 'Universitas Kristen Palangkaraya'),
(116049, 94606, 'en', 'name', 'United States Army Research Office'),
(116050, 94607, 'en', 'name', 'Zhetysu University named after Ilyas Zhansugurov'),
(116051, 94607, 'kk', 'name', 'Š†Š»ŠøŃŃ Жансүгіров атынГағы Š–ŠµŃ‚Ń–ŃŃƒ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(116052, 94607, 'ru', 'name', 'Š–ŠµŃ‚Ń‹ŃŃƒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š˜Š»ŃŒŃŃŠ° Š–Š°Š½ŃŃƒŠ³ŃƒŃ€Š¾Š²Š°'),
(116053, 94608, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Ostsee'),
(116054, 94609, 'es', 'name', 'Instituto de Ciencia y TecnologĆ­a de los Alimentos de Entre RĆ­os'),
(116055, 94610, 'en', 'name', 'Comprehensive Cancer Centers of Nevada'),
(116056, 94611, 'fr', 'name', 'HƓpitaux de Saint Maurice'),
(116057, 94612, 'en', 'name', 'NOAA Office of Coast Survey'),
(116058, 94613, 'fr', 'name', 'GƩnƩrale de SantƩ'),
(116059, 94614, 'es', 'name', 'Tecnológico Sudamericano'),
(116060, 94615, 'en', 'name', 'Society for Academic Facilitation and Extension'),
(116061, 94616, 'it', 'name', 'INGV Amministrazione Centrale'),
(116062, 94617, 'en', 'name', 'Transnational University Limburg'),
(116063, 94617, 'nl', 'name', 'Transnationale Universiteit Limburg'),
(116064, 94618, 'fr', 'name', 'Institut Universitaire Polytechnique de Mongo'),
(116065, 94619, 'en', 'name', 'Dharmsinh Desai University'),
(116066, 94620, 'en', 'name', 'University System of Maryland at Hagerstown'),
(116067, 94621, 'en', 'name', 'Hawaii Pacific Health'),
(116068, 94622, 'en', 'name', 'Innovation Academy for Microsatellites of Chinese Academy of Sciences'),
(116069, 94622, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¾®å°å«ę˜Ÿåˆ›ę–°ē ”ē©¶é™¢å¤‡ę”ˆ'),
(116070, 94623, 'en', 'name', 'Gans Collections and Charitable Fund'),
(116071, 94624, 'en', 'name', 'Beckman Research Institute'),
(116072, 94625, 'no_lang_code', 'name', 'Appco Pharma (United States)'),
(116073, 94626, 'az', 'name', 'Tbilisi Dƶvlət Universiteti'),
(116074, 94626, 'en', 'name', 'Tbilisi State University'),
(116075, 94626, 'hy', 'name', 'Ō¹Õ¢Õ«Õ¬Õ«Õ½Õ«Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(116076, 94626, 'ka', 'name', 'įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜įƒ” įƒ”įƒįƒ®įƒ”įƒšįƒ›įƒ¬įƒ˜įƒ¤įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(116077, 94626, 'ru', 'name', 'Тбилисский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116078, 94627, 'no_lang_code', 'name', 'Canadian Journal of Communication (Canada)'),
(116079, 94628, 'en', 'name', 'Australian Medical Council'),
(116080, 94629, 'en', 'name', 'Results for Development Institute'),
(116081, 94630, 'en', 'name', 'Social Protection Institute of the Republic of Slovenia'),
(116082, 94631, 'no_lang_code', 'name', 'Parachute Health (United States)'),
(116083, 94632, 'no_lang_code', 'name', 'Syngenta (Switzerland)'),
(116084, 94633, 'en', 'name', 'Acute and Chronic Cardiovascular Deficiency'),
(116085, 94633, 'fr', 'name', 'DƩfaillance Cardiovasculaire Aiguƫ et Chronique'),
(116086, 94634, 'en', 'name', 'Center for Islamic Studies (ISAM)'),
(116087, 94634, 'tr', 'name', 'İslam Araştırmaları Merkezi (İSAM)'),
(116088, 94635, 'es', 'name', 'Instituto de GenƩtica Veterinaria'),
(116089, 94636, 'en', 'name', 'Dorrance Family Foundation'),
(116090, 94637, 'no_lang_code', 'name', 'Crystal Bioscience (United States)'),
(116091, 94638, 'en', 'name', 'Touching Tiny Lives'),
(116092, 94639, 'en', 'name', 'Ohio University Chillicothe'),
(116093, 94640, 'no_lang_code', 'name', 'SKF (Sweden)'),
(116094, 94640, 'sv', 'name', 'Svenska Kullagerfabriken'),
(116095, 94641, 'en', 'name', 'Hasselblad Foundation'),
(116096, 94642, 'en', 'name', 'Health Professionals Advancing LGBT Equality'),
(116097, 94643, 'en', 'name', 'Association of Field Ornithologists'),
(116098, 94643, 'es', 'name', 'Asociación de Ornitólogos de Campo'),
(116099, 94643, 'pt', 'name', 'Associação de Ornitólogos de Campo'),
(116100, 94644, 'ja', 'name', 'å¤©ē†ć‚ˆć‚ć„ē›øč«‡ę‰€ē—…é™¢'),
(116101, 94644, 'no_lang_code', 'name', 'Tenri Hospital'),
(116102, 94645, 'en', 'name', 'Maharshi Vishwamitra College, Buxar'),
(116103, 94646, 'en', 'name', 'Shanghai Jinyuan Senior High School'),
(116104, 94646, 'zh', 'name', 'äøŠęµ·åø‚ę™‹å…ƒé«˜ēŗ§äø­å­¦'),
(116105, 94647, 'en', 'name', 'Mechnikov Institute of Microbiology and Immunology'),
(116106, 94647, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŃ–ŠŗŃ€Š¾Š±Ń–Š¾Š»Š¾Š³Ń–Ń— та Š†Š¼ŃƒŠ½Š¾Š»Š¾Š³Ń–Ń— ім. І. І. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(116107, 94648, 'no_lang_code', 'name', 'Rayonier Advanced Materials (United States)'),
(116108, 94649, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© السلام'),
(116109, 94649, 'en', 'name', 'Salaam University'),
(116110, 94649, 'so', 'name', 'Jaamacadda Salaam'),
(116111, 94650, 'en', 'name', 'Institute of Biological and Medical Imaging'),
(116112, 94651, 'es', 'name', 'Laboratorio Tecnológico del Uruguay'),
(116113, 94652, 'en', 'name', 'Banner Gateway Medical Center'),
(116114, 94653, 'no_lang_code', 'name', 'PharmAgra Labs (United States)'),
(116115, 94654, 'id', 'name', 'STIKOM Tunas Bangsa'),
(116116, 94655, 'cy', 'name', 'Prifysgol Cymru Y Drindod Dewi Sant'),
(116117, 94655, 'en', 'name', 'University of Wales Trinity Saint David'),
(116118, 94656, 'de', 'name', 'Fraunhofer-Institut für Silicatforschung'),
(116119, 94656, 'en', 'name', 'Fraunhofer Institute for Silicate Research'),
(116120, 94657, 'en', 'name', 'Başaksehir Ƈam and Sakura City Hospital, Istanbul'),
(116121, 94657, 'tr', 'name', 'İstanbul Başakşehir Ƈam ve Sakura Şehir Hastanesi'),
(116122, 94658, 'en', 'name', 'Pudong New Area Health and Family Planning Commission'),
(116123, 94658, 'zh', 'name', 'ęµ¦äøœę–°åŒŗå«ē”Ÿå±€'),
(116124, 94659, 'en', 'name', 'NOAA National Marine Fisheries Service Alaska Regional Office'),
(116125, 94660, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ال؄مام Ł…Ų­Ł…ŲÆ بن سعود Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(116126, 94660, 'en', 'name', 'Imam Mohammad ibn Saud Islamic University'),
(116127, 94661, 'en', 'name', 'Veer Kunwar Singh University'),
(116128, 94661, 'hi', 'name', 'ą¤µą„€ą¤° ą¤•ą„ą¤‚ą¤µą¤° सिंह ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(116129, 94662, 'id', 'name', 'Politeknik Teknologi Nuklir Indonesia'),
(116130, 94663, 'en', 'name', 'Wenzhou Polytechnic'),
(116131, 94663, 'zh', 'name', 'ęø©å·žčŒäøšęŠ€ęœÆå­¦é™¢'),
(116132, 94664, 'en', 'name', 'Geological Survey of Western Australia'),
(116133, 94665, 'en', 'name', 'Institute of Anthropological and Spatial Studies'),
(116134, 94665, 'sl', 'name', 'InŔtitut za antropoloŔke in prostorske Ŕtudije'),
(116135, 94666, 'en', 'name', 'University of Mianwali'),
(116136, 94667, 'en', 'name', 'Padmashri Dr. V. B. Kolte College of Engineering, Malkapur'),
(116137, 94667, 'mr', 'name', 'ą¤Ŗą¤¦ą„ą¤®ą¤¶ą„ą¤°ą„€ ą¤”ą„‰ ą¤µą„ą¤¹ą„€ ą¤¬ą„€ ą¤•ą„‹ą¤²ą¤¤ą„‡ ą¤•ą„‰ą¤²ą„‡ą¤œ ऑफ ą¤‡ą¤‚ą¤œą¤æą¤Øą„€ą¤…ą¤°ą¤æą¤‚ą¤—, ą¤®ą¤²ą¤•ą¤¾ą¤Ŗą„‚ą¤°'),
(116138, 94668, 'fr', 'name', 'Semae'),
(116139, 94669, 'en', 'name', 'United Nations High Commissioner for Refugees'),
(116140, 94670, 'en', 'name', 'I Believe'),
(116141, 94671, 'en', 'name', 'Paris Biotech SantƩ'),
(116142, 94672, 'en', 'name', 'University of Isfahan'),
(116143, 94672, 'fa', 'name', 'دانؓگاه اصفهان'),
(116144, 94673, 'en', 'name', 'National Institute of Abiotic Stress Management'),
(116145, 94673, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤…ą¤œą„ˆą¤µą¤æą¤• तनाव ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(116146, 94674, 'en', 'name', 'Vologda State University'),
(116147, 94674, 'ru', 'name', 'ВологоГский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116148, 94675, 'en', 'name', 'Natural Resources Canada'),
(116149, 94676, 'en', 'name', 'JRS Biodiversity Foundation'),
(116150, 94677, 'en', 'name', 'Donetsk State University of Internal Affairs'),
(116151, 94677, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(116152, 94678, 'en', 'name', 'Kasturba Medical College, Manipal'),
(116153, 94679, 'fr', 'name', 'Institut ACTE - Arts CrƩations ThƩories EsthƩtiques'),
(116154, 94680, 'en', 'name', 'Turkish Atomic Energy Authority'),
(116155, 94680, 'tr', 'name', 'Türkiye Atom Enerjisi Kurumu'),
(116156, 94681, 'en', 'name', 'Finnish Meteorological Institute');
INSERT INTO `ror_settings` VALUES
(116157, 94681, 'fi', 'name', 'Ilmatieteen Laitos'),
(116158, 94681, 'sv', 'name', 'Meteorologiska Institutet'),
(116159, 94682, 'en', 'name', 'The Oppenheimer Memorial Trust'),
(116160, 94683, 'no_lang_code', 'name', 'Indivior (United Kingdom)'),
(116161, 94684, 'de', 'name', 'Loro-Parque-Stiftung'),
(116162, 94684, 'es', 'name', 'Loro Parque Fundación'),
(116163, 94685, 'no_lang_code', 'name', 'DASA (Brazil)'),
(116164, 94686, 'en', 'name', 'The Athenaeum Club'),
(116165, 94687, 'en', 'name', 'Physical Microfluidics and Bioengineering'),
(116166, 94687, 'fr', 'name', 'Microfluidique Physique et Bio-ingƩnierie'),
(116167, 94688, 'en', 'name', 'Duke Regional Hospital'),
(116168, 94689, 'en', 'name', 'Istanbul Medeniyet University'),
(116169, 94689, 'tr', 'name', 'İstanbul Medeniyet Üniversitesi'),
(116170, 94690, 'no_lang_code', 'name', 'Acta Digital Services (France)'),
(116171, 94691, 'en', 'name', 'Brenner Children''s Hospital'),
(116172, 94692, 'da', 'name', 'Ministeriet for FĆødevarer, Landbrug og Fiskeri'),
(116173, 94692, 'en', 'name', 'Danish Ministry of Food, Agriculture and Fisheries'),
(116174, 94693, 'id', 'name', 'STKIP PGRI Bangkalan'),
(116175, 94694, 'no_lang_code', 'name', 'Federatie van Nederlandse Trombosediensten'),
(116176, 94695, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Spree-Havel'),
(116177, 94696, 'en', 'name', 'University of Missouri Hospital'),
(116178, 94697, 'en', 'name', 'Advanced Biotechnology Center'),
(116179, 94697, 'it', 'name', 'Centro Biotecnologie Avanzate'),
(116180, 94698, 'es', 'name', 'Museo de Arte Popular'),
(116181, 94699, 'en', 'name', 'Ho Chi Minh City University of Science'),
(116182, 94699, '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'),
(116183, 94700, 'en', 'name', 'RVNAhealth'),
(116184, 94701, 'cs', 'name', 'VysokĆ” Å”kola mezinĆ”rodnĆ­ch a veřejných vztahÅÆ Praha'),
(116185, 94701, 'en', 'name', 'University of International and Public Relations Prague'),
(116186, 94702, 'de', 'name', 'Wasserstraßen-Neubauamt Berlin'),
(116187, 94703, 'it', 'name', 'Ausl 4 Piazza Ospedale'),
(116188, 94704, 'es', 'name', 'Hospital Universitario Son Espases'),
(116189, 94705, 'en', 'name', 'PSP Association'),
(116190, 94706, 'es', 'name', 'Hospital Provincial Universitario Cardiocentro "Ernesto Che Guevara"'),
(116191, 94707, 'fr', 'name', 'ComitƩ National des Interprofessions des Vins Ơ Appellation d''Origine'),
(116192, 94708, 'no_lang_code', 'name', 'Blue Marble Game (United States)'),
(116193, 94709, 'en', 'name', 'Cerebral Palsy Research Network'),
(116194, 94710, 'en', 'name', 'Indonesian Bakti University of Banyuwangi'),
(116195, 94710, 'id', 'name', 'Universitas Bakti Indonesia'),
(116196, 94711, 'es', 'name', 'Instituto Franco-Argentino sobre Estudios de Clima y sus Impactos'),
(116197, 94712, 'es', 'name', 'Universidad Nacional de la PolicĆ­a de Honduras'),
(116198, 94713, 'de', 'name', 'Hochschule der Polizei des Landes Brandenburg'),
(116199, 94714, 'no_lang_code', 'name', 'MDA Information Systems (United States)'),
(116200, 94715, 'no_lang_code', 'name', 'Illumina (United States)'),
(116201, 94716, 'ko', 'name', '삼성 ė©”ė””ģŠØ'),
(116202, 94716, 'no_lang_code', 'name', 'Samsung Medison (South Korea)'),
(116203, 94717, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ų±ŲÆŁ†ŁŠŲ©'),
(116204, 94717, 'en', 'name', 'University of Jordan'),
(116205, 94718, 'en', 'name', 'Genome Institute of Singapore'),
(116206, 94719, 'en', 'name', 'Central University of Venezuela'),
(116207, 94719, 'es', 'name', 'Universidad Central de Venezuela'),
(116208, 94720, 'no_lang_code', 'name', 'Aircraft Industries (Czechia)'),
(116209, 94721, 'no_lang_code', 'name', 'Novalex Therapeutics (United States)'),
(116210, 94722, 'en', 'name', 'EcoNexus'),
(116211, 94723, 'en', 'name', 'University of Information Technology'),
(116212, 94723, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ ThĆ“ng tin'),
(116213, 94724, 'en', 'name', 'Mudanya University'),
(116214, 94724, 'tr', 'name', 'Mudanya Üniversitesi'),
(116215, 94725, 'en', 'name', 'Ara Parseghian Medical Research Foundation'),
(116216, 94726, 'es', 'name', 'Mayagüez Medical Center'),
(116217, 94727, 'en', 'name', 'Prince Edward Island National Park'),
(116218, 94727, 'fr', 'name', 'Parc national de l''Ǝle-du-Prince-Ɖdouard'),
(116219, 94728, 'en', 'name', 'Shiga Medical Center'),
(116220, 94728, 'ja', 'name', 'ę»‹č³€åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(116221, 94729, 'fr', 'name', 'Chimie Organique, MƩdicinale et Extractive et Toxicologie ExpƩrimentale'),
(116222, 94730, 'en', 'name', 'Group Health Cooperative'),
(116223, 94731, 'en', 'name', 'Cotton Research and Development Corporation'),
(116224, 94732, 'en', 'name', 'European Parkinsons Disease Association'),
(116225, 94733, 'bg', 'name', 'ДъГ на Š•Š²Ń€Š¾ŠæŠµŠ¹ŃŠŗŠøŃ ŃŃŠŃŽŠ·'),
(116226, 94733, 'cs', 'name', 'Soudní dvůr Evropské unie'),
(116227, 94733, 'da', 'name', 'Den EuropƦiske Unions Domstol'),
(116228, 94733, 'de', 'name', 'Gerichtshof der EuropƤischen Union'),
(116229, 94733, 'el', 'name', 'Ī”Ī¹ĪŗĪ±ĻƒĻ„Ī®ĻĪ¹Īæ της Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĪ®Ļ‚ ĪˆĪ½Ļ‰ĻƒĪ·Ļ‚'),
(116230, 94733, 'en', 'name', 'Court of Justice of the European Union'),
(116231, 94733, 'es', 'name', 'Tribunal de Justicia de la Unión Europea'),
(116232, 94733, 'et', 'name', 'Euroopa Liidu Kohus'),
(116233, 94733, 'fi', 'name', 'Euroopan unionin tuomioistuin'),
(116234, 94733, 'fr', 'name', 'Cour de justice de l''Union europƩenne'),
(116235, 94733, 'ga', 'name', 'CĆŗirt BhreithiĆŗnais an Aontais Eorpaigh'),
(116236, 94733, 'hr', 'name', 'Sud Europske unije'),
(116237, 94733, 'hu', 'name', 'az Európai Unió BírósÔga'),
(116238, 94733, 'it', 'name', 'Corte di giustizia dell''Unione europea'),
(116239, 94733, 'lt', 'name', 'Europos Sąjungos Teisingumo Teismas'),
(116240, 94733, 'lv', 'name', 'Eiropas Savienības Tiesa'),
(116241, 94733, 'mt', 'name', 'Il-Qorti tal-Ä ustizzja tal-Unjoni Ewropea'),
(116242, 94733, 'nl', 'name', 'Hof van Justitie van de Europese Unie'),
(116243, 94733, 'pl', 'name', 'Trybunał Sprawiedliwości Unii Europejskiej'),
(116244, 94733, 'pt', 'name', 'Tribunal de Justiça da União Europeia'),
(116245, 94733, 'ro', 'name', 'Curtea de Justiție a Uniunii Europene'),
(116246, 94733, 'sk', 'name', 'Súdny dvor Európskej únie'),
(116247, 94733, 'sl', 'name', 'SodiŔče Evropske unije'),
(116248, 94733, 'sv', 'name', 'Europeiska unionens domstol'),
(116249, 94734, 'en', 'name', 'Saint Kitts and Nevis Bureau of Standards'),
(116250, 94735, 'en', 'name', 'NHL University of Applied Sciences'),
(116251, 94735, 'nl', 'name', 'NHL Hogeschool'),
(116252, 94736, 'en', 'name', 'WSB Merito University in Wroclaw'),
(116253, 94736, 'pl', 'name', 'Uniwersytet WSB Merito Wrocław'),
(116254, 94737, 'cs', 'name', 'Agentura Pro Zdravotnický Výzkum České Republiky'),
(116255, 94738, 'de', 'name', 'Botanische Staatssammlung München'),
(116256, 94739, 'fr', 'name', 'Institut Universitaire Quisqueya-AmƩrique'),
(116257, 94740, 'fr', 'name', 'Institut de Recherche Interdisciplinaire en Sciences Sociales'),
(116258, 94741, 'az', 'name', 'Azərbaycan Dƶvlət Neft və Sənaye Universiteti'),
(116259, 94741, 'en', 'name', 'Azerbaijan State Oil and Industry University'),
(116260, 94741, 'ru', 'name', 'AзербайГжанский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет ŠŠµŃ„Ń‚Šø Šø ŠŸŃ€Š¾Š¼Ń‹ŃˆŠ»ŠµŠ½Š½Š¾ŃŃ‚Šø'),
(116261, 94742, 'en', 'name', 'Institute of Public Administration'),
(116262, 94742, 'hr', 'name', 'Institut za javnu upravu'),
(116263, 94743, 'en', 'name', 'Ecology and Ecosystem Health'),
(116264, 94743, 'fr', 'name', 'Ɖcologie et santĆ© de l''Ć©cosystĆØme'),
(116265, 94744, 'en', 'name', 'Medicines Evaluation Board'),
(116266, 94744, 'nl', 'name', 'College ter Beoordeling van Geneesmiddelen'),
(116267, 94745, 'en', 'name', 'Digital Research Infrastructure for the Arts and Humanities'),
(116268, 94746, 'es', 'name', 'Instituto Nacional de Tecnología, Normalización y Metrología'),
(116269, 94747, 'de', 'name', 'Neue Materialien Fürth GmbH'),
(116270, 94748, 'de', 'name', 'Kirchliche Hochschule Wuppertal'),
(116271, 94749, 'fr', 'name', 'RƩseau QuƩbec maritime'),
(116272, 94750, 'en', 'name', 'European Genomic Institute for Diabetes'),
(116273, 94751, 'en', 'name', 'Catholic Kwandong University'),
(116274, 94751, 'ko', 'name', 'ź°€ķ†Øė¦­ź“€ė™ėŒ€ķ•™źµ'),
(116275, 94752, 'en', 'name', 'South Campus Community School'),
(116276, 94753, 'en', 'name', 'Edward Waters University'),
(116277, 94754, 'en', 'name', 'University of Timbuktu'),
(116278, 94755, 'no', 'name', 'Stortinget'),
(116279, 94756, 'no_lang_code', 'name', 'ProbaYes (France)'),
(116280, 94757, 'no_lang_code', 'name', 'Team HF'),
(116281, 94758, 'en', 'name', 'Hutton''s Shearwater Charitable Trust'),
(116282, 94759, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الجند Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(116283, 94759, 'en', 'name', 'Aljanad University for Science and Technology'),
(116284, 94760, 'en', 'name', 'University of Ljubljana'),
(116285, 94760, 'sl', 'name', 'Univerza v Ljubljani'),
(116286, 94761, 'en', 'name', 'NIHR Manchester Biomedical Research Centre'),
(116287, 94762, 'be', 'name', 'Š”Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŠŗŠ°Š¼Ń–Ń‚ŃŃ‚ па станГартызацыі Š ŃŃŠæŃƒŠ±Š»Ń–ŠŗŃ– Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(116288, 94762, 'en', 'name', 'State Committee for Standardization of the Republic of Belarus'),
(116289, 94762, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ комитет по станГартизации Республики Š‘ŠµŠ»Š°Ń€ŃƒŃŃŒ'),
(116290, 94763, 'en', 'name', 'National Space Activities Commission'),
(116291, 94763, 'es', 'name', 'Comisión Nacional de Actividades Espaciales'),
(116292, 94764, 'en', 'name', 'Institute of Applied Physics'),
(116293, 94764, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ приклаГной физики Российской акаГемии наук'),
(116294, 94765, 'de', 'name', 'Wasserstraßen-Neubauamt Magdeburg'),
(116295, 94766, 'en', 'name', 'Carlos III Hospital'),
(116296, 94767, 'en', 'name', 'Franciscan Missionaries of Our Lady University'),
(116297, 94768, 'en', 'name', 'Babel University Professional School of Translation'),
(116298, 94769, 'en', 'name', 'Hibernia College'),
(116299, 94770, 'en', 'name', 'Department for Infrastructure'),
(116300, 94771, 'en', 'name', 'Sohail University'),
(116301, 94772, 'de', 'name', 'Sachverständigenrat für Umweltfragen'),
(116302, 94773, 'en', 'name', 'Pfeiffer University at Charlotte'),
(116303, 94774, 'no_lang_code', 'name', 'ArianeGroup (France)'),
(116304, 94775, 'en', 'name', 'University of Tampere'),
(116305, 94775, 'fi', 'name', 'Tampereen yliopisto'),
(116306, 94775, 'sv', 'name', 'Tammerfors universitet'),
(116307, 94776, 'es', 'name', 'Instituto Multidisciplinario de BiologĆ­a Celular'),
(116308, 94777, 'en', 'name', 'Botswana Bureau of Standards'),
(116309, 94778, 'en', 'name', 'Center for MathematicaL studies and their Applications'),
(116310, 94778, 'fr', 'name', 'Centre de MathƩmatiques et de Leurs Applications'),
(116311, 94779, 'no_lang_code', 'name', 'Tunnell Consulting'),
(116312, 94780, 'de', 'name', 'Wasserstraßen- und Schifffahrtsamt Westdeutsche Kanäle'),
(116313, 94781, 'de', 'name', 'Verantwortung in der Wissenschaft'),
(116314, 94781, 'en', 'name', 'Federation of German Scientists'),
(116315, 94782, 'en', 'name', 'Mandai Wildlife Group'),
(116316, 94783, 'pt', 'name', 'Infarmed'),
(116317, 94784, 'en', 'name', 'Scott Christian University'),
(116318, 94785, 'en', 'name', 'American College of Rheumatology'),
(116319, 94786, 'en', 'name', 'Department of Agriculture and Rural Development'),
(116320, 94787, 'de', 'name', 'Stiftung Prof. Dr. Max Cloƫtta'),
(116321, 94787, 'en', 'name', 'Prof. Dr. Max Cloƫtta Foundation'),
(116322, 94787, 'fr', 'name', 'Fondation Prof. Dr. Max Cloƫtta'),
(116323, 94788, 'es', 'name', 'Universidad Autónoma de Guadalajara'),
(116324, 94789, 'no_lang_code', 'name', 'Vrana GmbH (Germany)'),
(116325, 94790, 'en', 'name', 'Kinship Conservation Fellows'),
(116326, 94791, 'en', 'name', 'National Research Fund Kenya'),
(116327, 94792, 'en', 'name', 'State Oceanic Administration'),
(116328, 94792, 'zh', 'name', '国家海擋局'),
(116329, 94793, 'en', 'name', 'Garut Institute of Technology'),
(116330, 94793, 'id', 'name', 'Institut Teknologi Garut'),
(116331, 94794, 'en', 'name', 'Linda Vista University'),
(116332, 94794, 'es', 'name', 'Universidad Linda Vista'),
(116333, 94795, 'no_lang_code', 'name', 'Tbilisi University Metekhi'),
(116334, 94796, 'en', 'name', 'American Graduate University'),
(116335, 94797, 'no_lang_code', 'name', 'Bioron'),
(116336, 94798, 'en', 'name', 'Medical Research Foundation'),
(116337, 94799, 'en', 'name', 'Dyersburg State Community College'),
(116338, 94800, 'en', 'name', 'The National Brain Appeal'),
(116339, 94801, 'en', 'name', 'Shebin Teaching Hospital'),
(116340, 94802, 'en', 'name', 'White Sands Test Facility'),
(116341, 94803, 'en', 'name', 'Infrared Processing and Analysis Center'),
(116342, 94804, 'en', 'name', 'Nuclear Organization and Oncogenesis'),
(116343, 94804, 'fr', 'name', 'Organisation Nucléaire et Oncogenèse'),
(116344, 94805, 'en', 'name', 'Jeonbuk National University'),
(116345, 94805, 'ko', 'name', 'ģ „ė¶ėŒ€ķ•™źµ'),
(116346, 94806, 'en', 'name', 'V.I. Il''ichev Pacific Oceanological Institute'),
(116347, 94806, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Тихоокеанский океанологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.И.Š˜Š»ŃŒŠøŃ‡ŠµŠ²Š° Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(116348, 94807, 'en', 'name', 'Central Louisiana Community College'),
(116349, 94808, 'it', 'name', 'Fondazione Ri.MED, Ri.MED'),
(116350, 94809, 'en', 'name', 'Hunan University of Traditional Chinese Medicine'),
(116351, 94809, 'zh', 'name', 'ę¹–å—äø­åŒ»čÆå¤§å­¦'),
(116352, 94810, 'en', 'name', 'Infocomm Media Development Authority'),
(116353, 94810, 'ms', 'name', 'Penguasa Pembangunan Infokom Media'),
(116354, 94810, 'zh', 'name', 'č³‡čØŠé€šäæ”åŖ’é«”ē™¼å±•å±€'),
(116355, 94811, 'en', 'name', 'Pacific Rim National Park Reserve'),
(116356, 94811, 'fr', 'name', 'RƩserve de parc national Pacific Rim'),
(116357, 94812, 'es', 'name', 'Universidad Interamericana de Costa Rica'),
(116358, 94813, 'en', 'name', 'Mayekawa Houonkai Foundation'),
(116359, 94813, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å‰å·å ±ę©ä¼š'),
(116360, 94814, 'de', 'name', 'Evangelisches Klinikum Niederrhei'),
(116361, 94815, 'no_lang_code', 'name', 'Arcadis (Czechia)'),
(116362, 94816, 'no_lang_code', 'name', 'Aptiv (France)'),
(116363, 94817, 'fr', 'name', 'UniversitƩ Cardinal Malula'),
(116364, 94818, 'en', 'name', 'Aoyama Hospital Tokyo Women’s Medical University'),
(116365, 94818, 'ja', 'name', 'ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦é™„å±žé’å±±ē—…é™¢'),
(116366, 94819, 'no_lang_code', 'name', 'SC IPA SA (Romania)'),
(116367, 94820, 'es', 'name', 'Universidad Loyola de AmƩrica'),
(116368, 94821, 'en', 'name', 'U.S. Geological Survey, Wetland and Aquatic Research Center'),
(116369, 94822, 'tr', 'name', 'Taksim Eğitim ve Araştırma Hastanesi'),
(116370, 94823, 'en', 'name', 'Polish Air Force Academy'),
(116371, 94823, 'pl', 'name', 'Wyższa Szkoła Oficerska Sił Powietrznych'),
(116372, 94824, 'en', 'name', 'Colorado Water Conservation Board'),
(116373, 94825, 'en', 'name', 'Geophysical Laboratory'),
(116374, 94826, 'en', 'name', 'Odessa National Maritime University'),
(116375, 94826, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Š¼Š¾Ń€ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116376, 94827, 'en', 'name', 'Arizona Game and Fish Department'),
(116377, 94828, 'es', 'name', 'Sociedad EspaƱola de Oncologƭa MƩdica'),
(116378, 94829, 'en', 'name', 'Texas Tech University'),
(116379, 94830, 'es', 'name', 'Fundación Bancaria Caixa d’Estalvis i Pensions de Barcelona'),
(116380, 94831, 'en', 'name', 'Tibet Autonomous Region Science and Technology Agency'),
(116381, 94831, 'zh', 'name', 'č„æč—č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(116382, 94832, 'de', 'name', 'Kanton Aargau'),
(116383, 94832, 'en', 'name', 'Canton of Argau'),
(116384, 94832, 'fr', 'name', 'Canton d''Argovie'),
(116385, 94833, 'en', 'name', 'National Institute on Disability, Independent Living, and Rehabilitation Research'),
(116386, 94834, 'en', 'name', 'Savonlinna Central Hospital'),
(116387, 94834, 'fi', 'name', 'Savonlinnan keskussairaala'),
(116388, 94835, 'en', 'name', 'European University of Tirana'),
(116389, 94835, 'sq', 'name', 'Universiteti Europian i Tiranƫs'),
(116390, 94836, 'en', 'name', 'University of Islamic Studies'),
(116391, 94837, 'en', 'name', 'Berkeley Public Health Division'),
(116392, 94838, 'en', 'name', 'Richard Lounsbery Foundation'),
(116393, 94838, 'fr', 'name', 'Fondation Richard-Lounsbery'),
(116394, 94839, 'en', 'name', 'Regional Research Centres'),
(116395, 94839, 'ru', 'name', 'Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Šµ Š½Š°ŃƒŃ‡Š½Ń‹Šµ центры Российской акаГемии наук'),
(116396, 94840, 'en', 'name', 'National Library of Poland'),
(116397, 94840, 'pl', 'name', 'Biblioteka Narodowa'),
(116398, 94841, 'fr', 'name', 'IPC – FacultĆ©s Libres de Philosophie et de Psychologie'),
(116399, 94842, 'en', 'name', 'Dana-Farber Brigham Cancer Center'),
(116400, 94843, 'en', 'name', 'Research & Development Corporation'),
(116401, 94844, 'fr', 'name', 'Philosophie, Histoire et Analyse des ReprĆ©sentations Ɖconomiques'),
(116402, 94845, 'en', 'name', 'Kluane National Park and Reserve'),
(116403, 94845, 'fr', 'name', 'Parc national et rƩserve de parc national Kluane'),
(116404, 94846, 'en', 'name', 'Gulf Coast Ecosystem Restoration Council'),
(116405, 94847, 'es', 'name', 'Universidad Potosina'),
(116406, 94848, 'no_lang_code', 'name', 'Repros Therapeutics (United States)'),
(116407, 94849, 'en', 'name', 'French Agency for Ecological Transition'),
(116408, 94849, 'fr', 'name', 'Agence de la transition Ʃcologique'),
(116409, 94850, 'en', 'name', 'Ministry of Energy'),
(116410, 94850, 'he', 'name', '×ž×©×Ø×“ התשתיות ×”×œ××•×ž×™×•×Ŗ, האנרגיה והמים'),
(116411, 94851, 'de', 'name', 'Institut für Oberflächen- und Schichtanalytik GmbH'),
(116412, 94852, 'de', 'name', 'Institut für Angewandte Sprachforschung'),
(116413, 94852, 'en', 'name', 'Institute for Applied Linguistics'),
(116414, 94852, 'it', 'name', 'Istituto di linguistica applicata'),
(116415, 94853, 'no_lang_code', 'name', 'Boehringer Ingelheim (Spain)'),
(116416, 94854, 'de', 'name', 'Institut für Ostrecht'),
(116417, 94854, 'en', 'name', 'Institute for East European Law'),
(116418, 94855, 'en', 'name', 'Westpac Scholars Trust'),
(116419, 94856, 'en', 'name', 'Gƶran Gustafsson Foundation'),
(116420, 94857, 'en', 'name', 'Food Packaging Forum Foundation'),
(116421, 94858, 'en', 'name', 'Division of Research on Learning in Formal and Informal Settings'),
(116422, 94859, 'en', 'name', 'International Union Against Tuberculosis and Lung Disease'),
(116423, 94860, 'es', 'name', 'Universidad de Ciencias MƩdicas de Cienfuegos'),
(116424, 94861, 'en', 'name', 'Sant Gadge Baba Amravati University'),
(116425, 94861, 'hi', 'name', 'ą¤…ą¤®ą¤°ą¤¾ą¤µą¤¤ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(116426, 94862, 'no_lang_code', 'name', 'Berkeley Systems (United States)'),
(116427, 94863, 'en', 'name', 'Swedish American Hospital'),
(116428, 94864, 'en', 'name', 'Australasian Lung Cancer Trials Group'),
(116429, 94865, 'en', 'name', 'Chinese Society of Clinical Oncology'),
(116430, 94865, 'zh', 'name', 'äø­å›½äø“åŗŠč‚æē˜¤å­¦ä¼š'),
(116431, 94866, 'es', 'name', 'Centro de Investigación de Polímeros Avanzados'),
(116432, 94867, 'en', 'name', 'Tashkent Medical Academy'),
(116433, 94867, 'uz', 'name', 'Toshkent Tibbiyot Akademiyasi'),
(116434, 94868, 'en', 'name', 'City of Liverpool College, Liverpool Community College'),
(116435, 94869, 'cs', 'name', 'Muzeum střednĆ­ho PootavĆ­ Strakonice'),
(116436, 94869, 'en', 'name', 'Museum of Bagpipes in Strakonice'),
(116437, 94870, 'en', 'name', 'Australian Society of Herpetologists'),
(116438, 94871, 'en', 'name', 'Edmonton Community Foundation'),
(116439, 94872, 'en', 'name', 'North York General Hospital'),
(116440, 94873, 'en', 'name', 'Naval Academy'),
(116441, 94873, 'tr', 'name', 'Deniz Harp Okulu'),
(116442, 94874, 'en', 'name', 'Quitman County School District'),
(116443, 94875, 'en', 'name', 'Fraunhofer USA Center Mid-Atlantic CMA'),
(116444, 94876, 'en', 'name', 'Colorado Mountain Club Foundation'),
(116445, 94877, 'en', 'name', 'National Institute of Radiological Sciences'),
(116446, 94877, 'ja', 'name', 'ę”¾å°„ē·šåŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(116447, 94878, 'en', 'name', 'Iowa Department of Transportation'),
(116448, 94879, 'no_lang_code', 'name', 'Nexans (United States)'),
(116449, 94880, 'bg', 'name', 'Европейско висше ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ по икономика Šø Š¼ŠµŠ½ŠøŠ“Š¶Š¼ŃŠŠ½Ń‚'),
(116450, 94880, 'en', 'name', 'European College of Economics and Management'),
(116451, 94881, 'en', 'name', 'Durst Group AG (Italy)'),
(116452, 94882, 'da', 'name', 'Hartmann Fonden'),
(116453, 94883, 'cs', 'name', 'ČeskÔ asociace ergoterapeutů'),
(116454, 94883, 'en', 'name', 'Czech Association of Occupational Therapists'),
(116455, 94884, 'no_lang_code', 'name', 'HREA'),
(116456, 94885, 'en', 'name', 'Vancouver Film School'),
(116457, 94886, 'en', 'name', 'Tajikistan Humanitarian International University'),
(116458, 94887, 'de', 'name', 'Zeppelin Universität, Zeppelin Universität gemeinnützige GmbH'),
(116459, 94888, 'el', 'name', 'Ī•ĪøĪ½Ī¹ĪŗĻŒ Δίκτυο Ī„Ļ€ĪæĪ“ĪæĪ¼ĻŽĪ½ Τεχνολογίας και ĪˆĻĪµĻ…Ī½Ī±Ļ‚ Ī‘.Ī•. – GRNET'),
(116460, 94888, 'no_lang_code', 'name', 'National Infrastructures for Research and Technology -  GRNET S.A'),
(116461, 94889, 'ar', 'name', 'المعهد Ų§Ł„ŲØŲ§ŲØŁˆŁŠ للدراسات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© ŁˆŲ§Ł„Ų§Ų³Ł„Ų§Ł…ŁŠ'),
(116462, 94889, 'en', 'name', 'Pontifical Institute for Arabic and Islamic Studies'),
(116463, 94889, 'fr', 'name', 'Institut Pontifical d’Études Arabes et d’Islamologie'),
(116464, 94889, 'it', 'name', 'Pontificio Istituto di Studi e d''Islamitica'),
(116465, 94890, 'id', 'name', 'Institut Teknologi PLN'),
(116466, 94891, 'fr', 'name', 'ISTOM - Ɖcole supĆ©rieure d''agro-dĆ©veloppement international'),
(116467, 94892, 'en', 'name', 'Center for Policy Analysis'),
(116468, 94893, 'no_lang_code', 'name', 'Clinical Gene Networks (Sweden)'),
(116469, 94894, 'en', 'name', 'Eastern Shore Community College'),
(116470, 94895, 'de', 'name', 'Staatliche Naturwissenschaftliche Sammlungen Bayerns'),
(116471, 94895, 'en', 'name', 'Bavarian Natural History Collections'),
(116472, 94896, 'pt', 'name', 'CETESB - Companhia Ambiental do Estado de SĆ£o Paulo'),
(116473, 94897, 'fr', 'name', 'Plateforme d''information et de services pour les maladies rares et les mƩdicaments orphelins'),
(116474, 94898, 'en', 'name', 'Administration for Strategic Preparedness and Response'),
(116475, 94899, 'en', 'name', 'National University Health System'),
(116476, 94899, 'zh', 'name', 'å›½ē«‹å¤§å­¦åŒ»å­¦ē»„ē»‡'),
(116477, 94900, 'en', 'name', 'Negaunee Foundation'),
(116478, 94901, 'fi', 'name', 'Maanmittauslaitos'),
(116479, 94902, 'en', 'name', 'Artha Wacana Christian University'),
(116480, 94902, 'id', 'name', 'Universitas Kristen Artha Wacana'),
(116481, 94903, 'en', 'name', 'Peter G. Peterson Foundation'),
(116482, 94904, 'en', 'name', 'National Institute Of Blood Disease and Bone Marrow Transplantation'),
(116483, 94905, 'cs', 'name', 'ĆšÅ™ad prÅÆmyslovĆ©ho vlastnictvĆ­'),
(116484, 94905, 'en', 'name', 'Industrial Property Office'),
(116485, 94906, 'de', 'name', 'German BioImaging – Gesellschaft für Mikroskopie und Bildanalyse'),
(116486, 94906, 'en', 'name', 'German BioImaging – Society for Microscopy and Image Analysis'),
(116487, 94907, 'no_lang_code', 'name', 'Bioptigen (United States)'),
(116488, 94908, 'fr', 'name', 'Bureau des Longitudes'),
(116489, 94909, 'en', 'name', 'Kunming Municipal Hospital of Traditional Chinese Medicine'),
(116490, 94910, 'fr', 'name', 'Terres Australes et Antarctiques FranƧaises'),
(116491, 94911, 'en', 'name', 'Ministry of Foreign Affairs and Trade'),
(116492, 94911, 'mi', 'name', 'Manatū Aorere'),
(116493, 94912, 'de', 'name', 'Leibniz-Institut für Angewandte Geophysik'),
(116494, 94912, 'en', 'name', 'Leibniz Institute for Applied Geophysics'),
(116495, 94913, 'en', 'name', 'General Directorate of Metrology and Calibration'),
(116496, 94913, 'sq', 'name', 'Drejtoria e Pƫrgjithshme e Metrologjisƫ'),
(116497, 94914, 'en', 'name', 'PerifƩria Policy and Research Center'),
(116498, 94914, 'hu', 'name', 'Periféria Közpolitikai és Kutatóközpont'),
(116499, 94915, 'en', 'name', 'UT Health Austin'),
(116500, 94916, 'en', 'name', 'Maine Department of Transportation'),
(116501, 94917, 'en', 'name', 'NOAA Office for Coastal Management'),
(116502, 94918, 'no_lang_code', 'name', 'Anax Laboratories (India)'),
(116503, 94919, 'en', 'name', 'American Institute of Architecture Students'),
(116504, 94920, 'es', 'name', 'Ministerio de Cultura y Deporte'),
(116505, 94921, 'no_lang_code', 'name', 'Osram Opto Semiconductors'),
(116506, 94922, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪˆĻĪµĻ…Ī½Ī±Ļ‚ & ĪšĪ±Ī¹Ī½ĪæĻ„ĪæĪ¼ĪÆĪ±Ļ‚'),
(116507, 94922, 'en', 'name', 'Hellenic Foundation for Research and Innovation'),
(116508, 94923, 'en', 'name', 'International Communication Association'),
(116509, 94924, 'en', 'name', 'Cystinosis Ireland'),
(116510, 94925, 'es', 'name', 'Fundación de Historia Natural Félix de Azara'),
(116511, 94926, 'en', 'name', 'The Kempe Foundation'),
(116512, 94927, 'no_lang_code', 'name', 'Onex (United States)'),
(116513, 94928, 'pt', 'name', 'Conselho Nacional das FundaƧƵes Estaduais de Amparo Ơ Pesquisa'),
(116514, 94929, 'en', 'name', 'Shanxi Science and Technology Department'),
(116515, 94930, 'fr', 'name', 'Physiopathologie, cibles et thérapies de la polyarthrite rhumatoïde'),
(116516, 94931, 'en', 'name', 'Merle Chambers Fund'),
(116517, 94932, 'af', 'name', 'Suid-Afrikaanse Vereeniging vir Dierkunde'),
(116518, 94932, 'en', 'name', 'South African Society for Animal Science'),
(116519, 94933, 'en', 'name', 'National Wildlife Research Center'),
(116520, 94934, 'en', 'name', 'Uniting Against Lung Cancer'),
(116521, 94935, 'en', 'name', 'Statistical Service'),
(116522, 94935, 'tr', 'name', 'İstatistiki Servis'),
(116523, 94936, 'ro', 'name', 'Universitatea Europeană Drăgan'),
(116524, 94937, 'es', 'name', 'Instituto Cubano de Oftalmología "Ramón Pando Ferrer"'),
(116525, 94938, 'fr', 'name', 'LAMO - LittƩratures Antiques et Modernes'),
(116526, 94939, 'en', 'name', 'Allen Institute for Artificial Intelligence'),
(116527, 94940, 'en', 'name', 'University of Montevideo'),
(116528, 94940, 'es', 'name', 'Universidad de Montevideo'),
(116529, 94941, 'de', 'name', 'Deutsche Gesellschaft für Psychologie e.V. (DGPs)'),
(116530, 94942, 'no_lang_code', 'name', 'Bodycote (United Kingdom)'),
(116531, 94943, 'no_lang_code', 'name', 'Vita Nuova (United Kingdom)'),
(116532, 94944, 'en', 'name', 'Bureau of Standards, Metrology and Inspection'),
(116533, 94944, 'zh', 'name', 'ē¶“ęæŸéƒØęØ™ęŗ–ęŖ¢é©—å±€'),
(116534, 94945, 'fi', 'name', 'TYKS-sƤƤtiƶ'),
(116535, 94946, 'en', 'name', 'Nursing Research, Innovation and Development Centre of Lisbon'),
(116536, 94946, 'pt', 'name', 'Centro de Investigação, Inovação e Desenvolvimento em Enfermagem de Lisboa'),
(116537, 94947, 'en', 'name', 'Minnesota Department of Labor and Industry'),
(116538, 94948, 'en', 'name', 'BAND foundation'),
(116539, 94949, 'cs', 'name', 'Moravskoslezský kraj'),
(116540, 94949, 'no_lang_code', 'name', 'Moravian-Silesian Region'),
(116541, 94950, 'no_lang_code', 'name', 'Amgen (China)'),
(116542, 94951, 'id', 'name', 'Rumah Sakit Umum Pusat Dr. Sardjito'),
(116543, 94952, 'fr', 'name', 'Optimisation ThƩrapeutique en Neuropsychopharmacologie'),
(116544, 94953, 'en', 'name', 'Seton Healthcare Family'),
(116545, 94954, 'en', 'name', 'Hope Africa University'),
(116546, 94954, 'fr', 'name', 'UniversitƩ Espoir d''Afrique'),
(116547, 94955, 'en', 'name', 'Georgian National Agency for Standards and Metrology'),
(116548, 94955, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒ¢įƒįƒœįƒ“įƒįƒ įƒ¢įƒ”įƒ‘įƒ˜ įƒ“įƒ įƒ›įƒ”įƒ¢įƒ įƒįƒšįƒįƒ’įƒ˜įƒ'),
(116549, 94956, 'no_lang_code', 'name', 'RƩseau FerrƩ de France (France)'),
(116550, 94957, 'en', 'name', 'Technological University Bhamo'),
(116551, 94958, 'de', 'name', 'Freistaat Thüringen'),
(116552, 94959, 'en', 'name', 'The US Oncology Network'),
(116553, 94960, 'en', 'name', 'Animal Health Research Institute'),
(116554, 94961, 'de', 'name', 'Wasserstraßen-Neubauamt Heidelberg'),
(116555, 94962, 'no_lang_code', 'name', 'Inprentus (United States)'),
(116556, 94963, 'en', 'name', 'University Physicians'),
(116557, 94964, 'fr', 'name', 'Centre Technique Industriel de la Plasturgie et des Composites'),
(116558, 94965, 'ja', 'name', 'å®‡éƒØčˆˆē”£ę Ŗå¼ä¼šē¤¾'),
(116559, 94965, 'no_lang_code', 'name', 'Ube (Japan)'),
(116560, 94966, 'en', 'name', 'Society for Science at User Research Facilities'),
(116561, 94967, 'en', 'name', 'Keck Institute for Space Studies'),
(116562, 94968, 'no_lang_code', 'name', 'Amcor (Germany)'),
(116563, 94969, 'en', 'name', 'Soroti University'),
(116564, 94970, 'de', 'name', 'Fraunhofer-Institut für Gießerei-, Composite- und Verarbeitungstechnik IGCV'),
(116565, 94970, 'en', 'name', 'Fraunhofer Institute for Casting, Composite and Processing Technology IGCV'),
(116566, 94971, 'no_lang_code', 'name', 'Khemarak University'),
(116567, 94972, 'it', 'name', 'Fondazione Cassa di Risparmio di Puglia, Fondazione Puglia'),
(116568, 94973, 'de', 'name', 'Stiftung Vinetum'),
(116569, 94973, 'fr', 'name', 'Fondation Vinetum'),
(116570, 94974, 'en', 'name', 'Centre for Conservation and Research'),
(116571, 94975, 'fr', 'name', 'Telecom SudParis'),
(116572, 94976, 'es', 'name', 'Voces de la educación'),
(116573, 94977, 'es', 'name', 'Hospital ClĆ­nico Universitario Virgen de la Victoria'),
(116574, 94978, 'no_lang_code', 'name', 'Latécoère (Czechia)'),
(116575, 94979, 'no_lang_code', 'name', 'Interventi Geo Ambientali (Italy)'),
(116576, 94980, 'it', 'name', 'Rassegna Sindacale'),
(116577, 94981, 'ja', 'name', 'åø‚ē«‹ē ŗę³¢ē·åˆē—…é™¢'),
(116578, 94981, 'no_lang_code', 'name', 'Tonami General Hospital'),
(116579, 94982, 'fr', 'name', 'Fondation SantƩ des Ʃtudiants de France'),
(116580, 94983, 'en', 'name', 'St. Mary''s University'),
(116581, 94984, 'no_lang_code', 'name', 'Berkenhoff (Germany)'),
(116582, 94985, 'en', 'name', 'Ansgar University College'),
(116583, 94985, 'no', 'name', 'Ansgar hĆøyskole'),
(116584, 94986, 'es', 'name', 'Universidad San Anselmo de Canterbury'),
(116585, 94987, 'fr', 'name', 'Laboratoire de Chimie et Physique - Approche Multi-Ʃchelle des Milieux Complexes'),
(116586, 94988, 'en', 'name', 'Massachusetts Office of Coastal Zone Management'),
(116587, 94989, 'en', 'name', 'Australasian Systematic Botany Society'),
(116588, 94990, 'es', 'name', 'Escuela Superior de Comercio Manuel Belgrano'),
(116589, 94991, 'en', 'name', 'Provincial University of Cordoba'),
(116590, 94991, 'es', 'name', 'Universidad Provincial de Córdoba'),
(116591, 94992, 'no_lang_code', 'name', 'Hill''s Pet Nutrition (United States)'),
(116592, 94993, 'en', 'name', 'Maulana Mukhtar Ahmad Nadvi Technical Campus'),
(116593, 94994, 'cs', 'name', 'StĆ”tnĆ­ zemědělskĆ” a potravinÔřskĆ” inspekce'),
(116594, 94994, 'en', 'name', 'Czech Agriculture and Food Inspection Authority'),
(116595, 94995, 'en', 'name', 'Western Macedonia University Of Applied Science'),
(116596, 94996, 'en', 'name', 'Max Planck Graduate Center'),
(116597, 94997, 'de', 'name', 'Vector Stiftung'),
(116598, 94998, 'fr', 'name', 'AcadƩmie de Grenoble'),
(116599, 94999, 'no_lang_code', 'name', 'JSC Viorica-Cosmetic (Moldova)'),
(116600, 94999, 'ro', 'name', 'S.A. ā€žVIORICA-COSMETICā€'),
(116601, 94999, 'ru', 'name', 'А.Šž. Ā«VIORICA-COSMETICĀ»'),
(116602, 95000, 'es', 'name', 'Centro Científico Tecnológico Mar del Plata'),
(116603, 95001, 'en', 'name', 'Electronic Navigation Research Institute'),
(116604, 95001, 'ja', 'name', 'é›»å­čˆŖę³•ē ”ē©¶ę‰€'),
(116605, 95002, 'en', 'name', 'Techniques of Informatics and Microelectronics for Integrated Systems Architecture'),
(116606, 95002, 'fr', 'name', 'Techniques de l''Informatique et de la Microélectronique pour l''Architecture des Systèmes Intégrés'),
(116607, 95003, 'en', 'name', 'State Key Laboratory of Wireless Communication Access Technology'),
(116608, 95003, 'zh', 'name', 'ę— ēŗæé€šäæ”ęŽ„å…„ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116609, 95004, 'fr', 'name', 'Centre d''Etudes sur le DƩveloppement des Territoires et Environnement'),
(116610, 95005, 'en', 'name', 'Mary Lyon Centre at MRC Harwell'),
(116611, 95006, 'nl', 'name', 'Alliade'),
(116612, 95007, 'no_lang_code', 'name', 'GMV Innovating Solutions (Spain)'),
(116613, 95008, 'de', 'name', 'Niedersächsisches Ministerium für Umwelt, Energie und Klimaschutz'),
(116614, 95009, 'en', 'name', 'NSW Department of Planning and Environment'),
(116615, 95010, 'en', 'name', 'Department of Science and Technology, Government of Rajasthan'),
(116616, 95011, 'en', 'name', 'Bellvitge Biomedical Research Institute'),
(116617, 95011, 'es', 'name', 'Institut d''Investigació Biomédica de Bellvitge'),
(116618, 95012, 'en', 'name', 'Japan Science and Technology Agency'),
(116619, 95012, 'ja', 'name', 'ē§‘å­¦ęŠ€č”“ęŒÆčˆˆę©Ÿę§‹'),
(116620, 95013, 'en', 'name', 'State Key Laboratory of Virtual Reality Technology and Systems'),
(116621, 95013, 'zh', 'name', 'č™šę‹ŸēŽ°å®žęŠ€ęœÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116622, 95014, 'fr', 'name', 'Laboratoire de Linguistique de Nantes'),
(116623, 95015, 'el', 'name', 'Ī‘Ī½ĻŽĻ„Ī±Ļ„Īæ Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ανατολικής ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚ και Ī˜ĻĪ¬ĪŗĪ·Ļ‚'),
(116624, 95015, 'en', 'name', 'Technological Educational Institute of Eastern Macedonia and Thrace'),
(116625, 95016, 'no_lang_code', 'name', 'DIESSE Diagnostica Senese S.p.A. SocietĆ  Benefit (Italy)'),
(116626, 95017, 'en', 'name', 'Bordeaux Plurithematic Clinical Research Center'),
(116627, 95017, 'fr', 'name', 'Centre d''Investigation Clinique PlurithƩmatique de Bordeaux'),
(116628, 95018, 'en', 'name', 'Nagao Natural Environment Foundation'),
(116629, 95019, 'ca', 'name', 'Universitat Laboral de Còrdova'),
(116630, 95019, 'es', 'name', 'Universidad Laboral de Córdoba'),
(116631, 95020, 'en', 'name', 'WCRP-CMIP International Project Office'),
(116632, 95021, 'no_lang_code', 'name', 'GEOMAR Technologie GmbH - GTG'),
(116633, 95022, 'en', 'name', 'National Health Care Institute'),
(116634, 95022, 'nl', 'name', 'Zorginstituut Nederland'),
(116635, 95023, 'fr', 'name', 'Groupe de Recherche sur le Handicap Ventilatoire et Neurologique'),
(116636, 95024, 'en', 'name', 'State Key Laboratory of Surface Physics'),
(116637, 95024, 'zh', 'name', 'åŗ”ē”Øč”Øé¢ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116638, 95025, 'es', 'name', 'Instituto de Neurociencias'),
(116639, 95026, 'de', 'name', 'Universitäts-Kinderklinik Würzburg'),
(116640, 95027, 'en', 'name', 'Jawzjan University'),
(116641, 95027, 'ps', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† Ų¬ŁˆŲ²Ų¬Ų§Ł†'),
(116642, 95028, 'no_lang_code', 'name', 'Fuwai Yunnan Cardiovascular Hospital'),
(116643, 95028, 'zh', 'name', 'äŗ‘å—ēœé˜œå¤–åæƒč”€ē®”ē—…åŒ»é™¢'),
(116644, 95029, 'no_lang_code', 'name', 'Alcon (United States)'),
(116645, 95030, 'en', 'name', 'Education University of Hong Kong'),
(116646, 95030, 'zh', 'name', '香港教育大學'),
(116647, 95031, 'fr', 'name', 'Centre Interuniversitaire de MicroElectronique et Nanotechnologies'),
(116648, 95032, 'en', 'name', '52°North Spatial Information Research'),
(116649, 95033, 'es', 'name', 'SUR Escuela de Artes y Profesiones ArtĆ­sticas'),
(116650, 95034, 'en', 'name', 'Vision Institute'),
(116651, 95034, 'fr', 'name', 'Institut de la Vision'),
(116652, 95035, 'en', 'name', 'NOAA National Hurricane Center'),
(116653, 95036, 'en', 'name', 'Office of Advanced Scientific Computing Research'),
(116654, 95037, 'en', 'name', 'Fractionnation of AgroResources and Environment'),
(116655, 95037, 'fr', 'name', 'Fractionnement des AgroRessources et Environnement'),
(116656, 95038, 'en', 'name', 'Catanduanes State University'),
(116657, 95039, 'es', 'name', 'Innovatec (Spain), Sociedad Para El Fomento De La Innovacion Tecnologica Sl'),
(116658, 95040, 'en', 'name', 'Cooperative Programs for the Advancement of Earth system science'),
(116659, 95041, 'en', 'name', 'Institute of Genetics and Molecular and Cellular Biology'),
(116660, 95041, 'fr', 'name', 'Institut de gƩnƩtique et de biologie molƩculaire et cellulaire'),
(116661, 95042, 'en', 'name', 'Neurodegeneratives Diseases Institute'),
(116662, 95042, 'fr', 'name', 'Institut des Maladies NeurodƩgƩnƩratives'),
(116663, 95043, 'en', 'name', 'State Key Laboratory of Energy Conservation for Air Conditioning Equipment and System Operation'),
(116664, 95043, 'zh', 'name', 'ē©ŗč°ƒč®¾å¤‡åŠē³»ē»Ÿčæč”ŒčŠ‚čƒ½å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116665, 95044, 'en', 'name', 'Research Network on Electrochemical Energy Storage'),
(116666, 95044, 'fr', 'name', 'RƩseau sur le Stockage Electrochimique de l''Ʃnergie'),
(116667, 95045, 'en', 'name', 'UK Research and Innovation'),
(116668, 95046, 'en', 'name', 'Laboratory of Integrative Biology of Marine Model'),
(116669, 95046, 'fr', 'name', 'Laboratoire de Biologie Intégrative des Modèles Marins'),
(116670, 95047, 'ca', 'name', 'Centre Tecnologic de Telecomunicacions de Catalunya'),
(116671, 95048, 'en', 'name', 'NIH Common Fund'),
(116672, 95049, 'en', 'name', 'MRC Clinical Trials Unit at UCL'),
(116673, 95050, 'ar', 'name', 'مساحتِ پاکستان'),
(116674, 95050, 'en', 'name', 'Survey of Pakistan'),
(116675, 95051, 'en', 'name', 'Undersea Warfighting Development Center'),
(116676, 95052, 'en', 'name', 'Birla Institute of Technology and Science, Pilani'),
(116677, 95052, 'hi', 'name', 'बिरला ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(116678, 95052, 'ml', 'name', 'ą“¬ą“æąµ¼ą“³ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“†ą“Øąµą“±ąµ ą“øą“Æąµ»ą“øąµ'),
(116679, 95052, 'mr', 'name', 'ą¤¬ą¤æą¤°ą„ą¤²ą¤¾ ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€ अँऔ ą¤øą¤¾ą¤Æą¤Øą„ą¤ø'),
(116680, 95052, 'pa', 'name', 'ਬਿਰਲਾ ąØ¤ąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€ ਅਤੇ ਵਿਗਿਆਨ ਸੰਸ਄ਾ'),
(116681, 95052, 'ta', 'name', 'ą®Ŗą®æą®°ąÆą®²ą®¾ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®®ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(116682, 95052, 'te', 'name', 'ą°¬ą°æą°Ÿą±ą°øą± పిలానీ'),
(116683, 95053, 'en', 'name', 'WWF Tanzania'),
(116684, 95054, 'fr', 'name', 'Biologie du chloroplaste et perception de la lumiĆØre chez les micro-algues'),
(116685, 95055, 'no_lang_code', 'name', 'Parsons (United States)'),
(116686, 95056, 'ca', 'name', 'IrsiCaixa'),
(116687, 95057, 'en', 'name', 'MSB Medical School Berlin'),
(116688, 95058, 'en', 'name', 'State Key Laboratory of Industrial Automation Systems and Process Equipment Technology'),
(116689, 95058, 'zh', 'name', 'ę··åˆęµēØ‹å·„äøšč‡ŖåŠØåŒ–ē³»ē»ŸåŠč£…å¤‡ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116690, 95059, 'en', 'name', 'China Astronaut Research and Training Center'),
(116691, 95059, 'zh', 'name', 'äø­å›½čˆŖå¤©å‘˜ē§‘ē ”č®­ē»ƒäø­åæƒ'),
(116692, 95060, 'fr', 'name', 'PĆ“le de Recherche et d’Enseignement SupĆ©rieur Sorbonne Paris CitĆ©, Sorbonne Paris CitĆ©'),
(116693, 95061, 'fr', 'name', 'Institut des Sciences Analytiques et de Physico-Chimie pour l''Environnement et les MatƩriaux'),
(116694, 95062, 'en', 'name', 'Federal University of ItajubĆ”'),
(116695, 95062, 'pt', 'name', 'Universidade Federal de ItajubĆ”'),
(116696, 95063, 'no_lang_code', 'name', 'Vicomtech'),
(116697, 95064, 'en', 'name', 'Zhaotong University'),
(116698, 95064, 'zh', 'name', 'ę˜­é€šå­¦é™¢'),
(116699, 95065, 'en', 'name', 'Biology and Genetics of Plant-Pathogen Interactions'),
(116700, 95065, 'fr', 'name', 'Biologie et GƩnƩtique des Interactions Plante-Parasite'),
(116701, 95066, 'en', 'name', 'Australian Biological Resources Study'),
(116702, 95067, 'en', 'name', 'Tula Foundation'),
(116703, 95068, 'no_lang_code', 'name', 'Ningxia Forestry Research Institute Co., Ltd. (China)'),
(116704, 95068, 'zh', 'name', 'å®å¤ęž—äøšē ”ē©¶é™¢č‚”ä»½ęœ‰é™å…¬åø'),
(116705, 95069, 'cu', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по роботика'),
(116706, 95069, 'en', 'name', 'Institute of Robotics'),
(116707, 95070, 'en', 'name', 'Genomes and Cell Biology Diseases'),
(116708, 95070, 'fr', 'name', 'GƩnomes, biologie cellulaire et thƩrapeutiques'),
(116709, 95071, 'en', 'name', 'Queen Margaret University'),
(116710, 95072, 'en', 'name', 'Guts UK'),
(116711, 95073, 'es', 'name', 'Universidad de las AmƩricas'),
(116712, 95074, 'en', 'name', 'SIB Swiss Institute of Bioinformatics'),
(116713, 95075, 'en', 'name', 'OHSU Knight Cancer Institute'),
(116714, 95076, 'en', 'name', 'Institute of Chemical Synthesis and Homogeneous Catalysis'),
(116715, 95076, 'es', 'name', 'Instituto de Sƭntesis Quƭmica y CatƔlisis HomogƩnea'),
(116716, 95077, 'no_lang_code', 'name', 'Kuang-Chi (China)'),
(116717, 95077, 'zh', 'name', '光志'),
(116718, 95078, 'en', 'name', 'Federal University of Technology of ParanĆ”'),
(116719, 95078, 'pt', 'name', 'Universidade Tecnológica Federal do ParanÔ'),
(116720, 95079, 'en', 'name', 'Institute of Optics "Daza de ValdƩs"'),
(116721, 95079, 'es', 'name', 'Instituto de Ɠptica "Daza de ValdĆ©s"'),
(116722, 95080, 'de', 'name', 'UniversitƤtsklinikum Erlangen'),
(116723, 95080, 'en', 'name', 'University Hospital Erlangen'),
(116724, 95081, 'en', 'name', 'Dai Nam University'),
(116725, 95082, 'en', 'name', 'State Key Laboratory of Diagnosis and Treatment of Infectious Diseases'),
(116726, 95082, 'zh', 'name', 'ä¼ ęŸ“ē—…čÆŠę²»å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116727, 95083, 'en', 'name', 'Legislative-Citizen Commission on Minnesota Resources'),
(116728, 95084, 'no_lang_code', 'name', 'Zama (France)'),
(116729, 95085, 'en', 'name', 'National Gulf War Resource Center'),
(116730, 95086, 'en', 'name', 'North Pacific International University of Bangladesh'),
(116731, 95087, 'nl', 'name', 'Gieskes-Strijbis Fonds'),
(116732, 95088, 'en', 'name', 'Central European Society for Anticancer Drug Research'),
(116733, 95089, 'en', 'name', 'State Key Laboratory of Agricultural Microbiology'),
(116734, 95089, 'zh', 'name', 'å†œäøšå¾®ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116735, 95090, 'fr', 'name', 'Ɖcole nationale supĆ©rieure Louis-LumiĆØre'),
(116736, 95091, 'en', 'name', 'State Key Laboratory of Ophthalmology'),
(116737, 95091, 'zh', 'name', 'ēœ¼ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116738, 95092, 'en', 'name', 'China University of Mining and Technology - Beijing'),
(116739, 95092, 'zh', 'name', 'äø­å›½ēŸæäøšå¤§å­¦ļ¼ˆåŒ—äŗ¬ļ¼‰'),
(116740, 95093, 'de', 'name', 'Wissenschaftsrat'),
(116741, 95093, 'en', 'name', 'German Science and Humanities Council'),
(116742, 95094, 'en', 'name', 'Chinese Academy of Tropical Agricultural Sciences'),
(116743, 95094, 'zh', 'name', 'äø­å›½ēƒ­åø¦å†œäøšē§‘å­¦é™¢'),
(116744, 95095, 'en', 'name', 'School of Plastic Arts of Puerto Rico'),
(116745, 95095, 'es', 'name', 'Escuela de Artes PlƔsticas y DiseƱo de Puerto Rico'),
(116746, 95096, 'de', 'name', 'Frauenklinik der Technischen Universität München'),
(116747, 95097, 'en', 'name', 'State Key Laboratory of Environmental Chemistry and Ecotoxicology'),
(116748, 95097, 'zh', 'name', 'ēŽÆå¢ƒåŒ–å­¦äøŽē”Ÿę€ęÆ’ē†å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116749, 95098, 'no_lang_code', 'name', 'Calvagone (France)'),
(116750, 95099, 'es', 'name', 'Agencia Estatal de Investigación'),
(116751, 95100, 'en', 'name', 'Mayo Clinic Comprehensive Cancer Center (Arizona)'),
(116752, 95101, 'no_lang_code', 'name', 'Alcoa (United States)'),
(116753, 95102, 'no_lang_code', 'name', 'Geocisa (Spain)'),
(116754, 95103, 'en', 'name', 'Children''s Hospital of Los Angeles'),
(116755, 95104, 'en', 'name', 'Huertas College'),
(116756, 95105, 'en', 'name', 'Canadian Research Data Centre Network'),
(116757, 95106, 'en', 'name', 'Allegheny-Singer Research Institute'),
(116758, 95107, 'no_lang_code', 'name', 'Tafuna High School'),
(116759, 95108, 'de', 'name', 'Universitätsklinik für Hals-, Nasen- und Ohrenkrankheiten'),
(116760, 95109, 'en', 'name', 'Farm Credit Canada'),
(116761, 95109, 'fr', 'name', 'Financement agricole Canada'),
(116762, 95110, 'es', 'name', 'Instituto de Ciencias Antropológicas'),
(116763, 95111, 'es', 'name', 'Fundación Progreso y Salud'),
(116764, 95112, 'en', 'name', 'American Institutes for Research'),
(116765, 95113, 'en', 'name', 'NumFOCUS'),
(116766, 95114, 'en', 'name', 'Centre for Cooperative Research in Biomaterials'),
(116767, 95114, 'es', 'name', 'CIC biomaGUNE'),
(116768, 95115, 'en', 'name', 'Eszterhazy Karoly Catholic University'),
(116769, 95115, 'hu', 'name', 'EszterhƔzy KƔroly Katolikus Egyetem'),
(116770, 95116, 'en', 'name', 'Paris Institute of Earth Physics'),
(116771, 95116, 'fr', 'name', 'Institut de physique du globe de Paris'),
(116772, 95117, 'fr', 'name', 'Fondation Leenaards'),
(116773, 95118, 'en', 'name', 'Diabetes Research Foundation'),
(116774, 95118, 'fi', 'name', 'Diabetes Tutkimussaatio'),
(116775, 95119, 'en', 'name', 'Salim Habib University'),
(116776, 95120, 'en', 'name', 'Hobart and William Smith Colleges'),
(116777, 95121, 'en', 'name', 'Office of Materials and Chemical Technologies'),
(116778, 95122, 'no_lang_code', 'name', 'DNV (Netherlands)'),
(116779, 95123, 'en', 'name', 'Institute of Catalysis and Petrochemistry'),
(116780, 95123, 'es', 'name', 'Instituto de CatƔlisis y Petroleoquƭmica'),
(116781, 95124, 'en', 'name', 'Ministry of Science, Research and Technology'),
(116782, 95124, 'fa', 'name', 'وزارت Ų¹Ł„ŁˆŁ…ŲŒ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ و ŁŁ†Ų§ŁˆŲ±ŪŒ'),
(116783, 95125, 'en', 'name', 'State Key Laboratory of Plant Molecular Genetics'),
(116784, 95125, 'zh', 'name', 'ę¤ē‰©åˆ†å­é—ä¼ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116785, 95126, 'pt', 'name', 'Faculdade Católica de VÔrzea Grande'),
(116786, 95127, 'en', 'name', 'Deen Dayal Upadhyaya Gorakhpur University'),
(116787, 95127, 'hi', 'name', 'ą¤¦ą„€ą¤Øą¤¦ą¤Æą¤¾ą¤² ą¤‰ą¤Ŗą¤¾ą¤§ą„ą¤Æą¤¾ą¤Æ ą¤—ą„‹ą¤°ą¤–ą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(116788, 95127, 'ta', 'name', 'ą®¤ąÆ€ą®©ąÆ ą®¤ą®Æą®¾ą®³ąÆ ą®‰ą®Ŗą®¾ą®¤ąÆą®Æą®¾ą®ÆąÆ ą®•ąÆ‹ą®°ą®•ąÆą®ŖąÆ‚ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(116789, 95128, 'en', 'name', 'State Key Laboratory of Digital Manufacturing Equipment and Technology'),
(116790, 95128, 'zh', 'name', 'ę•°å­—åˆ¶é€ č£…å¤‡äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116791, 95129, 'no_lang_code', 'name', 'Philips (Italy)'),
(116792, 95130, 'en', 'name', 'Northwest A&F University'),
(116793, 95130, 'zh', 'name', 'č„æåŒ—å†œęž—ē§‘ęŠ€å¤§å­¦'),
(116794, 95131, 'en', 'name', 'Artificial Intelligence & Technology Office'),
(116795, 95132, 'de', 'name', 'Schweizerische Akademie der Geistes- und Sozialwissenschaften'),
(116796, 95132, 'en', 'name', 'Swiss Academy of Humanities and Social Sciences'),
(116797, 95132, 'fr', 'name', 'AcadƩmie Suisse des Sciences Humaines et Sociales'),
(116798, 95132, 'it', 'name', 'Academia Svizra da Scienzas Umanas e Socialas'),
(116799, 95133, 'en', 'name', 'Office of the General Counsel'),
(116800, 95134, 'es', 'name', 'Fundación Ciudad de la Energía'),
(116801, 95135, 'en', 'name', 'KITE Research Institute'),
(116802, 95136, 'en', 'name', 'Institute for Theoretical Physics and Modeling'),
(116803, 95136, 'hy', 'name', 'ÕÕ„Õ½Õ”ÕÆÕ”Õ¶ Õ–Õ«Õ¦Õ«ÕÆÕ”ÕµÕ« և Õ„ÕøÕ¤Õ„Õ¬Õ”Õ¾ÕøÖ€Õ“Õ”Õ¶ Ō»Õ¶Õ½ÕæÕ«ÕæÕøÖ‚Õæ'),
(116804, 95137, 'en', 'name', 'KDDI Foundation'),
(116805, 95138, 'en', 'name', 'Ministry of Communications, Knowledge and Technology'),
(116806, 95139, 'en', 'name', 'Laboratory for Integrated Micro-Mechatronic Systems'),
(116807, 95140, 'en', 'name', 'Heriot-Watt University Malaysia'),
(116808, 95141, 'en', 'name', 'University Hospital of the Nuestra SeƱora de Candelaria'),
(116809, 95141, 'es', 'name', 'Hospital Universitario Nuestra SeƱora de Candelaria'),
(116810, 95142, 'fr', 'name', 'Laboratoire d''Ingénierie des Systèmes'),
(116811, 95143, 'en', 'name', 'Valongo Observatory'),
(116812, 95143, 'pt', 'name', 'Observatório do Valongo'),
(116813, 95144, 'en', 'name', 'Institute for Molecular and Cell Biology'),
(116814, 95144, 'pt', 'name', 'Instituto de Biologia Molecular e Celular'),
(116815, 95145, 'es', 'name', 'Servicio Navarro de Salud'),
(116816, 95146, 'en', 'name', 'NYU Langone Health'),
(116817, 95147, 'en', 'name', 'Asian Theological Seminary'),
(116818, 95148, 'no_lang_code', 'name', 'Chinhoyi University of Technology'),
(116819, 95149, 'es', 'name', 'Banco Central de Chile'),
(116820, 95150, 'en', 'name', 'Office of Energy Analysis'),
(116821, 95151, 'no_lang_code', 'name', 'DB Engineering & Consulting (Germany)'),
(116822, 95152, 'no_lang_code', 'name', 'Philip Morris International (United States)'),
(116823, 95153, 'no_lang_code', 'name', 'Confederação Nacional da Indústria (Brazil)'),
(116824, 95154, 'en', 'name', 'Earthwatch Europe'),
(116825, 95155, 'en', 'name', 'Rutgers Cancer Institute of New Jersey'),
(116826, 95156, 'en', 'name', 'BioCruces Health research Institute'),
(116827, 95157, 'de', 'name', 'Klinik Hietzing'),
(116828, 95158, 'en', 'name', 'National Center of Competence in Research Quantum Science and Technology'),
(116829, 95159, 'en', 'name', 'Alba Graduate Business School, The American College of Greece'),
(116830, 95160, 'en', 'name', 'LearningSpring Elementary School'),
(116831, 95161, 'en', 'name', 'International Clinical Epidemiology Network'),
(116832, 95162, 'nl', 'name', 'Vrije Universiteit Brussel'),
(116833, 95163, 'en', 'name', 'eHope Foundation'),
(116834, 95164, 'en', 'name', 'DoƱana Biological Station'),
(116835, 95164, 'es', 'name', 'Estación Biológica de Doñana'),
(116836, 95165, 'en', 'name', 'Control and Robotics Laboratory'),
(116837, 95165, 'fr', 'name', 'Laboratoire de commande et de robotique'),
(116838, 95166, 'en', 'name', 'Applied Research Laboratory for Intelligence and Security'),
(116839, 95167, 'fr', 'name', 'Centre de Recherches Interdisciplinaires sur les Mondes IbƩro-amƩricains Contemporains'),
(116840, 95168, 'en', 'name', 'Northwestern University in Qatar'),
(116841, 95168, 'es', 'name', 'Universidad del noroeste'),
(116842, 95169, 'en', 'name', 'Arkansas State University'),
(116843, 95169, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''arkansas'),
(116844, 95170, 'en', 'name', 'Center for Advanced Security Research Darmstadt'),
(116845, 95171, 'en', 'name', 'Society for Integrative and Comparative Biology'),
(116846, 95172, 'no_lang_code', 'name', 'ZIN Technologies (United States)'),
(116847, 95173, 'en', 'name', 'State Key Laboratory of Heavy Oil'),
(116848, 95173, 'zh', 'name', 'é‡č“Øę²¹å›½å®¶é‡ē‚¹å®žéŖŒå®¤');
INSERT INTO `ror_settings` VALUES
(116849, 95174, 'en', 'name', 'MSH Medical School Hamburg – University of Applied Sciences and Medical University'),
(116850, 95175, 'en', 'name', 'Geology, Geophysics, and Geochemistry Science Center'),
(116851, 95176, 'ca', 'name', 'Universitat de Vic - Universitat Central de Catalunya'),
(116852, 95176, 'en', 'name', 'University of Vic - Central University of Catalonia'),
(116853, 95176, 'es', 'name', 'Universidad de Vic - Universidad Central de Catalunya'),
(116854, 95177, 'el', 'name', 'Διεθνές Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ΕλλάΓος'),
(116855, 95177, 'en', 'name', 'International Hellenic University'),
(116856, 95177, 'fr', 'name', 'UniversitƩ internationale hellƩnique'),
(116857, 95178, 'de', 'name', 'Thüringisches Landesamt für Denkmalpflege und Archäologie'),
(116858, 95179, 'en', 'name', 'State Key Laboratory of Coal Mine Disaster Dynamics and Control'),
(116859, 95179, 'zh', 'name', 'ē…¤ēŸæē¾å®³åŠØåŠ›å­¦äøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116860, 95180, 'en', 'name', 'State Key Laboratory of Civil Aircraft Flight Simulation'),
(116861, 95180, 'zh', 'name', 'ę°‘ē”Øé£žęœŗęØ”ę‹Ÿé£žč”Œå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116862, 95181, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ ŲµŲ§Ł„Ų­ŁŠ Ų£Ų­Ł…ŲÆ النعامة'),
(116863, 95181, 'fr', 'name', 'Centre universitaire Salhi Ahmed - Naama'),
(116864, 95182, 'en', 'name', 'Virginia Agricultural Experiment Station'),
(116865, 95183, 'en', 'name', 'Department of Public Health'),
(116866, 95184, 'en', 'name', 'Loyola University Andalusia'),
(116867, 95184, 'es', 'name', 'Universidad Loyola AndalucĆ­a'),
(116868, 95185, 'en', 'name', 'University of Chicago Medical Center'),
(116869, 95186, 'en', 'name', 'Cereal Research Centre'),
(116870, 95187, 'en', 'name', 'Institute for South-East European Studies'),
(116871, 95187, 'ro', 'name', 'Institutul de Studii Sud-Est Europene'),
(116872, 95188, 'en', 'name', 'Lanzhou Institute of Chemical Physics'),
(116873, 95188, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å…°å·žåŒ–å­¦ē‰©ē†ē ”ē©¶ę‰€'),
(116874, 95189, 'no_lang_code', 'name', 'Albion Technologies (United Kingdom)'),
(116875, 95190, 'en', 'name', 'University of Belgrade – Faculty of Orthodox Theology'),
(116876, 95190, 'sr', 'name', 'Univerzitet u Beogradu – Pravoslavni bogoslovski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠŸŃ€Š°Š²Š¾ŃŠ»Š°Š²Š½Šø богословски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(116877, 95191, 'en', 'name', 'AIMST University'),
(116878, 95192, 'fr', 'name', 'Réceptions et médiations de littératures et de cultures étrangères et comparées'),
(116879, 95193, 'fr', 'name', 'Laboratoire de Psychologie des Pays de la Loire'),
(116880, 95194, 'fr', 'name', 'Laboratoire d''Ʃconomie Rouen Normandie'),
(116881, 95195, 'en', 'name', 'Brain Institute of Rio Grande do Sul'),
(116882, 95195, 'pt', 'name', 'Instituto do CƩrebro'),
(116883, 95196, 'no_lang_code', 'name', 'Gamesa (Spain)'),
(116884, 95197, 'en', 'name', 'Ontario Ministry of Economic Development and Innovation'),
(116885, 95197, 'fr', 'name', 'Ministre Du DĆ©veloppement Ɖconomique Et De L’innovation'),
(116886, 95198, 'en', 'name', 'State Key Laboratory of Artificial Microstructure and Mesoscopic Physics'),
(116887, 95198, 'zh', 'name', 'äŗŗå·„å¾®ē»“ęž„å’Œä»‹č§‚ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116888, 95199, 'en', 'name', 'Fred Hutch Cancer Center'),
(116889, 95200, 'en', 'name', 'Mayo Clinic Comprehensive Cancer Center (Florida)'),
(116890, 95201, 'en', 'name', 'NOAA National Environmental Satellite Data and Information Service'),
(116891, 95202, 'be', 'name', 'Š‘Ń€ŃŃŃ†ŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(116892, 95202, 'en', 'name', 'Brest State Technical University'),
(116893, 95202, 'ru', 'name', 'Брестский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(116894, 95203, 'fr', 'name', 'Chimie MolƩculaire, MacromolƩculaire, MatƩriaux'),
(116895, 95204, 'en', 'name', 'Herat Regional Hospital'),
(116896, 95205, 'en', 'name', 'New Mexico State University Alamogordo'),
(116897, 95206, 'en', 'name', 'The Velux Foundations'),
(116898, 95207, 'fr', 'name', 'DƩlƩgation Paris-Villejuif-03'),
(116899, 95208, 'no_lang_code', 'name', 'TrinaSolar Co., Ltd. (China)'),
(116900, 95208, 'zh', 'name', 'å¤©åˆå…‰čƒ½č‚”ä»½ęœ‰é™å…¬åø'),
(116901, 95209, 'es', 'name', 'Departamento de Desarrollo Económico, Sostenibilidad y Medio Ambiente'),
(116902, 95209, 'eu', 'name', 'Ekonomiaren Garapen eta Lehiakortasun Saila'),
(116903, 95210, 'en', 'name', 'Partnership for Observation of the Global Ocean'),
(116904, 95211, 'en', 'name', 'Queensland Department of Natural Resources, Mines and Energy'),
(116905, 95212, 'en', 'name', 'Institute for Communication Sciences'),
(116906, 95212, 'fr', 'name', 'Institut des sciences de la communication'),
(116907, 95213, 'en', 'name', 'Perfect Harmony Health'),
(116908, 95214, 'de', 'name', 'Damp Stiftung'),
(116909, 95215, 'en', 'name', 'Systems Engineering Research Center'),
(116910, 95216, 'en', 'name', 'State Key Laboratory of Advanced Stainless Steel Materials'),
(116911, 95216, 'zh', 'name', 'å…ˆčæ›äøé”ˆé’¢ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116912, 95217, 'fr', 'name', 'Centre d''Ɖtudes et de Documentation Ɖconomiques, Juridiques et sociales'),
(116913, 95218, 'en', 'name', 'ICMR National Institute for Research in Environmental Health'),
(116914, 95219, 'en', 'name', 'Office of Security'),
(116915, 95220, 'ro', 'name', 'Institutul Naţional de Cercetare - Dezvoltare în Turism, Institutul Naţional de Cercetare-Dezvoltare în Turism'),
(116916, 95221, 'en', 'name', 'Wrocław University of Science and Technology'),
(116917, 95221, 'pl', 'name', 'Politechnika Wrocławska'),
(116918, 95222, 'en', 'name', 'Department of Agriculture Food and the Marine'),
(116919, 95223, 'fr', 'name', 'Interfaces, Confinement, MatƩriaux et Nanostructures'),
(116920, 95224, 'en', 'name', 'Mount Kigali University'),
(116921, 95225, 'pt', 'name', 'Instituto AgrƔrio de Chimoio'),
(116922, 95226, 'ro', 'name', 'Universitatea Slavonă din Moldova'),
(116923, 95227, 'en', 'name', 'Maritime And Oceanic Law Centre'),
(116924, 95227, 'fr', 'name', 'Centre de Droit Maritime et OcƩanique'),
(116925, 95228, 'es', 'name', 'Universidad del Caribe'),
(116926, 95229, 'en', 'name', 'University of the People'),
(116927, 95230, 'en', 'name', 'National Museum of Japanese History'),
(116928, 95230, 'ja', 'name', 'å›½ē«‹ę­“å²ę°‘äæ—åšē‰©é¤Ø'),
(116929, 95231, 'es', 'name', 'Asociación Española de Linfedema'),
(116930, 95232, 'en', 'name', 'Institute of Computing Technology'),
(116931, 95232, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č®”ē®—ęŠ€ęœÆē ”ē©¶ę‰€'),
(116932, 95233, 'cy', 'name', 'Ysgol Economeg a Gwyddor Gwleidyddiaeth Llundain'),
(116933, 95233, 'en', 'name', 'London School of Economics and Political Science'),
(116934, 95234, 'es', 'name', 'Instituto de Estudios DemocrƔticos'),
(116935, 95235, 'en', 'name', 'State Key Laboratory of Experimental Hematology'),
(116936, 95235, 'zh', 'name', 'å®žéŖŒč”€ę¶²å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116937, 95236, 'en', 'name', 'U.S. Army Electronic Proving Ground'),
(116938, 95237, 'en', 'name', 'The Bronx Defenders'),
(116939, 95238, 'en', 'name', 'Beijing Institute of Optoelectronic Technology'),
(116940, 95238, 'zh', 'name', 'åŒ—äŗ¬å…‰ē”µęŠ€ęœÆē ”ē©¶ę‰€'),
(116941, 95239, 'en', 'name', 'Swedish Infrastructure for Ecosystem Science'),
(116942, 95240, 'fr', 'name', 'EntrepƓts, ReprƩsentation et IngƩnierie des Connaissances'),
(116943, 95241, 'ja', 'name', 'å¾³å³¶å„ē”Ÿē—…é™¢'),
(116944, 95241, 'no_lang_code', 'name', 'Kensei Hospital, Tokushima'),
(116945, 95242, 'en', 'name', 'State Key Laboratory of Shipping Technology and Safety'),
(116946, 95242, 'zh', 'name', 'čˆŖčæęŠ€ęœÆäøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(116947, 95243, 'fr', 'name', 'HƓpital Rothschild'),
(116948, 95244, 'en', 'name', 'Edenton Chowan School District'),
(116949, 95245, 'en', 'name', 'Petru Maior University'),
(116950, 95245, 'ro', 'name', 'Universitatea Petru Maior din TĆ¢rgu Mureș, Universitatea Petru Maior din TĆ®rgu Mureş'),
(116951, 95246, 'en', 'name', 'Office of Nuclear Facilities Management'),
(116952, 95247, 'en', 'name', 'Agricultural Experiment Station'),
(116953, 95248, 'fr', 'name', 'Laboratoire de MathƩmatiques de l''INSA de Rouen'),
(116954, 95249, 'en', 'name', 'Institute of Fundamental Physics'),
(116955, 95249, 'es', 'name', 'Instituto de FĆ­sica Fundamental'),
(116956, 95250, 'en', 'name', 'BegoƱako Andra Mari Teacher Training University College'),
(116957, 95250, 'es', 'name', 'Escuela Universitaria de Magisterio BegoƱako Andra Mari'),
(116958, 95250, 'eu', 'name', 'BegoƱako Andra Mari Irakasleen Unibertsitate Eskola'),
(116959, 95251, 'en', 'name', 'Laboratory of Space Technologies, Embedded Systems, Navigation and Avionic'),
(116960, 95251, 'fr', 'name', 'Laboratoire des technologies spatiales, systèmes embarqués, navigation et avionique'),
(116961, 95252, 'fr', 'name', 'Mécanismes de Tumorigenèse et Thérapies Ciblées'),
(116962, 95253, 'fr', 'name', 'Institut Interdisciplinaire d’Anthropologie du Contemporain'),
(116963, 95254, 'en', 'name', 'OU Health'),
(116964, 95255, 'en', 'name', 'Laboratory of Physics and Material studies'),
(116965, 95255, 'fr', 'name', 'Laboratoire de Physique et d’Étude des MatĆ©riaux'),
(116966, 95256, 'fr', 'name', 'Laboratoire de la Mer'),
(116967, 95257, 'es', 'name', 'Fundación Tripartita para la Formación en el Empleo'),
(116968, 95258, 'no_lang_code', 'name', 'Renfe Operadora (Spain)'),
(116969, 95259, 'en', 'name', 'NSW Department of Planning, Housing and Infrastructure'),
(116970, 95260, 'fr', 'name', 'NeurON : Interface Neuro-machine'),
(116971, 95261, 'fr', 'name', 'Commission de l''Ethique en Science et en Technologie'),
(116972, 95262, 'de', 'name', 'Deutsche Film- und Fernsehakademie Berlin'),
(116973, 95263, 'en', 'name', 'National Institute of Diabetes and Digestive and Kidney Diseases'),
(116974, 95264, 'de', 'name', 'Universitätsklinik für Neurologie'),
(116975, 95265, 'en', 'name', 'Institute of studies gallegos Padre Sarmiento'),
(116976, 95265, 'es', 'name', 'Instituto de Estudios Gallegos Padre Sarmiento'),
(116977, 95266, 'en', 'name', 'World Bank'),
(116978, 95266, 'fr', 'name', 'Banque Mondiale'),
(116979, 95267, 'es', 'name', 'Universidad Católica Redemptoris Mater'),
(116980, 95268, 'en', 'name', 'Children''s Hospital Research Institute of Manitoba'),
(116981, 95269, 'fr', 'name', 'Laboratoire d''Ɖlectronique, Antennes et TĆ©lĆ©communications'),
(116982, 95270, 'en', 'name', 'Alpha Foundation'),
(116983, 95271, 'en', 'name', 'Swedish National Data Service'),
(116984, 95271, 'sv', 'name', 'Svensk nationell datatjƤnst'),
(116985, 95272, 'en', 'name', 'Bandung Institute of Technology'),
(116986, 95272, 'id', 'name', 'Institut Teknologi Bandung'),
(116987, 95272, 'jv', 'name', 'Institut TĆØknologi Bandung'),
(116988, 95272, 'nl', 'name', 'Technische Hogeschool Bandoeng'),
(116989, 95273, 'no_lang_code', 'name', 'Tullow Oil (United Kingdom)'),
(116990, 95274, 'en', 'name', 'Institute for Marine and Antarctic Studies'),
(116991, 95275, 'en', 'name', 'Swedish Veterinary Agency'),
(116992, 95276, 'no_lang_code', 'name', 'Immuneering (United States)'),
(116993, 95277, 'en', 'name', 'Federal Institute of RondƓnia'),
(116994, 95277, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de RondÓnia'),
(116995, 95278, 'sv', 'name', 'Nordregio'),
(116996, 95279, 'no_lang_code', 'name', 'Zoomlion (China)'),
(116997, 95279, 'zh', 'name', 'äø­č”é‡ē§‘'),
(116998, 95280, 'en', 'name', 'Institute for Surface Chemistry'),
(116999, 95280, 'sv', 'name', 'Ytkemiska Institutet'),
(117000, 95281, 'fr', 'name', 'Groupe de REcherche en Cardio Oncologie'),
(117001, 95282, 'no_lang_code', 'name', 'Shell (Netherlands)'),
(117002, 95283, 'en', 'name', 'State Key Laboratory of Automotive Simulation and Control'),
(117003, 95283, 'zh', 'name', 'ę±½č½¦ä»æēœŸäøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117004, 95284, 'en', 'name', 'State Key Laboratory of Structural Analysis for Industrial Equipment'),
(117005, 95284, 'zh', 'name', 'å·„äøšč£…å¤‡ē»“ęž„åˆ†ęžå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117006, 95285, 'fr', 'name', 'Institut de recherche et d’informations socioĆ©conomiques'),
(117007, 95286, 'en', 'name', 'Sir Charles Gairdner Osborne Park Health Care Group'),
(117008, 95287, 'en', 'name', 'Leidos Biomedical Research Inc., Leidos Biomedical Research Inc. (United States)'),
(117009, 95288, 'de', 'name', 'NFDI4DS'),
(117010, 95289, 'en', 'name', 'Cooperative Institute for Research in Environmental Sciences'),
(117011, 95290, 'ca', 'name', 'Biblioteca de Catalunya'),
(117012, 95290, 'en', 'name', 'National Library of Catalonia'),
(117013, 95290, 'es', 'name', 'Biblioteca de CataluƱa'),
(117014, 95290, 'eu', 'name', 'Kataluniako Liburutegia'),
(117015, 95290, 'gl', 'name', 'Biblioteca de Catalunya'),
(117016, 95290, 'oc', 'name', 'BibliotĆØca de Catalonha'),
(117017, 95291, 'ca', 'name', 'Fundació Catalana de Trasplantament'),
(117018, 95291, 'en', 'name', 'Catalan Transplant Foundation'),
(117019, 95292, 'en', 'name', 'InnovaWood'),
(117020, 95293, 'en', 'name', 'Janaki Medical College'),
(117021, 95293, 'ne', 'name', 'ą¤œą¤¾ą¤Øą¤•ą„€ ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą¤²ą„‡ą¤œ'),
(117022, 95294, 'en', 'name', 'Xuzhou College of Industrial Technology'),
(117023, 95294, 'zh', 'name', 'å¾å·žå·„äøščŒäøšęŠ€ęœÆå­¦é™¢'),
(117024, 95295, 'en', 'name', 'Dairy Institute of Asturias'),
(117025, 95295, 'es', 'name', 'Instituto de Productos LƔcteos de Asturias'),
(117026, 95296, 'fr', 'name', 'Centre intƩgrƩ de santƩ et de services sociaux de la CƓte-Nord'),
(117027, 95297, 'en', 'name', 'Geology, Minerals, Energy, and Geophysics Science Center'),
(117028, 95298, 'en', 'name', 'Syreon Research Institute'),
(117029, 95298, 'no_lang_code', 'name', 'Syreon Research Institute (Hungary)'),
(117030, 95299, 'no_lang_code', 'name', 'STCube (United States)'),
(117031, 95300, 'en', 'name', 'National Snow and Ice Data Center'),
(117032, 95301, 'no_lang_code', 'name', 'Roche (Switzerland)'),
(117033, 95302, 'en', 'name', 'Institute of Polymer Science and Technology'),
(117034, 95302, 'es', 'name', 'Instituto de Ciencia y TecnologĆ­a de PolĆ­meros'),
(117035, 95303, 'en', 'name', 'Second People''s Hospital of Yunnan Province'),
(117036, 95303, 'zh', 'name', 'äŗ‘å—ēœē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(117037, 95304, 'en', 'name', 'National Research Council of the Philippines'),
(117038, 95305, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‚ŁŠŁˆŲ§Ł† Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(117039, 95305, 'en', 'name', 'Qaiwan International University'),
(117040, 95305, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ Ł†ŪŽŁˆŲÆŪ•ŁˆŚµŪ•ŲŖŪŒ Ł‚Ū•ŪŒŁˆŲ§Ł†'),
(117041, 95306, 'no_lang_code', 'name', 'Routledge (United Kingdom)'),
(117042, 95307, 'no_lang_code', 'name', 'Solusi University'),
(117043, 95308, 'de', 'name', 'Eidgenössische Hochschule für Sport Magglingen EHSM'),
(117044, 95308, 'en', 'name', 'Swiss Federal Institute of Sport Magglingen SFISM'),
(117045, 95308, 'fr', 'name', 'Haute Ʃcole fƩdƩrale de sport de Macolin HEFSM'),
(117046, 95309, 'en', 'name', 'State Key Laboratory of Reproductive Medicine'),
(117047, 95309, 'zh', 'name', 'ē”Ÿę®–åŒ»å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117048, 95310, 'eu', 'name', 'Euskadiko Parke Teknologicoak Bizkaia, Euskadiko Parke Teknologikoa'),
(117049, 95311, 'en', 'name', 'Montefiore Einstein Comprehensive Cancer Center'),
(117050, 95312, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁŁ„Ų³Ų·ŁŠŁ† Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© - خضوري'),
(117051, 95312, 'en', 'name', 'Palestine Technical University - Kadoorie'),
(117052, 95313, 'en', 'name', 'South Dakota School of Mines and Technology'),
(117053, 95314, 'en', 'name', 'The University of Kansas Cancer Center'),
(117054, 95315, 'en', 'name', 'State Key Laboratory of Solid Waste Resource Utilization and Energy-Saving Building Materials'),
(117055, 95315, 'zh', 'name', 'å›ŗåŗŸčµ„ęŗåŒ–åˆ©ē”ØäøŽčŠ‚čƒ½å»ŗęå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117056, 95316, 'en', 'name', 'Virginia Mason Medical Center'),
(117057, 95317, 'en', 'name', 'Gun and Bertil Stohne''s Foundation'),
(117058, 95317, 'sv', 'name', 'Gun och Bertil Stohnes Stiftelse'),
(117059, 95318, 'en', 'name', 'State Key Laboratory of Oil and Gas Resources and Exploration'),
(117060, 95318, 'zh', 'name', 'ę²¹ę°”čµ„ęŗäøŽęŽ¢ęµ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117061, 95319, 'fr', 'name', 'Dynamiques patrimoniales et culturelles'),
(117062, 95320, 'en', 'name', 'Acquisition and Project Management'),
(117063, 95321, 'fr', 'name', 'HƓpital Charles-Nicolle'),
(117064, 95322, 'es', 'name', 'Conservatori Superior de Música de Castelló'),
(117065, 95323, 'en', 'name', 'Dartmouth–Hitchcock Medical Center'),
(117066, 95324, 'en', 'name', 'International Oceanographic Data and Information Exchange (IODE)'),
(117067, 95325, 'no_lang_code', 'name', 'PREreview'),
(117068, 95326, 'en', 'name', 'Vaccine and Gene Therapy Institute'),
(117069, 95327, 'en', 'name', 'Barcelona Graduate School of Mathematics'),
(117070, 95328, 'no_lang_code', 'name', 'Sequoia Sciences (United States)'),
(117071, 95329, 'en', 'name', 'University of California, Merced'),
(117072, 95329, 'es', 'name', 'Universidad de California en Merced'),
(117073, 95329, 'fr', 'name', 'UniversitƩ de Californie Ơ Merced'),
(117074, 95330, 'es', 'name', 'Fundación Universidad Empresa de la Región de Murcia'),
(117075, 95331, 'en', 'name', 'Earthquake Science Center'),
(117076, 95332, 'fr', 'name', 'ARMINES'),
(117077, 95333, 'id', 'name', 'Universitas Pelita Bangsa'),
(117078, 95334, 'en', 'name', 'Comprehensive Cancer Center Vienna'),
(117079, 95335, 'en', 'name', 'Oil Spill Recovery Institute'),
(117080, 95336, 'en', 'name', 'Lanzhou Veterinary Research Institute'),
(117081, 95336, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å…°å·žå…½åŒ»ē ”ē©¶ę‰€'),
(117082, 95337, 'en', 'name', 'Spanish Multiple Sclerosis Network'),
(117083, 95337, 'es', 'name', 'Red Española de Esclerosis Múltiple'),
(117084, 95338, 'en', 'name', 'Ministry of Education'),
(117085, 95338, 'ro', 'name', 'Ministerul Educației și Cercetării Științifice'),
(117086, 95339, 'en', 'name', 'University Grants Committee'),
(117087, 95339, 'zh', 'name', 'å¤§å­øę•™č‚²č³‡åŠ©å§”å“”ęœƒ'),
(117088, 95340, 'en', 'name', 'State Key Laboratory of Veterinary Biotechnology'),
(117089, 95340, 'zh', 'name', 'å…½åŒ»ē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117090, 95341, 'en', 'name', 'Cordeliers Research Centre'),
(117091, 95341, 'fr', 'name', 'Centre de Recherche des Cordeliers'),
(117092, 95342, 'en', 'name', 'Federal University of Alagoas'),
(117093, 95342, 'pt', 'name', 'Universidade Federal de Alagoas'),
(117094, 95343, 'en', 'name', 'Shanghai Posts & Telecommunications Designing Consulting Institute'),
(117095, 95343, 'zh', 'name', 'äøŠęµ·é‚®ē”µč®¾č®”å’ØčÆ¢ē ”ē©¶é™¢ęœ‰é™å…¬åøåˆ›'),
(117096, 95344, 'es', 'name', 'Biobanco del Sistema Sanitario PĆŗblico de AndalucĆ­a'),
(117097, 95345, 'en', 'name', 'Department of Lands and Natural Resources'),
(117098, 95346, 'en', 'name', 'Pipeline and Hazardous Materials Safety Administration'),
(117099, 95347, 'es', 'name', 'Estación Experimental del Zaidín'),
(117100, 95348, 'en', 'name', 'Boston Children''s Hospital'),
(117101, 95349, 'en', 'name', 'Afrischolar Discovery Initiative'),
(117102, 95350, 'en', 'name', 'Bagadhar Brahma Kishan College'),
(117103, 95351, 'fr', 'name', 'Diplomatique'),
(117104, 95352, 'de', 'name', 'Paracelsus-Kliniken'),
(117105, 95353, 'no_lang_code', 'name', 'Certis Europe (The Netherlands)'),
(117106, 95354, 'no_lang_code', 'name', 'State Grid Hunan Electric Power Company Limited'),
(117107, 95354, 'zh', 'name', 'å›½ē½‘ę¹–å—ēœē”µåŠ›ęœ‰é™å…¬åø'),
(117108, 95355, 'en', 'name', 'Dorothea Olivia, Karl Walter and Jarl Walter PerklƩns Memorial Foundation'),
(117109, 95355, 'sv', 'name', 'Stiftelsen Dorothea Olivia, Karl Walter och Jarl Walter PerklƩns Minne'),
(117110, 95356, 'en', 'name', 'International Network of Nuclear Reaction Data Centres'),
(117111, 95357, 'en', 'name', 'U.S. Army Combat Capabilities Development Command Aviation & Missile Center'),
(117112, 95358, 'en', 'name', 'International Rett syndrome Foundation'),
(117113, 95359, 'id', 'name', 'Institut Agama Islam Almuslim Aceh'),
(117114, 95360, 'en', 'name', 'Laboratory of Genetics and Biology of the Cell'),
(117115, 95360, 'fr', 'name', 'Laboratoire de gƩnƩtique et biologie cellulaire'),
(117116, 95361, 'en', 'name', 'The Barbara Ann Karmanos Cancer Institute'),
(117117, 95362, 'en', 'name', 'State Key Laboratory of Stem Cell and Reproductive Biology'),
(117118, 95362, 'zh', 'name', 'å¹²ē»†čƒžäøŽē”Ÿę®–ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117119, 95363, 'en', 'name', 'Federal University of Campina Grande'),
(117120, 95363, 'pt', 'name', 'Universidade Federal de Campina Grande'),
(117121, 95364, 'id', 'name', 'Universitas Karya Husada Semarang'),
(117122, 95365, 'el', 'name', 'ĪŠĪ“ĻĻ…Ī¼Ī± ĪˆĻĪµĻ…Ī½Ī±Ļ‚ και ĪšĪ±Ī¹Ī½ĪæĻ„ĪæĪ¼ĪÆĪ±Ļ‚'),
(117123, 95365, 'en', 'name', 'Research and Innovation Foundation'),
(117124, 95366, 'fr', 'name', 'Centre intĆ©grĆ© universitaire de santĆ© et de services sociaux de l''Ouest-de-lā€™ĆŽle-de-MontrĆ©al'),
(117125, 95367, 'en', 'name', 'New Mexico Water Science Center'),
(117126, 95368, 'ca', 'name', 'Hospital Universitari de Bellvitge'),
(117127, 95368, 'en', 'name', 'Bellvitge University Hospital'),
(117128, 95369, 'en', 'name', 'Basque Centre for Climate Change'),
(117129, 95369, 'es', 'name', 'Centro Vasco para el Cambio ClimƔtico'),
(117130, 95369, 'eu', 'name', 'Klima Aldaketa Ikergai'),
(117131, 95370, 'en', 'name', 'Sanitas Central Laboratory'),
(117132, 95370, 'es', 'name', 'Laboratorio Central de Sanitas'),
(117133, 95371, 'en', 'name', 'University of Health Sciences'),
(117134, 95372, 'en', 'name', 'Franciscan Health Mooresville'),
(117135, 95373, 'en', 'name', 'Strategic Environmental Research and Development Program'),
(117136, 95374, 'en', 'name', 'Shanghai Research Institute of Chemical Industry'),
(117137, 95375, 'no_lang_code', 'name', 'ThermoAnalytics (United States)'),
(117138, 95376, 'en', 'name', 'Institut Agama Islam Tafaqquh Fiddin Dumai'),
(117139, 95377, 'es', 'name', 'Instituto EspaƱol de Oceanografƭa'),
(117140, 95378, 'en', 'name', 'Aequitas Victoria Foundation'),
(117141, 95379, 'en', 'name', 'National Center for Public Health Informatics'),
(117142, 95380, 'en', 'name', 'Special Pathogens Research Network Ltd.'),
(117143, 95381, 'fr', 'name', 'XLIM'),
(117144, 95382, 'en', 'name', 'Indiana State University'),
(117145, 95383, 'en', 'name', 'Vehicle Technologies Office'),
(117146, 95384, 'it', 'name', 'Istituto Avventista Villa Aurora'),
(117147, 95385, 'it', 'name', 'Istituti Clinici di Perfezionamento'),
(117148, 95386, 'en', 'name', 'State Key Laboratory of Biogenic Fiber Manufacturing Technology'),
(117149, 95386, 'zh', 'name', 'ē”Ÿē‰©ęŗēŗ¤ē»“åˆ¶é€ ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117150, 95387, 'en', 'name', 'Collaborative Innovation Centre for Advanced Ship and Deep-Sea Exploration'),
(117151, 95387, 'zh', 'name', 'é«˜ę–°čˆ¹čˆ¶äøŽę·±ęµ·å¼€å‘č£…å¤‡ååŒåˆ›ę–°äø­åæƒ'),
(117152, 95388, 'en', 'name', 'Earth Resources Observation and Science Center'),
(117153, 95389, 'no_lang_code', 'name', 'Raytheon Technologies (Italy)'),
(117154, 95390, 'en', 'name', 'Ural Scientific Research Institute for Metrology'),
(117155, 95390, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологии'),
(117156, 95391, 'en', 'name', 'Office of the Director'),
(117157, 95392, 'es', 'name', 'Instituto de la Grasa'),
(117158, 95393, 'no_lang_code', 'name', 'Toray (Thailand)'),
(117159, 95394, 'de', 'name', 'Europäische Gesellschaft für Orthodontie'),
(117160, 95394, 'en', 'name', 'European Orthodontic Society'),
(117161, 95395, 'id', 'name', 'Universitas Mega Buana Palopo'),
(117162, 95396, 'en', 'name', 'Case Comprehensive Cancer Center'),
(117163, 95397, 'en', 'name', 'Arts University Plymouth'),
(117164, 95398, 'en', 'name', 'Scientific Institute for Veterinary Medicine of Serbia'),
(117165, 95398, 'sr', 'name', 'Naučni institut za veterinarstvo Srbije, ŠŠ°ŃƒŃ‡Š½Šø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ветеринарство Š”Ń€Š±ŠøŃ˜Šµ'),
(117166, 95399, 'en', 'name', 'Shenyang Institute of Automation'),
(117167, 95399, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę²ˆé˜³č‡ŖåŠØåŒ–ē ”ē©¶ę‰€'),
(117168, 95400, 'en', 'name', 'Sanitas Artaza Medical Centre'),
(117169, 95400, 'es', 'name', 'Centro MƩdico Sanitas Artaza'),
(117170, 95401, 'no_lang_code', 'name', 'Bunker Ramo (United States)'),
(117171, 95402, 'en', 'name', 'Grenoble Applied Economics Lab'),
(117172, 95402, 'fr', 'name', 'Laboratoire d''Economie AppliquƩe de Grenoble'),
(117173, 95403, 'en', 'name', 'Shanghai Yangpu Senior High School'),
(117174, 95403, 'zh', 'name', 'äøŠęµ·åø‚ęØęµ¦é«˜ēŗ§äø­å­¦'),
(117175, 95404, 'no_lang_code', 'name', 'Boeing (Spain)'),
(117176, 95405, 'en', 'name', 'American Samoa Department of Homeland Security'),
(117177, 95406, 'fr', 'name', 'CERES - Centre d''expƩrimentation en mƩthodes numƩriques pour les recherches en sciences humaines et sociales'),
(117178, 95407, 'en', 'name', 'Crystal Impact, Crystal Impact (Germany)'),
(117179, 95408, 'en', 'name', 'The Darwin Trust of Edinburgh'),
(117180, 95409, 'en', 'name', 'Centre on Innovation and Energy Demand'),
(117181, 95410, 'en', 'name', 'AIR Institute'),
(117182, 95410, 'es', 'name', 'Fundación Instituto Internacional de Investigación en Inteligencia Artificial y Ciencias de la Computación'),
(117183, 95411, 'en', 'name', 'Puerto Rico Department of Health'),
(117184, 95411, 'es', 'name', 'Departamento de Salud de Puerto Rico'),
(117185, 95412, 'en', 'name', 'State Key Laboratory of Metastable Materials Science and Technology'),
(117186, 95412, 'zh', 'name', 'äŗšēØ³ęę–™åˆ¶å¤‡ęŠ€ęœÆäøŽē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117187, 95413, 'en', 'name', 'ARC Centre for Nanoscale BioPhotonics'),
(117188, 95414, 'ca', 'name', 'Ajuntament de Sant SebastiĆ '),
(117189, 95414, 'en', 'name', 'City council of San SebastiƔn'),
(117190, 95414, 'es', 'name', 'Ayuntamiento de San SebastiƔn'),
(117191, 95414, 'eu', 'name', 'Donostiako Udala'),
(117192, 95415, 'fr', 'name', 'CƩgep GƩrald-Godin'),
(117193, 95416, 'en', 'name', 'Administration for Children and Families'),
(117194, 95417, 'en', 'name', 'Barnes-Jewish West County Hospital'),
(117195, 95418, 'en', 'name', 'Tashenev University'),
(117196, 95418, 'kk', 'name', 'Жұмабек Š¢Ó™ŃˆŠµŠ½ŠµŠ² атынГағы Университеті'),
(117197, 95419, 'en', 'name', 'Federal Institute of Education, Science and Technology of Triângulo Mineiro'),
(117198, 95419, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do Triângulo Mineiro'),
(117199, 95420, 'de', 'name', 'Nationale Forschungsschwerpunkt Evolving Language'),
(117200, 95420, 'en', 'name', 'National Centre of Competence in Research Evolving Language'),
(117201, 95420, 'fr', 'name', 'PƓle de Recherche National Evolving Language'),
(117202, 95421, 'en', 'name', 'Valencian International University'),
(117203, 95421, 'es', 'name', 'Universidad Internacional Valenciana'),
(117204, 95422, 'en', 'name', 'Samsung Science and Technology Foundation (South Korea)'),
(117205, 95422, 'ko', 'name', 'ģ‚¼ģ„±ėÆøėž˜źø°ģˆ ģœ”ģ„±ģž¬ė‹Ø'),
(117206, 95423, 'es', 'name', 'Instituto Universitario de Integración en la Comunidad'),
(117207, 95424, 'fr', 'name', 'Centre d''Ʃtudes internationales et europƩennes'),
(117208, 95425, 'en', 'name', 'Ministry of Steel'),
(117209, 95426, 'no_lang_code', 'name', 'Jilin Jiangji Special Industries Co., Ltd (China)'),
(117210, 95426, 'zh', 'name', 'å‰ęž—ę±Ÿęœŗē‰¹ē§å·„äøšęœ‰é™å…¬åø'),
(117211, 95427, 'en', 'name', 'Alberta Children''s Hospital Research Institute'),
(117212, 95428, 'no_lang_code', 'name', 'Medtronic (United States)'),
(117213, 95429, 'ca', 'name', 'AQU Catalunya'),
(117214, 95429, 'es', 'name', 'AgĆØncia per a la Qualitat del Sistema Universitari de Catalunya'),
(117215, 95430, 'ca', 'name', 'Institut de Recerca Sant Joan de DƩu'),
(117216, 95431, 'fr', 'name', 'Labex ARBRE'),
(117217, 95432, 'en', 'name', 'University of Puerto Rico, Medical Sciences Campus'),
(117218, 95432, 'es', 'name', 'Universidad de Puerto Rico, Recinto de Ciencias MƩdicas'),
(117219, 95433, 'en', 'name', 'Bristol General Hospital'),
(117220, 95434, 'ar', 'name', 'Ł…ŁƒŲŖŲØŲ© Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©'),
(117221, 95434, 'en', 'name', 'King Fahad National Library'),
(117222, 95435, 'en', 'name', 'International Ice Hockey Federation'),
(117223, 95436, 'en', 'name', 'Changchun Institute of Applied Chemistry'),
(117224, 95436, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢é•æę˜„åŗ”ē”ØåŒ–å­¦ē ”ē©¶ę‰€'),
(117225, 95437, 'en', 'name', 'Mission Museum'),
(117226, 95437, 'nl', 'name', 'Missiemuseum'),
(117227, 95438, 'en', 'name', 'IGRAC'),
(117228, 95439, 'bn', 'name', 'ą¦¬ą¦æą¦¶ą§ą¦¬ą§‡ą¦¶ą§ą¦¬ą¦°ą¦¾ą¦Æą¦¼ą¦¾ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(117229, 95439, 'en', 'name', 'Visvesvaraya Technological University'),
(117230, 95439, 'hi', 'name', 'ą¤µą¤æą¤¶ą„ą¤µą„‡ą¤¶ą„ą¤µą¤°ą¤Æą„ą¤Æą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(117231, 95439, 'kn', 'name', 'ą²µą²æą²¶ą³ą²µą³‡ą²¶ą³ą²µą²°ą²Æą³ą²Æ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(117232, 95439, 'ta', 'name', 'ą®µą®æą®øąÆą®µąÆ‡ą®øąÆą®µą®°ą®ÆąÆą®Æą®¾ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(117233, 95440, 'no_lang_code', 'name', 'Aptar (United States)'),
(117234, 95441, 'en', 'name', 'Geothermal Technologies Office'),
(117235, 95442, 'en', 'name', 'New Jersey Water Science Center'),
(117236, 95443, 'pt', 'name', 'Hospital UniversitƔrio Pedro Ernesto'),
(117237, 95444, 'en', 'name', 'Ural Federal University'),
(117238, 95444, 'ru', 'name', 'Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Ń„ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(117239, 95445, 'en', 'name', 'Institute of Plant Biochemistry and Photosynthesis'),
(117240, 95445, 'es', 'name', 'Instituto de BioquĆ­mica Vegetal y FotosĆ­ntesis'),
(117241, 95446, 'en', 'name', 'Office of Under Secretary for Science and Innovation'),
(117242, 95447, 'en', 'name', 'Office of the Chief Information Officer'),
(117243, 95448, 'en', 'name', 'Royal Seville Symphony Orchestra'),
(117244, 95448, 'es', 'name', 'Real Orquesta Sinfónica de Sevilla'),
(117245, 95449, 'fr', 'name', 'Nutrition et Alimentation des Populations aux Suds'),
(117246, 95450, 'en', 'name', 'Syreon Corporation'),
(117247, 95450, 'no_lang_code', 'name', 'Syreon Corporation (Canada)'),
(117248, 95451, 'en', 'name', 'Mercy''s Wing Foundation'),
(117249, 95452, 'en', 'name', 'Faculty of Mechanical Engineering and Naval Architecture in Zagreb'),
(117250, 95452, 'hr', 'name', 'Fakultet strojarstva i brodogradnje'),
(117251, 95453, 'en', 'name', 'Ho Technical University'),
(117252, 95454, 'da', 'name', 'Landbrugsstyrelsen'),
(117253, 95455, 'en', 'name', 'Clinical Research Network Thames Valley and South Midlands'),
(117254, 95456, 'en', 'name', 'Nordic International University'),
(117255, 95456, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет ŠŠ¾Ń€Š“ŠøŠŗ'),
(117256, 95456, 'uz', 'name', 'Xalqaro Nordik universiteti'),
(117257, 95457, 'en', 'name', 'Power Electronics and Industrial Control Research Group'),
(117258, 95457, 'fr', 'name', 'Groupe de recherche en Ʃlectronique de puissance et commande industrielle'),
(117259, 95458, 'fr', 'name', 'Laboratoire Interfaces et SystĆØmes Ɖlectrochimiques'),
(117260, 95459, 'en', 'name', 'University of Valle'),
(117261, 95459, 'es', 'name', 'Universidad del Valle'),
(117262, 95460, 'en', 'name', 'University of Colorado System'),
(117263, 95460, 'es', 'name', 'Universidad de Colorado'),
(117264, 95460, 'fr', 'name', 'UniversitƩ du Colorado'),
(117265, 95461, 'no_lang_code', 'name', 'CDI Laboratories (United States)'),
(117266, 95462, 'pt', 'name', 'Governo do Estado do Rio Grande do Sul'),
(117267, 95463, 'en', 'name', 'Washington Hospital'),
(117268, 95464, 'en', 'name', 'State Key Laboratory of Soil and Sustainable Agriculture'),
(117269, 95464, 'zh', 'name', 'åœŸå£¤äøŽå†œäøšåÆęŒē»­å‘å±•å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117270, 95465, 'de', 'name', 'AiF Projekt GmbH'),
(117271, 95466, 'en', 'name', 'Department of Agriculture, Fisheries and Forestry'),
(117272, 95467, 'es', 'name', 'Hospital Universitario de Guadalajara'),
(117273, 95468, 'en', 'name', 'Beijing Huajia University'),
(117274, 95469, 'en', 'name', 'Breast Cancer Action'),
(117275, 95470, 'en', 'name', 'St. Francis Hospital in Federal Way'),
(117276, 95471, 'en', 'name', 'State Key Laboratory of Microwave and Digital Communication Technology'),
(117277, 95471, 'zh', 'name', 'å¾®ę³¢äøŽę•°å­—é€šäæ”ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117278, 95472, 'en', 'name', 'Fedorovsky Polar State University'),
(117279, 95472, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š‘ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Š¾Šµ УчрежГение Š’Ń‹ŃŃˆŠµŠ³Š¾ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ā«Š·Š°ŠæŠ¾Š»ŃŃ€Š½Ń‹Š¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет Им. Š.М. ФеГоровского»'),
(117280, 95473, 'no_lang_code', 'name', 'China Railway Bridge and Tunnel Technologies Co. Ltd. (China)'),
(117281, 95473, 'zh', 'name', 'äø­é“ę”„éš§ęŠ€ęœÆęœ‰é™å…¬åø'),
(117282, 95474, 'en', 'name', 'U.S. Army Redstone Test Center'),
(117283, 95475, 'en', 'name', 'National Autism Association'),
(117284, 95476, 'es', 'name', 'Fundación Ignacio Larramendi'),
(117285, 95477, 'no_lang_code', 'name', 'Altice Portugal (Portugal)'),
(117286, 95478, 'en', 'name', 'Saudi Arabia Cultural Bureau in London'),
(117287, 95479, 'fr', 'name', 'Des Maladies RƩnales Rares aux Maladies FrƩquentes, Remodelage et RƩparation'),
(117288, 95480, 'en', 'name', 'Samarkand branch of Tashkent State University of Economics'),
(117289, 95480, 'ru', 'name', 'Филиал Š¢Š°ŃˆŠŗŠµŠ½Ń‚ского Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ Экономического Университета'),
(117290, 95480, 'uz', 'name', 'Toshkent davlat iqtisodiyot universiteti samarqand filiali'),
(117291, 95481, 'pt', 'name', 'Prefeitura da Cidade do Recife'),
(117292, 95482, 'no_lang_code', 'name', 'Regatron (Switzerland)'),
(117293, 95483, 'fr', 'name', 'Laboratoire de psychologie Caen Normandie'),
(117294, 95484, 'en', 'name', 'Office of Environmental Management'),
(117295, 95485, 'en', 'name', 'Laboratory Orofacial Pathologies, Imaging and Biotherapies'),
(117296, 95485, 'fr', 'name', 'Pathologie, Imagerie et BiothƩrapies orofaciales'),
(117297, 95486, 'en', 'name', 'Chan Zuckerberg Biohub San Francisco'),
(117298, 95487, 'en', 'name', 'Hunan Provincial Expressway Group Co., Ltd, Hunan Provincial Expressway Group Co., Ltd (China)'),
(117299, 95487, 'zh', 'name', 'ę¹–å—é«˜é€Ÿå…¬č·Æé›†å›¢ęœ‰é™å…¬åø'),
(117300, 95488, 'en', 'name', 'Langevin Institute'),
(117301, 95488, 'fr', 'name', 'Institut Langevin'),
(117302, 95489, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© جنات العراق'),
(117303, 95489, 'en', 'name', 'Jannat Iraq College'),
(117304, 95490, 'en', 'name', 'Ono Medical Research Foundation'),
(117305, 95491, 'en', 'name', 'Network for Oral and Bone Health Research'),
(117306, 95491, 'fr', 'name', 'RƩseau de Recherche en SantƩ Buccodentaire et Osseuse'),
(117307, 95492, 'en', 'name', 'Mindanao State University - Maguindanao'),
(117308, 95493, 'en', 'name', 'University of Hawaii Cancer Center'),
(117309, 95494, 'de', 'name', 'Verband der Chemischen Industrie'),
(117310, 95495, 'en', 'name', 'Federal University of PiauĆ­'),
(117311, 95495, 'pt', 'name', 'Universidade Federal do PiauĆ­'),
(117312, 95496, 'es', 'name', 'Hospital Virgen del Valle'),
(117313, 95497, 'en', 'name', 'State Key Laboratory of Integrated Service Network Theory and Key Technology'),
(117314, 95497, 'zh', 'name', 'ē»¼åˆäøšåŠ”ē½‘ē†č®ŗåŠå…³é”®ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117315, 95498, 'fr', 'name', 'Groupe d''Ɖtude des MĆ©thodes de l''Analyse Sociologique de la Sorbonne'),
(117316, 95499, 'en', 'name', 'Scientific Research WorkS Peer Support Group'),
(117317, 95500, 'en', 'name', 'China Institute of Water Resources and Hydropower Research'),
(117318, 95500, 'zh', 'name', 'äø­å›½ę°“åˆ©ę°“ē”µē§‘å­¦ē ”ē©¶é™¢'),
(117319, 95501, 'en', 'name', 'Amphibian Ark'),
(117320, 95502, 'fr', 'name', 'Laboratoire de Glycobiologie et Matrice Extracellulaire VƩgƩtale'),
(117321, 95503, 'en', 'name', 'Agricultural Research Institute'),
(117322, 95504, 'en', 'name', 'CHORUS'),
(117323, 95505, 'no_lang_code', 'name', 'IberEspacio (Spain)'),
(117324, 95506, 'ar', 'name', 'المدرسة Ų§Ł„Ł…Ų­Ł…ŲÆŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ†'),
(117325, 95506, 'fr', 'name', 'Ecole Mohammadia d''IngƩnieurs'),
(117326, 95507, 'fr', 'name', 'Laboratoire Printemps'),
(117327, 95508, 'en', 'name', 'Spanish Association for Standardisation and Certification'),
(117328, 95508, 'es', 'name', 'Asociación Española de Normalización y Certificación'),
(117329, 95509, 'en', 'name', 'U.S. Army Space and Missile Defense Command Technical Center'),
(117330, 95510, 'en', 'name', 'UTP Foundation'),
(117331, 95510, 'ms', 'name', 'Yayasan UTP'),
(117332, 95511, 'en', 'name', 'BIMM University'),
(117333, 95512, 'en', 'name', 'Office of Science'),
(117334, 95513, 'pt', 'name', 'Hospital UniversitƔrio Onofre Lopes'),
(117335, 95514, 'en', 'name', 'Suzhou Yongding Hospital'),
(117336, 95514, 'zh', 'name', 'ęµ·å‰äŗšč‹å·žę°øé¼ŽåŒ»é™¢'),
(117337, 95515, 'en', 'name', 'USC University Hospital Complex'),
(117338, 95515, 'es', 'name', 'Complejo Hospitalario Universitario de Santiago'),
(117339, 95516, 'fr', 'name', 'Patrimoines locaux, Environnement et Globalisation'),
(117340, 95517, 'en', 'name', 'Air Force Medical University'),
(117341, 95517, 'zh', 'name', 'ē©ŗå†›å†›åŒ»å¤§å­¦'),
(117342, 95518, 'ca', 'name', 'Fundació Bosch i Gimpera'),
(117343, 95519, 'de', 'name', 'Staatssekretariat für Bildung, Forschung und Innovation'),
(117344, 95519, 'en', 'name', 'State Secretariat for Education, Research and Innovation'),
(117345, 95519, 'fr', 'name', 'SecrĆ©tariat d''Ɖtat Ć  la formation, Ć  la recherche et Ć  l''innovation'),
(117346, 95519, 'it', 'name', 'Segreteria di Stato per la formazione, la ricerca e l''innovazione'),
(117347, 95520, 'en', 'name', 'University of Zagreb'),
(117348, 95520, 'hr', 'name', 'SveučiliŔte u Zagrebu'),
(117349, 95521, 'en', 'name', 'Office of Public Affairs'),
(117350, 95522, 'en', 'name', 'State Key Laboratory of Semiconductor Superlattice'),
(117351, 95522, 'zh', 'name', 'åŠåÆ¼ä½“č¶…ę™¶ę ¼å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117352, 95523, 'en', 'name', 'Sanitas A CoruƱa Medical Centre'),
(117353, 95523, 'es', 'name', 'Centro MƩdico Sanitas A CoruƱa'),
(117354, 95524, 'en', 'name', 'Achucarro Basque Center for Neuroscience'),
(117355, 95524, 'es', 'name', 'Centro Vasco de Investigación en Neurociencia'),
(117356, 95525, 'no_lang_code', 'name', 'Kurchatov Institute'),
(117357, 95525, 'ru', 'name', 'ŠšŃƒŃ€Ń‡Š°Ń‚Š¾Š²ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(117358, 95526, 'en', 'name', 'Grid Deployment Office'),
(117359, 95527, 'cs', 'name', 'Ústav hematologie a krevní transfuze'),
(117360, 95527, 'en', 'name', 'Institute of Haematology and Blood Transfusion'),
(117361, 95528, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† بصفاقس'),
(117362, 95528, 'en', 'name', 'National Engineering School of Sfax'),
(117363, 95528, 'fr', 'name', 'Ɖcole nationale d''IngĆ©nieurs de Sfax'),
(117364, 95529, 'de', 'name', 'Thüringer Ministerium für Wirtschaft, Wissenschaft und Digitale Gesellschaft'),
(117365, 95530, 'en', 'name', 'American Bird Conservancy'),
(117366, 95531, 'en', 'name', 'Patrick Berthoud Charitable Trust'),
(117367, 95532, 'en', 'name', 'NOAA National Centers for Environmental Prediction'),
(117368, 95533, 'en', 'name', 'Johnson Cancer Research Center'),
(117369, 95534, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†Ų³ŲŖŁŠŲ±'),
(117370, 95534, 'en', 'name', 'University of Monastir'),
(117371, 95534, 'fr', 'name', 'UniversitƩ de monastir'),
(117372, 95535, 'fr', 'name', 'Complications Cardiovasculaires et MƩtaboliques chez les patients vivant avec le VIH'),
(117373, 95536, 'en', 'name', 'Forestry and Agricultural Biotechnology Institute'),
(117374, 95537, 'en', 'name', 'State Key Laboratory of Medical Neurobiology'),
(117375, 95537, 'zh', 'name', 'åŒ»å­¦ē„žē»ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117376, 95538, 'en', 'name', 'Cooperative Research Units'),
(117377, 95539, 'en', 'name', 'Action to Cure Kidney Cancer'),
(117378, 95540, 'en', 'name', 'CHU Dinant Godinne UCL Namur'),
(117379, 95541, 'en', 'name', 'Institute of Particle and Nuclear Studies'),
(117380, 95541, 'ja', 'name', 'ē“ ē²’å­åŽŸå­ę øē ”ē©¶ę‰€'),
(117381, 95542, 'fr', 'name', 'Laboratoire de MinƩralogie & Cosmochimie du MusƩum'),
(117382, 95543, 'no_lang_code', 'name', 'Modul-Bio (France)'),
(117383, 95544, 'en', 'name', 'The Royal Children''s Hospital Foundation'),
(117384, 95545, 'en', 'name', 'State Key Laboratory of Isotope Geochemistry'),
(117385, 95545, 'zh', 'name', 'åŒä½ē“ åœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117386, 95546, 'en', 'name', 'Science and Research Centre of Koper'),
(117387, 95546, 'it', 'name', 'Centro di ricerche scientifiche Capodistria'),
(117388, 95546, 'sl', 'name', 'Znanstveno-raziskovalno srediŔče Koper'),
(117389, 95547, 'en', 'name', 'National Centre for Nuclear Research'),
(117390, 95548, 'en', 'name', 'Naval Research Laboratory Ocean Sciences Division'),
(117391, 95549, 'es', 'name', 'Universidad Nacional de Hurlingham'),
(117392, 95550, 'es', 'name', 'Observatorio CientĆ­fico Comercio Interior'),
(117393, 95551, 'en', 'name', 'Rubin'),
(117394, 95552, 'en', 'name', 'Atlas of Variant Effects Alliance'),
(117395, 95553, 'en', 'name', 'Academy of Neonatal Nursing'),
(117396, 95554, 'en', 'name', 'Presbyterian College of Education'),
(117397, 95555, 'en', 'name', 'IARIA'),
(117398, 95556, 'en', 'name', 'Office of Renewable Energy'),
(117399, 95557, 'en', 'name', 'Waltham Centre for Pet Nutrition'),
(117400, 95558, 'en', 'name', 'Huazhong University of Science and Technology'),
(117401, 95558, 'zh', 'name', 'åŽäø­ē§‘ęŠ€å¤§å­¦'),
(117402, 95559, 'no_lang_code', 'name', 'Abbott Nutrition (United States)'),
(117403, 95560, 'en', 'name', 'Federal University of ParaĆ­ba'),
(117404, 95560, 'pt', 'name', 'Universidade Federal da ParaĆ­ba'),
(117405, 95561, 'en', 'name', 'South Bristol Community Hospital'),
(117406, 95562, 'en', 'name', 'China Chemical Safety Association'),
(117407, 95562, 'zh', 'name', 'äø­å›½åŒ–å­¦å“å®‰å…Øåä¼š'),
(117408, 95563, 'en', 'name', 'Women University of Azad Jammu & Kashmir Bagh'),
(117409, 95564, 'fr', 'name', 'Laboratoire d''Informatique Algorithmique: Fondements et Applications'),
(117410, 95565, 'en', 'name', 'CamEd Business School'),
(117411, 95566, 'en', 'name', 'Illinois Department of Agriculture'),
(117412, 95567, 'en', 'name', 'Lyon Neuroscience Research Center'),
(117413, 95567, 'fr', 'name', 'Centre de Recherche en Neurosciences de Lyon'),
(117414, 95568, 'ca', 'name', 'Conselleria de Sanitat Universal i Salut PĆŗblica'),
(117415, 95568, 'es', 'name', 'Consejeria de Sanidad'),
(117416, 95569, 'en', 'name', 'RPH Research Foundation'),
(117417, 95570, 'en', 'name', 'Ministry of Interior'),
(117418, 95570, 'hu', 'name', 'Belügyminisztérium'),
(117419, 95571, 'en', 'name', 'Arrupe Jesuit University'),
(117420, 95572, 'es', 'name', 'Escuela Militar de IngenierĆ­a'),
(117421, 95573, 'ca', 'name', 'Institut de FĆ­sica InterdisciplinĆ ria i Sistemes Complexos'),
(117422, 95573, 'en', 'name', 'Institute for Cross-Disciplinary Physics and Complex Systems'),
(117423, 95573, 'es', 'name', 'Instituto de FĆ­sica Interdisciplinar y Sistemas Complejos'),
(117424, 95574, 'no_lang_code', 'name', 'Chunghwa Picture Tubes (Taiwan)'),
(117425, 95574, 'zh', 'name', 'äø­čÆę˜ ē®”č‚”ä»½ęœ‰é™å…¬åø'),
(117426, 95575, 'es', 'name', 'Universidad Mayor'),
(117427, 95576, 'en', 'name', 'Pacific Marine Resources Institute'),
(117428, 95577, 'en', 'name', 'Government of Pakistan'),
(117429, 95577, 'ur', 'name', 'Ų­Ś©ŁˆŁ…ŲŖŁ پاکستان'),
(117430, 95578, 'es', 'name', 'ConsejerĆ­a de EconomĆ­a, Conocimiento, Empresas y Universidad'),
(117431, 95579, 'en', 'name', 'Office of Energy Policy'),
(117432, 95580, 'en', 'name', 'Dalian Institute of Chemical Physics'),
(117433, 95580, 'zh', 'name', 'å¤§čæžåŒ–å­¦ē‰©ē†ē ”ē©¶ę‰€'),
(117434, 95581, 'en', 'name', 'State Key Laboratory of Oral Diseases'),
(117435, 95581, 'zh', 'name', 'å£č…”ē–¾ē—…ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117436, 95582, 'en', 'name', 'Wesley Research Institute'),
(117437, 95583, 'en', 'name', 'Sanitas Núñez de Balboa Medical Centre'),
(117438, 95583, 'es', 'name', 'Centro Médico Sanitas Núñez de Balboa'),
(117439, 95584, 'de', 'name', 'Fraunhofer-Institut für Offene Kommunikationssysteme'),
(117440, 95584, 'en', 'name', 'Fraunhofer Institute for Open Communication Systems'),
(117441, 95585, 'en', 'name', 'Foundation for Strategic Environmental Research'),
(117442, 95586, 'fr', 'name', 'GESTE - Gestion Territoriale de l''Eau et de l''Environnement'),
(117443, 95587, 'ca', 'name', 'Govern Basc'),
(117444, 95587, 'en', 'name', 'Basque Government'),
(117445, 95587, 'es', 'name', 'Gobierno Vasco'),
(117446, 95587, 'eu', 'name', 'Eusko Jaurlaritza'),
(117447, 95587, 'gl', 'name', 'Goberno Vasco'),
(117448, 95588, 'en', 'name', 'New Zealand Defence Force'),
(117449, 95589, 'en', 'name', 'Michigan Center for Urban African American Aging Research'),
(117450, 95590, 'de', 'name', 'UniversitƤtsmedizin der Johannes Gutenberg-UniversitƤt Mainz'),
(117451, 95590, 'en', 'name', 'University Medical Center of the Johannes Gutenberg University Mainz'),
(117452, 95591, 'pt', 'name', 'Fundação Catarinense de Educação Especial'),
(117453, 95592, 'id', 'name', 'STKIP Paris Barantai'),
(117454, 95593, 'en', 'name', 'Roswell Park Comprehensive Cancer Center'),
(117455, 95594, 'en', 'name', 'International Economic Association'),
(117456, 95595, 'en', 'name', 'Spallation Neutron Source'),
(117457, 95596, 'en', 'name', 'Ministry of Education'),
(117458, 95597, 'en', 'name', 'Puerto Rico Department of Education'),
(117459, 95597, 'es', 'name', 'Departamento de Educación de Puerto Rico'),
(117460, 95598, 'en', 'name', 'Combat Capabilities Development Command Soldier Center'),
(117461, 95599, 'en', 'name', 'FluxMagic, Inc.'),
(117462, 95599, 'no_lang_code', 'name', 'FluxMagic, Inc. (United States)'),
(117463, 95600, 'en', 'name', 'Eurographics'),
(117464, 95601, 'fr', 'name', 'Nutrition et obƩsitƩ : approches systƩmiques'),
(117465, 95602, 'en', 'name', 'Marie Curie Alumni Association'),
(117466, 95603, 'en', 'name', 'MƔlaga Superior Conservatory of Music'),
(117467, 95603, 'es', 'name', 'Conservatorio Superior de Música de MÔlaga'),
(117468, 95604, 'en', 'name', 'Trion Tec Radion, Trion Tec Radion (Brazil)'),
(117469, 95605, 'no_lang_code', 'name', 'Plexxikon (United States)'),
(117470, 95606, 'en', 'name', 'South Dakota Agricultural Experiment Station'),
(117471, 95607, 'ca', 'name', 'Gabinet d''Estudis Socials'),
(117472, 95608, 'en', 'name', 'Grace College & Seminary'),
(117473, 95609, 'en', 'name', 'State Key Laboratory of Networking and Switching Technology'),
(117474, 95609, 'zh', 'name', 'ē½‘ē»œäøŽäŗ¤ę¢ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117475, 95610, 'no_lang_code', 'name', 'Jiangsu Provincial Academy of Building Research (China)'),
(117476, 95610, 'zh', 'name', 'ę±Ÿč‹ēœå»ŗē­‘ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(117477, 95611, 'en', 'name', 'St. Louis Children''s Hospital'),
(117478, 95612, 'no_lang_code', 'name', 'Accentus Medical (United Kingdom)'),
(117479, 95613, 'en', 'name', 'Ministry of Public Works and Transport, Ministry of Transport, Mobility and Urban Agenda'),
(117480, 95613, 'es', 'name', 'Ministerio de Transportes, Movilidad y Agenda Urbana'),
(117481, 95614, 'de', 'name', 'Werner Siemens-Stiftung'),
(117482, 95614, 'en', 'name', 'Werner Siemens Foundation'),
(117483, 95615, 'it', 'name', 'Museo delle Scienze'),
(117484, 95616, 'en', 'name', 'Corewell Health Blodgett Hospital'),
(117485, 95617, 'es', 'name', 'Asociación de Amigos de la Universidad de Navarra'),
(117486, 95618, 'en', 'name', 'Donetsk State University'),
(117487, 95619, 'fr', 'name', 'Laboratoire d’informatique ParallĆ©lisme RĆ©seaux Algorithmes DistribuĆ©s'),
(117488, 95620, 'en', 'name', 'Nuclear Energy University Program'),
(117489, 95621, 'es', 'name', 'Confederacion EspaƱola de Organizaciones Empresariales del Metal'),
(117490, 95622, 'no_lang_code', 'name', 'Palobiofarma (Spain)'),
(117491, 95623, 'en', 'name', 'Western Geographic Science Center'),
(117492, 95624, 'en', 'name', 'National Center of Accelerators'),
(117493, 95624, 'es', 'name', 'Centro Nacional de Aceleradores'),
(117494, 95625, 'ko', 'name', 'ćˆœģ•„ģ“ģ„¼ģŠ¤ėŠ”'),
(117495, 95625, 'no_lang_code', 'name', 'i-Sense (South Korea)'),
(117496, 95626, 'en', 'name', 'Anatomical Society'),
(117497, 95627, 'en', 'name', 'Texas Heart Institute'),
(117498, 95628, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ł„ŁŠŁˆŲ§'),
(117499, 95628, 'en', 'name', 'Liwa College'),
(117500, 95629, 'en', 'name', 'Ministry of Defence'),
(117501, 95630, 'en', 'name', 'Lions Clubs International Foundation'),
(117502, 95631, 'es', 'name', 'Instituto de Ciencia de Materiales de Sevilla'),
(117503, 95632, 'no_lang_code', 'name', 'Robotnik (Spain)'),
(117504, 95633, 'no_lang_code', 'name', 'OPERAS'),
(117505, 95634, 'no_lang_code', 'name', 'Alstom (Spain)'),
(117506, 95635, 'no_lang_code', 'name', 'Telnet Redes Inteligentes (Spain)'),
(117507, 95636, 'no_lang_code', 'name', 'ZTE (China)'),
(117508, 95636, 'zh', 'name', 'äø­å…“é€šč®Æč‚”ä»½ęœ‰é™å…¬åø'),
(117509, 95637, 'fr', 'name', 'Direction des Sciences de la MatiĆØre'),
(117510, 95638, 'no_lang_code', 'name', 'Kanion Pharmaceutical (China)'),
(117511, 95638, 'zh', 'name', 'ę±Ÿč‹åŗ·ē¼˜čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(117512, 95639, 'en', 'name', 'International Institute for Nanotechnology'),
(117513, 95640, 'en', 'name', 'Ho Chi Minh City University of Economics and Finance'),
(117514, 95640, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ - TĆ i chĆ­nh ThĆ nh phố Hồ ChĆ­ Minh'),
(117515, 95641, 'en', 'name', 'Laboratory of Design and Control of Production Systems'),
(117516, 95641, 'fr', 'name', 'Laboratoire de conception et contrÓle des systèmes de production'),
(117517, 95642, 'de', 'name', 'Bayerisches Staatsministerium für Wirtschaft und Medien, Energie und Technologie'),
(117518, 95642, 'en', 'name', 'Bavarian Ministry of Economic Affairs and Media, Energy and Technology'),
(117519, 95643, 'en', 'name', 'Laboratory of Grenoble for Sciences of Conception, Optimisation and Production'),
(117520, 95643, 'fr', 'name', 'Laboratoire des Sciences pour la Conception, l''Optimisation et la Production'),
(117521, 95644, 'de', 'name', 'Augenklinik Universitätsklinikum Würzburg'),
(117522, 95645, 'no_lang_code', 'name', 'Thales (Italy)'),
(117523, 95646, 'en', 'name', 'Prostate Cancer Support Association of New Mexico'),
(117524, 95647, 'en', 'name', 'Society for the Study of Addiction'),
(117525, 95648, 'fr', 'name', 'Centre Expert en EndomƩtriose'),
(117526, 95649, 'ca', 'name', 'Centre de Visió per Computador'),
(117527, 95649, 'en', 'name', 'Computer Vision Center');
INSERT INTO `ror_settings` VALUES
(117528, 95650, 'en', 'name', 'State Key Laboratory of Materials-Oriented Chemical Engineering'),
(117529, 95650, 'zh', 'name', 'ęę–™åŒ–å­¦å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117530, 95651, 'de', 'name', 'Hochschule Wismar'),
(117531, 95651, 'en', 'name', 'Wismar University of Applied Sciences'),
(117532, 95652, 'en', 'name', 'Ascension'),
(117533, 95653, 'es', 'name', 'Centro de Investigación en Red en Enfermedades Cardiovasculares'),
(117534, 95654, 'en', 'name', 'International Cooperative for Research and Action on the Field of Communication'),
(117535, 95654, 'fr', 'name', 'Cooperative Internationale de Recherche et d’Action en matiĆØre de Communication'),
(117536, 95655, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المعرفة'),
(117537, 95655, 'no_lang_code', 'name', 'Almaarefa University'),
(117538, 95656, 'en', 'name', 'University of Insubria'),
(117539, 95656, 'fr', 'name', 'UniversitƩ de l''insubrie'),
(117540, 95656, 'it', 'name', 'UniversitĆ  degli Studi dell''Insubria'),
(117541, 95657, 'en', 'name', 'St Joseph''s Health Centre'),
(117542, 95658, 'en', 'name', 'FREYR Battery, FREYR Battery (Norway)'),
(117543, 95659, 'fr', 'name', 'Laboratoire de recherche en Management'),
(117544, 95660, 'en', 'name', 'Johns Hopkins University Press'),
(117545, 95661, 'en', 'name', 'State Key Laboratory of Kidney Diseases'),
(117546, 95661, 'zh', 'name', 'č‚¾č„ē–¾ē—…å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117547, 95662, 'en', 'name', 'Guangzhou Zengcheng District Traditional Chinese Medicine Hospital'),
(117548, 95662, 'zh', 'name', 'å¹æå·žåø‚å¢žåŸŽåŒŗäø­åŒ»åŒ»é™¢'),
(117549, 95663, 'en', 'name', 'NYU Langone’s Laura and Isaac Perlmutter Cancer Center'),
(117550, 95664, 'fr', 'name', 'Centre d''Ɖcologie et des Sciences de la Conservation'),
(117551, 95665, 'fr', 'name', 'Laboratoire Pluridisciplinaire de Recherche en Ingénierie des Systèmes, Mécanique et Energétique'),
(117552, 95666, 'en', 'name', 'National Yang Ming Chiao Tung University'),
(117553, 95667, 'fr', 'name', 'Institut de Chimie de Strasbourg'),
(117554, 95668, 'en', 'name', 'State University of CearĆ”'),
(117555, 95668, 'pt', 'name', 'Universidade Estadual do CearĆ”'),
(117556, 95669, 'en', 'name', 'Center for Alcohol Studies'),
(117557, 95670, 'en', 'name', 'Multimedia Nusantara University'),
(117558, 95670, 'id', 'name', 'Universitas Multimedia Nusantara'),
(117559, 95671, 'fr', 'name', 'Laboratoire Babel'),
(117560, 95672, 'en', 'name', 'Roche Pharma AG'),
(117561, 95672, 'no_lang_code', 'name', 'Roche Pharma AG (Germany)'),
(117562, 95673, 'en', 'name', 'National Transportation Library'),
(117563, 95674, 'es', 'name', 'Fundación para la innovación tecnológica'),
(117564, 95675, 'en', 'name', 'Team Survivor Northwest'),
(117565, 95676, 'en', 'name', 'Karpagam Academy of Higher Education'),
(117566, 95677, 'en', 'name', 'Alberta Children''s Hospital'),
(117567, 95678, 'en', 'name', 'NSWC Port Hueneme Division'),
(117568, 95679, 'en', 'name', 'State Key Laboratory of Hybrid Rice'),
(117569, 95679, 'zh', 'name', 'ę‚äŗ¤ę°“ēØ»å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117570, 95680, 'fr', 'name', 'BioingƩnierie, Tissus et NeuroplasticitƩ'),
(117571, 95681, 'en', 'name', 'Sanitas Fortuny Advanced Rehabilitation Centre'),
(117572, 95681, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Fortuny'),
(117573, 95682, 'no_lang_code', 'name', 'Avid Radiopharmaceuticals (United States)'),
(117574, 95683, 'de', 'name', 'Energieinstitut an der Johannes Kepler UniversitƤt Linz'),
(117575, 95684, 'de', 'name', 'Universität zu Lübeck'),
(117576, 95684, 'en', 'name', 'University of Lübeck'),
(117577, 95685, 'en', 'name', 'Marathwada Mitra Mandal''s College of Pharmacy'),
(117578, 95686, 'no_lang_code', 'name', 'Alstom (France)'),
(117579, 95687, 'en', 'name', 'Beaumont Eye Institute'),
(117580, 95688, 'en', 'name', 'State Key Laboratory of Cardiovascular Disease'),
(117581, 95688, 'zh', 'name', 'åæƒč”€ē®”ē–¾ē—…å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117582, 95689, 'es', 'name', 'Consejería de Educación de la Junta de Castilla y León'),
(117583, 95690, 'en', 'name', 'Southwestern Medical Center'),
(117584, 95691, 'no_lang_code', 'name', 'Laboratoire Dielen (France)'),
(117585, 95692, 'no_lang_code', 'name', 'Economia (Czechia)'),
(117586, 95693, 'fr', 'name', 'CƩgep de Saint-FƩlicien'),
(117587, 95694, 'de', 'name', 'Helmholtz-Institut für Funktionelle Marine Biodiversität'),
(117588, 95694, 'en', 'name', 'Helmholtz Institute for Functional Marine Biodiversity'),
(117589, 95695, 'en', 'name', 'Australian Centre for Research on Separation Science'),
(117590, 95696, 'en', 'name', 'State Key Laboratory of Special Cable Technology'),
(117591, 95696, 'zh', 'name', 'ē‰¹ē§ē”µē¼†ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117592, 95697, 'en', 'name', 'Western Canada Research Grid'),
(117593, 95698, 'fr', 'name', 'Laboratoire de Chimie ThƩorique'),
(117594, 95699, 'es', 'name', 'Universidad EAN'),
(117595, 95700, 'en', 'name', 'State Key Laboratory of Solid Lubrication'),
(117596, 95700, 'zh', 'name', 'å›ŗä½“ę¶¦ę»‘å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117597, 95701, 'en', 'name', 'Cancer Support Community'),
(117598, 95702, 'en', 'name', 'Institute for Tropical Technology'),
(117599, 95702, 'vi', 'name', 'Viện Kỹ thuįŗ­t nhiệt đới'),
(117600, 95703, 'en', 'name', 'State Key Laboratory of Nuclear Physics and Technology'),
(117601, 95703, 'zh', 'name', 'ę øē‰©ē†äøŽę øęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117602, 95704, 'en', 'name', 'CICON - Center for Innovation in Construction'),
(117603, 95704, 'pt', 'name', 'CICON - Centro para a Inovação na Construção'),
(117604, 95705, 'en', 'name', 'Galicia Biological Mission'),
(117605, 95705, 'es', 'name', 'Misión Biológica de Galicia'),
(117606, 95706, 'de', 'name', 'KRH Klinikum Nordstadt'),
(117607, 95706, 'en', 'name', 'Nordstadt Hospital'),
(117608, 95707, 'en', 'name', 'Academy of Science St. Louis'),
(117609, 95708, 'fr', 'name', 'Montpellier GenomiX'),
(117610, 95709, 'en', 'name', 'National Museum of Ethnology'),
(117611, 95709, 'ja', 'name', 'å›½ē«‹ę°‘ę—å­¦åšē‰©é¤Ø'),
(117612, 95710, 'en', 'name', 'Forest City People''s Hospital'),
(117613, 95711, 'no_lang_code', 'name', 'Pioneers Research and Consulting Group (Switzerland)'),
(117614, 95712, 'en', 'name', 'National University of General San MartĆ­n'),
(117615, 95712, 'es', 'name', 'Universidad Nacional de General San MartĆ­n'),
(117616, 95712, 'fr', 'name', 'UniversitƩ Nationale de San Martƭn'),
(117617, 95713, 'en', 'name', 'Citizens Specialty Hospitals'),
(117618, 95714, 'en', 'name', 'State Key Laboratory of Advanced Brazing Filler Metals and Technology'),
(117619, 95714, 'zh', 'name', 'ę–°åž‹é’Žē„Šęę–™äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117620, 95715, 'ar', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ Ų¬ŪŒŁ‡Ų§Ł† Ų³Ł„ŪŽŁ…Ų§Ł†ŪŒ'),
(117621, 95715, 'no_lang_code', 'name', 'Cihan University Sulaimaniya'),
(117622, 95716, 'en', 'name', 'Medical Research Council of Hungary'),
(117623, 95716, 'hu', 'name', 'Egészségügyi TudomÔnyos TanÔcs'),
(117624, 95717, 'bs', 'name', 'Univerzitet u Mostaru'),
(117625, 95717, 'en', 'name', 'University of Mostar'),
(117626, 95717, 'hr', 'name', 'SveučiliŔte u Mostaru'),
(117627, 95717, 'sr', 'name', 'Универзитет у ŠœŠ¾ŃŃ‚Š°Ń€Ńƒ'),
(117628, 95718, 'en', 'name', 'Institute of Acoustics'),
(117629, 95718, 'zh', 'name', '中国科学院声学研究所'),
(117630, 95719, 'fr', 'name', 'CREA Mont-Blanc'),
(117631, 95720, 'en', 'name', 'Bosom Buddies Charities'),
(117632, 95721, 'fr', 'name', 'Centre d''Analyse et de MathƩmatique Sociales'),
(117633, 95722, 'en', 'name', 'Commonwealth of Learning'),
(117634, 95723, 'fr', 'name', 'GƩnƩtique et Immunologie des Maladies Parasitaires'),
(117635, 95724, 'es', 'name', 'Centro Científico Tecnológico - Tandil'),
(117636, 95725, 'no_lang_code', 'name', 'Ethnographic Museum'),
(117637, 95726, 'en', 'name', 'Banner MD Anderson Cancer Center at Banner McKee Medical Center'),
(117638, 95727, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ų§Ų²ŁŠ'),
(117639, 95727, 'en', 'name', 'Elrazi University'),
(117640, 95728, 'es', 'name', 'Cabildo de La Palma'),
(117641, 95729, 'en', 'name', 'State Key Laboratory of High-Speed Railway Track Technology'),
(117642, 95729, 'zh', 'name', 'é«˜é€Ÿé“č·Æč½Øé“ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117643, 95730, 'en', 'name', 'Division of Cancer Epidemiology and Genetics'),
(117644, 95731, 'en', 'name', 'California Department of Conservation'),
(117645, 95732, 'en', 'name', 'State Key Laboratory of Lithospheric Evolution'),
(117646, 95732, 'zh', 'name', 'å²©ēŸ³åœˆę¼”åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117647, 95733, 'de', 'name', 'Ministerium für Kultus, Jugend und Sport Baden-Württemberg'),
(117648, 95734, 'en', 'name', 'Encompass Health, Encompass Health (United States)'),
(117649, 95735, 'en', 'name', 'National Center of Competence in Research Materials’ Revolution: Computational Design and Discovery of Novel Materials'),
(117650, 95736, 'en', 'name', 'Elite School of Optometry'),
(117651, 95737, 'en', 'name', 'Oceanum Ltd, Oceanum Ltd (New Zealand)'),
(117652, 95738, 'en', 'name', 'Laboratory of Images, Signals and Intelligent Systems'),
(117653, 95738, 'fr', 'name', 'Laboratoire Images, signaux et systĆØmes intelligents'),
(117654, 95739, 'en', 'name', 'MUSC Hollings Cancer Center'),
(117655, 95740, 'fr', 'name', 'Ecole SupƩrieure d''Agronomie Mostaganem'),
(117656, 95741, 'es', 'name', 'Centro Universitario Franciscano'),
(117657, 95741, 'pt', 'name', 'Universidade Franciscana'),
(117658, 95742, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų·ŁˆŲ³ŁŠ الجامعة'),
(117659, 95742, 'en', 'name', 'Altoosi University College'),
(117660, 95743, 'fr', 'name', 'Centre Paul Albert-FƩvrier'),
(117661, 95744, 'en', 'name', 'Andijan State Pedagogical Institute'),
(117662, 95744, 'no_lang_code', 'name', 'Andijon Davlat Pedagogika instituti'),
(117663, 95745, 'fr', 'name', 'Laboratoire de SƩcuritƩ des ProcƩdƩs Chimiques'),
(117664, 95746, 'en', 'name', 'University of Puerto Rico-Mayaguez'),
(117665, 95746, 'es', 'name', 'Recinto Universitario de Mayagüez'),
(117666, 95747, 'de', 'name', 'FORS – Schweizer Kompetenzzentrum Sozialwissenschaften'),
(117667, 95747, 'en', 'name', 'FORS – Swiss Centre of Expertise in the Social Sciences'),
(117668, 95747, 'fr', 'name', 'FORS – Centre de compĆ©tences Suisse en sciences sociales'),
(117669, 95748, 'no_lang_code', 'name', 'TRW (United States)'),
(117670, 95749, 'en', 'name', 'Kedge Business School'),
(117671, 95750, 'ca', 'name', 'Institut BotĆ nic de Barcelona'),
(117672, 95750, 'es', 'name', 'Instituto BotƔnico de Barcelona'),
(117673, 95751, 'en', 'name', 'City Council of Seville'),
(117674, 95751, 'es', 'name', 'Ayuntamiento de Sevilla'),
(117675, 95752, 'en', 'name', 'Arc Research Institute'),
(117676, 95753, 'en', 'name', 'State Key Laboratory of Mobile Communications'),
(117677, 95753, 'zh', 'name', 'ē§»åŠØé€šäæ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117678, 95754, 'es', 'name', 'Metro Bilbao, Metro de Bilbao'),
(117679, 95754, 'eu', 'name', 'Bilboko metroa'),
(117680, 95755, 'en', 'name', 'U.S. Army Corp of Engineers Waterways Experiment Station'),
(117681, 95756, 'en', 'name', 'Osher Center for Integrative Medicine'),
(117682, 95757, 'en', 'name', 'State Key Laboratory of Pulsed Power Laser Technology'),
(117683, 95757, 'zh', 'name', 'č„‰å†²åŠŸēŽ‡ęæ€å…‰ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117684, 95758, 'es', 'name', 'Hospital Universitario de Toledo'),
(117685, 95759, 'fr', 'name', 'Institut des Textes et Manuscrits Modernes'),
(117686, 95760, 'de', 'name', 'Instituts für Life Sciences'),
(117687, 95760, 'en', 'name', 'Institute of Life Sciences'),
(117688, 95760, 'fr', 'name', 'Institut Sciences du vivant'),
(117689, 95761, 'en', 'name', 'Queen Elizabeth Hospital'),
(117690, 95762, 'en', 'name', 'State Key Laboratory of Biotherapy'),
(117691, 95762, 'zh', 'name', 'ē”Ÿē‰©ę²»ē–—å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117692, 95763, 'en', 'name', 'BGMEA University of Fashion & Technology'),
(117693, 95764, 'fr', 'name', 'IMAGES : La mĆ©decine de la femme et de l’enfant assistĆ©e par l’image'),
(117694, 95765, 'en', 'name', 'Central Asian University'),
(117695, 95766, 'en', 'name', 'Jean-Pierre Aubert Research Center'),
(117696, 95766, 'fr', 'name', 'Centre de Recherche Jean Pierre Aubert'),
(117697, 95767, 'en', 'name', 'National Council for Scientific Research'),
(117698, 95768, 'en', 'name', 'State Key Laboratory of Organic Geochemistry'),
(117699, 95768, 'zh', 'name', 'ęœ‰ęœŗåœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117700, 95769, 'fr', 'name', 'Institut des Sciences de la Terre de Paris'),
(117701, 95770, 'en', 'name', 'InterAmerican University of Puerto Rico'),
(117702, 95770, 'es', 'name', 'Universidad Interamericana de Puerto Rico'),
(117703, 95771, 'en', 'name', 'Bell'),
(117704, 95771, 'no_lang_code', 'name', 'Bell (Canada)'),
(117705, 95772, 'en', 'name', 'Physiology, Ecology, Environment'),
(117706, 95772, 'fr', 'name', 'Physiologie, Ecologie et Environnement'),
(117707, 95773, 'en', 'name', 'Iranian Research Institute for Information Science and Technology'),
(117708, 95773, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų¹Ł„ŁˆŁ… و ŁŁ†Ų§ŁˆŲ±ŪŒ اطلاعات Ų§ŪŒŲ±Ų§Ł†'),
(117709, 95774, 'en', 'name', 'Israel Institute'),
(117710, 95775, 'en', 'name', 'Texas Advanced Computing Center'),
(117711, 95776, 'en', 'name', 'Debbie''s Dream Foundation'),
(117712, 95777, 'fr', 'name', 'GƩnome QuƩbec'),
(117713, 95778, 'es', 'name', 'Instituto de Acuicultura Torre de la Sal'),
(117714, 95779, 'en', 'name', 'Canadian Lyme Disease Foundation'),
(117715, 95779, 'fr', 'name', 'Fondation canadienne de la maladie de Lyme'),
(117716, 95780, 'en', 'name', 'NHS Commissioning Board, NHS England'),
(117717, 95781, 'en', 'name', 'Suzhou Hongyuan Biotech Inc., Suzhou Hongyuan Biotech Inc. (China)'),
(117718, 95781, 'zh', 'name', 'č‹å·žå®å…ƒē”Ÿē‰©ē§‘ęŠ€ęœ‰é™å…¬åø'),
(117719, 95782, 'de', 'name', 'Leibniz-Institut für Immuntherapie'),
(117720, 95782, 'en', 'name', 'Leibniz Institute for Immunotherapy'),
(117721, 95783, 'es', 'name', 'Instituto Universitario de Ciencias de la Educación'),
(117722, 95784, 'en', 'name', 'Kids Brain Health Network'),
(117723, 95784, 'fr', 'name', 'RƩseau pour la SantƩ du Cerveau des Enfants'),
(117724, 95785, 'it', 'name', 'Governo Italiano'),
(117725, 95786, 'en', 'name', 'State Key Laboratory of Nonlinear Mechanics'),
(117726, 95786, 'zh', 'name', 'éžēŗæę€§åŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117727, 95787, 'en', 'name', 'Leukaemia UK'),
(117728, 95788, 'en', 'name', 'JSS Dental College and Hospital'),
(117729, 95789, 'en', 'name', 'Tamale Technical University'),
(117730, 95790, 'en', 'name', 'NCCR SwissMAP'),
(117731, 95791, 'no_lang_code', 'name', 'Going Green (Spain)'),
(117732, 95792, 'en', 'name', 'Institute of Computing and Data Sciences'),
(117733, 95792, 'fr', 'name', 'Institut des Sciences du Calcul et des DonnƩes'),
(117734, 95793, 'no_lang_code', 'name', 'Scapa Healthcare (United Kingdom)'),
(117735, 95794, 'en', 'name', 'Starr King School for the Ministry'),
(117736, 95795, 'fr', 'name', 'Institut de Recherche en Systèmes Electroniques Embarqués'),
(117737, 95796, 'en', 'name', 'Alaska Climate Adaptation Science Center'),
(117738, 95797, 'es', 'name', 'Instituto de Fermentaciones Industriales'),
(117739, 95798, 'en', 'name', 'Ministry of Health'),
(117740, 95798, 'es', 'name', 'Ministerio de Sanidad Servicios Sociales e Igualdad'),
(117741, 95799, 'en', 'name', 'Southern Marine Science and Engineering Guangdong Laboratory (Guangzhou)'),
(117742, 95799, 'zh', 'name', 'å—ę–¹ęµ·ę“‹ē§‘å­¦äøŽå·„ēØ‹å¹æäøœēœå®žéŖŒå®¤ (å¹æå·ž)'),
(117743, 95800, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ на Š½Š°ŃƒŠŗŠøŃ‚е Šø ŠøŠ·ŠŗŃƒŃŃ‚Š²Š°Ń‚Š°'),
(117744, 95800, 'en', 'name', 'Bulgarian Academy of Sciences and Arts'),
(117745, 95801, 'en', 'name', 'Spanish Polar Data Centre'),
(117746, 95801, 'es', 'name', 'Centro Nacional de Datos Polares'),
(117747, 95802, 'fr', 'name', 'HƓpital Armand-Trousseau'),
(117748, 95803, 'en', 'name', 'Emory Healthcare'),
(117749, 95804, 'ja', 'name', 'ć‚¢ćƒ«ć‚±ć‚¢ę Ŗå¼ä¼šē¤¾'),
(117750, 95804, 'no_lang_code', 'name', 'Alcare (Japan)'),
(117751, 95805, 'en', 'name', 'Royal Botanic Gardens, Kew'),
(117752, 95806, 'es', 'name', 'Ministerio de Educación y Cultura'),
(117753, 95807, 'en', 'name', 'Stanford Maternal and Child Health Research Institute'),
(117754, 95808, 'en', 'name', 'Vitoria-Gasteiz City Council'),
(117755, 95808, 'es', 'name', 'Ayuntamiento de Vitoria-Gasteiz'),
(117756, 95808, 'eu', 'name', 'Vitoria-Gasteizko Udala'),
(117757, 95809, 'en', 'name', 'University of Puerto Rico at Cayey'),
(117758, 95810, 'no_lang_code', 'name', 'Weichai Power (China)'),
(117759, 95810, 'zh', 'name', 'ę½ęŸ“åŠØåŠ›'),
(117760, 95811, 'en', 'name', 'California Department of Alcohol and Drug Programs'),
(117761, 95812, 'en', 'name', 'State Key Laboratory of New Technology of Pharmaceutical Preparations'),
(117762, 95812, 'zh', 'name', 'čÆē‰©åˆ¶å‰‚ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117763, 95813, 'no_lang_code', 'name', 'John Benjamins Publishing Company (Netherlands)'),
(117764, 95814, 'fr', 'name', 'Institut de Recherche en Energie Electrique de Nantes Atlantique'),
(117765, 95815, 'en', 'name', 'Northwest University'),
(117766, 95815, 'zh', 'name', 'č„æåŒ—å¤§å­¦'),
(117767, 95816, 'ja', 'name', 'å‚å¤©č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(117768, 95816, 'no_lang_code', 'name', 'Santen (France)'),
(117769, 95817, 'en', 'name', 'St. John''s College, Palayamkottai'),
(117770, 95817, 'ta', 'name', 'தூய ą®ÆąÆ‹ą®µą®¾ą®©ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ, ą®Ŗą®¾ą®³ąÆˆą®Æą®™ąÆą®•ąÆ‹ą®ŸąÆą®ŸąÆˆ'),
(117771, 95818, 'en', 'name', 'Breakthrough Discoveries for thriving with Bipolar Disorder'),
(117772, 95819, 'es', 'name', 'Instituto Forestal'),
(117773, 95820, 'it', 'name', 'Centro di Ricerca per l’Orticoltura'),
(117774, 95821, 'en', 'name', 'Department of Health Research'),
(117775, 95821, 'hi', 'name', 'ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø विभाग'),
(117776, 95822, 'en', 'name', 'Center for Research and Studies in the Dialogue of Cultures and Comparative Religions'),
(117777, 95822, 'fr', 'name', 'Centre de Recherches et des Etudes pour le Dialogue des Civilisations et des Religions Comparees'),
(117778, 95823, 'en', 'name', 'Shanghai Ship and Shipping Research Institute'),
(117779, 95823, 'zh', 'name', 'äøŠęµ·čˆ¹čˆ¶čæč¾“ē§‘å­¦ē ”ē©¶ę‰€ęˆ'),
(117780, 95824, 'en', 'name', 'Fort Collins Science Center'),
(117781, 95825, 'bn', 'name', 'ą¦°ą¦¬ą§€ą¦Øą§ą¦¦ą§ą¦° ą¦®ą§ˆą¦¤ą§ą¦°ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(117782, 95825, 'en', 'name', 'Rabindra Maitree University'),
(117783, 95826, 'fr', 'name', 'Cognition, SantƩ, SociƩtƩ'),
(117784, 95827, 'ca', 'name', 'Ajuntament de Barcelona'),
(117785, 95827, 'en', 'name', 'Barcelona City Council'),
(117786, 95827, 'es', 'name', 'Ayuntamiento de Barcelona'),
(117787, 95828, 'en', 'name', 'Ministry of Agrarian Policy and Food'),
(117788, 95828, 'uk', 'name', 'ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ аграрної політики та ŠæŃ€Š¾Š“Š¾Š²Š¾Š»ŃŒŃŃ‚Š²Š°'),
(117789, 95829, 'en', 'name', 'Wuhan Institute of Physics and Mathematics'),
(117790, 95829, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę­¦ę±‰ē‰©ē†äøŽę•°å­¦ē ”ē©¶ę‰€'),
(117791, 95830, 'fr', 'name', 'Centre d''Ʃtudes franco-russe de Moscou'),
(117792, 95830, 'ru', 'name', 'Центр франко-российских исслеГований'),
(117793, 95831, 'en', 'name', 'Georgian International University'),
(117794, 95831, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ”įƒįƒ”įƒ įƒ—įƒįƒØįƒįƒ įƒ˜įƒ”įƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(117795, 95832, 'en', 'name', 'CHI Health St. Francis'),
(117796, 95833, 'es', 'name', 'Ministerio de la Presidencia, Relaciones con las Cortes y Memoria DemocrƔtica'),
(117797, 95834, 'en', 'name', 'Southwest Biological Science Center'),
(117798, 95835, 'en', 'name', 'Institute of Physical and Information Technologies "Leonardo Torres Quevedo"'),
(117799, 95835, 'es', 'name', 'Instituto de TecnologĆ­as FĆ­sicas y de la Información ā€œLeonardo Torres Quevedoā€'),
(117800, 95836, 'en', 'name', 'National Academy of Psychology'),
(117801, 95837, 'en', 'name', 'Puerto Rico Administration of Mental Health and Anti-Addiction Services'),
(117802, 95837, 'es', 'name', 'Administración de Servicios de Salud Mental y Contra la Adicción'),
(117803, 95838, 'en', 'name', 'National Academy of Neuropsychology'),
(117804, 95839, 'no_lang_code', 'name', 'AMES Group (Spain)'),
(117805, 95840, 'en', 'name', 'Sherbrooke Research and Development Centre'),
(117806, 95840, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Sherbrooke'),
(117807, 95841, 'en', 'name', 'William & Ella Owens Medical Research Foundation'),
(117808, 95842, 'en', 'name', 'Telford College'),
(117809, 95843, 'en', 'name', 'University of Silesia in Katowice'),
(117810, 95844, 'en', 'name', 'National Science Library'),
(117811, 95845, 'en', 'name', 'Royal Library of Belgium'),
(117812, 95845, 'fr', 'name', 'BibliothĆØque Royale de Belgique'),
(117813, 95845, 'nl', 'name', 'Koninklijke Bibliotheek Belgiƫ'),
(117814, 95846, 'en', 'name', 'Orlando College of Osteopathic Medicine'),
(117815, 95847, 'en', 'name', 'Boston Medical Center'),
(117816, 95848, 'az', 'name', 'Azərbaycan Texnologiya Universiteti'),
(117817, 95848, 'en', 'name', 'University of Technology of Azerbaijan'),
(117818, 95848, 'ru', 'name', 'АзербайГжанский Технологический Университет'),
(117819, 95849, 'de', 'name', 'Deutsches Rettungsrobotik-Zentrum'),
(117820, 95850, 'en', 'name', 'State Key Laboratory of Optoelectronic Materials and Technology'),
(117821, 95850, 'zh', 'name', 'å…‰ē”µęę–™äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117822, 95851, 'en', 'name', 'Swiss Vaccine Research Institute'),
(117823, 95852, 'en', 'name', 'Ministry of the Interior and Safety'),
(117824, 95852, 'ko', 'name', 'ķ–‰ģ •ģ•ˆģ „ė¶€'),
(117825, 95853, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų®Ł„ŁŠŲ¬'),
(117826, 95853, 'en', 'name', 'Gulf College'),
(117827, 95854, 'en', 'name', 'New Brunswick Museum'),
(117828, 95854, 'fr', 'name', 'MusƩe du Nouveau-Brunswick'),
(117829, 95855, 'no_lang_code', 'name', 'New Infrared Technologies (Spain)'),
(117830, 95856, 'en', 'name', 'Jinnah Sindh Medical University'),
(117831, 95856, 'ur', 'name', 'جناح سندھ Ł…ŪŒŚˆ ŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(117832, 95857, 'en', 'name', 'State Key Laboratory of Drug Creation and Pharmaceutical Process'),
(117833, 95857, 'zh', 'name', 'åˆ›ę–°čÆē‰©äøŽåˆ¶čÆå·„č‰ŗå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117834, 95858, 'en', 'name', 'UK Brain Tumour Society'),
(117835, 95859, 'en', 'name', 'Research Center for Colloids and Nanoscience'),
(117836, 95859, 'it', 'name', 'Consorzio Interuniversitario per lo Sviluppo dei Sistemi a Grande Interfase'),
(117837, 95860, 'en', 'name', 'Integrated Marine Observing System'),
(117838, 95861, 'en', 'name', 'National Science Foundation of Sri Lanka'),
(117839, 95861, 'si', 'name', 'ą¶¢ą·ą¶­ą·’ą¶š ą·€ą·’ą¶Æą·Šā€ą¶ŗą· ඓදනම, ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą·ą·€'),
(117840, 95862, 'en', 'name', 'Thu Dau Mot University'),
(117841, 95862, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Thį»§ Dįŗ§u Mį»™t'),
(117842, 95863, 'es', 'name', 'Instituto de Investigaciones de la AmazonĆ­a Peruana'),
(117843, 95864, 'en', 'name', 'Institute of Plant Protection'),
(117844, 95864, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ę¤ē‰©äæęŠ¤ē ”ē©¶ę‰€'),
(117845, 95865, 'en', 'name', 'Cancer Foundation Finland'),
(117846, 95865, 'fi', 'name', 'SyƶpƤsƤƤtiƶ'),
(117847, 95865, 'sv', 'name', 'Cancerstiftelsen'),
(117848, 95866, 'en', 'name', 'Office of Biological and Environmental Research'),
(117849, 95867, 'en', 'name', 'World Wildlife Fund'),
(117850, 95868, 'no_lang_code', 'name', 'Loral Space & Communications (United States)'),
(117851, 95869, 'en', 'name', 'Medical College of Wisconsin Cancer Center'),
(117852, 95870, 'en', 'name', 'National University of Uzbekistan'),
(117853, 95870, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Узбекистана'),
(117854, 95870, 'uz', 'name', 'Oʻzbekiston Milliy Universiteti'),
(117855, 95871, 'en', 'name', 'University of Indonesia'),
(117856, 95871, 'id', 'name', 'Universitas Indonesia'),
(117857, 95872, 'es', 'name', 'Complejo Hospitalario de Navarra'),
(117858, 95873, 'en', 'name', 'Engineers Australia'),
(117859, 95874, 'de', 'name', 'Schweizerische Akademie der Medizinischen Wissenschaften'),
(117860, 95874, 'en', 'name', 'Swiss Academy of Medical Sciences'),
(117861, 95875, 'en', 'name', 'California Department of Public Health'),
(117862, 95875, 'es', 'name', 'Departamento de Salud PĆŗblica de California'),
(117863, 95876, 'da', 'name', 'NƦstved Sygehus'),
(117864, 95876, 'en', 'name', 'NƦstved Hospital'),
(117865, 95877, 'en', 'name', 'Chinese People''s Armed Police Force'),
(117866, 95877, 'zh', 'name', 'äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜Ÿ'),
(117867, 95878, 'en', 'name', 'U.S. Army Combat Capabilities Development Command Armaments Center'),
(117868, 95879, 'en', 'name', 'Epidemiology in dermatology and evaluation of therapeutics'),
(117869, 95880, 'fr', 'name', 'Handicap moteur et cognitif et rƩadaptation'),
(117870, 95881, 'en', 'name', 'DEVCOM Army Research Laboratory'),
(117871, 95882, 'ca', 'name', 'Centre de Recerca en Sanitat Animal'),
(117872, 95883, 'en', 'name', 'Catholic Health Initiatives'),
(117873, 95884, 'fr', 'name', 'Histoire et ArchƩologie Maritimes'),
(117874, 95885, 'en', 'name', 'Agricultural Research Institute of Ontario'),
(117875, 95885, 'fr', 'name', 'Institut de Recherche Agricole de l''Ontario'),
(117876, 95886, 'en', 'name', 'World Meteorological Organization'),
(117877, 95886, 'es', 'name', 'Organización Meteorológica Mundial'),
(117878, 95886, 'fr', 'name', 'Organisation mƩtƩorologique mondiale'),
(117879, 95887, 'en', 'name', 'Shanghai Institutes for Biological Sciences'),
(117880, 95887, 'zh', 'name', 'äøŠęµ·ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(117881, 95888, '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'),
(117882, 95889, 'en', 'name', 'OCP Foundation'),
(117883, 95889, 'fr', 'name', 'Fondation OCP'),
(117884, 95890, 'es', 'name', 'Universidad Nacional PolitƩcnica'),
(117885, 95891, 'en', 'name', 'Corvus Energy, Corvus Energy (Norway)'),
(117886, 95892, 'es', 'name', 'Prisma'),
(117887, 95893, 'pt', 'name', 'ACATE - Associação Catarinense de Tecnologia'),
(117888, 95894, 'en', 'name', 'Sanitas Montecarmelo Medical Centre'),
(117889, 95894, 'es', 'name', 'Centro MƩdico Sanitas Montecarmelo'),
(117890, 95895, 'en', 'name', 'Centre for Industrial Technological Development'),
(117891, 95895, 'es', 'name', 'Centro para el Desarrollo Tecnologico Industrial'),
(117892, 95896, 'en', 'name', 'UNSW Canberra'),
(117893, 95897, 'en', 'name', 'Northwest Institute of Rare Metal Materials'),
(117894, 95897, 'zh', 'name', 'č„æåŒ—ēØ€ęœ‰é‡‘å±žęę–™ē ”ē©¶ę‰€'),
(117895, 95898, 'en', 'name', 'The Human Diagnosis Project'),
(117896, 95899, 'es', 'name', 'Centro de Investigación y Desarrollo'),
(117897, 95900, 'en', 'name', 'State Key Laboratory of Complex Electromagnetic Environment Effects on Electronics and Information System'),
(117898, 95900, 'zh', 'name', 'ē”µå­äæ”ęÆē³»ē»Ÿå¤ę‚ē”µē£ēŽÆå¢ƒę•ˆåŗ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117899, 95901, 'en', 'name', 'State Key Laboratory of Information Security'),
(117900, 95901, 'zh', 'name', 'äæ”ęÆå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117901, 95902, 'en', 'name', 'Intelligent Transportation Systems Joint Program Office'),
(117902, 95903, 'no_lang_code', 'name', 'Leidos (United States)'),
(117903, 95904, 'en', 'name', 'Shanghai Conservatory of Music'),
(117904, 95904, 'zh', 'name', 'äøŠęµ·éŸ³ä¹å­¦é™¢'),
(117905, 95905, 'no_lang_code', 'name', 'SCOAP3'),
(117906, 95906, 'en', 'name', 'Santander Universities'),
(117907, 95907, 'en', 'name', 'Dinghushan National Nature Reserve'),
(117908, 95907, 'zh', 'name', 'é¼Žę¹–å±±å›½å®¶ēŗ§č‡Ŗē„¶äæęŠ¤åŒŗ'),
(117909, 95908, 'en', 'name', 'Cajal Institute'),
(117910, 95908, 'es', 'name', 'Instituto Cajal'),
(117911, 95909, 'fr', 'name', 'Centre d''Etudes et de Recherche sur le MƩdicament de Normandie'),
(117912, 95910, 'en', 'name', 'Bath Clinic'),
(117913, 95911, 'en', 'name', 'Montana Wheat and Barley Committee'),
(117914, 95912, 'en', 'name', 'Cullinan Oncology, Cullinan Oncology (United States)'),
(117915, 95913, 'es', 'name', 'Universidad de Moa'),
(117916, 95914, 'en', 'name', 'National Heart Lung and Blood Institute'),
(117917, 95915, 'en', 'name', 'International Arctic Research Center'),
(117918, 95916, 'en', 'name', 'Cornell University Agricultural Experiment Station'),
(117919, 95917, 'id', 'name', 'STAI Miftahul Huda Al-Azhar Kota Banjar'),
(117920, 95918, 'no_lang_code', 'name', 'Acerinox (Spain)'),
(117921, 95919, 'en', 'name', 'Tianjin University'),
(117922, 95919, 'zh', 'name', '天擄大学'),
(117923, 95920, 'en', 'name', 'Rift Valley Technical Training Institute'),
(117924, 95921, 'en', 'name', 'Blueprint for Neuroscience Research'),
(117925, 95922, 'en', 'name', 'Mayo Clinic Comprehensive Cancer Center (Minnesota)'),
(117926, 95923, 'fr', 'name', 'Centre de GƩnie Industriel'),
(117927, 95924, 'en', 'name', 'Unity Health Toronto'),
(117928, 95925, 'en', 'name', 'Eastern Kentucky University'),
(117929, 95926, 'de', 'name', 'Paracelsus-Harz-Klinik Bad Suderode'),
(117930, 95927, 'dz', 'name', 'གེ་སར་རྒྱལ་པོ་གསོ་རིག་གཙནག་ལག་སློབ་སྔེའི'),
(117931, 95927, 'en', 'name', 'Khesar Gyalpo University of Medical Sciences of Bhutan'),
(117932, 95928, 'en', 'name', 'Dalle Molle Institute for Artificial Intelligence Research'),
(117933, 95928, 'it', 'name', 'Istituto Dalle Molle di Studi sull''Intelligenza Artificiale'),
(117934, 95929, 'es', 'name', 'Universidad Tecnológica del Centro de Veracruz'),
(117935, 95930, 'en', 'name', 'Neurofibromatosis Therapeutic Acceleration Program'),
(117936, 95931, 'en', 'name', 'Northern Prairie Wildlife Research Center'),
(117937, 95932, 'fr', 'name', 'Onco-Urologie PrƩdictive'),
(117938, 95933, 'en', 'name', 'Oxford University Clinical Research Unit Indonesia'),
(117939, 95934, 'en', 'name', 'Guilin Tourism University'),
(117940, 95934, 'zh', 'name', 'ę”‚ęž—ę—…ęøøå­¦é™¢'),
(117941, 95935, 'en', 'name', 'Engarouines Observatory'),
(117942, 95935, 'fr', 'name', 'Observatoire des Engarouines'),
(117943, 95936, 'de', 'name', 'Gertrude von Meissner-Stiftung, in Erinnerung an Annette und Clas Richter'),
(117944, 95937, 'en', 'name', 'Geotechnical and Geoenvironmental Engineering Laboratory'),
(117945, 95937, 'fr', 'name', 'Laboratoire de gƩotechnique et de gƩnie gƩoenvironnemental'),
(117946, 95938, 'no_lang_code', 'name', 'Bureau Veritas (France)'),
(117947, 95939, 'en', 'name', 'methodS in Patient-centered outcomes and HEalth ResEarch'),
(117948, 95940, 'en', 'name', 'Van Leeuwenhoek Centre for Advanced Microscopy'),
(117949, 95941, 'fr', 'name', 'Groupe d’Étude sur l’HyperTension Intra CrĆ¢nienne idiopathique'),
(117950, 95942, 'en', 'name', 'State Key Laboratory of Electromagnetic Metamaterials Modulation Technology'),
(117951, 95942, 'zh', 'name', 'č¶…ęę–™ē”µē£č°ƒåˆ¶ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117952, 95943, 'en', 'name', 'Janelia Research Campus'),
(117953, 95944, 'en', 'name', 'Mwanza University'),
(117954, 95945, 'en', 'name', 'Comprehensive Cancer Center Mainfranken'),
(117955, 95946, 'en', 'name', 'Institute of Soil and Water Conservation'),
(117956, 95946, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę°“åˆ©éƒØę°“åœŸäæęŒē ”ē©¶ę‰€'),
(117957, 95947, 'en', 'name', 'State Key Laboratory of Coastal and Offshore Engineering'),
(117958, 95947, 'zh', 'name', 'ęµ·å²øå’Œčæ‘ęµ·å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117959, 95948, 'en', 'name', 'Iloilo State University of Fisheries Science and Technology'),
(117960, 95949, 'en', 'name', 'Munster Technological University'),
(117961, 95949, 'ga', 'name', 'Ollscoil TeicneolaĆ­ochta na Mumhan'),
(117962, 95950, 'en', 'name', 'International Association of Geomagnetism and Aeronomy'),
(117963, 95950, 'fr', 'name', 'Association Internationale de GĆ©omagnĆ©tisme et d’AĆ©ronomie'),
(117964, 95951, 'en', 'name', 'Institute for Game and Wildlife Research'),
(117965, 95951, 'es', 'name', 'Instituto de Investigación en Recursos Cinegéticos'),
(117966, 95952, 'en', 'name', 'Kibi Presbyterian College of Education'),
(117967, 95953, 'en', 'name', 'National Institute of Japanese Literature'),
(117968, 95953, 'ja', 'name', '国文学研究資料館'),
(117969, 95954, 'en', 'name', 'AIRI - Artificial Intelligence Research Institute'),
(117970, 95954, 'ru', 'name', 'AIRI - Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ интеллекта'),
(117971, 95955, 'en', 'name', 'Naval Research Laboratory Acoustics Division'),
(117972, 95956, 'pt', 'name', 'Plataforma Internacional para Ciência, Tecnologia e Inovação em Saúde'),
(117973, 95957, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ±Ų§ŲŖŲ©'),
(117974, 95957, 'no_lang_code', 'name', 'Misurata University'),
(117975, 95958, 'en', 'name', 'Fulbright Program'),
(117976, 95959, 'en', 'name', 'State Key Laboratory of Molecular Oncology'),
(117977, 95959, 'zh', 'name', 'åˆ†å­č‚æē˜¤å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(117978, 95960, 'en', 'name', 'Kentville Research and Development Centre'),
(117979, 95960, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Kentville'),
(117980, 95961, 'en', 'name', 'Infrastructure Management and Disposition Policy'),
(117981, 95962, 'en', 'name', 'NIHR Biomedical Research Centre at The Royal Marsden and the ICR'),
(117982, 95963, 'no_lang_code', 'name', 'Boluda División Industrial (Spain)'),
(117983, 95964, 'en', 'name', 'Neurofibromatosis Network'),
(117984, 95965, 'en', 'name', 'Chan Zuckerberg Biohub Chicago'),
(117985, 95966, 'en', 'name', 'terraPulse, Inc., terraPulse, Inc. (United States)'),
(117986, 95967, 'no_lang_code', 'name', 'BWI Group (Luxembourg)'),
(117987, 95968, 'en', 'name', 'Academy of Marketing'),
(117988, 95969, 'de', 'name', 'Hessische Zentrum für Künstliche Intelligenz hessian.AI'),
(117989, 95969, 'en', 'name', 'Hessian Center for Artificial Intelligence'),
(117990, 95970, 'en', 'name', 'Office of the Assistant Secretary for Research and Technology'),
(117991, 95971, 'fr', 'name', 'fabriqueREL'),
(117992, 95972, 'en', 'name', 'Virgin Islands Territorial Emergency Management Agency'),
(117993, 95973, 'fr', 'name', 'Langages, LittĆ©ratures, SociĆ©tĆ©s. Ɖtudes TransfrontaliĆØres et Internationales'),
(117994, 95974, 'en', 'name', 'Londrina State University'),
(117995, 95974, 'pt', 'name', 'Universidade Estadual de Londrina'),
(117996, 95975, 'en', 'name', 'State University of New York at Oswego'),
(117997, 95975, 'es', 'name', 'Universidad Estatal de Nueva York en Oswego'),
(117998, 95976, 'en', 'name', 'East-West University'),
(117999, 95976, 'ka', 'name', 'įƒįƒ¦įƒ›įƒįƒ”įƒįƒ•įƒšįƒ”įƒ—-įƒ“įƒįƒ”įƒįƒ•įƒšįƒ”įƒ— įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(118000, 95977, 'no_lang_code', 'name', 'Magnum Semiconductor (Canada)'),
(118001, 95978, 'es', 'name', 'Escuela Oficial de Idiomas de Granada'),
(118002, 95979, 'no_lang_code', 'name', 'Euroortodoncia (Spain)'),
(118003, 95980, 'fr', 'name', 'Edition, InterprƩtation et traduction des textes anciens'),
(118004, 95981, 'no_lang_code', 'name', 'Curium (United States)'),
(118005, 95982, 'pt', 'name', 'Universidade Estadual da Zona Oeste'),
(118006, 95983, 'fr', 'name', 'Laboratoire Optimisation de la Conception et IngƩnierie de l''Environnement'),
(118007, 95984, 'en', 'name', 'Naval Research Laboratory Spacecraft Engineering Division'),
(118008, 95985, 'en', 'name', 'State Key Laboratory of Robotics and Systems'),
(118009, 95985, 'zh', 'name', 'ęœŗå™ØäŗŗęŠ€ęœÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118010, 95986, 'en', 'name', 'Bahia State University'),
(118011, 95986, 'pt', 'name', 'Universidade do Estado da Bahia'),
(118012, 95987, 'en', 'name', 'CHI Health Plainview'),
(118013, 95988, 'en', 'name', 'Government of Ontario'),
(118014, 95988, 'fr', 'name', 'Gouvernement de l''Ontario'),
(118015, 95989, 'en', 'name', 'Regional Health Care and Social Agency Civil Hospitals of Brescia'),
(118016, 95989, 'it', 'name', 'Azienda Socio Sanitaria Territoriale degli Spedali Civili di Brescia'),
(118017, 95990, 'fr', 'name', 'DrĆ©panocytose : groupe de Recherche de Paris – Sorbonne UniversitĆ©'),
(118018, 95991, 'fr', 'name', 'Centre de Recherche en LittƩrature ComparƩe'),
(118019, 95992, 'fr', 'name', 'CƩgep de Drummondville'),
(118020, 95993, 'fr', 'name', 'Laboratoire de Tribologie et Dynamique des SystĆØmes'),
(118021, 95994, 'es', 'name', 'Centro Nacional de BiotecnologĆ­a'),
(118022, 95995, 'en', 'name', 'CRC183 - Entangled States of Matter'),
(118023, 95996, 'en', 'name', 'United Nations University World Institute for Development Economics Research'),
(118024, 95997, 'en', 'name', 'Alaska Department of Transportation and Public Facilities'),
(118025, 95998, 'en', 'name', 'Institute of Marine Research'),
(118026, 95998, 'es', 'name', 'Instituto de Investigacións Mariñas'),
(118027, 95999, 'en', 'name', 'Lottery Health Research'),
(118028, 96000, 'no_lang_code', 'name', 'Sinopec (China)'),
(118029, 96000, 'zh', 'name', 'äø­å›½ēŸ³ę²¹åŒ–å·„č‚”ä»½ęœ‰é™å…¬åøēŸ³ę²¹å‹˜ęŽ¢å¼€å‘ē ”ē©¶é™¢'),
(118030, 96001, 'de', 'name', 'Data Futures GmbH'),
(118031, 96002, 'no_lang_code', 'name', 'ORTEC (Netherlands)'),
(118032, 96003, 'de', 'name', 'Max-Planck-Institut für Herz- und Lungenforschung'),
(118033, 96003, 'en', 'name', 'Max Planck Institute for Heart and Lung Research'),
(118034, 96004, 'en', 'name', 'European Association for Education Law and Policy'),
(118035, 96005, 'no_lang_code', 'name', 'Reig Jofre (Spain)'),
(118036, 96006, 'en', 'name', 'National Marrow Donor Program'),
(118037, 96007, 'en', 'name', 'National Center for Oncological Hadrontherapy'),
(118038, 96007, 'it', 'name', 'Fondazione Centro Nazionale di Adroterapia Oncologica'),
(118039, 96008, 'en', 'name', 'State Key Laboratory of Low-Dimensional Quantum Physics'),
(118040, 96008, 'zh', 'name', 'ä½Žē»“é‡å­ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118041, 96009, 'en', 'name', 'Ministry of Education'),
(118042, 96010, 'en', 'name', 'Automotive Technology Centre of Galicia'),
(118043, 96010, 'es', 'name', 'Centro Tecnológico de Automoción de Galicia'),
(118044, 96011, 'en', 'name', 'Swedish Society of Medicine'),
(118045, 96012, 'no_lang_code', 'name', 'Acorde (Spain)'),
(118046, 96013, 'es', 'name', 'Fondo Nacional de Desarrollo Científico y Tecnológico'),
(118047, 96014, 'fr', 'name', 'Sciences pour l''Environnement'),
(118048, 96015, 'ja', 'name', 'äø‰äŗ•ä½å‹ćƒˆćƒ©ć‚¹ćƒˆćƒ»ćƒ›ćƒ¼ćƒ«ćƒ‡ć‚£ćƒ³ć‚°ć‚¹ę Ŗå¼ä¼šē¤¾'),
(118049, 96015, 'no_lang_code', 'name', 'Sumitomo Mitsui Trust Holdings (Japan)'),
(118050, 96016, 'de', 'name', 'Stiftung CharitƩ'),
(118051, 96017, 'de', 'name', 'Innovent'),
(118052, 96018, 'fr', 'name', 'Zone Atelier Moselle'),
(118053, 96019, 'en', 'name', 'Radboud University Nijmegen'),
(118054, 96019, 'fr', 'name', 'Université Radboud de Nimègue'),
(118055, 96019, 'nl', 'name', 'Radboud Universiteit Nijmegen'),
(118056, 96020, 'en', 'name', 'Institute of Pharmacology and Structural Biology'),
(118057, 96020, 'fr', 'name', 'Institut de Pharmacologie et de Biologie Structurale'),
(118058, 96021, 'en', 'name', 'Regional Health Care and Social Agency Valcamonica'),
(118059, 96021, 'it', 'name', 'Aziende Socio Sanitarie Territoriale della Valcamonica'),
(118060, 96022, 'en', 'name', 'Sanitas Cordoba Medical Centre'),
(118061, 96022, 'es', 'name', 'Centro Médico Sanitas Córdoba'),
(118062, 96023, 'fr', 'name', 'Softmat - Chimie des colloĆÆdes, polymĆØres & assemblages complexes'),
(118063, 96024, 'en', 'name', 'Federal University of Southern and Southeastern ParĆ”'),
(118064, 96024, 'pt', 'name', 'Universidade Federal do Sul e Sudeste do ParĆ”'),
(118065, 96025, 'en', 'name', 'VCU Massey Comprehensive Cancer Center'),
(118066, 96026, 'en', 'name', 'Institute of Physics, Bhubaneshwar'),
(118067, 96027, 'en', 'name', 'WWF Senegal'),
(118068, 96028, 'en', 'name', 'Beatrice and Samuel A. Seaver Foundation'),
(118069, 96029, 'no_lang_code', 'name', 'BSP Business & Law School – Hochschule für Management und Recht'),
(118070, 96030, 'en', 'name', 'Yasuda Memorial Medical Foundation'),
(118071, 96031, 'en', 'name', 'Lund Trust'),
(118072, 96032, 'fr', 'name', 'EndothƩlium, valvulopathies et insuffisance cardiaque'),
(118073, 96033, 'en', 'name', 'Association Of Research Organizations'),
(118074, 96034, 'en', 'name', 'The Virgin Islands Public Library System'),
(118075, 96035, 'no_lang_code', 'name', 'GEC (United Kingdom)'),
(118076, 96036, 'en', 'name', 'Air Force Space Technology Center'),
(118077, 96037, 'no_lang_code', 'name', 'Equinor (Norway)'),
(118078, 96038, 'no_lang_code', 'name', 'Societatea Națională de Gaze Naturale Romgaz SA (Romania)'),
(118079, 96039, 'en', 'name', 'State Key Laboratory of Software Development Environment'),
(118080, 96039, 'zh', 'name', 'č½Æä»¶å¼€å‘ēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118081, 96040, 'en', 'name', 'Chalermkarnchana University'),
(118082, 96041, 'fr', 'name', 'Laboratoire de MathƩmatiques AppliquƩes du Havre'),
(118083, 96042, 'fr', 'name', 'Centre universitaire rouennais d’études juridiques'),
(118084, 96043, 'en', 'name', 'Department of Water'),
(118085, 96044, 'fr', 'name', 'Laboratoire d''Urbanisme'),
(118086, 96045, 'es', 'name', 'Instituto de FĆ­sica Corpuscular'),
(118087, 96046, 'en', 'name', 'Africa Renewal University'),
(118088, 96047, 'en', 'name', 'San Juan City Hospital'),
(118089, 96048, 'en', 'name', 'Kentucky Academy of Science'),
(118090, 96049, 'en', 'name', 'Clinical Research Puerto Rico'),
(118091, 96050, 'gl', 'name', 'Xunta de Galicia'),
(118092, 96051, 'es', 'name', 'Centro de Estudios PolĆ­ticos y Constitucionales'),
(118093, 96052, 'en', 'name', 'University of Iowa Stead Family Children’s Hospital'),
(118094, 96053, 'en', 'name', 'Cancer Council Western Australia'),
(118095, 96054, 'en', 'name', 'Frances and Augustus Newman Foundation'),
(118096, 96055, 'en', 'name', 'Julian Schwinger Foundation for Physics Research'),
(118097, 96056, 'fr', 'name', 'HƓpital Saint-Antoine'),
(118098, 96057, 'en', 'name', 'Lilongwe University of Agriculture and Natural Resources'),
(118099, 96058, 'en', 'name', 'Wuhan Myhalic Biotechnological Co., Ltd (China)'),
(118100, 96058, 'zh', 'name', 'ę­¦ę±‰åŽč”ē§‘ē”Ÿē‰©ęŠ€ęœÆęœ‰é™å…¬åø'),
(118101, 96059, 'no_lang_code', 'name', 'ENN (China)'),
(118102, 96059, 'zh', 'name', '新億集团'),
(118103, 96060, 'fr', 'name', 'Laboratoire d''Hydrodynamique'),
(118104, 96061, 'en', 'name', 'HiLIFE - Helsinki Institute of Life Science'),
(118105, 96061, 'fi', 'name', 'HiLIFE – ElƤmƤntieteiden Instituutti'),
(118106, 96062, 'en', 'name', 'Fred Hutchinson/University of Washington/Seattle Children’s Cancer Consortium'),
(118107, 96063, 'en', 'name', 'Canadian Pari-Mutuel Agency'),
(118108, 96063, 'fr', 'name', 'Agence canadienne du pari mutuel'),
(118109, 96064, 'en', 'name', 'American Society for Transplantation and Cellular Therapy'),
(118110, 96065, 'en', 'name', 'Ministry of Education'),
(118111, 96065, 'es', 'name', 'Ministerio de Educación'),
(118112, 96066, 'en', 'name', 'State Key Laboratory of Modern Optical Instruments'),
(118113, 96066, 'zh', 'name', 'ēŽ°ä»£å…‰å­¦ä»Ŗå™Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118114, 96067, 'en', 'name', 'Tasmania Law Reform Institute'),
(118115, 96068, 'en', 'name', 'Institute of Agrochemistry and Food Technology'),
(118116, 96068, 'es', 'name', 'Instituto de AgroquĆ­mica y TecnologĆ­a de Alimentos'),
(118117, 96069, 'fr', 'name', 'Histoire et critique des arts'),
(118118, 96070, 'ja', 'name', 'ć‚½ćƒ«ćƒ¼ć‚·ćƒ§ćƒ³ę Ŗå¼ä¼šē¤¾'),
(118119, 96070, 'no_lang_code', 'name', 'Solutions Inc. (Japan)'),
(118120, 96071, 'pt', 'name', 'IST-ID - Associação do Instituto Superior Técnico para a Investigação e Desenvolvimento'),
(118121, 96072, 'en', 'name', 'Centre of Innovations in Contactless Technologies'),
(118122, 96072, 'fr', 'name', 'Centre d''Innovation des Technologies sans Contact'),
(118123, 96073, 'ja', 'name', 'ę—­åŒ–ęˆ'),
(118124, 96073, 'no_lang_code', 'name', 'Asahi Kasei (Japan)'),
(118125, 96074, 'pt', 'name', 'Hospital UniversitƔrio Regional do Norte do ParanƔ'),
(118126, 96075, 'en', 'name', 'Trond Mohn Foundation'),
(118127, 96075, 'no', 'name', 'Trond Mohn stiftelse'),
(118128, 96076, 'en', 'name', 'Antarctica New Zealand'),
(118129, 96077, 'id', 'name', 'Politeknik Energi dan Mineral Akamigas'),
(118130, 96078, 'fr', 'name', 'Collège d''enseignement général et professionnel Levis Lauzon, Cégep de Lévis'),
(118131, 96079, 'en', 'name', 'Sanitas Boreal Medical Centre'),
(118132, 96079, 'es', 'name', 'Centro MƩdico Sanitas Boreal'),
(118133, 96080, 'cs', 'name', 'Liberec Region, Liberecký kraj'),
(118134, 96081, 'en', 'name', 'South China Sea Institute Of Oceanology'),
(118135, 96081, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å—ęµ·ęµ·ę“‹ē ”ē©¶ę‰€'),
(118136, 96082, 'es', 'name', 'Consejeria de EconomĆ­a Hacienda y empleo de la Comunidad de Madrid'),
(118137, 96083, 'en', 'name', 'KEK Applied Research Laboratory'),
(118138, 96083, 'ja', 'name', 'å…±é€šåŸŗē›¤ē ”ē©¶ę–½čØ­'),
(118139, 96084, 'ja', 'name', '立命館大学'),
(118140, 96084, 'no_lang_code', 'name', 'Ritsumeikan University'),
(118141, 96085, 'en', 'name', 'Rio de Janeiro State University'),
(118142, 96085, 'pt', 'name', 'Universidade do Estado do Rio de Janeiro'),
(118143, 96086, 'es', 'name', 'Instituto Nacional del Carbón'),
(118144, 96087, 'en', 'name', 'State Key Laboratory of Proteomics'),
(118145, 96087, 'zh', 'name', 'č›‹ē™½č“Øē»„å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118146, 96088, 'no_lang_code', 'name', 'Raytheon Technologies (United Kingdom)'),
(118147, 96089, 'en', 'name', 'Radiation Oncology Institute'),
(118148, 96090, 'en', 'name', 'Trisakti University'),
(118149, 96090, 'id', 'name', 'Universitas Trisakti'),
(118150, 96091, 'en', 'name', 'InnovaWood'),
(118151, 96092, 'en', 'name', 'rOpenSci'),
(118152, 96093, 'de', 'name', 'Ministerium für Wissenschaft, Energie, Klimaschutz und Umwelt des Landes Sachsen-Anhalt'),
(118153, 96094, 'en', 'name', 'The Bryden Centre'),
(118154, 96095, 'ca', 'name', 'Centre d''Estudis AvanƧats de Blanes'),
(118155, 96095, 'en', 'name', 'Blanes Center for Advanced Studies'),
(118156, 96095, 'es', 'name', 'Centro de Estudios Avanzados de Blane'),
(118157, 96096, 'en', 'name', 'Oklahoma-Texas Water Science Center'),
(118158, 96097, 'en', 'name', 'NIHR Bristol Nutrition Biomedical Research Unit'),
(118159, 96098, 'en', 'name', 'Western Fisheries Research Center'),
(118160, 96099, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© التراث'),
(118161, 96099, 'en', 'name', 'Al-Turath University'),
(118162, 96100, 'en', 'name', 'QPS Taiwan'),
(118163, 96100, 'no_lang_code', 'name', 'QPS Taiwan (Taiwan)'),
(118164, 96101, 'en', 'name', 'Ersilia Open Source Initiative'),
(118165, 96102, 'en', 'name', 'Great Lakes Science Center'),
(118166, 96103, 'it', 'name', 'WWF Italia'),
(118167, 96104, 'es', 'name', 'Universidad PolitƩcnica de Zacatecas'),
(118168, 96105, 'de', 'name', 'Bayerisches Staatsministerium für Wissenschaft und Kunst'),
(118169, 96105, 'en', 'name', 'Bavarian State Ministry for Science and Art'),
(118170, 96106, 'ca', 'name', 'Centre d''Investigacions sobre Desertificació'),
(118171, 96106, 'en', 'name', 'Desertification Research Centre'),
(118172, 96107, 'en', 'name', 'Health Commission of Jilin Province'),
(118173, 96107, 'zh', 'name', 'å‰ęž—ēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(118174, 96108, 'fr', 'name', 'Dynamique Microbienne associƩe aux Infections Urinaires et Respiratoires'),
(118175, 96109, 'en', 'name', 'Xinjiang Institute of Ecology and Geography'),
(118176, 96109, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę–°ē–†ē”Ÿę€äøŽåœ°ē†ē ”ē©¶ę‰€'),
(118177, 96110, 'no_lang_code', 'name', 'Windey Energy Technology Group Co., Ltd. (China)'),
(118178, 96110, 'zh', 'name', 'ęµ™ę±Ÿčæč¾¾é£Žē”µč‚”ä»½ęœ‰é™å…¬åø'),
(118179, 96111, 'fr', 'name', 'Centre d''Ɖtudes MĆ©diĆ©vales Anglaises'),
(118180, 96112, 'en', 'name', 'University of Maine'),
(118181, 96113, 'en', 'name', 'Breast Cancer Options'),
(118182, 96114, 'es', 'name', 'Universidad Del Este'),
(118183, 96115, 'en', 'name', 'State Key Laboratory of Intelligent Manufacturing of High-end Construction Machinery'),
(118184, 96115, 'zh', 'name', 'é«˜ē«Æå·„ēØ‹ęœŗę¢°ę™ŗčƒ½åˆ¶é€ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118185, 96116, 'en', 'name', 'Sandia National Laboratories'),
(118186, 96117, 'no_lang_code', 'name', 'Tenaris (United States)'),
(118187, 96118, 'en', 'name', 'Hintze Family Charitable Foundation'),
(118188, 96119, 'en', 'name', 'SINOPEC Research Institute of Safety Engineering Co., Ltd.'),
(118189, 96119, 'zh', 'name', 'äø­ēŸ³åŒ–å®‰å…Øå·„ēØ‹ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(118190, 96120, 'no_lang_code', 'name', 'OnCyte (United States)'),
(118191, 96121, 'en', 'name', 'State Key Laboratory of Natural Medicine'),
(118192, 96121, 'zh', 'name', 'å¤©ē„¶čÆē‰©ę“»ę€§ē»„åˆ†äøŽčÆę•ˆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118193, 96122, 'en', 'name', 'Federal University of Triângulo Mineiro'),
(118194, 96122, 'pt', 'name', 'Universidade Federal do Triângulo Mineiro'),
(118195, 96123, 'en', 'name', 'Sanitas Dr. Esquerdo Advanced Rehabilitation Centre'),
(118196, 96123, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Dr. Esquerdo'),
(118197, 96124, 'en', 'name', 'EuroBasque - Basque Council of the European Movement'),
(118198, 96124, 'es', 'name', 'EuroBasque - Consejo Vasco del Movimiento Europeo'),
(118199, 96125, 'es', 'name', 'Hospital Universitario PrĆ­ncipe de Asturias'),
(118200, 96126, 'en', 'name', 'The University of Chenab, Gujrat'),
(118201, 96127, 'fr', 'name', 'Conseil dƩpartemental de la Marne'),
(118202, 96128, 'en', 'name', 'State Key Laboratory of Cancer Biology'),
(118203, 96128, 'zh', 'name', 'č‚æē˜¤ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118204, 96129, 'en', 'name', 'CCTEG Shenyang Research Institute'),
(118205, 96129, 'zh', 'name', 'ē…¤ē§‘é›†å›¢ę²ˆé˜³ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(118206, 96130, 'no_lang_code', 'name', 'Changsha Mining and Metallurgy Research Institute (China)'),
(118207, 96130, 'zh', 'name', 'é•æę²™ēŸæå†¶ē ”ē©¶é™¢ęœ‰é™č“£ä»»å…¬'),
(118208, 96131, 'en', 'name', 'Swiss Competence Center for Energy Research – Supply of Electricity'),
(118209, 96132, 'en', 'name', 'Polytechnic University of Puerto Rico'),
(118210, 96132, 'es', 'name', 'La Poly'),
(118211, 96133, 'no_lang_code', 'name', 'Guangxi Communication Design Group Co., LTD (China)'),
(118212, 96133, 'zh', 'name', 'å¹æč„æäŗ¤é€šč®¾č®”é›†å›¢ęœ‰é™å…¬åø'),
(118213, 96134, 'en', 'name', 'Augmanity Nano Ltd.'),
(118214, 96134, 'no_lang_code', 'name', 'Augmanity Nano Ltd. (Israel)'),
(118215, 96135, 'it', 'name', 'Galleria Borghese'),
(118216, 96136, 'en', 'name', 'United States Department of Energy'),
(118217, 96136, 'es', 'name', 'Departamento de EnergĆ­a de los Estados Unidos'),
(118218, 96136, 'fr', 'name', 'DĆ©partement de l''Ɖnergie des Ɖtats-unis'),
(118219, 96137, 'en', 'name', 'National University of La Matanza'),
(118220, 96137, 'es', 'name', 'Universidad Nacional de La Matanza'),
(118221, 96138, 'ca', 'name', 'Institut CatalĆ  de CiĆØncies del Clima');
INSERT INTO `ror_settings` VALUES
(118222, 96138, 'en', 'name', 'Catalan Institute of Climate Sciences'),
(118223, 96139, 'es', 'name', 'DiploCientƭfica, Red de Diplomacia cientƭfica para AmƩrica Latina y el Caribe'),
(118224, 96140, 'en', 'name', 'State Key Laboratory of Pest Control and Resource Utilization'),
(118225, 96140, 'zh', 'name', 'ęœ‰å®³ē”Ÿē‰©ęŽ§åˆ¶äøŽčµ„ęŗåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118226, 96141, 'en', 'name', 'State Key Laboratory of Theoretical Chemical Computing'),
(118227, 96141, 'zh', 'name', 'ē†č®ŗåŒ–å­¦č®”ē®—å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118228, 96142, 'en', 'name', 'Biomedical Information Processing Laboratory'),
(118229, 96142, 'fr', 'name', 'Laboratoire de traitement de l''information en santƩ'),
(118230, 96143, 'no_lang_code', 'name', 'HRS Heat Exchangers (Spain)'),
(118231, 96144, 'en', 'name', 'Ministry of Defence'),
(118232, 96145, 'en', 'name', 'Scottish Government Health and Social Care Directorates'),
(118233, 96146, 'en', 'name', 'Max Planck School Matter to Life'),
(118234, 96147, 'es', 'name', 'Ministerio de Educación, Ministerio de Educación y Deportes de la Nación Argentina'),
(118235, 96148, 'en', 'name', 'Rockingham General Hospital'),
(118236, 96149, 'fr', 'name', 'Institut de Biologie Paris-Seine'),
(118237, 96150, 'fr', 'name', 'Groupe de Recherche sur l''Alcool et les PharmacodƩpendances'),
(118238, 96151, 'en', 'name', 'California Strategic Growth Council'),
(118239, 96152, 'en', 'name', 'Office of Environmental Protection, Sustainability Support and Corporate Safety Analysis'),
(118240, 96153, 'fr', 'name', 'UniversitƩ Publique du Sud''Est'),
(118241, 96154, 'en', 'name', 'State Key Laboratory of Medical Immunology'),
(118242, 96154, 'zh', 'name', 'åŒ»å­¦å…ē–«å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118243, 96155, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© نبتة'),
(118244, 96155, 'no_lang_code', 'name', 'Napata College'),
(118245, 96156, 'cs', 'name', 'Kraj Vysočina, Vysočina Region'),
(118246, 96157, 'en', 'name', 'Colorado Agricultural Experiment Station'),
(118247, 96158, 'en', 'name', 'Basque Foundation for Science'),
(118248, 96158, 'eu', 'name', 'Ikerbasque'),
(118249, 96159, 'en', 'name', 'Ministry of Labour and Social Economy'),
(118250, 96159, 'es', 'name', 'Ministerio de Empleo y Seguridad Social, Ministerio de Trabajo y EconomĆ­a Social'),
(118251, 96160, 'en', 'name', 'United Nations University'),
(118252, 96160, 'ja', 'name', '国際連合大学'),
(118253, 96161, 'en', 'name', 'Institute of Earth Science'),
(118254, 96161, 'fr', 'name', 'Institut des Sciences de la Terre'),
(118255, 96162, 'en', 'name', 'Colorado Water Science Center'),
(118256, 96163, 'en', 'name', 'State Key Laboratory of Applied Optics'),
(118257, 96163, 'zh', 'name', 'åŗ”ē”Øå…‰å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118258, 96164, 'no_lang_code', 'name', 'Martin Marietta (United States)'),
(118259, 96165, 'fr', 'name', 'Signalisation, Neurobiologie et Cancer'),
(118260, 96166, 'en', 'name', 'European Future Innovation System (EFIS) Centre'),
(118261, 96167, 'en', 'name', 'National Institutes of Health'),
(118262, 96168, 'en', 'name', 'State Key Laboratory of Spectroscopy and Atomic and Molecular Physics'),
(118263, 96168, 'zh', 'name', 'ę³¢č°±äøŽåŽŸå­åˆ†å­ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118264, 96169, 'en', 'name', 'Office of Environment, Safety, and Health'),
(118265, 96170, 'en', 'name', 'DTU Space'),
(118266, 96171, 'en', 'name', 'Swiss School of Public Health'),
(118267, 96172, 'en', 'name', 'Jozac Publishers'),
(118268, 96173, 'nl', 'name', 'OLVG'),
(118269, 96174, 'en', 'name', 'Australian Institute of Botanical Science'),
(118270, 96175, 'es', 'name', 'Instituto de Investigaciones para el Desarrollo Territorial y el HƔbitat Humano'),
(118271, 96176, 'en', 'name', 'Kyoto Min-iren Asukai Hospital'),
(118272, 96176, 'ja', 'name', 'äŗ¬éƒ½ę°‘åŒ»é€£ć‚ć™ć‹ć„ē—…é™¢'),
(118273, 96177, 'en', 'name', 'Ghana Academy of Arts and Sciences'),
(118274, 96178, 'en', 'name', 'National Group for Mathematical Physics'),
(118275, 96178, 'it', 'name', 'Gruppo Nazionale per la Fisica Matematica'),
(118276, 96179, 'no_lang_code', 'name', 'ITER'),
(118277, 96180, 'it', 'name', 'Museo Civico Alpino "Arnaldo Tazzetti"'),
(118278, 96181, 'en', 'name', 'Water Power Technologies Office'),
(118279, 96182, 'en', 'name', 'Institute of Biomedicine and Biotechnology of Cantabria'),
(118280, 96182, 'es', 'name', 'Instituto de Biomedicina y BiotecnologĆ­a de Cantabria'),
(118281, 96183, 'fr', 'name', 'Institut de SystĆ©matique, Ɖvolution, BiodiversitĆ©'),
(118282, 96184, 'en', 'name', 'California Department of Parks and Recreation'),
(118283, 96185, 'en', 'name', 'Mary and Georg C. Ehrnrooth Foundation'),
(118284, 96185, 'sv', 'name', 'Mary och Georg C. Ehrnrooths Stiftelse'),
(118285, 96186, 'no_lang_code', 'name', 'Genertec Shenyang Machine Tool Co., Ltd. (China)'),
(118286, 96186, 'zh', 'name', 'é€šē”ØęŠ€ęœÆę²ˆé˜³ęœŗåŗŠč‚”ä»½ęœ‰é™å…¬åøå®˜ē½‘'),
(118287, 96187, 'en', 'name', 'Government of Extremadura'),
(118288, 96187, 'es', 'name', 'Gobierno de Extremadura'),
(118289, 96188, 'es', 'name', 'Ayuntamiento de Santander'),
(118290, 96189, 'en', 'name', 'ITI International Team for Implantology'),
(118291, 96190, 'en', 'name', 'Code for Science & Society'),
(118292, 96191, 'ca', 'name', 'Ajuntament de ValĆØncia'),
(118293, 96191, 'es', 'name', 'Ayuntamiento de Valencia'),
(118294, 96192, 'de', 'name', 'Institut für Forschungsinformation und Qualitätssicherung'),
(118295, 96192, 'en', 'name', 'Institute for Research Information and Quality Assurance'),
(118296, 96193, 'en', 'name', 'Federal Institute of Education, Science and Technology of Baiano'),
(118297, 96193, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia Baiano'),
(118298, 96194, 'en', 'name', 'Bülent Ecevit University'),
(118299, 96194, 'tr', 'name', 'Bülent Ecevit Üniversitesi'),
(118300, 96195, 'en', 'name', 'Atmospheric Radiation Measurement User Facility'),
(118301, 96196, 'en', 'name', 'Rajalakshmi Engineering College'),
(118302, 96197, 'en', 'name', 'Arctic Submarine Laboratory'),
(118303, 96198, 'ch', 'name', 'Dipattamenton Salut Pupbleko Yan Setbision Susiat'),
(118304, 96198, 'en', 'name', 'Department of Public Health and Social Services'),
(118305, 96199, 'en', 'name', 'Los Alamos National Laboratory'),
(118306, 96199, 'es', 'name', 'Laboratorio Nacional de Los Ɓlamos'),
(118307, 96199, 'fr', 'name', 'Laboratoire national de los alamos'),
(118308, 96200, 'en', 'name', 'University of Wisconsin Carbone Cancer Center'),
(118309, 96201, 'id', 'name', 'Universitas Bosowa'),
(118310, 96202, 'en', 'name', 'Disaster Prevention & Water Environment Research Center'),
(118311, 96202, 'zh', 'name', 'é˜²ē½čˆ‡ę°“ē’°å¢ƒē ”ē©¶äø­åæƒ'),
(118312, 96203, 'fr', 'name', 'Laboratoire de Neurosciences Cognitives et Computationnelles'),
(118313, 96204, 'fr', 'name', 'UniversitƩ des Sciences Sociales et de Gestion de Bamako'),
(118314, 96205, 'fr', 'name', 'Centre d''Ɖtudes et de Recherche en Thermique, Environnement et SystĆØmes'),
(118315, 96206, 'en', 'name', 'State Key Laboratory of Light Alloy Casting Technology for High-end Equipment'),
(118316, 96206, 'zh', 'name', 'é«˜ē«Æč£…å¤‡č½»åˆé‡‘é“øé€ ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118317, 96207, 'en', 'name', 'Inter-university Institute for Data Intensive Astronomy'),
(118318, 96208, 'en', 'name', 'Cotton Research Institute'),
(118319, 96208, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢ę£‰čŠ±ē ”ē©¶ę‰€'),
(118320, 96209, 'en', 'name', 'Office of Defense Nuclear Nonproliferation'),
(118321, 96210, 'no_lang_code', 'name', 'Scapa Group (United Kingdom)'),
(118322, 96211, 'en', 'name', 'Ministry of Education and Merit'),
(118323, 96211, 'it', 'name', 'Ministero dell''Istruzione e del Merito'),
(118324, 96212, 'en', 'name', 'OSG Consortium'),
(118325, 96213, 'no_lang_code', 'name', 'Anı Yayıncılık (Turkey)'),
(118326, 96214, 'en', 'name', 'State Key Laboratory of Water and Sediment Science and Water Conservancy and Hydropower Engineering'),
(118327, 96214, 'zh', 'name', 'ę°“ę²™ē§‘å­¦äøŽę°“åˆ©ę°“ē”µå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118328, 96215, 'en', 'name', 'Union Bank of Switzerland'),
(118329, 96216, 'en', 'name', 'Prostate Action'),
(118330, 96217, 'en', 'name', 'West Coast University – Panama'),
(118331, 96218, 'en', 'name', 'Open Science NL'),
(118332, 96219, 'en', 'name', 'Hazrat-e Masoumeh University'),
(118333, 96219, 'fa', 'name', 'دانؓگاه Ų­Ų¶Ų±ŲŖ Ł…Ų¹ŲµŁˆŁ…Ł‡'),
(118334, 96220, 'en', 'name', 'Wuhan Research Institute of Materials Protection'),
(118335, 96220, 'zh', 'name', 'ę­¦ę±‰ęę–™äæęŠ¤ē ”ē©¶ę‰€'),
(118336, 96221, 'en', 'name', 'Columbia University Irving Medical Center'),
(118337, 96221, 'es', 'name', 'centro mƩdico de la Universidad de Columbia'),
(118338, 96221, 'fr', 'name', 'Centre mƩdical de l''universitƩ columbia'),
(118339, 96222, 'es', 'name', 'Escuela Interdisciplinaria de Altos Estudios Sociales'),
(118340, 96223, 'en', 'name', 'International Computer Science Institute'),
(118341, 96224, 'en', 'name', 'Tasmanian Institute of Agriculture'),
(118342, 96225, 'fr', 'name', 'Centre d''investigation clinique Quinze-Vingts'),
(118343, 96226, 'en', 'name', 'Reactor Fleet and Advanced Reactor Deployment'),
(118344, 96227, 'fr', 'name', 'Laboratoire d''Informatique, du Traitement de l''Information et des SystĆØmes'),
(118345, 96228, 'en', 'name', 'State Key Laboratory for Advanced Metals and Materials'),
(118346, 96228, 'zh', 'name', 'ę–°é‡‘å±žęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118347, 96229, 'no_lang_code', 'name', 'Exedy (Japan)'),
(118348, 96230, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų£ŲµŁˆŁ„ Ų§Ł„ŲÆŁŠŁ† الجامعة'),
(118349, 96230, 'en', 'name', 'Osol Aldeen University College'),
(118350, 96231, 'en', 'name', 'Technological Center Lurederra'),
(118351, 96231, 'es', 'name', 'Centro Tecnológico Lurederra'),
(118352, 96232, 'en', 'name', 'Krembil Research Institute'),
(118353, 96233, 'en', 'name', 'St. Anthony Hospital in Gig Harbor'),
(118354, 96234, 'en', 'name', 'Medtronic Foundation'),
(118355, 96235, 'es', 'name', 'Centro de EdafologĆ­a y BiologĆ­a Aplicada del Segura'),
(118356, 96236, 'en', 'name', 'Belgian Federal Science Policy Office'),
(118357, 96236, 'fr', 'name', 'Politique scientifique fƩdƩrale'),
(118358, 96236, 'nl', 'name', 'Federaal Wetenschapsbeleid'),
(118359, 96237, 'fr', 'name', 'Ɖcole Nationale d''IngĆ©nieurs de Tarbes'),
(118360, 96238, 'en', 'name', 'Centre for Ore Deposit and Earth Sciences'),
(118361, 96239, 'es', 'name', 'Hospital Metropolitano Dr. Pila'),
(118362, 96240, 'de', 'name', 'Berufsgenossenschaftliche Unfallklinik Murnau'),
(118363, 96241, 'en', 'name', 'Consortia Advancing Standards in Research Administration Information'),
(118364, 96242, 'en', 'name', 'Dr. B. R. Ambedkar School of Economics University'),
(118365, 96243, 'en', 'name', 'Agency for the Protection of Health of Garda'),
(118366, 96243, 'it', 'name', 'Azienda Socio Sanitaria Territoriale del Garda'),
(118367, 96244, 'no_lang_code', 'name', 'IRIS Technology Solutions (Spain)'),
(118368, 96245, 'en', 'name', 'Elisava Barcelona School of Design and Engineering'),
(118369, 96245, 'es', 'name', 'Elisava, Facultat de Disseny i Enginyeria de Barcelona'),
(118370, 96246, 'de', 'name', 'Deutsches ArchƤologisches Institut, Rƶmisch-Germanische Kommission'),
(118371, 96246, 'en', 'name', 'German Archaeological Institute, Romano Germanic Commission'),
(118372, 96247, 'es', 'name', 'ConsejerĆ­a de PolĆ­ticas Sociales, Familias, Igualdad y Natalidad'),
(118373, 96248, 'en', 'name', 'Jinan Central Hospital'),
(118374, 96248, 'zh', 'name', 'ęµŽå—åø‚äø­åæƒåŒ»é™¢'),
(118375, 96249, 'en', 'name', 'North Carolina Department of Environmental Quality'),
(118376, 96250, 'en', 'name', 'Institute of Advanced Science Facilities, Shenzhen'),
(118377, 96250, 'zh', 'name', 'ę·±åœ³ē»¼åˆē²’å­č®¾ę–½ē ”ē©¶é™¢'),
(118378, 96251, 'no_lang_code', 'name', 'Nouricia (France)'),
(118379, 96252, 'en', 'name', 'International Commission for the Conservation of Atlantic Tunas'),
(118380, 96253, 'en', 'name', 'Indian Health Service'),
(118381, 96254, 'en', 'name', 'Trinity Health Oakland Hospital'),
(118382, 96255, 'en', 'name', 'Northwest Institute For Non-Ferrous Metal Research'),
(118383, 96255, 'zh', 'name', 'č„æåŒ—ęœ‰č‰²é‡‘å±žē ”ē©¶é™¢'),
(118384, 96256, 'pt', 'name', 'Instituto PolitƩcnico do Rio de Janeiro'),
(118385, 96257, 'es', 'name', 'Ajuntament de Castelló, Ayuntamiento de Castellón de la Plana'),
(118386, 96258, 'en', 'name', 'Laboratory for Studies of Radiation and Matter in Astrophysics and Atmospheres'),
(118387, 96258, 'fr', 'name', 'Laboratoire d’Etudes du Rayonnement et de la MatiĆØre en Astrophysique et AtmosphĆØres'),
(118388, 96259, 'en', 'name', 'High Energy Accelerator Research Organization'),
(118389, 96259, 'ja', 'name', 'é«˜ć‚Øćƒćƒ«ć‚®ćƒ¼åŠ é€Ÿå™Øē ”ē©¶ę©Ÿę§‹'),
(118390, 96260, 'en', 'name', 'Topos Institute'),
(118391, 96261, 'en', 'name', 'State Agrarian University of Moldova'),
(118392, 96261, 'ro', 'name', 'Universitatea Agrară de Stat din Moldova'),
(118393, 96262, 'en', 'name', 'Department of Economy, Sciency & Innovation'),
(118394, 96262, 'nl', 'name', 'Departement Economie, Wetenschap & Innovatie'),
(118395, 96263, 'no_lang_code', 'name', 'Tianjin Institute of Pharmaceutical Research (China)'),
(118396, 96263, 'zh', 'name', 'å¤©ę“„čÆē‰©ē ”ē©¶ę‰€'),
(118397, 96264, 'en', 'name', 'Catalysis and Spectrochemistry Laboratory'),
(118398, 96264, 'fr', 'name', 'Laboratoire Catalyse et Spectrochimie'),
(118399, 96265, 'en', 'name', 'Office of Defense Nuclear Security'),
(118400, 96266, 'en', 'name', 'State Key Laboratory of Agricultural Biotechnology'),
(118401, 96266, 'zh', 'name', 'å†œäøšē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118402, 96267, 'en', 'name', 'Center for Hierarchical Materials Design'),
(118403, 96268, 'id', 'name', 'Sekolah Tinggi Keguruan dan Ilmu Pendidikan PGRI Situbondo'),
(118404, 96269, 'en', 'name', 'Prodintec Foundation'),
(118405, 96269, 'es', 'name', 'Fundación Prodintec'),
(118406, 96270, 'en', 'name', 'State Key Laboratory of Life Organic Chemistry'),
(118407, 96270, 'zh', 'name', 'ē”Ÿå‘½ęœ‰ęœŗåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118408, 96271, 'en', 'name', 'Simons Initiative for the Developing Brain'),
(118409, 96272, 'fr', 'name', 'Laboratoire Jean Perrin'),
(118410, 96273, 'en', 'name', 'Institute of Geodesy and Geophysics'),
(118411, 96273, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ęµ‹é‡äøŽåœ°ēƒē‰©ē†ē ”ē©¶ę‰€'),
(118412, 96274, 'en', 'name', 'Biomedical Research Networking Center in Bioengineering, Biomaterials and Nanomedicine'),
(118413, 96274, 'es', 'name', 'Centro de Investigación Biomédica en Red en Bioingeniería, Biomateriales y Nanomedicina'),
(118414, 96275, 'en', 'name', 'Anderson University - South Carolina'),
(118415, 96276, 'de', 'name', 'Bundeskanzleramt'),
(118416, 96276, 'en', 'name', 'Federal Chancellery Republic of Austria'),
(118417, 96277, 'en', 'name', 'Sanitas Sevilla Los Remedios Medical Centre'),
(118418, 96277, 'es', 'name', 'Centro MƩdico Sanitas Sevilla Los Remedios'),
(118419, 96278, 'en', 'name', 'Naval Information Warfare Center Pacific'),
(118420, 96279, 'en', 'name', 'Naval Aerospace Medical Research Laboratory'),
(118421, 96280, 'en', 'name', 'Prostate Cancer Research Institute'),
(118422, 96281, 'en', 'name', 'State Key Laboratory of Deep Sea Mineral Resources Development and Utilization of Technology'),
(118423, 96281, 'zh', 'name', 'ę·±ęµ·ēŸæäŗ§čµ„ęŗå¼€å‘åˆ©ē”ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118424, 96282, 'en', 'name', 'Government of Santa Catarina'),
(118425, 96282, 'pt', 'name', 'Governo de Santa Catarina'),
(118426, 96283, 'en', 'name', 'Philippine Association of Institutions for Research, Inc.'),
(118427, 96284, 'en', 'name', 'State Key Laboratory of Trauma, Burns and Compound Injury Research'),
(118428, 96284, 'zh', 'name', 'åˆ›ä¼¤ć€ēƒ§ä¼¤äøŽå¤åˆä¼¤ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118429, 96285, 'en', 'name', 'U.S. Energy Information Administration'),
(118430, 96286, 'en', 'name', 'State Key Laboratory Fluid Power and Mechatronic Systems'),
(118431, 96286, 'zh', 'name', 'ęµä½“åŠØåŠ›äøŽęœŗē”µē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118432, 96287, 'nl', 'name', 'Internationale Stichting Alzheimer Onderzoek'),
(118433, 96288, 'en', 'name', 'Kastler Brossel Laboratory'),
(118434, 96288, 'fr', 'name', 'Laboratoire Kastler Brossel'),
(118435, 96289, 'en', 'name', 'State Key Laboratory of Rolling Technology and Continuous Rolling Automation'),
(118436, 96289, 'zh', 'name', 'č½§åˆ¶ęŠ€ęœÆåŠčæžč½§č‡ŖåŠØåŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118437, 96290, 'no_lang_code', 'name', 'NEAL (Algeria)'),
(118438, 96291, 'no_lang_code', 'name', 'Da Vinci Labs (France)'),
(118439, 96292, 'de', 'name', 'Hochschulinstitut Schaffhausen'),
(118440, 96293, 'en', 'name', 'Battelle'),
(118441, 96294, 'en', 'name', 'TAV College'),
(118442, 96295, 'en', 'name', 'University of Saint Francis'),
(118443, 96295, 'es', 'name', 'Universidad de Saint Francis'),
(118444, 96296, 'en', 'name', 'Honolulu Star Advertiser'),
(118445, 96297, 'en', 'name', 'Humanology Sdn Bhd, Humanology Sdn Bhd (Malaysia)'),
(118446, 96298, 'no_lang_code', 'name', 'Kerneos (France)'),
(118447, 96299, 'de', 'name', 'Ministerium für Wissenschaft, Forschung und Kunst Baden-Württemberg'),
(118448, 96300, 'fr', 'name', 'Laboratoire d''Ingénierie des Systèmes de Versailles'),
(118449, 96301, 'en', 'name', 'Swedish Council for Forestry and Agricultural Research'),
(118450, 96301, 'sv', 'name', 'Skogs- och Jordbrukets ForskningsrƄd'),
(118451, 96302, 'en', 'name', 'Great Bay University'),
(118452, 96302, 'zh', 'name', '大湾区大学'),
(118453, 96303, 'de', 'name', 'Paracelsus-Klinik Golzheim Düsseldorf'),
(118454, 96304, 'en', 'name', 'Sankofa Healing Studio'),
(118455, 96305, 'fr', 'name', 'Laboratoire de Physique NuclĆ©aire et de Hautes Ɖnergies'),
(118456, 96306, 'en', 'name', 'Good Samaritan Medical Center'),
(118457, 96307, 'en', 'name', 'State Key Laboratory of Coal Conversion'),
(118458, 96307, 'zh', 'name', 'ē…¤ē‚­é«˜ę•ˆä½Žē¢³åˆ©ē”Øå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(118459, 96308, 'no_lang_code', 'name', 'Panskura Banamali College'),
(118460, 96309, 'en', 'name', 'NCCOS Hollings Marine Laboratory'),
(118461, 96310, 'es', 'name', 'Estacion Experimental de Zonas Aridas, Estación Experimental de Zonas Áridas'),
(118462, 96311, 'en', 'name', 'Pacific Fishery Management Council'),
(118463, 96312, 'en', 'name', 'State Key Laboratory of Computer Science'),
(118464, 96312, 'zh', 'name', 'č®”ē®—ęœŗē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118465, 96313, 'en', 'name', 'Cerebra'),
(118466, 96314, 'en', 'name', 'DYNAMYC MYCOLOGY'),
(118467, 96315, 'en', 'name', 'Abramson Cancer Center'),
(118468, 96316, 'ar', 'name', 'معهد المناطق القاحلة'),
(118469, 96316, 'en', 'name', 'Arid Regions Institute'),
(118470, 96316, 'fr', 'name', 'Institut des RƩgions Arides'),
(118471, 96317, 'en', 'name', 'Medicover Genetics'),
(118472, 96317, 'no_lang_code', 'name', 'Medicover Genetics (Cyprus)'),
(118473, 96318, 'no_lang_code', 'name', 'Biophy Research (France)'),
(118474, 96319, 'ca', 'name', 'Institut CatalĆ  d''Oncologia'),
(118475, 96319, 'en', 'name', 'Catalan Institute of Oncology'),
(118476, 96319, 'es', 'name', 'Instituto CatalƔn de Oncologƭa'),
(118477, 96320, 'en', 'name', 'Alzheimer’s Disease Neuroimaging Initiative'),
(118478, 96321, 'en', 'name', 'Catholic University of Petrópolis'),
(118479, 96321, 'pt', 'name', 'Universidade Católica de Petrópolis'),
(118480, 96322, 'no_lang_code', 'name', 'OICC Press (United Kingdom)'),
(118481, 96323, 'en', 'name', 'Office of Advanced Fuels Technologies'),
(118482, 96324, 'en', 'name', 'Hong Kong Institute of Certified Public Accountants'),
(118483, 96324, 'zh', 'name', 'é¦™ęøÆęœƒčØˆåø«å…¬ęœƒ'),
(118484, 96325, 'no_lang_code', 'name', 'C.P.Q. IbƩrica (Spain)'),
(118485, 96326, 'es', 'name', 'Asociación Española de Industriales de PlÔsticos'),
(118486, 96327, 'en', 'name', 'International Council for Scientific and Technical Information'),
(118487, 96327, 'fr', 'name', 'Conseil International pour l''Information Scientifique et Technique'),
(118488, 96328, 'en', 'name', 'Regional Health Care and Social Agency of Crema'),
(118489, 96328, 'it', 'name', 'Aziende Socio Sanitarie Territoriale di Crema'),
(118490, 96329, 'id', 'name', 'Universitas Negeri Surabaya'),
(118491, 96330, 'pt', 'name', 'Centro de Recursos Naturais e Ambiente'),
(118492, 96331, 'en', 'name', 'Institute of Economics, Geography and Demography'),
(118493, 96331, 'es', 'name', 'Instituto de EconomĆ­a, GeografĆ­a y DemografĆ­a'),
(118494, 96332, 'en', 'name', 'University of Iowa Holden Comprehensive Cancer Center'),
(118495, 96333, 'en', 'name', 'State Key Laboratory of Crystal Materials'),
(118496, 96333, 'zh', 'name', 'ę™¶ä½“ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118497, 96334, 'en', 'name', 'Department of Agriculture, Environment and Rural Affairs of Northern Ireland'),
(118498, 96335, 'en', 'name', 'Bohdan Khmelnytskyi National Academy of the State Border Guard Service of Ukraine'),
(118499, 96335, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Державної прикорГонної служби України імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(118500, 96336, 'fr', 'name', 'Biomarqueurs d’urgence et de rĆ©animation'),
(118501, 96337, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Nantes'),
(118502, 96338, 'fr', 'name', 'Laboratoire d''Informatique MƩdicale et d''IngƩnierie des Connaissances en e-SantƩ'),
(118503, 96339, 'en', 'name', 'Institute of History'),
(118504, 96339, 'es', 'name', 'Instituto de Historia'),
(118505, 96340, 'en', 'name', 'HUN-REN Institute of Experimental Medicine'),
(118506, 96340, 'hu', 'name', 'Kísérleti OrvostudomÔnyi Kutatóintézet MTA'),
(118507, 96341, 'en', 'name', 'Federal Motor Carrier Safety Administration'),
(118508, 96342, 'en', 'name', 'Woodhull Medical and Mental Health Center'),
(118509, 96343, 'en', 'name', 'Merchants Chongqing Communications Research and Design Institute'),
(118510, 96343, 'zh', 'name', 'ę‹›å•†å±€é‡åŗ†äŗ¤é€šē§‘ē ”č®¾č®”é™¢ęœ‰é™å…¬åø'),
(118511, 96344, 'en', 'name', 'Oceanographic Center of Santander'),
(118512, 96344, 'es', 'name', 'Centro OceanogrƔfico de Santander'),
(118513, 96345, 'en', 'name', 'Wuhan Institute of Virology'),
(118514, 96345, 'zh', 'name', '中国科学院武汉病毒研究所'),
(118515, 96346, 'en', 'name', 'Massachusetts Breast Cancer Coalition'),
(118516, 96347, 'en', 'name', 'State Key Laboratory of Basin Water Cycle Simulation and Regulation'),
(118517, 96347, 'zh', 'name', 'ęµåŸŸę°“å¾ŖēŽÆęØ”ę‹ŸäøŽč°ƒęŽ§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118518, 96348, 'en', 'name', 'Institute of Intelligent Industrial Systems and Technologies for Advanced Manufacturing'),
(118519, 96348, 'it', 'name', 'Istituto di Sistemi e Tecnologie Industriali Intelligenti per il Manifatturiero Avanzato'),
(118520, 96349, 'es', 'name', 'Fundación BBVA'),
(118521, 96350, 'fr', 'name', 'Complexe de Recherche Interprofessionnel en AƩrothermochimie'),
(118522, 96351, 'fr', 'name', 'Laboratoire de MathƩmatiques Raphaƫl Salem'),
(118523, 96352, 'it', 'name', 'Istituto Sperimentale per la Zootecnia'),
(118524, 96353, 'en', 'name', 'Bureau of International Narcotics and Law Enforcement Affairs'),
(118525, 96354, 'en', 'name', 'Brain Tumour Charity'),
(118526, 96355, 'en', 'name', 'Centre for Energy and Thermal Sciences of Lyon'),
(118527, 96355, 'fr', 'name', 'Centre d''ƉnergĆ©tique et de Thermique de Lyon'),
(118528, 96356, 'fr', 'name', 'Normandie UniversitƩ'),
(118529, 96357, 'no_lang_code', 'name', 'Semmtech (Netherlands)'),
(118530, 96358, 'ar', 'name', 'الجامعة Ų§Ł„Ų£ŁŲ±ŁŠŁ‚ŁŠŲ©'),
(118531, 96358, 'en', 'name', 'Ahmed Draia University'),
(118532, 96359, 'en', 'name', 'Kyiv Academy of Arts'),
(118533, 96359, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń мистецтв'),
(118534, 96360, 'en', 'name', 'Oceanographic Center of CƔdiz'),
(118535, 96360, 'es', 'name', 'Centro OceanogrƔfico de CƔdiz'),
(118536, 96361, 'en', 'name', 'ProMedica'),
(118537, 96362, 'no_lang_code', 'name', 'MIMOS (Malaysia)'),
(118538, 96363, 'en', 'name', 'UC San Diego Health System'),
(118539, 96364, 'ca', 'name', 'Museu d''Arqueologia de Catalunya'),
(118540, 96364, 'es', 'name', 'Museo de Arqueologƭa de CataluƱa'),
(118541, 96365, 'en', 'name', 'EIT Food'),
(118542, 96366, 'en', 'name', 'Arab Academy For E-Business'),
(118543, 96367, 'en', 'name', 'Naval Research Laboratory Plasma Physics Division'),
(118544, 96368, 'es', 'name', 'Fundación Flores'),
(118545, 96369, 'en', 'name', 'State Key Laboratory of Advanced Steel Processing and Products'),
(118546, 96369, 'zh', 'name', 'å…ˆčæ›é’¢é“ęµēØ‹åŠęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118547, 96370, 'en', 'name', 'ATI Inc.'),
(118548, 96370, 'no_lang_code', 'name', 'ATI Inc. (United States)'),
(118549, 96371, 'no_lang_code', 'name', 'ELCOGAS (Spain)'),
(118550, 96372, 'no_lang_code', 'name', 'Climate Resource (Australia)'),
(118551, 96373, 'en', 'name', 'Naval Nuclear Propulsion Program (Naval Reactors)'),
(118552, 96374, 'fr', 'name', 'UnitƩ de Recherche en Chimie Organique et MacromolƩculaire'),
(118553, 96375, 'en', 'name', 'Delaware INBRE'),
(118554, 96376, 'en', 'name', 'Canada First Research Excellence Fund'),
(118555, 96376, 'fr', 'name', 'Fonds d’excellence en recherche ApogĆ©e Canada'),
(118556, 96377, 'en', 'name', 'Factum Foundation'),
(118557, 96377, 'es', 'name', 'Fundación Factum'),
(118558, 96378, 'de', 'name', 'Eidgenössisches Departement für Wirtschaft, Bildung und Forschung'),
(118559, 96378, 'en', 'name', 'Federal Department of Economic Affairs, Education and Research'),
(118560, 96378, 'fr', 'name', 'DƩpartement fƩdƩral de l''Ʃconomie, de la formation et de la recherche'),
(118561, 96378, 'it', 'name', 'Dipartimento federale dell''economia, della formazione e della ricerca'),
(118562, 96379, 'en', 'name', 'Bellevue Hospital Center'),
(118563, 96380, 'en', 'name', 'State Key Laboratory of Bridge Engineering Structural Dynamics'),
(118564, 96380, 'zh', 'name', 'ę”„ę¢å·„ēØ‹ē»“ęž„åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118565, 96381, 'id', 'name', 'Politeknik Siber Cerdika Internasional'),
(118566, 96382, 'ca', 'name', 'Centre d''Esclerosi MĆŗltiple de Catalunya'),
(118567, 96383, 'es', 'name', 'Real Sociedad EspaƱola de Fƭsica'),
(118568, 96384, 'fr', 'name', 'Ɖcole normale supĆ©rieure de Fontenay-Saint-Cloud'),
(118569, 96385, 'en', 'name', 'OpenTopography'),
(118570, 96386, 'no_lang_code', 'name', 'Aplitec (Spain)'),
(118571, 96387, 'en', 'name', 'Sanitas Alcorcón Medical Centre'),
(118572, 96387, 'es', 'name', 'Centro Médico Sanitas Alcorcón'),
(118573, 96388, 'en', 'name', 'Guangzhou Research Institute of Non-ferrous Metals'),
(118574, 96388, 'zh', 'name', 'å¹æå·žęœ‰č‰²é‡‘å±žē ”ē©¶é™¢'),
(118575, 96389, 'en', 'name', 'State Key Laboratory of Ocean Engineering'),
(118576, 96389, 'zh', 'name', 'ęµ·ę“‹å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118577, 96390, 'en', 'name', 'State Key Laboratory of ASIC and System'),
(118578, 96390, 'zh', 'name', 'äø“ē”Øé›†ęˆē”µč·ÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118579, 96391, 'en', 'name', 'State Key Laboratory of Earthquake Dynamics'),
(118580, 96391, 'zh', 'name', 'åœ°éœ‡åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118581, 96392, 'en', 'name', 'Early detection of Colon Cancer using Molecular Markers and Microbiota'),
(118582, 96393, 'en', 'name', 'METAvivor'),
(118583, 96394, 'en', 'name', 'Center for Risk-Based Community Resilience Planning'),
(118584, 96395, 'es', 'name', 'Fundación Bancaja'),
(118585, 96396, 'no_lang_code', 'name', 'Geolica Innovations (Spain)'),
(118586, 96397, 'en', 'name', 'Jizzakh branch of the National University of Uzbekistan named after Mirzo Ulugbek'),
(118587, 96397, 'uz', 'name', 'Mirzo Ulug`bek nomidagi O`zbekiston milliy universiteti Jizzax filiali'),
(118588, 96398, 'en', 'name', 'Rally Foundation for Childhood Cancer Research'),
(118589, 96399, 'de', 'name', 'Deutsches Herzzentrum der CharitƩ'),
(118590, 96399, 'en', 'name', 'German Heart Center Berlin'),
(118591, 96400, 'sv', 'name', 'SprƄkbanken Sam'),
(118592, 96401, 'es', 'name', 'Instituto de Microelectrónica de Sevilla'),
(118593, 96402, 'en', 'name', 'State Key Laboratory of Advanced Electromagnetic Engineering and Technology'),
(118594, 96402, 'zh', 'name', 'å¼ŗē”µē£å·„ēØ‹äøŽę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118595, 96403, 'no_lang_code', 'name', 'Colectica (United States)'),
(118596, 96404, 'no_lang_code', 'name', 'VMware (United States)'),
(118597, 96405, 'en', 'name', 'State Key Laboratory of Clean Energy Utilization'),
(118598, 96405, 'zh', 'name', 'čƒ½ęŗęø…ę“åˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118599, 96406, 'en', 'name', 'Vietnamese Academy of Forest Sciences'),
(118600, 96407, 'de', 'name', 'Vereinigung Ɩsterreichischer Bibliothekarinnen und Bibliothekare'),
(118601, 96408, 'es', 'name', 'Sociedad Latinoamericana de Nutrición'),
(118602, 96409, 'ar', 'name', 'الجامعة Ų§Ł„ŲŖŲ®ŲµŲµŁŠŲ© Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(118603, 96409, 'en', 'name', 'Modern Specialized University'),
(118604, 96410, 'en', 'name', 'National Centre for Technology and Food Safety'),
(118605, 96410, 'es', 'name', 'Centro Nacional de TecnologĆ­a y Seguridad Alimentaria'),
(118606, 96411, 'en', 'name', 'State Key Laboratory of Genetic Engineering'),
(118607, 96411, 'zh', 'name', 'é—ä¼ å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118608, 96412, 'en', 'name', 'State Key Laboratory of Medical Genomics'),
(118609, 96412, 'zh', 'name', 'åŒ»å­¦é—ä¼ å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118610, 96413, 'en', 'name', 'Sisters Network Inc.'),
(118611, 96414, 'en', 'name', 'Bureau of Educational and Cultural Affairs'),
(118612, 96415, 'en', 'name', 'Methodist College'),
(118613, 96416, 'en', 'name', 'Rose Hills Foundation'),
(118614, 96417, 'en', 'name', 'Sanitas Valdebebas Medical Centre'),
(118615, 96417, 'es', 'name', 'Centro MƩdico Sanitas Valdebebas'),
(118616, 96418, 'en', 'name', 'Naval Electronics Laboratory Center'),
(118617, 96419, 'de', 'name', 'Max-Planck-Institut für Nachhaltige Materialien'),
(118618, 96419, 'en', 'name', 'Max Planck Institute for Sustainable Materials'),
(118619, 96420, 'en', 'name', 'Seattle Children''s Hospital'),
(118620, 96421, 'en', 'name', 'Armadale Health Service'),
(118621, 96422, 'en', 'name', 'USC Norris Comprehensive Cancer Center'),
(118622, 96423, 'es', 'name', 'Universidad Autónoma del Carmen'),
(118623, 96424, 'no_lang_code', 'name', 'Goodyear Aerospace (United States)'),
(118624, 96425, 'fr', 'name', 'Laboratoire d''Informatique Fondamentale d''OrlƩans'),
(118625, 96426, 'ca', 'name', 'Fundació Pasqual Maragall'),
(118626, 96426, 'en', 'name', 'Pasqual Maragall Foundation'),
(118627, 96427, 'es', 'name', 'Geociencias Barcelona'),
(118628, 96428, 'ca', 'name', 'Ajuntament de L’Hospitalet'),
(118629, 96428, 'en', 'name', 'Hospitalet de Llobregat City Council'),
(118630, 96429, 'ca', 'name', 'Departament d''Universitats, Recerca i Societat de la Informació'),
(118631, 96429, 'en', 'name', 'Research and Information Society of the Generalitat of Catalonia'),
(118632, 96430, 'en', 'name', 'Gilchrist Educational Trust'),
(118633, 96431, 'fr', 'name', 'CƩgep de Sherbrooke'),
(118634, 96432, 'no_lang_code', 'name', 'Hryhorii Skovoroda University in Pereiaslav'),
(118635, 96432, 'uk', 'name', 'Університет Š“Ń€ŠøŠ³Š¾Ń€Ń–Ń ДковороГи в ŠŸŠµŃ€ŠµŃŃŠ»Š°Š²Ń–'),
(118636, 96433, 'en', 'name', 'Sancho el Sabio Foundation'),
(118637, 96433, 'es', 'name', 'Fundación Sancho el Sabio Fundazioa'),
(118638, 96434, 'no_lang_code', 'name', 'Forest Laboratories (United States)'),
(118639, 96435, 'fr', 'name', 'GƩographie de l''environnement'),
(118640, 96436, 'fr', 'name', 'Groupe des Ɖcoles Nationales d''Ɖconomie et Statistique'),
(118641, 96437, 'en', 'name', 'Saint Louis University'),
(118642, 96437, 'es', 'name', 'Universidad de San Luis'),
(118643, 96437, 'fr', 'name', 'UniversitƩ de saint-louis'),
(118644, 96438, 'no_lang_code', 'name', 'Industrial Galvanizadora (Spain)'),
(118645, 96439, 'en', 'name', 'Dartmouth Health'),
(118646, 96440, 'en', 'name', 'Issyk-Kul State University'),
(118647, 96440, 'ru', 'name', 'Š˜ŃŃŃ‹Šŗ-Кульский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Университет'),
(118648, 96441, 'en', 'name', 'Thermo-Fluids for Transport Laboratory'),
(118649, 96441, 'fr', 'name', 'Laboratoire de thermofluide pour le transport'),
(118650, 96442, 'fr', 'name', 'MathƩmatiques, Informatique et Statistique pour l''Environnement et l''Agronomie'),
(118651, 96443, 'pt', 'name', 'Instituto PortuguĆŖs Da Qualidade'),
(118652, 96444, 'fr', 'name', 'Fondation Voir & Entendre'),
(118653, 96445, 'no_lang_code', 'name', 'Diater (Spain)'),
(118654, 96446, 'fr', 'name', 'Laboratoire de Droit PrivƩ'),
(118655, 96447, 'en', 'name', 'Sanitas BS Boadilla Medical Centre'),
(118656, 96447, 'es', 'name', 'Centro MƩdico Sanitas BS Boadilla'),
(118657, 96448, 'ka', 'name', 'ეულხან-įƒ”įƒįƒ‘įƒ įƒįƒ įƒ‘įƒ”įƒšįƒ˜įƒįƒœįƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(118658, 96448, 'no_lang_code', 'name', 'Sulkhan-Saba Orbeliani University'),
(118659, 96449, 'id', 'name', 'Universitas Trinita'),
(118660, 96450, 'en', 'name', 'State Key Laboratory of Acoustics'),
(118661, 96450, 'zh', 'name', 'å£°åœŗå£°äæ”ęÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118662, 96451, 'en', 'name', 'Georges Friedel Laboratory'),
(118663, 96451, 'fr', 'name', 'Laboratoire George Friedel'),
(118664, 96452, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒ¬ć‚¾ćƒŠćƒƒć‚Æ'),
(118665, 96452, 'no_lang_code', 'name', 'Resonac (Japan)'),
(118666, 96453, 'en', 'name', 'State Key Laboratory of New Technology of Iron and Steel Metallurgy'),
(118667, 96453, 'zh', 'name', 'é’¢é“å†¶é‡‘ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118668, 96454, 'en', 'name', 'Ministry of Economic Development, Employment and Infrastructure'),
(118669, 96454, 'fr', 'name', 'Ministère du Développement économique, de l''Emploi et de l''Infrastructure'),
(118670, 96455, 'fr', 'name', 'PƓle de Recherche Francophonies, Interculturel, Communication, Sociolinguistique'),
(118671, 96456, 'fr', 'name', 'Laboratoire Instrumentation, Simulation et Informatique Scientifique'),
(118672, 96457, 'de', 'name', 'Addisca'),
(118673, 96458, 'en', 'name', 'Virgin Islands Department of Human Services'),
(118674, 96459, 'id', 'name', 'Universitas Islam Internasional Indonesia'),
(118675, 96460, 'es', 'name', 'Wikimedia EspaƱa'),
(118676, 96461, 'en', 'name', 'Institute of Agricultural Sciences'),
(118677, 96461, 'es', 'name', 'Instituto de Ciencias Agrarias'),
(118678, 96462, 'en', 'name', 'Ayub Agriculture Research Institute'),
(118679, 96463, 'fr', 'name', 'IRT Saint ExupƩry'),
(118680, 96464, 'es', 'name', 'Fundación para la Investigación Médica Aplicada'),
(118681, 96465, 'fr', 'name', 'Lasers, Plasmas et ProcƩdƩs Photoniques'),
(118682, 96466, 'en', 'name', 'Bristol Royal Hospital for Children'),
(118683, 96467, 'en', 'name', 'NIHR Applied Research Collaboration South West Peninsula'),
(118684, 96468, 'es', 'name', 'Ministerio para la Transformación Digital y de la Función Pública'),
(118685, 96469, 'fr', 'name', 'Centre de recherche bretonne et celtique'),
(118686, 96470, 'en', 'name', 'Moores Cancer Center'),
(118687, 96471, 'es', 'name', 'Fundación Agustín de Betancourt'),
(118688, 96472, 'pt', 'name', 'Academia de CiĆŖncias da Bahia'),
(118689, 96473, 'en', 'name', 'Canon Medical Systems Corporation (Japan)'),
(118690, 96473, 'ja', 'name', 'ć‚­ćƒ¤ćƒŽćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚·ć‚¹ćƒ†ćƒ ć‚ŗę Ŗå¼ä¼šē¤¾'),
(118691, 96474, 'en', 'name', 'KEK Accelerator Laboratory'),
(118692, 96474, 'ja', 'name', 'åŠ é€Ÿå™Øē ”ē©¶ę–½čØ­'),
(118693, 96475, 'en', 'name', 'Bioenergy Technologies Office'),
(118694, 96476, 'en', 'name', 'Australian National Algae Culture Collection'),
(118695, 96477, 'en', 'name', 'Wind Energy Technologies Office'),
(118696, 96478, 'de', 'name', 'Landesanstalt für Umwelt Baden-Württemberg'),
(118697, 96479, 'en', 'name', 'University System of Maryland'),
(118698, 96480, 'en', 'name', 'Association of Universities Research Centres and Central University Libraries in Romania'),
(118699, 96480, 'ro', 'name', 'Anelis Plus'),
(118700, 96481, 'fr', 'name', 'Laboratoire Universitaire des Sciences AppliquƩes de Cherbourg'),
(118701, 96482, 'fr', 'name', 'UniversitƩ Thomas SANKARA'),
(118702, 96483, 'en', 'name', 'Therapeutic Innovation Australia'),
(118703, 96484, 'en', 'name', 'St. Petersburg Christian University'),
(118704, 96484, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ христианский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(118705, 96485, 'en', 'name', 'Virginia and West Virginia Water Science Center'),
(118706, 96486, 'no_lang_code', 'name', 'BAE Systems Electronic Systems (United States)'),
(118707, 96487, 'en', 'name', 'American Civil Liberties Union'),
(118708, 96488, 'en', 'name', 'Institute of Grapevine and Wine Sciences'),
(118709, 96488, 'es', 'name', 'Instituto de Ciencias de la Vid y del Vino'),
(118710, 96489, 'en', 'name', 'IESIDE Business School'),
(118711, 96489, 'es', 'name', 'Escuela de Negocios IESIDE'),
(118712, 96490, 'en', 'name', 'Keck Hospital of USC'),
(118713, 96491, 'en', 'name', 'Point Pedro Institute of Development'),
(118714, 96492, 'en', 'name', 'Iowa Academy of Science'),
(118715, 96493, 'en', 'name', 'Farhangian University'),
(118716, 96493, 'fa', 'name', 'دانؓگاه ŁŲ±Ł‡Ł†ŚÆŪŒŲ§Ł†'),
(118717, 96494, 'de', 'name', 'FƖD Volksgesundheit, Sicherheit der Nahrungsmittelkette und Umwelt'),
(118718, 96494, 'en', 'name', 'FPS Public Health, Food Chain Safety and Environment'),
(118719, 96494, 'fr', 'name', 'SPF SantƩ publique, SƩcuritƩ de la ChaƮne alimentaire et Environnement'),
(118720, 96494, 'nl', 'name', 'FOD Volksgezondheid, Veiligheid van de Voedselketen en Leefmilieu'),
(118721, 96495, 'en', 'name', 'Simon Diedong Dombo University of Business and Integrated Development Studies'),
(118722, 96496, 'es', 'name', 'Ministerio de Telecomunicaciones y de la Sociedad de la Información'),
(118723, 96497, 'en', 'name', 'The Central Hospital of Enshi Tujia and Miao Autonomous Prefecture'),
(118724, 96497, 'zh', 'name', 'ę©ę–½åœŸå®¶ę—č‹—ę—č‡Ŗę²»å·žäø­åæƒåŒ»é™¢'),
(118725, 96498, 'en', 'name', '"Ion Ionescu de la Brad" Iasi University of Life Sciences'),
(118726, 96499, 'en', 'name', 'Children''s Hospital Central California'),
(118727, 96500, 'no_lang_code', 'name', 'Gipsi (France)'),
(118728, 96501, 'en', 'name', 'Centre for Advanced Microscopy'),
(118729, 96502, 'no_lang_code', 'name', 'China Energy Science and Technology Research Institute Co., Ltd. (China)'),
(118730, 96502, 'zh', 'name', 'å›½å®¶čƒ½ęŗé›†å›¢ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(118731, 96503, 'en', 'name', 'The Red Door Community'),
(118732, 96504, 'no_lang_code', 'name', 'CA Technologies (United States)'),
(118733, 96505, 'en', 'name', 'School of Management Fribourg'),
(118734, 96506, 'en', 'name', 'Kharkiv National Medical University'),
(118735, 96506, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(118736, 96507, 'en', 'name', 'City and Guilds College Association'),
(118737, 96508, 'en', 'name', 'SSN Educational and Charitable Trust'),
(118738, 96509, 'fr', 'name', 'Remodelage et Reparation du Tissu Renal, Remodelage et rƩparation du tissu rƩnal'),
(118739, 96510, 'en', 'name', 'CHI Health Nebraska Heart'),
(118740, 96511, 'en', 'name', 'State Key Laboratory of Space Medicine Fundamentals and Application'),
(118741, 96511, 'zh', 'name', 'čˆŖå¤©åŒ»å­¦åŸŗē”€äøŽåŗ”ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118742, 96512, 'en', 'name', 'HSNC University'),
(118743, 96513, 'en', 'name', 'Argonne Leadership Computing Facility'),
(118744, 96514, 'ca', 'name', 'Institut ValenciĆ  de Competitivitat Empresarial, Institut de la Petita i Mitjana IndĆŗstria de la Generalitat Valenciana'),
(118745, 96514, 'en', 'name', 'Institute for Small and Medium Industry of the Generalitat Valenciana'),
(118746, 96514, 'es', 'name', 'Instituto Valenciano de Competitividad Empresarial, Instituto de la PequeƱa y Mediana Industria de la Generalidad Valenciana'),
(118747, 96515, 'en', 'name', 'Synergy America, Synergy America (United States)'),
(118748, 96516, 'en', 'name', 'State Key Laboratory of Continental Dynamics'),
(118749, 96516, 'zh', 'name', 'å¤§é™†åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118750, 96517, 'id', 'name', 'Sekolah Tinggi Ilmu Kepolisian'),
(118751, 96518, 'fr', 'name', 'Analyses et Expérimentations pour les Ecosystèmes'),
(118752, 96519, 'fr', 'name', 'Neuropsychologie Cognitive et Physiopathologie de la SchizophrƩnie'),
(118753, 96520, 'en', 'name', 'State Key Laboratory of New Ceramics and Fine Processing'),
(118754, 96520, 'zh', 'name', 'ę–°åž‹é™¶ē“·äøŽē²¾ē»†å·„č‰ŗå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118755, 96521, 'en', 'name', 'Market Harborough Hospital'),
(118756, 96522, 'en', 'name', 'State Key Laboratory of Electronic Thin Films and Integrated Devices'),
(118757, 96522, 'zh', 'name', 'ē”µå­č–„č†œäøŽé›†ęˆå™Øä»¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118758, 96523, 'en', 'name', 'Rotterdam Foundation for Blind People'),
(118759, 96523, 'nl', 'name', 'Rotterdamse Stichting Blindenbelangen'),
(118760, 96524, 'cs', 'name', 'BezpečnostnĆ­ informačnĆ­ služba'),
(118761, 96524, 'en', 'name', 'Security Information Service'),
(118762, 96525, 'en', 'name', 'Autonomous Region of Friuli Venezia Giulia'),
(118763, 96525, 'it', 'name', 'Regione Autonoma Friuli Venezia Giulia'),
(118764, 96526, 'en', 'name', 'Second Institute of Oceanography'),
(118765, 96526, 'zh', 'name', 'å›½å®¶ęµ·ę“‹å±€ē¬¬äŗŒęµ·ę“‹ē ”ē©¶ę‰€åˆ›å»ŗäŗŽ'),
(118766, 96527, 'en', 'name', 'Stanley Center for Psychiatric Research'),
(118767, 96528, 'en', 'name', 'The Baltic Sea Conservation Foundation'),
(118768, 96528, 'lv', 'name', 'Baltijas jūras aizsardzības fonds'),
(118769, 96528, 'ru', 'name', 'ФонГ охраны Балтийского Š¼Š¾Ń€Ń'),
(118770, 96529, 'en', 'name', 'Radical Data, Radical Data (Netherlands)'),
(118771, 96530, 'no_lang_code', 'name', 'Bureau Veritas (Australia)'),
(118772, 96531, 'en', 'name', 'Sanitas Valencia Medical Centre'),
(118773, 96531, 'es', 'name', 'Centro MƩdico Sanitas Valencia'),
(118774, 96532, 'en', 'name', 'Center for Statistics and Applications in Forensic Evidence'),
(118775, 96533, 'en', 'name', 'State Key Laboratory of Text Information Processing'),
(118776, 96533, 'zh', 'name', 'ę–‡å­—äæ”ęÆå¤„ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118777, 96534, 'en', 'name', 'Institute of Biophysics'),
(118778, 96534, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē”Ÿē‰©ē‰©ē†ē ”ē©¶ę‰€'),
(118779, 96535, 'fr', 'name', 'DƩlƩgation Centre-Est'),
(118780, 96536, 'en', 'name', 'Federal Institute of Bahia'),
(118781, 96536, 'fr', 'name', 'Ɖcole polytechnique fĆ©dĆ©rale de bahia'),
(118782, 96536, 'pt', 'name', 'Instituto Federal da Bahia'),
(118783, 96537, 'ja', 'name', 'ć‚ŖćƒŖćƒ³ćƒ‘ć‚¹ę Ŗå¼ä¼šē¤¾'),
(118784, 96537, 'no_lang_code', 'name', 'Olympus (Japan)'),
(118785, 96538, 'ja', 'name', '学栔法人立命館'),
(118786, 96538, 'no_lang_code', 'name', 'The Ritsumeikan Trust'),
(118787, 96539, 'en', 'name', 'Design for All Foundation'),
(118788, 96540, 'en', 'name', 'State Key Laboratory of Modern Coordination Chemistry'),
(118789, 96540, 'zh', 'name', 'ēŽ°ä»£é…ä½åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118790, 96541, 'id', 'name', 'Politeknik Negeri Sriwijaya'),
(118791, 96542, 'en', 'name', 'Andalusian Center for Developmental Biology'),
(118792, 96542, 'es', 'name', 'Centro Andaluz de BiologĆ­a del Desarrollo'),
(118793, 96543, 'no_lang_code', 'name', 'Vodafone (United Kingdom)'),
(118794, 96544, 'en', 'name', 'Harbin Institute of Large Electric Machinery'),
(118795, 96544, 'zh', 'name', 'å“ˆå°”ę»Øå¤§ē”µęœŗē ”ē©¶ę‰€'),
(118796, 96545, 'ca', 'name', 'Institut de CiĆØncies de l''Espai'),
(118797, 96545, 'en', 'name', 'Institute of Space Sciences'),
(118798, 96545, 'es', 'name', 'Instituto de Ciencias del Espacio'),
(118799, 96546, 'en', 'name', 'Swedish Institute of Computer Science'),
(118800, 96547, 'en', 'name', 'University of Maryland Marlene and Stewart Greenebaum Comprehensive Cancer Center'),
(118801, 96548, 'en', 'name', 'Colorectal Cancer Alliance'),
(118802, 96549, 'ja', 'name', 'ę˜­å’Œé›»å·„ćƒžćƒ†ćƒŖć‚¢ćƒ«ć‚ŗę Ŗå¼ä¼šē¤¾'),
(118803, 96549, 'no_lang_code', 'name', 'Showa Denko Materials Co., Ltd. (Japan)'),
(118804, 96550, 'en', 'name', 'University of Lethbridge Faculty Association'),
(118805, 96551, 'fr', 'name', 'Laboratoire de Statistique ThƩorique et AppliquƩe'),
(118806, 96552, 'en', 'name', 'State Key Laboratory of Fire Science'),
(118807, 96552, 'zh', 'name', 'ē«ē¾ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118808, 96553, 'en', 'name', 'Office of Resource Sustainability'),
(118809, 96554, 'en', 'name', 'National Science and Technology Institute for Translational Medicine'),
(118810, 96554, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia Translacional em Medicina'),
(118811, 96555, 'en', 'name', 'CHI Health Lakeside'),
(118812, 96556, 'en', 'name', 'MRC Centre for Environment and Health'),
(118813, 96557, 'fr', 'name', 'Centre d''Ɖtude des Pathologies Respiratoires'),
(118814, 96558, 'en', 'name', 'Centre for Astrophysics of the University of Porto'),
(118815, 96558, 'pt', 'name', 'Centro de AstrofĆ­sica da Universidade do Porto'),
(118816, 96559, 'no_lang_code', 'name', 'CompaƱƭa EspaƱola de Sistemas AeronƔuticos (Spain)'),
(118817, 96560, 'ca', 'name', 'Conselleria d''Educació, Universitats i Ocupació'),
(118818, 96560, 'es', 'name', 'Conselleria de Educación, Universidades y Empleo'),
(118819, 96561, 'en', 'name', 'Building Blocks for Future Electronics Laboratory'),
(118820, 96562, 'en', 'name', 'Bristol Eye Hospital'),
(118821, 96563, 'en', 'name', 'St. Petersburg Research Institute of Radiation Hygiene'),
(118822, 96563, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ раГиационной гигиены имени профессора П.Š’.Рамзаева'),
(118823, 96564, 'ar', 'name', 'الجامعة Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ©'),
(118824, 96564, 'en', 'name', 'University of Technology - Iraq'),
(118825, 96565, 'en', 'name', 'Ateneo de Davao University'),
(118826, 96565, 'tl', 'name', 'Pamantasang Ateneo de Davao'),
(118827, 96566, 'en', 'name', 'Menorah Medical Center'),
(118828, 96567, 'no_lang_code', 'name', 'Abbott (Spain)'),
(118829, 96568, 'es', 'name', 'Laboratorio Central Oficial de Electrotecnica'),
(118830, 96569, 'en', 'name', 'Saudi Arabian Cultural Mission'),
(118831, 96570, 'en', 'name', 'Center for Nanophase Materials Sciences'),
(118832, 96571, 'fr', 'name', 'Risques cliniques et sƩcuritƩ en santƩ des femmes et en santƩ pƩrinatale'),
(118833, 96572, 'en', 'name', 'Saint Francis University'),
(118834, 96572, 'zh', 'name', 'ę˜Žę„›å°ˆäøŠå­øé™¢'),
(118835, 96573, 'en', 'name', 'Independent Authority for Public Revenue'),
(118836, 96574, 'ca', 'name', 'Institut de Recerca de la Biodiversitat de la Universitat de Barcelona'),
(118837, 96574, 'en', 'name', 'Biodiversity Research Institute of the Universiy of Barcelona'),
(118838, 96574, 'zh', 'name', 'Instituto de Investigación de la Biodiversidad de la Universidad de Barcelona'),
(118839, 96575, 'en', 'name', 'Center for the Development of Information and Communication Technologies'),
(118840, 96575, 'es', 'name', 'Fundación Centro Tecnológico de la Información y la Comunicación'),
(118841, 96576, 'en', 'name', 'Liaocheng Fifth People''s Hospital'),
(118842, 96576, 'zh', 'name', 'čŠåŸŽåø‚ē¬¬äŗ”äŗŗę°‘åŒ»é™¢'),
(118843, 96577, 'en', 'name', 'Queen Elizabeth Diamond Jubilee Trust'),
(118844, 96578, 'en', 'name', 'University of Siedlce'),
(118845, 96578, 'pl', 'name', 'Uniwersytet w Siedlcach'),
(118846, 96579, 'en', 'name', 'Ajou University in Tashkent'),
(118847, 96579, 'ru', 'name', 'Университет АГжу в гороГе Š¢Š°ŃˆŠŗŠµŠ½Ń‚'),
(118848, 96579, 'uz', 'name', 'Toshkent shahridagi Adju Universiteti'),
(118849, 96580, 'id', 'name', 'Institut Teknologi Dan Bisnis STIKOM Bali'),
(118850, 96581, 'en', 'name', 'St. Joseph Regional Medical Center'),
(118851, 96582, 'no_lang_code', 'name', 'GenoSafe'),
(118852, 96583, 'en', 'name', 'Building Technologies Office'),
(118853, 96584, 'en', 'name', 'Barcelona Provincial Council'),
(118854, 96584, 'es', 'name', 'Diputació de Barcelona'),
(118855, 96585, 'fr', 'name', 'Groupe d’Étude de la MatiĆØre CondensĆ©e'),
(118856, 96586, 'en', 'name', 'Institute of Environmental Geosciences'),
(118857, 96586, 'fr', 'name', 'Institut des GƩosciences de l''Environnement'),
(118858, 96587, 'en', 'name', 'Bhailal Amin General Hospital'),
(118859, 96588, 'fr', 'name', 'Centre de recherche interdisciplinaire sur les modèles esthétiques et littéraires'),
(118860, 96589, 'en', 'name', 'National Energy Technology Laboratory'),
(118861, 96590, 'en', 'name', 'Sanitas Serrano Advanced Rehabilitation Centre'),
(118862, 96590, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Serrano'),
(118863, 96591, 'es', 'name', 'Consellería de Economía, Industria e Innovación'),
(118864, 96592, 'no_lang_code', 'name', 'Military Electronic Works (Poland)'),
(118865, 96593, 'ca', 'name', 'Agència de Qualitat i Avaluació Sanitàries de Catalunya'),
(118866, 96593, 'en', 'name', 'Catalan Agency for Health Information, Assessment and Quality'),
(118867, 96593, 'es', 'name', 'Agencia de Calidad y Evaluación sanitarias de Cataluña'),
(118868, 96594, 'en', 'name', 'Geology, Energy and Minerals Science Center'),
(118869, 96595, 'en', 'name', 'Webster University'),
(118870, 96595, 'fr', 'name', 'UniversitƩ de webster'),
(118871, 96596, 'de', 'name', 'Leibniz-Institut für Werkstofforientierte Technologien, Leibniz-Institut für Werkstofforientierte Technologien - IWT'),
(118872, 96597, 'en', 'name', 'Elcano Royal Institute for International and Strategic Studies'),
(118873, 96597, 'es', 'name', 'Real Instituto Elcano de Estudios Internacionales y EstratƩgicos'),
(118874, 96598, 'en', 'name', 'Office of International Nuclear Safety'),
(118875, 96599, 'en', 'name', 'Moffitt Cancer Center'),
(118876, 96600, 'en', 'name', 'Quebec Research and Development Centre'),
(118877, 96600, 'fr', 'name', 'Centre de recherche et de dƩveloppement de QuƩbec'),
(118878, 96601, 'en', 'name', 'St. Louis Ovarian Cancer Awareness'),
(118879, 96602, 'en', 'name', 'Wildlife Conservation Society'),
(118880, 96603, 'en', 'name', 'State Key Laboratory of Analytical Chemistry for Life Science'),
(118881, 96603, 'zh', 'name', 'ē”Ÿå‘½åˆ†ęžåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118882, 96604, 'en', 'name', 'South China Botanical Garden'),
(118883, 96604, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŽå—ę¤ē‰©å›­'),
(118884, 96605, 'es', 'name', 'Universidad Evangelica de El Salvador'),
(118885, 96606, 'en', 'name', 'Ministry of Science, Industry and Technology'),
(118886, 96606, 'tr', 'name', 'Bilim, Sanayi ve Teknoloji Bakanlığı'),
(118887, 96607, 'en', 'name', 'Health Information and Quality Authority'),
(118888, 96607, 'ga', 'name', 'An tÚdarÔs um Fhaisnéis agus CÔilíocht SlÔinte'),
(118889, 96608, 'en', 'name', 'Data and algorithms for an intelligent and sustainable city'),
(118890, 96608, 'fr', 'name', 'DonnƩes et algorithmes pour une ville intelligente et durable'),
(118891, 96609, 'en', 'name', 'California Department of Pesticide Regulation');
INSERT INTO `ror_settings` VALUES
(118892, 96610, 'en', 'name', 'Sanitas Las Tablas Advanced Rehabilitation Centre'),
(118893, 96610, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Las Tablas'),
(118894, 96611, 'en', 'name', 'Liaquat National Hospital'),
(118895, 96612, 'es', 'name', 'Fundación para el Fomento de la Innovación Industrial'),
(118896, 96613, 'en', 'name', 'National Institute for R&D in Electrical Engineering ICPE-CA'),
(118897, 96613, 'ro', 'name', 'Institutul National de Cercetare-Dezvoltare pentru Inginerie Electrica ICPE-CA'),
(118898, 96614, 'en', 'name', 'Council of Science and Technology, Uttar Pradesh'),
(118899, 96615, 'de', 'name', 'Janssen Schweiz'),
(118900, 96615, 'fr', 'name', 'Janssen Suisse'),
(118901, 96615, 'no_lang_code', 'name', 'Janssen (Switzerland)'),
(118902, 96616, 'en', 'name', 'University of Belgrade - Faculty of Agriculture'),
(118903, 96616, 'sr', 'name', 'Univerzitet u Beogradu - Poljoprivredni fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - ŠŸŠ¾Ń™Š¾ŠæŃ€ŠøŠ²Ń€ŠµŠ“Š½Šø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(118904, 96617, 'en', 'name', 'Shanghai Institute of Organic Chemistry'),
(118905, 96617, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·ęœ‰ęœŗåŒ–å­¦ē ”ē©¶ę‰€'),
(118906, 96618, 'en', 'name', 'Abetifi Presbyterian College of Education'),
(118907, 96619, 'ca', 'name', 'Institut de Biomedicina de la Universitat de Barcelona'),
(118908, 96619, 'en', 'name', 'Institute of Biomedicine of the University of Barcelona'),
(118909, 96620, 'en', 'name', 'Soft Imaging LLC, Soft Imaging LLC (United States)'),
(118910, 96621, 'de', 'name', 'Stiftung Preußischer Kulturbesitz'),
(118911, 96621, 'en', 'name', 'Prussian Cultural Heritage Foundation'),
(118912, 96622, 'en', 'name', 'Sanitas Barcelona Advanced Rehabilitation Centre'),
(118913, 96622, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Barcelona'),
(118914, 96623, 'en', 'name', 'Center for Plant Genetic Resources and Sustainable Agriculture'),
(118915, 96623, 'es', 'name', 'Centro de Recursos FitogenƩticos y Agricultura Sostenible'),
(118916, 96624, 'nl', 'name', 'Stichting OpenAccess'),
(118917, 96625, 'fr', 'name', 'DƩlƩgation Ile-de-France Sud'),
(118918, 96626, 'ca', 'name', 'Institució Milà i Fontanals de Recerca en Humanitats'),
(118919, 96626, 'es', 'name', 'Institución MilÔ y Fontanals de Investigación en Humanidades'),
(118920, 96627, 'en', 'name', 'Irma T. Hirschl Trust'),
(118921, 96628, 'en', 'name', 'Radboud Institute for Molecular Life Sciences'),
(118922, 96629, 'fr', 'name', 'Centre de recherche Inter-langues sur la Signification en contexte'),
(118923, 96630, 'es', 'name', 'Instituto de Investigaciones GeogrƔficas de la Patagonia'),
(118924, 96631, 'es', 'name', 'Universidad Nacional de Educación'),
(118925, 96632, 'en', 'name', 'State Key Laboratory of Medical Molecular Biology'),
(118926, 96632, 'zh', 'name', 'åŒ»å­¦åˆ†å­ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118927, 96633, 'en', 'name', 'Indonesian Journal Publisher'),
(118928, 96633, 'id', 'name', 'Penerbit Jurnal Indonesia'),
(118929, 96633, 'no_lang_code', 'name', 'Indonesian Journal Publisher (Indonesia)'),
(118930, 96634, 'en', 'name', 'Cascadia Seaweed, Cascadia Seaweed (Canada)'),
(118931, 96635, 'en', 'name', 'Beijing Jiaotong University'),
(118932, 96635, 'zh', 'name', 'åŒ—äŗ¬äŗ¤é€šå¤§å­¦'),
(118933, 96636, 'de', 'name', 'Bundesministerium für Umwelt, Naturschutz, nukleare Sicherheit und Verbraucherschutz'),
(118934, 96637, 'fr', 'name', 'Globus et Locus'),
(118935, 96638, 'bs', 'name', 'JNU Institut za zaŔtitu i ekologiju Republike Srpske, Banja Luka'),
(118936, 96638, 'en', 'name', 'PSI Institute for Protection and Ecology of the Republic of Srpska, Banja'),
(118937, 96638, 'sr', 'name', 'ŠˆŠŠ£ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š·Š°ŃˆŃ‚ŠøŃ‚Ńƒ Šø екологију Републике Дрпске, Š‘Š°ŃšŠ° Š›ŃƒŠŗŠ°'),
(118938, 96639, 'en', 'name', 'New Zealand Antarctic Research Institute'),
(118939, 96640, 'fr', 'name', 'Equipe d’Economie Le Havre Normandie'),
(118940, 96641, 'fr', 'name', 'Laboratoire des Sciences des ProcƩdƩs et des MatƩriaux'),
(118941, 96642, 'de', 'name', 'Stifterverband'),
(118942, 96642, 'en', 'name', 'Donors Association for the Promotion of Humanities and Sciences in Germany'),
(118943, 96643, 'en', 'name', 'Genomics and Biotechnology of the Fruits Laboratory'),
(118944, 96643, 'fr', 'name', 'Genomique et Biotechnologie des Fruits'),
(118945, 96644, 'en', 'name', 'Beijing General Research Institute of Mining and Metallurgy'),
(118946, 96644, 'zh', 'name', 'åŒ—äŗ¬ēŸæå†¶ē ”ē©¶ę€»é™¢'),
(118947, 96645, 'en', 'name', 'State Key Laboratory of Software Engineering'),
(118948, 96645, 'zh', 'name', 'č½Æä»¶å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118949, 96646, 'de', 'name', 'Institut für Rechtspolitik an der Universität Trier'),
(118950, 96647, 'no_lang_code', 'name', 'Lockheed Missiles and Space Company (United States)'),
(118951, 96648, 'no_lang_code', 'name', 'CHN Energy (China)'),
(118952, 96648, 'zh', 'name', 'å›½å®¶čƒ½ęŗęŠ•čµ„é›†å›¢'),
(118953, 96649, 'en', 'name', 'Directorate General of Traffic'),
(118954, 96649, 'es', 'name', 'Dirección General de TrÔfico'),
(118955, 96650, 'en', 'name', 'UL Standards & Engagement'),
(118956, 96651, 'en', 'name', 'Pharmaceutical Research and Manufacturers of America'),
(118957, 96652, 'en', 'name', 'ISRIC - World Soil Information'),
(118958, 96653, 'en', 'name', 'Oceanographic Center of A CoruƱa'),
(118959, 96653, 'es', 'name', 'Centro OceanogrƔfico de A CoruƱa'),
(118960, 96654, 'no_lang_code', 'name', 'Allied Corporation (United States)'),
(118961, 96655, 'fr', 'name', 'DiversitƩ, adaptation, dƩveloppement des plantes'),
(118962, 96656, 'en', 'name', 'State Key Laboratory of Mycology'),
(118963, 96656, 'zh', 'name', 'ēœŸčŒå­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(118964, 96657, 'en', 'name', 'International Growth Centre'),
(118965, 96658, 'de', 'name', 'Culinary Medicine Deutschland e.V.'),
(118966, 96659, 'no_lang_code', 'name', 'Lockheed (United States)'),
(118967, 96660, 'en', 'name', 'Naval Air Warfare Center Aircraft Division'),
(118968, 96661, 'id', 'name', 'Universitas Ciputra'),
(118969, 96662, 'en', 'name', 'ARUP Institute for Clinical and Experimental Pathology'),
(118970, 96663, 'en', 'name', 'KBase'),
(118971, 96664, 'en', 'name', 'Shanghai Medical College of Fudan University'),
(118972, 96664, 'zh', 'name', 'å¤ę—¦å¤§å­¦äøŠęµ·åŒ»å­¦é™¢'),
(118973, 96665, 'en', 'name', 'Office of Federal Energy Management Programs'),
(118974, 96666, 'fr', 'name', 'Groupe de recherche clinique Amylose AA Sorbonne UniversitƩ'),
(118975, 96667, 'no_lang_code', 'name', 'StƤubli (France)'),
(118976, 96668, 'en', 'name', 'Canadian Policy Research Networks'),
(118977, 96669, 'en', 'name', 'Finnish Geospatial Research Institute'),
(118978, 96670, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų“Ų±Ų·Ų© دبي'),
(118979, 96670, 'en', 'name', 'Dubai Police Academy'),
(118980, 96671, 'en', 'name', 'European Agency for Safety and Health at Work'),
(118981, 96671, 'es', 'name', 'Agencia Europea para la Seguridad y la Salud en el Trabajo'),
(118982, 96672, 'en', 'name', 'State University of Santa Cruz'),
(118983, 96672, 'pt', 'name', 'Universidade Estadual de Santa Cruz'),
(118984, 96673, 'es', 'name', 'Universidad de Ixtlahuaca CUI'),
(118985, 96674, 'de', 'name', 'Helmholtz-Zentrum Dresden-Rossendorf'),
(118986, 96675, 'en', 'name', 'Independent Schools of New Zealand'),
(118987, 96676, 'en', 'name', 'Aragon Chemistry and Materials Center'),
(118988, 96676, 'es', 'name', 'Centro de Química y Materiales de Aragón'),
(118989, 96677, 'en', 'name', 'Irkutsk National Research Technical University'),
(118990, 96677, 'ru', 'name', 'Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(118991, 96678, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĪæĻ Χημείου του ĪšĻĪ¬Ļ„ĪæĻ…Ļ‚'),
(118992, 96678, 'en', 'name', 'General Chemical State Laboratory'),
(118993, 96679, 'en', 'name', 'Irish Centre for Research in Applied Geosciences'),
(118994, 96680, 'fr', 'name', 'La Maison de la RiviĆØre'),
(118995, 96681, 'en', 'name', 'Samangan Higher Education Institute'),
(118996, 96681, 'fa', 'name', 'Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ† سمنگان'),
(118997, 96682, 'en', 'name', 'Reformed Church University'),
(118998, 96683, 'en', 'name', 'State Key Laboratory of Subtropical Building Science'),
(118999, 96683, 'zh', 'name', 'äŗšēƒ­åø¦å»ŗē­‘ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119000, 96684, 'en', 'name', 'Arctic Athabaskan Council'),
(119001, 96685, 'en', 'name', 'Western National Parks Association'),
(119002, 96686, 'en', 'name', 'Royal College of Chiropractors'),
(119003, 96687, 'en', 'name', 'Sanitas Hortaleza Advanced Rehabilitation Centre'),
(119004, 96687, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Hortaleza'),
(119005, 96688, 'en', 'name', 'Miva Open University'),
(119006, 96689, 'en', 'name', 'University of Wales, Romania'),
(119007, 96690, 'en', 'name', 'State Key Laboratory of Collateral Disease Research and Innovative Traditional Chinese Medicine'),
(119008, 96690, 'zh', 'name', 'ē»œē—…ē ”ē©¶äøŽåˆ›ę–°äø­čÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119009, 96691, 'en', 'name', 'Fuller Laboratories, Fuller Laboratories (United States)'),
(119010, 96692, 'en', 'name', 'Manchester Community College - New Hampshire'),
(119011, 96693, 'en', 'name', 'University of Central Lancashire Cyprus'),
(119012, 96694, 'en', 'name', 'National Strategic Research Institute'),
(119013, 96695, 'pt', 'name', 'Instituto de CiĆŖncias Sociais'),
(119014, 96696, 'ca', 'name', 'Centre de Recerca MatemĆ tica'),
(119015, 96697, 'en', 'name', 'Western Association of Fish and Wildlife Agencies'),
(119016, 96698, 'en', 'name', 'University of Puerto Rico at Humacao'),
(119017, 96699, 'fr', 'name', 'CIGRE'),
(119018, 96700, 'en', 'name', 'Michael Smith Health Research BC'),
(119019, 96701, 'pt', 'name', 'MapBiomas'),
(119020, 96702, 'en', 'name', 'Saint-Luc Foundation'),
(119021, 96702, 'fr', 'name', 'Fondation Saint-Luc'),
(119022, 96703, 'es', 'name', 'Universidad Tecnológica de la Selva'),
(119023, 96704, 'fr', 'name', 'Arbres et RƩponses aux Contraintes Hydriques et Environnementales'),
(119024, 96705, 'da', 'name', 'Dagmar Marshalls Fond'),
(119025, 96705, 'en', 'name', 'Dagmar Marshall Fund'),
(119026, 96706, 'en', 'name', 'State Key Laboratory of Hydraulics and Mountain River Engineering'),
(119027, 96706, 'zh', 'name', 'ę°“åŠ›å­¦äøŽå±±åŒŗę²³ęµå¼€å‘äæęŠ¤å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119028, 96707, 'en', 'name', 'State Key Laboratory of New Technology of Traditional Chinese Medicine Pharmaceutical Process'),
(119029, 96707, 'zh', 'name', 'äø­čÆåˆ¶čÆčæ‡ēØ‹ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119030, 96708, 'en', 'name', 'Moinhos de Vento Agroecology Research Centre'),
(119031, 96709, 'en', 'name', 'NIHR Applied Research Collaboration Greater Manchester'),
(119032, 96710, 'es', 'name', 'Complejo Gerontológico "La Milagrosa", Gerontologic Complex La Milagrosa'),
(119033, 96711, 'en', 'name', 'East Burke High School'),
(119034, 96712, 'en', 'name', 'Institute of Puerto Rican Culture'),
(119035, 96712, 'es', 'name', 'Instituto de Cultura PuertorriqueƱa'),
(119036, 96713, 'en', 'name', 'Heat Transfer and Energy Laboratory at Nantes'),
(119037, 96713, 'fr', 'name', 'Laboratoire de Thermique et Energie de Nantes'),
(119038, 96714, 'en', 'name', 'NUS High School of Mathematics and Science'),
(119039, 96715, 'en', 'name', 'National Cooperative Geologic Mapping Program'),
(119040, 96716, 'en', 'name', 'Naval Research Laboratory Center for Bio/Molecular Science and Engineering'),
(119041, 96717, 'en', 'name', 'Texas State University'),
(119042, 96718, 'id', 'name', 'Universitas Muhammadiyah Jember'),
(119043, 96719, 'en', 'name', 'State Key Laboratory of Digital Publishing Technology'),
(119044, 96719, 'zh', 'name', 'ę•°å­—å‡ŗē‰ˆęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119045, 96720, 'fr', 'name', 'Infection et inflammation'),
(119046, 96721, 'en', 'name', 'Jackson Laboratory'),
(119047, 96722, 'en', 'name', 'Annapoorana Medical College and Hospitals'),
(119048, 96723, 'de', 'name', 'Chemisches und VeterinƤruntersuchungsamt Sigmaringen'),
(119049, 96724, 'en', 'name', 'Madan Bhandari University of Science and Technology'),
(119050, 96724, 'ne', 'name', 'मदन ą¤­ą¤£ą„ą¤”ą¤¾ą¤°ą„€ ą¤¬ą¤æą¤œą„ą¤žą¤¾ą¤Ø तऄा ą¤Ŗą„ą¤°ą¤¬ą¤æą¤§ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤¬ą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(119051, 96725, 'es', 'name', 'Instituto Tecnológico de Producto Infantil y Ocio'),
(119052, 96725, 'no_lang_code', 'name', 'Aiju'),
(119053, 96726, 'en', 'name', 'Department of Industry, Science and Resources'),
(119054, 96727, 'en', 'name', 'Swedish Biodiversity Data Infrastructure'),
(119055, 96727, 'sv', 'name', 'Svensk biodiversitetsinfrastruktur'),
(119056, 96728, 'en', 'name', 'Federal Institute of Education, Science and Technology of ParĆ”'),
(119057, 96728, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do ParÔ'),
(119058, 96729, 'en', 'name', 'Sanitas Imperial Tarraco Medical Centre'),
(119059, 96729, 'es', 'name', 'Centro MƩdico Sanitas Imperial Tarraco'),
(119060, 96730, 'fr', 'name', 'Ɖquipe de Recherche Contextes et Acteurs de l''Ɖducation'),
(119061, 96731, 'en', 'name', 'Sarala Birla University'),
(119062, 96732, 'en', 'name', 'Federal University of Amazonas'),
(119063, 96732, 'pt', 'name', 'Universidade Federal do Amazonas'),
(119064, 96733, 'es', 'name', 'Fundación Universitaria de Navarra'),
(119065, 96734, 'fr', 'name', 'Milieux environnementaux, transferts et interactions dans les hydrosystĆØmes et les sols'),
(119066, 96735, 'en', 'name', 'Institute of Automation'),
(119067, 96735, 'zh', 'name', 'č‡ŖåŠØåŒ–ē ”ē©¶ę‰€'),
(119068, 96736, 'en', 'name', 'Institute of Biochemistry'),
(119069, 96736, 'hu', 'name', 'Biokémiai Intézet Szegedi Biológiai Kutatóközpont Magyar TudomÔnyos Akadémia'),
(119070, 96737, 'en', 'name', 'Concordia Theological Seminary'),
(119071, 96738, 'en', 'name', 'U.S. Army Combat Capabilities Development Command Chemical Biological Center'),
(119072, 96739, 'it', 'name', 'C.R.E.A.T.E. Consorzio Di Ricerca Per L''Energia E Le Applicazioni Technologiche Dell''Elettromagnetismo'),
(119073, 96740, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© البصرة الجامعة Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(119074, 96740, 'en', 'name', 'Basrah University College of Science and Technology'),
(119075, 96741, 'en', 'name', 'Inland Fisheries Ireland'),
(119076, 96741, 'ga', 'name', 'Iascach Intƭre Ɖireann'),
(119077, 96742, 'en', 'name', 'Shanghai Institute of Materia Medica'),
(119078, 96742, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·čÆē‰©ē ”ē©¶ę‰€'),
(119079, 96743, 'fr', 'name', 'Ɖcole Nationale de l’Aviation Civile'),
(119080, 96744, 'en', 'name', 'Multimedia Communication in Telepresence'),
(119081, 96744, 'fr', 'name', 'Laboratoire de communications multimƩdias en tƩlƩprƩsence'),
(119082, 96745, 'en', 'name', 'The George Institute for Global Health'),
(119083, 96746, 'es', 'name', 'Proyecto EspaƱol'),
(119084, 96747, 'en', 'name', 'Presbyterian University, Ghana'),
(119085, 96748, 'en', 'name', 'HCA Healthcare'),
(119086, 96749, 'es', 'name', 'Ayuntamiento de Zaragoza'),
(119087, 96750, 'en', 'name', 'State Key Laboratory of Internal Combustion Engine Reliability'),
(119088, 96750, 'zh', 'name', 'å†…ē‡ƒęœŗåÆé ę€§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119089, 96751, 'fr', 'name', 'Institut des MatƩriaux, de MicroƩlectronique et des Nanosciences de Provence'),
(119090, 96752, 'en', 'name', 'Lung Cancer Foundation of America'),
(119091, 96753, 'en', 'name', 'Cancer Imaging Centre'),
(119092, 96754, 'en', 'name', 'State Key Laboratory of Traction Power'),
(119093, 96754, 'zh', 'name', 'ē‰µå¼•åŠØåŠ›å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119094, 96755, 'es', 'name', 'Ɠrgano Judicial de la RepĆŗblica de PanamĆ”'),
(119095, 96756, 'no_lang_code', 'name', 'GigPeak (United States)'),
(119096, 96757, 'en', 'name', 'Robert M. Fisher Memorial Foundation'),
(119097, 96758, 'fr', 'name', 'BibliothĆØque interuniversitaire de la Sorbonne'),
(119098, 96759, 'en', 'name', 'Climate Adaptation Science Centers'),
(119099, 96760, 'en', 'name', 'Navarre Institute of Health Research'),
(119100, 96760, 'es', 'name', 'Instituto de Investigación Sanitaria de Navarra'),
(119101, 96761, 'en', 'name', 'BIO5 Institute'),
(119102, 96762, 'de', 'name', 'Verein zur Fƶrderung wissenschaftlicher Forschung im Bereich komplexer Systeme'),
(119103, 96762, 'en', 'name', 'Complexity Science Hub Vienna'),
(119104, 96763, 'en', 'name', 'State Key Laboratory of Structural Chemistry'),
(119105, 96763, 'zh', 'name', 'ē»“ęž„åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119106, 96764, 'en', 'name', 'Regional Health Care and Social Agency Valle Olona'),
(119107, 96764, 'it', 'name', 'Azienda Socio Sanitaria Territoriale della Valle Olona'),
(119108, 96765, 'fr', 'name', 'Institut d’EpidĆ©miologie et de Neurologie Tropicale'),
(119109, 96766, 'en', 'name', 'Barcelonaβeta Brain Research Center'),
(119110, 96767, 'en', 'name', 'State Key Laboratory of Automobile Safety and Energy Conservation'),
(119111, 96767, 'zh', 'name', 'ę±½č½¦å®‰å…ØäøŽčŠ‚čƒ½å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119112, 96768, 'es', 'name', 'Provita'),
(119113, 96769, 'de', 'name', 'Deutsches ArchƤologisches Institut, Abteilung Rom'),
(119114, 96769, 'en', 'name', 'German Archaeological Institute, Rome Department'),
(119115, 96770, 'en', 'name', 'National Heart, Lung, and Blood Institute Division of Intramural Research'),
(119116, 96771, 'en', 'name', 'Korea Transportation Safety Authority'),
(119117, 96771, 'ko', 'name', 'ķ•œźµ­źµķ†µģ•ˆģ „ź³µė‹Ø'),
(119118, 96772, 'en', 'name', 'Facility for Advanced Accelerator Experimental Tests-II'),
(119119, 96773, 'en', 'name', 'T.K.M. College of Arts and Science'),
(119120, 96774, 'en', 'name', 'Public Health Agency of Canada'),
(119121, 96774, 'fr', 'name', 'Agence de la santƩ publique du Canada'),
(119122, 96775, 'en', 'name', 'HJR Reefscaping'),
(119123, 96776, 'en', 'name', 'Royal Society of South Australia'),
(119124, 96777, 'no_lang_code', 'name', 'Cambridge Quantum Computing (United Kingdom)'),
(119125, 96778, 'en', 'name', 'NAVWAR Space Field Activity'),
(119126, 96779, 'de', 'name', 'Klinikum Fichtelgebirge'),
(119127, 96780, 'en', 'name', 'State Key Laboratory of Cell Biology'),
(119128, 96780, 'zh', 'name', 'ē»†čƒžē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119129, 96781, 'en', 'name', 'Karaganda Medical University'),
(119130, 96781, 'kk', 'name', 'ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(119131, 96781, 'ru', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ Университет ŠšŠ°Ń€Š°Š³Š°Š½Š“Ń‹'),
(119132, 96782, 'en', 'name', 'State Key Laboratory of Solidification Processing'),
(119133, 96782, 'zh', 'name', 'å‡å›ŗęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119134, 96783, 'en', 'name', 'Canada Agricultural Review Tribunal'),
(119135, 96783, 'fr', 'name', 'Commission de rƩvision agricole du Canada'),
(119136, 96784, 'en', 'name', 'Ɩstergƶtland County Council'),
(119137, 96784, 'sv', 'name', 'Region Ɩstergƶtland'),
(119138, 96785, 'en', 'name', 'Gifu University'),
(119139, 96785, 'ja', 'name', '岐阜大学'),
(119140, 96786, 'en', 'name', 'U.S. Army Aberdeen Test Center'),
(119141, 96787, 'en', 'name', 'State Key Laboratory of Digital Multimedia Chip Technology'),
(119142, 96787, 'zh', 'name', 'ę•°å­—å¤šåŖ’ä½“čŠÆē‰‡ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119143, 96788, 'nl', 'name', 'Amalia Kinderziekenhuis'),
(119144, 96789, 'es', 'name', 'Instituto Consorcio Clavijero'),
(119145, 96790, 'en', 'name', 'Sanitas Balmes Medical Centre'),
(119146, 96790, 'es', 'name', 'Centro MƩdico Sanitas Balmes'),
(119147, 96791, 'fr', 'name', 'Centre hospitalier national d''ophtalmologie des Quinze-Vingts'),
(119148, 96792, 'fr', 'name', 'Lettres, arts du spectacle, langues romanes'),
(119149, 96793, 'en', 'name', 'Queensland Department of Transport and Main Roads'),
(119150, 96794, 'de', 'name', 'Heinrich-Heine-Universität Düsseldorf'),
(119151, 96794, 'en', 'name', 'Heinrich Heine University Düsseldorf'),
(119152, 96795, 'no_lang_code', 'name', 'Biomar Microbial Technologies (Spain)'),
(119153, 96796, 'en', 'name', 'The Federal Polytechnic, Ado-Ekiti'),
(119154, 96797, 'no_lang_code', 'name', 'Infotec (United Kingdom)'),
(119155, 96798, 'ja', 'name', 'ę˜­å’Œé›»å·„ę Ŗå¼ä¼šē¤¾'),
(119156, 96798, 'no_lang_code', 'name', 'Showa Denko (Japan)'),
(119157, 96799, 'no_lang_code', 'name', 'Beijing Renchuang Technology Group Co., Ltd. (China)'),
(119158, 96799, 'zh', 'name', 'åŒ—äŗ¬ä»åˆ›ē§‘ęŠ€é›†å›¢ęœ‰é™å…¬åø'),
(119159, 96800, 'en', 'name', 'Laboratory of Research in Fluid Dynamics and Combustion Technologies'),
(119160, 96800, 'es', 'name', 'Laboratorio de Investigación en Tecnologías de la Combustión'),
(119161, 96801, 'en', 'name', 'State Enterprise "Scientific and Research Institute for Metrology of Measurement and Control Systems"'),
(119162, 96802, 'de', 'name', 'ZBMED - Informationszentrum Lebenswissenschaften'),
(119163, 96802, 'en', 'name', 'ZB MED - Information Centre for Life Sciences'),
(119164, 96803, 'en', 'name', 'Lung Cancer Connection'),
(119165, 96804, 'no_lang_code', 'name', 'Chiaro Technologies (United States)'),
(119166, 96805, 'fr', 'name', 'Centre de Recherches sur les Arts et le Langage'),
(119167, 96806, 'en', 'name', 'State of Illinois'),
(119168, 96807, 'en', 'name', 'American Genetic Association'),
(119169, 96808, 'en', 'name', 'United Kingdom Clinical Research Collaboration'),
(119170, 96809, 'fr', 'name', 'Langues et Civilisations Ć  Tradition Orale'),
(119171, 96810, 'en', 'name', 'European Network of Logistics Competence Centres'),
(119172, 96811, 'ko', 'name', 'ģ•„ģ“ķŒŒģ“ėøŒ'),
(119173, 96811, 'no_lang_code', 'name', 'I-Five (South Korea)'),
(119174, 96812, 'en', 'name', 'State Key Laboratory of Transient Optics and Photonics'),
(119175, 96812, 'zh', 'name', 'ēž¬ę€å…‰å­¦äøŽå…‰å­ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119176, 96813, 'en', 'name', 'Institute of Cellular and Integrative Neurosciences'),
(119177, 96813, 'fr', 'name', 'Institut des Neurosciences Cellulaires et IntƩgratives'),
(119178, 96814, 'es', 'name', 'Gobierno de Navarra'),
(119179, 96815, 'en', 'name', 'Queen Elizabeth II Health Sciences Centre'),
(119180, 96816, 'en', 'name', 'Theories and Approaches of Genomic Complexity'),
(119181, 96817, 'de', 'name', 'Institut für Ɩkonomische Bildung'),
(119182, 96817, 'en', 'name', 'Institute for Economic Education'),
(119183, 96818, 'en', 'name', 'Sohn Conference Foundation'),
(119184, 96819, 'en', 'name', 'Naval Research Laboratory Chemistry Division'),
(119185, 96820, 'en', 'name', 'FD/MAS Alliance'),
(119186, 96821, 'en', 'name', 'Department of Health'),
(119187, 96821, 'eu', 'name', 'Osasun Saila'),
(119188, 96822, 'pl', 'name', 'Wojewódzki Szpital Specjalistyczny im. J. Gromkowskiego we Wrocławiu'),
(119189, 96823, 'en', 'name', 'The Valentine'),
(119190, 96824, 'en', 'name', 'Government of Punjab'),
(119191, 96825, 'en', 'name', 'Chan Zuckerberg Biohub New York'),
(119192, 96826, 'no_lang_code', 'name', 'Geiser Pharma (Spain)'),
(119193, 96827, 'en', 'name', 'Australian and New Zealand College of Anaesthetists'),
(119194, 96828, 'en', 'name', 'TRANSITIONS'),
(119195, 96829, 'es', 'name', 'ConsejerĆ­a de Agricultura, Pesca, Agua y Desarrollo Rural'),
(119196, 96830, 'fr', 'name', 'Institut de recherche en droit privƩ'),
(119197, 96831, 'no_lang_code', 'name', 'VetStrong'),
(119198, 96832, 'es', 'name', 'Ayuntamiento de Vigo'),
(119199, 96832, 'gl', 'name', 'Concello de Vigo'),
(119200, 96833, 'no_lang_code', 'name', 'Lockheed Martin (United States)'),
(119201, 96834, 'en', 'name', 'Washington Water Science Center'),
(119202, 96835, 'en', 'name', 'Institute of Otolaryngology named after Prof. A.I. Kolomiychenko of the National Academy of Medical Sciences of Ukraine'),
(119203, 96835, 'uk', 'name', 'ДУ ā€œŠ†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ отоларингології ім. проф. Šž.Š”.ŠšŠ¾Š»Š¾Š¼Ń–Š¹Ń‡ŠµŠ½ŠŗŠ° ŠŠŠœŠ Š£ŠŗŃ€Š°Ń—Š½Šøā€'),
(119204, 96836, 'fr', 'name', 'Laboratoire des dynamiques sociales'),
(119205, 96837, 'en', 'name', 'DST-NRF Centre of Excellence for Invasion Biology'),
(119206, 96838, 'fr', 'name', 'Centre de Neurophysique Physiologie et Pathologie'),
(119207, 96839, 'en', 'name', 'Fathom, Fathom (United Kingdom)'),
(119208, 96840, 'en', 'name', 'VERSES, VERSES (United States)'),
(119209, 96841, 'cs', 'name', 'Zemědělský Výzkumný Ustav Kroměříž'),
(119210, 96841, 'en', 'name', 'Agricultural Research Institute Kromeriz'),
(119211, 96842, 'en', 'name', 'Samarkand Institute of Veterinary Medicine'),
(119212, 96842, 'ru', 'name', 'ДамарканГский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ветеринарной меГицины'),
(119213, 96842, 'uz', 'name', 'Samarqand veterinariya meditsinasi instituti'),
(119214, 96843, 'en', 'name', 'Jiangxi Transportation Research Institute'),
(119215, 96843, 'zh', 'name', 'ę±Ÿč„æēœäŗ¤é€šē§‘å­¦ē ”ē©¶é™¢'),
(119216, 96844, 'en', 'name', 'Tasmanian Behavioural Lab'),
(119217, 96845, 'no_lang_code', 'name', 'Verona Pharma (United Kingdom)'),
(119218, 96846, 'en', 'name', 'National Center for Research in Materials Science'),
(119219, 96846, 'fr', 'name', 'Centre National de Recherches en Sciences des Materiaux'),
(119220, 96847, 'en', 'name', 'Institute of Molecular Genetics and Genetic Engineering'),
(119221, 96848, 'es', 'name', 'Instituto de Investigación Biosanitaria de Granada'),
(119222, 96849, 'es', 'name', 'Sistema Nacional de Salud'),
(119223, 96850, 'de', 'name', 'Jürgen Manchot Stiftung'),
(119224, 96850, 'en', 'name', 'Jürgen Manchot Foundation'),
(119225, 96851, 'de', 'name', 'Paracelsus Elena Klinik Kassel'),
(119226, 96852, 'es', 'name', 'Universidad Tecnológica del Cibao Oriental'),
(119227, 96853, 'en', 'name', 'Puerto Rico Community Network for Clinical Research on AIDS'),
(119228, 96854, 'en', 'name', 'Bluecoat'),
(119229, 96855, 'it', 'name', 'Fondazione Giannino Bassetti'),
(119230, 96856, 'en', 'name', 'State Key Laboratory of Soil-Plant System Technology Machines'),
(119231, 96856, 'zh', 'name', 'åœŸå£¤ę¤ē‰©ęœŗå™Øē³»ē»ŸęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119232, 96857, 'no_lang_code', 'name', 'Hisense (China)'),
(119233, 96857, 'zh', 'name', '海俔集团'),
(119234, 96858, 'de', 'name', 'UniversitƤt Trier'),
(119235, 96858, 'en', 'name', 'Trier University'),
(119236, 96859, 'en', 'name', 'University Of Bristol Dental Hospital'),
(119237, 96860, 'fr', 'name', 'Laboratoire MontpelliĆ©rain d’Economie ThĆ©orique et AppliquĆ©e'),
(119238, 96861, 'en', 'name', 'Genes, Synapses, and Cognition'),
(119239, 96861, 'fr', 'name', 'GĆØnes, synapses et cognition'),
(119240, 96862, 'en', 'name', 'Illinois Department of Public Health'),
(119241, 96863, 'en', 'name', 'Regional Health Care and Social Agency West Milan'),
(119242, 96863, 'it', 'name', 'Aziende Socio Sanitarie Territoriale Ovest Milanese'),
(119243, 96864, 'en', 'name', 'Yunnan Engineering Research Center of Green Planting and Processing of Gastrodia Elata'),
(119244, 96864, 'zh', 'name', 'å¤©éŗ»ē»æč‰²ē§ę¤äøŽåŠ å·„å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(119245, 96865, 'en', 'name', 'State Key Laboratory of Elemental Organic Chemistry'),
(119246, 96865, 'zh', 'name', 'å…ƒē“ ęœ‰ęœŗåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119247, 96866, 'fr', 'name', 'UMI MajuLab'),
(119248, 96867, 'fr', 'name', 'De la PrƩhistoire Ơ l''Actuel : Culture, Environnement et Anthropologie'),
(119249, 96868, 'en', 'name', 'Fiona Stanley Hospital'),
(119250, 96869, 'en', 'name', 'Shanghai Open University'),
(119251, 96869, 'zh', 'name', 'äøŠęµ·å¼€ę”¾å¤§å­¦'),
(119252, 96870, 'en', 'name', 'The Japanese Society of Toxicology'),
(119253, 96870, 'ja', 'name', 'ę—„ęœ¬ęÆ’ę€§å­¦ä¼š'),
(119254, 96871, 'en', 'name', 'State University of Ponta Grossa'),
(119255, 96871, 'pt', 'name', 'Universidade Estadual de Ponta Grossa'),
(119256, 96872, 'be', 'name', 'Š’Ń–Ń†ŠµŠ±ŃŠŗŠ°Ń Š“Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń Š°ŠŗŠ°Š“ŃŠ¼Ń–Ń Š²ŠµŃ‚ŃŃ€Ń‹Š½Š°Ń€Š½Š°Š¹ меГыцыны'),
(119257, 96872, 'en', 'name', 'Vitebsk State Academy of Veterinary Medicine'),
(119258, 96873, 'no_lang_code', 'name', 'Tinamenor (Spain)'),
(119259, 96874, 'no_lang_code', 'name', 'EMD Group (United States)'),
(119260, 96875, 'fr', 'name', 'HƓpital d''Youville de Sherbrooke'),
(119261, 96876, 'en', 'name', 'Joslin Diabetes Center'),
(119262, 96877, 'no_lang_code', 'name', 'British Power International (United Kingdom)'),
(119263, 96878, 'en', 'name', 'AAA College of Engineering and Technology'),
(119264, 96879, 'pl', 'name', 'Powiślańska Szkoła Wyższa'),
(119265, 96880, 'en', 'name', 'Federal University of RondƓnia'),
(119266, 96880, 'pt', 'name', 'Universidade Federal de RondƓnia'),
(119267, 96881, 'id', 'name', 'Sekolah Tinggi Pembangunan Masyarakat Desa APMD'),
(119268, 96882, 'en', 'name', 'France Business School'),
(119269, 96883, 'en', 'name', 'China National Hybrid Rice R&D Central Hunan Hybrid Rice Reserch Center'),
(119270, 96883, 'zh', 'name', 'å›½å®¶ę‚äŗ¤ę°“ēØ»å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(119271, 96884, 'en', 'name', 'Breast Cancer Solutions'),
(119272, 96885, 'en', 'name', 'Seville Residence for Researchers and Library'),
(119273, 96885, 'es', 'name', 'Residencia de Investigadores y Biblioteca de Sevilla'),
(119274, 96886, 'en', 'name', 'Polyclinic Medical University'),
(119275, 96886, 'fr', 'name', 'La Policlinique mƩdicale universitaire'),
(119276, 96887, 'es', 'name', 'Hospital Virgen de la Salud'),
(119277, 96888, 'es', 'name', 'Instituto de Productos Naturales y AgrobiologĆ­a'),
(119278, 96889, 'no_lang_code', 'name', 'Novartis (United States)'),
(119279, 96890, 'de', 'name', 'Schweizerisches Institut für Kunstwissenschaft'),
(119280, 96890, 'en', 'name', 'Swiss Institute for Art Research'),
(119281, 96891, 'fr', 'name', 'Laboratoire de recherche en gestion et Ʃconomie'),
(119282, 96892, 'fr', 'name', 'Genoscope'),
(119283, 96893, 'en', 'name', 'Office of Secretary of Energy'),
(119284, 96894, 'en', 'name', 'The Ohio State University Comprehensive Cancer Center – Arthur G. James Cancer Hospital and Richard J. Solove Research Institute'),
(119285, 96895, 'fr', 'name', 'Chimie de la Matière Condensée de Paris'),
(119286, 96896, 'en', 'name', 'Institute of Public Health Zadar'),
(119287, 96896, 'hr', 'name', 'Zavod za javno zdravstvo Zadar'),
(119288, 96897, 'no_lang_code', 'name', 'Mars (United States)'),
(119289, 96898, 'en', 'name', 'Argosy University'),
(119290, 96899, 'en', 'name', 'Institute for Health Systems Research'),
(119291, 96899, 'es', 'name', 'Instituto de Investigación en Sistemas de Salud'),
(119292, 96899, 'eu', 'name', 'Osasun Sistemen Ikerketa Institutua'),
(119293, 96900, 'ja', 'name', 'č‡Ŗē„¶ē§‘å­¦ē ”ē©¶ę©Ÿę§‹ć‚¢ć‚¹ćƒˆćƒ­ćƒć‚¤ć‚Ŗćƒ­ć‚øćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(119294, 96900, 'no_lang_code', 'name', 'Astrobiology Center'),
(119295, 96901, 'cs', 'name', 'Hradec KrÔlové Region, KrÔlovéhradecký kraj'),
(119296, 96902, 'en', 'name', 'Children''s Hospital Foundation'),
(119297, 96903, 'no_lang_code', 'name', 'Sport-Elec (France)'),
(119298, 96904, 'no_lang_code', 'name', 'Bendix Field Engineering Corporation (United States)'),
(119299, 96905, 'en', 'name', 'NUWC Keyport Division'),
(119300, 96906, 'no_lang_code', 'name', 'DNV (United Kingdom)'),
(119301, 96907, 'de', 'name', 'inspire research Beratungsgesellschaft m.b.H. (Austria)'),
(119302, 96908, 'en', 'name', 'Gillson Longenbaugh Foundation'),
(119303, 96909, 'en', 'name', 'British Columbia Scholarship Society'),
(119304, 96910, 'en', 'name', 'Canadian Consortium on Neurodegeneration in Aging'),
(119305, 96910, 'fr', 'name', 'Consortium canadien en neurodƩgƩnƩrescence associƩe au vieillissement'),
(119306, 96911, 'ca', 'name', 'Associació de la Paràlisi Cerebral'),
(119307, 96911, 'es', 'name', 'Asociación de ParÔlisis Cerebral'),
(119308, 96912, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Sergipe'),
(119309, 96913, 'en', 'name', 'N.N. Krasovskii Institute of Mathematics and Mechanics of the Ural Branch of the Russian Academy of Sciences'),
(119310, 96913, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ математики Šø механики'),
(119311, 96914, 'en', 'name', 'Oak Spring Garden Foundation'),
(119312, 96915, 'en', 'name', 'Volcano Science Center'),
(119313, 96916, 'fr', 'name', 'Centre Chirurgical Marie Lannelongue'),
(119314, 96917, 'fr', 'name', 'Centre d''Investigation Clinique Antilles Guyane'),
(119315, 96918, 'fr', 'name', 'Ministère de l''Agriculture et de la Souveraineté alimentaire, Ministère de l''Agriculture, de l''Agroalimentaire et de la Forêt'),
(119316, 96919, 'en', 'name', 'Dublin Institute of Technology'),
(119317, 96919, 'ga', 'name', 'Institiúid Teicneolaíochta Bhaile Átha Cliath'),
(119318, 96920, 'it', 'name', 'Centro di Ricerca per la Patologia Vegetale'),
(119319, 96921, 'fr', 'name', 'Groupe de recherche Rouennais en Informatique Fondamentale'),
(119320, 96922, 'ca', 'name', 'Consorci Administració Oberta de Catalunya'),
(119321, 96922, 'en', 'name', 'Open Administration Consortium of Catalonia'),
(119322, 96923, 'en', 'name', 'PhRMA Foundation'),
(119323, 96924, 'en', 'name', 'Tashkent State University of Economics'),
(119324, 96924, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(119325, 96924, 'uz', 'name', 'Toshkent Davlat Iqtisodiyot Universiteti'),
(119326, 96925, 'en', 'name', 'Go2 for Lung Cancer'),
(119327, 96926, 'no_lang_code', 'name', 'Shanghai Liangyou (China)'),
(119328, 96926, 'zh', 'name', 'äøŠęµ·č‰Æå‹'),
(119329, 96927, 'es', 'name', 'Hospital Oncológico Docente "Conrado Benítez García"'),
(119330, 96928, 'en', 'name', 'Forest and Range Management Research Institute'),
(119331, 96929, 'de', 'name', 'Forum transregionale Studien e.V.'),
(119332, 96930, 'en', 'name', 'Forestry Research Centre'),
(119333, 96931, 'en', 'name', 'International College of Business and Technology'),
(119334, 96932, 'es', 'name', 'Fundación Almanaque Azul'),
(119335, 96933, 'no_lang_code', 'name', 'NGIS (China)'),
(119336, 96934, 'en', 'name', 'Alsace Regional Council'),
(119337, 96934, 'fr', 'name', 'Conseil RƩgional d''Alsace'),
(119338, 96935, 'de', 'name', 'Deutsche Gesellschaft für Soziale Arbeit e. V.'),
(119339, 96935, 'en', 'name', 'The German Association of Social Work'),
(119340, 96936, 'en', 'name', 'State Key Laboratory of Advanced Optical Communication Systems and Networks'),
(119341, 96936, 'zh', 'name', 'å…‰ēŗ¤é€šäæ”ęŠ€ęœÆå’Œē½‘ē»œå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119342, 96937, 'en', 'name', 'State Key Laboratory of Efficient Mining and Clean Utilization of Coal Resources'),
(119343, 96937, 'zh', 'name', 'ē…¤ē‚­čµ„ęŗé«˜ę•ˆå¼€é‡‡äøŽę“å‡€åˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119344, 96938, 'en', 'name', 'Rotterdam Study'),
(119345, 96939, 'en', 'name', 'Foundation Medicine'),
(119346, 96939, 'no_lang_code', 'name', 'Foundation Medicine (United States)'),
(119347, 96940, 'id', 'name', 'Universitas KH Abdul Chalim'),
(119348, 96941, 'en', 'name', 'Institute of Genetics and Developmental Biology'),
(119349, 96941, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢é—ä¼ äøŽå‘č‚²ē”Ÿē‰©å­¦ē ”ē©¶ę‰€å†œäøščµ„ęŗē ”ē©¶äø­åæƒ'),
(119350, 96942, 'en', 'name', 'State Key Laboratory of Lake Science and Environment'),
(119351, 96942, 'zh', 'name', 'ę¹–ę³ŠäøŽēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119352, 96943, 'en', 'name', 'Technological Centre of Furniture and Wood of the Region of Murcia'),
(119353, 96943, 'es', 'name', 'Centro Tecnológico del Mueble y la Madera de la Región de Murcia'),
(119354, 96944, 'en', 'name', 'Spectrum Health'),
(119355, 96945, 'de', 'name', 'Helmholtz-Zentrum Berlin für Materialien und Energie'),
(119356, 96946, 'en', 'name', 'OpenEdition Center'),
(119357, 96947, 'en', 'name', 'National Agency for Research and Development'),
(119358, 96947, 'es', 'name', 'Agencia Nacional de Investigación y Desarrollo'),
(119359, 96948, 'no_lang_code', 'name', 'Xiangtan Electric Manufacturing Group (China)'),
(119360, 96948, 'zh', 'name', 'ę¹˜ę½­ē”µęœŗč‚”ä»½ęœ‰é™å…¬åø'),
(119361, 96949, 'en', 'name', 'Manchester University'),
(119362, 96950, 'en', 'name', 'Office of Nuclear Physics'),
(119363, 96951, 'no_lang_code', 'name', 'Emerald Group Publishing (United Kingdom)'),
(119364, 96952, 'en', 'name', 'Macau University of Science and Technology Foundation'),
(119365, 96952, 'zh', 'name', 'ę¾³é—Øē§‘ęŠ€å¤§å­¦åŸŗé‡‘ä¼š, ē§‘å¤§åŸŗé‡‘ęœƒ'),
(119366, 96953, 'en', 'name', 'Research Institute of Petroleum Exploration and Development'),
(119367, 96953, 'zh', 'name', 'äø­å›½ēŸ³ę²¹å¤©ē„¶ę°”č‚”ä»½ęœ‰é™å…¬åøå‹˜ęŽ¢å¼€å‘ē ”ē©¶é™¢'),
(119368, 96954, 'en', 'name', 'Brown Institute for Media Innovation'),
(119369, 96955, 'en', 'name', 'Conservation Trust of Puerto Rico'),
(119370, 96956, 'en', 'name', 'Safety, Security, and Quality Assurance'),
(119371, 96957, 'fr', 'name', 'Ɖcole SupĆ©rieure des Techniques AĆ©ronautiques et de Construction Automobile'),
(119372, 96958, 'en', 'name', 'North Carolina Agricultural and Technical State University'),
(119373, 96958, 'fr', 'name', 'UniversitĆ© agricole et technique d''Ɖtat de caroline du nord'),
(119374, 96959, 'en', 'name', 'State Key Laboratory of Pattern Recognition'),
(119375, 96959, 'zh', 'name', 'ęØ”å¼čÆ†åˆ«å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119376, 96960, 'en', 'name', 'International Centre for Advanced Mediterranean Agronomic Studies'),
(119377, 96960, 'es', 'name', 'Centre International de Hautes Etudes Agronomiques MƩditerranƩennes'),
(119378, 96961, 'en', 'name', 'Ho Chi Minh City University of Industry and Trade'),
(119379, 96961, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng Thʰʔng TP. Hồ ChĆ­ Minh'),
(119380, 96962, 'en', 'name', 'Institute of Agriculture and Agrotechnologies of Karakalpakstan'),
(119381, 96962, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š° Šø агротехнологий ŠšŠ°Ń€Š°ŠŗŠ°Š»ŠæŠ°ŠŗŃŃ‚ана'),
(119382, 96962, 'tt', 'name', 'Qaraqalpaqstan awıl xojalıǵı hÔm agrotexnologiyalar institutı'),
(119383, 96962, 'uz', 'name', 'Qoraqalpog''iston qishloq xo''jaligi va agrotexnologiyalar instituti'),
(119384, 96963, 'en', 'name', 'Department of Administration'),
(119385, 96964, 'en', 'name', 'Natural Environment Research Council'),
(119386, 96965, 'en', 'name', 'State Key Laboratory of Tropical Oceanography'),
(119387, 96965, 'zh', 'name', 'ēƒ­åø¦ęµ·ę“‹ēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119388, 96966, 'en', 'name', 'Innopolis University'),
(119389, 96966, 'ru', 'name', 'ŠŠ²Ń‚Š¾Š½Š¾Š¼Š½Š°Ń Š½ŠµŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ°Ń Š¾Ń€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Университет Иннополис'),
(119390, 96967, 'en', 'name', 'Central States Center for Agricultural Safety and Health'),
(119391, 96968, 'no_lang_code', 'name', 'LG (United States)'),
(119392, 96969, 'no_lang_code', 'name', 'Sermasa (Spain)'),
(119393, 96970, 'no_lang_code', 'name', 'Meiji Pharma Spain'),
(119394, 96971, 'fr', 'name', 'Laboratoire d’Imagerie BiomĆ©dicale'),
(119395, 96972, 'en', 'name', 'State Key Laboratory of Mechanical Structure Strength and Vibration'),
(119396, 96972, 'zh', 'name', 'ęœŗę¢°ē»“ęž„å¼ŗåŗ¦äøŽęŒÆåŠØå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119397, 96973, 'en', 'name', 'Franciscan University'),
(119398, 96974, 'fr', 'name', 'Equipe de recherche sur les littƩratures, les imaginaires et les sociƩtƩs'),
(119399, 96975, 'es', 'name', 'Escuela Normal de Atlacomulco'),
(119400, 96976, 'no_lang_code', 'name', 'Automation Research and Design Institute of Metallurgical Industry (China)'),
(119401, 96976, 'zh', 'name', 'å†¶é‡‘č‡ŖåŠØåŒ–ē ”ē©¶č®¾č®”é™¢'),
(119402, 96977, 'en', 'name', 'Teseo'),
(119403, 96977, 'no_lang_code', 'name', 'Teseo (Argentina)'),
(119404, 96978, 'en', 'name', 'Institute of Language, Literature and Anthropology'),
(119405, 96978, 'es', 'name', 'Instituto de Lengua Literatura y AntropologĆ­a'),
(119406, 96979, 'en', 'name', 'Office of Indian Energy Policy and Programs'),
(119407, 96980, 'fr', 'name', 'Chimie, Ʃlectrochimie molƩculaires et chimie analytique, Laboratoire Chimie Electrochimie MolƩculaires et Chimie Analytique'),
(119408, 96981, 'en', 'name', 'Regional Health Care and Social Agency North Milan'),
(119409, 96981, 'it', 'name', 'Aziende Socio Sanitarie Territoriale Nord Milano'),
(119410, 96982, 'en', 'name', 'California Pacific Medical Center'),
(119411, 96983, 'de', 'name', 'Deutsche Institut für angewandte Pflegeforschung e.V.'),
(119412, 96984, 'en', 'name', 'OU Health Stephenson Cancer Center'),
(119413, 96985, 'de', 'name', 'Berner Fachhochschule'),
(119414, 96985, 'en', 'name', 'Bern University of Applied Sciences'),
(119415, 96985, 'fr', 'name', 'Haute Ʃcole spƩcialisƩe bernoise'),
(119416, 96986, 'es', 'name', 'Fundación Madrimasd Para el Conocimiento'),
(119417, 96987, 'en', 'name', 'Academy of Military Medical Sciences'),
(119418, 96987, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›å†›äŗ‹åŒ»å­¦ē§‘å­¦é™¢'),
(119419, 96988, 'en', 'name', 'State Key Laboratory of Marine Geology'),
(119420, 96988, 'zh', 'name', 'ęµ·ę“‹åœ°č“Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119421, 96989, 'en', 'name', 'TyPA Foundation'),
(119422, 96989, 'es', 'name', 'Fundación TyPA'),
(119423, 96990, 'fr', 'name', 'Centre Hospitalier de Saint-Malo'),
(119424, 96991, 'no_lang_code', 'name', 'Pfizer (Netherlands)'),
(119425, 96992, 'en', 'name', 'U.S. Army Ballistic Research Laboratory'),
(119426, 96993, 'es', 'name', 'Universidad Nacional de La Pampa'),
(119427, 96994, 'en', 'name', 'Naval History and Heritage Command'),
(119428, 96995, 'ca', 'name', 'Institute CerdĆ '),
(119429, 96996, 'en', 'name', 'Bayer Fund'),
(119430, 96997, 'en', 'name', 'Prince Bernhard Nature Fund'),
(119431, 96998, 'en', 'name', 'Pontifical Catholic University of ValparaĆ­so'),
(119432, 96998, 'es', 'name', 'Pontificia Universidad Católica de Valparaíso'),
(119433, 96999, 'en', 'name', 'National Institute for Japanese Language and Linguistics'),
(119434, 96999, 'ja', 'name', 'å›½ē«‹å›½čŖžē ”ē©¶ę‰€'),
(119435, 97000, 'fr', 'name', 'Centre Ǝle-de-France - Versailles-Grignon'),
(119436, 97001, 'en', 'name', 'Connected Farms Pty Ltd., Connected Farms Pty Ltd. (Australia)'),
(119437, 97002, 'en', 'name', 'Huo Family Foundation'),
(119438, 97003, 'en', 'name', 'International Society for the Advancement of Spine Surgery'),
(119439, 97004, 'en', 'name', 'State University of ParaĆ­ba'),
(119440, 97004, 'pt', 'name', 'Universidade Estadual da ParaĆ­ba'),
(119441, 97005, 'en', 'name', 'Amal Jyothi College of Engineering'),
(119442, 97006, 'da', 'name', 'Slagelse Sygehus'),
(119443, 97006, 'en', 'name', 'Slagelse Hospital'),
(119444, 97007, 'en', 'name', 'Biodiversity Research Institute'),
(119445, 97007, 'es', 'name', 'Instituto Mixto de Investigación en Biodiversidad'),
(119446, 97008, 'en', 'name', 'Pacific Earthquake Engineering Research Center'),
(119447, 97009, 'fr', 'name', 'Laboratoire d’ArchĆ©ologie MolĆ©culaire et Structurale'),
(119448, 97010, 'tr', 'name', 'Seyhan Devlet Hastanesi'),
(119449, 97011, 'en', 'name', 'Pink Ribbon Foundation'),
(119450, 97012, 'en', 'name', 'Saint-Hyacinthe Research and Development Centre'),
(119451, 97012, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Saint-Hyacinthe'),
(119452, 97013, 'en', 'name', 'Atlantic White Shark Conservancy'),
(119453, 97014, 'en', 'name', 'Pest Management Centre'),
(119454, 97014, 'fr', 'name', 'Centre de la lutte antiparasitaire'),
(119455, 97015, 'en', 'name', 'Centre for the Study of Ancient Thought'),
(119456, 97015, 'fr', 'name', 'Centre de recherches sur la pensƩe antique'),
(119457, 97015, 'it', 'name', 'Centro di ricerca sul pensiero antico'),
(119458, 97016, 'en', 'name', '4TU.ResearchData'),
(119459, 97017, 'en', 'name', 'Astrophysics Science Division'),
(119460, 97018, 'no_lang_code', 'name', 'Shell (Brazil)'),
(119461, 97019, 'en', 'name', 'SĆ£o Paulo Research Foundation'),
(119462, 97019, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado de São Paulo'),
(119463, 97020, 'en', 'name', 'G. Venkataswamy Naidu College'),
(119464, 97020, 'ta', 'name', 'ஜி. ą®µąÆ†ą®™ąÆą®•ą®Ÿą®šą®¾ą®®ą®æ நாயுடு ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(119465, 97021, 'en', 'name', 'United Nations Children''s Fund'),
(119466, 97021, 'fr', 'name', 'Fonds des Nations Unies pour l''Enfance'),
(119467, 97022, 'fr', 'name', 'Laboratoire de Neurosciences Cognitives'),
(119468, 97023, 'en', 'name', 'Rottnest Island Nursing Post'),
(119469, 97024, 'en', 'name', 'Centre for Demographic Studies'),
(119470, 97024, 'es', 'name', 'Centre d’Estudis DemogrĆ fics'),
(119471, 97025, 'ar', 'name', 'Ų§Ł„Ų§ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų­ŲÆŁŠŲ«Ų© للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(119472, 97025, 'en', 'name', 'Modern Academy for Engineering and Technology'),
(119473, 97026, 'en', 'name', 'State Key Laboratory of Silicon Materials'),
(119474, 97026, 'zh', 'name', 'ē”…ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119475, 97027, 'en', 'name', 'International Centre for Climate Change and Development'),
(119476, 97028, 'en', 'name', 'Center for Molecular Biophysics'),
(119477, 97028, 'fr', 'name', 'Centre de Biophysique MolƩculaire'),
(119478, 97029, 'no_lang_code', 'name', 'Interscience (France)'),
(119479, 97030, 'en', 'name', 'Chinese Academy of Medical Sciences & Peking Union Medical College'),
(119480, 97030, 'zh', 'name', 'äø­å›½åŒ»å­¦ē§‘å­¦é™¢åŒ—äŗ¬åå’ŒåŒ»å­¦é™¢'),
(119481, 97031, 'no_lang_code', 'name', 'Hedgefog Research (United States)'),
(119482, 97032, 'en', 'name', 'Pontifical Bolivarian University'),
(119483, 97032, 'es', 'name', 'Universidad Pontificia Bolivariana'),
(119484, 97033, 'ca', 'name', 'Institut CatalĆ  d''Ornitologia'),
(119485, 97033, 'en', 'name', 'Catalan Ornithological Institute'),
(119486, 97033, 'es', 'name', 'Instituto CatalƔn de Ornitologƭa'),
(119487, 97034, 'no_lang_code', 'name', 'Tennet (Netherlands)'),
(119488, 97035, 'en', 'name', 'Shenyang Research Institute of Foundry'),
(119489, 97035, 'zh', 'name', 'ę²ˆé˜³é“øé€ ē ”ē©¶ę‰€'),
(119490, 97036, 'en', 'name', 'Guelph Research and Development Centre'),
(119491, 97036, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Guelph'),
(119492, 97037, 'en', 'name', 'Institute for Foundations of Machine Learning'),
(119493, 97038, 'en', 'name', 'Neighborhood Cancer Connection'),
(119494, 97039, 'en', 'name', 'Center of Research in Myology'),
(119495, 97039, 'fr', 'name', 'Centre de Recherche en Myologie'),
(119496, 97040, 'en', 'name', 'Survivors on Purpose Inc.'),
(119497, 97041, 'en', 'name', 'Division of Program Coordination Planning and Strategic Initiatives'),
(119498, 97042, 'en', 'name', 'China Iron and Steel Research Institute Group'),
(119499, 97042, 'zh', 'name', '钢铁研究总院'),
(119500, 97043, 'en', 'name', 'Kunming Institute of Botany'),
(119501, 97043, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę˜†ę˜Žę¤ē‰©ē ”ē©¶ę‰€'),
(119502, 97044, 'en', 'name', 'R. R. Lalan College'),
(119503, 97045, 'en', 'name', 'Mediterranean Institute for Advanced Studies'),
(119504, 97045, 'es', 'name', 'Instituto MediterrƔneo de Estudios Avanzados'),
(119505, 97046, 'en', 'name', 'London Research and Development Centre'),
(119506, 97046, 'fr', 'name', 'Centre de recherche et de dƩveloppement de London'),
(119507, 97047, 'az', 'name', 'Ege Universiteti'),
(119508, 97047, 'en', 'name', 'Ege University'),
(119509, 97047, 'tr', 'name', 'Ege Üniversitesi'),
(119510, 97048, 'es', 'name', 'Complejo Hospitalario de JaƩn'),
(119511, 97049, 'en', 'name', 'Hopkins Extreme Materials Institute'),
(119512, 97050, 'en', 'name', 'State Key Laboratory of Mineral Processing'),
(119513, 97050, 'zh', 'name', 'ēŸæē‰©åŠ å·„ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119514, 97051, 'en', 'name', 'Spanish Railway Foundation'),
(119515, 97051, 'es', 'name', 'Fundación de los Ferrocarriles Españoles'),
(119516, 97052, 'de', 'name', 'Wiener Krankenanstaltenverbund'),
(119517, 97052, 'en', 'name', 'Vienna Hospital Association'),
(119518, 97053, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±Ų“ŁŠŲÆ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© الخاصة Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(119519, 97053, 'en', 'name', 'Al-Rashid International Private University for Science and Technology'),
(119520, 97054, 'no_lang_code', 'name', 'Knorr-Bremse (France)'),
(119521, 97055, 'es', 'name', 'Fundación PROINPA'),
(119522, 97056, 'fr', 'name', 'Laboratoire d’études spatiales et d’instrumentation en astrophysique'),
(119523, 97057, 'en', 'name', 'Piri Reis University'),
(119524, 97057, 'tr', 'name', 'Pîrî Reis Üniversitesi'),
(119525, 97058, 'en', 'name', 'White River Junction VA Medical Center'),
(119526, 97059, 'no_lang_code', 'name', 'Vimicro (China)'),
(119527, 97059, 'zh', 'name', 'äø­ę˜Ÿå¾®ē”µå­ęœ‰é™å…¬åø'),
(119528, 97060, 'en', 'name', 'Indiana University School of Medicine'),
(119529, 97061, 'en', 'name', 'Virginia Mason Institute'),
(119530, 97062, 'es', 'name', 'Hospital Universitario Virgen de las Nieves'),
(119531, 97063, 'en', 'name', 'Institute of Technical Sciences of SASA'),
(119532, 97063, 'sr', 'name', 'Institut tehničkih nauka SANU, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ техничких наука Š”ŠŠŠ£'),
(119533, 97064, 'en', 'name', 'Constructor Institute'),
(119534, 97065, 'es', 'name', 'Hospital General Docente de Calderón'),
(119535, 97066, 'en', 'name', 'Research Laboratory in Machine, Process and Structural Dynamics'),
(119536, 97066, 'fr', 'name', 'Ɖquipe de recherche en dynamique des machines, des structures et des procĆ©dĆ©s'),
(119537, 97067, 'en', 'name', 'National Metrology Institute'),
(119538, 97068, 'no_lang_code', 'name', 'BAE Systems (United States)'),
(119539, 97069, 'no_lang_code', 'name', 'Loral (United States)'),
(119540, 97070, 'no_lang_code', 'name', 'Affimed Therapeutics (Germany)'),
(119541, 97071, 'no_lang_code', 'name', 'Cilag (Switzerland)'),
(119542, 97072, 'en', 'name', 'Integrative Neuroscience and Cognition Center'),
(119543, 97072, 'fr', 'name', 'Centre Neurosciences intƩgratives et Cognition'),
(119544, 97073, 'en', 'name', 'Affiliated Hospital of Changzhi Institute of Traditional Chinese Medicine'),
(119545, 97073, 'zh', 'name', 'é•æę²»åø‚äø­åŒ»ē ”ē©¶ę‰€é™„å±žåŒ»é™¢'),
(119546, 97074, 'en', 'name', 'State Key Laboratory of Scientific and Engineering Computing'),
(119547, 97074, 'zh', 'name', 'ē§‘å­¦äøŽå·„ēØ‹č®”ē®—å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119548, 97075, 'es', 'name', 'Red de Investigación de Conocimiento, Software y Hardware Libre'),
(119549, 97076, 'fr', 'name', 'DƩlƩgation Ile-de-France Ouest et Nord'),
(119550, 97077, 'en', 'name', 'Ontario Agri-Food Innovation Alliance'),
(119551, 97078, 'fr', 'name', 'Laboratoire de chimie des processus biologiques'),
(119552, 97079, 'es', 'name', 'Fundación Aula Virtual'),
(119553, 97080, 'en', 'name', 'Tennessee Academy of Science'),
(119554, 97081, 'fr', 'name', 'Transplantation et ThƩrapies Innovantes de la CornƩe'),
(119555, 97082, 'en', 'name', 'Fisheries Research Services'),
(119556, 97083, 'en', 'name', 'ResearchConcepts io GmbH, ResearchConcepts io GmbH (Germany)'),
(119557, 97084, 'en', 'name', 'Hellman Foundation'),
(119558, 97085, 'fr', 'name', 'Centre d''Etudes et de Recherche en Gestion d''Aix-Marseille'),
(119559, 97086, 'en', 'name', 'Winship Cancer Institute'),
(119560, 97087, 'no_lang_code', 'name', 'Novartis Gene Therapies, Inc. (United States)'),
(119561, 97088, 'fr', 'name', 'Ɖcologie des ForĆŖts MĆ©diterranĆ©ennes'),
(119562, 97089, 'no_lang_code', 'name', 'RestorGenex (United States)');
INSERT INTO `ror_settings` VALUES
(119563, 97090, 'en', 'name', 'Mato Grosso do Sul State University'),
(119564, 97090, 'pt', 'name', 'Universidade Estadual de Mato Grosso do Sul'),
(119565, 97091, 'en', 'name', 'Tisch Hospital'),
(119566, 97092, 'en', 'name', 'Vermont Law and Graduate School'),
(119567, 97093, 'en', 'name', 'National Research Foundation of Ukraine'),
(119568, 97093, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ фонГ Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ України'),
(119569, 97094, 'en', 'name', 'Federal University for Latin American Integration'),
(119570, 97094, 'pt', 'name', 'Universidade Federal da Integração Latino-Americana'),
(119571, 97095, 'it', 'name', 'Azienda Ospedaliero Universitaria Maggiore della Carita'),
(119572, 97096, 'en', 'name', 'NIHR Collaboration for Leadership in Applied Health Research and Care South London'),
(119573, 97097, 'en', 'name', 'Office of Accelerator R&D and Production'),
(119574, 97098, 'en', 'name', 'University of ParaĆ­ba Valley'),
(119575, 97098, 'pt', 'name', 'Universidade do Vale do ParaĆ­ba'),
(119576, 97099, 'en', 'name', 'Grand Est Regional Council'),
(119577, 97099, 'fr', 'name', 'Conseil rƩgional du Grand Est'),
(119578, 97100, 'en', 'name', 'Midlands State University'),
(119579, 97101, 'no_lang_code', 'name', 'Thea Energy, Inc. (United States)'),
(119580, 97102, 'en', 'name', 'State Key Laboratory of Pulp and Paper Engineering'),
(119581, 97102, 'zh', 'name', 'åˆ¶ęµ†é€ ēŗøå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119582, 97103, 'en', 'name', 'Office of Nuclear Materials Production, Management, and Protection'),
(119583, 97104, 'en', 'name', 'Communications and Microelectronic Integration Laboratory'),
(119584, 97104, 'fr', 'name', 'Laboratoire de communications et d''intƩgration de la microƩlectronique'),
(119585, 97105, 'en', 'name', 'State Key Laboratory of Optical Fiber Communication and Network Technology'),
(119586, 97105, 'zh', 'name', 'å…‰ēŗ¤é€šäæ”ęŠ€ęœÆäøŽē½‘ē»œå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119587, 97106, 'fr', 'name', 'Ɖcole nationale supĆ©rieure de chimie de Mulhouse'),
(119588, 97107, 'no_lang_code', 'name', 'BDM International (United States)'),
(119589, 97108, 'en', 'name', 'Japan Private School Promotion Foundation'),
(119590, 97108, 'ja', 'name', 'ę—„ęœ¬ē§ē«‹å­¦ę ”ęŒÆčˆˆč²”å›£'),
(119591, 97109, 'no_lang_code', 'name', 'Biomax Informatics (Germany)'),
(119592, 97110, 'no_lang_code', 'name', 'Electronics Design (Estonia)'),
(119593, 97111, 'en', 'name', 'Regional Health Care and Social Agency of Cremona'),
(119594, 97111, 'it', 'name', 'Azienda Socio Sanitaria Territoriale di Cremona'),
(119595, 97112, 'en', 'name', 'Institute of Ceramics and Glass'),
(119596, 97112, 'es', 'name', 'Instituto de CerƔmica y Vidrio'),
(119597, 97113, 'es', 'name', 'Instituto de Investigación sobre Sociedades, Territorios y Culturas'),
(119598, 97114, 'en', 'name', 'European Association for Forwarding, Transport, Logistics and Customs Services'),
(119599, 97115, 'en', 'name', 'BD Biosciences'),
(119600, 97115, 'no_lang_code', 'name', 'BD Biosciences (United States)'),
(119601, 97116, 'fr', 'name', 'Institut Pierre-Simon Laplace'),
(119602, 97117, 'it', 'name', 'Istituto Sperimentale per la Frutticoltura'),
(119603, 97118, 'en', 'name', 'Corewell Health'),
(119604, 97119, 'en', 'name', 'Natural Resources Institute Finland'),
(119605, 97120, 'en', 'name', 'Toho University'),
(119606, 97120, 'ja', 'name', 'ę±é‚¦å¤§å­¦'),
(119607, 97121, 'en', 'name', 'Regulatory Intergovernmental, and Stakeholder Engagement'),
(119608, 97122, 'es', 'name', 'Instituto Nacional de CancerologĆ­a'),
(119609, 97123, 'en', 'name', 'B.P. Eye Foundation'),
(119610, 97124, 'en', 'name', 'Salvadoran Lutheran University'),
(119611, 97124, 'es', 'name', 'Universidad Luterana SalvadoreƱa'),
(119612, 97125, 'en', 'name', 'VNU Science and Technology Development Fund'),
(119613, 97126, 'no_lang_code', 'name', 'SwissLumix (Switzerland)'),
(119614, 97127, 'en', 'name', 'Material Physics Center'),
(119615, 97127, 'es', 'name', 'Centro de FĆ­sica de Materiales'),
(119616, 97127, 'eu', 'name', 'Materialen Fisika Zentroa'),
(119617, 97128, 'en', 'name', 'State Key Laboratory of Mechanical System and Vibration'),
(119618, 97128, 'zh', 'name', 'ęœŗę¢°ē³»ē»ŸäøŽęŒÆåŠØå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119619, 97129, 'en', 'name', 'Fifth Hospital In Wuhan'),
(119620, 97129, 'zh', 'name', 'ę­¦ę±‰åø‚ē¬¬äŗ”åŒ»é™¢'),
(119621, 97130, 'no_lang_code', 'name', 'Genetrix (Spain)'),
(119622, 97131, 'en', 'name', 'State Key Laboratory of Bioreactor Engineering'),
(119623, 97131, 'zh', 'name', 'ē”Ÿē‰©ååŗ”å™Øå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119624, 97132, 'en', 'name', 'St Michael''s Hospital'),
(119625, 97133, 'en', 'name', 'Rural and Environment Science and Analytical Services'),
(119626, 97134, 'en', 'name', 'University of Koudougou'),
(119627, 97134, 'fr', 'name', 'UniversitƩ Norbert Zongo'),
(119628, 97135, 'en', 'name', 'National University College'),
(119629, 97136, 'pt', 'name', 'Instituto de TelecomunicaƧƵes'),
(119630, 97137, 'fr', 'name', 'Laboratoire d''Ingénierie des Systèmes Macromoléculaires'),
(119631, 97138, 'en', 'name', 'Universities Norway'),
(119632, 97138, 'no', 'name', 'Universitets- og høgskolerÄdet'),
(119633, 97139, 'ca', 'name', 'Fundació Balear d''Innovació i Tecnologia'),
(119634, 97139, 'es', 'name', 'Fundación Balear de Innovación y Tecnología'),
(119635, 97140, 'de', 'name', 'Freistaat Sachsen'),
(119636, 97140, 'en', 'name', 'Free State of Saxony'),
(119637, 97141, 'en', 'name', 'State Key Laboratory of Intelligent Technology and Systems'),
(119638, 97141, 'zh', 'name', 'ę™ŗčƒ½ęŠ€ęœÆäøŽē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119639, 97142, 'es', 'name', 'Asociacion Industrial de Optica Color e Imagen'),
(119640, 97143, 'en', 'name', 'Pacific Coastal and Marine Science Center'),
(119641, 97144, 'no_lang_code', 'name', 'Elekta (Sweden)'),
(119642, 97145, 'no_lang_code', 'name', 'Arianespace (France)'),
(119643, 97146, 'en', 'name', 'Naval Air Warfare Center Warminster'),
(119644, 97147, 'en', 'name', 'Fermi Research Alliance'),
(119645, 97148, 'en', 'name', 'Australian Defence Force Academy'),
(119646, 97149, 'en', 'name', 'Federal Rural University of Amazonia'),
(119647, 97149, 'pt', 'name', 'Universidade Federal Rural da AmazƓnia'),
(119648, 97150, 'en', 'name', 'State Key Laboratory of Wireless Mobile Communications'),
(119649, 97150, 'zh', 'name', 'ę— ēŗæē§»åŠØé€šäæ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119650, 97151, 'en', 'name', 'Libraries without Borders'),
(119651, 97151, 'fr', 'name', 'BibliothĆØques sans frontiĆØres'),
(119652, 97152, 'en', 'name', 'Fujian Institute of Research on the Structure of Matter'),
(119653, 97152, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē¦å»ŗē‰©č“Øē»“ęž„ē ”ē©¶ę‰€'),
(119654, 97153, 'en', 'name', 'Shirley Ryan AbilityLab'),
(119655, 97154, 'es', 'name', 'Miranza'),
(119656, 97155, 'en', 'name', 'Agusan del Sur State College of Agriculture and Technology'),
(119657, 97156, 'en', 'name', 'California Department of Education'),
(119658, 97156, 'es', 'name', 'Departamento de Educación de California'),
(119659, 97157, 'en', 'name', 'University Transportation Centers Program'),
(119660, 97158, 'en', 'name', 'Siemens Gamesa Renewable Energy, Siemens Gamesa Renewable Energy (Spain)'),
(119661, 97159, 'no_lang_code', 'name', 'Hefei General Machinery Research Institute (China)'),
(119662, 97159, 'zh', 'name', 'åˆč‚„é€šē”Øęœŗę¢°ē ”ē©¶é™¢'),
(119663, 97160, 'pt', 'name', 'União das Faculdades Católicas de Mato Grosso'),
(119664, 97161, 'en', 'name', 'State Key Laboratory of Electroanalytical Chemistry'),
(119665, 97161, 'zh', 'name', 'ē”µåˆ†ęžåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119666, 97162, 'es', 'name', 'Clínica Planificación Familiar y Terminación de Embarazo'),
(119667, 97163, 'fr', 'name', 'MolƩcule aux Nanos-objets : RƩactivitƩ, Interactions et Spectroscopies'),
(119668, 97164, 'en', 'name', 'Academy of Mathematics and Systems Science'),
(119669, 97164, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę•°å­¦äøŽē³»ē»Ÿē§‘å­¦ē ”ē©¶é™¢'),
(119670, 97165, 'en', 'name', 'Versus Arthritis'),
(119671, 97166, 'en', 'name', 'Vietnam National University, Hanoi'),
(119672, 97166, 'fr', 'name', 'Université nationale du Viêt-nam de Hanoï'),
(119673, 97166, 'vi', 'name', 'ĐẔi hį»c Quốc gia HĆ  Nį»™i'),
(119674, 97166, 'zh', 'name', '河内国家大学'),
(119675, 97167, 'en', 'name', 'Department of Human and Social Services'),
(119676, 97168, 'en', 'name', 'Ignatius Ajuru University of Education'),
(119677, 97169, 'bg', 'name', 'Дофийски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ "Дв. ŠšŠ»ŠøŠ¼ŠµŠ½Ń‚ ŠžŃ…Ń€ŠøŠ“ŃŠŗŠø"'),
(119678, 97169, 'en', 'name', 'Sofia University "St. Kliment Ohridski"'),
(119679, 97170, 'en', 'name', 'Regional Government of Castile-La Mancha'),
(119680, 97170, 'es', 'name', 'Junta de Comunidades de Castilla-La Mancha'),
(119681, 97171, 'en', 'name', 'Mathematical Institute of the Serbian Academy of Sciences and Arts'),
(119682, 97172, 'en', 'name', 'Dana-Farber Cancer Institute'),
(119683, 97173, 'en', 'name', 'Polytechnic University of Nicaragua'),
(119684, 97173, 'es', 'name', 'Universidad PolitƩcnica de Nicaragua'),
(119685, 97174, 'es', 'name', 'Universidad del Gran Rosario'),
(119686, 97175, 'fr', 'name', 'Laboratoire physiopathologie et pharmacologie clinique de la douleur'),
(119687, 97176, 'de', 'name', 'Staatliche Museen zu Berlin'),
(119688, 97176, 'en', 'name', 'Berlin State Museums'),
(119689, 97177, 'it', 'name', 'FacoltĆ  di Teologia di Lugano'),
(119690, 97178, 'en', 'name', 'State Key Laboratory of Metallogenic Mechanism of Endogenous Metal Deposits'),
(119691, 97178, 'zh', 'name', 'å†…ē”Ÿé‡‘å±žēŸæåŗŠęˆēŸæęœŗåˆ¶ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119692, 97179, 'en', 'name', 'Eachtra Archaeological Projects, Eachtra Archaeological Projects (Ireland)'),
(119693, 97180, 'id', 'name', 'Politeknik Negeri Jember'),
(119694, 97181, 'en', 'name', 'Koneru Lakshmaiah Education Foundation'),
(119695, 97182, 'en', 'name', 'State Key Laboratory of Oxo Synthesis and Selective Oxidation'),
(119696, 97182, 'zh', 'name', 'ē¾°åŸŗåˆęˆäøŽé€‰ę‹©ę°§åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119697, 97183, 'en', 'name', 'UC Davis Comprehensive Cancer Center'),
(119698, 97184, 'en', 'name', 'State Key Laboratory of Pathogenic Microorganism Biosafety'),
(119699, 97184, 'zh', 'name', 'ē—…åŽŸå¾®ē”Ÿē‰©ē”Ÿē‰©å®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119700, 97185, 'en', 'name', 'Sanitas Robresa Medical Centre'),
(119701, 97185, 'es', 'name', 'Centro MƩdico Sanitas Robresa'),
(119702, 97186, 'en', 'name', 'Oceanographic Center of Vigo'),
(119703, 97186, 'es', 'name', 'Centro OceanogrƔfico de Vigo'),
(119704, 97187, 'en', 'name', 'NOAA Oceanic and Atmospheric Research'),
(119705, 97188, 'en', 'name', 'Relativistic Heavy Ion Collider'),
(119706, 97189, 'en', 'name', 'Daiko Foundation'),
(119707, 97190, 'en', 'name', 'Venter Pharma (Spain)'),
(119708, 97191, 'no_lang_code', 'name', 'Centre d''Ʃtudes Alexandrines'),
(119709, 97192, 'en', 'name', 'CHI Health Good Samaritan'),
(119710, 97193, 'en', 'name', 'Naval Ordnance Laboratory'),
(119711, 97194, 'en', 'name', 'Research Institute on the Foundations of Computer Science'),
(119712, 97194, 'fr', 'name', 'Institut de Recherche en Informatique Fondamentale'),
(119713, 97195, 'en', 'name', 'Federal Rural University of Pernambuco'),
(119714, 97195, 'pt', 'name', 'Universidade Federal Rural de Pernambuco'),
(119715, 97196, 'en', 'name', 'Catholic University of Pernambuco'),
(119716, 97196, 'pt', 'name', 'Universidade Católica de Pernambuco'),
(119717, 97197, 'en', 'name', 'National Group for Mathematical Analysis, Probability and their Applications'),
(119718, 97197, 'it', 'name', 'Gruppo Nazionale per l''Analisi Matematica, la ProbabilitĆ  e le loro Applicazioni'),
(119719, 97198, 'no_lang_code', 'name', 'Yingli Energy Technology Group (China)'),
(119720, 97198, 'zh', 'name', 'č‹±åˆ©čƒ½ęŗē§‘ęŠ€é›†å›¢'),
(119721, 97199, 'en', 'name', 'Beijing Institute for General Artificial Intelligence'),
(119722, 97199, 'zh', 'name', 'åŒ—äŗ¬é€šē”Øäŗŗå·„ę™ŗčƒ½ē ”ē©¶é™¢'),
(119723, 97200, 'fr', 'name', 'Voix Anglophones : LittƩrature et EsthƩtique'),
(119724, 97201, 'no_lang_code', 'name', 'Euler Technology (China)'),
(119725, 97201, 'zh', 'name', 'åŒ—äŗ¬ä¼˜ä¹å¤ē”Ÿē§‘ęŠ€ęœ‰é™č“£ä»»å…¬åø'),
(119726, 97202, 'no_lang_code', 'name', 'Sigma-Aldrich (United States)'),
(119727, 97203, 'no_lang_code', 'name', 'State Grid Shanxi Electric Power Company (China)'),
(119728, 97203, 'zh', 'name', 'å›½ē½‘å±±č„æēœē”µåŠ›å…¬åø'),
(119729, 97204, 'en', 'name', 'Sanitas Virgen del Mar University Hospital'),
(119730, 97204, 'es', 'name', 'Hospital Universitario Sanitas Virgen del Mar'),
(119731, 97205, 'en', 'name', 'Nigerian National Petroleum Company Limited'),
(119732, 97206, 'no_lang_code', 'name', 'United Technologies (United States)'),
(119733, 97207, 'fr', 'name', 'Groupement LigƩrien pour le Calcul Intensif DistribuƩ'),
(119734, 97208, 'en', 'name', 'International Audio Laboratories Erlangen'),
(119735, 97209, 'fr', 'name', 'Laboratoire de Physique ThƩorique et Hautes Energies'),
(119736, 97210, 'en', 'name', 'Academy of Social Sciences'),
(119737, 97211, 'en', 'name', 'UW Health University Hospital'),
(119738, 97212, 'fr', 'name', 'Centre de Recherche Risques et VulnƩrabilitƩs'),
(119739, 97213, 'en', 'name', 'NIHR Bristol Biomedical Research Centre'),
(119740, 97214, 'cs', 'name', 'Výzkumný Ústav MlékÔrenský'),
(119741, 97215, 'en', 'name', 'Mandurah Community Health Centre'),
(119742, 97216, 'fr', 'name', 'Biologie, GƩnƩtique et ThƩrapies ostƩoArticulaires et Respiratoires'),
(119743, 97217, 'en', 'name', 'Spanish Confederation of People with Physical and Organic Disabilities'),
(119744, 97217, 'es', 'name', 'Confederación Española de Personas con Discapacidad Física y OrgÔnica'),
(119745, 97218, 'en', 'name', 'Office of Fusion Energy Sciences'),
(119746, 97219, 'en', 'name', 'Association for the Development of Enterprises and Competencies'),
(119747, 97219, 'fr', 'name', 'Association pour le DƩveloppement des Entreprises et des CompƩtences'),
(119748, 97220, 'en', 'name', 'Yerevan Haybusak University'),
(119749, 97220, 'hy', 'name', 'ŌµÖ€Ö‡Õ”Õ¶Õ« «ՀՔյբուսՔկ» Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶Õ«'),
(119750, 97221, 'en', 'name', 'State Key Laboratory of Strength of Metallic Materials'),
(119751, 97221, 'zh', 'name', 'é‡‘å±žęę–™å¼ŗåŗ¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119752, 97222, 'en', 'name', 'Sanitas Sevilla La Buhaira Medical Centre'),
(119753, 97222, 'es', 'name', 'Centro MƩdico Sanitas Sevilla La Buhaira'),
(119754, 97223, 'en', 'name', 'Naval Research Laboratory Materials Science and Technology Division'),
(119755, 97224, 'en', 'name', 'International Lyme and Associated Diseases Society'),
(119756, 97225, 'en', 'name', 'Cooperative Research Centre for Contamination Assessment and Remediation of the Environment'),
(119757, 97226, 'no_lang_code', 'name', 'Shandong Sinder Technology Co., Ltd.'),
(119758, 97226, 'zh', 'name', 'å±±äøœäæ”å¾—ē§‘ęŠ€č‚”ä»½ęœ‰é™å…¬åø'),
(119759, 97227, 'en', 'name', 'State Key Laboratory of Infrared Physics'),
(119760, 97227, 'zh', 'name', 'ēŗ¢å¤–ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119761, 97228, 'en', 'name', 'Spanish Agency for Food Safety and Nutrition'),
(119762, 97228, 'es', 'name', 'Agencia Española de Consumo, Seguridad Alimentaría y Nutrición'),
(119763, 97229, 'en', 'name', 'NOAA National Marine Fisheries Service Northeast Fisheries Science Center'),
(119764, 97230, 'en', 'name', 'Johns Hopkins University SAIS Bologna Center'),
(119765, 97231, 'no_lang_code', 'name', 'Integrated Device Technology (South Korea)'),
(119766, 97232, 'fr', 'name', 'HƓpital Marie Lannelongue'),
(119767, 97233, 'en', 'name', 'Johns Hopkins University School of Medicine'),
(119768, 97234, 'en', 'name', 'Auxilio Mutuo Hospital'),
(119769, 97235, 'es', 'name', 'Consejería de Universidad, Investigación e Innovación'),
(119770, 97236, 'en', 'name', 'Krea University'),
(119771, 97237, 'no_lang_code', 'name', 'MEDAV (Germany)'),
(119772, 97238, 'en', 'name', 'National Space Science Center'),
(119773, 97238, 'zh', 'name', 'å›½å®¶ē©ŗé—“ē§‘å­¦äø­åæƒ'),
(119774, 97239, 'en', 'name', 'Dan L Duncan Comprehensive Cancer Center'),
(119775, 97240, 'en', 'name', 'Alberta Health Services'),
(119776, 97241, 'en', 'name', 'Faces and Voices of Recovery'),
(119777, 97242, 'co', 'name', 'Centro de Investigación Forestal'),
(119778, 97242, 'es', 'name', 'Instituto de Ciencias Forestales'),
(119779, 97243, 'fr', 'name', 'Handicap neuromusculaire : Physiopathologie, BiothƩrapie et Pharmacologie appliquƩes'),
(119780, 97244, 'en', 'name', 'Robert H. Lurie Comprehensive Cancer Center of Northwestern University'),
(119781, 97245, 'fr', 'name', 'Union Technique de l’Automobile du motocycle et du Cycle'),
(119782, 97245, 'no_lang_code', 'name', 'Technical Union for the Automobile Motorcycle and Cycle Industries'),
(119783, 97246, 'en', 'name', 'Cyprus West University'),
(119784, 97246, 'tr', 'name', 'Kıbrıs Batı Üniversitesi'),
(119785, 97247, 'en', 'name', 'Uncle Kory Foundation'),
(119786, 97248, 'no_lang_code', 'name', 'Treelogic (Spain)'),
(119787, 97249, 'en', 'name', 'State Key Laboratory of Neuroscience'),
(119788, 97249, 'zh', 'name', 'ē„žē»ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119789, 97250, 'ca', 'name', 'Institut d''Anàlisi Econòmica'),
(119790, 97250, 'en', 'name', 'Institute for Economic Analysis'),
(119791, 97250, 'es', 'name', 'Instituto de AnÔlisis Económico'),
(119792, 97251, 'en', 'name', 'Scout Association of Hong Kong'),
(119793, 97251, 'zh', 'name', 'é¦™ęøÆē«„č»ēø½ęœƒ'),
(119794, 97252, 'ca', 'name', 'Corporació Sanitària Parc Taulí'),
(119795, 97252, 'es', 'name', 'Corporación Sanitaria y Universitaria Parc Taulí'),
(119796, 97253, 'fr', 'name', 'Laboratoire de psychologie des cognitions'),
(119797, 97254, 'en', 'name', 'Caribbean-Florida Water Science Center'),
(119798, 97255, 'en', 'name', 'Hypothesis Fund'),
(119799, 97256, 'en', 'name', 'Oceana'),
(119800, 97257, 'en', 'name', 'Institute of Mechanical Engineering and Industrial Mangement, Instituto de Engenharia Mecânica e Gestão Industrial'),
(119801, 97258, 'en', 'name', 'Kharkiv National University of Internal Affairs'),
(119802, 97258, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(119803, 97259, 'en', 'name', 'Southern New Hampshire Medical Center'),
(119804, 97260, 'es', 'name', 'Complejo Hospitalario Universitario de Granada'),
(119805, 97261, 'en', 'name', 'State Key Laboratory of Computer Architecture'),
(119806, 97261, 'zh', 'name', 'č®”ē®—ęœŗä½“ē³»ē»“ęž„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119807, 97262, 'en', 'name', 'CHI Health St. Mary’s'),
(119808, 97263, 'en', 'name', 'Hakai Institute'),
(119809, 97264, 'en', 'name', 'Office of Infrastructure'),
(119810, 97265, 'en', 'name', 'MakeWay'),
(119811, 97266, 'de', 'name', 'Ostfriesische Landschaft'),
(119812, 97267, 'en', 'name', 'Brazilian National Institute for Science and Technology of Quantum Information'),
(119813, 97267, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia de Informação Quântica'),
(119814, 97268, 'en', 'name', 'Dom Bosco Catholic University'),
(119815, 97268, 'pt', 'name', 'Universidade Católica Dom Bosco'),
(119816, 97269, 'en', 'name', 'State Key Laboratory of Biogeology and Environmental Geology'),
(119817, 97269, 'zh', 'name', 'ē”Ÿē‰©åœ°č“ØäøŽēŽÆå¢ƒåœ°č“Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119818, 97270, 'en', 'name', 'State Key Laboratory of Millimeter Waves'),
(119819, 97270, 'zh', 'name', 'ęÆ«ē±³ę³¢å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119820, 97271, 'en', 'name', 'Wisconsin Breast Cancer Coalition'),
(119821, 97272, 'en', 'name', 'Fusion for Energy'),
(119822, 97272, 'es', 'name', 'Fusión para la Energía'),
(119823, 97273, 'en', 'name', 'Municipal Institution of Higher Education "Khortytsia National Educational and Rehabilitational Academy" of Zaporizhzhia Regional Council'),
(119824, 97273, 'uk', 'name', 'Комунальний заклаГ вищої освіти Ā«Š„Š¾Ń€Ń‚ŠøŃ†ŃŒŠŗŠ° Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š½Š°Š²Ń‡Š°Š»ŃŒŠ½Š¾-реабілітаційна Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ» Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ¾Ń— обласної раГи'),
(119825, 97274, 'fr', 'name', 'Sens, Texte, Informatique, Histoire'),
(119826, 97275, 'en', 'name', 'California Department of Health Care Services'),
(119827, 97276, 'en', 'name', 'Sanitas Reina Victoria Medical Centre'),
(119828, 97276, 'es', 'name', 'Centro MƩdico Sanitas Reina Victoria'),
(119829, 97277, 'en', 'name', 'Shenzhen MSU-BIT University'),
(119830, 97277, 'ru', 'name', 'Университет ŠœŠ“Š£-ППИ в ŠØŃŠ½ŃŒŃ‡Š¶ŃŠ½Šµ'),
(119831, 97277, 'zh', 'name', 'ę·±åœ³åŒ—ē†čŽ«ę–Æē§‘å¤§å­¦'),
(119832, 97278, 'en', 'name', 'State Key Laboratory of Satellite Ocean Environment Dynamics'),
(119833, 97278, 'zh', 'name', 'å«ę˜Ÿęµ·ę“‹ēŽÆå¢ƒåŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119834, 97279, 'en', 'name', 'Rome Laboratory'),
(119835, 97280, 'fr', 'name', 'THERANOSCAN : Biomarqueurs ThƩranostiques des Cancers Bronchiques Non Ơ Petites Cellules'),
(119836, 97281, 'en', 'name', 'Institute of Languages ​​and Cultures of the Mediterranean and the Near East'),
(119837, 97281, 'es', 'name', 'Instituto de Lenguas y Culturas del MediterrÔneo y Oriente Próximo'),
(119838, 97282, 'en', 'name', 'RTI Press'),
(119839, 97283, 'no_lang_code', 'name', 'Finmeccanica (United Kingdom)'),
(119840, 97284, 'en', 'name', 'Optimized Adaptive Control Systems'),
(119841, 97284, 'es', 'name', 'Control Adaptativo Predictivo Experto'),
(119842, 97285, 'en', 'name', 'American Samoa Community Cancer Coalition'),
(119843, 97286, 'en', 'name', 'Pierre Louis Institute of Epidemiology and Public Health'),
(119844, 97286, 'fr', 'name', 'Institut Pierre Louis dā€˜Ć‰pidĆ©miologie et de SantĆ© Publique'),
(119845, 97287, 'en', 'name', 'Materials Science Institute of Madrid'),
(119846, 97287, 'es', 'name', 'Instituto de Ciencia de Materiales de Madrid'),
(119847, 97288, 'en', 'name', 'Ministry of Agriculture'),
(119848, 97289, 'fr', 'name', 'Réanimation et soins intensifs du patient en Insuffisance respiratoire aigüe'),
(119849, 97290, 'en', 'name', 'Upgrad (India)'),
(119850, 97291, 'en', 'name', 'Asia Pacific College'),
(119851, 97292, 'de', 'name', 'Institut für Qualität und Wirtschaftlichkeit im Gesundheitswesen'),
(119852, 97292, 'en', 'name', 'Institute for Quality and Efficiency in Health Care'),
(119853, 97293, 'en', 'name', 'Cold Spring Harbor Laboratory'),
(119854, 97294, 'en', 'name', 'Adam Smith University'),
(119855, 97295, 'en', 'name', 'Virginia Mason Franciscan Health'),
(119856, 97296, 'en', 'name', 'Pontchaillou Hospital'),
(119857, 97296, 'fr', 'name', 'HƓpital Pontchaillou'),
(119858, 97297, 'fr', 'name', 'HƓpital AndrƩ Mignot'),
(119859, 97298, 'en', 'name', 'Central Adelaide Local Health Network'),
(119860, 97299, 'en', 'name', 'National Centre for Energy Systems Integration'),
(119861, 97300, 'en', 'name', 'Science Fund of the Republic of Serbia'),
(119862, 97300, 'sr', 'name', 'Fond za nauku Republike Srbije, ФонГ за науку Републике Š”Ń€Š±ŠøŃ˜Šµ'),
(119863, 97301, 'en', 'name', 'Faculty SantĆ­ssima Trindade'),
(119864, 97302, 'en', 'name', 'Saint Mary''s College'),
(119865, 97303, 'en', 'name', 'State Key Laboratory of Civil Engineering Disaster Prevention'),
(119866, 97303, 'zh', 'name', 'åœŸęœØå·„ēØ‹é˜²ē¾å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119867, 97304, 'en', 'name', 'NOAA Geostationary Operational Environmental Satellites'),
(119868, 97305, 'en', 'name', 'National Centre of Competence in Research Robotics'),
(119869, 97306, 'en', 'name', 'United States Army Combat Capabilities Development Command'),
(119870, 97307, 'da', 'name', 'Samfund og Erhverv, Det Frie ForskningsrƄd'),
(119871, 97307, 'en', 'name', 'Danish Council for Independent Research, Society and Business'),
(119872, 97308, 'en', 'name', 'Institute of Innovation and Knowledge Management'),
(119873, 97308, 'es', 'name', 'Instituto de Gestión de la Innovación y del Conocimiento'),
(119874, 97309, 'en', 'name', 'Fluminense Federal University'),
(119875, 97309, 'pt', 'name', 'Universidade Federal Fluminense'),
(119876, 97310, 'en', 'name', 'Vanderbilt-Ingram Cancer Center'),
(119877, 97311, 'en', 'name', 'National Group for Scientific Computation'),
(119878, 97311, 'it', 'name', 'Gruppo Nazionale per il Calcolo Scientifico'),
(119879, 97312, 'en', 'name', 'Center for Excellence in Molecular Cell Science'),
(119880, 97312, 'zh', 'name', 'äø­ē§‘é™¢åˆ†å­ē»†čƒžå“č¶Šåˆ›ę–°äø­åæƒ'),
(119881, 97313, 'no_lang_code', 'name', 'Sandoz Group AG (Switzerland)'),
(119882, 97314, 'de', 'name', 'Deutsches Archäologisches Institut, Kommission für Archäologie Außereuropäischer Kulturen'),
(119883, 97314, 'en', 'name', 'German Archaeological Institute, Commission for Archaeology of Non-European Cultures'),
(119884, 97315, 'en', 'name', 'Takhar University'),
(119885, 97315, 'fa', 'name', 'دانؓگاه ŲŖŲ®Ų§Ų±'),
(119886, 97316, 'en', 'name', 'Paris Institute for Advanced Study'),
(119887, 97316, 'fr', 'name', 'Institut d''Etudes AvancƩes Paris'),
(119888, 97317, 'en', 'name', 'Minneapolis VA Health Care System'),
(119889, 97318, 'en', 'name', 'Institute for Work and Health'),
(119890, 97319, 'da', 'name', 'Aage Bangs Fond'),
(119891, 97319, 'en', 'name', 'Aage Bang Fund'),
(119892, 97320, 'en', 'name', 'Douglas Bomford Trust'),
(119893, 97321, 'en', 'name', 'Sanitas Nicasio Gallego Medical Centre'),
(119894, 97321, 'es', 'name', 'Centro MƩdico Sanitas Nicasio Gallego'),
(119895, 97322, 'en', 'name', 'Wyoming-Montana Water Science Center'),
(119896, 97323, 'en', 'name', 'Novo Nordisk Foundation Center for Basic Metabolic Research'),
(119897, 97324, 'en', 'name', 'WinnMed'),
(119898, 97325, 'es', 'name', 'Fundación Estatal, Salud, Infancia y Bienestar Social, F.S.P.'),
(119899, 97326, 'en', 'name', 'Gwanda State University'),
(119900, 97327, 'en', 'name', 'Technological Center for Research, Development and Innovation in Information and Communication Technologies (ICT)'),
(119901, 97327, 'es', 'name', 'Centro Tecnológico de Investigación, Desarrollo e Innovación en tecnologías de la Información y las Comunicaciones (TIC)'),
(119902, 97328, 'fr', 'name', 'Institut de Recherche de Chimie Paris'),
(119903, 97329, 'es', 'name', 'Asociación Colombiana de Hematología y Oncología'),
(119904, 97330, 'en', 'name', 'Junta of Castile and León'),
(119905, 97330, 'es', 'name', 'Junta de Castilla y León'),
(119906, 97331, 'fr', 'name', 'Laboratoire Ondes et Milieux Complexes'),
(119907, 97332, 'fr', 'name', 'PƓle Universitaire LƩonard de Vinci'),
(119908, 97333, 'de', 'name', 'Stiftung für Technologiefolgen-Abschätzung'),
(119909, 97333, 'en', 'name', 'Foundation for Technology Assessment'),
(119910, 97333, 'fr', 'name', 'Fondation pour l''Ʃvaluation des choix technologiques'),
(119911, 97333, 'it', 'name', 'Fondazione per la valutazione delle scelte tecnologiche'),
(119912, 97334, 'en', 'name', 'Institute for Cosmology and Philosophy of Nature'),
(119913, 97334, 'hr', 'name', 'Institut za kozmologiju i filozofiju prirode'),
(119914, 97335, 'fr', 'name', 'Vertige ExtrĆŖme'),
(119915, 97336, 'no_lang_code', 'name', 'Deltex Medical (Spain)'),
(119916, 97337, 'en', 'name', 'Pacific Islands Water Science Center'),
(119917, 97338, 'en', 'name', 'University of Turabo'),
(119918, 97338, 'es', 'name', 'Universidad del Turabo'),
(119919, 97339, 'en', 'name', 'Thales Alenia Space'),
(119920, 97339, 'no_lang_code', 'name', 'Thales Alenia Space (Italy)'),
(119921, 97340, 'en', 'name', 'Danish Agency for Science and Higher Education'),
(119922, 97341, 'ko', 'name', 'ķ”¼ģ•Œģ§€ģ—ģŠ¤ģ•¤ķ…'),
(119923, 97341, 'no_lang_code', 'name', 'PRG S&Tech (South Korea)'),
(119924, 97342, 'en', 'name', 'Office of Sustainable Transportation and Fuels'),
(119925, 97343, 'es', 'name', 'Instituto Nacional de Investigación Agropecuaria'),
(119926, 97344, 'no_lang_code', 'name', 'GV20 Therapeutics (United States)'),
(119927, 97345, 'en', 'name', 'OVC Pet Trust'),
(119928, 97346, 'en', 'name', 'Third People''s Hospital of Hangzhou'),
(119929, 97346, 'zh', 'name', 'ę­å·žåø‚ē¬¬äø‰äŗŗę°‘åŒ»é™¢'),
(119930, 97347, 'en', 'name', 'The King Gustaf V Foundation''s 80-year fund'),
(119931, 97347, 'sv', 'name', 'Stiftelsen Konung Gustaf V:s 80-Ƅrsfond'),
(119932, 97348, 'fr', 'name', 'Laboratoire de Photochimie et d''IngƩnierie MacromolƩculaire'),
(119933, 97349, 'en', 'name', 'State Key Laboratory of Safety and Health of Long Bridges in Service'),
(119934, 97349, 'zh', 'name', 'åœØå½¹é•æå¤§ę”„ę¢å®‰å…ØäøŽå„åŗ·å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119935, 97350, 'no_lang_code', 'name', 'Egis (France)'),
(119936, 97351, 'fr', 'name', 'HƓpital de la Roche-Guyon'),
(119937, 97352, 'es', 'name', 'Ministerio de Salud PĆŗblica'),
(119938, 97353, 'no_lang_code', 'name', 'Honeywell (United States)'),
(119939, 97354, 'en', 'name', 'Naval Research Laboratory Laboratories for Computational Physics & Fluid Dynamics'),
(119940, 97355, 'en', 'name', 'Maryland-Delaware-D.C. Water Science Center'),
(119941, 97356, 'en', 'name', 'Swine Innovation Porc'),
(119942, 97357, 'en', 'name', 'Central Midwest Water Science Center'),
(119943, 97358, 'en', 'name', 'St. Anne Hospital in Burien'),
(119944, 97359, 'fr', 'name', 'Grenoble Alpes MƩtropole'),
(119945, 97360, 'en', 'name', 'Translational Research in Gene Therapy'),
(119946, 97361, 'cs', 'name', 'výzkumný Ćŗstav pĆ­cninÔřský spol. s r.o'),
(119947, 97361, 'no_lang_code', 'name', 'Research Institute for Fodder Crops (Czechia)'),
(119948, 97362, 'en', 'name', 'Namur Institute of Language, Text and Transmediality'),
(119949, 97363, 'no_lang_code', 'name', 'Triad National Security (United States)'),
(119950, 97364, 'no_lang_code', 'name', 'Advanced Digital Imaging Research'),
(119951, 97365, 'en', 'name', 'Arctic Sciences'),
(119952, 97366, 'en', 'name', 'Association of Electronic and Information Technologies'),
(119953, 97366, 'es', 'name', 'Asociación Cluster de Telecomunicaciones'),
(119954, 97367, 'ca', 'name', 'Centre de CiĆØncia i Tecnologia Forestal de Catalunya'),
(119955, 97367, 'en', 'name', 'Forest Science and Technology Centre of Catalonia'),
(119956, 97367, 'es', 'name', 'Centro de Ciencia y Tecnologƭa Forestal de CataluƱa'),
(119957, 97367, 'fr', 'name', 'Centre des Sciences et des Technologies ForestiĆØres de Catalogne'),
(119958, 97368, 'en', 'name', 'Shanghai Institute of Technical Physics'),
(119959, 97368, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·ęŠ€ęœÆē‰©ē†ē ”ē©¶ę‰€'),
(119960, 97369, 'en', 'name', 'State Key Laboratory of Tropical Crop Biotechnology'),
(119961, 97369, 'zh', 'name', 'ēƒ­åø¦ä½œē‰©ē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119962, 97370, 'en', 'name', 'National Children’s Research Centre'),
(119963, 97371, 'en', 'name', 'State Key Laboratory of Rare Metal Separation and Comprehensive Utilization'),
(119964, 97371, 'zh', 'name', 'ēØ€ęœ‰é‡‘å±žåˆ†ē¦»äøŽē»¼åˆåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119965, 97372, 'en', 'name', 'California Department of Fish and Wildlife'),
(119966, 97373, 'en', 'name', 'National Museum of Natural Sciences'),
(119967, 97373, 'es', 'name', 'Museo Nacional de Ciencias Naturales'),
(119968, 97374, 'en', 'name', 'State Key Laboratory of Information Photonics and Optical Communications'),
(119969, 97374, 'zh', 'name', 'äæ”ęÆå…‰å­å­¦äøŽå…‰é€šäæ”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119970, 97375, 'en', 'name', 'Sanitas La Zarzuela University Hospital'),
(119971, 97375, 'es', 'name', 'Hospital Universitario Sanitas La Zarzuela'),
(119972, 97376, 'no_lang_code', 'name', 'NXP (France)'),
(119973, 97377, 'en', 'name', 'U.S. Army White Sands Test Center'),
(119974, 97378, 'en', 'name', 'Institute for Stem Cell Biology and Regenerative Medicine'),
(119975, 97379, 'sv', 'name', 'Stiftelsen Zoologisk Forskning'),
(119976, 97380, 'en', 'name', 'Office of Technology Transitions'),
(119977, 97381, 'de', 'name', 'Bundesministerium für Wirtschaft und Klimaschutz'),
(119978, 97381, 'en', 'name', 'Federal Ministry for Economic Affairs and Climate Action'),
(119979, 97382, 'en', 'name', 'Illinois Department of Transportation'),
(119980, 97383, 'en', 'name', 'Ʃklore-ed School of Management'),
(119981, 97384, 'en', 'name', 'Strategic Research Council'),
(119982, 97384, 'fi', 'name', 'Strategisen Tutkimuksen Neuvosto'),
(119983, 97384, 'sv', 'name', 'RƄdet fƶr Strategisk Forskning'),
(119984, 97385, 'en', 'name', 'State University of Economics and Technology'),
(119985, 97385, 'uk', 'name', 'Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ економіки і технологій'),
(119986, 97386, 'en', 'name', 'State Key Laboratory of Construction Machinery Key Technology'),
(119987, 97386, 'zh', 'name', 'å»ŗč®¾ęœŗę¢°å…³é”®ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(119988, 97387, 'en', 'name', 'Stanford Synchrotron Radiation Lightsource'),
(119989, 97388, 'en', 'name', 'Particle Physics and Astronomy Research Council'),
(119990, 97389, 'en', 'name', 'South Carolina Spinal Cord Injury Association'),
(119991, 97390, 'en', 'name', 'Institute of Medicinal Chemistry'),
(119992, 97390, 'es', 'name', 'Instituto de Quƭmica MƩdica'),
(119993, 97391, 'en', 'name', 'California Department of Forestry and Fire Protection'),
(119994, 97392, 'no_lang_code', 'name', 'Amsterdam Scientific Instruments (Netherlands)'),
(119995, 97393, 'no_lang_code', 'name', 'Triad Interactive (United States)'),
(119996, 97394, 'en', 'name', 'Andalusian Institute of Agricultural and Fisheries Research and Training'),
(119997, 97394, 'es', 'name', 'Instituto Andaluz de Investigación y Formación Agraria, Pesquera, Alimentaria y de la Producción Ecológica'),
(119998, 97395, 'en', 'name', 'metaBUS'),
(119999, 97396, 'fr', 'name', 'Institut de tourisme et d''hƓtellerie du QuƩbec'),
(120000, 97397, 'en', 'name', 'Civil Guard'),
(120001, 97397, 'es', 'name', 'Guardia Civil'),
(120002, 97398, 'en', 'name', 'Idaho Water Science Center'),
(120003, 97399, 'en', 'name', 'Utah State University Space Dynamics Laboratory'),
(120004, 97400, 'fr', 'name', 'Conseil dƩpartemental de la Dordogne'),
(120005, 97401, 'en', 'name', 'The Royal Conservatory of Madrid'),
(120006, 97401, 'es', 'name', 'Real Conservatorio Superior de MĆŗsica de Madrid'),
(120007, 97402, 'en', 'name', 'Multimedia Nusantara Polytechnic'),
(120008, 97403, 'fr', 'name', 'Pathologies Pulmonaires et PlasticitƩ Cellulaire'),
(120009, 97404, 'en', 'name', 'Department of Employment and Workplace Relations'),
(120010, 97405, 'en', 'name', 'National Safe Securities Agency'),
(120011, 97405, 'fr', 'name', 'Agence Nationale des Titres SƩcurisƩs'),
(120012, 97406, 'en', 'name', 'Centre for Automation and Robotics'),
(120013, 97406, 'es', 'name', 'Centro de Automatización y Robótica'),
(120014, 97407, 'en', 'name', 'National Transportation Center'),
(120015, 97408, 'no_lang_code', 'name', 'McDonnel Douglas (United States)'),
(120016, 97409, 'en', 'name', 'Saints Cyril and Methodius University of Skopje'),
(120017, 97409, 'mk', 'name', 'Универзитет Дв. ŠšŠøŃ€ŠøŠ» Šø ŠœŠµŃ‚Š¾Š“ŠøŃ˜'),
(120018, 97409, 'sq', 'name', 'Universiteti Kiril dhe Metodij'),
(120019, 97409, 'sr', 'name', 'Универзитет у Š”ŠŗŠ¾ŠæŃ™Ńƒ'),
(120020, 97410, 'en', 'name', 'KMAN Research Institute'),
(120021, 97411, 'es', 'name', 'Fundación Biofísica Bizkaia'),
(120022, 97411, 'eu', 'name', 'Biofisika Bizkaia Fundazioa'),
(120023, 97412, 'en', 'name', 'Johns Hopkins University School of Advanced International Studies'),
(120024, 97413, 'en', 'name', 'African Union Development Agency-New Partnership for Africa''s Development'),
(120025, 97414, 'en', 'name', 'The State Institution «Public Health Center of the Ministry of Health of Ukraine»'),
(120026, 97414, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° «Центр Š³Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ¾Š³Š¾ Š·Š“Š¾Ń€Š¾Š²ā€™Ń ŠœŃ–Š½Ń–ŃŃ‚ŠµŃ€ŃŃ‚Š²Š° охорони Š·Š“Š¾Ń€Š¾Š²ā€™Ń України»'),
(120027, 97415, 'en', 'name', 'Institute of Science and Technology'),
(120028, 97415, 'ne', 'name', 'ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø तऄा ą¤Ŗą„ą¤°ą¤µą¤æą¤§ą¤æ ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(120029, 97416, 'es', 'name', 'Escuela de Estudios Hispano-Americanos'),
(120030, 97417, 'en', 'name', 'Sanitas Conde Duque Medical Centre'),
(120031, 97417, 'es', 'name', 'Centro MƩdico Sanitas Conde Duque'),
(120032, 97418, 'en', 'name', 'St. Joseph Medical Center in Tacoma'),
(120033, 97419, 'en', 'name', 'State Key Laboratory of Cell Stress Biology'),
(120034, 97419, 'zh', 'name', 'ē»†čƒžåŗ”ęæ€ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120035, 97420, 'id', 'name', 'IAIN Syekh Nurjati Cirebon'),
(120036, 97421, 'pt', 'name', 'Hospital UniversitƔrio de Brasƭlia'),
(120037, 97422, 'en', 'name', 'Thonburi University'),
(120038, 97423, 'en', 'name', 'Solar Technologies go Hybrid'),
(120039, 97424, 'en', 'name', 'Lakeland Health'),
(120040, 97425, 'no_lang_code', 'name', 'iPronics Programmable Photonics (Spain)'),
(120041, 97426, 'ar', 'name', 'ŲÆŲ§Ų¦Ų±Ų© Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… ŁˆŲ§Ł„Ł…Ų¹Ų±ŁŲ©'),
(120042, 97426, 'en', 'name', 'Abu Dhabi Department of Education and Knowledge'),
(120043, 97427, 'fi', 'name', 'Hengityssairauksien TutkimussƤƤtiƶ'),
(120044, 97428, 'fr', 'name', 'Ɖcole nationale de police du QuĆ©bec'),
(120045, 97429, 'fr', 'name', 'Centre FranƧois Baclesse'),
(120046, 97430, 'en', 'name', 'Institute of Archaeology of Merida'),
(120047, 97430, 'es', 'name', 'Instituto de Arqueologƭa-MƩrida'),
(120048, 97431, 'en', 'name', 'State Key Laboratory of Space Weather'),
(120049, 97431, 'zh', 'name', 'ē©ŗé—“å¤©ę°”å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120050, 97432, 'no_lang_code', 'name', 'Limited Liability Company Kiev International Forensic Expert Institute Of Psychological Expertise And Researchs On Polygraph (Ukraine)'),
(120051, 97432, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ міжнароГний суГово-експертний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психологічної експертизи і Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ на поліграфі'),
(120052, 97433, 'es', 'name', 'AMETIC'),
(120053, 97434, 'en', 'name', 'State Key Laboratory of Supramolecular Structure and Materials'),
(120054, 97434, 'zh', 'name', 'č¶…åˆ†å­ē»“ęž„äøŽęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120055, 97435, 'en', 'name', 'University of BrasĆ­lia'),
(120056, 97435, 'pt', 'name', 'Universidade de BrasĆ­lia'),
(120057, 97436, 'en', 'name', 'United States Department of Transportation'),
(120058, 97437, 'en', 'name', 'National Institute of Genetics'),
(120059, 97437, 'ja', 'name', 'å›½ē«‹éŗä¼å­¦ē ”ē©¶ę‰€'),
(120060, 97438, 'en', 'name', 'Center for Research in Microelectronics and Nanotechnology'),
(120061, 97438, 'fr', 'name', 'Centre de Recherche en Microelectronique et Nanotechnologie'),
(120062, 97439, 'en', 'name', 'Department of Mathematical Sciences'),
(120063, 97440, 'es', 'name', 'Fundación Confemetal'),
(120064, 97441, 'en', 'name', 'CHI Franciscan Rehabilitation Hospital'),
(120065, 97442, 'pt', 'name', 'Escola Nacional de SaĆŗde PĆŗblica'),
(120066, 97443, 'en', 'name', 'North Carolina Department of Transportation'),
(120067, 97444, 'en', 'name', 'High Flux Isotope Reactor'),
(120068, 97445, 'en', 'name', 'State Key Laboratory of Advanced Design and Manufacturing of Automobile Body'),
(120069, 97445, 'zh', 'name', 'ę±½č½¦č½¦čŗ«å…ˆčæ›č®¾č®”åˆ¶é€ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120070, 97446, 'en', 'name', 'American Military Academy'),
(120071, 97447, 'da', 'name', 'Torben og Alice Frimodts Fond'),
(120072, 97447, 'en', 'name', 'Torben and Alice Frimodts Foundation'),
(120073, 97448, 'en', 'name', 'HMU Potsdam – Health and Medical University Potsdam'),
(120074, 97449, 'fr', 'name', 'Dynamique du langage in situ'),
(120075, 97450, 'en', 'name', 'French Institute of Science and Technology for Transport, Spatial Planning, Development and Networks'),
(120076, 97450, 'fr', 'name', 'Institut FranƧais des Sciences et Technologies des Transports, de l''AmƩnagement et des RƩseaux'),
(120077, 97451, 'en', 'name', 'Texas Neurofibromatosis Foundation'),
(120078, 97452, 'en', 'name', 'Family Planning NSW'),
(120079, 97453, 'no_lang_code', 'name', 'Xiyuan Hospital'),
(120080, 97453, 'zh', 'name', 'äø­å›½äø­åŒ»ē§‘å­¦é™¢č„æč‹‘åŒ»é™¢'),
(120081, 97454, 'en', 'name', 'Government Polytechnic, Chhatrapati Sambhaji Nagar'),
(120082, 97454, 'mr', 'name', 'ą¤¶ą¤¾ą¤øą¤•ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤Øą¤æą¤•ą„‡ą¤¤ą¤Ø,ą¤›ą¤¤ą„ą¤°ą¤Ŗą¤¤ą„€ ą¤øą¤‚ą¤­ą¤¾ą¤œą„€ą¤Øą¤—ą¤°'),
(120083, 97455, 'no_lang_code', 'name', 'Salvat (Spain)'),
(120084, 97456, 'no_lang_code', 'name', 'Xuzhou Construction Machinery Group (China)'),
(120085, 97456, 'zh', 'name', '徐巄集团'),
(120086, 97457, 'en', 'name', 'CAB International'),
(120087, 97458, 'en', 'name', 'Office of Electricity'),
(120088, 97459, 'en', 'name', 'Lymphoma Research Foundation'),
(120089, 97460, 'en', 'name', 'Pernambuco Federal Institute'),
(120090, 97460, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Pernambuco'),
(120091, 97461, 'en', 'name', 'International Isocyanate Institute, Inc.'),
(120092, 97462, 'en', 'name', 'Norwegian Board of Technology'),
(120093, 97462, 'no', 'name', 'TeknologirƄdet'),
(120094, 97463, 'en', 'name', 'State Key Laboratory of Plant Physiology and Biochemistry'),
(120095, 97463, 'zh', 'name', 'ę¤ē‰©ē”Ÿē†å­¦äøŽē”Ÿē‰©åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120096, 97464, 'en', 'name', 'Max Planck Institute for Neurobiology of Behavior – caesar'),
(120097, 97465, 'es', 'name', 'Agencia de Innovación y Desarrollo de Andalucía IDEA, Agency of Innovation and Development of Andalusia IDEA'),
(120098, 97466, 'es', 'name', 'Asociación de Estudios Históricos de Tacna'),
(120099, 97467, 'ro', 'name', 'Institutul Naţional de Cercetare-Dezvoltare pentru Securitate Minieră şi Protecţie Antiexplozivă - INSEMEX'),
(120100, 97468, 'en', 'name', 'Geophysical Detection of Nuclear Proliferation'),
(120101, 97469, 'en', 'name', 'Shanghai Synchrotron Radiation Facility'),
(120102, 97469, 'zh', 'name', 'äøŠęµ·åŒę­„č¾å°„å…‰ęŗ'),
(120103, 97470, 'ca', 'name', 'Institut d''Investigacions BiomĆØdiques de Barcelona'),
(120104, 97470, 'es', 'name', 'Instituto de Investigaciones Biomedicas de Barcelona'),
(120105, 97471, 'de', 'name', 'Staatsbibliothek zu Berlin'),
(120106, 97471, 'en', 'name', 'Berlin State Library'),
(120107, 97472, 'en', 'name', 'Ministry of Development (Turkey)'),
(120108, 97472, 'tr', 'name', 'Kalkinma Bakanliği'),
(120109, 97473, 'en', 'name', 'Missouri Foundation for Health'),
(120110, 97474, 'en', 'name', 'Neuroendocrine, Endocrine and Germinal Differentiation Communication'),
(120111, 97475, 'en', 'name', 'State Key Laboratory of Coal Resources and Safe Mining'),
(120112, 97475, 'zh', 'name', 'ē…¤ē‚­čµ„ęŗäøŽå®‰å…Øå¼€é‡‡å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120113, 97476, 'en', 'name', 'Academy of Pharmaceutical Sciences'),
(120114, 97477, 'en', 'name', 'Swedish University of Agricultural Sciences'),
(120115, 97477, 'fi', 'name', 'Ruotsin maatalousyliopisto'),
(120116, 97477, 'sv', 'name', 'Sveriges lantbruksuniversitet'),
(120117, 97478, 'en', 'name', 'Office of Intelligence and Counterintelligence'),
(120118, 97479, 'en', 'name', 'State Key Laboratory of Pathogenic Biology of Livestock Diseases'),
(120119, 97479, 'zh', 'name', 'å®¶ē•œē–«ē—…ē—…åŽŸē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120120, 97480, 'es', 'name', 'SecretarĆ­a de la Defensa Nacional'),
(120121, 97481, 'en', 'name', 'State Key Laboratory of Nano-Fabrication and Micro-Fabrication'),
(120122, 97481, 'zh', 'name', 'å¾®ē»†åŠ å·„å…‰å­¦ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120123, 97482, 'en', 'name', 'Akhmet Baitursynuly Kostanay Regional University'),
(120124, 97482, 'kk', 'name', 'Ахмет Байтұрсынұлы атынГағы ŅšŠ¾ŃŃ‚Š°Š½Š°Š¹ өңірлік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(120125, 97482, 'ru', 'name', 'ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ахмет Байтұрсынұлы'),
(120126, 97483, 'fr', 'name', 'Institut SupƩrieur des Beaux Arts de BesanƧon'),
(120127, 97484, 'no_lang_code', 'name', 'Novartis Gene Therapies Switzerland GmbH'),
(120128, 97485, 'cs', 'name', 'AMBIS vysokÔ Ŕkola, a.s.'),
(120129, 97485, 'en', 'name', 'College of Regional Development and Banking Institute - AMBIS'),
(120130, 97486, 'fr', 'name', 'Centre intégré de santé et de services sociaux de Lanaudière'),
(120131, 97487, 'ca', 'name', 'Institut Català de Paleoecologia Humana i Evolució Social'),
(120132, 97487, 'en', 'name', 'Catalan Institute of Human Paleoecology and Social Evolution'),
(120133, 97488, 'pl', 'name', 'Samodzielny Publiczny Zakład Opieki Zdrowotnej RM-MEDITRANS Stacja Pogotowia Ratunkowego i Transportu Sanitarnego w Siedlcach'),
(120134, 97489, 'pt', 'name', 'Centro Latino-Americano de Estudos em Cultura'),
(120135, 97490, 'en', 'name', 'Pershing Square Sohn Cancer Research Alliance'),
(120136, 97491, 'en', 'name', 'Lesya Ukrainka Volyn National University'),
(120137, 97491, 'ru', 'name', 'Волынский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Леси Украинки'),
(120138, 97491, 'uk', 'name', 'Š’Š¾Š»ŠøŠ½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Лесі Українки'),
(120139, 97492, 'en', 'name', 'Fundación ONCE for Cooperation and Social Inclusion of Persons with Disabilities'),
(120140, 97492, 'es', 'name', 'Fundación ONCE'),
(120141, 97493, 'fr', 'name', 'Groupe de recherche clinique en anesthƩsie rƩanimation mƩdecine pƩriopƩratoire'),
(120142, 97494, 'es', 'name', 'Universidad Tecnológica de Jalisco'),
(120143, 97495, 'en', 'name', 'Karaganda State Industrial University'),
(120144, 97495, 'ru', 'name', 'ŠšŠ°Ń€Š°Š³Š°Š½Š“ŠøŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(120145, 97496, 'no_lang_code', 'name', 'China Guodian Corporation (China)'),
(120146, 97496, 'zh', 'name', 'äø­å›½å›½ē”µé›†å›¢å…¬åø'),
(120147, 97497, 'en', 'name', 'Institute for Bioscience and Biotechnology Research'),
(120148, 97498, 'en', 'name', 'Federal Government of Nigeria'),
(120149, 97499, 'de', 'name', 'Ministerium für Umwelt, Landwirtschaft und Energie des Landes Sachsen-Anhalt'),
(120150, 97500, 'fr', 'name', 'Neuropsychologie Cognitive et Physiopathologie de la SchizophrƩnie'),
(120151, 97501, 'en', 'name', 'State Key Laboratory of Visual and Auditory Information Processing'),
(120152, 97501, 'zh', 'name', 'č§†č§‰äøŽå¬č§‰äæ”ęÆå¤„ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120153, 97502, 'es', 'name', 'Escuela Superior PolitƩcnica del Chimborazo'),
(120154, 97503, 'en', 'name', 'Sorbonne Centre for Linguistics'),
(120155, 97503, 'fr', 'name', 'Centre de linguistique en Sorbonne'),
(120156, 97504, 'en', 'name', 'NIHR Collaboration for Leadership in Applied Health Research and Care Yorkshire and Humber'),
(120157, 97505, 'es', 'name', 'Instituto Municipal de Gestión Medioambiental'),
(120158, 97506, 'en', 'name', 'Indonesian Center for Agricultural Mechanization Standard Testing'),
(120159, 97506, 'id', 'name', 'Balai Besar Pengujian Standar Instrumen Mekanisasi Pertanian'),
(120160, 97507, 'ca', 'name', 'AgĆØncia de Salut PĆŗblica de Catalunya'),
(120161, 97507, 'en', 'name', 'Public Health Agency of Catalonia'),
(120162, 97507, 'es', 'name', 'Agencia de Salud Pública de Cataluña'),
(120163, 97508, 'en', 'name', 'State Key Laboratory of Nuclear Detection and Nuclear Electronics'),
(120164, 97508, 'zh', 'name', 'ę øęŽ¢ęµ‹äøŽę øē”µå­å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120165, 97509, 'en', 'name', 'SUNY Brockport'),
(120166, 97510, 'en', 'name', 'National University Institute Jean-Francois Champollion'),
(120167, 97510, 'fr', 'name', 'Centre Universitaire Jean-FranƧois-Champollion'),
(120168, 97511, 'ja', 'name', 'ćƒˆćƒØć‚æć‚°ćƒ«ćƒ¼ćƒ—'),
(120169, 97511, 'no_lang_code', 'name', 'Toyota Group (Japan)'),
(120170, 97512, 'en', 'name', 'Science and Decisions Center'),
(120171, 97513, 'en', 'name', 'Albany Medical Center Hospital, Albany Medical College'),
(120172, 97514, 'en', 'name', 'State Key Laboratory of Molecular Biology'),
(120173, 97514, 'zh', 'name', 'åˆ†å­ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120174, 97515, 'en', 'name', 'Department of Agriculture, Water and the Environment'),
(120175, 97516, 'fr', 'name', 'Laboratoire d''innovation molƩculaire et applications'),
(120176, 97517, 'en', 'name', 'Amputee Coalition of America'),
(120177, 97518, 'ca', 'name', 'Universitat de Santiago de Compostela'),
(120178, 97518, 'en', 'name', 'University of Santiago de Compostela'),
(120179, 97518, 'es', 'name', 'Universidad de Santiago de Compostela, Universidade de Santiago de Compostela'),
(120180, 97518, 'eu', 'name', 'Santiago de Compostelako Unibertsitatea'),
(120181, 97519, 'en', 'name', 'AIDIMA Technology Institute'),
(120182, 97519, 'es', 'name', 'AIDIMA - Instituto Tecnológico del Mueble'),
(120183, 97520, 'de', 'name', 'Max-Planck-Institut für Dynamik Komplexer Technischer Systeme'),
(120184, 97520, 'en', 'name', 'Max Planck Institute for Dynamics of Complex Technical Systems'),
(120185, 97521, 'en', 'name', 'Mike and Josie Harper Cancer Research Institute'),
(120186, 97522, 'en', 'name', 'University of the National Education Commission, Krakow'),
(120187, 97522, 'pl', 'name', 'Uniwersytet Komisji Edukacji Narodowej w Krakowie'),
(120188, 97523, 'en', 'name', 'Andrology Gerontechnology Inflammation Modelisation'),
(120189, 97524, 'en', 'name', 'Open Library Foundation'),
(120190, 97525, 'en', 'name', 'State of California'),
(120191, 97526, 'en', 'name', 'People''s Hospital of Wangcheng District Changsha'),
(120192, 97526, 'zh', 'name', 'é•æę²™åø‚ęœ›åŸŽåŒŗäŗŗę°‘åŒ»é™¢'),
(120193, 97527, 'es', 'name', 'Universidad Estatal de Estudios Pedagógicos'),
(120194, 97528, 'en', 'name', 'Institute of Geology and Geophysics'),
(120195, 97528, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åœ°č“ØäøŽåœ°ēƒē‰©ē†ē ”ē©¶ę‰€'),
(120196, 97529, 'en', 'name', 'Portuguese Council for Health and Environment'),
(120197, 97529, 'es', 'name', 'Consejo PortuguƩs de Salud y Medio Ambiente'),
(120198, 97529, 'pt', 'name', 'Conselho PortuguĆŖs para a SaĆŗde e Ambiente'),
(120199, 97530, 'en', 'name', 'United States Virgin Islands Department of Health'),
(120200, 97531, 'en', 'name', 'Lobular Breast Cancer Alliance'),
(120201, 97532, 'en', 'name', 'Laboratory of Theoretical Physics'),
(120202, 97532, 'fr', 'name', 'Laboratoire de Physique ThĆ©orique d’Orsay'),
(120203, 97533, 'en', 'name', 'International Society of Hypertension'),
(120204, 97534, 'en', 'name', 'British Oceanographic Data Centre'),
(120205, 97535, 'en', 'name', 'State Key Laboratory of Virus Genetic Engineering'),
(120206, 97535, 'zh', 'name', 'ē—…ęÆ’åŸŗå› å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120207, 97536, 'en', 'name', 'Bilbao Council'),
(120208, 97536, 'es', 'name', 'Ayuntamiento de Bilbao'),
(120209, 97536, 'eu', 'name', 'Bilboko Udala'),
(120210, 97537, 'en', 'name', 'Royal Hobart Hospital'),
(120211, 97538, 'en', 'name', 'Nickan Research Institute'),
(120212, 97539, 'fr', 'name', 'Fonds National de la Recherche et de L''Innovation pour le DƩveloppement'),
(120213, 97540, 'en', 'name', 'Adult Congenital Heart Association'),
(120214, 97541, 'en', 'name', 'Tisch Cancer Institute'),
(120215, 97542, 'fr', 'name', 'Astrophysique Relativiste, ThƩories, ExpƩriences, MƩtrologie, Instrumentation, Signaux'),
(120216, 97543, 'cs', 'name', 'Alzheimer Nadačnƭ Fond');
INSERT INTO `ror_settings` VALUES
(120217, 97543, 'en', 'name', 'Czech Alzheimer''s Foundation'),
(120218, 97544, 'en', 'name', 'State Key Laboratory of Advanced Materials for Smart Sensing'),
(120219, 97544, 'zh', 'name', 'ę™ŗčƒ½ä¼ ę„ŸåŠŸčƒ½ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120220, 97545, 'en', 'name', 'The Royal Swedish Academy of War Sciences'),
(120221, 97545, 'sv', 'name', 'Kungliga Krigsvetenskapsakademien'),
(120222, 97546, 'da', 'name', 'Det Kongelige Akademi'),
(120223, 97546, 'en', 'name', 'Royal Danish Academy – Architecture, Design, Conservation'),
(120224, 97547, 'en', 'name', 'OASIS International Hospital'),
(120225, 97547, 'zh', 'name', 'åŒ—äŗ¬ę˜Žå¾·åŒ»é™¢'),
(120226, 97548, 'cs', 'name', 'Výzkumný a zkuŔební letecký ústav, a. s.'),
(120227, 97548, 'en', 'name', 'Czech Aerospace Research Centre'),
(120228, 97549, 'id', 'name', 'Universitas Borneo Tarakan'),
(120229, 97550, 'en', 'name', 'State Enterprise ā€œDnipropetrovsk Regional State Research and Technical Center for Standardization, Metrology and Certificationā€'),
(120230, 97550, 'uk', 'name', 'Державне піГприємство Ā«Š”Š½Ń–ŠæŃ€Š¾ŠæŠµŃ‚Ń€Š¾Š²ŃŃŒŠŗŠøŠ¹ Ń€ŠµŠ³Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Гержавний науково-технічний центр станГартизації, метрології та сертифікації»'),
(120231, 97551, 'en', 'name', 'Laserlab Europe'),
(120232, 97552, 'en', 'name', 'Office of Integrated Waste Management'),
(120233, 97553, 'en', 'name', 'Bristol Royal Infirmary'),
(120234, 97554, 'en', 'name', 'Swinburne University of Technology'),
(120235, 97555, 'en', 'name', 'Ann''s Place'),
(120236, 97556, 'en', 'name', 'French Oceanographic Fleet'),
(120237, 97556, 'fr', 'name', 'Flotte OcƩanographique FranƧaise'),
(120238, 97557, 'en', 'name', 'The Emerald Foundation'),
(120239, 97558, 'en', 'name', 'Federal University of AmapĆ”'),
(120240, 97558, 'pt', 'name', 'Universidade Federal do AmapĆ”'),
(120241, 97559, 'en', 'name', 'Systematics, Adaptation, Evolution'),
(120242, 97559, 'fr', 'name', 'SystƩmatique, adaptation, Ʃvolution'),
(120243, 97560, 'en', 'name', 'American Research Institute of the South Caucasus'),
(120244, 97561, 'es', 'name', 'Instituto de FilosofĆ­a'),
(120245, 97562, 'en', 'name', 'Center for Integrated Nanotechnologies'),
(120246, 97563, 'fr', 'name', 'CƩgep Saint-Jean-sur-Richelieu'),
(120247, 97564, 'en', 'name', 'State Key Laboratory of Metal Matrix Composites'),
(120248, 97564, 'zh', 'name', 'é‡‘å±žåŸŗå¤åˆęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120249, 97565, 'en', 'name', 'Institute of Biomedicine of Seville'),
(120250, 97565, 'es', 'name', 'Instituto de Biomedicina de Sevilla'),
(120251, 97566, 'en', 'name', 'Presidency University'),
(120252, 97567, 'en', 'name', 'Institute for Environmental Futures'),
(120253, 97568, 'en', 'name', 'Council for Agricultural Research and Economics'),
(120254, 97568, 'it', 'name', 'Consiglio per la ricerca in agricoltura e l’analisi dell’economia agraria'),
(120255, 97569, 'en', 'name', 'Institute of Materials Structure Science'),
(120256, 97569, 'ja', 'name', '物質構造科学研究所'),
(120257, 97570, 'es', 'name', 'Centro Universitario Allende'),
(120258, 97571, 'fr', 'name', 'Centre Interdisciplinaire de Recherche Normand en Education et Formation'),
(120259, 97572, 'en', 'name', 'Umbria Region'),
(120260, 97572, 'it', 'name', 'Regione Umbria'),
(120261, 97573, 'fr', 'name', 'Conseil dƩpartemental de l''Essonne'),
(120262, 97574, 'en', 'name', 'European Research Center for Information Systems'),
(120263, 97575, 'en', 'name', 'Swiss UMEF'),
(120264, 97576, 'fr', 'name', 'Institut de Recherches en Didactiques et Ɖducation de l’UNamur'),
(120265, 97577, 'en', 'name', 'Indian Institute of Science Education and Research, Tirupati'),
(120266, 97578, 'fr', 'name', 'UniversitƩ MƩditerranƩenne Libre de Tunis'),
(120267, 97579, 'en', 'name', 'State Key Laboratory of Co-mining of Coal and Coal-Bed Methane'),
(120268, 97579, 'zh', 'name', 'ē…¤äøŽē…¤å±‚ę°”å…±é‡‡å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120269, 97580, 'ca', 'name', 'Fundació Jesuïtes Educació'),
(120270, 97580, 'en', 'name', 'Jesuit Education Foundation'),
(120271, 97580, 'es', 'name', 'Fundación de Educación Jesuíta'),
(120272, 97581, 'ca', 'name', 'Reial AcadĆØmia de CiĆØncies i Arts de Barcelona'),
(120273, 97581, 'en', 'name', 'Royal Academy of Arts and Sciences of Barcelona'),
(120274, 97581, 'es', 'name', 'Real Academia de Ciencias y Artes de Barcelona'),
(120275, 97582, 'no_lang_code', 'name', 'Dow Chemical (United States)'),
(120276, 97583, 'en', 'name', 'SASTRA University'),
(120277, 97583, 'ta', 'name', 'ą®šą®£ąÆą®®ąÆą®•ą®¾ ą®•ą®²ąÆˆ, ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ, ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®®ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ அகாதமி'),
(120278, 97584, 'en', 'name', 'Association for Research and Industrial Development of Natural Resources'),
(120279, 97585, 'en', 'name', 'The Greater Harlem Chamber of Commerce'),
(120280, 97586, 'en', 'name', 'State Key Laboratory of Multiphase Complex Systems'),
(120281, 97586, 'zh', 'name', 'å¤šē›øå¤ę‚ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120282, 97587, 'en', 'name', 'State Key Laboratory of Medicinal Chemical Biology'),
(120283, 97587, 'zh', 'name', 'čÆē‰©åŒ–å­¦ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120284, 97588, 'fr', 'name', 'La FƩmis'),
(120285, 97589, 'en', 'name', 'State University of New York at Potsdam'),
(120286, 97590, 'en', 'name', 'Robotiker'),
(120287, 97591, 'en', 'name', 'Mitsui Sumitomo Insurance Welfare Foundation'),
(120288, 97592, 'fr', 'name', 'Laboratoire MatiĆØre et SystĆØmes Complexes'),
(120289, 97593, 'no_lang_code', 'name', 'LIDSEN Publishing Inc. (United States)'),
(120290, 97594, 'en', 'name', 'Harry Diamond Laboratories'),
(120291, 97595, 'en', 'name', 'BT Research'),
(120292, 97596, 'pt', 'name', 'Casa de Hiram'),
(120293, 97597, 'pt', 'name', 'Academia Itapecuruense de CiĆŖncias, Letras e Artes'),
(120294, 97598, 'fr', 'name', 'UniversitƩ numƩrique Cheikh Hamidou KANE'),
(120295, 97599, 'en', 'name', 'The Liverpool Blue Coat School'),
(120296, 97600, 'no_lang_code', 'name', 'Eli Lilly (Spain)'),
(120297, 97601, 'en', 'name', 'Kazakh National Agrarian Research University'),
(120298, 97601, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› ұлттық аграрлық Š·ŠµŃ€Ń‚Ń‚ŠµŃƒ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(120299, 97601, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ аграрный ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(120300, 97602, 'en', 'name', 'John Wesley Powell Center for Analysis and Synthesis'),
(120301, 97603, 'fr', 'name', 'Centre d''Ʃtudes sur la sƩcuritƩ internationale et les coopƩrations europƩennes'),
(120302, 97604, 'en', 'name', 'Institute of Software'),
(120303, 97604, 'zh', 'name', '中国科学院软件研究所'),
(120304, 97605, 'ar', 'name', 'مستؓفى محافظة انقرة'),
(120305, 97605, 'en', 'name', 'Ankara Bilkent City Hospital'),
(120306, 97605, 'ru', 'name', 'ŠŠ½ŠŗŠ°Ń€ŃŠŗŠ°Ń Š“Š¾Ń€Š¾Š“ŃŠŗŠ°Ń Š‘Š¾Š»ŃŒŠ½ŠøŃ†Š°'),
(120307, 97605, 'tr', 'name', 'Ankara Bilkent Şehir Hastanesi'),
(120308, 97606, 'en', 'name', 'Society for Education, Music and Psychology Research'),
(120309, 97607, 'no_lang_code', 'name', 'CRRC (China)'),
(120310, 97607, 'zh', 'name', 'äø­å›½äø­č½¦č‚”ä»½ęœ‰é™å…¬åø'),
(120311, 97608, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في ŲØŲŗŲÆŲ§ŲÆ'),
(120312, 97608, 'en', 'name', 'American University of Iraq Baghdad'),
(120313, 97609, 'en', 'name', 'Solar Energy Technologies Office'),
(120314, 97610, 'en', 'name', 'United States Department of Health and Human Services'),
(120315, 97611, 'en', 'name', 'Massachusetts Life Sciences Center'),
(120316, 97612, 'en', 'name', 'Italian Institute for Auxology'),
(120317, 97612, 'it', 'name', 'IRCCS Istituto Auxologico Italiano'),
(120318, 97613, 'en', 'name', 'Cancer Research UK Manchester Centre'),
(120319, 97614, 'en', 'name', 'Neurological Institute of Thailand'),
(120320, 97614, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ąø›ąø£ąø°ąøŖąø²ąø—ąø§ąø“ąø—ąø¢ąø²'),
(120321, 97615, 'en', 'name', 'Continuous Electron Beam Accelerator Facility'),
(120322, 97616, 'es', 'name', 'Instituto de Investigaciones Económicas y Sociales del Sur'),
(120323, 97617, 'en', 'name', 'Centre for Sustainable Architecture with Wood'),
(120324, 97618, 'en', 'name', 'Petru Poni Institute of Macromolecular Chemistry'),
(120325, 97618, 'ro', 'name', 'Institutul de Chimie Macromoleculară Petru Poni'),
(120326, 97619, 'en', 'name', 'Namur Digital Institute'),
(120327, 97620, 'en', 'name', 'National Renewable Energy Centre'),
(120328, 97620, 'es', 'name', 'Centro Nacional de EnergĆ­as Renovables'),
(120329, 97621, 'da', 'name', 'GrĆønlands Naturinstitut, Pinngortitaleriffik'),
(120330, 97621, 'en', 'name', 'Greenland Institute of Natural Resources'),
(120331, 97622, 'es', 'name', 'All World Certificación'),
(120332, 97623, 'de', 'name', 'Promedica Stiftung'),
(120333, 97623, 'en', 'name', 'Promedica Foundation'),
(120334, 97624, 'en', 'name', 'Great Lakes Water Authority'),
(120335, 97625, 'en', 'name', 'Spanish Federation for Rare Diseases'),
(120336, 97625, 'es', 'name', 'Federación Española de Enfermedades Raras'),
(120337, 97626, 'en', 'name', 'Federal University of Rio de Janeiro'),
(120338, 97626, 'pt', 'name', 'Universidade Federal do Rio de Janeiro'),
(120339, 97627, 'id', 'name', 'Universitas DIPA Makassar'),
(120340, 97628, 'en', 'name', 'Kyoto University Institute for Chemical Research'),
(120341, 97628, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦åŒ–å­¦ē ”ē©¶ę‰€'),
(120342, 97629, 'en', 'name', 'Humanities in the European Research Area'),
(120343, 97630, 'en', 'name', 'University of the Virgin Islands'),
(120344, 97631, 'en', 'name', 'Chinese Academy of Meteorological Sciences'),
(120345, 97631, 'zh', 'name', '中国气豔科学研究院'),
(120346, 97632, 'fr', 'name', 'Centre d''ImmunophƩnomique'),
(120347, 97633, 'en', 'name', 'Cancer Resource Center of the Finger Lakes'),
(120348, 97634, 'no_lang_code', 'name', 'NG Biotech (France)'),
(120349, 97635, 'pt', 'name', 'FCiências.ID - Associação para a Investigação e Desenvolvimento de Ciências'),
(120350, 97636, 'en', 'name', 'Ecopath International Initiative'),
(120351, 97637, 'en', 'name', 'Harbin Veterinary Research Institute'),
(120352, 97637, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢å“ˆå°”ę»Øå…½åŒ»ē ”ē©¶ę‰€'),
(120353, 97638, 'fr', 'name', 'Physiopathologie, autoimmunitƩ, maladies neuromusculaire et thƩrapie rƩgƩnƩratrice'),
(120354, 97639, 'fr', 'name', 'Centre d''Ʃtudes sur la mondialisation, les conflits, les territoires et les vulnƩrabilitƩs'),
(120355, 97640, 'en', 'name', 'Georgia Clinical and Translational Science Alliance'),
(120356, 97641, 'en', 'name', 'Indira Gandhi Institute of Development Research'),
(120357, 97642, 'en', 'name', 'Rawalpindi Women University'),
(120358, 97643, 'fr', 'name', 'UniversitƩ de Ouahigouya'),
(120359, 97644, 'de', 'name', 'Klinikum Bayreuth'),
(120360, 97644, 'en', 'name', 'Bayreuth Medical Center'),
(120361, 97645, 'fr', 'name', 'Institut Caennais de Recherche Juridique'),
(120362, 97646, 'no_lang_code', 'name', 'AstraZeneca (Switzerland)'),
(120363, 97647, 'en', 'name', 'Saskatoon Research and Development Centre'),
(120364, 97647, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Saskatoon'),
(120365, 97648, 'en', 'name', 'Royal Marsden Hospital'),
(120366, 97649, 'en', 'name', 'Federal University of Alfenas'),
(120367, 97649, 'pt', 'name', 'Universidade Federal de Alfenas'),
(120368, 97650, 'de', 'name', 'Exzellenzcluster für Pflanzenwissenschaften'),
(120369, 97650, 'en', 'name', 'Cluster of Excellence on Plant Sciences'),
(120370, 97651, 'en', 'name', 'University of Nordland'),
(120371, 97652, 'en', 'name', 'Institute of Gastroenterology of the National Academy of Medical Sciences of Ukraine'),
(120372, 97652, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гастроентерології ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії меГичних наук України'),
(120373, 97653, 'pt', 'name', 'Hospital SĆ£o Lucas da PUCRS'),
(120374, 97654, 'nl', 'name', 'Rijkswaterstaat'),
(120375, 97655, 'en', 'name', 'Guangzhou Institute of Geochemistry'),
(120376, 97655, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¹æå·žåœ°ēƒåŒ–å­¦ē ”ē©¶ę‰€'),
(120377, 97656, 'en', 'name', 'Bentham-Moxon Trust'),
(120378, 97657, 'en', 'name', 'Extremadura Agricultural and Food Technological Centre'),
(120379, 97657, 'es', 'name', 'Centro Tecnológico Agroalimentario de Extremadura'),
(120380, 97658, 'es', 'name', 'El Colegio de Morelos'),
(120381, 97659, 'en', 'name', 'National Ignition Facility'),
(120382, 97660, 'en', 'name', 'San Damaso Ecclesiastical University'),
(120383, 97660, 'es', 'name', 'Universidad EclesiƔstica San DƔmaso'),
(120384, 97661, 'en', 'name', 'Office of Enterprise Assessments'),
(120385, 97662, 'en', 'name', 'Nova Scotia Health Authority'),
(120386, 97663, 'no_lang_code', 'name', 'Broadcom (United States)'),
(120387, 97664, 'en', 'name', 'National Geospatial Program'),
(120388, 97665, 'en', 'name', 'Office of High Energy Physics'),
(120389, 97666, 'en', 'name', 'Center for the Sociology of Organizations'),
(120390, 97666, 'fr', 'name', 'Centre de Sociologie des Organisations'),
(120391, 97667, 'en', 'name', 'Hope Center for Neurological Disorders'),
(120392, 97668, 'it', 'name', 'Ministero dei Beni e delle AttivitĆ  Culturali e del Turismo, Ministero della cultura'),
(120393, 97669, 'en', 'name', 'University of Lomza'),
(120394, 97669, 'pl', 'name', 'Akademia Łomżyńska'),
(120395, 97670, 'en', 'name', 'Office of State and Community Energy Programs'),
(120396, 97671, 'en', 'name', 'Charles Harwood Memorial Hospital'),
(120397, 97672, 'en', 'name', 'Center for Functional Nanomaterials'),
(120398, 97673, 'en', 'name', 'State Key Laboratory of Quantum Optics and Quantum Optics Devices'),
(120399, 97673, 'zh', 'name', 'é‡å­å…‰å­¦äøŽå…‰é‡å­å™Øä»¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120400, 97674, 'en', 'name', 'Georgetown Lombardi Comprehensive Cancer Center'),
(120401, 97675, 'en', 'name', 'Chinese Academy of Forestry'),
(120402, 97675, 'zh', 'name', 'äø­å›½ęž—äøšē§‘å­¦ē ”ē©¶é™¢'),
(120403, 97676, 'es', 'name', 'Universidad Tecnológica de La Paz'),
(120404, 97677, 'es', 'name', 'Instituto Sindical de Trabajo Ambiente y Salud'),
(120405, 97678, 'en', 'name', 'UAB Medicine'),
(120406, 97679, 'en', 'name', 'Office of Emergency Operations'),
(120407, 97680, 'en', 'name', 'Mayo Clinic Hospital'),
(120408, 97681, 'en', 'name', 'Metabolism and Renal Physiology'),
(120409, 97681, 'fr', 'name', 'MƩtabolisme et Physiologie RƩnale'),
(120410, 97682, 'en', 'name', 'Institute of Rock and Soil Mechanics'),
(120411, 97682, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę­¦ę±‰å²©åœŸåŠ›å­¦ē ”ē©¶ę‰€'),
(120412, 97683, 'en', 'name', 'Federal University of Mato Grosso do Sul'),
(120413, 97683, 'pt', 'name', 'Universidade Federal de Mato Grosso do Sul'),
(120414, 97684, 'es', 'name', 'Diputación Foral de Vizcaya'),
(120415, 97684, 'eu', 'name', 'Bizkaiko Foru Aldundia'),
(120416, 97685, 'en', 'name', 'Naval Research Laboratory Remote Sensing Division'),
(120417, 97686, 'ca', 'name', 'Fundacio Privada Universitat I Tecnologia'),
(120418, 97687, 'en', 'name', 'State Key Laboratory of Mechanical Manufacturing System Engineering'),
(120419, 97687, 'zh', 'name', 'ęœŗę¢°åˆ¶é€ ē³»ē»Ÿå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120420, 97688, 'en', 'name', 'White Rose College of the Arts and Humanities'),
(120421, 97689, 'no_lang_code', 'name', 'Orbital Sciences (United States)'),
(120422, 97690, 'en', 'name', 'Department of Agriculture and Water Resources'),
(120423, 97691, 'id', 'name', 'Universitas Hang Tuah Pekanbaru'),
(120424, 97692, 'en', 'name', 'European Institute of Innovation and Technology'),
(120425, 97692, 'hu', 'name', 'Európai InnovÔciós és Technológiai Intézet'),
(120426, 97693, 'pt', 'name', 'Ciências e Cognição'),
(120427, 97694, 'en', 'name', 'NERC Environmental Omics Facility'),
(120428, 97695, 'en', 'name', 'American Burn Association'),
(120429, 97696, 'fr', 'name', 'Laboratoire Angevin de Recherche en MathƩmatiques'),
(120430, 97697, 'cs', 'name', 'Ústecký kraj'),
(120431, 97697, 'en', 'name', 'Usti Region'),
(120432, 97698, 'en', 'name', 'Eastern Institute of Technology, Ningbo'),
(120433, 97698, 'zh', 'name', 'å®ę³¢äøœę–¹ē†å·„å¤§å­¦'),
(120434, 97699, 'ar', 'name', 'مجلس Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ'),
(120435, 97699, 'en', 'name', 'Council for Higher Education'),
(120436, 97699, 'he', 'name', 'המועצה להשכלה גבוהה'),
(120437, 97700, 'en', 'name', 'Europe Regional Chapter of the International Society of Exposure Science'),
(120438, 97701, 'en', 'name', 'ARS University'),
(120439, 97702, 'en', 'name', 'Motor Accident Insurance Commission'),
(120440, 97703, 'en', 'name', 'Vinzenz Pallotti University'),
(120441, 97704, 'ca', 'name', 'Museu Nacional d''Art de Catalunya'),
(120442, 97704, 'es', 'name', 'Museo Nacional de Arte de CataluƱa'),
(120443, 97705, 'en', 'name', 'ZOLL Medical Corporation'),
(120444, 97705, 'no_lang_code', 'name', 'ZOLL Medical Corporation (United States)'),
(120445, 97706, 'en', 'name', 'Agency for Science, Technology and Research'),
(120446, 97706, 'zh', 'name', 'ę–°åŠ å”ē§‘ęŠ€ē ”ē©¶å±€'),
(120447, 97707, 'es', 'name', 'Escuela Normal de Jilotepec'),
(120448, 97708, 'en', 'name', 'State Key Laboratory of Herbage Improvement and Grassland Agro-ecosystems'),
(120449, 97708, 'zh', 'name', 'č‰ē§åˆ›ę–°äøŽč‰åœ°å†œäøšē”Ÿę€ē³»ē»Ÿå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(120450, 97709, 'en', 'name', 'Hung Vuong University'),
(120451, 97709, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Hùng Vʰʔng'),
(120452, 97710, 'de', 'name', 'Ministerium für Landwirtschaft und Verbraucherschutz des Landes Nordrhein-Westfalen'),
(120453, 97711, 'en', 'name', 'School of Arabic Studies'),
(120454, 97711, 'es', 'name', 'Escuela de Estudios Ɓrabes'),
(120455, 97712, 'en', 'name', 'Purdue University Institute for Cancer Research'),
(120456, 97713, 'ca', 'name', 'Institució Catalana de Recerca i Estudis Avançats'),
(120457, 97713, 'en', 'name', 'Catalan Institution for Research and Advanced Studies'),
(120458, 97713, 'es', 'name', 'Institución Catalana de Investigación y Estudios Avanzados'),
(120459, 97714, 'az', 'name', 'Elmin Inkişafı Fondu'),
(120460, 97714, 'en', 'name', 'Science Development Foundation'),
(120461, 97715, 'en', 'name', 'Centre of Immunology and Microbial Infections'),
(120462, 97715, 'fr', 'name', 'Centre d''Immunologie et des Maladies Infectieuses'),
(120463, 97716, 'fa', 'name', 'دانؓگاه آیت الله Ų§Ł„Ų¹ŲøŁ…ŪŒ بروجردی'),
(120464, 97716, 'no_lang_code', 'name', 'Ayatollah Boroujerdi University'),
(120465, 97717, 'en', 'name', 'Office of Fossil Energy and Carbon Management'),
(120466, 97718, 'de', 'name', 'Nationales Forschungszentrum für angewandte Cybersicherheit ATHENE'),
(120467, 97718, 'en', 'name', 'National Research Center for Applied Cybersecurity ATHENE'),
(120468, 97719, 'en', 'name', 'Chinese Academy of Agricultural Mechanization Sciences'),
(120469, 97719, 'zh', 'name', 'äø­å›½å†œäøšęœŗę¢°åŒ–ē§‘å­¦ē ”ē©¶é™¢'),
(120470, 97720, 'pt', 'name', 'Hospital UniversitƔrio AntƓnio Pedro'),
(120471, 97721, 'en', 'name', 'CCT College Dublin'),
(120472, 97722, 'en', 'name', 'State Key Laboratory of Water Resources and Hydropower Engineering Science'),
(120473, 97722, 'zh', 'name', 'ę°“čµ„ęŗäøŽę°“ē”µå·„ēØ‹ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120474, 97723, 'en', 'name', 'United Nations Children''s Fund Ecuador'),
(120475, 97724, 'en', 'name', 'AGE-WELL'),
(120476, 97725, 'fr', 'name', 'PatriNat'),
(120477, 97726, 'en', 'name', 'Metropolitan University'),
(120478, 97726, 'es', 'name', 'Universidad Metropolitana'),
(120479, 97727, 'en', 'name', 'Hospital General Universitario Reina SofĆ­a'),
(120480, 97727, 'es', 'name', 'Hospital Reina SofĆ­a de Murcia'),
(120481, 97728, 'en', 'name', 'The First Affiliated Hospital, Sun Yat-sen University'),
(120482, 97728, 'zh', 'name', 'äø­å±±å¤§å­¦é™„å±žē¬¬äø€åŒ»é™¢'),
(120483, 97729, 'en', 'name', 'National Institute of Science and Technology of the Cryosphere'),
(120484, 97729, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia da Criosfera'),
(120485, 97730, 'fr', 'name', 'Ɖtude et Ɖdition de Textes MĆ©diĆ©vaux'),
(120486, 97731, 'en', 'name', 'Aeronautical Research Laboratory in Active Control, Avionics and Aeroservoelasticity'),
(120487, 97731, 'fr', 'name', 'Laboratoire de recherche en commande active, avionique et aƩroservoƩlasticitƩ'),
(120488, 97732, 'no_lang_code', 'name', 'Alpenglow Instruments (United States)'),
(120489, 97733, 'de', 'name', 'Cusanus Institut'),
(120490, 97733, 'en', 'name', 'Cusanus Institute'),
(120491, 97734, 'es', 'name', 'Departamento Universitario Obrero Campesino'),
(120492, 97735, 'no_lang_code', 'name', 'Genopole (France)'),
(120493, 97736, 'en', 'name', 'State Key Laboratory of Synthetical Automation for Process Industries'),
(120494, 97736, 'zh', 'name', 'ęµēØ‹å·„äøšē»¼åˆč‡ŖåŠØåŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120495, 97737, 'no_lang_code', 'name', 'Sabancı Holding (Turkey)'),
(120496, 97738, 'en', 'name', 'Tamil Nadu State Council for Higher Education'),
(120497, 97739, 'en', 'name', 'Institute of Chemical Technology'),
(120498, 97739, 'es', 'name', 'Instituto de TecnologĆ­a QuĆ­mica'),
(120499, 97740, 'en', 'name', 'Asia University'),
(120500, 97740, 'zh', 'name', 'äŗžę“²å¤§å­ø'),
(120501, 97741, 'fr', 'name', 'Institut de MathƩmatiques de Toulon'),
(120502, 97742, 'en', 'name', 'National Health Care Institute'),
(120503, 97742, 'nl', 'name', 'Zorginstituut Nederland'),
(120504, 97743, 'en', 'name', 'Namur Research Institute for Life Sciences'),
(120505, 97744, 'es', 'name', 'Instituto Nacional de Seguridad y Salud en el Trabajo'),
(120506, 97745, 'ca', 'name', 'Institut d''Investigació i Innovació Parc Taulí'),
(120507, 97745, 'en', 'name', 'Institute of Research and Innovation Parc Tauli'),
(120508, 97745, 'es', 'name', 'Instituto de Investigación e Innovación Parc Taulí'),
(120509, 97746, 'en', 'name', 'Trine University'),
(120510, 97747, 'en', 'name', 'Institute of Social and Preventive Medicine'),
(120511, 97748, 'en', 'name', 'Government of Spain'),
(120512, 97748, 'es', 'name', 'Gobierno de EspaƱa'),
(120513, 97749, 'en', 'name', 'Emory National Primate Research Center'),
(120514, 97750, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ؄دلب'),
(120515, 97750, 'en', 'name', 'Idlib University'),
(120516, 97751, 'en', 'name', 'Office of Small Business Innovation Research and Small Business Technology Transfer Programs'),
(120517, 97752, 'en', 'name', 'NSW Department of Climate Change, Energy, the Environment and Water'),
(120518, 97753, 'en', 'name', 'Department of Biological Sciences'),
(120519, 97754, 'no_lang_code', 'name', 'Dassault SystĆØmes (France)'),
(120520, 97755, 'en', 'name', 'Institute of Biophysics'),
(120521, 97755, 'hu', 'name', 'Biofizikai Intézet Szegedi Biológiai Kutatóközpont'),
(120522, 97756, 'es', 'name', 'Centro de AstrobiologĆ­a'),
(120523, 97757, 'en', 'name', 'Upper Midwest Environmental Sciences Center'),
(120524, 97758, 'de', 'name', 'Chemisches und VeterinƤruntersuchungsamt Freiburg'),
(120525, 97759, 'es', 'name', 'Consejería de Educación, Universidades, Ciencia y Portavocía'),
(120526, 97760, 'en', 'name', 'Geologic Hazards Science Center'),
(120527, 97761, 'no_lang_code', 'name', 'Research Space (United Kingdom)'),
(120528, 97762, 'en', 'name', 'University of Puerto Rico at Arecibo'),
(120529, 97762, 'es', 'name', 'Universidad de Puerto Rico en Arecibo'),
(120530, 97763, 'en', 'name', 'University of Belgrade - Faculty of Civil Engineering'),
(120531, 97764, 'en', 'name', 'Wildlife Conservation Society Vietnam'),
(120532, 97765, 'es', 'name', 'Centro de Ciencias Humanas y Sociales'),
(120533, 97766, 'no_lang_code', 'name', 'IQVIA (France)'),
(120534, 97767, 'en', 'name', 'Uruguayan Antarctic Institute'),
(120535, 97767, 'es', 'name', 'Instituto AntƔrtico Uruguayo'),
(120536, 97768, 'es', 'name', 'Hospital Universitario Doctor Peset'),
(120537, 97769, 'en', 'name', 'National metrology institute VTT MIKES'),
(120538, 97769, 'fi', 'name', 'Mittatekniikan keskus'),
(120539, 97770, 'en', 'name', 'Montana Fish, Wildlife & Parks'),
(120540, 97771, 'en', 'name', 'Office of Environmental Protection and ES&H Reporting'),
(120541, 97772, 'en', 'name', 'Summerland Research and Development Centre'),
(120542, 97772, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Summerland'),
(120543, 97773, 'en', 'name', 'The Federal Polytechnic, Ado-Ekiti'),
(120544, 97774, 'de', 'name', 'Deutscher Akademischer Austauschdienst'),
(120545, 97774, 'en', 'name', 'German Academic Exchange Service'),
(120546, 97775, 'es', 'name', 'Universidad Nacional Francisco Luis Espinoza Pineda'),
(120547, 97776, 'cs', 'name', 'Zlín Region, Zlínský kraj'),
(120548, 97777, 'en', 'name', 'Dakota Water Science Center'),
(120549, 97778, 'fr', 'name', 'MetaboHUB'),
(120550, 97779, 'en', 'name', 'Institute of Plant Biology'),
(120551, 97779, 'hu', 'name', 'Növénybiológiai Intézet Szegedi Biológiai Kutatóközpont Magyar TudomÔnyos Akadémia'),
(120552, 97780, 'cs', 'name', 'Knihovna ÚsteckĆ©ho kraje, příspěvkovĆ” organizace'),
(120553, 97780, 'en', 'name', 'Ústí Regional Library'),
(120554, 97781, 'en', 'name', 'Wrexham Maelor Hospital'),
(120555, 97782, 'en', 'name', 'Ada College of Education'),
(120556, 97783, 'en', 'name', 'Laboratory of Microbial Biodiversity and Biotechnology'),
(120557, 97783, 'fr', 'name', 'Laboratoire de BiodiversitƩ et Biotechnologies Microbiennes'),
(120558, 97784, 'en', 'name', 'Revive & Restore'),
(120559, 97785, 'en', 'name', 'Wallenberg Wood Science Center'),
(120560, 97786, 'es', 'name', 'Instituto Pirenaico de EcologĆ­a'),
(120561, 97787, 'en', 'name', 'Sustainable Agriculture Institute'),
(120562, 97787, 'es', 'name', 'Instituto de Agricultura Sostenible'),
(120563, 97788, 'en', 'name', 'Caribbean University'),
(120564, 97789, 'fr', 'name', 'Institut des Sciences et Technologies MolƩculaires d''Angers'),
(120565, 97790, 'en', 'name', 'State Key Laboratory of Tree Genetics and Breeding'),
(120566, 97790, 'zh', 'name', 'ęž—ęœØé—ä¼ č‚²ē§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120567, 97791, 'en', 'name', 'State Key Laboratory of Geomechanics and Geotechnical Engineering'),
(120568, 97791, 'zh', 'name', 'å²©åœŸåŠ›å­¦äøŽå·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120569, 97792, 'en', 'name', 'Department of Education'),
(120570, 97792, 'es', 'name', 'Departamento de Educación'),
(120571, 97792, 'eu', 'name', 'Hezkuntza Saila'),
(120572, 97793, 'en', 'name', 'State Key Laboratory of Industrial Control Technology'),
(120573, 97793, 'zh', 'name', 'å·„äøšęŽ§åˆ¶ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120574, 97794, 'ca', 'name', 'Ecoinstitut'),
(120575, 97795, 'en', 'name', 'Nebraska Water Science Center'),
(120576, 97796, 'no_lang_code', 'name', 'Orbital ATK (United States)'),
(120577, 97797, 'en', 'name', 'Mindanao State University - Tawi-Tawi College of Technology and Oceanography'),
(120578, 97798, 'en', 'name', 'Tokyo Ohka Foundation for The Promotion of Science and Technology'),
(120579, 97799, 'en', 'name', 'Utah Water Science Center'),
(120580, 97800, 'en', 'name', 'University of Eastern Philippines'),
(120581, 97801, 'en', 'name', 'Oceanographic Center of Gijón'),
(120582, 97801, 'es', 'name', 'Centro OceanogrÔfico de Gijón'),
(120583, 97802, 'fr', 'name', 'Sorbonne - IdentitĆ©s, Relations Internationales et Civilisations de l’Europe'),
(120584, 97803, 'no_lang_code', 'name', 'Raytheon Technologies (Singapore)'),
(120585, 97804, 'en', 'name', 'Fujian Academy of Environmental Sciences'),
(120586, 97804, 'zh', 'name', 'ē¦å»ŗēœēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(120587, 97805, 'ml', 'name', 'ą“…ą“®ąµƒą“¤ ą“µą“æą“¶ąµą“µą“µą“æą“¦ąµą“Æą“¾ą“Ŗąµ€ą“ ą“‚'),
(120588, 97805, 'no_lang_code', 'name', 'Amrita Vishwa Vidyapeetham'),
(120589, 97806, 'en', 'name', 'National Society for the Blind and Visually Impaired'),
(120590, 97806, 'nl', 'name', 'Landelijke Stichting voor Blinden en Slechtzienden'),
(120591, 97807, 'en', 'name', 'Beaumont Hospital, Royal Oak'),
(120592, 97808, 'en', 'name', 'State Key Laboratory of Engine and Powertrain System'),
(120593, 97808, 'zh', 'name', 'å†…ē‡ƒęœŗäøŽåŠØåŠ›ē³»ē»Ÿå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(120594, 97809, 'es', 'name', 'Navarrabiomed'),
(120595, 97810, 'es', 'name', 'Observatorio del Caribe Colombiano'),
(120596, 97811, 'en', 'name', 'Association of Medical Microbiology and Infectious Disease Canada'),
(120597, 97812, 'no_lang_code', 'name', 'InnaVirVax (France)'),
(120598, 97813, 'en', 'name', 'Odesa I. I. Mechnikov National University'),
(120599, 97813, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені І. І. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(120600, 97814, 'en', 'name', 'AboutScience'),
(120601, 97815, 'ca', 'name', 'Vall d''Hebron Hospital Universitari'),
(120602, 97816, 'en', 'name', 'National Research and Development Institute for Soil Science Agrochemistry and Environment'),
(120603, 97816, 'ro', 'name', 'Institutul National de Cercetare-Dezvoltare pentru Pedologie Agrochimie si Protectia Mediului'),
(120604, 97817, 'en', 'name', 'Maricopa Medical Center'),
(120605, 97818, 'en', 'name', 'National Pirogov Memorial Medical University, Vinnytsya'),
(120606, 97818, 'ru', 'name', 'Винницкий Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š.И. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(120607, 97818, 'uk', 'name', 'Š’Ń–Š½Š½ŠøŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ім. М.І. ŠŸŠøŃ€Š¾Š³Š¾Š²Š°'),
(120608, 97819, 'en', 'name', 'Federal Service for Surveillance on Consumer Rights Protection and Human Wellbeing'),
(120609, 97819, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š°Ń служба по Š½Š°Š“Š·Š¾Ń€Ńƒ в сфере защиты прав потребителей Šø Š±Š»Š°Š³Š¾ŠæŠ¾Š»ŃƒŃ‡ŠøŃ человека'),
(120610, 97820, 'en', 'name', 'State Key Laboratory of Complex System Management and Control'),
(120611, 97820, 'zh', 'name', 'å¤ę‚ē³»ē»Ÿē®”ē†äøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120612, 97821, 'en', 'name', 'St. John Bosco College of Education'),
(120613, 97822, 'en', 'name', 'Ollscoil na Gaillimhe – University of Galway'),
(120614, 97823, 'nl', 'name', 'Zuyderland Medisch Centrum'),
(120615, 97824, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Brasília'),
(120616, 97825, 'en', 'name', 'Helen DeVos Children''s Hospital'),
(120617, 97826, 'de', 'name', 'UniversitƤt Potsdam'),
(120618, 97826, 'en', 'name', 'University of Potsdam'),
(120619, 97827, 'en', 'name', 'DKMS Foundation'),
(120620, 97828, 'en', 'name', 'Evolution of Endocrine Regulations'),
(120621, 97828, 'fr', 'name', 'Evolution des RƩgulations Endocriniennes'),
(120622, 97829, 'en', 'name', 'Naval Research Laboratory Electronics Science and Technology Division'),
(120623, 97830, 'en', 'name', 'Youth Peer Education Network'),
(120624, 97831, 'en', 'name', 'UPMC Hillman Cancer Center'),
(120625, 97832, 'en', 'name', 'Office of Energy Statistics'),
(120626, 97833, 'eu', 'name', 'Bizkaia Talent'),
(120627, 97834, 'es', 'name', 'Fundación General'),
(120628, 97835, 'en', 'name', 'Dennis Osadebay University'),
(120629, 97836, 'ca', 'name', 'Institut d''Investigació en Ciències de la Salut Germans Trias i Pujol'),
(120630, 97836, 'en', 'name', 'Health Sciences Research Institute of the ā€œGermans Trias i Pujolā€ Foundation'),
(120631, 97837, 'no_lang_code', 'name', 'Ipsen (United States)'),
(120632, 97838, 'ca', 'name', 'Institut d''Investigació en Intel·ligència Artificial'),
(120633, 97838, 'en', 'name', 'Artificial Intelligence Research Institute'),
(120634, 97838, 'es', 'name', 'Instituto de Investigación en Inteligencia Artificial'),
(120635, 97839, 'es', 'name', 'Escuela Normal de Tlalnepantla'),
(120636, 97840, 'de', 'name', 'UniversitƤts- und Landesbibliothek Sachsen-Anhalt'),
(120637, 97840, 'en', 'name', 'University and State Library of Saxony-Anhalt'),
(120638, 97841, 'fr', 'name', 'Groupe de Physique des MatƩriaux'),
(120639, 97842, 'ca', 'name', 'Fundació Salut i Envelliment UAB'),
(120640, 97843, 'en', 'name', 'Naval Air Warfare Center Weapons Division'),
(120641, 97844, 'en', 'name', 'Raden Fatah State Islamic University Palembang'),
(120642, 97844, 'id', 'name', 'Universitas Islam Negeri Raden Fatah Palembang'),
(120643, 97845, 'en', 'name', 'Harold C. Simmons Comprehensive Cancer Center'),
(120644, 97846, 'en', 'name', 'Anderson University - Indiana'),
(120645, 97847, 'en', 'name', 'B-com Institute of Research and Technology'),
(120646, 97847, 'fr', 'name', 'Institut de Recherche Technologique B-com'),
(120647, 97848, 'no_lang_code', 'name', 'Centro de Estudios de Materiales y Control de Obra (Spain)'),
(120648, 97849, 'en', 'name', 'Higher Education Careers Services Unit'),
(120649, 97850, 'no_lang_code', 'name', 'Tenaris (Argentina)'),
(120650, 97851, 'en', 'name', 'Office of the Governor State of California'),
(120651, 97852, 'en', 'name', 'Spanish School of History and Archeology'),
(120652, 97852, 'es', 'name', 'Escuela EspaƱola de Historia y Arqueologƭa en Roma'),
(120653, 97853, 'en', 'name', 'J.M. Kaplan Fund'),
(120654, 97854, 'fr', 'name', 'Laboratoire Sciences et MƩthodes SƩparatives'),
(120655, 97855, 'en', 'name', 'Laboratory of Integrative Cancer Immunology'),
(120656, 97855, 'fr', 'name', 'Laboratoire d’immunologie intĆ©grative du cancer'),
(120657, 97856, 'en', 'name', 'Canada Grain Commission'),
(120658, 97856, 'fr', 'name', 'Commission canadienne des grains'),
(120659, 97857, 'en', 'name', 'European Association of National Metrology Institutes'),
(120660, 97858, 'en', 'name', 'HEC Paris in Qatar'),
(120661, 97859, 'no_lang_code', 'name', 'Unite 2 Fight Paralysis'),
(120662, 97860, 'fr', 'name', 'Niche LeucƩmique et MƩtabolisme Oxydatif, Niche leucƩmique et mƩtabolisme oxydatif'),
(120663, 97861, 'en', 'name', 'Museum of Natural Sciences of the Rio Grande do Sul Zoobotanical Foundation'),
(120664, 97861, 'pt', 'name', 'Museu de Ciências Naturais da Fundação Zoobotânica do Rio Grande do Sul'),
(120665, 97862, 'en', 'name', 'American University of Puerto Rico'),
(120666, 97863, 'en', 'name', 'University of The Sacred Heart'),
(120667, 97863, 'es', 'name', 'Universidad del Sagrado Corazón'),
(120668, 97864, 'no_lang_code', 'name', 'Sinoma Science & Technology Co., Ltd. (China)'),
(120669, 97864, 'zh', 'name', 'äø­ęē§‘ęŠ€'),
(120670, 97865, 'en', 'name', 'Federal Ministry of Petroleum Resources'),
(120671, 97866, 'en', 'name', 'State Key Laboratory of Severe Weather'),
(120672, 97866, 'zh', 'name', 'ē¾å®³å¤©ę°”å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120673, 97867, 'en', 'name', 'St. Petersburg Coastal and Marine Science Center'),
(120674, 97868, 'en', 'name', 'Air-Lock, Air-Lock (United States)'),
(120675, 97869, 'en', 'name', 'Cleveland Zoological Society'),
(120676, 97870, 'en', 'name', 'State Key Laboratory of Luminescent Materials and Devices'),
(120677, 97870, 'zh', 'name', 'å‘å…‰ęę–™äøŽå™Øä»¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120678, 97871, 'no_lang_code', 'name', 'Philco-Ford (United States)'),
(120679, 97872, 'no_lang_code', 'name', 'General Research Institute for Nonferrous Metals (China)'),
(120680, 97872, 'zh', 'name', 'åŒ—äŗ¬ęœ‰č‰²é‡‘å±žē ”ē©¶ę€»é™¢'),
(120681, 97873, 'en', 'name', 'Sanitas Malaga Medical Centre'),
(120682, 97873, 'es', 'name', 'Centro MƩdico Sanitas MƔlaga'),
(120683, 97874, 'en', 'name', 'Office of Isotope R&D and Production'),
(120684, 97875, 'cy', 'name', 'Rhwydwaith Ymchwil Peirianneg Cymru'),
(120685, 97875, 'en', 'name', 'Engineering Research Network Wales'),
(120686, 97876, 'en', 'name', 'LG (South Korea)'),
(120687, 97877, 'en', 'name', 'State Key Laboratory of Silicate Materials for Architecture'),
(120688, 97877, 'zh', 'name', 'ē”…é…øē›å»ŗē­‘ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120689, 97878, 'en', 'name', 'EPF - Graduate School of Engineering'),
(120690, 97878, 'fr', 'name', 'EPF - Ɖcole d''ingĆ©nieurs'),
(120691, 97879, 'fr', 'name', 'Laboratoire des Fluides Complexes et leurs RƩservoirs'),
(120692, 97880, 'fr', 'name', 'Laboratoire de Psychologie : Cognition, Comportement, Communication'),
(120693, 97881, 'en', 'name', 'WWF Cameroon'),
(120694, 97882, 'en', 'name', 'Citizen Schools North Carolina'),
(120695, 97883, 'en', 'name', 'Institute of Agrobiological Research of Galicia'),
(120696, 97883, 'es', 'name', 'Instituto de Investigaciones Agrobiológicas de Galicia'),
(120697, 97884, 'id', 'name', 'Institut Pesantren Babakan'),
(120698, 97885, 'en', 'name', 'Korea Semiconductor Research Consortium'),
(120699, 97886, 'en', 'name', 'State Key Laboratory of Multiphase Flow in Power Engineering'),
(120700, 97886, 'zh', 'name', 'åŠØåŠ›å·„ēØ‹å¤šē›øęµå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120701, 97887, 'de', 'name', 'Landesgesundheitsamt Baden-Württemberg'),
(120702, 97888, 'en', 'name', 'State Key Laboratory of Advanced Optical Communication Systems and Networks'),
(120703, 97888, 'zh', 'name', 'åŒŗåŸŸå…‰ēŗ¤é€šäæ”ē½‘äøŽę–°åž‹å…‰é€šäæ”ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120704, 97889, 'en', 'name', 'Society for the Improvement of Psychological Science'),
(120705, 97890, 'en', 'name', 'Eastern Ecological Science Center'),
(120706, 97891, 'no_lang_code', 'name', 'Laboratoires Contapharm (France)'),
(120707, 97892, 'en', 'name', 'University of Wisconsin Health'),
(120708, 97893, 'pt', 'name', 'Laboratório Nacional de Nanotecnologia'),
(120709, 97894, 'de', 'name', 'Europäisches Zentrum für die Förderung der Berufsbildung'),
(120710, 97894, 'el', 'name', 'Ī•Ļ…ĻĻ‰Ļ€Ī±ĻŠĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ για την Ανάπτυξη της Επαγγελματικής ĪšĪ±Ļ„Ī¬ĻĻ„Ī¹ĻƒĪ·Ļ‚'),
(120711, 97894, 'en', 'name', 'European Centre for the Development of Vocational Training (CEDEFOP)'),
(120712, 97894, 'es', 'name', 'Centro Europeo para el Desarrollo de la Formación Profesional'),
(120713, 97894, 'fr', 'name', 'Centre Europeen pour le developpement de la Formation Professionnelle, Centre EuropƩen pour le DƩveloppement de la Formation Professionnelle'),
(120714, 97894, 'it', 'name', 'Centro europeo per lo sviluppo della formazione professionale'),
(120715, 97894, 'nl', 'name', 'Europees Centrum voor de ontwikkeling van de beroepsopleiding'),
(120716, 97894, 'pl', 'name', 'Europejskie Centrum Rozwoju Kształcenia Zawodowego'),
(120717, 97894, 'pt', 'name', 'Centro Europeu para o Desenvolvimento da Formação Profissional'),
(120718, 97894, 'ro', 'name', 'Centrul European pentru Dezvoltarea Formării Profesionale'),
(120719, 97895, 'fr', 'name', 'MarchƩs, Institutions, LibertƩs'),
(120720, 97896, 'en', 'name', 'Centre for Addiction and Mental Health'),
(120721, 97896, 'fr', 'name', 'Centre de toxicomanie et de santƩ mentale'),
(120722, 97897, 'en', 'name', 'State Key Laboratory of Inorganic Synthesis and Preparative Chemistry'),
(120723, 97897, 'zh', 'name', 'ę— ęœŗåˆęˆäøŽåˆ¶å¤‡åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120724, 97898, 'en', 'name', 'Imaging, Vision and Artificial Intelligence Laboratory'),
(120725, 97898, 'fr', 'name', 'Laboratoire d''imagerie, de vision et d''intelligence artificielle'),
(120726, 97899, 'en', 'name', 'Wright Research and Development Center'),
(120727, 97900, 'de', 'name', 'Fondation Brocher'),
(120728, 97900, 'en', 'name', 'Brocher Foundation'),
(120729, 97901, 'no_lang_code', 'name', 'Cegid (France)'),
(120730, 97902, 'en', 'name', 'Pacific Island Ecosystems Research Center'),
(120731, 97903, 'en', 'name', 'Mater Foundation'),
(120732, 97904, 'en', 'name', 'Federal University of Roraima'),
(120733, 97904, 'pt', 'name', 'Universidade Federal de Roraima'),
(120734, 97905, 'en', 'name', 'International Center for Numerical Methods in Engineering'),
(120735, 97905, 'es', 'name', 'Centro Internacional de MƩtodos NumƩricos en Ingenierƭa'),
(120736, 97906, 'no_lang_code', 'name', 'GTE (United States)'),
(120737, 97907, 'de', 'name', 'Sächsisches Staatsministerium für Energie, Klimaschutz, Umwelt und Landwirtschaft'),
(120738, 97908, 'en', 'name', 'Ministry of Science and Technology'),
(120739, 97909, 'en', 'name', 'State Key Laboratory of Rare Earth Resources Utilization'),
(120740, 97909, 'zh', 'name', 'ēØ€åœŸčµ„ęŗåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120741, 97910, 'en', 'name', 'Cambodian University for Specialties'),
(120742, 97910, 'km', 'name', 'įžŸįž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įžÆįž€įž‘įŸįžŸįž€įž˜įŸ’įž–įž»įž‡įž¶'),
(120743, 97911, 'es', 'name', 'Instituto de Investigaciones en Diversidad Cultural y Procesos de Cambio'),
(120744, 97912, 'en', 'name', 'Office of Fossil Energy'),
(120745, 97913, 'en', 'name', 'Advanced Materials and Manufacturing Technologies Office'),
(120746, 97914, 'en', 'name', 'University of Wales Institute Cardiff'),
(120747, 97915, 'pt', 'name', 'Hospital UniversitÔrio da Universidade Federal do Maranhão'),
(120748, 97916, 'fr', 'name', 'Equipe de recherche interdisciplinaire sur les aires culturelles'),
(120749, 97917, 'en', 'name', 'Schroeder Arthritis Institute'),
(120750, 97918, 'en', 'name', 'Royal Botanical Garden'),
(120751, 97918, 'es', 'name', 'Real Jardƭn BotƔnico'),
(120752, 97919, 'de', 'name', 'Universität der Künste Berlin'),
(120753, 97919, 'en', 'name', 'Berlin University of the Arts'),
(120754, 97920, 'en', 'name', 'Laboratory of Subatomic Physics and Cosmology'),
(120755, 97920, 'fr', 'name', 'Laboratoire de Physique Subatomique et de Cosmologie'),
(120756, 97921, 'en', 'name', 'Soft Matter Sciences and Engineering Laboratory'),
(120757, 97921, 'fr', 'name', 'Sciences et Ingénierie de la Matière Molle'),
(120758, 97922, 'en', 'name', 'dpr-barcelona'),
(120759, 97923, 'fr', 'name', 'Analyse, Recherche, DƩveloppement et Evaluation en Endourologie et Lithiase Urinaire'),
(120760, 97924, 'en', 'name', 'STRIX (Portugal)'),
(120761, 97925, 'fr', 'name', 'Centre d''Ʃtude des discours, images, textes, Ʃcrits et communications'),
(120762, 97926, 'en', 'name', 'Institute of Environmental Research and QuĆ­micas Barcelona'),
(120763, 97926, 'es', 'name', 'Instituto de Investigaciones QuĆ­micas y Ambientales de Barcelona'),
(120764, 97927, 'en', 'name', 'Milken Institute'),
(120765, 97928, 'en', 'name', 'Observatory for Prospective Technological Industry'),
(120766, 97928, 'es', 'name', 'Observatorio de Prospectiva Tecnológica Industrial'),
(120767, 97929, 'no_lang_code', 'name', 'Apollo Medical Imaging Technology (Australia)'),
(120768, 97930, 'de', 'name', 'UniversitƤtsklinikum Frankfurt'),
(120769, 97930, 'en', 'name', 'University Hospital Frankfurt'),
(120770, 97931, 'es', 'name', 'Patrimonio Nacional'),
(120771, 97932, 'en', 'name', 'State Key Laboratory of Special Fiber Composite Materials'),
(120772, 97932, 'zh', 'name', 'ē‰¹ē§ēŗ¤ē»“å¤åˆęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120773, 97933, 'es', 'name', 'Ministerio de Ciencia, Tecnología e Innovación'),
(120774, 97934, 'en', 'name', 'Foundation for International Relations and Foreign Dialogue'),
(120775, 97934, 'es', 'name', 'Fundación para las Relaciones Internacionales y el DiÔlogo Exterior'),
(120776, 97935, 'en', 'name', 'Science and Engineering Research Board'),
(120777, 97936, 'es', 'name', 'RegistradurĆ­a Nacional del Estado Civil de Colombia'),
(120778, 97937, 'fr', 'name', 'Institut de MathƩmatiques de Jussieu-Paris Rive Gauche'),
(120779, 97938, 'en', 'name', 'Saint Louis University'),
(120780, 97939, 'en', 'name', 'Kidney Foundation Hospital and Research Institute, Bangladesh'),
(120781, 97940, 'en', 'name', 'Weston Area Health NHS Trust'),
(120782, 97941, 'en', 'name', 'University of Belgrade - School of Electrical Engineering'),
(120783, 97941, 'sr', 'name', 'Univerzitet u Beogradu - Elektrotehnički fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Електротехнички Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(120784, 97942, 'en', 'name', 'Wrocław Networking and Supercomputing Center'),
(120785, 97942, 'pl', 'name', 'Wroclawskie Centrum Sieciowo-Superkomputerowe'),
(120786, 97943, 'nl', 'name', 'Noord-Hollands Archief'),
(120787, 97944, 'en', 'name', 'Ho Chi Minh University of Banking'),
(120788, 97944, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c NgĆ¢n hĆ ng ThĆ nh phố Hồ ChĆ­ Minh'),
(120789, 97945, 'en', 'name', 'Jio Institute'),
(120790, 97946, 'ca', 'name', 'Institut Nacional d''EstadĆ­stica d''Espanya'),
(120791, 97946, 'en', 'name', 'National Institute of Statistics'),
(120792, 97946, 'es', 'name', 'Instituto Nacional de EstadĆ­stica'),
(120793, 97946, 'eu', 'name', 'Espainiako Estatistika Institutua'),
(120794, 97947, 'es', 'name', 'Instituto de Neurociencias de Castilla y León'),
(120795, 97948, 'en', 'name', 'Dr. Shroff’s Charity Eye Hospital'),
(120796, 97949, 'en', 'name', 'Ottawa Research and Development Centre'),
(120797, 97949, 'fr', 'name', 'Centre de recherche et de dƩveloppement d''Ottawa'),
(120798, 97950, 'en', 'name', 'Ministry of AYUSH'),
(120799, 97950, 'hi', 'name', 'ą¤†ą¤Æą„ą¤· ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(120800, 97951, 'en', 'name', 'State Key Laboratory of Nonferrous Metals and Processes'),
(120801, 97951, 'zh', 'name', 'ęœ‰č‰²é‡‘å±žęę–™åˆ¶å¤‡åŠ å·„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120802, 97952, 'en', 'name', 'State Key Laboratory of Environmental Adaptability for Industrial Products'),
(120803, 97952, 'zh', 'name', 'å·„äøšäŗ§å“ēŽÆå¢ƒé€‚åŗ”ę€§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120804, 97953, 'en', 'name', 'Dokkyo Medical University Saitama Medical Center'),
(120805, 97953, 'ja', 'name', 'ēØå”åŒ»ē§‘å¤§å­¦åŸ¼ēŽ‰åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(120806, 97954, 'es', 'name', 'Instituto de Ciencias del Patrimonio'),
(120807, 97955, 'en', 'name', 'Allison Family Foundation'),
(120808, 97956, 'en', 'name', 'National Research, Development and Innovation Office'),
(120809, 97957, 'en', 'name', 'Congressionally Directed Medical Research Programs'),
(120810, 97958, 'en', 'name', 'Ignite Life Science Foundation'),
(120811, 97959, 'ca', 'name', 'Institut de Ciències Fotòniques'),
(120812, 97959, 'en', 'name', 'Institute of Photonic Sciences'),
(120813, 97959, 'es', 'name', 'Instituto de Ciencias Fotónicas'),
(120814, 97960, 'en', 'name', 'Shanghai Institute of Optics and Fine Mechanics'),
(120815, 97960, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·å…‰å­¦ē²¾åÆ†ęœŗę¢°ē ”ē©¶ę‰€'),
(120816, 97961, 'en', 'name', 'Korea Medical Device Development Fund'),
(120817, 97961, 'ko', 'name', 'ė²”ė¶€ģ²˜ģ‹ ģ•½ź°œė°œģ‚¬ģ—…ė‹Ø'),
(120818, 97962, 'en', 'name', 'Suffolk University Madrid'),
(120819, 97962, 'es', 'name', 'Universidad Suffolk Madrid'),
(120820, 97963, 'en', 'name', 'Kyiv Scientific Research Institute of Forensic Expertise of the Ministry of Justice of Ukraine'),
(120821, 97963, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃƒŠ“Š¾Š²ŠøŃ… експертиз ŠœŃ–ністерства ŃŽŃŃ‚ŠøŃ†Ń–Ń— України'),
(120822, 97964, 'en', 'name', 'Samarkand State University of Veterinary Medicine, Livestock and Biotechnologies'),
(120823, 97964, 'ru', 'name', 'ДамарканГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарной меГицины, животновоГства Šø биотехнологий'),
(120824, 97964, 'uz', 'name', 'Samarqand davlat veterinariya meditsinasi, chorvachilik va biotexnologiyalar universiteti'),
(120825, 97965, 'en', 'name', 'Aga Khan University'),
(120826, 97965, 'ur', 'name', 'Ų¢ŲŗŲ§ خان ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(120827, 97966, 'en', 'name', 'Okinaka Memorial Institute for Medical Research'),
(120828, 97967, 'en', 'name', 'Charlottetown Research and Development Centre'),
(120829, 97967, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Charlottetown'),
(120830, 97968, 'no_lang_code', 'name', 'DRACE GEOCISA S.A. (Spain)'),
(120831, 97969, 'en', 'name', 'Nuclear Infrastructure Programs'),
(120832, 97970, 'en', 'name', 'State Key Laboratory of Laser Technology'),
(120833, 97970, 'zh', 'name', 'ęæ€å…‰ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120834, 97971, 'no_lang_code', 'name', 'Raytheon (United States)'),
(120835, 97972, 'en', 'name', 'National Archaeological Museum of Spain'),
(120836, 97972, 'es', 'name', 'Museo Arqueológico Nacional'),
(120837, 97973, 'no_lang_code', 'name', 'Eurofins (United Kingdom)'),
(120838, 97974, 'en', 'name', 'NIHR Bristol Cardiovascular Biomedical Research Unit'),
(120839, 97975, 'es', 'name', 'Consejería de Cultura, Educación, Formación Profesional y Universidades, Consellería de Cultura, Educación, Formación Profesional e Universidades'),
(120840, 97976, 'en', 'name', 'Rutherford Appleton Laboratory'),
(120841, 97977, 'en', 'name', 'Regional Health Care and Social Agency Rhodense'),
(120842, 97977, 'it', 'name', 'Aziende Socio Sanitaria Territoriale Rhodense'),
(120843, 97978, 'en', 'name', 'National Mapping and Remote Sensing Center'),
(120844, 97978, 'fr', 'name', 'Centre National de la Cartographie et de la teledetection'),
(120845, 97979, 'en', 'name', 'Cornell Atkinson Center for Sustainability'),
(120846, 97980, 'en', 'name', 'State Key Laboratory of Tribology'),
(120847, 97980, 'zh', 'name', 'ę‘©ę“¦å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120848, 97981, 'en', 'name', 'State of New Jersey'),
(120849, 97982, 'en', 'name', 'Carnegie Observatories'),
(120850, 97983, 'en', 'name', 'Facing Our Risk of Cancer Empowered'),
(120851, 97984, 'no_lang_code', 'name', 'Aduro BioTech (United States)'),
(120852, 97985, 'es', 'name', 'Centro de Investigación y Desarrollo Tecnológico para la Agricultura Familiar'),
(120853, 97986, 'ca', 'name', 'Institut CatalĆ  d''Energia'),
(120854, 97986, 'es', 'name', 'Instituto CatalƔn de Energƭa'),
(120855, 97987, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł„Ł„ŲŖŁˆŲ«ŁŠŁ‚ Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠ'),
(120856, 97987, 'en', 'name', 'University National Center of Scientific and Technical Documentation'),
(120857, 97987, 'fr', 'name', 'Centre National Universitaire de Documentation Scientifique et Technique'),
(120858, 97988, 'de', 'name', 'Landesbibliothek Oldenburg'),
(120859, 97989, 'fr', 'name', 'Physiopathologie et StratƩgies d''Imagerie du Remodelage cardiovasculaire'),
(120860, 97990, 'en', 'name', 'USC Institute for Creative Technologies'),
(120861, 97991, 'en', 'name', 'Skidaway Institute of Oceanography'),
(120862, 97992, 'en', 'name', 'Scottish Confederation of University and Research Libraries'),
(120863, 97993, 'fr', 'name', 'Laboratoire d’Économie d’OrlĆ©ans'),
(120864, 97994, 'en', 'name', 'Catalonian Research and Innovation Centre'),
(120865, 97995, 'fr', 'name', '3L.AM - Langues, LittĆ©ratures, Linguistique des UniversitĆ©s d’Angers et du Mans'),
(120866, 97996, 'en', 'name', 'Donald E. and Delia B. Baxter Foundation'),
(120867, 97997, 'de', 'name', 'Leibniz-Institut für Wissensmedien, Stiftung ā€žMedien in der Bildungā€œ'),
(120868, 97998, 'en', 'name', 'BMA Foundation for Medical Research'),
(120869, 97999, 'en', 'name', 'Oxford University Clinical Research Unit Nepal'),
(120870, 98000, 'en', 'name', 'Naval Research Laboratory Space Science Division'),
(120871, 98001, 'cs', 'name', 'Výzkumný Ustav pro Chov Skotu'),
(120872, 98001, 'no_lang_code', 'name', 'Research Institute for Cattle Breeding (Czechia)'),
(120873, 98002, 'en', 'name', 'Synsint Research Group'),
(120874, 98003, 'en', 'name', 'O''Neal Comprehensive Cancer Center'),
(120875, 98004, 'en', 'name', 'State Key Laboratory of Molecular Reaction Dynamics');
INSERT INTO `ror_settings` VALUES
(120876, 98004, 'zh', 'name', 'åˆ†å­ååŗ”åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120877, 98005, 'en', 'name', 'State Key Laboratory of Fine Chemicals'),
(120878, 98005, 'zh', 'name', 'ē²¾ē»†åŒ–å·„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120879, 98006, 'no_lang_code', 'name', 'Biocat'),
(120880, 98007, 'en', 'name', 'Institute of Process Engineering'),
(120881, 98007, 'zh', 'name', '中国科学院过程巄程研究所'),
(120882, 98008, 'fr', 'name', 'Centre National de Semences ForestiĆØres'),
(120883, 98009, 'en', 'name', 'Yale Cancer Center'),
(120884, 98010, 'fr', 'name', 'ArchƩozoologie et ArchƩobotanique'),
(120885, 98011, 'no_lang_code', 'name', 'Shanxi Jincheng Anthracite Mining Group (China)'),
(120886, 98011, 'zh', 'name', 'å±±č„æę™‹åŸŽę— ēƒŸē…¤ēŸæäøšé›†å›¢'),
(120887, 98012, 'en', 'name', 'Naval Research Laboratory Optical Sciences Division'),
(120888, 98013, 'es', 'name', 'Fundación Omphis'),
(120889, 98014, 'en', 'name', 'Urmia University of Medical Sciences'),
(120890, 98015, 'fr', 'name', 'Conception de Systèmes Mécaniques et Robotiques'),
(120891, 98016, 'en', 'name', 'The Institute of Statistical Mathematics'),
(120892, 98016, 'ja', 'name', 'ēµ±čØˆę•°ē†ē ”ē©¶ę‰€'),
(120893, 98017, 'en', 'name', 'State Key Laboratory of Environmental Standards and Risk Assessment'),
(120894, 98017, 'zh', 'name', 'ēŽÆå¢ƒåŸŗå‡†äøŽé£Žé™©čÆ„ä¼°å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120895, 98018, 'en', 'name', 'SANT Herbarium'),
(120896, 98019, 'en', 'name', 'Applied Research Laboratory at Penn State'),
(120897, 98020, 'no_lang_code', 'name', 'Nvidia (United States)'),
(120898, 98021, 'en', 'name', 'Office of Legacy Management'),
(120899, 98022, 'en', 'name', 'Vessels and Blood Institute'),
(120900, 98022, 'fr', 'name', 'Institut des Vaisseaux et du Sang'),
(120901, 98023, 'en', 'name', 'State Key Laboratory of Laser and Matter Interaction'),
(120902, 98023, 'zh', 'name', 'ęæ€å…‰äøŽē‰©č“Øē›øäŗ’ä½œē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120903, 98024, 'fr', 'name', 'RMN BiomƩdicale et Neurosciences'),
(120904, 98025, 'fr', 'name', 'Centre Gabriel NaudƩ'),
(120905, 98026, 'en', 'name', 'Mayo Clinic in Arizona'),
(120906, 98027, 'en', 'name', 'Southern African Science Service Centre for Climate Change and Adaptive Land Management'),
(120907, 98028, 'fr', 'name', 'Matériaux Polymères Interfaces - Environnement Marin'),
(120908, 98029, 'fr', 'name', 'Laboratoire Inter-universitaire de Psychologie: PersonnalitƩ, Cognition, Changement Social'),
(120909, 98030, 'en', 'name', 'University of Belgrade – Faculty of Mathematics'),
(120910, 98030, 'sr', 'name', 'Univerzitet u Beogradu – Matematički fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠœŠ°Ń‚ŠµŠ¼Š°Ń‚ŠøŃ‡ŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(120911, 98031, 'no_lang_code', 'name', 'Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China)'),
(120912, 98031, 'zh', 'name', 'ę²ˆé˜³äø­åŒ–å†œčÆåŒ–å·„ē ”å‘ęœ‰é™å…¬åø'),
(120913, 98032, 'fr', 'name', 'Chimie et Biologie des Membranes et des Nanoobjects'),
(120914, 98033, 'en', 'name', 'Rein in Sarcoma'),
(120915, 98034, 'en', 'name', 'Wright Laboratory'),
(120916, 98035, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŲµŲ± Ł„Ł„Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖŁŠŲ©'),
(120917, 98035, 'en', 'name', 'Egypt University of Informatics'),
(120918, 98036, 'en', 'name', 'Brotman Baty Institute'),
(120919, 98037, 'en', 'name', 'University Hospitals Bristol and Weston NHS Foundation Trust'),
(120920, 98038, 'no_lang_code', 'name', 'Toray (United States)'),
(120921, 98039, 'de', 'name', 'Wissenschaftszentrum Berlin für Sozialforschung gGmbH'),
(120922, 98039, 'en', 'name', 'WZB Berlin Social Science Center'),
(120923, 98040, 'en', 'name', 'Biodiversity Information Standards (TDWG)'),
(120924, 98041, 'en', 'name', 'The Journal of Student Science and Technology'),
(120925, 98041, 'fr', 'name', 'La revue pour les etudiants en technologie et sciences'),
(120926, 98042, 'de', 'name', 'Ithaka Institut ist ein internationales Netzwerk für Kohlenstoff-Strategien und Klimafarming'),
(120927, 98042, 'en', 'name', 'Ithaka Institute for Carbon Strategies'),
(120928, 98043, 'en', 'name', 'Agency for the Protection of Health Bergamo East'),
(120929, 98043, 'it', 'name', 'Azienda Socio Sanitaria Territoriale Bergamo Est'),
(120930, 98044, 'en', 'name', 'Federal University of Bahia'),
(120931, 98044, 'pt', 'name', 'Universidade Federal da Bahia'),
(120932, 98045, 'en', 'name', 'Marcos Moshinsky Foundation'),
(120933, 98045, 'es', 'name', 'Fundación Marcos Moshinsky'),
(120934, 98046, 'en', 'name', 'Nanjing Institute of Geography and Limnology'),
(120935, 98046, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å—äŗ¬åœ°ē†äøŽę¹–ę³Šē ”ē©¶ę‰€'),
(120936, 98047, 'es', 'name', 'Servicio de Salud de Castilla La Mancha'),
(120937, 98048, 'es', 'name', 'Consejería de Empleo, Formación y Trabajo Autónomo'),
(120938, 98049, 'en', 'name', 'Arkansas Archeological Survey'),
(120939, 98050, 'en', 'name', 'State Key Laboratory of Electrical Insulation and Power Equipment'),
(120940, 98050, 'zh', 'name', 'ē”µåŠ›č®¾å¤‡ē”µę°”ē»ē¼˜å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120941, 98051, 'no_lang_code', 'name', 'Spectroswiss (Switzerland)'),
(120942, 98052, 'en', 'name', 'Happier Lives Institute'),
(120943, 98053, 'en', 'name', 'Clinical and Translational Science Collaborative of Northern Ohio'),
(120944, 98054, 'id', 'name', 'Sekolah Tinggi Teologi Tabgha Batam'),
(120945, 98055, 'no_lang_code', 'name', 'Meta4 (Spain)'),
(120946, 98056, 'en', 'name', 'Semey Medical University'),
(120947, 98056, 'kk', 'name', '«Демей меГицина ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–Ā» ŠŗŠ¾Š¼Š¼ŠµŃ€Ń†ŠøŃŠ»Ń‹Ņ› емес акционерлік қоғамы'),
(120948, 98056, 'ru', 'name', 'ŠŠµŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ¾Šµ акционерное общество Ā«ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Демей»'),
(120949, 98057, 'es', 'name', 'Escuela Superior de Artes de Circo'),
(120950, 98057, 'fr', 'name', 'Ɖcole SupĆ©rieure des Arts du Cirque'),
(120951, 98058, 'en', 'name', 'Genetics and Improvement of Fruit and Vegetables'),
(120952, 98058, 'fr', 'name', 'GƩnƩtique et AmƩlioration des Fruits et LƩgumes'),
(120953, 98059, 'en', 'name', 'Barcelona Institute for Science and Technology'),
(120954, 98059, 'es', 'name', 'Instituto Barcelona de Ciencia y TecnologĆ­a'),
(120955, 98060, 'en', 'name', 'State Enterprise "Ivano-Frankivsk Scientific and Production Center for Standardization, Metrology and Certification"'),
(120956, 98060, 'uk', 'name', 'Державне ŠŸŃ–Гприємство ā€žŃ–Š²Š°Š½Š¾-Š¤Ń€Š°Š½ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ ŠŠ°ŃƒŠŗŠ¾Š²Š¾-Виробничий Центр ДтанГартизації, ŠœŠµŃ‚Ń€Š¾Š»Š¾Š³Ń–Ń— Та Š”ŠµŃ€Ń‚ŠøŃ„Ń–ŠŗŠ°Ń†Ń–Ń—ā€'),
(120957, 98061, 'no_lang_code', 'name', 'Barber-Nichols (United States)'),
(120958, 98062, 'fr', 'name', 'Physique et Mécanique des Milieux Hétérogènes'),
(120959, 98063, 'en', 'name', 'Agassiz Research and Development Centre'),
(120960, 98063, 'fr', 'name', 'Centre de recherche et de dƩveloppement d''Agassiz'),
(120961, 98064, 'da', 'name', 'Mercantec'),
(120962, 98065, 'en', 'name', 'California Tomato Research Institute'),
(120963, 98066, 'en', 'name', 'Maldives Business School'),
(120964, 98067, 'it', 'name', 'Conservatorio di Musica Giuseppe Tartini'),
(120965, 98068, 'en', 'name', 'College of general and vocational education'),
(120966, 98068, 'fr', 'name', 'Collège d''enseignement général et professionnel, Cégep de Chicoutimi'),
(120967, 98069, 'en', 'name', 'State Key Laboratory of Concrete Materials Research'),
(120968, 98069, 'zh', 'name', 'ę··å‡åœŸęę–™ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120969, 98070, 'en', 'name', 'Gruber Foundation'),
(120970, 98071, 'en', 'name', 'Center for South Asian Studies'),
(120971, 98071, 'fr', 'name', 'Centre d''Ɖtudes de l''Inde et de l''Asie du Sud'),
(120972, 98072, 'fr', 'name', 'HƓpital d''instruction des ArmƩes Desgenettes'),
(120973, 98073, 'ca', 'name', 'Universitat PolitĆØcnica de Catalunya'),
(120974, 98073, 'en', 'name', 'Polytechnic University of Catalonia'),
(120975, 98073, 'es', 'name', 'Universidad PolitƩcnica de CataluƱa'),
(120976, 98073, 'gl', 'name', 'Universidade PolitƩcnica de CataluƱa'),
(120977, 98074, 'en', 'name', 'Advisory Board for Research, Development and Innovation'),
(120978, 98074, 'ro', 'name', 'Colegiul Consultativ pentru Cercetare-Dezvoltare şi Inovare'),
(120979, 98075, 'en', 'name', 'Weston General Hospital'),
(120980, 98076, 'fr', 'name', 'Centre François Viète'),
(120981, 98077, 'en', 'name', 'Sanitas Castellana Advanced Rehabilitation Centre'),
(120982, 98077, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Castellana'),
(120983, 98078, 'en', 'name', 'Minneapolis Heart Institute Foundation'),
(120984, 98079, 'en', 'name', 'Open University of West Africa'),
(120985, 98080, 'en', 'name', 'General Directorate of Universities and Research'),
(120986, 98080, 'es', 'name', 'Dirección General de Universidades e Investigación'),
(120987, 98081, 'en', 'name', 'Institute of Oceanology Polish Academy of Sciences'),
(120988, 98081, 'pl', 'name', 'Instytut Oceanologii Polskiej Akademii Nauk'),
(120989, 98082, 'en', 'name', 'State Key Laboratory of Membrane Biology'),
(120990, 98082, 'zh', 'name', 'č†œē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120991, 98083, 'en', 'name', 'Yuzhang Normal University'),
(120992, 98083, 'zh', 'name', 'č±«ē« åøˆčŒƒå­¦é™¢'),
(120993, 98084, 'en', 'name', 'State Key Laboratory of Macromolecular Engineering'),
(120994, 98084, 'zh', 'name', 'čšåˆē‰©åˆ†å­å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120995, 98085, 'en', 'name', 'Stanford Medicine'),
(120996, 98086, 'en', 'name', 'Royal Government of Bhutan'),
(120997, 98087, 'en', 'name', 'State Key Laboratory for Structural Chemistry of Unstable and Stable Species'),
(120998, 98087, 'zh', 'name', 'åˆ†å­åŠØę€äøŽēØ³ę€ē»“ęž„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(120999, 98088, 'fr', 'name', 'Savoirs dans l''espace anglophone : reprƩsentations, culture, histoire'),
(121000, 98089, 'ar', 'name', 'Ł„ŁƒŁ„ŁŠŲ© الامام الاعظم الجامع'),
(121001, 98089, 'en', 'name', 'Al-Imam Al-Adham University College'),
(121002, 98090, 'no_lang_code', 'name', 'Yangtze River Pharmaceutical Group (China)'),
(121003, 98090, 'zh', 'name', 'ę‰¬å­ę±ŸčÆäøšé›†å›¢'),
(121004, 98091, 'en', 'name', 'Fred and Pamela Buffett Cancer Center'),
(121005, 98092, 'es', 'name', 'Fundación Pronokal'),
(121006, 98093, 'en', 'name', 'Ruhr Museum'),
(121007, 98094, 'fr', 'name', 'Centre intĆ©grĆ© universitaire de santĆ© et de services sociaux du Nord-de-lā€™ĆŽle-de-MontrĆ©al'),
(121008, 98095, 'en', 'name', 'King Gustaf V and Queen Victoria''s Foundation of Freemasons'),
(121009, 98095, 'sv', 'name', 'Konung Gustaf V:s och Drottning Victorias Frimurarestiftelse'),
(121010, 98096, 'en', 'name', 'Spent Fuel and Waste Disposition'),
(121011, 98097, 'es', 'name', 'Centro Andaluz de BiologĆ­a Molecular y Medicina Regenerativa'),
(121012, 98098, 'en', 'name', 'North Dakota Agricultural Experiment Station'),
(121013, 98099, 'en', 'name', 'Duke Medical Center'),
(121014, 98100, 'en', 'name', 'Nepal Telecom'),
(121015, 98100, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤Ÿą„‡ą¤²ą¤æą¤•ą¤®'),
(121016, 98101, 'en', 'name', 'Genentech Foundation'),
(121017, 98102, 'en', 'name', 'ETH Zürich Foundation'),
(121018, 98103, 'en', 'name', 'State Key Laboratory for Innovation and Transformation of Luobing Theory'),
(121019, 98103, 'zh', 'name', 'ē»œē—…ē†č®ŗåˆ›ę–°č½¬åŒ–å…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(121020, 98104, 'id', 'name', 'Institut Agama Kristen Negeri Palangka Raya'),
(121021, 98105, 'en', 'name', 'Corewell Health Children''s'),
(121022, 98106, 'en', 'name', 'Royal Botanic Garden Sydney'),
(121023, 98107, 'no_lang_code', 'name', 'DNV (Germany)'),
(121024, 98108, 'en', 'name', 'Accra College of Education'),
(121025, 98109, 'en', 'name', 'Natural Resources, Energy and Science Authority of Sri Lanka'),
(121026, 98110, 'no_lang_code', 'name', 'Taiyuan Iron and Steel Group (China)'),
(121027, 98110, 'zh', 'name', 'å¤ŖåŽŸé’¢é“é›†å›¢'),
(121028, 98111, 'no_lang_code', 'name', 'Philco (United States)'),
(121029, 98112, 'en', 'name', 'Naval Research Laboratory Radar Division'),
(121030, 98113, 'fr', 'name', 'Production et analyse de donnƩes en sciences de la vie et en santƩ'),
(121031, 98114, 'es', 'name', 'Fundación Eugenio Rodríguez Pascual'),
(121032, 98115, 'fr', 'name', 'Structure FƩdƩrative de Recherche Bonamy'),
(121033, 98116, 'en', 'name', 'Instrumentation Institute For Molecular Image'),
(121034, 98116, 'es', 'name', 'Instituto de Instrumentación para Imagen Molecular'),
(121035, 98117, 'en', 'name', 'The Filipino Nurses Association in the Nordic Region'),
(121036, 98118, 'en', 'name', 'Tertiary Education Trust Fund'),
(121037, 98119, 'en', 'name', 'Texas A&M Engineering Experiment Station'),
(121038, 98120, 'en', 'name', 'Ministry of Research and Innovation'),
(121039, 98120, 'ro', 'name', 'Ministerul Cercetării și Inovării'),
(121040, 98121, 'en', 'name', 'Guam Community College'),
(121041, 98122, 'no_lang_code', 'name', 'Sigma Research (United States)'),
(121042, 98123, 'en', 'name', 'State Key Laboratory of Robotics'),
(121043, 98123, 'zh', 'name', 'ęœŗå™Øäŗŗå­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121044, 98124, 'en', 'name', 'The Virgo Consortium'),
(121045, 98125, 'en', 'name', 'Navarra University Clinic'),
(121046, 98125, 'es', 'name', 'Clinica Universidad de Navarra'),
(121047, 98126, 'en', 'name', 'PacifiCan'),
(121048, 98127, 'no_lang_code', 'name', 'ARES (United States)'),
(121049, 98128, 'en', 'name', 'Nanomaterials and Nanotechnology Research Center'),
(121050, 98128, 'es', 'name', 'Centro de Investigación en Nanomateriales y Nanotecnología'),
(121051, 98129, 'en', 'name', 'Educational and Rehabilitation Institution of Higher Education "Kamianets-Podilskyi State Institute"'),
(121052, 98129, 'uk', 'name', 'ŠŠ°Š²Ń‡Š°Š»ŃŒŠ½Š¾-реабілітаційний заклаГ вищої освіти "Кам''ŃŠ½ŠµŃ†ŃŒ-ŠŸŠ¾Š“Ń–Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚"'),
(121053, 98130, 'en', 'name', 'University of Wollongong Malaysia'),
(121054, 98131, 'en', 'name', 'Dana-Farber/Harvard Cancer Center'),
(121055, 98132, 'en', 'name', 'Finnish Anti-Tuberculosis Foundation'),
(121056, 98132, 'fi', 'name', 'Suomen Tuberkuloosin Vastustamisyhdistyksen SƤƤtiƶ'),
(121057, 98133, 'en', 'name', 'University of Technology, Arts and Design'),
(121058, 98133, 'es', 'name', 'Centro Universitario de TecnologĆ­a y Arte Digital'),
(121059, 98134, 'en', 'name', 'State Key Laboratory of Metal Porous Materials'),
(121060, 98134, 'zh', 'name', 'é‡‘å±žå¤šå­”ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121061, 98135, 'en', 'name', 'NIHR Applied Research Collaboration West'),
(121062, 98136, 'en', 'name', 'Advanced Research Projects Agency - Energy'),
(121063, 98137, 'en', 'name', 'MAX IV Laboratory'),
(121064, 98138, 'no_lang_code', 'name', 'Achaogen (United States)'),
(121065, 98139, 'en', 'name', 'Maine Agricultural and Forest Experiment Station'),
(121066, 98140, 'es', 'name', 'Fundación Séneca - Agencia de Ciencia y Tecnología de la Región de Murcia'),
(121067, 98141, 'en', 'name', 'Presbyterian Women''s College of Education'),
(121068, 98142, 'fr', 'name', 'Laboratoire de Biologie, BioingƩniƩrie et Bioimagerie ostƩoarticulaire'),
(121069, 98143, 'en', 'name', 'NIHR School for Social Care Research'),
(121070, 98144, 'en', 'name', 'NHS Lothian'),
(121071, 98145, 'es', 'name', 'Hidroquimia tractaments i quimica industrial, S.L.'),
(121072, 98145, 'no_lang_code', 'name', 'HidroQuimia (Spain)'),
(121073, 98146, 'no_lang_code', 'name', 'Cambia Health Solutions (United States)'),
(121074, 98147, 'en', 'name', 'Federal University of Para'),
(121075, 98147, 'pt', 'name', 'Universidade Federal do ParĆ”'),
(121076, 98148, 'id', 'name', 'Sekolah Tinggi Agama Buddha Negeri Sriwijaya Tangerang Banten'),
(121077, 98149, 'fr', 'name', 'Groupe de Recherche en Electrotechnique et Automatique du Havre'),
(121078, 98150, 'es', 'name', 'Instituto Tecnológico Superior Progreso'),
(121079, 98151, 'en', 'name', 'Institute for Integrated Transitions'),
(121080, 98151, 'es', 'name', 'Instituto para las Transiciones Integrales'),
(121081, 98152, 'no_lang_code', 'name', 'Johnson & Johnson (United States)'),
(121082, 98153, 'en', 'name', 'Moana Connect'),
(121083, 98154, 'en', 'name', 'China Railway First Survey and Design Institute Group Co. Ltd.'),
(121084, 98155, 'en', 'name', 'North Carolina Geological Survey'),
(121085, 98156, 'no_lang_code', 'name', 'Yankuang Energy Group Company Limited (China)'),
(121086, 98156, 'zh', 'name', 'å…–ēŸæčƒ½ęŗé›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(121087, 98157, 'en', 'name', 'Naval Ocean Systems Center'),
(121088, 98158, 'en', 'name', 'Washington University Physicians'),
(121089, 98159, 'en', 'name', 'National Library of Finland'),
(121090, 98159, 'fi', 'name', 'Kansalliskirjasto'),
(121091, 98159, 'sv', 'name', 'Nationalbiblioteket'),
(121092, 98160, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŲ®Ł†ŁŠŁˆŁ†'),
(121093, 98160, 'en', 'name', 'Technion – Israel Institute of Technology'),
(121094, 98160, 'he', 'name', 'הטכניון – מכון טכנולוגי ×œ×™×©×Ø××œ'),
(121095, 98161, 'en', 'name', 'LINK - Laboratory for Innovative Key Materials and Structures'),
(121096, 98162, 'es', 'name', 'Sociedad Pública De Gestión Ambiental IHOBE, S.A.'),
(121097, 98162, 'no_lang_code', 'name', 'Ingurumen Jarduketarako Sozietate Publikoa, IHOBE, S.A.'),
(121098, 98163, 'en', 'name', 'Sanitas Pozuelo Advanced Rehabilitation Centre'),
(121099, 98163, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Pozuelo'),
(121100, 98164, 'en', 'name', 'Puigvert Foundation'),
(121101, 98164, 'es', 'name', 'Fundació Puigvert'),
(121102, 98165, 'fr', 'name', 'Institut de Recherche en Sciences AppliquƩes et Technologies'),
(121103, 98166, 'en', 'name', 'EAE Business School'),
(121104, 98166, 'es', 'name', 'Escuela de Administración de Empresas'),
(121105, 98167, 'en', 'name', 'Shanghai Electric Cable Research Institute'),
(121106, 98167, 'zh', 'name', 'äøŠęµ·ē”µē¼†ē ”ē©¶ę‰€åˆ›å»ŗ'),
(121107, 98168, 'en', 'name', 'Centre for Renewable Energy and Power Systems'),
(121108, 98169, 'fr', 'name', 'Ecole Nationale des Sciences GƩographiques'),
(121109, 98170, 'en', 'name', 'Zahedan University of Medical Sciences'),
(121110, 98171, 'en', 'name', 'Facility for Rare Isotope Beams'),
(121111, 98172, 'en', 'name', 'WIN Consortium'),
(121112, 98173, 'en', 'name', 'Bradens'' Hope For Childhood Cancer'),
(121113, 98174, 'en', 'name', 'UNSW Sydney'),
(121114, 98175, 'en', 'name', 'China National Heavy Machinery Research Institute Co., Ltd.'),
(121115, 98176, 'no_lang_code', 'name', 'UL Solutions (United States)'),
(121116, 98177, 'en', 'name', 'Federal University of Western Bahia'),
(121117, 98177, 'pt', 'name', 'Universidade Federal do Oeste da Bahia'),
(121118, 98178, 'en', 'name', 'Buildwise'),
(121119, 98179, 'no_lang_code', 'name', 'Faes Farma (Spain)'),
(121120, 98180, 'en', 'name', 'University of Belgrade – Faculty of Education'),
(121121, 98180, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet za obrazovanje učitelja i vaspitača, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ за Š¾Š±Ń€Š°Š·Š¾Š²Š°ŃšŠµ ŃƒŃ‡ŠøŃ‚ŠµŃ™Š° Šø васпитача'),
(121122, 98181, 'no_lang_code', 'name', 'Evident Corporation (Japan)'),
(121123, 98182, 'en', 'name', 'Office of Electricity Delivery and Energy Reliability'),
(121124, 98183, 'en', 'name', 'I AM ALS'),
(121125, 98184, 'fr', 'name', 'Institut des Sciences des SociƩtƩs'),
(121126, 98185, 'en', 'name', 'Naval Research Laboratory Marine Meteorology Division'),
(121127, 98186, 'en', 'name', 'Baker Heart and Diabetes Institute'),
(121128, 98187, 'ca', 'name', 'Museu d''Art Contemporani de Barcelona, Museu d’Art Contemporani de Barcelona'),
(121129, 98188, 'en', 'name', 'Research Center for Eco-Environmental Sciences'),
(121130, 98188, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ē”Ÿę€ēŽÆå¢ƒē ”ē©¶äø­åæƒ'),
(121131, 98189, 'no_lang_code', 'name', 'Mega Grants'),
(121132, 98189, 'ru', 'name', 'ŠœŠ•Š“ŠŠ“Š ŠŠŠ¢Š«'),
(121133, 98190, 'en', 'name', 'People for the Ethical Treatment of Animals'),
(121134, 98191, 'en', 'name', 'ICAR - Central Island Agricultural Research Institute'),
(121135, 98191, 'hi', 'name', 'ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤¦ą„ą¤Ŗą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(121136, 98192, 'nl', 'name', '4TU'),
(121137, 98193, 'en', 'name', 'Mehboob Charity Vision International Eye and General Hospital'),
(121138, 98194, 'fr', 'name', 'DƩlƩgation Paris 6'),
(121139, 98195, 'no_lang_code', 'name', 'Inabensa (Spain)'),
(121140, 98196, 'en', 'name', 'Laboratory for Ocean Physics and Satellite Remote Sensing'),
(121141, 98197, 'en', 'name', 'Urasoe General Hospital'),
(121142, 98198, 'fr', 'name', 'Centre d''Ʃtudes et de recherche sur les contentieux'),
(121143, 98199, 'en', 'name', 'Clarkson University'),
(121144, 98200, 'en', 'name', 'Sydney Institute of Marine Science'),
(121145, 98201, 'es', 'name', 'Instituto de Biotecnología de León'),
(121146, 98202, 'es', 'name', 'Instituto de Recursos Naturales y AgrobiologĆ­a de Sevilla'),
(121147, 98203, 'en', 'name', 'Roscoff Marine Station'),
(121148, 98203, 'fr', 'name', 'Station Biologique de Roscoff'),
(121149, 98204, 'en', 'name', 'Oaxaca Institute of Technology'),
(121150, 98204, 'es', 'name', 'Instituto Tecnológico de Oaxaca'),
(121151, 98205, 'en', 'name', 'Imaging and Orthopaedics Research Laboratory'),
(121152, 98205, 'fr', 'name', 'Laboratoire d''innovation ouverte en technologies de la santƩ'),
(121153, 98206, 'fr', 'name', 'Cliniques Universitaires Saint-Luc'),
(121154, 98206, 'nl', 'name', 'Universitair ziekenhuis Sint-Lambrechts-Woluwe'),
(121155, 98207, 'en', 'name', 'University of California, Santa Cruz'),
(121156, 98207, 'es', 'name', 'Universidad de California en Santa Cruz'),
(121157, 98207, 'fr', 'name', 'UniversitƩ de Californie Ơ Santa Cruz'),
(121158, 98208, 'no_lang_code', 'name', 'NKGen Biotech Inc. (United States)'),
(121159, 98209, 'fr', 'name', 'Laboratoire Vision Action Cognition'),
(121160, 98210, 'en', 'name', 'ProMedica Toledo Hospital'),
(121161, 98211, 'sv', 'name', 'Stiftelsen Invandrarinstitut och Museum MƄngkulturellt centrum'),
(121162, 98212, 'ca', 'name', 'Fundació Esclerosi Múltiple'),
(121163, 98213, 'no_lang_code', 'name', 'PQShield (United Kingdom)'),
(121164, 98214, 'en', 'name', 'Lethbridge Research and Development Centre'),
(121165, 98214, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Lethbridge'),
(121166, 98215, 'en', 'name', 'New England Water Science Center'),
(121167, 98216, 'en', 'name', 'State Key Laboratory of Superhard Materials'),
(121168, 98216, 'zh', 'name', 'č¶…ē”¬ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121169, 98217, 'en', 'name', 'National Nuclear Security Administration'),
(121170, 98218, 'en', 'name', 'Cancer Registry of Norway'),
(121171, 98219, 'fr', 'name', 'Communication BactƩrienne et StratƩgie Anti-infectieuses'),
(121172, 98220, 'en', 'name', 'ProgHist Ltd.'),
(121173, 98221, 'en', 'name', 'Regional Health Care of Franciacorta'),
(121174, 98221, 'it', 'name', 'Azienda Socio Sanitaria Territoriale della Franciacorta'),
(121175, 98222, 'en', 'name', 'Development Finance and Public Policies'),
(121176, 98223, 'ca', 'name', 'Institut de Quƭmica AvanƧada de Catalunya'),
(121177, 98223, 'en', 'name', 'Institute of Advanced Chemistry of Catalonia'),
(121178, 98223, 'es', 'name', 'Instituto de Quƭmica Avanzada de CataluƱa'),
(121179, 98224, 'fr', 'name', 'RƩsistances ThƩrapeutiques du Cancer de la Prostate'),
(121180, 98225, 'en', 'name', 'Quantinuum, Quantinuum (United States)'),
(121181, 98226, 'en', 'name', 'Ministry of Economic Affairs and Digital Transformation'),
(121182, 98226, 'es', 'name', 'Ministerio de Asuntos Económicos y Transformación Digital'),
(121183, 98227, 'no_lang_code', 'name', 'Ford Aerospace (United States)'),
(121184, 98228, 'no_lang_code', 'name', 'Raytheon Technologies (France)'),
(121185, 98229, 'en', 'name', 'Ministry of Economy, Entrepreneurship and Crafts'),
(121186, 98229, 'hr', 'name', 'Ministarstvo Gospodarstva, PodruzeniŔtva i Obrta'),
(121187, 98230, 'en', 'name', 'Southern Marine Science and Engineering Guangdong Laboratory (Zhuhai)'),
(121188, 98230, 'zh', 'name', 'å—ę–¹ęµ·ę“‹ē§‘å­¦äøŽå·„ēØ‹å¹æäøœēœå®žéŖŒå®¤ (ē ęµ·)'),
(121189, 98231, 'en', 'name', 'Region of Calabria'),
(121190, 98231, 'it', 'name', 'Regione Calabria'),
(121191, 98232, 'en', 'name', 'Institute for Socio-Ecological Research'),
(121192, 98232, 'es', 'name', 'Instituto para Socio-Ecological Research'),
(121193, 98233, 'en', 'name', 'Ministry of National Defense of the People''s Republic of China'),
(121194, 98233, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å›½é˜²éƒØ'),
(121195, 98234, 'es', 'name', 'CIC energiGUNE'),
(121196, 98235, 'de', 'name', 'Universitätsklinik für Chirurgie Wien'),
(121197, 98236, 'en', 'name', 'State Key Laboratory of Loess and Quaternary Geology'),
(121198, 98236, 'zh', 'name', 'é»„åœŸäøŽē¬¬å››ēŗŖåœ°č“Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121199, 98237, 'en', 'name', 'Institute of NanoSciences of Paris'),
(121200, 98237, 'fr', 'name', 'Institut des NanoSciences de Paris'),
(121201, 98238, 'en', 'name', 'American Samoa Government'),
(121202, 98239, 'en', 'name', 'GoiƔs State University'),
(121203, 98239, 'pt', 'name', 'Universidade Estadual de GoiƔs'),
(121204, 98240, 'fr', 'name', 'Institut de MicroƩlectronique, ElectromagnƩtisme et Photonique'),
(121205, 98241, 'en', 'name', 'Istec Business School Paris'),
(121206, 98242, 'en', 'name', 'Federal Rostov Agrarian Research Centre'),
(121207, 98242, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Ростовский Аграрный ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр'),
(121208, 98243, 'en', 'name', 'Shape Memory Alloys and Intelligent Systems Laboratory'),
(121209, 98243, 'fr', 'name', 'Laboratoire sur les alliages à mémoire et les systèmes intelligents'),
(121210, 98244, 'no_lang_code', 'name', 'CETEMMSA Technological Centre (Spain)'),
(121211, 98245, 'az', 'name', 'Tafakkur University'),
(121212, 98246, 'de', 'name', 'Deutsches ArchƤologisches Institut, Orient-Abteilung'),
(121213, 98246, 'en', 'name', 'German Archaeological Institute, Orient Department'),
(121214, 98247, 'en', 'name', 'Vodafone Foundation'),
(121215, 98248, 'en', 'name', 'Goshen College'),
(121216, 98249, 'en', 'name', 'VA Caribbean Healthcare System'),
(121217, 98249, 'es', 'name', 'Hospital de Veteranos'),
(121218, 98250, 'en', 'name', 'FELIX Laboratory'),
(121219, 98251, 'en', 'name', 'Naval Weapons Center'),
(121220, 98252, 'en', 'name', 'NIHR Collaboration for Leadership in Applied Health Research and Care North West Coast'),
(121221, 98253, 'fr', 'name', 'Institut des Sciences du Mouvement Etienne-Jules Marey'),
(121222, 98254, 'it', 'name', 'Fondazione ICSC Centro Nazionale di Ricerca in High Performance Computing, Big Data e Quantum Computing'),
(121223, 98255, 'en', 'name', 'Virginia Mason Federal Way Medical Center'),
(121224, 98256, 'en', 'name', 'Institute of Radiation Physics'),
(121225, 98256, 'fr', 'name', 'Institut de radiophysique'),
(121226, 98257, 'fr', 'name', 'Fondation Jean-Marie Lehn, Le Centre International de Recherche aux FrontiĆØres de la Chimie'),
(121227, 98258, 'en', 'name', 'Centre for Climate Change Economics and Policy'),
(121228, 98259, 'en', 'name', 'State Key Laboratory of Biomacromolecules'),
(121229, 98259, 'zh', 'name', 'ē”Ÿē‰©å¤§åˆ†å­å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121230, 98260, 'fr', 'name', 'Institut de Combustion AƩrothermique RƩactivitƩ et Environnement'),
(121231, 98261, 'en', 'name', 'Compute Canada'),
(121232, 98261, 'fr', 'name', 'Calcul canada'),
(121233, 98262, 'en', 'name', 'University of Hawaii System'),
(121234, 98262, 'es', 'name', 'Universidad de HawƔi'),
(121235, 98262, 'fr', 'name', 'Université d''hawaï'),
(121236, 98263, 'en', 'name', 'Sentinel North'),
(121237, 98263, 'fr', 'name', 'Sentinelle Nord'),
(121238, 98264, 'en', 'name', 'Nebrija University'),
(121239, 98264, 'es', 'name', 'Universidad Nebrija'),
(121240, 98265, 'en', 'name', 'United States Department of the Interior'),
(121241, 98265, 'es', 'name', 'Departamento del Interior de los Estados Unidos'),
(121242, 98265, 'fr', 'name', 'DĆ©partement de l''intĆ©rieur des Ɖtats-unis'),
(121243, 98266, 'en', 'name', 'Phantoms Foundation'),
(121244, 98266, 'es', 'name', 'Fundacion Phantoms'),
(121245, 98267, 'en', 'name', 'Frederick National Laboratory for Cancer Research'),
(121246, 98268, 'en', 'name', 'Huntsman Cancer Institute'),
(121247, 98269, 'fr', 'name', 'Cancers et PrƩventions'),
(121248, 98270, 'no_lang_code', 'name', 'GPTech (Spain)'),
(121249, 98271, 'pt', 'name', 'Hospital UniversitƔrio Regional de MaringƔ'),
(121250, 98272, 'en', 'name', 'Ontario Innovation Trust'),
(121251, 98272, 'fr', 'name', 'Ontario Fonds ontarien pour l''innovation'),
(121252, 98273, 'en', 'name', 'GNS Science'),
(121253, 98274, 'en', 'name', 'UNAD Florida'),
(121254, 98275, 'no_lang_code', 'name', 'Family Process Institute (United States)'),
(121255, 98276, 'es', 'name', 'Colegio Universitario de San Juan'),
(121256, 98277, 'no_lang_code', 'name', 'Eastern Research Group (United States)'),
(121257, 98278, 'en', 'name', 'Pavements and Bituminous Materials Laboratory'),
(121258, 98278, 'fr', 'name', 'Laboratoire sur les chaussƩes et matƩriaux bitumineux'),
(121259, 98279, 'pt', 'name', 'Iscte-Conhecimento e Inovação é um Centro de Valorização e Transferência de Tecnologias'),
(121260, 98280, 'de', 'name', 'Landes Tirols'),
(121261, 98281, 'en', 'name', 'Manchester Community College - Connecticut'),
(121262, 98282, 'en', 'name', 'Ebro Observatory'),
(121263, 98282, 'es', 'name', 'Observatori de l''Ebre, Observatorio del Ebro'),
(121264, 98283, 'en', 'name', 'Australian Synchrotron'),
(121265, 98284, 'en', 'name', 'The American College of Greece'),
(121266, 98284, 'fr', 'name', 'Collège américain de grèce'),
(121267, 98285, 'fr', 'name', 'Histoire et Dynamique des Espaces Anglophones: du RƩel au Virtuel'),
(121268, 98286, 'it', 'name', 'Istituto Nazionale di Ricerca Metrologica'),
(121269, 98287, 'en', 'name', 'Princeton Plasma Physics Laboratory'),
(121270, 98288, 'tr', 'name', 'Germencik Devlet Hastanesi'),
(121271, 98289, 'en', 'name', 'Kurdistan Institute for Strategic Studies and Scientific Research'),
(121272, 98289, 'ki', 'name', 'ŲÆŪ•Ų³ŲŖŪ•ŪŒ Ś©ŁˆŲ±ŲÆŲ³ŲŖŲ§Ł†ŪŒ ŲØŪ† دراساتی ستراتیجی و ŲŖŁˆŪŽŚ˜ŪŒŁ†Ū•ŁˆŪ•ŪŒ Ų²Ų§Ł†Ų³ŲŖŪŒ'),
(121273, 98290, 'en', 'name', 'Connecticut State Colleges and Universities'),
(121274, 98291, 'fr', 'name', 'Fondation CentraleSupƩlec'),
(121275, 98292, 'no_lang_code', 'name', 'Aptar (France)'),
(121276, 98293, 'en', 'name', 'United States Department of State'),
(121277, 98293, 'es', 'name', 'Departamento de Estado de los Estados Unidos'),
(121278, 98293, 'fr', 'name', 'DĆ©partement d''Ɖtat des Ɖtats-unis'),
(121279, 98294, 'es', 'name', 'Hospital Militar Regional de Especialidades Guadalajara'),
(121280, 98295, 'en', 'name', 'National University of Sciences and Technology'),
(121281, 98296, 'es', 'name', 'Casa de VelƔzquez'),
(121282, 98297, 'en', 'name', 'State Key Laboratory of Resources and Environmental Information System'),
(121283, 98297, 'zh', 'name', 'čµ„ęŗäøŽēŽÆå¢ƒäæ”ęÆē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121284, 98298, 'bn', 'name', 'ভারতীয় ą¦Ŗą§ą¦°ą§Œą¦¦ą§ą¦Æą§‹ą¦—ą¦æą¦•ą§€ ą¦øą¦‚ą¦øą§ą¦„ą¦¾ą¦Ø, খঔ়গপুর'),
(121285, 98298, 'en', 'name', 'Indian Institute of Technology Kharagpur'),
(121286, 98298, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤–ą¤”ą¤¼ą¤—ą¤Ŗą„ą¤°'),
(121287, 98298, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“–ą“°ą“—ąµā€Œą“Ŗąµ‚ąµ¼'),
(121288, 98298, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾, ą¤–ą¤”ą„ą¤—ą¤Ŗą„‚ą¤°'),
(121289, 98298, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®°ą®•ąÆą®ŖąÆ‚ą®°ąÆ'),
(121290, 98299, 'en', 'name', 'State Key Laboratory of Marine Pollution'),
(121291, 98299, 'zh', 'name', 'ęµ·ę“‹ę±”ęŸ“å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121292, 98300, 'fr', 'name', 'Centre de recherche juridique Pothier'),
(121293, 98301, 'en', 'name', 'Children''s National'),
(121294, 98302, 'de', 'name', 'MeteoSchweiz'),
(121295, 98302, 'en', 'name', 'Federal Office of Meteorology and Climatology MeteoSwiss'),
(121296, 98302, 'fr', 'name', 'MƩtƩoSuisse'),
(121297, 98302, 'it', 'name', 'MeteoSvizzera'),
(121298, 98303, 'en', 'name', 'Sunnybrook Health Science Centre'),
(121299, 98304, 'no_lang_code', 'name', 'WWF-Cambodia'),
(121300, 98305, 'en', 'name', 'Pacific Islands University'),
(121301, 98306, 'en', 'name', 'Integrative Biology of Marine Organisms'),
(121302, 98306, 'fr', 'name', 'Biologie IntƩgrative des Organismes Marins'),
(121303, 98307, 'en', 'name', 'Shanghai Artificial Intelligence Laboratory'),
(121304, 98307, 'zh', 'name', 'äøŠęµ·äŗŗå·„ę™ŗčƒ½å®žéŖŒå®¤'),
(121305, 98308, 'de', 'name', 'Schweizerisches Zentrum für Angewandte Humantoxikologie'),
(121306, 98308, 'en', 'name', 'Swiss Centre for Applied Human Toxicology'),
(121307, 98308, 'fr', 'name', 'Centre Suisse de Toxicologie Humaine AppliquƩe'),
(121308, 98308, 'it', 'name', 'Centro Svizzero di Tossicologia Umana Applicata'),
(121309, 98309, 'en', 'name', 'College of Management Academic Studies'),
(121310, 98310, 'en', 'name', 'Core Research Center'),
(121311, 98311, 'en', 'name', 'National Coordination Office'),
(121312, 98312, 'it', 'name', 'Foraggere e Lattiero Casearie'),
(121313, 98313, 'no_lang_code', 'name', 'Alleo Labs (United States)'),
(121314, 98314, 'en', 'name', 'Faculty of Humanities and Social Sciences in Zagreb'),
(121315, 98314, 'hr', 'name', 'Filozofski fakultet u Zagrebu'),
(121316, 98315, 'en', 'name', 'CentrEau - Quebec Water Management Research Centre'),
(121317, 98315, 'fr', 'name', 'CentrEau - Centre QuƩbƩcois de Recherche sur la Gestion de l''Eau'),
(121318, 98316, 'en', 'name', 'Saint-Antoine Research Center'),
(121319, 98316, 'fr', 'name', 'Centre de Recherche Saint-Antoine'),
(121320, 98317, 'en', 'name', 'Institute of Biomolecular Chemistry'),
(121321, 98317, 'it', 'name', 'Istituto di Chimica Biomolecolare'),
(121322, 98318, 'en', 'name', 'NIHR School for Primary Care Research'),
(121323, 98319, 'en', 'name', 'State Key Laboratory of Microbial Technology'),
(121324, 98319, 'zh', 'name', 'å¾®ē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121325, 98320, 'fr', 'name', 'Ɖco-Anthropologie'),
(121326, 98321, 'en', 'name', 'Eduardo Torroja Institute for Construction Sciences'),
(121327, 98321, 'es', 'name', 'Instituto de Ciencias de La Construcción Eduardo Torroja'),
(121328, 98322, 'fr', 'name', 'Institut de Recherche en GƩnie Civil et MƩcanique'),
(121329, 98323, 'en', 'name', 'Taylor Family Institute for Innovative Psychiatric Research'),
(121330, 98324, 'en', 'name', 'Farm Products Council of Canada'),
(121331, 98324, 'fr', 'name', 'Conseil des produits agricoles du Canada'),
(121332, 98325, 'en', 'name', 'Beaumont Hospital, Dearborn'),
(121333, 98326, 'id', 'name', 'STIE Enam Enam Kendari'),
(121334, 98327, 'en', 'name', 'National Geological and Geophysical Data Preservation Program'),
(121335, 98328, 'en', 'name', 'Bailey-Boushay House'),
(121336, 98329, 'en', 'name', 'Laboratory Image, City, Environment'),
(121337, 98329, 'fr', 'name', 'Laboratoire Image, Ville, Environnement'),
(121338, 98330, 'en', 'name', 'Cancer Hospital of Chinese Academy of Medical Sciences'),
(121339, 98330, 'zh', 'name', 'äø­å›½åŒ»å­¦ē§‘å­¦é™¢č‚æē˜¤åŒ»é™¢'),
(121340, 98331, 'en', 'name', 'Mariupol State University'),
(121341, 98331, 'ru', 'name', 'ŠœŠ°Ń€ŠøŃƒŠæŠ¾Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(121342, 98331, 'uk', 'name', 'ŠœŠ°Ń€Ń–ŃƒŠæŠ¾Š»ŃŒŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(121343, 98332, 'fr', 'name', 'Institut du Fer Ć  Moulin'),
(121344, 98333, 'en', 'name', 'Office of Regulatory and Policy Affairs'),
(121345, 98334, 'en', 'name', 'Anhui Medical University'),
(121346, 98334, 'zh', 'name', 'å®‰å¾½åŒ»ē§‘å¤§å­¦'),
(121347, 98335, 'es', 'name', 'Solti'),
(121348, 98336, 'en', 'name', 'Fiona Stanley Fremantle Hospitals Group'),
(121349, 98337, 'en', 'name', 'City University of Pasay'),
(121350, 98338, 'de', 'name', 'Nationaler Forschungsschwerpunkt Digitale Fabrikation'),
(121351, 98338, 'en', 'name', 'National Centre of Competence in Research Digital Fabrication'),
(121352, 98339, 'sv', 'name', 'SprƄkbanken Text'),
(121353, 98340, 'es', 'name', 'Complejo Hospitalario Universitario de Ferrol'),
(121354, 98341, 'en', 'name', 'Institute of Physical Chemistry Blas Cabrera'),
(121355, 98341, 'es', 'name', 'Instituto de QuĆ­mica FĆ­sica Blas Cabrera'),
(121356, 98342, 'fr', 'name', 'Architecture et RƩactivitƩ de l''arN'),
(121357, 98343, 'en', 'name', 'Colorado Clinical and Translational Sciences Institute'),
(121358, 98344, 'fr', 'name', 'Institut SupƩrieur d''Agriculture RhƓne-Alpes'),
(121359, 98345, 'en', 'name', 'Weston Havens Foundation'),
(121360, 98346, 'en', 'name', 'University of Pennsylvania Press'),
(121361, 98347, 'en', 'name', 'Port Institute for Studies and Cooperation'),
(121362, 98347, 'es', 'name', 'Instituto Portuario de Estudios y Cooperación'),
(121363, 98348, 'cy', 'name', 'Canolfan Polisi Cyhoeddus Cymru'),
(121364, 98348, 'en', 'name', 'Wales Centre for Public Policy'),
(121365, 98349, 'en', 'name', 'State Key Laboratory of Coal Combustion'),
(121366, 98349, 'zh', 'name', 'ē…¤ē‡ƒēƒ§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121367, 98350, 'en', 'name', 'Hunan Communication Polytechnic'),
(121368, 98350, 'zh', 'name', 'ę¹–å—äŗ¤é€ščŒäøšęŠ€ęœÆå­¦é™¢'),
(121369, 98351, 'no_lang_code', 'name', 'Marconi Electronic Systems (United Kingdom)'),
(121370, 98352, 'en', 'name', 'NestlƩ Health Science'),
(121371, 98352, 'no_lang_code', 'name', 'NestlƩ Health Science (United States)'),
(121372, 98353, 'en', 'name', 'National Microelectronics Center'),
(121373, 98353, 'es', 'name', 'Centro Nacional de Microelectrónica'),
(121374, 98354, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„ŁƒŲ© Ų£Ų±ŁˆŁ‰'),
(121375, 98354, 'en', 'name', 'Queen Arwa University'),
(121376, 98355, 'es', 'name', 'Hospital Lluis Alcanyis'),
(121377, 98356, 'en', 'name', 'Saint-Jean-sur-Richelieu Research and Development Centre'),
(121378, 98356, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Saint-Jean-sur-Richelieu'),
(121379, 98357, 'en', 'name', 'Jilin Provincial Institute of Occupational Health'),
(121380, 98357, 'zh', 'name', 'å‰ęž—ēœčŒäøšē—…é˜²ę²»é™¢'),
(121381, 98358, 'en', 'name', 'Ritsumeikan Asia Pacific University'),
(121382, 98358, 'ja', 'name', '立命館アジア太平擋大学'),
(121383, 98359, 'id', 'name', 'Institut Agama Islam Negeri Bengkulu'),
(121384, 98360, 'en', 'name', 'EXP, EXP (Canada)'),
(121385, 98361, 'en', 'name', 'NIHR Maudsley Dementia Biomedical Research Unit'),
(121386, 98362, 'pt', 'name', 'Centro Superior de Ensino e Pesquisa de Machado'),
(121387, 98363, 'en', 'name', 'State Key Laboratory of High Performance Ceramics and Superfine Microstructure'),
(121388, 98363, 'zh', 'name', 'é«˜ę€§čƒ½é™¶ē“·å’Œč¶…å¾®ē»“ęž„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121389, 98364, 'no_lang_code', 'name', 'Integrated Device Technology (United States)'),
(121390, 98365, 'en', 'name', 'National Geographic Institute'),
(121391, 98365, 'es', 'name', 'Instituto GeogrƔfico Nacional'),
(121392, 98366, 'fr', 'name', 'Direction GƩnƩrale DƩlƩguƩe aux Ressources'),
(121393, 98367, 'en', 'name', 'Royal Victoria Eye and Ear Hospital'),
(121394, 98368, 'en', 'name', 'Global Frontier Hybrid Interface Materials'),
(121395, 98369, 'en', 'name', 'CHI Health Creighton University Medical Center - Bergan Mercy'),
(121396, 98370, 'fr', 'name', 'Laboratoire de Chimie Physique - MatiĆØre et Rayonnement'),
(121397, 98371, 'en', 'name', 'Lawrence Livermore National Security'),
(121398, 98372, 'en', 'name', 'Kailash Healthcare'),
(121399, 98373, 'en', 'name', 'Asia University'),
(121400, 98373, 'zh', 'name', 'äŗžę“²å¤§å­ø'),
(121401, 98374, 'en', 'name', 'Institute of Geology, China Earthquake Administration'),
(121402, 98374, 'zh', 'name', 'äø­å›½åœ°éœ‡å±€åœ°č“Øē ”ē©¶ę‰€'),
(121403, 98375, 'en', 'name', 'Qingdao Municipal Science and Technology Bureau'),
(121404, 98376, 'en', 'name', 'BotĆ­n Foundation'),
(121405, 98376, 'es', 'name', 'Fundación Botín'),
(121406, 98377, 'en', 'name', 'State Key Laboratory of Animal Nutrition'),
(121407, 98377, 'zh', 'name', 'åŠØē‰©č„å…»å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121408, 98378, 'pt', 'name', 'Faculdade EstƔcio de Alagoas'),
(121409, 98379, 'ko', 'name', 'ģ•ˆķŠøė”œģ  '),
(121410, 98379, 'no_lang_code', 'name', 'Anterogen (South Korea)'),
(121411, 98380, 'en', 'name', 'Vinnytsia Mykhailo Kotsiubynskyi State Pedagogical University'),
(121412, 98380, 'uk', 'name', 'Š’Ń–Š½Š½ŠøŃ†ŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠœŠøŃ…Š°Š¹Š»Š° ŠšŠ¾Ń†ŃŽŠ±ŠøŠ½ŃŃŒŠŗŠ¾Š³Š¾'),
(121413, 98381, 'fr', 'name', 'Centre d’Etude et de recherche Editer/InterprĆ©ter'),
(121414, 98382, 'es', 'name', 'Fundación Pública Andaluza Centro de las Nuevas Tecnologías del Agua'),
(121415, 98383, 'en', 'name', 'State Key Laboratory of Advanced Welding and Joining'),
(121416, 98383, 'zh', 'name', 'å…ˆčæ›ē„ŠęŽ„äøŽčæžęŽ„å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121417, 98384, 'es', 'name', 'Hospital General del Sur de Quito, IESS'),
(121418, 98385, 'fr', 'name', 'Centre intĆ©grĆ© universitaire de santĆ© et de services sociaux de l''Est-de-l''Ǝle-de-MontrĆ©al'),
(121419, 98386, 'en', 'name', 'Mayo Clinic in Florida'),
(121420, 98387, 'fr', 'name', 'Laboratoire d’études en droits fondamentaux, des Ć©changes internationaux et de la mer'),
(121421, 98388, 'no_lang_code', 'name', 'EnergĆ­a & Celulosa (Spain)'),
(121422, 98389, 'en', 'name', 'Astrophysics Science Division'),
(121423, 98390, 'en', 'name', 'Organizational Engineering Research Laboratory for the Digital Enterprise'),
(121424, 98390, 'fr', 'name', 'Laboratoire de recherche sur l’ingĆ©nierie des organisations dans un contexte d’entreprise numĆ©rique'),
(121425, 98391, 'en', 'name', 'University Hospital of the University of SĆ£o Paulo'),
(121426, 98391, 'pt', 'name', 'Hospital UniversitÔrio da Universidade de São Paulo'),
(121427, 98392, 'en', 'name', 'NGIS, NGIS (Australia)'),
(121428, 98393, 'en', 'name', 'ASrid'),
(121429, 98393, 'ja', 'name', 'äŗŗć‚¢ć‚¹ćƒŖćƒƒćƒ‰'),
(121430, 98394, 'fr', 'name', 'Nutrition, Inflammation et axe Microbiote-Intestin-Cerveau'),
(121431, 98395, 'es', 'name', 'SINPROMI, Sociedad Insular para la Promoción de las personas con discapacidad'),
(121432, 98396, 'en', 'name', 'CICE Consortium'),
(121433, 98397, 'en', 'name', 'National Cancer Institute'),
(121434, 98397, 'es', 'name', 'Instituto Nacional del CƔncer'),
(121435, 98397, 'fr', 'name', 'Institut National du Cancer'),
(121436, 98398, 'fr', 'name', 'UniversitƩ Dakar-Bourguiba'),
(121437, 98399, 'es', 'name', 'Instituto de FĆ­sica de Cantabria'),
(121438, 98400, 'en', 'name', 'Ministry of Finance'),
(121439, 98400, 'es', 'name', 'Ministerio de Hacienda y Función Pública'),
(121440, 98401, 'fr', 'name', 'Normandie Innovation MarchƩ Entreprise Consommation'),
(121441, 98402, 'cs', 'name', 'VysokÔ Ŕkola Evropských a RegionÔlních Studií, VysokÔ Ŕkola evropských a regionÔlních studií, z. ú.'),
(121442, 98402, 'en', 'name', 'The College of European and Regional Studies'),
(121443, 98403, 'en', 'name', 'Foundation for Transport and Energy Research and Development'),
(121444, 98404, 'en', 'name', 'Community of Madrid'),
(121445, 98404, 'es', 'name', 'Comunidad de Madrid'),
(121446, 98405, 'en', 'name', 'Japanese Society of Toxicologic Pathology'),
(121447, 98405, 'ja', 'name', 'ę—„ęœ¬ęÆ’ę€§ē—…ē†å­¦ä¼š'),
(121448, 98406, 'en', 'name', 'AlmuƱecar International School'),
(121449, 98407, 'fr', 'name', 'Canal Savoir'),
(121450, 98408, 'pt', 'name', 'Centro UniversitÔrio das Américas (FAM) - São Paulo'),
(121451, 98409, 'en', 'name', 'Oak Ridge Institute for Science and Education'),
(121452, 98410, 'en', 'name', 'National Institutes for the Humanities'),
(121453, 98410, 'ja', 'name', 'äŗŗé–“ę–‡åŒ–ē ”ē©¶ę©Ÿę§‹'),
(121454, 98411, 'es', 'name', 'Hospital Universitario Puerta del Mar'),
(121455, 98412, 'es', 'name', 'Consejería de Desarrollo Educativo y Formación Porfesional'),
(121456, 98413, 'no_lang_code', 'name', 'AB-Biotics (Spain)'),
(121457, 98414, 'en', 'name', 'Pathophysiology, Diagnosis and Treatment of Bone Diseases'),
(121458, 98414, 'fr', 'name', 'Physiopathologie, Diagnostic et Traitements des Maladies Osseuses'),
(121459, 98415, 'en', 'name', 'Chandler–Gilbert Community College'),
(121460, 98416, 'en', 'name', 'Air Force Institute of Technology'),
(121461, 98416, 'pl', 'name', 'Instytut Techniczny Wojsk Lotniczych'),
(121462, 98417, 'en', 'name', 'State Key Laboratory of Compressor Technology'),
(121463, 98417, 'zh', 'name', 'åŽ‹ē¼©ęœŗęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121464, 98418, 'de', 'name', 'WüSpace e.V.'),
(121465, 98419, 'en', 'name', 'Breast Cancer Recovery'),
(121466, 98420, 'en', 'name', 'Fermilab Accelerator Complex'),
(121467, 98421, 'en', 'name', 'Mental Health Research Institute'),
(121468, 98422, 'en', 'name', 'State Key Laboratory for Geomechanics and Deep Underground Engineering'),
(121469, 98422, 'zh', 'name', 'ę·±éƒØå²©åœŸåŠ›å­¦äøŽåœ°äø‹å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121470, 98423, 'fr', 'name', 'Agence Nationale pour la Gestion des DƩchets Radioactifs'),
(121471, 98424, 'nl', 'name', 'Eerste Kamer der Staten-Generaal'),
(121472, 98424, 'no_lang_code', 'name', 'Senate'),
(121473, 98425, 'en', 'name', 'European Union Satellite Centre'),
(121474, 98425, 'es', 'name', 'Centro de Satélites de la Unión Europea'),
(121475, 98426, 'en', 'name', 'Alte University'),
(121476, 98427, 'es', 'name', 'Fundacion CITA Alzheimer'),
(121477, 98427, 'eu', 'name', 'CITA-alzheimer Fundazioa'),
(121478, 98428, 'fr', 'name', 'Centre de droit comparƩ du travail et de la sƩcuritƩ sociale'),
(121479, 98429, 'en', 'name', 'University of Doha for Science and Technology'),
(121480, 98430, 'en', 'name', 'Veterinary Services and Animal Health'),
(121481, 98431, 'en', 'name', 'Office of Cybersecurity, Energy Security, and Emergency Response'),
(121482, 98432, 'en', 'name', 'Geosciences and Environmental Change Science Center'),
(121483, 98433, 'en', 'name', 'Gujarat Council on Science and Technology'),
(121484, 98434, 'en', 'name', 'ARC Centre for Forest Value'),
(121485, 98435, 'en', 'name', '"Miguel Antonio CatalƔn" Physics Center'),
(121486, 98435, 'es', 'name', 'Centro de Fƭsica Miguel Antonio CatalƔn'),
(121487, 98436, 'en', 'name', 'China University of Petroleum, Beijing'),
(121488, 98436, 'zh', 'name', 'äø­å›½ēŸ³ę²¹å¤§å­¦'),
(121489, 98437, 'en', 'name', 'Leverhulme Centre for Integrative Research on Agriculture and Health'),
(121490, 98438, 'en', 'name', 'Astellas Pharmaceuticals'),
(121491, 98438, 'no_lang_code', 'name', 'Astellas Pharma (Canada)'),
(121492, 98439, 'es', 'name', 'Instituto Superior de CiĆŖncias Policiais'),
(121493, 98440, 'da', 'name', 'HĆøjteknologifonden'),
(121494, 98440, 'en', 'name', 'Danish National Advanced Technology Foundation'),
(121495, 98441, 'fr', 'name', 'Immunologie, Immunopathologie et Chimie ThƩrapeutique'),
(121496, 98442, 'en', 'name', 'UCD Centre for Veterinary Epidemiology and Risk Analysis'),
(121497, 98443, 'it', 'name', 'Regione Autonoma della Sardegna'),
(121498, 98444, 'de', 'name', 'Clienia AG'),
(121499, 98445, 'en', 'name', 'Federal University of Rio Grande do Sul'),
(121500, 98445, 'pt', 'name', 'Universidade Federal do Rio Grande do Sul'),
(121501, 98446, 'en', 'name', 'Steel Authority of India Limited'),
(121502, 98447, 'en', 'name', 'Youth Scotland'),
(121503, 98448, 'id', 'name', 'Universitas PGRI Mahadewa Indonesia'),
(121504, 98449, 'id', 'name', 'Universitas Pembangunan Nasional Veteran Yogyakarta'),
(121505, 98450, 'en', 'name', 'Sanitas Las Rozas Medical Centre'),
(121506, 98450, 'es', 'name', 'Centro MƩdico Sanitas Las Rozas'),
(121507, 98451, 'fr', 'name', 'Unité de Recherche Pluridisciplinaire Prairies et Plantes Fourragères'),
(121508, 98452, 'en', 'name', 'Institute of Atmospheric Physics'),
(121509, 98452, 'zh', 'name', '中国科学院大气物理研究所'),
(121510, 98453, 'en', 'name', 'Protein Information Resource'),
(121511, 98454, 'en', 'name', 'British Society for Neuroendocrinology'),
(121512, 98455, 'es', 'name', 'Fundación Medina'),
(121513, 98456, 'fr', 'name', 'Groupe de Recherches sur l''EnergƩtique des Milieux IonisƩs'),
(121514, 98457, 'en', 'name', 'Accelleran NV'),
(121515, 98457, 'no_lang_code', 'name', 'Accelleran NV (Belgium)'),
(121516, 98458, 'en', 'name', 'Packard Center'),
(121517, 98459, 'en', 'name', 'University College at Rockland'),
(121518, 98460, 'en', 'name', 'Medical University of Ilam'),
(121519, 98460, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų§ŪŒŁ„Ų§Ł…'),
(121520, 98461, 'fr', 'name', 'Centre de recherche Versailles Saint-Quentin Institutions Publiques'),
(121521, 98462, 'no_lang_code', 'name', 'Assheuer + Pott (Germany)'),
(121522, 98463, 'ca', 'name', 'Unitat de Tecnologia Marina'),
(121523, 98463, 'en', 'name', 'Marine Technology Unit'),
(121524, 98463, 'es', 'name', 'Unidad de TecnologĆ­a Marina'),
(121525, 98464, 'de', 'name', 'Institut für Produktives Lernen in Europa'),
(121526, 98464, 'en', 'name', 'Institute for Productive Learning in Europe'),
(121527, 98465, 'en', 'name', 'European Metrology Programme for Innovation and Research'),
(121528, 98466, 'en', 'name', 'State Key Laboratory of Rail Transit Control and Safety'),
(121529, 98466, 'zh', 'name', 'č½Øé“äŗ¤é€šęŽ§åˆ¶äøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121530, 98467, 'en', 'name', 'State University of ParĆ”'),
(121531, 98467, 'pt', 'name', 'Universidade do Estado do ParĆ”'),
(121532, 98468, 'en', 'name', 'European Mathematical Society'),
(121533, 98469, 'no_lang_code', 'name', 'Shenyang Sinochem Agrochemicals R&D Co., Ltd. (China)'),
(121534, 98469, 'zh', 'name', 'ę²ˆé˜³äø­åŒ–å†œčÆåŒ–å·„ē ”å‘ęœ‰é™å…¬åø'),
(121535, 98470, 'fr', 'name', 'DƩlƩgation Midi PyrƩnƩes'),
(121536, 98471, 'no_lang_code', 'name', 'Bloomsbury (United States)'),
(121537, 98472, 'en', 'name', 'University of Chicago Medicine Comprehensive Cancer Center'),
(121538, 98473, 'no_lang_code', 'name', 'Pareto BDM (Australia)'),
(121539, 98474, 'fr', 'name', 'Laboratoire de Physique et Chimie des Nano-Objets'),
(121540, 98475, 'en', 'name', 'University Health Network'),
(121541, 98476, 'fr', 'name', 'ExcitabilitƩ Nerveuse et ThƩrapeutique'),
(121542, 98477, 'en', 'name', 'Northern Marianas College'),
(121543, 98478, 'no_lang_code', 'name', 'Hughes Aircraft (United States)'),
(121544, 98479, 'en', 'name', 'University of Iowa Health Care'),
(121545, 98480, 'en', 'name', 'NIHR Greater Manchester Patient Safety Translational Research Centre'),
(121546, 98481, 'en', 'name', 'SickKids Foundation'),
(121547, 98482, 'en', 'name', 'Innovalia Association'),
(121548, 98482, 'es', 'name', 'Asociación Innovalia'),
(121549, 98483, 'en', 'name', 'Missouri Department of Conservation'),
(121550, 98484, 'ca', 'name', 'Centro OceanogrƔfico de Illes Balears');
INSERT INTO `ror_settings` VALUES
(121551, 98484, 'en', 'name', 'Oceanographic Center of Illes Balears'),
(121552, 98485, 'es', 'name', 'Hospital Oncológico Andrés Grillasca'),
(121553, 98486, 'en', 'name', 'European Center for Security and Privacy by Design'),
(121554, 98487, 'en', 'name', 'State Key Laboratory of Pharmaceutical Biotechnology'),
(121555, 98487, 'zh', 'name', 'åŒ»čÆē”Ÿē‰©ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121556, 98488, 'en', 'name', 'UNC Lineberger Comprehensive Cancer Center'),
(121557, 98489, 'en', 'name', 'State Key Laboratory of Power System and Generation Equipment'),
(121558, 98489, 'zh', 'name', 'ē”µåŠ›ē³»ē»ŸåŠå¤§åž‹å‘ē”µč®¾å¤‡å®‰å…ØęŽ§åˆ¶å’Œä»æēœŸå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121559, 98490, 'en', 'name', 'Federal University of Maranhão'),
(121560, 98490, 'pt', 'name', 'Universidade Federal do Maranhão'),
(121561, 98491, 'no_lang_code', 'name', 'LG (China)'),
(121562, 98492, 'en', 'name', 'Institute of Cancer Research'),
(121563, 98493, 'no_lang_code', 'name', 'Uniboard (Canada)'),
(121564, 98494, 'en', 'name', 'Naval Facilities Engineering Service Center'),
(121565, 98495, 'en', 'name', 'State Key Laboratory of Enhanced Oil Recovery'),
(121566, 98495, 'zh', 'name', 'ęé«˜ēŸ³ę²¹é‡‡ę”¶ēŽ‡å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121567, 98496, 'en', 'name', 'North Metropolitan Health Service'),
(121568, 98497, 'en', 'name', 'The Ichiro Kanehara Foundation for the Promotion of Medical Sciences and Medical Care'),
(121569, 98497, 'ja', 'name', 'ē›Šč²”å›£ę³•äŗŗé‡‘åŽŸäø€éƒŽčØ˜åæµåŒ»å­¦åŒ»ē™‚ęŒÆčˆˆč²”å›£'),
(121570, 98498, 'en', 'name', 'Emory Global Health Institute'),
(121571, 98499, 'no_lang_code', 'name', 'British Aerospace (United Kingdom)'),
(121572, 98500, 'en', 'name', 'Crawford University'),
(121573, 98501, 'no_lang_code', 'name', 'Shijiazhuang Yiling Pharmaceutical (China)'),
(121574, 98501, 'zh', 'name', 'ēŸ³å®¶åŗ„ä»„å²­čÆäøšč‚”ä»½ęœ‰é™å…¬åø 萄业'),
(121575, 98502, 'en', 'name', 'Institute for Research and Innovation in Biomedicine'),
(121576, 98503, 'en', 'name', 'Institute of Cancer Molecular and Cellular Biology of Salamanca'),
(121577, 98503, 'es', 'name', 'Instituto de Biologƭa Molecular y Celular del CƔncer de Salamanca'),
(121578, 98504, 'fr', 'name', 'Institut Jean Le Rond d''Alembert'),
(121579, 98505, 'en', 'name', 'Scottish Home and Health Department'),
(121580, 98506, 'en', 'name', 'Edward M. Calvo Cancer Foundation'),
(121581, 98507, 'en', 'name', 'Office of Academic Affiliations'),
(121582, 98508, 'en', 'name', 'Xi''an Institute of Optics and Precision Mechanics'),
(121583, 98508, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č„æå®‰å…‰å­¦ē²¾åÆ†ęœŗę¢°ē ”ē©¶ę‰€'),
(121584, 98509, 'es', 'name', 'Hospital Gineco ObstƩtrico Isidro Ayora'),
(121585, 98510, 'en', 'name', 'Dartmouth Cancer Center'),
(121586, 98511, 'en', 'name', 'Products, Processes and Systems Engineering Laboratory'),
(121587, 98511, 'fr', 'name', 'Laboratoire d''ingénierie des produits, procédés et systèmes'),
(121588, 98512, 'ca', 'name', 'Institut de CiĆØncies del Cosmos'),
(121589, 98512, 'en', 'name', 'Institute of Cosmos Sciences'),
(121590, 98513, 'en', 'name', 'San Juan Quarantine Station'),
(121591, 98514, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚ŲÆŁŠŲ³ يوسف'),
(121592, 98514, 'en', 'name', 'Saint Joseph University'),
(121593, 98514, 'fr', 'name', 'UniversitƩ Saint-Joseph'),
(121594, 98514, 'hy', 'name', 'ÕÕøÖ‚Ö€Õ¢ ŌŗÕøÕ¦Õ„Ö†Õ« Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(121595, 98515, 'en', 'name', 'Ministry of Education, Science, Research and Sport of the Slovak Republic'),
(121596, 98516, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų“Ų· العرب الجامعة'),
(121597, 98516, 'en', 'name', 'Shatt Al-Arab University College'),
(121598, 98517, 'en', 'name', 'State Key Laboratory of Hydraulic Engineering Simulation and Safety'),
(121599, 98517, 'zh', 'name', 'ę°“åˆ©å·„ēØ‹ä»æēœŸäøŽå®‰å…Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121600, 98518, 'en', 'name', 'Institute for Vegetable Crops'),
(121601, 98518, 'no_lang_code', 'name', 'Institut za povrtarstvo Smederevska Palanka'),
(121602, 98519, 'es', 'name', 'Complexo Hospitalario Universitario A CoruƱa'),
(121603, 98520, 'da', 'name', 'Egmont Fonden'),
(121604, 98520, 'en', 'name', 'Egmont Foundation'),
(121605, 98521, 'en', 'name', 'Montreal Heart Institute Foundation'),
(121606, 98521, 'fr', 'name', 'Fondation Institut de Cardiologie de MontrƩal'),
(121607, 98522, 'en', 'name', 'Institute for Biological Research ā€œSiniÅ”a StankoviÄ‡ā€'),
(121608, 98522, 'sr', 'name', 'Institut za bioloÅ”ka istraživanja ā€žSiniÅ”a Stanković", Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за биолошка ŠøŃŃ‚Ń€Š°Š¶ŠøŠ²Š°ŃšŠ° ā€žŠ”ŠøŠ½ŠøŃˆŠ° Дтанковић"'),
(121609, 98523, 'fr', 'name', 'DƩlƩgation RƩgionale Nouvelle-Aquitaine'),
(121610, 98524, 'en', 'name', 'UF Health Cancer Center'),
(121611, 98525, 'en', 'name', 'National Center for Research and Development'),
(121612, 98526, 'en', 'name', 'Infrastructure Security & Energy Restoration'),
(121613, 98527, 'en', 'name', 'State Key Laboratory of Disaster Prevention and Mitigation of Power Grid Transmission and Transformation Equipment'),
(121614, 98527, 'zh', 'name', 'ē”µē½‘č¾“å˜ē”µč®¾å¤‡é˜²ē¾å‡ē¾å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121615, 98528, 'en', 'name', 'Honey bee and Silkworm Research Unit'),
(121616, 98528, 'it', 'name', 'Unita'' di Ricerca di Apicoltura e Bachicoltura'),
(121617, 98529, 'en', 'name', 'Oakland City University'),
(121618, 98530, 'en', 'name', 'Indian Numismatic, Historical and Cultural Research Foundation'),
(121619, 98530, 'hi', 'name', 'इंऔियन ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤°ą¤æą¤øą¤°ą„ą¤š इन ą¤Øą„ą¤®ą¤æą¤øą„ą¤®ą¤¾ą¤Ÿą¤æą¤• ą¤øą„ą¤Ÿą¤”ą„€ą¤ø'),
(121620, 98531, 'en', 'name', 'Nuclear Safety Council'),
(121621, 98531, 'es', 'name', 'Consejo de Seguridad Nuclear'),
(121622, 98532, 'no_lang_code', 'name', 'Nordfriisk Instituut'),
(121623, 98533, 'no_lang_code', 'name', 'Us Too'),
(121624, 98534, 'en', 'name', 'Far Eastern University'),
(121625, 98535, 'en', 'name', 'State Key Laboratory of Soil Erosion and Dryland Farming on the Loess Plateau'),
(121626, 98535, 'zh', 'name', 'é»„åœŸé«˜åŽŸåœŸå£¤ä¾µčš€äøŽę—±åœ°å†œäøšå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121627, 98536, 'en', 'name', 'State Key Laboratory of Alternate Electrical Power System with Renewable Energy Sources'),
(121628, 98536, 'zh', 'name', 'ę–°čƒ½ęŗē”µåŠ›ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121629, 98537, 'en', 'name', 'Saint Mary-of-the-Woods College'),
(121630, 98538, 'en', 'name', 'National Institutes of Health'),
(121631, 98538, 'ms', 'name', 'Institut Kesihatan Negara'),
(121632, 98539, 'en', 'name', 'NASA Earth Science'),
(121633, 98540, 'no_lang_code', 'name', 'Tonix Pharmaceuticals (United States)'),
(121634, 98541, 'en', 'name', 'Dr. Susan Love Foundation for Breast Cancer Research'),
(121635, 98542, 'en', 'name', 'Sanitas CIMA Hospital'),
(121636, 98542, 'es', 'name', 'Hospital Sanitas CIMA'),
(121637, 98543, 'en', 'name', 'Yeshiva University'),
(121638, 98544, 'en', 'name', 'Sanitas La Moraleja University Hospital'),
(121639, 98544, 'es', 'name', 'Hospital Universitario Sanitas La Moraleja'),
(121640, 98545, 'en', 'name', 'Center for Nanoscale Materials'),
(121641, 98546, 'pt', 'name', 'Institutos Nacionais de CiĆŖncia e Tecnologia'),
(121642, 98547, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† ŲØŲ§Ł„Ł…Ł†Ų³ŲŖŁŠŲ±'),
(121643, 98547, 'fr', 'name', 'Ecole Nationale d''IngƩnieurs de Monastir'),
(121644, 98547, 'hy', 'name', 'National Engineering School of Monastir'),
(121645, 98548, 'es', 'name', 'Agencia Sanitaria Costa del Sol'),
(121646, 98549, 'en', 'name', 'ECSI Fibrotools, ECSI Fibrotools (United States)'),
(121647, 98550, 'en', 'name', 'Innovative Ghar Nepal'),
(121648, 98551, 'de', 'name', 'Otto Brenner Stiftung'),
(121649, 98552, 'en', 'name', 'National Comprehensive Cancer Network'),
(121650, 98553, 'fr', 'name', 'Groupe de recherche IdentitƩs et Cultures'),
(121651, 98554, 'de', 'name', 'Europa-UniversitƤt Flensburg'),
(121652, 98555, 'en', 'name', 'Open Access Publishing Association'),
(121653, 98556, 'en', 'name', 'PHENIX laboratory'),
(121654, 98557, 'en', 'name', 'Special Programme for Research and Training in Tropical Diseases'),
(121655, 98558, 'en', 'name', 'Canadian Statistical Sciences Institute'),
(121656, 98558, 'fr', 'name', 'Institut Canadien des Sciences Statistiques'),
(121657, 98559, 'en', 'name', 'Angiogenesis and Cancer Microenvironment Laboratory'),
(121658, 98560, 'no_lang_code', 'name', 'Bio-Medical Science (South Korea)'),
(121659, 98561, 'en', 'name', 'Kokand University'),
(121660, 98561, 'uz', 'name', 'Qoʻqon universiteti'),
(121661, 98562, 'en', 'name', 'Applied Research Laboratory at the University of Hawaiā€˜i'),
(121662, 98563, 'es', 'name', 'Escuela Normal de Zumpango'),
(121663, 98564, 'en', 'name', 'Armstrong Laboratory'),
(121664, 98565, 'es', 'name', 'Universidad Nacional Abierta y a Distancia'),
(121665, 98566, 'en', 'name', 'Higher Education Authority'),
(121666, 98567, 'en', 'name', 'Croucher Foundation'),
(121667, 98568, 'en', 'name', 'Institute of Research Medical and Medicinal Plants Studies'),
(121668, 98568, 'fr', 'name', 'Institut de Recherches MĆ©dicales et d’Etudes des Plantes MĆ©dicinales'),
(121669, 98569, 'no_lang_code', 'name', 'Suez (France)'),
(121670, 98570, 'en', 'name', 'State Key Laboratory of Silkworm Genomic Biology'),
(121671, 98570, 'zh', 'name', 'å®¶čš•åŸŗå› ē»„ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121672, 98571, 'en', 'name', 'Federal University of Pernambuco'),
(121673, 98571, 'pt', 'name', 'Universidade Federal de Pernambuco'),
(121674, 98572, 'en', 'name', 'National Alliance of State Prostate Cancer Coalitions'),
(121675, 98573, 'en', 'name', 'South Atlantic Water Science Center'),
(121676, 98574, 'en', 'name', 'Equinox Corporation'),
(121677, 98574, 'no_lang_code', 'name', 'Equinox Corporation (United States)'),
(121678, 98575, 'en', 'name', 'National Historical Archive'),
(121679, 98575, 'es', 'name', 'Archivo Histórico Nacional'),
(121680, 98576, 'fr', 'name', 'Institut Carnot PolyNat'),
(121681, 98577, 'no_lang_code', 'name', 'Geinsa (Panama)'),
(121682, 98578, 'en', 'name', 'Clifford University'),
(121683, 98579, 'en', 'name', 'Worldwide Protein Data Bank'),
(121684, 98580, 'fr', 'name', 'Centre d''Ʃtudes Turques, Ottomanes, Balkaniques et Centrasiatiques'),
(121685, 98581, 'fr', 'name', 'SoutenabilitƩ et RƩsilence'),
(121686, 98582, 'en', 'name', 'Indian Society of Remote Sensing'),
(121687, 98583, 'en', 'name', 'Associated Laboratory for Green Chemistry'),
(121688, 98583, 'pt', 'name', 'Laboratório Associado para a Química Verde'),
(121689, 98584, 'de', 'name', 'Hochschule Darmstadt'),
(121690, 98584, 'en', 'name', 'Darmstadt University of Applied Sciences'),
(121691, 98585, 'pt', 'name', 'Instituto PortuguĆŖs de Oncologia de Coimbra Francisco Gentil'),
(121692, 98586, 'en', 'name', 'Institute of Microbiology'),
(121693, 98586, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å¾®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(121694, 98587, 'en', 'name', 'Barcelona Media'),
(121695, 98588, 'es', 'name', 'Universidad Tecnológica Metropolitana'),
(121696, 98589, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الدلتا Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(121697, 98589, 'en', 'name', 'Delta University for Science and Technology'),
(121698, 98590, 'fr', 'name', 'Architecture, Milieu, Paysage'),
(121699, 98591, 'en', 'name', 'Office of Nuclear Safety'),
(121700, 98592, 'en', 'name', 'International Research Center for Japanese Studies'),
(121701, 98592, 'ja', 'name', 'å›½éš›ę—„ęœ¬ę–‡åŒ–ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(121702, 98593, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Postes et des TĆ©lĆ©communications'),
(121703, 98594, 'fr', 'name', 'Biologie IntƩgrƩe du Globule Rouge'),
(121704, 98595, 'en', 'name', 'Institute of Semiconductors'),
(121705, 98595, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŠåÆ¼ä½“ē ”ē©¶ę‰€'),
(121706, 98596, 'ms', 'name', 'Universiti Teknologi Petronas'),
(121707, 98596, 'zh', 'name', '国油大学'),
(121708, 98597, 'en', 'name', 'National Center for High Performance Processing in SĆ£o Paulo'),
(121709, 98597, 'pt', 'name', 'Centro Nacional de Processamento de Alto Desempenho em SĆ£o Paulo'),
(121710, 98598, 'es', 'name', 'Colciencias, Departamento Administrativo de Ciencia, Tecnología e Innovación'),
(121711, 98599, 'cy', 'name', 'Prifysgol Wrexham'),
(121712, 98599, 'en', 'name', 'Wrexham University'),
(121713, 98600, 'en', 'name', 'National University of Ireland, Maynooth'),
(121714, 98600, 'fy', 'name', 'Ollscoil na hƉireann MĆ” Nuad'),
(121715, 98601, 'en', 'name', 'State Key Laboratory for Modification of Chemical Fibers and Polymer Materials'),
(121716, 98601, 'zh', 'name', 'ēŗ¤ē»“ęę–™ę”¹ę€§å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121717, 98602, 'no_lang_code', 'name', 'Microwave Medical Systems (United States)'),
(121718, 98603, 'en', 'name', 'Mount Mary College of Education'),
(121719, 98604, 'en', 'name', 'Inflammation, Microbiome and Immunosurveillance'),
(121720, 98605, 'en', 'name', 'Ministry of Education, Culture, Sports, Science and Technology'),
(121721, 98605, 'ja', 'name', 'ę–‡éƒØē§‘å­¦ēœ'),
(121722, 98606, 'en', 'name', 'National Institute for Physiological Sciences'),
(121723, 98606, 'ja', 'name', 'ē”Ÿē†å­¦ē ”ē©¶ę‰€'),
(121724, 98607, 'en', 'name', 'Ministry of Interior'),
(121725, 98607, 'es', 'name', 'Ministerio del Interior'),
(121726, 98608, 'en', 'name', 'State Key Laboratory of Brain and Cognitive Science'),
(121727, 98608, 'zh', 'name', 'č„‘äøŽč®¤ēŸ„ē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121728, 98609, 'en', 'name', 'State Key Laboratory of Digital Home Appliances'),
(121729, 98609, 'zh', 'name', 'ę•°å­—åŒ–å®¶ē”µå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121730, 98610, 'en', 'name', 'Institute of Chemistry'),
(121731, 98610, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŒ–å­¦ē ”ē©¶ę‰€'),
(121732, 98611, 'en', 'name', 'Office of Buildings and Industry'),
(121733, 98612, 'no_lang_code', 'name', 'AlliedSignal (United States)'),
(121734, 98613, 'de', 'name', 'Thüringer Universitäts- und Landesbibliothek'),
(121735, 98614, 'fr', 'name', 'Arts, civilisation et histoire de l''Europe'),
(121736, 98615, 'fr', 'name', 'DƩlƩgation CƓte d''Azur'),
(121737, 98616, 'en', 'name', 'Roswell Park Comprehensive Cancer Center'),
(121738, 98617, 'en', 'name', 'Landcare Australia'),
(121739, 98618, 'en', 'name', 'Yixing People''s Hospital'),
(121740, 98618, 'zh', 'name', 'å®œå…“åø‚äŗŗę°‘åŒ»é™¢'),
(121741, 98619, 'en', 'name', 'Canadian Glycomics Network'),
(121742, 98620, 'id', 'name', 'Politeknik STMI Jakarta'),
(121743, 98621, 'en', 'name', 'Institute of Geochemistry'),
(121744, 98621, 'zh', 'name', 'åœ°ēƒåŒ–å­¦ē ”ē©¶ę‰€'),
(121745, 98622, 'en', 'name', 'Public Employment Service State'),
(121746, 98622, 'es', 'name', 'Servicio PĆŗblico de Empleo Estatal'),
(121747, 98623, 'fr', 'name', 'CƩgep de Granby'),
(121748, 98624, 'fr', 'name', 'Institut du Thorax'),
(121749, 98625, 'en', 'name', 'State Key Laboratory of Natural and Biomimetic Drugs'),
(121750, 98625, 'zh', 'name', 'å¤©ē„¶čÆē‰©åŠä»æē”ŸčÆē‰©å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121751, 98626, 'en', 'name', 'Annecy-le-Vieux Particle Physics Laboratory'),
(121752, 98626, 'fr', 'name', 'Laboratoire d’Annecy de Physique des Particules'),
(121753, 98627, 'en', 'name', 'Graceland International University'),
(121754, 98628, 'en', 'name', 'State Key Laboratory For Conservation and Utilization of Subtropical Agro-Bioresources'),
(121755, 98628, 'zh', 'name', 'äŗšēƒ­åø¦å†œäøšē”Ÿē‰©čµ„ęŗäæęŠ¤äøŽåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121756, 98629, 'pt', 'name', 'Universidade Estadual do ParanĆ”'),
(121757, 98630, 'en', 'name', 'International Nuclear Energy Policy and Cooperation'),
(121758, 98631, 'en', 'name', 'State Key Laboratory of Baiyunobo Rare Earth Resource Researches and Comprehensive Utilization'),
(121759, 98631, 'zh', 'name', 'ē™½äŗ‘é„‚åšēØ€åœŸčµ„ęŗē ”ē©¶äøŽē»¼åˆåˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121760, 98632, 'de', 'name', 'Chemisches und VeterinƤruntersuchungsamt Stuttgart'),
(121761, 98633, 'cs', 'name', 'Ministerstvo ZemědělstvĆ­ ČeskĆ© Republiky'),
(121762, 98633, 'en', 'name', 'Ministry of Agriculture'),
(121763, 98634, 'it', 'name', 'Fondazione Cassa di Risparmio di Firenze'),
(121764, 98635, 'en', 'name', 'Benthic Ecogeochemistry Laboratory'),
(121765, 98635, 'fr', 'name', 'Laboratoire d''EcogƩochimie des Environnements Benthiques'),
(121766, 98636, 'en', 'name', 'Cajal International Neuroscience Center'),
(121767, 98636, 'es', 'name', 'Centro Internacional de Neurociencia Cajal'),
(121768, 98637, 'en', 'name', 'State Key Laboratory of Pressurized Hydrometallurgy Technology for Co-Associated Nonferrous Metal Resources'),
(121769, 98637, 'zh', 'name', 'å…±ä¼“ē”Ÿęœ‰č‰²é‡‘å±žčµ„ęŗåŠ åŽ‹ę¹æę³•å†¶é‡‘ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121770, 98638, 'en', 'name', 'Georgia Prostate Cancer Coalition'),
(121771, 98639, 'en', 'name', 'Gurugram University'),
(121772, 98639, 'hi', 'name', 'ą¤—ą„ą¤°ą„ą¤—ą„ą¤°ą¤¾ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(121773, 98640, 'no_lang_code', 'name', 'Haier Group (China)'),
(121774, 98640, 'zh', 'name', 'ęµ·å°”é›†å›¢ęŠ€ęœÆē ”å‘äø­åæƒ'),
(121775, 98641, 'en', 'name', 'Margarita Salas Center for Biological Research'),
(121776, 98641, 'es', 'name', 'Centro de Investigaciones Biológicas Margarita Salas'),
(121777, 98642, 'no_lang_code', 'name', 'Centene Corporation (United States)'),
(121778, 98643, 'fr', 'name', 'Institut EuropƩen de Chimie et Biologie'),
(121779, 98644, 'fr', 'name', 'Centre de recherche franƧais Ơ JƩrusalem'),
(121780, 98645, 'en', 'name', 'Sanitas Paseo de las Acacias Advanced Rehabilitation Centre'),
(121781, 98645, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Acacias'),
(121782, 98646, 'en', 'name', 'State Key Laboratory of Polyolefin Catalysis Technology and High Performance Materials'),
(121783, 98646, 'zh', 'name', 'čšēƒÆēƒƒå‚¬åŒ–ęŠ€ęœÆäøŽé«˜ę€§čƒ½ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121784, 98647, 'fr', 'name', 'Centre d''Ʃtudes sociologiques et politiques Raymond-Aron'),
(121785, 98648, 'en', 'name', 'New York State Psychiatric Institute'),
(121786, 98649, 'no_lang_code', 'name', 'Centro Agricoltura Ambiente (Italy)'),
(121787, 98650, 'en', 'name', 'Hercules Foundation'),
(121788, 98650, 'nl', 'name', 'Herculesstichting'),
(121789, 98651, 'fr', 'name', 'Laboratoire de Droit des affaires et nouvelles technologies'),
(121790, 98652, 'en', 'name', 'Food Technology Research Unit'),
(121791, 98652, 'it', 'name', 'Istituto Sperimentale per la Valorizzazione Tecnologica dei Prodotti Agricoli'),
(121792, 98653, 'en', 'name', 'Tindiret Technical and Vocational College'),
(121793, 98654, 'en', 'name', 'State Key Laboratory of Crop Biology'),
(121794, 98654, 'zh', 'name', 'ä½œē‰©ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121795, 98655, 'en', 'name', 'Samsung Advanced Institute of Technology (South Korea)'),
(121796, 98655, 'ko', 'name', 'ģ‚¼ģ„±ģ¢…ķ•©źø°ģˆ ģ›'),
(121797, 98656, 'en', 'name', 'Mays Cancer Center at UT Health San Antonio'),
(121798, 98657, 'en', 'name', 'Integrated Genetic Approaches in Therapeutic Discovery for Rare Diseases'),
(121799, 98658, 'en', 'name', 'Argonne Tandem Linac Accelerator System'),
(121800, 98659, 'en', 'name', 'VTT Technical Research Centre of Finland'),
(121801, 98659, 'fi', 'name', 'Teknologian Tutkimuskeskus VTT'),
(121802, 98660, 'en', 'name', 'Grid Controls and Communications Division'),
(121803, 98661, 'ca', 'name', 'Institut d''Estudis Catalans'),
(121804, 98661, 'en', 'name', 'Institute for Catalan Studies'),
(121805, 98661, 'es', 'name', 'Instituto de Estudios Catalanes'),
(121806, 98662, 'no_lang_code', 'name', 'Raytheon Technologies (Canada)'),
(121807, 98663, 'de', 'name', 'Alice Salomon Hochschule Berlin, Alice-Salomon-Hochschule Berlin'),
(121808, 98664, 'en', 'name', 'Center for Wireless Communications'),
(121809, 98665, 'en', 'name', 'Brigham and Women''s Hospital'),
(121810, 98666, 'en', 'name', 'State Key Laboratory of Mineral Deposit Geochemistry'),
(121811, 98666, 'zh', 'name', 'ēŸæåŗŠåœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121812, 98667, 'en', 'name', 'Loyola University Chicago'),
(121813, 98667, 'es', 'name', 'Universidad Loyola Chicago'),
(121814, 98667, 'fr', 'name', 'UniversitƩ loyola de chicago'),
(121815, 98668, 'en', 'name', 'Anabaptist Mennonite Biblical Seminary'),
(121816, 98669, 'en', 'name', 'River Security Inc., River Security Inc. (China)'),
(121817, 98669, 'zh', 'name', 'ē‘žę•°äæ”ęÆ'),
(121818, 98670, 'fr', 'name', 'UnitƩ de recherche interdisciplinaire pour la prƩvention et le traitement des cancers'),
(121819, 98671, 'de', 'name', 'Ministerium für Verkehr Baden-Württemberg'),
(121820, 98672, 'en', 'name', 'State Key Laboratory of Biology of Plant Diseases and Insect Pests'),
(121821, 98672, 'zh', 'name', 'ę¤ē‰©ē—…č™«å®³ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121822, 98673, 'no_lang_code', 'name', 'Taylor and Francis (United Kingdom)'),
(121823, 98674, 'es', 'name', 'Concello de Cervo'),
(121824, 98675, 'en', 'name', 'St. Michael Medical Center in Silverdale'),
(121825, 98676, 'en', 'name', 'Nuclear Fuel Cycle and Supply Chain'),
(121826, 98677, 'en', 'name', 'Carlos Albizu University'),
(121827, 98677, 'es', 'name', 'Universidad Carlos Albizu'),
(121828, 98678, 'en', 'name', 'State Key Laboratory of Infectious Disease Prevention and Control'),
(121829, 98678, 'zh', 'name', 'ä¼ ęŸ“ē—…é¢„é˜²ęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121830, 98679, 'en', 'name', 'Laboratory Signaling and Cardiovascular Pathophysiology'),
(121831, 98679, 'fr', 'name', 'Singnalisation et physiopathologie cardiaque'),
(121832, 98680, 'en', 'name', 'Hue University of Education, University of Education, Hue University'),
(121833, 98680, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m Huįŗæ'),
(121834, 98681, 'en', 'name', 'Millenium Institute Center for Genome Regulation'),
(121835, 98681, 'es', 'name', 'Instituto Milenio Centro de Regulación del Genoma'),
(121836, 98682, 'en', 'name', 'State University of MaringĆ”'),
(121837, 98682, 'pt', 'name', 'Universidade Estadual de MaringĆ”'),
(121838, 98683, 'en', 'name', 'Berry College'),
(121839, 98684, 'en', 'name', 'Lacombe Research and Development Centre'),
(121840, 98684, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Lacombe'),
(121841, 98685, 'en', 'name', 'Resnick Sustainability Institute'),
(121842, 98686, 'en', 'name', 'Grid Systems and Components'),
(121843, 98687, 'en', 'name', 'Takuvik Joint International Laboratory'),
(121844, 98688, 'no_lang_code', 'name', 'DNV (Norway)'),
(121845, 98689, 'en', 'name', 'Applied Molecular Biosciences Unit'),
(121846, 98689, 'pt', 'name', 'Unidade em CiĆŖncias Biomoleculares Aplicadas'),
(121847, 98690, 'en', 'name', 'State Key Laboratory of Molecular Developmental Biology'),
(121848, 98690, 'zh', 'name', 'åˆ†å­å‘č‚²ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121849, 98691, 'en', 'name', 'National Institute of Technology Nagaland'),
(121850, 98691, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Øą¤¾ą¤—ą¤¾ą¤²ą„ˆą¤‚ą¤”'),
(121851, 98692, 'no_lang_code', 'name', 'Miele (Germany)'),
(121852, 98693, 'fr', 'name', 'Centre Hospitalier Universitaire de Rouen'),
(121853, 98694, 'en', 'name', 'Washington University in St. Louis School of Medicine'),
(121854, 98695, 'en', 'name', 'Transnational Press London'),
(121855, 98696, 'en', 'name', 'United States Department of Commerce'),
(121856, 98696, 'es', 'name', 'Departamento de Comercio de Estados Unidos'),
(121857, 98696, 'fr', 'name', 'DĆ©partement du Commerce des Ɖtats-Unis'),
(121858, 98697, 'en', 'name', 'Japan Foundation Endowment Committee'),
(121859, 98698, 'en', 'name', 'Triagon Academy'),
(121860, 98699, 'en', 'name', 'McGill University Health Centre'),
(121861, 98699, 'fr', 'name', 'Centre universitaire de santƩ McGill'),
(121862, 98700, 'en', 'name', 'University of Colorado Cancer Center'),
(121863, 98701, 'en', 'name', 'NASA Planetary Science'),
(121864, 98702, 'fr', 'name', 'Architecture, Territoire, Environnement'),
(121865, 98703, 'en', 'name', 'Office of Environment, Health, Safety and Security'),
(121866, 98704, 'de', 'name', 'Goethe-UniversitƤt Frankfurt am Main'),
(121867, 98704, 'en', 'name', 'Goethe University Frankfurt'),
(121868, 98705, 'en', 'name', 'National Research Institute for Earth Science and Disaster Resilience'),
(121869, 98705, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗé˜²ē½ē§‘å­¦ęŠ€č”“ē ”ē©¶ę‰€'),
(121870, 98706, 'id', 'name', 'Institut Teknologi Statistika dan Bisnis Muhammadiyah Semarang'),
(121871, 98707, 'en', 'name', 'Geotechnical and Structures Laboratory'),
(121872, 98708, 'en', 'name', '711th Human Performance Wing'),
(121873, 98709, 'en', 'name', 'State Key Laboratory of Estuarine and Coastal Research'),
(121874, 98709, 'zh', 'name', 'ę²³å£ęµ·å²øå­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121875, 98710, 'en', 'name', 'Ministry of Education'),
(121876, 98710, 'pt', 'name', 'Ministério da Educação'),
(121877, 98711, 'en', 'name', 'Tokai National Higher Education and Research System'),
(121878, 98711, 'ja', 'name', 'ę±ęµ·å›½ē«‹å¤§å­¦ę©Ÿę§‹'),
(121879, 98712, 'es', 'name', 'Departamento de Educación'),
(121880, 98712, 'eu', 'name', 'Hezkuntza Departamentua'),
(121881, 98713, 'en', 'name', 'United States Naval Research Laboratory'),
(121882, 98713, 'es', 'name', 'Laboratorio de Investigación Naval de los Estados Unidos'),
(121883, 98714, 'no_lang_code', 'name', 'Luto Research (United Kingdom)'),
(121884, 98715, 'en', 'name', 'Scientific and Industrial Research and Development Centre'),
(121885, 98716, 'en', 'name', 'California Department of Transportation'),
(121886, 98717, 'en', 'name', 'Center for Innovative Medicine'),
(121887, 98718, 'en', 'name', 'Institute of Cardiovascular and Metabolic Diseases'),
(121888, 98718, 'fr', 'name', 'Institut des Maladies MƩtaboliques et Cardiovasculaires'),
(121889, 98719, 'no_lang_code', 'name', 'JK Fenner (India)'),
(121890, 98720, 'de', 'name', 'TU Wien'),
(121891, 98721, 'en', 'name', 'Office of Fissile Materials Disposition'),
(121892, 98722, 'en', 'name', 'Laboratory of Mechanical Systems and Concurrent Engineering'),
(121893, 98722, 'fr', 'name', 'Laboratoire des Systèmes Mécaniques et d''Ingénierie Simultanée'),
(121894, 98723, 'fr', 'name', 'Institut NƩel'),
(121895, 98724, 'en', 'name', 'Africa University'),
(121896, 98725, 'no_lang_code', 'name', 'Lifetime Omics (United States)'),
(121897, 98726, 'en', 'name', 'Australian Consortium for Social and Political Research Incorporated'),
(121898, 98727, 'es', 'name', 'Universidad Tecnológica de San Juan del Río'),
(121899, 98728, 'en', 'name', 'Prostate Cancer UK'),
(121900, 98729, 'en', 'name', 'State Key Laboratory of Oncology in South China'),
(121901, 98729, 'zh', 'name', 'åŽå—č‚æē˜¤å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121902, 98730, 'en', 'name', 'University of BĆ­o-BĆ­o'),
(121903, 98730, 'es', 'name', 'Universidad del BĆ­o-BĆ­o'),
(121904, 98731, 'en', 'name', 'South East Asian Theological Schools, Inc.'),
(121905, 98732, 'no_lang_code', 'name', 'UL (Germany)'),
(121906, 98733, 'en', 'name', 'University of Maryland Center for Environmental Science'),
(121907, 98734, 'en', 'name', 'Latin American Council of Social Sciences'),
(121908, 98734, 'es', 'name', 'Consejo Latinoamericano de Ciencias Sociales'),
(121909, 98734, 'pt', 'name', 'Conselho Latino-americano de CiĆŖncias Sociais'),
(121910, 98735, 'en', 'name', 'Civil Engineering Research and Innovation for Sustainability'),
(121911, 98736, 'en', 'name', 'State Key Laboratory of Magnetism'),
(121912, 98736, 'zh', 'name', 'ē£å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121913, 98737, 'fr', 'name', 'Institut SupƩrieur de MƩcanique, Institut SupƩrieur de MƩcanique de Paris'),
(121914, 98738, 'en', 'name', 'IFMR Graduate School of Business'),
(121915, 98739, 'en', 'name', 'Almaty Humanitarian-Economic University'),
(121916, 98739, 'ru', 'name', 'Алматинский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арно-ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(121917, 98740, 'en', 'name', 'Ministry of Foreign Affairs, European Union and Cooperation'),
(121918, 98740, 'es', 'name', 'Ministerio de Asuntos Exteriores, Unión Europea y Cooperación'),
(121919, 98741, 'it', 'name', 'Ospedale Misericordia - Grosseto'),
(121920, 98742, 'en', 'name', 'Morden Research and Development Centre'),
(121921, 98742, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Morden'),
(121922, 98743, 'de', 'name', 'Deutsches ArchƤologisches Institut, Abteilung Madrid'),
(121923, 98743, 'en', 'name', 'German Archaeological Institute, Madrid Department'),
(121924, 98744, 'en', 'name', 'Institute of Plant Genetics, Polish Academy of Sciences'),
(121925, 98744, 'pl', 'name', 'Instytut Genetyki Roślin Polskiej Akademii Nauk'),
(121926, 98745, 'fr', 'name', 'Centre International de Rencontres MathƩmatiques'),
(121927, 98746, 'fr', 'name', 'Laboratoire de Recherche en Informatique'),
(121928, 98747, 'en', 'name', 'Northern Rocky Mountain Science Center'),
(121929, 98748, 'ca', 'name', 'Institut Universitari D''Estudis Europeus'),
(121930, 98749, 'de', 'name', 'Industriegewerkschaft Metall'),
(121931, 98749, 'en', 'name', 'Industrial Union of Metalworkers'),
(121932, 98750, 'en', 'name', 'Ministry of Water Resources of the People''s Republic of China'),
(121933, 98750, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½ę°“åˆ©éƒØ'),
(121934, 98751, 'en', 'name', 'Whitney R. Harris World Ecology Center'),
(121935, 98752, 'pt', 'name', 'Faculdade de Odontologia do Recife'),
(121936, 98753, 'en', 'name', 'Einaudi Institute for Economics and Finance'),
(121937, 98753, 'it', 'name', 'Istituto Einaudi per l''Economia e la Finanza'),
(121938, 98754, 'en', 'name', 'American Optometric Association'),
(121939, 98755, 'fr', 'name', 'CEntre de Recherche sur les MUtations du Droit et les mutations sociales'),
(121940, 98756, 'no_lang_code', 'name', 'Bouwcentrum (Netherlands)'),
(121941, 98757, 'en', 'name', 'Italian Experimental Institute Lazzaro Spallanzani'),
(121942, 98757, 'it', 'name', 'Istituto Sperimentale Italiano Lazzaro Spallanzani'),
(121943, 98758, 'en', 'name', 'National Geospatial Technical Operations Center'),
(121944, 98759, 'en', 'name', 'Asthma UK Centre for Applied Research'),
(121945, 98760, 'no_lang_code', 'name', 'Labvantage - Biomax GmbH (Germany)'),
(121946, 98761, 'fr', 'name', 'Laboratoire de Conception et d''Intégration des Systèmes'),
(121947, 98762, 'en', 'name', 'Magnum Semiconductor, Magnum Semiconductor (United States)'),
(121948, 98763, 'en', 'name', 'Akre University for Applied Sciences'),
(121949, 98764, 'en', 'name', 'State Key Laboratory of Marine Environmental Science'),
(121950, 98764, 'zh', 'name', 'čæ‘ęµ·ęµ·ę“‹ēŽÆå¢ƒē§‘å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121951, 98765, 'en', 'name', 'Spanish Society of Biochemistry and Molecular Biology'),
(121952, 98765, 'es', 'name', 'Sociedad EspaƱola de Bioquƭmica y Biologƭa Molecular'),
(121953, 98766, 'en', 'name', 'Science Analytics and Synthesis'),
(121954, 98767, 'en', 'name', 'Science for Life Laboratory'),
(121955, 98768, 'de', 'name', 'Deutsches Diabetes-Zentrum, Deutsches Diabetes-Zentrum e.V.'),
(121956, 98769, 'fr', 'name', 'Université Toulouse - Jean Jaurès'),
(121957, 98770, 'en', 'name', 'Chloroplast Biology and Light-sensing in Microalgae'),
(121958, 98770, 'fr', 'name', 'Biologie du Chloroplaste et Perception de la LumiĆØre chez les Microalgues'),
(121959, 98771, 'ar', 'name', 'Ų§Ł„Ł…ŲÆŁŠŲ±ŁŠŲ© العامة Ł„Ł„Ų“Ų¤ŁˆŁ† Ų§Ł„ŲµŲ­ŁŠŲ© بمنطقة Ų§Ł„Ų±ŁŠŲ§Ų¶'),
(121960, 98771, 'en', 'name', 'General Directorate of Health Affairs in Riyadh Region'),
(121961, 98772, 'en', 'name', 'Israel Democracy Institute'),
(121962, 98772, 'he', 'name', 'המכון ×”×™×©×Ø××œ×™ ×œ×“×ž×•×§×Ø×˜×™×”'),
(121963, 98773, 'fr', 'name', 'Neuropsychologie et Imagerie de la MƩmoire Humaine'),
(121964, 98774, 'en', 'name', 'University of San AndrƩs'),
(121965, 98774, 'es', 'name', 'Universidad de San AndrƩs'),
(121966, 98774, 'fr', 'name', 'UniversitƩ de san andrƩs'),
(121967, 98775, 'fr', 'name', 'Laboratoire de MƩcanique Gabriel LamƩ'),
(121968, 98776, 'en', 'name', 'International Society of Exposure Science'),
(121969, 98777, 'pt', 'name', 'Centro de Estudos Sociais'),
(121970, 98778, 'de', 'name', 'Sächsisches Landesamt für Umwelt, Landwirtschaft und Geologie'),
(121971, 98779, 'es', 'name', 'Hospital Universitario Puerto Real'),
(121972, 98780, 'no_lang_code', 'name', 'Systems Engineering Associates Corporation (United States)'),
(121973, 98781, 'en', 'name', 'Atomic Energy Organization of Iran'),
(121974, 98781, 'fa', 'name', 'سازمان Ų§Ł†Ų±Ś˜ŪŒ Ų§ŲŖŁ…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(121975, 98782, 'fr', 'name', 'Centre Hospitalier Public du Cotentin'),
(121976, 98783, 'es', 'name', 'Hospital ClĆ­nico Universitario de Valladolid'),
(121977, 98784, 'en', 'name', 'Ministry of Education'),
(121978, 98784, 'fr', 'name', 'MinistĆØre de l''Ɖducation'),
(121979, 98785, 'fr', 'name', 'DƩpartement de Pharmacochimie MolƩculaire'),
(121980, 98786, 'en', 'name', 'Centre for Structural Systems Biology'),
(121981, 98787, 'en', 'name', 'University of Maryland Medical System'),
(121982, 98788, 'en', 'name', 'Toyota Research Institute'),
(121983, 98789, 'en', 'name', 'BabelFamily'),
(121984, 98790, 'en', 'name', 'California Department of Toxic Substances Control'),
(121985, 98791, 'fr', 'name', 'Biologie Tissulaire et IngƩnierie ThƩrapeutique'),
(121986, 98792, 'en', 'name', 'Ontario Veterinary College'),
(121987, 98793, 'no_lang_code', 'name', 'Danone North America (United States)'),
(121988, 98794, 'es', 'name', 'Hospital la Pedrera'),
(121989, 98795, 'en', 'name', 'MND Scotland'),
(121990, 98796, 'en', 'name', 'Northwestern Medicine'),
(121991, 98797, 'en', 'name', 'University of Belgrade – Faculty of Political Sciences'),
(121992, 98797, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet političkih nauka, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ политичких наука'),
(121993, 98798, 'es', 'name', 'Instituto Tecnológico Victoria - ITV'),
(121994, 98799, 'en', 'name', 'University of Oklahoma - Tulsa'),
(121995, 98800, 'en', 'name', 'State Key Laboratory of Pharmacokinetics and Drug Delivery Technology'),
(121996, 98800, 'zh', 'name', 'é‡ŠčÆęŠ€ęœÆäøŽčÆä»£åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(121997, 98801, 'fr', 'name', 'Institut de Chimie MolƩculaire de Grenoble'),
(121998, 98802, 'en', 'name', 'University of Iowa Hospitals and Clinics'),
(121999, 98803, 'en', 'name', 'University of Gjakova ā€œFehmi Aganiā€'),
(122000, 98803, 'sq', 'name', 'Universiteti i GjakovĆ«s ā€œFehmi Aganiā€'),
(122001, 98804, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŁŠŲ§Ł†'),
(122002, 98804, 'en', 'name', 'Bayan University'),
(122003, 98804, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ ŲØŪ•ŪŒŲ§Ł†'),
(122004, 98805, 'en', 'name', 'Fatty Acid Research Institute'),
(122005, 98806, 'en', 'name', 'University of Garmsar'),
(122006, 98807, 'en', 'name', 'Northern Marianas Humanities Council'),
(122007, 98808, 'fr', 'name', 'Espace philosophique de Namur'),
(122008, 98809, 'en', 'name', 'King Salman International University'),
(122009, 98810, 'pt', 'name', 'Associação Catarinense de BibliotecÔrios'),
(122010, 98811, 'en', 'name', 'AIDA Data Hub'),
(122011, 98812, 'fr', 'name', 'Laboratoire d’Électronique, Informatique et Image'),
(122012, 98813, 'no_lang_code', 'name', 'Genentech'),
(122013, 98814, 'en', 'name', 'Hydrology Climate & Climate Change Laboratory'),
(122014, 98814, 'fr', 'name', 'Laboratoire d’hydrologie, climat et changements climatiques'),
(122015, 98815, 'en', 'name', 'State Key Laboratory of Environmental Geochemistry'),
(122016, 98815, 'zh', 'name', 'ēŽÆå¢ƒåœ°ēƒåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122017, 98816, 'ca', 'name', 'Ajuntament de Reus'),
(122018, 98816, 'es', 'name', 'Ayuntamiento de Reus'),
(122019, 98817, 'de', 'name', 'Optotransmitter-Umweltschutz-Technologie e.V.'),
(122020, 98818, 'no_lang_code', 'name', 'Sanifit (Spain)'),
(122021, 98819, 'en', 'name', 'The Nikola Tesla Institute of Electrical Engineering'),
(122022, 98819, 'sr', 'name', 'Elektrotehnički institut Nikola Tesla, Електротехнички ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠŠøŠŗŠ¾Š»Š° Тесла'),
(122023, 98820, 'en', 'name', 'Chinese PLA General Hospital'),
(122024, 98820, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ę€»åŒ»é™¢'),
(122025, 98821, 'da', 'name', 'Aage og Johanne Louis-Hansens Fond'),
(122026, 98821, 'en', 'name', 'Aage and Johanne Louis-Hansen''s Foundation'),
(122027, 98822, 'en', 'name', 'Phillips Laboratory'),
(122028, 98823, 'fr', 'name', 'Institut Superieur de l''Aeronautique et de l''Espace (ISAE-SUPAERO), Ɖcole Nationale SupĆ©rieure de l''AĆ©ronautique et de l''Espace'),
(122029, 98824, 'en', 'name', 'National Institute for the Humanities and Social Sciences'),
(122030, 98825, 'en', 'name', 'The Geneva Learning Foundation'),
(122031, 98826, 'en', 'name', 'ICPR Junior College'),
(122032, 98827, 'en', 'name', 'U.S. Army West Desert Test Center'),
(122033, 98828, 'de', 'name', 'UniversitƤre Psychiatrische Dienste Bern'),
(122034, 98829, 'fr', 'name', 'Laboratoire de Recherche en Nanosciences'),
(122035, 98830, 'en', 'name', 'Lasting Hope Recovery Center'),
(122036, 98831, 'pt', 'name', 'Instituto Superior de Engenharia do Porto'),
(122037, 98832, 'en', 'name', 'University of Pennsylvania Health System'),
(122038, 98833, 'en', 'name', 'National Council for Eurasian and East European Research'),
(122039, 98834, 'de', 'name', 'Deutsches Herzzentrum München'),
(122040, 98834, 'en', 'name', 'German Heart Centre Munich'),
(122041, 98835, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© صنعاؔ'),
(122042, 98835, 'en', 'name', 'Sana''a University'),
(122043, 98836, 'fr', 'name', 'PolymĆØres, BiopolymĆØres, Surfaces'),
(122044, 98837, 'en', 'name', 'U.S. Army Cold Regions Test Center'),
(122045, 98838, 'en', 'name', 'International Progressive MS Alliance'),
(122046, 98839, 'no_lang_code', 'name', 'Union Carbide (United States)'),
(122047, 98840, 'fr', 'name', 'Laboratoire de Probabilités et Modèles Aléatoires'),
(122048, 98841, 'en', 'name', 'Doctors Without Borders'),
(122049, 98841, 'es', 'name', 'MƩdicos Sin Fronteras'),
(122050, 98841, 'fr', 'name', 'Médecins Sans Frontières'),
(122051, 98842, 'en', 'name', 'Villefranche-sur-mer Developmental Biology Laboratory'),
(122052, 98842, 'fr', 'name', 'Laboratoire de Biologie du DƩveloppement de Villefranche-sur-Mer'),
(122053, 98843, 'no_lang_code', 'name', 'Brandon Roberts + Associates (United States)'),
(122054, 98844, 'en', 'name', 'Centre for Experimental Agricultural Zoology'),
(122055, 98844, 'it', 'name', 'Istituto Sperimentale per la Zoologia Agraria'),
(122056, 98845, 'no_lang_code', 'name', 'Ancodarq (Spain)'),
(122057, 98846, 'no_lang_code', 'name', 'AIA (Spain)'),
(122058, 98847, 'it', 'name', 'NODES S.c.a.r.l'),
(122059, 98848, 'en', 'name', 'Center for 19th-Century History'),
(122060, 98848, 'es', 'name', 'Centro de Historia del Siglo XIX'),
(122061, 98848, 'fr', 'name', 'Centre d''histoire du XIXe siĆØcle'),
(122062, 98849, 'de', 'name', 'NiedersƤchsische Akademie der Wissenschaften zu Gƶttingen'),
(122063, 98849, 'en', 'name', 'Gƶttingen Academy of Sciences and Humanities'),
(122064, 98850, 'en', 'name', 'Charmo University'),
(122065, 98851, 'en', 'name', 'Gerald Kerkut Charitable Trust'),
(122066, 98852, 'no_lang_code', 'name', 'Raja Shankar Shah University'),
(122067, 98853, 'en', 'name', 'Woolcock Institute of Medical Research'),
(122068, 98854, 'es', 'name', 'Centro de Investigación Biomédica en Red de CÔncer'),
(122069, 98855, 'en', 'name', 'J. Willard and Alice S. Marriott Foundation'),
(122070, 98856, 'pt', 'name', 'Rede de QuĆ­mica e Tecnologia'),
(122071, 98857, 'no_lang_code', 'name', 'Insightful Modelling Limited (New Zealand)'),
(122072, 98858, 'en', 'name', 'Collaborative Research in Engineering, Science and Technology Centre'),
(122073, 98859, 'en', 'name', 'Rockingham Peel Group'),
(122074, 98860, 'no_lang_code', 'name', 'Canal de Experiencias HidrodinƔmicas de El Pardo (Spain)'),
(122075, 98861, 'pt', 'name', 'Universidade do Estado do Amazonas'),
(122076, 98862, 'fr', 'name', 'Centre Interdisciplinaire de Recherches sur les Langues Et la PensƩe'),
(122077, 98863, 'en', 'name', 'Benaroya Research Institute'),
(122078, 98864, 'en', 'name', 'Governor Juan F. Luis Hospital & Medical Center'),
(122079, 98865, 'no_lang_code', 'name', 'Uriach (Spain)'),
(122080, 98866, 'en', 'name', 'State Key Laboratory of High Performance Civil Engineering Materials'),
(122081, 98866, 'zh', 'name', 'é«˜ę€§čƒ½åœŸęœØå·„ēØ‹ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122082, 98867, 'en', 'name', 'Centre of Hydrometeorological Service'),
(122083, 98867, 'uz', 'name', 'Gidrometeorologiya xizmati markazi'),
(122084, 98868, 'en', 'name', 'Oswaldo Cruz Foundation'),
(122085, 98868, 'pt', 'name', 'Fundação Oswaldo Cruz'),
(122086, 98869, 'de', 'name', 'Stiftung Deutsch-Amerikanische Wissenschaftsbeziehungen'),
(122087, 98869, 'en', 'name', 'Foundation on German-American Academic Relations'),
(122088, 98870, 'en', 'name', 'UL Research Institutes'),
(122089, 98871, 'fr', 'name', 'Grand Port Maritime de Nantes Saint-Nazaire'),
(122090, 98872, 'en', 'name', 'Michigan Ovarian Cancer Alliance'),
(122091, 98873, 'it', 'name', 'Ospedale Maggiore di Lodi'),
(122092, 98874, 'fr', 'name', 'Ɖquipe de droit international, europĆ©en et comparĆ©'),
(122093, 98875, 'en', 'name', 'ARC Research Hub for Sustainable Onshore Lobster Aquaculture'),
(122094, 98876, 'en', 'name', 'Ghana Tertiary Education Commission'),
(122095, 98877, 'en', 'name', 'Pattern Institute'),
(122096, 98878, 'en', 'name', 'Foundation for Research in Rheumatology'),
(122097, 98879, 'en', 'name', 'State Key Laboratory of Computer Aided Design and Graphics'),
(122098, 98879, 'zh', 'name', 'č®”ē®—ęœŗč¾…åŠ©č®¾č®”äøŽå›¾å½¢å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122099, 98880, 'en', 'name', 'Fruit Research Institute'),
(122100, 98880, 'sr', 'name', 'Institut za voćarstvo, Čačak'),
(122101, 98881, 'en', 'name', 'Pennsylvania Water Science Center'),
(122102, 98882, 'cs', 'name', 'Pardubice Region, Pardubický kraj'),
(122103, 98883, 'en', 'name', 'Andean University of Cuzco'),
(122104, 98883, 'es', 'name', 'Universidad Andina del Cusco'),
(122105, 98884, 'no_lang_code', 'name', 'Lipotec (Spain)'),
(122106, 98885, 'fr', 'name', 'Laboratoire d''Economie et de Management de Nantes Atlantique'),
(122107, 98886, 'no_lang_code', 'name', 'Collins Aerospace (United States)'),
(122108, 98887, 'en', 'name', 'Catholic University of Zimbabwe'),
(122109, 98888, 'en', 'name', 'Nusrat Jahan Ahmadiyya College of Education'),
(122110, 98889, 'en', 'name', 'State Key Laboratory of Organometallic Chemistry'),
(122111, 98889, 'zh', 'name', 'é‡‘å±žęœ‰ęœŗåŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122112, 98890, 'fr', 'name', 'IdentitƩs et DiffƩrenciation de l''Environnement des Espaces et des SociƩtƩs'),
(122113, 98891, 'en', 'name', 'Weir Advanced Research Centre'),
(122114, 98892, 'en', 'name', 'Lawgorithm'),
(122115, 98893, 'no_lang_code', 'name', 'RĆøros Vinduer og DĆører (Norway)'),
(122116, 98894, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬ŁŠŁ„ Ų§Ł„Ų¬ŲÆŁŠŲÆ'),
(122117, 98894, 'en', 'name', 'Aljeel Aljadeed University'),
(122118, 98895, 'en', 'name', 'Sainsbury Wellcome Centre'),
(122119, 98896, 'en', 'name', 'State Key Laboratory of Digital Multimedia Technology'),
(122120, 98896, 'zh', 'name', 'ę•°å­—å¤šåŖ’ä½“ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122121, 98897, 'en', 'name', 'State Key Laboratory of Turbulence and Complex Systems'),
(122122, 98897, 'zh', 'name', 'ę¹ęµäøŽå¤ę‚ē³»ē»Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122123, 98898, 'en', 'name', 'Institute of Chinese Materia Medica'),
(122124, 98898, 'zh', 'name', 'äø­å›½åŒ»å­¦ē§‘å­¦é™¢čÆē‰©ē ”ē©¶ę‰€'),
(122125, 98899, 'en', 'name', 'National Agency for Research and Development'),
(122126, 98899, 'ro', 'name', 'Agenția Națională pentru Cercetare și Dezvoltare'),
(122127, 98900, 'en', 'name', 'Tabriz University of Medical Sciences'),
(122128, 98900, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تبریز'),
(122129, 98901, 'en', 'name', 'HMU Erfurt - Health and Medical University Erfurt'),
(122130, 98902, 'fr', 'name', 'DƩlƩgation RƩgionale Est'),
(122131, 98903, 'en', 'name', 'Sanitas Costa Rica Medical Centre'),
(122132, 98903, 'es', 'name', 'Centro MƩdico Sanitas Costa Rica'),
(122133, 98904, 'en', 'name', 'Brandon Research and Development Centre'),
(122134, 98904, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Brandon'),
(122135, 98905, 'en', 'name', '1907 Foundation'),
(122136, 98906, 'en', 'name', 'Institute for Collaborative Biotechnologies'),
(122137, 98907, 'en', 'name', 'Species 2000'),
(122138, 98908, 'en', 'name', 'State Key Laboratory of Medical Genomics'),
(122139, 98908, 'zh', 'name', 'åŒ»å­¦åŸŗå› ē»„å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122140, 98909, 'en', 'name', 'The Aga Khan University (International) in the United Kingdom'),
(122141, 98910, 'en', 'name', 'Institute for Advancing Computing Education'),
(122142, 98911, 'es', 'name', 'Cenim - Centro Nacional de Investigaciones Metalurgicas'),
(122143, 98912, 'no_lang_code', 'name', 'Raytheon Technologies (Netherlands)'),
(122144, 98913, 'en', 'name', 'Fishing in Ireland'),
(122145, 98914, 'en', 'name', 'California Department of Food and Agriculture'),
(122146, 98914, 'es', 'name', 'Departamento de Alimentos y Agricultura de California'),
(122147, 98914, 'fr', 'name', 'DƩpartement de l''alimentation et de l''agriculture de californie'),
(122148, 98915, 'en', 'name', 'State Key Laboratory of Atmospheric Boundary Layer Physics and Atmospheric Chemistry'),
(122149, 98915, 'zh', 'name', 'å¤§ę°”č¾¹ē•Œå±‚ē‰©ē†äøŽå¤§ę°”åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122150, 98916, 'de', 'name', 'Bundesministerium für Klimaschutz, Umwelt, Energie, Mobilität, Innovation und Technologie'),
(122151, 98916, 'en', 'name', 'Ministry of Climate Action, Environment, Energy, Mobility, Innovation and Technology'),
(122152, 98917, 'id', 'name', 'Direktorat Riset Dan Pengabdian Kepada Masyarakat'),
(122153, 98918, 'fr', 'name', 'IdentitƩ et subjectivitƩ'),
(122154, 98919, 'es', 'name', 'Tecnológico de Estudios Superiores de Ecatepec'),
(122155, 98920, 'fr', 'name', 'Centre universitaire de mƩdecine gƩnƩrale et santƩ publique, Lausanne'),
(122156, 98921, 'en', 'name', 'Defense Innovation Agency'),
(122157, 98921, 'fr', 'name', 'Agence de l''innovation de dƩfense'),
(122158, 98922, 'es', 'name', 'Instituto de Investigación y Desarrollo de la Vivienda'),
(122159, 98923, 'en', 'name', 'Sinopec Research Institute of Petroleum Processing'),
(122160, 98923, 'zh', 'name', 'äø­ēŸ³åŒ–ēŸ³ę²¹åŒ–å·„ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(122161, 98924, 'en', 'name', 'Centre for Plant Biotechnology and Genomics'),
(122162, 98924, 'es', 'name', 'Centro de Biotecnología y Genómica de Plantas'),
(122163, 98925, 'en', 'name', 'San Diego Supercomputer Center'),
(122164, 98926, 'en', 'name', 'Cleveland Metroparks Zoo'),
(122165, 98927, 'en', 'name', 'Sunway University'),
(122166, 98927, 'ms', 'name', 'Universiti Sunway'),
(122167, 98927, 'zh', 'name', 'åŒåØå¤§å­¦'),
(122168, 98928, 'en', 'name', 'Annie Appleseed Project'),
(122169, 98929, 'en', 'name', 'American Samoa Community College'),
(122170, 98930, 'en', 'name', 'University of Belgrade - Faculty of Physical Chemistry'),
(122171, 98930, 'sr', 'name', 'Univerzitet u Beogradu - Fakultet za fizičku hemiju, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ за Ń„ŠøŠ·ŠøŃ‡ŠŗŃƒ Ń…ŠµŠ¼ŠøŃ˜Ńƒ'),
(122172, 98931, 'en', 'name', 'International Institute for Management Development'),
(122173, 98932, 'id', 'name', 'Universitas Multi Data Palembang'),
(122174, 98933, 'fr', 'name', 'Labex UnivEarthS'),
(122175, 98934, 'no_lang_code', 'name', 'Thiokol (United States)'),
(122176, 98935, 'en', 'name', 'Southern Skies Network'),
(122177, 98936, 'no_lang_code', 'name', 'Cell2Cure ApS'),
(122178, 98937, 'en', 'name', 'Materials Science in Extreme Environments University Research Alliance'),
(122179, 98938, 'en', 'name', 'Institute of Hematology & Blood Diseases Hospital'),
(122180, 98938, 'zh', 'name', 'äø­å›½åŒ»å­¦ē§‘å­¦é™¢č”€ę¶²ē—…åŒ»é™¢'),
(122181, 98939, 'no_lang_code', 'name', 'Boyds (United Kingdom)'),
(122182, 98940, 'en', 'name', 'The Fourth Affiliated Hospital of Soochow University (Suzhou Dushu Lake Hospital)'),
(122183, 98940, 'zh', 'name', 'č‹å·žå¤§å­¦é™„å±žē¬¬å››åŒ»é™¢ (č‹å·žåø‚ē‹¬å¢…ę¹–åŒ»é™¢)'),
(122184, 98941, 'en', 'name', 'West Negros University'),
(122185, 98941, 'tl', 'name', 'Pamantasang STI ng Kanlurang Negros'),
(122186, 98942, 'en', 'name', 'Nowgong Girls'' College'),
(122187, 98943, 'fr', 'name', 'Groupe de recherche clinique – Tumeurs ThyroĆÆdiennes'),
(122188, 98944, 'en', 'name', 'Office of Bilateral, Multilateral, and Commercial Cooperation'),
(122189, 98945, 'fr', 'name', 'UniversitƩ PrivƩe Africaine Franco-Arabe'),
(122190, 98946, 'en', 'name', 'Inter-University Research Institute Corporation'),
(122191, 98947, 'pt', 'name', 'Clinics Hospital of Ribeirão Preto, Hospital das Clínicas de Ribeirão Preto'),
(122192, 98948, 'en', 'name', 'Lord Mayor’s Charitable Foundation'),
(122193, 98949, 'no_lang_code', 'name', 'McDonnel Aircraft (United States)'),
(122194, 98950, 'fr', 'name', 'Laboratoire de l''Intégration du Matériau au Système'),
(122195, 98951, 'fr', 'name', 'Troubles psychiatriques et dƩveloppement'),
(122196, 98952, 'de', 'name', 'Mathematische Forschungsdateninitiative'),
(122197, 98952, 'en', 'name', 'Mathematical Research Data Initiative'),
(122198, 98953, 'en', 'name', 'Yunnan Key Laboratory of Gastrodia Elata and Fungal Symbiotic Biology'),
(122199, 98953, 'zh', 'name', 'å¤©éŗ»äøŽēœŸčŒå…±ē”Ÿē”Ÿē‰©å­¦é‡ē‚¹å®žéŖŒå®¤'),
(122200, 98954, 'fr', 'name', 'Centre d''Etudes et de Recherche sur la diplomatie, l’Administration Publique et le Politique'),
(122201, 98955, 'en', 'name', 'New Jersey Department of State'),
(122202, 98956, 'en', 'name', 'Access to Advanced Health Institute'),
(122203, 98957, 'en', 'name', 'University Hospitals Bristol NHS Foundation Trust'),
(122204, 98958, 'en', 'name', 'Office of Inspector General'),
(122205, 98959, 'en', 'name', 'Afghanistan Center for Epidemiological Studies'),
(122206, 98959, 'fa', 'name', 'مرکز مطالعات Ų§Ł¾ŪŒŲÆŁ…ŪŒŁˆŁ„ŁˆŚ˜ŪŒŚ© افغانستان'),
(122207, 98960, 'es', 'name', 'Servicios TƩcnicos y Suministros'),
(122208, 98960, 'no_lang_code', 'name', 'Technical Services and Supplies (Spain)'),
(122209, 98961, 'ca', 'name', 'Institut de FĆ­sica InterdisciplinĆ ria i Sistemes Complexos'),
(122210, 98961, 'en', 'name', 'Institute for Mediterranean and Subtropical Horticulture "La Mayoraā€'),
(122211, 98961, 'es', 'name', 'Instituto de Hortofruticultura Subtropical y MediterrƔnea "La Mayora"'),
(122212, 98962, 'en', 'name', 'Steven & Alexandra Cohen Foundation'),
(122213, 98963, 'es', 'name', 'Ayuntamiento de Valladolid'),
(122214, 98964, 'en', 'name', 'Shanghai Institute of Microsystem and Information Technology'),
(122215, 98964, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·å¾®ē³»ē»ŸäøŽäæ”ęÆęŠ€ęœÆē ”ē©¶ę‰€'),
(122216, 98965, 'en', 'name', 'UT-Battelle'),
(122217, 98966, 'no_lang_code', 'name', 'Douglas Aircraft (United States)'),
(122218, 98967, 'en', 'name', 'Office of Spent Fuel and Waste Science and Technology'),
(122219, 98968, 'en', 'name', 'Erell Institute'),
(122220, 98969, 'en', 'name', 'Seismological Observatory at the Faculty of Natural Sciences and Mathematics, Ss. Cyril and Methodius University, Skopje, Republic of Macedonia');
INSERT INTO `ror_settings` VALUES
(122221, 98969, 'mk', 'name', 'Деизмолошка Š¾ŠæŃŠµŃ€Š²Š°Ń‚Š¾Ń€ŠøŃ˜Š°, ŠŸŃ€ŠøŃ€Š¾Š“Š½Š¾-математички Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚, Универзитет Дв. ŠšŠøŃ€ŠøŠ» Šø ŠœŠµŃ‚Š¾Š“ŠøŃ˜ во Дкопје'),
(122222, 98970, 'en', 'name', 'Bladder Cancer Advocacy Network'),
(122223, 98971, 'en', 'name', 'NOAA Tropical Analysis and Forecast Branch'),
(122224, 98972, 'fr', 'name', 'Groupe de recherche interdisciplinaire sur les processus d''information et de communication'),
(122225, 98973, 'no_lang_code', 'name', 'BAE Systems (United Kingdom)'),
(122226, 98974, 'no_lang_code', 'name', 'Eurofins (Luxembourg)'),
(122227, 98975, 'en', 'name', 'Plekhanov Russian University of Economics'),
(122228, 98975, 'ru', 'name', 'Российский ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š“. Š’. ŠŸŠ»ŠµŃ…Š°Š½Š¾Š²Š°'),
(122229, 98976, 'en', 'name', 'PremUP'),
(122230, 98977, 'es', 'name', 'Optimización Orientada a la Sostenibilidad'),
(122231, 98977, 'no_lang_code', 'name', 'Idener (Spain)'),
(122232, 98978, 'fr', 'name', 'Groupe de recherche d’histoire'),
(122233, 98979, 'fi', 'name', 'Nokia Oyj'),
(122234, 98979, 'no_lang_code', 'name', 'Nokia (Finland)'),
(122235, 98980, 'no_lang_code', 'name', 'The Tomorrow Companies Inc. (United States)'),
(122236, 98981, 'ca', 'name', 'Institut de Microelectrònica de Barcelona'),
(122237, 98981, 'en', 'name', 'Institute of Microelectronics of Barcelona'),
(122238, 98981, 'es', 'name', 'Instituto de Microelectrónica de Barcelona'),
(122239, 98982, 'en', 'name', 'Institute of Limnology of the Russian Academy of Sciences'),
(122240, 98982, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠžŠ·ŠµŃ€Š¾Š²ŠµŠ“ŠµŠ½ŠøŃ Российской акаГемии наук'),
(122241, 98983, 'en', 'name', 'New Zealand Leather & Shoe Research Association Inc.'),
(122242, 98984, 'pt', 'name', 'Hospital UniversitƔrio Clementino Fraga Filho'),
(122243, 98985, 'fr', 'name', 'DƩlƩgation Normandie'),
(122244, 98986, 'no_lang_code', 'name', 'General Electric (France)'),
(122245, 98987, 'da', 'name', 'WWF Danmark'),
(122246, 98988, 'ab', 'name', 'Azərbaycan Mi̇lli̇ Elmlər Akademi̇yasi Şəki̇ Regi̇onal Elmi̇ Mərkəzi̇'),
(122247, 98988, 'en', 'name', 'Sheki Regional Scientific Center'),
(122248, 98988, 'na', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ°ŃƒŠŗ АзербайГжана Шекинский Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ Центр'),
(122249, 98989, 'es', 'name', 'Complejo Hospitalario Universitario de Toledo'),
(122250, 98990, 'en', 'name', 'Institute for Contemporary Publishing Archives'),
(122251, 98990, 'fr', 'name', 'Institut MƩmoires de l''Edition Contemporaine'),
(122252, 98991, 'es', 'name', 'Escuela Nacional de ArchivĆ­stica'),
(122253, 98992, 'en', 'name', 'State Key Laboratory of Coal Mine Safety Technology'),
(122254, 98992, 'zh', 'name', 'ē…¤ēŸæå®‰å…ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122255, 98993, 'en', 'name', 'Institute of Public Goods and Policies'),
(122256, 98993, 'es', 'name', 'Instituto de PolĆ­ticas y Bienes PĆŗblicos'),
(122257, 98994, 'en', 'name', 'Louisiana Tech University'),
(122258, 98994, 'fr', 'name', 'UniversitƩ de louisiana tech'),
(122259, 98995, 'en', 'name', 'Geosciences Institute'),
(122260, 98995, 'es', 'name', 'Instituto de Geociencias'),
(122261, 98996, 'es', 'name', 'Instituto de Ciencias Marinas de AndalucĆ­a'),
(122262, 98997, 'en', 'name', 'Hawaiian Volcano Observatory'),
(122263, 98998, 'en', 'name', 'QuantIC'),
(122264, 98999, 'en', 'name', 'North Borneo University College'),
(122265, 99000, 'ca', 'name', 'Institut CatalĆ  de Paleontologia Miquel Crusafont'),
(122266, 99000, 'es', 'name', 'Instituto CatalƔn de Paleontologƭa Miguel Crusafont'),
(122267, 99001, 'en', 'name', 'Georgia Tech Research Institute'),
(122268, 99002, 'en', 'name', 'Laboratory of Organic Synthesis'),
(122269, 99002, 'fr', 'name', 'Laboratoire de SynthĆØse Organique'),
(122270, 99003, 'en', 'name', 'Seneca Polytechnic'),
(122271, 99004, 'pt', 'name', 'Instituto Nacional de Ciência e Tecnologia: Física Nuclear e Aplicações'),
(122272, 99005, 'fr', 'name', 'Agence Nationale pour la Gestion des DƩchets Radioactifs'),
(122273, 99006, 'en', 'name', 'Kalamunda Hospital'),
(122274, 99007, 'en', 'name', 'United States Atomic Energy Commission'),
(122275, 99008, 'no_lang_code', 'name', 'Karpagam Hospital'),
(122276, 99009, 'en', 'name', 'Hospital of St. John'),
(122277, 99009, 'pt', 'name', 'Hospital de São João'),
(122278, 99010, 'en', 'name', 'Soil Science Research Unit'),
(122279, 99010, 'fr', 'name', 'UnitƩ de Recherche en Science du Sol'),
(122280, 99011, 'sq', 'name', 'Instituti i Historisƫ "Ali Hadri" Prishtinƫ'),
(122281, 99012, 'en', 'name', 'Precast/Prestressed Concrete Institute'),
(122282, 99013, 'en', 'name', 'Kostanai State Pedagogical University'),
(122283, 99013, 'kk', 'name', 'ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(122284, 99014, 'fr', 'name', 'Institut Parisien de Chimie MolƩculaire'),
(122285, 99015, 'de', 'name', 'FlƤmische Regierung'),
(122286, 99015, 'en', 'name', 'Flemish Government'),
(122287, 99015, 'fr', 'name', 'Gouvernement flamand'),
(122288, 99015, 'nl', 'name', 'Vlaamse Overheid'),
(122289, 99016, 'en', 'name', 'NOAA National Centers for Environmental Information'),
(122290, 99017, 'en', 'name', 'State Key Laboratory of Powder Metallurgy'),
(122291, 99017, 'zh', 'name', 'ē²‰ęœ«å†¶é‡‘å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122292, 99018, 'en', 'name', 'State Key Laboratory of Precision Testing Technology and Instruments'),
(122293, 99018, 'zh', 'name', 'ē²¾åÆ†ęµ‹čÆ•ęŠ€ęœÆåŠä»Ŗå™Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122294, 99019, 'en', 'name', 'Zhengzhou Institute of Machinery'),
(122295, 99019, 'zh', 'name', 'éƒ‘å·žęœŗę¢°ē ”ē©¶ę‰€'),
(122296, 99020, 'en', 'name', 'Southern University and Agricultural and Mechanical College'),
(122297, 99021, 'en', 'name', 'Institute of Information Engineering'),
(122298, 99021, 'zh', 'name', '中国科学院俔息巄程研究所'),
(122299, 99022, 'en', 'name', 'Southwest Research & Design Institute of the Chemical Industry'),
(122300, 99022, 'zh', 'name', 'č„æå—åŒ–å·„ē ”ē©¶č®¾č®”é™¢ęœ‰é™å…¬åø'),
(122301, 99023, 'en', 'name', 'Epilepsy Action'),
(122302, 99024, 'en', 'name', 'Business Europe'),
(122303, 99025, 'ca', 'name', 'Fundació Universitat-Empresa de les Illes Balears'),
(122304, 99025, 'es', 'name', 'Fundación Universidad-Empresa de las Islas Baleares'),
(122305, 99026, 'ca', 'name', 'Parc CientĆ­fic de la Universitat de ValĆØncia'),
(122306, 99027, 'en', 'name', 'Lonestar Education and Research Network'),
(122307, 99028, 'en', 'name', 'Environmental Molecular Sciences Laboratory'),
(122308, 99029, 'en', 'name', 'Taiwanese American Arts Council'),
(122309, 99029, 'zh', 'name', 'å°ē¾Žę–‡č—å”ęœƒ'),
(122310, 99030, 'da', 'name', 'Kong Christian den Tiendes Fond'),
(122311, 99030, 'en', 'name', 'King Christian the Tenth Foundation'),
(122312, 99031, 'fr', 'name', 'Ɖcole Nationale d''IngĆ©nieurs des Techniques des Industries Agro-Alimentaires'),
(122313, 99032, 'fr', 'name', 'Laboratoire de Neurosciences ExpƩrimentales et Cliniques'),
(122314, 99033, 'de', 'name', 'Ministerium für Landwirtschaft, Umwelt und Klimaschutz des Landes Brandenburg'),
(122315, 99034, 'fr', 'name', 'Groupe d''Ɖtude sur les GĆ©omatĆ©riaux et ENvironnements AnthropisĆ©s'),
(122316, 99035, 'hi', 'name', 'ą¤Ŗą„ą¤°ą¤æą¤øą„ą¤Ÿą„€ą¤Ø ą¤•ą„‡ą¤Æą¤°'),
(122317, 99035, 'no_lang_code', 'name', 'Pristyn Care (India)'),
(122318, 99036, 'en', 'name', 'Hydrometeorological Research Institute'),
(122319, 99036, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ гиГрометеорологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(122320, 99036, 'uz', 'name', 'Ilmiy-tadqiqot gidrometeorologiya instituti'),
(122321, 99037, 'en', 'name', 'Office of Clean Energy Demonstrations'),
(122322, 99038, 'en', 'name', 'Philippine Council for Health Research and Development'),
(122323, 99039, 'en', 'name', 'U.S. Army Tropic Regions Test Center'),
(122324, 99040, 'en', 'name', 'Center of Economic and Social Studies and Researches'),
(122325, 99040, 'fr', 'name', 'Centre d''Etudes et de Recherches Economiques et Sociales'),
(122326, 99041, 'cs', 'name', 'Agrotest fyto, s.r.o.'),
(122327, 99041, 'en', 'name', 'Agrotest Fyto, Agrotest Fyto (Czechia)'),
(122328, 99042, 'fr', 'name', 'Laboratoire ModƩlisation et Simulation Multi-Echelle'),
(122329, 99043, 'en', 'name', 'Fundacion Araucaria Foundation'),
(122330, 99044, 'en', 'name', 'Cancer Research Center'),
(122331, 99044, 'es', 'name', 'Centro de Investigación del CÔncer'),
(122332, 99045, 'pt', 'name', 'Companhia de Pesquisa de Recursos Minerais, Serviço Geológico do Brasil - CPRM'),
(122333, 99046, 'en', 'name', 'Space Research Institute'),
(122334, 99046, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космических исслеГований'),
(122335, 99047, 'en', 'name', 'CSCS - Swiss National Supercomputing Centre'),
(122336, 99047, 'it', 'name', 'CSCS - Centro Svizzero di Calcolo Scientifico'),
(122337, 99048, 'es', 'name', 'Conservatorio Profesional de MĆŗsica ā€œTeresa Berganzaā€'),
(122338, 99049, 'en', 'name', 'Florence Bascom Geoscience Center'),
(122339, 99050, 'en', 'name', 'State Key Laboratory of Crop Genetics and Germplasm Innovation'),
(122340, 99050, 'zh', 'name', 'ä½œē‰©é—ä¼ äøŽē§č“Øåˆ›ę–°å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122341, 99051, 'es', 'name', 'Supercomputación Castilla y León'),
(122342, 99052, 'en', 'name', 'Meat Industry Association'),
(122343, 99052, 'es', 'name', 'Asociación de Industrias CÔrnicas'),
(122344, 99053, 'en', 'name', 'Office of Space and Defense Power Systems'),
(122345, 99054, 'fr', 'name', 'Laboratoire de MƩcanique de Normandie'),
(122346, 99055, 'en', 'name', 'Centre for Individualised Infection Medicine'),
(122347, 99056, 'en', 'name', 'Basque Country Mobility And Logistics Cluster, Cluster of Mobility and Logistics, MLC ITS Euskadi'),
(122348, 99056, 'es', 'name', 'Cluster de Movilidad y LogĆ­stica de Euskadi'),
(122349, 99056, 'eu', 'name', 'Euskadiko Mugikortasun Eta Logistika Klusterra'),
(122350, 99057, 'de', 'name', 'Ministerium für Wirtschaft, Arbeit und Wohnungsbau, Ministerium für Wirtschaft, Arbeit und Wohnungsbau Baden-Württemberg'),
(122351, 99058, 'en', 'name', 'State Key Laboratory of Geological Processes and Mineral Resources'),
(122352, 99058, 'zh', 'name', 'åœ°č“Øčæ‡ēØ‹äøŽēŸæäŗ§čµ„ęŗå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122353, 99059, 'fr', 'name', 'Robotique et Innovation Chirurgicale'),
(122354, 99060, 'ca', 'name', 'Institut InfĆ ncia'),
(122355, 99060, 'en', 'name', 'Institute of Childhood and Urban World'),
(122356, 99060, 'es', 'name', 'Instituto Infancia'),
(122357, 99061, 'en', 'name', 'St. Michael''s Hospital'),
(122358, 99061, 'fr', 'name', 'HƓpital St. Michael'),
(122359, 99062, 'en', 'name', 'Beijing Building Materials Academy of Sciences and Research'),
(122360, 99062, 'zh', 'name', 'åŒ—äŗ¬å»ŗē­‘ęę–™ē§‘å­¦ē ”ē©¶ę€»é™¢ęœ‰é™å…¬åø'),
(122361, 99063, 'no_lang_code', 'name', 'Boeing (United States)'),
(122362, 99064, 'en', 'name', 'Astronomical Observatory of Mallorca'),
(122363, 99065, 'en', 'name', 'Minneapolis-St. Paul Long Term Ecological Research'),
(122364, 99066, 'fr', 'name', 'MƩtaphysique, histoires, transformations, actualitƩs'),
(122365, 99067, 'it', 'name', 'Azienda Ospedaliera Ospedale Maggiore'),
(122366, 99068, 'en', 'name', 'Northwest Institute of Nuclear Technology'),
(122367, 99068, 'zh', 'name', 'č„æåŒ—ę øęŠ€ęœÆē ”ē©¶ę‰€'),
(122368, 99069, 'de', 'name', 'Translationale Onkologie an der UniversitƤtsmedizin der Johannes Gutenberg-UniversitƤt Mainz'),
(122369, 99070, 'en', 'name', 'Institute of Geographic Sciences and Natural Resources Research'),
(122370, 99070, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åœ°ē†ē§‘å­¦äøŽčµ„ęŗē ”ē©¶ę‰€'),
(122371, 99071, 'en', 'name', 'Center for Remote Sensing and Integrated Systems'),
(122372, 99072, 'en', 'name', 'State Key Laboratory of Organic-Inorganic Composite Materials'),
(122373, 99072, 'zh', 'name', 'ęœ‰ęœŗę— ęœŗå¤åˆęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122374, 99073, 'en', 'name', 'State Key Laboratory of Microbial Metabolism'),
(122375, 99073, 'zh', 'name', 'å¾®ē”Ÿē‰©ä»£č°¢å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122376, 99074, 'es', 'name', 'Instituto Nacional de la Salud'),
(122377, 99075, 'en', 'name', 'Our Lady of Apostles College of Education'),
(122378, 99076, 'en', 'name', 'Guam Department of Agriculture'),
(122379, 99077, 'en', 'name', 'Royal Society Te Apārangi'),
(122380, 99078, 'en', 'name', 'Second Military Medical University'),
(122381, 99078, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›å†›åŒ»å¤§å­¦'),
(122382, 99079, 'en', 'name', 'State Key Laboratory of Rail Traffic Engineering and Information Technology'),
(122383, 99079, 'zh', 'name', 'č½Øé“äŗ¤é€šå·„ēØ‹äæ”ęÆåŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122384, 99080, 'en', 'name', 'Pershing Square Foundation'),
(122385, 99081, 'en', 'name', 'Institute of Animal Sciences'),
(122386, 99081, 'zh', 'name', 'äø­å›½å†œäøšē§‘å­¦é™¢åŒ—äŗ¬ē•œē‰§å…½åŒ»ē ”ē©¶ę‰€'),
(122387, 99082, 'en', 'name', 'Federal University of the State of Rio de Janeiro'),
(122388, 99082, 'pt', 'name', 'Universidade Federal do Estado do Rio de Janeiro'),
(122389, 99083, 'en', 'name', 'Center for Open Neuroscience'),
(122390, 99084, 'en', 'name', 'State Key Laboratory of High Field Laser Physics'),
(122391, 99084, 'zh', 'name', 'å¼ŗåœŗęæ€å…‰ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122392, 99085, 'en', 'name', 'Institute of Genetics'),
(122393, 99085, 'hu', 'name', 'Genetikai Intézet Szegedi Biológiai Kutatóközpont Magyar TudomÔnyos Akadémia'),
(122394, 99086, 'fr', 'name', 'Institut SYMLOG de France'),
(122395, 99087, 'en', 'name', 'University of Florida Health'),
(122396, 99088, 'es', 'name', 'Instituto de Investigaciones Gino Germani'),
(122397, 99089, 'en', 'name', 'G.T.N. Arts College'),
(122398, 99090, 'ca', 'name', 'Centre Mediterrani d''Investigacions Marines i Ambientals'),
(122399, 99090, 'es', 'name', 'Centro MediterrƔneo de Investigaciones Marinas y Ambientale'),
(122400, 99091, 'en', 'name', 'Meridian Behavioral Health'),
(122401, 99092, 'en', 'name', 'University of Arizona Cancer Center'),
(122402, 99093, 'en', 'name', 'Defense Threat Reduction Agency'),
(122403, 99094, 'en', 'name', 'Bengt Ihres Foundation'),
(122404, 99094, 'sv', 'name', 'Bengt Ihres fond'),
(122405, 99095, 'en', 'name', 'University of La Frontera'),
(122406, 99095, 'es', 'name', 'Universidad de La Frontera'),
(122407, 99096, 'fr', 'name', 'Biologie du cartilage, biotechnologie et tƩlƩmƩdecine'),
(122408, 99097, 'no_lang_code', 'name', 'Barcelona Digital Centro Tecnológico'),
(122409, 99098, 'en', 'name', 'Scottish Government'),
(122410, 99099, 'fr', 'name', 'HƓpital Charles-Foix'),
(122411, 99100, 'en', 'name', 'China Agricultural University'),
(122412, 99100, 'zh', 'name', 'äø­å›½å†œäøšå¤§å­¦'),
(122413, 99101, 'fr', 'name', 'Institut des MatƩriaux Poreux de Paris'),
(122414, 99102, 'fr', 'name', 'Lettres, idƩes, savoirs'),
(122415, 99103, 'en', 'name', 'Oregon Water Science Center'),
(122416, 99104, 'en', 'name', 'Osborne Park Hospital'),
(122417, 99105, 'en', 'name', 'ARCHER Service'),
(122418, 99106, 'en', 'name', 'State Key Laboratory of Rare Earth Materials Chemistry and Application'),
(122419, 99106, 'zh', 'name', 'ēØ€åœŸęę–™åŒ–å­¦åŠåŗ”ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122420, 99107, 'pt', 'name', 'NOVA.id.FCT - Associação para a Inovação e Desenvolvimento da FCT'),
(122421, 99108, 'no_lang_code', 'name', 'Link Institut (Switzerland)'),
(122422, 99109, 'en', 'name', 'Gallatin Valley YMCA, Inc.'),
(122423, 99110, 'id', 'name', 'Sekolah Tinggi Agama Islam Kuningan'),
(122424, 99111, 'en', 'name', 'Center for Molecular Dynamics - Nepal'),
(122425, 99112, 'en', 'name', 'Edinburgh College'),
(122426, 99113, 'no_lang_code', 'name', 'Drohobych Ivan Franko State Pedagogical University'),
(122427, 99113, 'uk', 'name', 'Š”Ń€Š¾Š³Š¾Š±ŠøŃ†ŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Івана Франка'),
(122428, 99114, 'en', 'name', 'Veski'),
(122429, 99115, 'en', 'name', 'University of Puerto Rico at Ponce'),
(122430, 99116, 'en', 'name', 'Duke Cancer Institute'),
(122431, 99117, 'fr', 'name', 'Laboratoire de RƩactivitƩ de Surface'),
(122432, 99118, 'pl', 'name', 'Syntea'),
(122433, 99119, 'en', 'name', 'Missouri State University Branch Campus Dalian'),
(122434, 99120, 'en', 'name', 'Research Centre for Far Eastern Studies of the Paris-Sorbonne University'),
(122435, 99120, 'fr', 'name', 'Centre de Recherches sur l’ExtrĆŖme Orient de Paris – Sorbonne'),
(122436, 99121, 'cs', 'name', 'Český svÔřečský Ćŗstav'),
(122437, 99121, 'no_lang_code', 'name', 'Czech Welding Institute (Czechia)'),
(122438, 99122, 'en', 'name', 'FURTHERMORE grants in publishing'),
(122439, 99123, 'es', 'name', 'Ministerio del Comercio Interior'),
(122440, 99124, 'en', 'name', 'Fanconi Anemia Research Fund'),
(122441, 99125, 'no_lang_code', 'name', 'Biomendi (Spain)'),
(122442, 99126, 'ko', 'name', '삼성'),
(122443, 99126, 'no_lang_code', 'name', 'Samsung (South Korea)'),
(122444, 99127, 'nl', 'name', 'Onderwijsraad'),
(122445, 99128, 'no_lang_code', 'name', 'Janssen Scientific Affairs (United States)'),
(122446, 99129, 'en', 'name', 'Kwinana Community Health'),
(122447, 99130, 'en', 'name', 'University of Virginia Cancer Center'),
(122448, 99131, 'en', 'name', 'University of Puerto Rico at Aguadilla'),
(122449, 99132, 'fr', 'name', 'Aliments BioprocƩdƩs Toxicologie Environnements'),
(122450, 99133, 'de', 'name', 'Fonds der Chemischen Industrie'),
(122451, 99133, 'en', 'name', 'Chemical Industry Fund'),
(122452, 99134, 'no_lang_code', 'name', 'Sinomach (China)'),
(122453, 99134, 'zh', 'name', 'äø­å›½ęœŗę¢°å·„äøšé›†å›¢ęœ‰é™å…¬åø'),
(122454, 99135, 'fr', 'name', 'Laboratoire d''Ʃconomie appliquƩe au dƩveloppement'),
(122455, 99136, 'en', 'name', 'Samsung Changwon Hospital'),
(122456, 99137, 'en', 'name', 'Vinča Institute of Nuclear Sciences'),
(122457, 99137, 'sr', 'name', 'Institut za nuklearne nauke Vinča'),
(122458, 99138, 'fr', 'name', 'Val de Loire Recherche en Management'),
(122459, 99139, 'en', 'name', 'i3S - Institute for Research and Innovation in Health, University of Porto'),
(122460, 99139, 'pt', 'name', 'i3S - Instituto de Investigação e Inovação em Saúde, Universidade do Porto'),
(122461, 99140, 'de', 'name', 'Klinikum Chemnitz'),
(122462, 99141, 'en', 'name', 'Chinese Center For Disease Control and Prevention'),
(122463, 99141, 'zh', 'name', 'åŒ—äŗ¬åø‚é¢„é˜²åŒ»å­¦ē ”ē©¶äø­åæƒ'),
(122464, 99142, 'en', 'name', 'National Agricultural Technology Institute'),
(122465, 99142, 'es', 'name', 'Instituto Nacional de TecnologĆ­a Agropecuaria'),
(122466, 99143, 'en', 'name', 'Federal University of Rio Grande do Norte'),
(122467, 99143, 'pt', 'name', 'Universidade Federal do Rio Grande do Norte'),
(122468, 99144, 'en', 'name', 'Mother Teresa University'),
(122469, 99144, 'mk', 'name', 'Универзитет Мајка Тереза'),
(122470, 99144, 'sq', 'name', 'Universiteti Nƫnƫ Tereza nƫ Shkup'),
(122471, 99145, 'en', 'name', 'Kansas Water Science Center'),
(122472, 99146, 'en', 'name', 'The Dr. Mortimer and Theresa Sackler Foundation'),
(122473, 99147, 'en', 'name', 'Institute for Molecular Science'),
(122474, 99147, 'ja', 'name', 'åˆ†å­ē§‘å­¦ē ”ē©¶ę‰€'),
(122475, 99148, 'en', 'name', 'Cancer Center at Cold Spring Harbor Laboratory'),
(122476, 99149, 'en', 'name', 'State Key Laboratory of Catalysis'),
(122477, 99149, 'zh', 'name', 'å‚¬åŒ–åŸŗē”€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122478, 99150, 'en', 'name', 'Alamo Breast Cancer Foundation'),
(122479, 99151, 'es', 'name', 'Centro Singular de Investigación en Química Biológica y Materiales Moleculares'),
(122480, 99152, 'ca', 'name', 'Hospital Universitari Germans Trias i Pujol'),
(122481, 99153, 'en', 'name', 'Barnes-Jewish Hospital'),
(122482, 99154, 'es', 'name', 'Autobuses Urbanos Elche'),
(122483, 99155, 'fr', 'name', 'UniversitƩ Bretagne Loire'),
(122484, 99156, 'en', 'name', 'The Affiliated Shunde Hospital of Jinan University'),
(122485, 99156, 'zh', 'name', 'ęšØå—å¤§å­¦é™„å±žé”ŗå¾·åŒ»é™¢'),
(122486, 99157, 'en', 'name', 'Federal University of Uberlândia'),
(122487, 99157, 'pt', 'name', 'Universidade Federal de Uberlândia'),
(122488, 99158, 'en', 'name', 'Regional Health and Social Agency of Valtellina and Alto Lario'),
(122489, 99158, 'it', 'name', 'Azienda Socio Sanitaria Territoriale della Valtellina e Alto Lario'),
(122490, 99159, 'en', 'name', 'Sanitas Isaac Peral Advanced Rehabilitation Centre'),
(122491, 99159, 'es', 'name', 'Centro de Rehabilitación Avanzada Sanitas Isaac Peral'),
(122492, 99160, 'en', 'name', 'GMT Technology (Shenzhen) Co., Ltd., GMT Technology (Shenzhen) Co., Ltd. (China)'),
(122493, 99161, 'en', 'name', 'Corewell Health Reed City Hospital'),
(122494, 99162, 'id', 'name', 'UIN SATU Tulungagung'),
(122495, 99163, 'no_lang_code', 'name', 'Knowledge Kingdom Publishing'),
(122496, 99164, 'es', 'name', 'Superintendencia Nacional de Aduanas y de Administración Tributaria'),
(122497, 99165, 'en', 'name', 'International Vision University'),
(122498, 99165, 'mk', 'name', 'Uluslarası Vizyon Ünversitesi'),
(122499, 99166, 'en', 'name', 'Naval Research Laboratory Information Technology Division'),
(122500, 99167, 'en', 'name', 'Cognitive Sciences and Technologies Council'),
(122501, 99168, 'en', 'name', 'State Key Laboratory of High Performance Complex Manufacturing'),
(122502, 99168, 'zh', 'name', 'é«˜ę€§čƒ½å¤ę‚åˆ¶é€ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122503, 99169, 'en', 'name', 'Montana Agricultural Experiment Station'),
(122504, 99170, 'ca', 'name', 'Grup CHM Mental Salut'),
(122505, 99171, 'en', 'name', 'Joint Genome Institute'),
(122506, 99172, 'es', 'name', 'Ministerio de Desarrollo Agrario y Riego'),
(122507, 99173, 'en', 'name', 'State Key Laboratory of New Technology of Computer Software'),
(122508, 99173, 'zh', 'name', 'č®”ē®—ęœŗč½Æä»¶ę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122509, 99174, 'no_lang_code', 'name', 'Ninja Theory (United Kingdom)'),
(122510, 99175, 'cy', 'name', 'Prifysgol Lerpwl'),
(122511, 99175, 'en', 'name', 'University of Liverpool'),
(122512, 99176, 'ca', 'name', 'Fundació Lluita contra les Infeccions'),
(122513, 99176, 'en', 'name', 'Fight Infections Foundation'),
(122514, 99177, 'en', 'name', 'Panimalar Medical College Hospital & Research Institute'),
(122515, 99178, 'en', 'name', 'Foundation for Research, Science and Technology'),
(122516, 99178, 'mi', 'name', 'Tūāpapa Rangahau Pūtaiao'),
(122517, 99179, 'id', 'name', 'Politeknik Negeri Semarang'),
(122518, 99180, 'no_lang_code', 'name', 'SM GEODIM (Spain)'),
(122519, 99181, 'fr', 'name', 'Civilisations et littératures d''Espagne et d''Amérique du Moyen-Age aux Lumières'),
(122520, 99182, 'en', 'name', 'Academy of Civil Aviation'),
(122521, 99182, 'kk', 'name', 'Азаматтық Š°Š²ŠøŠ°Ń†ŠøŃ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(122522, 99183, 'es', 'name', 'Hospital Nacional de ParaplƩjicos'),
(122523, 99184, 'ca', 'name', 'Institut QuĆ­mic de SarriĆ '),
(122524, 99184, 'es', 'name', 'Instituto Quimico de SarriĆ '),
(122525, 99185, 'nl', 'name', 'Nuffic'),
(122526, 99186, 'en', 'name', 'Shri Gurudeo Ayurved College'),
(122527, 99187, 'en', 'name', 'NOVARTIS Foundation for the Promotion of Science (Japan)'),
(122528, 99188, 'es', 'name', 'Espacio ECP - Núcleo de Estudios y Formación en Terapia Centrada en la Persona'),
(122529, 99189, 'no_lang_code', 'name', 'Asociación de Investigación de las Industrias de la Construcción'),
(122530, 99190, 'en', 'name', 'Virginia Mason Memorial'),
(122531, 99191, 'en', 'name', 'State University of Feira de Santana'),
(122532, 99191, 'pt', 'name', 'Universidade Estadual de Feira de Santana'),
(122533, 99192, 'en', 'name', 'The Cotentin Cetacean Study Group'),
(122534, 99192, 'fr', 'name', 'Groupe d’Etude des CĆ©tacĆ©s du Cotentin'),
(122535, 99193, 'ca', 'name', 'TicSalut'),
(122536, 99194, 'fr', 'name', 'MathƩmatiques AppliquƩes Ơ Paris 5'),
(122537, 99195, 'no_lang_code', 'name', 'Fiberhome Technology Group (China)'),
(122538, 99196, 'en', 'name', 'Columbia Environmental Research Center'),
(122539, 99197, 'en', 'name', 'Menzies Institute for Medical Research'),
(122540, 99198, 'en', 'name', 'CHI Health Missouri Valley'),
(122541, 99199, 'en', 'name', 'Minneapolis Foundation'),
(122542, 99200, 'en', 'name', 'The Lemann Foundation'),
(122543, 99200, 'pt', 'name', 'Fundação Lemann'),
(122544, 99201, 'no_lang_code', 'name', 'Bloomsbury Publishing (United Kingdom)'),
(122545, 99202, 'ar', 'name', 'المجلس Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ©'),
(122546, 99202, 'en', 'name', 'The Arab Council for the Social Sciences'),
(122547, 99202, 'fr', 'name', 'Conseil Arabe pour les Sciences Sociales'),
(122548, 99203, 'es', 'name', 'COMSA (Spain)'),
(122549, 99204, 'en', 'name', 'Office of Health and Safety'),
(122550, 99205, 'no_lang_code', 'name', 'NVIDIA (Italy)'),
(122551, 99206, 'en', 'name', 'Maduka University'),
(122552, 99207, 'en', 'name', 'Lviv State University of Physical Culture'),
(122553, 99207, 'pl', 'name', 'Lwowski Państwowy Uniwersytet Kultury Fizycznej'),
(122554, 99207, 'ru', 'name', 'Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ физической ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Ń‹'),
(122555, 99207, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø, Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ фізичної ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€Šø імені Івана Š‘Š¾Š±ŠµŃ€ŃŃŒŠŗŠ¾Š³Š¾'),
(122556, 99208, 'es', 'name', 'Aceros especiales Europa'),
(122557, 99208, 'no_lang_code', 'name', 'Gerdau (Spain)'),
(122558, 99209, 'no_lang_code', 'name', 'FDI (France)'),
(122559, 99210, 'en', 'name', 'State Key Laboratory of Special Surface Protection Materials and Application Technology'),
(122560, 99210, 'zh', 'name', 'ē‰¹ē§č”Øé¢äæęŠ¤ęę–™åŠåŗ”ē”ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122561, 99211, 'en', 'name', 'Theoretical physics of condensed matter'),
(122562, 99211, 'fr', 'name', 'Laboratoire de Physique Théorique de la Matière Condensée'),
(122563, 99212, 'en', 'name', 'ISCIII Museum'),
(122564, 99212, 'es', 'name', 'Museo Nacional de Sanidad'),
(122565, 99213, 'en', 'name', 'State Key Laboratory of EMU and Locomotive Traction and Control'),
(122566, 99213, 'zh', 'name', 'åŠØč½¦ē»„å’Œęœŗč½¦ē‰µå¼•äøŽęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122567, 99214, 'en', 'name', 'Institute for Plant Molecular and Cellular Biology'),
(122568, 99214, 'es', 'name', 'Instituto de BiologĆ­a Molecular y Celular de Plantas'),
(122569, 99215, 'en', 'name', 'The JAX Cancer Center'),
(122570, 99216, 'en', 'name', 'University of Zimbabwe'),
(122571, 99217, 'no_lang_code', 'name', 'Malecare'),
(122572, 99218, 'en', 'name', 'Research Group in Integration and Sustainable Development in Built Environment'),
(122573, 99218, 'fr', 'name', 'Groupe de recherche en intégration et développement durable en environnement bâti'),
(122574, 99219, 'en', 'name', 'Carnot Institute ARTS'),
(122575, 99219, 'fr', 'name', 'Actions de Recherche pour la Technologie et la SociƩtƩ, Institut Carnot ARTS'),
(122576, 99220, 'en', 'name', 'Agency for the Cooperation of Energy Regulators'),
(122577, 99221, 'en', 'name', 'Research Centre of the Slovenian Academy of Sciences and Arts'),
(122578, 99221, 'sl', 'name', 'Znanstvenoraziskovalni center Slovenske akademije znanosti in umetnosti'),
(122579, 99222, 'en', 'name', 'Spanish Ovarian Cancer Research Group'),
(122580, 99222, 'es', 'name', 'Grupo EspaƱol de CƔncer de Ovario'),
(122581, 99223, 'en', 'name', 'University of the Arctic'),
(122582, 99224, 'en', 'name', 'New York Water Science Center'),
(122583, 99225, 'en', 'name', 'Hinchingbrooke Health Care NHS Trust'),
(122584, 99226, 'no_lang_code', 'name', 'Broderies Leveaux (France)'),
(122585, 99227, 'de', 'name', 'Deutsches ArchƤologisches Institut, Eurasien-Abteilung'),
(122586, 99227, 'en', 'name', 'German Archaeological Institute, Eurasia Department'),
(122587, 99228, 'es', 'name', 'Conselleria de Cultura, Educación y Ciencia, Generalitat Valenciana'),
(122588, 99229, 'pt', 'name', 'Editora da Universidade do Estado de Minas Gerais'),
(122589, 99230, 'es', 'name', 'Ministerio de Trabajo, Empleo y Seguridad Social de la Nación'),
(122590, 99231, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁŠŲ¶Ų§Ų”'),
(122591, 99231, 'no_lang_code', 'name', 'Albaydha University'),
(122592, 99232, 'en', 'name', 'WWF Germany'),
(122593, 99233, 'en', 'name', 'Quantinuum, Quantinuum (United Kingdom)'),
(122594, 99234, 'en', 'name', 'Economic & Social Sciences, Health Systems & Medical Informatics'),
(122595, 99234, 'fr', 'name', 'Sciences Economiques & Sociales de la SantƩ & Traitement de l''Information MƩdicale'),
(122596, 99235, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© Ų§Ł„ŲµŁ†Ų§Ų¹ŁŠŲ©- Ł…ŲµŲ±Ų§ŲŖŲ© - Ł„ŁŠŲØŁŠŲ§'),
(122597, 99235, 'en', 'name', 'The College of Industrial Technology'),
(122598, 99236, 'fr', 'name', 'Centre d''Etudes et de Recherches AppliquƩes Ơ la Gestion'),
(122599, 99237, 'en', 'name', 'Royal Hobart Hospital Research Foundation'),
(122600, 99238, 'en', 'name', 'Business and Technology University'),
(122601, 99238, 'ka', 'name', 'įƒ‘įƒ˜įƒ–įƒœįƒ”įƒ”įƒ˜įƒ”įƒ įƒ“įƒ įƒ¢įƒ”įƒ„įƒœįƒįƒšįƒįƒ’įƒ˜įƒ”įƒ‘įƒ˜įƒ” įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(122602, 99239, 'en', 'name', 'Solomon Islands National University'),
(122603, 99240, 'es', 'name', 'Hospital Universitario Ramón y Cajal'),
(122604, 99241, 'en', 'name', 'State Key Laboratory of Applied Organic Chemistry'),
(122605, 99241, 'zh', 'name', 'åŠŸčƒ½ęœ‰ęœŗåˆ†å­åŒ–å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122606, 99242, 'en', 'name', 'Ch. Pervaiz Elahi Institute of Cardiology, Multan'),
(122607, 99243, 'en', 'name', 'Paris Brain Institute'),
(122608, 99243, 'fr', 'name', 'Institut du Cerveau, Institut du Cerveau et de la Moelle épinière'),
(122609, 99244, 'no_lang_code', 'name', '2i2c'),
(122610, 99245, 'es', 'name', 'Red de Fundaciones Universidad Empresa'),
(122611, 99246, 'en', 'name', 'State Key Laboratory of Earth Surface Processes and Resource Ecology'),
(122612, 99246, 'zh', 'name', 'åœ°č”Øčæ‡ēØ‹äøŽčµ„ęŗē”Ÿę€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122613, 99247, 'en', 'name', 'KCA University'),
(122614, 99248, 'de', 'name', 'Rosenpass e.V.'),
(122615, 99249, 'en', 'name', 'International Society for Neurochemistry'),
(122616, 99250, 'es', 'name', 'Hospital Central de la Defensa Gómez Ulla, Hospital Militar Gómez Ulla'),
(122617, 99251, 'fr', 'name', 'LabEx PRIMES'),
(122618, 99252, 'fr', 'name', 'Ecole d''IngƩnieurs AƩronautique et Spatiale, Institut Polytechnique des Sciences AvancƩes'),
(122619, 99253, 'no_lang_code', 'name', 'Datang Telecom Group (China)'),
(122620, 99253, 'zh', 'name', 'å¤§å”ē”µäæ”ē§‘ęŠ€äŗ§äøšé›†å›¢'),
(122621, 99254, 'en', 'name', 'U.S. Army Yuma Test Center'),
(122622, 99255, 'es', 'name', 'Instituto Nacional de Pesca y Acuacultura'),
(122623, 99256, 'no_lang_code', 'name', 'Yunnan Metallurgical Group (China)'),
(122624, 99256, 'zh', 'name', 'äŗ‘å—å†¶é‡‘é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(122625, 99257, 'en', 'name', 'Ministry of Science, Technology and Innovation'),
(122626, 99257, 'pt', 'name', 'Ministério da Ciência, Tecnologia e Inovações'),
(122627, 99258, 'en', 'name', 'Kesmonds International University'),
(122628, 99259, 'en', 'name', 'Weston Family Foundation'),
(122629, 99260, 'es', 'name', 'Grupo EspaƱol de Tumores Neuroendocrinos'),
(122630, 99261, 'en', 'name', 'Ontario Research Foundation'),
(122631, 99262, 'en', 'name', 'United Nations Development Programme'),
(122632, 99263, 'en', 'name', 'State Key Laboratory of Microbial Resources'),
(122633, 99263, 'zh', 'name', 'å¾®ē”Ÿē‰©čµ„ęŗå‰ęœŸå¼€å‘å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122634, 99264, 'no_lang_code', 'name', 'Raytheon Technologies (Germany)'),
(122635, 99265, 'es', 'name', 'Instituto Tecnológico de Úrsulo GalvÔn'),
(122636, 99266, 'en', 'name', 'Agriculture and Agri-Food Canada'),
(122637, 99266, 'fr', 'name', 'Agriculture et Agroalimentaire Canada'),
(122638, 99267, 'de', 'name', 'Max Buchner Forschungsstiftung'),
(122639, 99267, 'en', 'name', 'Max Buchner Research Foundation'),
(122640, 99268, 'en', 'name', 'University of Alabama System'),
(122641, 99269, 'en', 'name', 'Tashkent State Pedagogical University named after Nizami'),
(122642, 99269, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет имени ŠŠøŃŠ¾Š¼ŠøŃ'),
(122643, 99269, 'uz', 'name', 'Toshkent Davlat Pedagogika Universiteti Nizomiy'),
(122644, 99270, 'en', 'name', 'Excelia Business School'),
(122645, 99271, 'en', 'name', 'Oceanographic Center of Murcia'),
(122646, 99271, 'es', 'name', 'Centro OceanogrƔfico de Murcia'),
(122647, 99272, 'fr', 'name', 'Orient & MƩditerranƩe'),
(122648, 99273, 'de', 'name', 'Stiftung Fiat Panis'),
(122649, 99273, 'en', 'name', 'The Foundation Fiat Panis'),
(122650, 99274, 'en', 'name', 'Evolutionary Biology and Ecology of Algae'),
(122651, 99274, 'fr', 'name', 'Biologie Ʃvolutive et Ʃcologie des algues'),
(122652, 99275, 'en', 'name', 'Herbert Irving Comprehensive Cancer Center'),
(122653, 99276, 'no_lang_code', 'name', 'TRAPIL (France)'),
(122654, 99277, 'en', 'name', 'Arizona Water Science Center'),
(122655, 99278, 'es', 'name', 'Instituto de Recursos Naturales y AgrobiologĆ­a de Salamanca'),
(122656, 99279, 'es', 'name', 'Operador Nacional de Electricidad - CENACE'),
(122657, 99280, 'en', 'name', 'SBS Swiss Business School'),
(122658, 99281, 'cs', 'name', 'NĆ”rodnĆ­ Agentura pro Zemědělský Výzkum'),
(122659, 99281, 'en', 'name', 'National Agency for Agricultural Research'),
(122660, 99282, 'es', 'name', 'Universidad de la Romana'),
(122661, 99283, 'en', 'name', 'Institute of Intelligent Systems for Automation'),
(122662, 99283, 'it', 'name', 'Istituto di Studi sui Sistemi Intelligenti per l''Automazione'),
(122663, 99284, 'es', 'name', 'Universidad Peruana de Integración Global'),
(122664, 99285, 'en', 'name', 'Mangalmay Institute of Management and Technology'),
(122665, 99286, 'en', 'name', 'Bucharest Emergency University Hospital'),
(122666, 99286, 'ro', 'name', 'Spitalul Universitar de Urgenta Bucuresti'),
(122667, 99287, 'es', 'name', 'Asociacion de Investigacion de Materiales Plasticos y Conexas'),
(122668, 99288, 'en', 'name', 'China Academy of Railway Sciences'),
(122669, 99288, 'zh', 'name', '中国铁道科学研究院'),
(122670, 99289, 'en', 'name', 'Skyfox Publishing Group'),
(122671, 99290, 'en', 'name', 'European University of the Canary Islands'),
(122672, 99290, 'es', 'name', 'Universidad Europea de Canarias'),
(122673, 99291, 'pt', 'name', 'Instituto de BiofĆ­sica Carlos Chagas Filho'),
(122674, 99292, 'en', 'name', 'State Key Laboratory of Geodesy and Earth''s Dynamics'),
(122675, 99292, 'zh', 'name', 'å¤§åœ°ęµ‹é‡äøŽåœ°ēƒåŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122676, 99293, 'en', 'name', 'Arcadia Fund'),
(122677, 99294, 'en', 'name', 'British Institute for Libyan and Northern African Studies'),
(122678, 99295, 'es', 'name', 'Instituto Nacional de ToxicologĆ­a y Ciencias Forenses'),
(122679, 99296, 'en', 'name', 'Arizona College of Emergency Physicians'),
(122680, 99297, 'de', 'name', 'Landesregierung von Baden-Württemberg'),
(122681, 99297, 'en', 'name', 'State Government of Baden-Württemberg'),
(122682, 99298, 'en', 'name', 'Harrow Research and Development Centre'),
(122683, 99298, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Harrow'),
(122684, 99299, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ°Š»Ń‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(122685, 99299, 'no_lang_code', 'name', 'Narxoz University'),
(122686, 99299, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š¢. Š Ń‹ŃŠŗŃƒŠ»Š¾Š²Š°'),
(122687, 99300, 'no_lang_code', 'name', 'Pratt & Whitney (United States)'),
(122688, 99301, 'en', 'name', 'Atlantic University College'),
(122689, 99302, 'en', 'name', 'Agrobiotechnology Institute'),
(122690, 99302, 'es', 'name', 'Instituto de AgrobiotecnologĆ­a'),
(122691, 99303, 'cy', 'name', 'Rhwydwaith Gwyddorau Bywyd Cymru'),
(122692, 99303, 'en', 'name', 'Life Sciences Research Network Wales'),
(122693, 99304, 'en', 'name', 'State Key Laboratory of Integrated Management of Pest Insects and Rodents'),
(122694, 99304, 'zh', 'name', 'å†œäøšč™«å®³é¼ å®³ē»¼åˆę²»ē†ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122695, 99305, 'fr', 'name', 'UniversitĆ© Saint Thomas d’Aquin'),
(122696, 99306, 'es', 'name', 'Centenaria y BenemƩrita Escuela Normal para Profesores'),
(122697, 99307, 'en', 'name', 'Arizona-Nevada Academy of Science'),
(122698, 99308, 'fr', 'name', 'Ɖtude des Structures, des Processus d’Adaptation et des Changements de l’Espace'),
(122699, 99309, 'en', 'name', 'National Health and Family Planning Commission'),
(122700, 99309, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å›½å®¶å«ē”Ÿå’Œč®”åˆ’ē”Ÿč‚²å§”å‘˜ä¼š'),
(122701, 99310, 'en', 'name', 'National University of Natural Medicine'),
(122702, 99311, 'en', 'name', 'Multiple Sclerosis International Federation'),
(122703, 99312, 'fr', 'name', 'GaNeXT'),
(122704, 99313, 'de', 'name', 'Chemisches und VeterinƤruntersuchungsamt Karlsruhe'),
(122705, 99313, 'en', 'name', 'Chemical and Veterinary Investigation Agency Karlsruhe'),
(122706, 99314, 'en', 'name', 'State Key Laboratory of Automatic Target Recognition'),
(122707, 99314, 'zh', 'name', 'č‡ŖåŠØē›®ę ‡čÆ†åˆ«å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122708, 99315, 'da', 'name', 'KĆøbenhavns Kommunehospital'),
(122709, 99315, 'en', 'name', 'Copenhagen Municipal Hospital'),
(122710, 99316, 'en', 'name', 'National Astronomical Observatory of Japan'),
(122711, 99316, 'ja', 'name', 'å›½ē«‹å¤©ę–‡å°'),
(122712, 99317, 'en', 'name', 'Associate Laboratory of Energy, Transports and Aerospace'),
(122713, 99317, 'pt', 'name', 'Laboratório Associado de Energia, Transportes e AeronÔutica'),
(122714, 99318, 'en', 'name', 'Ghana Health Service'),
(122715, 99319, 'en', 'name', 'RTI International'),
(122716, 99320, 'en', 'name', 'AGSB University'),
(122717, 99321, 'no_lang_code', 'name', 'Uni Pharma (Greece)'),
(122718, 99322, 'en', 'name', 'WWF-UK'),
(122719, 99323, 'no_lang_code', 'name', 'Zimbabwe Ezekiel Guti University'),
(122720, 99324, 'en', 'name', 'Vision Group on Science and Technology'),
(122721, 99325, 'no_lang_code', 'name', 'Olive Quimica (Spain)'),
(122722, 99326, 'fr', 'name', 'Ecole supƩrieure en science et technologies de l''informatique et du numƩrique'),
(122723, 99327, 'en', 'name', 'Bihar Agricultural University'),
(122724, 99327, 'hi', 'name', 'बिहार ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(122725, 99328, 'no_lang_code', 'name', 'Empresas PĆŗblicas de MedellĆ­n (Colombia)'),
(122726, 99329, 'es', 'name', 'Centro de Investigaciones CientĆ­ficas Isla de la Cartuja'),
(122727, 99330, 'en', 'name', 'The Foundation for Science and Technology'),
(122728, 99331, 'es', 'name', 'Asociación de Investigación de la Industria Textil'),
(122729, 99332, 'en', 'name', 'InnoRenew CoE'),
(122730, 99333, 'en', 'name', 'Fredericton Research and Development Centre'),
(122731, 99333, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Fredericton'),
(122732, 99334, 'en', 'name', 'Animal Free Research UK'),
(122733, 99335, 'en', 'name', 'Menzel Bourguiba Naval Academy'),
(122734, 99335, 'fr', 'name', 'Academie navale de Menzel Bourguiba'),
(122735, 99336, 'en', 'name', 'State Key Laboratory of Crop Genetic Improvement'),
(122736, 99336, 'zh', 'name', 'ä½œē‰©é—ä¼ ę”¹č‰Æå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122737, 99337, 'ca', 'name', 'Escola Superior de MĆŗsica de Catalunya'),
(122738, 99337, 'en', 'name', 'Catalonia College of Music'),
(122739, 99337, 'es', 'name', 'Escuela Superior de Música de Cataluña'),
(122740, 99338, 'fr', 'name', 'Centre Hospitalier de Versailles'),
(122741, 99339, 'en', 'name', 'Corewell Health Zeeland Hospital'),
(122742, 99340, 'fr', 'name', 'Unité de Modélisation Mathématique et Informatique des Systèmes Complexes'),
(122743, 99341, 'no_lang_code', 'name', 'Informa (United Kingdom)'),
(122744, 99342, 'en', 'name', 'Council on Library and Information Resources'),
(122745, 99343, 'fr', 'name', 'ReprƩsentations et IdentitƩs. Espaces Germanique, Nordique et NƩerlandophone'),
(122746, 99344, 'no_lang_code', 'name', 'Combustion Research and Flow Technology (United States)'),
(122747, 99345, 'en', 'name', 'State Key Laboratory of Numerical Modeling for Atmospheric Sciences and Geophysical Fluid Dynamics'),
(122748, 99345, 'zh', 'name', 'å¤§ę°”ē§‘å­¦å’Œåœ°ēƒęµä½“åŠ›å­¦ę•°å€¼ęØ”ę‹Ÿå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122749, 99346, 'en', 'name', 'Pontifical Catholic University of Ecuador, Ibarra Campus'),
(122750, 99346, 'es', 'name', 'Pontificia Universidad Católica del Ecuador Sede Ibarra'),
(122751, 99347, 'en', 'name', 'Applied Research Laboratories, The University of Texas at Austin'),
(122752, 99348, 'en', 'name', 'Federal University of Tocantins'),
(122753, 99348, 'pt', 'name', 'Universidade Federal do Tocantins'),
(122754, 99349, 'no_lang_code', 'name', 'Gree (China)'),
(122755, 99349, 'zh', 'name', 'ē ęµ·ę ¼åŠ›ē”µå™Øč‚”ä»½ęœ‰é™å…¬åø'),
(122756, 99350, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁˆŲ§ŲÆŁŠ'),
(122757, 99350, 'en', 'name', 'University of Eloued'),
(122758, 99351, 'en', 'name', 'South-East Scotland School of Anaesthesia'),
(122759, 99352, 'en', 'name', 'Louisiana Academy of Sciences'),
(122760, 99353, 'en', 'name', 'State Key Laboratory of Reproductive Biology for Family Planning'),
(122761, 99353, 'zh', 'name', 'č®”åˆ’ē”Ÿč‚²ē”Ÿę®–ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122762, 99354, 'en', 'name', 'PAMO University of Medical Sciences'),
(122763, 99355, 'fr', 'name', 'AlgoSolis'),
(122764, 99356, 'es', 'name', 'Sociedad Estatal de Participaciones Industriales'),
(122765, 99357, 'en', 'name', 'AlcalĆ” Center for Interdisciplinary Research'),
(122766, 99357, 'es', 'name', 'Centro de Investigaciones Interdisciplinares de AlcalĆ”'),
(122767, 99358, 'en', 'name', 'CureDuchenne'),
(122768, 99359, 'en', 'name', 'Dutch Research School for Astronomy'),
(122769, 99359, 'nl', 'name', 'Nederlandse Onderzoekschool Voor Astronomie'),
(122770, 99360, 'de', 'name', 'Helmholtz-Institut für Translationale Onkologie (HI-TRON, Mainz)'),
(122771, 99360, 'en', 'name', 'Helmholtz Institute for Translational Oncology Mainz'),
(122772, 99361, 'en', 'name', 'Spinnaker Health Research Foundation'),
(122773, 99362, 'en', 'name', 'State Key Laboratory of Mechanical Transmission'),
(122774, 99362, 'zh', 'name', 'ęœŗę¢°ä¼ åŠØå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122775, 99363, 'fr', 'name', 'Laboratoire de GƩographie Physique'),
(122776, 99364, 'es', 'name', 'Instituto de Investigaciones QuĆ­micas'),
(122777, 99365, 'en', 'name', 'Regional Health Care and Social Agency of Lodi'),
(122778, 99365, 'it', 'name', 'Aziende Socio Sanitarie Territoriale Lodi'),
(122779, 99366, 'ca', 'name', 'Vall d’Hebron Institut d’Oncologia'),
(122780, 99366, 'en', 'name', 'Vall d''Hebron Institute of Oncology'),
(122781, 99367, 'en', 'name', 'Tinbergen Institute'),
(122782, 99368, 'de', 'name', 'Bayerisches Polymerinstitut'),
(122783, 99368, 'en', 'name', 'Bavarian Polymer Institute'),
(122784, 99369, 'en', 'name', 'St. Clare Hospital in Lakewood'),
(122785, 99370, 'en', 'name', 'Stanford SystemX Alliance'),
(122786, 99371, 'en', 'name', 'Prince William Sound Science Center'),
(122787, 99372, 'cs', 'name', 'Agrovýzkum Rapotín s.r.o.'),
(122788, 99372, 'en', 'name', 'Agrovyzkum Rapotin, Agrovyzkum Rapotin (Czechia)'),
(122789, 99373, 'en', 'name', 'Federal Institute of Education, Science and Technology of Minas Gerais'),
(122790, 99373, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Minas Gerais'),
(122791, 99374, 'en', 'name', 'Nebraska Spine Hospital'),
(122792, 99375, 'en', 'name', 'ANZCA Clinical Trials Network'),
(122793, 99376, 'es', 'name', 'Agencia Vasca de la Innovación'),
(122794, 99376, 'eu', 'name', 'Innobasque'),
(122795, 99377, 'en', 'name', 'Hospital Real de Granada, Royal Hospital of Granada'),
(122796, 99378, 'fr', 'name', 'Laboratoire de Linguistique et Didactique des Langues EtrangĆØres et Maternelles'),
(122797, 99379, 'nl', 'name', 'Departement Omgeving'),
(122798, 99380, 'en', 'name', 'Shunan University'),
(122799, 99380, 'ja', 'name', 'å‘Øå—å…¬ē«‹å¤§å­¦'),
(122800, 99381, 'en', 'name', 'State Key Laboratory of Cotton Biology'),
(122801, 99381, 'zh', 'name', 'ę£‰čŠ±ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122802, 99382, 'tr', 'name', 'Üniversite ve Araştırma Kütüphanecileri Derneği'),
(122803, 99383, 'no_lang_code', 'name', 'Archimedes International (Cyprus)'),
(122804, 99384, 'no_lang_code', 'name', 'Gamma Reality (United States)'),
(122805, 99385, 'en', 'name', 'Virginia Soybean Board'),
(122806, 99386, 'en', 'name', 'Institute for Functional Biology and Genomics'),
(122807, 99386, 'es', 'name', 'Instituto de Biología Funcional y Genómica'),
(122808, 99387, 'en', 'name', 'U.S. Army Evaluation Center'),
(122809, 99388, 'en', 'name', 'nccr – on the move'),
(122810, 99389, 'fr', 'name', 'Centre d’études des transformations des activitĆ©s physiques et sportives'),
(122811, 99390, 'en', 'name', 'Harrison Medical Center'),
(122812, 99391, 'en', 'name', 'HEC Foundation'),
(122813, 99391, 'fr', 'name', 'Fondation HEC'),
(122814, 99392, 'en', 'name', 'Institute of Life, Earth and Environment'),
(122815, 99393, 'en', 'name', 'National Institutes of Natural Sciences'),
(122816, 99393, 'ja', 'name', 'č‡Ŗē„¶ē§‘å­¦ē ”ē©¶ę©Ÿę§‹'),
(122817, 99394, 'en', 'name', 'Institute of Basic Medical Sciences of the Chinese Academy of Medical Sciences'),
(122818, 99394, 'zh', 'name', 'äø­å›½åŒ»å­¦ē§‘å­¦é™¢åŸŗē”€åŒ»å­¦ē ”ē©¶ę‰€'),
(122819, 99395, 'en', 'name', 'State Key Laboratory of Aerodynamics'),
(122820, 99395, 'zh', 'name', 'ē©ŗå¤©é£žč”Œē©ŗę°”åŠØåŠ›ē§‘å­¦äøŽęŠ€ęœÆå…Øå›½é‡ē‚¹å®žéŖŒå®¤'),
(122821, 99396, 'es', 'name', 'Universidad Isabel I'),
(122822, 99397, 'en', 'name', 'Institute for Philosophical Studies'),
(122823, 99397, 'pt', 'name', 'Instituto de Estudos Filosóficos'),
(122824, 99398, 'no_lang_code', 'name', 'IBM (Netherlands)'),
(122825, 99399, 'en', 'name', 'Adhesion and Inflammation Lab'),
(122826, 99399, 'fr', 'name', 'Laboratoire AdhƩsion et inflammation'),
(122827, 99400, 'fr', 'name', 'Institut Des Substances et Organismes de la Mer'),
(122828, 99401, 'fr', 'name', 'Equipe de recherche interdisciplinaire sur la Grande Bretagne, l’Irlande et l’AmĆ©rique du Nord'),
(122829, 99402, 'en', 'name', 'Virginia Mason Bainbridge Island Medical Center'),
(122830, 99403, 'en', 'name', 'Earlham College'),
(122831, 99404, 'en', 'name', 'Washington Grain Commission'),
(122832, 99405, 'en', 'name', 'Synchrotron-Light for Experimental Science and Applications in the Middle East'),
(122833, 99406, 'no_lang_code', 'name', 'Commonwealth Edison (United States)'),
(122834, 99407, 'en', 'name', 'The Nonwovens Institute'),
(122835, 99408, 'en', 'name', 'Sphinx University'),
(122836, 99409, 'en', 'name', 'Alexandria Archive Institute'),
(122837, 99410, 'en', 'name', 'Alstom'),
(122838, 99410, 'no_lang_code', 'name', 'Alstom (United States)'),
(122839, 99411, 'es', 'name', 'Estación Experimental de Aula Dei'),
(122840, 99412, 'de', 'name', 'Nuklearmedizinische Klinik des Klinikums rechts der Isar'),
(122841, 99413, 'en', 'name', 'Philippine Council for Industry, Energy, and Emerging Technology Research and Development'),
(122842, 99414, 'de', 'name', 'Theologische FakultƤt Trier'),
(122843, 99415, 'fr', 'name', 'Modélisation et Ingénierie des Systèmes Complexes Biologiques pour le Diagnostic'),
(122844, 99416, 'en', 'name', 'Rochester Academy of Science'),
(122845, 99417, 'en', 'name', 'St. Elizabeth Hospital in Enumclaw'),
(122846, 99418, 'en', 'name', 'American Chronic Pain Association'),
(122847, 99419, 'en', 'name', 'Cetena Foundation“s Multidisciplinary Innovation and Technology Centre of Navarre'),
(122848, 99419, 'es', 'name', 'Centro Multidisciplinar de TecnologĆ­as para la Industria'),
(122849, 99420, 'en', 'name', 'State Key Laboratory of Clean and Efficient Coal-Fired Power Generation and Pollution Control'),
(122850, 99420, 'zh', 'name', 'ęø…ę“é«˜ę•ˆē‡ƒē…¤å‘ē”µäøŽę±”ęŸ“ęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122851, 99421, 'ca', 'name', 'Institut de Diagnòstic Ambiental i Estudis de l''Aigua'),
(122852, 99421, 'en', 'name', 'Institute of Environmental Assessment and Water Research'),
(122853, 99421, 'es', 'name', 'Instituto de Diagnóstico Ambiental y Estudios del Agua'),
(122854, 99422, 'es', 'name', 'Centro Quƭmica OrgƔnica "LORA-TAMAYO"'),
(122855, 99423, 'de', 'name', 'NiedersƤchsische Staats-und UniversitƤtsbibliothek Gƶttingen'),
(122856, 99423, 'en', 'name', 'Gƶttingen State and University Library'),
(122857, 99424, 'en', 'name', 'William Harvey Research Institute'),
(122858, 99425, 'en', 'name', 'Center for Advanced Studies on Puerto Rico and the Caribbean'),
(122859, 99425, 'es', 'name', 'Centro de Estudios Avanzados de Puerto Rico y El Caribe'),
(122860, 99426, 'en', 'name', 'Athena Research and Innovation Center In Information Communication & Knowledge Technologies'),
(122861, 99427, 'fr', 'name', 'MƩcanismes Centraux et PƩriphƩriques de la NeurodƩgƩnƩrescence'),
(122862, 99428, 'no_lang_code', 'name', 'Raytheon Technologies (Finland)'),
(122863, 99429, 'en', 'name', 'Quebec Centre for Advanced Materials'),
(122864, 99429, 'fr', 'name', 'Centre quƩbƩcois sur les matƩriaux fonctionnels'),
(122865, 99430, 'fr', 'name', 'Laboratoire de Recherche Hydrodynamique, EnergƩtique et Environnement AtmosphƩrique'),
(122866, 99431, 'fr', 'name', 'Centre intƩgrƩ de santƩ et de services sociaux de la MontƩrƩgie-Est'),
(122867, 99432, 'en', 'name', 'Government of Northern Ireland'),
(122868, 99433, 'en', 'name', 'National University of the Northeast'),
(122869, 99433, 'es', 'name', 'Universidad Nacional del Nordeste'),
(122870, 99434, 'no_lang_code', 'name', 'Centro de TecnologĆ­as Aeronauticas (Spain)'),
(122871, 99435, 'en', 'name', 'Science and Technology Facilities Council'),
(122872, 99436, 'es', 'name', 'Consejo Argentino de OftalmologĆ­a'),
(122873, 99437, 'en', 'name', 'Institute of Mechanics'),
(122874, 99437, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŠ›å­¦ē ”ē©¶ę‰€'),
(122875, 99438, 'no_lang_code', 'name', 'Cesefor'),
(122876, 99439, 'en', 'name', 'Society for the Study of Evolution'),
(122877, 99440, 'en', 'name', 'Doctors'' Center Hospital'),
(122878, 99441, 'en', 'name', 'Federal University of RecƓncavo da Bahia'),
(122879, 99441, 'pt', 'name', 'Universidade Federal do RecƓncavo da Bahia'),
(122880, 99442, 'en', 'name', 'Philippine Council for Agriculture, Aquatic and Natural Resources Research and Development'),
(122881, 99443, 'no_lang_code', 'name', 'Ramem (Spain)'),
(122882, 99444, 'en', 'name', 'The University of Tokyo'),
(122883, 99444, 'ja', 'name', 'ę±äŗ¬å¤§å­¦'),
(122884, 99445, 'en', 'name', 'Oceanographic Center of Canarias'),
(122885, 99445, 'es', 'name', 'Centro OceanogrƔfico de Canarias'),
(122886, 99446, 'en', 'name', 'Accelerator Test Facility'),
(122887, 99447, 'fr', 'name', 'Laboratoire d’Analyse et de MathĆ©matiques AppliquĆ©es'),
(122888, 99448, 'no_lang_code', 'name', 'Alliant Techsystems (United States)');
INSERT INTO `ror_settings` VALUES
(122889, 99449, 'ca', 'name', 'Escola PolitĆØcnica Superior d''Alcoi'),
(122890, 99449, 'es', 'name', 'Escuela PolitƩcnica Superior de Alcoy'),
(122891, 99450, 'pl', 'name', 'Gdańskie Seminarium Duchowne'),
(122892, 99451, 'en', 'name', 'Yukawa Institute for Theoretical Physics'),
(122893, 99451, 'ja', 'name', 'äŗ¬éƒ½å¤§å­øę¹Æę²³ē†č«–ē‰©ē†ē ”ē©¶ę‰€'),
(122894, 99452, 'en', 'name', 'Ted Nash Long Life Foundation'),
(122895, 99453, 'en', 'name', 'Forest and Rangeland Ecosystem Science Center'),
(122896, 99454, 'en', 'name', 'National Organization of Spanish blind people'),
(122897, 99454, 'es', 'name', 'Organización Nacional de Ciegos Españoles'),
(122898, 99455, 'en', 'name', 'Komenda College of Education'),
(122899, 99456, 'en', 'name', 'BE-Basic Foundation'),
(122900, 99457, 'en', 'name', 'University of Puerto Rico at Bayamón'),
(122901, 99457, 'es', 'name', 'Universidad de Puerto Rico en Bayamón'),
(122902, 99458, 'en', 'name', 'Sandia National Laboratories California'),
(122903, 99459, 'no_lang_code', 'name', 'Certis USA (United States)'),
(122904, 99460, 'en', 'name', 'Royal Marsden Cancer Charity'),
(122905, 99461, 'en', 'name', 'State Key Laboratory of Desert and Oasis Ecology'),
(122906, 99461, 'zh', 'name', 'č’ę¼ äøŽē»æę“²ē”Ÿę€å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122907, 99462, 'en', 'name', 'Alzheimer Precision Medicine'),
(122908, 99463, 'en', 'name', 'Corewell Health William Beaumont University Hospital'),
(122909, 99464, 'en', 'name', 'State Key Laboratory of Drug Research'),
(122910, 99464, 'zh', 'name', 'ę–°čÆē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122911, 99465, 'no_lang_code', 'name', 'Vindico Pharmaceuticals (United States)'),
(122912, 99466, 'es', 'name', 'Hospital Universitario Virgen de la Arrixaca'),
(122913, 99467, 'ja', 'name', 'ćƒ«ćƒć‚µć‚¹ ć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹ę Ŗå¼ä¼šē¤¾'),
(122914, 99467, 'no_lang_code', 'name', 'Renesas Electronics (Japan)'),
(122915, 99468, 'en', 'name', 'National Institute for Public Policy Analysis'),
(122916, 99468, 'it', 'name', 'Istituto nazionale per l’analisi delle politiche pubbliche'),
(122917, 99469, 'en', 'name', 'National Institute of Electricity'),
(122918, 99469, 'pt', 'name', 'Instituto Nacional de Energia ElƩtrica'),
(122919, 99470, 'en', 'name', 'American Fisheries Society'),
(122920, 99471, 'es', 'name', 'Hospital Damas'),
(122921, 99472, 'es', 'name', 'Servicio Gallego de Salud'),
(122922, 99473, 'es', 'name', 'Asociación Colombiana de Neumología y Cirugía de Tórax'),
(122923, 99474, 'en', 'name', 'Information Processing and System Research Lab'),
(122924, 99474, 'fr', 'name', 'Equipes Traitement de l''Information et SystĆØmes'),
(122925, 99475, 'en', 'name', 'UBS Optimus Foundation'),
(122926, 99476, 'de', 'name', 'Ministerium für Ländlichen Raum und Verbraucherschutz Baden-Württemberg'),
(122927, 99477, 'en', 'name', 'State Key Laboratory of Media Convergence and Communication'),
(122928, 99477, 'zh', 'name', 'åŖ’ä½“čžåˆäøŽä¼ ę’­å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122929, 99478, 'en', 'name', 'Cognitive and Semantic Interpretation Engineering Laboratory'),
(122930, 99478, 'fr', 'name', 'Laboratoire en ingƩnierie cognitive et sƩmantique'),
(122931, 99479, 'en', 'name', 'UCLA Jonsson Comprehensive Cancer Center'),
(122932, 99480, 'en', 'name', 'Ministry of Economy and Sustainable Development'),
(122933, 99480, 'hr', 'name', 'Ministarstvo gospodarstva i održivog razvoja'),
(122934, 99481, 'en', 'name', 'United Nations University Institute on Globalization, Culture and Mobility'),
(122935, 99482, 'en', 'name', 'Central Mechanical Engineering Research Institute'),
(122936, 99483, 'en', 'name', 'State Key Laboratory of Mechanical Structure Mechanics and Control'),
(122937, 99483, 'zh', 'name', 'ęœŗę¢°ē»“ęž„åŠ›å­¦åŠęŽ§åˆ¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122938, 99484, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ł‡Ų±Ų§ŁˆŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ų¹Ł„ŁˆŁ… الصحة'),
(122939, 99484, 'fr', 'name', 'UniversitƩ Internationale Abulcasis des Sciences de la SantƩ'),
(122940, 99485, 'en', 'name', 'Health Research'),
(122941, 99486, 'es', 'name', 'Centro de Documentación Musical de Andalucía'),
(122942, 99487, 'en', 'name', 'ZERO Prostate Cancer'),
(122943, 99488, 'fr', 'name', 'Centre d’étude de la langue et des littĆ©ratures franƧaises'),
(122944, 99489, 'no_lang_code', 'name', 'China Huaneng Group Co., Ltd. (China)'),
(122945, 99489, 'zh', 'name', 'äø­å›½åŽčƒ½é›†å›¢'),
(122946, 99490, 'en', 'name', 'State Key Laboratory of Cognitive Neuroscience and Learning'),
(122947, 99490, 'zh', 'name', 'č®¤ēŸ„ē„žē»ē§‘å­¦äøŽå­¦ä¹ å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122948, 99491, 'nl', 'name', 'Rotterdamse Fondsen'),
(122949, 99492, 'en', 'name', 'State Key Laboratory of Materials Processing and Die & Mould Technology'),
(122950, 99492, 'zh', 'name', 'ęę–™ęˆå½¢äøŽęØ”å…·ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122951, 99493, 'no_lang_code', 'name', 'Institut Universitari de Ciencia i Tecnologia (Spain)'),
(122952, 99494, 'es', 'name', 'Instituto de Evaluación e Ingeniería Avanzada'),
(122953, 99495, 'en', 'name', 'Government College of Engineering, Tirunelveli'),
(122954, 99496, 'en', 'name', 'Lucile Packard Children''s Hospital'),
(122955, 99497, 'en', 'name', 'Global Crop Diversity Trust'),
(122956, 99498, 'fr', 'name', 'Centre d''analyse des rhƩtoriques religieuses de l''AntiquitƩ'),
(122957, 99499, 'en', 'name', 'Institute for Data Valorisation'),
(122958, 99499, 'fr', 'name', 'Institut de Valorisation des DonnƩes'),
(122959, 99500, 'en', 'name', 'Aichi Kidney Foundation'),
(122960, 99500, 'ja', 'name', 'ę„›ēŸ„č…Žč‡“č²”å›£'),
(122961, 99501, 'en', 'name', 'Swift Current Research and Development Centre'),
(122962, 99501, 'fr', 'name', 'Centre de recherche et de dƩveloppement de Swift Current'),
(122963, 99502, 'es', 'name', 'Centro Regional de Investigaciones Multidisciplinarias'),
(122964, 99503, 'en', 'name', 'Amrita Institute of Medical Sciences and Research Centre'),
(122965, 99503, 'ml', 'name', 'ą“…ą“®ąµƒą“¤ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“øą“Æąµ»ą“øą“øąµ'),
(122966, 99504, 'en', 'name', 'Johns Hopkins University – Nanjing University Center for Chinese and American Studies'),
(122967, 99504, 'zh', 'name', 'å—äŗ¬å¤§å­¦ā€”ēŗ¦ēæ°ę–ÆĀ·éœę™®é‡‘ę–Æå¤§å­¦äø­ē¾Žę–‡åŒ–ē ”ē©¶äø­åæƒ'),
(122968, 99505, 'en', 'name', 'Jizzakh State Pedagogical University'),
(122969, 99505, 'ru', 'name', 'Джизакский Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŠŸŠµŠ“Š°Š³Š¾Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ Университет'),
(122970, 99505, 'uz', 'name', 'Jizzax Davlat Pedagogika Universiteti'),
(122971, 99506, 'en', 'name', 'State Key Laboratory of Luminescence and Application'),
(122972, 99506, 'zh', 'name', 'å‘å…‰å­¦åŠåŗ”ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122973, 99507, 'es', 'name', 'Centro de Neumologia Pediatrica'),
(122974, 99508, 'en', 'name', 'Republican Specialized Scientific and Practical Medical Center of Oncology and Radiology'),
(122975, 99508, 'ru', 'name', 'Республиканский специализированный Š½Š°ŃƒŃ‡Š½Š¾-практический меГицинский центр онкологии Šø раГиологии'),
(122976, 99508, 'uz', 'name', 'Respublika ixtisoslashtirilgan onkologiya va radiologiya ilmiy-amaliy tibbiyot markazi'),
(122977, 99509, 'en', 'name', 'State Key Laboratory of Functional Materials for Informatics'),
(122978, 99509, 'zh', 'name', 'äæ”ęÆåŠŸčƒ½ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122979, 99510, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ±Ų© Ł†ŁˆŲ±Ų© بنت Ų¹ŲØŲÆ الرحمن'),
(122980, 99510, 'en', 'name', 'Princess Nourah bint Abdulrahman University'),
(122981, 99511, 'en', 'name', 'Real Colegio Complutense'),
(122982, 99512, 'en', 'name', 'Children’s Hospital Foundation of Manitoba'),
(122983, 99513, 'no_lang_code', 'name', 'China National Electric Apparatus Research Institute (China)'),
(122984, 99513, 'zh', 'name', 'äø­å›½ē”µå™Øē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(122985, 99514, 'en', 'name', 'Baotou Research Institute of Rare Earths'),
(122986, 99514, 'zh', 'name', 'åŒ…å¤“ēØ€åœŸē ”ē©¶é™¢'),
(122987, 99515, 'fr', 'name', 'Laboratoire d''Analyse des SociƩtƩs, Transformations et Adaptations'),
(122988, 99516, 'en', 'name', 'Multicriteria Planning'),
(122989, 99516, 'no_lang_code', 'name', 'Mcrit (Spain)'),
(122990, 99517, 'no_lang_code', 'name', 'Bial (Spain)'),
(122991, 99518, 'ja', 'name', '大谷大学'),
(122992, 99518, 'no_lang_code', 'name', 'Ōtani University'),
(122993, 99519, 'en', 'name', 'Laboratories of Analytical Biology'),
(122994, 99520, 'fr', 'name', 'Laboratoire d''Algorithmique, ComplexitƩ et Logique'),
(122995, 99521, 'en', 'name', 'State Key Laboratory of High Temperature Gas Dynamics'),
(122996, 99521, 'zh', 'name', 'é«˜ęø©ę°”ä½“åŠØåŠ›å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(122997, 99522, 'en', 'name', 'Higher Council for Science and Technology'),
(122998, 99523, 'id', 'name', 'Universitas Banten Jaya'),
(122999, 99524, 'en', 'name', 'Neurotech, LLC'),
(123000, 99524, 'no_lang_code', 'name', 'Neurotech, LLC (United States)'),
(123001, 99525, 'en', 'name', 'National Agricultural Research and Development Institute'),
(123002, 99526, 'en', 'name', 'Rusk Rehabilitation'),
(123003, 99527, 'es', 'name', 'Universidad Da Vinci'),
(123004, 99528, 'en', 'name', 'Guam Waterworks Authority'),
(123005, 99529, 'en', 'name', 'Netherlands Earth System Science Centre'),
(123006, 99530, 'en', 'name', 'Baba Raghav Das Medical College'),
(123007, 99530, 'hi', 'name', 'बाबा राघव दास ą¤®ą„‡ą¤”ą¤æą¤•ą¤² ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(123008, 99531, 'fr', 'name', 'Corteam'),
(123009, 99532, 'es', 'name', 'Diputación Foral de Gipuzkoa'),
(123010, 99533, 'en', 'name', 'Institute of Geology and Geophysics named after Kh.M. Abdullaev'),
(123011, 99533, 'ru', 'name', 'Ā«Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ геологии Šø геофизики» имени Š„.М.АбГуллаева'),
(123012, 99533, 'uz', 'name', 'X.M.Аbdullaev nomidagi "Geologiya va geofizika instituti"'),
(123013, 99534, 'en', 'name', 'Portia'),
(123014, 99535, 'en', 'name', 'Chinese Academy of Social Sciences'),
(123015, 99535, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢'),
(123016, 99536, 'en', 'name', 'State Key Laboratory of Vegetation and Environmental Change'),
(123017, 99536, 'zh', 'name', 'ę¤č¢«äøŽēŽÆå¢ƒå˜åŒ–å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123018, 99537, 'en', 'name', 'Ministry of Health'),
(123019, 99538, 'en', 'name', 'Minas Gerais State University'),
(123020, 99538, 'pt', 'name', 'Universidade do Estado de Minas Gerais'),
(123021, 99539, 'es', 'name', 'Barcelona Activa'),
(123022, 99540, 'no_lang_code', 'name', 'Tenaris (Luxembourg)'),
(123023, 99541, 'fr', 'name', 'Laboratoire de Recherche sur les Apprentissages en Contexte'),
(123024, 99542, 'id', 'name', 'Universitas Tunas Pembangunan'),
(123025, 99543, 'en', 'name', 'NIHR School for Public Health Research'),
(123026, 99544, 'en', 'name', 'State Key Laboratory of Mobile Networks and Mobile Multimedia Technology'),
(123027, 99544, 'zh', 'name', 'ē§»åŠØē½‘ē»œå’Œē§»åŠØå¤šåŖ’ä½“ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123028, 99545, 'en', 'name', 'Nuclear Science and Technology Research Institute'),
(123029, 99546, 'en', 'name', 'British Management University Tashkent'),
(123030, 99546, 'ru', 'name', 'Британский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ менеГжмента в Š¢Š°ŃˆŠŗŠµŠ½Ń‚е'),
(123031, 99546, 'uz', 'name', 'Britaniya Menejment Universiteti'),
(123032, 99547, 'fr', 'name', 'Centre intƩgrƩ de santƩ et de services sociaux de la MontƩrƩgie-Ouest'),
(123033, 99548, 'es', 'name', 'Ministerio de Agricultura, Pesca y Alimentación'),
(123034, 99549, 'en', 'name', 'Epilepsy Society'),
(123035, 99550, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų±ŁŠŲ§ŲÆŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(123036, 99550, 'en', 'name', 'Al-Ryada University for Science and Technology'),
(123037, 99551, 'en', 'name', 'Office of Congressional and Intergovernmental Affairs'),
(123038, 99552, 'no_lang_code', 'name', 'Shaanxi Yanchang Petroleum (China)'),
(123039, 99552, 'zh', 'name', 'é™•č„æå»¶é•æēŸ³ę²¹ļ¼ˆé›†å›¢ļ¼‰ęœ‰é™č“£ä»»å…¬åø'),
(123040, 99553, 'en', 'name', 'Hydrogen and Fuel Cell Technologies Office'),
(123041, 99554, 'en', 'name', 'Lirio, Inc., Lirio, Inc. (United States)'),
(123042, 99555, 'en', 'name', 'Institute of Physics'),
(123043, 99555, 'zh', 'name', '中国科学院物理研究所'),
(123044, 99556, 'en', 'name', 'National Microbiome Data Collaborative'),
(123045, 99557, 'en', 'name', 'Max Perutz Labs'),
(123046, 99558, 'no_lang_code', 'name', 'Tenaris (Venezuela)'),
(123047, 99559, 'en', 'name', 'National University of Defense Technology'),
(123048, 99559, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›å›½é˜²ē§‘å­¦ęŠ€ęœÆå¤§å­¦'),
(123049, 99560, 'fr', 'name', 'Laboratoire des Applications NumƩriques'),
(123050, 99561, 'en', 'name', 'Mossakowski Medical Research Institute,  Polish Academy of Sciences'),
(123051, 99561, 'pl', 'name', 'Instytut Medycyny Doświadczalnej i Klinicznej im. Mirosława Mossakowskiego Polskiej Akademii Nauk'),
(123052, 99562, 'en', 'name', 'Liaoning Cancer Hospital & Institute'),
(123053, 99563, 'no_lang_code', 'name', 'Abbott Vascular (United States)'),
(123054, 99564, 'en', 'name', 'Region of Liguria'),
(123055, 99564, 'it', 'name', 'Regione Liguria'),
(123056, 99565, 'en', 'name', 'Theoretical and Experimental Ecology Station'),
(123057, 99565, 'fr', 'name', 'Station d’Écologie ThĆ©orique et ExpĆ©rimentale'),
(123058, 99566, 'en', 'name', 'New York University Langone Orthopedic Hospital'),
(123059, 99567, 'en', 'name', 'Southwestern Medical Center'),
(123060, 99568, 'en', 'name', 'Shanghai Institute of Pollution Control and Ecological Security'),
(123061, 99568, 'zh', 'name', 'äøŠęµ·ę±”ęŸ“ęŽ§åˆ¶äøŽē”Ÿę€å®‰å…Øē ”ē©¶é™¢'),
(123062, 99569, 'fr', 'name', 'Jeunesse - ActivitƩ Physique et Sportive, santƩ'),
(123063, 99570, 'no_lang_code', 'name', 'Ordesa (Spain)'),
(123064, 99571, 'fr', 'name', 'Immunologie - Immunopathologie - ImmunothƩrapie'),
(123065, 99572, 'en', 'name', 'Private Academic Library Network of Indiana, Inc. (PALNI)'),
(123066, 99573, 'en', 'name', 'Defence Science and Technology Group'),
(123067, 99574, 'en', 'name', 'Ministry of Health'),
(123068, 99574, 'ms', 'name', 'Kementerian Kesihatan Malaysia'),
(123069, 99575, 'en', 'name', 'Henri PoincarƩ Institute'),
(123070, 99575, 'fr', 'name', 'Institut Henri PoincarƩ'),
(123071, 99576, 'en', 'name', 'Pathwest Laboratory Medicine'),
(123072, 99577, 'en', 'name', 'Materials Sciences and Engineering Division'),
(123073, 99578, 'en', 'name', 'LUPUS UK'),
(123074, 99579, 'en', 'name', 'WWF-Indonesia'),
(123075, 99580, 'en', 'name', 'Vanderbilt University Medical Center'),
(123076, 99581, 'id', 'name', 'Institut Agama Islam Negeri Kendari'),
(123077, 99582, 'en', 'name', 'Dutch Arthritis Foundation'),
(123078, 99582, 'nl', 'name', 'ReumaNederland'),
(123079, 99583, 'it', 'name', 'Istituto Sperimentale Agronomico'),
(123080, 99584, 'es', 'name', 'Instituto de CarboquĆ­mica'),
(123081, 99585, 'fr', 'name', 'Institut des Mondes Anglophone, Germanique et Roman'),
(123082, 99586, 'no_lang_code', 'name', 'China Coal Research Institute (China)'),
(123083, 99586, 'zh', 'name', '中国煤炭科学研究总院'),
(123084, 99587, 'en', 'name', 'Institute of General Organic Chemistry'),
(123085, 99587, 'es', 'name', 'Instituto de Quƭmica OrgƔnica General'),
(123086, 99588, 'en', 'name', 'Deendayal Research Institute'),
(123087, 99589, 'de', 'name', 'Schweizerisches Universitäres Institut für Traditionelle Chinesische Medizin'),
(123088, 99590, 'en', 'name', 'Santa Fe Science, Technology and Innovation Agency'),
(123089, 99590, 'es', 'name', 'Agencia Santafesina de Ciencia, Tecnología e Innovación'),
(123090, 99591, 'en', 'name', 'Ministry of Agriculture and Rural Development'),
(123091, 99591, 'he', 'name', '×ž×©×Ø×“ ×”×—×§×œ××•×Ŗ ופיתוח הכפר'),
(123092, 99592, 'ca', 'name', 'Institut de CiĆØncies del Mar'),
(123093, 99592, 'es', 'name', 'Instituto de Ciencias del Mar'),
(123094, 99593, 'de', 'name', 'Schweizerische Institut für Rechtsvergleichung'),
(123095, 99593, 'en', 'name', 'Swiss Institute of Comparative Law'),
(123096, 99593, 'fr', 'name', 'Institut suisse de droit comparƩ'),
(123097, 99593, 'it', 'name', 'Istituto svizzero di diritto comparato'),
(123098, 99594, 'en', 'name', 'Centre for Epidemiology Versus Arthritis'),
(123099, 99595, 'en', 'name', 'Central Laser Facility'),
(123100, 99596, 'en', 'name', 'U.S. Geological Survey, Alaska Science Center'),
(123101, 99597, 'en', 'name', 'China Electric Power Research Institute'),
(123102, 99597, 'zh', 'name', 'äø­å›½ē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(123103, 99598, 'en', 'name', 'Turkish Society of Anesthesiology and Reanimation'),
(123104, 99598, 'tr', 'name', 'Türk Anesteziyoloji ve Reanimasyon Derneği'),
(123105, 99599, 'no_lang_code', 'name', 'EMD Serono (United States)'),
(123106, 99600, 'en', 'name', 'Office of International Affairs'),
(123107, 99601, 'fr', 'name', 'Centre intĆ©grĆ© de santĆ© et des services sociaux de l’Outaouais'),
(123108, 99602, 'cs', 'name', 'Agricultural Research, Ltd. (Czechia), Zemědělský výzkum,spol. s r.o.'),
(123109, 99602, 'en', 'name', 'Agricultural Research, Ltd.'),
(123110, 99603, 'id', 'name', 'Institut Seni Indonesia Yogyakarta'),
(123111, 99604, 'en', 'name', 'Shanghai Institute of Ceramics'),
(123112, 99604, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äøŠęµ·ē”…é…øē›ē ”ē©¶ę‰€'),
(123113, 99605, 'en', 'name', 'Diamond Light Source'),
(123114, 99606, 'en', 'name', 'Wickramarachchi University of Indigenous Medicine'),
(123115, 99606, 'si', 'name', 'ą¶œą¶øą·Šą¶“ą·„ ą·€ą·’ą¶šą·Šą¶»ą¶øą·ą¶»ą¶ ą·Šą¶ ą·’ ą¶Æą·šą·ą·“ą¶ŗ ą·€ą·›ą¶Æą·Šą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šą¶ŗą·ą¶½ą¶ŗ'),
(123116, 99607, 'en', 'name', 'Bernstein Center for Computational Neuroscience Berlin'),
(123117, 99608, 'fr', 'name', 'PƩrinatalitƩ & Risques Toxiques'),
(123118, 99609, 'en', 'name', 'National Minerals Information Center'),
(123119, 99610, 'en', 'name', 'Namur Institute for Complex Systems'),
(123120, 99611, 'de', 'name', 'Allgemeines Krankenhaus der Stadt Wien'),
(123121, 99611, 'en', 'name', 'Vienna General Hospital'),
(123122, 99612, 'en', 'name', 'Republican Scientific and Practical Center of Cardiology'),
(123123, 99612, 'ru', 'name', 'Республиканский Š½Š°ŃƒŃ‡Š½Š¾-практический центр Ā«ŠšŠ°Ń€Š“ŠøŠ¾Š»Š¾Š³ŠøŃĀ»'),
(123124, 99613, 'cs', 'name', 'KrajskĆ” knihovna v PardubicĆ­ch'),
(123125, 99613, 'en', 'name', 'Pardubice Regional Library'),
(123126, 99614, 'fr', 'name', 'Centre de Recherche en Histoire EuropƩenne ComparƩe, de l''AntiquitƩ Ơ nos jours'),
(123127, 99615, 'en', 'name', 'Columban College'),
(123128, 99615, 'tl', 'name', 'Dalubhasaang Columban'),
(123129, 99616, 'en', 'name', 'Research Centre for Olive Growing and Olive Oil Industry'),
(123130, 99617, 'no_lang_code', 'name', 'AT4 wireless (Spain)'),
(123131, 99618, 'en', 'name', 'Virginia Mason Lynnwood Medical Center'),
(123132, 99619, 'en', 'name', 'Advance Queensland'),
(123133, 99620, 'en', 'name', 'Defence Science and Technology'),
(123134, 99621, 'ca', 'name', 'Fundacio Pere Tarres'),
(123135, 99622, 'en', 'name', 'NIHR Maudsley Biomedical Research Centre'),
(123136, 99623, 'en', 'name', 'Bristol University Press'),
(123137, 99624, 'en', 'name', 'Antarctic Sciences'),
(123138, 99625, 'en', 'name', 'Government of Thailand'),
(123139, 99626, 'en', 'name', 'University of Mazandaran'),
(123140, 99626, 'fa', 'name', 'دانؓگاه مازندران'),
(123141, 99627, 'en', 'name', 'Institute for Social Change'),
(123142, 99628, 'no_lang_code', 'name', 'Abengoa (Spain)'),
(123143, 99629, 'en', 'name', 'University of Belgrade – Faculty of Law'),
(123144, 99629, 'sr', 'name', 'Univerzitet u Beogradu – Pravni fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠŸŃ€Š°Š²Š½Šø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(123145, 99630, 'en', 'name', 'Australian Maritime College'),
(123146, 99631, 'en', 'name', 'Institute of Southern Punjab'),
(123147, 99632, 'en', 'name', 'Bayamón Central University'),
(123148, 99632, 'es', 'name', 'Universidad Central de Bayamón'),
(123149, 99633, 'de', 'name', 'Deutsche Knochenmarkspenderdatei'),
(123150, 99634, 'fr', 'name', 'Laboratoire d''Informatique de Paris Nord, Laboratoire d''Informatique de Paris-Nord'),
(123151, 99635, 'en', 'name', 'Beaumont Health'),
(123152, 99636, 'no_lang_code', 'name', 'Saind (Spain)'),
(123153, 99637, 'pt', 'name', 'Hospital de ClĆ­nicas da Unicamp'),
(123154, 99638, 'no_lang_code', 'name', 'Litton Industries (United States)'),
(123155, 99639, 'no_lang_code', 'name', 'Rastriya Banijya Bank Limited'),
(123156, 99640, 'en', 'name', 'Foso College of Education'),
(123157, 99641, 'en', 'name', 'Scottish Universities Press'),
(123158, 99642, 'en', 'name', 'Institute for Research in Biomedicine'),
(123159, 99642, 'es', 'name', 'Istituto di Ricerca in Biomedicina'),
(123160, 99643, 'en', 'name', 'Association for the Development of Industrial Aerodynamics'),
(123161, 99643, 'pt', 'name', 'Associação para o Desenvolvimento da Aerodinâmica Industrial'),
(123162, 99644, 'en', 'name', 'State Key Laboratory of Plasting Molding Technology'),
(123163, 99644, 'zh', 'name', 'å”‘ę€§ęˆå½¢ęØ”å…·ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123164, 99645, 'no_lang_code', 'name', 'IbermƔtica (Spain)'),
(123165, 99646, 'es', 'name', 'Asociacion Valenciana de empresarios de plasticos'),
(123166, 99647, 'en', 'name', 'Beijing Police College'),
(123167, 99647, 'zh', 'name', 'åŒ—äŗ¬č­¦åÆŸå­¦é™¢'),
(123168, 99648, 'en', 'name', 'TAS Farm Innovation Hub'),
(123169, 99649, 'no_lang_code', 'name', 'Arconic (United States)'),
(123170, 99650, 'de', 'name', 'Interdisziplinäre Forschungszentrum für Technik, Arbeit und Kultur'),
(123171, 99650, 'en', 'name', 'Interdisciplinary Research Centre for Technology, Work and Culture'),
(123172, 99651, 'en', 'name', 'Butler University'),
(123173, 99651, 'es', 'name', 'Universidad Butler'),
(123174, 99652, 'am', 'name', 'įŒ‚įŠ•įŠ« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(123175, 99652, 'en', 'name', 'Jinka University'),
(123176, 99653, 'en', 'name', 'Antillean Adventist University'),
(123177, 99653, 'es', 'name', 'Universidad Adventista de las Antillas'),
(123178, 99654, 'fr', 'name', 'Pouvoirs, Lettres, Normes'),
(123179, 99655, 'no_lang_code', 'name', 'Commercial Aircraft Corporation of China (China)'),
(123180, 99655, 'zh', 'name', 'äø­å›½å•†ē”Øé£žęœŗęœ‰é™č“£ä»»å…¬åø'),
(123181, 99656, 'fr', 'name', 'Groupe de Recherche Clinique en Neuro-urologie'),
(123182, 99657, 'en', 'name', 'SLAC National Accelerator Laboratory'),
(123183, 99657, 'fr', 'name', 'Centre de l''AccƩlƩrateur LinƩaire de Stanford'),
(123184, 99658, 'en', 'name', 'UC Irvine Chao Family Comprehensive Cancer Center'),
(123185, 99659, 'en', 'name', 'CHI Health Schuyler'),
(123186, 99660, 'en', 'name', 'Linkƶping University Hospital'),
(123187, 99660, 'sv', 'name', 'Universitetssjukhuset i Linkƶping'),
(123188, 99661, 'en', 'name', 'North Dakota State University'),
(123189, 99661, 'es', 'name', 'Universidad Estatal de Dakota del Norte'),
(123190, 99661, 'fr', 'name', 'UniversitĆ© d''Ɖtat du dakota du nord'),
(123191, 99662, 'en', 'name', 'Commonwealth of Massachusetts'),
(123192, 99663, 'en', 'name', 'Office of Defense Programs'),
(123193, 99664, 'en', 'name', 'Pacific Northwest National Laboratory'),
(123194, 99665, 'en', 'name', 'Texas State University'),
(123195, 99665, 'es', 'name', 'Universidad Estatal de Texas'),
(123196, 99665, 'fr', 'name', 'UniversitĆ© d''Ɖtat du Texas'),
(123197, 99666, 'no_lang_code', 'name', 'Bolding & Bruggeman'),
(123198, 99667, 'en', 'name', 'Jacobi Medical Center'),
(123199, 99668, 'en', 'name', 'Women''s University in Africa'),
(123200, 99669, 'en', 'name', 'Nevada Water Science Center'),
(123201, 99670, 'en', 'name', 'Arkansas Rice Research and Promotion Board'),
(123202, 99671, 'en', 'name', 'Dongyang Red Cross Hospital'),
(123203, 99671, 'zh', 'name', 'äøœé˜³åø‚ēŗ¢ä¼šåŒ»é™¢'),
(123204, 99672, 'en', 'name', 'Montana Department of Agriculture'),
(123205, 99673, 'en', 'name', 'China Textile Academy'),
(123206, 99673, 'zh', 'name', '中国纺织科学研究院'),
(123207, 99674, 'en', 'name', 'Federal University of Rio Grande'),
(123208, 99674, 'pt', 'name', 'Universidade Federal do Rio Grande'),
(123209, 99675, 'en', 'name', 'Nutrition Obesity & Risk of Thrombosis'),
(123210, 99675, 'fr', 'name', 'Nutrition, ObƩsitƩ et Risque Thrombotique'),
(123211, 99676, 'en', 'name', 'Government of Northwest Territories'),
(123212, 99677, 'en', 'name', 'Institute of Botany'),
(123213, 99677, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ę¤ē‰©ē ”ē©¶ę‰€'),
(123214, 99678, 'cs', 'name', 'VysokÔ Ŕkola zdravotnickÔ, o. p. s.'),
(123215, 99678, 'en', 'name', 'Medical College in Prague'),
(123216, 99679, 'en', 'name', 'Ministry of Education and Child Care'),
(123217, 99680, 'en', 'name', 'Ghana Communication Technology University'),
(123218, 99681, 'en', 'name', 'Foundation for the Study of Viral Hepatitis'),
(123219, 99681, 'es', 'name', 'Fundación para el Estudio de las Hepatitis Virales'),
(123220, 99682, 'es', 'name', 'Instituto de Ganaderƭa de MontaƱa'),
(123221, 99683, 'en', 'name', 'Andalusian Agency for Healthcare Quality'),
(123222, 99683, 'es', 'name', 'Agencia de Calidad Sanitaria de AndalucĆ­a'),
(123223, 99684, 'pt', 'name', 'Escola Nacional de Administração Pública'),
(123224, 99685, 'en', 'name', 'Hebei University of Economics and Business'),
(123225, 99685, 'zh', 'name', 'ę²³åŒ—ē»č“øå¤§å­¦'),
(123226, 99686, 'no_lang_code', 'name', 'Raytheon Technologies (Poland)'),
(123227, 99687, 'en', 'name', 'Public Policy Institute for Wales'),
(123228, 99688, 'no_lang_code', 'name', 'IntegraGen (France)'),
(123229, 99689, 'en', 'name', 'White Rose East Asia Centre'),
(123230, 99690, 'en', 'name', 'Institute of Coal Chemistry'),
(123231, 99690, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å±±č„æē…¤ē‚­åŒ–å­¦ē ”ē©¶ę‰€'),
(123232, 99691, 'en', 'name', 'Australian Nuclear Science and Technology Organisation'),
(123233, 99692, 'en', 'name', 'Shandong First Medical University'),
(123234, 99692, 'zh', 'name', 'å±±äøœē¬¬äø€åŒ»ē§‘å¤§å­¦'),
(123235, 99693, 'en', 'name', 'Institute of Physical Chemistry Blas Cabrera'),
(123236, 99693, 'es', 'name', 'Instituto de QuĆ­mica FĆ­sica Blas Cabrera'),
(123237, 99694, 'en', 'name', 'The Municipal Institute for Information Technology'),
(123238, 99694, 'es', 'name', 'Institut Municipal D''InformƔtica de Barcelona, Instituto Municipal de InformƔtica de Barcelona'),
(123239, 99695, 'en', 'name', 'Kimyo International University in Tashkent'),
(123240, 99695, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет ŠšŠøŠ¼Ń‘'),
(123241, 99695, 'uz', 'name', 'Toshkent Kimyo Xalqaro Universiteti'),
(123242, 99696, 'es', 'name', 'WWF Colombia'),
(123243, 99697, 'en', 'name', 'New Zealand Agricultural Greenhouse Gas Research Centre'),
(123244, 99698, 'es', 'name', 'Hospital Universitario RĆ­o Hortega'),
(123245, 99699, 'no_lang_code', 'name', 'Metafinanz'),
(123246, 99700, 'da', 'name', 'DHI'),
(123247, 99701, 'en', 'name', 'Office of Planning, Research and Evaluation'),
(123248, 99702, 'no_lang_code', 'name', 'Owens Corning (France)'),
(123249, 99703, 'en', 'name', 'Ministry of Defence'),
(123250, 99703, 'es', 'name', 'Ministerio de Defensa'),
(123251, 99704, 'es', 'name', 'Agencia de Medio Ambiente y Agua de AndalucĆ­a'),
(123252, 99705, 'en', 'name', 'Ottawa Hospital Research Institute'),
(123253, 99705, 'fr', 'name', 'Institut de recherche de l''hƓpital d''Ottawa'),
(123254, 99706, 'fr', 'name', 'Laboratoire d’excellence Physique Atomes LumiĆØre MatiĆØre'),
(123255, 99707, 'pl', 'name', 'Fundacja Adeptów i Miłośników Ekonomii'),
(123256, 99708, 'ca', 'name', 'Institut de Biologia Integrativa de Sistemes'),
(123257, 99708, 'en', 'name', 'Institute for Integrative Systems Biology'),
(123258, 99708, 'es', 'name', 'Instituto de BiologĆ­a Integrativa de Sistemas'),
(123259, 99709, 'fr', 'name', 'CNRT MatƩriaux, Centre National de Recherche Technologique'),
(123260, 99710, 'es', 'name', 'Hospital Episcopal San Lucas'),
(123261, 99711, 'en', 'name', 'BC Centre for Disease Control'),
(123262, 99712, 'en', 'name', 'Palompon Institute of Technology'),
(123263, 99713, 'en', 'name', 'International Panel on the Information Environment'),
(123264, 99714, 'de', 'name', 'Elitenetzwerk Bayern'),
(123265, 99714, 'en', 'name', 'Elite Network of Bavaria'),
(123266, 99715, 'en', 'name', 'Universiteti Metropolitan Tirana, University Metropolitan Tirana'),
(123267, 99716, 'pt', 'name', 'Fundação de Amparo à Pesquisa do Estado do Rio Grande do Sul'),
(123268, 99717, 'ca', 'name', 'Ajuntament de Girona'),
(123269, 99717, 'es', 'name', 'Ayuntamiento de Girona'),
(123270, 99718, 'en', 'name', 'ASAPbio'),
(123271, 99719, 'en', 'name', 'Bukhara State University'),
(123272, 99719, 'ru', 'name', 'Š‘ŃƒŃ…Š°Ń€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(123273, 99719, 'uz', 'name', 'Buxoro davlat universiteti'),
(123274, 99720, 'fr', 'name', 'GƩnomique du cancer et du cerveau'),
(123275, 99721, 'en', 'name', 'Research Council of Finland'),
(123276, 99721, 'fi', 'name', 'Suomen Akatemia'),
(123277, 99721, 'sv', 'name', 'Finlands Akademi'),
(123278, 99722, 'en', 'name', 'CBE Consultants, Inc., CBE Consultants, Inc. (United States)'),
(123279, 99723, 'sv', 'name', 'SprƄkbanken Tal'),
(123280, 99724, 'fr', 'name', 'Savoirs et Pratiques du Moyen Ƃge au XIXe siĆØcle'),
(123281, 99725, 'no_lang_code', 'name', 'Northrop Grumman (United States)'),
(123282, 99726, 'en', 'name', 'The University of Kansas Health System'),
(123283, 99727, 'en', 'name', 'CHI Health Mercy Corning'),
(123284, 99728, 'en', 'name', 'Research Institute for Humanity and Nature'),
(123285, 99728, 'ja', 'name', 'ē·åˆåœ°ēƒē’°å¢ƒå­¦ē ”ē©¶ę‰€'),
(123286, 99729, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł†ŲµŁˆŲ±Ų© Ų§Ł„Ų¬ŲÆŁŠŲÆŲ©'),
(123287, 99729, 'en', 'name', 'New Mansoura University'),
(123288, 99730, 'en', 'name', 'Science Center for Information Technologies in Design'),
(123289, 99730, 'ru', 'name', 'Центр информационных технологий в проектировании'),
(123290, 99731, 'en', 'name', 'CHI Health'),
(123291, 99732, 'en', 'name', 'Research Foundation for the Electrotechnology of Chubu'),
(123292, 99732, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­éƒØé›»ę°—åˆ©ē”ØåŸŗē¤Žē ”ē©¶ęŒÆčˆˆč²”å›£'),
(123293, 99733, 'ca', 'name', 'Fundació Catalana per a la Recerca i la Innovació'),
(123294, 99733, 'en', 'name', 'Catalan Foundation for Research and Innovation'),
(123295, 99733, 'es', 'name', 'Fundación Catalana para la investigación e Innovación'),
(123296, 99734, 'fr', 'name', 'Laboratoire de Recherche en Informatique de Paris 6'),
(123297, 99735, 'de', 'name', 'Bundesdenkmalamt'),
(123298, 99736, 'en', 'name', 'UNM Comprehensive Cancer Center'),
(123299, 99737, 'es', 'name', 'Administración Nacional de Medicamentos, Alimentos y Tecnología Médica'),
(123300, 99738, 'fr', 'name', 'MƩthodes et Outils pour les Sciences Participatives'),
(123301, 99739, 'en', 'name', 'Brazilian Center for Research in Energy and Materials'),
(123302, 99740, 'no_lang_code', 'name', 'Chiang Mai University'),
(123303, 99740, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(123304, 99741, 'en', 'name', 'Animal Health Research Centre'),
(123305, 99741, 'es', 'name', 'Centro de Investigación en Sanidad Animal'),
(123306, 99742, 'fr', 'name', 'Institut de Recherche en Sciences de la SantƩ'),
(123307, 99743, 'en', 'name', 'NIHR Cambridge Biomedical Research Centre'),
(123308, 99744, 'pt', 'name', 'Instituto Vita Alere'),
(123309, 99745, 'en', 'name', 'China People''s Police University'),
(123310, 99745, 'zh', 'name', 'äø­å›½äŗŗę°‘č­¦åÆŸå¤§å­¦'),
(123311, 99746, 'en', 'name', 'Office of Basic Energy Sciences'),
(123312, 99747, 'en', 'name', 'Council of Government of the Principality of Asturias'),
(123313, 99747, 'es', 'name', 'Gobierno del Principado de Asturias'),
(123314, 99748, 'en', 'name', 'St. John''s Research and Development Centre'),
(123315, 99748, 'fr', 'name', 'Centre de recherche et de dƩveloppement de St. John''s'),
(123316, 99749, 'en', 'name', 'Silent Spring Institute'),
(123317, 99750, 'en', 'name', 'International Association for the Study of Popular Romance'),
(123318, 99751, 'en', 'name', 'Australian Research Council'),
(123319, 99752, 'no_lang_code', 'name', 'ObeTherapy Biotechnology (France)'),
(123320, 99753, 'cs', 'name', 'VojenskĆ” nemocnice Brno'),
(123321, 99753, 'en', 'name', 'Military Hospital Brno'),
(123322, 99754, 'en', 'name', 'State Key Laboratory of Plant Cell and Chromosome Engineering'),
(123323, 99754, 'zh', 'name', 'ę¤ē‰©ē»†čƒžäøŽęŸ“č‰²ä½“å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123324, 99755, 'en', 'name', 'Laboratory of Medical Information Processing'),
(123325, 99755, 'fr', 'name', 'Laboratoire de Traitement de l''Information MƩdicale'),
(123326, 99756, 'en', 'name', 'Shanghai Institute of Pharmaceutical Industry'),
(123327, 99756, 'zh', 'name', 'äøŠęµ·åŒ»čÆå·„äøšē ”ē©¶é™¢'),
(123328, 99757, 'en', 'name', 'Institute of Agriculture and Natural Resources'),
(123329, 99758, 'en', 'name', 'Office of Workforce Development for Teachers and Scientists'),
(123330, 99759, 'en', 'name', 'Laboratory of Molecular and Cellular Biology of Eukaryotes'),
(123331, 99759, 'fr', 'name', 'Laboratoire de Biologie MolƩculaire et Cellulaire des Eucaryotes'),
(123332, 99760, 'en', 'name', 'UCL Hospitals Charitable Foundation'),
(123333, 99761, 'fr', 'name', 'Institut Lavoisier de Versailles'),
(123334, 99762, 'fr', 'name', 'La RƩgion Occitanie PyrƩnƩes-MƩditerranƩe'),
(123335, 99763, 'en', 'name', 'Sunnybrook Research Institute'),
(123336, 99764, 'en', 'name', 'Foundation to Support Research and Technological Innovation of the State of Sergipe'),
(123337, 99764, 'pt', 'name', 'Fundação de Apoio à Pesquisa e à Inovação Tecnológica do Estado de Sergipe'),
(123338, 99765, 'fr', 'name', 'Enzymologie de l''ARN'),
(123339, 99766, 'no_lang_code', 'name', 'Industria de Alimentos ZenĆŗ S.A.S. (Colombia)'),
(123340, 99767, 'en', 'name', 'Civilian Nuclear Programs'),
(123341, 99768, 'en', 'name', 'Johns Hopkins University Center for AIDS Research'),
(123342, 99769, 'en', 'name', 'Catholic University of Rennes'),
(123343, 99769, 'fr', 'name', 'Institut catholique de rennes'),
(123344, 99770, 'en', 'name', 'Wicking Dementia Centre'),
(123345, 99771, 'de', 'name', 'Stiftung SAPA, Schweizer Archiv der Darstellenden Künste'),
(123346, 99771, 'en', 'name', 'SAPA Foundation, Swiss Archive of the Performing Arts'),
(123347, 99771, 'fr', 'name', 'Fondation SAPA, Archives suisses des arts de la scĆØne'),
(123348, 99771, 'it', 'name', 'SAPA raccoglie e mette a disposizione del pubblico documenti'),
(123349, 99772, 'en', 'name', 'CHI Health Immanuel'),
(123350, 99773, 'en', 'name', 'Komarov Botanical Institute of the Russian Academy of Sciences'),
(123351, 99773, 'ru', 'name', 'Ботанический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. Š’.Š›. ŠšŠ¾Š¼Š°Ń€Š¾Š²Š° Российской акаГемии наук'),
(123352, 99774, 'en', 'name', 'Institute of Parasitology and Biomedicine López-Neyra'),
(123353, 99774, 'es', 'name', 'Instituto de Parasitología y Biomedicina "López - Neyra"'),
(123354, 99775, 'en', 'name', 'Western ParanĆ” State University'),
(123355, 99775, 'pt', 'name', 'Universidade Estadual do Oeste do ParanĆ”'),
(123356, 99776, 'en', 'name', 'Institute of Intelligent Systems and Robotics'),
(123357, 99776, 'fr', 'name', 'Institut SystĆØmes Intelligents et de Robotique'),
(123358, 99777, 'en', 'name', 'Japan Atomic Energy Agency'),
(123359, 99777, 'ja', 'name', 'ę—„ęœ¬åŽŸå­åŠ›ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(123360, 99778, 'nl', 'name', 'Uyttenboogaart-Eliasen Stichting'),
(123361, 99779, 'en', 'name', 'Process Engineering for Environment and Food'),
(123362, 99779, 'fr', 'name', 'Laboratoire de GĆ©nie des ProcĆ©dĆ©s – Environnement – Agro-alimentaire'),
(123363, 99780, 'en', 'name', 'Institute of Soil Science'),
(123364, 99780, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å—äŗ¬åœŸå£¤ē ”ē©¶ę‰€'),
(123365, 99781, 'en', 'name', 'State Key Laboratory of Advanced Technology For Materials Synthesis and Processing'),
(123366, 99781, 'zh', 'name', 'ęę–™å¤åˆę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123367, 99782, 'en', 'name', 'Laboratory of Microbial Oceanography'),
(123368, 99782, 'fr', 'name', 'Laboratoire d''OcƩanographie Microbienne'),
(123369, 99783, 'de', 'name', 'Deutsches ArchƤologisches Institut, Abteilung Athen'),
(123370, 99783, 'en', 'name', 'German Archaeological Institute, Athens Department'),
(123371, 99784, 'en', 'name', 'Ministry of Agriculture'),
(123372, 99784, 'es', 'name', 'Ministerio de Agricultura'),
(123373, 99785, 'en', 'name', 'State Key Laboratory of Internal Combustion Engines'),
(123374, 99785, 'zh', 'name', 'å†…ē‡ƒęœŗē‡ƒēƒ§å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123375, 99786, 'fr', 'name', 'Ɖquipe LittĆ©rature et Culture italiennes'),
(123376, 99787, 'en', 'name', 'ASL Environmental Sciences'),
(123377, 99787, 'no_lang_code', 'name', 'ASL Environmental Sciences (Canada)'),
(123378, 99788, 'no_lang_code', 'name', 'Asseco (Poland)'),
(123379, 99789, 'pt', 'name', 'Instituto de Investigação AgrÔria de Moçambique'),
(123380, 99790, 'en', 'name', 'Ministry of Education'),
(123381, 99790, 'mi', 'name', 'Te Tāhuhu o te Mātauranga'),
(123382, 99791, 'en', 'name', 'Oak Ridge Leadership Computing Facility'),
(123383, 99792, 'en', 'name', 'Office of Policy'),
(123384, 99793, 'en', 'name', 'State Key Laboratory of Special Rare Metal Materials'),
(123385, 99793, 'zh', 'name', 'ēØ€ęœ‰é‡‘å±žē‰¹ē§ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123386, 99794, 'fr', 'name', 'Structure et InstabilitƩ des GƩnomes'),
(123387, 99795, 'en', 'name', 'Swamy Vivekanadha Medical College Hospital and Research Institute'),
(123388, 99796, 'en', 'name', 'All Russian Research Institute of Animal Breeding'),
(123389, 99796, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ племенного Гела'),
(123390, 99797, 'en', 'name', 'Duchess Of Kent Hospital'),
(123391, 99798, 'en', 'name', 'Gastroenterology Hospital "Saverio de Bellis"'),
(123392, 99798, 'it', 'name', 'Ente Ospedaliero Specializzato in Gastroenterologia Saverio de Bellis'),
(123393, 99799, 'en', 'name', 'Azarbaijan Shahid Madani University'),
(123394, 99799, 'fa', 'name', 'دانؓگاه Ų“Ł‡ŪŒŲÆ Ł…ŲÆŁ†ŪŒ Ų¢Ų°Ų±ŲØŲ§ŪŒŲ¬Ų§Ł†'),
(123395, 99800, 'en', 'name', 'Cancer Society of Finland'),
(123396, 99800, 'fi', 'name', 'SyƶpƤjƤrjestƶt'),
(123397, 99800, 'sv', 'name', 'Cancerorganisationerna'),
(123398, 99801, 'en', 'name', 'Pak-Austria Fachhochschule: Institute of Applied Sciences and Technology'),
(123399, 99802, 'en', 'name', 'University of Puerto Rico at Carolina'),
(123400, 99803, 'fr', 'name', 'UMS PhƩnotypage du petit animal'),
(123401, 99804, 'es', 'name', 'Consejería de la Presidencia, Interior, DiÔlogo Social y Simplificación Administrativa'),
(123402, 99805, 'es', 'name', 'Instituto de Biomedicina de Valencia'),
(123403, 99806, 'en', 'name', 'NTNU Social Research'),
(123404, 99806, 'no', 'name', 'NTNU Samfunnsforskning'),
(123405, 99807, 'en', 'name', 'St. Lawrence University'),
(123406, 99807, 'es', 'name', 'Universidad de St. Lawrence'),
(123407, 99807, 'fr', 'name', 'UniversitƩ de st. lawrence'),
(123408, 99808, 'en', 'name', 'Cambia Health Foundation'),
(123409, 99809, 'de', 'name', 'Ministerium für Soziales und Integration Baden-Württemberg'),
(123410, 99810, 'no_lang_code', 'name', 'General Dynamics (United States)'),
(123411, 99811, 'en', 'name', 'Smilow Cancer Hospital'),
(123412, 99812, 'de', 'name', 'Kommission für Forschungsinformationen in Deutschland'),
(123413, 99813, 'en', 'name', 'Eva Crane Trust'),
(123414, 99814, 'en', 'name', 'UC Davis Health System'),
(123415, 99815, 'en', 'name', 'National Institute for Basic Biology'),
(123416, 99815, 'ja', 'name', 'åŸŗē¤Žē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(123417, 99816, 'fr', 'name', 'Laboratoire des Symbioses Tropicales et MƩditerranƩennes'),
(123418, 99817, 'de', 'name', 'Deutsches ArchƤologisches Institut, Abteilung Istanbul'),
(123419, 99817, 'en', 'name', 'German Archaeological Institute, Istanbul Department'),
(123420, 99818, 'en', 'name', 'Australia Telescope National Facility'),
(123421, 99819, 'id', 'name', 'Universitas Nahdlatul Ulama Sidoarjo'),
(123422, 99820, 'en', 'name', 'Sanitas Zaragoza Medical Centre'),
(123423, 99820, 'es', 'name', 'Centro MƩdico Sanitas Zaragoza'),
(123424, 99821, 'sv', 'name', 'SprƄkbanken'),
(123425, 99822, 'en', 'name', 'Botswana University of Agriculture and Natural Resources'),
(123426, 99823, 'en', 'name', 'Ohio-Kentucky-Indiana Water Science Center'),
(123427, 99824, 'en', 'name', 'University Hospital of the Canary Islands'),
(123428, 99824, 'es', 'name', 'Hospital Universitario de Canarias'),
(123429, 99825, 'pt', 'name', 'Associação Azul Moçambique'),
(123430, 99826, 'no_lang_code', 'name', 'Nāgānanda International Institute for Buddhist Studies'),
(123431, 99826, 'si', 'name', 'ą¶±ą·ą¶œą·ą¶±ą¶±ą·Šą¶Æ ą¶¢ą·ą¶­ą·Šā€ą¶ŗą¶±ą·Šą¶­ą¶» ą¶¶ą·žą¶Æą·Šą¶° ą¶…ą¶°ą·Šā€ą¶ŗą¶ŗą¶± ආයතනය'),
(123432, 99827, 'en', 'name', 'State Key Laboratory of Power Transmission and Distribution Equipment and System Safety and New Technology'),
(123433, 99827, 'zh', 'name', 'č¾“é…ē”µč£…å¤‡åŠē³»ē»Ÿå®‰å…ØäøŽę–°ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123434, 99828, 'en', 'name', 'Thailand Center of Excellence for Life Sciences'),
(123435, 99828, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œąø„ąø§ąø²ąø”ą¹€ąø›ą¹‡ąø™ą¹€ąø„ąø“ąøØąø”ą¹‰ąø²ąø™ąøŠąøµąø§ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(123436, 99829, 'en', 'name', 'Lower Mississippi-Gulf Water Science Center'),
(123437, 99830, 'en', 'name', 'dsafsdf'),
(123438, 99831, 'en', 'name', 'Norwegian Agency for International Cooperation and Quality Enhancement in Higher Education'),
(123439, 99831, 'no', 'name', 'Direktoratet for internasjonalisering og kvalitetsutvikling i hĆøyere utdanning'),
(123440, 99832, 'es', 'name', 'Ministerio de Ciencia, Innovación y Universidades'),
(123441, 99833, 'ar', 'name', 'مستؓفى Ų§Ł„Ł‚ŁˆŲ§ŲŖ المسلحة ŲØŲ§Ł„Ų¬Ł†ŁˆŲØ'),
(123442, 99833, 'en', 'name', 'Armed Forces Hospital Southern Region'),
(123443, 99834, 'en', 'name', 'Donald K. Johnson Eye Institute'),
(123444, 99835, 'en', 'name', 'Jeffrey Cheah Foundation'),
(123445, 99836, 'en', 'name', 'Villefranche Oceanographic Laboratory'),
(123446, 99836, 'fr', 'name', 'Laboratoire d’OcĆ©anographie de Villefranche'),
(123447, 99837, 'en', 'name', 'Sanitas Murcia Medical Centre'),
(123448, 99837, 'es', 'name', 'Centro MƩdico Sanitas Murcia'),
(123449, 99838, 'en', 'name', 'Namur Institute of Structured Matter'),
(123450, 99839, 'en', 'name', 'Ana G. Mendez University System'),
(123451, 99839, 'es', 'name', 'Sistema Universitario Ana G. MƩndez'),
(123452, 99840, 'en', 'name', 'Carlo Besta Neurological Institute'),
(123453, 99840, 'it', 'name', 'Fondazione IRCCS Istituto Neurologico Carlo Besta'),
(123454, 99841, 'no_lang_code', 'name', 'AIM at Melanoma'),
(123455, 99842, 'da', 'name', 'ˈkʁɔnĖ€fɒs'),
(123456, 99842, 'no_lang_code', 'name', 'Grundfos (Denmark)'),
(123457, 99843, 'fr', 'name', 'Ɖcole des Neurosciences de Paris, Ɖcole des Neurosciences de Paris Ǝle-de-France'),
(123458, 99844, 'en', 'name', 'IISD Experimental Lakes Area'),
(123459, 99845, 'en', 'name', 'Saint Michael College of Caraga'),
(123460, 99845, 'tl', 'name', 'Dalubhasaang San Miguel ng Caraga'),
(123461, 99846, 'en', 'name', 'Regional Health Care and Social Agency of Pavia'),
(123462, 99846, 'it', 'name', 'Azienda Socio Sanitaria Territoriale di Pavia'),
(123463, 99847, 'en', 'name', 'University of Caxias Do Sul'),
(123464, 99847, 'pt', 'name', 'Universidade de Caxias do Sul'),
(123465, 99848, 'id', 'name', 'Politeknik STIA LAN Jakarta'),
(123466, 99849, 'en', 'name', 'National Institute for Economic Research'),
(123467, 99849, 'ro', 'name', 'Institutul Național de Cercetări Economice'),
(123468, 99850, 'en', 'name', 'Naval Research Laboratory Space Systems Development Division'),
(123469, 99851, 'de', 'name', 'Landesuntersuchungsamt Rheinland-Pfalz'),
(123470, 99852, 'en', 'name', 'Mercy Hospital'),
(123471, 99853, 'en', 'name', 'United States Department of Veterans Affairs'),
(123472, 99853, 'es', 'name', 'Departamento de Asuntos de los Veteranos de los Estados Unidos'),
(123473, 99853, 'fr', 'name', 'DĆ©partement des anciens combattants des Ɖtats-unis'),
(123474, 99854, 'en', 'name', 'Institute for the Structure of Matter'),
(123475, 99854, 'es', 'name', 'Instituto de Estructura de la Materia'),
(123476, 99855, 'it', 'name', 'Azienda Ospedaliera Treviglio'),
(123477, 99856, 'fr', 'name', 'Association franƧaise de zootechnie'),
(123478, 99857, 'en', 'name', 'National Laboratory of Solid State Microstructures'),
(123479, 99857, 'zh', 'name', 'å›ŗä½“å¾®ē»“ęž„ē‰©ē†å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123480, 99858, 'pt', 'name', 'Faculdade Católica de CuiabÔ'),
(123481, 99859, 'ca', 'name', 'Centre d’Investigació i Desenvolupament'),
(123482, 99860, 'en', 'name', 'University of Puerto Rico at Utuado'),
(123483, 99860, 'es', 'name', 'Universidad de Puerto Rico en Utuado'),
(123484, 99861, 'pt', 'name', 'Faculdade Católica de Mato Grosso'),
(123485, 99862, 'en', 'name', 'State Key Laboratory of Rice Biology'),
(123486, 99862, 'zh', 'name', 'ę°“ēØ»ē”Ÿē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123487, 99863, 'en', 'name', 'Barcelona Macula Foundation'),
(123488, 99864, 'no_lang_code', 'name', 'Universal Learning Systems (Ireland)'),
(123489, 99865, 'fr', 'name', 'Patrimoines, Transmissions, HƩritages'),
(123490, 99866, 'es', 'name', 'Farmacoeconomía e Investigación de Resultados en Salud'),
(123491, 99866, 'no_lang_code', 'name', 'Pharmacoeconomics and Health Outcomes Research Iberia (Spain)'),
(123492, 99867, 'da', 'name', 'MiljĆø- og FĆødevareministeriet'),
(123493, 99867, 'en', 'name', 'Danish Ministry of Environment and Food'),
(123494, 99868, 'en', 'name', 'Rajiv Gandhi Centre for Biotechnology'),
(123495, 99869, 'en', 'name', 'Cardinal Stefan Wyszyński University in Warsaw'),
(123496, 99869, 'pl', 'name', 'Uniwersytet Kardynała Stefana Wyszyńskiego w Warszawie'),
(123497, 99870, 'es', 'name', 'Fundación Openlab Ecuador'),
(123498, 99871, 'en', 'name', 'National Spherical Torus Experiment – Upgrade'),
(123499, 99872, 'en', 'name', 'Modern Humanities Research Association'),
(123500, 99873, 'no_lang_code', 'name', 'Ecosystem (Spain)'),
(123501, 99874, 'en', 'name', 'Institute of Zoology'),
(123502, 99874, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢åŠØē‰©ē ”ē©¶ę‰€'),
(123503, 99875, 'en', 'name', 'IPB University'),
(123504, 99875, 'id', 'name', 'Institut Pertanian Bogor'),
(123505, 99876, 'en', 'name', 'Research Centre for Cereal and Industrial Crops'),
(123506, 99876, 'it', 'name', 'Centro di Ricerca per le Colture Industriali'),
(123507, 99877, 'en', 'name', 'State Key Laboratory of Virology'),
(123508, 99877, 'zh', 'name', 'ē—…ęÆ’å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123509, 99878, 'en', 'name', 'Flemish Supercomputer Centre'),
(123510, 99878, 'nl', 'name', 'Vlaams Supercomputer Centrum'),
(123511, 99879, 'en', 'name', 'McCune Foundation'),
(123512, 99880, 'en', 'name', 'Row Fogo Charitable Trust'),
(123513, 99881, 'da', 'name', 'Danmarks Frie Forskningsfond'),
(123514, 99881, 'en', 'name', 'Independent Research Fund Denmark'),
(123515, 99882, 'en', 'name', 'Office of Petroleum Reserves'),
(123516, 99883, 'en', 'name', 'American University Kyiv'),
(123517, 99883, 'uk', 'name', 'Амерікан Юніверсіті ŠšŠøŃ—Š²'),
(123518, 99884, 'pt', 'name', 'Universidade de ItaĆŗna'),
(123519, 99885, 'en', 'name', 'Federal University of ParanĆ”'),
(123520, 99885, 'pt', 'name', 'Universidade Federal do ParanĆ”'),
(123521, 99886, 'fr', 'name', 'CƩgep Beauce-Appalaches'),
(123522, 99887, 'en', 'name', 'Queensland Department of the Premier and Cabinet'),
(123523, 99888, 'en', 'name', 'China National Rice Research Institute'),
(123524, 99888, 'zh', 'name', '中国氓稻研究所'),
(123525, 99889, 'pt', 'name', 'Instituto de Educação Superior de Brasília'),
(123526, 99890, 'en', 'name', 'UK Regenerative Medicine Platform'),
(123527, 99891, 'pt', 'name', 'Fundação Instituto de Educação de Barueri'),
(123528, 99892, 'en', 'name', 'Nuclear Energy Enabling Technologies'),
(123529, 99893, 'ca', 'name', 'Institut de Biologia Molecular de Barcelona'),
(123530, 99893, 'en', 'name', 'Molecular Biology Institute of Barcelona'),
(123531, 99894, 'en', 'name', 'Chinese Research Academy of Environmental Sciences'),
(123532, 99894, 'zh', 'name', 'äø­å›½ēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(123533, 99895, 'en', 'name', 'Communicating Diet and Activity Research'),
(123534, 99896, 'en', 'name', 'Narcolepsy Network'),
(123535, 99897, 'fr', 'name', 'Laboratoire d''ArchƩologie MƩdiƩvale et Moderne en MƩditerranƩe'),
(123536, 99898, 'en', 'name', 'Valleywise Health'),
(123537, 99899, 'de', 'name', 'Max-Planck-Fƶrderstiftung'),
(123538, 99899, 'en', 'name', 'Max Planck Foundation'),
(123539, 99900, 'en', 'name', 'Canadian Dairy Commission'),
(123540, 99900, 'fr', 'name', 'Commission canadienne du lait'),
(123541, 99901, 'de', 'name', 'Akademie der Naturwissenschaften Schweiz'),
(123542, 99901, 'en', 'name', 'Swiss Academy of Sciences'),
(123543, 99901, 'fr', 'name', 'AcadƩmie Suisse des Sciences Naturelles'),
(123544, 99901, 'it', 'name', 'Accademia Svizzera di Scienze Naturali'),
(123545, 99902, 'en', 'name', 'International College of Management and Sports'),
(123546, 99903, 'en', 'name', 'Department of Science and Technology'),
(123547, 99903, 'tl', 'name', 'Kagawaran ng Agham at Teknolohiya'),
(123548, 99904, 'en', 'name', 'Central Asian Medical University'),
(123549, 99904, 'ru', 'name', 'ДреГнеазиатский меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(123550, 99905, 'en', 'name', 'Office of Nuclear Energy'),
(123551, 99906, 'en', 'name', 'McLaren Health Care'),
(123552, 99907, 'fr', 'name', 'Histoire, Territoires & MƩmoires'),
(123553, 99908, 'fr', 'name', 'Laboratoire d''Excellence Dynamiques Territoriales et Spatiales'),
(123554, 99909, 'no_lang_code', 'name', 'Bendix (United States)'),
(123555, 99910, 'fr', 'name', 'Centre Lyonnais d''Acoustique'),
(123556, 99911, 'ca', 'name', 'Andorra Recerca + Innovació'),
(123557, 99912, 'en', 'name', 'Pratt Foundation'),
(123558, 99913, 'no_lang_code', 'name', 'Raytheon Technologies (Australia)'),
(123559, 99914, 'no_lang_code', 'name', 'Oriental Yuhong (China)'),
(123560, 99914, 'zh', 'name', 'äøœę–¹é›Øč™¹'),
(123561, 99915, 'en', 'name', 'Saint Meinrad Seminary and School of Theology'),
(123562, 99916, 'es', 'name', 'Centro de Estudios Andaluces'),
(123563, 99917, 'en', 'name', 'State Key Laboratory of Special Functional Waterproof Materials'),
(123564, 99917, 'zh', 'name', 'ē‰¹ē§åŠŸčƒ½é˜²ę°“ęę–™å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123565, 99918, 'no_lang_code', 'name', 'Bell Canada Enterprises (Canada)'),
(123566, 99919, 'en', 'name', 'National Energy Research Scientific Computing Center'),
(123567, 99920, 'fr', 'name', 'UniversitƩ Le Havre Normandie'),
(123568, 99921, 'fr', 'name', 'Collège Gérald-Godin');
INSERT INTO `ror_settings` VALUES
(123569, 99922, 'en', 'name', 'Naval Information Warfare Center Atlantic'),
(123570, 99923, 'en', 'name', 'Krembil Brain Institute'),
(123571, 99924, 'en', 'name', 'Community of Universities and Higher Education Institutions of Aquitaine'),
(123572, 99924, 'fr', 'name', 'CommunautƩ d''universitƩs et Ʃtablissements d''Aquitaine'),
(123573, 99925, 'de', 'name', 'Bundesministerium für Familien und Jugend'),
(123574, 99925, 'en', 'name', 'Federal Ministry of Families and Youth'),
(123575, 99926, 'en', 'name', 'Savannah River National Laboratory'),
(123576, 99927, 'en', 'name', 'NOAA Center for Operational Oceanographic Products & Services'),
(123577, 99928, 'en', 'name', 'CABI Switzerland'),
(123578, 99929, 'en', 'name', 'State Key Laboratory of Chemobiosensing and Chemometrics'),
(123579, 99929, 'zh', 'name', 'åŒ–å­¦ē”Ÿē‰©ä¼ ę„ŸäøŽč®”é‡å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123580, 99930, 'en', 'name', 'Industrial Efficiency and Decarbonization Office'),
(123581, 99931, 'en', 'name', 'Capiz State University'),
(123582, 99932, 'en', 'name', 'German Association of Joint Industrial Applied Research Institutes'),
(123583, 99933, 'en', 'name', 'State Key Laboratory of Process Automation in Mining and Metallurgy'),
(123584, 99933, 'zh', 'name', 'ēŸæå†¶čæ‡ēØ‹č‡ŖåŠØęŽ§åˆ¶ęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123585, 99934, 'en', 'name', 'Tumu College of Education'),
(123586, 99935, 'en', 'name', 'Christian Theological Seminary'),
(123587, 99936, 'en', 'name', 'State Grid Shanxi Electric Power Company Electric Power Research Institute'),
(123588, 99936, 'zh', 'name', 'å›½ē½‘å±±č„æēœē”µåŠ›å…¬åøē”µåŠ›ē§‘å­¦ē ”ē©¶é™¢'),
(123589, 99937, 'en', 'name', 'Kermanshah University of Medical Sciences'),
(123590, 99937, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی کرمانؓاه'),
(123591, 99938, 'en', 'name', 'University of Arkansas System'),
(123592, 99939, 'no_lang_code', 'name', 'ChorusOS (France)'),
(123593, 99940, 'en', 'name', 'Ministry of Innovative Development of the Republic of Uzbekistan'),
(123594, 99941, 'no_lang_code', 'name', 'Helvia.ai (Greece)'),
(123595, 99942, 'no_lang_code', 'name', 'WWF-India'),
(123596, 99943, 'en', 'name', 'Army Medical University'),
(123597, 99943, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē¬¬äø‰å†›åŒ»å¤§å­¦'),
(123598, 99944, 'en', 'name', 'Franklin College'),
(123599, 99945, 'en', 'name', 'The Federal Polytechnic Ilaro'),
(123600, 99946, 'en', 'name', 'State Key Laboratory of Precision Spectroscopy Science and Technology'),
(123601, 99946, 'zh', 'name', 'ē²¾åÆ†å…‰č°±ē§‘å­¦äøŽęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123602, 99947, 'en', 'name', 'Murray District Hospital'),
(123603, 99948, 'en', 'name', 'Barcelona Centre for International Affairs'),
(123604, 99948, 'es', 'name', 'Barcelona Centro de Relaciones Internacionales'),
(123605, 99949, 'no_lang_code', 'name', 'Mistral AI (France)'),
(123606, 99950, 'en', 'name', 'Government of Quebec'),
(123607, 99950, 'fr', 'name', 'Gouvernement du QuƩbec'),
(123608, 99951, 'en', 'name', 'National Collaborating Centre for Methods and Tools'),
(123609, 99951, 'fr', 'name', 'Centre de collaboration nationale des mƩthodes et outils'),
(123610, 99952, 'no_lang_code', 'name', 'EMS Press'),
(123611, 99953, 'en', 'name', 'WomenHeart'),
(123612, 99954, 'no_lang_code', 'name', 'Dr. Reddy''s Laboratories (Spain)'),
(123613, 99955, 'en', 'name', 'Ministry of Industry, Trade and Tourism'),
(123614, 99955, 'es', 'name', 'Ministerio de Industria, Comercio y Turismo, Ministerio de Industria, EnergĆ­a y Turismo'),
(123615, 99956, 'en', 'name', 'Cold Regions Research and Engineering Laboratory'),
(123616, 99957, 'en', 'name', 'State Key Laboratory of Phytochemistry and Sustainable Utilization of Western Plant Resources'),
(123617, 99957, 'zh', 'name', 'ę¤ē‰©åŒ–å­¦äøŽč„æéƒØę¤ē‰©čµ„ęŗęŒē»­åˆ©ē”Øå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123618, 99958, 'en', 'name', 'Seattle Public Utilities'),
(123619, 99959, 'en', 'name', 'Defence and Security Accelerator'),
(123620, 99960, 'de', 'name', 'Deutsches ArchƤologisches Institut, Abteilung Cairo'),
(123621, 99960, 'en', 'name', 'German Archaeological Institute, Cairo Department'),
(123622, 99961, 'en', 'name', 'State Key Laboratory of Systematic and Evolutionary Botany'),
(123623, 99961, 'zh', 'name', 'ē³»ē»ŸäøŽčæ›åŒ–ę¤ē‰©å­¦å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123624, 99962, 'en', 'name', 'New York University School of Medicine'),
(123625, 99963, 'en', 'name', 'Walton Institute for Information and Communications Systems Science'),
(123626, 99964, 'no_lang_code', 'name', 'OpenAI (United States)'),
(123627, 99965, 'en', 'name', 'Oceanographic Center of MƔlaga'),
(123628, 99965, 'es', 'name', 'Centro OceanogrƔfico de MƔlaga'),
(123629, 99966, 'fr', 'name', 'Laboratoire architecture anthropologie'),
(123630, 99967, 'en', 'name', 'Gabriela Mistral University'),
(123631, 99967, 'es', 'name', 'Universidad Gabriela Mistral'),
(123632, 99968, 'en', 'name', 'Masonic Cancer Center'),
(123633, 99969, 'de', 'name', 'Deutschen Phytomedizinischen Gesellschaft e.V.'),
(123634, 99970, 'en', 'name', 'Government of Seattle'),
(123635, 99971, 'en', 'name', 'Port Authority of Gijón'),
(123636, 99971, 'es', 'name', 'Autoridad Portuaria de Gijon'),
(123637, 99972, 'en', 'name', 'Corewell Health Butterworth Hospital'),
(123638, 99973, 'no_lang_code', 'name', 'Empresa Municipal de Transportes de Madrid'),
(123639, 99974, 'no_lang_code', 'name', 'Bahauddin Zakariya University'),
(123640, 99974, 'ur', 'name', 'ŲØŪŲ§Ų¤Ų§Ł„ŲÆŪŒŁ† زکریا ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(123641, 99975, 'en', 'name', 'Beaumont Hospital, Troy'),
(123642, 99976, 'en', 'name', 'International University of Science and Technology in Kuwait'),
(123643, 99977, 'en', 'name', 'State Key Laboratory of Metal Mine Safety Technology'),
(123644, 99977, 'zh', 'name', 'é‡‘å±žēŸæå±±å®‰å…ØęŠ€ęœÆå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123645, 99978, 'fr', 'name', 'Ɖrudit'),
(123646, 99979, 'en', 'name', 'State Key Laboratory of Protein and Plant Gene Research'),
(123647, 99979, 'zh', 'name', 'č›‹ē™½č“ØäøŽę¤ē‰©åŸŗå› ē ”ē©¶å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(123648, 99980, 'en', 'name', 'Bureau of Transportation Statistics'),
(123649, 99981, 'en', 'name', 'Canadian Sleep & Circadian Network'),
(123650, 99981, 'fr', 'name', 'Centre d''Ɖtudes AvancĆ©es en MĆ©decine du Sommeil'),
(123651, 99982, 'en', 'name', 'Metropolitan Hospital Central Division'),
(123652, 99983, 'de', 'name', 'Deutsche Gesellschaft für Luft- und Raumfahrt - Lilienthal-Oberth e.V.'),
(123653, 99983, 'en', 'name', 'German Society for Aeronautics and Astronautics'),
(123654, 99984, 'en', 'name', 'University of Belgrade - Faculty of Geography'),
(123655, 99984, 'sr', 'name', 'Univerzitet u Beogradu - Geografski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Географски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(123656, 99985, 'en', 'name', 'Central Energy Resources Science Center'),
(123657, 99986, 'fr', 'name', 'GƩoazur'),
(123658, 99987, 'en', 'name', 'Lane County Department of Youth Services'),
(123659, 99988, 'en', 'name', 'Autonomous University of Baja California'),
(123660, 99988, 'es', 'name', 'Universidad Autónoma de Baja California'),
(123661, 99989, 'en', 'name', 'Australian Institute of Health Service Management'),
(123662, 99990, 'en', 'name', 'Henan Provincial Department of Human Resources and Social Security'),
(123663, 99990, 'zh', 'name', 'ę²³å—ēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(123664, 99991, 'es', 'name', 'Aena, Aeropuertos Españoles y Navegación Aérea'),
(123665, 99992, 'en', 'name', 'Kostanay State University A Baitursynov'),
(123666, 99992, 'kk', 'name', 'ŅšŠ¾ŃŃ‚Š°Š½Š°Š¹ мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(123667, 99992, 'ru', 'name', 'ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Ахмета Š‘Š°Š¹Ń‚ŃƒŃ€ŃŃ‹Š½Š¾Š²Š°'),
(123668, 99993, 'no_lang_code', 'name', 'Medidata (United States)'),
(123669, 99994, 'fr', 'name', 'Laboratoire d''Ʃtudes et de recherche en sociologie'),
(123670, 99995, 'en', 'name', 'Agency for the Protection of Health of Treviglio Caravaggio'),
(123671, 99995, 'it', 'name', 'Azienda Socio Sanitaria Territoriale di Bergamo Ovest'),
(123672, 99996, 'fr', 'name', 'Agence ThƩmatique de Recherche en Sciences et Technologie'),
(123673, 99997, 'en', 'name', 'Sanitas Alcobendas Medical Centre'),
(123674, 99997, 'es', 'name', 'Centro MƩdico Sanitas Alcobendas'),
(123675, 99998, 'eu', 'name', 'Ekonomiaren Garapen, Jasangarritasun eta Ingurumen Saila'),
(123676, 99999, 'fr', 'name', 'GƩoarchitecture, Territoires, Urbanisation, BiodiversitƩ, Environnement'),
(123677, 100000, 'es', 'name', 'Universidad Libre de MĆŗsica'),
(123678, 100000, 'pt', 'name', 'Universidade Livre de MĆŗsica'),
(123679, 100001, 'en', 'name', 'SUNY Broome Community College'),
(123680, 100002, 'en', 'name', 'University of Macerata'),
(123681, 100002, 'fr', 'name', 'UniversitƩ de macerata'),
(123682, 100002, 'it', 'name', 'UniversitĆ  degli Studi di Macerata'),
(123683, 100003, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Arts et Industries Textiles'),
(123684, 100004, 'fr', 'name', 'Centre de Recherches sur les MacromolƩcules VƩgƩtales'),
(123685, 100005, 'en', 'name', 'Mediterranean Agronomic Institute of Montpellier'),
(123686, 100005, 'fr', 'name', 'Institut Agronomique MƩditerranƩen de Montpellier'),
(123687, 100006, 'de', 'name', 'UniversitƤt Camerino'),
(123688, 100006, 'fr', 'name', 'UniversitƩ de camerino'),
(123689, 100006, 'it', 'name', 'UniversitĆ  di Camerino'),
(123690, 100007, 'en', 'name', 'Marymount University'),
(123691, 100008, 'pt', 'name', 'Instituto Federal Fluminense'),
(123692, 100009, 'en', 'name', 'Audencia Business School'),
(123693, 100010, 'en', 'name', 'Donald Danforth Plant Science Center'),
(123694, 100011, 'fr', 'name', 'Institut de Chimie Radicalaire'),
(123695, 100012, 'en', 'name', 'Office for Learning and Teaching'),
(123696, 100013, 'en', 'name', 'Lomonosov Moscow State University Marine Research Center LLC'),
(123697, 100013, 'ru', 'name', 'Центр морских исслеГований ŠœŠ“Š£ имени М. Š’.Ломоносова'),
(123698, 100014, 'en', 'name', 'Dalarna University'),
(123699, 100014, 'fi', 'name', 'Taalainmaan korkeakoulu'),
(123700, 100014, 'sv', 'name', 'Hƶgskolan Dalarna'),
(123701, 100015, 'fr', 'name', 'Signalisation Fonctionnelle des Canaux Ioniques et RƩcepteurs'),
(123702, 100016, 'no_lang_code', 'name', 'L-3 Communications (United States)'),
(123703, 100017, 'en', 'name', 'Laboratory for Optics & Biosciences'),
(123704, 100017, 'fr', 'name', 'Laboratoire d''Optique et Biosciences'),
(123705, 100018, 'es', 'name', 'Hospital Universitario del Valle ESE'),
(123706, 100019, 'en', 'name', 'Guilin Medical University'),
(123707, 100019, 'zh', 'name', 'ę”‚ęž—åŒ»å­¦é™¢'),
(123708, 100020, 'fr', 'name', 'Laboratoire d''anthropologie des enjeux contemporains'),
(123709, 100021, 'es', 'name', 'Centro Universitario del Sur'),
(123710, 100022, 'en', 'name', 'Anaesthetic Research Society'),
(123711, 100023, 'fr', 'name', 'Ɖcole nationale supĆ©rieure d''architecture de Marseille'),
(123712, 100024, 'pt', 'name', 'Estado-Maior-General das ForƧas Armadas'),
(123713, 100025, 'en', 'name', 'Tusimple, Tusimple (United States)'),
(123714, 100026, 'az', 'name', 'Azərbaycan Dƶvlət İqtisad Universiteti'),
(123715, 100026, 'en', 'name', 'Azerbaijan State University of Economics'),
(123716, 100026, 'ru', 'name', 'АзербайГжанский Š³Š¾ŃŃƒŠ“арственный ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(123717, 100027, 'id', 'name', 'Dinas Pendidikan Kabupaten Grobogan'),
(123718, 100028, 'no_lang_code', 'name', 'Evenor-Tech, Evenor-Tech (Spain)'),
(123719, 100029, 'no_lang_code', 'name', 'Riverlane, Riverlane (United Kingdom)'),
(123720, 100030, 'fr', 'name', 'Centre d’histoire des sociĆ©tĆ©s MĆ©diĆ©vales et Modernes'),
(123721, 100031, 'en', 'name', 'International Centre for Theoretical Sciences'),
(123722, 100031, 'kn', 'name', 'ą²øą³†ą³–ą²¦ą³ą²§ą²¾ą²‚ą²¤ą²æą²• ą²µą²æą²œą³ą²žą²¾ą²Ø ą²…ą²‚ą²¤ą²°ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą²æą³•ą²Æ ą²•ą³†ą³•ą²‚ą²¦ą³ą²°'),
(123723, 100032, 'en', 'name', 'University College of Allameh Helli'),
(123724, 100032, 'fa', 'name', 'دانؓگاه علامه Ų­Ł„ŪŒ Ś†Ų§Ł„ŁˆŲ³'),
(123725, 100033, 'fr', 'name', 'Institut Charles Viollette'),
(123726, 100034, 'en', 'name', 'Humanities Kansas'),
(123727, 100035, 'fr', 'name', 'Institut de Biologie et de Chimie des ProtƩines'),
(123728, 100036, 'fr', 'name', 'Laboratoire d''Acoustique de l''UniversitƩ du Mans'),
(123729, 100037, 'fr', 'name', 'UniversitƩ Bordeaux-I'),
(123730, 100038, 'en', 'name', 'Biomedtech Facilities'),
(123731, 100039, 'en', 'name', 'National Institute for Nuclear Physics, National Center for Frame Analysis'),
(123732, 100039, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Centro Nazionale Analisi Fotogrammi'),
(123733, 100040, 'en', 'name', 'Leipzig Research Centre Global Dynamics'),
(123734, 100041, 'en', 'name', 'Clermont Auvergne INP'),
(123735, 100042, 'ca', 'name', 'AgĆØncia de Qualitat UniversitĆ ria de les Illes Balears'),
(123736, 100043, 'en', 'name', 'NFDI4Culture'),
(123737, 100044, 'en', 'name', 'National Museum of American Jewish History'),
(123738, 100045, 'en', 'name', 'Poitiers Chemistry Institute Materials and Natural Resources'),
(123739, 100045, 'fr', 'name', 'Institut de Chimie des Milieux et des MatƩriaux de Poitiers'),
(123740, 100046, 'bg', 'name', 'Университет по библиотекознание Šø информационни технологии'),
(123741, 100046, 'en', 'name', 'University of Library Studies and Information Technologies'),
(123742, 100047, 'bn', 'name', 'চাঁদপুর ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(123743, 100047, 'en', 'name', 'Chandpur Science and Technology University'),
(123744, 100048, 'fr', 'name', 'Conservatoire botanique national de Bailleul'),
(123745, 100049, 'no_lang_code', 'name', 'Hansa Biopharma (Sweden)'),
(123746, 100050, 'cs', 'name', 'Centrum hydraulického výzkumu spol. s r.o.'),
(123747, 100050, 'en', 'name', 'Centre for Hydraulic Research'),
(123748, 100051, 'fr', 'name', 'BiomƩcanique et Pathologie Locomotrice du Cheval'),
(123749, 100052, 'en', 'name', 'Enzyme and Cell Engineering - Molecular Recognition and Biocatalysis'),
(123750, 100052, 'fr', 'name', 'GƩnie Enzymatique et Cellulaire - Reconnaissance MolƩculaire et Catalyse'),
(123751, 100053, 'en', 'name', 'University of the South Pacific - Solomon Islands Campus'),
(123752, 100054, 'en', 'name', 'IPMA Serbia'),
(123753, 100054, 'sr', 'name', 'IPMA Srbija'),
(123754, 100055, 'cs', 'name', 'KrajskĆ” knihovna FrantiÅ”ka BartoÅ”e ve ZlĆ­ně'),
(123755, 100055, 'en', 'name', 'FrantiŔek BartoŔ Regional Library in Zlín'),
(123756, 100056, 'en', 'name', 'Neuropsychiatry Epidemiological and Clinical Research'),
(123757, 100056, 'fr', 'name', 'Neuropsychiatrie : Recherche Epidemiologique et Clinique'),
(123758, 100057, 'en', 'name', 'Plants and Cropping Systems in Horticulture'),
(123759, 100057, 'fr', 'name', 'Plantes et SystĆØme de Cultures Horticoles'),
(123760, 100058, 'pt', 'name', 'Instituto de Estudos Sociais e Económicos'),
(123761, 100059, 'en', 'name', 'Cal Humanities'),
(123762, 100060, 'en', 'name', 'Hubert Curien laboratory'),
(123763, 100060, 'fr', 'name', 'Laboratoire Hubert Curien'),
(123764, 100061, 'en', 'name', 'Dalian Maritime University'),
(123765, 100061, 'zh', 'name', 'å¤§čæžęµ·äŗ‹å¤§å­¦'),
(123766, 100062, 'en', 'name', 'Marseille Public University Hospital System'),
(123767, 100062, 'fr', 'name', 'Assistance Publique HƓpitaux de Marseille'),
(123768, 100063, 'en', 'name', 'Varastegan Institute for Medical Sciences'),
(123769, 100063, 'fa', 'name', 'مرکز Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų¹Ł„ŁˆŁ… پزؓکی ŁˆŲ§Ų±Ų³ŲŖŚÆŲ§Ł†'),
(123770, 100064, 'en', 'name', 'Center for NanoScience'),
(123771, 100065, 'en', 'name', 'University of Theatre and Film Arts'),
(123772, 100065, 'hu', 'name', 'SzínhÔz- és Filmművészeti Egyetem'),
(123773, 100066, 'en', 'name', 'Eastern Washington University'),
(123774, 100067, 'fr', 'name', 'Centre Bourgogne-Franche-ComtƩ'),
(123775, 100068, 'es', 'name', 'Universidad Tecnológica de TehuacÔn'),
(123776, 100069, 'en', 'name', 'Institute For Cancer Vaccine & Immunotherapy'),
(123777, 100070, 'bg', 'name', 'ŠŠ¾Š² Š±ŃŠŠ»Š³Š°Ń€ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(123778, 100070, 'en', 'name', 'New Bulgarian University'),
(123779, 100071, 'en', 'name', 'Alfred Landecker Foundation'),
(123780, 100072, 'es', 'name', 'JLA Ediciones'),
(123781, 100073, 'en', 'name', 'Cleveland State University'),
(123782, 100073, 'fr', 'name', 'UniversitĆ© d''Ɖtat de cleveland'),
(123783, 100074, 'en', 'name', 'Laboratory for the User of Intense Lasers'),
(123784, 100074, 'fr', 'name', 'Laboratoire pour l''utilisation des lasers intenses'),
(123785, 100075, 'en', 'name', 'Paris-Saclay Institute of Neuroscience'),
(123786, 100075, 'fr', 'name', 'Institut des Neurosciences Paris Saclay, Institut des Neurosciences Paris-Saclay'),
(123787, 100076, 'en', 'name', 'University of West Florida'),
(123788, 100077, 'en', 'name', 'Western Oregon University'),
(123789, 100078, 'en', 'name', 'Population and Development Center'),
(123790, 100078, 'fr', 'name', 'Centre Population et DƩveloppement'),
(123791, 100079, 'en', 'name', 'Thammasat University'),
(123792, 100079, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø˜ąø£ąø£ąø”ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(123793, 100080, 'fr', 'name', 'Institut de MĆ©canique CĆ©leste et de Calcul des ƉphĆ©mĆ©rides'),
(123794, 100081, 'en', 'name', 'Royal Numismatic Society'),
(123795, 100082, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für und mit Computer Science'),
(123796, 100082, 'en', 'name', 'National Research Data Infrastructure for and with Computer Science'),
(123797, 100082, 'no_lang_code', 'name', 'NFDIxCS'),
(123798, 100083, 'en', 'name', 'University of Paris-Seine'),
(123799, 100083, 'fr', 'name', 'UniversitƩ Paris-Seine'),
(123800, 100084, 'en', 'name', 'Cancer Research Center of Toulouse'),
(123801, 100084, 'fr', 'name', 'Centre de Recherche en CancƩrologie de Toulouse'),
(123802, 100085, 'en', 'name', 'Serbian Sociological Association'),
(123803, 100086, 'en', 'name', 'Michigan Technological University'),
(123804, 100087, 'id', 'name', 'UIN Raden Mas Said Surakarta'),
(123805, 100088, 'en', 'name', 'University of Detroit Mercy'),
(123806, 100088, 'es', 'name', 'Universidad de Detroit Misericordia'),
(123807, 100088, 'fr', 'name', 'UniversitƩ de detroit misƩricorde'),
(123808, 100089, 'en', 'name', 'Bath Spa University'),
(123809, 100090, 'en', 'name', 'College of Charleston'),
(123810, 100091, 'en', 'name', 'College of Physicians and Surgeons Pakistan'),
(123811, 100092, 'en', 'name', 'University of AlmerĆ­a'),
(123812, 100092, 'es', 'name', 'Universidad de AlmerĆ­a'),
(123813, 100093, 'en', 'name', 'Gairdner Foundation'),
(123814, 100094, 'fr', 'name', 'Savoirs, Textes, Langage'),
(123815, 100095, 'en', 'name', 'Nantes Angers Cancer and Immunology Research Center'),
(123816, 100095, 'fr', 'name', 'Centre de Recherche en CancƩrologie et Immunologie IntƩgrƩe Nantes Angers'),
(123817, 100096, 'en', 'name', 'Health Research Board'),
(123818, 100097, 'fr', 'name', 'Laboratoire de GƩnie Chimique'),
(123819, 100098, 'en', 'name', 'Construction Engineering Research Laboratory'),
(123820, 100099, 'fr', 'name', 'LabexMER'),
(123821, 100100, 'en', 'name', 'BlackSky Global, BlackSky Global (United States)'),
(123822, 100101, 'en', 'name', 'Bolgatanga Technical University'),
(123823, 100102, 'fr', 'name', 'UnitƩ de Nutrition Humaine'),
(123824, 100103, 'en', 'name', 'MacEwan University'),
(123825, 100104, 'en', 'name', 'Henan University'),
(123826, 100104, 'zh', 'name', 'ę²³å—å¤§å­¦'),
(123827, 100105, 'en', 'name', 'Bates College'),
(123828, 100106, 'en', 'name', 'Yunnan University'),
(123829, 100106, 'zh', 'name', 'äŗ‘å—å¤§å­¦'),
(123830, 100107, 'fr', 'name', 'Institut des sciences juridique et philosophique de la Sorbonne'),
(123831, 100108, 'en', 'name', 'SUNY Downstate Health Sciences University'),
(123832, 100109, 'en', 'name', 'Minzu University of China'),
(123833, 100109, 'zh', 'name', 'äø­å¤®ę°‘ę—å¤§å­¦'),
(123834, 100110, 'fr', 'name', 'Centre de Recherche en Ɖconomie et Management'),
(123835, 100111, 'en', 'name', 'Veneto Institute of Molecular Medicine'),
(123836, 100112, 'en', 'name', 'Royal Academy of Art'),
(123837, 100112, 'nl', 'name', 'Koninklijke Academie van Beeldende Kunsten'),
(123838, 100113, 'en', 'name', 'Sinop University'),
(123839, 100113, 'tr', 'name', 'Sinop Üniversitesi'),
(123840, 100114, 'en', 'name', 'Maltepe University'),
(123841, 100114, 'tr', 'name', 'Maltepe Üniversitesi'),
(123842, 100115, 'en', 'name', 'University of Bamberg Press'),
(123843, 100116, 'en', 'name', 'Suffolk County Community College'),
(123844, 100117, 'en', 'name', 'Wuhan Sports University'),
(123845, 100117, 'zh', 'name', '武汉体育学院'),
(123846, 100118, 'fr', 'name', 'HƓpital Louis-Mourier'),
(123847, 100119, 'en', 'name', 'Ecophysiology and Grape Functional Genomics'),
(123848, 100119, 'fr', 'name', 'Ecophysiologie et GƩnomique Fonctionnelle de la Vigne'),
(123849, 100120, 'fr', 'name', 'UniversitƩ de Toulouse'),
(123850, 100121, 'es', 'name', 'Universidad Tecnológica de Oriental'),
(123851, 100122, 'es', 'name', 'Universidad Multitecnica Profesional'),
(123852, 100123, 'en', 'name', 'The First People''s Hospital of Guangyuan'),
(123853, 100123, 'zh', 'name', 'å¹æå…ƒåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(123854, 100124, 'no_lang_code', 'name', 'Ping An, Ping An (China)'),
(123855, 100124, 'zh', 'name', 'äø­å›½å¹³å®‰äæé™©ļ¼ˆé›†å›¢ļ¼‰č‚”ä»½ęœ‰é™å…¬åø'),
(123856, 100125, 'en', 'name', 'National Center of Human Genomics Research'),
(123857, 100125, 'fr', 'name', 'Centre National de Recherche en GƩnomique Humaine'),
(123858, 100126, 'en', 'name', 'Know Center, Know Center GmbH, Know Center Research GmbH, Know Center Research GmbH (Austria)'),
(123859, 100127, 'en', 'name', 'British Universities Film & Video Council'),
(123860, 100128, 'fr', 'name', 'CancƩropƓle Est'),
(123861, 100129, 'en', 'name', 'University of Economics and Human Sciences in Warsaw'),
(123862, 100129, 'pl', 'name', 'Akademia Ekonomiczno-Humanistyczna w Warszawie'),
(123863, 100130, 'en', 'name', 'Mykolas Romeris University'),
(123864, 100130, 'lt', 'name', 'Mykolo Romerio universitetas'),
(123865, 100131, 'en', 'name', 'Blood Cancer UK'),
(123866, 100132, 'en', 'name', 'Colchester Institute'),
(123867, 100133, 'en', 'name', 'Shanghai University of Sport'),
(123868, 100133, 'zh', 'name', 'äøŠęµ·ä½“č‚²å­¦é™¢'),
(123869, 100134, 'fr', 'name', 'Laboratoire de Recherche sur les Cultures Anglophones'),
(123870, 100135, 'en', 'name', 'National Parkinson''s Foundation'),
(123871, 100136, 'de', 'name', 'Max-Planck-Institut für Festkörperforschung'),
(123872, 100136, 'en', 'name', 'Max Planck Institute for Solid State Research'),
(123873, 100137, 'no_lang_code', 'name', 'Zhipu AI, Zhipu AI (China)'),
(123874, 100137, 'zh', 'name', 'åŒ—äŗ¬ę™ŗč°±åŽē« ē§‘ęŠ€ęœ‰é™å…¬åø'),
(123875, 100138, 'en', 'name', 'London Library'),
(123876, 100139, 'fr', 'name', 'Centre d''Ʃtudes supƩrieures de civilisation mƩdiƩvale'),
(123877, 100140, 'en', 'name', 'French Intensive Care Society'),
(123878, 100140, 'fr', 'name', 'SociƩtƩ de RƩanimation de Langue FranƧaise'),
(123879, 100141, 'fr', 'name', 'Laboratoire d''Ʃtudes de genre et de sexualitƩ'),
(123880, 100142, 'en', 'name', 'Colorado Humanities'),
(123881, 100143, 'en', 'name', 'Mātai Medical Research Institute'),
(123882, 100143, 'mi', 'name', 'Te Mata Mātai Hura'),
(123883, 100144, 'en', 'name', 'Bioscience and Biotechnology Institute of Aix-Marseille'),
(123884, 100144, 'fr', 'name', 'Institut de Biosciences et biotechnologies d''Aix-Marseille'),
(123885, 100145, 'en', 'name', 'University of Reunion Island'),
(123886, 100145, 'fr', 'name', 'UniversitƩ de La RƩunion'),
(123887, 100146, 'fr', 'name', 'BioƩnergƩtique et IngƩnierie des ProtƩines'),
(123888, 100147, 'fr', 'name', 'Laboratoire d’Étude des MĆ©canismes Cognitifs'),
(123889, 100148, 'en', 'name', 'Niagara County Community College'),
(123890, 100149, 'en', 'name', 'Brookdale University Hospital and Medical Center'),
(123891, 100150, 'en', 'name', 'Neurophysiology & New Microscopies Laboratory'),
(123892, 100150, 'fr', 'name', 'Neurophysiologie et nouvelles microscopies'),
(123893, 100151, 'en', 'name', 'Inter-University Accelerator Centre'),
(123894, 100152, 'en', 'name', 'Metropolitan College of Manaus'),
(123895, 100152, 'pt', 'name', 'Faculdade Metropolitana de Manaus'),
(123896, 100153, 'de', 'name', 'Max-Planck-Institut für Psycholinguistik'),
(123897, 100153, 'en', 'name', 'Max Planck Institute for Psycholinguistics'),
(123898, 100153, 'nl', 'name', 'Max Planck Instituut voor PsycholinguĆÆstiek'),
(123899, 100154, 'en', 'name', 'Government of New South Wales'),
(123900, 100155, 'fr', 'name', 'La Manufacture - Haute école des arts de la scène'),
(123901, 100156, 'en', 'name', 'Jamestown Community College'),
(123902, 100157, 'en', 'name', 'Guangzhou Xinhua University'),
(123903, 100157, 'zh', 'name', 'å¹æå·žę–°åŽå­¦é™¢'),
(123904, 100158, 'no_lang_code', 'name', 'Zymergen, Zymergen (United States)'),
(123905, 100159, 'en', 'name', 'University of Maryland Eastern Shore'),
(123906, 100159, 'es', 'name', 'Universidad de Costa Este de Maryland'),
(123907, 100160, 'en', 'name', 'Usmanu Danfodiyo University'),
(123908, 100160, 'yo', 'name', 'YunifƔsƭtƬ Usman Dan Fodio'),
(123909, 100161, 'de', 'name', 'Institut für Sonnenphysik'),
(123910, 100161, 'en', 'name', 'Institute for Solar Physics'),
(123911, 100162, 'fr', 'name', 'Centre de recherche sur les civilisations de l''Asie orientale'),
(123912, 100163, 'cy', 'name', 'Prifysgol Bangor'),
(123913, 100163, 'en', 'name', 'Bangor University'),
(123914, 100164, 'en', 'name', 'United Nations'),
(123915, 100164, 'es', 'name', 'Organización de las Naciones Unidas'),
(123916, 100164, 'fr', 'name', 'Organisation des Nations Unies'),
(123917, 100165, 'en', 'name', 'Cornwall College'),
(123918, 100166, 'en', 'name', 'Norwich BioScience Institutes'),
(123919, 100167, 'en', 'name', 'Shanghai University'),
(123920, 100167, 'zh', 'name', '上海大学'),
(123921, 100168, 'fr', 'name', 'Laboratoire de Virologie - PathogenĆØse virale'),
(123922, 100169, 'en', 'name', 'Gdańsk University of Technology'),
(123923, 100169, 'pl', 'name', 'Politechnika Gdańska'),
(123924, 100170, 'en', 'name', 'Ulisse Dini Scientific High School'),
(123925, 100170, 'it', 'name', 'Liceo scientifico statale Ulisse Dini'),
(123926, 100171, 'fr', 'name', 'Ɖcole de Psychologues Praticien'),
(123927, 100172, 'de', 'name', 'Forschungsanstalt für Waldökologie und Forstwirtschaft Rheinland-Pfalz'),
(123928, 100173, 'fr', 'name', 'Les Afriques dans le Monde'),
(123929, 100174, 'en', 'name', 'Pomona College'),
(123930, 100175, 'en', 'name', 'Estonian Academy of Arts'),
(123931, 100175, 'et', 'name', 'Eesti Kunstiakadeemia'),
(123932, 100175, 'ru', 'name', 'Š­ŃŃ‚Š¾Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²'),
(123933, 100176, 'en', 'name', 'National University «Odesa Maritime Academy»'),
(123934, 100176, 'uk', 'name', 'ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢ Ā«ŠžŠ”Š•Š”Š¬ŠšŠ ŠœŠžŠ Š”Š¬ŠšŠ ŠŠšŠŠ”Š•ŠœŠ†ŠÆĀ»'),
(123935, 100177, 'pt', 'name', 'Instituto PolitƩcnico da Lusofonia'),
(123936, 100178, 'en', 'name', 'University of Montana'),
(123937, 100178, 'es', 'name', 'Universidad de Montana'),
(123938, 100178, 'fr', 'name', 'UniversitƩ du montana'),
(123939, 100179, 'en', 'name', 'Autonomous University of Mexico State'),
(123940, 100179, 'es', 'name', 'Universidad Autónoma del Estado de México'),
(123941, 100180, 'de', 'name', 'Max-Planck-Institut für Physik'),
(123942, 100180, 'en', 'name', 'Max Planck Institute for Physics'),
(123943, 100181, 'fr', 'name', 'Centre de recherche en psychologie : cognition, psychisme et organisations'),
(123944, 100182, 'fr', 'name', 'SantƩ, Education et Situations de Handicap'),
(123945, 100183, 'en', 'name', 'Center for Community Progress'),
(123946, 100184, 'en', 'name', 'Chizhou University'),
(123947, 100184, 'zh', 'name', 'ę± å·žå­¦é™¢'),
(123948, 100185, 'de', 'name', 'Fachhochschule Westschweiz - Genf'),
(123949, 100185, 'en', 'name', 'University of Applied Sciences and Arts Western Switzerland – Geneva'),
(123950, 100185, 'fr', 'name', 'HES-SO GenĆØve, Haute Ɖcole SpĆ©cialisĆ©e de Suisse Occidentale - GenĆØve'),
(123951, 100186, 'no_lang_code', 'name', 'Phramongkutklao Hospital'),
(123952, 100187, 'en', 'name', 'Joint Programming Initiative Urban Europe'),
(123953, 100188, 'en', 'name', 'Barnsley College'),
(123954, 100189, 'pt', 'name', 'Centro UniversitƔrio FEI'),
(123955, 100190, 'en', 'name', 'Uganda Christian University'),
(123956, 100191, 'id', 'name', 'Badan Strategi Kebijakan Dalam Negeri'),
(123957, 100192, 'en', 'name', 'Geological Materials Repository'),
(123958, 100193, 'en', 'name', 'VIT-AP University'),
(123959, 100194, 'fr', 'name', 'ArchĆ©ologie et Histoire Ancienne : MĆ©diterranĆ©e – Europe'),
(123960, 100195, 'en', 'name', 'TƉLUQ University'),
(123961, 100195, 'fr', 'name', 'UniversitĆ© TƉLUQ'),
(123962, 100196, 'fr', 'name', 'Centre de Recherche en Design'),
(123963, 100197, 'en', 'name', 'Naos Marine and Molecular Laboratories'),
(123964, 100197, 'es', 'name', 'Laboratorios de isla Naos'),
(123965, 100198, 'fr', 'name', 'Laboratoire Interdisciplinaire Sciences, Innovations, SociƩtƩs'),
(123966, 100199, 'fr', 'name', 'Centre lyonnais d''Histoire du droit et de la pensƩe politique'),
(123967, 100200, 'en', 'name', 'California State University, Long Beach'),
(123968, 100200, 'es', 'name', 'Universidad Estatal de California, Long Beach'),
(123969, 100200, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  long beach'),
(123970, 100201, 'en', 'name', 'Chengdu Jincheng College'),
(123971, 100201, 'zh', 'name', 'ęˆéƒ½é”¦åŸŽå­¦é™¢'),
(123972, 100202, 'en', 'name', 'Hudson Institute of Medical Research'),
(123973, 100203, 'en', 'name', 'Texas A&M University – San Antonio'),
(123974, 100204, 'en', 'name', 'Drugs and Molecules for Living Systems'),
(123975, 100204, 'fr', 'name', 'Médicaments et Molécules pour Agir sur les Systèmes Vivants'),
(123976, 100205, 'en', 'name', 'Research Group in Theoretical and Applied Economics'),
(123977, 100205, 'fr', 'name', 'Groupe de Recherche en Ɖconomie ThĆ©orique et AppliquĆ©e'),
(123978, 100206, 'fr', 'name', 'Centre d’histoire culturelle des sociĆ©tĆ©s contemporaines'),
(123979, 100207, 'pt', 'name', 'Polƭcia JudiciƔria'),
(123980, 100208, 'en', 'name', 'Dalian University of Foreign Languages'),
(123981, 100208, 'zh', 'name', 'å¤§čæžå¤–å›½čÆ­å­¦é™¢'),
(123982, 100209, 'en', 'name', 'Unicorn University'),
(123983, 100210, 'en', 'name', 'National School of Architecture of Montpellier'),
(123984, 100210, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture Montpellier'),
(123985, 100211, 'en', 'name', 'Purpan Engineering School'),
(123986, 100211, 'fr', 'name', 'Ecole d''IngƩnieurs de PURPAN'),
(123987, 100212, 'en', 'name', 'HIPI - Human Immunology, Pathophysiology and Immunotherapy'),
(123988, 100212, 'fr', 'name', 'HIPI -  Immunologie humaine, physiopathologie et immunithƩrapie'),
(123989, 100213, 'en', 'name', 'Central University of Finance and Economics'),
(123990, 100213, 'zh', 'name', 'äø­å¤®č“¢ē»å¤§å­¦'),
(123991, 100214, 'es', 'name', 'Instituto Tecnológico Superior de Perote'),
(123992, 100215, 'en', 'name', 'Comerica, Comerica (United States)'),
(123993, 100216, 'en', 'name', 'St. Xavier''s University Kolkata'),
(123994, 100217, 'en', 'name', 'Technology Research Institute of Osaka Prefecture'),
(123995, 100217, 'ja', 'name', 'å¤§é˜Ŗåŗœē«‹ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(123996, 100218, 'fr', 'name', 'Laboratoire de neurosciences fonctionnelles et pathologies'),
(123997, 100219, 'cy', 'name', 'Prifysgol Plymouth'),
(123998, 100219, 'en', 'name', 'University of Plymouth'),
(123999, 100220, 'fr', 'name', 'Ɖquipe Monde Arabe MĆ©diterranĆ©e'),
(124000, 100221, 'fr', 'name', 'Laboratoire des MatƩriaux Surfaces et ProcƩdƩs pour la Catalyse'),
(124001, 100222, 'fr', 'name', 'RƩgie des transports mƩtropolitains'),
(124002, 100223, 'en', 'name', 'Binghamton University'),
(124003, 100223, 'es', 'name', 'Universidad de Binghamton'),
(124004, 100224, 'en', 'name', 'Gene Therapy Laboratory'),
(124005, 100224, 'fr', 'name', 'Laboratoire de ThƩrapie GƩnique'),
(124006, 100225, 'en', 'name', 'Istanbul Health and Technology University'),
(124007, 100225, 'tr', 'name', 'İstanbul Sağlık ve Teknoloji Üniversitesi'),
(124008, 100226, 'fr', 'name', 'Centre d''Ɖcologie Fonctionnelle et Ɖvolutive'),
(124009, 100227, 'en', 'name', 'Pratt & Whitney Rocketdyne, Pratt & Whitney Rocketdyne (United States)'),
(124010, 100228, 'en', 'name', 'University of the South Pacific'),
(124011, 100229, 'en', 'name', 'Inter University Computation Centre'),
(124012, 100229, 'he', 'name', '×ž×Ø×›×– החישובים הבין-××•× ×™×‘×Ø×”×™×˜××™'),
(124013, 100230, 'en', 'name', 'Institute for Cosmic Ray Research'),
(124014, 100230, 'ja', 'name', 'ę±äŗ¬å¤§å­¦å®‡å®™ē·šē ”ē©¶ę‰€'),
(124015, 100231, 'en', 'name', 'Rio de Janeiro State Public Defender''s Office'),
(124016, 100231, 'pt', 'name', 'Defensoria PĆŗblica do Rio de Janeiro'),
(124017, 100232, 'en', 'name', 'Les Roches International School of Hotel Management'),
(124018, 100233, 'en', 'name', 'Binzhou Medical University'),
(124019, 100233, 'zh', 'name', 'ę»Øå·žåŒ»å­¦é™¢'),
(124020, 100234, 'en', 'name', 'Satakunta University of Applied Sciences'),
(124021, 100234, 'fi', 'name', 'Satakunnan Ammattikorkeakoulu'),
(124022, 100235, 'pt', 'name', 'Ordem Hospitaleira de São João de Deus'),
(124023, 100236, 'en', 'name', 'National Institute for Social Care and Health Research'),
(124024, 100237, 'en', 'name', 'Auckland Institute of Studies'),
(124025, 100237, 'mi', 'name', 'Te Whare Wānanga ki Hato Herena'),
(124026, 100238, 'cs', 'name', 'Ú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'),
(124027, 100238, 'en', 'name', 'Czech Academy of Sciences, Institute of Art History'),
(124028, 100239, 'en', 'name', 'Blekinge Institute of Technology'),
(124029, 100239, 'fi', 'name', 'Blekingen teknillinen korkeakoulu'),
(124030, 100239, 'sv', 'name', 'Blekinge tekniska hƶgskola'),
(124031, 100240, 'en', 'name', 'University of Applied Sciences Leiden'),
(124032, 100240, 'nl', 'name', 'Hogeschool Leiden'),
(124033, 100241, 'en', 'name', 'Michigan Humanities Council'),
(124034, 100242, 'fr', 'name', 'Cancer et génome: Bioinformatique, biostatistiques et épidémiologie des systèmes complexes'),
(124035, 100243, 'en', 'name', 'Kyoto Institute of Technology'),
(124036, 100243, 'ja', 'name', '京都巄芸繊維大学'),
(124037, 100244, 'es', 'name', 'Tecnológico Nacional de México Campus San Juan de los Ríos'),
(124038, 100245, 'en', 'name', 'North China Institute of Science and Technology'),
(124039, 100245, 'zh', 'name', 'åŽåŒ—ē§‘ęŠ€å­¦é™¢'),
(124040, 100246, 'en', 'name', 'Beijing Institute of Aeronautical Materials'),
(124041, 100246, 'zh', 'name', 'äø­å›½čˆŖå‘åŒ—äŗ¬čˆŖē©ŗęę–™ē ”ē©¶é™¢'),
(124042, 100247, 'en', 'name', 'Oregon Health & Science University'),
(124043, 100248, 'fr', 'name', 'Biologie MolƩculaire Structurale et Processus Infectieux'),
(124044, 100249, 'en', 'name', 'National Portrait Gallery'),
(124045, 100250, 'fr', 'name', 'Syndicat des SƩlectionneurs Avicoles et Aquacoles FranƧais'),
(124046, 100251, 'fr', 'name', 'Département des Systèmes Basses Températures'),
(124047, 100252, 'cs', 'name', 'SeveročeskĆ© muzeum v Liberci'),
(124048, 100252, 'en', 'name', 'North Bohemian Museum in Liberec'),
(124049, 100253, 'no_lang_code', 'name', 'IFlyTek, IFlyTek (China)'),
(124050, 100253, 'zh', 'name', 'ē§‘å¤§č®Æé£žč‚”ä»½ęœ‰é™å…¬åø'),
(124051, 100254, 'en', 'name', 'Mary Immaculate College'),
(124052, 100254, 'ga', 'name', 'ColƔiste Mhuire Gan SmƔl'),
(124053, 100255, 'en', 'name', 'Official Development Assistance'),
(124054, 100256, 'cs', 'name', 'Ústav pro hydrodynamiku AV ČR, Ústav pro hydrodynamiku AV ČR, v. v. i., Ústav pro hydrodynamiku AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(124055, 100256, 'en', 'name', 'Czech Academy of Sciences, Institute of Hydrodynamics'),
(124056, 100257, 'fr', 'name', 'Culture et histoire dans l''espace roman'),
(124057, 100258, 'no_lang_code', 'name', 'Teledyne Technologies (United States)'),
(124058, 100259, 'en', 'name', 'Zhejiang University'),
(124059, 100259, 'zh', 'name', 'ęµ™ę±Ÿå¤§å­¦'),
(124060, 100260, 'es', 'name', 'Sociedad Colombiana de Anestesiología y Reanimación'),
(124061, 100261, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Normandie'),
(124062, 100262, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Δυτικής ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(124063, 100262, 'en', 'name', 'University of Western Macedonia'),
(124064, 100262, 'fr', 'name', 'UniversitƩ de MacƩdoine-Occidentale'),
(124065, 100263, 'en', 'name', 'Reed College'),
(124066, 100264, 'en', 'name', 'University Hospital Ostrava'),
(124067, 100265, 'en', 'name', 'Laboratory Technological Innovations for the Detection and Diagnosis'),
(124068, 100265, 'fr', 'name', 'Laboratoire Innovations Technologiques pour la DƩtection et le Diagnostic'),
(124069, 100266, 'en', 'name', 'University of Science and Technologies'),
(124070, 100266, 'uz', 'name', 'Fan va Texnologiyalar universiteti'),
(124071, 100267, 'en', 'name', 'Fort Lewis College'),
(124072, 100268, 'en', 'name', 'Georgian Technical University'),
(124073, 100268, 'hy', 'name', 'ÕŽÖ€Õ”Õ½ÕæÕ”Õ¶Õ« ÕæÕ„Õ­Õ¶Õ«ÕÆÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(124074, 100268, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ¢įƒ”įƒ„įƒœįƒ˜įƒ™įƒ£įƒ įƒ˜ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(124075, 100268, 'ru', 'name', 'Š“Ń€ŃƒŠ·ŠøŠ½ŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(124076, 100269, 'en', 'name', 'Somerset NHS Foundation Trust'),
(124077, 100270, 'no_lang_code', 'name', 'Daimler (United Kingdom)'),
(124078, 100271, 'en', 'name', 'A. Alikhanyan National Laboratory'),
(124079, 100271, 'hy', 'name', 'Ō±. Ō». Ō±Õ¬Õ«Õ­Õ”Õ¶ÕµÕ”Õ¶Õ« Õ”Õ¶Õ¾Õ”Õ¶ Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ£Õ«ÕæÕ”ÕÆÕ”Õ¶ Õ¬Õ”Õ¢ÕøÖ€Õ”ÕæÕøÖ€Õ«Õ”'),
(124080, 100272, 'en', 'name', 'Paris Centre for Quantum Technologies'),
(124081, 100273, 'de', 'name', 'Universität Lüttich'),
(124082, 100273, 'en', 'name', 'University of LiĆØge'),
(124083, 100273, 'fr', 'name', 'Université de Liège'),
(124084, 100273, 'nl', 'name', 'Universiteit van Luik'),
(124085, 100274, 'fr', 'name', 'Institut des Sciences des Plantes de Paris Saclay'),
(124086, 100275, 'en', 'name', 'Virgin Islands Humanities Council'),
(124087, 100276, 'fr', 'name', 'Ɖcole Nationale d''Administration'),
(124088, 100277, 'en', 'name', 'St. Teresa''s College of Education'),
(124089, 100277, 'ha', 'name', 'Kwalejin Ilimi ta St. Teresa'),
(124090, 100278, 'en', 'name', 'Royal Victoria Hospital'),
(124091, 100278, 'fr', 'name', 'HƓpital Royal Victoria'),
(124092, 100279, 'es', 'name', 'Universidad de Ciencias MƩdicas de Ciego de Ɓvila'),
(124093, 100280, 'fr', 'name', 'Groupe de recherche sur les enjeux de la communication'),
(124094, 100281, 'fr', 'name', 'Centre Gilles-Gaston Granger'),
(124095, 100282, 'en', 'name', 'University of Shanghai for Science and Technology'),
(124096, 100282, 'zh', 'name', 'äøŠęµ·ē†å·„å¤§å­¦'),
(124097, 100283, 'en', 'name', 'Laboratory HydroSciences Montpellier'),
(124098, 100283, 'fr', 'name', 'Laboratoire HydroSciences Montpellier'),
(124099, 100284, 'cy', 'name', 'Prifysgol Sussex'),
(124100, 100284, 'en', 'name', 'University of Sussex'),
(124101, 100285, 'fr', 'name', 'Le Laboratoire des Maladies NeurodƩgƩnƩratives'),
(124102, 100286, 'en', 'name', 'North Northamptonshire Council'),
(124103, 100287, 'en', 'name', 'Society of British Neurological Surgeons'),
(124104, 100288, 'fr', 'name', 'EDP Sciences'),
(124105, 100289, 'en', 'name', 'Zhengzhou University of Science and Technology'),
(124106, 100289, 'zh', 'name', 'éƒ‘å·žē§‘ęŠ€å­¦é™¢'),
(124107, 100290, 'fr', 'name', 'Nanomatériaux Pour les Systèmes Sous Sollicitations Extrêmes'),
(124108, 100291, 'en', 'name', 'Laurent Schwartz Center for Mathematics'),
(124109, 100291, 'fr', 'name', 'Centre de MathƩmatiques Laurent Schwartz'),
(124110, 100292, 'en', 'name', 'Institute of Management Technology, Dubai'),
(124111, 100293, 'en', 'name', 'Functional Ecology and Biogeochemistry of Soils and Agrosystems'),
(124112, 100293, 'fr', 'name', 'Ecologie fonctionnelle & biogéochimie des sols & des agro-systèmes'),
(124113, 100294, 'en', 'name', 'National Group for Algebraic, Geometric Structures and their Applications'),
(124114, 100294, 'it', 'name', 'Gruppo Nazionale per le Strutture Algebriche, Geometriche e le loro Applicazioni'),
(124115, 100295, 'en', 'name', 'Dragomanov Ukrainian State University'),
(124116, 100295, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені ŠœŠøŃ…Š°Š¹Š»Š° Драгоманова'),
(124117, 100296, 'en', 'name', 'Laboratory Universe and Theories'),
(124118, 100296, 'fr', 'name', 'Laboratoire Univers et ThƩories'),
(124119, 100297, 'en', 'name', 'AutoZone, AutoZone (United States)'),
(124120, 100298, 'en', 'name', 'Amgen Biopharmaceutical'),
(124121, 100298, 'pt', 'name', 'Amgen Biofarmaceutica Lda, Amgen Biofarmaceutica Lda (Portugal)'),
(124122, 100299, 'en', 'name', 'Beijing Wuzi University'),
(124123, 100299, 'zh', 'name', 'åŒ—äŗ¬ē‰©čµ„å­¦é™¢'),
(124124, 100300, 'fr', 'name', 'Institute Mutualiste Montsouris'),
(124125, 100301, 'en', 'name', 'Oncogenesis Stress Signaling'),
(124126, 100302, 'no_lang_code', 'name', 'Ushahidi, Inc., Ushahidi, Inc. (Kenya)'),
(124127, 100303, 'fr', 'name', 'AGIR Ć  dom'),
(124128, 100304, 'en', 'name', 'The University of Law'),
(124129, 100305, 'en', 'name', 'Polytechnic University of Turin'),
(124130, 100305, 'fr', 'name', 'Ɖcole Polytechnique de Turin'),
(124131, 100305, 'it', 'name', 'Politecnico di Torino'),
(124132, 100306, 'en', 'name', 'Societies, Actors and Governement in Europe'),
(124133, 100306, 'fr', 'name', 'SociƩtƩs, Acteurs, Gouvernement en Europe'),
(124134, 100307, 'fr', 'name', 'Sciences, Philosophie, HumanitƩs'),
(124135, 100308, 'en', 'name', 'North Atlantic Treaty Organization'),
(124136, 100308, 'fr', 'name', 'Organisation du traitƩ de l''Atlantique Nord'),
(124137, 100309, 'no_lang_code', 'name', 'Dechra Pharmaceuticals (United Kingdom)'),
(124138, 100310, 'en', 'name', 'University of Greenwich'),
(124139, 100311, 'en', 'name', 'Sultan Zainal Abidin University'),
(124140, 100311, 'ms', 'name', 'Universiti Sultan Zainal Abidin'),
(124141, 100312, 'fr', 'name', 'Centre d''Investigation Clinique MĆØre-Enfant Necker Cochin Paris Centre'),
(124142, 100313, 'fr', 'name', 'IMT Mines Albi'),
(124143, 100314, 'cy', 'name', 'Prifysgol Fetropolitan Caerdydd'),
(124144, 100314, 'en', 'name', 'Cardiff Metropolitan University'),
(124145, 100315, 'en', 'name', 'Galatasaray University'),
(124146, 100315, 'tr', 'name', 'Galatasaray Üniversitesi'),
(124147, 100316, 'en', 'name', 'Spanish National Cancer Research Centre'),
(124148, 100316, 'es', 'name', 'Centro Nacional de Investigaciones Oncológicas'),
(124149, 100317, 'en', 'name', 'Sands'),
(124150, 100318, 'en', 'name', 'National University of Malaysia'),
(124151, 100318, 'ms', 'name', 'Universiti Kebangsaan Malaysia'),
(124152, 100318, 'zh', 'name', 'é©¬ę„č„æäŗšå›½ę°‘å¤§å­¦'),
(124153, 100319, 'fr', 'name', 'Centre d''Etude des Arts Contemporains'),
(124154, 100320, 'en', 'name', 'National Institute of Academic Anaesthesia'),
(124155, 100321, 'en', 'name', 'West Dean College of Arts and Conservation'),
(124156, 100322, 'fr', 'name', 'Institut de Recherche Interdisciplinaire de Grenoble'),
(124157, 100323, 'en', 'name', 'The Society of Occupational Medicine'),
(124158, 100324, 'fr', 'name', 'Histoire Naturelle de l’Homme PrĆ©historique'),
(124159, 100325, 'de', 'name', 'Vereinigung der DenkmalfachƤmter in den LƤndern'),
(124160, 100326, 'en', 'name', 'Wichita State University'),
(124161, 100326, 'fr', 'name', 'UniversitĆ© d''Ɖtat de wichita'),
(124162, 100327, 'fr', 'name', 'Institut MƩditerranƩen des Sciences de l''Information et de la Communication'),
(124163, 100328, 'no_lang_code', 'name', 'August Storck KG, August Storck KG (Germany)'),
(124164, 100329, 'es', 'name', 'Universidad Privada San Francisco de AsĆ­s, Universidad San Francisco de AsĆ­s'),
(124165, 100330, 'en', 'name', 'Pennsylvania Humanities Council'),
(124166, 100331, 'fr', 'name', 'Centre Interuniversitaire de Recherche en Education de Lille'),
(124167, 100332, 'en', 'name', 'Saclay Institute of Matter and Radiation'),
(124168, 100332, 'fr', 'name', 'Institut Rayonnement-MatiĆØre de Saclay'),
(124169, 100333, 'fr', 'name', 'Laboratoire d''Economie, Finance, Management et Innovation'),
(124170, 100334, 'en', 'name', 'National University of LanĆŗs'),
(124171, 100334, 'es', 'name', 'Universidad Nacional de LanĆŗs'),
(124172, 100335, 'fr', 'name', 'Campus Condorcet'),
(124173, 100336, 'fr', 'name', 'Observatoire de Recherche MontpelliƩrain de l''Environnement OREME, Observatoire des Sciences de l''Univers OREME'),
(124174, 100337, 'de', 'name', 'Helmholtz Zentrum München, Helmholtz Zentrum München - Deutsches Forschungszentrum für Gesundheit und Umwelt'),
(124175, 100338, 'en', 'name', 'IDEMS International Community Interest Company'),
(124176, 100339, 'en', 'name', 'University of Belgrade – Faculty of Veterinary Medicine'),
(124177, 100339, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet veterinarske medicine, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ ветеринарске меГицине'),
(124178, 100340, 'en', 'name', 'Physiopathology, metabolism and nutrition'),
(124179, 100340, 'fr', 'name', 'Physiopathologie, mƩtabolisme et nutrition'),
(124180, 100341, 'en', 'name', 'KISTI National Supercomputing Center'),
(124181, 100341, 'ko', 'name', 'źµ­ź°€ģŠˆķ¼ģ»“ķ“ØķŒ…ģ„¼ķ„°ėŠ”'),
(124182, 100342, 'en', 'name', 'Japan Cardiovascular Research Foundation'),
(124183, 100342, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ å¾Ŗē’°å™Øē—…ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(124184, 100343, 'en', 'name', 'Federal University of JataĆ­'),
(124185, 100343, 'pt', 'name', 'Universidade Federal de JataĆ­'),
(124186, 100344, 'en', 'name', 'Moholy-Nagy University of Art and Design'),
(124187, 100344, 'hu', 'name', 'Moholy-Nagy Művészeti Egyetem'),
(124188, 100345, 'en', 'name', 'North Central Climate Adaptation Science Center'),
(124189, 100346, 'en', 'name', 'Central University of Kerala'),
(124190, 100346, 'ml', 'name', 'ą“•ąµ‡ą“Øąµą“¦ąµą“° ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“², ą“•ąµ‡ą“°ą“³ą“‚'),
(124191, 100347, 'en', 'name', 'Hospital Jihlava'),
(124192, 100348, 'en', 'name', 'University of Eastern Finland'),
(124193, 100348, 'fi', 'name', 'ItƤ-Suomen yliopisto'),
(124194, 100348, 'sv', 'name', 'Ɩstra Finlands universitet'),
(124195, 100349, 'en', 'name', 'National Museum of Natural History'),
(124196, 100350, 'en', 'name', 'Paramount Global, Paramount Global (United States)'),
(124197, 100351, 'de', 'name', 'Technische UniversitƤt Graz'),
(124198, 100351, 'en', 'name', 'Graz University of Technology'),
(124199, 100352, 'en', 'name', 'Victimology Society of Serbia'),
(124200, 100352, 'sr', 'name', 'ViktimoloŔko DruŔtvo Srbije'),
(124201, 100353, 'pt', 'name', 'NAV, NAV (Portugal)'),
(124202, 100354, 'fr', 'name', 'MATƩriaux et IngƩnierie MƩcanique'),
(124203, 100355, 'da', 'name', 'Innovationsfonden'),
(124204, 100355, 'en', 'name', 'Innovation Fund Denmark'),
(124205, 100356, 'en', 'name', 'Dokuz Eylül University'),
(124206, 100356, 'tr', 'name', 'Dokuz Eylül Üniversitesi'),
(124207, 100357, 'es', 'name', 'Instituto Tecnológico de ZitÔcuaro'),
(124208, 100358, 'en', 'name', 'Vaasa University of Applied Sciences'),
(124209, 100358, 'fi', 'name', 'Vaasan ammattikorkeakoulu'),
(124210, 100358, 'sv', 'name', 'Vasa yrkeshƶgskola'),
(124211, 100359, 'es', 'name', 'Instituto Tecnológico Superior de Cananea'),
(124212, 100360, 'en', 'name', 'Beijing University of Chemical Technology'),
(124213, 100360, 'zh', 'name', 'åŒ—äŗ¬åŒ–å·„å¤§å­¦'),
(124214, 100361, 'en', 'name', 'Ministry for Europe and Foreign Affairs'),
(124215, 100361, 'fr', 'name', 'Ministère de l''Europe et des Affaires étrangères'),
(124216, 100362, 'pt', 'name', 'Instituto do Mar'),
(124217, 100363, 'en', 'name', 'Arthur M. Sackler Gallery'),
(124218, 100364, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ ŁŁŠŲµŁ„'),
(124219, 100364, 'en', 'name', 'King Faisal University'),
(124220, 100365, 'en', 'name', 'Finnish Food Authority'),
(124221, 100365, 'fi', 'name', 'Ruokavirasto'),
(124222, 100365, 'sv', 'name', 'Livsmedelsverket'),
(124223, 100366, 'en', 'name', 'Batterjee Medical College'),
(124224, 100367, 'fr', 'name', 'Pratiques et ThƩories de l''art contemporain'),
(124225, 100368, 'en', 'name', 'Sheikh Saqr Laboratory'),
(124226, 100369, 'fr', 'name', 'Centre d''Investigation Clinique Saint-Louis'),
(124227, 100370, 'en', 'name', 'Nobel International Business School'),
(124228, 100371, 'en', 'name', 'Center for Infection and Immunity of Lille'),
(124229, 100371, 'fr', 'name', 'Centre d''infection et d''immunitƩ de Lille'),
(124230, 100372, 'en', 'name', 'Yaşar University'),
(124231, 100372, 'tr', 'name', 'Yaşar Üniversitesi'),
(124232, 100373, 'en', 'name', 'Bilecik University'),
(124233, 100373, 'tr', 'name', 'Bilecik Şeyh Edebali University'),
(124234, 100374, 'no_lang_code', 'name', 'NeuroInDx (United States)'),
(124235, 100375, 'nl', 'name', 'Stichting ROC West-Brabant'),
(124236, 100375, 'no_lang_code', 'name', 'Curio'),
(124237, 100376, 'pt', 'name', 'Instituto Ivoti'),
(124238, 100377, 'en', 'name', 'Wuhan University of Science and Technology'),
(124239, 100377, 'zh', 'name', 'ę­¦ę±‰ē§‘ęŠ€å¤§å­¦'),
(124240, 100378, 'es', 'name', 'Instituto Tecnológico Superior de Naranjos'),
(124241, 100379, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ইসলামিক ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ, ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦®'),
(124242, 100379, 'en', 'name', 'International Islamic University Chittagong'),
(124243, 100380, 'en', 'name', 'Fafo Foundation'),
(124244, 100381, 'en', 'name', 'California State University, Stanislaus'),
(124245, 100381, 'fr', 'name', 'UniversitƩ d''Ʃtat de californie Ơ stanislaus'),
(124246, 100382, 'fr', 'name', 'Centre d''Investigation Clinique BiothƩrapies Necker'),
(124247, 100383, 'en', 'name', 'Australian National Soil Archive'),
(124248, 100384, 'en', 'name', 'East West College of Natural Medicine'),
(124249, 100385, 'fr', 'name', 'Service Interdisciplinaire sur les Systèmes Moléculaires et les Matériaux'),
(124250, 100386, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für die Ingenieurwissenschaften'),
(124251, 100386, 'en', 'name', 'NFDI4Ing, National Research Data Infrastructure for Engineering Sciences'),
(124252, 100387, 'en', 'name', 'Daejeon Woori Hospital'),
(124253, 100387, 'ko', 'name', 'ėŒ€ģ „ģš°ė¦¬ė³‘ģ›');
INSERT INTO `ror_settings` VALUES
(124254, 100388, 'fr', 'name', 'Centre d''Ʃtudes des relations et des contacts linguistiques et littƩraires'),
(124255, 100389, 'en', 'name', 'Holy Child College of Education'),
(124256, 100390, 'fr', 'name', 'Cohortes ƩpidƩmiologiques en population'),
(124257, 100391, 'pt', 'name', 'Centro Hospitalar Leiria EPE'),
(124258, 100392, 'no_lang_code', 'name', 'Wolfram Research (United Kingdom)'),
(124259, 100393, 'en', 'name', 'Guangdong Technology College'),
(124260, 100393, 'zh', 'name', 'å¹æäøœē†å·„å­¦é™¢'),
(124261, 100394, 'en', 'name', 'Central South University'),
(124262, 100394, 'zh', 'name', 'äø­å—å¤§å­¦'),
(124263, 100395, 'de', 'name', 'Medizinische Hochschule Hannover'),
(124264, 100395, 'en', 'name', 'Hannover Medical School'),
(124265, 100396, 'fr', 'name', 'Acteurs, Ressources et Territoires dans le DƩveloppement'),
(124266, 100397, 'de', 'name', 'Hochschule für angewandte Wissenschaft und Kunst Hildesheim/Holzminden/Göttingen'),
(124267, 100397, 'en', 'name', 'University of Applied Sciences and Arts Hildesheim/Holzminden/Gƶttingen'),
(124268, 100398, 'en', 'name', 'IFOAM – Organics International'),
(124269, 100399, 'en', 'name', 'Federal Polytechnic, Mubi'),
(124270, 100399, 'ha', 'name', 'Kwalejin Kimiyya da Fasaha ta Tarayya, Mubi'),
(124271, 100400, 'en', 'name', 'Institute for Advanced Study'),
(124272, 100401, 'en', 'name', 'National Institute for Subatomic Physics'),
(124273, 100401, 'nl', 'name', 'Nationaal instituut voor Subatomaire Fysica'),
(124274, 100402, 'en', 'name', 'Singapore Advanced Research and Education Network'),
(124275, 100403, 'en', 'name', 'Bucknell University'),
(124276, 100404, 'en', 'name', 'Qingdao City University'),
(124277, 100404, 'zh', 'name', 'é’å²›åŸŽåø‚å­¦é™¢'),
(124278, 100405, 'en', 'name', 'Alfred State College'),
(124279, 100406, 'en', 'name', 'Fox Corporation, Fox Corporation (United States)'),
(124280, 100407, 'pt', 'name', 'Instituto de Nanoestruturas Nanomodelação e Nanofabricação'),
(124281, 100408, 'fr', 'name', 'Laboratoire de GƩnie Civil et GƩo Environnement'),
(124282, 100409, 'en', 'name', 'University of Texas Institute for Geophysics'),
(124283, 100410, 'en', 'name', 'Best Buy, Best Buy (United States)'),
(124284, 100411, 'en', 'name', 'Shanghai Institute of Technology'),
(124285, 100411, 'zh', 'name', 'äøŠęµ·åŗ”ē”ØęŠ€ęœÆå¤§å­¦'),
(124286, 100412, 'en', 'name', 'Xinjiang University of Finance and Economics'),
(124287, 100412, 'zh', 'name', 'ę–°ē–†č“¢ē»å¤§å­¦'),
(124288, 100413, 'en', 'name', 'Wilfrid Laurier University'),
(124289, 100413, 'fr', 'name', 'UniversitƩ wilfrid-laurier'),
(124290, 100414, 'en', 'name', 'Harris–Stowe State University'),
(124291, 100415, 'en', 'name', 'Sichuan Medical Association'),
(124292, 100415, 'zh', 'name', 'å››å·ēœåŒ»å­¦ä¼š'),
(124293, 100416, 'en', 'name', 'Baranavichy State University'),
(124294, 100417, 'en', 'name', 'Center for Particle Physics of Marseilles'),
(124295, 100417, 'fr', 'name', 'Centre de physique des particules de Marseille'),
(124296, 100418, 'pt', 'name', 'Hospital São João de Deus'),
(124297, 100419, 'en', 'name', 'Ministry of Culture'),
(124298, 100420, 'en', 'name', 'University College West Flanders'),
(124299, 100420, 'nl', 'name', 'Hogeschool West-Vlaanderen'),
(124300, 100421, 'en', 'name', 'Indiana University Melvin and Bren Simon Comprehensive Cancer Center'),
(124301, 100422, 'en', 'name', 'University of Belgrade – Faculty of Economics and Business'),
(124302, 100422, 'sr', 'name', 'Univerzitet u Beogradu – Ekonomski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Економски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(124303, 100423, 'en', 'name', 'Istanbul Topkapi University'),
(124304, 100423, 'tr', 'name', 'İstanbul Topkapı Üniversitesi'),
(124305, 100424, 'en', 'name', 'Institut Pasteur in Ho Chi Minh City'),
(124306, 100425, 'en', 'name', 'Dalian University'),
(124307, 100425, 'zh', 'name', 'å¤§čæžå¤§å­¦'),
(124308, 100426, 'fr', 'name', 'Centre d''Histoire Judiciaire'),
(124309, 100427, 'en', 'name', 'SUNY Orange'),
(124310, 100428, 'en', 'name', 'Institute for Social and Economic Change'),
(124311, 100429, 'en', 'name', 'Akwa Ibom State Polytechnic'),
(124312, 100430, 'en', 'name', 'Social Sciences Research House'),
(124313, 100430, 'fr', 'name', 'Maison de la Recherche en Sciences Humaines'),
(124314, 100431, 'fr', 'name', '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'),
(124315, 100432, 'en', 'name', 'Bergen School of Architecture'),
(124316, 100433, 'en', 'name', 'Smithsonian Marine Station'),
(124317, 100434, 'en', 'name', 'Eskisehir Technical University'),
(124318, 100434, 'tr', 'name', 'Eskişehir Teknik Üniversitesi'),
(124319, 100435, 'en', 'name', 'Sciences Po Centre for European Studies and Comparative Politics'),
(124320, 100435, 'fr', 'name', 'Centre d''Ʃtudes EuropƩennes de Sciences Po'),
(124321, 100436, 'en', 'name', 'Formal Method Laboratory'),
(124322, 100436, 'fr', 'name', 'Laboratoire MƩthodes Formelles'),
(124323, 100437, 'fr', 'name', 'MƩthodes et Histoire de l''architecture'),
(124324, 100438, 'en', 'name', 'PLA Rocket Force University of Engineering'),
(124325, 100438, 'zh', 'name', '中国人民解放军火箭军巄程大学'),
(124326, 100439, 'en', 'name', 'Oceanographic Institute'),
(124327, 100439, 'fr', 'name', 'Institut FranƧais de la Mer'),
(124328, 100440, 'fr', 'name', 'Pharmacologie et Ʃvaluation thƩrapeutiques chez l''enfant et la femme enceinte'),
(124329, 100441, 'fr', 'name', 'Institut de Chimie et Biochimie MolƩculaires et SupramolƩculaires'),
(124330, 100442, 'fr', 'name', 'Laboratoire écologie, évolution, interactions des systèmes amazoniens'),
(124331, 100443, 'es', 'name', 'Instituto de Investigaciones en Desarrollo Urbano, TecnologĆ­a y Vivienda'),
(124332, 100444, 'de', 'name', 'Kantonsspital St. Gallen'),
(124333, 100444, 'en', 'name', 'Canton of St. Gallen-Hospital'),
(124334, 100445, 'en', 'name', 'Dr. B. R. Ambedkar Open University'),
(124335, 100445, 'fr', 'name', 'UniversitƩ ouverte de l''andhra pradesh'),
(124336, 100445, 'hi', 'name', 'ą¤†ą¤Øą„ą¤§ą„ą¤°ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ ą¤–ą„ą¤²ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(124337, 100446, 'en', 'name', 'Hartford Hospital'),
(124338, 100447, 'it', 'name', 'Fondazione Cassa di Risparmio di Roma, Fondazione Roma'),
(124339, 100448, 'en', 'name', 'Northwest Normal University'),
(124340, 100448, 'zh', 'name', 'č„æåŒ—åøˆčŒƒå¤§å­¦'),
(124341, 100449, 'en', 'name', 'Selkirk College'),
(124342, 100450, 'en', 'name', 'Alaska Center for Energy and Power'),
(124343, 100451, 'af', 'name', 'Universiteit van Wes-Kaapland'),
(124344, 100451, 'en', 'name', 'University of the Western Cape'),
(124345, 100452, 'en', 'name', 'African Reproducibility Network'),
(124346, 100453, 'en', 'name', 'Maryland Humanities Council'),
(124347, 100454, 'en', 'name', 'Ottawa Heart Institute'),
(124348, 100454, 'fr', 'name', 'Institut de cardiologie de l''UniversitƩ d''Ottawa'),
(124349, 100455, 'es', 'name', 'INESPASA, INESPASA (Spain)'),
(124350, 100456, 'en', 'name', 'Utah State University'),
(124351, 100456, 'es', 'name', 'Universidad Estatal de Utah'),
(124352, 100456, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''utah'),
(124353, 100457, 'pl', 'name', 'Akademia Pomorska w Słupsku'),
(124354, 100458, 'en', 'name', 'Federal Polytechnic, Bauchi'),
(124355, 100459, 'no_lang_code', 'name', 'Spotify, Spotify (Sweden)'),
(124356, 100460, 'de', 'name', 'EuropƤisches Astronautenzentrum'),
(124357, 100460, 'en', 'name', 'European Astronaut Centre'),
(124358, 100461, 'pt', 'name', 'Instituto de Desenvolvimento Social'),
(124359, 100462, 'en', 'name', 'Swedish Meteorological and Hydrological Institute'),
(124360, 100462, 'fi', 'name', 'Ruotsin meteorologinen ja hydrologinen laitos'),
(124361, 100462, 'sv', 'name', 'Sveriges meteorologiska och hydrologiska institut'),
(124362, 100463, 'en', 'name', 'Mott Community College'),
(124363, 100464, 'en', 'name', 'Georgetown University Medical Center'),
(124364, 100465, 'en', 'name', 'Southwest Jiaotong University'),
(124365, 100465, 'zh', 'name', 'č„æå—äŗ¤é€šå¤§å­¦'),
(124366, 100466, 'en', 'name', 'College of Technological Studies'),
(124367, 100467, 'en', 'name', 'Lithuanian Sports University'),
(124368, 100467, 'lt', 'name', 'Lietuvos sporto universitetas'),
(124369, 100468, 'pt', 'name', 'Centro UniversitƔrio Internacional UNINTER'),
(124370, 100469, 'fr', 'name', 'DƩlƩgation Paris Michel-Ange'),
(124371, 100470, 'en', 'name', 'Henan Academy of Sciences'),
(124372, 100470, 'zh', 'name', 'ę²³å—ēœē§‘å­¦é™¢'),
(124373, 100471, 'en', 'name', 'Marrow Adiposity & Bone Lab'),
(124374, 100471, 'fr', 'name', 'AdipositƩ MƩdullaire et Os'),
(124375, 100472, 'en', 'name', 'Vermont Technical College'),
(124376, 100473, 'en', 'name', 'Jefferson Community College'),
(124377, 100474, 'en', 'name', 'Quang Nam University'),
(124378, 100475, 'en', 'name', 'New York State College of Agriculture & Life Sciences'),
(124379, 100476, 'no_lang_code', 'name', 'Nucor, Nucor (United States)'),
(124380, 100477, 'fr', 'name', 'Institut thƩmatique Bases molƩculaires et structurales du vivant'),
(124381, 100478, 'en', 'name', 'Cor Jesu College'),
(124382, 100479, 'id', 'name', 'Universitas Amikom Yogyakarta'),
(124383, 100480, 'en', 'name', 'FSU Coastal and Marine Laboratory'),
(124384, 100481, 'pt', 'name', 'Instituto PolitƩcnico da Maia'),
(124385, 100482, 'en', 'name', 'Huntington Ingalls Industries, Huntington Ingalls Industries (United States)'),
(124386, 100483, 'en', 'name', 'Beijing Foreign Studies University'),
(124387, 100483, 'zh', 'name', 'åŒ—äŗ¬å¤–å›½čÆ­å¤§å­¦'),
(124388, 100484, 'bn', 'name', 'পুলিশ ą¦øą§ą¦Ÿą¦¾ą¦« ą¦•ą¦²ą§‡ą¦œ'),
(124389, 100484, 'en', 'name', 'Police Staff College'),
(124390, 100485, 'en', 'name', 'Rocket Force Sergeant School'),
(124391, 100485, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē«ē®­å†›å£«å®˜å­¦ę ”'),
(124392, 100486, 'en', 'name', 'Kennesaw State University'),
(124393, 100486, 'fr', 'name', 'UniversitĆ© d''Ɖtat de kennesaw'),
(124394, 100487, 'pt', 'name', 'Associação De Conservação Do Ambiente E Desenvolvimento Integrado Rural'),
(124395, 100488, 'tr', 'name', 'Mi̇lli̇ Eği̇ti̇m Bakanliği'),
(124396, 100489, 'en', 'name', 'Monash University European Research Foundation ETS'),
(124397, 100490, 'fr', 'name', 'Centre de Recherche et de Documentation sur l''OcƩanie (CREDO)'),
(124398, 100491, 'en', 'name', 'Zhoukou Normal University'),
(124399, 100492, 'en', 'name', 'French Statistical Society'),
(124400, 100492, 'fr', 'name', 'SociƩtƩ FranƧaise de Statistique'),
(124401, 100493, 'fr', 'name', 'RadiothƩrapie MolƩculaire et Innovation ThƩrapeutique'),
(124402, 100494, 'pt', 'name', 'Instituto PortuguĆŖs de Reumatologia'),
(124403, 100495, 'en', 'name', 'Institute of Plant Molecular Biology'),
(124404, 100496, 'en', 'name', 'Atlantic University'),
(124405, 100496, 'pt', 'name', 'Atlântica Instituto UniversitÔrio'),
(124406, 100497, 'en', 'name', 'Jilin University'),
(124407, 100497, 'zh', 'name', 'å‰ęž—å¤§å­¦'),
(124408, 100498, 'en', 'name', 'Lille School of Management Research Center'),
(124409, 100499, 'en', 'name', 'University of Providence'),
(124410, 100500, 'en', 'name', 'Structural and Molecular Basis of Infectious Systems'),
(124411, 100500, 'fr', 'name', 'Bases Moléculaires et Structurales des Systèmes Infectieux'),
(124412, 100501, 'en', 'name', 'Institute for Translational Medicine and Liver Disease'),
(124413, 100501, 'fr', 'name', 'Institut de recherche en mƩdecine translationnelle et maladies hƩpatiques'),
(124414, 100502, 'no_lang_code', 'name', 'Quantum Motion Technologies (United Kingdom)'),
(124415, 100503, 'fr', 'name', 'Laboratoire Physiologie Cellulaire & VƩgƩtale, Laboratoire de Physiologie Cellulaire VƩgƩtale'),
(124416, 100504, 'en', 'name', 'United States Department of Homeland Security'),
(124417, 100504, 'es', 'name', 'Departamento de Seguridad Nacional de los Estados Unidos'),
(124418, 100505, 'en', 'name', 'South Petherton Community Hospital'),
(124419, 100506, 'en', 'name', 'Catholic University of the West'),
(124420, 100506, 'fr', 'name', 'UniversitƩ catholique de l''ouest'),
(124421, 100507, 'az', 'name', 'QoƧ Universiteti'),
(124422, 100507, 'en', 'name', 'KoƧ University'),
(124423, 100507, 'tr', 'name', 'Koç Üniversitesi'),
(124424, 100508, 'ca', 'name', 'Institut CatalĆ  de NanociĆØncia i Nanotecnologia'),
(124425, 100508, 'en', 'name', 'Catalan Institute of Nanoscience and Nanotechnology'),
(124426, 100508, 'es', 'name', 'Instituto CatalƔn de Nanociencia y Nanotecnologƭa'),
(124427, 100509, 'fr', 'name', 'Centre de recherche Droit et territoire'),
(124428, 100510, 'en', 'name', 'William Paterson University'),
(124429, 100511, 'fr', 'name', 'ComplexitƩ, Innovation et ActivitƩs Motrices et Sportives'),
(124430, 100512, 'ca', 'name', 'Institut d''Estudis Espacials de Catalunya'),
(124431, 100512, 'en', 'name', 'Institute of Space Studies of Catalonia'),
(124432, 100513, 'en', 'name', 'Ball State University'),
(124433, 100513, 'es', 'name', 'Universidad Estatal Ball'),
(124434, 100514, 'en', 'name', 'Federal College of Forestry, Ibadan'),
(124435, 100515, 'pt', 'name', 'Academia de Engenharia'),
(124436, 100516, 'en', 'name', 'American Society of Neuroradiology'),
(124437, 100517, 'en', 'name', 'University of Chubut'),
(124438, 100517, 'es', 'name', 'Universidad del Chubut'),
(124439, 100518, 'no_lang_code', 'name', 'Saint Petersburg Pasteur Institute'),
(124440, 100518, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠæŠøŠ“ŠµŠ¼ŠøŠ¾Š»Š¾Š³ŠøŠø Šø микробиологии им. ŠŸŠ°ŃŃ‚ŠµŃ€Š°'),
(124441, 100519, 'en', 'name', 'Sumpah Pemuda School of Law'),
(124442, 100519, 'id', 'name', 'Sekolah Tinggi Ilmu Hukum Sumpah Pemuda'),
(124443, 100520, 'de', 'name', 'UniversitƤt Luzern'),
(124444, 100520, 'en', 'name', 'University of Lucerne'),
(124445, 100520, 'fr', 'name', 'UniversitƩ de Lucerne'),
(124446, 100520, 'it', 'name', 'UniversitĆ  di Lucerna'),
(124447, 100521, 'fr', 'name', 'Evolution et ingénierie de systèmes dynamiques'),
(124448, 100522, 'fr', 'name', 'Ɖcologie, SystĆ©matique et Ɖvolution'),
(124449, 100523, 'en', 'name', 'Research Institute for Indigenous studies'),
(124450, 100523, 'fr', 'name', 'Institut de recherche et d’études autochtones'),
(124451, 100524, 'fr', 'name', 'CEA DAM Ǝle-de-France'),
(124452, 100525, 'en', 'name', 'Himachal Pradesh National Law University, Shimla'),
(124453, 100526, 'en', 'name', 'New York Council for the Humanities'),
(124454, 100527, 'en', 'name', 'Jan Kochanowski University'),
(124455, 100527, 'pl', 'name', 'Uniwersytet Jana Kochanowskiego w Kielcach'),
(124456, 100528, 'en', 'name', 'Darden Restaurants, Darden Restaurants (United States)'),
(124457, 100529, 'bn', 'name', 'ą¦¹ą¦¾ą¦œą§€ ą¦®ą§‹ą¦¹ą¦¾ą¦®ą§ą¦®ą¦¦ দানেশ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(124458, 100529, 'en', 'name', 'Hajee Mohammad Danesh Science and Technology University'),
(124459, 100530, 'en', 'name', 'European Space Astronomy Centre'),
(124460, 100530, 'es', 'name', 'Agencia Espacial Europea'),
(124461, 100530, 'fr', 'name', 'Agence Spatiale EuropƩenne'),
(124462, 100531, 'en', 'name', 'Temple University'),
(124463, 100531, 'es', 'name', 'Universidad de Temple'),
(124464, 100532, 'en', 'name', 'Mody University of Science and Technology'),
(124465, 100533, 'en', 'name', 'Keycorp, Keycorp (United States)'),
(124466, 100534, 'en', 'name', 'European Center for the Humanities and Social Sciences'),
(124467, 100534, 'fr', 'name', 'Maison EuropƩenne des Sciences de l''Homme et de la SociƩtƩ'),
(124468, 100535, 'id', 'name', 'Politeknik Negeri Batam'),
(124469, 100536, 'no_lang_code', 'name', 'Daimler (Germany)'),
(124470, 100537, 'no_lang_code', 'name', 'arXiv'),
(124471, 100538, 'en', 'name', 'Image and Pervasive Access Laboratory'),
(124472, 100539, 'fr', 'name', 'Arènes: politique, santé publique, environnement, médias'),
(124473, 100540, 'fr', 'name', 'MatƩriaux DivisƩs, Interfaces, RƩactivitƩ, Electrochimie'),
(124474, 100541, 'en', 'name', 'Los Rios Community College District'),
(124475, 100542, 'fr', 'name', 'Science et IngƩnierie des MatƩriaux et ProcƩdƩs'),
(124476, 100543, 'pt', 'name', 'Teva Portugal, Teva Portugal (Portugal)'),
(124477, 100544, 'en', 'name', 'Pathogens Host Arthropod Vectors Interfaces'),
(124478, 100545, 'en', 'name', 'NHS Grampian'),
(124479, 100546, 'en', 'name', 'Guangxi Logistics Vocational and Technical College'),
(124480, 100546, 'zh', 'name', 'å¹æč„æē‰©ęµčŒäøšęŠ€ęœÆå­¦é™¢'),
(124481, 100547, 'en', 'name', 'Cabio Biotech (Wuhan) Biotechnology Co. Ltd, Cabio Biotech (Wuhan) Biotechnology Co. Ltd (China)'),
(124482, 100547, 'zh', 'name', 'å˜‰åæ…ä¼˜ē”Ÿē‰©ęŠ€ęœÆ(ꭦ걉)č‚”ä»½ęœ‰é™å…¬åø'),
(124483, 100548, 'fr', 'name', 'Centre de Recherches Psychanalyse, MƩdecine et SociƩtƩ'),
(124484, 100549, 'en', 'name', 'Physiology, Environment, and Genetics for the Animal and Livestock Systems'),
(124485, 100549, 'fr', 'name', 'Physiologie Environnement et Génétique pour l''Animal et les Systèmes d''Elevage'),
(124486, 100550, 'fr', 'name', 'Laboratoire Paragraphe'),
(124487, 100551, 'en', 'name', 'The Navigation Fund'),
(124488, 100552, 'fr', 'name', 'Centre Lillois d''Etudes et de Recherches Sociologiques et Economiques'),
(124489, 100553, 'pt', 'name', 'Instituto Superior de Angola'),
(124490, 100554, 'en', 'name', 'Institute for Telecommunication Sciences'),
(124491, 100555, 'en', 'name', 'California State University, Monterey Bay'),
(124492, 100556, 'fr', 'name', 'Institut de Droit EuropƩen des Droits de l''Homme'),
(124493, 100557, 'en', 'name', 'Freedom''s Wings International'),
(124494, 100558, 'en', 'name', 'Sciences Po Centre for History'),
(124495, 100558, 'fr', 'name', 'Centre d’histoire de Sciences Po'),
(124496, 100559, 'en', 'name', 'Quinnipiac University'),
(124497, 100560, 'pt', 'name', 'Santa Casa de Montes Claros - Irmandade Nossa Senhora das MercĆŖs'),
(124498, 100561, 'sv', 'name', 'ƅForsk'),
(124499, 100562, 'en', 'name', 'International Institute of Health Management Research, Delhi'),
(124500, 100563, 'en', 'name', 'Chaohu University'),
(124501, 100563, 'zh', 'name', '巢湖学院'),
(124502, 100564, 'en', 'name', 'Polytechnic University of Sinaloa'),
(124503, 100564, 'es', 'name', 'Universidad PolitƩcnica de Sinaloa'),
(124504, 100565, 'en', 'name', 'Hartford Financial Services, Hartford Financial Services (United States)'),
(124505, 100566, 'de', 'name', 'Katholische UniversitƤt EichstƤtt-Ingolstadt'),
(124506, 100566, 'en', 'name', 'Catholic University of EichstƤtt-Ingolstadt'),
(124507, 100567, 'no_lang_code', 'name', 'Martin Marietta Materials, Martin Marietta Materials (United States)'),
(124508, 100568, 'es', 'name', 'Institución Universitaria Centro de Estudios Superiores María Goretti'),
(124509, 100569, 'en', 'name', 'FBS, Inc., Guidedwave, Guidedwave (United States)'),
(124510, 100570, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ساوة'),
(124511, 100570, 'en', 'name', 'Sawa University'),
(124512, 100571, 'fr', 'name', 'Institut Toulousain des Maladies Infectieuses et Inflammatoires'),
(124513, 100572, 'en', 'name', 'University of French Guiana'),
(124514, 100572, 'fr', 'name', 'UniversitƩ de Guyane'),
(124515, 100573, 'es', 'name', 'Universidad Tecnológica de Manzanillo'),
(124516, 100574, 'fr', 'name', 'Lieux, IdentitƩs, eSpaces, ActivitƩs'),
(124517, 100575, 'fr', 'name', 'Institut des Sciences de la MƩcanique et Applications Industrielles'),
(124518, 100576, 'fr', 'name', 'BioSpectroscopie Translationnelle'),
(124519, 100577, 'en', 'name', 'Hakkari University'),
(124520, 100577, 'tr', 'name', 'Hakkari Üniversitesi'),
(124521, 100578, 'fr', 'name', 'Laboratoire ModƩlisation et Exploration des MatƩriaux'),
(124522, 100579, 'en', 'name', 'Clermont Research Management'),
(124523, 100579, 'fr', 'name', 'Clermont Recherche Management'),
(124524, 100580, 'en', 'name', 'French Research Institute on East Asia'),
(124525, 100580, 'fr', 'name', 'Institut FranƧais de Recherche sur l''Asie de l''Est'),
(124526, 100581, 'no_lang_code', 'name', 'Istituto Nazionale di Fisica Nucleare, Trento Institute for Fundamental Physics And Applications'),
(124527, 100582, 'en', 'name', 'Injibara University'),
(124528, 100583, 'en', 'name', 'Montpellier Universe and Particles Laboratory'),
(124529, 100583, 'fr', 'name', 'Laboratoire Univers et Particules de Montpellier'),
(124530, 100584, 'fr', 'name', 'Structures Formelles du Langage'),
(124531, 100585, 'en', 'name', 'Waseda University'),
(124532, 100585, 'ja', 'name', '早稲田大学'),
(124533, 100586, 'en', 'name', 'Laboratory of Theoretical Biochemistry'),
(124534, 100586, 'fr', 'name', 'Laboratoire de Biochimie ThƩorique'),
(124535, 100587, 'fr', 'name', 'StabilitƩ GƩnƩtique, Cellules Souches et Radiations'),
(124536, 100588, 'en', 'name', 'Macao University of Tourism'),
(124537, 100588, 'pt', 'name', 'Universidade de Turismo de Macau'),
(124538, 100588, 'zh', 'name', 'ę¾³é–€ę—…éŠå¤§å­ø'),
(124539, 100589, 'en', 'name', 'Osaka Women''s and Children''s Hospital'),
(124540, 100589, 'ja', 'name', 'å¤§é˜ŖęÆå­åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(124541, 100590, 'de', 'name', 'Badische Landesbibliothek'),
(124542, 100590, 'en', 'name', 'Baden State Library'),
(124543, 100591, 'en', 'name', 'Sparsholt College'),
(124544, 100592, 'en', 'name', 'State Center Community College District'),
(124545, 100593, 'en', 'name', 'Scripps College'),
(124546, 100594, 'no_lang_code', 'name', 'Panteia, Panteia (Netherlands)'),
(124547, 100595, 'en', 'name', 'Banking Academy of Vietnam'),
(124548, 100595, 'vi', 'name', 'Hį»c viện NgĆ¢n hĆ ng'),
(124549, 100596, 'id', 'name', 'Universitas Islam Negeri Profesor Kiai Haji Saifuddin Zuhri Purwokerto'),
(124550, 100597, 'fr', 'name', 'ContrĆ“le transcriptionnel et Ć©pigĆ©nĆ©tique de l’hĆ©matopoĆÆĆØse maligne'),
(124551, 100598, 'fr', 'name', 'RƩsistance Induite et Bioprotection des Plantes'),
(124552, 100599, 'pt', 'name', 'Uninter'),
(124553, 100600, 'en', 'name', 'University College of Arts Crafts and Design'),
(124554, 100601, 'en', 'name', 'Urban Community of Lyon'),
(124555, 100601, 'fr', 'name', 'CommunautƩ urbaine de Lyon'),
(124556, 100602, 'de', 'name', 'Eidgenössische Anstalt für Wasserversorgung, Abwasserreinigung und Gewässerschutz'),
(124557, 100602, 'en', 'name', 'Swiss Federal Institute of Aquatic Science and Technology'),
(124558, 100602, 'fr', 'name', 'Institut fĆ©dĆ©ral pour l’amĆ©nagement, l’épuration et la protection des eaux'),
(124559, 100603, 'en', 'name', 'Laboratory of Computational and Quantitative Biology'),
(124560, 100603, 'fr', 'name', 'Laboratoire de Biologie Computationnelle et Quantitative'),
(124561, 100604, 'de', 'name', 'Universität Münster'),
(124562, 100604, 'en', 'name', 'University of Münster'),
(124563, 100605, 'en', 'name', 'RFF-CMCC European Institute on Economics and the Environment'),
(124564, 100606, 'en', 'name', 'Tamale College of Education'),
(124565, 100607, 'en', 'name', 'Food and Agriculture Organization of the United Nations'),
(124566, 100607, 'fr', 'name', 'Organisation des Nations Unies pour l''Alimentation et l''Agriculture'),
(124567, 100607, 'it', 'name', 'Organizzazione delle Nazioni Unite per l''Alimentazione e l''Agricoltura'),
(124568, 100608, 'fr', 'name', 'DƩpartement Alimentation Humaine'),
(124569, 100609, 'fr', 'name', 'HƓpital Cochin'),
(124570, 100610, 'no_lang_code', 'name', 'JURA Bio, Inc., JURA Bio, Inc. (United States)'),
(124571, 100611, 'fr', 'name', 'Equipe de recherche Louis Josserand'),
(124572, 100612, 'en', 'name', 'Center for Research on Education, Learning and Didactics'),
(124573, 100612, 'fr', 'name', 'Centre de recherche sur l’éducation, les apprentissages et la didactique'),
(124574, 100613, 'en', 'name', 'Islamic Azad University, Babol'),
(124575, 100613, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ŲØŲ§ŲØŁ„'),
(124576, 100614, 'cs', 'name', 'OstravskĆ” univerzita v Ostravě'),
(124577, 100614, 'en', 'name', 'University of Ostrava'),
(124578, 100615, 'es', 'name', 'Instituto Educativo Dolores Del Rio Extensión Santiago Papasquiaro Durango'),
(124579, 100616, 'en', 'name', 'Le Moyne College'),
(124580, 100617, 'en', 'name', 'Rose Bruford College'),
(124581, 100618, 'en', 'name', 'Hong Kong University of Science and Technology'),
(124582, 100619, 'no_lang_code', 'name', 'Reactive Innovations (United States)'),
(124583, 100620, 'fr', 'name', 'Collecte Localisation Satellites (France)'),
(124584, 100621, 'en', 'name', 'Pierre-Gilles de Gennes Institute'),
(124585, 100621, 'fr', 'name', 'Institut Pierre-Gilles de Gennes pour la Microfluidique'),
(124586, 100622, 'en', 'name', 'Atal Bihari Vajpayee Institute of Medical Sciences and Dr. Ram Manohar Lohia Hospital'),
(124587, 100623, 'fr', 'name', 'TBM-Core'),
(124588, 100624, 'en', 'name', 'Joint Research Center on Systems and Personalized Pharmacology'),
(124589, 100624, 'fr', 'name', 'Centre commun de recherche sur les systèmes et la pharmacologie personnalisée'),
(124590, 100625, 'en', 'name', 'RESTORE'),
(124591, 100626, 'en', 'name', 'Biostatistic, Biological Data Treatment and Modelisation'),
(124592, 100626, 'fr', 'name', 'Biostatistique, traitement et modƩlisation des donnƩes biologiques'),
(124593, 100627, 'en', 'name', 'Medical College of Wisconsin'),
(124594, 100628, 'en', 'name', 'SUNY College of Environmental Science and Forestry'),
(124595, 100629, 'no_lang_code', 'name', 'Lo.La Peak Solutions GmbH, Lo.La Peak Solutions GmbH (Austria)'),
(124596, 100630, 'en', 'name', 'Canadian Food Inspection Agency'),
(124597, 100630, 'fr', 'name', 'Agence Canadienne d''Inspection des Aliments'),
(124598, 100631, 'es', 'name', 'Universidad Tecnológica de Puebla'),
(124599, 100632, 'de', 'name', 'FAIRe Dateninfrastruktur für die Agrosystemforschung'),
(124600, 100632, 'en', 'name', 'FAIR Data Infrastructure for Agrosystems, FAIRAgro'),
(124601, 100633, 'en', 'name', 'Cambricon, Cambricon (China), 寒武纪'),
(124602, 100633, 'zh', 'name', 'åŒ—äŗ¬äø­ē§‘åÆ’ę­¦ēŗŖē§‘ęŠ€ęœ‰é™å…¬åø'),
(124603, 100634, 'fr', 'name', 'Institut thƩmatique Immunologie, inflammation, infectiologie et microbiologie'),
(124604, 100635, 'en', 'name', 'Music and Health Research Institute'),
(124605, 100635, 'fr', 'name', 'Institut de recherche en musique et santƩ'),
(124606, 100636, 'en', 'name', 'Institute of Molecular Sciences'),
(124607, 100636, 'fr', 'name', 'Institut des Sciences MolƩculaires'),
(124608, 100637, 'en', 'name', 'PPL, PPL (United States)'),
(124609, 100638, 'en', 'name', 'Netherlands eScience Center'),
(124610, 100639, 'fr', 'name', 'Laboratoire Interdisciplinaire des Sciences du NumƩrique'),
(124611, 100640, 'fr', 'name', 'Groupe de Recherche en Droit, Ɖconomie, Gestion'),
(124612, 100641, 'en', 'name', 'Epigenetics, Data, Politics'),
(124613, 100642, 'de', 'name', 'Technischer Überwachungsverein'),
(124614, 100642, 'no_lang_code', 'name', 'TÜV Nord (Germany)'),
(124615, 100643, 'fr', 'name', 'Laboratoire de ChƩmo-biologie synthƩtique et thƩrapeutique'),
(124616, 100644, 'no_lang_code', 'name', 'Candela, Candela (United States)'),
(124617, 100645, 'fr', 'name', 'Laboratoire d''Ʃtudes rurales'),
(124618, 100646, 'en', 'name', 'Zhejiang Wanli University'),
(124619, 100646, 'zh', 'name', 'ęµ™ę±Ÿäø‡é‡Œå­¦é™¢'),
(124620, 100647, 'en', 'name', 'University College Ghent'),
(124621, 100647, 'fr', 'name', 'Haute Ɖcole de Gand'),
(124622, 100647, 'nl', 'name', 'Hogeschool Gent'),
(124623, 100648, 'en', 'name', 'Raffles University'),
(124624, 100649, 'fr', 'name', 'Centre universitaire de recherches sur l''Action Publique et le Politique ƉpistĆ©mologie & Sciences Sociales'),
(124625, 100650, 'fr', 'name', 'Laboratoire des technologies innovantes'),
(124626, 100651, 'ar', 'name', 'ŁƒŁ„ŁŠŲ§ŲŖ Ų§Ł„Ų±ŁŠŲ§Ų¶ لطب الأسنان ŁˆŲ§Ł„ŲµŁŠŲÆŁ„Ų©'),
(124627, 100651, 'en', 'name', 'Riyadh Elm University'),
(124628, 100652, 'en', 'name', 'Centre for Catalysis Research and Innovation'),
(124629, 100652, 'fr', 'name', 'Centre de recherche et d’innovation en catalyse'),
(124630, 100653, 'en', 'name', 'Institute of Plant Biology and Biotechnology'),
(124631, 100653, 'kk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ биологии Šø биотехнологии растений'),
(124632, 100654, 'en', 'name', 'Science and Technology Policy Institute'),
(124633, 100654, 'ko', 'name', 'ź³¼ķ•™źø°ģˆ ģ •ģ±…ģ—°źµ¬ģ›'),
(124634, 100655, 'en', 'name', 'West Northamptonshire Council'),
(124635, 100656, 'fr', 'name', 'Passages'),
(124636, 100657, 'en', 'name', 'Catholic University of Toulouse'),
(124637, 100657, 'fr', 'name', 'Institut catholique de toulouse'),
(124638, 100658, 'de', 'name', 'Hochschule Ravensburg-Weingarten'),
(124639, 100658, 'en', 'name', 'University of Applied Sciences Ravensburg-Weingarten'),
(124640, 100659, 'en', 'name', 'Canadian Research Knowledge Network'),
(124641, 100659, 'fr', 'name', 'RƩseau canadien de documentation pour la recherche'),
(124642, 100660, 'en', 'name', 'Minjiang University'),
(124643, 100660, 'zh', 'name', 'é—½ę±Ÿå­¦é™¢'),
(124644, 100661, 'fr', 'name', 'HƓpital de la Conception'),
(124645, 100662, 'fr', 'name', 'Centre d''Etudes Biologiques de ChizƩ'),
(124646, 100663, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³Ł„ŁŠŁ…Ų§Ł†ŁŠŲ©'),
(124647, 100663, 'en', 'name', 'University of Sulaimani'),
(124648, 100664, 'en', 'name', 'Gyeongsang National University'),
(124649, 100664, 'ko', 'name', 'ź²½ģƒėŒ€ķ•™źµ'),
(124650, 100665, 'en', 'name', 'Jilin Business and Technology College'),
(124651, 100666, 'en', 'name', 'Amasya University'),
(124652, 100666, 'tr', 'name', 'Amasya Üniversitesi'),
(124653, 100667, 'en', 'name', 'Missouri University of Science and Technology'),
(124654, 100667, 'fr', 'name', 'UniversitƩ du missouri-columbia de science et technologie'),
(124655, 100668, 'en', 'name', 'Central Institute for Arid Horticulture'),
(124656, 100669, 'en', 'name', 'SUNY Corning Community College'),
(124657, 100670, 'en', 'name', 'Afyonkarahisar Health Sciences University'),
(124658, 100670, 'tr', 'name', 'Afyonkarahisar Sağlık Bilimleri Üniversitesi'),
(124659, 100671, 'en', 'name', 'Saskatchewan Epidemiology Association'),
(124660, 100672, 'fr', 'name', 'Laboratoire des signaux et systĆØmes'),
(124661, 100673, 'fr', 'name', 'Laboratoire CaribƩen de Sciences Sociales'),
(124662, 100674, 'fr', 'name', 'AMURE - Centre de droit et d''Ʃconomie de la mer'),
(124663, 100675, 'fr', 'name', 'EURECOM'),
(124664, 100676, 'fr', 'name', 'TRANSFORM'),
(124665, 100677, 'pt', 'name', 'Instituto Superior de Lisboa e Vale do Tejo'),
(124666, 100678, 'de', 'name', 'Zentral und Hochschulbibliothek Luzern'),
(124667, 100678, 'en', 'name', 'Lucerne Central and University Library'),
(124668, 100679, 'en', 'name', 'AbbVie (Australia)'),
(124669, 100680, 'en', 'name', 'Laboratory of Computing, Modelling and Optimization of the Systems'),
(124670, 100680, 'fr', 'name', 'Laboratoire d''Informatique, de Modélisation et d''Optimisation des Systèmes'),
(124671, 100681, 'en', 'name', 'Northern Trust, Northern Trust (United States)'),
(124672, 100682, 'en', 'name', 'National Defence University of Malaysia'),
(124673, 100682, 'ms', 'name', 'Universiti Pertahanan Nasional Malaysia'),
(124674, 100683, 'en', 'name', 'University of Belgrade - Faculty of Architecture'),
(124675, 100683, 'sr', 'name', 'Univerzitet u Beogradu - Arhitektonski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Архитектонски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(124676, 100684, 'en', 'name', 'UCSD-CNRS Joint Research Chemistry Laboratory'),
(124677, 100685, 'en', 'name', 'Trinity University'),
(124678, 100685, 'es', 'name', 'Universidad Trinidad'),
(124679, 100686, 'en', 'name', 'Centre of Research in Epidemiology and Statistics'),
(124680, 100686, 'fr', 'name', 'Centre de Recherche ƉpidĆ©miologie et Statistique'),
(124681, 100687, 'fr', 'name', 'Sport et environnement social'),
(124682, 100688, 'en', 'name', 'International Research Institute for Radio Astronomy'),
(124683, 100688, 'fr', 'name', 'Institut de Radioastronomie MillimƩtrique'),
(124684, 100689, 'en', 'name', 'Istanbul Topkapi University'),
(124685, 100689, 'tr', 'name', 'İstanbul Topkapı Üniversitesi'),
(124686, 100690, 'no_lang_code', 'name', 'SUNY Canton'),
(124687, 100691, 'en', 'name', 'University of Georgia'),
(124688, 100691, 'es', 'name', 'Universidad de Georgia'),
(124689, 100691, 'fr', 'name', 'UniversitƩ de gƩorgie'),
(124690, 100692, 'en', 'name', 'Laboratory for Vectorology in Anticancer Therapy'),
(124691, 100692, 'fr', 'name', 'Laboratoire de Vectorologie et ThƩrapeutiques AnticancƩreuses'),
(124692, 100693, 'fr', 'name', 'MusƩe Curie'),
(124693, 100694, 'en', 'name', 'Yonsei University College of Dentistry'),
(124694, 100695, 'de', 'name', 'UniversitƤt Mozarteum Salzburg'),
(124695, 100695, 'en', 'name', 'Mozarteum University of Salzburg'),
(124696, 100696, 'fr', 'name', 'HƓpital Salvator'),
(124697, 100697, 'en', 'name', 'Carcinomatosis Peritoneum Paris Technology'),
(124698, 100697, 'fr', 'name', 'CArcinose PƩritoine Paris-Technologies'),
(124699, 100698, 'en', 'name', 'Kristianstad University'),
(124700, 100698, 'fi', 'name', 'Kristianstadin korkeakoulu'),
(124701, 100698, 'sv', 'name', 'Hƶgskolan Kristianstad'),
(124702, 100699, 'en', 'name', 'Opal Coast Signal and Image Computer Laboratory'),
(124703, 100699, 'fr', 'name', 'Laboratoire d’Informatique Signal et Image de la CĆ“te d’Opale'),
(124704, 100700, 'en', 'name', 'Sanda University'),
(124705, 100700, 'zh', 'name', 'äøŠęµ·ę‰č¾¾å­¦é™¢'),
(124706, 100701, 'en', 'name', 'SUNY Erie'),
(124707, 100702, 'en', 'name', 'Vels University'),
(124708, 100702, 'ta', 'name', 'ą®µąÆ‡ą®²ąÆą®øąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(124709, 100703, 'fr', 'name', 'UnitƩ de MƩcanique de Lille - Joseph Boussinesq'),
(124710, 100704, 'en', 'name', 'Korea Hydro and Nuclear Power (Korea)'),
(124711, 100704, 'ko', 'name', 'ķ•œźµ­ģˆ˜ė „ģ›ģžė „'),
(124712, 100705, 'en', 'name', 'National School of Computer Science for Industry and Business'),
(124713, 100705, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d’Informatique pour l’Industrie et l’Entreprise, Ɖcole nationale supĆ©rieure d''informatique pour l''industrie et l''entreprise'),
(124714, 100706, 'en', 'name', 'French Society of Periodontology'),
(124715, 100706, 'fr', 'name', 'SociĆ©tĆ© FranƧaise de Parodontologie et d’Implantologie Orale'),
(124716, 100707, 'en', 'name', 'Austrian Institute for Health Technology Assessment GmbH'),
(124717, 100708, 'bn', 'name', 'ą¦Ÿą§‡ą¦•ą¦Øą§‹ ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(124718, 100708, 'en', 'name', 'Techno India University'),
(124719, 100709, 'en', 'name', 'Posts and Telecommunications Institute of Technology - Ho Chi Minh City'),
(124720, 100709, 'vi', 'name', 'Hį»c Viện CĆ“ng Nghệ Bʰu ChĆ­nh Viį»…n ThĆ“ng CĘ” sở TP. Hồ ChĆ­ Minh'),
(124721, 100710, 'en', 'name', 'Yeovil District Hospital NHS Foundation Trust'),
(124722, 100711, 'en', 'name', 'Gaia College'),
(124723, 100712, 'fr', 'name', 'Laboratoire de GƩographie et d''AmƩnagement de Montpellier'),
(124724, 100713, 'fr', 'name', 'ThĆ©orie Ɖconomique, ModĆ©lisation et Applications'),
(124725, 100714, 'en', 'name', 'Urban Studies Foundation'),
(124726, 100715, 'no_lang_code', 'name', 'Leonardo (France)'),
(124727, 100716, 'fr', 'name', 'SantƩ et AgroƩcologie du Vignoble'),
(124728, 100717, 'ca', 'name', 'Universitat Abat Oliba CEU'),
(124729, 100717, 'es', 'name', 'Universidad Abat Oliba CEU'),
(124730, 100718, 'en', 'name', 'Urganch Innovation University'),
(124731, 100719, 'en', 'name', 'Breakthrough T1D'),
(124732, 100720, 'ja', 'name', 'ć‚¢ć‚¤ć‚·ćƒ³ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(124733, 100720, 'no_lang_code', 'name', 'Aisin (Japan)'),
(124734, 100721, 'fr', 'name', 'Unité de Recherche Agrosystèmes tropicaux'),
(124735, 100722, 'en', 'name', 'Tokyo Metropolitan Institute of Medical Science'),
(124736, 100722, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬éƒ½åŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(124737, 100723, 'en', 'name', 'NFC Institute of Engineering and Technology'),
(124738, 100723, 'ur', 'name', 'Ų§ŪŒŁ† ایف سی Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ آف Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(124739, 100724, 'fr', 'name', 'ThƩologie catholique et sciences religieuses'),
(124740, 100725, 'fr', 'name', 'Institut de Neurophysiopathologie'),
(124741, 100726, 'en', 'name', 'European Centre for Space Applications and Telecommunications'),
(124742, 100727, 'en', 'name', 'Akrokerri College of Education'),
(124743, 100728, 'en', 'name', 'Liberty University'),
(124744, 100729, 'en', 'name', 'Laboratory of Theoretical Physics and Statistical Models'),
(124745, 100729, 'fr', 'name', 'Laboratoire de Physique Théorique et Modèles Statistiques'),
(124746, 100730, 'pt', 'name', 'Cooperativa de Ensino Superior PolitƩcnico e UniversitƔrio'),
(124747, 100731, 'en', 'name', 'College of New Caledonia'),
(124748, 100732, 'en', 'name', 'Sikkim University'),
(124749, 100732, 'hi', 'name', 'ą¤øą¤æą¤•ą„ą¤•ą¤æą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(124750, 100733, 'en', 'name', 'University of Belgrade – Faculty of Biology'),
(124751, 100733, 'sr', 'name', 'Univerzitet u Beogradu – BioloÅ”ki fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š‘ŠøŠ¾Š»Š¾ŃˆŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(124752, 100734, 'en', 'name', 'Thapar Institute of Engineering & Technology'),
(124753, 100734, 'pa', 'name', '਄ਾਪਰ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(124754, 100735, 'en', 'name', 'IPG Photonics, IPG Photonics (United States)'),
(124755, 100736, 'en', 'name', 'Perdana University'),
(124756, 100737, 'pt', 'name', 'Laboratório Associado CICECO – Instituto de Materiais de Aveiro'),
(124757, 100738, 'en', 'name', 'University of Montpellier 2'),
(124758, 100738, 'fr', 'name', 'UniversitƩ Montpellier 2'),
(124759, 100739, 'en', 'name', 'Woodrow Wilson International Center for Scholars'),
(124760, 100740, 'en', 'name', 'Beihang University'),
(124761, 100740, 'zh', 'name', 'åŒ—äŗ¬čˆŖē©ŗčˆŖå¤©å¤§å­¦'),
(124762, 100741, 'en', 'name', 'City College of New York'),
(124763, 100742, 'en', 'name', 'Pasteur Institute of Iran'),
(124764, 100742, 'fr', 'name', 'Institut Pasteur D''Iran'),
(124765, 100743, 'en', 'name', 'Shanghai University of Finance and Economics'),
(124766, 100743, 'zh', 'name', 'äøŠęµ·č“¢ē»å¤§å­¦'),
(124767, 100744, 'fr', 'name', 'Laboratoire Analyse et ModƩlisation pour la Biologie et l''Environnement'),
(124768, 100745, 'fr', 'name', 'Maison ArchƩologie & Ethnologie, Maison des Sciences de l''Homme Mondes'),
(124769, 100746, 'fr', 'name', 'Centre des Politiques de la Terre'),
(124770, 100747, 'en', 'name', 'University of Gloucestershire'),
(124771, 100748, 'en', 'name', 'Pima Community College'),
(124772, 100749, 'en', 'name', 'University of Oradea'),
(124773, 100749, 'ro', 'name', 'Universitatea din Oradea'),
(124774, 100750, 'pt', 'name', 'Centro de Geofƭsica de Ɖvora'),
(124775, 100751, 'pt', 'name', 'Coordenação de Aperfeicoamento de Pessoal de Nível Superior'),
(124776, 100752, 'en', 'name', 'Rikkyo University'),
(124777, 100752, 'ja', 'name', '立教大学'),
(124778, 100753, 'en', 'name', '4Thparadigm, 4Thparadigm (China)'),
(124779, 100753, 'zh', 'name', 'ē¬¬å››čŒƒå¼ļ¼ˆåŒ—äŗ¬ļ¼‰ęŠ€ęœÆęœ‰é™å…¬åø'),
(124780, 100754, 'fr', 'name', 'Structure et PropriƩtƩs d''Architectures MolƩculaires'),
(124781, 100755, 'en', 'name', 'National Research Institute for Mathematics and Computer Science'),
(124782, 100755, 'nl', 'name', 'Centrum Wiskunde & Informatica'),
(124783, 100756, 'en', 'name', 'Trakya University'),
(124784, 100756, 'tr', 'name', 'Trakya Üniversitesi'),
(124785, 100757, 'en', 'name', 'University of Novi Sad'),
(124786, 100757, 'sr', 'name', 'Универзитет у ŠŠ¾Š²Š¾Š¼ ДаГу'),
(124787, 100758, 'es', 'name', 'Instituto Tecnólogico de La Laguna'),
(124788, 100759, 'fr', 'name', 'GƩnomique MƩtabolique du Genoscope'),
(124789, 100760, 'en', 'name', 'Shota Rustaveli National Science Foundation'),
(124790, 100761, 'en', 'name', 'Solids Mechanic Laboratory'),
(124791, 100761, 'fr', 'name', 'Laboratoire MƩcanique des Solides'),
(124792, 100762, 'fr', 'name', 'Ɖcole SupĆ©rieure des Beaux-Arts de Nantes MĆ©tropole'),
(124793, 100763, 'en', 'name', 'Humanities Texas'),
(124794, 100764, 'en', 'name', 'Freer Gallery of Art'),
(124795, 100765, 'fr', 'name', 'Dynamique Musculaire et MƩtabolisme'),
(124796, 100766, 'en', 'name', 'DTI University'),
(124797, 100766, 'sk', 'name', 'VysokÔ Ŕkola'),
(124798, 100767, 'no_lang_code', 'name', 'Telecom Italia (Italy)'),
(124799, 100768, 'bn', 'name', 'বাংলাদেশ ą¦†ą¦°ą§ą¦®ą¦æ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(124800, 100768, 'en', 'name', 'Bangladesh Army University of Science and Technology'),
(124801, 100769, 'fr', 'name', 'Institut de Science et d''IngƩnierie SupramolƩculaires'),
(124802, 100770, 'en', 'name', 'Jilin Normal University'),
(124803, 100770, 'zh', 'name', 'å‰ęž—åøˆčŒƒå¤§å­¦'),
(124804, 100771, 'fr', 'name', 'Institut Parisien de Chimie Physique et ThƩorique'),
(124805, 100772, 'en', 'name', 'Yamagata University'),
(124806, 100772, 'ja', 'name', '山形大学'),
(124807, 100773, 'en', 'name', 'Bordeaux Population Health'),
(124808, 100774, 'en', 'name', 'Warsaw University of Technology'),
(124809, 100774, 'pl', 'name', 'Politechnika Warszawska'),
(124810, 100775, 'en', 'name', 'Institute for Basic Science'),
(124811, 100776, 'en', 'name', 'University of Education, Winneba'),
(124812, 100777, 'fr', 'name', 'Laboratoire Universitaire Histoire Cultures Italie Europe'),
(124813, 100778, 'en', 'name', 'International Council on Monuments and Sites'),
(124814, 100778, 'fr', 'name', 'Conseil international des monuments et des sites'),
(124815, 100779, 'fr', 'name', 'Laboratoire en Sciences et Technologies de l''Information GƩographique pour la ville intelligente et les territoires durables'),
(124816, 100780, 'fr', 'name', 'Centre de Recherche en Technologies Agro-Alimentaires'),
(124817, 100781, 'en', 'name', 'World Organisation for Animal Health'),
(124818, 100781, 'fr', 'name', 'Organisation Mondiale de la SantƩ Animale'),
(124819, 100782, 'en', 'name', 'Newlife the Charity for Disabled Children'),
(124820, 100783, 'en', 'name', 'Portland State University'),
(124821, 100784, 'en', 'name', 'International Transport Forum'),
(124822, 100784, 'fr', 'name', 'Forum international des transports'),
(124823, 100785, 'en', 'name', 'The Federal Polytechnic Offa'),
(124824, 100786, 'fr', 'name', 'Institut de CancƩrologie de Lorraine'),
(124825, 100787, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de CĆ©ramique Industrielle'),
(124826, 100788, 'fr', 'name', 'DĆ©partement Ɖcologie des ForĆŖts, Prairies et Milieux Aquatiques'),
(124827, 100789, 'en', 'name', 'EPAM Systems, EPAM Systems (United States)'),
(124828, 100790, 'en', 'name', 'Royal British Columbia Museum'),
(124829, 100791, 'en', 'name', 'Dambai College of Education'),
(124830, 100792, 'fr', 'name', 'FƩdƩration Hospitalo-Universitaire, Paris Center for Microbiome Medicine'),
(124831, 100793, 'fr', 'name', 'Institut supƩrieur des arts de Toulouse'),
(124832, 100794, 'en', 'name', 'Bahçeşehir University'),
(124833, 100794, 'tr', 'name', 'Bahçeşehir Üniversitesi'),
(124834, 100795, 'en', 'name', 'River Lane Research'),
(124835, 100796, 'fr', 'name', 'Laboratoire de MƩdiƩvistique Occidentale de Paris'),
(124836, 100797, 'en', 'name', 'Columbia-Greene Community College'),
(124837, 100798, 'en', 'name', 'National Institute for Nuclear Physics, Padova Division'),
(124838, 100798, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Padova'),
(124839, 100799, 'en', 'name', 'York St John University'),
(124840, 100800, 'de', 'name', 'Fraunhofer-Institut für Materialfluss und Logistik'),
(124841, 100800, 'en', 'name', 'Fraunhofer Institute for Material Flow and Logistics'),
(124842, 100801, 'de', 'name', 'Institut für soziale Gegenwartsfragen, Stuttgart, e.V.'),
(124843, 100802, 'en', 'name', 'Oceanographic Observatory in Banyuls-sur-Mer'),
(124844, 100802, 'fr', 'name', 'Observatoire Oceanologique de Banyuls sur Mer'),
(124845, 100803, 'en', 'name', 'Hospital Pharmacy of North Norway Trust'),
(124846, 100803, 'no', 'name', 'Sykehusapotek Nord HF'),
(124847, 100804, 'de', 'name', 'Klinik und Poliklinik für Hautkrankheiten'),
(124848, 100805, 'pt', 'name', 'Centro UniversitƔrio EstƔcio de Santa Catarina'),
(124849, 100806, 'en', 'name', 'Centre for Nanoscience and Nanotechnology'),
(124850, 100806, 'fr', 'name', 'Centre de Nanosciences et de Nanotechnologies'),
(124851, 100807, 'en', 'name', 'New York State School of Industrial and Labor Relations'),
(124852, 100808, 'es', 'name', 'Universidad de Ciego de Ávila, Universidad de Ciego de Ávila "MÔximo Gómez BÔez"'),
(124853, 100809, 'en', 'name', 'Information Society Development Institute'),
(124854, 100810, 'en', 'name', 'Alicante Institute for Health and Biomedical Research'),
(124855, 100810, 'es', 'name', 'Instituto de investigación sanitaria y biomédica de Alicante'),
(124856, 100811, 'en', 'name', 'NUWC Newport Division'),
(124857, 100812, 'en', 'name', 'Amerika Samoa Humanities Council'),
(124858, 100813, 'fr', 'name', 'Haute Ɖcole Albert Jacquard'),
(124859, 100814, 'en', 'name', 'NORDUnet'),
(124860, 100815, 'en', 'name', 'Royal Academy of Fine Arts of San Fernando'),
(124861, 100815, 'es', 'name', 'Real Academia de Bellas Artes de San Fernando'),
(124862, 100816, 'fr', 'name', 'Montpellier Recherche en Economie'),
(124863, 100817, 'en', 'name', 'Brain Tech Laboratory'),
(124864, 100818, 'en', 'name', 'Fujian Provincial Department of Ecology and Environment'),
(124865, 100818, 'zh', 'name', 'ē¦å»ŗēœē”Ÿę€ēŽÆå¢ƒåŽ…'),
(124866, 100819, 'en', 'name', 'Nicolaus Copernicus University'),
(124867, 100819, 'pl', 'name', 'Uniwersytet Mikołaja Kopernika w Toruniu'),
(124868, 100820, 'en', 'name', 'Monolithic Power Systems, Monolithic Power Systems (United States)'),
(124869, 100821, 'en', 'name', 'Naval Facilities Engineering and Expeditionary Warfare Center'),
(124870, 100822, 'en', 'name', 'French Defence Health Service'),
(124871, 100822, 'fr', 'name', 'Service de SantƩ des ArmƩes'),
(124872, 100823, 'de', 'name', 'PƤdagogische Hochschule Wien'),
(124873, 100823, 'en', 'name', 'University of Education Vienna'),
(124874, 100824, 'en', 'name', 'Inner Mongolia University'),
(124875, 100824, 'zh', 'name', 'å†…č’™å¤å¤§å­¦'),
(124876, 100825, 'en', 'name', 'Tübingen AI Center'),
(124877, 100826, 'fr', 'name', 'Temps, espaces, langages, Europe mƩridionale, MƩditerranƩe'),
(124878, 100827, 'es', 'name', 'Instituto Colombiano del Petróleo y Energías de la Transición - Icpet'),
(124879, 100828, 'de', 'name', 'Max-Planck-Institute für Intelligente Systeme & Festkörperforschung Bibliothek'),
(124880, 100828, 'en', 'name', 'Max Planck Institutes for Intelligent Systems & Solid State Research Library'),
(124881, 100829, 'fr', 'name', 'MƩdecine Cardiovasculaire Translationnelle'),
(124882, 100830, 'af', 'name', 'Noordwes-Universiteit'),
(124883, 100830, 'en', 'name', 'North-West University'),
(124884, 100831, 'fr', 'name', 'CEA Paris-Saclay - Etablissement de Fontenay-aux-roses'),
(124885, 100832, 'en', 'name', 'Southern Oregon University'),
(124886, 100833, 'en', 'name', 'Department for Transport'),
(124887, 100834, 'fr', 'name', 'Institut de Recherche sur les Composants logiciels et matƩriels pour l''Information et la Communication AvancƩe'),
(124888, 100835, 'en', 'name', 'Digital Research Alliance of Canada'),
(124889, 100835, 'fr', 'name', 'L’Alliance de recherche numĆ©rique du Canada'),
(124890, 100836, 'en', 'name', 'Centre of materials and civil engineering for sustainability'),
(124891, 100836, 'pt', 'name', 'Centro de Materiais e Tecnologias Construtivas'),
(124892, 100837, 'fr', 'name', 'DƩpartement de Chimie MolƩculaire'),
(124893, 100838, 'fr', 'name', 'Laboratoire d’Économie et de Gestion de l''Ouest'),
(124894, 100839, 'en', 'name', 'WWF Hungary'),
(124895, 100839, 'hu', 'name', 'WWF MagyarorszƔg'),
(124896, 100840, 'de', 'name', 'Exzellenzcluster Origins'),
(124897, 100840, 'en', 'name', 'Excellence Cluster Origins'),
(124898, 100841, 'en', 'name', 'Microsoft Research New England, Microsoft Research New England (United States)'),
(124899, 100842, 'en', 'name', 'Yeovil College'),
(124900, 100843, 'en', 'name', 'University of Belgrade – Faculty of Organizational Sciences'),
(124901, 100843, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet organizacionih nauka, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ организационих наука'),
(124902, 100844, 'en', 'name', 'Toxalim Research Centre in Food Toxicology'),
(124903, 100845, 'en', 'name', 'Dharma Gate Buddhist College'),
(124904, 100845, 'hu', 'name', 'A Tan Kapuja Buddhista Főiskola'),
(124905, 100846, 'cs', 'name', 'Český ĆŗÅ™ad zeměměřický a katastrĆ”lnĆ­'),
(124906, 100846, 'en', 'name', 'Czech Office for Surveying, Mapping and Cadastre'),
(124907, 100847, 'en', 'name', 'Research Centre on Animal Cognition'),
(124908, 100847, 'fr', 'name', 'Centre de Recherches sur la Cognition Animale'),
(124909, 100848, 'en', 'name', 'Tokyo Institute of Technology'),
(124910, 100848, 'ja', 'name', 'ę±äŗ¬å·„ę„­å¤§å­¦'),
(124911, 100849, 'en', 'name', 'ForestGEO'),
(124912, 100850, 'en', 'name', 'University Hospital MĆŗtua de Terrassa'),
(124913, 100851, 'en', 'name', 'Center for Research in Transplantation and Translational Immunology'),
(124914, 100851, 'fr', 'name', 'Centre de Recherche en Transplantation et Immunologie'),
(124915, 100852, 'en', 'name', 'Sami Shamoon College of Engineering'),
(124916, 100852, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ להנדהה ×¢"ש ×”Öø×žÖ“×™ שַמְעוּן'),
(124917, 100853, 'fr', 'name', 'Ɖvolution, GĆ©nomes, Comportement, Ɖcologie'),
(124918, 100854, 'en', 'name', 'Waste Management, Waste Management (United States)'),
(124919, 100855, 'fr', 'name', 'BibliothĆØque interuniversitaire Cujas'),
(124920, 100856, 'fr', 'name', 'DƩpartement MathƩmatiques et Informatique AppliquƩes'),
(124921, 100857, 'no_lang_code', 'name', 'Aeroflex'),
(124922, 100858, 'en', 'name', 'Estonian Academy of Security Sciences'),
(124923, 100858, 'et', 'name', 'Sisekaitseakadeemia'),
(124924, 100859, 'fr', 'name', 'Laboratoire MƩditerranƩen de PrƩhistoire Europe Afrique'),
(124925, 100860, 'en', 'name', 'National University Hospital of Iceland'),
(124926, 100860, 'is', 'name', 'LandspĆ­tali'),
(124927, 100861, 'en', 'name', 'Finger Lakes Community College'),
(124928, 100862, 'en', 'name', 'Charter Communications, Charter Communications (United States)'),
(124929, 100863, 'en', 'name', 'Mahatma Gandhi Institute of Technology'),
(124930, 100864, 'en', 'name', 'Institute of the Lithuanian Language');
INSERT INTO `ror_settings` VALUES
(124931, 100864, 'lt', 'name', 'Lietuvių Kalbos Institutas'),
(124932, 100865, 'en', 'name', 'Montpellier Interdisciplinary center on Sustainable Agri-food systems: social and nutritional sciences'),
(124933, 100866, 'en', 'name', 'IFP School'),
(124934, 100866, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure du PĆ©trole et des Moteurs'),
(124935, 100867, 'en', 'name', 'Fuzhou University'),
(124936, 100867, 'zh', 'name', 'ē¦å·žå¤§å­¦'),
(124937, 100868, 'en', 'name', 'Solihull College'),
(124938, 100869, 'no_lang_code', 'name', 'Telsy, Telsy (Italy)'),
(124939, 100870, 'en', 'name', 'Social Sciences, Agriculture and Food, Rural Development and Environment.'),
(124940, 100870, 'fr', 'name', 'DƩpartement Sciences sociales, agriculture et alimentation, espace et environnement'),
(124941, 100871, 'en', 'name', 'Center for the Study of the Biosphere from Space'),
(124942, 100871, 'fr', 'name', 'Centre d''Ɖtudes Spatiales de la BiosphĆØre'),
(124943, 100872, 'en', 'name', 'University of JaƩn'),
(124944, 100872, 'es', 'name', 'Universidad de JaƩn'),
(124945, 100873, 'en', 'name', 'DTE Energy, DTE Energy (United States)'),
(124946, 100874, 'en', 'name', 'University of Illinois at Springfield'),
(124947, 100874, 'fr', 'name', 'UniversitƩ de l''illinois Ơ Springfield'),
(124948, 100875, 'fr', 'name', 'Laboratoire de Radiopharmaceutiques Biocliniques'),
(124949, 100876, 'fr', 'name', 'Laboratoire Interuniversitaire ExpƩrience, Ressources culturelles, Education'),
(124950, 100877, 'no_lang_code', 'name', 'Anduril Industries, Anduril Industries (United States)'),
(124951, 100878, 'en', 'name', 'Lehigh University'),
(124952, 100878, 'es', 'name', 'Universidad de Lehigh'),
(124953, 100879, 'en', 'name', 'NSWC Indian Head'),
(124954, 100880, 'en', 'name', 'Bath & Body Works, Bath & Body Works (United States)'),
(124955, 100881, 'en', 'name', 'Fukushima Medical University'),
(124956, 100881, 'ja', 'name', 'ē¦å³¶ēœŒē«‹åŒ»ē§‘å¤§å­¦'),
(124957, 100882, 'no_lang_code', 'name', 'Telefónica (Spain)'),
(124958, 100883, 'en', 'name', 'Bijagual Ecological Reserve'),
(124959, 100884, 'fr', 'name', 'Chirurgie et extrƩmitƩ cƩphalique, caractƩrisation morphologique et fonctionnelle'),
(124960, 100885, 'en', 'name', 'Health Technologies'),
(124961, 100885, 'fr', 'name', 'Technologies pour la SantƩ'),
(124962, 100886, 'en', 'name', 'Kateb University'),
(124963, 100886, 'fa', 'name', 'دانؓگاه کاتب'),
(124964, 100887, 'en', 'name', 'French Anti-Doping Agency'),
(124965, 100887, 'fr', 'name', 'Agence franƧaise de lutte contre le dopage'),
(124966, 100888, 'de', 'name', 'Hochschule München University of Applied Sciences'),
(124967, 100888, 'en', 'name', 'Munich University of Applied Sciences'),
(124968, 100889, 'de', 'name', 'Robert Bosch Stiftung'),
(124969, 100889, 'en', 'name', 'Robert Bosch Foundation'),
(124970, 100890, 'en', 'name', 'Rhode Island Council for the Humanities'),
(124971, 100891, 'es', 'name', 'Universidad Tecnologica de la Huasteca Hidalguense'),
(124972, 100892, 'en', 'name', 'Tianjin Vocational Institute'),
(124973, 100892, 'zh', 'name', '天擄职业大学'),
(124974, 100893, 'en', 'name', 'University of Belgrade - Faculty of Special Education and Rehabilitation'),
(124975, 100893, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet za specijalnu edukaciju i rehabilitaciju, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ за ŃŠæŠµŃ†ŠøŃ˜Š°Š»Š½Ńƒ ŠµŠ“ŃƒŠŗŠ°Ń†ŠøŃ˜Ńƒ Šø Ń€ŠµŃ…Š°Š±ŠøŠ»ŠøŃ‚Š°Ń†ŠøŃ˜Ńƒ'),
(124976, 100894, 'fr', 'name', 'Institut de Sciences des MatƩriaux de Mulhouse'),
(124977, 100895, 'en', 'name', 'Laboratory for the Bioengineering of Tissues'),
(124978, 100896, 'en', 'name', 'Kakatiya University'),
(124979, 100896, 'hi', 'name', 'ą¤•ą¤¾ą¤•ą¤¤ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(124980, 100896, 'te', 'name', 'కాకతీయ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(124981, 100897, 'en', 'name', 'University at Albany, State University of New York'),
(124982, 100897, 'fr', 'name', 'UniversitĆ© d''Ɖtat de new york Ć  albany'),
(124983, 100898, 'en', 'name', 'Algoma University'),
(124984, 100899, 'en', 'name', 'National Foundation of Political Science'),
(124985, 100899, 'fr', 'name', 'Fondation Nationale des Sciences Politiques'),
(124986, 100900, 'fr', 'name', 'Observatoire des sciences de l''Univers Paris-Centre Ecce Terra'),
(124987, 100901, 'en', 'name', 'University of Rhode Island'),
(124988, 100901, 'es', 'name', 'Universidad de Rhode Island'),
(124989, 100901, 'fr', 'name', 'UniversitƩ de rhode island'),
(124990, 100902, 'id', 'name', 'Universitas Gorontalo'),
(124991, 100903, 'en', 'name', 'Energi Simulation'),
(124992, 100904, 'no_lang_code', 'name', 'General Electric (United States)'),
(124993, 100905, 'fr', 'name', 'Laboratoire Physiopathologie et GƩnƩtique du Neurone et du Muscle'),
(124994, 100906, 'no_lang_code', 'name', 'medica mondiale e.V.'),
(124995, 100907, 'en', 'name', 'Fudan University'),
(124996, 100907, 'zh', 'name', 'å¤ę—¦å¤§å­¦'),
(124997, 100908, 'fr', 'name', 'Institut d''Ɖlectronique et des Technologies du numĆ©Rique'),
(124998, 100909, 'fr', 'name', 'Centre du Droit de l''Entreprise'),
(124999, 100910, 'en', 'name', 'International School of Management Slovakia'),
(125000, 100910, 'sk', 'name', 'VysokÔ Ŕkola medzinÔrodného podnikania ISM Slovakia v PreŔove'),
(125001, 100911, 'en', 'name', 'Antalya Bilim University'),
(125002, 100911, 'tr', 'name', 'Antalya Bilim Üniversitesi'),
(125003, 100912, 'de', 'name', 'Fonds zur Fƶrderung der wissenschaftlichen Forschung'),
(125004, 100912, 'en', 'name', 'FWF Austrian Science Fund'),
(125005, 100913, 'el', 'name', 'Ī•ĻĪµĻ…Ī½Ī·Ļ„Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ Ī’Ī¹ĪæĻŠĪ±Ļ„ĻĪ¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ ΑλέξανΓρος Φλέμιγκ'),
(125006, 100913, 'en', 'name', 'Alexander Fleming Biomedical Sciences Research Center'),
(125007, 100914, 'en', 'name', 'Capital Medical University'),
(125008, 100914, 'zh', 'name', 'é¦–éƒ½åŒ»ē§‘å¤§å­¦'),
(125009, 100915, 'fr', 'name', 'Ɖcole Nationale des Chartes'),
(125010, 100916, 'en', 'name', 'Aging and Chronic Diseases Epidemiological and Public Health Approaches'),
(125011, 100916, 'fr', 'name', 'Vieillissement et Maladies Chroniques. Approches EpidƩmiologiques et de santƩ publique'),
(125012, 100917, 'en', 'name', 'AERIS/ICARE Data and Services Center'),
(125013, 100918, 'en', 'name', 'Society for the Study of Human Development'),
(125014, 100919, 'no_lang_code', 'name', 'Johnson Matthey (United Kingdom)'),
(125015, 100920, 'en', 'name', 'Altınbaş University'),
(125016, 100920, 'tr', 'name', 'Altınbaş Üniversitesi'),
(125017, 100921, 'de', 'name', 'Universitätsspital Zürich'),
(125018, 100921, 'en', 'name', 'University Hospital of Zurich'),
(125019, 100921, 'fr', 'name', 'HƓpital universitaire de Zurich'),
(125020, 100922, 'es', 'name', 'Fundación Naturaleza El Salvador'),
(125021, 100923, 'en', 'name', 'Hirshhorn Museum and Sculpture Garden'),
(125022, 100924, 'en', 'name', 'Stevenson University'),
(125023, 100925, 'da', 'name', 'Roskilde Universitet'),
(125024, 100925, 'en', 'name', 'Roskilde University'),
(125025, 100926, 'en', 'name', 'Istanbul 29 Mayis University'),
(125026, 100927, 'en', 'name', 'Dalian Naval Academy'),
(125027, 100927, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ęµ·å†›å¤§čæžčˆ°č‰‡å­¦é™¢'),
(125028, 100928, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الطائف'),
(125029, 100928, 'en', 'name', 'Taif University'),
(125030, 100929, 'en', 'name', 'Falkland Islands Fisheries Department'),
(125031, 100930, 'fr', 'name', 'Centre d’Études et de Recherche en Histoire culturelle, Laboratoire CERHIC'),
(125032, 100931, 'en', 'name', 'Anahuac Mayab University'),
(125033, 100931, 'es', 'name', 'Universidad AnƔhuac Mayab'),
(125034, 100932, 'en', 'name', 'University Cancer Institute Toulouse Oncopole'),
(125035, 100932, 'fr', 'name', 'Institut universitaire du cancer de Toulouse Oncopole'),
(125036, 100933, 'en', 'name', 'Grand Canyon University'),
(125037, 100934, 'en', 'name', 'Institute for Research and Debate on Governance'),
(125038, 100934, 'fr', 'name', 'Institut de Recherche et DƩbat sur la Gouvernance'),
(125039, 100935, 'en', 'name', 'Materials and Physical Engineering Laboratory'),
(125040, 100935, 'fr', 'name', 'Laboratoire des MatƩriaux et du GƩnie Physique'),
(125041, 100936, 'fr', 'name', 'Laboratoire de Physico-Chimie de l''AtmosphĆØre, Laboratoire de Physico-Chimie de l’AtmosphĆØre'),
(125042, 100937, 'fr', 'name', 'Laboratoire de Psychologie et NeuroCognition'),
(125043, 100938, 'pt', 'name', 'Universidade Lusíada de Vila Nova de Famalicão'),
(125044, 100939, 'en', 'name', 'Lyceum of the Philippines University – Batangas'),
(125045, 100940, 'en', 'name', 'Stanford Cancer Institute'),
(125046, 100941, 'es', 'name', 'Centro Ramón Piñeiro para a Investigación en Humanidades'),
(125047, 100942, 'fr', 'name', 'Recherches Translationnelles sur le VIH et les Maladies Infectieuses'),
(125048, 100943, 'no_lang_code', 'name', 'IMRA America, IMRA America (United States), IMRA America, Inc.'),
(125049, 100944, 'no_lang_code', 'name', 'Generac, Generac (United States)'),
(125050, 100945, 'en', 'name', 'Toulouse Mathematics Institute'),
(125051, 100945, 'fr', 'name', 'Institut de MathƩmatiques de Toulouse'),
(125052, 100946, 'fr', 'name', 'Bordeaux Sciences Ɖconomiques'),
(125053, 100947, 'en', 'name', 'Rutgers New Jersey Medical School'),
(125054, 100948, 'fr', 'name', 'Trajectoires dƩveloppementales & psychiatrie'),
(125055, 100949, 'pt', 'name', 'Tribunal de Contas'),
(125056, 100950, 'en', 'name', 'Boston Consulting Group, Boston Consulting Group (United States)'),
(125057, 100951, 'fr', 'name', 'Institut de philosophie de Grenoble'),
(125058, 100952, 'en', 'name', 'Bia Lamplighter College of Education'),
(125059, 100953, 'en', 'name', 'Claremont Graduate University'),
(125060, 100953, 'fr', 'name', 'UniversitƩ de claremont'),
(125061, 100954, 'fr', 'name', 'Architecture Urbanisme SociƩtƩ : Savoirs, Enseignement, Recherche'),
(125062, 100955, 'cs', 'name', 'Ú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'),
(125063, 100955, 'en', 'name', 'Czech Academy of Sciences, Institute of Animal Physiology and Genetics'),
(125064, 100956, 'fr', 'name', 'Infections Virales et Pathologie ComparƩe'),
(125065, 100957, 'en', 'name', 'Okinawa International University'),
(125066, 100957, 'ja', 'name', 'ę²–ēø„å›½éš›å¤§å­¦'),
(125067, 100958, 'fr', 'name', 'Biologie, Anthropologie, BiomƩtrie, EpigƩnƩtique, LignƩes : De la diversitƩ des populations Ơ l''individu, de l''identification Ơ l''identitƩ'),
(125068, 100959, 'en', 'name', 'Data Documentation Initiative Alliance'),
(125069, 100960, 'en', 'name', 'Crystal Bridges Museum of American Art'),
(125070, 100961, 'en', 'name', 'Minnesota Humanities Center'),
(125071, 100962, 'en', 'name', 'South Dakota State University'),
(125072, 100962, 'es', 'name', 'Universidad Estatal de Dakota del Sur'),
(125073, 100962, 'fr', 'name', 'UniversitĆ© d''Ɖtat du Dakota du Sud'),
(125074, 100963, 'en', 'name', 'Lullaby Trust'),
(125075, 100964, 'en', 'name', 'Kastamonu University'),
(125076, 100964, 'tr', 'name', 'Kastamonu Üniversitesi'),
(125077, 100965, 'en', 'name', 'CMR University'),
(125078, 100965, 'kn', 'name', 'ಸಿ ą²Žą²®ą³ ą²†ą²°ą³ ą²µą²æą²¶ą³ą²µą²µą²æą²§ą³ą²Æą²¾ą²²ą²Æ'),
(125079, 100966, 'en', 'name', 'Irradiated Solids Laboratory'),
(125080, 100966, 'fr', 'name', 'Laboratoire des Solides IrradiƩs'),
(125081, 100967, 'en', 'name', 'Netherlands Institute for Health Services Research'),
(125082, 100967, 'nl', 'name', 'Nederlands Instituut voor Onderzoek van de Gezondheidszorg'),
(125083, 100968, 'fr', 'name', 'Association France Alzheimer'),
(125084, 100969, 'pt', 'name', 'Laboratório de Robótica e Sistemas de Engenharia'),
(125085, 100970, 'en', 'name', 'Humanities Council of Washington'),
(125086, 100971, 'en', 'name', 'Bridgewater College'),
(125087, 100972, 'en', 'name', 'Department for the Economy'),
(125088, 100973, 'en', 'name', 'Coastal Carolina University'),
(125089, 100974, 'en', 'name', 'French Muscular Dystrophy Association'),
(125090, 100974, 'fr', 'name', 'Association Francaise contre les Myopathies'),
(125091, 100975, 'en', 'name', 'Idaho State University'),
(125092, 100975, 'es', 'name', 'Universidad Estatal de Idaho'),
(125093, 100975, 'fr', 'name', 'UniversitĆ© d''Ɖtat d''idaho'),
(125094, 100976, 'cy', 'name', 'Prifysgol Aberdeen'),
(125095, 100976, 'en', 'name', 'University of Aberdeen'),
(125096, 100977, 'en', 'name', 'Brite Divinity School'),
(125097, 100978, 'en', 'name', 'Loughborough College'),
(125098, 100979, 'en', 'name', 'Brooklyn Children’s Museum'),
(125099, 100980, 'en', 'name', 'University of Northern Colorado'),
(125100, 100981, 'cs', 'name', 'StƔtnƭ oblastnƭ archiv v Praze'),
(125101, 100981, 'en', 'name', 'State Regional Archives in Prague'),
(125102, 100982, 'fr', 'name', 'Centre RĆ©gional d’Innovation et de Transferts Technologiques des Industries du Bois'),
(125103, 100983, 'no_lang_code', 'name', 'Glycomine, Inc., Glycomine, Inc. (United States)'),
(125104, 100984, 'en', 'name', 'Nevada Humanities'),
(125105, 100985, 'en', 'name', 'Korea National Open University'),
(125106, 100985, 'ko', 'name', 'ķ•œźµ­ė°©ģ†”ķ†µģ‹ ėŒ€ķ•™źµ'),
(125107, 100986, 'cs', 'name', 'PanevropskĆ” univerzita, a.s.'),
(125108, 100986, 'en', 'name', 'Pan-European University'),
(125109, 100987, 'en', 'name', 'Medical University of Lublin'),
(125110, 100987, 'pl', 'name', 'Uniwersytet Medyczny w Lublinie'),
(125111, 100988, 'hu', 'name', 'HUN-REN Szegedi Biológiai Kutatóközpont, Magyar TudomÔnyos Akadémia Szegedi Biológiai KutatóközpontjÔnak'),
(125112, 100989, 'es', 'name', 'Escuela Nacional de AntropologĆ­a e Historia'),
(125113, 100990, 'en', 'name', 'North Hertfordshire College'),
(125114, 100991, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© طنطا'),
(125115, 100991, 'en', 'name', 'Tanta University'),
(125116, 100991, 'fr', 'name', 'UniversitƩ de Tanta'),
(125117, 100992, 'pt', 'name', 'Escola Superior de Educação de Fafe'),
(125118, 100993, 'en', 'name', 'FrƩdƩric Joliot Institute for Life Sciences'),
(125119, 100993, 'fr', 'name', 'Institut des Sciences du Vivant FrƩdƩric Joliot'),
(125120, 100994, 'fr', 'name', 'Laboratoire de Chimie Physique'),
(125121, 100995, 'en', 'name', 'Rhodes University'),
(125122, 100996, 'en', 'name', 'LuleƄ University of Technology'),
(125123, 100996, 'fi', 'name', 'Luulajan teknillinen yliopisto'),
(125124, 100996, 'sv', 'name', 'LuleƄ tekniska universitet'),
(125125, 100997, 'fr', 'name', 'HƓpital EuropƩen Georges-Pompidou'),
(125126, 100998, 'no_lang_code', 'name', 'Nippon Steel, Nippon Steel (Japan)'),
(125127, 100999, 'fr', 'name', 'Centre de Recherche "Individus, Epreuves, SociƩtƩs"'),
(125128, 101000, 'fr', 'name', 'Centre de Recherche en Sciences et Technologies de l''Information et de la Communication'),
(125129, 101001, 'en', 'name', 'Laboratory of Medical Genetics'),
(125130, 101001, 'fr', 'name', 'Laboratoire de GƩnƩtique MƩdicale'),
(125131, 101002, 'ko', 'name', 'ķ•œķ™”ź·øė£¹'),
(125132, 101002, 'no_lang_code', 'name', 'Hanwha Group (South Korea)'),
(125133, 101003, 'en', 'name', 'Pan-European University'),
(125134, 101003, 'sk', 'name', 'Paneurópska VysokÔ Ŕkola'),
(125135, 101004, 'en', 'name', 'Shaanxi Normal University'),
(125136, 101004, 'zh', 'name', 'é™•č„æåøˆčŒƒå¤§å­¦'),
(125137, 101005, 'en', 'name', 'Goddard Space Flight Center'),
(125138, 101005, 'es', 'name', 'Centro de Vuelo Espacial Goddard'),
(125139, 101006, 'en', 'name', 'Playa Ancha University of Educational Sciences'),
(125140, 101006, 'es', 'name', 'Universidad de Playa Ancha de Ciencias de la Educación'),
(125141, 101007, 'en', 'name', 'Government of France'),
(125142, 101007, 'fr', 'name', 'Gouvernement de la RƩpublique franƧaise'),
(125143, 101008, 'en', 'name', 'University of Extremadura'),
(125144, 101008, 'es', 'name', 'Universidad de Extremadura'),
(125145, 101009, 'en', 'name', 'SUNY Delhi'),
(125146, 101010, 'en', 'name', 'Education and Research Library of the Pilsen Region'),
(125147, 101011, 'en', 'name', 'Preston''s College'),
(125148, 101012, 'en', 'name', 'National Engineering School of Saint-Ɖtienne'),
(125149, 101012, 'fr', 'name', 'Ɖcole Nationale d''IngĆ©nieurs de Saint-Ɖtienne'),
(125150, 101013, 'en', 'name', 'Ulsan National Institute of Science and Technology'),
(125151, 101013, 'ko', 'name', 'ģšøģ‚°ź³¼ķ•™źø°ģˆ ėŒ€ķ•™źµ'),
(125152, 101014, 'en', 'name', 'Morgan State University'),
(125153, 101014, 'es', 'name', 'Universidad Estatal de Morgan'),
(125154, 101014, 'fr', 'name', 'UniversitĆ© d''Ɖtat morgan'),
(125155, 101015, 'fr', 'name', 'Laboratoire d''AƩrologie'),
(125156, 101016, 'en', 'name', 'Cluster in Biomedicine'),
(125157, 101017, 'en', 'name', 'National Postal Museum'),
(125158, 101018, 'la', 'name', 'Collegium Intermarium'),
(125159, 101018, 'pl', 'name', 'Uczelnia Collegium Intermarium'),
(125160, 101019, 'en', 'name', 'Higher Institute for Electronics and Digital Training'),
(125161, 101019, 'fr', 'name', 'Institut SupĆ©rieur de l''Ɖlectronique et du NumĆ©rique'),
(125162, 101020, 'en', 'name', 'Royal College of Music in Stockholm'),
(125163, 101020, 'sv', 'name', 'Kungliga Musikhƶgskolan i Stockholm'),
(125164, 101021, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© طبرق'),
(125165, 101021, 'en', 'name', 'Tobruk University'),
(125166, 101022, 'fr', 'name', 'Matrice Extracellulaire et Dynamique Cellulaire MEDyC'),
(125167, 101023, 'no_lang_code', 'name', 'Invesco, Invesco (United States)'),
(125168, 101024, 'en', 'name', 'University of Toulouse'),
(125169, 101024, 'fr', 'name', 'UniversitƩ de Toulouse'),
(125170, 101024, 'oc', 'name', 'Universitat de Tolosa'),
(125171, 101025, 'as', 'name', 'ą§°ą¦¾ą¦œą§€ą§± ą¦—ą¦¾ą¦Øą§ą¦§ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(125172, 101025, 'en', 'name', 'Rajiv Gandhi University'),
(125173, 101025, 'ne', 'name', 'ą¤°ą¤¾ą¤œą„€ą¤µ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(125174, 101026, 'en', 'name', 'Nepal Academy of Tourism and Hotel Management'),
(125175, 101027, 'en', 'name', 'Dundalk Institute of Technology'),
(125176, 101027, 'ga', 'name', 'InstitiĆŗid TeicneolaĆ­ochta DhĆŗn Dealgan'),
(125177, 101028, 'en', 'name', 'Mines Paris, PSL University, Centre for Robotics (CAOR)'),
(125178, 101028, 'fr', 'name', 'Centre de Robotique, Mines Paris, UniversitƩ PSL, Centre de Robotique (CAOR)'),
(125179, 101029, 'pt', 'name', 'Polícia de Segurança Pública'),
(125180, 101030, 'fr', 'name', 'Centre d''Ʃtudes et de recherche en droit administratif, constitutionnel, financier et fiscal'),
(125181, 101031, 'en', 'name', 'University of Fort Hare'),
(125182, 101032, 'en', 'name', 'St. Louis College of Education'),
(125183, 101032, 'ha', 'name', 'Kwalejin Ilimi ta St. Louis'),
(125184, 101033, 'en', 'name', 'Erasmus MC'),
(125185, 101034, 'fr', 'name', 'Centre de Biologie Structurale'),
(125186, 101035, 'de', 'name', 'GESIS - Leibniz-Institut für Sozialwissenschaften'),
(125187, 101035, 'en', 'name', 'GESIS - Leibniz-Institute for the Social Sciences'),
(125188, 101036, 'en', 'name', 'Immunology and New Concepts in Immunotherapy'),
(125189, 101036, 'fr', 'name', 'Immunologie et Nouveaux Concepts en ImmunothƩrapie'),
(125190, 101037, 'tr', 'name', 'Bornova Türkan Ɩzilhan Devlet Hastanesi'),
(125191, 101038, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© فرع ŲµŲ­Ų§Ų±'),
(125192, 101038, 'en', 'name', 'University of Technology and Applied Sciences-Suhar'),
(125193, 101039, 'en', 'name', 'Hebei University of Technology'),
(125194, 101039, 'zh', 'name', 'ę²³åŒ—å·„äøšå¤§å­¦'),
(125195, 101040, 'en', 'name', 'Sheffield Teaching Hospitals NHS Foundation Trust'),
(125196, 101041, 'pt', 'name', 'Instituto Mediterrâneo para a Agricultura Ambiente e Desenvolvimento'),
(125197, 101042, 'fr', 'name', 'Laboratoire Analyse, GƩomƩtrie et Applications'),
(125198, 101043, 'en', 'name', 'Institute of Systems & Synthetic Biology'),
(125199, 101043, 'fr', 'name', 'Institut de Biologie systƩmique et synthƩtique'),
(125200, 101044, 'fr', 'name', 'ArchƩologie des AmƩriques'),
(125201, 101045, 'de', 'name', 'Deutsche Stiftung für Engagement und Ehrenamt'),
(125202, 101046, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization Afghanistan'),
(125203, 101047, 'en', 'name', 'Huntington Bancshares, Huntington Bancshares (United States)'),
(125204, 101048, 'fr', 'name', 'COMETE - MobilitƩs : Vieillissement, pathologie, santƩ'),
(125205, 101049, 'en', 'name', 'Kazimierz Wielki University in Bydgoszcz'),
(125206, 101049, 'pl', 'name', 'Uniwersytet Kazimierza Wielkiego'),
(125207, 101050, 'en', 'name', 'New York University'),
(125208, 101050, 'es', 'name', 'Universidad de Nueva York'),
(125209, 101050, 'fr', 'name', 'UniversitƩ de New York'),
(125210, 101051, 'en', 'name', 'VID Specialized University'),
(125211, 101051, 'no', 'name', 'VID Vitenskapelige HĆøgskole'),
(125212, 101052, 'fr', 'name', 'Galaxies, Etoiles, Physique et Instrumentation'),
(125213, 101053, 'en', 'name', 'Pitzer College'),
(125214, 101054, 'en', 'name', 'Munich Institute for Astro- and Particle Physics'),
(125215, 101055, 'fr', 'name', 'UniversitƩ Sorbonne Paris Nord'),
(125216, 101056, 'en', 'name', 'Principal Financial Group, Principal Financial Group (United States)'),
(125217, 101057, 'en', 'name', 'Ahmadu Bello University'),
(125218, 101057, 'yo', 'name', 'YunifĆ”sĆ­tƬ ƀmį»Ģdù BĆ©llò'),
(125219, 101058, 'en', 'name', 'Kurukshetra University'),
(125220, 101058, 'hi', 'name', 'ą¤•ą„ą¤°ą„ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(125221, 101058, 'pa', 'name', 'ਕੁਰੂਕਸ਼ੇਤਰ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(125222, 101059, 'fr', 'name', 'Structure et Dynamique des Langues'),
(125223, 101060, 'as', 'name', 'ą¦•ą¦Ÿą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(125224, 101060, 'en', 'name', 'Cotton University'),
(125225, 101061, 'it', 'name', 'Ospedale di Macerata'),
(125226, 101062, 'en', 'name', 'Nevşehir Hacı Bektaş Veli University'),
(125227, 101062, 'tr', 'name', 'Nevşehir Üniversitesi'),
(125228, 101063, 'en', 'name', 'Mid Sweden University'),
(125229, 101063, 'fi', 'name', 'Keski-Ruotsin yliopisto'),
(125230, 101063, 'sv', 'name', 'Mittuniversitetet'),
(125231, 101064, 'en', 'name', 'National Heritage Institute'),
(125232, 101065, 'es', 'name', 'Instituto Tecnológico Superior de Calkiní'),
(125233, 101066, 'fr', 'name', 'Institut de Neurosciences des SystĆØmes'),
(125234, 101067, 'en', 'name', 'Rocky Mountain Advanced Computing Consortium'),
(125235, 101068, 'en', 'name', 'Royal Irish Academy'),
(125236, 101068, 'ga', 'name', 'Acadamh Rƭoga na hƉireann'),
(125237, 101069, 'en', 'name', 'California State University, Bakersfield'),
(125238, 101069, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  bakersfield'),
(125239, 101070, 'fr', 'name', 'DƩveloppement Embryonnaire, FertilitƩ et Environnement'),
(125240, 101071, 'en', 'name', 'Grassroot Soccer, Inc.'),
(125241, 101072, 'en', 'name', 'Shantou University'),
(125242, 101072, 'zh', 'name', '汕夓大学'),
(125243, 101073, 'fr', 'name', 'Laboratoire EcoSystèmes et Sociétés En Montagne'),
(125244, 101074, 'en', 'name', 'Basque Center on Cognition, Brain and Language'),
(125245, 101075, 'en', 'name', 'Cayuga Community College'),
(125246, 101076, 'de', 'name', 'Deutsche Physikalische Gesellschaft e.V.'),
(125247, 101076, 'en', 'name', 'German Physical Society'),
(125248, 101077, 'en', 'name', 'SPPIN - Saints-PĆØres Paris Institute for Neurosciences'),
(125249, 101078, 'es', 'name', 'Editorial Mar Caribe'),
(125250, 101079, 'cs', 'name', 'Nemocnice PardubickƩho Kraje'),
(125251, 101080, 'fr', 'name', 'Institut de Neurosciences Cognitives et IntĆ©gratives d’Aquitaine'),
(125252, 101081, 'id', 'name', 'Universitas Islam Negeri Ar-Raniry, Universitas Islam Negeri Ar-Raniry Banda Aceh'),
(125253, 101082, 'fr', 'name', 'Centre de recherche sur les institutions, l''industrie et les systèmes économiques d''Amiens'),
(125254, 101083, 'fr', 'name', 'Centre de recherche droit Dauphine'),
(125255, 101084, 'en', 'name', 'Shanghai Customs College'),
(125256, 101084, 'zh', 'name', 'äøŠęµ·ęµ·å…³å­¦é™¢'),
(125257, 101085, 'fr', 'name', 'Autonomie, GƩrontologie, E-santƩ, Imagerie et SociƩtƩ'),
(125258, 101086, 'en', 'name', 'Pusan National University'),
(125259, 101086, 'ko', 'name', 'ė¶€ģ‚°ėŒ€ķ•™źµ'),
(125260, 101087, 'en', 'name', 'UCLy (Lyon Catholic University)'),
(125261, 101087, 'fr', 'name', 'UniversitƩ catholique de lyon'),
(125262, 101088, 'no_lang_code', 'name', 'Nippon Steel (Germany)'),
(125263, 101089, 'en', 'name', 'Byte Road, Byte Road (Portugal)'),
(125264, 101090, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الامام Ų§Ł„ŁƒŲ§ŲøŁ…'),
(125265, 101090, 'en', 'name', 'Imam Alkadhim University College'),
(125266, 101091, 'en', 'name', 'Yanching Institute of Technology'),
(125267, 101091, 'zh', 'name', '燕京理巄学院'),
(125268, 101092, 'en', 'name', 'Ministry of Health'),
(125269, 101092, 'ms', 'name', 'Kementerian Kesihatan'),
(125270, 101093, 'en', 'name', 'Longwood University'),
(125271, 101094, 'en', 'name', 'Adventist University of France'),
(125272, 101094, 'fr', 'name', 'Campus adventiste du salĆØve'),
(125273, 101095, 'cs', 'name', 'ČeskĆ” Společnost pro Biochemii a MolekulĆ”rnĆ­ Biologii, z. s.'),
(125274, 101095, 'en', 'name', 'Czech Society for Biochemistry and Molecular Biology'),
(125275, 101096, 'en', 'name', 'National Academy of Medicine'),
(125276, 101096, 'fr', 'name', 'AcadƩmie Nationale de MƩdecine'),
(125277, 101097, 'fr', 'name', 'Laboratoire des Sciences de l''IngƩnieur pour l''Environnement'),
(125278, 101098, 'da', 'name', 'De Nationale Geologiske UndersĆøgelser for Danmark og GrĆønland'),
(125279, 101098, 'en', 'name', 'Geological Survey of Denmark and Greenland'),
(125280, 101099, 'en', 'name', 'Genome Integrity, RNA and Cancer'),
(125281, 101099, 'fr', 'name', 'IntƩgritƩ du gƩnome, ARN et cancer'),
(125282, 101100, 'en', 'name', 'Walter and Eliza Hall Institute of Medical Research'),
(125283, 101101, 'en', 'name', 'Xi''an University of Finance and Economics'),
(125284, 101101, 'zh', 'name', 'č„æå®‰č“¢ē»å­¦é™¢'),
(125285, 101102, 'cs', 'name', 'Dětský domov a MateřskĆ” Å”kola Beroun'),
(125286, 101103, 'pt', 'name', 'Jardim Zoológico'),
(125287, 101104, 'en', 'name', 'Canada Energy Regulator'),
(125288, 101104, 'fr', 'name', 'RĆ©gie de l’énergie du Canada'),
(125289, 101105, 'fr', 'name', 'Observatoire de Physique du Globe de Clermont-Ferrand'),
(125290, 101106, 'fr', 'name', 'HÓpital Adélaïde-Hautval'),
(125291, 101107, 'pt', 'name', 'Unidade Local de SaĆŗde da Guarda EPE'),
(125292, 101108, 'en', 'name', 'Franklin Resources, Franklin Resources (United States)'),
(125293, 101109, 'en', 'name', 'Canadian Scientific Submersible Facility'),
(125294, 101110, 'en', 'name', 'Northern Health and Social Care Trust'),
(125295, 101111, 'en', 'name', 'Montana State University Foundation'),
(125296, 101112, 'en', 'name', 'Cat Clinic'),
(125297, 101112, 'pt', 'name', 'ClĆ­nica dos Gatos (Portugal)'),
(125298, 101113, 'en', 'name', 'Laboratory of Quantum and Molecular Photonics'),
(125299, 101113, 'fr', 'name', 'Laboratoire de Photonique Quantique et MolƩculaire'),
(125300, 101114, 'en', 'name', 'Shanghai International Studies University'),
(125301, 101114, 'zh', 'name', 'äøŠęµ·å¤–å›½čÆ­å¤§å­¦'),
(125302, 101115, 'ca', 'name', 'Universitat de SĆ sser'),
(125303, 101115, 'en', 'name', 'University of Sassari'),
(125304, 101115, 'fr', 'name', 'UniversitƩ de Sassari'),
(125305, 101115, 'it', 'name', 'UniversitĆ  degli Studi di Sassari'),
(125306, 101116, 'en', 'name', 'Nancy Clinical Investigation Centre Innovative Technology'),
(125307, 101116, 'fr', 'name', 'Centre d’Investigation Clinique Innovation Technologique de Nancy'),
(125308, 101117, 'en', 'name', 'University of Belgrade – Technical Faculty in Bor'),
(125309, 101117, 'sr', 'name', 'Univerzitet u Beogradu – Tehnički fakultet u Boru'),
(125310, 101118, 'es', 'name', 'Instituto Tecnológico Superior de Atlixco'),
(125311, 101119, 'no_lang_code', 'name', 'Sigma Group (Czechia)'),
(125312, 101120, 'en', 'name', 'Ministry of Industry and Trade'),
(125313, 101120, 'vi', 'name', 'Bį»™ CĆ“ng Thʰʔng'),
(125314, 101121, 'de', 'name', 'Otto-Friedrich-UniversitƤt Bamberg'),
(125315, 101121, 'en', 'name', 'University of Bamberg'),
(125316, 101122, 'en', 'name', 'Tun Hussein Onn University of Malaysia'),
(125317, 101122, 'ms', 'name', 'Universiti Tun Hussein Onn Malaysia'),
(125318, 101123, 'en', 'name', 'Biochemistry Laboratory'),
(125319, 101123, 'fr', 'name', 'Laboratoire de Biochimie'),
(125320, 101124, 'en', 'name', 'Moss Landing Marine Laboratories'),
(125321, 101125, 'sv', 'name', 'Region Jƶnkƶpings lƤn'),
(125322, 101126, 'en', 'name', 'Ankara Medipol University'),
(125323, 101126, 'tr', 'name', 'Ankara Medipol Üniversitesi'),
(125324, 101127, 'fr', 'name', 'Institut des Sciences de l''Evolution de Montpellier'),
(125325, 101128, 'fr', 'name', 'ARNA - Acides nuclƩiques: RƩgulations naturelles et artificielles'),
(125326, 101129, 'en', 'name', 'New College of Florida'),
(125327, 101130, 'en', 'name', 'National Institute for Public Health and the Environment'),
(125328, 101130, 'nl', 'name', 'Rijksinstituut voor Volksgezondheid en Milieu'),
(125329, 101131, 'fr', 'name', 'Institut SupĆ©rieur d’Informatique et de Gestion de Goma'),
(125330, 101132, 'en', 'name', 'Department of Science Service'),
(125331, 101132, 'th', 'name', 'ąøąø£ąø”ąø§ąø“ąø—ąø¢ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąøšąø£ąø“ąøąø²ąø£'),
(125332, 101133, 'en', 'name', 'Transylvania University of Brașov'),
(125333, 101133, 'ro', 'name', 'Universitatea Transilvania din Brașov'),
(125334, 101134, 'fr', 'name', 'Chimie de la MatiĆØre Complexe'),
(125335, 101135, 'en', 'name', 'University of Social Sciences'),
(125336, 101135, 'pl', 'name', 'Społeczna Akademia Nauk'),
(125337, 101136, 'en', 'name', 'Fulton–Montgomery Community College'),
(125338, 101137, 'fr', 'name', 'Centre LƩon BƩrard'),
(125339, 101138, 'fr', 'name', 'Cibles et MƩdicaments des Infections et de l''ImmunitƩ'),
(125340, 101139, 'en', 'name', 'Precise Measurement Technology Promotion Foundation'),
(125341, 101139, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē²¾åÆ†ęø¬å®šęŠ€č”“ęŒÆčˆˆč²”å›£'),
(125342, 101140, 'en', 'name', 'Wulin Academy of Arts'),
(125343, 101140, 'zh', 'name', 'ę­¦ęž—ę›øē•«é™¢'),
(125344, 101141, 'en', 'name', 'Petroleum Training Institute'),
(125345, 101142, 'fr', 'name', 'Institut de Recherche sur les ArchƩoMATƩriaux'),
(125346, 101143, 'en', 'name', 'Shanghai Normal University'),
(125347, 101143, 'zh', 'name', '上海师范大学'),
(125348, 101144, 'en', 'name', 'Center for Research in Neurobiology and Neurophysiology of Marseille'),
(125349, 101144, 'fr', 'name', 'Centre de Recherche en Neurobiologie - Neurophysiologie de Marseille'),
(125350, 101145, 'en', 'name', 'Fujian Jiangxia University'),
(125351, 101145, 'zh', 'name', 'ē¦å»ŗę±Ÿå¤å­¦é™¢'),
(125352, 101146, 'en', 'name', 'Jingdezhen Ceramic Institute'),
(125353, 101146, 'zh', 'name', '景德镇陶瓷学院'),
(125354, 101147, 'en', 'name', 'East China University of Political Science and Law'),
(125355, 101147, 'zh', 'name', 'åŽäøœę”æę³•å¤§å­¦'),
(125356, 101148, 'en', 'name', 'Institute for the Application of Nuclear Energy'),
(125357, 101148, 'sr', 'name', 'Institut za primenu nuklearne energije, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠæŃ€ŠøŠ¼ŠµŠ½Ńƒ Š½ŃƒŠŗŠ»ŠµŠ°Ń€Š½Šµ ŠµŠ½ŠµŃ€Š³ŠøŃ˜Šµ'),
(125358, 101149, 'de', 'name', 'NFDI-MatWerk, Nationale Forschungsdateninfrastruktur für Materialwissenschaft & Werkstofftechnik'),
(125359, 101149, 'en', 'name', 'National Research Data Infrastructure for Materials Science & Engineering'),
(125360, 101150, 'es', 'name', 'Instituto Tecnológico de Ciudad GuzmÔn'),
(125361, 101151, 'en', 'name', 'Higher Technological Institute of Irapuato'),
(125362, 101151, 'es', 'name', 'Instituto Tecnológico Superior de Irapuato'),
(125363, 101152, 'no_lang_code', 'name', 'Ceralink (United States)'),
(125364, 101153, 'fr', 'name', 'DƩlƩgation RƩgionale Occitanie MƩditerranƩe'),
(125365, 101154, 'bn', 'name', 'ą¦—ą¦£ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(125366, 101154, 'en', 'name', 'Gono University'),
(125367, 101155, 'nl', 'name', 'Deltares'),
(125368, 101156, 'fr', 'name', 'Recherche clinique appliquƩe Ơ l''hƩmatologie'),
(125369, 101157, 'fr', 'name', 'Laboratoire d''Ingénierie pour les Systèmes Complexes'),
(125370, 101158, 'en', 'name', 'Rock Flow Dynamics, Rock Flow Dynamics (United Kingdom)'),
(125371, 101159, 'en', 'name', 'Agronomy and Environment Laboratory'),
(125372, 101159, 'fr', 'name', 'Laboratoire Agronomie et Environnement'),
(125373, 101160, 'en', 'name', 'Rosalind Franklin Institute'),
(125374, 101161, 'pt', 'name', 'Instituto PolitƩcnico Jean Piaget do Norte'),
(125375, 101162, 'no', 'name', 'NODA Nordnorsk Design- og Arkitektursenter'),
(125376, 101163, 'en', 'name', 'Brooklands College'),
(125377, 101164, 'en', 'name', 'JAMK University of Applied Sciences'),
(125378, 101164, 'fi', 'name', 'JyvƤskylƤn ammattikorkeakoulu'),
(125379, 101165, 'en', 'name', 'Honeywell Federal Manufacturing and Technologies (United States)'),
(125380, 101166, 'fr', 'name', 'Ɖcole EuropĆ©enne SupĆ©rieure de l''Image'),
(125381, 101167, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure'),
(125382, 101168, 'en', 'name', 'Beibu Gulf University'),
(125383, 101168, 'zh', 'name', 'åŒ—éƒØę¹¾å¤§å­¦'),
(125384, 101169, 'fr', 'name', 'Laboratoire Architecture Ville Urbanisme Environnement'),
(125385, 101170, 'az', 'name', 'NaxƧıvan Universiteti'),
(125386, 101170, 'en', 'name', 'Nakhchivan University'),
(125387, 101171, 'en', 'name', 'University of Chester'),
(125388, 101172, 'en', 'name', 'AREA Science Park'),
(125389, 101173, 'fr', 'name', 'EpidƩmiosurveillance et circulation des parasites dans les environnements'),
(125390, 101174, 'de', 'name', 'Basisdienste für die NFDI'),
(125391, 101174, 'en', 'name', 'Base4NFDI, Basic Services for NFDI'),
(125392, 101175, 'fr', 'name', 'Institut Desbrest d''EpidƩmiologie et de SantƩ Publique'),
(125393, 101176, 'fr', 'name', 'Laboratoire Interdisciplinaire de Recherche en Innovations SociƩtales'),
(125394, 101177, 'en', 'name', 'Eskişehir Osmangazi University'),
(125395, 101177, 'tr', 'name', 'Eskişehir Osmangazi Üniversitesi'),
(125396, 101178, 'en', 'name', 'Istanbul University-Cerrahpaşa'),
(125397, 101178, 'tr', 'name', 'İstanbul Üniversitesi-Cerrahpaşa'),
(125398, 101179, 'no_lang_code', 'name', 'Gilead Sciences (United Kingdom)'),
(125399, 101180, 'en', 'name', 'Zhejiang Technical Institute of Economics'),
(125400, 101180, 'zh', 'name', 'ęµ™ę±ŸēœęŠ€ęœÆē»ęµŽē ”ē©¶é™¢'),
(125401, 101181, 'en', 'name', 'Marseille Medical Genetics'),
(125402, 101181, 'fr', 'name', 'Centre de GƩnƩtique MƩdicale de Marseille'),
(125403, 101182, 'it', 'name', 'UniversitĆ  Iuav di Venezia'),
(125404, 101183, 'en', 'name', 'Dalhousie University'),
(125405, 101184, 'fr', 'name', 'PrƩdicteurs molƩculaires et nouvelles cibles en oncologie'),
(125406, 101185, 'en', 'name', 'The Sense Innovation and Research Center'),
(125407, 101185, 'fr', 'name', 'Le Centre d’innovation et de recherche The Sense'),
(125408, 101186, 'en', 'name', 'Inha University'),
(125409, 101186, 'ko', 'name', 'ģøķ•˜ėŒ€ķ•™źµ'),
(125410, 101187, 'en', 'name', 'United Nations Economic and Social Council'),
(125411, 101188, 'en', 'name', 'Centre for Epidemiology and Population Health'),
(125412, 101188, 'fr', 'name', 'Centre de recherche en EpidƩmiologie et SantƩ des Populations'),
(125413, 101189, 'en', 'name', 'Pasteur Institute of Bangui'),
(125414, 101189, 'fr', 'name', 'Institut Pasteur de Bangui'),
(125415, 101190, 'en', 'name', 'Imaging and Brain'),
(125416, 101190, 'fr', 'name', 'Imagerie et Cerveau'),
(125417, 101191, 'de', 'name', 'UniversitƤt Regensburg'),
(125418, 101191, 'en', 'name', 'University of Regensburg'),
(125419, 101192, 'cy', 'name', 'Y Coleg Celf Brenhinol'),
(125420, 101192, 'en', 'name', 'Royal College of Art'),
(125421, 101193, 'fr', 'name', 'Clinique de l''Acte et PSychosexualitƩ'),
(125422, 101194, 'fr', 'name', 'Maison mƩditerranƩenne des sciences de l''Homme'),
(125423, 101195, 'en', 'name', 'Weber State University'),
(125424, 101195, 'fr', 'name', 'UniversitĆ© d''Ɖtat de weber'),
(125425, 101196, 'en', 'name', 'Northern Michigan University'),
(125426, 101196, 'fr', 'name', 'UniversitƩ du Nord du Michigan'),
(125427, 101197, 'en', 'name', 'Methodist College of Education'),
(125428, 101198, 'fr', 'name', 'Hypertension pulmonaire : physiopathologie et innovation thƩrapeutique'),
(125429, 101199, 'en', 'name', 'Pamukkale University'),
(125430, 101199, 'tr', 'name', 'Pamukkale Üniversitesi'),
(125431, 101200, 'no_lang_code', 'name', 'Research International (United States)'),
(125432, 101201, 'en', 'name', 'Red Cross University College of Nursing'),
(125433, 101201, 'sv', 'name', 'Rƶda Korsets hƶgskola'),
(125434, 101202, 'fr', 'name', 'Laboratoire Traitement du Signal et de l''Image'),
(125435, 101203, 'fr', 'name', 'Centre de Recherches en Histoire des IdƩes'),
(125436, 101204, 'fr', 'name', 'Centre d''Etudes des Maladies Infectieuses et Pharmacologie Anti-Infectieuse'),
(125437, 101205, 'en', 'name', 'NFDI4Earth'),
(125438, 101206, 'en', 'name', 'Hefei University'),
(125439, 101206, 'zh', 'name', 'åˆč‚„å­¦é™¢'),
(125440, 101207, 'ca', 'name', 'Universitat Oberta de Catalunya'),
(125441, 101207, 'en', 'name', 'Open University of Catalonia'),
(125442, 101207, 'es', 'name', 'Universidad Abierta de CataluƱa'),
(125443, 101208, 'en', 'name', 'Federal College of Wildlife Management'),
(125444, 101209, 'es', 'name', 'Instituto Tecnológico Agrario de Castilla y León'),
(125445, 101210, 'en', 'name', 'Nanyang Normal University'),
(125446, 101210, 'zh', 'name', 'å—é˜³åøˆčŒƒå­¦é™¢'),
(125447, 101211, 'en', 'name', 'Guarapari City Hall'),
(125448, 101211, 'pt', 'name', 'Prefeitura Municipal de Guarapari'),
(125449, 101212, 'en', 'name', 'Hebei Provincial Communications Planning, Design and Research Institute Co., Ltd., Hebei Provincial Communications Planning, Design and Research Institute Co., Ltd. (China)'),
(125450, 101212, 'zh', 'name', 'ę²³åŒ—ēœäŗ¤é€šč§„åˆ’č®¾č®”ē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(125451, 101213, 'en', 'name', 'Şırnak University'),
(125452, 101213, 'tr', 'name', 'Sirnak Üniversitesi'),
(125453, 101214, 'bn', 'name', 'ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦¬ą¦¾ą¦Æą¦¼ą§‹ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(125454, 101214, 'en', 'name', 'National Institute of Biotechnology'),
(125455, 101215, 'en', 'name', 'University of BorƄs'),
(125456, 101215, 'sv', 'name', 'Hƶgskolan i BorƄs'),
(125457, 101216, 'no_lang_code', 'name', 'Robert Bosch (Germany)'),
(125458, 101217, 'fr', 'name', 'Laboratoire Lorrain de Sciences Sociales'),
(125459, 101218, 'en', 'name', 'Institute of Integrative Biology of the Cell'),
(125460, 101218, 'fr', 'name', 'Institut de Biologie IntƩgrative de la Cellule'),
(125461, 101219, 'en', 'name', 'Autonomous University of Nuevo León'),
(125462, 101219, 'es', 'name', 'Universidad Autónoma de Nuevo León'),
(125463, 101220, 'en', 'name', 'Omohundro Institute of Early American History and Culture'),
(125464, 101221, 'en', 'name', 'NorthEast Pacific Deep-sea Exploration Project'),
(125465, 101222, 'en', 'name', 'Xi''an Medical University'),
(125466, 101222, 'zh', 'name', 'č„æå®‰åŒ»å­¦é™¢'),
(125467, 101223, 'fr', 'name', 'Sciences Po Rennes'),
(125468, 101224, 'en', 'name', 'Axon Enterprise, Axon Enterprise (United States)'),
(125469, 101225, 'fr', 'name', 'Institut Pasteur de la Guyane'),
(125470, 101226, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''IngĆ©nieurs de Caen'),
(125471, 101227, 'en', 'name', 'B.S. Abdur Rahman Crescent Institute of Science & Technology'),
(125472, 101227, 'ta', 'name', 'பி. ą®Žą®øąÆ. ą®…ą®ŖąÆą®¤ąÆą®°ąÆ ą®°ą®•ąÆą®®ą®¾ą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(125473, 101228, 'en', 'name', 'Trafford College'),
(125474, 101229, 'fr', 'name', 'Laboratoire Dynamique du Langage'),
(125475, 101230, 'en', 'name', 'SUNY Adirondack'),
(125476, 101231, 'en', 'name', 'Kütahya Health Sciences University'),
(125477, 101231, 'tr', 'name', 'Kutahya Saglik Bilimleri Universitesi'),
(125478, 101232, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± Ų§Ł„Ų­ŁƒŁ…Ų©'),
(125479, 101232, 'en', 'name', 'Dar Al-Hekma University'),
(125480, 101233, 'pt', 'name', 'Lógica EM SA, Lógica EM SA (Portugal)'),
(125481, 101234, 'nl', 'name', 'Amphia Ziekenhuis'),
(125482, 101235, 'en', 'name', 'Air Force Harbin Flying College'),
(125483, 101235, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›å“ˆå°”ę»Øé£žč”Œå­¦é™¢'),
(125484, 101236, 'en', 'name', 'Hubert Curien Pluridisciplinary Institute'),
(125485, 101236, 'fr', 'name', 'Institut Pluridisciplinaire Hubert Curien'),
(125486, 101237, 'en', 'name', 'Nuu Chah Nulth Tribal Council'),
(125487, 101238, 'fr', 'name', 'Centre Roland Mousnier'),
(125488, 101239, 'en', 'name', 'Canadian Institutes of Health Research'),
(125489, 101240, 'en', 'name', 'Teikyo University'),
(125490, 101240, 'ja', 'name', 'åøäŗ¬å¤§å­¦'),
(125491, 101241, 'en', 'name', 'University of Wisconsin–Stout'),
(125492, 101241, 'fr', 'name', 'UniversitĆ© du Wisconsin–Stout'),
(125493, 101242, 'en', 'name', 'Genome dynamics and microbial adaptation'),
(125494, 101242, 'fr', 'name', 'Dynamique des GƩnomes et Adaptation Microbienne'),
(125495, 101243, 'en', 'name', 'The Royal Photographic Society'),
(125496, 101244, 'tr', 'name', 'T.C. Ziraat Bankası A.Ş., Ziraat Bankası'),
(125497, 101245, 'en', 'name', 'Punta Culebra Nature Center'),
(125498, 101246, 'en', 'name', 'Eterna Therapeutics'),
(125499, 101247, 'en', 'name', 'Remotely Operated Platform for Ocean Sciences'),
(125500, 101248, 'en', 'name', 'Cyprus Institute of Neurology and Genetics'),
(125501, 101249, 'en', 'name', 'Laboratory Glycochemistry, of Antimicrobials and Agroressources'),
(125502, 101249, 'fr', 'name', 'Laboratoire de Glycochimie, des Antimicrobiens et des Agroressources'),
(125503, 101250, 'en', 'name', 'Vita-Salute San Raffaele University'),
(125504, 101250, 'fr', 'name', 'UniversitƩ vie-santƩ Saint Raphaƫl'),
(125505, 101250, 'it', 'name', 'UniversitĆ  Vita-Salute San Raffaele'),
(125506, 101251, 'en', 'name', 'University of Akureyri'),
(125507, 101251, 'is', 'name', 'HÔskólinn Ô Akureyri'),
(125508, 101252, 'en', 'name', 'Royal Netherlands Institute for Sea Research'),
(125509, 101252, 'nl', 'name', 'Het Koninklijk Nederlands Instituut voor Onderzoek der Zee'),
(125510, 101253, 'de', 'name', 'Deutsche Gesellschaft für Patientensicherheit gGmbH'),
(125511, 101254, 'fr', 'name', 'Ɖcole de l''air et de l''espace'),
(125512, 101255, 'en', 'name', 'CICERO Center for International Climate Research'),
(125513, 101255, 'no', 'name', 'CICERO Senter for Klimaforskning'),
(125514, 101256, 'pt', 'name', 'Fundação da Juventude'),
(125515, 101257, 'fr', 'name', 'Laboratoire de GƩnƩtique & Evolution des Populations VƩgƩtales'),
(125516, 101258, 'en', 'name', 'Enflame (China)'),
(125517, 101258, 'pt', 'name', 'Enflame'),
(125518, 101259, 'fr', 'name', 'Laboratoire de dƩveloppement instrumental et de mƩthodologies innovantes pour les Biens Culturels'),
(125519, 101260, 'en', 'name', 'Rachel Carson Center for Environment and Society'),
(125520, 101261, 'fr', 'name', 'Fondation contre le Cancer'),
(125521, 101261, 'nl', 'name', 'Stichting tegen Kanker'),
(125522, 101262, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أهل Ų§Ł„ŲØŁŠŲŖ'),
(125523, 101262, 'en', 'name', 'Ahl Al Bayt University'),
(125524, 101262, 'fa', 'name', 'دانؓگاه Ų§Ł‡Ł„Ų§Ł„ŲØŪŒŲŖ'),
(125525, 101263, 'de', 'name', 'Nordzucker AG, Nordzucker AG (Germany)'),
(125526, 101264, 'en', 'name', 'Lingnan Normal University'),
(125527, 101264, 'zh', 'name', 'ę¹›ę±ŸåøˆčŒƒå­¦é™¢'),
(125528, 101265, 'en', 'name', 'Sociological Scientific Society of Serbia'),
(125529, 101265, 'sr', 'name', 'SocioloŔko naučno druŔtvo Srbije'),
(125530, 101266, 'fr', 'name', 'Ɖquipe de Recherche sur les Mutations de l''Europe et de ses SociĆ©tĆ©s'),
(125531, 101267, 'en', 'name', 'Institute of Geography'),
(125532, 101267, 'kk', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ географии'),
(125533, 101267, 'ru', 'name', 'Institut geografii Respubliki Kazahstan'),
(125534, 101268, 'en', 'name', 'Gateshead College'),
(125535, 101269, 'de', 'name', 'Humboldt-UniversitƤt zu Berlin'),
(125536, 101270, 'en', 'name', 'KPJ Healthcare University'),
(125537, 101271, 'es', 'name', 'Universidad PolitƩcnica de CuautitlƔn Izcalli'),
(125538, 101272, 'en', 'name', 'Montes Claros State University'),
(125539, 101272, 'es', 'name', 'Universidad Estatal de Montes Claros'),
(125540, 101272, 'pt', 'name', 'Universidade Estadual de Montes Claros'),
(125541, 101273, 'no_lang_code', 'name', 'Framatome (Germany)'),
(125542, 101274, 'en', 'name', 'Beijing Union University'),
(125543, 101274, 'zh', 'name', 'åŒ—äŗ¬č”åˆå¤§å­¦'),
(125544, 101275, 'es', 'name', 'Tecnológico de Estudios Superiores de CuautitlÔn Izcalli'),
(125545, 101276, 'en', 'name', 'Chiba University'),
(125546, 101276, 'ja', 'name', 'åƒč‘‰å¤§å­¦'),
(125547, 101277, 'en', 'name', 'Connecticut College'),
(125548, 101278, 'en', 'name', 'Indonesian Institute for Counseling, Education, and Therapy'),
(125549, 101279, 'en', 'name', 'pyOpenSci'),
(125550, 101280, 'en', 'name', 'Synchrotron Radiation for Biomedicine'),
(125551, 101281, 'nl', 'name', 'Politieacademie'),
(125552, 101282, 'en', 'name', 'Agroecology and Sustainable Intensification for Annual Crops'),
(125553, 101282, 'fr', 'name', 'Agro-Ʃcologie et intensification durable des cultures annuelles'),
(125554, 101283, 'en', 'name', 'Royal College of Surgeons in Ireland'),
(125555, 101283, 'ga', 'name', 'ColĆ”iste RĆ­oga na MĆ”inlianna in Ɖirinn'),
(125556, 101284, 'en', 'name', 'University of Luanda'),
(125557, 101284, 'pt', 'name', 'Universidade de Luanda'),
(125558, 101285, 'en', 'name', 'LIP - Laboratory of Instrumentation and Experimental Particle Physics'),
(125559, 101285, 'pt', 'name', 'LIP - Laboratório de Instrumentação e Física Experimental de Partículas'),
(125560, 101286, 'en', 'name', 'Shenzhen Ruipuxun Academy for Stem Cell & Regenerative Medicine'),
(125561, 101287, 'en', 'name', 'University of Eyvanekey'),
(125562, 101287, 'fa', 'name', 'دانؓگاه Ų§ŪŒŁˆŲ§Ł† کی'),
(125563, 101288, 'no_lang_code', 'name', 'Teledyne FLIR (United States)'),
(125564, 101289, 'it', 'name', 'Fondazione Bruno Kessler'),
(125565, 101290, 'es', 'name', 'Instituto de Investigación e Innovación en Energías Renovables y Medio Ambiente'),
(125566, 101291, 'en', 'name', 'NSW Roads and Maritime Services'),
(125567, 101292, 'en', 'name', 'Rush University Medical Center'),
(125568, 101293, 'en', 'name', 'University of Alaska Fairbanks'),
(125569, 101293, 'es', 'name', 'Universidad de Alaska Fairbanks'),
(125570, 101293, 'fr', 'name', 'UniversitƩ de l''alaska Ơ fairbanks'),
(125571, 101294, 'en', 'name', 'California State University, San Marcos'),
(125572, 101295, 'en', 'name', 'University of North Florida'),
(125573, 101295, 'es', 'name', 'Universidad del Norte de Florida'),
(125574, 101296, 'en', 'name', 'University of L''Aquila'),
(125575, 101296, 'fr', 'name', 'UniversitƩ de l''aquila'),
(125576, 101296, 'it', 'name', 'UniversitĆ  degli Studi dell''Aquila'),
(125577, 101297, 'fr', 'name', 'Histoire, ArchƩologie et LittƩrature des Mondes Anciens'),
(125578, 101298, 'en', 'name', 'International Union of Geodesy and Geophysics'),
(125579, 101298, 'fr', 'name', 'Union GƩodƩsique et GƩophysique Internationale'),
(125580, 101299, 'pt', 'name', 'Instituto de Ciência e Inovação em Engenharia Mecânica e Engenharia Industrial'),
(125581, 101300, 'en', 'name', 'Blackburn College'),
(125582, 101301, 'fr', 'name', 'Laboratoire interdisciplinaire sur les mutations des espaces Ʃconomiques et politiques - Paris Saclay'),
(125583, 101302, 'en', 'name', 'NOAA Great Lakes Environmental Research Laboratory'),
(125584, 101303, 'fr', 'name', 'Maladie d''Alzheimer : marqueurs gƩnƩtiques et vasculaires, neuropsychologie'),
(125585, 101304, 'en', 'name', 'Suffolk New College'),
(125586, 101305, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ فهد Ų§Ł„Ų·ŲØŁŠŲ©'),
(125587, 101305, 'en', 'name', 'King Fahd Medical City'),
(125588, 101306, 'en', 'name', 'National Institute for Nuclear Physics, Laboratory of Nuclear Techniques for Environment and Cultural Heritage'),
(125589, 101306, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Laboratorio di Tecniche Nucleari per l''Ambiente e i Beni Culturali'),
(125590, 101307, 'fr', 'name', 'Institut de Biologie MolƩculaire des Plantes'),
(125591, 101308, 'en', 'name', 'Fanshawe College'),
(125592, 101309, 'en', 'name', 'South Devon College'),
(125593, 101310, 'fr', 'name', 'Centre d''histoire des sociƩtƩs, des sciences et des conflits'),
(125594, 101311, 'en', 'name', 'Debrecen Reformed Theological University'),
(125595, 101311, 'hu', 'name', 'Debreceni ReformƔtus HittudomƔnyi Egyetem'),
(125596, 101312, 'en', 'name', 'Eastern University, Sri Lanka'),
(125597, 101312, 'si', 'name', 'ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶±ą·ą¶œą·™ą¶±ą·„ą·’ą¶» ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(125598, 101312, 'ta', 'name', 'ą®•ą®æą®“ą®•ąÆą®•ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®‡ą®²ą®™ąÆą®•ąÆˆ'),
(125599, 101313, 'de', 'name', 'Deutsches Elektronen-Synchrotron DESY'),
(125600, 101313, 'en', 'name', 'DESY'),
(125601, 101314, 'en', 'name', 'Eƶtvƶs LorƔnd University'),
(125602, 101314, 'hu', 'name', 'Eƶtvƶs LorƔnd TudomƔnyegyetem'),
(125603, 101315, 'fr', 'name', 'Centre de Formation et de Recherche sur les Environnements MƩditerranƩens'),
(125604, 101316, 'en', 'name', 'World Glacier Monitoring Service'),
(125605, 101317, 'fr', 'name', 'Laboratoire de MƩcanique Paris-Saclay'),
(125606, 101318, 'fr', 'name', 'Virologie et Immunologie MolƩculaires'),
(125607, 101319, 'en', 'name', 'Indian Institute of Management Bodh Gaya'),
(125608, 101320, 'en', 'name', 'Toko University'),
(125609, 101320, 'zh', 'name', 'ēØ»ę±Ÿē§‘ęŠ€ęšØē®”ē†å­øé™¢'),
(125610, 101321, 'en', 'name', 'University of Wolverhampton'),
(125611, 101322, 'en', 'name', 'Korea Institute of Science & Technology Information'),
(125612, 101322, 'ko', 'name', 'ķ•œźµ­ź³¼ķ•™źø°ģˆ ģ •ė³“ģ—°źµ¬ģ›'),
(125613, 101323, 'fr', 'name', 'Institut de recherches philosophiques de Lyon'),
(125614, 101324, 'id', 'name', 'Universitas Muhammadiyah Kotabumi'),
(125615, 101325, 'fr', 'name', 'Centre Ɖmile Durkheim'),
(125616, 101326, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für Immunologie'),
(125617, 101326, 'en', 'name', 'National Research Data Infrastructure for Immunology'),
(125618, 101326, 'no_lang_code', 'name', 'NFDI4Immuno'),
(125619, 101327, 'de', 'name', 'Technische UniversitƤt Dortmund'),
(125620, 101327, 'en', 'name', 'TU Dortmund University'),
(125621, 101328, 'fr', 'name', 'Arts: pratiques et poƩtiques'),
(125622, 101329, 'de', 'name', 'NFDI für Wissenschaften mit Bezug zur Katalyse');
INSERT INTO `ror_settings` VALUES
(125623, 101329, 'en', 'name', 'NFDI for Catalysis-Related Sciences'),
(125624, 101329, 'no_lang_code', 'name', 'NFDI4Cat'),
(125625, 101330, 'en', 'name', 'The Enteric Nervous System in Gut and Brain Disorders'),
(125626, 101331, 'fr', 'name', 'PHotonique ELectronique et IngƩnierie QuantiqueS'),
(125627, 101332, 'fr', 'name', 'Institut de PlanƩtologie et d''Astrophysique de Grenoble'),
(125628, 101333, 'en', 'name', 'University College Stockholm'),
(125629, 101333, 'sv', 'name', 'Enskilda Hƶgskolan Stockholm'),
(125630, 101334, 'en', 'name', 'University of Nevada, Reno'),
(125631, 101335, 'en', 'name', 'Istanbul Galata University'),
(125632, 101335, 'tr', 'name', 'İstanbul Galata Üniversitesi'),
(125633, 101336, 'en', 'name', 'Southwest University'),
(125634, 101336, 'zh', 'name', 'č„æå—å¤§å­¦'),
(125635, 101337, 'no_lang_code', 'name', 'Linyi University'),
(125636, 101337, 'zh', 'name', '专沂大学'),
(125637, 101338, 'en', 'name', 'Flinders University'),
(125638, 101339, 'en', 'name', 'South China Normal University'),
(125639, 101339, 'zh', 'name', 'åŽå—åøˆčŒƒå¤§å­¦'),
(125640, 101340, 'ar', 'name', 'لجامعة Ų§Ł„Ų±ŁŠŲ§Ł†'),
(125641, 101340, 'en', 'name', 'Al-Rayan University'),
(125642, 101341, 'fr', 'name', 'Agence Nationale de Recherches sur le Sida et les HƩpatites Virales'),
(125643, 101342, 'en', 'name', 'Directorate of Air Navigation Services'),
(125644, 101342, 'fr', 'name', 'Direction des Services de la Navigation AƩrienne'),
(125645, 101343, 'en', 'name', 'Northern State University'),
(125646, 101344, 'fr', 'name', 'Centre d’études en sciences sociales du religieux'),
(125647, 101345, 'fr', 'name', 'Strasbourg Oncologie LibƩrale'),
(125648, 101346, 'fr', 'name', 'HƓpital Broca'),
(125649, 101347, 'fr', 'name', 'Centre d''Etudes et de Recherches Comparatives Constitutionnelles et Politiques'),
(125650, 101348, 'es', 'name', 'Universidad Autónoma de Zacatecas, Universidad Autónoma de Zacatecas "Francisco García Salinas"'),
(125651, 101349, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سور'),
(125652, 101349, 'en', 'name', 'Sur University College'),
(125653, 101350, 'en', 'name', 'Akdeniz University'),
(125654, 101350, 'tr', 'name', 'Akdeniz Üniversitesi'),
(125655, 101351, 'fr', 'name', 'Laboratoire de Neurosciences Cognitives et Adaptatives'),
(125656, 101352, 'en', 'name', 'Centre for Health Law, Policy and Ethics'),
(125657, 101353, 'fr', 'name', 'Laboratoire d''électronique, systèmes de communication et microsystèmes'),
(125658, 101354, 'es', 'name', 'Instituto de Investigación en Cambio Global'),
(125659, 101355, 'fr', 'name', 'Organisation de Micro-Electronique GƩnƩrale AvancƩe'),
(125660, 101356, 'en', 'name', 'IVL Swedish Environmental Research Institute'),
(125661, 101356, 'sv', 'name', 'IVL Svenska Miljƶinstitutet'),
(125662, 101356, 'zh', 'name', 'ē‘žå…øēŽÆå¢ƒē§‘å­¦ē ”ē©¶é™¢'),
(125663, 101357, 'en', 'name', 'Erasmus Fund'),
(125664, 101357, 'fr', 'name', 'Fonds Erasme'),
(125665, 101358, 'en', 'name', 'Aktobe Regional State University named after K.Zhubanov'),
(125666, 101358, 'kk', 'name', 'Қ.Жұбанов атынГағы Ақтөбе өңірлік мемлекеттік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(125667, 101359, 'en', 'name', 'Kangwon National University'),
(125668, 101359, 'ko', 'name', 'ź°•ģ›ėŒ€ķ•™źµ'),
(125669, 101360, 'en', 'name', 'Banner MD Anderson Cancer Center at Banner North Colorado Medical Center'),
(125670, 101361, 'en', 'name', 'Maharaja Agrasen University'),
(125671, 101362, 'en', 'name', 'Lanzhou University'),
(125672, 101362, 'zh', 'name', '兰州大学'),
(125673, 101363, 'fr', 'name', 'Laboratoire de sociologie des Territoires, du travail, des âges et de la santé'),
(125674, 101364, 'en', 'name', 'Texas A&M University – Corpus Christi'),
(125675, 101365, 'en', 'name', 'Czech Association of Doctoral Researchers'),
(125676, 101366, 'fr', 'name', 'UMS-Autonomie'),
(125677, 101367, 'en', 'name', 'Le Mans University'),
(125678, 101367, 'fr', 'name', 'Le Mans UniversitƩ'),
(125679, 101368, 'fr', 'name', 'Centre de Résonance Magnétique des Systèmes Biologiques'),
(125680, 101369, 'en', 'name', 'Inner Mongolia Medical University'),
(125681, 101369, 'zh', 'name', 'å†…č’™å¤åŒ»ē§‘å¤§å­¦'),
(125682, 101370, 'en', 'name', 'Nanosystems Initiative Munich'),
(125683, 101371, 'en', 'name', 'Center for Interdisciplinary Research in Biology'),
(125684, 101371, 'fr', 'name', 'Centre Interdisciplinaire de Recherche en Biologie'),
(125685, 101372, 'en', 'name', 'Concord University'),
(125686, 101373, 'en', 'name', 'Insilico Medicine, Insilico Medicine (United States)'),
(125687, 101374, 'en', 'name', 'Deepblue Technology, Deepblue Technology (China)'),
(125688, 101374, 'zh', 'name', 'ę·±å…°ē§‘ęŠ€ļ¼ˆäøŠęµ·ļ¼‰ęœ‰é™å…¬åø'),
(125689, 101375, 'en', 'name', 'University of the South Pacific - Emalus Campus'),
(125690, 101376, 'en', 'name', 'Sant Longowal Institute of Engineering and Technology'),
(125691, 101377, 'en', 'name', 'Liaoning Technical University'),
(125692, 101377, 'zh', 'name', 'č¾½å®å·„ēØ‹ęŠ€ęœÆå¤§å­¦'),
(125693, 101378, 'en', 'name', 'Shiraz University of Medical Sciences'),
(125694, 101378, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی ؓیراز'),
(125695, 101379, 'cs', 'name', 'JanĆ”Äkova akademie mĆŗzických uměnĆ­'),
(125696, 101379, 'en', 'name', 'JanĆ”Äek Academy of Performing Arts'),
(125697, 101380, 'en', 'name', 'Shenyang Agricultural University'),
(125698, 101381, 'en', 'name', 'Kotebe University of Education'),
(125699, 101382, 'en', 'name', 'Burnley College'),
(125700, 101383, 'fr', 'name', 'Centre Tourangeau d’Histoire et d’Études des Sources'),
(125701, 101384, 'en', 'name', 'Nanjing Normal University Taizhou College'),
(125702, 101384, 'zh', 'name', 'å—äŗ¬åøˆčŒƒå¤§å­¦ę³°å·žå­¦é™¢'),
(125703, 101385, 'en', 'name', 'Fluid Dynamics Research Institute'),
(125704, 101386, 'en', 'name', 'Action Against Hunger'),
(125705, 101386, 'fr', 'name', 'Action Contre la Faim'),
(125706, 101387, 'fr', 'name', 'Temps, Mondes, SociƩtƩs'),
(125707, 101388, 'en', 'name', 'Lyft, Lyft (United States)'),
(125708, 101389, 'en', 'name', 'North China University of Technology'),
(125709, 101389, 'zh', 'name', 'åŒ—ę–¹å·„äøšå¤§å­¦'),
(125710, 101390, 'es', 'name', 'Instituto Tecnológico Superior Zacatecas Norte'),
(125711, 101391, 'en', 'name', 'Naval Hydrographic and Oceanographic Service'),
(125712, 101391, 'fr', 'name', 'Service Hydrographique et OcƩanographique de la Marine'),
(125713, 101392, 'en', 'name', 'Alabama Humanities Foundation'),
(125714, 101393, 'cs', 'name', 'Muzeum skla a bižuterie v Jablonci nad Nisou'),
(125715, 101393, 'en', 'name', 'Museum of Glass and Jewellery in Jablonec nad Nisou'),
(125716, 101394, 'fr', 'name', 'Institut de Chimie de la Matière Condensée de Bordeaux'),
(125717, 101395, 'en', 'name', 'Sinopharm Animal Health Co., Ltd., Sinopharm Animal Health Co., Ltd. (China)'),
(125718, 101395, 'zh', 'name', 'å›½čÆé›†å›¢åŠØē‰©äæå„č‚”ä»½ęœ‰é™å…¬åø'),
(125719, 101396, 'en', 'name', 'New York State Museum'),
(125720, 101397, 'en', 'name', 'Canarie'),
(125721, 101398, 'en', 'name', 'Belfast Metropolitan College'),
(125722, 101399, 'en', 'name', 'Open Modeling Foundation'),
(125723, 101400, 'en', 'name', 'Research Institute for Environmental and Occupation Health'),
(125724, 101400, 'fr', 'name', 'Institut de Recherche en SantƩ, Environnement et Travail'),
(125725, 101401, 'en', 'name', 'Institute of Applied Computing & Community Code'),
(125726, 101402, 'pt', 'name', 'Santa Marcelina Educação'),
(125727, 101403, 'en', 'name', 'Xinjiang Medical University'),
(125728, 101403, 'zh', 'name', 'ę–°ē–†åŒ»ē§‘å¤§å­¦'),
(125729, 101404, 'en', 'name', 'British Columbia Institute of Technology'),
(125730, 101404, 'fr', 'name', 'Institut de technologie de la colombie-britannique'),
(125731, 101405, 'en', 'name', 'Gambella University'),
(125732, 101406, 'en', 'name', 'Brazilian Synchrotron Light Laboratory'),
(125733, 101406, 'pt', 'name', 'Laboratório Nacional de Luz Síncrotron'),
(125734, 101407, 'en', 'name', 'Tokai University'),
(125735, 101407, 'ja', 'name', 'ę±ęµ·å¤§å­¦'),
(125736, 101408, 'en', 'name', 'University of South Australia'),
(125737, 101409, 'en', 'name', 'Ningde Normal University'),
(125738, 101409, 'zh', 'name', 'å®å¾·åøˆčŒƒå­¦é™¢'),
(125739, 101410, 'en', 'name', 'Tokyo Denki University'),
(125740, 101410, 'ja', 'name', 'ę±äŗ¬é›»ę©Ÿå¤§å­¦'),
(125741, 101411, 'fr', 'name', 'Centre Maurice-Halbwachs'),
(125742, 101412, 'es', 'name', 'Universidad PolitƩcnica de Guanajuato'),
(125743, 101413, 'en', 'name', 'Broadridge Financial Solutions, Broadridge Financial Solutions (United States)'),
(125744, 101414, 'en', 'name', 'Indian Institute of Science Education and Research Thiruvananthapuram'),
(125745, 101414, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¤ą¤æą¤°ą„ą¤µą¤Øą¤‚ą¤¤ą¤Ŗą„ą¤°ą¤®'),
(125746, 101414, 'ne', 'name', 'ą¤†ą¤‡ą¤†ą¤‡ą¤ą¤øą¤‡ą¤†ą¤° ą¤¤ą¤æą¤°ą„‚ą¤…ą¤Øą¤‚ą¤¤ą¤Ŗą„ą¤°ą¤®'),
(125747, 101415, 'en', 'name', 'Wiltshire College'),
(125748, 101416, 'en', 'name', 'French National Agency for Water and Aquatic Environments'),
(125749, 101416, 'fr', 'name', 'Agence FranƧaise Pour la BiodiversitƩ'),
(125750, 101417, 'en', 'name', 'VF Calibration Laboratory, VF Calibration Laboratory (Czechia)'),
(125751, 101418, 'en', 'name', 'Anhui Science and Technology University'),
(125752, 101418, 'zh', 'name', 'å®‰å¾½ē§‘ęŠ€å­¦é™¢'),
(125753, 101419, 'en', 'name', 'Smithsonian Institution'),
(125754, 101420, 'en', 'name', 'Isesaki Municipal Hospital'),
(125755, 101421, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»Š½Š° Ń…ŃƒŠ“Š¾Š¶ŠµŃŃ‚Š²ŠµŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(125756, 101421, 'en', 'name', 'National Academy of Arts'),
(125757, 101422, 'de', 'name', 'Palucca Hochschule für Tanz Dresden'),
(125758, 101423, 'sr', 'name', 'Srpsko arheoloÅ”ko druÅ”tvo, Дрпско Š°Ń€Ń…ŠµŠ¾Š»Š¾ŃˆŠŗŠ¾ Š“Ń€ŃƒŃˆŃ‚Š²Š¾'),
(125759, 101424, 'en', 'name', 'World Data System'),
(125760, 101425, 'en', 'name', 'Pratap University'),
(125761, 101426, 'en', 'name', 'Central Conservatory of Music'),
(125762, 101426, 'zh', 'name', 'äø­å¤®éŸ³ä¹å­¦é™¢'),
(125763, 101427, 'en', 'name', 'Zhejiang Institute of Communications'),
(125764, 101427, 'zh', 'name', 'ęµ™ę±Ÿäŗ¤é€ščŒäøšęŠ€ęœÆå­¦é™¢'),
(125765, 101428, 'en', 'name', 'State University of New York'),
(125766, 101428, 'es', 'name', 'Universidad Estatal de Nueva York'),
(125767, 101428, 'fr', 'name', 'UniversitĆ© d''Ɖtat de New York'),
(125768, 101429, 'en', 'name', 'Hubei University for Nationalities'),
(125769, 101429, 'zh', 'name', 'ę¹–åŒ—ę°‘ę—å­¦é™¢'),
(125770, 101430, 'fr', 'name', 'Laboratoire de Droit International et EuropƩen'),
(125771, 101431, 'en', 'name', 'Indiana Humanities'),
(125772, 101432, 'bg', 'name', 'Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ŠŖŠ¢ ŠŸŠž ŠœŠ˜ŠšŠ ŠžŠ‘Š˜ŠžŠ›ŠžŠ“Š˜ŠÆ Дтефан Ангелов'),
(125773, 101432, 'en', 'name', 'Stephan Angeloff Institute of Microbiology'),
(125774, 101433, 'fr', 'name', 'DƩlƩgation RƩgionale Grand Ouest'),
(125775, 101434, 'pt', 'name', 'Blanc Hospital'),
(125776, 101435, 'en', 'name', 'University of Białystok'),
(125777, 101435, 'pl', 'name', 'Uniwersytet w Białymstoku'),
(125778, 101436, 'en', 'name', 'Institute of Adult Education'),
(125779, 101436, 'sw', 'name', 'Taasisi ya Elimu ya Watu Wazima'),
(125780, 101437, 'en', 'name', 'Castleton University'),
(125781, 101438, 'en', 'name', 'LAB University of Applied Sciences'),
(125782, 101438, 'fi', 'name', 'LAB-ammattikorkeakoulu'),
(125783, 101439, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ιωαννίνων'),
(125784, 101439, 'en', 'name', 'University of Ioannina'),
(125785, 101439, 'fr', 'name', 'UniversitƩ d''ioannina'),
(125786, 101440, 'de', 'name', 'ē¬¬äø€äø‰å…±ę Ŗå¼ä¼šē¤¾'),
(125787, 101440, 'no_lang_code', 'name', 'Daiichi Sankyo (Germany)'),
(125788, 101441, 'cs', 'name', 'Etnologický Ćŗstav AV ČR, Etnologický Ćŗstav AV ČR, v. v. i., Etnologický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(125789, 101441, 'en', 'name', 'Czech Academy of Sciences, Institute of Ethnology'),
(125790, 101442, 'de', 'name', 'UniversitƤt Liechtenstein'),
(125791, 101442, 'en', 'name', 'University of Liechtenstein'),
(125792, 101443, 'en', 'name', 'Intergovernmental Oceanographic Commission of UNESCO'),
(125793, 101444, 'fr', 'name', 'Centre de Recherches Sociologiques sur le Droit et les Institutions PƩnales'),
(125794, 101445, 'en', 'name', 'Wroclaw Medical University'),
(125795, 101445, 'pl', 'name', 'Uniwersytet Medyczny im. Piastów Śląskich we Wrocławiu'),
(125796, 101446, 'en', 'name', 'Otis College of Art and Design'),
(125797, 101447, 'en', 'name', 'Miriam Foundation'),
(125798, 101448, 'en', 'name', 'Institute for Philosophy and Social Theory'),
(125799, 101448, 'sr', 'name', 'Institut za filozofiju i druÅ”tvenu teoriju, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Ń„ŠøŠ»Š¾Š·Š¾Ń„ŠøŃ˜Ńƒ Šø Š“Ń€ŃƒŃˆŃ‚Š²ŠµŠ½Ńƒ Ń‚ŠµŠ¾Ń€ŠøŃ˜Ńƒ'),
(125800, 101449, 'no_lang_code', 'name', 'Harris (United States)'),
(125801, 101450, 'en', 'name', 'Dalian Institute of Science and Technology'),
(125802, 101450, 'zh', 'name', 'å¤§čæžē§‘ęŠ€å­¦é™¢'),
(125803, 101451, 'fr', 'name', 'Evaluation des technologies de santƩ et des pratiques mƩdicales'),
(125804, 101452, 'en', 'name', 'Alfa University College'),
(125805, 101453, 'en', 'name', 'King''s College Hospital Charity'),
(125806, 101454, 'en', 'name', 'Oak Ridge National Laboratory'),
(125807, 101455, 'fr', 'name', 'Laboratoire MathƩmatiques, Image et Applications'),
(125808, 101456, 'fr', 'name', 'Replication des chromosomes eucaryotes et ses points de contrƓle'),
(125809, 101457, 'en', 'name', 'University of Ghana'),
(125810, 101458, 'en', 'name', 'Capital University of Economics and Business'),
(125811, 101458, 'zh', 'name', 'é¦–éƒ½ē»ęµŽč“øę˜“å¤§å­¦'),
(125812, 101459, 'en', 'name', 'North Carolina Humanities Council'),
(125813, 101460, 'fr', 'name', 'Laboratoire Hydrazines et ComposƩs EnergƩtiques PolyazotƩs'),
(125814, 101461, 'en', 'name', 'Israel National Research Center for Electrochemical Propulsion'),
(125815, 101462, 'en', 'name', 'University of Belgrade - Faculty of Mining and Geology'),
(125816, 101462, 'sr', 'name', 'Univerzitet u Beogradu - Rudarsko-geoloÅ”ki fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Š ŃƒŠ“Š°Ń€ŃŠŗŠ¾-геолошки Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(125817, 101463, 'en', 'name', 'University of Bridgeport'),
(125818, 101464, 'fr', 'name', 'Laboratoire de Psychologie Cognitive'),
(125819, 101465, 'fr', 'name', 'Institut thƩmatique GƩnƩtique, gƩnomique et bioinformatique'),
(125820, 101466, 'fr', 'name', 'MatƩriaux IngƩnierie et Science'),
(125821, 101467, 'it', 'name', 'Telecom Italia Lab'),
(125822, 101468, 'en', 'name', 'Franciscan School of Theology'),
(125823, 101469, 'en', 'name', 'Rensselaer Polytechnic Institute'),
(125824, 101470, 'en', 'name', 'Nanjing University'),
(125825, 101470, 'zh', 'name', 'å—äŗ¬å¤§å­¦'),
(125826, 101471, 'fr', 'name', 'Centre de Recherches Critiques sur le Droit'),
(125827, 101472, 'en', 'name', 'Governmental Agency for IT Development'),
(125828, 101473, 'fr', 'name', 'Centre de Support en SantƩ Internationale'),
(125829, 101474, 'en', 'name', 'Colorado Technical University'),
(125830, 101475, 'en', 'name', 'Institute of Chemical Physics NAS RA'),
(125831, 101476, 'fr', 'name', 'Laboratoire d''Ecophysiologie VƩgƩtale, Agronomie & nutritions N.C.S'),
(125832, 101477, 'en', 'name', 'University of Talca'),
(125833, 101477, 'es', 'name', 'Universidad de Talca'),
(125834, 101478, 'no_lang_code', 'name', 'A.O. Smith, A.O. Smith (United States)'),
(125835, 101479, 'fr', 'name', 'Laboratoire de physique des systĆØmes complexes'),
(125836, 101480, 'en', 'name', 'International Open University'),
(125837, 101481, 'fr', 'name', 'DĆ©lĆ©gation RĆ©gionale Provence-Alpes-CĆ“te d’Azur et Corse'),
(125838, 101482, 'en', 'name', 'PSG INSTITUTE OF TECHNOLOGY AND APPLIED RESEARCH'),
(125839, 101482, 'ta', 'name', 'பி ą®Žą®øąÆ ஜி ą®ą®ŸąÆ†ą®•ąÆ'),
(125840, 101483, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes en SantĆ© Publique, Ɖcole des hautes Ć©tudes en santĆ© publique'),
(125841, 101484, 'en', 'name', 'Nanjing University of Aeronautics and Astronautics'),
(125842, 101484, 'zh', 'name', 'å—äŗ¬čˆŖē©ŗčˆŖå¤©å¤§å­¦'),
(125843, 101485, 'az', 'name', 'Qəbzə Texnologiya İnstitutu'),
(125844, 101485, 'en', 'name', 'Gebze Technical University'),
(125845, 101485, 'tr', 'name', 'Gebze Teknik Üniversitesi'),
(125846, 101486, 'en', 'name', 'Research Centre on Cognition and Learning'),
(125847, 101486, 'fr', 'name', 'Centre de Recherches sur la Cognition et l''Apprentissage'),
(125848, 101487, 'en', 'name', 'National Institute of Technology Jamshedpur'),
(125849, 101487, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤œą¤®ą¤¶ą„‡ą¤¦ą¤Ŗą„ą¤°'),
(125850, 101488, 'en', 'name', 'Deposits and Consignments Fund'),
(125851, 101488, 'fr', 'name', 'Caisse des DƩpƓts et Consignations'),
(125852, 101489, 'es', 'name', 'Universidad Isalud'),
(125853, 101490, 'en', 'name', 'Macquarie University'),
(125854, 101491, 'en', 'name', 'China Pharmaceutical University'),
(125855, 101491, 'zh', 'name', 'äø­å›½čÆē§‘å¤§å­¦'),
(125856, 101492, 'en', 'name', 'National Enterprise for NanoScience and NanoTechnology'),
(125857, 101493, 'fr', 'name', 'Innovations thƩrapeutiques et rƩsistances'),
(125858, 101494, 'en', 'name', 'AGroecologies, Innovations & Ruralities'),
(125859, 101495, 'ja', 'name', 'RIKEN, ē†åŒ–å­¦ē ”ē©¶ę‰€'),
(125860, 101496, 'de', 'name', 'Hübner-Gruppe'),
(125861, 101496, 'en', 'name', 'HÜBNER Group, HÜBNER Group (Germany)'),
(125862, 101496, 'no_lang_code', 'name', 'HÜBNER GmbH & Co. KG'),
(125863, 101497, 'en', 'name', 'Wellesley College'),
(125864, 101498, 'en', 'name', 'Data Literacy Research Institute'),
(125865, 101498, 'fr', 'name', 'Institut de recherche en littƩratie des donnƩes'),
(125866, 101499, 'en', 'name', 'The Engineering & Technical College of Chengdu University of Technology'),
(125867, 101499, 'zh', 'name', 'ęˆéƒ½ē†å·„å¤§å­¦å·„ēØ‹ęŠ€ęœÆå­¦é™¢'),
(125868, 101500, 'en', 'name', 'Proteus Ocean Group, Proteus Ocean Group (United States)'),
(125869, 101501, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© ŁŠŁ†ŲØŲ¹ Ų§Ł„ŲµŁ†Ų§Ų¹ŁŠŲ©'),
(125870, 101501, 'en', 'name', 'Yanbu Industrial College'),
(125871, 101502, 'en', 'name', 'Elon University'),
(125872, 101503, 'fr', 'name', 'Laboratoire Structures, PropriƩtƩs et ModƩlisation des Solides'),
(125873, 101504, 'pt', 'name', 'Hospital das ForƧas Armadas'),
(125874, 101505, 'en', 'name', 'Cedarville University'),
(125875, 101506, 'en', 'name', 'National Institute for Fusion Science'),
(125876, 101506, 'ja', 'name', 'ę øčžåˆē§‘å­¦ē ”ē©¶ę‰€'),
(125877, 101507, 'fr', 'name', 'Laboratoire de Psychologie Sociale et Cognitive'),
(125878, 101508, 'fr', 'name', 'DƩveloppement Individu Processus Handicap Education'),
(125879, 101509, 'de', 'name', 'Evangelische Hochschule Nürnberg'),
(125880, 101509, 'en', 'name', 'Lutheran University of Applied Sciences Nuremberg'),
(125881, 101510, 'en', 'name', 'Institute of Research on Cancer and Aging in Nice'),
(125882, 101510, 'fr', 'name', 'Institut de Recherche sur le Cancer et le Vieillissement de Nice'),
(125883, 101511, 'en', 'name', 'CMCC Foundation - Euro-Mediterranean Center on Climate Change'),
(125884, 101512, 'en', 'name', 'Laboratory of BioChemistry'),
(125885, 101512, 'fr', 'name', 'Laboratoire de Biochimie'),
(125886, 101513, 'no_lang_code', 'name', 'Kellogg''s (United Kingdom)'),
(125887, 101514, 'en', 'name', 'French Cooperative Thoracic Group'),
(125888, 101514, 'fr', 'name', 'Intergroupe Francophone de CancƩrologie Thoracique'),
(125889, 101515, 'en', 'name', 'University of Gothenburg'),
(125890, 101515, 'fi', 'name', 'Gƶteborgin yliopisto'),
(125891, 101515, 'sv', 'name', 'Gƶteborgs universitet'),
(125892, 101516, 'fr', 'name', 'Performance SantƩ, MƩtrologie, SociƩtƩ'),
(125893, 101517, 'en', 'name', 'University of Salford'),
(125894, 101518, 'ca', 'name', 'Universitat CEU Cardenal Herrera'),
(125895, 101518, 'es', 'name', 'Universidad Cardenal Herrera CEU'),
(125896, 101519, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦¾ą¦‡ą¦Ÿą§‡ą¦” ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(125897, 101519, 'en', 'name', 'United International University'),
(125898, 101520, 'de', 'name', 'Klinik und Poliklinik für Strahlentherapie und Radioonkologie'),
(125899, 101521, 'en', 'name', 'Pulp and Paper Technical Centre'),
(125900, 101521, 'fr', 'name', 'Centre Technique du Papier'),
(125901, 101522, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ©'),
(125902, 101522, 'bn', 'name', 'ইসলামি আরবি ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(125903, 101522, 'en', 'name', 'Islamic Arabic University'),
(125904, 101523, 'fr', 'name', 'Laboratoire de Spectroscopie pour les Interactions, la RƩactivitƩ et l''Environnement'),
(125905, 101524, 'en', 'name', 'Texas A&M Health Science Center'),
(125906, 101525, 'en', 'name', 'Humanities Iowa'),
(125907, 101526, 'en', 'name', 'Svendborg International Maritime Academy'),
(125908, 101527, 'tr', 'name', 'Malatya Turgut Ɩzal Ɯniversitesi'),
(125909, 101528, 'en', 'name', 'Rey Juan Carlos University'),
(125910, 101528, 'es', 'name', 'Universidad Rey Juan Carlos'),
(125911, 101529, 'fr', 'name', 'Centre Bretagne-Normandie'),
(125912, 101530, 'de', 'name', 'Daten in Pflanzen-Grundlagenforschung'),
(125913, 101530, 'en', 'name', 'DataPLANT'),
(125914, 101531, 'hu', 'name', 'Eƶtvƶs József Főiskola'),
(125915, 101532, 'fr', 'name', 'Centre de droit privƩ et de sciences criminelles d''Amiens'),
(125916, 101533, 'en', 'name', 'Thompson Rivers University'),
(125917, 101534, 'en', 'name', 'ACR+, Association of Cities and Regionsfor sustainable Resource management'),
(125918, 101535, 'es', 'name', 'Emedic Salud'),
(125919, 101536, 'en', 'name', 'Hampshire County Council'),
(125920, 101537, 'en', 'name', 'Museum of the Rockies'),
(125921, 101538, 'en', 'name', 'Zhejiang Normal University'),
(125922, 101538, 'zh', 'name', 'ęµ™ę±ŸåøˆčŒƒå¤§å­¦'),
(125923, 101539, 'pt', 'name', 'Centro Internacional de MatemƔtica'),
(125924, 101540, 'en', 'name', 'University Business Academy in Novi Sad'),
(125925, 101540, 'hr', 'name', 'SveučiliŔte Privredna akademija'),
(125926, 101540, 'sh', 'name', 'Univerzitet Privredna akademija u Novom Sadu'),
(125927, 101540, 'sr', 'name', 'Универзитет ŠŸŃ€ŠøŠ²Ń€ŠµŠ“Š½Š° акаГемија'),
(125928, 101541, 'en', 'name', 'Brooklyn Navy Yard'),
(125929, 101542, 'en', 'name', 'Missouri Humanities Council'),
(125930, 101543, 'en', 'name', 'Southern Medical University'),
(125931, 101543, 'zh', 'name', 'å—ę–¹åŒ»ē§‘å¤§å­¦'),
(125932, 101544, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für Mikroskopie und Bildanalyse'),
(125933, 101544, 'en', 'name', 'National Research Data Infrastructure for Microscopy, Biophotonics and Bioimage Analysis'),
(125934, 101544, 'no_lang_code', 'name', 'NFDI4BIOIMAGE'),
(125935, 101545, 'en', 'name', 'Historic England'),
(125936, 101546, 'en', 'name', 'NanƧay Radio Observatory'),
(125937, 101546, 'fr', 'name', 'Observatoire Radioastronomique de NanƧay'),
(125938, 101547, 'fr', 'name', 'Laboratoire de MƩcanique, ModƩlisation & ProcƩdƩs Propres'),
(125939, 101548, 'en', 'name', 'Genetics and Developmental Biology'),
(125940, 101548, 'fr', 'name', 'GƩnƩtique et biologie du dƩveloppement'),
(125941, 101549, 'en', 'name', 'Washington State Department of Transportation'),
(125942, 101550, 'it', 'name', 'Istituto Nazionale di Alta Matematica Francesco Severi'),
(125943, 101551, 'en', 'name', 'Shenzhen University'),
(125944, 101551, 'zh', 'name', '深圳大学'),
(125945, 101552, 'en', 'name', 'Tamil Nadu Physical Education and Sports University'),
(125946, 101552, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®‰ą®Ÿą®±ąÆą®•ą®²ąÆą®µą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®æą®³ąÆˆą®Æą®¾ą®ŸąÆą®ŸąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(125947, 101553, 'en', 'name', 'NMIM, National Metrology Institute of Malaysia'),
(125948, 101554, 'de', 'name', 'VeterinƤrmedizinische UniversitƤt Wien'),
(125949, 101554, 'en', 'name', 'University of Veterinary Medicine Vienna'),
(125950, 101555, 'es', 'name', 'Instituto Tecnológico de Tuxtepec'),
(125951, 101556, 'en', 'name', 'Shunde Polytechnic'),
(125952, 101556, 'zh', 'name', 'é”ŗå¾·čŒäøšęŠ€ęœÆå­¦é™¢'),
(125953, 101557, 'fr', 'name', 'Institut de recherche Saint-Louis'),
(125954, 101558, 'en', 'name', 'Light, nanomaterials, nanotechnologies'),
(125955, 101558, 'fr', 'name', 'Lumière, nanomatériaux et nanotechnologies'),
(125956, 101559, 'en', 'name', 'Kyambogo University'),
(125957, 101560, 'es', 'name', 'Universidad San Jorge'),
(125958, 101561, 'en', 'name', 'Hangzhou City University'),
(125959, 101562, 'en', 'name', 'National Research Institute of Science and Technology for Environment and Agriculture'),
(125960, 101562, 'fr', 'name', 'Institut National de Recherche en Sciences et Technologies pour l''Environnement et l''Agriculture'),
(125961, 101563, 'es', 'name', 'Ministerio de Educación del Ecuador'),
(125962, 101564, 'en', 'name', 'Research and Educational Networking Association of Moldova'),
(125963, 101565, 'en', 'name', 'Yonsei University'),
(125964, 101565, 'ko', 'name', 'ģ—°ģ„øėŒ€ķ•™źµ'),
(125965, 101566, 'en', 'name', 'Kings Dental Center'),
(125966, 101567, 'en', 'name', 'Aquitaine Regional Council'),
(125967, 101567, 'fr', 'name', 'Conseil RƩgional d''Aquitaine'),
(125968, 101568, 'en', 'name', 'Royal Veterinary College'),
(125969, 101569, 'en', 'name', 'European X-Ray Free-Electron Laser'),
(125970, 101570, 'en', 'name', 'Research Unit on Infectious and Emerging Tropical Diseases'),
(125971, 101570, 'fr', 'name', 'UnitƩ de Recherche sur les Maladies Infectieuses et Tropicales Emergentes'),
(125972, 101571, 'id', 'name', 'Universitas Prasetiya Mulya'),
(125973, 101572, 'en', 'name', 'Institute of Zoology'),
(125974, 101572, 'kk', 'name', 'Š—Š¾Š¾Š»Š¾Š³ŠøŃ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(125975, 101573, 'fr', 'name', 'Maladies Rares: GƩnƩtique et MƩtabolisme'),
(125976, 101574, 'en', 'name', 'Chesterfield College'),
(125977, 101575, 'en', 'name', 'Shandong Normal University'),
(125978, 101575, 'zh', 'name', '山东师范大学'),
(125979, 101576, 'en', 'name', 'AgroResonance Platform'),
(125980, 101576, 'fr', 'name', 'Plateforme AgroResonance'),
(125981, 101577, 'en', 'name', 'Yalova University'),
(125982, 101577, 'tr', 'name', 'Yalova Üniversitesi'),
(125983, 101578, 'en', 'name', 'Henan University of Urban Construction'),
(125984, 101578, 'zh', 'name', 'ę²³å—åŸŽå»ŗå­¦é™¢'),
(125985, 101579, 'en', 'name', 'French National Institute for Agricultural Research'),
(125986, 101579, 'fr', 'name', 'Institut National de la Recherche Agronomique'),
(125987, 101580, 'fr', 'name', 'Approches contemporaines de la crƩation et de la rƩflexion artistiques'),
(125988, 101581, 'en', 'name', 'S P Jain School of Global Management'),
(125989, 101582, 'fr', 'name', 'Maladies rƩnales frƩquentes et rares : des mƩcanismes molƩculaires Ơ la mƩdecine personnalisƩe'),
(125990, 101583, 'en', 'name', 'Texas A&M University – Texarkana'),
(125991, 101584, 'pt', 'name', 'Laboratório de Inteligência Artificial e Apoio à Decisão'),
(125992, 101585, 'en', 'name', 'Xiamen Medical College'),
(125993, 101585, 'zh', 'name', 'åŽ¦é—ØåŒ»å­¦é™¢'),
(125994, 101586, 'en', 'name', 'Hitit University'),
(125995, 101586, 'tr', 'name', 'Hitit Üniversitesi'),
(125996, 101587, 'fr', 'name', 'UnitƩ Mixte de Recherche sur les Fromages'),
(125997, 101588, 'en', 'name', 'Mosaic Company, Mosaic Company (United States)'),
(125998, 101589, 'pt', 'name', 'Instituto Federal de Educação Ciência e Tecnologia da Paraíba'),
(125999, 101590, 'pt', 'name', 'Escola Superior NƔutica Infante Dom Henrique'),
(126000, 101591, 'en', 'name', 'Safety and Quality of Processed Fruit and Vegetables'),
(126001, 101591, 'fr', 'name', 'SƩcuritƩ et QualitƩ des Produits d''Origine VƩgƩtale'),
(126002, 101592, 'en', 'name', 'FolkhƤlsan Research Foundation'),
(126003, 101592, 'fi', 'name', 'FolkhƤlsanin TutkimussƤƤtiƶ'),
(126004, 101593, 'fr', 'name', 'Institut National Polytechnique de Lorraine'),
(126005, 101594, 'fr', 'name', 'Laboratoire de MathƩmatiques de Reims'),
(126006, 101595, 'el', 'name', 'Ī™ĻŒĪ½Ī¹Īæ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(126007, 101595, 'en', 'name', 'Ionian University'),
(126008, 101595, 'fr', 'name', 'UniversitƩ ionienne'),
(126009, 101596, 'en', 'name', 'Centre for Biochemical and Macromolecular Research'),
(126010, 101596, 'fr', 'name', 'Centre de Recherche en Biologie cellulaire de Montpellier'),
(126011, 101597, 'no_lang_code', 'name', 'NFDI4Objects'),
(126012, 101598, 'es', 'name', 'Instituto de MeteorologĆ­a'),
(126013, 101599, 'en', 'name', 'Szczecin Academy of Arts'),
(126014, 101599, 'pl', 'name', 'Akademia Sztuki w Szczecinie'),
(126015, 101600, 'en', 'name', 'North Bengal International University'),
(126016, 101601, 'en', 'name', 'University of Foggia'),
(126017, 101601, 'fr', 'name', 'UniversitƩ de foggia'),
(126018, 101601, 'it', 'name', 'UniversitĆ  degli Studi di Foggia'),
(126019, 101602, 'en', 'name', 'Research Institute against Digestive Cancer'),
(126020, 101602, 'fr', 'name', 'Institut de Recherche contre les Cancers de l’Appareil Digestif'),
(126021, 101603, 'en', 'name', 'Ramon Magsaysay Memorial Colleges'),
(126022, 101604, 'fr', 'name', 'Groupement de Recherche et d''Ɖtudes en Gestion d’HEC'),
(126023, 101605, 'es', 'name', 'Universidad Tecnológica de Querétaro'),
(126024, 101606, 'de', 'name', 'Georg-August-UniversitƤt Gƶttingen'),
(126025, 101606, 'en', 'name', 'University of Gƶttingen'),
(126026, 101607, 'fr', 'name', 'Laboratoire de Changement Social et Politique'),
(126027, 101608, 'en', 'name', 'Soleil Synchrotron'),
(126028, 101608, 'fr', 'name', 'Synchrotron soleil'),
(126029, 101609, 'en', 'name', 'National Forests Office'),
(126030, 101609, 'fr', 'name', 'Office National des ForĆŖts'),
(126031, 101610, 'en', 'name', 'University of Teramo'),
(126032, 101610, 'fr', 'name', 'UniversitƩ de teramo'),
(126033, 101610, 'it', 'name', 'UniversitĆ  degli Studi di Teramo'),
(126034, 101611, 'en', 'name', 'WHU – Otto Beisheim School of Management'),
(126035, 101612, 'en', 'name', 'Raymond James Financial, Raymond James Financial (United States)'),
(126036, 101613, 'it', 'name', 'Biogem, Biologia e Genetica Molecolare nel Mezzogiorno'),
(126037, 101614, 'en', 'name', 'Mills College'),
(126038, 101615, 'en', 'name', 'University of Milano-Bicocca'),
(126039, 101615, 'it', 'name', 'UniversitĆ  degli Studi di Milano-Bicocca'),
(126040, 101616, 'en', 'name', 'Databricks, Databricks (United States)'),
(126041, 101617, 'no_lang_code', 'name', 'Verisign, Verisign (United States)'),
(126042, 101618, 'en', 'name', 'Harbin Institute of Technology'),
(126043, 101618, 'zh', 'name', 'å“ˆå°”ę»Øå·„äøšå¤§å­¦'),
(126044, 101619, 'en', 'name', 'Oakland University'),
(126045, 101620, 'id', 'name', 'Institut Teknologi Nasional Yogyakarta'),
(126046, 101621, 'fr', 'name', 'Laboratoire AmĆ©nagement Ɖconomie Transports'),
(126047, 101622, 'en', 'name', 'Pathogenesis and Control of Chronic and Emerging Infections'),
(126048, 101623, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Grenoble'),
(126049, 101624, 'en', 'name', 'Chengdu University of Information Technology'),
(126050, 101624, 'zh', 'name', 'ęˆéƒ½äæ”ęÆå·„ēØ‹å¤§å­¦'),
(126051, 101625, 'en', 'name', 'Southwest Jiaotong University Hope College'),
(126052, 101625, 'zh', 'name', 'č„æå—äŗ¤é€šå¤§å­¦åøŒęœ›å­¦é™¢'),
(126053, 101626, 'fr', 'name', 'Laboratoire d''Ingénierie des Systèmes Biologiques et des Procédés'),
(126054, 101627, 'no_lang_code', 'name', 'NamesforLife (United States)'),
(126055, 101628, 'en', 'name', 'Wiawso College of Education'),
(126056, 101629, 'en', 'name', 'Center for Integrated Quantum Science and Technology'),
(126057, 101630, 'en', 'name', 'Crewkerne Community Hospital'),
(126058, 101631, 'fr', 'name', 'UMR Espace-Dev'),
(126059, 101632, 'en', 'name', 'Agency for Technical Cooperation and Development'),
(126060, 101632, 'fr', 'name', 'Agence d''Aide Ơ la CoopƩration Technique Et au DƩveloppement'),
(126061, 101633, 'en', 'name', 'Royal Tropical Institute'),
(126062, 101633, 'nl', 'name', 'Koninklijk Instituut voor de Tropen'),
(126063, 101634, 'en', 'name', 'Children''s Hospital of Philadelphia'),
(126064, 101635, 'en', 'name', 'Smithsonian American Art Museum'),
(126065, 101636, 'cs', 'name', 'MetropolitnĆ­ univerzita Praha'),
(126066, 101636, 'en', 'name', 'Metropolitan University Prague'),
(126067, 101637, 'en', 'name', 'Center for Global Change and Sustainability'),
(126068, 101637, 'es', 'name', 'Centro del Cambio Global y la Sustentabilidad A.C.'),
(126069, 101638, 'en', 'name', 'Immunity and Cancer'),
(126070, 101638, 'fr', 'name', 'ImmunitƩ et Cancer'),
(126071, 101639, 'en', 'name', 'Sri Siddhartha Medical College'),
(126072, 101640, 'fr', 'name', 'TƩSA'),
(126073, 101641, 'cs', 'name', 'Ú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'),
(126074, 101641, 'en', 'name', 'Czech Academy of Sciences, Institute of Contemporary History'),
(126075, 101642, 'en', 'name', 'City Institute for Public Health - Belgrade'),
(126076, 101643, 'en', 'name', 'Muscat College'),
(126077, 101644, 'en', 'name', 'Kırıkkale University'),
(126078, 101644, 'tr', 'name', 'Kırıkkale Üniversitesi'),
(126079, 101645, 'fr', 'name', 'HƓpital Fernand-Widal'),
(126080, 101646, 'en', 'name', 'Green Cross Laboratoies, Green Cross Laboratories (South Korea)'),
(126081, 101647, 'fr', 'name', 'Centre d''Acquisition et de Traitement des Images'),
(126082, 101648, 'fr', 'name', 'Physiopathogénèse et Traitement des Maladies du Foie'),
(126083, 101649, 'en', 'name', 'National Coalition of Independent Scholars'),
(126084, 101650, 'en', 'name', 'Institute Cancer De La Loire Lucien Neuwirth'),
(126085, 101651, 'en', 'name', 'Sapientia College of Theology of Religious Orders'),
(126086, 101651, 'hu', 'name', 'Sapientia Szerzetesi HittudomĆ”nyi Főiskola'),
(126087, 101652, 'en', 'name', 'Alanya Alaaddin Keykubat University'),
(126088, 101652, 'tr', 'name', 'Alanya Alaaddin Keykubat Üniversitesi'),
(126089, 101653, 'es', 'name', 'Universidad AnƔhuac Xalapa'),
(126090, 101654, 'en', 'name', 'Kielce University of Technology'),
(126091, 101654, 'pl', 'name', 'Politechnika Świętokrzyska'),
(126092, 101655, 'no_lang_code', 'name', 'Signatope GmbH, Signatope GmbH (Germany)'),
(126093, 101656, 'en', 'name', 'S. U. Umarov Physical-Technical Institute'),
(126094, 101657, 'en', 'name', 'Nanyang Institute of Technology'),
(126095, 101657, 'zh', 'name', 'å—é˜³ē†å·„å­¦é™¢'),
(126096, 101658, 'no_lang_code', 'name', 'Leonardo (Poland)'),
(126097, 101659, 'en', 'name', 'New Phytologist Foundation'),
(126098, 101660, 'pt', 'name', 'Academia Nacional de Belas Artes'),
(126099, 101661, 'en', 'name', 'Burgundy School of Business'),
(126100, 101661, 'fr', 'name', 'ESC Dijon Bourgogne, Ɖcole supĆ©rieure de commerce de Dijon-Bourgogne'),
(126101, 101662, 'fr', 'name', 'RƩgulations Naturelle et Artificielle'),
(126102, 101663, 'en', 'name', 'Technological and Higher Education Institute of Hong Kong'),
(126103, 101663, 'zh', 'name', 'é¦™ęøÆé«˜ē­‰ę•™č‚²ē§‘ęŠ€å­øé™¢'),
(126104, 101664, 'fr', 'name', 'Laboratoire Microorganismes GƩnome et Environnement'),
(126105, 101665, 'ms', 'name', 'Universiti Sains Islam Malaysia'),
(126106, 101666, 'en', 'name', 'South West College'),
(126107, 101667, 'en', 'name', 'Regional Environmental Center For Central Asia'),
(126108, 101667, 'ru', 'name', 'Š ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ Экологический Центр Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(126109, 101668, 'en', 'name', 'International Energy Agency'),
(126110, 101668, 'fr', 'name', 'Agence internationale de l''Ʃnergie'),
(126111, 101669, 'en', 'name', 'Wenzhou University'),
(126112, 101669, 'zh', 'name', 'ęø©å·žå¤§å­¦'),
(126113, 101670, 'en', 'name', 'Oregon Humanities'),
(126114, 101671, 'pt', 'name', 'Centro de Investigação de Políticas do Ensino Superior'),
(126115, 101672, 'en', 'name', 'Fife College'),
(126116, 101673, 'de', 'name', 'Konsortium für die Sozial-, Bildungs-, Verhaltens- und Wirtschaftswissenschaften'),
(126117, 101673, 'en', 'name', 'KonsortSWD'),
(126118, 101674, 'en', 'name', 'Gaziantep University'),
(126119, 101674, 'tr', 'name', 'Gaziantep Üniversitesi'),
(126120, 101675, 'en', 'name', 'Foothills Medical Centre'),
(126121, 101676, 'fr', 'name', 'Institut National des Sciences AppliquƩes Rouen Normandie'),
(126122, 101677, 'no_lang_code', 'name', 'Lancium, Lancium (United States)'),
(126123, 101678, 'cs', 'name', 'VysokĆ” Å”kola finančnĆ­ a sprĆ”vnĆ­'),
(126124, 101678, 'en', 'name', 'University of Finance and Administration'),
(126125, 101679, 'de', 'name', 'Bundesinstitut für Kultur und Geschichte des östlichen Europa'),
(126126, 101680, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(126127, 101680, 'en', 'name', 'Belarusian State University'),
(126128, 101680, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(126129, 101681, 'fr', 'name', 'Institut des Sciences MolƩculaires d''Orsay'),
(126130, 101682, 'en', 'name', 'Wolfspeed, Inc., Wolfspeed, Inc. (United States)'),
(126131, 101683, 'en', 'name', 'DMEX Centre for X-ray Imaging'),
(126132, 101684, 'en', 'name', 'Simon Fraser University'),
(126133, 101685, 'fr', 'name', 'Laboratoire de Physique Corpusculaire'),
(126134, 101686, 'en', 'name', 'Laboratory of Polymer Materials Engineering'),
(126135, 101686, 'fr', 'name', 'Ingenierie des Materiaux polymeres'),
(126136, 101687, 'fr', 'name', 'Centre Maurice Hauriou pour la Recherche en Droit Public'),
(126137, 101688, 'en', 'name', 'Hong Kong Chu Hai College'),
(126138, 101688, 'zh', 'name', 'é¦™ęøÆē ęµ·å­øé™¢'),
(126139, 101689, 'en', 'name', 'U.S. Army Center for Health Promotion and Preventive Medicine'),
(126140, 101690, 'en', 'name', 'Brazilian School of Economics and Finance'),
(126141, 101690, 'pt', 'name', 'Escola Brasileira de Economia e FinanƧas'),
(126142, 101691, 'fr', 'name', 'Institut de Recherches Historiques du Septentrion'),
(126143, 101692, 'de', 'name', 'UniversitƤtsmedizin Gƶttingen'),
(126144, 101692, 'en', 'name', 'University Medical Center Gƶttingen'),
(126145, 101693, 'en', 'name', 'Council of the Haida Nation'),
(126146, 101694, 'en', 'name', 'Shaanxi University of Chinese Medicine'),
(126147, 101694, 'zh', 'name', 'é™•č„æäø­åŒ»å­¦é™¢'),
(126148, 101695, 'en', 'name', 'Southern Regional College'),
(126149, 101696, 'en', 'name', 'French Democratic Confederation of Labour'),
(126150, 101696, 'fr', 'name', 'ConfƩdƩration franƧaise dƩmocratique du travail'),
(126151, 101697, 'en', 'name', 'Toxicology, Pharmacology and Cellular Signaling'),
(126152, 101697, 'fr', 'name', 'Toxicologie, Pharmacologie et Signalisation Cellulaire'),
(126153, 101698, 'en', 'name', 'University of Dayton'),
(126154, 101698, 'es', 'name', 'Universidad de Dayton'),
(126155, 101698, 'fr', 'name', 'UniversitƩ de dayton'),
(126156, 101699, 'fr', 'name', 'Ɖcole des MĆ©tiers de l’Environnement'),
(126157, 101700, 'en', 'name', 'Fungal Biodiversity and Biotechnology'),
(126158, 101700, 'fr', 'name', 'BiodiversitƩ et Biotechnologie Fongiques'),
(126159, 101701, 'fr', 'name', 'Laboratoire AimƩ Cotton'),
(126160, 101702, 'en', 'name', 'Ecology and Conservation Science for Sustainable Seas'),
(126161, 101703, 'es', 'name', 'Universidad Tecnologica de Cancun'),
(126162, 101704, 'en', 'name', 'Tokyo Dental College'),
(126163, 101704, 'ja', 'name', 'ę±äŗ¬ę­Æē§‘å¤§å­¦'),
(126164, 101705, 'en', 'name', 'Paris Descartes University'),
(126165, 101705, 'fr', 'name', 'UniversitƩ Paris Descartes'),
(126166, 101706, 'en', 'name', 'Shanghai Jiao Tong University'),
(126167, 101706, 'zh', 'name', 'äøŠęµ·äŗ¤é€šå¤§å­¦'),
(126168, 101707, 'pt', 'name', 'Instituto Superior de CiĆŖncias Educativas do Douro'),
(126169, 101708, 'pt', 'name', 'Assembleia da RepĆŗblica'),
(126170, 101709, 'en', 'name', 'Chungnam National University'),
(126171, 101709, 'ko', 'name', 'ģ¶©ė‚ØėŒ€ķ•™źµ'),
(126172, 101710, 'en', 'name', 'University of Montpellier 1'),
(126173, 101710, 'fr', 'name', 'UniversitƩ Montpellier 1'),
(126174, 101711, 'fr', 'name', 'Equipe de droit public de Lyon'),
(126175, 101712, 'en', 'name', 'Berkshire College of Agriculture'),
(126176, 101713, 'fr', 'name', 'Institut de Physique de Rennes'),
(126177, 101714, 'en', 'name', 'Paris Institute of Astrophysics'),
(126178, 101714, 'fr', 'name', 'Institut d''Astrophysique de Paris'),
(126179, 101715, 'en', 'name', 'Chongqing Zhijian Life Technology Co., Ltd (China)'),
(126180, 101715, 'zh', 'name', 'é‡åŗ†ēŸ„č§ē”Ÿå‘½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(126181, 101716, 'de', 'name', 'Institut für Tourismus- und Bäderforschung in Nordeuropa (NIT) GmbH, Institut für Tourismus- und Bäderforschung in Nordeuropa (NIT) GmbH (Germany)'),
(126182, 101717, 'no_lang_code', 'name', 'Shijiazhuang Tiedao University'),
(126183, 101717, 'zh', 'name', 'ēŸ³å®¶åŗ„é“é“å¤§å­¦'),
(126184, 101718, 'en', 'name', 'South African Radio Astronomy Observatory'),
(126185, 101719, 'en', 'name', 'New Design University'),
(126186, 101720, 'en', 'name', 'Centre for Interdisciplinary Research on Citizenship and Minorities'),
(126187, 101720, 'fr', 'name', 'Centre interdisciplinaire de recherche sur la citoyennetƩ et les minoritƩs'),
(126188, 101721, 'en', 'name', 'University of Rochester'),
(126189, 101721, 'es', 'name', 'Universidad de Rochester'),
(126190, 101721, 'fr', 'name', 'UniversitƩ de Rochester'),
(126191, 101722, 'en', 'name', 'Laboratory of Environmental Biotechnology'),
(126192, 101722, 'fr', 'name', 'Laboratoire de Biotechnologie de l''Environnement'),
(126193, 101723, 'no_lang_code', 'name', 'Agari Data, Agari Data (United States)'),
(126194, 101724, 'fr', 'name', 'Maison FranƧaise d''Oxford'),
(126195, 101725, 'pt', 'name', 'Faculdade de Direito de Vitória'),
(126196, 101726, 'no_lang_code', 'name', 'ECS, ECS (United States)'),
(126197, 101727, 'en', 'name', 'Vassar College'),
(126198, 101728, 'en', 'name', 'Seijo University'),
(126199, 101728, 'ja', 'name', 'ęˆåŸŽå¤§å­¦'),
(126200, 101729, 'da', 'name', 'IT-Universitetet i KĆøbenhavn'),
(126201, 101729, 'de', 'name', 'IT-UniversitƤt Kopenhagen'),
(126202, 101729, 'en', 'name', 'IT University of Copenhagen'),
(126203, 101730, 'en', 'name', 'ESIC University'),
(126204, 101730, 'es', 'name', 'ESIC Universidad'),
(126205, 101731, 'en', 'name', 'Rufus Giwa Polytechnic'),
(126206, 101732, 'en', 'name', 'Xuzhou University of Technology'),
(126207, 101732, 'zh', 'name', 'å¾å·žå·„ēØ‹å­¦é™¢'),
(126208, 101733, 'en', 'name', 'Jiangmen Underground Neutrino Observatory'),
(126209, 101733, 'zh', 'name', 'ę±Ÿé—Øåœ°äø‹äø­å¾®å­å®žéŖŒč§‚ęµ‹ē«™'),
(126210, 101734, 'en', 'name', 'Department of Pharmaceuticals'),
(126211, 101735, 'en', 'name', 'Duquesne University'),
(126212, 101736, 'sv', 'name', 'Station LinnƩ'),
(126213, 101737, 'nl', 'name', 'Dienst Uitvoering Onderwijs'),
(126214, 101738, 'de', 'name', 'UniversitƤt Bayreuth'),
(126215, 101738, 'en', 'name', 'University of Bayreuth'),
(126216, 101739, 'en', 'name', 'Centre on Governance'),
(126217, 101739, 'fr', 'name', 'Centre d’études en gouvernance'),
(126218, 101740, 'fr', 'name', 'Centre d''Etudes et de Recherches sur les Emplois et les Professionnalisations'),
(126219, 101741, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für die interdisziplinäre Energiesystemforschung'),
(126220, 101741, 'en', 'name', 'National Research Data Infrastructure for Interdisciplinary Energy System Research'),
(126221, 101741, 'no_lang_code', 'name', 'NFDI4Energy'),
(126222, 101742, 'en', 'name', 'Savonia University of Applied Sciences'),
(126223, 101742, 'fi', 'name', 'Savonia-ammattikorkeakoulu'),
(126224, 101743, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© المستقبل الجامعة'),
(126225, 101743, 'en', 'name', 'Al-Mustaqbal University'),
(126226, 101744, 'es', 'name', 'Universidad de Investigación e Innovación de México'),
(126227, 101745, 'fr', 'name', 'Laboratoire Anthropologie, ArchƩologie, Biologie'),
(126228, 101746, 'fr', 'name', 'Equipe de recherche paramƩdicale sur le handicap neuromoteur'),
(126229, 101747, 'no_lang_code', 'name', 'Global Ecology Unit CREAF-CSIC-UAB'),
(126230, 101748, 'en', 'name', 'Indian Institute of Information Technology, Design and Manufacturing, Kancheepuram'),
(126231, 101749, 'en', 'name', 'University of Belgrade – Faculty of Philosophy'),
(126232, 101749, 'sr', 'name', 'Univerzitet u Beogradu – Filozofski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Филозофски Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(126233, 101750, 'fr', 'name', 'Groupe de Recherche en Management'),
(126234, 101751, 'en', 'name', 'Exergetic Systems, Exergetic Systems (Canada)'),
(126235, 101752, 'cy', 'name', 'Coleg Brenhinol Cerdd a Drama Cymru'),
(126236, 101752, 'en', 'name', 'Royal Welsh College of Music and Drama'),
(126237, 101753, 'en', 'name', 'Laboratory of Physics of Interfaces and Thin Films'),
(126238, 101753, 'fr', 'name', 'Laboratoire de Physique des Interfaces et des Couches Minces'),
(126239, 101754, 'fr', 'name', 'Laboratoire Roberval'),
(126240, 101755, 'en', 'name', 'Dalian University of Technology'),
(126241, 101755, 'zh', 'name', 'å¤§čæžē†å·„å¤§å­¦'),
(126242, 101756, 'fr', 'name', 'Clinique VƩtƩrinaire Occitanie'),
(126243, 101757, 'en', 'name', 'Mutual Hospital Group of Grenoble'),
(126244, 101757, 'fr', 'name', 'Groupe Hospitalier Mutualiste de Grenoble'),
(126245, 101758, 'en', 'name', 'Project Seagrass'),
(126246, 101759, 'de', 'name', 'Weizenbaum-Institut'),
(126247, 101759, 'en', 'name', 'Weizenbaum Institute'),
(126248, 101760, 'fr', 'name', 'HƓpital de Vaugirard-Gabriel Pallez'),
(126249, 101761, 'en', 'name', 'Laboratory for the Psychology of Child Development and Education'),
(126250, 101761, 'fr', 'name', 'Laboratoire de Psychologie du DĆ©veloppement et de L’Education de l’enfant'),
(126251, 101762, 'en', 'name', 'Waziri Umaru Federal Polytechnic, Birnin Kebbi'),
(126252, 101763, 'en', 'name', 'Interdisciplinary Physics Laboratory'),
(126253, 101763, 'fr', 'name', 'Laboratoire Interdisciplinaire de Physique'),
(126254, 101764, 'es', 'name', 'Instituto Tecnológico de Conkal'),
(126255, 101765, 'en', 'name', 'Lakehead University'),
(126256, 101765, 'fr', 'name', 'UniversitƩ de lakehead'),
(126257, 101766, 'en', 'name', 'An Giang University'),
(126258, 101766, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c An Giang'),
(126259, 101767, 'en', 'name', 'Chongqing University'),
(126260, 101767, 'zh', 'name', 'é‡åŗ†å¤§å­¦'),
(126261, 101768, 'fr', 'name', 'DƩlƩgation Centre Limousin Poitou-Charentes'),
(126262, 101769, 'en', 'name', 'Indian Institute of Science Education and Research Berhampur'),
(126263, 101770, 'fr', 'name', 'HƓpital Lyon Sud'),
(126264, 101771, 'en', 'name', 'Association for Cancer Surgery'),
(126265, 101772, 'en', 'name', 'National Institute for Oriental Languages and Civilizations'),
(126266, 101772, 'fr', 'name', 'Institut National des Langues et Civilisations Orientales'),
(126267, 101773, 'fr', 'name', 'Polyclinique Bordeaux Nord Aquitaine'),
(126268, 101774, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الجزائر 2'),
(126269, 101774, 'en', 'name', 'Algiers 2 University'),
(126270, 101774, 'fr', 'name', 'UniversitƩ d''Alger 2'),
(126271, 101775, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© العامة Ł„Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠ ŁˆŲ§Ł„ŲŖŲÆŲ±ŁŠŲØ'),
(126272, 101775, 'en', 'name', 'Public Authority for Applied Education and Training'),
(126273, 101776, 'en', 'name', 'Animal Health'),
(126274, 101776, 'fr', 'name', 'DƩpartement SantƩ Animale'),
(126275, 101777, 'en', 'name', 'Polytechnic of Guarda'),
(126276, 101777, 'pt', 'name', 'Instituto PolitƩcnico da Guarda'),
(126277, 101778, 'en', 'name', 'Imam Ja’afar Al-Sadiq University'),
(126278, 101779, 'de', 'name', 'Senatsverwaltung für Mobilität, Verkehr, Klimaschutz und Umwelt'),
(126279, 101780, 'fr', 'name', 'Service de Physique de l''Ɖtat CondensĆ©'),
(126280, 101781, 'en', 'name', 'Malaghan Institute of Medical Research'),
(126281, 101782, 'es', 'name', 'Tecnológico Nacional de México, Campus Pachuca'),
(126282, 101783, 'en', 'name', 'Catholic University of Louvain'),
(126283, 101783, 'fr', 'name', 'UCLouvain'),
(126284, 101784, 'en', 'name', 'Moulton College'),
(126285, 101785, 'en', 'name', 'Henan Institute of Technology'),
(126286, 101785, 'zh', 'name', 'ę²³å—å·„å­¦é™¢'),
(126287, 101786, 'fr', 'name', 'GƩosciences Montpellier'),
(126288, 101787, 'en', 'name', 'University of Baltimore'),
(126289, 101787, 'fr', 'name', 'UniversitƩ de Baltimore'),
(126290, 101788, 'en', 'name', 'West Virginia Humanities Council'),
(126291, 101789, 'en', 'name', 'City of Flagstaff'),
(126292, 101790, 'fr', 'name', 'Institut thƩmatique Biologie cellulaire, dƩveloppement et Ʃvolution'),
(126293, 101791, 'en', 'name', 'Gwangju Institute of Science and Technology'),
(126294, 101791, 'ko', 'name', 'ź“‘ģ£¼ź³¼ķ•™źø°ģˆ ģ›'),
(126295, 101792, 'en', 'name', 'Maine Humanities Council'),
(126296, 101793, 'en', 'name', 'Languages and Cultures of Sub-Saharan Africa'),
(126297, 101793, 'fr', 'name', 'Langage, langues et Cultures d’Afrique Noire'),
(126298, 101794, 'en', 'name', 'Dataminr, Dataminr (United States)'),
(126299, 101795, 'da', 'name', 'Hotel og Restaurantskolen'),
(126300, 101795, 'en', 'name', 'Copenhagen Hospitality College'),
(126301, 101796, 'no_lang_code', 'name', 'Roche (United Kingdom)'),
(126302, 101797, 'en', 'name', 'Palau Community College'),
(126303, 101798, 'en', 'name', 'University of Belgrade – Faculty of Dental Medicine'),
(126304, 101798, 'sr', 'name', 'Univerzitet u Beogradu – StomatoloÅ”ki fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š”Ń‚Š¾Š¼Š°Ń‚Š¾Š»Š¾ŃˆŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(126305, 101799, 'en', 'name', 'Lublin University of Technology'),
(126306, 101799, 'pl', 'name', 'Politechnika Lubelska'),
(126307, 101800, 'no_lang_code', 'name', 'TDK (United States)'),
(126308, 101801, 'fr', 'name', 'Centre d''Investigation Clinique HƓpital EuropƩen Georges Pompidou'),
(126309, 101802, 'en', 'name', 'SUNY Sullivan'),
(126310, 101803, 'en', 'name', 'King Danylo University'),
(126311, 101804, 'en', 'name', 'Dicle University'),
(126312, 101804, 'tr', 'name', 'Dicle Üniversitesi'),
(126313, 101805, 'en', 'name', 'University West'),
(126314, 101805, 'sv', 'name', 'Hƶgskolan VƤst'),
(126315, 101806, 'en', 'name', 'Computer Science and Systems Laboratory'),
(126316, 101806, 'fr', 'name', 'Laboratoire d’Informatique et SystĆØmes'),
(126317, 101807, 'no_lang_code', 'name', 'Kuaishou, Kuaishou (China)'),
(126318, 101807, 'zh', 'name', 'åŒ—äŗ¬åæ«ę‰‹ē§‘ęŠ€ęœ‰é™å…¬åø, 快手'),
(126319, 101808, 'fr', 'name', 'Centre Pasteur du Cameroun'),
(126320, 101809, 'fr', 'name', 'Neurophysiologie respiratoire expƩrimentale et clinique'),
(126321, 101810, 'en', 'name', 'RMeS - Regenerative Medicine and Skeleton'),
(126322, 101811, 'en', 'name', 'Charles de Gaulle University Lille III');
INSERT INTO `ror_settings` VALUES
(126323, 101811, 'fr', 'name', 'Charles de Gaulle UniversitƩ de Lille III'),
(126324, 101812, 'en', 'name', 'National Institute for Nuclear Physics, Legnaro National Laboratories'),
(126325, 101812, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Laboratori Nazionali di Legnaro'),
(126326, 101813, 'en', 'name', 'Harvey Mudd College'),
(126327, 101814, 'fr', 'name', 'Biocommunication en Cardio-MƩtabolique'),
(126328, 101815, 'en', 'name', 'Suzhou City University'),
(126329, 101815, 'zh', 'name', 'č˜‡å·žåŸŽåø‚å­¦é™¢'),
(126330, 101816, 'en', 'name', 'Yeditepe University'),
(126331, 101816, 'tr', 'name', 'Yeditepe Üniversitesi'),
(126332, 101817, 'en', 'name', 'Zhaoqing University'),
(126333, 101817, 'zh', 'name', '肇庆学院'),
(126334, 101818, 'es', 'name', 'Universidad Tecnológica de la Región Carbonífera'),
(126335, 101819, 'en', 'name', 'Institute of Fluid Mechanics of Toulouse'),
(126336, 101819, 'fr', 'name', 'Institut de MƩcanique des Fluides de Toulouse'),
(126337, 101820, 'en', 'name', 'The Kericho National Polytechnic'),
(126338, 101821, 'en', 'name', 'Vesalius College'),
(126339, 101822, 'en', 'name', 'Syracuse University'),
(126340, 101822, 'es', 'name', 'Universidad de Siracusa'),
(126341, 101822, 'fr', 'name', 'UniversitƩ de syracuse'),
(126342, 101823, 'en', 'name', 'NSW Office for Learning and Teaching'),
(126343, 101824, 'en', 'name', 'University of Parakou'),
(126344, 101824, 'fr', 'name', 'UniversitƩ de Parakou'),
(126345, 101825, 'en', 'name', 'University of Northern British Columbia'),
(126346, 101826, 'en', 'name', 'Science and Technology of Music and Sound Laboratory'),
(126347, 101826, 'fr', 'name', 'Sciences et Technologies de la Musique et du Son'),
(126348, 101827, 'tr', 'name', 'Ankara Sosyal Bilimler Üniversitesi'),
(126349, 101828, 'en', 'name', 'New Higher Education Institute - NEWUNI'),
(126350, 101828, 'ka', 'name', 'ახალი įƒ£įƒ›įƒįƒ¦įƒšįƒ”įƒ”įƒ˜ įƒ”įƒįƒ”įƒ¬įƒįƒ•įƒšįƒ”įƒ‘įƒ”įƒšįƒ˜ - ნიუუნი'),
(126351, 101829, 'en', 'name', 'Munich Cluster for Systems Neurology'),
(126352, 101830, 'en', 'name', 'Imperial College Healthcare Charity'),
(126353, 101831, 'es', 'name', 'Universidad Tecnológica de Chihuahua'),
(126354, 101832, 'en', 'name', 'Fetal Medicine Foundation'),
(126355, 101833, 'en', 'name', 'Innovation and Development in Agriculture and Food'),
(126356, 101834, 'en', 'name', 'Krakow University of Economics'),
(126357, 101834, 'pl', 'name', 'Uniwersytet Ekonomiczny w Krakowie'),
(126358, 101835, 'fr', 'name', 'Laboratoire Innovation Communication et MarchƩ'),
(126359, 101836, 'en', 'name', 'Indian Institute of Technology Palakkad'),
(126360, 101836, 'ml', 'name', 'ą“Ŗą“¾ą“²ą“•ąµą“•ą“¾ą“Ÿąµ ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ą“æą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(126361, 101837, 'en', 'name', 'San Diego State University'),
(126362, 101837, 'es', 'name', 'Universidad Estatal de San Diego'),
(126363, 101837, 'fr', 'name', 'UniversitĆ© d''Ɖtat de san diego'),
(126364, 101838, 'en', 'name', 'Laboratory Genomics, Bioinformatics, and Applications'),
(126365, 101838, 'fr', 'name', 'GƩnomique Bioinformatique et Applications'),
(126366, 101839, 'en', 'name', 'Royal College of Physicians of Ireland'),
(126367, 101839, 'ga', 'name', 'ColĆ”iste RĆ­oga Lianna na hƉireann'),
(126368, 101840, 'en', 'name', 'IBM Research - Thomas J. Watson Research Center'),
(126369, 101841, 'fr', 'name', 'Immunologie intƩgrative des tumeurs et immunothƩrapie du cancer'),
(126370, 101842, 'fr', 'name', 'Laboratoire des Sciences et Techniques de l’Information de la Communication et de la Connaissance'),
(126371, 101843, 'en', 'name', 'Centre for Political Research at Sciences Po'),
(126372, 101843, 'fr', 'name', 'Centre de Recherches Politiques de Sciences Po'),
(126373, 101844, 'en', 'name', 'University of Hertfordshire'),
(126374, 101845, 'fr', 'name', 'Paris-Est Sup'),
(126375, 101846, 'en', 'name', 'Pingdingshan University'),
(126376, 101846, 'zh', 'name', '平锶山学院'),
(126377, 101847, 'en', 'name', 'Gautam Buddha University'),
(126378, 101847, 'hi', 'name', 'ą¤—ą„Œą¤¤ą¤® ą¤¬ą„ą¤¦ą„ą¤§ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(126379, 101847, 'ta', 'name', 'ą®•ąÆŒą®¤ą®®ąÆ ą®ŖąÆą®¤ąÆą®¤ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(126380, 101848, 'en', 'name', 'Aksaray University'),
(126381, 101848, 'tr', 'name', 'Aksaray Üniversitesi'),
(126382, 101849, 'fr', 'name', 'GƩnomique Ʃvolutive, modƩlisation et santƩ'),
(126383, 101850, 'en', 'name', 'National Zoological Park'),
(126384, 101851, 'fr', 'name', 'Chronobiotron'),
(126385, 101852, 'fr', 'name', 'Centre de Recherches Linguistiques sur l''Asie Orientale'),
(126386, 101853, 'en', 'name', 'Pacte Laboratory'),
(126387, 101853, 'fr', 'name', 'Laboratoire Pacte'),
(126388, 101854, 'cy', 'name', 'Prifysgol Dwyrain Anglia'),
(126389, 101854, 'en', 'name', 'University of East Anglia'),
(126390, 101855, 'fr', 'name', 'Valeurs, Innovations, Politiques, Socialisations et Sports'),
(126391, 101856, 'fr', 'name', 'Laboratoire Nanotechnologies et NanosystĆØmes'),
(126392, 101857, 'fr', 'name', 'Droit, religion, entreprise et sociƩtƩ'),
(126393, 101858, 'en', 'name', 'Anacostia Community Museum'),
(126394, 101859, 'fr', 'name', 'Institut franƧais d''Ʃtudes sur l''Asie centrale'),
(126395, 101860, 'pt', 'name', 'Escola Superior de Enfermagem de Lisboa'),
(126396, 101861, 'en', 'name', 'Masaryk Memorial Cancer Institute'),
(126397, 101862, 'en', 'name', 'University of Southern Mississippi'),
(126398, 101863, 'en', 'name', 'Institute of Myology'),
(126399, 101863, 'fr', 'name', 'Institut de Myologie'),
(126400, 101864, 'en', 'name', 'Institute of Civil-Military Technology Cooperation'),
(126401, 101864, 'ko', 'name', 'ėÆ¼źµ°ķ˜‘ė „ģ§„ķ„ģ›'),
(126402, 101865, 'fr', 'name', 'Biologie MolƩculaire et Immunologie Parasitaire, Bipar'),
(126403, 101866, 'fr', 'name', 'Centre de droit des affaires'),
(126404, 101867, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŃŠ“Ń€ŠµŠ½Šø ŠøŠ·ŃŠ»ŠµŠ“Š²Š°Š½ŠøŃ Šø ŃŠ“Ń€ŠµŠ½Š° енергетика'),
(126405, 101867, 'en', 'name', 'Institute for Nuclear Research and Nuclear Energy'),
(126406, 101868, 'en', 'name', 'Melun Hospital'),
(126407, 101868, 'fr', 'name', 'HƓpital de Melun'),
(126408, 101869, 'en', 'name', 'Institute of Molecular Genetics of Montpellier'),
(126409, 101869, 'fr', 'name', 'Institut de GƩnƩtique MolƩculaire de Montpellier'),
(126410, 101870, 'de', 'name', 'Klinik und Poliklinik für Frauenheilkunde und Geburtshilfe'),
(126411, 101871, 'fr', 'name', 'AmƩnagement, DƩveloppement, Environnement, SantƩ et SociƩtƩs'),
(126412, 101872, 'en', 'name', 'Citizens Financial Group, Citizens Financial Group (United States)'),
(126413, 101873, 'en', 'name', 'California State University, Chico'),
(126414, 101873, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  chico'),
(126415, 101874, 'en', 'name', 'CBRE Group, CBRE Group (United States)'),
(126416, 101875, 'en', 'name', 'Society of Economists "Ekonomika" NiÅ”'),
(126417, 101875, 'sr', 'name', 'DruÅ”tvo ekonomista ā€žEkonomikaā€œ, NiÅ”'),
(126418, 101876, 'en', 'name', 'American Tower, American Tower (United States)'),
(126419, 101877, 'fr', 'name', 'Centre de CompƩtences NanoSciences Ile-de-France'),
(126420, 101878, 'en', 'name', 'National Aeronautics and Space Administration'),
(126421, 101879, 'en', 'name', 'U.S. Army Engineer Research and Development Center'),
(126422, 101880, 'en', 'name', 'Data Observatory Foundation'),
(126423, 101880, 'es', 'name', 'Fundación Observatorio de Datos'),
(126424, 101881, 'en', 'name', 'Worcestershire County Council'),
(126425, 101882, 'fr', 'name', 'Laboratoire Ɖcologie Fonctionnelle et Environnement'),
(126426, 101883, 'no_lang_code', 'name', 'Sonova (Switzerland)'),
(126427, 101884, 'en', 'name', 'Catholic University of Santa MarĆ­a'),
(126428, 101884, 'es', 'name', 'Universidad Católica de Santa María'),
(126429, 101885, 'en', 'name', 'Klaipėda University'),
(126430, 101885, 'lt', 'name', 'Klaipėdos universitetas'),
(126431, 101885, 'pl', 'name', 'Uniwersytet Kłajpedzki'),
(126432, 101885, 'ru', 'name', 'КлайпеГский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(126433, 101886, 'en', 'name', 'Tokyo University of Foreign Studies'),
(126434, 101886, 'ja', 'name', 'ę±äŗ¬å¤–å›½čŖžå¤§å­¦'),
(126435, 101887, 'en', 'name', 'NextSense'),
(126436, 101888, 'no_lang_code', 'name', 'Low Carbon Living CRC (Australia)'),
(126437, 101889, 'fr', 'name', 'Agence Bibliographique de l''Enseignement SupƩrieur'),
(126438, 101890, 'en', 'name', 'Russian State University of Cinematography named after SA Gerasimov'),
(126439, 101890, 'ru', 'name', 'Всероссийский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ кинематографии имени Š”.А.Герасимова'),
(126440, 101891, 'en', 'name', 'Wuhan Business University'),
(126441, 101892, 'en', 'name', 'S P Jain School of Global Management'),
(126442, 101893, 'fr', 'name', 'Unite de recherche migrations et sociƩtƩs'),
(126443, 101894, 'en', 'name', 'TED University'),
(126444, 101895, 'en', 'name', 'University of Belgrade – Faculty of Medicine'),
(126445, 101895, 'sr', 'name', 'Univerzitet u Beogradu – Medicinski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(126446, 101896, 'en', 'name', 'The Fafo Institute for Labour and Social Research'),
(126447, 101897, 'fr', 'name', 'Laboratoire de pharmacologie et de toxicologie neurocardiovasculaire'),
(126448, 101898, 'fr', 'name', 'Groupe de Recherche en Psychologie Sociale'),
(126449, 101899, 'en', 'name', 'Ondokuz Mayıs University'),
(126450, 101899, 'tr', 'name', 'Ondokuz Mayıs Üniversitesi'),
(126451, 101900, 'tr', 'name', 'Ƈanakkale Savaşları Enstitüsü'),
(126452, 101901, 'fr', 'name', 'Neuro-Dol'),
(126453, 101902, 'fr', 'name', 'Ramsay SantƩ HƓpital privƩ des Peupliers'),
(126454, 101903, 'en', 'name', 'Institute for Advanced Technology in life science'),
(126455, 101903, 'fr', 'name', 'Institut des Technologies AvancƩes en sciences du Vivant'),
(126456, 101904, 'en', 'name', 'James Madison University'),
(126457, 101904, 'es', 'name', 'Universidad James Madison'),
(126458, 101905, 'en', 'name', 'Gambaga College of Education'),
(126459, 101906, 'en', 'name', 'Oregon Department of Transportation'),
(126460, 101907, 'cs', 'name', 'NƔrodnƭ TechnickƔ Knihovna'),
(126461, 101907, 'en', 'name', 'National Library of Technology'),
(126462, 101908, 'en', 'name', 'Amherst College'),
(126463, 101909, 'fr', 'name', 'Institut Charles Gerhardt Montpellier'),
(126464, 101910, 'fr', 'name', 'HEMU - Haute Ɖcole de Musique'),
(126465, 101911, 'fr', 'name', 'Centre Norbert Elias'),
(126466, 101912, 'en', 'name', 'Humanities Council of South Carolina'),
(126467, 101913, 'fr', 'name', 'Centre Lasers Intenses et Applications'),
(126468, 101914, 'en', 'name', 'Grapevine Health and Wine Quality'),
(126469, 101915, 'en', 'name', 'Adaptation and Diversity in the Marine Environment'),
(126470, 101915, 'fr', 'name', 'Adaptation et DiversitƩ en Milieu Marin'),
(126471, 101916, 'en', 'name', 'National Marine Data and Information Service'),
(126472, 101916, 'zh', 'name', 'å›½å®¶ęµ·ę“‹äæ”ęÆäø­åæƒ'),
(126473, 101917, 'fr', 'name', 'HƓpital Nord'),
(126474, 101918, 'en', 'name', 'United Nations Educational, Scientific and Cultural Organization Switzerland'),
(126475, 101919, 'fr', 'name', 'Laboratoire Cognition, Langues, Langage, Ergonomie'),
(126476, 101920, 'cy', 'name', 'Coleg Caerdydd a''r Fro'),
(126477, 101920, 'en', 'name', 'Cardiff and Vale College'),
(126478, 101921, 'no', 'name', 'MiljĆøfaglig Utredning AS (Norway)'),
(126479, 101922, 'cs', 'name', 'VysokÔ Ŕkola ekonomickÔ v Praze'),
(126480, 101922, 'en', 'name', 'Prague University of Economics and Business'),
(126481, 101923, 'fr', 'name', 'France Europe Innovation'),
(126482, 101924, 'de', 'name', 'Leibniz-Institut für Katalyse e.V.'),
(126483, 101924, 'en', 'name', 'Leibniz Institute for Catalysis'),
(126484, 101925, 'pt', 'name', 'Instituto da SeguranƧa Social'),
(126485, 101926, 'en', 'name', 'ƅbo Akademi University'),
(126486, 101927, 'en', 'name', 'NSW Forestry Corporation'),
(126487, 101928, 'en', 'name', 'Mediterranean Center for Molecular Medicine'),
(126488, 101928, 'fr', 'name', 'Centre Méditerranéen de Médecine Moléculaire'),
(126489, 101929, 'fr', 'name', 'Laboratoire LƩon Brillouin'),
(126490, 101930, 'fr', 'name', 'Centre Hospitalier Universitaire de Poitiers'),
(126491, 101931, 'en', 'name', 'University of Chichester'),
(126492, 101932, 'en', 'name', 'Chongqing Airport'),
(126493, 101933, 'en', 'name', 'Toray Industries, Inc.'),
(126494, 101933, 'ja', 'name', 'ę±ćƒ¬ę Ŗå¼ä¼šē¤¾'),
(126495, 101933, 'no_lang_code', 'name', 'Toray Industries, Inc. (Japan)'),
(126496, 101934, 'en', 'name', 'Rutgers Health'),
(126497, 101935, 'en', 'name', 'Conservatoire for Dance and Drama'),
(126498, 101936, 'id', 'name', 'Universitas Mitra Indonesia'),
(126499, 101937, 'fr', 'name', 'Haute Ɖcole Provinciale de Hainaut Condorcet'),
(126500, 101938, 'nl', 'name', 'Universiteit van CuraƧao'),
(126501, 101938, 'no_lang_code', 'name', 'University of CuraƧao'),
(126502, 101939, 'fr', 'name', 'Centre de recherche sur les InƩgalitƩs Sociales'),
(126503, 101940, 'fr', 'name', 'Groupe de Recherches sur l’Analyse Multimodale de la Fonction CĆ©rĆ©brale'),
(126504, 101941, 'en', 'name', 'Central Institute of Metrology'),
(126505, 101942, 'en', 'name', 'Severe Weather Institute - Radar & Lightning Laboratory'),
(126506, 101943, 'fr', 'name', 'Centre Transdisciplinaire d''ƉpistĆ©mologie de la LittĆ©rature et des Arts vivants'),
(126507, 101944, 'no_lang_code', 'name', 'Cenaero (Belgium)'),
(126508, 101945, 'en', 'name', 'ISLA - Polytechnic Institute of Management and Technology'),
(126509, 101945, 'pt', 'name', 'ISLA - Instituto Politécnico de Gestão e Tecnologia'),
(126510, 101946, 'en', 'name', 'Developmental and Stem Cell Biology'),
(126511, 101946, 'fr', 'name', 'Biologie du DƩveloppement et Cellules Souches'),
(126512, 101947, 'en', 'name', 'Nantong University'),
(126513, 101947, 'zh', 'name', '南通大学'),
(126514, 101948, 'en', 'name', 'Joseph Fourier University'),
(126515, 101948, 'fr', 'name', 'UniversitƩ Joseph Fourier'),
(126516, 101949, 'en', 'name', 'Princess MƔxima Center'),
(126517, 101949, 'nl', 'name', 'Prinses MƔxima Centrum'),
(126518, 101950, 'en', 'name', 'Empower AI, Empower AI (United States)'),
(126519, 101951, 'en', 'name', 'Springfield College'),
(126520, 101952, 'de', 'name', 'Klinik für Schweine'),
(126521, 101953, 'en', 'name', 'Changchun University'),
(126522, 101953, 'zh', 'name', 'é•æę˜„å¤§å­¦'),
(126523, 101954, 'en', 'name', 'Gulf of Mexico Fishery Management Council'),
(126524, 101955, 'en', 'name', 'Xiaohongshu (Little Red Book), Xiaohongshu (Little Red Book) (China)'),
(126525, 101955, 'zh', 'name', 'č”ŒåŸäæ”ęÆē§‘ęŠ€ļ¼ˆäøŠęµ·ļ¼‰ęœ‰é™å…¬åø'),
(126526, 101956, 'en', 'name', 'University of Oklahoma'),
(126527, 101956, 'es', 'name', 'Universidad de Oklahoma'),
(126528, 101957, 'en', 'name', 'University of Marne la VallƩe'),
(126529, 101957, 'fr', 'name', 'UniversitƩ Paris-Est Marne-la-VallƩe'),
(126530, 101958, 'en', 'name', 'Atmosphere Plant Soil Interactions'),
(126531, 101958, 'fr', 'name', 'Interactions Sol Plante AtmosphĆØre'),
(126532, 101959, 'fr', 'name', 'Simplification des soins chez les patients complexes'),
(126533, 101960, 'en', 'name', 'University of Belgrade - Faculty of Transport and Traffic Engineering'),
(126534, 101960, 'sr', 'name', 'Univerzitet u Beogradu - Saobraćajni fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Š”Š°Š¾Š±Ń€Š°Ń›Š°Ń˜Š½Šø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(126535, 101961, 'en', 'name', 'Institute of Physics of 2 Infinities of Lyon'),
(126536, 101961, 'fr', 'name', 'Institut de Physique des 2 Infinis de Lyon'),
(126537, 101962, 'en', 'name', 'California State University, Fullerton'),
(126538, 101962, 'es', 'name', 'Universidad Estatal de California'),
(126539, 101962, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  fullerton'),
(126540, 101963, 'en', 'name', 'Biomechanics and Impact Mechanics Laboratory'),
(126541, 101963, 'fr', 'name', 'Laboratoire de BiomƩcanique et MƩcanique des Chocs'),
(126542, 101964, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ - خان ŁŠŁˆŁ†Ų³'),
(126543, 101964, 'en', 'name', 'University College of Science and Technology - Khan Younis'),
(126544, 101965, 'en', 'name', 'Benefit-sharing Fund of the International Treaty on Plant Genetic Resources for Food and Agriculture'),
(126545, 101966, 'en', 'name', 'Laboratory of Computer Science and Automatic Control for Systems'),
(126546, 101966, 'fr', 'name', 'Laboratoire d''Informatique et d''Automatique pour les SystĆØmes'),
(126547, 101967, 'en', 'name', 'Tianjin University of Commerce'),
(126548, 101967, 'zh', 'name', 'å¤©ę“„å•†äøšå¤§å­¦'),
(126549, 101968, 'en', 'name', 'Akanu Ibiam, Federal Polytechnic Unwana'),
(126550, 101969, 'en', 'name', 'Duolingo, Duolingo (United States)'),
(126551, 101970, 'fr', 'name', 'CIC Rennes, Centre d''Investigation Clinique de Rennes'),
(126552, 101971, 'en', 'name', 'Diversity-Adaptation-Development of Plants'),
(126553, 101971, 'fr', 'name', 'DiversitƩ, adaptation et dƩveloppement des plantes'),
(126554, 101972, 'en', 'name', 'Polytechnic Institute of SantarƩm'),
(126555, 101972, 'pt', 'name', 'Instituto PolitƩcnico de SantarƩm'),
(126556, 101973, 'sv', 'name', 'Rune and Ulla Amlƶvs Stiftelse'),
(126557, 101974, 'en', 'name', 'Nature Inspires Creativity Engineers Lab'),
(126558, 101975, 'en', 'name', 'Tongji Zhejiang College'),
(126559, 101975, 'zh', 'name', 'åŒęµŽå¤§å­¦ęµ™ę±Ÿå­¦é™¢'),
(126560, 101976, 'en', 'name', 'Xiamen National Accounting Institute'),
(126561, 101976, 'zh', 'name', 'å›½å®¶ä¼šč®”å­¦é™¢'),
(126562, 101977, 'en', 'name', 'Central American University José Simeón Cañas'),
(126563, 101977, 'es', 'name', 'Universidad Centroamericana José Simeón Cañas'),
(126564, 101978, 'en', 'name', 'Ecology and Dynamics of Human Influenced Systems'),
(126565, 101978, 'fr', 'name', 'Ecologie et Dynamique des Systèmes Anthropisés'),
(126566, 101979, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© جازان'),
(126567, 101979, 'en', 'name', 'Jazan University'),
(126568, 101980, 'fr', 'name', 'Bibliothèque Interuniversitaire de Santé'),
(126569, 101981, 'en', 'name', 'Azusa Pacific University'),
(126570, 101982, 'en', 'name', 'Institute of Optics and Electronics, Chinese Academy of Sciences'),
(126571, 101983, 'fr', 'name', 'Eco-procƩdƩs, optimisation et aide Ơ la dƩcision'),
(126572, 101984, 'fr', 'name', 'ArchƩologie et ArchƩomƩtrie'),
(126573, 101985, 'fr', 'name', 'Ecologie Comportementale et Biologie des Populations de Poissons'),
(126574, 101986, 'en', 'name', 'Center of Theoretical Physics'),
(126575, 101986, 'fr', 'name', 'Centre de Physique ThƩorique'),
(126576, 101987, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Strasbourg'),
(126577, 101988, 'bs', 'name', 'Evropski univerzitet Brčko distrikt'),
(126578, 101989, 'fr', 'name', 'Institut des langues et cultures d''Europe, AmƩrique, Afrique, Asie et Australie'),
(126579, 101990, 'de', 'name', 'Technische Hochschule Ingolstadt'),
(126580, 101991, 'fr', 'name', 'Fluides, Automatique et SystĆØmes Thermiques'),
(126581, 101992, 'en', 'name', 'UGC-DAE Consortium for Scientific Research, Kolkata Centre'),
(126582, 101993, 'en', 'name', 'Indonesian Muslim University of Makassar'),
(126583, 101993, 'id', 'name', 'Universitas Muslim Indonesia'),
(126584, 101994, 'en', 'name', 'Center for Physiopathology of Toulouse Purpan'),
(126585, 101994, 'fr', 'name', 'Centre de Physiopathologie de Toulouse-Purpan'),
(126586, 101995, 'ar', 'name', 'Ų§Ų²Ų§ŲÆ فرع آبادان Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠ'),
(126587, 101995, 'en', 'name', 'Islamic Azad University, Abadan'),
(126588, 101995, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد آبادان'),
(126589, 101996, 'en', 'name', 'Research Council of Zimbabwe'),
(126590, 101997, 'en', 'name', 'Eindhoven University of Technology'),
(126591, 101997, 'nl', 'name', 'Technische Universiteit Eindhoven'),
(126592, 101998, 'fr', 'name', 'Unité Mixte de Recherche sur l''Ecosystème Prairial'),
(126593, 101999, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© القلم الجامعة'),
(126594, 101999, 'en', 'name', 'Al-Qalam University College'),
(126595, 102000, 'fr', 'name', 'Institut Marcel Mauss'),
(126596, 102001, 'fr', 'name', 'Physiologie de la Reproduction et des Comportements'),
(126597, 102002, 'en', 'name', 'Guangxi University'),
(126598, 102002, 'zh', 'name', '广脿大学'),
(126599, 102003, 'en', 'name', 'British Medical Association'),
(126600, 102004, 'en', 'name', 'Laboratory of Space Geophysical and Oceanographic Studies'),
(126601, 102004, 'fr', 'name', 'Laboratoire d’Études en GĆ©ophysique et OcĆ©anographie Spatiales'),
(126602, 102005, 'en', 'name', 'Institute of Geology and Mineral Exploration'),
(126603, 102006, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© غرداية'),
(126604, 102006, 'en', 'name', 'University of Ghardaia'),
(126605, 102007, 'de', 'name', 'CAMPUS 02 Fachhochschule der Wirtschaft'),
(126606, 102007, 'en', 'name', 'CAMPUS 02 University for Applied Sciences'),
(126607, 102008, 'fr', 'name', 'Agence pour les MathƩmatiques en Interaction avec l''Entreprise et la SociƩtƩ'),
(126608, 102009, 'en', 'name', 'Wayne State College'),
(126609, 102010, 'ca', 'name', 'Biblioteca Nacional d''Espanya'),
(126610, 102010, 'en', 'name', 'National Library of Spain'),
(126611, 102010, 'es', 'name', 'Biblioteca Nacional de EspaƱa'),
(126612, 102010, 'eu', 'name', 'Espainiako Liburutegi Nazionala'),
(126613, 102011, 'en', 'name', 'Daimler Truck (United States)'),
(126614, 102012, 'en', 'name', 'Wild Animal Initiative'),
(126615, 102013, 'en', 'name', 'BERD@NFDI'),
(126616, 102014, 'en', 'name', 'Computer Processing and Analysis of the French Language'),
(126617, 102014, 'fr', 'name', 'Analyse et Traitement Informatique de la Langue FranƧaise'),
(126618, 102015, 'en', 'name', 'International Criminal Police Organization'),
(126619, 102015, 'fr', 'name', 'Organisation internationale de police criminelle'),
(126620, 102016, 'en', 'name', 'Board of Cooperative Educational Services of Nassau County'),
(126621, 102017, 'en', 'name', 'Hefei University of Technology'),
(126622, 102017, 'zh', 'name', 'åˆč‚„å·„äøšå¤§å­¦'),
(126623, 102018, 'en', 'name', 'Central South University of Forestry and Technology'),
(126624, 102018, 'zh', 'name', 'äø­å—ęž—äøšē§‘ęŠ€å¤§å­¦'),
(126625, 102019, 'es', 'name', 'Unidad AcadƩmica del Norte del Estado de Nayarit'),
(126626, 102020, 'en', 'name', 'Hubei University of Technology'),
(126627, 102020, 'zh', 'name', 'ę¹–åŒ—å·„äøšå¤§å­¦'),
(126628, 102021, 'cs', 'name', 'Ústav geoniky AV ČR, Ústav geoniky AV ČR, v. v. i., Ústav geoniky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(126629, 102021, 'en', 'name', 'Czech Academy of Sciences, Institute of Geonics'),
(126630, 102022, 'en', 'name', 'Korn Ferry, Korn Ferry (United States)'),
(126631, 102023, 'en', 'name', 'National Council Of Educational Research And Training'),
(126632, 102023, 'kn', 'name', 'ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ą²¶ą³ˆą²•ą³ą²·ą²£ą²æą²• ಸಂಶೋಧನಾ ą²®ą²¤ą³ą²¤ą³ ತರಬೇತಿ ą²Ŗą²°ą²æą²·ą²¤ą³'),
(126633, 102024, 'en', 'name', 'Utah Agricultural Experiment Station'),
(126634, 102025, 'en', 'name', 'Maastricht University Medical Centre'),
(126635, 102025, 'nl', 'name', 'Academisch Ziekenhuis Maastricht'),
(126636, 102026, 'fr', 'name', 'HƓpital Robert-DebrƩ'),
(126637, 102027, 'fr', 'name', 'Laboratoire de Chimie et Biologie des MƩtaux'),
(126638, 102028, 'pt', 'name', 'ISPA - Instituto UniversitƔrio'),
(126639, 102029, 'ja', 'name', 'ē©ę°“ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ę Ŗå¼ä¼šē¤¾'),
(126640, 102029, 'no_lang_code', 'name', 'Sekisui Medical (Japan)'),
(126641, 102030, 'en', 'name', 'University of Connecticut'),
(126642, 102030, 'es', 'name', 'Universidad de Connecticut'),
(126643, 102030, 'fr', 'name', 'UniversitƩ du connecticut'),
(126644, 102031, 'fr', 'name', 'Ɖcole SupĆ©rieure des Sciences Ɖconomiques et Commerciales, Ɖcole supĆ©rieure des sciences Ć©conomiques et commerciales'),
(126645, 102032, 'en', 'name', 'Clackamas Community College'),
(126646, 102033, 'ar', 'name', 'Ų§Ł„Ł‡ŁŠŲ¦Ų© Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© Ł„Ł„Ł…ŁˆŲ§ŲµŁŲ§ŲŖ ŁˆŲ§Ł„Ł…Ł‚Ų§ŁŠŁŠŲ³ ŁˆŲ§Ł„Ų¬ŁˆŲÆŲ©'),
(126647, 102033, 'en', 'name', 'Saudi Standards, Metrology and Quality Organization'),
(126648, 102034, 'en', 'name', 'Zhejiang University of Technology'),
(126649, 102034, 'zh', 'name', 'ęµ™ę±Ÿå·„äøšå¤§å­¦'),
(126650, 102035, 'en', 'name', 'The Centre for Studies on China, Korea and Japan'),
(126651, 102035, 'fr', 'name', 'Chine, CorƩe, Japon'),
(126652, 102036, 'en', 'name', 'DĆŗn Laoghaire Institute of Art, Design and Technology'),
(126653, 102036, 'ga', 'name', 'InstitiĆŗid EalaĆ­ona,Dearadh agus TeicneolaĆ­ochta DhĆŗn Laoghaire'),
(126654, 102037, 'en', 'name', 'Institute of Engineering Seismology and Earthquake Engineering'),
(126655, 102038, 'fr', 'name', 'Centre Alexandre KoyrƩ'),
(126656, 102039, 'en', 'name', 'Wincanton Community Hospital'),
(126657, 102040, 'en', 'name', 'Immunology from Concept and Experiments to Translation'),
(126658, 102041, 'fr', 'name', 'Groupe de Recherche sur les formes Injectables et les Technologies AssociƩes'),
(126659, 102042, 'fr', 'name', 'Institut Covid-19 Ad Memoriam'),
(126660, 102043, 'en', 'name', 'Laboratory of Solid State Physics'),
(126661, 102043, 'fr', 'name', 'Laboratoire de physique des Solides'),
(126662, 102044, 'en', 'name', 'Üsküdar University'),
(126663, 102044, 'tr', 'name', 'Üsküdar Üniversitesi'),
(126664, 102045, 'en', 'name', 'Punta Galeta Marine Laboratory'),
(126665, 102046, 'en', 'name', 'Marathon Petroleum, Marathon Petroleum (United States)'),
(126666, 102047, 'de', 'name', 'Direktion für Entwicklung und Zusammenarbeit DEZA'),
(126667, 102047, 'en', 'name', 'Swiss Agency for Development and Cooperation, Swiss Agency for Development and Cooperation SDC'),
(126668, 102047, 'fr', 'name', 'Direction du dƩveloppement et de la coopƩration DDC'),
(126669, 102047, 'it', 'name', 'Direzione dello sviluppo e della cooperazione DSC'),
(126670, 102048, 'en', 'name', 'Wilhelm and Else Stockmann Foundation'),
(126671, 102048, 'sv', 'name', 'Wilhelm och Else Stockmanns Stiftelse'),
(126672, 102049, 'es', 'name', 'Instituto de Investigaciones Sociales'),
(126673, 102050, 'fr', 'name', 'Physiopathologie et pharmacotoxicologie placentaire humaine : Microbiote prƩ & post natal'),
(126674, 102051, 'cs', 'name', 'GeofyzikĆ”lnĆ­ Ćŗstav AV ČR, GeofyzikĆ”lnĆ­ Ćŗstav AV ČR, v. v. i., GeofyzikĆ”lnĆ­ Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(126675, 102051, 'en', 'name', 'Czech Academy of Sciences, Institute of Geophysics'),
(126676, 102052, 'fr', 'name', 'HƓpital Corentin-Celton'),
(126677, 102053, 'pt', 'name', 'Universidade Lusƭada - Centro UniversitƔrio Lusƭada - Norte (campus do Porto)'),
(126678, 102054, 'no_lang_code', 'name', 'DAF Trucks (Netherlands)'),
(126679, 102055, 'en', 'name', 'Kajaani University of Applied Sciences'),
(126680, 102055, 'fi', 'name', 'Kajaanin ammattikorkeakoulu'),
(126681, 102056, 'en', 'name', 'Osun State Polytechnic, Iree'),
(126682, 102057, 'en', 'name', 'Vermont State Colleges'),
(126683, 102058, 'en', 'name', 'Indian Institute of Management Ahmedabad'),
(126684, 102058, 'gu', 'name', 'આઇ.આઇ.ąŖąŖ®. અમદાવાદ'),
(126685, 102058, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(126686, 102058, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“®ą“¾ą“Øąµ‡ą“œąµą“®ąµ†ą“Øąµą“±ąµ'),
(126687, 102058, 'mr', 'name', 'इंऔियन ą¤‡ą¤Øą„ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤®ą„…ą¤Øą„‡ą¤œą¤®ą„‡ą¤Øą„ą¤Ÿ'),
(126688, 102058, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ ą®…ą®•ą®®ą®¤ą®¾ą®Ŗą®¾ą®¤ąÆ'),
(126689, 102059, 'en', 'name', 'University of Science and Technology Beijing'),
(126690, 102059, 'zh', 'name', 'åŒ—äŗ¬ē§‘ęŠ€å¤§å­¦'),
(126691, 102060, 'en', 'name', 'Center for Research and Restoration of Museums of France'),
(126692, 102060, 'fr', 'name', 'Centre de recherche et de restauration des musƩes de France'),
(126693, 102061, 'en', 'name', 'Regions Financial, Regions Financial (United States)'),
(126694, 102062, 'fr', 'name', 'Groupement de Recherche en Ɖconomie Quantitative d’Aix-Marseille'),
(126695, 102063, 'en', 'name', 'Nepal Bureau of Standards and Metrology'),
(126696, 102063, 'ne', 'name', 'ą¤Øą„‡ą¤Ŗą¤¾ą¤² ą¤—ą„ą¤£ą¤øą„ą¤¤ą¤° तऄा ą¤Øą¤¾ą¤Ŗą¤¤ą„Œą¤² विभाग'),
(126697, 102064, 'en', 'name', 'Open Molecular Software Foundation'),
(126698, 102065, 'en', 'name', 'University of Wisconsin–River Falls'),
(126699, 102065, 'fr', 'name', 'UniversitĆ© du Wisconsin–River Falls'),
(126700, 102066, 'en', 'name', 'OLS'),
(126701, 102067, 'en', 'name', 'Salford City College'),
(126702, 102068, 'fr', 'name', 'Laboratoire Albert Fert'),
(126703, 102069, 'en', 'name', 'Marshall University'),
(126704, 102070, 'de', 'name', 'Konrad-Zuse-Zentrum für Informationstechnik Berlin'),
(126705, 102070, 'en', 'name', 'Zuse Institute Berlin'),
(126706, 102071, 'sk', 'name', 'AkadƩmia Umenƭ v Banskej Bystrici'),
(126707, 102072, 'en', 'name', 'Animal and Human Ethology'),
(126708, 102072, 'fr', 'name', 'Ethologie animale et humaine'),
(126709, 102073, 'en', 'name', 'Patel Institute of Science and Management'),
(126710, 102074, 'no_lang_code', 'name', 'Kinder Morgan, Kinder Morgan (United States)'),
(126711, 102075, 'en', 'name', 'Rennes School of Business'),
(126712, 102075, 'fr', 'name', 'Ɖcole SupĆ©rieure de Commerce de Rennes'),
(126713, 102076, 'en', 'name', 'Institute of Biochemistry, Molecular Biology and Biotechnology'),
(126714, 102077, 'en', 'name', 'University of Salamanca'),
(126715, 102077, 'es', 'name', 'Universidad de Salamanca'),
(126716, 102078, 'en', 'name', 'Catalysis, Polymerisation, Process and Materials'),
(126717, 102078, 'fr', 'name', 'Catalyse, PolymƩrisation, ProcƩdƩs et MatƩriaux'),
(126718, 102079, 'en', 'name', 'Davidson College'),
(126719, 102080, 'en', 'name', 'Pierre MendĆØs-France University'),
(126720, 102080, 'fr', 'name', 'Université Pierre Mendès France'),
(126721, 102081, 'en', 'name', 'Vaccine Research Institute'),
(126722, 102081, 'fr', 'name', 'Institut de Recherche Vaccinale'),
(126723, 102082, 'no_lang_code', 'name', 'Novartis (Switzerland)'),
(126724, 102083, 'fr', 'name', 'Archives Henri-PoincarƩ - Philosophie et Recherches sur les Sciences et les Technologies'),
(126725, 102084, 'en', 'name', 'Upper Midwest Water Science Center'),
(126726, 102085, 'en', 'name', 'Paris Network for Advanced Microscopy'),
(126727, 102086, 'en', 'name', 'National Fire Agency'),
(126728, 102086, 'ko', 'name', 'ėŒ€ķ•œėÆ¼źµ­ ģ†Œė°©ģ²­'),
(126729, 102087, 'es', 'name', 'Escuela Normal Rural "Justo Sierra MƩndez"'),
(126730, 102088, 'fr', 'name', 'Laboratoire de MƩcanique et GƩnie Civil'),
(126731, 102089, 'en', 'name', 'Villanueva University'),
(126732, 102089, 'es', 'name', 'Universidad Villanueva'),
(126733, 102090, 'no_lang_code', 'name', 'Cree (China)'),
(126734, 102091, 'en', 'name', 'Pony.AI, Pony.AI (China)'),
(126735, 102092, 'en', 'name', 'Guangxi Normal University'),
(126736, 102092, 'zh', 'name', '广脿师范大学'),
(126737, 102093, 'de', 'name', 'Swissuniversities'),
(126738, 102094, 'en', 'name', 'Scientific and Technical Center for Building'),
(126739, 102094, 'fr', 'name', 'Centre Scientifique et Technique du BĆ¢timent'),
(126740, 102095, 'en', 'name', 'Bocas del Toro Research Station'),
(126741, 102095, 'es', 'name', 'Bocas del Toro Estación de Investigación'),
(126742, 102096, 'fr', 'name', 'Laboratoire Charles Coulomb'),
(126743, 102097, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲµŲ­Ų§Ų±'),
(126744, 102097, 'en', 'name', 'Sohar University'),
(126745, 102098, 'en', 'name', 'Great Lakes Indian Fish & Wildlife Commission'),
(126746, 102099, 'en', 'name', 'Disability Community Resource Center'),
(126747, 102100, 'no_lang_code', 'name', 'Textron Systems (Germany)'),
(126748, 102101, 'cs', 'name', 'NƔrodnƭ TechnickƩ Muzeum'),
(126749, 102101, 'en', 'name', 'National Technical Museum'),
(126750, 102102, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ‡ŁˆŁƒ'),
(126751, 102102, 'en', 'name', 'University of Duhok'),
(126752, 102103, 'en', 'name', 'Harrisburg University of Science and Technology'),
(126753, 102104, 'en', 'name', 'Meredith College'),
(126754, 102105, 'en', 'name', 'Al Hikma University'),
(126755, 102106, 'en', 'name', 'Institute of Psychiatry and Neuroscience of Paris'),
(126756, 102106, 'fr', 'name', 'Institut de Psychiatrie et Neurosciences de Paris'),
(126757, 102107, 'fr', 'name', 'Plateformes mutualisƩes de l''Institut du mƩdicament'),
(126758, 102108, 'en', 'name', 'Laboratory for Therapeutic Innovation'),
(126759, 102108, 'fr', 'name', 'Laboratoire d''Innovation ThƩrapeutique'),
(126760, 102109, 'pt', 'name', 'Laboratório de Ensaios Desgaste e Materiais'),
(126761, 102110, 'fr', 'name', 'UnitƩ de Glycobiologie Structurale et Fonctionnelle'),
(126762, 102111, 'en', 'name', 'Shanghai Lixin University of Accounting and Finance'),
(126763, 102111, 'zh', 'name', 'äøŠęµ·ē«‹äæ”ä¼šč®”é‡‘čžå­¦é™¢'),
(126764, 102112, 'en', 'name', 'Anyang Normal University'),
(126765, 102112, 'zh', 'name', 'å®‰é˜³åøˆčŒƒå­¦é™¢'),
(126766, 102113, 'en', 'name', 'University of the Littoral Opal Coast'),
(126767, 102113, 'fr', 'name', 'UniversitƩ du littoral cƓte d''opale'),
(126768, 102114, 'en', 'name', 'Copenhagen Business Academy'),
(126769, 102115, 'en', 'name', 'Ministry of Justice'),
(126770, 102115, 'fr', 'name', 'MinistĆØre de la Justice'),
(126771, 102116, 'en', 'name', 'National Center for Emerging and Zoonotic Infectious Diseases'),
(126772, 102117, 'fr', 'name', 'Direction de la Recherche Technologique'),
(126773, 102118, 'en', 'name', 'National Institute for Astrophysics'),
(126774, 102118, 'it', 'name', 'Istituto Nazionale di Astrofisica'),
(126775, 102119, 'fr', 'name', 'Laboratoire de MathƩmatiques de Bretagne Atlantique'),
(126776, 102120, 'en', 'name', 'Prague Advanced Technology and Research Innovation Center, a.s.'),
(126777, 102121, 'en', 'name', 'Colorado State University Pueblo'),
(126778, 102122, 'fr', 'name', 'Linguistique IngƩnierie et Didactique des Langues'),
(126779, 102123, 'en', 'name', 'Center for Research on Inflammation'),
(126780, 102123, 'fr', 'name', 'Centre de Recherche sur l''Inflammation'),
(126781, 102124, 'cs', 'name', 'ČeskĆ” botanickĆ” společnost'),
(126782, 102124, 'en', 'name', 'Czech Botanical Society'),
(126783, 102125, 'en', 'name', 'Wyoming Humanities Council'),
(126784, 102126, 'ko', 'name', 'ģ—ķ”¼ė°”ģ“ģ˜¤ķ…'),
(126785, 102126, 'no_lang_code', 'name', 'Epi Biotech Co., Ltd., Epi Biotech Co., Ltd. (South Korea)'),
(126786, 102127, 'en', 'name', 'Nexus for Quantum Technologies Institute'),
(126787, 102127, 'fr', 'name', 'Institut Nexus de technologies quantiques'),
(126788, 102128, 'en', 'name', 'Hanoi Academy of Theater and Cinema'),
(126789, 102128, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c SĆ¢n khįŗ„u vĆ  Điện įŗ£nh HĆ  Nį»™i'),
(126790, 102129, 'en', 'name', 'Laboratory of Plant-Microbe Interactions'),
(126791, 102129, 'fr', 'name', 'Laboratoire des Interactions Plantes Micro-Organismes'),
(126792, 102130, 'en', 'name', 'Society of Dramatic Authors and Composers'),
(126793, 102130, 'fr', 'name', 'SociƩtƩ des Auteurs et Compositeurs Dramatiques'),
(126794, 102131, 'en', 'name', 'Thames Valley Air Ambulance'),
(126795, 102132, 'en', 'name', 'Florida International University'),
(126796, 102132, 'es', 'name', 'Universidad Internacional de Florida'),
(126797, 102132, 'fr', 'name', 'UniversitƩ internationale de floride'),
(126798, 102133, 'en', 'name', 'Research Centre on the Future of Cities'),
(126799, 102133, 'fr', 'name', 'Centre de recherche sur le futur des villes'),
(126800, 102134, 'de', 'name', 'Schweizerische Akademie der Technischen Wissenschaften'),
(126801, 102134, 'en', 'name', 'Swiss Academy of Engineering Sciences SATW'),
(126802, 102134, 'fr', 'name', 'AcadƩmie suisse des sciences techniques'),
(126803, 102134, 'it', 'name', 'Accademia svizzera delle scienze tecniche'),
(126804, 102135, 'de', 'name', 'GEOMAR Helmholtz-Zentrum für Ozeanforschung Kiel'),
(126805, 102135, 'en', 'name', 'GEOMAR Helmholtz Centre for Ocean Research Kiel'),
(126806, 102136, 'en', 'name', 'JosƩ de Mello Group'),
(126807, 102136, 'pt', 'name', 'Grupo Jose de Mello, Grupo Jose de Mello (Portugal)'),
(126808, 102137, 'fr', 'name', 'Centre Giovanni Borelli'),
(126809, 102138, 'en', 'name', 'Mental Illness Research, Education and Clinical Centers'),
(126810, 102139, 'no_lang_code', 'name', 'Paccar (United States)'),
(126811, 102140, 'en', 'name', 'Centre for Cognitive Neuroscience'),
(126812, 102140, 'fr', 'name', 'Institut de sciences cognitives Marc Jeannerod'),
(126813, 102141, 'en', 'name', 'Pingtan Environmental Monitoring Center of Fujian'),
(126814, 102141, 'zh', 'name', 'ē¦å»ŗēœå¹³ę½­ēŽÆå¢ƒē›‘ęµ‹äø­åæƒē«™'),
(126815, 102142, 'en', 'name', 'South Dakota Humanities Council'),
(126816, 102143, 'en', 'name', 'Medicines360'),
(126817, 102144, 'en', 'name', 'University of Redlands'),
(126818, 102144, 'fr', 'name', 'UniversitƩ de redlands'),
(126819, 102145, 'en', 'name', 'University of Colorado Denver'),
(126820, 102145, 'es', 'name', 'Universidad de Colorado en Denver'),
(126821, 102145, 'fr', 'name', 'UniversitƩ du Colorado Ơ Denver'),
(126822, 102146, 'en', 'name', 'Liaocheng Center for Disease Control and Prevention'),
(126823, 102146, 'zh', 'name', 'čŠåŸŽåø‚ē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(126824, 102147, 'en', 'name', 'National Information Society Agency, ķ•œźµ­ģ§€ėŠ„ģ •ė³“ģ‚¬ķšŒģ§„ķ„ģ›'),
(126825, 102148, 'en', 'name', 'Lille University Management'),
(126826, 102149, 'en', 'name', 'Isparta University of Applied Sciences'),
(126827, 102149, 'tr', 'name', 'Isparta Uygulamalı Bilimler Üniversitesi'),
(126828, 102150, 'en', 'name', 'Climate Equity Reference Project'),
(126829, 102151, 'en', 'name', 'Astronomical Observatory of Rome'),
(126830, 102151, 'it', 'name', 'Osservatorio Astronomico di Roma'),
(126831, 102152, 'en', 'name', 'Manchester Metropolitan University'),
(126832, 102153, 'fr', 'name', 'Textes, reprƩsentations, archƩologie, autoritƩ et mƩmoire de l''antiquitƩ Ơ la renaissance'),
(126833, 102154, 'no_lang_code', 'name', 'Lululemon Athletica, Lululemon Athletica (United States)'),
(126834, 102155, 'fr', 'name', 'Institut de Recherche MathƩmatique AvancƩe'),
(126835, 102156, 'en', 'name', 'Bergen Community College'),
(126836, 102157, 'fr', 'name', 'Centre de recherches en Philosophie, Sociologie, SƩmiologie et Politique'),
(126837, 102158, 'en', 'name', 'Society for Ecological Restoration'),
(126838, 102159, 'en', 'name', 'Dalian Minzu University'),
(126839, 102159, 'zh', 'name', 'å¤§čæžę°‘ę—å¤§å­¦'),
(126840, 102160, 'en', 'name', 'Ogun State Ministry of Health'),
(126841, 102161, 'en', 'name', 'Fresenius Medical Care Portugal, Fresenius Medical Care Portugal (Portugal)'),
(126842, 102162, 'en', 'name', 'Institute for Sustainable Development and International Relations'),
(126843, 102162, 'fr', 'name', 'Institut du DƩveloppement Durable et des Relations Internationales'),
(126844, 102163, 'en', 'name', 'MGM Resorts International, MGM Resorts International (United States)'),
(126845, 102164, 'es', 'name', 'Tecnológico Universitario del Valle de Chalco'),
(126846, 102165, 'en', 'name', 'Tumkur University'),
(126847, 102166, 'en', 'name', 'Sacred Heart College of Lucena City, Inc.'),
(126848, 102167, 'en', 'name', 'Kempelen Institute of Intelligent Technologies'),
(126849, 102168, 'en', 'name', 'Cobham (United States)'),
(126850, 102169, 'en', 'name', 'NOAA Center for Earth System Sciences and Remote Sensing Technologies'),
(126851, 102170, 'it', 'name', 'Istituto Italiano di Studi Germanici'),
(126852, 102171, 'de', 'name', 'LMU Klinikum'),
(126853, 102172, 'pt', 'name', 'Escola Superior de Saúde da Fundação ''Fernando Pessoa'''),
(126854, 102173, 'en', 'name', 'Wuhan Textile University'),
(126855, 102174, 'cs', 'name', 'VědeckĆ” knihovna v Olomouci'),
(126856, 102174, 'de', 'name', 'Wissenschaftliche Bibliothek Olomouc'),
(126857, 102174, 'en', 'name', 'Olomouc Research Library'),
(126858, 102175, 'fr', 'name', 'Ecole Nationale du GƩnie de l''Eau et de l''Environnement de Strasbourg (ENGEES)'),
(126859, 102176, 'la', 'name', 'Collegium Carolinum'),
(126860, 102177, 'en', 'name', 'Idaho Humanities Council'),
(126861, 102178, 'fr', 'name', 'Maison Interuniversitaire des Sciences de l''Homme'),
(126862, 102179, 'en', 'name', 'Coibita Island'),
(126863, 102179, 'es', 'name', 'Isla Coibita, RancherĆ­a'),
(126864, 102180, 'en', 'name', 'Atlas University'),
(126865, 102180, 'tr', 'name', 'Atlas Üniversitesi'),
(126866, 102181, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi Gentiaras'),
(126867, 102182, 'fr', 'name', 'Institut de Neurobiologie de la MƩditerranƩe'),
(126868, 102183, 'en', 'name', 'University of Belgrade – Faculty of Technology and Metallurgy'),
(126869, 102183, 'sr', 'name', 'Univerzitet u Beogradu – TehnoloÅ”ko-metalurÅ”ki fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¢ŠµŃ…Š½Š¾Š»Š¾ŃˆŠŗŠ¾-Š¼ŠµŃ‚Š°Š»ŃƒŃ€ŃˆŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(126870, 102184, 'no_lang_code', 'name', 'Hikvision, Hikvision (China)'),
(126871, 102184, 'zh', 'name', 'ę­å·žęµ·åŗ·åØč§†ę•°å­—ęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(126872, 102185, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Laboratori Nazionali del Sud'),
(126873, 102185, 'no_lang_code', 'name', 'National Institute for Nuclear Physics, Laboratori Nazionali del Sud'),
(126874, 102186, 'en', 'name', 'Fujian Chuanzheng Communications College'),
(126875, 102186, 'zh', 'name', 'ē¦å»ŗčˆ¹ę”æäŗ¤é€ščŒäøšå­¦é™¢'),
(126876, 102187, 'en', 'name', 'NOAA National Ocean Service'),
(126877, 102188, 'en', 'name', 'Technical University of Cartagena'),
(126878, 102188, 'es', 'name', 'Universidad PolitƩcnica de Cartagena'),
(126879, 102189, 'fr', 'name', 'CALMIP'),
(126880, 102190, 'fr', 'name', 'Laboratoire Cognitions Humaine et Artificielle'),
(126881, 102191, 'en', 'name', 'St Helens College'),
(126882, 102192, 'en', 'name', 'Huanghuai University'),
(126883, 102192, 'zh', 'name', '黄淮学院'),
(126884, 102193, 'en', 'name', 'Nice Sophia Antipolis University'),
(126885, 102193, 'fr', 'name', 'UniversitƩ Nice Sophia Antipolis'),
(126886, 102194, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ Ł‡ŁˆŲ§Ų±ŁŠ ŲØŁˆŁ…ŲÆŁŠŁ†'),
(126887, 102194, 'en', 'name', 'University of Sciences and Technology Houari Boumediene'),
(126888, 102194, 'fr', 'name', 'UniversitƩ des Sciences et de la Technologie Houari-Boumediene'),
(126889, 102195, 'en', 'name', 'Avalanche Canada'),
(126890, 102196, 'en', 'name', 'Lisbon Tropical Botanical Garden'),
(126891, 102196, 'pt', 'name', 'Jardim Botânico Tropical'),
(126892, 102197, 'es', 'name', 'Fundación Puertorriqueña de las Humanidades'),
(126893, 102198, 'pt', 'name', 'Governo da República Portuguesa Ministério do Mar'),
(126894, 102199, 'pt', 'name', 'Instituto Nacional de Engenharia BiomƩdica'),
(126895, 102200, 'es', 'name', 'Tecnológico Nacional de México Campus Ciudad SerdÔn'),
(126896, 102201, 'en', 'name', 'Sir Salimullah Medical College'),
(126897, 102202, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪĪµĪ¬Ļ€ĪæĪ»Ī¹Ļ‚ Πάφου'),
(126898, 102202, 'en', 'name', 'Neapolis University Pafos'),
(126899, 102203, 'de', 'name', 'Fachhochschule Westschweiz Freiburg'),
(126900, 102203, 'en', 'name', 'University of Applied Sciences and Arts Western Switzerland Fribourg'),
(126901, 102203, 'fr', 'name', 'HES-SO Fribourg, Haute Ɖcole SpĆ©cialisĆ©e de Suisse Occidentale de Fribourg'),
(126902, 102204, 'en', 'name', 'Keio University'),
(126903, 102204, 'ja', 'name', '慶應義唾大学'),
(126904, 102205, 'en', 'name', 'Kyoto University'),
(126905, 102205, 'ja', 'name', '京都大学'),
(126906, 102206, 'en', 'name', 'University of Campania "Luigi Vanvitelli"'),
(126907, 102206, 'it', 'name', 'UniversitĆ  degli Studi della Campania "Luigi Vanvitelli"'),
(126908, 102207, 'en', 'name', 'EHL Hospitality Business School'),
(126909, 102208, 'de', 'name', 'Hochschule für Philosophie München'),
(126910, 102208, 'en', 'name', 'Munich School of Philosophy'),
(126911, 102209, 'de', 'name', 'Max-Planck-Institut für Chemische Ɩkologie'),
(126912, 102209, 'en', 'name', 'Max Planck Institute for Chemical Ecology'),
(126913, 102210, 'no_lang_code', 'name', 'Didi Chuxing, Didi Chuxing (China)'),
(126914, 102210, 'zh', 'name', 'åŒ—äŗ¬å°ę””ē§‘ęŠ€ęœ‰é™å…¬åø'),
(126915, 102211, 'fr', 'name', 'Centre Hospitalier Sainte-Anne'),
(126916, 102212, 'en', 'name', 'Zhijiang College of Zhejiang University of Technology'),
(126917, 102212, 'zh', 'name', 'ęµ™ę±Ÿå·„äøšå¤§å­¦ä¹‹ę±Ÿå­¦é™¢'),
(126918, 102213, 'en', 'name', 'Korea Technology and Information Promotion Agency for SMEs'),
(126919, 102213, 'ko', 'name', 'ģ¤‘ģ†Œźø°ģ—…źø°ģˆ ģ •ė³“ģ§„ķ„ģ›'),
(126920, 102214, 'pt', 'name', 'Museu Nacional de Etnologia'),
(126921, 102215, 'pt', 'name', 'Instituto de Investigação em Design Media e Cultura'),
(126922, 102216, 'en', 'name', 'UConn Health'),
(126923, 102217, 'fr', 'name', 'Laboratoire d''Ʃtudes sur les monothƩismes'),
(126924, 102218, 'es', 'name', 'Centro Internacional Franco-Argentino de Ciencias de la Información y de Sistemas'),
(126925, 102219, 'en', 'name', 'Kujawy and Pomorze University in Bydgoszcz'),
(126926, 102219, 'pl', 'name', 'Kujawsko-Pomorska Szkoła Wyższa w Bydgoszczy'),
(126927, 102220, 'ca', 'name', 'Institut Nacional de TĆØcnica Aeroespacial d''Espanya'),
(126928, 102220, 'en', 'name', 'National Institute for Aerospace Technology'),
(126929, 102220, 'es', 'name', 'Instituto Nacional de TƩcnica Aeroespacial'),
(126930, 102220, 'eu', 'name', 'Teknika Aeroespazialaren Institutu Nazionala'),
(126931, 102221, 'en', 'name', 'Woman Online University'),
(126932, 102221, 'fa', 'name', 'دانؓگاه Ų¢Ł†Ł„Ų§ŪŒŁ† زن'),
(126933, 102222, 'fr', 'name', 'Institut Pasteur de Nha Trang'),
(126934, 102223, 'en', 'name', 'Zuyd University of Applied Sciences'),
(126935, 102223, 'nl', 'name', 'Zuyd Hogeschool'),
(126936, 102224, 'en', 'name', 'Japan Society for the Promotion of Science London'),
(126937, 102225, 'fr', 'name', 'Laboratoire de RƩactivitƩ et Chimie des Solides'),
(126938, 102226, 'ca', 'name', 'Universitat de Tolon'),
(126939, 102226, 'en', 'name', 'University of Toulon'),
(126940, 102226, 'fr', 'name', 'UniversitƩ de Toulon'),
(126941, 102227, 'fr', 'name', 'Laboratoire de Physique et ModƩlisation des Milieux CondensƩs'),
(126942, 102228, 'en', 'name', 'Van Hall Larenstein University of Applied Sciences'),
(126943, 102228, 'nl', 'name', 'Hogeschool Van Hall Larenstein'),
(126944, 102229, 'de', 'name', 'Rat für Forschung und Technologieentwicklung'),
(126945, 102229, 'en', 'name', 'Austrian Council for Research and Technology Development'),
(126946, 102230, 'fr', 'name', 'Laboratoire d''Optique AtmosphƩrique'),
(126947, 102231, 'en', 'name', 'Developmental Biology Institute of Marseille'),
(126948, 102231, 'fr', 'name', 'Institut de Biologie du DƩveloppement Marseille'),
(126949, 102232, 'en', 'name', 'National Center for Theoretical Sciences'),
(126950, 102232, 'zh', 'name', 'åœ‹å®¶ē†č«–ē§‘å­øē ”ē©¶äø­åæƒ'),
(126951, 102233, 'fr', 'name', 'CEA Grenoble'),
(126952, 102234, 'es', 'name', 'Instituto Tecnológico de Zacatepec'),
(126953, 102235, 'en', 'name', 'Ruskin College'),
(126954, 102236, 'en', 'name', 'Cancer Research Center of Lyon'),
(126955, 102236, 'fr', 'name', 'Centre de Recherche en CancƩrologie de Lyon'),
(126956, 102237, 'en', 'name', 'National Center for Theoretical Sciences, Physics Division'),
(126957, 102237, 'zh', 'name', 'åœ‹å®¶ē†č«–ē§‘å­øē ”ē©¶äø­åæƒ 物理組'),
(126958, 102238, 'en', 'name', 'University of Jinan'),
(126959, 102238, 'zh', 'name', 'ęµŽå—å¤§å­¦'),
(126960, 102239, 'en', 'name', 'Dianchi College'),
(126961, 102239, 'zh', 'name', '滇池學院'),
(126962, 102240, 'en', 'name', 'Laboratory for Materials and Construction Works Durability'),
(126963, 102240, 'fr', 'name', 'Laboratoire MatƩriaux et DurabilitƩ des Constructions'),
(126964, 102241, 'en', 'name', 'DePauw University'),
(126965, 102242, 'en', 'name', 'Brooklyn Perinatal Network'),
(126966, 102243, 'fr', 'name', 'Institut Galien Paris-Saclay'),
(126967, 102244, 'en', 'name', 'LariboisiĆØre Hospital'),
(126968, 102244, 'fr', 'name', 'HÓpital Lariboisière'),
(126969, 102245, 'en', 'name', 'Institute for Applied Research and Experimentation in Civil Engineering'),
(126970, 102245, 'fr', 'name', 'Institut pour la Recherche AppliquƩe et l''ExpƩrimentation en GƩnie Civil'),
(126971, 102246, 'en', 'name', 'Pact for Youth Association'),
(126972, 102247, 'en', 'name', 'Curvenote Inc. (Canada)'),
(126973, 102248, 'en', 'name', 'New York State College of Ceramics'),
(126974, 102249, 'fr', 'name', 'Laboratoire des Composites Thermo Structuraux'),
(126975, 102250, 'fr', 'name', 'Laboratoire Informatique d''Avignon'),
(126976, 102251, 'en', 'name', 'Sigma Clermont'),
(126977, 102252, 'en', 'name', 'Air Force Communication NCO Academy'),
(126978, 102252, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›é€šäæ”å£«å®˜å­¦ę ”'),
(126979, 102253, 'en', 'name', 'Paris Diderot University'),
(126980, 102253, 'fr', 'name', 'UniversitƩ Paris Diderot'),
(126981, 102254, 'en', 'name', 'East China Normal University'),
(126982, 102254, 'zh', 'name', 'åŽäøœåøˆčŒƒå¤§å­¦'),
(126983, 102255, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­Ł…ŲÆŲ§Ł†ŁŠŲ©'),
(126984, 102255, 'en', 'name', 'University of Al-Hamdaniya'),
(126985, 102256, 'en', 'name', 'Mitsubishi Fuso Truck and Bus, Mitsubishi Fuso Truck and Bus (Japan)'),
(126986, 102256, 'ja', 'name', 'äø‰č±ćµćć†ćƒˆćƒ©ćƒƒć‚Æćƒć‚¹ę Ŗå¼ä¼šē¤¾'),
(126987, 102257, 'es', 'name', 'Universidad PolitƩcnica de TecƔmac'),
(126988, 102258, 'en', 'name', 'Field Applied Research Australia'),
(126989, 102259, 'pt', 'name', 'Centro de Investigação em Gestão'),
(126990, 102260, 'en', 'name', 'Chemistry and Modelling for Biology of Cancer'),
(126991, 102260, 'fr', 'name', 'Chimie et ModƩlisation pour la Biologie du Cancer'),
(126992, 102261, 'en', 'name', 'Munich Center for Machine Learning'),
(126993, 102262, 'en', 'name', 'B. Verkin Institute for Low Temperature Physics and Engineering of the National Academy of Sciences of Ukraine'),
(126994, 102262, 'uk', 'name', 'Фізико-технічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠøŠ·ŃŒŠŗŠøŃ… Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€ ім. Š‘.І. Вєркіна ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України, Фізико-технічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š½ŠøŠ·ŃŒŠŗŠøŃ… Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€ ім. Š‘.І. Вєркіна ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України, Єарків'),
(126995, 102263, 'en', 'name', 'University of Essex'),
(126996, 102264, 'pt', 'name', 'Insper, Insper - Instituto de Ensino e Pesquisa'),
(126997, 102265, 'fr', 'name', 'Pharmacologie et thƩrapie des addictions');
INSERT INTO `ror_settings` VALUES
(126998, 102266, 'en', 'name', 'Institute for the History and Philosophy of Science and Technology'),
(126999, 102266, 'fr', 'name', 'Institut d''Histoire et de Philosophie des Sciences et des Techniques'),
(127000, 102267, 'pt', 'name', 'Escola Superior de Hotelaria e Turismo do Estoril'),
(127001, 102268, 'pt', 'name', 'Faculdade de Direito de Franca'),
(127002, 102269, 'fr', 'name', 'Laboratoire de BiogenĆØse Membranaire'),
(127003, 102270, 'fr', 'name', 'Ecole de droit social de Montpellier'),
(127004, 102271, 'cy', 'name', 'Prifysgol Gorllewin Lloegr'),
(127005, 102271, 'en', 'name', 'University of the West of England'),
(127006, 102272, 'pt', 'name', 'Instituto de Investigação e Formação Avançada em Ciências e Tecnologias da Saúde'),
(127007, 102273, 'en', 'name', 'Wuchang Shouyi University'),
(127008, 102273, 'zh', 'name', 'ę­¦ę˜Œé¦–ä¹‰å­¦é™¢'),
(127009, 102274, 'pt', 'name', 'Faculdade Faci Wyden'),
(127010, 102275, 'en', 'name', 'Humanities Montana'),
(127011, 102276, 'fr', 'name', 'Centre de recherches en philosophie allemande et contemporaine'),
(127012, 102277, 'en', 'name', 'Complutense University of Madrid'),
(127013, 102277, 'es', 'name', 'Universidad Complutense de Madrid'),
(127014, 102277, 'eu', 'name', 'Madrilgo Complutense Unibertsitatea'),
(127015, 102277, 'gl', 'name', 'Universidade Complutense de Madrid'),
(127016, 102278, 'en', 'name', 'Jackson University College'),
(127017, 102279, 'nl', 'name', 'Koninklijke Philips'),
(127018, 102279, 'no_lang_code', 'name', 'Philips (Netherlands)'),
(127019, 102280, 'fr', 'name', 'Laboratoire de MathƩmatiques et Applications'),
(127020, 102281, 'en', 'name', 'Fuzhou Melbourne Polytechnic'),
(127021, 102281, 'zh', 'name', 'ē¦å·žå¢Øå°”ęœ¬ē†å·„čŒäøšå­¦é™¢'),
(127022, 102282, 'es', 'name', 'Universidad Europea Miguel de Cervantes'),
(127023, 102283, 'en', 'name', 'Laboratory Materials and Quantum Phenomena'),
(127024, 102283, 'fr', 'name', 'Laboratoire Matériaux et Phénomènes Quantiques'),
(127025, 102284, 'en', 'name', 'Northamptonshire County Council'),
(127026, 102285, 'en', 'name', 'Teikyo University Hospital, Mizonokuchi'),
(127027, 102285, 'ja', 'name', 'åøäŗ¬å¤§å­¦åŒ»å­¦éƒØé™„å±žęŗå£ē—…é™¢'),
(127028, 102286, 'de', 'name', 'Rat für Forschung, Wissenschaft, Innovation und Technologieentwicklung'),
(127029, 102286, 'en', 'name', 'Austrian Council for Sciences, Technology, and Innovation'),
(127030, 102287, 'en', 'name', 'Southwest Alaska Inventory and Monitoring Network'),
(127031, 102288, 'en', 'name', 'BLOOM'),
(127032, 102289, 'en', 'name', 'Ringling College of Art and Design'),
(127033, 102290, 'en', 'name', 'University of Colombo'),
(127034, 102290, 'si', 'name', 'ą¶šą·œą·…ą¶¹ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(127035, 102290, 'ta', 'name', 'ą®•ąÆŠą®“ąÆą®®ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(127036, 102291, 'en', 'name', 'Florida Museum of Natural History'),
(127037, 102292, 'en', 'name', 'Univesity of Life Science "King Mihai I" from Timisoara'),
(127038, 102292, 'ro', 'name', 'Universitatea de Științele Vieții ā€œRegele Mihai Iā€ din Timișoara'),
(127039, 102293, 'de', 'name', 'Dr. Margarete Fischer-Bosch Institut für Klinische Pharmakologie'),
(127040, 102293, 'en', 'name', 'Dr. Margarete Fischer-Bosch-Institute of Clinical Pharmacology'),
(127041, 102294, 'fr', 'name', 'Centre Hospitalier Universitaire de Lille'),
(127042, 102295, 'en', 'name', 'Mohawk Valley Community College'),
(127043, 102296, 'pt', 'name', 'Autarquia de Ensino Superior de Garanhuns'),
(127044, 102297, 'en', 'name', 'National School of Architecture of Versailles'),
(127045, 102297, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Versailles'),
(127046, 102298, 'en', 'name', 'Vocational Training Council'),
(127047, 102298, 'zh', 'name', '職愭訓緓局'),
(127048, 102299, 'en', 'name', 'Southwest University of Political Science & Law'),
(127049, 102299, 'zh', 'name', 'č„æå—ę”æę³•å¤§å­¦'),
(127050, 102300, 'en', 'name', 'J. B. Hunt Transport Services, J. B. Hunt Transport Services (United States)'),
(127051, 102301, 'en', 'name', 'Forests and Societies'),
(127052, 102301, 'fr', 'name', 'Forêts et Sociétés'),
(127053, 102302, 'en', 'name', 'Sanjiang University'),
(127054, 102302, 'zh', 'name', 'äø‰ę±Ÿå­¦é™¢'),
(127055, 102303, 'de', 'name', 'UniversitƤt Brescia'),
(127056, 102303, 'en', 'name', 'University of Brescia'),
(127057, 102303, 'fr', 'name', 'UniversitƩ de brescia'),
(127058, 102303, 'it', 'name', 'UniversitĆ  degli Studi di Brescia'),
(127059, 102304, 'fr', 'name', 'DGA Techniques aƩrospatiales'),
(127060, 102305, 'fr', 'name', 'Dynamique de l''information gƩnƩtique : bases fondamentales et cancer'),
(127061, 102306, 'no_lang_code', 'name', 'BioData.pt'),
(127062, 102307, 'en', 'name', 'Microbe, Intestine, Inflammation and Host Susceptibility'),
(127063, 102308, 'de', 'name', 'Technische Hochschule Mittelhessen'),
(127064, 102308, 'en', 'name', 'Mittelhessen University of Applied Sciences'),
(127065, 102309, 'fr', 'name', 'Service des Avions FranƧais InstrumentƩs pour la Recherche en Environnement'),
(127066, 102310, 'en', 'name', 'Anhui University of Technology'),
(127067, 102310, 'zh', 'name', 'å®‰å¾½å·„äøšå¤§å­¦'),
(127068, 102311, 'en', 'name', 'Avesta Battery & Energy Engineering, Avesta Battery & Energy Engineering (Belgium)'),
(127069, 102312, 'en', 'name', 'Indian Institute of Technology Ropar'),
(127070, 102312, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(127071, 102312, 'ne', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø,ą¤°ą„‹ą¤Ŗą¤”ą¤¼'),
(127072, 102312, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®Ŗą®žąÆą®šą®¾ą®ŖąÆ'),
(127073, 102313, 'fr', 'name', 'Institut Pasteur du Laos'),
(127074, 102313, 'lo', 'name', 'ąŗŖąŗ°ąŗ–ąŗ²ąŗšąŗ±ąŗ™ ປັດສະເຕີ ຄາວ'),
(127075, 102314, 'en', 'name', 'Yibin Vocational and Technical College'),
(127076, 102314, 'zh', 'name', 'å®œå®¾čŒäøšęŠ€ęœÆå­¦é™¢'),
(127077, 102315, 'bn', 'name', 'ą¦Øą§ą¦Æą¦¾ą¦¶ą¦¾ą¦Øą¦¾ą¦² ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦«ą§ą¦Æą¦¾ą¦¶ą¦Ø ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(127078, 102315, 'en', 'name', 'National Institute of Fashion Technology'),
(127079, 102315, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤«ą„ˆą¤¶ą¤Ø ą¤Ÿą„‡ą¤•ą„ą¤Øą¤¾ą¤²ą„‰ą¤œą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(127080, 102315, 'ne', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤«ą¤¼ą„ˆą¤¶ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾'),
(127081, 102315, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®‰ą®ŸąÆˆą®Æą®²ą®™ąÆą®•ą®¾ą®° ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(127082, 102316, 'es', 'name', 'Colegio De La Salle'),
(127083, 102317, 'en', 'name', 'Aquinas College'),
(127084, 102318, 'fr', 'name', 'Institut des Mondes Africains'),
(127085, 102319, 'de', 'name', 'Zentrum für Klinische Tiermedizin'),
(127086, 102320, 'en', 'name', 'Lithuanian Academy of Music and Theatre'),
(127087, 102320, 'lt', 'name', 'Lietuvos Muzikos ir Teatro Akademija'),
(127088, 102320, 'ru', 'name', 'Š›ŠøŃ‚Š¾Š²ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø Šø театра'),
(127089, 102321, 'en', 'name', 'Royal College of Surgeons of England'),
(127090, 102322, 'en', 'name', 'University of Maryland, Baltimore County'),
(127091, 102322, 'fr', 'name', 'UniversitƩ du maryland, comtƩ de baltimore'),
(127092, 102323, 'en', 'name', 'Cross-Border Institute'),
(127093, 102324, 'en', 'name', 'Carleton University'),
(127094, 102325, 'en', 'name', 'National College of Ireland'),
(127095, 102326, 'en', 'name', 'SUNY Ulster'),
(127096, 102327, 'en', 'name', 'SUNY Westchester Community College'),
(127097, 102328, 'pt', 'name', 'Faculdade Santa Marcelina MuriaƩ'),
(127098, 102329, 'en', 'name', 'Bridgwater Community Hospital'),
(127099, 102330, 'en', 'name', 'Peki College of Education'),
(127100, 102331, 'es', 'name', 'Instituto de Investigaciones y PolĆ­ticas del Ambiente Construido (IIPAC)'),
(127101, 102332, 'en', 'name', 'Weston College'),
(127102, 102333, 'en', 'name', 'Guangdong Teachers College of Foreign Language and Arts'),
(127103, 102333, 'zh', 'name', 'å¹æäøœēœå¤–čÆ­č‰ŗęœÆčŒäøšå­¦é™¢'),
(127104, 102334, 'en', 'name', 'Fareham College'),
(127105, 102335, 'id', 'name', 'Universitas Mochammad Sroedji Jember'),
(127106, 102336, 'en', 'name', 'Northeast Normal University'),
(127107, 102336, 'zh', 'name', 'äøœåŒ—åøˆčŒƒå¤§å­¦'),
(127108, 102337, 'en', 'name', 'UNESCO-UNEVOC International Centre for Technical and Vocational Education and Training'),
(127109, 102338, 'fr', 'name', 'Laboratoire Environnements, Dynamiques et Territoires de Montagne'),
(127110, 102339, 'fr', 'name', 'Configurations littƩraires'),
(127111, 102340, 'de', 'name', 'Hochschule für Wirtschaft und Umwelt Nürtingen-Geislingen'),
(127112, 102340, 'en', 'name', 'Nürtingen-Geislingen University of Applied Science'),
(127113, 102341, 'en', 'name', 'Utah Valley University'),
(127114, 102341, 'fr', 'name', 'UniversitƩ de la VallƩe de l''Utah'),
(127115, 102342, 'fr', 'name', 'HEIG-VD, Haute Ecole d''IngƩnierie et de Gestion du Canton de Vaud'),
(127116, 102343, 'fr', 'name', 'Miniaturisation pour la Synthèse, l''Analyse et la Protéomique'),
(127117, 102344, 'en', 'name', 'Adıyaman University'),
(127118, 102344, 'tr', 'name', 'Adıyaman Üniversitesi'),
(127119, 102345, 'en', 'name', 'Institute of Ecology and Environmental Sciences Paris'),
(127120, 102345, 'fr', 'name', 'Institut d''Ʃcologie et des sciences de l''environnement de Paris'),
(127121, 102346, 'de', 'name', 'UniversitƤt Basel'),
(127122, 102346, 'en', 'name', 'University of Basel'),
(127123, 102346, 'fr', 'name', 'Université de Bâle'),
(127124, 102346, 'it', 'name', 'UniversitĆ  di Basilea'),
(127125, 102347, 'en', 'name', 'Mustaqbal University'),
(127126, 102348, 'en', 'name', 'Suzhou Art & Design Technology Institute'),
(127127, 102348, 'zh', 'name', 'č‹å·žå·„č‰ŗē¾ŽęœÆčŒäøšęŠ€ęœÆå­¦é™¢'),
(127128, 102349, 'pt', 'name', 'Franciscanas MissionƔrias de Nossa Senhora'),
(127129, 102350, 'en', 'name', 'Connecticut Humanities Council'),
(127130, 102351, 'en', 'name', 'Glasgow Clyde College'),
(127131, 102352, 'es', 'name', 'Instituto Tecnológico Superior de Centla'),
(127132, 102353, 'no_lang_code', 'name', 'SELEX Sistemi Integrati'),
(127133, 102354, 'en', 'name', 'Viet-Hung Industrial University'),
(127134, 102354, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghiệp Việt – Hung'),
(127135, 102355, 'en', 'name', 'Centre for Advanced Material Application of the Slovak Academy of Sciences'),
(127136, 102355, 'sk', 'name', 'Centrum pre využitie pokročilých materiĆ”lov Slovenskej akadĆ©mie vied'),
(127137, 102356, 'en', 'name', 'Chubu University'),
(127138, 102356, 'ja', 'name', '中部大学'),
(127139, 102357, 'fr', 'name', 'Neurosciences Paris-Seine'),
(127140, 102358, 'en', 'name', 'Indian Institute of Technology Bhilai'),
(127141, 102359, 'en', 'name', 'Institute for the chemistry of natural substances'),
(127142, 102359, 'fr', 'name', 'Institut de Chimie des Substances Naturelles'),
(127143, 102360, 'de', 'name', 'Technische Universität Nürnberg'),
(127144, 102360, 'en', 'name', 'University of Technology Nuremberg'),
(127145, 102361, 'no_lang_code', 'name', 'Walter Sisulu University'),
(127146, 102362, 'en', 'name', 'Guizhou University of Finance and Economics'),
(127147, 102362, 'zh', 'name', 'č“µå·žč“¢ē»å¤§å­¦'),
(127148, 102363, 'en', 'name', 'Bambino Gesù Children''s Hospital'),
(127149, 102363, 'it', 'name', 'Ospedale Pediatrico Bambino Gesù'),
(127150, 102364, 'fr', 'name', 'DƩlƩgation Bretagne et Pays de la Loire'),
(127151, 102365, 'en', 'name', 'University of California, Santa Barbara'),
(127152, 102365, 'es', 'name', 'Universidad de California en Santa BƔrbara'),
(127153, 102365, 'fr', 'name', 'UniversitƩ de Californie Ơ Santa Barbara'),
(127154, 102366, 'en', 'name', 'Seventh-day Adventist College of Education'),
(127155, 102367, 'fr', 'name', 'Institut des Sciences de la Terre d''OrlƩans'),
(127156, 102368, 'en', 'name', 'Queensland Children’s Hospital'),
(127157, 102369, 'en', 'name', 'Naval Research Academy'),
(127158, 102369, 'zh', 'name', '中国人民解放军海军研究院'),
(127159, 102370, 'en', 'name', 'Medical University of Lodz'),
(127160, 102370, 'pl', 'name', 'Uniwersytet Medyczny w Łodzi'),
(127161, 102371, 'en', 'name', 'Hebei Petroleum University of Technology'),
(127162, 102371, 'zh', 'name', 'ę²³åŒ—ēŸ³ę²¹čŒäøšęŠ€ęœÆå¤§å­¦'),
(127163, 102372, 'en', 'name', 'Obihiro University of Agriculture and Veterinary Medicine'),
(127164, 102372, 'ja', 'name', 'åøÆåŗƒē•œē”£å¤§å­¦'),
(127165, 102373, 'fr', 'name', 'Institut franƧais du Proche-Orient'),
(127166, 102374, 'en', 'name', 'National Institute of Technology, Puducherry'),
(127167, 102374, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤¦ą„ą¤šą„ą¤šą„‡ą¤°ą„€, ą¤•ą¤¾ą¤°ą„ˆą¤•ą„ą¤•ą¤¾ą¤²'),
(127168, 102374, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®ŖąÆą®¤ąÆą®šąÆą®šąÆ‡ą®°ą®æ, ą®•ą®¾ą®°ąÆˆą®•ąÆą®•ą®¾ą®²ąÆ'),
(127169, 102375, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© السلام Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© - Ų³Ų±ŲŖ'),
(127170, 102375, 'en', 'name', 'Assalam International University'),
(127171, 102376, 'en', 'name', 'University of Mississippi'),
(127172, 102376, 'es', 'name', 'Universidad de Misisipi'),
(127173, 102376, 'fr', 'name', 'UniversitƩ du Mississippi'),
(127174, 102377, 'fr', 'name', 'MƩdipole Garonne'),
(127175, 102378, 'en', 'name', 'Institute of Chemistry and Processes for Energy, Environment and Health'),
(127176, 102378, 'fr', 'name', 'Institut de Chimie et ProcƩdƩs pour l''Energie, l''Environnement et la SantƩ'),
(127177, 102379, 'fr', 'name', 'Centre de Recherches Insulaires et Observatoire de l''Environnement'),
(127178, 102380, 'en', 'name', 'Zaragoza Logistics Center'),
(127179, 102381, 'en', 'name', 'Catholic Institute of Higher Studies'),
(127180, 102381, 'fr', 'name', 'Institut catholique d’études supĆ©rieures'),
(127181, 102382, 'tr', 'name', 'Değerler Eğitimi Merkezi'),
(127182, 102383, 'en', 'name', 'University of Colorado Boulder'),
(127183, 102383, 'es', 'name', 'Universidad de Colorado en Boulder'),
(127184, 102383, 'fr', 'name', 'UniversitƩ du Colorado Ơ Boulder'),
(127185, 102384, 'cs', 'name', 'Matematický Ćŗstav AV ČR, Matematický Ćŗstav AV ČR, v. v. i., Matematický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(127186, 102384, 'en', 'name', 'Czech Academy of Sciences, Institute of Mathematics'),
(127187, 102385, 'en', 'name', 'Balıkesir University'),
(127188, 102385, 'tr', 'name', 'Balıkesir Üniversitesi'),
(127189, 102386, 'en', 'name', 'Pew Research Center'),
(127190, 102387, 'fr', 'name', 'Château de Longchamp'),
(127191, 102388, 'fr', 'name', 'Ɖcole Nationale d''Administration de Madagascar'),
(127192, 102389, 'en', 'name', 'Trinity College Dublin'),
(127193, 102389, 'ga', 'name', 'ColÔiste na Tríonóide Baile Átha Cliath'),
(127194, 102390, 'en', 'name', 'Institute of Soil Biology'),
(127195, 102391, 'fr', 'name', 'Groupe d''Etudes et de Recherche Interdisciplinaire en Information et Communication'),
(127196, 102392, 'en', 'name', 'University of Leon'),
(127197, 102392, 'es', 'name', 'Universidad de León'),
(127198, 102392, 'gl', 'name', 'Universidade de León'),
(127199, 102393, 'en', 'name', 'Center for Research in Medicine, Science, Health, Mental Health and Society'),
(127200, 102393, 'fr', 'name', 'Centre de Recherche MƩdecine, Sciences, SantƩ, SantƩ Mentale, SociƩtƩ'),
(127201, 102394, 'en', 'name', 'National Institute of Financial Management'),
(127202, 102394, 'hi', 'name', 'ą¤…ą¤°ą„ą¤£ ą¤œą„‡ą¤Ÿą¤²ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¤ą„ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(127203, 102395, 'az', 'name', 'İstanbul Ticarət Universiteti'),
(127204, 102395, 'en', 'name', 'Istanbul Commerce University'),
(127205, 102395, 'tr', 'name', 'İstanbul Ticaret Üniversitesi'),
(127206, 102396, 'en', 'name', 'Ajeenkya DY Patil University'),
(127207, 102396, 'mr', 'name', 'ą¤…ą¤œą¤æą¤‚ą¤•ą„ą¤Æ ą¤”ą„€.वाय. ą¤Ŗą¤¾ą¤Ÿą„€ą¤² ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(127208, 102397, 'en', 'name', 'Peking University'),
(127209, 102397, 'zh', 'name', 'åŒ—äŗ¬å¤§å­¦'),
(127210, 102398, 'fr', 'name', 'Groupe Hospitalier Cochin - Port-Royal, HƓtel-Dieu, Broca - La CollƩgiale'),
(127211, 102399, 'da', 'name', 'Erhvervsakademi MidtVest'),
(127212, 102400, 'en', 'name', 'Camosun College'),
(127213, 102401, 'pt', 'name', 'Instituto Europeu de Estudos Superiores'),
(127214, 102402, 'en', 'name', 'Indian Institute of Technology Goa'),
(127215, 102402, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤—ą„‹ą¤µą¤¾'),
(127216, 102403, 'en', 'name', 'Mycology and Food Safety'),
(127217, 102403, 'fr', 'name', 'Mycologie et SƩcuritƩ des Aliments'),
(127218, 102404, 'en', 'name', 'European Union Agency for Railways'),
(127219, 102405, 'en', 'name', 'Başkent University'),
(127220, 102405, 'tr', 'name', 'Başkent Üniversitesi'),
(127221, 102406, 'en', 'name', 'SUNY College of Optometry'),
(127222, 102407, 'en', 'name', 'Institute of the Environment'),
(127223, 102407, 'fr', 'name', 'Institut de l''environnement'),
(127224, 102408, 'en', 'name', 'Institute for Medical Research'),
(127225, 102408, 'sr', 'name', 'Institut za medicinska istraživanja, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за меГицинска ŠøŃŃ‚Ń€Š°Š¶ŠøŠ²Š°ŃšŠ°'),
(127226, 102409, 'en', 'name', 'National Endowment for the Humanities'),
(127227, 102410, 'en', 'name', 'Phu Yen Vocational College'),
(127228, 102411, 'en', 'name', 'Guangdong Pharmaceutical University'),
(127229, 102411, 'zh', 'name', 'å¹æäøœčÆå­¦é™¢'),
(127230, 102412, 'en', 'name', 'Bilkent University'),
(127231, 102412, 'tr', 'name', 'İhsan Doğramacı Bilkent Üniversitesi'),
(127232, 102413, 'no_lang_code', 'name', 'Patan Hospital'),
(127233, 102414, 'es', 'name', 'Gobierno de la Provincia de Mendoza'),
(127234, 102415, 'fr', 'name', 'Laboratoire de ProbabilitƩs, Statistique et ModƩlisation'),
(127235, 102416, 'en', 'name', 'Rai University'),
(127236, 102417, 'en', 'name', 'Gdynia Maritime University'),
(127237, 102417, 'pl', 'name', 'Uniwersytet Morski w Gdyni'),
(127238, 102418, 'cy', 'name', 'Y Swyddfa Dramor a Chymanwlad'),
(127239, 102418, 'en', 'name', 'Foreign and Commonwealth Office'),
(127240, 102419, 'de', 'name', 'Jade Hochschule'),
(127241, 102419, 'en', 'name', 'Jade University of Applied Sciences'),
(127242, 102420, 'en', 'name', 'Ohio Humanities Council'),
(127243, 102421, 'en', 'name', 'University of Mpumalanga'),
(127244, 102422, 'en', 'name', 'PAU Excellencia Global Academy Foundation, Inc.'),
(127245, 102423, 'en', 'name', 'MAGIC Telescopes'),
(127246, 102424, 'en', 'name', 'Montana State University'),
(127247, 102425, 'no_lang_code', 'name', 'Nio, Nio (China)'),
(127248, 102425, 'zh', 'name', 'äøŠęµ·č”šę„ę±½č½¦ęœ‰é™å…¬åø'),
(127249, 102426, 'de', 'name', 'Leuphana Universität Lüneburg'),
(127250, 102426, 'en', 'name', 'Leuphana University of Lüneburg'),
(127251, 102427, 'en', 'name', 'Xi’an International University'),
(127252, 102427, 'zh', 'name', '脿安国际大学'),
(127253, 102428, 'en', 'name', 'Budapest University of Technology and Economics'),
(127254, 102428, 'hu', 'name', 'Budapesti Műszaki és GazdasÔgtudomÔnyi Egyetem'),
(127255, 102429, 'en', 'name', 'Genetic Improvement and Adaptation of Mediterranean and Tropical Plants'),
(127256, 102429, 'fr', 'name', 'AmƩlioration GƩnƩtique et Adaptation des Plantes mƩditerranƩennes et tropicales'),
(127257, 102430, 'en', 'name', 'National Library of the Netherlands'),
(127258, 102430, 'nl', 'name', 'Koninklijke Bibliotheek'),
(127259, 102431, 'en', 'name', 'Laboratory on Plasma and Conversion of Energy'),
(127260, 102431, 'fr', 'name', 'Laboratoire Plasma et Conversion d''Energie'),
(127261, 102432, 'en', 'name', 'Chr. Michelsen Institute'),
(127262, 102433, 'en', 'name', 'Selby College'),
(127263, 102434, 'en', 'name', 'Distributed System of Scientific Collections'),
(127264, 102435, 'fr', 'name', 'Habiter le monde'),
(127265, 102436, 'en', 'name', 'Sicilian Center of Nuclear Physics and Physics of Matter'),
(127266, 102436, 'it', 'name', 'Centro Siciliano di Fisica Nucleare e di Struttura della Materia'),
(127267, 102437, 'en', 'name', 'CUNEF University'),
(127268, 102437, 'es', 'name', 'CUNEF Universidad'),
(127269, 102438, 'en', 'name', 'International Institute for Applied Systems Analysis'),
(127270, 102439, 'fr', 'name', 'Diabète et thérapie cellulaire'),
(127271, 102440, 'es', 'name', 'Sociedad de Lucha Contra el CƔncer del Ecuador'),
(127272, 102441, 'en', 'name', 'National Academy of Legal Sciences of Ukraine'),
(127273, 102441, 'uk', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ правовых наук Украины, ŠŠŗŠ°Š“ŠµŠ¼Ń–Ń правових наук України, ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń правових наук України'),
(127274, 102442, 'en', 'name', 'Brazilian Center for Research in Physics'),
(127275, 102442, 'pt', 'name', 'Centro Brasileiro de Pesquisas FĆ­sicas'),
(127276, 102443, 'fr', 'name', 'Fédération de recherche Matière et Interactions'),
(127277, 102444, 'no_lang_code', 'name', 'Aviation Industry Corporation of China (China)'),
(127278, 102444, 'zh', 'name', 'äø­å›½čˆŖē©ŗå·„äøšé›†å›¢å…¬åø'),
(127279, 102445, 'fr', 'name', 'Architecture, Environnement & Cultures Constructives'),
(127280, 102446, 'en', 'name', 'Nepal Mountain Academy'),
(127281, 102447, 'pt', 'name', 'Departamento de CiĆŖncia e de Recursos Naturais'),
(127282, 102448, 'en', 'name', 'Claremont School of Theology'),
(127283, 102449, 'de', 'name', 'Brandenburgische Technische UniversitƤt Cottbus-Senftenberg'),
(127284, 102449, 'en', 'name', 'Brandenburg University of Technology Cottbus-Senftenberg, Technical University of Cottbus'),
(127285, 102450, 'fr', 'name', 'Laboratoire d''ƉnergĆ©tique MolĆ©culaire et Macroscopique, Combustion'),
(127286, 102451, 'fr', 'name', 'DƩlƩgation Alsace'),
(127287, 102452, 'fr', 'name', 'Molécules d''Intérêt Biologique'),
(127288, 102453, 'fr', 'name', 'Centre d''Etudes Politiques de l''Europe Latine, Centre d’Etudes Politiques Et sociaLes'),
(127289, 102454, 'en', 'name', 'Guizhou Normal University'),
(127290, 102454, 'zh', 'name', 'č“µå·žåøˆčŒƒå¤§å­¦'),
(127291, 102455, 'en', 'name', 'Pfizer Health Research Foundation'),
(127292, 102456, 'en', 'name', 'Dene Barton Community Hospital'),
(127293, 102457, 'en', 'name', 'Theological University Utrecht'),
(127294, 102457, 'nl', 'name', 'Theologische Universiteit Utrecht'),
(127295, 102458, 'en', 'name', 'Center for Cooperative Research in Biosciences'),
(127296, 102458, 'es', 'name', 'CIC bioGUNE'),
(127297, 102458, 'pt', 'name', 'Asociacion Centro De Investigacion Cooperativa En Biociencias'),
(127298, 102459, 'de', 'name', 'Eidgenössische Materialprüfungs- und Forschungsanstalt'),
(127299, 102459, 'en', 'name', 'Swiss Federal Laboratories for Materials Science and Technology'),
(127300, 102459, 'fr', 'name', 'Laboratoire fƩdƩral d''essai des matƩriaux et de recherche'),
(127301, 102460, 'en', 'name', 'EQT, EQT (United States)'),
(127302, 102461, 'en', 'name', 'University of Vavuniya'),
(127303, 102461, 'ta', 'name', 'ą®µą®µąÆą®©ą®æą®Æą®¾ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(127304, 102462, 'en', 'name', 'Central Geological Laboratory of Mongolia'),
(127305, 102463, 'en', 'name', 'Leeds Trinity University'),
(127306, 102464, 'en', 'name', 'Jinan University'),
(127307, 102464, 'zh', 'name', 'ęšØå—å¤§å­¦'),
(127308, 102465, 'en', 'name', 'University of Debrecen'),
(127309, 102465, 'hu', 'name', 'Debreceni Egyetem'),
(127310, 102466, 'en', 'name', 'NHL Stenden University of Applied Sciences'),
(127311, 102466, 'nl', 'name', 'NHL Stenden Hogeschool'),
(127312, 102467, 'en', 'name', 'Laboratory Evolution and Biological Diversity'),
(127313, 102467, 'fr', 'name', 'Laboratoire Evolution et Diversite Biologique'),
(127314, 102468, 'en', 'name', 'Pew Charitable Trusts'),
(127315, 102469, 'en', 'name', 'Manhattan College'),
(127316, 102470, 'en', 'name', 'Institute for Science, Society and Policy'),
(127317, 102470, 'fr', 'name', 'Institut de recherche sur la science, la sociƩtƩ et la politique publique'),
(127318, 102471, 'fr', 'name', 'Laboratoire de GĆ©nie Ɖlectrique et Ɖlectronique de Paris'),
(127319, 102472, 'en', 'name', 'Smithsonian Latino Center'),
(127320, 102473, 'en', 'name', 'Masdar Institute of Science and Technology'),
(127321, 102474, 'en', 'name', 'National Institute of Technology'),
(127322, 102474, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹é«˜ē­‰å°‚é–€å­¦ę ”ę©Ÿę§‹'),
(127323, 102475, 'en', 'name', 'University of Quebec at Trois-Rivieres'),
(127324, 102475, 'fr', 'name', 'Université du Québec à Trois-Rivières'),
(127325, 102476, 'en', 'name', 'Western Colorado University'),
(127326, 102477, 'en', 'name', 'Chaminade University of Honolulu'),
(127327, 102478, 'en', 'name', 'ALS CURE Project'),
(127328, 102479, 'en', 'name', 'Foshan University'),
(127329, 102479, 'zh', 'name', 'ä½›å±±ē§‘å­¦ęŠ€ęœÆå­¦é™¢'),
(127330, 102480, 'en', 'name', 'Shepton Mallet Community Hospital'),
(127331, 102481, 'cs', 'name', 'ČeskÔ geologickÔ služba'),
(127332, 102481, 'en', 'name', 'Czech Geological Survey'),
(127333, 102482, 'fr', 'name', 'Centre de Recherche sur les Ions, les MatƩriaux et la Photonique'),
(127334, 102483, 'es', 'name', 'Tecnológico de Estudios Superiores de Ixtapaluca'),
(127335, 102484, 'fr', 'name', 'Biologie des Oiseaux et Aviculture'),
(127336, 102485, 'en', 'name', 'Taunton & Somerset NHS Foundation Trust'),
(127337, 102486, 'en', 'name', 'Ibn Haldun University'),
(127338, 102486, 'tr', 'name', 'İbn Haldun Üniversitesi'),
(127339, 102487, 'fr', 'name', 'Mondes AmƩricains'),
(127340, 102488, 'en', 'name', 'Queen''s University'),
(127341, 102489, 'en', 'name', 'Korea Display Research Corporation'),
(127342, 102490, 'el', 'name', 'Σχολή ĪĪ±Ļ…Ļ„Ī¹ĪŗĻŽĪ½ Δοκίμων'),
(127343, 102490, 'en', 'name', 'Hellenic Naval Academy'),
(127344, 102491, 'no_lang_code', 'name', 'Technicolor (France)'),
(127345, 102492, 'en', 'name', 'California Science Center'),
(127346, 102493, 'en', 'name', 'Jinzhou Medical University'),
(127347, 102493, 'zh', 'name', 'é”¦å·žåŒ»ē§‘å¤§å­¦'),
(127348, 102494, 'en', 'name', 'Dickinson College'),
(127349, 102495, 'en', 'name', 'IBM Research (China)'),
(127350, 102496, 'fr', 'name', 'Maison des Sciences de l''Homme et de la SociƩtƩ Sud-Est'),
(127351, 102497, 'en', 'name', 'Saint-Louis University, UCLouvain Saint-Louis Brussels'),
(127352, 102497, 'fr', 'name', 'FacultƩs universitaires saint-louis'),
(127353, 102498, 'en', 'name', 'University of Washington Bothell'),
(127354, 102499, 'en', 'name', 'University of Derby'),
(127355, 102500, 'en', 'name', 'Beijing University of Civil Engineering and Architecture'),
(127356, 102500, 'zh', 'name', 'åŒ—äŗ¬å»ŗē­‘å·„ēØ‹å­¦é™¢'),
(127357, 102501, 'en', 'name', 'McCoy College of Education'),
(127358, 102502, 'no_lang_code', 'name', 'Kowa (United Kingdom)'),
(127359, 102503, 'en', 'name', 'British Association for Applied Linguistics'),
(127360, 102504, 'es', 'name', 'Tecnológico de Estudios Superiores de Chalco'),
(127361, 102505, 'en', 'name', 'Brest National Engineering School'),
(127362, 102505, 'fr', 'name', 'Ɖcole nationale d''ingĆ©nieurs de Brest'),
(127363, 102506, 'en', 'name', 'Life Sciences International Postgraduate Educational Center'),
(127364, 102507, 'fr', 'name', 'Institut et Haute Ecole de la SantƩ La Source'),
(127365, 102508, 'fr', 'name', 'Institut Pasteur de Dakar'),
(127366, 102509, 'fr', 'name', 'UR CONFLUENCE: Sciences et HumanitƩs'),
(127367, 102510, 'bn', 'name', 'ą¦¬ą§‡ą¦™ą§ą¦—ą¦² ą¦‡ą¦žą§ą¦œą¦æą¦Øą¦æą¦Æą¦¼ą¦¾ą¦°ą¦æą¦‚ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(127368, 102510, 'en', 'name', 'Indian Institute of Engineering Science and Technology, Shibpur'),
(127369, 102510, 'hi', 'name', 'बंगाल ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(127370, 102511, 'en', 'name', 'Wesley College of Education'),
(127371, 102511, 'ha', 'name', 'Kwalejin Ilimi ta Wesley'),
(127372, 102512, 'fr', 'name', 'Centre pour les humanitƩs numƩriques et l''histoire de la justice'),
(127373, 102513, 'en', 'name', 'Switch'),
(127374, 102514, 'en', 'name', 'Northeast Forestry University'),
(127375, 102514, 'zh', 'name', 'äøœåŒ—ęž—äøšå¤§å­¦'),
(127376, 102515, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¹ŲØŲ§Ų³ Ł„ŲŗŲ±ŁˆŲ± خنؓلة'),
(127377, 102515, 'en', 'name', 'AbbĆØs Laghrour University of Khenchela'),
(127378, 102516, 'en', 'name', 'St. Ambrose College of Education'),
(127379, 102516, 'ha', 'name', 'Kwalejin Ilimi ta St. Ambrose'),
(127380, 102517, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŁŲ§Ų±ŁˆŁ‚ Ł„Ł„ŲŖŲ±ŲØŁŠŲ©'),
(127381, 102517, 'en', 'name', 'Al-Faruq College of Education'),
(127382, 102517, 'uz', 'name', 'Al-Faruq taʼlim kolleji'),
(127383, 102518, 'en', 'name', 'Zhongshan Ophthalmic Center, Sun Yat-sen University'),
(127384, 102518, 'zh', 'name', 'äø­å±±å¤§å­¦ēœ¼ē§‘äø­åæƒ'),
(127385, 102519, 'en', 'name', 'Pablo de Olavide University'),
(127386, 102519, 'es', 'name', 'Universidad Pablo de Olavide'),
(127387, 102520, 'fr', 'name', 'Laboratoire de gĆ©nie des procĆ©dĆ©s pour la bioraffinerie, les matĆ©riaux bio-sourcĆ©s et l’impression fonctionnelle'),
(127388, 102521, 'en', 'name', 'Public Economics'),
(127389, 102521, 'fr', 'name', 'Economie Publique'),
(127390, 102522, 'fr', 'name', 'Institut de Physique et Chimie des MatƩriaux de Strasbourg'),
(127391, 102523, 'en', 'name', 'Eton College'),
(127392, 102524, 'en', 'name', 'Limousin Regional Council'),
(127393, 102524, 'fr', 'name', 'Conseil RƩgional Limousin'),
(127394, 102525, 'no_lang_code', 'name', 'Wyle (United States)'),
(127395, 102526, 'en', 'name', 'Australian Plant Phenomics Network'),
(127396, 102527, 'pt', 'name', 'Catavento Instituto'),
(127397, 102528, 'en', 'name', 'MenƩndez Pelayo International University'),
(127398, 102528, 'es', 'name', 'Universidad Internacional MenƩndez Pelayo'),
(127399, 102528, 'gl', 'name', 'Universidade Internacional MenƩndez Pelayo'),
(127400, 102529, 'cs', 'name', 'Škoda Auto VysokÔ Ŕkola'),
(127401, 102529, 'en', 'name', 'Å koda Auto University'),
(127402, 102530, 'en', 'name', 'Nekton'),
(127403, 102531, 'en', 'name', 'University of Alabama in Huntsville'),
(127404, 102531, 'fr', 'name', 'UniversitƩ d''alabama Ơ huntsville'),
(127405, 102532, 'es', 'name', 'Tecnológico de Estudios Superiores de Valle de Bravo'),
(127406, 102533, 'en', 'name', 'V.F. Corporation, V.F. Corporation (United States)'),
(127407, 102534, 'en', 'name', 'Central European University'),
(127408, 102535, 'fr', 'name', 'HES-SO Arc'),
(127409, 102536, 'en', 'name', 'Integrated Genomics and Metabolic Diseases Modeling'),
(127410, 102536, 'fr', 'name', 'Genomique et Physiologie Moleculaire des Maladies Metaboliques'),
(127411, 102537, 'fr', 'name', 'Institut de Recherche Dupuy de LƓme'),
(127412, 102538, 'es', 'name', 'Instituto Tecnológico de Boca del Río'),
(127413, 102539, 'fr', 'name', 'Centre de recherche sur le monde iranien'),
(127414, 102540, 'en', 'name', 'Dalian Neusoft University of Information'),
(127415, 102540, 'zh', 'name', 'å¤§čæžäøœč½Æäæ”ęÆå¤§å­¦'),
(127416, 102541, 'en', 'name', 'Gbewaa College of Education'),
(127417, 102542, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für personenbezogene Gesundheitsdaten'),
(127418, 102542, 'en', 'name', 'NFDI consortium for Personal Health Data'),
(127419, 102542, 'no_lang_code', 'name', 'NFDI4Health'),
(127420, 102543, 'en', 'name', 'ShanghaiTech University'),
(127421, 102543, 'zh', 'name', 'äøŠęµ·ē§‘ęŠ€å¤§å­¦'),
(127422, 102544, 'en', 'name', 'IHE Delft Institute for Water Education'),
(127423, 102545, 'en', 'name', 'Byrd Polar and Climate Research Center'),
(127424, 102546, 'en', 'name', 'Liaoning University of Traditional Chinese Medicine'),
(127425, 102546, 'zh', 'name', 'č¾½å®äø­åŒ»čÆå¤§å­¦'),
(127426, 102547, 'en', 'name', 'General Hospital of Central Theater Command'),
(127427, 102547, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›äø­éƒØęˆ˜åŒŗę€»åŒ»é™¢'),
(127428, 102548, 'en', 'name', 'Western Institute of Law and Europe'),
(127429, 102548, 'fr', 'name', 'Institut de l''Ouest : Droit et Europe'),
(127430, 102549, 'en', 'name', 'Paris Conservatory'),
(127431, 102549, 'fr', 'name', 'Conservatoire national supƩrieur de musique et de danse de Paris'),
(127432, 102550, 'en', 'name', 'VA Sierra Pacific Network'),
(127433, 102551, 'en', 'name', 'University of Fada N''gourma'),
(127434, 102551, 'fr', 'name', 'UniversitƩ de Fada N''gourma, UniversitƩ de Fada-Ngourma'),
(127435, 102552, 'en', 'name', 'Bratislava International School of Liberal Arts'),
(127436, 102553, 'en', 'name', 'South Gloucestershire and Stroud College'),
(127437, 102554, 'en', 'name', 'Insect Models of Innate Immunity'),
(127438, 102554, 'fr', 'name', 'Modèles Insectes de l''Immunité Innée'),
(127439, 102555, 'de', 'name', 'Kirchliche PƤdagogische Hochschule Wien/Krems'),
(127440, 102555, 'en', 'name', 'University College of Teacher Education of Christian Churches Vienna/Krems'),
(127441, 102556, 'fr', 'name', 'Ɖcole & Observatoire des Sciences de la Terre'),
(127442, 102557, 'pt', 'name', 'Museu Nacional de História Natural e da Ciência'),
(127443, 102558, 'en', 'name', 'Goa University'),
(127444, 102559, 'fr', 'name', 'Observatoire Midi-PyrƩnƩes'),
(127445, 102560, 'bn', 'name', 'ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® মেঔিকেল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(127446, 102560, 'en', 'name', 'Chittagong Medical University'),
(127447, 102560, 'ta', 'name', 'ą®šą®æą®ŸąÆą®Ÿą®•ą®¾ą®™ąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(127448, 102561, 'en', 'name', 'Bader College'),
(127449, 102562, 'fr', 'name', 'Ɖcole Navale'),
(127450, 102563, 'fr', 'name', 'Genopolys'),
(127451, 102564, 'no_lang_code', 'name', 'Istituto Nazionale di Fisica Nucleare, Galileo Galilei Institute for Theoretical Physics'),
(127452, 102565, 'en', 'name', 'University of Economics in Bratislava'),
(127453, 102565, 'sk', 'name', 'EkonomickĆ” univerzita v Bratislave'),
(127454, 102566, 'en', 'name', 'NFDI4Memory'),
(127455, 102567, 'en', 'name', 'Netherlands Institute for the Study of Crime and Law Enforcement'),
(127456, 102567, 'nl', 'name', 'Nederlands Studiecentrum Criminaliteit en Rechtshandhaving'),
(127457, 102568, 'en', 'name', 'University of Aosta Valley'),
(127458, 102568, 'fr', 'name', 'UniversitƩ de la vallƩe d''aoste'),
(127459, 102568, 'it', 'name', 'UniversitĆ  della Valle d''Aosta'),
(127460, 102569, 'en', 'name', 'Animal and Plant Inspection and Quarantine Technology Center of Shenzhen Customs District'),
(127461, 102569, 'zh', 'name', 'ę·±åœ³ęµ·å…³åŠØę¤ē‰©ę£€éŖŒę£€ē–«ęŠ€ęœÆäø­åæƒ'),
(127462, 102570, 'en', 'name', 'Rakai Health Sciences Program'),
(127463, 102571, 'en', 'name', 'St. Xavier''s College (Autonomous)'),
(127464, 102572, 'fr', 'name', 'Virologie'),
(127465, 102573, 'en', 'name', 'Hainan Normal University'),
(127466, 102573, 'zh', 'name', 'ęµ·å—åøˆčŒƒå¤§å­¦'),
(127467, 102574, 'en', 'name', 'Jasikan College of Education'),
(127468, 102575, 'en', 'name', 'Beibu Gulf University'),
(127469, 102575, 'zh', 'name', 'åŒ—éƒØę¹¾å¤§å­¦'),
(127470, 102576, 'en', 'name', 'Odisha University of Technology and Research'),
(127471, 102577, 'en', 'name', 'New York Sea Grant'),
(127472, 102578, 'es', 'name', 'Asociación Colombiana de Medicina Física y Rehabilitación'),
(127473, 102579, 'en', 'name', 'Smithsonian Institution Archives'),
(127474, 102580, 'en', 'name', 'Forest Ecology and Ecophysiology'),
(127475, 102580, 'fr', 'name', 'Ecologie et Ecophysiologie ForestiĆØres'),
(127476, 102581, 'es', 'name', 'Hospital de Especialidades de Portoviejo'),
(127477, 102582, 'en', 'name', 'ADS Environmental Services, ADS Environmental Services (Malaysia)'),
(127478, 102583, 'en', 'name', 'University of Žilina'),
(127479, 102583, 'sk', 'name', 'ŽilinskÔ univerzita v Žiline'),
(127480, 102584, 'en', 'name', 'Virology and Human Pathology'),
(127481, 102584, 'fr', 'name', 'Virologie et Pathologies Humaines'),
(127482, 102585, 'en', 'name', 'Bacterial RNAs & Medicine'),
(127483, 102586, 'en', 'name', 'Mount Holyoke College'),
(127484, 102587, 'en', 'name', 'Minnesota Children''s Museum'),
(127485, 102588, 'en', 'name', 'Brockenhurst College'),
(127486, 102589, 'en', 'name', 'National Telecommunications and Information Administration'),
(127487, 102590, 'fr', 'name', 'Institut NeuroMyoGĆØne'),
(127488, 102591, 'fr', 'name', 'Espaces et SociƩtƩs'),
(127489, 102592, 'fr', 'name', 'Institut LumiĆØre MatiĆØre'),
(127490, 102593, 'bn', 'name', 'ą¦“ą¦Æą¦¼ą¦¾ą¦°ą§ą¦²ą§ą¦” ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(127491, 102593, 'en', 'name', 'World University of Bangladesh'),
(127492, 102594, 'en', 'name', 'Nature Canada'),
(127493, 102594, 'fr', 'name', 'Nature Canada'),
(127494, 102595, 'en', 'name', 'Institute of Paleoprimatology Human Paleontology Evolution and Paleoenvironments'),
(127495, 102596, 'de', 'name', 'Deutsches Institut für Internationale Pädagogische Forschung, Leibniz-Institut für Bildungsforschung und Bildungsinformation'),
(127496, 102596, 'en', 'name', 'DIPF | Leibniz Institute for Research and Information in Education'),
(127497, 102597, 'en', 'name', 'New Brunswick Community College'),
(127498, 102598, 'en', 'name', 'Smithsonian Environmental Research Center'),
(127499, 102599, 'en', 'name', 'SGH Warsaw School of Economics'),
(127500, 102599, 'pl', 'name', 'Szkoła Główna Handlowa w Warszawie'),
(127501, 102600, 'no_lang_code', 'name', 'CF Industries Holdings, CF Industries Holdings (United States)'),
(127502, 102601, 'en', 'name', 'China Medical University'),
(127503, 102601, 'zh', 'name', 'äø­å›½åŒ»ē§‘å¤§å­¦'),
(127504, 102602, 'de', 'name', 'Alfred-Wegener-Institut Helmholtz-Zentrum für Polar- und Meeresforschung'),
(127505, 102603, 'pt', 'name', 'CTT, CTT (Portugal)'),
(127506, 102604, 'en', 'name', 'Shanghai University of Political Science and Law'),
(127507, 102604, 'zh', 'name', 'äøŠęµ·ę”æę³•å­¦é™¢'),
(127508, 102605, 'en', 'name', 'Office of Education'),
(127509, 102606, 'cs', 'name', 'ČeskĆ” archeologickĆ” společnost'),
(127510, 102606, 'en', 'name', 'Czech Archaeological Society'),
(127511, 102607, 'en', 'name', 'Birkenhead Sixth Form College'),
(127512, 102608, 'en', 'name', 'Center for Integrated Protein Science Munich'),
(127513, 102609, 'en', 'name', 'Interdisciplinary Institute for NeuroScience'),
(127514, 102609, 'fr', 'name', 'Institut Interdisciplinaire de Neuroscience'),
(127515, 102610, 'en', 'name', 'Coleg Cambria'),
(127516, 102611, 'en', 'name', 'Ministry of Technical and Higher Education'),
(127517, 102612, 'en', 'name', 'Nippon Life Insurance Foundation'),
(127518, 102612, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿå‘½č²”å›£'),
(127519, 102613, 'en', 'name', 'Carnot Institute Qualiment'),
(127520, 102613, 'fr', 'name', 'Institut Carnot Qualiment'),
(127521, 102614, 'en', 'name', 'Vanguard, Vanguard (United States)'),
(127522, 102615, 'en', 'name', 'Louisiana Endowment for the Humanities'),
(127523, 102616, 'en', 'name', 'Firstenergy, Firstenergy (United States)'),
(127524, 102617, 'en', 'name', 'Laboratory for Vascular Translational Science'),
(127525, 102617, 'fr', 'name', 'Laboratoire de Recherche Vasculaire Translationnelle'),
(127526, 102618, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(127527, 102619, 'ca', 'name', 'Instituto del Conurbano'),
(127528, 102620, 'en', 'name', 'Alfalah University'),
(127529, 102620, 'ps', 'name', 'الفلاح Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(127530, 102620, 'uz', 'name', 'Alfalah universiteti'),
(127531, 102621, 'en', 'name', 'National Institute of Technology Delhi'),
(127532, 102621, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(127533, 102622, 'fr', 'name', 'UMR TransfrontaliĆØre BioEcoAgro'),
(127534, 102623, 'fr', 'name', 'Institut FranƧais d''Ɖtudes Anatoliennes'),
(127535, 102624, 'en', 'name', 'Zhejiang Shuren University'),
(127536, 102625, 'no_lang_code', 'name', 'Gryphon Scientific (United States)'),
(127537, 102626, 'en', 'name', 'Minehead Community Hospital'),
(127538, 102627, 'es', 'name', 'Tecnológico Nacional de México Campus Cancún'),
(127539, 102628, 'fr', 'name', 'HƓpital Sainte-Marguerite'),
(127540, 102629, 'fr', 'name', 'Ɖquipe de Recherche Interlangue : MĆ©moires, IdentitĆ©s, Territoires'),
(127541, 102630, 'en', 'name', 'European University of Brittany'),
(127542, 102630, 'fr', 'name', 'UniversitƩ EuropƩenne de Bretagne'),
(127543, 102631, 'fr', 'name', 'Sciences, Normes, DƩmocratie'),
(127544, 102632, 'en', 'name', 'Dayananda Sagar University'),
(127545, 102633, 'en', 'name', 'University of Ruhuna'),
(127546, 102633, 'si', 'name', 'රුහුණ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗą¶ŗ'),
(127547, 102633, 'ta', 'name', 'ą®‰ą®±ąÆą®•ąÆą®£ąÆˆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(127548, 102634, 'en', 'name', 'East Asia Institute of Management'),
(127549, 102635, 'fr', 'name', 'Laboratoire interdisciplinaire RƩcits Cultures et SociƩtƩs'),
(127550, 102636, 'en', 'name', 'MƤlardalen University'),
(127551, 102636, 'fi', 'name', 'MƤlarinlaakson korkeakoulu'),
(127552, 102636, 'sv', 'name', 'MƤlardalens hƶgskola'),
(127553, 102637, 'en', 'name', 'Wuhan University'),
(127554, 102637, 'zh', 'name', '武汉大学'),
(127555, 102638, 'en', 'name', 'Vancouver Island University'),
(127556, 102639, 'en', 'name', 'Institute for Systems Engineering and Computers'),
(127557, 102639, 'pt', 'name', 'Instituto de Engenharia de Sistemas e Computadores'),
(127558, 102640, 'en', 'name', 'Kozminski University'),
(127559, 102640, 'pl', 'name', 'Akademia Leona KoÅŗmińskiego'),
(127560, 102641, 'pt', 'name', 'Ordem dos Economistas'),
(127561, 102642, 'en', 'name', 'Tropical and Mediterranean Cropping System Functioning and Management'),
(127562, 102642, 'fr', 'name', 'Fonctionnement et Conduite des Systèmes de Culture Tropicaux et Méditerranéens'),
(127563, 102643, 'en', 'name', 'Interdisciplinary Centre for Black Health'),
(127564, 102643, 'fr', 'name', 'Centre Interdisciplinaire pour la santƩ des Noir'),
(127565, 102644, 'es', 'name', 'Tecnológico Nacional de México Campus Ciudad Valles'),
(127566, 102645, 'en', 'name', 'Central University of Technology'),
(127567, 102646, 'es', 'name', 'Centro de Recursos para el Aprendizaje y la Investigación P. Florentino Idoate S.J.'),
(127568, 102647, 'en', 'name', 'SUNY Plattsburgh'),
(127569, 102648, 'en', 'name', 'Molson Coors Brewing Company, Molson Coors Brewing Company (United States)'),
(127570, 102649, 'en', 'name', 'Borders College'),
(127571, 102650, 'fr', 'name', 'Chimie, Structures et PropriƩtƩs de BiomatƩriaux et d''Agents ThƩrapeutiques'),
(127572, 102651, 'fr', 'name', 'Institut des Sciences du Sport-SantƩ de Paris'),
(127573, 102652, 'en', 'name', 'Ankara University of Music and Fine Arts'),
(127574, 102652, 'tr', 'name', 'Ankara Müzik ve Güzel Sanatlar Üniversitesi'),
(127575, 102653, 'en', 'name', 'Institute of Advanced Manufacturing Technology'),
(127576, 102654, 'en', 'name', 'Wuhan Technology and Business University'),
(127577, 102655, 'en', 'name', 'Deepglint, Deepglint (China)'),
(127578, 102655, 'zh', 'name', 'åŒ—äŗ¬ę ¼ēµę·±ēž³äæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(127579, 102656, 'en', 'name', 'Maria Luigia Hospital'),
(127580, 102656, 'it', 'name', 'Ospedale Maria Luigia'),
(127581, 102657, 'en', 'name', 'Toulouse Business School'),
(127582, 102657, 'fr', 'name', 'Ɖcole SupĆ©rieure de Commerce de Toulouse'),
(127583, 102657, 'oc', 'name', 'Escòla Superiora de Comèrci de Tolosa'),
(127584, 102658, 'fr', 'name', 'Laboratoire de Physique des deux infinis Bordeaux'),
(127585, 102659, 'en', 'name', 'Stem Cell Technology Research Center'),
(127586, 102660, 'en', 'name', 'Los Altos History Museum'),
(127587, 102661, 'fr', 'name', 'Laboratoire des Sciences de l’Information et de la Communication'),
(127588, 102662, 'fr', 'name', 'Bases de donnƩes sur la BiodiversitƩ, Ecologie, Environnement et SociƩtƩs'),
(127589, 102663, 'en', 'name', 'National Institute of Technology, Nara College'),
(127590, 102663, 'ja', 'name', 'å„ˆč‰Æå·„ę„­é«˜ē­‰å°‚é–€å­¦ę ”'),
(127591, 102664, 'en', 'name', 'Zhenhai District Center for Disease Control and Prevention'),
(127592, 102664, 'zh', 'name', 'é•‡ęµ·åŒŗē–¾ē—…é¢„é˜²ęŽ§åˆ¶äø­åæƒ'),
(127593, 102665, 'en', 'name', 'Shahid Beheshti University of Medical Sciences'),
(127594, 102665, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی Ų“Ł‡ŪŒŲÆ ŲØŁ‡Ų“ŲŖŪŒ'),
(127595, 102666, 'ca', 'name', 'Institut de NanociĆØncia i Nanotecnologia de la Universitat de Barcelona'),
(127596, 102666, 'en', 'name', 'Institute of Nanoscience and Nanotechnology of the University of Barcelona'),
(127597, 102666, 'es', 'name', 'Instituto de Nanociencia y NanotecnologĆ­a de la Universitat de Barcelona'),
(127598, 102667, 'de', 'name', 'Robert-Bosch-Krankenhaus'),
(127599, 102667, 'en', 'name', 'Robert Bosch Hospital'),
(127600, 102668, 'de', 'name', 'FAIRe Dateninfrastruktur für die Physik der kondensierten Materie und die chemische Physik fester Stoffe'),
(127601, 102668, 'en', 'name', 'FAIRmat'),
(127602, 102669, 'no_lang_code', 'name', 'BioIVT, BioIVT (United States)'),
(127603, 102670, 'en', 'name', 'Shaanxi University of Science and Technology'),
(127604, 102670, 'zh', 'name', 'é™•č„æē§‘ęŠ€å¤§å­¦'),
(127605, 102671, 'en', 'name', 'Leeds College of Music'),
(127606, 102672, 'en', 'name', 'Shanghai Ecological Forecasting and Remote Sensing Center'),
(127607, 102672, 'zh', 'name', 'äøŠęµ·åø‚ē”Ÿę€ę°”č±”å’Œå«ę˜Ÿé„ę„Ÿäø­åæƒ'),
(127608, 102673, 'en', 'name', 'Kano State Polytechnic'),
(127609, 102674, 'en', 'name', 'Chengdu University'),
(127610, 102675, 'de', 'name', 'Olga Mayenfisch Stiftung'),
(127611, 102675, 'en', 'name', 'Olga Mayenfisch Foundation'),
(127612, 102676, 'en', 'name', 'Purbanchal University'),
(127613, 102676, 'ne', 'name', 'ą¤Ŗą„‚ą¤°ą„ą¤µą¤¾ą¤žą„ą¤šą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(127614, 102677, 'pt', 'name', 'Centro de Maricultura da Calheta'),
(127615, 102678, 'pt', 'name', 'Universidade Save'),
(127616, 102679, 'fr', 'name', 'Centre de droit privƩ fondamental'),
(127617, 102680, 'ja', 'name', 'お茶の氓儳子大学'),
(127618, 102680, 'no_lang_code', 'name', 'Ochanomizu University'),
(127619, 102681, 'en', 'name', 'Paris Climate Agency'),
(127620, 102681, 'fr', 'name', 'Agence Parisienne du Climat'),
(127621, 102682, 'en', 'name', 'United States Geological Survey'),
(127622, 102682, 'es', 'name', 'Servicio Geológico de los Estados Unidos'),
(127623, 102683, 'en', 'name', 'IB Agency for Economic Dynamization'),
(127624, 102683, 'pt', 'name', 'InvestBraga Agência para a Dinamização Económica EM'),
(127625, 102684, 'en', 'name', 'Pasteur Hellenic Institute'),
(127626, 102685, 'en', 'name', 'NIHR Leeds Musculoskeletal Biomedical Research Unit'),
(127627, 102686, 'en', 'name', 'ISG Business School'),
(127628, 102686, 'fr', 'name', 'Institut Superieur de Gestion'),
(127629, 102687, 'no_lang_code', 'name', 'CH2M (United States)'),
(127630, 102688, 'en', 'name', 'IMT School for Advanced Studies Lucca'),
(127631, 102688, 'it', 'name', 'Scuola IMT Alti Studi Lucca'),
(127632, 102689, 'en', 'name', 'Laboratory of Excellence in Research on Medication and Innovative Therapeutics'),
(127633, 102689, 'fr', 'name', 'Laboratoire d''Excellence en Recherche sur le MƩdicament et l''Innovation ThƩrapeutique'),
(127634, 102690, 'en', 'name', 'Center for Monetary and Financial Studies'),
(127635, 102690, 'es', 'name', 'Centro de Estudios Monetarios y Financieros'),
(127636, 102691, 'en', 'name', 'National Centre for Social research'),
(127637, 102692, 'en', 'name', 'Smithsonian Tropical Research Institute'),
(127638, 102693, 'en', 'name', 'S. M. Kirov Military Medical Academy'),
(127639, 102694, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الحضارة'),
(127640, 102694, 'en', 'name', 'Civilization University'),
(127641, 102695, 'fr', 'name', 'Lyon Genou Centre Albert Trillat'),
(127642, 102696, 'es', 'name', 'Tecnológico de Estudios Superiores de Coacalco'),
(127643, 102697, 'en', 'name', 'Donghua University'),
(127644, 102697, 'zh', 'name', 'äøœåŽå¤§å­¦'),
(127645, 102698, 'en', 'name', 'MORSE, MORSE (United States)'),
(127646, 102699, 'en', 'name', 'Agricultural University of Iceland'),
(127647, 102699, 'is', 'name', 'LandbĆŗnaưarhĆ”skóli ƍslands'),
(127648, 102700, 'en', 'name', 'Centre for Law, Technology and Society'),
(127649, 102700, 'fr', 'name', 'Centre de recherche en droit, technologie et sociƩtƩ'),
(127650, 102701, 'en', 'name', 'BƩgin Military Teaching Hospital'),
(127651, 102701, 'fr', 'name', 'HƓpital Militaire de Vincennes, HƓpital d''Instruction des ArmƩes BƩgin'),
(127652, 102702, 'en', 'name', 'Zhongyuan University of Technology'),
(127653, 102702, 'zh', 'name', 'äø­åŽŸå·„å­¦é™¢'),
(127654, 102703, 'en', 'name', 'National Renewable Energy Laboratory'),
(127655, 102704, 'fr', 'name', 'Centre d''Etudes en Civilisations, Langues et Littératures Etrangères'),
(127656, 102705, 'en', 'name', 'Posts and Telecommunications Institute of Technology'),
(127657, 102705, 'vi', 'name', 'Hį»c Viện CĆ“ng Nghệ Bʰu ChĆ­nh Viį»…n ThĆ“ng'),
(127658, 102706, 'de', 'name', 'Agentur für Natur- und Landschaftsschutz der Tschechischen Republik'),
(127659, 102706, 'en', 'name', 'Nature Conservation Agency of the Czech Republic'),
(127660, 102707, 'ca', 'name', 'Universitat de MĆ laga'),
(127661, 102707, 'en', 'name', 'University of Malaga'),
(127662, 102707, 'es', 'name', 'Universidad de MƔlaga'),
(127663, 102708, 'de', 'name', 'Stiftung Alfried Krupp Kolleg Greifswald'),
(127664, 102709, 'en', 'name', 'University of Kansas Medical Center'),
(127665, 102710, 'fr', 'name', 'Institut de Recherche en Infectiologie de Montpellier'),
(127666, 102711, 'en', 'name', 'Space Telescope Science Institute'),
(127667, 102712, 'en', 'name', 'Great Lakes Observing System'),
(127668, 102713, 'en', 'name', 'Hebei University of Engineering'),
(127669, 102713, 'zh', 'name', 'ę²³åŒ—å·„ēØ‹å¤§å­¦'),
(127670, 102714, 'en', 'name', 'SeinƤjoki University of Applied Sciences'),
(127671, 102714, 'fi', 'name', 'SeinƤjoen ammattikorkeakoulu'),
(127672, 102715, 'es', 'name', 'Universidad Tecnológica del Suroeste de Guanajuato'),
(127673, 102716, 'en', 'name', 'Biology of Extremophiles Laboratory'),
(127674, 102716, 'fr', 'name', 'Laboratoire de Biologie Moleculaire du GĆØne chez les Extremophiles'),
(127675, 102717, 'en', 'name', 'Lafayette College'),
(127676, 102718, 'en', 'name', 'Sichuan International Studies University'),
(127677, 102718, 'zh', 'name', 'å››å·å¤–čÆ­å­¦é™¢'),
(127678, 102719, 'fr', 'name', 'Association Histiocytose France'),
(127679, 102720, 'en', 'name', 'National Institute of Social Development');
INSERT INTO `ror_settings` VALUES
(127680, 102720, 'si', 'name', 'ą¶¢ą·ą¶­ą·’ą¶š ą·ƒą¶øą·ą¶¢ ą·ƒą¶‚ą·€ą¶»ą·Šą¶°ą¶± ආයතනය'),
(127681, 102720, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®šą®®ąÆ‚ą®• ą®…ą®Ŗą®æą®µą®æą®°ąÆą®¤ąÆą®¤ą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(127682, 102721, 'en', 'name', 'uOttawa Brain and Mind Research Institute'),
(127683, 102721, 'fr', 'name', 'L''Institut de recherche sur le cerveau'),
(127684, 102722, 'en', 'name', 'Nanjing Normal University'),
(127685, 102722, 'zh', 'name', 'å—äŗ¬åøˆčŒƒå¤§å­¦'),
(127686, 102723, 'fr', 'name', 'Laboratoire de recherche en droit'),
(127687, 102724, 'fr', 'name', 'RIATE - Centre pour l''analyse spatiale et la gƩovisualisation'),
(127688, 102725, 'en', 'name', 'Sekisui Plastics'),
(127689, 102725, 'ja', 'name', 'ē©ę°“åŒ–ęˆå“å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(127690, 102725, 'no_lang_code', 'name', 'Sekisui Kasei (Japan)'),
(127691, 102726, 'en', 'name', 'CƩvennes National Park'),
(127692, 102726, 'fr', 'name', 'Parc national des CƩvennes'),
(127693, 102727, 'en', 'name', 'Hudson Valley Community College'),
(127694, 102728, 'en', 'name', 'Institute of Genetics and Development of Rennes'),
(127695, 102728, 'fr', 'name', 'Institut de gƩnƩtique et de dƩveloppement de Rennes'),
(127696, 102729, 'en', 'name', 'Memory and Cognition Laboratory'),
(127697, 102729, 'fr', 'name', 'Laboratoire MƩmoire et Cognition'),
(127698, 102730, 'en', 'name', 'Toulouse School of Management Research'),
(127699, 102730, 'fr', 'name', 'Centre de Recherche en Managment'),
(127700, 102731, 'cs', 'name', 'Institut klinickƩ a experimentƔlnƭ medicƭny'),
(127701, 102731, 'en', 'name', 'Institute of Clinical and Experimental Medicine'),
(127702, 102732, 'fr', 'name', 'Laboratoire des Technologies de la MicroƩlectronique'),
(127703, 102733, 'en', 'name', 'Polish Academy of Sciences - Scientific Station in Paris'),
(127704, 102733, 'fr', 'name', 'Academie Polonaise des Sciences - Centre Scientifique Ć  Paris'),
(127705, 102734, 'en', 'name', 'Virginia Serious Game Institute'),
(127706, 102735, 'en', 'name', 'Humanities West'),
(127707, 102736, 'fr', 'name', 'Laboratoire de Chimie-Physique MacromolƩculaire'),
(127708, 102737, 'en', 'name', 'Tokyo Ariake University of Medical and Health Sciences'),
(127709, 102737, 'ja', 'name', 'ę±äŗ¬ęœ‰ę˜ŽåŒ»ē™‚å¤§å­¦'),
(127710, 102738, 'en', 'name', 'AESE Business School'),
(127711, 102739, 'en', 'name', 'Chuzhou University'),
(127712, 102740, 'en', 'name', 'Laboratory of Mechanics and Acoustics'),
(127713, 102740, 'fr', 'name', 'Laboratoire de MĆ©canique et d’Acoustique'),
(127714, 102741, 'en', 'name', 'Datarobot, Datarobot (United States)'),
(127715, 102742, 'en', 'name', 'Lancaster and Morecambe College'),
(127716, 102743, 'en', 'name', 'Beijing University of Technology'),
(127717, 102743, 'zh', 'name', 'åŒ—äŗ¬å·„äøšå¤§å­¦'),
(127718, 102744, 'en', 'name', 'University of Missouri–St. Louis'),
(127719, 102745, 'en', 'name', 'New Jersey Council for the Humanities'),
(127720, 102746, 'fr', 'name', 'Institut de Recherches et d''Etudes sur les Mondes Arabes et Musulmans'),
(127721, 102747, 'fr', 'name', 'Universidad Tecnológica de Tecamachalco'),
(127722, 102748, 'en', 'name', 'Zhejiang Institute of Subtropical Crops'),
(127723, 102748, 'zh', 'name', 'ęµ™ę±Ÿēœäŗšēƒ­åø¦ä½œē‰©ē ”ē©¶ę‰€'),
(127724, 102749, 'en', 'name', 'Istanbul Medipol University'),
(127725, 102750, 'en', 'name', 'Nickel Institute'),
(127726, 102751, 'es', 'name', 'Universidad CES'),
(127727, 102752, 'en', 'name', 'Korea Aerospace Research Institute'),
(127728, 102752, 'ko', 'name', 'ķ•œźµ­ķ•­ź³µģš°ģ£¼ģ—°źµ¬ģ›'),
(127729, 102753, 'en', 'name', 'Jining University'),
(127730, 102754, 'en', 'name', 'Centre on International Policy Studies'),
(127731, 102754, 'fr', 'name', 'Centre d''Ʃtudes en politiques internationales'),
(127732, 102755, 'en', 'name', 'Clemson University'),
(127733, 102755, 'fr', 'name', 'UniversitƩ de clemson'),
(127734, 102756, 'en', 'name', 'Illinois Institute of Technology'),
(127735, 102756, 'es', 'name', 'Instituto de TecnologĆ­a de Illinois'),
(127736, 102756, 'fr', 'name', 'Institut de technologie de l''illinois'),
(127737, 102757, 'fr', 'name', 'Centre Alpin sur les Réseaux Trophiques et Ecosystèmes Lacustre'),
(127738, 102758, 'en', 'name', 'Karamanoğlu Mehmetbey University'),
(127739, 102758, 'tr', 'name', 'Karamanoğlu Mehmetbey Üniversitesi'),
(127740, 102759, 'en', 'name', 'Foreign, Commonwealth & Development Office'),
(127741, 102760, 'en', 'name', 'Royal Conservatoire of Scotland'),
(127742, 102760, 'gd', 'name', 'Conservatoire RƬoghail na h-Alba'),
(127743, 102761, 'fr', 'name', 'Education, Cultures, Politiques, Ɖducation, Cultures, Politiques'),
(127744, 102762, 'en', 'name', 'Plant Genome and Development Laboratory'),
(127745, 102762, 'fr', 'name', 'Laboratoire GƩnome et DƩveloppement des Plantes'),
(127746, 102763, 'fr', 'name', 'Laboratoire interdisciplinaire en Ʃtudes culturelles'),
(127747, 102764, 'en', 'name', 'Energy Sciences Network'),
(127748, 102765, 'no_lang_code', 'name', 'Eni (Italy)'),
(127749, 102766, 'en', 'name', 'Nanjing University of Science and Technology ZiJin College'),
(127750, 102766, 'zh', 'name', 'å—äŗ¬ē†å·„å¤§å­¦ē“«é‡‘å­¦é™¢'),
(127751, 102767, 'en', 'name', 'Childhood genetic diseases laboratory'),
(127752, 102767, 'fr', 'name', 'Maladies gĆ©nĆ©tiques d’expression pĆ©diatrique'),
(127753, 102768, 'fr', 'name', 'Centre interdisciplinaire de recherche "Culture, Ʃducation, formation, travail"'),
(127754, 102769, 'no_lang_code', 'name', 'CSX, CSX (United States)'),
(127755, 102770, 'en', 'name', 'University of Belgrade – Faculty of Philology'),
(127756, 102770, 'sr', 'name', 'Univerzitet u Beogradu – FiloloÅ”ki fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Филолошки Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(127757, 102771, 'en', 'name', 'Xinxiang Medical University'),
(127758, 102771, 'zh', 'name', 'ę–°ä¹”åŒ»å­¦é™¢'),
(127759, 102772, 'en', 'name', 'School of Engineering of the City of Paris'),
(127760, 102772, 'fr', 'name', 'Ɖcole des IngĆ©nieurs de la Ville de Paris'),
(127761, 102773, 'en', 'name', 'Hellenic Centre for Marine Research'),
(127762, 102774, 'en', 'name', 'Institute for Genetics, Environment and Plant Protection'),
(127763, 102774, 'fr', 'name', 'Institut de GƩnƩtique, Environnement et Protection des Plantes'),
(127764, 102775, 'en', 'name', 'Kirklees College'),
(127765, 102776, 'en', 'name', 'Erzurum Technical University'),
(127766, 102776, 'tr', 'name', 'Erzurum Teknik Üniversitesi'),
(127767, 102777, 'en', 'name', 'SRKR Engineering College'),
(127768, 102778, 'fr', 'name', 'Laboratoire GƩnie et MatƩriaux Textiles'),
(127769, 102779, 'en', 'name', 'Florida Global University'),
(127770, 102779, 'es', 'name', 'Universidad Global de Florida'),
(127771, 102780, 'en', 'name', 'Global Research Institute of Paris'),
(127772, 102781, 'en', 'name', 'SMA Trust'),
(127773, 102782, 'en', 'name', 'Integrated Structural Biology Grenoble'),
(127774, 102783, 'fr', 'name', 'UMR Ressources'),
(127775, 102784, 'en', 'name', 'Liaoning Academy of Materials'),
(127776, 102785, 'en', 'name', 'Manipur University'),
(127777, 102785, 'hi', 'name', 'ą¤®ą¤£ą¤æą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(127778, 102786, 'en', 'name', 'Mardin Artuklu University'),
(127779, 102786, 'tr', 'name', 'Mardin Artuklu Üniversitesi'),
(127780, 102787, 'en', 'name', 'Translational Innovation in Medicine and Complexity'),
(127781, 102787, 'fr', 'name', 'Laboratoire TIMC, Recherche Translationnelle et Innovation en MƩdecine et ComplexitƩ'),
(127782, 102788, 'en', 'name', 'University of Pavol Jozef ŠafÔrik'),
(127783, 102788, 'sk', 'name', 'Univerzita Pavla Jozefa ŠafÔrika v KoŔiciach'),
(127784, 102789, 'de', 'name', 'Fachhochschule St. Pƶlten'),
(127785, 102789, 'en', 'name', 'St. Pƶlten University of Applied Sciences'),
(127786, 102790, 'de', 'name', 'Leibniz-Institut für Alternsforschung - Fritz-Lipmann-Institut (FLI)'),
(127787, 102790, 'en', 'name', 'Leibniz Institute on Aging - Fritz Lipmann Institute (FLI)'),
(127788, 102791, 'fr', 'name', 'Laboratoire GƩnie de Production'),
(127789, 102792, 'fr', 'name', 'Centre d''Ʃtudes sud-asiatiques et himalayennes'),
(127790, 102793, 'en', 'name', 'Anahuac University Network'),
(127791, 102793, 'es', 'name', 'Red de Universidades AnƔhuac'),
(127792, 102794, 'de', 'name', 'UniversitƤt Verona'),
(127793, 102794, 'en', 'name', 'University of Verona'),
(127794, 102794, 'fr', 'name', 'UniversitƩ de vƩrone'),
(127795, 102794, 'it', 'name', 'UniversitĆ  degli Studi di Verona'),
(127796, 102795, 'en', 'name', 'Percy Training Hospital of the Armies'),
(127797, 102795, 'fr', 'name', 'HƓpital d''instruction des ArmƩes Percy'),
(127798, 102796, 'en', 'name', 'Bureau of Public Roads'),
(127799, 102797, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī•ĪŗĻ€Ī±Ī¹Ī“ĪµĻ…Ļ„Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± ĪšĻĪ®Ļ„Ī·Ļ‚'),
(127800, 102797, 'en', 'name', 'Hellenic Mediterranean University'),
(127801, 102798, 'en', 'name', 'The Sixth Form College Colchester'),
(127802, 102799, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Cosenza'),
(127803, 102800, 'fr', 'name', 'Observatoire de la CĆ“te d’Azur, Observatoire de la cĆ“te d''azur'),
(127804, 102801, 'en', 'name', 'CINEC Campus (Pvt) Ltd.'),
(127805, 102802, 'fr', 'name', 'Laboratoire Biosciences et bioingƩnierie pour la SantƩ'),
(127806, 102803, 'en', 'name', 'European Institute of Technology'),
(127807, 102803, 'fr', 'name', 'Ɖcole pour l''informatique et les nouvelles technologies'),
(127808, 102803, 'oc', 'name', 'EPITECH European Institute of Information Technology'),
(127809, 102804, 'en', 'name', 'Hubei University of Automotive Technology'),
(127810, 102804, 'zh', 'name', 'ę¹–åŒ—ę±½č½¦å·„äøšå­¦é™¢'),
(127811, 102805, 'en', 'name', 'Institute of Entomology'),
(127812, 102806, 'en', 'name', 'Atebubu College of Education'),
(127813, 102807, 'es', 'name', 'Universidad Tecnológica Fidel VelÔzquez'),
(127814, 102808, 'de', 'name', 'Forschungszentrum L3S'),
(127815, 102808, 'en', 'name', 'L3S Research Center'),
(127816, 102809, 'en', 'name', 'Banner Health'),
(127817, 102810, 'en', 'name', 'Yanbian University'),
(127818, 102810, 'zh', 'name', '延边大学'),
(127819, 102811, 'de', 'name', 'Deutsch-Franzƶsisches Institut'),
(127820, 102812, 'en', 'name', 'St George’s University Hospitals NHS Foundation Trust'),
(127821, 102813, 'en', 'name', 'Northeast Brooklyn Housing Development Corporation'),
(127822, 102814, 'en', 'name', 'Afyon Kocatepe University'),
(127823, 102814, 'tr', 'name', 'Afyon Kocatepe Üniversitesi'),
(127824, 102815, 'en', 'name', 'University of Huelva'),
(127825, 102815, 'es', 'name', 'Universidad de Huelva'),
(127826, 102816, 'de', 'name', 'Eberhard Karls Universität Tübingen'),
(127827, 102816, 'en', 'name', 'University of Tübingen'),
(127828, 102817, 'en', 'name', 'LPENS Laboratory'),
(127829, 102817, 'fr', 'name', 'Laboratoire de Physique de l''ENS'),
(127830, 102818, 'de', 'name', 'Nationale Forschungsdateninfrastruktur für Mikrobiota-Forschung'),
(127831, 102818, 'no_lang_code', 'name', 'NFDI4Microbiota'),
(127832, 102819, 'en', 'name', 'Istanbul University'),
(127833, 102819, 'tr', 'name', 'İstanbul Üniversitesi'),
(127834, 102820, 'en', 'name', 'Fasa University'),
(127835, 102821, 'de', 'name', 'ZBW – Leibniz-Informationszentrum Wirtschaft'),
(127836, 102822, 'en', 'name', 'Cebu Normal University'),
(127837, 102822, 'tl', 'name', 'Pamantasang Normal ng Cebu'),
(127838, 102823, 'en', 'name', 'Mathematics Laboratory of Orsay'),
(127839, 102823, 'fr', 'name', 'Laboratoire de MathƩmatiques d''Orsay'),
(127840, 102824, 'en', 'name', 'International Centre for Mathematical Sciences'),
(127841, 102825, 'fr', 'name', 'Laboratoire Bordelais de Recherche en Informatique'),
(127842, 102826, 'en', 'name', 'Sciences Po Center for Socio-Political Data'),
(127843, 102826, 'fr', 'name', 'Centre de donnƩes socio-politiques de Sciences Po'),
(127844, 102827, 'fr', 'name', 'Centre Intégré de Santé et Services Sociaux de Chaudière-Appalache'),
(127845, 102828, 'en', 'name', 'French National School for the Judiciary'),
(127846, 102828, 'fr', 'name', 'Ɖcole Nationale de la Magistrature'),
(127847, 102829, 'en', 'name', 'Alaska Humanities Forum'),
(127848, 102830, 'en', 'name', 'PLA Rocket Force Research Institute'),
(127849, 102830, 'zh', 'name', '中国人民解放军火箭军研究院'),
(127850, 102831, 'bn', 'name', 'ą¦°ą¦¬ą§€ą¦Øą§ą¦¦ą§ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(127851, 102831, 'en', 'name', 'Rabindra University'),
(127852, 102832, 'en', 'name', 'Kingston Maurward College'),
(127853, 102833, 'en', 'name', 'NHS Digital'),
(127854, 102834, 'en', 'name', 'National Fund for Health Insurance'),
(127855, 102834, 'fr', 'name', 'l''Assurance Maladie'),
(127856, 102835, 'fr', 'name', 'Physique et Physiologie IntƩgratives de l''Arbre en Environnement Fluctuant'),
(127857, 102836, 'bn', 'name', 'ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(127858, 102836, 'en', 'name', 'Asian University of Bangladesh'),
(127859, 102837, 'en', 'name', 'Northeastern University'),
(127860, 102837, 'zh', 'name', 'äøœåŒ—å¤§å­¦'),
(127861, 102838, 'it', 'name', 'Scuola Normale Superiore'),
(127862, 102839, 'en', 'name', 'Qinghai Normal University'),
(127863, 102839, 'zh', 'name', 'é’ęµ·åøˆčŒƒå¤§å­¦'),
(127864, 102840, 'en', 'name', 'National Air and Space Museum'),
(127865, 102841, 'en', 'name', 'Hilton Worldwide Holdings, Hilton Worldwide Holdings (United States)'),
(127866, 102842, 'en', 'name', 'Futuribles International'),
(127867, 102842, 'fr', 'name', 'Association Futuribles International'),
(127868, 102843, 'fr', 'name', 'Laboratoire CarMeN'),
(127869, 102844, 'en', 'name', 'Soils, Solids, Structures, Risks'),
(127870, 102844, 'fr', 'name', 'Sols, Solides, Structures, Risques'),
(127871, 102845, 'fr', 'name', 'Irasia Recherche'),
(127872, 102846, 'de', 'name', 'Musik Akademie Basel'),
(127873, 102846, 'en', 'name', 'City of Basel Music Academy'),
(127874, 102847, 'en', 'name', 'University of the South Pacific - Samoa Campus'),
(127875, 102848, 'en', 'name', 'Cooper Hewitt, Smithsonian Design Museum'),
(127876, 102849, 'el', 'name', 'Δημοκρίτειο Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī˜ĻĪ¬ĪŗĪ·Ļ‚'),
(127877, 102849, 'en', 'name', 'Democritus University of Thrace'),
(127878, 102849, 'fr', 'name', 'UniversitƩ dƩmocrite de thrace'),
(127879, 102850, 'pt', 'name', 'Sociedade Portuguesa para o Estudo das Aves'),
(127880, 102851, 'pt', 'name', 'Ministério Público'),
(127881, 102852, 'fr', 'name', 'Centre de Recherche sur la Langue et les Textes Basques'),
(127882, 102853, 'en', 'name', 'Florida Humanities Council'),
(127883, 102854, 'es', 'name', 'Tecnológico Nacional de México de Ciudad Jiménez'),
(127884, 102855, 'en', 'name', 'Institute of Biology Valrose'),
(127885, 102855, 'fr', 'name', 'Institut de Biologie Valrose'),
(127886, 102856, 'cs', 'name', 'PražskÔ vysokÔ Ŕkola psychosociÔlních studií, s.r.o.'),
(127887, 102856, 'en', 'name', 'Prague College of Psychosocial Studies'),
(127888, 102857, 'en', 'name', 'Jagiellonian University'),
(127889, 102857, 'pl', 'name', 'Uniwersytet Jagielloński'),
(127890, 102858, 'en', 'name', 'Guangzhou Huali College'),
(127891, 102858, 'zh', 'name', 'å¹æå·žåŽē«‹å­¦é™¢'),
(127892, 102859, 'fr', 'name', 'Institut Fresnel'),
(127893, 102860, 'en', 'name', 'University of Lille Nord de France'),
(127894, 102860, 'fr', 'name', 'UniversitƩ Lille Nord de France'),
(127895, 102861, 'en', 'name', 'Institute of Molecular Chemistry Reims'),
(127896, 102861, 'fr', 'name', 'Institut de Chimie MolƩculaire de Reims'),
(127897, 102862, 'en', 'name', 'Humanities Nebraska'),
(127898, 102863, 'no_lang_code', 'name', 'Coupang, Coupang (South Korea)'),
(127899, 102864, 'fr', 'name', 'Mondes germaniques et nord-europƩens'),
(127900, 102865, 'en', 'name', 'Oregon Institute of Technology'),
(127901, 102866, 'en', 'name', 'Lille Inflammation Research International Center'),
(127902, 102867, 'en', 'name', 'Center for Astrophysics Harvard & Smithsonian'),
(127903, 102868, 'en', 'name', 'Nursing School of Coimbra'),
(127904, 102868, 'pt', 'name', 'Escola Superior de Enfermagem de Coimbra'),
(127905, 102869, 'fr', 'name', 'Interactions Arbres-Microorganismes'),
(127906, 102870, 'en', 'name', 'Institute of Physics'),
(127907, 102871, 'fr', 'name', 'Sciences Po Grenoble'),
(127908, 102872, 'fr', 'name', 'Centre d’Études et de Recherches Interdisciplinaires en Lettres, Arts et CinĆ©ma'),
(127909, 102873, 'fr', 'name', 'Transversales'),
(127910, 102874, 'en', 'name', 'Wisconsin Humanities Council'),
(127911, 102875, 'fr', 'name', 'Laboratoire des MultimatƩriaux et Interfaces'),
(127912, 102876, 'en', 'name', 'Inholland University of Applied Sciences'),
(127913, 102876, 'nl', 'name', 'Hogeschool Inholland'),
(127914, 102877, 'es', 'name', 'Instituto de Assistência Médica ao Servidor Público Estadual'),
(127915, 102878, 'en', 'name', 'Mouse Clinical Institute'),
(127916, 102878, 'fr', 'name', 'Institut Clinique de la Souris'),
(127917, 102879, 'en', 'name', 'Chemistry for Life Sciences'),
(127918, 102879, 'fr', 'name', 'Chimie Biologique pour le Vivant'),
(127919, 102880, 'ca', 'name', 'Institut AstrofĆ­sic de les Illes CanĆ ries'),
(127920, 102880, 'es', 'name', 'Instituto de AstrofĆ­sica de Canarias'),
(127921, 102881, 'fr', 'name', 'BiomatƩriaux et Inflammation en Site Osseux'),
(127922, 102882, 'fr', 'name', 'Conflits, reprƩsentations et dialogues dans l''univers anglo-saxon'),
(127923, 102883, 'en', 'name', 'National Institute of Advanced Manufacturing Technology'),
(127924, 102883, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤‰ą¤Øą„ą¤Øą¤¤ ą¤µą¤æą¤Øą¤æą¤°ą„ą¤®ą¤¾ą¤£ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(127925, 102884, 'fr', 'name', 'Centre d''Etudes SupƩrieures de la Renaissance'),
(127926, 102885, 'es', 'name', 'Fundación Universitaria María Cano'),
(127927, 102886, 'fr', 'name', 'Direction des Ʃnergies'),
(127928, 102887, 'fr', 'name', 'Etude longitudinale franƧaise depuis l''enfance'),
(127929, 102888, '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'),
(127930, 102889, 'pt', 'name', 'Sociedade Brasileira de Urologia'),
(127931, 102890, 'en', 'name', 'Emory University'),
(127932, 102891, 'en', 'name', 'Department of National Trade Measurement and Standards'),
(127933, 102892, 'fr', 'name', 'Education, Discours et Apprentissages'),
(127934, 102893, 'fr', 'name', 'Microbiologie Environnement Digestif SantƩ'),
(127935, 102894, 'fr', 'name', 'Biologie Fonctionnelle Insectes et Interactions'),
(127936, 102895, 'en', 'name', 'University of Namur'),
(127937, 102895, 'fr', 'name', 'UniversitƩ de Namur'),
(127938, 102896, 'en', 'name', 'Biomolecular Engineering Laboratory, Laboratory of Biomolecules Engineering'),
(127939, 102896, 'fr', 'name', 'Laboratoire d''IngƩnierie des BiomolƩcules'),
(127940, 102897, 'en', 'name', 'Naval Surface Warfare Center'),
(127941, 102898, 'en', 'name', 'University of Minnesota Libraries Publishing'),
(127942, 102899, 'fr', 'name', 'Laboratoire Polytech''Lab'),
(127943, 102900, 'en', 'name', 'Molina Healthcare, Molina Healthcare (United States)'),
(127944, 102901, 'en', 'name', 'Cambridge Regional College'),
(127945, 102902, 'en', 'name', 'Shenyang University of Chemical Technology'),
(127946, 102902, 'zh', 'name', 'ę²ˆé˜³åŒ–å·„å¤§å­¦'),
(127947, 102903, 'en', 'name', 'University of Toronto'),
(127948, 102903, 'fr', 'name', 'UniversitƩ de Toronto'),
(127949, 102904, 'en', 'name', 'Epigenetics and Cell Fate'),
(127950, 102904, 'fr', 'name', 'EpigƩnƩtique et Destin Cellulaire'),
(127951, 102905, 'en', 'name', 'Taiwan Space Agency'),
(127952, 102905, 'zh', 'name', 'åœ‹å®¶å¤Ŗē©ŗäø­åæƒ'),
(127953, 102906, 'en', 'name', 'Wenzhou University of Technology'),
(127954, 102907, 'en', 'name', 'S P Jain School of Global Management'),
(127955, 102908, 'pt', 'name', 'Instituto Superior de Estudos Interculturais e Transdisciplinares de Viseu'),
(127956, 102909, 'pl', 'name', 'Akademii Nauk Stosowanych im. Józefa Gołuchowskiego'),
(127957, 102910, 'en', 'name', 'Chongqing University of Posts and Telecommunications'),
(127958, 102910, 'zh', 'name', 'é‡åŗ†é‚®ē”µå¤§å­¦'),
(127959, 102911, 'es', 'name', 'Instituto Tecnológico Superior de Loreto'),
(127960, 102912, 'cs', 'name', 'ElektronickÔ Zdravotní Knížka'),
(127961, 102912, 'no_lang_code', 'name', 'Izip (Czechia)'),
(127962, 102913, 'en', 'name', 'Kingsbrook Jewish Medical Center'),
(127963, 102914, 'es', 'name', 'Sociedad Colombiana de Cirugƭa OrtopƩdica y Traumatologƭa'),
(127964, 102915, 'en', 'name', 'Salish Kootenai College'),
(127965, 102916, 'en', 'name', 'Institute of Women Social Workers'),
(127966, 102917, 'en', 'name', 'University of Regina'),
(127967, 102917, 'fr', 'name', 'UniversitƩ de regina'),
(127968, 102918, 'fr', 'name', 'Spintronique et Technologie des Composants'),
(127969, 102919, 'fr', 'name', 'ƉpidĆ©miologie des maladies Animales et zoonotiques'),
(127970, 102920, 'ca', 'name', 'Universitat de les Illes Balears'),
(127971, 102920, 'en', 'name', 'University of the Balearic Islands'),
(127972, 102920, 'es', 'name', 'Universidad de las Illes Balears'),
(127973, 102920, 'gl', 'name', 'Universidade das Illas Baleares'),
(127974, 102921, 'de', 'name', 'Rechenzentrum Garching der Max-Planck-Gesellschaft'),
(127975, 102921, 'en', 'name', 'Max Planck Computing and Data Facility'),
(127976, 102922, 'en', 'name', 'California State University, Sacramento'),
(127977, 102922, 'es', 'name', 'Universidad Estatal de Sacramento'),
(127978, 102922, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  sacramento'),
(127979, 102923, 'fr', 'name', 'Maison Asie Pacifique'),
(127980, 102924, 'fr', 'name', 'Laboratoire de Microbiologie Fondamentale et PathogƩnicitƩ'),
(127981, 102925, 'en', 'name', 'University of West London'),
(127982, 102926, 'fr', 'name', 'Centre de Recherches et d''Etudes Administratives de Montpellier'),
(127983, 102927, 'fr', 'name', 'IMT Mines AlĆØs'),
(127984, 102928, 'en', 'name', 'Almedina Group'),
(127985, 102928, 'pt', 'name', 'Grupo Almedina'),
(127986, 102929, 'en', 'name', 'KƔroli GƔspƔr University of the Reformed Church in Hungary'),
(127987, 102929, 'hu', 'name', 'KƔroli GƔspƔr ReformƔtus Egyetem'),
(127988, 102930, 'en', 'name', 'Jiangxi University of Finance and Economics'),
(127989, 102930, 'zh', 'name', 'ę±Ÿč„æč“¢ē»å¤§å­¦'),
(127990, 102931, 'en', 'name', 'University of Veracruz'),
(127991, 102931, 'es', 'name', 'Universidad Veracruzana'),
(127992, 102932, 'fr', 'name', 'France Parkinson'),
(127993, 102933, 'tr', 'name', 'Niğde Ɩmer Halisdemir Ɯniversitesi, Niğde Ɯniversitesi'),
(127994, 102934, 'en', 'name', 'Mohawk College'),
(127995, 102935, 'en', 'name', 'Institute of Earth Sciences'),
(127996, 102935, 'pt', 'name', 'Instituto de CiĆŖncias da Terra'),
(127997, 102936, 'fr', 'name', 'UnitƩ de Recherche Pluridisciplinaire Sport, SantƩ, SociƩtƩ'),
(127998, 102937, 'en', 'name', 'National Institute of Chemical Physics and Biophysics'),
(127999, 102938, 'en', 'name', 'Great Lakes Institute for Environmental Research'),
(128000, 102939, 'fr', 'name', 'Haute Ɖcole Charlemagne'),
(128001, 102940, 'en', 'name', 'Institute of Chartered Accountants of Nigeria'),
(128002, 102941, 'en', 'name', 'Ningbo University'),
(128003, 102941, 'zh', 'name', '宁波大学'),
(128004, 102942, 'fr', 'name', 'Centre Hospitalier RƩgional Universitaire de Brest'),
(128005, 102943, 'en', 'name', 'New Mexico Humanities Council'),
(128006, 102944, 'az', 'name', 'TOBB İqtisadiyyat və Texnologiya Universiteti'),
(128007, 102944, 'en', 'name', 'TOBB University of Economics and Technology'),
(128008, 102944, 'tr', 'name', 'TOBB Ekonomi ve Teknoloji Üniversitesi'),
(128009, 102945, 'en', 'name', 'Smithsonian Center for Folklife and Cultural Heritage'),
(128010, 102946, 'en', 'name', 'PRX Research'),
(128011, 102947, 'en', 'name', 'Alliance University'),
(128012, 102948, 'en', 'name', 'Union Pacific, Union Pacific (United States)'),
(128013, 102949, 'en', 'name', 'Camilo JosƩ Cela University'),
(128014, 102949, 'es', 'name', 'Universidad Camilo JosƩ Cela'),
(128015, 102950, 'en', 'name', 'PUNCH4NFDI'),
(128016, 102951, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المؓرق'),
(128017, 102951, 'en', 'name', 'Mashreq University'),
(128018, 102952, 'pt', 'name', 'Associação Para as Ciências do Mar'),
(128019, 102953, 'en', 'name', 'Cancer Research Center'),
(128020, 102954, 'fr', 'name', 'Institut National de Physique NuclƩaire et de Physique des Particules'),
(128021, 102955, 'fr', 'name', 'HƓpital Bichat-Claude-Bernard'),
(128022, 102956, 'en', 'name', 'South East Technological University'),
(128023, 102956, 'ga', 'name', 'Ollscoil TeicneolaĆ­ochta and Oirdheiscirt'),
(128024, 102957, 'fr', 'name', 'Centre Occitanie-Montpellier'),
(128025, 102958, 'en', 'name', 'University of Winchester'),
(128026, 102959, 'no_lang_code', 'name', 'NFDI4Biodiversity'),
(128027, 102960, 'en', 'name', 'Japan Advanced Institute of Science and Technology'),
(128028, 102960, 'ja', 'name', 'åŒ—é™øå…ˆē«Æē§‘å­¦ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(128029, 102961, 'en', 'name', 'National Museum of the American Indian'),
(128030, 102962, 'de', 'name', 'Eidgenössisches Departement für auswärtige Angelegenheiten'),
(128031, 102962, 'en', 'name', 'Federal Department of Foreign Affairs'),
(128032, 102963, 'en', 'name', 'Lusophone Group'),
(128033, 102963, 'pt', 'name', 'Grupo Lusófona (Portugal)'),
(128034, 102964, 'es', 'name', 'Centro de Investigaciones Biológicas del Noroeste S.C.'),
(128035, 102965, 'am', 'name', 'į‹ØįŠ¢į‰µį‹®įŒµį‹« į‰“įŠ­įŠ–įˆŽįŒ‚ į‰£įˆˆįˆµįˆįŒ£įŠ•'),
(128036, 102965, 'en', 'name', 'Ethiopian Technology Authority'),
(128037, 102966, 'en', 'name', 'Netherlands Comprehensive Cancer Organisation'),
(128038, 102966, 'nl', 'name', 'Integraal Kankercentrum Nederland'),
(128039, 102967, 'en', 'name', 'Federal College of Education, Zaria'),
(128040, 102968, 'en', 'name', 'Children''s Hospital Foundation'),
(128041, 102969, 'en', 'name', 'St. Francis College of Education'),
(128042, 102969, 'ha', 'name', 'Kwalejin Ilimi ta St. Francis'),
(128043, 102970, 'en', 'name', 'Laboratory of the Physics of the Two Infinities IrĆØne Joliot-Curie'),
(128044, 102970, 'fr', 'name', 'Laboratoire de Physique des 2 Infinis IrĆØne Joliot-Curie'),
(128045, 102971, 'it', 'name', 'Seminario Arcivescovile di Milano'),
(128046, 102972, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الأمل Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© Ų§Ł„ŲŖŲ®ŲµŲµŁŠŲ©'),
(128047, 102972, 'en', 'name', 'Al-Amal College for Specialized Medical Sciences'),
(128048, 102973, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de GoiÔs, Instituto Federal de GoiÔs'),
(128049, 102974, 'en', 'name', 'Mount Allison University'),
(128050, 102975, 'en', 'name', 'Eastern International University'),
(128051, 102975, 'vi', 'name', 'ĐẔi hį»c Quốc tįŗæ Miền ĐƓng'),
(128052, 102976, 'en', 'name', 'Maqsut Narikbayev University'),
(128053, 102977, 'no_lang_code', 'name', 'AIntelia, AIntelia (Turkey)'),
(128054, 102978, 'en', 'name', 'Guangxi Research Institute of Chemical Industry'),
(128055, 102978, 'zh', 'name', 'å¹æč„æåŒ–å·„ē ”ē©¶é™¢'),
(128056, 102979, 'fr', 'name', 'Laboratoire de MƩtƩorologie Physique'),
(128057, 102980, 'en', 'name', 'Halmstad University'),
(128058, 102980, 'sv', 'name', 'Hƶgskolan i Halmstad'),
(128059, 102981, 'en', 'name', 'Southwest Petroleum University'),
(128060, 102981, 'zh', 'name', 'č„æå—ēŸ³ę²¹å¤§å­¦'),
(128061, 102982, 'cs', 'name', 'Ú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'),
(128062, 102982, 'en', 'name', 'Czech Academy of Sciences, Institute of Information Theory and Automation'),
(128063, 102983, 'fr', 'name', 'Chimie mƩdicinale et recherche translationnelle'),
(128064, 102984, 'en', 'name', 'European Space Research and Technology Centre'),
(128065, 102985, 'be', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń Францыска Дкарыны'),
(128066, 102985, 'en', 'name', 'Francisk Skorina Gomel State University'),
(128067, 102985, 'ru', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Франциска Дкорины'),
(128068, 102986, 'en', 'name', 'Zhangir Khan University, Zhangir Khan West Kazakhstan Agrarian Technical University'),
(128069, 102986, 'kk', 'name', 'Жәңгір Єан Университеті, Жәңгір хан атынГағы Батыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ аграрлық-техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(128070, 102986, 'ru', 'name', 'Жангир Єан Университет, ЗапаГно-ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ аграрно-технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Жангир хана'),
(128071, 102987, 'fr', 'name', 'Laboratoire interdisciplinaire de recherche sur les transformations des pratiques Ʃducatives et des pratiques sociales'),
(128072, 102988, 'en', 'name', 'Bury College'),
(128073, 102989, 'en', 'name', 'Helsinki Metropolia University of Applied Sciences'),
(128074, 102990, 'en', 'name', 'Northeastern University London'),
(128075, 102991, 'en', 'name', 'Islamic Azad University, East Tehran Branch'),
(128076, 102991, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران ؓرق'),
(128077, 102992, 'en', 'name', 'Hungarian University of Fine Arts'),
(128078, 102992, 'hu', 'name', 'Magyar KĆ©pzőművĆ©szeti Egyetem'),
(128079, 102993, 'en', 'name', 'Entergy, Entergy (United States)'),
(128080, 102994, 'en', 'name', 'Jimei University'),
(128081, 102994, 'zh', 'name', 'é›†ē¾Žå¤§å­¦'),
(128082, 102995, 'en', 'name', 'EDP University'),
(128083, 102995, 'pt', 'name', 'Universidade EDP'),
(128084, 102996, 'en', 'name', 'Mitochondrial and Cardiovascular Physiopathology'),
(128085, 102996, 'fr', 'name', 'Physiopathologie Cardiovasculaire et Mitochondriale'),
(128086, 102997, 'en', 'name', 'Herkimer College'),
(128087, 102998, 'fr', 'name', 'Institut Pasteur du Cambodge'),
(128088, 102999, 'en', 'name', 'French Centre for Research on Education, Training and Employment'),
(128089, 102999, 'fr', 'name', 'Centre d''Ɖtudes et de Recherches sur les Qualifications'),
(128090, 103000, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Nancy'),
(128091, 103001, 'en', 'name', 'Laboratory of Nanotechnology Instrumentation and Optics'),
(128092, 103002, 'fr', 'name', 'Ecole d''ingénieurs en génie des systèmes industriels'),
(128093, 103003, 'cs', 'name', 'KrajskĆ” knihovna Vysočiny'),
(128094, 103003, 'en', 'name', 'Vysočina Regional Library'),
(128095, 103004, 'en', 'name', 'O. P. Jindal Global University'),
(128096, 103004, 'hi', 'name', 'ओ.ą¤Ŗą„€. ą¤œą¤æą¤‚ą¤¦ą¤² ą¤—ą„ą¤²ą„‹ą¤¬ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(128097, 103005, 'en', 'name', 'Trinity College'),
(128098, 103006, 'en', 'name', 'SUNY New Paltz'),
(128099, 103007, 'es', 'name', 'Universidad Nacional "Siglo XX"'),
(128100, 103008, 'de', 'name', 'Klinik und Poliklinik für Psychiatrie und Psychotherapie'),
(128101, 103009, 'fr', 'name', 'Laboratoire d''Excellence TULIP'),
(128102, 103010, 'fr', 'name', 'Centre d’Archives en Philosophie, Histoire et Ɖdition des Sciences'),
(128103, 103011, 'pt', 'name', 'Nephrocare Portugal SA, Nephrocare Portugal SA (Portugal)'),
(128104, 103012, 'en', 'name', 'University of San Diego'),
(128105, 103012, 'es', 'name', 'Universidad de San Diego'),
(128106, 103012, 'fr', 'name', 'UniversitƩ de san diego'),
(128107, 103013, 'pt', 'name', 'Faculdade de Tecnologia de SĆ£o Paulo'),
(128108, 103014, 'en', 'name', 'Jiangsu University'),
(128109, 103014, 'zh', 'name', 'ę±Ÿč‹å¤§å­¦'),
(128110, 103015, 'fr', 'name', 'Laboratoire de MathĆ©matiques et ModĆ©lisation d''Ɖvry'),
(128111, 103016, 'en', 'name', 'Center for Advanced Studies Research and Development in Sardinia'),
(128112, 103016, 'it', 'name', 'Centro di Ricerca, Sviluppo e Studi Superiori in Sardegna'),
(128113, 103017, 'en', 'name', 'Civil Aviation University of China'),
(128114, 103017, 'zh', 'name', 'äø­å›½ę°‘čˆŖå¤§å­¦'),
(128115, 103018, 'ar', 'name', 'Ų§Ł„Ł€ŁƒŁ„Ł€ŁŠŁ€Ų© Ų§Ł„Ł€Ų¹Ł€ŲµŁ€Ų±ŁŠŁ€Ų© Ų§Ł„Ł€Ų¬Ł€Ł€Ų§Ł…Ų¹Ł€ŁŠŁ€Ł€Ł€Ų©'),
(128116, 103018, 'en', 'name', 'Modern University College'),
(128117, 103019, 'es', 'name', 'Instituto Tecnológico Superior de Tantoyuca'),
(128118, 103020, 'en', 'name', 'University of Belgrade – Faculty of Chemistry'),
(128119, 103020, 'sr', 'name', 'Univerzitet u Beogradu – Hemijski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Ń…ŠµŠ¼ŠøŃ˜ŃŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(128120, 103021, 'fr', 'name', 'Laboratoire de MathƩmatiques Nicolas Oresme'),
(128121, 103022, 'en', 'name', 'Software Academy'),
(128122, 103022, 'pt', 'name', 'Academia de Software, Academia de Software (Portugal)'),
(128123, 103023, 'es', 'name', 'Universidad Tecnológica de Coahuila'),
(128124, 103024, 'fr', 'name', 'Centre AndrƩ-Chastel'),
(128125, 103025, 'de', 'name', 'Stiftung Synapsis'),
(128126, 103025, 'en', 'name', 'Synapsis Foundation'),
(128127, 103026, 'bn', 'name', 'ą¦øą§‡ą¦žą§ą¦šą§ą¦°ą¦æą¦Æą¦¼ą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(128128, 103026, 'en', 'name', 'Centurion University of Technology and Management'),
(128129, 103027, 'en', 'name', 'NSWC Carderock Division'),
(128130, 103028, 'fr', 'name', 'Centre de recherches en arts et esthƩtique'),
(128131, 103029, 'en', 'name', 'Dumlupinar University'),
(128132, 103029, 'tr', 'name', 'Dumlupınar Üniversitesi'),
(128133, 103030, 'fr', 'name', 'ECAL/Ecole cantonale d''art de Lausanne'),
(128134, 103031, 'en', 'name', 'Fashion Institute of Technology'),
(128135, 103032, 'en', 'name', 'College of the Rockies'),
(128136, 103033, 'en', 'name', 'Jiangxi University of Traditional Chinese Medicine'),
(128137, 103033, 'zh', 'name', 'ę±Ÿč„æäø­åŒ»čÆå¤§å­¦'),
(128138, 103034, 'en', 'name', 'Beaujon Hospital'),
(128139, 103034, 'fr', 'name', 'HƓpital Beaujon'),
(128140, 103035, 'pt', 'name', 'Ordem dos Farmaceuticos'),
(128141, 103036, 'en', 'name', 'Laboratory of Mechanics Physics of Materials'),
(128142, 103037, 'no_lang_code', 'name', 'Wolfram Research (United States)'),
(128143, 103038, 'en', 'name', 'Xuchang University'),
(128144, 103039, 'no_lang_code', 'name', 'Karunya University'),
(128145, 103039, 'ta', 'name', 'ą®•ą®¾ą®°ąÆą®£ąÆą®Æą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(128146, 103040, 'en', 'name', 'KolaDaisi University'),
(128147, 103041, 'fr', 'name', 'CEPN - Centre d''Economie de l''UniversitƩ Paris Nord'),
(128148, 103042, 'en', 'name', 'Cellular and Chemical Biology'),
(128149, 103042, 'fr', 'name', 'Chimie et Biologie de la Cellule'),
(128150, 103043, 'es', 'name', 'Tecnológico Nacional de México Campus San Martín Texmelucan'),
(128151, 103044, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁˆŁ‡Ų±Ų§Ł† 2 Ł…Ų­Ł…ŲÆ بن Ų£Ų­Ł…ŲÆ'),
(128152, 103044, 'en', 'name', 'University of Oran 2 Mohamed Ben Ahmed'),
(128153, 103044, 'fr', 'name', 'UniversitƩ d''Oran 2 Mohamed Ben Ahme'),
(128154, 103045, 'en', 'name', 'Soil Agro and Hydrosystems Spatialization'),
(128155, 103045, 'fr', 'name', 'Sol Agro et HydrosystĆØme Spatialisation'),
(128156, 103046, 'en', 'name', 'UNESCO Institute for Lifelong Learning'),
(128157, 103047, 'bn', 'name', 'বাংলাদেশ ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(128158, 103047, 'en', 'name', 'Bangladesh Agricultural University'),
(128159, 103048, 'en', 'name', 'Emily Carr University of Art and Design'),
(128160, 103049, 'de', 'name', 'Fachhochschule Wiener Neustadt'),
(128161, 103049, 'en', 'name', 'University of Applied Sciences Wiener Neustadt'),
(128162, 103050, 'en', 'name', 'Molecular Immuno-Rhumatology'),
(128163, 103050, 'fr', 'name', 'Immuno-Rhumathologie molƩculaire'),
(128164, 103051, 'fr', 'name', 'PhysicoChimie des Processus de Combustion et de l''AtmosphĆØre'),
(128165, 103052, 'en', 'name', 'Department of Mathematics and their Applications'),
(128166, 103052, 'fr', 'name', 'DƩpartement de mathƩmatiques et applications'),
(128167, 103053, 'en', 'name', 'Hemostase Inflammation Thrombosis'),
(128168, 103054, 'en', 'name', 'International Dairy Federation'),
(128169, 103055, 'cy', 'name', 'Prifysgol Buckingham'),
(128170, 103055, 'en', 'name', 'University of Buckingham'),
(128171, 103056, 'fr', 'name', 'Hématopoïèse et immunologie'),
(128172, 103057, 'en', 'name', 'The Schwarzman Animal Medical Center'),
(128173, 103058, 'en', 'name', 'Automation and Process Engineering Laboratory'),
(128174, 103058, 'fr', 'name', 'Laboratoire d''Automatique et de GƩnie des ProcƩdƩs'),
(128175, 103059, 'fr', 'name', 'Institut Universitaire de Recherche Clinique'),
(128176, 103060, 'ar', 'name', 'معهدالدراسات Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© و Ų§Ł„Ų„Ų¹Ł„Ų§Ł…ŁŠŲ©'),
(128177, 103060, 'en', 'name', 'Social and Media Studies Institute'),
(128178, 103060, 'fr', 'name', 'Institut d’Etudes Sociales et MĆ©diatiques'),
(128179, 103061, 'en', 'name', 'Central University of Odisha'),
(128180, 103061, 'hi', 'name', 'ओऔिशा ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(128181, 103061, 'or', 'name', 'ଓଔ଼ିଶା ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ą¬¬ą¬æą¬¶ą­ą¬¬ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(128182, 103062, 'es', 'name', 'Centro de Investigaciones Interdisciplinarias en Ciencias y Humanidades'),
(128183, 103063, 'en', 'name', 'Stem-Cell and Brain Research Institute'),
(128184, 103063, 'fr', 'name', 'Institut Cellule Souche et Cerveau'),
(128185, 103064, 'no_lang_code', 'name', 'Shenyang Ligong University'),
(128186, 103065, 'de', 'name', 'Deutscher Verband für Landschaftspflege, Deutscher Verband für Landschaftspflege e.V.'),
(128187, 103065, 'en', 'name', 'German Association for Landscape Conservation'),
(128188, 103066, 'hu', 'name', 'PĆ©csi Püspƶki HittudomĆ”nyi Főiskola'),
(128189, 103067, 'en', 'name', 'Vermont State University'),
(128190, 103068, 'en', 'name', 'French National Cancer Institute'),
(128191, 103068, 'fr', 'name', 'Institut National du Cancer'),
(128192, 103069, 'en', 'name', 'Nanjing Forestry University'),
(128193, 103069, 'zh', 'name', 'å—äŗ¬ęž—äøšå¤§å­¦'),
(128194, 103070, 'it', 'name', 'Accademia di Belle Arti di Catania'),
(128195, 103071, 'en', 'name', 'Southeast University Chengxian College'),
(128196, 103071, 'zh', 'name', 'äøœå—å¤§å­¦ęˆč“¤å­¦é™¢'),
(128197, 103072, 'en', 'name', 'Plant Communities and Biological Invaders in Tropical Environments'),
(128198, 103072, 'fr', 'name', 'Peuplements vƩgƩtaux et bioagresseurs en milieu tropical'),
(128199, 103073, 'en', 'name', 'Council of Graduate Departments of Psychology'),
(128200, 103074, 'cs', 'name', 'JihočeskĆ” VědeckĆ” Knihovna v Českých BudějovicĆ­ch'),
(128201, 103074, 'en', 'name', 'Research Library of South Bohemia'),
(128202, 103075, 'en', 'name', 'Debere Berhan Health Science College'),
(128203, 103076, 'en', 'name', 'Enphase Energy, Enphase Energy (United States)'),
(128204, 103077, 'en', 'name', 'City of Wolverhampton College'),
(128205, 103078, 'en', 'name', 'Xavier Institute of Management and Entrepreneurship'),
(128206, 103079, 'en', 'name', 'North Carolina State Climate Office'),
(128207, 103080, 'en', 'name', 'Central University of Haryana'),
(128208, 103080, 'ne', 'name', 'हरियाणा ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(128209, 103081, 'cs', 'name', 'Policie České republiky - Kriminalistický ústav'),
(128210, 103082, 'en', 'name', 'Tateisi Science and Technology Foundation'),
(128211, 103082, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗ ē«‹ēŸ³ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(128212, 103083, 'en', 'name', 'Iron and Steel Institute of Z. I. Nekrasov National Academy of Sciences of Ukraine'),
(128213, 103083, 'uk', 'name', 'Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ чорної Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³Ń–Ń— ім. Š—.І. ŠŠµŠŗŃ€Š°ŃŠ¾Š²Š° ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(128214, 103084, 'en', 'name', 'Museum Conservation Institute'),
(128215, 103085, 'en', 'name', 'Global Citizenship Foundation'),
(128216, 103086, 'en', 'name', 'Microbiology and the food chain'),
(128217, 103086, 'fr', 'name', 'DƩpartement Microbiologie et ChaƮne Alimentaire'),
(128218, 103087, 'en', 'name', 'Huainan Normal University'),
(128219, 103087, 'zh', 'name', 'ę·®å—åøˆčŒƒå­¦é™¢'),
(128220, 103088, 'es', 'name', 'Universidad Tecnologica de Tijuana'),
(128221, 103089, 'en', 'name', 'Lille Center for European Research on Administration, Politics and Society'),
(128222, 103089, 'fr', 'name', 'Centre d''Etudes et de Recherches Administratives, Politiques et Sociales'),
(128223, 103090, 'en', 'name', 'Istanbul Arel University'),
(128224, 103090, 'tr', 'name', 'İstanbul Arel Üniversitesi'),
(128225, 103091, 'en', 'name', 'SUNY Schenectady County Community College'),
(128226, 103092, 'en', 'name', 'Swami Ramanand Teerth Marathwada University'),
(128227, 103092, 'hi', 'name', 'ą¤øą„ą¤µą¤¾ą¤®ą„€ रामानंद ą¤¤ą„€ą¤°ą„ą¤„ मराठवाऔ़ा ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(128228, 103093, 'en', 'name', 'MidKent College'),
(128229, 103094, 'fr', 'name', 'CHANGINS - Haute Ć©cole de viticulture et œnologie'),
(128230, 103095, 'en', 'name', 'Ministry of Defence of the Russian Federation'),
(128231, 103095, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ обороны Российской ФеГерации'),
(128232, 103096, 'fr', 'name', 'Ɖcole Centrale de Nantes'),
(128233, 103097, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł‡Ų§ŲÆŁŠ الجامعة'),
(128234, 103097, 'en', 'name', 'Al-Hadi University College'),
(128235, 103098, 'en', 'name', 'European Fisheries Control Agency'),
(128236, 103098, 'es', 'name', 'Agencia Europea de Control de la Pesca'),
(128237, 103099, 'en', 'name', 'MoreBrains Cooperative, MoreBrains Cooperative (United Kingdom)'),
(128238, 103100, 'fr', 'name', 'REGARDS Recherches en Ɖconomie Gestion AgroRessources DurabilitĆ© SantĆ©'),
(128239, 103101, 'en', 'name', 'Laboratory of Physical and Chemical Biology of Membrane Proteins'),
(128240, 103101, 'fr', 'name', 'Laboratoire de Biologie Physico-Chimique des ProtƩines Membranaires'),
(128241, 103102, 'en', 'name', 'Loire Valley Centre'),
(128242, 103102, 'fr', 'name', 'Centre Val de Loire'),
(128243, 103103, 'en', 'name', 'The French Institute for International and Strategic Affairs'),
(128244, 103103, 'fr', 'name', 'Institut de Relations Internationales et StratƩgiques'),
(128245, 103104, 'en', 'name', 'Central University of Jammu'),
(128246, 103105, 'no_lang_code', 'name', 'Silence Therapeutics (United Kingdom)'),
(128247, 103106, 'en', 'name', 'Microbiology, Adaptation and Pathogenesis Lab'),
(128248, 103106, 'fr', 'name', 'Laboratoire de Microbiologie, Adaptation et PathogƩnie'),
(128249, 103107, 'en', 'name', 'Center of business law and management'),
(128250, 103107, 'fr', 'name', 'Centre de Droit des Affaires et de Gestion'),
(128251, 103108, 'fr', 'name', 'Institutions et Dynamiques Historiques de l''Ɖconomie et de la SociĆ©tĆ©'),
(128252, 103109, 'en', 'name', 'Wellington Community Hospital'),
(128253, 103110, 'en', 'name', 'Brain Plasticity laboratory'),
(128254, 103110, 'fr', 'name', 'Laboratoire PlasticitƩ du Cerveau'),
(128255, 103111, 'fr', 'name', 'Recherche translationnelle sur le diabĆØte'),
(128256, 103112, 'en', 'name', 'Raymond PoincarƩ University Hospital'),
(128257, 103112, 'fr', 'name', 'HƓpital Raymond-PoincarƩ'),
(128258, 103113, 'en', 'name', 'Wing Luke Museum of the Asian Pacific American Experience'),
(128259, 103114, 'fr', 'name', 'ThƩologie protestante'),
(128260, 103115, 'en', 'name', 'Ministry of Education and Science of the Republic of Kazakhstan'),
(128261, 103116, 'de', 'name', 'FIR e. V. an der RWTH Aachen'),
(128262, 103117, 'en', 'name', 'Evangelical Presbyterian College of Education, Amedzofe'),
(128263, 103117, 'ha', 'name', 'Kwalejin Ilimi ta Presbyterian na Bishara, Amedzofe'),
(128264, 103118, 'no_lang_code', 'name', 'Almac (United Kingdom)'),
(128265, 103119, 'en', 'name', 'Monroe Community College'),
(128266, 103120, 'pt', 'name', 'Direccao-Geral de Agricultura e Desenvolvimento Rural'),
(128267, 103121, 'en', 'name', 'Cancer Research UK Scotland Institute'),
(128268, 103122, 'sl', 'name', 'Å olski Center Ptuj'),
(128269, 103123, 'es', 'name', 'Port d''Informació Científica'),
(128270, 103124, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الطب ŲØŲŖŁˆŁ†Ų³'),
(128271, 103124, 'en', 'name', 'Faculty of Medicine of Tunis'),
(128272, 103124, 'fr', 'name', 'FacultƩ de mƩdecine de Tunis'),
(128273, 103125, 'en', 'name', 'Gap (United States)'),
(128274, 103126, 'en', 'name', 'East of England Secure Data Environment'),
(128275, 103127, 'fr', 'name', 'Mathématiques et Informatique pour la Complexité et les Systèmes'),
(128276, 103128, 'it', 'name', 'Fondazione Ricerca Biomedica Avanzata Onlus - VIMM'),
(128277, 103129, 'en', 'name', 'Jiangnan Social University'),
(128278, 103130, 'en', 'name', 'Hainan University'),
(128279, 103130, 'zh', 'name', 'ęµ·å—å¤§å­¦'),
(128280, 103131, 'en', 'name', 'St. Monica''s College of Education'),
(128281, 103132, 'fr', 'name', 'UnitƩ MatƩriaux et Transformations'),
(128282, 103133, 'es', 'name', 'Centro Científico Tecnológico - La Plata'),
(128283, 103134, 'fr', 'name', 'Centre Provence-Alpes-CƓte d''Azur'),
(128284, 103135, 'en', 'name', 'University of North Texas System'),
(128285, 103135, 'es', 'name', 'Sistema Universitario del Norte de Texas'),
(128286, 103136, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de l''Ɖlectronique et de ses Applications'),
(128287, 103137, 'en', 'name', 'International Centre of Insect Physiology and Ecology'),
(128288, 103138, 'fr', 'name', 'Analyse, GƩomƩtrie et ModƩlisation, Laboratoire Analyse GƩomƩtrie ModƩlisation'),
(128289, 103139, 'es', 'name', 'Telefónica Investigación y Desarrollo'),
(128290, 103139, 'no_lang_code', 'name', 'Telefonica Research and Development'),
(128291, 103140, 'en', 'name', 'Defense Center for Public Health - Aberdeen'),
(128292, 103141, 'en', 'name', 'Kennedy Memorial Trust'),
(128293, 103142, 'en', 'name', 'CareQuest Institute for Oral Health'),
(128294, 103143, 'en', 'name', 'Lakeside University College Ghana'),
(128295, 103144, 'en', 'name', 'Fordham University'),
(128296, 103144, 'es', 'name', 'Universidad de Fordham'),
(128297, 103145, 'en', 'name', 'National Institute of Research in Tuberculosis'),
(128298, 103146, 'en', 'name', 'Enchi College of Education'),
(128299, 103147, 'en', 'name', 'Dropbox, Dropbox (United States)'),
(128300, 103148, 'bn', 'name', 'খুলনা ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(128301, 103148, 'en', 'name', 'Khulna Agricultural University'),
(128302, 103149, 'cs', 'name', 'Botanický Ćŗstav AV ČR, Botanický Ćŗstav, v. v. i., Botanický Ćŗstav, veřejnĆ” výzkumnĆ” instituce'),
(128303, 103149, 'en', 'name', 'Czech Academy of Sciences, Institute of Botany'),
(128304, 103150, 'en', 'name', 'Georgia State University'),
(128305, 103151, 'es', 'name', 'Instituto Tecnológico de Aguascalientes'),
(128306, 103152, 'en', 'name', 'Chuo University'),
(128307, 103152, 'ja', 'name', '中央大学'),
(128308, 103153, 'pt', 'name', 'Administração Regional De Saude Do Centro'),
(128309, 103154, 'en', 'name', 'Institute for Translational Research in Inflammation'),
(128310, 103155, 'en', 'name', 'CMS Energy, CMS Energy (United States)'),
(128311, 103156, 'fr', 'name', 'Institut de Recherche sur l''Architecture Antique'),
(128312, 103157, 'en', 'name', 'National Center for Supercomputing Applications'),
(128313, 103158, 'fr', 'name', 'UniLaSalle Amiens (ESIEE-Amiens)'),
(128314, 103159, 'af', 'name', 'Nelson Mandela Metropolitaanse Universiteit'),
(128315, 103159, 'en', 'name', 'Nelson Mandela University'),
(128316, 103160, 'pt', 'name', 'Liga Portuguesa Contra o Cancro'),
(128317, 103161, 'en', 'name', 'Changchun Institute of Technology'),
(128318, 103161, 'zh', 'name', 'é•æę˜„å·„ēØ‹å­¦é™¢'),
(128319, 103162, 'no_lang_code', 'name', 'Aibee, Aibee (China)'),
(128320, 103162, 'zh', 'name', 'ēˆ±ē¬”ę™ŗčƒ½ē§‘ęŠ€ęœ‰é™å…¬åø'),
(128321, 103163, 'en', 'name', 'Louvre-Lens'),
(128322, 103163, 'fr', 'name', 'MusƩe du Louvre-Lens'),
(128323, 103164, 'en', 'name', 'Laboratory of Fundamental and Applied Computer Science of Tours'),
(128324, 103164, 'fr', 'name', 'Laboratoire d''Informatique Fondamentale et AppliquƩe de Tours'),
(128325, 103165, 'en', 'name', 'International Center for Relativistic Astrophysics Network'),
(128326, 103166, 'en', 'name', 'UCL Biomedical Research Centre'),
(128327, 103167, 'de', 'name', 'Tongji-UniversitƤt'),
(128328, 103167, 'no_lang_code', 'name', 'Tongji University'),
(128329, 103167, 'zh', 'name', 'åŒęµŽå¤§å­¦'),
(128330, 103168, 'en', 'name', 'City Hospital of Izmir'),
(128331, 103168, 'tr', 'name', 'Izmir Sehir Hastanesi, İzmir Şehir Hastanesi'),
(128332, 103169, 'en', 'name', 'Abia State Polytechnic'),
(128333, 103170, 'en', 'name', 'St. Vincent College of Education'),
(128334, 103170, 'ha', 'name', 'Kwalejin Ilimi ta St. Vincent'),
(128335, 103171, 'de', 'name', 'Anton Bruckner PrivatuniversitƤt'),
(128336, 103171, 'en', 'name', 'Anton Bruckner Private University'),
(128337, 103172, 'en', 'name', 'Ministry of Public Health'),
(128338, 103172, 'th', 'name', 'ąøąø£ąø°ąø—ąø£ąø§ąø‡ąøŖąø²ąø˜ąø²ąø£ąø“ąøŖąøøąø‚'),
(128339, 103173, 'fr', 'name', 'Centre Michel de Boüard'),
(128340, 103174, 'en', 'name', 'LS Cable & System, LS Cable & System (South Korea), LS Cable Ltd.'),
(128341, 103174, 'ko', 'name', 'LSģ „ģ„ '),
(128342, 103175, 'de', 'name', 'Institut für Klimaschutz, Energie und Mobilität'),
(128343, 103176, 'fr', 'name', 'Facteurs de risque et dƩterminants molƩculaires des maladies liƩes au vieillissement'),
(128344, 103177, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Rennes'),
(128345, 103178, 'es', 'name', 'Instituto Tecnológico Superior de Huatusco'),
(128346, 103179, 'en', 'name', 'Northern Netherlands Provinces alliance'),
(128347, 103179, 'nl', 'name', 'samenwerkingsverband Noord-Nederland'),
(128348, 103180, 'el', 'name', 'Οικονομικό Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(128349, 103180, 'en', 'name', 'Athens University of Economics and Business'),
(128350, 103180, 'fr', 'name', 'UniversitĆ© d’économie d’athĆØnes'),
(128351, 103181, 'en', 'name', 'Catholic International University'),
(128352, 103182, 'en', 'name', 'National Institute of Standards & Industrial Technology'),
(128353, 103183, 'en', 'name', 'National Institute of Biology'),
(128354, 103184, 'fr', 'name', 'Centre d''Investigation Clinique Robert DebrƩ'),
(128355, 103185, 'en', 'name', 'Institute of Analytical Sciences'),
(128356, 103185, 'fr', 'name', 'Institut des Sciences Analytiques'),
(128357, 103186, 'en', 'name', 'Mitford Hospital, Dhaka'),
(128358, 103187, 'en', 'name', 'Solid State Chemistry And Energy Lab'),
(128359, 103187, 'fr', 'name', 'Chimie du Solide et Energie'),
(128360, 103188, 'en', 'name', 'French Pork and Pig Institute'),
(128361, 103188, 'fr', 'name', 'Institut du Porc'),
(128362, 103189, 'pt', 'name', 'Kimera Biotecnologia, Kimera Biotecnologia (Brazil)');
INSERT INTO `ror_settings` VALUES
(128363, 103190, 'en', 'name', 'Nanjing Tech University'),
(128364, 103190, 'zh', 'name', 'å—äŗ¬å·„äøšå¤§å­¦'),
(128365, 103191, 'en', 'name', 'Anyang Institute of Technology'),
(128366, 103191, 'zh', 'name', '安阳巄学院'),
(128367, 103192, 'en', 'name', 'Cawthron Institute'),
(128368, 103193, 'fr', 'name', 'Haute Ɖcole Louvain en Hainaut'),
(128369, 103194, 'en', 'name', 'Empire State University'),
(128370, 103195, 'en', 'name', 'Mid Cheshire College'),
(128371, 103196, 'ca', 'name', 'Ministeri d''Educació Superior i Recerca francès'),
(128372, 103196, 'en', 'name', 'Ministry of Higher Education and Research'),
(128373, 103196, 'fr', 'name', 'MinistĆØre de l’Enseignement SupĆ©rieur et de la Recherche'),
(128374, 103197, 'en', 'name', 'Guam Humanities Council'),
(128375, 103198, 'en', 'name', 'Leeds City College'),
(128376, 103199, 'no_lang_code', 'name', 'Biocompatibles (United Kingdom)'),
(128377, 103200, 'en', 'name', 'Moscow University of the Ministry of Internal Affairs of Russia'),
(128378, 103200, 'ru', 'name', 'Московский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š²Š½ŃƒŃ‚Ń€ŠµŠ½Š½ŠøŃ… Гел Российской ФеГерации имени Š’. ŠÆ. ŠšŠøŠŗŠ¾Ń‚Ń'),
(128379, 103201, 'fr', 'name', 'Migrations Internationales, Espace Espaces et SociƩtƩs'),
(128380, 103202, 'en', 'name', 'Liverpool School of Tropical Medicine'),
(128381, 103203, 'en', 'name', 'Regional Institute of Education, Mysuru'),
(128382, 103204, 'en', 'name', 'Ministry of SMEs and Startups'),
(128383, 103204, 'ko', 'name', 'ģ¤‘ģ†Œė²¤ģ²˜źø°ģ—…ė¶€'),
(128384, 103205, 'fr', 'name', 'Systèmes Membranaires, Photobiologie, Stress et Détoxication'),
(128385, 103206, 'id', 'name', 'Institut Teknologi dan Bisnis Kalla'),
(128386, 103207, 'en', 'name', 'French Norwegian Foundation'),
(128387, 103207, 'fr', 'name', 'Fondation Franco-NorvƩgienne'),
(128388, 103208, 'en', 'name', 'Cancer, Heterogeneity, Instability and Plasticity'),
(128389, 103208, 'fr', 'name', 'Cancer, HƩtƩrogƩnƩitƩ, InstabilitƩ et PlasticitƩ'),
(128390, 103209, 'en', 'name', 'Western Sydney University'),
(128391, 103210, 'pt', 'name', 'Instituto de Engenheiros Eletricistas e EletrƓnicos'),
(128392, 103211, 'es', 'name', 'Instituto Tecnologico Superior de Misantla'),
(128393, 103212, 'en', 'name', 'Telefónica Digital Innovation'),
(128394, 103212, 'es', 'name', 'Telefónica Innovación Digital (Spain), Telefónica Innovación Digital S.L.U.'),
(128395, 103213, 'en', 'name', 'Astronomical Institute of the Slovak Academy of Sciences'),
(128396, 103213, 'sk', 'name', 'Astronomický ústav Slovenskej akadémie vied'),
(128397, 103214, 'en', 'name', 'Hiroshima University'),
(128398, 103214, 'ja', 'name', '広島大学'),
(128399, 103215, 'fr', 'name', 'Pathogénèse Bactérienne et Réponses Cellulaires'),
(128400, 103216, 'de', 'name', 'Max-Planck-Institut für Plasmaphysik'),
(128401, 103216, 'en', 'name', 'Max Planck Institute for Plasma Physics'),
(128402, 103217, 'ar', 'name', 'لمعهد ال؄دارة العامة'),
(128403, 103217, 'en', 'name', 'Institute of Public Administration'),
(128404, 103218, 'en', 'name', 'NSWC Panama City Division'),
(128405, 103219, 'en', 'name', 'University of Basilicata'),
(128406, 103219, 'fr', 'name', 'UniversitƩ de la basilicate'),
(128407, 103219, 'it', 'name', 'UniversitĆ  degli Studi della Basilicata'),
(128408, 103220, 'fr', 'name', 'Groupe d''Ʃtudes orientales, slaves et nƩo-hellƩniques'),
(128409, 103221, 'en', 'name', 'Finnish Institute for Health and Welfare'),
(128410, 103222, 'tr', 'name', 'Bursa Uludağ Üni̇versi̇tesi̇'),
(128411, 103223, 'en', 'name', 'Colorado College'),
(128412, 103224, 'en', 'name', 'Center for Jewish History'),
(128413, 103225, 'en', 'name', 'Weifang Medical University'),
(128414, 103225, 'zh', 'name', 'ę½åŠåŒ»å­¦é™¢'),
(128415, 103226, 'en', 'name', 'Astroparticle and Cosmology Laboratory'),
(128416, 103226, 'fr', 'name', 'Laboratoire AstroParticule et Cosmologie'),
(128417, 103227, 'en', 'name', 'Animal physiology and livestock systems'),
(128418, 103227, 'fr', 'name', 'DĆ©partement Physiologie Animale et SystĆØmes d’Élevage'),
(128419, 103228, 'en', 'name', 'European Regional Centre for Ecohydrology'),
(128420, 103229, 'en', 'name', 'Yangzhou University'),
(128421, 103229, 'zh', 'name', 'ę‰¬å·žå¤§å­¦'),
(128422, 103230, 'en', 'name', 'Montana Technological University'),
(128423, 103231, 'en', 'name', 'CEPT University'),
(128424, 103231, 'gu', 'name', 'ąŖøą«‡ąŖŖą«ąŖŸ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(128425, 103232, 'en', 'name', 'International Union for Conservation of Nature, French Committee'),
(128426, 103232, 'fr', 'name', 'Union Internationale Pour la Conservation de la Nature, ComitƩ FranƧais'),
(128427, 103233, 'fr', 'name', 'Centre de microcaractƩrisation Raimond Castaing'),
(128428, 103234, 'en', 'name', 'Lake Tahoe Community College'),
(128429, 103235, 'fr', 'name', 'Polytech Nice Sophia'),
(128430, 103236, 'en', 'name', 'Corpus Christi College'),
(128431, 103237, 'en', 'name', 'Indian Institute of Technology Madras'),
(128432, 103237, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą¤¦ą„ą¤°ą¤¾ą¤ø'),
(128433, 103237, 'kn', 'name', 'ಭಾರತೀಯ ą²¤ą²‚ą²¤ą³ą²°ą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³† ą²®ą²¦ą³ą²°ą²¾ą²øą³'),
(128434, 103237, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“®ą“¦ąµą“°ą“¾ą“øąµ'),
(128435, 103237, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(128436, 103237, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®šąÆ†ą®©ąÆą®©ąÆˆ'),
(128437, 103237, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą± ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°®ą°¦ą±ą°°ą°¾ą°øą±'),
(128438, 103238, 'fr', 'name', 'Centre de Recherche sur la BiodiversitƩ et l''Environnement'),
(128439, 103239, 'de', 'name', 'Technische UniversitƤt Berlin'),
(128440, 103240, 'fr', 'name', 'Maison des Sciences de l''Homme Val de Loire'),
(128441, 103241, 'la', 'name', 'Collegium Polonicum'),
(128442, 103242, 'it', 'name', 'Stazione Zoologica Anton Dohrn'),
(128443, 103243, 'en', 'name', 'Iranian National Commission for UNESCO'),
(128444, 103243, 'fa', 'name', 'Ś©Ł…ŪŒŲ³ŪŒŁˆŁ† Ł…Ł„ŪŒ ŪŒŁˆŁ†Ų³Ś©Łˆ-Ų§ŪŒŲ±Ų§Ł†'),
(128445, 103244, 'en', 'name', 'National Institute of Statistics and Economic Studies'),
(128446, 103244, 'fr', 'name', 'Institut National de la Statistique et des Etudes Economiques'),
(128447, 103245, 'en', 'name', 'Institute of High Energy Physics'),
(128448, 103245, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢é«˜čƒ½ē‰©ē†ē ”ē©¶ę‰€'),
(128449, 103246, 'en', 'name', 'The Christie NHS Foundation Trust'),
(128450, 103247, 'pt', 'name', 'Conservatório Superior de Música de Gaia'),
(128451, 103248, 'en', 'name', 'University of Chinese Academy of Social Sciences'),
(128452, 103248, 'zh', 'name', 'äø­å›½ē¤¾ä¼šē§‘å­¦é™¢å¤§å­¦'),
(128453, 103249, 'en', 'name', 'Laboratory of Systems and Applications of Information and Energy Technologies'),
(128454, 103249, 'fr', 'name', 'Laboratoire des systèmes et applications des technologies de l''information et de l''énergie'),
(128455, 103250, 'en', 'name', 'Institute of Physics and Technology'),
(128456, 103251, 'en', 'name', 'Abbott Diabetes Care, Abbott Diabetes Care (United States)'),
(128457, 103252, 'en', 'name', 'Wuhan City College'),
(128458, 103252, 'zh', 'name', 'ę­¦ę±‰åŸŽåø‚å­¦é™¢'),
(128459, 103253, 'en', 'name', 'Laboratory for Analysis and Architecture of Systems'),
(128460, 103253, 'fr', 'name', 'Laboratoire d''Analyse et d''Architecture des SystĆØmes'),
(128461, 103254, 'en', 'name', 'Research Institute in Science of Cyber Security'),
(128462, 103255, 'es', 'name', 'Instituto de Ambiente, HƔbitat y Energƭa'),
(128463, 103256, 'fr', 'name', 'Laboratoire Photonique, NumƩrique et Nanosciences'),
(128464, 103257, 'en', 'name', 'APA Corporation, APA Corporation (United States)'),
(128465, 103258, 'de', 'name', 'Königlich Belgisches Institut für Raumfahrt'),
(128466, 103258, 'en', 'name', 'Royal Belgian Institute for Space Aeronomy'),
(128467, 103258, 'fr', 'name', 'L''Institut royal d''AƩronomie Spatiale de Belgique'),
(128468, 103258, 'nl', 'name', 'Koninklijk Belgisch Instituut voor Ruimte-Aeronomie'),
(128469, 103259, 'fr', 'name', 'Institut Pascal'),
(128470, 103260, 'en', 'name', 'Central Institute of Mining and Fuel Research'),
(128471, 103260, 'hi', 'name', 'ą¤øą„€ą¤ą¤øą¤†ą¤ˆą¤†ą¤°-ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ खनन ą¤ą¤µą¤‚ ą¤ˆą¤‚ą¤§ą¤Ø ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(128472, 103261, 'fr', 'name', 'Centre Virchow-VillermƩ'),
(128473, 103262, 'fr', 'name', 'UnitƩ Mixte de Recherche EpidƩmiologique et de Surveillance Transport Travail Environnement'),
(128474, 103263, 'es', 'name', 'Universidad Tecnológica del Norte de Aguascalientes'),
(128475, 103264, 'en', 'name', 'University of Allahabad'),
(128476, 103264, 'hi', 'name', 'इलाहाबाद ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(128477, 103264, 'pa', 'name', 'ਇਲਾਹਾਬਾਦ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(128478, 103264, 'ta', 'name', 'ą®…ą®²ą®•ą®¾ą®Ŗą®¾ą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(128479, 103264, 'te', 'name', 'ą°…ą°²ą°¹ą°¾ą°¬ą°¾ą°¦ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(128480, 103265, 'en', 'name', 'Cergy-Pontoise University'),
(128481, 103265, 'fr', 'name', 'UniversitƩ de Cergy-Pontoise'),
(128482, 103266, 'fr', 'name', 'Observatoire des Sciences de l''Univers de Grenoble'),
(128483, 103267, 'en', 'name', 'California Earthquake Authority'),
(128484, 103268, 'fr', 'name', 'Laboratoire de physiologie cellulaire et molƩculaire'),
(128485, 103269, 'en', 'name', 'AlfrƩd RƩnyi Institute of Mathematics'),
(128486, 103269, 'hu', 'name', 'MTA Rényi Alfréd Matematikai Kutatóintézet'),
(128487, 103270, 'en', 'name', 'Cedar Crest College'),
(128488, 103271, 'en', 'name', 'Science for Action and Development'),
(128489, 103271, 'fr', 'name', 'DĆ©partement Sciences pour l’Action et le DĆ©veloppement'),
(128490, 103272, 'fr', 'name', 'Centre d’Immunologie de Marseille-Luminy'),
(128491, 103273, 'fr', 'name', 'Haute Technologie Animale Grenobloise'),
(128492, 103274, 'cy', 'name', 'Ymchwil Iechyd a Gofal Cymru'),
(128493, 103274, 'en', 'name', 'Health and Care Research Wales'),
(128494, 103275, 'en', 'name', 'Dutch Institute for Fundamental Energy Research'),
(128495, 103276, 'en', 'name', 'Leon Technological University'),
(128496, 103276, 'es', 'name', 'Universidad Tecnológica de León'),
(128497, 103277, 'pt', 'name', 'Instituto da Qualidade em SaĆŗde'),
(128498, 103278, 'en', 'name', 'Rockland Community College'),
(128499, 103279, 'no_lang_code', 'name', 'Lowe''s, Lowe''s (United States)'),
(128500, 103280, 'en', 'name', 'City College Norwich'),
(128501, 103281, 'en', 'name', 'Posit Software, PBC, Posit Software, PBC (United States)'),
(128502, 103282, 'ca', 'name', 'AgĆØncia Espacial Europea, Europako Espazio Agentzia'),
(128503, 103282, 'en', 'name', 'European Space Agency'),
(128504, 103282, 'fr', 'name', 'Agence Spatiale EuropƩenne'),
(128505, 103283, 'fr', 'name', 'Trajectoires. De la sĆ©dentarisation Ć  l’État'),
(128506, 103284, 'en', 'name', 'Science and Technology of Milk and Eggs'),
(128507, 103284, 'fr', 'name', 'Laboratoire Science & technologie du Lait & de l''œuf'),
(128508, 103285, 'en', 'name', 'University of Colorado Anschutz Medical Campus'),
(128509, 103286, 'fr', 'name', 'Laboratoire de l''AtmosphĆØre et des Cyclones'),
(128510, 103287, 'no_lang_code', 'name', 'PanThera Biopharma, LLC, PanThera Biopharma, LLC (United States)'),
(128511, 103288, 'fr', 'name', 'Institut d''Histoire du Droit'),
(128512, 103289, 'en', 'name', 'HKU-Pasteur Research Pole'),
(128513, 103290, 'en', 'name', 'EOG Resources, EOG Resources (United States)'),
(128514, 103291, 'fr', 'name', 'Groupe Hospitalo-Universitaire Paris Nord'),
(128515, 103292, 'en', 'name', 'National Commission for Science, Technology, and Innovation'),
(128516, 103293, 'fr', 'name', 'Stress Abiotiques et DiffƩrenciation des VƩgƩtaux CultivƩs'),
(128517, 103294, 'fr', 'name', 'Laboratoire de gƩnie civil et gƩnie mƩcanique'),
(128518, 103295, 'en', 'name', 'St. Catherine University'),
(128519, 103295, 'fr', 'name', 'UniversitƩ sainte-catherine'),
(128520, 103296, 'fr', 'name', 'Laboratoire d''Ɖcologie Alpine'),
(128521, 103297, 'en', 'name', 'Agroecological Functioning and Performances of Horticultural Systems'),
(128522, 103297, 'fr', 'name', 'Fonctionnement agroécologique et performances des systèmes de culture horticoles'),
(128523, 103298, 'en', 'name', 'Sul Ross State University'),
(128524, 103298, 'fr', 'name', 'UniversitĆ© d''Ɖtat Sul Ross'),
(128525, 103299, 'en', 'name', 'Harbin Engineering University'),
(128526, 103299, 'zh', 'name', 'å“ˆå°”ę»Øå·„ēØ‹å¤§å­¦'),
(128527, 103300, 'fr', 'name', 'Centre Hospitalier des Pays de Morlaix'),
(128528, 103301, 'en', 'name', 'Wuhan General Hospital of Guangzhou'),
(128529, 103301, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›å¹æå·žå†›åŒŗę­¦ę±‰ę€»åŒ»é™¢'),
(128530, 103302, 'pt', 'name', 'Sociedade de História Natural'),
(128531, 103303, 'en', 'name', 'PhytoTrade Africa'),
(128532, 103304, 'fr', 'name', 'Institut de Recherche Interdisciplinaire sur les Enjeux Sociaux'),
(128533, 103305, 'en', 'name', 'Interuniversity Center of Materials Research and Engineering'),
(128534, 103305, 'fr', 'name', 'Centre Interuniversitaire de Recherche et d’IngĆ©nierie des MatĆ©riaux'),
(128535, 103306, 'fr', 'name', 'Microbiologie Orale, ImmunothƩrapie et SantƩ'),
(128536, 103307, 'pl', 'name', 'Instytut Badań i Innowacji w Edukacji'),
(128537, 103308, 'en', 'name', 'Liaoning University'),
(128538, 103308, 'zh', 'name', '辽宁大学'),
(128539, 103309, 'en', 'name', 'Flanders Institute for Biotechnology'),
(128540, 103309, 'nl', 'name', 'Vlaams Instituut voor Biotechnologie'),
(128541, 103310, 'fr', 'name', 'Linguistique, langues, parole'),
(128542, 103311, 'de', 'name', 'DAPHNE4NFDI, DAten aus PHoton- und Neutronen Experimenten'),
(128543, 103312, 'en', 'name', 'Dr. B. R. Ambedkar National Institute of Technology Jalandhar'),
(128544, 103312, 'hi', 'name', 'औा. ą¤¬ą„€. आर. ą¤…ą¤®ą„ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤œą¤¾ą¤²ą¤‚ą¤§ą¤°'),
(128545, 103313, 'en', 'name', 'Huaiyin Normal University'),
(128546, 103313, 'zh', 'name', 'ę·®é˜“åøˆčŒƒå­¦é™¢'),
(128547, 103314, 'no_lang_code', 'name', 'Robert Bosch (Hungary), Robert Bosch Kft.'),
(128548, 103315, 'en', 'name', 'Center for Brooklyn History'),
(128549, 103316, 'en', 'name', 'Ministry of Commerce, Industry and Cooperatives'),
(128550, 103317, 'en', 'name', 'Airbnb, Airbnb (United States)'),
(128551, 103318, 'en', 'name', 'Great Yarmouth College'),
(128552, 103319, 'fr', 'name', 'HƓpital Lapeyronie'),
(128553, 103320, 'en', 'name', 'Cool Roof Rating Council'),
(128554, 103321, 'en', 'name', 'Shanxi University'),
(128555, 103321, 'zh', 'name', '山脿大学'),
(128556, 103322, 'en', 'name', 'University of Nottingham Ningbo China'),
(128557, 103322, 'zh', 'name', '宁波诺丁汉大学'),
(128558, 103323, 'en', 'name', 'National Museum of African American History and Culture'),
(128559, 103324, 'fr', 'name', 'Imagerie MolƩculaire et StratƩgies ThƩranostiques'),
(128560, 103325, 'en', 'name', 'Crown Castle International, Crown Castle International (United States)'),
(128561, 103326, 'en', 'name', 'University of Richmond'),
(128562, 103326, 'es', 'name', 'Universidad de Richmond'),
(128563, 103326, 'fr', 'name', 'UniversitƩ de richmond'),
(128564, 103327, 'en', 'name', 'Physics for Medicine Paris'),
(128565, 103327, 'fr', 'name', 'Physique pour la mƩdecine Paris'),
(128566, 103328, 'en', 'name', 'Laboratory of Hydrology and Geochemistry'),
(128567, 103328, 'fr', 'name', 'Laboratoire d’HYdrologie et de GEochimie'),
(128568, 103329, 'fr', 'name', 'Centre de Recherche sur l''HƩtƩro-Epitaxie et ses Applications'),
(128569, 103330, 'fr', 'name', 'UnitƩ de Taphonomie MƩdico-LƩgale'),
(128570, 103331, 'el', 'name', 'Εθνική βιβλιοθήκη της ΕλλάΓος'),
(128571, 103331, 'en', 'name', 'National Library of Greece'),
(128572, 103332, 'en', 'name', 'Indian Institute of Technology Jodhpur'),
(128573, 103332, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤œą„‹ą¤§ą¤Ŗą„ą¤°'),
(128574, 103333, 'no_lang_code', 'name', 'Nisource, Nisource (United States)'),
(128575, 103334, 'fr', 'name', 'BiomƩcanique et BioingƩnierie'),
(128576, 103335, 'en', 'name', 'University of Lincoln'),
(128577, 103336, 'cy', 'name', 'Prifysgol Caerwysg'),
(128578, 103336, 'en', 'name', 'University of Exeter'),
(128579, 103337, 'fr', 'name', 'Europe orientale, balkanique et mƩdiane'),
(128580, 103338, 'en', 'name', 'Trent University'),
(128581, 103338, 'fr', 'name', 'UniversitƩ de trent'),
(128582, 103339, 'pt', 'name', 'Fundo Nacional de Investigação'),
(128583, 103340, 'en', 'name', 'University of Calgary'),
(128584, 103340, 'fr', 'name', 'UniversitƩ de Calgary'),
(128585, 103341, 'de', 'name', 'Krebsregister Baden-Württemberg'),
(128586, 103341, 'en', 'name', 'Baden Württemberg Cancer-Registry'),
(128587, 103342, 'en', 'name', 'Guangdong Technical College of Water Resources and Electric Engineering'),
(128588, 103342, 'zh', 'name', 'å¹æäøœę°“åˆ©ē”µåŠ›čŒäøšęŠ€ęœÆå­¦é™¢'),
(128589, 103343, 'en', 'name', 'Praxiling'),
(128590, 103344, 'en', 'name', 'MSD Life Science Foundation'),
(128591, 103344, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗMSDē”Ÿå‘½ē§‘å­¦č²”å›£'),
(128592, 103345, 'de', 'name', 'WirtschaftsuniversitƤt Wien'),
(128593, 103345, 'en', 'name', 'Vienna University of Economics and Business'),
(128594, 103346, 'fr', 'name', 'Fonctions Optiques pour les Technologies de l’information'),
(128595, 103347, 'en', 'name', 'Stendhal University'),
(128596, 103347, 'fr', 'name', 'UniversitĆ© Stendhal – Grenoble 3'),
(128597, 103348, 'en', 'name', 'Santa Clara University'),
(128598, 103348, 'es', 'name', 'Universidad de Santa Clara'),
(128599, 103348, 'fr', 'name', 'UniversitƩ de santa clara'),
(128600, 103349, 'en', 'name', 'Centre for Research on Educational and Community Services'),
(128601, 103349, 'fr', 'name', 'Centre de recherche sur les services Ʃducatifs et communautaires'),
(128602, 103350, 'es', 'name', 'Universidad ORT Uruguay'),
(128603, 103351, 'fr', 'name', 'Laboratoire de Psychologie sociale : contextes et rƩgulation'),
(128604, 103352, 'es', 'name', 'AuditorĆ­a General de la RepĆŗblica'),
(128605, 103353, 'fr', 'name', 'UnitƩ Mixte de Recherche sur les Herbivores'),
(128606, 103354, 'es', 'name', 'Hospital Universitario De CabueƱes'),
(128607, 103355, 'en', 'name', 'Institute of Organic and Analytical Chemistry'),
(128608, 103355, 'fr', 'name', 'Institut de Chimie Organique et Analytique'),
(128609, 103356, 'en', 'name', 'Southern Baptist Theological Seminary'),
(128610, 103357, 'en', 'name', 'National Institute of Technology Calicut'),
(128611, 103357, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€, ą¤•ą¤¾ą¤²ą„€ą¤•ą¤Ÿ'),
(128612, 103357, 'ml', 'name', 'ą“Øą“¾ą“·ą“£ą“²ąµā€ ą“‡ą“Øąµā€ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“•ą“¾ą“²ą“æą“•ąµą“•ą“±ąµą“±ąµā€Œ'),
(128613, 103358, 'ja', 'name', 'ćƒ”ćƒ«ć‚»ćƒ‡ć‚¹ćƒ™ćƒ³ćƒ„ę—„ęœ¬'),
(128614, 103358, 'no_lang_code', 'name', 'Mercedes-Benz (Japan)'),
(128615, 103359, 'en', 'name', 'Teesside University'),
(128616, 103360, 'en', 'name', 'Canadian National Institute for the Blind'),
(128617, 103360, 'fr', 'name', 'Fondation INCA, Institut National Canadien des Aveugles'),
(128618, 103361, 'en', 'name', 'Middle East College'),
(128619, 103362, 'en', 'name', 'Guilin University of Technology'),
(128620, 103362, 'zh', 'name', 'ę”‚ęž—ē†å·„å¤§å­¦'),
(128621, 103363, 'en', 'name', 'Liver, Metabolisms and Cancer'),
(128622, 103363, 'fr', 'name', 'Foie, MƩtabolisme, Cancer'),
(128623, 103364, 'en', 'name', 'Department of Education'),
(128624, 103365, 'en', 'name', 'University of NyƭregyhƔza'),
(128625, 103365, 'hu', 'name', 'NyƭregyhƔzi Egyetem'),
(128626, 103366, 'fr', 'name', 'Nutrition, mƩtabolismes et cancer'),
(128627, 103367, 'en', 'name', 'North Carolina School of Science and Mathematics'),
(128628, 103368, 'fa', 'name', 'مرکز Ų¢Ł…ŁˆŲ²Ų“ŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ Ų³ŁˆŲ§Ł†Ų­ سوختگی و ŲŖŲ±Ł…ŪŒŁ…ŪŒ Ų§Ł…ŪŒŲ±Ų§Ł„Ł…ŁˆŁ…Ł†ŪŒŁ†'),
(128629, 103368, 'no_lang_code', 'name', 'Amir-Al-Momenin Hospital'),
(128630, 103369, 'en', 'name', 'Functioning and Sustainable Management of Banana and Pineapple'),
(128631, 103369, 'fr', 'name', 'Fonctionnement écologique et gestion durable des agrosystèmes bananiers et ananas'),
(128632, 103370, 'en', 'name', 'Edinburgh Napier University'),
(128633, 103371, 'cs', 'name', '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'),
(128634, 103371, 'en', 'name', 'Centre of Administration and Operations CAS, Czech Academy of Sciences, Centre of Administration and Operations'),
(128635, 103372, 'no_lang_code', 'name', 'Xi’an Jiaotong-Liverpool University'),
(128636, 103372, 'zh', 'name', 'č„æäŗ¤åˆ©ē‰©ęµ¦å¤§å­¦'),
(128637, 103373, 'en', 'name', 'Jining Medical University'),
(128638, 103373, 'zh', 'name', 'ęµŽå®åŒ»å­¦é™¢'),
(128639, 103374, 'fr', 'name', 'Institut de Recherche sur les PhĆ©nomĆØnes Hors Ɖquilibre'),
(128640, 103375, 'en', 'name', 'Cincinnati Financial, Cincinnati Financial (United States)'),
(128641, 103376, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Αιγαίου'),
(128642, 103376, 'en', 'name', 'University of the Aegean'),
(128643, 103376, 'fr', 'name', 'UniversitĆ© de l''ƉgĆ©e'),
(128644, 103377, 'en', 'name', 'Harbin University of Commerce'),
(128645, 103377, 'zh', 'name', 'å“ˆå°”ę»Øå•†äøšå¤§å­¦'),
(128646, 103378, 'en', 'name', 'Walk21'),
(128647, 103379, 'en', 'name', 'Swedish Research Council'),
(128648, 103380, 'pt', 'name', 'Centro de Investigação em Desporto Saúde e Desenvolvimento Humano'),
(128649, 103381, 'en', 'name', 'Kadir Has University'),
(128650, 103381, 'tr', 'name', 'Kadir Has Üniversitesi'),
(128651, 103382, 'en', 'name', 'Institute of Oceanography'),
(128652, 103383, 'bn', 'name', 'বাংলাদেশ সেনাবাহিনী ą¦†ą¦Øą§ą¦¤ą¦°ą§ą¦œą¦¾ą¦¤ą¦æą¦• ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(128653, 103383, 'en', 'name', 'Bangladesh Army International University of Science and Technology'),
(128654, 103384, 'en', 'name', 'Philadelphia University'),
(128655, 103384, 'fr', 'name', 'UniversitƩ de philadelphie'),
(128656, 103385, 'en', 'name', 'University of Bedfordshire'),
(128657, 103386, 'bg', 'name', 'Єимикотехнологичен Šø Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³ŠøŃ‡ŠµŠ½ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(128658, 103386, 'en', 'name', 'University of Chemical Technology and Metallurgy'),
(128659, 103387, 'en', 'name', 'City of Glasgow College'),
(128660, 103387, 'gd', 'name', 'Colaiste Baile Ghlaschu'),
(128661, 103388, 'cs', 'name', 'MoravskoslezskĆ” vědeckĆ” knihovna v Ostravě, příspěvkovĆ” organizace'),
(128662, 103388, 'en', 'name', 'Moravian Silesian Research Library in Ostrava'),
(128663, 103389, 'en', 'name', 'SWPS University'),
(128664, 103389, 'pl', 'name', 'Uniwersytet SWPS'),
(128665, 103390, 'fr', 'name', 'LACTH - Laboratoire d''Architecture Conception Territoire Histoire MatƩrialitƩ'),
(128666, 103391, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŲ±Ų§Ł‡ŁŠŲÆŁŠ'),
(128667, 103391, 'en', 'name', 'Al-Farahidi University'),
(128668, 103392, 'en', 'name', 'American Electric Power, American Electric Power (United States)'),
(128669, 103393, 'no_lang_code', 'name', 'Megvii, Megvii (China)'),
(128670, 103393, 'zh', 'name', 'åŒ—äŗ¬ę—·č§†ē§‘ęŠ€ęœ‰é™å…¬åø'),
(128671, 103394, 'en', 'name', 'Kyungpook National University'),
(128672, 103394, 'ko', 'name', 'ź²½ė¶ėŒ€ķ•™źµ'),
(128673, 103395, 'en', 'name', 'St George''s, University of London'),
(128674, 103396, 'en', 'name', 'Lille 1 University'),
(128675, 103396, 'fr', 'name', 'UniversitƩ Lille 1'),
(128676, 103397, 'en', 'name', 'Scientific Research Institute of State Building and Local Government of the NALS of Ukraine'),
(128677, 103397, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Гержавного Š±ŃƒŠ“івництва та місцевого ŃŠ°Š¼Š¾Š²Ń€ŃŠ“ŃƒŠ²Š°Š½Š½Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії правових наук України'),
(128678, 103398, 'en', 'name', 'Slovak Medical University'),
(128679, 103398, 'sk', 'name', 'SlovenskĆ” zdravotnĆ­cka univerzita v Bratislave'),
(128680, 103399, 'en', 'name', 'Doncaster College'),
(128681, 103400, 'en', 'name', 'GHU Paris psychiatrie & neurosciences'),
(128682, 103401, 'en', 'name', 'Evidence In Motion'),
(128683, 103402, 'fr', 'name', 'STELLA MARE'),
(128684, 103403, 'en', 'name', 'ClƩment Ader Institute'),
(128685, 103403, 'fr', 'name', 'Institut ClƩment Ader'),
(128686, 103404, 'en', 'name', 'Toros University'),
(128687, 103404, 'tr', 'name', 'Toros Üniversitesi'),
(128688, 103405, 'en', 'name', 'Cerebras Systems, Cerebras Systems (United States)'),
(128689, 103406, 'en', 'name', 'Kocaeli University'),
(128690, 103406, 'tr', 'name', 'Kocaeli Üniversitesi'),
(128691, 103407, 'en', 'name', 'University "St. Kliment Ohridski" - Bitola'),
(128692, 103407, 'mk', 'name', 'Универзитет Дв. ā€žŠšŠ»ŠøŠ¼ŠµŠ½Ń‚ ŠžŃ…Ń€ŠøŠ“ŃŠŗŠøā€œ Битола'),
(128693, 103408, 'en', 'name', 'Lishui University'),
(128694, 103408, 'zh', 'name', '丽氓学院'),
(128695, 103409, 'en', 'name', 'New Zealand Equine Research Foundation'),
(128696, 103410, 'en', 'name', 'Jianghan University'),
(128697, 103410, 'zh', 'name', 'ę±Ÿę±‰å¤§å­¦'),
(128698, 103411, 'fr', 'name', 'Laboratoire de Recherche sur la Croissance Cellulaire, la RƩparation et la RƩgƩnƩration Tissulaires'),
(128699, 103412, 'en', 'name', 'Coleg Gwent, Gwent College'),
(128700, 103413, 'en', 'name', 'Volga Region State University of Service'),
(128701, 103413, 'ru', 'name', 'Поволжский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ сервиса'),
(128702, 103414, 'pt', 'name', 'Faculdade Pernambucana de SaĆŗde'),
(128703, 103415, 'es', 'name', 'Universidad Tecnológica de Altamira, Tamaulipas'),
(128704, 103416, 'en', 'name', 'Qingdao University of Science and Technology'),
(128705, 103416, 'zh', 'name', 'é’å²›ē§‘ęŠ€å¤§å­¦'),
(128706, 103417, 'en', 'name', 'Ames National Laboratory'),
(128707, 103418, 'pt', 'name', 'GlaxoSmithKline Produtos FarmacĆŖuticos Lda, GlaxoSmithKline Produtos FarmacĆŖuticos Lda (Portugal)'),
(128708, 103419, 'en', 'name', 'Renmin University of China'),
(128709, 103419, 'zh', 'name', '中国人民大学'),
(128710, 103420, 'en', 'name', 'Grenoble University Hospital Centre'),
(128711, 103420, 'fr', 'name', 'Centre Hospitalier Universitaire de Grenoble'),
(128712, 103421, 'en', 'name', 'Anhui Polytechnic University'),
(128713, 103421, 'zh', 'name', '安徽巄程大学'),
(128714, 103422, 'en', 'name', 'Adaptative Mechanisms & Evolution'),
(128715, 103422, 'fr', 'name', 'MƩcanismes Adaptatifs et Evolution'),
(128716, 103423, 'no_lang_code', 'name', 'Leonardo United States'),
(128717, 103424, 'en', 'name', 'Pharmacology of Antimicrobial Agents and antibioResistance'),
(128718, 103424, 'fr', 'name', 'Pharmacologie des anti-infectieux et antibiorƩsistance'),
(128719, 103425, 'en', 'name', 'Laoshan Laboratory'),
(128720, 103426, 'en', 'name', 'National Graduate School of Engineering Chemistry of Lille'),
(128721, 103426, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Chimie de Lille'),
(128722, 103427, 'en', 'name', 'Yellow River Conservancy Technical Institute'),
(128723, 103427, 'zh', 'name', 'é»„ę²³ę°“åˆ©čŒäøšęŠ€ęœÆå­¦é™¢'),
(128724, 103428, 'en', 'name', 'Research Center For Cultural Anthropology'),
(128725, 103428, 'fr', 'name', 'Centre d''Anthropologie Culturelle'),
(128726, 103429, 'en', 'name', 'Institute for Neurosciences of Montpellier'),
(128727, 103429, 'fr', 'name', 'Institut des neurosciences de Montpellier'),
(128728, 103430, 'fr', 'name', 'Institut de Physique de Nice'),
(128729, 103431, 'fr', 'name', 'Institut Pasteur de la Guadeloupe'),
(128730, 103432, 'en', 'name', 'University of Puget Sound'),
(128731, 103432, 'fr', 'name', 'UniversitƩ de puget sound'),
(128732, 103433, 'az', 'name', 'ʏrdəhan Universiteti'),
(128733, 103433, 'en', 'name', 'Ardahan University'),
(128734, 103433, 'tr', 'name', 'Ardahan Üniversitesi'),
(128735, 103434, 'fr', 'name', 'Groupe d''Analyse et de ThƩorie Economique Lyon St Etienne'),
(128736, 103435, 'en', 'name', 'Weston Park Cancer Centre'),
(128737, 103436, 'fr', 'name', 'Institut de MathƩmatiques de Marseille'),
(128738, 103437, 'en', 'name', 'University of New York in Prague'),
(128739, 103438, 'en', 'name', 'Microscopy Australia'),
(128740, 103439, 'no_lang_code', 'name', 'SGS Germany GmbH, SGS Germany GmbH (Germany)'),
(128741, 103440, 'no_lang_code', 'name', 'Tamr, Tamr (United States)'),
(128742, 103441, 'en', 'name', 'Southern Methodist University'),
(128743, 103441, 'es', 'name', 'Universidad Metodista del Sur'),
(128744, 103441, 'fr', 'name', 'UniversitƩ mƩthodiste du sud'),
(128745, 103442, 'en', 'name', 'Centers for Disease Control and Prevention'),
(128746, 103442, 'es', 'name', 'Centros para el Control y Prevención de Enfermedades'),
(128747, 103442, 'fr', 'name', 'Centres pour le contrƓle et la prƩvention des maladies'),
(128748, 103443, 'en', 'name', 'Nanchang University'),
(128749, 103443, 'zh', 'name', 'å—ę˜Œå¤§å­¦'),
(128750, 103444, 'en', 'name', 'Karnavati University'),
(128751, 103445, 'fr', 'name', 'Etude et ComprƩhension de la biodiversitƩ'),
(128752, 103446, 'en', 'name', 'Full Sail University'),
(128753, 103447, 'fr', 'name', 'Institut d''Ɖlectronique et des SystĆØmes'),
(128754, 103448, 'en', 'name', 'Shaoxing University'),
(128755, 103448, 'zh', 'name', 'ē»å…“ę–‡ē†å­¦é™¢'),
(128756, 103449, 'cs', 'name', 'Hydrobiologický Ústav Biologické Centrum AV ČR'),
(128757, 103449, 'en', 'name', 'Institute of Hydrobiology, Biology Centre, Academy of Sciences of the Czech Republic'),
(128758, 103450, 'no_lang_code', 'name', 'Freescale Semiconductor (France)'),
(128759, 103451, 'en', 'name', 'Organisation For Economic Co-Operation and Development'),
(128760, 103451, 'fr', 'name', 'Organisation de CoopƩration et de DƩveloppement Economiques'),
(128761, 103452, 'en', 'name', 'Genetics, Diversity and Ecophysiology of Cereals'),
(128762, 103452, 'fr', 'name', 'GĆ©nĆ©tique, DiversitĆ©, Ɖcophysiologie des CĆ©rĆ©ales'),
(128763, 103453, 'es', 'name', 'Universidad Tecnológica del Valle de Toluca'),
(128764, 103454, 'en', 'name', 'Paul Pascal Research Center'),
(128765, 103455, 'en', 'name', 'Catholic University of Paris'),
(128766, 103455, 'fr', 'name', 'Institut catholique de paris'),
(128767, 103456, 'en', 'name', 'Ventura College, Ventura County Community College District'),
(128768, 103457, 'en', 'name', 'Sichuan Normal University'),
(128769, 103457, 'zh', 'name', 'å››å·åøˆčŒƒå¤§å­¦'),
(128770, 103458, 'fr', 'name', 'Institut de Neurosciences de la Timone'),
(128771, 103459, 'en', 'name', 'Korea Research Institute of Chemical Technology'),
(128772, 103460, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Salerno'),
(128773, 103461, 'en', 'name', 'Swedish Institute of Space Physics'),
(128774, 103461, 'fi', 'name', 'Ruotsin avaruusfysiikan laitos'),
(128775, 103461, 'sv', 'name', 'Institutet fƶr rymdfysik'),
(128776, 103462, 'en', 'name', 'Maryland Institute College of Art'),
(128777, 103463, 'fr', 'name', 'Direction GƩnƩrale DƩlƩguƩe Ơ la Science'),
(128778, 103464, 'en', 'name', 'Laboratory of Geophysical and Industrial Flows'),
(128779, 103464, 'fr', 'name', 'Laboratoire des Ɖcoulements GĆ©ophysiques et Industriels'),
(128780, 103465, 'en', 'name', 'Gran Sasso Science Institute'),
(128781, 103466, 'en', 'name', 'National Maritime College of France'),
(128782, 103466, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure Maritime'),
(128783, 103467, 'en', 'name', 'Institution of Mechanical Engineers'),
(128784, 103468, 'en', 'name', 'Institute of Functional Genomics'),
(128785, 103468, 'fr', 'name', 'Institut de GƩnomique Fonctionnelle'),
(128786, 103469, 'fr', 'name', 'HƓpital privƩ du Confluent'),
(128787, 103470, 'en', 'name', 'Institute of Labour Economics and Industrial Sociology'),
(128788, 103470, 'fr', 'name', 'Laboratoire d''Economie et de Sociologie du Travail'),
(128789, 103471, 'en', 'name', 'Kangda College of Nanjing Medical University'),
(128790, 103471, 'zh', 'name', 'å—äŗ¬åŒ»ē§‘å¤§å­¦åŗ·č¾¾å­¦é™¢'),
(128791, 103472, 'en', 'name', 'Toulouse 1 Capitole University'),
(128792, 103472, 'fr', 'name', 'UniversitƩ Toulouse-I-Capitole'),
(128793, 103473, 'en', 'name', 'Bitmain Technologies, Bitmain Technologies (China)'),
(128794, 103473, 'zh', 'name', 'ęÆ”ē‰¹å¤§é™†ē§‘ęŠ€ęœ‰é™å…¬åø'),
(128795, 103474, 'no_lang_code', 'name', 'Leonardo (United Kingdom)'),
(128796, 103475, 'en', 'name', 'City, University of London'),
(128797, 103476, 'en', 'name', 'Center for Research in Economics and Statistics'),
(128798, 103476, 'fr', 'name', 'Centre de Recherche en Ɖconomie et Statistique'),
(128799, 103477, 'fr', 'name', 'Laboratoire de Biologie de l''Exercice pour la Performance et la SantƩ'),
(128800, 103478, 'en', 'name', 'University of O''Higgins'),
(128801, 103478, 'es', 'name', 'Universidad de O''Higgins'),
(128802, 103479, 'fr', 'name', 'Sommeil, vigilance, fatigue et santƩ publique'),
(128803, 103480, 'en', 'name', 'Scotland''s Rural College'),
(128804, 103481, 'fr', 'name', 'Laboratoire RhƩologie et ProcƩdƩs'),
(128805, 103482, 'en', 'name', 'Institute for Reproductive Medicine'),
(128806, 103482, 'fr', 'name', 'Institut de MƩdecine de la Reproduction'),
(128807, 103483, 'en', 'name', 'University of Lethbridge'),
(128808, 103483, 'fr', 'name', 'UniversitƩ de lethbridge'),
(128809, 103484, 'en', 'name', 'Bacterial Virulence and Chronic Infections'),
(128810, 103484, 'fr', 'name', 'Virulence BactƩrienne et Infections Chroniques'),
(128811, 103485, 'en', 'name', 'Korea Institute of Geoscience and Mineral Resources'),
(128812, 103486, 'ca', 'name', 'Universitat de Palerm'),
(128813, 103486, 'de', 'name', 'UniversitƤt Palermo'),
(128814, 103486, 'en', 'name', 'University of Palermo'),
(128815, 103486, 'fr', 'name', 'UniversitƩ de palerme'),
(128816, 103486, 'it', 'name', 'UniversitĆ  degli Studi di Palermo'),
(128817, 103487, 'pt', 'name', 'Santa Marcelina Colégio São Paulo'),
(128818, 103488, 'fr', 'name', 'Institut MontpelliƩrain Alexander Grothendieck'),
(128819, 103489, 'fr', 'name', 'Institut d''Ɖtudes Scientifiques de CargĆØse'),
(128820, 103490, 'en', 'name', 'Guangzhou Academy of Fine Arts'),
(128821, 103490, 'zh', 'name', 'å¹æå·žē¾ŽęœÆå­¦é™¢'),
(128822, 103491, 'en', 'name', 'King''s College Hospital'),
(128823, 103492, 'fr', 'name', 'Institut de Recherche sur les CƩramiques'),
(128824, 103493, 'da', 'name', 'Danmarks Medie- og JournalisthĆøjskole'),
(128825, 103493, 'en', 'name', 'Danish School of Media and Journalism'),
(128826, 103494, 'fr', 'name', 'Centre Hospitalier Universitaire de LiĆØge'),
(128827, 103495, 'en', 'name', 'Public Law Centre'),
(128828, 103495, 'fr', 'name', 'Centre de Droit Public'),
(128829, 103496, 'ko', 'name', 'ź±°ģ œėŒ€ķ•™'),
(128830, 103496, 'no_lang_code', 'name', 'Koje College'),
(128831, 103497, 'fr', 'name', 'Psychologie : Interactions, Temps, Emotions, Cognition'),
(128832, 103498, 'no_lang_code', 'name', 'Sirius'),
(128833, 103499, 'en', 'name', 'Colorado Mesa University'),
(128834, 103500, 'en', 'name', 'Nanjing University of Chinese Medicine'),
(128835, 103500, 'zh', 'name', 'å—äŗ¬äø­åŒ»čÆå¤§å­¦'),
(128836, 103501, 'en', 'name', 'Chapman University'),
(128837, 103502, 'en', 'name', 'The Carnot Network'),
(128838, 103502, 'fr', 'name', 'Le rƩseau des Carnot'),
(128839, 103503, 'de', 'name', 'ifo Institut für Wirtschaftsforschung'),
(128840, 103503, 'en', 'name', 'Ifo Institute for Economic Research'),
(128841, 103504, 'fr', 'name', 'Infectiologie Animale et SantƩ Publique'),
(128842, 103505, 'en', 'name', 'Plant Health and the Environment'),
(128843, 103505, 'fr', 'name', 'DƩpartement SantƩ des Plantes et Environnement'),
(128844, 103506, 'fr', 'name', 'IMPact de l''Environnement Chimique sur la SantƩ humaine'),
(128845, 103507, 'fr', 'name', 'Laboratoire GƩnie Industriel'),
(128846, 103508, 'en', 'name', 'Atlantic Technological University'),
(128847, 103508, 'ga', 'name', 'Ollscoil TeicneolaĆ­ochta an Atlantaigh'),
(128848, 103509, 'en', 'name', 'Guangdong University Of Finances and Economics'),
(128849, 103509, 'zh', 'name', 'å¹æäøœå•†å­¦é™¢'),
(128850, 103510, 'fr', 'name', 'Hypoxie et Physiopathologies cardiovasculaires et respiratoires'),
(128851, 103511, 'no', 'name', 'Stord hospital'),
(128852, 103512, 'en', 'name', 'Gettysburg College'),
(128853, 103513, 'en', 'name', 'Ministry of Trade, Co-operatives, Small and Medium Enterprises'),
(128854, 103514, 'en', 'name', 'Portuguese Air Force Academy'),
(128855, 103514, 'pt', 'name', 'Academia da ForƧa AƩrea'),
(128856, 103515, 'az', 'name', 'Səlcuq Universiteti'),
(128857, 103515, 'en', 'name', 'SelƧuk University'),
(128858, 103515, 'tr', 'name', 'Selçuk Üniversitesi'),
(128859, 103516, 'es', 'name', 'Instituto de Problemas Nacionales'),
(128860, 103517, 'fr', 'name', 'Centre d''Etudes Linguistiques'),
(128861, 103518, 'en', 'name', 'Institute for Multidisciplinary Research'),
(128862, 103518, 'sr', 'name', 'Institut za multidisciplinarna istraživanja, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Š¼ŃƒŠ»Ń‚иГисциплинарна ŠøŃŃ‚Ń€Š°Š¶ŠøŠ²Š°ŃšŠ°'),
(128863, 103519, 'fr', 'name', 'Laboratoire National des Champs MagnƩtiques Intenses'),
(128864, 103520, 'fr', 'name', 'Equipe de Droit PƩnal et de sciences Forensiques de Montpellier'),
(128865, 103521, 'en', 'name', 'Oklahoma State University System'),
(128866, 103522, 'fr', 'name', 'Centre d''Anthropobiologie et de GƩnomique de Toulouse'),
(128867, 103523, 'fr', 'name', 'Centre d’études des langues et littĆ©ratures anciennes et modernes'),
(128868, 103524, 'en', 'name', 'Sciences Po Center for International Studies'),
(128869, 103524, 'fr', 'name', 'Centre d''Ʃtudes et de recherches internationales de Sciences Po'),
(128870, 103525, 'en', 'name', 'Institute of Development Studies'),
(128871, 103525, 'hi', 'name', 'विकास ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(128872, 103526, 'en', 'name', 'Institute of Chemistry of Clermont-Ferrand'),
(128873, 103526, 'fr', 'name', 'Institut de Chimie de Clermont-Ferrand'),
(128874, 103527, 'fr', 'name', 'Laboratoire Dynamiques Sociales et Recomposition des Espaces'),
(128875, 103528, 'en', 'name', 'Michoud Assembly Facility'),
(128876, 103529, 'no_lang_code', 'name', 'NTT (Germany)'),
(128877, 103530, 'no_lang_code', 'name', 'Sabaragamuwa University of Sri Lanka'),
(128878, 103530, 'si', 'name', 'ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą·ƒą¶¶ą¶»ą¶œą¶øą·”ą·€ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(128879, 103530, 'ta', 'name', 'ą®šą®Ŗą®°ą®•ą®®ąÆą®µą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(128880, 103531, 'en', 'name', 'University of Stirling'),
(128881, 103532, 'en', 'name', 'LEO Pharmaceutical'),
(128882, 103532, 'pt', 'name', 'LEO FarmacĆŖuticos, LEO FarmacĆŖuticos (Portugal)'),
(128883, 103533, 'en', 'name', 'London School of Theology'),
(128884, 103534, 'es', 'name', 'Centro de Información de Medicamentos de la Universidad Nacional'),
(128885, 103535, 'es', 'name', 'Instituto Tecnológico de La Paz'),
(128886, 103536, 'en', 'name', 'Biology of Cardiovascular Diseases'),
(128887, 103536, 'fr', 'name', 'Biologie des maladies cardiovasculaires'),
(128888, 103537, 'en', 'name', 'Radford University'),
(128889, 103538, 'en', 'name', 'Tharaka University'),
(128890, 103538, 'sw', 'name', 'Chuo Kikuu cha Tharaka'),
(128891, 103539, 'fr', 'name', 'Maison des Sciences de l''Homme-Alpes'),
(128892, 103540, 'en', 'name', 'Nalanda Institute'),
(128893, 103540, 'id', 'name', 'Institut Nalanda'),
(128894, 103541, 'en', 'name', 'Clinton Community College'),
(128895, 103542, 'en', 'name', 'Laboratory of Psychopathology and Health Processes'),
(128896, 103542, 'fr', 'name', 'Laboratoire de Psychopathologie et Processus de SantƩ'),
(128897, 103543, 'fr', 'name', 'HƓpital Paris Saint-Joseph'),
(128898, 103544, 'fr', 'name', 'Laboratoire Interuniversitaire des Systèmes Atmosphériques'),
(128899, 103545, 'fr', 'name', 'Stress Environnementaux et Biosurveillance des Milieux Aquatiques'),
(128900, 103546, 'fr', 'name', 'Laboratoire interdisciplinaire d’études sur les rĆ©flexivitĆ©s - Fonds Yan Thomas'),
(128901, 103547, 'en', 'name', 'Marine Biological Laboratory'),
(128902, 103548, 'es', 'name', 'Instituto Tecnologico de Delicias'),
(128903, 103549, 'en', 'name', 'Pasteur Institute'),
(128904, 103549, 'pt', 'name', 'Instituto Pasteur'),
(128905, 103550, 'id', 'name', 'STKIP Muhammadiyah Kuningan'),
(128906, 103551, 'en', 'name', 'Swedish School of Sport and Health Sciences'),
(128907, 103551, 'sv', 'name', 'Gymnastik- och Idrottshƶgskolan'),
(128908, 103552, 'fr', 'name', 'Laboratoire Charles Fabry'),
(128909, 103553, 'en', 'name', 'WE-SPARK Health Institute'),
(128910, 103554, 'en', 'name', 'Capilano University'),
(128911, 103555, 'en', 'name', 'Norwegian Institute of Public Health'),
(128912, 103555, 'no', 'name', 'Nasjonalt folkehelseinstitutt'),
(128913, 103556, 'fr', 'name', 'Institut Pasteur de CƓte d''Ivoire'),
(128914, 103557, 'sv', 'name', 'Futurum - Akademin fƶr HƤlsa och VƄrd'),
(128915, 103558, 'en', 'name', 'University of the Visual & Performing Arts'),
(128916, 103558, 'ta', 'name', 'ą®•ą®ŸąÆą®ŖąÆą®² ą®†ą®±ąÆą®±ąÆą®•ąÆˆą®•ąÆ ą®•ą®²ąÆˆą®•ą®³ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(128917, 103559, 'fr', 'name', 'Usages du numƩrique pour le dƩveloppement durable'),
(128918, 103560, 'no_lang_code', 'name', 'Leonardo (Italy)'),
(128919, 103561, 'en', 'name', 'Chengdu Technological University'),
(128920, 103561, 'zh', 'name', 'ęˆéƒ½å·„äøšå­¦é™¢'),
(128921, 103562, 'de', 'name', 'AuslƤnderuniversitƤt Perugia'),
(128922, 103562, 'en', 'name', 'University for Foreigners Perugia'),
(128923, 103562, 'fr', 'name', 'UniversitƩ pour Ʃtrangers de pƩrouse'),
(128924, 103562, 'it', 'name', 'UniversitĆ  per stranieri di Perugia'),
(128925, 103563, 'fr', 'name', 'UnitĆ© de Recherche Œnologie'),
(128926, 103564, 'en', 'name', 'Federal Highway Administration'),
(128927, 103565, 'fr', 'name', 'Conception de l''Action en Situation'),
(128928, 103566, 'fr', 'name', 'UniversitƩ de YaoundƩ II'),
(128929, 103567, 'en', 'name', 'Agri-Science'),
(128930, 103567, 'pt', 'name', 'Agri-CiĆŖncia, Agri-CiĆŖncia (Portugal)'),
(128931, 103568, 'en', 'name', 'FactSet, FactSet (United States)'),
(128932, 103569, 'en', 'name', 'HZ University of Applied Sciences'),
(128933, 103569, 'nl', 'name', 'Hogeschool Zeeland'),
(128934, 103570, 'en', 'name', 'Strathmore University'),
(128935, 103570, 'sw', 'name', 'Chuo Kikuu cha Strathmore'),
(128936, 103571, 'fr', 'name', 'Ɖquipe de Recherche sur l’Utilisation des DonnĆ©es Individuelles en Lien avec la ThĆ©orie Ɖconomique'),
(128937, 103572, 'en', 'name', 'Jaipuria School of Business, Ghaziabad'),
(128938, 103573, 'fr', 'name', 'Biotechnologie et Signalisation Cellulaire'),
(128939, 103574, 'en', 'name', 'New York State University College of Human Ecology'),
(128940, 103575, 'az', 'name', 'ʏrciyəs Universiteti'),
(128941, 103575, 'en', 'name', 'Erciyes University'),
(128942, 103575, 'tr', 'name', 'Erciyes Üniversitesi'),
(128943, 103576, 'pt', 'name', 'Cruz Vermelha Portuguesa'),
(128944, 103577, 'en', 'name', 'Pace University'),
(128945, 103578, 'en', 'name', 'Ukrainian Institute for Plant Variety Examination'),
(128946, 103579, 'en', 'name', 'Steel Dynamics, Steel Dynamics (United States)'),
(128947, 103580, 'fr', 'name', 'Centre de Recherche sur les Expertises, les Arts et les Transitions'),
(128948, 103581, 'pt', 'name', 'Instituto da Vinha e do Vinho IP'),
(128949, 103582, 'en', 'name', 'Ministry of Home Affairs'),
(128950, 103582, 'id', 'name', 'Kementerian Dalam Negeri'),
(128951, 103583, 'en', 'name', 'Guildford College'),
(128952, 103584, 'en', 'name', 'National Institute of Technology Tiruchirappalli'),
(128953, 103584, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(128954, 103584, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(128955, 103584, 'te', 'name', 'ą°Øą±‡ą°·ą°Øą°²ą± ą°‡ą°Øą± ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€'),
(128956, 103585, 'en', 'name', 'Ottawa Institute of Systems Biology'),
(128957, 103585, 'fr', 'name', 'L’Institut de biologie des systĆØmes d’Ottawa'),
(128958, 103586, 'fr', 'name', 'Centre de Recherche Droits et Perspectives du droit'),
(128959, 103587, 'en', 'name', 'City St George''s, University of London'),
(128960, 103588, 'en', 'name', 'Educause'),
(128961, 103589, 'en', 'name', 'Delhi Skill and Entrepreneurship University'),
(128962, 103590, 'en', 'name', 'Kilis 7 Aralık University'),
(128963, 103590, 'tr', 'name', 'Kilis 7 Aralık Üniversitesi'),
(128964, 103591, 'no_lang_code', 'name', 'Rail Safety and Standards Board (United Kingdom)'),
(128965, 103592, 'fr', 'name', 'EMMAH - Environnement Méditerranéen et Modélisation des Agro-Hydrosystèmes'),
(128966, 103593, 'en', 'name', 'Daimler Center for Automotive Information Technology Innovations'),
(128967, 103594, 'fr', 'name', 'Laboratoire LumiĆØre, MatiĆØre et Interfaces'),
(128968, 103595, 'en', 'name', 'Wales Institute of Social and Economic Research, Data and Methods'),
(128969, 103596, 'en', 'name', 'Chevreul Institute'),
(128970, 103596, 'fr', 'name', 'Institut Chevreul'),
(128971, 103597, 'cs', 'name', 'Knihovna města Hradce KrĆ”lovĆ©'),
(128972, 103597, 'en', 'name', 'Hradec KrƔlovƩ City Library'),
(128973, 103598, 'en', 'name', 'National Institute of Economic and Social Research'),
(128974, 103599, 'en', 'name', 'Scion'),
(128975, 103600, 'fr', 'name', 'Laboratoire Passages XX_XXI'),
(128976, 103601, 'en', 'name', 'University of Houston'),
(128977, 103601, 'es', 'name', 'Universidad de Houston'),
(128978, 103601, 'fr', 'name', 'UniversitƩ de houston'),
(128979, 103602, 'en', 'name', 'Allegro'),
(128980, 103602, 'no_lang_code', 'name', 'Allegro (Poland)'),
(128981, 103603, 'en', 'name', 'Kentucky Humanities Council'),
(128982, 103604, 'en', 'name', 'Centre for Research on French Canadian Culture'),
(128983, 103604, 'fr', 'name', 'Centre de recherche sur les francophonies canadiennes'),
(128984, 103605, 'no_lang_code', 'name', 'Becton Dickinson (United States)'),
(128985, 103606, 'fr', 'name', 'Institut de Biochimie et GƩnƩtique Cellulaires'),
(128986, 103607, 'fr', 'name', 'BioingƩnierie et Dynamique Microbienne aux Interfaces Alimentaires'),
(128987, 103608, 'fr', 'name', 'Centre de Recherche en Linguistique AppliquƩe'),
(128988, 103609, 'fr', 'name', 'Laboratoire d''Innovation et NumĆ©rique pour l''Ɖducation'),
(128989, 103610, 'en', 'name', 'Tranquility'),
(128990, 103610, 'pt', 'name', 'Tranquilidade, Tranquilidade (Portugal)'),
(128991, 103611, 'fr', 'name', 'Immuno-RƩgulation des Maladies Auto- immunes Inflammatoires et Cancer'),
(128992, 103612, 'en', 'name', 'University of Moratuwa'),
(128993, 103612, 'si', 'name', 'ą¶øą·œą¶»ą¶§ą·”ą·€ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(128994, 103612, 'ta', 'name', 'ą®®ąÆŠą®±ą®ŸąÆą®ŸąÆą®µąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(128995, 103613, 'en', 'name', 'Ilocos Training and Regional Medical Center'),
(128996, 103614, 'en', 'name', 'University of Cape Coast'),
(128997, 103615, 'fr', 'name', 'Centre de Recherche en CancƩrologie de Marseille'),
(128998, 103616, 'en', 'name', 'NOAA National Marine Fisheries Service Office of Science and Technology'),
(128999, 103617, 'en', 'name', 'Pasteur Institute'),
(129000, 103617, 'eu', 'name', 'Pasteur Institutua'),
(129001, 103617, 'fr', 'name', 'Institut Pasteur'),
(129002, 103618, 'en', 'name', 'Royal College of Nursing'),
(129003, 103619, 'en', 'name', 'Flanders Marine Institute'),
(129004, 103619, 'nl', 'name', 'Vlaams Instituut voor de Zee'),
(129005, 103620, 'en', 'name', 'Daimler Truck, Daimler Truck (Germany)'),
(129006, 103621, 'fr', 'name', 'HƓpital Saint-Louis'),
(129007, 103622, 'en', 'name', 'National Library of Sweden'),
(129008, 103622, 'fi', 'name', 'Ruotsin kuninkaallinen kirjasto'),
(129009, 103622, 'sv', 'name', 'Kungliga biblioteket'),
(129010, 103623, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†Ų§ŁŠŁ Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų£Ł…Ł†ŁŠŲ©'),
(129011, 103623, 'en', 'name', 'Naif Arab University for Security Sciences'),
(129012, 103624, 'pt', 'name', 'Laboratório de Polícia Científica'),
(129013, 103625, 'en', 'name', 'UK Reproducibility Network'),
(129014, 103626, 'de', 'name', 'W. von Borries-Eckendorf GmbH & Co. KG, W. von Borries-Eckendorf GmbH & Co. KG (Germany)'),
(129015, 103627, 'en', 'name', 'Jiangxi Academy of Sciences'),
(129016, 103627, 'zh', 'name', 'ę±Ÿč„æēœē§‘å­¦é™¢'),
(129017, 103628, 'cy', 'name', 'Prifysgol Northymbria'),
(129018, 103628, 'en', 'name', 'Northumbria University'),
(129019, 103629, 'es', 'name', 'Laboratorio de Planificación y Gestión Estratégica'),
(129020, 103630, 'en', 'name', 'University of Wisconsin–Whitewater'),
(129021, 103631, 'en', 'name', 'National Institute for Nuclear Physics, National Laboratory of Frascati'),
(129022, 103631, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Laboratori Nazionali di Frascati'),
(129023, 103632, 'fr', 'name', 'Laboratoire de Physique et Chimie de l’Environnement et de l’Espace'),
(129024, 103633, 'en', 'name', 'Deccan College Post Graduate and Research Institute'),
(129025, 103633, 'mr', 'name', 'ą¤”ą„‡ą¤•ą„ą¤•ą¤Ø ą¤•ą„‰ą¤²ą„‡ą¤œ ą¤Ŗą¤¦ą¤µą„ą¤Æą„ą¤¤ą„ą¤¤ą¤° आणि ą¤øą¤‚ą¤¶ą„‹ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(129026, 103634, 'en', 'name', 'Bifrƶst University'),
(129027, 103634, 'is', 'name', 'HÔskólinn Ô Bifröst'),
(129028, 103635, 'no_lang_code', 'name', 'Rakon (France)'),
(129029, 103636, 'no_lang_code', 'name', 'Chubb, Chubb (Switzerland)'),
(129030, 103637, 'no_lang_code', 'name', 'Fortinet, Fortinet (United States)'),
(129031, 103638, 'en', 'name', 'Indian Institute of Technology Delhi'),
(129032, 103638, 'fr', 'name', 'Institut indien de technologie de delhi'),
(129033, 103638, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(129034, 103638, 'kn', 'name', 'ą²‡ą²‚ą²”ą²æą²Æą²Øą³ ą²‡ą²Øą³ ą²øą³ą²Ÿą²æą²Ÿą³ą²Æą³‚ą²Ÿą³ ą²†ą²«ą³ ą²Ÿą³†ą²•ą³ą²Øą²¾ą²²ą²œą²æ ದೆಹಲಿ'),
(129035, 103638, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“”ąµ†ąµ½ą“¹ą“æ');
INSERT INTO `ror_settings` VALUES
(129036, 103638, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(129037, 103638, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®¤ą®æą®²ąÆą®²ą®æ'),
(129038, 103638, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°¢ą°æą°²ą±ą°²ą±€'),
(129039, 103639, 'en', 'name', 'National Center for Measurement and Calibration Center'),
(129040, 103640, 'en', 'name', 'Charles Schwab Corporation, Charles Schwab Corporation (United States)'),
(129041, 103641, 'en', 'name', 'Ostim Technical University'),
(129042, 103641, 'tr', 'name', 'Ostim Teknik Üniversitesi'),
(129043, 103642, 'en', 'name', 'ColdQuanta (United States), ColdQuanta, Inc., DBA Infleqtion'),
(129044, 103643, 'en', 'name', 'Dublin City University'),
(129045, 103643, 'ga', 'name', 'Ollscoil Chathair Bhaile Ɓtha Cliath'),
(129046, 103644, 'en', 'name', 'Society of Swedish Literature in Finland'),
(129047, 103644, 'fi', 'name', 'Svenska LitteratursƤllskapet i Finland'),
(129048, 103645, 'de', 'name', 'HochschuljubilƤumsstiftung der Stadt Wien'),
(129049, 103645, 'en', 'name', 'University Jubilee Foundation of the City of Vienna'),
(129050, 103646, 'fr', 'name', 'Infections Cardiovasculaires Virales et inflammation en pathologie humaine'),
(129051, 103647, 'no_lang_code', 'name', 'Rinnoco Ltd, Rinnoco Ltd (Cyprus)'),
(129052, 103648, 'fr', 'name', 'Centre International deHautes Etudes Agronomiques MƩditerranƩennes'),
(129053, 103649, 'en', 'name', 'Input Output (Singapore)'),
(129054, 103650, 'en', 'name', 'Royal Asiatic Society'),
(129055, 103651, 'en', 'name', 'Hawai''i Council for the Humanities'),
(129056, 103652, 'en', 'name', 'Halesowen College'),
(129057, 103653, 'en', 'name', 'European Federation for Services to Individuals'),
(129058, 103654, 'fr', 'name', 'CItƩs, Territoires, Environnement et SociƩtƩs'),
(129059, 103655, 'fr', 'name', 'Institut National de Recherches ArchƩologiques PrƩventives'),
(129060, 103656, 'en', 'name', 'Northern Vermont University'),
(129061, 103657, 'en', 'name', 'Academy of Music Theatre and Fine Arts'),
(129062, 103657, 'ro', 'name', 'Academia de Muzica, Teatru si Arte Plastice'),
(129063, 103657, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø, театра Šø ŠøŠ·Š¾Š±Ń€Š°Š·ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Ń… ŠøŃŠŗŃƒŃŃŃ‚Š²'),
(129064, 103658, 'no_lang_code', 'name', 'Selex ES (Italy)'),
(129065, 103659, 'fr', 'name', 'Centre Clermont-Auvergne-RhƓne-Alpes'),
(129066, 103660, 'en', 'name', 'Malone University'),
(129067, 103661, 'en', 'name', 'Grenoble Institute of Neurosciences'),
(129068, 103661, 'fr', 'name', 'Institut des Neurosciences de Grenoble'),
(129069, 103662, 'en', 'name', 'Inonu University'),
(129070, 103662, 'tr', 'name', 'İnönü Üniversitesi'),
(129071, 103663, 'en', 'name', 'Hunan University of Finance and Economics'),
(129072, 103663, 'zh', 'name', 'ę¹–å—č“¢ę”æē»ęµŽå­¦é™¢'),
(129073, 103664, 'en', 'name', 'Oceanic Platform of the Canary Islands'),
(129074, 103664, 'es', 'name', 'Plataforma OceƔnica de Canarias'),
(129075, 103665, 'fr', 'name', 'Laboratoire d’Electrochimie et de Physico-chimie des MatĆ©riaux et des Interfaces'),
(129076, 103666, 'es', 'name', 'Universidad Tecnológica Gral. Mariano Escobedo'),
(129077, 103667, 'en', 'name', 'Ivy Enber Christian University'),
(129078, 103668, 'bn', 'name', 'শেখ হাসিনা মেঔিকেল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼, খুলনা'),
(129079, 103668, 'en', 'name', 'Sheikh Hasina Medical University'),
(129080, 103669, 'en', 'name', 'Eversource Energy, Eversource Energy (United States)'),
(129081, 103670, 'no_lang_code', 'name', 'TÜV Nord (United States)'),
(129082, 103671, 'en', 'name', 'Institute for Philosophy, Political Science and Religion Studies'),
(129083, 103671, 'kk', 'name', 'Š¤ŠøŠ»Š¾ŃŠ¾Ń„ŠøŃ, ŃŠ°ŃŃŠ°Ń‚Ń‚Š°Š½Ńƒ және Š“Ń–Š½Ń‚Š°Š½Ńƒ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(129084, 103672, 'en', 'name', 'Tilburg University'),
(129085, 103672, 'nl', 'name', 'Universiteit van Tilburg'),
(129086, 103673, 'fr', 'name', 'Laboratoire de SpectromƩtrie Ionique et MolƩculaire'),
(129087, 103674, 'fr', 'name', 'Imagerie et StratƩgies ThƩrapeutiques pour les Cancers et Tissus cƩrƩbraux'),
(129088, 103675, 'fr', 'name', 'HƓpitaux Universitaires de Strasbourg'),
(129089, 103676, 'en', 'name', 'Saybrook University'),
(129090, 103677, 'en', 'name', 'Burnham On Sea War Memorial Hospital'),
(129091, 103678, 'fr', 'name', 'Institut Universitaire des SystĆØmes Thermiques Industriels'),
(129092, 103679, 'fr', 'name', 'Laboratoire de Physique des Gaz et des Plasmas'),
(129093, 103680, 'fr', 'name', 'Chimie Biologie Innovation'),
(129094, 103681, 'en', 'name', 'Centurion Pharma, Centurion Pharma (Turkey)'),
(129095, 103682, 'en', 'name', 'Higher Technological Institute of Lerdo'),
(129096, 103682, 'es', 'name', 'Instituto Tecnológico Superior de Lerdo'),
(129097, 103683, 'en', 'name', 'Clinical Psychology, Psychopathology, Psychanalysis'),
(129098, 103683, 'fr', 'name', 'Laboratoire de psychologie clinique, psychopathologie, psychanalyse'),
(129099, 103684, 'en', 'name', 'Naval Undersea Warfare Center'),
(129100, 103685, 'cs', 'name', 'Ekologické služby, s.r.o'),
(129101, 103685, 'no_lang_code', 'name', 'Ekologické Služby (Czechia)'),
(129102, 103686, 'en', 'name', 'Center for Research in Psychopathology and Clinical Psychology'),
(129103, 103686, 'fr', 'name', 'Centre de Recherches en Psychopathologie et Psychologie Clinique'),
(129104, 103687, 'en', 'name', 'Zhejiang Gongshang University Hangzhou College of Commerce'),
(129105, 103687, 'zh', 'name', 'ęµ™ę±Ÿå·„å•†å¤§å­¦ę­å·žå•†å­¦é™¢'),
(129106, 103688, 'en', 'name', 'Measurement Standards Section'),
(129107, 103689, 'en', 'name', 'İzmir Democracy University'),
(129108, 103689, 'tr', 'name', 'İzmir Demokrasi Üniversitesi'),
(129109, 103690, 'fr', 'name', 'Institut de Chimie et des MatƩriaux Paris-Est'),
(129110, 103691, 'en', 'name', 'Liaoning Normal University'),
(129111, 103691, 'zh', 'name', '辽宁师范大学'),
(129112, 103692, 'da', 'name', 'Sjællands Universitetshospital, Nykøbing F.'),
(129113, 103692, 'en', 'name', 'Zealand University Hospital, NykĆøbing F.'),
(129114, 103693, 'pl', 'name', 'Collegium Medicum in Bydgoszcz'),
(129115, 103694, 'en', 'name', 'Centre for Environmental Law and Global Sustainability'),
(129116, 103694, 'fr', 'name', 'Centre de Droit de l''environnement'),
(129117, 103695, 'en', 'name', 'Kookje College'),
(129118, 103695, 'kr', 'name', 'źµ­ģ œėŒ€ķ•™źµ'),
(129119, 103696, 'ml', 'name', 'ą“®ą“¦ąµą“°ąµˆ ą“•ą“¾ą“®ą“°ą“¾ą“œąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(129120, 103696, 'no_lang_code', 'name', 'Madurai Kamaraj University'),
(129121, 103696, 'ta', 'name', 'மதுரை ą®•ą®¾ą®®ą®°ą®¾ą®šą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(129122, 103697, 'no_lang_code', 'name', 'Supernal, Supernal (United States), Supernal, LLC'),
(129123, 103698, 'it', 'name', 'Istituto Teologico Leoniano di Anagni'),
(129124, 103699, 'en', 'name', 'Petrified Forest National Park'),
(129125, 103700, 'en', 'name', 'City Institute, Dalian University of Technology'),
(129126, 103700, 'zh', 'name', 'å¤§čæžē†å·„å¤§å­¦åŸŽåø‚å­¦é™¢'),
(129127, 103701, 'en', 'name', 'Center for Magnetic Resonance in Biology and Medicine'),
(129128, 103701, 'fr', 'name', 'Centre de RƩsonance MagnƩtique Biologique et MƩdicale'),
(129129, 103702, 'fr', 'name', 'Huma-Num'),
(129130, 103703, 'en', 'name', 'Lenval Foundation'),
(129131, 103703, 'fr', 'name', 'Fondation Lenval'),
(129132, 103704, 'en', 'name', 'CGFNS International, Inc.'),
(129133, 103705, 'en', 'name', 'Nagoya University'),
(129134, 103705, 'ja', 'name', '名古屋大学'),
(129135, 103706, 'en', 'name', 'SOMT University of Physiotherapy'),
(129136, 103707, 'en', 'name', 'Kenyon College'),
(129137, 103708, 'fr', 'name', 'Transitions EnergƩtiques et Environnementales'),
(129138, 103709, 'en', 'name', 'Haryana State Council for Science and Technology'),
(129139, 103710, 'en', 'name', 'Melbourne Polytechnic'),
(129140, 103711, 'fr', 'name', 'Sciences, SociĆ©tĆ©, HistoricitĆ©, Ɖducation et Pratiques'),
(129141, 103712, 'en', 'name', 'Proteomass Scientific Society'),
(129142, 103712, 'pt', 'name', 'Associação Científica Proteomass'),
(129143, 103713, 'en', 'name', 'Bureau of Quality and Safety of Food'),
(129144, 103713, 'th', 'name', 'ąøŖąø³ąø™ąø±ąøąø„ąøøąø“ąø ąø²ąøžą¹ąø„ąø°ąø„ąø§ąø²ąø”ąø›ąø„ąø­ąø”ąø ąø±ąø¢ąø­ąø²ąø«ąø²ąø£'),
(129145, 103714, 'cy', 'name', 'Prifysgol Llundain'),
(129146, 103714, 'en', 'name', 'University of London'),
(129147, 103715, 'en', 'name', 'Owens Community College'),
(129148, 103716, 'fr', 'name', 'DƩlƩgation Nord, Pas-de-Calais et Picardie'),
(129149, 103717, 'en', 'name', 'Baku Research Institute'),
(129150, 103718, 'en', 'name', 'Bayan Islamic Graduate School'),
(129151, 103719, 'cs', 'name', 'Svaz strojƭrenskƩ technologie'),
(129152, 103719, 'en', 'name', 'Association of Engineering Technology'),
(129153, 103720, 'pt', 'name', 'Museu de Lisboa'),
(129154, 103721, 'en', 'name', 'Ion Channel and Synaptic Neurobiology Laboratory'),
(129155, 103721, 'fr', 'name', 'UnitƩ de Neurobiologie des canaux Ioniques et de la Synapse'),
(129156, 103722, 'fr', 'name', 'Laboratoire en Innovation, Technologies, Economie et Management'),
(129157, 103723, 'en', 'name', 'Southwest University of Science and Technology'),
(129158, 103723, 'zh', 'name', 'č„æå—ē§‘ęŠ€å¤§å­¦'),
(129159, 103724, 'en', 'name', 'Arizona Humanities'),
(129160, 103725, 'fr', 'name', 'France, AmƩriques, Espagne, SociƩtƩs, Pouvoirs, Acteurs'),
(129161, 103726, 'no_lang_code', 'name', 'Agri Obtentions (France)'),
(129162, 103727, 'en', 'name', 'Amsterdam University of the Arts'),
(129163, 103727, 'nl', 'name', 'Amsterdamse Hogeschool voor de Kunsten'),
(129164, 103728, 'no_lang_code', 'name', 'Shenyang University'),
(129165, 103729, 'bn', 'name', 'ভারতীয় ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦øą¦‚ą¦øą§ą¦„ą¦¾'),
(129166, 103729, 'en', 'name', 'Indian Institute of Science Bangalore'),
(129167, 103729, 'gu', 'name', 'ભારતીય ąŖµąŖæąŖœą«ąŖžąŖ¾ąŖØ ąŖøąŖ‚ąŖøą«ąŖ„ąŖ¾'),
(129168, 103729, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(129169, 103729, 'kn', 'name', 'ಭಾರತೀಯ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²øą²‚ą²øą³ą²„ą³†'),
(129170, 103729, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“øą“Æąµ»ą“øąµ'),
(129171, 103729, 'pa', 'name', 'ਭਾਰਤੀ ਵਿਗਿਆਨ ਅਦਾਰਾ'),
(129172, 103729, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(129173, 103729, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą± ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°øą±ˆą°Øą±ą°øą±'),
(129174, 103730, 'en', 'name', 'Mineralogical Society of the United Kingdom and Ireland'),
(129175, 103731, 'pt', 'name', 'CADIn'),
(129176, 103732, 'es', 'name', 'Institut Pasteur de Montevideo'),
(129177, 103733, 'en', 'name', 'National Institute of Technology Durgapur'),
(129178, 103733, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¦ą„ą¤°ą„ą¤—ą¤¾ą¤Ŗą„ą¤°'),
(129179, 103733, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ, ą®¤ąÆą®°ąÆą®•ą®¾ą®ŖąÆ‚ą®°ąÆ'),
(129180, 103734, 'en', 'name', 'Data & Society Research Institute'),
(129181, 103735, 'fr', 'name', 'Maladies RAres du DEveloppement embryonnaire et du MEtabolisme'),
(129182, 103736, 'fr', 'name', 'Centre d''Investigation Clinique Bichat'),
(129183, 103737, 'fr', 'name', 'Laboratoire d''Informatique en Images et SystĆØmes d''Information'),
(129184, 103738, 'en', 'name', 'Concordia University'),
(129185, 103739, 'no_lang_code', 'name', 'Text+'),
(129186, 103740, 'en', 'name', 'LIDYL, Lasers, Interactions, and Dynamics Laboratory'),
(129187, 103740, 'fr', 'name', 'Laboratoire Interactions, Dynamiques et Lasers'),
(129188, 103741, 'en', 'name', 'Bordeaux Imaging Center'),
(129189, 103742, 'fr', 'name', 'Centre de recherches juridiques de Grenoble'),
(129190, 103743, 'en', 'name', 'Frome Community Hospital'),
(129191, 103744, 'en', 'name', 'Estonian Business School'),
(129192, 103745, 'en', 'name', 'Harbin University of Science and Technology'),
(129193, 103745, 'zh', 'name', 'å“ˆå°”ę»Øē†å·„å¤§å­¦'),
(129194, 103746, 'fr', 'name', 'Ɖcole SupĆ©rieure des GĆ©omĆØtres et Topographes'),
(129195, 103747, 'fr', 'name', 'Laboratoire de Physique des Lasers, Atomes et MolƩcules'),
(129196, 103748, 'en', 'name', 'Arkansas Humanities Council'),
(129197, 103749, 'en', 'name', 'University Center of Aflou'),
(129198, 103750, 'de', 'name', 'Institut für Lasertechnologien in der Medizin und Meßtechnik an der Universität Ulm'),
(129199, 103750, 'en', 'name', 'Institute for Laser Technology in Medicine and Measurement Technique'),
(129200, 103751, 'fr', 'name', 'Centre MĆ©diterranĆ©en de l’Environnement et de la BiodiversitĆ©'),
(129201, 103752, 'fr', 'name', 'Institut de Chimie MolƩculaire de Paris : organique, inorganique et biologique'),
(129202, 103753, 'fr', 'name', 'Institut de Radiobiologie Cellulaire et MolƩculaire'),
(129203, 103754, 'en', 'name', 'Technological University of the Shannon: Midlands Midwest'),
(129204, 103755, 'fr', 'name', 'Typologie et Universaux Linguistiques'),
(129205, 103756, 'no_lang_code', 'name', 'Sciensano (Belgium)'),
(129206, 103757, 'en', 'name', 'Suzhou University of Science and Technology'),
(129207, 103757, 'zh', 'name', 'č‹å·žē§‘ęŠ€å­¦é™¢'),
(129208, 103758, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia Farroupilha'),
(129209, 103759, 'bn', 'name', 'যশোর ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(129210, 103759, 'en', 'name', 'Jashore University of Science and Technology'),
(129211, 103760, 'it', 'name', 'Istituto Zooprofilattico Sperimentale dell''Abruzzo e del Molise G. Caporale'),
(129212, 103761, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°-ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦° ফর ą¦…ą§ą¦Æą¦¾ą¦øą§ą¦Ÿą§ą¦°ą§‹ą¦Øą¦®ą¦æ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦…ą§ą¦Æą¦¾ą¦øą§ą¦Ÿą§ą¦°ą§‹ą¦«ą¦æą¦œą¦æą¦•ą§ą¦ø'),
(129213, 103761, 'en', 'name', 'Inter-University Centre for Astronomy and Astrophysics'),
(129214, 103761, 'ml', 'name', 'ą“‡ą“Øąµą“±ąµ¼ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą“øąµ†ą“Øąµą“±ąµ¼ ą“«ąµ‹ąµ¼ ą“†ą“øąµą“Ÿąµą“°ąµ‹ą“£ą“®ą“æ ą“†ąµ»ą“”ąµ ą“†ą“øąµą“Ÿąµą“°ąµ‹ą“«ą“æą“øą“æą“•ąµą“øąµ'),
(129215, 103762, 'en', 'name', 'Hebei Medical University'),
(129216, 103762, 'zh', 'name', 'ę²³åŒ—åŒ»ē§‘å¤§å­¦'),
(129217, 103763, 'en', 'name', 'Birds Canada'),
(129218, 103763, 'fr', 'name', 'Oiseaux Canada'),
(129219, 103764, 'en', 'name', 'Guangzhou College of Commerce'),
(129220, 103764, 'zh', 'name', 'å¹æå·žå•†å­¦é™¢'),
(129221, 103765, 'en', 'name', 'Robert Gordon University'),
(129222, 103766, 'en', 'name', 'People''s Liberation Army Air Force'),
(129223, 103766, 'zh', 'name', '中国人民解放军空军'),
(129224, 103767, 'en', 'name', 'University of Cyberjaya'),
(129225, 103767, 'ms', 'name', 'Universiti Cyberjaya'),
(129226, 103768, 'en', 'name', 'Hubei University of Education'),
(129227, 103768, 'zh', 'name', 'ę¹–åŒ—ę•™č‚²å­¦é™¢'),
(129228, 103769, 'fr', 'name', 'Laboratoire de MƩcanique, Multiphysique, MultiƩchelle'),
(129229, 103770, 'en', 'name', 'Languedoc-Roussillon Universities'),
(129230, 103770, 'fr', 'name', 'COMUE Languedoc-Roussillon UniversitƩs'),
(129231, 103771, 'fr', 'name', 'Biologie intégrée pour la valorisation de la diversité des arbres et de la forêt'),
(129232, 103772, 'en', 'name', 'Navigable Waterways of France'),
(129233, 103772, 'fr', 'name', 'Voies navigables de France'),
(129234, 103773, 'en', 'name', 'Sivas Cumhuriyet University'),
(129235, 103773, 'tr', 'name', 'Sivas Cumhuriyet Üniversitesi'),
(129236, 103774, 'fr', 'name', 'Structures et MarchƩs Agricoles, Ressources et Territoires'),
(129237, 103775, 'en', 'name', 'Communication University of China'),
(129238, 103775, 'zh', 'name', '中国传媒大学'),
(129239, 103776, 'de', 'name', 'PƤdagogische Hochschule FHNW'),
(129240, 103777, 'en', 'name', 'Medical Genetics & Functional Genomics'),
(129241, 103777, 'fr', 'name', 'GƩnƩtique MƩdicale & GƩnomique Fonctionelle'),
(129242, 103778, 'no_lang_code', 'name', 'Clarivate (United States)'),
(129243, 103779, 'en', 'name', 'Center for Process Studies'),
(129244, 103780, 'en', 'name', 'Tara Oceans Systems Ecology & Evolution'),
(129245, 103781, 'en', 'name', 'Brain and Cognition Research Center'),
(129246, 103781, 'fr', 'name', 'Centre de recherche cerveau et cognition'),
(129247, 103782, 'no_lang_code', 'name', 'Kroger, Kroger (United States)'),
(129248, 103783, 'en', 'name', 'Estonian Aviation Academy'),
(129249, 103783, 'et', 'name', 'Eesti Lennuakadeemia'),
(129250, 103783, 'ru', 'name', 'Š­ŃŃ‚Š¾Š½ŃŠŗŠ°Ń Š°Š²ŠøŠ°Ń†ŠøŠ¾Š½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(129251, 103784, 'az', 'name', 'Süleyman Dəmirəl Universiteti'),
(129252, 103784, 'en', 'name', 'Süleyman Demirel University'),
(129253, 103784, 'tr', 'name', 'Süleyman Demirel Üniversitesi'),
(129254, 103785, 'fr', 'name', 'Recherches en Psychopathologie et Psychanalyse'),
(129255, 103786, 'en', 'name', 'Laboratory of Planetology and Geosciences'),
(129256, 103786, 'fr', 'name', 'Laboratoire de PlanƩtologie et GƩosciences'),
(129257, 103787, 'en', 'name', 'Kalasalingam Academy of Research and Education'),
(129258, 103787, 'ta', 'name', 'ą®•ą®²ą®šą®²ą®æą®™ąÆą®•ą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(129259, 103788, 'en', 'name', 'University of North Carolina at Greensboro'),
(129260, 103788, 'fr', 'name', 'UniversitƩ de caroline du nord Ơ greensboro'),
(129261, 103789, 'en', 'name', 'Franklin & Marshall College'),
(129262, 103790, 'de', 'name', 'Max-Planck-Institut für Intelligente Systeme'),
(129263, 103790, 'en', 'name', 'Max Planck Institute for Intelligent Systems'),
(129264, 103791, 'en', 'name', 'Marcoule Institute for Separation Chemistry'),
(129265, 103791, 'fr', 'name', 'Institut de Chimie SƩparative de Marcoule'),
(129266, 103792, 'en', 'name', 'Veer Narmad South Gujarat University'),
(129267, 103792, 'gu', 'name', 'વીર ąŖØąŖ°ą«ąŖ®ąŖ¦ ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(129268, 103793, 'fr', 'name', 'ScanMAT'),
(129269, 103794, 'en', 'name', 'National Institute of Public Health'),
(129270, 103795, 'en', 'name', 'Army Command College'),
(129271, 103795, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›é™†å†›ęŒ‡ęŒ„å­¦é™¢ę’­ęŠ„'),
(129272, 103796, 'en', 'name', 'Institute of Researches on Catalysis and Environment in Lyon'),
(129273, 103796, 'fr', 'name', 'Institut de Recherches sur la Catalyse et l''Environnement de Lyon'),
(129274, 103797, 'en', 'name', 'National Fertilizer Corporation, National Fertilizer Corporation (Pakistan), National Fertilizer Corporation of Pakistan (Pvt) Ltd'),
(129275, 103797, 'ur', 'name', 'Ł†ŪŒŲ“Ł†Ł„ ŁŲ±Ł¹ŪŒŁ„Ų§Ų¦Ų²Ų± Ś©Ų§Ų±Ł¾ŁˆŲ±ŪŒŲ“Ł† پاکستان'),
(129276, 103798, 'en', 'name', 'Taizhou University'),
(129277, 103798, 'zh', 'name', '台州学院'),
(129278, 103799, 'en', 'name', 'University of Zielona Góra'),
(129279, 103799, 'pl', 'name', 'Uniwersytet Zielonogórski'),
(129280, 103800, 'fr', 'name', 'BibliothĆØque Jacques Hadamard'),
(129281, 103801, 'en', 'name', 'Royal Holloway University of London'),
(129282, 103802, 'en', 'name', 'Reaseheath College'),
(129283, 103803, 'de', 'name', 'Hochschule Heilbronn'),
(129284, 103803, 'en', 'name', 'Heilbronn University'),
(129285, 103804, 'no_lang_code', 'name', 'Rakon, Rakon (New Zealand)'),
(129286, 103805, 'en', 'name', 'Public Information Library'),
(129287, 103805, 'fr', 'name', 'BibliothĆØque publique d''information'),
(129288, 103806, 'en', 'name', 'Willamette University'),
(129289, 103807, 'fr', 'name', 'Institut des Cellules Souches pour le Traitement et l''Ɖtude des Maladies MonogĆ©niques'),
(129290, 103808, 'en', 'name', 'China University of Geosciences'),
(129291, 103808, 'zh', 'name', 'äø­å›½åœ°č“Øå¤§å­¦'),
(129292, 103809, 'en', 'name', 'National Highway Traffic Safety Administration'),
(129293, 103810, 'en', 'name', 'Drew University'),
(129294, 103810, 'fr', 'name', 'UniversitƩ de drew'),
(129295, 103811, 'fr', 'name', 'Institut de Recherche en Musicologie'),
(129296, 103812, 'fr', 'name', 'Physiologie De L''Axe Gonadotrope'),
(129297, 103813, 'en', 'name', 'Cyprus Research and Academic Network'),
(129298, 103814, 'en', 'name', 'City University of Macau'),
(129299, 103814, 'pt', 'name', 'Universidade da Cidade de Macau'),
(129300, 103814, 'zh', 'name', 'ę¾³é–€åŸŽåø‚å¤§å­ø'),
(129301, 103815, 'fr', 'name', 'Savoirs, Environnement, SociƩtƩs'),
(129302, 103816, 'en', 'name', 'Institute of Agriculture and Animal Science'),
(129303, 103817, 'fr', 'name', 'Centre amiƩnois de recherche en Ʃducation et formation'),
(129304, 103818, 'en', 'name', 'Fifth Third Bancorp, Fifth Third Bancorp (United States)'),
(129305, 103819, 'en', 'name', 'Shandong University of Science and Technology'),
(129306, 103819, 'zh', 'name', 'å±±äøœē§‘ęŠ€å¤§å­¦'),
(129307, 103820, 'en', 'name', 'Public Health Laboratory'),
(129308, 103821, 'en', 'name', 'Indian Institute of Technology Bhubaneswar'),
(129309, 103821, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤­ą„ą¤µą¤Øą„‡ą¤¶ą„ą¤µą¤°'),
(129310, 103821, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®ŖąÆą®µą®©ąÆ‡ą®šąÆą®µą®°ąÆ'),
(129311, 103822, 'fr', 'name', 'Savoirs et Mondes Indiens'),
(129312, 103823, 'en', 'name', 'Slovak Astronomical Society at the Slovak Academy of Sciences'),
(129313, 103823, 'sk', 'name', 'SlovenskĆ” astronomickĆ” spoločnosÅ„ pri Slovenskej akadĆ©mii vied'),
(129314, 103824, 'en', 'name', 'Humanities North Dakota'),
(129315, 103825, 'en', 'name', 'University of Leicester'),
(129316, 103826, 'no_lang_code', 'name', 'Textron, Textron (United States)'),
(129317, 103827, 'en', 'name', 'Milwaukee School of Engineering'),
(129318, 103828, 'en', 'name', 'Memorial University of Newfoundland'),
(129319, 103829, 'no_lang_code', 'name', 'Abcerion Diagnostics GmbH, Abcerion Diagnostics GmbH (Germany)'),
(129320, 103830, 'no_lang_code', 'name', 'Daimler (Japan)'),
(129321, 103831, 'en', 'name', 'Slovenian Nutrition Institute'),
(129322, 103831, 'sl', 'name', 'InŔtitut za Nutricionistiko'),
(129323, 103832, 'en', 'name', 'Sree Sankaracharya University of Sanskrit'),
(129324, 103832, 'ml', 'name', 'ą“¶ąµą“°ąµ€ ą“¶ą“™ąµą“•ą“°ą“¾ą“šą“¾ą“°ąµą“Æ ą“øą“‚ą“øąµą“•ąµƒą“¤ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(129325, 103832, 'ur', 'name', 'جامعہ ؓری ؓنکر Ų§Ś†Ų§Ų±ŪŒŪ ŲØŲ±Ų§Ų¦Ū’ سنسکرت'),
(129326, 103833, 'no_lang_code', 'name', 'State Research Institute for Material Protection (Czechia)'),
(129327, 103834, 'no_lang_code', 'name', 'Sekisui XenoTech (United States)'),
(129328, 103835, 'en', 'name', 'Institute of Chemistry, Technology and Metallurgy'),
(129329, 103835, 'sr', 'name', 'Institut za hemiju, tehnologiju i metalurgiju, Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Ń…ŠµŠ¼ŠøŃ˜Ńƒ, Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ˜Ńƒ Šø Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³ŠøŃ˜Ńƒ'),
(129330, 103836, 'en', 'name', 'Smithsonian Conservation Biology Institute'),
(129331, 103837, 'en', 'name', 'Hope for Communities and Children Initiative'),
(129332, 103838, 'fr', 'name', 'Centre de Corse'),
(129333, 103839, 'en', 'name', 'Vancouver Coastal Health Research Institute'),
(129334, 103840, 'en', 'name', 'NutriNeuro'),
(129335, 103841, 'en', 'name', 'XIM University'),
(129336, 103842, 'en', 'name', 'Danone Nutricia Research, Danone Nutricia Research (Netherlands)'),
(129337, 103843, 'no_lang_code', 'name', 'HEAnet'),
(129338, 103844, 'en', 'name', 'Qilu University of Technology'),
(129339, 103844, 'zh', 'name', '齐鲁巄业大学'),
(129340, 103845, 'en', 'name', 'Nutritional Epidemiology Research Unit'),
(129341, 103845, 'fr', 'name', 'Equipe de Recherche en EpidƩmiologie Nutritionnelle'),
(129342, 103846, 'en', 'name', 'Mingachevir State University'),
(129343, 103847, 'en', 'name', 'National Institute for Nuclear Physics, Bologna Division'),
(129344, 103847, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Bologna'),
(129345, 103848, 'fr', 'name', 'Haute Ɖcole de SantĆ© Vaud'),
(129346, 103849, 'pt', 'name', 'Centro Hospitalar Póvoa de Varzim Vila do Conde EPE'),
(129347, 103850, 'en', 'name', 'Victoria University'),
(129348, 103851, 'no_lang_code', 'name', 'Ningxia University'),
(129349, 103851, 'zh', 'name', '宁夏大学'),
(129350, 103852, 'fr', 'name', 'Institut d''Histoire du Droit Jean Gaudemet'),
(129351, 103853, 'en', 'name', 'California State University, East Bay'),
(129352, 103853, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  east bay'),
(129353, 103854, 'en', 'name', 'Center for Sociological and Political Research in Paris'),
(129354, 103854, 'fr', 'name', 'Centre de recherches sociologiques et politiques de Paris'),
(129355, 103855, 'en', 'name', 'LabEx-Chemistry of Complex Systems'),
(129356, 103855, 'fr', 'name', 'LabEx Chimie des SystĆØmes Complexes'),
(129357, 103856, 'en', 'name', 'Islamic Azad University, West Tehran Branch'),
(129358, 103856, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد تهران ŲŗŲ±ŲØ'),
(129359, 103857, 'de', 'name', 'Klinikum rechts der Isar'),
(129360, 103858, 'fr', 'name', 'Architecture et Fonction des MacromolƩcules Biologiques'),
(129361, 103859, 'en', 'name', 'National Center for Theoretical Sciences, Mathematics Division'),
(129362, 103859, 'zh', 'name', 'åœ‹å®¶ē†č«–ē§‘å­øē ”ē©¶äø­åæƒ 數學組'),
(129363, 103860, 'en', 'name', 'Xi’an University of Posts and Telecommunications'),
(129364, 103860, 'zh', 'name', '脿安邮电大学'),
(129365, 103861, 'ar', 'name', 'Ų§Ł„Ł…ŲÆŁŠŲ±ŁŠŲ© العامة للبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŲ·ŁˆŁŠŲ± Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(129366, 103861, 'en', 'name', 'Directorate General for Scientific Research and Technological Development'),
(129367, 103862, 'en', 'name', 'Barnfield College'),
(129368, 103863, 'en', 'name', 'Chronic Granulomatous Disorder Society'),
(129369, 103864, 'en', 'name', 'Federal Polytechnic, Nasarawa'),
(129370, 103865, 'fr', 'name', 'Institut des Nanotechnologies de Lyon'),
(129371, 103866, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų³Ų·Ų§Ł… بن Ų¹ŲØŲÆŲ§Ł„Ų¹Ų²ŁŠŲ²'),
(129372, 103866, 'en', 'name', 'Prince Sattam Bin Abdulaziz University'),
(129373, 103867, 'fr', 'name', 'Adaptation physiologiques Ơ l''exercice et rƩadaptation Ơ l''effort'),
(129374, 103868, 'en', 'name', 'World Forest ID'),
(129375, 103869, 'en', 'name', 'QuantumBasel (Switzerland)'),
(129376, 103870, 'en', 'name', 'Structural Genomics Consortium'),
(129377, 103871, 'fr', 'name', 'Ɖcole Nationale VĆ©tĆ©rinaire d''Alfort'),
(129378, 103872, 'fr', 'name', 'Institut photonique d''analyse non-destructive europƩen des matƩriaux anciens'),
(129379, 103873, 'fr', 'name', 'Institut des SystĆØmes Complexes Paris Ǝle-de-France'),
(129380, 103874, 'pt', 'name', 'Estado-Maior do ExƩrcito'),
(129381, 103875, 'it', 'name', 'Istituto Nazionale per la Valutazione del Sistema dell''Istruzione'),
(129382, 103876, 'en', 'name', 'European Ceramics Centre'),
(129383, 103876, 'fr', 'name', 'Centre EuropƩen de la CƩramique'),
(129384, 103877, 'fr', 'name', 'FƩdƩration de recherche en imagerie multi-modalitƩ'),
(129385, 103878, 'en', 'name', 'Metabolic Functional (epi)Genomics and Molecular Mechanisms Involved in type 2 Diabetes and Related Diseases'),
(129386, 103878, 'fr', 'name', '(Epi)génomique fonctionnelle métabolique et des dysfonctions dans le diabète de type 2 et des maladies associées'),
(129387, 103879, 'fr', 'name', 'Laboratoire de MathƩmatiques de Versailles'),
(129388, 103880, 'en', 'name', 'Guangdong Medical College'),
(129389, 103880, 'zh', 'name', 'å¹æäøœåŒ»å­¦é™¢'),
(129390, 103881, 'pt', 'name', 'Faculdade Anhanguera'),
(129391, 103882, 'en', 'name', 'United States Fish and Wildlife Service'),
(129392, 103882, 'es', 'name', 'Servicio de Pesca y Vida Silvestre de los Estados Unidos'),
(129393, 103883, 'en', 'name', 'Saint Louis University'),
(129394, 103883, 'tl', 'name', 'Unibersidad ng San Luis'),
(129395, 103884, 'fr', 'name', 'Sommeil, Addiction et Neuropsychiatrie'),
(129396, 103885, 'en', 'name', 'Institute of Astrophysics of Andalusia'),
(129397, 103885, 'es', 'name', 'Instituto de AstrofĆ­sica de AndalucĆ­a'),
(129398, 103886, 'no_lang_code', 'name', 'Impaq International (United States)'),
(129399, 103887, 'fr', 'name', 'BISCEm - Biologie IntƩgrative SantƩ Chimie Environnement'),
(129400, 103888, 'pt', 'name', 'Instituto da Construção'),
(129401, 103889, 'fr', 'name', 'NF-kappaB, DiffƩrenciation et Cancer'),
(129402, 103890, 'en', 'name', 'Smithsonian Asian Pacific American Center'),
(129403, 103891, 'en', 'name', 'Institute for Humanities and Cultural Studies'),
(129404, 103891, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų¹Ł„ŁˆŁ… Ų§Ł†Ų³Ų§Ł†ŪŒ و مطالعات ŁŲ±Ł‡Ł†ŚÆŪŒ'),
(129405, 103892, 'fr', 'name', 'Risques, EpidƩmiologie, Territoires, Informations, Education et SantƩ'),
(129406, 103893, 'en', 'name', 'Harbin Finance University'),
(129407, 103893, 'zh', 'name', 'å“ˆå°”ę»Øé‡‘čžå­¦é™¢'),
(129408, 103894, 'en', 'name', 'Physics of Ionic and Molecular Interactions'),
(129409, 103894, 'fr', 'name', 'Physique des interactions ioniques et molƩculaires'),
(129410, 103895, 'en', 'name', 'University of Delta Agbor'),
(129411, 103896, 'en', 'name', 'UCLA Clinical and Translational Science Institute'),
(129412, 103897, 'en', 'name', 'Tongling University'),
(129413, 103897, 'zh', 'name', '铜陵学院'),
(129414, 103898, 'en', 'name', 'Springer Nature (India)'),
(129415, 103899, 'en', 'name', 'NOAA National Systematics Laboratory'),
(129416, 103900, 'en', 'name', 'Bishop Grosseteste University'),
(129417, 103901, 'cy', 'name', 'Y Coleg Cerddoriaeth Brenhinol'),
(129418, 103901, 'en', 'name', 'Royal College of Music'),
(129419, 103902, 'fr', 'name', 'Territoires, Villes, Environnement & SociƩtƩ'),
(129420, 103903, 'en', 'name', 'Hacettepe University'),
(129421, 103903, 'tr', 'name', 'Hacettepe Üniversitesi'),
(129422, 103904, 'no_lang_code', 'name', 'Pultegroup, Pultegroup (United States)'),
(129423, 103905, 'en', 'name', 'Khorezm Rural Advisory Support Service'),
(129424, 103905, 'ru', 'name', 'Єорезмский Агро-ŠšŠ¾Š½ŃŃƒŠ»ŃŒŃ‚Š°Ń‚ŠøŠ²Š½Ń‹Š¹ Центр'),
(129425, 103905, 'uz', 'name', 'Xorazm Agromaslahat Markazi'),
(129426, 103906, 'en', 'name', 'Centre for Nursing Studies'),
(129427, 103907, 'en', 'name', 'National Labor College'),
(129428, 103908, 'fr', 'name', 'Laboratoire Interdisciplinaire SolidaritƩs SociƩtƩs Territoires'),
(129429, 103909, 'fr', 'name', 'Théâtre antique : textes, histoire et réception'),
(129430, 103910, 'fr', 'name', 'HƓpital Arnaud de Villeneuve'),
(129431, 103911, 'no_lang_code', 'name', 'Pinterest, Pinterest (United States)'),
(129432, 103912, 'en', 'name', 'Saint Paul & Minnesota Foundation'),
(129433, 103913, 'pt', 'name', 'Instituto Superior de Estudos Interculturais e Transdisciplinares de Almada'),
(129434, 103914, 'en', 'name', 'Simmons University'),
(129435, 103915, 'en', 'name', 'The Association of Intellectuals for the Development of Science in Serbia ā€œThe Serbian Academic Centerā€'),
(129436, 103915, 'ru', 'name', 'Oбщество ŠøŠ½Ń‚ŠµŠ»Š»ŠµŠŗŃ‚ŃƒŠ°Š»Š¾Š² за развитие науки в Дербии ā€žŠ”ŠµŃ€Š±ŃŠŗŠøŠ¹ aкаГемический Ń†ŠµŠ½Ń‚Ń€ā€ ŠŠ¾Š²Šø-ДаГ'),
(129437, 103915, 'sr', 'name', 'Š£Š“Ń€ŃƒŠ¶ŠµŃšŠµ ŠøŠ½Ń‚ŠµŠ»ŠµŠŗŃ‚ŃƒŠ°Š»Š°Ń†Š° за Ń€Š°Š·Š²Š¾Ń˜ науке у Š”Ń€Š±ŠøŃ˜Šø - ā€žŠ”Š ŠŸŠ”ŠšŠ˜ ŠŠšŠŠ”Š•ŠœŠ”ŠšŠ˜ Š¦Š•ŠŠ¢ŠŠ ā€'),
(129438, 103916, 'en', 'name', 'National Academy of Sciences of Armenia'),
(129439, 103916, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ£Õ«ÕæÕøÖ‚Õ©ÕµÕøÖ‚Õ¶Õ¶Õ„Ö€Õ« Õ”Õ¦Õ£Õ”ÕµÕ«Õ¶ Õ”ÕÆÕ”Õ¤Õ„Õ“Õ«Õ”'),
(129440, 103917, 'en', 'name', 'Phramongkutklao College of Medicine'),
(129441, 103918, 'en', 'name', 'Breda University of Applied Sciences'),
(129442, 103918, 'nl', 'name', 'NHTV internationaal hoger onderwijs Breda'),
(129443, 103919, 'en', 'name', 'NSWC Crane Division'),
(129444, 103920, 'en', 'name', 'K.S. Rangasamy College of Technology'),
(129445, 103920, 'hi', 'name', 'கே. ą®Žą®øąÆ. ą®°ą®™ąÆą®•ą®šą®¾ą®®ą®æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(129446, 103921, 'en', 'name', 'Swedish Defence University'),
(129447, 103921, 'fi', 'name', 'Maanpuolustuskorkeakoulu'),
(129448, 103921, 'sv', 'name', 'Fƶrsvarshƶgskolan'),
(129449, 103922, 'es', 'name', 'Colfuturo'),
(129450, 103923, 'en', 'name', 'Jiangnan University'),
(129451, 103923, 'zh', 'name', 'ę±Ÿå—å¤§å­¦'),
(129452, 103924, 'en', 'name', 'Fatih Sultan Mehmet Waqf University'),
(129453, 103924, 'tr', 'name', 'Fatih Sultan Mehmet Vakıf Üniversitesi'),
(129454, 103925, 'en', 'name', 'FHNW University of Applied Sciences and Arts'),
(129455, 103926, 'de', 'name', 'Zentrum verantwortungsbewusste Digitalisierung'),
(129456, 103927, 'es', 'name', 'Universidad Tecnológica de Torreón'),
(129457, 103928, 'en', 'name', 'Onondaga Community College'),
(129458, 103929, 'en', 'name', 'Kansas Geological Survey'),
(129459, 103930, 'fr', 'name', 'Agents infectieux, rƩsistance et chimiothƩrapie'),
(129460, 103931, 'en', 'name', 'Oklahoma Humanities Council'),
(129461, 103932, 'fr', 'name', 'Centre d''Ʃtudes et de recherches en droit des procƩdures'),
(129462, 103933, 'en', 'name', 'ESTA School of Business and Technology'),
(129463, 103933, 'fr', 'name', 'ESTA Ecole SupƩrieure des Technologies et des Affaires'),
(129464, 103934, 'en', 'name', 'Claremont McKenna College'),
(129465, 103935, 'en', 'name', 'Mississippi Humanities Council'),
(129466, 103936, 'en', 'name', 'Wirral Metropolitan College'),
(129467, 103937, 'en', 'name', 'European Center for Researches and Training in the Glass-Work'),
(129468, 103937, 'fr', 'name', 'Centre EuropƩen de Recherches et de Formation aux Arts Verriers'),
(129469, 103938, 'fr', 'name', 'Laboratoire Interuniversitaire des Sciences de l''Education et de la Communication'),
(129470, 103939, 'en', 'name', 'Angelo State University'),
(129471, 103940, 'en', 'name', 'General Sir John Kotelawala Defence University'),
(129472, 103940, 'si', 'name', 'ą¶¢ą·™ą¶±ą¶»ą·ą¶½ą·Š ą·ą·Šā€ą¶»ą·“ą¶øą¶­ą·Š ą¶¢ą·ą¶±ą·Š ą¶šą·œą¶­ą¶½ą·ą·€ą¶½ ą¶†ą¶»ą¶šą·Šą·‚ą¶š ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(129473, 103940, 'ta', 'name', 'ą®œąÆ†ą®©ą®°ą®²ąÆ ą®šąÆ‡ą®°ąÆ ą®œąÆ‹ą®©ąÆ ą®•ąÆŠą®¤ąÆą®¤ą®²ą®¾ą®µą®² ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ą®¾ą®©ą®¤ąÆ'),
(129474, 103941, 'en', 'name', 'Shanghai Ocean University'),
(129475, 103941, 'zh', 'name', 'äøŠęµ·ęµ·ę“‹å¤§å­¦'),
(129476, 103942, 'en', 'name', 'Diaconia University of Applied Sciences'),
(129477, 103942, 'fi', 'name', 'Diakonia-ammattikorkeakoulu'),
(129478, 103942, 'sv', 'name', 'Yrkeshƶgskolan Diakonia'),
(129479, 103943, 'no_lang_code', 'name', 'GE Vernova, GE Vernova (United States)'),
(129480, 103944, 'en', 'name', 'Research Institute and Applied Ethology in Semiochemistry'),
(129481, 103944, 'fr', 'name', 'Institut de Recherche en SƩmiochimie et Ethologie AppliquƩe'),
(129482, 103945, 'de', 'name', 'CAIMed - Niedersächsisches Zentrum für KI und Kausale Methoden in der Medizin'),
(129483, 103946, 'tr', 'name', 'Aile ve Sosyal Hizmetler Bakanlığı'),
(129484, 103947, 'fr', 'name', 'ArchƩologie des SociƩtƩs MƩditerranƩennes'),
(129485, 103948, 'cs', 'name', 'Univerzita TomÔŔe Bati ve ZlĆ­ně'),
(129486, 103948, 'en', 'name', 'Tomas Bata University in ZlĆ­n'),
(129487, 103949, 'de', 'name', 'Fraunhofer-Institut für Intelligente Analyse- und Informationssysteme'),
(129488, 103949, 'en', 'name', 'Fraunhofer Institute for Intelligent Analysis and Information Systems'),
(129489, 103950, 'no_lang_code', 'name', 'Avco (United States)'),
(129490, 103951, 'en', 'name', 'ESCE International Business School'),
(129491, 103951, 'fr', 'name', 'Ɖcole SupĆ©rieure du Commerce ExtĆ©rieur'),
(129492, 103952, 'en', 'name', 'European Institute for Membranes'),
(129493, 103952, 'fr', 'name', 'Institut EuropƩen des Membranes'),
(129494, 103953, 'no_lang_code', 'name', 'Europeum'),
(129495, 103954, 'en', 'name', 'Institute of Research and Innovation'),
(129496, 103954, 'fr', 'name', 'Institut de Recherche et d’Innovation'),
(129497, 103955, 'en', 'name', 'Mersin University'),
(129498, 103955, 'tr', 'name', 'Mersin Üniversitesi'),
(129499, 103956, 'en', 'name', 'Luoyang Institute of Science and Technology'),
(129500, 103956, 'zh', 'name', 'ę“›é˜³ē†å·„å­¦é™¢'),
(129501, 103957, 'fr', 'name', 'Centre de recherche en droit et management des services de santƩ'),
(129502, 103958, 'en', 'name', 'Shanxi University of Finance and Economics'),
(129503, 103958, 'zh', 'name', 'å±±č„æč“¢ē»å¤§å­¦'),
(129504, 103959, 'en', 'name', 'Gaziantep Islam Science and Technology University'),
(129505, 103959, 'tr', 'name', 'Gaziantep İslam Bilim ve Teknoloji Üniversitesi'),
(129506, 103960, 'en', 'name', 'Offinso College of Education'),
(129507, 103961, 'en', 'name', 'University of Cassino and Southern Lazio'),
(129508, 103961, 'fr', 'name', 'UniversitƩ de cassino'),
(129509, 103961, 'it', 'name', 'UniversitĆ  degli Studi di Cassino e del Lazio Meridionale'),
(129510, 103962, 'en', 'name', 'ColibrĆ­ Gorriazul Research Center'),
(129511, 103963, 'en', 'name', 'Skidmore College'),
(129512, 103964, 'en', 'name', 'Medical University of Warsaw'),
(129513, 103964, 'pl', 'name', 'Warszawski Uniwersytet Medyczny'),
(129514, 103965, 'fr', 'name', 'Centre d''Investigation Clinique - Innovation Technologique de Lille'),
(129515, 103966, 'en', 'name', 'Mattel Children''s Hospital'),
(129516, 103967, 'de', 'name', 'Max-Delbrück-Centrum für Molekulare Medizin in der Helmholtz-Gemeinschaft'),
(129517, 103967, 'en', 'name', 'Max Delbrück Center'),
(129518, 103968, 'en', 'name', 'Lille Neurosciences & Cognition'),
(129519, 103969, 'en', 'name', 'Brown-Forman (United States)'),
(129520, 103969, 'no_lang_code', 'name', 'Brown-Forman'),
(129521, 103970, 'en', 'name', 'Chengdu Neusoft University'),
(129522, 103970, 'zh', 'name', 'ęˆéƒ½äøœč½Æå­¦é™¢'),
(129523, 103971, 'en', 'name', 'Shandong University of Arts'),
(129524, 103971, 'zh', 'name', 'å±±äøœč‰ŗęœÆå­¦é™¢'),
(129525, 103972, 'en', 'name', 'Carlos Amarante Group of Schools'),
(129526, 103972, 'pt', 'name', 'Agrupamento de Escolas Carlos Amarante'),
(129527, 103973, 'en', 'name', 'Mildred Elley College'),
(129528, 103974, 'en', 'name', 'Atilim University'),
(129529, 103974, 'tr', 'name', 'Atılım Üniversitesi'),
(129530, 103975, 'fr', 'name', 'Travaux et Recherches ArchƩologiques sur les Cultures, les Espaces et les SociƩtƩs'),
(129531, 103976, 'en', 'name', 'Istanbul Bilgi University'),
(129532, 103976, 'tr', 'name', 'İstanbul Bilgi Üniversitesi'),
(129533, 103977, 'en', 'name', 'University of AlcalĆ”'),
(129534, 103977, 'es', 'name', 'Universidad de AlcalĆ”'),
(129535, 103978, 'en', 'name', 'IULM University'),
(129536, 103978, 'fr', 'name', 'UniversitƩ libre des langues et de la communication'),
(129537, 103978, 'it', 'name', 'Libera UniversitĆ  di Lingue e Comunicazione IULM'),
(129538, 103979, 'en', 'name', 'Utrecht University'),
(129539, 103979, 'nl', 'name', 'Universiteit Utrecht'),
(129540, 103980, 'no_lang_code', 'name', 'Mercedes-Benz (United States)'),
(129541, 103981, 'en', 'name', 'Nextera Energy, Nextera Energy (United States)'),
(129542, 103982, 'en', 'name', 'Lincoln University'),
(129543, 103982, 'mi', 'name', 'Te Whare Wanaka o Aoraki'),
(129544, 103983, 'en', 'name', 'Systems Plus College Foundation'),
(129545, 103984, 'fr', 'name', 'SubjectivitƩ, lien social et modernitƩ'),
(129546, 103985, 'fr', 'name', 'Institut Pasteur de Tunis'),
(129547, 103986, 'fr', 'name', 'HƓpital Saint Eloi'),
(129548, 103987, 'fr', 'name', 'Droit International ComparƩ et EuropƩen'),
(129549, 103988, 'fr', 'name', 'DƩlƩgation Alpes'),
(129550, 103989, 'de', 'name', 'Max-Planck-Institut für Biochemie'),
(129551, 103989, 'en', 'name', 'Max Planck Institute of Biochemistry'),
(129552, 103990, 'en', 'name', 'California State University, Dominguez Hills'),
(129553, 103990, 'es', 'name', 'Universidad Estatal de California'),
(129554, 103990, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  dominguez hills'),
(129555, 103991, 'en', 'name', 'Rhizogenesis Lab'),
(129556, 103991, 'fr', 'name', 'Equipe RhizogenĆØse'),
(129557, 103992, 'en', 'name', 'Cardiovascular Markers in Stressed Conditions'),
(129558, 103992, 'fr', 'name', 'Marqueurs cardiovasculaires en situation de stress'),
(129559, 103993, 'no_lang_code', 'name', 'OncoThAI'),
(129560, 103994, 'fr', 'name', 'Laboratoire MotricitƩ, Interactions, Performance'),
(129561, 103995, 'fr', 'name', 'Maison de Sante Protestante de Bordeaux-Bagatelle'),
(129562, 103996, 'en', 'name', 'NSWC Corona Division'),
(129563, 103997, 'en', 'name', 'National Commission on Research Science and Technology'),
(129564, 103998, 'en', 'name', 'Liverpool Womens NHS Foundation Trust'),
(129565, 103999, 'fr', 'name', 'Collège de Maisonneuve, Cégep de Maisonneuve'),
(129566, 104000, 'en', 'name', 'Sungkyunkwan University'),
(129567, 104000, 'ko', 'name', 'ģ„±ź· ź“€ėŒ€ķ•™źµ'),
(129568, 104001, 'en', 'name', 'Institute of Hydrology of the Slovak Academy of Sciences'),
(129569, 104001, 'sk', 'name', 'Ústav hydrológie Slovenskej akadémie vied'),
(129570, 104002, 'en', 'name', 'Devki Devi Foundation'),
(129571, 104003, 'pt', 'name', 'Instituto Superior de Tecnologias AvanƧadas do Porto'),
(129572, 104004, 'en', 'name', 'Transportation Security Administration'),
(129573, 104005, 'de', 'name', 'Dietrich Bonhoeffer Klinikum'),
(129574, 104006, 'no_lang_code', 'name', 'DoCoMo Communications Laboratories Europe GmbH'),
(129575, 104007, 'de', 'name', 'FilmuniversitƤt Babelsberg KONRAD WOLF'),
(129576, 104007, 'en', 'name', 'Film University Babelsberg KONRAD WOLF'),
(129577, 104008, 'en', 'name', 'Mondor Institute of Biomedical Research'),
(129578, 104008, 'fr', 'name', 'Institut Mondor de Recherche BiomƩdicale'),
(129579, 104009, 'no_lang_code', 'name', 'Selex ES (United Kingdom)'),
(129580, 104010, 'no_lang_code', 'name', 'Plazi Verein'),
(129581, 104011, 'fr', 'name', 'Centre Georg Simmel'),
(129582, 104012, 'en', 'name', 'Healthcare Quality Improvement Partnership'),
(129583, 104013, 'fr', 'name', 'D2iA - Dynamiques, Interactions et InterculturalitƩ en Asie'),
(129584, 104014, 'es', 'name', 'Instituto Regional De Enfermedades NeoplƔsicas Del Centro, Iren Centro'),
(129585, 104015, 'fr', 'name', 'Laboratoire du Futur'),
(129586, 104016, 'en', 'name', 'University of Electronic Science and Technology of China'),
(129587, 104016, 'zh', 'name', 'ē”µå­ē§‘ęŠ€å¤§å­¦'),
(129588, 104017, 'pt', 'name', 'Escola Superior de Tecnologias de Fafe'),
(129589, 104018, 'en', 'name', 'United Nations Office for Outer Space Affairs'),
(129590, 104019, 'da', 'name', 'Danmarks Tekniske Universitet'),
(129591, 104019, 'de', 'name', 'DƤnemarks Technische UniversitƤt'),
(129592, 104019, 'en', 'name', 'Technical University of Denmark'),
(129593, 104020, 'en', 'name', 'Harris, Harris (United States)'),
(129594, 104021, 'en', 'name', 'John Paul II Catholic University of Lublin'),
(129595, 104021, 'pl', 'name', 'Katolicki Uniwersytet Lubelski Jana Pawła II'),
(129596, 104022, 'en', 'name', 'San Jose State University'),
(129597, 104022, 'es', 'name', 'Universidad Estatal de San JosƩ'),
(129598, 104022, 'fr', 'name', 'UniversitĆ© d''Ɖtat de san josĆ©'),
(129599, 104023, 'en', 'name', 'Shenzhen Technology University'),
(129600, 104023, 'zh', 'name', 'ę·±åœ³ęŠ€ęœÆå¤§å­¦'),
(129601, 104024, 'en', 'name', 'Ordu University'),
(129602, 104024, 'tr', 'name', 'Ordu Üniversitesi'),
(129603, 104025, 'en', 'name', 'New York State College of Veterinary Medicine'),
(129604, 104026, 'en', 'name', 'Institute for Fiscal Studies'),
(129605, 104027, 'pt', 'name', 'Hospital do Servidor PĆŗblico Estadual'),
(129606, 104028, 'en', 'name', 'McMurdo Dry Valleys Long Term Ecological Research'),
(129607, 104029, 'en', 'name', 'Capital College'),
(129608, 104030, 'en', 'name', 'Graduate School of Computer Science and Advanced Technologies'),
(129609, 104030, 'fr', 'name', 'Ɖcole Pour l''Informatique et les Techniques AvancĆ©es'),
(129610, 104030, 'oc', 'name', 'Ɖcole pour l''informatique et les techniques avancĆ©es'),
(129611, 104031, 'fr', 'name', 'UMS BioCore'),
(129612, 104032, 'en', 'name', 'University of New England'),
(129613, 104033, 'en', 'name', 'Yamaguchi Heisei Hospital'),
(129614, 104034, 'en', 'name', 'Guangdong Technion-Israel Institute of Technology'),
(129615, 104034, 'zh', 'name', 'å¹æäøœä»„č‰²åˆ—ē†å·„å­¦é™¢'),
(129616, 104035, 'it', 'name', 'Novartis Italia'),
(129617, 104035, 'no_lang_code', 'name', 'Novartis (Italy), Novartis Farma S.p.A.'),
(129618, 104036, 'en', 'name', 'Ocean University of China'),
(129619, 104036, 'zh', 'name', '中国海擋大学'),
(129620, 104037, 'cs', 'name', 'VysokÔ Ŕkola obchodní v Praze'),
(129621, 104037, 'en', 'name', 'University of Business in Prague'),
(129622, 104038, 'cs', 'name', 'VeterinƔrnƭ univerzita Brno'),
(129623, 104038, 'en', 'name', 'University of Veterinary Sciences Brno'),
(129624, 104039, 'fr', 'name', 'Institut de Recherche sur la Biologie de l''Insecte UMR 7261'),
(129625, 104040, 'en', 'name', 'Bridgewater Associates, Bridgewater Associates (United States)'),
(129626, 104041, 'en', 'name', 'Tommy''s'),
(129627, 104042, 'en', 'name', 'Health Data Research UK'),
(129628, 104043, 'en', 'name', 'Olds College'),
(129629, 104044, 'en', 'name', 'Candys Foundation'),
(129630, 104045, 'en', 'name', 'Applied Marketing'),
(129631, 104045, 'pt', 'name', 'Marketing Aplicado Lda, Marketing Aplicado Lda (Portugal)'),
(129632, 104046, 'de', 'name', 'Lamarr-Institut für Maschinelles Lernen und Künstliche Intelligenz'),
(129633, 104046, 'en', 'name', 'Lamarr Institute for Machine Learning and Artificial Intelligence'),
(129634, 104047, 'en', 'name', 'Xingzhi College Zhejiang Normal University'),
(129635, 104047, 'zh', 'name', 'ęµ™ę±ŸåøˆčŒƒå¤§å­¦č”ŒēŸ„å­¦é™¢'),
(129636, 104048, 'en', 'name', 'University of Canberra'),
(129637, 104049, 'en', 'name', 'Institute Paoli-Calmettes'),
(129638, 104049, 'fr', 'name', 'Institut Paoli-Calmettes'),
(129639, 104050, 'en', 'name', 'Chico Mendes Institute for Biodiversity Conservation'),
(129640, 104050, 'pt', 'name', 'Centro Nacional de Pesquisa e Conservação de Cavernas, Instituto Chico Mendes de Conservação da Biodiversidade'),
(129641, 104051, 'fr', 'name', 'Laboratoire LigƩrien de Linguistique'),
(129642, 104052, 'en', 'name', 'Arsi University'),
(129643, 104053, 'de', 'name', 'Forschungsinstitut für Anwendungsorientierte Wissensverarbeitung'),
(129644, 104054, 'fr', 'name', 'Laboratoire Informatique Paris Descartes'),
(129645, 104055, 'fr', 'name', 'Laboratoire de Recherche Translationnelle en Oncologie'),
(129646, 104056, 'en', 'name', 'French Foundation Centre'),
(129647, 104056, 'fr', 'name', 'Centre FranƧais des Fonds et Fondations'),
(129648, 104057, 'en', 'name', 'Institute of Integrative Medicine'),
(129649, 104057, 'pt', 'name', 'Instituto Medicina Integrativa (Portugal)'),
(129650, 104058, 'pt', 'name', 'Conselho Nacional de Educação'),
(129651, 104059, 'en', 'name', 'Vietnam Women''s Academy'),
(129652, 104059, 'vi', 'name', 'Hį»c viện PhỄ nữ Việt Nam'),
(129653, 104060, 'en', 'name', 'Yavapai College'),
(129654, 104061, 'en', 'name', 'Leonardo da Vinci Engineering School'),
(129655, 104061, 'fr', 'name', 'Ecole SupƩrieure d''IngƩnieurs LƩonard de Vinci'),
(129656, 104062, 'fr', 'name', 'Laboratoire AmiƩnois de MathƩmatique Fondamentale et AppliquƩe'),
(129657, 104063, 'en', 'name', 'Roy Rosenzweig Center for History and New Media'),
(129658, 104064, 'en', 'name', 'Obafemi Awolowo University'),
(129659, 104064, 'yo', 'name', 'YunifĆ”sĆ­tƬ ỌbĆ”fẹ́mi Awólį»Ģwį»Ģ€'),
(129660, 104065, 'en', 'name', 'Xingtai Medical College'),
(129661, 104065, 'zh', 'name', '邢台医学院'),
(129662, 104066, 'en', 'name', 'Copenhagen Business School'),
(129663, 104067, 'en', 'name', 'Centre for Psychiatry and Neuroscience'),
(129664, 104068, 'no_lang_code', 'name', 'Anglian Water Services (United Kingdom)'),
(129665, 104069, 'fr', 'name', 'Institut Pasteur de Nouvelle CalƩdonie'),
(129666, 104070, 'en', 'name', 'CCCC Comprehensive Planning and Design Institute Co., Ltd., CCCC Comprehensive Planning and Design Institute Co., Ltd. (China)'),
(129667, 104070, 'zh', 'name', 'äø­äŗ¤ē»¼åˆč§„åˆ’č®¾č®”é™¢ęœ‰é™å…¬åø'),
(129668, 104071, 'en', 'name', 'Institute of Astrophysics La Plata'),
(129669, 104071, 'es', 'name', 'Instituto de AstrofĆ­sica de La Plata'),
(129670, 104072, 'fr', 'name', 'Institut de Biologie Structurale'),
(129671, 104073, 'en', 'name', 'Technological University Dublin'),
(129672, 104073, 'ga', 'name', 'Ollscoil TeicneolaĆ­ochta Bhaile Atha Cliath'),
(129673, 104074, 'fr', 'name', 'Institut Pasteur Korea'),
(129674, 104075, 'en', 'name', 'Northeastern University'),
(129675, 104076, 'en', 'name', 'Federal University Wukari'),
(129676, 104077, 'en', 'name', 'Microenvironment, lymphocyte development and homing'),
(129677, 104077, 'fr', 'name', 'Ecotaxie, Microenvironnement et dƩveloppement lymphocytaire'),
(129678, 104078, 'en', 'name', 'Netherlands Institute for Social Research'),
(129679, 104079, 'en', 'name', 'Mininglamp, Mininglamp (China)'),
(129680, 104079, 'zh', 'name', 'åŒ—äŗ¬ę˜Žē•„ę˜­č¾‰ē§‘ęŠ€ęœ‰é™å…¬åø'),
(129681, 104080, 'en', 'name', 'Irish Centre for High-End Computing'),
(129682, 104081, 'en', 'name', 'Nuclear Dynamics'),
(129683, 104081, 'fr', 'name', 'Dynamique du noyau'),
(129684, 104082, 'pt', 'name', 'Centro de Informação de Biotecnologia'),
(129685, 104083, 'en', 'name', 'Christian University of Applied Sciences'),
(129686, 104083, 'nl', 'name', 'Christelijke Hogeschool Ede'),
(129687, 104084, 'fr', 'name', 'DƩlƩgation Paris B'),
(129688, 104085, 'en', 'name', 'Institute for Wildlife Studies'),
(129689, 104086, 'en', 'name', 'French Development Agency'),
(129690, 104086, 'fr', 'name', 'Agence franƧaise de dƩveloppement'),
(129691, 104087, 'en', 'name', 'Beijing Academy of Agricultural and Forestry Sciences'),
(129692, 104087, 'zh', 'name', 'åŒ—äŗ¬åø‚å†œęž—ē§‘å­¦é™¢'),
(129693, 104088, 'en', 'name', 'Sakarya University'),
(129694, 104088, 'tr', 'name', 'Sakarya Üniversitesi'),
(129695, 104089, 'en', 'name', 'Regent''s University London'),
(129696, 104090, 'en', 'name', 'Oaklands College'),
(129697, 104091, 'en', 'name', 'The University of Texas MD Anderson Cancer Center'),
(129698, 104092, 'cs', 'name', 'TechnologickÔ agentura České republiky'),
(129699, 104092, 'en', 'name', 'Technology Agency of the Czech Republic'),
(129700, 104093, 'en', 'name', 'The Valencian Institute of Economic Research'),
(129701, 104093, 'es', 'name', 'Instituto Valenciano de Investigaciones Económicas'),
(129702, 104094, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī›ĪµĻ…ĪŗĻ‰ĻƒĪÆĪ±Ļ‚'),
(129703, 104094, 'en', 'name', 'University of Nicosia'),
(129704, 104095, 'en', 'name', 'Xi''an University of Architecture and Technology');
INSERT INTO `ror_settings` VALUES
(129705, 104095, 'zh', 'name', 'č„æå®‰å»ŗē­‘ē§‘ęŠ€å¤§å­¦'),
(129706, 104096, 'cy', 'name', 'Prifysgol Brookes Rhydychen'),
(129707, 104096, 'en', 'name', 'Oxford Brookes University'),
(129708, 104097, 'en', 'name', 'Kafkas University'),
(129709, 104097, 'tr', 'name', 'Kafkas Üniversitesi'),
(129710, 104098, 'en', 'name', 'Paris Fire Brigade'),
(129711, 104098, 'fr', 'name', 'Brigade des Sapeurs Pompiers de Paris'),
(129712, 104099, 'en', 'name', 'Cambridge University Hospitals NHS Foundation Trust'),
(129713, 104100, 'en', 'name', 'Central University of Himachal Pradesh'),
(129714, 104101, 'en', 'name', 'Glasgow Kelvin College'),
(129715, 104102, 'en', 'name', 'University of Belgrade – Faculty of Physics'),
(129716, 104102, 'sr', 'name', 'Univerzitet u Beogradu – Fizički fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Физички Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(129717, 104103, 'en', 'name', 'Cloudwalk, Cloudwalk (China)'),
(129718, 104103, 'zh', 'name', 'äŗ‘ä»Žē§‘ęŠ€é›†å›¢č‚”ä»½ęœ‰é™å…¬åø'),
(129719, 104104, 'fr', 'name', 'Relais d''information sur les sciences de la cognition'),
(129720, 104105, 'fr', 'name', 'Nanosciences et Innovation pour les MatĆ©riaux, la BiomĆ©decine et l''Ɖnergie'),
(129721, 104106, 'cy', 'name', 'Prifysgol Loughborough'),
(129722, 104106, 'en', 'name', 'Loughborough University'),
(129723, 104107, 'en', 'name', 'Chongqing University of Technology'),
(129724, 104107, 'zh', 'name', 'é‡åŗ†ē†å·„å¤§å­¦'),
(129725, 104108, 'fr', 'name', 'Centre de Recherche Cardio-Thoracique de Bordeaux'),
(129726, 104109, 'en', 'name', 'Sophia Agrobiotech Institute'),
(129727, 104109, 'fr', 'name', 'Institut Sophia Agrobiotech'),
(129728, 104110, 'en', 'name', 'National Center for Infectious Diseases'),
(129729, 104111, 'fr', 'name', 'Haute Ɖcole LĆ©onard de Vinci'),
(129730, 104112, 'en', 'name', 'Tulane University'),
(129731, 104113, 'fr', 'name', 'MARGE'),
(129732, 104114, 'en', 'name', 'Snowflake Inc., Snowflake Inc. (United States)'),
(129733, 104115, 'en', 'name', 'Laboratory of Catalysis and Solid State Chemistry'),
(129734, 104115, 'fr', 'name', 'UnitƩ de catalyse et de chimie du solide de Lille'),
(129735, 104116, 'cy', 'name', 'SOAS, Prifysgol Llundain'),
(129736, 104116, 'en', 'name', 'SOAS University of London'),
(129737, 104117, 'en', 'name', 'Nanfang College Guangzhou'),
(129738, 104117, 'zh', 'name', 'å¹æå·žå—ę–¹å­¦é™¢'),
(129739, 104118, 'fr', 'name', 'Sciences pour L’Œnologie'),
(129740, 104119, 'es', 'name', 'Instituto Tecnológico de San Luis Potosí'),
(129741, 104120, 'en', 'name', 'Cell Biology and Cancer'),
(129742, 104120, 'fr', 'name', 'Biologie cellulaire et Cancer'),
(129743, 104121, 'en', 'name', 'Cirencester College'),
(129744, 104122, 'cy', 'name', 'Prifysgol Gorllewin yr Alban'),
(129745, 104122, 'en', 'name', 'University of the West of Scotland'),
(129746, 104123, 'en', 'name', 'University of Humanistic Studies'),
(129747, 104123, 'nl', 'name', 'Universiteit voor Humanistiek'),
(129748, 104124, 'en', 'name', 'TeX Users Group'),
(129749, 104125, 'en', 'name', 'Agricultural Sciences and Natural Resources University of Khuzestan'),
(129750, 104126, 'en', 'name', 'University of Denver'),
(129751, 104126, 'es', 'name', 'Universidad de Denver'),
(129752, 104126, 'fr', 'name', 'UniversitƩ de denver'),
(129753, 104127, 'fr', 'name', 'Institut SupƩrieur de Gestion de Tunis'),
(129754, 104128, 'fr', 'name', 'Dynamiques et Ʃcologie des paysages agriforestiers'),
(129755, 104129, 'pl', 'name', 'Instytut Biologii Doświadczalnej im. Marcelego Nenckiego'),
(129756, 104130, 'id', 'name', 'Universitas Muhammadiyah Kalimantan Timur'),
(129757, 104131, 'fr', 'name', 'Agence de Mutualisation des UniversitƩs et Etablissements'),
(129758, 104132, 'fr', 'name', 'Observatoire pour la Conservation de la MƩgafaune Marine'),
(129759, 104133, 'fr', 'name', 'Institut thƩmatique SantƩ Publique'),
(129760, 104134, 'en', 'name', 'LEAPS'),
(129761, 104135, 'no_lang_code', 'name', 'Shell (United States)'),
(129762, 104136, 'fr', 'name', 'Laboratoire d''Automatique, GƩnie Informatique et Signal'),
(129763, 104137, 'en', 'name', 'Paris 8 University'),
(129764, 104137, 'fr', 'name', 'UniversitƩ Paris 8'),
(129765, 104138, 'bn', 'name', 'ą¦†ą¦¹ą¦øą¦¾ą¦Øą¦‰ą¦²ą§ą¦²ą¦¾ą¦¹ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(129766, 104138, 'en', 'name', 'Ahsanullah University of Science and Technology'),
(129767, 104139, 'cs', 'name', 'Geologický Ćŗstav AV ČR, Geologický Ćŗstav AV ČR, v. v. i., Geologický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(129768, 104139, 'en', 'name', 'Czech Academy of Sciences, Institute of Geology'),
(129769, 104140, 'no_lang_code', 'name', 'Bioland e.V.'),
(129770, 104141, 'en', 'name', 'Fairleigh Dickinson University'),
(129771, 104142, 'en', 'name', 'The Wistar Institute'),
(129772, 104143, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© السلطان Ł‚Ų§ŲØŁˆŲ³'),
(129773, 104143, 'en', 'name', 'Sultan Qaboos University'),
(129774, 104144, 'en', 'name', 'Library and Information Centre of the Hungarian Academy of Sciences'),
(129775, 104144, 'hu', 'name', 'Magyar TudomÔnyos Akadémia KönyvtÔr és InformÔciós Központ'),
(129776, 104145, 'fr', 'name', 'Direction GƩnƩrale de l''Armement'),
(129777, 104146, 'fr', 'name', 'Campus France'),
(129778, 104147, 'en', 'name', 'American Hospital of Paris'),
(129779, 104147, 'fr', 'name', 'HƓpital amƩricain de paris'),
(129780, 104148, 'en', 'name', 'Institute of Public Administration'),
(129781, 104148, 'ga', 'name', 'An Foras RiarachƔin'),
(129782, 104149, 'en', 'name', 'Himalayan College of Agricultural Sciences and Technology'),
(129783, 104150, 'en', 'name', 'Karabük University'),
(129784, 104150, 'tr', 'name', 'Karabük Üniversitesi'),
(129785, 104151, 'fr', 'name', 'ArchĆ©ologies et Sciences de l’AntiquitĆ©'),
(129786, 104152, 'en', 'name', 'Institute of Geography of the Slovak Academy of Sciences'),
(129787, 104152, 'sk', 'name', 'Geografický Ústav Slovenskej akadémie vied'),
(129788, 104153, 'en', 'name', 'National Institute for Innovation in Manufacturing Biopharmaceuticals'),
(129789, 104154, 'en', 'name', 'Kean University'),
(129790, 104155, 'en', 'name', 'Shihezi University'),
(129791, 104155, 'zh', 'name', '石河子大学'),
(129792, 104156, 'en', 'name', 'State of Florida'),
(129793, 104157, 'en', 'name', 'Virginia Foundation for the Humanities'),
(129794, 104158, 'fr', 'name', 'ESIEE Paris'),
(129795, 104159, 'id', 'name', 'Sekolah Tinggi Ilmu Kesehatan Kendal'),
(129796, 104160, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الجلالة'),
(129797, 104160, 'en', 'name', 'Galala University'),
(129798, 104161, 'fr', 'name', 'BioCampus Montpellier'),
(129799, 104162, 'en', 'name', 'Humans and management in society'),
(129800, 104162, 'fr', 'name', 'Hommes et management en sociƩtƩ'),
(129801, 104163, 'fr', 'name', 'Laboratoire AmpĆØre'),
(129802, 104164, 'en', 'name', 'Shanghai Jian Qiao University'),
(129803, 104164, 'zh', 'name', 'äøŠęµ·å»ŗę”„å­¦é™¢'),
(129804, 104165, 'en', 'name', 'University of Ss. Cyril and Methodius in Trnava'),
(129805, 104165, 'sk', 'name', 'Univerzita sv. Cyrila a Metoda v Trnave'),
(129806, 104166, 'de', 'name', 'Rheinisch-WestfƤlische Technische Hochschule Aachen'),
(129807, 104166, 'en', 'name', 'RWTH Aachen University'),
(129808, 104167, 'en', 'name', 'Communication Molecules and Adapation of Micro-organisms'),
(129809, 104167, 'fr', 'name', 'MolƩcules de Communication et Adaptation des Micro-organismes'),
(129810, 104168, 'en', 'name', 'Beijing Information Science & Technology University'),
(129811, 104168, 'zh', 'name', 'åŒ—äŗ¬äæ”ęÆē§‘ęŠ€å¤§å­¦'),
(129812, 104169, 'en', 'name', 'Ministry of National Education'),
(129813, 104169, 'fr', 'name', 'Ministere de l''Education Nationale'),
(129814, 104170, 'en', 'name', 'Munich Center for Quantum Science and Technology'),
(129815, 104171, 'fr', 'name', 'Observatoire astronomique de Strasbourg'),
(129816, 104172, 'en', 'name', 'Kharkiv Institute of Medicine and Biomedical Sciences'),
(129817, 104172, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ меГицини та біомеГичних наук'),
(129818, 104173, 'en', 'name', 'King''s Fertility'),
(129819, 104174, 'en', 'name', 'Fish Physiology and Genomics Institute'),
(129820, 104174, 'fr', 'name', 'Laboratoire de Physiologie et GƩnomique des Poissons'),
(129821, 104175, 'en', 'name', 'DePaul University'),
(129822, 104176, 'en', 'name', 'National Center for Post Traumatic Stress Disorder'),
(129823, 104177, 'en', 'name', 'Beijing Forestry University'),
(129824, 104177, 'zh', 'name', 'åŒ—äŗ¬ęž—äøšå¤§å­¦'),
(129825, 104178, 'en', 'name', 'Baku Eurasian University'),
(129826, 104179, 'en', 'name', 'Oenology Research Unit'),
(129827, 104179, 'fr', 'name', 'Unite de Recherche Œnologie'),
(129828, 104180, 'fr', 'name', 'Equipe de recherche de Lyon en Sciences de l''Information et de la Communication'),
(129829, 104181, 'en', 'name', 'National Institute of Oceanography and Applied Geophysics'),
(129830, 104181, 'it', 'name', 'Istituto Nazionale di Oceanografia e di Geofisica Sperimentale'),
(129831, 104182, 'es', 'name', 'Universidad de las Artes'),
(129832, 104183, 'bn', 'name', 'খুলনা ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(129833, 104183, 'en', 'name', 'Khulna University of Engineering & Technology, Khulna University of Engineering and Technology'),
(129834, 104184, 'en', 'name', 'University of Technology of CompiĆØgne'),
(129835, 104184, 'fr', 'name', 'Université de Technologie de Compiègne'),
(129836, 104185, 'no_lang_code', 'name', 'Textron Systems (United Kingdom)'),
(129837, 104186, 'de', 'name', 'Alfried Krupp von Bohlen und Halbach-Stiftung'),
(129838, 104186, 'en', 'name', 'Alfried Krupp von Bohlen und Halbach Foundation'),
(129839, 104187, 'fr', 'name', 'UnitĆ© Ɖvolution, Ɖcologie et PalĆ©ontologie'),
(129840, 104188, 'en', 'name', 'Vancouver Community College'),
(129841, 104189, 'sr', 'name', 'DruŔtvo lekara Vojvodine'),
(129842, 104190, 'en', 'name', 'Anthropology and History of the Ancient World'),
(129843, 104190, 'fr', 'name', 'Anthropologie et Histoire des Mondes Antiques'),
(129844, 104191, 'fr', 'name', 'Institut Pasteur du Maroc'),
(129845, 104192, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų“Ł‡ŪŒŲÆ ŁŁ‚ŪŒŁ‡ŪŒ'),
(129846, 104192, 'no_lang_code', 'name', 'Faghihi Hospital'),
(129847, 104193, 'en', 'name', 'University of Massachusetts Boston'),
(129848, 104193, 'es', 'name', 'Universidad de Massachusetts Boston'),
(129849, 104193, 'fr', 'name', 'UniversitƩ du Massachusetts'),
(129850, 104194, 'fr', 'name', 'INFRANALYTICS'),
(129851, 104195, 'bg', 'name', 'Kompleksen Onkologichen Tsentar – Ruse, Комплексен ŠžŠ½ŠŗŠ¾Š»Š¾Š³ŠøŃ‡ŠµŠ½ Š¦ŠµŠ½Ń‚ŃŠŃ€ Русе'),
(129852, 104195, 'en', 'name', 'COC Ruse, Complex Oncology Center - Ruse'),
(129853, 104196, 'en', 'name', 'CoStar Group, CoStar Group (United States)'),
(129854, 104197, 'en', 'name', 'Zhengzhou University'),
(129855, 104197, 'zh', 'name', '郑州大学'),
(129856, 104198, 'en', 'name', 'Quantum Source Labs Ltd, Quantum Source Labs Ltd (Israel)'),
(129857, 104199, 'en', 'name', 'Shanghai Marine Meteorological Center'),
(129858, 104199, 'zh', 'name', 'äøŠęµ·ęµ·ę“‹äø­åæƒę°”č±”å°'),
(129859, 104200, 'en', 'name', 'Bard College'),
(129860, 104201, 'en', 'name', 'NSWC Dahlgren Division'),
(129861, 104202, 'en', 'name', 'Chemistry And InterdisciplinaritƩ, Synthesis, Analyze, Modeling'),
(129862, 104202, 'fr', 'name', 'Chimie et Interdisciplinarité, Synthèse, Analyse, Modélisation'),
(129863, 104203, 'en', 'name', 'Furman University'),
(129864, 104204, 'en', 'name', 'KLS Gogte Institute of Technology'),
(129865, 104205, 'bn', 'name', 'ą¦œą¦¾ą¦¹ą¦¾ą¦™ą§ą¦—ą§€ą¦°ą¦Øą¦—ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(129866, 104205, 'en', 'name', 'Jahangirnagar University'),
(129867, 104206, 'en', 'name', 'Judson College'),
(129868, 104207, 'en', 'name', 'National Film and Television School'),
(129869, 104208, 'no_lang_code', 'name', 'Qilimanjaro Quantum Tech, Qilimanjaro Quantum Tech (Spain)'),
(129870, 104209, 'en', 'name', 'Archives of American Art'),
(129871, 104210, 'en', 'name', 'Arizona Western College'),
(129872, 104211, 'cs', 'name', 'NƔrodnƭ muzeum'),
(129873, 104211, 'en', 'name', 'National Museum'),
(129874, 104212, 'en', 'name', 'Brooklyn Philharmonic'),
(129875, 104213, 'en', 'name', 'Shanghai Maritime University'),
(129876, 104213, 'zh', 'name', 'äøŠęµ·ęµ·äŗ‹å¤§å­¦'),
(129877, 104214, 'en', 'name', 'The Fund for Science, Technology and Innovation'),
(129878, 104215, 'en', 'name', 'Flinders Microscopy and Microanalysis'),
(129879, 104216, 'en', 'name', 'Cancer Thematics Institute'),
(129880, 104216, 'fr', 'name', 'Institut ThƩmatique Cancer'),
(129881, 104217, 'fr', 'name', 'Cyceron'),
(129882, 104218, 'cy', 'name', 'Prifysgol John Moores, Lerpwl'),
(129883, 104218, 'en', 'name', 'Liverpool John Moores University'),
(129884, 104219, 'en', 'name', 'Nanjing Audit University'),
(129885, 104219, 'zh', 'name', 'å—äŗ¬å®”č®”å­¦é™¢'),
(129886, 104220, 'de', 'name', 'Fachklinik für Neurologie Dietenbronn'),
(129887, 104221, 'en', 'name', 'Laboratory of Eukaryotic Molecular Biology'),
(129888, 104221, 'fr', 'name', 'Laboratoire de Biologie MolƩculaire des Eucaryotes'),
(129889, 104222, 'en', 'name', 'University of Colima'),
(129890, 104222, 'es', 'name', 'Universidad de Colima'),
(129891, 104223, 'en', 'name', 'DIII-D National Fusion Facility'),
(129892, 104224, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ© - ŲµŲØŲ±Ų§ŲŖŲ©'),
(129893, 104224, 'en', 'name', 'Higher Institute of Science and Technology Sabratha'),
(129894, 104225, 'en', 'name', 'National Gendarmerie'),
(129895, 104225, 'fr', 'name', 'Gendarmerie Nationale'),
(129896, 104226, 'en', 'name', 'General Tire, General Tire (United States)'),
(129897, 104227, 'en', 'name', 'Abt Global, Abt Global (United States)'),
(129898, 104228, 'fr', 'name', 'Centre Franco-Ɖgyptien d’Étude des Temples de Karnak'),
(129899, 104229, 'en', 'name', 'NSWC Philadelphia Division'),
(129900, 104230, 'fr', 'name', 'Institut la Personne en mƩdecine'),
(129901, 104231, 'en', 'name', 'Evangelical Presbyterian College of Education, Bimbilla'),
(129902, 104231, 'ha', 'name', 'Kwalejin Ilimi ta Presbyterian, Bimbilla'),
(129903, 104232, 'en', 'name', 'Jožef Stefan Institute'),
(129904, 104232, 'sl', 'name', 'Institut Jožef Stefan'),
(129905, 104233, 'fr', 'name', 'Maison des Sciences de l''Homme Paris Nord'),
(129906, 104234, 'pt', 'name', 'Madan Parque'),
(129907, 104235, 'fr', 'name', 'ModĆØles et simulations pour l''Architecture et le Patrimoine'),
(129908, 104236, 'en', 'name', 'Prestige Institute of Management and Research, Bhopal'),
(129909, 104237, 'en', 'name', 'Mampong Technical College of Education'),
(129910, 104238, 'en', 'name', 'Laboratory of Excellence in Ion Channel Science and Therapeutics'),
(129911, 104238, 'fr', 'name', 'Laboratoire d''Excellence Canaux Ioniques d''Intérêt Thérapeutique'),
(129912, 104239, 'fr', 'name', 'Institut d''ethnologie mƩditerranƩenne europƩenne et comparative'),
(129913, 104240, 'en', 'name', 'National Institute of Chemistry'),
(129914, 104241, 'en', 'name', 'University of Maine System'),
(129915, 104242, 'ca', 'name', 'Universitat de Còrsega Pasquale Paoli'),
(129916, 104242, 'en', 'name', 'University of Corsica Pascal Paoli'),
(129917, 104242, 'fr', 'name', 'UniversitƩ de Corse Pascal Paoli'),
(129918, 104243, 'fr', 'name', 'Centre de RadiofrƩquences, Optique et Micro-nanoƩlectronique des Alpes'),
(129919, 104244, 'fr', 'name', 'Centre Camille Jullian'),
(129920, 104245, 'en', 'name', 'Imaging and Therapeutical Strategies in Cerebral and Tumoral Pathologies'),
(129921, 104245, 'fr', 'name', 'Imagerie et StratƩgies ThƩrapeutiques des Pathologies CƩrƩbrales et Tumorales'),
(129922, 104246, 'pt', 'name', 'Instituto PolitƩcnico Jean Piaget do Sul'),
(129923, 104247, 'fr', 'name', 'Microscopies, imageries et ressources analytiques en rƩgion Centre-Val de Loire'),
(129924, 104248, 'en', 'name', 'IFOAM Organics Europe'),
(129925, 104249, 'en', 'name', 'Cohere, Cohere (Canada)'),
(129926, 104250, 'en', 'name', 'Indiana University of Pennsylvania'),
(129927, 104250, 'es', 'name', 'Universidad de Pensilvania en Indiana'),
(129928, 104251, 'pt', 'name', 'Escola Superior de SaĆŗde Jean Piaget de Viseu'),
(129929, 104252, 'en', 'name', 'Union of Hospitals for Purchasing'),
(129930, 104252, 'fr', 'name', 'Union des HƓpitaux pour les Achats'),
(129931, 104253, 'no_lang_code', 'name', 'Seiko (United States)'),
(129932, 104254, 'fr', 'name', 'Institut de Thermique, MƩcanique, MatƩriaux'),
(129933, 104255, 'en', 'name', 'Yakult Bio-Science Foundation, Yakult Bio-Science Foundation (Japan)'),
(129934, 104255, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ¤ć‚Æćƒ«ćƒˆćƒ»ćƒć‚¤ć‚Ŗć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶č²”å›£'),
(129935, 104256, 'en', 'name', 'T. Rowe Price Group, T. Rowe Price Group (United States)'),
(129936, 104257, 'en', 'name', 'LIGO Scientific Collaboration'),
(129937, 104258, 'en', 'name', 'Suzhou Vocational Health College'),
(129938, 104258, 'zh', 'name', 'č‹å·žčŒäøšå„åŗ·å­¦é™¢'),
(129939, 104259, 'es', 'name', 'Universidad Tecnológica del Valle del Mezquital'),
(129940, 104260, 'no_lang_code', 'name', 'Teledyne FLIR (Belgium)'),
(129941, 104261, 'en', 'name', 'Tompkins Cortland Community College'),
(129942, 104262, 'fr', 'name', 'Lettres et Civilisations EtrangĆØres'),
(129943, 104263, 'es', 'name', 'Asociación Colombiana de Cirugía de la Mano'),
(129944, 104264, 'fr', 'name', 'Ɖcologie et Biologie des Interactions'),
(129945, 104265, 'en', 'name', 'Tokyo Medical and Dental University'),
(129946, 104265, 'ja', 'name', 'ę±äŗ¬åŒ»ē§‘ę­Æē§‘å¤§å­¦'),
(129947, 104266, 'en', 'name', 'Brooklyn Public Library'),
(129948, 104267, 'en', 'name', 'University of Skƶvde'),
(129949, 104267, 'sv', 'name', 'Hƶgskolan i Skƶvde'),
(129950, 104268, 'fr', 'name', 'Fonctionnement et dysfonctionnement cognitifs: les âges de la vie'),
(129951, 104269, 'en', 'name', 'Station Marine d''Endoume'),
(129952, 104270, 'en', 'name', 'Centre for Infection, Immunity and Inflammation'),
(129953, 104270, 'fr', 'name', 'Centre de l’infection, de l’immunitĆ© et de l’inflammation'),
(129954, 104271, 'en', 'name', 'North Carolina Central University'),
(129955, 104271, 'fr', 'name', 'UniversitƩ centrale de caroline du nord'),
(129956, 104272, 'en', 'name', 'California Maritime Academy'),
(129957, 104273, 'fr', 'name', 'Centre de Recherche Magellan'),
(129958, 104274, 'en', 'name', 'Dublin Institute For Advanced Studies'),
(129959, 104274, 'ga', 'name', 'Institiúid Ard-Léinn Bhaile Átha Cliath'),
(129960, 104275, 'en', 'name', 'International Society for Biocuration'),
(129961, 104276, 'en', 'name', 'South Eastern Finland University of Applied Sciences'),
(129962, 104276, 'fi', 'name', 'Kaakkois Suomen Ammattikorkeakoulu'),
(129963, 104277, 'it', 'name', 'Istituto Pasteur'),
(129964, 104278, 'de', 'name', 'Max-Planck-Institut für Biogeochemie'),
(129965, 104278, 'en', 'name', 'Max Planck Institute for Biogeochemistry'),
(129966, 104279, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁˆŲŖ الجامعة'),
(129967, 104279, 'en', 'name', 'Kut University College'),
(129968, 104280, 'en', 'name', 'Shandong University of Traditional Chinese Medicine'),
(129969, 104280, 'zh', 'name', 'å±±äøœäø­åŒ»čÆå¤§å­¦'),
(129970, 104281, 'cy', 'name', 'Sefydliad Celf Courtauld'),
(129971, 104281, 'en', 'name', 'Courtauld Institute of Art'),
(129972, 104282, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© دراية'),
(129973, 104282, 'en', 'name', 'Deraya University'),
(129974, 104283, 'en', 'name', 'Physiology and Biotechnology of Algae laboratory'),
(129975, 104283, 'fr', 'name', 'Laboratoire Physiologie Biotechnologie des Algues'),
(129976, 104284, 'de', 'name', 'Bundesverband RIAS e.V., Bundesverband der Recherche- und Informationsstellen Antisemitismus'),
(129977, 104285, 'id', 'name', 'Universitas Muhammadiyah Kuningan'),
(129978, 104286, 'en', 'name', 'East Berkshire College'),
(129979, 104287, 'fr', 'name', 'Institut d’EpidĆ©miologie Neurologique et de Neurologie Tropicale'),
(129980, 104288, 'fr', 'name', 'Institut Pasteur d''AlgƩrie'),
(129981, 104289, 'fr', 'name', 'Centre de Physique ThƩorique'),
(129982, 104290, 'fr', 'name', 'UniversitƩ Paris Dauphine-PSL'),
(129983, 104291, 'fr', 'name', 'Genetique Reproduction and Developpement, GƩnƩtique Reproduction et DƩveloppement'),
(129984, 104292, 'en', 'name', 'CIHR Skin Research Training Centre'),
(129985, 104293, 'en', 'name', 'Membrane dynamics in and outside the cell'),
(129986, 104294, 'ca', 'name', 'Universitat Autònoma de Barcelona'),
(129987, 104294, 'en', 'name', 'Autonomous University of Barcelona'),
(129988, 104294, 'es', 'name', 'Universidad Autónoma de Barcelona'),
(129989, 104294, 'eu', 'name', 'Bartzelonako Unibertsitate Autonomoa'),
(129990, 104294, 'gl', 'name', 'Universidade Autónoma de Barcelona'),
(129991, 104295, 'en', 'name', 'T. Rowe Price Program for Charitable Giving'),
(129992, 104296, 'no_lang_code', 'name', 'GƉANT'),
(129993, 104297, 'en', 'name', 'Montana University System'),
(129994, 104297, 'es', 'name', 'Sistema Universitario de Montana'),
(129995, 104298, 'fr', 'name', 'Plateforme de chimie biologique intƩgrative de Strasbourg'),
(129996, 104299, 'en', 'name', 'Institute of Spain'),
(129997, 104299, 'es', 'name', 'Instituto de EspaƱa'),
(129998, 104300, 'el', 'name', 'ĪŠĪ“ĻĻ…Ī¼Ī± Τεχνολογίας και ĪˆĻĪµĻ…Ī½Ī±Ļ‚'),
(129999, 104300, 'en', 'name', 'Foundation for Research and Technology Hellas'),
(130000, 104301, 'en', 'name', 'American University'),
(130001, 104301, 'es', 'name', 'Universidad Americana'),
(130002, 104302, 'en', 'name', 'Aon, Aon (United Kingdom)'),
(130003, 104303, 'fr', 'name', 'Centre d’études des Mondes Russe, Caucasien et Centre-EuropĆ©en'),
(130004, 104304, 'en', 'name', 'Netherlands Environmental Assessment Agency'),
(130005, 104304, 'nl', 'name', 'Planbureau voor de Leefomgeving'),
(130006, 104305, 'en', 'name', 'Normandy Business School'),
(130007, 104305, 'fr', 'name', 'Ɖcole de management de Normandie'),
(130008, 104306, 'fr', 'name', 'Nutrition, DiabĆØte et Cerveau'),
(130009, 104307, 'en', 'name', 'Magna Graecia University'),
(130010, 104307, 'it', 'name', 'UniversitƠ degli studi Magna GrƦcia di Catanzaro'),
(130011, 104308, 'fr', 'name', 'DƩlƩgation RƩgionale Auvergne-RhƓne-Alpes'),
(130012, 104309, 'en', 'name', 'South China University of Technology'),
(130013, 104309, 'zh', 'name', 'åŽå—ē†å·„å¤§å­¦'),
(130014, 104310, 'fr', 'name', 'Institut Terre & Environnement de Strasbourg'),
(130015, 104311, 'en', 'name', 'Royal College of Physicians'),
(130016, 104312, 'no_lang_code', 'name', 'Signify (Netherlands)'),
(130017, 104313, 'fr', 'name', 'SystĆØmes MolĆ©culaires et nanoMatĆ©riaux pour l''Ɖnergie et la SantĆ©'),
(130018, 104314, 'es', 'name', 'Universidad PolitƩcnica de la Zona Metropolitana de Guadalajara'),
(130019, 104315, 'fr', 'name', 'Plateforme Technologique d''Innovation BiomƩdicale'),
(130020, 104316, 'en', 'name', 'Crohn''s in Childhood Research Association'),
(130021, 104317, 'en', 'name', 'Arts University Bournemouth'),
(130022, 104318, 'en', 'name', 'Manisa Celal Bayar University'),
(130023, 104318, 'tr', 'name', 'Manisa Celal Bayar Üniversitesi'),
(130024, 104319, 'en', 'name', 'Novartis Institutes for BioMedical Research'),
(130025, 104320, 'en', 'name', 'Genesee Community College'),
(130026, 104321, 'en', 'name', 'Thai Nguyen University of Medicine and Pharmacy'),
(130027, 104321, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y - Dược, ĐẔi hį»c ThĆ”i NguyĆŖn'),
(130028, 104322, 'en', 'name', 'Rangpur Medical College'),
(130029, 104323, 'pt', 'name', 'Centro UniversitÔrio Católica de QuixadÔ'),
(130030, 104324, 'fr', 'name', 'Structure fƩdƩrative de recherche Necker'),
(130031, 104325, 'en', 'name', 'AndrƩ Revuz Didactics Laboratory'),
(130032, 104325, 'fr', 'name', 'Laboratoire de Didactique AndrƩ Revuz'),
(130033, 104326, 'en', 'name', 'Advanced Drug Delivery Systems'),
(130034, 104326, 'fr', 'name', 'Systèmes avancés de délivrance de principes actifs'),
(130035, 104327, 'en', 'name', 'Ministry of Power'),
(130036, 104327, 'hi', 'name', 'ą¤µą¤æą¤¦ą„ą¤Æą„ą¤¤ ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(130037, 104328, 'en', 'name', 'Institute for Road Safety Research'),
(130038, 104328, 'nl', 'name', 'Stichting Wetenschappelijk Onderzoek Verkeersveiligheid'),
(130039, 104329, 'en', 'name', 'Microbial Ecology'),
(130040, 104329, 'fr', 'name', 'Ecologie Microbienne Lyon'),
(130041, 104330, 'en', 'name', 'Exelon, Exelon (United States)'),
(130042, 104331, 'en', 'name', 'European Space Operations Centre'),
(130043, 104332, 'de', 'name', 'Universität für Musik und darstellende Kunst Graz'),
(130044, 104332, 'en', 'name', 'University of Music and Performing Arts Graz'),
(130045, 104333, 'en', 'name', 'KTO Karatay University'),
(130046, 104333, 'tr', 'name', 'KTO Karatay Üniversitesi'),
(130047, 104334, 'fr', 'name', 'Histoire des ThƩories Linguistiques'),
(130048, 104335, 'en', 'name', 'Guangzhou Huashang College'),
(130049, 104335, 'zh', 'name', 'å¹æå·žåŽå•†å­¦é™¢'),
(130050, 104336, 'en', 'name', 'Northern College'),
(130051, 104337, 'no_lang_code', 'name', 'Siemens Healthcare (United States)'),
(130052, 104338, 'en', 'name', 'Software Engineering Institute of Guangzhou'),
(130053, 104338, 'zh', 'name', 'å¹æå·žč½Æä»¶å­¦é™¢'),
(130054, 104339, 'en', 'name', 'EuroMov Digital Health in Motion'),
(130055, 104340, 'en', 'name', 'Luxembourg Centre for Contemporary and Digital History'),
(130056, 104341, 'en', 'name', 'New Hampshire Humanities Council'),
(130057, 104342, 'en', 'name', 'IMRA Europe'),
(130058, 104342, 'no_lang_code', 'name', 'IMRA Europe SAS'),
(130059, 104343, 'en', 'name', 'University of Belgrade - Faculty of Mechanical Engineering'),
(130060, 104343, 'sr', 'name', 'Univerzitet u Beogradu - MaÅ”inski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ - Машински Š¤Š°ŠŗŃƒŠ»Ń‚ет'),
(130061, 104344, 'en', 'name', 'Centre for Observation, Impacts, Energy'),
(130062, 104344, 'fr', 'name', 'Centre Observation, Impacts, Ɖnergie'),
(130063, 104345, 'en', 'name', 'Hasan Kalyoncu University'),
(130064, 104345, 'tr', 'name', 'Hasan Kalyoncu Üniversitesi'),
(130065, 104346, 'en', 'name', 'Bosch Health Campus'),
(130066, 104346, 'no_lang_code', 'name', 'Bosch Health Campus GmbH'),
(130067, 104347, 'en', 'name', 'Biomass, Wood, Energy, Bioproducts'),
(130068, 104347, 'fr', 'name', 'Biomasse, bois, Ʃnergie, bio-produits'),
(130069, 104348, 'en', 'name', 'PAP Non-commissioned Officer School'),
(130070, 104348, 'zh', 'name', 'äø­å›½äŗŗę°‘ę­¦č£…č­¦åÆŸéƒØé˜Ÿå£«å®˜å­¦ę ”'),
(130071, 104349, 'en', 'name', 'University of Colorado Colorado Springs'),
(130072, 104349, 'es', 'name', 'Universidad de Colorado en Colorado Springs'),
(130073, 104349, 'fr', 'name', 'UniversitƩ du Colorado Ơ Colorado Springs'),
(130074, 104350, 'en', 'name', 'Guangzhou Baiyun Airport Customs Comprehensive Technical Service Center'),
(130075, 104350, 'zh', 'name', 'å¹æå·žē™½äŗ‘ęœŗåœŗęµ·å…³ē»¼åˆęŠ€ęœÆęœåŠ”äø­åæƒ'),
(130076, 104351, 'en', 'name', 'Slovak Centre of Scientific and Technical Information'),
(130077, 104352, 'no_lang_code', 'name', 'Cobham (United Kingdom)'),
(130078, 104353, 'no_lang_code', 'name', 'Alexandra Institute (Denmark)'),
(130079, 104354, 'en', 'name', 'Regional Council of Brittany'),
(130080, 104354, 'fr', 'name', 'Conseil rƩgional de Bretagne'),
(130081, 104355, 'en', 'name', 'Laboratory of Fundamental and Applied Bioenergetics'),
(130082, 104356, 'en', 'name', 'NRG Energy, NRG Energy (United States)'),
(130083, 104357, 'en', 'name', 'National University "Yuri Kondratyuk Poltava Polytechnic"'),
(130084, 104357, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠ° політехніка імені Š®Ń€Ń–Ń ŠšŠ¾Š½Š“Ń€Š°Ń‚ŃŽŠŗŠ°Ā»'),
(130085, 104358, 'en', 'name', 'Huaiyin Institute of Technology'),
(130086, 104359, 'en', 'name', 'Inner Mongolia University of Technology'),
(130087, 104359, 'zh', 'name', 'å†…č’™å¤å·„äøšå¤§å­¦'),
(130088, 104360, 'fr', 'name', 'Laboratoire Biologie et Biotechnologie pour la SantƩ'),
(130089, 104361, 'bn', 'name', 'ą¦–ą¦¾ą¦œą¦¾ ইউনুস আলী মেঔিকেল ą¦•ą¦²ą§‡ą¦œ'),
(130090, 104361, 'en', 'name', 'Khwaja Yunus Ali Medical College'),
(130091, 104362, 'ro', 'name', 'POLITEHNICA București, Universitatea Națională de Știință și Tehnologie Politehnica București'),
(130092, 104363, 'en', 'name', 'Moshood Abiola Polytechnic'),
(130093, 104364, 'en', 'name', 'Kashi University'),
(130094, 104364, 'zh', 'name', '喀什大学'),
(130095, 104365, 'en', 'name', 'National University of Mar del Plata'),
(130096, 104365, 'es', 'name', 'Universidad Nacional de Mar del Plata'),
(130097, 104366, 'en', 'name', 'Shanghai Dianji University'),
(130098, 104366, 'zh', 'name', 'äøŠęµ·ē”µęœŗå­¦é™¢'),
(130099, 104367, 'en', 'name', 'Wuhu Institute of Technology'),
(130100, 104367, 'zh', 'name', 'čŠœę¹–å·„å­¦é™¢'),
(130101, 104368, 'en', 'name', 'Vemu Institute of Technology'),
(130102, 104369, 'ar', 'name', 'تسعى الجامعة Ų§Ł„Ų£Ł„Ł…Ų§Ł†ŁŠŲ© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(130103, 104369, 'en', 'name', 'German University of Technology'),
(130104, 104370, 'en', 'name', 'Darlington College'),
(130105, 104371, 'en', 'name', 'Jan Albrecht Music and Art Academy'),
(130106, 104372, 'fr', 'name', 'Micro et NanomƩdecines translationnelles'),
(130107, 104373, 'ar', 'name', 'المعهد Ų§Ł„ŁŲ±Ł†Ų³ŁŠ للآثار Ų§Ł„Ų“Ų±Ł‚ŁŠŲ©'),
(130108, 104373, 'fr', 'name', 'Institut FranƧais d''ArchƩologie Orientale, Institut franƧais d''archƩologie orientale'),
(130109, 104374, 'fr', 'name', 'Laboratoire Arts et pratiques du texte, de l’image, de l’écran et de la scĆØne'),
(130110, 104375, 'pt', 'name', 'Faculdade do Futuro'),
(130111, 104376, 'en', 'name', 'Vulcan Materials, Vulcan Materials (United States)'),
(130112, 104377, 'no_lang_code', 'name', 'Mercedes-Benz (Germany)'),
(130113, 104378, 'en', 'name', 'Nelson College London'),
(130114, 104379, 'en', 'name', 'Genetic Stability and Oncogenesis'),
(130115, 104379, 'fr', 'name', 'Stabilité génétique et oncogenèse'),
(130116, 104380, 'en', 'name', 'Physics of Cells and Cancer'),
(130117, 104380, 'fr', 'name', 'Physique des Cellules et Cancers'),
(130118, 104381, 'en', 'name', 'State Education Development Agency'),
(130119, 104381, 'lv', 'name', 'Valsts izglītības attīstības aģentūra'),
(130120, 104382, 'en', 'name', 'Zhejiang University of Finance and Economics'),
(130121, 104382, 'zh', 'name', 'ęµ™ę±Ÿč“¢ē»å¤§å­¦'),
(130122, 104383, 'en', 'name', 'International Bureau of Weights and Measures'),
(130123, 104383, 'fr', 'name', 'Bureau international des poids et mesures'),
(130124, 104384, 'en', 'name', 'Nagoya Institute of Technology'),
(130125, 104384, 'ja', 'name', 'åå¤å±‹å·„ę„­å¤§å­¦'),
(130126, 104385, 'fr', 'name', 'Collège Boréal'),
(130127, 104386, 'en', 'name', 'Lingnan University'),
(130128, 104387, 'en', 'name', 'Zhejiang Gongshang University'),
(130129, 104387, 'zh', 'name', 'ęµ™ę±Ÿå·„å•†å¤§å­¦'),
(130130, 104388, 'en', 'name', 'Brock University'),
(130131, 104389, 'en', 'name', 'French National School for Advanced Studies in Design'),
(130132, 104389, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de CrĆ©ation Industrielle'),
(130133, 104390, 'fr', 'name', 'Sport et sciences sociales'),
(130134, 104391, 'fi', 'name', 'Karoliininen instituutti'),
(130135, 104391, 'sv', 'name', 'Karolinska Institutet'),
(130136, 104392, 'el', 'name', 'Πάντειο Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(130137, 104392, 'en', 'name', 'Panteion University'),
(130138, 104392, 'fr', 'name', 'UniversitƩ panteion'),
(130139, 104393, 'pt', 'name', 'Fundação Minerva - Cultura - Ensino e Investigação Científica'),
(130140, 104394, 'fr', 'name', 'Plateformes Lilloises en Biologie et SantƩ'),
(130141, 104395, 'es', 'name', 'Instituto MadrileƱo de Antropologƭa'),
(130142, 104396, 'nl', 'name', 'Hogeschool de Kempel'),
(130143, 104397, 'en', 'name', 'Shaanxi University of Technology'),
(130144, 104397, 'zh', 'name', '陕脿理巄大学'),
(130145, 104398, 'id', 'name', 'Institut Agama Islam Negeri Parepare'),
(130146, 104399, 'no_lang_code', 'name', 'Framatome (France)'),
(130147, 104400, 'fr', 'name', 'Laboratoire de Chimie des PolymĆØres Organiques'),
(130148, 104401, 'no_lang_code', 'name', 'MeteoIA, MeteoIA (Brazil)'),
(130149, 104402, 'en', 'name', 'Georgia Humanities Council'),
(130150, 104403, 'en', 'name', 'Utah Humanities Council'),
(130151, 104404, 'en', 'name', 'Sogang University'),
(130152, 104404, 'ko', 'name', 'ģ„œź°•ėŒ€ķ•™źµ'),
(130153, 104405, 'en', 'name', 'Kogi State Polytechnic'),
(130154, 104406, 'en', 'name', 'Cognitive Neuroimaging Lab'),
(130155, 104407, 'en', 'name', 'Ƈankaya University'),
(130156, 104407, 'tr', 'name', 'Ƈankaya Ɯniversitesi'),
(130157, 104408, 'en', 'name', 'Rzeszów University of Technology'),
(130158, 104408, 'pl', 'name', 'Politechnika Rzeszowska im. Ignacego Łukasiewicza'),
(130159, 104409, 'en', 'name', 'Hubei Normal University'),
(130160, 104409, 'zh', 'name', 'ę¹–åŒ—åøˆčŒƒå­¦é™¢'),
(130161, 104410, 'en', 'name', 'Microsoft Research New York City, Microsoft Research New York City (United States)'),
(130162, 104411, 'en', 'name', 'Hamilton College'),
(130163, 104412, 'en', 'name', 'Taylor Geospatial Institute'),
(130164, 104413, 'de', 'name', 'Abgeordnetenhaus Berlin'),
(130165, 104414, 'en', 'name', 'Mahindra University'),
(130166, 104415, 'en', 'name', 'University Medical Center Utrecht'),
(130167, 104415, 'nl', 'name', 'Universitair Medisch Centrum Utrecht'),
(130168, 104416, 'en', 'name', 'TOO Solid Research Group, TOO Solid Research Group (Kazakhstan)'),
(130169, 104417, 'en', 'name', 'Hangzhou Dianzi University'),
(130170, 104417, 'zh', 'name', 'ę­å·žē”µå­ē§‘ęŠ€å¤§å­¦'),
(130171, 104418, 'es', 'name', 'Universidad Autónoma de Nayarit'),
(130172, 104419, 'id', 'name', 'Universitas Nahdlatul Ulama Purwokerto'),
(130173, 104420, 'en', 'name', 'Discover Financial Services, Discover Financial Services (United States)'),
(130174, 104421, 'en', 'name', 'Institute for Diagnostic Imaging Research'),
(130175, 104422, 'fr', 'name', 'Association de lutte contre le sida (ALCS)'),
(130176, 104423, 'en', 'name', 'University of Gibraltar'),
(130177, 104424, 'en', 'name', 'Hunan University of Technology and Business'),
(130178, 104424, 'zh', 'name', 'ę¹–å—å·„å•†å¤§å­¦'),
(130179, 104425, 'fr', 'name', 'Laboratoire Traitement et Communication de l’Information'),
(130180, 104426, 'en', 'name', 'Augsburg University'),
(130181, 104427, 'en', 'name', 'Bridging Access to Care'),
(130182, 104428, 'en', 'name', 'BOKU University'),
(130183, 104429, 'en', 'name', 'Tokyo University of Pharmacy and Life Sciences'),
(130184, 104429, 'ja', 'name', 'ę±äŗ¬č–¬ē§‘å¤§å­¦'),
(130185, 104430, 'cy', 'name', 'Prifysgol Dwyrain Llundain'),
(130186, 104430, 'en', 'name', 'University of East London'),
(130187, 104431, 'en', 'name', 'National School of Nanoscience and Nanotechnology'),
(130188, 104432, 'en', 'name', 'Institute of the History of Law'),
(130189, 104432, 'fr', 'name', 'Institut d''Histoire du Droit'),
(130190, 104433, 'en', 'name', 'Veterinary Standards and Drug Regulatory Laboratory'),
(130191, 104434, 'en', 'name', 'Harran University'),
(130192, 104434, 'tr', 'name', 'Harran Üniversitesi'),
(130193, 104435, 'en', 'name', 'Anna University Regional Campus, Coimbatore'),
(130194, 104436, 'en', 'name', 'Youxi County General Hospital'),
(130195, 104437, 'no_lang_code', 'name', 'Northumbrian Water Group (United Kingdom)'),
(130196, 104438, 'en', 'name', 'Purchase College'),
(130197, 104438, 'fr', 'name', 'UniversitĆ© d''Ɖtat de new york Ć  purchase'),
(130198, 104439, 'en', 'name', 'Erasmus University Rotterdam'),
(130199, 104439, 'nl', 'name', 'Erasmus Universiteit Rotterdam'),
(130200, 104440, 'fr', 'name', 'Laboratoire de Chimie BactƩrienne'),
(130201, 104441, 'en', 'name', 'Genocide and Resistance Research Centre of Lithuania'),
(130202, 104441, 'lt', 'name', 'Lietuvos gyventojų genocido ir rezistencijos tyrimo centras'),
(130203, 104442, 'en', 'name', 'West University of Timişoara'),
(130204, 104442, 'hu', 'name', 'TemesvƔri Nyugati TudomƔnyegyetem'),
(130205, 104442, 'ro', 'name', 'Universitatea de Vest din Timișoara'),
(130206, 104443, 'es', 'name', 'Escuela Normal Superior Federal de Aguascalientes, Escuela Normal Superior Federal de Aguascalientes "Profr. JosƩ Santos ValdƩs"'),
(130207, 104444, 'en', 'name', 'Cure Parkinson''s Trust'),
(130208, 104445, 'fr', 'name', 'DƩlƩgation Paris 11'),
(130209, 104446, 'cs', 'name', 'Mendelova univerzita v Brně'),
(130210, 104446, 'en', 'name', 'Mendel University in Brno'),
(130211, 104447, 'en', 'name', 'The Charitable Foundation "BELA. Butterfly Children"'),
(130212, 104447, 'ru', 'name', 'Š‘Š»Š°Š³Š¾Ń‚Š²Š¾Ń€ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ фонГ «БЭЛА. Дети-бабочки»'),
(130213, 104448, 'bn', 'name', 'ą¦¹ą¦¬ą¦æą¦—ą¦žą§ą¦œ ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(130214, 104448, 'en', 'name', 'Habiganj Agricultural University'),
(130215, 104449, 'en', 'name', 'Institute for Cognitive Science'),
(130216, 104449, 'fr', 'name', 'Institut des Sciences Cognitives'),
(130217, 104450, 'de', 'name', 'Deutsche Gesellschaft für Limnologie'),
(130218, 104451, 'ca', 'name', 'Universitat Internacional d''Andalusia'),
(130219, 104451, 'en', 'name', 'International University of AndalucĆ­a'),
(130220, 104451, 'es', 'name', 'Universidad Internacional de AndalucĆ­a'),
(130221, 104452, 'fr', 'name', 'Centre de recherches en histoire internationale et atlantique'),
(130222, 104453, 'es', 'name', 'AlcaldĆ­a de Barranquilla'),
(130223, 104454, 'en', 'name', 'Leprince-Ringuet Laboratory'),
(130224, 104454, 'fr', 'name', 'Laboratoire Leprince-Ringuet'),
(130225, 104455, 'no_lang_code', 'name', 'Genus (United Kingdom)'),
(130226, 104456, 'no_lang_code', 'name', 'Ceridian (United States), Dayforce'),
(130227, 104457, 'en', 'name', 'Idiap Research Institute'),
(130228, 104458, 'fr', 'name', 'Bassins - RƩservoirs - Ressources'),
(130229, 104459, 'en', 'name', 'KS Rangasamy College of Arts and Science'),
(130230, 104459, 'ta', 'name', 'கே ą®Žą®øąÆ ą®°ą®™ąÆą®•ą®šą®¾ą®®ą®æ ą®•ą®²ąÆˆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(130231, 104460, 'fr', 'name', 'Anglophonie: communautƩs, Ʃcritures'),
(130232, 104461, 'az', 'name', 'İstanbul Texniki Universiteti'),
(130233, 104461, 'en', 'name', 'Istanbul Technical University'),
(130234, 104461, 'tr', 'name', 'İstanbul Teknik Üniversitesi'),
(130235, 104462, 'en', 'name', 'West Pomeranian University of Technology'),
(130236, 104462, 'pl', 'name', 'Zachodniopomorski Uniwersytet Technologiczny w Szczecinie'),
(130237, 104463, 'pt', 'name', 'Instituto Superior de Contabilidade e Administração de Coimbra'),
(130238, 104464, 'pt', 'name', 'Instituto de Biologia Experimental e Tecnológica'),
(130239, 104465, 'en', 'name', 'Konan University'),
(130240, 104465, 'ja', 'name', 'ē”²å—å¤§å­¦'),
(130241, 104466, 'no_lang_code', 'name', 'NXP (Netherlands)'),
(130242, 104467, 'en', 'name', 'The Slovenian Research and Innovation Agency'),
(130243, 104467, 'sl', 'name', 'Javna agencija za znanstvenoraziskovalno in inovacijsko dejavnost'),
(130244, 104468, 'en', 'name', 'Panthera Biopartners (United Kingdom)'),
(130245, 104469, 'en', 'name', 'Wuyi University'),
(130246, 104469, 'zh', 'name', '武夷学院'),
(130247, 104470, 'fr', 'name', 'Laboratoire des applications ThƩrapeutiques des Ultrasons'),
(130248, 104471, 'pt', 'name', 'Instituto para a Sustentabilidade e Inovação em Estruturas de Engenharia'),
(130249, 104472, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁˆŁ‡Ų±Ų§Ł†1 Ų£Ų­Ł…ŲÆ بن بلة'),
(130250, 104472, 'fr', 'name', 'UniversitƩ Oran 1 Ahmed Ben Bella'),
(130251, 104473, 'fr', 'name', 'Fédération de Recherche PhotoVoltaïque'),
(130252, 104474, 'en', 'name', 'Nanjing Medical University'),
(130253, 104474, 'zh', 'name', 'å—äŗ¬åŒ»ē§‘å¤§å­¦'),
(130254, 104475, 'en', 'name', 'Xinjiang University'),
(130255, 104475, 'zh', 'name', '新疆大学'),
(130256, 104476, 'en', 'name', 'Guangzhou City Polytechnic'),
(130257, 104476, 'zh', 'name', 'å¹æå·žåŸŽåø‚čŒäøšå­¦é™¢'),
(130258, 104477, 'fr', 'name', 'Biologie EpidƩmiologie et Analyse de Risque en santƩ animale'),
(130259, 104478, 'fr', 'name', 'UnitƩ de Recherche Clinique CƓte d''Azur'),
(130260, 104479, 'pt', 'name', 'Estado-Maior da ForƧa AƩrea'),
(130261, 104480, 'da', 'name', 'Rytmisk Musikkonservatorium'),
(130262, 104480, 'en', 'name', 'Rhythmic Music Conservatory'),
(130263, 104481, 'en', 'name', 'Westminster University'),
(130264, 104482, 'fr', 'name', 'ArchƩorient'),
(130265, 104483, 'en', 'name', 'Japan Aerospace Exploration Agency'),
(130266, 104483, 'ja', 'name', 'å®‡å®™čˆŖē©ŗē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(130267, 104484, 'en', 'name', 'Pacific University'),
(130268, 104484, 'es', 'name', 'Universidad del PacĆ­fico'),
(130269, 104485, 'en', 'name', 'Maine College of Health Professions'),
(130270, 104486, 'en', 'name', 'University Hospital of Lausanne'),
(130271, 104486, 'fr', 'name', 'Centre Hospitalier Universitaire Vaudois'),
(130272, 104487, 'en', 'name', 'Stranmillis University College'),
(130273, 104488, 'id', 'name', 'Universitas Islam Negeri Syekh Ali Hasan Ahmad Addary Padangsidimpuan'),
(130274, 104489, 'en', 'name', 'Guangzhou Xiaopeng Motors Technology Co Ltd, Xiaopeng Motors, Xiaopeng Motors (China)'),
(130275, 104489, 'zh', 'name', 'å¹æå·žå°é¹ę±½č½¦ē§‘ęŠ€ęœ‰é™å…¬åø'),
(130276, 104490, 'en', 'name', 'Hebrew Union College - Jewish Institute of Religion'),
(130277, 104491, 'en', 'name', 'Brandeis University'),
(130278, 104492, 'fr', 'name', 'Institut de minƩralogie, de physique des matƩriaux et de cosmochimie'),
(130279, 104493, 'fr', 'name', 'Verimag'),
(130280, 104494, 'en', 'name', 'Holland Particle Therapy Center'),
(130281, 104495, 'en', 'name', 'Humanities Washington'),
(130282, 104496, 'en', 'name', 'Biology of Host-parasite Interactions'),
(130283, 104496, 'fr', 'name', 'Biologie des interactions hƓte-parasite'),
(130284, 104497, 'no_lang_code', 'name', 'Daimler (United States)'),
(130285, 104498, 'en', 'name', 'University of the Arts Helsinki'),
(130286, 104498, 'fi', 'name', 'Taideyliopisto'),
(130287, 104498, 'sv', 'name', 'Konstuniversitetet'),
(130288, 104499, 'es', 'name', 'ESS Bilbao'),
(130289, 104500, 'en', 'name', 'Korea Advanced Institute of Science and Technology'),
(130290, 104500, 'ko', 'name', 'ķ•œźµ­ź³¼ķ•™źø°ģˆ ģ›'),
(130291, 104501, 'pt', 'name', 'CoLAB +ATLANTIC'),
(130292, 104502, 'en', 'name', 'Center for Research on Palaeontology - Paris'),
(130293, 104502, 'fr', 'name', 'Centre de recherche en palƩontologie - Paris'),
(130294, 104503, 'en', 'name', 'Holy Family Red Crescent Medical College'),
(130295, 104504, 'pt', 'name', 'Laboratório da Paisagem'),
(130296, 104505, 'en', 'name', 'Zhengzhou Business University'),
(130297, 104505, 'zh', 'name', '郑州商学院'),
(130298, 104506, 'de', 'name', 'Akademien der Wissenschaften Schweiz'),
(130299, 104506, 'en', 'name', 'Swiss Academies of Arts and Sciences'),
(130300, 104506, 'fr', 'name', 'AcadƩmies suisses des sciences'),
(130301, 104507, 'en', 'name', 'Movement, Sport and health Sciences Laboratory'),
(130302, 104507, 'fr', 'name', 'Laboratoire Mouvement Sport SantƩ'),
(130303, 104508, 'en', 'name', 'MIT Art, Design and Technology University'),
(130304, 104509, 'en', 'name', 'Nwafor Orizu College of Education'),
(130305, 104510, 'en', 'name', 'NOAA National Centers for Coastal Ocean Science'),
(130306, 104511, 'en', 'name', 'St. Joseph''s College of Education'),
(130307, 104511, 'ha', 'name', 'Kwalejin Ilimi ta St. Joseph'),
(130308, 104512, 'en', 'name', 'Humanities Tennessee'),
(130309, 104513, 'en', 'name', 'St. Thomas University'),
(130310, 104513, 'fr', 'name', 'UniversitƩ Saint-Thomas'),
(130311, 104514, 'en', 'name', 'Kingston University'),
(130312, 104515, 'fr', 'name', 'Micropesanteur Fondamentale et AppliquƩe'),
(130313, 104516, 'en', 'name', 'French-German Research Institute of Saint-Louis'),
(130314, 104516, 'fr', 'name', 'Institut Franco-Allemand de Recherches de Saint-Louis'),
(130315, 104517, 'hu', 'name', 'Szent PƔl AkadƩmia'),
(130316, 104518, 'en', 'name', 'Centennial College'),
(130317, 104519, 'fr', 'name', 'Ɖcole Nationale d''IngĆ©nieurs de Metz'),
(130318, 104520, 'de', 'name', 'Die Autobahn GmbH des Bundes, Die Autobahn GmbH des Bundes (Germany)'),
(130319, 104521, 'no_lang_code', 'name', 'AlphaSense (United States)'),
(130320, 104522, 'en', 'name', 'Ohio Library and Information Network'),
(130321, 104523, 'fr', 'name', 'Laboratoire de physique de la matière condensée'),
(130322, 104524, 'en', 'name', 'Glasgow Childrens Hospital Charity'),
(130323, 104525, 'es', 'name', 'Instituto de Radioastronomƭa MilimƩtrica'),
(130324, 104526, 'fr', 'name', 'Centre de recherche en Ʃconomie de Grenoble'),
(130325, 104527, 'fr', 'name', 'Lille Ɖconomie Management'),
(130326, 104528, 'en', 'name', 'Khyber Girls Medical College'),
(130327, 104528, 'ps', 'name', 'ŲÆ خیبر ښځو Ų·ŲØ Ł¾ŁˆŁ‡Ł†ŚŪŒ'),
(130328, 104528, 'ur', 'name', 'خیبر Ų®ŁˆŲ§ŲŖŪŒŁ† طبی کالج'),
(130329, 104529, 'fr', 'name', 'Centre Hospitalier Universitaire de Nantes'),
(130330, 104530, 'en', 'name', 'Walsall College'),
(130331, 104531, 'fr', 'name', 'SantƩ, vulnƩrabilitƩs et relations de genre au Sud'),
(130332, 104532, 'fr', 'name', 'Laboratoire de Neurobiologie Orofaciale'),
(130333, 104533, 'cs', 'name', 'VysokÔ Ŕkola polytechnickÔ Jihlava'),
(130334, 104533, 'en', 'name', 'College of Polytechnics Jihlava'),
(130335, 104534, 'en', 'name', 'Vermont Humanities'),
(130336, 104535, 'fr', 'name', 'Laboratoire de Physique des Plasmas'),
(130337, 104536, 'en', 'name', 'HUN-REN Institute of Earth Physics and Space Science'),
(130338, 104536, 'hu', 'name', 'HUN-REN Földfizikai és ŰrtudomÔnyi Kutatóintézet'),
(130339, 104537, 'fr', 'name', 'Cibles ThƩrapeutiques et conception de mƩdicaments'),
(130340, 104538, 'en', 'name', 'Community College of Baltimore County'),
(130341, 104539, 'en', 'name', 'Albert Einstein College of Medicine'),
(130342, 104540, 'en', 'name', 'City College of Calamba'),
(130343, 104540, 'tl', 'name', 'Dalubhasaan ng Calamba'),
(130344, 104541, 'es', 'name', 'Universidad PolitƩcnica de Francisco I. Madero'),
(130345, 104542, 'no_lang_code', 'name', 'Bayer (France)'),
(130346, 104543, 'en', 'name', 'Horizon Robotics, Horizon Robotics (China)'),
(130347, 104543, 'zh', 'name', 'åŒ—äŗ¬åœ°å¹³ēŗæäæ”ęÆęŠ€ęœÆęœ‰é™å…¬åø'),
(130348, 104544, 'de', 'name', 'WirtschaftsuniversitƤt Luigi Bocconi'),
(130349, 104544, 'en', 'name', 'Bocconi University'),
(130350, 104544, 'it', 'name', 'UniversitĆ  Commerciale Luigi Bocconi'),
(130351, 104545, 'it', 'name', 'Conservatorio di musica "Vecchi Tonelli"'),
(130352, 104546, 'en', 'name', 'Great Lakes Research Consortium'),
(130353, 104547, 'de', 'name', 'UniversitƤt Messina'),
(130354, 104547, 'en', 'name', 'University of Messina'),
(130355, 104547, 'fr', 'name', 'UniversitƩ de messine'),
(130356, 104547, 'it', 'name', 'UniversitĆ  degli Studi di Messina'),
(130357, 104548, 'en', 'name', 'Franklin Templeton, Franklin Templeton (United States)'),
(130358, 104549, 'en', 'name', 'Williton Community Hospital'),
(130359, 104550, 'fr', 'name', 'Structure FƩdƩrative de Recherche en Biologie et SantƩ de Rennes'),
(130360, 104551, 'en', 'name', 'Wellcome Sanger Institute'),
(130361, 104552, 'ar', 'name', 'Ų¬ŁŽŲ§Ł…ŁŲ¹ŁŽŲ© Ł„ŁŁˆŲ³ŁŽŁŠŁ’Ł„'),
(130362, 104552, 'en', 'name', 'Lusail University'),
(130363, 104553, 'en', 'name', 'Colgate University'),
(130364, 104553, 'es', 'name', 'Universidad Colgate'),
(130365, 104553, 'fr', 'name', 'UniversitƩ de colgate'),
(130366, 104554, 'fr', 'name', 'Laboratoire de Chimie Bio-inspirĆ©e et d’Innovations Ecologiques'),
(130367, 104555, 'de', 'name', 'Freies Institut für Bauforschung und Dokumentation e.V.'),
(130368, 104556, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ظفار'),
(130369, 104556, 'en', 'name', 'Dhofar University'),
(130370, 104557, 'en', 'name', 'Beijing Intelligent Entropy Science & Technology Co. Ltd.'),
(130371, 104558, 'en', 'name', 'Henan University of Science and Technology'),
(130372, 104558, 'zh', 'name', 'ę²³å—ē§‘ęŠ€å¤§å­¦'),
(130373, 104559, 'en', 'name', 'Frederick University'),
(130374, 104560, 'en', 'name', 'Institute for Cultural Research of the National Academy of Arts of Ukraine'),
(130375, 104561, 'en', 'name', 'Beijing University of Chinese Medicine'),
(130376, 104561, 'zh', 'name', 'åŒ—äŗ¬äø­åŒ»čÆå¤§å­¦'),
(130377, 104562, 'en', 'name', 'Strasbourg Translational Neuroscience and Psychiatry'),
(130378, 104562, 'fr', 'name', 'Neuroscience et Psychiatrie Translationnelle de Strasbourg'),
(130379, 104563, 'fr', 'name', 'FƩdƩration de Chimie de l''UniversitƩ Paris'),
(130380, 104564, 'en', 'name', 'Royal Netherlands Meteorological Institute'),
(130381, 104564, 'nl', 'name', 'Koninklijk Nederlands Meteorologisch Instituut'),
(130382, 104565, 'en', 'name', 'Research Institute for Sustainable Humanosphere'),
(130383, 104565, 'ja', 'name', 'äŗ¬éƒ½å¤§å­¦ē”Ÿå­˜åœē ”ē©¶ę‰€'),
(130384, 104566, 'no_lang_code', 'name', 'Verizon Media, Verizon Media (United States)'),
(130385, 104567, 'fr', 'name', 'Structure FƩdƩrative de Recherche SantƩ Lyon Est'),
(130386, 104568, 'fr', 'name', 'Institut Denis Poisson'),
(130387, 104569, 'en', 'name', 'Douglas Mental Health University Institute'),
(130388, 104569, 'fr', 'name', 'Centre de recherche Douglas, HƓpital Douglas, Institut universitaire en santƩ mentale douglas'),
(130389, 104570, 'fr', 'name', 'ProtƩomique, RƩponse Inflammatoire et SpectromƩtrie de Masse'),
(130390, 104571, 'en', 'name', 'NSW Department of Communities and Justice'),
(130391, 104572, 'ko', 'name', 'ķ•œķ™”ģ†”ė£Øģ…˜'),
(130392, 104572, 'no_lang_code', 'name', 'Hanwha Solutions (South Korea)'),
(130393, 104573, 'fr', 'name', 'Interactions Cellulaires et Physiopathologie HƩpathique'),
(130394, 104574, 'en', 'name', 'Institute of Science Tokyo'),
(130395, 104574, 'ja', 'name', 'ę±äŗ¬ē§‘å­¦å¤§å­¦'),
(130396, 104575, 'en', 'name', 'Berlin Institute for the Foundations of Learning and Data, The Berlin Institute for the Foundations of Learning and Data (BIFOLD)'),
(130397, 104576, 'en', 'name', 'Yeovil District Hospital'),
(130398, 104577, 'en', 'name', 'Kumaraguru College of Technology'),
(130399, 104578, 'en', 'name', 'Paris Chamber of Commerce'),
(130400, 104578, 'fr', 'name', 'Chambre de Commerce et d''industrie de Paris'),
(130401, 104579, 'en', 'name', 'Inflammation, Microbiome and Immunosurveillance'),
(130402, 104580, 'en', 'name', 'Novia University of Applied Sciences'),
(130403, 104580, 'sv', 'name', 'Yrkeshƶgskolan Novia'),
(130404, 104581, 'en', 'name', 'Institute for Computing in Research'),
(130405, 104582, 'en', 'name', 'Universal Health Services, Universal Health Services (United States)'),
(130406, 104583, 'bn', 'name', 'ą¦°ą¦¾ą¦œą¦¶ą¦¾ą¦¹ą§€ মেঔিকেল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(130407, 104583, 'en', 'name', 'Rajshahi Medical University');
INSERT INTO `ror_settings` VALUES
(130408, 104584, 'de', 'name', 'Technische Hochschule Ulm'),
(130409, 104585, 'en', 'name', 'Yeungnam University College'),
(130410, 104586, 'fr', 'name', 'Institut thƩmatique Neurosciences, sciences cognitives, neurologie, psychiatrie'),
(130411, 104587, 'en', 'name', 'European and Mediterranean Plant Protection Organization'),
(130412, 104587, 'fr', 'name', 'Organisation EuropƩenne et MƩditerranƩenne pour la Protection de Plantes'),
(130413, 104588, 'fr', 'name', 'HABITER AmƩnagement et gƩographie politique'),
(130414, 104589, 'en', 'name', 'Fyssen Foundation'),
(130415, 104589, 'fr', 'name', 'Fondation Fyssen'),
(130416, 104590, 'en', 'name', 'Foundation for Physical Medicine and Rehabilitation'),
(130417, 104591, 'en', 'name', 'Institute of Human Genetics'),
(130418, 104591, 'fr', 'name', 'Institut de GƩnƩtique Humaine'),
(130419, 104592, 'en', 'name', 'Unit in Biological Sciences and Biotechnologies'),
(130420, 104592, 'fr', 'name', 'UnitƩ en Sciences Biologiques et Biotechnologies de Nantes'),
(130421, 104593, 'no_lang_code', 'name', 'Orano (France)'),
(130422, 104594, 'pt', 'name', 'Instituto Politécnico de Saúde do Norte - CESPU'),
(130423, 104595, 'en', 'name', 'Jinling Institute of Technology'),
(130424, 104595, 'zh', 'name', 'é‡‘é™µē§‘ęŠ€å­¦é™¢'),
(130425, 104596, 'en', 'name', 'Usak University'),
(130426, 104596, 'tr', 'name', 'Uşak Üniversitesi'),
(130427, 104597, 'en', 'name', 'Shahid Matangini Hazra Government College for Women'),
(130428, 104598, 'fr', 'name', 'Laboratoire d''Ɖconomie des Ressources Naturelles'),
(130429, 104599, 'de', 'name', 'Bundesinstitut für Arzneimittel und Medizinprodukte'),
(130430, 104599, 'en', 'name', 'Federal Institute for Drugs and Medical Devices'),
(130431, 104600, 'en', 'name', 'Large Scale Biology Laboratory'),
(130432, 104600, 'fr', 'name', 'Laboratoire Biologie Ơ Grande Ɖchelle'),
(130433, 104601, 'en', 'name', 'Nansen Environmental and Remote Sensing Center'),
(130434, 104601, 'no', 'name', 'Stiftelsen Nansen Senter For Miljƶ OG FjernmƄling'),
(130435, 104602, 'en', 'name', 'South East Coast Ambulance Service NHS Foundation Trust'),
(130436, 104603, 'ko', 'name', 'ķ•œķ™”ķ…Œķ¬ģœˆ'),
(130437, 104603, 'no_lang_code', 'name', 'Hanwha Techwin (South Korea)'),
(130438, 104604, 'en', 'name', 'Stockholm University'),
(130439, 104604, 'fi', 'name', 'Tukholman yliopisto'),
(130440, 104604, 'sv', 'name', 'Stockholms universitet'),
(130441, 104605, 'en', 'name', 'University of Saint Katherine'),
(130442, 104606, 'fr', 'name', 'Polytechnique MontrƩal'),
(130443, 104607, 'fr', 'name', 'HƩritage et CrƩation dans le Texte et l''Image'),
(130444, 104608, 'pt', 'name', 'INESC TEC, Instituto de Engenharia de Sistemas e Computadores Tecnologia e CiĆŖncia'),
(130445, 104609, 'en', 'name', 'Wenhua College'),
(130446, 104609, 'zh', 'name', 'ę–‡åŽå­¦é™¢'),
(130447, 104610, 'en', 'name', 'Wolfram Institute for Computational Foundations of Science'),
(130448, 104611, 'en', 'name', 'Military University of Technology in Warsaw'),
(130449, 104611, 'pl', 'name', 'Wojskowa Akademia Techniczna im. Jarosława Dąbrowskiego w Warszawie'),
(130450, 104612, 'en', 'name', 'xAI, xAI (United States)'),
(130451, 104613, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪœĪ±ĪŗĪµĪ“ĪæĪ½ĪÆĪ±Ļ‚'),
(130452, 104613, 'en', 'name', 'University of Macedonia'),
(130453, 104613, 'fr', 'name', 'UniversitƩ de macƩdoine'),
(130454, 104614, 'no_lang_code', 'name', 'L3Harris (United States)'),
(130455, 104615, 'en', 'name', 'Laboratory of Cell Physiology'),
(130456, 104615, 'fr', 'name', 'Laboratoire de Physiologie Cellulaire'),
(130457, 104616, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по информационни Šø ŠŗŠ¾Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¾Š½Š½Šø технологии'),
(130458, 104616, 'en', 'name', 'Institute of Information and Communication Technologies'),
(130459, 104617, 'de', 'name', 'Institut für Qualitätsentwicklung an Schulen Schleswig-Holstein'),
(130460, 104618, 'en', 'name', 'Initial MAnagement and prevention of acute orGan failures IN critically ill patiEnts'),
(130461, 104619, 'pt', 'name', 'Escola Superior de SaĆŗde Cruz Vermelha Portuguesa - Alto TĆ¢mega'),
(130462, 104620, 'en', 'name', 'Anhui Normal University'),
(130463, 104620, 'zh', 'name', 'å®‰å¾½åøˆčŒƒå¤§å­¦'),
(130464, 104621, 'en', 'name', 'Guangdong Peizheng College'),
(130465, 104622, 'fr', 'name', 'Laboratoire de Sciences Cognitives et Psycholinguistique'),
(130466, 104623, 'de', 'name', 'Klinik und Poliklinik für Orthopädie, Physikalische Medizin und Rehabilitation'),
(130467, 104624, 'en', 'name', 'Zhengzhou University of Light Industry'),
(130468, 104624, 'zh', 'name', 'éƒ‘å·žč½»å·„äøšå­¦é™¢'),
(130469, 104625, 'id', 'name', 'Yayasan Insanulhaq Cidadungu'),
(130470, 104626, 'en', 'name', 'Federation for the Study and Evaluation of Intra-Uterine Therapeutics'),
(130471, 104626, 'fr', 'name', 'FƩdƩration pour la recherche en explorations thƩrapeutiques innovantes in utero'),
(130472, 104627, 'en', 'name', 'LIFE Research Institute'),
(130473, 104627, 'fr', 'name', 'LIFE Institute de Recherches'),
(130474, 104628, 'en', 'name', 'Rare Disease Foundation'),
(130475, 104629, 'en', 'name', 'Florida State University'),
(130476, 104629, 'es', 'name', 'Universidad Estatal de Florida'),
(130477, 104629, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Floride'),
(130478, 104630, 'fr', 'name', 'Alliance nationale pour les sciences de la vie et de la santƩ'),
(130479, 104631, 'en', 'name', 'High Energy Astrophysics Science Archive Research Center'),
(130480, 104632, 'fr', 'name', 'Laboratoire BioingƩnierie et Nanosciences'),
(130481, 104633, 'cs', 'name', 'Ústav analytickĆ© chemie AV ČR, Ústav analytickĆ© chemie AV ČR, v. v. i., Ústav analytickĆ© chemie AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(130482, 104633, 'en', 'name', 'Czech Academy of Sciences, Institute of Analytical Chemistry'),
(130483, 104634, 'en', 'name', 'Chartered Institute of Personnel Management Sri Lanka (Inc.)'),
(130484, 104635, 'es', 'name', 'Asociación Colombiana de Hepatología'),
(130485, 104636, 'en', 'name', 'China University of Petroleum, East China'),
(130486, 104636, 'zh', 'name', 'äø­å›½ēŸ³ę²¹å¤§å­¦'),
(130487, 104637, 'en', 'name', 'University of Cumbria'),
(130488, 104638, 'fr', 'name', 'Institut de Biologie de Lille'),
(130489, 104639, 'en', 'name', 'Integrated Rural Development And Nature Conservation'),
(130490, 104640, 'en', 'name', 'Pharma Health Science College'),
(130491, 104641, 'en', 'name', 'Southwestern University'),
(130492, 104642, 'en', 'name', 'Ocean Networks Canada Society'),
(130493, 104643, 'es', 'name', 'Escuela Normal Rural "Gral. MatĆ­as Ramos Santos"'),
(130494, 104644, 'en', 'name', 'Dalian Jiaotong University'),
(130495, 104644, 'zh', 'name', 'å¤§čæžäŗ¤é€šå¤§å­¦'),
(130496, 104645, 'en', 'name', 'Low Noise Inter-Disciplinary Underground Science & Technology'),
(130497, 104645, 'fr', 'name', 'Laboratoire Souterrain Ć  Bas Bruit'),
(130498, 104646, 'pt', 'name', 'Hospital CUF Descobertas'),
(130499, 104647, 'no_lang_code', 'name', 'Ecopetrol (Colombia)'),
(130500, 104648, 'en', 'name', 'Salale University'),
(130501, 104649, 'fr', 'name', 'Observatoire OcƩanologique de Banyuls-sur-Mer'),
(130502, 104650, 'en', 'name', 'Thales Alenia Space'),
(130503, 104650, 'no_lang_code', 'name', 'Thales Alenia Space (France)'),
(130504, 104651, 'en', 'name', 'PLA Air Force Xi''an Flying College'),
(130505, 104651, 'zh', 'name', 'äø­å›½äŗŗę°‘č§£ę”¾å†›ē©ŗå†›č„æå®‰é£žč”Œå­¦é™¢'),
(130506, 104652, 'fr', 'name', 'Laboratoire de droit privƩ'),
(130507, 104653, 'en', 'name', 'Qinghai University'),
(130508, 104653, 'zh', 'name', 'é’ęµ·å¤§å­¦'),
(130509, 104654, 'no_lang_code', 'name', 'Costco Wholesale, Costco Wholesale (United States)'),
(130510, 104655, 'no_lang_code', 'name', 'Vuela for Health'),
(130511, 104656, 'fr', 'name', 'Centre Spatial Guyanais, Guiana Space Centre'),
(130512, 104657, 'en', 'name', 'Tenon Hospital'),
(130513, 104657, 'fr', 'name', 'HƓpital Tenon'),
(130514, 104658, 'fr', 'name', 'UniversitƩ Montesquieu Bordeaux IV'),
(130515, 104659, 'en', 'name', 'Laurea University of Applied Sciences'),
(130516, 104660, 'fr', 'name', 'Centre de Biologie et de Gestion des Populations'),
(130517, 104661, 'en', 'name', 'Wesleyan University'),
(130518, 104661, 'es', 'name', 'Universidad Wesleyana'),
(130519, 104662, 'en', 'name', 'Bagabaga College of Education'),
(130520, 104663, 'en', 'name', 'International Institute of Information Technology Bangalore'),
(130521, 104664, 'fr', 'name', 'PHOTOSYNTHESE'),
(130522, 104665, 'en', 'name', 'Laboratory for Language, Brain and Cognition'),
(130523, 104665, 'fr', 'name', 'Laboratoire sur le Langage, le Cerveau et la Cognition'),
(130524, 104666, 'en', 'name', 'Pioneer Natural Resources, Pioneer Natural Resources (United States)'),
(130525, 104667, 'en', 'name', 'Modern Business School'),
(130526, 104667, 'sr', 'name', 'Visoka Ŕkola modernog biznisa'),
(130527, 104668, 'ja', 'name', 'ē©ę°“åŒ–å­¦å·„ę„­ę Ŗå¼ä¼šē¤¾'),
(130528, 104668, 'no_lang_code', 'name', 'Sekisui Chemical (Japan)'),
(130529, 104669, 'en', 'name', 'Westlake University'),
(130530, 104669, 'zh', 'name', '脿湖大学'),
(130531, 104670, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų®Ł„ŁŠŁŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„ŲØŲ­ŁˆŲ«'),
(130532, 104670, 'en', 'name', 'Khalifa University of Science and Technology'),
(130533, 104671, 'en', 'name', 'Ovarian Cancer Research Alliance'),
(130534, 104672, 'en', 'name', 'Lesbian Herstory Archives'),
(130535, 104673, 'en', 'name', 'Research Institute in Astrophysics and Planetology'),
(130536, 104673, 'fr', 'name', 'Institut de Recherche en Astrophysique et PlanƩtologie'),
(130537, 104674, 'pt', 'name', 'Tribunal Constitucional'),
(130538, 104675, 'pt', 'name', 'Faculdade Damas da Instrução Cristã'),
(130539, 104676, 'fr', 'name', 'Transitions Savoirs MƩdias Territoires'),
(130540, 104677, 'en', 'name', 'Infection, Antimicrobials, Modelling, Evolution'),
(130541, 104677, 'fr', 'name', 'Infection, Anti-microbiens, ModƩlisation, Evolution'),
(130542, 104678, 'en', 'name', 'Chongqing Technology and Business University'),
(130543, 104678, 'zh', 'name', 'é‡åŗ†å·„å•†å¤§å­¦'),
(130544, 104679, 'en', 'name', 'Union of Mechanical and Electrical Engineers and Technicians of Serbia'),
(130545, 104679, 'sr', 'name', 'SMEITS, Savez maŔinskih i elektrotehničkih inženjera i tehničara Srbije'),
(130546, 104680, 'en', 'name', 'Berekum College of Education'),
(130547, 104681, 'fr', 'name', 'Laboratoire de GĆ©nie Ɖlectrique de Grenoble'),
(130548, 104682, 'no_lang_code', 'name', 'Vision RT (United Kingdom)'),
(130549, 104683, 'fr', 'name', 'AAU - Ambiances, Architectures, UrbanitƩs'),
(130550, 104684, 'en', 'name', 'Yum! Brands, Yum! Brands (United States)'),
(130551, 104685, 'pt', 'name', 'Egas Moniz - Cooperativa de Ensino Superior Crl'),
(130552, 104686, 'fr', 'name', 'Architecture Histoire Technique Territoire Patrimoine'),
(130553, 104687, 'en', 'name', 'Janeway Children''s Health and Rehabilitation Centre'),
(130554, 104688, 'de', 'name', 'Berlin-Brandenburgische Akademie der Wissenschaften'),
(130555, 104688, 'en', 'name', 'Berlin-Brandenburg Academy of Sciences and Humanities'),
(130556, 104689, 'en', 'name', 'Universe Sciences Observatory of the Centre Val de Loire region'),
(130557, 104689, 'fr', 'name', 'Observatoire des sciences de l''Univers en rƩgion Centre Val de Loire'),
(130558, 104690, 'es', 'name', 'Universidad de Los Lagos'),
(130559, 104691, 'en', 'name', 'Mass Humanities'),
(130560, 104692, 'fr', 'name', 'Ausonius Institut de Recherche sur l''AntiquitƩ et le Moyen age'),
(130561, 104693, 'fr', 'name', 'Institut de la Mer de Villefranche'),
(130562, 104694, 'en', 'name', 'Association for Project Management'),
(130563, 104695, 'fr', 'name', 'HƓpital de la Timone'),
(130564, 104696, 'en', 'name', 'Harbin Medical University'),
(130565, 104696, 'zh', 'name', 'å“ˆå°”ę»ØåŒ»ē§‘å¤§å­¦'),
(130566, 104697, 'en', 'name', 'Somerset Partnership NHS Foundation Trust'),
(130567, 104698, 'en', 'name', 'National Hospital Organization Saitama Hospital'),
(130568, 104698, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗ å›½ē«‹ē—…é™¢ę©Ÿę§‹ åŸ¼ēŽ‰ē—…é™¢'),
(130569, 104699, 'en', 'name', 'National Institute of Metrology Myanmar'),
(130570, 104699, 'my', 'name', 'į€į€­į€€į€»į€…į€½į€¬į€į€­į€Æį€„į€ŗį€øį€į€¬į€į€¼į€„į€ŗį€øį€”į€Šį€ŗį€øį€•į€Šį€¬į€Œį€¬į€”'),
(130571, 104700, 'en', 'name', 'University of Lapland'),
(130572, 104700, 'fi', 'name', 'Lapin yliopisto'),
(130573, 104700, 'sv', 'name', 'Lapplands universitet'),
(130574, 104701, 'no_lang_code', 'name', 'Sonova (United States)'),
(130575, 104702, 'de', 'name', 'Ministerium für Landwirtschaft, Ernährung und Weinbau'),
(130576, 104702, 'en', 'name', 'Ministry of Agriculture, Food and Viticulture'),
(130577, 104702, 'fr', 'name', 'MinistĆØre de l''Agriculture, de l''Alimentation et de la Viticultur'),
(130578, 104702, 'lu', 'name', 'Ministère fir Landwirtschaft, Ernärung a Wäibau'),
(130579, 104703, 'fr', 'name', 'Laboratoire Morphodynamique Continentale et CÓtière'),
(130580, 104704, 'ko', 'name', 'ė‚˜ė…øģ¢…ķ•©źø°ģˆ ģ›'),
(130581, 104704, 'no_lang_code', 'name', 'National NanoFab Center'),
(130582, 104705, 'cs', 'name', 'Univerzita Hradec KrƔlovƩ'),
(130583, 104705, 'en', 'name', 'University of Hradec KrƔlovƩ'),
(130584, 104706, 'fr', 'name', 'France GƩnomique'),
(130585, 104707, 'fr', 'name', 'Laboratoire de GƩnƩtique Cellulaire'),
(130586, 104708, 'fr', 'name', 'Louvre, MusƩe du Louvre'),
(130587, 104709, 'en', 'name', 'S P Jain School of Global Management'),
(130588, 104710, 'en', 'name', 'National Institute of Polar Research'),
(130589, 104710, 'ja', 'name', 'å›½ē«‹ę„µåœ°ē ”ē©¶ę‰€'),
(130590, 104711, 'en', 'name', 'North Country Community College'),
(130591, 104712, 'en', 'name', 'Pasteur Institute of Lille'),
(130592, 104712, 'fr', 'name', 'Institut Pasteur de Lille'),
(130593, 104713, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŲŖŲ±ŲØŁŠŲ© Ų§Ł„Ų£Ų³Ų§Ų³ŁŠŲ©'),
(130594, 104713, 'en', 'name', 'Basic Education College'),
(130595, 104714, 'en', 'name', 'Anzac Research Institute'),
(130596, 104715, 'en', 'name', 'Shanghai Business School'),
(130597, 104715, 'zh', 'name', 'äøŠęµ·å•†å­¦é™¢'),
(130598, 104716, 'en', 'name', 'Travelers Companies, Travelers Companies (United States)'),
(130599, 104717, 'en', 'name', 'Paris Public Health'),
(130600, 104718, 'fr', 'name', 'IschƩmie Reperfusion, MƩtabolisme et Inflammation StƩrile en Transplantation'),
(130601, 104719, 'en', 'name', 'Agogo Presbyterian Women''s College of Education'),
(130602, 104720, 'en', 'name', 'Institute for Advanced Biosciences'),
(130603, 104720, 'fr', 'name', 'Institut pour l''avancƩe des biosciences'),
(130604, 104721, 'no_lang_code', 'name', 'Hyundai Motor Group (South Korea)'),
(130605, 104722, 'fr', 'name', 'Ɖcologie Marine Tropicale des OcĆ©ans Pacifique et Indien'),
(130606, 104723, 'en', 'name', 'Ɩrebro University'),
(130607, 104723, 'fi', 'name', 'Ɩrebron yliopisto'),
(130608, 104723, 'sv', 'name', 'Ɩrebro universitet'),
(130609, 104724, 'no_lang_code', 'name', 'Saab (Sweden)'),
(130610, 104725, 'fr', 'name', 'Physiologie et Physiopathlogie Endocriniennes'),
(130611, 104726, 'fr', 'name', 'Laboratoire d’OcĆ©anologie et de GĆ©osciences'),
(130612, 104727, 'en', 'name', 'PES University'),
(130613, 104728, 'fr', 'name', 'AssemblƩe Nationale de France, French National Assembly'),
(130614, 104729, 'en', 'name', 'Federal University Gusau'),
(130615, 104729, 'ha', 'name', 'Jami''ar Tarayya ta Gusau'),
(130616, 104730, 'en', 'name', 'BMJ Group, BMJ Group (United Kingdom)'),
(130617, 104731, 'en', 'name', 'University College Dublin'),
(130618, 104731, 'ga', 'name', 'An ColƔiste Ollscoile Baile Ɓtha Cliath'),
(130619, 104732, 'en', 'name', 'Armed Forces Academy'),
(130620, 104733, 'en', 'name', 'Tropical and Mediterranean Animal Production Systems'),
(130621, 104733, 'fr', 'name', 'SystĆØmes d’élevage mĆ©diterranĆ©ens et tropicaux'),
(130622, 104734, 'en', 'name', 'Tallinn University'),
(130623, 104734, 'et', 'name', 'Tallinna Ülikool'),
(130624, 104734, 'ru', 'name', 'Таллинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(130625, 104735, 'en', 'name', 'Biology of Reproduction, Environment, Epigenetics and Development'),
(130626, 104735, 'fr', 'name', 'Biologie de la Reproduction, Environnement, EpigƩnƩtique et DƩveloppement'),
(130627, 104736, 'en', 'name', 'Smithsonian Libraries'),
(130628, 104737, 'en', 'name', 'Institute of Physics of the Slovak Academy of Sciences'),
(130629, 104737, 'sk', 'name', 'FyzikÔlny ústav Slovenskej akadémie vied'),
(130630, 104738, 'de', 'name', 'Beethoven-Haus Bonn'),
(130631, 104739, 'cs', 'name', 'Akademie mĆŗzických uměnĆ­ v Praze'),
(130632, 104739, 'en', 'name', 'Academy of Performing Arts in Prague'),
(130633, 104740, 'sk', 'name', 'Nemocnica Bory, a.s'),
(130634, 104741, 'en', 'name', 'ƅland University of Applied Sciences'),
(130635, 104741, 'sv', 'name', 'Hƶgskolan pĆ„ ƅland'),
(130636, 104742, 'no_lang_code', 'name', 'Alenia Aermacchi'),
(130637, 104743, 'pt', 'name', 'Instituto Superior de Gestão'),
(130638, 104744, 'fr', 'name', 'Institut d''Etudes Transtextuelles et Transculturelles'),
(130639, 104745, 'de', 'name', 'Fƶrderverein Bioƶkonomieforschung e.V.'),
(130640, 104746, 'en', 'name', 'Buffalo State University'),
(130641, 104747, 'fr', 'name', 'Observatoire des Sciences de l''Univers de la RƩunion'),
(130642, 104748, 'en', 'name', 'Research Institute for Rare Diseases'),
(130643, 104748, 'es', 'name', 'Instituto de Investigación de Enfermedades Raras'),
(130644, 104749, 'en', 'name', 'Parkinson''s Foundation'),
(130645, 104750, 'en', 'name', 'Chang''an University'),
(130646, 104750, 'zh', 'name', '长安大学'),
(130647, 104751, 'cy', 'name', 'Y Brifysgol Agored'),
(130648, 104751, 'en', 'name', 'The Open University'),
(130649, 104752, 'en', 'name', 'Islamic Azad University, Ashkezar'),
(130650, 104752, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد اؓکذر'),
(130651, 104753, 'en', 'name', 'Fujian University of Traditional Chinese Medicine'),
(130652, 104753, 'zh', 'name', 'ē¦å»ŗēœäø­åŒ»čÆē ”ē©¶é™¢'),
(130653, 104754, 'en', 'name', 'Les Roches Marbella International School of Hotel Management'),
(130654, 104755, 'fi', 'name', 'JyvƤskylƤn Yliopisto, University of JyvƤskylƤ'),
(130655, 104756, 'de', 'name', 'Europarat'),
(130656, 104756, 'en', 'name', 'Council of Europe'),
(130657, 104756, 'es', 'name', 'Consejo de Europa'),
(130658, 104756, 'fr', 'name', 'Conseil de L''Europe'),
(130659, 104756, 'it', 'name', 'Consiglio d''Europa'),
(130660, 104757, 'fr', 'name', 'GƩnƩtique MolƩculaire GƩnomique Microbiologie'),
(130661, 104758, 'en', 'name', 'Mahatma Gandhi University, Nalgonda'),
(130662, 104759, 'en', 'name', 'Fonna Hospital Trust'),
(130663, 104760, 'en', 'name', 'University of Washington Tacoma'),
(130664, 104761, 'de', 'name', 'Technische UniversitƤt Darmstadt'),
(130665, 104761, 'en', 'name', 'Technical University of Darmstadt'),
(130666, 104762, 'en', 'name', 'Miami University'),
(130667, 104763, 'bn', 'name', 'ą¦ą¦Øą¦¾ą¦® মেঔিকেল ą¦•ą¦²ą§‡ą¦œ ও হাসপাতাল'),
(130668, 104763, 'en', 'name', 'Enam Medical College & Hospital'),
(130669, 104764, 'ar', 'name', 'الجامعة Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠŲ© Ų§Ł„Ų„Ł„ŁƒŲŖŲ±ŁˆŁ†ŁŠŲ©'),
(130670, 104764, 'en', 'name', 'Saudi Electronic University'),
(130671, 104765, 'en', 'name', 'International Astronomical Union'),
(130672, 104765, 'fr', 'name', 'Union astronomique internationale'),
(130673, 104766, 'de', 'name', 'Deutsches Humangenom-PhƤnomarchiv'),
(130674, 104766, 'en', 'name', 'German Human Genome-Phenome Archive'),
(130675, 104767, 'fr', 'name', 'DƩlƩgation Aquitaine'),
(130676, 104768, 'en', 'name', 'Center for the Analysis of Sustainable Agricultural Systems'),
(130677, 104769, 'en', 'name', 'University of Trnava'),
(130678, 104769, 'sk', 'name', 'TrnavskĆ” univerzita v Trnave'),
(130679, 104770, 'en', 'name', 'Delaware Humanities Forum'),
(130680, 104771, 'en', 'name', 'MILA University'),
(130681, 104772, 'fr', 'name', 'Institut du droit public et de la science politique'),
(130682, 104773, 'en', 'name', 'NSW Department of Education'),
(130683, 104774, 'en', 'name', 'Mediterranean Experts on Climate and environmental Change'),
(130684, 104775, 'en', 'name', 'Illinois Humanities Council'),
(130685, 104776, 'en', 'name', 'Dutch Heart Foundation'),
(130686, 104776, 'nl', 'name', 'Hartstichting, Nederlandse Hartstichting'),
(130687, 104777, 'en', 'name', 'U.S. Bancorp, U.S. Bancorp (United States)'),
(130688, 104778, 'en', 'name', 'Anadolu University'),
(130689, 104778, 'tr', 'name', 'Anadolu Üniversitesi'),
(130690, 104779, 'en', 'name', 'Mwenge Catholic University'),
(130691, 104779, 'sw', 'name', 'Chuo Kikuu Cha Kikatoliki cha Mwenge'),
(130692, 104780, 'en', 'name', 'University College Prague'),
(130693, 104781, 'es', 'name', 'Instituto Tecnológico Superior de Los Reyes'),
(130694, 104782, 'en', 'name', 'Kenyatta University'),
(130695, 104782, 'sw', 'name', 'Chuo Kikuu cha Kenyatta'),
(130696, 104783, 'no_lang_code', 'name', 'Shell (United Kingdom)'),
(130697, 104784, 'no_lang_code', 'name', 'NGimat (United States)'),
(130698, 104785, 'en', 'name', 'Business Academy SouthWest'),
(130699, 104786, 'en', 'name', 'Jane Street, Jane Street (United States)'),
(130700, 104787, 'en', 'name', 'HAS green academy'),
(130701, 104787, 'nl', 'name', 'HAS green academy'),
(130702, 104788, 'en', 'name', 'Aerojet Rocketdyne (United States)'),
(130703, 104789, 'en', 'name', 'Microenvironment and B-cells: Immunopathology, Cell, Differentiation and Cancer'),
(130704, 104790, 'en', 'name', 'Bengbu University'),
(130705, 104790, 'zh', 'name', 'čšŒåŸ å­¦é™¢'),
(130706, 104791, 'en', 'name', 'Florida Atlantic University'),
(130707, 104792, 'en', 'name', 'Monash Institute of Medical Research'),
(130708, 104793, 'en', 'name', 'Federal Center for Cardiovascular Surgery Astrakhan'),
(130709, 104793, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Центр ДерГечно-Š”Š¾ŃŃƒŠ“ŠøŃŃ‚Š¾Š¹ Š„ŠøŃ€ŃƒŃ€Š³ŠøŠø ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России г. ŠŃŃ‚Ń€Š°Ń…Š°Š½ŃŒ'),
(130710, 104794, 'en', 'name', 'Pacific University'),
(130711, 104795, 'en', 'name', 'Sri Siddhartha Academy of Higher Education'),
(130712, 104796, 'en', 'name', 'SEI Group CSR Foundation (Japan)'),
(130713, 104796, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä½å‹é›»å·„ć‚°ćƒ«ćƒ¼ćƒ—ē¤¾ä¼šč²¢ēŒ®åŸŗé‡‘'),
(130714, 104797, 'en', 'name', 'Second Affiliated Hospital of Nantong University'),
(130715, 104797, 'zh', 'name', 'å—é€šå¤§å­¦ē¬¬äŗŒé™„å±žåŒ»é™¢, å—é€šåø‚ē¬¬äø€äŗŗę°‘åŒ»é™¢'),
(130716, 104798, 'en', 'name', 'National Institute of Technology Uttarakhand'),
(130717, 104799, 'en', 'name', 'Western Norway University of Applied Sciences'),
(130718, 104799, 'no', 'name', 'Høgskulen pÄ Vestlandet'),
(130719, 104800, 'es', 'name', 'Instituto de la Democracia'),
(130720, 104801, 'en', 'name', 'Hechi University'),
(130721, 104801, 'zh', 'name', '河池学院'),
(130722, 104802, 'en', 'name', 'Dish Network, Dish Network (United States)'),
(130723, 104803, 'fr', 'name', 'Laboratoire d''Anthropologie Sociale'),
(130724, 104804, 'pt', 'name', 'UningƔ - Centro UniversitƔrio IngƔ'),
(130725, 104805, 'fr', 'name', 'Laboratoire d''Ecologie des Hydrosystèmes Naturels et Anthropisés'),
(130726, 104806, 'en', 'name', 'Denison University'),
(130727, 104807, 'en', 'name', 'World Organisation for Animal Health'),
(130728, 104808, 'en', 'name', 'University of Belgrade – Faculty of Forestry'),
(130729, 104808, 'sr', 'name', 'Univerzitet u Beogradu – Å umarski fakultet, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – ŠØŃƒŠ¼Š°Ń€ŃŠŗŠø Ń„Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚'),
(130730, 104809, 'en', 'name', 'Agglomeration Community of La Rochelle'),
(130731, 104809, 'fr', 'name', 'CommunautƩ d''agglomƩration de La Rochelle'),
(130732, 104810, 'en', 'name', 'Pain Labs'),
(130733, 104811, 'fr', 'name', 'Oniris, Ɖcole nationale vĆ©tĆ©rinaire, agroalimentaire et de l''alimentation, Nantes-Atlantique'),
(130734, 104812, 'fr', 'name', 'Centre de Recherche sur la Conservation'),
(130735, 104813, 'en', 'name', 'Utenos kolegija Higher Education Institution'),
(130736, 104813, 'lt', 'name', 'Utenos kolegija'),
(130737, 104814, 'en', 'name', 'Human Rights Research and Education Centre'),
(130738, 104814, 'fr', 'name', 'Centre de recherche et d''enseignement sur les droits de la personne'),
(130739, 104815, 'fr', 'name', 'Analyses LittƩraires et Histoire de la Langue'),
(130740, 104816, 'en', 'name', 'Life Science Foundation of Japan'),
(130741, 104816, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹ęŒÆčˆˆč²”å›£'),
(130742, 104817, 'id', 'name', 'Sekolah Tinggi Olahraga dan Kesehatan Bina Guna'),
(130743, 104818, 'en', 'name', 'EDHEC Business School'),
(130744, 104818, 'fr', 'name', 'Ecole des Hautes Etudes Commerciales du Nord'),
(130745, 104819, 'en', 'name', 'Environmental Protection Agency'),
(130746, 104820, 'en', 'name', 'Applied Mathematics and Computer Science, from Genomes to the Environment'),
(130747, 104820, 'fr', 'name', 'MathƩmatiques et Informatique AppliquƩes du GƩnome Ơ l''Environnement'),
(130748, 104821, 'en', 'name', 'Rennes University Hospital'),
(130749, 104821, 'fr', 'name', 'Centre Hospitalier Universitaire de Rennes'),
(130750, 104822, 'no_lang_code', 'name', 'Arkansas Power Electronics International'),
(130751, 104823, 'en', 'name', 'Stony Brook University'),
(130752, 104823, 'es', 'name', 'Universidad de Stony Brook'),
(130753, 104823, 'fr', 'name', 'UniversitĆ© d''Ɖtat de new york Ć  stony brook'),
(130754, 104824, 'fr', 'name', 'Acquisition et Analyse de DonnƩes pour l''Histoire naturelle'),
(130755, 104825, 'de', 'name', 'Nationale Forschungsdateninfrastruktur'),
(130756, 104825, 'en', 'name', 'German National Research Data Infrastructure'),
(130757, 104826, 'en', 'name', 'Nirma University'),
(130758, 104826, 'gu', 'name', 'નિરમા ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(130759, 104827, 'en', 'name', 'Institute of Molecular and Cellular Biology'),
(130760, 104827, 'fr', 'name', 'Institut de Biologie MolƩculaire et Cellulaire'),
(130761, 104828, 'es', 'name', 'Instituto Tecnológico Superior del Occidente del Estado de Hidalgo'),
(130762, 104829, 'fr', 'name', 'Laboratoire Ondes et MatiĆØre d''Aquitaine'),
(130763, 104830, 'el', 'name', 'Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(130764, 104830, 'en', 'name', 'Cyprus University of Technology'),
(130765, 104831, 'en', 'name', 'Open Preservation Foundation'),
(130766, 104832, 'en', 'name', 'Xinxiang University'),
(130767, 104832, 'zh', 'name', '新乔学院'),
(130768, 104833, 'en', 'name', 'Laboratory of Translational Imaging in Oncology'),
(130769, 104833, 'fr', 'name', 'Laboratoire d''imagerie translationnelle en oncologie'),
(130770, 104834, 'en', 'name', 'Akita International University'),
(130771, 104834, 'ja', 'name', 'å›½éš›ę•™é¤Šå¤§å­¦'),
(130772, 104835, 'fr', 'name', 'Biomarqueurs et essais cliniques en CancƩrologie et Onco-HƩmatologie'),
(130773, 104836, 'fr', 'name', 'Plateforme d''Imagerie BiomƩdicale'),
(130774, 104837, 'en', 'name', 'Chengdu Fine Optical Engineering Research Center'),
(130775, 104837, 'zh', 'name', 'ęˆéƒ½ē²¾åÆ†å…‰å­¦å·„ēØ‹ē ”ē©¶äø­åæƒ'),
(130776, 104838, 'en', 'name', 'Institute for Plant Sciences of Montpellier'),
(130777, 104838, 'fr', 'name', 'Institut des Sciences des Plantes de Montpellier'),
(130778, 104839, 'de', 'name', 'Physikalisch-Technische Bundesanstalt'),
(130779, 104839, 'en', 'name', 'German National Metrology Institute'),
(130780, 104840, 'en', 'name', 'Engineering Biology Research Consortium'),
(130781, 104841, 'fr', 'name', 'Centre d’Etudes des Langues, Territoires et IdentitĆ©s Culturelles – Bretagne et Langues Minoritaires'),
(130782, 104842, 'fr', 'name', 'DƩpartement Biologie et AmƩlioration des Plantes'),
(130783, 104843, 'en', 'name', 'Federal Polytechnic, Bida'),
(130784, 104844, 'en', 'name', 'NOAA National Marine Fisheries Service Northwest Fisheries Science Center'),
(130785, 104845, 'en', 'name', 'Jan Biziel University Hospital No. 2 in Bydgoszcz'),
(130786, 104845, 'pl', 'name', 'Szpital Uniwersytecki nr 2 im. dr. Jana Biziela w Bydgoszczy'),
(130787, 104846, 'en', 'name', 'Catholic University in Ruzomberok'),
(130788, 104846, 'sk', 'name', 'Katolícka univerzita v Ružomberku'),
(130789, 104847, 'id', 'name', 'STIKES Muhammadiyah Kuningan'),
(130790, 104848, 'en', 'name', 'Macclesfield College'),
(130791, 104849, 'en', 'name', 'Oxford University Clinical Research Unit'),
(130792, 104850, 'cy', 'name', 'Yr Adran dros Ddatblygu Rhyngwladol'),
(130793, 104850, 'en', 'name', 'Department for International Development'),
(130794, 104851, 'en', 'name', 'Computer Science Laboratory of Lille'),
(130795, 104851, 'fr', 'name', 'Laboratoire d''Informatique Fondamentale de Lille'),
(130796, 104852, 'en', 'name', 'Institute of Parasitology'),
(130797, 104853, 'en', 'name', 'University of Lagos'),
(130798, 104853, 'yo', 'name', 'YunifÔsítì ìlú Èkó'),
(130799, 104854, 'fr', 'name', 'Tempora'),
(130800, 104855, 'en', 'name', 'Indo-French Centre for Applied Mathematics'),
(130801, 104856, 'en', 'name', 'Yulin University'),
(130802, 104856, 'zh', 'name', 'ę¦†ęž—å­¦é™¢'),
(130803, 104857, 'en', 'name', 'Imagine Institute for Genetic Diseases'),
(130804, 104857, 'fr', 'name', 'Institut des Maladies GƩnƩtiques Imagine'),
(130805, 104858, 'en', 'name', 'Sysco (United States)'),
(130806, 104858, 'no_lang_code', 'name', 'Sysco'),
(130807, 104859, 'en', 'name', 'University of Belgrade – Faculty of Security Studies'),
(130808, 104859, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet bezbednosti, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ безбеГности'),
(130809, 104860, 'en', 'name', 'Fortuna Field Station'),
(130810, 104861, 'en', 'name', 'University of Warmia and Mazury in Olsztyn'),
(130811, 104861, 'pl', 'name', 'Uniwersytet Warmińsko-Mazurski w Olsztynie'),
(130812, 104862, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Laboratori Acceleratori e SuperconduttivitĆ  Applicata'),
(130813, 104863, 'en', 'name', 'Contact and Structure Mechanics Laboratory'),
(130814, 104863, 'fr', 'name', 'Laboratoire de MƩcanique des Contacts et des Structures'),
(130815, 104864, 'fr', 'name', 'Maison des Sciences de l''Homme SUD'),
(130816, 104865, 'en', 'name', 'Karlstad University'),
(130817, 104865, 'fi', 'name', 'Karlstadin yliopisto'),
(130818, 104865, 'sv', 'name', 'Karlstads universitet'),
(130819, 104866, 'en', 'name', 'Jawaharlal Nehru Technological University, Kakinada'),
(130820, 104866, 'te', 'name', 'ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ సాంకేతిక ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(130821, 104867, 'en', 'name', 'Dudley College'),
(130822, 104868, 'en', 'name', 'Henan University of Technology'),
(130823, 104868, 'zh', 'name', 'ę²³å—å·„äøšå¤§å­¦'),
(130824, 104869, 'fr', 'name', 'Mitochondrie, stress oxydant et protection musculaire'),
(130825, 104870, 'fr', 'name', 'Laboratoire de MathƩmatiques'),
(130826, 104871, 'en', 'name', 'Barcelona Supercomputing Center'),
(130827, 104871, 'es', 'name', 'Centro Nacional de Supercomputación'),
(130828, 104872, 'en', 'name', 'Gamboa Laboratories'),
(130829, 104872, 'es', 'name', 'Laboratorios de Gamboa'),
(130830, 104873, 'en', 'name', 'Bryn Mawr College'),
(130831, 104874, 'en', 'name', 'All Saints University School of Medicine'),
(130832, 104875, 'en', 'name', 'Hyogo Prefectural Institute of Environmental Sciences'),
(130833, 104876, 'en', 'name', 'Slovenian Language Technologies Society'),
(130834, 104877, 'en', 'name', 'University of Belgrade – Faculty of Sports and Physical Education'),
(130835, 104877, 'sr', 'name', 'Univerzitet u Beogradu – Fakultet sporta i fizičkog vaspitanja, Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ – Š¤Š°ŠŗŃƒŠ»Ń‚ŠµŃ‚ спорта Šø физичког Š²Š°ŃŠæŠøŃ‚Š°ŃšŠ°'),
(130836, 104878, 'es', 'name', 'Centro Nacional de MetrologĆ­a de PanamĆ” (CENAMEP AIP)'),
(130837, 104879, 'en', 'name', 'Jaypee Institute of Information Technology'),
(130838, 104879, 'hi', 'name', 'ą¤œą„‡ą¤Ŗą„€ ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ ą¤‡ą¤Øą„ą¤«ą„‰ą¤°ą„ą¤®ą„‡ą¤¶ą¤Ø ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€'),
(130839, 104880, 'en', 'name', 'University of Osijek'),
(130840, 104880, 'hr', 'name', 'SveučiliŔte Josipa Jurja Strossmayera u Osijeku'),
(130841, 104881, 'en', 'name', 'Saba University School of Medicine'),
(130842, 104882, 'en', 'name', 'Anand International College of Engineering'),
(130843, 104883, 'en', 'name', 'Giresun University'),
(130844, 104883, 'tr', 'name', 'Giresun Üniversitesi'),
(130845, 104884, 'en', 'name', 'Qiannan Normal College For Nationalities'),
(130846, 104884, 'zh', 'name', 'é»”å—ę°‘ę—åøˆčŒƒå­¦é™¢'),
(130847, 104885, 'en', 'name', 'Future University Hakodate'),
(130848, 104885, 'ja', 'name', 'å…¬ē«‹ćÆć“ć ć¦ęœŖę„å¤§å­¦'),
(130849, 104886, 'ca', 'name', 'Universitat d''Alacant'),
(130850, 104886, 'en', 'name', 'University of Alicante'),
(130851, 104886, 'es', 'name', 'Universidad de Alicante'),
(130852, 104887, 'fr', 'name', 'Climat, Environnement, Couplages et Incertitudes'),
(130853, 104888, 'en', 'name', '46th Central Research Institute of the Ministry of Defense of the Russian Federation'),
(130854, 104888, 'ru', 'name', '46 Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° обороны Российской ФеГерации'),
(130855, 104889, 'es', 'name', 'Universidad Tecnologica de Durango'),
(130856, 104890, 'fr', 'name', 'Laboratoire d’Étude et de Recherche sur l’Économie, les Politiques et les SystĆØmes Sociaux'),
(130857, 104891, 'en', 'name', 'Chinese People''s Liberation Army'),
(130858, 104891, 'zh', 'name', '中国人民解放军'),
(130859, 104892, 'en', 'name', 'Center for Historical Studies'),
(130860, 104892, 'fr', 'name', 'Centre de Recherches Historiques'),
(130861, 104893, 'en', 'name', 'Anhui University'),
(130862, 104893, 'zh', 'name', '安徽大学'),
(130863, 104894, 'fr', 'name', 'Laboratoire ProcƩdƩs, MatƩriaux et Energie Solaire'),
(130864, 104895, 'en', 'name', 'Federal Polytechnic, Idah'),
(130865, 104896, 'en', 'name', 'Gulf States Marine Fisheries Commission'),
(130866, 104897, 'fr', 'name', 'HƓpital Necker-Enfants Malades'),
(130867, 104898, 'de', 'name', 'UniversitƤt Trient'),
(130868, 104898, 'en', 'name', 'University of Trento'),
(130869, 104898, 'fr', 'name', 'UniversitƩ de Trente'),
(130870, 104898, 'it', 'name', 'UniversitĆ  degli Studi di Trento'),
(130871, 104899, 'en', 'name', 'Northwest University First Hospital'),
(130872, 104899, 'zh', 'name', 'č„æåŒ—å¤§å­¦ē¬¬äø€åŒ»é™¢'),
(130873, 104900, 'fr', 'name', 'Laboratoire Information GƩnomique et Structurale'),
(130874, 104901, 'en', 'name', 'Munzur University'),
(130875, 104901, 'tr', 'name', 'Munzur Üniversitesi'),
(130876, 104902, 'en', 'name', 'Nassau Community College'),
(130877, 104903, 'en', 'name', 'Hennepin Healthcare Research Institute'),
(130878, 104904, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų§Ł…Ų§Ł… Ų®Ł…ŪŒŁ†ŪŒ تهران'),
(130879, 104904, 'no_lang_code', 'name', 'Imam Khomeini Hospital'),
(130880, 104905, 'en', 'name', 'Kazakh Leading Academy of Architecture and Civil Engineering'),
(130881, 104905, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› бас ŃÓ™ŃƒŠ»ŠµŃ‚-құрылыс Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(130882, 104905, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠ°Ń Š³Š¾Š»Š¾Š²Š½Š°Ń Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š½Š¾-ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(130883, 104906, 'en', 'name', 'Akatsi College of Education'),
(130884, 104907, 'en', 'name', 'Field Observatory in Urban Hydrology'),
(130885, 104907, 'fr', 'name', 'Observatoire de terrain en hydrologie urbaine'),
(130886, 104908, 'en', 'name', 'West Mendip Community Hospital'),
(130887, 104909, 'id', 'name', 'Politeknik Negeri Bandung'),
(130888, 104910, 'en', 'name', 'University of Reading'),
(130889, 104911, 'cy', 'name', 'Ysgol Gerdd a Drama y Guildhall'),
(130890, 104911, 'en', 'name', 'Guildhall School of Music and Drama'),
(130891, 104912, 'en', 'name', 'South China Agricultural University'),
(130892, 104912, 'zh', 'name', 'åŽå—å†œäøšå¤§å­¦'),
(130893, 104913, 'en', 'name', 'PƔzmƔny PƩter Catholic University'),
(130894, 104913, 'hu', 'name', 'PƔzmƔny PƩter Katolikus Egyetem'),
(130895, 104914, 'es', 'name', 'Red Iberoamericana de Neurociencia Cognitiva'),
(130896, 104915, 'fr', 'name', 'PhysioPathologie des Adaptations Nutritionnelles'),
(130897, 104916, 'fr', 'name', 'BiomatƩriaux et BioingƩnierie'),
(130898, 104917, 'en', 'name', 'Centre for Research on Health and Nursing'),
(130899, 104917, 'fr', 'name', 'Centre de recherche en santƩ et sciences infirmieres'),
(130900, 104918, 'no_lang_code', 'name', 'China National Building Materials Group (China)'),
(130901, 104919, 'fr', 'name', 'PAnTher - Physiopathologie Animale et bioThérapie du muscle et du système nerveux'),
(130902, 104920, 'de', 'name', 'Fachhochschule Westschweiz - Waadt'),
(130903, 104920, 'en', 'name', 'University of Applied Sciences and Arts Western Switzerland - Vaud'),
(130904, 104920, 'fr', 'name', 'HES-SO Vaud, Haute Ɖcole SpĆ©cialisĆ©e de Suisse Occidentale - Vaud'),
(130905, 104921, 'fr', 'name', 'Institut Pprime'),
(130906, 104922, 'en', 'name', 'University of Szczecin'),
(130907, 104922, 'pl', 'name', 'Uniwersytet Szczeciński'),
(130908, 104923, 'en', 'name', 'Meningitis Now'),
(130909, 104924, 'en', 'name', 'United States National Committee of the International Council on Monuments and Sites'),
(130910, 104925, 'en', 'name', 'SUNY Fredonia'),
(130911, 104926, 'en', 'name', 'European Space Research Institute'),
(130912, 104927, 'en', 'name', 'Aisyah University'),
(130913, 104928, 'en', 'name', 'British Society of Interventional Radiology'),
(130914, 104929, 'en', 'name', 'Wuhan Polytechnic University'),
(130915, 104929, 'zh', 'name', '武汉轻巄大学'),
(130916, 104930, 'en', 'name', 'University of Wisconsin–Oshkosh'),
(130917, 104930, 'fr', 'name', 'UniversitĆ© du Wisconsin–Oshkosh'),
(130918, 104931, 'fr', 'name', 'AMIS - Laboratoire d''anthropologie moléculaire et imagerie de synthèse'),
(130919, 104932, 'en', 'name', 'North West Regional College'),
(130920, 104933, 'en', 'name', 'Coast Mountain College'),
(130921, 104934, 'en', 'name', 'PG&E Corporation, PG&E Corporation (United States)'),
(130922, 104935, 'en', 'name', 'Royal National Institute for Deaf People'),
(130923, 104936, 'en', 'name', 'Interdisciplinary Laboratory for Applied Research in Health Economics'),
(130924, 104936, 'fr', 'name', 'Laboratoire Interdisciplinaire de Recherche AppliquƩe en Economie-Gestion et SantƩ'),
(130925, 104937, 'fr', 'name', 'UMS Saint-Louis'),
(130926, 104938, 'fr', 'name', 'Modélisation, information et systèmes'),
(130927, 104939, 'en', 'name', 'National Applied Research Laboratories'),
(130928, 104939, 'zh', 'name', 'č²”åœ˜ę³•äŗŗåœ‹å®¶åÆ¦é©—ē ”ē©¶é™¢'),
(130929, 104940, 'en', 'name', 'Brooklyn Academy of Music'),
(130930, 104941, 'en', 'name', 'New York Genome Center'),
(130931, 104942, 'en', 'name', 'Creighton University'),
(130932, 104943, 'en', 'name', 'National Institute of Electrical Engineering, Electronics, Computer Science,Fluid Mechanics & Telecommunications and Networks'),
(130933, 104943, 'es', 'name', 'Escuela Nacional Superior de Electrotécnica, Electrónica, InformÔtica, HidrÔulica y Telecomunicaciones de Toulouse'),
(130934, 104943, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Ɖlectrotechnique, d''Ɖlectronique, d''Informatique, d''Hydraulique et des TĆ©lĆ©communications'),
(130935, 104944, 'en', 'name', 'Radboud University Medical Center'),
(130936, 104944, 'nl', 'name', 'Radboudumc'),
(130937, 104945, 'fr', 'name', 'Laboratoire Parole et Langage'),
(130938, 104946, 'fr', 'name', 'Institut Charles Sadron, Institut charles-sadron'),
(130939, 104947, 'fr', 'name', 'Laboratoire Universitaire de Recherche en Production AutomatisƩe'),
(130940, 104948, 'en', 'name', 'Government of the United Kingdom'),
(130941, 104949, 'en', 'name', 'Pierre Aigrain Laboratory'),
(130942, 104949, 'fr', 'name', 'Laboratoire Pierre Aigrain'),
(130943, 104950, 'fr', 'name', 'Dispositifs d''information et de communication à l''ère du numérique - Paris Ile-de-france'),
(130944, 104951, 'en', 'name', 'Royal Central School of Speech and Drama'),
(130945, 104952, 'en', 'name', 'Bournemouth University'),
(130946, 104953, 'en', 'name', 'NFDI4Chem'),
(130947, 104954, 'en', 'name', 'Apor Vilmos Catholic College'),
(130948, 104954, 'hu', 'name', 'Apor Vilmos Katolikus Főiskola'),
(130949, 104955, 'fr', 'name', 'Institut de Chimie MolƩculaire et des MatƩriaux d''Orsay'),
(130950, 104956, 'fr', 'name', 'Laboratoire MƩmoire, Cerveau et Cognition'),
(130951, 104957, 'en', 'name', 'Tianjin Normal University'),
(130952, 104957, 'zh', 'name', '天擄师范大学'),
(130953, 104958, 'en', 'name', 'Amrutvahini College of Engineering'),
(130954, 104959, 'en', 'name', 'Cambridge IVF'),
(130955, 104960, 'en', 'name', 'Bethany College'),
(130956, 104961, 'en', 'name', 'French Foundation for Biodiversity Research'),
(130957, 104961, 'fr', 'name', 'Fondation Pour la Recherche Sur la BiodiversitƩ'),
(130958, 104962, 'en', 'name', 'Moscow Institute of Psychoanalysis'),
(130959, 104962, 'ru', 'name', 'Московский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психоанализа'),
(130960, 104963, 'en', 'name', 'General Royalties System'),
(130961, 104963, 'es', 'name', 'Sistema General de RegalĆ­as de Colombia'),
(130962, 104964, 'en', 'name', 'Assumption College of Davao'),
(130963, 104965, 'en', 'name', 'CANTHER - Cancer, Heterogeneity, Plasticity and Resistance to Therapies'),
(130964, 104965, 'fr', 'name', 'CANTHER - HƩtƩrogƩnƩitƩ, PlasticitƩ et RƩsistance aux ThƩrapies des Cancers'),
(130965, 104966, 'fr', 'name', 'Récepteurs Nucléaires, Maladies Cardiovasculaires et Diabète'),
(130966, 104967, 'en', 'name', 'Birmingham Metropolitan College'),
(130967, 104968, 'en', 'name', 'Microsoft Research MontrƩal (Canada)'),
(130968, 104969, 'es', 'name', 'Universidad Regional Amazónica IKIAM'),
(130969, 104970, 'it', 'name', 'UniversitĆ  del Litorale'),
(130970, 104970, 'no_lang_code', 'name', 'University of Primorska'),
(130971, 104970, 'sl', 'name', 'Univerza na Primorskem'),
(130972, 104971, 'en', 'name', 'North Minzu University'),
(130973, 104971, 'zh', 'name', 'åŒ—ę–¹ę°‘ę—å¤§å­¦'),
(130974, 104972, 'en', 'name', 'Water, Soil and Plant Analysis'),
(130975, 104972, 'fr', 'name', 'Analyses des eaux, sols et vƩgƩtaux'),
(130976, 104973, 'en', 'name', 'Technical University of KoŔice'),
(130977, 104973, 'sk', 'name', 'TechnickÔ univerzita v KoŔiciach'),
(130978, 104974, 'en', 'name', 'National Institute of Standards and Technology'),
(130979, 104974, 'es', 'name', 'Instituto Nacional de EstƔndares y Tecnologƭa'),
(130980, 104975, 'fr', 'name', 'Institut des Sciences MolƩculaires de Marseille'),
(130981, 104976, 'fr', 'name', 'Laboratoire Parisien de Psychologie Sociale'),
(130982, 104977, 'es', 'name', 'Fundación Renal'),
(130983, 104978, 'no_lang_code', 'name', 'Xijing University'),
(130984, 104979, 'en', 'name', 'Humber College'),
(130985, 104980, 'en', 'name', 'Leiden University Medical Center'),
(130986, 104980, 'nl', 'name', 'Leids Universitair Medisch Centrum'),
(130987, 104981, 'id', 'name', 'Institut Teknologi dan Sains Mandala'),
(130988, 104982, 'es', 'name', 'Centro de Investigaciones Energéticas, Medioambientales y Tecnológicas'),
(130989, 104983, 'en', 'name', 'Genetics, Functional Genomics and Biotechnology'),
(130990, 104983, 'fr', 'name', 'GƩnƩtique, GƩnomique Fonctionnelle et Biotechnologies'),
(130991, 104984, 'en', 'name', 'The Small Earth Nepal'),
(130992, 104985, 'fr', 'name', 'Centre d''Etudes Hispaniques d''Amiens'),
(130993, 104986, 'fr', 'name', 'Institut National de la Recherche Agronomique'),
(130994, 104987, 'fr', 'name', 'Plant Health Institute de Montpellier'),
(130995, 104988, 'pt', 'name', 'Fundacao Escola Superior da Defensoria Publica do Estado do Rio de Janeiro'),
(130996, 104989, 'en', 'name', 'Scottish Salmon Producers Organisation'),
(130997, 104990, 'en', 'name', 'Mathematics Research Institute of Rennes'),
(130998, 104990, 'fr', 'name', 'Institut de recherche mathƩmatique de Rennes'),
(130999, 104991, 'ca', 'name', 'Universitat de Còrdova'),
(131000, 104991, 'en', 'name', 'University of Córdoba'),
(131001, 104991, 'es', 'name', 'Universidad de Córdoba'),
(131002, 104992, 'fr', 'name', 'Imagerie X en ostƩo-articulaire pour la recherche'),
(131003, 104993, 'en', 'name', 'Zhenjiang College'),
(131004, 104993, 'zh', 'name', 'é•‡ę±Ÿåø‚é«˜ē­‰äø“ē§‘å­¦ę ”'),
(131005, 104994, 'no_lang_code', 'name', 'Continental (United States)'),
(131006, 104995, 'en', 'name', 'Equifax, Equifax (United States)'),
(131007, 104996, 'no_lang_code', 'name', 'Epson (United States)'),
(131008, 104997, 'es', 'name', 'Universidad Ciudadana de Nuevo León'),
(131009, 104998, 'it', 'name', 'IRCCS Eugenio Medea'),
(131010, 104999, 'en', 'name', 'The Centre for Reproductive & Genetic Health'),
(131011, 105000, 'fr', 'name', 'UMR GƩographie-citƩs'),
(131012, 105001, 'en', 'name', 'All Japan Labor Welfare Foundation'),
(131013, 105001, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…Øę—„ęœ¬åŠ“åƒē¦ē„‰å”ä¼š'),
(131014, 105002, 'pt', 'name', 'Centro para o Desenvolvimento RƔpido e Sustentado de Produto'),
(131015, 105003, 'en', 'name', 'Hull York Medical School'),
(131016, 105004, 'ar', 'name', 'Ų§Ł„Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ų¹Ų±ŲØŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ł†Ł‚Ł„ Ų§Ł„ŲØŲ­Ų±ŁŠ'),
(131017, 105004, 'en', 'name', 'Arab Academy for Science, Technology, and Maritime Transport'),
(131018, 105004, 'fr', 'name', 'AcadƩmie Arabe des Sciences, de la Technologie et des Transports Maritimes'),
(131019, 105005, 'en', 'name', 'Telkom University'),
(131020, 105006, 'en', 'name', 'Taraba State University'),
(131021, 105007, 'en', 'name', 'Federal University of Health Sciences Azare'),
(131022, 105008, 'en', 'name', 'Al-Hikmah University'),
(131023, 105009, 'en', 'name', 'National University'),
(131024, 105009, 'tl', 'name', 'Pamantasang Pambansa'),
(131025, 105010, 'en', 'name', 'W. M. Keck Foundation'),
(131026, 105011, 'fr', 'name', 'Laboratoire de MƩtƩorologie Dynamique'),
(131027, 105012, 'en', 'name', 'Ministry of Marine Affairs and Fisheries'),
(131028, 105012, 'id', 'name', 'Kementerian Kelautan dan Perikanan'),
(131029, 105013, 'de', 'name', 'Helmholtz-Zentrum für Umweltforschung'),
(131030, 105013, 'en', 'name', 'Helmholtz Centre for Environmental Research'),
(131031, 105014, 'en', 'name', 'The Institute of Medical Science, Asahi Life Foundation'),
(131032, 105014, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęœę—„ē”Ÿå‘½ęˆäŗŗē—…ē ”ē©¶ę‰€ 附属医院'),
(131033, 105015, 'en', 'name', 'Henan University of Economic and Law'),
(131034, 105015, 'zh', 'name', 'ę²³å—č“¢ē»å­¦é™¢'),
(131035, 105016, 'en', 'name', 'Netherlands Institute for Radio Astronomy'),
(131036, 105016, 'nl', 'name', 'Nederlands Instituut voor Radioastronomie'),
(131037, 105017, 'bn', 'name', 'ą¦øą¦æą¦²ą§‡ą¦Ÿ ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(131038, 105017, 'en', 'name', 'Sylhet Agricultural University'),
(131039, 105018, 'en', 'name', 'Ministry of Environment Protection and Agriculture of Georgia'),
(131040, 105018, 'ka', 'name', 'įƒ”įƒįƒ„įƒįƒ įƒ—įƒ•įƒ”įƒšįƒįƒ” įƒ’įƒįƒ įƒ”įƒ›įƒįƒ” įƒ“įƒįƒŖįƒ•įƒ˜įƒ”įƒ įƒ“įƒ įƒ”įƒįƒ¤įƒšįƒ˜įƒ” įƒ›įƒ”įƒ£įƒ įƒœįƒ”įƒįƒ‘įƒ˜įƒ” įƒ”įƒįƒ›įƒ˜įƒœįƒ˜įƒ”įƒ¢įƒ įƒ'),
(131041, 105019, 'en', 'name', 'COMTES FHT a.s., Complete Technological Service - Forming Heat Treatment'),
(131042, 105020, 'en', 'name', 'Amagasaki Chuo Hospital'),
(131043, 105020, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗäø­å¤®ä¼šå°¼å“Žäø­å¤®ē—…é™¢'),
(131044, 105021, 'en', 'name', 'University of Montemorelos'),
(131045, 105021, 'es', 'name', 'Universidad de Montemorelos'),
(131046, 105022, 'es', 'name', 'Instituto de Investigaciones Agropecuarias'),
(131047, 105023, 'en', 'name', 'Okinawa Prefectural Institute of Animal Health'),
(131048, 105023, 'ja', 'name', 'ę²–ēø„ēœŒå®¶ē•œč”›ē”Ÿč©¦éØ“å “'),
(131049, 105024, 'en', 'name', 'Sapporo City University'),
(131050, 105024, 'ja', 'name', 'ęœ­å¹Œåø‚ē«‹å¤§å­¦'),
(131051, 105025, 'de', 'name', 'Universität für Musik und darstellende Kunst Wien'),
(131052, 105025, 'en', 'name', 'University of Music and Performing Arts Vienna'),
(131053, 105025, 'sl', 'name', 'Univerza za glasbo in upodabljajoče umetnosti Dunaj'),
(131054, 105026, 'pt', 'name', 'Instituto das Florestas e Conservação da Natureza'),
(131055, 105027, 'en', 'name', 'Royal Museum for Central Africa'),
(131056, 105027, 'fr', 'name', 'MusƩe royal de l''Afrique central'),
(131057, 105027, 'nl', 'name', 'Koninklijk Museum voor Centraal -Afrika'),
(131058, 105028, 'en', 'name', 'Kharkiv Institute of Physics and Technology'),
(131059, 105028, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(131060, 105028, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ фізико-технічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(131061, 105029, 'fr', 'name', 'Centre Canadien de Rayonnement Synchrotron'),
(131062, 105029, 'no_lang_code', 'name', 'Canadian Light Source (Canada)'),
(131063, 105030, 'cy', 'name', 'Ysgol Fusnes Llundain'),
(131064, 105030, 'en', 'name', 'London Business School'),
(131065, 105031, 'pt', 'name', 'Autoridade Nacional de Comunicacoes'),
(131066, 105032, 'en', 'name', 'Ungku Omar Polytechnic'),
(131067, 105032, 'ms', 'name', 'Politeknik Ungku Omar'),
(131068, 105033, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŲÆŲ§Ų±Ų§'),
(131069, 105033, 'en', 'name', 'Jadara University'),
(131070, 105034, 'en', 'name', 'Mining and Metallurgy Institute Bor'),
(131071, 105034, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за Ń€ŃƒŠ“Š°Ń€ŃŃ‚Š²Š¾ Šø Š¼ŠµŃ‚Š°Š»ŃƒŃ€Š³ŠøŃ˜Ńƒ Бор'),
(131072, 105035, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في الؓارقة'),
(131073, 105035, 'en', 'name', 'American University of Sharjah'),
(131074, 105035, 'fa', 'name', 'دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ ؓارجه'),
(131075, 105036, 'en', 'name', 'Grand Valley State University'),
(131076, 105037, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¬Ų²ŁŠŲ±Ų©'),
(131077, 105037, 'en', 'name', 'University of Gezira'),
(131078, 105038, 'en', 'name', 'Akita Prefectural Institute of Fisheries'),
(131079, 105038, 'ja', 'name', 'ē§‹ē”°ēœŒę°“ē”£ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(131080, 105039, 'ro', 'name', 'Asociatia Românã a Cãrnii'),
(131081, 105040, 'en', 'name', 'INSA Strasbourg'),
(131082, 105040, 'fr', 'name', 'Institut National des Sciences AppliquƩes de Strasbourg'),
(131083, 105041, 'en', 'name', 'Institute for Plant Protection and Environment'),
(131084, 105041, 'sr', 'name', 'Institut za zaŔtitu bilja i životnu sredinu'),
(131085, 105042, 'en', 'name', 'University of North Georgia'),
(131086, 105043, 'en', 'name', 'Kalamazoo College'),
(131087, 105044, 'de', 'name', 'Hochschule Hamm-Lippstadt'),
(131088, 105044, 'en', 'name', 'Hamm-Lippstadt University of Applied Sciences'),
(131089, 105045, 'en', 'name', 'Endocrinology and Metabolism Molecular-Cellular Sciences Institute'),
(131090, 105045, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… Ų³Ł„ŁˆŁ„ŪŒ و Ł…ŁˆŁ„Ś©ŁˆŁ„ŪŒ ŲŗŲÆŲÆ');
INSERT INTO `ror_settings` VALUES
(131091, 105046, 'en', 'name', 'Drake University'),
(131092, 105046, 'es', 'name', 'Universidad Drake'),
(131093, 105047, 'en', 'name', 'Portuguese Joint Command and Staff College'),
(131094, 105047, 'pt', 'name', 'Instituto de Estudos Superiores Militares'),
(131095, 105048, 'en', 'name', 'Directorate for Biological Sciences'),
(131096, 105049, 'en', 'name', 'Hyogo Medical University'),
(131097, 105049, 'ja', 'name', 'å…µåŗ«åŒ»ē§‘å¤§å­¦'),
(131098, 105050, 'en', 'name', 'Da Nang University of Technology'),
(131099, 105050, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c BĆ”ch khoa, ĐẔi hį»c ĐƠ Nįŗµng'),
(131100, 105051, 'pt', 'name', 'Associação BIOPOLIS - Rede de Investigação em Biodiversidade e Biologia Evolutiva'),
(131101, 105052, 'en', 'name', 'Kyoto Koka Women''s College'),
(131102, 105052, 'ja', 'name', 'äŗ¬éƒ½å…‰čÆå„³å­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(131103, 105053, 'fr', 'name', 'Ɖcole de Technologie SupĆ©rieure'),
(131104, 105054, 'en', 'name', 'Roointan Arash Hospital'),
(131105, 105054, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¬Ų§Ł…Ų¹ ŲØŲ§Ł†ŁˆŲ§Ł† Ų¢Ų±Ų“'),
(131106, 105055, 'en', 'name', 'Indian Institute of Technology Guwahati'),
(131107, 105055, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€'),
(131108, 105055, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“—ąµą“µą“¹ą“¾ą“Ÿąµą“Ÿą“æ'),
(131109, 105055, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(131110, 105055, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ąÆą®µą®•ą®¾ą®¤ąÆą®¤ą®æ'),
(131111, 105056, 'en', 'name', 'Ponce Health Sciences University'),
(131112, 105056, 'es', 'name', 'Escuela de Medicina de Ponce'),
(131113, 105057, 'en', 'name', 'Miyoshi Central Hospital'),
(131114, 105057, 'ja', 'name', '市立三欔中央病院'),
(131115, 105058, 'en', 'name', 'National Commission for Museums and Monuments'),
(131116, 105059, 'en', 'name', 'Danylo Halytsky Lviv National Medical University'),
(131117, 105059, 'pl', 'name', 'Lwowski Narodowy Uniwersytet Medyczny im. Daniela Halickiego'),
(131118, 105059, 'ru', 'name', 'Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Данила Галицкого'),
(131119, 105059, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Данила Š“Š°Š»ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(131120, 105060, 'en', 'name', 'Global Environmental Forum'),
(131121, 105060, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°ēƒćƒ»äŗŗé–“ē’°å¢ƒćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(131122, 105061, 'en', 'name', 'Japan Foundation for AIDS Prevention'),
(131123, 105061, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚Øć‚¤ć‚ŗäŗˆé˜²č²”å›£'),
(131124, 105062, 'pt', 'name', 'Centro de Estudos Florestais'),
(131125, 105063, 'en', 'name', 'Center for Water Quality Research'),
(131126, 105063, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ کیفیت Ų¢ŲØ'),
(131127, 105064, 'en', 'name', 'Institute of Forest Ecology of the Slovak Academy of Sciences'),
(131128, 105064, 'sk', 'name', 'Ústav ekológie lesa SlovenskÔ akadémia vied'),
(131129, 105065, 'en', 'name', 'Mute'),
(131130, 105066, 'en', 'name', 'National Institute of Materials Physics'),
(131131, 105067, 'no_lang_code', 'name', 'Pertamina (Indonesia)'),
(131132, 105068, 'en', 'name', 'Japan Hydrographic Association'),
(131133, 105068, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę°“č·Æå”ä¼š'),
(131134, 105069, 'id', 'name', 'Universitas Nusantara PGRI Kediri'),
(131135, 105070, 'en', 'name', 'Sensho-kai Eye Institute'),
(131136, 105070, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåƒē…§ä¼šåƒåŽŸēœ¼ē§‘åŒ»é™¢'),
(131137, 105071, 'pt', 'name', 'APDSI'),
(131138, 105072, 'no_lang_code', 'name', 'Access 2 Perspectives'),
(131139, 105073, 'en', 'name', 'Paris 1 PanthƩon-Sorbonne University'),
(131140, 105073, 'fr', 'name', 'UniversitƩ Paris 1 PanthƩon-Sorbonne'),
(131141, 105074, 'fr', 'name', 'CollĆØge international des sciences territoriales'),
(131142, 105075, 'en', 'name', 'Jawaharlal Nehru Technological University, Hyderabad'),
(131143, 105075, 'ta', 'name', 'ą®œą®µą®•ą®°ąÆą®²ą®¾ą®²ąÆ நேரு ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®µą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(131144, 105075, 'te', 'name', 'ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ సాంకేతిక ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(131145, 105076, 'en', 'name', 'Akashio Research Institute of Kagawa Prefecture'),
(131146, 105076, 'ja', 'name', 'é¦™å·ēœŒčµ¤ę½®ē ”ē©¶ę‰€'),
(131147, 105077, 'fr', 'name', 'PƓle de Recherche pour l''Organisation et la Diffusion de l''Information GƩographique'),
(131148, 105078, 'bg', 'name', 'ЮгозапаГен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠŠµŠ¾Ń„ŠøŃ‚ Рилски'),
(131149, 105078, 'en', 'name', 'South-West University "Neofit Rilski"'),
(131150, 105079, 'en', 'name', 'Association for Health Economics Research and Social Insurance and Welfare'),
(131151, 105079, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ»ē™‚ēµŒęøˆē ”ē©¶ćƒ»ē¤¾ä¼šäæé™ŗē¦ē„‰å”ä¼š'),
(131152, 105080, 'fr', 'name', 'HƓpital du Saint-Sacrement'),
(131153, 105081, 'no_lang_code', 'name', 'Iberdrola (Spain)'),
(131154, 105082, 'en', 'name', 'University of Cagliari'),
(131155, 105082, 'fr', 'name', 'UniversitƩ de Cagliari'),
(131156, 105082, 'it', 'name', 'UniversitĆ  degli Studi di Cagliari'),
(131157, 105083, 'en', 'name', 'Wollega University'),
(131158, 105084, 'en', 'name', 'THE Institute Of Clinical Psychiatry'),
(131159, 105084, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē²¾ē„žåŒ»å­¦ē ”ē©¶ę‰€'),
(131160, 105085, 'ca', 'name', 'Institut Universitari Europeu'),
(131161, 105085, 'de', 'name', 'EuropƤisches Hochschulinstitut'),
(131162, 105085, 'en', 'name', 'European University Institute'),
(131163, 105085, 'fr', 'name', 'Institut universitaire europƩen de florence'),
(131164, 105085, 'it', 'name', 'Istituto Universitario Europeo'),
(131165, 105086, 'en', 'name', 'Keele University'),
(131166, 105087, 'es', 'name', 'Instituto Universitario de La Paz'),
(131167, 105088, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أم Ų§Ł„ŲØŁˆŲ§Ł‚ŁŠ'),
(131168, 105088, 'en', 'name', 'Larbi Ben M''hidi University of Oum El Bouaghi'),
(131169, 105089, 'es', 'name', 'Universidad Católica de Cuenca'),
(131170, 105090, 'en', 'name', 'Instituto Federal Goiano'),
(131171, 105091, 'en', 'name', 'Indian Institute of Technology Gandhinagar'),
(131172, 105091, 'gu', 'name', 'iit ni jankari'),
(131173, 105091, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®¾ą®ØąÆą®¤ą®æą®Øą®•ą®°ąÆ'),
(131174, 105092, 'en', 'name', 'Sanyo Gakuen Junior College'),
(131175, 105092, 'ja', 'name', 'å±±é™½å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(131176, 105093, 'en', 'name', 'University of Maragheh'),
(131177, 105093, 'fa', 'name', 'دانؓگاه مراغه'),
(131178, 105094, 'en', 'name', 'Marondera University of Agricultural Sciences and Technology'),
(131179, 105095, 'en', 'name', 'Kohsei Chuo General Hospital'),
(131180, 105095, 'ja', 'name', 'å…Øå›½åœŸęœØå»ŗēÆ‰å›½ę°‘å„åŗ·äæé™ŗēµ„åˆē·åˆē—…é™¢åŽšē”Ÿäø­å¤®ē—…é™¢'),
(131181, 105096, 'en', 'name', 'Ambedkar University Delhi'),
(131182, 105096, 'hi', 'name', 'ą¤…ą¤®ą„ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(131183, 105097, 'es', 'name', 'Hospital Son Llatzer'),
(131184, 105098, 'de', 'name', 'FH Campus Wien'),
(131185, 105099, 'en', 'name', 'Pham Ngoc Thach University of Medicine'),
(131186, 105099, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Y khoa Phįŗ”m Ngį»c Thįŗ”ch'),
(131187, 105100, 'en', 'name', 'Federal University of Pampa'),
(131188, 105100, 'pt', 'name', 'Universidade Federal do Pampa'),
(131189, 105101, 'de', 'name', 'Nordakademie'),
(131190, 105102, 'en', 'name', 'Nationwide Children''s Hospital'),
(131191, 105103, 'en', 'name', 'Samford University'),
(131192, 105104, 'en', 'name', 'NOAA RESTORE Science Program'),
(131193, 105105, 'ja', 'name', 'é™å²”ēœŒē«‹é™å²”ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(131194, 105105, 'no_lang_code', 'name', 'Shizuoka Cancer Center'),
(131195, 105106, 'en', 'name', 'Tottori Agricultural Experiment Station'),
(131196, 105106, 'ja', 'name', 'é³„å–ēœŒč¾²ę„­č©¦éØ“å “'),
(131197, 105107, 'de', 'name', 'PƤdagogische Hochschule Heidelberg'),
(131198, 105107, 'en', 'name', 'Heidelberg University of Education'),
(131199, 105108, 'en', 'name', 'Korea Research Institute of Ships and Ocean Engineering'),
(131200, 105109, 'en', 'name', 'Institute of Experimental Physics of the Slovak Academy of Sciences'),
(131201, 105109, 'sk', 'name', 'Ústav ExperimentÔlnej Fyziky SlovenskÔ akadémia vied'),
(131202, 105110, 'en', 'name', 'Japanese Society for Rehabilitation of Persons with Disabilities'),
(131203, 105110, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éšœå®³č€…ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å”ä¼š'),
(131204, 105111, 'en', 'name', 'Stichting Arab West Foundation'),
(131205, 105112, 'en', 'name', 'South African Theological Seminary'),
(131206, 105113, 'en', 'name', 'ORT Braude College'),
(131207, 105113, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ להנדהה ××•×Ø×˜ בראודה'),
(131208, 105114, 'en', 'name', 'Fukuoka City Education Center'),
(131209, 105114, 'ja', 'name', 'ē¦å²”åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(131210, 105115, 'en', 'name', 'International School for Advanced Studies'),
(131211, 105115, 'fr', 'name', 'Ɖcole internationale supĆ©rieure d''Ć©tudes avancĆ©es'),
(131212, 105115, 'it', 'name', 'Scuola Internazionale Superiore di Studi Avanzati'),
(131213, 105116, 'pt', 'name', 'Ordem dos Psicólogos Portugueses'),
(131214, 105117, 'en', 'name', 'Community Action Tenants Union'),
(131215, 105118, 'en', 'name', 'Mimasaka Junior College'),
(131216, 105118, 'ja', 'name', 'ē¾Žä½œå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(131217, 105119, 'pt', 'name', 'Centro de Reabilitação Profissional de Gaia'),
(131218, 105120, 'en', 'name', 'Kofu Municipal Hospital'),
(131219, 105120, 'ja', 'name', 'åø‚ē«‹ē”²åŗœē—…é™¢'),
(131220, 105121, 'en', 'name', 'Sapporo Yamanoue Hospital'),
(131221, 105121, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗęœ­å¹Œå±±ć®äøŠē—…é™¢'),
(131222, 105122, 'en', 'name', 'MSD (UK) Limited, MSD (UK) Limited (United Kingdom)'),
(131223, 105123, 'en', 'name', 'ITM University'),
(131224, 105123, 'hi', 'name', 'ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(131225, 105124, 'en', 'name', 'Institute of Archaeology of the Slovak Academy of Sciences'),
(131226, 105124, 'sk', 'name', 'Archeologický ústav SlovenskÔ akadémia vied'),
(131227, 105125, 'en', 'name', 'MSD (Peru)'),
(131228, 105126, 'da', 'name', 'KĆøbenhavns ProfessionshĆøjskole'),
(131229, 105126, 'en', 'name', 'University College Copenhagen'),
(131230, 105127, 'en', 'name', 'Hebei Normal University'),
(131231, 105127, 'zh', 'name', 'ę²³åŒ—åøˆčŒƒå¤§å­¦'),
(131232, 105128, 'en', 'name', 'International Organization for Standardization'),
(131233, 105129, 'en', 'name', 'The Korean Association of Internal Medicine'),
(131234, 105129, 'ko', 'name', 'ėŒ€ķ•œė‚“ź³¼ķ•™ķšŒ'),
(131235, 105130, 'en', 'name', 'Coast Community College District'),
(131236, 105131, 'en', 'name', 'QIMR Berghofer Medical Research Institute'),
(131237, 105132, 'en', 'name', 'MIT World Peace University'),
(131238, 105132, 'hi', 'name', 'ą¤ą¤®ą¤†ą¤Æą¤Ÿą„€ ą¤µą¤°ą„ą¤²ą„ą¤” ą¤Ŗą„€ą¤ø ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(131239, 105133, 'es', 'name', 'Estacion Experimental Agraria Pucallpa - INIA'),
(131240, 105134, 'fr', 'name', 'ModƩlisation SystƩmique AppliquƩe aux Ruminants'),
(131241, 105135, 'de', 'name', 'Deutsches Institut für Wirtschaftsforschung'),
(131242, 105135, 'en', 'name', 'German Institute for Economic Research'),
(131243, 105136, 'en', 'name', 'Machida Municipal Hospital'),
(131244, 105136, 'ja', 'name', '町田市民病院'),
(131245, 105137, 'en', 'name', 'Bharati Vidyapeeth Deemed University'),
(131246, 105137, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(131247, 105138, 'en', 'name', 'Research Institute for Urban & Environmental Development'),
(131248, 105138, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é–‹ē™ŗę§‹ęƒ³ē ”ē©¶ę‰€'),
(131249, 105139, 'en', 'name', 'Faculty of Medicine of Sfax'),
(131250, 105140, 'en', 'name', 'Astana International University'),
(131251, 105140, 'kk', 'name', 'Астана халықаралық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(131252, 105140, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Астана'),
(131253, 105141, 'da', 'name', 'Dansk KardiovaskulƦrt Forskningsakademi'),
(131254, 105141, 'en', 'name', 'Danish Cardiovascular Research Academy'),
(131255, 105142, 'es', 'name', 'Instituto Interdisciplinario de Ciencias BƔsicas'),
(131256, 105143, 'en', 'name', 'Baylor University'),
(131257, 105144, 'en', 'name', 'Japan Welding Society'),
(131258, 105144, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęŗ¶ęŽ„å­¦ä¼š'),
(131259, 105145, 'en', 'name', 'Taylor University'),
(131260, 105146, 'en', 'name', 'The Royal Melbourne Hospital'),
(131261, 105147, 'en', 'name', 'University of Port Harcourt'),
(131262, 105147, 'yo', 'name', 'YunifÔsítì ìlú Ebute Harcourt'),
(131263, 105148, 'en', 'name', 'Hungarian Research Centre for Linguistics'),
(131264, 105148, 'hu', 'name', 'NyelvtudomÔnyi Kutatóközpont'),
(131265, 105149, 'en', 'name', 'Capital Normal University'),
(131266, 105149, 'zh', 'name', 'é¦–éƒ½åøˆčŒƒå¤§å­¦'),
(131267, 105150, 'en', 'name', 'California State University, Northridge'),
(131268, 105150, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  northridge'),
(131269, 105151, 'en', 'name', 'The Salt Industry Center of Japan'),
(131270, 105151, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå”©äŗ‹ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(131271, 105152, 'en', 'name', 'New Mexico Institute of Mining and Technology'),
(131272, 105152, 'fr', 'name', 'Ɖcole des mines du nouveau-mexique'),
(131273, 105153, 'en', 'name', 'Radiation Effects Association'),
(131274, 105153, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę”¾å°„ē·šå½±éŸæå”ä¼š'),
(131275, 105154, 'en', 'name', 'Association for Nuclear Technology in Medicine'),
(131276, 105154, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ»ē”ØåŽŸå­åŠ›ęŠ€č”“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(131277, 105155, 'en', 'name', 'Korea Institute of Oriental Medicine'),
(131278, 105156, 'en', 'name', 'National Institute for Nuclear Physics'),
(131279, 105156, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare'),
(131280, 105157, 'en', 'name', 'University of the Autonomous Regions of the Nicaraguan Caribbean Coast'),
(131281, 105157, 'es', 'name', 'Universidad de las Regiones Autónomas de la Costa Caribe Nicaragüense'),
(131282, 105158, 'en', 'name', 'Mindanao State University-Sulu'),
(131283, 105159, 'en', 'name', 'Norwalk Hospital'),
(131284, 105160, 'fr', 'name', 'Office National d''Ɖtudes et de Recherches AĆ©rospatiales, Office National d’Études et de Recherches AĆ©ronautiques'),
(131285, 105161, 'en', 'name', 'Kayseri University'),
(131286, 105161, 'tr', 'name', 'Kayseri Üniversitesi'),
(131287, 105162, 'de', 'name', 'Institut für Chemie und Biologie des Meeres'),
(131288, 105162, 'en', 'name', 'Institute for Chemistry and Biology of the Marine Environment'),
(131289, 105163, 'fr', 'name', 'ArmƩe de l''air et de l''espace'),
(131290, 105164, 'de', 'name', 'Bergische UniversitƤt Wuppertal'),
(131291, 105164, 'en', 'name', 'University of Wuppertal'),
(131292, 105165, 'en', 'name', 'Bishop Auckland College'),
(131293, 105166, 'en', 'name', 'University System of New Hampshire'),
(131294, 105167, 'en', 'name', 'Pancasila University'),
(131295, 105167, 'id', 'name', 'Universitas Pancasila'),
(131296, 105168, 'en', 'name', 'Institute of Agriculture of Carpathian Region of National Academy of Agrarian Sciences of Ukraine'),
(131297, 105168, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠšŠ°Ń€ŠæŠ°Ń‚ŃŃŒŠŗŠ¾Š³Š¾ Ń€ŠµŠ³Ń–Š¾Š½Ńƒ ŠŠ°Ń†Ń–Š¾Š½Š°ĢŠ»ŃŒŠ½Š¾Ń— акаГе́мії агра́рних нау́к України'),
(131298, 105169, 'ar', 'name', 'الجامعة Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ© فى Ł…ŲµŲ±'),
(131299, 105169, 'en', 'name', 'British University in Egypt'),
(131300, 105169, 'fr', 'name', 'UniversitĆ© britannique en Ɖgypte'),
(131301, 105170, 'en', 'name', 'St Mary''s University Twickenham London'),
(131302, 105171, 'en', 'name', 'Kuras Institute of Political and Ethnic Studies of the National Academy of Sciences of Ukraine'),
(131303, 105171, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ політичних і ŠµŃ‚Š½Š¾Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŃ… Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ім. І.Ф. ŠšŃƒŃ€Š°ŃŠ° ŠŠŠ України'),
(131304, 105172, 'en', 'name', 'Aino Hospital'),
(131305, 105172, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę’ę˜­ä¼šč—é‡Žē—…é™¢'),
(131306, 105173, 'en', 'name', 'Guthrie Robert Packer Hospital'),
(131307, 105174, 'el', 'name', 'Ī™Ī½ĻƒĻ„Ī¹Ļ„ĪæĻĻ„Īæ Ī¤ĪµĻ‡Ī½ĪæĪ»ĪæĪ³Ī¹ĻŽĪ½ Πληροφορικής και Ī•Ļ€Ī¹ĪŗĪæĪ¹Ī½Ļ‰Ī½Ī¹ĻŽĪ½'),
(131308, 105174, 'en', 'name', 'Information Technologies Institute'),
(131309, 105175, 'en', 'name', 'Lithuanian University of Health Sciences'),
(131310, 105175, 'lt', 'name', 'Lietuvos Sveikatos Mokslų Universitetas'),
(131311, 105175, 'pl', 'name', 'Uniwersytet Medyczny w Kownie'),
(131312, 105175, 'ru', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Литовского ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Š° Š“Š»Ń наук Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ'),
(131313, 105176, 'pt', 'name', 'Museu Nacional da MĆŗsica'),
(131314, 105177, 'fr', 'name', 'Centre hospitalier universitaire de QuƩbec'),
(131315, 105178, 'pt', 'name', 'Instituto Brasileiro de Informação em Ciência e Tecnologia'),
(131316, 105179, 'tr', 'name', 'Nobel Tip Kitabevleri'),
(131317, 105180, 'en', 'name', 'Tottori Municipal Hospital'),
(131318, 105180, 'ja', 'name', 'é³„å–åø‚ē«‹ē—…é™¢'),
(131319, 105181, 'en', 'name', 'Institute of Construction and Architecture of the Slovak Academy of Sciences'),
(131320, 105181, 'sk', 'name', 'Ústav stavebníctva a architektúry SlovenskÔ akadémia vied'),
(131321, 105182, 'en', 'name', 'University of Oviedo'),
(131322, 105182, 'es', 'name', 'Universidad de Oviedo'),
(131323, 105183, 'en', 'name', 'Hyogo Prefectural Government'),
(131324, 105183, 'ja', 'name', 'å…µåŗ«ēœŒåŗ'),
(131325, 105184, 'en', 'name', 'Institute of Desert Meteorology, China Meteorological Administration'),
(131326, 105184, 'zh', 'name', 'äø­å›½ę°”č±”å±€ä¹Œé²ęœØé½ę²™ę¼ ę°”č±”ē ”ē©¶ę‰€'),
(131327, 105185, 'it', 'name', 'UniversitĆ  degli Studi eCampus'),
(131328, 105186, 'en', 'name', 'Menzies School of Health Research'),
(131329, 105187, 'en', 'name', 'Japan Seafarers Relief Association'),
(131330, 105187, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęµ·å“”ęŽ–ęøˆä¼š'),
(131331, 105188, 'en', 'name', 'Hirosaki University of Health and Welfare Junior College'),
(131332, 105188, 'ja', 'name', 'å¼˜å‰åŒ»ē™‚ē¦ē„‰å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(131333, 105189, 'en', 'name', 'Nusa Putra University'),
(131334, 105189, 'id', 'name', 'Universitas Nusa Putra'),
(131335, 105190, 'en', 'name', 'Seirei Hamamatsu City Rehabilitation Hospital'),
(131336, 105190, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£ęµœę¾åø‚ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(131337, 105191, 'en', 'name', 'Yas Hospital'),
(131338, 105191, 'fa', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł†ŪŒ یاس'),
(131339, 105192, 'en', 'name', 'Industrial Technology Innovation Center of Ibaraki Prefecture'),
(131340, 105192, 'ja', 'name', 'čŒØåŸŽēœŒē”£ę„­ęŠ€č”“ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(131341, 105193, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ابن زهر'),
(131342, 105193, 'fr', 'name', 'UniversitƩ Ibn Zohr'),
(131343, 105194, 'en', 'name', 'Medical Corporation JR Hiroshima Hospital'),
(131344, 105194, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗJRåŗƒå³¶ē—…é™¢'),
(131345, 105195, 'bn', 'name', 'টাটা ą¦®ą§‡ą¦”ą¦æą¦•ą§ą¦Æą¦¾ą¦² ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦°'),
(131346, 105195, 'en', 'name', 'Tata Medical Center'),
(131347, 105196, 'en', 'name', 'Howard Hughes Medical Institute'),
(131348, 105196, 'es', 'name', 'Instituto MƩdico Howard Hughes'),
(131349, 105197, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(131350, 105197, 'en', 'name', 'Ahlia University'),
(131351, 105198, 'en', 'name', 'Laboratory of Industrial and Human Automation Control, Mechanical Engineering and Computer Science'),
(131352, 105198, 'fr', 'name', 'Laboratoire d''Automatique, de MƩcanique et d''Informatique Industrielles et Humaines'),
(131353, 105199, 'es', 'name', 'Universidad de PanamĆ”'),
(131354, 105200, 'en', 'name', 'U.S. Air Force Space Command'),
(131355, 105201, 'en', 'name', 'Salzburg University of Applied Sciences'),
(131356, 105202, 'en', 'name', 'Arthur C. Clarke Centre for Modern Technologies'),
(131357, 105203, 'es', 'name', 'Universidad Metropolitana'),
(131358, 105204, 'fr', 'name', 'MathƩmatiques et Informatique AppliquƩes'),
(131359, 105205, 'en', 'name', 'College of Europe'),
(131360, 105205, 'fr', 'name', 'CollĆØge d''Europe'),
(131361, 105206, 'en', 'name', 'Tobacco Academic Studies Center'),
(131362, 105206, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćŸć°ć“ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(131363, 105207, 'en', 'name', 'Huawei Technologies (Poland)'),
(131364, 105208, 'en', 'name', 'Fujieda Heisei Memorial Hospital'),
(131365, 105208, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å¹³ęˆä¼šč—¤ęžå¹³ęˆčØ˜åæµē—…é™¢'),
(131366, 105209, 'en', 'name', 'Western New England University'),
(131367, 105210, 'en', 'name', 'University of Abuja'),
(131368, 105210, 'yo', 'name', 'YunifÔsítì ìlú AbùjÔ'),
(131369, 105211, 'en', 'name', 'Yuri Kumiai General Hospital'),
(131370, 105211, 'ja', 'name', 'JAē§‹ē”°åŽšē”Ÿé€£ē”±åˆ©ēµ„åˆē·åˆē—…é™¢'),
(131371, 105212, 'en', 'name', 'Sakurakai Takahashi Hospital'),
(131372, 105212, 'ja', 'name', 'åŒ»ē™‚ē¤¾å›£ę³•äŗŗć•ćć‚‰ä¼šé«˜ę©‹ē—…é™¢'),
(131373, 105213, 'en', 'name', 'Jikei University of Health Care Sciences'),
(131374, 105213, 'ja', 'name', 'ę»‹ę…¶åŒ»ē™‚ē§‘å­¦å¤§å­¦'),
(131375, 105214, 'id', 'name', 'Universitas Muhammadiyah Palangkaraya'),
(131376, 105215, 'en', 'name', 'Imam Reza International University'),
(131377, 105215, 'fa', 'name', 'دانؓگاه ŲØŪŒŁ†ā€ŒŲ§Ł„Ł…Ł„Ł„ŪŒ Ų§Ł…Ų§Ł… Ų±Ų¶Ų§'),
(131378, 105216, 'en', 'name', 'Pratt Institute'),
(131379, 105217, 'en', 'name', 'Changchun University of Science and Technology'),
(131380, 105217, 'zh', 'name', 'é•æę˜„ē†å·„å¤§å­¦'),
(131381, 105218, 'pt', 'name', 'Centro de Investigação em Agronomia Alimentos Ambiente e Paisagem'),
(131382, 105219, 'pt', 'name', 'Instituto de Investigação Científica Tropical'),
(131383, 105220, 'pt', 'name', 'Centro Champalimaud'),
(131384, 105221, 'ca', 'name', 'Consorci de Serveis Universitaris de Catalunya'),
(131385, 105221, 'es', 'name', 'Consorcio de Servicios Universitarios de CataluƱa'),
(131386, 105222, 'en', 'name', 'Aleksandras Stulginskis University'),
(131387, 105222, 'lt', 'name', 'Aleksandro Stulginskio universitetas'),
(131388, 105222, 'pl', 'name', 'Uniwersytet Aleksandrasa Stulginskisa'),
(131389, 105223, 'en', 'name', 'Baze University'),
(131390, 105224, 'en', 'name', 'South Eastern University of Sri Lanka'),
(131391, 105224, 'si', 'name', 'ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶…ą¶œą·Šą¶±ą·’ą¶Æą·’ą¶œ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(131392, 105224, 'ta', 'name', 'ą®¤ąÆ†ą®©ąÆą®•ą®æą®“ą®•ąÆą®•ąÆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ, ą®‡ą®²ą®™ąÆą®•ąÆˆ'),
(131393, 105225, 'en', 'name', 'Yokosuka City Hospital'),
(131394, 105225, 'ja', 'name', 'ęØŖé ˆč³€åø‚ē«‹åø‚ę°‘ē—…é™¢'),
(131395, 105226, 'en', 'name', 'The Dia Foundation for Research on Ageing Societies'),
(131396, 105226, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ€ć‚¤ćƒ¤é«˜é½¢ē¤¾ä¼šē ”ē©¶č²”å›£'),
(131397, 105227, 'it', 'name', 'Ospedale Santa Chiara'),
(131398, 105228, 'de', 'name', 'Hochschulinstitut für internationale Studien und Entwicklung'),
(131399, 105228, 'en', 'name', 'Graduate Institute of International and Development Studies'),
(131400, 105228, 'fr', 'name', 'Institut de Hautes Ʃtudes Internationales et du DƩveloppement'),
(131401, 105229, 'en', 'name', 'International European University'),
(131402, 105229, 'uk', 'name', 'ŠœŃ–Š¶Š½Š°Ń€Š¾Š“Š½ŠøŠ¹ Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(131403, 105230, 'en', 'name', 'Miyazaki Prefecture Industrial Technology Center'),
(131404, 105230, 'ja', 'name', 'å®®å“ŽēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(131405, 105231, 'en', 'name', 'University of Buenos Aires'),
(131406, 105231, 'es', 'name', 'Universidad de Buenos Aires'),
(131407, 105231, 'fr', 'name', 'UniversitƩ de Buenos Aires'),
(131408, 105231, 'it', 'name', 'UniversitĆ  di Buenos Aires'),
(131409, 105232, 'en', 'name', 'Nevada State University'),
(131410, 105233, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© البصرة'),
(131411, 105233, 'en', 'name', 'University of Basrah'),
(131412, 105234, 'pt', 'name', 'CEJAM - Centro de Estudos e Pesquisas Dr João Amorim'),
(131413, 105235, 'pt', 'name', 'Universidade Paranaense'),
(131414, 105236, 'en', 'name', 'Nanbu Child Medical Center'),
(131415, 105236, 'ja', 'name', 'ę²–ēø„ēœŒē«‹å—éƒØåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ćƒ»ć“ć©ć‚‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(131416, 105237, 'en', 'name', 'National Oceanography Centre'),
(131417, 105238, 'en', 'name', 'California University of Science and Medicine'),
(131418, 105239, 'no_lang_code', 'name', 'Centro Nacional de Biopreparados (Cuba)'),
(131419, 105240, 'en', 'name', 'Saga Prefectural Genkai Fisheries Research and Development Center'),
(131420, 105240, 'ja', 'name', 'ä½č³€ēœŒēŽ„ęµ·ę°“ē”£ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(131421, 105241, 'en', 'name', 'Pacific Northwest University of Health Sciences'),
(131422, 105242, 'en', 'name', 'Mzuzu University'),
(131423, 105243, 'en', 'name', 'Malaysian Palm Oil Board'),
(131424, 105243, 'ms', 'name', 'Lembaga Minyak Sawit Malaysia'),
(131425, 105244, 'fr', 'name', 'Ɖcole SupĆ©rieure des Technologies Industrielles AvancĆ©es'),
(131426, 105245, 'de', 'name', 'Deutsches Biomasseforschungszentrum'),
(131427, 105246, 'en', 'name', 'Canadian Social Prescribing Student Collective'),
(131428, 105247, 'en', 'name', 'Institute of Field and Vegetable Crops'),
(131429, 105248, 'id', 'name', 'Politeknik Kesehatan Bhakti Setya Indonesia'),
(131430, 105249, 'en', 'name', 'Kumamoto Prefectural Institute of Public-Health and Environmental Science'),
(131431, 105249, 'ja', 'name', 'ē†Šęœ¬ēœŒäæå„ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(131432, 105250, 'en', 'name', 'Indian Institute of Management Sambalpur'),
(131433, 105251, 'en', 'name', 'Volgograd State University'),
(131434, 105251, 'ru', 'name', 'ВолгограГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(131435, 105252, 'en', 'name', 'The Japan Electric Association'),
(131436, 105252, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę°—å”ä¼š'),
(131437, 105253, 'en', 'name', 'Norwegian Defence Research Establishment'),
(131438, 105254, 'en', 'name', 'Muş Alparslan University'),
(131439, 105254, 'tr', 'name', 'Muş Alparslan Üniversitesi'),
(131440, 105255, 'no_lang_code', 'name', 'Kabarak University'),
(131441, 105255, 'sw', 'name', 'Chuo Kikuu cha Kabarak'),
(131442, 105256, 'pt', 'name', 'Content Ed Net Ltda (Portugal)'),
(131443, 105257, 'en', 'name', 'Civil Engineering Research Laboratory'),
(131444, 105257, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ęŠ€č”“ē ”ē©¶ę‰€'),
(131445, 105258, 'en', 'name', 'Metropolitan Polytechnic University of Puebla'),
(131446, 105258, 'es', 'name', 'Universidad PolitƩcnica Metropolitana de Puebla'),
(131447, 105259, 'en', 'name', 'Hebei Agricultural University'),
(131448, 105259, 'zh', 'name', 'ę²³åŒ—å†œäøšå¤§å­¦'),
(131449, 105260, 'id', 'name', 'Universitas Bung Hatta'),
(131450, 105261, 'ro', 'name', 'Asociatia Romana pentru Industria Electronica si Software'),
(131451, 105262, 'en', 'name', 'University of Jos'),
(131452, 105262, 'yo', 'name', 'YunifÔsítì ìlú Jos'),
(131453, 105263, 'en', 'name', 'The University of Dodoma'),
(131454, 105263, 'sw', 'name', 'Chuo Kikuu cha Dodoma'),
(131455, 105264, 'no_lang_code', 'name', 'MSD (Switzerland)'),
(131456, 105265, 'en', 'name', 'Sekizen Hospital'),
(131457, 105265, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę±ŸåŽŸē©å–„ä¼šē©å–„ē—…é™¢'),
(131458, 105266, 'en', 'name', 'The Institute For Zen Studies'),
(131459, 105266, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē¦…ę–‡åŒ–ē ”ē©¶ę‰€'),
(131460, 105267, 'en', 'name', 'Osh Technological University'),
(131461, 105267, 'ky', 'name', 'ŠžŠØ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜ŠÆŠ›Š«Šš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š˜'),
(131462, 105267, 'ru', 'name', 'ŠžŠØŠ”ŠšŠ˜Š™ Š¢Š•Š„ŠŠžŠ›ŠžŠ“Š˜Š§Š•CŠšŠ˜Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢'),
(131463, 105268, 'en', 'name', 'National Institute for Nuclear Physics, Roma Tre Division'),
(131464, 105268, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Roma Tre'),
(131465, 105269, 'en', 'name', 'Japan Techno-Economics Society'),
(131466, 105269, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē§‘å­¦ęŠ€č”“ćØēµŒęøˆć®ä¼š'),
(131467, 105270, 'en', 'name', 'St. Joseph’s Healthcare Hamilton'),
(131468, 105271, 'en', 'name', 'GLS University'),
(131469, 105272, 'en', 'name', 'The Nigeria French Language Village'),
(131470, 105272, 'fr', 'name', 'Le Village FranƧais du NigƩria'),
(131471, 105273, 'de', 'name', 'Ludwig Boltzmann Institut für digitale Gesundheit und Prävention'),
(131472, 105273, 'en', 'name', 'Ludwig Boltzmann Institute for Digital Health and Prevention'),
(131473, 105274, 'en', 'name', 'Agano City Hospital'),
(131474, 105274, 'ja', 'name', 'ć‚ćŒć®åø‚ę°‘ē—…é™¢'),
(131475, 105275, 'en', 'name', 'Tomsk Polytechnic University'),
(131476, 105275, 'ru', 'name', 'Томский политехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(131477, 105276, 'en', 'name', 'Cochin University of Science and Technology'),
(131478, 105276, 'ml', 'name', 'ą“•ąµŠą“šąµą“šą“æąµ» ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµ ą“øą“æą“±ąµą“±ą“æ ą““ą“«ąµ ą“øą“Æąµ»ą“øąµ ą“†ą“Øąµą“±ąµ ą“Ÿąµ†ą“•ąµ ą“Øąµ‹ą“³ą“œą“æ'),
(131479, 105276, 'ta', 'name', 'ą®•ąÆŠą®šąÆą®šą®æą®©ąÆ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(131480, 105277, 'pt', 'name', 'Universidade Federal do Cariri'),
(131481, 105278, 'en', 'name', 'Sanokousei General Hospital'),
(131482, 105278, 'ja', 'name', 'JAä½é‡ŽåŽšē”Ÿé€£ä½é‡ŽåŽšē”Ÿē·åˆē—…é™¢'),
(131483, 105279, 'en', 'name', 'University of Phayao'),
(131484, 105279, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøžąø°ą¹€ąø¢ąø²'),
(131485, 105280, 'de', 'name', 'Deutsches Museum'),
(131486, 105280, 'en', 'name', 'German Museum'),
(131487, 105281, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ военен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(131488, 105281, 'en', 'name', 'Vasil Levski National Military University'),
(131489, 105282, 'en', 'name', 'Council of Australasian University Librarians'),
(131490, 105283, 'pt', 'name', 'Centro de Computação GrÔfica'),
(131491, 105284, 'en', 'name', 'Petroleum & Gas University of Ploieşti'),
(131492, 105284, 'ro', 'name', 'Universitatea Petrol-Gaze din Ploiești'),
(131493, 105285, 'en', 'name', 'Victor Babeș University of Medicine and Pharmacy Timișoara'),
(131494, 105285, 'ro', 'name', 'Universitatea de Medicină și Farmacie Victor Babeș'),
(131495, 105286, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do Sertão Pernambucano, Instituto Federal do Sertão Pernambucano'),
(131496, 105287, 'en', 'name', 'Federal University of Southern Bahia'),
(131497, 105287, 'pt', 'name', 'Universidade Federal do Sul da Bahia'),
(131498, 105288, 'pt', 'name', 'Universidade do Tocantins'),
(131499, 105289, 'en', 'name', 'National Science Board'),
(131500, 105290, 'en', 'name', 'Fukushima Agricultural Technology Centre'),
(131501, 105290, 'ja', 'name', 'ē¦å³¶ēœŒč¾²ę„­ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(131502, 105291, 'de', 'name', 'UniversitƤt Ɠbuda'),
(131503, 105291, 'en', 'name', 'Obuda University'),
(131504, 105291, 'hu', 'name', 'Ɠbudai Egyetem'),
(131505, 105291, 'la', 'name', 'Universitas Budensis'),
(131506, 105292, 'en', 'name', 'Niigata University of Health and Welfare'),
(131507, 105292, 'ja', 'name', 'ę–°ę½ŸåŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(131508, 105293, 'en', 'name', 'Institute of Botany of the Slovak Academy of Sciences'),
(131509, 105293, 'sk', 'name', 'Botanický ústav SlovenskÔ akadémia vied'),
(131510, 105294, 'de', 'name', 'UniversitƤt Hohenheim'),
(131511, 105294, 'en', 'name', 'University of Hohenheim'),
(131512, 105295, 'es', 'name', 'Universidad de Especialidades EspĆ­ritu Santo'),
(131513, 105296, 'en', 'name', 'Kochi Prefectural Freshwater Fisheries Center'),
(131514, 105296, 'ja', 'name', 'é«˜ēŸ„ēœŒå†…ę°“é¢ę¼ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(131515, 105297, 'en', 'name', 'Yamaguchi Prefectural Government'),
(131516, 105297, 'ja', 'name', 'å±±å£ēœŒåŗ'),
(131517, 105298, 'en', 'name', 'Ishikawa Prefectural University'),
(131518, 105298, 'ja', 'name', 'ēŸ³å·ēœŒē«‹å¤§å­¦'),
(131519, 105299, 'en', 'name', 'Institute of Radiation Measurements'),
(131520, 105299, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę”¾å°„ē·ščØˆęø¬å”ä¼š'),
(131521, 105300, 'en', 'name', 'Directorate for Engineering'),
(131522, 105301, 'en', 'name', 'Emmanuel University'),
(131523, 105302, 'en', 'name', 'Montgomery College'),
(131524, 105303, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų°ŁŠŲÆ'),
(131525, 105303, 'en', 'name', 'University of Al Dhaid'),
(131526, 105304, 'fr', 'name', 'Fonds de Recherche du QuĆ©bec – Nature et Technologies'),
(131527, 105305, 'en', 'name', 'Uttaranchal University'),
(131528, 105306, 'en', 'name', 'U.S. Air Force Research Laboratory Munitions Directorate'),
(131529, 105307, 'en', 'name', 'AGH University of Krakow'),
(131530, 105307, 'pl', 'name', 'Akademia Górniczo-Hutnicza im. Stanisława Staszica w Krakowie'),
(131531, 105308, 'nl', 'name', 'Noordwest Ziekenhuisgroep'),
(131532, 105309, 'en', 'name', 'Association of Polish Surveyors'),
(131533, 105310, 'pt', 'name', 'Centro de Investigação em Artes e Comunicação'),
(131534, 105311, 'en', 'name', 'Livit Ottobock Care'),
(131535, 105312, 'en', 'name', 'MSD (Greece)'),
(131536, 105313, 'en', 'name', 'Ganesha University of Education'),
(131537, 105313, 'id', 'name', 'Universitas Pendidikan Ganesha'),
(131538, 105314, 'nl', 'name', 'Reade'),
(131539, 105315, 'es', 'name', 'Universidad Fernando Pessoa Canarias'),
(131540, 105316, 'pt', 'name', 'Fundação Oriente'),
(131541, 105317, 'en', 'name', 'University of Mines and Technology'),
(131542, 105318, 'en', 'name', 'Rothman Orthopaedics'),
(131543, 105319, 'en', 'name', 'Nagano Animal Industry Experiment Station'),
(131544, 105319, 'ja', 'name', 'é•·é‡ŽēœŒē•œē”£č©¦éØ“å “'),
(131545, 105320, 'pt', 'name', 'Centro de Território Ambiente e Construção'),
(131546, 105321, 'en', 'name', 'Astellas Pharma Ltd'),
(131547, 105321, 'pt', 'name', 'Astellas Farma Lda (Portugal)'),
(131548, 105322, 'en', 'name', 'Korea Environment Institute'),
(131549, 105322, 'ko', 'name', 'ķ•œźµ­ķ™˜ź²½ģ •ģ±…ķ‰ź°€ģ—°źµ¬ģ›'),
(131550, 105323, 'es', 'name', 'Althaia'),
(131551, 105324, 'en', 'name', 'Akita Prefectural Livestock Experiment Station'),
(131552, 105324, 'ja', 'name', 'ē§‹ē”°ēœŒē•œē”£č©¦éØ“å “'),
(131553, 105325, 'it', 'name', 'Istituto Zooprofilattico Sperimentale Della Sicilia'),
(131554, 105326, 'en', 'name', 'Nagasaki Prefectural Police'),
(131555, 105326, 'ja', 'name', 'é•·å“ŽēœŒč­¦åÆŸ'),
(131556, 105327, 'en', 'name', 'Florida Agricultural and Mechanical University'),
(131557, 105327, 'es', 'name', 'Universidad Agrónoma y MecÔnica de Florida'),
(131558, 105328, 'en', 'name', 'Japan Frozen Food Association'),
(131559, 105328, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡é£Ÿå“å”ä¼š'),
(131560, 105329, 'en', 'name', 'Shinjo Ophthalmologic Institute'),
(131561, 105329, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£ć‚·ćƒ­ć‚¢ćƒ ä¼šę–°åŸŽēœ¼ē§‘åŒ»é™¢'),
(131562, 105330, 'en', 'name', 'Institute of Urban and Regional Development'),
(131563, 105330, 'pl', 'name', 'Krajowy Instytut Polityki Przestrzennej i Mieszkalnictwa'),
(131564, 105331, 'en', 'name', 'Kyoto Medical Association'),
(131565, 105331, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗ¬éƒ½åŗœåŒ»åø«ä¼š'),
(131566, 105332, 'en', 'name', 'Yamanashi Prefectural Industrial Technology Center'),
(131567, 105332, 'ja', 'name', 'å±±ę¢ØēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(131568, 105333, 'en', 'name', 'Institute of Health Carlos III'),
(131569, 105333, 'es', 'name', 'Instituto de Salud Carlos III'),
(131570, 105334, 'en', 'name', 'Japan Cooperation Center Petroleum'),
(131571, 105334, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗJCCPå›½éš›ēŸ³ę²¹ćƒ»ć‚¬ć‚¹å”åŠ›ę©Ÿé–¢'),
(131572, 105335, 'en', 'name', 'Baharloo Hospital'),
(131573, 105335, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ŲØŁ‡Ų§Ų±Ł„Łˆ'),
(131574, 105336, 'fr', 'name', 'Biologie du Fruit et Pathologie'),
(131575, 105337, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŁŠŲµŁ„'),
(131576, 105337, 'no_lang_code', 'name', 'Alfaisal University'),
(131577, 105338, 'en', 'name', 'Electronic Engineering Polytechnic Institute of Surabaya'),
(131578, 105338, 'id', 'name', 'Politeknik Elektronika Negeri Surabaya'),
(131579, 105339, 'en', 'name', 'Ibaraki Kasumigaura Environmental Science Center'),
(131580, 105339, 'ja', 'name', 'čŒØåŸŽēœŒéœžć‚±ęµ¦ē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(131581, 105340, 'en', 'name', 'Ferris State University'),
(131582, 105340, 'fr', 'name', 'UniversitĆ© d''Ɖtat ferris'),
(131583, 105341, 'es', 'name', 'Universidad Regional Autónoma de Los Andes'),
(131584, 105342, 'id', 'name', 'Universitas Madura'),
(131585, 105343, 'en', 'name', 'Tohoku Bunkyo Junior College'),
(131586, 105343, 'ja', 'name', 'ę±åŒ—ę–‡ę•™å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(131587, 105344, 'en', 'name', 'NSW Environment and Heritage'),
(131588, 105345, 'no_lang_code', 'name', 'Huawei Technologies (China)'),
(131589, 105345, 'zh', 'name', 'åŽäøŗęŠ€ęœÆęœ‰é™å…¬åø'),
(131590, 105346, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Š°Š»Š°Š³Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚'),
(131591, 105346, 'en', 'name', 'Belarusian State Technological University'),
(131592, 105346, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(131593, 105347, 'en', 'name', 'Food and Agricultural Materials Inspection Center'),
(131594, 105347, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗč¾²ęž—ę°“ē”£ę¶ˆč²»å®‰å…ØęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(131595, 105348, 'en', 'name', 'Shizuoka Prefectural Environmental Radiation Monitoring Center'),
(131596, 105348, 'ja', 'name', 'é™å²”ēœŒē’°å¢ƒę”¾å°„ē·šē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(131597, 105349, 'en', 'name', 'Community University of Chapecó Region - Unochapecó'),
(131598, 105350, 'bn', 'name', 'ą¦¬ą¦°ą§‡ą¦Øą§ą¦¦ą§ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(131599, 105350, 'no_lang_code', 'name', 'Varendra University'),
(131600, 105351, 'en', 'name', 'Institute of Hematology and Transfusion Medicine'),
(131601, 105351, 'pl', 'name', 'Instytut Hematologii i Transfuzjologi'),
(131602, 105352, 'en', 'name', 'Saint Peter''s University'),
(131603, 105352, 'es', 'name', 'Universidad de San Pedro'),
(131604, 105353, 'en', 'name', 'Ghent University'),
(131605, 105353, 'fr', 'name', 'UniversitƩ de Gand'),
(131606, 105353, 'nl', 'name', 'Universiteit Gent'),
(131607, 105354, 'en', 'name', 'Kochi Prefectural Fisheries Experiment Station'),
(131608, 105354, 'ja', 'name', 'é«˜ēŸ„ēœŒę°“ē”£č©¦éØ“å “'),
(131609, 105355, 'en', 'name', 'Tokyo Seitoku College'),
(131610, 105355, 'ja', 'name', 'ę±äŗ¬ęˆå¾³ēŸ­ęœŸå¤§å­¦'),
(131611, 105356, 'es', 'name', 'Instituto Tecnológico y de Estudios Superiores de Occidente'),
(131612, 105357, 'en', 'name', 'Hospice Africa France'),
(131613, 105358, 'en', 'name', 'GNA University'),
(131614, 105359, 'en', 'name', 'Thermal and Nuclear Power Engineering Society'),
(131615, 105359, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē«åŠ›åŽŸå­åŠ›ē™ŗé›»ęŠ€č”“å”ä¼š'),
(131616, 105360, 'pt', 'name', 'Centro de Investigação em Antropologia e Saúde'),
(131617, 105361, 'pt', 'name', 'Centro de Medicina AeronƔutica'),
(131618, 105362, 'en', 'name', 'Saitamaken Chagyo Research Institute'),
(131619, 105362, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒčŒ¶ę„­ē ”ē©¶ę‰€'),
(131620, 105363, 'en', 'name', 'Horia Hulubei National Institute for R and D in Physics and Nuclear Engineering'),
(131621, 105363, 'ro', 'name', 'Institutul National de Cercetare-Dezvoltare pentru Fizica si Inginerie Nucleara Horia Hulubei Horia'),
(131622, 105364, 'en', 'name', 'Fujimoto General Hospital'),
(131623, 105364, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč—¤å…ƒćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚·ć‚¹ćƒ†ćƒ č—¤å…ƒē·åˆē—…é™¢'),
(131624, 105365, 'pt', 'name', 'PresidĆŖncia do Conselho de Ministros'),
(131625, 105366, 'en', 'name', 'University of Staffordshire'),
(131626, 105367, 'en', 'name', 'Shenyang University of Technology'),
(131627, 105367, 'zh', 'name', '沈阳巄业大学'),
(131628, 105368, 'en', 'name', 'Hasanuddin University'),
(131629, 105368, 'id', 'name', 'Universitas Hasanuddin'),
(131630, 105369, 'en', 'name', 'Economic Research Association'),
(131631, 105369, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗēµŒęøˆčŖæęŸ»ä¼š'),
(131632, 105370, 'de', 'name', 'Hochschule für Musik und Theater Hamburg'),
(131633, 105370, 'en', 'name', 'Hamburg University of Music and Drama'),
(131634, 105371, 'en', 'name', 'Balsillie School of International Affairs'),
(131635, 105372, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ© في Ų§Ł„ŁŲ¬ŁŠŲ±Ų©'),
(131636, 105372, 'en', 'name', 'University of Science and Technology of Fujairah'),
(131637, 105373, 'bn', 'name', 'ভারতীয় ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¶ą¦æą¦•ą§ą¦·ą¦¾ ও গবেষণা ą¦øą¦‚ą¦øą§ą¦„ą¦¾, কলকাতা'),
(131638, 105373, 'en', 'name', 'Indian Institute of Science Education and Research Kolkata'),
(131639, 105373, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ और ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾'),
(131640, 105374, 'es', 'name', 'Universidad UTE'),
(131641, 105375, 'en', 'name', 'Brunel University of London'),
(131642, 105376, 'en', 'name', 'Institute of Criminology and Social Prevention'),
(131643, 105377, 'en', 'name', 'Science and Arts University'),
(131644, 105377, 'fa', 'name', 'دانؓگاه علم و هنر'),
(131645, 105378, 'en', 'name', 'Caltex Riau Polytechnic'),
(131646, 105378, 'id', 'name', 'Politeknik Caltex Riau'),
(131647, 105379, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĪ®Ļ„Ī·Ļ‚'),
(131648, 105379, 'en', 'name', 'University of Crete'),
(131649, 105379, 'fr', 'name', 'Université de crète'),
(131650, 105380, 'en', 'name', 'Waterfront Vitalization and Environment Research Foundation'),
(131651, 105380, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćæćŖćØē·åˆē ”ē©¶č²”å›£'),
(131652, 105381, 'bn', 'name', 'দিনাজপুর মেঔিকেল ą¦•ą¦²ą§‡ą¦œ, দিনাজপুর'),
(131653, 105381, 'en', 'name', 'Dinajpur Medical College'),
(131654, 105382, 'en', 'name', 'Campbell University'),
(131655, 105383, 'en', 'name', 'Centre for Applied Mathematics - CMA, Mines Paris, PSL University, Centre for Applied Mathematics (CMA)'),
(131656, 105383, 'fr', 'name', 'Centre de MathƩmatiques AppliquƩes - CMA, Mines Paris, UniversitƩ PSL, Centre de MathƩmatiques AppliquƩes (CMA)'),
(131657, 105384, 'en', 'name', 'Maasai Mara University'),
(131658, 105385, 'en', 'name', 'Thoth Open Metadata'),
(131659, 105386, 'en', 'name', 'Islamic Azad University Roudehen Branch'),
(131660, 105386, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد Ų±ŁˆŲÆŁ‡Ł†'),
(131661, 105387, 'pt', 'name', 'Instituto Superior de Ciências da Educação da Huíla'),
(131662, 105388, 'en', 'name', 'Reconstruction Agency'),
(131663, 105388, 'ja', 'name', '復興庁'),
(131664, 105389, 'en', 'name', 'Construction Engineering Research Institute Foundation'),
(131665, 105389, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­å·„å­¦ē ”ē©¶ę‰€'),
(131666, 105390, 'en', 'name', 'Lorraine Laboratory of Psychology and Neuroscience of Behavioral Dynamics'),
(131667, 105390, 'fr', 'name', 'Laboratoire lorrain de psychologie et neurosciences de la dynamique des comportements'),
(131668, 105391, 'en', 'name', 'Mount St. Joseph University'),
(131669, 105392, 'nl', 'name', 'Albert Schweitzer Ziekenhuis'),
(131670, 105393, 'bg', 'name', 'Варненски свобоГен ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(131671, 105393, 'en', 'name', 'Varna Free University'),
(131672, 105393, 'tr', 'name', 'Varna Hür Üniversitesi'),
(131673, 105394, 'fr', 'name', 'Centre Paul Broca'),
(131674, 105395, 'es', 'name', 'Secretaría de Educación del Distrito Capital'),
(131675, 105396, 'en', 'name', 'International Union for Conservation of Nature (United States)'),
(131676, 105397, 'de', 'name', 'Hochschule Bielefeld'),
(131677, 105398, 'en', 'name', 'The Society of Non-Traditional Technology'),
(131678, 105398, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęœŖčøē§‘å­¦ęŠ€č”“å”ä¼š'),
(131679, 105399, 'en', 'name', 'Widya Mandala Catholic University'),
(131680, 105399, 'id', 'name', 'Universitas Katolik Widya Mandala Surabaya'),
(131681, 105400, 'en', 'name', 'International Information and Engineering Technology Association'),
(131682, 105401, 'en', 'name', 'National Bioinformatics Infrastructure Sweden'),
(131683, 105402, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الؓارقة'),
(131684, 105402, 'en', 'name', 'University of Sharjah'),
(131685, 105403, 'es', 'name', 'Universidad Nacional Arturo Jauretche'),
(131686, 105404, 'en', 'name', 'Sukhothai Thammathirat Open University'),
(131687, 105404, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŖąøøą¹‚ąø‚ąø—ąø±ąø¢ąø˜ąø£ąø£ąø”ąø²ąø˜ąø“ąø£ąø²ąøŠ'),
(131688, 105405, 'en', 'name', 'Huainan Union University'),
(131689, 105405, 'zh', 'name', 'ę·®å—č”åˆå¤§å­¦'),
(131690, 105406, 'en', 'name', 'Atago Hospital'),
(131691, 105406, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę–°ę¾ē”°ä¼šę„›å®•ē—…é™¢'),
(131692, 105407, 'en', 'name', 'Odense University Hospital'),
(131693, 105408, 'bs', 'name', 'Univerzitet "Džemal Bijedić" u Mostaru'),
(131694, 105408, 'en', 'name', 'Dzemal Bijedic University of Mostar'),
(131695, 105408, 'sr', 'name', 'Универзитет "ŠŠµŠ¼Š°Š» Š‘ŠøŃ˜ŠµŠ“ŠøŃ›" у ŠœŠ¾ŃŃ‚Š°Ń€Ńƒ'),
(131696, 105409, 'id', 'name', 'Universitas Nahdlatul Ulama Indonesia'),
(131697, 105410, 'en', 'name', 'National Sanatorium KURIU-RAKUSENEN'),
(131698, 105410, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€ę —ē”Ÿę„½ę³‰åœ’'),
(131699, 105411, 'en', 'name', 'Xavier University'),
(131700, 105411, 'es', 'name', 'Universidad Xavier'),
(131701, 105411, 'fr', 'name', 'UniversitƩ xavier de cincinnati'),
(131702, 105412, 'de', 'name', 'Kunsthochschule für Medien Köln'),
(131703, 105412, 'en', 'name', 'Academy of Media Arts Cologne'),
(131704, 105413, 'de', 'name', 'Deutsches Institut für Lebensmitteltechnik'),
(131705, 105413, 'en', 'name', 'German Institute of Food Technologies'),
(131706, 105414, 'en', 'name', 'Japan Dam Engineering Center'),
(131707, 105414, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ€ćƒ ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(131708, 105415, 'en', 'name', 'Keck Graduate Institute'),
(131709, 105416, 'en', 'name', 'Professional and Technical Education Institute from Roldanillo'),
(131710, 105416, 'es', 'name', 'Instituto de Educación Técnica Profesional de Roldanillo'),
(131711, 105417, 'en', 'name', 'Foundation of River&Basin Integrated Communications'),
(131712, 105417, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę²³å·ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(131713, 105418, 'no_lang_code', 'name', 'Suqian University'),
(131714, 105418, 'zh', 'name', '宿迁学院'),
(131715, 105419, 'en', 'name', 'Gonabad University of Medical Sciences'),
(131716, 105419, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓكي گناباد'),
(131717, 105420, 'en', 'name', 'Miyazaki Prefectural Industrial Support Foundation'),
(131718, 105420, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå®®å“ŽēœŒē”£ę„­ęŒÆčˆˆę©Ÿę§‹'),
(131719, 105421, 'en', 'name', 'Institute of Ethnomusicology - Center for Studies in Music and Dance'),
(131720, 105421, 'pt', 'name', 'Instituto de Etnomusicologia - Centro de Estudos em Música e Dança'),
(131721, 105422, 'en', 'name', 'Wiki Movement Brazil'),
(131722, 105422, 'pt', 'name', 'Wiki Movimento Brasil'),
(131723, 105423, 'en', 'name', 'Shimane Prefectural Government'),
(131724, 105423, 'ja', 'name', '島根県庁'),
(131725, 105424, 'en', 'name', 'Guangdong University of Foreign Studies'),
(131726, 105424, 'zh', 'name', 'å¹æäøœå¤–čÆ­å¤–č“øå¤§å­¦'),
(131727, 105425, 'en', 'name', 'Sri Lanka Institute of Information Technology'),
(131728, 105425, 'si', 'name', 'ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· ą¶­ą·œą¶»ą¶­ą·”ą¶»ą·” ą¶­ą·ā€Œą¶šą·Šą·‚ą¶« ආයතනය'),
(131729, 105426, 'en', 'name', 'Niigata Prefectural Institute Of Brewing'),
(131730, 105426, 'ja', 'name', 'ę–°ę½ŸēœŒé†øé€ č©¦éØ“å “'),
(131731, 105427, 'pt', 'name', 'Instituto HidrogrƔfico'),
(131732, 105428, 'en', 'name', 'Covenant University'),
(131733, 105428, 'yo', 'name', 'YunifƔsƭtƬ Covenant'),
(131734, 105429, 'en', 'name', 'Hiroshima International Center'),
(131735, 105429, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć²ć‚ć—ć¾å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(131736, 105430, 'fr', 'name', 'ITAP - Technologies et MƩthodes pour les Agricultures de demain'),
(131737, 105431, 'de', 'name', 'Hochschule Düsseldorf'),
(131738, 105431, 'en', 'name', 'Hochschule Düsseldorf University of Applied Sciences'),
(131739, 105432, 'en', 'name', 'University of Massachusetts Dartmouth'),
(131740, 105432, 'es', 'name', 'Universidad de Massachusetts Dartmouth'),
(131741, 105432, 'fr', 'name', 'UniversitƩ du massachusetts de dartmouth'),
(131742, 105433, 'af', 'name', 'Universiteit van Pretoria'),
(131743, 105433, 'en', 'name', 'University of Pretoria'),
(131744, 105434, 'en', 'name', 'Jambi University'),
(131745, 105434, 'id', 'name', 'Universitas Jambi'),
(131746, 105435, 'en', 'name', 'Southwest Medical University'),
(131747, 105435, 'zh', 'name', 'ę³øå·žåŒ»å­¦é™¢'),
(131748, 105436, 'en', 'name', 'Japan Medical Education Foundation'),
(131749, 105436, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ»å­¦ę•™č‚²ęŒÆčˆˆč²”å›£'),
(131750, 105437, 'en', 'name', 'Methodist Hospital'),
(131751, 105438, 'en', 'name', 'ESIEA University'),
(131752, 105439, 'id', 'name', 'Universitas PGRI Adi Buana Surabaya'),
(131753, 105440, 'en', 'name', 'Nagano Prefectural Police'),
(131754, 105440, 'ja', 'name', 'é•·é‡ŽēœŒč­¦åÆŸ'),
(131755, 105441, 'en', 'name', 'Mongolian National University of Medical Sciences'),
(131756, 105441, 'mn', 'name', 'Анагаахын ŠØŠøŠ½Š¶Š»ŃŃ… Ухааны Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(131757, 105442, 'en', 'name', 'Research Center for Chronic Inflammatory Diseases'),
(131758, 105442, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁ…Ų§Ų±ŪŒ Ł‡Ų§ŪŒ Ų§Ł„ŲŖŁ‡Ų§ŲØŪŒ مزمن'),
(131759, 105443, 'en', 'name', 'State University of Novi Pazar'),
(131760, 105443, 'sr', 'name', 'Државни ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ у ŠŠ¾Š²Š¾Š¼ ŠŸŠ°Š·Š°Ń€Ńƒ'),
(131761, 105444, 'en', 'name', 'Autonomous University of Bucaramanga'),
(131762, 105444, 'es', 'name', 'Universidad Autónoma de Bucaramanga'),
(131763, 105445, 'de', 'name', 'Ostbayerische Technische Hochschule Amberg-Weiden'),
(131764, 105446, 'en', 'name', 'Indian Institute of Information Technology Design and Manufacturing Jabalpur'),
(131765, 105446, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤…ą¤­ą¤æą¤•ą¤²ą„ą¤Ŗą¤Ø ą¤ą¤µą¤‚ ą¤µą¤æą¤Øą¤æą¤°ą„ą¤®ą¤¾ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø');
INSERT INTO `ror_settings` VALUES
(131766, 105446, 'ne', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾-ą¤Ŗą„ą¤°ą¤µą¤æą¤§ą¤æ ą¤”ą¤æą¤œą¤¾ą¤‡ą¤Ø ą¤ą¤µą¤‚ ą¤‰ą¤¤ą„ą¤Ŗą¤¾ą¤¦ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø PDPM'),
(131767, 105447, 'en', 'name', 'Japan Gastroenterological Endoscopy Society'),
(131768, 105447, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¶ˆåŒ–å™Øå†…č¦–é”å­¦ä¼š'),
(131769, 105448, 'en', 'name', 'National Computer Center for Higher Education'),
(131770, 105448, 'fr', 'name', 'Centre Informatique National de l''Enseignement SupƩrieur'),
(131771, 105449, 'en', 'name', 'Kagoshima Seikyo Hospital'),
(131772, 105449, 'ja', 'name', 'é¹æå…å³¶åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆé¹æå…å³¶ē”Ÿå”ē—…é™¢'),
(131773, 105450, 'en', 'name', 'Walisongo State Islamic University'),
(131774, 105450, 'id', 'name', 'Universitas Islam Negeri Walisongo Semarang'),
(131775, 105451, 'en', 'name', 'National Autonomous High Andean University of Tarma'),
(131776, 105451, 'es', 'name', 'Universidad Nacional Autónoma Altoandina de Tarma'),
(131777, 105452, 'fr', 'name', 'Centre Ǝle-de-France - Jouy-en-Josas - Antony'),
(131778, 105453, 'bn', 'name', 'মাওলানা ভাসানী ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(131779, 105453, 'en', 'name', 'Mawlana Bhashani Science and Technology University'),
(131780, 105454, 'en', 'name', 'KKR Sapporo Medical Center'),
(131781, 105454, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šęœ­å¹ŒåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(131782, 105455, 'es', 'name', 'Instituto Especializado de Profesionales de la Salud'),
(131783, 105456, 'en', 'name', 'Brazilian Air Force'),
(131784, 105456, 'es', 'name', 'Fuerza AƩrea BrasileƱa'),
(131785, 105456, 'fr', 'name', 'Force aƩrienne brƩsilienne'),
(131786, 105456, 'pt', 'name', 'ForƧa AƩrea Brasileira'),
(131787, 105457, 'de', 'name', 'Hochschule Weihenstephan-Triesdorf'),
(131788, 105457, 'en', 'name', 'Weihenstephan-Triesdorf University of Applied Sciences'),
(131789, 105458, 'en', 'name', 'Pauls StradiņŔ Clinical University Hospital'),
(131790, 105458, 'lv', 'name', 'Paula Stradiņa Klīniskā universitātes slimnīca'),
(131791, 105459, 'en', 'name', 'Guilin University of Aerospace Technology'),
(131792, 105459, 'zh', 'name', 'ę”‚ęž—čˆŖå¤©å·„äøšå­¦é™¢'),
(131793, 105460, 'en', 'name', 'Croatian Institute of Public Health'),
(131794, 105460, 'hr', 'name', 'Hrvatski zavod za javno zdravstvo'),
(131795, 105461, 'en', 'name', 'Mahatma Gandhi University'),
(131796, 105461, 'ml', 'name', 'ą“®ą“¹ą“¾ą“¤ąµą“®ą“¾ą“—ą“¾ą“Øąµą“§ą“æ ą“øą“°ąµā€ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(131797, 105461, 'pa', 'name', 'ਮਹਾਤਮਾ ਗਾਂਧੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(131798, 105461, 'ta', 'name', 'ą®®ą®•ą®¾ą®¤ąÆą®®ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(131799, 105462, 'en', 'name', 'Sols-Morreale Biomedical Research Institute'),
(131800, 105462, 'es', 'name', 'Instituto de Investigaciones BiomƩdicas Sols-Morreale'),
(131801, 105463, 'en', 'name', 'Daemen College'),
(131802, 105464, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Sciences Agronomiques de Bordeaux-Aquitaine'),
(131803, 105465, 'en', 'name', 'Yokohama Environmental Science Research Institute'),
(131804, 105465, 'ja', 'name', 'ęØŖęµœåø‚ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(131805, 105466, 'en', 'name', 'Japan Space Systems'),
(131806, 105466, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå®‡å®™ć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗåˆ©ē”ØęŽØé€²ę©Ÿę§‹'),
(131807, 105467, 'en', 'name', 'Northwest Pacific Region Environmental Cooperation Center'),
(131808, 105467, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē’°ę—„ęœ¬ęµ·ē’°å¢ƒå”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(131809, 105468, 'en', 'name', 'Defence Research and Development Canada'),
(131810, 105468, 'fr', 'name', 'Recherche & dƩveloppement pour la dƩfense Canada'),
(131811, 105469, 'bn', 'name', 'বেগম রোকেয়া ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(131812, 105469, 'en', 'name', 'Begum Rokeya University'),
(131813, 105470, 'cs', 'name', 'EvropskÔ výzkumnÔ univerzita, z.ú.'),
(131814, 105470, 'en', 'name', 'European Research University'),
(131815, 105471, 'en', 'name', 'Japan Meteorological Business Support Center'),
(131816, 105471, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę°—č±”ę„­å‹™ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(131817, 105472, 'en', 'name', 'Kunduz University'),
(131818, 105472, 'fa', 'name', 'دانؓگاه_Ł‚Ł†ŲÆŁˆŲ²'),
(131819, 105472, 'ps', 'name', 'ŲÆ کندز Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†'),
(131820, 105473, 'en', 'name', 'Beit Berl College'),
(131821, 105473, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ בית ×‘×Ø×œ'),
(131822, 105474, 'pt', 'name', 'Ordem dos Nutricionistas'),
(131823, 105475, 'en', 'name', 'Institute of Philosophy of the Slovak Academy of Sciences'),
(131824, 105475, 'sk', 'name', 'Filozofický ústav SlovenskÔ akadémia vied'),
(131825, 105476, 'it', 'name', 'Azienda Socio Sanitaria Territoriale Grande Ospedale Metropolitano Niguarda'),
(131826, 105477, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure Paris-Saclay'),
(131827, 105478, 'id', 'name', 'Universitas Dehasen Bengkulu'),
(131828, 105479, 'en', 'name', 'Tochigi Prefectural Livestock & Dairy Experimental Center'),
(131829, 105479, 'ja', 'name', 'ę ƒęœØēœŒē•œē”£é…Ŗč¾²ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(131830, 105480, 'en', 'name', 'COMTES FHT a.s.'),
(131831, 105480, 'no_lang_code', 'name', 'Comtes Fht (Czechia)'),
(131832, 105481, 'en', 'name', 'Trottier Family Foundation'),
(131833, 105481, 'fr', 'name', 'Fondation Familiale Trottier'),
(131834, 105482, 'en', 'name', 'University of Embu'),
(131835, 105482, 'sw', 'name', 'Chuo Kikuu cha Embu'),
(131836, 105483, 'cs', 'name', 'Ú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'),
(131837, 105483, 'en', 'name', 'Czech Academy of Sciences, Institute of State and Law'),
(131838, 105484, 'en', 'name', 'Japanese Drug Organization of Appropriate Use and Research'),
(131839, 105484, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗåŒ»č–¬å“é©ę­£ä½æē”ØęŽØé€²ę©Ÿę§‹'),
(131840, 105485, 'en', 'name', 'African Institute for Mathematical Sciences Senegal'),
(131841, 105485, 'fr', 'name', 'Institut Africain des Sciences MathƩmatiques SƩnƩgal'),
(131842, 105486, 'da', 'name', 'KĆøbenhavns Erhvervsakademi'),
(131843, 105486, 'en', 'name', 'Copenhagen School of Design and Technology'),
(131844, 105487, 'en', 'name', 'NRI Medical College'),
(131845, 105488, 'en', 'name', 'Nuclear Safety Research Association'),
(131846, 105488, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›å®‰å…Øē ”ē©¶å”ä¼š'),
(131847, 105489, 'no_lang_code', 'name', 'Jiaxing University'),
(131848, 105490, 'en', 'name', 'Research Institute for Nature and Forest'),
(131849, 105490, 'nl', 'name', 'Instituut voor Natuur- en Bosonderzoek'),
(131850, 105491, 'en', 'name', 'International Nosocomial Infection Control Consortium Foundation'),
(131851, 105492, 'no_lang_code', 'name', 'RENA Technologies (Germany)'),
(131852, 105493, 'en', 'name', 'The Japan Electrical Manufacturers'' Association'),
(131853, 105493, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę©Ÿå·„ę„­ä¼š'),
(131854, 105494, 'en', 'name', 'Royal Swedish Academy of Sciences'),
(131855, 105494, 'fi', 'name', 'Ruotsin kuninkaallinen tiedeakatemia'),
(131856, 105494, 'sv', 'name', 'Kungliga Vetenskapsakademien'),
(131857, 105495, 'en', 'name', 'Japan Concrete Institute'),
(131858, 105495, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚³ćƒ³ć‚ÆćƒŖćƒ¼ćƒˆå·„å­¦ä¼š'),
(131859, 105496, 'en', 'name', 'Technical University of Zvolen'),
(131860, 105497, 'fr', 'name', 'Centre hospitalier affiliƩ universitaire de QuƩbec'),
(131861, 105498, 'en', 'name', 'Vinoba Bhave University'),
(131862, 105498, 'hi', 'name', 'ą¤µą¤æą¤Øą„‹ą¤¬ą¤¾ ą¤­ą¤¾ą¤µą„‡ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(131863, 105499, 'es', 'name', 'Instituto Maimónides de Investigación Biomédica de Córdoba'),
(131864, 105500, 'en', 'name', 'Linnaeus University'),
(131865, 105500, 'fi', 'name', 'LinnƩ-yliopisto'),
(131866, 105500, 'sv', 'name', 'LinnƩuniversitetet'),
(131867, 105501, 'en', 'name', 'Gifu Prefectural Ceramics Research Institute'),
(131868, 105501, 'ja', 'name', 'å²é˜œēœŒć‚»ćƒ©ćƒŸćƒƒć‚Æć‚¹ē ”ē©¶ę‰€'),
(131869, 105502, 'en', 'name', 'The Social Development Research Center'),
(131870, 105502, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē¤¾ä¼šé–‹ē™ŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(131871, 105503, 'en', 'name', 'University of Emerging Technologies'),
(131872, 105503, 'uk', 'name', 'Університет новітніх технологій'),
(131873, 105504, 'it', 'name', 'Azienda UnitĆ  Sanitaria Locale di Ferrara'),
(131874, 105505, 'sk', 'name', 'VysokÔ Škola Manažmentu, VysokÔ Ŕkola manažmentu, City University of Seattle'),
(131875, 105506, 'cs', 'name', 'Revmatologický Ústav'),
(131876, 105506, 'en', 'name', 'Institute of Rheumatology'),
(131877, 105507, 'en', 'name', 'China Aerodynamics Research and Development Center'),
(131878, 105507, 'zh', 'name', 'äø­å›½ē©ŗę°”åŠØåŠ›ē ”ē©¶äøŽå‘å±•äø­åæƒ'),
(131879, 105508, 'en', 'name', 'Putian University'),
(131880, 105508, 'zh', 'name', 'čŽ†ē”°å­¦é™¢'),
(131881, 105509, 'no_lang_code', 'name', 'Det Danske Sprog- og Litteraturselskab (Denmark)'),
(131882, 105510, 'pt', 'name', 'Centro de Imagem Biomédica e Investigação Translacional'),
(131883, 105511, 'en', 'name', 'inhbar, Inc., inhbar, Inc. (Japan)'),
(131884, 105511, 'ja', 'name', 'ć‚¤ćƒ³ć‚Øć‚¤ćƒćƒćƒ¼åˆåŒä¼šē¤¾'),
(131885, 105512, 'en', 'name', 'The Japanese Society of Pathology'),
(131886, 105512, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē—…ē†å­¦ä¼š'),
(131887, 105513, 'en', 'name', 'Roanoke College'),
(131888, 105514, 'en', 'name', 'University of Wollongong'),
(131889, 105515, 'en', 'name', 'New Mexico Bureau of Geology and Mineral Resources'),
(131890, 105516, 'en', 'name', 'Marine Biodiversity Hub'),
(131891, 105517, 'en', 'name', 'Japan Patent Information Organization'),
(131892, 105517, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē‰¹čØ±ęƒ…å ±ę©Ÿę§‹'),
(131893, 105518, 'en', 'name', 'Babcock University'),
(131894, 105519, 'en', 'name', 'Institute for Building Environment and Energy Conservation'),
(131895, 105519, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰ē’°å¢ƒćƒ»ēœć‚Øćƒćƒ«ć‚®ćƒ¼ę©Ÿę§‹'),
(131896, 105520, 'en', 'name', 'National School for Statistics and Information Analysis'),
(131897, 105520, 'fr', 'name', 'Ɖcole Nationale de la Statistique et de l''Analyse de l''Information'),
(131898, 105521, 'en', 'name', 'Malawi College of Forestry and Wildlife'),
(131899, 105522, 'en', 'name', 'Kurihara Central Hospital'),
(131900, 105522, 'ja', 'name', 'ę —åŽŸåø‚ē«‹ę —åŽŸäø­å¤®ē—…é™¢'),
(131901, 105523, 'en', 'name', 'Center for Discrete Mathematics and Theoretical Computer Science'),
(131902, 105524, 'en', 'name', 'Iwaki Junior College'),
(131903, 105524, 'ja', 'name', 'ć„ć‚ćēŸ­ęœŸå¤§å­¦'),
(131904, 105525, 'it', 'name', 'L’Agenzia per la Meteorologia e Climatologia "ItaliaMeteo"'),
(131905, 105526, 'pt', 'name', 'Fundação Convento da Orada'),
(131906, 105527, 'en', 'name', 'Information Technology Association of America'),
(131907, 105528, 'en', 'name', 'Okinawa Prefectural Fisheries Research and Extension Center'),
(131908, 105528, 'ja', 'name', 'ę²–ēø„ēœŒę°“ē”£ęµ·ę“‹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(131909, 105529, 'en', 'name', 'LBJ Tropical Medical Center'),
(131910, 105530, 'en', 'name', 'North Estonia Medical Centre'),
(131911, 105531, 'en', 'name', 'Financial Research Institute of the Ministry of Finance of the Russian Federation'),
(131912, 105531, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ финансовый ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(131913, 105532, 'en', 'name', 'University of Sialkot'),
(131914, 105532, 'ur', 'name', 'جامعہ Ų³ŪŒŲ§Ł„Ś©ŁˆŁ¹'),
(131915, 105533, 'en', 'name', 'Runshaw College'),
(131916, 105534, 'en', 'name', 'Institute Of Geriatric Medicine And Dentistry'),
(131917, 105534, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč€å¹“ę­Æē§‘åŒ»å­¦ē·åˆē ”ē©¶ę‰€'),
(131918, 105535, 'en', 'name', 'Kamuzu University of Health Sciences'),
(131919, 105536, 'en', 'name', 'Inuyama Hospital'),
(131920, 105536, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę”œę”‚ä¼šēŠ¬å±±ē—…é™¢'),
(131921, 105537, 'pt', 'name', 'Instituto de CiĆŖncias Ambientais, QuĆ­micas e FarmacĆŖuticas'),
(131922, 105538, 'en', 'name', 'Institute of Measurement Science of the Slovak Academy of Sciences'),
(131923, 105538, 'sk', 'name', 'Ústav Merania SlovenskÔ akadémia vied'),
(131924, 105539, 'en', 'name', 'Musashino Junior College'),
(131925, 105539, 'ja', 'name', 'ę­¦č”µé‡ŽēŸ­ęœŸå¤§å­¦'),
(131926, 105540, 'en', 'name', 'Kazakhstan-Russian Medical University'),
(131927, 105540, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½-Ресей ŠœŠµŠ“ициналық Университеті'),
(131928, 105540, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠ¾-Российский ŠœŠµŠ“ицинский Университет'),
(131929, 105541, 'es', 'name', 'Corporación Universitaria Latinoamericana'),
(131930, 105542, 'es', 'name', 'Fundación Universitaria Agraria de Colombia - UNIAGRARIA'),
(131931, 105543, 'no_lang_code', 'name', 'MSD (France)'),
(131932, 105544, 'pt', 'name', 'Fundação Gaspar Frutuoso'),
(131933, 105545, 'en', 'name', 'SANKO Research Institute'),
(131934, 105545, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø‰åŗ·ę–‡åŒ–ē ”ē©¶ę‰€'),
(131935, 105546, 'en', 'name', 'Molde University College'),
(131936, 105547, 'en', 'name', 'Technical University "Metinvest Polytechnic" LLC'),
(131937, 105548, 'en', 'name', 'University of National Education'),
(131938, 105548, 'id', 'name', 'Universitas Pendidikan Nasional'),
(131939, 105549, 'pt', 'name', 'Escola de Hotelaria e Turismo do Porto'),
(131940, 105550, 'en', 'name', 'University of Split'),
(131941, 105550, 'hr', 'name', 'SveučiliŔte u Splitu'),
(131942, 105550, 'sr', 'name', 'Š”Š²ŠµŃƒŃ‡ŠøŠ»ŠøŃˆŃ‚Šµ у Š”ŠæŠ»ŠøŃ‚Ńƒ'),
(131943, 105551, 'en', 'name', 'Toyosato Hospital'),
(131944, 105551, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč±Šéƒ·ē—…é™¢'),
(131945, 105552, 'cs', 'name', 'Ú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'),
(131946, 105552, 'en', 'name', 'Czech Academy of Sciences, Institute of Rock Structure and Mechanics'),
(131947, 105553, 'en', 'name', 'Kakeyu-Misayama Rehabilitation Center'),
(131948, 105553, 'ja', 'name', 'JAé•·é‡ŽåŽšē”Ÿé€£é¹æę•™ę¹Æäø‰ę‰å±±ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(131949, 105554, 'en', 'name', 'International Image Sensor Society'),
(131950, 105555, 'en', 'name', 'Xiamen University'),
(131951, 105555, 'zh', 'name', 'åŽ¦é—Øå¤§å­¦'),
(131952, 105556, 'pt', 'name', 'Centro de Investigação em Sistemas Computacionais Embebidos e de Tempo-Real'),
(131953, 105557, 'en', 'name', 'Field Museum of Natural History'),
(131954, 105557, 'es', 'name', 'Museo Field de Historia Natural'),
(131955, 105557, 'fr', 'name', 'MusƩum field'),
(131956, 105558, 'en', 'name', 'Jayoti Vidyapeeth Women''s University'),
(131957, 105558, 'hi', 'name', 'ą¤œą„ą¤Æą„‹ą¤¤ą¤æ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤  महिला ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(131958, 105559, 'en', 'name', 'Rose–Hulman Institute of Technology'),
(131959, 105559, 'es', 'name', 'Instituto de TecnologĆ­a Rose-Hulman'),
(131960, 105560, 'fr', 'name', 'FƩdƩration de Chimie et MatƩriaux de Paris-Centre'),
(131961, 105561, 'en', 'name', 'Steel Memorial Muroran Hospital'),
(131962, 105561, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč£½é‰„čØ˜åæµå®¤č˜­ē—…é™¢'),
(131963, 105562, 'en', 'name', 'Advanced Diagnostic and Interventional Radiology Research Center'),
(131964, 105562, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų±Ų§ŲÆŪŒŁˆŁ„ŁˆŚ˜ŪŒ Ł†ŁˆŪŒŁ† و ŲŖŁ‡Ų§Ų¬Ł…ŪŒ'),
(131965, 105563, 'en', 'name', 'Ivy Tech Community College of Indiana'),
(131966, 105564, 'en', 'name', 'University of Nova Gorica'),
(131967, 105564, 'sl', 'name', 'Univerza v Novi Gorici'),
(131968, 105565, 'en', 'name', 'Institute for Environmental Research'),
(131969, 105565, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ł…Ų­ŪŒŲ· زیست'),
(131970, 105566, 'en', 'name', 'Miyazaki Prefectural Forestry Technology Center'),
(131971, 105566, 'ja', 'name', 'å®®å“ŽēœŒęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(131972, 105567, 'cs', 'name', 'MoravskĆ” VysokĆ” Skola Olomouc'),
(131973, 105567, 'en', 'name', 'Moravian University College Olomouc'),
(131974, 105568, 'pt', 'name', 'Deloitte Portugal (Portugal)'),
(131975, 105569, 'en', 'name', 'Marwadi Education Foundation'),
(131976, 105570, 'en', 'name', 'University of Jiroft'),
(131977, 105570, 'fa', 'name', 'دانؓگاه جیرفت'),
(131978, 105571, 'en', 'name', 'Federal Government of Brazil'),
(131979, 105572, 'en', 'name', 'Tokyo Kasei Junior College'),
(131980, 105572, 'ja', 'name', 'ę±äŗ¬å®¶ę”æå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(131981, 105573, 'fr', 'name', 'ABSys'),
(131982, 105574, 'en', 'name', 'Kurashiki Sweet Hospital'),
(131983, 105574, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå’Œé¦™ä¼šå€‰ę•·ć‚¹ć‚¤ćƒ¼ćƒˆćƒ›ć‚¹ćƒ”ć‚æćƒ«'),
(131984, 105575, 'en', 'name', 'College of the Atlantic'),
(131985, 105576, 'id', 'name', 'Universitas Wijaya Kusuma Surabaya'),
(131986, 105577, 'en', 'name', 'Nanjing Institute of Technology'),
(131987, 105578, 'pt', 'name', 'Centro de Investigação em Justiça e Governação'),
(131988, 105579, 'en', 'name', 'Xinjiang Normal University'),
(131989, 105579, 'ug', 'name', 'ؓىنجاڭ Ł¾Ł‰ŲÆŲ§ŚÆŁˆŚÆŪŁƒŲ§ ئۇنىۋېرسىتېتى'),
(131990, 105579, 'zh', 'name', 'ę–°ē–†åøˆčŒƒå¤§å­¦'),
(131991, 105580, 'en', 'name', 'University of Deusto'),
(131992, 105580, 'es', 'name', 'Universidad de Deusto'),
(131993, 105580, 'eu', 'name', 'Deustuko Unibertsitatea'),
(131994, 105580, 'gl', 'name', 'Universidade de Deusto'),
(131995, 105581, 'en', 'name', 'Datascope Analytics'),
(131996, 105582, 'en', 'name', 'Japan Accreditation Board'),
(131997, 105582, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é©åˆę€§čŖå®šå”ä¼š'),
(131998, 105583, 'en', 'name', 'Nepal Orthopaedic Hospital'),
(131999, 105584, 'de', 'name', 'Hessisches Landesarchiv'),
(132000, 105585, 'en', 'name', 'Kobe College of Education'),
(132001, 105585, 'ja', 'name', 'ē„žęˆøę•™č‚²ēŸ­ęœŸå¤§å­¦'),
(132002, 105586, 'en', 'name', 'Nishimino Kosei Hospital'),
(132003, 105586, 'ja', 'name', 'JAå²é˜œåŽšē”Ÿé€£č„æē¾ŽęæƒåŽšē”Ÿē—…é™¢'),
(132004, 105587, 'es', 'name', 'Universidad Internacional SEK'),
(132005, 105588, 'en', 'name', 'Japan Inspection Association of Food and Food Industry Environment'),
(132006, 105588, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé£Ÿå“ē’°å¢ƒę¤œęŸ»å”ä¼š'),
(132007, 105589, 'de', 'name', 'Bundeswehr'),
(132008, 105590, 'en', 'name', 'Sunan Kalijaga State Islamic University Yogyakarta'),
(132009, 105590, 'id', 'name', 'Universitas Islam Negeri Sunan Kalijaga Yogyakarta'),
(132010, 105591, 'en', 'name', 'Kagawa Prefectural Industrial Technology Center'),
(132011, 105591, 'ja', 'name', 'é¦™å·ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(132012, 105592, 'en', 'name', 'Kobe Tokiwa Junior College'),
(132013, 105592, 'ja', 'name', 'ē„žęˆøåøøē›¤å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(132014, 105593, 'en', 'name', 'Ƈağ University'),
(132015, 105593, 'tr', 'name', 'Ƈağ Ɯniversitesi'),
(132016, 105594, 'es', 'name', 'Universidad Privada Franz Tamayo'),
(132017, 105595, 'en', 'name', 'Hokkaido Cardiovascular Hospital'),
(132018, 105595, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ—ęµ·é“å¾Ŗē’°å™Øē—…é™¢'),
(132019, 105596, 'es', 'name', 'Fundación Universitaria Cafam'),
(132020, 105597, 'en', 'name', 'State University of Management'),
(132021, 105597, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ'),
(132022, 105598, 'en', 'name', 'Brazilian Air Force Academy'),
(132023, 105598, 'pt', 'name', 'Academia da ForƧa AƩrea'),
(132024, 105599, 'pt', 'name', 'GrƩmio LiterƔrio'),
(132025, 105600, 'id', 'name', 'Universitas Prima Indonesia'),
(132026, 105601, 'en', 'name', 'University of Engineering and Technology Peshawar'),
(132027, 105601, 'ur', 'name', 'Ų§Ł†Ų¬ŪŒŁ†Ų¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ پؓاور ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ.'),
(132028, 105602, 'pt', 'name', 'Centro de Investigação em Informação Comunicação e Cultura Digital'),
(132029, 105603, 'pt', 'name', 'Centro de Estudos ClƔssicos e Humanƭsticos'),
(132030, 105604, 'en', 'name', 'Wabash College'),
(132031, 105605, 'en', 'name', 'Marian University - Indiana'),
(132032, 105606, 'es', 'name', 'Instituto Campechano'),
(132033, 105607, 'en', 'name', 'Nippon Koukan Hospital'),
(132034, 105607, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ć“ć†ć‹ć‚“ä¼šę—„ęœ¬é‹¼ē®”ē—…é™¢'),
(132035, 105608, 'en', 'name', 'Reactions and Chemical Engineering Laboratory'),
(132036, 105608, 'fr', 'name', 'Laboratoire RƩactions et GƩnie des ProcƩdƩs'),
(132037, 105609, 'en', 'name', 'Aisei Hospital'),
(132038, 105609, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę„›äø–ä¼šę„›čŖ ē—…é™¢'),
(132039, 105610, 'en', 'name', 'Ibero-American University Puebla'),
(132040, 105610, 'es', 'name', 'Universidad Iberoamericana Puebla'),
(132041, 105611, 'en', 'name', 'Cracow University of Technology'),
(132042, 105611, 'pl', 'name', 'Politechnika Krakowska im. Tadeusza Kościuszki'),
(132043, 105612, 'en', 'name', 'Textile Research Institute of Gunma'),
(132044, 105612, 'ja', 'name', 'ē¾¤é¦¬ēœŒē¹Šē¶­å·„ę„­č©¦éØ“å “'),
(132045, 105613, 'en', 'name', 'University of California System'),
(132046, 105613, 'es', 'name', 'Universidad de California'),
(132047, 105613, 'fr', 'name', 'UniversitƩ de Californie'),
(132048, 105614, 'en', 'name', 'The Distribution Economics Institute of Japan'),
(132049, 105614, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęµé€šēµŒęøˆē ”ē©¶ę‰€'),
(132050, 105615, 'en', 'name', 'Kumamoto Shinto General Hospital'),
(132051, 105615, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå‰µčµ·ä¼šćć¾ć‚‚ćØę£®éƒ½ē·åˆē—…é™¢'),
(132052, 105616, 'en', 'name', 'Union Adventist University'),
(132053, 105617, 'en', 'name', 'Chiba Industrial Technology Research Institute'),
(132054, 105617, 'ja', 'name', 'åƒč‘‰ēœŒē”£ę„­ę”Æę“ęŠ€č”“ē ”ē©¶ę‰€'),
(132055, 105618, 'de', 'name', 'FH Münster, Fachhochschule Münster'),
(132056, 105619, 'en', 'name', 'Kameoka Municipal Hospital'),
(132057, 105619, 'ja', 'name', '亀岔市立病院'),
(132058, 105620, 'id', 'name', 'Universitas Muhammadiyah Banjarmasin'),
(132059, 105621, 'en', 'name', 'Avrasya University'),
(132060, 105621, 'tr', 'name', 'Avrasya Üniversitesi'),
(132061, 105622, 'en', 'name', 'City Literary Institute'),
(132062, 105623, 'en', 'name', 'National Museums Scotland'),
(132063, 105624, 'en', 'name', 'San Diego Community College District'),
(132064, 105625, 'en', 'name', 'Asakura Medical Association Hospital'),
(132065, 105625, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęœå€‰åŒ»åø«ä¼šęœå€‰åŒ»åø«ä¼šē—…é™¢'),
(132066, 105626, 'pt', 'name', 'Universidade Paulista Campinas'),
(132067, 105627, 'en', 'name', 'National Formosa University'),
(132068, 105628, 'de', 'name', 'Hochschule Reutlingen'),
(132069, 105628, 'en', 'name', 'Reutlingen University'),
(132070, 105629, 'en', 'name', 'University of Medical Sciences, Ondo'),
(132071, 105630, 'es', 'name', 'Centro de Investigaciones en Optica'),
(132072, 105631, 'en', 'name', 'Anhui University of Science and Technology'),
(132073, 105631, 'zh', 'name', '安徽理巄大学'),
(132074, 105632, 'en', 'name', 'Kyoto University of Advanced Science'),
(132075, 105632, 'ja', 'name', 'äŗ¬éƒ½å…ˆē«Æē§‘å­¦å¤§å­¦'),
(132076, 105633, 'de', 'name', 'Hochschule Pforzheim'),
(132077, 105633, 'en', 'name', 'Pforzheim University of Applied Sciences'),
(132078, 105634, 'en', 'name', 'The Japan Society of Information and Communication'),
(132079, 105634, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęƒ…å ±é€šäæ”å­¦ä¼š'),
(132080, 105635, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ł…Ł„Łƒ عبدالله للدراسات ŁˆŲ§Ł„ŲØŲ­ŁˆŲ« Ų§Ł„ŲØŲŖŲ±ŁˆŁ„ŁŠŲ©'),
(132081, 105635, 'en', 'name', 'King Abdullah Petroleum Studies and Research Center'),
(132082, 105636, 'en', 'name', 'Federal University of SĆ£o Carlos'),
(132083, 105636, 'pt', 'name', 'Universidade Federal de SĆ£o Carlos'),
(132084, 105637, 'en', 'name', 'The Japanese Society of Hematology'),
(132085, 105637, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č”€ę¶²å­¦ä¼š'),
(132086, 105638, 'en', 'name', 'National Superconducting Cyclotron Laboratory'),
(132087, 105639, 'fr', 'name', 'UniversitƩ Paul-ValƩry Montpellier, UniversitƩ Paul-ValƩry Montpellier III'),
(132088, 105640, 'ca', 'name', 'Universitat Gabriele d''Annunzio'),
(132089, 105640, 'en', 'name', 'University of Chieti-Pescara'),
(132090, 105640, 'fr', 'name', 'UniversitƩ de chieti'),
(132091, 105640, 'it', 'name', 'UniversitĆ  degli Studi "G. d''Annunzio" Chieti-Pescara'),
(132092, 105641, 'en', 'name', 'Institute of World Literature of the Slovak Academy of Sciences'),
(132093, 105641, 'sk', 'name', 'Ústav etnológie a sociÔlnej antropológie SlovenskÔ akadémia vied'),
(132094, 105642, 'en', 'name', 'St. Andrew''s University of Education'),
(132095, 105642, 'ja', 'name', 'ę”ƒå±±å­¦é™¢ę•™č‚²å¤§å­¦'),
(132096, 105643, 'en', 'name', 'Forestry Research Institute of Sweden'),
(132097, 105644, 'en', 'name', 'Mie Prefectural General Medical Center'),
(132098, 105644, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗäø‰é‡ēœŒē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(132099, 105645, 'en', 'name', 'National Institute for Nuclear Physics, Lecce Section'),
(132100, 105645, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Lecce'),
(132101, 105646, 'el', 'name', 'ΑκαΓημία Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(132102, 105646, 'en', 'name', 'Academy of Athens'),
(132103, 105646, 'fr', 'name', 'Académie d''athènes'),
(132104, 105647, 'pt', 'name', 'Centro de FĆ­sica'),
(132105, 105648, 'en', 'name', 'Japan Railway Construction, Transport and Technology Agency'),
(132106, 105648, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗé‰„é“å»ŗčØ­ćƒ»é‹č¼øę–½čØ­ę•“å‚™ę”Æę“ę©Ÿę§‹'),
(132107, 105649, 'en', 'name', 'Istanbul Aydın University'),
(132108, 105649, 'tr', 'name', 'İstanbul Aydın Üniversitesi'),
(132109, 105650, 'pt', 'name', 'Centro de Investigação em Ciências da Saúde'),
(132110, 105651, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Δυτικής Αττικής'),
(132111, 105651, 'en', 'name', 'University of West Attica'),
(132112, 105652, 'en', 'name', 'Pratiksha Institute of Pharmaceutical Sciences'),
(132113, 105653, 'en', 'name', 'Murdoch University'),
(132114, 105654, 'es', 'name', 'Universidad PolitƩcnica de Pachuca'),
(132115, 105655, 'en', 'name', 'Medical College For Women and Hospital'),
(132116, 105656, 'en', 'name', 'Brixsana Private Clinic'),
(132117, 105657, 'en', 'name', 'Gümüşhane University'),
(132118, 105657, 'tr', 'name', 'Gümüşhane Üniversitesi'),
(132119, 105658, 'en', 'name', 'University Hospital Centre Zagreb'),
(132120, 105658, 'sr', 'name', 'ŠšŠ‘Š¦ Загреб'),
(132121, 105659, 'es', 'name', 'Facultad de Contaduría y Administración'),
(132122, 105660, 'en', 'name', 'Wenzhou Medical University'),
(132123, 105660, 'zh', 'name', 'ęø©å·žåŒ»ē§‘å¤§å­¦'),
(132124, 105661, 'en', 'name', 'Kerala Veterinary and Animal Sciences University'),
(132125, 105661, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“µąµ†ą“±ąµą“±ą“±ą“æą“Øą“±ą“æ ą“†ą“Øąµą“±ąµ ą“…ą“Øą“æą“®ąµ½ ą“øą“Æąµ»ą“øąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(132126, 105662, 'en', 'name', 'U.S. Army Research Institute of Environmental Medicine'),
(132127, 105663, 'en', 'name', 'Japanese Society of Veterinary Science'),
(132128, 105663, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē£åŒ»å­¦ä¼š'),
(132129, 105664, 'en', 'name', 'Bandung University of Technology'),
(132130, 105664, 'id', 'name', 'Universitas Teknologi Bandung'),
(132131, 105665, 'en', 'name', 'Radiological Society of North America'),
(132132, 105666, 'no_lang_code', 'name', 'ArchLab'),
(132133, 105667, 'en', 'name', 'SongShan ShaoLin WuShu College'),
(132134, 105667, 'zh', 'name', 'åµ©å±±å°‘ęž—ę­¦ęœÆčŒäøšå­¦é™¢'),
(132135, 105668, 'en', 'name', 'Balfour Hospital'),
(132136, 105669, 'en', 'name', 'Institute of Local Government'),
(132137, 105669, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½č‡Ŗę²»å”ä¼š'),
(132138, 105670, 'en', 'name', 'Center for Environmental Economics - Montpellier'),
(132139, 105670, 'fr', 'name', 'Centre d''Economie de l''Environnement - Montpellier'),
(132140, 105671, 'en', 'name', 'Fort Hays State University'),
(132141, 105672, 'en', 'name', 'Merck Canada Inc., Merck Canada Inc. (Canada)'),
(132142, 105673, 'fr', 'name', 'CNRS IngƩnierie'),
(132143, 105674, 'en', 'name', 'South Eastern Regional College'),
(132144, 105675, 'es', 'name', 'Universidad Alas Peruanas'),
(132145, 105676, 'en', 'name', 'Estonian University of Life Sciences'),
(132146, 105676, 'et', 'name', 'Eesti Maaülikool'),
(132147, 105677, 'en', 'name', 'Yerevan State University'),
(132148, 105677, 'hy', 'name', 'ŌµÖ€Ö‡Õ”Õ¶Õ« ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(132149, 105678, 'en', 'name', 'Antioquia Institute of Technology'),
(132150, 105678, 'es', 'name', 'Tecnológico de Antioquia'),
(132151, 105679, 'en', 'name', 'Yunnan Normal University'),
(132152, 105679, 'zh', 'name', 'äŗ‘å—åøˆčŒƒå¤§å­¦'),
(132153, 105680, 'en', 'name', 'Zhejiang Yuexiu University'),
(132154, 105680, 'zh', 'name', 'ęµ™ę±Ÿč¶Šē§€å¤–å›½čÆ­å­¦é™¢'),
(132155, 105681, 'en', 'name', 'Shenzhen Bay Laboratory'),
(132156, 105681, 'zh', 'name', 'ę·±åœ³ę¹¾å®žéŖŒå®¤'),
(132157, 105682, 'tr', 'name', 'İstanbul Sisli Meslek Yüksekokulu'),
(132158, 105683, 'it', 'name', 'Ente Ospedaliero Cantonale'),
(132159, 105684, 'fr', 'name', 'Fonds de Recherche du QuƩbec - SociƩtƩ et culture'),
(132160, 105685, 'en', 'name', 'Methodist University of Piracicaba'),
(132161, 105685, 'pt', 'name', 'Universidade Metodista de Piracicaba'),
(132162, 105686, 'en', 'name', 'Ibaraki University'),
(132163, 105686, 'ja', 'name', 'čŒØåŸŽå¤§å­¦'),
(132164, 105687, 'en', 'name', 'Geo-Research Institute'),
(132165, 105687, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸåœ°ē›¤ē’°å¢ƒē ”ē©¶ę‰€'),
(132166, 105688, 'pt', 'name', 'Instituto Para Os Sistemas e Tecnologias de Informação Controlo e Comunicação'),
(132167, 105689, 'en', 'name', 'Amazon National University of Madre de Dios'),
(132168, 105689, 'es', 'name', 'Universidad Nacional Amazónica de Madre de Dios'),
(132169, 105690, 'en', 'name', 'Dubna State University'),
(132170, 105690, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”ŃƒŠ±Š½Š°Ā»'),
(132171, 105691, 'en', 'name', 'National Institute of Health Researches of Iran'),
(132172, 105691, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ł…Ł„ŪŒ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ سلامت'),
(132173, 105692, 'en', 'name', 'Institute for Animal Science'),
(132174, 105692, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå®¶ē•œå­¦ē ”ē©¶ę‰€'),
(132175, 105693, 'en', 'name', 'Japanese Dermatological Association'),
(132176, 105693, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēš®č†šē§‘å­¦ä¼š'),
(132177, 105694, 'en', 'name', 'University of Timor'),
(132178, 105694, 'id', 'name', 'Universitas Timor'),
(132179, 105695, 'en', 'name', 'Tashkent Pharmaceutical Institute'),
(132180, 105695, 'uz', 'name', 'Toshkent farmatsevtika instituti'),
(132181, 105696, 'en', 'name', 'Sakai City Institute of Public Health'),
(132182, 105696, 'ja', 'name', 'å ŗåø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(132183, 105697, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© بلاد Ų§Ł„Ų±Ų§ŁŲÆŁŠŁ† الجامعة'),
(132184, 105697, 'no_lang_code', 'name', 'Bilad Alrafidain University College'),
(132185, 105698, 'en', 'name', 'Bukhara State Medical Institute'),
(132186, 105699, 'en', 'name', 'Balseiro Institute'),
(132187, 105699, 'es', 'name', 'Instituto Balseiro'),
(132188, 105700, 'en', 'name', 'National Technical University of Ukraine ā€œIgor Sikorsky Kyiv Polytechnic Instituteā€'),
(132189, 105700, 'pl', 'name', 'Igor Sikorsky Kijowski Instytut Politechniczny'),
(132190, 105700, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украины ""Киевский политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š˜Š³Š¾Ń€Ń Дикорского"", ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Украины «Киевский политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени Š˜Š³Š¾Ń€Ń Дикорского»'),
(132191, 105700, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ України ""ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ політехнічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ імені Š†Š³Š¾Ń€Ń Š”Ń–ŠŗŠ¾Ń€ŃŃŒŠŗŠ¾Š³Š¾"", ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ України Ā«ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ політехнічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ імені Š†Š³Š¾Ń€Ń Š”Ń–ŠŗŠ¾Ń€ŃŃŒŠŗŠ¾Š³Š¾Ā»'),
(132192, 105701, 'fr', 'name', 'Polytech Tours'),
(132193, 105702, 'es', 'name', 'Facultad de Estudios Superiores Aragón'),
(132194, 105703, 'en', 'name', 'Toyama Prefectural Police'),
(132195, 105703, 'ja', 'name', '富山県警察'),
(132196, 105704, 'en', 'name', 'Aichi Medical Association'),
(132197, 105704, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę„›ēŸ„ēœŒåŒ»åø«ä¼š'),
(132198, 105705, 'en', 'name', 'Harding University Main Campus'),
(132199, 105706, 'ar', 'name', 'Ų§Ł„Ł„ŁˆŁŲ± أبوظبي'),
(132200, 105706, 'en', 'name', 'Louvre Abu Dhabi'),
(132201, 105706, 'fr', 'name', 'Louvre Abou Dabi'),
(132202, 105707, 'fr', 'name', 'UniversitƩ Joseph Ki-Zerbo, UniversitƩ de Ouagadougou'),
(132203, 105708, 'da', 'name', 'GrĆønlands Universitet'),
(132204, 105708, 'en', 'name', 'University of Greenland'),
(132205, 105708, 'kl', 'name', 'Ilisimatusarfik'),
(132206, 105709, 'en', 'name', 'KIDS First'),
(132207, 105709, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚­ćƒƒć‚ŗćƒ•ć‚”ćƒ¼ć‚¹ćƒˆ'),
(132208, 105710, 'en', 'name', 'European University of Lefke'),
(132209, 105710, 'tr', 'name', 'Lefke Avrupa Üniversitesi'),
(132210, 105711, 'en', 'name', 'University of Zadar'),
(132211, 105711, 'hr', 'name', 'SveučiliŔte u Zadru'),
(132212, 105711, 'sr', 'name', 'Š”Š²ŠµŃƒŃ‡ŠøŠ»ŠøŃˆŃ‚Šµ у Š—Š°Š“Ń€Ńƒ'),
(132213, 105712, 'en', 'name', 'Polytechnic Institute of Beja'),
(132214, 105712, 'pt', 'name', 'Instituto PolitƩcnico de Beja'),
(132215, 105713, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© طرابلس'),
(132216, 105713, 'en', 'name', 'University of Tripoli'),
(132217, 105713, 'it', 'name', 'UniversitĆ  di Tripoli'),
(132218, 105714, 'en', 'name', 'Carnegie Department of Plant Biology'),
(132219, 105715, 'fr', 'name', 'Centre Nouvelle Aquitaine-Bordeaux'),
(132220, 105716, 'en', 'name', 'Gunma Industry Support Organization'),
(132221, 105716, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē¾¤é¦¬ēœŒē”£ę„­ę”Æę“ę©Ÿę§‹'),
(132222, 105717, 'en', 'name', 'Iqra University'),
(132223, 105718, 'no_lang_code', 'name', 'Alnylam Pharmaceuticals (United States)'),
(132224, 105719, 'en', 'name', 'Acharya N. G. Ranga Agricultural University'),
(132225, 105720, 'en', 'name', 'The Japanese Psychological Association'),
(132226, 105720, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åæƒē†å­¦ä¼š'),
(132227, 105721, 'pt', 'name', 'Centro de Investigação em Sistemas e Tecnologias'),
(132228, 105722, 'en', 'name', 'Rajagiri College of Social Sciences (Autonomous)'),
(132229, 105723, 'ca', 'name', 'Universitat Internacional de Catalunya'),
(132230, 105723, 'en', 'name', 'International University of Catalonia'),
(132231, 105723, 'es', 'name', 'Universidad Internacional de CataluƱa'),
(132232, 105724, 'en', 'name', 'Riga Technical University'),
(132233, 105724, 'lt', 'name', 'Rygos technikos universitetas'),
(132234, 105724, 'lv', 'name', 'Rīgas Tehniskā universitāte'),
(132235, 105724, 'ru', 'name', 'Рижский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(132236, 105725, 'en', 'name', 'Software Information Center'),
(132237, 105725, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚½ćƒ•ćƒˆć‚¦ć‚§ć‚¢ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(132238, 105726, 'en', 'name', 'Jiangsu University of Science and Technology'),
(132239, 105726, 'zh', 'name', 'ę±Ÿč‹ē§‘ęŠ€å¤§å­¦'),
(132240, 105727, 'en', 'name', 'Kihara Memorial Yokohama Foundation for the Advancement of Life Sciences'),
(132241, 105727, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęœØåŽŸčØ˜åæµęØŖęµœē”Ÿå‘½ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(132242, 105728, 'en', 'name', 'Japan Child and Family Research Institute'),
(132243, 105728, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę©č³œč²”å›£ęÆå­ę„›č‚²ä¼šę—„ęœ¬å­ć©ć‚‚å®¶åŗ­ē·åˆē ”ē©¶ę‰€'),
(132244, 105729, 'en', 'name', 'World Maritime University'),
(132245, 105730, 'en', 'name', 'Hiroshima Community Research Center'),
(132246, 105730, 'ja', 'name', 'č²”å›£ę³•äŗŗåŗƒå³¶åœ°åŸŸē¤¾ä¼šē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(132247, 105731, 'en', 'name', 'Tokyo Geographical Society'),
(132248, 105731, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬åœ°å­¦å”ä¼š'),
(132249, 105732, 'en', 'name', 'Mohamed Sathak College of Arts and Science'),
(132250, 105733, 'de', 'name', 'UniversitƤt Neuenburg'),
(132251, 105733, 'en', 'name', 'University of Neuchâtel'),
(132252, 105733, 'fr', 'name', 'Université de Neuchâtel'),
(132253, 105734, 'en', 'name', 'Tokyo Bay Rehabilitation Hospital'),
(132254, 105734, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£äæå„ä¼šę±äŗ¬ę¹¾å²øćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(132255, 105735, 'en', 'name', 'Hanover College'),
(132256, 105736, 'en', 'name', 'Japan Power Engineering and Inspection Corporation'),
(132257, 105736, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē™ŗé›»čØ­å‚™ęŠ€č”“ę¤œęŸ»å”ä¼š'),
(132258, 105737, 'en', 'name', 'Ceramic Research Center of Nagasaki'),
(132259, 105737, 'ja', 'name', 'é•·å“ŽēœŒēŖÆę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(132260, 105738, 'en', 'name', 'Illinois Indiana Sea Grant'),
(132261, 105739, 'es', 'name', 'Universidad Argentina de la Empresa'),
(132262, 105739, 'fr', 'name', 'UniversitƩ argentine de la empresa'),
(132263, 105740, 'en', 'name', 'Center for Solid Waste Research'),
(132264, 105740, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ł…ŁˆŲ§ŲÆ Ų²Ų§Ų¦ŲÆ Ų¬Ų§Ł…ŲÆ'),
(132265, 105741, 'de', 'name', 'Handelshochschule Leipzig'),
(132266, 105741, 'en', 'name', 'HHL Leipzig Graduate School of Management'),
(132267, 105742, 'en', 'name', 'Kinjo College'),
(132268, 105742, 'ja', 'name', 'é‡‘åŸŽå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(132269, 105743, 'ar', 'name', 'البحر الأحمر Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(132270, 105743, 'en', 'name', 'Red Sea Global, Red Sea Global (Saudi Arabia)'),
(132271, 105744, 'en', 'name', 'Muhammad Nawaz Shareef University of Agriculture'),
(132272, 105744, 'ur', 'name', 'Ł…Ų­Ł…ŲÆ Ł†ŁˆŲ§Ų² ؓریف ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§ŪŒŚÆŲ±ŪŒŚ©Ł„Ś†Ų±'),
(132273, 105745, 'en', 'name', 'Fujiyoshida Municipal Medical Center'),
(132274, 105745, 'ja', 'name', 'å›½ę°‘å„åŗ·äæé™ŗåÆŒå£«å‰ē”°åø‚ē«‹ē—…é™¢'),
(132275, 105746, 'en', 'name', 'NSF Ocean Observatories Initiative'),
(132276, 105747, 'en', 'name', 'National Agrarian University La Molina'),
(132277, 105747, 'es', 'name', 'Universidad Nacional Agraria La Molina'),
(132278, 105748, 'en', 'name', 'University of Bradford'),
(132279, 105749, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁˆŁŠŲ±Ų©'),
(132280, 105749, 'en', 'name', 'University of Bouira'),
(132281, 105750, 'en', 'name', 'Aichi University of Technology Automotive Junior College'),
(132282, 105750, 'ja', 'name', 'ę„›ēŸ„å·„ē§‘å¤§å­¦č‡Ŗå‹•č»ŠēŸ­ęœŸå¤§å­¦'),
(132283, 105751, 'en', 'name', 'Research Centre in Digitalization and Intelligent Robotics'),
(132284, 105752, 'en', 'name', 'Slovenian Institute of Hop Research and Brewing'),
(132285, 105752, 'sk', 'name', 'InŔtitut za hmeljarstvo in pivovarstvo Slovenije'),
(132286, 105753, 'en', 'name', 'Shandong Management University'),
(132287, 105753, 'zh', 'name', 'å±±äøœē®”ē†å¤§å­¦'),
(132288, 105754, 'pt', 'name', 'Museu de Cerâmica'),
(132289, 105755, 'en', 'name', 'Uji-Tokushukai Medical Center'),
(132290, 105755, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šå®‡ę²»å¾³ę“²ä¼šē—…é™¢'),
(132291, 105756, 'en', 'name', 'George Fox University'),
(132292, 105757, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ų§Ł„ŁƒŁˆŁŠŲŖ'),
(132293, 105757, 'en', 'name', 'American University of Kuwait'),
(132294, 105758, 'en', 'name', 'People’s Hospital of Rizhao'),
(132295, 105759, 'ca', 'name', 'Universitat d''Andorra'),
(132296, 105759, 'en', 'name', 'University of Andorra'),
(132297, 105760, 'en', 'name', 'Sapporo International Junior College'),
(132298, 105760, 'ja', 'name', 'ęœ­å¹Œå›½éš›å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(132299, 105761, 'de', 'name', 'Interkantonale Hochschule für Heilpädagogik'),
(132300, 105761, 'en', 'name', 'University of Teacher Education in Special Needs'),
(132301, 105762, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦øą¦¾ą¦‡ą¦Øą§ą¦ø ą¦ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦®'),
(132302, 105762, 'en', 'name', 'University of Science and Technology Chittagong'),
(132303, 105763, 'en', 'name', 'Vietnam National University Ho Chi Minh City'),
(132304, 105763, 'vi', 'name', 'ĐẔi hį»c Quốc gia ThĆ nh phố Hồ ChĆ­ Minh'),
(132305, 105764, 'en', 'name', 'Polymer Institute of the Slovak Academy of Sciences'),
(132306, 105764, 'sk', 'name', 'Ústav polymérov SlovenskÔ akadémia vied'),
(132307, 105765, 'fr', 'name', 'Sciences de l''AntiquitƩ et du Moyen-Age'),
(132308, 105766, 'en', 'name', 'Nahdlatul Ulama University of Surabaya'),
(132309, 105766, 'id', 'name', 'Universitas Nahdlatul Ulama Surabaya'),
(132310, 105767, 'en', 'name', 'Mount Sinai Medical Center'),
(132311, 105768, 'en', 'name', 'The River Foundation'),
(132312, 105768, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę²³å·č²”å›£'),
(132313, 105769, 'ca', 'name', 'Universitat de MilĆ '),
(132314, 105769, 'de', 'name', 'UniversitƤt Mailand'),
(132315, 105769, 'en', 'name', 'University of Milan'),
(132316, 105769, 'fr', 'name', 'UniversitƩ de milan'),
(132317, 105769, 'it', 'name', 'UniversitĆ  degli Studi di Milano'),
(132318, 105770, 'en', 'name', 'Great Zimbabwe University'),
(132319, 105771, 'en', 'name', 'De La Salle-College of Saint Benilde'),
(132320, 105772, 'en', 'name', 'Tochigi Prefectural Agricultural Experiment Station'),
(132321, 105772, 'ja', 'name', 'ę ƒęœØēœŒč¾²ę„­č©¦éØ“å “'),
(132322, 105773, 'en', 'name', 'Tokyo Metropolitan University'),
(132323, 105773, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹å¤§å­¦'),
(132324, 105774, 'id', 'name', 'Universitas Ibn Khaldun Bogor'),
(132325, 105775, 'de', 'name', 'UniversitƤt Perugia'),
(132326, 105775, 'en', 'name', 'University of Perugia'),
(132327, 105775, 'fr', 'name', 'UniversitƩ de pƩrouse'),
(132328, 105775, 'it', 'name', 'UniversitĆ  degli Studi di Perugia'),
(132329, 105776, 'pt', 'name', 'Centro de Física Teórica de Partículas'),
(132330, 105777, 'en', 'name', 'Japan Institute of Energy'),
(132331, 105777, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Øćƒćƒ«ć‚®ćƒ¼å­¦ä¼š'),
(132332, 105778, 'en', 'name', 'Musashino Central Hospital'),
(132333, 105778, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·åˆä¼šę­¦č”µé‡Žäø­å¤®ē—…é™¢'),
(132334, 105779, 'en', 'name', 'The Land Institute of Japan'),
(132335, 105779, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœŸåœ°ē·åˆē ”ē©¶ę‰€'),
(132336, 105780, 'en', 'name', 'Marche Polytechnic University'),
(132337, 105780, 'fr', 'name', 'UniversitƩ polytechnique des marches'),
(132338, 105780, 'it', 'name', 'UniversitĆ  Politecnica delle Marche'),
(132339, 105781, 'en', 'name', 'Koszalin University of Technology'),
(132340, 105781, 'pl', 'name', 'Politechnika Koszalińska'),
(132341, 105782, 'es', 'name', 'Universidad de Otavalo'),
(132342, 105783, 'en', 'name', 'Regional Health Care and Social Agency Seven Lakes'),
(132343, 105783, 'it', 'name', 'Aziende Socio Sanitarie Territoriale dei Sette Laghi'),
(132344, 105784, 'en', 'name', 'State University of Norte Fluminense'),
(132345, 105784, 'es', 'name', 'Universidad Estatal del Norte Fluminense'),
(132346, 105784, 'pt', 'name', 'Universidade Estadual do Norte Fluminense Darcy Ribeiro'),
(132347, 105785, 'en', 'name', 'The Japan Iron and Steel Federation'),
(132348, 105785, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é‹¼é€£ē›Ÿ'),
(132349, 105786, 'en', 'name', 'Kochi Prefectural Government'),
(132350, 105786, 'ja', 'name', '高矄県庁'),
(132351, 105787, 'en', 'name', 'Research Unit on Children''s Psychosocial Maladjustment'),
(132352, 105787, 'fr', 'name', 'Groupe de Recherche sur l''Inadaptation Psychosociale Chez l''Enfant'),
(132353, 105788, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© 8 Ł…Ų§ŁŠ 45-قالمة'),
(132354, 105788, 'en', 'name', 'University of Guelma'),
(132355, 105789, 'en', 'name', 'FenerbahƧe University'),
(132356, 105789, 'tr', 'name', 'Fenerbahçe Üniversitesi'),
(132357, 105790, 'en', 'name', 'Aichi Center for Industry and Science Technology'),
(132358, 105790, 'ja', 'name', 'ć‚ć„ć”ē”£ę„­ē§‘å­¦ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(132359, 105791, 'en', 'name', 'Kawasaki Environment Research Institute'),
(132360, 105791, 'ja', 'name', 'å·å“Žåø‚ē’°å¢ƒē·åˆē ”ē©¶ę‰€'),
(132361, 105792, 'en', 'name', 'National Center for Biotechnology'),
(132362, 105792, 'kk', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ центр биотехнологии'),
(132363, 105793, 'en', 'name', 'Westmont College'),
(132364, 105794, 'en', 'name', 'Toyama International Center'),
(132365, 105794, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćØć‚„ć¾å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(132366, 105795, 'en', 'name', 'University of Malaysia, Perlis'),
(132367, 105795, 'ms', 'name', 'Universiti Malaysia Perlis'),
(132368, 105796, 'no_lang_code', 'name', 'OMV (Austria)'),
(132369, 105797, 'en', 'name', 'KANO General Hospital'),
(132370, 105797, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå”å’Œä¼šåŠ ē“ē·åˆē—…é™¢'),
(132371, 105798, 'en', 'name', 'Nanjing University of Science and Technology'),
(132372, 105798, 'zh', 'name', 'å—äŗ¬ē†å·„å¤§å­¦'),
(132373, 105799, 'en', 'name', 'Iceland University of the Arts'),
(132374, 105799, 'is', 'name', 'ListahĆ”skóli ƍslands'),
(132375, 105800, 'en', 'name', 'Hanze University of Applied Sciences'),
(132376, 105800, 'nl', 'name', 'Hanzehogeschool Groningen'),
(132377, 105801, 'en', 'name', 'IEEE Antennas and Propagation Society'),
(132378, 105802, 'en', 'name', 'Gifu Prefectural Research Institute for Agricultural Technology in Hilly and Mountainous Areas'),
(132379, 105802, 'ja', 'name', 'å²é˜œēœŒäø­å±±é–“č¾²ę„­ē ”ē©¶ę‰€'),
(132380, 105803, 'en', 'name', 'Xiangtan University'),
(132381, 105803, 'zh', 'name', '湘潭大学'),
(132382, 105804, 'en', 'name', 'Nagasaki Memorial Hospital'),
(132383, 105804, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé•·å“ŽčØ˜åæµē—…é™¢'),
(132384, 105805, 'en', 'name', 'Istanbul Sabahattin Zaim University'),
(132385, 105805, 'tr', 'name', 'İstanbul Sabahattin Zaim Üniversitesi'),
(132386, 105806, 'en', 'name', 'Amsterdam University of Applied Sciences'),
(132387, 105806, 'nl', 'name', 'Hogeschool van Amsterdam'),
(132388, 105807, 'fr', 'name', 'UniversitƩ du QuƩbec Ơ Chicoutimi'),
(132389, 105808, 'en', 'name', 'Institute for Sociology of the Slovak Academy of Sciences'),
(132390, 105808, 'sk', 'name', 'Sociologický ústav SlovenskÔ akadémia vied'),
(132391, 105809, 'en', 'name', 'Institute of Oncology Ljubljana'),
(132392, 105810, 'en', 'name', 'Omagari Kousei Medical Center'),
(132393, 105810, 'ja', 'name', 'JAē§‹ē”°åŽšē”Ÿé€£å¤§ę›²åŽšē”ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(132394, 105811, 'cs', 'name', 'Výzkumný Ústav ŽivočiÅ”nĆ© Výroby'),
(132395, 105811, 'en', 'name', 'Institute of Animal Science'),
(132396, 105812, 'en', 'name', 'IUCN Commission on Ecosystem Management'),
(132397, 105813, 'en', 'name', 'Dr. Om Parkash Eye Institute Pvt Ltd'),
(132398, 105814, 'en', 'name', 'Kita-akita Municipal Hospital'),
(132399, 105814, 'ja', 'name', 'JAē§‹ē”°åŽšē”Ÿé€£åŒ—ē§‹ē”°åø‚ę°‘ē—…é™¢'),
(132400, 105815, 'en', 'name', 'Yoka Hospital'),
(132401, 105815, 'ja', 'name', '公立八鹿病院'),
(132402, 105816, 'en', 'name', 'Sam Houston State University'),
(132403, 105816, 'fr', 'name', 'UniversitĆ© d''Ɖtat Sam Houston'),
(132404, 105817, 'en', 'name', 'Superior University'),
(132405, 105817, 'ur', 'name', 'سپیریئر کالج'),
(132406, 105818, 'pt', 'name', 'Faculdade Patos de Minas - FPM'),
(132407, 105819, 'en', 'name', 'National Technical University "Kharkiv Polytechnic Institute"'),
(132408, 105819, 'fr', 'name', 'L’UniversitĆ© Nationale Technique Ā«Institut Polytechnique de KharkovĀ»'),
(132409, 105819, 'pl', 'name', 'Narodowy Techniczny Uniwersytet Politechnika Charkowska'),
(132410, 105819, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(132411, 105819, 'tr', 'name', 'Ulusal Teknik Üniversitesi "Kharkov Politeknik Enstitüsü"'),
(132412, 105819, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ політехнічний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ā»'),
(132413, 105820, 'en', 'name', 'IUCN (United Kingdom)'),
(132414, 105821, 'de', 'name', 'UniversitƤt Witten/Herdecke'),
(132415, 105821, 'en', 'name', 'Witten/Herdecke University'),
(132416, 105822, 'en', 'name', 'Thomas Jefferson University'),
(132417, 105823, 'en', 'name', 'Akita Prefectural Government'),
(132418, 105823, 'ja', 'name', 'ē§‹ē”°ēœŒåŗ'),
(132419, 105824, 'en', 'name', 'National Institute of Food Technology, Entrepreneurship and Management - Thanjavur'),
(132420, 105825, 'es', 'name', 'Universidad Nacional Tecnológica de Lima Sur'),
(132421, 105826, 'en', 'name', 'Centre College'),
(132422, 105827, 'en', 'name', 'Nerima Hikarigaoka Hospital'),
(132423, 105827, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåœ°åŸŸåŒ»ē™‚ęŒÆčˆˆå”ä¼šē·“é¦¬å…‰ćŒäø˜ē—…é™¢'),
(132424, 105828, 'en', 'name', 'Valahia University of Targoviste'),
(132425, 105828, 'ro', 'name', 'Universitatea Valahia din TĆ¢rgoviște'),
(132426, 105829, 'en', 'name', 'Polymat'),
(132427, 105830, 'en', 'name', 'Extreme Light Infrastructure Beamlines'),
(132428, 105831, 'es', 'name', 'Universidad Michoacana de San NicolƔs de Hidalgo'),
(132429, 105832, 'en', 'name', 'Mohanlal Sukhadia University'),
(132430, 105832, 'hi', 'name', 'ą¤®ą„‹ą¤¹ą¤Øą¤²ą¤¾ą¤² ą¤øą„ą¤–ą¤¾ą¤”ą¤¼ą¤æą¤Æą¤¾ ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(132431, 105833, 'bn', 'name', 'ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦¬ą¦øą§ą¦¤ą§ą¦° ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও গবেষণা ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(132432, 105833, 'en', 'name', 'National Institute of Textile Engineering and Research'),
(132433, 105834, 'en', 'name', 'Bjelovar University of Applied Sciences'),
(132434, 105834, 'hr', 'name', 'VeleučiliŔte u Bjelovaru'),
(132435, 105835, 'en', 'name', 'U.S. Air Force Research Laboratory Information Directorate'),
(132436, 105836, 'pt', 'name', 'Centro de Estudos e Formação Avançada em Gestão e Economia'),
(132437, 105837, 'en', 'name', 'Omihachiman Community Medical Center'),
(132438, 105837, 'ja', 'name', 'čæ‘ę±Ÿå…«å¹”åø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(132439, 105838, 'en', 'name', 'Nexus Institute of Research and Innovation (NIRI)'),
(132440, 105839, 'en', 'name', 'Tianjin University of Technology'),
(132441, 105839, 'zh', 'name', '天擄理巄大学'),
(132442, 105840, 'en', 'name', 'Kyoto Kizugawa Hospital'),
(132443, 105840, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå•“äæ”ä¼šäŗ¬éƒ½ćć„å·ē—…é™¢'),
(132444, 105841, 'en', 'name', 'Hiroshima Prefectural Technology Research Institute'),
(132445, 105841, 'ja', 'name', 'åŗƒå³¶ēœŒē«‹ē·åˆęŠ€č”“ē ”ē©¶ę‰€'),
(132446, 105842, 'de', 'name', 'Hessisches Ministerium für Wissenschaft und Kunst'),
(132447, 105842, 'en', 'name', 'Hessian Ministry for Science and the Arts'),
(132448, 105843, 'fr', 'name', 'Centre INRAE Grand-Est - Colmar'),
(132449, 105844, 'en', 'name', 'University of New Haven'),
(132450, 105844, 'fr', 'name', 'UniversitƩ de new haven'),
(132451, 105845, 'en', 'name', 'Kumamoto Rehabilitation Hospital'),
(132452, 105845, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗä»¤å’Œä¼šē†Šęœ¬ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢');
INSERT INTO `ror_settings` VALUES
(132453, 105846, 'en', 'name', 'State Research Institute Centre for Innovative Medicine'),
(132454, 105846, 'lt', 'name', 'Valstybinis Mokslinių Tyrimų Institutas Inovatyvios Medicinos Centras'),
(132455, 105847, 'en', 'name', 'King Khaled Eye Specialist Hospital'),
(132456, 105848, 'en', 'name', 'National Institute for Nuclear Physics, Ferrara Division'),
(132457, 105848, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Ferrara'),
(132458, 105849, 'en', 'name', 'Shizuoka Graduate University of Public Health'),
(132459, 105849, 'ja', 'name', 'é™å²”ē¤¾ä¼šå„åŗ·åŒ»å­¦å¤§å­¦é™¢å¤§å­¦'),
(132460, 105850, 'tr', 'name', 'FCR Yayin LTD'),
(132461, 105851, 'en', 'name', 'Center for Physical Sciences and Technology'),
(132462, 105851, 'lt', 'name', 'Fizinių ir technologijos mokslų centras'),
(132463, 105852, 'en', 'name', 'Kimitsu Chuo Hospital'),
(132464, 105852, 'ja', 'name', 'å›½äæē›“å–¶ē·åˆē—…é™¢å›ę“„äø­å¤®ē—…é™¢'),
(132465, 105853, 'en', 'name', 'National Association for Practical Nurse Education and Service, National Association for Practical Nurse Education and Service, Inc. (United States)'),
(132466, 105854, 'es', 'name', 'Centro para el Control Estatal de Medicamentos, Equipos y Dispositivos MƩdicos'),
(132467, 105855, 'en', 'name', 'Anhui Jianzhu University'),
(132468, 105855, 'zh', 'name', 'å®‰å¾½å»ŗē­‘å·„äøšå­¦é™¢'),
(132469, 105856, 'en', 'name', 'International University of Japan'),
(132470, 105856, 'ja', 'name', '国際大学'),
(132471, 105857, 'en', 'name', 'Bursa Metropolitan Municipality'),
(132472, 105858, 'pt', 'name', 'Instituto Nacional de Administração'),
(132473, 105859, 'en', 'name', 'Soseikai General Hospital'),
(132474, 105859, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£č˜‡ē”Ÿä¼šč˜‡ē”Ÿä¼šē·åˆē—…é™¢'),
(132475, 105860, 'no_lang_code', 'name', 'Internet2'),
(132476, 105861, 'en', 'name', 'University of Eldoret'),
(132477, 105862, 'en', 'name', 'Cantonal and University Library of Lausanne'),
(132478, 105862, 'fr', 'name', 'BibliothĆØque cantonale et universitaire – Lausanne'),
(132479, 105863, 'pt', 'name', 'Laboratório Associado ICVS 3B''s'),
(132480, 105864, 'en', 'name', 'Western Carolina University'),
(132481, 105865, 'en', 'name', 'University of Central Lancashire'),
(132482, 105866, 'en', 'name', 'LEM International, LEM International (Switzerland)'),
(132483, 105867, 'en', 'name', 'The Society of Chemical Engineers, Japan'),
(132484, 105867, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ–å­¦å·„å­¦ä¼š'),
(132485, 105868, 'en', 'name', 'Hong Kong Sanatorium and Hospital'),
(132486, 105868, 'zh', 'name', '養和醫院'),
(132487, 105869, 'pt', 'name', 'Fundação Bissaya Barreto'),
(132488, 105870, 'en', 'name', 'Research Ireland'),
(132489, 105870, 'ga', 'name', 'Taighde Ɖireann'),
(132490, 105870, 'no_lang_code', 'name', 'Taighde Ɖireann - Research Ireland'),
(132491, 105871, 'pt', 'name', 'Sociedade Portuguesa de Endocrinologia Diabetes e Metabolismo'),
(132492, 105872, 'en', 'name', 'Institute of Landscape Ecology of the Slovak Academy of Sciences'),
(132493, 105872, 'sk', 'name', 'Ústav krajinnej ekológie SlovenskÔ akadémia vied'),
(132494, 105873, 'en', 'name', 'Catholic University of Mozambique'),
(132495, 105873, 'pt', 'name', 'Universidade Católica de Moçambique'),
(132496, 105874, 'en', 'name', 'BICC - Bonn International Centre for Conflict Studies'),
(132497, 105875, 'no_lang_code', 'name', 'North Bay Shellfish (United Kingdom)'),
(132498, 105876, 'en', 'name', 'University of Saskatchewan'),
(132499, 105876, 'fr', 'name', 'UniversitƩ de la saskatchewan'),
(132500, 105877, 'en', 'name', 'University of Piura'),
(132501, 105878, 'en', 'name', 'Tottori Horticultural Experiment Station'),
(132502, 105878, 'ja', 'name', 'é³„å–ēœŒåœ’čŠøč©¦éØ“å “'),
(132503, 105879, 'en', 'name', 'University of Economics Ho Chi Minh City'),
(132504, 105879, 'fr', 'name', 'UniversitƩ d''Ʃconomie d''hƓ-chi-minh-ville'),
(132505, 105879, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ ThĆ nh phố Hồ ChĆ­ Minh'),
(132506, 105880, 'en', 'name', 'Saint Mary''s University'),
(132507, 105880, 'fr', 'name', 'UniversitƩ saint mary'),
(132508, 105881, 'en', 'name', 'Stafford College'),
(132509, 105882, 'no_lang_code', 'name', 'Kibabii University'),
(132510, 105883, 'en', 'name', 'National Institute of Science and Technology'),
(132511, 105883, 'or', 'name', 'ନେସନାଲ ą¬‡ą¬Øą¬·ą­ą¬Ÿą¬æą¬šą­ą­Ÿą­ą¬Ÿą­ ą¬…ą¬«ą­ ą¬øą¬¾ą¬‡ą¬Øą­ą¬ø ą¬†ą¬£ą­ą¬” ą¬Ÿą­‡ą¬•ą­ą¬Øą­‹ą¬²ą­‹ą¬œą¬æ'),
(132512, 105884, 'de', 'name', 'Eidgenössische Institut für Metrologie'),
(132513, 105884, 'en', 'name', 'Swiss Federal Institute of Metrology'),
(132514, 105884, 'fr', 'name', 'Institut FƩdƩral de MƩtrologie'),
(132515, 105884, 'it', 'name', 'Istituto Federale di Metrologia'),
(132516, 105885, 'en', 'name', 'Nuclear Regulation Authority'),
(132517, 105885, 'ja', 'name', 'åŽŸå­åŠ›č¦åˆ¶å§”å“”ä¼š'),
(132518, 105886, 'en', 'name', 'Kaken Test Center'),
(132519, 105886, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚«ć‚±ćƒ³ćƒ†ć‚¹ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(132520, 105887, 'en', 'name', 'Tochigi Prefectural Museum'),
(132521, 105887, 'ja', 'name', 'ę ƒęœØēœŒē«‹åšē‰©é¤Ø'),
(132522, 105888, 'no_lang_code', 'name', 'MSD (Norway)'),
(132523, 105889, 'en', 'name', 'Moscow Witte University'),
(132524, 105890, 'pt', 'name', 'Centro Nacional de Reprodução de Lince Ibérico'),
(132525, 105891, 'es', 'name', 'Instituto de Altos Estudios Nacionales'),
(132526, 105892, 'en', 'name', 'National Institute of Technology Rourkela'),
(132527, 105892, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤°ą¤¾ą¤‰ą¤°ą¤•ą„‡ą¤²ą¤¾'),
(132528, 105892, 'or', 'name', 'ą¬œą¬¾ą¬¤ą­€ą­Ÿ ą¬Ŗą­ą¬°ą¬Æą­ą¬•ą­ą¬¤ą¬æ ą¬Ŗą­ą¬°ą¬¤ą¬æą¬·ą­ą¬ ą¬¾ą¬Ø, ରାଉରକେଲା'),
(132529, 105893, 'es', 'name', 'Hospital Zambrano Hellion'),
(132530, 105894, 'en', 'name', 'Irish Management Institute'),
(132531, 105895, 'en', 'name', 'University of the Punjab'),
(132532, 105895, 'pa', 'name', 'ਪੰਜਾਬ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(132533, 105895, 'ur', 'name', 'جامعہ پنجاب'),
(132534, 105896, 'fr', 'name', 'UniversitƩ du QuƩbec en Outaouais'),
(132535, 105897, 'en', 'name', 'National Institute for Agricultural and Food Research and Technology'),
(132536, 105897, 'es', 'name', 'Instituto Nacional de Investigación y Tecnología Agraria y Alimentaria'),
(132537, 105898, 'en', 'name', 'American Bryological and Lichenological Society'),
(132538, 105899, 'en', 'name', 'NIIZASHIKI Central General Hospital'),
(132539, 105899, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę­¦č”µé‡Žä¼šę–°åŗ§åæ—ęœØäø­å¤®ē·åˆē—…é™¢'),
(132540, 105900, 'en', 'name', 'Iwate Prefectural Forestry Technology Center'),
(132541, 105900, 'ja', 'name', 'å²©ę‰‹ēœŒęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(132542, 105901, 'no_lang_code', 'name', 'Razi Vaccine and Serum Research Institute'),
(132543, 105902, 'en', 'name', 'Emerson College'),
(132544, 105903, 'en', 'name', 'Northern Territory Geological Survey'),
(132545, 105904, 'pt', 'name', 'Escola Superior de SaĆŗde da Cruz Vermelha Portuguesa'),
(132546, 105905, 'en', 'name', 'European Centre for Sociology and Political Science'),
(132547, 105905, 'fr', 'name', 'Centre EuropƩen de Sociologie et de Science Politique'),
(132548, 105906, 'en', 'name', 'Federal University of Lavras'),
(132549, 105906, 'pt', 'name', 'Universidade Federal de Lavras'),
(132550, 105907, 'en', 'name', 'NOAA Global Monitoring Laboratory'),
(132551, 105908, 'en', 'name', 'Environmental Protection Authority'),
(132552, 105908, 'mi', 'name', 'Te Mana Rauhī Taiao'),
(132553, 105909, 'en', 'name', 'Sugino Fashion Junior College'),
(132554, 105909, 'ja', 'name', 'ę‰é‡Žęœé£¾å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(132555, 105910, 'en', 'name', 'University Hospital in Motol'),
(132556, 105911, 'en', 'name', 'Union of Japanese Scientists and Engineers'),
(132557, 105911, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦ęŠ€č”“é€£ē›Ÿ'),
(132558, 105912, 'en', 'name', 'University of Uyo'),
(132559, 105912, 'yo', 'name', 'YunifÔsítì ìlú Uyo'),
(132560, 105913, 'en', 'name', 'Xiamen University of Technology'),
(132561, 105913, 'zh', 'name', 'åŽ¦é—Øē†å·„å­¦é™¢'),
(132562, 105914, 'en', 'name', 'Inazawa Municipal Hospital'),
(132563, 105914, 'ja', 'name', '稲沢市民病院'),
(132564, 105915, 'en', 'name', 'Lund University'),
(132565, 105915, 'fi', 'name', 'Lundin yliopisto'),
(132566, 105915, 'sv', 'name', 'Lunds universitet'),
(132567, 105916, 'en', 'name', 'Hubei University Of Economics'),
(132568, 105916, 'zh', 'name', 'ę¹–åŒ—ē»ęµŽå­¦é™¢'),
(132569, 105917, 'de', 'name', 'Freie UniversitƤt Bozen'),
(132570, 105917, 'en', 'name', 'Free University of Bozen-Bolzano'),
(132571, 105917, 'fr', 'name', 'UniversitƩ libre de bolzano'),
(132572, 105917, 'it', 'name', 'Libera UniversitĆ  di Bolzano'),
(132573, 105918, 'en', 'name', 'e-think energy research'),
(132574, 105919, 'en', 'name', 'Minimally Invasive Surgery centre'),
(132575, 105919, 'es', 'name', 'Centro de Cirugía de Mínima Invasión Jesús Usón'),
(132576, 105920, 'en', 'name', 'Swarthmore College'),
(132577, 105921, 'en', 'name', 'Quantitative Genetics and Evolution - Le Moulon'),
(132578, 105921, 'fr', 'name', 'GĆ©nĆ©tique Quantitative et Ɖvolution Le Moulon'),
(132579, 105922, 'en', 'name', 'Intercollege'),
(132580, 105923, 'de', 'name', 'Fachhochschule Potsdam'),
(132581, 105923, 'en', 'name', 'University of Applied Sciences Potsdam'),
(132582, 105924, 'en', 'name', 'Augusta University'),
(132583, 105925, 'en', 'name', 'Methodist University of SĆ£o Paulo'),
(132584, 105925, 'pt', 'name', 'Universidade Metodista de SĆ£o Paulo'),
(132585, 105926, 'en', 'name', 'Romanian Educational and Research Network'),
(132586, 105927, 'en', 'name', 'Ministry of Foreign Affairs'),
(132587, 105927, 'id', 'name', 'Kementerian Luar Negeri Republik Indonesia'),
(132588, 105928, 'en', 'name', 'Northern Illinois University'),
(132589, 105928, 'es', 'name', 'Universidad del Norte de Illinois'),
(132590, 105929, 'en', 'name', 'Japan Society for Analytical Chemistry'),
(132591, 105929, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åˆ†ęžåŒ–å­¦ä¼š'),
(132592, 105930, 'en', 'name', 'University of QuindĆ­o'),
(132593, 105930, 'es', 'name', 'Universidad del QuindĆ­o'),
(132594, 105931, 'es', 'name', 'Instituto de Estudios de AmƩrica Latina y el Caribe'),
(132595, 105932, 'en', 'name', 'UbuntuNet Alliance for Research and Education Networking'),
(132596, 105933, 'en', 'name', 'Kyoto Industrial Health Association'),
(132597, 105933, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäŗ¬éƒ½å·„å “äæå„ä¼š'),
(132598, 105934, 'en', 'name', 'International Institute for Water and Environmental Engineering'),
(132599, 105934, 'fr', 'name', 'Institut International d''IngƩnierie de l''Eau et de l''Environnement'),
(132600, 105935, 'en', 'name', 'Royal Society for the Protection of Birds'),
(132601, 105936, 'en', 'name', 'Millikin University'),
(132602, 105937, 'es', 'name', 'Universidad Popular de la Chontalpa'),
(132603, 105938, 'pt', 'name', 'Hospital de Santo AndrƩ'),
(132604, 105939, 'pt', 'name', 'CĆ¢mara Municipal de Aveiro'),
(132605, 105940, 'en', 'name', 'Mahatma Gandhi Central University'),
(132606, 105941, 'en', 'name', 'University of Waikato'),
(132607, 105942, 'en', 'name', 'Aldakin S.L. (Spain)'),
(132608, 105942, 'es', 'name', 'Aldakin S.L.'),
(132609, 105942, 'no_lang_code', 'name', 'Aldakin'),
(132610, 105943, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŲŗŲ§Ų²ŁŠ Ų§Ł„Ų­ŲÆŁŠŲ«Ų©'),
(132611, 105943, 'en', 'name', 'Benghazi Modern University'),
(132612, 105944, 'en', 'name', 'Institute of Higher Education for Innovation and Entrepreneurship - IHEIE, Mines Paris, PSL University, Institute of Higher Education for Innovation and Entrepreneurship (IHEIE)'),
(132613, 105944, 'fr', 'name', 'Institut des Hautes Ɖtudes pour l’Innovation et l’Entreprenariat - IHEIE, Mines Paris, UniversitĆ© PSL, Institut des Hautes Ɖtudes pour l’Innovation et l’Entreprenariat (IHEIE)'),
(132614, 105945, 'en', 'name', 'Industrial Technology Center of Tochigi Prefecture'),
(132615, 105945, 'ja', 'name', 'ę ƒęœØēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(132616, 105946, 'en', 'name', 'Wroclaw University of Economics and Business'),
(132617, 105946, 'pl', 'name', 'Uniwersytet Ekonomiczny we Wrocławiu'),
(132618, 105947, 'en', 'name', 'Indian Institute of Technology Dhanbad'),
(132619, 105947, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(132620, 105947, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®šąÆą®°ą®™ąÆą®•ą®µą®æą®Æą®²ąÆ ą®Ŗą®³ąÆą®³ą®æ ą®¤ą®©ąÆą®Ŗą®¾ą®¤ąÆ'),
(132621, 105948, 'de', 'name', 'Bundesministerium für Inneres'),
(132622, 105948, 'en', 'name', 'Federal Ministry for the Interior'),
(132623, 105949, 'en', 'name', 'SRM University, Andhra Pradesh'),
(132624, 105949, 'te', 'name', 'ą°Žą°øą±.ą°†ą°°ą±.ą°Žą°‚ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚ అమరావతి ą°†ą°‚ą°§ą±ą°°ą°Ŗą±ą°°ą°¦ą±‡ą°¶ą±'),
(132625, 105950, 'en', 'name', 'Republican Specialised Scientific and Practical Medical Centre of Eye Microsurgery'),
(132626, 105951, 'da', 'name', 'Velux Fonden'),
(132627, 105952, 'en', 'name', 'Fukui General Hospital'),
(132628, 105952, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę–°ē”°å”šåŒ»ē™‚ē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼ē¦äŗ•ē·åˆē—…é™¢'),
(132629, 105953, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© حائل'),
(132630, 105953, 'en', 'name', 'University of Ha''il'),
(132631, 105954, 'en', 'name', 'Hebei GEO University'),
(132632, 105954, 'zh', 'name', 'ēŸ³å®¶åŗ„ē»ęµŽå­¦é™¢'),
(132633, 105955, 'en', 'name', 'Korea Institute of Fusion Energy'),
(132634, 105956, 'en', 'name', 'Polytechnic of Rijeka'),
(132635, 105956, 'hr', 'name', 'VeleučiliŔte u Rijeci'),
(132636, 105957, 'en', 'name', 'KKR Takamatsu Hospital'),
(132637, 105957, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šKKRé«˜ę¾ē—…é™¢'),
(132638, 105958, 'hu', 'name', 'Tokaj-Hegyalja Egyetem'),
(132639, 105958, 'no_lang_code', 'name', 'University of Tokaj'),
(132640, 105959, 'en', 'name', 'Unnan City Hospital'),
(132641, 105959, 'ja', 'name', 'é›²å—åø‚ē«‹ē—…é™¢'),
(132642, 105960, 'en', 'name', 'Hong Kong Baptist University'),
(132643, 105961, 'en', 'name', 'Polytechnic University of Valencia'),
(132644, 105961, 'es', 'name', 'Universidad PolitƩcnica de Valencia'),
(132645, 105961, 'no_lang_code', 'name', 'Universitat PolitĆØcnica de ValĆØncia'),
(132646, 105962, 'en', 'name', 'National Institute for Laser Plasma and Radiation Physics'),
(132647, 105963, 'pt', 'name', 'Conselho de Reitores das Universidades Portuguesas'),
(132648, 105964, 'en', 'name', 'Public Opinion Research Center'),
(132649, 105964, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč¼æč«–ē§‘å­¦å”ä¼š'),
(132650, 105965, 'en', 'name', 'Directorate for STEM Education (EDU)'),
(132651, 105966, 'en', 'name', 'Hikone Municipal Hospital'),
(132652, 105966, 'ja', 'name', '彦根市立病院'),
(132653, 105967, 'nl', 'name', 'Provincie Gelderland'),
(132654, 105968, 'en', 'name', 'Yamaguchi Prefectural Agriculture and Forestry General Technology Center'),
(132655, 105968, 'ja', 'name', 'å±±å£ēœŒč¾²ęž—ē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(132656, 105969, 'en', 'name', 'Ravenshaw University'),
(132657, 105969, 'or', 'name', 'ą¬°ą­‡ą¬­ą­‡ą¬Øą­ą¬øą¬¾ ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(132658, 105970, 'en', 'name', 'Sir H.N. Reliance Foundation Hospital and Research Centre'),
(132659, 105971, 'de', 'name', 'Kantonsspital Winterthur'),
(132660, 105972, 'en', 'name', 'Albany College of Pharmacy and Health Sciences'),
(132661, 105973, 'es', 'name', 'Universidad Antonio NariƱo'),
(132662, 105974, 'en', 'name', 'Minnesota State Colleges and Universities System'),
(132663, 105975, 'az', 'name', 'Xəzər Universiteti'),
(132664, 105975, 'en', 'name', 'Khazar University'),
(132665, 105975, 'ru', 'name', 'Университет Єазар'),
(132666, 105976, 'en', 'name', 'Hangzhou Normal University'),
(132667, 105976, 'zh', 'name', 'ę­å·žåøˆčŒƒå¤§å­¦'),
(132668, 105977, 'en', 'name', 'Miyazaki Prefectural NOBEOKA Hospital'),
(132669, 105977, 'ja', 'name', 'å®®å“ŽēœŒē«‹å»¶å²”ē—…é™¢'),
(132670, 105978, 'en', 'name', 'Middle East Technical University'),
(132671, 105978, 'tr', 'name', 'Orta Doğu Teknik Üniversitesi'),
(132672, 105979, 'pt', 'name', 'AIMM - Associação para a Investigação do Meio Marinho'),
(132673, 105980, 'de', 'name', 'PƤdagogische Hochschule Steiermark'),
(132674, 105980, 'en', 'name', 'University of Teacher Education Styria'),
(132675, 105981, 'en', 'name', 'The Association for Preventive Medicine of Japan'),
(132676, 105981, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬äŗˆé˜²åŒ»å­¦å”ä¼š'),
(132677, 105982, 'en', 'name', 'University of OrlƩans'),
(132678, 105982, 'fr', 'name', 'UniversitƩ d''OrlƩans'),
(132679, 105983, 'en', 'name', 'Gheorghe Asachi Technical University of Iași'),
(132680, 105983, 'ro', 'name', 'Universitatea Tehnică Gheorghe Asachi din Iași'),
(132681, 105984, 'en', 'name', 'Calderdale College'),
(132682, 105985, 'en', 'name', 'Sleep Breathing Disorders Research Center'),
(132683, 105985, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اختلالات ŲŖŁ†ŁŲ³ŪŒ Ų­ŪŒŁ† خواب'),
(132684, 105986, 'en', 'name', 'Government of the Northern Territory'),
(132685, 105987, 'en', 'name', 'Miyagi Prefectural Livestock Experiment Station'),
(132686, 105987, 'ja', 'name', 'å®®åŸŽēœŒē•œē”£č©¦éØ“å “'),
(132687, 105988, 'en', 'name', 'Ecosystem Conservation SOCIETY-JAPAN'),
(132688, 105988, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿę…‹ē³»å”ä¼š'),
(132689, 105989, 'en', 'name', 'Okayama Prefecture Industrial Promotion Foundation'),
(132690, 105989, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå²”å±±ēœŒē”£ę„­ęŒÆčˆˆč²”å›£'),
(132691, 105990, 'pt', 'name', 'Instituto do Ambiente Tecnologia e Vida'),
(132692, 105991, 'en', 'name', 'MSD (Hungary)'),
(132693, 105992, 'en', 'name', 'Inner Mongolia Agricultural University'),
(132694, 105992, 'zh', 'name', 'å†…č’™å¤å†œäøšå¤§å­¦'),
(132695, 105993, 'en', 'name', 'Japan Quality Assurance Organization'),
(132696, 105993, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å“č³ŖäæčØ¼ę©Ÿę§‹'),
(132697, 105994, 'en', 'name', 'Avans University of Applied Sciences'),
(132698, 105994, 'nl', 'name', 'Avans Hogeschool'),
(132699, 105995, 'en', 'name', 'Kumamoto Prefectural Agricultural Research Center'),
(132700, 105995, 'ja', 'name', 'ē†Šęœ¬ēœŒč¾²ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(132701, 105996, 'pt', 'name', 'Centro Cardiovascular da Universidade de Lisboa'),
(132702, 105997, 'en', 'name', 'Photovoltaic Power Generation Technology Research Association'),
(132703, 105997, 'ja', 'name', 'å¤Ŗé™½å…‰ē™ŗé›»ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(132704, 105998, 'en', 'name', 'Kyoaikai Hospital'),
(132705, 105998, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗå‡½é¤Øå…±ę„›ä¼šå…±ę„›ä¼šē—…é™¢'),
(132706, 105999, 'en', 'name', 'Sultan Agung Islamic University'),
(132707, 105999, 'id', 'name', 'Universitas Islam Sultan Agung'),
(132708, 106000, 'en', 'name', 'Liaquat University of Medical & Health Sciences'),
(132709, 106001, 'en', 'name', 'National Institute for Nuclear Physics, Naples Unit'),
(132710, 106001, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Napoli'),
(132711, 106002, 'cy', 'name', 'Prifysgol Aberystwyth'),
(132712, 106002, 'en', 'name', 'Aberystwyth University'),
(132713, 106003, 'pt', 'name', 'Escola Superior de SaĆŗde Norte da Cruz Vermelha Portuguesa'),
(132714, 106004, 'no_lang_code', 'name', 'Manufacturing Technology Centre (United Kingdom)'),
(132715, 106005, 'no', 'name', 'Lovisenberg Diakonale HĆøgskole'),
(132716, 106006, 'en', 'name', 'National Physical Laboratory'),
(132717, 106007, 'pt', 'name', 'Instituto de Gestão e Administração Pública'),
(132718, 106008, 'en', 'name', 'Yokohama Brain and Spine Center'),
(132719, 106008, 'ja', 'name', 'ęØŖęµœåø‚ē«‹č„³å’äø­ćƒ»ē„žēµŒč„Šę¤Žć‚»ćƒ³ć‚æćƒ¼'),
(132720, 106009, 'en', 'name', 'Ehime Prefectural International Center'),
(132721, 106009, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę„›åŖ›ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(132722, 106010, 'en', 'name', 'Second Hospital of Hebei Medical University'),
(132723, 106011, 'en', 'name', 'University of Kashan'),
(132724, 106012, 'en', 'name', 'Khwaja Fareed University of Engineering and Information Technology'),
(132725, 106012, 'ur', 'name', 'خواجہ فرید ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§Ł†Ų¬ŪŒŁ†ŪŒŲ¦Ų±Ł†ŚÆ Ų§ŪŒŁ†Śˆ Ų§Ł†ŁŲ§Ų±Ł…ŪŒŲ“Ł† Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(132726, 106013, 'en', 'name', 'University of Montreal'),
(132727, 106013, 'fr', 'name', 'UniversitƩ de MontrƩal'),
(132728, 106014, 'en', 'name', 'The Asian International School'),
(132729, 106015, 'de', 'name', 'Evangelisches Krankenhaus Bielefeld'),
(132730, 106016, 'en', 'name', 'The Japan Bird Research Association'),
(132731, 106016, 'ja', 'name', 'čŖå®šNPOę³•äŗŗćƒćƒ¼ćƒ‰ćƒŖć‚µćƒ¼ćƒ'),
(132732, 106017, 'en', 'name', 'Indian Institute of Information Technology Vadodara'),
(132733, 106018, 'en', 'name', 'Soka Women''s College'),
(132734, 106018, 'ja', 'name', 'å‰µä¾”å„³å­ēŸ­ęœŸå¤§å­¦'),
(132735, 106019, 'en', 'name', 'Dong A University'),
(132736, 106019, 'vi', 'name', 'ĐẔi hį»c ĐƓng Ɓ'),
(132737, 106020, 'de', 'name', 'Technische Hochschule Augsburg'),
(132738, 106020, 'en', 'name', 'Hochschule Augsburg University of Applied Sciences'),
(132739, 106021, 'en', 'name', 'Ministry of Education, Universities and Research'),
(132740, 106021, 'it', 'name', 'Ministero dell''Istruzione, dell''UniversitĆ  e della Ricerca'),
(132741, 106022, 'en', 'name', 'Japan International Forestry Promotion and Cooperation Center'),
(132742, 106022, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ē·‘åŒ–ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(132743, 106023, 'fr', 'name', 'ArmƩe de terre'),
(132744, 106024, 'en', 'name', 'Kocaeli Health and Technology University'),
(132745, 106024, 'tr', 'name', 'Kocaeli Sağlık ve Teknoloji Üniversitesi'),
(132746, 106025, 'no_lang_code', 'name', 'Matej Bel University'),
(132747, 106025, 'sk', 'name', 'Univerzita Mateja Bela'),
(132748, 106026, 'en', 'name', 'St. Catherine Junior College'),
(132749, 106026, 'ja', 'name', 'č–ć‚«ć‚æćƒŖćƒŠå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(132750, 106027, 'id', 'name', 'Universitas Abdurrab'),
(132751, 106028, 'en', 'name', 'Ziaeian Hospital'),
(132752, 106028, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų¶ŪŒŲ§Ų¦ŪŒŲ§Ł†'),
(132753, 106029, 'en', 'name', 'Nishinihon Hospital'),
(132754, 106029, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£č–åå­—ä¼šč„æę—„ęœ¬ē—…é™¢'),
(132755, 106030, 'en', 'name', 'Walloon Agricultural Research Centre'),
(132756, 106030, 'fr', 'name', 'Centre wallon de Recherches Agronomiques'),
(132757, 106031, 'en', 'name', 'Miyagi Prefectural Government'),
(132758, 106031, 'ja', 'name', 'å®®åŸŽēœŒåŗ'),
(132759, 106032, 'en', 'name', 'Mie Prefecture Fisheries Research Institute'),
(132760, 106032, 'ja', 'name', 'äø‰é‡ēœŒę°“ē”£ē ”ē©¶ę‰€'),
(132761, 106033, 'en', 'name', 'Japan Society for Design Engineering'),
(132762, 106033, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čØ­čØˆå·„å­¦ä¼š'),
(132763, 106034, 'en', 'name', 'Nishina Memorial Foundation'),
(132764, 106034, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä»ē§‘čØ˜åæµč²”å›£'),
(132765, 106035, 'en', 'name', 'Khatam University'),
(132766, 106035, 'fa', 'name', 'دانؓگاه Ų®Ų§ŲŖŁ…'),
(132767, 106036, 'en', 'name', 'Protestant Theological University'),
(132768, 106036, 'nl', 'name', 'Protestantse Theologische Universiteit'),
(132769, 106037, 'en', 'name', 'Kyoto Okamoto Memorial Hospital'),
(132770, 106037, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå²”ęœ¬ē—…é™¢ļ¼ˆč²”å›£ļ¼‰äŗ¬éƒ½å²”ęœ¬čØ˜åæµē—…é™¢'),
(132771, 106038, 'en', 'name', 'Vishwakarma University'),
(132772, 106038, 'mr', 'name', 'ą¤µą¤æą¤¶ą„ą¤µą¤•ą¤°ą„ą¤®ą¤¾ ą¤Æą„ą¤Øą¤æą¤µą„ą¤¹ą¤°ą„ą¤øą¤æą¤Ÿą„€ / ą¤µą¤æą¤¶ą„ą¤µą¤•ą¤°ą„ą¤®ą¤¾ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(132773, 106039, 'ms', 'name', 'Universiti Malaysia Pahang Al-Sultan Abdullah'),
(132774, 106040, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŲ§ŲØŁ„'),
(132775, 106040, 'en', 'name', 'University of Babylon'),
(132776, 106041, 'es', 'name', 'Instituto Superior Tecnológico Bolivariano de Tecnología'),
(132777, 106042, 'en', 'name', 'IEEE Magnetics Society'),
(132778, 106043, 'fr', 'name', 'Association pour la sauvegarde de la mƩdina de Gafsa Asm Gafsa'),
(132779, 106044, 'en', 'name', 'Plaksha University'),
(132780, 106045, 'en', 'name', 'Sakura General Hospital'),
(132781, 106045, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåŒ»ä»ä¼šć•ćć‚‰ē·åˆē—…é™¢'),
(132782, 106046, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų®Ł„ŁŠŲ¬'),
(132783, 106046, 'en', 'name', 'Gulf College'),
(132784, 106047, 'de', 'name', 'Hessische Institut für Landesgeschichte'),
(132785, 106047, 'en', 'name', 'Hessian State Office for Historical Studies'),
(132786, 106048, 'it', 'name', 'Ospedale Regionale di Mendrisio'),
(132787, 106049, 'en', 'name', 'National Institute of Technology Warangal'),
(132788, 106049, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, वारांगल'),
(132789, 106050, 'en', 'name', 'Kumamoto Kenhoku Hospital'),
(132790, 106050, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗćć¾ć‚‚ćØēœŒåŒ—ē—…é™¢'),
(132791, 106051, 'en', 'name', 'Gujarat University'),
(132792, 106051, 'gu', 'name', 'ąŖ—ą«ąŖœąŖ°ąŖ¾ąŖ¤ ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(132793, 106051, 'hi', 'name', 'ą¤—ą„ą¤œą¤°ą¤¾ą¤¤ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(132794, 106051, 'ta', 'name', 'ą®•ąÆą®œą®°ą®¾ą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(132795, 106051, 'te', 'name', 'ą°—ą±ą°œą°°ą°¾ą°¤ą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(132796, 106052, 'en', 'name', 'Kampala International University'),
(132797, 106053, 'en', 'name', 'Electro-Chemical and Cancer Institute'),
(132798, 106053, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ē å…‰ä¼šč“®č¦‹ē™Œē ”ē©¶ę‰€'),
(132799, 106054, 'id', 'name', 'Universitas Muhammadiyah Sidoarjo'),
(132800, 106055, 'no_lang_code', 'name', 'OxyMem (Ireland)'),
(132801, 106056, 'en', 'name', 'Akita City Hospital'),
(132802, 106056, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåø‚ē«‹ē§‹ē”°ē·åˆē—…é™¢'),
(132803, 106057, 'en', 'name', 'University of Limpopo'),
(132804, 106058, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁƒŁˆŁŠŁ‡'),
(132805, 106058, 'en', 'name', 'Koya University'),
(132806, 106059, 'ro', 'name', 'Institutul National de Sanatate Publica'),
(132807, 106060, 'en', 'name', 'Alrijne Hospital'),
(132808, 106060, 'nl', 'name', 'Alrijne Ziekenhuis'),
(132809, 106061, 'en', 'name', 'Iwate University of Health and Medical Sciences'),
(132810, 106061, 'ja', 'name', 'å²©ę‰‹äæå„åŒ»ē™‚å¤§å­¦'),
(132811, 106062, 'en', 'name', 'Kawasaki Saiwai Hospital'),
(132812, 106062, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ēŸ³åæƒä¼šå·å“Žå¹øē—…é™¢'),
(132813, 106063, 'en', 'name', 'İzmir BakırƧay University'),
(132814, 106063, 'tr', 'name', 'Bakırçay Üniversitesi'),
(132815, 106064, 'en', 'name', 'Rajiv Gandhi National University of Law'),
(132816, 106064, 'pa', 'name', 'ąØ°ąØ¾ąØœą©€ąØµ ਗਾਂਧੀ ਨੈਸ਼ਨਲ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ਆਫ਼ ਲਾ'),
(132817, 106065, 'en', 'name', 'IUCN Climate Crisis Commission'),
(132818, 106066, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī Ī±Ļ„ĻĻŽĪ½'),
(132819, 106066, 'en', 'name', 'University of Patras'),
(132820, 106066, 'fr', 'name', 'UniversitƩ de patras'),
(132821, 106067, 'en', 'name', 'Uzbek State University of World Languages'),
(132822, 106067, 'uz', 'name', 'O''zbekiston Davlat Jahon tillari universiteti'),
(132823, 106068, 'en', 'name', 'Federal Ministry of Health'),
(132824, 106069, 'en', 'name', 'GeoSphere Austria'),
(132825, 106070, 'en', 'name', 'National Inter-University Consortium for Telecommunications'),
(132826, 106070, 'it', 'name', 'Consorzio Nazionale Interuniversitario per le Telecomunicazioni'),
(132827, 106071, 'en', 'name', 'The Institute of Statistical Research'),
(132828, 106071, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗēµ±čØˆē ”ē©¶ä¼š'),
(132829, 106072, 'en', 'name', 'The Iron and Steel Institute of Japan'),
(132830, 106072, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é‹¼å”ä¼š'),
(132831, 106073, 'de', 'name', 'Universitätsklinikum Münster'),
(132832, 106073, 'en', 'name', 'University Hospital Münster'),
(132833, 106074, 'en', 'name', 'Bentham Science Publishers, Bentham Science Publishers (United Arab Emirates)'),
(132834, 106075, 'en', 'name', 'Washington Department of Natural Resources'),
(132835, 106076, 'en', 'name', 'Dutchess Community College'),
(132836, 106077, 'en', 'name', 'Kyorin University'),
(132837, 106077, 'ja', 'name', 'ęęž—å¤§å­¦'),
(132838, 106078, 'en', 'name', 'National University of Juliaca'),
(132839, 106078, 'es', 'name', 'Universidad Nacional de Juliaca'),
(132840, 106079, 'en', 'name', 'Yame General Hospital'),
(132841, 106079, 'ja', 'name', 'å…¬ē«‹å…«å„³ē·åˆē—…é™¢'),
(132842, 106080, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عمار Ų«Ł„ŁŠŲ¬ŁŠ'),
(132843, 106080, 'en', 'name', 'University of Laghouat'),
(132844, 106081, 'en', 'name', 'Sasebo Chuo Hospital'),
(132845, 106081, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ē™½åå­—ä¼šä½äø–äæäø­å¤®ē—…é™¢'),
(132846, 106082, 'en', 'name', 'Japan Educational Research Institute'),
(132847, 106082, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę•™č‚²čŖæęŸ»ē ”ē©¶ę‰€'),
(132848, 106083, 'en', 'name', 'Open University of the Netherlands'),
(132849, 106083, 'nl', 'name', 'Open Universiteit Nederland'),
(132850, 106084, 'en', 'name', 'YAO Municipal Hospital'),
(132851, 106084, 'ja', 'name', '八尾市立病院'),
(132852, 106085, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ابن Ų®Ł„ŲÆŁˆŁ† تيارت'),
(132853, 106085, 'fr', 'name', 'UniversitƩ IBN Khaldoun Tiaret'),
(132854, 106086, 'ca', 'name', 'Fundació Privada Clínic per a La Recerca Biomèdica'),
(132855, 106087, 'pt', 'name', 'Centro de QuĆ­mica'),
(132856, 106088, 'en', 'name', 'Database Center for Life Science'),
(132857, 106088, 'ja', 'name', 'ćƒ©ć‚¤ćƒ•ć‚µć‚¤ć‚Øćƒ³ć‚¹ēµ±åˆćƒ‡ćƒ¼ć‚æćƒ™ćƒ¼ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(132858, 106089, 'en', 'name', 'Tianjin University of Science and Technology'),
(132859, 106089, 'zh', 'name', 'å¤©ę“„ē§‘ęŠ€å¤§å­¦'),
(132860, 106090, 'en', 'name', 'Institute of European Studies'),
(132861, 106091, 'en', 'name', 'Japan Food Hygiene Association'),
(132862, 106091, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“č”›ē”Ÿå”ä¼š'),
(132863, 106092, 'en', 'name', 'IsoArcH'),
(132864, 106093, 'en', 'name', 'Morehead State University'),
(132865, 106093, 'fr', 'name', 'UniversitĆ© d''Ɖtat de morehead'),
(132866, 106094, 'en', 'name', 'Zoology Museum of the University of Athens'),
(132867, 106095, 'en', 'name', 'University of Salerno'),
(132868, 106095, 'fr', 'name', 'UniversitƩ de salerne'),
(132869, 106095, 'it', 'name', 'UniversitĆ  degli Studi di Salerno'),
(132870, 106096, 'en', 'name', 'Hokkaido Medical Association'),
(132871, 106096, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“åŒ»åø«ä¼š'),
(132872, 106097, 'pt', 'name', 'Instituto Paulo Freire de Portugal'),
(132873, 106098, 'pt', 'name', 'Centro de Investigação em Sociologia Económica e das Organizações'),
(132874, 106099, 'es', 'name', 'Universidad de Las AmƩricas'),
(132875, 106100, 'en', 'name', 'University of Computer Studies Yangon'),
(132876, 106100, 'my', 'name', 'į€›į€”į€ŗį€€į€Æį€”į€ŗį€€į€½į€”į€ŗį€•į€»į€°į€į€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ'),
(132877, 106101, 'en', 'name', 'Development, Adaptation and Handicap'),
(132878, 106101, 'fr', 'name', 'DƩveloppement, Adaptation et Handicap'),
(132879, 106102, 'en', 'name', 'Gorgas Memorial Institute for Health Studies'),
(132880, 106102, 'es', 'name', 'Instituto Conmemorativo Gorgas de Estudios de la Salud'),
(132881, 106103, 'pt', 'name', 'Instituto de Medicina Molecular João Lobo Antunes'),
(132882, 106104, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų±ŁˆŲ²ŲØŁ‡'),
(132883, 106104, 'no_lang_code', 'name', 'Roozbeh Hospital'),
(132884, 106105, 'en', 'name', 'Civil Aviation College'),
(132885, 106105, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗčˆŖē©ŗå¤§å­¦ę ”'),
(132886, 106106, 'en', 'name', 'Srinivas University'),
(132887, 106106, 'ta', 'name', 'ą®šą®æą®±ąÆ€ą®©ą®æą®µą®¾ą®šąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(132888, 106107, 'en', 'name', 'Institute of Natural Fibres and Medicinal Plants'),
(132889, 106108, 'en', 'name', 'Australian National University'),
(132890, 106109, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Toulouse'),
(132891, 106110, 'en', 'name', 'Japan Management Association'),
(132892, 106110, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬čƒ½ēŽ‡å”ä¼š'),
(132893, 106111, 'en', 'name', 'Japan Fisheries Association'),
(132894, 106111, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§ę—„ęœ¬ę°“ē”£ä¼š'),
(132895, 106112, 'en', 'name', 'University of Applied Health Sciences'),
(132896, 106112, 'hr', 'name', 'Zdravstveno veleučiliŔte u Zagrebu'),
(132897, 106113, 'en', 'name', 'National Commission for Nuclear Activities Control'),
(132898, 106113, 'ro', 'name', 'Comisia Națională pentru Controlul Activităților Nucleare'),
(132899, 106114, 'en', 'name', 'Bioversity International'),
(132900, 106115, 'en', 'name', 'Connecticut Children''s Medical Center'),
(132901, 106116, 'en', 'name', 'Institute of Experimental Endocrinology of the Slovak Academy of Sciences'),
(132902, 106116, 'sk', 'name', 'Ústav experimentÔlnej endokrinológie SlovenskÔ akadémia vied'),
(132903, 106117, 'en', 'name', 'Northwest Association of Networked Ocean Observing Systems'),
(132904, 106118, 'en', 'name', 'Caro and Cuervo Institute'),
(132905, 106118, 'es', 'name', 'Instituto Caro y Cuervo'),
(132906, 106119, 'en', 'name', 'ICT Research Institute'),
(132907, 106120, 'en', 'name', 'Archaeological Information System of the Czech Republic'),
(132908, 106121, 'en', 'name', 'HORAC GRAND FRONT OSAKA Clinic'),
(132909, 106121, 'ja', 'name', 'HORACć‚°ćƒ©ćƒ³ćƒ•ćƒ­ćƒ³ćƒˆå¤§é˜Ŗć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(132910, 106122, 'en', 'name', 'Bedford College'),
(132911, 106123, 'en', 'name', 'Easwari Engineering College'),
(132912, 106124, 'en', 'name', 'Indiana University Health'),
(132913, 106125, 'en', 'name', 'IVF Namba Clinic'),
(132914, 106125, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗäø‰ę…§ä¼šIVFćŖć‚“ć°ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(132915, 106126, 'en', 'name', 'Chung Shan Medical University Hospital'),
(132916, 106127, 'en', 'name', 'Kawasaki City Institute for Public Health'),
(132917, 106127, 'ja', 'name', 'å·å“Žåø‚å„åŗ·å®‰å…Øē ”ē©¶ę‰€'),
(132918, 106128, 'en', 'name', 'Matsue Seikyo General Hospital'),
(132919, 106128, 'ja', 'name', 'ę¾ę±Ÿäæå„ē”Ÿę“»å”åŒēµ„åˆē·åˆē—…é™¢ę¾ę±Ÿē”Ÿå”ē—…é™¢'),
(132920, 106129, 'en', 'name', 'Sophiahemmet University College'),
(132921, 106129, 'sv', 'name', 'Sophiahemmet Hƶgskola'),
(132922, 106130, 'en', 'name', 'University North'),
(132923, 106130, 'hr', 'name', 'SveučiliŔte Sjever'),
(132924, 106131, 'en', 'name', 'Osaka Industrial Design Center'),
(132925, 106131, 'ja', 'name', 'å¤§é˜Ŗåŗœē”£ę„­ćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(132926, 106132, 'en', 'name', 'Ningbo No. 2 Hospital'),
(132927, 106132, 'zh', 'name', 'å®ę³¢åø‚ē¬¬äŗŒåŒ»é™¢'),
(132928, 106133, 'en', 'name', 'University of Bonab'),
(132929, 106133, 'fa', 'name', 'دانؓگاه بناب'),
(132930, 106134, 'en', 'name', 'Graduate School of Engineering'),
(132931, 106134, 'fr', 'name', 'Ɖcole SupĆ©rieure d''IngĆ©nieurs en GĆ©nie Ɖlectrique'),
(132932, 106135, 'es', 'name', 'Hospital Royo Villanova'),
(132933, 106136, 'en', 'name', 'Japan Association for Building Research Promotion'),
(132934, 106136, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå»ŗēÆ‰ē ”ē©¶ęŒÆčˆˆå”ä¼š'),
(132935, 106137, 'en', 'name', 'Santa Fe Institute'),
(132936, 106137, 'fr', 'name', 'Institut de santa fe'),
(132937, 106138, 'de', 'name', 'Deutsches Forschungszentrum für Künstliche Intelligenz'),
(132938, 106138, 'en', 'name', 'German Research Centre for Artificial Intelligence'),
(132939, 106139, 'en', 'name', 'Korea Research Institute of Standards and Science'),
(132940, 106139, 'ko', 'name', 'ķ•œźµ­ķ‘œģ¤€ź³¼ķ•™ģ—°źµ¬ģ›'),
(132941, 106140, 'en', 'name', 'Shiraniwa Hospital'),
(132942, 106140, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę¾äø‹ä¼šē™½åŗ­ē—…é™¢'),
(132943, 106141, 'en', 'name', 'International Research Center on Environment and Development'),
(132944, 106141, 'fr', 'name', 'Centre international de recherche sur l’environnement et le dĆ©veloppement'),
(132945, 106142, 'fr', 'name', 'Sciences Po Bordeaux'),
(132946, 106143, 'en', 'name', 'Hefei Normal University'),
(132947, 106143, 'zh', 'name', 'åˆč‚„åøˆčŒƒå­¦é™¢'),
(132948, 106144, 'en', 'name', 'Adventist University of Africa'),
(132949, 106145, 'en', 'name', 'Kazan State Technical University named after A. N. Tupolev'),
(132950, 106145, 'ru', 'name', 'Казанский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š. Туполева'),
(132951, 106146, 'pt', 'name', 'Universidade Vale do Rio Doce'),
(132952, 106147, 'en', 'name', 'Hokkaido Medical Center for Child Health and Rehabilitation'),
(132953, 106147, 'ja', 'name', 'åŒ—ęµ·é“ē«‹å­ć©ć‚‚ē·åˆåŒ»ē™‚ćƒ»ē™‚č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(132954, 106148, 'en', 'name', 'Obihiro Kyokai Hospital'),
(132955, 106148, 'ja', 'name', 'åŒ—ęµ·é“ē¤¾ä¼šäŗ‹ę„­å”ä¼šåøÆåŗƒē—…é™¢'),
(132956, 106149, 'en', 'name', 'NTT WEST Osaka Hospital'),
(132957, 106149, 'ja', 'name', 'NTTč„æę—„ęœ¬å¤§é˜Ŗē—…é™¢'),
(132958, 106150, 'en', 'name', 'Association for Farmers Rights Defense'),
(132959, 106150, 'ka', 'name', 'įƒ¤įƒ”įƒ įƒ›įƒ”įƒ įƒ—įƒ įƒ£įƒ¤įƒšįƒ”įƒ‘įƒ”įƒ‘įƒ˜įƒ” įƒ“įƒįƒŖįƒ•įƒ˜įƒ” įƒįƒ”įƒįƒŖįƒ˜įƒįƒŖįƒ˜įƒ'),
(132960, 106151, 'en', 'name', 'AISSMS Institute of Information Technology'),
(132961, 106152, 'en', 'name', 'East Riding College'),
(132962, 106153, 'de', 'name', 'Ostfalia Hochschule für Angewandte Wissenschaften'),
(132963, 106153, 'en', 'name', 'Ostfalia University of Applied Sciences'),
(132964, 106154, 'en', 'name', 'Mbarara University of Science and Technology'),
(132965, 106155, 'es', 'name', 'Corporación Universitaria del Caribe'),
(132966, 106156, 'en', 'name', 'Friedrich Miescher Institute'),
(132967, 106157, 'en', 'name', 'Loyola University Maryland'),
(132968, 106157, 'es', 'name', 'Universidad Loyola Maryland'),
(132969, 106158, 'no_lang_code', 'name', 'Bogdan Khmelnitsky Melitopol State Pedagogical University'),
(132970, 106158, 'uk', 'name', 'ŠœŠµŠ»Ń–Ń‚Š¾ŠæŠ¾Š»ŃŒŃŃŒŠøŠŗŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені БогГана Š„Š¼ŠµŠ»ŃŒŠ½ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(132971, 106159, 'en', 'name', 'Harry Butler Institute'),
(132972, 106160, 'fr', 'name', 'Enveloppes fluides : de la ville Ć  l''exobiologie'),
(132973, 106161, 'en', 'name', 'ICFAI University, Tripura'),
(132974, 106162, 'it', 'name', 'Elettra-Sincrotrone Trieste S.C.p.A.'),
(132975, 106163, 'en', 'name', 'Tehran University of Medical Sciences'),
(132976, 106163, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تهران'),
(132977, 106164, 'en', 'name', 'Institute of Parasitology of the Slovak Academy of Sciences'),
(132978, 106164, 'sk', 'name', 'Parazitologický ústav a biotechnológií rastlín SlovenskÔ akadémia vied'),
(132979, 106165, 'fr', 'name', 'Institut d''Enseignement SupƩrieur et de Recherche en Alimentation, SantƩ Animale, Sciences Agronomiques et de l''Environnement, VetAgro Sup'),
(132980, 106166, 'en', 'name', 'Sanda City Hospital'),
(132981, 106166, 'ja', 'name', '三田市民病院'),
(132982, 106167, 'en', 'name', 'Nagano Techno Foundation'),
(132983, 106167, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé•·é‡ŽēœŒćƒ†ć‚ÆćƒŽč²”å›£'),
(132984, 106168, 'en', 'name', 'Kyrgyz State Technical University'),
(132985, 106168, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š· мамлекеттик техникалык ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(132986, 106168, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(132987, 106169, 'ar', 'name', 'Ł…Ų¤Ų³Ų³Ų© قطر'),
(132988, 106169, 'en', 'name', 'Qatar Foundation'),
(132989, 106170, 'fr', 'name', 'Ɖcole d''IngĆ©nieurs en Chimie et Sciences du NumĆ©rique'),
(132990, 106171, 'en', 'name', 'Shri Ramswaroop Memorial College of Engineering and Management'),
(132991, 106172, 'es', 'name', 'Universidad Central "Marta Abreu" de las Villas, Universidad Central Marta Abreu de las Villas'),
(132992, 106173, 'en', 'name', 'Hoa Binh University'),
(132993, 106173, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c HoĆ  BƬnh'),
(132994, 106174, 'en', 'name', 'Middlesbrough College'),
(132995, 106175, 'pt', 'name', 'Instituto Federal de Educação Ciência e Tecnologia do Mato Grosso do Sul'),
(132996, 106176, 'en', 'name', 'Washington Geological Survey'),
(132997, 106177, 'en', 'name', 'Athenaeum University'),
(132998, 106177, 'ro', 'name', 'Universitatea Athenaeum'),
(132999, 106178, 'ja', 'name', 'ć‚¢ć‚¹ćƒ†ćƒ©ć‚¹č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(133000, 106178, 'no_lang_code', 'name', 'Astellas Pharma (Japan)'),
(133001, 106179, 'en', 'name', 'The Japan Forestry Association'),
(133002, 106179, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§ę—„ęœ¬å±±ęž—ä¼š'),
(133003, 106180, 'id', 'name', 'Institut Agama Islam Negeri Curup'),
(133004, 106181, 'en', 'name', 'University of Louisville'),
(133005, 106181, 'es', 'name', 'Universidad de Louisville'),
(133006, 106181, 'fr', 'name', 'UniversitƩ de louisville'),
(133007, 106182, 'lt', 'name', 'Klaipėdos valstybinė kolegija / Higher Education Institution'),
(133008, 106183, 'fr', 'name', 'Sciences pour l’action et le dĆ©veloppement - ActivitĆ©s, produits, territoires'),
(133009, 106184, 'en', 'name', 'Sam Ratulangi University'),
(133010, 106184, 'id', 'name', 'Universitas Sam Ratulangi'),
(133011, 106185, 'en', 'name', 'Spanish Academy of Dermatology and Venereology'),
(133012, 106185, 'es', 'name', 'Academia Espaola de Dermatologa y Venereologa'),
(133013, 106186, 'en', 'name', 'Osaka Pediatric Association'),
(133014, 106186, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗå°å…ē§‘åŒ»ä¼š'),
(133015, 106187, 'en', 'name', 'The Japanese Association for Infectious Diseases'),
(133016, 106187, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę„ŸęŸ“ē—‡å­¦ä¼š'),
(133017, 106188, 'en', 'name', 'University of Memphis'),
(133018, 106188, 'fr', 'name', 'UniversitƩ de memphis'),
(133019, 106189, 'en', 'name', 'Institute for Education Bucharest'),
(133020, 106189, 'ro', 'name', 'Institutul pentru Educatie (Bucuresti), Institutul pentru Educatie (Romania)'),
(133021, 106190, 'en', 'name', 'Ho Chi Minh City University of Education'),
(133022, 106190, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m ThĆ nh phố Hồ ChĆ­ Minh'),
(133023, 106191, 'en', 'name', 'Kharkiv National University of Radio Electronics'),
(133024, 106191, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(133025, 106191, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ раГіоелектроніки'),
(133026, 106192, 'en', 'name', 'University of Passo Fundo'),
(133027, 106192, 'pt', 'name', 'Universidade de Passo Fundo'),
(133028, 106193, 'en', 'name', 'Middle Georgia State College'),
(133029, 106194, 'en', 'name', 'University of Suffolk'),
(133030, 106195, 'no_lang_code', 'name', 'MSD (Finland)'),
(133031, 106196, 'es', 'name', 'Universidad Tecnológica de Bolívar'),
(133032, 106197, 'en', 'name', 'Archaeological Museum in Zagreb'),
(133033, 106198, 'en', 'name', 'National University Ostroh Academy'),
(133034, 106198, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«ŠžŃŃ‚Ń€Š¾Š·ŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–ŃĀ»'),
(133035, 106199, 'fr', 'name', 'Silva'),
(133036, 106200, 'ca', 'name', 'Vall d''Hebron Institut de Recerca'),
(133037, 106201, 'en', 'name', 'Technological University of Pereira'),
(133038, 106201, 'es', 'name', 'Universidad Tecnológica de Pereira'),
(133039, 106202, 'en', 'name', 'Porto Veterinary Hospital'),
(133040, 106202, 'pt', 'name', 'Hospital VeterinƔrio do Porto (Portugal)'),
(133041, 106203, 'en', 'name', 'ESIC Business & Marketing School'),
(133042, 106204, 'en', 'name', 'Chongqing Normal University'),
(133043, 106204, 'zh', 'name', 'é‡åŗ†åøˆčŒƒå¤§å­¦'),
(133044, 106205, 'nl', 'name', 'Scalda'),
(133045, 106206, 'en', 'name', 'MVJ College of Engineering'),
(133046, 106207, 'en', 'name', 'Gunma Prefectural Livestock Experiment Station'),
(133047, 106207, 'ja', 'name', 'ē¾¤é¦¬ēœŒē•œē”£č©¦éØ“å “'),
(133048, 106208, 'en', 'name', 'Pontifical Catholic University of Rio de Janeiro'),
(133049, 106208, 'pt', 'name', 'Pontifícia Universidade Católica do Rio de Janeiro'),
(133050, 106209, 'en', 'name', 'French Institute for Research and Security'),
(133051, 106209, 'fr', 'name', 'Institut National de Recherche et de SƩcuritƩ'),
(133052, 106210, 'en', 'name', 'Federal University Dutsin-Ma'),
(133053, 106211, 'fr', 'name', 'L''Institut Agro'),
(133054, 106212, 'es', 'name', 'Universidad de Ciencias y Humanidades'),
(133055, 106213, 'en', 'name', 'Tartu University Hospital'),
(133056, 106213, 'et', 'name', 'Tartu Ülikooli Kliinikum'),
(133057, 106214, 'en', 'name', 'Terra'),
(133058, 106215, 'en', 'name', 'Kabale University'),
(133059, 106216, 'en', 'name', 'National Research & Development Institute for Textiles and Leather'),
(133060, 106217, 'en', 'name', 'Institute of Oncology Research'),
(133061, 106218, 'en', 'name', 'VNUHCM – High School for the Gifted'),
(133062, 106219, 'fr', 'name', 'Laboratoire d''Immunologie et d''ImmunothƩrapie des Cancers'),
(133063, 106220, 'es', 'name', 'Instituto Tecnológico de MazatlÔn'),
(133064, 106221, 'id', 'name', 'Universitas Islam Negeri Sultan Syarif Kasim Riau'),
(133065, 106222, 'da', 'name', 'Region SjƦlland'),
(133066, 106222, 'en', 'name', 'Region Zealand'),
(133067, 106223, 'en', 'name', 'Gifu Prefectural Police'),
(133068, 106223, 'ja', 'name', '岐阜県警察'),
(133069, 106224, 'en', 'name', 'Japan Water Research Center'),
(133070, 106224, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę°“é“ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(133071, 106225, 'en', 'name', 'Community Coordinated Modeling Center'),
(133072, 106226, 'en', 'name', 'Yawatahama City General Hospital'),
(133073, 106226, 'ja', 'name', 'åø‚ē«‹å…«å¹”ęµœē·åˆē—…é™¢'),
(133074, 106227, 'es', 'name', 'Fundación Universitaria Monserrate'),
(133075, 106228, 'en', 'name', 'Stockport College'),
(133076, 106229, 'en', 'name', 'Navitas Clinic'),
(133077, 106229, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£é‰„åŒ»ä¼šćƒŠćƒ“ć‚æć‚¹ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(133078, 106230, 'en', 'name', 'Minneapolis Business College'),
(133079, 106231, 'en', 'name', 'Robarts Clinical Trials'),
(133080, 106232, 'es', 'name', 'BenemƩrita Escuela Normal Urbana "Profr. Domingo Carballo FƩlix"'),
(133081, 106233, 'en', 'name', 'State University of Tetova'),
(133082, 106233, 'mk', 'name', 'Државен ŃƒŠ½ŠøŠ²ŠµŃ€Š·ŠøŃ‚ŠµŃ‚ во Тетово'),
(133083, 106233, 'sq', 'name', 'Universiteti Shtetƫror i Tetovƫs'),
(133084, 106234, 'en', 'name', 'Mie Prefectural Government'),
(133085, 106234, 'ja', 'name', 'äø‰é‡ēœŒåŗ'),
(133086, 106235, 'es', 'name', 'Hospital Universitario Puerta de Hierro Majadahonda'),
(133087, 106236, 'en', 'name', 'Herzen University'),
(133088, 106236, 'ru', 'name', 'Российский Š³Š¾ŃŃƒŠ“арственный пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. А. И. Герцена'),
(133089, 106237, 'en', 'name', 'Japanese Nursing Association'),
(133090, 106237, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēœ‹č­·å”ä¼š'),
(133091, 106238, 'en', 'name', 'Aomori Prefectural Government'),
(133092, 106238, 'ja', 'name', 'é’ę£®ēœŒåŗ'),
(133093, 106239, 'fr', 'name', 'DƩpartement Environnement et Agronomie'),
(133094, 106240, 'en', 'name', 'The Institute of Cetacean Research'),
(133095, 106240, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬éÆØé”žē ”ē©¶ę‰€'),
(133096, 106241, 'en', 'name', 'Saskatchewan Polytechnic'),
(133097, 106242, 'en', 'name', 'Japan Surgical Association'),
(133098, 106242, 'ja', 'name', 'ę—„ęœ¬č‡ØåŗŠå¤–ē§‘å­¦ä¼š'),
(133099, 106243, 'en', 'name', 'Oita Prefectural Agriculture, Forestry and Fisheries Research Center'),
(133100, 106243, 'ja', 'name', 'å¤§åˆ†ēœŒč¾²ęž—ę°“ē”£ē ”ē©¶ęŒ‡å°Žć‚»ćƒ³ć‚æćƒ¼'),
(133101, 106244, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŁŠŲ§Ł„Ł‰'),
(133102, 106244, 'en', 'name', 'University of Diyala'),
(133103, 106245, 'en', 'name', 'The Electrochemical Society of Japan'),
(133104, 106245, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé›»ę°—åŒ–å­¦ä¼š'),
(133105, 106246, 'en', 'name', 'Volda University College'),
(133106, 106246, 'no', 'name', 'HĆøgskulen i Volda'),
(133107, 106247, 'en', 'name', 'Institute for Traffic Accident Research and Data Analysis'),
(133108, 106247, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäŗ¤é€šäŗ‹ę•…ē·åˆåˆ†ęžć‚»ćƒ³ć‚æćƒ¼'),
(133109, 106248, 'en', 'name', 'HƤme University of Applied Sciences'),
(133110, 106248, 'fi', 'name', 'HƤmeen ammattikorkeakoulu'),
(133111, 106249, 'no_lang_code', 'name', 'MSD (Sweden)'),
(133112, 106250, 'en', 'name', 'National and University Library in Zagreb'),
(133113, 106250, 'hr', 'name', 'Nacionalna i SveučiliŔna Knjižnica u Zagrebu'),
(133114, 106251, 'en', 'name', 'American Association of Teachers of Spanish and Portuguese'),
(133115, 106252, 'en', 'name', 'University of Mendoza'),
(133116, 106252, 'es', 'name', 'Universidad de Mendoza'),
(133117, 106253, 'en', 'name', 'Sugita Genpaku Memorial Obama Municipal Hospital'),
(133118, 106253, 'ja', 'name', 'ę‰ē”°ēŽ„ē™½čØ˜åæµå…¬ē«‹å°ęµœē—…é™¢'),
(133119, 106254, 'en', 'name', 'Gene-Environnement Interactions in Cardio-Vascular Physiopathology'),
(133120, 106254, 'fr', 'name', 'Interactions GĆØne-Environnement en Physiopathologie Cardio-Vasculaire'),
(133121, 106255, 'en', 'name', 'Metabolomics and Genomics Research Center'),
(133122, 106255, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ł…ŲŖŲ§ŲØŁˆŁ„ŁˆŁ…ŪŒŚ©Ų³ و Ś˜Ł†ŁˆŁ…ŪŒŚ©Ų³'),
(133123, 106256, 'en', 'name', 'Okayama Southern Institute of Health'),
(133124, 106256, 'ja', 'name', 'å²”å±±ēœŒå—éƒØå„åŗ·ć„ćć‚Šć‚»ćƒ³ć‚æćƒ¼'),
(133125, 106257, 'pt', 'name', 'Centro de Investigação em Cidades Inteligentes'),
(133126, 106258, 'cs', 'name', 'HnutĆ­ DUHA'),
(133127, 106258, 'en', 'name', 'Friends of the Earth Czech Republic'),
(133128, 106259, 'en', 'name', 'Babson College'),
(133129, 106260, 'de', 'name', 'Heidelberger Institut für Theoretische Studien'),
(133130, 106260, 'en', 'name', 'Heidelberg Institute for Theoretical Studies'),
(133131, 106261, 'en', 'name', 'Kuwana City Medical Center'),
(133132, 106261, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę”‘ååø‚ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(133133, 106262, 'en', 'name', 'Bengbu Medical College'),
(133134, 106262, 'zh', 'name', 'čšŒåŸ åŒ»å­¦é™¢'),
(133135, 106263, 'en', 'name', 'Jaime Bausate y Meza University'),
(133136, 106263, 'es', 'name', 'Universidad Jaime Bausate y Meza'),
(133137, 106264, 'en', 'name', 'Maryland Department of Natural Resources'),
(133138, 106265, 'es', 'name', 'Unión Médica Clínica Universitaria'),
(133139, 106266, 'en', 'name', 'Burapha University'),
(133140, 106266, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøšąø¹ąø£ąøžąø²'),
(133141, 106267, 'en', 'name', 'Daiyukai General Hospital'),
(133142, 106267, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤§é›„ä¼šē·åˆå¤§é›„ä¼šē—…é™¢, ē·åˆå¤§é›„ä¼šē—…é™¢å¤§é›„ä¼šē¬¬äø€ē—…é™¢'),
(133143, 106268, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŁ„ŁˆŲ¬Ų©'),
(133144, 106268, 'en', 'name', 'University Of Fallujah'),
(133145, 106269, 'en', 'name', 'Gakushuin Women''s College'),
(133146, 106269, 'ja', 'name', '学習院儳子大学'),
(133147, 106270, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃŠŗŠ°Š½Š°Š¼Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚');
INSERT INTO `ror_settings` VALUES
(133148, 106270, 'en', 'name', 'Belarusian State Economic University'),
(133149, 106270, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(133150, 106271, 'en', 'name', 'Murray State University'),
(133151, 106271, 'fr', 'name', 'UniversitĆ© d''Ɖtat de murray'),
(133152, 106272, 'en', 'name', 'Tennessee State University'),
(133153, 106272, 'fr', 'name', 'UniversitĆ© d''Ɖtat du tennessee'),
(133154, 106273, 'de', 'name', 'Lahn-Dill-Kreis'),
(133155, 106273, 'en', 'name', 'Lahn-Dill District'),
(133156, 106274, 'en', 'name', 'Nagano Prefecture General Industrial Technology Center'),
(133157, 106274, 'ja', 'name', 'é•·é‡ŽēœŒå·„ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(133158, 106275, 'en', 'name', 'Kagoshima Prefectural Forestry Technology Center'),
(133159, 106275, 'ja', 'name', 'é¹æå…å³¶ēœŒę£®ęž—ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(133160, 106276, 'en', 'name', 'University of Valladolid'),
(133161, 106276, 'es', 'name', 'Universidad de Valladolid'),
(133162, 106276, 'eu', 'name', 'Valladolideko Unibertsitatea'),
(133163, 106276, 'gl', 'name', 'Universidade de Valladolid'),
(133164, 106277, 'en', 'name', 'Tallaght University Hospital'),
(133165, 106277, 'ga', 'name', 'OspidƩal Ollscoile Thamhlachta'),
(133166, 106278, 'fr', 'name', 'Ɖcole Nationale de la Statistique et de l''Administration Ɖconomique'),
(133167, 106279, 'bg', 'name', 'Русенски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(133168, 106279, 'en', 'name', 'Angel Kanchev University of Ruse'),
(133169, 106280, 'no_lang_code', 'name', 'Viatris'),
(133170, 106281, 'en', 'name', 'Saitama Agricultural Technology Research Center'),
(133171, 106281, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒč¾²ę„­ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(133172, 106282, 'en', 'name', 'Gifu Prefectural Livestock Research Institute'),
(133173, 106282, 'ja', 'name', 'å²é˜œēœŒē•œē”£ē ”ē©¶ę‰€'),
(133174, 106283, 'en', 'name', 'St. Joseph’s College of Engineering'),
(133175, 106284, 'en', 'name', 'Uganda National Academy of Sciences'),
(133176, 106285, 'en', 'name', 'Richmond upon Thames College'),
(133177, 106286, 'en', 'name', 'Neuroscience Research Australia'),
(133178, 106287, 'en', 'name', 'University of Southern Philippines Foundation'),
(133179, 106288, 'pt', 'name', 'Instituto Superior PolitƩcnico de Gaza'),
(133180, 106289, 'am', 'name', 'įˆ˜į‰± į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(133181, 106289, 'en', 'name', 'Mattu University'),
(133182, 106290, 'de', 'name', 'Hochschule für Nachhaltige Entwicklung Eberswalde'),
(133183, 106290, 'en', 'name', 'Eberswalde University for Sustainable Development'),
(133184, 106291, 'en', 'name', 'Directorate for Technology, Innovation and Partnerships'),
(133185, 106292, 'en', 'name', 'Bryant University'),
(133186, 106292, 'es', 'name', 'Universidad Bryant'),
(133187, 106293, 'ar', 'name', 'معهد Ų±Ų§ŲØŲ±ŁŠŁ† Ų§Ł„ŲŖŁ‚Ł†ŁŠ ŁˆŲ§Ł„Ł…Ł‡Ł†ŁŠ'),
(133188, 106293, 'en', 'name', 'Raparin Technical and Vocational Institute'),
(133189, 106293, 'ku', 'name', 'Ł¾Ū•ŪŒŁ…Ų§Ł†ŚÆŪ•ŪŒ ŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ و Ł¾ŪŒŲ“Ū•ŪŒ Ś•Ų§Ł¾Ū•Ś•ŪŒŁ†'),
(133190, 106294, 'de', 'name', 'Laser Zentrum Hannover'),
(133191, 106295, 'en', 'name', 'Office of Information and Resource Management'),
(133192, 106296, 'en', 'name', 'Atma Jaya University Yogyakarta'),
(133193, 106296, 'id', 'name', 'Universitas Atma Jaya Yogyakarta'),
(133194, 106297, 'id', 'name', 'Universitas Muhammadiyah Tangerang'),
(133195, 106298, 'no_lang_code', 'name', 'Kompetenzzentrum Holz'),
(133196, 106299, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ų³Ł…Ų±ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(133197, 106299, 'en', 'name', 'Alasmarya Islamic University'),
(133198, 106300, 'en', 'name', 'Technical University of Mombasa'),
(133199, 106301, 'en', 'name', 'Shikoku University, Junior College'),
(133200, 106301, 'ja', 'name', 'å››å›½å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(133201, 106302, 'en', 'name', 'Surgut State University'),
(133202, 106302, 'ru', 'name', 'Š”ŃƒŃ€Š³ŃƒŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(133203, 106303, 'en', 'name', 'University of Windsor'),
(133204, 106303, 'fr', 'name', 'UniversitƩ de windsor'),
(133205, 106304, 'en', 'name', 'Trinity Laban Conservatoire of Music and Dance'),
(133206, 106305, 'en', 'name', 'Sagamihara Kyodo Hospital'),
(133207, 106305, 'ja', 'name', 'JAē„žå„ˆå·åŽšē”Ÿé€£ē›øęØ”åŽŸå”åŒē—…é™¢'),
(133208, 106306, 'en', 'name', 'Gifu Prefectural Research Institute for Health and Environmental Sciences'),
(133209, 106306, 'ja', 'name', 'å²é˜œēœŒäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(133210, 106307, 'pt', 'name', 'Associação BLC3 Campus de Tecnologia e Inovação'),
(133211, 106308, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Chimie de Rennes'),
(133212, 106309, 'de', 'name', 'Botanischer Garten Meise'),
(133213, 106309, 'en', 'name', 'Meise Botanic Garden'),
(133214, 106309, 'fr', 'name', 'Jardin botanique de Meise'),
(133215, 106309, 'nl', 'name', 'Plantentuin Meise'),
(133216, 106310, 'en', 'name', 'The Society of Photography and Imaging of Japan'),
(133217, 106310, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†™ēœŸå­¦ä¼š'),
(133218, 106311, 'en', 'name', 'National Institute for Public Administration'),
(133219, 106311, 'pt', 'name', 'Instituto Nacional de Administração, Instituto Nacional de Administração, I. P.'),
(133220, 106312, 'en', 'name', 'Malaysian Rubber Board'),
(133221, 106312, 'ms', 'name', 'Lembaga Getah Malaysia'),
(133222, 106313, 'no_lang_code', 'name', 'Carnegie Learning, Inc. (United States)'),
(133223, 106314, 'en', 'name', 'Duksung Women''s University'),
(133224, 106314, 'ko', 'name', 'ė•ģ„±ģ—¬ģžėŒ€ķ•™źµ'),
(133225, 106315, 'fr', 'name', 'HƓpital Saint-Julien'),
(133226, 106316, 'en', 'name', 'Panthera Corporation'),
(133227, 106317, 'en', 'name', 'University of Sustainability'),
(133228, 106318, 'en', 'name', 'Saint Mary''s College of California'),
(133229, 106319, 'pt', 'name', 'Direcção-Geral da Saúde'),
(133230, 106320, 'en', 'name', 'Manicaland State University of Applied Sciences'),
(133231, 106321, 'en', 'name', 'Network for Earthquake Engineering Simulation'),
(133232, 106322, 'de', 'name', 'Max-Planck-Gesellschaft zur Fƶrderung der Wissenschaften'),
(133233, 106322, 'en', 'name', 'Max Planck Society'),
(133234, 106323, 'en', 'name', 'Miyagi Prefectural Furukawa Agricultural Experiment Station'),
(133235, 106323, 'ja', 'name', 'å®®åŸŽēœŒå¤å·č¾²ę„­č©¦éØ“å “'),
(133236, 106324, 'en', 'name', 'Biomechanics Institute of Valencia'),
(133237, 106324, 'es', 'name', 'Instituto de BiomecƔnica de Valencia'),
(133238, 106325, 'en', 'name', 'Research Team on Innovation Process'),
(133239, 106325, 'fr', 'name', 'Ɖquipe de Recherche sur les Processus Innovatifs'),
(133240, 106326, 'en', 'name', 'Japan Maritime Center'),
(133241, 106326, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęµ·äŗ‹ć‚»ćƒ³ć‚æćƒ¼'),
(133242, 106327, 'es', 'name', 'Sociedad EspaƱola de Nefrologƭa'),
(133243, 106328, 'en', 'name', 'Antwerp University Hospital'),
(133244, 106328, 'nl', 'name', 'Universitair Ziekenhuis Antwerpen'),
(133245, 106329, 'cs', 'name', 'Ú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'),
(133246, 106329, 'en', 'name', 'Czech Academy of Sciences, Institute of Theoretical and Applied Mechanics'),
(133247, 106330, 'es', 'name', 'Centro de Investigación en Ciencias Atómicas, Nucleares y Moleculares'),
(133248, 106331, 'de', 'name', 'Zentralinstitut für Seelische Gesundheit'),
(133249, 106331, 'en', 'name', 'Central Institute of Mental Health'),
(133250, 106332, 'en', 'name', 'National Institute of Technology Karnataka'),
(133251, 106332, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(133252, 106332, 'kn', 'name', 'ą²°ą²¾ą²·ą³ą²Ÿą³ą²°ą³€ą²Æ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ ą²•ą²°ą³ą²Øą²¾ą²Ÿą²•'),
(133253, 106332, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®•ą®°ąÆą®Øą®¾ą®Ÿą®•ą®®ąÆ'),
(133254, 106333, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عجمان Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(133255, 106333, 'en', 'name', 'Ajman University'),
(133256, 106334, 'en', 'name', 'Trinity Western University'),
(133257, 106335, 'en', 'name', 'Sunan Gunung Djati State Islamic University Bandung'),
(133258, 106335, 'id', 'name', 'Sejarah berdirinya Universitas Islam Negeri'),
(133259, 106336, 'en', 'name', 'Kido Hospital'),
(133260, 106336, 'ja', 'name', 'ę–°ę½ŸåŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆęœØęˆøē—…é™¢'),
(133261, 106337, 'en', 'name', 'Industrial Research Center of Shiga Prefecture'),
(133262, 106337, 'ja', 'name', 'ę»‹č³€ēœŒå·„ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(133263, 106338, 'de', 'name', 'Oikoplus GmbH'),
(133264, 106339, 'en', 'name', 'Canadian Blood Services'),
(133265, 106340, 'fr', 'name', 'Centre Hospitalier Universitaire de Reims'),
(133266, 106341, 'en', 'name', 'Regional Government of Andalusia'),
(133267, 106341, 'es', 'name', 'Junta de AndalucĆ­a'),
(133268, 106341, 'eu', 'name', 'Andaluziako Junta'),
(133269, 106342, 'en', 'name', 'Beijing City University'),
(133270, 106342, 'zh', 'name', 'åŒ—äŗ¬åŸŽåø‚å­¦é™¢'),
(133271, 106343, 'en', 'name', 'Pentecostal Theological College'),
(133272, 106343, 'hu', 'name', 'Pünkƶsdi Teológiai Főiskola'),
(133273, 106344, 'en', 'name', 'Ɩzyeğin University'),
(133274, 106344, 'tr', 'name', 'Ɩzyeğin Ɯniversitesi'),
(133275, 106345, 'en', 'name', 'Egerton University'),
(133276, 106345, 'sw', 'name', 'Chuo Kikuu cha Egerton'),
(133277, 106346, 'be', 'name', 'Š‘Ń€ŃŃŃ†ŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń А. Š”. ŠŸŃƒŃˆŠŗŃ–Š½Š°'),
(133278, 106346, 'en', 'name', 'Brest State A.S. Pushkin University'),
(133279, 106346, 'ru', 'name', 'Брестский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени А. Š”. Пушкина'),
(133280, 106347, 'en', 'name', 'Charles LeMoyne Hospital'),
(133281, 106347, 'fr', 'name', 'HƓpital Charles-Le Moyne, HƓpital Charles-LeMoyne'),
(133282, 106348, 'bs', 'name', 'Institut za ispitivanje materijala IMS a.d. Beograd'),
(133283, 106348, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠøŃŠæŠøŃ‚ŠøŠ²Š°ŃšŠµ Š¼Š°Ń‚ŠµŃ€ŠøŃ˜Š°Š»Š° а.Š“.'),
(133284, 106349, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ų³ŪŒŁ†Ų§'),
(133285, 106349, 'no_lang_code', 'name', 'Sina Hospital'),
(133286, 106350, 'fr', 'name', 'Montpellier Recherche en Management'),
(133287, 106351, 'de', 'name', 'EBS Universität für Wirtschaft und Recht'),
(133288, 106351, 'en', 'name', 'EBS University of Business and Law'),
(133289, 106352, 'de', 'name', 'Deutsches Zentrum für integrative Biodiversitätsforschung'),
(133290, 106352, 'en', 'name', 'German Centre for Integrative Biodiversity Research'),
(133291, 106353, 'en', 'name', 'Royal Academy of Music'),
(133292, 106354, 'en', 'name', 'St. Antonius Hospital'),
(133293, 106354, 'nl', 'name', 'St. Antonius Ziekenhuis'),
(133294, 106355, 'en', 'name', 'Grimsby Institute'),
(133295, 106356, 'en', 'name', 'University Hospital Olomouc'),
(133296, 106357, 'en', 'name', 'Japan Organ Transplant Network'),
(133297, 106357, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č‡“å™Øē§»ę¤ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ'),
(133298, 106358, 'en', 'name', 'National Institute for Research Advancement'),
(133299, 106358, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē·åˆē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(133300, 106359, 'en', 'name', 'Katsuragi Hospital'),
(133301, 106359, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¤§ę¤ä¼šč‘›åŸŽē—…é™¢'),
(133302, 106360, 'en', 'name', 'Shahid Chamran University of Ahvaz'),
(133303, 106360, 'fa', 'name', 'دانؓگاه Ų“Ł‡ŪŒŲÆ چمران Ų§Ł‡ŁˆŲ§Ų²'),
(133304, 106361, 'en', 'name', 'Asama Nanroku Komoro Medical Center'),
(133305, 106361, 'ja', 'name', 'JAé•·é‡ŽåŽšē”Ÿé€£ęµ…é–“å—éŗ“ć“ć‚‚ć‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(133306, 106362, 'en', 'name', 'Northern Kentucky University'),
(133307, 106363, 'en', 'name', 'MSD K.K., MSD K.K. (Japan)'),
(133308, 106364, 'en', 'name', 'Yashio Central General hospital'),
(133309, 106364, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å”å‹ä¼šå…«ę½®äø­å¤®ē·åˆē—…é™¢'),
(133310, 106365, 'en', 'name', 'Lambung Mangkurat University'),
(133311, 106365, 'id', 'name', 'Universitas Lambung Mangkurat'),
(133312, 106366, 'cy', 'name', 'Goldsmiths, Prifysgol Llundain'),
(133313, 106366, 'en', 'name', 'Goldsmiths University of London'),
(133314, 106367, 'en', 'name', 'Organization for Landscape and Urban Green Infrastructure'),
(133315, 106367, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚ē·‘åŒ–ę©Ÿę§‹'),
(133316, 106368, 'en', 'name', 'Hot Spring Research Center'),
(133317, 106368, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­å¤®ęø©ę³‰ē ”ē©¶ę‰€'),
(133318, 106369, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ال؄مارات Ų§Ł„Ų¹Ų±ŲØŁŠŲ© المتحدة'),
(133319, 106369, 'en', 'name', 'United Arab Emirates University'),
(133320, 106370, 'en', 'name', 'Sol Plaatje University'),
(133321, 106371, 'id', 'name', 'Universitas Maritim Raja Ali Haji'),
(133322, 106372, 'en', 'name', 'Cardiovascular Diseases Research Institute'),
(133323, 106372, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ قلب و Ų¹Ų±ŁˆŁ‚'),
(133324, 106373, 'en', 'name', 'Avicenna Medical College'),
(133325, 106373, 'ur', 'name', 'ابن Ų³ŪŒŁ†Ų§ Ł…ŪŒŚˆŪŒŚ©Ł„ کالج'),
(133326, 106374, 'en', 'name', 'Ithaca College'),
(133327, 106374, 'es', 'name', 'Colegio Ithaca'),
(133328, 106375, 'fr', 'name', 'Groupe de Recherche en Ɖnergie Ɖlectrique de Nancy'),
(133329, 106376, 'en', 'name', 'Omsk State Technical University'),
(133330, 106376, 'ru', 'name', 'ŠžŠ¼ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(133331, 106377, 'en', 'name', 'SENSCIENCE'),
(133332, 106378, 'en', 'name', 'Center for Reproductive Medicine and Implantation Research, Sugiyama Clinic'),
(133333, 106378, 'ja', 'name', 'ę‰å±±ē”£å©¦äŗŗē§‘'),
(133334, 106379, 'en', 'name', 'Educational Research Institute'),
(133335, 106380, 'en', 'name', 'SAIT Polytechnic'),
(133336, 106381, 'en', 'name', 'Tokoha Gakuen Junior College'),
(133337, 106381, 'ja', 'name', 'åøøč‘‰å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(133338, 106382, 'en', 'name', 'Port of Lisbon'),
(133339, 106382, 'pt', 'name', 'Administração do Porto de Lisboa SA (Portugal)'),
(133340, 106383, 'en', 'name', 'U.S. Air Force Sustainment Center'),
(133341, 106384, 'en', 'name', 'Dongguan University of Technology'),
(133342, 106384, 'zh', 'name', 'äøœčŽžē†å·„å­¦é™¢'),
(133343, 106385, 'en', 'name', 'Japan Sabo Association'),
(133344, 106385, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ę²»ę°“ē ‚é˜²å”ä¼š'),
(133345, 106386, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų¬Ų§Ł…Ų¹Ų© ŲŖŁŠŲ³Ł…Ų³ŁŠŁ„ŲŖ'),
(133346, 106386, 'fr', 'name', 'Centre Universitaire Tissemsilt'),
(133347, 106387, 'en', 'name', 'academyEX'),
(133348, 106388, 'no_lang_code', 'name', 'MSD (Italy)'),
(133349, 106389, 'no_lang_code', 'name', 'MSD (Singapore)'),
(133350, 106390, 'en', 'name', 'Ministry of Defence'),
(133351, 106390, 'pt', 'name', 'MinistƩrio da Defesa'),
(133352, 106391, 'en', 'name', 'Gokhale Institute of Politics and Economics'),
(133353, 106391, 'hi', 'name', 'ą¤—ą„‹ą¤–ą¤²ą„‡ ą¤°ą¤¾ą¤œą¤Øą„€ą¤¤ą¤æ ą¤ą¤µą¤‚ ą¤…ą¤°ą„ą¤„ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(133354, 106392, 'en', 'name', 'University of Lubumbashi'),
(133355, 106392, 'fr', 'name', 'UniversitƩ de Lubumbashi'),
(133356, 106393, 'en', 'name', 'Occupational Sleep Research Center'),
(133357, 106393, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اختلالات خواب Ų“ŲŗŁ„ŪŒ'),
(133358, 106394, 'en', 'name', 'Sakurajyuji Hospital'),
(133359, 106394, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę”œåå­—ę”œåå­—ē—…é™¢'),
(133360, 106395, 'en', 'name', 'Indian Institute of Astrophysics'),
(133361, 106395, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤¾ą¤°ą¤¾ą¤­ą„Œą¤¤ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(133362, 106395, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µą®¾ą®©ą®æą®Æą®±ąÆą®Ŗą®æą®Æą®²ąÆ ą®®ąÆˆą®Æą®®ąÆ'),
(133363, 106396, 'ro', 'name', 'Spitalul Clinic de Nefrologie Dr. Carol Davila'),
(133364, 106397, 'es', 'name', 'Universidad Católica del Cibao'),
(133365, 106398, 'es', 'name', 'Universidad Central del Este'),
(133366, 106399, 'en', 'name', 'Occidental College'),
(133367, 106400, 'en', 'name', 'Kanazawa Gakuin College'),
(133368, 106400, 'ja', 'name', 'é‡‘ę²¢å­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(133369, 106401, 'en', 'name', 'Institute for Information Technologies Kragujevac'),
(133370, 106401, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за информационе Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ˜Šµ ŠšŃ€Š°Š³ŃƒŃ˜ŠµŠ²Š°Ń†'),
(133371, 106402, 'en', 'name', 'Institute of Electrical and Electronics Engineers'),
(133372, 106403, 'es', 'name', 'Universidad Católica de Salta'),
(133373, 106404, 'nl', 'name', 'Maasstad Ziekenhuis'),
(133374, 106405, 'en', 'name', 'Biwako Gakuin University Junior College'),
(133375, 106405, 'ja', 'name', 'ć³ć‚ć“å­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(133376, 106406, 'en', 'name', 'Institute of Nuclear Physics, Polish Academy of Sciences'),
(133377, 106406, 'pl', 'name', 'Instytut Fizyki Jądrowej im. Henryka Niewodniczańskiego'),
(133378, 106407, 'en', 'name', 'Kerala Agricultural University'),
(133379, 106407, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“•ą“¾ąµ¼ą“·ą“æą“• ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(133380, 106408, 'bg', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Š”Š¾Ń„ŠøŃ'),
(133381, 106408, 'en', 'name', 'Medical University of Sofia'),
(133382, 106409, 'fr', 'name', 'TƩlƩcom Paris'),
(133383, 106410, 'pt', 'name', 'Instituto de Investigação em Vulcanologia e Avaliação de Riscos'),
(133384, 106411, 'en', 'name', 'Xinjiang University of Science and Technology'),
(133385, 106411, 'zh', 'name', 'ę–°ē–†ē§‘ęŠ€å­¦é™¢'),
(133386, 106412, 'en', 'name', 'Aiseikai Yamashina Hospital'),
(133387, 106412, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę„›ē”Ÿä¼šå±±ē§‘ē—…é™¢'),
(133388, 106413, 'en', 'name', 'Polytechnic University of Milan'),
(133389, 106413, 'fr', 'name', 'Ɖcole Polytechnique de Milan'),
(133390, 106413, 'it', 'name', 'Politecnico di Milano'),
(133391, 106414, 'en', 'name', 'University of Tasmania'),
(133392, 106415, 'fr', 'name', 'UMR QualiSud'),
(133393, 106416, 'en', 'name', 'Virginia Military Institute'),
(133394, 106416, 'fr', 'name', 'Institut militaire de virginie'),
(133395, 106417, 'en', 'name', 'Adeyemi Federal University of Education, Ondo, Nigeria'),
(133396, 106418, 'id', 'name', 'Universitas Teuku Umar'),
(133397, 106418, 'jv', 'name', 'Teuku Umar University'),
(133398, 106419, 'en', 'name', 'University of Technology Nowshera'),
(133399, 106420, 'en', 'name', 'Yamato Takada Municipal Hospital'),
(133400, 106420, 'ja', 'name', 'å¤§å’Œé«˜ē”°åø‚ē«‹ē—…é™¢'),
(133401, 106421, 'en', 'name', 'Tokyo Professional University of Health Sciences'),
(133402, 106421, 'ja', 'name', 'ę±äŗ¬äæå„åŒ»ē™‚å°‚é–€č·å¤§å­¦'),
(133403, 106422, 'no_lang_code', 'name', 'Bangkokthonburi University'),
(133404, 106422, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø£ąøøąø‡ą¹€ąø—ąøžąø˜ąø™ąøšąøøąø£ąøµ'),
(133405, 106423, 'en', 'name', 'Non-Communicable Diseases Research Center'),
(133406, 106423, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁ…Ų§Ų±ŪŒ Ł‡Ų§ŪŒ غیرواگی'),
(133407, 106424, 'no_lang_code', 'name', 'Sartorius (Germany)'),
(133408, 106425, 'pt', 'name', 'Centro Hospitalar do MƩdio Ave EPE'),
(133409, 106426, 'en', 'name', 'Toyama Design Center'),
(133410, 106426, 'ja', 'name', 'åÆŒå±±ēœŒē·åˆćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(133411, 106427, 'en', 'name', 'Montclair State University'),
(133412, 106427, 'es', 'name', 'Universidad Estatal de Montclair'),
(133413, 106427, 'fr', 'name', 'UniversitĆ© d''Ɖtat de montclair'),
(133414, 106428, 'en', 'name', 'Toyohashi Sozo Junior College'),
(133415, 106428, 'ja', 'name', 'č±Šę©‹å‰µé€ å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(133416, 106429, 'en', 'name', 'Yokohama Women''s Junior College'),
(133417, 106429, 'ja', 'name', '横浜儳子短期大学'),
(133418, 106430, 'no_lang_code', 'name', 'WakeMed'),
(133419, 106431, 'en', 'name', 'Japan Consulting Institute'),
(133420, 106431, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ©ćƒ³ćƒˆå”ä¼š'),
(133421, 106432, 'en', 'name', 'Norwegian Centre for Violence and Traumatic Stress Studies'),
(133422, 106432, 'no', 'name', 'Nasjonalt Kunnskapssenter om Vold og Traumatisk Stress'),
(133423, 106433, 'en', 'name', 'SAITAMA SEKISHINKAI Hospital'),
(133424, 106433, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ēŸ³åæƒä¼šåŸ¼ēŽ‰ēŸ³åæƒä¼šē—…é™¢'),
(133425, 106434, 'en', 'name', 'Hebei University'),
(133426, 106434, 'zh', 'name', 'ę²³åŒ—å¤§å­¦'),
(133427, 106435, 'no_lang_code', 'name', 'Academic Analytics'),
(133428, 106436, 'en', 'name', 'Yantai Institute of Coastal Zone Research'),
(133429, 106436, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢ēƒŸå°ęµ·å²øåø¦ē ”ē©¶ę‰€'),
(133430, 106437, 'en', 'name', 'Federal Research Institute for Health Organization and Informatics'),
(133431, 106438, 'en', 'name', 'Advanced Telecommunications Research Institute International'),
(133432, 106438, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾å›½éš›é›»ę°—é€šäæ”åŸŗē¤ŽęŠ€č”“ē ”ē©¶ę‰€'),
(133433, 106439, 'en', 'name', 'Laboratory of Energies Theoretical and Applied Mechanics'),
(133434, 106439, 'fr', 'name', 'Laboratoire Ɖnergies et MĆ©canique ThĆ©orique et AppliquĆ©e'),
(133435, 106440, 'en', 'name', 'KIMEP University'),
(133436, 106440, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ менеГжмент'),
(133437, 106440, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ менеГжмента, ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŠæŃ€Š¾Š³Š½Š¾Š·ŠøŃ€Š¾Š²Š°Š½ŠøŃ'),
(133438, 106441, 'en', 'name', 'Valparaiso University'),
(133439, 106441, 'es', 'name', 'Universidad de ValparaĆ­so'),
(133440, 106442, 'bn', 'name', 'ą¦—ą§ą¦Æą¦¼ą¦¾ą¦¹ą¦¾ą¦Ÿą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(133441, 106442, 'en', 'name', 'Gauhati University'),
(133442, 106442, 'hi', 'name', 'ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(133443, 106442, 'ta', 'name', 'ą®•ąÆą®µą®¹ą®¾ą®¤ąÆą®¤ą®æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(133444, 106443, 'en', 'name', 'Kumagaya General Hospital'),
(133445, 106443, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē†Šč°·ē·åˆē—…é™¢'),
(133446, 106444, 'en', 'name', 'Peel Health Campus'),
(133447, 106445, 'en', 'name', 'Mahatma Gandhi Dental College & Hospital'),
(133448, 106446, 'es', 'name', 'Instituto Superior de Educación Normal del Estado de Colima "Profr. Gregorio Torres Quintero"'),
(133449, 106447, 'en', 'name', 'Robarts Research Institute'),
(133450, 106448, 'en', 'name', 'Lasso Informatics'),
(133451, 106449, 'en', 'name', 'MSD (Belgium)'),
(133452, 106450, 'en', 'name', 'Wikimedia Brasil'),
(133453, 106451, 'de', 'name', 'Technische Hochschule Bingen'),
(133454, 106451, 'en', 'name', 'TH Bingen University of Applied Sciences'),
(133455, 106452, 'en', 'name', 'Keidanren'),
(133456, 106452, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒęøˆå›£ä½“é€£åˆä¼š'),
(133457, 106453, 'en', 'name', 'Kyiv Institute of the National Guard of Ukraine'),
(133458, 106454, 'en', 'name', 'Hiroshima City Institute of Public Health'),
(133459, 106454, 'ja', 'name', 'åŗƒå³¶åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(133460, 106455, 'pt', 'name', 'Centro de Ecologia Evolução e Alterações Ambientais'),
(133461, 106456, 'tr', 'name', 'Ermenek Devlet Hastanesi'),
(133462, 106457, 'en', 'name', 'St. Olaf College'),
(133463, 106458, 'en', 'name', 'Sasebo Kyosai Hospital'),
(133464, 106458, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šä½äø–äæå…±ęøˆē—…é™¢'),
(133465, 106459, 'en', 'name', 'University of Swat'),
(133466, 106459, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų³ŁˆŲ§ŲŖā€Ž'),
(133467, 106460, 'en', 'name', 'Materials Research Science and Engineering Centers'),
(133468, 106461, 'en', 'name', 'Bhupal Nobles University'),
(133469, 106461, 'hi', 'name', 'ą¤­ą„‚ą¤Ŗą¤¾ą¤² ą¤Øą„‹ą¤¬ą¤²ą„ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(133470, 106462, 'en', 'name', 'Child Information and Research Center'),
(133471, 106462, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå­ć©ć‚‚ęƒ…å ±ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(133472, 106463, 'ca', 'name', 'Universitat de la Corunya'),
(133473, 106463, 'es', 'name', 'Universidade da CoruƱa'),
(133474, 106464, 'en', 'name', 'National Museum Lagos'),
(133475, 106465, 'en', 'name', 'California Institute of Integral Studies'),
(133476, 106466, 'en', 'name', 'Raman Research Institute'),
(133477, 106466, 'ta', 'name', 'ą®‡ą®°ą®¾ą®®ą®©ąÆ ą®†ą®ÆąÆą®µąÆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(133478, 106467, 'en', 'name', 'Museum of London Archaeology'),
(133479, 106468, 'en', 'name', 'Anna University, Chennai'),
(133480, 106468, 'hi', 'name', 'ą¤…ą¤£ą„ą¤£ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą¤¾ą¤²ą¤Æ'),
(133481, 106468, 'ta', 'name', 'ą®…ą®£ąÆą®£ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(133482, 106468, 'te', 'name', 'ą°…ą°Øą±ą°Øą°¾ ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°æą°Ÿą±€'),
(133483, 106469, 'en', 'name', 'University of Technology of Troyes'),
(133484, 106469, 'fr', 'name', 'UniversitƩ de Technologie de Troyes'),
(133485, 106470, 'en', 'name', 'Zhengzhou University of Aeronautics'),
(133486, 106470, 'zh', 'name', 'éƒ‘å·žčˆŖē©ŗå·„äøšē®”ē†å­¦é™¢'),
(133487, 106471, 'no_lang_code', 'name', 'Navamindradhiraj University'),
(133488, 106471, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø§ąø”ąø“ąø™ąø—ąø£ąø²ąø˜ąø“ąø£ąø²ąøŠ'),
(133489, 106472, 'no_lang_code', 'name', 'Daystar University'),
(133490, 106473, 'en', 'name', 'Paris School of Economics'),
(133491, 106473, 'fr', 'name', 'Ɖcole d''Ć©conomie de paris'),
(133492, 106474, 'en', 'name', 'Gyoda General Hospital'),
(133493, 106474, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå£®å¹øä¼šč”Œē”°ē·åˆē—…é™¢'),
(133494, 106475, 'es', 'name', 'Corporación Universitaria Minuto de Dios'),
(133495, 106476, 'es', 'name', 'Universidad San Francisco de Quito'),
(133496, 106477, 'en', 'name', 'Biosensor Research Center'),
(133497, 106477, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲØŪŒŁˆŲ³Ł†Ų³ŁˆŲ±'),
(133498, 106478, 'fr', 'name', 'Centre Hospitalier MƩtropole Savoie'),
(133499, 106479, 'en', 'name', 'SAM Global University'),
(133500, 106480, 'en', 'name', 'European Doctoral School'),
(133501, 106481, 'en', 'name', 'National University of Quilmes'),
(133502, 106481, 'es', 'name', 'Universidad Nacional de Quilmes'),
(133503, 106482, 'en', 'name', 'University of Guelph'),
(133504, 106482, 'fr', 'name', 'UniversitƩ de guelph'),
(133505, 106483, 'ca', 'name', 'Institut de Recerca Glòria Compte'),
(133506, 106484, 'en', 'name', 'Akal University'),
(133507, 106484, 'pa', 'name', 'ਅਕਾਲ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(133508, 106485, 'fr', 'name', 'UniversitƩ Libre de Bruxelles'),
(133509, 106486, 'es', 'name', 'Universidad a Distancia de Madrid'),
(133510, 106487, 'en', 'name', 'Office of Budget, Finance and Award Management'),
(133511, 106488, 'en', 'name', 'Japan Packaging Institute'),
(133512, 106488, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ…č£…ęŠ€č”“å”ä¼š'),
(133513, 106489, 'de', 'name', 'Philipps-UniversitƤt Marburg'),
(133514, 106489, 'en', 'name', 'Philipps University of Marburg'),
(133515, 106490, 'de', 'name', 'Ernst-Abbe-Hochschule Jena'),
(133516, 106490, 'en', 'name', 'Ernst Abbe University of Applied Sciences Jena'),
(133517, 106491, 'en', 'name', 'Institute for Agriculture, Medicine, and the Environment'),
(133518, 106491, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč¾²ę„­ćƒ»ē’°å¢ƒćƒ»å„åŗ·ē ”ē©¶ę‰€'),
(133519, 106492, 'en', 'name', 'Centre for Human Genetics'),
(133520, 106493, 'el', 'name', 'Ανωτάτη Σχολή ĪšĪ±Ī»ĻŽĪ½ Ī¤ĪµĻ‡Ī½ĻŽĪ½'),
(133521, 106493, 'en', 'name', 'Athens School of Fine Arts'),
(133522, 106493, 'fr', 'name', 'Ɖcole des beaux-arts d''athĆØnes'),
(133523, 106494, 'en', 'name', 'Tecnimede Group'),
(133524, 106494, 'pt', 'name', 'Grupo Tecnimede (Portugal)'),
(133525, 106495, 'en', 'name', 'Acıbadem University'),
(133526, 106495, 'tr', 'name', 'Acıbadem Üniversitesi'),
(133527, 106496, 'en', 'name', 'Yantai University'),
(133528, 106496, 'zh', 'name', 'ēƒŸå°å¤§å­¦'),
(133529, 106497, 'tr', 'name', 'Tokat Gaziosmanpaşa Üniversitesi'),
(133530, 106498, 'en', 'name', 'Central University of the Caribbean'),
(133531, 106498, 'es', 'name', 'Universidad Central del Caribe'),
(133532, 106499, 'en', 'name', 'Chinese Mechanical Engineering Society'),
(133533, 106499, 'zh', 'name', 'äø­å›½ęœŗę¢°å·„ēØ‹å­¦ä¼š'),
(133534, 106500, 'en', 'name', 'Middlesex University'),
(133535, 106501, 'en', 'name', 'Pharmaceutical Society of Japan'),
(133536, 106501, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬å­¦ä¼š'),
(133537, 106502, 'en', 'name', 'Iowa Geological Survey'),
(133538, 106503, 'es', 'name', 'Universidad Tecmilenio - Campus Veracruz'),
(133539, 106504, 'en', 'name', 'Glasgow School of Art'),
(133540, 106505, 'es', 'name', 'Universidad de las AmƩricas Puebla'),
(133541, 106506, 'en', 'name', 'Mitoyo General Hospital'),
(133542, 106506, 'ja', 'name', 'äø‰č±Šē·åˆē—…é™¢'),
(133543, 106507, 'en', 'name', 'Tashkent Institute of Irrigation and Agricultural Mechanization Engineers'),
(133544, 106507, 'uz', 'name', 'Uzbe ikromjon alijonov Mexanizatsiyalash Muhandislari Instituti'),
(133545, 106508, 'en', 'name', 'Stockholm School of Economics'),
(133546, 106508, 'fi', 'name', 'Tukholman kauppakorkeakoulu'),
(133547, 106508, 'sv', 'name', 'Handelshƶgskolan i Stockholm'),
(133548, 106509, 'en', 'name', 'Dnipro State Agrarian and Economic University'),
(133549, 106509, 'uk', 'name', 'Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний аграрно-економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(133550, 106510, 'en', 'name', 'Henan Vocational University of Science and Technology'),
(133551, 106511, 'en', 'name', 'University of South Alabama'),
(133552, 106512, 'en', 'name', 'Tay Nguyen University'),
(133553, 106512, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c TĆ¢y NguyĆŖn'),
(133554, 106513, 'en', 'name', 'Alfraganus University'),
(133555, 106513, 'uz', 'name', 'Alfraganus Universiteti'),
(133556, 106514, 'en', 'name', 'University of Religions and Denominations'),
(133557, 106514, 'fa', 'name', 'دانؓگاه Ų§ŲÆŪŒŲ§Ł† و مذاهب'),
(133558, 106515, 'es', 'name', 'Universidad TƩcnica Nacional'),
(133559, 106516, 'en', 'name', 'Ghulam Ishaq Khan Institute of Engineering Sciences and Technology'),
(133560, 106516, 'ur', 'name', 'غلام Ų§Ų³Ų­Ų§Ł‚ Ų§Ł†Ų³Ł¹ŪŒŁ¹ŪŒŁˆŁ¹ ŲØŲ±Ų§Ų¦Ū’ Ų§Ł†Ų¬ŪŒŁ†ŪŒŲ±Ł†ŚÆ سائنس Ų§ŪŒŁ†Śˆ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(133561, 106517, 'en', 'name', 'Yamagata Integrated Agricultural Research Center'),
(133562, 106517, 'ja', 'name', 'å±±å½¢ēœŒč¾²ę„­ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(133563, 106518, 'en', 'name', 'Statistical and Applied Mathematical Sciences Institute'),
(133564, 106519, 'en', 'name', 'Sakarya University of Applied Sciences'),
(133565, 106519, 'tr', 'name', 'Sakarya Uygulamalı Bilimler Üniversitesi'),
(133566, 106520, 'en', 'name', 'Portuguese Sea and Atmosphere Institute'),
(133567, 106520, 'pt', 'name', 'Instituto PortuguĆŖs do Mar e da Atmosfera'),
(133568, 106521, 'es', 'name', 'Universidad Nacional de Ciencias Forestales'),
(133569, 106522, 'de', 'name', 'Wuppertal Institut für Klima, Umwelt, Energie'),
(133570, 106522, 'en', 'name', 'Wuppertal Institute for Climate, Environment and Energy'),
(133571, 106523, 'en', 'name', 'Research and Training Institute of the Ministry of Justice'),
(133572, 106523, 'ja', 'name', 'ę³•å‹™ēœę³•å‹™ē·åˆē ”ē©¶ę‰€'),
(133573, 106524, 'en', 'name', 'National Institute for Nuclear Physics, Pavia Section'),
(133574, 106524, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Pavia'),
(133575, 106525, 'en', 'name', 'Nuclear Material Control Center'),
(133576, 106525, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę øē‰©č³Ŗē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(133577, 106526, 'en', 'name', 'Korean Orthopaedic Association'),
(133578, 106526, 'ko', 'name', 'ėŒ€ķ•œģ •ķ˜•ģ™øź³¼ķ•™ķšŒ'),
(133579, 106527, 'en', 'name', 'Seikeikai Hospital'),
(133580, 106527, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęø…ęµä¼šęø…ęµä¼šē—…é™¢'),
(133581, 106528, 'en', 'name', 'International Union for Conservation of Nature (Bangladesh)'),
(133582, 106529, 'en', 'name', 'Chongqing Jiaotong University'),
(133583, 106529, 'zh', 'name', 'é‡åŗ†äŗ¤é€šå¤§å­¦'),
(133584, 106530, 'en', 'name', 'Luxembourg Institute of Science and Technology'),
(133585, 106531, 'de', 'name', 'PƤdagogische Hochschule Karlsruhe'),
(133586, 106531, 'en', 'name', 'Karlsruhe University of Education'),
(133587, 106532, 'ar', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ł…ŁŲŖŁˆŲ­Ų© العراق'),
(133588, 106532, 'en', 'name', 'Open Science Community Iraq'),
(133589, 106533, 'en', 'name', 'Quaid-e-Awam University of Engineering, Science and Technology'),
(133590, 106533, 'sd', 'name', 'Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ś± Ū½ Ł½ŁŠŚŖŁ†ŁŠŚ€ŁŠŲ§Ų³ جي جامعہ قائد Ų¹ŁˆŲ§Ł…ā€Ž'),
(133591, 106533, 'ur', 'name', 'قائد Ų¹ŁˆŲ§Ł… يورسٽي آف Ų§Ł†Ų¬Ł†ŁŠŲ±Ł†ŚÆ Ų§ŁŠŁ†ŚŠ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ'),
(133592, 106534, 'en', 'name', 'Borys Grinchenko Kyiv Metropolitan University'),
(133593, 106534, 'uk', 'name', 'ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ столичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Бориса Грінченка'),
(133594, 106535, 'en', 'name', 'Centre for Innovative Biomedicine and Biotechnology'),
(133595, 106535, 'pt', 'name', 'Centro de Inovação em Biomedicina e Biotecnologia'),
(133596, 106536, 'en', 'name', 'Niigata Industrial Creation Organization'),
(133597, 106536, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć«ć„ćŒćŸē”£ę„­å‰µé€ ę©Ÿę§‹'),
(133598, 106537, 'pt', 'name', 'Laboratório Cedro, Laboratório Cedro (Brazil), Laboratório Cedro, Ltda.'),
(133599, 106538, 'en', 'name', 'Hakuhokai Central Hospital'),
(133600, 106538, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗä¼Æé³³ä¼šćÆćć»ć†ä¼šć‚»ćƒ³ćƒˆćƒ©ćƒ«ē—…é™¢'),
(133601, 106539, 'en', 'name', 'University of Bolton'),
(133602, 106540, 'en', 'name', 'University of Las Palmas de Gran Canaria'),
(133603, 106540, 'es', 'name', 'Universidad de Las Palmas de Gran Canaria'),
(133604, 106540, 'gl', 'name', 'Universidade das Palmas de Gran Canaria'),
(133605, 106541, 'de', 'name', 'UniversitƤt Siena'),
(133606, 106541, 'en', 'name', 'University of Siena'),
(133607, 106541, 'fr', 'name', 'UniversitƩ de sienne'),
(133608, 106541, 'it', 'name', 'UniversitĆ  degli Studi di Siena'),
(133609, 106541, 'sl', 'name', 'Univerza v Sieni'),
(133610, 106542, 'en', 'name', 'Parahyangan Catholic University'),
(133611, 106542, 'id', 'name', 'Universitas Katolik Parahyangan'),
(133612, 106543, 'en', 'name', 'Mohammed VI University of Health and Medical Sciences'),
(133613, 106543, 'fr', 'name', 'UniversitƩ Mohammed VI des Sciences de la SantƩ'),
(133614, 106544, 'de', 'name', 'Naturwissenschaftliches und Medizinisches Institut'),
(133615, 106544, 'en', 'name', 'Natural and Medical Sciences Institute'),
(133616, 106545, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… بصفاقس'),
(133617, 106545, 'en', 'name', 'Faculty of Sciences of Sfax'),
(133618, 106545, 'fr', 'name', 'FacultƩ des Sciences de Sfax'),
(133619, 106546, 'en', 'name', 'Kokugakuin Tochigi Junior College'),
(133620, 106546, 'ja', 'name', 'åœ‹å­øé™¢å¤§å­¦ę ƒęœØēŸ­ęœŸå¤§å­¦'),
(133621, 106547, 'en', 'name', 'BioSafety Research Center'),
(133622, 106547, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé£Ÿå“č¾²åŒ»č–¬å“å®‰å…Øę€§č©•ä¾”ć‚»ćƒ³ć‚æćƒ¼'),
(133623, 106548, 'en', 'name', 'Institute of Inorganic Chemistry of the Slovak Academy of Sciences'),
(133624, 106548, 'sk', 'name', 'Ústav anorganickej chémie SlovenskÔ akadémia vied'),
(133625, 106549, 'en', 'name', 'Kochi Prefectural Forest Technology Center'),
(133626, 106549, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹ę£®ęž—ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(133627, 106550, 'en', 'name', 'Delaware Asteroseismic Research Center'),
(133628, 106551, 'en', 'name', 'Okinawa Miyako Hospital'),
(133629, 106551, 'ja', 'name', 'ę²–ēø„ēœŒē«‹å®®å¤ē—…é™¢'),
(133630, 106552, 'en', 'name', 'Henan University of Traditional Chinese Medicine'),
(133631, 106552, 'zh', 'name', 'ę²³å—äø­åŒ»å­¦é™¢'),
(133632, 106553, 'de', 'name', 'Naturhistorisches Museum Wien'),
(133633, 106553, 'en', 'name', 'Natural History Museum Vienna'),
(133634, 106554, 'de', 'name', 'UniversitƤtsklinikum Schleswig-Holstein'),
(133635, 106554, 'en', 'name', 'University Hospital Schleswig-Holstein'),
(133636, 106555, 'en', 'name', 'Newman College'),
(133637, 106555, 'ml', 'name', 'ą“Øąµą“Æąµ‚ą“®ą“¾ąµ» ą“•ąµ‹ą“³ąµ‡ą“œąµ'),
(133638, 106556, 'de', 'name', 'Nationale Centrum für Tumorerkrankungen'),
(133639, 106556, 'en', 'name', 'National Center for Tumor Diseases'),
(133640, 106557, 'en', 'name', 'Omuta Tenryo Hospital'),
(133641, 106557, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē¦å²”ēœŒē¤¾ä¼šäæé™ŗåŒ»ē™‚å”ä¼šē¤¾ä¼šäæé™ŗå¤§ē‰Ÿē”°å¤©é ˜ē—…é™¢'),
(133642, 106558, 'en', 'name', 'Kagoshima Prefectural Institute For Agricultural Development'),
(133643, 106558, 'ja', 'name', 'é¹æå…å³¶ēœŒč¾²ę„­é–‹ē™ŗē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(133644, 106559, 'de', 'name', 'Pommersche Medizinische UniversitƤt'),
(133645, 106559, 'en', 'name', 'Pomeranian Medical University'),
(133646, 106559, 'pl', 'name', 'Pomorski Uniwersytet Medyczny w Szczecinie'),
(133647, 106560, 'en', 'name', 'Florida Department of Transportation'),
(133648, 106561, 'en', 'name', 'Japan Environmental Technology Association'),
(133649, 106561, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒęŠ€č”“å”ä¼š'),
(133650, 106562, 'en', 'name', 'Rinku General Medical Center'),
(133651, 106562, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗć‚Šć‚“ćć†ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(133652, 106563, 'en', 'name', 'Advanced Cyberinfrastructure Coordination Ecosystem: Services & Support'),
(133653, 106564, 'en', 'name', 'Shaheed Zulfiqar Ali Bhutto Medical University, Islamabad'),
(133654, 106564, 'ur', 'name', 'ؓہید Ų°ŁˆŲ§Ł„ŁŁ‚Ų§Ų± Ų¹Ł„ŪŒ بھٹو Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒŲŒ اسلام Ų¢ŲØŲ§ŲÆ'),
(133655, 106565, 'no_lang_code', 'name', 'MatĆ­s (Iceland)'),
(133656, 106566, 'en', 'name', 'Rosemont College'),
(133657, 106567, 'en', 'name', 'Water Re-use Promotion Center'),
(133658, 106567, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé€ ę°“äæƒé€²ć‚»ćƒ³ć‚æćƒ¼'),
(133659, 106568, 'en', 'name', 'The Japanese Association of Indian and Buddhist Studies'),
(133660, 106568, 'ja', 'name', 'ę—„ęœ¬å°åŗ¦å­¦ä»ę•™å­¦ä¼š'),
(133661, 106569, 'en', 'name', 'Japan Organization for Metals and Energy Security (Japan)'),
(133662, 106569, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗć‚Øćƒćƒ«ć‚®ćƒ¼ćƒ»é‡‘å±žé‰±ē‰©č³‡ęŗę©Ÿę§‹'),
(133663, 106570, 'es', 'name', 'Escuela Colombiana de Carreras Industriales'),
(133664, 106571, 'en', 'name', 'Pacific Lutheran University'),
(133665, 106572, 'en', 'name', 'National Institute for Nuclear Physics, Turin Section'),
(133666, 106572, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Torino'),
(133667, 106573, 'en', 'name', 'Albany State University'),
(133668, 106574, 'en', 'name', 'National Institute of Technology Goa'),
(133669, 106575, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ų§ŁˆŁŠŲ©'),
(133670, 106575, 'en', 'name', 'Al Zawiya University'),
(133671, 106576, 'en', 'name', 'Saitama Health Promotion'),
(133672, 106576, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒå„åŗ·ć„ćć‚Šäŗ‹ę„­å›£'),
(133673, 106577, 'en', 'name', 'Ishinkai Yao General Hospital'),
(133674, 106577, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒ»ēœŸä¼šå…«å°¾ē·åˆē—…é™¢'),
(133675, 106578, 'en', 'name', 'Zymo Research Corporation, Zymo Research Corporation (United States)'),
(133676, 106579, 'en', 'name', 'Hokusho Central Hospital'),
(133677, 106579, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŒ—ę¾äø­å¤®ē—…é™¢'),
(133678, 106580, 'pt', 'name', 'Centro de Investigação em Reabilitação'),
(133679, 106581, 'en', 'name', 'Tanaka Growth Clinic'),
(133680, 106581, 'ja', 'name', 'ćŸćŖć‹ęˆé•·ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(133681, 106582, 'bn', 'name', 'পাবনা ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(133682, 106582, 'en', 'name', 'Pabna University of Science and Technology'),
(133683, 106583, 'en', 'name', 'University of Economics in Katowice'),
(133684, 106583, 'pl', 'name', 'Uniwersytet Ekonomiczny w Katowicach'),
(133685, 106584, 'en', 'name', 'National Museum in Kraków'),
(133686, 106585, 'en', 'name', 'East China University of Science and Technology'),
(133687, 106585, 'zh', 'name', 'åŽäøœē†å·„å¤§å­¦'),
(133688, 106586, 'en', 'name', 'Fuel Cell Cutting-Edge Research Center Technology Research Association'),
(133689, 106586, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆFC-Cubic'),
(133690, 106587, 'en', 'name', 'National Institute of Technology'),
(133691, 106587, 'id', 'name', 'Institut Teknologi Nasional'),
(133692, 106588, 'en', 'name', 'Howard University Hospital'),
(133693, 106589, 'en', 'name', 'Pharmaceutical Management and Economics Research Center'),
(133694, 106589, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اقتصاد و Ł…ŲÆŪŒŲ±ŪŒŲŖ دارو'),
(133695, 106590, 'en', 'name', 'Å iauliai State Higher Education Institution'),
(133696, 106590, 'lt', 'name', 'Šiaulių valstybinė kolegija'),
(133697, 106591, 'en', 'name', 'L V Prasad Eye Institute'),
(133698, 106592, 'en', 'name', 'IP Innovative Publication Pvt. Ltd., IP Innovative Publication Pvt. Ltd. (India)'),
(133699, 106593, 'en', 'name', 'North Eastern Regional Institute of Science and Technology'),
(133700, 106593, 'hi', 'name', 'ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø और ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤•ą„‡ ą¤Ŗą„‚ą¤°ą„ą¤µą„‹ą¤¤ą„ą¤¤ą¤° ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(133701, 106594, 'en', 'name', 'St. Francis Xavier University'),
(133702, 106594, 'fr', 'name', 'UniversitƩ saint-francis-xavier'),
(133703, 106595, 'en', 'name', 'Taiyuan University of Science and Technology'),
(133704, 106595, 'zh', 'name', 'å¤ŖåŽŸē§‘ęŠ€å¤§å­¦'),
(133705, 106596, 'en', 'name', 'Hohai University'),
(133706, 106596, 'zh', 'name', '河海大学'),
(133707, 106597, 'es', 'name', 'Escuela Superior Politécnica Agropecuaria de Manabí Manuel Félix López'),
(133708, 106598, 'de', 'name', 'Technische UniversitƤt Ilmenau'),
(133709, 106599, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الزرقاؔ'),
(133710, 106599, 'en', 'name', 'Zarqa University'),
(133711, 106600, 'en', 'name', 'State Islamic University Datokarama Palu'),
(133712, 106600, 'id', 'name', 'Universitas Islam Negeri Datokarama Palu'),
(133713, 106601, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„ŲØŲ­ŁˆŲ« ŁˆŲ§Ł„ŲÆŲ±Ų§Ų³Ų§ŲŖ Ų§Ł„ŲµŲ­ŁŠŲ©'),
(133714, 106601, 'en', 'name', 'Center for Health Research Studies'),
(133715, 106602, 'pt', 'name', 'Centro de Investigação Naval'),
(133716, 106603, 'fr', 'name', 'UniversitƩ pontificale catholique de campinas'),
(133717, 106603, 'pt', 'name', 'Pontifícia Universidade Católica de Campinas'),
(133718, 106604, 'en', 'name', 'Ankara University'),
(133719, 106604, 'tr', 'name', 'Ankara Üniversitesi'),
(133720, 106605, 'fr', 'name', 'Ministère des Solidarités et de la Santé'),
(133721, 106606, 'en', 'name', 'Defense Facilities Environment Improvement Association'),
(133722, 106606, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé˜²č”›ę–½čØ­å”ä¼š'),
(133723, 106607, 'fr', 'name', 'Institut Jean-Pierre Bourgin'),
(133724, 106608, 'en', 'name', 'Victorian Institute of Forensic Medicine'),
(133725, 106609, 'en', 'name', 'Institute of Molecular Biology of the Slovak Academy of Sciences'),
(133726, 106609, 'sk', 'name', 'Ústav molekulÔrnej biológie SlovenskÔ akadémia vied'),
(133727, 106610, 'en', 'name', 'Fraunhofer Innovation Platform for Composites Research'),
(133728, 106611, 'en', 'name', 'Gamagori City Hospital'),
(133729, 106611, 'ja', 'name', 'č’²éƒ”åø‚ę°‘ē—…é™¢'),
(133730, 106612, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł‚ŲµŁŠŁ…'),
(133731, 106612, 'en', 'name', 'Qassim University'),
(133732, 106613, 'es', 'name', 'Institución Universitaria Escuela Nacional del Deporte'),
(133733, 106614, 'en', 'name', 'Cornell College'),
(133734, 106615, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عمر المختار'),
(133735, 106615, 'en', 'name', 'Omar Al-Mukhtar University'),
(133736, 106616, 'en', 'name', 'Academy of Agricultural and Forestry Sciences'),
(133737, 106617, 'es', 'name', 'Fundación Universitaria Compensar'),
(133738, 106618, 'en', 'name', 'Motor Transport Institute'),
(133739, 106618, 'pl', 'name', 'Instytut Transportu Samochodowego'),
(133740, 106619, 'en', 'name', 'Bolu Abant İzzet Baysal University'),
(133741, 106619, 'tr', 'name', 'Bolu Abant İzzet Baysal Üniversitesi'),
(133742, 106620, 'en', 'name', 'Tashkent State University of Law'),
(133743, 106620, 'uz', 'name', 'Toshkent davlat yuridik universiteti'),
(133744, 106621, 'en', 'name', 'Japan Forest Technology Association'),
(133745, 106621, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę£®ęž—ęŠ€č”“å”ä¼š'),
(133746, 106622, 'fr', 'name', 'Ɖcole Centrale de Lille'),
(133747, 106623, 'en', 'name', 'Saint Thomas Aquinas University'),
(133748, 106623, 'es', 'name', 'Universidad Santo TomƔs'),
(133749, 106624, 'en', 'name', 'Exceptional Talents Development Center'),
(133750, 106624, 'fa', 'name', 'مرکز Ų±Ų“ŲÆ Ų§Ų³ŲŖŲ¹ŲÆŲ§ŲÆŁ‡Ų§ŪŒ درخؓان'),
(133751, 106625, 'en', 'name', 'Children''s Cancer Institute Australia'),
(133752, 106626, 'pt', 'name', 'Centro Português de Geo-História e Pré-História'),
(133753, 106627, 'de', 'name', 'Fachhochschule des bfi Wien'),
(133754, 106627, 'en', 'name', 'University of Applied Sciences BFI Vienna'),
(133755, 106628, 'en', 'name', 'Technical University of Malaysia Malacca'),
(133756, 106628, 'ms', 'name', 'Universiti Teknikal Malaysia Melaka'),
(133757, 106629, 'ca', 'name', 'Institut Guttmann'),
(133758, 106629, 'es', 'name', 'Instituto Guttmann'),
(133759, 106630, 'en', 'name', 'Japan Health & Research Institute'),
(133760, 106630, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·é–‹ē™ŗč²”å›£'),
(133761, 106631, 'en', 'name', 'Oyokyo Kidney Research Institute'),
(133762, 106631, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé·¹ęšéƒ·č…Žē ”ē©¶ę‰€'),
(133763, 106632, 'en', 'name', 'Industrial Property Cooperation Center'),
(133764, 106632, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå·„ę„­ę‰€ęœ‰ęØ©å”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(133765, 106633, 'de', 'name', 'Institut für Mikrobiologie der Bundeswehr'),
(133766, 106634, 'en', 'name', 'Mohammed Bin Rashid University of Medicine and Health Sciences'),
(133767, 106635, 'en', 'name', 'Yoshida Hospital'),
(133768, 106635, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¹³å’Œä¼šå‰ē”°ē—…é™¢'),
(133769, 106636, 'en', 'name', 'Institute of Materials and Machine Mechanics of the Slovak Academy of Sciences'),
(133770, 106636, 'sk', 'name', 'Ústav MateriÔlov a Mechaniky Strojov SlovenskÔ akadémia vied'),
(133771, 106637, 'pt', 'name', 'Centro de Estudos GeogrƔficos'),
(133772, 106638, 'pt', 'name', 'Comissão para a Cidadania e Igualdade de Género'),
(133773, 106639, 'de', 'name', 'Hochschule Flensburg'),
(133774, 106639, 'en', 'name', 'Flensburg University of Applied Sciences'),
(133775, 106640, 'en', 'name', 'Caldwell University'),
(133776, 106641, 'de', 'name', 'EuropƤische Akademie Bozen'),
(133777, 106641, 'en', 'name', 'Eurac Research'),
(133778, 106641, 'it', 'name', 'Accademia Europea di Bolzano'),
(133779, 106641, 'rm', 'name', 'Academia Europeica de Bulsan'),
(133780, 106642, 'en', 'name', 'China University of Mining and Technology'),
(133781, 106642, 'zh', 'name', 'äø­å›½ēŸæäøšå¤§å­¦'),
(133782, 106643, 'en', 'name', 'Indian Institute of Technology Tirupati'),
(133783, 106643, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą±‹ą°²ą°œą±€ తిరుపతి'),
(133784, 106644, 'pt', 'name', 'ComitƩ Olƭmpico de Portugal'),
(133785, 106645, 'en', 'name', 'Ibaraki Fisheries Research Institute'),
(133786, 106645, 'ja', 'name', 'čŒØåŸŽēœŒę°“ē”£č©¦éØ“å “'),
(133787, 106646, 'en', 'name', 'IPS Academy'),
(133788, 106647, 'en', 'name', 'Northwestern Polytechnical University'),
(133789, 106647, 'zh', 'name', 'č„æåŒ—å·„äøšå¤§å­¦'),
(133790, 106648, 'pt', 'name', 'Agencia Regional para o Desenvolvimento da Investigacao Tecnologia e Inovacao'),
(133791, 106649, 'en', 'name', 'Nankai University'),
(133792, 106649, 'zh', 'name', '南开大学'),
(133793, 106650, 'ml', 'name', 'ą“Øąµ‚ą“±ąµąµ½ ą“‡ą“øąµą“²ą“¾ą“‚ ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(133794, 106650, 'no_lang_code', 'name', 'Noorul Islam University'),
(133795, 106650, 'ta', 'name', 'ą®ØąÆ‚ą®°ąÆą®²ąÆ ą®‡ą®øąÆą®²ą®¾ą®®ą®æą®Æą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(133796, 106651, 'en', 'name', 'Institute of Ethnology and Social Anthropology of the Slovak Academy of Sciences'),
(133797, 106651, 'sk', 'name', 'Ústav etnológie a sociÔlnej antropológie SlovenskÔ akadémia vied'),
(133798, 106652, 'en', 'name', 'Athabasca University'),
(133799, 106653, 'en', 'name', 'Japan Canners Association'),
(133800, 106653, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē¼¶č©°ć³ć‚“č©°ćƒ¬ćƒˆćƒ«ćƒˆé£Ÿå“å”ä¼š'),
(133801, 106654, 'en', 'name', 'Japan Industrial Waste Information Center'),
(133802, 106654, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”£ę„­å»ƒę£„ē‰©å‡¦ē†ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(133803, 106655, 'es', 'name', 'Tribunal Electoral del Estado de MƩxico'),
(133804, 106656, 'ro', 'name', 'Garda Nationala de Mediu'),
(133805, 106657, 'en', 'name', 'Olusegun Agagu University of Science and Technology'),
(133806, 106658, 'en', 'name', 'Centre for the Protection of National Infrastructure'),
(133807, 106659, 'en', 'name', 'Tsuchiya General Hospital'),
(133808, 106659, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗć‚ć‹ć­ä¼šåœŸč°·ē·åˆē—…é™¢'),
(133809, 106660, 'en', 'name', 'Siberian State Medical University'),
(133810, 106660, 'ru', 'name', 'Дибирский Š³Š¾ŃŃƒŠ“арственный меГицинский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(133811, 106661, 'en', 'name', 'Yachiyo Hospital'),
(133812, 106661, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ę–°å’Œä¼šå…«åƒä»£ē—…é™¢'),
(133813, 106662, 'en', 'name', 'Japan Health Food & Nutrition Food Association'),
(133814, 106662, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·ćƒ»ę „é¤Šé£Ÿå“å”ä¼š'),
(133815, 106663, 'de', 'name', 'Leibniz-Zentrum für Agrarlandschaftsforschung'),
(133816, 106663, 'en', 'name', 'Leibniz Centre for Agricultural Landscape Research'),
(133817, 106664, 'sr', 'name', 'Institut za onkologiju i radiologiju Srbije'),
(133818, 106665, 'bn', 'name', 'ą¦øą§ą¦Øą¦¾ą¦®ą¦—ą¦žą§ą¦œ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(133819, 106665, 'en', 'name', 'Sunamganj Science and Technology University'),
(133820, 106666, 'en', 'name', 'Institute of Plant Genetics and Biotechnology of the Slovak Academy of Sciences'),
(133821, 106666, 'sk', 'name', 'Ústav genetiky a biotechnológií rastlín SlovenskÔ akadémia vied'),
(133822, 106667, 'bg', 'name', 'ŠœŠ˜ŠŠŠž-Š“Š•ŠžŠ›ŠžŠ–ŠšŠ˜ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢ "ДВ. Š˜Š’ŠŠ Š Š˜Š›Š”ŠšŠ˜"'),
(133823, 106667, 'en', 'name', 'University of Mining and Geology "Saint Ivan Rilski"'),
(133824, 106668, 'en', 'name', 'Tadulako University'),
(133825, 106668, 'id', 'name', 'Universitas Tadulako'),
(133826, 106669, 'en', 'name', 'Tomsk National Research Medical Center'),
(133827, 106669, 'ru', 'name', 'Томский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский центр'),
(133828, 106670, 'en', 'name', 'Reproduction Clinic Osaka'),
(133829, 106670, 'ja', 'name', 'ćƒŖćƒ—ćƒ­ćƒ€ć‚Æć‚·ćƒ§ćƒ³ć‚ÆćƒŖćƒ‹ćƒƒć‚Æå¤§é˜Ŗ'),
(133830, 106671, 'en', 'name', 'Research Institute of Natural Gas Technology'),
(133831, 106671, 'zh', 'name', 'äø­å›½ēŸ³ę²¹č„æå—ę²¹ę°”ē”°å…¬åøå¤©ē„¶ę°”ē ”ē©¶é™¢'),
(133832, 106672, 'en', 'name', 'Coastal Development Institute of Technology'),
(133833, 106672, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę²æå²øęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼');
INSERT INTO `ror_settings` VALUES
(133834, 106673, 'en', 'name', 'Functional Ecology and Ecotoxicology of AgroEcosystems'),
(133835, 106673, 'fr', 'name', 'Ɖcologie Fonctionnelle et Ɖcotoxicologie des AgroĆ©cosystĆØmes'),
(133836, 106674, 'en', 'name', 'Northeastern State University'),
(133837, 106675, 'en', 'name', 'Chugoku Regional Research Center'),
(133838, 106675, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäø­å›½åœ°ę–¹ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(133839, 106676, 'nl', 'name', 'CBG|Centrum voor familiegeschiedenis'),
(133840, 106677, 'en', 'name', 'Chiba City Education Center'),
(133841, 106677, 'ja', 'name', 'åƒč‘‰åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(133842, 106678, 'en', 'name', 'McDaniel College'),
(133843, 106679, 'pt', 'name', 'Centro de Investigação do Território Transportes e Ambiente'),
(133844, 106680, 'en', 'name', 'Yamaguchi Prefectural Industrial Technology Institute'),
(133845, 106680, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå±±å£ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(133846, 106681, 'en', 'name', 'Research and Environmental Education Foundation'),
(133847, 106682, 'en', 'name', 'City of Portsmouth College'),
(133848, 106683, 'no_lang_code', 'name', 'MSD (Germany)'),
(133849, 106684, 'en', 'name', 'Nune Eye Hospital'),
(133850, 106684, 'ko', 'name', 'ėˆ„ė„¤ģ•ˆź³¼ė³‘ģ›'),
(133851, 106685, 'en', 'name', 'Richard L. Roudebush VA Medical Center'),
(133852, 106686, 'pt', 'name', 'ServiƧo de InformaƧƵes de SeguranƧa'),
(133853, 106687, 'en', 'name', 'Hamdard University'),
(133854, 106687, 'ur', 'name', 'Ų¬Ų§Ł…Ų¹Ū‚ ہمدرد'),
(133855, 106688, 'en', 'name', 'Tango Central Hospital'),
(133856, 106688, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø¹å¾Œäø­å¤®ē—…é™¢'),
(133857, 106689, 'en', 'name', 'Delhi Technological University'),
(133858, 106689, 'hi', 'name', 'ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(133859, 106689, 'ta', 'name', 'ą®ŸąÆ†ą®²ąÆą®²ą®æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(133860, 106690, 'ja', 'name', 'ę˜Žę²»å­¦é™¢å¤§å­¦'),
(133861, 106690, 'no_lang_code', 'name', 'Meiji Gakuin University'),
(133862, 106691, 'en', 'name', 'Cappadocia University, Cappadocia Vocational College'),
(133863, 106692, 'en', 'name', 'Highbury College'),
(133864, 106693, 'en', 'name', 'Gihoku Kosei Hospital'),
(133865, 106693, 'ja', 'name', 'JAå²é˜œåŽšē”Ÿé€£å²åŒ—åŽšē”Ÿē—…é™¢'),
(133866, 106694, 'en', 'name', 'Shandong University'),
(133867, 106694, 'zh', 'name', '山东大学'),
(133868, 106695, 'en', 'name', 'Nagoya Public Institute of Medicine'),
(133869, 106695, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåå¤å±‹å…¬č”†åŒ»å­¦ē ”ē©¶ę‰€'),
(133870, 106696, 'en', 'name', 'Japan Plant Protection Association'),
(133871, 106696, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©é˜²ē–«å”ä¼š'),
(133872, 106697, 'fr', 'name', 'Laboratoire Lorrain de Chimie MolƩculaire'),
(133873, 106698, 'en', 'name', 'Fujian Normal University'),
(133874, 106698, 'zh', 'name', 'ē¦å»ŗåøˆčŒƒå¤§å­¦'),
(133875, 106699, 'kk', 'name', 'ŅšŠ°Š½Ń‹Ńˆ Дәтбаев атынГағы ŅšŠ°Š·Š°Ņ› ұлттық техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(133876, 106699, 'no_lang_code', 'name', 'Satbayev University'),
(133877, 106699, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени К. И. Датпаева'),
(133878, 106700, 'en', 'name', 'Humanitas University'),
(133879, 106701, 'en', 'name', 'EMERGREEN'),
(133880, 106702, 'en', 'name', 'Research Experiences for Undergraduates'),
(133881, 106703, 'en', 'name', 'Chemical Society of Japan'),
(133882, 106703, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬ē†å­¦ä¼š'),
(133883, 106704, 'en', 'name', 'Aalto University'),
(133884, 106704, 'fi', 'name', 'Aalto-yliopisto'),
(133885, 106705, 'pt', 'name', 'Serviço Nacional de Saúde'),
(133886, 106706, 'en', 'name', 'Yamanashi Kosei Hospital'),
(133887, 106706, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå±±ę¢ØåŽšē”Ÿä¼šå±±ę¢ØåŽšē”Ÿē—…é™¢'),
(133888, 106707, 'cs', 'name', 'Ústav ArcheologickĆ© PamĆ”tkovĆ© PĆ©Äe Brno'),
(133889, 106708, 'es', 'name', 'Universidad Tecnológica de Zinacantepec'),
(133890, 106709, 'pt', 'name', 'Universidade Paulista'),
(133891, 106710, 'en', 'name', 'Sanata Dharma University'),
(133892, 106710, 'id', 'name', 'Universitas Sanata Dharma'),
(133893, 106710, 'jv', 'name', 'UnivĆØrsitas Sanata Dharma'),
(133894, 106711, 'en', 'name', 'Western Governors University'),
(133895, 106712, 'en', 'name', 'Ohda Municipal Hospital'),
(133896, 106712, 'ja', 'name', '大田市立病院'),
(133897, 106713, 'no_lang_code', 'name', 'Innocoll (Ireland)'),
(133898, 106714, 'en', 'name', 'Illinois Wesleyan University'),
(133899, 106715, 'en', 'name', 'Qingdao University'),
(133900, 106715, 'zh', 'name', '青岛大学'),
(133901, 106716, 'en', 'name', 'Ikegami General Hospital'),
(133902, 106716, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę¾å’Œä¼šę± äøŠē·åˆē—…é™¢'),
(133903, 106717, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ الخاصة للهندسة و Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ'),
(133904, 106717, 'fr', 'name', 'Ɖcole SupĆ©rieure PrivĆ©e d''IngĆ©nierie et de Technologies'),
(133905, 106718, 'de', 'name', 'Management Center Innsbruck'),
(133906, 106719, 'en', 'name', 'Nagano Vegetable and Ornamental Crops Experiment Station'),
(133907, 106719, 'ja', 'name', 'é•·é‡ŽēœŒé‡ŽčœčŠ±ćč©¦éØ“å “'),
(133908, 106720, 'en', 'name', 'Shifa Tameer-e-Millat University'),
(133909, 106721, 'en', 'name', 'Thuongmai University'),
(133910, 106721, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Thʰʔng mįŗ”i'),
(133911, 106722, 'en', 'name', 'Institute of Economic Research of the Slovak Academy of Sciences'),
(133912, 106722, 'sk', 'name', 'Ekonomický ústav SlovenskÔ akadémia vied'),
(133913, 106723, 'fr', 'name', 'Institut national supƩrieur de formation et de recherche pour l''Ʃducation inclusive'),
(133914, 106724, 'en', 'name', 'Autonomous University of Tlaxcala'),
(133915, 106724, 'es', 'name', 'Universidad Autónoma de Tlaxcala'),
(133916, 106725, 'en', 'name', 'Le Cordon Bleu University'),
(133917, 106725, 'es', 'name', 'Universidad Le Cordon Bleu'),
(133918, 106726, 'en', 'name', 'IEEE Microwave Theory and Techniques Society'),
(133919, 106727, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do CearÔ'),
(133920, 106728, 'en', 'name', 'Hokkaido Development Association'),
(133921, 106728, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“é–‹ē™ŗå”ä¼š'),
(133922, 106729, 'en', 'name', 'Thanh Dong University'),
(133923, 106729, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c ThĆ nh ĐƓng'),
(133924, 106730, 'en', 'name', 'Kyushu Institute of Technology'),
(133925, 106730, 'ja', 'name', 'ä¹å·žå·„ę„­å¤§å­¦'),
(133926, 106731, 'en', 'name', 'Toyota Regional Medical Center'),
(133927, 106731, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč±Šē”°åœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(133928, 106732, 'pt', 'name', 'Sociedade Portuguesa de Cuidados Intensivos'),
(133929, 106733, 'en', 'name', 'Linfield College'),
(133930, 106734, 'en', 'name', 'Catholic University of Croatia'),
(133931, 106734, 'hr', 'name', 'Hrvatsko Katoličko SveučiliŔte'),
(133932, 106735, 'en', 'name', 'Gifu International Center'),
(133933, 106735, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå²é˜œēœŒå›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(133934, 106736, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© قابس'),
(133935, 106736, 'en', 'name', 'University of GabĆØs'),
(133936, 106736, 'fr', 'name', 'Université de gabès'),
(133937, 106737, 'es', 'name', 'Escuela de Comunicación Mónica Herrera'),
(133938, 106738, 'pt', 'name', 'Centro de Estudos da População Economia e Sociedade'),
(133939, 106739, 'en', 'name', 'Kahramanmaraş İstiklal University'),
(133940, 106739, 'tr', 'name', 'Kahramanmaraş İstiklal Üniversitesi'),
(133941, 106740, 'en', 'name', 'Falmouth University'),
(133942, 106741, 'en', 'name', 'National Institute for Nuclear Physics, Bari Division'),
(133943, 106741, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Bari'),
(133944, 106742, 'en', 'name', 'Beijing Normal University'),
(133945, 106742, 'zh', 'name', 'åŒ—äŗ¬åøˆčŒƒå¤§å­¦'),
(133946, 106743, 'en', 'name', 'Alexandru Ioan Cuza University'),
(133947, 106743, 'ro', 'name', 'Universitatea Alexandru Ioan Cuza'),
(133948, 106744, 'bs', 'name', 'Univerzitet u Istočnom Sarajevu'),
(133949, 106744, 'en', 'name', 'University of East Sarajevo'),
(133950, 106744, 'sr', 'name', 'Универзитет у Š˜ŃŃ‚Š¾Ń‡Š½Š¾Š¼ Š”Š°Ń€Š°Ń˜ŠµŠ²Ńƒ'),
(133951, 106745, 'en', 'name', 'THE General Insurance Institute Of Japan'),
(133952, 106745, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęå®³äæé™ŗäŗ‹ę„­ē·åˆē ”ē©¶ę‰€'),
(133953, 106746, 'en', 'name', 'Okayama College'),
(133954, 106746, 'ja', 'name', '岔山短期大学'),
(133955, 106747, 'en', 'name', 'Research Center for Automatic Control of Nancy'),
(133956, 106747, 'fr', 'name', 'Centre de Recherche en Automatique de Nancy'),
(133957, 106748, 'en', 'name', 'Institute for Theoretical Physics'),
(133958, 106748, 'es', 'name', 'Instituto de Física Teórica'),
(133959, 106749, 'en', 'name', 'The Occupational Health Promotion Foundation'),
(133960, 106749, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē”£ę„­åŒ»å­¦ęŒÆčˆˆč²”å›£'),
(133961, 106750, 'en', 'name', 'University of Atacama'),
(133962, 106750, 'es', 'name', 'Universidad de Atacama'),
(133963, 106751, 'en', 'name', 'University of YaoundƩ I'),
(133964, 106751, 'fr', 'name', 'UniversitƩ de YaoundƩ I'),
(133965, 106752, 'en', 'name', 'Kumamoto Prefectural Government'),
(133966, 106752, 'ja', 'name', 'ē†Šęœ¬ēœŒåŗ'),
(133967, 106753, 'en', 'name', 'Stonehill College'),
(133968, 106754, 'en', 'name', 'Royal Northern College of Music'),
(133969, 106755, 'en', 'name', 'Elderly Health Research Center'),
(133970, 106755, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ سلامت سالمندان'),
(133971, 106756, 'de', 'name', 'PƤdagogische Hochschule Luzern'),
(133972, 106756, 'en', 'name', 'University of Teacher Education Lucerne'),
(133973, 106757, 'en', 'name', 'Informatics Institute of Technology'),
(133974, 106758, 'en', 'name', 'Indian Institute of Information Technology Dharwad'),
(133975, 106759, 'en', 'name', 'University of Nebraska System'),
(133976, 106759, 'es', 'name', 'Sistema Universitario de Nebraska'),
(133977, 106759, 'fr', 'name', 'UniversitƩ du nebraska'),
(133978, 106760, 'en', 'name', 'Ghazi University'),
(133979, 106760, 'ur', 'name', 'غازی ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(133980, 106761, 'en', 'name', 'IEEE Standards Association'),
(133981, 106762, 'en', 'name', 'Huazhong Agricultural University'),
(133982, 106762, 'zh', 'name', 'åŽäø­å†œäøšå¤§å­¦'),
(133983, 106763, 'en', 'name', 'Qingdao Binhai University'),
(133984, 106763, 'zh', 'name', 'é’å²›ę»Øęµ·å­¦é™¢'),
(133985, 106764, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁŁŠŁˆŁ…'),
(133986, 106764, 'en', 'name', 'Fayoum University'),
(133987, 106765, 'en', 'name', 'Asakayama General Hospital'),
(133988, 106765, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęµ…é¦™å±±ē—…é™¢'),
(133989, 106766, 'en', 'name', 'Nanoscience Cooperative Research Center'),
(133990, 106766, 'es', 'name', 'CIC nanoGUNE'),
(133991, 106767, 'en', 'name', 'Cancer Council Victoria'),
(133992, 106768, 'en', 'name', 'Kaliningrad State Technical University'),
(133993, 106768, 'ru', 'name', 'ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(133994, 106769, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł†Ų§Ų¬ŁŠ'),
(133995, 106769, 'en', 'name', 'Al-Naji University'),
(133996, 106770, 'en', 'name', 'Aleksandƫr Moisiu University'),
(133997, 106770, 'sq', 'name', 'Universiteti Aleksandƫr Moisiu'),
(133998, 106771, 'en', 'name', 'International Association of Privacy Professionals'),
(133999, 106772, 'no_lang_code', 'name', 'Maseno University'),
(134000, 106773, 'en', 'name', 'Salem State University'),
(134001, 106773, 'fr', 'name', 'UniversitƩ d''Ʃtat de salem'),
(134002, 106774, 'en', 'name', 'Hokkaido Tokachi Area Regional Food Processing Technology Center'),
(134003, 106774, 'ja', 'name', 'åŒ—ęµ·é“ē«‹åå‹åœåœ°åŸŸé£Ÿå“åŠ å·„ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(134004, 106775, 'en', 'name', 'Japan Grassland Agriculture and Forage Seed Association'),
(134005, 106775, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‰åœ°ē•œē”£ēØ®å­å”ä¼š'),
(134006, 106776, 'en', 'name', 'The Japanese Red Cross Junior College of Akita'),
(134007, 106776, 'ja', 'name', 'ę—„ęœ¬čµ¤åå­—ē§‹ē”°ēŸ­ęœŸå¤§å­¦'),
(134008, 106777, 'en', 'name', 'Tokushima Agriculture, Forestry and Fisheries Technology Support Center'),
(134009, 106777, 'ja', 'name', 'å¾³å³¶ēœŒē«‹č¾²ęž—ę°“ē”£ē·åˆęŠ€č”“ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(134010, 106778, 'en', 'name', 'National Sanatorium Oku-Komyoen'),
(134011, 106778, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€é‚‘ä¹…å…‰ę˜Žåœ’'),
(134012, 106779, 'es', 'name', 'Instituto Tecnológico de Nuevo Leon'),
(134013, 106780, 'en', 'name', 'Polis University'),
(134014, 106781, 'en', 'name', 'Huanta National Autonomous University'),
(134015, 106781, 'es', 'name', 'Universidad Nacional Autónoma de Huanta'),
(134016, 106782, 'en', 'name', 'Cupid Clinic'),
(134017, 106782, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗć‚Æćƒ”ćƒ‰ćƒ»ćƒ•ć‚§ć‚¢ćć“ć©ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(134018, 106783, 'en', 'name', 'Mathematica Policy Research'),
(134019, 106784, 'en', 'name', 'Nihon Medical Association'),
(134020, 106784, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»å­¦å”ä¼š'),
(134021, 106785, 'id', 'name', 'Universitas Serambi Mekkah'),
(134022, 106786, 'pt', 'name', 'Centro de Apoio Tecnológico à Indústria Metalomecânica'),
(134023, 106787, 'en', 'name', 'JosƩ Benito Vives de AndrƩis Marine and Coastal Research Institute'),
(134024, 106788, 'en', 'name', 'Shenyang Aerospace University'),
(134025, 106788, 'zh', 'name', '沈阳航空航天大学'),
(134026, 106789, 'en', 'name', 'L. N. Gumilyov Eurasian National University'),
(134027, 106789, 'kk', 'name', 'Š•ŃƒŃ€Š°Š·ŠøŃ ұлттық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(134028, 106789, 'ru', 'name', 'Евразийский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š›. Š. Š“ŃƒŠ¼ŠøŠ»Ń‘Š²Š°'),
(134029, 106790, 'en', 'name', 'University of Illinois Chicago, Rockford campus'),
(134030, 106791, 'en', 'name', 'Greater Poland Cancer Center'),
(134031, 106792, 'en', 'name', 'Okinawa Prefectural Plant Protection Center'),
(134032, 106792, 'ja', 'name', 'ę²–ēø„ēœŒē—…å®³č™«é˜²é™¤ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(134033, 106793, 'en', 'name', 'Shizuoka Prefectural Research Institute of Fishery'),
(134034, 106793, 'ja', 'name', 'é™å²”ēœŒę°“ē”£ćƒ»ęµ·ę“‹ęŠ€č”“ē ”ē©¶ę‰€'),
(134035, 106794, 'en', 'name', 'Kostanay Socio-Technical University named after academician Z. Aldamzhar'),
(134036, 106794, 'kk', 'name', 'АкаГемик Š—. АлГамжар атынГағы ŅšŠ¾ŃŃ‚Š°Š½Š°Š¹ Ó™Š»ŠµŃƒŠ¼ŠµŃ‚Ń‚Ń–Šŗ-техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(134037, 106794, 'ru', 'name', 'ŠšŠ¾ŃŃ‚Š°Š½Š°Š¹ŃŠŗŠøŠ¹ ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾-технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š—.АлГамжар'),
(134038, 106795, 'en', 'name', 'University of Malaysia, Terengganu'),
(134039, 106795, 'ms', 'name', 'Universiti Malaysia Terengganu'),
(134040, 106796, 'en', 'name', 'Matt''s Promise'),
(134041, 106797, 'en', 'name', 'Shizuoka Professional University Junior College of Agriculture'),
(134042, 106797, 'ja', 'name', 'é™å²”ēœŒē«‹č¾²ęž—ē’°å¢ƒå°‚é–€č·å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(134043, 106798, 'en', 'name', 'Sisters of Charity Hospital'),
(134044, 106798, 'hr', 'name', 'Klinički Bolnički Centar Sestre Milosrdnice'),
(134045, 106799, 'en', 'name', 'Shimane Prefectural Agriculture And Livestock Industry Promotion Division'),
(134046, 106799, 'ja', 'name', 'å³¶ę ¹ēœŒč¾²ęž—ę°“ē”£éƒØ'),
(134047, 106800, 'en', 'name', 'Curtin University Sarawak'),
(134048, 106801, 'de', 'name', 'Hochschule Mittweida'),
(134049, 106801, 'en', 'name', 'University of Applied Sciences Mittweida'),
(134050, 106802, 'en', 'name', 'International Center for Chemical and Biological Sciences'),
(134051, 106802, 'ur', 'name', 'Ś©ŪŒŁ…ŪŒŲ§Ų¦ŪŒ اور حیاتیاتی سائنس کے لئے ŲØŪŒŁ† Ų§Ł„Ų§Ł‚ŁˆŲ§Ł…ŪŒ مرکز'),
(134052, 106803, 'en', 'name', 'Duhok Polytechnic University'),
(134053, 106804, 'de', 'name', 'Katholische Hochschule Nordrhein-Westfalen'),
(134054, 106804, 'en', 'name', 'Catholic University of Applied Sciences of North Rhine – Westphalia'),
(134055, 106805, 'en', 'name', 'The Bedford College Group'),
(134056, 106806, 'en', 'name', 'Parul University'),
(134057, 106807, 'no_lang_code', 'name', 'Inagro (Belgium)'),
(134058, 106808, 'en', 'name', 'European School of Management and Technology'),
(134059, 106809, 'fr', 'name', 'Centre Hospitalier Universitaire d''Angers'),
(134060, 106810, 'en', 'name', 'Adera Medical Center, Adera Medical Center PLC'),
(134061, 106811, 'en', 'name', 'Flame University'),
(134062, 106812, 'no_lang_code', 'name', 'BEST - Bioenergy and Sustainable Technologies (Austria)'),
(134063, 106813, 'en', 'name', 'Netherlands Institute for Sound and Vision'),
(134064, 106813, 'nl', 'name', 'Nederlands Instituut voor Beeld en Geluid'),
(134065, 106814, 'fr', 'name', 'Ministère des Armées'),
(134066, 106815, 'pt', 'name', 'Univates, Universidade do Vale do Taquari'),
(134067, 106816, 'en', 'name', 'The Lundquist Institute'),
(134068, 106817, 'en', 'name', 'Baraka Agricultural College'),
(134069, 106818, 'en', 'name', 'Directorate for Computer & Information Science & Engineering'),
(134070, 106819, 'en', 'name', 'Diagnosis and International Adaptive Imaging'),
(134071, 106819, 'fr', 'name', 'Imagerie Adaptative Diagnostique et Interventionnelle'),
(134072, 106820, 'en', 'name', 'Center for Environmental Information Science'),
(134073, 106820, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē’°å¢ƒęƒ…å ±ē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(134074, 106821, 'en', 'name', 'National Institute for Nuclear Physics, Rome Tor Vergata'),
(134075, 106821, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Roma Tor Vergata'),
(134076, 106822, 'en', 'name', 'Beijing Institute of Petrochemical Technology'),
(134077, 106822, 'zh', 'name', 'åŒ—äŗ¬ēŸ³ę²¹åŒ–å·„å­¦é™¢'),
(134078, 106823, 'es', 'name', 'Colegio Oficial de FarmacƩuticos de Bizkaia'),
(134079, 106823, 'eu', 'name', 'Bizkaiko Farmazilarien Elkargo Ofiziala, COFBizkaia'),
(134080, 106824, 'en', 'name', 'Teikyo University of Science'),
(134081, 106824, 'ja', 'name', 'åøäŗ¬ē§‘å­¦å¤§å­¦'),
(134082, 106825, 'en', 'name', 'Research Institute on Building Cost'),
(134083, 106825, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰ć‚³ć‚¹ćƒˆē®”ē†ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę‰€'),
(134084, 106826, 'en', 'name', 'Center for Theoretical Physics and Mathematics'),
(134085, 106826, 'es', 'name', 'Centro de Física Teórica y MatemÔticas'),
(134086, 106827, 'en', 'name', 'Japan Health Promotion and Fitness Foundation'),
(134087, 106827, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå„åŗ·ćƒ»ä½“åŠ›ć„ćć‚Šäŗ‹ę„­č²”å›£'),
(134088, 106828, 'en', 'name', 'Hanken School of Economics'),
(134089, 106828, 'sv', 'name', 'Hanken Svenska handelshƶgskolan'),
(134090, 106829, 'en', 'name', 'Japanese Society of Allergology'),
(134091, 106829, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ¬ćƒ«ć‚®ćƒ¼å­¦ä¼š'),
(134092, 106830, 'en', 'name', 'Tarleton State University'),
(134093, 106830, 'fr', 'name', 'UniversitĆ© d''Ɖtat de tarleton'),
(134094, 106831, 'en', 'name', 'Mindanao State University'),
(134095, 106831, 'tl', 'name', 'Pamantasang Mindanao'),
(134096, 106832, 'en', 'name', 'Institute of Local Finance'),
(134097, 106832, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°ę–¹č²”å‹™å”ä¼š'),
(134098, 106833, 'en', 'name', 'Shanxi Medical University'),
(134099, 106833, 'zh', 'name', 'å±±č„æåŒ»ē§‘å¤§å­¦'),
(134100, 106834, 'en', 'name', 'Ministry of the Environment'),
(134101, 106834, 'sv', 'name', 'Miljƶdepartementet'),
(134102, 106835, 'en', 'name', 'Polish Naval Academy'),
(134103, 106835, 'pl', 'name', 'Akademia Marynarki Wojennej im. Bohaterów Westerplatte'),
(134104, 106836, 'pt', 'name', 'Centro de MatemƔtica'),
(134105, 106837, 'en', 'name', 'Shandong Sport University'),
(134106, 106837, 'zh', 'name', 'å±±äøœä½“č‚²å­¦é™¢'),
(134107, 106838, 'en', 'name', 'Alexander von Humboldt Biological Resources Research Institute'),
(134108, 106838, 'es', 'name', 'Instituto de Investigación de Recursos Biológicos Alexander von Humboldt'),
(134109, 106839, 'en', 'name', 'Lucian Blaga University of Sibiu'),
(134110, 106839, 'hu', 'name', 'Lucian Blaga Egyetem'),
(134111, 106839, 'ro', 'name', 'Universitatea Lucian Blaga din Sibiu'),
(134112, 106840, 'en', 'name', 'Optoelectronic Industry and Technology Development Association'),
(134113, 106840, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…‰ē”£ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(134114, 106841, 'en', 'name', 'Shinbeppu Hospital'),
(134115, 106841, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šę–°åˆ„åŗœē—…é™¢'),
(134116, 106842, 'en', 'name', 'Hokkaido Research Organization'),
(134117, 106842, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŒ—ęµ·é“ē«‹ē·åˆē ”ē©¶ę©Ÿę§‹'),
(134118, 106843, 'en', 'name', 'Eisei Hospital'),
(134119, 106843, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę°øē”Ÿä¼šę°øē”Ÿē—…é™¢'),
(134120, 106844, 'en', 'name', 'Presidency of the Republic of Türkiye, Directorate of State Archives'),
(134121, 106844, 'tr', 'name', 'T.C. Cumhurbaşkanlığı, Devlet Arşivleri Başkanlığı, Türkiye Cumhuriyeti Cumhurbaşkanlığı Devlet Arşivleri Başkanlığı'),
(134122, 106845, 'en', 'name', 'Mental Health Research Institute, Tomsk National Research Medical Center, Russian Academy of Sciences'),
(134123, 106845, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ "Томский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ меГицинский центр Российской акаГемии наук" ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ психического Š·Š“Š¾Ń€Š¾Š²ŃŒŃ'),
(134124, 106846, 'fr', 'name', 'Territoires'),
(134125, 106847, 'en', 'name', 'The City Planning Institute of Japan'),
(134126, 106847, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬éƒ½åø‚čØˆē”»å­¦ä¼š'),
(134127, 106848, 'en', 'name', 'The Society of Polymer Science, Japan'),
(134128, 106848, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗ'),
(134129, 106849, 'en', 'name', 'Q University'),
(134130, 106849, 'kk', 'name', 'ŅšŠ°Š¹Š½Š°Ń€ ŠŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(134131, 106849, 'ru', 'name', 'коллеГжа Ā«ŠšŠ°Š¹Š½Š°Ń€Ā»'),
(134132, 106850, 'en', 'name', 'KTH Royal Institute of Technology'),
(134133, 106850, 'fi', 'name', 'Kuninkaallinen teknillinen korkeakoulu'),
(134134, 106850, 'sv', 'name', 'Kungliga Tekniska hƶgskolan'),
(134135, 106851, 'en', 'name', 'University of Technology Malaysia'),
(134136, 106851, 'ms', 'name', 'Universiti Teknologi Malaysia'),
(134137, 106851, 'zh', 'name', 'é©¬ę„č„æäŗšå·„č‰ŗå¤§å­¦'),
(134138, 106852, 'en', 'name', 'University of Kuala Lumpur'),
(134139, 106852, 'ms', 'name', 'Universiti Kuala Lumpur'),
(134140, 106852, 'zh', 'name', '吉隆坔大学'),
(134141, 106853, 'it', 'name', 'Arcispedale Sant''Anna'),
(134142, 106854, 'en', 'name', 'Science Foundation Ireland'),
(134143, 106854, 'ga', 'name', 'FondĆŗireacht EolaĆ­ochta Ɖireann'),
(134144, 106855, 'no_lang_code', 'name', 'SolanoTech (Ireland)'),
(134145, 106856, 'en', 'name', 'Northern Arizona University'),
(134146, 106857, 'en', 'name', 'Doğuş University'),
(134147, 106857, 'tr', 'name', 'Doğuş Üniversitesi'),
(134148, 106858, 'en', 'name', 'IMPACT School of Architecture'),
(134149, 106859, 'en', 'name', 'Toho Gakuen College of Drama and Music'),
(134150, 106859, 'ja', 'name', 'ę”ęœ‹å­¦åœ’čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(134151, 106860, 'en', 'name', 'Molloy College'),
(134152, 106861, 'en', 'name', 'Federal University Dutse'),
(134153, 106862, 'de', 'name', 'Hochschule Niederrhein'),
(134154, 106863, 'en', 'name', 'FPInnovations'),
(134155, 106864, 'en', 'name', 'Polytechnic University of the Gulf of Mexico'),
(134156, 106864, 'es', 'name', 'Universidad PolitƩcnica del Golfo de MƩxico'),
(134157, 106865, 'en', 'name', 'Tokyo Metropolitan Leather Technology Center'),
(134158, 106865, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ēš®é©ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(134159, 106866, 'bn', 'name', 'ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦øą¦¾ą¦—ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(134160, 106866, 'en', 'name', 'Vidyasagar University'),
(134161, 106867, 'en', 'name', 'Yasuda Women''s College'),
(134162, 106867, 'ja', 'name', 'å®‰ē”°å„³å­ēŸ­ęœŸå¤§å­¦'),
(134163, 106868, 'en', 'name', 'Hara Genitourinary Hospital'),
(134164, 106868, 'ja', 'name', 'åŽŸę³Œå°æå™Øē§‘ē—…é™¢'),
(134165, 106869, 'en', 'name', 'Hokkaido Regional Research'),
(134166, 106869, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ćƒŖćƒ¼ć‚øćƒ§ćƒŠćƒ«ćƒŖć‚µćƒ¼ćƒ'),
(134167, 106870, 'en', 'name', 'Fukuoka Mirai Hospital'),
(134168, 106870, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē›øē”Ÿä¼šē¦å²”ćæć‚‰ć„ē—…é™¢'),
(134169, 106871, 'en', 'name', 'Ibaraki Agriculture Institute'),
(134170, 106871, 'ja', 'name', 'čŒØåŸŽēœŒč¾²ę„­ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(134171, 106872, 'cs', 'name', 'MezinÔrodní centrum klinického výzkumu ve Fakultní nemocnici u sv. Anny'),
(134172, 106872, 'en', 'name', 'International Clinical Research Center, St. Anne''s University Hospital Brno'),
(134173, 106873, 'en', 'name', 'Malawi University of Science and Technology'),
(134174, 106874, 'en', 'name', 'University of Bari Aldo Moro'),
(134175, 106874, 'fr', 'name', 'UniversitƩ de bari'),
(134176, 106874, 'it', 'name', 'UniversitĆ  degli Studi di Bari Aldo Moro'),
(134177, 106875, 'en', 'name', 'Endocrine & Metabolism Research Institute'),
(134178, 106875, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ų¹Ł„ŁˆŁ… ŲŗŲÆŲÆ و Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŲ³Ł…'),
(134179, 106876, 'nl', 'name', 'Medisch Centrum Leeuwarden'),
(134180, 106877, 'en', 'name', 'Sari Agricultural Sciences and Natural Resources University'),
(134181, 106877, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… کؓاورزی و منابع طبیعی ساری'),
(134182, 106878, 'en', 'name', 'Hino Municipal Hospital'),
(134183, 106878, 'ja', 'name', 'ę—„é‡Žåø‚ē«‹ē—…é™¢'),
(134184, 106879, 'es', 'name', 'Hospital Infantil Universitario Niño Jesús'),
(134185, 106880, 'en', 'name', 'Endocrinology and Metabolism Population Sciences Institute'),
(134186, 106880, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… Ų¬Ł…Ų¹ŪŒŲŖŪŒ ŲŗŲÆŲÆ'),
(134187, 106881, 'no_lang_code', 'name', 'Repsol (Spain)'),
(134188, 106882, 'es', 'name', 'Universidad Nacional del Sur'),
(134189, 106883, 'bg', 'name', 'Технически ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Габрово'),
(134190, 106883, 'en', 'name', 'Technical University of Gabrovo'),
(134191, 106884, 'no_lang_code', 'name', 'Alvernia University'),
(134192, 106885, 'en', 'name', 'Saint Aloysius Gonzaga National University'),
(134193, 106885, 'es', 'name', 'Universidad Nacional San Luis Gonzaga'),
(134194, 106886, 'es', 'name', 'Sociedad EspaƱola de Neumologƭa y Cirugƭa TorƔcica'),
(134195, 106887, 'en', 'name', 'Tokiwa Junior College'),
(134196, 106887, 'ja', 'name', '常磐短期大学'),
(134197, 106888, 'en', 'name', 'Science and Technology Promotion Foundation of Ibaraki'),
(134198, 106888, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗčŒØåŸŽēœŒē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(134199, 106889, 'en', 'name', 'Edge Hill University'),
(134200, 106890, 'en', 'name', 'North Eastern Industrial Research Center of Shiga Prefecture'),
(134201, 106890, 'ja', 'name', 'ę»‹č³€ēœŒę±åŒ—éƒØå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(134202, 106891, 'en', 'name', 'Shiraz University'),
(134203, 106891, 'fa', 'name', 'دانؓگاه ؓیراز'),
(134204, 106892, 'de', 'name', 'Ordensklinikum Linz Barmherzige Schwestern'),
(134205, 106893, 'en', 'name', 'National Institute of Research and Development for Biological Sciences'),
(134206, 106894, 'en', 'name', 'University School for Advanced Studies - IUSS Pavia'),
(134207, 106894, 'it', 'name', 'Istituto Universitario di Studi Superiori di Pavia'),
(134208, 106895, 'en', 'name', 'California State University Los Angeles'),
(134209, 106895, 'es', 'name', 'Universidad Estatal de California, Los Ɓngeles'),
(134210, 106895, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  los angeles'),
(134211, 106896, 'en', 'name', 'Hokkaido Cancer Society'),
(134212, 106896, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“åÆ¾ćŒć‚“å”ä¼š'),
(134213, 106897, 'en', 'name', 'University of Tsukuba'),
(134214, 106897, 'ja', 'name', '筑波大学'),
(134215, 106898, 'en', 'name', 'Swedish Agency for Economic and Regional Growth'),
(134216, 106899, 'en', 'name', 'Cesar Vallejo University'),
(134217, 106899, 'es', 'name', 'Universidad CƩsar Vallejo'),
(134218, 106900, 'en', 'name', 'Directorate for Mathematical & Physical Sciences'),
(134219, 106901, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³ المنار'),
(134220, 106901, 'en', 'name', 'Tunis El Manar University'),
(134221, 106901, 'fr', 'name', 'UniversitƩ de tunis - el manar'),
(134222, 106902, 'de', 'name', 'Akademie der bildenden Künste Wien'),
(134223, 106902, 'en', 'name', 'Academy of Fine Arts Vienna'),
(134224, 106903, 'en', 'name', 'Saga Forestry Research Laboratory'),
(134225, 106903, 'ja', 'name', 'ä½č³€ēœŒęž—ę„­č©¦éØ“å “'),
(134226, 106904, 'en', 'name', 'Albright College'),
(134227, 106905, 'es', 'name', 'Universidad del Salvador'),
(134228, 106905, 'fr', 'name', 'UniversitƩ del salvador'),
(134229, 106906, 'en', 'name', 'Institute of Materials Research of the Slovak Academy of Sciences'),
(134230, 106906, 'sk', 'name', 'Ústav materiÔlového výskumu SlovenskÔ akadémia vied'),
(134231, 106907, 'en', 'name', 'International University of La Rioja'),
(134232, 106907, 'es', 'name', 'Universidad Internacional De La Rioja'),
(134233, 106908, 'en', 'name', 'Salisbury University'),
(134234, 106909, 'en', 'name', 'World Bladder Cancer Patient Coalition, World Bladder Cancer Patient Coalition aisbl'),
(134235, 106910, 'fr', 'name', 'Laboratoire Navier'),
(134236, 106911, 'en', 'name', 'University of San Francisco'),
(134237, 106911, 'es', 'name', 'Universidad de San Francisco'),
(134238, 106911, 'fr', 'name', 'UniversitƩ de san francisco'),
(134239, 106912, 'en', 'name', 'Mexico Autonomous Institute of Technology'),
(134240, 106912, 'es', 'name', 'Instituto Tecnológico Autónomo de México'),
(134241, 106913, 'en', 'name', 'Military University Institute'),
(134242, 106913, 'pt', 'name', 'Instituto UniversitƔrio Militar'),
(134243, 106914, 'pt', 'name', 'Secretaria Regional da Saúde e Segurança Social'),
(134244, 106915, 'fr', 'name', 'Agro-Biotechnologies Industrielles'),
(134245, 106916, 'es', 'name', 'Universidad Estatal Amazónica'),
(134246, 106917, 'en', 'name', 'University of Quintana Roo'),
(134247, 106917, 'es', 'name', 'Universidad de Quintana Roo'),
(134248, 106918, 'en', 'name', 'National Library of China'),
(134249, 106918, 'zh', 'name', '中国国家图书馆'),
(134250, 106919, 'fr', 'name', 'DƩpartement GƩnƩtique Animale'),
(134251, 106920, 'en', 'name', 'Kagawa Prefectural Agricultural Experiment Station'),
(134252, 106920, 'ja', 'name', 'é¦™å·ēœŒč¾²ę„­č©¦éØ“å “'),
(134253, 106921, 'en', 'name', 'College of Wooster'),
(134254, 106922, 'en', 'name', 'Centre for Digital Humanities'),
(134255, 106923, 'en', 'name', 'American Institute of Mathematics'),
(134256, 106924, 'en', 'name', 'The Japan Society of Hepatology'),
(134257, 106924, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‚č‡“å­¦ä¼š'),
(134258, 106925, 'ca', 'name', 'Hospital ClĆ­nic de Barcelona'),
(134259, 106926, 'en', 'name', 'Panca Bhakti University'),
(134260, 106926, 'id', 'name', 'Universitas Panca Bhakti'),
(134261, 106927, 'pt', 'name', 'Instituto de Estudos Avançados em Catolicismo e Globalização'),
(134262, 106928, 'en', 'name', 'Jiyugaoka Sanno College'),
(134263, 106928, 'ja', 'name', 'č‡Ŗē”±ćŒäø˜ē”£čƒ½ēŸ­ęœŸå¤§å­¦'),
(134264, 106929, 'es', 'name', 'Universidad PolitƩcnica de Puebla'),
(134265, 106930, 'en', 'name', 'Japan Racing Horse Association'),
(134266, 106930, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē«¶čµ°é¦¬å”ä¼š'),
(134267, 106931, 'pt', 'name', 'Hospital-Escola da Universidade Fernando Pessoa'),
(134268, 106932, 'de', 'name', 'ai-quanton GmbH'),
(134269, 106933, 'en', 'name', 'Mt. Cuba Astronomical Observatory, Mt. Cuba Astronomical Observatory, Inc.'),
(134270, 106934, 'no_lang_code', 'name', 'Natera (United States)'),
(134271, 106935, 'en', 'name', 'Kyrgyz National University'),
(134272, 106935, 'ky', 'name', 'Š–ŃƒŃŃƒŠæ Баласагын атынГагы ŠšŃ‹Ń€Š³Ń‹Š· Š£Š»ŃƒŃ‚Ń‚ŃƒŠŗ Университети'),
(134273, 106935, 'ru', 'name', 'ŠšŠøŃ€Š³ŠøŠ·ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š–ŃƒŃŃƒŠæŠ° Баласагына'),
(134274, 106935, 'uz', 'name', 'Qirgʻiz milliy universiteti'),
(134275, 106936, 'de', 'name', 'Universität für künstlerische und industrielle Gestaltung Linz'),
(134276, 106936, 'en', 'name', 'University of Arts and Industrial Design Linz'),
(134277, 106937, 'en', 'name', 'Danish Institute for International Studies'),
(134278, 106938, 'en', 'name', 'Japanese Society of Medical Instrumentation'),
(134279, 106938, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»ē™‚ę©Ÿå™Øå­¦ä¼š'),
(134280, 106939, 'fr', 'name', 'Laboratoire de Physique et Chimie ThƩoriques'),
(134281, 106940, 'en', 'name', 'Bowen University'),
(134282, 106941, 'en', 'name', 'Hungarian National Bank'),
(134283, 106941, 'hu', 'name', 'Magyar Nemzeti Bank'),
(134284, 106942, 'de', 'name', 'UniversitƤt Siegen'),
(134285, 106942, 'en', 'name', 'University of Siegen'),
(134286, 106943, 'en', 'name', 'La Salle University Northwest'),
(134287, 106943, 'es', 'name', 'Universidad La Salle Noroeste'),
(134288, 106944, 'en', 'name', 'Samarkand State University named after Sharof Rashidov'),
(134289, 106944, 'ru', 'name', 'ДамарканГский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Шарофа РашиГова'),
(134290, 106944, 'uz', 'name', 'Sharof Rashidov nomidagi Samarqand davlat universiteti'),
(134291, 106945, 'ca', 'name', 'Universitat de Roma La Sapienza'),
(134292, 106945, 'en', 'name', 'Sapienza University of Rome'),
(134293, 106945, 'fr', 'name', 'UniversitƩ La Sapienza de Rome'),
(134294, 106945, 'it', 'name', 'Sapienza – UniversitĆ  di Roma'),
(134295, 106945, 'sl', 'name', 'Rimska Univerza La Sapienza'),
(134296, 106946, 'en', 'name', 'University of Georgia'),
(134297, 106947, 'en', 'name', 'Munakata Suikokai General Hospital'),
(134298, 106947, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę°“å…‰ä¼šå®—åƒę°“å…‰ä¼šē·åˆē—…é™¢'),
(134299, 106948, 'en', 'name', 'International Laboratory on Learning Systems'),
(134300, 106949, 'en', 'name', 'AKO City Hospital'),
(134301, 106949, 'ja', 'name', '赤穂市民病院'),
(134302, 106950, 'bn', 'name', 'ą¦•ą§ą¦®ą¦æą¦²ą§ą¦²ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(134303, 106950, 'en', 'name', 'Comilla University'),
(134304, 106951, 'en', 'name', 'Samsun University'),
(134305, 106951, 'tr', 'name', 'Samsun Üniversitesi'),
(134306, 106952, 'en', 'name', 'Institute of Environmental Protection'),
(134307, 106953, 'pt', 'name', 'Centro de Investigação Marinha e Ambiental'),
(134308, 106954, 'en', 'name', 'Tsurugaya Hospital'),
(134309, 106954, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗé¶“č°·ä¼šé¶“č°·ē—…é™¢'),
(134310, 106955, 'en', 'name', 'Kusatsu General Hospital'),
(134311, 106955, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗčŖ å…‰ä¼šč‰ę“„ē·åˆē—…é™¢'),
(134312, 106956, 'en', 'name', 'Microbial Chemistry Research Foundation'),
(134313, 106956, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¾®ē”Ÿē‰©åŒ–å­¦ē ”ē©¶ä¼š'),
(134314, 106957, 'en', 'name', 'Northwell Health'),
(134315, 106958, 'en', 'name', 'Bialystok University of Technology'),
(134316, 106958, 'pl', 'name', 'Politechnika Białostocka'),
(134317, 106959, 'en', 'name', 'Fukui Prefectural University'),
(134318, 106959, 'ja', 'name', 'ē¦äŗ•ēœŒē«‹å¤§å­¦'),
(134319, 106960, 'en', 'name', 'Kansai Occupational Health Association'),
(134320, 106960, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æåŠ“åƒäæå„å”ä¼š'),
(134321, 106961, 'en', 'name', 'University of Central Missouri'),
(134322, 106962, 'en', 'name', 'University College Odisee'),
(134323, 106963, 'en', 'name', 'Miyagi Prefecture Fisheries Technology Institute'),
(134324, 106963, 'ja', 'name', 'å®®åŸŽēœŒę°“ē”£ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(134325, 106964, 'en', 'name', 'The Robotics Society of Japan'),
(134326, 106964, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ­ćƒœćƒƒćƒˆå­¦ä¼š'),
(134327, 106965, 'en', 'name', 'Kenya Medical Training College'),
(134328, 106966, 'en', 'name', 'ToxStrategies LLC, ToxStrategies LLC (United States)'),
(134329, 106967, 'en', 'name', 'Office of Inspector General'),
(134330, 106968, 'en', 'name', 'Kavli Institute for the Physics and Mathematics of the Universe'),
(134331, 106968, 'ja', 'name', 'ć‚«ćƒ–ćƒŖę•°ē‰©é€£ęŗå®‡å®™ē ”ē©¶ę©Ÿę§‹'),
(134332, 106969, 'en', 'name', 'UL Institute of Literature, Folklore and Art'),
(134333, 106969, 'lv', 'name', 'LU Literatūras, Folkloras Un Mākslas Instituts'),
(134334, 106970, 'en', 'name', 'AmirAlam Hospital'),
(134335, 106970, 'fa', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł†ŪŒ Ų§Ł…ŪŒŲ± اعلم'),
(134336, 106971, 'en', 'name', 'Biliran Province State University'),
(134337, 106972, 'pt', 'name', 'Centro de Investigação Desenvolvimento e Inovação em Turismo Leiria'),
(134338, 106973, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عفت'),
(134339, 106973, 'en', 'name', 'Effat University'),
(134340, 106974, 'en', 'name', 'Agronomie'),
(134341, 106975, 'en', 'name', 'Teikyo Junior College'),
(134342, 106975, 'ja', 'name', 'åøäŗ¬ēŸ­ęœŸå¤§å­¦'),
(134343, 106976, 'it', 'name', 'Azienda Ospedaliero-Universitaria Careggi'),
(134344, 106977, 'en', 'name', 'Committee on Data of the International Science Council'),
(134345, 106978, 'fr', 'name', 'Hématopoïèse normale et pathologique : Emergence, environnement et recherche translationnelle'),
(134346, 106979, 'en', 'name', 'Air Force Installation and Mission Support Center'),
(134347, 106980, 'en', 'name', 'Fisheries Infrastructure Development Center'),
(134348, 106980, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę°“ē”£åœŸęœØå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(134349, 106981, 'en', 'name', 'Anhui Business College'),
(134350, 106982, 'en', 'name', 'Consortium for Lithium Ion Battery Technology and Evaluation Center'),
(134351, 106982, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆćƒŖćƒć‚¦ćƒ ć‚¤ć‚Ŗćƒ³é›»ę± ęę–™č©•ä¾”ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(134352, 106983, 'en', 'name', 'Lala Lajpat Rai University of Veterinary and Animal Sciences'),
(134353, 106983, 'hi', 'name', 'लाला लाजपतराय ą¤Ŗą¤¶ą„ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤ą¤µą¤‚ ą¤Ŗą¤¶ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(134354, 106983, 'ta', 'name', 'லாலா ą®²ą®œą®Ŗą®¤ą®æą®°ą®¾ą®ÆąÆ ą®•ą®¾ą®²ąÆą®Øą®ŸąÆˆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®µą®æą®²ą®™ąÆą®•ą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(134355, 106984, 'en', 'name', 'Institute of Slovak Literature of the Slovak Academy of Sciences'),
(134356, 106984, 'sk', 'name', 'Ústav svetovej literatúry SlovenskÔ akadémia vied'),
(134357, 106985, 'en', 'name', 'Research Institute for Local Government'),
(134358, 106985, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°ę–¹č‡Ŗę²»ē ”ē©¶ę©Ÿę§‹'),
(134359, 106986, 'en', 'name', 'Dhirubhai Ambani Institute of Information and Communication Technology'),
(134360, 106986, 'gu', 'name', 'ધીરુભાઇ અંબાણી ąŖ‡ąŖØą«ąŖøą«ąŖŸąŖæąŖŸą«ąŖÆą«ąŖŸ ąŖ“ąŖ« ąŖ‡ąŖØą«ąŖ«ą«‹ąŖ°ą«ąŖ®ą«‡ąŖ¶ąŖØ ąŖąŖØą«ąŖ” ąŖ•ąŖ®ą«ąŖÆą«ąŖØąŖæąŖ•ą«‡ąŖ¶ąŖØ ąŖŸą«‡ąŖ•ą«ąŖØą«‹ąŖ²ą«‹ąŖœą«€'),
(134361, 106987, 'en', 'name', 'Maria SS. Assunta University of Rome'),
(134362, 106987, 'it', 'name', 'Libera UniversitĆ  Maria SS. Assunta, Libera UniversitĆ  Maria Santissima Assunta'),
(134363, 106988, 'en', 'name', 'School for Advanced Studies in the Social Sciences'),
(134364, 106988, 'fr', 'name', 'Ɖcole des hautes Ć©tudes en sciences sociales'),
(134365, 106989, 'ca', 'name', 'Esade, Escola Superior d''Administració i Direcció d''Empreses'),
(134366, 106990, 'en', 'name', 'National Sanatorium Suruga'),
(134367, 106990, 'ja', 'name', 'å›½ē«‹é§æę²³ē™‚é¤Šę‰€'),
(134368, 106991, 'en', 'name', 'Newman Graduate School'),
(134369, 106991, 'es', 'name', 'Escuela de Posgrado Newman'),
(134370, 106992, 'en', 'name', 'Foothill-De Anza Community College District'),
(134371, 106993, 'en', 'name', 'Brazilian Space Agency'),
(134372, 106993, 'es', 'name', 'Agencia Espacial BrasileƱa'),
(134373, 106993, 'fr', 'name', 'Agence spatiale brƩsilienne'),
(134374, 106993, 'pt', 'name', 'AgĆŖncia Espacial Brasileira'),
(134375, 106994, 'en', 'name', 'Suwa University of Science'),
(134376, 106994, 'ja', 'name', 'å…¬ē«‹č«čØŖę±äŗ¬ē†ē§‘å¤§å­¦'),
(134377, 106995, 'en', 'name', 'Dr. N.G.P. Institute of Technology'),
(134378, 106996, 'en', 'name', 'Daido Hospital'),
(134379, 106996, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå®ę½¤ä¼šå¤§åŒē—…é™¢'),
(134380, 106997, 'pt', 'name', 'Instituto de Investigação e Desenvolvimento Tecnológico para a Construção Energia Ambiente e Sustentabilidade'),
(134381, 106998, 'en', 'name', 'Peoples'' Friendship University of Russia'),
(134382, 106998, 'ru', 'name', 'Российский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š“Ń€ŃƒŠ¶Š±Ń‹ нароГов'),
(134383, 106999, 'en', 'name', 'National Institute of Optics'),
(134384, 106999, 'it', 'name', 'Istituto Nazionale di Ottica'),
(134385, 107000, 'en', 'name', 'Kinnaird College for Women University'),
(134386, 107000, 'ur', 'name', 'Ś©Ł†ŪŒŲ¦Ų±Śˆ کالج'),
(134387, 107001, 'en', 'name', 'SCMS Group of Educational Institutions'),
(134388, 107002, 'en', 'name', 'University of Montenegro'),
(134389, 107002, 'sr', 'name', 'Универзитет Црне Горе'),
(134390, 107003, 'pt', 'name', 'Fundação Francisco Manuel dos Santos'),
(134391, 107004, 'pt', 'name', 'Sociedade Portuguesa de Dermatologia e Venereologia'),
(134392, 107005, 'en', 'name', 'Osaka Heavy Ion Therapy Center'),
(134393, 107005, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗå›½éš›ćŒć‚“ę²»ē™‚č²”å›£å¤§é˜Ŗé‡ē²’å­ē·šć‚»ćƒ³ć‚æćƒ¼'),
(134394, 107006, 'en', 'name', 'Delft University of Technology'),
(134395, 107006, 'nl', 'name', 'Technische Universiteit Delft'),
(134396, 107007, 'en', 'name', 'United States Air Force Research Laboratory'),
(134397, 107008, 'en', 'name', 'Kyoto Tachibana University'),
(134398, 107008, 'ja', 'name', '京都橘大学'),
(134399, 107009, 'hi', 'name', 'ą¤°ą„ą¤¹ą„‡ą¤²ą¤–ą¤£ą„ą¤” ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(134400, 107009, 'no_lang_code', 'name', 'M.J.P. Rohilkhand University'),
(134401, 107009, 'ta', 'name', 'ą®®ą®•ą®¾ą®¤ąÆą®®ą®¾ ą®œąÆ‹ą®¤ą®æą®Ŗą®¾ பூலே ą®°ąÆ‹ą®•ą®æą®²ąÆą®•ą®ØąÆą®¤ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(134402, 107010, 'en', 'name', 'Boise State University'),
(134403, 107010, 'es', 'name', 'Universidad Estatal de Boise'),
(134404, 107010, 'fr', 'name', 'UniversitĆ© d''Ɖtat de boise'),
(134405, 107011, 'en', 'name', 'Kashiwazaki General Hospital and Medical Center'),
(134406, 107011, 'ja', 'name', 'JAę–°ę½ŸåŽšē”Ÿé€£ęŸå“Žē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(134407, 107012, 'en', 'name', 'Yokohama Asahi Chuo General Hospital'),
(134408, 107012, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę˜ŽčŠ³ä¼šęØŖęµœę—­äø­å¤®ē·åˆē—…é™¢'),
(134409, 107013, 'en', 'name', 'University of Sahiwal'),
(134410, 107014, 'en', 'name', 'Statistics Norway'),
(134411, 107015, 'en', 'name', 'Institute of Human Virology'),
(134412, 107016, 'en', 'name', 'Harare Institute of Technology'),
(134413, 107017, 'no_lang_code', 'name', 'Grifols (Spain)'),
(134414, 107018, 'en', 'name', 'Warmadewa University'),
(134415, 107018, 'id', 'name', 'Universitas Warmadewa'),
(134416, 107019, 'en', 'name', 'Inokashira Hospital'),
(134417, 107019, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäŗ•ä¹‹é ­ē—…é™¢'),
(134418, 107020, 'en', 'name', 'Fujita General Hospital'),
(134419, 107020, 'ja', 'name', 'å…¬ē«‹č—¤ē”°ē·åˆē—…é™¢'),
(134420, 107021, 'en', 'name', 'Kyushu Dental Society'),
(134421, 107021, 'ja', 'name', 'ä¹å·žę­Æē§‘å­¦ä¼š'),
(134422, 107022, 'en', 'name', 'Hamedan University of Medical Sciences'),
(134423, 107022, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ استان همدان'),
(134424, 107023, 'en', 'name', 'Chukyo Eye Clinic'),
(134425, 107023, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗć„ć•ćŖä¼šäø­äŗ¬ēœ¼ē§‘'),
(134426, 107024, 'en', 'name', 'Alaska Department of Natural Resources'),
(134427, 107025, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الحلة'),
(134428, 107025, 'en', 'name', 'University of Hillah'),
(134429, 107026, 'fr', 'name', 'JUNIA'),
(134430, 107027, 'en', 'name', 'MwAPATA Institute'),
(134431, 107028, 'en', 'name', 'New York Public Library'),
(134432, 107028, 'es', 'name', 'Biblioteca PĆŗblica de Nueva York'),
(134433, 107029, 'en', 'name', 'Polytechnic University of Hauts-de-France'),
(134434, 107029, 'fr', 'name', 'UniversitƩ Polytechnique Hauts-de-France'),
(134435, 107030, 'en', 'name', 'National Opinion Research Center'),
(134436, 107031, 'en', 'name', 'Sri Eshwar College of Engineering'),
(134437, 107032, 'ca', 'name', 'Parc Sanitari Sant Joan de DƩu'),
(134438, 107033, 'en', 'name', 'Saga Prefectural Government'),
(134439, 107033, 'ja', 'name', 'ä½č³€ēœŒåŗ'),
(134440, 107034, 'en', 'name', 'ICN Business School'),
(134441, 107035, 'en', 'name', 'CARE International Japan'),
(134442, 107035, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚±ć‚¢ćƒ»ć‚¤ćƒ³ć‚æćƒ¼ćƒŠć‚·ćƒ§ćƒŠćƒ«ć‚øćƒ£ćƒ‘ćƒ³'),
(134443, 107036, 'en', 'name', 'Japan Endocrine Society'),
(134444, 107036, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†…åˆ†ę³Œå­¦ä¼š'),
(134445, 107037, 'en', 'name', 'Sainokuni Higashiomiya Medical Center'),
(134446, 107037, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å”å‹ä¼šå½©ć®å›½ę±å¤§å®®ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(134447, 107038, 'pt', 'name', 'Instituto Federal Catarinense'),
(134448, 107039, 'en', 'name', 'Kansai Airport Research Institute'),
(134449, 107039, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æē©ŗęøÆčŖæęŸ»ä¼š'),
(134450, 107040, 'en', 'name', 'African Institute for Mathematical Sciences'),
(134451, 107041, 'en', 'name', 'Writtle University College'),
(134452, 107042, 'nl', 'name', 'De Nederlandsche Bank'),
(134453, 107043, 'en', 'name', 'Bethel University'),
(134454, 107044, 'en', 'name', 'Tsushima City Hospital'),
(134455, 107044, 'ja', 'name', '擄島市民病院'),
(134456, 107045, 'en', 'name', 'Jenderal Soedirman University'),
(134457, 107045, 'id', 'name', 'Universitas Jenderal Soedirman'),
(134458, 107046, 'en', 'name', 'State Biotechnological University'),
(134459, 107046, 'uk', 'name', 'Державний біотехнологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(134460, 107047, 'bg', 'name', 'Дтопанска Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ā€žŠ”. А. Ценов'),
(134461, 107047, 'en', 'name', 'D. A. Tsenov Academy of Economics'),
(134462, 107048, 'en', 'name', 'Environmental Management And Technology Center'),
(134463, 107048, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æē’°å¢ƒē®”ē†ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(134464, 107049, 'pt', 'name', 'Centro de Estudos IbƩricos'),
(134465, 107050, 'id', 'name', 'Politeknik Negeri Banjarmasin'),
(134466, 107051, 'en', 'name', 'Arka Jain University'),
(134467, 107051, 'hi', 'name', 'आरका ą¤œą„ˆą¤Ø ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(134468, 107052, 'en', 'name', 'Petersburg State Transport University'),
(134469, 107052, 'ru', 'name', 'ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠæŃƒŃ‚ŠµŠ¹ ŃŠ¾Š¾Š±Ń‰ŠµŠ½ŠøŃ'),
(134470, 107053, 'en', 'name', 'Enverga University'),
(134471, 107054, 'de', 'name', 'MontanuniversitƤt Leoben'),
(134472, 107054, 'sl', 'name', 'Univerza v Leobnu'),
(134473, 107055, 'en', 'name', 'Okinawa Prefectural Sea Farming Center'),
(134474, 107055, 'ja', 'name', 'ę²–ēø„ēœŒę ½åŸ¹ę¼ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(134475, 107056, 'en', 'name', 'Mathematical Institute of the Slovak Academy of Sciences'),
(134476, 107056, 'sk', 'name', 'Matematický ústav Slovenskej akadémie vied'),
(134477, 107057, 'en', 'name', 'University of Okara'),
(134478, 107057, 'ur', 'name', 'جامعہ Ų§ŁˆŚ©Ų§Ś‘Ū'),
(134479, 107058, 'en', 'name', 'Siberian Branch of the Russian Academy of Sciences'),
(134480, 107058, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ космофизических исслеГований Šø Š°ŃŃ€Š¾Š½Š¾Š¼ŠøŠø им. Š®.Š“.Шафера Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(134481, 107059, 'en', 'name', 'Control System Security Center'),
(134482, 107059, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆåˆ¶å¾”ć‚·ć‚¹ćƒ†ćƒ ć‚»ć‚­ćƒ„ćƒŖćƒ†ć‚£ć‚»ćƒ³ć‚æćƒ¼'),
(134483, 107060, 'en', 'name', 'Spelman College'),
(134484, 107061, 'en', 'name', 'Farabi Hospital'),
(134485, 107061, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† فارابی'),
(134486, 107062, 'en', 'name', 'University of Jaffna'),
(134487, 107062, 'si', 'name', 'ą¶ŗą·ą¶“ą¶±ą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(134488, 107062, 'ta', 'name', 'ą®Æą®¾ą®“ąÆą®ŖąÆą®Ŗą®¾ą®£ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(134489, 107063, 'en', 'name', 'Korea National Sport University'),
(134490, 107063, 'ko', 'name', 'ķ•œźµ­ģ²“ģœ”ėŒ€ķ•™źµ'),
(134491, 107064, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦¦ą¦æą¦°ą¦¾ ą¦—ą¦¾ą¦Øą§ą¦§ą§€ ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦®ą§ą¦•ą§ą¦¤ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(134492, 107064, 'en', 'name', 'Indira Gandhi National Open University'),
(134493, 107064, 'fr', 'name', 'UniversitƩ nationale ouverte indira gandhi'),
(134494, 107064, 'hi', 'name', 'ą¤‡ą¤Øą„ą¤¦ą¤æą¤°ą¤¾ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤®ą„ą¤•ą„ą¤¤ ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(134495, 107064, 'ml', 'name', 'ą“‡ą“Øąµą“¦ą“æą“°ą“¾ą“—ą“¾ą“Øąµą“§ą“æ ą“Øą“¾ą“·ą“£ąµ½ ą““ą“Ŗąµą“Ŗąµŗ ą“Æąµ‚ą“Øą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ'),
(134496, 107064, 'ne', 'name', 'ą¤ˆą¤Øą„ą¤¦ą¤æą¤°ą¤¾ ą¤—ą¤¾ą¤Øą„ą¤§ą„€ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤–ą„ą¤²ą„ą¤²ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(134497, 107064, 'pa', 'name', 'ਇੰਦਰਾ ਗਾਂਧੀ ਨੈਸ਼ਨਲ ਓਪਨ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(134498, 107064, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®°ą®¾ ą®•ą®¾ą®ØąÆą®¤ą®æ ą®¤ąÆ‡ą®šą®æą®Æ ą®¤ą®æą®±ą®ØąÆą®¤ą®Øą®æą®²ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(134499, 107065, 'id', 'name', 'Politeknik Negeri Samarinda'),
(134500, 107066, 'en', 'name', 'Great Plains Network'),
(134501, 107067, 'en', 'name', 'Southern California Coastal Ocean Observing System'),
(134502, 107068, 'en', 'name', 'B.M.S. College of Engineering'),
(134503, 107068, 'kn', 'name', 'ಬೀ.ą²Žą²‚.ą²Žą²øą³. ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(134504, 107069, 'en', 'name', 'Nishiwaki Municipal Hospital'),
(134505, 107069, 'ja', 'name', '脿脇市立脿脇病院'),
(134506, 107070, 'en', 'name', 'Incorporated Foundation Okinawa Prefecture Environment Science Center'),
(134507, 107070, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę²–ēø„ēœŒē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(134508, 107071, 'en', 'name', 'Chandrakasem Rajabhat University'),
(134509, 107071, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøąøˆąø±ąø™ąø—ąø£ą¹€ąøąø©ąø”'),
(134510, 107072, 'en', 'name', 'Japan Association for Real Estate Sciences'),
(134511, 107072, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äøå‹•ē”£å­¦ä¼š'),
(134512, 107073, 'en', 'name', 'JAIS'),
(134513, 107073, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é€šäæ”ę•™č‚²ęŒÆčˆˆå”ä¼š'),
(134514, 107074, 'de', 'name', 'UniversitƤtsklinikum St. Pƶlten'),
(134515, 107074, 'en', 'name', 'Karl Landsteiner University Hospital St. Pƶlten');
INSERT INTO `ror_settings` VALUES
(134516, 107075, 'en', 'name', 'DeSales University'),
(134517, 107076, 'en', 'name', 'NORCE Norwegian Research Centre'),
(134518, 107077, 'id', 'name', 'Universitas Kiai Abdullah Faqih Gresik'),
(134519, 107078, 'en', 'name', 'Tsugaru General Hospital'),
(134520, 107078, 'ja', 'name', 'ć¤ćŒć‚‹ē·åˆē—…é™¢'),
(134521, 107079, 'en', 'name', 'University of Winnipeg'),
(134522, 107079, 'fr', 'name', 'UniversitƩ de winnipeg'),
(134523, 107080, 'de', 'name', 'Hochschule für Technik und Wirtschaft des Saarlandes'),
(134524, 107080, 'en', 'name', 'htw saar - University of Applied Sciences'),
(134525, 107081, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁŁ„Ų³Ų·ŁŠŁ† Ų§Ł„Ų£Ł‡Ł„ŁŠŲ©'),
(134526, 107081, 'en', 'name', 'Palestine Ahliya University'),
(134527, 107082, 'en', 'name', 'Hackney College, Hackney Community College'),
(134528, 107083, 'en', 'name', 'Institute of China and Modern Asia of the Russian Academy of Sciences'),
(134529, 107083, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠšŠøŃ‚Š°Ń Šø современной Азии Российской акаГемии наук'),
(134530, 107084, 'en', 'name', 'Evidence Based Medicine Research Center'),
(134531, 107084, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ پزؓکی Ł…ŲØŲŖŁ†ŪŒ ŲØŲ± Ų“ŁˆŲ§Ł‡ŲÆ'),
(134532, 107085, 'en', 'name', 'Norwegian Computing Center'),
(134533, 107086, 'en', 'name', 'The Japanese Society of Internal Medicine'),
(134534, 107086, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†…ē§‘å­¦ä¼š'),
(134535, 107087, 'en', 'name', 'Japan Fisheries Research and Education Agency'),
(134536, 107087, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗę°“ē”£ē ”ē©¶ćƒ»ę•™č‚²ę©Ÿę§‹'),
(134537, 107088, 'pt', 'name', 'Sociedade Portuguesa de Alergologia e Imunologia ClĆ­nica'),
(134538, 107089, 'en', 'name', 'Research Council of Lithuania'),
(134539, 107089, 'lt', 'name', 'Lietuvos Mokslo Taryba'),
(134540, 107090, 'en', 'name', 'Japan Medical Women''s Association'),
(134541, 107090, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å„³åŒ»ä¼š'),
(134542, 107091, 'en', 'name', 'Japan Network Information Center'),
(134543, 107091, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æć‚¤ćƒ³ćƒ•ć‚©ćƒ”ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(134544, 107092, 'en', 'name', 'Takaoka City Hospital'),
(134545, 107092, 'ja', 'name', 'é«˜å²”åø‚ę°‘ē—…é™¢'),
(134546, 107093, 'en', 'name', 'Astroserver, Astroserver (Hungary)'),
(134547, 107094, 'de', 'name', 'Kepler UniversitƤtsklinikum'),
(134548, 107095, 'en', 'name', 'University of Northern Iowa'),
(134549, 107095, 'fr', 'name', 'UniversitƩ d''iowa du nord'),
(134550, 107096, 'en', 'name', 'Istanbul Provincial Directorate of National Education'),
(134551, 107096, 'tr', 'name', 'İstanbul İl Millî Eğitim Müdürlüğü'),
(134552, 107097, 'es', 'name', 'Universidad Nacional de San MartĆ­n'),
(134553, 107098, 'en', 'name', 'Fukuoka Wajiro Hospital'),
(134554, 107098, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£ę± å‹ä¼šē¦å²”å’Œē™½ē—…é™¢'),
(134555, 107099, 'en', 'name', 'National College, Trichy'),
(134556, 107100, 'de', 'name', 'Europäische Organisation für die Nutzung meteorologischer Satelliten'),
(134557, 107100, 'en', 'name', 'European Organisation for the Exploitation of Meteorological Satellites'),
(134558, 107101, 'cs', 'name', 'Policejní akademie České republiky v Praze'),
(134559, 107101, 'en', 'name', 'Police Academy of the Czech Republic in Prague'),
(134560, 107102, 'no_lang_code', 'name', 'MSD (Mexico)'),
(134561, 107103, 'en', 'name', 'Atma Jaya Catholic University of Indonesia'),
(134562, 107103, 'id', 'name', 'Universitas Katolik Atma Jaya'),
(134563, 107104, 'no_lang_code', 'name', 'Bentham Science Publishers (China)'),
(134564, 107105, 'en', 'name', 'Urban Innovation Institute'),
(134565, 107105, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚ę“»åŠ›ē ”ē©¶ę‰€'),
(134566, 107106, 'en', 'name', 'Croatian Geological Survey'),
(134567, 107107, 'en', 'name', 'Veni Creator Christian University'),
(134568, 107108, 'en', 'name', 'Japan Aluminium Association'),
(134569, 107108, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ«ćƒŸćƒ‹ć‚¦ćƒ å”ä¼š'),
(134570, 107109, 'en', 'name', 'Fukushima Prefectual Center for Environmental Creation'),
(134571, 107109, 'ja', 'name', 'ē¦å³¶ēœŒē’°å¢ƒå‰µé€ ć‚»ćƒ³ć‚æćƒ¼'),
(134572, 107110, 'id', 'name', 'Universitas Dharmawangsa'),
(134573, 107111, 'en', 'name', 'Modern College of Business and Science'),
(134574, 107112, 'en', 'name', 'Thong Nhat Hospital'),
(134575, 107112, 'vi', 'name', 'Bệnh viện Thống Nhįŗ„t'),
(134576, 107113, 'pt', 'name', 'Direcção-Geral de Alimentação e VeterinÔria'),
(134577, 107114, 'de', 'name', 'PƤdagogische Hochschule Ludwigsburg'),
(134578, 107114, 'en', 'name', 'Ludwigsburg University of Education'),
(134579, 107115, 'en', 'name', 'Foundation for Detection of Early Gastric Carcinoma'),
(134580, 107115, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—©ęœŸčƒƒē™Œę¤œčØŗå”ä¼š'),
(134581, 107116, 'en', 'name', 'Yokosuka General Hospital Uwamachi'),
(134582, 107116, 'ja', 'name', 'ęØŖé ˆč³€åø‚ē«‹ć†ć‚ć¾ć”ē—…é™¢'),
(134583, 107117, 'en', 'name', 'Hiroshima Bunka Gakuen Two-Year College'),
(134584, 107117, 'ja', 'name', 'åŗƒå³¶ę–‡åŒ–å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(134585, 107118, 'no_lang_code', 'name', 'MSD (Belgium)'),
(134586, 107119, 'el', 'name', 'Ī‘ĻĪ¹ĻƒĻ„ĪæĻ„Ī­Ī»ĪµĪ¹Īæ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī˜ĪµĻƒĻƒĪ±Ī»ĪæĪ½ĪÆĪŗĪ·Ļ‚'),
(134587, 107119, 'en', 'name', 'Aristotle University of Thessaloniki'),
(134588, 107119, 'fr', 'name', 'UniversitƩ aristote de thessalonique'),
(134589, 107120, 'no_lang_code', 'name', 'PetroChina Southwest Oil and Gas Field Company (China)'),
(134590, 107120, 'zh', 'name', 'äø­å›½ēŸ³ę²¹č„æå—ę²¹ę°”ē”°åˆ†å…¬åø'),
(134591, 107121, 'en', 'name', 'Kanagawa University'),
(134592, 107121, 'ja', 'name', 'ē„žå„ˆå·å¤§å­¦'),
(134593, 107122, 'es', 'name', 'Asociación de Investigación Metalúrgica del Noroeste'),
(134594, 107123, 'no_lang_code', 'name', 'Polymer Competence Center Leoben (Austria)'),
(134595, 107124, 'en', 'name', 'Miyazaki Agricultural Research Institute'),
(134596, 107124, 'ja', 'name', 'å®®å“Žč¾²ę„­å®ŸéØ“å “'),
(134597, 107125, 'no_lang_code', 'name', 'ALBA Synchrotron (Spain)'),
(134598, 107126, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ų±Ų·ŁˆŁ…'),
(134599, 107126, 'en', 'name', 'University of Khartoum'),
(134600, 107127, 'en', 'name', 'Lawrence Berkeley National Laboratory'),
(134601, 107127, 'fr', 'name', 'Laboratoire national lawrence-berkeley'),
(134602, 107128, 'en', 'name', 'Costa Rican Department of Social Security'),
(134603, 107128, 'es', 'name', 'Caja Costarricense de Seguro Social'),
(134604, 107129, 'en', 'name', 'Hyogo Prefectural Harima-Himeji General Medical Center'),
(134605, 107129, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ćÆć‚Šć¾å§«č·Æē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(134606, 107130, 'en', 'name', 'Allegheny College'),
(134607, 107131, 'de', 'name', 'Leibniz-Institut für Analytische Wissenschaften - ISAS'),
(134608, 107131, 'en', 'name', 'Leibniz Institute for Analytical Sciences - ISAS'),
(134609, 107132, 'en', 'name', 'Johoku Hospital'),
(134610, 107132, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗēŸ³å·å‹¤åŠ“č€…åŒ»ē™‚å”ä¼šåŸŽåŒ—ē—…é™¢'),
(134611, 107133, 'en', 'name', 'IE University'),
(134612, 107133, 'es', 'name', 'IE Universidad'),
(134613, 107134, 'en', 'name', 'Turkish Radio and Television Corporation'),
(134614, 107134, 'tr', 'name', 'Türkiye Radyo ve Televizyon Kurumu'),
(134615, 107135, 'en', 'name', 'Catholic University of Eastern Africa'),
(134616, 107136, 'en', 'name', 'The Gunma Prefectural Education Center'),
(134617, 107136, 'ja', 'name', 'ē¾¤é¦¬ēœŒē·åˆę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(134618, 107137, 'id', 'name', 'Universitas Islam Negeri Antasari Banjarmasin'),
(134619, 107138, 'en', 'name', 'Heart of Worcestershire College'),
(134620, 107139, 'en', 'name', 'Seattle University'),
(134621, 107139, 'es', 'name', 'Universidad de Seattle'),
(134622, 107139, 'fr', 'name', 'UniversitƩ de seattle'),
(134623, 107140, 'en', 'name', 'George Mason University'),
(134624, 107140, 'es', 'name', 'Universidad George Mason'),
(134625, 107141, 'en', 'name', 'District University of BogotĆ”'),
(134626, 107141, 'es', 'name', 'Universidad Distrital Francisco JosƩ de Caldas'),
(134627, 107142, 'no_lang_code', 'name', 'Cramer Fish Sciences (United States)'),
(134628, 107143, 'fr', 'name', 'FƩdƩration de recherche en sciences mathƩmatiques de Paris centre'),
(134629, 107144, 'en', 'name', 'Viral Hepatitis Research Foundation of Japan'),
(134630, 107144, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¦ć‚¤ćƒ«ć‚¹č‚ē‚Žē ”ē©¶č²”å›£'),
(134631, 107145, 'en', 'name', 'Okinawa Churaumi Aquarium'),
(134632, 107145, 'ja', 'name', 'ę²–ēø„ē¾Žć‚‰ęµ·ę°“ę—é¤Ø'),
(134633, 107146, 'en', 'name', 'Yonemori Hospital'),
(134634, 107146, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē·‘ę³‰ä¼šē±³ē››ē—…é™¢'),
(134635, 107147, 'en', 'name', 'University of Kentucky'),
(134636, 107147, 'es', 'name', 'Universidad de Kentucky'),
(134637, 107147, 'fr', 'name', 'UniversitƩ du kentucky'),
(134638, 107148, 'en', 'name', 'National Veterinary Research Institute'),
(134639, 107149, 'el', 'name', 'Ī§Ī±ĻĪæĪŗĻŒĻ€ĪµĪ¹Īæ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(134640, 107149, 'en', 'name', 'Harokopio University of Athens'),
(134641, 107150, 'en', 'name', 'Federal University of SĆ£o Paulo'),
(134642, 107150, 'pt', 'name', 'Universidade Federal de SĆ£o Paulo'),
(134643, 107151, 'en', 'name', 'Japan Association For Inspection And Investigation Of Foods Including Fats And Oils'),
(134644, 107151, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ę²¹č„‚ę¤œęŸ»å”ä¼š'),
(134645, 107152, 'de', 'name', 'UniversitƤt Parma'),
(134646, 107152, 'en', 'name', 'University of Parma'),
(134647, 107152, 'fr', 'name', 'UniversitƩ de parme'),
(134648, 107152, 'it', 'name', 'UniversitĆ  degli Studi di Parma'),
(134649, 107153, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų®Ł„ŁŠŲ¬ Ų§Ł„Ų·ŲØŁŠŲ©'),
(134650, 107153, 'en', 'name', 'Gulf Medical University'),
(134651, 107154, 'en', 'name', 'Paris Institute of Technology for Life, Food and Environmental Sciences'),
(134652, 107154, 'fr', 'name', 'AgroParisTech'),
(134653, 107155, 'en', 'name', 'State Higher Normal School'),
(134654, 107155, 'es', 'name', 'Escuela Normal Superior del Estado'),
(134655, 107156, 'en', 'name', 'Riphah International University'),
(134656, 107157, 'en', 'name', 'Klintaps College of Health and Allied Sciences'),
(134657, 107158, 'en', 'name', 'Shandong Agricultural University'),
(134658, 107158, 'zh', 'name', 'å±±äøœå†œäøšå¤§å­¦'),
(134659, 107159, 'en', 'name', 'National University of Science and Technology'),
(134660, 107160, 'en', 'name', 'China Resources Cement Technology Research and Development (Guangxi) Company Limited, China Resources Cement Technology Research and Development (Guangxi) Company Limited (China)'),
(134661, 107160, 'zh', 'name', 'åŽę¶¦å»ŗęē§‘ęŠ€å®˜ē½‘'),
(134662, 107161, 'en', 'name', 'Wisconsin Geological and Natural History Survey'),
(134663, 107162, 'nl', 'name', 'VieCuri Medisch Centrum'),
(134664, 107163, 'en', 'name', 'Central University of Punjab'),
(134665, 107163, 'pa', 'name', 'ਪੰਜਾਬ ਕੇਂਦਰੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ਬਠਿੰਔਾ'),
(134666, 107164, 'el', 'name', 'Ī•Ī»Ī»Ī·Ī½Ī¹ĪŗĻŒ Ī‘Ī½ĪæĪ¹ĪŗĻ„ĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ'),
(134667, 107164, 'en', 'name', 'Hellenic Open University'),
(134668, 107164, 'fr', 'name', 'Université ouverte de grèce'),
(134669, 107165, 'cs', 'name', 'MěstskĆ” knihovna v Praze'),
(134670, 107165, 'en', 'name', 'Municipal Library of Prague'),
(134671, 107166, 'en', 'name', 'Linux Foundation'),
(134672, 107167, 'es', 'name', 'Tecnológico de Estudios Superiores de JocotitlÔn'),
(134673, 107168, 'no_lang_code', 'name', 'Software Competence Center Hagenberg (Austria)'),
(134674, 107169, 'en', 'name', 'Kyoto City Institute of Health and Environmental Sciences'),
(134675, 107169, 'ja', 'name', 'äŗ¬éƒ½åø‚č”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(134676, 107170, 'az', 'name', 'Mərmərə Universiteti'),
(134677, 107170, 'en', 'name', 'Marmara University'),
(134678, 107170, 'tr', 'name', 'Marmara Üniversitesi'),
(134679, 107171, 'en', 'name', '13 Aban Pharmacy'),
(134680, 107171, 'fa', 'name', 'ŲÆŲ§Ų±ŁˆŲ®Ų§Ł†Ł‡ Ł‡Ų§ŪŒ دانؓکده داروسازی دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تهران'),
(134681, 107172, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do Sudeste de Minas Gerais, Instituto Federal do Sudeste de Minas Gerais'),
(134682, 107173, 'de', 'name', 'Technische Hochschule Deggendorf'),
(134683, 107173, 'en', 'name', 'Deggendorf Institute of Technology'),
(134684, 107174, 'en', 'name', 'Mulawarman University'),
(134685, 107174, 'id', 'name', 'Universitas Mulawarman'),
(134686, 107175, 'en', 'name', 'Tochigi Prefectural Forestry Research Center'),
(134687, 107175, 'ja', 'name', 'ę ƒęœØēœŒęž—ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(134688, 107176, 'id', 'name', 'Universitas Bhayangkara Surabaya'),
(134689, 107177, 'en', 'name', 'Industrial University of Tyumen'),
(134690, 107177, 'ru', 'name', 'Š¢ŃŽŠ¼ŠµŠ½ŃŠŗŠøŠ¹ ŠøŠ½Š“ŃƒŃŃ‚Ń€ŠøŠ°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(134691, 107178, 'en', 'name', 'University Clinical Centre'),
(134692, 107178, 'pl', 'name', 'Uniwersyteckie Centrum Kliniczne w Gdańsku'),
(134693, 107179, 'en', 'name', 'University of Lille'),
(134694, 107179, 'fr', 'name', 'UniversitƩ de Lille'),
(134695, 107180, 'es', 'name', 'El Colegio de Tlaxcala, A. C.'),
(134696, 107181, 'en', 'name', 'Fore School of Management'),
(134697, 107182, 'en', 'name', 'Qualiseg Engineering and Management'),
(134698, 107182, 'pt', 'name', 'Qualiseg Engenharia e Gestão Lda (Portugal)'),
(134699, 107183, 'en', 'name', 'Pharmaceutical Sciences Research Center'),
(134700, 107183, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… دارویی'),
(134701, 107184, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø, ą¦•ą¦¾ą¦²ą¦šą¦¾ą¦° ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(134702, 107184, 'en', 'name', 'International University of Business Agriculture and Technology'),
(134703, 107185, 'es', 'name', 'Pontificia Universidad Católica Madre y Maestra'),
(134704, 107186, 'de', 'name', 'Gesundheit Ɩsterreich'),
(134705, 107187, 'en', 'name', 'Osaka Gyoumeikan Hospital'),
(134706, 107187, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗå¤§é˜Ŗęšę˜Žé¤Øå¤§é˜Ŗęšę˜Žé¤Øē—…é™¢'),
(134707, 107188, 'en', 'name', 'Open University of Tanzania'),
(134708, 107188, 'sw', 'name', 'Chuo Kikuu Huria cha Tanzania'),
(134709, 107189, 'de', 'name', 'Hochschule für Musik und Theater München'),
(134710, 107189, 'en', 'name', 'University of Music and Theatre Munich'),
(134711, 107190, 'en', 'name', 'ASLAB Science'),
(134712, 107191, 'en', 'name', 'Institute of Management Sciences Peshawar'),
(134713, 107192, 'en', 'name', 'Ibaraki Medical Association'),
(134714, 107192, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗčŒØåŸŽēœŒåŒ»åø«ä¼š'),
(134715, 107193, 'es', 'name', 'Universidad Ricardo Palma'),
(134716, 107194, 'cy', 'name', 'Birkbeck, Prifysgol Llundain'),
(134717, 107194, 'en', 'name', 'Birkbeck, University of London'),
(134718, 107195, 'de', 'name', 'UniversitƤt Bergamo'),
(134719, 107195, 'en', 'name', 'University of Bergamo'),
(134720, 107195, 'fr', 'name', 'UniversitƩ de bergame'),
(134721, 107195, 'it', 'name', 'UniversitĆ  degli Studi di Bergamo'),
(134722, 107196, 'en', 'name', 'Japan Association For Advancement Of PHYTO-REGULATORS'),
(134723, 107196, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©čŖæēÆ€å‰¤ē ”ē©¶å”ä¼š'),
(134724, 107197, 'en', 'name', 'Bauchi State University'),
(134725, 107198, 'en', 'name', 'Tianjin Medical University'),
(134726, 107198, 'zh', 'name', 'å¤©ę“„åŒ»ē§‘å¤§å­¦'),
(134727, 107199, 'en', 'name', 'Japanese Pharmacological Society'),
(134728, 107199, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬ē†å­¦ä¼š'),
(134729, 107200, 'en', 'name', 'Shimonoseki Junior College'),
(134730, 107200, 'ja', 'name', 'äø‹é–¢ēŸ­ęœŸå¤§å­¦'),
(134731, 107201, 'en', 'name', 'Nishio Municipal Hospital'),
(134732, 107201, 'ja', 'name', '脿尾市民病院'),
(134733, 107202, 'en', 'name', 'Yamanashi Gakuin Junior College'),
(134734, 107202, 'ja', 'name', 'å±±ę¢Øå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(134735, 107203, 'en', 'name', 'Patan Academy of Health Sciences'),
(134736, 107203, 'ne', 'name', 'पाटन ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤Ŗą„ą¤°ą¤¤ą¤æą¤·ą„ą¤ ą¤¾ą¤Ø'),
(134737, 107204, 'fr', 'name', 'UniversitƩ du QuƩbec en Abitibi-TƩmiscamingue'),
(134738, 107205, 'de', 'name', 'Europa-UniversitƤt Viadrina Frankfurt'),
(134739, 107205, 'en', 'name', 'European University Viadrina'),
(134740, 107206, 'en', 'name', 'National University of Distance Education'),
(134741, 107206, 'es', 'name', 'Universidad Nacional de Educación a Distancia'),
(134742, 107207, 'en', 'name', 'Bandırma Onyedi Eylül University'),
(134743, 107207, 'tr', 'name', 'Bandirma Onyedi Eylul Universitesi'),
(134744, 107208, 'en', 'name', 'Rudjer Boskovic Institute'),
(134745, 107208, 'hr', 'name', 'Institut Ruđer BoÅ”ković'),
(134746, 107209, 'en', 'name', 'National College of Business Administration and Economics'),
(134747, 107209, 'ur', 'name', 'Ł†ŪŒŲ“Ł†Ł„ کالج آف بزنس Ų§ŪŒŚˆŁ…Ł†Ų³Ł¹Ų±ŪŒŲ“Ł† Ų§ŪŒŁ†Śˆ اکنامکس'),
(134748, 107210, 'pt', 'name', 'Centro de Medicina de Reabilitação da Região Centro Rovisco Pais'),
(134749, 107211, 'en', 'name', 'Communication University of China, Nanjing'),
(134750, 107211, 'zh', 'name', 'å—äŗ¬ä¼ åŖ’å­¦é™¢'),
(134751, 107212, 'bg', 'name', 'Дпециализирана болница за активно лечение по Гетски болести – проф.Иван ŠœŠøŃ‚ев ЕАД-Š”Š¾Ń„ŠøŃ'),
(134752, 107212, 'en', 'name', 'Specialized Hospital for Active Treatment of Children''s Diseases "Prof. Ivan Mitev" ЕАD-Sofia'),
(134753, 107213, 'pt', 'name', 'Centro de Estudos e Investigação em Saúde'),
(134754, 107214, 'ja', 'name', '山梨学院大学'),
(134755, 107214, 'no_lang_code', 'name', 'Yamanashi Gakuin University'),
(134756, 107215, 'en', 'name', 'Central University of Karnataka'),
(134757, 107215, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²•ą³†ą³•ą²‚ą²¦ą³ą²°ą²æą³•ą²Æ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(134758, 107215, 'ta', 'name', 'ą®•ą®°ąÆą®Øą®¾ą®Ÿą®• ą®®ą®¤ąÆą®¤ą®æą®Æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(134759, 107216, 'en', 'name', 'California State University, San Bernardino'),
(134760, 107216, 'es', 'name', 'Universidad Estatal de California, San Bernardino'),
(134761, 107217, 'de', 'name', 'UniversitƤt Triest'),
(134762, 107217, 'en', 'name', 'University of Trieste'),
(134763, 107217, 'fr', 'name', 'UniversitƩ de Trieste'),
(134764, 107217, 'it', 'name', 'UniversitĆ  degli Studi di Trieste'),
(134765, 107217, 'sl', 'name', 'Univerza v Trstu'),
(134766, 107218, 'en', 'name', 'Hyogo Health Service Association'),
(134767, 107218, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…µåŗ«ēœŒäŗˆé˜²åŒ»å­¦å”ä¼š'),
(134768, 107219, 'de', 'name', 'UniversitƤtsklinikum Essen'),
(134769, 107219, 'en', 'name', 'Essen University Hospital'),
(134770, 107220, 'en', 'name', 'The Japanese Society of Nutrition and Dietetics'),
(134771, 107220, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ę „é¤Šę”¹å–„å­¦ä¼š'),
(134772, 107221, 'en', 'name', 'University of PreŔov'),
(134773, 107221, 'sk', 'name', 'PreŔovskÔ univerzita v PreŔove'),
(134774, 107222, 'no_lang_code', 'name', 'Flanders Make (Belgium)'),
(134775, 107223, 'no_lang_code', 'name', 'Navrachana University'),
(134776, 107224, 'en', 'name', 'Penang Institute'),
(134777, 107225, 'en', 'name', 'Kagoshima Prefectural Institute for Environmental Research and Public Health'),
(134778, 107225, 'ja', 'name', 'é¹æå…å³¶ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(134779, 107226, 'pt', 'name', 'Rede Interagencial de Informações para a Saúde'),
(134780, 107227, 'en', 'name', 'National Center for Educational Technology'),
(134781, 107227, 'zh', 'name', 'äø­å¤®ē”µåŒ–ę•™č‚²é¦†'),
(134782, 107228, 'en', 'name', 'Mathematics Research Center'),
(134783, 107228, 'es', 'name', 'Centro de Investigación en MatemÔticas'),
(134784, 107229, 'de', 'name', 'UniversitƤts-Kinderspital beider Basel'),
(134785, 107229, 'en', 'name', 'University Children’s Hospital Basel'),
(134786, 107229, 'fr', 'name', 'HÓpital universitaire pédiatrique des deux Bâle'),
(134787, 107230, 'en', 'name', 'Leitat Technological Center'),
(134788, 107231, 'en', 'name', 'NSF Unidata'),
(134789, 107232, 'en', 'name', 'Shahid Rajaee Teacher Training University'),
(134790, 107232, 'fa', 'name', 'دانؓگاه تربیت دبیر Ų“Ł‡ŪŒŲÆ رجایی'),
(134791, 107233, 'en', 'name', 'Mount St. Mary''s University'),
(134792, 107234, 'en', 'name', 'Colombian Air Force'),
(134793, 107234, 'es', 'name', 'Fuerza AƩrea Colombiana'),
(134794, 107235, 'no_lang_code', 'name', 'Pioneer Hi-Bred'),
(134795, 107236, 'de', 'name', 'Hochschule Schmalkalden'),
(134796, 107236, 'en', 'name', 'Schmalkalden University of Applied Sciences'),
(134797, 107237, 'en', 'name', 'Vijayanagara Sri Krishnadevaraya University'),
(134798, 107237, 'kn', 'name', 'ą²µą²æą²œą²Æą²Øą²—ą²° ą²¶ą³ą²°ą³€ ą²•ą³ƒą²·ą³ą²£ą²¦ą³‡ą²µą²°ą²¾ą²Æ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(134799, 107238, 'en', 'name', 'National Nuclear Center of the Republic of Kazakhstan'),
(134800, 107238, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃŠ“ŠµŃ€Š½Ń‹Š¹ центр Республики ŠšŠ°Š·Š°Ń…стан'),
(134801, 107239, 'fr', 'name', 'Laboratoire Eau Environnement et SystĆØmes Urbain, Laboratoire Eau, Environnement et SystĆØmes Urbains'),
(134802, 107240, 'en', 'name', 'Nigerian Defence Academy'),
(134803, 107240, 'yo', 'name', 'AkÔdẹ́mì àbò asà Nàìjíríà'),
(134804, 107241, 'en', 'name', 'Online Computer Library Center'),
(134805, 107242, 'de', 'name', 'Forschungszentrum Jülich'),
(134806, 107242, 'en', 'name', 'Jülich Research Centre'),
(134807, 107243, 'en', 'name', 'IEEE Photonics Society'),
(134808, 107244, 'fr', 'name', 'Ɖcole nationale des ponts et chaussĆ©es'),
(134809, 107245, 'en', 'name', 'Ramaiah Institute of Technology'),
(134810, 107246, 'fr', 'name', 'HƓpital de l''Enfant-JƩsus'),
(134811, 107247, 'en', 'name', 'National Statistics Center'),
(134812, 107247, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗēµ±čØˆć‚»ćƒ³ć‚æćƒ¼'),
(134813, 107248, 'fr', 'name', 'Centre de recherche Charles-Le Moyne'),
(134814, 107249, 'en', 'name', 'Tokyo Online University'),
(134815, 107249, 'ja', 'name', 'ę±äŗ¬é€šäæ”å¤§å­¦'),
(134816, 107250, 'en', 'name', 'Toyota Yahagi River Institute'),
(134817, 107250, 'ja', 'name', 'č±Šē”°åø‚ēŸ¢ä½œå·ē ”ē©¶ę‰€'),
(134818, 107251, 'de', 'name', 'Hochschule Coburg'),
(134819, 107251, 'en', 'name', 'Coburg University of Applied Sciences'),
(134820, 107252, 'en', 'name', 'Iran Broadcasting University'),
(134821, 107252, 'fa', 'name', 'دانؓکده ŲµŲÆŲ§ و Ų³ŪŒŁ…Ų§'),
(134822, 107253, 'en', 'name', 'University of Rome Tor Vergata'),
(134823, 107253, 'it', 'name', 'UniversitĆ  degli Studi di Roma Tor Vergata'),
(134824, 107254, 'en', 'name', 'Saint Leo University'),
(134825, 107255, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© المتعددة Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ§ŲŖ ŲØŁˆŁ‡Ų±Ų§Ł† Ł…ŁˆŲ±ŁŠŲ³ Ų£ŁˆŲÆŲ§Ł†'),
(134826, 107255, 'fr', 'name', 'Ɖcole Nationale Polytechnique d''Oran'),
(134827, 107256, 'id', 'name', 'Universitas Garut'),
(134828, 107257, 'en', 'name', 'Australia and New Zealand Sarcoma Association'),
(134829, 107258, 'de', 'name', 'Max-Planck-Institut für Biophysik'),
(134830, 107258, 'en', 'name', 'Max Planck Institute of Biophysics'),
(134831, 107259, 'en', 'name', 'Guangdong Polytechnic Normal University'),
(134832, 107259, 'zh', 'name', 'å¹æäøœęŠ€ęœÆåøˆčŒƒå¤§å­¦'),
(134833, 107260, 'de', 'name', 'Krankenhaus Barmherzige Brüder'),
(134834, 107261, 'en', 'name', 'Alma College'),
(134835, 107262, 'en', 'name', 'Iwate Prefectural Inland Fisheries Technology Center'),
(134836, 107262, 'ja', 'name', 'å²©ę‰‹ēœŒå†…ę°“é¢ę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(134837, 107263, 'en', 'name', 'North Idaho College'),
(134838, 107264, 'en', 'name', 'University of St. Thomas - Texas'),
(134839, 107265, 'pt', 'name', 'Associação Nacional dos Procuradores e Advogados Públicos Federais'),
(134840, 107266, 'en', 'name', 'Okinawa Prefectural Forest Resources Research Center'),
(134841, 107266, 'ja', 'name', 'ę²–ēø„ēœŒę£®ęž—č³‡ęŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(134842, 107267, 'en', 'name', 'National Institute for Nuclear Physics, Catania Division'),
(134843, 107267, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Catania'),
(134844, 107268, 'en', 'name', 'GAIKER Technology Centre'),
(134845, 107268, 'gl', 'name', 'GAIKER Centro Tecnológico'),
(134846, 107269, 'en', 'name', 'UL Institute of Mathematics and Computer Science'),
(134847, 107269, 'lv', 'name', 'LU Matemātikas un informātikas institūts'),
(134848, 107270, 'no_lang_code', 'name', 'Stiftung Rehabilitation Heidelberg (Germany)'),
(134849, 107271, 'sv', 'name', 'Region VƤrmland Kommunalfƶrbund'),
(134850, 107272, 'en', 'name', 'Institute of Electronics, Microelectronics and Nanotechnology'),
(134851, 107272, 'fr', 'name', 'Institut d''Ʃlectronique de microƩlectronique et de nanotechnologie'),
(134852, 107273, 'en', 'name', 'Federal University Oye Ekiti'),
(134853, 107274, 'en', 'name', 'Japanese Society of Otorhinolaryngology-Head and Neck Surgery, Inc. (Japan)'),
(134854, 107274, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č€³é¼»å’½å–‰ē§‘é ­é øéƒØå¤–ē§‘å­¦ä¼š'),
(134855, 107275, 'en', 'name', 'KPR Institute of Engineering and Technology'),
(134856, 107276, 'en', 'name', 'Naval State University'),
(134857, 107277, 'it', 'name', 'Istituto Zooprofilattico Sperimentale della Lombardia e dell''Emilia Romagna "Bruno Ubertini"'),
(134858, 107278, 'en', 'name', 'Okinawa Institute of Science and Technology Graduate University'),
(134859, 107278, 'ja', 'name', 'ę²–ēø„ē§‘å­¦ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(134860, 107279, 'es', 'name', 'Observatorio Colombiano de Ciencia y TecnologĆ­a'),
(134861, 107280, 'no_lang_code', 'name', 'Manonmaniam Sundaranar University'),
(134862, 107280, 'ta', 'name', 'ą®®ą®©ąÆ‹ą®©ąÆą®®ą®£ą®æą®Æą®®ąÆ ą®šąÆą®ØąÆą®¤ą®°ą®©ą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(134863, 107281, 'en', 'name', 'Wakayama Prefectural Forestry Experiment Station'),
(134864, 107281, 'ja', 'name', 'å’Œę­Œå±±ēœŒęž—ę„­č©¦éØ“å “'),
(134865, 107282, 'en', 'name', 'Ohio Wesleyan University'),
(134866, 107282, 'es', 'name', 'Universidad Wesleyana de Ohio'),
(134867, 107282, 'fr', 'name', 'UniversitƩ wesleyenne de l''ohio'),
(134868, 107283, 'pt', 'name', 'Centro de Estudos de Comunicação e Sociedade'),
(134869, 107284, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(134870, 107284, 'en', 'name', 'University of Cyprus'),
(134871, 107285, 'en', 'name', 'Elizade University'),
(134872, 107286, 'pt', 'name', 'Grupo Lobo'),
(134873, 107287, 'en', 'name', 'University of Brunei Darussalam'),
(134874, 107287, 'ms', 'name', 'Universiti Brunei Darussalam'),
(134875, 107288, 'en', 'name', 'University of Mons'),
(134876, 107288, 'fr', 'name', 'UniversitƩ de Mons'),
(134877, 107289, 'en', 'name', 'Japan Center for Regional Development'),
(134878, 107289, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸę“»ę€§åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(134879, 107290, 'en', 'name', 'Brandon University'),
(134880, 107291, 'en', 'name', 'Mayo Clinic'),
(134881, 107291, 'es', 'name', 'ClĆ­nica Mayo'),
(134882, 107292, 'en', 'name', 'Peoria campus of the University of Illinois System'),
(134883, 107293, 'en', 'name', 'GeoEcoMar'),
(134884, 107293, 'ro', 'name', 'Institutul Național de Cercetare-Dezvoltare pentru Geologie și Geoecologie Marină'),
(134885, 107294, 'en', 'name', 'University of Stavanger'),
(134886, 107294, 'fi', 'name', 'Stavangerin yliopisto'),
(134887, 107295, 'en', 'name', 'Buenos Aires Institute of Technology'),
(134888, 107295, 'es', 'name', 'Instituto Tecnológico de Buenos Aires'),
(134889, 107296, 'en', 'name', 'Fundação Getulio Vargas São Paulo Law School'),
(134890, 107296, 'pt', 'name', 'Escola de Direito de São Paulo da Fundação Getulio Vargas'),
(134891, 107297, 'en', 'name', 'NATO Science and Technology Organization'),
(134892, 107297, 'fr', 'name', 'Organisation pour la Recherche et la Technologie OTAN in French'),
(134893, 107298, 'fr', 'name', 'HƓpital Saint-FranƧois d''Assise'),
(134894, 107299, 'es', 'name', 'Corporación Universitaria del Meta'),
(134895, 107300, 'en', 'name', 'Chiba Prefectural Livestock Research Center'),
(134896, 107300, 'ja', 'name', 'åƒč‘‰ēœŒē•œē”£ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(134897, 107301, 'es', 'name', 'Fundación La Salle de Ciencias Naturales'),
(134898, 107302, 'en', 'name', 'Nnamdi Azikiwe University'),
(134899, 107303, 'en', 'name', 'Institute of Rural Development Planning'),
(134900, 107304, 'en', 'name', 'University of Kelaniya'),
(134901, 107304, 'si', 'name', 'ą¶šą·ą·…ą¶«ą·’ą¶ŗ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(134902, 107304, 'ta', 'name', 'களனி ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(134903, 107305, 'en', 'name', 'Indian Institute of Science Education and Research, Bhopal'),
(134904, 107305, 'ne', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤¶ą¤æą¤•ą„ą¤·ą¤¾ ą¤ą¤µą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤­ą„‹ą¤Ŗą¤¾ą¤²'),
(134905, 107306, 'de', 'name', 'UniversitƤt Kalabrien'),
(134906, 107306, 'en', 'name', 'University of Calabria'),
(134907, 107306, 'fr', 'name', 'UniversitƩ de la calabre'),
(134908, 107306, 'it', 'name', 'UniversitĆ  della Calabria'),
(134909, 107307, 'de', 'name', 'Ɩsterreichischen Atherosklerosegesellschaft'),
(134910, 107307, 'en', 'name', 'Austrian Atherosclerosis Society'),
(134911, 107308, 'en', 'name', 'University Clinical Centre Maribor'),
(134912, 107309, 'de', 'name', 'Babeș-Bolyai UniversitƤt'),
(134913, 107309, 'en', 'name', 'Babeș-Bolyai University'),
(134914, 107309, 'hu', 'name', 'Babeș–Bolyai TudomĆ”nyegyetem'),
(134915, 107309, 'ro', 'name', 'Universitatea Babeș-Bolyai'),
(134916, 107310, 'fr', 'name', 'FƩdƩration de recherche PLAS@PAR'),
(134917, 107311, 'es', 'name', 'Universidad Tecnologica de Tlaxcala'),
(134918, 107312, 'en', 'name', 'Carilion Clinic'),
(134919, 107313, 'en', 'name', 'Koga Red Cross Hospital'),
(134920, 107313, 'ja', 'name', 'čŖåÆę³•äŗŗę—„ęœ¬čµ¤åå­—ē¤¾å¤ę²³čµ¤åå­—ē—…é™¢'),
(134921, 107314, 'en', 'name', 'National University of San Juan'),
(134922, 107314, 'es', 'name', 'Universidad Nacional de San Juan'),
(134923, 107315, 'en', 'name', 'Institute of Electrical Engineering of the Slovak Academy of Sciences'),
(134924, 107315, 'sk', 'name', 'Elektrotechnický ústav SlovenskÔ akadémia vied'),
(134925, 107316, 'en', 'name', 'Osaka College of Music'),
(134926, 107316, 'ja', 'name', '大阪音愽大学'),
(134927, 107317, 'en', 'name', 'Jawaharlal Nehru Technological University Anantapur'),
(134928, 107317, 'te', 'name', 'ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ సాంకేతిక ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(134929, 107318, 'en', 'name', 'Nuvance Health'),
(134930, 107319, 'en', 'name', 'Van Lang University'),
(134931, 107319, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Văn Lang'),
(134932, 107320, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© فرحات Ų¹ŲØŲ§Ų³'),
(134933, 107320, 'en', 'name', 'University Ferhat Abbas of Setif'),
(134934, 107320, 'fr', 'name', 'UniversitƩ Ferhat Abbas de SƩtif'),
(134935, 107321, 'ja', 'name', 'å››ę¢ē•·å­¦åœ’å¤§å­¦'),
(134936, 107321, 'no_lang_code', 'name', 'Shijonawate Gakuen University'),
(134937, 107322, 'en', 'name', 'University of the Highlands and Islands'),
(134938, 107323, 'no_lang_code', 'name', 'Kitware (United States)'),
(134939, 107324, 'en', 'name', 'Swiss Federal Institute of Technology in Lausanne'),
(134940, 107324, 'fr', 'name', 'Ɖcole Polytechnique FĆ©dĆ©rale de Lausanne'),
(134941, 107325, 'en', 'name', 'Arcada University of Applied Sciences'),
(134942, 107325, 'sv', 'name', 'Arcada – Nylands svenska yrkeshƶgskola'),
(134943, 107326, 'en', 'name', 'Jan Matejko Academy Of Fine Arts'),
(134944, 107326, 'pl', 'name', 'Akademia Sztuk Pięknych im. Jana Matejki w Krakowie'),
(134945, 107327, 'en', 'name', 'Institute of Nano Science and Technology'),
(134946, 107327, 'hi', 'name', 'ą¤Øą„ˆą¤Øą„‹ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(134947, 107328, 'en', 'name', 'Konya Technical University'),
(134948, 107328, 'tr', 'name', 'Konya Teknik Üniversitesi'),
(134949, 107329, 'bs', 'name', 'Univerzitet u Zenici'),
(134950, 107329, 'en', 'name', 'University of Zenica'),
(134951, 107329, 'sr', 'name', 'Универзитет у Зеници'),
(134952, 107330, 'en', 'name', 'Japan Radiological Society'),
(134953, 107330, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŒ»å­¦ę”¾å°„ē·šå­¦ä¼š'),
(134954, 107331, 'en', 'name', 'National Institute of Criminal Science'),
(134955, 107331, 'es', 'name', 'Instituto Nacional de Ciencias Penales'),
(134956, 107332, 'es', 'name', 'Universidad Nacional Intercultural de la AmazonĆ­a'),
(134957, 107333, 'en', 'name', 'Center for Unmanned Aircraft Systems'),
(134958, 107334, 'en', 'name', 'Maritime University of Szczecin'),
(134959, 107334, 'pl', 'name', 'Akademia Morska w Szczecinie'),
(134960, 107335, 'en', 'name', 'Huayun Sounding Meteorological Technology Co. Ltd., Huayun Sounding Meteorological Technology Co. Ltd. (China)'),
(134961, 107335, 'zh', 'name', 'åŽäŗ‘å‡č¾¾ļ¼ˆåŒ—äŗ¬ļ¼‰ę°”č±”ē§‘ęŠ€ęœ‰é™č“£ä»»å…¬åø'),
(134962, 107336, 'en', 'name', 'Mie Prefecture Livestock Research Institute'),
(134963, 107336, 'ja', 'name', 'äø‰é‡ēœŒē•œē”£ē ”ē©¶ę‰€'),
(134964, 107337, 'en', 'name', 'Nagoya Tokushukai General Hospital'),
(134965, 107337, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šåå¤å±‹å¾³ę“²ä¼šē·åˆē—…é™¢'),
(134966, 107338, 'en', 'name', 'Shinawatra University'),
(134967, 107338, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŠąø“ąø™ąø§ąø±ąø•ąø£'),
(134968, 107339, 'en', 'name', 'Suzuki Foundation'),
(134969, 107339, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¹ć‚ŗć‚­č²”å›£'),
(134970, 107340, 'no_lang_code', 'name', 'Accent Pro 2000 (Romania)'),
(134971, 107341, 'en', 'name', 'The Sasakawa Peace Foundation'),
(134972, 107341, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē¬¹å·å¹³å’Œč²”å›£'),
(134973, 107342, 'en', 'name', 'Medi-Caps University'),
(134974, 107342, 'hi', 'name', 'ą¤®ą„‡ą¤”ą„€-ą¤•ą„ˆą¤Ŗą„ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(134975, 107343, 'en', 'name', 'Tokyo Metropolitan Park Association'),
(134976, 107343, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬éƒ½å…¬åœ’å”ä¼š'),
(134977, 107344, 'fr', 'name', 'Centre Occitanie-Toulouse'),
(134978, 107345, 'en', 'name', 'Hokkaido Center Of Environmental Sciences & Technology'),
(134979, 107345, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“ē’°å¢ƒē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(134980, 107346, 'fr', 'name', 'UniversitƩ de Mayotte'),
(134981, 107347, 'en', 'name', 'Japan Pharmaceutical Manufacturers Association'),
(134982, 107347, 'ja', 'name', 'ę—„ęœ¬č£½č–¬å·„ę„­å”ä¼š'),
(134983, 107348, 'en', 'name', 'Takeda Hospital'),
(134984, 107348, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£åŗ·ē”Ÿä¼šę­¦ē”°ē—…é™¢'),
(134985, 107349, 'en', 'name', 'MineraLogic LLC, MineraLogic LLC (United States)'),
(134986, 107350, 'en', 'name', 'Japan Bioindustry Association'),
(134987, 107350, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒć‚¤ć‚Ŗć‚¤ćƒ³ćƒ€ć‚¹ćƒˆćƒŖćƒ¼å”ä¼š'),
(134988, 107351, 'am', 'name', 'į‹ØįŠ¦įˆ®įˆšį‹« įŒį‰„įˆ­įŠ“ įˆįˆ­įˆįˆ­ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(134989, 107351, 'en', 'name', 'Oromia Agricultural Research Institute'),
(134990, 107351, 'om', 'name', 'Inistiitiyuutii Qorannoo Qonna Oromiyaa'),
(134991, 107352, 'en', 'name', 'Aomori Prefectural Nuclear Power Safety Center'),
(134992, 107352, 'ja', 'name', 'é’ę£®ēœŒåŽŸå­åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(134993, 107353, 'en', 'name', 'National Association for Filipino Psychology, National Association for Sikolohiyang Pilipino'),
(134994, 107353, 'tl', 'name', 'Pambansang Samahan sa Sikolohiyang Pilipino'),
(134995, 107354, 'en', 'name', 'U.S. Air Force Research Laboratory AFWERX Directorate'),
(134996, 107355, 'en', 'name', 'Sino-Africa Joint Research Center'),
(134997, 107355, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢äø­éžč”åˆē ”ē©¶äø­åæƒ'),
(134998, 107356, 'en', 'name', 'Kochi Prefectural Deep Seawater Laboratory'),
(134999, 107356, 'ja', 'name', 'é«˜ēŸ„ēœŒęµ·ę“‹ę·±å±¤ę°“ē ”ē©¶ę‰€'),
(135000, 107357, 'en', 'name', 'Chihaya Hospital'),
(135001, 107357, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šåƒę—©ē—…é™¢'),
(135002, 107358, 'en', 'name', 'Centria University of Applied Sciences'),
(135003, 107358, 'fi', 'name', 'Centria ammattikorkeakoulu'),
(135004, 107358, 'sv', 'name', 'Centria yrkeshƶgskola'),
(135005, 107359, 'en', 'name', 'The Society of Materials Science, Japan'),
(135006, 107359, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęę–™å­¦ä¼š'),
(135007, 107360, 'fr', 'name', 'Centre Hospitalier Universitaire de Clermont-Ferrand'),
(135008, 107361, 'en', 'name', 'Dordt University'),
(135009, 107362, 'en', 'name', 'Sainsbury Laboratory'),
(135010, 107363, 'en', 'name', 'Institute of Chemistry of the Slovak Academy of Sciences'),
(135011, 107363, 'sk', 'name', 'Chemický ústav SlovenskÔ akadémia vied'),
(135012, 107364, 'bn', 'name', 'ą¦…ą§ą¦Æą¦¾ą¦”ą¦¾ą¦®ą¦¾ą¦ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(135013, 107364, 'en', 'name', 'Adamas University'),
(135014, 107365, 'en', 'name', 'Institute of Nuclear Physics'),
(135015, 107365, 'kk', 'name', 'ЯГролық физика ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(135016, 107365, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Š¾Š¹ физики'),
(135017, 107366, 'en', 'name', 'Nishichita General Hospital'),
(135018, 107366, 'ja', 'name', 'å…¬ē«‹č„æēŸ„å¤šē·åˆē—…é™¢'),
(135019, 107367, 'en', 'name', 'Saitama Cooperative Hospital'),
(135020, 107367, 'ja', 'name', 'åŒ»ē™‚ē”Ÿå”ć•ć„ćŸć¾ē”Ÿę“»å”åŒēµ„åˆåŸ¼ēŽ‰å”åŒē—…é™¢'),
(135021, 107368, 'en', 'name', 'Dulaty University'),
(135022, 107368, 'kk', 'name', 'М.Š„.Š”ŃƒŠ»Š°Ń‚Šø атынГағы Тараз өңірлік ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(135023, 107369, 'en', 'name', 'Cancer Research Horizons'),
(135024, 107370, 'en', 'name', 'Yanshan University'),
(135025, 107370, 'zh', 'name', '燕山大学'),
(135026, 107371, 'es', 'name', 'Instituto Tecnológico José Mario Molina Pasquel y Henrique'),
(135027, 107372, 'en', 'name', 'Kitakyushu General Hospital'),
(135028, 107372, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗåŒ—ä¹å·žē—…é™¢åŒ—ä¹å·žē·åˆē—…é™¢'),
(135029, 107373, 'en', 'name', 'The Institute of Electrical Engineers of Japan'),
(135030, 107373, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—å­¦ä¼š'),
(135031, 107374, 'en', 'name', 'IFTM University'),
(135032, 107375, 'en', 'name', 'Kagawa Forestry Center'),
(135033, 107375, 'ja', 'name', 'é¦™å·ēœŒę£®ęž—ć‚»ćƒ³ć‚æćƒ¼'),
(135034, 107376, 'en', 'name', 'Chilean Institute for Disaster Resilience'),
(135035, 107376, 'es', 'name', 'Instituto para la Resiliencia ante Desastres'),
(135036, 107377, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القلم Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ł†Ų³Ų§Ł†ŁŠŲ© ŁˆŲ§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(135037, 107377, 'en', 'name', 'Al-Qalam University for Humanities and Applied Sciences'),
(135038, 107378, 'en', 'name', 'The Institute of Environmental Toxicology'),
(135039, 107378, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę®‹ē•™č¾²č–¬ē ”ē©¶ę‰€'),
(135040, 107379, 'fr', 'name', 'UniversitƩ Paul-Sabatier, UniversitƩ Toulouse III - Paul Sabatier'),
(135041, 107380, 'en', 'name', 'Pramukhswami Medical College'),
(135042, 107381, 'id', 'name', 'Universitas Suryakancana'),
(135043, 107382, 'en', 'name', 'Cancer Research Institute of the Slovak Academy of Sciences'),
(135044, 107382, 'sk', 'name', 'Ústav experimentalnej onkológie SlovenskÔ akadémia vied'),
(135045, 107383, 'en', 'name', 'Polytechnic University of Timişoara'),
(135046, 107383, 'ro', 'name', 'Universitatea Politehnica din Timișoara'),
(135047, 107384, 'en', 'name', 'Manufacturing Technology Association of Biologics'),
(135048, 107384, 'ja', 'name', 'ę¬”äø–ä»£ćƒć‚¤ć‚ŖåŒ»č–¬å“č£½é€ ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(135049, 107385, 'en', 'name', 'Khmelnytsky University of Management and Law'),
(135050, 107385, 'uk', 'name', 'Š„ŠœŠ•Š›Š¬ŠŠ˜Š¦Š¬ŠšŠ˜Š™ Š£ŠŠ†Š’Š•Š Š”Š˜Š¢Š•Š¢ Š£ŠŸŠ ŠŠ’Š›Š†ŠŠŠÆ ТА ŠŸŠ ŠŠ’Š Š†ŠœŠ•ŠŠ† Š›Š•ŠžŠŠ†Š”Š Š®Š—Š¬ŠšŠžŠ’Š'),
(135051, 107386, 'en', 'name', 'Srinath University'),
(135052, 107387, 'en', 'name', 'NUCLEAR Safety Technology Center'),
(135053, 107387, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›å®‰å…ØęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(135054, 107388, 'en', 'name', 'Transport Research Laboratory'),
(135055, 107388, 'no_lang_code', 'name', 'Transport Research Laboratory (United Kingdom)'),
(135056, 107389, 'en', 'name', 'Somerset College'),
(135057, 107390, 'en', 'name', 'Iwate Prefectural Ofunato Hospital'),
(135058, 107390, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹å¤§čˆ¹ęø”ē—…é™¢'),
(135059, 107391, 'en', 'name', 'Washington College'),
(135060, 107392, 'en', 'name', 'SOLFARCOS - Pharmaceutical and Cosmetic Solutions Ltd'),
(135061, 107392, 'pt', 'name', 'Solfarcos LDA (Portugal)'),
(135062, 107393, 'fr', 'name', 'UniversitƩ Mustapha Stambouli de Mascara'),
(135063, 107394, 'en', 'name', 'National Institute for Nuclear Physics, Florence Division'),
(135064, 107394, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Firenze'),
(135065, 107395, 'en', 'name', 'Iwate Prefectural Nihohe Hospital'),
(135066, 107395, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹äŗŒęˆøē—…é™¢'),
(135067, 107396, 'en', 'name', 'Thomas Jefferson National Accelerator Facility'),
(135068, 107397, 'en', 'name', 'Abashiri-Kosei General Hospital'),
(135069, 107397, 'ja', 'name', 'JAåŒ—ęµ·é“åŽšē”Ÿé€£ē¶²čµ°åŽšē”Ÿē—…é™¢'),
(135070, 107398, 'en', 'name', 'Juarez University of the State of Durango'),
(135071, 107398, 'es', 'name', 'Universidad JuƔrez del Estado de Durango'),
(135072, 107399, 'pt', 'name', 'Guarda Nacional Republicana'),
(135073, 107400, 'en', 'name', 'African Institute for Mathematical Sciences'),
(135074, 107401, 'es', 'name', 'Fundacion Universitaria Inpahu'),
(135075, 107402, 'de', 'name', 'Bundesanstalt Technisches Hilfswerk'),
(135076, 107403, 'pt', 'name', 'Sociedade Brasileira de Estudos em Sexualidade Humana'),
(135077, 107404, 'en', 'name', 'Galgotias University'),
(135078, 107405, 'en', 'name', 'Indian Institute of Information Technology and Management, Kerala'),
(135079, 107405, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤•ą„‡ą¤°ą¤²'),
(135080, 107406, 'en', 'name', 'California Academy of Sciences'),
(135081, 107407, 'en', 'name', 'Artvin Coruh University'),
(135082, 107407, 'tr', 'name', 'Artvin Ƈoruh Ɯniversitesi'),
(135083, 107408, 'pt', 'name', 'Serviço de Intervenção nos Comportamentos Aditivos e nas Dependências'),
(135084, 107409, 'en', 'name', 'Taiwan Agricultural Research Institute Council of Agriculture, Executive Yuan'),
(135085, 107409, 'zh', 'name', 'č”Œę”æé™¢č¾²ę„­å§”å“”ęœƒč¾²ę„­č©¦é©—ę‰€'),
(135086, 107410, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ابن Ų·ŁŁŠŁ„'),
(135087, 107410, 'en', 'name', 'Ibn TofaĆÆl University'),
(135088, 107410, 'fr', 'name', 'UniversitƩ Ibn-Tofail'),
(135089, 107411, 'id', 'name', 'Universitas Mahasaraswati Denpasar'),
(135090, 107412, 'en', 'name', 'Gil Vicente Football Club'),
(135091, 107412, 'pt', 'name', 'Gil Vicente Futebol Clube Futebol SDUQ Lda (Portugal)'),
(135092, 107413, 'en', 'name', 'Fukushima Forestry Research Center'),
(135093, 107413, 'ja', 'name', 'ē¦å³¶ēœŒęž—ę„­ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(135094, 107414, 'en', 'name', 'Telecom Engineering Center'),
(135095, 107414, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ†ćƒ¬ć‚³ćƒ ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ć‚»ćƒ³ć‚æćƒ¼'),
(135096, 107415, 'ca', 'name', 'Universitat Jaume I'),
(135097, 107415, 'en', 'name', 'Jaume I University'),
(135098, 107415, 'es', 'name', 'Universidad Jaime I'),
(135099, 107416, 'en', 'name', 'River Center Of Hokkaido'),
(135100, 107416, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“ę²³å·č²”å›£'),
(135101, 107417, 'en', 'name', 'Aga Khan University'),
(135102, 107418, 'en', 'name', 'Research Institute of Urbanization'),
(135103, 107418, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚åŒ–ē ”ē©¶å…¬å®¤'),
(135104, 107419, 'en', 'name', 'Washington State Department of Health'),
(135105, 107420, 'es', 'name', 'Red Española de Supercomputación'),
(135106, 107421, 'en', 'name', 'Walla Walla University'),
(135107, 107421, 'fr', 'name', 'UniversitƩ de walla walla'),
(135108, 107422, 'en', 'name', 'Kochi Professional University of Rehabilitation'),
(135109, 107422, 'ja', 'name', 'é«˜ēŸ„ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(135110, 107423, 'en', 'name', 'Aichi Children''s Health and Medical Center'),
(135111, 107423, 'ja', 'name', 'ć‚ć„ć”å°å…äæå„åŒ»ē™‚ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(135112, 107424, 'en', 'name', 'Central Michigan University'),
(135113, 107424, 'fr', 'name', 'UniversitƩ de central michigan'),
(135114, 107425, 'en', 'name', 'D. Serikbayev East Kazakhstan State Technical University'),
(135115, 107425, 'kk', 'name', 'Š”Ó™ŃƒŠ»ŠµŃ‚ Дерікбаев атынГағы Шығыс ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ мемлекеттік техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(135116, 107425, 'ru', 'name', 'Восточно-ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š”. Дерикбаева'),
(135117, 107426, 'en', 'name', 'Shoolini University'),
(135118, 107427, 'en', 'name', 'Admiral Makarov State University of Maritime and Inland Shipping'),
(135119, 107427, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ морского Šø речного флота имени аГмирала Š”.Šž. ŠœŠ°ŠŗŠ°Ń€Š¾Š²Š°'),
(135120, 107428, 'en', 'name', 'National Sanatorium Kikuchi Keifuen'),
(135121, 107428, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€čŠę± ęµę„“åœ’'),
(135122, 107429, 'en', 'name', 'Bank of Mexico'),
(135123, 107429, 'es', 'name', 'Banco de MƩxico'),
(135124, 107430, 'en', 'name', 'University of Wisconsin–Platteville'),
(135125, 107430, 'fr', 'name', 'UniversitĆ© du Wisconsin–Platteville'),
(135126, 107431, 'en', 'name', 'Leeds Beckett University'),
(135127, 107432, 'es', 'name', 'Universidad Externado de Colombia'),
(135128, 107433, 'en', 'name', 'Government of Victoria'),
(135129, 107434, 'en', 'name', 'Facility for Airborne Atmospheric Measurements'),
(135130, 107435, 'de', 'name', 'VRVis GmbH, VRVis GmbH (Austria)'),
(135131, 107436, 'en', 'name', 'Nanjing University of Information Science and Technology'),
(135132, 107436, 'zh', 'name', 'å—äŗ¬äæ”ęÆå·„ēØ‹å¤§å­¦'),
(135133, 107437, 'en', 'name', 'HELP University'),
(135134, 107437, 'ms', 'name', 'Universiti HELP'),
(135135, 107438, 'en', 'name', 'National Institute of Technology Raipur'),
(135136, 107438, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(135137, 107439, 'en', 'name', 'Ministry of Health'),
(135138, 107439, 'pt', 'name', 'Ministério da Saúde'),
(135139, 107440, 'en', 'name', 'Systems Research & Development Institute of Japan'),
(135140, 107440, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗē ”ē©¶ę‰€'),
(135141, 107441, 'en', 'name', '7Degrees'),
(135142, 107441, 'pt', 'name', '7Graus (Portugal)'),
(135143, 107442, 'en', 'name', 'Institute of Play'),
(135144, 107443, 'en', 'name', 'Matsuyama Junior College'),
(135145, 107443, 'ja', 'name', 'ę¾å±±ēŸ­ęœŸå¤§å­¦'),
(135146, 107444, 'en', 'name', 'National SzƩchƩnyi Library'),
(135147, 107444, 'hu', 'name', 'OrszƔgos SzƩchƩnyi KƶnyvtƔr'),
(135148, 107445, 'en', 'name', 'Shiraumegakuen College'),
(135149, 107445, 'ja', 'name', 'ē™½ę¢…å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(135150, 107446, 'en', 'name', 'China National Botanical Garden'),
(135151, 107446, 'zh', 'name', 'å›½å®¶ę¤ē‰©å›­'),
(135152, 107447, 'de', 'name', 'Land Salzburg'),
(135153, 107447, 'en', 'name', 'State of Salzburg'),
(135154, 107448, 'en', 'name', 'Veer Surendra Sai University of Technology'),
(135155, 107449, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ذي قار'),
(135156, 107449, 'en', 'name', 'Thi Qar University'),
(135157, 107450, 'en', 'name', 'New Europe College'),
(135158, 107451, 'en', 'name', 'Foundation University of Health Sciences'),
(135159, 107451, 'es', 'name', 'Fundación Universitaria de Ciencias de la Salud'),
(135160, 107452, 'en', 'name', 'Constructor University'),
(135161, 107453, 'en', 'name', 'Palmer College of Chiropractic'),
(135162, 107454, 'id', 'name', 'Universitas PGRI Palembang'),
(135163, 107455, 'en', 'name', 'LaserNetUS'),
(135164, 107456, 'en', 'name', 'Centre for industrial economics - CERNA, Mines Paris, PSL University, Centre for industrial economics (CERNA), i3 UMR9217 CNRS'),
(135165, 107456, 'fr', 'name', 'Centre d’Economie Industrielle - CERNA, Mines Paris, UniversitĆ© PSL, Centre d’Economie Industrielle (CERNA), i3 UMR9217 CNRS'),
(135166, 107457, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© باتنة 2 مصطفى بن ŲØŁˆŁ„Ų¹ŁŠ'),
(135167, 107457, 'en', 'name', 'University of Batna 2'),
(135168, 107457, 'fr', 'name', 'UniversitƩ de Batna 2'),
(135169, 107458, 'en', 'name', 'National Security Authority'),
(135170, 107459, 'de', 'name', 'UniversitƤtsklinik Balgrist'),
(135171, 107460, 'en', 'name', 'University of Costa Rica'),
(135172, 107460, 'es', 'name', 'Universidad de Costa Rica'),
(135173, 107461, 'en', 'name', 'Malta College of Arts, Science and Technology'),
(135174, 107461, 'mt', 'name', 'Il-KulleĔĔ Malti tal-Arti, Xjenza u TeknoloĔija'),
(135175, 107462, 'en', 'name', 'Asahino General Hospital'),
(135176, 107462, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗęœę—„é‡Žä¼šęœę—„é‡Žē·åˆē—…é™¢'),
(135177, 107463, 'en', 'name', 'Shobhit University'),
(135178, 107464, 'en', 'name', 'Stevens Institute of Technology'),
(135179, 107465, 'en', 'name', 'The Supercomputing Center of Galicia'),
(135180, 107465, 'es', 'name', 'Centro de Supercomputación de Galicia'),
(135181, 107466, 'en', 'name', 'Kobe University of Future Health Sciences'),
(135182, 107466, 'ja', 'name', 'ē„žęˆøåŒ»ē™‚ęœŖę„å¤§å­¦'),
(135183, 107467, 'en', 'name', 'Sias University'),
(135184, 107467, 'zh', 'name', 'éƒ‘å·žč„æäŗšę–Æå­¦é™¢'),
(135185, 107468, 'en', 'name', 'Common Language Resources and Technology Infrastructure, Slovenia'),
(135186, 107469, 'en', 'name', 'Poznan University of Medical Sciences'),
(135187, 107469, 'pl', 'name', 'Uniwersytet Medyczny im. Karola Marcinkowskiego w Poznaniu'),
(135188, 107470, 'en', 'name', 'Konya Food and Agriculture University'),
(135189, 107470, 'tr', 'name', 'Konya Gıda ve Tarım Üniversitesi'),
(135190, 107471, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŁŁ„Ų§Ų­ŁŠŲ© ŲØŲŖŁˆŁ†Ų³'),
(135191, 107471, 'fr', 'name', 'Institut National Agronomique de Tunisie'),
(135192, 107472, 'pt', 'name', 'Autoridade da ConcorrĆŖncia'),
(135193, 107473, 'en', 'name', 'Kyoto Interdisciplinary Institute of Community Medicine'),
(135194, 107473, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäŗ¬éƒ½åœ°åŸŸåŒ»ē™‚å­¦éš›ē ”ē©¶ę‰€'),
(135195, 107474, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অফ ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ ą¦•ą§ą¦Æą¦¾ą¦²ą¦•ą¦¾ą¦Ÿą¦¾'),
(135196, 107474, 'en', 'name', 'Indian Institute of Management Calcutta'),
(135197, 107474, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą¤²ą¤•ą¤¤ą„ą¤¤ą¤¾'),
(135198, 107474, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ ą®•ąÆŠą®²ąÆą®•ą®¤ąÆą®¤ą®¾'),
(135199, 107475, 'de', 'name', 'Luzerner Kantonsspital');
INSERT INTO `ror_settings` VALUES
(135200, 107476, 'en', 'name', 'Wakayama City Institute Of Public Health'),
(135201, 107476, 'ja', 'name', 'å’Œę­Œå±±åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(135202, 107477, 'pt', 'name', 'Universidade Evangelica de GoiƔs'),
(135203, 107478, 'en', 'name', 'Medical Information System Development Center'),
(135204, 107478, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ»ē™‚ęƒ…å ±ć‚·ć‚¹ćƒ†ćƒ é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(135205, 107479, 'en', 'name', 'University of Douala'),
(135206, 107479, 'fr', 'name', 'UniversitƩ de Douala'),
(135207, 107480, 'en', 'name', 'South Australian Museum'),
(135208, 107481, 'en', 'name', 'Anthony J. Leggett Institute for Condensed Matter Theory'),
(135209, 107482, 'en', 'name', 'Shaheed Benazir Bhutto University'),
(135210, 107482, 'sd', 'name', 'Ų“Ł‡ŁŠŲÆ ŲØŁŠŁ†ŲøŁŠŲ± Ś€Ł½Łˆ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠŲŒ Ų“Ł‡ŁŠŲÆ ŲØŁŠŁ†ŲøŁŠŲ±Ų¢ŲØŲ§ŲÆ'),
(135211, 107483, 'en', 'name', 'R Core Team'),
(135212, 107484, 'en', 'name', 'The Japan Geriatrics Society'),
(135213, 107484, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č€å¹“åŒ»å­¦ä¼š'),
(135214, 107485, 'no_lang_code', 'name', 'BioClin (Ireland)'),
(135215, 107486, 'en', 'name', 'Industrial Technology Institute'),
(135216, 107487, 'en', 'name', 'Woxsen School of Business'),
(135217, 107488, 'en', 'name', 'Kanagawa Prefectural Government'),
(135218, 107488, 'ja', 'name', 'ē„žå„ˆå·ēœŒåŗ'),
(135219, 107489, 'en', 'name', 'Tamakyuryo Hospital'),
(135220, 107489, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å¹øéš†ä¼šå¤šę‘©äø˜é™µē—…é™¢'),
(135221, 107490, 'en', 'name', 'Institute of Solid Mechanics'),
(135222, 107490, 'ro', 'name', 'Institutul de Mecanica Solidelor al Academiei Române'),
(135223, 107491, 'en', 'name', 'Istinye University'),
(135224, 107491, 'tr', 'name', 'İstinye Üniversitesi'),
(135225, 107492, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Techniques AvancĆ©es'),
(135226, 107493, 'el', 'name', 'Δήμος Χίου'),
(135227, 107493, 'en', 'name', 'Municipality of Chios'),
(135228, 107494, 'pt', 'name', 'Instituto Rocha Cabral'),
(135229, 107495, 'be', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ Ń‚ŃŃ…Š½Ń–Ń‡Š½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń П.Š’.Š”ŃƒŃ…Š¾Š³Š°'),
(135230, 107495, 'en', 'name', 'Sukhoi State Technical University of Gomel'),
(135231, 107495, 'ru', 'name', 'Š“Š¾Š¼ŠµŠ»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П.Šž.Š”ŃƒŃ…Š¾Š³Š¾'),
(135232, 107496, 'en', 'name', 'Sriwijaya University'),
(135233, 107496, 'id', 'name', 'Universitas Sriwijaya'),
(135234, 107497, 'en', 'name', 'Yamaguchi College of Arts'),
(135235, 107497, 'ja', 'name', 'å±±å£čŠøč”“ēŸ­ęœŸå¤§å­¦'),
(135236, 107498, 'en', 'name', 'Yaba College of Technology'),
(135237, 107499, 'no_lang_code', 'name', 'Marwadi University'),
(135238, 107500, 'en', 'name', 'Atomic Energy Society of Japan'),
(135239, 107500, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŽŸå­åŠ›å­¦ä¼š'),
(135240, 107501, 'en', 'name', 'Tsuruoka Municipal Shonai Hospital'),
(135241, 107501, 'ja', 'name', 'é¶“å²”åø‚ē«‹č˜å†…ē—…é™¢'),
(135242, 107502, 'nl', 'name', 'AZ Sint-Jan'),
(135243, 107503, 'no_lang_code', 'name', 'MSD (Latvia)'),
(135244, 107504, 'pt', 'name', 'Centro de Investigação DidÔtica e Tecnologia na Formação de Formadores'),
(135245, 107505, 'en', 'name', 'Osmania University'),
(135246, 107505, 'fr', 'name', 'UniversitƩ osmania'),
(135247, 107505, 'hi', 'name', 'ą¤‰ą¤øą„ą¤®ą¤¾ą¤Øą¤æą¤Æą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(135248, 107505, 'ml', 'name', 'ą“’ą“øąµą“®ą“¾ą“Øą“æą“Æ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(135249, 107505, 'ta', 'name', 'ą®‰ą®šąÆą®®ą®¾ą®©ą®æą®Æą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(135250, 107505, 'te', 'name', 'ą°‰ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(135251, 107505, 'ur', 'name', 'جامعہ Ų¹Ų«Ł…Ų§Ł†ŪŒŪ'),
(135252, 107506, 'en', 'name', 'Matsuyama Shinonome Junior College'),
(135253, 107506, 'ja', 'name', 'ę¾å±±ę±é›²ēŸ­ęœŸå¤§å­¦'),
(135254, 107507, 'en', 'name', 'Tsukazaki Hospital'),
(135255, 107507, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗäø‰ę „ä¼šćƒ„ć‚«ć‚¶ć‚­ē—…é™¢'),
(135256, 107508, 'en', 'name', 'Nuh Naci Yazgan University'),
(135257, 107508, 'tr', 'name', 'Nuh Naci Yazgan Üniversitesi'),
(135258, 107509, 'en', 'name', 'Business Research Institute'),
(135259, 107509, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗä¼ę„­ē ”ē©¶ä¼š'),
(135260, 107510, 'de', 'name', 'ARDIG - ArchƤologischer Dienst GesmbH'),
(135261, 107511, 'en', 'name', 'Lanzhou Jiaotong University'),
(135262, 107511, 'zh', 'name', 'å…°å·žäŗ¤é€šå¤§å­¦'),
(135263, 107512, 'en', 'name', 'Shiretoko Nature Foundation'),
(135264, 107512, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗēŸ„åŗŠč²”å›£'),
(135265, 107513, 'en', 'name', 'Osteoporosis Research Center'),
(135266, 107513, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ استئوپروز'),
(135267, 107514, 'en', 'name', 'Photocoding'),
(135268, 107514, 'ja', 'name', 'ćƒ•ć‚©ćƒˆć‚³ćƒ¼ćƒ‡ć‚£ćƒ³ć‚°'),
(135269, 107515, 'en', 'name', 'State University of Zanzibar'),
(135270, 107515, 'sw', 'name', 'Chuo Kikuu cha Taifa cha Zanzibar'),
(135271, 107516, 'en', 'name', 'Gujarat Biotechnology University'),
(135272, 107517, 'es', 'name', 'Universidad Nacional Agraria de la Selva'),
(135273, 107518, 'es', 'name', 'Universidad Bolivariana del Ecuador'),
(135274, 107519, 'en', 'name', 'Hyogo Nursing Association'),
(135275, 107519, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…µåŗ«ēœŒēœ‹č­·å”ä¼š'),
(135276, 107520, 'en', 'name', 'Chiba Prefectural Fisheries Research Center'),
(135277, 107520, 'ja', 'name', 'åƒč‘‰ēœŒę°“ē”£ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(135278, 107521, 'en', 'name', 'Akenten Appiah-Menka University of Skills Training and Entrepreneurial Development'),
(135279, 107522, 'en', 'name', 'University of Bohol'),
(135280, 107522, 'tl', 'name', 'Pamantasan ng Bohol'),
(135281, 107523, 'de', 'name', 'PƤdagogische Hochschule Weingarten'),
(135282, 107523, 'en', 'name', 'University of Education Weingarten'),
(135283, 107524, 'bn', 'name', 'বাংলাদেশ ą¦Ÿą§‡ą¦•ą§ą¦øą¦Ÿą¦¾ą¦‡ą¦² ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(135284, 107524, 'en', 'name', 'Bangladesh University of Textiles'),
(135285, 107525, 'en', 'name', 'Royal Institute of Art'),
(135286, 107525, 'fi', 'name', 'Kuninkaallinen taidekorkeakoulu'),
(135287, 107525, 'sv', 'name', 'Kungliga Konsthƶgskolan'),
(135288, 107526, 'pt', 'name', 'Sociedade Portuguesa de Enfermagem de SaĆŗde Mental'),
(135289, 107527, 'dz', 'name', 'ą½¤ą½ŗą½¦ą¼‹ą½¢ą½–ą¼‹ą½¢ą¾©ą½ŗą¼‹ą½˜ą½ą½¼ą¼‹ą½¢ą½²ą½˜ą¼‹ą½¦ą¾³ą½¼ą½–ą¼‹ą½‚ą¾²ą¾­ą¼'),
(135290, 107527, 'en', 'name', 'Sherubtse College'),
(135291, 107528, 'es', 'name', 'Universidad Hipócrates'),
(135292, 107529, 'es', 'name', 'Universidad de Manizales'),
(135293, 107530, 'en', 'name', 'Social Sports Center'),
(135294, 107530, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē¤¾ä¼šć‚¹ćƒćƒ¼ćƒ„ć‚»ćƒ³ć‚æćƒ¼'),
(135295, 107531, 'en', 'name', 'Dublin Tenants'),
(135296, 107532, 'en', 'name', 'THE Research Foundation For Pharmaceutical Sciences'),
(135297, 107532, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč–¬å­¦ē ”ē©¶å„ØåŠ±č²”å›£'),
(135298, 107533, 'en', 'name', 'Shiseikai Daini Hospital'),
(135299, 107533, 'ja', 'name', 'č‡³čŖ ä¼šē¬¬äŗŒē—…é™¢'),
(135300, 107534, 'en', 'name', 'Mie Prefecture Industrial Research Institute'),
(135301, 107534, 'ja', 'name', 'äø‰é‡ēœŒå·„ę„­ē ”ē©¶ę‰€'),
(135302, 107535, 'en', 'name', 'Fitchburg State University'),
(135303, 107535, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Fitchburg'),
(135304, 107536, 'en', 'name', 'Mountain Area Health Education Center'),
(135305, 107537, 'en', 'name', 'Music Library Association'),
(135306, 107538, 'de', 'name', 'Fachhochschule Vorarlberg'),
(135307, 107538, 'en', 'name', 'Vorarlberg University of Applied Sciences'),
(135308, 107539, 'de', 'name', 'Schweizerische Nationalbank'),
(135309, 107539, 'en', 'name', 'Swiss National Bank'),
(135310, 107540, 'en', 'name', 'National University of Laos'),
(135311, 107540, 'fr', 'name', 'UniversitƩ nationale du laos'),
(135312, 107540, 'lo', 'name', 'ąŗ”ąŗ°ąŗ«ąŗ²ąŗ§ąŗ“ąŗ—ąŗ°ąŗąŗ²ą»„ąŗ„ą»ąŗ«ą»ˆąŗ‡ąŗŠąŗ²ąŗ”'),
(135313, 107541, 'en', 'name', 'National University Toribio RodrĆ­guez de Mendoza'),
(135314, 107541, 'es', 'name', 'Universidad Nacional Toribio Rodriguez de Mendoza de Amazonas'),
(135315, 107542, 'en', 'name', 'C.V. Raman Global University'),
(135316, 107543, 'en', 'name', 'Kobe Tokushukai Hospital'),
(135317, 107543, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šē„žęˆøå¾³ę“²ä¼šē—…é™¢'),
(135318, 107544, 'en', 'name', 'University College Cork'),
(135319, 107544, 'ga', 'name', 'ColƔiste na hOllscoile'),
(135320, 107545, 'de', 'name', 'Umweltbundesamt'),
(135321, 107545, 'en', 'name', 'German Environment Agency'),
(135322, 107546, 'ca', 'name', 'Universitat Nicolau de Cusa'),
(135323, 107546, 'en', 'name', 'University Niccolò Cusano'),
(135324, 107546, 'fr', 'name', 'UniversitƩ nicolas de cues'),
(135325, 107546, 'it', 'name', 'Università degli Studi Niccolò Cusano'),
(135326, 107546, 'sl', 'name', 'Univerza Nikolaj Kuzanski'),
(135327, 107547, 'pt', 'name', 'Instituto para os Comportamentos Aditivos e as DependĆŖncias, I.P.'),
(135328, 107548, 'pt', 'name', 'Fatec Praia Grande'),
(135329, 107549, 'en', 'name', 'Micromachine Center'),
(135330, 107549, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒžć‚¤ć‚Æćƒ­ćƒžć‚·ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(135331, 107550, 'en', 'name', 'Tomsk State University of Control Systems and Radio-Electronics'),
(135332, 107550, 'ru', 'name', 'Томский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ систем ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø Ń€Š°Š“ŠøŠ¾ŃŠ»ŠµŠŗŃ‚Ń€Š¾Š½ŠøŠŗŠø'),
(135333, 107551, 'en', 'name', 'Nordic Institute for Studies in Innovation, Research and Education'),
(135334, 107552, 'en', 'name', 'Hekinan Municipal Hospital'),
(135335, 107552, 'ja', 'name', 'ē¢§å—åø‚ę°‘ē—…é™¢'),
(135336, 107553, 'en', 'name', 'Akita Research Center for Public Health and Environment'),
(135337, 107553, 'ja', 'name', 'ē§‹ē”°ēœŒå„åŗ·ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(135338, 107554, 'en', 'name', 'University of Ilorin'),
(135339, 107554, 'yo', 'name', 'YunifÔsítì ìlú Ilorin'),
(135340, 107555, 'en', 'name', 'Service Center of Port Engineering'),
(135341, 107555, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęøÆę¹¾ē©ŗęøÆē·åˆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(135342, 107556, 'en', 'name', 'Nagano Fruit Tree Experiment Station'),
(135343, 107556, 'ja', 'name', 'é•·é‡ŽēœŒęžœęØ¹č©¦éØ“å “'),
(135344, 107557, 'en', 'name', 'The Pharmaceutical Manufacturers'' Association of Tokyo'),
(135345, 107557, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬åŒ»č–¬å“å·„ę„­å”ä¼š'),
(135346, 107558, 'en', 'name', 'European University'),
(135347, 107558, 'uk', 'name', 'Š„Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(135348, 107559, 'en', 'name', 'Minneapolis Public Library'),
(135349, 107560, 'en', 'name', 'Westminster International University in Tashkent'),
(135350, 107560, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Вестминстерский Университет в Š¢Š°ŃˆŠŗŠµŠ½Ń‚е'),
(135351, 107560, 'uz', 'name', 'Toshkent Xalqaro Vestminster Universiteti'),
(135352, 107561, 'fr', 'name', 'AtmoSud'),
(135353, 107562, 'bn', 'name', 'ą¦•ą¦¾ą¦¶ą§ą¦®ą§€ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(135354, 107562, 'en', 'name', 'University of Kashmir'),
(135355, 107562, 'hi', 'name', 'ą¤•ą¤¶ą„ą¤®ą„€ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(135356, 107562, 'ta', 'name', 'ą®•ą®¾ą®šąÆą®®ąÆ€ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(135357, 107563, 'en', 'name', 'Kyoto Promotion Center'),
(135358, 107563, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½äø­å°ä¼ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(135359, 107564, 'de', 'name', 'Technische Hochschule Lübeck'),
(135360, 107564, 'en', 'name', 'Technical University of Applied Sciences Lübeck'),
(135361, 107565, 'en', 'name', 'The Japan Foundation Center'),
(135362, 107565, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŠ©ęˆč²”å›£ć‚»ćƒ³ć‚æćƒ¼'),
(135363, 107566, 'en', 'name', 'Musashimurayama Hospital'),
(135364, 107566, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£å¤§å’Œä¼šę­¦č”µę‘å±±ē—…é™¢'),
(135365, 107567, 'en', 'name', 'Canada''s Michael Smith Genome Sciences Centre'),
(135366, 107568, 'fr', 'name', 'Centre d''Economie et de Sociologie AppliquƩes Ơ l''Agriculture et aux Espaces Ruraux'),
(135367, 107569, 'en', 'name', 'University of Venda'),
(135368, 107570, 'en', 'name', 'Tsukuba International Junior College'),
(135369, 107570, 'ja', 'name', 'ć¤ćć°å›½éš›ēŸ­ęœŸå¤§å­¦'),
(135370, 107571, 'es', 'name', 'Universidad Tecnológica de la Sierra Hidalguense'),
(135371, 107572, 'en', 'name', 'Hokkaido Veterinary Medical Association'),
(135372, 107572, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ē£åŒ»åø«ä¼š'),
(135373, 107573, 'cy', 'name', 'Y Brifysgol Amaethyddol Frenhinol'),
(135374, 107573, 'en', 'name', 'Royal Agricultural University'),
(135375, 107574, 'fr', 'name', 'BIOdiversité, GÊnes & Communautés, UMR BIOdiversity, GEnes & Communities'),
(135376, 107575, 'de', 'name', 'Zentralbibliothek Zürich'),
(135377, 107575, 'en', 'name', 'Zurich Central Library'),
(135378, 107576, 'en', 'name', 'Dezful University of Medical Sciences'),
(135379, 107576, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ ŲÆŲ²ŁŁˆŁ„'),
(135380, 107577, 'en', 'name', 'Nagayoshi General Hospital'),
(135381, 107577, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåÆŗč„æå ±ę©ä¼šé•·å‰ē·åˆē—…é™¢'),
(135382, 107578, 'el', 'name', 'Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪŠĪ“ĻĻ…Ī¼Ī± Ī•ĻĪµĻ…Ī½ĻŽĪ½'),
(135383, 107578, 'en', 'name', 'National Hellenic Research Foundation'),
(135384, 107578, 'fr', 'name', 'Fondation nationale de recherche hellƩnique'),
(135385, 107579, 'de', 'name', 'Carl von Ossietzky UniversitƤt Oldenburg'),
(135386, 107579, 'en', 'name', 'Carl von Ossietzky University of Oldenburg'),
(135387, 107580, 'en', 'name', 'Ocean Discovery League'),
(135388, 107581, 'en', 'name', 'Kumiai Kousei Hospital'),
(135389, 107581, 'ja', 'name', 'JAå²é˜œåŽšē”Ÿé€£ä¹…ē¾Žę„›åŽšē”Ÿē—…é™¢'),
(135390, 107582, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŁŲ§Ų±Ų§ŲØŁŠ الجامعة'),
(135391, 107582, 'en', 'name', 'Al-Farabi University College'),
(135392, 107583, 'el', 'name', 'Ī‘Ī½ĪæĪ¹ĪŗĻ„ĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ ĪšĻĻ€ĻĪæĻ…'),
(135393, 107583, 'en', 'name', 'Open University of Cyprus'),
(135394, 107584, 'en', 'name', 'NOAA Earth System Research Laboratory'),
(135395, 107585, 'en', 'name', 'Japan Foundry Engineering Society'),
(135396, 107585, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é‹³é€ å·„å­¦ä¼š'),
(135397, 107586, 'en', 'name', 'Fussa Hospital'),
(135398, 107586, 'ja', 'name', 'å…¬ē«‹ē¦ē”Ÿē—…é™¢'),
(135399, 107587, 'en', 'name', 'In-Service Aircraft for a Global Observing System'),
(135400, 107588, 'en', 'name', 'The Life Planning Center Foundation'),
(135401, 107588, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ©ć‚¤ćƒ•ćƒ»ćƒ—ćƒ©ćƒ³ćƒ‹ćƒ³ć‚°ćƒ»ć‚»ćƒ³ć‚æćƒ¼'),
(135402, 107589, 'en', 'name', 'Moscow Aviation Institute'),
(135403, 107589, 'ru', 'name', 'Московский авиационный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(135404, 107590, 'en', 'name', 'Nagasaki Prefectural Institute of Fisheries'),
(135405, 107590, 'ja', 'name', 'é•·å“ŽēœŒē·åˆę°“ē”£č©¦éØ“å “'),
(135406, 107591, 'en', 'name', 'Berkeley Yeast'),
(135407, 107592, 'en', 'name', 'Ministry of Universities and Research'),
(135408, 107592, 'it', 'name', 'Ministero dell''universitĆ  e della ricerca'),
(135409, 107593, 'en', 'name', 'The NorthCap University'),
(135410, 107594, 'en', 'name', 'Xi''an Polytechnic University'),
(135411, 107594, 'zh', 'name', '脿安巄程大学'),
(135412, 107595, 'en', 'name', 'SMART Reading'),
(135413, 107596, 'id', 'name', 'Universitas Islam As-Syafi''iyah'),
(135414, 107597, 'en', 'name', 'Kibbutzim College of Education, Technology and the Arts'),
(135415, 107597, 'he', 'name', '×”×ž×™× ×Ø הקיבוצים'),
(135416, 107598, 'en', 'name', 'Royal Botanic Garden Edinburgh'),
(135417, 107599, 'en', 'name', 'Nottingham College'),
(135418, 107600, 'pt', 'name', 'Empresa de Pesquisa AgropecuƔria de Minas Gerais'),
(135419, 107601, 'en', 'name', 'Bureau of Economic Geology'),
(135420, 107602, 'en', 'name', 'Kizawa Memorial Hospital'),
(135421, 107602, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŽšē”Ÿä¼šęœØę²¢čØ˜åæµē—…é™¢'),
(135422, 107603, 'en', 'name', 'University of Hartford'),
(135423, 107603, 'fr', 'name', 'UniversitƩ de Hartford'),
(135424, 107604, 'en', 'name', 'National Academy of Education named after Y. Altynsarin'),
(135425, 107604, 'kk', 'name', 'Ыбырай Алтынсарин атынГағы Ұлттық білім Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(135426, 107604, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠžŠ±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Имени И.Алтынсарина'),
(135427, 107605, 'en', 'name', 'Houston Community College System'),
(135428, 107606, 'en', 'name', 'Shandong University of Art and Design'),
(135429, 107606, 'zh', 'name', 'å±±äøœå·„č‰ŗē¾ŽęœÆå­¦é™¢'),
(135430, 107607, 'en', 'name', 'Endocrine and Metabolism Research Center'),
(135431, 107607, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲŗŲÆŲÆ و Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŲ³Ł…'),
(135432, 107608, 'en', 'name', 'High Pressure Institute of Japan'),
(135433, 107608, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é«˜åœ§åŠ›ęŠ€č”“å”ä¼š'),
(135434, 107609, 'en', 'name', 'International Science Council'),
(135435, 107609, 'fr', 'name', 'Conseil International des Sciences'),
(135436, 107610, 'pt', 'name', 'Instituto Nacional da Propriedade Industrial'),
(135437, 107611, 'en', 'name', 'French National Institute for Industrial Environment and Risks'),
(135438, 107611, 'fr', 'name', 'Institut national de l''environnement industriel et des risques'),
(135439, 107612, 'en', 'name', 'State University of Papua'),
(135440, 107612, 'id', 'name', 'Universitas Negeri Papua'),
(135441, 107613, 'en', 'name', 'Lithuanian Energy Institute'),
(135442, 107614, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŲ“Ų§Ų±'),
(135443, 107614, 'en', 'name', 'University of Bechar'),
(135444, 107615, 'en', 'name', 'Japan AeroSpace Technology Foundation'),
(135445, 107615, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗčˆŖē©ŗå®‡å®™ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(135446, 107616, 'en', 'name', 'Botanic Gardens of Toyama'),
(135447, 107616, 'ja', 'name', 'åÆŒå±±ēœŒäø­å¤®ę¤ē‰©åœ’'),
(135448, 107617, 'pt', 'name', 'Escola Superior de Enfermagem do Porto'),
(135449, 107618, 'en', 'name', 'Rayat Bahra University'),
(135450, 107619, 'pt', 'name', 'Centro de LinguĆ­stica da Universidade do Porto'),
(135451, 107620, 'en', 'name', 'Japan Environmental Management Association for Industry'),
(135452, 107620, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē”£ę„­ē’°å¢ƒē®”ē†å”ä¼š'),
(135453, 107621, 'es', 'name', 'Nodos Culturales'),
(135454, 107622, 'en', 'name', 'Ohio Division of Geological Survey'),
(135455, 107623, 'en', 'name', 'All-Russian Scientific Research Institute of Physical-Technical and Radiotechnical Measurements'),
(135456, 107623, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физико-технических Šø раГиотехнических измерений'),
(135457, 107624, 'en', 'name', 'AfricArXiv'),
(135458, 107625, 'en', 'name', 'The Alan Turing Institute'),
(135459, 107626, 'en', 'name', 'Korea Institute of Civil Engineering and Building Technology'),
(135460, 107627, 'en', 'name', 'Teikyo Gakuen Junior College'),
(135461, 107627, 'ja', 'name', 'åøäŗ¬å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(135462, 107628, 'en', 'name', 'The Japan Lung Cancer Society'),
(135463, 107628, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬č‚ŗē™Œå­¦ä¼š'),
(135464, 107629, 'en', 'name', 'Universe Sciences Observatory of University Versailles Saint-Quentin'),
(135465, 107629, 'fr', 'name', 'Observatoire des sciences de l''univers de l''UniversitƩ Versailles Saint-Quentin'),
(135466, 107630, 'no_lang_code', 'name', 'Wyeth'),
(135467, 107631, 'no_lang_code', 'name', 'MSD (Serbia)'),
(135468, 107632, 'en', 'name', 'Link Campus University'),
(135469, 107632, 'it', 'name', 'L''UniversitĆ  Internazionale a Roma'),
(135470, 107633, 'en', 'name', 'Kyoto Prefectural Government'),
(135471, 107633, 'ja', 'name', '京都府庁'),
(135472, 107634, 'en', 'name', 'Fidelidade Insurance Company'),
(135473, 107634, 'pt', 'name', 'Fidelidade Companhia de Seguros SA (Portugal)'),
(135474, 107635, 'en', 'name', 'Udayana University'),
(135475, 107635, 'id', 'name', 'Universitas Udayana'),
(135476, 107636, 'en', 'name', 'Department of National Defence'),
(135477, 107636, 'fr', 'name', 'Ministère de la Défense nationale'),
(135478, 107637, 'pt', 'name', 'Fundação de Ensino e Pesquisa em Ciências da Saúde Secretaria de Estado de Saúde'),
(135479, 107638, 'en', 'name', 'Lorestan University of Medical Sciences'),
(135480, 107638, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی و Ų®ŲÆŁ…Ų§ŲŖ ŲØŁ‡ŲÆŲ§Ų“ŲŖŪŒ ŲÆŲ±Ł…Ų§Ł†ŪŒ لرستان'),
(135481, 107639, 'en', 'name', 'Guiyang Medical University'),
(135482, 107639, 'zh', 'name', 'č“µé˜³åŒ»å­¦é™¢'),
(135483, 107640, 'en', 'name', 'Earth Metabolome Initiative'),
(135484, 107641, 'en', 'name', 'Technological University of Choco'),
(135485, 107641, 'es', 'name', 'Universidad Tecnológica del Chocó Diego Luis Córdoba'),
(135486, 107642, 'en', 'name', 'Central Mining Institute'),
(135487, 107643, 'en', 'name', 'Prin. L. N. Welingkar Institute of Management Development and Research'),
(135488, 107644, 'fr', 'name', 'Centre de Droit Social'),
(135489, 107645, 'en', 'name', 'Geological Carbon Dioxide Storage Technology Research Association'),
(135490, 107645, 'ja', 'name', 'äŗŒé…øåŒ–ē‚­ē“ åœ°äø­č²Æē•™ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(135491, 107646, 'id', 'name', 'Institut Seni Indonesia Surakarta'),
(135492, 107647, 'en', 'name', 'SKEMA Business School'),
(135493, 107648, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ؓعيب Ų§Ł„ŲÆŁƒŲ§Ł„ŁŠ'),
(135494, 107648, 'en', 'name', 'Chouaib Doukkali University'),
(135495, 107648, 'fr', 'name', 'UniversitƩ Chouaib Doukkali'),
(135496, 107649, 'es', 'name', 'CARTIF'),
(135497, 107650, 'es', 'name', 'Instituto Argentino de Investigaciones de las Zonas Aridas'),
(135498, 107651, 'en', 'name', 'OP Jindal University'),
(135499, 107652, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŁŠŲÆŲ£ŁˆŲ“Ł†'),
(135500, 107652, 'en', 'name', 'Midocean University'),
(135501, 107652, 'fr', 'name', 'UniversitƩ Midocean'),
(135502, 107653, 'en', 'name', 'Shijonawate Gakuen Junior College'),
(135503, 107653, 'ja', 'name', 'å››ę¢ē•·å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(135504, 107654, 'en', 'name', 'Chigasaki Municipal Hospital'),
(135505, 107654, 'ja', 'name', 'čŒ…ćƒ¶å“Žåø‚ē«‹ē—…é™¢'),
(135506, 107655, 'de', 'name', 'UniversitƤt Luxemburg'),
(135507, 107655, 'en', 'name', 'University of Luxembourg'),
(135508, 107655, 'fr', 'name', 'UniversitƩ du Luxembourg'),
(135509, 107656, 'es', 'name', 'Universidad Tecnica de Machala'),
(135510, 107657, 'en', 'name', 'The New Industry Research Organization'),
(135511, 107657, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę–°ē”£ę„­å‰µé€ ē ”ē©¶ę©Ÿę§‹'),
(135512, 107658, 'en', 'name', 'University of International Studies of Rome'),
(135513, 107658, 'it', 'name', 'Libera UniversitĆ  degli Studi Per l''Innovazione e le Organizzazioni, UniversitĆ  degli Studi Internazionali di Roma'),
(135514, 107659, 'en', 'name', 'Korea Institute for Health and Social Affairs'),
(135515, 107659, 'ko', 'name', 'ķ•œźµ­ė³“ź±“ģ‚¬ķšŒģ—°źµ¬ģ›'),
(135516, 107660, 'en', 'name', 'Japan Public Health Association'),
(135517, 107660, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å…¬č”†č”›ē”Ÿå”ä¼š'),
(135518, 107661, 'no_lang_code', 'name', 'Uninova'),
(135519, 107662, 'en', 'name', 'TecMilenio University'),
(135520, 107662, 'es', 'name', 'Universidad TecMilenio'),
(135521, 107663, 'en', 'name', 'University of HKBP Nommensen'),
(135522, 107663, 'id', 'name', 'Huria Kristen Batak Protestan'),
(135523, 107664, 'en', 'name', 'Center for Marine Sciences and Technology'),
(135524, 107665, 'en', 'name', 'National Institute of Telecommunications'),
(135525, 107665, 'pt', 'name', 'Instituto Nacional de TelecomunicaƧƵes'),
(135526, 107666, 'en', 'name', 'Rheumatology Research Center'),
(135527, 107666, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų±ŁˆŁ…Ų§ŲŖŁˆŁ„ŁˆŚ˜ŪŒ'),
(135528, 107667, 'en', 'name', 'KIOS Research and Innovation Center of Excellence'),
(135529, 107668, 'en', 'name', 'Hyogo College'),
(135530, 107668, 'ja', 'name', 'å…µåŗ«å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(135531, 107669, 'pt', 'name', 'Fundação José Saramago'),
(135532, 107670, 'no_lang_code', 'name', 'Sciex (Canada)'),
(135533, 107671, 'af', 'name', 'Tshwane-Universiteit van Tegnologie'),
(135534, 107671, 'en', 'name', 'Tshwane University of Technology'),
(135535, 107672, 'en', 'name', 'Yasuj University of Medical Sciences'),
(135536, 107673, 'en', 'name', 'Hindustan Institute of Technology and Science'),
(135537, 107673, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ąÆą®šąÆą®¤ąÆą®¤ą®¾ą®©ąÆ ą®Ŗā€Œą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(135538, 107674, 'en', 'name', 'Hirakata Kohsai Hospital'),
(135539, 107674, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šęžšę–¹å…¬ęøˆē—…é™¢'),
(135540, 107675, 'en', 'name', 'Mie Prefecture Health and Environment Research Institute'),
(135541, 107675, 'ja', 'name', 'äø‰é‡ēœŒäæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(135542, 107676, 'es', 'name', 'Universidad PolitƩcnica de Juventino Rosas'),
(135543, 107677, 'en', 'name', 'International Center for Tropical Agriculture'),
(135544, 107677, 'es', 'name', 'Centro Internacional de Agricultura Tropical'),
(135545, 107678, 'en', 'name', 'University of Azuay'),
(135546, 107678, 'es', 'name', 'Universidad del Azuay'),
(135547, 107679, 'fr', 'name', 'Centre National de Recherche Agronomique'),
(135548, 107680, 'fr', 'name', 'Centre d''Investigation Clinique - Innovation Technologique de Garches'),
(135549, 107681, 'id', 'name', 'Universitas Wijaya Putra'),
(135550, 107682, 'en', 'name', 'Fukushima Institute of Public Health'),
(135551, 107682, 'ja', 'name', 'ē¦å³¶ēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(135552, 107683, 'en', 'name', 'Chugoku Junior College'),
(135553, 107683, 'ja', 'name', 'äø­å›½ēŸ­ęœŸå¤§å­¦'),
(135554, 107684, 'en', 'name', 'Tokyo Dental Junior College'),
(135555, 107684, 'ja', 'name', 'ę±äŗ¬ę­Æē§‘å¤§å­¦ēŸ­ęœŸå¤§å­¦'),
(135556, 107685, 'en', 'name', 'Embassy of the Republic of Indonesia Lisabon'),
(135557, 107685, 'id', 'name', 'Kedutaan Besar Republik Indonesia Lisabon Republik Portugal'),
(135558, 107685, 'pt', 'name', 'Embaixada da República da Indonésia'),
(135559, 107686, 'en', 'name', 'Japan Institute of Navigation'),
(135560, 107686, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čˆŖęµ·å­¦ä¼š'),
(135561, 107687, 'en', 'name', 'Sichuan Agricultural University'),
(135562, 107687, 'zh', 'name', 'å››å·å†œäøšå¤§å­¦'),
(135563, 107688, 'en', 'name', 'Institute of Political Science of the Slovak Academy of Sciences'),
(135564, 107688, 'sk', 'name', 'Ústav politických vied SlovenskÔ akadémia vied'),
(135565, 107689, 'en', 'name', 'Rockhurst University'),
(135566, 107690, 'en', 'name', 'Mt. Cuba Astronomical Foundation'),
(135567, 107691, 'en', 'name', 'Fukuoka Prefectural Police'),
(135568, 107691, 'ja', 'name', 'ē¦å²”ēœŒč­¦åÆŸ'),
(135569, 107692, 'en', 'name', 'Jaipuria Institute of Management'),
(135570, 107693, 'en', 'name', 'Constantine the Philosopher University in Nitra'),
(135571, 107693, 'hu', 'name', 'Nyitrai Konstantin Filozófus Egyetem'),
(135572, 107693, 'sk', 'name', 'Univerzita KonŔtantína Filozofa v Nitre'),
(135573, 107694, 'no_lang_code', 'name', 'CeNTI (Portugal)'),
(135574, 107695, 'en', 'name', 'Nagasaki Rehabilitation'),
(135575, 107695, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę˜ÆēœŸä¼šé•·å“ŽćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(135576, 107696, 'en', 'name', 'Warsaw Academy of Applied Medical Sciences'),
(135577, 107696, 'pl', 'name', 'Warszawska Akademia Medyczna Nauk Stosowanych'),
(135578, 107697, 'en', 'name', 'Niigata Rheumatic Center'),
(135579, 107697, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ćƒŖć‚¦ćƒžćƒć‚»ćƒ³ć‚æćƒ¼'),
(135580, 107698, 'el', 'name', 'Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ ĪˆĻĪµĻ…Ī½Ī±Ļ‚ Ī¦Ļ…ĻƒĪ¹ĪŗĻŽĪ½ Ī•Ļ€Ī¹ĻƒĻ„Ī·Ī¼ĻŽĪ½ Ī”Ī·Ī¼ĻŒĪŗĻĪ¹Ļ„ĪæĻ‚'),
(135581, 107698, 'en', 'name', 'National Centre of Scientific Research "Demokritos"'),
(135582, 107699, 'ca', 'name', 'Hospital de Figueres'),
(135583, 107700, 'no_lang_code', 'name', 'Intercell (Austria)'),
(135584, 107701, 'en', 'name', 'Oldham College'),
(135585, 107702, 'en', 'name', 'University of the Gambia'),
(135586, 107703, 'en', 'name', 'Tottori Institute of Industrial Technology'),
(135587, 107703, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗé³„å–ēœŒē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(135588, 107704, 'en', 'name', 'Technological Centre for Ceramics and Glass'),
(135589, 107704, 'pt', 'name', 'Centro Tecnológico da Cerâmica e do Vidro (Portugal)'),
(135590, 107705, 'en', 'name', 'Kiryu Kosei General Hospital'),
(135591, 107705, 'ja', 'name', 'ę”ē”ŸåŽšē”Ÿē·åˆē—…é™¢'),
(135592, 107706, 'en', 'name', 'Sendai Tokushukai Hospital'),
(135593, 107706, 'ja', 'name', 'ä»™å°å¾³ę“²ä¼šē—…é™¢'),
(135594, 107707, 'en', 'name', 'Truman State University'),
(135595, 107708, 'en', 'name', 'Concordia University Press'),
(135596, 107709, 'no_lang_code', 'name', 'AlmavivA (Italy)'),
(135597, 107710, 'en', 'name', 'Tokushima Prefectural Industrial Technology Center'),
(135598, 107710, 'ja', 'name', 'å¾³å³¶ēœŒē«‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(135599, 107711, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© البتراؔ'),
(135600, 107711, 'en', 'name', 'Petra University'),
(135601, 107712, 'id', 'name', 'Universitas ''Aisyiyah Yogyakarta'),
(135602, 107713, 'no_lang_code', 'name', 'Industriplast (Norway)'),
(135603, 107714, 'en', 'name', 'University of Taipei'),
(135604, 107714, 'zh', 'name', 'č‡ŗåŒ—åø‚ē«‹å¤§å­øę ”ęœ¬éƒØ'),
(135605, 107715, 'de', 'name', 'Hochschule für Technik Stuttgart'),
(135606, 107715, 'en', 'name', 'Stuttgart University of Applied Sciences'),
(135607, 107716, 'en', 'name', 'Nitobe Memorial Nakano General Hospital'),
(135608, 107716, 'ja', 'name', 'ę±äŗ¬åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆę–°ęø”ęˆøčØ˜åæµäø­é‡Žē·åˆē—…é™¢'),
(135609, 107717, 'en', 'name', 'Viterbo University'),
(135610, 107718, 'en', 'name', 'Nozaki Tokushukai Hospital'),
(135611, 107718, 'ja', 'name', 'é‡Žå“Žå¾³ę“²ä¼šē—…é™¢'),
(135612, 107719, 'de', 'name', 'Institut für Wohnbauforschung'),
(135613, 107720, 'en', 'name', 'Architectural Research Association'),
(135614, 107720, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰ē ”ē©¶å”ä¼š'),
(135615, 107721, 'en', 'name', 'BitsLab, BitsLab (Singapore)'),
(135616, 107722, 'en', 'name', 'Design Academy Eindhoven'),
(135617, 107723, 'ja', 'name', 'ęø…ę°“å»ŗčØ­ę Ŗå¼ä¼šē¤¾'),
(135618, 107723, 'no_lang_code', 'name', 'Shimizu (Japan)'),
(135619, 107724, 'en', 'name', 'Natural History Museum'),
(135620, 107725, 'en', 'name', 'Abia State University'),
(135621, 107725, 'yo', 'name', 'YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ ƁbĆ­Ć”'),
(135622, 107726, 'en', 'name', 'Bronisław Markiewicz State Higher School of Technology and Economics in Jarosław'),
(135623, 107726, 'pl', 'name', 'Państwowa Wyższa Szkoła Techniczno-Ekonomiczna im. ks. B. Markiewicza w Jarosławiu'),
(135624, 107727, 'en', 'name', 'Columbia College Chicago'),
(135625, 107728, 'en', 'name', 'National Law School of India University'),
(135626, 107728, 'fr', 'name', 'Ɖcole nationale de droit de l''universitĆ© de l''inde'),
(135627, 107728, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ विधि ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(135628, 107728, 'kn', 'name', 'ą²Øą³ą²Æą²¾ą²·ą²Øą²²ą³ā€Œ ಲಾ ą²øą³ą²•ą³‚ą²²ą³ā€Œ ą²†ą²«ą³ā€Œ ಇಂಔಿಯಾ'),
(135629, 107729, 'de', 'name', 'Leibniz-Institut für Troposphärenforschung'),
(135630, 107729, 'en', 'name', 'Leibniz Institute for Tropospheric Research'),
(135631, 107730, 'en', 'name', 'Hubei University'),
(135632, 107730, 'zh', 'name', 'ę¹–åŒ—å¤§å­¦'),
(135633, 107731, 'en', 'name', 'Hanyu General Hospital'),
(135634, 107731, 'ja', 'name', 'åŸ¼ēŽ‰åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆē¾½ē”Ÿē·åˆē—…é™¢'),
(135635, 107732, 'fr', 'name', 'Centre d''Enseignement et de Recherche en Environnement AtmosphƩrique'),
(135636, 107733, 'id', 'name', 'Universitas Islam Negeri Maulana Malik Ibrahim'),
(135637, 107734, 'en', 'name', 'Military University Hospital Prague'),
(135638, 107735, 'pt', 'name', 'Centro de Tecnologia Mecânica e Automação'),
(135639, 107736, 'en', 'name', 'Vancouver School of Theology'),
(135640, 107737, 'cs', 'name', 'Psychologický Ćŗstav AV ČR, Psychologický Ćŗstav AV ČR, v. v. i., Psychologický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(135641, 107737, 'en', 'name', 'Czech Academy of Sciences, Institute of Psychology'),
(135642, 107738, 'en', 'name', 'North China University of Water Resources and Electric Power'),
(135643, 107738, 'zh', 'name', 'åŽåŒ—ę°“åˆ©ę°“ē”µå¤§å­¦'),
(135644, 107739, 'de', 'name', 'UniversitƤt Pisa'),
(135645, 107739, 'en', 'name', 'University of Pisa'),
(135646, 107739, 'fr', 'name', 'UniversitƩ de Pise'),
(135647, 107739, 'it', 'name', 'UniversitĆ  di Pisa'),
(135648, 107740, 'en', 'name', 'Swiss Tropical and Public Health Institute'),
(135649, 107741, 'en', 'name', 'South China Business College Guangdong University of Foreign Studies'),
(135650, 107741, 'zh', 'name', 'å¹æäøœå¤–čÆ­å¤–č“øå¤§å­¦å—å›½å•†å­¦é™¢, ęˆæäøœå¤–čÆ­å¤–č“øå¤§å­¦å—å›½å•†å­øé™¢'),
(135651, 107742, 'en', 'name', 'Sri Karan Narendra Agriculture University, Jobner, ą¤¶ą„ą¤°ą„€ करण ą¤Øą¤°ą„‡ą¤‚ą¤¦ą„ą¤° ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤œą„‹ą¤¬ą¤Øą„‡ą¤°'),
(135652, 107743, 'en', 'name', 'Institute of Archaeology'),
(135653, 107743, 'no_lang_code', 'name', 'ArheoloŔki Institut'),
(135654, 107743, 'sr', 'name', 'ŠŃ€Ń…ŠµŠ¾Š»Š¾ŃˆŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(135655, 107744, 'en', 'name', 'NASK National Research Institute'),
(135656, 107744, 'pl', 'name', 'NASK Państwowy Instytut Badawczy'),
(135657, 107745, 'en', 'name', 'Japanese Society of Oral Implantology'),
(135658, 107745, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å£č…”ć‚¤ćƒ³ćƒ—ćƒ©ćƒ³ćƒˆå­¦ä¼š'),
(135659, 107746, 'ca', 'name', 'Universitat de PerpinyĆ  Via DomĆ­cia'),
(135660, 107746, 'en', 'name', 'University of Perpignan'),
(135661, 107746, 'fr', 'name', 'UniversitƩ de Perpignan'),
(135662, 107747, 'en', 'name', 'Muhammadiyah University of Yogyakarta'),
(135663, 107747, 'id', 'name', 'Universitas Muhammadiyah Yogyakarta'),
(135664, 107748, 'en', 'name', 'Marietta College'),
(135665, 107749, 'en', 'name', 'National University Zaporizhzhia Polytechnic'),
(135666, 107749, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠ° політехніка»'),
(135667, 107750, 'en', 'name', 'Radioactive and Decommissioning Center'),
(135668, 107750, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›ćƒćƒƒć‚Æć‚Øćƒ³ćƒ‰ęŽØé€²ć‚»ćƒ³ć‚æćƒ¼'),
(135669, 107751, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© وارث Ų§Ł„Ų£Ł†ŲØŁŠŲ§Ų”'),
(135670, 107751, 'en', 'name', 'University of Warith Al-Anbiyaa'),
(135671, 107752, 'en', 'name', 'Norwegian Polar Institute'),
(135672, 107753, 'en', 'name', 'Natural Hazards Research Australia'),
(135673, 107754, 'en', 'name', 'Basque Center for Applied Mathematics'),
(135674, 107755, 'en', 'name', 'Institute of Power Engineering'),
(135675, 107756, 'en', 'name', 'Seton Hill University'),
(135676, 107757, 'ca', 'name', 'Fundació Institut de Recerca en Energia de Catalunya, Institut de Recerca en Energia de Catalunya'),
(135677, 107758, 'en', 'name', 'Sharda University'),
(135678, 107759, 'pt', 'name', 'Fundação Amadeu Dias'),
(135679, 107760, 'en', 'name', 'Architectural Association School of Architecture'),
(135680, 107761, 'pt', 'name', 'História Territórios e Comunidades'),
(135681, 107762, 'en', 'name', 'Office for Government Policy Coordination Prime Minister''s Secretariat'),
(135682, 107762, 'ko', 'name', '국묓씰정실 źµ­ė¬“ģ“ė¦¬ė¹„ģ„œģ‹¤'),
(135683, 107763, 'en', 'name', 'University of Lucknow'),
(135684, 107763, 'hi', 'name', 'ą¤²ą¤–ą¤Øą¤Š ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(135685, 107763, 'pa', 'name', 'ąØ²ąØ–ąØØąØŠ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(135686, 107764, 'en', 'name', 'Shimane Prefectural Mountainous Regions Research Center'),
(135687, 107764, 'ja', 'name', 'å³¶ę ¹ēœŒäø­å±±é–“åœ°åŸŸē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(135688, 107765, 'es', 'name', 'Institución Universitaria Escolme'),
(135689, 107766, 'en', 'name', 'Wakayama Prefectural Police'),
(135690, 107766, 'ja', 'name', 'å’Œę­Œå±±ēœŒč­¦åÆŸ'),
(135691, 107767, 'el', 'name', 'Ethniko Kentro Erevnas Kai Technologikis Anaptyxis, Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪšĪ­Ī½Ļ„ĻĪæ ĪˆĻĪµĻ…Ī½Ī±Ļ‚ και Τεχνολογικής Ανάπτυξης'),
(135692, 107767, 'en', 'name', 'Centre for Research and Technology Hellas'),
(135693, 107768, 'en', 'name', 'University of Antioquia'),
(135694, 107768, 'es', 'name', 'Universidad de Antioquia'),
(135695, 107769, 'en', 'name', 'Wuhan University of Engineering Science'),
(135696, 107769, 'zh', 'name', 'ę­¦ę±‰å·„ēØ‹ē§‘ęŠ€å­¦é™¢'),
(135697, 107770, 'en', 'name', 'Mie Prefectural Shima Hospital'),
(135698, 107770, 'ja', 'name', 'äø‰é‡ēœŒē«‹åæ—ę‘©ē—…é™¢'),
(135699, 107771, 'pt', 'name', 'Jerónimo Martins (Portugal)'),
(135700, 107772, 'en', 'name', 'Vignan''s Foundation for Science, Technology & Research'),
(135701, 107773, 'en', 'name', 'Dr. Yashwant Singh Parmar University of Horticulture and Forestry'),
(135702, 107773, 'hi', 'name', 'ą¤”ą„‰. यशवंत ą¤øą¤æą¤‚ą¤˜ परमार ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤¹ą„‰ą¤°ą„ą¤Ÿą¤æą¤•ą¤²ą„ą¤šą¤° ą¤ą¤‚ą¤” ą¤«ą„‹ą¤°ą„‡ą¤øą„ą¤Ÿą„ą¤°ą„€'),
(135703, 107774, 'it', 'name', 'UniversitĆ  della Svizzera italiana'),
(135704, 107775, 'en', 'name', 'University of Ottawa'),
(135705, 107775, 'fr', 'name', 'UniversitƩ d''Ottawa'),
(135706, 107776, 'en', 'name', 'Maejo University'),
(135707, 107776, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹ąø”ą¹ˆą¹‚ąøˆą¹‰'),
(135708, 107777, 'en', 'name', 'Fujian University of Technology'),
(135709, 107777, 'zh', 'name', 'ē¦å»ŗå·„ēØ‹å­¦é™¢'),
(135710, 107778, 'es', 'name', 'Fundación Universitaria Konrad Lorenz'),
(135711, 107779, 'en', 'name', 'Fukui Prefectural Government'),
(135712, 107779, 'ja', 'name', 'ē¦äŗ•ēœŒåŗ'),
(135713, 107780, 'cs', 'name', 'StudijnĆ­ a vědeckĆ” knihovna v Hradci KrĆ”lovĆ©'),
(135714, 107780, 'en', 'name', 'The Research Library in Hradec Kralove'),
(135715, 107781, 'de', 'name', 'Landschaftsverband Westfalen-Lippe'),
(135716, 107782, 'no_lang_code', 'name', 'Qufu Normal University'),
(135717, 107782, 'zh', 'name', 'ę›²é˜œåøˆčŒƒå¤§å­¦'),
(135718, 107783, 'en', 'name', 'WSP (New Zealand)'),
(135719, 107784, 'es', 'name', 'Hospital Universitario de La Princesa'),
(135720, 107785, 'fr', 'name', 'UniversitƩ Catholique de Bukavu'),
(135721, 107786, 'en', 'name', 'Minamisoma Municipal General Hospital'),
(135722, 107786, 'ja', 'name', 'å—ē›øé¦¬åø‚ē«‹ē·åˆē—…é™¢'),
(135723, 107787, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł†ŁˆŲ± الجامعة'),
(135724, 107787, 'en', 'name', 'Al Noor University College'),
(135725, 107788, 'en', 'name', 'Metropolitan Museum of Art'),
(135726, 107788, 'es', 'name', 'Museo Metropolitano de Arte'),
(135727, 107789, 'en', 'name', 'Canadian Army'),
(135728, 107789, 'fr', 'name', 'ArmƩe canadienne'),
(135729, 107790, 'no_lang_code', 'name', 'MSD (Lithuania)'),
(135730, 107791, 'en', 'name', 'Livestock Industry''s Environmental Improvement Organization'),
(135731, 107791, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē•œē”£ē’°å¢ƒę•“å‚™ę©Ÿę§‹'),
(135732, 107792, 'fr', 'name', 'Institut de Recherche Technologique SystemX'),
(135733, 107793, 'en', 'name', 'Korea Electrotechnology Research Institute'),
(135734, 107793, 'ko', 'name', 'ķ•œźµ­ģ „źø°ģ—°źµ¬ģ›'),
(135735, 107794, 'en', 'name', 'Liverpool Hope University'),
(135736, 107795, 'en', 'name', 'University Medical Center Groningen'),
(135737, 107795, 'nl', 'name', 'Universitair Medisch Centrum Groningen'),
(135738, 107796, 'fr', 'name', 'FƩdƩration RƩgionale des Acteurs en Promotion de la SantƩ'),
(135739, 107797, 'el', 'name', 'Ethnicon Metsovion Polytechnion, Ī•ĪøĪ½Ī¹ĪŗĻŒ ĪœĪµĻ„ĻƒĻŒĪ²Ī¹Īæ Πολυτεχνείο'),
(135740, 107797, 'en', 'name', 'National Technical University of Athens'),
(135741, 107797, 'fr', 'name', 'Ɖcole polytechnique d''athĆØnes'),
(135742, 107798, 'en', 'name', 'Seirei Yokohama Hospital'),
(135743, 107798, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗč–éš·ē¦ē„‰äŗ‹ę„­å›£č–éš·ęØŖęµœē—…é™¢'),
(135744, 107799, 'en', 'name', 'African Institute for Mathematical Sciences'),
(135745, 107800, 'no_lang_code', 'name', 'University Centre in Svalbard'),
(135746, 107801, 'de', 'name', 'Hochschule Macromedia'),
(135747, 107801, 'en', 'name', 'Macromedia University'),
(135748, 107802, 'en', 'name', 'Colombian Corporation for Agricultural Research - AGROSAVIA'),
(135749, 107802, 'es', 'name', 'Corporación Colombiana de Investigación Agropecuaria – AGROSAVIA'),
(135750, 107803, 'en', 'name', 'Technical University of Civil Engineering of Bucharest'),
(135751, 107803, 'ro', 'name', 'Universitatea Tehnică de Construcții din București'),
(135752, 107804, 'en', 'name', 'Kasukabe Medical Center'),
(135753, 107804, 'ja', 'name', 'ę˜„ę—„éƒØåø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(135754, 107805, 'en', 'name', 'University of Technology Sarawak'),
(135755, 107805, 'ms', 'name', 'Universiti Teknologi Sarawak'),
(135756, 107806, 'en', 'name', 'Tashkent State University of Oriental Studies'),
(135757, 107806, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š¾ŃŃ‚Š¾ŠŗŠ¾Š²ŠµŠ“ŠµŠ½ŠøŃ'),
(135758, 107806, 'uz', 'name', 'Toshkent davlat sharqshunoslik universiteti'),
(135759, 107807, 'en', 'name', 'Urban Renaissance Agency'),
(135760, 107807, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗéƒ½åø‚å†ē”Ÿę©Ÿę§‹'),
(135761, 107808, 'en', 'name', 'Muhammadiyah University of Ponorogo'),
(135762, 107809, 'no_lang_code', 'name', 'Research Center Pharmaceutical Engineering (Austria)'),
(135763, 107810, 'en', 'name', 'Japan Travel Bureau Foundation'),
(135764, 107810, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äŗ¤é€šå…¬ē¤¾'),
(135765, 107811, 'en', 'name', 'The Japan P.E.N. club'),
(135766, 107811, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒšćƒ³ć‚Æćƒ©ćƒ–'),
(135767, 107812, 'tr', 'name', 'Ɩzgür Yayınları'),
(135768, 107813, 'en', 'name', 'Japan Building Management Institute'),
(135769, 107813, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ“ćƒ«ćƒ‚ćƒ³ć‚°ēµŒå–¶ć‚»ćƒ³ć‚æćƒ¼'),
(135770, 107814, 'bn', 'name', 'ą¦¦ą§ą¦Æ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ ą¦Ŗą§ą¦Æą¦¾ą¦øą¦æą¦«ą¦æą¦•'),
(135771, 107814, 'en', 'name', 'University of Asia Pacific'),
(135772, 107815, 'no_lang_code', 'name', 'Austrian Centre of Industrial Biotechnology (Austria)'),
(135773, 107816, 'en', 'name', 'Congress of Deputies'),
(135774, 107816, 'es', 'name', 'Congreso de los Diputados'),
(135775, 107817, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų§ŁƒŁŠŲ±ŁŠŲ±ŁŠ'),
(135776, 107817, 'en', 'name', 'Makerere University'),
(135777, 107817, 'sw', 'name', 'Chuo Kikuu cha Makerere'),
(135778, 107818, 'en', 'name', 'National Institute for Biological Standards and Control'),
(135779, 107819, 'en', 'name', 'NMEMS Technology Research Organization'),
(135780, 107819, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆNMEMSęŠ€č”“ē ”ē©¶ę©Ÿę§‹'),
(135781, 107820, 'pt', 'name', 'Universidade da Região da Campanha'),
(135782, 107821, 'en', 'name', 'Shenyang Pharmaceutical University'),
(135783, 107822, 'en', 'name', 'Raisoni Group of Institutions'),
(135784, 107823, 'en', 'name', 'Regional Health Care and Social Agency Saint Paul and Carlo'),
(135785, 107823, 'it', 'name', 'Azienda Socio Sanitaria Territoriale Santi Paolo e Carlo'),
(135786, 107824, 'en', 'name', 'Chutoen General Medical Center'),
(135787, 107824, 'ja', 'name', 'ęŽ›å·åø‚ćƒ»č¢‹äŗ•åø‚ē—…é™¢ä¼ę„­å›£ē«‹äø­ę±é ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(135788, 107825, 'en', 'name', 'Guangxi Medical University'),
(135789, 107825, 'zh', 'name', 'å¹æč„æåŒ»ē§‘å¤§å­¦'),
(135790, 107826, 'en', 'name', 'Oulu University of Applied Sciences'),
(135791, 107826, 'fi', 'name', 'Oulun seudun ammattikorkeakoulu'),
(135792, 107827, 'en', 'name', 'Medical Center "LORIMED" LLC'),
(135793, 107828, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų±ŁŠ'),
(135794, 107828, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Hydraulique'),
(135795, 107829, 'no_lang_code', 'name', 'SIMAD University'),
(135796, 107830, 'en', 'name', 'Shin-yurigaoka General Hospital'),
(135797, 107830, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£äø‰ęˆä¼šę–°ē™¾åˆćƒ¶äø˜ē·åˆē—…é™¢'),
(135798, 107831, 'en', 'name', 'Institute of Rural Management Anand'),
(135799, 107831, 'te', 'name', 'ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°°ą±‚ą°°ą°²ą± ą°®ą±‡ą°Øą±‡ą°œą±ą°®ą±†ą°‚ą°Ÿą±'),
(135800, 107832, 'en', 'name', 'Itabashi Chuo Medical Center'),
(135801, 107832, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę˜ŽčŠ³ä¼šęæę©‹äø­å¤®ē·åˆē—…é™¢'),
(135802, 107833, 'en', 'name', 'Yamagata Prefectural Forest Research and Instruction Center'),
(135803, 107833, 'ja', 'name', 'å±±å½¢ēœŒę£®ęž—ē ”ē©¶ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(135804, 107834, 'en', 'name', 'Indian Institute of Information Technology, Nagpur, इंऔियन ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤‡ą¤Øą¤«ą¤°ą„ą¤®ą„‡ą¤¶ą¤Ø ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€, ą¤Øą¤¾ą¤—ą¤Ŗą„ą¤°'),
(135805, 107835, 'en', 'name', 'Tianjin Renai College'),
(135806, 107835, 'zh', 'name', '天擄仁愛學院'),
(135807, 107836, 'en', 'name', 'Sukkur IBA University'),
(135808, 107836, 'ur', 'name', 'سکر آئي بي اي ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ'),
(135809, 107837, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ Ų§Ł„ŲØŲ“ŁŠŲ± Ų§Ł„Ų§ŲØŲ±Ų§Ł‡ŁŠŁ…ŁŠŲŒ ŲØŲ±Ų¬ بوعريريج'),
(135810, 107837, 'en', 'name', 'University Mohamed El Bachir El Ibrahimi of Bordj Bou Arreridj'),
(135811, 107837, 'fr', 'name', 'UniversitƩ Mohamed El Bachir El Ibrahimi de Bordj Bou ArrƩridj'),
(135812, 107838, 'en', 'name', 'Lindsey Wilson College'),
(135813, 107839, 'en', 'name', 'George Brown College'),
(135814, 107840, 'bn', 'name', 'লিঔিং ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ'),
(135815, 107840, 'en', 'name', 'Leading University'),
(135816, 107841, 'en', 'name', 'Japanese Organisation for Research and Treatment of Cancer'),
(135817, 107841, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗJORTC'),
(135818, 107842, 'en', 'name', 'Wakefield College'),
(135819, 107843, 'en', 'name', 'Hyogo Prefectural Tamba Medical Center'),
(135820, 107843, 'ja', 'name', 'å…µåŗ«ēœŒē«‹äø¹ę³¢åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(135821, 107844, 'en', 'name', 'Antenor Orrego Private University'),
(135822, 107844, 'es', 'name', 'Universidad Privada Antenor Orrego'),
(135823, 107845, 'en', 'name', 'Academy of Public Administration under the President of the Republic of Kazakhstan'),
(135824, 107845, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Ń–Š½Ń–Ņ£ жанынГағы ŠœŠµŠ¼Š»ŠµŠŗŠµŃ‚Ń‚Ń–Šŗ Š±Š°ŃŅ›Š°Ń€Ńƒ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(135825, 107845, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Š³Š¾ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ при ŠŸŃ€ŠµŠ·ŠøŠ“енте Республики ŠšŠ°Š·Š°Ń…стан'),
(135826, 107846, 'de', 'name', 'Universität für Weiterbildung Krems'),
(135827, 107846, 'en', 'name', 'University for Continuing Education Krems'),
(135828, 107847, 'en', 'name', 'Aomori Prefectural Public Health and Environment Center'),
(135829, 107847, 'ja', 'name', 'é’ę£®ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(135830, 107848, 'en', 'name', 'Maryland Geological Survey'),
(135831, 107849, 'en', 'name', 'Indus University'),
(135832, 107850, 'en', 'name', 'Scientific and Research Centre for Fire Protection'),
(135833, 107851, 'en', 'name', 'University of Niigata Prefecture'),
(135834, 107851, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹å¤§å­¦'),
(135835, 107852, 'en', 'name', 'Korea Research Institute of Bioscience and Biotechnology'),
(135836, 107852, 'ko', 'name', 'ķ•œźµ­ģƒėŖ…ź³µķ•™ģ—°źµ¬ģ›'),
(135837, 107853, 'de', 'name', 'Leibniz-Institut für Verbundwerkstoffe GmbH'),
(135838, 107854, 'pt', 'name', 'Centro de Investigação Desenvolvimento e Inovação em Turismo'),
(135839, 107855, 'en', 'name', 'National Institute of Research and Development for Optoelectronics'),
(135840, 107856, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ų®ŁˆŁŠŁ†'),
(135841, 107856, 'en', 'name', 'Al Akhawayn University'),
(135842, 107857, 'en', 'name', 'Royal Military Academy Sandhurst'),
(135843, 107858, 'en', 'name', 'National Sanatorium Okinawa Airakuen'),
(135844, 107858, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€ę²–ēø„ę„›ę„½åœ’'),
(135845, 107859, 'en', 'name', 'Latvia University of Life Sciences and Technologies'),
(135846, 107859, 'lt', 'name', 'Latvijos Žemės Ükio Universitetas'),
(135847, 107859, 'lv', 'name', 'Latvijas Biozinātņu un tehnoloģiju universitāte'),
(135848, 107859, 'ru', 'name', 'Латвийский ŃŠµŠ»ŃŒŃŠŗŠ¾Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(135849, 107860, 'fr', 'name', 'Laboratoire Dynamique de la BiodiversitƩ'),
(135850, 107861, 'pt', 'name', 'Centro de Economia e FinanƧas'),
(135851, 107862, 'en', 'name', 'Japan Osteoporosis Foundation'),
(135852, 107862, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéŖØē²—é¬†ē—‡č²”å›£'),
(135853, 107863, 'el', 'name', 'Πολυτεχνείο ĪšĻĪ®Ļ„Ī·Ļ‚'),
(135854, 107863, 'en', 'name', 'Technical University of Crete'),
(135855, 107863, 'fr', 'name', 'Université technique de crète'),
(135856, 107864, 'en', 'name', 'Plymouth Marjon University'),
(135857, 107865, 'en', 'name', 'U.S. Air Force Institute of Technology'),
(135858, 107866, 'pt', 'name', 'Centro de Investigação de Montanha'),
(135859, 107867, 'en', 'name', 'Japan Industrial Location Center'),
(135860, 107867, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē«‹åœ°ć‚»ćƒ³ć‚æćƒ¼'),
(135861, 107868, 'en', 'name', 'National Forensic Sciences University'),
(135862, 107868, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Øą„ą¤Æą¤¾ą¤Æą¤¾ą¤²ą¤Æą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(135863, 107869, 'de', 'name', 'UniversitƤt Salento'),
(135864, 107869, 'en', 'name', 'University of Salento'),
(135865, 107869, 'fr', 'name', 'UniversitƩ du salento'),
(135866, 107869, 'it', 'name', 'UniversitĆ  degli Studi di Lecce'),
(135867, 107870, 'en', 'name', 'Kyoto Industrial Association'),
(135868, 107870, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½å·„ę„­ä¼š'),
(135869, 107871, 'en', 'name', 'Wuhan University of Technology'),
(135870, 107871, 'zh', 'name', '武汉理巄大学'),
(135871, 107872, 'en', 'name', 'The Nakamura Hajime Eastern Institute'),
(135872, 107872, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­ę‘å…ƒę±ę–¹ē ”ē©¶ę‰€'),
(135873, 107873, 'en', 'name', 'Houju Memorial Hospital'),
(135874, 107873, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å’Œę„½ä»čŠ³ē čØ˜åæµē—…é™¢'),
(135875, 107874, 'fr', 'name', 'GƩnƩthon'),
(135876, 107874, 'no_lang_code', 'name', 'Genethon (France)'),
(135877, 107875, 'fr', 'name', 'Institut Pasteur de Madagascar'),
(135878, 107876, 'en', 'name', 'Kitakyushu City Hospital Organization'),
(135879, 107876, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŒ—ä¹å·žåø‚ē«‹ē—…é™¢ę©Ÿę§‹'),
(135880, 107877, 'en', 'name', 'Trinity Health Grand Rapids'),
(135881, 107878, 'pt', 'name', 'Centro de Investigação em Estudos da Criança'),
(135882, 107879, 'en', 'name', 'International Economy and Work Research Institute'),
(135883, 107879, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå›½éš›ēµŒęøˆåŠ“åƒē ”ē©¶ę‰€'),
(135884, 107880, 'en', 'name', 'Huaqiao University'),
(135885, 107880, 'zh', 'name', 'åŽä¾Øå¤§å­¦'),
(135886, 107881, 'en', 'name', 'Daegu Gyeongbuk Institute of Science and Technology'),
(135887, 107881, 'ko', 'name', 'ėŒ€źµ¬ź²½ė¶ź³¼ķ•™źø°ģˆ ģ›'),
(135888, 107882, 'de', 'name', 'PƤdagogische Hochschule Schaffhausen');
INSERT INTO `ror_settings` VALUES
(135889, 107883, 'en', 'name', 'V. N. Karazin Kharkiv National University'),
(135890, 107883, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Š’. Š. ŠšŠ°Ń€Š°Š·ŠøŠ½Š°'),
(135891, 107883, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š’. Š. ŠšŠ°Ń€Š°Š·Ń–Š½Š°'),
(135892, 107884, 'id', 'name', 'Universitas Muslim Nusantara Al Washliyah'),
(135893, 107885, 'en', 'name', 'St. Mary''s University, Texas'),
(135894, 107885, 'fr', 'name', 'UniversitƩ sainte-marie'),
(135895, 107886, 'cs', 'name', 'Ústav termomechaniky AV ČR, Ústav termomechaniky AV ČR, v. v. i., Ústav termomechaniky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(135896, 107886, 'en', 'name', 'Czech Academy of Sciences, Institute of Thermomechanics'),
(135897, 107887, 'en', 'name', 'National Center For Child Health and Development'),
(135898, 107887, 'ja', 'name', 'å›½ē«‹ē ”ē©¶é–‹ē™ŗę³•äŗŗå›½ē«‹ęˆč‚²åŒ»ē™‚ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(135899, 107888, 'en', 'name', 'Asian Health Institute'),
(135900, 107888, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚øć‚¢äæå„ē ”äæ®ę‰€'),
(135901, 107889, 'en', 'name', 'Champalimaud Foundation'),
(135902, 107890, 'en', 'name', 'Niigata Medical Center'),
(135903, 107890, 'ja', 'name', 'JAę–°ę½ŸåŽšē”Ÿé€£ę–°ę½ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(135904, 107891, 'en', 'name', 'Mount Saint Vincent University'),
(135905, 107892, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁ„ŁŠŲÆŲ©'),
(135906, 107892, 'en', 'name', 'University of Blida, UnivƩrsitƩ Saad Dahlab Blida'),
(135907, 107893, 'bg', 'name', 'Š˜ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Варна'),
(135908, 107893, 'en', 'name', 'University of Economics Varna'),
(135909, 107894, 'de', 'name', 'Bundesministerium der Verteidigung'),
(135910, 107894, 'en', 'name', 'Federal Ministry of Defence'),
(135911, 107894, 'fr', 'name', 'Ministère Fédéral de la Défense'),
(135912, 107895, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ των Τιράνων'),
(135913, 107895, 'en', 'name', 'University of Tirana'),
(135914, 107895, 'sq', 'name', 'Universiteti i Tiranƫs'),
(135915, 107896, 'en', 'name', 'Lisbon Business School'),
(135916, 107896, 'pt', 'name', 'Escola de Negócios de Lisboa (Portugal)'),
(135917, 107897, 'fr', 'name', 'IFP Ɖnergies nouvelles, Institut FranƧais du PĆ©trole'),
(135918, 107898, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł†ŁˆŲ± Ų§Ł„ŲØŲ“ŁŠŲ± Ų§Ł„ŲØŁŠŲ¶'),
(135919, 107898, 'fr', 'name', 'Centre Universitaire Nour Bachir El Bayadh'),
(135920, 107899, 'en', 'name', 'American Society for Horticultural Science'),
(135921, 107900, 'af', 'name', 'Polytechnikum van Namibiƫ'),
(135922, 107900, 'en', 'name', 'Namibia University of Science and Technology'),
(135923, 107901, 'en', 'name', 'Gunma Prefectural Government'),
(135924, 107901, 'ja', 'name', '群馬県庁'),
(135925, 107902, 'en', 'name', 'University of Zambia'),
(135926, 107903, 'en', 'name', 'R.M.D. Engineering College'),
(135927, 107904, 'en', 'name', 'SayFood - Food and Bioproduct Engineering'),
(135928, 107905, 'en', 'name', 'Kahramanmaraş Sütçü İmam University'),
(135929, 107905, 'tr', 'name', 'Kahramanmaraş Sütçü İmam Üniversitesi'),
(135930, 107906, 'en', 'name', 'Adeleke University'),
(135931, 107907, 'en', 'name', 'Sapporo City Institute of Public Health'),
(135932, 107907, 'ja', 'name', 'ęœ­å¹Œåø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(135933, 107908, 'en', 'name', 'Institute of Science and Technology Austria'),
(135934, 107909, 'en', 'name', 'Poornima University'),
(135935, 107910, 'fr', 'name', 'Nantes UniversitƩ'),
(135936, 107911, 'en', 'name', 'Nagasaki City Medical Association'),
(135937, 107911, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé•·å“Žåø‚åŒ»åø«ä¼š'),
(135938, 107912, 'en', 'name', 'University of Science and Technology Liaoning'),
(135939, 107912, 'zh', 'name', 'č¾½å®ē§‘ęŠ€å¤§å­¦'),
(135940, 107913, 'en', 'name', 'Aino University Junior College'),
(135941, 107913, 'ja', 'name', 'č—é‡Žå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(135942, 107914, 'en', 'name', 'REVA University'),
(135943, 107914, 'kn', 'name', 'ರೇವ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²®ą²¹ą²¾ą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(135944, 107915, 'en', 'name', 'Fukuoka Fisheries and Marine Technology Research Center'),
(135945, 107915, 'ja', 'name', 'ē¦å²”ēœŒę°“ē”£ęµ·ę“‹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(135946, 107916, 'en', 'name', 'Association of Radio Industries and Businesses'),
(135947, 107916, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę³¢ē”£ę„­ä¼š'),
(135948, 107917, 'es', 'name', 'Universidad Gerardo Barrios'),
(135949, 107918, 'en', 'name', 'National Institute of Geriatrics, Rheumatology and Rehabilitation'),
(135950, 107919, 'en', 'name', 'University of Abomey-Calavi'),
(135951, 107919, 'fr', 'name', 'UniversitƩ d''Abomey-Calavi'),
(135952, 107920, 'en', 'name', 'Institute of Cardiology'),
(135953, 107921, 'de', 'name', 'Deutscher Verein des Gas und Wasserfaches'),
(135954, 107921, 'en', 'name', 'German Technical and Scientific Association for Gas and Water'),
(135955, 107922, 'en', 'name', 'University of Antique'),
(135956, 107922, 'tl', 'name', 'Pamantasan ng Antique'),
(135957, 107923, 'en', 'name', 'Ethiopian Forestry Development'),
(135958, 107924, 'en', 'name', 'Wakkanai City Hospital'),
(135959, 107924, 'ja', 'name', 'åø‚ē«‹ēØšå†…ē—…é™¢'),
(135960, 107925, 'en', 'name', 'Kyoto Prefectural Technology Center for Small and Medium Enterprises'),
(135961, 107925, 'ja', 'name', 'äŗ¬éƒ½åŗœäø­å°ä¼ę„­ęŠ€č”“ć‚»ćƒ³ć‚æāˆ’'),
(135962, 107926, 'en', 'name', 'Directorate for Social, Behavioral & Economic Sciences'),
(135963, 107927, 'pt', 'name', 'Centro de Estudos do Ambiente e do Mar'),
(135964, 107928, 'pt', 'name', 'Centro UniversitƔrio de Brusque'),
(135965, 107929, 'en', 'name', 'Francisco de Vitoria University'),
(135966, 107929, 'es', 'name', 'Universidad Francisco de Vitoria'),
(135967, 107930, 'sr', 'name', 'Etnografski institut Srpske akademije nauka i umetnosti'),
(135968, 107931, 'en', 'name', 'Electric Technology Research Association'),
(135969, 107931, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—å”åŒē ”ē©¶ä¼š'),
(135970, 107932, 'en', 'name', 'The Holstein Cattle Association of Japan'),
(135971, 107932, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ›ćƒ«ć‚¹ć‚æć‚¤ćƒ³ē™»éŒ²å”ä¼š'),
(135972, 107933, 'de', 'name', 'Hochschule Rosenheim, TH Rosenheim, Technische Hochschule Rosenheim'),
(135973, 107933, 'en', 'name', 'Rosenheim Technical University of Applied Sciences'),
(135974, 107934, 'en', 'name', 'University of Idaho'),
(135975, 107934, 'es', 'name', 'Universidad de Idaho'),
(135976, 107935, 'en', 'name', 'Grigore T. Popa University of Medicine and Pharmacy'),
(135977, 107935, 'ro', 'name', 'Universitatea de Medicină și Farmacie Grigore T. Popa'),
(135978, 107936, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ‡Ų§Ł†'),
(135979, 107936, 'ku', 'name', 'Zankoy Cihan'),
(135980, 107936, 'no_lang_code', 'name', 'Cihan University-Erbil'),
(135981, 107937, 'es', 'name', 'Universidad Fraternidad de Agrupaciones Santo TomƔs de Aquino'),
(135982, 107938, 'id', 'name', 'Institut Parahikma Indonesia'),
(135983, 107939, 'fr', 'name', 'FƩdƩration de Recherche Interactions Fondamentales'),
(135984, 107940, 'en', 'name', 'Future Evidence Foundation'),
(135985, 107941, 'en', 'name', 'Institute of Administrative Management'),
(135986, 107941, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč”Œę”æē®”ē†ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(135987, 107942, 'en', 'name', 'University of Life Sciences in Lublin'),
(135988, 107942, 'pl', 'name', 'Uniwersytet Przyrodniczy w Lublinie'),
(135989, 107943, 'dz', 'name', 'འབྲནག་རྒྱལ་འཛིན་གཙནག་ལག་སློབ་སྔེ'),
(135990, 107943, 'en', 'name', 'Royal University of Bhutan'),
(135991, 107944, 'en', 'name', 'Japan Library Association'),
(135992, 107944, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›³ę›øé¤Øå”ä¼š'),
(135993, 107945, 'es', 'name', 'Corporación Universitaria Empresarial Alexander von Humboldt'),
(135994, 107946, 'en', 'name', 'Bingƶl University'),
(135995, 107946, 'tr', 'name', 'Bingöl Üniversitesi'),
(135996, 107947, 'no_lang_code', 'name', 'AARNet (Australia)'),
(135997, 107948, 'en', 'name', 'University of Selangor'),
(135998, 107948, 'ms', 'name', 'Universiti Selangor'),
(135999, 107949, 'en', 'name', 'Foro Italico University of Rome'),
(136000, 107949, 'fr', 'name', 'Institut universitaire de sciences motrices'),
(136001, 107949, 'it', 'name', 'UniversitĆ  degli Studi di Roma Foro italico'),
(136002, 107950, 'en', 'name', 'Hakodate Goryoukaku Hospital'),
(136003, 107950, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗå‡½é¤ØåŽšē”Ÿé™¢å‡½é¤Øäŗ”ēØœéƒ­ē—…é™¢'),
(136004, 107951, 'es', 'name', 'IEEG, Instituto Electoral del Estado de Guanajuato'),
(136005, 107952, 'en', 'name', 'Asada Ladies Clinic'),
(136006, 107952, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗęµ…ē”°ćƒ¬ćƒ‡ć‚£ćƒ¼ć‚¹ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(136007, 107953, 'en', 'name', 'Atatürk University'),
(136008, 107953, 'tr', 'name', 'Atatürk Üniversitesi'),
(136009, 107954, 'en', 'name', 'Hokkaido Nuclear Energy Environmental Research Center'),
(136010, 107954, 'ja', 'name', 'åŒ—ęµ·é“åŽŸå­åŠ›ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(136011, 107955, 'en', 'name', 'Carleton College'),
(136012, 107956, 'pt', 'name', 'Fundação António Aleixo'),
(136013, 107957, 'it', 'name', 'Ospedale di Parma'),
(136014, 107958, 'en', 'name', 'University of Illinois Hospital & Health Sciences System'),
(136015, 107959, 'en', 'name', 'Colombia Adventist University'),
(136016, 107959, 'es', 'name', 'Corporacion Universitaria Adventista'),
(136017, 107960, 'en', 'name', 'Cooperation on International Traceability in Analytical Chemistry'),
(136018, 107961, 'bg', 'name', 'ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠø ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ - Варна'),
(136019, 107961, 'en', 'name', 'Medical University of Varna'),
(136020, 107962, 'el', 'name', 'EXELISIS IKE (Greece)'),
(136021, 107963, 'en', 'name', 'Macau University of Science and Technology'),
(136022, 107963, 'pt', 'name', 'Universidade de CiĆŖncia e Tecnologia de Macau'),
(136023, 107964, 'nl', 'name', 'Strukton (Netherlands)'),
(136024, 107965, 'de', 'name', 'Institut für Kultur- und Geistesgeschichte Asiens'),
(136025, 107966, 'en', 'name', 'Toyama Prefectural Government'),
(136026, 107966, 'ja', 'name', '富山県庁'),
(136027, 107967, 'no_lang_code', 'name', 'PTC Therapeutics (United States)'),
(136028, 107968, 'en', 'name', 'Interdisciplinary Transformation University Austria'),
(136029, 107969, 'en', 'name', 'Japan Institute of Marine Engineering'),
(136030, 107969, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒžćƒŖćƒ³ć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°å­¦ä¼š'),
(136031, 107970, 'no_lang_code', 'name', 'Temasek Polytechnic'),
(136032, 107970, 'zh', 'name', '淔马锔理巄学院'),
(136033, 107971, 'en', 'name', 'Institute of Systems Science Research'),
(136034, 107971, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚·ć‚¹ćƒ†ćƒ ē§‘å­¦ē ”ē©¶ę‰€'),
(136035, 107972, 'en', 'name', 'FishEye Collaborative'),
(136036, 107973, 'fr', 'name', 'Cegep de Saint Hyacinthe, CƩgep de saint-hyacinthe'),
(136037, 107974, 'en', 'name', 'Local Contexts, Local Contexts Inc.'),
(136038, 107975, 'en', 'name', 'Audio Engineering Society, Inc., Audio Engineering Society, Inc. (United States)'),
(136039, 107976, 'ar', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ سۆران'),
(136040, 107976, 'en', 'name', 'Soran University'),
(136041, 107977, 'en', 'name', 'Land Information Center'),
(136042, 107977, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœŸåœ°ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(136043, 107978, 'de', 'name', 'Bundesanstalt für Gewässerkunde'),
(136044, 107978, 'en', 'name', 'Federal Institute of Hydrology'),
(136045, 107979, 'id', 'name', 'Universitas Gadjah Mada'),
(136046, 107980, 'en', 'name', 'JIPDEC'),
(136047, 107980, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęƒ…å ±ēµŒęøˆē¤¾ä¼šęŽØé€²å”ä¼š'),
(136048, 107981, 'no_lang_code', 'name', 'TRIUMF'),
(136049, 107982, 'fr', 'name', 'La CitƩ du Genre'),
(136050, 107983, 'en', 'name', 'Tokyo Women''s Medical University'),
(136051, 107983, 'ja', 'name', 'ę±äŗ¬å„³å­åŒ»ē§‘å¤§å­¦'),
(136052, 107984, 'en', 'name', 'Institute of Biomedicine and Molecular Genetics of Valladolid'),
(136053, 107984, 'es', 'name', 'Instituto de Biomedicina y GenƩtica Molecular de Valladolid'),
(136054, 107985, 'en', 'name', 'Moshi Co-operative University'),
(136055, 107986, 'en', 'name', 'THE Japan Welding Technology Center'),
(136056, 107986, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ęŗ¶ęŽ„ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(136057, 107987, 'es', 'name', 'Universidad de Oriente'),
(136058, 107988, 'en', 'name', 'Taiyuan University of Technology'),
(136059, 107988, 'zh', 'name', 'å¤ŖåŽŸē†å·„å¤§å­¦'),
(136060, 107989, 'en', 'name', 'Japan Die Casting Association'),
(136061, 107989, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ€ć‚¤ć‚«ć‚¹ćƒˆå”ä¼š'),
(136062, 107990, 'en', 'name', 'Tsukuba Central Hospital'),
(136063, 107990, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč‹„ē«¹ä¼šć¤ćć°ć‚»ćƒ³ćƒˆćƒ©ćƒ«ē—…é™¢'),
(136064, 107991, 'aa', 'name', 'ČeskĆ” ImunologickĆ” Společnost'),
(136065, 107991, 'en', 'name', 'Czech Immunological Society'),
(136066, 107992, 'en', 'name', 'Indian Institute of Management Kozhikode'),
(136067, 107993, 'de', 'name', 'Hochschule Hannover'),
(136068, 107994, 'pt', 'name', 'Centro de Biologia Molecular e Ambiental'),
(136069, 107995, 'fr', 'name', 'Ɖcole Nationale VĆ©tĆ©rinaire de Toulouse'),
(136070, 107996, 'bn', 'name', 'ą¦Ŗą¦Ÿą§ą¦Æą¦¼ą¦¾ą¦–ą¦¾ą¦²ą§€ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(136071, 107996, 'en', 'name', 'Patuakhali Science and Technology University'),
(136072, 107997, 'en', 'name', 'Pilot University of Colombia'),
(136073, 107997, 'es', 'name', 'Universidad Piloto de Colombia'),
(136074, 107998, 'es', 'name', 'Instituto Tecnológico de LÔzaro CÔrdenas'),
(136075, 107999, 'id', 'name', 'Universitas Galuh'),
(136076, 108000, 'en', 'name', 'University of HolguĆ­n'),
(136077, 108000, 'es', 'name', 'Universidad de HolguĆ­n'),
(136078, 108001, 'en', 'name', 'Itami Kousei Neurosurgical Hospital'),
(136079, 108001, 'ja', 'name', 'ä¼Šäø¹ę’ē”Ÿč„³ē„žēµŒå¤–ē§‘ē—…é™¢'),
(136080, 108002, 'en', 'name', 'Shonan Keiiku Hospital'),
(136081, 108002, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å„č‚²ä¼šę¹˜å—ę…¶č‚²ē—…é™¢'),
(136082, 108003, 'pt', 'name', 'Instituto de Oftalmologia Dr Gama Pinto'),
(136083, 108004, 'en', 'name', 'Andrzej Frycz Modrzewski Krakow University'),
(136084, 108004, 'pl', 'name', 'Uniwersytet Andrzeja Frycza Modrzewskiego w Krakowie'),
(136085, 108005, 'en', 'name', 'Tokyo Woman''s Christian University'),
(136086, 108005, 'ja', 'name', 'ę±äŗ¬å„³å­å¤§å­¦'),
(136087, 108006, 'de', 'name', 'Schweizerische Vogelwarte'),
(136088, 108006, 'en', 'name', 'Swiss Ornithological Institute'),
(136089, 108007, 'en', 'name', 'Golestan University of Medical Sciences'),
(136090, 108008, 'en', 'name', 'Gunma Prefectural Forestry Experiment Station'),
(136091, 108008, 'ja', 'name', 'ē¾¤é¦¬ēœŒęž—ę„­č©¦éØ“å “'),
(136092, 108009, 'en', 'name', 'The University of Kitakyushu'),
(136093, 108009, 'ja', 'name', 'åŒ—ä¹å·žåø‚ē«‹å¤§å­¦'),
(136094, 108010, 'en', 'name', 'Shiga Prefectural Government'),
(136095, 108010, 'ja', 'name', 'ę»‹č³€ēœŒåŗ'),
(136096, 108011, 'pt', 'name', 'Comissão do Mercado de Valores MobiliÔrios'),
(136097, 108012, 'en', 'name', 'Sir Padampat Singhania University'),
(136098, 108012, 'hi', 'name', 'सर पदमपत ą¤øą¤æą¤‚ą¤˜ą¤¾ą¤Øą¤æą¤Æą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(136099, 108013, 'en', 'name', 'Versailles Saint-Quentin-en-Yvelines University'),
(136100, 108013, 'fr', 'name', 'UniversitƩ de Versailles Saint-Quentin-en-Yvelines'),
(136101, 108014, 'en', 'name', 'University of South China'),
(136102, 108014, 'zh', 'name', '南华大学'),
(136103, 108015, 'ca', 'name', 'Fundació Clínic per a la Recerca Biomèdica'),
(136104, 108016, 'en', 'name', 'Cardiovascular Hospital of Central Japan'),
(136105, 108016, 'ja', 'name', 'åŒ—é–¢ę±å¾Ŗē’°å™Øē—…é™¢'),
(136106, 108017, 'fa', 'name', 'دانؓگاه تربیت Ł…ŲÆŲ±Ų³'),
(136107, 108017, 'no_lang_code', 'name', 'Tarbiat Modares University'),
(136108, 108018, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سعيدة'),
(136109, 108018, 'en', 'name', 'University of Saida Dr.Moulay Tahar'),
(136110, 108018, 'fr', 'name', 'UniversitƩ de Saida Dr.Moulay Tahar'),
(136111, 108019, 'en', 'name', 'Ministry of Economy of the Republic of Armenia'),
(136112, 108019, 'hy', 'name', 'Õ€Õ”ÕµÕ”Õ½ÕæÕ”Õ¶Õ« Õ€Õ”Õ¶Ö€Õ”ÕŗÕ„ÕæÕøÖ‚Õ©ÕµÕ”Õ¶ Ō·ÕÆÕøÕ¶ÕøÕ“Õ«ÕÆÕ”ÕµÕ« Õ†Õ”Õ­Õ”Ö€Õ”Ö€ÕøÖ‚Õ©ÕµÕøÖ‚Õ¶'),
(136113, 108019, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Экономики Республики ŠŃ€Š¼ŠµŠ½ŠøŃ'),
(136114, 108020, 'en', 'name', 'Zhejiang Ocean University'),
(136115, 108020, 'zh', 'name', 'ęµ™ę±Ÿęµ·ę“‹å­¦é™¢'),
(136116, 108021, 'en', 'name', 'Kumamoto Prefectural Fisheries Research Center'),
(136117, 108021, 'ja', 'name', 'ē†Šęœ¬ēœŒę°“ē”£ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(136118, 108022, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© حلب'),
(136119, 108022, 'en', 'name', 'University of Aleppo'),
(136120, 108022, 'fr', 'name', 'UniversitƩ d''alep'),
(136121, 108023, 'en', 'name', 'Gifu Prefectural Industrial Technology Center'),
(136122, 108023, 'ja', 'name', 'å²é˜œēœŒē”£ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(136123, 108024, 'en', 'name', 'Rajabhat Maha Sarakham University'),
(136124, 108024, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø£ąø²ąøŠąø ąø±ąøŽąø”ąø«ąø²ąøŖąø²ąø£ąø„ąø²ąø”'),
(136125, 108025, 'en', 'name', 'Laser Physics Laboratory'),
(136126, 108025, 'fr', 'name', 'Laboratoire de physique des lasers'),
(136127, 108026, 'en', 'name', 'Biwako Professional University of Rehabilitation'),
(136128, 108026, 'ja', 'name', 'ć³ć‚ć“ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(136129, 108027, 'en', 'name', 'VCCT Inc. (Japan)'),
(136130, 108028, 'en', 'name', 'Open Knowledge Nepal'),
(136131, 108029, 'en', 'name', 'Vilnius University'),
(136132, 108029, 'lt', 'name', 'Vilniaus universitetas'),
(136133, 108029, 'pl', 'name', 'Uniwersytet Wileński'),
(136134, 108029, 'ru', 'name', 'Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(136135, 108030, 'en', 'name', 'Riga StradiņŔ University'),
(136136, 108030, 'lt', 'name', 'Rygos Stradinio universitetas'),
(136137, 108030, 'lv', 'name', 'Rīgas Stradiņa universitāte'),
(136138, 108030, 'ru', 'name', 'Рижский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Паула Š”Ń‚Ń€Š°Š“ŠøŠ½Ń'),
(136139, 108031, 'de', 'name', 'Fraunhofer-Institut für Chemische Technologie'),
(136140, 108031, 'en', 'name', 'Fraunhofer Institute for Chemical Technology'),
(136141, 108032, 'fr', 'name', 'Institut de recherches CarrƩ de Malberg'),
(136142, 108033, 'pt', 'name', 'Centro de Física Teórica e Computacional'),
(136143, 108034, 'es', 'name', 'Fundación Universitaria Católica Lumen Gentium'),
(136144, 108035, 'en', 'name', 'National Printing Bureau'),
(136145, 108035, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹å°åˆ·å±€'),
(136146, 108036, 'en', 'name', 'Institute of Kampo Medicine'),
(136147, 108036, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę¼¢ę–¹åŒ»å­¦ē ”ē©¶ę‰€'),
(136148, 108037, 'en', 'name', 'IRCCS San Camillo Hospital'),
(136149, 108038, 'en', 'name', 'Miyazaki Prefectural Government'),
(136150, 108038, 'ja', 'name', 'å®®å“ŽēœŒåŗ'),
(136151, 108039, 'ar', 'name', 'المجلس Ų§Ł„ŲµŲ­ŁŠ Ų§Ł„Ų³Ų¹ŁˆŲÆŁŠ'),
(136152, 108039, 'en', 'name', 'Saudi Health Council'),
(136153, 108040, 'en', 'name', 'Laboratory of Physical Chemistry and Microbiology for Materials and the Environment'),
(136154, 108040, 'fr', 'name', 'Laboratoire de Chimie Physique et Microbiologie pour l''Environnement'),
(136155, 108041, 'en', 'name', 'RISE Research Institutes of Sweden'),
(136156, 108042, 'en', 'name', 'Drury University'),
(136157, 108043, 'pt', 'name', 'Sociedade Portuguesa de ObstetrĆ­cia e Medicina Materno-Fetal'),
(136158, 108044, 'pt', 'name', 'Universidade para o Desenvolvimento do Alto Vale do ItajaĆ­'),
(136159, 108045, 'en', 'name', 'University of the Valley of Guatemala'),
(136160, 108045, 'es', 'name', 'Universidad del Valle de Guatemala'),
(136161, 108046, 'en', 'name', 'Shiseido General Hospital'),
(136162, 108046, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę¾ęŸä¼šč‡³čŖ å ‚ē·åˆē—…é™¢'),
(136163, 108047, 'es', 'name', 'Corporación Tecnológica Industrial Colombiana'),
(136164, 108048, 'ca', 'name', 'Universitat de MĆŗrcia'),
(136165, 108048, 'en', 'name', 'University of Murcia'),
(136166, 108048, 'es', 'name', 'Universidad de Murcia'),
(136167, 108048, 'gl', 'name', 'Universidade de Murcia'),
(136168, 108049, 'en', 'name', 'National Institute for Nuclear Physics, Cagliari Division'),
(136169, 108049, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Cagliari'),
(136170, 108050, 'en', 'name', 'Osaka Gakuin Junior College'),
(136171, 108050, 'ja', 'name', 'å¤§é˜Ŗå­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(136172, 108051, 'en', 'name', 'Hampshire College'),
(136173, 108052, 'pt', 'name', 'Centro de Engenharia Mecânica e Sustentabilidade de Recursos'),
(136174, 108053, 'en', 'name', 'Pabna Medical College'),
(136175, 108054, 'en', 'name', 'Spanish Center for Pulsed Lasers'),
(136176, 108054, 'es', 'name', 'Centro de LƔseres Pulsados'),
(136177, 108055, 'en', 'name', 'Tochigi Prefectural Government'),
(136178, 108055, 'ja', 'name', '栃木県庁'),
(136179, 108056, 'en', 'name', 'Institute for Catastrophic Loss Reduction'),
(136180, 108057, 'en', 'name', 'Iwaki City Medical Center'),
(136181, 108057, 'ja', 'name', 'ć„ć‚ćåø‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(136182, 108058, 'en', 'name', 'Variable Star Observers League in Japan'),
(136183, 108058, 'ja', 'name', 'ę—„ęœ¬å¤‰å…‰ę˜Ÿč¦³ęø¬č€…é€£ē›Ÿ'),
(136184, 108059, 'es', 'name', 'Fundación Instituto Nacional de Heridas'),
(136185, 108060, 'en', 'name', 'Ishikawa Insect Museum'),
(136186, 108060, 'ja', 'name', 'ēŸ³å·ēœŒćµć‚Œć‚ć„ę˜†č™«é¤Ø'),
(136187, 108061, 'de', 'name', 'Fachhochschule Kiel'),
(136188, 108062, 'en', 'name', 'Jiangxi University of Science and Technology'),
(136189, 108062, 'zh', 'name', 'ę±Ÿč„æē†å·„å¤§å­¦'),
(136190, 108063, 'en', 'name', 'University of Mary Hardin–Baylor'),
(136191, 108064, 'pt', 'name', 'Sociedade Portuguesa de Psiquiatria e SaĆŗde Mental'),
(136192, 108065, 'en', 'name', 'Federal Medical Center, Birnin Kudu'),
(136193, 108066, 'be', 'name', 'Š‘ŠµŠ»Š°Ń€ŃƒŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ пеГагагічны ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń ŠœŠ°ŠŗŃŃ–Š¼Š° Танка'),
(136194, 108066, 'en', 'name', 'Belarussian State Pedagogical University Named After Maxim Tank'),
(136195, 108066, 'ru', 'name', 'Š‘ŠµŠ»Š¾Ń€ŃƒŃŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(136196, 108067, 'en', 'name', 'Obihiro First Hospital'),
(136197, 108067, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“åŒ»ē™‚å›£åøÆåŗƒē¬¬äø€ē—…é™¢'),
(136198, 108068, 'hr', 'name', 'Institut DruŔtvenih Znanosti Ivo Pilar'),
(136199, 108069, 'en', 'name', 'City University of Hong Kong'),
(136200, 108070, 'en', 'name', 'Istanbul Esenyurt University'),
(136201, 108070, 'tr', 'name', 'İstanbul Esenyurt Üniversitesi'),
(136202, 108071, 'be', 'name', 'ГроГзенскі Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń Янкі ŠšŃƒŠæŠ°Š»Ń‹'),
(136203, 108071, 'no_lang_code', 'name', 'Yanka Kupala State University of Grodno'),
(136204, 108071, 'ru', 'name', 'ГроГненский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Янки ŠšŃƒŠæŠ°Š»Ń‹'),
(136205, 108072, 'pt', 'name', 'Universidade do Contestado'),
(136206, 108073, 'es', 'name', 'Dirección General Marítima'),
(136207, 108074, 'en', 'name', 'Mito Kyodo General Hospital'),
(136208, 108074, 'ja', 'name', 'ē·åˆē—…é™¢ę°“ęˆøå”åŒē—…é™¢'),
(136209, 108075, 'en', 'name', 'Holland Bloorview Kids Rehabilitation Hospital'),
(136210, 108076, 'en', 'name', 'NCCR Catalysis'),
(136211, 108077, 'en', 'name', 'Centre of Excellence in Molecular Biology'),
(136212, 108078, 'en', 'name', 'Sugiyama Chemical and Industrial Laboratory'),
(136213, 108078, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę‰å±±ē”£ę„­åŒ–å­¦ē ”ē©¶ę‰€'),
(136214, 108079, 'fr', 'name', 'FƩdƩration Ile de France de recherche sur l''environnement'),
(136215, 108080, 'en', 'name', 'Vector Magnetic Characteristic Technical Lavoratory'),
(136216, 108080, 'ja', 'name', 'ćƒ™ć‚Æćƒˆćƒ«ē£ę°—ē‰¹ę€§ęŠ€č”“ē ”ē©¶ę‰€'),
(136217, 108081, 'en', 'name', 'Australia''s Climate Simulator'),
(136218, 108082, 'en', 'name', 'Sri Sri University'),
(136219, 108083, 'cs', 'name', 'Slovanský ústav AV ČR'),
(136220, 108083, 'en', 'name', 'Czech Acad Sci, Inst Slav Studies, Czech Academy of Sciences, Institute of Slavonic Studies, Institute of Slavonic Studies CAS'),
(136221, 108084, 'nl', 'name', 'Hogeschool PXL'),
(136222, 108085, 'es', 'name', 'Instituto Traumatológico Dr. Teodoro Gebauer Weisser'),
(136223, 108086, 'nl', 'name', 'Gemeente Maastricht'),
(136224, 108087, 'en', 'name', 'National University of La Rioja'),
(136225, 108087, 'es', 'name', 'Universidad Nacional de La Rioja'),
(136226, 108087, 'fr', 'name', 'UniversitƩ nationale de la rioja'),
(136227, 108088, 'bn', 'name', 'বরিশাল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(136228, 108088, 'en', 'name', 'University of Barisal'),
(136229, 108089, 'en', 'name', 'Clinical Research Education and Management Services'),
(136230, 108090, 'en', 'name', 'Wagyu Registry Association'),
(136231, 108090, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½å’Œē‰›ē™»éŒ²å”ä¼š'),
(136232, 108091, 'pt', 'name', 'Unidade Local de SaĆŗde do Baixo Alentejo, Unidade Local de SaĆŗde do Baixo Alentejo EPE'),
(136233, 108092, 'en', 'name', 'Mahidol Wittayanusorn School'),
(136234, 108092, 'th', 'name', 'ą¹‚ąø£ąø‡ą¹€ąø£ąøµąø¢ąø™ąø”ąø«ąø“ąø”ąø„ąø§ąø“ąø—ąø¢ąø²ąø™ąøøąøŖąø£ąø“ą¹Œ'),
(136235, 108093, 'id', 'name', 'Universitas Katolik Widya Mandira'),
(136236, 108094, 'en', 'name', 'State University of Trade and Economics'),
(136237, 108094, 'uk', 'name', 'Державний Ń‚Š¾Ń€Š³Š¾Š²ŠµŠ»ŃŒŠ½Š¾-економічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(136238, 108095, 'fr', 'name', 'Haute Ɖcole Robert Schuman'),
(136239, 108096, 'fr', 'name', 'Laboratoire Informatique, Image et Interaction (L3i)'),
(136240, 108097, 'en', 'name', 'Pakuan University'),
(136241, 108097, 'id', 'name', 'Universitas Pakuan'),
(136242, 108098, 'pt', 'name', 'Centro de Estudos e Recuperação de Animais Selvagens'),
(136243, 108099, 'en', 'name', 'Technical University of Cluj-Napoca'),
(136244, 108099, 'hu', 'name', 'Műszaki Egyetem'),
(136245, 108099, 'ro', 'name', 'Universitatea Tehnică Cluj-Napoca'),
(136246, 108100, 'pt', 'name', 'Centro de Investigação em Meio Ambiente Genética e Oncobiologia'),
(136247, 108101, 'en', 'name', 'National Council for Development and Innovation'),
(136248, 108101, 'ro', 'name', 'Consiliul National pentru Dezvoltare si Inovare'),
(136249, 108102, 'ja', 'name', 'ē™½ę¢…å­¦åœ’å¤§å­¦'),
(136250, 108102, 'no_lang_code', 'name', 'Shiraume Gakuen University'),
(136251, 108103, 'en', 'name', 'Kettering University'),
(136252, 108104, 'en', 'name', 'Laurentian University'),
(136253, 108104, 'fr', 'name', 'UniversitƩ Laurentienne'),
(136254, 108105, 'en', 'name', 'Bursa Technical University'),
(136255, 108105, 'tr', 'name', 'Bursa Teknik Üniversitesi'),
(136256, 108106, 'es', 'name', 'Instituto de Investigaciones JurĆ­dicas y Sociales Ambrosio L. Gioja'),
(136257, 108107, 'en', 'name', 'Slovak University of Agriculture in Nitra'),
(136258, 108107, 'sk', 'name', 'SlovenskÔ poľnohospodÔrska univerzita v Nitre'),
(136259, 108108, 'bn', 'name', 'আলিয়া ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(136260, 108108, 'en', 'name', 'Aliah University'),
(136261, 108109, 'en', 'name', 'Indian Institute of Information Technology Allahabad'),
(136262, 108109, 'fr', 'name', 'Institut indien d''informatique d''allahabad'),
(136263, 108110, 'en', 'name', 'Fukui Prefectural General Green Center'),
(136264, 108110, 'ja', 'name', 'ē¦äŗ•ēœŒē·åˆć‚°ćƒŖćƒ¼ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(136265, 108111, 'en', 'name', 'Fukui Industrial Support Center'),
(136266, 108111, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćµćć„ē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(136267, 108112, 'ro', 'name', 'Universitatea Nicolae Titulescu din București'),
(136268, 108113, 'ms', 'name', 'Politeknik Tuanku Syed Sirajuddin'),
(136269, 108114, 'en', 'name', 'International Institute of Earthquake Engineering and Seismology'),
(136270, 108115, 'en', 'name', 'Malayer University'),
(136271, 108116, 'en', 'name', 'Animal Genetics and Integrative Biology unit'),
(136272, 108116, 'fr', 'name', 'GƩnƩtique Animale et Biologie IntƩgrative'),
(136273, 108117, 'en', 'name', 'Takamatsu Municipal Hospital'),
(136274, 108117, 'ja', 'name', 'é«˜ę¾åø‚ē«‹ćæć‚“ćŖć®ē—…é™¢'),
(136275, 108118, 'en', 'name', 'Japan Society for the Promotion of Machine Industry'),
(136276, 108118, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę©Ÿę¢°ęŒÆčˆˆå”ä¼š'),
(136277, 108119, 'en', 'name', 'Shandong Women’s University'),
(136278, 108119, 'zh', 'name', 'å±±äøœå„³å­å­¦é™¢'),
(136279, 108120, 'en', 'name', 'Nagano Chuo Hospital'),
(136280, 108120, 'ja', 'name', 'é•·é‡ŽåŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆé•·é‡Žäø­å¤®ē—…é™¢'),
(136281, 108121, 'cs', 'name', 'Centrum Dopravního Výzkumu'),
(136282, 108121, 'en', 'name', 'Transport Research Centre'),
(136283, 108122, 'en', 'name', 'Canadian Armed Forces'),
(136284, 108122, 'fr', 'name', 'Forces ArmƩes Canadiennes'),
(136285, 108123, 'en', 'name', 'Soka University of America'),
(136286, 108124, 'en', 'name', 'Afe Babalola University'),
(136287, 108125, 'es', 'name', 'Universidad Autónoma del Estado de Morelos'),
(136288, 108126, 'en', 'name', 'James Hutton Institute'),
(136289, 108127, 'en', 'name', 'Tagawa Municipal Hospital'),
(136290, 108127, 'ja', 'name', 'ē”°å·åø‚ē«‹ē—…é™¢'),
(136291, 108128, 'fr', 'name', 'Centre de Recherche en Nutrition Humaine d''Auvergne'),
(136292, 108129, 'en', 'name', 'JR Sapporo Hospital'),
(136293, 108129, 'ja', 'name', 'JRęœ­å¹Œē—…é™¢'),
(136294, 108130, 'en', 'name', 'Ramapo College'),
(136295, 108131, 'en', 'name', 'Global Academy of Technology'),
(136296, 108132, 'en', 'name', 'Ministry of Foreign Affairs, Dhaka'),
(136297, 108133, 'en', 'name', 'Topfaith University'),
(136298, 108134, 'en', 'name', 'Japan Pharmaceutical Information Center'),
(136299, 108134, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åŒ»č–¬ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(136300, 108135, 'en', 'name', 'Cryogenics and Superconductivity Society of Japan'),
(136301, 108135, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗä½Žęø©å·„å­¦ćƒ»č¶…é›»å°Žå­¦ä¼š'),
(136302, 108136, 'en', 'name', 'State University of Roraima'),
(136303, 108136, 'pt', 'name', 'Universidade Estadual de Roraima'),
(136304, 108137, 'en', 'name', 'Institute of State and Law of the Slovak Academy of Sciences'),
(136305, 108137, 'sk', 'name', 'Ústav ŔtÔtu a prÔva SlovenskÔ akadémia vied'),
(136306, 108138, 'en', 'name', 'E.G.S. Pillay Engineering College'),
(136307, 108139, 'en', 'name', 'Euro-Mediterranean University of Fes'),
(136308, 108139, 'fr', 'name', 'université Euro-Méditerranéenne de Fès'),
(136309, 108140, 'cs', 'name', 'KrajskĆ” vědeckĆ” knihovna v Liberci, příspěvkovĆ” organizace'),
(136310, 108140, 'en', 'name', 'Regional Research Library in Liberec'),
(136311, 108141, 'en', 'name', 'Region SkƄne'),
(136312, 108141, 'se', 'name', 'Region SkƄne'),
(136313, 108142, 'en', 'name', 'LĆŗrio University'),
(136314, 108142, 'pt', 'name', 'Universidade LĆŗrio'),
(136315, 108143, 'en', 'name', 'University of El Salvador'),
(136316, 108143, 'es', 'name', 'Universidad de El Salvador'),
(136317, 108144, 'en', 'name', 'Institute for Scientific and Technological Research'),
(136318, 108144, 'es', 'name', 'Instituto Potosino de Investigación Científica y Tecnológica'),
(136319, 108145, 'en', 'name', 'South Ural State University'),
(136320, 108145, 'ru', 'name', 'Южно-Š£Ń€Š°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(136321, 108146, 'en', 'name', 'Association of International Research Initiatives for Environmental Studies'),
(136322, 108146, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›ē’°å¢ƒē ”ē©¶å”ä¼š'),
(136323, 108147, 'de', 'name', 'Gesellschaft für Anlagen und Reaktorsicherheit'),
(136324, 108147, 'en', 'name', 'Global Research for Safety'),
(136325, 108148, 'en', 'name', 'Berdyansk State Pedagogical University'),
(136326, 108148, 'uk', 'name', 'Š‘ŠµŃ€Š“ŃŠ½ŃŃŒŠŗŠøŠ¹ Гержавний пеГагогічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(136327, 108149, 'en', 'name', 'Federal University of CearĆ”'),
(136328, 108149, 'pt', 'name', 'Universidade Federal do CearĆ”'),
(136329, 108150, 'az', 'name', 'İzmir Texnologiya İnstitutu'),
(136330, 108150, 'en', 'name', 'Izmir Institute of Technology'),
(136331, 108150, 'tr', 'name', 'İzmir Yüksek Teknoloji Enstitüsü'),
(136332, 108151, 'es', 'name', 'Universidad Inca Garcilaso de la Vega'),
(136333, 108152, 'en', 'name', 'National Council for Scientific and Technological Development'),
(136334, 108152, 'pt', 'name', 'Conselho Nacional de Desenvolvimento Científico e Tecnológico'),
(136335, 108153, 'en', 'name', 'Teagasc - The Irish Agriculture and Food Development Authority'),
(136336, 108154, 'en', 'name', 'Nevada System of Higher Education'),
(136337, 108155, 'en', 'name', 'HonorHealth'),
(136338, 108156, 'en', 'name', 'Nagoya International Center'),
(136339, 108156, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹å›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(136340, 108157, 'en', 'name', 'Jƶnkƶping University'),
(136341, 108157, 'sv', 'name', 'Hƶgskolan i Jƶnkƶping'),
(136342, 108158, 'en', 'name', 'Fukui Memorial Hospital'),
(136343, 108158, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£é’å±±ä¼šē¦äŗ•čØ˜åæµē—…é™¢'),
(136344, 108159, 'en', 'name', 'Brazilian Air Force University'),
(136345, 108159, 'pt', 'name', 'Universidade da ForƧa AƩrea'),
(136346, 108160, 'en', 'name', 'Japan Food Industry Center'),
(136347, 108160, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé£Ÿå“ē”£ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(136348, 108161, 'en', 'name', 'Kyoto Prefectural Agriculture, Forestry and Fisheries Technology Center'),
(136349, 108161, 'ja', 'name', 'äŗ¬éƒ½åŗœč¾²ęž—ę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(136350, 108162, 'en', 'name', 'Beijing University of Agriculture'),
(136351, 108162, 'zh', 'name', 'åŒ—äŗ¬å†œå­¦é™¢'),
(136352, 108163, 'en', 'name', 'Bartin University'),
(136353, 108164, 'en', 'name', 'Shonai Amarume Hospital'),
(136354, 108164, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å±±å½¢ę„›åæƒä¼šåŗ„å†…ä½™ē›®ē—…é™¢'),
(136355, 108165, 'fr', 'name', 'Institut franƧais Deutschland'),
(136356, 108166, 'en', 'name', 'Tampa General Hospital'),
(136357, 108167, 'en', 'name', 'Policy Research Institute, Ministry of Finance'),
(136358, 108167, 'ja', 'name', 'č²”å‹™ēœč²”å‹™ē·åˆę”æē­–ē ”ē©¶ę‰€'),
(136359, 108168, 'en', 'name', 'Wentworth Institute of Technology'),
(136360, 108169, 'en', 'name', 'Okinawa Christian Junior College'),
(136361, 108169, 'ja', 'name', 'ę²–ēø„ć‚­ćƒŖć‚¹ćƒˆę•™ēŸ­ęœŸå¤§å­¦'),
(136362, 108170, 'en', 'name', 'Vikram Sarabhai Space Centre'),
(136363, 108170, 'hi', 'name', 'ą¤µą¤æą¤•ą„ą¤°ą¤® साराभाई ą¤…ą¤‚ą¤¤ą¤°ą¤æą¤•ą„ą¤· ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(136364, 108170, 'ml', 'name', 'ą“µą“æą“•ąµą“°ą“‚ ą“øą“¾ą“°ą“¾ą“­ą“¾ą“Æąµ ą“¬ą“¹ą“æą“°ą“¾ą“•ą“¾ą“¶ą“•ąµ‡ą“Øąµą“¦ąµą“°ą“‚'),
(136365, 108170, 'mr', 'name', 'ą¤µą¤æą¤•ą„ą¤°ą¤® साराभाई अंतराळ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°'),
(136366, 108170, 'ta', 'name', 'ą®µą®æą®•ąÆą®°ą®®ąÆ ą®šą®¾ą®°ą®¾ą®Ŗą®¾ą®ÆąÆ ą®µą®æą®£ąÆą®µąÆ†ą®³ą®æ ą®®ąÆˆą®Æą®®ąÆ'),
(136367, 108171, 'en', 'name', 'New York Botanical Garden'),
(136368, 108172, 'en', 'name', 'Akita Fruit-Tree Experiment Station'),
(136369, 108172, 'ja', 'name', 'ē§‹ē”°ēœŒęžœęØ¹č©¦éØ“å “'),
(136370, 108173, 'en', 'name', 'Yamanashi Prefectural Agricultural Technology Center'),
(136371, 108173, 'ja', 'name', 'å±±ę¢ØēœŒē·åˆč¾²ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(136372, 108174, 'en', 'name', 'Ajou University'),
(136373, 108174, 'ko', 'name', 'ģ•„ģ£¼ėŒ€ķ•™źµ'),
(136374, 108175, 'en', 'name', 'University of the Andes, Chile'),
(136375, 108175, 'es', 'name', 'Universidad de Los Andes, Chile'),
(136376, 108176, 'en', 'name', 'Bank of Italy'),
(136377, 108176, 'it', 'name', 'Banca d''Italia'),
(136378, 108177, 'en', 'name', 'Bigelow Laboratory for Ocean Sciences'),
(136379, 108178, 'pl', 'name', 'Instytut Matki i Dziecka'),
(136380, 108179, 'bn', 'name', 'ą¦•ą¦²ą§ą¦Æą¦¾ą¦£ą§€ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(136381, 108179, 'en', 'name', 'University of Kalyani'),
(136382, 108180, 'en', 'name', 'Kawakita General Hospital'),
(136383, 108180, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę²³åŒ—åŒ»ē™‚č²”å›£ę²³åŒ—ē·åˆē—…é™¢'),
(136384, 108181, 'en', 'name', 'Oita Prefectural Police'),
(136385, 108181, 'ja', 'name', 'å¤§åˆ†ēœŒč­¦åÆŸ'),
(136386, 108182, 'es', 'name', 'Centro de BiologĆ­a Molecular Severo Ochoa'),
(136387, 108183, 'en', 'name', 'Western Connecticut Health Network'),
(136388, 108184, 'en', 'name', 'King Edward Memorial Hospital and Seth G.S. Medical College'),
(136389, 108184, 'mr', 'name', 'राजा ą¤ą¤”ą„ą¤µą¤°ą„ą¤” ą¤øą„ą¤®ą¤¾ą¤°ą¤• ą¤°ą„ą¤—ą„ą¤£ą¤¾ą¤²ą¤Æ व ą¤øą„‡ą¤  ą¤—ą„‹ą¤µą¤°ą„ą¤§ą¤Øą¤¦ą¤¾ą¤ø ą¤øą„ą¤‚ą¤¦ą¤°ą¤¦ą¤¾ą¤ø ą¤µą„ˆą¤¦ą„ą¤Æą¤•ą„€ą¤Æ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(136390, 108184, 'ta', 'name', 'ą®•ą®æą®™ąÆ ą®Žą®ŸąÆą®µą®°ąÆą®ŸąÆ நினைவு ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®®ą®©ąÆˆ'),
(136391, 108185, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الحدباؔ'),
(136392, 108185, 'en', 'name', 'Al-Hadba University'),
(136393, 108186, 'en', 'name', 'Texas Wesleyan University'),
(136394, 108187, 'pt', 'name', 'Centro de Estudos Transdisciplinares para o Desenvolvimento'),
(136395, 108188, '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"'),
(136396, 108188, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр аграрной ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ ŃŠµŠ»ŃŒŃŠŗŠøŃ… территорий - Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø сельского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(136397, 108189, 'en', 'name', 'Centre for Electrochemical Technologies'),
(136398, 108190, 'es', 'name', 'Escuela Superior de Administración Pública'),
(136399, 108191, 'en', 'name', 'Japanese Society of Periodontology'),
(136400, 108191, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ę­Æå‘Øē—…å­¦ä¼š'),
(136401, 108192, 'ca', 'name', 'Fundació Salut Empordà'),
(136402, 108193, 'en', 'name', 'Sendai City Institute of Public Health'),
(136403, 108193, 'ja', 'name', 'ä»™å°åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(136404, 108194, 'en', 'name', 'Montreal Heart Institute'),
(136405, 108194, 'fr', 'name', 'Institut de Cardiologie de MontrƩal'),
(136406, 108195, 'pt', 'name', 'Centro de Inovação em Tecnologias e Cuidados de Saúde'),
(136407, 108196, 'en', 'name', 'Niigata Prefectural Inland Water Fisheries Experiment Station'),
(136408, 108196, 'ja', 'name', 'ę–°ę½ŸēœŒå†…ę°“é¢ę°“ē”£č©¦éØ“å “'),
(136409, 108197, 'fr', 'name', 'Paris Jourdan Sciences Economiques'),
(136410, 108198, 'no_lang_code', 'name', 'MSD (Australia)'),
(136411, 108199, 'en', 'name', 'International Development Center of Japan'),
(136412, 108199, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(136413, 108200, 'da', 'name', 'Det Kongelige Bibliotek'),
(136414, 108200, 'en', 'name', 'Royal Danish Library'),
(136415, 108201, 'en', 'name', 'American University of Central Asia'),
(136416, 108201, 'ru', 'name', 'Американский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Š¹ Азии'),
(136417, 108201, 'uz', 'name', 'Oʻrta Osiyo Amerika Universiteti'),
(136418, 108202, 'en', 'name', 'Shiite Endowment Diwan'),
(136419, 108203, 'en', 'name', 'Riley Hospital for Children'),
(136420, 108204, 'en', 'name', 'Japan Marine Science Foundation'),
(136421, 108204, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ęµ·ę“‹ē§‘å­¦ęŒÆčˆˆč²”å›£'),
(136422, 108205, 'fr', 'name', 'Laboratoire Bio-peroxIL'),
(136423, 108206, 'en', 'name', 'Technology Research Association for Next generation natural products chemistry'),
(136424, 108206, 'ja', 'name', 'ę¬”äø–ä»£å¤©ē„¶ē‰©åŒ–å­¦ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(136425, 108207, 'en', 'name', 'Fujinomiya City General Hospital'),
(136426, 108207, 'ja', 'name', 'åÆŒå£«å®®åø‚ē«‹ē—…é™¢'),
(136427, 108208, 'en', 'name', 'Integrative Graduate Education and Research Traineeship'),
(136428, 108209, 'en', 'name', 'British Trust for Ornithology'),
(136429, 108210, 'en', 'name', 'Kato Ladies Clinic'),
(136430, 108210, 'ja', 'name', 'åŠ č—¤ćƒ¬ćƒ‡ć‚£ć‚¹ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(136431, 108211, 'no_lang_code', 'name', 'Bluepoint (Romania)'),
(136432, 108212, 'es', 'name', 'Universidad Nacional Santiago AntĆŗnez de Mayolo'),
(136433, 108213, 'en', 'name', 'Kita Harima Medical Center'),
(136434, 108213, 'ja', 'name', 'åŒ—ę’­ē£Øē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(136435, 108214, 'no_lang_code', 'name', 'ƉlectricitĆ© de France (France)'),
(136436, 108215, 'en', 'name', 'Climate Change and Health Research Center'),
(136437, 108215, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ تغیر Ų§Ł‚Ł„ŪŒŁ… و سلامت'),
(136438, 108216, 'fr', 'name', 'CERMICS, Centre d’Enseignement et de Recherche en MathĆ©matIques et Calcul Scientifique'),
(136439, 108217, 'de', 'name', 'SLUB Dresden'),
(136440, 108217, 'en', 'name', 'Saxon State and University Library Dresden'),
(136441, 108218, 'en', 'name', 'National University of Kyiv Mohyla Academy'),
(136442, 108218, 'pl', 'name', 'Akademia Mohylańska w Kijowie'),
(136443, 108218, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Киево-ŠœŠ¾Š³ŠøŠ»ŃŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(136444, 108218, 'uk', 'name', 'ŠšŠøŃ”Š²Š¾-ŠœŠ¾Š³ŠøŠ»ŃŠ½ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(136445, 108219, 'en', 'name', 'Ibaraki Prefectural Institute of Public Health'),
(136446, 108219, 'ja', 'name', 'čŒØåŸŽēœŒč”›ē”Ÿē ”ē©¶ę‰€'),
(136447, 108220, 'en', 'name', 'The Graduate School of Project Design'),
(136448, 108220, 'ja', 'name', 'äŗ‹ę„­ę§‹ęƒ³å¤§å­¦é™¢å¤§å­¦'),
(136449, 108221, 'en', 'name', 'National Museum of Natural History'),
(136450, 108221, 'fr', 'name', 'MusƩum national d''Histoire naturelle'),
(136451, 108222, 'en', 'name', 'Graphic Era University'),
(136452, 108222, 'hi', 'name', 'ą¤—ą„ą¤°ą¤¾ą¤«ą¤¼ą¤æą¤• ą¤ą¤°ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(136453, 108223, 'en', 'name', 'Ajinomoto Dietary Culture Center'),
(136454, 108223, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå‘³ć®ē“ é£Ÿć®ę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(136455, 108224, 'en', 'name', 'Ministry of Climate and Enterprise'),
(136456, 108224, 'sv', 'name', 'Klimat- och nƤringslivsdepartementet'),
(136457, 108225, 'de', 'name', 'Technischer Überwachungsverein'),
(136458, 108225, 'no_lang_code', 'name', 'TÜV Rheinland (Germany)'),
(136459, 108226, 'en', 'name', 'Hiroshima Prefectural Government'),
(136460, 108226, 'ja', 'name', '広島県庁'),
(136461, 108227, 'en', 'name', 'National Institute of Fundamental Studies'),
(136462, 108227, 'si', 'name', 'ą¶¢ą·ą¶­ą·’ą¶š ą¶øą·–ą¶½ą·’ą¶š ą¶…ą¶°ą·Šā€ą¶ŗą¶± ආයතනය'),
(136463, 108228, 'en', 'name', 'The Japan Welding Engineering Society'),
(136464, 108228, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęŗ¶ęŽ„å”ä¼š'),
(136465, 108229, 'en', 'name', 'Douglas College'),
(136466, 108230, 'en', 'name', 'Central Institute for Labour Protection'),
(136467, 108230, 'pl', 'name', 'Centralny Instytut Ochrony Pracy'),
(136468, 108231, 'no_lang_code', 'name', 'Teleflex (Ireland)'),
(136469, 108232, 'en', 'name', 'University of Agder'),
(136470, 108232, 'fi', 'name', 'Agderin yliopisto'),
(136471, 108233, 'en', 'name', 'Jiangsu Frontier Electric Technology Co., Ltd., Jiangsu Frontier Electric Technology Co., Ltd. (China)'),
(136472, 108233, 'zh', 'name', 'ę±Ÿč‹ę–¹å¤©ē”µåŠ›ęŠ€ęœÆęœ‰é™å…¬åø'),
(136473, 108234, 'en', 'name', 'Trunojoyo University'),
(136474, 108234, 'id', 'name', 'Universitas Trunojoyo Madura'),
(136475, 108235, 'de', 'name', 'Deutscher Fachverband für Agroforstwirtschaft, Deutscher Fachverband für Agroforstwirtschaft e.V.'),
(136476, 108235, 'en', 'name', 'German Association for Agroforestry'),
(136477, 108236, 'en', 'name', 'Shinozaki Medical Clinic'),
(136478, 108236, 'ja', 'name', 'ēÆ å“Žå†…ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(136479, 108237, 'en', 'name', 'National Marine Fisheries Research Institute'),
(136480, 108238, 'en', 'name', 'Australian Institute of Marine Science'),
(136481, 108239, 'en', 'name', 'Academy of Christian Humanism University'),
(136482, 108239, 'es', 'name', 'Universidad Academia de Humanismo Cristiano'),
(136483, 108240, 'en', 'name', 'Council for Geoscience'),
(136484, 108241, 'el', 'name', 'Ī“ĪµĻ‰Ļ€ĪæĪ½Ī¹ĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(136485, 108241, 'en', 'name', 'Agricultural University of Athens'),
(136486, 108241, 'fr', 'name', 'Université d''agriculture d''athènes'),
(136487, 108242, 'fr', 'name', 'UniversitƩ Mohammed VI Polytechnique'),
(136488, 108243, 'en', 'name', 'Tatebayashi Kosei General Hospital'),
(136489, 108243, 'ja', 'name', 'å…¬ē«‹é¤Øęž—åŽšē”Ÿē—…é™¢'),
(136490, 108244, 'en', 'name', 'National Institute for Nuclear Physics, Milano Bicocca Division'),
(136491, 108244, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Milano Bicocca'),
(136492, 108245, 'en', 'name', 'Utsunomiya Junior College'),
(136493, 108245, 'ja', 'name', 'å®‡éƒ½å®®ēŸ­ęœŸå¤§å­¦'),
(136494, 108246, 'de', 'name', 'Hochschule für Technik, Wirtschaft und Kultur Leipzig'),
(136495, 108246, 'en', 'name', 'Leipzig University of Applied Sciences'),
(136496, 108247, 'en', 'name', 'Fort Hays Tech Northwest'),
(136497, 108248, 'no_lang_code', 'name', 'Valneva (Austria)'),
(136498, 108249, 'en', 'name', 'Kent Scientific Corporation, Kent Scientific Corporation (United States)'),
(136499, 108250, 'en', 'name', 'Institute of Tropical Medicine Antwerp'),
(136500, 108250, 'fr', 'name', 'Institut de mƩdecine tropicale'),
(136501, 108250, 'nl', 'name', 'Instituut voor Tropische Geneeskunde'),
(136502, 108251, 'fr', 'name', 'Centre Hospitalier de Luxembourg'),
(136503, 108252, 'en', 'name', 'The Netherlands Cancer Institute'),
(136504, 108252, 'nl', 'name', 'Nederlands Kanker Instituut'),
(136505, 108253, 'en', 'name', 'Amal College of Advanced Studies'),
(136506, 108254, 'en', 'name', 'Slovenian National Building and Civil Engineering Institute'),
(136507, 108255, 'en', 'name', 'ORFEO-CINQA Research Network'),
(136508, 108256, 'en', 'name', 'CETAQUA Water Technology Centre'),
(136509, 108256, 'es', 'name', 'Centro Tecnológico del Agua'),
(136510, 108257, 'es', 'name', 'Centro de Biomateriales e IngenierĆ­a Tisular'),
(136511, 108258, 'en', 'name', 'National Autonomous University of Honduras'),
(136512, 108258, 'es', 'name', 'Universidad Nacional Autónoma de Honduras'),
(136513, 108259, 'id', 'name', 'Universitas Krisnadwipayana'),
(136514, 108260, 'en', 'name', 'Florida Fish and Wildlife Conservation Commission'),
(136515, 108261, 'en', 'name', 'Kakogawa City Hospital Organization'),
(136516, 108261, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŠ å¤å·åø‚ę°‘ē—…é™¢ę©Ÿę§‹'),
(136517, 108262, 'en', 'name', 'Aju Pharm, Aju Pharm (South Korea)'),
(136518, 108262, 'ko', 'name', 'ģ•„ģ£¼ģ•½ķ’ˆ'),
(136519, 108263, 'en', 'name', 'Guangzhou Laboratory, Guangzhou National Laboratory'),
(136520, 108263, 'zh', 'name', 'å¹æå·žå®žéŖŒå®¤'),
(136521, 108264, 'en', 'name', 'Ergolight'),
(136522, 108264, 'he', 'name', '××Ø×’×•×œ×™×™×˜'),
(136523, 108265, 'en', 'name', 'National Autonomous University of Tayacaja Daniel HernƔndez Morillo'),
(136524, 108265, 'es', 'name', 'Universidad Nacional Autónoma de Tayacaja Daniel HernÔndez Morillo'),
(136525, 108266, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ فهد Ł„Ł„ŲØŲŖŲ±ŁˆŁ„ ŁˆŲ§Ł„Ł…Ų¹Ų§ŲÆŁ†'),
(136526, 108266, 'en', 'name', 'King Fahd University of Petroleum and Minerals'),
(136527, 108267, 'en', 'name', 'Otakanomori Hospital'),
(136528, 108267, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é«˜ä¼šćŠćŠćŸć‹ć®ę£®ē—…é™¢'),
(136529, 108268, 'en', 'name', 'Liaocheng University'),
(136530, 108268, 'zh', 'name', 'čŠåŸŽå¤§å­¦'),
(136531, 108269, 'bg', 'name', 'Шуменски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(136532, 108269, 'en', 'name', 'Shumen University'),
(136533, 108270, 'en', 'name', 'University of Portsmouth'),
(136534, 108271, 'no', 'name', 'Lovisenberg Diakonale Sykehus'),
(136535, 108272, 'en', 'name', 'Central University of Tamil Nadu'),
(136536, 108272, 'hi', 'name', 'ą¤¤ą¤®ą¤æą¤²ą¤Øą¤¾ą¤”ą„ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(136537, 108272, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®®ą®¤ąÆą®¤ą®æą®Æą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(136538, 108273, 'es', 'name', 'Instituto Nacional de Salud'),
(136539, 108274, 'en', 'name', 'University of Seville'),
(136540, 108274, 'es', 'name', 'Universidad de Sevilla'),
(136541, 108275, 'pt', 'name', 'Direção Regional dos Assuntos do Mar'),
(136542, 108276, 'en', 'name', 'M. Kumarasamy College of Engineering'),
(136543, 108277, 'id', 'name', 'Universitas Islam Negeri Sumatera Utara'),
(136544, 108278, 'en', 'name', 'Surgical Research and Global Education Lab (SURGE Lab)'),
(136545, 108279, 'en', 'name', 'Caleb University'),
(136546, 108280, 'it', 'name', 'Policlinico Tor Vergata'),
(136547, 108281, 'pt', 'name', 'Centro de Engenharia Mecânica Materiais e Processos'),
(136548, 108282, 'es', 'name', 'Universidad Agraria del Ecuador'),
(136549, 108283, 'pt', 'name', 'Fundação Portuguesa de Cardiologia'),
(136550, 108284, 'en', 'name', 'University of Tartu'),
(136551, 108284, 'et', 'name', 'Tartu Ülikool'),
(136552, 108284, 'ru', 'name', 'Š¢Š°Ń€Ń‚ŃƒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(136553, 108285, 'en', 'name', 'Karadeniz Technical University'),
(136554, 108285, 'tr', 'name', 'Karadeniz Teknik Üniversitesi'),
(136555, 108286, 'en', 'name', 'Boğaziçi University'),
(136556, 108286, 'tr', 'name', 'Boğaziçi Üniversitesi'),
(136557, 108287, 'en', 'name', 'Federal University of Fronteira Sul'),
(136558, 108287, 'pt', 'name', 'Universidade Federal da Fronteira Sul'),
(136559, 108288, 'en', 'name', 'Woods Hole Oceanographic Institution'),
(136560, 108289, 'en', 'name', 'Takamatsu Junior College'),
(136561, 108289, 'ja', 'name', 'é«˜ę¾ēŸ­ęœŸå¤§å­¦'),
(136562, 108290, 'en', 'name', 'Shanxi Normal University'),
(136563, 108291, 'en', 'name', 'Gonzaga University'),
(136564, 108291, 'es', 'name', 'Universidad Gonzaga'),
(136565, 108292, 'de', 'name', 'Hochschule Offenburg'),
(136566, 108292, 'en', 'name', 'Offenburg University of Applied Sciences'),
(136567, 108293, 'en', 'name', 'Armenian State Pedagogical University after Khachatur Abovian'),
(136568, 108293, 'hy', 'name', 'Õ€Õ”ÕµÕÆÕ”ÕÆÕ”Õ¶ ÕŗÕ„ÕæÕ”ÕÆÕ”Õ¶ Õ“Õ”Õ¶ÕÆÕ”Õ¾Õ”Ö€ÕŖÕ”ÕÆÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(136569, 108294, 'en', 'name', 'Center of Research and Technologic Development in Electrochemistry'),
(136570, 108294, 'es', 'name', 'Centro de Investigación y Desarrollo Tecnológico en Electroquímica'),
(136571, 108295, 'en', 'name', 'Japan RiverFront research Center'),
(136572, 108295, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒŖćƒćƒ¼ćƒ•ćƒ­ćƒ³ćƒˆē ”ē©¶ę‰€'),
(136573, 108296, 'es', 'name', 'Universidad Nacional del Santa'),
(136574, 108297, 'en', 'name', 'Tomakomai City Hospital'),
(136575, 108297, 'ja', 'name', 'č‹«å°ē‰§åø‚ē«‹ē—…é™¢'),
(136576, 108298, 'en', 'name', 'Mercatorum University'),
(136577, 108298, 'it', 'name', 'UniversitĆ  Telematica Universitas Mercatorum');
INSERT INTO `ror_settings` VALUES
(136578, 108299, 'en', 'name', 'University Colleges Leuven-Limburg'),
(136579, 108300, 'en', 'name', 'The Japan Research Institute of Industrial Science'),
(136580, 108300, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē”£ę„­ē§‘å­¦ē ”ē©¶ę‰€'),
(136581, 108301, 'en', 'name', 'American Indian Law Alliance'),
(136582, 108302, 'en', 'name', 'Higashisumiyoshi Morimoto Hospital'),
(136583, 108302, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę©˜ä¼šę±ä½å‰ę£®ęœ¬ē—…é™¢'),
(136584, 108303, 'de', 'name', 'Deutsches Klimarechenzentrum'),
(136585, 108303, 'en', 'name', 'German Climate Computing Centre'),
(136586, 108304, 'es', 'name', 'Universidad Autónoma del Beni'),
(136587, 108305, 'en', 'name', 'Santa Catarina State University'),
(136588, 108305, 'fr', 'name', 'UniversitĆ© de l''Ɖtat de santa catarina'),
(136589, 108305, 'pt', 'name', 'Universidade do Estado de Santa Catarina'),
(136590, 108306, 'en', 'name', 'HUN-REN Research Centre for Natural Sciences'),
(136591, 108306, 'hu', 'name', 'HUN-REN TermészettudomÔnyi Kutatóközpont'),
(136592, 108307, 'fr', 'name', 'ESPCI Paris, Ecole SupƩrieure de Physique et de Chimie Industrielles de la Ville de Paris'),
(136593, 108308, 'en', 'name', 'Yokohama National University'),
(136594, 108308, 'ja', 'name', 'ęØŖęµœå›½ē«‹å¤§å­¦'),
(136595, 108309, 'bn', 'name', 'বাংলাদেশ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(136596, 108309, 'en', 'name', 'Bangladesh University of Business and Technology'),
(136597, 108310, 'en', 'name', 'Concordia University of Edmonton'),
(136598, 108311, 'en', 'name', 'University of Nevada, Las Vegas'),
(136599, 108311, 'es', 'name', 'Universidad de Nevada, Las Vegas'),
(136600, 108311, 'fr', 'name', 'UniversitƩ du Nevada Ơ las Vegas'),
(136601, 108312, 'es', 'name', 'Universidad Tecnológica del Perú'),
(136602, 108313, 'en', 'name', 'Institute of Meteorology and Water Management'),
(136603, 108313, 'pl', 'name', 'Instytut Meteorologii i Gospodarki Wodnej – Państwowy Instytut Badawczy'),
(136604, 108314, 'en', 'name', 'National Autonomous University of Nicaragua'),
(136605, 108314, 'es', 'name', 'Universidad Nacional Autónoma de Nicaragua'),
(136606, 108315, 'en', 'name', 'University Hospital for Infectious Diseases "Dr Fran Mihaljevic"'),
(136607, 108315, 'hr', 'name', 'Klinika za infektivne bolesti Dr. Fran Mihaljević'),
(136608, 108316, 'pt', 'name', 'Centro de Direito da FamĆ­lia'),
(136609, 108317, 'en', 'name', 'Statistics Netherlands'),
(136610, 108317, 'nl', 'name', 'Centraal Bureau voor de Statistiek'),
(136611, 108318, 'en', 'name', 'SzƩchenyi IstvƔn University'),
(136612, 108318, 'hu', 'name', 'SzƩchenyi IstvƔn Egyetem'),
(136613, 108319, 'en', 'name', 'Japanese Standards Association'),
(136614, 108319, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬č¦ę ¼å”ä¼š'),
(136615, 108320, 'fr', 'name', 'Centrale Marseille'),
(136616, 108321, 'en', 'name', 'Radiant Earth'),
(136617, 108322, 'en', 'name', 'New Technology Foundation'),
(136618, 108322, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ‹ćƒ„ćƒ¼ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ęŒÆčˆˆč²”å›£'),
(136619, 108323, 'en', 'name', 'Incedo Inc.'),
(136620, 108324, 'en', 'name', 'National Information Processing Institute'),
(136621, 108324, 'pl', 'name', 'Ośrodek Przetwarzania Informacji'),
(136622, 108325, 'en', 'name', 'Manipal University Jaipur'),
(136623, 108326, 'es', 'name', 'Universidad Nacional Pedro RuĆ­z Gallo'),
(136624, 108327, 'en', 'name', 'Japan Energy Association'),
(136625, 108327, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•åŠ›å”ä¼š'),
(136626, 108328, 'es', 'name', 'Universidad Tecnológica Oteima'),
(136627, 108329, 'en', 'name', 'Japan Foods Inspection Corporation'),
(136628, 108329, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ę¤œęŸ»'),
(136629, 108330, 'en', 'name', 'Construction Research Institute'),
(136630, 108330, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ē‰©ä¾”čŖæęŸ»ä¼š'),
(136631, 108331, 'en', 'name', 'Nicolaus Copernicus Astronomical Center'),
(136632, 108331, 'pl', 'name', 'Centrum Astronomiczne im. Mikołaja Kopernika'),
(136633, 108332, 'en', 'name', 'Universiti of Malaysia Sabah'),
(136634, 108332, 'ms', 'name', 'Universiti Malaysia Sabah'),
(136635, 108332, 'zh', 'name', '沙巓大学'),
(136636, 108333, 'en', 'name', 'London Borough of Redbridge'),
(136637, 108334, 'en', 'name', 'MSD (Czech Republic)'),
(136638, 108335, 'pt', 'name', 'Centro de Formação Cristã'),
(136639, 108336, 'en', 'name', 'Gifu Prefectural Agricultural Technology Center'),
(136640, 108336, 'ja', 'name', 'å²é˜œēœŒč¾²ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(136641, 108337, 'it', 'name', 'Istituto Imaging della Svizzera Italiana'),
(136642, 108338, 'en', 'name', 'Osaka Nursing Association'),
(136643, 108338, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§é˜Ŗåŗœēœ‹č­·å”ä¼š'),
(136644, 108339, 'en', 'name', 'San Juan Bautista School of Medicine'),
(136645, 108340, 'en', 'name', 'The Hyogo Institute of Assistive Technology'),
(136646, 108340, 'ja', 'name', 'å…µåŗ«ēœŒē«‹ē¦ē„‰ć®ć¾ć”ć„ćć‚Šē ”ē©¶ę‰€'),
(136647, 108341, 'en', 'name', 'ZhengZhou Shengda University Of Economics, Business & Management'),
(136648, 108341, 'zh', 'name', 'éƒ‘å·žå‡č¾¾ē»č“øē®”ē†å­¦é™¢'),
(136649, 108342, 'en', 'name', 'SSH-council of the Netherlands'),
(136650, 108342, 'nl', 'name', 'SSH-raad'),
(136651, 108343, 'en', 'name', 'Düzce University'),
(136652, 108343, 'tr', 'name', 'Düzce Üniversitesi'),
(136653, 108344, 'da', 'name', 'Statens Serum Institut'),
(136654, 108344, 'en', 'name', 'State Serum Institute'),
(136655, 108345, 'en', 'name', 'Alda Research Institute'),
(136656, 108346, 'pt', 'name', 'Fundo Regional para a CiĆŖncia e Tecnologia'),
(136657, 108347, 'en', 'name', 'Cell Therapy and Regenerative Medicine Research Center'),
(136658, 108347, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų³Ł„ŁˆŁ„ ŲÆŲ±Ł…Ų§Ł†ŪŒ و پزؓکی بازساختی'),
(136659, 108348, 'pt', 'name', 'Base Naval de Lisboa'),
(136660, 108349, 'en', 'name', 'Tokyo Veterinary Medical Association'),
(136661, 108349, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½ē£åŒ»åø«ä¼š'),
(136662, 108350, 'ca', 'name', 'Fundació de Recerca ClĆ­nic Barcelona-Institut d’Investigacions BiomĆØdiques August Pi i Sunyer'),
(136663, 108351, 'en', 'name', 'Matsumoto Dental University'),
(136664, 108351, 'ja', 'name', 'ę¾ęœ¬ę­Æē§‘å¤§å­¦'),
(136665, 108352, 'en', 'name', 'Van Yuzuncu Yil University'),
(136666, 108352, 'tr', 'name', 'Van Yüzüncü Yıl Üniversitesi'),
(136667, 108353, 'en', 'name', 'University of Buea'),
(136668, 108353, 'fr', 'name', 'UniversitƩ de Buea'),
(136669, 108354, 'en', 'name', 'Institute for Technological Research'),
(136670, 108354, 'pt', 'name', 'Instituto de Pesquisas Tecnológicas'),
(136671, 108355, 'en', 'name', 'Waag Futurelab'),
(136672, 108356, 'en', 'name', 'Ushiku Aiwa General Hospital'),
(136673, 108356, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£åøøä»ä¼šē‰›ä¹…ę„›å’Œē·åˆē—…é™¢'),
(136674, 108357, 'en', 'name', 'R.V. College of Engineering'),
(136675, 108358, 'fr', 'name', 'INSA Hauts-de-France'),
(136676, 108359, 'en', 'name', 'University of Reggio Calabria'),
(136677, 108359, 'fr', 'name', 'UniversitƩ de reggio de calabre'),
(136678, 108359, 'it', 'name', 'UniversitĆ  degli Studi Mediterranea di Reggio Calabria'),
(136679, 108360, 'en', 'name', 'Kuwait Institute for Scientific Research'),
(136680, 108361, 'fr', 'name', 'Centre hospitalier de l''UniversitƩ Laval'),
(136681, 108362, 'en', 'name', 'Nelson Mandela African Institution of Science and Technology'),
(136682, 108362, 'sw', 'name', 'Taasisi ya Sayansi na Teknolojia ya Nelson Mandela'),
(136683, 108363, 'en', 'name', 'Metabolic Diseases Research Center'),
(136684, 108363, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ اختلالات Ł…ŲŖŲ§ŲØŁˆŁ„ŪŒŚ©'),
(136685, 108364, 'de', 'name', 'UniversitƤt Ferrara'),
(136686, 108364, 'en', 'name', 'University of Ferrara'),
(136687, 108364, 'fr', 'name', 'UniversitƩ de ferrare'),
(136688, 108364, 'it', 'name', 'UniversitĆ  degli Studi di Ferrara'),
(136689, 108365, 'en', 'name', 'Rockefeller University'),
(136690, 108365, 'es', 'name', 'Universidad Rockefeller'),
(136691, 108366, 'de', 'name', 'Bundesinstitut für Berufsbildung'),
(136692, 108366, 'en', 'name', 'Federal Institute for Vocational Education and Training'),
(136693, 108367, 'en', 'name', 'Concordia University'),
(136694, 108367, 'fr', 'name', 'UniversitƩ Concordia'),
(136695, 108368, 'en', 'name', 'University of the Llanos'),
(136696, 108368, 'es', 'name', 'Universidad de los Llanos'),
(136697, 108369, 'pt', 'name', 'Centro de CiĆŖncia e Tecnologia TĆŖxtil'),
(136698, 108370, 'en', 'name', 'Sodegaura Satsukidai Hospital'),
(136699, 108370, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē¤¾å›£ć•ć¤ćä¼šč¢–ć‚±ęµ¦ć•ć¤ćå°ē—…é™¢'),
(136700, 108371, 'en', 'name', 'Military Review'),
(136701, 108371, 'pt', 'name', 'Revista Militar (Portugal)'),
(136702, 108372, 'es', 'name', 'Universidad Virtual del Estado de Guanajuato'),
(136703, 108373, 'en', 'name', 'Nune Eye Hospital'),
(136704, 108374, 'en', 'name', 'Dev Sanskriti Vishwavidyalaya'),
(136705, 108374, 'hi', 'name', 'ą¤¦ą„‡ą¤µ ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(136706, 108375, 'en', 'name', 'South Metropolitan Health Service'),
(136707, 108376, 'en', 'name', 'University of Boyaca'),
(136708, 108376, 'es', 'name', 'Universidad de BoyacĆ”'),
(136709, 108377, 'en', 'name', 'Tehran Heart Center'),
(136710, 108377, 'fa', 'name', 'مرکز قلب تهران'),
(136711, 108378, 'nl', 'name', 'GGZ inGeest'),
(136712, 108379, 'en', 'name', 'Stepan Gzhytskyi National University of Veterinary Medicine and Biotechnologies Lviv'),
(136713, 108379, 'ru', 'name', 'Š›ŃŒŠ²Š¾Š²ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарной меГицины Šø биотехнологий имени Š”.Š—. Гжицкого'),
(136714, 108379, 'uk', 'name', 'Š›ŃŒŠ²Ń–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ветеринарної меГицини та біотехнологій імені Дтепана Š“Š¶ŠøŃ†ŃŒŠŗŠ¾Š³Š¾'),
(136715, 108380, 'en', 'name', 'Newham College'),
(136716, 108381, 'en', 'name', 'Niigata Prefecture Yoshida Hospital'),
(136717, 108381, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹å‰ē”°ē—…é™¢'),
(136718, 108382, 'fr', 'name', 'CollĆØge de Bois-de-Boulogne'),
(136719, 108383, 'en', 'name', 'Brewing Society of Japan'),
(136720, 108383, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é†øé€ å”ä¼š'),
(136721, 108384, 'en', 'name', 'HLA Laboratory'),
(136722, 108384, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗHLA研究所'),
(136723, 108385, 'en', 'name', 'Atsugi City Hospital'),
(136724, 108385, 'ja', 'name', 'åŽšęœØåø‚ē«‹ē—…é™¢'),
(136725, 108386, 'en', 'name', 'Kano State University of Technology'),
(136726, 108387, 'fr', 'name', 'Institut Polytechnique de Paris'),
(136727, 108388, 'en', 'name', 'Croydon College'),
(136728, 108389, 'pt', 'name', 'Santa Casa da Misericórdia do Porto'),
(136729, 108390, 'en', 'name', 'Gulu University'),
(136730, 108391, 'en', 'name', 'University College Birmingham'),
(136731, 108392, 'pt', 'name', 'Hospital da Horta EPER'),
(136732, 108393, 'no_lang_code', 'name', 'Fortiss'),
(136733, 108394, 'en', 'name', 'Bindura University of Science Education'),
(136734, 108395, 'en', 'name', 'Jyuzen General Hospital'),
(136735, 108395, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē©å–„ä¼šåå…Øē·åˆē—…é™¢'),
(136736, 108396, 'en', 'name', 'Endocrinology and Metabolism Clinical Sciences Institute'),
(136737, 108396, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ Ų¹Ł„ŁˆŁ… ŲØŲ§Ł„ŪŒŁ†ŪŒ ŲŗŲÆŲÆ'),
(136738, 108397, 'en', 'name', 'Marine Biological Association of the United Kingdom'),
(136739, 108398, 'es', 'name', 'Fundación Instituto Leloir'),
(136740, 108399, 'fr', 'name', 'Collège Jean-de-Brébeuf'),
(136741, 108400, 'de', 'name', 'UniversitƤt Koblenz'),
(136742, 108400, 'en', 'name', 'University of Koblenz'),
(136743, 108401, 'en', 'name', 'Tanushimaru Central Hospital'),
(136744, 108401, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč–å³°ä¼šē”°äø»äøøäø­å¤®ē—…é™¢'),
(136745, 108402, 'id', 'name', 'Universitas 17 Agustus 1945 Semarang'),
(136746, 108403, 'en', 'name', 'Draper Laboratory'),
(136747, 108404, 'en', 'name', 'University of Piemonte Orientale Amedeo Avogadro'),
(136748, 108404, 'it', 'name', 'UniversitĆ  degli Studi del Piemonte Orientale ā€œAmedeo Avogadroā€'),
(136749, 108405, 'en', 'name', 'Regis University'),
(136750, 108405, 'es', 'name', 'Universidad RƩgis'),
(136751, 108406, 'en', 'name', 'St. Marianna University School of Medicine'),
(136752, 108406, 'ja', 'name', 'č–ćƒžćƒŖć‚¢ćƒ³ćƒŠåŒ»ē§‘å¤§å­¦'),
(136753, 108407, 'en', 'name', 'Open Book Collective'),
(136754, 108408, 'en', 'name', 'Royal Netherlands Academy of Arts and Sciences'),
(136755, 108408, 'nl', 'name', 'Koninklijke Nederlandse Akademie van Wetenschappen'),
(136756, 108409, 'en', 'name', 'Edgewood College'),
(136757, 108410, 'en', 'name', 'South Carolina Department of Natural Resources'),
(136758, 108411, 'fr', 'name', 'Physiologie de la Nutrition et du Comportement Alimentaire'),
(136759, 108412, 'en', 'name', 'University of GƤvle'),
(136760, 108412, 'sv', 'name', 'Hƶgskolan i GƤvle'),
(136761, 108413, 'en', 'name', 'Takeda General Hospital'),
(136762, 108413, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē«¹ē”°å„åŗ·č²”å›£ē«¹ē”°ē¶œåˆē—…é™¢'),
(136763, 108414, 'en', 'name', 'Ladoke Akintola University of Technology'),
(136764, 108415, 'en', 'name', 'Józef Piłsudski University of Physical Education in Warsaw'),
(136765, 108415, 'pl', 'name', 'Akademia Wychowania Fizycznego Józefa Piłsudskiego w Warszawie'),
(136766, 108416, 'en', 'name', 'The National Gallery'),
(136767, 108417, 'ca', 'name', 'Universitat de ValĆØncia'),
(136768, 108417, 'en', 'name', 'University of Valencia'),
(136769, 108417, 'es', 'name', 'Universidad de Valencia'),
(136770, 108417, 'gl', 'name', 'Universidade de Valencia'),
(136771, 108418, 'en', 'name', 'Ontario Institute for Cancer Research'),
(136772, 108419, 'en', 'name', 'Third Geological Brigade of Hubei Geological Bureau'),
(136773, 108420, 'en', 'name', 'Center for Hierarchical Manufacturing'),
(136774, 108421, 'en', 'name', 'Shin-Kuki General Hospital'),
(136775, 108421, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£åŸ¼ēŽ‰å·ØęØ¹ć®ä¼šę–°ä¹…å–œē·åˆē—…é™¢'),
(136776, 108422, 'en', 'name', 'Research Institute of Human Engineering for Quality Life'),
(136777, 108422, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗŗé–“ē”Ÿę“»å·„å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(136778, 108423, 'no_lang_code', 'name', 'Wayamba University of Sri Lanka'),
(136779, 108423, 'si', 'name', 'ą·ą·Šā€ą¶»ą·“ ą¶½ą¶‚ą¶šą· වයඹ ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(136780, 108423, 'ta', 'name', 'ą®‡ą®²ą®™ąÆą®•ąÆˆ ą®µą®Æą®®ąÆą®Ŗ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(136781, 108424, 'en', 'name', 'Indraprasta Pgri University'),
(136782, 108424, 'id', 'name', 'Universitas Indraprasta PGRI'),
(136783, 108425, 'en', 'name', 'Tallinn University of Technology'),
(136784, 108425, 'et', 'name', 'Tallinna Tehnikaülikool'),
(136785, 108425, 'ru', 'name', 'Таллинский технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(136786, 108426, 'en', 'name', 'Gunma Prefectural Police'),
(136787, 108426, 'ja', 'name', '群馬県警察'),
(136788, 108427, 'en', 'name', 'Tianjin Academy of Fine Arts'),
(136789, 108427, 'zh', 'name', 'å¤©ę“„ē¾ŽęœÆå­¦é™¢'),
(136790, 108428, 'hi', 'name', 'Rajkiya Mahila Mahavidyalaya, Budaun, ą¤°ą¤¾ą¤œą¤•ą„€ą¤Æ महिला ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤¬ą¤¦ą¤¾ą¤Æą„‚ą¤'),
(136791, 108429, 'en', 'name', 'Osh State University'),
(136792, 108429, 'ky', 'name', 'ŠžŃˆ мамлекеттик ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(136793, 108429, 'ru', 'name', 'ŠžŃˆŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(136794, 108429, 'tr', 'name', 'Oş Devlet Üniversitesi'),
(136795, 108430, 'pt', 'name', 'Sociedade Brasileira de Geriatria e Gerontologia'),
(136796, 108431, 'en', 'name', 'Thai Nguyen University Of Education'),
(136797, 108431, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Sʰ phįŗ”m ThĆ”i NguyĆŖn'),
(136798, 108432, 'fr', 'name', 'SUMMIT'),
(136799, 108433, 'en', 'name', 'Suiseikai Kajikawa Hospital'),
(136800, 108433, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗēæ ęø…ä¼šēæ ęø…ä¼šę¢¶å·ē—…é™¢'),
(136801, 108434, 'en', 'name', 'Chinese Medical Association'),
(136802, 108434, 'zh', 'name', 'äø­åŽåŒ»å­¦ä¼šåæƒč”€ē®”ē—…å­¦åˆ†ä¼š'),
(136803, 108435, 'en', 'name', 'Centre for Human Drug Research'),
(136804, 108436, 'en', 'name', 'Indira Gandhi Mirpur University'),
(136805, 108436, 'hi', 'name', 'इंदिरा ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(136806, 108437, 'ja', 'name', 'å‘³ć®ē“ ę Ŗå¼ä¼šē¤¾'),
(136807, 108437, 'no_lang_code', 'name', 'Ajinomoto (Japan)'),
(136808, 108438, 'en', 'name', 'Okayama Healthcare Professional University'),
(136809, 108438, 'ja', 'name', 'å²”å±±åŒ»ē™‚å°‚é–€č·å¤§å­¦'),
(136810, 108439, 'en', 'name', 'Montefiore Medical Center'),
(136811, 108440, 'en', 'name', 'Infrastructure Development INSTITUTE-JAPAN'),
(136812, 108440, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›å»ŗčØ­ęŠ€č”“å”ä¼š'),
(136813, 108441, 'en', 'name', 'Yaroslavl State University'),
(136814, 108441, 'ru', 'name', 'Ярославский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени П. Š“. ДемиГова'),
(136815, 108442, 'en', 'name', 'Miyagi Prefectural Forestry Technology Institute'),
(136816, 108442, 'ja', 'name', 'å®®åŸŽēœŒęž—ę„­ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(136817, 108443, 'ar', 'name', 'جــــــامـعـة Ų§Ł„Ł€Ų“Ł€Ų±Ł‚Ł€Ł€Ł€Ł€Ł€Ł€Ł€ŁŠŁ€Ų©'),
(136818, 108443, 'no_lang_code', 'name', 'A''Sharqiyah University'),
(136819, 108444, 'pt', 'name', 'Universidade Federal de Rondonópolis'),
(136820, 108445, 'de', 'name', 'Zentrum für Soziale Innovation'),
(136821, 108445, 'en', 'name', 'Centre for Social Innovation'),
(136822, 108446, 'en', 'name', 'Joint Institute for Nuclear Research'),
(136823, 108446, 'ru', 'name', 'ŠžŠ±ŃŠŠµŠ“ŠøŠ½Ń‘Š½Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠ“ŠµŃ€Š½Ń‹Ń… исслеГований'),
(136824, 108447, 'en', 'name', 'Center for Legal and Political Philosophy'),
(136825, 108447, 'fr', 'name', 'Centre de Philosophie Juridique et Politique'),
(136826, 108448, 'en', 'name', 'Norwegian School of Sport Sciences'),
(136827, 108449, 'en', 'name', 'Royal Botanic Gardens Victoria'),
(136828, 108450, 'en', 'name', 'JK Lakshmipat University'),
(136829, 108451, 'en', 'name', 'National Institute of Technology Andhra Pradesh'),
(136830, 108451, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤†ą¤‚ą¤§ą„ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶'),
(136831, 108452, 'en', 'name', 'Gates Foundation'),
(136832, 108453, 'es', 'name', 'Servicio CƔntabro de Salud'),
(136833, 108454, 'en', 'name', '1 Decembrie 1918 University'),
(136834, 108454, 'ro', 'name', 'Universitatea 1 Decembrie 1918 din Alba Iulia'),
(136835, 108455, 'en', 'name', 'National Sanatorium Nagashima-Aiseien'),
(136836, 108455, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€é•·å³¶ę„›ē”Ÿåœ’'),
(136837, 108456, 'fr', 'name', 'Territoires, Environnement, TƩlƩdƩtection et Information Spatiale'),
(136838, 108457, 'en', 'name', 'Sanshikai Toho Hospital'),
(136839, 108457, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£äø‰ę€ä¼šę±é‚¦ē—…é™¢'),
(136840, 108458, 'en', 'name', 'Source International, Source International ETS'),
(136841, 108459, 'en', 'name', 'Ministry of Science Technology and Higher Education'),
(136842, 108459, 'pt', 'name', 'Ministério da Ciência Tecnologia e Ensino Superior'),
(136843, 108460, 'cy', 'name', 'yr Academi Gerddoriaeth Frenhinol'),
(136844, 108460, 'en', 'name', 'Royal Academy of Music'),
(136845, 108461, 'en', 'name', 'National Institute for Art History'),
(136846, 108461, 'fr', 'name', 'Institut national d''histoire de l''art'),
(136847, 108462, 'en', 'name', 'Petra Christian University'),
(136848, 108462, 'id', 'name', 'Universitas Kristen Petra'),
(136849, 108463, 'es', 'name', 'Universidad De Aquino Bolivia'),
(136850, 108464, 'en', 'name', 'Galician Research and Development Center in Advanced Telecommunications'),
(136851, 108464, 'es', 'name', 'Centro Tecnológico de Telecomunicaciones de Galicia, Centro Tecnolóxico de Telecomunicacións de Galicia'),
(136852, 108465, 'en', 'name', 'Tashkent Chemical-Technological Institute'),
(136853, 108465, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ химико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(136854, 108465, 'uz', 'name', 'Toshkent Kimyo-Texnologiya Instituti'),
(136855, 108466, 'en', 'name', 'Collegium Civitas'),
(136856, 108467, 'es', 'name', 'Fundación Universitaria CIEO - UNICIEO'),
(136857, 108468, 'en', 'name', 'Ibaraki Prefectural Medical Center of Psychiatry'),
(136858, 108468, 'ja', 'name', 'čŒØåŸŽēœŒē«‹ć“ć“ć‚ć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(136859, 108469, 'bn', 'name', 'ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦­ą§‡ą¦Ÿą§‡ą¦°ą¦æą¦Øą¦¾ą¦°ą¦æ ও ą¦ą¦Øą¦æą¦®ą§ą¦Æą¦¾ą¦² ą¦øą¦¾ą¦‡ą¦Øą§ą¦øą§‡ą¦ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(136860, 108469, 'en', 'name', 'Chattogram Veterinary and Animal Sciences University'),
(136861, 108470, 'en', 'name', 'Bir Tikendrajit University'),
(136862, 108471, 'de', 'name', 'UniversitƤt Vechta'),
(136863, 108471, 'en', 'name', 'University of Vechta'),
(136864, 108472, 'en', 'name', 'University of Mohaghegh Ardabili'),
(136865, 108472, 'fa', 'name', 'دانؓگاه محقق Ų§Ų±ŲÆŲØŪŒŁ„ŪŒ'),
(136866, 108473, 'en', 'name', 'Federal University of Western ParĆ”'),
(136867, 108473, 'pt', 'name', 'Universidade Federal do Oeste do ParĆ”'),
(136868, 108474, 'en', 'name', 'Split University Hospital Centre'),
(136869, 108474, 'hr', 'name', 'Klinički Bolnički Centar Split'),
(136870, 108475, 'en', 'name', 'Guangdong Ocean University'),
(136871, 108475, 'zh', 'name', 'å¹æäøœęµ·ę“‹å¤§å­¦'),
(136872, 108476, 'en', 'name', 'University of Malaysia Kelantan'),
(136873, 108476, 'ms', 'name', 'Universiti Malaysia Kelantan'),
(136874, 108477, 'en', 'name', 'University of Massachusetts Chan Medical School'),
(136875, 108478, 'en', 'name', 'La Salle Green Hills'),
(136876, 108479, 'en', 'name', 'Darshan University'),
(136877, 108480, 'en', 'name', 'Recep Tayyip Erdoğan University'),
(136878, 108480, 'tr', 'name', 'Recep Tayyip Erdoğan Üniversitesi'),
(136879, 108481, 'pt', 'name', 'Observatório da Comunicação'),
(136880, 108482, 'en', 'name', 'Tokyo Health Service Association'),
(136881, 108482, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬éƒ½äŗˆé˜²åŒ»å­¦å”ä¼š'),
(136882, 108483, 'en', 'name', 'Personalized Medicine Research Center'),
(136883, 108483, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ پزؓکی فردی'),
(136884, 108484, 'nl', 'name', 'Isala'),
(136885, 108485, 'en', 'name', 'Iwate Fisheries Technology Center'),
(136886, 108485, 'ja', 'name', 'å²©ę‰‹ēœŒę°“ē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(136887, 108486, 'en', 'name', 'National Institute of Industrial Technology'),
(136888, 108486, 'es', 'name', 'Instituto Nacional de TecnologĆ­a Industrial'),
(136889, 108487, 'en', 'name', 'Xi''an University of Science and Technology'),
(136890, 108487, 'zh', 'name', 'č„æå®‰ē§‘ęŠ€å¤§å­¦'),
(136891, 108488, 'en', 'name', 'West Anhui University'),
(136892, 108488, 'zh', 'name', 'ēš–č„æå­¦é™¢'),
(136893, 108489, 'en', 'name', 'Yokohama City Institute of Public Health'),
(136894, 108489, 'ja', 'name', 'ęØŖęµœåø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(136895, 108490, 'en', 'name', 'Zikei Institute of Psychiatry'),
(136896, 108490, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę…ˆåœ­ä¼šę…ˆåœ­ē—…é™¢'),
(136897, 108491, 'en', 'name', 'Termez Institute of Engineering and Technology'),
(136898, 108492, 'en', 'name', 'Estonian Academy of Music and Theatre'),
(136899, 108492, 'et', 'name', 'Eesti Muusika- ja Teatriakadeemia'),
(136900, 108492, 'ru', 'name', 'Š­ŃŃ‚Š¾Š½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Š¼ŃƒŠ·Ń‹ŠŗŠø Šø театра'),
(136901, 108493, 'en', 'name', 'WSB University'),
(136902, 108493, 'pl', 'name', 'Akademia WSB'),
(136903, 108494, 'en', 'name', 'IUCN World Commission on Protected Areas'),
(136904, 108495, 'en', 'name', 'Academy of Music in Łódź'),
(136905, 108495, 'pl', 'name', 'Akademia Muzyczna im. Grażyny i Kiejstuta Bacewiczów w Łodzi'),
(136906, 108496, 'en', 'name', 'Japan Industrial Management Association'),
(136907, 108496, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒå–¶å·„å­¦ä¼š'),
(136908, 108497, 'en', 'name', 'Swedish Defence Research Agency'),
(136909, 108497, 'fi', 'name', 'Ruotsin kokonaismaanpuolustuksen tutkimuslaitos'),
(136910, 108497, 'sv', 'name', 'Totalfƶrsvarets forskningsinstitut'),
(136911, 108498, 'fr', 'name', 'Microbiologie de l’alimentation au service de la santĆ©'),
(136912, 108499, 'en', 'name', 'Federal College of Education, Kontagora'),
(136913, 108500, 'pt', 'name', 'Unidade Local de SaĆŗde de Castelo Branco EPE'),
(136914, 108501, 'en', 'name', 'University of Illinois Urbana-Champaign'),
(136915, 108501, 'es', 'name', 'Universidad de Illinois en Urbana-Champaign'),
(136916, 108501, 'fr', 'name', 'UniversitƩ de l''Illinois Ơ Urbana-Champaign'),
(136917, 108502, 'en', 'name', 'University Clinical Center Tuzla'),
(136918, 108503, 'en', 'name', 'Hakusan Nature Conservation Center'),
(136919, 108503, 'ja', 'name', 'ēŸ³å·ēœŒē™½å±±č‡Ŗē„¶äæč­·ć‚»ćƒ³ć‚æćƒ¼'),
(136920, 108504, 'en', 'name', 'Hugh Baird College'),
(136921, 108505, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± السلام'),
(136922, 108505, 'en', 'name', 'University of Dar es Salaam'),
(136923, 108505, 'sw', 'name', 'Chuo Kikuu cha Dar es Salaam'),
(136924, 108506, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Alessandria'),
(136925, 108507, 'fr', 'name', 'HƓpital Jeanne d''Arc'),
(136926, 108508, 'en', 'name', 'National Institute for Aerospace Research Elie Carafoli'),
(136927, 108509, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بيت لحم'),
(136928, 108509, 'en', 'name', 'Bethlehem University'),
(136929, 108510, 'en', 'name', 'UGC DAE Consortium for Scientific Research'),
(136930, 108511, 'en', 'name', 'Lapland University of Applied Sciences'),
(136931, 108511, 'fi', 'name', 'Lapin ammattikorkeakoulu'),
(136932, 108512, 'fr', 'name', 'Institut FranƧais'),
(136933, 108513, 'nl', 'name', 'Iselinge Hogeschool'),
(136934, 108514, 'en', 'name', 'Agency for Natural Resources and Energy'),
(136935, 108514, 'ja', 'name', 'č³‡ęŗć‚Øćƒćƒ«ć‚®ćƒ¼åŗ'),
(136936, 108515, 'en', 'name', 'Children''s Hospital of The King''s Daughters'),
(136937, 108516, 'en', 'name', 'Brigham Young University'),
(136938, 108517, 'en', 'name', 'Wakakusa-Tatsuma Rehabilitation Hospital'),
(136939, 108517, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč‹„å¼˜ä¼šć‚ć‹ćć•ē«œé–“ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(136940, 108518, 'en', 'name', 'Research Institute of Horticulture'),
(136941, 108518, 'pl', 'name', 'Instytut Ogrodnictwa'),
(136942, 108519, 'en', 'name', 'Chaitanya Bharathi Institute of Technology'),
(136943, 108519, 'te', 'name', 'ą°šą±ˆą°¤ą°Øą±ą°Æ భారతి ą°‡ą°Øą±ā€Œą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€'),
(136944, 108520, 'en', 'name', 'National Heart Institute'),
(136945, 108521, 'en', 'name', 'Maryam Abacha American University of Niger'),
(136946, 108522, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Amministrazione Centrale'),
(136947, 108523, 'de', 'name', 'Medizinische Hochschule Brandenburg Theodor Fontane'),
(136948, 108524, 'en', 'name', 'Institute of Communication and Computer Systems'),
(136949, 108525, 'en', 'name', 'Longyan University'),
(136950, 108525, 'zh', 'name', '龙岩学院'),
(136951, 108526, 'en', 'name', 'Toplica Academy of Applied Studies'),
(136952, 108526, 'sr', 'name', 'Топличка акаГемија ŃŃ‚Ń€ŃƒŠŗŠ¾Š²Š½ŠøŃ… ŃŃ‚ŃƒŠ“ŠøŃ˜Š°'),
(136953, 108527, 'en', 'name', 'National University of Mongolia'),
(136954, 108527, 'mn', 'name', 'Монгол Улсын Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(136955, 108527, 'ru', 'name', 'Монгольский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(136956, 108528, 'fr', 'name', 'UniversitƩ Alioune Diop de Bambey'),
(136957, 108529, 'en', 'name', 'The Japan Society of Acupuncture and Moxibustion'),
(136958, 108529, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øę—„ęœ¬é¼ēøå­¦ä¼š'),
(136959, 108530, 'en', 'name', 'Chikugo City Hospital'),
(136960, 108530, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē­‘å¾Œåø‚ē«‹ē—…é™¢'),
(136961, 108531, 'en', 'name', 'Shanghai Institute for Mathematics and Interdisciplinary Sciences'),
(136962, 108532, 'en', 'name', 'Canterbury Christ Church University'),
(136963, 108533, 'en', 'name', 'Shippensburg University'),
(136964, 108534, 'en', 'name', 'The Operations Research Society of Japan'),
(136965, 108534, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Ŗćƒšćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³ć‚ŗćƒ»ćƒŖć‚µćƒ¼ćƒå­¦ä¼š'),
(136966, 108535, 'en', 'name', 'Ibaraki Medical Association'),
(136967, 108535, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗčŒØęœØåø‚åŒ»åø«ä¼š'),
(136968, 108536, 'de', 'name', 'DVGW-Forschungsstelle TUHH'),
(136969, 108537, 'es', 'name', 'Universidad Tecnológica de Los Andes'),
(136970, 108538, 'es', 'name', 'Universidad Tecnológica Emiliano Zapata del Estado de Morelos'),
(136971, 108539, 'en', 'name', 'Moravian University'),
(136972, 108540, 'en', 'name', 'PRO Natura Foundation Japan'),
(136973, 108540, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč‡Ŗē„¶äæč­·åŠ©ęˆåŸŗé‡‘'),
(136974, 108541, 'en', 'name', 'General Jonas Žemaitis Military Academy of Lithuania'),
(136975, 108541, 'lt', 'name', 'Generolo Jono Žemaičio Lietuvos karo akademija'),
(136976, 108542, 'no_lang_code', 'name', 'MSD (Austria)'),
(136977, 108543, 'en', 'name', 'Center for Air Pollution Research'),
(136978, 108543, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų¢Ł„ŁˆŲÆŚÆŪŒ Ł‡ŁˆŲ§'),
(136979, 108544, 'en', 'name', 'Hansung University'),
(136980, 108544, 'ko', 'name', 'ķ•œģ„±ėŒ€ķ•™źµ'),
(136981, 108545, 'fr', 'name', 'Centre National de CrƩation Musicale'),
(136982, 108546, 'en', 'name', 'Romanian Society of Trams'),
(136983, 108546, 'ro', 'name', 'Regia Autonomă de Transport București'),
(136984, 108547, 'ca', 'name', 'Universitat de TorĆ­'),
(136985, 108547, 'de', 'name', 'UniversitƤt Turin'),
(136986, 108547, 'en', 'name', 'University of Turin'),
(136987, 108547, 'fr', 'name', 'UniversitƩ de Turin'),
(136988, 108547, 'it', 'name', 'UniversitĆ  degli Studi di Torino'),
(136989, 108548, 'en', 'name', 'European University of the Atlantic'),
(136990, 108548, 'es', 'name', 'Universidad Europea del AtlƔntico'),
(136991, 108549, 'en', 'name', 'Institute of Business Management'),
(136992, 108549, 'sd', 'name', 'Ų§Ł†Ų³Ł½ŁŠŁ½ŁŠŁˆŁ½ آف بزنس Ł…ŁŠŁ†ŁŠŲ¬Ł…ŁŠŁ†Ł½ā€Ž'),
(136993, 108550, 'en', 'name', 'Khorramshahr University of Marine Science and Technology'),
(136994, 108550, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… و ŁŁ†ŁˆŁ† دریایی خرمؓهر'),
(136995, 108551, 'no_lang_code', 'name', 'Geosyntec Consultants (United States)'),
(136996, 108552, 'en', 'name', 'Charles Darwin University'),
(136997, 108553, 'en', 'name', 'National University of RĆ­o Negro'),
(136998, 108553, 'es', 'name', 'Universidad Nacional de RĆ­o Negro'),
(136999, 108554, 'en', 'name', 'National Institute of Technology Kurukshetra'),
(137000, 108555, 'en', 'name', 'Iwate Prefectural Miyako Hospital'),
(137001, 108555, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹å®®å¤ē—…é™¢'),
(137002, 108556, 'en', 'name', 'Osaka Health Medical Foundation'),
(137003, 108556, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗåŗœäæå„åŒ»ē™‚č²”å›£'),
(137004, 108557, 'en', 'name', 'InterPsy Laboratory'),
(137005, 108557, 'fr', 'name', 'Interpsy, Laboratoire InterPsy'),
(137006, 108558, 'en', 'name', 'Inner Mongolia Normal University'),
(137007, 108558, 'zh', 'name', 'å†…č’™å¤åøˆčŒƒå¤§å­¦'),
(137008, 108559, 'pt', 'name', 'Laboratório Nacional de Computação Científica'),
(137009, 108560, 'en', 'name', 'Nagasaki Prefectural Government'),
(137010, 108560, 'ja', 'name', 'é•·å“ŽēœŒåŗ'),
(137011, 108561, 'en', 'name', 'Edo State University Uzairue'),
(137012, 108562, 'en', 'name', 'Sabancı University'),
(137013, 108562, 'tr', 'name', 'Sabancı Üniversitesi'),
(137014, 108563, 'es', 'name', 'Instituto Nacional de Investigacion y Desarrollo Pesquero, Instituto de BiologĆ­a Marina'),
(137015, 108564, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الآداب ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų„Ł†Ų³Ų§Ł†ŁŠŲ© بصفاقس'),
(137016, 108564, 'fr', 'name', 'FacultƩ des Lettres et des Sciences Humaines de Sfax'),
(137017, 108565, 'en', 'name', 'University of Burgos'),
(137018, 108565, 'es', 'name', 'Universidad de Burgos'),
(137019, 108566, 'en', 'name', 'Mutsu General Hospital'),
(137020, 108566, 'ja', 'name', 'ć‚€ć¤ē·åˆē—…é™¢'),
(137021, 108567, 'en', 'name', 'Bydgoszcz University of Science and Technology'),
(137022, 108567, 'pl', 'name', 'Uniwersytet Technologiczno-Przyrodniczy im. Jana i Jędrzeja Śniadeckich w Bydgoszczy'),
(137023, 108568, 'id', 'name', 'Universitas Jember'),
(137024, 108569, 'en', 'name', 'Federal College of Education (Technical), Umunze'),
(137025, 108570, 'en', 'name', 'Miyazaki Prefectural Fisheries Research Institute'),
(137026, 108570, 'ja', 'name', 'å®®å“ŽēœŒę°“ē”£č©¦éØ“å “'),
(137027, 108571, 'en', 'name', 'Japanese Society of School Health'),
(137028, 108571, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å­¦ę ”äæå„ä¼š'),
(137029, 108572, 'fr', 'name', 'UniversitƩ du QuƩbec Ơ Rimouski'),
(137030, 108573, 'id', 'name', 'Poltekkes Kemenkes Surabaya'),
(137031, 108574, 'en', 'name', 'Aga Khan University Institute for Study of Muslim Civilisations'),
(137032, 108575, 'id', 'name', 'Bank Indonesia'),
(137033, 108576, 'es', 'name', 'Hospital Universitario Fundación Jiménez Díaz'),
(137034, 108577, 'no_lang_code', 'name', 'Blue Point IT Solutions (Romania)'),
(137035, 108578, 'en', 'name', 'Biology and Management of Risks in Agriculture'),
(137036, 108578, 'fr', 'name', 'Biologie et Gestion des Risques en Agriculture'),
(137037, 108579, 'da', 'name', 'Region Hovedstaden'),
(137038, 108579, 'en', 'name', 'Capital Region of Denmark'),
(137039, 108580, 'en', 'name', 'Andhra University'),
(137040, 108580, 'hi', 'name', 'ą¤†ą¤Øą„ą¤§ą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(137041, 108580, 'ta', 'name', 'ą®†ą®ØąÆą®¤ą®æą®°ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(137042, 108580, 'te', 'name', 'ą°†ą°‚ą°§ą±ą°° ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(137043, 108581, 'en', 'name', 'Rhodes College'),
(137044, 108582, 'en', 'name', 'Mimihara General Hospital'),
(137045, 108582, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåŒä»ä¼šč€³åŽŸē·åˆē—…é™¢'),
(137046, 108583, 'fr', 'name', 'Laboratoire St Venant, Laboratoire d''Hydraulique Saint-Venant'),
(137047, 108584, 'en', 'name', 'NATO Centre for Maritime Research and Experimentation'),
(137048, 108585, 'en', 'name', 'Institute of Solid State Physics, UL'),
(137049, 108585, 'lv', 'name', 'LU Cietvielu fizikas institūts'),
(137050, 108586, 'en', 'name', 'Norwegian University of Life Sciences'),
(137051, 108586, 'fi', 'name', 'Norjan ympƤristƶtieteen ja biologian yliopisto'),
(137052, 108586, 'no', 'name', 'Norges miljĆø- og biovitenskapelige universitet'),
(137053, 108587, 'en', 'name', 'Shizuoka Prefectural Research Institute of Animal Industry'),
(137054, 108587, 'ja', 'name', 'é™å²”ēœŒē•œē”£ęŠ€č”“ē ”ē©¶ę‰€'),
(137055, 108588, 'en', 'name', 'Wittenberg University'),
(137056, 108589, 'en', 'name', 'Nagaoka Sutoku University'),
(137057, 108589, 'ja', 'name', '長岔哇徳大学'),
(137058, 108590, 'en', 'name', 'Stanisław Sakowicz Inland Fisheries Institute'),
(137059, 108591, 'en', 'name', 'Kurate Hospital'),
(137060, 108591, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗćć‚‰ć¦ē—…é™¢'),
(137061, 108592, 'en', 'name', 'Chuno Kosei Hospital'),
(137062, 108592, 'ja', 'name', 'JAå²é˜œåŽšē”Ÿé€£äø­ęæƒåŽšē”Ÿē—…é™¢'),
(137063, 108593, 'en', 'name', 'International Medical Information Center'),
(137064, 108593, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›åŒ»å­¦ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(137065, 108594, 'pt', 'name', 'Academia das CiĆŖncias de Lisboa'),
(137066, 108595, 'bn', 'name', 'ą¦¹ą¦¾ą¦Æą¦¼ą¦¦ą§ą¦°ą¦¾ą¦¬ą¦¾ą¦¦ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(137067, 108595, 'en', 'name', 'University of Hyderabad'),
(137068, 108595, 'hi', 'name', 'ą¤¹ą„ˆą¤¦ą¤°ą¤¾ą¤¬ą¤¾ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(137069, 108595, 'te', 'name', 'హైదరాబాదు ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°®ą±'),
(137070, 108596, 'en', 'name', 'Japan Automobile Manufacturers Association, Inc.'),
(137071, 108596, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡Ŗå‹•č»Šå·„ę„­ä¼š'),
(137072, 108597, 'en', 'name', 'Oslo School of Architecture and Design'),
(137073, 108597, 'no', 'name', 'Arkitektur- og designhĆøgskolen i Oslo'),
(137074, 108598, 'en', 'name', 'Galgotias College of Engineering & Technology'),
(137075, 108599, 'en', 'name', 'Icahn School of Medicine at Mount Sinai'),
(137076, 108600, 'en', 'name', 'Technology Research Association of Highly Efficient Gene Design'),
(137077, 108600, 'ja', 'name', 'é«˜ę©Ÿčƒ½éŗä¼å­ćƒ‡ć‚¶ć‚¤ćƒ³ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(137078, 108601, 'en', 'name', 'Norwegian Institute of Bioeconomy Research'),
(137079, 108601, 'no', 'name', 'Norsk institutt for bioĆøkonomi'),
(137080, 108602, 'en', 'name', 'Technology Research Association for Future Additive Manufacturing'),
(137081, 108602, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆę¬”äø–ä»£3Dē©å±¤é€ å½¢ęŠ€č”“ē·åˆé–‹ē™ŗę©Ÿę§‹'),
(137082, 108603, 'en', 'name', 'Japan Council for Quality Health Care'),
(137083, 108603, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åŒ»ē™‚ę©Ÿčƒ½č©•ä¾”ę©Ÿę§‹'),
(137084, 108604, 'pt', 'name', 'Universidade JosƩ do RosƔrio Vellano'),
(137085, 108605, 'de', 'name', 'Institut für digitale Gesundheitsdaten Rheinland-Pfalz'),
(137086, 108606, 'en', 'name', 'Psychiatry and Psychology Research Center'),
(137087, 108606, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ų±ŁˆŲ§Ł†Ł¾Ų²Ų“Ś©ŪŒ و Ų±ŁˆŲ§Ł†Ų“Ł†Ų§Ų³ŪŒ دانؓگاه'),
(137088, 108607, 'en', 'name', 'International Society for Mangrove Ecosystems'),
(137089, 108607, 'ja', 'name', 'ē‰¹åˆ„éžå–¶åˆ©ę“»å‹•ę³•äŗŗå›½éš›ćƒžćƒ³ć‚°ćƒ­ćƒ¼ćƒ–ē”Ÿę…‹ē³»å”ä¼š'),
(137090, 108608, 'en', 'name', 'Union of Slovak Mathematicians and Physicists'),
(137091, 108608, 'sk', 'name', 'Jednota slovenských matematikov a fyzikov'),
(137092, 108609, 'en', 'name', 'University of Fine Arts in Poznań'),
(137093, 108609, 'pl', 'name', 'Uniwersytet Artystyczny w Poznaniu'),
(137094, 108610, 'en', 'name', 'Norwegian Institute for Nature Research'),
(137095, 108611, 'en', 'name', 'The Hokkaido Centre for Family Medicine'),
(137096, 108611, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåŒ—ęµ·é“å®¶åŗ­åŒ»ē™‚å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(137097, 108612, 'en', 'name', 'Tsurugi Municipal Handa Hospital'),
(137098, 108612, 'ja', 'name', 'ć¤ć‚‹ćŽē”ŗē«‹åŠē”°ē—…é™¢'),
(137099, 108613, 'en', 'name', 'Manado State University'),
(137100, 108613, 'id', 'name', 'Universitas Negeri Manado'),
(137101, 108614, 'en', 'name', 'National Administration of Fuels, Alcohols and Portland'),
(137102, 108614, 'es', 'name', 'ANCAP (Uruguay)'),
(137103, 108615, 'en', 'name', 'Japan Industrial Waste Management Foundation'),
(137104, 108615, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē”£ę„­å»ƒę£„ē‰©å‡¦ē†äŗ‹ę„­ęŒÆčˆˆč²”å›£'),
(137105, 108616, 'en', 'name', 'National University of Rafaela'),
(137106, 108616, 'es', 'name', 'Universidad Nacional de Rafaela'),
(137107, 108617, 'en', 'name', 'William James College'),
(137108, 108618, 'en', 'name', 'Minnesota State University, Mankato'),
(137109, 108618, 'fr', 'name', 'UniversitĆ© d''Ɖtat du Minnesota'),
(137110, 108619, 'en', 'name', 'Public Telephone Communication'),
(137111, 108619, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å…¬č”†é›»č©±ä¼š'),
(137112, 108620, 'en', 'name', 'Williams College'),
(137113, 108621, 'en', 'name', 'Technological University of Huejotzingo'),
(137114, 108621, 'es', 'name', 'Universidad Tecnológica de Huejotzingo'),
(137115, 108622, 'en', 'name', 'Hyogo Emergency Medical Center'),
(137116, 108622, 'ja', 'name', 'å…µåŗ«ēœŒē½å®³åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(137117, 108623, 'fr', 'name', 'BIOASTER'),
(137118, 108624, 'es', 'name', 'Corporación Unificada Nacional de Educación Superior'),
(137119, 108625, 'en', 'name', 'Toyama Prefectural Environmental Science Research Center'),
(137120, 108625, 'ja', 'name', 'åÆŒå±±ēœŒē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(137121, 108626, 'pt', 'name', 'Instituto Gulbenkian de CiĆŖncia'),
(137122, 108627, 'en', 'name', 'Forestry Agency'),
(137123, 108627, 'ja', 'name', 'ęž—é‡Žåŗ'),
(137124, 108628, 'en', 'name', 'Mizoram University'),
(137125, 108628, 'hi', 'name', 'ą¤®ą¤æą¤œą¤¼ą„‹ą¤°ą¤® ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(137126, 108629, 'en', 'name', 'Graw Radiosondes GmbH & Co. KG, Graw Radiosondes GmbH & Co. KG (Germany)'),
(137127, 108630, 'id', 'name', 'Institut Agama Islam Negeri Manado'),
(137128, 108631, 'en', 'name', 'Lithuanian University of Educational Sciences'),
(137129, 108631, 'lt', 'name', 'Lietuvos edukologijos universitetas'),
(137130, 108631, 'pl', 'name', 'Wileński Uniwersytet Pedagogiczny'),
(137131, 108631, 'ru', 'name', 'Литовский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¾Š±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Ń… наук'),
(137132, 108632, 'pt', 'name', 'Sociedade Portuguesa de Gastrenterologia'),
(137133, 108633, 'es', 'name', 'Biblioteca Judicial "Dr. Ricardo Gallardo"'),
(137134, 108634, 'de', 'name', 'Ostbayerische Technische Hochschule Regensburg'),
(137135, 108634, 'en', 'name', 'Regensburg University of Applied Sciences'),
(137136, 108635, 'ja', 'name', 'ę­¦č”µé‡Žå¤§å­¦'),
(137137, 108635, 'no_lang_code', 'name', 'Musashino University'),
(137138, 108636, 'no_lang_code', 'name', 'Target Active Training (Romania)'),
(137139, 108637, 'en', 'name', 'Drexel University'),
(137140, 108638, 'en', 'name', 'Daejin University'),
(137141, 108638, 'ko', 'name', 'ėŒ€ģ§„ėŒ€ķ•™źµ'),
(137142, 108639, 'en', 'name', 'Tachikawa Sogo Hospital'),
(137143, 108639, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē¤¾å›£å„ē”Ÿä¼šē«‹å·ē›øäŗ’ē—…é™¢'),
(137144, 108640, 'en', 'name', 'Shiga Prefectural Fishery Experiment Station'),
(137145, 108640, 'ja', 'name', 'ę»‹č³€ēœŒę°“ē”£č©¦éØ“å “'),
(137146, 108641, 'en', 'name', 'Centre for Ecological Research'),
(137147, 108641, 'hu', 'name', 'Magyar TudomĆ”nyos AkadĆ©mia Ɩkológiai Kutatókƶzpontja'),
(137148, 108642, 'en', 'name', 'Ise Municipal General Hospital'),
(137149, 108642, 'ja', 'name', 'åø‚ē«‹ä¼Šå‹¢ē·åˆē—…é™¢'),
(137150, 108643, 'en', 'name', 'Loma Linda University'),
(137151, 108643, 'fr', 'name', 'UniversitƩ de loma linda'),
(137152, 108644, 'en', 'name', 'Royal Canadian Air Force'),
(137153, 108644, 'fr', 'name', 'Aviation royale canadienne'),
(137154, 108645, 'en', 'name', 'Karatina University'),
(137155, 108646, 'en', 'name', 'Regional Health Care and Social Agency of Lecco'),
(137156, 108646, 'it', 'name', 'Aziende Socio Sanitarie Territoriali di Lecco'),
(137157, 108647, 'en', 'name', 'Japan Weathering Test Center'),
(137158, 108647, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¦ć‚Øć‚¶ćƒŖćƒ³ć‚°ćƒ†ć‚¹ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(137159, 108648, 'en', 'name', 'Saitama Prefectural University'),
(137160, 108648, 'ja', 'name', 'åŸ¼ēŽ‰ēœŒē«‹å¤§å­¦'),
(137161, 108649, 'pt', 'name', 'Centro de Informação Antivenenos'),
(137162, 108650, 'de', 'name', 'Bayerisches Landesamt für Gesundheit und Lebensmittelsicherheit'),
(137163, 108651, 'en', 'name', 'Lagos State University of Education'),
(137164, 108652, 'de', 'name', 'Eidgenössische Forschungsanstalt für Wald, Schnee und Landschaft'),
(137165, 108652, 'en', 'name', 'Swiss Federal Institute for Forest, Snow and Landscape Research'),
(137166, 108652, 'fr', 'name', 'Institut Fédéral de Recherches sur la Forêt, la Neige et le Paysage'),
(137167, 108652, 'it', 'name', 'Istituto Federale di Ricerca per la Foresta, la Neve e il Paesaggio'),
(137168, 108653, 'en', 'name', 'Shri Dharmasthala Manjunatheswara College of Ayurveda and Hospital'),
(137169, 108654, 'de', 'name', 'Deutsches Zentrum für Luft- und Raumfahrt e. V. (DLR)'),
(137170, 108655, 'en', 'name', 'Shandong Youth University of Political Science'),
(137171, 108655, 'zh', 'name', 'å±±äøœé’å¹“ę”æę²»å­¦é™¢'),
(137172, 108656, 'de', 'name', 'Zentrum für Experimentelle und Klinische Infektionsforschung'),
(137173, 108656, 'en', 'name', 'Center for Experimental and Clinical Infection Research'),
(137174, 108657, 'en', 'name', 'The Miyagi Prefectural Izunuma-Uchinuma Environmental Foundation'),
(137175, 108657, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå®®åŸŽēœŒä¼Šč±†ę²¼ćƒ»å†…ę²¼ē’°å¢ƒäæå…Øč²”å›£'),
(137176, 108658, 'en', 'name', 'Xavier University'),
(137177, 108658, 'tl', 'name', 'Pamantasang Xavier – Ateneo de Cagayan'),
(137178, 108659, 'en', 'name', 'Japan Municipal Hospital Association'),
(137179, 108659, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č‡Ŗę²»ä½“ē—…é™¢å”č­°ä¼š'),
(137180, 108660, 'en', 'name', 'VERITAS'),
(137181, 108661, 'en', 'name', 'National Engineering Research Center for Information Technology in Agriculture'),
(137182, 108661, 'zh', 'name', 'å›½å®¶å†œäøšäæ”ęÆåŒ–å·„ēØ‹ęŠ€ęœÆē ”ē©¶äø­åæƒ'),
(137183, 108662, 'en', 'name', 'Galileo University'),
(137184, 108662, 'es', 'name', 'Universidad Galileo'),
(137185, 108663, 'en', 'name', 'Liaoning Police College'),
(137186, 108663, 'zh', 'name', 'č¾½å®č­¦åÆŸå­¦é™¢'),
(137187, 108664, 'no_lang_code', 'name', 'CGIAR'),
(137188, 108665, 'en', 'name', 'Fujioka General Hospital'),
(137189, 108665, 'ja', 'name', 'å…¬ē«‹č—¤å²”ē·åˆē—…é™¢'),
(137190, 108666, 'en', 'name', 'National Sanatorium Amami-Wakouen'),
(137191, 108666, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€å„„ē¾Žå’Œå…‰åœ’'),
(137192, 108667, 'en', 'name', 'Geological and Mining Institute of Spain'),
(137193, 108667, 'es', 'name', 'Instituto Geológico y Minero de España'),
(137194, 108668, 'en', 'name', 'Yamaguchi Prefectural Institute of Public Health and Environment'),
(137195, 108668, 'ja', 'name', 'å±±å£ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(137196, 108669, 'id', 'name', 'Institut Agama Islam Negeri Metro Lampung'),
(137197, 108670, 'en', 'name', 'Al Rasheed University College'),
(137198, 108671, 'en', 'name', 'University of La Guajira'),
(137199, 108671, 'es', 'name', 'Universidad de La Guajira'),
(137200, 108672, 'en', 'name', 'Miyamoto Hospital'),
(137201, 108672, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē›”čŖ ä¼šå®®ęœ¬ē—…é™¢'),
(137202, 108673, 'en', 'name', 'Botswana International University of Science and Technology'),
(137203, 108674, 'en', 'name', 'Uro Oncology Research Center'),
(137204, 108674, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ سرطان Ł‡Ų§ŪŒ دستگاه ادراری ŲŖŁ†Ų§Ų³Ł„ŪŒ'),
(137205, 108675, 'en', 'name', 'Fielding Graduate University'),
(137206, 108676, 'en', 'name', 'Chapingo Autonomous University'),
(137207, 108676, 'es', 'name', 'Universidad Autónoma Chapingo'),
(137208, 108677, 'en', 'name', 'Albert Einstein Israelite Hospital'),
(137209, 108677, 'pt', 'name', 'Hospital Israelita Albert Einstein'),
(137210, 108678, 'en', 'name', 'Northwest Minzu University'),
(137211, 108678, 'zh', 'name', 'č„æåŒ—ę°‘ę—å¤§å­¦'),
(137212, 108679, 'en', 'name', 'Academy of Economic Studies of Moldova'),
(137213, 108679, 'ro', 'name', 'Academia de Studii Economice a Moldovei'),
(137214, 108680, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲØŁŠŲ§Ł†'),
(137215, 108680, 'en', 'name', 'Al-Bayan University'),
(137216, 108681, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī ĪµĪ»ĪæĻ€ĪæĪ½Ī½Ī®ĻƒĪæĻ…'),
(137217, 108681, 'en', 'name', 'University of Peloponnese'),
(137218, 108681, 'fr', 'name', 'Université du péloponnèse'),
(137219, 108682, 'en', 'name', 'Dwarkadas J. Sanghvi College of Engineering'),
(137220, 108683, 'en', 'name', 'Pakistan Institute of Engineering and Applied Sciences'),
(137221, 108684, 'en', 'name', 'Eckerd College'),
(137222, 108685, 'en', 'name', 'Ball Memorial Hospital'),
(137223, 108686, 'en', 'name', 'Tokushima Prefectural Government'),
(137224, 108686, 'ja', 'name', '徳島県庁'),
(137225, 108687, 'en', 'name', 'Rezekne Academy of Technologies'),
(137226, 108687, 'lv', 'name', 'Rēzeknes Tehnoloģiju Akadēmija'),
(137227, 108688, 'en', 'name', 'Pontifical Oriental Institute of Religious Studies'),
(137228, 108688, 'id', 'name', 'Paurastya Vidyāpīṭham'),
(137229, 108689, 'en', 'name', 'Saga Prefectural Upland Farming Research and Extension Center'),
(137230, 108689, 'ja', 'name', 'ä½č³€ēœŒäøŠå “å–¶č¾²ć‚»ćƒ³ć‚æćƒ¼'),
(137231, 108690, 'en', 'name', 'Xavier Institute of Social Service'),
(137232, 108690, 'hi', 'name', 'ą¤œą„‡ą¤µą¤æą¤Æą¤° समाज ą¤øą„‡ą¤µą¤¾ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(137233, 108691, 'en', 'name', 'Iranian Research Center for HIV/AIDS'),
(137234, 108691, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ایدز Ų§ŪŒŲ±Ų§Ł†'),
(137235, 108692, 'en', 'name', 'SAGA Light Source'),
(137236, 108692, 'ja', 'name', 'ä½č³€ēœŒē«‹ä¹å·žć‚·ćƒ³ć‚Æćƒ­ćƒˆćƒ­ćƒ³å…‰ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼, å…¬ē›Šč²”å›£ę³•äŗŗä½č³€ēœŒē”£ę„­ęŒÆčˆˆę©Ÿę§‹ ä¹å·žć‚·ćƒ³ć‚Æćƒ­ćƒˆćƒ­ćƒ³å…‰ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(137237, 108693, 'es', 'name', 'Universidad Privada Domingo Savio'),
(137238, 108694, 'en', 'name', 'Rajarata University of Sri Lanka'),
(137239, 108694, 'si', 'name', 'රජරට ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(137240, 108694, 'ta', 'name', 'ą®°ą®œą®°ą®ŸąÆą®Ÿ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(137241, 108695, 'en', 'name', 'Fuji City General Hospital'),
(137242, 108695, 'ja', 'name', 'åÆŒå£«åø‚ē«‹äø­å¤®ē—…é™¢'),
(137243, 108696, 'en', 'name', 'Institute of Food Science Research'),
(137244, 108696, 'es', 'name', 'Instituto de Investigación en Ciencias de la Alimentación'),
(137245, 108697, 'en', 'name', 'Bale Bandung District Court'),
(137246, 108697, 'id', 'name', 'Pengadilan Negeri Bale Bandung'),
(137247, 108698, 'en', 'name', 'North Chiang Mai University'),
(137248, 108698, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąø™ąø­ąø£ą¹Œąø—-ą¹€ąøŠąøµąø¢ąø‡ą¹ƒąø«ąø”ą¹ˆ'),
(137249, 108699, 'en', 'name', 'Motilal Nehru National Institute of Technology'),
(137250, 108699, 'hi', 'name', 'ą¤®ą„‹ą¤¤ą„€ą¤²ą¤¾ą¤² ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø इलाहाबाद'),
(137251, 108700, 'en', 'name', 'University of Evansville'),
(137252, 108700, 'es', 'name', 'Universidad de Evansville'),
(137253, 108701, 'en', 'name', 'International Iberian Nanotechnology Laboratory'),
(137254, 108701, 'pt', 'name', 'Laboratório Ibérico Internacional de Nanotecnologia'),
(137255, 108702, 'es', 'name', 'Universidad TƩcnica Particular de Loja'),
(137256, 108703, 'en', 'name', 'Sarhad University of Science and Information Technology'),
(137257, 108703, 'ur', 'name', 'جامعہ Ų³Ų±Ų­ŲÆ'),
(137258, 108704, 'fr', 'name', 'InterdisciplinaritĆ© en SantĆ© Publique Interventions et Instruments de mesure complexes – RĆ©gion Est'),
(137259, 108705, 'en', 'name', 'Peace Research Institute Oslo'),
(137260, 108705, 'no', 'name', 'Institutt for fredsforskning'),
(137261, 108706, 'en', 'name', 'RajaRajeswari College of Engineering'),
(137262, 108707, 'en', 'name', 'Mediterranean Institute for Transplantation and Advanced Specialized Therapies'),
(137263, 108707, 'fr', 'name', 'Institut mƩditerranƩen pour les transplantations et thƩrapies de palerme'),
(137264, 108707, 'it', 'name', 'Istituto Mediterraneo per i Trapianti e Terapie ad Alta Specializzazione'),
(137265, 108708, 'en', 'name', 'Texas Woman''s University'),
(137266, 108709, 'en', 'name', 'Majan College'),
(137267, 108710, 'en', 'name', 'Wofford College'),
(137268, 108711, 'en', 'name', 'Japan Environment Association'),
(137269, 108711, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒå”ä¼š');
INSERT INTO `ror_settings` VALUES
(137270, 108712, 'en', 'name', 'Emporia State University'),
(137271, 108712, 'fr', 'name', 'UniversitĆ© d''Ɖtat d''emporia'),
(137272, 108713, 'en', 'name', 'Kobe Institute of Urban Research'),
(137273, 108713, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøéƒ½åø‚å•é”Œē ”ē©¶ę‰€'),
(137274, 108714, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų­ŁˆŲ§Ų“ الخاصة'),
(137275, 108714, 'en', 'name', 'Al-Hawash Private University'),
(137276, 108715, 'en', 'name', 'Thomas More Kempen'),
(137277, 108716, 'es', 'name', 'Universidad Marcelino Champagnat'),
(137278, 108717, 'az', 'name', 'Memar Sinan Gƶzəl Sənətlər Universiteti'),
(137279, 108717, 'en', 'name', 'Mimar Sinan Fine Arts University'),
(137280, 108717, 'tr', 'name', 'Mimar Sinan Güzel Sanatlar Üniversitesi'),
(137281, 108718, 'ro', 'name', 'Spitalul Clinic de Psihiatrie Alexandru Obregia'),
(137282, 108719, 'en', 'name', 'The Japanese Society for Cardiovascular Surgery'),
(137283, 108719, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬åæƒč‡“č”€ē®”å¤–ē§‘å­¦ä¼š'),
(137284, 108720, 'en', 'name', 'Technical University of Kenya'),
(137285, 108721, 'en', 'name', 'Colombian Geological Survey'),
(137286, 108721, 'es', 'name', 'Servicio Geológico Colombiano'),
(137287, 108722, 'pt', 'name', 'Sociedade Portuguesa de Endoscopia Digestiva'),
(137288, 108723, 'en', 'name', 'Shanghai Academy of Agricultural Sciences'),
(137289, 108723, 'zh', 'name', 'äøŠęµ·åø‚å†œäøšē§‘å­¦é™¢'),
(137290, 108724, 'de', 'name', 'Technische Hochschule Ostwestfalen-Lippe'),
(137291, 108724, 'en', 'name', 'Ostwestfalen-Lippe University of Applied Sciences and Arts'),
(137292, 108725, 'no_lang_code', 'name', 'Thales (France)'),
(137293, 108726, 'pt', 'name', 'Instituto de Desenvolvimento SustentƔvel MamirauƔ'),
(137294, 108727, 'en', 'name', 'GƤvle Hospital'),
(137295, 108727, 'sv', 'name', 'GƤvle Sjukhus'),
(137296, 108728, 'en', 'name', 'Southwestern University of Finance and Economics'),
(137297, 108728, 'zh', 'name', 'č„æå—č“¢ē»å¤§å­¦'),
(137298, 108729, 'no_lang_code', 'name', 'Jinggangshan University'),
(137299, 108729, 'zh', 'name', 'äŗ•å†ˆå±±å¤§å­¦'),
(137300, 108730, 'es', 'name', 'Instituto de Fomento Pesquero'),
(137301, 108731, 'en', 'name', 'Tanjungpura University'),
(137302, 108731, 'id', 'name', 'Universitas Tanjungpura'),
(137303, 108732, 'en', 'name', 'Saint Anselm College'),
(137304, 108733, 'en', 'name', 'Wuhan Engineering Science & Technology Institute'),
(137305, 108733, 'zh', 'name', 'ę­¦ę±‰åø‚å·„ēØ‹ē§‘å­¦ęŠ€ęœÆē ”ē©¶é™¢'),
(137306, 108734, 'en', 'name', 'KWR Water Research Institute'),
(137307, 108735, 'cy', 'name', 'Prifysgol Caerhirfryn'),
(137308, 108735, 'en', 'name', 'Lancaster University'),
(137309, 108736, 'en', 'name', 'The Advanced Materials Processing Institute Kinki Japan'),
(137310, 108736, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗčæ‘ē•æé«˜ć‚Øćƒćƒ«ć‚®ćƒ¼åŠ å·„ęŠ€č”“ē ”ē©¶ę‰€'),
(137311, 108737, 'en', 'name', 'Stress, Immunity, Pathogens'),
(137312, 108737, 'fr', 'name', 'Stress, immunité, pathogènes'),
(137313, 108738, 'en', 'name', 'International Media Research Foundation'),
(137314, 108738, 'ja', 'name', 'č²”å›£ę³•äŗŗå›½éš›ćƒ”ćƒ‡ć‚£ć‚¢ē ”ē©¶č²”å›£'),
(137315, 108739, 'es', 'name', 'Instituto Tecnológico Superior de Salvatierra'),
(137316, 108740, 'bn', 'name', 'ą¦—ą§ą¦°ą¦æą¦Ø ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ বাংলাদেশ'),
(137317, 108740, 'en', 'name', 'Green University of Bangladesh'),
(137318, 108741, 'en', 'name', 'Toyama College of Welfare Science'),
(137319, 108741, 'ja', 'name', 'åÆŒå±±ē¦ē„‰ēŸ­ęœŸå¤§å­¦'),
(137320, 108742, 'en', 'name', 'Kanagawa Health Foundation'),
(137321, 108742, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‹ćŖćŒć‚å„åŗ·č²”å›£'),
(137322, 108743, 'en', 'name', 'University of Sucre'),
(137323, 108743, 'es', 'name', 'Universidad de Sucre'),
(137324, 108744, 'fr', 'name', 'Hydrologie MƩtƩorologie et ComplexitƩ, Laboratoire Hydrologie MƩtƩorologie et ComplexitƩ'),
(137325, 108745, 'en', 'name', 'Macalester College'),
(137326, 108746, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© الفجر Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(137327, 108746, 'en', 'name', 'Al Fajr College of Science and Technology'),
(137328, 108747, 'nl', 'name', 'Ziekenhuis Oost-Limburg'),
(137329, 108748, 'en', 'name', 'Clinical Investigation Centre for Innovative Technology Network'),
(137330, 108748, 'fr', 'name', 'Centre d''Investigation Clinique - Innovation Technologique'),
(137331, 108749, 'en', 'name', 'Tsukiji Neurological Clinic'),
(137332, 108749, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£é«˜ęµä¼šēÆ‰åœ°ē„žēµŒē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(137333, 108750, 'en', 'name', 'National Institute for Nuclear Physics, Parma Unit'),
(137334, 108750, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Parma'),
(137335, 108751, 'it', 'name', 'Istituto Pediatrico della Svizzera Italiana'),
(137336, 108752, 'en', 'name', 'IEEE Communications Society'),
(137337, 108753, 'en', 'name', 'U.S. Air Force Research Laboratory Directed Energy Directorate'),
(137338, 108754, 'en', 'name', 'Guilford College'),
(137339, 108755, 'en', 'name', 'Kyrgyz-Türkish Manas Üniversity'),
(137340, 108755, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·-Түрк «Манас» ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(137341, 108755, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾-Š¢ŃƒŃ€ŠµŃ†ŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ «Манас»'),
(137342, 108756, 'en', 'name', 'Tamil Nadu Agricultural University'),
(137343, 108756, 'fr', 'name', 'UniversitƩ agricole de tamil nadu'),
(137344, 108756, 'hi', 'name', 'तमिल ą¤Øą¤¾ą¤”ą„ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(137345, 108756, 'ml', 'name', 'ą“¤ą“®ą“æą““ąµą“Øą“¾ą“Ÿąµ ą“•ą“¾ąµ¼ą“·ą“æą“• ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(137346, 108756, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®µąÆ‡ą®³ą®¾ą®£ąÆą®®ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(137347, 108757, 'en', 'name', 'University of Arkansas at Little Rock'),
(137348, 108757, 'fr', 'name', 'UniversitƩ de l''arkansas Ơ little rock'),
(137349, 108758, 'pt', 'name', 'Universidade de Coimbra Centro de GeociĆŖncias'),
(137350, 108759, 'en', 'name', 'Vishnu Dental College'),
(137351, 108760, 'en', 'name', 'General Directorate of Mineral Research and Exploration'),
(137352, 108760, 'tr', 'name', 'Maden Tetkik ve Arama Genel Müdürlüğü'),
(137353, 108761, 'en', 'name', 'Fukui Prefectural Livestock Experimental Station'),
(137354, 108761, 'ja', 'name', 'ē¦äŗ•ēœŒē•œē”£č©¦éØ“å “'),
(137355, 108762, 'en', 'name', 'Shioda Hospital'),
(137356, 108762, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗSHIODA唩田病院'),
(137357, 108763, 'en', 'name', 'Nagasaki Industrial Promotion Foundation'),
(137358, 108763, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé•·å“ŽēœŒē”£ę„­ęŒÆčˆˆč²”å›£'),
(137359, 108764, 'en', 'name', 'Wakayama Prefectural Government'),
(137360, 108764, 'ja', 'name', 'å’Œę­Œå±±ēœŒåŗ'),
(137361, 108765, 'en', 'name', 'Southwest Minzu University'),
(137362, 108765, 'zh', 'name', 'č„æå—ę°‘ę—å¤§å­¦'),
(137363, 108766, 'en', 'name', 'York College'),
(137364, 108767, 'es', 'name', 'Universidad para el Desarrollo Andino'),
(137365, 108768, 'en', 'name', 'Hai Phong University of Management and Technology'),
(137366, 108768, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Quįŗ£n lý vĆ  CĆ“ng nghệ Hįŗ£i Phòng'),
(137367, 108769, 'en', 'name', 'University of Opole'),
(137368, 108770, 'en', 'name', 'Geoscience Australia'),
(137369, 108771, 'en', 'name', 'Government of Sweden'),
(137370, 108771, 'sv', 'name', 'Konungariket Sveriges regering'),
(137371, 108772, 'en', 'name', 'Japan Audiological Society'),
(137372, 108772, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č“č¦šåŒ»å­¦ä¼š'),
(137373, 108773, 'en', 'name', 'Ƙstfold University College'),
(137374, 108773, 'no', 'name', 'Høgskolen i Østfold'),
(137375, 108774, 'en', 'name', 'Kochi Prefectural Livestock Experiment Station'),
(137376, 108774, 'ja', 'name', 'é«˜ēŸ„ēœŒē•œē”£č©¦éØ“å “'),
(137377, 108775, 'de', 'name', 'Hochschule Aalen'),
(137378, 108776, 'fr', 'name', 'Centre d''Investigation Clinique Pierre Drouin'),
(137379, 108777, 'en', 'name', 'Saga Tea Research Laboratory'),
(137380, 108777, 'ja', 'name', 'ä½č³€ēœŒčŒ¶ę„­č©¦éØ“å “'),
(137381, 108778, 'de', 'name', 'Fraunhofer-Institut für Graphische Datenverarbeitung'),
(137382, 108778, 'en', 'name', 'Fraunhofer Institute for Computer Graphics Research'),
(137383, 108779, 'el', 'name', 'Ī•ĪøĪ½Ī¹ĪŗĻŒ και ĪšĪ±Ļ€ĪæĪ“Ī¹ĻƒĻ„ĻĪ¹Ī±ĪŗĻŒ Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(137384, 108779, 'en', 'name', 'National and Kapodistrian University of Athens'),
(137385, 108779, 'fr', 'name', 'Université nationale et capodistrienne d''athènes'),
(137386, 108780, 'nl', 'name', 'Kennispunt Twente'),
(137387, 108781, 'en', 'name', 'Flemish Institute for Technological Research'),
(137388, 108781, 'nl', 'name', 'Vlaamse Instelling voor Technologisch Onderzoek'),
(137389, 108782, 'pt', 'name', 'Universidade de Coimbra Centro de Investigação em Neuropsicologia e Intervenção Cognitivo-Comportamental'),
(137390, 108783, 'en', 'name', 'Twente Hospital Group'),
(137391, 108783, 'nl', 'name', 'Ziekenhuis Groep Twente'),
(137392, 108784, 'pt', 'name', 'Centro de Desenvolvimento do Potencial Humano'),
(137393, 108785, 'es', 'name', 'Centro de Investigación y Estudios Superiores en Antropología Social'),
(137394, 108786, 'en', 'name', 'The Meteorological Society of Japan'),
(137395, 108786, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°—č±”å­¦ä¼š'),
(137396, 108787, 'en', 'name', 'Mary Ann Liebert, Mary Ann Liebert, Inc.'),
(137397, 108787, 'no_lang_code', 'name', 'Mary Ann Liebert (United States)'),
(137398, 108788, 'en', 'name', 'Okitama Public General Hospital'),
(137399, 108788, 'ja', 'name', 'å…¬ē«‹ē½®č³œē·åˆē—…é™¢'),
(137400, 108789, 'es', 'name', 'CETYS Universidad, Centro de EnseƱanza TƩcnica y Superior'),
(137401, 108790, 'en', 'name', 'Xihua University'),
(137402, 108790, 'zh', 'name', 'č„æåŽå¤§å­¦'),
(137403, 108791, 'pt', 'name', 'CĆ¢mara Municipal de Loures'),
(137404, 108792, 'en', 'name', 'Nan Tien Institute'),
(137405, 108793, 'id', 'name', 'Universitas Cokroaminoto Palopo'),
(137406, 108794, 'bn', 'name', 'ą¦¦ą¦æą¦²ą§ą¦²ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(137407, 108794, 'en', 'name', 'University of Delhi'),
(137408, 108794, 'fr', 'name', 'UniversitƩ de delhi'),
(137409, 108794, 'hi', 'name', 'ą¤¦ą¤æą¤²ą„ą¤²ą„€ ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(137410, 108794, 'ml', 'name', 'ą“”ąµ†ąµ½ą“¹ą“æ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(137411, 108794, 'pa', 'name', 'ਦਿੱਲੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(137412, 108794, 'ta', 'name', 'ą®¤ą®æą®²ąÆą®²ą®æ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(137413, 108794, 'ur', 'name', 'ŲÆŪŁ„ŪŒ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(137414, 108795, 'en', 'name', 'Korea Railroad Research Institute'),
(137415, 108795, 'ko', 'name', 'ķ•œźµ­ ģ² ė„ 기술 연구원'),
(137416, 108796, 'en', 'name', 'Materials Process Technology Center'),
(137417, 108796, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē“ å½¢ęć‚»ćƒ³ć‚æćƒ¼'),
(137418, 108797, 'en', 'name', 'Salymbekov University'),
(137419, 108797, 'ky', 'name', 'Далымбеков ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(137420, 108798, 'en', 'name', 'Penobscot Marine Museum'),
(137421, 108799, 'en', 'name', 'Heisei Memorial Hospital'),
(137422, 108799, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¹³ęˆčØ˜åæµē—…é™¢'),
(137423, 108800, 'en', 'name', 'Sano – Centre for Computational Personalised Medicine International Research Foundation'),
(137424, 108801, 'en', 'name', 'Office of Legislative & Public Affairs'),
(137425, 108802, 'en', 'name', 'University of the Fraser Valley'),
(137426, 108803, 'en', 'name', 'Nagasaki Prefectural Institute for Environmental Research and Public Health'),
(137427, 108803, 'ja', 'name', 'é•·å“ŽēœŒē’°å¢ƒäæå„ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(137428, 108804, 'en', 'name', 'Okayama Prefectural Institute for Environmental Science and Public Health'),
(137429, 108804, 'ja', 'name', 'å²”å±±ēœŒē’°å¢ƒäæå„ć‚»ćƒ³ć‚æćƒ¼'),
(137430, 108805, 'no_lang_code', 'name', 'Werfen (Spain)'),
(137431, 108806, 'en', 'name', 'Northern Regional College'),
(137432, 108807, 'pt', 'name', 'Grupo de Ativistas em Tratamentos'),
(137433, 108808, 'es', 'name', 'El Colegio de Sonora'),
(137434, 108809, 'es', 'name', 'Universidad Tecnológica del Norte de Guanajuato'),
(137435, 108810, 'en', 'name', 'Yashima General hospital'),
(137436, 108810, 'ja', 'name', 'JAé¦™å·åŽšē”Ÿé€£å±‹å³¶ē·åˆē—…é™¢'),
(137437, 108811, 'en', 'name', 'University of Blida 2'),
(137438, 108812, 'en', 'name', 'Nagoya City Public Health Research Institute'),
(137439, 108812, 'ja', 'name', 'åå¤å±‹åø‚č”›ē”Ÿē ”ē©¶ę‰€'),
(137440, 108813, 'en', 'name', 'College of Business Runata'),
(137441, 108813, 'id', 'name', 'Sekolah Tinggi Bisnis Runata'),
(137442, 108814, 'fr', 'name', 'Reuniwatt SAS'),
(137443, 108814, 'no_lang_code', 'name', 'Reuniwatt, Reuniwatt (France)'),
(137444, 108815, 'en', 'name', 'Palm Beach Atlantic University'),
(137445, 108816, 'en', 'name', 'CenGen (Pty) Ltd'),
(137446, 108817, 'en', 'name', 'Benue State University'),
(137447, 108818, 'en', 'name', 'Hakim Children Hospital'),
(137448, 108818, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† Ś©ŁˆŲÆŚ©Ų§Ł† Ų­Ś©ŪŒŁ…'),
(137449, 108819, 'en', 'name', 'Donetsk National University of Economics and Trade named after Mykhailo Tugan-Baranovsky'),
(137450, 108819, 'ru', 'name', 'Донецкий ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń–й Университет Экономики Šø Торговли имени ŠœŠøŃ…аила Туган-Барановского'),
(137451, 108819, 'uk', 'name', 'Š”Š¾Š½ŠµŃ†ŃŒŠŗŠøŠ¹ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Університет Економіки і Торгівлі імені ŠœŠøŃ…Š°Š¹Š»Š° Туган-Š‘Š°Ń€Š°Š½Š¾Š²ŃŃŒŠŗŠ¾Š³Š¾'),
(137452, 108820, 'en', 'name', 'Bucharest National University of Arts'),
(137453, 108820, 'ro', 'name', 'Universitatea Națională de Arte București'),
(137454, 108821, 'pt', 'name', 'Grupo HPA SaĆŗde'),
(137455, 108822, 'en', 'name', 'ABES Engineering College'),
(137456, 108823, 'es', 'name', 'Unidad Funcional de Investigación de Enfermedades Crónicas'),
(137457, 108824, 'en', 'name', 'Texas Southmost College'),
(137458, 108825, 'en', 'name', 'Institute of Bioinformatics'),
(137459, 108826, 'en', 'name', 'Pfizer-University of Granada-Junta de AndalucĆ­a Centre for Genomics and Oncological Research'),
(137460, 108826, 'es', 'name', 'Centro Pfizer - Universidad de Granada - Junta de Andalucía de Genómica e Investigación Oncológica'),
(137461, 108827, 'en', 'name', 'Nakagami Hospital'),
(137462, 108827, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę•¬ę„›ä¼šäø­é ­ē—…é™¢'),
(137463, 108828, 'en', 'name', 'Pittsburg State University'),
(137464, 108829, 'cs', 'name', 'Thomayerova nemocnice'),
(137465, 108829, 'en', 'name', 'Thomayer University Hospital'),
(137466, 108830, 'en', 'name', 'Snow Research Center'),
(137467, 108830, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé›Ŗć‚»ćƒ³ć‚æćƒ¼'),
(137468, 108831, 'en', 'name', 'Siam University'),
(137469, 108831, 'th', 'name', 'ดหาวณทยาคัยสยาด'),
(137470, 108832, 'en', 'name', 'Yokohama General Hospital'),
(137471, 108832, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·‘ęˆä¼šęØŖęµœē·åˆē—…é™¢'),
(137472, 108833, 'en', 'name', 'European Agroforestry Federation'),
(137473, 108833, 'fr', 'name', 'FƩdƩration europƩenne d''agroforesterie'),
(137474, 108834, 'en', 'name', 'National University of Lesotho'),
(137475, 108835, 'en', 'name', 'Tay Bac University'),
(137476, 108835, 'vi', 'name', 'ĐẔi hį»c TĆ¢y BįŗÆc'),
(137477, 108836, 'en', 'name', 'Worcester State University'),
(137478, 108836, 'fr', 'name', 'UniversitĆ© d''Ɖtat de worcester'),
(137479, 108837, 'en', 'name', 'Whitworth University'),
(137480, 108838, 'en', 'name', 'Wuhan Institute of Technology'),
(137481, 108838, 'zh', 'name', '武汉巄程大学'),
(137482, 108839, 'en', 'name', 'Kaohsiung Veterans General Hospital'),
(137483, 108840, 'en', 'name', 'Institute of Informatics of the Slovak Academy of Sciences'),
(137484, 108840, 'sk', 'name', 'Ustav Informatiky SlovenskƔ akadƩmia vied'),
(137485, 108841, 'en', 'name', 'Professional Institute of International Fashion'),
(137486, 108841, 'ja', 'name', 'å›½éš›ćƒ•ć‚”ćƒƒć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(137487, 108842, 'en', 'name', 'Shin Koga Hospital'),
(137488, 108842, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤©ē„žä¼šę–°å¤č³€ē—…é™¢'),
(137489, 108843, 'en', 'name', 'Hakodate Medical Association'),
(137490, 108843, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå‡½é¤Øåø‚åŒ»åø«ä¼š'),
(137491, 108844, 'en', 'name', 'Meshalkin National Medical Research Center'),
(137492, 108844, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр имени акаГемика Š•.Š. Мешалкина»'),
(137493, 108845, 'en', 'name', 'Computing Technology Industry Association'),
(137494, 108846, 'en', 'name', 'University of San Jose–Recoletos'),
(137495, 108847, 'bn', 'name', 'ą¦®ą¦¾ą¦¦ą§ą¦°ą¦¾ą¦œ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(137496, 108847, 'en', 'name', 'University of Madras'),
(137497, 108847, 'fr', 'name', 'UniversitƩ de madras'),
(137498, 108847, 'hi', 'name', 'ą¤®ą¤¦ą„ą¤°ą¤¾ą¤ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(137499, 108847, 'kn', 'name', 'ą²®ą²¦ą³ą²°ą²¾ą²øą³ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(137500, 108847, 'ml', 'name', 'ą“®ą“¦ąµą“°ą“¾ą“øąµ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(137501, 108847, 'ta', 'name', 'ą®šąÆ†ą®©ąÆą®©ąÆˆą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(137502, 108847, 'te', 'name', 'ą°®ą°¦ą±ą°°ą°¾ą°øą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(137503, 108848, 'pt', 'name', 'Centro de Psicologia'),
(137504, 108849, 'en', 'name', 'University of Northampton'),
(137505, 108850, 'en', 'name', 'Gunma Prefectural Cancer Center'),
(137506, 108850, 'ja', 'name', 'ē¾¤é¦¬ēœŒē«‹ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(137507, 108851, 'es', 'name', 'Instituto de HistologĆ­a y EmbriologĆ­a de Mendoza'),
(137508, 108852, 'en', 'name', 'IESEG School of Management'),
(137509, 108852, 'fr', 'name', 'Institut d''Economie Scientifique Et de Gestion'),
(137510, 108853, 'en', 'name', 'Carnegie Institution for Science'),
(137511, 108854, 'en', 'name', 'Veritas University'),
(137512, 108855, 'en', 'name', 'State University of Padang'),
(137513, 108855, 'id', 'name', 'Universitas Negeri Padang'),
(137514, 108856, 'en', 'name', 'San SebastiƔn University'),
(137515, 108856, 'es', 'name', 'Universidad San SebastiƔn'),
(137516, 108857, 'de', 'name', 'Fachhochschule Technikum Wien'),
(137517, 108857, 'en', 'name', 'University of Applied Sciences Technikum Wien'),
(137518, 108858, 'en', 'name', 'Institute of Chemistry of Ireland'),
(137519, 108858, 'ga', 'name', 'InstitĆŗid Ceimice na hƉireann'),
(137520, 108859, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de MĆ©canique et d''AĆ©rotechnique'),
(137521, 108860, 'nl', 'name', 'Pro Persona'),
(137522, 108861, 'en', 'name', 'U.S. Air Force Test Center'),
(137523, 108862, 'en', 'name', 'The Charutar Vidya Mandal (CVM) University'),
(137524, 108863, 'en', 'name', 'Yamagata Prefectural Government'),
(137525, 108863, 'ja', 'name', '山形県庁'),
(137526, 108864, 'en', 'name', 'Nagoya Medical Association'),
(137527, 108864, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåå¤å±‹åø‚åŒ»åø«ä¼š'),
(137528, 108865, 'en', 'name', 'Concordia University Wisconsin'),
(137529, 108866, 'en', 'name', 'University of Kurdistan'),
(137530, 108866, 'fa', 'name', 'دانؓگاه کردستان'),
(137531, 108867, 'en', 'name', 'University of Upper Alsace'),
(137532, 108867, 'fr', 'name', 'UniversitƩ de Haute-Alsace'),
(137533, 108868, 'no_lang_code', 'name', 'Syngene International (India)'),
(137534, 108869, 'en', 'name', 'Longley Park Sixth Form College'),
(137535, 108870, 'en', 'name', 'Osaka City Research Center of Environmental Science'),
(137536, 108870, 'ja', 'name', 'å¤§é˜Ŗåø‚ē«‹ē’°å¢ƒē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(137537, 108871, 'en', 'name', 'Migal - Galilee Technology Center'),
(137538, 108872, 'en', 'name', 'North-Western State Medical University named after I.I. Mechnikov'),
(137539, 108872, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ имени И. И. ŠœŠµŃ‡Š½ŠøŠŗŠ¾Š²Š°'),
(137540, 108873, 'de', 'name', 'FZI Forschungszentrum Informatik'),
(137541, 108873, 'en', 'name', 'FZI Research Center for Information Technology'),
(137542, 108874, 'en', 'name', 'Scottish Association For Marine Science'),
(137543, 108875, 'en', 'name', 'Kumamoto City Environmental Research Center'),
(137544, 108875, 'ja', 'name', 'ē†Šęœ¬åø‚ē’°å¢ƒē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(137545, 108876, 'en', 'name', 'Japan Marrow Donor Program'),
(137546, 108876, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éŖØé«„ćƒćƒ³ć‚Æ'),
(137547, 108877, 'en', 'name', 'Bradley University'),
(137548, 108877, 'es', 'name', 'Universidad Bradley'),
(137549, 108878, 'en', 'name', 'Austrian Institute of Technology'),
(137550, 108879, 'en', 'name', 'Caltech Alumni Association'),
(137551, 108880, 'en', 'name', 'University of Brighton'),
(137552, 108881, 'en', 'name', 'Ardakan University'),
(137553, 108881, 'fa', 'name', 'دانؓگاه اردکان'),
(137554, 108882, 'en', 'name', 'Research Institute for Regional Planning and Development'),
(137555, 108882, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåœ°åŸŸå•é”Œē ”ē©¶ę‰€'),
(137556, 108883, 'en', 'name', 'National Institute of Informatics'),
(137557, 108883, 'ja', 'name', 'å›½ē«‹ęƒ…å ±å­¦ē ”ē©¶ę‰€'),
(137558, 108884, 'en', 'name', 'Fujian Agriculture and Forestry University'),
(137559, 108884, 'zh', 'name', 'ē¦å»ŗå†œęž—å¤§å­¦'),
(137560, 108885, 'id', 'name', 'Politeknik Negeri Ujung Pandang'),
(137561, 108886, 'en', 'name', 'Tohoku Institute for Management of Blood Pressure'),
(137562, 108886, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę±åŒ—č”€åœ§ē®”ē†å”ä¼š'),
(137563, 108887, 'en', 'name', 'N.I. Vavilov Research Institute of Plant Industry'),
(137564, 108887, 'ru', 'name', 'Вавилов Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ растениевоГства'),
(137565, 108888, 'es', 'name', 'Instituto Tecnológico de Tlalnepantla'),
(137566, 108889, 'de', 'name', 'Hochschule Bonn-Rhein-Sieg'),
(137567, 108889, 'en', 'name', 'Bonn-Rhein-Sieg University of Applied Sciences'),
(137568, 108890, 'de', 'name', 'Stiftung Innovation in der Hochschullehre'),
(137569, 108890, 'en', 'name', 'Foundation for Innovation in Higher Education'),
(137570, 108891, 'de', 'name', 'Kerckhoff Klinik'),
(137571, 108892, 'pt', 'name', 'Instituto de HidrƔulica e Recursos Hƭdricos'),
(137572, 108893, 'fr', 'name', 'Ɖcole SupĆ©rieure des Metiers Artistiques'),
(137573, 108894, 'en', 'name', 'ByteDance, ByteDance (China)'),
(137574, 108895, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Udine'),
(137575, 108896, 'es', 'name', 'Universidad El Bosque'),
(137576, 108897, 'en', 'name', 'Masuda Medical Association Hospital'),
(137577, 108897, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē›Šē”°åø‚åŒ»åø«ä¼šē«‹ē›Šē”°åœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼åŒ»åø«ä¼šē—…é™¢'),
(137578, 108898, 'en', 'name', 'Institute of Oceanography and Fisheries'),
(137579, 108898, 'hr', 'name', 'Institut za oceanografiju i ribarstvo'),
(137580, 108899, 'en', 'name', 'Benito JuƔrez Autonomous University of Oaxaca'),
(137581, 108899, 'es', 'name', 'Universidad Autónoma Benito JuÔrez de Oaxaca'),
(137582, 108900, 'en', 'name', 'Interactive Research and Development'),
(137583, 108901, 'en', 'name', 'Kyoto Junior College of Foreign Languages'),
(137584, 108901, 'ja', 'name', 'äŗ¬éƒ½å¤–å›½čŖžēŸ­ęœŸå¤§å­¦'),
(137585, 108902, 'en', 'name', 'Museums Victoria'),
(137586, 108903, 'en', 'name', 'West Sulawesi University'),
(137587, 108903, 'id', 'name', 'Universitas Sulawesi Barat'),
(137588, 108904, 'en', 'name', 'National Meanchey University'),
(137589, 108904, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž‡įž¶įžįž·įž˜įž¶įž“įž‡įŸįž™'),
(137590, 108905, 'pt', 'name', 'Instituto Superior Politécnico de Tecnologia e Ciências'),
(137591, 108906, 'en', 'name', 'Quantum Science and Technology in Arcetri'),
(137592, 108907, 'en', 'name', 'JSS Science and Technology University'),
(137593, 108907, 'kn', 'name', 'ą²œą³†ą²Žą²øą³ą²Žą²øą³ ą²µą²æą²œą³ą²žą²¾ą²Ø ą²®ą²¤ą³ą²¤ą³ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(137594, 108908, 'en', 'name', 'Sonoda Women''s College'),
(137595, 108908, 'ja', 'name', 'åœ’ē”°å­¦åœ’å„³å­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(137596, 108909, 'de', 'name', 'WestsƤchsische Hochschule Zwickau'),
(137597, 108910, 'es', 'name', 'Universidad Libre de Colombia'),
(137598, 108911, 'no_lang_code', 'name', 'Amazon (United States)'),
(137599, 108912, 'en', 'name', 'Abertay University'),
(137600, 108913, 'en', 'name', 'Rhode Island School of Design'),
(137601, 108913, 'es', 'name', 'Escuela de DiseƱo de Rhode Island'),
(137602, 108914, 'de', 'name', 'UniversitƤt Duisburg-Essen'),
(137603, 108914, 'en', 'name', 'University of Duisburg-Essen'),
(137604, 108915, 'pt', 'name', 'Fundação Dom Cabral'),
(137605, 108916, 'en', 'name', 'University of Nottingham Malaysia Campus'),
(137606, 108916, 'ms', 'name', 'Universiti Nottingham Malaysia'),
(137607, 108917, 'en', 'name', 'English and Foreign Languages University'),
(137608, 108917, 'hi', 'name', 'ą¤…ą¤‚ą¤—ą„ą¤°ą„‡ą¤œą„€ और ą¤µą¤æą¤¦ą„‡ą¤¶ą„€ भाषाओ का ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(137609, 108917, 'pa', 'name', 'ąØ…ą©°ąØ—ą©ąØ°ą©‡ąØœąØ¼ą©€ ਅਤੇ ਵਿਦੇਸ਼ੀ ਭਾਸ਼ਾਵਾਂ ਦੀ ਕੇਂਦਰੀ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(137610, 108917, 'te', 'name', 'ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°‡ą°‚ą°—ą±ą°²ą±€ą°·ą± ą°…ą°‚ą°”ą± ą°«ą°¾ą°°ą°æą°Øą± ą°²ą°¾ą°‚ą°—ą±ą°µą±‡ą°œą±†ą°øą±'),
(137611, 108918, 'en', 'name', 'Kanagawa Institute of Industrial Science and Technology'),
(137612, 108918, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē„žå„ˆå·ēœŒē«‹ē”£ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(137613, 108919, 'en', 'name', 'Isehara Kyodo Hospital'),
(137614, 108919, 'ja', 'name', 'JAē„žå„ˆå·åŽšē”Ÿé€£ä¼Šå‹¢åŽŸå”åŒē—…é™¢'),
(137615, 108920, 'fr', 'name', 'HƓpital Intercommunal de CrƩteil'),
(137616, 108921, 'en', 'name', 'Hunan Institute of Technology'),
(137617, 108921, 'zh', 'name', 'ę¹–å—å·„å­¦é™¢'),
(137618, 108922, 'ja', 'name', 'ć³ć‚ć“å­¦é™¢å¤§å­¦'),
(137619, 108922, 'no_lang_code', 'name', 'Biwako Gakuin University'),
(137620, 108923, 'en', 'name', 'Kogi State College of Education, Ankpa'),
(137621, 108924, 'en', 'name', 'Hasselt University'),
(137622, 108924, 'fr', 'name', 'UniversitƩ de Hasselt'),
(137623, 108924, 'nl', 'name', 'Universiteit Hasselt'),
(137624, 108925, 'de', 'name', 'Hochschule Nordhausen'),
(137625, 108925, 'en', 'name', 'Nordhausen University of Applied Sciences'),
(137626, 108926, 'en', 'name', 'Federal University of Petroleum Resource Effurun'),
(137627, 108927, 'en', 'name', 'Hong Kong Baptist Hospital'),
(137628, 108928, 'en', 'name', 'Jissen Women''s Junior College'),
(137629, 108928, 'ja', 'name', '実践儳子大学短期大学部'),
(137630, 108929, 'en', 'name', 'Asahi General Hospital'),
(137631, 108929, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗē·åˆē—…é™¢å›½äæę—­äø­å¤®ē—…é™¢, ē·åˆē—…é™¢å›½äæę—­äø­å¤®ē—…é™¢'),
(137632, 108930, 'da', 'name', 'Det Kongelige Danske Musikkonservatorium'),
(137633, 108930, 'en', 'name', 'Royal Danish Academy of Music'),
(137634, 108931, 'en', 'name', 'Beijing Academy of Quantum Information Sciences'),
(137635, 108932, 'sr', 'name', 'Institut za higijenu i tehnologiju mesa'),
(137636, 108933, 'en', 'name', 'Maryam Abacha American University of Nigeria'),
(137637, 108934, 'en', 'name', 'Office of the Director'),
(137638, 108935, 'en', 'name', 'HudsonAlpha Institute for Biotechnology'),
(137639, 108936, 'en', 'name', 'Meijibashi Hospital'),
(137640, 108936, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåž£č°·ä¼šę˜Žę²»ę©‹ē—…é™¢'),
(137641, 108937, 'en', 'name', 'Institute of Transport Economics'),
(137642, 108938, 'en', 'name', 'European University at Saint Petersburg'),
(137643, 108938, 'ru', 'name', 'Европейский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ в Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³Šµ'),
(137644, 108939, 'en', 'name', 'University of Sunderland'),
(137645, 108940, 'de', 'name', 'Hochschule Mannheim'),
(137646, 108940, 'en', 'name', 'Mannheim University of Applied Sciences'),
(137647, 108941, 'en', 'name', 'Tsukuba Gakuen Hospital'),
(137648, 108941, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē­‘ę³¢éŗ“ä»ä¼šē­‘ę³¢å­¦åœ’ē—…é™¢'),
(137649, 108942, 'en', 'name', 'The Energy Conservation Center, Japan'),
(137650, 108942, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗēœć‚Øćƒćƒ«ć‚®ćƒ¼ć‚»ćƒ³ć‚æćƒ¼'),
(137651, 108943, 'pt', 'name', 'Autoridade de Segurança Alimentar e Económica'),
(137652, 108944, 'en', 'name', 'Bellarmine University'),
(137653, 108945, 'ca', 'name', 'Universitat Ramon Llull'),
(137654, 108945, 'en', 'name', 'Ramon Llull University'),
(137655, 108945, 'es', 'name', 'Universidad Ramon Llull'),
(137656, 108946, 'en', 'name', 'International Kidney Stone Institute'),
(137657, 108947, 'en', 'name', 'National Institute of Technology Sikkim'),
(137658, 108947, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„‹ą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤øą¤æą¤•ą„ą¤•ą¤æą¤®'),
(137659, 108948, 'en', 'name', 'Albukhary Foundation'),
(137660, 108948, 'ms', 'name', 'Yayasan Albukhary'),
(137661, 108949, 'en', 'name', 'Chiba Tokushukai Hospital'),
(137662, 108949, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šåƒč‘‰å¾³ę“²ä¼šē—…é™¢'),
(137663, 108950, 'no_lang_code', 'name', 'Costello Medical Consulting (United Kingdom)'),
(137664, 108951, 'en', 'name', 'Nigeria Maritime University'),
(137665, 108952, 'en', 'name', 'Digestive Disease Research Institute, Tehran University of Medical Sciences Digestive Disease Research Center'),
(137666, 108952, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“Ś©ŲÆŁ‡ ŲØŪŒŁ…Ų§Ų±ŪŒ Ł‡Ų§ŪŒ گوارؓ و کبد دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی تهران'),
(137667, 108953, 'en', 'name', 'National Sanatorium Tama Zenshoen'),
(137668, 108953, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€å¤šē£Øå…Øē”Ÿåœ’'),
(137669, 108954, 'en', 'name', 'Fukuoka Sanno Hospital'),
(137670, 108954, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£é«˜é‚¦ä¼šē¦å²”å±±ēŽ‹ē—…é™¢'),
(137671, 108955, 'pt', 'name', 'Centro de Estudos em Educação e Inovação'),
(137672, 108956, 'en', 'name', 'Dawson College'),
(137673, 108956, 'fr', 'name', 'CollĆØge d’enseignement gĆ©nĆ©ral et professionnel'),
(137674, 108957, 'ar', 'name', 'جــــامـعــة محــمــد Ų§Ł„Ų“Ł€Ł€Ų±ŁŠŁ Ł…Ų³Ł€Ų§Ų¹Ł€Ł€Ł€Ł€ŲÆŁŠŲ©'),
(137675, 108957, 'en', 'name', 'Mohamed-Cherif Messaadia University'),
(137676, 108958, 'en', 'name', 'Scientific Veterinary Institute "Novi Sad"'),
(137677, 108958, 'sr', 'name', 'Naučni institut za veterinarstvo Novi Sad, ŠŠ°ŃƒŃ‡Š½Šø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ветеринарсво "ŠŠžŠ’Š˜ ДАД"'),
(137678, 108959, 'pt', 'name', 'Escola Superior de Artes e Design'),
(137679, 108960, 'en', 'name', 'PARADIM'),
(137680, 108961, 'en', 'name', 'Mama Ngina University College'),
(137681, 108962, 'en', 'name', 'University of IbaguƩ'),
(137682, 108962, 'es', 'name', 'Corporación Universitaria de Ibagué, Universidad de Ibagué'),
(137683, 108963, 'en', 'name', 'Ba Ria - Vung Tau College of Engineering and Technology'),
(137684, 108963, 'vi', 'name', 'TrĘ°į»ng Cao đẳng Kỹ thuįŗ­t CĆ“ng nghệ BĆ  Rịa - VÅ©ng TĆ u'),
(137685, 108964, 'de', 'name', 'WSL-Institut für Schnee-und Lawinenforschung SLF'),
(137686, 108964, 'en', 'name', 'WSL Institute for Snow and Avalanche Research SLF'),
(137687, 108964, 'fr', 'name', 'WSL Institut pour l''Ʃtude de la neige et des avalanches SLF'),
(137688, 108964, 'it', 'name', 'WSL Istituto per lo studio della neve e delle valanghe SLF'),
(137689, 108965, 'en', 'name', 'UniNettuno University'),
(137690, 108965, 'it', 'name', 'UniversitĆ  Telematica Internazionale Uninettuno'),
(137691, 108966, 'pt', 'name', 'Associação Caruaruense de Ensino Superior e Técnico'),
(137692, 108967, 'en', 'name', 'Dental Medical Centre'),
(137693, 108967, 'pt', 'name', 'Centro MƩdico DentƔrio (Portugal)'),
(137694, 108968, 'en', 'name', 'North East Surrey College of Technology'),
(137695, 108969, 'en', 'name', 'Widya Gama Mahakam University'),
(137696, 108969, 'id', 'name', 'Universitas Widyagama Mahakam Samarinda'),
(137697, 108970, 'en', 'name', 'Japan Textile Products Quality and Technology Center'),
(137698, 108970, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē¹Šē¶­č£½å“å“č³ŖęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(137699, 108971, 'en', 'name', 'Dayalbagh Educational Institute'),
(137700, 108972, 'en', 'name', 'University of Urbino'),
(137701, 108972, 'it', 'name', 'UniversitĆ  degli Studi di Urbino Carlo Bo'),
(137702, 108973, 'en', 'name', 'Association of American Medical Colleges'),
(137703, 108974, 'en', 'name', 'The Tokyo Foundation for Policy Research'),
(137704, 108974, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±äŗ¬č²”å›£ę”æē­–ē ”ē©¶ę‰€'),
(137705, 108975, 'en', 'name', 'Brazilian School of Public and Business Administration'),
(137706, 108975, 'pt', 'name', 'Escola Brasileira de Administração Pública e de Empresas'),
(137707, 108976, 'pt', 'name', 'Centro de Estudos Fiscais'),
(137708, 108977, 'en', 'name', 'American Association of Immunologists'),
(137709, 108978, 'en', 'name', 'Ecology of Guianan Forests'),
(137710, 108978, 'fr', 'name', 'Ecologie des ForĆŖts de Guyane'),
(137711, 108979, 'fr', 'name', 'Centre intƩgrƩ de santƩ et de services sociaux de la MontƩrƩgie-Centre'),
(137712, 108980, 'es', 'name', 'Escuela Superior Politecnica del Litoral, Escuela Superior PolitƩcnica del Litoral'),
(137713, 108981, 'en', 'name', 'Japan Meat Processors Association'),
(137714, 108981, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿč‚‰åŠ å·„å”ä¼š'),
(137715, 108982, 'de', 'name', 'Technische Hochschule Brandenburg'),
(137716, 108982, 'en', 'name', 'Brandenburg University of Applied Sciences'),
(137717, 108983, 'en', 'name', 'Oil and Gas Institute - National Research Institute'),
(137718, 108983, 'pl', 'name', 'Instytut Nafty i Gazu – Państwowy Instytutu Badawczy'),
(137719, 108984, 'en', 'name', 'The CHILDS Trust Medical Research Foundation'),
(137720, 108985, 'en', 'name', 'Narsee Monjee Institute of Management Studies'),
(137721, 108986, 'en', 'name', 'Yamanoue Hospital'),
(137722, 108986, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å„åÆæä¼šå±±ć®äøŠē—…é™¢'),
(137723, 108987, 'en', 'name', 'Minami Seikyo Hospital'),
(137724, 108987, 'ja', 'name', 'å—åŒ»ē™‚ē”Ÿę“»å”åŒēµ„åˆē·åˆē—…é™¢å—ē”Ÿå”ē—…é™¢'),
(137725, 108988, 'en', 'name', 'North China Electric Power University'),
(137726, 108988, 'zh', 'name', 'åŽåŒ—ē”µåŠ›å¤§å­¦'),
(137727, 108989, 'en', 'name', 'Akita Prefectural Resources Technology Development Organization'),
(137728, 108989, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē§‹ē”°ēœŒč³‡ęŗęŠ€č”“é–‹ē™ŗę©Ÿę§‹'),
(137729, 108990, 'en', 'name', 'University for the Creative Arts'),
(137730, 108991, 'en', 'name', 'Komazawa Women''s Junior College'),
(137731, 108991, 'ja', 'name', 'é§’ę²¢å„³å­ēŸ­ęœŸå¤§å­¦'),
(137732, 108992, 'en', 'name', 'Barry University'),
(137733, 108993, 'en', 'name', 'University of Cuenca'),
(137734, 108993, 'es', 'name', 'Universidad de Cuenca'),
(137735, 108994, 'en', 'name', 'Japan Pharmacists Education Center'),
(137736, 108994, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č–¬å‰¤åø«ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(137737, 108995, 'it', 'name', 'Istituto di Scienze e Tecnologie Chimiche "Giulio Natta"'),
(137738, 108996, 'en', 'name', 'Health Equity Research Center'),
(137739, 108996, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ عدالت ŲÆŲ± سلامت'),
(137740, 108997, 'vi', 'name', 'TrĘ°į»ng ĐH Nguyį»…n Tįŗ„t ThĆ nh'),
(137741, 108998, 'en', 'name', 'Kwantlen Polytechnic University'),
(137742, 108999, 'en', 'name', 'University of Garmian'),
(137743, 108999, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ ŚÆŪ•Ų±Ł…ŪŒŲ§Ł†'),
(137744, 109000, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Roraima'),
(137745, 109001, 'en', 'name', 'The Engineering Academy of Japan'),
(137746, 109001, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å·„å­¦ć‚¢ć‚«ćƒ‡ćƒŸćƒ¼'),
(137747, 109002, 'fr', 'name', 'Centre de recherche du CHU de QuƩbec-UniversitƩ Laval'),
(137748, 109003, 'en', 'name', 'Yunnan University of Finance And Economics'),
(137749, 109003, 'zh', 'name', 'äŗ‘å—č“¢ē»å¤§å­¦'),
(137750, 109004, 'en', 'name', 'Sanjo City University'),
(137751, 109004, 'ja', 'name', 'äø‰ę”åø‚ē«‹å¤§å­¦'),
(137752, 109005, 'pt', 'name', 'Centro CientĆ­fico e Cultural de Macau'),
(137753, 109006, 'en', 'name', 'CPB Netherlands Bureau for Economic Policy Analysis'),
(137754, 109006, 'nl', 'name', 'Centraal Planbureau, Central Planning Bureau'),
(137755, 109007, 'en', 'name', 'Botswana Harvard AIDS Institute Partnership'),
(137756, 109008, 'en', 'name', 'Inter-Research Science Publisher, Inter-Research Science Publisher (Germany)'),
(137757, 109009, 'en', 'name', 'Lake Forest College'),
(137758, 109010, 'en', 'name', 'Moscow State University of Psychology & Education'),
(137759, 109010, 'ru', 'name', 'Московский Š³Š¾ŃŃƒŠ“арственный психолого-пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(137760, 109011, 'en', 'name', 'Hokkaido Prefectural Government'),
(137761, 109011, 'ja', 'name', 'åŒ—ęµ·é“åŗ'),
(137762, 109012, 'en', 'name', 'Rural Development Planning Commission'),
(137763, 109012, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč¾²ę‘é–‹ē™ŗä¼ē”»å§”å“”ä¼š'),
(137764, 109013, 'bg', 'name', 'Š’ŠøŃŃˆŠµ военноморско ŃƒŃ‡ŠøŠ»ŠøŃ‰Šµ, Варна'),
(137765, 109013, 'no_lang_code', 'name', 'Nikola Vaptsarov Naval Academy'),
(137766, 109014, 'en', 'name', 'Barnard College'),
(137767, 109015, 'en', 'name', 'Arkalyk State Pedagogical Institute named after Ibrai Altynsarin'),
(137768, 109015, 'kk', 'name', 'Š«.Алтынсарин атынГағы Арқалық пеГагогикалық ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(137769, 109015, 'ru', 'name', 'Аркалыкский пеГагогический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ им. И. Алтынсарина'),
(137770, 109016, 'en', 'name', 'Nagoya Industries Promotion Corporation'),
(137771, 109016, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåå¤å±‹ē”£ę„­ęŒÆčˆˆå…¬ē¤¾'),
(137772, 109017, 'en', 'name', 'Fatima Animal Medical Center'),
(137773, 109018, 'en', 'name', 'Miyazaki Prefecture Foods Development Center'),
(137774, 109018, 'ja', 'name', 'å®®å“ŽēœŒé£Ÿå“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(137775, 109019, 'en', 'name', 'Wakayama Prefectural Research Center of Environment and Public Health'),
(137776, 109019, 'ja', 'name', 'å’Œę­Œå±±ēœŒē’°å¢ƒč”›ē”Ÿē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(137777, 109020, 'id', 'name', 'Universitas Muhammadiyah Purworejo'),
(137778, 109021, 'no_lang_code', 'name', 'Materials Center Leoben (Austria)'),
(137779, 109022, 'pl', 'name', 'Akademia Wychowania Fizycznego im. Eugeniusza Piaseckiego w Poznaniu'),
(137780, 109023, 'en', 'name', 'China West Normal University'),
(137781, 109023, 'zh', 'name', 'č„æåŽåøˆčŒƒå¤§å­¦'),
(137782, 109024, 'en', 'name', 'Grantham College'),
(137783, 109025, 'pt', 'name', 'Centro de Investigação em Engenharia dos Processos Químicos e dos Produtos da Floresta'),
(137784, 109026, 'en', 'name', 'Nagasaki Agriculture and Forestry Technical Development Center'),
(137785, 109026, 'ja', 'name', 'é•·å“ŽēœŒč¾²ęž—ęŠ€č”“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(137786, 109027, 'pt', 'name', 'Hospital SAMS'),
(137787, 109028, 'en', 'name', 'University of Southern Queensland'),
(137788, 109029, 'en', 'name', 'Washburn University'),
(137789, 109030, 'en', 'name', 'Ishikawa Agriculture and Forestry Research Center'),
(137790, 109030, 'ja', 'name', 'ēŸ³å·ēœŒč¾²ęž—ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(137791, 109031, 'de', 'name', 'Technische Hochschule Aschaffenburg'),
(137792, 109031, 'en', 'name', 'Aschaffenburg University of Applied Sciences'),
(137793, 109032, 'en', 'name', 'Beijing Normal University - Hong Kong Baptist University United International College'),
(137794, 109032, 'zh', 'name', 'åŒ—äŗ¬åøˆčŒƒå¤§å­¦-é¦™ęøÆęµøä¼šå¤§å­¦č”åˆå›½é™…å­¦é™¢'),
(137795, 109033, 'en', 'name', 'The Mathematical Society of Japan'),
(137796, 109033, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę•°å­¦ä¼š'),
(137797, 109034, 'en', 'name', 'Institute for Health Outcomes & Process Evaluation Research'),
(137798, 109034, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗå„åŗ·åŒ»ē™‚č©•ä¾”ē ”ē©¶ę©Ÿę§‹'),
(137799, 109035, 'en', 'name', 'Danbury Hospital'),
(137800, 109036, 'no_lang_code', 'name', 'Novosibirsk State University'),
(137801, 109036, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(137802, 109037, 'de', 'name', 'Karlsruher Institut für Technologie'),
(137803, 109037, 'en', 'name', 'Karlsruhe Institute of Technology'),
(137804, 109038, 'en', 'name', 'Kyoto Kujo Hospital'),
(137805, 109038, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåŒä»ä¼šäŗ¬éƒ½ä¹ę”ē—…é™¢'),
(137806, 109039, 'en', 'name', 'Institute of Molecular Life Sciences'),
(137807, 109039, 'hu', 'name', 'MolekulĆ”ris ƉlettudomĆ”nyi IntĆ©zetben'),
(137808, 109040, 'fr', 'name', 'Institut d''Ʃlectronique et d''informatique gaspard-monge, Laboratoire d''Informatique Gaspard-Monge'),
(137809, 109041, 'en', 'name', 'OKINAWA Science and Technology Promotion Center'),
(137810, 109041, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę²–ēø„ē§‘å­¦ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(137811, 109042, 'pt', 'name', 'Instituto de Estudos Avançados da Universidade de São Paulo'),
(137812, 109043, 'de', 'name', 'Karl Landsteiner Privatuniversität für Gesundheitswissenschaften'),
(137813, 109043, 'en', 'name', 'Karl Landsteiner University of Health Sciences'),
(137814, 109044, 'en', 'name', 'Wuhan Conservatory of Music'),
(137815, 109044, 'zh', 'name', 'ę­¦ę±‰éŸ³ä¹å­¦é™¢'),
(137816, 109045, 'ja', 'name', '岔山学院大学'),
(137817, 109045, 'no_lang_code', 'name', 'Okayama Gakuin University'),
(137818, 109046, 'en', 'name', 'Wild Bird Society of Japan'),
(137819, 109046, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é‡Žé³„ć®ä¼š'),
(137820, 109047, 'fr', 'name', 'Centre Hospitalier de Valenciennes'),
(137821, 109048, 'en', 'name', 'GIFT University'),
(137822, 109049, 'en', 'name', 'Gendarmerie and Coast Guard Academy'),
(137823, 109049, 'tr', 'name', 'Jandarma ve Sahil Güvenlik Akademisi'),
(137824, 109050, 'en', 'name', 'National Institute of Scientific Research'),
(137825, 109050, 'fr', 'name', 'Institut National de la Recherche Scientifique'),
(137826, 109051, 'en', 'name', 'International Union for Conservation of Nature'),
(137827, 109052, 'en', 'name', 'Stockholm University of the Arts'),
(137828, 109052, 'sv', 'name', 'Stockholms KonstnƤrliga Hƶgskola'),
(137829, 109053, 'it', 'name', 'Istituti di Ricovero e Cura a Carattere Scientifico'),
(137830, 109054, 'ja', 'name', 'é£Æå”šē—…é™¢'),
(137831, 109054, 'no_lang_code', 'name', 'Aso Iizuka Hospital'),
(137832, 109055, 'en', 'name', 'Building Research Institute'),
(137833, 109055, 'pl', 'name', 'Instytut Techniki Budowlanej'),
(137834, 109056, 'no_lang_code', 'name', 'MSD (Spain)'),
(137835, 109057, 'de', 'name', 'FernUniversitƤt in Hagen'),
(137836, 109057, 'en', 'name', 'University of Hagen'),
(137837, 109058, 'en', 'name', 'Grinnell College'),
(137838, 109059, 'en', 'name', 'Bandung Islamic University'),
(137839, 109059, 'id', 'name', 'Universitas Islam Bandung'),
(137840, 109060, 'id', 'name', 'Badan Pusat Statistik'),
(137841, 109061, 'en', 'name', 'Society of Environmental Science, Japan'),
(137842, 109061, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē’°å¢ƒē§‘å­¦ä¼š'),
(137843, 109062, 'en', 'name', 'Ministry of Food Processing Industries'),
(137844, 109063, 'cs', 'name', 'OrientĆ”lnĆ­ Ćŗstav AV ČR, OrientĆ”lnĆ­ Ćŗstav AV ČR, v. v. i., OrientĆ”lnĆ­ Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(137845, 109063, 'en', 'name', 'Czech Academy of Sciences, Oriental Institute'),
(137846, 109064, 'en', 'name', 'Kherson National Technical University'),
(137847, 109064, 'ru', 'name', 'Єерсонский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(137848, 109064, 'uk', 'name', 'Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(137849, 109065, 'en', 'name', 'Nexford University'),
(137850, 109066, 'it', 'name', 'Istituto Oncologico della Svizzera Italiana'),
(137851, 109067, 'en', 'name', 'University of Environment and Sustainable Development'),
(137852, 109068, 'en', 'name', 'Tartu Health Care College'),
(137853, 109068, 'et', 'name', 'Tartu Tervishoiu kƵrgkool'),
(137854, 109069, 'da', 'name', 'Novo Nordisk Fonden'),
(137855, 109069, 'en', 'name', 'Novo Nordisk Foundation'),
(137856, 109070, 'en', 'name', 'California State University, Channel Islands'),
(137857, 109070, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie Ć  channel islands'),
(137858, 109071, 'el', 'name', 'Ī‘Ī½ĻŽĻ„Ī±Ļ„Ī· Σχολή ΠαιΓαγωγικής και Τεχνολογικής Ī•ĪŗĻ€Ī±ĪÆĪ“ĪµĻ…ĻƒĪ·Ļ‚'),
(137859, 109071, 'en', 'name', 'School of Pedagogical and Technological Education'),
(137860, 109072, 'en', 'name', 'Konan Medical Center'),
(137861, 109072, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē”²å—ä¼šē”²å—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(137862, 109073, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī˜ĪµĻƒĻƒĪ±Ī»ĪÆĪ±Ļ‚'),
(137863, 109073, 'en', 'name', 'University of Thessaly'),
(137864, 109073, 'fr', 'name', 'UniversitƩ de thessalie'),
(137865, 109074, 'en', 'name', 'Helmholtz Metadata Collaboration'),
(137866, 109075, 'en', 'name', 'Uganda Martyrs University'),
(137867, 109076, 'en', 'name', 'Norwegian School of Economics'),
(137868, 109076, 'no', 'name', 'Norges HandelshĆøyskole'),
(137869, 109077, 'en', 'name', 'Tokai Technology Center'),
(137870, 109077, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę±ęµ·ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(137871, 109078, 'en', 'name', 'Tsudanuma Central General Hospital'),
(137872, 109078, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę„›å‹ä¼šę“„ē”°ę²¼äø­å¤®ē·åˆē—…é™¢'),
(137873, 109079, 'en', 'name', 'Forman Christian College'),
(137874, 109079, 'ur', 'name', 'ŁŲ§Ų±Ł…ŪŒŁ† Ś©Ų±Ų³Ś†ŪŒŁ† کالج'),
(137875, 109080, 'en', 'name', 'Lokman Hekim University'),
(137876, 109080, 'tr', 'name', 'Lokman Hekim Üniversitesi'),
(137877, 109081, 'sk', 'name', 'Trencianska Univerzita Alexandra Dubceka V Trencine'),
(137878, 109082, 'en', 'name', 'Western Nevada College'),
(137879, 109083, 'en', 'name', 'Akita Prefecture Forestry Research and Training Center'),
(137880, 109083, 'ja', 'name', 'ē§‹ē”°ēœŒęž—ę„­ē ”ē©¶ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(137881, 109084, 'en', 'name', 'National Institute for Mathematical and Biological Synthesis'),
(137882, 109085, 'no_lang_code', 'name', 'MSD (South Korea)'),
(137883, 109086, 'en', 'name', 'Nagano Environmental Conservation Research Institute'),
(137884, 109086, 'ja', 'name', 'é•·é‡ŽēœŒē’°å¢ƒäæå…Øē ”ē©¶ę‰€'),
(137885, 109087, 'de', 'name', 'Staatliche Hochschule für Gestaltung Karlsruhe'),
(137886, 109087, 'en', 'name', 'Karlsruhe University of Arts and Design'),
(137887, 109088, 'en', 'name', 'Miyazaki Medical Association Hospital'),
(137888, 109088, 'ja', 'name', 'å®®å“Žåø‚éƒ”åŒ»åø«ä¼šē—…é™¢'),
(137889, 109089, 'no_lang_code', 'name', 'WSP (Canada)'),
(137890, 109090, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦° ফর ঔাইরিয়াল ঔিজিজ ą¦°ą¦æą¦øą¦¾ą¦°ą§ą¦š, বাংলাদেশ'),
(137891, 109090, 'en', 'name', 'International Centre for Diarrhoeal Disease Research'),
(137892, 109091, 'en', 'name', 'Observation International'),
(137893, 109092, 'sv', 'name', 'Region VƤstmanland'),
(137894, 109093, 'en', 'name', 'University of Bengkulu'),
(137895, 109093, 'id', 'name', 'Universitas Bengkulu'),
(137896, 109094, 'en', 'name', 'Reserve Bank of India'),
(137897, 109094, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤°ą¤æą¤œą¤¼ą¤°ą„ą¤µ ą¤¬ą„ˆą¤‚ą¤•'),
(137898, 109095, 'en', 'name', 'Advanced Construction Technology Center'),
(137899, 109095, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…ˆē«Æå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(137900, 109096, 'en', 'name', 'National Cancer Institute'),
(137901, 109097, 'en', 'name', 'Fukuoka Prefectural Government'),
(137902, 109097, 'ja', 'name', 'ē¦å²”ēœŒåŗ'),
(137903, 109098, 'en', 'name', 'National Institute for Nuclear Physics, Milan Unit'),
(137904, 109098, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Milano'),
(137905, 109099, 'en', 'name', 'President University'),
(137906, 109099, 'id', 'name', 'Universitas Presiden'),
(137907, 109100, 'it', 'name', 'Ospedale generale di zona San Camillo Treviso'),
(137908, 109101, 'en', 'name', 'Bicol University'),
(137909, 109102, 'no_lang_code', 'name', 'Xennia Technology (United Kingdom)'),
(137910, 109103, 'no_lang_code', 'name', 'Sri Chandrasekharendra Saraswathi Viswa Mahavidyalaya'),
(137911, 109103, 'ta', 'name', 'சிறி ą®šą®ØąÆą®¤ą®°ą®šąÆ‡ą®•ą®°ąÆ‡ą®ØąÆą®¤ą®°ą®¾ ą®šą®°ą®øąÆą®µą®¤ą®æ ą®µą®æą®øąÆą®µ ą®®ą®•ą®¾ą®µą®æą®¤ąÆą®Æą®¾ą®²ą®Æą®¾'),
(137912, 109104, 'en', 'name', 'Public Health Research Foundation'),
(137913, 109104, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ‘ćƒ–ćƒŖćƒƒć‚Æćƒ˜ćƒ«ć‚¹ćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(137914, 109105, 'en', 'name', 'Beijing University of Posts and Telecommunications'),
(137915, 109105, 'zh', 'name', 'åŒ—äŗ¬é‚®ē”µå¤§å­¦'),
(137916, 109106, 'en', 'name', 'KKR Hokuriku Hospital'),
(137917, 109106, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šåŒ—é™øē—…é™¢'),
(137918, 109107, 'es', 'name', 'Universidad Jorge Tadeo Lozano, Universidad de BogotĆ” Jorge Tadeo Lozano'),
(137919, 109108, 'cs', 'name', 'Fakultnƭ Nemocnice Hradec KrƔlovƩ'),
(137920, 109108, 'en', 'name', 'University Hospital Hradec KrƔlovƩ'),
(137921, 109109, 'en', 'name', 'Society of Motion Picture and Television Engineers'),
(137922, 109110, 'en', 'name', 'Federal University Birnin Kebbi'),
(137923, 109111, 'en', 'name', 'R. E. Beverly III and Associates, R. E. Beverly III and Associates (United States)'),
(137924, 109112, 'en', 'name', 'Sonoma State University'),
(137925, 109113, 'en', 'name', 'Tajimi Iwase Eye Clinic'),
(137926, 109113, 'ja', 'name', 'ćŸć˜ćæå²©ē€¬ēœ¼ē§‘'),
(137927, 109114, 'en', 'name', 'Muni University'),
(137928, 109115, 'en', 'name', 'Sandwell College'),
(137929, 109116, 'en', 'name', 'Ichinomiyanishi Hospital'),
(137930, 109116, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęå¶ŗä¼šäø€å®®č„æē—…é™¢'),
(137931, 109117, 'en', 'name', 'Marist College'),
(137932, 109118, 'no_lang_code', 'name', 'Exponent (United States)'),
(137933, 109119, 'en', 'name', 'Wakayama Shin-ai University'),
(137934, 109119, 'ja', 'name', 'å’Œę­Œå±±äæ”ę„›å¤§å­¦'),
(137935, 109120, 'fr', 'name', 'Institut National des Sciences AppliquƩes de Rennes'),
(137936, 109121, 'en', 'name', 'Osaka University of Arts Junior College'),
(137937, 109121, 'ja', 'name', 'å¤§é˜ŖčŠøč”“å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(137938, 109122, 'en', 'name', 'University of TarapacĆ”'),
(137939, 109122, 'es', 'name', 'Universidad de TarapacĆ”'),
(137940, 109123, 'es', 'name', 'Universidad Internacional del Ecuador'),
(137941, 109124, 'en', 'name', 'Telethon Institute Of Genetics And Medicine'),
(137942, 109125, 'en', 'name', 'Shingu Municipal Medical Center'),
(137943, 109125, 'ja', 'name', 'ę–°å®®åø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(137944, 109126, 'bn', 'name', 'ą¦Ŗą§ą¦°ą§‡ą¦øą¦æą¦”ą§‡ą¦Øą§ą¦øą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼');
INSERT INTO `ror_settings` VALUES
(137945, 109126, 'en', 'name', 'Presidency University'),
(137946, 109126, 'hi', 'name', 'ą¤Ŗą„ą¤°ą„‡ą¤øą¤æą¤”ą„‡ą¤‚ą¤øą„€ ą¤•ą„‰ą¤²ą„‡ą¤œ'),
(137947, 109126, 'ta', 'name', 'ą®®ą®¾ą®Øą®æą®²ą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(137948, 109127, 'en', 'name', 'Epoka University'),
(137949, 109127, 'sq', 'name', 'Universiteti Epoka'),
(137950, 109128, 'en', 'name', 'Chukyo Junior College'),
(137951, 109128, 'ja', 'name', 'äø­äŗ¬å­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(137952, 109129, 'en', 'name', 'University of Poitiers'),
(137953, 109129, 'fr', 'name', 'UniversitƩ de Poitiers'),
(137954, 109130, 'en', 'name', 'Burdur Mehmet Akif Ersoy University'),
(137955, 109130, 'tr', 'name', 'Burdur Mehmet Akif Ersoy Üniversitesi'),
(137956, 109131, 'en', 'name', 'Gifu Prefectural Gero Hospital'),
(137957, 109131, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå²é˜œēœŒē«‹äø‹å‘‚ęø©ę³‰ē—…é™¢'),
(137958, 109132, 'en', 'name', 'Nigerian Army University Biu'),
(137959, 109133, 'en', 'name', 'Chiba City Institute of Health and Environment'),
(137960, 109133, 'ja', 'name', 'åƒč‘‰åø‚ē’°å¢ƒäæå„ē ”ē©¶ę‰€'),
(137961, 109134, 'pt', 'name', 'Centro de QuĆ­mica de Coimbra'),
(137962, 109135, 'en', 'name', 'Professional College of Arts and Tourism'),
(137963, 109135, 'ja', 'name', 'čŠøč”“ę–‡åŒ–č¦³å…‰å°‚é–€č·å¤§å­¦'),
(137964, 109136, 'en', 'name', 'Inje University'),
(137965, 109136, 'ko', 'name', 'ģøģ œėŒ€ķ•™źµ'),
(137966, 109137, 'no_lang_code', 'name', 'Deutsche Bahn (Germany)'),
(137967, 109138, 'en', 'name', 'Institute of Virology of the Slovak Academy of Sciences'),
(137968, 109138, 'sk', 'name', 'Virologického ústavu SlovenskÔ akadémia vied'),
(137969, 109139, 'en', 'name', 'Alliance Bioversity International - CIAT'),
(137970, 109140, 'en', 'name', 'IMDEA Software'),
(137971, 109140, 'es', 'name', 'Instituto IMDEA Software'),
(137972, 109141, 'sv', 'name', 'VƤsterbotten County, VƤsterbottens lƤn'),
(137973, 109142, 'en', 'name', 'Obesity and Eating Habits Research Center'),
(137974, 109142, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ Ś†Ų§Ł‚ŪŒ و Ų¹Ų§ŲÆŲ§ŲŖ غذایی'),
(137975, 109143, 'es', 'name', 'Instituto Tecnológico de TehuacÔn'),
(137976, 109144, 'en', 'name', 'Pohang University of Science and Technology'),
(137977, 109144, 'ko', 'name', 'ķ¬ķ•­ź³µź³¼ėŒ€ķ•™źµ'),
(137978, 109145, 'en', 'name', 'Nottingham Trent University'),
(137979, 109146, 'en', 'name', 'Josai Junior College'),
(137980, 109146, 'ja', 'name', 'åŸŽč„æēŸ­ęœŸå¤§å­¦'),
(137981, 109147, 'en', 'name', 'The Building Center of Japan'),
(137982, 109147, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ć‚»ćƒ³ć‚æćƒ¼'),
(137983, 109148, 'en', 'name', 'Tokyo Metropolitan Hospital Organization'),
(137984, 109148, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę±äŗ¬éƒ½ē«‹ē—…é™¢ę©Ÿę§‹'),
(137985, 109149, 'no_lang_code', 'name', 'ThyssenKrupp (Brazil)'),
(137986, 109150, 'en', 'name', 'Central University of Gujarat'),
(137987, 109151, 'de', 'name', 'Forstliche Versuchs- und Forschungsanstalt Baden-Württemberg'),
(137988, 109151, 'en', 'name', 'Forest Research Institute Baden-Wuerttemberg'),
(137989, 109152, 'en', 'name', 'School of Planning and Architecture Delhi'),
(137990, 109152, 'hi', 'name', 'ą¤Æą„‹ą¤œą¤Øą¤¾ तऄा ą¤µą¤¾ą¤øą„ą¤¤ą„ą¤•ą¤²ą¤¾ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤¦ą¤æą¤²ą„ą¤²ą„€'),
(137991, 109153, 'en', 'name', 'Central Japan Cord Blood Bank'),
(137992, 109153, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­éƒØć•ć„åøÆč”€ćƒćƒ³ć‚Æ'),
(137993, 109154, 'en', 'name', 'Central University of Jharkhand'),
(137994, 109154, 'hi', 'name', 'ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤¾ą¤°ą¤–ą¤£ą„ą¤”'),
(137995, 109155, 'en', 'name', 'Vytautas Magnus University'),
(137996, 109155, 'lt', 'name', 'Vytauto Didžiojo universitetas'),
(137997, 109155, 'pl', 'name', 'Uniwersytet Witolda Wielkiego'),
(137998, 109155, 'ru', 'name', 'Университет Витовта Великого'),
(137999, 109156, 'no_lang_code', 'name', 'Acciona (Spain)'),
(138000, 109157, 'es', 'name', 'Universidad Tecnológica de Nayarit'),
(138001, 109158, 'en', 'name', 'Yancheng Institute of Technology'),
(138002, 109158, 'zh', 'name', 'ē›åŸŽå·„å­¦é™¢'),
(138003, 109159, 'en', 'name', 'Ozarks Technical Community College'),
(138004, 109160, 'en', 'name', 'Indira Gandhi National Tribal University'),
(138005, 109160, 'hi', 'name', 'इंदिरा ą¤—ą¤¾ą¤ą¤§ą„€ ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤Ÿą„ą¤°ą¤¾ą¤‡ą¤¬ą¤² ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€'),
(138006, 109161, 'en', 'name', 'Bharath University'),
(138007, 109162, 'en', 'name', 'Academy of Romanian Scientists'),
(138008, 109163, 'en', 'name', 'Nasarawa State University'),
(138009, 109164, 'fr', 'name', 'IngƩnierie MolƩculaire et Physiopathologie Articulaire'),
(138010, 109165, 'en', 'name', 'Mongolian University of Life Sciences'),
(138011, 109165, 'mn', 'name', 'ЄөГөө Аж ŠŃ…ŃƒŠ¹Š½ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(138012, 109166, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© تبوك'),
(138013, 109166, 'en', 'name', 'University of Tabuk'),
(138014, 109167, 'cs', 'name', 'VŔeobecnÔ Fakultní Nemocnice v Praze'),
(138015, 109167, 'en', 'name', 'General University Hospital in Prague'),
(138016, 109168, 'en', 'name', 'Debapriya Mukhopadhyay Vision Research Institute & Foundation'),
(138017, 109169, 'en', 'name', 'KLE Technological University'),
(138018, 109169, 'kn', 'name', 'ಕೆ ą²Žą²²ą³ ಇ ą²¤ą²¾ą²‚ą²¤ą³ą²°ą²æą²• ą²¶ą²æą²•ą³ą²·ą²£ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(138019, 109170, 'id', 'name', 'Sekolah Tinggi Ilmu Komunikasi Almamater Wartawan Surabaya'),
(138020, 109171, 'en', 'name', 'St. Marguerite Hospital'),
(138021, 109171, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ęµä»ä¼šć‚»ćƒ³ćƒˆćƒžćƒ¼ć‚¬ćƒ¬ćƒƒćƒˆē—…é™¢'),
(138022, 109172, 'es', 'name', 'Fundación Universitaria Juan N. Corpas'),
(138023, 109173, 'en', 'name', 'West Virginia State University'),
(138024, 109173, 'fr', 'name', 'UniversitĆ© d''Ɖtat de virginie-occidentale'),
(138025, 109174, 'en', 'name', 'European Humanities University'),
(138026, 109174, 'lt', 'name', 'Europos humanitarinis universitetas'),
(138027, 109174, 'pl', 'name', 'Europejski Uniwersytet Humanistyczny'),
(138028, 109174, 'ru', 'name', 'Европейский Š³ŃƒŠ¼Š°Š½ŠøŃ‚арный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(138029, 109175, 'en', 'name', 'General Building Research Corporation of Japan'),
(138030, 109175, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ē·åˆč©¦éØ“ę‰€'),
(138031, 109176, 'en', 'name', 'Ehime Research Institute of Agriculture, Forestry and Fisheries'),
(138032, 109176, 'ja', 'name', 'ę„›åŖ›ēœŒč¾²ęž—ę°“ē”£ē ”ē©¶ę‰€'),
(138033, 109177, 'en', 'name', 'IUCN Species Survival Commission'),
(138034, 109178, 'pt', 'name', 'Universidade Federal de Juiz de Fora'),
(138035, 109179, 'en', 'name', 'Royal Military College of Canada'),
(138036, 109179, 'fr', 'name', 'CollĆØge Militaire Royal du Canada'),
(138037, 109180, 'es', 'name', 'Universidad Privada San Juan Bautista'),
(138038, 109181, 'en', 'name', 'Bucharest University of Economic Studies'),
(138039, 109181, 'ro', 'name', 'Academia de Studii Economice'),
(138040, 109182, 'id', 'name', 'Universitas Sari Mulia'),
(138041, 109183, 'pt', 'name', 'Centro de Investigação em Economia e Gestão'),
(138042, 109184, 'en', 'name', 'Mie Industry and Enterprise Support Center'),
(138043, 109184, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø‰é‡ēœŒē”£ę„­ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(138044, 109185, 'es', 'name', 'IK4-Lortek'),
(138045, 109186, 'pt', 'name', 'Centro AcadƩmico de Medicina de Lisboa'),
(138046, 109187, 'en', 'name', 'Miyamoto Hospital'),
(138047, 109187, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå®®ęœ¬ē—…é™¢'),
(138048, 109188, 'en', 'name', 'Fairfield University'),
(138049, 109188, 'es', 'name', 'Universidad de Fairfield'),
(138050, 109189, 'en', 'name', 'Iwate Prefectural Kuji Hospital'),
(138051, 109189, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ä¹…ę…ˆē—…é™¢'),
(138052, 109190, 'en', 'name', 'SĆ£o Paulo State Technological College'),
(138053, 109190, 'pt', 'name', 'Faculdades de Tecnologia do Estado de SĆ£o Paulo'),
(138054, 109191, 'en', 'name', 'Langston University'),
(138055, 109192, 'en', 'name', 'The Mushroom Research Institute of Japan'),
(138056, 109192, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćć®ć“ē ”ē©¶ę‰€'),
(138057, 109193, 'en', 'name', 'University of Santa Cruz do Sul'),
(138058, 109193, 'pt', 'name', 'Universidade de Santa Cruz do Sul'),
(138059, 109194, 'es', 'name', 'Instituto Tecnológico de Costa Rica'),
(138060, 109195, 'en', 'name', 'Valdosta State University'),
(138061, 109196, 'en', 'name', 'Old Dominion University'),
(138062, 109197, 'en', 'name', 'Swedish National Road and Transport Research Institute'),
(138063, 109198, 'en', 'name', 'South Staffordshire College'),
(138064, 109199, 'en', 'name', 'Laboratory for Research on Enterprise and Decisions'),
(138065, 109200, 'en', 'name', 'Japan Cement Association'),
(138066, 109200, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚»ćƒ”ćƒ³ćƒˆå”ä¼š'),
(138067, 109201, 'en', 'name', 'Centre for Biodiversity Genomics'),
(138068, 109202, 'en', 'name', 'Eugeniusz Geppert Academy of Art and Design in Wroclaw'),
(138069, 109202, 'pl', 'name', 'Akademia Sztuk Pieknych im. Eugeniusza Gepperta we Wroclawiu'),
(138070, 109203, 'es', 'name', 'Corporación Universitaria Remington'),
(138071, 109204, 'en', 'name', 'IUCN World Commission on Environmental Law'),
(138072, 109205, 'en', 'name', 'Heilongjiang University'),
(138073, 109205, 'zh', 'name', 'é»‘é¾™ę±Ÿå¤§å­¦'),
(138074, 109206, 'en', 'name', 'HAN University of Applied Sciences'),
(138075, 109206, 'nl', 'name', 'Hogeschool van Arnhem en Nijmegen'),
(138076, 109207, 'en', 'name', 'Japan Fisheries Resource Conservation Association'),
(138077, 109207, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“ē”£č³‡ęŗäæč­·å”ä¼š'),
(138078, 109208, 'no_lang_code', 'name', 'Flatiron Health (United States)'),
(138079, 109209, 'en', 'name', 'Indian Institute of Technology Dharwad'),
(138080, 109210, 'en', 'name', 'III V Lab'),
(138081, 109211, 'pt', 'name', 'Comando do Pessoal'),
(138082, 109212, 'id', 'name', 'Universitas Semarang'),
(138083, 109213, 'en', 'name', 'University of NariƱo'),
(138084, 109213, 'es', 'name', 'Universidad de NariƱo'),
(138085, 109214, 'ca', 'name', 'Universitat de Lleida'),
(138086, 109214, 'en', 'name', 'University of Lleida'),
(138087, 109214, 'es', 'name', 'Universidad de LƩrida'),
(138088, 109214, 'gl', 'name', 'Universidade de Lleida'),
(138089, 109215, 'en', 'name', 'Ovidius University'),
(138090, 109216, 'en', 'name', 'Bayburt University'),
(138091, 109216, 'tr', 'name', 'Bayburt Üniversitesi'),
(138092, 109217, 'en', 'name', 'New South Wales Department of Primary Industries'),
(138093, 109218, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…ŁˆŁ„ŁˆŲÆ Ł…Ų¹Ł…Ų±ŁŠ'),
(138094, 109218, 'en', 'name', 'Mouloud Mammeri University of Tizi-Ouzou'),
(138095, 109219, 'en', 'name', 'Ibnu Sina University'),
(138096, 109219, 'id', 'name', 'Universitas Ibnu Sina'),
(138097, 109220, 'en', 'name', 'Institute for Horticultural Plant Breeding'),
(138098, 109220, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåœ’čŠøę¤ē‰©č‚²ēØ®ē ”ē©¶ę‰€'),
(138099, 109221, 'en', 'name', 'Bridgend College'),
(138100, 109222, 'sq', 'name', 'University of PriŔtina - Kosovska Mitrovica'),
(138101, 109222, 'sr', 'name', 'Универзитет у ŠŸŃ€ŠøŃˆŃ‚ŠøŠ½Šø са привременим ŃŠµŠ“ŠøŃˆŃ‚ŠµŠ¼ у Косовској ŠœŠøŃ‚Ń€Š¾Š²ŠøŃ†Šø'),
(138102, 109223, 'pt', 'name', 'Câmara Municipal de Guimarães'),
(138103, 109224, 'en', 'name', 'Anand Agricultural University'),
(138104, 109225, 'en', 'name', 'NATO Cooperative Cyber Defence Centre of Excellence'),
(138105, 109225, 'et', 'name', 'Küberkaitsekoostöö Keskus'),
(138106, 109226, 'en', 'name', 'Fujian Medical University'),
(138107, 109226, 'zh', 'name', 'ē¦å»ŗåŒ»ē§‘å¤§å­¦'),
(138108, 109227, 'en', 'name', 'Razi Hospital'),
(138109, 109227, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† رازی'),
(138110, 109228, 'en', 'name', 'THE Nippon Agricultural Research Institute'),
(138111, 109228, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č¾²ę„­ē ”ē©¶ę‰€'),
(138112, 109229, 'en', 'name', 'Matsusaka City Hospital'),
(138113, 109229, 'ja', 'name', 'ę¾é˜Ŗåø‚ę°‘ē—…é™¢'),
(138114, 109230, 'en', 'name', 'Niigata Prefectural Fisheries and Marine Research Institute'),
(138115, 109230, 'ja', 'name', 'ę–°ę½ŸēœŒę°“ē”£ęµ·ę“‹ē ”ē©¶ę‰€'),
(138116, 109231, 'en', 'name', 'Federation of National Public Service Personnel Mutual Aid Associations'),
(138117, 109231, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼š'),
(138118, 109232, 'pt', 'name', 'Goethe Institut Portugal'),
(138119, 109233, 'en', 'name', 'Iwate Prefectural Isawa Hospital'),
(138120, 109233, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹čƒ†ę²¢ē—…é™¢'),
(138121, 109234, 'en', 'name', 'Northeast Agricultural University'),
(138122, 109234, 'zh', 'name', 'äøœåŒ—å†œäøšå¤§å­¦'),
(138123, 109235, 'de', 'name', 'Ɩsterreichisches Institut für Wirtschaftsforschung'),
(138124, 109235, 'en', 'name', 'Austrian Institute of Economic Research'),
(138125, 109236, 'en', 'name', 'ms consultants, inc.'),
(138126, 109237, 'en', 'name', 'Ludovit Stur Institute of Linguistics of the Slovak Academy of Sciences'),
(138127, 109237, 'sk', 'name', 'Jazykovedný ústav Ľudovíta Štúra SlovenskÔ akadémia vied'),
(138128, 109238, 'no_lang_code', 'name', 'Ambry Genetics (United States)'),
(138129, 109239, 'en', 'name', 'Lorestan University'),
(138130, 109240, 'fr', 'name', 'Marine nationale'),
(138131, 109241, 'en', 'name', 'Endicott College'),
(138132, 109242, 'en', 'name', 'GIET University'),
(138133, 109242, 'or', 'name', 'ą¬—ą¬¾ą¬Øą­ą¬§ą­€ ą¬Æą¬¾ą¬Øą­ą¬¤ą­ą¬°ą¬æą¬• ଓ ą¬Ŗą­ą¬°ą­Œą¬¦ą­ą­Ÿą­‹ą¬—ą¬æą¬• ą¬¬ą¬æą¬¶ą­ą­±ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(138134, 109243, 'en', 'name', 'Fair Math, Fair Math (United States), Fair Math, Inc'),
(138135, 109244, 'en', 'name', 'Lawson Health Research Institute'),
(138136, 109245, 'en', 'name', 'Iuliu Hațieganu University of Medicine and Pharmacy'),
(138137, 109245, 'hu', 'name', 'Iuliu Hațieganu Orvosi Ć©s GyógyszerĆ©szeti Egyetem'),
(138138, 109245, 'ro', 'name', 'Universitatea de Medicină și Farmacie Iuliu Hațieganu'),
(138139, 109246, 'no_lang_code', 'name', 'Headland Archaeology (UK) Limited (United Kingdom)'),
(138140, 109247, 'id', 'name', 'Universitas Islam Negeri Imam Bonjol Padang'),
(138141, 109248, 'en', 'name', 'Bishop''s University'),
(138142, 109248, 'fr', 'name', 'UniversitƩ Bishop'),
(138143, 109249, 'en', 'name', 'Hankuk University of Foreign Studies'),
(138144, 109249, 'ko', 'name', 'ķ•œźµ­ģ™øźµ­ģ–“ėŒ€ķ•™źµ'),
(138145, 109250, 'de', 'name', 'HTWG Hochschule Konstanz - Technik, Wirtschaft und Gestaltung'),
(138146, 109250, 'en', 'name', 'HTWG Konstanz - University of Applied Sciences'),
(138147, 109251, 'en', 'name', 'Luxembourg Centre for Systems Biomedicine'),
(138148, 109252, 'en', 'name', 'Batman University'),
(138149, 109252, 'tr', 'name', 'Batman Üniversitesi'),
(138150, 109253, 'en', 'name', 'Kyoto University of Foreign Studies'),
(138151, 109253, 'ja', 'name', 'äŗ¬éƒ½å¤–å›½čŖžå¤§å­¦'),
(138152, 109254, 'en', 'name', 'Irish Research Council'),
(138153, 109255, 'en', 'name', 'Government College University, Faisalabad'),
(138154, 109255, 'ur', 'name', 'جی سی ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(138155, 109256, 'es', 'name', 'National University of Tres de Febrero, Universidad Nacional de Tres de Febrero'),
(138156, 109257, 'en', 'name', 'University of Indianapolis'),
(138157, 109258, 'en', 'name', 'Institute of High Temperature Electrochemistry'),
(138158, 109258, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²Ń‹ŃŠ¾ŠŗŠ¾Ń‚ŠµŠ¼ŠæŠµŃ€Š°Ń‚ŃƒŃ€Š½Š¾Š¹ ŃŠ»ŠµŠŗŃ‚Ń€Š¾Ń…ŠøŠ¼ŠøŠø Š£Ń€Š°Š»ŃŒŃŠŗŠ¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Š ŠŠ'),
(138159, 109259, 'en', 'name', 'Tagawa Hospital'),
(138160, 109259, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē¦å²”ēœŒē¤¾ä¼šäæé™ŗåŒ»ē™‚å”ä¼šē¤¾ä¼šäæé™ŗē”°å·ē—…é™¢'),
(138161, 109260, 'en', 'name', 'Kazan Federal University'),
(138162, 109260, 'ru', 'name', 'Казанский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(138163, 109261, 'en', 'name', 'Oak Ridge Associated Universities'),
(138164, 109262, 'en', 'name', 'KOMAG Institute of Mining Technology'),
(138165, 109263, 'ca', 'name', 'Universitat de NĆ pols Frederic II'),
(138166, 109263, 'de', 'name', 'UniversitƤt Neapel Federico II'),
(138167, 109263, 'en', 'name', 'University of Naples Federico II'),
(138168, 109263, 'fr', 'name', 'UniversitƩ de Naples - FrƩdƩric-II'),
(138169, 109263, 'it', 'name', 'UniversitĆ  degli Studi di Napoli Federico II'),
(138170, 109264, 'bn', 'name', 'ą¦Ŗą§ą¦°ą¦¾ą¦‡ą¦®ą¦ą¦¶ą¦æą¦Æą¦¼ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(138171, 109264, 'en', 'name', 'Primeasia University'),
(138172, 109265, 'en', 'name', 'Morioka Yuai Hospital'),
(138173, 109265, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå‹ę„›ä¼šē››å²”å‹ę„›ē—…é™¢'),
(138174, 109266, 'en', 'name', 'Distance State University'),
(138175, 109266, 'es', 'name', 'Universidad Estatal a Distancia'),
(138176, 109267, 'en', 'name', 'Pepperdine University'),
(138177, 109268, 'es', 'name', 'Hospital Universitario San Ignacio'),
(138178, 109269, 'en', 'name', 'Japanese Society of Tribologists'),
(138179, 109269, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒˆćƒ©ć‚¤ćƒœćƒ­ć‚øćƒ¼å­¦ä¼š'),
(138180, 109270, 'en', 'name', 'Concord University College Fujian Normal University'),
(138181, 109270, 'zh', 'name', 'ē¦å»ŗåøˆčŒƒå¤§å­¦åå’Œå­¦é™¢'),
(138182, 109271, 'en', 'name', 'Shimane Institute Of Health Science'),
(138183, 109271, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ˜ćƒ«ć‚¹ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼å³¶ę ¹'),
(138184, 109272, 'en', 'name', 'Communal Institution of Higher Education «Dnipro Academy of Continuing Education» of Dnipropetrovsk Regional Council'),
(138185, 109272, 'uk', 'name', 'Комунальний заклаГ вищої освіти "Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń неперервної освіти" Š”Š½Ń–ŠæŃ€Š¾ŠæŠµŃ‚Ń€Š¾Š²ŃŃŒŠŗŠ¾Ń— обласної раГи'),
(138186, 109273, 'en', 'name', 'Inabe General Hospital'),
(138187, 109273, 'ja', 'name', 'JAäø‰é‡åŽšē”Ÿé€£äø‰é‡åŒ—åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼ć„ćŖć¹ē·åˆē—…é™¢'),
(138188, 109274, 'en', 'name', 'Saka General Hospital'),
(138189, 109274, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå®®åŸŽåŽšē”Ÿå”ä¼šå‚ē·åˆē—…é™¢'),
(138190, 109275, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ خالد'),
(138191, 109275, 'en', 'name', 'King Khalid University'),
(138192, 109276, 'en', 'name', 'University for Development Studies'),
(138193, 109277, 'en', 'name', 'İskenderun Technical University'),
(138194, 109277, 'tr', 'name', 'Iskenderun Teknik Üniversitesi'),
(138195, 109278, 'en', 'name', 'Changchun University of Technology'),
(138196, 109278, 'zh', 'name', 'é•æę˜„å·„äøšå¤§å­¦'),
(138197, 109279, 'en', 'name', 'Chiba Prefectural Environmental Research Center'),
(138198, 109279, 'ja', 'name', 'åƒč‘‰ēœŒē’°å¢ƒē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(138199, 109280, 'en', 'name', 'Yaizu City Hospital'),
(138200, 109280, 'ja', 'name', 'ē„¼ę“„åø‚ē«‹ē·åˆē—…é™¢'),
(138201, 109281, 'bn', 'name', 'ą¦šą¦Ÿą§ą¦Ÿą¦—ą§ą¦°ą¦¾ą¦® ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(138202, 109281, 'en', 'name', 'Chittagong University of Engineering & Technology'),
(138203, 109282, 'fr', 'name', 'UniversitƩ de Mostaganem'),
(138204, 109283, 'en', 'name', 'Claflin University'),
(138205, 109284, 'en', 'name', '"Dunarea de Jos" University of Galati'),
(138206, 109284, 'ro', 'name', 'Universitatea ā€žDunărea de Josā€ din Galați'),
(138207, 109285, 'bn', 'name', 'ą¦”ą§ą¦Æą¦¾ą¦«ą§‹ą¦”ą¦æą¦² ą¦†ą¦Øą§ą¦¤ą¦°ą§ą¦œą¦¾ą¦¤ą¦æą¦• ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(138208, 109285, 'en', 'name', 'Daffodil International University'),
(138209, 109286, 'en', 'name', 'The Nature Conservation Society of Japan'),
(138210, 109286, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č‡Ŗē„¶äæč­·å”ä¼š'),
(138211, 109287, 'en', 'name', 'Indian Institute of Management Tiruchirappalli'),
(138212, 109287, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¤ą¤æą¤°ą„ą¤šą„ą¤šą¤æą¤°ą¤¾ą¤Ŗą¤²ą„ą¤²ą„€'),
(138213, 109287, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®•ą®“ą®•ą®®ąÆ,ą®¤ą®æą®°ąÆą®šąÆą®šą®æą®°ą®¾ą®ŖąÆą®Ŗą®³ąÆą®³ą®æ'),
(138214, 109288, 'es', 'name', 'Universidad Unicervantes'),
(138215, 109289, 'en', 'name', 'Southern Leyte State University'),
(138216, 109290, 'en', 'name', 'The Japanese Society of Gastroenterology'),
(138217, 109290, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę¶ˆåŒ–å™Øē—…å­¦ä¼š'),
(138218, 109291, 'en', 'name', 'Poznań University of Economics and Business'),
(138219, 109291, 'pl', 'name', 'Uniwersytet Ekonomiczny w Poznaniu'),
(138220, 109292, 'fr', 'name', 'Polytech Lille'),
(138221, 109293, 'no_lang_code', 'name', 'Banco Bilbao Vizcaya Argentaria (Spain)'),
(138222, 109294, 'ar', 'name', 'مستؓفى Ų§Ł„Ł…Ł„Łƒ Ų­Ł…ŲÆ Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ'),
(138223, 109294, 'en', 'name', 'King Hamad University Hospital'),
(138224, 109295, 'en', 'name', 'Pontifical Catholic University of Puerto Rico'),
(138225, 109295, 'es', 'name', 'Pontificia Universidad Catolica de Puerto Rico'),
(138226, 109296, 'en', 'name', 'Bahrami Hospital'),
(138227, 109296, 'fa', 'name', 'ŲØŪŒŁ…Ų§Ų±Ų³ŲŖŲ§Ł† ŲØŁ‡Ų±Ų§Ł…ŪŒ'),
(138228, 109297, 'en', 'name', 'Children''s of Alabama'),
(138229, 109298, 'az', 'name', 'Azərbaycan Diplomatik Akademiyası'),
(138230, 109298, 'en', 'name', 'ADA University'),
(138231, 109299, 'cy', 'name', 'Prifysgol Abertawe'),
(138232, 109299, 'en', 'name', 'Swansea University'),
(138233, 109300, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²Ł‚Ų§Ų²ŁŠŁ‚'),
(138234, 109300, 'en', 'name', 'Zagazig University'),
(138235, 109301, 'en', 'name', 'Saitama Citizens Medical Center'),
(138236, 109301, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć•ć„ćŸć¾åø‚ę°‘åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(138237, 109302, 'en', 'name', 'Hayama Heart Center'),
(138238, 109302, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šč‘‰å±±ćƒćƒ¼ćƒˆć‚»ćƒ³ć‚æćƒ¼'),
(138239, 109303, 'en', 'name', 'Vidyasirimedhi Institute of Science and Technology'),
(138240, 109304, 'en', 'name', 'Gerrit Rietveld Academy'),
(138241, 109304, 'nl', 'name', 'Gerrit Rietveld Academie'),
(138242, 109305, 'en', 'name', 'National Academy of Chinese Theatre Arts'),
(138243, 109305, 'zh', 'name', 'äø­å›½ęˆę›²å­¦é™¢'),
(138244, 109306, 'en', 'name', 'Fukushima Prefectural Inland Water Fisheries Experimental Station'),
(138245, 109306, 'ja', 'name', 'ē¦å³¶ēœŒå†…ę°“é¢ę°“ē”£č©¦éØ“å “'),
(138246, 109307, 'en', 'name', 'Defense Research Center'),
(138247, 109307, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ‡ć‚£ćƒ•ć‚§ćƒ³ć‚¹ćƒŖć‚µćƒ¼ćƒć‚»ćƒ³ć‚æćƒ¼'),
(138248, 109308, 'no_lang_code', 'name', 'Kisii University'),
(138249, 109309, 'fr', 'name', 'Biomolécules : Conception, Isolement, Synthèse'),
(138250, 109310, 'en', 'name', 'Bhawanipur Anchalik College'),
(138251, 109311, 'en', 'name', 'Kumamoto Prefecture Forestry Research Guidance Place'),
(138252, 109311, 'ja', 'name', 'ē†Šęœ¬ēœŒęž—ę„­ē ”ē©¶ćƒ»ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(138253, 109312, 'en', 'name', 'Hunan Normal University'),
(138254, 109312, 'zh', 'name', 'ę¹–å—åøˆčŒƒå¤§å­¦'),
(138255, 109313, 'en', 'name', 'Artois University'),
(138256, 109313, 'fr', 'name', 'UniversitƩ d''Artois'),
(138257, 109314, 'en', 'name', 'Mindanao State University – General Santos'),
(138258, 109315, 'en', 'name', 'J A Kyosai Research Institute'),
(138259, 109315, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗJAå…±ęøˆē·åˆē ”ē©¶ę‰€'),
(138260, 109316, 'pt', 'name', 'Centro Tecnológico da Cortiça'),
(138261, 109317, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في دبي'),
(138262, 109317, 'en', 'name', 'American University in Dubai'),
(138263, 109317, 'fa', 'name', 'دانؓگاه Ų¢Ł…Ų±ŪŒŚ©Ų§ŪŒŪŒ دبی'),
(138264, 109318, 'en', 'name', 'Termez State University'),
(138265, 109318, 'uz', 'name', 'Termiz Davlat Universiteti'),
(138266, 109319, 'en', 'name', 'Miyagi Prefectural Institute of Agriculture and Horticulture'),
(138267, 109319, 'ja', 'name', 'å®®åŸŽēœŒč¾²ę„­ćƒ»åœ’čŠøē·åˆē ”ē©¶ę‰€'),
(138268, 109320, 'bg', 'name', 'ПловГивски ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(138269, 109320, 'en', 'name', 'Plovdiv University'),
(138270, 109321, 'no_lang_code', 'name', 'Altos Labs'),
(138271, 109322, 'pt', 'name', 'Corpo de Bombeiros Militar de Minas Gerais'),
(138272, 109323, 'de', 'name', 'UniversitƤt Konstanz'),
(138273, 109323, 'en', 'name', 'University of Konstanz'),
(138274, 109324, 'en', 'name', 'National Institute for Nuclear Physics, Perugia Unit'),
(138275, 109324, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Perugia'),
(138276, 109325, 'no_lang_code', 'name', 'Compuscript, Compuscript (Ireland), Compuscript Limited'),
(138277, 109326, 'en', 'name', 'Yıldız Technical University'),
(138278, 109326, 'tr', 'name', 'Yıldız Teknik Üniversitesi'),
(138279, 109327, 'en', 'name', 'Wekerle Business School'),
(138280, 109327, 'hu', 'name', 'Wekerle SĆ”ndor Üzleti Főiskola'),
(138281, 109328, 'pt', 'name', 'Fundação Rebikoff-Niggeler'),
(138282, 109329, 'en', 'name', 'Institute of Space Science - INFLPR Subsidiary'),
(138283, 109329, 'ro', 'name', 'Institutul de Stiinte Spatiale - Filiala INFLPR'),
(138284, 109330, 'en', 'name', 'Texas Christian University'),
(138285, 109330, 'es', 'name', 'Universidad Cristiana de Texas'),
(138286, 109331, 'pt', 'name', 'Centro de Estudos Jurídicos Celso Barroso Leite da Associação Nacional dos Procuradores e Advogados Públicos Federais'),
(138287, 109332, 'en', 'name', 'Okan University'),
(138288, 109332, 'tr', 'name', 'Okan Üniversitesi'),
(138289, 109333, 'en', 'name', 'Institute of Advanced Social Studies'),
(138290, 109333, 'es', 'name', 'Instituto de Estudios Sociales Avanzados'),
(138291, 109334, 'en', 'name', 'Life Sports Foundation'),
(138292, 109334, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ©ć‚¤ćƒ•ć‚¹ćƒćƒ¼ćƒ„č²”å›£'),
(138293, 109335, 'en', 'name', 'Sacred Heart Seminary and School of Theology'),
(138294, 109336, 'en', 'name', 'SĆ£o Paulo School of Economics'),
(138295, 109336, 'pt', 'name', 'Escola de Economia de SĆ£o Paulo'),
(138296, 109337, 'en', 'name', 'Mercyhurst University'),
(138297, 109338, 'en', 'name', 'Yamanashi Prefectural Government'),
(138298, 109338, 'ja', 'name', '山梨県庁'),
(138299, 109339, 'en', 'name', 'Wilkes University'),
(138300, 109340, 'en', 'name', 'Institute of Natural Sciences and Applied Technology'),
(138301, 109341, 'tr', 'name', 'Ozanteks Tekstil San. Ve TİC. A.Ş.'),
(138302, 109342, 'pt', 'name', 'Hospital Dr. NƩlio MendonƧa'),
(138303, 109343, 'en', 'name', 'Mangosuthu University of Technology'),
(138304, 109344, 'en', 'name', 'Catholic University Los Angeles of Chimbote'),
(138305, 109344, 'es', 'name', 'Universidad Católica Los Ángeles de Chimbote'),
(138306, 109345, 'es', 'name', 'Universidad Autónoma de Guerrero'),
(138307, 109346, 'ca', 'name', 'Consorci Institut D''Investigacions Biomediques August Pi I Sunyer'),
(138308, 109347, 'en', 'name', 'Villahermosa Institute of Technology'),
(138309, 109347, 'es', 'name', 'Instituto Tecnológico de Villahermosa'),
(138310, 109348, 'en', 'name', 'Huntington University'),
(138311, 109349, 'en', 'name', 'Ağrı İbrahim ƇeƧen University'),
(138312, 109349, 'tr', 'name', 'Ağrı İbrahim ƇeƧen Üniversitesi'),
(138313, 109350, 'en', 'name', 'Nishinomiya Watanabe Cardiovascular Center'),
(138314, 109350, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęø”é‚Šé«˜čØ˜åæµä¼šč„æå®®ęø”č¾ŗåæƒč‡“ćƒ»č”€ē®”ć‚»ćƒ³ć‚æćƒ¼'),
(138315, 109351, 'en', 'name', 'U.S. Air Force Research Laboratory Sensors Directorate'),
(138316, 109352, 'en', 'name', 'Craniomaxillofacial Research Center'),
(138317, 109352, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ جراحی Ł‡Ų§ŪŒ فک و صورت'),
(138318, 109353, 'en', 'name', 'University of La Rioja'),
(138319, 109353, 'es', 'name', 'Universidad de La Rioja'),
(138320, 109353, 'eu', 'name', 'Errioxako Unibertsitatea'),
(138321, 109353, 'gl', 'name', 'Universidade da Rioxa'),
(138322, 109354, 'en', 'name', 'Werfen OEM Technology Center'),
(138323, 109355, 'en', 'name', 'Department of Earth Sciences'),
(138324, 109356, 'de', 'name', 'Leibniz-Rechenzentrum'),
(138325, 109356, 'en', 'name', 'Leibniz Supercomputing Centre'),
(138326, 109357, 'en', 'name', 'Shanghai University of Engineering Science'),
(138327, 109357, 'zh', 'name', 'äøŠęµ·å·„ēØ‹ęŠ€ęœÆå¤§å­¦'),
(138328, 109358, 'en', 'name', 'Marine Institute'),
(138329, 109359, 'en', 'name', 'Wenshan University'),
(138330, 109360, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأنبار'),
(138331, 109360, 'en', 'name', 'University of Anbar'),
(138332, 109361, 'en', 'name', 'Goucher College'),
(138333, 109362, 'en', 'name', 'Hiroshima City Industrial Technology Center'),
(138334, 109362, 'ja', 'name', 'åŗƒå³¶åø‚å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(138335, 109363, 'en', 'name', 'University of Mary'),
(138336, 109364, 'en', 'name', 'Industrial Technology Center of Wakayama Prefecture'),
(138337, 109364, 'ja', 'name', 'å’Œę­Œå±±ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(138338, 109365, 'en', 'name', 'Ube Frontier College'),
(138339, 109365, 'ja', 'name', 'å®‡éƒØćƒ•ćƒ­ćƒ³ćƒ†ć‚£ć‚¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(138340, 109366, 'no_lang_code', 'name', 'T4D GmbH, T4D GmbH (Switzerland), T4D.ch'),
(138341, 109367, 'en', 'name', 'Huzhou College'),
(138342, 109367, 'zh', 'name', 'ę¹–å·žå­¦é™¢'),
(138343, 109368, 'en', 'name', 'University of Petroșani'),
(138344, 109368, 'ro', 'name', 'Universitatea Din Petrosani'),
(138345, 109369, 'en', 'name', 'King Mongkut''s Institute of Technology Ladkrabang'),
(138346, 109369, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ą¹€ąøˆą¹‰ąø²ąø„ąøøąø“ąø—ąø«ąø²ąø£ąø„ąø²ąø”ąøąø£ąø°ąøšąø±ąø‡'),
(138347, 109370, 'en', 'name', 'University of Southeastern Philippines'),
(138348, 109371, 'en', 'name', 'University of Turkish Aeronautical Association'),
(138349, 109371, 'tr', 'name', 'Türk Hava Kurumu Üniversitesi'),
(138350, 109372, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ بوضياف Ł…Ų³ŁŠŁ„Ų©'),
(138351, 109372, 'fr', 'name', 'UniversitƩ de M''Sila'),
(138352, 109373, 'fr', 'name', 'Fondation Maison franco-japonaise'),
(138353, 109373, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ä»ä¼šé¤Ø'),
(138354, 109374, 'es', 'name', 'Centro Científico Tecnológico - Mendoza'),
(138355, 109375, 'en', 'name', 'John Abbott College'),
(138356, 109375, 'fr', 'name', 'CollĆØge john abbott'),
(138357, 109376, 'en', 'name', 'National Protective Security Authority'),
(138358, 109377, 'en', 'name', 'Iwate Prefectural Iwai Hospital'),
(138359, 109377, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹ē£äŗ•ē—…é™¢'),
(138360, 109378, 'en', 'name', 'Slovak University of Technology in Bratislava'),
(138361, 109378, 'sk', 'name', 'SlovenskĆ” technickĆ” univerzita v Bratislave'),
(138362, 109379, 'en', 'name', 'Rijnstate Hospital'),
(138363, 109380, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„Ų­Ų³ŁŠŁ† للسرطان'),
(138364, 109380, 'en', 'name', 'King Hussein Cancer Center'),
(138365, 109381, 'es', 'name', 'Universidad Católica de El Salvador'),
(138366, 109382, 'en', 'name', 'Naturalis Biodiversity Center'),
(138367, 109382, 'nl', 'name', 'Nederlands Centrum voor Biodiversiteit Naturalis'),
(138368, 109383, 'en', 'name', 'University of Dschang'),
(138369, 109383, 'fr', 'name', 'UniversitƩ de Dschang'),
(138370, 109384, 'en', 'name', 'Kumamoto Regional Medical Center'),
(138371, 109384, 'ja', 'name', 'ē†Šęœ¬åø‚åŒ»åø«ä¼šē†Šęœ¬åœ°åŸŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(138372, 109385, 'en', 'name', 'Jawaharlal Nehru University'),
(138373, 109385, 'hi', 'name', 'जवाहरलाल ą¤Øą„‡ą¤¹ą¤°ą„‚ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(138374, 109385, 'kn', 'name', 'ą²œą²µą²¾ą²¹ą²°ą²²ą²¾ą²²ą³ ನೆಹರು ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²Øą²æą²²ą²Æ'),
(138375, 109385, 'ml', 'name', 'ą“œą“µą“¹ąµ¼ą“²ą“¾ąµ½ ą“Øąµ†ą“¹ąµą“°ąµ ą“øąµ¼ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(138376, 109385, 'pa', 'name', 'ਜਵਾਹਿਰ ਲਾਲ ਨਹਿਰੂ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€, ਨਵੀਂ ਦਿੱਲੀ'),
(138377, 109385, 'ta', 'name', 'ą®œą®µą®•ą®°ąÆą®²ą®¾ą®²ąÆ நேரு ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(138378, 109385, 'te', 'name', 'ą°œą°µą°¹ą°°ą± ą°²ą°¾ą°²ą± ą°Øą±†ą°¹ą±ą°°ą±‚ ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(138379, 109386, 'en', 'name', 'Saga Fruit Research Laboratory'),
(138380, 109386, 'ja', 'name', 'ä½č³€ēœŒęžœęØ¹č©¦éØ“å “'),
(138381, 109387, 'de', 'name', 'Hochschule Esslingen'),
(138382, 109387, 'en', 'name', 'Esslingen University of Applied Sciences'),
(138383, 109388, 'pt', 'name', 'Centro de Estudo de BioƩtica'),
(138384, 109389, 'af', 'name', 'Kaapse Skiereiland Universiteit van Tegnologie'),
(138385, 109389, 'en', 'name', 'Cape Peninsula University of Technology'),
(138386, 109390, 'en', 'name', 'The Japan Institute of Metals and Materials'),
(138387, 109390, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é‡‘å±žå­¦ä¼š'),
(138388, 109391, 'en', 'name', 'Eastern Virginia Medical School'),
(138389, 109392, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ų±Ų§ŲŗŁŠŲØ'),
(138390, 109392, 'en', 'name', 'University Elmergib'),
(138391, 109393, 'en', 'name', 'Kagoshima Prefectural Fisheries Technology and Development Center'),
(138392, 109393, 'ja', 'name', 'é¹æå…å³¶ēœŒę°“ē”£ęŠ€č”“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(138393, 109394, 'en', 'name', 'Sri Ramakrishna Engineering College'),
(138394, 109395, 'es', 'name', 'Instituto Tecnológico de Agua Prieta'),
(138395, 109396, 'es', 'name', 'Universidad Tecnológica Empresarial de Guayaquil'),
(138396, 109397, 'en', 'name', 'Vlerick Business School'),
(138397, 109398, 'de', 'name', 'Hochschule Zittau/Gƶrlitz'),
(138398, 109398, 'en', 'name', 'Zittau/Gƶrlitz University of Applied Sciences'),
(138399, 109399, 'fr', 'name', 'Laboratoire Ville MobilitƩ Transport'),
(138400, 109400, 'en', 'name', 'Kutztown University'),
(138401, 109401, 'en', 'name', 'Royal Ottawa Mental Health Centre'),
(138402, 109402, 'en', 'name', 'Central University of Rajasthan'),
(138403, 109402, 'hi', 'name', 'ą¤°ą¤¾ą¤œą¤øą„ą¤„ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(138404, 109403, 'en', 'name', 'Tottori Prefectural Government'),
(138405, 109403, 'ja', 'name', 'é³„å–ēœŒåŗ'),
(138406, 109404, 'en', 'name', 'Nozaki Hospital'),
(138407, 109404, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¼˜ę½¤ä¼šé‡Žå“Žē—…é™¢'),
(138408, 109405, 'en', 'name', 'National School of Political Science and Public Administration'),
(138409, 109405, 'ro', 'name', 'Şcoala Naţională de Studii Politice şi Administrative din Bucureşti'),
(138410, 109406, 'fr', 'name', 'HƓpital du Valais'),
(138411, 109407, 'en', 'name', 'Centre for mathematical morphology - CMM, Mines Paris, PSL University, Centre for mathematical morphology (CMM)'),
(138412, 109407, 'fr', 'name', 'Centre de Morphologie MathƩmatique - CMM, Mines Paris, UniversitƩ PSL, Centre de Morphologie MathƩmatique (CMM)'),
(138413, 109408, 'hi', 'name', 'ą¤šą¤æą¤¤ą¤•ą¤¾ą¤°ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(138414, 109408, 'no_lang_code', 'name', 'Chitkara University'),
(138415, 109409, 'es', 'name', 'Instituto Tecnológico MetalmecÔnico, Mueble, Madera, Embalaje y Afines'),
(138416, 109410, 'en', 'name', 'Indian Society of Agricultural Engineers'),
(138417, 109410, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ अभियंता ą¤øą„‹ą¤øą¤¾ą¤Æą¤Ÿą„€'),
(138418, 109411, 'en', 'name', 'Sanno Hospital'),
(138419, 109411, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗēæ ę˜Žä¼šå±±ēŽ‹ē—…é™¢'),
(138420, 109412, 'en', 'name', 'Murang''a University of Technology'),
(138421, 109413, 'en', 'name', 'Centre for Agricultural Research'),
(138422, 109413, 'hu', 'name', 'AgrÔrtudomÔnyi Kutatóközpont'),
(138423, 109414, 'en', 'name', 'Koriyama Women''s College'),
(138424, 109414, 'ja', 'name', '郔山儳子大学短期大学部'),
(138425, 109415, 'en', 'name', 'Jose Matias Delgado University'),
(138426, 109415, 'es', 'name', 'Universidad Dr. JosƩ Matƭas Delgado'),
(138427, 109416, 'en', 'name', 'Japan Testing Center for Construction Materials'),
(138428, 109416, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗęč©¦éØ“ć‚»ćƒ³ć‚æćƒ¼'),
(138429, 109417, 'en', 'name', 'Chidoribashi Hospital'),
(138430, 109417, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē¦å²”åŒ»ē™‚å›£åƒé³„ę©‹ē—…é™¢'),
(138431, 109418, 'en', 'name', 'Hanshin Expressway Research Institute for Advanced Technology'),
(138432, 109418, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé˜Ŗē„žé«˜é€Ÿå…ˆé€²ęŠ€č”“ē ”ē©¶ę‰€'),
(138433, 109419, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ© ŲŗŲ²Ų©'),
(138434, 109419, 'en', 'name', 'Islamic University of Gaza'),
(138435, 109420, 'en', 'name', 'NatCen Social Research'),
(138436, 109421, 'en', 'name', 'Civil Aeronautics Authority'),
(138437, 109422, 'en', 'name', 'Wheaton College - Illinois'),
(138438, 109423, 'de', 'name', 'Virtuelle Hochschule Bayern'),
(138439, 109424, 'en', 'name', 'T. G. Masaryk Water Research Institute'),
(138440, 109425, 'en', 'name', 'Matsuoka Research Institute for Science'),
(138441, 109425, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę¾å²”ē§‘å­¦ē ”ē©¶ę‰€'),
(138442, 109426, 'en', 'name', 'Pontifical University of John Paul II in Kraków'),
(138443, 109426, 'pl', 'name', 'Uniwersytet Papieski Jana Pawła II w Krakowie'),
(138444, 109427, 'en', 'name', 'Minneapolis College'),
(138445, 109428, 'en', 'name', 'U.S. Air Force Research Laboratory Materials and Manufacturing Directorate'),
(138446, 109429, 'en', 'name', 'The Korea Academia-Industrial Cooperation Society'),
(138447, 109429, 'ko', 'name', 'ķ•œźµ­ģ‚°ķ•™źø°ģˆ ķ•™ķšŒ'),
(138448, 109430, 'en', 'name', 'Institute of Experimental Pharmacology and Toxicology of the Slovak Academy of Sciences'),
(138449, 109430, 'sk', 'name', 'Ústav experimentÔlnej farmakológie a toxikológie SlovenskÔ akadémia vied'),
(138450, 109431, 'en', 'name', 'University of Pitesti'),
(138451, 109431, 'ro', 'name', 'Universitatea din Pitești'),
(138452, 109432, 'en', 'name', 'Minamiosaka Hospital'),
(138453, 109432, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗę™Æå²³ä¼šå—å¤§é˜Ŗē—…é™¢'),
(138454, 109433, 'en', 'name', 'University of Guanajuato'),
(138455, 109433, 'es', 'name', 'Universidad de Guanajuato'),
(138456, 109434, 'en', 'name', 'Joint Global Change Research Institute'),
(138457, 109435, 'en', 'name', 'Hyogo Prefectural Technology Center for Agriculture, Forestry and Fisheries'),
(138458, 109435, 'ja', 'name', 'å…µåŗ«ēœŒē«‹č¾²ęž—ę°“ē”£ęŠ€č”“ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(138459, 109436, 'id', 'name', 'Politeknik Kesehatan Kementerian Kesehatan Jakarta II'),
(138460, 109437, 'en', 'name', 'University of Agricultural and Horticultural Sciences'),
(138461, 109437, 'kn', 'name', 'ą²Æą³‚ą²Øą²æą²µą²°ą³ą²øą²æą²Ÿą²æ ą²†ą²«ą³ ą²…ą²—ą³ą²°ą²æą²•ą²²ą³ą²šą²°ą²²ą³ ą²…ą²‚ą²”ą³ ą²¹ą²¾ą²°ą³ą²Ÿą²æą²•ą²²ą³ą²šą²°ą³ ą²øą³ˆą²Øą³ą²øą²øą³ - ą²øą³€ą²”ą³ ą²Æą³‚ą²Øą²æą²Ÿą³'),
(138462, 109438, 'id', 'name', 'Universitas Kanjuruhan'),
(138463, 109439, 'en', 'name', 'TIB Open Publishing'),
(138464, 109440, 'en', 'name', 'South Ethiopia Regional State Health Bureau'),
(138465, 109441, 'en', 'name', 'Goce Delcev University'),
(138466, 109441, 'mk', 'name', 'Универзитет Гоце Делчев Штип'),
(138467, 109442, 'da', 'name', 'University College Syddanmark'),
(138468, 109442, 'en', 'name', 'University College South Denmark'),
(138469, 109443, 'en', 'name', 'Royal Meteorological Institute of Belgium'),
(138470, 109443, 'fr', 'name', 'L''Institut Royal MƩtƩorologique de Belgique'),
(138471, 109443, 'nl', 'name', 'Koninklijk Meteorologisch Instituut van Belgiƫ'),
(138472, 109444, 'en', 'name', 'Beijing International Studies University'),
(138473, 109444, 'zh', 'name', 'åŒ—äŗ¬ē¬¬äŗŒå¤–å›½čÆ­å­¦é™¢'),
(138474, 109445, 'en', 'name', 'Union College'),
(138475, 109446, 'en', 'name', 'Liceo de Cagayan University'),
(138476, 109447, 'en', 'name', 'Vilnius University Hospital Santariskiu Klinikos'),
(138477, 109447, 'lt', 'name', 'Vilniaus universiteto ligoninės SantariÅ”kių klinikos'),
(138478, 109448, 'en', 'name', 'Tashkent University of Information Technology'),
(138479, 109448, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Университет Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Ń‹Ń… Технологий'),
(138480, 109449, 'en', 'name', 'Kumamoto Kinoh Hospital'),
(138481, 109449, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£åÆæé‡ä¼šē†Šęœ¬ę©Ÿčƒ½ē—…é™¢'),
(138482, 109450, 'en', 'name', 'Bilborough Sixth Form College'),
(138483, 109451, 'en', 'name', 'Biology as a Solution, Biology as a Solution (France)'),
(138484, 109452, 'en', 'name', 'The Japanese Society for Artificial Intelligence'),
(138485, 109452, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäŗŗå·„ēŸ„čƒ½å­¦ä¼š'),
(138486, 109453, 'en', 'name', 'Osaka Management Association'),
(138487, 109453, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗčƒ½ēŽ‡å”ä¼š'),
(138488, 109454, 'en', 'name', 'Arden University'),
(138489, 109455, 'en', 'name', 'Policy Research Institute for Land Infrastructure and Transport'),
(138490, 109455, 'ja', 'name', 'å›½åœŸäŗ¤é€šēœå›½åœŸäŗ¤é€šę”æē­–ē ”ē©¶ę‰€'),
(138491, 109456, 'en', 'name', 'Institute of Infrastructure Technology Research and Management'),
(138492, 109457, 'en', 'name', 'Ontario College of Art and Design'),
(138493, 109457, 'fr', 'name', 'UniversitĆ© de l''Ɖcole d''art et de design de l''ontario'),
(138494, 109458, 'en', 'name', 'Institute for Research in Social Communication of the Slovak Academy of Sciences'),
(138495, 109458, 'sk', 'name', 'Ústav výskumu sociÔlnej komunikÔcie SlovenskÔ akadémia vied'),
(138496, 109459, 'en', 'name', 'Aidu Chuo Hospital'),
(138497, 109459, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęø©ēŸ„ä¼šä¼šę“„äø­å¤®ē—…é™¢'),
(138498, 109460, 'en', 'name', 'LINKS Foundation'),
(138499, 109460, 'it', 'name', 'Fondazione LINKS'),
(138500, 109461, 'en', 'name', 'Gihu Prefecture Research Institute for Human Life Technology'),
(138501, 109461, 'ja', 'name', 'å²é˜œēœŒē”Ÿę“»ęŠ€č”“ē ”ē©¶ę‰€'),
(138502, 109462, 'en', 'name', 'Nanpuh Hospital'),
(138503, 109462, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé¹æå…å³¶å…±ęøˆä¼šå—é¢Øē—…é™¢'),
(138504, 109463, 'no_lang_code', 'name', 'Uka Tarsadia University'),
(138505, 109464, 'am', 'name', 'įˆįˆØįˆ›į‹« į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(138506, 109464, 'no_lang_code', 'name', 'Haramaya University'),
(138507, 109465, 'en', 'name', 'National University of Colombia'),
(138508, 109465, 'es', 'name', 'Universidad Nacional de Colombia'),
(138509, 109466, 'en', 'name', 'Tottori Prefectural Police'),
(138510, 109466, 'ja', 'name', 'é³„å–ēœŒč­¦åÆŸ'),
(138511, 109467, 'fr', 'name', 'Mines Saint-Ɖtienne, Ɖcole Nationale SupĆ©rieure des Mines de Saint-Ɖtienne'),
(138512, 109468, 'en', 'name', 'U.S. Air Force Research Laboratory Space Vehicles Directorate'),
(138513, 109469, 'en', 'name', 'St. Aloysius (Deemed to Be University)'),
(138514, 109470, 'en', 'name', 'Oberlin College'),
(138515, 109471, 'en', 'name', 'Ishikawa Prefectural Institute of Public Health and Environmental Science'),
(138516, 109471, 'ja', 'name', 'ēŸ³å·ēœŒäæå„ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(138517, 109472, 'en', 'name', 'Tai Solarin University of Education'),
(138518, 109473, 'en', 'name', 'Okayama University of Science'),
(138519, 109473, 'ja', 'name', '岔山理科大学'),
(138520, 109474, 'pt', 'name', 'CĆ¢mara Municipal de Coimbra'),
(138521, 109475, 'de', 'name', 'Institut für Höhere Studien - Institute for Advanced Studies (IHS)'),
(138522, 109476, 'en', 'name', 'Karnatak University'),
(138523, 109476, 'kn', 'name', 'ą²•ą²°ą³ą²Øą²¾ą²Ÿą²• ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(138524, 109477, 'en', 'name', 'Kohka Public Hospital'),
(138525, 109477, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå…¬ē«‹ē”²č³€ē—…é™¢'),
(138526, 109478, 'en', 'name', 'Huangshan University'),
(138527, 109478, 'zh', 'name', '黄山学院'),
(138528, 109479, 'de', 'name', 'Deutsche Rentenversicherung Bund'),
(138529, 109480, 'en', 'name', 'Electron Science Institute'),
(138530, 109480, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé›»å­ē§‘å­¦ē ”ē©¶ę‰€'),
(138531, 109481, 'en', 'name', 'Kyoto Prefectural International Center'),
(138532, 109481, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½åŗœå›½éš›ć‚»ćƒ³ć‚æćƒ¼'),
(138533, 109482, 'en', 'name', 'Shiv Nadar University'),
(138534, 109483, 'en', 'name', 'Japan Association on Odor Environment'),
(138535, 109483, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗć«ćŠć„ćƒ»ć‹ćŠć‚Šē’°å¢ƒå”ä¼š'),
(138536, 109484, 'en', 'name', 'Hyogo Environmental Advancement Association'),
(138537, 109484, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć²ć‚‡ć†ć”ē’°å¢ƒå‰µé€ å”ä¼š'),
(138538, 109485, 'en', 'name', 'Ion Creangă Pedagogical State University'),
(138539, 109485, 'ro', 'name', 'Universitatea Pedagogică de Stat Ion Creangă din Chișinău'),
(138540, 109485, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ пеГагогический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Иона ŠšŃ€ŃŠ½Š³Ń'),
(138541, 109486, 'en', 'name', 'Guangzhou University'),
(138542, 109486, 'zh', 'name', 'å¹æå·žå¤§å­¦'),
(138543, 109487, 'en', 'name', 'North Island College'),
(138544, 109488, 'en', 'name', 'Istanbul Rumeli University'),
(138545, 109488, 'tr', 'name', 'TC İstanbul Rumeli Üniversitesi'),
(138546, 109489, 'en', 'name', 'Whitman College'),
(138547, 109490, 'en', 'name', 'Wakayama Prefectural Agricultural Experiment Station'),
(138548, 109490, 'ja', 'name', 'å’Œę­Œå±±ēœŒč¾²ę„­č©¦éØ“å “'),
(138549, 109491, 'en', 'name', 'International AIDS Vaccine Initiative'),
(138550, 109492, 'pt', 'name', 'Centro UniversitƔrio Integrado'),
(138551, 109493, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁƒŁˆŁ…Ų§Ų± Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(138552, 109493, 'en', 'name', 'Komar University of Science and Technology'),
(138553, 109494, 'en', 'name', 'Niigata Prefectural Forest Experiment Station'),
(138554, 109494, 'ja', 'name', 'ę–°ę½ŸēœŒę£®ęž—ē ”ē©¶ę‰€'),
(138555, 109495, 'en', 'name', 'Akita Prefectural University'),
(138556, 109495, 'ja', 'name', 'ē§‹ē”°ēœŒē«‹å¤§å­¦'),
(138557, 109496, 'en', 'name', 'University of Malaysia, Sarawak'),
(138558, 109496, 'ms', 'name', 'Universiti Malaysia Sarawak'),
(138559, 109497, 'id', 'name', 'Universitas Pembangunan Nasional Veteran Jakarta'),
(138560, 109498, 'en', 'name', 'Institute for Forecasting of the Slovak Academy of Sciences'),
(138561, 109498, 'sk', 'name', 'Prognostický ústav SlovenskÔ akadémia vied'),
(138562, 109499, 'en', 'name', 'Lahore University of Management Sciences'),
(138563, 109499, 'ur', 'name', 'Ł„Ų§ŪŁˆŲ± ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŁ†Ų¬Ł…Ł†Ł¹ سائنسز'),
(138564, 109500, 'en', 'name', 'Hokusho College'),
(138565, 109500, 'ja', 'name', 'åŒ—ēæ”å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(138566, 109501, 'id', 'name', 'Universitas Islam Makassar'),
(138567, 109502, 'en', 'name', 'University of Karachi'),
(138568, 109502, 'ur', 'name', 'جامعہ Ś©Ų±Ų§Ś†ŪŒ'),
(138569, 109503, 'cs', 'name', 'Ústav biologie obratlovcÅÆ AV ČR, Ústav biologie obratlovcÅÆ AV ČR, v. v. i., Ústav biologie obratlovcÅÆ AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(138570, 109503, 'en', 'name', 'Czech Academy of Sciences, Institute of Vertebrate Biology'),
(138571, 109504, 'de', 'name', 'St. Anna Kinderkrebsforschung GmbH'),
(138572, 109504, 'en', 'name', 'St. Anna Children''s Cancer Research Institute'),
(138573, 109505, 'pt', 'name', 'Comando das ForƧas Terrestres'),
(138574, 109506, 'en', 'name', 'Shin-Oyama City Hospital'),
(138575, 109506, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę–°å°å±±åø‚ę°‘ē—…é™¢'),
(138576, 109507, 'en', 'name', 'Fukuoka Nursing College'),
(138577, 109507, 'ja', 'name', 'ē¦å²”ēœ‹č­·å¤§å­¦'),
(138578, 109508, 'en', 'name', 'MiCAN Technologies Inc., MiCAN Technologies Inc. (Japan)'),
(138579, 109508, 'ja', 'name', 'ćƒžć‚¤ć‚­ćƒ£ćƒ³ćƒ»ćƒ†ć‚ÆćƒŽćƒ­ć‚øćƒ¼ć‚ŗę Ŗå¼ä¼šē¤¾'),
(138580, 109509, 'en', 'name', 'Fasa University of Medical Sciences'),
(138581, 109510, 'en', 'name', 'Nara Institute of Science and Technology'),
(138582, 109510, 'ja', 'name', 'å„ˆč‰Æå…ˆē«Æē§‘å­¦ęŠ€č”“å¤§å­¦é™¢å¤§å­¦'),
(138583, 109511, 'af', 'name', 'Universiteit Stellenbosch'),
(138584, 109511, 'en', 'name', 'Stellenbosch University'),
(138585, 109512, 'en', 'name', 'Minhaj University Lahore'),
(138586, 109512, 'ur', 'name', 'منہاج ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(138587, 109513, 'da', 'name', 'KĆøbenhavns Universitetshospital'),
(138588, 109513, 'en', 'name', 'Copenhagen University Hospital'),
(138589, 109514, 'en', 'name', 'Rissho Kosei-kai Hospital'),
(138590, 109514, 'ja', 'name', 'ē«‹ę­£ä½¼ęˆä¼šé™„å±žä½¼ęˆē—…é™¢'),
(138591, 109515, 'en', 'name', 'Krida Wacana Christian University'),
(138592, 109515, 'id', 'name', 'Universitas Kristen Krida Wacana'),
(138593, 109516, 'en', 'name', 'Fukui Science Education Academy'),
(138594, 109516, 'ja', 'name', 'NPOę³•äŗŗćµćć„ē§‘å­¦å­¦åœ’'),
(138595, 109517, 'en', 'name', 'Kingston Health Sciences Centre'),
(138596, 109518, 'en', 'name', 'West College Scotland'),
(138597, 109519, 'en', 'name', 'Earth University'),
(138598, 109519, 'es', 'name', 'Universidad EARTH'),
(138599, 109520, 'en', 'name', 'Danish Cardiovascular Academy'),
(138600, 109521, 'en', 'name', 'Fukui Health Sciences University'),
(138601, 109521, 'ja', 'name', 'ē¦äŗ•åŒ»ē™‚å¤§å­¦'),
(138602, 109522, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المهرة'),
(138603, 109522, 'en', 'name', 'Mahrah University'),
(138604, 109523, 'en', 'name', 'Mila - Quebec Artificial Intelligence Institute'),
(138605, 109523, 'fr', 'name', 'Mila - Institut quĆ©bĆ©cois d’intelligence artificielle'),
(138606, 109524, 'en', 'name', 'Gifu Junior College of Health Science'),
(138607, 109524, 'ja', 'name', 'å²é˜œäæå„å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(138608, 109525, 'en', 'name', 'Irish Research eLibrary'),
(138609, 109526, 'en', 'name', 'Engaru-Kosei General Hospital'),
(138610, 109526, 'ja', 'name', 'JAåŒ—ęµ·é“åŽšē”Ÿé€£é č»½åŽšē”Ÿē—…é™¢'),
(138611, 109527, 'en', 'name', 'Institute of Neuroimmunology of the Slovak Academy of Sciences'),
(138612, 109527, 'sk', 'name', 'Neuroimunologického ústavu SlovenskÔ akadémia vied'),
(138613, 109528, 'en', 'name', 'Kyoto Nursing Association'),
(138614, 109528, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½åŗœēœ‹č­·å”ä¼š'),
(138615, 109529, 'es', 'name', 'Universidad La Salle'),
(138616, 109530, 'en', 'name', 'Gifu Prefectural Government'),
(138617, 109530, 'ja', 'name', '岐阜県庁'),
(138618, 109531, 'fr', 'name', 'UniversitƩ de ain TƩmouchent'),
(138619, 109532, 'id', 'name', 'Universitas Muhammadiyah Surabaya'),
(138620, 109533, 'en', 'name', 'Hirosaki University of Health and Welfare'),
(138621, 109533, 'ja', 'name', 'å¼˜å‰åŒ»ē™‚ē¦ē„‰å¤§å­¦'),
(138622, 109534, 'en', 'name', 'West Herts College'),
(138623, 109535, 'en', 'name', 'Osaka International College'),
(138624, 109535, 'ja', 'name', 'å¤§é˜Ŗå›½éš›å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(138625, 109536, 'en', 'name', 'RENA Technologies Austria GmbH, RENA Technologies Austria GmbH (Austria)'),
(138626, 109537, 'en', 'name', 'University of Mauritius'),
(138627, 109537, 'fr', 'name', 'UniversitƩ de Maurice'),
(138628, 109538, 'en', 'name', 'MSD (Thailand)'),
(138629, 109539, 'en', 'name', 'Texas Children''s Hospital'),
(138630, 109540, 'en', 'name', 'Hekima University College'),
(138631, 109541, 'en', 'name', 'Agricultural Biotechnology Research Institute of Iran'),
(138632, 109542, 'no_lang_code', 'name', 'Sripatum University'),
(138633, 109542, 'th', 'name', 'ดหาวณทยาคัยศรีปทุด'),
(138634, 109543, 'en', 'name', 'ReykjavĆ­k University'),
(138635, 109543, 'is', 'name', 'HÔskólinn í Reykjavík'),
(138636, 109544, 'pt', 'name', 'Hospital de Sant''Ana'),
(138637, 109545, 'no_lang_code', 'name', 'Aptara (United States)'),
(138638, 109546, 'en', 'name', 'Pharmaceutical Incubators');
INSERT INTO `ror_settings` VALUES
(138639, 109546, 'fa', 'name', 'مرکز Ų±Ų“ŲÆ ŁŲ±Ų¢ŁˆŲ±ŲÆŁ‡ Ł‡Ų§ŪŒ دارویی'),
(138640, 109547, 'en', 'name', 'Center for Open Science'),
(138641, 109548, 'en', 'name', 'Research Institute of Forests and Rangelands'),
(138642, 109548, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ جنگلها و Ł…Ų±Ų§ŲŖŲ¹ کؓور'),
(138643, 109549, 'en', 'name', 'SOUSEIKAI Hakata Clinic'),
(138644, 109549, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē›øē”Ÿä¼šåšå¤šć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(138645, 109550, 'en', 'name', 'PL Hospital'),
(138646, 109550, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå®ē”Ÿä¼šPL病院'),
(138647, 109551, 'en', 'name', 'The Acoustical Society of Japan'),
(138648, 109551, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬éŸ³éŸæå­¦ä¼š'),
(138649, 109552, 'fr', 'name', 'Laboratoire d''Etude des Interactions entre Sol-AgrosystĆØme-HydrosystĆØme'),
(138650, 109553, 'en', 'name', 'Highway Technology Research Center'),
(138651, 109553, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé¦–éƒ½é«˜é€Ÿé“č·ÆęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(138652, 109554, 'cy', 'name', 'Llyfrgell Brydeinig'),
(138653, 109554, 'en', 'name', 'British Library'),
(138654, 109555, 'en', 'name', 'Esan University'),
(138655, 109555, 'es', 'name', 'Universidad ESAN'),
(138656, 109556, 'en', 'name', 'Jilin Agricultural University'),
(138657, 109556, 'zh', 'name', 'å‰ęž—å†œäøšå¤§å­¦'),
(138658, 109557, 'es', 'name', 'Centro Mexicano para la Producción mÔs Limpia'),
(138659, 109558, 'en', 'name', 'Chemical Materials Evaluation and Research Base'),
(138660, 109558, 'ja', 'name', 'ę¬”äø–ä»£åŒ–å­¦ęę–™č©•ä¾”ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(138661, 109559, 'en', 'name', 'AMET University'),
(138662, 109559, 'ta', 'name', 'ą®…ą®®ąÆ†ą®ŸąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(138663, 109560, 'pt', 'name', 'Universidade de Lisboa Centro de Estudos Anglisticos'),
(138664, 109561, 'en', 'name', 'Sul-rio-grandense Federal Institute'),
(138665, 109561, 'pt', 'name', 'Instituto Federal Sul-rio-grandense, Instituto Federal de Educação, Ciência e Tecnologia Sul-rio-grandense'),
(138666, 109562, 'en', 'name', 'Tennessee Technological University'),
(138667, 109563, 'en', 'name', 'Ibaraki Prefectural Forestry Research Institute'),
(138668, 109563, 'ja', 'name', 'čŒØåŸŽēœŒęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(138669, 109564, 'en', 'name', 'College of the Holy Cross'),
(138670, 109565, 'pt', 'name', 'Centro de Filosofia'),
(138671, 109566, 'en', 'name', 'Autonomous University of Peru'),
(138672, 109566, 'es', 'name', 'Universidad Autónoma del Perú'),
(138673, 109567, 'no_lang_code', 'name', 'Avinashilingam University'),
(138674, 109567, 'ta', 'name', 'ą®…ą®µą®æą®Øą®¾ą®šą®æą®²ą®æą®™ąÆą®•ą®®ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(138675, 109568, 'en', 'name', 'The Japanese Association for Chest Surgery'),
(138676, 109568, 'ja', 'name', 'ę—„ęœ¬å‘¼åøå™Øå¤–ē§‘å­¦ä¼š'),
(138677, 109569, 'en', 'name', 'The Medical and Pharmacological Research Center Foundation'),
(138678, 109569, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…ˆē«ÆåŒ»å­¦č–¬å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(138679, 109570, 'en', 'name', 'Ikuei University'),
(138680, 109570, 'ja', 'name', '育英大学'),
(138681, 109571, 'en', 'name', 'Institute of Molecular and Clinical Ophthalmology Basel'),
(138682, 109572, 'en', 'name', 'New Jersey Institute of Technology'),
(138683, 109573, 'en', 'name', 'University of Illinois System'),
(138684, 109573, 'es', 'name', 'Universidad de Illinois'),
(138685, 109573, 'fr', 'name', 'UniversitƩ de l''illinois'),
(138686, 109574, 'en', 'name', 'Institute of Mathematical Sciences'),
(138687, 109574, 'es', 'name', 'Instituto de Ciencias MatemƔticas'),
(138688, 109575, 'en', 'name', 'Tokyo Medical Association'),
(138689, 109575, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½åŒ»åø«ä¼š'),
(138690, 109576, 'en', 'name', 'Japan Antibiotics Research Association'),
(138691, 109576, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę„ŸęŸ“ē—‡åŒ»č–¬å“å”ä¼š'),
(138692, 109577, 'en', 'name', 'Institute of Geotechnics of the Slovak Academy of Sciences'),
(138693, 109577, 'sk', 'name', 'Ústav Geotechniky SlovenskÔ akadémia vied'),
(138694, 109578, 'en', 'name', 'University of South-Eastern Norway'),
(138695, 109578, 'no', 'name', 'Universitetet i SĆørĆøst-Norge'),
(138696, 109579, 'en', 'name', 'Public Works Research Center'),
(138697, 109579, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœŸęœØē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(138698, 109580, 'fr', 'name', 'FƩdƩration de Physico-Chimie Analytique et Biologique'),
(138699, 109581, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© نجران'),
(138700, 109581, 'en', 'name', 'Najran University'),
(138701, 109582, 'no_lang_code', 'name', 'Wiss Janney Elstner Associates'),
(138702, 109583, 'en', 'name', 'Poltekkes Kemenkes Aceh'),
(138703, 109584, 'en', 'name', 'Bureau for Economic Theory and Applications'),
(138704, 109584, 'fr', 'name', 'Bureau d''Economie ThƩorique et AppliquƩe'),
(138705, 109585, 'de', 'name', 'UniversitƤtsklinikum Ulm'),
(138706, 109585, 'en', 'name', 'University Hospital Ulm'),
(138707, 109586, 'bn', 'name', 'ą¦Ŗą¦¶ą§ą¦šą¦æą¦®ą¦¬ą¦™ą§ą¦— ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦†ą¦‡ą¦Øą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(138708, 109586, 'en', 'name', 'West Bengal National University of Juridical Sciences'),
(138709, 109586, 'hi', 'name', 'ą¤Ŗą¤¶ą„ą¤šą¤æą¤® बंगाल ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Øą„ą¤Æą¤¾ą¤Æą¤æą¤• ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(138710, 109587, 'en', 'name', 'House of Councillors, the National Diet of Japan'),
(138711, 109587, 'ja', 'name', 'å‚č­°é™¢'),
(138712, 109588, 'en', 'name', 'Supreme Court of the Republic of Indonesia'),
(138713, 109588, 'id', 'name', 'Mahkamah Agung Republik Indonesia'),
(138714, 109589, 'en', 'name', 'Ibaraki Prefectural Government'),
(138715, 109589, 'ja', 'name', 'čŒØåŸŽēœŒåŗ'),
(138716, 109590, 'en', 'name', 'Ivey Business School'),
(138717, 109591, 'pt', 'name', 'Comissão Nacional de Eleições'),
(138718, 109592, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Gruppo Collegato di Siena'),
(138719, 109593, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ł‚Ų§Ł†ŁˆŁ† Ų§Ł„ŁƒŁˆŁŠŲŖŁŠŲ© Ų§Ł„Ų¹Ų§Ł„Ł…ŁŠŲ©'),
(138720, 109593, 'en', 'name', 'Kuwait International Law School'),
(138721, 109594, 'en', 'name', 'Tianjin University of Finance and Economics'),
(138722, 109594, 'zh', 'name', 'å¤©ę“„č“¢ē»å¤§å­¦'),
(138723, 109595, 'en', 'name', 'National Institute for Nuclear Physics, Rome I Division'),
(138724, 109595, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Roma I'),
(138725, 109596, 'en', 'name', 'Chiba Industry Advancement Center'),
(138726, 109596, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåƒč‘‰ēœŒē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(138727, 109597, 'en', 'name', 'Association for Disaster Prevention Research'),
(138728, 109597, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé˜²ē½ē ”ē©¶å”ä¼š'),
(138729, 109598, 'en', 'name', 'Vaal University of Technology'),
(138730, 109599, 'en', 'name', 'Ishikawa Prefectural Government'),
(138731, 109599, 'ja', 'name', 'ēŸ³å·ēœŒåŗ'),
(138732, 109600, 'en', 'name', 'Machakos University'),
(138733, 109601, 'es', 'name', 'Instituto Tecnologico de Nuevo Laredo'),
(138734, 109602, 'pt', 'name', 'Centro de Estudos e Investigação em Direito'),
(138735, 109603, 'en', 'name', 'K J Somaiya Medical College'),
(138736, 109604, 'en', 'name', 'Ukrainian State University of Railway Transport'),
(138737, 109604, 'uk', 'name', 'ŃƒŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ залізничного Ń‚Ń€Š°Š½ŃŠæŠ¾Ń€Ń‚Ńƒ'),
(138738, 109605, 'fr', 'name', 'Laboratoire Techniques, Territoires et SociƩtƩs'),
(138739, 109606, 'en', 'name', 'NLA University College'),
(138740, 109607, 'fr', 'name', 'Obvia'),
(138741, 109608, 'en', 'name', 'The Stanisław Moniuszko Academy of Music in Gdańsk'),
(138742, 109608, 'pl', 'name', 'Akademia Muzyczna im. Stanisława Moniuszki w Gdańsku'),
(138743, 109609, 'en', 'name', 'Russian State Library'),
(138744, 109609, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń библиотека'),
(138745, 109610, 'es', 'name', 'Universidad de Las Tunas'),
(138746, 109611, 'en', 'name', 'Ogaki Tokushukai Hospital'),
(138747, 109611, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šå¤§åž£å¾³ę“²ä¼šē—…é™¢'),
(138748, 109612, 'en', 'name', 'Institute of Oriental Studies of the Slovak Academy of Sciences'),
(138749, 109612, 'sk', 'name', 'Ústav orientalistiky SlovenskÔ akadémia vied'),
(138750, 109613, 'en', 'name', 'Al-Azhar University'),
(138751, 109614, 'en', 'name', 'York University'),
(138752, 109614, 'fr', 'name', 'UniversitƩ York'),
(138753, 109615, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų­Ł…ŲÆ خيضر بسكرة'),
(138754, 109615, 'en', 'name', 'University of Biskra'),
(138755, 109616, 'fr', 'name', 'Ɖcole des Hautes Ɖtudes Commerciales'),
(138756, 109617, 'en', 'name', 'Yogyakarta State University'),
(138757, 109617, 'id', 'name', 'Universitas Negeri Yogyakarta'),
(138758, 109618, 'en', 'name', 'Kagawa Prefectural Government'),
(138759, 109618, 'ja', 'name', 'é¦™å·ēœŒåŗ'),
(138760, 109619, 'pt', 'name', 'Colaboratório para as Geociências'),
(138761, 109620, 'it', 'name', 'Comune di Venezia'),
(138762, 109621, 'de', 'name', 'UniversitƤre Psychiatrische Kliniken Basel'),
(138763, 109621, 'en', 'name', 'University Psychiatric Clinics Basel'),
(138764, 109622, 'en', 'name', 'Lupane State University'),
(138765, 109623, 'en', 'name', 'Vassar Brothers Medical Center'),
(138766, 109624, 'en', 'name', 'Diabetes Research Center'),
(138767, 109624, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ دیابت'),
(138768, 109625, 'en', 'name', 'La Sierra University'),
(138769, 109625, 'es', 'name', 'Universidad de La Sierra'),
(138770, 109626, 'en', 'name', 'National Institute of Design'),
(138771, 109626, 'fr', 'name', 'Institut national du design'),
(138772, 109626, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤”ą¤æą¤œą¤¾ą¤‡ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(138773, 109626, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®µą®Ÿą®æą®µą®®ąÆˆą®ŖąÆą®ŖąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(138774, 109627, 'en', 'name', 'University of Latvia'),
(138775, 109627, 'lt', 'name', 'Latvijos universitetas'),
(138776, 109627, 'lv', 'name', 'Latvijas Universitāte'),
(138777, 109627, 'ru', 'name', 'Латвийский ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(138778, 109628, 'en', 'name', 'Iwate Prefectural Government'),
(138779, 109628, 'ja', 'name', 'å²©ę‰‹ēœŒåŗ'),
(138780, 109629, 'pt', 'name', 'Centro de Estudos e Formação Avançada em Gestão e Economia'),
(138781, 109630, 'pt', 'name', 'Escola das Armas'),
(138782, 109631, 'ro', 'name', 'Academia de Politie Alexandru Ioan Cuza'),
(138783, 109632, 'en', 'name', 'Portsmouth College'),
(138784, 109633, 'en', 'name', 'Feevale University'),
(138785, 109633, 'pt', 'name', 'Universidade Feevale'),
(138786, 109634, 'en', 'name', 'University of Vlora "Ismail Qemali"'),
(138787, 109634, 'sq', 'name', 'Universiteti "Ismail Qemali" Vlorƫ'),
(138788, 109635, 'en', 'name', 'Japan Prosthodontic Society'),
(138789, 109635, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č£œē¶“ę­Æē§‘å­¦ä¼š'),
(138790, 109636, 'en', 'name', 'Indian Institute of Management Lucknow'),
(138791, 109637, 'en', 'name', 'Samara National Research University'),
(138792, 109637, 'ru', 'name', 'Дамарский Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика Š”. П. ŠšŠ¾Ń€Š¾Š»Ń‘Š²Š°'),
(138793, 109638, 'en', 'name', 'Paris-Est CrƩteil University'),
(138794, 109638, 'fr', 'name', 'UniversitƩ Paris-Est CrƩteil'),
(138795, 109639, 'en', 'name', 'Eikei University Of Hiroshima'),
(138796, 109639, 'ja', 'name', '叔啓大学'),
(138797, 109640, 'en', 'name', 'Madurai Medical College'),
(138798, 109640, 'ta', 'name', 'மதுரை ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(138799, 109641, 'de', 'name', 'Martin-Luther-UniversitƤt Halle-Wittenberg'),
(138800, 109641, 'en', 'name', 'Martin Luther University Halle-Wittenberg'),
(138801, 109642, 'en', 'name', 'Agharkar Research Institute'),
(138802, 109643, 'da', 'name', 'Arkitektskolen Aarhus'),
(138803, 109643, 'en', 'name', 'Aarhus School of Architecture'),
(138804, 109644, 'de', 'name', 'Paris-Lodron-UniversitƤt Salzburg'),
(138805, 109644, 'en', 'name', 'University of Salzburg'),
(138806, 109645, 'en', 'name', 'Cancer Council NSW'),
(138807, 109646, 'pt', 'name', 'Faculdade Municipal de PalhoƧa'),
(138808, 109647, 'en', 'name', 'Argonne National Laboratory'),
(138809, 109647, 'es', 'name', 'Laboratorio Nacional Argonne'),
(138810, 109648, 'en', 'name', 'Saga Prefectural Ariake Fisheries Research and Development Center'),
(138811, 109648, 'ja', 'name', 'ä½č³€ēœŒęœ‰ę˜Žę°“ē”£ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(138812, 109649, 'no_lang_code', 'name', 'Nuclear Research Institute Rez (Czechia)'),
(138813, 109650, 'en', 'name', 'University of Fujairah'),
(138814, 109651, 'en', 'name', 'African Library and Information Associations and Institutions'),
(138815, 109652, 'en', 'name', 'Hebei University of Science and Technology'),
(138816, 109652, 'zh', 'name', 'ę²³åŒ—ē§‘ęŠ€å¤§å­¦'),
(138817, 109653, 'en', 'name', 'Yamagata Promotional Organization for Industrial Technology'),
(138818, 109653, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå±±å½¢ēœŒē”£ę„­ęŠ€č”“ęŒÆčˆˆę©Ÿę§‹'),
(138819, 109654, 'en', 'name', 'Institute for Circular Economy Development'),
(138820, 109654, 'vi', 'name', 'Viện NghiĆŖn cứu PhĆ”t triển Kinh tįŗæ tuįŗ§n hoĆ n'),
(138821, 109655, 'en', 'name', 'University of Agricultural Sciences and Veterinary Medicine of Cluj-Napoca'),
(138822, 109655, 'hu', 'name', 'KolozsvƔri AgrƔrtudomƔnyi Ʃs Ɓllatorvosi Egyetem'),
(138823, 109655, 'ro', 'name', 'Universitatea de Științe Agricole și Medicină Veterinară Cluj-Napoca'),
(138824, 109656, 'en', 'name', 'University of Wisconsin–Green Bay'),
(138825, 109656, 'fr', 'name', 'UniversitĆ© du Wisconsin–Green Bay'),
(138826, 109657, 'en', 'name', 'Fukuoka Renal Clinic'),
(138827, 109657, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗåŒ»åæƒä¼šē¦å²”č…Žč‡“å†…ē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(138828, 109658, 'nl', 'name', 'Provincie Overijssel'),
(138829, 109659, 'en', 'name', 'University American College Skopje'),
(138830, 109660, 'id', 'name', 'Politeknik Kesehatan Kemenkes Semarang'),
(138831, 109661, 'en', 'name', 'Geological and Mining Research Bureau'),
(138832, 109661, 'fr', 'name', 'Bureau de Recherches Géologiques et Minières'),
(138833, 109662, 'pt', 'name', 'Centro de Investigação em Actividade Física Saúde e Lazer'),
(138834, 109663, 'es', 'name', 'Universidad Tecnologica de Ciudad Juarez'),
(138835, 109664, 'fa', 'name', 'دانؓگاه Ų®ŁˆŲ§Ų±Ų²Ł…ŪŒ'),
(138836, 109664, 'no_lang_code', 'name', 'Kharazmi University'),
(138837, 109665, 'de', 'name', 'UniversitƤt Udine'),
(138838, 109665, 'en', 'name', 'University of Udine'),
(138839, 109665, 'it', 'name', 'UniversitĆ  degli Studi di Udine'),
(138840, 109665, 'sl', 'name', 'Univerza v Vidmu'),
(138841, 109666, 'en', 'name', 'Sakuyo Junior College'),
(138842, 109666, 'ja', 'name', 'ä½œé™½éŸ³ę„½ēŸ­ęœŸå¤§å­¦'),
(138843, 109667, 'en', 'name', 'Alabama Agricultural and Mechanical University'),
(138844, 109668, 'en', 'name', 'Omuta City Hospital'),
(138845, 109668, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤§ē‰Ÿē”°åø‚ē«‹ē—…é™¢'),
(138846, 109669, 'cy', 'name', 'Prifysgol Aston'),
(138847, 109669, 'en', 'name', 'Aston University'),
(138848, 109670, 'en', 'name', 'Kansai Institute of Information Systems'),
(138849, 109670, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé–¢č„æęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(138850, 109671, 'en', 'name', 'Kashiwa Kousei General Hospital'),
(138851, 109671, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å”å‹ä¼šęŸåŽšē”Ÿē·åˆē—…é™¢'),
(138852, 109672, 'en', 'name', 'College of Science and Technology'),
(138853, 109673, 'en', 'name', 'National Institute for Nuclear Physics, Division in Trieste'),
(138854, 109673, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Trieste'),
(138855, 109674, 'en', 'name', 'Brigham Young University - Idaho'),
(138856, 109675, 'en', 'name', 'National Taitung University'),
(138857, 109676, 'en', 'name', 'Wind Engineering, Energy and Environment Research Institute'),
(138858, 109677, 'en', 'name', 'International Research Institute for Nuclear Decommissioning'),
(138859, 109677, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆå›½éš›å»ƒē‚‰ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(138860, 109678, 'en', 'name', 'National Law University Odisha'),
(138861, 109679, 'en', 'name', 'Sheridan College'),
(138862, 109680, 'en', 'name', 'Zama General Hospital'),
(138863, 109680, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗć‚øćƒ£ćƒ‘ćƒ³ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚¢ćƒ©ć‚¤ćƒ³ć‚¹åŗ§é–“ē·åˆē—…é™¢'),
(138864, 109681, 'en', 'name', 'Jan Stanislav Institute of Slavistics of the Slovak Academy of Sciences'),
(138865, 109681, 'sk', 'name', 'Slavistický ústav JÔna Stanislava SlovenskÔ akadémia vied'),
(138866, 109682, 'en', 'name', 'Shakomae Kokorono Clinic'),
(138867, 109682, 'ja', 'name', 'č»Šåŗ«å‰ć“ć“ć‚ć®ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(138868, 109683, 'en', 'name', 'Korea Aerospace University'),
(138869, 109683, 'ko', 'name', 'ķ•œźµ­ķ•­ź³µėŒ€ķ•™źµ'),
(138870, 109684, 'en', 'name', 'University of Shkodra "Luigj Gurakuqi"'),
(138871, 109685, 'tr', 'name', 'Iğdır Üniversitesi'),
(138872, 109686, 'en', 'name', 'Olabisi Onabanjo University'),
(138873, 109686, 'yo', 'name', 'YunifƔsƭtƬ Olabisi Onabanjo'),
(138874, 109687, 'en', 'name', 'Association of College and Research Libraries'),
(138875, 109688, 'en', 'name', 'Osaka Design Center'),
(138876, 109688, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¤§é˜Ŗćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(138877, 109689, 'en', 'name', 'Istanbul Kültür University'),
(138878, 109689, 'tr', 'name', 'İstanbul Kültür Üniversitesi'),
(138879, 109690, 'en', 'name', 'Ehime Prefectural Government'),
(138880, 109690, 'ja', 'name', 'ę„›åŖ›ēœŒåŗ'),
(138881, 109691, 'en', 'name', 'Guthrie Corning Hospital'),
(138882, 109692, 'en', 'name', 'Debra'),
(138883, 109693, 'en', 'name', 'SAGA Prefectural Environmental Research Center'),
(138884, 109693, 'ja', 'name', 'ä½č³€ēœŒē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(138885, 109694, 'en', 'name', 'Nipissing University'),
(138886, 109694, 'fr', 'name', 'UniversitƩ de nipissing'),
(138887, 109695, 'fr', 'name', 'Institut Jean Lamour'),
(138888, 109696, 'en', 'name', 'Pharmaceutical Quality Assurance Research Center'),
(138889, 109696, 'fa', 'name', 'مرکز ŲŖŲ­Ł‚ŪŒŁ‚Ų§ŲŖ ŲŖŲ¶Ł…ŪŒŁ† کیفیت دارو'),
(138890, 109697, 'en', 'name', 'Japan Visiting Nursing Foundation'),
(138891, 109697, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬čØŖå•ēœ‹č­·č²”å›£'),
(138892, 109698, 'en', 'name', 'Dokkyo Medical University'),
(138893, 109698, 'ja', 'name', 'ēØå”åŒ»ē§‘å¤§å­¦'),
(138894, 109699, 'en', 'name', 'Swedish Museum of Natural History'),
(138895, 109699, 'fi', 'name', 'Valtion luonnonhistoriallinen museo'),
(138896, 109699, 'sv', 'name', 'Naturhistoriska riksmuseet'),
(138897, 109700, 'en', 'name', 'Sunni Endowment Diwan'),
(138898, 109701, 'es', 'name', 'Instituto Electoral del Estado de MƩxico'),
(138899, 109702, 'en', 'name', 'Foundation for Ambulance Service Development'),
(138900, 109702, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę•‘ę€„ęŒÆčˆˆč²”å›£'),
(138901, 109703, 'en', 'name', 'Hiroshima City Education Center'),
(138902, 109703, 'ja', 'name', 'åŗƒå³¶åø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(138903, 109704, 'no_lang_code', 'name', 'Celltrion (South Korea)'),
(138904, 109705, 'en', 'name', 'Japan Medical Imaging and Radiological Systems Industries Association'),
(138905, 109705, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”»åƒåŒ»ē™‚ć‚·ć‚¹ćƒ†ćƒ å·„ę„­ä¼š'),
(138906, 109706, 'en', 'name', 'Ardhi University'),
(138907, 109706, 'sw', 'name', 'Chuo Kikuu Ardhi'),
(138908, 109707, 'en', 'name', 'Shizuoka Professional University of Agriculture'),
(138909, 109707, 'ja', 'name', 'é™å²”ēœŒē«‹č¾²ęž—ē’°å¢ƒå°‚é–€č·å¤§å­¦'),
(138910, 109708, 'en', 'name', 'Institute of Information Science and Technologies "Alessandro Faedo"'),
(138911, 109708, 'it', 'name', 'Istituto di Scienza e Tecnologie dell''Informazione "Alessandro Faedo"'),
(138912, 109709, 'en', 'name', 'Institute of Animal Physiology of the Slovak Academy of Sciences'),
(138913, 109709, 'sk', 'name', 'Ústav fyziológie hospodÔrskych zviera SlovenskÔ akadémia vied'),
(138914, 109710, 'es', 'name', 'Universidad Católica de Manizales'),
(138915, 109711, 'en', 'name', 'Sepuluh Nopember Institute of Technology'),
(138916, 109711, 'id', 'name', 'Institut Teknologi Sepuluh Nopember'),
(138917, 109711, 'jv', 'name', 'Institut TĆØknologi Sepuluh NopĆØmber'),
(138918, 109712, 'en', 'name', 'Suzuka Kaisei Hospital'),
(138919, 109712, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå³°å’Œä¼šéˆ“é¹æå›žē”Ÿē—…é™¢'),
(138920, 109713, 'en', 'name', 'Sardar Patel University'),
(138921, 109713, 'gu', 'name', 'સરદાર ąŖŖąŖŸą«‡ąŖ² ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(138922, 109713, 'hi', 'name', 'सरदार ą¤Ŗą¤Ÿą„‡ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(138923, 109714, 'en', 'name', 'FranƧois GƩny Institute'),
(138924, 109714, 'fr', 'name', 'Institut FranƧois GƩny'),
(138925, 109715, 'de', 'name', 'Universität der Bundeswehr München'),
(138926, 109715, 'en', 'name', 'University of the Bundeswehr Munich'),
(138927, 109716, 'en', 'name', 'Nippon Life Hospital, Public Interest Incorporated Foundation Nippon Life Hospital'),
(138928, 109716, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿå‘½ęøˆē”Ÿä¼šę—„ęœ¬ē”Ÿå‘½ē—…é™¢, ę—„ęœ¬ē”Ÿå‘½ē—…é™¢'),
(138929, 109717, 'en', 'name', 'Industrial Research Institute of Niigata Prefecture'),
(138930, 109717, 'ja', 'name', 'ę–°ę½ŸēœŒå·„ę„­ęŠ€č”“ē·åˆē ”ē©¶ę‰€'),
(138931, 109718, 'en', 'name', 'Fort Hays Tech North Central'),
(138932, 109719, 'en', 'name', 'Aichi Blood Disease Research Foundation'),
(138933, 109719, 'ja', 'name', 'č²”å›£ę³•äŗŗę„›ēŸ„č”€ę¶²ē–¾ę‚£ē ”ē©¶č²”å›£'),
(138934, 109720, 'bn', 'name', 'শেখ হাসিনা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(138935, 109720, 'en', 'name', 'Sheikh Hasina University'),
(138936, 109721, 'en', 'name', 'Korean Society for Aeronautical and Space Science'),
(138937, 109721, 'ko', 'name', 'ķ•œźµ­ķ•­ź³µģš°ģ£¼ķ•™ķšŒ'),
(138938, 109722, 'en', 'name', 'Region of Attica'),
(138939, 109723, 'en', 'name', 'Zimbabwe Open University'),
(138940, 109724, 'de', 'name', 'Michael Succow Stiftung zum Schutz der Natur'),
(138941, 109725, 'en', 'name', 'Kharkiv University of Technology "STEP"'),
(138942, 109726, 'en', 'name', 'Nagoya College of Music'),
(138943, 109726, 'ja', 'name', 'åå¤å±‹éŸ³ę„½å¤§å­¦'),
(138944, 109727, 'en', 'name', 'V.E. Zuev Institute of Atmospheric Optics'),
(138945, 109727, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ оптики атмосферы им. Š’.Š•. Š—ŃƒŠµŠ²Š° Дибирского Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(138946, 109728, 'de', 'name', 'FOM - Hochschule für Oekonomie und Management'),
(138947, 109728, 'en', 'name', 'FOM University of Applied Sciences for Economics and Management'),
(138948, 109729, 'en', 'name', 'Norwegian Veterinary Institute'),
(138949, 109730, 'en', 'name', 'Central Japan Industries'),
(138950, 109730, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­éƒØē”£ę„­é€£ē›Ÿ'),
(138951, 109731, 'en', 'name', 'Yonezawa City Hospital'),
(138952, 109731, 'ja', 'name', '米沢市立病院'),
(138953, 109732, 'de', 'name', 'Deutsche Gesellschaft für Materialkunde'),
(138954, 109733, 'en', 'name', 'University of Wisconsin–Extension'),
(138955, 109734, 'en', 'name', 'Research Institute for Animal Science in Biochemistry and Toxicology'),
(138956, 109734, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē”Ÿē‰©ē§‘å­¦å®‰å…Øē ”ē©¶ę‰€'),
(138957, 109735, 'de', 'name', 'Deutscher EDV-Gerichtstag, Deutscher EDV-Gerichtstag e.V.'),
(138958, 109736, 'no_lang_code', 'name', 'Uva Wellassa University'),
(138959, 109736, 'si', 'name', 'ą¶Œą·€ ą·€ą·™ą¶½ą·Šą¶½ą·ƒą·Šą·ƒ ą·€ą·’ą·ą·Šą·€ ą·€ą·’ą¶Æą·Šā€ą¶ŗą·ą¶½ą¶ŗ'),
(138960, 109736, 'ta', 'name', 'ஊவா ą®µąÆ†ą®²ąÆą®²ą®š ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(138961, 109737, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŁŁŠŁ„Ų§ŲÆŁ„ŁŁŠŲ§'),
(138962, 109737, 'en', 'name', 'Philadelphia University'),
(138963, 109738, 'es', 'name', 'Universidad Nacional Hermilio ValdizƔn'),
(138964, 109739, 'en', 'name', 'U.S. Air Force Research Laboratory Aerospace Systems Directorate'),
(138965, 109740, 'no_lang_code', 'name', 'Invitae (United States)'),
(138966, 109741, 'en', 'name', 'Plastic Waste Management Institute'),
(138967, 109741, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ—ćƒ©ć‚¹ćƒćƒƒć‚Æå¾Ŗē’°åˆ©ē”Øå”ä¼š'),
(138968, 109742, 'en', 'name', 'Jilin International Studies University'),
(138969, 109742, 'zh', 'name', 'å‰ęž—åŽä¾Øå¤–å›½čÆ­å­¦é™¢'),
(138970, 109743, 'en', 'name', 'Alaska Volcano Observatory'),
(138971, 109743, 'es', 'name', 'Observatorio Vulcanológico de Alaska'),
(138972, 109743, 'fr', 'name', 'Observatoire volcanologique d''alaska'),
(138973, 109744, 'da', 'name', 'Færøernes Universitet'),
(138974, 109744, 'en', 'name', 'University of the Faroe Islands'),
(138975, 109744, 'fo', 'name', 'Fróðskaparsetur Føroya'),
(138976, 109745, 'en', 'name', 'Japan Science Foundation'),
(138977, 109745, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(138978, 109746, 'fr', 'name', 'Centre de recherche multidisciplinaire en sciences humaines et sociales'),
(138979, 109747, 'en', 'name', 'Chatham University'),
(138980, 109748, 'de', 'name', 'Medizinische UniversitƤt Wien'),
(138981, 109748, 'en', 'name', 'Medical University of Vienna'),
(138982, 109749, 'en', 'name', 'St. Edward''s University'),
(138983, 109750, 'en', 'name', 'Miyazaki Prefectural Institute for Public Health and Environment'),
(138984, 109750, 'ja', 'name', 'å®®å“ŽēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(138985, 109751, 'en', 'name', 'Department of Primary Industry and Resources'),
(138986, 109752, 'es', 'name', 'Instituto de Investigación Sanitaria La Fe'),
(138987, 109753, 'en', 'name', 'FOCUS Strategic Thinking Consultants'),
(138988, 109754, 'en', 'name', 'Nagaland University'),
(138989, 109755, 'en', 'name', 'Japan Livestock Technology Association'),
(138990, 109755, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē•œē”£ęŠ€č”“å”ä¼š'),
(138991, 109756, 'es', 'name', 'Instituto Superior Tecnológico Carlos Cisneros'),
(138992, 109757, 'fr', 'name', 'Université de Thiès'),
(138993, 109758, 'fr', 'name', 'Laboratoire de Physique ThƩorique et ModƩlisation'),
(138994, 109759, 'en', 'name', 'University of New Brunswick'),
(138995, 109759, 'fr', 'name', 'UniversitƩ du nouveau-brunswick'),
(138996, 109760, 'en', 'name', 'Okinawa Prefectural Livestock and Grassland Research Center'),
(138997, 109760, 'ja', 'name', 'ę²–ēø„ēœŒē•œē”£ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(138998, 109761, 'en', 'name', 'Ganpat University'),
(138999, 109761, 'gu', 'name', 'ગણપત ąŖÆą«ąŖØąŖæąŖµąŖ°ą«ąŖøąŖæąŖŸą«€'),
(139000, 109762, 'en', 'name', 'Royal Shrewsbury Hospital'),
(139001, 109763, 'en', 'name', 'Tonghua Normal University'),
(139002, 109763, 'zh', 'name', 'é€šåŒ–åøˆčŒƒå­¦é™¢'),
(139003, 109764, 'da', 'name', 'Villum Fonden'),
(139004, 109765, 'fr', 'name', 'Centre Suisse d''Ɖlectronique et de Microtechnique'),
(139005, 109765, 'no_lang_code', 'name', 'Swiss Center for Electronics and Microtechnology (Switzerland)'),
(139006, 109766, 'en', 'name', 'University of Nebraska Foundation'),
(139007, 109767, 'en', 'name', 'Avangrid Renewables'),
(139008, 109768, 'en', 'name', 'IEEE Computer Society'),
(139009, 109769, 'pt', 'name', 'Escola de SaĆŗde PĆŗblica do Distrito Federal'),
(139010, 109770, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© دبي Ų§Ł„Ų·ŲØŁŠŲ©'),
(139011, 109770, 'en', 'name', 'Dubai Medical College'),
(139012, 109771, 'pt', 'name', 'Instituto Nacional de Traumatologia e Ortopedia'),
(139013, 109772, 'es', 'name', 'Instituto de Investigacion Traslacional y Biotransversal Ayru'),
(139014, 109773, 'es', 'name', 'Instituto AragonƩs de Ciencias de la Salud'),
(139015, 109774, 'tr', 'name', 'MSD (Turkiye)'),
(139016, 109775, 'bn', 'name', 'ą¦‡ą¦øą§ą¦Ÿą¦“ą¦Æą¦¼ą§‡ą¦øą§ą¦Ÿ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(139017, 109775, 'en', 'name', 'East West University'),
(139018, 109776, 'id', 'name', 'Lembaga Pengelola Dana Pendidikan'),
(139019, 109777, 'fr', 'name', 'Atmo Guyane'),
(139020, 109778, 'no_lang_code', 'name', 'HRL Laboratories (United States)'),
(139021, 109779, 'en', 'name', 'Interdisciplinary Centre of Marine and Environmental Research'),
(139022, 109779, 'pt', 'name', 'Centro Interdisciplinar de Investigação Marinha e Ambiental'),
(139023, 109780, 'en', 'name', 'Directorate for Geosciences'),
(139024, 109781, 'en', 'name', 'Ohio Department of Natural Resources'),
(139025, 109782, 'en', 'name', 'Tochigi Prefecture Kenou Animal Hygiene Service Center Of Tochigi'),
(139026, 109782, 'ja', 'name', 'ę ƒęœØēœŒēœŒå¤®å®¶ē•œäæå„č”›ē”Ÿę‰€'),
(139027, 109783, 'en', 'name', 'Aichi Prefectural Forestry Research Institute'),
(139028, 109783, 'ja', 'name', 'ę„›ēŸ„ēœŒę£®ęž—ćƒ»ęž—ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(139029, 109784, 'en', 'name', 'Cooper Union'),
(139030, 109785, 'en', 'name', 'Shanghai Children''s Hospital'),
(139031, 109785, 'zh', 'name', 'äøŠęµ·åø‚å„æē«„åŒ»é™¢'),
(139032, 109786, 'en', 'name', 'Chengdu University of Technology'),
(139033, 109786, 'zh', 'name', 'ęˆéƒ½ē†å·„å¤§å­¦'),
(139034, 109787, 'it', 'name', 'Istituto Zooprofilattico Sperimentale delle Regioni Lazio e Toscana, l’Istituto Zooprofilatico Sperimentale del Lazio e della Toscana'),
(139035, 109788, 'es', 'name', 'Fundación Universitaria Sanitas'),
(139036, 109789, 'en', 'name', 'Agnes Scott College'),
(139037, 109790, 'en', 'name', 'Westfield State University'),
(139038, 109791, 'pt', 'name', 'Centro de Investigação e Desenvolvimento em MatemÔtica e Aplicações'),
(139039, 109792, 'en', 'name', 'Kaizuka City Hospital'),
(139040, 109792, 'ja', 'name', 'åø‚ē«‹č²å”šē—…é™¢'),
(139041, 109793, 'en', 'name', 'Cogitatio Press'),
(139042, 109794, 'en', 'name', 'Fukushima Prefectural Government'),
(139043, 109794, 'ja', 'name', 'ē¦å³¶ēœŒåŗ'),
(139044, 109795, 'en', 'name', 'Siirt University'),
(139045, 109795, 'tr', 'name', 'Siirt Üniversitesi'),
(139046, 109796, 'en', 'name', 'Singapore Polytechnic'),
(139047, 109796, 'zh', 'name', 'ę–°åŠ å”ē†å·„å­¦é™¢'),
(139048, 109797, 'en', 'name', 'Popular University of Cesar'),
(139049, 109797, 'es', 'name', 'Universidad Popular del Cesar'),
(139050, 109798, 'en', 'name', 'Federal Aviation Administration'),
(139051, 109798, 'es', 'name', 'Administración Federal de Aviación'),
(139052, 109799, 'en', 'name', 'Guangdong Polytechnic of Industry and Commerce'),
(139053, 109799, 'zh', 'name', 'å»£ę±å·„č²æč·ę„­ęŠ€č”“å­øé™¢'),
(139054, 109800, 'en', 'name', 'Hochschule für Technik und Wirtschaft Dresden – University of Applied Sciences'),
(139055, 109801, 'fr', 'name', 'Chimie ParisTech, Ɖcole nationale supĆ©rieure de chimie de Paris'),
(139056, 109802, 'fr', 'name', 'CƩgep Limoilou'),
(139057, 109803, 'pt', 'name', 'Centro de Investigação e Intervenção Educativas'),
(139058, 109804, 'pt', 'name', 'Centro de Investigação em Ciência Política'),
(139059, 109805, 'en', 'name', 'University of Chinese Academy of Sciences'),
(139060, 109805, 'zh', 'name', '中国科学院大学'),
(139061, 109806, 'en', 'name', 'Federation University'),
(139062, 109807, 'en', 'name', 'Kameda Daiichi Hospital'),
(139063, 109807, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę„›ä»ä¼šäŗ€ē”°ē¬¬äø€ē—…é™¢'),
(139064, 109808, 'en', 'name', 'College of Business Education'),
(139065, 109808, 'sw', 'name', 'Chuo cha Elimu ya Biashara'),
(139066, 109809, 'pt', 'name', 'Centro de Investigação em Arquitetura Urbanismo e Design'),
(139067, 109810, 'de', 'name', 'Medizinische Einrichtungen des Bezirks Oberpfalz'),
(139068, 109811, 'en', 'name', 'Tokyo Metropolitan College of Industrial Technology'),
(139069, 109811, 'ja', 'name', 'ę±äŗ¬éƒ½ē«‹ē”£ę„­ęŠ€č”“é«˜ē­‰å°‚é–€å­¦ę ”'),
(139070, 109812, 'de', 'name', 'R Vereinigung für statistisches Rechnen'),
(139071, 109812, 'en', 'name', 'R Foundation for Statistical Computing'),
(139072, 109813, 'en', 'name', 'Sigma University'),
(139073, 109814, 'en', 'name', 'Plant Breeding and Acclimatization Institute - National Research Institute'),
(139074, 109815, 'en', 'name', 'Center for Translational Medicine'),
(139075, 109815, 'pl', 'name', 'Centrum Medycyny Translacyjnej'),
(139076, 109816, 'en', 'name', 'Albukhary International University'),
(139077, 109816, 'ms', 'name', 'Universiti Antarabangsa Albukhary'),
(139078, 109817, 'fr', 'name', 'Centre de Sociologie EuropƩenne'),
(139079, 109818, 'fr', 'name', 'CHU de QuƩbec-UniversitƩ Laval'),
(139080, 109819, 'en', 'name', 'Langara College'),
(139081, 109820, 'en', 'name', 'Defence Institute of Advanced Technology'),
(139082, 109821, 'de', 'name', 'Friedrich-Schiller-UniversitƤt Jena'),
(139083, 109821, 'en', 'name', 'Friedrich Schiller University Jena'),
(139084, 109822, 'es', 'name', 'Universidad TƩcnica Estatal de Quevedo'),
(139085, 109823, 'en', 'name', 'Arab States Research and Education Network'),
(139086, 109824, 'es', 'name', 'Agencia de Salud PĆŗblica de Barcelona'),
(139087, 109825, 'en', 'name', 'Institute of Musicology of the Slovak Academy of Sciences'),
(139088, 109825, 'sk', 'name', 'Ústav hudobnej vedy SlovenskÔ akadémia vied'),
(139089, 109826, 'fr', 'name', 'Centre Hospitalier Universitaire de Nice'),
(139090, 109827, 'en', 'name', 'The Japanese Respiratory Society'),
(139091, 109827, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å‘¼åøå™Øå­¦ä¼š'),
(139092, 109828, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŁƒŁŁŠŁ„'),
(139093, 109828, 'en', 'name', 'University of Alkafeel'),
(139094, 109829, 'en', 'name', 'THE Japan Soy Sauce Technology Center'),
(139095, 109829, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é†¤ę²¹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(139096, 109830, 'en', 'name', 'Max Stern Academic College of Emek Yezreel'),
(139097, 109830, 'he', 'name', 'המכללה ×”××§×“×ž×™×Ŗ עמק ×™×–×Ø×¢××œ עדש מקה שטרן'),
(139098, 109831, 'en', 'name', 'Japanese Olympic Committee'),
(139099, 109831, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚ŖćƒŖćƒ³ćƒ”ćƒƒć‚Æå§”å“”ä¼š'),
(139100, 109832, 'fr', 'name', 'Ɖcole Nationale des Travaux Publics de l''Ɖtat'),
(139101, 109833, 'en', 'name', 'Calvin University'),
(139102, 109834, 'en', 'name', 'International Medical Foundation of Japan'),
(139103, 109834, 'ja', 'name', 'č²”å›£ę³•äŗŗę—„ęœ¬å›½éš›åŒ»ē™‚å›£'),
(139104, 109835, 'en', 'name', 'Centre for English, Translation, and Anglo-Portuguese Studies'),
(139105, 109836, 'de', 'name', 'Institut für Solarenergieforschung'),
(139106, 109836, 'en', 'name', 'Institute for Solar Energy Research Hamelin'),
(139107, 109837, 'en', 'name', 'University of Castilla-La Mancha'),
(139108, 109837, 'es', 'name', 'Universidad de Castilla-La Mancha'),
(139109, 109838, 'en', 'name', 'Sendai Medical Association'),
(139110, 109838, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗä»™å°åø‚åŒ»åø«ä¼š'),
(139111, 109839, 'hr', 'name', 'SveučiliŔte u Rijeci'),
(139112, 109839, 'no_lang_code', 'name', 'University of Rijeka'),
(139113, 109840, 'en', 'name', 'The Society for Near Eastern Studies in Japan'),
(139114, 109840, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚ŖćƒŖć‚Øćƒ³ćƒˆå­¦ä¼š'),
(139115, 109841, 'en', 'name', 'Indian Institute of Technology Mandi'),
(139116, 109841, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą¤£ą„ą¤”ą„€'),
(139117, 109841, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®®ą®£ąÆą®Ÿą®æ'),
(139118, 109842, 'en', 'name', 'Institute of Normal and Pathological Physiology of the Slovak Academy of Sciences'),
(139119, 109842, 'sk', 'name', 'Ústav normÔlnej a patologickej fyziológie SlovenskÔ akadémia vied'),
(139120, 109843, 'it', 'name', 'Istituto Nazionale Genetica Molecolare'),
(139121, 109844, 'en', 'name', 'Indiana University Hospital'),
(139122, 109845, 'pt', 'name', 'Hospital LusĆ­adas Lisboa'),
(139123, 109846, 'ca', 'name', 'Universitat de Vigo'),
(139124, 109846, 'en', 'name', 'University of Vigo'),
(139125, 109846, 'es', 'name', 'Universidad de Vigo'),
(139126, 109846, 'gl', 'name', 'Universidade de Vigo'),
(139127, 109847, 'en', 'name', 'Australasian Sarcoma Study Group'),
(139128, 109848, 'en', 'name', 'Motojima General hospital'),
(139129, 109848, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå³¶é–€ä¼šęœ¬å³¶ē·åˆē—…é™¢'),
(139130, 109849, 'en', 'name', 'St Joseph''s Health Care'),
(139131, 109850, 'en', 'name', 'Sendai Akamon College'),
(139132, 109850, 'ja', 'name', 'ä»™å°čµ¤é–€ēŸ­ęœŸå¤§å­¦'),
(139133, 109851, 'en', 'name', 'National Research And Development Institute For Energy'),
(139134, 109852, 'en', 'name', 'ISM University of Management and Economics'),
(139135, 109852, 'lt', 'name', 'ISM Vadybos ir ekonomikos universitetas'),
(139136, 109853, 'en', 'name', 'Japan Institute of Information Technology'),
(139137, 109853, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗä¼ę„­ęƒ…å ±åŒ–å”ä¼š'),
(139138, 109854, 'en', 'name', 'National Sanatorium Hoshizuka Keiaien'),
(139139, 109854, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€ę˜Ÿå”šę•¬ę„›åœ’'),
(139140, 109855, 'en', 'name', 'Husson University'),
(139141, 109856, 'en', 'name', 'Government College Women University Faisalabad'),
(139142, 109856, 'ur', 'name', 'ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ کالج ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(139143, 109857, 'en', 'name', 'University of Kinshasa'),
(139144, 109857, 'fr', 'name', 'UniversitƩ de Kinshasa'),
(139145, 109858, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do Espírito Santo, Instituto Federal do Espírito Santo'),
(139146, 109859, 'en', 'name', 'Ƈanakkale Onsekiz Mart University'),
(139147, 109859, 'tr', 'name', 'Ƈanakkale Onsekiz Mart Ɯniversitesi'),
(139148, 109860, 'en', 'name', 'Health Data Hub'),
(139149, 109861, 'en', 'name', 'Sivas University of Science and Technology'),
(139150, 109861, 'tr', 'name', 'Sivas Bilim ve Teknoloji Üniversitesi'),
(139151, 109862, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ-Ł…ŁŠŁ„Ų©'),
(139152, 109862, 'fr', 'name', 'Centre Universitaire de Mila'),
(139153, 109863, 'ar', 'name', 'Ų§Ł„Ų£ŁƒŁ€Ł€Ų§ŲÆŁŠŁ…ŁŠŲ© Ų§Ł„Ł„ŁŠŲØŁŠŲ©'),
(139154, 109863, 'en', 'name', 'Libyan Academy'),
(139155, 109864, 'en', 'name', 'Autonomous University of Chiriqui'),
(139156, 109864, 'es', 'name', 'Universidad Autónoma de Chiriquí'),
(139157, 109865, 'en', 'name', 'The Illuminating Engineering Institute of Japan'),
(139158, 109865, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē…§ę˜Žå­¦ä¼š'),
(139159, 109866, 'en', 'name', 'Omiya Medical Association'),
(139160, 109866, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§å®®åŒ»åø«ä¼š'),
(139161, 109867, 'en', 'name', 'Tottori College of Nursing'),
(139162, 109867, 'ja', 'name', 'é³„å–ēœ‹č­·å¤§å­¦'),
(139163, 109868, 'en', 'name', 'Xidian University'),
(139164, 109868, 'zh', 'name', 'č„æå®‰ē”µå­ē§‘ęŠ€å¤§å­¦'),
(139165, 109869, 'en', 'name', 'Moscow Power Engineering Institute'),
(139166, 109869, 'ru', 'name', 'Московский ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(139167, 109870, 'en', 'name', 'Nile University of Nigeria'),
(139168, 109871, 'en', 'name', 'University of Pembangunan Nasional Veteran Jawa Timur'),
(139169, 109871, 'id', 'name', 'Universitas Pembangunan Nasional Veteran Jawa Timur'),
(139170, 109872, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų²Ų§Ų®Ū†'),
(139171, 109872, 'en', 'name', 'University of Zakho'),
(139172, 109873, 'en', 'name', 'Zero Waste Scotland'),
(139173, 109874, 'en', 'name', 'Protestant University of Rwanda'),
(139174, 109875, 'en', 'name', 'Baltic State Technical University Voenmeh'),
(139175, 109875, 'ru', 'name', 'Балтийский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Военмех'),
(139176, 109876, 'en', 'name', 'Hungarian Dance University'),
(139177, 109876, 'hu', 'name', 'Magyar TÔncművészeti Egyetem'),
(139178, 109877, 'en', 'name', 'Suranaree University of Technology'),
(139179, 109877, 'th', 'name', 'ดหาวณทยาคัยเทคโนโคยีสุรนารี'),
(139180, 109878, 'en', 'name', 'Tokyo University of Science'),
(139181, 109878, 'ja', 'name', 'ę±äŗ¬ē†ē§‘å¤§å­¦'),
(139182, 109879, 'en', 'name', 'MIT Academy of Engineering'),
(139183, 109880, 'en', 'name', 'Hiroshima HIGH-PRECISION Radiotherapy Cancer Center'),
(139184, 109880, 'ja', 'name', 'åŗƒå³¶ćŒć‚“é«˜ē²¾åŗ¦ę”¾å°„ē·šę²»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(139185, 109881, 'en', 'name', 'National Science Foundation Ice Core Facility'),
(139186, 109882, 'en', 'name', 'The Japanese Institute of Irrigation and Drainage'),
(139187, 109882, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę°“åœŸē·åˆē ”ē©¶ę‰€'),
(139188, 109883, 'no_lang_code', 'name', 'Mintek'),
(139189, 109884, 'en', 'name', 'Warsaw University of Life Sciences'),
(139190, 109884, 'pl', 'name', 'Szkoła Główna Gospodarstwa Wiejskiego w Warszawie'),
(139191, 109885, 'pt', 'name', 'Centro de Biotecnologia de Plantas da Beira Interior'),
(139192, 109886, 'de', 'name', 'UniversitƤtsklinikum Mannheim'),
(139193, 109886, 'en', 'name', 'University Medical Centre Mannheim'),
(139194, 109887, 'en', 'name', 'National Institute for Nuclear Physics, Pisa Division'),
(139195, 109887, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Pisa'),
(139196, 109888, 'id', 'name', 'Universitas Teknologi Digital'),
(139197, 109889, 'en', 'name', 'Indian Institute of Management Ranchi'),
(139198, 109889, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤‚ą¤šą„€'),
(139199, 109890, 'en', 'name', 'University of Huddersfield'),
(139200, 109891, 'en', 'name', 'Romanian Research and Development Institute for Gas Turbines'),
(139201, 109892, 'en', 'name', 'R Professional University Of Rehabilitation'),
(139202, 109892, 'ja', 'name', 'ć‚¢ćƒ¼ćƒ«åŒ»ē™‚å°‚é–€č·å¤§å­¦'),
(139203, 109893, 'en', 'name', 'University of Prishtina'),
(139204, 109893, 'sq', 'name', 'Universiteti i Prishtinƫs'),
(139205, 109894, 'be', 'name', 'ŠœŠ°Š³Ń–Š»Ń‘ŃžŃŠŗŃ– Š“Š·ŃŃ€Š¶Š°ŃžŠ½Ń‹ ŃžŠ½Ń–Š²ŠµŃ€ŃŃ–Ń‚ŃŃ‚ Ń–Š¼Ń ŠŃ€ŠŗŠ°Š“Š·Ń ŠšŃƒŠ»ŃŃˆŠ¾Š²Š°'),
(139206, 109894, 'en', 'name', 'Mogilev State A.Kuleshov University'),
(139207, 109895, 'en', 'name', 'Collin College'),
(139208, 109896, 'en', 'name', 'Beijing Institute of Mathematical Sciences and Applications'),
(139209, 109896, 'zh', 'name', 'åŒ—äŗ¬é›ę –ę¹–åŗ”ē”Øę•°å­¦ē ”ē©¶é™¢'),
(139210, 109897, 'en', 'name', 'Nakatsugawa Municipal General Hospital'),
(139211, 109897, 'ja', 'name', 'ē·åˆē—…é™¢äø­ę“„å·åø‚ę°‘ē—…é™¢'),
(139212, 109898, 'en', 'name', 'First Technical University'),
(139213, 109899, 'en', 'name', 'Kawaguchi Municipal Medical Center'),
(139214, 109899, 'ja', 'name', 'å·å£åø‚ē«‹åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(139215, 109900, 'en', 'name', 'Florida Gulf Coast University'),
(139216, 109901, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأعمال ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§.'),
(139217, 109901, 'en', 'name', 'University of Business and Technology'),
(139218, 109902, 'en', 'name', 'Nanjing Agricultural University'),
(139219, 109902, 'zh', 'name', 'å—äŗ¬å†œäøšå¤§å­¦'),
(139220, 109903, 'ar', 'name', 'Ł…ŲÆŁŠŁ†Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ² Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(139221, 109903, 'en', 'name', 'King Abdulaziz City for Science and Technology'),
(139222, 109904, 'en', 'name', 'Thai-Nichi Institute of Technology'),
(139223, 109904, 'th', 'name', 'ąøŖąø–ąø²ąøšąø±ąø™ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµą¹„ąø—ąø¢-ąøąøµą¹ˆąø›ąøøą¹ˆąø™'),
(139224, 109905, 'en', 'name', 'Fırat University'),
(139225, 109905, 'tr', 'name', 'Fırat Üniversitesi'),
(139226, 109906, 'en', 'name', 'Sabzevar University of Medical Sciences'),
(139227, 109907, 'en', 'name', 'Berkeley Eye Center'),
(139228, 109908, 'en', 'name', 'Holy Cross College'),
(139229, 109909, 'en', 'name', 'Institute of Zoology of the Slovak Academy of Sciences'),
(139230, 109909, 'sk', 'name', 'Ústav zoológie SlovenskÔ akadémia vied'),
(139231, 109910, 'en', 'name', 'Hokkaido Gastroenterology Hospital'),
(139232, 109910, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå½°å’Œä¼šåŒ—ęµ·é“ę¶ˆåŒ–å™Øē§‘ē—…é™¢'),
(139233, 109911, 'en', 'name', 'Hanshan Normal University'),
(139234, 109912, 'id', 'name', 'Universitas Sains dan Teknologi Komputer'),
(139235, 109913, 'no_lang_code', 'name', 'MSD (India)'),
(139236, 109914, 'en', 'name', 'Nagano Prefectural Government'),
(139237, 109914, 'ja', 'name', 'é•·é‡ŽēœŒåŗ'),
(139238, 109915, 'en', 'name', 'Partners In Health'),
(139239, 109916, 'en', 'name', 'NIMS University'),
(139240, 109917, 'en', 'name', 'Bangladesh Agricultural Research Council'),
(139241, 109918, 'en', 'name', 'University of Humanities and Economics in Lodz'),
(139242, 109918, 'pl', 'name', 'Akademia Humanistyczno-Ekonomiczna w Łodzi'),
(139243, 109919, 'en', 'name', 'Lauder Business School'),
(139244, 109920, 'en', 'name', 'Ishikawa Prefecture Fisheries Research Center'),
(139245, 109920, 'ja', 'name', 'ēŸ³å·ēœŒę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(139246, 109921, 'en', 'name', 'Malawi University of Business and Applied Sciences'),
(139247, 109922, 'en', 'name', 'Roma Tre University'),
(139248, 109922, 'fr', 'name', 'UniversitƩ de Rome III'),
(139249, 109922, 'it', 'name', 'UniversitĆ  degli Studi Roma Tre'),
(139250, 109923, 'en', 'name', 'Niigata Seiryo WOMEN''S Junior College'),
(139251, 109923, 'ja', 'name', 'ę–°ę½Ÿé’é™µå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(139252, 109924, 'en', 'name', 'University of Turku'),
(139253, 109924, 'fi', 'name', 'Turun yliopisto'),
(139254, 109924, 'sv', 'name', 'ƅbo universitet'),
(139255, 109925, 'id', 'name', 'IAIN Kudus, Institut Agama Islam Negeri'),
(139256, 109926, 'en', 'name', 'Agricultural Society of Japan'),
(139257, 109926, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§ę—„ęœ¬č¾²ä¼š'),
(139258, 109927, 'en', 'name', 'La Jolla Institute for Immunology'),
(139259, 109928, 'en', 'name', 'Pravara Rural College of Pharmacy Pravaranagar'),
(139260, 109929, 'en', 'name', 'Indian Institute of Management Raipur'),
(139261, 109929, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(139262, 109930, 'en', 'name', 'Henan Polytechnic University'),
(139263, 109930, 'zh', 'name', 'ę²³å—ē†å·„å¤§å­¦'),
(139264, 109931, 'en', 'name', 'Nagoya City Institute For Environmental Sciences'),
(139265, 109931, 'ja', 'name', 'åå¤å±‹åø‚ē’°å¢ƒē§‘å­¦čŖæęŸ»ć‚»ćƒ³ć‚æćƒ¼'),
(139266, 109932, 'en', 'name', 'Ibero American University'),
(139267, 109932, 'es', 'name', 'Universidad Iberoamericana'),
(139268, 109933, 'pt', 'name', 'Direção Geral do Património Cultural'),
(139269, 109934, 'en', 'name', 'University of Haripur'),
(139270, 109934, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ہری Ł¾ŁˆŲ±ā€Ž'),
(139271, 109935, 'en', 'name', 'Kamakura Women''s Junior College'),
(139272, 109935, 'ja', 'name', 'éŽŒå€‰å„³å­å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(139273, 109936, 'en', 'name', 'University School of Physical Education in Kraków'),
(139274, 109936, 'pl', 'name', 'Akademia Wychowania Fizycznego w Krakowie'),
(139275, 109937, 'en', 'name', 'Japan Grain Inspection Association'),
(139276, 109937, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē©€ē‰©ę¤œå®šå”ä¼š'),
(139277, 109938, 'en', 'name', 'Royal Roads University'),
(139278, 109939, 'en', 'name', 'Aurel Vlaicu University of Arad'),
(139279, 109939, 'ro', 'name', 'Universitatea Aurel Vlaicu din Arad'),
(139280, 109940, 'pt', 'name', 'Centro ALGORITMI'),
(139281, 109941, 'en', 'name', 'DeepSeek, DeepSeek (China)'),
(139282, 109941, 'zh', 'name', 'ę­å·žę·±åŗ¦ę±‚ē“¢äŗŗå·„ę™ŗčƒ½åŸŗē”€ęŠ€ęœÆē ”ē©¶ęœ‰é™å…¬åø'),
(139283, 109942, 'en', 'name', 'Library and Archives Northern Territory'),
(139284, 109943, 'es', 'name', 'Instituto Tecnológico Superior de Huauchinango'),
(139285, 109944, 'id', 'name', 'Sekolah Tinggi Ilmu Kesehatan Medistra Indonesia'),
(139286, 109945, 'en', 'name', 'Osaka Medical Association'),
(139287, 109945, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜ŖåŗœåŒ»åø«ä¼š'),
(139288, 109946, 'en', 'name', 'Chubu Region Institute for Social and Economic Research'),
(139289, 109946, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­éƒØåœē¤¾ä¼šēµŒęøˆē ”ē©¶ę‰€'),
(139290, 109947, 'en', 'name', 'Jusendo Hospital'),
(139291, 109947, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę¹Æęµ…å ±ę©ä¼šåÆæę³‰å ‚ē¶œåˆē—…é™¢'),
(139292, 109948, 'en', 'name', 'Tohoku Seikatsu Bunka Junior College'),
(139293, 109948, 'ja', 'name', 'ę±åŒ—ē”Ÿę“»ę–‡åŒ–å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(139294, 109949, 'en', 'name', 'Yamaguchi Prefectural Fisheries Research Center'),
(139295, 109949, 'ja', 'name', 'å±±å£ēœŒę°“ē”£ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(139296, 109950, 'fr', 'name', 'Institut des sciences de la mer'),
(139297, 109951, 'en', 'name', 'Instituto Tecnológico Vale, Vale Technological Institute'),
(139298, 109952, 'en', 'name', 'Malmƶ University'),
(139299, 109952, 'sv', 'name', 'Malmƶ universitet'),
(139300, 109953, 'en', 'name', 'Division of Ocean Sciences'),
(139301, 109954, 'cs', 'name', 'Ú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'),
(139302, 109954, 'en', 'name', 'Czech Academy of Sciences, Institute of Photonics and Electronics'),
(139303, 109955, 'en', 'name', 'Mining and Metallurgical Institute of Tajikistan'),
(139304, 109955, 'ru', 'name', 'Горно-Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ТаГжикистана'),
(139305, 109955, 'tg', 'name', 'Š”Š¾Š½ŠøŃˆŠŗŠ°Š“Š°Šø ŠŗÓÆŅ³ŠøŃŽ Š¼ŠµŃ‚Š°Š»Š»ŃƒŃ€Š³ŠøŠø Тоҷикистон'),
(139306, 109956, 'en', 'name', 'O.M. Beketov National University of Urban Economy in Kharkiv'),
(139307, 109956, 'ru', 'name', 'Š„Š°Ń€ŃŒŠŗŠ¾Š²ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ гороГского Ń…Š¾Š·ŃŠ¹ŃŃ‚Š²Š°'),
(139308, 109956, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š¼Ń–ŃŃŒŠŗŠ¾Š³Š¾ госпоГарства імені Šž. М. Бекетова'),
(139309, 109957, 'en', 'name', 'Policy Study Group'),
(139310, 109957, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå›½éš›ēµŒęøˆę”æē­–čŖæęŸ»ä¼š'),
(139311, 109958, 'fr', 'name', 'HEC MontrĆ©al, Ɖcole des Hautes Ɖtudes commerciales de MontrĆ©al'),
(139312, 109959, 'fr', 'name', 'Ɖcole Nationale d''Administration Publique'),
(139313, 109960, 'en', 'name', 'Cukurova University'),
(139314, 109960, 'tr', 'name', 'Ƈukurova Ɯniversitesi'),
(139315, 109961, 'en', 'name', 'University of Kyrenia'),
(139316, 109961, 'tr', 'name', 'Girne Üniversitesi'),
(139317, 109962, 'en', 'name', 'Our Lady of Fatima University'),
(139318, 109962, 'tl', 'name', 'Pamantasang Our Lady of Fatima'),
(139319, 109963, 'en', 'name', 'Heilongjiang University of Chinese Medicine'),
(139320, 109964, 'en', 'name', 'Institute of Geological Sciences'),
(139321, 109965, 'en', 'name', 'Public Health Agency of Sweden'),
(139322, 109966, 'ja', 'name', 'ęœ­å¹Œå­¦é™¢å¤§å­¦'),
(139323, 109966, 'no_lang_code', 'name', 'Sapporo Gakuin University'),
(139324, 109967, 'en', 'name', 'Alaska Division of Geological and Geophysical Surveys'),
(139325, 109968, 'en', 'name', 'North Atlantic Treaty Organization'),
(139326, 109968, 'fr', 'name', 'Organisation du traitƩ de l''Atlantique Nord'),
(139327, 109969, 'pt', 'name', 'Direção de Formação'),
(139328, 109970, 'de', 'name', 'Deutsches Institut für Ernährungsforschung Potsdam-Rehbrücke'),
(139329, 109970, 'en', 'name', 'German Institute of Human Nutrition'),
(139330, 109971, 'en', 'name', 'Research Institute for Safety Engineering'),
(139331, 109971, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē·åˆå®‰å…Øå·„å­¦ē ”ē©¶ę‰€');
INSERT INTO `ror_settings` VALUES
(139332, 109972, 'en', 'name', 'Todachuo General Hospital'),
(139333, 109972, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę±å…‰ä¼šęˆøē”°äø­å¤®ē·åˆē—…é™¢'),
(139334, 109973, 'en', 'name', 'Kawasaki Rinko General Hospital'),
(139335, 109973, 'ja', 'name', 'ē·åˆå·å“Žč‡ØęøÆē—…é™¢'),
(139336, 109974, 'en', 'name', 'Niroo Research Institute'),
(139337, 109975, 'en', 'name', 'BPI Lisbon'),
(139338, 109975, 'pt', 'name', 'BPI Lisboa (Portugal)'),
(139339, 109976, 'en', 'name', 'National Institute of Mental Health'),
(139340, 109977, 'en', 'name', 'Westcliff University'),
(139341, 109978, 'en', 'name', 'HUTECH University'),
(139342, 109978, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c CĆ“ng nghệ ThĆ nh phố Hồ ChĆ­ Minh, ĐẔi hį»c HUTECH'),
(139343, 109979, 'cs', 'name', 'Muzeum hlavnƭho města Prahy'),
(139344, 109979, 'en', 'name', 'Museum of Prague'),
(139345, 109980, 'en', 'name', 'Kurobe City Hospital'),
(139346, 109980, 'ja', 'name', 'é»’éƒØåø‚ę°‘ē—…é™¢'),
(139347, 109981, 'bn', 'name', 'ą¦¤ą§ą¦°ą¦æą¦Ŗą§ą¦°ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(139348, 109981, 'en', 'name', 'Tripura University'),
(139349, 109981, 'hi', 'name', 'ą¤¤ą„ą¤°ą¤æą¤Ŗą„ą¤°ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(139350, 109981, 'ta', 'name', 'திரிபுரா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(139351, 109982, 'en', 'name', 'PrĆ­ncipe Felipe Research Center'),
(139352, 109982, 'es', 'name', 'Centro de Investigacion Principe Felipe'),
(139353, 109983, 'en', 'name', 'The Takeda Foundation'),
(139354, 109983, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę­¦ē”°čØˆęø¬å…ˆē«ÆēŸ„č²”å›£'),
(139355, 109984, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Arts DĆ©coratifs'),
(139356, 109985, 'en', 'name', 'Kagoshima Prefectural Government'),
(139357, 109985, 'ja', 'name', 'é¹æå…å³¶ēœŒåŗ'),
(139358, 109986, 'en', 'name', 'University of Scranton'),
(139359, 109986, 'es', 'name', 'Universidad de Scranton'),
(139360, 109986, 'fr', 'name', 'UniversitƩ de scranton'),
(139361, 109987, 'en', 'name', 'Somalia National Bureau of Statistics'),
(139362, 109987, 'so', 'name', 'Hay’adda Istaatistikada Qaranka Soomaaliya'),
(139363, 109988, 'en', 'name', 'Jyoban Hospital of Tokiwa Foundation'),
(139364, 109988, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćØćć‚ä¼šåøøē£ē—…é™¢'),
(139365, 109989, 'en', 'name', 'Southampton Solent University'),
(139366, 109990, 'en', 'name', 'CIRCE - Technology Centre'),
(139367, 109990, 'es', 'name', 'CIRCE - Centro Tecnológico'),
(139368, 109991, 'en', 'name', 'Federal University of Technology Owerri'),
(139369, 109992, 'no_lang_code', 'name', 'MSD (Netherlands)'),
(139370, 109993, 'en', 'name', 'Nara Prefectural Pharmaceutical Research Center'),
(139371, 109993, 'ja', 'name', 'å„ˆč‰ÆēœŒč–¬äŗ‹ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(139372, 109994, 'en', 'name', 'NOSM University'),
(139373, 109994, 'fr', 'name', 'EMNO UniversitƩ'),
(139374, 109995, 'en', 'name', 'University of the City of Manila'),
(139375, 109996, 'en', 'name', 'Kamma Memorial Hospital'),
(139376, 109996, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗåšę„›ä¼šč…é–“čØ˜åæµē—…é™¢'),
(139377, 109997, 'pt', 'name', 'ForƧa AƩrea Portuguesa'),
(139378, 109998, 'en', 'name', 'VIB Single Cell Core'),
(139379, 109999, 'es', 'name', 'Corporación Universitaria Lasallista'),
(139380, 110000, 'en', 'name', 'University of Dubrovnik'),
(139381, 110000, 'hr', 'name', 'SveučiliŔte u Dubrovniku'),
(139382, 110001, 'en', 'name', 'All India Institute of Ayurveda, New Delhi'),
(139383, 110002, 'fr', 'name', 'Sinergies'),
(139384, 110003, 'cs', 'name', 'Český nĆ”rodnĆ­ uzel EvropskĆ© sĆ­tě infrastruktur klinickĆ©ho výzkumu'),
(139385, 110003, 'en', 'name', 'Czech National Node to the European Clinical Research Infrastructure Network'),
(139386, 110004, 'es', 'name', 'Hospital Central Norte de Petroleos Mexicanos'),
(139387, 110005, 'no_lang_code', 'name', 'Oracle (Portugal)'),
(139388, 110006, 'en', 'name', 'Griffith College'),
(139389, 110007, 'no_lang_code', 'name', 'Nefrodial SAS Renal Unit, Unidad Renal Nefrodial SAS, Unidad Renal Nefrodial SAS (Portugal)'),
(139390, 110008, 'en', 'name', 'HMS Hamburg Media School GmbH, Hamburg Media School'),
(139391, 110009, 'en', 'name', 'Scientific Center for Optical and Electron Microscopy'),
(139392, 110010, 'en', 'name', 'Hokkaido Industrial Technology Center'),
(139393, 110010, 'ja', 'name', 'åŒ—ęµ·é“ē«‹å·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(139394, 110011, 'en', 'name', 'Regional Government of Madeira'),
(139395, 110011, 'pt', 'name', 'Governo Regional da Madeira'),
(139396, 110012, 'pt', 'name', 'Instituto de Estudos ClƔssicos'),
(139397, 110013, 'da', 'name', 'Grundfos Fond'),
(139398, 110013, 'en', 'name', 'Grundfos Foundation'),
(139399, 110014, 'en', 'name', 'Nigeria Police Academy'),
(139400, 110015, 'cy', 'name', 'Prifysgol Anglia Ruskin'),
(139401, 110015, 'en', 'name', 'Anglia Ruskin University, Anglia Ruskin University Higher Education Corporation'),
(139402, 110016, 'it', 'name', 'Agenzia Regionale per la Protezione dell''Ambiente Campania'),
(139403, 110017, 'pt', 'name', 'Sociedade Portuguesa de Otorrinolaringologia e Cirurgia de CabeƧa e PescoƧo'),
(139404, 110018, 'pt', 'name', 'Centro de Investigação em Materiais'),
(139405, 110019, 'pt', 'name', 'Centro para a Excelência e Inovação na Indústria Automóvel'),
(139406, 110020, 'en', 'name', 'Sir Mark Mitchell Research Foundation'),
(139407, 110021, 'en', 'name', 'All India Institute of Medical Sciences Guwahati'),
(139408, 110021, 'hi', 'name', 'अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤—ą„ą¤µą¤¾ą¤¹ą¤¾ą¤Ÿą„€'),
(139409, 110022, 'fr', 'name', 'Biopathologie de la myƩline, neuroprotection et stratƩgies thƩrapeutiques'),
(139410, 110023, 'fr', 'name', 'Centre de Recherche sur l''AmƩrique PrƩ-hispanique'),
(139411, 110024, 'en', 'name', 'Image Insight Inc. (United States)'),
(139412, 110025, 'en', 'name', 'The Japan Bloodhorse Breeders''Association'),
(139413, 110025, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č»½ēØ®é¦¬å”ä¼š'),
(139414, 110026, 'en', 'name', 'National Council for Civilian Research and Development'),
(139415, 110027, 'pt', 'name', 'Centro de Estudos de Sociologia e EstƩtica Musical'),
(139416, 110028, 'de', 'name', 'Muthesius Kunsthochschule'),
(139417, 110028, 'en', 'name', 'Muthesius University of Fine Arts and Design'),
(139418, 110029, 'en', 'name', 'All India Institute of Medical Sciences Bibinagar'),
(139419, 110030, 'en', 'name', 'UTMS Society of Japan'),
(139420, 110030, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗUTMS協会'),
(139421, 110031, 'ca', 'name', 'Universitat del PaĆ­s Basc'),
(139422, 110031, 'en', 'name', 'University of the Basque Country'),
(139423, 110031, 'es', 'name', 'Universidad del PaĆ­s Vasco'),
(139424, 110031, 'eu', 'name', 'Euskal Herriko Unibertsitatea'),
(139425, 110032, 'de', 'name', 'Naturmuseum Solothurn'),
(139426, 110032, 'en', 'name', 'Museum of Natural History Solothurn'),
(139427, 110032, 'fr', 'name', 'MusĆ©e d’histoire naturelle de Soleure'),
(139428, 110033, 'en', 'name', 'Naval Information Warfare Systems Command'),
(139429, 110034, 'cs', 'name', 'Laboratoř fyziky povrchÅÆ – OptickĆ” drĆ”ha pro výzkum materiĆ”lÅÆ'),
(139430, 110034, 'en', 'name', 'Surface Physics Laboratory – Hydrogen Technology Centre'),
(139431, 110035, 'no_lang_code', 'name', 'Lima Cabrita SGPS, Lima Cabrita SGPS S.A. (Portugal), Lima Cabrita SGPS, S.A.'),
(139432, 110036, 'en', 'name', 'University of Food Technologies'),
(139433, 110037, 'en', 'name', 'The Japanese Society of Printing Science and Technology'),
(139434, 110037, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å°åˆ·å­¦ä¼š'),
(139435, 110038, 'fr', 'name', 'Astrophysique, Instrumentation et ModƩlisation'),
(139436, 110039, 'en', 'name', 'Tochigi Prefectural Okamotodai Hospital'),
(139437, 110039, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗę ƒęœØēœŒē«‹å²”ęœ¬å°ē—…é™¢'),
(139438, 110040, 'en', 'name', 'Environmental Radioactivity Monitoring Center of Fukushima'),
(139439, 110040, 'ja', 'name', 'ē¦å³¶ēœŒåŽŸå­åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(139440, 110041, 'en', 'name', 'University of Ilesa'),
(139441, 110042, 'el', 'name', 'Ελληνική Εταιρεία Ī•Ļ€ĪµĪÆĪ³ĪæĻ…ĻƒĪ±Ļ‚ Ī ĻĪæĪ½ĪæĻƒĪæĪŗĪæĪ¼ĪµĪ¹Ī±ĪŗĪ®Ļ‚ ΦροντίΓας'),
(139442, 110042, 'en', 'name', 'Hellenic Society of Emergency Prehospital Care'),
(139443, 110043, 'no_lang_code', 'name', 'Wipro (India)'),
(139444, 110044, 'pt', 'name', 'Centro de Investigação em Estruturas e Construção'),
(139445, 110045, 'en', 'name', 'Embry-Riddle Aeronautical University Daytona Beach Florida Campus'),
(139446, 110046, 'en', 'name', 'Japan Soil Association'),
(139447, 110046, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åœŸå£Œå”ä¼š'),
(139448, 110047, 'es', 'name', 'Instituto Tecnológico Superior de Huichapan'),
(139449, 110048, 'en', 'name', 'Baldwin Wallace University'),
(139450, 110049, 'en', 'name', 'California Polytechnic State University'),
(139451, 110049, 'es', 'name', 'Universidad PolitƩcnica Estatal de California'),
(139452, 110049, 'fr', 'name', 'UniversitĆ© d''Ɖtat polytechnique de californie'),
(139453, 110050, 'pt', 'name', 'Museu Municipal Dr Santos Rocha'),
(139454, 110051, 'en', 'name', 'St Vincent''s Hospital'),
(139455, 110052, 'en', 'name', 'Argosy University'),
(139456, 110053, 'en', 'name', 'The Architectural Association of Japan'),
(139457, 110053, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰å”ä¼š'),
(139458, 110054, 'pt', 'name', 'AgĆŖncia Espacial Portuguesa'),
(139459, 110055, 'en', 'name', 'Air Force Institute of Technology Kaduna'),
(139460, 110056, 'en', 'name', 'University of Kansas'),
(139461, 110056, 'es', 'name', 'Universidad de Kansas'),
(139462, 110056, 'fr', 'name', 'UniversitƩ du kansas'),
(139463, 110057, 'de', 'name', 'CharitƩ - UniversitƤtsmedizin Berlin'),
(139464, 110058, 'en', 'name', 'Kansai Medical University'),
(139465, 110058, 'ja', 'name', 'é–¢č„æåŒ»ē§‘å¤§å­¦'),
(139466, 110059, 'en', 'name', 'NSF CI Compass'),
(139467, 110060, 'en', 'name', 'Klabat University'),
(139468, 110060, 'id', 'name', 'Universitas Klabat'),
(139469, 110061, 'en', 'name', 'Global Green Growth Institute, Global Green Growth Institute (South Korea)'),
(139470, 110061, 'ko', 'name', 'źø€ė”œė²Œė…¹ģƒ‰ģ„±ģž„ģ—°źµ¬ģ†Œ'),
(139471, 110062, 'en', 'name', 'Japan Housing Association'),
(139472, 110062, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½å®…å”ä¼š'),
(139473, 110063, 'en', 'name', 'Jacobs (Australia), Jacobs Australia Pty Ltd'),
(139474, 110064, 'de', 'name', 'Institut für Verhaltenswissenschaften'),
(139475, 110064, 'en', 'name', 'Institute of Behavioral Sciences'),
(139476, 110065, 'en', 'name', 'Federal University of Health Sciences, Ila-Orangun'),
(139477, 110066, 'ca', 'name', 'Universitat de PĆ dua'),
(139478, 110066, 'de', 'name', 'UniversitƤt Padua'),
(139479, 110066, 'en', 'name', 'University of Padua'),
(139480, 110066, 'fr', 'name', 'UniversitƩ de padoue'),
(139481, 110066, 'it', 'name', 'UniversitĆ  degli Studi di Padova'),
(139482, 110066, 'sl', 'name', 'Univerza v Padovi'),
(139483, 110067, 'en', 'name', 'The Palliative Care Centre for Excellence in Research and Education'),
(139484, 110068, 'pt', 'name', 'Serviço Regional de Proteção Civil e Bombeiros dos Açores'),
(139485, 110069, 'en', 'name', 'Suzhou Institute of Nano-tech and Nano-bionics'),
(139486, 110069, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢č‹å·žēŗ³ē±³ęŠ€ęœÆäøŽēŗ³ē±³ä»æē”Ÿē ”ē©¶ę‰€'),
(139487, 110070, 'en', 'name', 'University of Rwanda'),
(139488, 110070, 'fr', 'name', 'UniversitƩ du Rwanda'),
(139489, 110070, 'rw', 'name', 'Kaminuza y’u Rwanda'),
(139490, 110071, 'de', 'name', 'Institut für Entwicklungsplanung und Strukturforschung'),
(139491, 110071, 'no_lang_code', 'name', 'Institut für Entwicklungsplanung und Strukturforschung (Germany)'),
(139492, 110072, 'en', 'name', 'Sanaka Educational Trust’s Group of Institutions'),
(139493, 110073, 'en', 'name', 'Co-design Center for Quantum Advantage'),
(139494, 110074, 'no_lang_code', 'name', 'DIGESTAID, DIGESTAID (Portugal)'),
(139495, 110075, 'no_lang_code', 'name', 'Octapharma (Switzerland)'),
(139496, 110076, 'no_lang_code', 'name', 'Consulmark 2 Estudos de Mercado e Trabalho de Campo (Portugal), Consulmark Market and Field Studies'),
(139497, 110077, 'en', 'name', 'Japan Scientific Feeds Association'),
(139498, 110077, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē§‘å­¦é£¼ę–™å”ä¼š'),
(139499, 110078, 'es', 'name', 'Universidad PolitƩcnica de Santa Rosa Jauregui'),
(139500, 110079, 'pt', 'name', 'Sociedade Portuguesa de EstatĆ­stica'),
(139501, 110080, 'en', 'name', 'Production and Archive of Social Science Data'),
(139502, 110081, 'en', 'name', 'University of Quebec in Montreal'),
(139503, 110081, 'fr', 'name', 'UniversitƩ du QuƩbec Ơ MontrƩal'),
(139504, 110082, 'en', 'name', 'Saito Koyu Medical Center'),
(139505, 110082, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗč„æéƒ½å…ę¹ÆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(139506, 110083, 'pt', 'name', 'Conselho Nacional de Ɖtica para as CiĆŖncias da Vida'),
(139507, 110084, 'pt', 'name', 'Centro de Direito do Consumo'),
(139508, 110085, 'en', 'name', 'Kagawa Industry Support Foundation'),
(139509, 110085, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‹ćŒć‚ē”£ę„­ę”Æę“č²”å›£'),
(139510, 110086, 'en', 'name', 'World Wide Fund for Nature Japan'),
(139511, 110086, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø–ē•Œč‡Ŗē„¶äæč­·åŸŗé‡‘ć‚øćƒ£ćƒ‘ćƒ³'),
(139512, 110087, 'en', 'name', 'Hong Kong Polytechnic University'),
(139513, 110087, 'zh', 'name', '香港理巄大學'),
(139514, 110088, 'en', 'name', 'Laboratory of Biophotonics and Pharmacology'),
(139515, 110088, 'fr', 'name', 'Laboratoire de Biophotonique et Pharmacologie'),
(139516, 110089, 'en', 'name', 'Ispahani Islamia Eye Institute and Hospital'),
(139517, 110090, 'pt', 'name', 'Fundação ÁrpÔd Szenes Vieira da Silva'),
(139518, 110091, 'en', 'name', 'Saveetha University'),
(139519, 110092, 'en', 'name', 'South Miyagi Medical Center'),
(139520, 110092, 'ja', 'name', 'ćæć‚„ćŽēœŒå—äø­ę øē—…é™¢'),
(139521, 110093, 'fr', 'name', 'Maladies Infectieuses et Vecteurs: Ɖcologie, GĆ©nĆ©tique, Ɖvolution et ContrĆ“le'),
(139522, 110094, 'es', 'name', 'Fundación Interhospitalaria para la Investigación Cardiovascular'),
(139523, 110095, 'en', 'name', 'National Policing Institute'),
(139524, 110096, 'pt', 'name', 'Hospital Santa Luzia'),
(139525, 110097, 'en', 'name', 'European Marine Biological Resource Centre'),
(139526, 110098, 'en', 'name', 'Institute of Clinical and Translational Research of the Slovak Academy of Sciences'),
(139527, 110098, 'sk', 'name', 'Ústav klinickĆ©ho a translačnĆ©ho výskumu BiomedicĆ­nskeho centra Slovenskej akadĆ©mie vied'),
(139528, 110099, 'pt', 'name', 'Cooperativa de Formação e Animação Cultural CRL'),
(139529, 110100, 'fr', 'name', 'Labex EMC3'),
(139530, 110101, 'en', 'name', 'Iwate Prefectural Ichinohe Hospital'),
(139531, 110101, 'ja', 'name', 'å²©ę‰‹ēœŒē«‹äø€ęˆøē—…é™¢'),
(139532, 110102, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł…Ų±Ų³Ł„ŁŠ Ų¹ŲØŲÆ الله تيبازة الجزائر'),
(139533, 110102, 'fr', 'name', 'Centre Universitaire Morsli Abdellah de Tipaza'),
(139534, 110103, 'en', 'name', 'Japanese Association of Occupational Therapists'),
(139535, 110103, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½œę„­ē™‚ę³•å£«å”ä¼š'),
(139536, 110104, 'en', 'name', 'Binnig and Rohrer Nanotechnology Center'),
(139537, 110105, 'fr', 'name', 'Centre de recherche sur le droit des marchƩs et des investissements internationaux'),
(139538, 110106, 'en', 'name', 'European Research Laboratory for Rheumatoid Polyarthritis'),
(139539, 110106, 'fr', 'name', 'Laboratoire de recherche européen pour la polyarthrite rhumatoïde'),
(139540, 110107, 'es', 'name', 'Instituto de GeologĆ­a'),
(139541, 110108, 'de', 'name', 'Zentrum Nachhaltige Entwicklung'),
(139542, 110108, 'en', 'name', 'Centre for Sustainable Development'),
(139543, 110109, 'no_lang_code', 'name', 'Caixa Geral de Depositos, Caixa Geral de Depositos (Portugal)'),
(139544, 110110, 'id', 'name', 'Universitas Nahdlatul Ulama Blitar'),
(139545, 110111, 'en', 'name', 'Łukasiewicz Research Network - Institute of Aviation'),
(139546, 110111, 'pl', 'name', 'Sieć Badawcza Łukasiewicz - Instytut Lotnictwa'),
(139547, 110112, 'en', 'name', 'Japan Copper Development Association'),
(139548, 110112, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬éŠ…ć‚»ćƒ³ć‚æćƒ¼'),
(139549, 110113, 'en', 'name', 'Amagasaki City Institute of Public Health'),
(139550, 110113, 'ja', 'name', 'å°¼å“Žåø‚ē«‹č”›ē”Ÿē ”ē©¶ę‰€'),
(139551, 110114, 'en', 'name', 'Sefako Makgatho Health Sciences University'),
(139552, 110115, 'en', 'name', 'University of Hormozgan'),
(139553, 110116, 'en', 'name', 'Cluster University of Jammu'),
(139554, 110117, 'no_lang_code', 'name', 'Karl Storz (Germany)'),
(139555, 110118, 'en', 'name', 'Soka University'),
(139556, 110118, 'ja', 'name', '創侔大学'),
(139557, 110119, 'en', 'name', 'Shri Lal Bahadur Shastri Degree College, Gonda'),
(139558, 110119, 'hi', 'name', 'ą¤¶ą„ą¤°ą„€ लाल ą¤¬ą¤¹ą¤¾ą¤¦ą„ą¤° ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤°ą„€ ą¤”ą¤æą¤—ą„ą¤°ą„€ ą¤•ą„‰ą¤²ą„‡ą¤œ, ą¤—ą„‹ą¤£ą„ą¤”ą¤¾'),
(139559, 110120, 'es', 'name', 'Escuela Radical'),
(139560, 110121, 'en', 'name', 'Institute of Public Health Bengaluru'),
(139561, 110122, 'en', 'name', 'Physiology & Experimental Medicine of the Heart and Muscles'),
(139562, 110122, 'fr', 'name', 'Physiologie et MƩdecine ExpƩrimentale du Coeur et des Muscles'),
(139563, 110123, 'es', 'name', 'Centro de AstropartĆ­culas y FĆ­sica de Altas EnergĆ­as'),
(139564, 110124, 'en', 'name', 'Mines Paris, PSL University, Centre for management science (CGS)'),
(139565, 110124, 'fr', 'name', 'Centre de Gestion Scientifique, Mines Paris, UniversitƩ PSL, Centre de Gestion Scientifique (CGS)'),
(139566, 110125, 'pt', 'name', 'Laboratório de Energia Solar'),
(139567, 110126, 'no_lang_code', 'name', 'C3J Therapeutics (United States)'),
(139568, 110127, 'en', 'name', 'Marine Ecosystems and oRganisms reSEArch Lab'),
(139569, 110128, 'en', 'name', 'National Sanatorium Miyako Nanseien'),
(139570, 110128, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€å®®å¤å—é™åœ’'),
(139571, 110129, 'en', 'name', 'Shonan Institute of Chemoinformatics and Mathmatical Chemistry'),
(139572, 110129, 'ja', 'name', 'ę¹˜å—ęƒ…å ±ę•°ē†åŒ–å­¦ē ”ē©¶ę‰€'),
(139573, 110130, 'en', 'name', 'University of South Dakota'),
(139574, 110130, 'es', 'name', 'Universidad de Dakota del Sur'),
(139575, 110130, 'fr', 'name', 'UniversitƩ du Dakota du Sud'),
(139576, 110131, 'en', 'name', 'Foundation for Innovation in Cardiometabolism and Nutrition'),
(139577, 110131, 'fr', 'name', 'Fondation pour l''Innovation en CardiomƩtabolisme et Nutrition'),
(139578, 110132, 'en', 'name', 'PROPUL Evidence LLP, PROPUL Evidence LLP (India)'),
(139579, 110133, 'de', 'name', 'Max-Planck-Institut für Infektionsbiologie'),
(139580, 110133, 'en', 'name', 'Max Planck Institute for Infection Biology'),
(139581, 110134, 'en', 'name', 'Portuguese Environment Agency'),
(139582, 110134, 'pt', 'name', 'AgĆŖncia Portuguesa do Ambiente'),
(139583, 110135, 'en', 'name', 'Research Institute for Higher Education and Science'),
(139584, 110135, 'es', 'name', 'Instituto Interuniversitario de Investigación Avanzada sobre Evaluación de la Ciencia y la Universidad'),
(139585, 110136, 'en', 'name', 'Yildirim Beyazit University Yenimahalle Education and Research Hospital'),
(139586, 110137, 'en', 'name', 'The Institute of Oriental Philosophy'),
(139587, 110137, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±ę“‹å“²å­¦ē ”ē©¶ę‰€'),
(139588, 110138, 'no_lang_code', 'name', 'Metablue Solution (Portugal)'),
(139589, 110139, 'fr', 'name', 'Franche-ComtĆ© Ɖlectronique MĆ©canique Thermique et Optique - Sciences et Technologies'),
(139590, 110140, 'cs', 'name', 'VýzkumnÔ infrastruktura CzechNanoLab'),
(139591, 110140, 'en', 'name', 'CzechNanoLab Research Infrastructure'),
(139592, 110141, 'en', 'name', 'Ministry of Agriculture'),
(139593, 110141, 'et', 'name', 'Regionaal - Ja PƵllumajandusministeerium'),
(139594, 110142, 'en', 'name', 'Hiraoka Environmental Science Laboratory'),
(139595, 110142, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¹³å²”ē’°å¢ƒē§‘å­¦ē ”ē©¶ę‰€'),
(139596, 110143, 'fr', 'name', 'Structure et activitƩ des biomolƩcules normales et pathologiques'),
(139597, 110144, 'en', 'name', 'National Art School'),
(139598, 110145, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ŲØŲ§Ł„Ų£ŲŗŁˆŲ§Ų·'),
(139599, 110145, 'fr', 'name', 'Ecole Normale SupƩrieure of Laghouat'),
(139600, 110146, 'en', 'name', 'Japan Basketball Association'),
(139601, 110146, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒć‚¹ć‚±ćƒƒćƒˆćƒœćƒ¼ćƒ«å”ä¼š'),
(139602, 110147, 'no_lang_code', 'name', 'SGS Portugal (Portugal), SGS Portugal SA, SGS Portugal, S.A.'),
(139603, 110148, 'en', 'name', 'National Institute of Agrarian Innovation'),
(139604, 110148, 'es', 'name', 'Instituto Nacional de Innovación Agraria'),
(139605, 110149, 'pt', 'name', 'Biblioteca Municipal de Santa Maria da Feira'),
(139606, 110150, 'en', 'name', 'Government of Jiangsu Province'),
(139607, 110151, 'en', 'name', 'Military Sealift Command'),
(139608, 110152, 'en', 'name', 'Very High Field NMR Center of Lyon'),
(139609, 110152, 'fr', 'name', 'Centre de RMN Ć  TrĆØs Hauts Champs de Lyon'),
(139610, 110153, 'no_lang_code', 'name', 'EAV-L-Arteriovenous-Lymphatic Studies, EAV-L-Estudos ArtƩrio Veno-LinfƔticos (Portugal)'),
(139611, 110154, 'ms', 'name', 'Universiti Teknologi Brunei'),
(139612, 110155, 'pt', 'name', 'Sociedade Portuguesa de Biotecnologia'),
(139613, 110156, 'en', 'name', 'Extracellular Matrix-Cell Relations Research Tea'),
(139614, 110156, 'fr', 'name', 'Ɖquipe de Recherche sur les Relations Matrice Extracellulaire-Cellules'),
(139615, 110157, 'fr', 'name', 'Centre de recherche sur les droits de l''Homme et le droit humanitaire'),
(139616, 110158, 'en', 'name', 'National Medical Institute of the Ministry of Interior and Administration'),
(139617, 110158, 'pl', 'name', 'Państwowy Instytut Medyczny Ministerstwa Spraw Wewnętrznych i Administracji'),
(139618, 110159, 'en', 'name', 'Cancer Australia'),
(139619, 110160, 'en', 'name', 'Choshi Hospital'),
(139620, 110160, 'ja', 'name', 'éŠšå­åø‚ē«‹ē—…é™¢'),
(139621, 110161, 'fr', 'name', 'Laboratoires Abbott'),
(139622, 110161, 'no_lang_code', 'name', 'Abbott (United States)'),
(139623, 110162, 'en', 'name', 'Tio Business School'),
(139624, 110163, 'de', 'name', 'Kompetenzzentrum für Energie und Mobilität'),
(139625, 110163, 'en', 'name', 'Competence Center Energy and Mobility'),
(139626, 110164, 'en', 'name', 'International Lake Environment Committee Foundation'),
(139627, 110164, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›ę¹–ę²¼ē’°å¢ƒå§”å“”ä¼š'),
(139628, 110165, 'en', 'name', 'Nagano Nanshin Agricultural Experiment Station'),
(139629, 110165, 'ja', 'name', 'é•·é‡ŽēœŒå—äæ”č¾²ę„­č©¦éØ“å “'),
(139630, 110166, 'en', 'name', 'King Mongkut''s University of Technology Thonburi'),
(139631, 110166, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąø—ąø„ą¹‚ąø™ą¹‚ąø„ąø¢ąøµąøžąø£ąø°ąøˆąø­ąø”ą¹€ąøąø„ą¹‰ąø²ąø˜ąø™ąøšąøøąø£ąøµ'),
(139632, 110167, 'en', 'name', 'Japan Construction Training Center'),
(139633, 110167, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½å»ŗčØ­ē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(139634, 110168, 'no_lang_code', 'name', 'Bloom Up (Portugal)'),
(139635, 110169, 'en', 'name', 'MagIC'),
(139636, 110170, 'en', 'name', 'Fire Technology and Safety Laboratory, Tokyo Fire Department'),
(139637, 110170, 'ja', 'name', 'ę±äŗ¬ę¶ˆé˜²åŗę¶ˆé˜²ęŠ€č”“å®‰å…Øę‰€'),
(139638, 110171, 'id', 'name', 'Universitas Islam Negeri Fatmawati Sukarno Bengkulu'),
(139639, 110172, 'en', 'name', 'The Podlasie Academy of Applied Sciences in Białystok'),
(139640, 110172, 'pl', 'name', 'Akademia Podlaska w Białymstoku, Akademia Podlaska w Białymstoku – Akademia Nauk Stosowanych'),
(139641, 110173, 'de', 'name', 'Institut für Theorie und Empirie des Sozialen - Werkstatt für sozialpädagogisches Denken e.V.'),
(139642, 110174, 'fr', 'name', 'Ecosystèmes, Biodiversité, Evolution'),
(139643, 110175, 'fr', 'name', 'UAR POREA, UnitĆ© d’Appui et de Recherche 2567 Ā« Pluridisciplinarité au service de l’Observation et de la Recherche en Environnement et Astronomie Ā»'),
(139644, 110176, 'en', 'name', 'Gachon University Gil Medical Center'),
(139645, 110176, 'ko', 'name', 'ź°€ģ²œėŒ€ 길병원'),
(139646, 110177, 'en', 'name', 'VASCERN'),
(139647, 110178, 'en', 'name', 'Symbiosis International University'),
(139648, 110179, 'no_lang_code', 'name', 'Lidel EdiƧƵes TƩcnicas (Portugal), Lidel Technical Editions'),
(139649, 110180, 'ca', 'name', 'Institut de Recerca Sant Pau'),
(139650, 110181, 'en', 'name', 'Suga Weathering Technology Foundation'),
(139651, 110181, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¹ć‚¬ć‚¦ć‚§ć‚¶ćƒŖćƒ³ć‚°ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(139652, 110182, 'en', 'name', 'Hokkaido Road Management Engineering Center'),
(139653, 110182, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“é“č·Æē®”ē†ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(139654, 110183, 'pt', 'name', 'Sociedade Portuguesa de Microbiologia'),
(139655, 110184, 'en', 'name', 'The State Archives in Dubrovnik'),
(139656, 110185, 'en', 'name', 'Sun Yat-sen University'),
(139657, 110185, 'zh', 'name', '中山大学'),
(139658, 110186, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ للبحث Ų§Ł„Ų¹Ł„Ł…ŁŠ ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠ'),
(139659, 110186, 'en', 'name', 'National Center for Scientific and Technical Research (CNRST)'),
(139660, 110186, 'fr', 'name', 'Centre National pour la Recherche Scientifique et Technique (CNRST)'),
(139661, 110187, 'en', 'name', 'Swiss Economics, Swiss Economics (Switzerland)'),
(139662, 110188, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по ŠŸŠ¾Š»ŠøŠ¼ŠµŃ€Šø'),
(139663, 110188, 'en', 'name', 'Institute of Polymers'),
(139664, 110189, 'en', 'name', 'Government of Alberta'),
(139665, 110190, 'fr', 'name', 'CIRAD - Direction gƩnƩrale'),
(139666, 110191, 'no_lang_code', 'name', 'Oracle (United States)'),
(139667, 110192, 'de', 'name', 'Ruhrlandklinik'),
(139668, 110193, 'en', 'name', 'American International Theism University'),
(139669, 110194, 'no_lang_code', 'name', 'Media Invest (Portugal)'),
(139670, 110195, 'es', 'name', 'Pontificia Universidad Católica del Ecuador Sede Manabí'),
(139671, 110196, 'de', 'name', 'ZEIT-Stiftung'),
(139672, 110197, 'en', 'name', 'Nuclear Institute of Agriculture (NIA) Tandojam, Nuclear Institute of Agriculture, Tandojam'),
(139673, 110198, 'es', 'name', 'Editorial de la Universidad de Cantabria'),
(139674, 110199, 'en', 'name', 'University of Twente'),
(139675, 110199, 'nl', 'name', 'Universiteit Twente'),
(139676, 110200, 'en', 'name', 'Fukui Prefecture Inland Waters Center'),
(139677, 110200, 'ja', 'name', 'ē¦äŗ•ēœŒå†…ę°“é¢ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(139678, 110201, 'en', 'name', 'Hunan Credo Pump Co., Ltd, Hunan Credo Pump Co., Ltd (China)'),
(139679, 110201, 'zh', 'name', 'ę¹–å—å‡Æåˆ©ē‰¹ę³µäøšęœ‰é™å…¬åø'),
(139680, 110202, 'en', 'name', 'Nippon Koei Bangladesh, Nippon Koei Bangladesh Ltd. (Bangladesh)'),
(139681, 110203, 'en', 'name', 'Tokyo Fisheries Promotion Foundation'),
(139682, 110203, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę±äŗ¬ę°“ē”£ęŒÆčˆˆä¼š'),
(139683, 110204, 'en', 'name', 'Lions Eye Institute'),
(139684, 110205, 'en', 'name', 'Thomas More University Biology Field Station'),
(139685, 110206, 'en', 'name', 'Mobius Labs GmbH (Germany)'),
(139686, 110207, 'en', 'name', 'Laboratory Physics of Materials and Surfaces'),
(139687, 110207, 'fr', 'name', 'Laboratoire de Physique des MatƩriaux et des Surfaces'),
(139688, 110208, 'no_lang_code', 'name', 'Sanofi (Portugal)'),
(139689, 110209, 'en', 'name', 'Public Health Research Society Nepal'),
(139690, 110210, 'en', 'name', 'University of Massachusetts Amherst'),
(139691, 110210, 'es', 'name', 'Universidad de Massachusetts Amherst'),
(139692, 110210, 'fr', 'name', 'UniversitƩ du massachusetts Ơ amherst'),
(139693, 110211, 'en', 'name', 'Maharshi Vashishtha Autonomous State Medical College, Basti'),
(139694, 110212, 'en', 'name', 'Seichiryo Hospital'),
(139695, 110212, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗäŗ¤ę­£ä¼šē²¾ę²»åÆ®ē—…é™¢'),
(139696, 110213, 'en', 'name', 'Toyota Motor North America, Toyota Motor North America (United States)'),
(139697, 110214, 'en', 'name', 'Honiton Hospital'),
(139698, 110215, 'en', 'name', 'Council for Nutritional and Environmental Medicine'),
(139699, 110216, 'de', 'name', 'Institut Bewegung, Sport und Gesundheit'),
(139700, 110216, 'en', 'name', 'Institute of Physical Education, Sports, and Health'),
(139701, 110217, 'en', 'name', 'Japanese Society for Mastication Science and Health Promotion'),
(139702, 110217, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å’€åš¼å­¦ä¼š'),
(139703, 110218, 'en', 'name', 'ATLAS SkillTech University'),
(139704, 110219, 'en', 'name', 'Geo-Ocean'),
(139705, 110220, 'en', 'name', 'Armavir Institute of Economics and Finance'),
(139706, 110220, 'ru', 'name', 'Армавирский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Šø финансов'),
(139707, 110221, 'fr', 'name', 'Laboratoire de l''Ɖducation'),
(139708, 110222, 'en', 'name', 'Kumamoto Chuo Hospital'),
(139709, 110222, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šē†Šęœ¬äø­å¤®ē—…é™¢'),
(139710, 110223, 'en', 'name', 'Hokkaido Construction Technology Center'),
(139711, 110223, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“å»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(139712, 110224, 'en', 'name', 'Japan Science Support Foundation'),
(139713, 110224, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å­¦č”“å”åŠ›č²”å›£'),
(139714, 110225, 'no_lang_code', 'name', 'Eurocasmedica, Eurocasmedica - Produtos Hospitalares (Portugal), Eurocasmedica - Produtos Hospitalares, S.A.'),
(139715, 110226, 'en', 'name', 'Kyushu Industrial Technology Center'),
(139716, 110226, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä¹å·žē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(139717, 110227, 'de', 'name', 'de-RSE e.V.'),
(139718, 110228, 'en', 'name', 'Hokkaido Aquaculture Promotion Corporation'),
(139719, 110228, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ę ½åŸ¹ę¼ę„­ęŒÆčˆˆå…¬ē¤¾'),
(139720, 110229, 'pt', 'name', 'Ordem dos Engenheiros'),
(139721, 110230, 'en', 'name', 'Gout Support Group of America'),
(139722, 110231, 'en', 'name', 'Niigata Prefectural Police'),
(139723, 110231, 'ja', 'name', 'ę–°ę½ŸēœŒč­¦åÆŸ'),
(139724, 110232, 'en', 'name', 'Japan Railway Electrical Engineering Association'),
(139725, 110232, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‰„é“é›»ę°—ęŠ€č”“å”ä¼š'),
(139726, 110233, 'fr', 'name', 'Maison des Sciences de l''Homme du Pacifique'),
(139727, 110234, 'fr', 'name', 'Centre d''innovation de l''aquaculture et des pêches du Québec, Merinov, Merinov (Canada)'),
(139728, 110235, 'de', 'name', 'Institut für Visual Computing'),
(139729, 110235, 'en', 'name', 'Institute for Visual Computing'),
(139730, 110236, 'en', 'name', 'Nepal Mediciti Hospital'),
(139731, 110237, 'en', 'name', 'Gunma Sericultural Technology Center'),
(139732, 110237, 'ja', 'name', 'ē¾¤é¦¬ēœŒčš•ē³øęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(139733, 110238, 'en', 'name', 'Ƒuble Observatory Foundation'),
(139734, 110238, 'es', 'name', 'Fundación Observatorio Ƒuble'),
(139735, 110239, 'en', 'name', 'Fishing Boat And System Engineering Association of Japan'),
(139736, 110239, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·ę“‹ę°“ē”£ć‚·ć‚¹ćƒ†ćƒ å”ä¼š'),
(139737, 110240, 'en', 'name', 'Institute for Applied Optics'),
(139738, 110240, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåæœē”Øå…‰å­¦ē ”ē©¶ę‰€'),
(139739, 110241, 'en', 'name', 'Centre for Astronomical Reseach of Lyon'),
(139740, 110241, 'fr', 'name', 'Centre de Recherche Astrophysique de Lyon'),
(139741, 110242, 'en', 'name', 'National University of Skills'),
(139742, 110242, 'fa', 'name', 'دانؓگاه Ł…Ł„ŪŒ مهارت'),
(139743, 110243, 'en', 'name', 'Humanitec Junior College'),
(139744, 110243, 'ja', 'name', 'ćƒ¦ćƒžćƒ‹ćƒ†ć‚ÆēŸ­ęœŸå¤§å­¦'),
(139745, 110244, 'en', 'name', 'The University of Adelaide'),
(139746, 110245, 'en', 'name', 'Kansas Department of Wildlife and Parks'),
(139747, 110246, 'en', 'name', 'Ministry of Economic Affairs and Employment'),
(139748, 110246, 'fi', 'name', 'Tyƶ- ja elinkeinoministeriƶ'),
(139749, 110246, 'sv', 'name', 'Arbets- och nƤringsministeriet'),
(139750, 110247, 'en', 'name', 'Adler University'),
(139751, 110248, 'fr', 'name', 'Structure FƩdƩrative de Recherche Biosciences'),
(139752, 110249, 'no_lang_code', 'name', 'Public Social Communication, Público Comunicação Social (Portugal), Público Comunicação Social, S.A.'),
(139753, 110250, 'de', 'name', 'Schweiz. Erdbebendienst'),
(139754, 110250, 'en', 'name', 'Swiss Seismological Service'),
(139755, 110251, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł…Ų¤ŲŖŲ©'),
(139756, 110251, 'en', 'name', 'Mutah University'),
(139757, 110252, 'en', 'name', 'Malaurie Institute of Arctic Research'),
(139758, 110252, 'fr', 'name', 'Institut de recherches arctiques Jean Malaurie'),
(139759, 110253, 'en', 'name', 'Japan Paint Manufacturers Association'),
(139760, 110253, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å”—ę–™å·„ę„­ä¼š'),
(139761, 110254, 'pt', 'name', 'Ordem dos Médicos Secção Regional do Sul'),
(139762, 110255, 'en', 'name', 'Institute for Particle and Nuclear Physics'),
(139763, 110255, 'hu', 'name', 'Részecske és Magfizikai Kutatóintézet'),
(139764, 110256, 'en', 'name', 'Data Archiving Networked Services (DANS)'),
(139765, 110256, 'nl', 'name', 'Het Nationale expertisecentrum en repository voor onderzoeksdata'),
(139766, 110257, 'en', 'name', 'The Royal Victorian Eye & Ear Hospital'),
(139767, 110258, 'en', 'name', 'Molecular Mechanisms in Neurodegenerative Diseases'),
(139768, 110258, 'fr', 'name', 'MƩcanismes molƩculaires dans les dƩmences neurodƩgƩnƩratives'),
(139769, 110259, 'en', 'name', 'University of Alabama at Birmingham'),
(139770, 110259, 'fr', 'name', 'UniversitƩ d''alabama Ơ birmingham'),
(139771, 110260, 'fr', 'name', 'Institut SupƩrieur de Technologie d''Antananarivo'),
(139772, 110261, 'pt', 'name', 'SaĆŗde Global e Medicina Tropical'),
(139773, 110262, 'es', 'name', 'Fundación Jardín BotÔnico Nacional de Viña del Mar, Jardín BotÔnico Nacional de Viña del Mar'),
(139774, 110263, 'pt', 'name', 'Centro de Intervenção Para o Desenvolvimento Amílcar Cabral'),
(139775, 110264, 'en', 'name', 'Blekinge County Council'),
(139776, 110264, 'sv', 'name', 'Region Blekinge'),
(139777, 110265, 'it', 'name', 'RINA Consulting - Centro Sviluppo Materiali S.p.A., RINA Consulting - Centro Sviluppo Materiali S.p.A. (Italy)'),
(139778, 110266, 'en', 'name', 'SUNY Morrisville'),
(139779, 110267, 'en', 'name', 'Rice University'),
(139780, 110267, 'es', 'name', 'Universidad Rice'),
(139781, 110268, 'en', 'name', 'White Rose Libraries'),
(139782, 110269, 'en', 'name', 'The Japan Stroke Association'),
(139783, 110269, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č„³å’äø­å”ä¼š'),
(139784, 110270, 'no_lang_code', 'name', 'Tata Steel (Netherlands)'),
(139785, 110271, 'en', 'name', 'Scottish Avalanche Information Service'),
(139786, 110272, 'de', 'name', 'Institut für Textilchemie- und Chemiefasern'),
(139787, 110272, 'en', 'name', 'Institute of Textile Chemistry and Chemical Fibers'),
(139788, 110273, 'en', 'name', 'Youthscape'),
(139789, 110274, 'en', 'name', 'University of Nis'),
(139790, 110274, 'sr', 'name', 'Универзитет у ŠŠøŃˆŃƒ'),
(139791, 110275, 'ca', 'name', 'Generalitat Valenciana'),
(139792, 110275, 'es', 'name', 'Generalidad Valenciana'),
(139793, 110276, 'es', 'name', 'Universidad SEK'),
(139794, 110277, 'fr', 'name', 'Laboratoire de psychologie'),
(139795, 110278, 'pt', 'name', 'Sociedade Portuguesa de Medicina da Reprodução'),
(139796, 110279, 'en', 'name', 'Shinseikai-Toyama Hospital'),
(139797, 110279, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗēœŸē”Ÿä¼šåÆŒå±±ē—…é™¢'),
(139798, 110280, 'en', 'name', 'Center for Research and Advanced Studies of the National Polytechnic Institute'),
(139799, 110280, 'es', 'name', 'Centro de Investigación y de Estudios Avanzados del Instituto Politécnico Nacional'),
(139800, 110281, 'en', 'name', 'Ministry of Agriculture, Food and Rural Affairs'),
(139801, 110282, 'en', 'name', 'EMLYON Business School'),
(139802, 110282, 'fr', 'name', 'Ɖcole de management de Lyon'),
(139803, 110283, 'id', 'name', 'Institut Teknologi dan Bisnis Asia Malang'),
(139804, 110284, 'en', 'name', 'Ignatianum University in Cracow'),
(139805, 110284, 'pl', 'name', 'Akademia Ignatianum w Krakowie'),
(139806, 110285, 'ro', 'name', 'BRGV Buzău'),
(139807, 110286, 'no_lang_code', 'name', 'Schlumberger (United States)'),
(139808, 110287, 'en', 'name', 'Portuguese Additive Manufacturing Initiative'),
(139809, 110288, 'no_lang_code', 'name', 'Corte Velada, Corte Velada (Portugal), Veiled Court'),
(139810, 110289, 'pt', 'name', 'LaserLab Portugal'),
(139811, 110290, 'fr', 'name', 'Centre d''Ɖtudes Internationales de la PropriĆ©tĆ© Intellectuelle'),
(139812, 110291, 'en', 'name', 'The Foundation for Development of the Community'),
(139813, 110291, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåœ°åŸŸē¤¾ä¼šęŒÆčˆˆč²”å›£'),
(139814, 110292, 'af', 'name', 'Universiteit van die Vrystaat'),
(139815, 110292, 'en', 'name', 'University of the Free State'),
(139816, 110292, 'st', 'name', 'Yunivesithi ya Freistata'),
(139817, 110293, 'en', 'name', 'Kalivir Immunotherapeutics, Kalivir Immunotherapeutics, Inc. (United States)'),
(139818, 110294, 'pt', 'name', 'Entidade Reguladora dos ServiƧos de Ɓguas e Resƭduos'),
(139819, 110295, 'en', 'name', 'University of Limerick'),
(139820, 110295, 'ga', 'name', 'Ollscoil Luimnigh'),
(139821, 110296, 'fr', 'name', 'Approches LittƩraires, Linguistiques & Historiques des Sources'),
(139822, 110297, 'en', 'name', 'U.S. Army CECOM Integrated Logistics Support Center'),
(139823, 110298, 'no_lang_code', 'name', 'Grupo Italfarmaco (Portugal)'),
(139824, 110299, 'en', 'name', 'Eurasian Institute of Osteopathic Medicine'),
(139825, 110300, 'en', 'name', 'Center for the Sociology of Innovation, Mines Paris - PSL, Centre for the sociology of innovation (CSI), i3 UMR9217 CNRS'),
(139826, 110300, 'fr', 'name', 'Centre de sociologie de l''innovation, Mines Paris, UniversitĆ© PSL, Centre de Sociologie de l’Innovation (CSI), i3 UMR9217 CNRS'),
(139827, 110301, 'en', 'name', 'Save the Children Japan'),
(139828, 110301, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗć‚»ćƒ¼ćƒ–ćƒ»ć‚¶ćƒ»ćƒćƒ«ćƒ‰ćƒ¬ćƒ³ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(139829, 110302, 'no_lang_code', 'name', 'Flatlantic, Flatlantic (Portugal)'),
(139830, 110303, 'fr', 'name', 'Centre d’Etudes et de Recherches de Sciences Administratives et Politiques'),
(139831, 110304, 'pt', 'name', 'Companhia de DanƧa ContemporĆ¢nea de Ɖvora'),
(139832, 110305, 'en', 'name', 'National Defense Medical Society'),
(139833, 110305, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é˜²č”›č”›ē”Ÿå­¦ä¼š'),
(139834, 110306, 'en', 'name', 'Geosciences and Environment Laboratory'),
(139835, 110306, 'fr', 'name', 'Laboratoire GƩosciences et Environnement Cergy'),
(139836, 110307, 'en', 'name', 'Zhejiang Department of Finance'),
(139837, 110307, 'zh', 'name', 'ęµ™ę±Ÿēœč“¢ę”æåŽ…'),
(139838, 110308, 'en', 'name', 'Rennes Institute of Chemical Sciences'),
(139839, 110308, 'fr', 'name', 'Institut des Sciences Chimiques de Rennes'),
(139840, 110309, 'fr', 'name', 'Laboratoire ƩnergƩtique mƩcanique ƩlectromagnƩtisme'),
(139841, 110310, 'de', 'name', 'Leistungssport Austria'),
(139842, 110311, 'en', 'name', 'United States Army'),
(139843, 110312, 'en', 'name', 'Gilgamesh University'),
(139844, 110313, 'en', 'name', 'Marie Cederschiƶld University'),
(139845, 110313, 'sv', 'name', 'Marie Cederschiƶld Hƶgskola'),
(139846, 110314, 'en', 'name', 'Womack Army Medical Center'),
(139847, 110315, 'cs', 'name', 'BiofyzikĆ”lnĆ­ Ćŗstav AV ČR, BiofyzikĆ”lnĆ­ Ćŗstav AV ČR, v. v. i., BiofyzikĆ”lnĆ­ Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(139848, 110315, 'en', 'name', 'Czech Academy of Sciences, Institute of Biophysics'),
(139849, 110316, 'en', 'name', 'Tyndale University'),
(139850, 110317, 'es', 'name', 'Sociedad de Doctores e Investigadores de Colombia'),
(139851, 110318, 'en', 'name', 'National Institute for Freshwater Fisheries Research - NIFFR'),
(139852, 110319, 'en', 'name', 'University for International Cooperation'),
(139853, 110319, 'es', 'name', 'Universidad para la Cooperación Internacional'),
(139854, 110320, 'en', 'name', 'Georgia Tech-CNRS Laboratory'),
(139855, 110321, 'en', 'name', 'Aichi International Association'),
(139856, 110321, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę„›ēŸ„ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(139857, 110322, 'en', 'name', 'Bowling Green State University'),
(139858, 110322, 'es', 'name', 'Universidad Estatal de Bowling Green'),
(139859, 110322, 'fr', 'name', 'UniversitĆ© d''Ɖtat de bowling green'),
(139860, 110323, 'pt', 'name', 'CĆ¢mara Municipal de Cascais'),
(139861, 110324, 'fr', 'name', 'Laboratoire de Biotechnologie et Chimie Marines'),
(139862, 110325, 'no_lang_code', 'name', '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)'),
(139863, 110326, 'de', 'name', 'Zentrum fur Gesundheitsberufe Tirol'),
(139864, 110326, 'en', 'name', 'Health University of Applied Sciences Tyrol'),
(139865, 110327, 'en', 'name', 'Foundation for Rural and Regional Renewal'),
(139866, 110328, 'en', 'name', 'Dharanidhar University, Keonjhar'),
(139867, 110329, 'en', 'name', 'University of Pennsylvania'),
(139868, 110330, 'pt', 'name', 'CETERA'),
(139869, 110331, 'en', 'name', 'Institution of Engineers'),
(139870, 110332, 'en', 'name', 'The Japanese Society of Snow and Ice'),
(139871, 110332, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é›Ŗę°·å­¦ä¼š'),
(139872, 110333, 'en', 'name', 'Kanazawa Municipal Hospital'),
(139873, 110333, 'ja', 'name', '金沢市立病院'),
(139874, 110334, 'en', 'name', 'Institute for Regenerative Medicine & Biotherapy'),
(139875, 110335, 'fr', 'name', 'Ecole Nationale Polytechnique de Constantine'),
(139876, 110336, 'de', 'name', 'Institut für Signal- und Informationsverarbeitung'),
(139877, 110336, 'en', 'name', 'Signal and Information Processing Laboratory'),
(139878, 110337, 'pt', 'name', 'Instituto de Literatura Comparada Margarida Losa'),
(139879, 110338, 'en', 'name', 'Amsterdam institute for Immunology and Infectious Diseases'),
(139880, 110339, 'es', 'name', 'Instituto de Investigaciones JurĆ­dicas'),
(139881, 110340, 'en', 'name', 'Good Manufacturing Practice Facility'),
(139882, 110341, 'de', 'name', 'Institut für Elektromagnetische Felder'),
(139883, 110341, 'en', 'name', 'Electromagnetic Fields Laboratory'),
(139884, 110342, 'en', 'name', 'Shirakawa Kosei General Hospital'),
(139885, 110342, 'ja', 'name', 'JAē¦å³¶åŽšē”Ÿé€£ē™½ę²³åŽšē”Ÿē·åˆē—…é™¢'),
(139886, 110343, 'no_lang_code', 'name', 'Megajoule, Megajoule (Portugal)'),
(139887, 110344, 'en', 'name', 'Office of the Principal Scientific Adviser'),
(139888, 110345, 'de', 'name', 'Seminar für Angewandte Mathematik'),
(139889, 110345, 'en', 'name', 'Seminar for Applied Mathematics'),
(139890, 110346, 'fr', 'name', 'MƩcanismes physiopathologiques et consƩquences des calcifications cardiovasculaires'),
(139891, 110347, 'en', 'name', 'St. John''s University'),
(139892, 110347, 'es', 'name', 'Universidad de San Juan'),
(139893, 110348, 'en', 'name', 'Guang''anmen Hospital Jinan Hospital, China Academy of Chinese Medical Sciences'),
(139894, 110348, 'zh', 'name', 'ęµŽå—åø‚äø­åŒ»åŒ»é™¢'),
(139895, 110349, 'en', 'name', 'Japan Association of Athletics Federations'),
(139896, 110349, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é™øäøŠē«¶ęŠ€é€£ē›Ÿ'),
(139897, 110350, 'pt', 'name', 'Instituto Coordenador da Investigação'),
(139898, 110351, 'fr', 'name', 'DƩlƩgation RhƓne Auvergne'),
(139899, 110352, 'en', 'name', 'Australian Commission on Safety and Quality in Health Care'),
(139900, 110353, 'en', 'name', 'The Millennium Project'),
(139901, 110354, 'en', 'name', 'Publishing House ā€œAkademperiodykaā€ of the National Academy of Sciences of Ukraine'),
(139902, 110354, 'uk', 'name', 'ВиГавничий Гім «АкаГемперіоГика» ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(139903, 110355, 'pt', 'name', 'Sociedade Portuguesa de Biologia do Desenvolvimento'),
(139904, 110356, 'en', 'name', 'China International Science and Technology Cooperation'),
(139905, 110356, 'zh', 'name', 'äø­å›½å›½é™…ē§‘ęŠ€åˆä½œē½‘'),
(139906, 110357, 'en', 'name', 'Japan Plywood Inspection Corporation'),
(139907, 110357, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬åˆęæę¤œęŸ»ä¼š'),
(139908, 110358, 'en', 'name', 'Ruaha Catholic University'),
(139909, 110358, 'sw', 'name', 'Chuo Kikuu cha Kikatoliki cha Ruaha'),
(139910, 110359, 'fr', 'name', 'DƩlƩgation Paris 7'),
(139911, 110360, 'en', 'name', 'Tanzania Institute of Education (TIE)'),
(139912, 110361, 'pt', 'name', 'CHAM Centro de Humanidades'),
(139913, 110362, 'en', 'name', 'Pakistan Museum of Natural History'),
(139914, 110362, 'ur', 'name', 'پاکستا ن Ł…ŪŒŁˆŲ²ŪŒŁ… آف Ł†ŪŒŚ†Ų±Ł„ ہسٹرئ'),
(139915, 110363, 'en', 'name', 'Neurophet (South Korea), Neurophet Inc.'),
(139916, 110363, 'ko', 'name', 'ė‰“ė”œķŽ« ģ£¼ģ‹ķšŒģ‚¬'),
(139917, 110364, 'en', 'name', 'Indian Institute of Advanced Research'),
(139918, 110365, 'es', 'name', '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'),
(139919, 110366, 'en', 'name', 'Royal Adelaide Hospital'),
(139920, 110367, 'en', 'name', 'Zhengzhou Normal University'),
(139921, 110368, 'de', 'name', 'Institut für Biomechanik'),
(139922, 110368, 'en', 'name', 'Institute for Biomechanics'),
(139923, 110369, 'es', 'name', 'Centro de Proteccion e Higiene de la Radiociones'),
(139924, 110370, 'no_lang_code', 'name', 'CiviTest Pesquisa de Novos Materiais para a Engenharia Civil (Portugal)'),
(139925, 110371, 'ne', 'name', 'Nepal Netra Jyoti Sangh (NNJS)'),
(139926, 110372, 'en', 'name', 'Novartis Institute For Tropical Diseases, Novartis Institute For Tropical Diseases Pte Ltd'),
(139927, 110373, 'en', 'name', 'National Taipei University of Technology'),
(139928, 110373, 'zh', 'name', 'åœ‹ē«‹č‡ŗåŒ—ē§‘ęŠ€å¤§å­ø'),
(139929, 110374, 'en', 'name', 'Natural Science Institute of Iceland'),
(139930, 110374, 'is', 'name', 'NÔttúrufræðistofnun'),
(139931, 110375, 'en', 'name', 'Japan Dairy Technical Association'),
(139932, 110375, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä¹³ę„­ęŠ€č”“å”ä¼š'),
(139933, 110376, 'fr', 'name', 'Institut de Criminologie et de Droit PƩnal de Paris'),
(139934, 110377, 'en', 'name', 'Institute of Eastern Culture'),
(139935, 110377, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę±ę–¹å­¦ä¼š'),
(139936, 110378, 'pt', 'name', 'Laboratório Nacional de Investigação VeterinÔria'),
(139937, 110379, 'en', 'name', 'ARC Centre of Excellence for Dark Matter Particle Physics'),
(139938, 110380, 'en', 'name', 'Tashkent Institute of Management and Economics'),
(139939, 110381, 'no_lang_code', 'name', 'Microsoft (United States)'),
(139940, 110382, 'fr', 'name', 'Institut d''optique thĆ©orique et appliquĆ©e, Institut d’Optique Graduate School'),
(139941, 110383, 'en', 'name', 'Chrisland University'),
(139942, 110384, 'pt', 'name', 'ATEVA - Associação Técnica dos Viticultores do Alentejo, Associação Técnica dos Viticultores do Alentejo'),
(139943, 110385, 'fr', 'name', 'Centre de droit europƩen'),
(139944, 110386, 'en', 'name', 'The Magnetics Society of Japan'),
(139945, 110386, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē£ę°—å­¦ä¼š'),
(139946, 110387, 'en', 'name', 'Moretonhampstead Hospital'),
(139947, 110388, 'en', 'name', 'Japan Electric Power Information Center, Inc.'),
(139948, 110388, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–é›»åŠ›čŖæęŸ»ä¼š'),
(139949, 110389, 'pt', 'name', 'Centro de Estudos em Património Paisagem e Construção'),
(139950, 110390, 'en', 'name', 'National Technological Institute of Mexico'),
(139951, 110390, 'es', 'name', 'Tecnológico Nacional de México'),
(139952, 110391, 'id', 'name', 'Sekolah Tinggi Filsafat Theologia Jaffray'),
(139953, 110392, 'en', 'name', 'Creative Education Technology (Shenzhen) Co., Ltd., Creative Education Technology (Shenzhen) Co., Ltd. (China)'),
(139954, 110392, 'zh', 'name', 'å¼€å…ƒę•™č‚²ē§‘ęŠ€ļ¼ˆę·±åœ³ļ¼‰ęœ‰é™å…¬åø'),
(139955, 110393, 'cs', 'name', 'DigitĆ”lnĆ­ výzkumnĆ” infrastruktura pro jazykovĆ© technologie, uměnĆ­ a humanitnĆ­ vědy'),
(139956, 110393, 'en', 'name', 'Digital Research Infrastructure for Language Technologies, Arts and Humanities'),
(139957, 110394, 'en', 'name', 'Japan Dairy Industry Association'),
(139958, 110394, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä¹³ę„­å”ä¼š'),
(139959, 110395, 'cs', 'name', 'NƔrodnƭ infrastruktura pro biologickƩ a medicƭnskƩ zobrazovƔnƭ'),
(139960, 110395, 'en', 'name', 'National Research Infrastructure for Biological and Medical Imaging'),
(139961, 110396, 'en', 'name', 'Technology Institution of Industrial Safety'),
(139962, 110396, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē”£ę„­å®‰å…ØęŠ€č”“å”ä¼š'),
(139963, 110397, 'en', 'name', 'AITHYRA GmbH, AITHYRA GmbH- Research Institute for Biomedical Artificial Intelligence (Austria)'),
(139964, 110398, 'en', 'name', 'State Polytechnic of Madiun'),
(139965, 110398, 'id', 'name', 'Politeknik Negeri Madiun'),
(139966, 110399, 'en', 'name', 'Sendai Foundation for Applied Information Sciences'),
(139967, 110399, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä»™å°åæœē”Øęƒ…å ±å­¦ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(139968, 110400, 'en', 'name', 'Eishinkai Kishiwada Rehabilitation Hospital'),
(139969, 110400, 'ja', 'name', 'å²øå’Œē”°ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(139970, 110401, 'en', 'name', 'Niigata University of Pharmacy and Medical and Life Sciences'),
(139971, 110401, 'ja', 'name', 'ę–°ę½Ÿč–¬ē§‘å¤§å­¦'),
(139972, 110402, 'de', 'name', 'Institut für donauschwäbische Geschichte und Landeskunde'),
(139973, 110403, 'en', 'name', 'Japan Society of Obstetrics and Gynecology'),
(139974, 110403, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£ē§‘å©¦äŗŗē§‘å­¦ä¼š'),
(139975, 110404, 'en', 'name', 'Autonomous University of Coahuila'),
(139976, 110404, 'es', 'name', 'Universidad Autónoma de Coahuila'),
(139977, 110405, 'en', 'name', 'Texas Medical Center'),
(139978, 110406, 'en', 'name', 'Japan Foundation For Emergency Medicine'),
(139979, 110406, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę•‘ę€„åŒ»ē™‚č²”å›£'),
(139980, 110407, 'de', 'name', 'Institut Kulturelle und Ƅsthetische Bildung'),
(139981, 110407, 'en', 'name', 'Institute of Cultural and Aesthetic Education'),
(139982, 110408, 'en', 'name', 'Kogi State University'),
(139983, 110409, 'pt', 'name', 'Câmara Municipal da Covilhã'),
(139984, 110410, 'en', 'name', 'Leifur EirĆ­ksson Foundation'),
(139985, 110411, 'en', 'name', 'Japanese Society of Steel Construction'),
(139986, 110411, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é‹¼ę§‹é€ å”ä¼š'),
(139987, 110412, 'en', 'name', 'Glass MANUFACTURERS'' Association Of Japan'),
(139988, 110412, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”å­č£½å“å·„ę„­ä¼š'),
(139989, 110413, 'en', 'name', 'Indiana University – Purdue University Columbus');
INSERT INTO `ror_settings` VALUES
(139990, 110414, 'pt', 'name', 'Magellan - Associação para a Representação dos Interesses Portugueses no Exterior'),
(139991, 110415, 'en', 'name', 'Delaware Geological Survey'),
(139992, 110416, 'en', 'name', 'Mitsubishi Electric Research Laboratories, Mitsubishi Electric Research Laboratories (United States)'),
(139993, 110417, 'pt', 'name', 'Rede de Investigação em Biodiversidade e Biologia Evolutiva'),
(139994, 110418, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł†ŁŠŁˆŁŠŁˆŲ±Łƒ أبوظبي'),
(139995, 110418, 'en', 'name', 'New York University Abu Dhabi'),
(139996, 110419, 'en', 'name', 'United States 4th Fleet, United States Naval Forces Southern Command'),
(139997, 110420, 'am', 'name', 'įŠ¢įŠ’įˆµį‰²į‰µį‹©į‰µ įˆįˆ­įˆįˆ­ įŒ„į‹•įŠ“ į‰µįŒįˆ«į‹­'),
(139998, 110420, 'en', 'name', 'Tigray Health Research Institute THRI'),
(139999, 110421, 'cs', 'name', 'Evropský spalačnĆ­ zdroj, Evropský spalačnĆ­ zdroj – ĆŗÄast ČR'),
(140000, 110421, 'en', 'name', 'European Spallation Source – participation of the Czech Republic'),
(140001, 110422, 'en', 'name', 'European Renal Association – European Dialysis and Transplant Association'),
(140002, 110423, 'en', 'name', 'University of Newcastle Australia'),
(140003, 110424, 'en', 'name', 'Centre for Microscopy and Microanalysis'),
(140004, 110425, 'en', 'name', 'Technical Center for the Preservation of Agricultural Products'),
(140005, 110425, 'fr', 'name', 'Centre Technique de la Conservation des Produits Agricoles'),
(140006, 110426, 'pt', 'name', 'Sociedade Portuguesa de Enfermagem Oncológica'),
(140007, 110427, 'eu', 'name', 'Euskalmet'),
(140008, 110428, 'en', 'name', 'Rufino Ribeiro Ophthalmic Clinic'),
(140009, 110428, 'pt', 'name', 'Clínica Oftalmológica Rufino Ribeiro SA'),
(140010, 110429, 'en', 'name', 'Japanese Society of Pediatric Surgeons'),
(140011, 110429, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å°å…å¤–ē§‘å­¦ä¼š'),
(140012, 110430, 'en', 'name', 'Sidmouth Hospital'),
(140013, 110431, 'de', 'name', 'Europäische Hochschule für Innovation und Perspektive'),
(140014, 110432, 'en', 'name', 'The Research Council of Norway'),
(140015, 110432, 'fi', 'name', 'Norjan tiedeneuvosto'),
(140016, 110433, 'pt', 'name', 'Instituto Superior de Economia e Gestão Campus Tecnológico e Nuclear'),
(140017, 110434, 'en', 'name', 'Japan Crane Association'),
(140018, 110434, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Æćƒ¬ćƒ¼ćƒ³å”ä¼š'),
(140019, 110435, 'no_lang_code', 'name', 'Otsuka (United States)'),
(140020, 110436, 'en', 'name', 'Joint Vietnam-Russia Tropical Science and Technology Research Center'),
(140021, 110436, 'ru', 'name', 'Российско-Š’ŃŒŠµŃ‚Š½Š°Š¼ŃŠŗŠøŠ¹ тропический Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Šø технологический центр'),
(140022, 110436, 'vi', 'name', 'Trung TĆ¢m Nhiệt Đới Việt - Nga'),
(140023, 110437, 'en', 'name', 'Eastern Mediterranean University'),
(140024, 110437, 'tr', 'name', 'Doğu Akdeniz Üniversitesi'),
(140025, 110438, 'en', 'name', 'Osipyan Institute of Solid State Physics RAS'),
(140026, 110439, 'de', 'name', 'Institut für Geotechnik'),
(140027, 110439, 'en', 'name', 'Institute for Geotechnical Engineering'),
(140028, 110440, 'it', 'name', 'Agenzia Regionale per la Protezione Ambientale dell''Umbria'),
(140029, 110441, 'de', 'name', 'Deutsche Gartenbauwissenschaftliche Gesellschaft e. V.'),
(140030, 110441, 'en', 'name', 'German Society for Horticultural Science'),
(140031, 110442, 'en', 'name', 'European Rare Disease Research Coordination and Support Action'),
(140032, 110443, 'en', 'name', 'Institute for Energy Security and Environmental Safety'),
(140033, 110443, 'hu', 'name', 'Energia- Ʃs KƶrnyezetbiztonsƔgi IntƩzet'),
(140034, 110444, 'en', 'name', 'Stanford University'),
(140035, 110444, 'es', 'name', 'Universidad Stanford'),
(140036, 110445, 'en', 'name', 'The Japanese Society for Food Science and Technology Secretariat'),
(140037, 110445, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ē§‘å­¦å·„å­¦ä¼š'),
(140038, 110446, 'fr', 'name', 'Institut Pytheas, Observatoire des Sciences de l’OSU Institut PythĆ©as'),
(140039, 110447, 'de', 'name', 'Julius-Maximilians-Universität Würzburg'),
(140040, 110447, 'en', 'name', 'University of Würzburg'),
(140041, 110448, 'en', 'name', 'MOVE (Markets, Organizations and Votes in Economics)'),
(140042, 110448, 'es', 'name', 'Fundació Markets Organizations and Votes in Economics (MOVE)'),
(140043, 110449, 'en', 'name', 'Federal Institute of Education, Science and Technology of Santa Catarina'),
(140044, 110449, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Santa Catarina'),
(140045, 110450, 'pt', 'name', 'Rede Nacional de Espectrometria de Massa'),
(140046, 110451, 'en', 'name', 'Society of Interventional Radiology'),
(140047, 110452, 'no_lang_code', 'name', 'OneVet Group, OneVet Group (Portugal)'),
(140048, 110453, 'it', 'name', 'Iridra Srl, Iridra Srl (Italy)'),
(140049, 110454, 'en', 'name', 'College of general and vocational education Trois-Rivieres'),
(140050, 110454, 'fr', 'name', 'Cegep de Trois-Rivieres, Collège d''enseignement général et professionnel'),
(140051, 110455, 'id', 'name', 'Politeknik Harapan Bersama'),
(140052, 110456, 'en', 'name', 'Computer and Robot Vision Laboratory'),
(140053, 110457, 'en', 'name', 'The Gurdon Institute'),
(140054, 110458, 'en', 'name', 'Art Research Centre of the Slovak Academy of Sciences'),
(140055, 110458, 'sk', 'name', 'Centrum vied o umenƭ SlovenskƔ akadƩmia vied'),
(140056, 110459, 'en', 'name', 'State University of Information and Communication Technologies'),
(140057, 110459, 'uk', 'name', 'Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ інформаційно-ŠŗŠ¾Š¼ŃƒŠ½Ń–ŠŗŠ°Ń†Ń–Š¹Š½ŠøŃ… технологій'),
(140058, 110460, 'en', 'name', 'Japan Industrial Designers'' Association'),
(140059, 110460, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¤ćƒ³ćƒ€ć‚¹ćƒˆćƒŖć‚¢ćƒ«ćƒ‡ć‚¶ć‚¤ćƒŠćƒ¼å”ä¼š'),
(140060, 110461, 'en', 'name', 'Japan International Medical TEchnology Foundation'),
(140061, 110461, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›åŒ»ē™‚ęŠ€č”“č²”å›£'),
(140062, 110462, 'de', 'name', 'Kompetenznetzwerk Informationstechnologie zur Fƶrderung der Integration von Menschen mit Behinderungen (KI-I)'),
(140063, 110463, 'no_lang_code', 'name', 'Laboratoires Bailleul Portugal, S.A., Laboratoires Bailleul Portugal, S.A. (Portugal)'),
(140064, 110464, 'fr', 'name', 'Centre de Recherche sur les Poétiques du XIXe siècle'),
(140065, 110465, 'en', 'name', 'Space Delta 3'),
(140066, 110466, 'en', 'name', 'Gradiant International Holdings Pte Ltd, Gradiant International Holdings Pte Ltd (Singapore)'),
(140067, 110467, 'en', 'name', 'Japan Guide Dog Association'),
(140068, 110467, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē›²å°ŽēŠ¬å”ä¼š'),
(140069, 110468, 'it', 'name', 'Ospedale "Santa Maria delle Croci" di Ravenna'),
(140070, 110469, 'en', 'name', 'Ecological University of Bucharest'),
(140071, 110469, 'ro', 'name', 'Universitatea Ecologica din Bucuresti, Universitatea Ecologică Din Bucureşti'),
(140072, 110470, 'en', 'name', 'Greenhood Nepal'),
(140073, 110470, 'ne', 'name', 'ą¤—ą„ą¤°ą¤æą¤Øą¤¹ą„ą¤” ą¤Øą„‡ą¤Ŗą¤¾ą¤²'),
(140074, 110471, 'es', 'name', 'Instituto Tecnológico Superior de la Región Sierra'),
(140075, 110472, 'en', 'name', 'Saitama Prefectural Hospital Organization'),
(140076, 110472, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗåŸ¼ēŽ‰ēœŒē«‹ē—…é™¢ę©Ÿę§‹'),
(140077, 110473, 'en', 'name', 'Government College of Engineering, Nagpur'),
(140078, 110474, 'en', 'name', 'Professional Compounding Centers of America, Professional Compounding Centers of America (United States)'),
(140079, 110475, 'fr', 'name', 'Parcours santƩ systƩmique'),
(140080, 110476, 'en', 'name', 'State University of Milagro'),
(140081, 110476, 'es', 'name', 'Universidad Estatal de Milagro'),
(140082, 110477, 'pt', 'name', 'Centro CiĆŖncia Viva de Lagos'),
(140083, 110478, 'en', 'name', 'Department of Behavioral Health'),
(140084, 110479, 'fr', 'name', 'INSEAD, Institut EuropƩen d''Administration des Affaires'),
(140085, 110480, 'en', 'name', 'Research Institute for High-Life'),
(140086, 110480, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒć‚¤ćƒ©ć‚¤ćƒ•ē ”ē©¶ę‰€'),
(140087, 110481, 'en', 'name', 'Nara Prefecture Agricultural Research and Development Center'),
(140088, 110481, 'ja', 'name', 'å„ˆč‰ÆēœŒč¾²ę„­ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(140089, 110482, 'de', 'name', 'Ludwig Boltzmann Institut für Menschenrechte'),
(140090, 110482, 'en', 'name', 'Ludwig Boltzmann Institute of Human Rights'),
(140091, 110483, 'no_lang_code', 'name', 'Bristol-Myers Squibb (United States)'),
(140092, 110484, 'fr', 'name', 'Institut des Sciences et Techniques de l''AntiquitƩ'),
(140093, 110485, 'fr', 'name', 'IRET - Institut de Recherche en Etudes Théâtrales, Institut de Recherche en Ɖtudes Théâtrales'),
(140094, 110486, 'en', 'name', 'King’s University College'),
(140095, 110487, 'en', 'name', 'National Research Institute for Chemical Technology'),
(140096, 110488, 'en', 'name', 'Zoological Survey of India'),
(140097, 110489, 'en', 'name', 'Philippine Association of State Universities and Colleges'),
(140098, 110490, 'pt', 'name', 'AgĆŖncia Municipal de Energia do Seixal'),
(140099, 110491, 'en', 'name', 'Tanzania Fisheries Research Institute'),
(140100, 110492, 'en', 'name', 'Proplast Consortium for the Promotion of the Plastic Culture'),
(140101, 110493, 'en', 'name', 'University of ValparaĆ­so'),
(140102, 110493, 'es', 'name', 'Universidad de ValparaĆ­so'),
(140103, 110494, 'en', 'name', 'JAPAN Anti-Doping Agency'),
(140104, 110494, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ³ćƒćƒ»ćƒ‰ćƒ¼ćƒ”ćƒ³ć‚°ę©Ÿę§‹'),
(140105, 110495, 'en', 'name', 'The Japan Titanium Society'),
(140106, 110495, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒć‚æćƒ³å”ä¼š'),
(140107, 110496, 'en', 'name', 'Shivharsh Kisan Post Graduate College, Basti'),
(140108, 110497, 'en', 'name', 'Manchester University NHS Foundation Trust'),
(140109, 110498, 'en', 'name', 'French Network on Material Under high Strain Rate. Applications to Material Under Extreme Conditions, Processes and Structures'),
(140110, 110498, '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'),
(140111, 110499, 'no_lang_code', 'name', 'Pierre Fabre (Portugal)'),
(140112, 110500, 'en', 'name', 'Columbia University'),
(140113, 110500, 'es', 'name', 'Universidad de Columbia'),
(140114, 110501, 'en', 'name', 'Curtin Hub for Immersive Visualisation and eResearch'),
(140115, 110502, 'en', 'name', 'Showa College of Music'),
(140116, 110502, 'ja', 'name', 'ę˜­å’ŒéŸ³ę„½å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(140117, 110503, 'en', 'name', 'European Infrastructure for Translational Medicine'),
(140118, 110504, 'en', 'name', 'New Mexico State University'),
(140119, 110504, 'es', 'name', 'Universidad Estatal de Nuevo MƩxico'),
(140120, 110504, 'fr', 'name', 'UniversitĆ© d''Ɖtat du nouveau-mexique'),
(140121, 110505, 'en', 'name', 'Japan Allergy Foundation'),
(140122, 110505, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¢ćƒ¬ćƒ«ć‚®ćƒ¼å”ä¼š'),
(140123, 110506, 'en', 'name', 'Jaypee University of Information Technology'),
(140124, 110506, 'hi', 'name', 'ą¤œą„‡ą¤Ŗą„€ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤¤ą¤•ą¤Øą„€ą¤• ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(140125, 110507, 'en', 'name', 'Queen''s University Belfast'),
(140126, 110508, 'en', 'name', 'Research Institute for Environmental Studies'),
(140127, 110509, 'en', 'name', 'Dr Agostinho Pereira da Silva Otorhinolaryngology Clinic'),
(140128, 110509, 'pt', 'name', 'ClĆ­nica de Otorrinolaringologia Dr Agostinho Pereira da Silva'),
(140129, 110510, 'de', 'name', 'Novetus GmbH, Novetus GmbH (Austria)'),
(140130, 110511, 'de', 'name', 'Laboratorium für Festkörperphysik'),
(140131, 110511, 'en', 'name', 'Laboratory for Solid State Physics'),
(140132, 110512, 'pt', 'name', 'IPE Digital, Instituto de Pesquisa para Economia Digital'),
(140133, 110513, 'pt', 'name', 'Instituto Jurídico da Comunicação'),
(140134, 110514, 'en', 'name', 'Ministry of Health'),
(140135, 110515, 'en', 'name', 'Next Generation Laser Processing Technology Research Association'),
(140136, 110515, 'ja', 'name', 'ę¬”äø–ä»£ćƒ¬ćƒ¼ć‚¶ćƒ¼ćƒ—ćƒ­ć‚»ćƒƒć‚·ćƒ³ć‚°ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(140137, 110516, 'en', 'name', 'Vehicle Information and Communication System Center'),
(140138, 110516, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé“č·Æäŗ¤é€šęƒ…å ±é€šäæ”ć‚·ć‚¹ćƒ†ćƒ ć‚»ćƒ³ć‚æćƒ¼'),
(140139, 110517, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ© ŁˆŲ§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ Ų§Ł„Ų³ŁˆŲÆŲ§Ł†'),
(140140, 110517, 'en', 'name', 'Ministry of Higher Education And Scientific Research'),
(140141, 110518, 'en', 'name', 'New England School of Acupuncture'),
(140142, 110519, 'pt', 'name', 'Universidade Católica Portuguesa - Braga'),
(140143, 110520, 'en', 'name', 'Institute for European Energy and Climate Policy'),
(140144, 110521, 'en', 'name', 'The European Center for High Field NMR'),
(140145, 110521, 'fr', 'name', 'Centre Européen de Résonance Magnétique Nucléaire A Très Hauts Champs'),
(140146, 110522, 'fr', 'name', 'Atmo Hauts-de-France'),
(140147, 110523, 'fr', 'name', 'Centre Interlangues'),
(140148, 110524, 'sv', 'name', 'LantmƤnnen'),
(140149, 110525, 'en', 'name', 'Kırklareli University'),
(140150, 110525, 'tr', 'name', 'Kırklareli Üniversitesi'),
(140151, 110526, 'en', 'name', 'Japan Digital Road Map Association'),
(140152, 110526, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćƒ‡ć‚øć‚æćƒ«é“č·Æåœ°å›³å”ä¼š'),
(140153, 110527, 'en', 'name', 'Kalaroa Govt. College'),
(140154, 110528, 'en', 'name', 'ICAR - Central Institute for Research on Cotton Technology'),
(140155, 110529, 'en', 'name', 'Infectious Diseases Labs'),
(140156, 110530, 'en', 'name', 'Atomic Energy and Alternative Energies Commission'),
(140157, 110530, 'fr', 'name', 'Commissariat Ơ l''Ɖnergie Atomique et aux Ɖnergies Alternatives'),
(140158, 110531, 'en', 'name', 'Digitisation Centre of Western Australia'),
(140159, 110532, 'en', 'name', 'Japan Water Agency'),
(140160, 110532, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗę°“č³‡ęŗę©Ÿę§‹'),
(140161, 110533, 'en', 'name', 'Program for the Development of Basic Sciences'),
(140162, 110533, 'es', 'name', 'Programa de Desarrollo de las Ciencias BƔsicas'),
(140163, 110534, 'en', 'name', 'Research Center for Applied Zoology'),
(140164, 110535, 'pt', 'name', 'Instituto de Direito das Empresas e do Trabalho'),
(140165, 110536, 'en', 'name', 'Okayama Construction Technology Center'),
(140166, 110536, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå²”å±±ēœŒå»ŗčØ­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(140167, 110537, 'es', 'name', 'Instituto Nacional de Metrologia, Instituto Nacional de Metrologia de la Republica de Cuba'),
(140168, 110538, 'de', 'name', 'Hochschule Bochum Standort Gesundheitscampus'),
(140169, 110538, 'en', 'name', 'Bochum University of Applied Sciences Health Campus'),
(140170, 110539, 'en', 'name', 'Science Europe'),
(140171, 110540, 'en', 'name', 'Geelong Hospital'),
(140172, 110541, 'pt', 'name', 'Associação Rede de Competência em Polímeros'),
(140173, 110542, 'en', 'name', 'Museu de Arte Contemporânea de Serralves'),
(140174, 110543, 'en', 'name', 'Clinical Trial and Consulting'),
(140175, 110544, 'de', 'name', 'Schloss Dagstuhl – Leibniz Center for Informatics, Schloss Dagstuhl – Leibniz-Zentrum für Informatik'),
(140176, 110545, 'no_lang_code', 'name', 'Logiters Portugal, Logiters Portugal (Portugal)'),
(140177, 110546, 'pt', 'name', 'Direcção-Geral do Emprego e das Relações de Trabalho'),
(140178, 110547, 'en', 'name', 'Namangan State University'),
(140179, 110547, 'uz', 'name', 'Namangan Davlat Universiteti'),
(140180, 110548, 'en', 'name', 'Federal College of Education (Technical) Bichi'),
(140181, 110549, 'it', 'name', 'Consorzio Polo Tecnologico Magona'),
(140182, 110550, 'no_lang_code', 'name', 'AdvanceCare Gestão em Saúde (Portugal), AdvanceCare Gestão em Saúde, S.A., AdvanceCare Healthcare'),
(140183, 110551, 'en', 'name', 'Turan International University'),
(140184, 110552, 'es', 'name', 'Universidad para el Bienestar Benito JuƔrez Garcƭa'),
(140185, 110553, 'en', 'name', 'Chiba Children''s Hospital'),
(140186, 110553, 'ja', 'name', 'åƒč‘‰ēœŒć“ć©ć‚‚ē—…é™¢'),
(140187, 110554, 'en', 'name', 'Complexity and Topology in Quantum Matter'),
(140188, 110555, 'en', 'name', 'Japan Association of International Relations'),
(140189, 110555, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å›½éš›ę”æę²»å­¦ä¼š'),
(140190, 110556, 'en', 'name', 'Research Institute Of Regional And Urban Planning'),
(140191, 110556, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸęŒÆčˆˆē ”ē©¶ę‰€'),
(140192, 110557, 'sv', 'name', 'Svenska Frimurare Orden'),
(140193, 110558, 'cy', 'name', 'Prifysgol Surrey'),
(140194, 110558, 'en', 'name', 'University of Surrey'),
(140195, 110559, 'en', 'name', 'Japan Sport Association'),
(140196, 110559, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„å”ä¼š'),
(140197, 110560, 'en', 'name', 'The Life Insurance Association of Japan'),
(140198, 110560, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē”Ÿå‘½äæé™ŗå”ä¼š'),
(140199, 110561, 'no_lang_code', 'name', 'Oceano Fresco (Portugal), Oceano Fresco, S.A.'),
(140200, 110562, 'fr', 'name', 'Institut National de SantƩ Publique du QuƩbec'),
(140201, 110563, 'no_lang_code', 'name', 'Basi Laboratories - Pharmaceutical Industries, Laboratórios Basi - Indústria Farmacêutica (Portugal), Laboratórios Basi - Indústria Farmacêutica, S.A.'),
(140202, 110564, 'en', 'name', 'Hyogo International Association'),
(140203, 110564, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…µåŗ«ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(140204, 110565, 'en', 'name', 'Yueyang Vocational Technical College'),
(140205, 110565, 'zh', 'name', 'å²³é˜³čŒäøšęŠ€ęœÆå­¦é™¢'),
(140206, 110566, 'en', 'name', 'Poltava State Medical University'),
(140207, 110566, 'uk', 'name', 'ŠŸŠ¾Š»Ń‚Š°Š²ŃŃŒŠŗŠøŠ¹ Гержавний меГичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(140208, 110567, 'pt', 'name', 'Jardim Botânico da Madeira Engenheiro Rui Vieira'),
(140209, 110568, 'en', 'name', 'ETH Phenomics Center'),
(140210, 110569, 'de', 'name', 'Geologisches Institut'),
(140211, 110569, 'en', 'name', 'Geological Institute'),
(140212, 110570, 'en', 'name', 'Brooke Army Medical Center'),
(140213, 110571, 'fr', 'name', 'Fondation Francqui'),
(140214, 110572, 'en', 'name', 'Pennsylvania State System of Higher Education'),
(140215, 110573, 'en', 'name', 'Northwestern University'),
(140216, 110574, 'id', 'name', 'STAI Al-Falah Cicalengka'),
(140217, 110575, 'ar', 'name', 'المدرسة_Ų§Ł„ŁˆŲ·Ł†ŁŠŲ©_Ų§Ł„Ų¹Ł„ŁŠŲ§_Ł„Ł„ŲØŲ­Ų±ŁŠŲ©'),
(140218, 110575, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure Maritime'),
(140219, 110576, 'en', 'name', 'Naval Education and Training Command'),
(140220, 110577, 'en', 'name', 'Spinal Injuries Association'),
(140221, 110578, 'ca', 'name', 'Institut de Robòtica i Informàtica Industrial'),
(140222, 110578, 'en', 'name', 'Institute of Robotics and Industrial Informatics'),
(140223, 110578, 'es', 'name', 'Instituto de Robótica e InformÔtica Industrial'),
(140224, 110579, 'en', 'name', 'Space Delta 4'),
(140225, 110580, 'pt', 'name', 'Beira Serra Associação de Desenvolvimento'),
(140226, 110581, 'pt', 'name', 'Mosteiro dos Jerónimos'),
(140227, 110582, 'de', 'name', 'Institut für Holztechnologie Dresden'),
(140228, 110583, 'en', 'name', 'Australian Health Practitioner Regulation Agency'),
(140229, 110584, 'no_lang_code', 'name', '3M (United States)'),
(140230, 110585, 'en', 'name', 'Agroecology'),
(140231, 110585, 'fr', 'name', 'AgroƩcologie'),
(140232, 110586, 'en', 'name', 'University of Notre Dame'),
(140233, 110586, 'fr', 'name', 'UniversitƩ notre-dame'),
(140234, 110587, 'en', 'name', 'Genkikai Yokohama Hospital'),
(140235, 110587, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å…ƒę°—ä¼šęØŖęµœē—…é™¢'),
(140236, 110588, 'en', 'name', 'Kawasaki International Association'),
(140237, 110588, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå·å“Žåø‚å›½éš›äŗ¤ęµå”ä¼š'),
(140238, 110589, 'en', 'name', 'Institute of Pharmaceutical Education and Research'),
(140239, 110590, 'pt', 'name', 'Ribadial Clƭnica de DiƔlise de SantarƩm Lda'),
(140240, 110591, 'pt', 'name', 'c5Lab'),
(140241, 110592, 'en', 'name', 'University Hospital of Montpellier'),
(140242, 110592, 'fr', 'name', 'Centre Hospitalier Universitaire de Montpellier'),
(140243, 110593, 'en', 'name', 'Dr. Franjo Tudman Defense and Security University'),
(140244, 110594, 'pt', 'name', 'Comissão de Coordenação e Desenvolvimento Regional do Algarve'),
(140245, 110595, 'en', 'name', 'Chiba City International Association'),
(140246, 110595, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåƒč‘‰åø‚å›½éš›äŗ¤ęµå”ä¼š'),
(140247, 110596, 'en', 'name', 'Kyoai Gakuen Junior College'),
(140248, 110596, 'ja', 'name', 'å…±ę„›å­¦åœ’å‰ę©‹å›½éš›å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(140249, 110597, 'am', 'name', 'į‹ØįŠ¢į‰µį‹®įŒµį‹« į‹įˆƒ įˆ€į‰„į‰µ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(140250, 110597, 'en', 'name', 'Ethiopian Institute of Water Resources'),
(140251, 110598, 'en', 'name', 'Institute of Oceanology. PP Shirshov Russian Academy of Sciences'),
(140252, 110598, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ океанологии имени П. П. ŠØŠøŃ€ŃˆŠ¾Š²Š°'),
(140253, 110599, 'en', 'name', 'Central Coastal Agricultural Research Institute'),
(140254, 110600, 'en', 'name', 'Yokosuka City Institute Of Public Health'),
(140255, 110600, 'ja', 'name', 'ęØŖé ˆč³€åø‚å„åŗ·å®‰å…Øē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(140256, 110601, 'en', 'name', 'University of Strathclyde'),
(140257, 110602, 'id', 'name', 'Institut Kesehatan Helvetia'),
(140258, 110603, 'en', 'name', 'Sirius University of Science and Technology'),
(140259, 110603, 'ru', 'name', 'ŠŠ°ŃƒŃ‡Š½Š¾-технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ā«Š”ŠøŃ€ŠøŃƒŃĀ»'),
(140260, 110604, 'pt', 'name', 'Sociedade Portuguesa de Psicologia da SaĆŗde'),
(140261, 110605, 'en', 'name', 'Indiana University Northwest'),
(140262, 110606, 'en', 'name', 'Novorossiysk Polytechnic Institute'),
(140263, 110606, 'ru', 'name', 'ŠŠ¾Š²Š¾Ń€Š¾ŃŃŠøŠ¹ŃŠŗŠøŠ¹ политехнический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(140264, 110607, 'en', 'name', 'Mathematics in Open Access'),
(140265, 110608, 'en', 'name', 'Hokkaido Intellect Tank'),
(140266, 110608, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“ē·åˆē ”ē©¶čŖæęŸ»ä¼š'),
(140267, 110609, 'en', 'name', 'The Japanese Association of Rehabilitation Medicine'),
(140268, 110609, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³åŒ»å­¦ä¼š'),
(140269, 110610, 'no_lang_code', 'name', 'L''OrƩal (France)'),
(140270, 110611, 'ar', 'name', 'Ų£ŁƒŲ§ŲÆŁŠŁ…ŁŠŲ© الامارات Ł„Ł„Ł‡ŁˆŁŠŲ© ŁˆŲ§Ł„Ų¬Ł†Ų³ŁŠŲ©'),
(140271, 110611, 'en', 'name', 'Emirates Academy for Identity and Citizenship'),
(140272, 110612, 'en', 'name', 'Gombe State College of Health Sciences and Technology Kaltungo'),
(140273, 110613, 'no_lang_code', 'name', 'Farcimar SGPS (Portugal), Farcimar SGPS, S.A.'),
(140274, 110614, 'no_lang_code', 'name', 'Google (United States)'),
(140275, 110615, 'pt', 'name', 'Centro de Empresas Inovadoras'),
(140276, 110616, 'en', 'name', 'Osaka Nuclear Science Association'),
(140277, 110616, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§é˜Ŗćƒ‹ćƒ„ćƒ¼ć‚ÆćƒŖć‚¢ć‚µć‚¤ć‚Øćƒ³ć‚¹å”ä¼š'),
(140278, 110617, 'es', 'name', 'Instituto Peruano de Neurociencias'),
(140279, 110618, 'en', 'name', 'MR Education & Accreditation Center of Japan'),
(140280, 110618, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗMRčŖå®šć‚»ćƒ³ć‚æćƒ¼'),
(140281, 110619, 'en', 'name', 'Physical Sciences Division'),
(140282, 110619, 'ru', 'name', 'ŠžŃ‚Š“ŠµŠ»ŠµŠ½ŠøŠµ физических наук Š ŠŠ'),
(140283, 110620, 'en', 'name', 'AI Singapore'),
(140284, 110621, 'en', 'name', 'The Optical Society of Japan'),
(140285, 110621, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å…‰å­¦ä¼š'),
(140286, 110622, 'en', 'name', 'Emergent Behaviors of Integrated Cellular Systems'),
(140287, 110623, 'en', 'name', 'Japan Groundwork Association'),
(140288, 110623, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚°ćƒ©ć‚¦ćƒ³ćƒ‰ćƒÆćƒ¼ć‚Æå”ä¼š'),
(140289, 110624, 'en', 'name', 'International Institute of Justice and Police Sciences'),
(140290, 110625, 'en', 'name', 'Department of Mineral and Geoscience Malaysia'),
(140291, 110625, 'ms', 'name', 'Jabatan Mineral dan Geosains Malaysia'),
(140292, 110626, 'en', 'name', 'Sydney College of Divinity'),
(140293, 110627, 'no_lang_code', 'name', 'SEMTDistribuição, SEMTDistribuição (Portugal)'),
(140294, 110628, 'en', 'name', 'Poznań University of Technology'),
(140295, 110628, 'pl', 'name', 'Politechnika Poznańska'),
(140296, 110629, 'en', 'name', 'The Cell Science Research Foundation'),
(140297, 110629, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē“°čƒžē§‘å­¦ē ”ē©¶č²”å›£'),
(140298, 110630, 'fr', 'name', 'Centre intƩgrƩ universitaire de santƩ et de services sociaux de la Capitale-Nationale'),
(140299, 110631, 'en', 'name', 'RISEBA University of Applied Sciences'),
(140300, 110631, 'lv', 'name', 'Biznesa, mākslas un tehnoloģiju augstskola RISEBA'),
(140301, 110632, 'en', 'name', 'Dhanalakshmi Srinivasan University'),
(140302, 110633, 'it', 'name', 'Agenzia Regionale per la Prevenzione e la Protezione dell''Ambiente Puglia'),
(140303, 110634, 'ca', 'name', 'Universitat d''Estrasburg'),
(140304, 110634, 'de', 'name', 'Universität Straßburg'),
(140305, 110634, 'en', 'name', 'University of Strasbourg'),
(140306, 110634, 'fr', 'name', 'UniversitƩ de Strasbourg'),
(140307, 110635, 'pt', 'name', 'Camões - Instituto da Cooperação e da Língua'),
(140308, 110636, 'en', 'name', 'Arts Flanders Japan'),
(140309, 110636, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ćƒ¼ćƒ„ćƒ•ćƒ©ćƒ³ćƒ€ćƒ¼ć‚¹ćƒ»ć‚øćƒ£ćƒ‘ćƒ³'),
(140310, 110637, 'en', 'name', 'ClearWay Minnesota'),
(140311, 110638, 'pt', 'name', 'Sociedade Portuguesa de Terapia Familiar'),
(140312, 110639, 'en', 'name', 'Lyell McEwin Hospital'),
(140313, 110640, 'no_lang_code', 'name', 'Autodesk (United States)'),
(140314, 110641, 'bn', 'name', 'জামিয়া মিলিয়া ইসলামিয়া'),
(140315, 110641, 'hi', 'name', 'जामिया मिलिया ą¤‡ą¤øą„ą¤²ą¤¾ą¤®ą¤æą¤Æą¤¾'),
(140316, 110641, 'ml', 'name', 'ą“œą“¾ą“®ą“æą“Æ ą“®ą“æą“²ąµą“²ą“æą“Æ ą“‡ą“øąµą“²ą“¾ą“®ą“æą“Æ'),
(140317, 110641, 'no_lang_code', 'name', 'Jamia Millia Islamia'),
(140318, 110641, 'pa', 'name', 'ąØœąØ¾ąØ®ą©€ąØ† ਮਿਲੀਆ ਇਸਲਾਮੀਆ'),
(140319, 110641, 'ur', 'name', 'جامعہ Ł…Ł„ŪŒŪ Ų§Ų³Ł„Ų§Ł…ŪŒŪ'),
(140320, 110642, 'de', 'name', 'Institut für Computing Platforms'),
(140321, 110642, 'en', 'name', 'Institute for Computing Platforms'),
(140322, 110643, 'pt', 'name', 'Sociedade Portuguesa de Estudos Rurais'),
(140323, 110644, 'pt', 'name', 'Data CoLAB'),
(140324, 110645, 'en', 'name', 'Osaka Architecture Technology Association'),
(140325, 110645, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¤§é˜Ŗå»ŗēÆ‰ęŠ€č”“å”ä¼š'),
(140326, 110646, 'es', 'name', 'Instituto de Altos Estudios Espaciales ā€œMario Gulichā€'),
(140327, 110647, 'en', 'name', 'Federal Office for Defence Procurement'),
(140328, 110648, 'en', 'name', 'The Ocean Foundation'),
(140329, 110649, 'en', 'name', 'Duke University'),
(140330, 110649, 'es', 'name', 'Universidad de Duke'),
(140331, 110650, 'en', 'name', 'Structural Engineering Research Centre'),
(140332, 110651, 'en', 'name', 'Sydney Adventist Hospital'),
(140333, 110652, 'en', 'name', 'AGST Philippines'),
(140334, 110653, 'en', 'name', 'Horizon Discovery, Horizon Discovery (United Kingdom), Revvity Discovery Limited'),
(140335, 110654, 'fr', 'name', 'Centre d''Ɖtude sur la FiscalitĆ© des Entreprises de Paris'),
(140336, 110655, 'be', 'name', 'Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Š±Ń–ŃŃ„Ń–Š·Ń–ŠŗŃ– і клетачнай інжынерыі, Š†Š½ŃŃ‚Ń‹Ń‚ŃƒŃ‚ Š±Ń–ŃŃ„Ń–Š·Ń–ŠŗŃ– і клетачнай інжынерыі ŠŠŠ Š‘ŠµŠ»Š°Ń€ŃƒŃŃ–'),
(140337, 110655, 'en', 'name', 'Institute of Biophysics and Cell Engineering'),
(140338, 110656, 'en', 'name', 'Sendai gender equal opportunity foundation'),
(140339, 110656, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć›ć‚“ć ć„ē”·å„³å…±åŒå‚ē”»č²”å›£'),
(140340, 110657, 'pt', 'name', 'Escola Artística de Dança do Conservatório Nacional'),
(140341, 110658, 'nl', 'name', 'Amsterdam UMC Location Vrije Universiteit Amsterdam'),
(140342, 110659, 'no', 'name', 'NILU, Stiftelsen NILU'),
(140343, 110660, 'en', 'name', 'Rajkiya Engineering College Kannauj'),
(140344, 110661, 'it', 'name', 'Agenzia Regionale per la Protezione Ambientale della Toscana'),
(140345, 110662, 'de', 'name', 'Klinikum Gƶrlitz'),
(140346, 110663, 'en', 'name', 'Japan Designers Association'),
(140347, 110663, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›³ę”ˆå®¶å”ä¼š'),
(140348, 110664, 'en', 'name', 'National Gallery in Prague'),
(140349, 110665, 'nl', 'name', 'Jan Kornelis de Cock Stichting'),
(140350, 110666, 'en', 'name', 'Institute of Soil Science and Plant Cultivation'),
(140351, 110667, 'pt', 'name', 'Câmara Municipal de Águeda'),
(140352, 110668, 'fr', 'name', 'Institut National de l''Ɖnergie Solaire, National Solar Energy Institute'),
(140353, 110669, 'en', 'name', 'Centre for Material Forming, Mines Paris, PSL University, Centre for material forming (CEMEF)'),
(140354, 110669, 'fr', 'name', 'Centre de Mise en Forme des MatƩriaux, Mines Paris, UniversitƩ PSL, Centre de Mise en Forme des MatƩriaux (CEMEF)'),
(140355, 110670, 'cs', 'name', 'FakultnĆ­ Nemocnice Brno'),
(140356, 110670, 'en', 'name', 'University Hospital Brno'),
(140357, 110671, 'en', 'name', 'Bankstown Lidcombe Hospital'),
(140358, 110672, 'en', 'name', 'Iida Junior College'),
(140359, 110672, 'ja', 'name', 'é£Æē”°ēŸ­ęœŸå¤§å­¦'),
(140360, 110673, 'en', 'name', 'Armavir Institute of Mechanics and Technology'),
(140361, 110673, 'ru', 'name', 'Армавирский механико-технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(140362, 110674, 'pt', 'name', 'CĆ¢mara Municipal de Albergaria'),
(140363, 110675, 'en', 'name', 'Toyama New Industry Organization'),
(140364, 110675, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåÆŒå±±ēœŒę–°äø–ē“€ē”£ę„­ę©Ÿę§‹'),
(140365, 110676, 'en', 'name', 'Vellore Institute of Technology University'),
(140366, 110676, 'ta', 'name', 'ą®µąÆ‡ą®²ąÆ‚ą®°ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(140367, 110677, 'de', 'name', 'Ernst-Moritz-Arndt-UniversitƤt Greifswald, UniversitƤt Greifswald'),
(140368, 110678, 'it', 'name', 'Agenzia Regionale per la Protezione dell''Ambiente Sicilia'),
(140369, 110679, 'en', 'name', 'Budapest University of Economics and Business'),
(140370, 110679, 'hu', 'name', 'Budapesti GazdasƔgi Egyetem'),
(140371, 110680, 'en', 'name', 'IRL HealthDEEP'),
(140372, 110681, 'da', 'name', 'HF & VUC Klar'),
(140373, 110682, 'fr', 'name', 'Maison des Sciences de l''Homme Lyon St-Ɖtienne'),
(140374, 110683, 'ar', 'name', 'الجامعة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(140375, 110683, 'en', 'name', 'National University of Science and Technology'),
(140376, 110684, 'en', 'name', 'National Agency for Research'),
(140377, 110684, 'fr', 'name', 'Agence Nationale de la Recherche'),
(140378, 110685, 'de', 'name', 'UniversitƤt zu Kƶln'),
(140379, 110685, 'en', 'name', 'University of Cologne'),
(140380, 110686, 'no_lang_code', 'name', 'FƔbrica de Startups (Portugal), FƔbrica de Startups, S.A., Startups Factory'),
(140381, 110687, 'en', 'name', 'Computer Graphic Arts Society'),
(140382, 110687, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē”»åƒęƒ…å ±ę•™č‚²ęŒÆčˆˆå”ä¼š'),
(140383, 110688, 'en', 'name', 'Oftalcare Eye Clinic'),
(140384, 110688, 'pt', 'name', 'Oftalcare Clínica Oftalmológica Lda'),
(140385, 110689, 'pt', 'name', 'Academia de MĆŗsica de Lisboa'),
(140386, 110690, 'en', 'name', 'Japan Cycling Federation'),
(140387, 110690, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č‡Ŗč»¢č»Šē«¶ęŠ€é€£ē›Ÿ'),
(140388, 110691, 'id', 'name', 'STMIK Widya Cipta Dharma'),
(140389, 110692, 'en', 'name', 'Office of Naval Research'),
(140390, 110693, 'en', 'name', 'K. N. Bhise Arts, Commerce and Vinayakrao Patil Science College'),
(140391, 110694, 'en', 'name', 'Aeon Environmental Foundation'),
(140392, 110694, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¤ć‚Ŗćƒ³ē’°å¢ƒč²”å›£'),
(140393, 110695, 'en', 'name', 'Peace Corps'),
(140394, 110696, 'en', 'name', 'Centre for Quantum Computation and Communication Technology'),
(140395, 110697, 'en', 'name', 'The University of Queensland'),
(140396, 110698, 'no_lang_code', 'name', 'Aimmune Therapeutics (United Kingdom)'),
(140397, 110699, 'en', 'name', 'The Ohio State University'),
(140398, 110699, 'es', 'name', 'Universidad Estatal de Ohio'),
(140399, 110699, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''Ohio'),
(140400, 110700, 'de', 'name', 'Wiener Psychoanalytische Vereinigung'),
(140401, 110701, 'en', 'name', 'Laboratory of Pathogens and Host Immunity'),
(140402, 110701, 'fr', 'name', 'Laboratoire des pathogènes et de l''immunité de l''hÓte'),
(140403, 110702, 'no_lang_code', 'name', 'Armory of the Alfeite, Arsenal do Alfeite, Arsenal do Alfeite (Portugal)'),
(140404, 110703, 'en', 'name', 'University of Michigan Press'),
(140405, 110704, 'en', 'name', 'Japan Atherosclerosis Research Foundation'),
(140406, 110704, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå‹•č„ˆē”¬åŒ–ē ”ē©¶å„ØåŠ±ä¼š'),
(140407, 110705, 'bn', 'name', 'বাংলাদেশ ফরেন ą¦Ÿą§ą¦°ą§‡ą¦” ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ'),
(140408, 110705, 'en', 'name', 'Bangladesh Foreign Trade Institute'),
(140409, 110706, 'en', 'name', 'University of Malaya'),
(140410, 110706, 'ms', 'name', 'Universiti Malaya'),
(140411, 110706, 'ta', 'name', 'மலாயா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(140412, 110706, 'th', 'name', 'ดหาวณทยาคัยดาคายา'),
(140413, 110706, 'zh', 'name', 'é©¬ę„äŗšå¤§å­¦'),
(140414, 110707, 'es', 'name', 'Institución Universitaria Pascual Bravo'),
(140415, 110708, 'de', 'name', 'Landesforschungsanstalt für Landwirtschaft und Fischerei Mecklenburg-Vorpommern'),
(140416, 110708, 'en', 'name', 'Mecklenburg-Vorpommern Research Centre for Agriculture and Fisheries'),
(140417, 110709, 'no_lang_code', 'name', 'Dr. D.Y. Patil Vidyapeeth, Pune'),
(140418, 110710, 'pt', 'name', 'FÔbrica Centro Ciência Viva de Aveiro'),
(140419, 110711, 'ca', 'name', 'Universitat de Pavia'),
(140420, 110711, 'en', 'name', 'University of Pavia'),
(140421, 110711, 'fr', 'name', 'UniversitƩ de pavie'),
(140422, 110711, 'it', 'name', 'UniversitĆ  degli Studi di Pavia'),
(140423, 110712, 'de', 'name', 'Gesellschaft für Klinische Forschung, Gesellschaft für klinische Forschung e.V.'),
(140424, 110713, 'en', 'name', 'Lodz University of Technology'),
(140425, 110713, 'pl', 'name', 'Politechnika Łódzka'),
(140426, 110714, 'no_lang_code', 'name', 'Upstream Portugal, Upstream Portugal (Portugal)'),
(140427, 110715, 'en', 'name', 'Japan Image and Information Management Association'),
(140428, 110715, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę–‡ę›øęƒ…å ±ćƒžćƒć‚øćƒ”ćƒ³ćƒˆå”ä¼š'),
(140429, 110716, 'ga', 'name', 'Bord Iascaigh Mharaga'),
(140430, 110717, 'en', 'name', 'Lesbian, Gay, Bisexual and Transgender Community Center'),
(140431, 110718, 'en', 'name', 'Museu de Arte Contemporânea de Elvas'),
(140432, 110719, 'en', 'name', 'University of Maryland Medical Center'),
(140433, 110720, 'en', 'name', 'Seversk Technological Institute'),
(140434, 110720, 'ru', 'name', 'Деверский технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(140435, 110721, 'no_lang_code', 'name', 'TMG Group, TMG Group (Portugal)'),
(140436, 110722, 'id', 'name', 'Badan Pengembangan Sumber Daya Manusia Provinsi DKI Jakarta'),
(140437, 110723, 'en', 'name', 'Shibata Gakuen University'),
(140438, 110723, 'ja', 'name', 'ęŸ“ē”°å­¦åœ’å¤§å­¦'),
(140439, 110724, 'en', 'name', 'The Japanese Society of Fisheries Science'),
(140440, 110724, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“ē”£å­¦ä¼š'),
(140441, 110725, 'bg', 'name', 'Š”Š¾Š±Ń€ŃƒŠ“Š¶Š°Š½ŃŠŗŠø земеГелски ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ - Генерал Тошево'),
(140442, 110725, 'en', 'name', 'Dobrudzha Agricultural Institute - General Toshevo'),
(140443, 110726, 'pt', 'name', 'CĆ¢mara Municipal do Seixal'),
(140444, 110727, 'pt', 'name', 'Instituto de Investigação em Ciências do Mar Okeanos'),
(140445, 110728, 'pt', 'name', 'Casa de Sarmento'),
(140446, 110729, 'fr', 'name', 'Laboratoire d’Astrophysique de Marseille'),
(140447, 110730, 'en', 'name', 'Victorian Comprehensive Cancer Centre'),
(140448, 110731, 'en', 'name', 'Legal and Political Studies Laboratory'),
(140449, 110731, 'fr', 'name', 'Laboratoire d’études juridiques et politiques'),
(140450, 110732, 'en', 'name', 'General Hospital of Larisa, Greece'),
(140451, 110733, 'en', 'name', 'All India Institute of Medical Sciences, Deoghar'),
(140452, 110734, 'es', 'name', 'Instituto Multidisciplinario para la Investigación y el Desarrollo Productivo y Social de la Cuenca del Golfo San Jorge'),
(140453, 110735, 'en', 'name', 'Chinese University of Hong Kong'),
(140454, 110735, 'zh', 'name', '香港中文大學'),
(140455, 110736, 'fr', 'name', 'Culture/s, Patrimoine/s, CrƩation/s - HƩritages'),
(140456, 110737, 'en', 'name', 'Birmingham City University'),
(140457, 110738, 'de', 'name', 'Hochschule für Angewandte Wissenschaften Burgenland'),
(140458, 110738, 'en', 'name', 'University of Applied Sciences Burgenland'),
(140459, 110739, 'en', 'name', 'Heavitree Hospital'),
(140460, 110740, 'bs', 'name', 'Univerzitet za poslovni inženjering i menadžment Banja Luka'),
(140461, 110740, 'en', 'name', 'University of Business Engineering and Management'),
(140462, 110740, 'sr', 'name', 'Универзитет за пословни ŠøŠ½Š¶ŠµŃšŠµŃ€ŠøŠ½Š³ Šø Š¼ŠµŠ½Š°ŃŸŠ¼ŠµŠ½Ń‚'),
(140463, 110741, 'no_lang_code', 'name', 'Wipro (Portugal)'),
(140464, 110742, 'pt', 'name', 'Escola Naval Unidade Orgânica de Ensino Politécnico'),
(140465, 110743, 'en', 'name', 'Edwards Aquifer Authority'),
(140466, 110744, 'en', 'name', 'Gifu Seiryu Hospital'),
(140467, 110744, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗęø…å…‰ä¼šå²é˜œęø…ęµē—…é™¢'),
(140468, 110745, 'en', 'name', 'University of Rochester Medical Center'),
(140469, 110746, 'en', 'name', 'United States Air Combat Command'),
(140470, 110747, 'en', 'name', 'Andalusian Earth Sciences Institute'),
(140471, 110747, 'es', 'name', 'Instituto Andaluz de Ciencias de la Tierra'),
(140472, 110748, 'de', 'name', 'Laboratorium für Physikalische Chemie'),
(140473, 110748, 'en', 'name', 'Laboratory of Physical Chemistry'),
(140474, 110749, 'cs', 'name', 'Centrum materiÔlů a nanotechnologií'),
(140475, 110749, 'en', 'name', 'Centre of Materials and Nanotechnologies'),
(140476, 110750, 'de', 'name', 'Bertha von Suttner PrivatuniversitƤt St. Pƶlten GmbH'),
(140477, 110751, 'en', 'name', 'Ecrins National Park'),
(140478, 110752, 'en', 'name', 'National Agency for Automotive Safety & Victims'' Aid'),
(140479, 110752, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗč‡Ŗå‹•č»Šäŗ‹ę•…åÆ¾ē­–ę©Ÿę§‹'),
(140480, 110753, 'en', 'name', 'GREEN CROSS japan'),
(140481, 110753, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚°ćƒŖćƒ¼ćƒ³ć‚Æćƒ­ć‚¹ć‚øćƒ£ćƒ‘ćƒ³'),
(140482, 110754, 'no_lang_code', 'name', 'Ferraz Lynce Especialidades FarmacĆŖuticas (Portugal), Ferraz Lynce Especialidades FarmacĆŖuticas, S.A., Ferraz Lynce Pharmaceutical Specialties'),
(140483, 110755, 'en', 'name', 'University of North Texas'),
(140484, 110755, 'es', 'name', 'Universidad del Norte de Texas'),
(140485, 110756, 'en', 'name', 'IESE Business School'),
(140486, 110757, 'en', 'name', 'Zhejiang Provincial Health Commission'),
(140487, 110757, 'zh', 'name', 'ęµ™ę±Ÿēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(140488, 110758, 'en', 'name', 'Sylhet Engineering College'),
(140489, 110759, 'es', 'name', 'Fundación I+D Software Libre'),
(140490, 110760, 'en', 'name', 'University of Belgrade – Faculty of Pharmacy'),
(140491, 110760, 'sr', 'name', 'Univerzitet u Beogradu – Farmaceutski fakultet'),
(140492, 110761, 'it', 'name', 'Centro interuniversitario per la ricerca sull''influenza e le altre infezioni trasmissibili'),
(140493, 110762, 'fr', 'name', 'Catalyseur Technologie SantƩ'),
(140494, 110763, 'en', 'name', 'Federal University of Technology, Babura'),
(140495, 110764, 'en', 'name', 'Sarsen Amanzholov East Kazakhstan University'),
(140496, 110764, 'kk', 'name', 'Š”Ó˜Š Š”Š•Š ŠŠœŠŠŠ–ŠžŠ›ŠžŠ’ ŠŠ¢Š«ŠŠ”ŠŅ’Š« ШЫҒЫД ŅšŠŠ—ŠŅšŠ”Š¢ŠŠ ŠœŠ•ŠœŠ›Š•ŠšŠ•Š¢Š¢Š†Šš Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢Š†'),
(140497, 110764, 'ru', 'name', 'Š’ŠžŠ”Š¢ŠžŠ§ŠŠž-ŠšŠŠ—ŠŠ„Š”Š¢ŠŠŠ”ŠšŠ˜Š™ Š“ŠžŠ”Š£Š”ŠŠ Š”Š¢Š’Š•ŠŠŠ«Š™ Š£ŠŠ˜Š’Š•Š Š”Š˜Š¢Š•Š¢ Š˜ŠœŠ•ŠŠ˜ Š”ŠŠ Š”Š•ŠŠ ŠŠœŠŠŠ–ŠžŠ›ŠžŠ’Š'),
(140498, 110765, 'it', 'name', 'AULSS 2 Marca Trevigiana'),
(140499, 110766, 'fr', 'name', 'GƩosciences Rennes'),
(140500, 110767, 'en', 'name', 'Ohara Graduate School of Business'),
(140501, 110767, 'ja', 'name', '大原大学院大学'),
(140502, 110768, 'en', 'name', 'Spinal Injuries Japan'),
(140503, 110768, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č„Šé«„ęå‚·č€…é€£åˆä¼š'),
(140504, 110769, 'no_lang_code', 'name', 'Costa NƔutica (Portugal)'),
(140505, 110770, 'en', 'name', 'Axminster Hospital'),
(140506, 110771, 'pt', 'name', 'Centro Paula Souza'),
(140507, 110772, 'pt', 'name', 'Universidade Norte do ParanĆ”'),
(140508, 110773, 'no_lang_code', 'name', 'Sermail Integrated Logistics, Sermail LogĆ­stica Integrada (Portugal)'),
(140509, 110774, 'en', 'name', 'XploreOpen'),
(140510, 110775, 'id', 'name', 'Universitas Islam Negeri Sultan Maulana Hasanuddin Banten'),
(140511, 110776, 'en', 'name', 'Anderson Orthopaedic Clinic'),
(140512, 110777, 'en', 'name', 'Jabalpur Engineering College'),
(140513, 110777, 'hi', 'name', 'ą¤œą¤¬ą¤²ą¤Ŗą„ą¤° ą¤…ą¤­ą¤æą¤Æą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤•ą„€ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(140514, 110778, 'es', 'name', 'Pronatura Peninsula de Yucatan, A.C.'),
(140515, 110779, 'uk', 'name', 'Polissya Institute of Agriculture of National Academy of Agrarian Sciences of Ukraine, Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠŸŠ¾Š»Ń–сся ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(140516, 110780, 'fr', 'name', 'Laboratoire de Physique de l''ENS de Lyon'),
(140517, 110781, 'en', 'name', 'Agricultural Development and Training Center'),
(140518, 110781, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč¾²ę„­é–‹ē™ŗē ”äæ®ć‚»ćƒ³ć‚æćƒ¼'),
(140519, 110782, 'en', 'name', 'Nippon International Cooperation for Community Development'),
(140520, 110782, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å›½éš›ę°‘é–“å”åŠ›ä¼š'),
(140521, 110783, 'en', 'name', 'National Laboratory of Energy and Geology'),
(140522, 110783, 'pt', 'name', 'Laboratório Nacional de Energia e Geologia'),
(140523, 110784, 'de', 'name', 'Berliner Hochschule für Technik'),
(140524, 110785, 'en', 'name', 'Toyota Motor Engineering & Manufacturing North America, Inc., Toyota Motor Engineering & Manufacturing North America, Inc. (United States)'),
(140525, 110785, 'ja', 'name', 'ćƒˆćƒØć‚æč‡Ŗå‹•č»ŠåŒ—ē±³'),
(140526, 110786, 'en', 'name', 'Tokyo Metropolitan Islands Area Research and Development Center for Agriculture, Forestry and Fisheries'),
(140527, 110786, 'ja', 'name', 'ę±äŗ¬éƒ½å³¶ć—ć‚‡č¾²ęž—ę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(140528, 110787, 'en', 'name', 'Hyogo Prefectural Kakogawa Medical Center'),
(140529, 110787, 'ja', 'name', 'å…µåŗ«ēœŒē«‹åŠ å¤å·åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(140530, 110788, 'en', 'name', 'Australian College of Environmental Studies'),
(140531, 110789, 'en', 'name', 'Nagano Society for the Promotion of Science'),
(140532, 110789, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé•·é‡ŽēœŒē§‘å­¦ęŒÆčˆˆä¼š'),
(140533, 110790, 'en', 'name', 'Siddaganga Institute of Technology'),
(140534, 110791, 'pt', 'name', 'Centro de Investigação em Educação'),
(140535, 110792, 'en', 'name', 'John Adams Institute for Accelerator Science'),
(140536, 110793, 'en', 'name', 'Westlake Robotics, Westlake Robotics (China)'),
(140537, 110794, 'en', 'name', 'TheCombinatorics Consortium'),
(140538, 110795, 'en', 'name', 'National School of Administration'),
(140539, 110795, 'fr', 'name', 'Ɖcole nationale d''administration'),
(140540, 110795, 'oc', 'name', 'Escòla Nacionala d''Administracion'),
(140541, 110796, 'fr', 'name', 'Vieillissement, FragilitƩ'),
(140542, 110797, 'no_lang_code', 'name', 'FI Group, FI Group (Portugal)'),
(140543, 110798, 'pt', 'name', 'Sociedade Portuguesa de Patologia Animal'),
(140544, 110799, 'en', 'name', 'Central State Scientific and Technical Archive of Ukraine'),
(140545, 110799, 'uk', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ Гержавний науково-технічний архів України'),
(140546, 110800, 'pt', 'name', 'Unidade Local de SaĆŗde de Amadora/Sintra'),
(140547, 110801, 'cs', 'name', 'Biotechnologický Ćŗstav AV ČR, Biotechnologický Ćŗstav AV ČR, v. v. i., Biotechnologický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(140548, 110801, 'en', 'name', 'Czech Academy of Sciences, Institute of Biotechnology'),
(140549, 110802, 'pt', 'name', 'Centro de Investigação e Estudos João de Deus'),
(140550, 110803, 'en', 'name', 'Federal University of Health Sciences of Porto Alegre'),
(140551, 110803, 'es', 'name', 'Universidad Federal de Ciencias de la Salud de Porto Alegre'),
(140552, 110803, 'pt', 'name', 'Universidade Federal de CiĆŖncias da SaĆŗde de Porto Alegre'),
(140553, 110804, 'en', 'name', 'The Japan Food Machinery Manufacturers'' Association'),
(140554, 110804, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é£Ÿå“ę©Ÿę¢°å·„ę„­ä¼š'),
(140555, 110805, 'en', 'name', 'Houston Christian University'),
(140556, 110806, 'en', 'name', 'Czech Hydrometeorological Institute'),
(140557, 110807, 'en', 'name', 'MetabERN'),
(140558, 110808, 'de', 'name', 'Hochschule 21'),
(140559, 110809, 'no_lang_code', 'name', 'MarSensing (Portugal)'),
(140560, 110810, 'fr', 'name', 'Laboratoire de sociologie et d''anthropologie'),
(140561, 110811, 'en', 'name', 'University of Kent'),
(140562, 110812, 'en', 'name', 'International Islamic Academy of Uzbekistan'),
(140563, 110813, 'en', 'name', 'Oral Health Association of Japan'),
(140564, 110813, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå£č…”äæå„å”ä¼š'),
(140565, 110814, 'pt', 'name', 'Instituto de Filosofia'),
(140566, 110815, 'it', 'name', 'Agenzia Regionale per la Tutela dell''Ambiente'),
(140567, 110816, 'en', 'name', 'Tiangong University'),
(140568, 110816, 'zh', 'name', '天擄巄业大学'),
(140569, 110817, 'pt', 'name', 'Centro de Estudos de Arquitetura Cidade e Território'),
(140570, 110818, 'en', 'name', 'Education Department of Henan Province'),
(140571, 110819, 'pt', 'name', 'Ispa CRL'),
(140572, 110820, 'en', 'name', 'British Columbia Centre of Excellence for Women''s Health'),
(140573, 110821, 'en', 'name', 'Kokand branch of Tashkent State Technical University named after Islam Karimov'),
(140574, 110822, 'en', 'name', 'University of Tennessee System'),
(140575, 110822, 'es', 'name', 'Universidad de Tennessee'),
(140576, 110822, 'fr', 'name', 'UniversitƩ du Tennessee'),
(140577, 110823, 'en', 'name', 'Japan Center for Area Development Research'),
(140578, 110823, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åœ°åŸŸé–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(140579, 110824, 'en', 'name', 'Kyrgyz-Uzbek International University named after Batyraly Sydykov'),
(140580, 110824, 'ky', 'name', 'Батыралы ДыГыков атынГагы ŠšŃ‹Ń€Š³Ń‹Š·-Өзбек Š­Š» аралык ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø'),
(140581, 110824, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠ¾-Узбекский ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени Батыралы ДыГыкова'),
(140582, 110825, 'en', 'name', 'digital Trial Innovation Platform'),
(140583, 110826, 'pt', 'name', 'Unidade Local de SaĆŗde do Alto Minho'),
(140584, 110827, 'en', 'name', 'Sumerian Scriptum Synthesis Publisher'),
(140585, 110828, 'en', 'name', 'Medical University of Białystok'),
(140586, 110828, 'pl', 'name', 'Uniwersytet Medyczny w Białymstoku'),
(140587, 110829, 'en', 'name', 'George Washington University'),
(140588, 110829, 'es', 'name', 'Universidad George Washington'),
(140589, 110830, 'en', 'name', 'Osaka Tennoji Zoo'),
(140590, 110830, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå¤©ēŽ‹åÆŗå‹•ē‰©åœ’'),
(140591, 110831, 'de', 'name', 'Fraunhofer-Einrichtung für Energieinfrastrukturen und Geotechnologien IEG'),
(140592, 110831, 'en', 'name', 'Fraunhofer Research Institution for Energy Infrastructures and Geotechnologies IEG'),
(140593, 110832, 'pt', 'name', 'Conservatório de Música e Artes do Dão'),
(140594, 110833, 'fr', 'name', 'Centre de recherche sur les stratƩgies Ʃconomiques'),
(140595, 110834, 'en', 'name', 'ERN eUROGEN'),
(140596, 110835, 'pt', 'name', 'Centro CiĆŖncia Viva de Tavira'),
(140597, 110836, 'de', 'name', 'UniversitƤt Breslau'),
(140598, 110836, 'en', 'name', 'University of Wrocław'),
(140599, 110836, 'pl', 'name', 'Uniwersytet Wrocławski'),
(140600, 110837, 'en', 'name', 'Venkateswara Homoeopathic Medical College and Hospital'),
(140601, 110838, 'en', 'name', 'Laboratory of Astrophysics of Bordeaux'),
(140602, 110838, 'fr', 'name', 'Laboratoire d''Astrophysique de Bordeaux'),
(140603, 110839, 'en', 'name', 'Antalya Bilim University'),
(140604, 110839, 'tr', 'name', 'Antalya Bilim Üniversitesi'),
(140605, 110840, 'en', 'name', 'Yokohama Minatomirai'),
(140606, 110840, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęØŖęµœćæćŖćØćæć‚‰ć„21'),
(140607, 110841, 'fr', 'name', 'UniversitƩ AndrƩ Salifou'),
(140608, 110842, 'de', 'name', 'Technologie- und Förderzentrum im Kompetenzzentrum für Nachwachsende Rohstoffe'),
(140609, 110842, 'en', 'name', 'Technology and Support Centre in the Centre of Excellence for Renewable Resources'),
(140610, 110843, 'de', 'name', 'Exzellenzclusters Entzündungsforschung'),
(140611, 110843, 'en', 'name', 'Cluster of Excellence "Inflammation at Interfaces"'),
(140612, 110844, 'en', 'name', 'Saga Pharmaceutical Sanitation Center'),
(140613, 110844, 'ja', 'name', 'ä½č³€ēœŒč”›ē”Ÿč–¬ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(140614, 110845, 'es', 'name', 'Centro de Isotopos'),
(140615, 110846, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المعارف'),
(140616, 110846, 'en', 'name', 'Al Maaref University'),
(140617, 110847, 'en', 'name', 'Institute of Neurobiology of the Slovak Academy of Sciences'),
(140618, 110847, 'sk', 'name', 'Neurobiologický ústav Biomedicínskeho centra Slovenskej akadémie vied'),
(140619, 110848, 'en', 'name', 'Oregon State University'),
(140620, 110848, 'es', 'name', 'Universidad Estatal de Oregón'),
(140621, 110848, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''Oregon'),
(140622, 110849, 'en', 'name', 'HJ International Graduate School for Peace and Public Leadership'),
(140623, 110849, 'ja', 'name', 'ēµ±äø€ē„žå­¦ę ”'),
(140624, 110850, 'en', 'name', 'Defense Technology Foundation'),
(140625, 110850, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé˜²č”›ęŠ€č”“å”ä¼š'),
(140626, 110851, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(140627, 110851, 'en', 'name', 'University of Technology and Applied Sciences, Muscat'),
(140628, 110852, 'de', 'name', 'UniversitƤtsklinikum Wiener Neustadt'),
(140629, 110852, 'en', 'name', 'University Hospital Wiener Neustadt'),
(140630, 110853, 'en', 'name', 'SRH Fernhochschule – The Mobile University'),
(140631, 110854, 'en', 'name', 'CHRIST (Deemed to be) University, Delhi NCR');
INSERT INTO `ror_settings` VALUES
(140632, 110855, 'en', 'name', 'Wakayama Professional University of Rehabilitation'),
(140633, 110855, 'ja', 'name', 'å’Œę­Œå±±ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(140634, 110856, 'en', 'name', 'Seribiotechnology Research Laboratory'),
(140635, 110857, 'en', 'name', 'American Federation of Labor and Congress of Industrial Organizations'),
(140636, 110858, 'es', 'name', 'Instituto Superior Universitario RumiƱahui'),
(140637, 110859, 'fr', 'name', 'Institut de Physique'),
(140638, 110860, 'en', 'name', 'Small Business Institute Japan'),
(140639, 110860, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å°ä¼ę„­ē ”ē©¶ę‰€'),
(140640, 110861, 'en', 'name', 'Northern Devon Healthcare NHS Trust'),
(140641, 110862, 'en', 'name', 'Royal Perth Hospital'),
(140642, 110863, 'no_lang_code', 'name', 'Bayer (Portugal), Bayer Portugal SA'),
(140643, 110864, 'no_lang_code', 'name', 'Secil Companhia Geral de Cal e Cimento (Portugal), Secil Companhia Geral de Cal e Cimento, S.A.'),
(140644, 110865, 'en', 'name', 'KOBE Ymca'),
(140645, 110865, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøYMCA'),
(140646, 110866, 'en', 'name', 'J. Selye University'),
(140647, 110866, 'hu', 'name', 'Selye JƔnos Egyetem'),
(140648, 110866, 'sk', 'name', 'Univerzita J. Selyeho'),
(140649, 110867, 'fr', 'name', 'ProcƩdƩs Alimentaires et Microbiologiques'),
(140650, 110868, 'pt', 'name', 'Centro de Investigação em Teologia e Estudos da Religião'),
(140651, 110869, 'en', 'name', 'LusĆ­ada University of Lisbon'),
(140652, 110870, 'de', 'name', 'Hochschule Fresenius Heidelberg'),
(140653, 110870, 'en', 'name', 'Fresenius University of Applied Sciences Heidelberg'),
(140654, 110871, 'pt', 'name', 'Sociedade Portuguesa MƩdica de Acupunctura'),
(140655, 110872, 'fr', 'name', 'Interactions HÓtes-Pathogènes-Environnements'),
(140656, 110873, 'en', 'name', 'United States Naval Academy'),
(140657, 110873, 'es', 'name', 'Academia Naval de los Estados Unidos'),
(140658, 110873, 'fr', 'name', 'AcadƩmie Navale d''Annapolis'),
(140659, 110874, 'no_lang_code', 'name', 'ChemiTek - Quƭmica AvanƧada (Portugal), ChemiTek - Quƭmica AvanƧada, S.A.'),
(140660, 110875, 'en', 'name', 'Institute of Biology Bucharest'),
(140661, 110876, 'no_lang_code', 'name', 'Science Applications International Corporation (United States)'),
(140662, 110877, 'pt', 'name', 'Museu Carlos Machado'),
(140663, 110878, 'no_lang_code', 'name', 'Nefrodial SAS Renal Unit Hemodialysis Service, Unidad Renal Nefrodial SAS Servicio de HemodiƔlisis, Unidad Renal Nefrodial SAS Servicio de HemodiƔlisis (Portugal)'),
(140664, 110879, 'en', 'name', 'European Powder Metallugy Association'),
(140665, 110880, 'pt', 'name', 'Centro de AnÔlise MatemÔtica Geometria e Sistemas Dinâmicos'),
(140666, 110881, 'en', 'name', 'Institute of Advanced Studies Kőszeg'),
(140667, 110881, 'hu', 'name', 'FelsőbbfokĆŗ TanulmĆ”nyok IntĆ©zete'),
(140668, 110882, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© تلعفر'),
(140669, 110882, 'en', 'name', 'University of Telafer'),
(140670, 110883, 'de', 'name', 'Sprachenzentrum der Universität und der ETH Zürich'),
(140671, 110883, 'en', 'name', 'Language Center of UZH and ETH Zürich'),
(140672, 110884, 'pt', 'name', 'Instituto Superior de Administração e Finanças'),
(140673, 110885, 'am', 'name', 'į‹ˆįˆ‹į‹­į‰³ įˆ¶į‹¶ į‹©įŠ’į‰Øįˆ­įˆ²į‰²'),
(140674, 110885, 'no_lang_code', 'name', 'Wolaita Sodo University'),
(140675, 110886, 'ca', 'name', 'Universitat de GĆØnova'),
(140676, 110886, 'de', 'name', 'UniversitƤt Genua'),
(140677, 110886, 'en', 'name', 'University of Genoa'),
(140678, 110886, 'fr', 'name', 'Université de gênes'),
(140679, 110886, 'it', 'name', 'UniversitĆ  degli Studi di Genova'),
(140680, 110887, 'en', 'name', 'The Nigerian Baptist Theological Seminary'),
(140681, 110888, 'en', 'name', 'Magnetic Resonance Imaging Institute for Biomedical Research'),
(140682, 110889, 'en', 'name', 'Santa Anna IT Research Institute'),
(140683, 110890, 'en', 'name', 'IDEA College, Malta'),
(140684, 110891, 'en', 'name', 'Global Environment Centre Foundation'),
(140685, 110891, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåœ°ēƒē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(140686, 110892, 'en', 'name', 'Ipswich Hospital'),
(140687, 110893, 'pt', 'name', 'Ordem dos MƩdicos Dentistas'),
(140688, 110894, 'en', 'name', 'Agriculture and Horticulture Development Board'),
(140689, 110895, 'fr', 'name', 'Laboratoire d''Annecy-le-Vieux de Physique ThƩorique'),
(140690, 110896, 'de', 'name', 'Institut für Baustatik und Konstruktion'),
(140691, 110896, 'en', 'name', 'Institute of Structural Engineering'),
(140692, 110897, 'en', 'name', 'Austin Hospital'),
(140693, 110898, 'de', 'name', 'Technische UniversitƤt Braunschweig'),
(140694, 110898, 'en', 'name', 'TU Braunschweig'),
(140695, 110899, 'en', 'name', 'Japan Fitness Association'),
(140696, 110899, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ•ć‚£ćƒƒćƒˆćƒć‚¹å”ä¼š'),
(140697, 110900, 'en', 'name', 'Takatsuki Medical Association'),
(140698, 110900, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé«˜ę§»åø‚åŒ»åø«ä¼š'),
(140699, 110901, 'en', 'name', 'Adisseo France SAS, Adisseo France SAS (France)'),
(140700, 110902, 'en', 'name', 'Osaka International Cancer Institute'),
(140701, 110902, 'ja', 'name', 'å¤§é˜Ŗå›½éš›ćŒć‚“ē ”ē©¶ę‰€'),
(140702, 110903, 'en', 'name', 'National Defense University'),
(140703, 110903, 'tr', 'name', 'Milli Savunma Üniversitesi'),
(140704, 110904, 'pt', 'name', 'Hospital de ClĆ­nicas de Porto Alegre'),
(140705, 110905, 'en', 'name', 'Japan Road Association'),
(140706, 110905, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é“č·Æå”ä¼š'),
(140707, 110906, 'es', 'name', 'Hospital General Universitario Gregorio Marañón'),
(140708, 110907, 'bn', 'name', 'বাংলাদেশ ą¦­ą§‚ą¦¤ą¦¾ą¦¤ą§ą¦¤ą§ą¦¬ą¦æą¦• জরিপ ą¦…ą¦§ą¦æą¦¦ą¦Ŗą§ą¦¤ą¦°'),
(140709, 110907, 'en', 'name', 'Geological Survey of Bangladesh'),
(140710, 110908, 'en', 'name', 'Nihon Ki-in'),
(140711, 110908, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę£‹é™¢'),
(140712, 110909, 'no_lang_code', 'name', 'Springer Nature (Germany)'),
(140713, 110910, 'en', 'name', 'InnoTech Alberta'),
(140714, 110911, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų·ŲØŁŠ Ų§Ł„ŲÆŁˆŁ„ŁŠ ŲØŲ¬ŲÆŲ©'),
(140715, 110911, 'en', 'name', 'International Medical Center in Jeddah'),
(140716, 110912, 'en', 'name', 'Sichuan University'),
(140717, 110912, 'zh', 'name', '四川大学'),
(140718, 110913, 'en', 'name', 'University of Gdańsk'),
(140719, 110913, 'pl', 'name', 'Uniwersytet Gdański'),
(140720, 110914, 'en', 'name', 'ACTRIS ARES Data Centre Unit'),
(140721, 110915, 'bn', 'name', 'ą¦øą¦®ą§ą¦®ą¦æą¦²ą¦æą¦¤ সামরিক হাসপাতাল (ঢাকা)'),
(140722, 110915, 'en', 'name', 'Combined Military Hospital Dhaka'),
(140723, 110916, 'es', 'name', 'Universidad Nacional del Centro de la Provincia de Buenos Aires'),
(140724, 110917, 'fr', 'name', 'ArchƩologie, Terre, Histoire, SociƩtƩs'),
(140725, 110918, 'fr', 'name', 'Rome et ses renaissances : arts, archƩologie, littƩrature et philosophie'),
(140726, 110919, 'pt', 'name', 'Direção Regional da Cultura'),
(140727, 110920, 'en', 'name', 'National Health and Medical Research Council'),
(140728, 110921, 'fr', 'name', 'Centre de Recherches PƩtrographiques et GƩochimiques'),
(140729, 110922, 'en', 'name', 'Institute for Theoretical Physics Amsterdam'),
(140730, 110923, 'pt', 'name', 'PalƔcio Nacional da Ajuda'),
(140731, 110924, 'en', 'name', 'Urban Redevelopment Authority'),
(140732, 110925, 'en', 'name', 'Konya Veterinary Control Institute'),
(140733, 110925, 'tr', 'name', 'Konya Veteriner Kontrol Enstitüsü, T.C. Tarim Ve Orman Bakanligi Konya Veteriner Kontrol Enstitüsü'),
(140734, 110926, 'en', 'name', 'U.S. Army Materiel Command'),
(140735, 110927, 'en', 'name', 'Mona Vale Hospital'),
(140736, 110928, 'en', 'name', 'Centre of Excellence for Biosecurity Risk Analysis'),
(140737, 110929, 'cs', 'name', 'BIVÅ  VysokĆ” Å”kola v Praze a v Brně'),
(140738, 110930, 'bn', 'name', 'ą¦—ą§‹ą¦Ŗą¦¾ą¦²ą¦—ą¦žą§ą¦œ ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(140739, 110930, 'en', 'name', 'Gopalganj Science and Technology University'),
(140740, 110931, 'en', 'name', 'Institute of Molecular Chemistry of the University of Burgundy'),
(140741, 110931, 'fr', 'name', 'Institut de Chimie MolƩculaire de l''UniversitƩ de Bourgogne'),
(140742, 110932, 'id', 'name', 'Universitas Bina Sarana Informatika'),
(140743, 110933, 'en', 'name', 'Earth Science Institute of the Slovak Academy of Sciences'),
(140744, 110933, 'sk', 'name', 'Ústav vied o Zemi Slovenskej akadémie vied'),
(140745, 110934, 'en', 'name', 'Aijinkai Healthcare Corporation'),
(140746, 110934, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę„›ä»ä¼š'),
(140747, 110935, 'en', 'name', 'Institute for Research and Coordination in Acoustics/Music'),
(140748, 110935, 'fr', 'name', 'Institut de Recherche et Coordination Acoustique Musique'),
(140749, 110936, 'en', 'name', 'Belgrade Business and Arts Academy of Applied Studies'),
(140750, 110937, 'en', 'name', 'United States Space Command'),
(140751, 110938, 'en', 'name', 'Latin American Cooperative Oncology Group (LACOG)'),
(140752, 110939, 'en', 'name', 'Flow Cytometry Core Facility'),
(140753, 110940, 'pt', 'name', 'Centro de Estudos de Desenvolvimento TurĆ­stico'),
(140754, 110941, 'pt', 'name', 'Republica Portuguesa Secretaria-Geral da Educação e Ciência'),
(140755, 110942, 'en', 'name', 'Yamanashi Institute for Public Health and Environment'),
(140756, 110942, 'ja', 'name', 'å±±ę¢ØēœŒč”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(140757, 110943, 'az', 'name', 'Geologiya və Geofizika İnstitutu'),
(140758, 110943, 'en', 'name', 'Institute of Geology and Geophysics'),
(140759, 110944, 'en', 'name', 'Saibalaji International Institute of Management Sciences Pune'),
(140760, 110945, 'en', 'name', 'University of Management and Technology'),
(140761, 110946, 'ro', 'name', 'Universitatea Adventus'),
(140762, 110947, 'ca', 'name', 'Universitat de Saragossa'),
(140763, 110947, 'en', 'name', 'University of Zaragoza'),
(140764, 110947, 'es', 'name', 'Universidad de Zaragoza'),
(140765, 110947, 'eu', 'name', 'Zaragozako Unibertsitatea'),
(140766, 110948, 'en', 'name', 'Virtual University of Cote d''Ivoire'),
(140767, 110948, 'fr', 'name', 'UniversitƩ Virtuelle de CƓte d''Ivoire'),
(140768, 110949, 'en', 'name', 'International Center for Advanced Training and Research in Physics'),
(140769, 110950, 'en', 'name', 'Autonomous State Medical College, Pilibhit'),
(140770, 110950, 'hi', 'name', 'ą¤øą„ą¤µą¤¶ą¤¾ą¤øą„€ ą¤°ą¤¾ą¤œą„ą¤Æ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤®ą¤¹ą¤¾ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤Ŗą„€ą¤²ą„€ą¤­ą„€ą¤¤'),
(140771, 110951, 'en', 'name', 'Medical University of South Carolina'),
(140772, 110952, 'en', 'name', 'Anhui Provincial Department of Education'),
(140773, 110953, 'no_lang_code', 'name', 'Alcon Portugal Produtos e Equipamentos Oftalmológicos (Portugal)'),
(140774, 110954, 'pt', 'name', 'Sociedade Portuguesa de GenƩtica Humana'),
(140775, 110955, 'en', 'name', 'University of Cross River State'),
(140776, 110956, 'en', 'name', 'United States Air Forces in Europe – Air Forces Africa'),
(140777, 110957, 'pt', 'name', 'ASIC - Associação de Saúde Infantil de Coimbra'),
(140778, 110958, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŁ†ŁŠ ŁˆŁ„ŁŠŲÆ'),
(140779, 110958, 'en', 'name', 'Bani-Waleed University'),
(140780, 110959, 'en', 'name', 'Arkansas Colleges of Health Education'),
(140781, 110960, 'en', 'name', 'Futures Forward Research Institute'),
(140782, 110961, 'en', 'name', 'University Hospitals of Cleveland'),
(140783, 110962, 'pt', 'name', 'Comunidade Intermunicipal do Alto TĆ¢mega e Barroso'),
(140784, 110963, 'pt', 'name', 'Sociedade Portuguesa de Astronomia'),
(140785, 110964, 'en', 'name', 'Hungarian University of Agriculture and Life Sciences'),
(140786, 110964, 'hu', 'name', 'Magyar AgrĆ”r- Ć©s ƉlettudomĆ”nyi Egyetem'),
(140787, 110965, 'pt', 'name', 'Centro UniversitÔrio de Telêmaco Borba'),
(140788, 110966, 'en', 'name', 'Ministry of Earth Sciences'),
(140789, 110967, 'fr', 'name', 'UniversitƩ Paris Sciences et Lettres'),
(140790, 110968, 'fr', 'name', 'Cégep de Rivière-du-Loup'),
(140791, 110969, 'en', 'name', 'Wageningen Marine Research'),
(140792, 110970, 'en', 'name', 'Elsevier BV, Elsevier BV (Netherlands)'),
(140793, 110971, 'no_lang_code', 'name', 'Roche (Estonia)'),
(140794, 110972, 'de', 'name', 'Ministerium für Klimaschutz, Landwirtschaft, ländliche Räume und Umwelt des Landes Mecklenburg-Vorpommern'),
(140795, 110973, 'en', 'name', 'Thunder Bay Regional Research Institute'),
(140796, 110974, 'cy', 'name', 'Prifysgol Caergrawnt'),
(140797, 110974, 'en', 'name', 'University of Cambridge'),
(140798, 110975, 'de', 'name', 'Institut für Theoretische Informatik'),
(140799, 110975, 'en', 'name', 'Institute of Theoretical Computer Science'),
(140800, 110976, 'en', 'name', 'Punjab Tianjin University of Technology'),
(140801, 110977, 'en', 'name', 'Kyzylorda Open University'),
(140802, 110977, 'kk', 'name', 'ŅšŃ‹Š·Ń‹Š»Š¾Ń€Š“Š° Š°ŃˆŃ‹Ņ› ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(140803, 110977, 'ru', 'name', 'ŠšŃ‹Š·Ń‹Š»Š¾Ń€Š“ŠøŠ½ŃŠŗŠøŠ¹ открытый ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(140804, 110978, 'en', 'name', 'TKM College of Engineering'),
(140805, 110979, 'pt', 'name', 'Rede CiĆŖncia Tecnologia e Sociedade'),
(140806, 110980, 'en', 'name', 'Network of Micro- and Nano-Fabrication Research Facilities in Portugal'),
(140807, 110981, 'en', 'name', 'JSS Academy of Higher Education and Research'),
(140808, 110982, 'en', 'name', 'Centre for Research and Social Development IDEAS'),
(140809, 110982, 'sr', 'name', 'Centar za istraživanje i razvoj druŔtva IDEAS'),
(140810, 110983, 'no_lang_code', 'name', 'Tuamutunga Internacional (Portugal)'),
(140811, 110984, 'en', 'name', 'International Institute of Food Technology and Engineering'),
(140812, 110985, 'en', 'name', 'Space Operations Command'),
(140813, 110986, 'en', 'name', 'Japanese Association of Neuro-Psychiatric Clinics'),
(140814, 110986, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē²¾ē„žē„žēµŒē§‘čØŗē™‚ę‰€å”ä¼š'),
(140815, 110987, 'en', 'name', 'Japan Indonesia Association'),
(140816, 110987, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¤ćƒ³ćƒ‰ćƒć‚·ć‚¢å”ä¼š'),
(140817, 110988, 'cs', 'name', 'Cherenkov Telescope Array – ĆŗÄast ČR'),
(140818, 110988, 'en', 'name', 'Cherenkov Telescope Array – participation of the Czech Republic'),
(140819, 110989, 'en', 'name', 'Highway Industry Development Organization'),
(140820, 110989, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé“č·Æę–°ē”£ę„­é–‹ē™ŗę©Ÿę§‹'),
(140821, 110990, 'cs', 'name', 'Ú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'),
(140822, 110990, 'en', 'name', 'Czech Academy of Sciences, Institute of Macromolecular Chemistry'),
(140823, 110991, 'en', 'name', 'Bretonneau Hospital'),
(140824, 110991, 'fr', 'name', 'HƓpital Bretonneau'),
(140825, 110992, 'en', 'name', 'University of Wyoming'),
(140826, 110992, 'es', 'name', 'Universidad de Wyoming'),
(140827, 110992, 'fr', 'name', 'UniversitƩ du wyoming'),
(140828, 110993, 'en', 'name', 'Atiba University'),
(140829, 110994, 'en', 'name', 'Japan Handball Association'),
(140830, 110994, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒćƒ³ćƒ‰ćƒœćƒ¼ćƒ«å”ä¼š'),
(140831, 110995, 'en', 'name', 'Institute of Chinese Affairs'),
(140832, 110995, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å›½ē ”ē©¶ę‰€'),
(140833, 110996, 'en', 'name', 'Schmidt Family Foundation'),
(140834, 110997, 'no_lang_code', 'name', 'Radosys Atlantic (Portugal)'),
(140835, 110998, 'en', 'name', 'Vivekanandha College of Nursing'),
(140836, 110999, 'no_lang_code', 'name', 'CBRAIN Group'),
(140837, 111000, 'bn', 'name', 'ą¦…ą§ą¦Æą¦¾ą¦­ą¦æą¦Æą¦¼ą§‡ą¦¶ą¦Ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦…ą§ą¦Æą¦¾ą¦°ą§‹ą¦øą§ą¦Ŗą§‡ą¦ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼, বাংলাদেশ'),
(140838, 111000, 'en', 'name', 'Aviation and Aerospace University, Bangladesh'),
(140839, 111001, 'en', 'name', 'Naval Meteorology and Oceanography Command'),
(140840, 111002, 'fr', 'name', 'Institut d''Astrophysique Spatiale'),
(140841, 111003, 'en', 'name', 'Japan Wood Protection Association'),
(140842, 111003, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęœØęäæå­˜å”ä¼š'),
(140843, 111004, 'en', 'name', 'Telemedicine & Advanced Technology Research Center'),
(140844, 111005, 'es', 'name', 'Universidad de Oriente'),
(140845, 111006, 'en', 'name', 'MAKAM Research GmbH, MAKAM Research GmbH (Austria)'),
(140846, 111007, 'de', 'name', 'Institut für Umweltingenieurwissenschaften'),
(140847, 111007, 'en', 'name', 'Institute of Environmental Engineering'),
(140848, 111008, 'en', 'name', 'Next Step Drug and Alcohol Services'),
(140849, 111009, 'en', 'name', 'Nagaoka Healthcare Center'),
(140850, 111009, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé•·å²”čØ˜åæµč²”å›£é•·å²”ćƒ˜ćƒ«ć‚¹ć‚±ć‚¢ć‚»ćƒ³ć‚æćƒ¼'),
(140851, 111010, 'en', 'name', 'Japan Aeromedical Research Center'),
(140852, 111010, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗčˆŖē©ŗåŒ»å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(140853, 111011, 'en', 'name', 'ST Engineering, ST Engineering (Singapore), Singapore Technologies Engineering Ltd'),
(140854, 111012, 'de', 'name', 'Institut für Marine Biotechnologie'),
(140855, 111012, 'en', 'name', 'Institute of Marine Biotechnology'),
(140856, 111013, 'fr', 'name', 'Hospices Civils de Lyon'),
(140857, 111014, 'en', 'name', 'Tiverton and District Hospital'),
(140858, 111015, 'en', 'name', 'University of Loralai'),
(140859, 111016, 'en', 'name', 'University of Vermont'),
(140860, 111016, 'es', 'name', 'Universidad de Vermont'),
(140861, 111016, 'fr', 'name', 'UniversitƩ du vermont'),
(140862, 111017, 'en', 'name', 'Federation of Orthopaedic Trainees in Europe'),
(140863, 111018, 'pt', 'name', 'Sociedade Portuguesa de Doenças Metabólicas'),
(140864, 111019, 'no_lang_code', 'name', 'Companhia Industrial de Resinas SintƩticas (Portugal), Industrial Company of Synthetic Resins'),
(140865, 111020, 'en', 'name', 'National Institute of Rock Mechanics'),
(140866, 111020, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤°ą„‰ą¤• ą¤®ą„ˆą¤•ą„‡ą¤Øą¤æą¤•ą„ą¤ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(140867, 111021, 'de', 'name', 'Institut für Integrierte Systeme'),
(140868, 111021, 'en', 'name', 'Integrated Systems Laboratory'),
(140869, 111022, 'en', 'name', 'International Committee on Taxonomy of Viruses'),
(140870, 111023, 'pt', 'name', 'Centro de Investigação Interdisciplinar em Sanidade Animal'),
(140871, 111024, 'ca', 'name', 'Museu de CiĆØncies Naturals de Barcelona'),
(140872, 111024, 'es', 'name', 'Museo de Ciencias Naturales de Barcelona'),
(140873, 111025, 'en', 'name', 'Osaka Shin-Ai Gakuin University'),
(140874, 111025, 'ja', 'name', 'å¤§é˜Ŗäæ”ę„›å­¦é™¢å¤§å­¦'),
(140875, 111026, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų£Ų±ŲØŁŠŁ„ Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(140876, 111026, 'en', 'name', 'Erbil Polytechnic University'),
(140877, 111026, 'ku', 'name', 'Ų²Ų§Ł†Ś©Ū†ŪŒ Ł¾Ū†Ł„ŪŒŲŖŪ•Ś©Ł†ŪŒŚ©ŪŒ Ś¾Ū•ŁˆŁ„ŪŽŲ±'),
(140878, 111027, 'de', 'name', 'Laserdata GmbH, Laserdata GmbH (Austria)'),
(140879, 111028, 'en', 'name', 'Michigan Sea Grant'),
(140880, 111029, 'de', 'name', 'Institut für Entwurf und Architektur IEA'),
(140881, 111029, 'en', 'name', 'Institute of Design and Architecture'),
(140882, 111030, 'pt', 'name', 'Sociedade Portuguesa de Cefaleias'),
(140883, 111031, 'pt', 'name', 'Escola de Música São Teotónio'),
(140884, 111032, 'en', 'name', 'Osaka Police Hospital'),
(140885, 111032, 'ja', 'name', 'å¤§é˜Ŗć‘ć„ć•ć¤ē—…é™¢, å¤§é˜Ŗč­¦åÆŸē—…é™¢, ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤§é˜Ŗå›½éš›ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ļ¼†ć‚µć‚¤ć‚Øćƒ³ć‚¹ć‚»ćƒ³ć‚æćƒ¼ å¤§é˜Ŗč­¦åÆŸē—…é™¢'),
(140886, 111033, 'ar', 'name', 'جامعـــة Ų¬ŲÆŲ©'),
(140887, 111033, 'en', 'name', 'University of Jeddah'),
(140888, 111034, 'en', 'name', 'Japanese Society of Gastrointestinal Cancer Screening'),
(140889, 111034, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¶ˆåŒ–å™ØćŒć‚“ę¤œčØŗå­¦ä¼š'),
(140890, 111035, 'en', 'name', 'United Nations Environment Programme'),
(140891, 111036, 'en', 'name', 'Institute for Evaluation of Labour Market and Education Policy'),
(140892, 111036, 'sv', 'name', 'Institutet fƶr arbetsmarknads- och utbildningspolitisk utvƤrdering'),
(140893, 111037, 'en', 'name', 'University of Alberta'),
(140894, 111037, 'fr', 'name', 'UniversitƩ de l''Alberta'),
(140895, 111038, 'en', 'name', 'Japan Association for Working Environment Measurement'),
(140896, 111038, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ä½œę„­ē’°å¢ƒęø¬å®šå”ä¼š'),
(140897, 111039, 'en', 'name', 'Life Science Alliance LLC, Life Science Alliance LLC (United States)'),
(140898, 111040, 'en', 'name', 'Sunstar Foundation'),
(140899, 111040, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗć‚µćƒ³ć‚¹ć‚æćƒ¼č²”å›£'),
(140900, 111041, 'es', 'name', 'Universidad Privada MarĆ­a Serrana'),
(140901, 111042, 'en', 'name', 'University of the Americas'),
(140902, 111042, 'es', 'name', 'Universidad de Las AmƩricas'),
(140903, 111043, 'fr', 'name', 'Centre de Recherche LƩon Duguit'),
(140904, 111044, 'pt', 'name', 'Centro de Investigação em Comunicação Aplicada Cultura e Novas Tecnologias'),
(140905, 111045, 'en', 'name', 'Peter Doherty Institute'),
(140906, 111046, 'no_lang_code', 'name', 'Bracco (United States)'),
(140907, 111047, 'en', 'name', 'University of California, San Diego'),
(140908, 111047, 'es', 'name', 'Universidad de California en San Diego'),
(140909, 111047, 'fr', 'name', 'UniversitƩ de Californie Ơ San Diego'),
(140910, 111048, 'pt', 'name', 'ServiƧo de Estrangeiros e Fronteiras'),
(140911, 111049, 'en', 'name', 'Naval Supply Systems Command'),
(140912, 111050, 'es', 'name', 'Grupo Empresarial LABIOFAM'),
(140913, 111051, 'pt', 'name', 'Universidade de Coimbra Imprensa'),
(140914, 111052, 'de', 'name', 'Max Weber Netzwerk Osteuropa'),
(140915, 111052, 'en', 'name', 'Max Weber Network Eastern Europe'),
(140916, 111053, 'pt', 'name', 'Sociedade Portuguesa de Virologia'),
(140917, 111054, 'en', 'name', 'Hornsby Ku-ring-gai Hospital'),
(140918, 111055, 'fr', 'name', 'Centre de recherches juridiques de l''UniversitƩ de Franche-ComtƩ'),
(140919, 111056, 'pt', 'name', 'Sociedade Portuguesa de Pneumologia'),
(140920, 111057, 'en', 'name', 'University Center of Barika'),
(140921, 111058, 'fr', 'name', 'Fondation Saint Helier'),
(140922, 111059, 'es', 'name', 'Programa Universitario de Estudios del Desarrollo'),
(140923, 111060, 'pt', 'name', 'Diocese de Coimbra'),
(140924, 111061, 'en', 'name', 'University of Maiduguri'),
(140925, 111061, 'yo', 'name', 'YunifÔsítì ìlú Màídúgùri'),
(140926, 111062, 'fr', 'name', 'Centre Hospitalier RƩgional et Universitaire de Nancy'),
(140927, 111063, 'no_lang_code', 'name', 'Joaquim Chaves Health, Joaquim Chaves SaĆŗde, Joaquim Chaves SaĆŗde (Portugal)'),
(140928, 111064, 'no_lang_code', 'name', 'AstraZeneca (France)'),
(140929, 111065, 'pt', 'name', 'MOVELTEX Centro de Competências e de Incubação de Empresas'),
(140930, 111066, 'en', 'name', 'The University of Texas Medical Branch at Galveston'),
(140931, 111066, 'es', 'name', 'Centro MƩdico de la Universidad de Texas'),
(140932, 111067, 'en', 'name', 'Peter Cohen Foundation DBA EverythingALS'),
(140933, 111068, 'en', 'name', 'Chubu Okinawa Medical Association'),
(140934, 111068, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­éƒØåœ°åŒŗåŒ»åø«ä¼š'),
(140935, 111069, 'en', 'name', 'Matsumoto College of Nursing'),
(140936, 111069, 'ja', 'name', 'ę¾ęœ¬ēœ‹č­·å¤§å­¦'),
(140937, 111070, 'pt', 'name', 'Teatro AcadƩmico de Gil Vicente'),
(140938, 111071, 'pt', 'name', 'Centro de Documentação 25 de Abril'),
(140939, 111072, 'en', 'name', 'Canadian Cancer Society'),
(140940, 111072, 'fr', 'name', 'SociƩtƩ canadienne du cancer'),
(140941, 111073, 'en', 'name', 'Maharana Pratap Polytechnic Gorakhpur'),
(140942, 111074, 'en', 'name', 'General Directorate of Agricultural Research and Policies'),
(140943, 111074, 'tr', 'name', 'TARIMSAL ARAŞTIRMALAR VE POLİTİKALAR GENEL MÜDÜRLƜĞƜ'),
(140944, 111075, 'en', 'name', 'University of Lima'),
(140945, 111075, 'es', 'name', 'Universidad de Lima'),
(140946, 111076, 'no_lang_code', 'name', 'Acorda Therapeutics (United States)'),
(140947, 111077, 'pt', 'name', 'Biblioteca do Conhecimento Online'),
(140948, 111078, 'en', 'name', 'Tokyo Information Design Professional University'),
(140949, 111078, 'ja', 'name', 'ę±äŗ¬ęƒ…å ±ćƒ‡ć‚¶ć‚¤ćƒ³å°‚é–€č·å¤§å­¦'),
(140950, 111079, 'en', 'name', 'Technology Research Association of Secure IoT Edge application based on RISC-V Open architecture'),
(140951, 111079, 'ja', 'name', 'ć‚»ć‚­ćƒ„ć‚¢ć‚Ŗćƒ¼ćƒ—ćƒ³ć‚¢ćƒ¼ć‚­ćƒ†ć‚Æćƒćƒ£ćƒ»ć‚Øćƒƒć‚øåŸŗē›¤ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(140952, 111080, 'en', 'name', 'Blacktown & Mount Druitt Hospital'),
(140953, 111081, 'no_lang_code', 'name', 'Banco Santander (Spain)'),
(140954, 111082, 'en', 'name', 'Kanagawa Industrial Promotion Center'),
(140955, 111082, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žå„ˆå·ē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(140956, 111083, 'no_lang_code', 'name', 'Hatch (Canada)'),
(140957, 111084, 'en', 'name', 'Foundation for MultiMedia Communications'),
(140958, 111084, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒžćƒ«ćƒćƒ”ćƒ‡ć‚£ć‚¢ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(140959, 111085, 'en', 'name', 'HódmezővĆ”sĆ”rhely-Makó Healthcare Center'),
(140960, 111085, 'hu', 'name', 'HódmezővĆ”sĆ”rhelyi-Makói EgĆ©szsĆ©gügyi Kƶzpont'),
(140961, 111086, 'en', 'name', 'Japan Association of Physical Education for Women'),
(140962, 111086, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å„³å­ä½“č‚²é€£ē›Ÿ'),
(140963, 111087, 'en', 'name', 'Al-Zahrawi University College'),
(140964, 111088, 'fr', 'name', 'Centre de Recherche et d''Etude en Droit et Science Politique'),
(140965, 111089, 'en', 'name', 'Shenzhen Science and Technology Innovation Commission'),
(140966, 111089, 'zh', 'name', 'ę·±åœ³åø‚ē§‘ęŠ€åˆ›ę–°å±€'),
(140967, 111090, 'de', 'name', 'Max Planck Institut für Astrophysik'),
(140968, 111090, 'en', 'name', 'Max Planck Institute for Astrophysics'),
(140969, 111091, 'en', 'name', 'Population Environment Development Laboratory'),
(140970, 111091, 'fr', 'name', 'Laboratoire Population Environnement DƩveloppement'),
(140971, 111092, 'en', 'name', 'Tochigi Mental Health & Welfare Center'),
(140972, 111092, 'ja', 'name', 'ę ƒęœØēœŒē²¾ē„žäæå„ē¦ē„‰ć‚»ćƒ³ć‚æćƒ¼'),
(140973, 111093, 'en', 'name', 'Ministry of Culture'),
(140974, 111093, 'fr', 'name', 'MinistĆØre de la Culture'),
(140975, 111094, 'fr', 'name', 'Mission de Promotion des Materiaux Locaux'),
(140976, 111095, 'no_lang_code', 'name', 'Cabopol Polymer Compounds (Portugal), Cabopol Polymer Compounds, S.A.'),
(140977, 111096, 'en', 'name', 'Autonomous Nonprofit Organization Scientific Research Center for Information Technologies in the Museum'),
(140978, 111096, 'ru', 'name', 'ŠŠ²Ń‚Š¾Š½Š¾Š¼Š½Š°Ń ŠŠµŠŗŠ¾Š¼Š¼ŠµŃ€Ń‡ŠµŃŠŗŠ°Ń ŠžŃ€Š³Š°Š½ŠøŠ·Š°Ń†ŠøŃ ŠŠ°ŃƒŃ‡Š½Š¾-Š˜ŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ Центр Š˜Š½Ń„Š¾Ń€Š¼Š°Ń†ŠøŠ¾Š½Š½Ń‹Ń… Технологий Š’ Музее ā€œŠ˜Ń‚Š¼ŃƒŃā€'),
(140979, 111097, 'fr', 'name', 'Université Frères Mentouri Constantine 1'),
(140980, 111098, 'en', 'name', 'Chongqing Medical University'),
(140981, 111098, 'zh', 'name', 'é‡åŗ†åŒ»ē§‘å¤§å­¦'),
(140982, 111099, 'en', 'name', 'Xi''an Jiaotong University'),
(140983, 111099, 'zh', 'name', 'č„æå®‰äŗ¤é€šå¤§å­¦'),
(140984, 111100, 'en', 'name', 'University of Minnesota'),
(140985, 111101, 'en', 'name', 'Bishkek Humanities University'),
(140986, 111101, 'ru', 'name', 'Š‘ŠøŃˆŠŗŠµŠŗŃŠŗŠøŠ¹ Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(140987, 111102, 'en', 'name', 'Boken Quality Evaluation Institute'),
(140988, 111102, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒœćƒ¼ć‚±ćƒ³å“č³Ŗč©•ä¾”ę©Ÿę§‹'),
(140989, 111103, 'en', 'name', 'Japan Media Communication Center'),
(140990, 111103, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę”¾é€ē•Ŗēµ„å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(140991, 111104, 'en', 'name', 'Black Sea Agricultural Research Institute'),
(140992, 111105, 'en', 'name', 'Japan Mint'),
(140993, 111105, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗé€ å¹£å±€'),
(140994, 111106, 'de', 'name', 'Deutsche Sporthochschule Kƶln'),
(140995, 111106, 'en', 'name', 'German Sport University Cologne'),
(140996, 111107, 'en', 'name', 'United States Army Test and Evaluation Command'),
(140997, 111108, 'en', 'name', 'UK Health Security Agency'),
(140998, 111109, 'en', 'name', 'Space Delta 7'),
(140999, 111110, 'en', 'name', 'Dravet Syndrome Foundation'),
(141000, 111111, 'cs', 'name', 'Sociologický ústav AV ČR'),
(141001, 111111, 'en', 'name', 'Czech Academy of Sciences, Institute of Sociology'),
(141002, 111112, 'pt', 'name', 'Centro de Formação de Associação de Escolas Braga/Sul'),
(141003, 111113, 'en', 'name', 'Kanazawa Municipal Hospital'),
(141004, 111113, 'ja', 'name', '金沢市立病院'),
(141005, 111114, 'pt', 'name', 'CiĆŖncia Viva'),
(141006, 111115, 'id', 'name', 'Universitas Islam An Nur Lampung'),
(141007, 111116, 'no_lang_code', 'name', 'E4SMA, E4SMA (Italy), E4SMA S.r.l.'),
(141008, 111117, 'en', 'name', 'Shipbuilding Research Centre of Japan'),
(141009, 111117, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é€ čˆ¹ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(141010, 111118, 'en', 'name', 'Sydney Dental Hospital'),
(141011, 111119, 'pt', 'name', 'Centro de Engenharia Mecânica e Sustentabilidade de Recursos'),
(141012, 111120, 'en', 'name', 'Ferghana State University'),
(141013, 111120, 'ru', 'name', 'Ферганский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(141014, 111120, 'uz', 'name', 'Farg`ona davlat universiteti'),
(141015, 111121, 'cs', 'name', 'Ú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'),
(141016, 111121, 'en', 'name', 'Czech Academy of Sciences, Czech Language Institute'),
(141017, 111122, 'en', 'name', 'Indonesia Fuel Cell and Hydrogen Energy'),
(141018, 111123, 'en', 'name', 'The Remote Sensing Society of Japan'),
(141019, 111123, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒŖćƒ¢ćƒ¼ćƒˆć‚»ćƒ³ć‚·ćƒ³ć‚°å­¦ä¼š'),
(141020, 111124, 'es', 'name', 'Centro de Investigaciones y Estudios de GƩnero'),
(141021, 111125, 'en', 'name', 'Interdisciplinary Center for Archaeology and the Evolution of Human Behaviour'),
(141022, 111126, 'es', 'name', 'Centro de Investigaciones Multidisciplinarias sobre Chiapas y la Frontera Sur'),
(141023, 111127, 'en', 'name', 'The Japan Machinery Federation'),
(141024, 111127, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę©Ÿę¢°å·„ę„­é€£åˆä¼š'),
(141025, 111128, 'pt', 'name', 'Câmara Municipal do Fundão'),
(141026, 111129, 'en', 'name', 'Japan Geotechnical Consultants Association'),
(141027, 111129, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½åœ°č³ŖčŖæęŸ»ę„­å”ä¼šé€£åˆä¼š'),
(141028, 111130, 'en', 'name', 'Australian Institute of Health and Welfare'),
(141029, 111131, 'en', 'name', 'United States Department of the Air Force'),
(141030, 111132, 'no_lang_code', 'name', 'Areal Editores (Portugal), Areal Editores, S.A., Areal Publishers'),
(141031, 111133, 'en', 'name', 'Linton University College'),
(141032, 111133, 'ms', 'name', 'Kolej Universiti Linton'),
(141033, 111134, 'pt', 'name', 'Sociedade Portuguesa de Disfunção Temporomandibular e Dor Orofacial'),
(141034, 111135, 'en', 'name', 'Network of Extreme Conditions Laboratories'),
(141035, 111136, 'bg', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ По ŠœŠøŠ½ŠµŃ€Š°Š»Š¾Š³ŠøŃ И ŠšŃ€ŠøŃŃ‚Š°Š»Š¾Š³Ń€Š°Ń„ŠøŃ ā€œŠŠŗŠ°Š“. Иван ŠšŠ¾ŃŃ‚Š¾Š²ā€ Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠŠ° ŠŠ°ŃƒŠŗŠøŃ‚Šµ'),
(141036, 111136, 'en', 'name', 'Institute of Mineralogy and Crystallography "Acad. Ivan Kostov" Bulgarian Academy of Sciences'),
(141037, 111137, 'pt', 'name', 'Secretaria de Estado de Cultura e Turismo de Minas Gerais'),
(141038, 111138, 'pt', 'name', 'Museu Nacional Soares dos Reis'),
(141039, 111139, 'bn', 'name', 'বাংলাদেশ ą¦®ą§‡ą¦°ą¦æą¦Ÿą¦¾ą¦‡ą¦® ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(141040, 111139, 'en', 'name', 'Bangladesh Maritime University'),
(141041, 111140, 'fr', 'name', 'Institut de recherche sur l''Ʃducation'),
(141042, 111141, 'en', 'name', 'Centre of Biosciences of the Slovak Academy of Sciences'),
(141043, 111141, 'sk', 'name', 'Centrum biovied SlovenskƔ akadƩmia vied'),
(141044, 111142, 'fr', 'name', 'UniversitƩ CƓte d''Azur'),
(141045, 111143, 'en', 'name', 'Institute of Organic Synthesis'),
(141046, 111143, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠžŃ€Š³Š°Š½ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Динтеза им. И. ŠÆ. ŠŸŠ¾ŃŃ‚Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(141047, 111144, 'en', 'name', 'Kyushu Environmental Evaluation Association'),
(141048, 111144, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä¹å·žē’°å¢ƒē®”ē†å”ä¼š'),
(141049, 111145, 'de', 'name', 'UniversitƤt Lausanne'),
(141050, 111145, 'en', 'name', 'University of Lausanne'),
(141051, 111145, 'fr', 'name', 'UniversitƩ de Lausanne'),
(141052, 111145, 'it', 'name', 'UniversitĆ  di Losanna'),
(141053, 111146, 'fr', 'name', 'GƩomƩtrie algƩbrique et applications Ơ la thƩorie de l''information'),
(141054, 111147, 'en', 'name', 'Knowledge to Innovate Professions in Tourism'),
(141055, 111148, 'en', 'name', 'Department of Medical Sciences'),
(141056, 111149, 'en', 'name', 'STEI Yogyakarta'),
(141057, 111150, 'fr', 'name', 'ThƩoriser et ModƩliser pour AmƩnager'),
(141058, 111151, 'en', 'name', 'The Foundation of Research Institute for Oriental Medicine'),
(141059, 111151, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę±ę“‹åŒ»å­¦ē ”ē©¶ę‰€'),
(141060, 111152, 'en', 'name', 'Kumamoto Saishun Medical Center'),
(141061, 111152, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹ ē†Šęœ¬å†ę˜„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(141062, 111153, 'no_lang_code', 'name', 'SiliconGate (Portugal)'),
(141063, 111154, 'en', 'name', 'Institute of Experimental Psychology of the Centre of Social and Psychological Sciences of the Slovak Academy of Sciences'),
(141064, 111154, 'sk', 'name', 'Ústav experimentĆ”lnej psychológie Centra spoločenských a psychologických vied Slovenskej akadĆ©mie vied'),
(141065, 111155, 'cy', 'name', 'Prifysgol Warwick'),
(141066, 111155, 'en', 'name', 'University of Warwick'),
(141067, 111156, 'cs', 'name', 'VysokÔ Ŕkola regionÔlního rozvoje'),
(141068, 111156, 'en', 'name', 'College of Regional Development'),
(141069, 111157, 'en', 'name', 'NEXUS Personalized Health Technologies'),
(141070, 111158, 'en', 'name', 'Atacama Large Millimeter Submillimeter Array'),
(141071, 111159, 'en', 'name', 'University of Waterloo'),
(141072, 111159, 'fr', 'name', 'UniversitƩ de waterloo'),
(141073, 111160, 'pt', 'name', 'Engage-SKA Portugal'),
(141074, 111161, 'en', 'name', 'Association of Accountants and Auditors of Republic of Srpska'),
(141075, 111162, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© الخاصة'),
(141076, 111162, 'en', 'name', 'Applied Science Private University'),
(141077, 111163, 'en', 'name', 'NFL Foundation'),
(141078, 111164, 'da', 'name', 'Aarhus Universitet'),
(141079, 111164, 'en', 'name', 'Aarhus University'),
(141080, 111165, 'en', 'name', 'University of Pittsburgh'),
(141081, 111165, 'es', 'name', 'Universidad de Pittsburgh'),
(141082, 111165, 'fr', 'name', 'UniversitƩ de Pittsburgh'),
(141083, 111166, 'fr', 'name', 'Institut supérieur d''étude des religions et de la laïcité'),
(141084, 111167, 'fr', 'name', 'Informatique, BioInformatique, SystĆØmes Complexes'),
(141085, 111168, 'en', 'name', 'Institute of Agricultural Biology and Biotechnology'),
(141086, 111168, 'it', 'name', 'Istituto di Biologia e Biotecnologia Agraria'),
(141087, 111169, 'pt', 'name', 'Ar.Co Centro de Arte e Comunicação Visual'),
(141088, 111170, 'cs', 'name', 'Výzkumný Ústav ZemědělskĆ© Techniky'),
(141089, 111170, 'en', 'name', 'Research Institute of Agricultural Engineering'),
(141090, 111171, 'en', 'name', 'Stawell Underground Physics Laboratory'),
(141091, 111172, 'en', 'name', 'The University of Texas at Tyler'),
(141092, 111173, 'no_lang_code', 'name', 'Ramsay Health Care (Australia)'),
(141093, 111174, 'cs', 'name', 'Observatoř Pierra Augera, VýzkumnĆ” infrastruktura AUGER‑CZ'),
(141094, 111174, 'en', 'name', 'Research Infrastructure AUGER‑CZ'),
(141095, 111175, 'en', 'name', 'Saijo City Shuso Hospital'),
(141096, 111175, 'ja', 'name', 'č„æę”åø‚ē«‹å‘Øę”‘ē—…é™¢'),
(141097, 111176, 'en', 'name', 'Kharkiv National Automobile and Highway University'),
(141098, 111176, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ Š°Š²Ń‚Š¾Š¼Š¾Š±Ń–Š»ŃŒŠ½Š¾-Горожній ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(141099, 111177, 'en', 'name', 'Department of Science and Technology of Shandong Province'),
(141100, 111177, 'zh', 'name', 'å±±äøœēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(141101, 111178, 'pt', 'name', 'Centro de História de Arte e Investigação Artística'),
(141102, 111179, 'en', 'name', 'Arctic Research Foundation'),
(141103, 111180, 'en', 'name', 'North Private College of Nursing'),
(141104, 111181, 'pt', 'name', 'Centro de Investigação e Informação da Música Portuguesa'),
(141105, 111182, 'en', 'name', 'Ube-kohsan Central Hospital Corp'),
(141106, 111182, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£å®‡éƒØčˆˆē”£äø­å¤®ē—…é™¢'),
(141107, 111183, 'pt', 'name', 'Unidade de Ensino e Investigação em Saúde Pública Global'),
(141108, 111184, 'en', 'name', 'Asahi Group Foundation'),
(141109, 111184, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚¢ć‚µćƒ’ć‚°ćƒ«ćƒ¼ćƒ—å­¦č”“ęŒÆčˆˆč²”å›£'),
(141110, 111185, 'no_lang_code', 'name', 'Raporal (Portugal), Raporal, S.A.'),
(141111, 111186, 'id', 'name', 'Institut Agama Islam Negeri Palopo'),
(141112, 111187, 'en', 'name', 'CUPA-HR'),
(141113, 111188, 'fr', 'name', 'GREI - Groupe de recherches en Ć©tudes indienne, Groupe de Recherches en Ɖtudes Indiennes'),
(141114, 111189, 'fr', 'name', 'Laboratoire de Biologie et ModƩlisation de la Cellule'),
(141115, 111190, 'ca', 'name', 'Fundació Institució dels Centres de Recerca de Catalunya, Institució CERCA - Centres de Recerca de Catalunya'),
(141116, 111190, 'en', 'name', 'CERCA Institution'),
(141117, 111191, 'en', 'name', 'Francophone Society of Nutritherapy and Applied Nutrigenetics'),
(141118, 111191, 'fr', 'name', 'SociƩtƩ Francophone de NutrithƩrapie et de NutrigƩnƩtique AppliquƩe'),
(141119, 111192, 'cs', 'name', 'České mezinÔrodní centrum výzkumných reaktorů'),
(141120, 111192, 'en', 'name', 'Czech International Centre of Research Reactors'),
(141121, 111193, 'en', 'name', 'Grosses LF Foghts Fund'),
(141122, 111194, 'en', 'name', 'Japan Institute of Invention and Innovation'),
(141123, 111194, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē™ŗę˜Žå”ä¼š'),
(141124, 111195, 'no_lang_code', 'name', 'Servidor de Apontadores Portugueses Online, Servidor de Apontadores Portugueses Online (Portugal)'),
(141125, 111196, 'en', 'name', 'Children''s Medical Research Institute'),
(141126, 111197, 'en', 'name', 'Cultures, Environments, Arctic, Representations, Climate'),
(141127, 111197, 'fr', 'name', 'Cultures, Environnements, Arctique, ReprƩsentations, Climat'),
(141128, 111198, 'en', 'name', '3B''s Research Group'),
(141129, 111199, 'en', 'name', 'Thomas More University'),
(141130, 111200, 'de', 'name', 'Anstalt für Verbrennungskraftmaschinen List (Austria)'),
(141131, 111201, 'es', 'name', 'Hospital Universitario Santa Cristina'),
(141132, 111202, 'en', 'name', 'Osaka Seikei College'),
(141133, 111202, 'ja', 'name', '大阪成蹊短期大学'),
(141134, 111203, 'de', 'name', 'Hochschule Karlsruhe Technik und Wirtschaft'),
(141135, 111203, 'en', 'name', 'Karlsruhe University of Applied Sciences'),
(141136, 111204, 'fr', 'name', 'Centre de Microbiologie du Sol et de l''Environnement'),
(141137, 111205, 'en', 'name', 'University of Michigan–Flint'),
(141138, 111206, 'en', 'name', 'Illumina (Singapore), Illumina Singapore Pte Ltd'),
(141139, 111207, 'pt', 'name', 'Universidade Virtual do Estado de SĆ£o Paulo'),
(141140, 111208, 'pt', 'name', 'Sociedade Portuguesa de Suicidologia'),
(141141, 111209, 'es', 'name', 'Centro de Investigaciones Históricas, Antropológicas y Culturales - AIP'),
(141142, 111210, 'fr', 'name', 'Centre de rƩadaptation en dƩpendance de QuƩbec'),
(141143, 111211, 'en', 'name', 'Muroran City General Hospital'),
(141144, 111211, 'ja', 'name', 'åø‚ē«‹å®¤č˜­ē·åˆē—…é™¢'),
(141145, 111212, 'ca', 'name', 'Universitat Autònoma de Madrid'),
(141146, 111212, 'en', 'name', 'Autonomous University of Madrid'),
(141147, 111212, 'es', 'name', 'Universidad Autónoma de Madrid'),
(141148, 111212, 'eu', 'name', 'Madrilgo Unibertsitate Autonomoa'),
(141149, 111212, 'gl', 'name', 'Universidade Autónoma de Madrid'),
(141150, 111213, 'no_lang_code', 'name', 'ViiV Healthcare (United Kingdom)'),
(141151, 111214, 'en', 'name', 'National Institution for Academic Degrees and Quality Enhancement of Higher Education'),
(141152, 111214, 'ja', 'name', 'å¤§å­¦ę”¹é©ę”Æę“ćƒ»å­¦ä½ęŽˆäøŽę©Ÿę§‹'),
(141153, 111215, 'es', 'name', 'Corporación Universitaria de Asturias'),
(141154, 111216, 'de', 'name', 'Institut für Teilchen- und Astrophysik'),
(141155, 111216, 'en', 'name', 'Institute for Particle Physics and Astrophysics'),
(141156, 111217, 'no_lang_code', 'name', 'Amkor Technology (Portugal), Amkor Technology Portugal SA'),
(141157, 111218, 'fr', 'name', 'Connaissance & Intelligence Artificielle DistribuƩes'),
(141158, 111219, 'en', 'name', 'Higher School of Management of Tlemcen'),
(141159, 111219, 'fr', 'name', 'Ecole SupƩrieure de Management Tlemcen'),
(141160, 111220, 'en', 'name', 'University of Pardubice'),
(141161, 111221, 'en', 'name', 'International College of Technology, Kanazawa'),
(141162, 111221, 'ja', 'name', 'å›½éš›é«˜ē­‰å°‚é–€å­¦ę ”'),
(141163, 111222, 'fr', 'name', 'Synergies Langues Arts Musique'),
(141164, 111223, 'en', 'name', 'Shonan Fujisawa Tokusyukai Hospital'),
(141165, 111223, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šę¹˜å—č—¤ę²¢å¾³ę“²ä¼šē—…é™¢'),
(141166, 111224, 'en', 'name', 'Federal University of Agriculture Zuru'),
(141167, 111225, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الؓرق Ų§Ł„Ų£ŁˆŲ³Ų·'),
(141168, 111225, 'en', 'name', 'Middle East University'),
(141169, 111226, 'no_lang_code', 'name', 'Pfizer (Portugal)'),
(141170, 111227, 'fr', 'name', 'ICEE - IntƩgration et CoopƩration dans l''Espace EuropƩen, IntƩgration et CoopƩration dans l''Espace EuropƩen - Etudes EuropƩennes'),
(141171, 111228, 'it', 'name', 'SocietĆ  Storica e Antropologica di Valle Camonica'),
(141172, 111229, 'en', 'name', 'Centre of Estonian Rural Research and Knowledge'),
(141173, 111229, 'et', 'name', 'Maaelu Teadmuskeskus'),
(141174, 111230, 'en', 'name', 'National University of Callao'),
(141175, 111230, 'es', 'name', 'Universidad Nacional del Callao'),
(141176, 111231, 'no_lang_code', 'name', 'Tianjin Chengjian University'),
(141177, 111231, 'zh', 'name', 'å¤©ę“„åŸŽå»ŗå¤§å­¦'),
(141178, 111232, 'en', 'name', 'Integrated Carbon Observation System'),
(141179, 111233, 'en', 'name', 'The Japan Society for Precision Engineering'),
(141180, 111233, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē²¾åÆ†å·„å­¦ä¼š'),
(141181, 111234, 'nl', 'name', 'Spieren voor Spieren'),
(141182, 111235, 'en', 'name', 'Kawaguchi Medical Association'),
(141183, 111235, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå·å£åŒ»åø«ä¼š'),
(141184, 111236, 'no_lang_code', 'name', 'I-Sensis Perfume Design (Portugal)'),
(141185, 111237, 'en', 'name', 'Saitama Toho Junior College'),
(141186, 111237, 'ja', 'name', 'åŸ¼ēŽ‰ę±čŒēŸ­ęœŸå¤§å­¦'),
(141187, 111238, 'en', 'name', 'University of Iceland'),
(141188, 111238, 'is', 'name', 'HĆ”skóli ƍslands'),
(141189, 111239, 'en', 'name', 'BSC Engineering, BSC Engineering (United States)'),
(141190, 111240, 'en', 'name', 'R. N. G. Patel Institute of Technology'),
(141191, 111241, 'en', 'name', 'Office of Naval Intelligence'),
(141192, 111242, 'en', 'name', 'Okayama City General Medical Center'),
(141193, 111242, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗå²”å±±åø‚ē«‹ē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(141194, 111243, 'en', 'name', 'TransDeN Lab'),
(141195, 111244, 'no_lang_code', 'name', 'Wockhardt (India)'),
(141196, 111245, 'es', 'name', 'Fundación Cóndor Andino'),
(141197, 111246, 'en', 'name', 'Naval Research Laboratory Tactical Electronic Warfare Division'),
(141198, 111247, 'es', 'name', 'Fundación Ecotonos'),
(141199, 111248, 'no_lang_code', 'name', 'Zimmer (Portugal)'),
(141200, 111249, 'en', 'name', 'Humboldt International University'),
(141201, 111250, 'en', 'name', 'Eco Astronomy Inc'),
(141202, 111251, 'en', 'name', 'Bureau of Medicine and Surgery'),
(141203, 111252, 'en', 'name', 'University of Cincinnati'),
(141204, 111252, 'es', 'name', 'Universidad de Cincinnati'),
(141205, 111252, 'fr', 'name', 'UniversitƩ de cincinnati'),
(141206, 111253, 'en', 'name', 'Junior Chamber International'),
(141207, 111253, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤§ę±é’å¹“ä¼šč­°ę‰€'),
(141208, 111254, 'en', 'name', 'Australian Sports Commission'),
(141209, 111255, 'en', 'name', 'Seoul Digital University'),
(141210, 111256, 'en', 'name', 'Japan Marine Industry Association'),
(141211, 111256, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒžćƒŖćƒ³äŗ‹ę„­å”ä¼š'),
(141212, 111257, 'en', 'name', 'Munger University'),
(141213, 111257, 'hi', 'name', 'ą¤®ą„ą¤‚ą¤—ą„‡ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(141214, 111258, 'bn', 'name', 'কলকাতা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(141215, 111258, 'en', 'name', 'University of Calcutta'),
(141216, 111258, 'fr', 'name', 'UniversitƩ de calcutta'),
(141217, 111258, 'hi', 'name', 'ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(141218, 111258, 'kn', 'name', 'ą²•ą²²ą³ą²•ą²¤ą³ą²¤ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(141219, 111258, 'ml', 'name', 'ą“•ąµŠąµ½ą“•ąµą“•ą“¤ąµą“¤ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(141220, 111258, 'pa', 'name', 'ਕੋਲਕਾਤਾ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(141221, 111258, 'ta', 'name', 'ą®•ąÆŠą®²ąÆą®•ą®¤ąÆą®¤ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(141222, 111259, 'en', 'name', 'Laboratory of Soil and Environmental Sciences'),
(141223, 111259, 'fr', 'name', 'Laboratoire Sols et Environnement'),
(141224, 111260, 'es', 'name', 'Universidad Nacional de San Agustin de Arequipa'),
(141225, 111261, 'no_lang_code', 'name', 'Muroplas Industria de Plasticos (Portugal), Muroplas Plastic Manufacturers'),
(141226, 111262, 'es', 'name', 'Ministerio de Medio Ambiente y Recursos Naturales'),
(141227, 111263, 'cy', 'name', 'Prifysgol Nottingham'),
(141228, 111263, 'en', 'name', 'University of Nottingham'),
(141229, 111264, 'en', 'name', 'Senzoku Junior College of Childhood Education'),
(141230, 111264, 'ja', 'name', 'ę“—č¶³ć“ć©ć‚‚ēŸ­ęœŸå¤§å­¦'),
(141231, 111265, 'en', 'name', 'Netherlands Heart Registration'),
(141232, 111265, 'nl', 'name', 'Nederlandse Hart Registratie'),
(141233, 111266, 'es', 'name', 'Hospital Universitario de Getafe'),
(141234, 111267, 'en', 'name', 'The University of Melbourne'),
(141235, 111268, 'en', 'name', 'National Brain Imaging Network'),
(141236, 111269, 'en', 'name', 'Camille Jordan Institute'),
(141237, 111269, 'fr', 'name', 'institut Camille-Jordan'),
(141238, 111270, 'en', 'name', 'Academy of Applied Studies Å abac'),
(141239, 111270, 'sr', 'name', 'Akademija strukovnih studija Å abac, АкаГемија ŃŃ‚Ń€ŃƒŠŗŠ¾Š²Š½ŠøŃ… ŃŃ‚ŃƒŠ“ŠøŃ˜Š° Шабац'),
(141240, 111271, 'en', 'name', 'TAMA CITY Medical Association'),
(141241, 111271, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå¤šę‘©åø‚åŒ»åø«ä¼š'),
(141242, 111272, 'fr', 'name', '2degrƩs'),
(141243, 111273, 'en', 'name', 'EcoFaxina Institute'),
(141244, 111273, 'pt', 'name', 'Instituto EcoFaxina'),
(141245, 111274, 'pt', 'name', 'Conselho Coordenador dos Institutos Superiores PolitƩcnicos'),
(141246, 111275, 'pt', 'name', 'Sociedade Portuguesa das DoenƧas do Movimento'),
(141247, 111276, 'cs', 'name', 'Evropský slunečnĆ­ teleskop, Evropský slunečnĆ­ teleskop – ĆŗÄast ČR'),
(141248, 111276, 'en', 'name', 'European Solar Telescope – participation of the Czech Republic'),
(141249, 111277, 'en', 'name', 'Nanbu Tokushukai Hospital'),
(141250, 111277, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗę²–ēø„å¾³ę“²ä¼šå—éƒØå¾³ę“²ä¼šē—…é™¢'),
(141251, 111278, 'en', 'name', 'Naval Strike and Air Warfare Center'),
(141252, 111279, 'en', 'name', 'Japan Family Planning Association, Inc.'),
(141253, 111279, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å®¶ę—čØˆē”»å”ä¼š'),
(141254, 111280, 'en', 'name', 'Marine & Environmental Research Lab Ltd, Marine & Environmental Research Lab Ltd (Cyprus)'),
(141255, 111281, 'en', 'name', 'State University "Kyiv Aviation Institute"'),
(141256, 111281, 'uk', 'name', 'Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ "ŠšŠøŃ—Š²ŃŃŒŠŗŠøŠ¹ авіаційний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚"'),
(141257, 111282, 'en', 'name', 'Springer Nature (Shanghai, China)'),
(141258, 111283, 'en', 'name', 'Laboratory for Atmospheric and Space Physics'),
(141259, 111284, 'en', 'name', 'Azores Oncology Center'),
(141260, 111284, 'pt', 'name', 'Centro de Oncologia dos AƧores'),
(141261, 111285, 'en', 'name', 'Toyooka Junior College'),
(141262, 111285, 'ja', 'name', '豊岔短期大学'),
(141263, 111286, 'en', 'name', 'The Radiation Science Society of Japan'),
(141264, 111286, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč¼»å°„ē§‘å­¦ē ”ē©¶ä¼š'),
(141265, 111287, 'no_lang_code', 'name', 'blueCAPE, blueCAPE (Portugal)'),
(141266, 111288, 'en', 'name', 'Japan Poison Information Center'),
(141267, 111288, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äø­ęÆ’ęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(141268, 111289, 'no_lang_code', 'name', 'Whiteboard (Portugal)'),
(141269, 111290, 'pt', 'name', 'Instituto Nacional de Investigação AgrÔria e VeterinÔria'),
(141270, 111291, 'no_lang_code', 'name', 'Milupa Comercial (Portugal), Milupa Comercial, S.A.'),
(141271, 111292, 'eu', 'name', 'Paueko eta Aturrialdeko Unibertsitatea'),
(141272, 111292, 'fr', 'name', 'L''UniversitƩ de Pau et des Pays de l''Adour, UniversitƩ de Pau et des Pays de l''Adour'),
(141273, 111293, 'en', 'name', 'Alvan Ikoku Federal College of Education'),
(141274, 111294, 'en', 'name', 'Ski Association of Japan'),
(141275, 111294, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…Øę—„ęœ¬ć‚¹ć‚­ćƒ¼é€£ē›Ÿ'),
(141276, 111295, 'en', 'name', 'Saclay Nuclear Research Centre'),
(141277, 111295, 'fr', 'name', 'CEA Paris-Saclay - Etablissement de Saclay'),
(141278, 111296, 'pt', 'name', 'Centro de Investigação de Direito Privado'),
(141279, 111297, 'en', 'name', 'The No. 2 People''s Hospital of Lanzhou'),
(141280, 111297, 'zh', 'name', 'å…°å·žåø‚ē¬¬äŗŒäŗŗę°‘åŒ»é™¢'),
(141281, 111298, 'es', 'name', 'Hospital Universitario de Jerez'),
(141282, 111299, 'en', 'name', 'Advanced Technology Research Centre Pte Ltd, Advanced Technology Research Centre Pte Ltd (Singapore)'),
(141283, 111300, 'en', 'name', 'Ochanomizu Institute for Medical Mycology and Allergology'),
(141284, 111300, 'ja', 'name', 'ćŠčŒ¶ć®ę°“ēœŸčŒć‚¢ćƒ¬ćƒ«ć‚®ćƒ¼ē ”ē©¶ę‰€'),
(141285, 111301, 'id', 'name', 'Politeknik Manufaktur Negeri Bangka Belitung'),
(141286, 111302, 'es', 'name', 'Instituto de Investigaciones Antropológicas'),
(141287, 111303, 'en', 'name', 'Fujisawa Medical Association'),
(141288, 111303, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗč—¤ę²¢åø‚åŒ»åø«ä¼š'),
(141289, 111304, 'no_lang_code', 'name', 'Solvay (Belgium)'),
(141290, 111305, 'en', 'name', 'Japan Health Promotion Foundation'),
(141291, 111305, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·å¢—é€²č²”å›£'),
(141292, 111306, 'en', 'name', 'Laghman University'),
(141293, 111306, 'ps', 'name', 'لغمان Ł¾ŁˆŁ‡Ł†ŲŖŁˆŁ†');
INSERT INTO `ror_settings` VALUES
(141294, 111307, 'en', 'name', 'University Hospitals Cleveland Medical Center'),
(141295, 111308, 'en', 'name', 'Research Institute for Labour and Social Affairs'),
(141296, 111309, 'en', 'name', 'Higashikyushu Junior College'),
(141297, 111309, 'ja', 'name', 'ę±ä¹å·žēŸ­ęœŸå¤§å­¦'),
(141298, 111310, 'de', 'name', 'Europäische Organisation für Kernforschung'),
(141299, 111310, 'en', 'name', 'European Organization for Nuclear Research'),
(141300, 111310, 'fr', 'name', 'Organisation europƩenne pour la recherche nuclƩaire'),
(141301, 111311, 'en', 'name', 'Iwate Industry Promotion Center'),
(141302, 111311, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć„ć‚ć¦ē”£ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(141303, 111312, 'pt', 'name', 'Sociedade Portuguesa de Biomecânica'),
(141304, 111313, 'no_lang_code', 'name', 'Riasearch, Riasearch (Portugal)'),
(141305, 111314, 'no_lang_code', 'name', 'McKinsey & Company (United States)'),
(141306, 111315, 'pt', 'name', 'Sociedade Portuguesa de Diabetologia'),
(141307, 111316, 'pt', 'name', 'Academia Portuguesa da História'),
(141308, 111317, 'en', 'name', 'd-Matrix Inc., d-Matrix Inc. (United States)'),
(141309, 111318, 'en', 'name', 'Institute of Science, Technology and Policy'),
(141310, 111319, 'no_lang_code', 'name', 'GW Pharmaceuticals (United Kingdom)'),
(141311, 111320, 'en', 'name', 'Haute-Provence Observatory'),
(141312, 111320, 'fr', 'name', 'Observatoire de Haute-Provence'),
(141313, 111321, 'en', 'name', 'SFCOLAB - Smart Farm Collaborative Laboratory'),
(141314, 111322, 'en', 'name', 'International Union of Pure and Applied Physics'),
(141315, 111323, 'en', 'name', 'ARC Centre of Excellence for Particle Physics at the Terascale'),
(141316, 111324, 'en', 'name', 'Osaka Prefectural Management Foundation'),
(141317, 111324, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¤§é˜Ŗåŗœć‚æć‚¦ćƒ³ē®”ē†č²”å›£'),
(141318, 111325, 'en', 'name', 'National Natural Science Foundation of China'),
(141319, 111325, 'zh', 'name', 'å›½å®¶č‡Ŗē„¶ē§‘å­¦åŸŗé‡‘å§”å‘˜ä¼š'),
(141320, 111326, 'no_lang_code', 'name', 'Wacker Group (Germany)'),
(141321, 111327, 'no_lang_code', 'name', 'Engility (United States)'),
(141322, 111328, 'en', 'name', 'Central European Research Infrastructure Consortium'),
(141323, 111329, 'en', 'name', 'Japan Marine Oil Association'),
(141324, 111329, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę°“ē”£ę²¹č„‚å”ä¼š'),
(141325, 111330, 'en', 'name', 'Clinical Practice Research Datalink'),
(141326, 111331, 'cs', 'name', 'Ústav fyziky plazmatu AV ČR, Ústav fyziky plazmatu AV ČR, v. v. i., Ústav fyziky plazmatu AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(141327, 111331, 'en', 'name', 'Czech Academy of Sciences, Institute of Plasma Physics'),
(141328, 111332, 'en', 'name', 'International Professional University of Technology in Tokyo'),
(141329, 111332, 'ja', 'name', 'ę±äŗ¬å›½éš›å·„ē§‘å°‚é–€č·å¤§å­¦'),
(141330, 111333, 'en', 'name', 'Toulouse National Institute for Applied Sciences'),
(141331, 111333, 'fr', 'name', 'Institut National des Sciences AppliquƩes de Toulouse'),
(141332, 111334, 'en', 'name', 'Institute for Radiological Protection and Nuclear Safety'),
(141333, 111334, 'fr', 'name', 'Institut de Radioprotection et de SƻretƩ NuclƩaire'),
(141334, 111335, 'pt', 'name', 'Centro de Administração e Políticas Públicas'),
(141335, 111336, 'en', 'name', 'Japan Center for Cities'),
(141336, 111336, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬éƒ½åø‚ć‚»ćƒ³ć‚æćƒ¼'),
(141337, 111337, 'en', 'name', 'Technology Research Association of Magnetic Materials for High-Efficiency Motors'),
(141338, 111337, 'ja', 'name', 'é«˜åŠ¹ēŽ‡ćƒ¢ćƒ¼ć‚æćƒ¼ē”Øē£ę€§ęę–™ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(141339, 111338, 'es', 'name', 'Centro Especializado en Diabetes, Obesidad y Prevención de Enfermedades Cardiovasculares'),
(141340, 111339, 'en', 'name', 'Caledonian College of Engineering'),
(141341, 111340, 'en', 'name', 'Sir Charles Gairdner Hospital'),
(141342, 111341, 'en', 'name', 'Nara Kasuga Hospital'),
(141343, 111341, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗę–°ä»ä¼šå„ˆč‰Æę˜„ę—„ē—…é™¢'),
(141344, 111342, 'it', 'name', 'Azienda Ospedaliero-Universitaria di Modena'),
(141345, 111343, 'en', 'name', 'Atmo France'),
(141346, 111344, 'en', 'name', 'Southern United Academy of Sciences Limited'),
(141347, 111344, 'zh', 'name', 'å—ę–¹čÆåˆē§‘å­øē ”ē©¶é™¢ęœ‰é™å…¬åø'),
(141348, 111345, 'en', 'name', 'Portuguese Nuclear Magnetic Resonance Network'),
(141349, 111346, 'en', 'name', 'Laboratory of Physical Chemistry of Polymers and Interfaces'),
(141350, 111346, 'fr', 'name', 'Laboratoire de Physicochimie des PolymĆØres et des Interfaces'),
(141351, 111347, 'de', 'name', 'Versuchsanstalt für Wasserbau, Hydrologie und Glaziologie'),
(141352, 111347, 'en', 'name', 'Laboratory of Hydraulics, Hydrology and Glaciology'),
(141353, 111348, 'cs', 'name', 'Ústav anorganickĆ© chemie AV ČR, Ústav anorganickĆ© chemie AV ČR, v. v. i., Ústav anorganickĆ© chemie AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(141354, 111348, 'en', 'name', 'Czech Academy of Sciences, Institute of Inorganic Chemistry'),
(141355, 111349, 'en', 'name', 'University of La Serena'),
(141356, 111349, 'es', 'name', 'Universidad de La Serena'),
(141357, 111350, 'en', 'name', 'All India Institute of Medical Sciences, Rajkot'),
(141358, 111351, 'pt', 'name', 'Centro de Matematica Aplicada à Previsão e Decisão Económica'),
(141359, 111352, 'cs', 'name', 'Filosofický Ćŗstav AV ČR, Filosofický Ćŗstav AV ČR, v. v. i., Filosofický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(141360, 111352, 'en', 'name', 'Czech Academy of Sciences, Institute of Philosophy'),
(141361, 111353, 'pt', 'name', 'Sociedade Portuguesa de Ciências VeterinÔrias'),
(141362, 111354, 'en', 'name', 'Naval Health Research Center'),
(141363, 111355, 'en', 'name', 'Institute for Plasma Research'),
(141364, 111355, 'hi', 'name', 'ą¤Ŗą„ą¤²ą¤¾ą¤œą„ą¤®ą¤¾ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(141365, 111356, 'no_lang_code', 'name', 'Gades Training (Portugal)'),
(141366, 111357, 'en', 'name', 'Japan Elevator Association'),
(141367, 111357, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚Øćƒ¬ćƒ™ćƒ¼ć‚æćƒ¼å”ä¼š'),
(141368, 111358, 'en', 'name', 'Research Institute of Meteorology and Atmospheric Science'),
(141369, 111358, 'fa', 'name', 'Ł¾Ś˜ŁˆŁ‡Ų“ŚÆŲ§Ł‡ Ł‡ŁˆŲ§Ų“Ł†Ų§Ų³ŪŒ و Ų¹Ł„ŁˆŁ… جو'),
(141370, 111359, 'de', 'name', 'KSH München, Katholische Stiftungshochschule München'),
(141371, 111360, 'tr', 'name', 'Türkiye Eğitim Gönüllüleri Vakfı'),
(141372, 111361, 'en', 'name', 'Indian Institute of Technology Hyderabad'),
(141373, 111361, 'fr', 'name', 'Institut de technologie indien d''hyderabad'),
(141374, 111361, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(141375, 111361, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ą“±ą“æą“±ą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“•ąµ†ą“®ą“æą“•ąµą“•ąµ½ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ'),
(141376, 111361, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ஐதராபாது'),
(141377, 111361, 'te', 'name', 'ą°‡ą°‚ą°”ą°æą°Æą°Øą± ą°‡ą°Øą±ą°øą±ą°Ÿą°æą°Ÿą±ą°Æą±‚ą°Ÿą± ą°†ą°«ą± ą°Ÿą±†ą°•ą±ą°Øą°¾ą°²ą°œą±€ ą°¹ą±ˆą°¦ą°°ą°¾ą°¬ą°¾ą°¦ą±'),
(141378, 111362, 'en', 'name', 'Institute for Atomic Energy Research'),
(141379, 111362, 'hu', 'name', 'Atomenergia Kutatóintézet'),
(141380, 111363, 'pt', 'name', 'Centro Nacional de Cultura'),
(141381, 111364, 'en', 'name', 'Laboratory of Plant Biotechnologies Applied to Aromatic and Medicinal Plants'),
(141382, 111364, 'fr', 'name', 'Laboratoire de Biotechnologies VƩgƩtales AppliquƩes aux Plantes Aromatiques et MƩdicinales'),
(141383, 111365, 'pt', 'name', 'Comunidade Intermunicipal do Alentejo Litoral'),
(141384, 111366, 'en', 'name', 'BUILT CoLAB'),
(141385, 111367, 'cs', 'name', 'NanomateriĆ”ly a nanotechnologie pro ochranu životnĆ­ho prostředĆ­ a udržitelnou budoucnost'),
(141386, 111367, 'en', 'name', 'Nanomaterials and Nanotechnologies for Environment Protection and Sustainable Future'),
(141387, 111368, 'pt', 'name', 'Companhia de MĆŗsica Teatral'),
(141388, 111369, 'de', 'name', 'UniversitƤt Koblenz-Landau'),
(141389, 111369, 'en', 'name', 'University of Koblenz and Landau'),
(141390, 111370, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© أسيوط'),
(141391, 111370, 'fr', 'name', 'UniversitƩ d''Assiout'),
(141392, 111370, 'no_lang_code', 'name', 'Assiut University'),
(141393, 111371, 'en', 'name', 'Gunma Livestock Health Laboratory'),
(141394, 111371, 'ja', 'name', 'ē¾¤é¦¬ēœŒå®¶ē•œč”›ē”Ÿē ”ē©¶ę‰€'),
(141395, 111372, 'pt', 'name', 'Centro Interdisciplinar de CiĆŖncias Sociais'),
(141396, 111373, 'en', 'name', 'Turkish Chemical Society'),
(141397, 111374, 'en', 'name', 'University of Home Economics'),
(141398, 111375, 'en', 'name', 'Kochi Prefectural Police'),
(141399, 111375, 'ja', 'name', '高矄県警察'),
(141400, 111376, 'pt', 'name', 'Sociedade Portuguesa de Estomatologia e Medicina DentƔria'),
(141401, 111377, 'pt', 'name', 'Fundacao de Computacao Cientifica Nacional'),
(141402, 111378, 'en', 'name', 'Nagasaki Nursing Association'),
(141403, 111378, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé•·å“ŽēœŒēœ‹č­·å”ä¼š'),
(141404, 111379, 'ar', 'name', 'Ų§Ł„Ł…ŁƒŲŖŲØ Ų§Ł„ŁˆŲ·Ł†ŁŠ للسلامة Ų§Ł„ŲµŲ­ŁŠŲ© للمنتجات Ų§Ł„ŲŗŲ°Ų§Ų¦ŁŠŲ©'),
(141405, 111379, 'en', 'name', 'National Office for Sanitary Safety of Food Products'),
(141406, 111379, 'fr', 'name', 'Office National de SƩcuritƩ Sanitaire des Produits Alimentaires'),
(141407, 111380, 'en', 'name', 'Seikei-kai Chiba Medical Center'),
(141408, 111380, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é¦Øä¼šåƒč‘‰ćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(141409, 111381, 'en', 'name', 'Miyakojima iGRT Clinic'),
(141410, 111381, 'ja', 'name', 'éƒ½å³¶ę”¾å°„ē·šē§‘ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(141411, 111382, 'en', 'name', 'Ethiopian Policy Studies Institute'),
(141412, 111383, 'en', 'name', 'Japan Meat Technology Institute'),
(141413, 111383, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é£Ÿč‚‰ē”Ÿē”£ęŠ€č”“é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(141414, 111384, 'de', 'name', 'Herzzentrum Dresden Universitaetsklinik'),
(141415, 111384, 'en', 'name', 'Heart Center Dresden, University Hospital'),
(141416, 111385, 'en', 'name', 'Indiana University – Purdue University Fort Wayne'),
(141417, 111386, 'de', 'name', 'Topas GmbH, Topas GmbH (Germany)'),
(141418, 111387, 'de', 'name', 'Institut für Hochleistungsrechnersysteme'),
(141419, 111387, 'en', 'name', 'Institute for High Performance Computing Systems'),
(141420, 111388, 'en', 'name', 'Rahman Institute of Higher Education'),
(141421, 111388, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ رحمان Ų±Ų§Ł…Ų³Ų±'),
(141422, 111389, 'en', 'name', 'Fukui Prefectural Environmental Radiation Research and Monitoring Center'),
(141423, 111389, 'ja', 'name', 'ē¦äŗ•ēœŒåŽŸå­åŠ›ē’°å¢ƒē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(141424, 111390, 'de', 'name', 'Robert Koch-Institut'),
(141425, 111390, 'en', 'name', 'Robert Koch Institute'),
(141426, 111391, 'en', 'name', 'ARC Centre of Excellence for Environmental Decisions'),
(141427, 111392, 'en', 'name', 'G. H. Gillespie Associates, G. H. Gillespie Associates, Inc.'),
(141428, 111392, 'no_lang_code', 'name', 'G. H. Gillespie Associates (United States)'),
(141429, 111393, 'pt', 'name', 'Rede Portuguesa de Monitorização Costeira'),
(141430, 111394, 'en', 'name', 'Imam Maturidi International Scientific Research Center'),
(141431, 111395, 'pt', 'name', 'Reactor Português de Investigação'),
(141432, 111396, 'en', 'name', 'Shaoxing Shangyu Women and Children Hospital'),
(141433, 111396, 'zh', 'name', 'ē»å…“åø‚äøŠč™žå¦‡å¹¼äæå„é™¢'),
(141434, 111397, 'en', 'name', 'Indiana University'),
(141435, 111397, 'fr', 'name', 'UniversitƩ de l''Indiana'),
(141436, 111398, 'en', 'name', 'Indian Institute of Chemical Biology'),
(141437, 111399, 'pt', 'name', 'Centro de Investigação em Ambiente e Sustentabilidade'),
(141438, 111400, 'en', 'name', 'Newcastle University'),
(141439, 111401, 'pt', 'name', 'Instituto de Estudos de Literatura e Tradição'),
(141440, 111402, 'en', 'name', 'Ministry of Health and Population'),
(141441, 111402, 'ne', 'name', 'ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ तऄा ą¤œą¤Øą¤øą¤‚ą¤–ą„ą¤Æą¤¾ ą¤®ą¤Øą„ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(141442, 111403, 'en', 'name', 'Ircam Amplify, Ircam Amplify (France)'),
(141443, 111404, 'en', 'name', 'Fukushima Institute for Research, Education and Innovation'),
(141444, 111405, 'no_lang_code', 'name', 'Egoclinic Prestação de Serviços Médicos (Portugal), Egoclinic Provision of Medical Services'),
(141445, 111406, 'en', 'name', 'Overseas Fishery Cooperation Foundation of Japan'),
(141446, 111406, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęµ·å¤–ę¼ę„­å”åŠ›č²”å›£'),
(141447, 111407, 'fr', 'name', 'FƩdƩration de Recherche FCLAB'),
(141448, 111408, 'de', 'name', 'Institut für Integrative Biologie'),
(141449, 111408, 'en', 'name', 'Institute of Integrative Biology'),
(141450, 111409, 'de', 'name', 'Institut für Molekulare Physikalische Wissenschaft'),
(141451, 111409, 'en', 'name', 'Institute of Molecular Physical Science'),
(141452, 111410, 'en', 'name', 'C. K. Pithawalla Institute of Pharmaceutical Science and Research'),
(141453, 111411, 'en', 'name', 'Yamanashi Fruit Tree Experiment Station'),
(141454, 111411, 'ja', 'name', 'å±±ę¢ØēœŒęžœęØ¹č©¦éØ“å “'),
(141455, 111412, 'de', 'name', 'Tiergarten Nürnberg'),
(141456, 111412, 'en', 'name', 'Nuremberg Zoo'),
(141457, 111413, 'en', 'name', 'Ecosmic, Ecosmic (Italy)'),
(141458, 111414, 'en', 'name', 'University of Rennes 2'),
(141459, 111414, 'fr', 'name', 'UniversitƩ Rennes 2'),
(141460, 111415, 'es', 'name', 'Universidad Laica Eloy Alfaro de ManabĆ­'),
(141461, 111416, 'de', 'name', 'Institut Gesellschaftswissenschaftliche Bildung'),
(141462, 111416, 'en', 'name', 'Institute of Social Studies Education'),
(141463, 111417, 'en', 'name', 'Articares Pte Ltd, Articares Pte Ltd (Singapore)'),
(141464, 111418, 'en', 'name', 'D’Or Institute for Research and Education'),
(141465, 111418, 'pt', 'name', 'Instituto D’Or de Pesquisa e Ensino'),
(141466, 111419, 'en', 'name', 'Japanese Society of Psychosomatic Medicine'),
(141467, 111419, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åæƒčŗ«åŒ»å­¦ä¼š'),
(141468, 111420, 'en', 'name', 'MARINO-FORUM 21'),
(141469, 111420, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒžćƒŖćƒŽćƒ•ć‚©ćƒ¼ćƒ©ćƒ 21'),
(141470, 111421, 'en', 'name', 'JAM MUSIC LAB Private University for Jazz and Popular Music Vienna'),
(141471, 111422, 'fr', 'name', 'Immunologie et NeurogƩnƩtique ExpƩrimentales et MolƩculaires'),
(141472, 111423, 'no_lang_code', 'name', 'Abreu Tours, Viagens Abreu (Portugal), Viagens Abreu, S.A.'),
(141473, 111424, 'en', 'name', 'TYDEX, LLC, TYDEX, LLC (Russia)'),
(141474, 111425, 'en', 'name', 'University of Music Lausanne'),
(141475, 111425, 'fr', 'name', 'Haute Ɖcole de Musique de Lausanne'),
(141476, 111426, 'en', 'name', 'Japan Education Center of Environmental Sanitation'),
(141477, 111426, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒę•“å‚™ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(141478, 111427, 'de', 'name', 'Institut für Umweltentscheidungen'),
(141479, 111427, 'en', 'name', 'Institute for Environmental Decisions'),
(141480, 111428, 'de', 'name', 'Goethe-Institut Singapore, Goethe-Institut Singapur'),
(141481, 111429, 'no_lang_code', 'name', 'Findmore Consulting, Findmore Consulting (Portugal)'),
(141482, 111430, 'en', 'name', 'Ministry of Education of the People''s Republic of China'),
(141483, 111430, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½ę•™č‚²éƒØ'),
(141484, 111431, 'tr', 'name', 'İzmir Akademi Derneği'),
(141485, 111432, 'no_lang_code', 'name', 'Rovensa, Rovensa (Portugal)'),
(141486, 111433, 'en', 'name', 'Portugal Football School'),
(141487, 111434, 'no_lang_code', 'name', 'UCB Pharma (Belgium)'),
(141488, 111435, 'en', 'name', 'Sister Nibedita Government General Degree College for Girls'),
(141489, 111436, 'en', 'name', 'School of Freudian Psychoanalysis'),
(141490, 111436, 'it', 'name', 'Scuola di Psicanalisi Freudiana'),
(141491, 111437, 'en', 'name', 'Polytechnic Institute of Coimbra'),
(141492, 111437, 'pt', 'name', 'Instituto PolitƩcnico de Coimbra'),
(141493, 111438, 'en', 'name', 'Abu Dhabi Stem Cells Center'),
(141494, 111439, 'en', 'name', 'National Institute of Technology Hamirpur'),
(141495, 111439, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤¹ą¤®ą„€ą¤°ą¤Ŗą„ą¤°'),
(141496, 111440, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł‚Ł„ŁŠŁ… Ų³ŲØŲ£'),
(141497, 111440, 'en', 'name', 'University of Saba Region'),
(141498, 111441, 'en', 'name', 'Japan Environmental Education Forum'),
(141499, 111441, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē’°å¢ƒę•™č‚²ćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(141500, 111442, 'pt', 'name', 'Sociedade Portuguesa de ElectroquĆ­mica'),
(141501, 111443, 'de', 'name', 'Institut PƤdagogische Psychologie'),
(141502, 111443, 'en', 'name', 'Institute of Educational Psychology'),
(141503, 111444, 'en', 'name', 'Federal Polytechnic, Ile-Oluji, Ondo State'),
(141504, 111445, 'ar', 'name', 'Ł…Ų±ŁƒŲ² Ų§Ł„ŲØŲ­ŁˆŲ« في الهندسة Ų§Ł„Ł…ŁŠŁƒŲ§Ł†ŁŠŁƒŁŠŲ©'),
(141505, 111445, 'en', 'name', 'Center of Research in Mechanics'),
(141506, 111445, 'fr', 'name', 'Centre de recherche en mƩcanique'),
(141507, 111446, 'no_lang_code', 'name', 'Norconsult (Norway)'),
(141508, 111447, 'en', 'name', 'University of Edinburgh'),
(141509, 111447, 'gd', 'name', 'Oilthigh Dhùn Èideann'),
(141510, 111448, 'no_lang_code', 'name', 'Behavioral and Molecular Lab (Portugal)'),
(141511, 111449, 'de', 'name', 'Institut für Raum- und Landschaftsentwicklung'),
(141512, 111449, 'en', 'name', 'Institute for Spatial and Landscape Development'),
(141513, 111450, 'pt', 'name', 'Laboratório de Plasmas Hipersónicos'),
(141514, 111451, 'en', 'name', 'Eco Research'),
(141515, 111452, 'en', 'name', 'Centre for Neuroscience and Cell Biology'),
(141516, 111452, 'pt', 'name', 'Centro de NeurociĆŖncias e Biologia Celular'),
(141517, 111453, 'en', 'name', 'CETT Barcelona School of Tourism, Hospitality and Gastronomy'),
(141518, 111454, 'en', 'name', 'Al Wasl University'),
(141519, 111455, 'no_lang_code', 'name', 'Portimonense Futebol SAD, Portimonense Futebol SAD (Portugal)'),
(141520, 111456, 'en', 'name', 'Ministry of Health of the Russian Federation'),
(141521, 111456, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(141522, 111457, 'en', 'name', 'PFA Pension, PFA Pension (Denmark)'),
(141523, 111458, 'en', 'name', 'Paris-Saclay Applied Economics'),
(141524, 111459, 'en', 'name', 'John Jay College of Criminal Justice'),
(141525, 111460, 'es', 'name', 'Instituto Superior Tecnológico ITCA'),
(141526, 111461, 'en', 'name', 'Centre for Research and Teaching in Environmental Geoscience'),
(141527, 111461, 'fr', 'name', 'Centre de Recherche et d’Enseignement de GĆ©osciences de l’Environnement'),
(141528, 111462, 'fr', 'name', 'PrƩhistoire et Technologie'),
(141529, 111463, 'en', 'name', 'Foundation for Information Society'),
(141530, 111464, 'en', 'name', 'Zaporizhia State Medical and Pharmaceutical University'),
(141531, 111464, 'uk', 'name', 'Š—Š°ŠæŠ¾Ń€Ń–Š·ŃŒŠŗŠøŠ¹ Гержавний меГико-фармацевтичний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(141532, 111465, 'es', 'name', 'Instituto de Investigación en Paleobiología y Geología'),
(141533, 111466, 'en', 'name', 'Institute for Solid State Physics and Optics'),
(141534, 111466, 'hu', 'name', 'SzilƔrdtestfizikai Ʃs Optikai IntƩzet'),
(141535, 111467, 'en', 'name', 'Organization for Small & Medium Enterprises and Regional Innovation, JAPAN'),
(141536, 111467, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗäø­å°ä¼ę„­åŸŗē›¤ę•“å‚™ę©Ÿę§‹'),
(141537, 111468, 'en', 'name', 'Lorraine Institute for Social Sciences and Humanities'),
(141538, 111468, 'fr', 'name', 'Maison des Sciences sociales et des HumanitƩs Lorraine'),
(141539, 111469, 'en', 'name', 'Biophysics Institute'),
(141540, 111469, 'eu', 'name', 'Instituto Biofisika'),
(141541, 111470, 'en', 'name', 'Japan Arts Council'),
(141542, 111470, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗę—„ęœ¬čŠøč”“ę–‡åŒ–ęŒÆčˆˆä¼š'),
(141543, 111471, 'en', 'name', 'National Laboratory of Metrology and Testing'),
(141544, 111471, 'fr', 'name', 'Laboratoire National de MƩtrologie et d''Essais'),
(141545, 111472, 'en', 'name', 'Springer Nature (Beijing, China)'),
(141546, 111473, 'en', 'name', 'Nano Center Indonesia'),
(141547, 111474, 'en', 'name', 'Ministry of Education and Research'),
(141548, 111474, 'sv', 'name', 'Utbildningsdepartementet'),
(141549, 111475, 'en', 'name', 'Amagasaki Medical Association'),
(141550, 111475, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå°¼å“Žåø‚åŒ»åø«ä¼š'),
(141551, 111476, 'en', 'name', 'Hakujuji General Hospital'),
(141552, 111476, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗē™½åå­—ä¼šē™½åå­—ē·åˆē—…é™¢'),
(141553, 111477, 'es', 'name', 'Instituto Superior de Artes y Ciencias de la Comunicación'),
(141554, 111478, 'en', 'name', 'University of Narowal'),
(141555, 111479, 'en', 'name', 'The Apollo University'),
(141556, 111480, 'en', 'name', 'Love Wildlife Foundation'),
(141557, 111481, 'pt', 'name', 'Secretaria Regional de Agricultura e Pescas'),
(141558, 111482, 'en', 'name', 'Parliament of Canada'),
(141559, 111482, 'fr', 'name', 'Parlement du Canada'),
(141560, 111483, 'en', 'name', 'McGill University'),
(141561, 111483, 'fr', 'name', 'UniversitƩ McGill'),
(141562, 111484, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الجزائر 3'),
(141563, 111484, 'en', 'name', 'University of Algiers 3'),
(141564, 111485, 'bn', 'name', 'ą¦Ŗą§ą¦°ą¦¾ą¦£ą¦æą¦øą¦®ą§ą¦Ŗą¦¦ ą¦…ą¦§ą¦æą¦¦ą¦Ŗą§ą¦¤ą¦°'),
(141565, 111485, 'en', 'name', 'Department of Livestock Services'),
(141566, 111486, 'no_lang_code', 'name', 'Trinap Equipamentos Industriais (Portugal), Trinap Industrial Equipments'),
(141567, 111487, 'en', 'name', 'Mechanics and Materials Laboratory of Civil Engineering'),
(141568, 111487, 'fr', 'name', 'Laboratoire de MƩcanique et MatƩriaux du GƩnie Civil'),
(141569, 111488, 'no_lang_code', 'name', 'Neurolixis (United States)'),
(141570, 111489, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ الله Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(141571, 111489, 'en', 'name', 'King Abdullah University of Science and Technology'),
(141572, 111490, 'en', 'name', 'Commonwealth of Virginia'),
(141573, 111491, 'en', 'name', 'Centre for material sciences, Mines Paris, PSL University, Centre for material sciences (MAT)'),
(141574, 111491, 'fr', 'name', 'Centre des MatƩriaux, Mines Paris, UniversitƩ PSL, Centre des MatƩriaux (MAT)'),
(141575, 111492, 'en', 'name', 'College of Engineering Trivandrum'),
(141576, 111493, 'fr', 'name', 'Institut Ɖcologie et Environnement'),
(141577, 111494, 'en', 'name', 'Al-Irsyad Cilacap University'),
(141578, 111494, 'id', 'name', 'Universitas Al-Irsyad Cilacap'),
(141579, 111495, 'en', 'name', 'Maremma Natural History Museum'),
(141580, 111495, 'it', 'name', 'Museo di Storia Naturale della Maremma'),
(141581, 111496, 'en', 'name', 'Hakodate Municipal Hospital'),
(141582, 111496, 'ja', 'name', '市立函館病院'),
(141583, 111497, 'no_lang_code', 'name', 'Eli Lilly (United States)'),
(141584, 111498, 'en', 'name', 'British Broadcasting Corporation (United Kingdom)'),
(141585, 111499, 'en', 'name', 'SUWA Central Hospital'),
(141586, 111499, 'ja', 'name', 'ēµ„åˆē«‹č«čØŖäø­å¤®ē—…é™¢'),
(141587, 111500, 'no_lang_code', 'name', 'Medical Society of Entrecampos, Sociedade MƩdica de Entrecampos (Portugal)'),
(141588, 111501, 'no_lang_code', 'name', 'Multinfor Equipamento e Manutenção Hospitalar (Portugal), Multinfor Hospital Equipment and Maintenance'),
(141589, 111502, 'en', 'name', 'Japanese Animal Hospital Association'),
(141590, 111502, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©ē—…é™¢å”ä¼š'),
(141591, 111503, 'en', 'name', 'International Tourism Center of Japan'),
(141592, 111503, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›č¦³å…‰ć‚µćƒ¼ćƒ“ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(141593, 111504, 'no_lang_code', 'name', 'Evonik (Germany)'),
(141594, 111505, 'en', 'name', 'United States Census Bureau'),
(141595, 111505, 'es', 'name', 'Oficina del Censo de los Estados Unidos'),
(141596, 111506, 'en', 'name', 'Ferox Therapeutics, Ferox Therapeutics (United States)'),
(141597, 111507, 'pt', 'name', 'Observatório de Ciberjornalismo'),
(141598, 111508, 'en', 'name', 'Ishikawa Sunrise Industries Creation Organization'),
(141599, 111508, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗēŸ³å·ēœŒē”£ę„­å‰µå‡ŗę”Æę“ę©Ÿę§‹'),
(141600, 111509, 'de', 'name', 'Rheinland-PfƤlzische Technische UniversitƤt Kaiserslautern-Landau'),
(141601, 111510, 'no_lang_code', 'name', 'AtralCipan, AtralCipan (Portugal)'),
(141602, 111511, 'en', 'name', 'Lutheran Theological Seminary at Gettysburg'),
(141603, 111512, 'pt', 'name', 'Sociedade Portuguesa de Medicina Física e Reabilitação'),
(141604, 111513, 'pt', 'name', 'Secretaria Regional de Agricultura e Pescas Direção Regional de Agricultura'),
(141605, 111514, 'en', 'name', 'Lutheran Theological Seminary at Philadelphia'),
(141606, 111515, 'en', 'name', '"Silk Road" International University of Tourism and Cultural Heritage'),
(141607, 111516, 'en', 'name', 'Tokyo Nursing Association'),
(141608, 111516, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±äŗ¬éƒ½ēœ‹č­·å”ä¼š'),
(141609, 111517, 'pt', 'name', 'Unidade de Investigação e Desenvolvimento de Nefrologia'),
(141610, 111518, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ابوظبي'),
(141611, 111518, 'en', 'name', 'Abu Dhabi University'),
(141612, 111519, 'en', 'name', 'Japan Society of Colour Material'),
(141613, 111519, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč‰²ęå”ä¼š'),
(141614, 111520, 'en', 'name', 'University of Macau'),
(141615, 111520, 'pt', 'name', 'Universidade de Macau'),
(141616, 111521, 'fr', 'name', 'Pharmacologie et Pathologies Fragilisantes'),
(141617, 111522, 'en', 'name', 'HauHau Research, HauHau Research (New Zealand)'),
(141618, 111523, 'fr', 'name', 'Laboratoire Interdisciplinaire de Recherches "SociƩtƩs, SensibilitƩs, Soin"'),
(141619, 111524, 'es', 'name', 'Instituto de Investigaciones Filosóficas'),
(141620, 111525, 'no_lang_code', 'name', 'Elkem (Norway)'),
(141621, 111526, 'de', 'name', 'Institut für Biochemie'),
(141622, 111526, 'en', 'name', 'Institute of Biochemistry'),
(141623, 111527, 'en', 'name', 'Kinder Institute for Urban Research'),
(141624, 111528, 'en', 'name', 'Economic Interest Group'),
(141625, 111528, 'fr', 'name', 'Groupement d''Intérêt Economique'),
(141626, 111529, 'pt', 'name', 'Centro de Investigação em Desporto Educação Física Exercício e Saúde'),
(141627, 111530, 'cs', 'name', 'Survey of Health, Ageing and Retirement in Europe – ĆŗÄast ČR'),
(141628, 111530, 'en', 'name', 'Survey of Health, Ageing and Retirement in Europe'),
(141629, 111531, 'eu', 'name', 'Lyongo unibertsitatea'),
(141630, 111531, 'fr', 'name', 'UniversitƩ de Lyon'),
(141631, 111532, 'pt', 'name', 'Vigararia de Oeiras'),
(141632, 111533, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų­Ų¬Ų©'),
(141633, 111533, 'en', 'name', 'Hajjah University'),
(141634, 111534, 'es', 'name', '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)'),
(141635, 111535, 'en', 'name', 'ERN EURACAN'),
(141636, 111536, 'no_lang_code', 'name', 'Guam Sea Grant'),
(141637, 111537, 'en', 'name', 'All India Institute of Medical Sciences Bhopal'),
(141638, 111538, 'en', 'name', 'Toulouse Institute of Computer Science Research'),
(141639, 111538, 'fr', 'name', 'Institut de Recherche en Informatique de Toulouse'),
(141640, 111539, 'en', 'name', 'Laboratories of Image Information Science and Technology'),
(141641, 111539, 'ja', 'name', 'č²”å›£ę³•äŗŗć‚¤ćƒ”ćƒ¼ć‚øęƒ…å ±ē§‘å­¦ē ”ē©¶ę‰€'),
(141642, 111540, 'en', 'name', 'Changjiang River Scientific Research Institute'),
(141643, 111540, 'zh', 'name', 'é•æę±Ÿę°“åˆ©å§”å‘˜ä¼šé•æę±Ÿē§‘å­¦é™¢'),
(141644, 111541, 'no_lang_code', 'name', 'Jorge Evandro Alves Unip (Portugal)'),
(141645, 111542, 'cy', 'name', 'Prifysgol Southampton'),
(141646, 111542, 'en', 'name', 'University of Southampton'),
(141647, 111543, 'en', 'name', 'Okayama Prefectural Technology Center for Agriculture, Forestry and Fisheries'),
(141648, 111543, 'ja', 'name', 'å²”å±±ēœŒč¾²ęž—ę°“ē”£ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(141649, 111544, 'en', 'name', 'Sree Narayana College, Punalur'),
(141650, 111545, 'en', 'name', 'Singapore University of Social Sciences'),
(141651, 111545, 'zh', 'name', 'ę–°åŠ å”ē¤¾ē§‘å¤§å­¦'),
(141652, 111546, 'en', 'name', 'Australian Coral Reef Society'),
(141653, 111547, 'en', 'name', 'State Herbarium of South Australia'),
(141654, 111548, 'en', 'name', 'Renaissance Computing Institute'),
(141655, 111549, 'en', 'name', 'St. Xavier''s College'),
(141656, 111550, 'en', 'name', 'Central Library of the Slovak Academy of Sciences'),
(141657, 111550, 'sk', 'name', 'ÚstrednÔ knižnica Slovenskej akadémie vied'),
(141658, 111551, 'en', 'name', 'Smartgridslab'),
(141659, 111552, 'en', 'name', 'Madigan Army Medical Center'),
(141660, 111553, 'pt', 'name', 'Museu MonogrƔfico de Conimbriga'),
(141661, 111554, 'en', 'name', 'Kryachkov Novosibirsk State University of Architecture, Design and Arts'),
(141662, 111554, 'ru', 'name', 'ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Ń‹, Гизайна Šø ŠøŃŠŗŃƒŃŃŃ‚Š² имени А.Š”. ŠšŃ€ŃŃ‡ŠŗŠ¾Š²Š°'),
(141663, 111555, 'en', 'name', 'Beijing Institute of Technology'),
(141664, 111555, 'zh', 'name', 'åŒ—äŗ¬ē†å·„å¤§å­¦'),
(141665, 111556, 'en', 'name', 'Animal Health Research Center'),
(141666, 111557, 'pt', 'name', 'Laboratório de Ɠptica Lasers e Sistemas'),
(141667, 111558, 'en', 'name', '59th Medical Wing'),
(141668, 111559, 'en', 'name', 'Centre for Eye Research Australia'),
(141669, 111560, 'en', 'name', 'Future Cities Institute'),
(141670, 111561, 'en', 'name', 'National University of Science and Technology'),
(141671, 111562, 'en', 'name', 'CIMEOS - Communications, MƩdiations, Organisations, Savoirs'),
(141672, 111563, 'en', 'name', 'University Graduate Center'),
(141673, 111563, 'no', 'name', 'Universitetssenteret pƄ Kjeller'),
(141674, 111564, 'no_lang_code', 'name', 'ADDSOLUTIONS, ADDSOLUTIONS (Portugal)'),
(141675, 111565, 'en', 'name', 'University of Geneva'),
(141676, 111565, 'fr', 'name', 'Université de Genève'),
(141677, 111565, 'it', 'name', 'UniversitĆ  di Ginevra'),
(141678, 111566, 'no_lang_code', 'name', 'Rockwell Automation (United States)'),
(141679, 111567, 'en', 'name', 'Space & Earth Geodetic Analysis Laboratory'),
(141680, 111568, 'en', 'name', 'Sapporo Tokusyukai Medecal Corporation'),
(141681, 111568, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå¾³ę“²ä¼šęœ­å¹Œå¾³ę“²ä¼šē—…é™¢'),
(141682, 111569, 'cs', 'name', 'VýzkumnÔ infrastruktura pro experimenty v CERN'),
(141683, 111569, 'en', 'name', 'Research Infrastructure for Experiments at CERN'),
(141684, 111570, 'pt', 'name', 'Centimfe, Centro Tecnológico da Indústria de Moldes, Ferramentas Especiais e PlÔsticos'),
(141685, 111571, 'es', 'name', 'Centro de Normalización Lingüística de la Lengua de Signos Española'),
(141686, 111572, 'en', 'name', 'Center for Scalable Data Analytics and Artificial Intelligence'),
(141687, 111573, 'en', 'name', 'Foundation for Senior Citizens'' Housing'),
(141688, 111573, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé«˜é½¢č€…ä½å®…č²”å›£'),
(141689, 111574, 'en', 'name', 'Good Ventures'),
(141690, 111575, 'cs', 'name', 'VR-1 – Å kolnĆ­ reaktor pro výzkumnou činnost'),
(141691, 111575, 'en', 'name', 'VR-1 – Training Reactor for Research Activities'),
(141692, 111576, 'pt', 'name', 'CĆ¢mara Municipal da Maia'),
(141693, 111577, 'en', 'name', 'Japan Research Foundation for Clinical Pharmacology'),
(141694, 111577, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč‡ØåŗŠč–¬ē†ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(141695, 111578, 'no_lang_code', 'name', 'Atena Equity Partners, Atena Equity Partners (Portugal), Atena Equity Partners SCR SA'),
(141696, 111579, 'en', 'name', 'Research Institute of Marine Invertebrates'),
(141697, 111579, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę°“ē”£ē„”č„Šę¤Žå‹•ē‰©ē ”ē©¶ę‰€'),
(141698, 111580, 'en', 'name', 'Tokyo Shinagawa Hospital'),
(141699, 111580, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·‘é‡Žä¼šę±äŗ¬å“å·ē—…é™¢'),
(141700, 111581, 'pt', 'name', 'Federação das Indústrias Portuguesas Agro-Alimentares'),
(141701, 111582, 'en', 'name', 'Oxford BioDynamics, Oxford BioDynamics (United Kingdom), Oxford BioDynamics Plc'),
(141702, 111583, 'en', 'name', 'PSG College of Technology'),
(141703, 111584, 'de', 'name', 'Zentrum Digitalisierung und Bildung'),
(141704, 111584, 'en', 'name', 'Centre for Digitalisation and Education'),
(141705, 111585, 'en', 'name', 'Fukuoka Asian Urban Research Center'),
(141706, 111585, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē¦å²”ć‚¢ć‚øć‚¢éƒ½åø‚ē ”ē©¶ę‰€'),
(141707, 111586, 'es', 'name', 'Universidad Tecnológica de la Región Centro de Coahuila'),
(141708, 111587, 'en', 'name', 'National University of Singapore'),
(141709, 111587, 'ta', 'name', 'ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ ą®¤ąÆ‡ą®šą®æą®Æą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(141710, 111587, 'zh', 'name', 'ę–°åŠ å”å›½ē«‹å¤§å­¦'),
(141711, 111588, 'en', 'name', 'National Autonomous University of Mexico'),
(141712, 111588, 'es', 'name', 'Universidad Nacional Autónoma de México'),
(141713, 111589, 'en', 'name', 'Digital Content Association of Japan'),
(141714, 111589, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ‡ć‚øć‚æćƒ«ć‚³ćƒ³ćƒ†ćƒ³ćƒ„å”ä¼š'),
(141715, 111590, 'en', 'name', 'WCRP-ESMO International Project Office'),
(141716, 111591, 'pt', 'name', 'Caritas Diocesana de Coimbra'),
(141717, 111592, 'fr', 'name', 'Environnements et PalƩoenvironnements OcƩaniques et Continentaux'),
(141718, 111593, 'en', 'name', 'Termez University of Economics and Service'),
(141719, 111594, 'pt', 'name', 'Casa Fernando Pessoa'),
(141720, 111595, 'en', 'name', 'Academia.edu Journals'),
(141721, 111596, 'fr', 'name', 'Ɖtudes approfondies des sociĆ©tĆ©s traditionnelles et contemporaines en OcĆ©anie'),
(141722, 111597, 'it', 'name', 'Confederazione Generale dell’Agricoltura Italiana, Confederazione Generale dell’Agricoltura Italiana (Italy)'),
(141723, 111598, 'en', 'name', 'Durham University'),
(141724, 111599, 'en', 'name', 'Baqai Medical University'),
(141725, 111599, 'ur', 'name', 'ŲØŁ‚Ų§Ų¦ŪŒ Ł…ŪŒŚˆŪŒŚ©Ł„ ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(141726, 111600, 'de', 'name', 'Fresenius SE & Co. KGaA'),
(141727, 111600, 'no_lang_code', 'name', 'Fresenius (Germany)'),
(141728, 111601, 'ro', 'name', 'Stațiunea de Cercetare-Dezvoltare pentru Pomicultură Bistrița'),
(141729, 111602, 'en', 'name', 'National Institute for Nigerian Languages'),
(141730, 111603, 'cs', 'name', 'Ú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'),
(141731, 111603, 'en', 'name', 'Czech Academy of Sciences, Global Change Research Institute, Global Change Research Institute CAS'),
(141732, 111604, 'no_lang_code', 'name', 'NestlƩ (Switzerland)'),
(141733, 111605, 'en', 'name', 'Chugai Pharmaceutical Co., Ltd., Chugai Pharmaceutical Co., Ltd. (Japan)'),
(141734, 111605, 'ja', 'name', 'äø­å¤–č£½č–¬ę Ŗå¼ä¼šē¤¾'),
(141735, 111606, 'en', 'name', 'Japan Fisheries Information Service Center'),
(141736, 111606, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę¼ę„­ęƒ…å ±ć‚µćƒ¼ćƒ“ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(141737, 111607, 'pt', 'name', 'Direção Regional dos Recursos Florestais'),
(141738, 111608, 'en', 'name', 'Value for Health CoLAB'),
(141739, 111609, 'en', 'name', 'Ministry of Agriculture'),
(141740, 111609, 'lv', 'name', 'Zemkopības ministrija'),
(141741, 111610, 'de', 'name', 'Max-Planck-Institut für Astronomie'),
(141742, 111610, 'en', 'name', 'Max Planck Institute for Astronomy'),
(141743, 111611, 'en', 'name', 'Sarawak Museum Department'),
(141744, 111611, 'ms', 'name', 'Jabatan Muzium Sarawak'),
(141745, 111612, 'no_lang_code', 'name', 'Affidea Portugal, Affidea Portugal (Portugal)'),
(141746, 111613, 'no_lang_code', 'name', 'Bayer (Canada)'),
(141747, 111614, 'en', 'name', 'College of Mexico'),
(141748, 111614, 'es', 'name', 'El Colegio de MƩxico'),
(141749, 111615, 'cs', 'name', 'Ú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'),
(141750, 111615, 'en', 'name', 'Czech Academy of Sciences, Institute of Czech Literature'),
(141751, 111616, 'en', 'name', 'Louis Stokes Cleveland VA Medical Center'),
(141752, 111617, 'id', 'name', 'Universitas PGRI Madiun, Universitas Persatuan Guru Republik Indonesia Madiun'),
(141753, 111618, 'en', 'name', 'Sri Sairam College of Engineering'),
(141754, 111619, 'de', 'name', 'Forschungsinstitut für Nachhaltigkeit am GFZ'),
(141755, 111619, 'en', 'name', 'Research Institute for Sustainability at GFZ'),
(141756, 111620, 'en', 'name', 'Amhara Agricultural Research Institute'),
(141757, 111621, 'en', 'name', 'East Carolina University'),
(141758, 111621, 'es', 'name', 'Universidad del Este de Carolina'),
(141759, 111622, 'pt', 'name', 'Crescer na Maior Associação de Intervenção ComunitÔria'),
(141760, 111623, 'fr', 'name', 'GƩopƓle du Pacifique Sud'),
(141761, 111624, 'en', 'name', 'Multi-Physics and Multi-scale Couplings in Geo-environmental Mechanics'),
(141762, 111624, 'fr', 'name', 'Couplage Multi-physiques et Multi-Ʃchelles en mƩcanique gƩo-environnemental'),
(141763, 111625, 'en', 'name', 'Puducherry Technological University'),
(141764, 111626, 'pt', 'name', 'Centro de Estudos Africanos'),
(141765, 111627, 'en', 'name', 'All India Institute of Medical Sciences, Nagpur'),
(141766, 111628, 'pt', 'name', 'Sociedade Portuguesa de Neurocirurgia'),
(141767, 111629, 'en', 'name', 'Pordis, Pordis (United States)'),
(141768, 111630, 'en', 'name', 'Vienna BioCenter Core Facilities'),
(141769, 111631, 'pt', 'name', 'Centro de Biotecnologia e QuĆ­mica Fina'),
(141770, 111632, 'pt', 'name', 'AquaValor Centro de Valorização e Transferência de Tecnologia da Água'),
(141771, 111633, 'en', 'name', 'Chubu Gakuin Junior College'),
(141772, 111633, 'ja', 'name', 'äø­éƒØå­¦é™¢å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(141773, 111634, 'en', 'name', 'University of Media, Arts and Communication'),
(141774, 111635, 'en', 'name', 'National University of Entre Rios'),
(141775, 111635, 'es', 'name', 'Universidad Nacional de Entre RĆ­os'),
(141776, 111636, 'en', 'name', 'Scientific Academy for Service Technology (ServTech)'),
(141777, 111637, 'pt', 'name', 'Centro Criatividade Digital'),
(141778, 111638, 'en', 'name', 'De Montfort University Kazakhstan'),
(141779, 111638, 'kk', 'name', 'Де ŠœŠ¾Š½Ń„орт ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń– ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½'),
(141780, 111639, 'en', 'name', 'The Japanese Society for Quality Control'),
(141781, 111639, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å“č³Ŗē®”ē†å­¦ä¼š'),
(141782, 111640, 'en', 'name', 'Comprehensive Research Organization for Science and Technology, Yamanashi Prefectural Government'),
(141783, 111640, 'ja', 'name', 'å±±ę¢ØēœŒē·åˆē†å·„å­¦ē ”ē©¶ę©Ÿę§‹'),
(141784, 111641, 'en', 'name', 'Public Tomioka General Hospital'),
(141785, 111641, 'ja', 'name', 'å…¬ē«‹åÆŒå²”ē·åˆē—…é™¢'),
(141786, 111642, 'en', 'name', 'State Institution «Marzieiev Institute for Public Health (IPH) of the National Academy of Medical Sciences of Ukraine»'),
(141787, 111642, 'uk', 'name', 'ДУ Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š³Ń€Š¾Š¼Š°Š“ŃŃŒŠŗŠ¾Š³Š¾ Š·Š“Š¾Ń€Š¾Š²ā€™Ń ім. Šž.М. ŠœŠ°Ń€Š·Ń”Ń”Š²Š° ŠŠŠœŠ України»'),
(141788, 111643, 'pt', 'name', 'EurolĆ­nguas'),
(141789, 111644, 'no_lang_code', 'name', 'Epicentre (South Africa)'),
(141790, 111645, 'en', 'name', 'Singapore-ETH Centre'),
(141791, 111646, 'fr', 'name', 'FƩdƩration de Recherche Spectroscopies de PhotoƩmission'),
(141792, 111647, 'en', 'name', 'KeAi Communications Co., Ltd., KeAi Communications Co., Ltd. (China)'),
(141793, 111647, 'zh', 'name', 'åŒ—äŗ¬ē§‘ēˆ±ę£®č“ę–‡åŒ–ä¼ ę’­ęœ‰é™å…¬åø'),
(141794, 111648, 'en', 'name', 'Koch Institute for Integrative Cancer Research At MIT'),
(141795, 111649, 'no_lang_code', 'name', 'Pfizer (United States)'),
(141796, 111650, 'en', 'name', 'NSF National eXtreme Ultrafast Science Facility'),
(141797, 111651, 'en', 'name', 'United States Cyberspace Capabilities Center'),
(141798, 111652, 'en', 'name', 'Institute for Regional Studies'),
(141799, 111652, 'hu', 'name', 'Magyar TudomÔnyos Akadémia KözgazdasÔg- és RegionÔlis TudomÔnyi Kutatóközpont RegionÔlis KutatÔsok Intézete'),
(141800, 111653, 'pt', 'name', 'OPEN - Associação para Oportunidades Específicas de Negócio'),
(141801, 111654, 'en', 'name', 'Revvity Gene Delivery, Revvity Gene Delivery (Germany)'),
(141802, 111655, 'en', 'name', 'Sodercan'),
(141803, 111655, 'es', 'name', 'Sociedad para el Desarrollo Regional de Cantabria'),
(141804, 111656, 'no_lang_code', 'name', 'MBA Lisboa, MBA Lisboa (Portugal), MBA Lisbon'),
(141805, 111657, 'en', 'name', 'Japan Synchrotron Radiation Research Institute'),
(141806, 111657, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé«˜č¼åŗ¦å…‰ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(141807, 111658, 'en', 'name', 'HES-SO University of Applied Sciences and Arts Western Switzerland'),
(141808, 111658, 'fr', 'name', 'HES-SO Haute Ʃcole spƩcialisƩe de Suisse occidentale'),
(141809, 111659, 'id', 'name', 'Universitas Harapan Medan'),
(141810, 111660, 'no_lang_code', 'name', 'GlaxoSmithKline (United Kingdom)'),
(141811, 111661, 'en', 'name', 'University of Oslo'),
(141812, 111661, 'fi', 'name', 'Oslon Yliopisto'),
(141813, 111661, 'no', 'name', 'Universitetet i Oslo'),
(141814, 111662, 'pt', 'name', 'Modatex Centro de Formação Profissional da Indústria Têxtil VestuÔrio Confecção e Lanifícios'),
(141815, 111663, 'fr', 'name', 'Centre de Recherches de l''Institut des Hautes Ɖtudes Internationales'),
(141816, 111664, 'en', 'name', 'National Atomic Energy Commission'),
(141817, 111664, 'es', 'name', 'Comisión Nacional de Energía Atómica'),
(141818, 111665, 'de', 'name', 'Hochschule für Musik Dresden'),
(141819, 111665, 'en', 'name', 'Dresden College of Music'),
(141820, 111666, 'es', 'name', 'Academia Nacional de Investigación en Trabajo Social, Acanits'),
(141821, 111667, 'en', 'name', 'Nippon Association of Consumer Specialists'),
(141822, 111667, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę¶ˆč²»ē”Ÿę“»ć‚¢ćƒ‰ćƒć‚¤ć‚¶ćƒ¼ćƒ»ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒˆćƒ»ē›øč«‡å“”å”ä¼š'),
(141823, 111668, 'en', 'name', 'University of Wisconsin–Madison'),
(141824, 111668, 'es', 'name', 'Universidad de Wisconsin-Madison'),
(141825, 111668, 'fr', 'name', 'UniversitƩ du Wisconsin Ơ Madison'),
(141826, 111669, 'ar', 'name', 'معهد بحوث الهندسة Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(141827, 111669, 'en', 'name', 'Agricultural Engineering Research Institute'),
(141828, 111670, 'en', 'name', 'First Institute of Oceanography'),
(141829, 111671, 'cs', 'name', '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'),
(141830, 111671, 'en', 'name', 'Czech Academy of Sciences, Economics Institute'),
(141831, 111672, 'en', 'name', 'Japan Skating Federation'),
(141832, 111672, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¹ć‚±ćƒ¼ćƒˆé€£ē›Ÿ'),
(141833, 111673, 'pt', 'name', 'Sindicato dos Enfermeiros Portugueses'),
(141834, 111674, 'en', 'name', 'University at Buffalo, State University of New York'),
(141835, 111674, 'es', 'name', 'Universidad de BĆŗfalo'),
(141836, 111674, 'fr', 'name', 'UniversitĆ© d''Ɖtat de new york Ć  buffalo'),
(141837, 111675, 'en', 'name', 'Missenyi District Council'),
(141838, 111676, 'en', 'name', 'World Health Organization - Bangladesh'),
(141839, 111677, 'en', 'name', 'Spanish Clinical Research Network'),
(141840, 111678, 'en', 'name', 'Centre for Processes, Renewable Energies and Energy Systems, Mines Paris, PSL University, Centre for processes, renewable energies and energy systems (PERSEE)'),
(141841, 111678, 'fr', 'name', 'Centre Procédés, Energies Renouvelables et Systèmes Energétiques, Mines Paris, Université PSL, Centre Procédés Energies Renouvelables et Systèmes Energétiques (PERSEE)'),
(141842, 111679, 'no_lang_code', 'name', 'CTI Clinical Trial and Consulting Services Lisbon, Clinical Trial and Consulting (Portugal)'),
(141843, 111680, 'en', 'name', 'Dentavis Avis Clinic'),
(141844, 111680, 'pt', 'name', 'Dentavis ClĆ­nica de Avis Lda'),
(141845, 111681, 'de', 'name', 'Institut für Denkmalpflege und historische Bauforschung IDB'),
(141846, 111681, 'en', 'name', 'Institute for Preservation and Construction History'),
(141847, 111682, 'pt', 'name', 'Patriarcado de Lisboa'),
(141848, 111683, 'en', 'name', 'National Association of Friendship Centres'),
(141849, 111683, 'fr', 'name', 'Association Nationale des Centres d''amitiƩ'),
(141850, 111684, 'en', 'name', 'Japan Bridge Engineering Center'),
(141851, 111684, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę©‹ę¢čŖæęŸ»ä¼š'),
(141852, 111685, 'pt', 'name', 'Centro de Física e Investigação Tecnológica'),
(141853, 111686, 'cy', 'name', 'Prifysgol Ulster'),
(141854, 111686, 'en', 'name', 'University of Ulster'),
(141855, 111687, 'pt', 'name', 'Sociedade Portuguesa de CƩlulas Estaminais e Terapia Celular'),
(141856, 111688, 'pt', 'name', 'Tapada Nacional de Mafra'),
(141857, 111689, 'en', 'name', 'Delta State University of Science and Technology Ozoro'),
(141858, 111690, 'en', 'name', 'Japan Oil Chemists'' Society'),
(141859, 111690, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę²¹åŒ–å­¦ä¼š'),
(141860, 111691, 'fr', 'name', 'Direction de la Recherche Fondamentale'),
(141861, 111692, 'en', 'name', 'Japan Association for Techno-innovation in Agriculture, Forestry and Fisheries'),
(141862, 111692, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗč¾²ęž—ę°“ē”£ćƒ»é£Ÿå“ē”£ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(141863, 111693, 'fr', 'name', 'Histoire et Sources des Mondes Antiques'),
(141864, 111694, 'en', 'name', 'Institute of Molecular Physics of the Polish Academy of Sciences'),
(141865, 111694, 'pl', 'name', 'Instytut Fizyki Molekularnej Polskiej Akademii Nauk'),
(141866, 111695, 'en', 'name', 'Canadian Coast Guard'),
(141867, 111695, 'fr', 'name', 'Garde cÓtière canadienne'),
(141868, 111696, 'en', 'name', 'Japan Industrial Association'),
(141869, 111696, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē”£ę„­å”ä¼š'),
(141870, 111697, 'en', 'name', 'City of Hope'),
(141871, 111698, 'en', 'name', 'Airbus Group Singapore Pte Ltd, Airbus Group Singapore Pte Ltd (Singapore)'),
(141872, 111699, 'en', 'name', 'Institute of Engineering Mechanics, China Earthquake Administration'),
(141873, 111699, 'zh', 'name', 'äø­å›½åœ°éœ‡å±€å·„ēØ‹åŠ›å­¦ē ”ē©¶ę‰€'),
(141874, 111700, 'en', 'name', 'The Laser Society of Japan'),
(141875, 111700, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ¬ćƒ¼ć‚¶ćƒ¼å­¦ä¼š'),
(141876, 111701, 'en', 'name', 'Michigan Medicine'),
(141877, 111701, 'fr', 'name', 'Système de santé de l''université du michigan'),
(141878, 111702, 'en', 'name', 'Nippon Electric Control Equipment Industries Association'),
(141879, 111702, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»ę°—åˆ¶å¾”ę©Ÿå™Øå·„ę„­ä¼š'),
(141880, 111703, 'no_lang_code', 'name', 'BP (United Kingdom)'),
(141881, 111704, 'pt', 'name', 'Associação Para o Desenvolvimento da Engenharia Química'),
(141882, 111705, 'en', 'name', 'Hungarian University of Sports Science'),
(141883, 111706, 'en', 'name', 'Kawanishi City Hospital'),
(141884, 111706, 'ja', 'name', 'åø‚ē«‹å·č„æē—…é™¢'),
(141885, 111707, 'en', 'name', 'Georgia Institute of Technology'),
(141886, 111707, 'es', 'name', 'Instituto de TecnologĆ­a de Georgia'),
(141887, 111708, 'en', 'name', 'Mahidol University'),
(141888, 111708, 'th', 'name', 'ดหาวณทยาคัยดหณดค'),
(141889, 111709, 'en', 'name', 'The People''s Government of Liaoning Province'),
(141890, 111709, 'zh', 'name', 'č¾½å®ēœäŗŗę°‘ę”æåŗœ'),
(141891, 111710, 'en', 'name', 'Sousen Hospital'),
(141892, 111710, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£čŖ é¦Øä¼šē·ę³‰ē—…é™¢'),
(141893, 111711, 'en', 'name', 'Skin Research Institute of Singapore'),
(141894, 111712, 'no_lang_code', 'name', 'Bonera Group, Bonera Group (Portugal)'),
(141895, 111713, 'de', 'name', 'Nationales Centrum für Tumorerkrankungen Dresden'),
(141896, 111713, 'en', 'name', 'National Center for Tumor Diseases Partner Site Dresden'),
(141897, 111714, 'pt', 'name', 'Luz SaĆŗde SA'),
(141898, 111715, 'en', 'name', 'Govt. College Mananthavady'),
(141899, 111716, 'en', 'name', 'Asahikawa Medical Association'),
(141900, 111716, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—­å·åø‚åŒ»åø«ä¼š'),
(141901, 111717, 'fr', 'name', 'PersƩe'),
(141902, 111718, 'en', 'name', 'Plant Science and Biodiversity Centre of the Slovak Academy of Sciences'),
(141903, 111718, 'sk', 'name', 'Centrum biológie rastlín a biodiverzity Slovenskej akadémie vied'),
(141904, 111719, 'pt', 'name', 'AlmaScience'),
(141905, 111720, 'en', 'name', 'Australian University, Kuwait'),
(141906, 111721, 'en', 'name', 'Urawa Medical Association'),
(141907, 111721, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ¦å’ŒåŒ»åø«ä¼š'),
(141908, 111722, 'en', 'name', 'Wake Forest University'),
(141909, 111722, 'es', 'name', 'Universidad de Wake Forest'),
(141910, 111722, 'fr', 'name', 'UniversitƩ de wake forest'),
(141911, 111723, 'en', 'name', 'ERN RITA'),
(141912, 111724, 'fi', 'name', 'Lappeenrannan-Lahden teknillinen yliopisto, Lappeenranta-Lahti University of Technology'),
(141913, 111725, 'en', 'name', 'Portuguese Clinical Research Infrastructure Network'),
(141914, 111726, 'en', 'name', 'Children''s Memorial Health Institute'),
(141915, 111727, 'en', 'name', 'Mines Paris, PSL University, Centre for computer science (CRI)'),
(141916, 111727, 'fr', 'name', 'Centre de Recherche en Informatique, Mines Paris, UniversitƩ PSL, Centre de Recherche en Informatique (CRI)'),
(141917, 111728, 'fr', 'name', 'Laboratoire de recherches IntƩgratives en Neurosciences et psychologie Cognitive'),
(141918, 111729, 'en', 'name', 'National Institute of Technology Arunachal Pradesh'),
(141919, 111729, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤…ą¤°ą„ą¤£ą¤¾ą¤šą¤² ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶)'),
(141920, 111730, 'es', 'name', 'Instituto de Investigaciones Económicas'),
(141921, 111731, 'en', 'name', 'University of Tennessee at Knoxville'),
(141922, 111732, 'es', 'name', 'Universidad Tecnológica de Mineral de la Reforma'),
(141923, 111733, 'fr', 'name', 'Gestion de l''Eau, Acteurs, Usages'),
(141924, 111734, 'en', 'name', 'Fermi National Accelerator Laboratory'),
(141925, 111735, 'pt', 'name', 'Centro de Astrofísica e Gravitação'),
(141926, 111736, 'es', 'name', 'Observatorio Nacional de Ciencia, Tecnología e Innovación'),
(141927, 111737, 'en', 'name', 'Danish Meteorological Institute'),
(141928, 111738, 'fr', 'name', 'ImViA - Imagerie et Vision Artificielle'),
(141929, 111739, 'no_lang_code', 'name', 'Medicineone SGPS (Portugal), Medicineone SGPS, S.A.'),
(141930, 111740, 'fr', 'name', 'UMR Botanique et ModĆ©lisation de l’Architecture des Plantes et des vĆ©gĆ©tations'),
(141931, 111741, 'it', 'name', 'Agenzia Regionale per la Protezione dell''Ambiente della Calabria');
INSERT INTO `ror_settings` VALUES
(141932, 111742, 'en', 'name', 'China Building Materials Academy, China Building Materials Academy Co., Ltd.'),
(141933, 111742, 'zh', 'name', 'äø­å›½å»ŗē­‘ęę–™ē§‘å­¦ē ”ē©¶'),
(141934, 111743, 'en', 'name', 'IVL - Swedish Environmental Research Institute, IVL Swedish Environmental Research Institute'),
(141935, 111743, 'sv', 'name', 'IVL Svenska Miljƶinstitutet'),
(141936, 111744, 'en', 'name', 'National Institutes for Quantum Science and Technology'),
(141937, 111744, 'ja', 'name', 'é‡å­ē§‘å­¦ęŠ€č”“ē ”ē©¶é–‹ē™ŗę©Ÿę§‹'),
(141938, 111745, 'cs', 'name', 'Laboratoř pro syntĆ©zu a měřenĆ­ materiĆ”lÅÆ'),
(141939, 111745, 'en', 'name', 'Materials Growth and Measurement Laboratory'),
(141940, 111746, 'en', 'name', 'QIB Extra Ltd, QIB Extra Ltd (United Kingdom)'),
(141941, 111747, 'pt', 'name', 'Unidade de Investigação Vidro e Cerâmica para as Artes'),
(141942, 111748, 'fr', 'name', 'LECEMO - Les Cultures de l''Europe MƩditerranƩenne Occidentale, Les Cultures de l''Europe MƩditerranƩenne Occidentale'),
(141943, 111749, 'pt', 'name', 'Instituto JurĆ­dico Portucalense'),
(141944, 111750, 'ca', 'name', 'Universitat de Barcelona'),
(141945, 111750, 'en', 'name', 'University of Barcelona'),
(141946, 111750, 'es', 'name', 'Universidad de Barcelona'),
(141947, 111750, 'eu', 'name', 'Bartzelonako Unibertsitatea'),
(141948, 111751, 'en', 'name', 'eMOTIONAL Cities'),
(141949, 111752, 'ar', 'name', 'دانؓگاه ŲŖŲ±ŲØŲŖ Ų¬Ų§Ł…'),
(141950, 111752, 'en', 'name', 'University of Torbat-e Jam'),
(141951, 111753, 'en', 'name', 'ERN EpiCARE'),
(141952, 111754, 'en', 'name', 'Naval Hospital Pensacola'),
(141953, 111755, 'id', 'name', 'Sekolah Tinggi Ilmu Keguruan Dan Ilmu Pendidikan Yayasan Pendidikan Ujung Pandang'),
(141954, 111756, 'en', 'name', 'Kinugasa Research Foundation for Textile Science'),
(141955, 111756, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč”£ē¬ ē¹Šē¶­ē ”ē©¶ę‰€'),
(141956, 111757, 'en', 'name', 'Royal Hospital for Women'),
(141957, 111758, 'en', 'name', 'Yamamoto the Third Hospital'),
(141958, 111758, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå±±ē“€ä¼šå±±ęœ¬ē¬¬äø‰ē—…é™¢'),
(141959, 111759, 'fr', 'name', 'Institut de MathƩmatiques de Bourgogne'),
(141960, 111760, 'en', 'name', 'American International University Kuwait'),
(141961, 111761, 'en', 'name', 'University of the Philippines Tacloban College'),
(141962, 111762, 'id', 'name', 'Sekretariat Jenderal Dewan Perwakilan Rakyat Republik Indonesia'),
(141963, 111763, 'en', 'name', 'U.S. National Science Foundation'),
(141964, 111764, 'en', 'name', 'Kouki Hospital'),
(141965, 111764, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå…‰č¼ä¼šå…‰č¼ē—…é™¢'),
(141966, 111765, 'en', 'name', 'Lakes Country Service Cooperative'),
(141967, 111766, 'bg', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŠµŠ½ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ по Š¼ŠµŃ‚ŠµŠ¾Ń€Š¾Š»Š¾Š³ŠøŃ Šø Ń…ŠøŠ“Ń€Š¾Š»Š¾Š³ŠøŃ'),
(141968, 111766, 'en', 'name', 'National Institute of Meteorology and Hydrology'),
(141969, 111767, 'fr', 'name', 'Ambassade de France au Portugal'),
(141970, 111768, 'en', 'name', 'Japan Industrial Promotion Association'),
(141971, 111768, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½ę°‘å·„ę„­ęŒÆčˆˆä¼š'),
(141972, 111769, 'en', 'name', 'University of Nias'),
(141973, 111769, 'id', 'name', 'Universitas Nias'),
(141974, 111770, 'cy', 'name', 'Coleg y Brenin, Llundain'),
(141975, 111770, 'en', 'name', 'King''s College London'),
(141976, 111771, 'pt', 'name', 'FeedInov'),
(141977, 111772, 'en', 'name', 'North Caucasian State Humanitarian Technological Academy'),
(141978, 111772, 'ru', 'name', 'Деверо-ŠšŠ°Š²ŠŗŠ°Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š³ŃƒŠ¼Š°Š½ŠøŃ‚Š°Ń€Š½Š°Ń Ń‚ŠµŃ…Š½Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(141979, 111773, 'en', 'name', 'The Overseas Coastal Area Development Institute of Japan'),
(141980, 111773, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›č‡Øęµ·é–‹ē™ŗē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(141981, 111774, 'no_lang_code', 'name', 'Bristol-Myers Squibb (Portugal), Bristol-Myers Squibb FarmacĆŖutica Portuguesa SA'),
(141982, 111775, 'pt', 'name', 'Centro de Investigação Tecnológica do Algarve'),
(141983, 111776, 'pt', 'name', 'Administração Regional de Saúde do Norte IP'),
(141984, 111777, 'en', 'name', 'Insurance and Care NSW'),
(141985, 111778, 'az', 'name', 'Azərbaycan Respublikası Təhsil Nazirliyinin'),
(141986, 111778, 'en', 'name', 'Ministry of Education of Azerbaijan Republic'),
(141987, 111779, 'en', 'name', 'Japan International Cooperation Agency'),
(141988, 111779, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½éš›å”åŠ›ę©Ÿę§‹'),
(141989, 111780, 'en', 'name', 'Bryansk State University'),
(141990, 111780, 'ru', 'name', 'Š‘Ń€ŃŠ½ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени акаГемика И. Š“. ŠŸŠµŃ‚Ń€Š¾Š²ŃŠŗŠ¾Š³Š¾'),
(141991, 111781, 'en', 'name', 'National University of Patagonia San Juan Bosco'),
(141992, 111781, 'es', 'name', 'Universidad Nacional de la Patagonia San Juan Bosco'),
(141993, 111782, 'en', 'name', 'Amsterdam Institute for Addiction Research'),
(141994, 111783, 'pt', 'name', 'Centro de Investigação em Serviço Social e Intervenção Social'),
(141995, 111784, 'en', 'name', 'Drugs for Neglected Diseases Initiative'),
(141996, 111785, 'en', 'name', 'Yamanashi Prefectural Police'),
(141997, 111785, 'ja', 'name', '山梨県警察'),
(141998, 111786, 'en', 'name', 'Nephro Care India Limited, Nephro Care India Limited (India)'),
(141999, 111787, 'pt', 'name', 'Universidade de Coimbra Arquivo'),
(142000, 111788, 'en', 'name', 'Christ University'),
(142001, 111788, 'kn', 'name', 'ą²•ą³ą²°ą³ˆą²øą³ą²Ÿą³ ą²Æą³‚ą²Øą²æą²µą²°ą³ą²øą²æą²Ÿą²æ'),
(142002, 111789, 'en', 'name', 'St. Elizabeths Hospital'),
(142003, 111790, 'pt', 'name', 'Conservatório de Música e Artes do Centro'),
(142004, 111791, 'en', 'name', 'The Japanese Society of Psychiatry and Neurology'),
(142005, 111791, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē²¾ē„žē„žēµŒå­¦ä¼š'),
(142006, 111792, 'en', 'name', 'Yaroslavl State Technical University'),
(142007, 111792, 'ru', 'name', 'Ярославский Š³Š¾ŃŃƒŠ“арственный технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(142008, 111793, 'fr', 'name', 'Maison des Sciences de l''Homme'),
(142009, 111794, 'en', 'name', 'Wildlife Research and Training Institute'),
(142010, 111795, 'en', 'name', 'Southern Illinois University School of Medicine'),
(142011, 111796, 'no_lang_code', 'name', 'Laboratory of Food and Pharmaceutical Biology, Laboratório de Biologia Alimentar e Farmacêutica, Laboratório de Biologia Alimentar e Farmacêutica (Portugal)'),
(142012, 111797, 'en', 'name', 'United Nations University Operating Unit on Policy-Driven Electronic Governance'),
(142013, 111798, 'fr', 'name', 'MƩtƩo-France'),
(142014, 111799, 'de', 'name', 'Vallen Systeme GmbH'),
(142015, 111799, 'no_lang_code', 'name', 'Vallen Systeme (Germany)'),
(142016, 111800, 'ja', 'name', 'äø‰č±ć‚°ćƒ«ćƒ¼ćƒ—'),
(142017, 111800, 'no_lang_code', 'name', 'Mitsubishi Group (Japan)'),
(142018, 111801, 'en', 'name', 'Hatch (Australia)'),
(142019, 111802, 'en', 'name', 'National Centre for Coastal Research'),
(142020, 111803, 'de', 'name', 'Johannes Gutenberg-UniversitƤt Mainz'),
(142021, 111803, 'en', 'name', 'Johannes Gutenberg University Mainz'),
(142022, 111804, 'de', 'name', 'Institut für Terrestrische Oekosysteme'),
(142023, 111804, 'en', 'name', 'Institute of Terrestrial Ecosystems'),
(142024, 111805, 'en', 'name', 'United States Northern Command'),
(142025, 111806, 'bn', 'name', 'জামালপুর ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(142026, 111806, 'en', 'name', 'Jamalpur Science and Technology University'),
(142027, 111807, 'en', 'name', 'Socioeconomic Institute for Advanced Studies, Socioeconomic Institute for Advanced Studies (Rwanda)'),
(142028, 111808, 'no_lang_code', 'name', 'Perceive3D (Portugal), Perceive3D, S.A.'),
(142029, 111809, 'pt', 'name', 'Sociedade Portuguesa de Ecologia'),
(142030, 111810, 'en', 'name', 'Testament Theological Seminary'),
(142031, 111811, 'cs', 'name', 'NƔrodnƭ infrastruktura chemickƩ biologie'),
(142032, 111811, 'en', 'name', 'National Infrastructure for Chemical Biology'),
(142033, 111812, 'pt', 'name', 'Centro de Tecnologia e Inovação Industrial'),
(142034, 111813, 'id', 'name', 'Politeknik Negeri Lhokseumawe'),
(142035, 111814, 'en', 'name', 'Korea Racing Authority'),
(142036, 111815, 'en', 'name', 'Japanese Association for Laboratory Animal Science'),
(142037, 111815, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å®ŸéØ“å‹•ē‰©å­¦ä¼š'),
(142038, 111816, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ لل؄تصالات ŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ŲŖ ال؄علام ŁˆŲ§Ł„Ų„ŲŖŲµŲ§Ł„'),
(142039, 111816, 'en', 'name', 'Higher National School of Telecommunications and Information and Communication Technologies Abdelhafid Boussouf'),
(142040, 111816, 'fr', 'name', 'Ecole Nationale SupĆ©rieur des TĆ©lĆ©communications et des Technologies de l’Information et de la Communication, Abdelhafid Boussouf'),
(142041, 111817, 'ca', 'name', 'Institut de Recerca i Innovació Educativa'),
(142042, 111818, 'en', 'name', 'Space Delta 8'),
(142043, 111819, 'pt', 'name', 'AgĆŖncia DNA Cascais Cascais um concelho empreendedor'),
(142044, 111820, 'ca', 'name', 'EURECAT Centre Tecnològic de Catalunya, Fundació Eurecat'),
(142045, 111821, 'es', 'name', 'Centre de Recerca en Economia Internacional'),
(142046, 111822, 'en', 'name', 'Japan Civil engineering Consultants Association'),
(142047, 111822, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå»ŗčØ­ć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒ„å”ä¼š'),
(142048, 111823, 'en', 'name', 'Sydney Microscopy & Microanalysis'),
(142049, 111824, 'en', 'name', 'Vinh University'),
(142050, 111824, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c Vinh'),
(142051, 111825, 'en', 'name', 'Kagoshima Prefectural Police'),
(142052, 111825, 'ja', 'name', 'é¹æå…å³¶ēœŒč­¦åÆŸ'),
(142053, 111826, 'no_lang_code', 'name', 'Dryas, Dryas (Portugal)'),
(142054, 111827, 'en', 'name', 'Ministry of Public Safety and Security'),
(142055, 111828, 'en', 'name', 'Vertical Farm Institute'),
(142056, 111829, 'de', 'name', 'Institut für Lebensmittelwissenschaften, Ernährung und Gesundheit'),
(142057, 111829, 'en', 'name', 'Institute of Food, Nutrition, and Health'),
(142058, 111830, 'en', 'name', 'Tochigi International Association'),
(142059, 111830, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę ƒęœØēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(142060, 111831, 'no_lang_code', 'name', 'Mundiconvenius, Mundiconvenius (Portugal)'),
(142061, 111832, 'en', 'name', 'Autonomous Community of the Region of Murcia'),
(142062, 111832, 'es', 'name', 'Comunidad Autónoma de la Región de Murcia'),
(142063, 111833, 'en', 'name', 'Charles University'),
(142064, 111833, 'sk', 'name', 'Univerzita Karlova'),
(142065, 111834, 'pt', 'name', 'Associação Brasileira de Estudos do Trabalho'),
(142066, 111835, 'en', 'name', 'Sylhet MAG Osmani Medical College Hospital'),
(142067, 111836, 'en', 'name', 'Baikal State University'),
(142068, 111836, 'mn', 'name', 'Байгалийн Улсын Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŠøŠ¹Š³'),
(142069, 111836, 'ru', 'name', 'Š‘Š°Š¹ŠŗŠ°Š»ŃŒŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(142070, 111836, 'zh', 'name', 'č“åŠ å°”å›½ē«‹å¤§å­¦'),
(142071, 111837, 'en', 'name', 'Ohara General Hospital'),
(142072, 111837, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå¤§åŽŸē¶œåˆē—…é™¢'),
(142073, 111838, 'en', 'name', 'Australian Centre for Excellence in Antarctic Science'),
(142074, 111839, 'en', 'name', 'Space Rapid Capabilities Office'),
(142075, 111840, 'de', 'name', 'Wiener Forum für Demokratie und Menschenrechte'),
(142076, 111841, 'cy', 'name', 'Prifysgol Leeds'),
(142077, 111841, 'en', 'name', 'University of Leeds'),
(142078, 111842, 'pt', 'name', 'Centro de Documentação Europeia'),
(142079, 111843, 'en', 'name', 'MARUGAME Medical Center'),
(142080, 111843, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£é‡ä»ä¼šć¾ć‚‹ćŒć‚åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(142081, 111844, 'en', 'name', 'Izmir KĆ¢tip Ƈelebi University'),
(142082, 111844, 'tr', 'name', 'İzmir KĆ¢tip Ƈelebi Üniversitesi'),
(142083, 111845, 'en', 'name', 'Gulf of America Coastal Ocean Observing System'),
(142084, 111846, 'pt', 'name', 'Centro de ReferĆŖncia da SaĆŗde da Mulher - Hospital da Mulher SĆ£o Paulo'),
(142085, 111847, 'fr', 'name', 'Centre Innovation et Droit'),
(142086, 111848, 'en', 'name', 'Yokohama Sports Association'),
(142087, 111848, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęØŖęµœåø‚ä½“č‚²å”ä¼š'),
(142088, 111849, 'en', 'name', 'National Research Council - Institute of Methodologies for Environmental Analysis'),
(142089, 111849, 'it', 'name', 'Consiglio Nazionale delle Ricerche - Istituto di Metodologie per l’Analisi Ambientale'),
(142090, 111850, 'no_lang_code', 'name', 'Joane Family Health Unit, Unidade de SaĆŗde Familiar Joane, Unidade de SaĆŗde Familiar Joane (Portugal)'),
(142091, 111851, 'en', 'name', 'Stichting Innovations in Graph Theory'),
(142092, 111852, 'cs', 'name', 'ACTRIS – ĆŗÄast ČeskĆ© republiky'),
(142093, 111852, 'en', 'name', 'ACTRIS Czech Republic'),
(142094, 111853, 'fr', 'name', 'Physiopathologie et EpidƩmiologie CƩrƩbro-Cardiovasculaires'),
(142095, 111854, 'no_lang_code', 'name', 'Mundipharma (United Kingdom)'),
(142096, 111855, 'en', 'name', 'White Rose University Consortium'),
(142097, 111856, 'de', 'name', 'Zentrum für kriminologische Forschung Sachsen, Zentrum für kriminologische Forschung Sachsen e.V.'),
(142098, 111856, 'en', 'name', 'Center for Criminological Research Saxony'),
(142099, 111857, 'en', 'name', 'Food4Sustainability CoLAB'),
(142100, 111858, 'pt', 'name', 'Agência para o Investimento e Comércio Externo de Portugal EPE'),
(142101, 111859, 'en', 'name', 'Sant''Anna School of Advanced Studies'),
(142102, 111859, 'fr', 'name', 'Ɖcole supĆ©rieure sainte-anne de pise'),
(142103, 111859, 'it', 'name', 'Scuola Superiore Sant''Anna'),
(142104, 111860, 'en', 'name', 'Environment, City, Society'),
(142105, 111860, 'fr', 'name', 'Environnement, ville, sociƩtƩ'),
(142106, 111861, 'en', 'name', 'Praxis Business School'),
(142107, 111862, 'en', 'name', 'Montserrat National Trust'),
(142108, 111863, 'en', 'name', 'Japanese Organization for International Cooperation in Family Planning'),
(142109, 111863, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚øćƒ§ć‚¤ć‚»ćƒ•'),
(142110, 111864, 'en', 'name', 'Walter Reed National Military Medical Center'),
(142111, 111864, 'es', 'name', 'Centro MƩdico Naval Nacional'),
(142112, 111865, 'en', 'name', 'Lajes Airman and Family Readiness Center'),
(142113, 111866, 'en', 'name', 'B.E.S.T Innovation University'),
(142114, 111867, 'de', 'name', 'Institut für Verkehrsplanung und Transportsysteme'),
(142115, 111867, 'en', 'name', 'Institute for Transport Planning and Systems'),
(142116, 111868, 'de', 'name', 'Institut für Theoretische Physik'),
(142117, 111868, 'en', 'name', 'Institute for Theoretical Physics'),
(142118, 111869, 'de', 'name', 'Friedrich-Loeffler-Institut'),
(142119, 111870, 'en', 'name', 'Margaret Lawrence University'),
(142120, 111871, 'pt', 'name', 'Autoridade para as CondiƧƵes do Trabalho'),
(142121, 111872, 'en', 'name', 'Nihon Sumo Kyokai'),
(142122, 111872, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē›øę’²å”ä¼š'),
(142123, 111873, 'en', 'name', 'Wilford Hall Ambulatory Surgical Center'),
(142124, 111874, 'fr', 'name', 'Le Centre International de Recherches et Ɖtudes Transdisciplinaires'),
(142125, 111875, 'en', 'name', 'The Atlantis Project'),
(142126, 111876, 'de', 'name', 'OƖ Landes-Kultur GmbH, OƖ Landes-Kultur GmbH (Austria)'),
(142127, 111877, 'de', 'name', 'UniversitƤtsmedizin Greifswald'),
(142128, 111877, 'en', 'name', 'Greifswald University Hospital, Greifswald University Medicine, University Medicine of Greifswald'),
(142129, 111878, 'fr', 'name', 'Centre d''Analyse et de Recherche Interdisciplinaires sur les MƩdias'),
(142130, 111879, 'es', 'name', 'Sociedad Micológica de Gran Canaria'),
(142131, 111880, 'fr', 'name', 'Evaluation et recherche en services et politiques en santƩ pour les populations vulnƩrables'),
(142132, 111881, 'en', 'name', 'Japan Industrial Furnace Manufacturers Association'),
(142133, 111881, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·„ę„­ē‚‰å”ä¼š'),
(142134, 111882, 'pt', 'name', 'Fundação AstraZeneca'),
(142135, 111883, 'pt', 'name', 'Centro de Investigação em Saúde Pública'),
(142136, 111884, 'fr', 'name', 'Linguistique et lexicographie latines et romanes'),
(142137, 111885, 'fr', 'name', 'Institut Regional du Cancer de Montpellier'),
(142138, 111886, 'pt', 'name', 'Instituto de Direito Económico Financeiro e Fiscal'),
(142139, 111887, 'en', 'name', 'Kamibayashi Memorial Hospital'),
(142140, 111887, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗęå¶ŗä¼šäøŠęž—čØ˜åæµē—…é™¢'),
(142141, 111888, 'en', 'name', 'Advanced Technological Center'),
(142142, 111888, 'no_lang_code', 'name', 'Fundació CTM Centre Tecnològic'),
(142143, 111889, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الؓام الخاصة'),
(142144, 111889, 'en', 'name', 'Al-Sham Private University'),
(142145, 111890, 'es', 'name', 'Universidad Intercultural del Estado de Tabasco'),
(142146, 111891, 'ar', 'name', 'Ł…Ų±ŁƒŲ² البحث في Ų§Ł„ŲØŁŠŲ¦Ų©'),
(142147, 111891, 'en', 'name', 'Environmental Research Center'),
(142148, 111891, 'fr', 'name', 'Centre de Recherche en Environnement'),
(142149, 111892, 'de', 'name', 'Institut Mathematische, Naturwissenschaftliche und Technische Bildung'),
(142150, 111892, 'en', 'name', 'Institute of Mathematical, Scientific and Technological Education'),
(142151, 111893, 'pt', 'name', 'Federação Portuguesa de Futebol'),
(142152, 111894, 'en', 'name', 'CSIRO Oceans and Atmosphere'),
(142153, 111895, 'pt', 'name', 'Centro CiĆŖncia Viva de Vila do Conde'),
(142154, 111896, 'fr', 'name', 'Centre Max Weber'),
(142155, 111897, 'en', 'name', 'Japan Association for Women''s Education'),
(142156, 111897, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å„³ę€§å­¦ēæ’č²”å›£'),
(142157, 111898, 'en', 'name', 'ISSN International Centre'),
(142158, 111898, 'fr', 'name', 'Centre international de l''ISSN'),
(142159, 111899, 'cy', 'name', 'Queen Mary, Prifysgol Llundain'),
(142160, 111899, 'en', 'name', 'Queen Mary University of London'),
(142161, 111900, 'sq', 'name', 'Tirana Business University'),
(142162, 111901, 'en', 'name', 'Alliance to Feed the Earth in Disasters'),
(142163, 111902, 'fr', 'name', 'Haute Ʃcole de travail social et de la santƩ Lausanne - HETSL, HES-SO'),
(142164, 111903, 'en', 'name', 'Naval Hospital Bremerton'),
(142165, 111904, 'pt', 'name', 'Cooperativa para a Educação e Reabilitação de Cidadãos Inadaptados de Vila Nova de Gaia'),
(142166, 111905, 'no_lang_code', 'name', 'Frotcom International (Portugal)'),
(142167, 111906, 'de', 'name', 'ERN LUNG'),
(142168, 111907, 'fr', 'name', 'Centre Hospitalier Universitaire de Caen Normandie'),
(142169, 111908, 'en', 'name', 'Ɩstersunds Hospital'),
(142170, 111908, 'sv', 'name', 'Ɩstersunds sjukhus'),
(142171, 111909, 'no_lang_code', 'name', 'Atelier de Lisboa, Atelier de Lisboa (Portugal), Atelier of Lisbon'),
(142172, 111910, 'en', 'name', 'National Health Innovation Centre'),
(142173, 111911, 'no_lang_code', 'name', 'Sistemas e Informação GeogrÔfica, S.A. (Portugal)'),
(142174, 111912, 'en', 'name', 'Indian Institute of Technology Delhi Abu Dhabi'),
(142175, 111913, 'en', 'name', 'Federal College of Education (Technical) Asaba'),
(142176, 111914, 'cy', 'name', 'Prifysgol Manceinion'),
(142177, 111914, 'en', 'name', 'University of Manchester'),
(142178, 111915, 'en', 'name', 'Emmanuel Alayande University of Education, Oyo'),
(142179, 111916, 'en', 'name', 'Wildlife Trust of India'),
(142180, 111917, 'cs', 'name', 'Ú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'),
(142181, 111917, 'en', 'name', 'Czech Academy of Sciences, Institute of Scientific Instruments'),
(142182, 111918, 'en', 'name', 'Kyorin University Suginami Hospital'),
(142183, 111918, 'ja', 'name', 'ęęž—å¤§å­¦åŒ»å­¦éƒØä»˜å±žę‰äø¦ē—…é™¢'),
(142184, 111919, 'ja', 'name', 'ē¬¬äø€äø‰å…±ę Ŗå¼ä¼šē¤¾'),
(142185, 111919, 'no_lang_code', 'name', 'Daiichi-Sankyo (Japan)'),
(142186, 111920, 'id', 'name', 'Institut Teknologi Calvin'),
(142187, 111921, 'no_lang_code', 'name', 'NaMLab (Germany)'),
(142188, 111922, 'de', 'name', 'Helmholtz-Gemeinschaft Deutscher Forschungszentren'),
(142189, 111922, 'en', 'name', 'Helmholtz Association of German Research Centres'),
(142190, 111923, 'pt', 'name', 'Sociedade Portuguesa de Entomologia'),
(142191, 111924, 'en', 'name', 'JFE Engineering Pte Ltd, JFE Engineering Pte Ltd (Singapore)'),
(142192, 111925, 'en', 'name', 'Bishkek International Medical Institute'),
(142193, 111925, 'kg', 'name', 'Š‘ŠøŃˆŠŗŠµŠŗ ŃŠ» аралык меГициналык ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ'),
(142194, 111925, 'ru', 'name', 'Š‘ŠøŃˆŠŗŠµŠŗŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠœŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(142195, 111926, 'pt', 'name', 'Sociedade Portuguesa de Oftalmologia'),
(142196, 111927, 'en', 'name', 'The Horological Institute of Japan'),
(142197, 111927, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę™‚čØˆå­¦ä¼š'),
(142198, 111928, 'en', 'name', 'Centre for Origin and Prevalence of Life'),
(142199, 111929, 'pt', 'name', 'Arquitectura Investigação e Desenvolvimento'),
(142200, 111930, 'de', 'name', 'Austrian Biolmaging - Verein zur innovativen, korrelativen, multimodalen Bildgebung in Ɩsterreich'),
(142201, 111931, 'pt', 'name', 'Laboratório de Aceleradores e Difracção de Raios-X'),
(142202, 111932, 'en', 'name', 'Cancer Center Amsterdam'),
(142203, 111933, 'cs', 'name', 'ČeskÔ nÔrodní infrastruktura pro biologickÔ data'),
(142204, 111933, 'en', 'name', 'Czech National Infrastructure for Biological Data'),
(142205, 111934, 'cs', 'name', 'Archeologický Ćŗstav AV ČR, Praha, Archeologický Ćŗstav AV ČR, Praha, v. v. i., Archeologický Ćŗstav AV ČR, Praha, veřejnĆ” výzkumnĆ” instituce'),
(142206, 111934, 'en', 'name', 'Czech Academy of Sciences, Institute of Archaeology, Prague'),
(142207, 111935, 'es', 'name', 'Centro Interdisciplinario de Estudios Complejos'),
(142208, 111936, 'es', 'name', 'Instituto de GeografĆ­a, Historia y Ciencias Sociales'),
(142209, 111937, 'en', 'name', 'Maj Institute of Pharmacology'),
(142210, 111937, 'pl', 'name', 'Instytut Farmakologii im. Jerzego Maja Polskiej Akademii Nauk'),
(142211, 111938, 'en', 'name', 'Merck & Co., Inc., Rahway, NJ, USA, Merck & Co., Inc., Rahway, NJ, USA (United States)'),
(142212, 111939, 'en', 'name', 'Acknowledge Education'),
(142213, 111940, 'en', 'name', 'Aichi Medical Foundation of Diagnostic Technology'),
(142214, 111940, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę„›ēŸ„čØŗę–­ę²»ē™‚ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(142215, 111941, 'en', 'name', 'Chrono-Environment Laboratory'),
(142216, 111941, 'fr', 'name', 'Laboratoire Chrono-Environnement'),
(142217, 111942, 'pt', 'name', 'Sociedade Portuguesa de Radiologia e Medicina Nuclear'),
(142218, 111943, 'pt', 'name', 'Centro de Investigacao em Recursos Naturais'),
(142219, 111944, 'de', 'name', 'Institut für Technische Informatik und Kommunikationsnetze'),
(142220, 111944, 'en', 'name', 'Computer Engineering and Networks Laboratory'),
(142221, 111945, 'no_lang_code', 'name', 'Tetra Pak (Sweden)'),
(142222, 111946, 'en', 'name', 'Raoul Wallenberg Institute of Human Rights and Humanitarian Law'),
(142223, 111947, 'pt', 'name', 'Centro de Ciências e Tecnologias da Engenharia Mecânica e Aeroespacial'),
(142224, 111948, 'en', 'name', 'Oceans Institute'),
(142225, 111949, 'en', 'name', 'Celligenics Pte. Ltd., Celligenics Pte. Ltd. (Singapore)'),
(142226, 111950, 'es', 'name', 'Centro de Investigaciones en GeografĆ­a Ambiental'),
(142227, 111951, 'en', 'name', 'National Institute for Research and Development in Informatics - ICI Bucharest'),
(142228, 111951, 'ro', 'name', 'Institutul Național de Cercetare - Dezvoltare Ć®n Informatică ICI București'),
(142229, 111952, 'ca', 'name', 'Universitat de ParĆ­s Sud'),
(142230, 111952, 'en', 'name', 'University of Paris-Sud'),
(142231, 111952, 'fr', 'name', 'UniversitƩ Paris-Sud'),
(142232, 111953, 'cs', 'name', 'Knihovna AV ČR'),
(142233, 111953, 'en', 'name', 'Czech Academy of Sciences, Library'),
(142234, 111954, 'en', 'name', 'Chulalongkorn University'),
(142235, 111954, 'th', 'name', 'ąøˆąøøąø¬ąø²ąø„ąø‡ąøąø£ąø“ą¹Œąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢'),
(142236, 111955, 'en', 'name', 'Shodh Sagar, Shodh Sagar (India)'),
(142237, 111956, 'de', 'name', 'Institut für Kommunikationstechnik'),
(142238, 111956, 'en', 'name', 'Communication Technology Laboratory'),
(142239, 111957, 'en', 'name', 'United States Air Force Special Operations Command'),
(142240, 111958, 'no_lang_code', 'name', 'Cromeleque, Cromeleque (Portugal)'),
(142241, 111959, 'en', 'name', 'Ochsner Medical Center'),
(142242, 111960, 'fr', 'name', 'Centre de REcherche En Gestion des Organisations'),
(142243, 111961, 'en', 'name', 'University of Oregon'),
(142244, 111961, 'es', 'name', 'Universidad de Oregón'),
(142245, 111962, 'fr', 'name', 'Clinique TrƩnel'),
(142246, 111963, 'en', 'name', 'Sakakibara Onsen hospital'),
(142247, 111963, 'ja', 'name', 'ē‰¹å®šåŒ»ē™‚ę³•äŗŗęš²ē“”ä¼šę¦ŠåŽŸęø©ę³‰ē—…é™¢'),
(142248, 111964, 'en', 'name', 'My Duc Hospital'),
(142249, 111964, 'vi', 'name', 'Bệnh Viện Mỹ Đức'),
(142250, 111965, 'pt', 'name', 'Escola Superior Aveiro Norte'),
(142251, 111966, 'en', 'name', 'Claude Bernard University Lyon 1'),
(142252, 111966, 'fr', 'name', 'UniversitƩ Claude Bernard Lyon 1'),
(142253, 111967, 'en', 'name', 'Japan Federation Of Printing Industries'),
(142254, 111967, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å°åˆ·ē”£ę„­é€£åˆä¼š'),
(142255, 111968, 'en', 'name', 'Wellcome Trust'),
(142256, 111969, 'en', 'name', 'The Ecclesiastical History Society'),
(142257, 111970, 'en', 'name', 'LMU Open Science Center'),
(142258, 111971, 'pt', 'name', 'Sociedade Portuguesa de Neuropsicologia'),
(142259, 111972, 'en', 'name', 'Kagawa Prefecture Livestock Experiment Station'),
(142260, 111972, 'ja', 'name', 'é¦™å·ēœŒē•œē”£č©¦éØ“å “'),
(142261, 111973, 'en', 'name', 'Chiba Aiyukai Kinen Hospital'),
(142262, 111973, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę„›å‹ä¼šåƒč‘‰ę„›å‹ä¼ščØ˜åæµē—…é™¢'),
(142263, 111974, 'pt', 'name', 'Sociedade Portuguesa de Ortopedia e Traumatologia'),
(142264, 111975, 'no_lang_code', 'name', 'CytoSorbents (Germany)'),
(142265, 111976, 'pt', 'name', 'Sociedade Portuguesa de Psiquiatria e Psicologia da JustiƧa'),
(142266, 111977, 'en', 'name', 'Okinawa Industrial Federation'),
(142267, 111977, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę²–ēø„ēœŒå·„ę„­é€£åˆä¼š'),
(142268, 111978, 'en', 'name', 'All India Institute of Medical Sciences Bhubaneswar'),
(142269, 111979, 'fr', 'name', 'ERN EYE'),
(142270, 111980, 'en', 'name', 'Nitte University'),
(142271, 111981, 'en', 'name', 'High Point University'),
(142272, 111981, 'es', 'name', 'Universidad de High Point'),
(142273, 111982, 'en', 'name', 'Hokkaido International Foundation'),
(142274, 111982, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—ęµ·é“å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(142275, 111983, 'no_lang_code', 'name', 'Ningxia Seismological Bureau'),
(142276, 111983, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗåœ°éœ‡å±€'),
(142277, 111984, 'en', 'name', 'Austral University of Chile'),
(142278, 111984, 'es', 'name', 'Universidad Austral de Chile'),
(142279, 111985, 'no_lang_code', 'name', 'FairJourney Biologics (Portugal), FairJourney Biologics, S.A.'),
(142280, 111986, 'en', 'name', 'NHK Service Center, Inc.'),
(142281, 111986, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗNHKć‚µćƒ¼ćƒ“ć‚¹ć‚»ćƒ³ć‚æćƒ¼'),
(142282, 111987, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ł…Ł‡Ł†ŲÆŲ³ŁŠŁ† ŲØŲŖŁˆŁ†Ų³'),
(142283, 111987, 'fr', 'name', 'ENSIT, Ɖcole nationale supĆ©rieure d''ingĆ©nieurs de Tunis'),
(142284, 111988, 'en', 'name', 'CoLAB ForestWISE'),
(142285, 111989, 'en', 'name', 'Research Association of High-Throughput Design and Development for Advanced Functional Materials'),
(142286, 111989, 'ja', 'name', 'å…ˆē«Æē“ ęé«˜é€Ÿé–‹ē™ŗęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(142287, 111990, 'en', 'name', 'Nile University of Science and Technology'),
(142288, 111991, 'cs', 'name', 'Ú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'),
(142289, 111991, 'en', 'name', 'Czech Academy of Sciences, Institute of Chemical Process Fundamentals'),
(142290, 111992, 'de', 'name', 'Gesellschaft für Arbeits-, Wirtschafts- und Organisationspsychologische Forschung e.V.'),
(142291, 111993, 'en', 'name', 'Nagasaki City Public Health and Environmental Testing Center'),
(142292, 111993, 'ja', 'name', 'é•·å“Žåø‚äæå„ē’°å¢ƒč©¦éØ“ę‰€'),
(142293, 111994, 'en', 'name', 'North Sea Transition Authority'),
(142294, 111995, 'en', 'name', 'Alexandra Health Pte Ltd'),
(142295, 111996, 'en', 'name', 'Academy of Applied Studies Belgrade'),
(142296, 111996, 'sr', 'name', 'Akademija strukovnih studija Beograd'),
(142297, 111997, 'en', 'name', 'Japan Aircraft Development Corporation'),
(142298, 111997, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬čˆŖē©ŗę©Ÿé–‹ē™ŗå”ä¼š'),
(142299, 111998, 'id', 'name', 'Universitas Islam Negeri Mahmud Yunus Batusangkar'),
(142300, 111999, 'en', 'name', 'READ Global'),
(142301, 112000, 'en', 'name', 'Institute for Medicinal Plants Research "dr Josif Pančić"'),
(142302, 112000, 'sr', 'name', 'Institut za proučavanje lekovitog bilja "Dr Josif Pančić" u Beogradu'),
(142303, 112001, 'en', 'name', 'Shanghai Polytechnic University, Shanghai Second Polytechnic University'),
(142304, 112001, 'zh', 'name', '上海第二巄业大学'),
(142305, 112002, 'it', 'name', 'Agenzia Provinciale per la Protezione dell''ambiente'),
(142306, 112003, 'en', 'name', 'Southern Centre For Inequality Studies'),
(142307, 112004, 'en', 'name', 'OpenSky Network'),
(142308, 112005, 'en', 'name', 'International Institute of Management and Business'),
(142309, 112005, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Šø ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š°'),
(142310, 112006, 'fr', 'name', 'UnitƩ d''Appui et de Recherche OSUPS'),
(142311, 112007, 'fr', 'name', 'Laboratoire Interdisciplinaire Carnot de Bourgogne'),
(142312, 112008, 'en', 'name', 'University of South Carolina'),
(142313, 112008, 'es', 'name', 'Universidad de Carolina del Sur'),
(142314, 112008, 'fr', 'name', 'UniversitƩ de caroline du sud'),
(142315, 112009, 'no_lang_code', 'name', 'Archeofactu, Archeofactu (Portugal)'),
(142316, 112010, 'en', 'name', 'East Metropolitan Health Service'),
(142317, 112011, 'no_lang_code', 'name', 'Mercurius Health (Portugal), Mercurius Health, S.A.'),
(142318, 112012, 'fr', 'name', 'DigiHub (Canada)'),
(142319, 112013, 'en', 'name', 'Center of Iizuka Research and Development'),
(142320, 112013, 'ja', 'name', 'ē¦å²”ēœŒē«‹é£Æå”šē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(142321, 112014, 'en', 'name', 'BLDE (Deemed to be University)'),
(142322, 112015, 'en', 'name', 'Monash University'),
(142323, 112016, 'no_lang_code', 'name', 'Congento - Consortium for Genetically Tractable Organisms'),
(142324, 112017, 'en', 'name', 'Center for Complex Particle Systems'),
(142325, 112018, 'no_lang_code', 'name', 'Zimmer Biomet (United States)'),
(142326, 112019, 'pt', 'name', 'Sociedade Portuguesa de BioquĆ­mica'),
(142327, 112020, 'en', 'name', 'Industrial Science Research Promotion Foundation'),
(142328, 112020, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē”Ÿē”£ē§‘å­¦ē ”ē©¶å„ØåŠ±ä¼š'),
(142329, 112021, 'pt', 'name', 'Culturgest - Fundação Caixa Geral de Depósitos, Culturgest'),
(142330, 112022, 'en', 'name', 'Institute of Vocational Education of the National Academy of Educational Sciences of Ukraine'),
(142331, 112022, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ професійної освіти ŠŠŠŸŠ України'),
(142332, 112023, 'cs', 'name', 'Archeologický ústav AV ČR, Brno, v. v. i.'),
(142333, 112023, 'en', 'name', 'Czech Academy of Sciences, Institute of Archaeology, Brno'),
(142334, 112024, 'en', 'name', 'English Language Centre'),
(142335, 112025, 'de', 'name', 'Zentrum Wissenschaftsberatung'),
(142336, 112025, 'en', 'name', 'Centre for Academic Consulting'),
(142337, 112026, 'en', 'name', 'The Japan Research Institute for Local Government'),
(142338, 112026, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåœ°ę–¹č‡Ŗę²»ē·åˆē ”ē©¶ę‰€'),
(142339, 112027, 'en', 'name', 'Laboratory for Advanced Computing'),
(142340, 112028, 'en', 'name', 'Suzhou University'),
(142341, 112028, 'zh', 'name', 'å®æå·žå­¦é™¢'),
(142342, 112029, 'fr', 'name', 'Laboratoire d''Ʃconomie de Dijon'),
(142343, 112030, 'no_lang_code', 'name', 'Tonic App, Tonic App (Portugal)'),
(142344, 112031, 'en', 'name', 'National Science and Technology Commission'),
(142345, 112032, 'id', 'name', 'Sekolah Tingi Pertanian Kutai Timur'),
(142346, 112033, 'en', 'name', 'Swami Vivekananda University'),
(142347, 112034, 'en', 'name', 'Australian Urban Research Infrastructure Network'),
(142348, 112035, 'es', 'name', 'Centro de Investigación Flamenco Telethusa'),
(142349, 112036, 'en', 'name', 'Misono Gakuen Junior College'),
(142350, 112036, 'ja', 'name', 'č–åœ’å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(142351, 112037, 'en', 'name', 'A*STAR Research Entities'),
(142352, 112038, 'no_lang_code', 'name', 'FC PaƧos de Ferreira, FC PaƧos de Ferreira (Portugal)'),
(142353, 112039, 'en', 'name', 'EnGreen, EnGreen (Italy)'),
(142354, 112040, 'en', 'name', 'Kuroshio Biology Research Institute'),
(142355, 112040, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé»’ę½®ē”Ÿē‰©ē ”ē©¶ę‰€'),
(142356, 112041, 'en', 'name', 'Society of Economic Geologists'),
(142357, 112042, 'en', 'name', 'SEEK Education, SEEK Education, Inc. (United States)'),
(142358, 112043, 'en', 'name', 'Kumamoto University'),
(142359, 112043, 'ja', 'name', 'ē†Šęœ¬å¤§å­¦'),
(142360, 112044, 'en', 'name', 'National Institute of Fisheries Science'),
(142361, 112044, 'ko', 'name', 'źµ­ė¦½ģˆ˜ģ‚°ź³¼ķ•™ģ›'),
(142362, 112045, 'fr', 'name', 'Institut de France'),
(142363, 112046, 'en', 'name', 'Amsterdam Gastroenterology Endocrinology Metabolism'),
(142364, 112047, 'en', 'name', 'U.S. Army Communications-Electronics Command'),
(142365, 112048, 'de', 'name', 'Institut für Geschichte'),
(142366, 112048, 'en', 'name', 'Institute of History'),
(142367, 112049, 'en', 'name', 'Alliance to End Plastic Waste, Inc.'),
(142368, 112050, 'en', 'name', 'Ogachi Central Hospital'),
(142369, 112050, 'ja', 'name', 'JAē§‹ē”°åŽšē”Ÿé€£é›„å‹äø­å¤®ē—…é™¢'),
(142370, 112051, 'no_lang_code', 'name', 'Jacobs (Spain)'),
(142371, 112052, 'de', 'name', 'Universität Zürich'),
(142372, 112052, 'en', 'name', 'University of Zurich'),
(142373, 112052, 'fr', 'name', 'UniversitƩ de Zurich'),
(142374, 112052, 'it', 'name', 'UniversitĆ  di Zurigo'),
(142375, 112053, 'en', 'name', 'Democracy X'),
(142376, 112054, 'en', 'name', 'Edna Adan University'),
(142377, 112055, 'en', 'name', 'Regentropfen University College'),
(142378, 112056, 'fr', 'name', 'Observatoire Terre et environnement de Lorraine'),
(142379, 112057, 'en', 'name', 'Deakin University'),
(142380, 112058, 'en', 'name', 'Society for Art in Education'),
(142381, 112058, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę•™č‚²ē¾Žč”“ęŒÆčˆˆä¼š'),
(142382, 112059, 'nl', 'name', 'Municipality of Nijmegen'),
(142383, 112060, 'en', 'name', 'The Africa Institute'),
(142384, 112061, 'pt', 'name', 'Aerogare Civil das Lajes'),
(142385, 112062, 'ca', 'name', 'Universitat de Mòdena'),
(142386, 112062, 'de', 'name', 'UniversitƤt Modena und Reggio Emilia'),
(142387, 112062, 'en', 'name', 'University of Modena and Reggio Emilia'),
(142388, 112062, 'fr', 'name', 'UniversitĆ© de modĆØne et de reggio d''Ɖmilie'),
(142389, 112062, 'it', 'name', 'UniversitĆ  degli Studi di Modena e Reggio Emilia'),
(142390, 112063, 'en', 'name', 'SUNY Maritime College'),
(142391, 112064, 'es', 'name', 'Instituto de Biodiversidad de Ecosistemas AntƔrticos y SubantƔrticos'),
(142392, 112065, 'en', 'name', 'United States Naval Medical Research Unit SOUTH'),
(142393, 112066, 'pt', 'name', 'Sociedade Portuguesa de Osteoporose e DoenƧas Ɠsseas Metabólicas'),
(142394, 112067, 'en', 'name', 'Photon Science Innovation Center'),
(142395, 112067, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…‰ē§‘å­¦ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼, å…‰ē§‘å­¦ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(142396, 112068, 'en', 'name', 'University of Miami'),
(142397, 112068, 'es', 'name', 'Universidad de Miami'),
(142398, 112068, 'fr', 'name', 'UniversitƩ de miami'),
(142399, 112069, 'en', 'name', 'Punjab Institute of Neurosciences'),
(142400, 112070, 'pt', 'name', 'Centro de Investigação em MatemÔtica e Aplicações'),
(142401, 112071, 'en', 'name', 'ERN PaedCan'),
(142402, 112072, 'en', 'name', 'National Center for Presons with Severe Intellectual Disabilities, Nozominosono'),
(142403, 112072, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹é‡åŗ¦ēŸ„ēš„éšœå®³č€…ē·åˆę–½čØ­ć®ćžćæć®åœ’'),
(142404, 112073, 'fr', 'name', 'UniversitƩ Bourgogne Franche-ComtƩ'),
(142405, 112074, 'en', 'name', 'All India Institute of Medical Sciences'),
(142406, 112075, 'en', 'name', 'University of Inland Norway'),
(142407, 112075, 'no', 'name', 'Universitetet i Innlandet'),
(142408, 112076, 'pt', 'name', 'Escola Superior de Educação de João de Deus'),
(142409, 112077, 'en', 'name', 'Silesian University of Technology'),
(142410, 112077, 'pl', 'name', 'Politechnika Śląska'),
(142411, 112078, 'fr', 'name', 'DƩlƩgation Paris 5'),
(142412, 112079, 'en', 'name', 'The Japan Council of Traffic Science'),
(142413, 112079, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬äŗ¤é€šē§‘å­¦å­¦ä¼š'),
(142414, 112080, 'es', 'name', 'Universidad Tecnológica de Chile INACAP'),
(142415, 112081, 'en', 'name', 'Radioactive Waste Management Funding and Research Center'),
(142416, 112081, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŽŸå­åŠ›ē’°å¢ƒę•“å‚™äæƒé€²ćƒ»č³‡é‡‘ē®”ē†ć‚»ćƒ³ć‚æćƒ¼'),
(142417, 112082, 'no_lang_code', 'name', 'Omnidea (Portugal)'),
(142418, 112083, 'en', 'name', 'Nanyang Technological University'),
(142419, 112083, 'ms', 'name', 'Universiti Teknologi Nanyang'),
(142420, 112083, 'ta', 'name', 'ą®Øą®©ąÆą®Æą®¾ą®™ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(142421, 112083, 'zh', 'name', 'å—ę“‹ē†å·„å¤§å­¦'),
(142422, 112084, 'pt', 'name', 'Sociedade Portuguesa de Sexologia ClĆ­nica'),
(142423, 112085, 'en', 'name', 'Guangzhou Institute of Science and Technology'),
(142424, 112085, 'zh', 'name', 'å¹æå·žē†å·„å­¦é™¢'),
(142425, 112086, 'en', 'name', 'Japan Acupuncture & Moxibustion Association'),
(142426, 112086, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬é¼ēøåø«ä¼š'),
(142427, 112087, 'es', 'name', 'Fundación JardĆ­n BotĆ”nico ā€œJoaquĆ­n Antonio Uribeā€ de MedellĆ­n'),
(142428, 112088, 'en', 'name', 'Guilin Institute of Information Technology'),
(142429, 112088, 'zh', 'name', 'ę”‚ęž—äæ”ęÆē§‘ęŠ€å­¦é™¢'),
(142430, 112089, 'pt', 'name', 'Centro de Psicologia Aplicada do ExƩrcito'),
(142431, 112090, 'en', 'name', 'Regional Agency for Environmental Protection in the Emilia-Romagna region'),
(142432, 112090, 'it', 'name', 'Agenzia Regionale Prevenzione e Ambiente della Regione Emilia-Romagna'),
(142433, 112091, 'en', 'name', 'Malla Reddy University'),
(142434, 112092, 'pt', 'name', 'Centro Social Paroquial São Romão de Carnaxide'),
(142435, 112093, 'pt', 'name', 'Centro de LinguĆ­stica'),
(142436, 112094, 'en', 'name', 'University of Tashkent for Applied Sciences'),
(142437, 112094, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Университет ŠŸŃ€ŠøŠŗŠ»Š°Š“Š½Ń‹Ń… ŠŠ°ŃƒŠŗ'),
(142438, 112094, 'uz', 'name', 'Toshkent Amaliy Fanlar Universiteti'),
(142439, 112095, 'en', 'name', 'Animal Production Research Centre'),
(142440, 112096, 'de', 'name', 'Max Weber Stiftung - Deutsche Geisteswissenschaftliche Institute im Ausland'),
(142441, 112096, 'en', 'name', 'Max Weber Foundation - German Humanities Institutes Abroad'),
(142442, 112097, 'en', 'name', 'Japan Association of Geriatric Health Services Facilities'),
(142443, 112097, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č€äŗŗäæå„ę–½čØ­å”ä¼š'),
(142444, 112098, 'en', 'name', 'Epworth Hospital'),
(142445, 112099, 'en', 'name', 'Brookhaven National Laboratory'),
(142446, 112100, 'en', 'name', 'Anatolii Pidhornyi Institute of Power Machines and Systems'),
(142447, 112100, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ енергетичних машин і систем ім. А. М. ŠŸŃ–Š“Š³Š¾Ń€Š½Š¾Š³Š¾'),
(142448, 112101, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© حيفا'),
(142449, 112101, 'en', 'name', 'University of Haifa'),
(142450, 112102, 'en', 'name', 'Department of Science and Technology of Liaoning Province'),
(142451, 112102, 'zh', 'name', 'č¾½å®ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(142452, 112103, 'en', 'name', 'Indian Institute of Technology Jammu'),
(142453, 112104, 'en', 'name', 'The University of Texas Health Science Center at San Antonio'),
(142454, 112105, 'en', 'name', 'McMaster University'),
(142455, 112106, 'en', 'name', 'University of KaposvƔr'),
(142456, 112106, 'hu', 'name', 'KaposvƔri Egyetem'),
(142457, 112107, 'pt', 'name', 'Centro de Estudos do Território Cultura e Desenvolvimento'),
(142458, 112108, 'cs', 'name', 'SystĆØme de Production d’Ions Radioactifs AccĆ©lĆ©rĆ©s en Ligne – ĆŗÄast ČR'),
(142459, 112108, 'fr', 'name', 'SystĆØme de Production d’Ions Radioactifs AccĆ©lĆ©rĆ©s en Ligne'),
(142460, 112109, 'it', 'name', 'Regional Science Association International'),
(142461, 112110, 'no_lang_code', 'name', 'VTM Global, VTM Global (Portugal)'),
(142462, 112111, 'en', 'name', 'GlaxoSmithKline Consumer Healthcare Pte Ltd, GlaxoSmithKline Consumer Healthcare Pte Ltd (Singapore)'),
(142463, 112112, 'fr', 'name', 'Plateforme d''Analyses et de CaractƩrisations Chimie Balard'),
(142464, 112113, 'en', 'name', 'Western Atlantic University School of Medicine'),
(142465, 112114, 'en', 'name', 'North-Eastern University, Gombe'),
(142466, 112115, 'en', 'name', 'Nature Conservation Society of Hokkaido'),
(142467, 112115, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“č‡Ŗē„¶äæč­·å”ä¼š'),
(142468, 112116, 'no_lang_code', 'name', 'WINNING Scientific Management (Portugal)'),
(142469, 112117, 'en', 'name', 'Massachusetts College of Pharmacy and Health Sciences'),
(142470, 112118, 'en', 'name', 'United States Air Force Global Strike Command'),
(142471, 112119, 'pt', 'name', 'Centro NOVAFRICA'),
(142472, 112120, 'en', 'name', 'Institute of Theatre and Film Research of the Art Research Centre of the Slovak Academy of Sciences'),
(142473, 112120, 'sk', 'name', 'Ústav divadelnej afilmovej vedy Centra vied o umení Slovenskej akadémie vied'),
(142474, 112121, 'no_lang_code', 'name', 'Flying Sharks Consultoria e Inovação (Portugal), Sharks Consulting and Innovation'),
(142475, 112122, 'en', 'name', 'Italian Association for Cancer Research'),
(142476, 112122, 'it', 'name', 'Associazione Italiana per la Ricerca sul Cancro'),
(142477, 112123, 'no_lang_code', 'name', 'Lima Implantes Portugal SU (Portugal)'),
(142478, 112124, 'no_lang_code', 'name', 'AbbVie (United States)'),
(142479, 112125, 'en', 'name', 'Shibata Gakuen University'),
(142480, 112125, 'ja', 'name', 'ęŸ“ē”°å­¦åœ’å¤§å­¦'),
(142481, 112126, 'eu', 'name', 'Osakidetza'),
(142482, 112127, 'pt', 'name', 'ICI - Instituto de CiĆŖncias Integradas, ICI - Instituto de CiĆŖncias Integradas (Portugal)'),
(142483, 112128, 'en', 'name', 'Dechinta Bush University Centre for Research and Learning'),
(142484, 112129, 'en', 'name', 'Kobe Parks and Greenery Association'),
(142485, 112129, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē„žęˆøåø‚å…¬åœ’ē·‘åŒ–å”ä¼š'),
(142486, 112130, 'fr', 'name', 'Laboratoire de Chimie'),
(142487, 112131, 'en', 'name', 'United States Army Institute of Surgical Research'),
(142488, 112132, 'no_lang_code', 'name', 'Building Global Innovators (Portugal), Building Global Innovators, S.A.'),
(142489, 112133, 'ca', 'name', 'Consell Superior d''Investigacions CientĆ­fiques'),
(142490, 112133, 'en', 'name', 'Spanish National Research Council'),
(142491, 112133, 'es', 'name', 'Consejo Superior de Investigaciones CientĆ­ficas'),
(142492, 112133, 'gl', 'name', 'Consello Superior de Investigacións Científicas'),
(142493, 112134, 'pt', 'name', 'Casa da AmƩrica Latina'),
(142494, 112135, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų²ŁŠŲŖŁˆŁ†Ų© Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†Ł„ŁˆŲ¬ŁŠŲ§'),
(142495, 112135, 'en', 'name', 'Al Zaytona University of Science and Technology'),
(142496, 112136, 'en', 'name', 'Auckland District Health Board'),
(142497, 112137, 'en', 'name', 'Housing and Community Foundation'),
(142498, 112137, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒć‚¦ć‚øćƒ³ć‚°ć‚¢ćƒ³ćƒ‰ć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£č²”å›£'),
(142499, 112138, '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, 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)'),
(142500, 112139, 'pt', 'name', 'Portugal Direção-Geral do Tesouro e Finanças'),
(142501, 112140, 'en', 'name', 'NorESM Climate Modeling Consortium'),
(142502, 112141, 'en', 'name', 'Royal North Shore Hospital'),
(142503, 112142, 'en', 'name', 'ARC Centre of Excellence for Coherent X-ray Science'),
(142504, 112143, 'en', 'name', 'North Caucasian State Academy'),
(142505, 112143, 'ru', 'name', 'Деверо-ŠšŠ°Š²ŠŗŠ°Š·ŃŠŗŠ°Ń Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(142506, 112144, 'es', 'name', 'Universidad de Diseño, Innovación y Tecnología'),
(142507, 112145, 'en', 'name', 'P.E.L.C. - Private Entomological Laboratory and Collection'),
(142508, 112146, 'fr', 'name', 'Institut UTINAM'),
(142509, 112147, 'en', 'name', 'Japan Arts Foundation'),
(142510, 112147, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę–‡åŒ–č—č”“č²”å›£'),
(142511, 112148, 'fr', 'name', 'Sciences Po Lyon'),
(142512, 112149, 'no_lang_code', 'name', 'ERNICA'),
(142513, 112150, 'en', 'name', 'Public Welfare Institute of Scientific Research Foundation'),
(142514, 112150, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę°‘ē”Ÿē§‘å­¦å”ä¼š'),
(142515, 112151, 'it', 'name', 'IFOM'),
(142516, 112152, 'it', 'name', 'Istituto di Scienze Marine del Consiglio Nazionale delle Ricerche'),
(142517, 112153, 'en', 'name', 'Hachinohe City Hospital'),
(142518, 112153, 'ja', 'name', 'å…«ęˆøåø‚ē«‹åø‚ę°‘ē—…é™¢'),
(142519, 112154, 'en', 'name', 'Ministry of Innovation, Science and Technology'),
(142520, 112155, 'de', 'name', 'Institut für Agrarwissenschaften'),
(142521, 112155, 'en', 'name', 'Institute of Agricultural Sciences'),
(142522, 112156, 'en', 'name', 'University of Michigan Biological Station'),
(142523, 112157, 'en', 'name', 'National Research and Innovation Agency'),
(142524, 112157, 'id', 'name', 'Badan Riset dan Inovasi Nasional'),
(142525, 112158, 'en', 'name', 'Materials Discovery Research Institute'),
(142526, 112159, 'de', 'name', 'UniversitƤt Bielefeld'),
(142527, 112159, 'en', 'name', 'Bielefeld University'),
(142528, 112160, 'en', 'name', 'University of the Philippines System'),
(142529, 112160, 'tl', 'name', 'Unibersidad ng Pilipinas'),
(142530, 112161, 'en', 'name', 'Center for International Relations and International Security'),
(142531, 112162, 'en', 'name', 'KeyLogic, KeyLogic (United States)'),
(142532, 112163, 'en', 'name', 'National Defence University of Warsaw'),
(142533, 112163, 'pl', 'name', 'Akademia Obrony Narodowej'),
(142534, 112164, 'en', 'name', 'Space Delta 9'),
(142535, 112165, 'pt', 'name', 'Centro de Investigação Formação Inovação e Intervenção em Desporto'),
(142536, 112166, 'en', 'name', 'Haryugaoka Hospital'),
(142537, 112166, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé‡‘ę£®å’Œåæƒä¼šé‡ē”Ÿćƒ¶äø˜ē—…é™¢'),
(142538, 112167, 'en', 'name', 'Sexuality Education Resource Centre'),
(142539, 112168, 'en', 'name', 'Narimasu Kosei Hospital'),
(142540, 112168, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ēæ ä¼šęˆå¢—åŽšē”Ÿē—…é™¢'),
(142541, 112169, 'pt', 'name', 'Instituto de Historia da Arte'),
(142542, 112170, 'de', 'name', 'Institut für Geodäsie und Photogrammetrie'),
(142543, 112170, 'en', 'name', 'Institute of Geodesy and Photogrammetry'),
(142544, 112171, 'en', 'name', 'Haluoleo University'),
(142545, 112171, 'id', 'name', 'Universitas Halu Oleo'),
(142546, 112172, 'ar', 'name', 'المعهد Ų§Ł„Ų„Ł†ŲÆŁˆŁ†ŁŠŲ³ŁŠ Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§ زيت Ų§Ł„Ł†Ų®ŁŠŁ„'),
(142547, 112172, 'en', 'name', 'Indonesian Palm Oil Technology Institute'),
(142548, 112172, 'id', 'name', 'Institut Teknologi Sawit Indonesia'),
(142549, 112173, 'en', 'name', 'Centre of Social and Psychological Sciences of the Slovak Academy of Sciences'),
(142550, 112173, 'sk', 'name', 'Centrum spoločenských a psychologických vied SlovenskĆ” akadĆ©mia vied'),
(142551, 112174, 'en', 'name', 'Japan Bicycle Promotion Institute'),
(142552, 112174, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč‡Ŗč»¢č»Šē”£ę„­ęŒÆčˆˆå”ä¼š'),
(142553, 112175, 'en', 'name', 'Food Research Institute Prague'),
(142554, 112176, 'en', 'name', 'Islamia College of Science and Commerce, Srinagar'),
(142555, 112177, 'en', 'name', 'MicroMir'),
(142556, 112177, 'ru', 'name', 'ŠœŠøŠŗŃ€Š¾Š¼ŠøŃ€'),
(142557, 112178, 'no_lang_code', 'name', 'Biogen (United States)'),
(142558, 112179, 'pt', 'name', 'Infraestrutura de Investigação para a Biomassa e a Bioenergia'),
(142559, 112180, 'cs', 'name', 'TechnickĆ” univerzita v Liberci'),
(142560, 112180, 'en', 'name', 'Technical University of Liberec'),
(142561, 112181, 'en', 'name', 'University of New Mexico Health Sciences Center'),
(142562, 112182, 'en', 'name', 'National School of Electronics and Telecommunications of Sfax, Tunisia'),
(142563, 112183, 'cy', 'name', 'Coleg Prifysgol Llundain'),
(142564, 112183, 'en', 'name', 'University College London'),
(142565, 112184, 'pt', 'name', 'Sociedade Portuguesa de Hematologia'),
(142566, 112185, 'en', 'name', 'RINRI Institute of Ethics'),
(142567, 112185, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå€«ē†ē ”ē©¶ę‰€'),
(142568, 112186, 'en', 'name', 'Barcelona School of Economics'),
(142569, 112186, 'es', 'name', 'Escuela de EconomĆ­a de Barcelona'),
(142570, 112187, 'en', 'name', 'St Vincents Institute of Medical Research'),
(142571, 112188, 'en', 'name', 'Program for Climate Model Diagnosis and Intercomparison'),
(142572, 112189, 'pt', 'name', 'Centro Interpretativo do Tapete de Arraiolos'),
(142573, 112190, 'de', 'name', 'UniversitƤt Bern'),
(142574, 112190, 'en', 'name', 'University of Bern'),
(142575, 112190, 'fr', 'name', 'UniversitƩ de Berne'),
(142576, 112190, 'it', 'name', 'UniversitĆ  di Berna'),
(142577, 112191, 'en', 'name', 'American Musicological Society'),
(142578, 112192, 'en', 'name', 'Tajimi City Pottery Design and Technical Center'),
(142579, 112192, 'ja', 'name', 'å¤šę²»č¦‹åø‚é™¶ē£å™Øę„åŒ ē ”ē©¶ę‰€'),
(142580, 112193, 'pt', 'name', 'Museu de Arte Arquitetura e Tecnologia'),
(142581, 112194, 'pt', 'name', 'Eborae Mvsica'),
(142582, 112195, 'en', 'name', 'ICAR - Agricultural Technology Application Research Institute'),
(142583, 112196, 'en', 'name', 'Union Nikola Tesla University'),
(142584, 112196, 'no_lang_code', 'name', 'Univerzitet Union Nikola Tesla'),
(142585, 112196, 'sr', 'name', 'Универзитет Унион ŠŠøŠŗŠ¾Š»Š° Тесла'),
(142586, 112197, 'id', 'name', 'Universitas Buana Perjuangan Karawang');
INSERT INTO `ror_settings` VALUES
(142587, 112198, 'en', 'name', 'Real Estate Transaction Improvement Organization'),
(142588, 112198, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäøå‹•ē”£é©ę­£å–å¼•ęŽØé€²ę©Ÿę§‹'),
(142589, 112199, 'en', 'name', 'The Foundation for the Promotion of Industrial Science'),
(142590, 112199, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē”Ÿē”£ęŠ€č”“ē ”ē©¶å„ØåŠ±ä¼š'),
(142591, 112200, 'en', 'name', 'CO2-free Hydrogen Energy Supply-chain Technology Research Association'),
(142592, 112200, 'ja', 'name', 'ęŠ€č”“ē ”ē©¶ēµ„åˆCO2ćƒ•ćƒŖćƒ¼ę°“ē“ ć‚µćƒ—ćƒ©ć‚¤ćƒć‚§ćƒ¼ćƒ³ęŽØé€²ę©Ÿę§‹'),
(142593, 112201, 'en', 'name', 'Government of Portugal'),
(142594, 112201, 'pt', 'name', 'Governo de Portugal'),
(142595, 112202, 'pt', 'name', 'Instituto Europeu'),
(142596, 112203, 'en', 'name', 'Hungarian Academy of Sciences'),
(142597, 112203, 'hu', 'name', 'Magyar TudomƔnyos AkadƩmia'),
(142598, 112204, 'pt', 'name', 'Centro de Literatura Portuguesa'),
(142599, 112205, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų­Ų¶Ų±Ł…ŁˆŲŖ'),
(142600, 112205, 'en', 'name', 'Hadhramout University'),
(142601, 112206, 'pt', 'name', 'PresidĆŖncia da RepĆŗblica Portuguesa'),
(142602, 112207, 'en', 'name', 'U.S. Army Information Systems Engineering Command'),
(142603, 112208, 'en', 'name', 'Nagano Nursing Association'),
(142604, 112208, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé•·é‡ŽēœŒēœ‹č­·å”ä¼š'),
(142605, 112209, 'en', 'name', 'Japan Agricultural Mechanization Association'),
(142606, 112209, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č¾²ę„­ę©Ÿę¢°åŒ–å”ä¼š'),
(142607, 112210, 'en', 'name', 'Maine Mineral & Gem Museum'),
(142608, 112211, 'en', 'name', 'Japan Project-Industry Council'),
(142609, 112211, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ­ć‚øć‚§ć‚Æćƒˆē”£ę„­å”č­°ä¼š'),
(142610, 112212, 'en', 'name', 'Central Bank of the Philippines'),
(142611, 112212, 'ta', 'name', 'Bangko Sentral ng Pilipinas'),
(142612, 112213, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ Ų¹ŲØŲÆ Ų§Ł„Ų¹Ų²ŁŠŲ²'),
(142613, 112213, 'en', 'name', 'King Abdulaziz University'),
(142614, 112214, 'en', 'name', 'University of Santiago Chile'),
(142615, 112214, 'es', 'name', 'Universidad de Santiago de Chile'),
(142616, 112215, 'pt', 'name', 'Conservatório de Música de Barcelos'),
(142617, 112216, 'en', 'name', 'Thermal Management Materials and technology Research Association'),
(142618, 112216, 'ja', 'name', 'ęœŖåˆ©ē”Øē†±ć‚Øćƒćƒ«ć‚®ćƒ¼é©ę–°ēš„ę“»ē”ØęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(142619, 112217, 'cs', 'name', 'VýzkumnÔ infrastruktura pro experimenty ve Fermilab'),
(142620, 112217, 'en', 'name', 'Research Infrastructure for Fermilab Experiments'),
(142621, 112218, 'en', 'name', 'The SKYLARK Food Science Institute'),
(142622, 112218, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć™ć‹ć„ć‚‰ćƒ¼ććƒ•ćƒ¼ćƒ‰ć‚µć‚¤ć‚Øćƒ³ć‚¹ē ”ē©¶ę‰€'),
(142623, 112219, 'en', 'name', 'Bentley Health Service'),
(142624, 112220, 'en', 'name', 'Information Center for Building Administration'),
(142625, 112220, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗēÆ‰č”Œę”æęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(142626, 112221, 'fr', 'name', 'Gouvernance et dƩveloppement insulaire'),
(142627, 112222, 'fr', 'name', 'HÓpital de la Pitié-Salpêtrière, Pitié-Salpêtrière Hospital'),
(142628, 112223, 'en', 'name', 'Shanti Volunteer Association'),
(142629, 112223, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗć‚·ćƒ£ćƒ³ćƒ†ć‚£å›½éš›ćƒœćƒ©ćƒ³ćƒ†ć‚£ć‚¢ä¼š'),
(142630, 112224, 'en', 'name', 'Tottori Swine & Poultry Experiment Station'),
(142631, 112224, 'ja', 'name', 'é³„å–ēœŒäø­å°å®¶ē•œč©¦éØ“å “'),
(142632, 112225, 'pt', 'name', 'Sociedade Portuguesa de Geotecnia'),
(142633, 112226, 'en', 'name', 'University of Illinois Chicago'),
(142634, 112226, 'fr', 'name', 'UniversitƩ de l''illinois Ơ chicago'),
(142635, 112227, 'en', 'name', 'Harajuku Rehabilitation Hospital'),
(142636, 112227, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå·ØęØ¹ć®ä¼šåŽŸå®æćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ē—…é™¢'),
(142637, 112228, 'no_lang_code', 'name', '3M (Portugal)'),
(142638, 112229, 'en', 'name', 'Yokohama Medical Associations'),
(142639, 112229, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęØŖęµœåø‚åŒ»åø«ä¼š'),
(142640, 112230, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© النخبة الجامعة'),
(142641, 112230, 'en', 'name', 'Alnukhba University College'),
(142642, 112231, 'cs', 'name', 'Centrum výzkumu a vývoje plazmatu a nanotechnologických povrchových úprav'),
(142643, 112231, 'en', 'name', 'R&D Centre for Low-Cost Plasma and Nanotechnology Surface Modifications'),
(142644, 112232, 'no_lang_code', 'name', 'Associação Centro de Medicina P5, Associação Centro de Medicina P5 (Portugal), P5 Medical Centre'),
(142645, 112233, 'en', 'name', 'Carnegie Mellon Portugal'),
(142646, 112234, 'fr', 'name', 'Technologie et Ethnologie des Mondes PrƩhistoriqueS'),
(142647, 112235, 'cy', 'name', 'Prifysgol De Cymru'),
(142648, 112235, 'en', 'name', 'University of South Wales'),
(142649, 112236, 'en', 'name', 'Naval Medical Center San Diego'),
(142650, 112237, 'en', 'name', 'Bahaudin Mudhary Madura University'),
(142651, 112237, 'id', 'name', 'Universitas Bahaudin Mudhary Madura'),
(142652, 112238, 'en', 'name', 'Boston College'),
(142653, 112239, 'en', 'name', 'Curtin University'),
(142654, 112240, 'en', 'name', 'Tobacco Institute of Japan'),
(142655, 112240, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćŸć°ć“å”ä¼š'),
(142656, 112241, 'en', 'name', 'Smart Energy LAB'),
(142657, 112242, 'en', 'name', 'Priyadharshani Research and Development (OPC) Pvt. Ltd., Priyadharshani Research and Development (OPC) Pvt. Ltd. (India)'),
(142658, 112243, 'en', 'name', 'Peninsula Health'),
(142659, 112244, 'no_lang_code', 'name', 'Sanofi (France)'),
(142660, 112245, 'fr', 'name', 'Centre Pluridisciplinaire Textes et Cultures'),
(142661, 112246, 'en', 'name', 'Ministry of Agriculture and Rural Development of the Slovak Republic'),
(142662, 112246, 'sk', 'name', 'Ministerstvo pƓdohospodƔrstva a rozvoja vidieka Slovenskej republiky'),
(142663, 112247, 'en', 'name', 'SLB Middle East S.A., Schlumberger Middle East SA, Schlumberger Middle East SA (Saudi Arabia)'),
(142664, 112248, 'en', 'name', 'CHEM.I.NET CO., Ltd., CHEM.I.NET CO., Ltd. (South Korea)'),
(142665, 112248, 'kr', 'name', 'ģ¼ģ•„ģ“ė„·(주)'),
(142666, 112249, 'en', 'name', 'Research on healthcare performance'),
(142667, 112250, 'en', 'name', 'Information Center For Petroleum Exploration And Production'),
(142668, 112250, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗēŸ³ę²¹é–‹ē™ŗęƒ…å ±ć‚»ćƒ³ć‚æćƒ¼'),
(142669, 112251, 'en', 'name', 'Saga Livestock Research Laboratory'),
(142670, 112251, 'ja', 'name', 'ä½č³€ēœŒē•œē”£č©¦éØ“å “'),
(142671, 112252, 'en', 'name', 'The Nukada Institute for Medical and Biological Research'),
(142672, 112252, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé”ē”°åŒ»å­¦ē”Ÿē‰©å­¦ē ”ē©¶ę‰€'),
(142673, 112253, 'en', 'name', 'Virginia Commonwealth University'),
(142674, 112253, 'es', 'name', 'Universidad de la Commonwealth de Virginia'),
(142675, 112254, 'en', 'name', 'Matsuzaka Central General Hospital'),
(142676, 112254, 'ja', 'name', 'JAäø‰é‡åŽšē”Ÿé€£ę¾é˜Ŗäø­å¤®ē·åˆē—…é™¢'),
(142677, 112255, 'en', 'name', 'Maulana Azad University Jodhpur'),
(142678, 112256, 'ja', 'name', 'ę—­ē”å­'),
(142679, 112256, 'no_lang_code', 'name', 'Asahi Glass (Japan)'),
(142680, 112257, 'en', 'name', 'Anshin Zaidan'),
(142681, 112257, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäø­å°ä¼ę„­ē½å®³č£œå„Ÿå…±ęøˆē¦ē„‰č²”å›£'),
(142682, 112258, 'en', 'name', 'Kenkoigaku Associaton'),
(142683, 112258, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå„åŗ·åŒ»å­¦å”ä¼š'),
(142684, 112259, 'it', 'name', 'Agenzia Regionale per la Protezione ambientale Marche'),
(142685, 112260, 'en', 'name', 'Rajah Serfoji Government College (Autonomous)'),
(142686, 112261, 'pt', 'name', 'Sistema Nacional de Informação GeogrÔfica'),
(142687, 112262, 'fr', 'name', 'Institut national du service public (INSP)'),
(142688, 112263, 'no_lang_code', 'name', 'TU9'),
(142689, 112264, 'pt', 'name', 'Sociedade Portuguesa de Anatomia Patológica'),
(142690, 112265, 'en', 'name', 'Pars University of Art and Architecture'),
(142691, 112265, 'fa', 'name', 'دانؓگاه Ł…Ų¹Ł…Ų§Ų±ŪŒ و هنر پارس'),
(142692, 112266, 'cs', 'name', 'Mikrobiologický Ćŗstav AV ČR, Mikrobiologický Ćŗstav AV ČR, v. v. i., Mikrobiologický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(142693, 112266, 'en', 'name', 'Czech Academy of Sciences, Institute of Microbiology'),
(142694, 112267, 'en', 'name', 'Japan Center for International Exchange'),
(142695, 112267, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å›½éš›äŗ¤ęµć‚»ćƒ³ć‚æćƒ¼'),
(142696, 112268, 'en', 'name', 'Ningxia Water Conservancy'),
(142697, 112268, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗę°“åˆ©åŽ…, å®å¤ę°“åˆ©åŽ…'),
(142698, 112269, 'pt', 'name', 'AMEC Metropolitana'),
(142699, 112270, 'pt', 'name', 'SPACE Portugal'),
(142700, 112271, 'de', 'name', 'Institut für Molekularbiologie und Biophysik'),
(142701, 112271, 'en', 'name', 'Institute of Molecular Biology and Biophysics'),
(142702, 112272, 'es', 'name', 'Biblioteca del Congreso Nacional de Chile'),
(142703, 112273, 'as', 'name', 'ą¦‰ą¦¤ą§ą¦¤ą§°-পূব ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø আৰু ą¦Ŗą§ą§°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą§°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø'),
(142704, 112273, 'en', 'name', 'North East Institute of Science and Technology, North East Institute of Science and Technology, Jorhat'),
(142705, 112274, 'no_lang_code', 'name', 'Tecnifar, Tecnifar (Portugal)'),
(142706, 112275, 'en', 'name', 'Lumoscribe, Lumoscribe (Cyprus)'),
(142707, 112276, 'en', 'name', 'David Umahi Federal University of Health Sciences Uburu'),
(142708, 112277, 'en', 'name', 'The Japan Landslide Society'),
(142709, 112277, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åœ°ć™ć¹ć‚Šå­¦ä¼š'),
(142710, 112278, 'en', 'name', 'Kagoshima Prefectural Institute of Industrial Technology'),
(142711, 112278, 'ja', 'name', 'é¹æå…å³¶ēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(142712, 112279, 'hu', 'name', 'Balatoni Limnológiai Intézet'),
(142713, 112279, 'no_lang_code', 'name', 'Balaton Limnological Institute'),
(142714, 112280, 'fr', 'name', 'Laboratoire Chimie de l''Environnement'),
(142715, 112281, 'en', 'name', 'Iwate International Association'),
(142716, 112281, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå²©ę‰‹ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(142717, 112282, 'no_lang_code', 'name', 'PHAGECON - Serviços e Consultoria Farmacêutica Ltd, PHAGECON - Serviços e Consultoria Farmacêutica Ltd (Portugal)'),
(142718, 112283, 'no_lang_code', 'name', 'Toxfinder (Portugal)'),
(142719, 112284, 'en', 'name', 'The Sharp Foundation'),
(142720, 112285, 'en', 'name', 'Kansai Gaidai College'),
(142721, 112285, 'ja', 'name', 'é–¢č„æå¤–å›½čŖžå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(142722, 112286, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†Ų³'),
(142723, 112286, 'en', 'name', 'Tunis University'),
(142724, 112286, 'fr', 'name', 'UniversitƩ de Tunis'),
(142725, 112287, 'de', 'name', 'Institut für Neurowissenschaften'),
(142726, 112287, 'en', 'name', 'Institute for Neuroscience'),
(142727, 112288, 'de', 'name', 'Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport'),
(142728, 112288, 'en', 'name', 'Federal Department of Defence, Civil Protection and Sports'),
(142729, 112288, 'fr', 'name', 'DƩpartement FƩdƩral de la DƩfense, de la Protection de la Population et des Sports'),
(142730, 112288, 'it', 'name', 'Dipartimento Federale della Difesa, della Protezione della Popolazione e dello Sport'),
(142731, 112289, 'en', 'name', 'Institute of Molecular Physiology and Genetics of the Slovak Academy of Sciences'),
(142732, 112289, 'sk', 'name', 'Ústav molekulÔrnej fyziológie agenetiky Centra biovied Slovenskej akadémie vied'),
(142733, 112290, 'de', 'name', 'Laboratorium für Organische Chemie'),
(142734, 112290, 'en', 'name', 'Laboratory of Organic Chemistry'),
(142735, 112291, 'en', 'name', 'Inter-university Consortium for Political and Social Research'),
(142736, 112292, 'en', 'name', 'Hosogi Hospital'),
(142737, 112292, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗä»ē”Ÿä¼šē“°ęœØē—…é™¢'),
(142738, 112293, 'en', 'name', 'Fisheries and Oceans Canada'),
(142739, 112293, 'fr', 'name', 'Pêches et Océans Canada'),
(142740, 112294, 'pt', 'name', 'Centro de Instrumentação Científica'),
(142741, 112295, 'en', 'name', 'Chan Zuckerberg Initiative'),
(142742, 112295, 'no_lang_code', 'name', 'Chan Zuckerberg Initiative (United States)'),
(142743, 112296, 'en', 'name', 'Health and Research Collaborative'),
(142744, 112297, 'pt', 'name', 'Sociedade Portuguesa de Farmacologia'),
(142745, 112298, 'pt', 'name', 'Açores Direção Regional da Saúde'),
(142746, 112299, 'no_lang_code', 'name', 'Danylo Zabolotny Institute of Microbiology and Virology'),
(142747, 112299, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мікробіології і Š²Ń–Ń€ŃƒŃŠ¾Š»Š¾Š³Ń–Ń— ім. Š”.К. Заболотного, Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ мікробіології і Š²Ń–Ń€ŃƒŃŠ¾Š»Š¾Š³Ń–Ń— ім. Š”.К. Заболотного ŠŠŠ України'),
(142748, 112300, 'no_lang_code', 'name', 'Chrysea Labs (Portugal)'),
(142749, 112301, 'en', 'name', 'The Institute of Professional Engineers, Japan'),
(142750, 112301, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęŠ€č”“å£«ä¼š'),
(142751, 112302, 'en', 'name', 'Philomath University'),
(142752, 112303, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī ĪµĪ¹ĻĪ±Ī¹ĻŽĻ‚'),
(142753, 112303, 'en', 'name', 'University of Piraeus'),
(142754, 112303, 'fr', 'name', 'UniversitƩ du pirƩe'),
(142755, 112304, 'de', 'name', 'Gesellschaft für Biologische Daten e.V.'),
(142756, 112305, 'en', 'name', 'University of Buner'),
(142757, 112306, 'en', 'name', 'Mahatma Basaveshwar Education Society''s College of Engineering, Ambajogai'),
(142758, 112307, 'no_lang_code', 'name', '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'),
(142759, 112308, 'pt', 'name', 'Sociedade Portuguesa de Ciências Cosmetológicas'),
(142760, 112309, 'pt', 'name', 'Centro de Gestão Empresa Agrícola Entre Douro e CÓa'),
(142761, 112310, 'en', 'name', 'Indian Institute of Technology Bombay'),
(142762, 112310, 'fr', 'name', 'Institut indien de technologie de bombay'),
(142763, 112310, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą„ą¤®ą„ą¤¬ą¤ˆ'),
(142764, 112310, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ ą““ą“«ąµ ą“Ÿąµ†ą“•ąµą“Øąµ‹ą“³ą“œą“æ ą“¬ąµ‹ą“‚ą“¬ąµ†'),
(142765, 112310, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾, ą¤®ą„ą¤‚ą¤¬ą¤ˆ'),
(142766, 112310, 'pa', 'name', 'ਇੰਔੀਅਨ ąØ‡ą©°ąØøąØŸą©€ąØšąØæąØŠąØŸ ਆਫ਼ ąØŸą©ˆąØ•ąØØąØ¾ąØ²ą©‹ąØœą©€'),
(142767, 112310, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®“ą®•ą®®ąÆ ą®®ąÆą®®ąÆą®ŖąÆˆ'),
(142768, 112310, 'te', 'name', 'ą°ą°ą°Ÿą±€ బాంబే'),
(142769, 112311, 'en', 'name', 'TEAM4Excellence Association'),
(142770, 112311, 'ro', 'name', 'Asociatia TEAM4Excellence'),
(142771, 112312, 'en', 'name', 'Multidisciplinary Institute of Ageing'),
(142772, 112313, 'ja', 'name', 'ę—„ęœ¬ćƒ™ćƒ¼ćƒŖćƒ³ć‚¬ćƒ¼ć‚¤ćƒ³ć‚²ćƒ«ćƒć‚¤ćƒ ę Ŗå¼ä¼šē¤¾'),
(142773, 112313, 'no_lang_code', 'name', 'Boehringer Ingelheim (Japan)'),
(142774, 112314, 'pt', 'name', 'Unidade de Investigação e Desenvolvimento em Engenharia Mecânica e Industrial'),
(142775, 112315, 'es', 'name', 'Instituto de GeografĆ­a'),
(142776, 112316, 'pt', 'name', 'Leitão Guerra - Oftalmologia'),
(142777, 112317, 'en', 'name', 'Association for Technical Aids, Inc.'),
(142778, 112317, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ†ć‚ÆćƒŽć‚Øć‚¤ćƒ‰å”ä¼š'),
(142779, 112318, 'en', 'name', 'BellSouth Foundation'),
(142780, 112319, 'no_lang_code', 'name', 'Servier Portugal Especialidades FarmacĆŖuticas (Portugal), Servier Portugal Pharmaceutical Specialties'),
(142781, 112320, 'en', 'name', 'State Key Laboratory of Polymer Materials Engineering'),
(142782, 112320, 'zh', 'name', 'é«˜åˆ†å­ęę–™å·„ēØ‹å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(142783, 112321, 'en', 'name', 'Research and Development Station for Cattle Breeding Dancu'),
(142784, 112321, 'ro', 'name', 'Stațiunea de Cercetare Dezvoltare pentru Creșterea Bovinelor Dancu'),
(142785, 112322, 'da', 'name', 'TrygFonden'),
(142786, 112323, 'en', 'name', 'Government of the United States of America'),
(142787, 112324, 'en', 'name', 'University of Science Malaysia'),
(142788, 112324, 'ms', 'name', 'Universiti Sains Malaysia'),
(142789, 112324, 'ta', 'name', 'ą®®ą®²ąÆ‡ą®šą®æą®Æ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(142790, 112324, 'zh', 'name', 'é©¬ę„č„æäŗšē†ē§‘å¤§å­¦'),
(142791, 112325, 'da', 'name', 'LEO Fondet'),
(142792, 112325, 'en', 'name', 'LEO Foundation'),
(142793, 112326, 'fr', 'name', 'Logiques de l''agir'),
(142794, 112327, 'en', 'name', 'Lawson Research Institute'),
(142795, 112328, 'en', 'name', 'Royal Children''s Hospital'),
(142796, 112329, 'en', 'name', 'Iida Junior College'),
(142797, 112329, 'ja', 'name', 'é£Æē”°ēŸ­ęœŸå¤§å­¦'),
(142798, 112330, 'en', 'name', 'University of Sri Jayewardenepura'),
(142799, 112330, 'si', 'name', 'ශ් රී ą¶¢ą¶ŗą·€ą¶»ą·Šą¶°ą¶±ą¶“ą·”ą¶» ą·€ą·’ą·ą·Šą·€ą·€ą·’ą¶Æą·Š ą¶ŗą·ą¶½ą¶ŗ'),
(142800, 112330, 'ta', 'name', 'ą®øąÆą®°ąÆ€ ą®œą®Æą®µą®°ąÆą®¤ą®©ą®ŖąÆą®° ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(142801, 112331, 'en', 'name', 'VIVES University of Applied Sciences'),
(142802, 112331, 'nl', 'name', 'Katholieke Hogeschool Vives'),
(142803, 112332, 'id', 'name', 'LP2M Institut Teknologi dan Bisnis Asia Malang'),
(142804, 112333, 'en', 'name', 'SUNY Old Westbury, State University of New York at Old Westbury'),
(142805, 112334, 'no_lang_code', 'name', 'MPO Portugal (Portugal)'),
(142806, 112335, 'no_lang_code', 'name', 'ViiV Healthcare (Portugal)'),
(142807, 112336, 'en', 'name', 'Japanese Educational Clinical Cardiology Society'),
(142808, 112336, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗč‡ØåŗŠåæƒč‡“ē—…å­¦ę•™č‚²ē ”ē©¶ä¼š'),
(142809, 112337, 'en', 'name', 'Washington State Department of Enterprise Services'),
(142810, 112338, 'en', 'name', 'Open University'),
(142811, 112338, 'pt', 'name', 'Universidade Aberta'),
(142812, 112339, 'en', 'name', 'Kagoshima International Association'),
(142813, 112339, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé¹æå…å³¶ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(142814, 112340, 'en', 'name', '65th Force Support Squadron'),
(142815, 112341, 'en', 'name', 'Grenoble Alpes University'),
(142816, 112341, 'fr', 'name', 'UniversitƩ Grenoble Alpes'),
(142817, 112342, 'en', 'name', 'University of Navarra'),
(142818, 112342, 'es', 'name', 'Universidad de Navarra'),
(142819, 112342, 'eu', 'name', 'Nafarroako Unibertsitatea'),
(142820, 112343, 'en', 'name', 'New Unmanned Construction Technology Research Association'),
(142821, 112343, 'ja', 'name', 'ę¬”äø–ä»£ē„”äŗŗåŒ–ę–½å·„ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(142822, 112344, 'en', 'name', 'Naito Foundation'),
(142823, 112344, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå†…č—¤čØ˜åæµē§‘å­¦ęŒÆčˆˆč²”å›£'),
(142824, 112345, 'en', 'name', 'North-East Interdisciplinary Scientific Research Institute'),
(142825, 112345, 'ru', 'name', 'Деверо-Восточный комплексный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚, Деверо-Восточный комплексный Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š”Š’Šž Š ŠŠ'),
(142826, 112346, 'cs', 'name', 'BrookhavenskĆ” nĆ”rodnĆ­ laboratoř, BrookhavenskĆ” nĆ”rodnĆ­ laboratoř – ĆŗÄast ČeskĆ© republiky'),
(142827, 112346, 'en', 'name', 'Brookhaven National Laboratory - Participation of the Czech Republic'),
(142828, 112347, 'en', 'name', 'Saitama Medical Association'),
(142829, 112347, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒåŒ»åø«ä¼š'),
(142830, 112348, 'en', 'name', 'Biomedical Research Center of the Slovak Academy of Sciences'),
(142831, 112348, 'sk', 'name', 'Biomedicƭnske Centrum SlovenskƔ akadƩmia vied'),
(142832, 112349, 'no_lang_code', 'name', 'Alfasigma Portugal (Portugal)'),
(142833, 112350, 'fr', 'name', 'Laboratoire de Droit Civil'),
(142834, 112351, 'en', 'name', 'Inazawa Kosei Hospital'),
(142835, 112351, 'ja', 'name', 'JAę„›ēŸ„åŽšē”Ÿé€£ēØ²ę²¢åŽšē”Ÿē—…é™¢'),
(142836, 112352, 'en', 'name', 'Japan Society of Powder and Powder Metallurgy'),
(142837, 112352, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē²‰ä½“ē²‰ęœ«å†¶é‡‘å”ä¼š'),
(142838, 112353, 'en', 'name', 'National Institute for Nuclear Physics, Gran Sasso National Laboratories'),
(142839, 112353, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Laboratori Nazionali del Gran Sasso'),
(142840, 112354, 'en', 'name', 'The Association of Japanese Geographers'),
(142841, 112354, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åœ°ē†å­¦ä¼š'),
(142842, 112355, 'no_lang_code', 'name', 'Prime Matter Consulting (Portugal)'),
(142843, 112356, 'en', 'name', 'Kochi Prefecture Paper Technology Center'),
(142844, 112356, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹ē“™ē”£ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(142845, 112357, 'pt', 'name', 'Câmara Municipal de Vila Nova de Famalicão'),
(142846, 112358, 'cs', 'name', 'Ústav fyzikÔlní chemie J. Heyrovského AV ČR'),
(142847, 112358, 'en', 'name', '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'),
(142848, 112359, 'en', 'name', 'Uyo Gakuen College'),
(142849, 112359, 'ja', 'name', 'ē¾½é™½å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(142850, 112360, 'en', 'name', 'Revvity, Revvity (United States), Revvity, Inc.'),
(142851, 112361, 'no_lang_code', 'name', 'RELX Group (Netherlands)'),
(142852, 112362, 'de', 'name', 'Institut für Landschaft und Urbane Studien LUS'),
(142853, 112362, 'en', 'name', 'Institute for Urban and Landscape Studies'),
(142854, 112363, 'es', 'name', 'Escuela Superior de Audio y AcĆŗstica'),
(142855, 112364, 'de', 'name', 'Leibniz-Institut für Photonische Technologien'),
(142856, 112364, 'en', 'name', 'Leibniz Institute of Photonic Technology'),
(142857, 112365, 'fr', 'name', 'Centre de Formation des journalistes'),
(142858, 112366, 'en', 'name', 'Miyazaki Livestock Research Institute'),
(142859, 112366, 'ja', 'name', 'å®®å“ŽēœŒē•œē”£č©¦éØ“å “'),
(142860, 112367, 'pt', 'name', 'Museu Doutor Joaquim Manso'),
(142861, 112368, 'de', 'name', 'Schƶnbrunner Tiergarten-GmbH'),
(142862, 112369, 'en', 'name', 'French Nuclear Safety Authority'),
(142863, 112369, 'fr', 'name', 'AutoritƩ de SƻretƩ NuclƩaire'),
(142864, 112370, 'en', 'name', 'Center for Documentation and Research on Left-Wing Culture'),
(142865, 112370, 'es', 'name', 'Centro de Documentación e Investigación de la Cultura de Izquierdas'),
(142866, 112371, 'pt', 'name', 'Centro UniversitĆ”rio Cesusc – UNICESUSC'),
(142867, 112372, 'en', 'name', 'Decision & Information Sciences for Production Systems'),
(142868, 112372, 'fr', 'name', 'Décision et Information pour les Systèmes de Production'),
(142869, 112373, 'en', 'name', 'Department of Health and Aged Care'),
(142870, 112374, 'pt', 'name', 'CĆ¢mara Municipal de Viana do Castelo'),
(142871, 112375, 'ar', 'name', 'الجامعة_Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ©_في_ŲÆŁ‡ŁˆŁƒ'),
(142872, 112375, 'en', 'name', 'American University of Kurdistan'),
(142873, 112375, 'ku', 'name', 'Zanîngeha Amerîkayî ya Kurdistanê'),
(142874, 112375, 'la', 'name', 'Universitas Americana Kurdistanensis'),
(142875, 112375, 'tr', 'name', 'Kürdistan Amerikan Üniversitesi'),
(142876, 112376, 'en', 'name', 'TUM CREATE'),
(142877, 112377, 'en', 'name', 'Goethe Institut, Goethe Institute'),
(142878, 112378, 'pt', 'name', 'ARS Associação Investigação Desenvolvimento'),
(142879, 112379, 'en', 'name', 'Insurance Research Center'),
(142880, 112380, 'fr', 'name', 'Centre d''Ɖtudes Constitutionnelles et Politiques'),
(142881, 112381, 'cs', 'name', 'TechnologickƩ centrum Praha'),
(142882, 112381, 'en', 'name', 'Technology Centre Prague'),
(142883, 112382, 'en', 'name', 'Japan Table Tennis Association'),
(142884, 112382, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å“ēƒå”ä¼š'),
(142885, 112383, 'en', 'name', 'Life Extension Advocacy Foundation'),
(142886, 112384, 'en', 'name', 'Ho Chi Minh City University of Foreign Languages and Information Technology'),
(142887, 112385, 'en', 'name', 'Swiss SkyLab'),
(142888, 112386, 'id', 'name', 'Universitas Kristen Wira Wacana Sumba'),
(142889, 112387, 'en', 'name', 'University of Chakwal'),
(142890, 112388, 'en', 'name', 'Central Research Institute of Mechanical Engineering'),
(142891, 112389, 'en', 'name', 'Naha Medical Association'),
(142892, 112389, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé‚£č¦‡åø‚åŒ»åø«ä¼š'),
(142893, 112390, 'no_lang_code', 'name', 'Nofima'),
(142894, 112391, 'en', 'name', 'Department of Science and Technology of Inner Mongolia Autonomous Region'),
(142895, 112391, 'zh', 'name', 'å†…č’™å¤č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(142896, 112392, 'no_lang_code', 'name', 'Novartis (Singapore)'),
(142897, 112393, 'fr', 'name', 'Vision pour la Robotique'),
(142898, 112394, 'id', 'name', 'Universitas Aufa Royhan'),
(142899, 112395, 'en', 'name', 'Auburn University'),
(142900, 112395, 'es', 'name', 'Universidad de Auburn'),
(142901, 112396, 'en', 'name', 'National Institute for Nuclear Physics, Genoa'),
(142902, 112396, 'it', 'name', 'Istituto Nazionale di Fisica Nucleare, Sezione di Genova'),
(142903, 112397, 'no_lang_code', 'name', 'Equigerminal, Equigerminal (Portugal)'),
(142904, 112398, 'en', 'name', 'Groupe ESA - Higher Education and Research Institution in Agriculture'),
(142905, 112398, 'fr', 'name', 'Ɖcole SupĆ©rieure d''Agriculture'),
(142906, 112399, 'pt', 'name', 'Centro de Estudos Europeus'),
(142907, 112400, 'fr', 'name', 'ComposƩs Alimentaires : BiofonctionnalitƩs et risques Neurotoxiques'),
(142908, 112401, 'en', 'name', 'ARC Centre of Excellence for Mathematical and Statistical Frontiers'),
(142909, 112402, 'mi', 'name', 'Te Wānanga o Aotearoa'),
(142910, 112403, 'en', 'name', 'Rogante Engineering'),
(142911, 112404, 'en', 'name', 'International Relations Council of Turkey'),
(142912, 112405, 'pt', 'name', 'Sociedade Portuguesa de Pediatria'),
(142913, 112406, 'en', 'name', 'Catholic Institute of Technology'),
(142914, 112407, 'id', 'name', 'Universitas Islam Negeri Alauddin Makassar'),
(142915, 112408, 'en', 'name', 'International Foundation for Information Technology'),
(142916, 112408, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½éš›IT貔団'),
(142917, 112409, 'de', 'name', 'Kƶnigliche MilitƤrakademie'),
(142918, 112409, 'en', 'name', 'Royal Military Academy'),
(142919, 112409, 'fr', 'name', 'Ɖcole Royale Militaire'),
(142920, 112409, 'nl', 'name', 'Koninklijke Militaire School'),
(142921, 112410, 'en', 'name', 'Aeronautics and Astronautics Research Center'),
(142922, 112411, 'en', 'name', 'Lutsk National Technical University'),
(142923, 112411, 'pl', 'name', 'Łucki Narodowy Uniwersytet Techniczny'),
(142924, 112411, 'ru', 'name', 'Š›ŃƒŃ†ŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(142925, 112411, 'uk', 'name', 'Š›ŃƒŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ технічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(142926, 112412, 'en', 'name', 'Indiana University Columbus'),
(142927, 112413, 'fr', 'name', 'Laboratoire Magmas et Volcans'),
(142928, 112414, 'en', 'name', 'Suzhou Science and Technology Bureau'),
(142929, 112414, 'zh', 'name', 'č‹å·žåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(142930, 112415, 'pt', 'name', 'Centro de Investigação em Biodiversidade e Recursos Genéticos'),
(142931, 112416, 'en', 'name', 'University of Minnesota Itasca Biological Station and Laboratories'),
(142932, 112417, 'en', 'name', 'The Chicago School'),
(142933, 112418, 'pt', 'name', 'Escola de MĆŗsica Nossa Senhora do Cabo'),
(142934, 112419, 'en', 'name', 'Science and Technology Department of Xinjiang Uyghur Autonomous Region'),
(142935, 112419, 'ug', 'name', 'ؓىنجاڭ Ų¦Ū‡ŁŠŲŗŪ‡Ų± Ų¦Ų§Ł¾ŲŖŁˆŁ†ŁˆŁ… Ų±Ų§ŁŠŁˆŁ†Ł„Ū‡Ł‚ Ł¾Ū•Ł†ā€“ŲŖŪŲ®Ł†Ł‰ŁƒŲ§ نازارىتى'),
(142936, 112419, 'zh', 'name', 'ę–°ē–†ē»“å¾å°”č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(142937, 112420, 'en', 'name', 'Nagano City Education Center'),
(142938, 112420, 'ja', 'name', 'é•·é‡Žåø‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(142939, 112421, 'en', 'name', 'Kyrgyz National Agrarian University named after K.I. Skryabin'),
(142940, 112421, 'ky', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š· ŃƒŠ»ŃƒŃ‚Ń‚ŃƒŠŗ аграрГык ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Šø К. И. Š”ŠŗŃ€ŃŠ±ŠøŠ½ атынГагы'),
(142941, 112421, 'ru', 'name', 'ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. К.И.Š”ŠŗŃ€ŃŠ±ŠøŠ½Š°'),
(142942, 112422, 'en', 'name', 'National Radiation Protection Institute'),
(142943, 112423, 'no_lang_code', 'name', 'Bluepharm, Bluepharma (Portugal)'),
(142944, 112424, 'no_lang_code', 'name', 'SmithKline Beecham (United States)'),
(142945, 112425, 'en', 'name', 'Organ and Tissue Authority'),
(142946, 112426, 'pt', 'name', 'CĆ¢mara Municipal de Vila do Conde'),
(142947, 112427, 'cs', 'name', 'SlezskĆ” univerzita v Opavě'),
(142948, 112427, 'en', 'name', 'Silesian University in Opava'),
(142949, 112428, 'no_lang_code', 'name', 'Bharathidasan University'),
(142950, 112428, 'ta', 'name', 'ą®Ŗą®¾ą®°ą®¤ą®æą®¤ą®¾ą®šą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(142951, 112429, 'en', 'name', 'Croatian Meteorological and Hydrological Service'),
(142952, 112429, 'hr', 'name', 'Državni hidrometeoroloŔki zavod'),
(142953, 112430, 'en', 'name', 'Japan Society of Plastic and Reconstructive Surgery'),
(142954, 112430, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å½¢ęˆå¤–ē§‘å­¦ä¼š'),
(142955, 112431, 'en', 'name', 'World Health Organization Regional Office for South-East Asia'),
(142956, 112432, 'en', 'name', 'Nagoya Ryujo Women''s University'),
(142957, 112432, 'ja', 'name', 'åå¤å±‹ęŸ³åŸŽå„³å­å¤§å­¦'),
(142958, 112433, 'en', 'name', 'Fatih University'),
(142959, 112433, 'tr', 'name', 'Fatih Üniversitesi'),
(142960, 112434, 'en', 'name', 'Worldwide Hospice Palliative Care Alliance'),
(142961, 112435, 'en', 'name', 'Consortium of European Social Science Data Archives'),
(142962, 112436, 'fr', 'name', 'Centre de Recherche en ArchƩologie, ArchƩosciences, Histoire'),
(142963, 112437, 'pt', 'name', 'Agência Nacional para a Qualificação e o Ensino Profissional IP'),
(142964, 112438, 'en', 'name', 'Overseas Environmental Cooperation Center, Japan'),
(142965, 112438, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–ē’°å¢ƒå”åŠ›ć‚»ćƒ³ć‚æćƒ¼'),
(142966, 112439, 'en', 'name', 'The Africa Society of Japan'),
(142967, 112439, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚¢ćƒ•ćƒŖć‚«å”ä¼š'),
(142968, 112440, 'fr', 'name', 'Institut d''Histoire des ReprƩsentations et des IdƩes dans les ModernitƩs'),
(142969, 112441, 'de', 'name', 'Stella Vorarlberg Privathochschule für Musik'),
(142970, 112442, 'cy', 'name', 'Prifysgol St Andrews'),
(142971, 112442, 'en', 'name', 'University of St Andrews'),
(142972, 112443, 'en', 'name', 'National Health Service'),
(142973, 112444, 'fr', 'name', 'Institut de Droit ComparƩs'),
(142974, 112445, 'en', 'name', 'Japan Painting Contractors Association'),
(142975, 112445, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å”—č£…å·„ę„­ä¼š'),
(142976, 112446, 'en', 'name', 'United States Cyber Command'),
(142977, 112447, 'fr', 'name', 'GIPSA-Lab'),
(142978, 112448, 'en', 'name', 'Queensland Department of Environment and Science'),
(142979, 112449, 'cs', 'name', 'Český nÔrodní uzel pro výzkum rodiny GGP-CZ'),
(142980, 112449, 'en', 'name', 'Czech National Cluster for Family Research'),
(142981, 112450, 'pt', 'name', 'Vasco da Gama CoLAB'),
(142982, 112451, 'en', 'name', 'Vilnius Gediminas Technical University'),
(142983, 112451, 'lt', 'name', 'Vilniaus Gedimino technikos universitetas'),
(142984, 112451, 'pl', 'name', 'Wileński Uniwersytet Techniczny im. Giedymina'),
(142985, 112451, 'ru', 'name', 'Š’ŠøŠ»ŃŒŠ½ŃŽŃŃŠŗŠøŠ¹ технический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ГеГимина'),
(142986, 112452, 'en', 'name', 'Luxoft, Luxoft (Switzerland)'),
(142987, 112453, 'no_lang_code', 'name', 'Algardata Sistemas InformƔticos (Portugal), Algardata Sistemas InformƔticos, S.A.'),
(142988, 112454, 'en', 'name', 'Real Estate Companies Association of Japan'),
(142989, 112454, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäøå‹•ē”£å”ä¼š'),
(142990, 112455, 'en', 'name', 'Baqai Institute of Diabetology and Endocrinology'),
(142991, 112456, 'de', 'name', 'Institut für Geophysik'),
(142992, 112456, 'en', 'name', 'Institute of Geophysics'),
(142993, 112457, 'en', 'name', 'Latin American and Caribbean Center on Health Sciences Information'),
(142994, 112457, 'es', 'name', 'Centro Latinoamericano y del Caribe de Información en Ciencias de la Salud'),
(142995, 112457, 'pt', 'name', 'Centro Latino-Americano e do Caribe de Informação em Ciências da Saúde'),
(142996, 112458, 'fr', 'name', 'SAntƩ INgenierie BIOlogie Saint-Etienne'),
(142997, 112459, 'de', 'name', 'Institut für Molekulare Pflanzenbiologie'),
(142998, 112459, 'en', 'name', 'Institute of Molecular Plant Biology'),
(142999, 112460, 'no_lang_code', 'name', 'Korn Ferry Lisbon, Korn Ferry Lisbon (Portugal)'),
(143000, 112461, 'en', 'name', 'Nootan Ayurvedic College & Research Centre'),
(143001, 112462, 'en', 'name', 'Tashkent International University'),
(143002, 112462, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет'),
(143003, 112463, 'pt', 'name', 'Governo do Estado de SĆ£o Paulo'),
(143004, 112464, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ Ł„Ł„Ų±ŁŠŲ§Ų¶ŁŠŲ§ŲŖ'),
(143005, 112464, 'en', 'name', 'National Higher School of Mathematics'),
(143006, 112464, 'fr', 'name', 'Ecole Nationale SupƩrieure de MathƩmatiques'),
(143007, 112465, 'en', 'name', 'Ministry of Education'),
(143008, 112465, 'pt', 'name', 'Ministério da Educação'),
(143009, 112466, 'pt', 'name', 'Fraterna - Centro ComunitÔrio de Solidariedade e Integração Social'),
(143010, 112467, 'en', 'name', 'Office of Energy Efficiency and Renewable Energy'),
(143011, 112468, 'it', 'name', 'Agenzia Regionale protezione ambientale del Lazio'),
(143012, 112469, 'de', 'name', 'Institut für Naturwissenschaften'),
(143013, 112469, 'en', 'name', 'Institute of Natural Sciences'),
(143014, 112469, 'fr', 'name', 'Institut des Sciences naturelles'),
(143015, 112470, 'en', 'name', 'K.M.G. College of Arts and Science (Autonomous)'),
(143016, 112471, 'en', 'name', 'University of Florida'),
(143017, 112471, 'es', 'name', 'Universidad de la Florida'),
(143018, 112471, 'fr', 'name', 'UniversitƩ de floride'),
(143019, 112472, 'en', 'name', 'Sudden Cardiac Arrest UK'),
(143020, 112473, 'en', 'name', 'Altai Economics and Law Institute'),
(143021, 112473, 'ru', 'name', 'Алтайский ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠ¾-ŃŽŃ€ŠøŠ“ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(143022, 112474, 'ar', 'name', 'Ł…Ų±ŁƒŲ² البحث في Ų§Ł„Ų£Ł†Ų«Ų±ŁˆŲØŁˆŲ¬ŁŠŲ§ Ų§Ł„Ų§Ų¬ŲŖŁ…Ų§Ų¹ŁŠŲ© ŁˆŲ§Ł„Ų«Ł‚Ų§ŁŁŠŲ©'),
(143023, 112474, 'en', 'name', 'Centre of Research in Social and Cultural Anthropology'),
(143024, 112474, 'fr', 'name', 'Centre de Recherche en Anthropologie Sociale et Culturelle'),
(143025, 112475, 'en', 'name', 'Institute for Modeling Plasma, Atmospheres and Cosmic Dust'),
(143026, 112476, 'pt', 'name', 'Assembleia da RepĆŗblica Biblioteca Passos Manuel'),
(143027, 112477, 'en', 'name', 'Bureau of Naval Personnel'),
(143028, 112478, 'en', 'name', 'Akita Prefectural Police'),
(143029, 112478, 'ja', 'name', 'ē§‹ē”°ēœŒč­¦åÆŸ'),
(143030, 112479, 'en', 'name', 'The Japan Building Disaster Prevention Association'),
(143031, 112479, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰é˜²ē½å”ä¼š'),
(143032, 112480, 'de', 'name', 'Zentrum Internationalisierung, MobilitƤt und Aussenbeziehungen'),
(143033, 112480, 'en', 'name', 'Centre of Internationalisation, Mobility and External Relations'),
(143034, 112481, 'en', 'name', 'University of Missouri'),
(143035, 112481, 'es', 'name', 'Universidad de Misuri'),
(143036, 112481, 'fr', 'name', 'UniversitƩ du Missouri'),
(143037, 112482, 'en', 'name', 'Alzheimer’s Research UK'),
(143038, 112483, 'pt', 'name', 'Consultores de LĆ­nguas'),
(143039, 112484, 'fr', 'name', 'Laboratoire Animal et Agroécosystèmes'),
(143040, 112485, 'en', 'name', 'United States Space Force'),
(143041, 112486, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų“Ų§Ų°Ł„ŁŠ بن جديد -الطارف'),
(143042, 112486, 'en', 'name', 'Chadli Bendjedid El Tarf University'),
(143043, 112486, 'fr', 'name', 'UniversitƩ Chadli Bendjedid d''El Tarf'),
(143044, 112487, 'no_lang_code', 'name', 'Servensino (Portugal)'),
(143045, 112488, 'en', 'name', 'All India Institute of Medical Sciences Raipur'),
(143046, 112488, 'hi', 'name', 'अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤°ą¤¾ą¤Æą¤Ŗą„ą¤°'),
(143047, 112489, 'en', 'name', 'United States Southern Command'),
(143048, 112490, 'en', 'name', 'Fisheries Education and Training Agency'),
(143049, 112491, 'en', 'name', 'Mekdela Amba University'),
(143050, 112492, 'es', 'name', 'Instituto Tecnológico Superior de Tlaxco'),
(143051, 112493, 'pt', 'name', 'Casa do Douro Federação Renovação do Douro'),
(143052, 112494, 'en', 'name', 'Federal College of Education, Eha-Amufu'),
(143053, 112495, 'no_lang_code', 'name', 'Airbus (Netherlands)'),
(143054, 112496, 'no_lang_code', 'name', 'Dias de Sousa (Portugal), Dias de Sousa, S.A.'),
(143055, 112497, 'es', 'name', 'Escuela Superior de Guerra Naval'),
(143056, 112498, 'en', 'name', 'Hirosaki Stroke and Rehabilitation Center'),
(143057, 112498, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé»Žę˜Žéƒ·å¼˜å‰č„³å’äø­ćƒ»ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(143058, 112499, 'de', 'name', 'Institut für Werkzeugmaschinen und Fertigung'),
(143059, 112499, 'en', 'name', 'Institute of Machine Tools and Manufacturing'),
(143060, 112500, 'en', 'name', 'Carl R. Darnall Army Medical Center'),
(143061, 112501, 'en', 'name', 'Thailand National Sports University'),
(143062, 112501, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøąø²ąø£ąøąøµąø¬ąø²ą¹ąø«ą¹ˆąø‡ąøŠąø²ąø•ąø“'),
(143063, 112502, 'fr', 'name', 'Ɖtudes du Contemporain en LittĆ©ratures, Langues, Arts'),
(143064, 112503, 'fr', 'name', 'Fondation Sciences mathƩmatiques de Paris'),
(143065, 112504, 'en', 'name', 'Niigata City Institute of Public Health and Environment'),
(143066, 112504, 'ja', 'name', 'ę–°ę½Ÿåø‚č”›ē”Ÿē’°å¢ƒē ”ē©¶ę‰€'),
(143067, 112505, 'no_lang_code', 'name', 'Logiser (Portugal), Logiser, S.A.'),
(143068, 112506, 'pt', 'name', 'Santa Casa da Misericórdia de Serpa'),
(143069, 112507, 'pt', 'name', 'Sociedade Portuguesa de Medicina Laboratorial'),
(143070, 112508, 'ja', 'name', 'ćƒˆćƒØć‚æč‡Ŗå‹•č»Šę Ŗå¼ä¼šē¤¾'),
(143071, 112508, 'no_lang_code', 'name', 'Toyota Motor Corporation (Japan)'),
(143072, 112509, 'en', 'name', 'Nara Prefectural Institute of Industrial Development'),
(143073, 112509, 'ja', 'name', 'å„ˆč‰ÆēœŒē”£ę„­ęŒÆčˆˆē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(143074, 112510, 'en', 'name', 'Jouf University'),
(143075, 112511, 'de', 'name', 'SWISDATA gGmbH'),
(143076, 112512, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¢Ų²Ų§Ł„ Ł„Ł„ŲŖŁ†Ł…ŁŠŲ© Ų§Ł„ŲØŲ“Ų±ŁŠŲ©'),
(143077, 112512, 'en', 'name', 'Azal University for Human Development'),
(143078, 112513, 'de', 'name', 'Internationale Forschungsgemeinschaft Futtermitteltechnik, Internationale Forschungsgemeinschaft Futtermitteltechnik e.V.'),
(143079, 112513, 'en', 'name', 'International Research Association of Feed Technology'),
(143080, 112514, 'pt', 'name', 'Investigação em Ciências Sociais e Gestão'),
(143081, 112515, 'en', 'name', 'ICMR-National Institute of Virology'),
(143082, 112515, 'mr', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤·ą¤¾ą¤£ą„‚ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾'),
(143083, 112516, 'en', 'name', 'MMGH Consulting, MMGH Consulting (Switzerland)'),
(143084, 112517, 'pt', 'name', 'CĆ¢mara Municipal de Vendas Novas'),
(143085, 112518, 'pt', 'name', 'Sociedade Portuguesa de Arte-Terapia'),
(143086, 112519, 'fr', 'name', 'CREPAL - Centre de recherches sur les pays lusophones, Centre de recherches sur les pays lusophones'),
(143087, 112520, 'pt', 'name', 'Centro Cultural de BelƩm'),
(143088, 112521, 'en', 'name', 'Felician University'),
(143089, 112522, 'es', 'name', 'Jardƭn BotƔnico de Missouri'),
(143090, 112523, 'de', 'name', 'Leibniz UniversitƤt Hannover'),
(143091, 112523, 'en', 'name', 'Leibniz University Hannover'),
(143092, 112524, 'en', 'name', 'Japan Recreation And Miscellaneous Goods Safety Laboratory'),
(143093, 112524, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ę–‡åŒ–ē”Øå“å®‰å…Øč©¦éØ“ę‰€'),
(143094, 112525, 'en', 'name', 'The Japan Transportation Planning Association'),
(143095, 112525, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬äŗ¤é€ščØˆē”»å”ä¼š'),
(143096, 112526, 'pt', 'name', 'Ballet Teatro Contemporâneo do Porto'),
(143097, 112527, 'ms', 'name', 'Universiti Teknologi MARA System'),
(143098, 112528, 'en', 'name', 'Royal Devon & Exeter NHS Foundation Trust'),
(143099, 112529, 'no_lang_code', 'name', 'Piezocryst (Austria)'),
(143100, 112530, 'es', 'name', 'Universidad de la RepĆŗblica de Uruguay, University of the Republic of Uruguay'),
(143101, 112531, 'pt', 'name', 'Arquivo Municipal de Lisboa'),
(143102, 112532, 'pt', 'name', 'Secretaria de Estado de Educação de Minas Gerais'),
(143103, 112533, 'en', 'name', 'Lower Shabelle University'),
(143104, 112534, 'en', 'name', 'The Reward Foundation'),
(143105, 112535, 'en', 'name', 'Cape Town Creative Academy'),
(143106, 112536, 'en', 'name', 'Hualien Tzu Chi Medical Center'),
(143107, 112537, 'cs', 'name', 'SoukromÔ VysokÔ Skola Ekonomických Studií'),
(143108, 112537, 'en', 'name', 'Private University College of Economic Studies'),
(143109, 112538, 'da', 'name', 'Museum Lolland-Falster'),
(143110, 112539, 'en', 'name', 'Catholic University of Santiago de Guayaquil'),
(143111, 112539, 'es', 'name', 'Universidad Católica de Santiago de Guayaquil'),
(143112, 112540, 'en', 'name', 'Maulana Abul Kalam Azad University of Technology, West Bengal'),
(143113, 112541, 'en', 'name', 'Sincan Training and Research Hospital'),
(143114, 112541, 'tr', 'name', 'Sincan Eğitim ve Araştırma Hastanesi'),
(143115, 112542, 'en', 'name', 'Federal University of Grande Dourados'),
(143116, 112542, 'es', 'name', 'Universidad Federal de Grande Dourados'),
(143117, 112542, 'fr', 'name', 'UniversitƩ FƩdƩrale de Grande Dourados'),
(143118, 112542, 'pt', 'name', 'Universidade Federal da Grande Dourados'),
(143119, 112543, 'pt', 'name', 'Centro de Direito BiomƩdico'),
(143120, 112544, 'en', 'name', 'De Montfort University'),
(143121, 112545, 'en', 'name', 'EMSO-France'),
(143122, 112546, 'en', 'name', 'Australian Government'),
(143123, 112547, 'en', 'name', 'Nagasaki International Association'),
(143124, 112547, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé•·å“ŽēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(143125, 112548, 'en', 'name', 'Portuguese microBiological Resources Center Network'),
(143126, 112549, 'ar', 'name', 'Ł…Ų±ŁƒŲ² البحث في ŲŖŁ‡ŁŠŲ¦Ų© Ų§Ł„Ų„Ł‚Ł„ŁŠŁ…'),
(143127, 112549, 'en', 'name', 'Territory Planning Research Center'),
(143128, 112549, 'fr', 'name', 'Centre de Recherche en AmƩnagement du Territoire'),
(143129, 112550, 'en', 'name', 'Indigo Rock Marine Research Centre'),
(143130, 112551, 'en', 'name', 'HITEC Institute of Medical Sciences'),
(143131, 112552, 'pt', 'name', 'Sociedade Portuguesa de NumismƔtica'),
(143132, 112553, 'en', 'name', 'Electrical Research and Development Association'),
(143133, 112554, 'en', 'name', 'Bielsko-Biala University of Applied Sciences'),
(143134, 112554, 'pl', 'name', 'Akademia Nauk Stosowanych w Bielsku-Białej'),
(143135, 112555, 'en', 'name', 'National University of Villa MarĆ­a'),
(143136, 112555, 'es', 'name', 'Universidad Nacional de Villa MarĆ­a'),
(143137, 112556, 'en', 'name', 'Edinburgh Systems, Edinburgh Systems (United Kingdom)'),
(143138, 112557, 'en', 'name', 'NEC C&C Foundation'),
(143139, 112557, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗNEC C&C貔団'),
(143140, 112558, 'en', 'name', 'Heilongjiang Provincial Science and Technology Department'),
(143141, 112558, 'zh', 'name', 'é»‘é¾™ę±Ÿēœē§‘ęŠ€åŽ…'),
(143142, 112559, 'en', 'name', 'Papua New Guinea National Research Institute'),
(143143, 112560, 'pt', 'name', 'Direção-Geral de Estatísticas da Educação e Ciência'),
(143144, 112561, 'pt', 'name', 'Unidade Local de SaĆŗde Santa Maria'),
(143145, 112562, 'en', 'name', 'eDNA solutions AB, eDNA solutions AB (Sweden)'),
(143146, 112563, 'de', 'name', 'UniversitƤt Ulm'),
(143147, 112563, 'en', 'name', 'Ulm University'),
(143148, 112564, 'no_lang_code', 'name', 'Chevron (Australia)'),
(143149, 112565, 'en', 'name', 'Karakoram International University'),
(143150, 112565, 'ur', 'name', 'ŲØŪŒŁ† Ų§Ł„Ų§Ł‚ŁˆŲ§Ł…ŪŒ جامعہ Ł‚Ų±Ų§Ł‚Ų±Ł…ā€Ž'),
(143151, 112566, 'fr', 'name', 'Observatoire des Sciences de l’Univers Terre Homme Environnement Temps Astronomie, Universe Sciences Observatory THETA'),
(143152, 112567, 'en', 'name', 'Royal Borough of Kingston upon Thames'),
(143153, 112568, 'pt', 'name', 'ConferĆŖncia Episcopal Portuguesa'),
(143154, 112569, 'de', 'name', 'Zentrum Berufspraktische Studien'),
(143155, 112569, 'en', 'name', 'Centre of Professional Studies'),
(143156, 112570, 'en', 'name', 'Bukovinian University'),
(143157, 112570, 'uk', 'name', 'ŠŸŠ’ŠŠ— "Š‘ŃƒŠŗŠ¾Š²ŠøŠ½ŃŃŒŠŗŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚"'),
(143158, 112571, 'en', 'name', 'ERN CRANIO'),
(143159, 112572, 'en', 'name', 'International Union for Conservation of Nature (Guinea-Bissau)'),
(143160, 112572, 'fr', 'name', 'Union Internationale Pour la Conservation de la Nature'),
(143161, 112573, 'en', 'name', 'Hausdorff Center for Mathematics'),
(143162, 112574, 'en', 'name', 'Griffith College Cork'),
(143163, 112574, 'ga', 'name', 'ColƔiste Uƭ Ghrƭofa, Corcaigh'),
(143164, 112575, 'de', 'name', 'Universitätsklinikum Gießen und Marburg'),
(143165, 112575, 'en', 'name', 'University Hospital of Giessen and Marburg'),
(143166, 112576, 'pt', 'name', 'Instituto Português de Relações Internacionais'),
(143167, 112577, 'de', 'name', 'Institut für Elektronik'),
(143168, 112577, 'en', 'name', 'Institute for Electronics'),
(143169, 112578, 'en', 'name', 'Microsoft (Singapore), Microsoft Operations Pte Ltd'),
(143170, 112579, 'no_lang_code', 'name', 'Caetano de Freitas & Associados, Caetano de Freitas & Associados (Portugal), Caetano de Freitas & Partners'),
(143171, 112580, 'en', 'name', 'Japan Society of Physical Education, Health and Sport Sciences'),
(143172, 112580, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ä½“č‚²å­¦ä¼š'),
(143173, 112581, 'en', 'name', 'Kanazawa Seiryo University Women''s Junior College'),
(143174, 112581, 'ja', 'name', 'é‡‘ę²¢ę˜ŸēØœå¤§å­¦å„³å­ēŸ­ęœŸå¤§å­¦éƒØ'),
(143175, 112582, 'pt', 'name', 'Centro de Arqueologia da Almada'),
(143176, 112583, 'en', 'name', 'University of Missouri System'),
(143177, 112584, 'en', 'name', 'State Organization "Institute of Market and Economic&Ecological Researches of NAS of Ukraine"'),
(143178, 112584, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° "Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Ń€ŠøŠ½ŠŗŃƒ і економіко-екологічних Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ ŠŠŠ України"'),
(143179, 112585, 'en', 'name', 'Exactpro Systems, Exactpro Systems (United Kingdom)'),
(143180, 112586, 'en', 'name', 'Tampere University'),
(143181, 112586, 'fi', 'name', 'Tampereen Yliopisto'),
(143182, 112587, 'en', 'name', 'Environmental Data Initiative'),
(143183, 112588, 'en', 'name', 'cynkra GmbH (Switzerland)'),
(143184, 112589, 'pt', 'name', 'Escola Superior Pedagógica do Cuanza Norte'),
(143185, 112590, 'en', 'name', 'St. Petersburg State Technological Institute'),
(143186, 112590, 'ru', 'name', 'Данкт-ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ технологический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(143187, 112591, 'fr', 'name', 'ZĆŗ'),
(143188, 112592, 'en', 'name', 'Koto Memorial Hospital'),
(143189, 112592, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ę˜“ä¼šę¹–ę±čØ˜åæµē—…é™¢'),
(143190, 112593, 'bg', 'name', 'Университет по Š°Ń€Ń…ŠøŃ‚ŠµŠŗŃ‚ŃƒŃ€Š°, строителство Šø Š³ŠµŠ¾Š“ŠµŠ·ŠøŃ'),
(143191, 112593, 'en', 'name', 'University of Architecture, Civil Engineering and Geodesy'),
(143192, 112594, 'en', 'name', 'Professional University of Information and Management for Innovation'),
(143193, 112594, 'ja', 'name', 'ęƒ…å ±ēµŒå–¶ć‚¤ćƒŽćƒ™ćƒ¼ć‚·ćƒ§ćƒ³å°‚é–€č·å¤§å­¦'),
(143194, 112595, 'bn', 'name', 'অখিল ভারতীয় ą¦†ą¦Æą¦¼ą§ą¦°ą§ą¦¬ą¦æą¦œą§ą¦žą¦¾ą¦Ø ą¦øą¦‚ą¦øą§ą¦„ą¦¾ą¦Ø, ą¦•ą¦²ą§ą¦Æą¦¾ą¦£ą§€'),
(143195, 112595, 'en', 'name', 'All India Institute of Medical Sciences, Kalyani'),
(143196, 112596, 'de', 'name', 'Justus-Liebig-Universität Gießen'),
(143197, 112596, 'en', 'name', 'Justus Liebig University Giessen'),
(143198, 112597, 'pt', 'name', 'Centro de História'),
(143199, 112598, 'de', 'name', 'Institut für Bau- und Infrastrukturmanagement'),
(143200, 112598, 'en', 'name', 'Institute of Construction and Infrastructure Management'),
(143201, 112599, 'en', 'name', 'Japan Atomic Energy Relations Organization'),
(143202, 112599, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åŽŸå­åŠ›ę–‡åŒ–č²”å›£'),
(143203, 112600, 'ca', 'name', 'Escola Superior de ComerƧ Internacional'),
(143204, 112601, 'cs', 'name', 'JihočeskĆ” univerzita v Českých BudějovicĆ­ch'),
(143205, 112601, 'en', 'name', 'University of South Bohemia in ČeskĆ© Budějovice'),
(143206, 112602, 'pt', 'name', 'Observatório de Economia e Gestão de Fraude'),
(143207, 112603, 'de', 'name', 'Institut für Psychologie, Umwelt, Nachhaltigkeit und Kybernetik, Institut für Psychologie, Umwelt, Nachhaltigkeit und Kybernetik (Germany)'),
(143208, 112604, 'bn', 'name', 'সিটি ą¦•ą¦²ą§‡ą¦œ'),
(143209, 112604, 'en', 'name', 'City College, Kolkata'),
(143210, 112605, 'pt', 'name', 'Autoridade Antidopagem de Portugal'),
(143211, 112606, 'en', 'name', 'Human Media Creation Center'),
(143212, 112606, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗä¹å·žćƒ’ćƒ„ćƒ¼ćƒžćƒ³ćƒ”ćƒ‡ć‚£ć‚¢å‰µé€ ć‚»ćƒ³ć‚æćƒ¼'),
(143213, 112607, 'en', 'name', 'Jigawa State Polytechnic, Dutse'),
(143214, 112608, 'en', 'name', 'Public Health Concern Trust, Nepal'),
(143215, 112608, 'ne', 'name', 'जन ą¤øą„ą¤µą¤¾ą¤øą„ą¤„ą„ą¤Æ ą¤øą¤°ą„‹ą¤•ą¤¾ą¤° ą¤Ÿą„ą¤°ą¤·ą„ą¤Ÿ'),
(143216, 112609, 'en', 'name', 'The Affiliated Yongchuan Hospital of Chongqing Medical University'),
(143217, 112609, 'zh', 'name', 'é‡åŗ†åŒ»ē§‘å¤§å­¦é™„å±žę°øå·åŒ»é™¢'),
(143218, 112610, 'en', 'name', 'Naval Postgraduate School'),
(143219, 112611, 'en', 'name', 'Abadan University of Medical Sciences'),
(143220, 112611, 'fa', 'name', 'دانؓگاه Ų¹Ł„ŁˆŁ… پزؓکی آبادان'),
(143221, 112612, 'de', 'name', 'Laboratorium für Anorganische Chemie'),
(143222, 112612, 'en', 'name', 'Laboratory of Inorganic Chemistry'),
(143223, 112613, 'en', 'name', 'Felicia College of Childhood Education'),
(143224, 112613, 'ja', 'name', 'ćƒ•ć‚§ćƒŖć‚·ć‚¢ć“ć©ć‚‚ēŸ­ęœŸå¤§å­¦'),
(143225, 112614, 'fr', 'name', 'Centre de Recherche sur les Fonctionnements et Dysfonctionnements Psychologiques'),
(143226, 112615, 'no_lang_code', 'name', 'Boeing (Australia)'),
(143227, 112616, 'no_lang_code', 'name', 'TNA Animal Technology and Nutrition, TNA Tecnologia e Nutrição Animal (Portugal), TNA Tecnologia e Nutrição Animal, S.A.'),
(143228, 112617, 'en', 'name', 'Well-being, Organizations, Digital, Habitability, Education, Universality, Relations, Knowledge');
INSERT INTO `ror_settings` VALUES
(143229, 112617, 'fr', 'name', 'Bien-ĆŖtre, Organisations, NumĆ©rique, HabitabilitĆ©, Ɖducation, UniversalitĆ©, Relations, Savoirs - BONHEURS'),
(143230, 112618, 'pt', 'name', 'Centro de Investigação em Ciências da Construção'),
(143231, 112619, 'en', 'name', 'Cyber University Indonesia'),
(143232, 112619, 'id', 'name', 'Universitas Siber Indonesia'),
(143233, 112620, 'en', 'name', 'Hokkaido Guide Dogs Association'),
(143234, 112620, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŒ—ęµ·é“ē›²å°ŽēŠ¬å”ä¼š'),
(143235, 112621, 'en', 'name', 'Aomori City Hospital'),
(143236, 112621, 'ja', 'name', 'é’ę£®åø‚ę°‘ē—…é™¢'),
(143237, 112622, 'en', 'name', 'Omiya-Kyoritsu Hospital'),
(143238, 112622, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£ę–°ē”Ÿä¼šå¤§å®®å…±ē«‹ē—…é™¢'),
(143239, 112623, 'fr', 'name', 'SociƩtƩ ArithmƩtique de Bordeaux'),
(143240, 112624, 'pt', 'name', 'Centro de Investigação em Educação e Psicologia'),
(143241, 112625, 'en', 'name', 'Beijing Municipal Science and Technology Commission'),
(143242, 112625, 'zh', 'name', 'åŒ—äŗ¬åø‚ē§‘å­¦ęŠ€ęœÆå§”å‘˜ä¼š'),
(143243, 112626, 'id', 'name', 'Politeknik Statistika STIS'),
(143244, 112627, 'en', 'name', 'Hurley Medical Center'),
(143245, 112628, 'en', 'name', 'National Agricultural Insurance Association'),
(143246, 112628, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½č¾²ę„­å…±ęøˆå”ä¼š'),
(143247, 112629, 'en', 'name', 'Kannur Medical College'),
(143248, 112629, 'ml', 'name', 'ą“•ą“£ąµą“£ąµ‚ąµ¼ ą“®ąµ†ą“”ą“æą“•ąµą“•ąµ½ ą“•ąµ‡ą“¾ą“³ąµ‡ą“œąµ'),
(143249, 112630, 'en', 'name', 'Amano Institute of Technology'),
(143250, 112630, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤©é‡Žå·„ę„­ęŠ€č”“ē ”ē©¶ę‰€'),
(143251, 112631, 'fr', 'name', 'HƓtel-Dieu de QuƩbec'),
(143252, 112632, 'en', 'name', 'Chinese Academy of Sciences'),
(143253, 112632, 'zh', 'name', '中国科学院'),
(143254, 112633, 'it', 'name', 'Agenzia Regionale Protezione Ambiente Valle d''Aosta'),
(143255, 112634, 'en', 'name', 'Yamagata Prefectural Inland Water Fisheries Experiment Station'),
(143256, 112634, 'ja', 'name', 'å±±å½¢ēœŒå†…ę°“é¢ę°“ē”£ē ”ē©¶ę‰€'),
(143257, 112635, 'en', 'name', 'Nara Prefectural Livestock Experiment Station'),
(143258, 112635, 'ja', 'name', 'å„ˆč‰ÆēœŒē•œē”£ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(143259, 112636, 'en', 'name', 'Electrochemical Safety Research Institute'),
(143260, 112637, 'en', 'name', 'The Japan Society for Bioscience, Biotechnology, and Agrochemistry'),
(143261, 112637, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č¾²čŠøåŒ–å­¦ä¼š'),
(143262, 112638, 'it', 'name', 'Institut Agricole RƩgional'),
(143263, 112639, 'no_lang_code', 'name', 'RTX (United States)'),
(143264, 112640, 'en', 'name', 'Japan Professional Football League'),
(143265, 112640, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ—ćƒ­ć‚µćƒƒć‚«ćƒ¼ćƒŖćƒ¼ć‚°'),
(143266, 112641, 'en', 'name', 'Navy and Marine Corps Force Health Protection Command'),
(143267, 112642, 'es', 'name', 'Sociedad Cientifica de BibliometrĆ­a y CienciometrĆ­a'),
(143268, 112643, 'en', 'name', 'Institute of Art History of the Art Research Centre of the Slovak Academy of Sciences'),
(143269, 112643, 'sk', 'name', 'Ústav dejín umenia Centra vied o umení Slovenskej akadémie vied'),
(143270, 112644, 'fr', 'name', 'CRIAL - Centre de Recherche Interuniversitaire sur l''AmƩrique Latine, Centre de Recherche Interuniversitaire sur l''AmƩrique Latine'),
(143271, 112645, 'en', 'name', 'HUN-REN Wigner Research Centre for Physics'),
(143272, 112645, 'hu', 'name', 'HUN-REN Wigner Fizikai Kutatóközpont'),
(143273, 112646, 'en', 'name', 'Laboratory of Agro-Industrial Chemistry'),
(143274, 112646, 'fr', 'name', 'Laboratoire de Chimie Agro-Industrielle'),
(143275, 112647, 'en', 'name', 'Japan Subway Association'),
(143276, 112647, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åœ°äø‹é‰„å”ä¼š'),
(143277, 112648, 'en', 'name', 'The Women University Multan'),
(143278, 112648, 'ur', 'name', 'ŁˆŲ¤Ł…Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ ملتان'),
(143279, 112649, 'en', 'name', 'Tianjin University of Technology and Education'),
(143280, 112649, 'zh', 'name', 'å¤©ę“„čŒäøšęŠ€ęœÆåøˆčŒƒå¤§å­¦'),
(143281, 112650, 'en', 'name', 'Nicolaus Copernicus Superior School'),
(143282, 112650, 'pl', 'name', 'Szkoła Główna Mikołaja Kopernika'),
(143283, 112651, 'en', 'name', 'Kenwakai Ootemachi Hospital'),
(143284, 112651, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå„å’Œä¼šå¤§ę‰‹ē”ŗē—…é™¢'),
(143285, 112652, 'pt', 'name', 'Sociedade CientĆ­fica de Pedagogia do Desporto'),
(143286, 112653, 'no_lang_code', 'name', 'Schréder Iluminação (Portugal), Schréder Iluminação, S.A.'),
(143287, 112654, 'en', 'name', 'Organization for Promoting Urban Development'),
(143288, 112654, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę°‘é–“éƒ½åø‚é–‹ē™ŗęŽØé€²ę©Ÿę§‹'),
(143289, 112655, 'it', 'name', 'Ordine Architetti Pianificatori Paesaggisti Conservatori di Napoli e Provincia'),
(143290, 112656, 'en', 'name', 'University of Michigan–Dearborn'),
(143291, 112657, 'de', 'name', 'Krankenhaus Dresden-Friedrichstadt'),
(143292, 112658, 'en', 'name', 'Aix-Marseille University'),
(143293, 112658, 'fr', 'name', 'Aix-Marseille UniversitƩ'),
(143294, 112659, 'cs', 'name', 'VysokĆ© učenĆ­ technickĆ© v Brně'),
(143295, 112659, 'en', 'name', 'Brno University of Technology'),
(143296, 112660, 'en', 'name', 'Joshibi Junior College of Art and Design'),
(143297, 112660, 'ja', 'name', 'å„³å­ē¾Žč”“å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(143298, 112661, 'en', 'name', 'St. Andrews Institute of Technology and Management'),
(143299, 112662, 'en', 'name', 'Hamburg Port Authority'),
(143300, 112663, 'en', 'name', 'Aerospace Technologies of Australia, Aerospace Technologies of Australia (Australia)'),
(143301, 112664, 'en', 'name', 'Circular Economy Foundation'),
(143302, 112665, 'en', 'name', 'Shiga Prefectural Livestock Technology Promotion Center'),
(143303, 112665, 'ja', 'name', 'ę»‹č³€ēœŒē•œē”£ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(143304, 112666, 'en', 'name', 'Shenzhen Babel InfoTech. Co., Ltd., Shenzhen Babel InfoTech. Co., Ltd. (China)'),
(143305, 112666, 'zh', 'name', 'ę·±åœ³å·“č“å°”äæ”ęÆē§‘ęŠ€ęœ‰é™å…¬åø'),
(143306, 112667, 'en', 'name', 'Dr. Dayaram Patel Pharmacy College'),
(143307, 112668, 'en', 'name', 'ERN RARE-LIVER'),
(143308, 112669, 'en', 'name', 'Institute of Malariology, Parasitology, and Entomology Quy Nhon'),
(143309, 112669, 'vi', 'name', 'Viện sốt rĆ©t ký sinh trùng Quy NhĘ”n'),
(143310, 112670, 'en', 'name', 'Government of India'),
(143311, 112671, 'en', 'name', 'University of Iowa'),
(143312, 112671, 'es', 'name', 'Universidad de Iowa'),
(143313, 112671, 'fr', 'name', 'UniversitƩ de l''iowa'),
(143314, 112672, 'no_lang_code', 'name', 'Lundbeck (Portugal)'),
(143315, 112673, 'en', 'name', 'Project Data Sphere'),
(143316, 112674, 'en', 'name', 'Japan Waste MANAGEMENT&3R Reserch Foundation'),
(143317, 112674, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå»ƒę£„ē‰©ćƒ»3R研究貔団'),
(143318, 112675, 'en', 'name', 'University of SĆ£o Paulo'),
(143319, 112675, 'pt', 'name', 'Universidade de SĆ£o Paulo'),
(143320, 112676, 'en', 'name', 'Federal College of Animal Health and Production Technology Ibadan'),
(143321, 112677, 'en', 'name', 'American Shark Conservancy'),
(143322, 112678, 'pt', 'name', 'Aletheia - Associação Científica e Cultural, Aletheia'),
(143323, 112679, 'de', 'name', 'FH Kärnten, FH Kärnten Gemeinnützige Gesellschaft mbH'),
(143324, 112679, 'en', 'name', 'Carinthia University of Applied Sciences'),
(143325, 112680, 'en', 'name', 'ENSA Dijon Art and Design'),
(143326, 112680, 'fr', 'name', 'ENSA Dijon, Ɖcole nationale supĆ©rieure d’art de Dijon'),
(143327, 112681, 'en', 'name', 'Ibarakiken Medical Center'),
(143328, 112681, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗčŒØåŸŽēœŒćƒ”ćƒ‡ć‚£ć‚«ćƒ«ć‚»ćƒ³ć‚æćƒ¼'),
(143329, 112682, 'en', 'name', 'Queensland Government'),
(143330, 112683, 'en', 'name', 'University of Vaasa'),
(143331, 112683, 'fi', 'name', 'Vaasan yliopisto'),
(143332, 112683, 'sv', 'name', 'Vasa universitet'),
(143333, 112684, 'en', 'name', 'The Institute of Labour Administration'),
(143334, 112684, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŠ“å‹™č”Œę”æē ”ē©¶ę‰€'),
(143335, 112685, 'en', 'name', 'MetroHealth'),
(143336, 112686, 'fr', 'name', 'CHU Dijon Bourgogne'),
(143337, 112687, 'fr', 'name', 'Biologie, ingƩnierie et imagerie pour l''Ophtalmologie'),
(143338, 112688, 'en', 'name', 'University of Pecs'),
(143339, 112688, 'hu', 'name', 'PƩcsi TudomƔnyegyetem'),
(143340, 112689, 'fr', 'name', 'Troubles du comportement Alimentaire, Addictions et Poids ExtrĆŖmes'),
(143341, 112690, 'en', 'name', 'Division of Atmospheric and Geospace Sciences'),
(143342, 112691, 'en', 'name', 'Japanese Foundation for Sexual Health Medicine'),
(143343, 112691, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę€§ć®å„åŗ·åŒ»å­¦č²”å›£'),
(143344, 112692, 'fr', 'name', 'Ɖtablissement FranƧais du Sang'),
(143345, 112693, 'es', 'name', 'Grupo Docente 2.0 C.A.'),
(143346, 112694, 'en', 'name', 'Southern Philippines Agri-Business and Marine and Aquatic School of Technology'),
(143347, 112695, 'en', 'name', 'School, Mutations, Learning'),
(143348, 112695, 'fr', 'name', 'Ɖcole, Mutations, Apprentissages'),
(143349, 112696, 'en', 'name', 'Texas Instruments (Singapore), Texas Instruments Singapore Ltd'),
(143350, 112697, 'en', 'name', 'Budleigh Salterton Hospital'),
(143351, 112698, 'en', 'name', 'Ibaraki International Association'),
(143352, 112698, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗčŒØåŸŽēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(143353, 112699, 'en', 'name', 'BIST Dolors Aleu Graduate Centre'),
(143354, 112700, 'en', 'name', 'Manufacturing Science and Technology Center'),
(143355, 112700, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč£½é€ ē§‘å­¦ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(143356, 112701, 'en', 'name', 'London Health Sciences Centre'),
(143357, 112702, 'de', 'name', 'Projektträger Jülich'),
(143358, 112703, 'de', 'name', 'Labor für Immunologische und Molekulare Krebsforschung, SCRI-LIMCR GmbH'),
(143359, 112704, 'en', 'name', 'Research Data Alliance-US'),
(143360, 112705, 'es', 'name', 'Red Gobernanza Metropolitana'),
(143361, 112706, 'en', 'name', 'Hakodate Regional Industry Promotion Organization'),
(143362, 112706, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå‡½é¤Øåœ°åŸŸē”£ę„­ęŒÆčˆˆč²”å›£'),
(143363, 112707, 'en', 'name', 'Nerima Medical Association'),
(143364, 112707, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē·“é¦¬åŒŗåŒ»åø«ä¼š'),
(143365, 112708, 'en', 'name', 'Saitama Arts Foundation'),
(143366, 112708, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒčŠøč”“ę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(143367, 112709, 'en', 'name', 'Johns Hopkins Medicine'),
(143368, 112710, 'en', 'name', 'Centre of Experimental Medicine of the Slovak Academy of Sciences'),
(143369, 112710, 'sk', 'name', 'Centrum experimentƔlnej medicƭny SlovenskƔ akadƩmia vied'),
(143370, 112711, 'en', 'name', 'The Japanese Society of Irrigation, Drainage and Rural Engineering'),
(143371, 112711, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗč¾²ę„­č¾²ę‘å·„å­¦ä¼š'),
(143372, 112712, 'en', 'name', 'The University of Sydney'),
(143373, 112713, 'pt', 'name', 'Biblioteca Francisco Pereira de Moura'),
(143374, 112714, 'pt', 'name', 'AgĆŖncia de Desenvolvimento Regional do Alentejo'),
(143375, 112715, 'en', 'name', 'Japan Monorail Association'),
(143376, 112715, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ¢ćƒŽćƒ¬ćƒ¼ćƒ«å”ä¼š'),
(143377, 112716, 'cs', 'name', 'NÔrodní knihovna České republiky'),
(143378, 112716, 'en', 'name', 'National Library of the Czech Republic'),
(143379, 112717, 'pt', 'name', 'Centro de Investigação em Produção Agroalimentar SustentÔvel'),
(143380, 112718, 'es', 'name', 'La Universidad Americana'),
(143381, 112719, 'nl', 'name', 'Universitair Ziekenhuis Brussel'),
(143382, 112720, 'fr', 'name', 'Institut de GƩnomique Fonctionnelle de Lyon'),
(143383, 112721, 'nl', 'name', 'Kennisinstituut voor Mobiliteitsbeleid'),
(143384, 112722, 'sv', 'name', 'If SkadefƶrsƤkring AB'),
(143385, 112723, 'en', 'name', 'Minnesota Supercomputing Institute'),
(143386, 112724, 'fr', 'name', 'Laboratoire d''Informatique de Bourgogne'),
(143387, 112725, 'en', 'name', 'North Devon District Hospital'),
(143388, 112726, 'en', 'name', 'Kenya National Bureau of Statistics'),
(143389, 112727, 'pt', 'name', 'Unidade de Ensino e Investigação de Clínica Tropical'),
(143390, 112728, 'pt', 'name', 'Nonagon - Parque de CiĆŖncia e Tecnologia de SĆ£o Miguel'),
(143391, 112729, 'es', 'name', 'Universidad PolitƩcnica de Otzolotepec'),
(143392, 112730, 'en', 'name', 'Miyagi International Association'),
(143393, 112730, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå®®åŸŽēœŒå›½éš›åŒ–å”ä¼š'),
(143394, 112731, 'en', 'name', 'Institute for Circumpolar Health Research'),
(143395, 112732, 'en', 'name', 'Japanese Association of Surveyors'),
(143396, 112732, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęø¬é‡å”ä¼š'),
(143397, 112733, 'en', 'name', 'United States Air Force Reserve Command'),
(143398, 112734, 'en', 'name', 'Hogrefe Publishing GmbH, Hogrefe Publishing GmbH (Germany)'),
(143399, 112735, 'en', 'name', 'St. Hedwig Hospital in Trzebnica'),
(143400, 112735, 'pl', 'name', 'Szpital im Świętej Jadwigi w Trzebnicy'),
(143401, 112736, 'en', 'name', 'Japan Gymnastics Association'),
(143402, 112736, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä½“ę“å”ä¼š'),
(143403, 112737, 'en', 'name', 'Sevinç-Erdal İnönü Foundation'),
(143404, 112737, 'tr', 'name', 'Sevinç-Erdal İnönü Vakfı'),
(143405, 112738, 'en', 'name', 'United States Pacific Air Forces'),
(143406, 112739, 'no_lang_code', 'name', 'Empresa Nacional de Residuos Radiactivos'),
(143407, 112740, 'en', 'name', 'Asahigawasou Rehabilitation and Medical Center'),
(143408, 112740, 'ja', 'name', 'ē¤¾ä¼šē¦ē„‰ę³•äŗŗę—­å·č˜ē™‚č‚²ćƒ»åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(143409, 112741, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŁˆŲµŁ„'),
(143410, 112741, 'en', 'name', 'University of Mosul'),
(143411, 112742, 'de', 'name', 'Luxoft GmbH'),
(143412, 112742, 'en', 'name', 'Luxoft (Germany)'),
(143413, 112743, 'pt', 'name', 'Universidade do Minho Centro de Engenharia Biológica'),
(143414, 112744, 'en', 'name', 'Assumption College'),
(143415, 112745, 'en', 'name', 'Long Term Ecological Research Network'),
(143416, 112746, 'en', 'name', 'Semiconductor Equipment Association of Japan'),
(143417, 112746, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŠå°Žä½“č£½é€ č£…ē½®å”ä¼š'),
(143418, 112747, 'de', 'name', 'Hogrefe Verlag GmbH & Co. KG, Hogrefe Verlag GmbH & Co. KG (Germany)'),
(143419, 112748, 'en', 'name', 'Brain Corporation, Brain Corporation (United States)'),
(143420, 112749, 'en', 'name', 'Institute of Advanced Materials'),
(143421, 112750, 'en', 'name', 'CITI Program, Collaborative Institutional Training Initiative'),
(143422, 112751, 'no_lang_code', 'name', 'Sistemas do Futuro Multimédia Gestão e Arte (Portugal), Systems of the Future Multimedia Management and Art'),
(143423, 112752, 'en', 'name', 'The Japan Federation of Engineering Societies'),
(143424, 112752, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å·„å­¦ä¼š'),
(143425, 112753, 'en', 'name', 'Data Intelligence Institute of Paris'),
(143426, 112754, 'en', 'name', 'National Commission for Aerospace Research and Development'),
(143427, 112754, 'es', 'name', 'Comisión Nacional de Investigación y Desarrollo Aeroespacial'),
(143428, 112755, 'en', 'name', 'China Academy of Engineering Physics'),
(143429, 112755, 'zh', 'name', '中国巄程物理研究院'),
(143430, 112756, 'en', 'name', 'Japan Art Association'),
(143431, 112756, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē¾Žč”“å”ä¼š'),
(143432, 112757, 'en', 'name', 'The Evaluation Center'),
(143433, 112758, 'en', 'name', 'Korea Radioactive Waste Agency'),
(143434, 112759, 'en', 'name', 'Institute of Earthquake Forecasting, China Earthquake Administration'),
(143435, 112759, 'zh', 'name', 'äø­å›½åœ°éœ‡å±€åœ°éœ‡é¢„ęµ‹ē ”ē©¶ę‰€'),
(143436, 112760, 'en', 'name', 'Florey Institute of Neuroscience and Mental Health'),
(143437, 112761, 'pt', 'name', 'Escola Superior de Educação de Paula Frassinetti'),
(143438, 112762, 'en', 'name', 'Institute of Climate-Smart Agriculture of the National Academy of Agrarian Sciences of Ukraine'),
(143439, 112762, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кліматично орієнтованого ŃŃ–Š»ŃŒŃŃŒŠŗŠ¾Š³Š¾ госпоГарства ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(143440, 112763, 'de', 'name', 'UniversitƤt Catania'),
(143441, 112763, 'en', 'name', 'University of Catania'),
(143442, 112763, 'fr', 'name', 'UniversitƩ de catane'),
(143443, 112763, 'it', 'name', 'UniversitĆ  degli Studi di Catania'),
(143444, 112764, 'en', 'name', 'Atlantic International Research Centre'),
(143445, 112765, 'en', 'name', 'Cedar Creek Ecosystem Science Reserve'),
(143446, 112766, 'no_lang_code', 'name', 'Stachema (Czechia)'),
(143447, 112767, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Formation de l’Enseignement Agricole'),
(143448, 112768, 'pt', 'name', 'Unidade de Investigação e Desenvolvimento em Educação e Formação'),
(143449, 112769, 'en', 'name', 'Okinawa Prefectural Deep See Water Research Center'),
(143450, 112769, 'ja', 'name', 'ę²–ēø„ēœŒęµ·ę“‹ę·±å±¤ę°“ē ”ē©¶ę‰€'),
(143451, 112770, 'en', 'name', 'Housing RESEARCH&ADVANCEMENT Foundation Of Japan'),
(143452, 112770, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä½å®…ē·åˆć‚»ćƒ³ć‚æćƒ¼'),
(143453, 112771, 'pt', 'name', 'Sociedade Portuguesa de Biologia de Plantas'),
(143454, 112772, 'en', 'name', 'U.S. Army Space and Missile Defense Command'),
(143455, 112773, 'cs', 'name', 'Laboratoř pro výzkum s antiprotony a těžkými ionty (FAIR) – ĆŗÄast ČR'),
(143456, 112773, 'en', 'name', 'Facility for Antiproton and Ion Research (FAIR) – participation of the Czech Republic'),
(143457, 112774, 'en', 'name', 'School for Continuing Education'),
(143458, 112775, 'de', 'name', 'Ɩsterreichische Akademie der Wissenschaften'),
(143459, 112775, 'en', 'name', 'Austrian Academy of Sciences'),
(143460, 112775, 'hu', 'name', 'OsztrƔk TudomƔnyos AkadƩmia'),
(143461, 112775, 'sl', 'name', 'Avstrijska Akademija Znanosti'),
(143462, 112776, 'cy', 'name', 'Prifysgol Birmingham'),
(143463, 112776, 'en', 'name', 'University of Birmingham'),
(143464, 112777, 'en', 'name', 'Steno Diabetes Center North Jutland'),
(143465, 112778, 'cs', 'name', 'Anglo-americkÔ vysokÔ Ŕkola'),
(143466, 112778, 'en', 'name', 'Anglo-American University'),
(143467, 112779, 'en', 'name', 'Water Resources Environment Center, Japan'),
(143468, 112779, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę°“ęŗåœ°ē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(143469, 112780, 'en', 'name', 'Santiago University of Technology'),
(143470, 112780, 'es', 'name', 'Universidad Tecnológica de Santiago'),
(143471, 112781, 'en', 'name', 'Shonan Kamakura University of Medical Sciences'),
(143472, 112781, 'ja', 'name', 'ę¹˜å—éŽŒå€‰åŒ»ē™‚å¤§å­¦'),
(143473, 112782, 'en', 'name', 'Japan Rehabilitation Nursing Association'),
(143474, 112782, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬ćƒŖćƒćƒ“ćƒŖćƒ†ćƒ¼ć‚·ćƒ§ćƒ³ēœ‹č­·å­¦ä¼š'),
(143475, 112783, 'en', 'name', 'IMAQ Research'),
(143476, 112784, 'pt', 'name', 'Faculdade Santa Marcelina'),
(143477, 112785, 'pt', 'name', 'Conservatório Bomfim'),
(143478, 112786, 'es', 'name', 'FundaQuim'),
(143479, 112787, 'en', 'name', 'Central Clinical Hospital'),
(143480, 112787, 'pl', 'name', 'Centralny Szpital Kliniczny Ministerstwa Spraw Wewnętrznych'),
(143481, 112788, 'en', 'name', 'Molecular Structural and Cellular Microbiology'),
(143482, 112789, 'no_lang_code', 'name', 'Atlantik Fish (Portugal)'),
(143483, 112790, 'en', 'name', 'Chulabhorn Royal Academy'),
(143484, 112791, 'pt', 'name', 'CĆ¢mara Municipal de Tondela'),
(143485, 112792, 'en', 'name', 'Military Health System'),
(143486, 112792, 'es', 'name', 'Sistema Militar de Salud de EUA'),
(143487, 112793, 'uz', 'name', 'Paxta Ilmiy-innovasiya Markazi, Paxta Ilmiy-innovasiya Markazi (Uzbekistan)'),
(143488, 112794, 'en', 'name', 'Chugoku Occupational Health Association'),
(143489, 112794, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäø­å›½åŠ“åƒč”›ē”Ÿå”ä¼š'),
(143490, 112795, 'en', 'name', 'University of Auckland'),
(143491, 112795, 'mi', 'name', 'Waipapa Taumata Rau'),
(143492, 112796, 'en', 'name', 'Government College of Pharmacy Rohru'),
(143493, 112797, 'de', 'name', 'Anstalt für Verbrennungskraftmaschinen List (Germany)'),
(143494, 112798, 'en', 'name', 'Raw Materials Research and Development Council'),
(143495, 112799, 'en', 'name', 'California Walnut Growers Association'),
(143496, 112800, 'en', 'name', 'Japan Association of Graphic Arts Technology'),
(143497, 112800, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°åˆ·ęŠ€č”“å”ä¼š'),
(143498, 112801, 'en', 'name', 'Honda Foundation'),
(143499, 112801, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęœ¬ē”°č²”å›£'),
(143500, 112802, 'en', 'name', 'SciKA-Association for Promotion and Dissemination of Scientific Knowledge'),
(143501, 112803, 'pt', 'name', 'Sociedade Portuguesa de Cerâmica e Vidro'),
(143502, 112804, 'pt', 'name', 'Centro de Investigacao em Direito Europeu Economico Financeiro e Fiscal'),
(143503, 112805, 'en', 'name', 'Springer Nature (Nanjing, China)'),
(143504, 112806, 'en', 'name', 'National Laboratory for Civil Engineering'),
(143505, 112806, 'pt', 'name', 'Laboratório Nacional de Engenharia Civil'),
(143506, 112807, 'en', 'name', 'Nigerian Army College of Education'),
(143507, 112808, 'en', 'name', 'Geodetic Facility for the Advancement of Geoscience'),
(143508, 112809, 'en', 'name', 'Polytechnic University of Bari'),
(143509, 112809, 'fr', 'name', 'Ɖcole Polytechnique de Bari'),
(143510, 112809, 'it', 'name', 'Politecnico di Bari'),
(143511, 112810, 'en', 'name', 'Ottawa Hospital'),
(143512, 112810, 'fr', 'name', 'L''HƓpital d''Ottawa'),
(143513, 112811, 'en', 'name', 'Royal Australian College of General Practitioners'),
(143514, 112812, 'en', 'name', 'Nuclear Science User Facilities'),
(143515, 112813, 'es', 'name', 'Hospital Universitario de Neiva'),
(143516, 112814, 'en', 'name', 'Ministry of Interior and Administration'),
(143517, 112814, 'pl', 'name', 'Ministerstwo Spraw Wewnętrznych i Administracji'),
(143518, 112815, 'en', 'name', 'Japan Association of Refrigeration and Air-Conditioning Contractors'),
(143519, 112815, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡ē©ŗčŖæčØ­å‚™å·„ę„­é€£åˆä¼š'),
(143520, 112816, 'en', 'name', 'Shiv Nadar Foundation'),
(143521, 112816, 'hi', 'name', 'शिव नादर ą¤«ą¤¾ą¤‰ą¤‚ą¤”ą„‡ą¤¶ą¤Ø'),
(143522, 112817, 'en', 'name', 'Institute of Cancer Research of Montpellier'),
(143523, 112817, 'fr', 'name', 'Institut de Recherche en CancƩrologie de Montpellier'),
(143524, 112818, 'en', 'name', 'United States Army Medical Research and Development Command'),
(143525, 112819, 'pt', 'name', 'Instituto de Cultura e LĆ­ngua Portuguesa'),
(143526, 112820, 'en', 'name', 'Yamaha Music Foundation'),
(143527, 112820, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ¤ćƒžćƒéŸ³ę„½ęŒÆčˆˆä¼š'),
(143528, 112821, 'en', 'name', 'Colorado Geological Survey'),
(143529, 112822, 'pt', 'name', 'Sociedade Portuguesa de Materiais'),
(143530, 112823, 'en', 'name', 'Stanbridge University'),
(143531, 112824, 'fr', 'name', 'Mission ArchƩologique FranƧaise du Bassin de l''Indus'),
(143532, 112825, 'en', 'name', 'Nablus University for Vocational and Technical Education'),
(143533, 112826, 'en', 'name', 'United States Navy'),
(143534, 112827, 'tr', 'name', 'Ağri İl Sağlik Müdürlüğü Dr. Yaşar Eryilmaz Doğubeyazit Devlet Hastanesi̇, Dr. Yaşar Eryilmaz Doğubeyazit Devlet Hastanesi̇'),
(143535, 112828, 'en', 'name', 'Assumption College'),
(143536, 112829, 'pt', 'name', 'PORBIOTA'),
(143537, 112830, 'cs', 'name', 'NƔrodnƭ archiv'),
(143538, 112830, 'en', 'name', 'National Archives'),
(143539, 112831, 'en', 'name', 'Medical Corporation Kyowakai Senri Chuo Hospital'),
(143540, 112831, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå”å’Œä¼šåƒé‡Œäø­å¤®ē—…é™¢'),
(143541, 112832, 'de', 'name', 'Helmholtz-Zentrum für Infektionsforschung'),
(143542, 112832, 'en', 'name', 'Helmholtz Centre for Infection Research'),
(143543, 112833, 'pt', 'name', 'Comissão de Coordenação e Desenvolvimento Regional do Centro'),
(143544, 112834, 'pt', 'name', 'Prevenção RodoviÔria Portuguesa'),
(143545, 112835, 'en', 'name', 'Ministry of Municipal Affairs, Regions and Land Occupancy'),
(143546, 112835, 'fr', 'name', 'MinistĆØre des Affaires Municipales et de l''Occupation du Territoire'),
(143547, 112836, 'en', 'name', 'West Midlands Open University'),
(143548, 112837, 'en', 'name', 'South Central Minzu University'),
(143549, 112837, 'zh', 'name', 'äø­å—ę°‘ę—å¤§å­¦'),
(143550, 112838, 'en', 'name', 'Defense Health Agency'),
(143551, 112839, 'de', 'name', 'Institut für Informationssicherheit'),
(143552, 112839, 'en', 'name', 'Institute of Information Security'),
(143553, 112840, 'en', 'name', 'The Crichton Trust'),
(143554, 112841, 'en', 'name', 'American Counseling Association'),
(143555, 112842, 'en', 'name', 'Society for the Protection of Underground Networks'),
(143556, 112843, 'en', 'name', 'Naval Sea Systems Command'),
(143557, 112844, 'en', 'name', 'Kadoorie Farm and Botanic Garden'),
(143558, 112844, 'zh', 'name', 'å˜‰é“ē†å†œåœŗęšØę¤ē‰©å›­'),
(143559, 112845, 'es', 'name', 'Hospital Clƭnico FƩlix Bulnes'),
(143560, 112846, 'fr', 'name', 'Laboratoire des Sciences du Climat et de l''Environnement'),
(143561, 112847, 'no_lang_code', 'name', 'McKinsey and Company (Portugal)'),
(143562, 112848, 'el', 'name', 'Ethniko Asteroskopeio Athinon, Ī•ĪøĪ½Ī¹ĪŗĻŒ Ī‘ĻƒĻ„ĪµĻĪæĻƒĪŗĪæĻ€ĪµĪÆĪæ Ī‘ĪøĪ·Ī½ĻŽĪ½'),
(143563, 112848, 'en', 'name', 'National Observatory of Athens'),
(143564, 112849, 'en', 'name', 'Glasgow Caledonian University'),
(143565, 112850, 'en', 'name', 'University of Forestry and Environmental Science'),
(143566, 112850, 'my', 'name', 'į€žį€…į€ŗį€į€±į€¬į€”į€¾į€„į€·į€ŗį€•į€į€ŗį€į€”į€ŗį€øį€€į€»į€„į€ŗį€†į€­į€Æį€„į€ŗį€›į€¬į€į€€į€¹į€€į€žį€­į€Æį€œį€ŗ-ရေဆင်း'),
(143567, 112851, 'en', 'name', 'Autodesk (Singapore), Autodesk Asia Pte Ltd'),
(143568, 112852, 'en', 'name', 'University of Larestan'),
(143569, 112852, 'fa', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ لارستان'),
(143570, 112853, 'en', 'name', 'Department of Economic Development Jobs Transport and Resources'),
(143571, 112854, 'en', 'name', 'Shirai Hospital'),
(143572, 112854, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē™½åÆä¼šē™½äŗ•ē—…é™¢'),
(143573, 112855, 'pt', 'name', 'Centro de Estudos Farmaceuticos'),
(143574, 112856, 'no_lang_code', 'name', 'Puratos, Puratos (Portugal)'),
(143575, 112857, 'en', 'name', 'Ellison Institute of Technology'),
(143576, 112858, 'no_lang_code', 'name', 'Valmet (Finland)'),
(143577, 112859, 'en', 'name', 'Hooghly Engineering & Technology College'),
(143578, 112860, 'no_lang_code', 'name', 'InfectControl'),
(143579, 112861, 'pt', 'name', 'Centro de Materiais'),
(143580, 112862, 'en', 'name', 'THE Botanical Society Of Japan'),
(143581, 112862, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©å­¦ä¼š'),
(143582, 112863, 'en', 'name', 'Arizona State University'),
(143583, 112863, 'es', 'name', 'Universidad Estatal de Arizona'),
(143584, 112863, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''Arizona'),
(143585, 112864, 'en', 'name', 'Indiana University Indianapolis'),
(143586, 112865, 'en', 'name', 'American Library Association'),
(143587, 112866, 'pt', 'name', 'Museu Municipal Amadeo de Souza-Cardoso'),
(143588, 112867, 'en', 'name', 'Brightpoint Community College'),
(143589, 112868, 'en', 'name', 'INA Central Hospital'),
(143590, 112868, 'ja', 'name', 'ä¼Šé‚£äø­å¤®ē—…é™¢'),
(143591, 112869, 'tr', 'name', 'Maliye ve Finans Yazıları Yayıncılık Ltd. Şti., Maliye ve Finans Yazıları Yayıncılık Ltd. Şti. (Türkiye)'),
(143592, 112870, 'en', 'name', 'All-Russian research Institute of metrological service'),
(143593, 112870, 'ru', 'name', 'Всероссийский Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ метрологической ŃŠ»ŃƒŠ¶Š±Ń‹'),
(143594, 112871, 'no_lang_code', 'name', 'AbbVie (Portugal)'),
(143595, 112872, 'pt', 'name', 'Centro CiĆŖncia Viva de Alviela'),
(143596, 112873, 'no_lang_code', 'name', 'Novo Nordisk (Portugal)'),
(143597, 112874, 'en', 'name', 'Japan Building Maintenance Association'),
(143598, 112874, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå…Øå›½ćƒ“ćƒ«ćƒ”ćƒ³ćƒ†ćƒŠćƒ³ć‚¹å”ä¼š'),
(143599, 112875, 'en', 'name', 'Institute of Digital Humanities'),
(143600, 112875, 'fr', 'name', 'Institut Des HumanitƩs NumƩriques'),
(143601, 112876, 'en', 'name', 'Lake Biwa Museum'),
(143602, 112876, 'ja', 'name', 'ę»‹č³€ēœŒē«‹ēµē¶ę¹–åšē‰©é¤Ø'),
(143603, 112877, 'pt', 'name', 'Centro de Investigação para Tecnologias Interactivas'),
(143604, 112878, 'en', 'name', 'Khwopa College of Engineering'),
(143605, 112878, 'ne', 'name', 'ą¤–ą„ą¤µą¤Ŗ ą¤•ą¤²ą„‡ą¤œ अफ ą¤ˆą¤Øą„ą¤œą¤æą¤Øą¤æą¤Æą¤°ą¤æą¤™ą„ą¤—'),
(143606, 112879, 'es', 'name', 'CEDEU - Centro de Estudios Universitarios'),
(143607, 112880, 'en', 'name', 'Coiba Scientific Station (Coiba AIP)'),
(143608, 112881, 'pt', 'name', 'NET4CO2'),
(143609, 112882, 'pt', 'name', 'LISPOLIS - Associação para o Pólo Tecnológico de Lisboa'),
(143610, 112883, 'en', 'name', 'Kathmandu Diabetes and Thyroid Center Pvt Ltd'),
(143611, 112884, 'en', 'name', 'BI Norwegian Business School'),
(143612, 112885, 'it', 'name', 'Congressi Stefano Franscini'),
(143613, 112886, 'en', 'name', 'School of Planning and Architecture, Vijayawada'),
(143614, 112887, 'cs', 'name', 'MoravskĆ” zemskĆ” knihovna v Brně'),
(143615, 112887, 'en', 'name', 'Moravian Library in Brno'),
(143616, 112888, 'en', 'name', 'National Institute of Hydrology'),
(143617, 112889, 'en', 'name', 'UniMAC-GIJ, University of Media, Arts and Communication - Ghana Institute of Journalism'),
(143618, 112890, 'no_lang_code', 'name', 'Valorsul, Valorsul (Portugal)'),
(143619, 112891, 'en', 'name', 'Mamun University'),
(143620, 112891, 'ru', 'name', 'Мамун Университет'),
(143621, 112891, 'uz', 'name', 'Ma’mun Universiteti'),
(143622, 112892, 'pt', 'name', 'Ordem dos Advogados'),
(143623, 112893, 'en', 'name', 'Global Infrastructure Fund Research Foundation Japan'),
(143624, 112893, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚°ćƒ­ćƒ¼ćƒćƒ«ćƒ»ć‚¤ćƒ³ćƒ•ćƒ©ć‚¹ćƒˆćƒ©ć‚Æćƒćƒ£ćƒ¼ē ”ē©¶č²”å›£'),
(143625, 112894, 'no_lang_code', 'name', 'MCretail SGPS (Portugal), MCretail SGPS, S.A.'),
(143626, 112895, 'en', 'name', 'INTI International University'),
(143627, 112895, 'ms', 'name', 'Kolej Universiti Antarabangsa INTI'),
(143628, 112896, 'pt', 'name', 'Novartis Farma SA (Portugal)'),
(143629, 112897, 'en', 'name', 'International Science and Technology Center'),
(143630, 112898, 'en', 'name', 'Gentex'),
(143631, 112898, 'no_lang_code', 'name', 'Gentex (United States)'),
(143632, 112899, 'en', 'name', 'Navy Expeditionary Combat Command'),
(143633, 112900, 'en', 'name', 'Davao Oriental State University'),
(143634, 112901, 'en', 'name', 'The Japan Containers And Packaging Recycling Association'),
(143635, 112901, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å®¹å™ØåŒ…č£…ćƒŖć‚µć‚¤ć‚Æćƒ«å”ä¼š'),
(143636, 112902, 'bn', 'name', 'ą¦šą§ą¦Æą¦¼ą¦¾ą¦”ą¦¾ą¦™ą§ą¦—ą¦¾ সরকারি ą¦•ą¦²ą§‡ą¦œ'),
(143637, 112902, 'en', 'name', 'Chuadanga Government College'),
(143638, 112903, 'en', 'name', 'Institute of Economics'),
(143639, 112903, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук'),
(143640, 112904, 'fr', 'name', 'Laboratoire d''Ɖcophysiologie MolĆ©culaire des Plantes sous Stress Environnementaux'),
(143641, 112905, 'en', 'name', 'Institute for Technical Physics and Materials Science'),
(143642, 112905, 'hu', 'name', 'Műszaki Fizikai és AnyagtudomÔnyi Intézet'),
(143643, 112906, 'en', 'name', 'National Football League Players Association'),
(143644, 112907, 'pt', 'name', 'Entidade Reguladora para a Comunicação Social'),
(143645, 112908, 'en', 'name', 'Japan International Labour Foundation'),
(143646, 112908, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›åŠ“åƒč²”å›£'),
(143647, 112909, 'en', 'name', 'KEN I Kai Foundation'),
(143648, 112909, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē ”åŒ»ä¼š'),
(143649, 112910, 'en', 'name', 'Kaiyuan E-Commerce (Shenzhen) Co., Ltd., Kaiyuan E-Commerce (Shenzhen) Co., Ltd. (China)'),
(143650, 112911, 'en', 'name', 'SUNY Geneseo'),
(143651, 112912, 'id', 'name', 'Sekolah Tinggi teologi Injili indonesia Palu'),
(143652, 112913, 'pt', 'name', 'SANJOTEC - Centro Empresarial e Tecnológico de São João da Madeira'),
(143653, 112914, 'pt', 'name', 'Unidade de Microbiologia MƩdica'),
(143654, 112915, 'pt', 'name', 'Agência para a Competitividade e Inovação IP'),
(143655, 112916, 'en', 'name', 'Lubrizol, Lubrizol (United States), Lubrizol Advanced Materials, Inc.'),
(143656, 112917, 'pt', 'name', 'Sociedade Portuguesa de Botânica'),
(143657, 112918, 'fr', 'name', 'Institut de Science des DonnƩes de Montpellier'),
(143658, 112919, 'no_lang_code', 'name', 'Tetra Pak (Portugal), Tetra Pak Portugal SA'),
(143659, 112920, 'en', 'name', 'Sharing Foundation'),
(143660, 112921, 'en', 'name', 'The University of Texas Health Science Center at Houston'),
(143661, 112922, 'en', 'name', 'Northern Iloilo State University'),
(143662, 112923, 'en', 'name', 'National University of Battambang'),
(143663, 112923, 'km', 'name', 'įžŸįž¶įž€įž›įžœįž·įž‘įŸ’įž™įž¶įž›įŸįž™įž‡įž¶įžįž·įž”įž¶įžįŸ‹įžŠįŸ†įž”įž„'),
(143664, 112924, 'en', 'name', 'Tokyo Bay Urayasu Ichikawa Medical Center'),
(143665, 112924, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåœ°åŸŸåŒ»ē™‚ęŒÆčˆˆå”ä¼šę±äŗ¬ćƒ™ć‚¤ćƒ»ęµ¦å®‰åø‚å·åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(143666, 112925, 'en', 'name', 'Neu-Ulm University of Applied Sciences'),
(143667, 112926, 'en', 'name', 'Wroclaw University of Health and Sport Sciences'),
(143668, 112926, 'pl', 'name', 'Akademia Wychowania Fizycznego imienia Polskich Olimpijczyków we Wrocławiu'),
(143669, 112927, 'en', 'name', 'Japan Association for Promotion of Educational Technology'),
(143670, 112927, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę•™č‚²ęƒ…å ±åŒ–ęŒÆčˆˆä¼š'),
(143671, 112928, 'en', 'name', 'Yuai Memorial Hospital'),
(143672, 112928, 'ja', 'name', 'čŒØåŸŽēœŒę°‘ē”Ÿę“»å”åŒēµ„åˆå‹ę„›čØ˜åæµē—…é™¢'),
(143673, 112929, 'en', 'name', 'Steno Diabetes Center Copenhagen'),
(143674, 112930, 'en', 'name', 'Royal Women''s Hospital'),
(143675, 112931, 'en', 'name', 'University of Minnesota System'),
(143676, 112931, 'es', 'name', 'Universidad de Minnesota'),
(143677, 112931, 'fr', 'name', 'UniversitƩ du Minnesota'),
(143678, 112932, 'en', 'name', 'Kristiania University of Applied Sciences'),
(143679, 112932, 'no', 'name', 'HĆøyskolen Kristiania'),
(143680, 112933, 'es', 'name', 'Centro Internacional de Mejoramiento de MaĆ­z Y Trigo'),
(143681, 112934, 'en', 'name', 'George Emil Palade University of Medicine, Pharmacy, Science and Technology of TĆ¢rgu Mureș'),
(143682, 112934, 'hu', 'name', 'MarosvÔsÔrhelyi Orvosi és Gyógyszerészeti Egyetem'),
(143683, 112934, 'ro', 'name', 'Universitatea de Medicină, Farmacie, Științe și Tehnologie ā€žGeorge Emil Paladeā€ din TĆ¢rgu Mureș'),
(143684, 112935, 'id', 'name', 'Universitas Hasyim Asy''ari'),
(143685, 112936, 'pt', 'name', 'Centro para o Direito Ambiental e Desenvolvimento Sustentado'),
(143686, 112937, 'en', 'name', 'University of Dundee'),
(143687, 112938, 'en', 'name', 'Collaborative Innovation Center of Suzhou Nano Science and Technology'),
(143688, 112938, 'zh', 'name', 'č‹å·žēŗ³ē±³ē§‘ęŠ€ååŒåˆ›ę–°äø­åæƒ'),
(143689, 112939, 'en', 'name', 'Japan Volleyball Association'),
(143690, 112939, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒćƒ¬ćƒ¼ćƒœćƒ¼ćƒ«å”ä¼š'),
(143691, 112940, 'en', 'name', 'Slovak Academy of Sciences'),
(143692, 112940, 'hu', 'name', 'SzlovƔk TudomƔnyos AkadƩmia'),
(143693, 112940, 'sk', 'name', 'SlovenskƔ AkadƩmia Vied'),
(143694, 112941, 'cs', 'name', 'ČeskÔ infrastruktura pro integrativní strukturní biologii'),
(143695, 112941, 'en', 'name', 'Czech Infrastructure for Integrative Structural Biology'),
(143696, 112942, 'en', 'name', 'Namangan Institute of Engineering and Technology'),
(143697, 112942, 'uz', 'name', 'Namangan muhandislik-texnologiya instituti'),
(143698, 112943, 'en', 'name', 'Gifu Municipal Institute of Public Health'),
(143699, 112943, 'ja', 'name', 'å²é˜œåø‚č”›ē”Ÿč©¦éØ“ę‰€'),
(143700, 112944, 'en', 'name', 'Institute for Magnetic Fusion Research'),
(143701, 112944, 'fr', 'name', 'Institut de Recherche sur la Fusion par Confinement MagnƩtique'),
(143702, 112945, 'no_lang_code', 'name', 'Marzano Research (United States)'),
(143703, 112946, 'no_lang_code', 'name', 'Almedina, S.A. (Portugal)'),
(143704, 112947, 'de', 'name', 'Regionale Didaktische Zentren PHSG'),
(143705, 112947, 'en', 'name', 'Regional Didactic Centres'),
(143706, 112948, 'en', 'name', 'Ontario HIV Treatment Network'),
(143707, 112949, 'es', 'name', 'Fundación Síndrome de Dravet'),
(143708, 112950, 'fr', 'name', 'Laboratoire Temps Espace'),
(143709, 112951, 'en', 'name', 'Pacific AIDS Network'),
(143710, 112952, 'pt', 'name', 'Fundação Amélia de Mello'),
(143711, 112953, 'de', 'name', 'Hochschule für Gesundheit Bochum'),
(143712, 112953, 'en', 'name', 'Hochschule für Gesundheit - University of Applied Sciences'),
(143713, 112954, 'de', 'name', 'Institut für Automatik'),
(143714, 112954, 'en', 'name', 'Automatic Control Laboratory'),
(143715, 112955, 'cs', 'name', 'Ú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'),
(143716, 112955, 'en', 'name', 'Czech Academy of Sciences, Institute of Experimental Medicine'),
(143717, 112956, 'en', 'name', 'Barcelona Institute for Global Health'),
(143718, 112957, 'en', 'name', 'CNRS@CREATE Ltd, CNRS@CREATE Ltd (Singapore)'),
(143719, 112958, 'pt', 'name', 'Museu do Abade de BaƧal'),
(143720, 112959, 'en', 'name', 'U.S. Army Joint Munitions Command'),
(143721, 112960, 'id', 'name', 'Universitas Ahmad Dahlan'),
(143722, 112961, 'en', 'name', 'The Japan Association of Marine Safety'),
(143723, 112961, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ęµ·é›£é˜²ę­¢å”ä¼š'),
(143724, 112962, 'de', 'name', 'Institut für Mechanische Systeme'),
(143725, 112962, 'en', 'name', 'Institute of Mechanical Systems'),
(143726, 112963, 'en', 'name', 'Space Delta 6'),
(143727, 112964, 'no_lang_code', 'name', 'Robert Bosch (Australia)'),
(143728, 112965, 'pt', 'name', 'Laboratório de Investigação e Reabilitação Respiratória'),
(143729, 112966, 'en', 'name', 'Institute of Physics'),
(143730, 112967, 'en', 'name', 'Shenzhen University of Advanced Technology'),
(143731, 112968, 'en', 'name', 'Urakami Food and Food Culture Promotion Foundation'),
(143732, 112968, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęµ¦äøŠé£Ÿå“é£Ÿę–‡åŒ–ęŒÆčˆˆč²”å›£'),
(143733, 112969, 'en', 'name', 'Women and Infants Research Foundation'),
(143734, 112970, 'en', 'name', 'Delta State Polytechnic Ogwashi-Uku'),
(143735, 112971, 'en', 'name', 'Lyon Observatory'),
(143736, 112971, 'fr', 'name', 'Observatoire de Lyon'),
(143737, 112972, 'de', 'name', 'Institut für Molekulare Systembiologie'),
(143738, 112972, 'en', 'name', 'Institute for Molecular Systems Biology'),
(143739, 112973, 'pt', 'name', 'Biblioteca de Arte Gulbenkian'),
(143740, 112974, 'no_lang_code', 'name', 'Hebei Seismological Bureau'),
(143741, 112974, 'zh', 'name', 'ę²³åŒ—ēœåœ°éœ‡å±€'),
(143742, 112975, 'en', 'name', 'United States 6th Fleet, United States Naval Forces Europe-Africa'),
(143743, 112976, 'no_lang_code', 'name', 'Yabulu, YƤbulu, YƤbulu (Portugal)'),
(143744, 112977, 'no_lang_code', 'name', 'Turkish Aerospace Industries (Turkey)'),
(143745, 112977, 'tr', 'name', 'Türk Havacılık ve Uzay Sanayii'),
(143746, 112978, 'en', 'name', 'Japan Association of Obstetricians and Gynecologists'),
(143747, 112978, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”£å©¦äŗŗē§‘åŒ»ä¼š'),
(143748, 112979, 'en', 'name', 'Government of Shandong Province'),
(143749, 112979, 'zh', 'name', 'å±±äøœēœäŗŗę°‘ę”æåŗœ'),
(143750, 112980, 'en', 'name', 'EyeSmart Technology Ltd., EyeSmart Technology Ltd. (China)'),
(143751, 112980, 'zh', 'name', 'åŒ—äŗ¬é‡Šē å¤§åŽē§‘ęŠ€ęœ‰é™å…¬åø'),
(143752, 112981, 'en', 'name', 'Akita Kousei Medical Center'),
(143753, 112981, 'ja', 'name', 'JAē§‹ē”°åŽšē”Ÿé€£ē§‹ē”°åŽšē”ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(143754, 112982, 'ar', 'name', 'وزارت سائنس و Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ'),
(143755, 112982, 'en', 'name', 'Ministry of Science and Technology'),
(143756, 112983, 'de', 'name', 'Institut Berufsbildung'),
(143757, 112983, 'en', 'name', 'Institut of Vocational Education and Training'),
(143758, 112984, 'fr', 'name', 'Centre de recherche en langue et culture amazighes'),
(143759, 112984, 'no_lang_code', 'name', 'Asemmas n unadi deg tutlayt d yidles n tmaziɣt'),
(143760, 112985, 'en', 'name', 'Royal Devon and Exeter Hospital'),
(143761, 112986, 'en', 'name', 'Yamagata Prefecture Fisheries Experiment Station'),
(143762, 112986, 'ja', 'name', 'å±±å½¢ēœŒę°“ē”£ē ”ē©¶ę‰€'),
(143763, 112987, 'en', 'name', 'A.E. Arbuzov Institute of Organic and Physical Chemistry'),
(143764, 112987, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ органической Šø физической химии им. А. Š•. ŠŃ€Š±ŃƒŠ·Š¾Š²Š° Казанского Š½Š°ŃƒŃ‡Š½Š¾Š³Š¾ центра Российской акаГемии наук'),
(143765, 112988, 'en', 'name', 'IUCN Commission on Environmental, Economic and Social Policy'),
(143766, 112989, 'en', 'name', 'Japan Map Center'),
(143767, 112989, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬åœ°å›³ć‚»ćƒ³ć‚æćƒ¼'),
(143768, 112990, 'pt', 'name', 'Sociedade Portuguesa da CiĆŖncia do Solo'),
(143769, 112991, 'pt', 'name', 'Santa Casa da Misericórdia de Anadia'),
(143770, 112992, 'en', 'name', 'University of Burgundy'),
(143771, 112992, 'fr', 'name', 'UniversitƩ de Bourgogne'),
(143772, 112993, 'en', 'name', 'Colorado State University'),
(143773, 112993, 'es', 'name', 'Universidad Estatal de Colorado'),
(143774, 112993, 'fr', 'name', 'UniversitĆ© d''Ɖtat du colorado'),
(143775, 112994, 'en', 'name', 'International Platform on Mental Health'),
(143776, 112995, 'fr', 'name', 'Presses Universitaires de Franche-ComtƩ'),
(143777, 112996, 'en', 'name', 'Barcelonaβeta Brain Research Center'),
(143778, 112997, 'en', 'name', 'University of Health Sciences'),
(143779, 112997, 'tr', 'name', 'Sağlık Bilimleri Üniversitesi'),
(143780, 112998, 'cs', 'name', 'Centrum výzkumu Řež'),
(143781, 112998, 'en', 'name', 'Research Centre Rez'),
(143782, 112999, 'en', 'name', 'The Aurum Project'),
(143783, 113000, 'en', 'name', 'Shakhrisabz State Pedagogical Institute'),
(143784, 113001, 'fr', 'name', 'Laboratoire interdisciplinaire de recherche en didactique, Ʃducation et formation'),
(143785, 113002, 'en', 'name', 'Geosciences and Geoengineering Research Department, Mines Paris, PSL University, Centre for geosciences and geoengineering'),
(143786, 113002, 'fr', 'name', 'Centre de GƩosciences, Mines Paris, UniversitƩ PSL, Centre de GƩosciences'),
(143787, 113003, 'es', 'name', 'Centro FrancĆØs de Estudios Mexicanos y Centroamericanos'),
(143788, 113003, 'fr', 'name', 'Centre d''Ʃtudes mexicaines et centramericaines'),
(143789, 113004, 'en', 'name', 'The Japan Institute of Light Metals'),
(143790, 113004, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč»½é‡‘å±žå­¦ä¼š'),
(143791, 113005, 'es', 'name', 'Officina Nacional de Normalizacion'),
(143792, 113006, 'en', 'name', 'Kannur Dental College'),
(143793, 113007, 'en', 'name', 'Ala-Too International University'),
(143794, 113007, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет Ала-Тоо'),
(143795, 113007, 'uz', 'name', 'OlatogŹ» xalqaro universiteti'),
(143796, 113008, 'cy', 'name', 'Prifysgol Caerdydd'),
(143797, 113008, 'en', 'name', 'Cardiff University'),
(143798, 113009, 'en', 'name', 'Indian Agricultural Statistics Research Institute'),
(143799, 113009, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤øą¤¾ą¤‚ą¤–ą„ą¤Æą¤æą¤•ą„€ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(143800, 113010, 'en', 'name', 'Evonik (Singapore), Evonik Pte Ltd'),
(143801, 113011, 'en', 'name', 'Deep Eye Care Foundation'),
(143802, 113012, 'pt', 'name', 'Sociedade Ibero-Americana para o Desenvolvimento das Biorrefinarias'),
(143803, 113013, 'no_lang_code', 'name', 'Lubrizol Life Science Health (United States)'),
(143804, 113014, 'de', 'name', 'Stadtspital Triemli, Triemli Hospital'),
(143805, 113015, 'en', 'name', 'Trinity University, Trinity University, Yaba, Lagos'),
(143806, 113016, 'pt', 'name', 'Sociedade Portuguesa de Ciências da Nutrição e Alimentação'),
(143807, 113017, 'cs', 'name', 'ČeskĆ© vysokĆ© učenĆ­ technickĆ© v Praze'),
(143808, 113017, 'en', 'name', 'Czech Technical University in Prague'),
(143809, 113018, 'pt', 'name', 'Fundação Átrio da Música'),
(143810, 113019, 'en', 'name', 'Science and Technology Commission of Shanghai Municipality'),
(143811, 113020, 'en', 'name', 'Bayazid Rokhan Institute of Higher Education'),
(143812, 113021, 'es', 'name', 'Centro de EnseƱanza para Extranjeros'),
(143813, 113022, 'bn', 'name', 'বাংলাদেশ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ল'' ą¦ą¦Øą§ą¦” ą¦‡ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦Øą§ą¦Æą¦¾ą¦¶ą¦Øą¦¾ą¦² ą¦…ą§ą¦Æą¦¾ą¦«ą§‡ą§Ÿą¦¾ą¦°ą§ą¦ø'),
(143814, 113022, 'en', 'name', 'Bangladesh Institute of Law and International Affairs'),
(143815, 113023, 'en', 'name', 'Women''s and Children''s Hospital'),
(143816, 113024, 'pt', 'name', 'Sociedade Portuguesa de Filosofia'),
(143817, 113025, 'it', 'name', 'Associazione Internazionale di Archeologia Classica'),
(143818, 113026, 'en', 'name', 'Space Development Agency'),
(143819, 113027, 'en', 'name', 'University of Arizona'),
(143820, 113027, 'es', 'name', 'Universidad de Arizona'),
(143821, 113028, 'pt', 'name', 'Academia Livre de PMC-Conservatório Interativo'),
(143822, 113029, 'fr', 'name', 'Laboratoire d''Informatique en Calcul Intensif et Image pour la Simulation'),
(143823, 113030, 'en', 'name', 'Institute for Political Studies, Belgrade'),
(143824, 113030, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за политичке ŃŃ‚ŃƒŠ“ŠøŃ˜Šµ, БеограГ'),
(143825, 113031, 'en', 'name', 'Institute for HyperNetwork Society'),
(143826, 113031, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒć‚¤ćƒ‘ćƒ¼ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æē¤¾ä¼šē ”ē©¶ę‰€'),
(143827, 113032, 'en', 'name', 'Institute of Social Sciences of the Centre of Social and Psychological Sciences of the Slovak Academy of Sciences'),
(143828, 113032, 'sk', 'name', 'Spoločenskovedný Ćŗstav Centra spoločenských a psychologických vied Slovenskej akadĆ©mie vied'),
(143829, 113033, 'en', 'name', 'CAEP Software Center for High Performance Numerical Simulation'),
(143830, 113033, 'zh', 'name', 'äø­ę— é™¢é«˜ę€§čƒ½ę•°å€¼ęØ”ę‹Ÿč½Æä»¶äø­åæƒ'),
(143831, 113034, 'de', 'name', 'Wiener Kreis Gesellschaft, Wiener Kreis Gesellschaft - Verein z. Fƶrderung wissenschaftl. Weltauffassung'),
(143832, 113034, 'en', 'name', 'Vienna Circle Society, Vienna Circle Society - Society for the Advancement of Scientific World Conception'),
(143833, 113035, 'fr', 'name', 'Laboratoire de recherche en sciences de gestion PanthƩon-Assas'),
(143834, 113036, 'no_lang_code', 'name', 'CSL Behring (Portugal)'),
(143835, 113037, 'en', 'name', 'Azenta, Azenta (United States)'),
(143836, 113038, 'no_lang_code', 'name', 'Startup Braga, Startup Braga (Portugal)'),
(143837, 113039, 'en', 'name', 'United States Transportation Command'),
(143838, 113040, 'no_lang_code', 'name', 'MOG Technologies, MOG Technologies (Portugal)'),
(143839, 113041, 'pt', 'name', 'Centro PortuguĆŖs de Fotografia'),
(143840, 113042, 'en', 'name', 'The Swedish Knowledge Centre for Public Transport'),
(143841, 113042, 'sv', 'name', 'K2'),
(143842, 113043, 'de', 'name', 'Institut für Baustoffe'),
(143843, 113043, 'en', 'name', 'Institute for Building Materials'),
(143844, 113044, 'id', 'name', 'Institut Agama Islam Negeri Ponorogo'),
(143845, 113045, 'en', 'name', 'SHIN Nihon Kentei Kyokai'),
(143846, 113045, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę–°ę—„ęœ¬ę¤œå®šå”ä¼š'),
(143847, 113046, 'es', 'name', 'Universitario de Formación'),
(143848, 113047, 'en', 'name', 'Japan Federation Of HEALTH&SPORTS'),
(143849, 113047, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬å„åŗ·ć‚¹ćƒćƒ¼ćƒ„é€£ē›Ÿ'),
(143850, 113048, 'pt', 'name', 'Centro para a Valorização de Resíduos'),
(143851, 113049, 'en', 'name', 'Grameen Caledonian College of Nursing'),
(143852, 113050, 'pt', 'name', 'Centro de Conservação das Borboletas de Portugal'),
(143853, 113051, 'en', 'name', 'Washington Center'),
(143854, 113052, 'en', 'name', 'Embry-Riddle Aeronautical University Prescott Arizona Campus'),
(143855, 113053, 'en', 'name', 'University Institute in Mental Health of Quebec'),
(143856, 113053, 'fr', 'name', 'Institut Universitaire en SantƩ Mentale de QuƩbec'),
(143857, 113054, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŲ§Ų± Ų§Ł„Ų¹Ł„ŁˆŁ…'),
(143858, 113054, 'en', 'name', 'Dar Al Uloom University'),
(143859, 113055, 'en', 'name', 'ProChild CoLAB'),
(143860, 113056, 'ar', 'name', 'المعهد Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„ŲØŲ­ŁˆŲ« الصحة العامة'),
(143861, 113056, 'en', 'name', 'National Institute of Public Health Research'),
(143862, 113056, 'fr', 'name', 'Institut National de Recherches en SantƩ Publique'),
(143863, 113057, 'fr', 'name', 'CEA Paris-Saclay'),
(143864, 113058, 'en', 'name', 'Islamic Azad University, Shahrebabak'),
(143865, 113058, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ؓهربابک'),
(143866, 113059, 'en', 'name', 'Nanofiber Quantum Technologies, Inc., Nanofiber Quantum Technologies, Inc. (Japan)'),
(143867, 113060, 'en', 'name', 'Kwansei Gakuin Junior College'),
(143868, 113060, 'ja', 'name', 'é–¢č„æå­¦é™¢ēŸ­ęœŸå¤§å­¦'),
(143869, 113061, 'no_lang_code', 'name', 'Tecnoveritas Services of Engineering and Systems Technology, Tecnoveritas Serviços de Engenharia e Sistemas Tecnológicos (Portugal)'),
(143870, 113062, 'no_lang_code', 'name', 'Abbott (Portugal)'),
(143871, 113063, 'pt', 'name', 'CĆ¢mara Municipal de Santa Maria da Feira'),
(143872, 113064, 'en', 'name', 'Lakulish Yoga University'),
(143873, 113065, 'en', 'name', 'University of Beira Interior'),
(143874, 113065, 'pt', 'name', 'Universidade da Beira Interior'),
(143875, 113066, 'fr', 'name', 'DILTEC - Didactique des langues, des textes et des cultures, Didactique des Langues, des Textes et des Cultures'),
(143876, 113067, 'pt', 'name', 'Centro Protocolar de Formação Profissional para Jornalistas'),
(143877, 113068, 'en', 'name', 'Japan Association of Charitable Organizations'),
(143878, 113068, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…¬ē›Šę³•äŗŗå”ä¼š'),
(143879, 113069, 'en', 'name', 'Fire Safety Research Institute'),
(143880, 113070, 'fr', 'name', 'Institut de recherche en propriƩtƩ intellectuelle'),
(143881, 113071, 'en', 'name', 'Japan Polar Research Association'),
(143882, 113071, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę„µåœ°ē ”ē©¶ęŒÆčˆˆä¼š'),
(143883, 113072, 'en', 'name', 'NOVA School of Business and Economics'),
(143884, 113073, 'en', 'name', 'Chiba Keizai College'),
(143885, 113073, 'ja', 'name', 'åƒč‘‰ēµŒęøˆå¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(143886, 113074, 'en', 'name', 'Medical Art Center Medical Clinic'),
(143887, 113074, 'pt', 'name', 'Medical Art Center Clƭnica MƩdica Lda'),
(143888, 113075, 'en', 'name', 'Sharjah Maritime Academy'),
(143889, 113076, 'en', 'name', 'Wakayama Prefectural Fisheries Experiment Station'),
(143890, 113076, 'ja', 'name', 'å’Œę­Œå±±ēœŒę°“ē”£č©¦éØ“å “');
INSERT INTO `ror_settings` VALUES
(143891, 113077, 'cs', 'name', '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'),
(143892, 113077, 'en', 'name', 'Czech Academy of Sciences, Masaryk Institute and Archives'),
(143893, 113078, 'en', 'name', 'SƔrospatak Reformed Theological University'),
(143894, 113078, 'hu', 'name', 'SƔrospataki ReformƔtus HittudomƔnyi Egyetem'),
(143895, 113079, 'en', 'name', 'Geography and Planning Laboratory'),
(143896, 113079, 'fr', 'name', 'Laboratoire de gƩographie et d''amƩnagement'),
(143897, 113080, 'en', 'name', 'Institute of Engineering'),
(143898, 113080, 'ne', 'name', 'ą¤ˆą¤Øą„ą¤œą¤æą¤Øą¤æą¤Æą¤°ą¤æą¤™ ą¤…ą¤§ą„ą¤Æą¤Æą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(143899, 113081, 'en', 'name', 'Nihon Wellness Sports University'),
(143900, 113081, 'ja', 'name', 'ę—„ęœ¬ć‚¦ć‚§ćƒ«ćƒć‚¹ć‚¹ćƒćƒ¼ćƒ„å¤§å­¦'),
(143901, 113082, 'en', 'name', 'Ariel University'),
(143902, 113083, 'en', 'name', 'Blood Products Research Organization'),
(143903, 113083, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč”€ę¶²č£½å‰¤čŖæęŸ»ę©Ÿę§‹'),
(143904, 113084, 'en', 'name', 'St. Xavier''s College (Autonomous), Kolkata'),
(143905, 113085, 'en', 'name', 'Naval Submarine Medical Research Laboratory'),
(143906, 113086, 'en', 'name', 'Graduate School of China Academy of Engineering Physics'),
(143907, 113086, 'zh', 'name', 'äø­ē‰©é™¢ē ”ē©¶ē”Ÿé™¢'),
(143908, 113087, 'ca', 'name', 'Grups de Recerca d''AmĆØrica i ƀfrica Llatines - GRAAL'),
(143909, 113088, 'en', 'name', 'China Agriculture Research System'),
(143910, 113088, 'zh', 'name', 'ēŽ°ä»£å†œäøšäŗ§äøšęŠ€ęœÆä½“ē³»'),
(143911, 113089, 'af', 'name', 'Universiteit van Kaapstad'),
(143912, 113089, 'en', 'name', 'University of Cape Town'),
(143913, 113089, 'xh', 'name', 'iYunivesithi yaseKapa'),
(143914, 113090, 'pt', 'name', 'Centro Operativo e Tecnológico Hortofrutícola Nacional'),
(143915, 113091, 'en', 'name', 'Institute of Metal Research'),
(143916, 113092, 'en', 'name', 'Modbury Hospital'),
(143917, 113093, 'fr', 'name', 'UniversitƩ Bordeaux Montaigne'),
(143918, 113094, 'en', 'name', 'ERN GENTURIS'),
(143919, 113095, 'en', 'name', 'Japan Wrestling Federation'),
(143920, 113095, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ¬ć‚¹ćƒŖćƒ³ć‚°å”ä¼š'),
(143921, 113096, 'en', 'name', 'University of Franche-ComtƩ'),
(143922, 113096, 'fr', 'name', 'UniversitƩ de franche-comtƩ'),
(143923, 113097, 'pt', 'name', 'SerQ Centro de Inovação e Competências da Floresta'),
(143924, 113098, 'de', 'name', 'WPZ Research GmbH, WPZ Research GmbH (Austria)'),
(143925, 113099, 'en', 'name', 'Nagaoka Chuo General hospital'),
(143926, 113099, 'ja', 'name', 'JAę–°ę½ŸåŽšē”Ÿé€£é•·å²”äø­å¤®ē¶œåˆē—…é™¢'),
(143927, 113100, 'en', 'name', 'Japan Electrical Safety & Environment Technology Laboratories'),
(143928, 113100, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗé›»ę°—å®‰å…Øē’°å¢ƒē ”ē©¶ę‰€'),
(143929, 113101, 'en', 'name', 'Queensland University of Technology'),
(143930, 113102, 'en', 'name', 'Kawasaki Nursing Association'),
(143931, 113102, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå·å“Žåø‚ēœ‹č­·å”ä¼š'),
(143932, 113103, 'en', 'name', 'Croatian Natural History Museum'),
(143933, 113104, 'de', 'name', 'UniversitƤt Wien'),
(143934, 113104, 'en', 'name', 'University of Vienna'),
(143935, 113104, 'hr', 'name', 'SveučiliŔte u Beču'),
(143936, 113104, 'hu', 'name', 'BƩcsi Egyetem'),
(143937, 113104, 'sl', 'name', 'Univerza na Dunaju'),
(143938, 113105, 'en', 'name', 'Kazakh Academy of Transport and Communications named after M.Tynyshpaev'),
(143939, 113105, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ› көлік және ŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŃ Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(143940, 113105, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ транспорта Šø ŠŗŠ¾Š¼Š¼ŃƒŠ½ŠøŠŗŠ°Ń†ŠøŠ¹ имени М. Š¢Ń‹Š½Ń‹ŃˆŠæŠ°ŠµŠ²Š°'),
(143941, 113106, 'de', 'name', 'Universitätsklinikum Würzburg'),
(143942, 113107, 'pt', 'name', 'Sociedade Portuguesa de Robótica'),
(143943, 113108, 'it', 'name', 'Agenzia Regionale per la Prevenzione e Protezione Ambientale del Veneto'),
(143944, 113109, 'no_lang_code', 'name', 'Linklaters LLP Lisbon, Linklaters LLP Lisbon (Portugal)'),
(143945, 113110, 'bn', 'name', 'ą¦•ą¦æą¦¶ą§‹ą¦°ą¦—ą¦žą§ą¦œ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(143946, 113110, 'en', 'name', 'Kishoreganj University'),
(143947, 113111, 'de', 'name', 'Institut für Dynamische Systeme und Regelungstechnik'),
(143948, 113111, 'en', 'name', 'Institute for Dynamic Systems and Control'),
(143949, 113112, 'en', 'name', 'Al-Farabi Kazakh National University'),
(143950, 113112, 'kk', 'name', 'Әл-Фараби атынГағы ŅšŠ°Š·Š°Ņ› ұлттық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(143951, 113112, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ имени аль-Фараби'),
(143952, 113113, 'pt', 'name', 'Sociedade Portuguesa de Anestesiologia'),
(143953, 113114, 'en', 'name', 'Diversity, Genomes and Insects-Microorganisms Interactions'),
(143954, 113114, 'fr', 'name', 'DiversitƩ, gƩnomes et interactions micro-organismes-insectes'),
(143955, 113115, 'en', 'name', 'In Vivo Arthropod Security Facility'),
(143956, 113116, 'pt', 'name', 'Instituto Superior Tecnico Campus Tecnológico e Nuclear'),
(143957, 113117, 'en', 'name', 'College of Engineering and Management, Kolaghat'),
(143958, 113118, 'en', 'name', 'Andalusian Health Service'),
(143959, 113118, 'es', 'name', 'Servicio Andaluz de Salud'),
(143960, 113119, 'no_lang_code', 'name', 'Pioneer Europe NV, Pioneer Europe NV (Portugal)'),
(143961, 113120, 'no_lang_code', 'name', 'Shine 2Europe, Shine 2Europe (Portugal)'),
(143962, 113121, 'en', 'name', 'KPMG (Singapore), KPMG Services Pte. Ltd.'),
(143963, 113122, 'en', 'name', 'Quantum Science Center of Guangdong-Hong Kong-Macao Greater Bay Area'),
(143964, 113122, 'zh', 'name', 'ē²¤ęøÆę¾³é‡å­ē§‘å­¦äø­åæƒ'),
(143965, 113123, 'fr', 'name', 'CIUSSS du Centre-Ouest-de-l''Ǝle-de-MontrĆ©al'),
(143966, 113124, 'en', 'name', 'Portuguese Army'),
(143967, 113124, 'pt', 'name', 'Exército Português'),
(143968, 113125, 'es', 'name', 'Unidad de Investigación sobre Representaciones Culturales y Sociales'),
(143969, 113126, 'no_lang_code', 'name', 'Ar Telecom, Ar Telecom (Portugal)'),
(143970, 113127, 'fr', 'name', 'Biologie et pharmacologie des plaquettes sanguines : hƩmostase, thrombose, transfusion'),
(143971, 113128, 'en', 'name', 'San Isidro College'),
(143972, 113129, 'en', 'name', 'Kauno kolegija Higher Education Institution'),
(143973, 113129, 'lt', 'name', 'Kauno Kolegija'),
(143974, 113130, 'fr', 'name', 'Observatoire Aquitain des Sciences de l''Univers'),
(143975, 113131, 'en', 'name', 'Commonwealth Scientific and Industrial Research Organisation'),
(143976, 113132, 'en', 'name', 'NSF NCAR Climate and Global Dynamics Laboratory'),
(143977, 113133, 'no_lang_code', 'name', 'Almirall (Spain)'),
(143978, 113134, 'de', 'name', 'Collegium Helveticum'),
(143979, 113135, 'fr', 'name', 'MinistĆØre de l''Ɖconomie, de l''Innovation et de l''Ɖnergie'),
(143980, 113136, 'en', 'name', 'Jhargram Raj College'),
(143981, 113137, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ†ŁŠŲ³ Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(143982, 113137, 'en', 'name', 'Genius University for Sciences & Technology'),
(143983, 113138, 'pt', 'name', 'Centro de Investigação em Psicologia para o Desenvolvimento'),
(143984, 113139, 'pt', 'name', 'Núcleo de Investigação Científica de Incêndios Florestais'),
(143985, 113140, 'cs', 'name', 'COMPASS – Tokamak pro výzkum termonukleĆ”rnĆ­ fĆŗze'),
(143986, 113140, 'en', 'name', 'COMPASS – Tokamak for Thermonuclear Fusion Research'),
(143987, 113141, 'pt', 'name', 'Faculdade de MĆŗsica do EspĆ­rito Santo "MaurĆ­cio de Oliveira" - FAMES'),
(143988, 113142, 'fr', 'name', 'UnitƩ d''Appui et de Recherche PythƩas'),
(143989, 113143, 'de', 'name', 'Fachhochschule Westschweiz - Wallis'),
(143990, 113143, 'fr', 'name', 'HES-SO Valais-Wallis, Haute Ɖcole SpĆ©cialisĆ©e de Suisse Occidentale - Valais'),
(143991, 113144, 'fr', 'name', 'Laboratoire de sociologie juridique'),
(143992, 113145, 'ar', 'name', 'الجامعة Ų§Ł„Ų„Ų³Ł„Ų§Ł…ŁŠŲ©'),
(143993, 113145, 'en', 'name', 'Islamic University of Madinah'),
(143994, 113146, 'en', 'name', 'National Institute of Oceanography, Pakistan'),
(143995, 113147, 'en', 'name', 'Institute of Nutrition and Functional Foods'),
(143996, 113147, 'fr', 'name', 'Institut sur la nutrition et les aliments fonctionnels (INAF)'),
(143997, 113148, 'es', 'name', 'Universidad de la Isla de la Juventud "Jesús Montané Oropesa"'),
(143998, 113149, 'fr', 'name', 'Centre international d''Ʃtudes supƩrieures en sciences agronomiques, Institut Agro Montpellier'),
(143999, 113150, 'en', 'name', 'University of the Witwatersrand'),
(144000, 113151, 'en', 'name', 'Foundation for Mehir and Youth Marriage'),
(144001, 113151, 'tr', 'name', 'GenƧleri Evlendirme ve Mehir Vakfı'),
(144002, 113152, 'en', 'name', 'LumiĆØre University Lyon 2'),
(144003, 113152, 'fr', 'name', 'Université Lumière Lyon 2'),
(144004, 113153, 'en', 'name', 'ARC Centre of Excellence for Engineered Quantum Systems'),
(144005, 113154, 'de', 'name', 'Trummer & Novak-Zezula OG'),
(144006, 113154, 'en', 'name', 'Center for Health and Migration, Center for Health and Migration (Austria)'),
(144007, 113155, 'es', 'name', 'Centro Cultural Universitario Tlatelolco'),
(144008, 113156, 'es', 'name', 'Servicios Especiales de Salud Hospital Universitario de Caldas'),
(144009, 113157, 'en', 'name', 'Gachon University'),
(144010, 113157, 'ko', 'name', 'ź°€ģ²œėŒ€ķ•™źµ'),
(144011, 113158, 'no_lang_code', 'name', 'Empresa Portuguesa de Ɓguas Livres (Portugal), Empresa Portuguesa de Ɓguas Livres, S.A., Portuguese Company of Free Water'),
(144012, 113159, 'en', 'name', 'The Klamath Tribes'),
(144013, 113160, 'no_lang_code', 'name', 'Docapesca Portos e Lotas (Portugal), Docapesca Portos e Lotas, S.A.'),
(144014, 113161, 'en', 'name', 'National High Magnetic Field Laboratory'),
(144015, 113162, 'en', 'name', 'Fire University'),
(144016, 113162, 'pl', 'name', 'Akademia Pożarnicza'),
(144017, 113163, 'en', 'name', 'Heyou Hospital'),
(144018, 113163, 'zh', 'name', 'å’Œē„åŒ»é™¢'),
(144019, 113164, 'en', 'name', 'Open University of Kenya'),
(144020, 113165, 'de', 'name', 'UniversitƤt Leipzig'),
(144021, 113165, 'en', 'name', 'Leipzig University'),
(144022, 113166, 'fr', 'name', 'Geosciences Paris-Saclay'),
(144023, 113167, 'en', 'name', 'Advancing Sight Network'),
(144024, 113168, 'pt', 'name', 'CUF Infante Santo Hospital'),
(144025, 113169, 'pt', 'name', 'MORE – Laboratório Colaborativo Montanhas de Investigação – Associação'),
(144026, 113170, 'en', 'name', 'United States Air Mobility Command'),
(144027, 113171, 'en', 'name', 'Department of Health and Social Care'),
(144028, 113172, 'fr', 'name', 'Laboratoire Interuniversitaire de Biologie de la MotricitƩ'),
(144029, 113173, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de Chimie de Montpellier'),
(144030, 113174, 'en', 'name', 'Rockwell International, Rockwell International (United States)'),
(144031, 113175, 'es', 'name', 'Universidad Nacional Experimental del Yaracuy'),
(144032, 113176, 'fr', 'name', 'Centre de Recherche en Acquisition et Traitement de l''Image pour la SantƩ'),
(144033, 113177, 'en', 'name', 'Federal Research and Clinical Center of Physical-Chemical Medicine named after Y.M. Lopukhin'),
(144034, 113177, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-клинический центр физико-химической меГицины им. акаГемика Š®. М. Š›Š¾ŠæŃƒŃ…ŠøŠ½Š° Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Š³Š¾ меГико-биологического агентства'),
(144035, 113178, 'cs', 'name', 'NĆ”rodnĆ­ centrum lĆ©kařskĆ© genomiky'),
(144036, 113178, 'en', 'name', 'National Centre for Medical Genomics'),
(144037, 113179, 'en', 'name', 'International Taraz University named after Sherkhan Murtaza'),
(144038, 113180, 'no_lang_code', 'name', 'CAETSU TWO, CAETSU TWO (Portugal)'),
(144039, 113181, 'es', 'name', 'Agencia Nacional de Promoción de la Investigación, el Desarrollo Tecnológico y la Innovación'),
(144040, 113182, 'bn', 'name', 'ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°ą§€ą¦Æą¦¼ ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦Ŗą§ą¦°ą¦¤ą¦æą¦·ą§ą¦ ą¦¾ą¦Ø, আগরতলা'),
(144041, 113182, 'en', 'name', 'National Institute of Technology Agartala'),
(144042, 113182, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, अगरतला'),
(144043, 113183, 'en', 'name', 'GenesisCare'),
(144044, 113184, 'pt', 'name', 'Autoridade de Gestão do Programa Operacional Competitividade e Internacionalização'),
(144045, 113185, 'pt', 'name', 'Turismo de Portugal'),
(144046, 113186, 'en', 'name', 'Maharashtra Institute of Medical Science and Research'),
(144047, 113187, 'en', 'name', 'Amsterdam UMC Location University of Amsterdam'),
(144048, 113188, 'en', 'name', 'Symbiosis University of Applied Sciences'),
(144049, 113189, 'en', 'name', 'DUG Technology, DUG Technology (Australia)'),
(144050, 113190, 'pt', 'name', 'Instituto de Higiene e Medicina Tropical Biblioteca'),
(144051, 113191, 'en', 'name', 'University of Southern California'),
(144052, 113191, 'es', 'name', 'Universidad del Sur de California'),
(144053, 113191, 'fr', 'name', 'UniversitƩ de Californie du Sud'),
(144054, 113192, 'en', 'name', 'Sempra Energy, Sempra Energy (United States)'),
(144055, 113193, 'id', 'name', 'Poltekkes Kemenkes Gorontalo'),
(144056, 113194, 'en', 'name', 'Irkutsk Scientific Center of Surgery and Traumatology'),
(144057, 113194, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ Š½Š°ŃƒŃ‡Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š˜Ń€ŠŗŃƒŃ‚ŃŠŗŠøŠ¹ Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр Ń…ŠøŃ€ŃƒŃ€Š³ŠøŠø Šø травматологии'),
(144058, 113195, 'fr', 'name', 'Systèmes de Référence Temps-Espace'),
(144059, 113196, 'pt', 'name', 'Sociedade Portuguesa de Investigação em Educação MatemÔtica'),
(144060, 113197, 'de', 'name', 'Deutschen Institute für Textil und Faserforschung'),
(144061, 113197, 'en', 'name', 'German Institutes of Textile and Fiber Research Denkendorf'),
(144062, 113198, 'en', 'name', 'Japan Society of Newer Metals'),
(144063, 113198, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę–°é‡‘å±žå”ä¼š'),
(144064, 113199, 'en', 'name', 'Carlos III University of Madrid'),
(144065, 113199, 'es', 'name', 'Universidad Carlos III de Madrid'),
(144066, 113200, 'no_lang_code', 'name', 'Tessa Therapeutic (Singapore)'),
(144067, 113201, 'en', 'name', 'Shinano Educational Association'),
(144068, 113201, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäæ”ęæƒę•™č‚²ä¼š'),
(144069, 113202, 'en', 'name', 'GM University Davanagere Karnataka'),
(144070, 113203, 'pt', 'name', 'Jardim Botânico da Ajuda'),
(144071, 113204, 'no_lang_code', 'name', 'Sinfic (Portugal), Sinfic, S.A.'),
(144072, 113205, 'ar', 'name', 'ŲÆŲ§Ų± Ų§Ł„Ų¹Ł„ŁˆŁ… ŲÆŁŠŁˆŲØŁ†ŲÆ'),
(144073, 113205, 'en', 'name', 'Darul Uloom Deoband'),
(144074, 113205, 'hi', 'name', 'ą¤¦ą¤¾ą¤°ą„ą¤² ą¤‰ą¤²ą„‚ą¤® ą¤¦ą„‡ą¤µą¤¬ą¤‚ą¤¦'),
(144075, 113205, 'ur', 'name', 'ŲÆŲ§Ų± Ų§Ł„Ų¹Ł„ŁˆŁ… ŲÆŪŒŁˆŲØŁ†ŲÆ'),
(144076, 113206, 'cs', 'name', 'Astronomický Ćŗstav AV ČR, Astronomický Ćŗstav AV ČR, v. v. i., Astronomický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(144077, 113206, 'en', 'name', 'Czech Academy of Sciences, Astronomical Institute'),
(144078, 113207, 'pt', 'name', 'Biblioteca PĆŗblica e Arquivo Regional de Ponta Delgada'),
(144079, 113208, 'en', 'name', 'Victor Chang Cardiac Research Institute'),
(144080, 113209, 'pt', 'name', 'Escola de Artes do Norte Alentejano'),
(144081, 113210, 'cs', 'name', 'Historický Ćŗstav AV ČR, Historický Ćŗstav AV ČR, v. v. i., Historický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(144082, 113210, 'en', 'name', 'Czech Academy of Sciences, Institute of History'),
(144083, 113211, 'en', 'name', 'British Sjƶgren''s Syndrome Association'),
(144084, 113212, 'pt', 'name', 'Instituto Superior de Direito Canónico'),
(144085, 113213, 'en', 'name', 'Agricultural and Rural Management Training Institute'),
(144086, 113214, 'en', 'name', 'Shri BM Patil Medical College'),
(144087, 113215, 'en', 'name', 'Canadian Aboriginal AIDS Network'),
(144088, 113216, 'de', 'name', 'TÜV AI.Lab, TÜV AI.Lab (Germany)'),
(144089, 113217, 'en', 'name', 'Yale University'),
(144090, 113217, 'es', 'name', 'Universidad Yale'),
(144091, 113218, 'en', 'name', 'Japanese Society of Soil Science and Plant Nutrition'),
(144092, 113218, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åœŸå£Œč‚„ę–™å­¦ä¼š'),
(144093, 113219, 'fr', 'name', 'ERN ITHACA'),
(144094, 113220, 'en', 'name', 'Idorsia, Idorsia Ltd'),
(144095, 113220, 'no_lang_code', 'name', 'Idorsia (Switzerland)'),
(144096, 113221, 'en', 'name', 'Nepean Hospital'),
(144097, 113222, 'en', 'name', 'Space center of the University of Montpellier'),
(144098, 113222, 'fr', 'name', 'Centre Spatial de l''UniversitƩ de Montpellier'),
(144099, 113223, 'en', 'name', 'openRxiv'),
(144100, 113224, 'en', 'name', 'City of Helsinki'),
(144101, 113224, 'fi', 'name', 'Helsingin Kaupunki'),
(144102, 113225, 'en', 'name', 'Harvard University'),
(144103, 113225, 'es', 'name', 'Universidad de Harvard'),
(144104, 113226, 'es', 'name', 'Universidad San Ignacio de Loyola'),
(144105, 113227, 'en', 'name', 'Japan Pediatric Association'),
(144106, 113227, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å°å…ē§‘åŒ»ä¼š'),
(144107, 113228, 'fr', 'name', 'mƩdialab Sciences Po'),
(144108, 113229, 'en', 'name', 'Nishinomiya Medical Association'),
(144109, 113229, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč„æå®®åø‚åŒ»åø«ä¼š'),
(144110, 113230, 'pt', 'name', 'Biblioteca Municipal Almeida Garrett'),
(144111, 113231, 'en', 'name', 'Sindh Institute of Ophthalmology & Visual Sciences (SIOVS)'),
(144112, 113232, 'en', 'name', 'Biju Patnaik University of Technology'),
(144113, 113232, 'or', 'name', 'ବିଜୁ ą¬Ŗą¬Ÿą­ą¬Ÿą¬Øą¬¾ą­Ÿą¬• ą¬¬ą­ˆą¬·ą­Ÿą¬æą¬• ą¬¬ą¬æą¬¶ą­ą¬µą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(144114, 113233, 'en', 'name', 'SciencePark Corporation, SciencePark Corporation (Japan)'),
(144115, 113234, 'pt', 'name', 'Instituto de Investigação Inovação e Desenvolvimento'),
(144116, 113235, 'no_lang_code', 'name', 'Texas Instruments (United States)'),
(144117, 113236, 'en', 'name', 'U.S. Army Tank-automotive and Armaments Command'),
(144118, 113237, 'en', 'name', 'Swedish College of Engineering & Technology Rahim Yar Khan'),
(144119, 113238, 'en', 'name', 'South Eastern Sydney Local Health District'),
(144120, 113239, 'pt', 'name', 'Junta de Freguesia de SĆ£o Domingos de Benfica'),
(144121, 113240, 'es', 'name', 'Departamento de Salud'),
(144122, 113240, 'eu', 'name', 'Osasun Departamentua'),
(144123, 113241, 'en', 'name', 'Steno Diabetes Centers'),
(144124, 113242, 'no_lang_code', 'name', 'Arouconstrói Engenharia e Construções (Portugal), Arouconstrói Engenharia e Construções, S.A.'),
(144125, 113243, 'fr', 'name', 'CERC - Centre d''Ɖtudes et de Recherches Comparatistes, Centre d''Ɖtudes et de Recherches Comparatistes'),
(144126, 113244, 'en', 'name', 'Messiah University'),
(144127, 113245, 'pt', 'name', 'Instituto de Direito Penal Económico e Europeu'),
(144128, 113246, 'es', 'name', 'Hospital General Docente HƩroes del Baire'),
(144129, 113247, 'en', 'name', 'Google (Singapore), Google Asia Pacific Pte Ltd'),
(144130, 113248, 'pt', 'name', 'Portugal Inovação Social'),
(144131, 113249, 'en', 'name', 'Ofuna Chuo Hospital'),
(144132, 113249, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗč²”å›£äŗ’ęµä¼šå¤§čˆ¹äø­å¤®ē—…é™¢'),
(144133, 113250, 'en', 'name', 'Common Language Resources and Technology Infrastructure'),
(144134, 113251, 'en', 'name', 'Institute of Agricultural and Forestry Defense of EspĆ­rito Santo'),
(144135, 113251, 'pt', 'name', 'Instituto de Defesa AgropecuƔria e Florestal do Espƭrito Santo'),
(144136, 113252, 'en', 'name', 'SABO & Landslide Technical Center'),
(144137, 113252, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē ‚é˜²ćƒ»åœ°ć™ć¹ć‚ŠęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(144138, 113253, 'da', 'name', 'Energistyrelsen'),
(144139, 113253, 'en', 'name', 'Danish Energy Agency'),
(144140, 113254, 'de', 'name', 'Gustav Mahler PrivatuniversitƤt'),
(144141, 113255, 'en', 'name', 'Ministry of Education and Research'),
(144142, 113255, 'no', 'name', 'Kunnskapsdepartementet, lit. Ministry of Knowledge'),
(144143, 113256, 'pt', 'name', 'Sociedade Portuguesa de Cirurgia'),
(144144, 113257, 'en', 'name', 'Terrestrial Ecosystem Research Network'),
(144145, 113258, 'id', 'name', 'Universitas Saintek Muhammadiyah'),
(144146, 113259, 'en', 'name', 'Centre for Genomic Regulation'),
(144147, 113260, 'pt', 'name', 'Quercus - Associação Nacional de Conservação da Natureza, Quercus'),
(144148, 113261, 'en', 'name', 'Kawada Hospital'),
(144149, 113261, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę²³ē”°ē—…é™¢'),
(144150, 113262, 'en', 'name', 'Shizuoka City Institute Of Environmental Sciences And Public Health'),
(144151, 113262, 'ja', 'name', 'é™å²”åø‚ē’°å¢ƒäæå„ē ”ē©¶ę‰€'),
(144152, 113263, 'fr', 'name', 'CollĆØge Communautaire du Nouveau-Brunswick'),
(144153, 113264, 'pt', 'name', 'Sociedade Portuguesa de MatemƔtica'),
(144154, 113265, 'en', 'name', 'Gustave Eiffel University'),
(144155, 113265, 'fr', 'name', 'UniversitƩ Gustave Eiffel'),
(144156, 113266, 'fr', 'name', 'Centre de recherche en amƩnagement et dƩveloppement'),
(144157, 113267, 'en', 'name', 'Geo-Environmental Protection Center'),
(144158, 113267, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåœŸå£Œē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(144159, 113268, 'en', 'name', 'The Osaka Community Foundation'),
(144160, 113268, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗć‚³ćƒŸćƒ„ćƒ‹ćƒ†ć‚£č²”å›£'),
(144161, 113269, 'fr', 'name', 'Edition, LittƩratures, Langages, Informatique, Arts, Didactiques, Discours'),
(144162, 113270, 'en', 'name', 'Medical Research Council'),
(144163, 113271, 'en', 'name', 'Cognition, Action, and Sensorimotor Plasticity'),
(144164, 113272, 'en', 'name', 'Society of University Surgeons'),
(144165, 113273, 'en', 'name', 'Rajiv Gandhi Technical University'),
(144166, 113273, 'hi', 'name', 'ą¤°ą¤¾ą¤œą„€ą¤µ ą¤—ą¤¾ą¤‚ą¤§ą„€ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Ær'),
(144167, 113274, 'en', 'name', 'Japan Electronics Packaging and Circuits Association'),
(144168, 113274, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬é›»å­å›žč·Æå·„ę„­ä¼š'),
(144169, 113275, 'en', 'name', 'Japanese Society of Oral and Maxillofacial Surgeons'),
(144170, 113275, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å£č…”å¤–ē§‘å­¦ä¼š'),
(144171, 113276, 'en', 'name', 'University of Alabama'),
(144172, 113276, 'es', 'name', 'Universidad de Alabama'),
(144173, 113276, 'fr', 'name', 'UniversitƩ de l''Alabama'),
(144174, 113277, 'en', 'name', 'Japan Organics Recycling Association'),
(144175, 113277, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ęœ‰ę©Ÿč³‡ęŗå”ä¼š'),
(144176, 113278, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲµŲ¹ŲÆŲ©'),
(144177, 113278, 'en', 'name', 'Sa''ada University'),
(144178, 113279, 'no_lang_code', 'name', 'KPMG (Netherlands)'),
(144179, 113280, 'id', 'name', 'Universitas PGRI Silampari'),
(144180, 113281, 'en', 'name', 'National Land Planning Association'),
(144181, 113281, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå›½åœŸčØˆē”»å”ä¼š'),
(144182, 113282, 'en', 'name', 'The MRC Foundation'),
(144183, 113282, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē§»å‹•ē„”ē·šć‚»ćƒ³ć‚æćƒ¼'),
(144184, 113283, 'en', 'name', 'University of Canterbury'),
(144185, 113283, 'mi', 'name', 'Te Whare Wānanga o Waitaha'),
(144186, 113284, 'en', 'name', 'IRYO Sosei University'),
(144187, 113284, 'ja', 'name', 'åŒ»ē™‚å‰µē”Ÿå¤§å­¦'),
(144188, 113285, 'fr', 'name', 'Clermont UniversitƩ'),
(144189, 113286, 'en', 'name', 'Cold Region Port and Harbor Engineering Research Center'),
(144190, 113286, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåÆ’åœ°ęøÆę¹¾ęŠ€č”“ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(144191, 113287, 'en', 'name', 'The University Of Agriculture Dera Ismail Khan'),
(144192, 113288, 'en', 'name', 'Hassan II Academy of Science and Technology'),
(144193, 113288, 'fr', 'name', 'AcadƩmie Hassan II des Sciences et Techniques'),
(144194, 113289, 'en', 'name', 'Nagano Prefectural College'),
(144195, 113289, 'ja', 'name', 'é•·é‡ŽēœŒēŸ­ęœŸå¤§å­¦'),
(144196, 113290, 'en', 'name', 'Amili Pte Ltd, Amili Pte Ltd (Singapore)'),
(144197, 113291, 'pt', 'name', 'Direção-Geral da Administração e do Emprego Público'),
(144198, 113292, 'en', 'name', 'California Digital Library'),
(144199, 113293, 'no_lang_code', 'name', 'General Electric (United Kingdom)'),
(144200, 113294, 'en', 'name', 'Danish Cancer Society'),
(144201, 113295, 'en', 'name', 'Defense & Veterans Center for Integrative Pain Management'),
(144202, 113296, 'it', 'name', 'Ospedale Castelfranco Veneto'),
(144203, 113297, 'en', 'name', 'Institute of Ecology, A.C.'),
(144204, 113297, 'es', 'name', 'Instituto de EcologĆ­a, Instituto de EcologĆ­a, A.C.'),
(144205, 113298, 'no_lang_code', 'name', 'Angelini Pharma (Portugal)'),
(144206, 113299, 'en', 'name', 'Sri Dev Suman Uttarakhand University'),
(144207, 113299, 'mr', 'name', 'Sri Dev Suman Uttarakhand Vishwavidyalay'),
(144208, 113300, 'en', 'name', 'Fremantle Hospital'),
(144209, 113301, 'en', 'name', 'Malla Reddy Engineering College for Women'),
(144210, 113302, 'en', 'name', 'Ministry of Energy'),
(144211, 113302, 'th', 'name', 'ąøąø£ąø°ąø—ąø£ąø§ąø‡ąøžąø„ąø±ąø‡ąø‡ąø²ąø™'),
(144212, 113303, 'es', 'name', 'Benemérito Instituto Normal del Estado "Gral. Juan Crisóstomo Bonilla"'),
(144213, 113304, 'en', 'name', 'Akiru Municipal Medical Center'),
(144214, 113304, 'ja', 'name', 'å…¬ē«‹é˜æä¼Žē•™åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(144215, 113305, 'pt', 'name', 'Biobanco.pt'),
(144216, 113306, 'en', 'name', 'Rethink Learning Inc'),
(144217, 113307, 'pt', 'name', 'Centro de Investigação em Sistemas Electromecatrónicos'),
(144218, 113308, 'en', 'name', 'Esaka Hospital'),
(144219, 113308, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗę¾ęŸä¼šę¦Žå‚ē—…é™¢'),
(144220, 113309, 'no_lang_code', 'name', 'Neurowave (Portugal)'),
(144221, 113310, 'en', 'name', 'Occupational Safety Research Institute'),
(144222, 113311, 'pt', 'name', 'Laboratório de Software ConfiÔvel'),
(144223, 113312, 'no_lang_code', 'name', 'Eli Lilly (Portugal)'),
(144224, 113313, 'en', 'name', 'Recycling and Risk'),
(144225, 113313, 'fr', 'name', 'Recyclage et risque'),
(144226, 113314, 'es', 'name', 'Instituto de Ciencias de la Atmósfera y Cambio ClimÔtico'),
(144227, 113315, 'fr', 'name', 'Institut Agro Dijon'),
(144228, 113316, 'pt', 'name', 'Centro de Estudos de Arquitectura e Urbanismo'),
(144229, 113317, 'es', 'name', 'Hospital AlcĆ­var'),
(144230, 113318, 'en', 'name', 'University of Bergen'),
(144231, 113318, 'fi', 'name', 'Bergenin Yliopisto'),
(144232, 113318, 'la', 'name', 'Universitas Bergensis'),
(144233, 113318, 'no', 'name', 'Universitetet i Bergen'),
(144234, 113319, 'tr', 'name', 'Akademik Bilişim Araştırmaları Derneği'),
(144235, 113320, 'no_lang_code', 'name', 'Sincolor (Czechia)'),
(144236, 113321, 'en', 'name', 'Langford Research Institute'),
(144237, 113322, 'pt', 'name', 'Federação Portuguesa de Espeleologia'),
(144238, 113323, 'en', 'name', 'Binus University'),
(144239, 113323, 'id', 'name', 'Universitas Bina Nusantara'),
(144240, 113324, 'en', 'name', 'Tigray Agricultural Research Institute (TARI)'),
(144241, 113324, 'ti', 'name', 'įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ įˆįˆ­įˆįˆ­ įˆ•įˆ­įˆ» į‰µįŒįˆ«'),
(144242, 113325, 'en', 'name', 'Nature Conservation and Study Centre'),
(144243, 113326, 'en', 'name', 'Osumikanoya Hospital'),
(144244, 113326, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗé¹æå…å³¶ę„›åæƒä¼šå¤§éš…é¹æå±‹ē—…é™¢'),
(144245, 113327, 'de', 'name', 'Institut für Design, Materialien und Fabrikation'),
(144246, 113327, 'en', 'name', 'Institute of Design, Materials and Fabrication'),
(144247, 113328, 'en', 'name', 'All India Institute of Medical Sciences, Vijaypur, Jammu'),
(144248, 113329, 'en', 'name', 'TwinEdge Bioscience, TwinEdge Bioscience (Switzerland), TwinEdge Bioscience SA'),
(144249, 113330, 'no_lang_code', 'name', 'J Garraio & Ca (Portugal)'),
(144250, 113331, 'cs', 'name', 'NĆ”rodnĆ­ LĆ©kařskĆ” Knihovna'),
(144251, 113331, 'en', 'name', 'National Medical Library'),
(144252, 113332, 'es', 'name', 'Instituto de BiologĆ­a de Organismos Marinos'),
(144253, 113333, 'es', 'name', 'Asociación Colombiana de Ciencias Biológicas'),
(144254, 113334, 'en', 'name', 'Independent National Electoral Commission'),
(144255, 113335, 'pt', 'name', 'Laboratório da Cor'),
(144256, 113336, 'de', 'name', 'SƤchsische Akademie der Wissenschaften zu Leipzig'),
(144257, 113336, 'en', 'name', 'Saxon Academy of Sciences and Humanities in Leipzig'),
(144258, 113337, 'fr', 'name', 'Centre Ellipse'),
(144259, 113338, 'en', 'name', 'Sydney Hospital'),
(144260, 113339, 'en', 'name', 'CMMI – Cyprus Marine & Maritime Institute, CMMI – Cyprus Marine & Maritime Institute (Cyprus)'),
(144261, 113340, 'en', 'name', 'Turkish Association for Landscape Architecture Education and Science'),
(144262, 113341, 'en', 'name', 'Texas Tech University'),
(144263, 113342, 'en', 'name', 'The Institute of Image Information and Television Engineers'),
(144264, 113342, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę˜ åƒęƒ…å ±ćƒ”ćƒ‡ć‚£ć‚¢å­¦ä¼š'),
(144265, 113343, 'en', 'name', 'ERN ReCONNET'),
(144266, 113344, 'pt', 'name', 'Associação Portuguesa de Estudos sobre as Mulheres'),
(144267, 113345, 'no_lang_code', 'name', 'SGS Academy Portugal, SGS Academy Portugal (Portugal)'),
(144268, 113346, 'en', 'name', 'Taizhou Central Hospital, Taizhou University Hospital'),
(144269, 113346, 'zh', 'name', 'å°å·žåø‚äø­åæƒåŒ»é™¢'),
(144270, 113347, 'en', 'name', 'Bamidele Olumilua University of Education, Science and Technology, Bamidele Olumilua University of Education, Science and Technology, Ikere-Ekiti'),
(144271, 113348, 'en', 'name', 'Mediterranean Institute of Marine and Terrestrial Biodiversity and Ecology'),
(144272, 113348, 'fr', 'name', 'Institut MƩditerranƩen de BiodiversitƩ et d''Ecologie Marine et Continentale'),
(144273, 113349, 'en', 'name', 'University of Helsinki'),
(144274, 113349, 'fi', 'name', 'Helsingin Yliopisto'),
(144275, 113349, 'sv', 'name', 'Helsingfors Universitet'),
(144276, 113350, 'pt', 'name', 'Centro de Investigação em Química'),
(144277, 113351, 'fr', 'name', 'Observatoire des sciences de l''Univers Paris-Saclay'),
(144278, 113352, 'en', 'name', 'Science and Technology Department of Ningxia'),
(144279, 113352, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(144280, 113353, 'no_lang_code', 'name', 'Pemex (Mexico)'),
(144281, 113354, 'en', 'name', 'Academy of Sciences of the Republic of Tajikistan'),
(144282, 113355, 'en', 'name', 'Japan Rugby Football Union'),
(144283, 113355, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒ©ć‚°ćƒ“ćƒ¼ćƒ•ćƒƒćƒˆćƒœćƒ¼ćƒ«å”ä¼š'),
(144284, 113356, 'en', 'name', 'International Association of Advanced Materials'),
(144285, 113356, 'sv', 'name', 'Internationella fƶreningen fƶr avancerade material'),
(144286, 113357, 'pt', 'name', 'Escola de Tecnologias Inovação e Criação'),
(144287, 113358, 'en', 'name', 'Afya na Haki Institute'),
(144288, 113359, 'fr', 'name', 'Atmo Normandie'),
(144289, 113360, 'en', 'name', 'Osaka College of Music Junior College'),
(144290, 113360, 'ja', 'name', '大阪音愽大学短期大学部'),
(144291, 113361, 'es', 'name', 'Universidad Autónoma de Entre Ríos'),
(144292, 113362, 'pt', 'name', 'Sociedade da LĆ­ngua Portuguesa'),
(144293, 113363, 'pt', 'name', 'Centro de Investigação Transdisciplinar Cultura Espaço e Memória'),
(144294, 113364, 'en', 'name', 'University of Camagüey'),
(144295, 113364, 'es', 'name', 'Universidad de Camagüey'),
(144296, 113365, 'cs', 'name', 'ZĆ”padočeskĆ” univerzita v Plzni'),
(144297, 113365, 'en', 'name', 'University of West Bohemia'),
(144298, 113366, 'es', 'name', 'Instituto del Patrimonio Cultural de EspaƱa'),
(144299, 113367, 'en', 'name', 'Nabarangpur College'),
(144300, 113367, 'or', 'name', 'ą¬Øą¬¬ą¬°ą¬™ą­ą¬—ą¬Ŗą­ą¬° ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿ'),
(144301, 113368, 'es', 'name', 'Universidad Nacional Rosario Castellanos'),
(144302, 113369, 'en', 'name', 'Federal University of Health Sciences, Otukpo'),
(144303, 113370, 'en', 'name', 'Asia-Pacific Cultural Centre for UNESCO'),
(144304, 113370, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ¦ćƒć‚¹ć‚³ćƒ»ć‚¢ć‚øć‚¢ę–‡åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(144305, 113371, 'en', 'name', 'Waco Mammoth National Monument'),
(144306, 113372, 'en', 'name', 'Nethermind, Nethermind (United Kingdom)'),
(144307, 113373, 'cs', 'name', 'ČeskĆ” zemědělskĆ” univerzita v Praze'),
(144308, 113373, 'en', 'name', 'Czech University of Life Sciences Prague'),
(144309, 113374, 'en', 'name', 'The Telecommunication Technology Committee'),
(144310, 113374, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęƒ…å ±é€šäæ”ęŠ€č”“å§”å“”ä¼š'),
(144311, 113375, 'cs', 'name', 'ČeskÔ infrastruktura sledovÔní uhlíku'),
(144312, 113375, 'en', 'name', 'Czech Carbon Observation System'),
(144313, 113376, 'en', 'name', 'Chemical Insights Research Institute'),
(144314, 113377, 'pt', 'name', 'Cinemateca Portuguesa Museu do Cinema'),
(144315, 113378, 'en', 'name', 'Sport Singapore'),
(144316, 113379, 'it', 'name', 'Agenzia Regionale per la Protezione dell''ambiente ligure'),
(144317, 113380, 'en', 'name', 'University of Shizuoka Junior College'),
(144318, 113380, 'ja', 'name', 'é™å²”ēœŒē«‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(144319, 113381, 'en', 'name', 'Institute for Work & Health'),
(144320, 113382, 'en', 'name', 'Amsterdam Reproduction Development'),
(144321, 113383, 'en', 'name', 'The Assam Royal Global University'),
(144322, 113384, 'en', 'name', 'Regia-Douro Park'),
(144323, 113385, 'no_lang_code', 'name', 'PricewaterhouseCoopers (United Kingdom)'),
(144324, 113386, 'pt', 'name', 'Laboratório de Protecção e Segurança Radiológica'),
(144325, 113387, 'hi', 'name', 'ą¤—ą„‡ą¤² (इंऔिया) ą¤²ą¤æą¤®ą¤æą¤Ÿą„‡ą¤”'),
(144326, 113387, 'no_lang_code', 'name', 'GAIL (India)'),
(144327, 113388, 'en', 'name', 'Agriculture & Livestock Industries Corporation'),
(144328, 113388, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗč¾²ē•œē”£ę„­ęŒÆčˆˆę©Ÿę§‹'),
(144329, 113389, 'en', 'name', 'Japan Aging Research Center'),
(144330, 113389, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚Øć‚¤ć‚øćƒ³ć‚°ē·åˆē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(144331, 113390, 'es', 'name', 'Instituto de Investigaciones Bibliotecológicas y de la Información'),
(144332, 113391, 'ar', 'name', 'Ų§Ł„Ł…ŁƒŲŖŲØ Ų§Ł„Ų“Ų±ŁŠŁ Ł„Ł„ŁŁˆŲ³ŁŲ§Ų·'),
(144333, 113391, 'fr', 'name', 'Office chƩrifien des phosphates'),
(144334, 113391, 'no_lang_code', 'name', 'OCP Group (Morocco)'),
(144335, 113392, 'en', 'name', 'MiRXES Lab Pte. Ltd., MiRXES Lab Pte. Ltd. (Singapore)'),
(144336, 113393, 'de', 'name', 'Rheinische Friedrich-Wilhelms-UniversitƤt Bonn'),
(144337, 113393, 'en', 'name', 'University of Bonn'),
(144338, 113394, 'en', 'name', 'Lawrence Livermore National Laboratory'),
(144339, 113394, 'es', 'name', 'Laboratorio Nacional Lawrence Livermore'),
(144340, 113395, 'en', 'name', 'Argosy University'),
(144341, 113396, 'en', 'name', 'Biophysics Institute'),
(144342, 113396, 'it', 'name', 'Instituto di Biofisica'),
(144343, 113397, 'en', 'name', 'Niigata Psychiatric Center'),
(144344, 113397, 'ja', 'name', 'ę–°ę½ŸēœŒē«‹ē²¾ē„žåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(144345, 113398, 'en', 'name', 'Naval Hospital Jacksonville'),
(144346, 113399, 'pt', 'name', 'Sociedade Portuguesa de Investigação em Música'),
(144347, 113400, 'fr', 'name', 'HEC Paris'),
(144348, 113401, 'en', 'name', 'Prime Minister''s Office'),
(144349, 113401, 'zh', 'name', 'ę–°åŠ å”ę€»ē†åŠžå…¬å®¤'),
(144350, 113402, 'en', 'name', 'Saisyukan Hospital'),
(144351, 113402, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗęøˆč”†é¤Øęøˆč”†é¤Øē—…é™¢'),
(144352, 113403, 'en', 'name', 'Oxford Immunotec, Oxford Immunotec (United Kingdom), Oxford Immunotec Ltd'),
(144353, 113404, 'en', 'name', 'National Supercomputer Center in Guangzhou'),
(144354, 113404, 'zh', 'name', 'äø­å±±å¤§å­¦å›½å®¶č¶…ēŗ§č®”ē®—å¹æå·žäø­åæƒ, å›½å®¶č¶…ēŗ§č®”ē®—å¹æå·žäø­åæƒ'),
(144355, 113405, 'de', 'name', 'Forschungsinstitut Gesellschaftlicher Zusammenhalt'),
(144356, 113406, 'en', 'name', 'Large Heavy Ion National Accelerator'),
(144357, 113406, 'fr', 'name', 'GANIL'),
(144358, 113407, 'en', 'name', 'Japan Construction Machinery and Construction Association'),
(144359, 113407, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗčØ­ę©Ÿę¢°ę–½å·„å”ä¼š'),
(144360, 113408, 'en', 'name', 'Bioplatforms Australia'),
(144361, 113409, 'en', 'name', 'Sumathi Reddy Institute of Technology for Women'),
(144362, 113410, 'en', 'name', 'Phasecraft Ltd., Phasecraft Ltd. (United Kingdom)'),
(144363, 113411, 'pt', 'name', 'ProvĆ­ncia Portuguesa da Companhia de Jesus'),
(144364, 113412, 'en', 'name', 'Massachusetts Institute of Technology'),
(144365, 113412, 'es', 'name', 'Instituto Tecnológico de Massachusetts'),
(144366, 113413, 'en', 'name', 'Hospital del Mar Research Institute'),
(144367, 113414, 'en', 'name', 'China Academy of Chinese Medical Sciences'),
(144368, 113414, 'zh', 'name', 'äø­å›½äø­åŒ»ē§‘å­¦é™¢'),
(144369, 113415, 'en', 'name', 'Center for the Study of Democracy'),
(144370, 113416, 'en', 'name', 'National Institute of Unani Medicine'),
(144371, 113417, 'en', 'name', 'Space Delta 2'),
(144372, 113418, 'en', 'name', 'GreenCross Veterinary Products Co., GreenCross Veterinary Products Co. (South Korea)'),
(144373, 113419, 'en', 'name', 'ECHO Inc.'),
(144374, 113420, 'en', 'name', 'Sanno Hospital'),
(144375, 113420, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£é †å’Œä¼šå±±ēŽ‹ē—…é™¢'),
(144376, 113421, 'en', 'name', 'NSBM Green University'),
(144377, 113422, 'en', 'name', 'Policy Research Institute, Ministry of Agriculture, Forestry and Fisheries'),
(144378, 113422, 'ja', 'name', 'č¾²ęž—ę°“ē”£ēœč¾²ęž—ę°“ē”£ę”æē­–ē ”ē©¶ę‰€'),
(144379, 113423, 'en', 'name', 'Irish Rugby Football Union'),
(144380, 113424, 'de', 'name', 'Hannah-Arendt-Institut für Totalitarismusforschung e.V. an der TU Dresden'),
(144381, 113425, 'en', 'name', 'SPI Research Centre'),
(144382, 113426, 'en', 'name', 'AgroVet-Strickhof'),
(144383, 113427, 'en', 'name', 'Science and Technology Department of Sichuan Province'),
(144384, 113427, 'zh', 'name', 'å››å·ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(144385, 113428, 'fr', 'name', 'Centre Lucien Febvre'),
(144386, 113429, 'en', 'name', 'Mississippi State University'),
(144387, 113429, 'fr', 'name', 'UniversitĆ© d''Ɖtat du Mississippi'),
(144388, 113430, 'en', 'name', 'Valahia Medical Center'),
(144389, 113431, 'en', 'name', 'King George V Memorial Hospital'),
(144390, 113432, 'no_lang_code', 'name', 'Novo Nordisk (Denmark)'),
(144391, 113433, 'pt', 'name', 'Escola Superior de Artes e Design Associação para a Promoção da Investigação em Design e Arte'),
(144392, 113434, 'cs', 'name', '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.'),
(144393, 113434, 'en', 'name', 'Czech Agrifood Research Center'),
(144394, 113435, 'en', 'name', 'International Information Science Foundation'),
(144395, 113435, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęƒ…å ±ē§‘å­¦å›½éš›äŗ¤ęµč²”å›£'),
(144396, 113436, 'cs', 'name', 'Institut TerezƭnskƩ iniciativy, Terezƭn Initiative Institute'),
(144397, 113437, 'en', 'name', 'Takasaki Advanced Radiation Research Institute'),
(144398, 113437, 'ja', 'name', 'é«˜å“Žé‡å­åæœē”Øē ”ē©¶ę‰€'),
(144399, 113438, 'en', 'name', 'THE Institute Of Marketing & Distribution Research'),
(144400, 113438, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµé€šå•é”Œē ”ē©¶å”ä¼š'),
(144401, 113439, 'en', 'name', 'Metropolitan Water Reclamation District of Greater Chicago'),
(144402, 113440, 'en', 'name', 'Anthony Nolan'),
(144403, 113441, 'en', 'name', 'Flanders Heritage Agency'),
(144404, 113441, 'nl', 'name', 'Onroerend Erfgoed'),
(144405, 113442, 'en', 'name', 'THE Kajima Foundation'),
(144406, 113442, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé¹æå³¶å­¦č”“ęŒÆčˆˆč²”å›£'),
(144407, 113443, 'en', 'name', 'Medical Center of the Americas Foundation'),
(144408, 113444, 'es', 'name', 'Servicio Regional de Investigación y Desarrollo Agroalimentario'),
(144409, 113445, 'en', 'name', 'Tashkent Islamic University'),
(144410, 113446, 'en', 'name', 'Islamic University of Science and Technology, Kashmir'),
(144411, 113447, 'en', 'name', 'Polytechnic University of Gómez Palacio'),
(144412, 113447, 'es', 'name', 'Universidad Politécnica de Gómez Palacio'),
(144413, 113448, 'no_lang_code', 'name', 'Continental Engineering Services Portugal, Continental Engineering Services Portugal (Portugal)'),
(144414, 113449, 'en', 'name', 'Freemasons Foundation Centre for Men''s Health'),
(144415, 113450, 'en', 'name', 'Japan Association for International Collaboration of Agriculture and Forestry'),
(144416, 113450, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå›½éš›č¾²ęž—ę„­å”åƒå”ä¼š'),
(144417, 113451, 'ar', 'name', 'Ł…Ų±ŁƒŲ² البحث في الفلاحة Ų§Ł„Ų±Ų¹ŁˆŁŠŲ©'),
(144418, 113451, 'fr', 'name', 'Centre de recherche en Agropastoralisme (CRAPast)'),
(144419, 113452, 'en', 'name', 'Academic Perpective'),
(144420, 113452, 'tr', 'name', 'Akademik Perspektif Derneği'),
(144421, 113453, 'en', 'name', 'University of Guadalajara'),
(144422, 113453, 'es', 'name', 'Universidad de Guadalajara'),
(144423, 113454, 'en', 'name', 'Research Unit on Cardiovascular and Metabolic Diseases'),
(144424, 113454, 'fr', 'name', 'UnitƩ de recherche sur les maladies cardiovasculaires et mƩtaboliques'),
(144425, 113455, 'fr', 'name', 'Centre d''enseignement et de recherche en foresterie'),
(144426, 113456, 'en', 'name', 'University of Madeira'),
(144427, 113456, 'pt', 'name', 'Universidade da Madeira'),
(144428, 113457, 'en', 'name', 'Solar System Exploration Research Virtual Institute'),
(144429, 113458, 'en', 'name', 'Ayurved Mahavidyalaya & Seth RV Ayurved Hospital'),
(144430, 113459, 'en', 'name', 'ERN Skin'),
(144431, 113460, 'en', 'name', 'Sinai Health System'),
(144432, 113461, 'en', 'name', 'United States Department of Defense'),
(144433, 113461, 'es', 'name', 'Departamento de Defensa de los Estados Unidos'),
(144434, 113461, 'fr', 'name', 'DĆ©partement de la DĆ©fense des Ɖtats-Unis'),
(144435, 113462, 'en', 'name', 'Velalar College of Engineering and Technology'),
(144436, 113462, 'ta', 'name', 'ą®µąÆ‡ą®³ą®¾ą®³ą®°ąÆ ą®ŖąÆŠą®±ą®æą®Æą®æą®Æą®²ąÆ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®¤ąÆŠą®“ą®æą®²ąÆą®ØąÆą®ŸąÆą®Ŗą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(144437, 113463, 'en', 'name', 'University of Kerbala'),
(144438, 113464, 'no_lang_code', 'name', 'Ningxia Meteorological Bureau'),
(144439, 113464, 'zh', 'name', 'å®å¤å›žę—č‡Ŗę²»åŒŗę°”č±”å±€'),
(144440, 113465, 'en', 'name', 'Nagano Prefectural Institute of Technology'),
(144441, 113465, 'ja', 'name', 'é•·é‡ŽēœŒå·„ē§‘ēŸ­ęœŸå¤§å­¦ę ”'),
(144442, 113466, 'en', 'name', 'The Bible Seminary'),
(144443, 113467, 'pt', 'name', 'Republica Portuguesa Direção-Geral das Artes'),
(144444, 113468, 'fr', 'name', 'Centre d''Investigation Clinique - EpidƩmiologie Clinique Saint-Etienne'),
(144445, 113469, 'it', 'name', 'Fondazione Ethoikos'),
(144446, 113470, 'en', 'name', 'The Japan Neurosurgical Society'),
(144447, 113470, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č„³ē„žēµŒå¤–ē§‘å­¦ä¼š'),
(144448, 113471, 'de', 'name', 'Carl-Thiem-Klinikum Cottbus'),
(144449, 113472, 'en', 'name', 'Schmidt Sciences'),
(144450, 113473, 'no_lang_code', 'name', 'Hilti (Liechtenstein)'),
(144451, 113474, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© القاسم الخضراؔ'),
(144452, 113474, 'en', 'name', 'Al-Qasim Green University'),
(144453, 113475, 'en', 'name', 'Institute of Evolutionary Biology'),
(144454, 113475, 'es', 'name', 'Institut de Biologia Evolutiva, Instituto de BiologĆ­a Evolutiva'),
(144455, 113476, 'en', 'name', 'Institute for Heart Research of the Slovak Academy of Sciences'),
(144456, 113476, 'sk', 'name', 'Ústav pre výskum srdca Centra experimentÔlnej medicíny Slovenskej akadémie vied'),
(144457, 113477, 'en', 'name', 'Yuriy Fedkovych Chernivtsi National University'),
(144458, 113477, 'uk', 'name', 'Š§ŠµŃ€Š½Ń–Š²ŠµŃ†ŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Š®Ń€Ń–Ń Š¤ŠµŠ“ŃŒŠŗŠ¾Š²ŠøŃ‡Š°'),
(144459, 113478, 'id', 'name', 'Universitas Islam Negeri Kiai Haji Achmad Siddiq Jember'),
(144460, 113479, 'en', 'name', 'ELIXIR'),
(144461, 113480, 'fr', 'name', 'Sherbrooke, Ville de Sherbrooke'),
(144462, 113481, 'pt', 'name', 'Associação Empresarial da Região de Viseu'),
(144463, 113482, 'no_lang_code', 'name', 'Vygon Portugal, Vygon Portugal (Portugal)'),
(144464, 113483, 'en', 'name', 'Towson University'),
(144465, 113484, 'en', 'name', 'CECOM Software Engineering Center'),
(144466, 113485, 'en', 'name', 'Eden University'),
(144467, 113486, 'de', 'name', 'Hogrefe AG, Hogrefe AG (Switzerland)'),
(144468, 113487, 'en', 'name', 'National Park Service'),
(144469, 113487, 'es', 'name', 'Servicio de Parques Nacionales'),
(144470, 113488, 'en', 'name', 'Iligan Capitol College'),
(144471, 113489, 'en', 'name', 'Japan Dental Hygienists'' Association'),
(144472, 113489, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę­Æē§‘č”›ē”Ÿå£«ä¼š'),
(144473, 113490, 'no_lang_code', 'name', 'Mahasarakham University'),
(144474, 113490, 'th', 'name', 'ดหาวณทยาคัยดหาสารคาด'),
(144475, 113491, 'en', 'name', 'Yakpermas Banyumas Polytechnic'),
(144476, 113492, 'no_lang_code', 'name', 'Serraic Create and Innovate (Portugal)'),
(144477, 113493, 'en', 'name', '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)'),
(144478, 113493, 'tr', 'name', 'Yilmaz Bilisim, Yılmaz Bilişim Ar-Ge Danışmanlık Yazılım Mühendislik ve Servis Hizmetleri Ticaret Limited Şirketi'),
(144479, 113494, 'pt', 'name', 'Sociedade de Ciências AgrÔrias de Portugal'),
(144480, 113495, 'pt', 'name', 'Sindicato dos BancƔrios do Centro'),
(144481, 113496, 'en', 'name', 'Japan Bicycle Technical Center'),
(144482, 113496, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗč‡Ŗč»¢č»Šē”£ę„­ęŒÆčˆˆå”ä¼šęŠ€č”“ē ”ē©¶ę‰€'),
(144483, 113497, 'fr', 'name', 'Institut FranƧais de Bioinformatique'),
(144484, 113498, 'sl', 'name', 'InŔtitut za Razvoj Družbene Odgovornosti'),
(144485, 113499, 'de', 'name', 'Institut für Metallforschung'),
(144486, 113499, 'en', 'name', 'Institute of Metals Research'),
(144487, 113500, 'en', 'name', 'Federal Polytechnic Ugep'),
(144488, 113501, 'en', 'name', 'UL Research Institutes'),
(144489, 113502, 'bn', 'name', 'ą¦œą¦¾ą¦¤ą§€ą¦Æą¦¼ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(144490, 113502, 'en', 'name', 'National University Bangladesh'),
(144491, 113503, 'pt', 'name', 'Unidade Nacional de Gestão do Mecanismo Financeiro do Espaço Económico Europeu'),
(144492, 113504, 'cs', 'name', 'Ú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'),
(144493, 113504, 'en', 'name', 'Czech Academy of Sciences, Institute of Molecular Genetics'),
(144494, 113505, 'en', 'name', 'China Earthquake Administration'),
(144495, 113505, 'zh', 'name', 'äø­å›½åœ°éœ‡å±€'),
(144496, 113506, 'en', 'name', 'Osaka Tokiwakai Gakuen University'),
(144497, 113506, 'ja', 'name', 'å¤§é˜Ŗåøøē£ä¼šå­¦åœ’'),
(144498, 113507, 'en', 'name', 'Cyber-Complex Foundation'),
(144499, 113507, 'pl', 'name', 'Fundacja Cyber-Complex'),
(144500, 113508, 'pt', 'name', 'Centro de MatemƔtica'),
(144501, 113509, 'no_lang_code', 'name', 'GKN (United Kingdom)'),
(144502, 113510, 'en', 'name', 'University of Concepción'),
(144503, 113510, 'es', 'name', 'Universidad de Concepción'),
(144504, 113511, 'en', 'name', 'Uttarakhand Forest Department'),
(144505, 113511, 'hi', 'name', 'ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤¾ą¤–ą¤£ą„ą¤” वन'),
(144506, 113512, 'id', 'name', 'Universitas Nahdlatul Ulama Lampung'),
(144507, 113513, 'pt', 'name', 'echLab Centro de Investigação em Tecnologias'),
(144508, 113514, 'en', 'name', '3billion, Inc., 3billion, Inc. (South Korea)'),
(144509, 113515, 'en', 'name', 'Nature Research Centre'),
(144510, 113516, 'de', 'name', 'Freie UniversitƤt Berlin'),
(144511, 113517, 'pt', 'name', 'RELACRE - Associação de Laboratórios Acreditados de Portugal'),
(144512, 113518, 'en', 'name', 'Częstochowa University of Technology'),
(144513, 113518, 'pl', 'name', 'Politechnika Częstochowska'),
(144514, 113519, 'fr', 'name', 'Ɖcole Pratique des Hautes Ɖtudes'),
(144515, 113520, 'ms', 'name', 'Universiti Tunku Abdul Rahman Sungai Long Campus'),
(144516, 113521, 'pt', 'name', 'Comissao de Coordenacao e Desenvolvimento Regional do Norte'),
(144517, 113522, 'en', 'name', 'National Institute of Cardiology'),
(144518, 113522, 'es', 'name', 'Instituto Nacional de CardiologĆ­a'),
(144519, 113523, 'fr', 'name', 'Ecole Nationale SupƩrieure des Sciences de la Mer et de l''AmƩnagement du Littoral'),
(144520, 113524, 'en', 'name', 'ETH Zürich Campus Heilbronn gGmbH'),
(144521, 113525, 'en', 'name', 'University of Cantabria'),
(144522, 113525, 'es', 'name', 'Universidad de Cantabria'),
(144523, 113526, 'pt', 'name', 'Sociedade Portuguesa de AcĆŗstica'),
(144524, 113527, 'de', 'name', 'Bundesanstalt für Straßenwesen'),
(144525, 113527, 'en', 'name', 'Federal Highway and Transport Research Institute'),
(144526, 113528, 'en', 'name', 'Xichong County People''s Hospital'),
(144527, 113528, 'zh', 'name', 'č„æå……åŽæäŗŗę°‘åŒ»é™¢'),
(144528, 113529, 'en', 'name', 'Ministry of Health and Social Services'),
(144529, 113529, 'fr', 'name', 'Ministère de la Santé et des Services Sociaux'),
(144530, 113530, 'pt', 'name', 'Sociedade Broteriana'),
(144531, 113531, 'pt', 'name', 'Escola Superior de Artes Decorativas'),
(144532, 113532, 'en', 'name', 'Katowice School of Economics'),
(144533, 113532, 'pl', 'name', 'Górnoslaska Wyzsza Szkola Handlowa'),
(144534, 113533, 'pt', 'name', 'CECOLAB'),
(144535, 113534, 'fr', 'name', 'LIRA - Laboratoire International de Recherches en Arts, Laboratoire International de Recherches en Arts'),
(144536, 113535, 'en', 'name', 'Far Western Anthropological Research Group, Inc., Far Western Anthropological Research Group, Inc. (United States)'),
(144537, 113536, 'en', 'name', 'French Agency for Food, Environmental and Occupational Health & Safety'),
(144538, 113536, 'fr', 'name', 'Agence Nationale de SĆ©curitĆ© Sanitaire de l’Alimentation, de l’Environnement et du Travail'),
(144539, 113537, 'en', 'name', 'The University of Western Australia'),
(144540, 113538, 'en', 'name', 'Mukuba University'),
(144541, 113539, 'en', 'name', 'Northern Mindanao Colleges, Inc.'),
(144542, 113540, 'en', 'name', 'Department of National Museums'),
(144543, 113540, 'si', 'name', 'ą¶¢ą·ą¶­ą·’ą¶š ą¶šą·žą¶­ą·”ą¶šą·ą¶œą·ą¶» ą¶Æą·™ą¶“ą·ą¶»ą·Šą¶­ą¶øą·šą¶±ą·Šą¶­ą·”ą·€'),
(144544, 113540, 'ta', 'name', 'ą®¤ąÆ‡ą®šą®æą®Æ ą®ØąÆ‚ą®¤ą®©ą®šą®¾ą®²ąÆˆą®¤ąÆ ą®¤ą®æą®£ąÆˆą®•ąÆą®•ą®³ą®®ąÆ'),
(144545, 113541, 'bn', 'name', 'ą¦®ą§Žą¦øą§ą¦Æ ą¦…ą¦§ą¦æą¦¦ą¦Ŗą§ą¦¤ą¦° ą¦—ą¦£ą¦Ŗą§ą¦°ą¦œą¦¾ą¦¤ą¦Øą§ą¦¤ą§ą¦°ą§€ বাংলাদেশ সরকার'),
(144546, 113541, 'en', 'name', 'Department of Fisheries, Bangladesh'),
(144547, 113542, 'en', 'name', 'National Museum of Tanzania'),
(144548, 113542, 'sw', 'name', 'Makumbusho ya Taifa la Tanzania'),
(144549, 113543, 'en', 'name', 'Lamezia Terme Hospital');
INSERT INTO `ror_settings` VALUES
(144550, 113543, 'it', 'name', 'Presidio Ospedaliero Lamezia Terme'),
(144551, 113544, 'de', 'name', 'Institut Sprachliche und Literarische Bildung'),
(144552, 113544, 'en', 'name', 'Institute for Language and Literary Education'),
(144553, 113545, 'en', 'name', 'Center for Climate Systems Modeling'),
(144554, 113546, 'pt', 'name', 'Laboratório de Ciências do Mar'),
(144555, 113547, 'en', 'name', 'Japan Traffic Management Technology Association'),
(144556, 113547, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬äŗ¤é€šē®”ē†ęŠ€č”“å”ä¼š'),
(144557, 113548, 'en', 'name', 'University of Guantanamo'),
(144558, 113548, 'es', 'name', 'Universidad de GuantƔnamo'),
(144559, 113549, 'en', 'name', 'Korea University'),
(144560, 113549, 'ko', 'name', 'ź³ ė ¤ėŒ€ķ•™źµ'),
(144561, 113550, 'fr', 'name', 'Cegep de Sainte Foy'),
(144562, 113551, 'en', 'name', 'Fukui Food Processing Research Institute'),
(144563, 113551, 'ja', 'name', 'ē¦äŗ•ēœŒé£Ÿå“åŠ å·„ē ”ē©¶ę‰€'),
(144564, 113552, 'it', 'name', 'Agenzia Regionale per la Protezione dell''ambiente del Friuli Venezia Giulia'),
(144565, 113553, 'en', 'name', 'Association of Management Consultants in Japan'),
(144566, 113553, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ēµŒå–¶å£«ä¼š'),
(144567, 113554, 'id', 'name', 'Universitas Muhammadiyah Madiun'),
(144568, 113555, 'en', 'name', 'Hanson Institute'),
(144569, 113556, 'es', 'name', 'ConsejerĆ­a de Salud y Consumo'),
(144570, 113557, 'en', 'name', 'Japan Confectionery and Innovative Food Ingredients Research Center'),
(144571, 113557, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč“å­ćƒ»é£Ÿå“ę–°ē“ ęęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(144572, 113558, 'es', 'name', 'Hospital Santa Rosa'),
(144573, 113559, 'en', 'name', 'RESTART'),
(144574, 113560, 'en', 'name', 'International Islamic University, Islamabad'),
(144575, 113560, 'ur', 'name', 'ŲØŁŠŁ† Ų§Ł„Ų§Ł‚ŁˆŲ§Ł…ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł¹ŪŒ اسلام Ų¢ŲØŲ§ŲÆā€Ž'),
(144576, 113561, 'no_lang_code', 'name', 'Biosurfit (Portugal), Biosurfit, S.A.'),
(144577, 113562, 'en', 'name', 'Purdue University in Indianapolis'),
(144578, 113563, 'en', 'name', 'Space Sciences Laboratory'),
(144579, 113564, 'no_lang_code', 'name', 'R&D Nester, R&D Nester (Portugal)'),
(144580, 113565, 'en', 'name', 'State Institution of Science «Center of Innovative Healthcare Technologies» State Administrative Department'),
(144581, 113565, 'uk', 'name', 'Державна наукова ŃƒŃŃ‚Š°Š½Š¾Š²Š° «Центр інноваційних технологій охорони Š·Š“Š¾Ń€Š¾Š²ā€™ŃĀ» Державного ŃƒŠæŃ€Š°Š²Š»Ń–Š½Š½Ń справами'),
(144582, 113566, 'en', 'name', 'Empowers Africa'),
(144583, 113567, 'de', 'name', 'Leibniz-Institut für innovative Mikroelektronik'),
(144584, 113567, 'en', 'name', 'Leibniz Institute for High Performance Microelectronics'),
(144585, 113568, 'en', 'name', 'Public Buildings Association'),
(144586, 113568, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…¬å…±å»ŗēÆ‰å”ä¼š'),
(144587, 113569, 'en', 'name', 'Mercu Buana University of Yogyakarta'),
(144588, 113569, 'id', 'name', 'Universitas Mercu Buana Yogyakarta'),
(144589, 113570, 'af', 'name', 'Universiteit van Suid-Afrika'),
(144590, 113570, 'en', 'name', 'University of South Africa'),
(144591, 113571, 'pt', 'name', 'Centro de CiĆŖncia e Tecnologia do Ambiente e do Mar'),
(144592, 113572, 'en', 'name', 'Matsuyama International Center'),
(144593, 113572, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę¾å±±å›½éš›äŗ¤ęµå”ä¼š'),
(144594, 113573, 'fr', 'name', 'Institut de recherche en droit des affaires (Paris)'),
(144595, 113574, 'en', 'name', 'The King''s University'),
(144596, 113575, 'no_lang_code', 'name', 'Covilha Science and Technology Park, Parque de Ciência e Tecnologia da Covilhã (Portugal), Parque de Ciência e Tecnologia da Covilhã, S.A.'),
(144597, 113576, 'en', 'name', 'Swiss HIV Cohort Study'),
(144598, 113577, 'de', 'name', 'Ministerium für Umwelt, Landwirtschaft, Natur- und Verbraucherschutz des Landes Nordrhein-Westfalen'),
(144599, 113577, 'en', 'name', 'Ministry for Environment, Agriculture, Conservation and Consumer Protection'),
(144600, 113578, 'en', 'name', 'European Marine Biological Resource Centre Portugal'),
(144601, 113579, 'en', 'name', 'Indian Institute of Information Technology Lucknow'),
(144602, 113580, 'pt', 'name', 'Casa do Professor'),
(144603, 113581, 'en', 'name', 'Armata Pharmaceuticals, Armata Pharmaceuticals (United States), Armata Pharmaceuticals, Inc.'),
(144604, 113582, 'id', 'name', 'Universitas Imelda Medan'),
(144605, 113583, 'de', 'name', 'Institut Digitale und Informatische Bildung'),
(144606, 113583, 'en', 'name', 'Institute Digital and Computer Science Education'),
(144607, 113584, 'en', 'name', 'Agricultural Development Consultants Association'),
(144608, 113584, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–č¾²ę„­é–‹ē™ŗć‚³ćƒ³ć‚µćƒ«ć‚æćƒ³ćƒ„å”ä¼š'),
(144609, 113585, 'en', 'name', 'THE Institute Of Electrical Installation Engineers Of Japan'),
(144610, 113585, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»ę°—čØ­å‚™å­¦ä¼š'),
(144611, 113586, 'no_lang_code', 'name', 'Maria Design, Maria Design (Portugal)'),
(144612, 113587, 'pt', 'name', 'Academia de LĆ­nguas da Madeira'),
(144613, 113588, 'en', 'name', 'Delta State Polytechnic Otefe-Oghara'),
(144614, 113589, 'es', 'name', 'Instituto de Investigaciones Históricas'),
(144615, 113590, 'de', 'name', 'Stadtspital Zürich'),
(144616, 113591, 'pt', 'name', 'Centro CiĆŖncia Viva de Estremoz'),
(144617, 113592, 'it', 'name', 'INGV Sezione di Roma 1'),
(144618, 113593, 'en', 'name', 'Kobe Institute of Health'),
(144619, 113593, 'ja', 'name', 'ē„žęˆøåø‚å„åŗ·ē§‘å­¦ē ”ē©¶ę‰€'),
(144620, 113594, 'no_lang_code', 'name', 'Horizon Discovery Group (United States)'),
(144621, 113595, 'en', 'name', 'University of Applied Sciences in Tarnow'),
(144622, 113595, 'pl', 'name', 'Akademia Tarnowska'),
(144623, 113596, 'cs', 'name', 'Ústav informatiky AV ČR, Ústav informatiky AV ČR, v. v. i., Ústav informatiky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(144624, 113596, 'en', 'name', 'Czech Academy of Sciences, Institute of Computer Science'),
(144625, 113597, 'en', 'name', 'National Institute of Nutrition'),
(144626, 113597, 'te', 'name', 'ą°œą°¾ą°¤ą±€ą°Æ ą°Ŗą±Œą°·ą±ą°Ÿą°æą°•ą°¾ą°¹ą°¾ą°° పరిశోధన శాల'),
(144627, 113598, 'en', 'name', 'University of Magallanes'),
(144628, 113598, 'es', 'name', 'Universidad de Magallanes'),
(144629, 113599, 'en', 'name', 'Smith College'),
(144630, 113600, 'en', 'name', 'Solana Research, Solana Research (Germany), Solana Research GmbH'),
(144631, 113601, 'en', 'name', 'Bangladesh Institute of Innovative Health Research'),
(144632, 113602, 'en', 'name', 'Nagasaki Food Hygiene Association'),
(144633, 113602, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé•·å“ŽēœŒé£Ÿå“č”›ē”Ÿå”ä¼š'),
(144634, 113603, 'fr', 'name', 'Centre de Recherche en Droit Administratif'),
(144635, 113604, 'en', 'name', 'St. Anne''s University Hospital Brno'),
(144636, 113605, 'en', 'name', 'Kitakyushu Municipal Education Center'),
(144637, 113605, 'ja', 'name', 'åŒ—ä¹å·žåø‚ē«‹ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(144638, 113606, 'en', 'name', 'Marine Biodiversity Exploitation and Conservation'),
(144639, 113607, 'fr', 'name', 'Association des graduƩes et graduƩs en agriculture et alimentation'),
(144640, 113608, 'en', 'name', 'Yamanashi International Association'),
(144641, 113608, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå±±ę¢ØēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(144642, 113609, 'fr', 'name', 'Laboratoire d''analyse des signaux & des processus industriels'),
(144643, 113610, 'en', 'name', 'FDI World Dental Federation'),
(144644, 113611, 'pt', 'name', 'Centro de Estudos Interdisciplinares em Educação e Desenvolvimento'),
(144645, 113612, 'no_lang_code', 'name', 'REABE Benfica Rehabilitation Centre, REABE Centro de Reabilitação de Benfica (Portugal)'),
(144646, 113613, 'en', 'name', 'University of Caldas'),
(144647, 113613, 'es', 'name', 'Universidad de Caldas'),
(144648, 113614, 'en', 'name', 'JIS University'),
(144649, 113615, 'en', 'name', 'Bayero University Kano'),
(144650, 113615, 'yo', 'name', 'YunifÔsítì BÔyéró'),
(144651, 113616, 'fr', 'name', 'DƩlƩgation Provence et Corse'),
(144652, 113617, 'en', 'name', 'CIRAD-Office of the Director General in charge of Research and Strategy'),
(144653, 113617, 'fr', 'name', 'CIRAD - Direction gƩnƩrale dƩlƩguƩe Ơ la recherche et Ơ la stratƩgie'),
(144654, 113618, 'pt', 'name', 'Governo dos AƧores'),
(144655, 113619, 'en', 'name', 'Vestfold Hospital Trust'),
(144656, 113619, 'no', 'name', 'Sykehuset i Vestfold'),
(144657, 113620, 'en', 'name', 'lululab Inc., lululab Inc. (South Korea)'),
(144658, 113621, 'en', 'name', 'University of North Dakota'),
(144659, 113621, 'fr', 'name', 'UniversitƩ du dakota du nord'),
(144660, 113622, 'no_lang_code', 'name', 'South African Nuclear Energy Corporation (South Africa)'),
(144661, 113623, 'no_lang_code', 'name', 'UCB Pharma (Portugal)'),
(144662, 113624, 'de', 'name', 'Institut für Neuroinformatik'),
(144663, 113624, 'en', 'name', 'Institute of Neuroinformatics'),
(144664, 113625, 'en', 'name', 'Department of Finance of Jiangsu Province, ę±Ÿč‹ēœč“¢ę”æåŽ…'),
(144665, 113626, 'pt', 'name', 'DECO - Associação Portuguesa para a Defesa do Consumidor'),
(144666, 113627, 'en', 'name', 'AIC Yaesu Clinic'),
(144667, 113627, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£č±Šę™ŗä¼šAICå…«é‡ę“²ć‚ÆćƒŖćƒ‹ćƒƒć‚Æ'),
(144668, 113628, 'de', 'name', 'Technische Informationsbibliothek, Technische Informationsbibliothek (TIB)'),
(144669, 113629, 'en', 'name', 'UXtweak j.s.a., UXtweak j.s.a. (Slovakia)'),
(144670, 113630, 'en', 'name', 'Marie and Louis Pasteur University'),
(144671, 113630, 'fr', 'name', 'UniversitƩ Marie et Louis Pasteur'),
(144672, 113631, 'en', 'name', 'The KIRIN Foundation'),
(144673, 113631, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚­ćƒŖćƒ³ē¦ē„‰č²”å›£'),
(144674, 113632, 'en', 'name', 'Amsterdam Movement Sciences'),
(144675, 113633, 'en', 'name', 'Japan Light Metal Welding Association'),
(144676, 113633, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč»½é‡‘å±žęŗ¶ęŽ„å”ä¼š'),
(144677, 113634, 'en', 'name', 'DTX Digital Transformation CoLAB'),
(144678, 113635, 'en', 'name', 'PT Indonesia Comnets Plus, PT Indonesia Comnets Plus (Indonesia)'),
(144679, 113636, 'de', 'name', 'Stadtspital Waid, Waidspital'),
(144680, 113637, 'en', 'name', 'Concord Repatriation General Hospital'),
(144681, 113638, 'fr', 'name', 'Institut des Sciences Humaines et Sociales'),
(144682, 113639, 'en', 'name', 'Japan Association for Trade with Russia & NIS'),
(144683, 113639, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ­ć‚·ć‚¢NISč²æę˜“ä¼š'),
(144684, 113640, 'no_lang_code', 'name', 'Merck (Germany)'),
(144685, 113641, 'en', 'name', 'Kochi Health Sciences Center'),
(144686, 113641, 'ja', 'name', 'é«˜ēŸ„ēœŒćƒ»é«˜ēŸ„åø‚ē—…é™¢ä¼ę„­å›£ē«‹é«˜ēŸ„åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(144687, 113642, 'en', 'name', 'Shivnagar Vidya Prasarak Mandal Institute of Technology and Engineering'),
(144688, 113643, 'en', 'name', 'Japan Electronics and Information Technology Industries Association'),
(144689, 113643, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé›»å­ęƒ…å ±ęŠ€č”“ē”£ę„­å”ä¼š'),
(144690, 113644, 'pt', 'name', 'Centro de Estudos HumanĆ­sticos'),
(144691, 113645, 'pt', 'name', 'Faust LĆ­ngua e Cultura'),
(144692, 113646, 'en', 'name', 'Solers Research Group (United States)'),
(144693, 113647, 'de', 'name', 'Spatial Services GmbH, Spatial Services GmbH (Austria)'),
(144694, 113648, 'en', 'name', 'National Sanatorium Tohokushinseien'),
(144695, 113648, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€ę±åŒ—ę–°ē”Ÿåœ’'),
(144696, 113649, 'en', 'name', 'Reliability Center for Electronic Components of Japan'),
(144697, 113649, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬é›»å­éƒØå“äæ”é ¼ę€§ć‚»ćƒ³ć‚æćƒ¼'),
(144698, 113650, 'id', 'name', 'STMIK Methodist Binjai'),
(144699, 113651, 'no_lang_code', 'name', 'Amkor Technology (United States)'),
(144700, 113652, 'en', 'name', 'Sydenham College of Commerce and Economics, Mumbai'),
(144701, 113653, 'en', 'name', 'Cisbio, Cisbio (France), Cisbio Bioassays'),
(144702, 113654, 'pt', 'name', 'Unidade de Arqueologia'),
(144703, 113655, 'pt', 'name', 'Sociedade Portuguesa de Espeleologia'),
(144704, 113656, 'no_lang_code', 'name', 'Companhia das LezĆ­rias (Portugal), Companhia das LezĆ­rias, S.A.'),
(144705, 113657, 'de', 'name', 'Institut für Operations Research'),
(144706, 113657, 'en', 'name', 'Institute for Operations Research'),
(144707, 113658, 'no_lang_code', 'name', 'EDF Energy (United Kingdom)'),
(144708, 113659, 'de', 'name', 'Technische UniversitƤt Hamburg'),
(144709, 113659, 'en', 'name', 'Hamburg University of Technology'),
(144710, 113660, 'pt', 'name', 'Escola da Magistratura do Estado de RondƓnia - Emeron'),
(144711, 113661, 'pt', 'name', 'Centro de Investigação em Marketing e AnÔlise de Dados'),
(144712, 113662, 'it', 'name', 'Aplysia APS'),
(144713, 113663, 'no_lang_code', 'name', 'Biosensors International Group (Singapore)'),
(144714, 113664, 'fr', 'name', 'BiodiversitƩ, AgroƩcologie et AmƩnagement du Paysage'),
(144715, 113665, 'fr', 'name', 'FIRL - Formes et Idées de la Renaissance aux Lumières, Formes et Idées de la Renaissance aux Lumières'),
(144716, 113666, 'en', 'name', 'Geophysical Division of the Earth Science Institute of the Slovak Academy of Sciences'),
(144717, 113666, 'sk', 'name', 'GeofyzikÔlny odbor Ústav vied o Zemi v.v.i SlovenskÔ Akadémia Vied'),
(144718, 113667, 'en', 'name', 'University of Science and Technology of China'),
(144719, 113667, 'zh', 'name', 'äø­å›½ē§‘å­¦ęŠ€ęœÆå¤§å­¦'),
(144720, 113668, 'pt', 'name', 'Centro Ciência Viva de Bragança'),
(144721, 113669, 'en', 'name', 'Canterbury Hospital'),
(144722, 113670, 'en', 'name', 'University of Darunnajah'),
(144723, 113670, 'id', 'name', 'Universitas Darunnajah'),
(144724, 113671, 'de', 'name', 'Deutsches Krebsforschungszentrum'),
(144725, 113671, 'en', 'name', 'German Cancer Research Center'),
(144726, 113672, 'en', 'name', 'Cardio-Pulmonary Institute'),
(144727, 113673, 'en', 'name', 'Advanced Computing Center'),
(144728, 113674, 'en', 'name', 'Hiroshima Industrial Promotion Organization'),
(144729, 113674, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć²ć‚ć—ć¾ē”£ę„­ęŒÆčˆˆę©Ÿę§‹'),
(144730, 113675, 'en', 'name', 'Japan Association of Specialists in Textiles and Apparel'),
(144731, 113675, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č”£ę–™ē®”ē†å”ä¼š'),
(144732, 113676, 'en', 'name', 'Materials Institute'),
(144733, 113676, 'fr', 'name', 'Institut des MatƩriaux'),
(144734, 113677, 'en', 'name', 'ERN BOND'),
(144735, 113678, 'no_lang_code', 'name', 'PricewaterhouseCoopers (Portugal), PwC Portugal'),
(144736, 113679, 'pt', 'name', 'Direção Geral de Energia e Geologia'),
(144737, 113680, 'en', 'name', 'Southeast University'),
(144738, 113680, 'zh', 'name', 'äøœå—å¤§å­¦'),
(144739, 113681, 'de', 'name', 'Kuratorium Pfahlbauten'),
(144740, 113682, 'en', 'name', 'Next generation Space system Technology Research Association'),
(144741, 113682, 'ja', 'name', 'ę¬”äø–ä»£å®‡å®™ć‚·ć‚¹ćƒ†ćƒ ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(144742, 113683, 'en', 'name', 'Foundation for Assistance to Small Innovative Enterprises in Science and Technology'),
(144743, 113684, 'en', 'name', 'Fulbright Portugal'),
(144744, 113685, 'en', 'name', 'Kogi State University, Kabba'),
(144745, 113686, 'en', 'name', 'Nasus Pharma, Nasus Pharma (Israel)'),
(144746, 113687, 'en', 'name', 'Warakukai Incorporated Medical Institution'),
(144747, 113687, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗå’Œę„½ä¼š'),
(144748, 113688, 'en', 'name', 'Center for Translational and Molecular Medicine'),
(144749, 113688, 'fr', 'name', 'Centre de recherche Translationnelle en MƩdecine molƩculaire'),
(144750, 113689, 'de', 'name', 'Duale Hochschule Sachsen'),
(144751, 113690, 'en', 'name', 'Wyoming State Geological Survey'),
(144752, 113691, 'en', 'name', 'Tada Tomohiro The Institute of Gastroenterology & Proctology'),
(144753, 113691, 'ja', 'name', 'ćŸć ćØć‚‚ć²ć‚čƒƒč…øē§‘č‚›é–€ē§‘'),
(144754, 113692, 'en', 'name', 'University of North Carolina at Charlotte'),
(144755, 113692, 'es', 'name', 'Universidad de Carolina del Norte en Charlotte'),
(144756, 113692, 'fr', 'name', 'UniversitƩ de caroline du nord Ơ charlotte'),
(144757, 113693, 'fr', 'name', 'AutoritƩ de sƻretƩ nuclƩaire et de radioprotection'),
(144758, 113694, 'pt', 'name', 'Rede Nacional de Centros Integrais de CĆ¢ncer'),
(144759, 113695, 'en', 'name', 'Neotropical Primates Research Group'),
(144760, 113696, 'en', 'name', 'Católica Global School of Law'),
(144761, 113697, 'en', 'name', 'Capacity Development in Nutrition'),
(144762, 113698, 'en', 'name', 'Paper Recycling Promotion Center'),
(144763, 113698, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤ē“™å†ē”Ÿäæƒé€²ć‚»ćƒ³ć‚æćƒ¼'),
(144764, 113699, 'bn', 'name', 'বাংলাদেশ সেনাবাহিনী ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ও ą¦Ŗą§ą¦°ą¦Æą§ą¦•ą§ą¦¤ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(144765, 113699, 'en', 'name', 'Bangladesh Army University of Engineering & Technology'),
(144766, 113700, 'en', 'name', 'Bureau of Meteorology'),
(144767, 113701, 'pt', 'name', 'Conselho Científico-Pedagógico da Formação Contínua'),
(144768, 113702, 'en', 'name', 'KwaZulu-Natal Museum'),
(144769, 113703, 'en', 'name', 'ERN EuroBloodNet'),
(144770, 113704, 'es', 'name', 'Universidad Europea'),
(144771, 113705, 'no_lang_code', 'name', 'The Navigator (Portugal)'),
(144772, 113706, 'en', 'name', 'Iwamizawa Asuka Hospital'),
(144773, 113706, 'ja', 'name', 'å²©č¦‹ę²¢ę˜Žę—„ä½³ē—…é™¢'),
(144774, 113707, 'es', 'name', 'Centro de ToxicologĆ­a y Biomedicina'),
(144775, 113708, 'pt', 'name', 'Administração Regional de Saúde do Alentejo IP'),
(144776, 113709, 'en', 'name', 'French Academy of Sciences'),
(144777, 113709, 'fr', 'name', 'AcadƩmie des sciences'),
(144778, 113710, 'en', 'name', 'Fluid Mechanics and Acoustics Laboratory'),
(144779, 113710, 'fr', 'name', 'Laboratoire de MƩcanique des Fluides et d''Acoustique'),
(144780, 113711, 'en', 'name', 'ARC Centre of Excellence for Innovations in Peptide and Protein Science'),
(144781, 113712, 'no_lang_code', 'name', 'Forcerebrus, Forcerebrus (Portugal)'),
(144782, 113713, 'en', 'name', 'CREATe Centre, Centre for Regulation of the Creative Economy'),
(144783, 113714, 'pt', 'name', 'Observatório do Mar dos Açores'),
(144784, 113715, 'en', 'name', 'All Japan Judo Federation'),
(144785, 113715, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…Øę—„ęœ¬ęŸ”é“é€£ē›Ÿ'),
(144786, 113716, 'en', 'name', 'Ministry of Mines'),
(144787, 113716, 'hi', 'name', 'खान ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(144788, 113717, 'bg', 'name', 'Аграрен Университет'),
(144789, 113717, 'en', 'name', 'Agricultural University Plovdiv'),
(144790, 113718, 'pt', 'name', 'Riscos e Sustentabilidade na Construção'),
(144791, 113719, 'en', 'name', 'Japan Society of Corrosion Engineering'),
(144792, 113719, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗč…é£Ÿé˜²é£Ÿå­¦ä¼š'),
(144793, 113720, 'fr', 'name', 'Chimie organique, Bioorganique, RƩactivitƩ et Analyse, Laboratoire COBRA'),
(144794, 113721, 'no_lang_code', 'name', 'Flex2000, Flex2000 (Portugal)'),
(144795, 113722, 'no_lang_code', 'name', 'WSA Portugal (Portugal), WSA Portugal, S.A.'),
(144796, 113723, 'en', 'name', 'Uonuma kikan Hospital'),
(144797, 113723, 'ja', 'name', 'ę–°ę½Ÿå¤§å­¦åœ°åŸŸåŒ»ē™‚ę•™č‚²ć‚»ćƒ³ć‚æćƒ¼é­šę²¼åŸŗå¹¹ē—…é™¢'),
(144798, 113724, 'en', 'name', 'Osh State Pedagogical University named after A. Myrsabekov'),
(144799, 113725, 'en', 'name', 'Alagappa University'),
(144800, 113725, 'ta', 'name', 'ą®…ą®“ą®•ą®ŖąÆą®Ŗą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(144801, 113726, 'pt', 'name', 'Câmara Municipal de AlvaiÔzere'),
(144802, 113727, 'en', 'name', 'University of Southern Brittany'),
(144803, 113727, 'fr', 'name', 'UniversitƩ de Bretagne Sud'),
(144804, 113728, 'en', 'name', 'Functional Water Foundation'),
(144805, 113728, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę©Ÿčƒ½ę°“ē ”ē©¶ęŒÆčˆˆč²”å›£'),
(144806, 113729, 'en', 'name', 'Japan Institute of Baking'),
(144807, 113729, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ‘ćƒ³ęŠ€č”“ē ”ē©¶ę‰€'),
(144808, 113730, 'no_lang_code', 'name', 'Walt Disney (United States)'),
(144809, 113731, 'pt', 'name', 'Serviço de Assistência Médico-Social'),
(144810, 113732, 'en', 'name', 'Foundation for Advancement of Essential Diagnostics'),
(144811, 113733, 'en', 'name', 'Japan Building Materials Association'),
(144812, 113733, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å»ŗēÆ‰ęę–™å”ä¼š'),
(144813, 113734, 'en', 'name', 'LusĆ­ada University of Porto'),
(144814, 113735, 'pt', 'name', 'Casa das Artes'),
(144815, 113736, 'fr', 'name', 'Maison des Sciences de l’Homme de Dijon'),
(144816, 113737, 'en', 'name', 'Japan Oilseed Processors Association'),
(144817, 113737, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę¤ē‰©ę²¹å”ä¼š'),
(144818, 113738, 'en', 'name', 'National Sanatorium Matuoka Hoyoen'),
(144819, 113738, 'ja', 'name', 'å›½ē«‹ē™‚é¤Šę‰€ę¾äø˜äæé¤Šåœ’'),
(144820, 113739, 'id', 'name', 'Universitas Maarif Hasyim Latif'),
(144821, 113740, 'en', 'name', 'The Japanese Association of Anatomists'),
(144822, 113740, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č§£å‰–å­¦ä¼š'),
(144823, 113741, 'en', 'name', 'Institute of Housing and Urban Technology'),
(144824, 113741, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗä½å®…éƒ½åø‚å·„å­¦ē ”ē©¶ę‰€'),
(144825, 113742, 'en', 'name', 'Rowden Technologies (United Kingdom)'),
(144826, 113743, 'en', 'name', 'Japanese Society for Preservation of Birds'),
(144827, 113743, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬é³„é”žäæč­·é€£ē›Ÿ'),
(144828, 113744, 'en', 'name', 'Rockefeller University Press'),
(144829, 113745, 'en', 'name', 'Rashtrasant Tukadoji Maharaj Nagpur University'),
(144830, 113745, 'hi', 'name', 'ą¤Øą¤¾ą¤—ą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(144831, 113745, 'mr', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤øą¤‚ą¤¤ ą¤¤ą„ą¤•ą¤”ą„‹ą¤œą„€ महाराज ą¤Øą¤¾ą¤—ą¤Ŗą„‚ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(144832, 113745, 'ta', 'name', 'ą®Øą®¾ą®•ąÆą®ŖąÆ‚ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(144833, 113745, 'ur', 'name', 'راؓٹرسنت ŲŖŚ©Ś‘Łˆ جی مہاراج Ł†Ų§ŚÆŁ¾ŁˆŲ± ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ'),
(144834, 113746, 'pt', 'name', 'Instituto de Direito Penal e CiĆŖncias Criminais'),
(144835, 113747, 'en', 'name', 'Mount Royal University'),
(144836, 113748, 'en', 'name', 'Modelica Association'),
(144837, 113749, 'en', 'name', 'University of Antofagasta'),
(144838, 113749, 'es', 'name', 'Universidad de Antofagasta'),
(144839, 113750, 'en', 'name', 'Okinawa Hokubu Hospital'),
(144840, 113750, 'ja', 'name', 'ę²–ēø„ēœŒē«‹åŒ—éƒØē—…é™¢'),
(144841, 113751, 'en', 'name', 'Japan Karatedo Federation'),
(144842, 113751, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…Øę—„ęœ¬ē©ŗę‰‹é“é€£ē›Ÿ'),
(144843, 113752, 'de', 'name', 'Institut für Translationale Medizin'),
(144844, 113752, 'en', 'name', 'Institute of Translational Medicine'),
(144845, 113753, 'ca', 'name', 'Hospital Universitari Sant Joan de Reus'),
(144846, 113753, 'en', 'name', 'University Hospital Sant Joan de Reus'),
(144847, 113754, 'no_lang_code', 'name', 'University of Kragujevac'),
(144848, 113754, 'sr', 'name', 'Универзитет у ŠšŃ€Š°Š³ŃƒŃ˜ŠµŠ²Ń†Ńƒ'),
(144849, 113755, 'en', 'name', 'Japan Property Management Association'),
(144850, 113755, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬č³ƒč²øä½å®…ē®”ē†å”ä¼š'),
(144851, 113756, 'en', 'name', 'Kyoto Yamashiro General Medical Center'),
(144852, 113756, 'ja', 'name', 'äŗ¬éƒ½å±±åŸŽē·åˆåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(144853, 113757, 'pt', 'name', 'Centro de Estudos de História Religiosa'),
(144854, 113758, 'es', 'name', 'Servicios de Salud de YucatƔn'),
(144855, 113759, 'en', 'name', 'Japan Sports Medicine Foundation'),
(144856, 113759, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ć‚¹ćƒćƒ¼ćƒ„ę²»ē™‚åŒ»å­¦ē ”ē©¶ä¼š'),
(144857, 113760, 'en', 'name', 'Hang Seng University of Hong Kong'),
(144858, 113760, 'zh', 'name', 'é¦™ęøÆę’ē”Ÿå¤§å­ø'),
(144859, 113761, 'es', 'name', 'Instituto de Investigaciones sobre la Universidad y la Educación'),
(144860, 113762, 'pt', 'name', 'Centro de Competências em Envelhecimento Ativo e SaudÔvel'),
(144861, 113763, 'de', 'name', 'Allectra GmbH'),
(144862, 113763, 'en', 'name', 'Allectra Limited, Allectra Limited (Germany)'),
(144863, 113764, 'en', 'name', 'Ottery St Mary Hospital'),
(144864, 113765, 'de', 'name', 'Institut für Energie- und Verfahrenstechnik'),
(144865, 113765, 'en', 'name', 'Institute of Energy and Process Engineering'),
(144866, 113766, 'en', 'name', 'Seaton Hospital'),
(144867, 113767, 'en', 'name', 'ALERT Geomaterials – Alliance of Laboratories in Europe for Education, Research and Technology'),
(144868, 113768, 'no_lang_code', 'name', 'Carlos Pinto de Abreu and Associates, Carlos Pinto de Abreu e Associados, Carlos Pinto de Abreu e Associados (Portugal)'),
(144869, 113769, 'en', 'name', 'ArtCenter College of Design'),
(144870, 113770, 'en', 'name', 'Germano de Sousa Centre for Laboratory Medicine'),
(144871, 113770, 'pt', 'name', 'Centro de Medicina Laboratorial Germano de Sousa'),
(144872, 113771, 'en', 'name', 'University Hospital Donostia'),
(144873, 113771, 'es', 'name', 'Hospital Universitario de Donostia'),
(144874, 113771, 'eu', 'name', 'Donostiako Unibertsitate Ospitalea'),
(144875, 113772, 'pt', 'name', 'Infraestrutura Nacional de Investigação para Energia Solar de Concentração'),
(144876, 113773, 'en', 'name', 'Haverford College'),
(144877, 113774, 'en', 'name', 'Japan Technology Transfer Association'),
(144878, 113774, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å·„ę„­ęŠ€č”“ęŒÆčˆˆå”ä¼š'),
(144879, 113775, 'en', 'name', 'World Climate Research Programme'),
(144880, 113776, 'en', 'name', 'Shiga Prefecture Agricultural Technology Promotion Center'),
(144881, 113776, 'ja', 'name', 'ę»‹č³€ēœŒč¾²ę„­ęŠ€č”“ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(144882, 113777, 'en', 'name', 'European Maritime Safety Agency'),
(144883, 113778, 'en', 'name', 'Botany Foundation'),
(144884, 113779, 'en', 'name', 'The Accessible Design Foundation of Japan'),
(144885, 113779, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå…±ē”Øå“ęŽØé€²ę©Ÿę§‹'),
(144886, 113780, 'en', 'name', 'Government of South Australia'),
(144887, 113781, 'en', 'name', 'Adam Mickiewicz University in Poznań'),
(144888, 113781, 'pl', 'name', 'Uniwersytet im. Adama Mickiewicza w Poznaniu'),
(144889, 113782, 'en', 'name', 'ā€œFoisorā€ Clinical Hospital of Orthopaedics, Traumatology and Osteoarticular TB'),
(144890, 113782, 'ro', 'name', 'Spitalul Clinic de Ortopedie, Traumatologie și TBC Osteoarticular Foișor'),
(144891, 113783, 'en', 'name', 'United States European Command'),
(144892, 113784, 'en', 'name', 'University of Kotli, Azad Jammu and Kashmir'),
(144893, 113785, 'en', 'name', 'S. C. Institute of Health Science and Research'),
(144894, 113785, 'ja', 'name', 'ć•ć„ćŸć¾åø‚å„åŗ·ē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(144895, 113786, 'pt', 'name', 'Plataforma Tecnológica Portuguesa da Construção'),
(144896, 113787, 'fr', 'name', 'Universite de Bordeaux II Victor Segalen, UniversitƩ Bordeaux II, UniversitƩ Bordeaux Segalen'),
(144897, 113788, 'en', 'name', 'The Society for Teaching Japanese as a Foreign Language'),
(144898, 113788, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬čŖžę•™č‚²å­¦ä¼š'),
(144899, 113789, 'no_lang_code', 'name', 'Dinabook National Book Distributor, Dinalivro Distribuidora Nacional de Livros (Portugal)'),
(144900, 113790, 'no_lang_code', 'name', 'AstraZeneca (Poland)'),
(144901, 113791, 'en', 'name', 'Center of Research for Environment, Energy and Water'),
(144902, 113791, 'ne', 'name', 'वातावरण, ą¤‰ą¤°ą„ą¤œą¤¾ तऄा जल ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°'),
(144903, 113792, 'cs', 'name', 'Výzkumný ústav pro kraj, Výzkumný ústav pro krajinu, v. v. i'),
(144904, 113792, 'en', 'name', 'Landscape Research Institute'),
(144905, 113793, 'fr', 'name', 'CERAM - Centre d''Ɖtudes et de Recherches Antiques et MĆ©diĆ©vales, Centre d''Ɖtudes et de Recherches Antiques et MĆ©diĆ©vales'),
(144906, 113794, 'en', 'name', 'Wakayama Prefectural Livestock Experiment Station'),
(144907, 113794, 'ja', 'name', 'å’Œę­Œå±±ēœŒē•œē”£č©¦éØ“å “'),
(144908, 113795, 'fr', 'name', 'Génétique Physiologie et Systèmes d''Elevage'),
(144909, 113796, 'pt', 'name', 'LabComIFP - Comunicação Filosofia e Humanidades, LabComIFP'),
(144910, 113797, 'en', 'name', 'U.S. Virgin Islands Department of Planning and Natural Resources'),
(144911, 113798, 'en', 'name', 'The Japan Association of Rural Solutions for Environmental Conservation and Resource Recycling'),
(144912, 113798, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåœ°åŸŸē’°å¢ƒč³‡ęŗć‚»ćƒ³ć‚æćƒ¼'),
(144913, 113799, 'pt', 'name', 'Universidade SENAI CIMATEC'),
(144914, 113800, 'en', 'name', 'Asia Technology Research Institute'),
(144915, 113801, 'no_lang_code', 'name', 'Biotronik (Germany)'),
(144916, 113802, 'id', 'name', 'Institut Pendidikan Indonesia'),
(144917, 113803, 'pt', 'name', 'Paróquia de Nossa Senhora do Cabo de Linda-a-Velha'),
(144918, 113804, 'en', 'name', 'Westmead Hospital'),
(144919, 113805, 'en', 'name', 'International Centre for Materials Physics'),
(144920, 113805, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢å›½é™…ęę–™ē‰©ē†äø­åæƒ'),
(144921, 113806, 'fr', 'name', 'UniversitƩ Savoie Mont Blanc'),
(144922, 113807, 'en', 'name', 'Marquette University'),
(144923, 113807, 'es', 'name', 'Universidad Marquette'),
(144924, 113808, 'pt', 'name', 'Centro de Estudos AvanƧados em Direito Francisco SuƔrez'),
(144925, 113809, 'en', 'name', 'Ministry of Ecology and Environment'),
(144926, 113809, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½ēŽÆå¢ƒäæęŠ¤éƒØ'),
(144927, 113810, 'es', 'name', 'Centro Nacional de TecnologĆ­a QuĆ­mica'),
(144928, 113811, 'en', 'name', 'New Glass Forum'),
(144929, 113811, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗćƒ‹ćƒ„ćƒ¼ć‚¬ćƒ©ć‚¹ćƒ•ć‚©ćƒ¼ćƒ©ćƒ '),
(144930, 113812, 'en', 'name', 'Yamazaki University of Animal Health Technology'),
(144931, 113812, 'ja', 'name', 'ćƒ¤ćƒžć‚¶ć‚­å‹•ē‰©ēœ‹č­·å¤§å­¦'),
(144932, 113813, 'en', 'name', 'Hatsutomi Hoken Hospital'),
(144933, 113813, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£äø€åæƒä¼šåˆåÆŒäæå„ē—…é™¢'),
(144934, 113814, 'en', 'name', 'National Centre for Space Studies'),
(144935, 113814, 'fr', 'name', 'Centre National d''Ɖtudes Spatiales'),
(144936, 113815, 'en', 'name', 'Nagano Medical Association'),
(144937, 113815, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé•·é‡ŽēœŒåŒ»åø«ä¼š'),
(144938, 113816, 'no_lang_code', 'name', 'Lightning Packs (United States)'),
(144939, 113817, 'en', 'name', 'Institute of Fluid Flow-Machinery'),
(144940, 113817, 'pl', 'name', 'Instytut Maszyn Przepływowych'),
(144941, 113818, 'en', 'name', 'Institute of Physics Belgrade'),
(144942, 113819, 'en', 'name', 'Japan Ship Technology Research Association'),
(144943, 113819, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬čˆ¹čˆ¶ęŠ€č”“ē ”ē©¶å”ä¼š'),
(144944, 113820, 'id', 'name', 'Teknologi Pendidikan ID (Indonesia)'),
(144945, 113821, 'en', 'name', 'Mukhametzhan Tynyshbayev ALT University'),
(144946, 113821, 'kk', 'name', 'ŠœŅ±Ń…Š°Š¼ŠµŃ‚Š¶Š°Š½ Š¢Ń‹Š½Ń‹ŃˆŠ±Š°ŠµŠ² атынГағы ALT ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(144947, 113821, 'ru', 'name', 'ALT Университет имени ŠœŃƒŃ…амеГжана Š¢Ń‹Š½Ń‹ŃˆŠæŠ°ŠµŠ²Š°'),
(144948, 113822, 'en', 'name', 'Tsurumi Junior College'),
(144949, 113822, 'ja', 'name', 'é¶“č¦‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(144950, 113823, 'en', 'name', 'Jawaharlal Nehru Technological University-Gurajada, Vizianagaram'),
(144951, 113824, 'no_lang_code', 'name', 'Pierre Fabre (France)'),
(144952, 113825, 'de', 'name', 'Katholische Universität Córdoba'),
(144953, 113825, 'en', 'name', 'Catholic University of Córdoba'),
(144954, 113825, 'es', 'name', 'Universidad Católica de Córdoba'),
(144955, 113825, 'fr', 'name', 'UniversitƩ Catholique de Cordoba'),
(144956, 113826, 'no_lang_code', 'name', 'Valmet (Portugal)'),
(144957, 113827, 'id', 'name', 'Politeknik Pariwisata NHI Bandung'),
(144958, 113828, 'en', 'name', 'Institute for Balkan Studies SASA'),
(144959, 113828, 'sr', 'name', 'Š‘Š°Š»ŠŗŠ°Š½Š¾Š»Š¾ŃˆŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚, Š‘Š°Š»ŠŗŠ°Š½Š¾Š»Š¾ŃˆŠŗŠø ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Дрпске акаГемије наука Šø ŃƒŠ¼ŠµŃ‚Š½Š¾ŃŃ‚Šø'),
(144960, 113829, 'no_lang_code', 'name', 'Bayer (Germany)'),
(144961, 113830, 'en', 'name', 'Advanced Remanufacturing & Technology Centre'),
(144962, 113831, 'cs', 'name', 'Ústav mezinÔrodních vztahů, v. v. i.'),
(144963, 113831, 'en', 'name', 'Institute of International Relations Prague'),
(144964, 113832, 'fr', 'name', 'DƩlƩgation Languedoc Roussillon'),
(144965, 113833, 'en', 'name', 'Arkansas Game and Fish Commission'),
(144966, 113834, 'de', 'name', 'Vorarlberger Landesbibliothek'),
(144967, 113835, 'en', 'name', 'Turkish Energy, Nuclear and Mineral Research Agency'),
(144968, 113835, 'tr', 'name', 'Türkiye Enerji Nükleer ve Maden Araştırma Kurumu'),
(144969, 113836, 'en', 'name', 'KOBE Tourism Bureau'),
(144970, 113836, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē„žęˆøč¦³å…‰å±€'),
(144971, 113837, 'en', 'name', 'Nusmetics Pte Ltd (Singapore)'),
(144972, 113838, 'en', 'name', 'Kyiv Zoological Park of National Importance'),
(144973, 113839, 'en', 'name', 'Western Michigan University'),
(144974, 113839, 'fr', 'name', 'UniversitƩ de western michigan'),
(144975, 113840, 'en', 'name', 'Monetary Authority of Singapore'),
(144976, 113841, 'en', 'name', 'National Ecological Observatory Network'),
(144977, 113842, 'en', 'name', 'Yavuz Selim Bone Diseases and Rehabilitation Hospital'),
(144978, 113842, 'tr', 'name', 'Yavuz Seli̇m Kemi̇k Hastaliklari ve Rehabi̇li̇tasyon Hastanesi̇'),
(144979, 113843, 'en', 'name', 'Centre for Advanced Laser Applications'),
(144980, 113844, 'en', 'name', 'Kyoto Prefectural Institute for Northern Industry'),
(144981, 113844, 'ja', 'name', 'äŗ¬éƒ½åŗœē¹”ē‰©ćƒ»ę©Ÿę¢°é‡‘å±žęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(144982, 113845, 'en', 'name', 'KAISEI Hospital'),
(144983, 113845, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗå¤§ęØ¹ä¼šē·åˆē—…é™¢å›žē”Ÿē—…é™¢'),
(144984, 113846, 'es', 'name', 'Dirección General de Bibliotecas y Servicios Digitales de Información'),
(144985, 113847, 'es', 'name', 'Centro de Emergencias Sanitarias 061'),
(144986, 113848, 'es', 'name', 'Hospital de ClĆ­nicas'),
(144987, 113849, 'de', 'name', 'Anstalt für Verbrennungskraftmaschinen List (United Kingdom)'),
(144988, 113850, 'es', 'name', 'Dirección General de Publicaciones y Fomento Editorial'),
(144989, 113851, 'en', 'name', 'Industrial Technology Center of Nagasaki'),
(144990, 113851, 'ja', 'name', 'é•·å“ŽēœŒå·„ę„­ęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼'),
(144991, 113852, 'en', 'name', 'Alupe University'),
(144992, 113853, 'de', 'name', 'Berufsbildungswerk Leipzig für Hör- und Sprachgeschädigte gGmbH'),
(144993, 113854, 'fr', 'name', 'Institut Michel Villey pour la Culture Juridique et la Philosophie du Droit'),
(144994, 113855, 'ca', 'name', 'Escola Superior d''Infermeria del Mar'),
(144995, 113856, 'en', 'name', 'Advanced Micro Devices (Singapore), Advanced Micro Devices (Singapore) Pte Ltd'),
(144996, 113857, 'fr', 'name', 'CLESTHIA - Langage, systĆØmes, discours'),
(144997, 113858, 'en', 'name', 'Kamagaya General Hospital'),
(144998, 113858, 'ja', 'name', 'ē¤¾ä¼šåŒ»ē™‚ę³•äŗŗē¤¾å›£ęœØäø‹ä¼šéŽŒć‚±č°·ē·åˆē—…é™¢'),
(144999, 113859, 'en', 'name', 'Center for Digital Narrative'),
(145000, 113859, 'no', 'name', 'Senter for digitale fortellinger'),
(145001, 113860, 'en', 'name', 'Government Post Graduate College, Karak'),
(145002, 113860, 'ur', 'name', 'ŚÆŁˆŲ±Ł†Ł…Ł†Ł¹ پوسٹ گریجویٹ کالج کرک'),
(145003, 113861, 'en', 'name', 'International Glaciological Society'),
(145004, 113862, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الأندلس Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁ‚Ł†ŁŠŲ©'),
(145005, 113862, 'en', 'name', 'Alandalus University For Science & Technology'),
(145006, 113863, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© وادي الؓاطئ'),
(145007, 113863, 'en', 'name', 'Wadi Alshatti University'),
(145008, 113864, 'cs', 'name', 'Ústav jadernĆ© fyziky AV ČR, Ústav jadernĆ© fyziky AV ČR, v. v. i., Ústav jadernĆ© fyziky AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(145009, 113864, 'en', 'name', 'Czech Academy of Sciences, Nuclear Physics Institute'),
(145010, 113865, 'en', 'name', 'Centre for Economic Policy Research'),
(145011, 113866, 'no_lang_code', 'name', 'Startup Madeira More Than Ideas (Portugal)'),
(145012, 113867, 'en', 'name', 'Society for Promotion of Space Science'),
(145013, 113867, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå®‡å®™ē§‘å­¦ęŒÆčˆˆä¼š'),
(145014, 113868, 'it', 'name', 'Fondazione Paolo Procacci'),
(145015, 113869, 'es', 'name', 'Universidad Naval'),
(145016, 113870, 'en', 'name', 'Okanagan College'),
(145017, 113871, 'pt', 'name', 'Sociedade Portuguesa de Neuropediatria'),
(145018, 113872, 'en', 'name', 'Japan Sediments Management Association'),
(145019, 113872, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę°“åŗ•č³Ŗęµ„åŒ–ęŠ€č”“å”ä¼š'),
(145020, 113873, 'fr', 'name', 'Fondation Montagne Sùre'),
(145021, 113873, 'it', 'name', 'Fondazione Montagna Sicura'),
(145022, 113874, 'en', 'name', 'Bolan University of Medical and Health Sciences'),
(145023, 113874, 'ur', 'name', 'ŲØŁˆŁ„Ų§Ł† ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ł…ŪŒŚˆŪŒŚ©Ł„ Ų§ŪŒŁ†Śˆ ŪŪŒŁ„ŲŖŚ¾ سائنسز'),
(145024, 113875, 'no_lang_code', 'name', 'Advanced Micro Devices (United States)'),
(145025, 113876, 'fr', 'name', 'Institut National des Sciences de l''Univers'),
(145026, 113877, 'no_lang_code', 'name', 'Blue Geo Lighthouse (Portugal)'),
(145027, 113878, 'es', 'name', 'Universidad de Ciencias MƩdicas de la Habana'),
(145028, 113879, 'en', 'name', 'United Nations University'),
(145029, 113880, 'en', 'name', 'ESSCA School of Management'),
(145030, 113881, 'no_lang_code', 'name', 'Lusomedicamenta (Portugal), Lusomedicamenta, S.A.'),
(145031, 113882, 'en', 'name', 'Stem Cell Evaluation Technology Research Association'),
(145032, 113882, 'ja', 'name', 'å¹¹ē“°čƒžč©•ä¾”åŸŗē›¤ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(145033, 113883, 'en', 'name', 'Japanese Society of Radiological Technology'),
(145034, 113883, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę”¾å°„ē·šęŠ€č”“å­¦ä¼š'),
(145035, 113884, 'fr', 'name', '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'),
(145036, 113885, 'en', 'name', 'American Quarter Horse Association'),
(145037, 113886, 'en', 'name', 'Asian Office of Aerospace Research and Development'),
(145038, 113887, 'en', 'name', 'Obninsk Institute for Nuclear Power Engineering'),
(145039, 113887, 'ru', 'name', 'ŠžŠ‘ŠŠ˜ŠŠ”ŠšŠ˜Š™ Š˜ŠŠ”Š¢Š˜Š¢Š£Š¢ ŠŠ¢ŠžŠœŠŠžŠ™ Š­ŠŠ•Š Š“Š•Š¢Š˜ŠšŠ˜'),
(145040, 113888, 'pt', 'name', 'Madeira N-Lincs'),
(145041, 113889, 'en', 'name', 'Saitama International Association'),
(145042, 113889, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗåŸ¼ēŽ‰ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(145043, 113890, 'cy', 'name', 'Prifysgol Efrog'),
(145044, 113890, 'en', 'name', 'University of York'),
(145045, 113891, 'de', 'name', 'TÜV-Verband'),
(145046, 113891, 'en', 'name', 'TÜV Association'),
(145047, 113892, 'en', 'name', 'Japan Telework Association'),
(145048, 113892, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ†ćƒ¬ćƒÆćƒ¼ć‚Æå”ä¼š'),
(145049, 113893, 'pt', 'name', 'Biblioteca PĆŗblica de Braga'),
(145050, 113894, 'en', 'name', 'UPF Barcelona School of Management'),
(145051, 113895, 'pt', 'name', 'Centro CiĆŖncia Viva do Algarve'),
(145052, 113896, 'pt', 'name', 'Cooperativa de Ensino UniversitƔrio CRL'),
(145053, 113897, 'en', 'name', 'Japan Robot Association'),
(145054, 113897, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒ­ćƒœćƒƒćƒˆå·„ę„­ä¼š'),
(145055, 113898, 'en', 'name', 'Japan Boiler Association'),
(145056, 113898, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒœć‚¤ćƒ©å”ä¼š'),
(145057, 113899, 'en', 'name', 'Kano Independent Research Centre Trust'),
(145058, 113900, 'en', 'name', 'AMSolutions Inc., AMSolutions Inc. (Korea)'),
(145059, 113901, 'en', 'name', 'Tartu Observatory'),
(145060, 113901, 'et', 'name', 'Tartu Observatoorium'),
(145061, 113902, 'fr', 'name', 'Centre IntĆ©grĆ© Universitaire de SantĆ© et de Services Sociaux du Centre-Sud-de-l''Ǝle-de-MontrĆ©al'),
(145062, 113903, 'en', 'name', 'Japan Society for Safety Engineering'),
(145063, 113903, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗå®‰å…Øå·„å­¦ä¼š'),
(145064, 113904, 'en', 'name', 'SingHealth'),
(145065, 113905, 'en', 'name', 'THE Osaka Medical Research Foundation For Intractable Diseases'),
(145066, 113905, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§é˜Ŗé›£ē—…ē ”ē©¶č²”å›£'),
(145067, 113906, 'no_lang_code', 'name', 'Family Health Unit Alphamouro, Unidade de SaĆŗde Familiar Alphamouro, Unidade de SaĆŗde Familiar Alphamouro (Portugal)'),
(145068, 113907, 'en', 'name', 'Rocky Mountain Humanistic Counseling and Psychological Association'),
(145069, 113908, 'fr', 'name', 'Centre d''Ʃtudes et de recherches comparƩes sur la crƩation'),
(145070, 113909, 'no_lang_code', 'name', 'Medjournal, Medjournal (Portugal)'),
(145071, 113910, 'fr', 'name', 'Interactions, Corpus, Apprentissages, ReprƩsentations'),
(145072, 113911, 'de', 'name', 'alchemia-nova research and innovation gemeinnützige GmbH'),
(145073, 113912, 'pt', 'name', 'Escola de Moda do Porto'),
(145074, 113913, 'en', 'name', 'Laboratory for Research on Learning and Development'),
(145075, 113913, 'fr', 'name', 'Laboratoire d''Ʃtude de l''apprentissage et du dƩveloppement'),
(145076, 113914, 'en', 'name', 'Japan Lubricating Oil Society'),
(145077, 113914, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę½¤ę»‘ę²¹å”ä¼š'),
(145078, 113915, 'fr', 'name', 'GeoRessources'),
(145079, 113916, 'en', 'name', 'Princess Alexandra Hospital'),
(145080, 113917, 'en', 'name', 'Shenyang Maternity and Child Health Hospital'),
(145081, 113917, 'zh', 'name', 'ę²ˆé˜³åø‚å¦‡å¹¼äæå„é™¢'),
(145082, 113918, 'pt', 'name', 'Sociedade Portuguesa de NeurociĆŖncias'),
(145083, 113919, 'en', 'name', 'Health and Welfare Information Association'),
(145084, 113919, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗäæå„ē¦ē„‰åŗƒå ±å”ä¼š'),
(145085, 113920, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„ŁƒŁ†ŁˆŲ² الجامعة'),
(145086, 113920, 'en', 'name', 'Al-Kunooze University'),
(145087, 113921, 'en', 'name', 'Millennium Institute for Care Research'),
(145088, 113922, 'fr', 'name', 'La Rochelle UniversitƩ'),
(145089, 113923, 'en', 'name', 'Atria Institute of Technology'),
(145090, 113924, 'ca', 'name', 'Universitat de Cadis'),
(145091, 113924, 'en', 'name', 'University of CƔdiz'),
(145092, 113924, 'es', 'name', 'Universidad de CƔdiz'),
(145093, 113925, 'en', 'name', 'Federal Polytechnic Wannune'),
(145094, 113926, 'fr', 'name', 'BiogƩosciences'),
(145095, 113927, 'de', 'name', 'Ministerium für Kultur und Wissenschaft des Landes Nordrhein-Westfalen'),
(145096, 113928, 'ca', 'name', 'Universitat Pompeu Fabra'),
(145097, 113928, 'en', 'name', 'Pompeu Fabra University'),
(145098, 113928, 'es', 'name', 'Universidad Pompeu Fabra'),
(145099, 113929, 'pt', 'name', 'Direção Geral do Território'),
(145100, 113930, 'no_lang_code', 'name', 'J. Pereira da Cruz, S.A .(Portugal)'),
(145101, 113931, 'it', 'name', 'Agenzia Provinciale per l’ambiente e la tutela del clima'),
(145102, 113932, 'de', 'name', 'Institut für Pharmazeutische Wissenschaften'),
(145103, 113932, 'en', 'name', 'Institute of Pharmaceutical Sciences'),
(145104, 113933, 'ca', 'name', 'Institut de Neurociència Avançada de Barcelona'),
(145105, 113933, 'en', 'name', 'Advanced Neuroscience Institute of Barcelona'),
(145106, 113933, 'es', 'name', 'Instituto de Neurociencia Avanzada de Barcelona'),
(145107, 113934, 'en', 'name', 'University of Santander'),
(145108, 113934, 'es', 'name', 'Universidad De Santander'),
(145109, 113935, 'de', 'name', 'Hochschule Luzern'),
(145110, 113935, 'en', 'name', 'Lucerne University of Applied Sciences and Arts'),
(145111, 113935, 'fr', 'name', 'Haute Ɖcole de Lucerne'),
(145112, 113936, 'en', 'name', 'Nepal College of Management'),
(145113, 113937, 'de', 'name', 'Institut für Robotik und Intelligente Systeme'),
(145114, 113937, 'en', 'name', 'Institute of Robotics and Intelligent Systems'),
(145115, 113938, 'cs', 'name', 'Ú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'),
(145116, 113938, 'en', 'name', 'Czech Academy of Sciences, Institute of Organic Chemistry and Biochemistry'),
(145117, 113939, 'en', 'name', 'Bharathiyar Institute of Engineering for Women'),
(145118, 113940, 'pt', 'name', 'Sociedade Portuguesa de Psicodrama'),
(145119, 113941, 'en', 'name', 'Division of Advanced Cyberinfrastructure'),
(145120, 113942, 'en', 'name', 'University of Granada'),
(145121, 113942, 'es', 'name', 'Universidad de Granada'),
(145122, 113942, 'eu', 'name', 'Granadako Unibertsitatea'),
(145123, 113943, 'fr', 'name', 'Centre d''Investigation Clinique de BesanƧon'),
(145124, 113944, 'en', 'name', 'United States Army Intelligence and Security Command'),
(145125, 113945, 'en', 'name', 'Environmental Monitoring and Modeling Laboratory for the Sustainable Development'),
(145126, 113945, 'it', 'name', 'Laboratorio di Monitoraggio e Modellistica Ambientale per lo sviluppo sostenibile'),
(145127, 113946, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł„Ų§Ų°Ł‚ŁŠŲ©'),
(145128, 113946, 'en', 'name', 'Latakia University'),
(145129, 113947, 'fr', 'name', 'Laboratoire de MathƩmatiques de BesanƧon'),
(145130, 113948, 'en', 'name', 'Takarazuka Medical Association'),
(145131, 113948, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå®å”šåø‚åŒ»åø«ä¼š'),
(145132, 113949, 'ca', 'name', 'Institut CatalĆ  d''Arqueologia ClĆ ssica'),
(145133, 113949, 'es', 'name', 'Instituto CatalƔn de Arqueologƭa ClƔsica'),
(145134, 113950, 'id', 'name', 'Bina Bangsa School Pantai Indah Kapuk'),
(145135, 113951, 'de', 'name', 'Institut für Maschinelles Lernen'),
(145136, 113951, 'en', 'name', 'Institute for Machine Learning'),
(145137, 113952, 'en', 'name', 'Sapporo Medical Association'),
(145138, 113952, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęœ­å¹Œåø‚åŒ»åø«ä¼š'),
(145139, 113953, 'en', 'name', 'Research Organization of Information and Systems'),
(145140, 113953, 'ja', 'name', 'ęƒ…å ±ćƒ»ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę©Ÿę§‹'),
(145141, 113954, 'bn', 'name', 'ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ ą¦®ą¦žą§ą¦œą§ą¦°ą¦æ কমিশন'),
(145142, 113954, 'en', 'name', 'University Grants Commission'),
(145143, 113954, 'fr', 'name', 'Commission des subventions aux universitƩs'),
(145144, 113954, 'hi', 'name', 'ą¤µą¤æą¤¶ą„ ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ ą¤…ą¤Øą„ą¤¦ą¤¾ą¤Ø ą¤†ą¤Æą„‹ą¤—'),
(145145, 113954, 'ml', 'name', 'ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“æą“±ąµą“±ą“æ ą“—ąµą“°ą“¾ą“Øąµą“±ąµą“øąµ ą“•ą“®ąµą“®ąµ€ą“·ąµ»'),
(145146, 113954, 'pa', 'name', 'ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€ ąØ—ą©ąØ°ąØ¾ąØ‚ąØŸ ਕਮਿਸ਼ਨ'),
(145147, 113954, 'ta', 'name', 'ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®• ą®®ą®¾ą®©ą®æą®Æą®•ąÆ குஓு'),
(145148, 113955, 'pt', 'name', 'Arquivo Histórico Municipal do Porto'),
(145149, 113956, 'pt', 'name', 'Biblioteca da Ajuda'),
(145150, 113957, 'en', 'name', 'Wyss Zurich Translational Center'),
(145151, 113958, 'pt', 'name', 'Entidade Reguladora da SaĆŗde'),
(145152, 113959, 'en', 'name', 'Ukrainian Research Institute of Design and Ergonomics of the National Aviation University'),
(145153, 113959, 'uk', 'name', 'Š£ŠŗŃ€ŠŠ”Š† ДЕ ŠŠŠ£'),
(145154, 113960, 'en', 'name', 'Dnipro State University of Internal Affairs'),
(145155, 113960, 'uk', 'name', 'Š”Š½Ń–ŠæŃ€Š¾Š²ŃŃŒŠŗŠøŠ¹ Гержавний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Š²Š½ŃƒŃ‚Ń€Ń–ŃˆŠ½Ń–Ń… справ'),
(145156, 113961, 'en', 'name', 'Ecotec University'),
(145157, 113961, 'es', 'name', 'Universidad Ecotec'),
(145158, 113962, 'no_lang_code', 'name', 'Medtronic (Switzerland)'),
(145159, 113963, 'en', 'name', 'European Institute for Marine Studies'),
(145160, 113963, 'fr', 'name', 'Institut Universitaire EuropƩen de la Mer'),
(145161, 113964, 'en', 'name', 'Government Pension Investment Fund'),
(145162, 113964, 'ja', 'name', 'å¹“é‡‘ē©ē«‹é‡‘ē®”ē†é‹ē”Øē‹¬ē«‹č”Œę”æę³•äŗŗ'),
(145163, 113965, 'en', 'name', 'TerezĆ­n Memorial'),
(145164, 113966, 'en', 'name', 'Yamazaki Professional College of Animal Health Technology'),
(145165, 113966, 'ja', 'name', 'ćƒ¤ćƒžć‚¶ć‚­å‹•ē‰©ēœ‹č­·å°‚é–€č·ēŸ­ęœŸå¤§å­¦'),
(145166, 113967, 'ko', 'name', 'LG화학'),
(145167, 113967, 'no_lang_code', 'name', 'LG Chem (South Korea)'),
(145168, 113968, 'en', 'name', 'Arctic Long Term Ecological Research'),
(145169, 113969, 'en', 'name', 'Zhangjiang Laboratory'),
(145170, 113969, 'zh', 'name', 'å¼ ę±Ÿå®žéŖŒå®¤'),
(145171, 113970, 'fr', 'name', 'Centre Hospitalier Universitaire de Saint-Ɖtienne'),
(145172, 113971, 'en', 'name', 'Ministry of Health and Family Welfare'),
(145173, 113972, 'en', 'name', 'International Lead and Zinc Study Group'),
(145174, 113973, 'en', 'name', 'Imam Ali University'),
(145175, 113974, 'en', 'name', 'Noshiro Kousei Medical Center'),
(145176, 113974, 'ja', 'name', 'JAē§‹ē”°åŽšē”Ÿé€£čƒ½ä»£åŽšē”ŸåŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(145177, 113975, 'en', 'name', 'European Association for Higher Education Advancement'),
(145178, 113976, 'pt', 'name', 'Escola de Comunicação Arquitectura Artes e Tecnologias da Informação'),
(145179, 113977, 'pt', 'name', 'Centro de Toxicogenómica e Saúde Humana'),
(145180, 113978, 'en', 'name', 'Economic and Social Research Institute'),
(145181, 113979, 'en', 'name', 'Institute of Animal Biochemistry and Genetics of the Slovak Academy of Sciences'),
(145182, 113979, 'sk', 'name', 'Ústav biochĆ©mie a genetiky živočƭchov Centra biovied Slovenskej akadĆ©mie vied'),
(145183, 113980, 'en', 'name', 'High Pressure-High Temperature Laboratory of the Istituto Nazionale di Geofisica e Vulcanologia of Rome'),
(145184, 113980, 'it', 'name', 'Laboratorio per le Alte Pressioni e Alte Temperature di Geofisica e Vulcanologia Sperimentali'),
(145185, 113981, 'en', 'name', 'Regional Center for Teacher Training and Educational Research'),
(145186, 113981, 'es', 'name', 'Centro Regional de Formación Docente e Investigación Educativa'),
(145187, 113982, 'en', 'name', 'Japan Atomic Industrial Forum, Inc.'),
(145188, 113982, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬åŽŸå­åŠ›ē”£ę„­å”ä¼š'),
(145189, 113983, 'en', 'name', 'Society of Automotive Engineers of Japan, Inc.'),
(145190, 113983, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗč‡Ŗå‹•č»ŠęŠ€č”“ä¼š'),
(145191, 113984, 'no_lang_code', 'name', 'Vieira de Almeida and Partners, Vieira de Almeida e Associados, Vieira de Almeida e Associados (Portugal)'),
(145192, 113985, 'es', 'name', 'Instituto de GeofĆ­sica'),
(145193, 113986, 'en', 'name', 'Navoi State University'),
(145194, 113986, 'uz', 'name', 'Navoiy davlat universiteti'),
(145195, 113987, 'en', 'name', 'Vladivostok State University'),
(145196, 113987, 'ru', 'name', 'ВлаГивостокский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(145197, 113988, 'fr', 'name', 'UniversitƩ Paris-PanthƩon-Assas'),
(145198, 113989, 'en', 'name', 'Japan International Cooperation System'),
(145199, 113989, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬å›½éš›å”åŠ›ć‚·ć‚¹ćƒ†ćƒ '),
(145200, 113990, 'pt', 'name', 'Centro de Investigação em Ciências Geo-Espaciais'),
(145201, 113991, 'pt', 'name', 'Associação Portuguesa de Estudantes de Agricultura'),
(145202, 113992, 'en', 'name', 'DeSci Foundation'),
(145203, 113993, 'de', 'name', 'Institut für Kartografie und Geoinformation'),
(145204, 113993, 'en', 'name', 'Institute of Cartography and Geoinformation');
INSERT INTO `ror_settings` VALUES
(145205, 113994, 'en', 'name', 'NHK Engineering System, Inc.'),
(145206, 113994, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗNHKć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚°ć‚·ć‚¹ćƒ†ćƒ '),
(145207, 113995, 'pt', 'name', 'Associação Fibrenamics'),
(145208, 113996, 'en', 'name', 'Agriculture University, Jodhpur'),
(145209, 113997, 'ca', 'name', 'Govern de les Illes Balears'),
(145210, 113997, 'es', 'name', 'Gobierno de las Islas Baleares'),
(145211, 113998, 'el', 'name', 'ĪšĪ»Ī¹Ī½Ī¹ĪŗĪ®Ļ‚ Ī“Ī•ĪĪ•Ī£Ī™Ī£'),
(145212, 113998, 'en', 'name', 'GENESIS Hospital'),
(145213, 113999, 'en', 'name', 'Wageningen University & Research'),
(145214, 113999, 'nl', 'name', 'Wageningen University & Research centre'),
(145215, 114000, 'cs', 'name', 'Univerzita PalackƩho v Olomouci'),
(145216, 114000, 'en', 'name', 'Palacký University Olomouc'),
(145217, 114000, 'sk', 'name', 'Univerzita PalackƩho'),
(145218, 114001, 'en', 'name', 'Space Systems Command'),
(145219, 114002, 'fr', 'name', 'Laboratoire de Recherche Historique RhƓne-Alpes'),
(145220, 114003, 'en', 'name', 'Uniformed Services University of the Health Sciences'),
(145221, 114004, 'en', 'name', 'State University of Medical and Applied Sciences'),
(145222, 114005, 'de', 'name', 'Reha Zentrum Münster Betriebs GmbH'),
(145223, 114006, 'es', 'name', 'FUNDECYT PCTEX'),
(145224, 114007, 'pt', 'name', 'Sociedade Portuguesa de Cirurgia Cardƭaca TorƔcica e Vascular'),
(145225, 114008, 'pt', 'name', 'Unidade de I e D em AnƔlise de Ciclo de Vida de Produtos e Componentes Industriais Soldados'),
(145226, 114009, 'en', 'name', 'United States Central Command'),
(145227, 114010, 'en', 'name', 'Colorado School of Mines'),
(145228, 114011, 'en', 'name', 'Germplasm bank of the Technical University of Madrid'),
(145229, 114011, 'es', 'name', 'Banco de Germoplasma Vegetal de la UPM "César Gómez Campo"'),
(145230, 114012, 'en', 'name', 'Mobilities, Planning, Transport, Risks and Society'),
(145231, 114012, 'fr', 'name', 'MobilitƩs, AmƩnagement, Transports, Risques et SociƩtƩ'),
(145232, 114013, 'pt', 'name', 'Confederação do Comércio e Serviços de Portugal'),
(145233, 114014, 'en', 'name', 'The University of Shimane Junior College'),
(145234, 114014, 'ja', 'name', 'å³¶ę ¹ēœŒē«‹å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(145235, 114015, 'en', 'name', 'Chilean Navy'),
(145236, 114015, 'es', 'name', 'Armada de Chile'),
(145237, 114015, 'fr', 'name', 'Marine chilienne'),
(145238, 114015, 'pt', 'name', 'Armada do Chile'),
(145239, 114016, 'en', 'name', 'Littoral Power Systems, Inc., Littoral Power Systems, Inc. (United States)'),
(145240, 114017, 'pt', 'name', 'União da Floresta Mediterrânica'),
(145241, 114018, 'en', 'name', 'Institute of Health Management Research Bangalore'),
(145242, 114019, 'fr', 'name', 'Littérature, Idéologies, Représentations aux XVIIIe et XIXe Siècles'),
(145243, 114020, 'en', 'name', 'Naval Aerospace Medical Institute'),
(145244, 114021, 'en', 'name', 'Research Institute for Advancement of Living Standards'),
(145245, 114021, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé€£åˆē·åˆē”Ÿę“»é–‹ē™ŗē ”ē©¶ę‰€'),
(145246, 114022, 'de', 'name', 'Institut für Psychobiologie und Verhaltensmedizin'),
(145247, 114022, 'en', 'name', 'Center for Psychobiology and Behavioral Medicine'),
(145248, 114023, 'en', 'name', 'Dr. Subhash University'),
(145249, 114024, 'en', 'name', 'University of Maryland, Baltimore'),
(145250, 114025, 'en', 'name', 'Precision Health Research, Singapore'),
(145251, 114026, 'en', 'name', 'ERN TRANSPLANT-CHILD'),
(145252, 114027, 'no_lang_code', 'name', 'ISQe (Portugal), ISQe, S.A.'),
(145253, 114028, 'en', 'name', 'Iowa State University'),
(145254, 114028, 'es', 'name', 'Universidad Estatal de Iowa'),
(145255, 114028, 'fr', 'name', 'UniversitĆ© d''Ɖtat de l''Iowa'),
(145256, 114029, 'en', 'name', 'AuScope'),
(145257, 114030, 'pt', 'name', 'Sociedade Portuguesa para o Estudo da SaĆŗde Mental'),
(145258, 114031, 'fr', 'name', 'MusƩe national d''archƩologie, d''historie et d''art'),
(145259, 114032, 'de', 'name', 'Institut für virtuelle Produktion'),
(145260, 114032, 'en', 'name', 'Institute of Virtual Manufacturing'),
(145261, 114033, 'pt', 'name', 'CĆ¢mara Municipal de Sever do Vouga'),
(145262, 114034, 'no_lang_code', 'name', 'AEROMEC, AEROMEC (Portugal)'),
(145263, 114035, 'en', 'name', 'Shenzhen Municipal Human Resources and Social Security Bureau'),
(145264, 114035, 'zh', 'name', 'ę·±åœ³åø‚äŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœå±€'),
(145265, 114036, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠ Ł…ŲŗŁ†ŁŠŲ©'),
(145266, 114036, 'en', 'name', 'University Centre of Maghnia'),
(145267, 114036, 'fr', 'name', 'Centre Universitaire de Maghnia'),
(145268, 114037, 'en', 'name', 'Laval University'),
(145269, 114037, 'fr', 'name', 'UniversitƩ Laval'),
(145270, 114038, 'no_lang_code', 'name', 'Fresenius Medical Care (Germany)'),
(145271, 114039, 'pt', 'name', 'GeoBioTec - GeobiociĆŖncias Geotecnologias e Geo-engenharias'),
(145272, 114040, 'de', 'name', 'Institut für Biogeochemie und Schadstoffdynamik'),
(145273, 114040, 'en', 'name', 'Institute of Biogeochemistry and Pollutant Dynamics'),
(145274, 114041, 'en', 'name', 'Pakistan Science Foundation'),
(145275, 114042, 'fr', 'name', 'Unité sous contrat Caractérisation et suivi des phénomènes d''évolution des résistances'),
(145276, 114043, 'en', 'name', 'Å ibenik University of Applied Sciences'),
(145277, 114043, 'hr', 'name', 'VeleučiliŔte u Šibeniku'),
(145278, 114044, 'en', 'name', 'The Calamity Science Institute'),
(145279, 114044, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗē½å®³ē§‘å­¦ē ”ē©¶ę‰€'),
(145280, 114045, 'hu', 'name', 'Budapest Neutron Centre'),
(145281, 114046, 'de', 'name', 'ƖKOTEAM - Institut für Tierƶkologie und Naturraumplanung'),
(145282, 114046, 'en', 'name', 'OEKOTEAM - Institute for Animal Ecology and Landscape Planning, OEKOTEAM - Institute for Animal Ecology and Landscape Planning (Austria)'),
(145283, 114047, 'en', 'name', 'S. G. Balekundri Institute of Technology Belagavi'),
(145284, 114048, 'en', 'name', 'Mines Paris, PSL University, Centre for Energy, Environment & Processes (CEEP)'),
(145285, 114048, 'fr', 'name', 'Centre Energie Environnement ProcĆ©dĆ©s, Mines Paris, UniversitĆ© PSL, Centre Ɖnergie Environnement ProcĆ©dĆ©s (CEEP)'),
(145286, 114049, 'no_lang_code', 'name', 'Maldral Science, Maldral Scientia (Portugal), Maldral Scientia, S.A.'),
(145287, 114050, 'en', 'name', 'Swedish National Space Agency'),
(145288, 114051, 'de', 'name', 'Fachhochschule Südwestfalen'),
(145289, 114051, 'en', 'name', 'South Westphalia University of Applied Sciences'),
(145290, 114052, 'pt', 'name', 'Arquidiocese de Braga'),
(145291, 114053, 'en', 'name', 'Dr. D. Y. Patil B-School'),
(145292, 114054, 'fr', 'name', 'Laboratoire de Géologie de Lyon : Terre, Planètes et Environnement'),
(145293, 114055, 'en', 'name', 'Japanese Heart Rhythm Society'),
(145294, 114055, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬äøę•“č„ˆåæƒé›»å­¦ä¼š'),
(145295, 114056, 'no_lang_code', 'name', 'LeYa, LeYa (Portugal)'),
(145296, 114057, 'en', 'name', 'Quadram Institute'),
(145297, 114058, 'pt', 'name', 'Sociedade Portuguesa de Esclerose MĆŗltipla'),
(145298, 114059, 'en', 'name', 'Pontifical Catholic University of Chile'),
(145299, 114059, 'es', 'name', 'Pontificia Universidad Católica de Chile'),
(145300, 114060, 'en', 'name', 'Functional Genomics Center Zurich'),
(145301, 114061, 'bn', 'name', 'ą¦—ą¦¾ą¦œą§€ą¦Ŗą§ą¦° ą¦•ą§ƒą¦·ą¦æ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą§Ÿ'),
(145302, 114061, 'en', 'name', 'Gazipur Agricultural University'),
(145303, 114062, 'en', 'name', 'North Carolina State University'),
(145304, 114062, 'es', 'name', 'Universidad Estatal de Carolina del Norte'),
(145305, 114062, 'fr', 'name', 'UniversitĆ© d''Ɖtat de caroline du nord'),
(145306, 114063, 'es', 'name', 'Centro de Estudios e Investigaciones Laborales'),
(145307, 114064, 'en', 'name', 'National Institute of Biologicals'),
(145308, 114065, 'fr', 'name', 'Institut FranƧais de l''Ɖducation'),
(145309, 114066, 'en', 'name', 'Japan Productivity Center'),
(145310, 114066, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ē”Ÿē”£ę€§ęœ¬éƒØ'),
(145311, 114067, 'de', 'name', 'Ruhr-UniversitƤt Bochum'),
(145312, 114067, 'en', 'name', 'Ruhr University Bochum'),
(145313, 114068, 'es', 'name', 'Centro de Investigación y Conservación Marina'),
(145314, 114069, 'en', 'name', 'Ships of Exploration and Discovery Research'),
(145315, 114070, 'en', 'name', 'Japanese Association of Medical Technologists'),
(145316, 114070, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬č‡ØåŗŠč”›ē”Ÿę¤œęŸ»ęŠ€åø«ä¼š'),
(145317, 114071, 'ca', 'name', 'Centre de Recerca en Agrigenòmica'),
(145318, 114071, 'en', 'name', 'Center for Research in Agricultural Genomics'),
(145319, 114071, 'es', 'name', 'Centre de Recerca en Agrigenomica'),
(145320, 114072, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų£Ų­Ł…ŲÆ زبانة - ŲŗŁ„ŁŠŲ²Ų§Ł†'),
(145321, 114072, 'en', 'name', 'University Ahmed Zabana of Relizane'),
(145322, 114073, 'en', 'name', 'Osun State College of Education, Ila-Orangun'),
(145323, 114074, 'es', 'name', 'Asociación para la Conservación y el Desarrollo Sostenible Sallqa Perú'),
(145324, 114075, 'en', 'name', 'Lisbon Institute of Global Mental Health'),
(145325, 114076, 'en', 'name', 'CIRAD-Office of the Director General in charge of Resources and Organization'),
(145326, 114076, 'fr', 'name', 'CIRAD - Direction gƩnƩrale dƩlƩguƩe aux ressources et aux dispositifs'),
(145327, 114077, 'en', 'name', 'IRYO Sosei University'),
(145328, 114077, 'ja', 'name', 'åŒ»ē™‚å‰µē”Ÿå¤§å­¦'),
(145329, 114078, 'en', 'name', 'Dalian Science and Technology Bureau'),
(145330, 114078, 'zh', 'name', 'å¤§čæžåø‚ē§‘å­¦ęŠ€ęœÆå±€'),
(145331, 114079, 'en', 'name', 'Federal Polytechnic Orogun'),
(145332, 114080, 'en', 'name', 'ARC Centre of Excellence for All-sky Astrophysics'),
(145333, 114081, 'en', 'name', 'University of Sannio'),
(145334, 114081, 'it', 'name', 'UniversitĆ  degli Studi del Sannio'),
(145335, 114082, 'en', 'name', 'Shizuoka Prefectural Government'),
(145336, 114082, 'ja', 'name', 'é™å²”ēœŒåŗ'),
(145337, 114083, 'en', 'name', 'University of Lorraine'),
(145338, 114083, 'fr', 'name', 'UniversitƩ de Lorraine'),
(145339, 114084, 'de', 'name', 'Heinrich-Barth-Institut'),
(145340, 114085, 'en', 'name', 'Sahlgrenska University Hospital'),
(145341, 114085, 'sv', 'name', 'Sahlgrenska Universitetssjukhuset'),
(145342, 114086, 'de', 'name', 'Museum Burg Golling'),
(145343, 114087, 'pt', 'name', 'CĆ¢mara Municipal de Braga'),
(145344, 114088, 'en', 'name', 'The Fluoromatics Lab'),
(145345, 114089, 'en', 'name', 'Ibaraki Prefectural Environmental Radiation Monitoring Center'),
(145346, 114089, 'ja', 'name', 'čŒØåŸŽēœŒē’°å¢ƒę”¾å°„ē·šē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(145347, 114090, 'en', 'name', 'Southern Institute of Ecology'),
(145348, 114090, 'vi', 'name', 'Viện Sinh thĆ”i hį»c Miền Nam'),
(145349, 114091, 'cs', 'name', 'Ú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'),
(145350, 114091, 'en', 'name', 'Czech Academy of Sciences, Institute of Atmospheric Physics'),
(145351, 114092, 'en', 'name', 'Hasuda Hospital'),
(145352, 114092, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗé”•ę­£ä¼šč“®ē”°ē—…é™¢'),
(145353, 114093, 'en', 'name', 'Fukui Prefectural Sea Farming Center'),
(145354, 114093, 'ja', 'name', 'ē¦äŗ•ēœŒę ½åŸ¹ę¼ę„­ć‚»ćƒ³ć‚æćƒ¼'),
(145355, 114094, 'en', 'name', 'Naval Medical Center Portsmouth'),
(145356, 114095, 'en', 'name', 'Ministry of Urban Development'),
(145357, 114096, 'eu', 'name', 'LEA ARTIBAI Ikastetxea'),
(145358, 114097, 'en', 'name', 'Mokhuri Oriental Medicine Hospital'),
(145359, 114097, 'ko', 'name', 'ėŖØģ»¤ė¦¬ķ•œė°©ė³‘ģ›'),
(145360, 114098, 'de', 'name', 'Institut für Elektrische Energieübertragung und Hochspannungstechnik'),
(145361, 114098, 'en', 'name', 'Power Systems and High Voltage Laboratory'),
(145362, 114099, 'en', 'name', 'Simmaron Research'),
(145363, 114100, 'en', 'name', 'Japan Farriery Association'),
(145364, 114100, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č£…å‰Šč¹„å”ä¼š'),
(145365, 114101, 'pt', 'name', 'Parque Tecnológico de Ɠbidos'),
(145366, 114102, 'en', 'name', 'Hungarian Research Network'),
(145367, 114102, 'hu', 'name', 'Magyar KutatÔsi HÔlózat'),
(145368, 114103, 'en', 'name', 'Sydney Local Health District'),
(145369, 114104, 'fr', 'name', 'Maison des Sciences de l’Homme et de lā€˜Environnement Claude Nicolas Ledoux'),
(145370, 114105, 'en', 'name', 'National Research Nuclear University MEPhI'),
(145371, 114105, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŃŠ“ŠµŃ€Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ МИФИ'),
(145372, 114106, 'no_lang_code', 'name', 'Cofina SGPS (Portugal), Cofina SGPS, S.A.'),
(145373, 114107, 'en', 'name', 'Shimadzu Science Foundation'),
(145374, 114107, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå³¶ę“„ē§‘å­¦ęŠ€č”“ęŒÆčˆˆč²”å›£'),
(145375, 114108, 'en', 'name', 'Kyoto Min-iren Chuo Hospital'),
(145376, 114108, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗäŗ¬éƒ½äæå„ä¼šäŗ¬éƒ½ę°‘åŒ»é€£äø­å¤®ē—…é™¢'),
(145377, 114109, 'en', 'name', 'International Patient Organisation for Primary Immunodeficiencies'),
(145378, 114110, 'de', 'name', 'Forschungsinstitut für Mathematik'),
(145379, 114110, 'en', 'name', 'Institute for Mathematical Research'),
(145380, 114111, 'it', 'name', 'Agenzia Regionale per la Protezione dell''Ambiente della Basilicata'),
(145381, 114112, 'en', 'name', 'State University of Campinas (UNICAMP)'),
(145382, 114112, 'pt', 'name', 'Universidade Estadual de Campinas (UNICAMP)'),
(145383, 114113, 'en', 'name', 'Institute of Mathematics National Academy of Science of Tajikistan'),
(145384, 114113, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠœŠ°Ń‚ŠµŠ¼Š°Ń‚ŠøŠŗŠø ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š¾Š¹ АкаГемии ŠŠ°ŃƒŠŗ ТаГжикистана'),
(145385, 114114, 'de', 'name', 'Förderverein Institut für Medizintechnik Dresden'),
(145386, 114115, 'fr', 'name', 'IRCAV - Institut de recherche sur le cinƩma et l''audiovisuel, Institut de recherche sur le cinƩma et l''audiovisuel'),
(145387, 114116, 'pt', 'name', 'Sociedade de Ɖtica Ambiental'),
(145388, 114117, 'en', 'name', 'Gandaki Medical College'),
(145389, 114118, 'es', 'name', 'Universidad de Ciencias MƩdicas de Matanzas'),
(145390, 114119, 'en', 'name', 'Indiana University Fort Wayne'),
(145391, 114120, 'en', 'name', 'Fushun Seismological Bureau'),
(145392, 114120, 'zh', 'name', 'ęŠšé”ŗåø‚åœ°éœ‡å±€'),
(145393, 114121, 'en', 'name', 'China Science and Technology Publishing & Media'),
(145394, 114121, 'zh', 'name', 'äø­å›½ē§‘ęŠ€å‡ŗē‰ˆä¼ åŖ’č‚”ä»½ęœ‰é™å…¬åø'),
(145395, 114122, 'de', 'name', 'Hochschule für Gesundheit - HES-SO Valais-Wallis'),
(145396, 114122, 'en', 'name', 'School of Health Sciences - HES-SO Valais-Wallis'),
(145397, 114122, 'fr', 'name', 'Haute Ecole de SantƩ - HES-SO Valais-Wallis'),
(145398, 114123, 'de', 'name', 'Hochschule Bochum'),
(145399, 114123, 'en', 'name', 'Bochum University of Applied Sciences'),
(145400, 114124, 'fr', 'name', 'GloNeuro'),
(145401, 114125, 'no_lang_code', 'name', 'Beiras Business School, Escola de Negócios das Beiras, Escola de Negócios das Beiras (Portugal)'),
(145402, 114126, 'de', 'name', 'ERKNet'),
(145403, 114127, 'en', 'name', 'ERN EURO-NMD'),
(145404, 114128, 'en', 'name', 'Pierre Auger Observatory'),
(145405, 114129, 'en', 'name', 'United Lutheran Seminary'),
(145406, 114130, 'no_lang_code', 'name', 'Fresenius Kabi Pharma Portugal (Portugal)'),
(145407, 114131, 'en', 'name', 'Triangle. Action, discourses, economic and political thought'),
(145408, 114131, 'fr', 'name', 'Triangle : Action, Discours, PensƩe politique et Ʃconomique'),
(145409, 114132, 'en', 'name', 'Satellite Application Center for Ecology and Environment'),
(145410, 114132, 'zh', 'name', 'ē”Ÿę€ēŽÆå¢ƒéƒØå«ę˜ŸēŽÆå¢ƒåŗ”ē”Øäø­åæƒ'),
(145411, 114133, 'pt', 'name', 'Instituto de Estudos Medievais'),
(145412, 114134, 'pt', 'name', 'Escola de Pós-Graduação em Saúde e Gestão'),
(145413, 114135, 'en', 'name', 'Lifecare Hospital'),
(145414, 114136, 'en', 'name', 'Center for Media Research - Nepal'),
(145415, 114137, 'en', 'name', 'Włodzimierz Trzebiatowski Institute of Low Temperature and Structure Research'),
(145416, 114137, 'pl', 'name', 'Instytut Niskich Temperatur i Badań Strukturalnych im. Włodzimierza Trzebiatowskiego'),
(145417, 114138, 'pt', 'name', 'Fundação António Quadros Cultura e Pensamento'),
(145418, 114139, 'en', 'name', 'Group on Earth Observations'),
(145419, 114140, 'en', 'name', 'De La Salle University'),
(145420, 114141, 'en', 'name', 'Finnish Medical Association'),
(145421, 114141, 'fi', 'name', 'Suomen LƤƤkƤriliitto'),
(145422, 114141, 'sv', 'name', 'Finlands LƤkarfƶrbund'),
(145423, 114142, 'en', 'name', 'Cooperative Institute for Great Lakes Research'),
(145424, 114143, 'no_lang_code', 'name', 'Formasau Formação e Saúde (Portugal), Formasau Training and Health Limited'),
(145425, 114144, 'it', 'name', 'Agenzia Regionale per la Protezione dell''Ambiente della Sardegna'),
(145426, 114145, 'en', 'name', 'European Multidisciplinary Seafloor and water column Observatory'),
(145427, 114146, 'it', 'name', 'Agenzia Regionale per la Protezione ambientale Molise'),
(145428, 114147, 'en', 'name', 'Tatra National Park'),
(145429, 114147, 'pl', 'name', 'Tatrzański Park Narodowy'),
(145430, 114148, 'es', 'name', 'Sinergias Alianzas EstratƩgicas para la Salud y el Desarrollo Social'),
(145431, 114149, 'es', 'name', 'Universidad CientĆ­fica del Sur'),
(145432, 114150, 'no_lang_code', 'name', 'Mulher Avestruz ProduƧƵes e Eventos (Portugal), Ostrich Woman Productions and Events'),
(145433, 114151, 'en', 'name', 'Saint Gabriel College'),
(145434, 114152, 'cs', 'name', 'Český nĆ”rodnĆ­ uzel EvropskĆ© infrastruktury pro translačnĆ­ medicĆ­nu'),
(145435, 114152, 'en', 'name', 'Czech National Node to the European Infrastructure for Translational Medicine'),
(145436, 114153, 'en', 'name', 'Bishkek Academy of Finance and Economics'),
(145437, 114153, 'ky', 'name', 'Š‘ŠøŃˆŠŗŠµŠŗŃŠŗŠ°Ń Финансово – Š­ŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ°Ń ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(145438, 114154, 'ba', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š˜Š¾Š½Š¾ŃŃ„ŠµŃ€Ń‹'),
(145439, 114154, 'en', 'name', 'Ionosphere Institute'),
(145440, 114155, 'en', 'name', 'Chaoyang University of Technology'),
(145441, 114156, 'en', 'name', 'Zimbabwe Library Association (ZimLA)'),
(145442, 114157, 'en', 'name', 'Zimbabwe University Libraries Consortium'),
(145443, 114158, 'en', 'name', 'Nissho'),
(145444, 114158, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę¶ˆé˜²å”ä¼š'),
(145445, 114159, 'en', 'name', 'Center for Better Living'),
(145446, 114159, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ™ć‚æćƒ¼ćƒŖćƒ“ćƒ³ć‚°'),
(145447, 114160, 'pt', 'name', 'Sociedade das Ciências Médicas de Lisboa'),
(145448, 114161, 'en', 'name', 'Institute for High Energy Physics'),
(145449, 114162, 'en', 'name', 'Civil Aviation Authority of Singapore'),
(145450, 114163, 'fr', 'name', 'QuƩbec-OcƩan'),
(145451, 114164, 'en', 'name', 'Malcolm Grow Medical Clinic'),
(145452, 114165, 'en', 'name', 'Vancouver Foundation'),
(145453, 114166, 'en', 'name', 'International Space Centre'),
(145454, 114167, 'pt', 'name', 'Instituto de Comunicação da Nova'),
(145455, 114168, 'en', 'name', 'Space Training and Readiness Command'),
(145456, 114169, 'en', 'name', 'Nexcelom, Nexcelom (United States)'),
(145457, 114170, 'en', 'name', 'Sabratha University'),
(145458, 114171, 'en', 'name', 'National Examinations Council'),
(145459, 114172, 'fr', 'name', 'ESCA Ecole de Management'),
(145460, 114173, 'bn', 'name', 'ą¦«ą¦¾ą¦°ą§ą¦øą§ą¦Ÿ ą¦•ą§ą¦Æą¦¾ą¦Ŗą¦æą¦Ÿą¦¾ą¦² ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব বাংলাদেশ'),
(145461, 114173, 'en', 'name', 'First Capital University of Bangladesh'),
(145462, 114174, 'en', 'name', 'A P J Abdul Kalam Technological University'),
(145463, 114175, 'en', 'name', 'The Institute of Administrative Information Systems'),
(145464, 114175, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč”Œę”æęƒ…å ±ć‚·ć‚¹ćƒ†ćƒ ē ”ē©¶ę‰€'),
(145465, 114176, 'en', 'name', 'University of Applied Sciences in Wałcz'),
(145466, 114176, 'pl', 'name', 'ANS w Wałczu, Akademia Nauk Stosowanych w Wałcz'),
(145467, 114177, 'en', 'name', 'State Institution «Dobrov Institute for Scientific and Technological Potential and Science History Studies of the NAS of Ukraine»'),
(145468, 114177, 'uk', 'name', 'Державна ŃƒŃŃ‚Š°Š½Š¾Š²Š° Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š“Š¾ŃŠ»Ń–Š“Š¶ŠµŠ½ŃŒ науково-технічного ŠæŠ¾Ń‚ŠµŠ½Ń†Ń–Š°Š»Ńƒ та історії науки ім. Š“. М. Доброва ŠŠŠ України»'),
(145469, 114178, 'bn', 'name', 'পটনা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(145470, 114178, 'en', 'name', 'Patna University'),
(145471, 114178, 'hi', 'name', 'पटना ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(145472, 114178, 'pa', 'name', 'ਪਟਨਾ ąØÆą©‚ąØØą©€ąØµąØ°ąØøąØæąØŸą©€'),
(145473, 114179, 'pt', 'name', 'CĆ¢mara Municipal de Mafra'),
(145474, 114180, 'fr', 'name', 'Centre hospitalier universitaire d''OrlƩans'),
(145475, 114181, 'en', 'name', 'All India Institute of Medical Sciences Gorakhpur'),
(145476, 114182, 'fr', 'name', 'Centre Thucydide - Analyse et Recherche en Relations Internationales'),
(145477, 114183, 'en', 'name', 'Naga College Foundation, Inc.'),
(145478, 114184, 'en', 'name', 'Fire and Emergency New Zealand'),
(145479, 114185, 'en', 'name', 'Jean Monnet University'),
(145480, 114185, 'fr', 'name', 'UniversitƩ Jean Monnet'),
(145481, 114186, 'en', 'name', 'Foraminifera.eu Lab'),
(145482, 114187, 'pt', 'name', 'Centro de MatemÔtica Pólo da Universidade de TrÔs-os-Montes e Alto Douro'),
(145483, 114188, 'fr', 'name', 'Institut des Sciences de l''Information et de leurs Interactions'),
(145484, 114189, 'en', 'name', 'Melbourne Health'),
(145485, 114190, 'no_lang_code', 'name', 'UltraWise (Portugal)'),
(145486, 114191, 'pt', 'name', 'S. ENERGIA – AgĆŖncia Regional de Energia para os Concelhos do Barreiro, Moita e Montijo'),
(145487, 114192, 'en', 'name', 'Bezmialem Vakıf University'),
(145488, 114192, 'tr', 'name', 'Bezmiâlem Vakıf Üniversitesi'),
(145489, 114193, 'pt', 'name', 'Açores Direção Regional da Educação'),
(145490, 114194, 'de', 'name', 'GFZ Helmholtz-Zentrum für Geoforschung'),
(145491, 114194, 'en', 'name', 'GFZ Helmholtz Centre for Geosciences'),
(145492, 114195, 'de', 'name', 'UniversitƤtsklinikum Carl Gustav Carus Dresden'),
(145493, 114195, 'en', 'name', 'University Hospital Carl Gustav Carus'),
(145494, 114196, 'en', 'name', 'The Zoological Society of Japan'),
(145495, 114196, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©å­¦ä¼š'),
(145496, 114197, 'en', 'name', 'Konya City Hospital'),
(145497, 114197, 'tr', 'name', 'Konya Şehir Hastanesi'),
(145498, 114198, 'en', 'name', 'International Consortium on Landslides'),
(145499, 114198, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗå›½éš›ę–œę–œé¢ē½å®³ē ”ē©¶ę©Ÿę§‹'),
(145500, 114199, 'en', 'name', 'European Forest Institute'),
(145501, 114200, 'az', 'name', 'Sumqayıt Dƶvlət Universiteti'),
(145502, 114200, 'en', 'name', 'Sumgayit State University'),
(145503, 114200, 'ru', 'name', 'Š”ŃƒŠ¼Š³Š°ŠøŃ‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(145504, 114201, 'en', 'name', 'Catalan Institute for Water Research'),
(145505, 114201, 'es', 'name', 'Instituto Catalan de Investigacion del Agua'),
(145506, 114202, 'en', 'name', 'Westmead Institute for Medical Research'),
(145507, 114203, 'en', 'name', 'Bangabasi Morning College'),
(145508, 114204, 'es', 'name', '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'),
(145509, 114205, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Lyon'),
(145510, 114206, 'de', 'name', 'Salzburger Landeskliniken'),
(145511, 114207, 'en', 'name', 'Shibata Gakuen University Junior College'),
(145512, 114207, 'ja', 'name', 'ęŸ“ē”°å­¦åœ’å¤§å­¦ēŸ­ęœŸå¤§å­¦éƒØ'),
(145513, 114208, 'pt', 'name', 'CĆ¢mara Municipal de Matosinhos'),
(145514, 114209, 'pt', 'name', 'Biblioteca Victor de SĆ”'),
(145515, 114210, 'az', 'name', 'İqtisadi Elmi Tədqiqat İnstitutu'),
(145516, 114210, 'en', 'name', 'Economic Scientific Research Institute'),
(145517, 114211, 'en', 'name', 'National Surimi Manufacturers Association'),
(145518, 114211, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ć™ć‚Ščŗ«å”ä¼š'),
(145519, 114212, 'en', 'name', 'Japan Swimming Federation'),
(145520, 114212, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ę°“ę³³é€£ē›Ÿ'),
(145521, 114213, 'en', 'name', 'United States Pacific Fleet'),
(145522, 114214, 'en', 'name', 'Department of Water and Environmental Regulation'),
(145523, 114215, 'en', 'name', 'Foundation for Innovation in Cardiometabolism and Nutrition'),
(145524, 114215, 'fr', 'name', 'Fondation pour l’innovation en CadiomĆ©tabolisme et Nutrition'),
(145525, 114216, 'es', 'name', 'Consejería de Inclusión Social, Juventud, Familias e Igualdad'),
(145526, 114217, 'en', 'name', 'Center for Emergency Situations and Disaster Risk Reduction'),
(145527, 114218, 'en', 'name', 'Statistics Poland'),
(145528, 114219, 'en', 'name', 'Southern Institute of Water Resources Research'),
(145529, 114219, 'vi', 'name', 'Viện Khoa hį»c Thį»§y lợi miền Nam'),
(145530, 114220, 'en', 'name', 'Federal Polytechnic Ohodo'),
(145531, 114221, 'pt', 'name', 'Republica Portuguesa Direção-Geral do Livro dos Arquivos e das Bibliotecas'),
(145532, 114222, 'fr', 'name', 'Institut National des Sciences MathƩmatiques et de leurs Interactions'),
(145533, 114223, 'en', 'name', 'Ebara Medical Association'),
(145534, 114223, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗčåŽŸåŒ»åø«ä¼š'),
(145535, 114224, 'no_lang_code', 'name', 'Manitoba Portugal'),
(145536, 114225, 'bn', 'name', 'ą¦‡ą¦Øą§ą¦”ą¦æą¦Æą¦¼ą¦¾ą¦Ø ą¦…ą§ą¦Æą¦¾ą¦øą§‹ą¦øą¦æą¦Æą¦¼ą§‡ą¦¶ą¦Ø ফর ą¦¦ą§ą¦Æ ą¦•ą¦¾ą¦²ą¦Ÿą¦æą¦­ą§‡ą¦¶ą¦Ø অফ ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø'),
(145537, 114225, 'en', 'name', 'Indian Association for the Cultivation of Science'),
(145538, 114225, 'ml', 'name', 'ą“‡ą“Øąµą“¤ąµą“Æąµ» ą“…ą“øąµ‹ą“øą“æą“Æąµ‡ą“·ąµ» ą“«ąµ‹ąµ¼ ą“¦ą“æ ą“•ąµ¾ą“Ÿąµą“Ÿą“æą“µąµ‡ą“·ąµ» ą““ą“«ąµ ą“øą“Æąµ»ą“øąµ'),
(145539, 114225, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®µą®³ą®°ąÆą®šąÆą®šą®æą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(145540, 114226, 'en', 'name', 'Tunku Abdul Rahman University'),
(145541, 114226, 'ms', 'name', 'Universiti Tunku Abdul Rahman'),
(145542, 114226, 'ta', 'name', 'ą®¤ąÆą®™ąÆą®•ąÆ ą®…ą®ŖąÆą®¤ąÆą®²ąÆ ą®°ą®•ąÆą®®ą®¾ą®©ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(145543, 114227, 'en', 'name', 'Mochida Memorial Foundation For Medical And Pharmaceutical Research'),
(145544, 114227, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗęŒē”°čØ˜åæµåŒ»å­¦č–¬å­¦ęŒÆčˆˆč²”å›£'),
(145545, 114228, 'en', 'name', 'Denau Institute of Entrepreneurship and Pedagogy'),
(145546, 114228, 'ps', 'name', 'ŲÆŪŒŁ†ŁˆŁ ŲÆ Ł…ŲŖŲ“ŲØŲ«ŪŒŲŖ او تدریس Ų§Ł†Ų³Ł¼ŪŒŁ¼ŪŒŁˆŁ¼'),
(145547, 114228, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŠæŃ€ŠµŠ“ŠæŃ€ŠøŠ½ŠøŠ¼Š°Ń‚ŠµŠ»ŃŒŃŃ‚Š²Š° Šø пеГагогики имени Денова'),
(145548, 114228, 'uz', 'name', 'Denov tadbirkorlik va pedagogika instituti'),
(145549, 114229, 'en', 'name', 'Kuban State Technological University'),
(145550, 114229, 'ru', 'name', 'Кубанский Š³Š¾ŃŃƒŠ“арственный технологический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(145551, 114230, 'en', 'name', 'China Construction Sixth Engineering Bureau Corp., Ltd, China Construction Sixth Engineering Bureau Corp., Ltd (China)'),
(145552, 114230, 'zh', 'name', 'äø­å›½å»ŗē­‘ē¬¬å…­å·„ēØ‹å±€ęœ‰é™å…¬åø'),
(145553, 114231, 'en', 'name', 'The Japanese Association of Rural Medicine'),
(145554, 114231, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗč¾²ę‘åŒ»å­¦ä¼š'),
(145555, 114232, 'en', 'name', 'Reiwa Health Sciences University'),
(145556, 114232, 'ja', 'name', 'ä»¤å’Œå„åŗ·ē§‘å­¦å¤§å­¦'),
(145557, 114233, 'fr', 'name', 'Centre de Recherches Interdisciplinaires et Transculturelles'),
(145558, 114234, 'pt', 'name', 'Sociedade Portuguesa de Recursos GenƩticos Animais'),
(145559, 114235, 'cs', 'name', 'NÔrodní filmový archiv'),
(145560, 114235, 'en', 'name', 'National Film Archive'),
(145561, 114236, 'es', 'name', 'Instituto Nacional de Capacitación Profesional'),
(145562, 114237, 'en', 'name', 'Tottori Prefectural Education Center'),
(145563, 114237, 'ja', 'name', 'é³„å–ēœŒę•™č‚²ć‚»ćƒ³ć‚æćƒ¼'),
(145564, 114238, 'en', 'name', 'Nelson University'),
(145565, 114239, 'fr', 'name', 'UAR Data Terra'),
(145566, 114240, 'en', 'name', 'Assam Science and Technology University'),
(145567, 114241, 'es', 'name', 'TecnoCampus'),
(145568, 114242, 'fr', 'name', 'PHEN X - Physiopathologie, Environnement et Exposome'),
(145569, 114243, 'de', 'name', 'ETH Institut für Theoretische Studien'),
(145570, 114243, 'en', 'name', 'ETH Institute for Theoretical Studies'),
(145571, 114244, 'en', 'name', 'Oliva Creative Factory'),
(145572, 114245, 'en', 'name', 'HUN-REN Centre for Economic and Regional Studies'),
(145573, 114245, 'hu', 'name', 'HUN-REN KözgazdasÔg- és RegionÔlis TudomÔnyi Kutatóközpont'),
(145574, 114246, 'en', 'name', 'Army Infantry College of PLA'),
(145575, 114246, 'zh', 'name', '中国人民解放军陆军歄兵学院'),
(145576, 114247, 'en', 'name', 'Kanagawa International Foundation'),
(145577, 114247, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‹ćŖćŒć‚å›½éš›äŗ¤ęµč²”å›£'),
(145578, 114248, 'no_lang_code', 'name', 'Escrever Escrever (Portugal)'),
(145579, 114249, 'pt', 'name', 'Centro de MatemƔtica Computacional e EstocƔstica'),
(145580, 114250, 'en', 'name', 'ACTRIS ERIC - Aerosol, Cloud and Trace Gases Research Infrastructure'),
(145581, 114251, 'en', 'name', 'Appalachian State University'),
(145582, 114252, 'en', 'name', 'Temuco Catholic University'),
(145583, 114252, 'es', 'name', 'Universidad Católica de Temuco'),
(145584, 114253, 'es', 'name', 'Universidad Antropológica de Guadalajara'),
(145585, 114254, 'pt', 'name', 'Laboratório de Educação a Distância e E-learning'),
(145586, 114255, 'is', 'name', 'NƔtturustofa Suưurlands'),
(145587, 114256, 'en', 'name', 'European Clinical Research Infrastructure Network'),
(145588, 114257, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(145589, 114258, 'pt', 'name', 'Laboratório Hercules Herança Cultural Estudos e Salvaguarda'),
(145590, 114259, 'pt', 'name', 'Marinha Portuguesa'),
(145591, 114260, 'cy', 'name', 'Prifysgol Bryste'),
(145592, 114260, 'en', 'name', 'University of Bristol'),
(145593, 114261, 'en', 'name', 'Mediterranean Institute of Oceanography'),
(145594, 114261, 'fr', 'name', 'Institut MĆ©diterranĆ©en d’OcĆ©anologie'),
(145595, 114262, 'no_lang_code', 'name', 'Henkel (Germany)'),
(145596, 114263, 'es', 'name', 'Tecnológico de Estudios Superiores de Tianguistenco'),
(145597, 114264, 'pt', 'name', 'Unidade de Investigação Educação e Desenvolvimento'),
(145598, 114265, 'pt', 'name', 'Faculdade de Tecnologia da Zona Leste'),
(145599, 114266, 'en', 'name', 'Federal Medical-Biological Agency'),
(145600, 114266, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ меГико-биологическое агентство'),
(145601, 114267, 'en', 'name', 'Massey University'),
(145602, 114268, 'en', 'name', 'Mongolian National Institute for Educational Research'),
(145603, 114268, 'mn', 'name', 'Š‘ŠžŠ»Š¾Š²ŃŃ€Š¾Š»Ń‹Š½ Š”ŃƒŠ“Š°Š»Š³Š°Š°Š½Ń‹ Ņ®Š½Š“ŃŃŠ½ŠøŠ¹ Š„ŅÆŃ€ŃŃŠ»ŃŠ½'),
(145604, 114269, 'cy', 'name', 'Prifysgol Rhydychen'),
(145605, 114269, 'en', 'name', 'University of Oxford'),
(145606, 114270, 'en', 'name', 'Hokkaido Building Engineering Association'),
(145607, 114270, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗåŒ—ęµ·é“å»ŗēÆ‰ęŠ€č”“å”ä¼š'),
(145608, 114271, 'fr', 'name', 'Office pour les insectes et leur environnement (Opie)'),
(145609, 114272, 'en', 'name', 'LJ University'),
(145610, 114273, 'no_lang_code', 'name', 'Lusodoc Documentação Técnico-Científica (Portugal), Lusodoc Technical-Scientific Documentation'),
(145611, 114274, 'en', 'name', 'EGI'),
(145612, 114275, 'en', 'name', 'Kanagawa Nursing Association'),
(145613, 114275, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē„žå„ˆå·ēœŒēœ‹č­·å”ä¼š'),
(145614, 114276, 'pt', 'name', 'Centro de Formação Interação UBI Tecido Empresarial'),
(145615, 114277, 'de', 'name', 'Johannes Kepler UniversitƤt Linz'),
(145616, 114277, 'en', 'name', 'Johannes Kepler University of Linz'),
(145617, 114278, 'pt', 'name', 'Câmara Municipal de Portimão'),
(145618, 114279, 'es', 'name', 'Instituto de IngenierĆ­a'),
(145619, 114280, 'en', 'name', 'Griffith College Limerick'),
(145620, 114281, 'en', 'name', 'Airbus Defence and Space GmbH, Airbus Defence and Space GmbH (Germany)'),
(145621, 114282, 'pt', 'name', 'APHVIN GEHVID - Associação Portuguesa de História da Vinha e do Vinho'),
(145622, 114283, 'en', 'name', 'CREW - Center for Research on the English-speaking World, Center for Research on the English-speaking World'),
(145623, 114284, 'en', 'name', 'University of Education'),
(145624, 114284, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف Ų§ŪŒŲ¬ŁˆŚ©ŪŒŲ“Ł†'),
(145625, 114285, 'en', 'name', 'Japan Lighting Manufacturers Association'),
(145626, 114285, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē…§ę˜Žå·„ę„­ä¼š'),
(145627, 114286, 'en', 'name', 'Kitasato Research Center of Environmental Sciences'),
(145628, 114286, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåŒ—é‡Œē’°å¢ƒē§‘å­¦ć‚»ćƒ³ć‚æćƒ¼'),
(145629, 114287, 'en', 'name', 'ąŖ•ą«ąŖ°ąŖ¾ąŖ‚ąŖ¤ąŖæąŖ—ą«ąŖ°ą« ąŖ¶ą«ąŖÆąŖ¾ąŖ®ąŖœą«€ ąŖ•ą«ƒąŖ·ą«ąŖ£ąŖµąŖ°ą«ąŖ®ąŖ¾ ąŖ•ąŖšą«ąŖ› ąŖµąŖæąŖ¶ą«ąŖµąŖµąŖæąŖ¦ą«ąŖÆąŖ¾ąŖ²ąŖÆ'),
(145630, 114287, 'no_lang_code', 'name', 'Krantiguru Shyamji Krishna Verma Kachchh University'),
(145631, 114287, 'te', 'name', 'ą°•ą±ą°°ą°¾ą°‚ą°¤ą°æą°—ą±ą°°ą±‚ ą°¶ą±ą°Æą°¾ą°®ą±ą°œą°æ ą°•ą±ƒą°·ą±ą°£ ą°µą±†ą°°ą±ą°® ą°•ą°¾ą°šą±ą°šą± ą°µą°æą°¶ą±ą°µą°µą°æą°¦ą±ą°Æą°¾ą°²ą°Æą°‚'),
(145632, 114288, 'en', 'name', 'The Academy of Clinical Dentistry'),
(145633, 114288, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬é”Žå’¬åˆå­¦ä¼š'),
(145634, 114289, 'de', 'name', 'Institut für Polymere'),
(145635, 114289, 'en', 'name', 'Institute of Polymers'),
(145636, 114290, 'en', 'name', 'Emissions Reduction Alberta'),
(145637, 114291, 'en', 'name', 'National Institute of Education, Sri Lanka'),
(145638, 114292, 'en', 'name', 'MyFace Clinic'),
(145639, 114293, 'fr', 'name', 'Laboratoire Culture, Sport, SantƩ, SociƩtƩ'),
(145640, 114294, 'en', 'name', 'Naval Facilities Engineering Systems Command'),
(145641, 114295, 'cs', 'name', 'Akademie věd ČeskĆ© republiky'),
(145642, 114295, 'en', 'name', 'Czech Academy of Sciences'),
(145643, 114296, 'fr', 'name', 'Association des Annales de l''institut Fourier'),
(145644, 114297, 'en', 'name', 'Hanoi Oncology Hospital'),
(145645, 114297, 'vi', 'name', 'Bệnh Viện Ung Bướu HĆ  Nį»™i'),
(145646, 114298, 'en', 'name', 'Showa University of Music'),
(145647, 114298, 'ja', 'name', 'ę˜­å’ŒéŸ³ę„½å¤§å­¦'),
(145648, 114299, 'en', 'name', 'Department for Environment and Water'),
(145649, 114300, 'en', 'name', 'ARC Centre of Excellence for Children and Families over the Life Course'),
(145650, 114301, 'no_lang_code', 'name', 'ASCENZA, ASCENZA AGRO (Portugal), ASCENZA AGRO, S.A.'),
(145651, 114302, 'en', 'name', 'VectorB2B'),
(145652, 114303, 'de', 'name', 'Institut für Bewegungswissenschaften und Sport'),
(145653, 114303, 'en', 'name', 'Institute of Human Movement Sciences and Sport'),
(145654, 114304, 'de', 'name', 'Internationale Beschleuniger-Anlage zur Forschung mit Antiprotonen und Ionen'),
(145655, 114304, 'en', 'name', 'Facility for Antiproton and Ion Research'),
(145656, 114305, 'en', 'name', 'Wigwe University'),
(145657, 114306, 'fr', 'name', 'Laboratoire de psychologie: dynamiques relationnelles et processus identitaires'),
(145658, 114307, 'en', 'name', 'Northern Virginia Mental Health Institute'),
(145659, 114308, 'pt', 'name', 'Serviço de Documentação e Bibliotecas'),
(145660, 114309, 'pt', 'name', 'Republica Portuguesa Direção-Geral do Património Cultural'),
(145661, 114310, 'en', 'name', 'Cancer Research UK'),
(145662, 114311, 'el', 'name', 'Ī•Ī›Ī›Ī—ĪĪ™ĪšĪŸĪ£ Ī“Ī•Ī©Ī”Ī“Ī™ĪšĪŸĪ£ ĪŸĪ”Ī“Ī‘ĪĪ™Ī£ĪœĪŸĪ£ - Ī”Ī—ĪœĪ—Ī¤Ī”Ī‘'),
(145663, 114311, 'en', 'name', 'Hellenic Agricultural Organization - DIMITRA'),
(145664, 114312, 'ar', 'name', 'وزارة Ų§Ł„ŲØŁ„ŲÆŁŠŲ©'),
(145665, 114312, 'en', 'name', 'Ministry of Municipality'),
(145666, 114313, 'en', 'name', 'Coalition for Advancing Research Assessment'),
(145667, 114314, 'pt', 'name', 'Fórum Oceano Associação da Economia do Mar'),
(145668, 114315, 'pt', 'name', 'Unidade Local de SaĆŗde do Arco Ribeirinho'),
(145669, 114316, 'en', 'name', 'Inuvialuit Regional Corporation'),
(145670, 114317, 'en', 'name', 'Naval Air Systems Command'),
(145671, 114318, 'en', 'name', 'Bayelsa Medical University'),
(145672, 114319, 'en', 'name', 'Adler'),
(145673, 114320, 'en', 'name', 'International Association of Traffic and Safety Sciences'),
(145674, 114320, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå›½éš›äŗ¤é€šå®‰å…Øå­¦ä¼š'),
(145675, 114321, 'pt', 'name', 'Sociedade Portuguesa de Psicoterapias Construtivistas'),
(145676, 114322, 'es', 'name', 'Bioef - Fundación Vasca de Innovación e Investigación Sanitarias, Fundación Vasca de Innovación e Investigación Sanitarias'),
(145677, 114323, 'de', 'name', 'Zentrum Weiterbildung'),
(145678, 114323, 'en', 'name', 'Centre of Further Education'),
(145679, 114324, 'ar', 'name', 'Ų§Ł„ŁƒŁ„ŁŠŲ© Ų§Ł„Ų°ŁƒŁŠŲ© Ų§Ł„Ų¬Ų§Ł…Ų¹ŁŠŲ© Ł„Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų­ŲÆŁŠŲ«'),
(145680, 114324, 'en', 'name', 'Smart University College for Modern Education'),
(145681, 114325, 'en', 'name', 'Maeda Ippoen Foundation'),
(145682, 114325, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå‰ē”°äø€ę­©åœ’č²”å›£'),
(145683, 114326, 'pt', 'name', 'Câmara Municipal de São João da Madeira'),
(145684, 114327, 'es', 'name', 'Fundación para el Desarrollo de las Ciencias Físicas, MatemÔticas y Naturales'),
(145685, 114328, 'no_lang_code', 'name', 'L''Oreal (United States)'),
(145686, 114329, 'de', 'name', 'UniversitƤt Innsbruck'),
(145687, 114329, 'en', 'name', 'University of Innsbruck'),
(145688, 114329, 'hr', 'name', 'SveučiliŔte u Innsbrucku'),
(145689, 114329, 'sl', 'name', 'Univerza v Innsbrucku'),
(145690, 114330, 'en', 'name', 'State Key Laboratory of Metal Corrosion and Protection'),
(145691, 114330, 'zh', 'name', 'é‡‘å±žč…čš€äøŽé˜²ęŠ¤å›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(145692, 114331, 'fr', 'name', 'Institut Polytechnique de Bordeaux'),
(145693, 114332, 'en', 'name', 'Wakayama Prefectural Kokoro Medical Center'),
(145694, 114332, 'ja', 'name', 'å’Œę­Œå±±ēœŒē«‹ć“ć“ć‚ć®åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(145695, 114333, 'no_lang_code', 'name', 'SHL Portugal, SHL Portugal (Portugal)'),
(145696, 114334, 'en', 'name', 'Japan Family Care Association'),
(145697, 114334, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å®¶åŗ­ē”Ÿę“»ē ”ē©¶å”ä¼š'),
(145698, 114335, 'en', 'name', 'Bihar National College'),
(145699, 114336, 'en', 'name', 'Research Institute for Environmental Development'),
(145700, 114336, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē’°å¢ƒę–‡åŒ–ē ”ē©¶ę‰€'),
(145701, 114337, 'en', 'name', 'United States Naval Special Warfare Command'),
(145702, 114338, 'en', 'name', 'IUCN Commission on Education and Communication'),
(145703, 114339, 'en', 'name', 'Instruct-ERIC'),
(145704, 114340, 'no_lang_code', 'name', 'SAGE Publishing (United States)'),
(145705, 114341, 'en', 'name', 'CodeDay'),
(145706, 114342, 'en', 'name', 'Łukasiewicz Research Network - Institute for Engineering of Polymer Materials and Dyes'),
(145707, 114342, 'pl', 'name', 'Sieć Badawcza Łukasiewicz –Instytut Inżynierii Materiałów Polimerowych i Barwników'),
(145708, 114343, 'en', 'name', 'Avient Colorants Singapore Pte. Ltd., Avient Colorants Singapore Pte. Ltd. (Singapore)'),
(145709, 114344, 'en', 'name', 'Higher School of Biological Sciences of Oran'),
(145710, 114344, 'fr', 'name', 'Ecole SupĆ©rieure en Sciences Biologiques d’Oran'),
(145711, 114345, 'de', 'name', 'Institut für Mikrobiologie'),
(145712, 114345, 'en', 'name', 'Institute of Microbiology'),
(145713, 114346, 'en', 'name', 'The University of Nagano'),
(145714, 114346, 'ja', 'name', 'é•·é‡ŽēœŒē«‹å¤§å­¦'),
(145715, 114347, 'en', 'name', 'Strategic Systems Programs'),
(145716, 114348, 'fr', 'name', 'Formation, Innovation, Recherche, Services et Transfert en Temps-FrƩquence'),
(145717, 114349, 'fr', 'name', 'Ministère de l''Enseignement Supérieur et de la Recherche'),
(145718, 114350, 'en', 'name', 'KEC Electronic Industry Development Center'),
(145719, 114350, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗKECé–¢č„æé›»å­å·„ę„­ęŒÆčˆˆć‚»ćƒ³ć‚æćƒ¼'),
(145720, 114351, 'en', 'name', 'Scientific Certification Services, Inc., Scientific Certification Services, Inc. (United States)'),
(145721, 114352, 'pt', 'name', 'CĆ¢mara Municipal de Ɖvora'),
(145722, 114353, 'en', 'name', 'Center for Economic Research on Governance, Inequality and Conflict'),
(145723, 114354, 'no_lang_code', 'name', 'RELX Group (United Kingdom)'),
(145724, 114355, 'en', 'name', 'K. Matsushita Foundation'),
(145725, 114356, 'de', 'name', 'Leibniz-Institut für Naturstoff-Forschung und Infektionsbiologie e. V. - Hans-Knöll-Institut (HKI)'),
(145726, 114356, 'en', 'name', 'Leibniz Institute for Natural Product Research and Infection Biology - Hans Knƶll Institute (HKI)'),
(145727, 114357, 'no_lang_code', 'name', 'Syngenta (Canada)'),
(145728, 114358, 'no_lang_code', 'name', 'Terraprima, Terraprima (Portugal)'),
(145729, 114359, 'en', 'name', 'University of Maryland School of Medicine'),
(145730, 114360, 'en', 'name', 'Japanese Society of Nutrition and Food Science'),
(145731, 114360, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę „é¤Šćƒ»é£Ÿē³§å­¦ä¼š'),
(145732, 114361, 'no_lang_code', 'name', 'EU-OPENSCREEN'),
(145733, 114362, 'en', 'name', 'Nalla Narasimha Reddy Education Society''s Group of Institutions'),
(145734, 114363, 'pt', 'name', 'Enercoutim - Associação Empresarial de Energia Solar de Alcoutim, Enercoutim'),
(145735, 114364, 'no_lang_code', 'name', 'Lundbeck (Denmark)'),
(145736, 114365, 'pt', 'name', 'Escolas do Turismo de Portugal'),
(145737, 114366, 'de', 'name', 'Institut für Technologie in der Architektur ITA'),
(145738, 114366, 'en', 'name', 'Institute for Technology in Architecture'),
(145739, 114367, 'en', 'name', 'University of North Carolina System'),
(145740, 114367, 'fr', 'name', 'UniversitƩ de caroline du nord'),
(145741, 114368, 'en', 'name', 'United States Strategic Command'),
(145742, 114369, 'en', 'name', 'Jan Długosz University'),
(145743, 114369, 'pl', 'name', 'Uniwersytet Jana Długosza wCzęstochowie'),
(145744, 114370, 'en', 'name', 'Ministry of Infrastructure and the Environment'),
(145745, 114370, 'nl', 'name', 'Ministerie van Infrastructuur en Milieu'),
(145746, 114371, 'en', 'name', 'Fraunhofer Center for Smart Agriculture and Water Management – AWAM'),
(145747, 114372, 'cs', 'name', 'ČeskÔ literÔrní bibliografie'),
(145748, 114372, 'en', 'name', 'Czech Literary Bibliography'),
(145749, 114373, 'en', 'name', 'U.S. Army Aviation and Missile Command'),
(145750, 114374, 'pt', 'name', 'Unidade Local de Saúde de Santo António EPE'),
(145751, 114375, 'en', 'name', 'Embry-Riddle Aeronautical University Worldwide & Online'),
(145752, 114376, 'en', 'name', 'Institute for Areal Studies, Foundation'),
(145753, 114376, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗåœ°åŸŸé–‹ē™ŗē ”ē©¶ę‰€'),
(145754, 114377, 'es', 'name', 'Instituto Superior Tecnológico Portoviejo con condición Superior Universitario "ITSUP"'),
(145755, 114378, 'de', 'name', 'Institut für Biotechnologie und Wirkstoff-Forschung'),
(145756, 114378, 'en', 'name', 'Institute of Biotechnology and Drug Research'),
(145757, 114379, 'en', 'name', 'The Align Foundation'),
(145758, 114380, 'de', 'name', 'Institut für Automatisierungstechnik'),
(145759, 114380, 'en', 'name', 'Institute of Automation'),
(145760, 114381, 'en', 'name', 'Nunavut Wildlife Management Board'),
(145761, 114382, 'en', 'name', 'Zimbabwe National Defence University'),
(145762, 114383, 'en', 'name', 'Maritime Disaster Prevention Center'),
(145763, 114383, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗęµ·äøŠē½å®³é˜²ę­¢ć‚»ćƒ³ć‚æćƒ¼'),
(145764, 114384, 'en', 'name', 'The Nature Center at Steele Creek Park'),
(145765, 114385, 'en', 'name', 'United States Indo-Pacific Command'),
(145766, 114386, 'en', 'name', 'National Institute of Technology Patna'),
(145767, 114386, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø पटना'),
(145768, 114387, 'en', 'name', 'Japanese Society of Animal Science'),
(145769, 114387, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē•œē”£å­¦ä¼š'),
(145770, 114388, 'en', 'name', 'Equator University of Science and Technology'),
(145771, 114389, 'en', 'name', 'General Hanamaki Hospital'),
(145772, 114389, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē·åˆčŠ±å·»ē—…é™¢'),
(145773, 114390, 'en', 'name', 'Kanagawa Physical Therapy Association'),
(145774, 114390, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗē„žå„ˆå·ēœŒē†å­¦ē™‚ę³•å£«ä¼š'),
(145775, 114391, 'en', 'name', 'Academic Computer Centre Cyfronet AGH'),
(145776, 114391, 'pl', 'name', 'Akademickie Centrum Komputerowe Cyfronet AGH'),
(145777, 114392, 'en', 'name', 'Mehran University of Engineering and Technology'),
(145778, 114392, 'ur', 'name', 'مھراڻ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ آف Ų§Ł†Ų¬Ł†ŁŠŲ¦Ų±Ł†ŚÆ Ų§ŁŠŁ†ŚŠ Ł½ŁŠŚŖŁ†Ų§Ł„Ų§Ų¬ŁŠ'),
(145779, 114393, 'es', 'name', 'Instituto para la Conservación de Especies Amenazadas'),
(145780, 114394, 'pt', 'name', 'Ordem dos Enfermeiros'),
(145781, 114395, 'cs', 'name', 'Ú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'),
(145782, 114395, 'en', 'name', 'Czech Academy of Sciences, Institute of Experimental Botany'),
(145783, 114396, 'en', 'name', 'ENCell Corp., ENCell Corp. (Korea)'),
(145784, 114397, 'et', 'name', 'MPhysX OÜ'),
(145785, 114398, 'en', 'name', 'Kumamoto Chuo Hospital'),
(145786, 114398, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šē†Šęœ¬äø­å¤®ē—…é™¢'),
(145787, 114399, 'no_lang_code', 'name', 'OMNI Aviation and Technology, Omni – Aviação e Tecnologia, Omni – Aviação e Tecnologia (Portugal)'),
(145788, 114400, 'en', 'name', 'Free Economic Society of Russia'),
(145789, 114400, 'ru', 'name', 'Š’Š¾Š»ŃŒŠ½Š¾Šµ ŃŠŗŠ¾Š½Š¾Š¼ŠøŃ‡ŠµŃŠŗŠ¾Šµ общество России'),
(145790, 114401, 'en', 'name', 'Wakayama Prefectural Fruit Tree Experiment Station'),
(145791, 114401, 'ja', 'name', 'å’Œę­Œå±±ēœŒęžœęØ¹č©¦éØ“å “'),
(145792, 114402, 'en', 'name', 'Japan Pest Control Association'),
(145793, 114402, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ćƒšć‚¹ćƒˆć‚³ćƒ³ćƒˆćƒ­ćƒ¼ćƒ«å”ä¼š'),
(145794, 114403, 'en', 'name', 'Michigan Space Grant Consortium'),
(145795, 114404, 'en', 'name', 'PT OPENSCREEN National Infrastructure for Chemical Biology and Genetics'),
(145796, 114405, 'no_lang_code', 'name', 'Biogen (Portugal)'),
(145797, 114406, 'en', 'name', 'Seismological Facility for the Advancement of Geoscience'),
(145798, 114407, 'no_lang_code', 'name', 'Biotronik (Portugal)'),
(145799, 114408, 'de', 'name', 'Institut für Geochemie und Petrologie'),
(145800, 114408, 'en', 'name', 'Institute of Geochemistry and Petrology'),
(145801, 114409, 'pt', 'name', 'Legale Educacional'),
(145802, 114410, 'en', 'name', 'Northland Regional Council'),
(145803, 114410, 'mi', 'name', 'Te Kaunihera Ć  rohe o Te Taitokerau'),
(145804, 114411, 'no_lang_code', 'name', 'Plansee (Germany)'),
(145805, 114412, 'en', 'name', 'Tottori Prefectural Animal Husbandry Experiment Station'),
(145806, 114412, 'ja', 'name', 'é³„å–ēœŒē•œē”£č©¦éØ“å “'),
(145807, 114413, 'en', 'name', 'Society for Agricultural Education Research Development Abroad'),
(145808, 114413, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗęµ·å¤–č¾²ę„­ę•™č‚²ćƒ»ē ”ē©¶é–‹ē™ŗå”ä¼š'),
(145809, 114414, 'en', 'name', 'CSIRO Land and Water'),
(145810, 114415, 'en', 'name', 'Social Insurance Institution'),
(145811, 114416, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure de MĆ©canique et des Microtechniques'),
(145812, 114417, 'en', 'name', 'Japan Dairy Association'),
(145813, 114417, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗJćƒŸćƒ«ć‚Æ'),
(145814, 114418, 'pt', 'name', 'CĆ¢mara Municipal de Tavira'),
(145815, 114419, 'en', 'name', 'Japanese Association of Zoos and Aquariums'),
(145816, 114419, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬å‹•ē‰©åœ’ę°“ę—é¤Øå”ä¼š'),
(145817, 114420, 'pt', 'name', 'Centro de MatemƔtica e AplicaƧƵes'),
(145818, 114421, 'pt', 'name', 'Laboratório para a Ciência da Computação e InformÔtica'),
(145819, 114422, 'pt', 'name', 'Centro de Investigação de MatemÔtica e Aplicações'),
(145820, 114423, 'pt', 'name', 'Centro de MatemƔtica'),
(145821, 114424, 'en', 'name', 'Henan Science and Technology Department'),
(145822, 114424, 'zh', 'name', 'ę²³å—ēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(145823, 114425, 'no_lang_code', 'name', 'AromƔticas Vivas (Portugal)'),
(145824, 114426, 'en', 'name', 'ARC Centre of Excellence for Plant Success in Nature and Agriculture'),
(145825, 114427, 'pt', 'name', 'Sociedade Portuguesa de Défice de Atenção'),
(145826, 114428, 'pt', 'name', 'Sociedade Portuguesa de Imunologia'),
(145827, 114429, 'en', 'name', 'United States Army Futures Command'),
(145828, 114430, 'en', 'name', 'Japan Forest Recreation Association'),
(145829, 114430, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½ę£®ęž—ćƒ¬ć‚ÆćƒŖć‚Øćƒ¼ć‚·ćƒ§ćƒ³å”ä¼š'),
(145830, 114431, 'pt', 'name', 'Laboratório de Sistemas InformÔticos de Grande Escala'),
(145831, 114432, 'en', 'name', 'Florida Native Plant Society'),
(145832, 114433, 'en', 'name', 'Autonomous a2z Corporation, Autonomous a2z Corporation (South Korea)'),
(145833, 114434, 'en', 'name', 'Phasecraft Inc., Phasecraft Inc. (United States)'),
(145834, 114435, 'en', 'name', 'Portuguese Research Infrastructure of Scientific Collections'),
(145835, 114436, 'fr', 'name', 'Laboratoire de bioimagerie et pathologies'),
(145836, 114437, 'en', 'name', 'University Center of Illizi'),
(145837, 114438, 'en', 'name', 'Qaujigiartiit Health Research Centre'),
(145838, 114439, 'en', 'name', 'United States Naval Forces Central Command'),
(145839, 114440, 'en', 'name', 'The Organization for Industrial, Spiritual and Cultural Advancement-International'),
(145840, 114440, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗć‚Ŗć‚¤ć‚¹ć‚«'),
(145841, 114441, 'en', 'name', 'National Institute of Advanced Technologies of Brittany'),
(145842, 114441, 'fr', 'name', 'Ɖcole nationale supĆ©rieure de techniques avancĆ©es Bretagne'),
(145843, 114442, 'en', 'name', 'National Superior School of Information Science and Libraries'),
(145844, 114442, 'fr', 'name', 'Ɖcole nationale supĆ©rieure des sciences de l''information et des bibliothĆØques'),
(145845, 114443, 'en', 'name', 'Sona College of Technology'),
(145846, 114444, 'en', 'name', 'Japan Association for Clinical Engineers'),
(145847, 114444, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č‡ØåŗŠå·„å­¦ęŠ€å£«ä¼š'),
(145848, 114445, 'en', 'name', 'International Center for Infectiology Research'),
(145849, 114445, 'fr', 'name', 'Centre International de Recherche en Infectiologie'),
(145850, 114446, 'en', 'name', 'Japan Housing & Wood Technology Center'),
(145851, 114446, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ä½å®…ćƒ»ęœØęęŠ€č”“ć‚»ćƒ³ć‚æćƒ¼');
INSERT INTO `ror_settings` VALUES
(145852, 114447, 'en', 'name', 'United States Fleet Cyber Command'),
(145853, 114448, 'no_lang_code', 'name', 'L''OrƩal (India)'),
(145854, 114449, 'en', 'name', 'Hokkaido Club'),
(145855, 114449, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗåŒ—ęµ·é“å€¶ę„½éƒØ'),
(145856, 114450, 'es', 'name', 'Universidad Nacional de Chimborazo'),
(145857, 114451, 'de', 'name', 'Institut für Bildverarbeitung'),
(145858, 114451, 'en', 'name', 'Computer Vision Laboratory'),
(145859, 114452, 'en', 'name', 'Lexicons, Texts, Speeches, Dictionaries'),
(145860, 114452, 'fr', 'name', 'Lexiques, Textes, Discours, Dictionnaires'),
(145861, 114453, 'en', 'name', 'Broad Institute'),
(145862, 114453, 'es', 'name', 'El Instituto Broad'),
(145863, 114454, 'de', 'name', 'ERN-RND'),
(145864, 114455, 'de', 'name', 'ETH Zürich'),
(145865, 114455, 'en', 'name', 'ETH Zurich'),
(145866, 114455, 'it', 'name', 'ETH di Zurigo'),
(145867, 114456, 'bn', 'name', 'বলাগঔ় ą¦¬ą¦æą¦œą¦Æą¦¼ą¦•ą§ƒą¦·ą§ą¦£ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(145868, 114456, 'hi', 'name', 'Balagarh Bijoy Krishna Mahavidyalaya'),
(145869, 114457, 'en', 'name', 'SUNY Cortland'),
(145870, 114458, 'en', 'name', 'National Institute of Statistics'),
(145871, 114458, 'it', 'name', 'Istituto Nazionale di Statistica'),
(145872, 114459, 'cs', 'name', 'EnergetickĆ© využitĆ­ odpadÅÆ a čiÅ”těnĆ­ plynÅÆ'),
(145873, 114459, 'en', 'name', 'Energy Waste Recovery and Gas Treatment'),
(145874, 114460, 'en', 'name', 'Federal Housing Finance Agency'),
(145875, 114461, 'en', 'name', 'Presence Foundation'),
(145876, 114461, 'nl', 'name', 'Stichting Presentie'),
(145877, 114462, 'fr', 'name', 'Langues, textes, arts et cultures du monde anglophone, PRISMES - Langues, Textes, Arts et Cultures du Monde Anglophone'),
(145878, 114463, 'no_lang_code', 'name', 'Ericsson (Sweden)'),
(145879, 114464, 'en', 'name', 'Australian Centre for Sustainable Development Research & Innovation'),
(145880, 114465, 'pt', 'name', 'PORTUCALEA - Associação Florestal do Grande Porto'),
(145881, 114466, 'en', 'name', 'Association of Food Technology, Turkey'),
(145882, 114466, 'tr', 'name', 'Gıda Teknolojisi Derneği'),
(145883, 114467, 'en', 'name', 'KdG University of Applied Sciences and Arts'),
(145884, 114467, 'nl', 'name', 'Karel de Grote Hogeschool'),
(145885, 114468, 'en', 'name', 'Srusti Academy of Management'),
(145886, 114469, 'en', 'name', 'IBADAT International University Islamabad'),
(145887, 114470, 'en', 'name', 'G.B. Pant Institute of Himalayan Environment and Development'),
(145888, 114471, 'no_lang_code', 'name', 'Nestle (Portugal)'),
(145889, 114472, 'en', 'name', 'Indian National Academy of Engineering'),
(145890, 114473, 'en', 'name', 'U-M Rogel Cancer Center'),
(145891, 114474, 'pt', 'name', 'NĆŗcleo Empresarial da RegiĆ£o de Ɖvora'),
(145892, 114475, 'en', 'name', 'Physics Research Initiatives'),
(145893, 114476, 'en', 'name', 'Seiyo Municipal Hospital'),
(145894, 114476, 'ja', 'name', 'č„æäŗˆåø‚ē«‹č„æäŗˆåø‚ę°‘ē—…é™¢'),
(145895, 114477, 'en', 'name', 'Xindu District People''s Hospital of Chengdu'),
(145896, 114477, 'zh', 'name', 'ęˆéƒ½åø‚ę–°éƒ½åŒŗäŗŗę°‘åŒ»é™¢'),
(145897, 114478, 'en', 'name', 'Royal Metropolitan University'),
(145898, 114479, 'no_lang_code', 'name', 'Partex Oil and Gas Holdings Corp, Partex Oil and Gas Holdings Corp (Portugal)'),
(145899, 114480, 'en', 'name', 'Japan Institute of Electronics Packaging'),
(145900, 114480, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚Øćƒ¬ć‚Æćƒˆćƒ­ćƒ‹ć‚Æć‚¹å®Ÿč£…å­¦ä¼š'),
(145901, 114481, 'en', 'name', 'UmeƄ Marine Sciences Centre'),
(145902, 114482, 'pt', 'name', 'Faculdades Nova EsperanƧa'),
(145903, 114483, 'en', 'name', 'Jean Moulin University Lyon 3'),
(145904, 114483, 'fr', 'name', 'UniversitƩ Jean Moulin Lyon III'),
(145905, 114484, 'en', 'name', 'Environmental Science Research Center Of Yamagata Prefecture'),
(145906, 114484, 'ja', 'name', 'å±±å½¢ēœŒē’°å¢ƒē§‘å­¦ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(145907, 114485, 'pt', 'name', 'Secretaria Regional do Turismo e Cultura'),
(145908, 114486, 'en', 'name', 'Women Fund Tanzania Trust'),
(145909, 114487, 'en', 'name', 'Yokohama City Industrial Technical Support Center'),
(145910, 114487, 'ja', 'name', 'ęØŖęµœåø‚å·„ę„­ęŠ€č”“ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(145911, 114488, 'en', 'name', 'Advanced Centre for Treatment, Research and Education in Cancer'),
(145912, 114489, 'ar', 'name', 'معهد ال؄دارة العامة'),
(145913, 114489, 'en', 'name', 'Institute of Public Administration'),
(145914, 114490, 'pt', 'name', 'Escola Artística do Conservatório de Música Calouste Gulbenkian de Braga'),
(145915, 114491, 'en', 'name', 'CSIRO Environment'),
(145916, 114492, 'id', 'name', 'Universitas Islam Negeri Sultan Aji Muhammad Idris Samarinda'),
(145917, 114493, 'en', 'name', 'University of Technology of Belfort-MontbƩliard'),
(145918, 114493, 'fr', 'name', 'UniversitƩ de technologie de belfort-montbƩliard'),
(145919, 114494, 'en', 'name', 'Naval Medical Research Unit EURAFCENT'),
(145920, 114495, 'en', 'name', 'National Taiwan University'),
(145921, 114496, 'de', 'name', 'PƤdagogische Hochschule Vorarlberg'),
(145922, 114497, 'fr', 'name', 'BruyĆØre'),
(145923, 114498, 'de', 'name', 'Institut für Atmosphäre und Klima'),
(145924, 114498, 'en', 'name', 'Institute for Atmospheric and Climate Science'),
(145925, 114499, 'en', 'name', 'National Blood Authority'),
(145926, 114500, 'no_lang_code', 'name', 'VilaWork Barcelos Business Center, VilaWork Barcelos Business Center (Portugal)'),
(145927, 114501, 'en', 'name', 'Virginia Department of Behavioral Health and Developmental Services'),
(145928, 114502, 'pt', 'name', 'Centro de Investigação Paula Frassinetti'),
(145929, 114503, 'pt', 'name', 'Instituto de Investigação em Arte Design e Sociedade'),
(145930, 114504, 'en', 'name', 'Kanazawa Seiryo University'),
(145931, 114504, 'ja', 'name', 'é‡‘ę²¢ę˜ŸēØœå¤§å­¦'),
(145932, 114505, 'en', 'name', 'Amsterdam Cardiovascular Sciences'),
(145933, 114506, 'no_lang_code', 'name', 'Isurgical3D (Portugal)'),
(145934, 114507, 'en', 'name', 'Bank of Canada'),
(145935, 114507, 'fr', 'name', 'Banque du Canada'),
(145936, 114508, 'en', 'name', 'Ukrainian Medical Stomatological Academy'),
(145937, 114508, 'ru', 'name', 'Š£ŠŗŃ€Š°ŠøŠ½ŃŠŗŠ°Ń Š¼ŠµŠ“ŠøŃ†ŠøŠ½ŃŠŗŠ°Ń ŃŃ‚Š¾Š¼Š°Ń‚Š¾Š»Š¾Š³ŠøŃ‡ŠµŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ'),
(145938, 114508, 'uk', 'name', 'Š£ŠŗŃ€Š°Ń—Š½ŃŃŒŠŗŠ° меГична стоматологічна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(145939, 114509, 'en', 'name', 'Association of New Urban Housing Technology'),
(145940, 114509, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę–°éƒ½åø‚ćƒć‚¦ć‚øćƒ³ć‚°å”ä¼š'),
(145941, 114510, 'en', 'name', 'Federal State Budgetary Institution Russian Center of Forensic Medical Expertise of the Ministry of Health of Russian Federation'),
(145942, 114510, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Российский центр суГебно-меГицинской ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации'),
(145943, 114511, 'de', 'name', 'St. Josef-Stift Sendenhorst'),
(145944, 114512, 'pt', 'name', 'Direção Regional de Agricultura e Pescas do Centro'),
(145945, 114513, 'en', 'name', 'Institute for Protein Physics'),
(145946, 114514, 'en', 'name', 'University of Technology and Applied Sciences'),
(145947, 114515, 'en', 'name', 'The Japan Society for Oriental Medicine'),
(145948, 114515, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ę±ę“‹åŒ»å­¦ä¼š'),
(145949, 114516, 'en', 'name', 'Prague Asterix Laser System'),
(145950, 114517, 'cy', 'name', 'Prifysgol Cranfield'),
(145951, 114517, 'en', 'name', 'Cranfield University'),
(145952, 114518, 'en', 'name', 'SIA StarBridge, SIA StarBridge (Latvia)'),
(145953, 114519, 'en', 'name', 'St Joseph''s University, Bengaluru, India'),
(145954, 114520, 'en', 'name', 'European Innovation Council'),
(145955, 114521, 'en', 'name', 'School of Management and Banking in Cracow'),
(145956, 114521, 'pl', 'name', 'Wyższa Szkoła Zarządzania i Bankowości w Krakowie'),
(145957, 114522, 'es', 'name', 'Escuela Nacional de Lenguas, Lingüística y Traducción'),
(145958, 114523, 'en', 'name', 'APEF'),
(145959, 114523, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗćƒ•ćƒ©ćƒ³ć‚¹čŖžę•™č‚²ęŒÆčˆˆå”ä¼š'),
(145960, 114524, 'en', 'name', 'Civil Engineering Center Tokyo Metropolitan Government'),
(145961, 114524, 'ja', 'name', 'ę±äŗ¬éƒ½åœŸęœØęŠ€č”“ę”Æę“ćƒ»äŗŗęč‚²ęˆć‚»ćƒ³ć‚æćƒ¼'),
(145962, 114525, 'en', 'name', 'International Business University'),
(145963, 114526, 'no_lang_code', 'name', 'Bondalti (Portugal)'),
(145964, 114527, 'en', 'name', 'Institute of Polar Sciences'),
(145965, 114527, 'it', 'name', 'Istituto di Scienze Polari'),
(145966, 114528, 'en', 'name', 'Euro-BioImaging ERIC'),
(145967, 114529, 'en', 'name', 'Japan Gas Association'),
(145968, 114529, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ć‚¬ć‚¹å”ä¼š'),
(145969, 114530, 'en', 'name', 'Ethiopian Roads Administration'),
(145970, 114531, 'en', 'name', 'Institute for Studies on the Mediterranean (CNR - ISMed)'),
(145971, 114531, 'it', 'name', 'Istituto di Studi sul Mediterraneo (CNR - ISMed)'),
(145972, 114532, 'en', 'name', 'SOWA Hospital'),
(145973, 114532, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗč²”å›£ę„›ę…ˆä¼šē›øå’Œē—…é™¢'),
(145974, 114533, 'en', 'name', 'Austin Health'),
(145975, 114534, 'en', 'name', 'Research Data Alliance'),
(145976, 114535, 'en', 'name', 'Research Infrastructure on Integration of Solar Energy Systems in Buildings'),
(145977, 114536, 'fr', 'name', 'Maison de l''Orient et de la MƩditerranƩe Jean Pouilloux'),
(145978, 114537, 'es', 'name', 'El Colegio de San Luis, A.C.'),
(145979, 114538, 'en', 'name', 'Kailai Technology (Shenzhen) Co., Ltd., Kailai Technology (Shenzhen) Co., Ltd. (China)'),
(145980, 114539, 'en', 'name', 'THE Oita Prefectural Organization For Industry Creation'),
(145981, 114539, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗå¤§åˆ†ēœŒē”£ę„­å‰µé€ ę©Ÿę§‹'),
(145982, 114540, 'no_lang_code', 'name', 'Daiichi Sankyo (Portugal)'),
(145983, 114541, 'en', 'name', 'Toxicology Excellence for Risk Assessment'),
(145984, 114542, 'en', 'name', 'Washington State University'),
(145985, 114542, 'es', 'name', 'Universidad Estatal de Washington'),
(145986, 114542, 'fr', 'name', 'UniversitĆ© d''Ɖtat de washington'),
(145987, 114543, 'en', 'name', 'Association of Urban Housing Sciences'),
(145988, 114543, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗéƒ½åø‚ä½å®…å­¦ä¼š'),
(145989, 114544, 'en', 'name', 'International Institute of Social History'),
(145990, 114544, 'nl', 'name', 'Internationaal Instituut voor Sociale Geschiedenis'),
(145991, 114545, 'pt', 'name', 'Centro de FĆ­sica Computacional'),
(145992, 114546, 'fr', 'name', 'Groupe de Recherche sur la Socialisation'),
(145993, 114547, 'pt', 'name', 'ClĆ­nica do Bom Jesus'),
(145994, 114548, 'en', 'name', 'Royal Perth Bentley Group'),
(145995, 114549, 'en', 'name', 'International Nature Farming Research Center'),
(145996, 114549, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗč‡Ŗē„¶č¾²ę³•å›½éš›ē ”ē©¶é–‹ē™ŗć‚»ćƒ³ć‚æćƒ¼'),
(145997, 114550, 'no_lang_code', 'name', 'Medac (Germany)'),
(145998, 114551, 'en', 'name', 'Suzuka Kosei Hospital'),
(145999, 114551, 'ja', 'name', 'JAäø‰é‡åŽšē”Ÿé€£éˆ“é¹æåŽšē”Ÿē—…é™¢'),
(146000, 114552, 'en', 'name', 'AIIMS Jodhpur, All India Institute of Medical Sciences Jodhpur'),
(146001, 114552, 'hi', 'name', 'अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤†ą¤Æą„ą¤°ą„ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤œą„‹ą¤§ą¤Ŗą„ą¤°'),
(146002, 114553, 'de', 'name', 'Deutsche Arthrose-Hilfe'),
(146003, 114554, 'pt', 'name', 'Sociedade Portuguesa de Angiologia e Cirurgia Vascular'),
(146004, 114555, 'no_lang_code', 'name', 'medac (Portugal), medac Sucursal em Portugal'),
(146005, 114556, 'en', 'name', 'Bionics Institute'),
(146006, 114557, 'en', 'name', 'Royal Devon University Healthcare NHS Foundation Trust'),
(146007, 114558, 'en', 'name', 'Institute of World Economics'),
(146008, 114558, 'hu', 'name', 'MTA KözgazdasÔg- és RegionÔlis TudomÔnyi Kutatóközpont'),
(146009, 114559, 'en', 'name', 'Ministry of External Affairs'),
(146010, 114560, 'no_lang_code', 'name', 'Skyros Conferences, Skyros Congressos, Skyros Congressos (Portugal)'),
(146011, 114561, 'de', 'name', 'Institut für Fluiddynamik'),
(146012, 114561, 'en', 'name', 'Institute of Fluid Dynamics'),
(146013, 114562, 'en', 'name', 'Sarov Institute of Physics and Technology'),
(146014, 114562, 'ru', 'name', 'Даровский Š³Š¾ŃŃƒŠ“арственный физико-технический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(146015, 114563, 'pt', 'name', 'Centro de Arqueologia'),
(146016, 114564, 'en', 'name', 'Transparent Products, Inc., Transparent Products, Inc. (United States)'),
(146017, 114565, 'en', 'name', 'Naval Medical Research Unit DAYTON'),
(146018, 114566, 'en', 'name', 'Worcester Polytechnic Institute'),
(146019, 114567, 'en', 'name', 'Ministry of Natural Resources and Forests'),
(146020, 114567, 'fr', 'name', 'MinistĆØre des Ressources naturelles et des ForĆŖts'),
(146021, 114568, 'en', 'name', 'National Defense University'),
(146022, 114569, 'en', 'name', 'Niigata Prefectural Institute of Environmental Radiation Monitoring'),
(146023, 114569, 'ja', 'name', 'ę–°ę½ŸēœŒę”¾å°„ē·šē›£č¦–ć‚»ćƒ³ć‚æćƒ¼'),
(146024, 114570, 'en', 'name', 'Ministry of Agriculture and Rural Development'),
(146025, 114570, 'vi', 'name', 'Bį»™ NĆ“ng nghiệp vĆ  PhĆ”t triển NĆ“ng thĆ“n'),
(146026, 114571, 'pt', 'name', 'Ordem dos MƩdicos VeterinƔrios'),
(146027, 114572, 'en', 'name', 'Guru Nanak First Grade College Bidar'),
(146028, 114573, 'en', 'name', 'Regional environmental protection for Lombardia'),
(146029, 114573, 'it', 'name', 'Azienda Regionale per la protezione dell''ambiente Lombardia'),
(146030, 114574, 'en', 'name', 'Gritstone Oncology, Inc, Gritstone Oncology, Inc (United States)'),
(146031, 114575, 'en', 'name', 'International Institute of Information Technology, Hyderabad'),
(146032, 114575, 'hi', 'name', 'ą¤…ą¤‚ą¤¤ą¤°ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(146033, 114576, 'pt', 'name', 'Hospital de Cascais Dr JosƩ de Almeida'),
(146034, 114577, 'en', 'name', 'Naval Medical Research Command'),
(146035, 114578, 'en', 'name', 'Japan Agricultural Development and Extension Association'),
(146036, 114578, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…Øå›½č¾²ę„­ę”¹č‰Æę™®åŠę”Æę“å”ä¼š'),
(146037, 114579, 'en', 'name', 'International University named after K.Sh.Toktomamatov'),
(146038, 114580, 'fr', 'name', 'UniversitƩ Paris CitƩ'),
(146039, 114581, 'en', 'name', 'Hanawa Kousei Hospital'),
(146040, 114581, 'ja', 'name', 'JAē¦å³¶åŽšē”Ÿé€£å”™åŽšē”Ÿē—…é™¢'),
(146041, 114582, 'en', 'name', 'Russian Association of Computer Science in Sport'),
(146042, 114582, 'ru', 'name', 'ŠŃŃŠ¾Ń†ŠøŠ°Ń†ŠøŃ ŠŗŠ¾Š¼ŠæŃŒŃŽŃ‚ŠµŃ€Š½Ń‹Ń… наук в спорте'),
(146043, 114583, 'en', 'name', 'Kingsley Ozumba Mbadiwe University'),
(146044, 114584, 'en', 'name', 'Nippon Badminton Association'),
(146045, 114584, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—„ęœ¬ćƒćƒ‰ćƒŸćƒ³ćƒˆćƒ³å”ä¼š'),
(146046, 114585, 'en', 'name', 'CTA Observatory'),
(146047, 114586, 'en', 'name', 'Taiwan Banana Research Institute'),
(146048, 114586, 'zh', 'name', 'å°ē£é¦™č•‰ē ”ē©¶ę‰€'),
(146049, 114587, 'en', 'name', 'International Institute of Socionics'),
(146050, 114588, 'en', 'name', 'Netherlands Institute for Public Safety'),
(146051, 114588, 'nl', 'name', 'Nederlands Instituut Publieke Veiligheid'),
(146052, 114589, 'fr', 'name', 'Institut d''Etudes Politiques de Paris, Sciences Po'),
(146053, 114590, 'en', 'name', 'Japan Wellness Foundation'),
(146054, 114590, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚¦ć‚Øćƒ«ćƒć‚¹å”ä¼š'),
(146055, 114591, 'de', 'name', 'Institut für Chemie- und Bioingenieurwissenschaften'),
(146056, 114591, 'en', 'name', 'Institute for Chemical and Bioengineering'),
(146057, 114592, 'es', 'name', 'Universidad Autónoma de Ciudad JuÔrez'),
(146058, 114593, 'en', 'name', 'Esfarayen University of Technology'),
(146059, 114593, 'fa', 'name', 'Ł…Ų¬ŲŖŁ…Ų¹ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ ŁŁ†ŪŒ و Ł…Ł‡Ł†ŲÆŲ³ŪŒ Ų§Ų³ŁŲ±Ų§ŪŒŁ†'),
(146060, 114594, 'pt', 'name', 'Centro de AnƔlise Funcional Estruturas Lineares e AplicaƧƵes'),
(146061, 114595, 'no_lang_code', 'name', 'Euromedice Medical Publishing, EuromƩdice EdiƧƵes MƩdicas (Portugal)'),
(146062, 114596, 'en', 'name', 'Koto Medical Association'),
(146063, 114596, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę±Ÿę±åŒŗåŒ»åø«ä¼š'),
(146064, 114597, 'en', 'name', 'Kanadevia, Kanadevia (Japan)'),
(146065, 114597, 'ja', 'name', 'ć‚«ćƒŠćƒ‡ćƒ“ć‚¢ę Ŗå¼ä¼šē¤¾'),
(146066, 114598, 'en', 'name', 'The International Maglev Board'),
(146067, 114599, 'no_lang_code', 'name', 'Printipo Graphic Design, Printipo Indústrias GrÔficas (Portugal)'),
(146068, 114600, 'en', 'name', 'Toronto Metropolitan University'),
(146069, 114601, 'no_lang_code', 'name', 'Distrifarma Companhia de Distribuição Farmacêutica (Portugal), Distrifarma Companhia de Distribuição Farmacêutica, S.A., Distrifarma Pharmaceutical Distribution Company'),
(146070, 114602, 'pt', 'name', 'Centro da Ciências e Tecnologias Mecânicas e Aeroespaciais'),
(146071, 114603, 'en', 'name', 'YEZO Deer Association'),
(146072, 114603, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗć‚Øć‚¾ć‚·ć‚«å”ä¼š'),
(146073, 114604, 'pt', 'name', 'CENERTEC Centro de Energia e Tecnologia'),
(146074, 114605, 'en', 'name', 'Sultan Qaboos Comprehensive Cancer Care & Research Center'),
(146075, 114606, 'en', 'name', 'Mishuku Hospital'),
(146076, 114606, 'ja', 'name', 'å›½å®¶å…¬å‹™å“”å…±ęøˆēµ„åˆé€£åˆä¼šäø‰å®æē—…é™¢'),
(146077, 114607, 'en', 'name', 'All India Institute of Medical Sciences, Mangalagiri'),
(146078, 114608, 'en', 'name', 'Center for Studies in Ethnobiology Biodiversity & Sustainability'),
(146079, 114609, 'cs', 'name', 'VysokÔ Ŕkola chemicko-technologickÔ v Praze'),
(146080, 114609, 'en', 'name', 'University of Chemistry and Technology, Prague'),
(146081, 114610, 'fr', 'name', 'Centre intégré de santé et de services sociaux de Chaudière-Appalaches'),
(146082, 114611, 'en', 'name', 'Royal Prince Alfred Hospital'),
(146083, 114612, 'en', 'name', 'Brown University'),
(146084, 114612, 'es', 'name', 'Universidad Brown'),
(146085, 114613, 'en', 'name', 'Tashkent State Agrarian University'),
(146086, 114613, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(146087, 114614, 'en', 'name', 'BGI Research'),
(146088, 114614, 'zh', 'name', 'åŽå¤§ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(146089, 114615, 'en', 'name', 'Centenary Institute'),
(146090, 114616, 'en', 'name', 'Indiana University – Purdue University Indianapolis'),
(146091, 114617, 'no_lang_code', 'name', 'Kasetsart University'),
(146092, 114617, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ą¹€ąøąø©ąø•ąø£ąøØąø²ąøŖąø•ąø£ą¹Œ'),
(146093, 114618, 'en', 'name', 'Korea Football Association'),
(146094, 114619, 'en', 'name', 'Nissenken Quality Evaluation Center'),
(146095, 114619, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗćƒ‹ćƒƒć‚»ćƒ³ć‚±ćƒ³å“č³Ŗč©•ä¾”ć‚»ćƒ³ć‚æćƒ¼'),
(146096, 114620, 'pt', 'name', 'CoLAB VORTEX'),
(146097, 114621, 'fr', 'name', 'Ɖlisabeth BruyĆØre Hospital'),
(146098, 114622, 'fr', 'name', 'Laboratoire des Sciences de l''Environnement Marin'),
(146099, 114623, 'en', 'name', 'Agricultural Research Center'),
(146100, 114624, 'en', 'name', 'Urban Design Center'),
(146101, 114624, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗéƒ½åø‚ć„ćć‚Šćƒ‘ćƒ–ćƒŖćƒƒć‚Æćƒ‡ć‚¶ć‚¤ćƒ³ć‚»ćƒ³ć‚æćƒ¼'),
(146102, 114625, 'en', 'name', 'University of Kalisz'),
(146103, 114625, 'pl', 'name', 'Uniwersytet Kaliski im. Prezydenta Stanisława Wojciechowskiego'),
(146104, 114626, 'pt', 'name', 'Sociedade Portuguesa de Relatividade e Gravitação'),
(146105, 114627, 'en', 'name', 'KV Institute of Management and Information Studies'),
(146106, 114628, 'ar', 'name', 'وزارة Ų§Ł„ŲØŁŠŲ¦Ų©- جهاز Ų“Ų¦ŁˆŁ† Ų§Ł„ŲØŁŠŲ¦Ų©Ų§Ł„Ł…Ų¹Ų§ŲÆŁ‰'),
(146107, 114628, 'en', 'name', 'Egyptian Ministry of Environment'),
(146108, 114629, 'pt', 'name', 'Unidade de Investigação e Desenvolvimento Cardiovascular'),
(146109, 114630, 'de', 'name', 'Fraunhofer-Gesellschaft zur Fƶrderung der angewandten Forschung e. V.'),
(146110, 114630, 'en', 'name', 'Fraunhofer Society'),
(146111, 114631, 'en', 'name', 'Center for Systems Biology Dresden'),
(146112, 114632, 'en', 'name', 'Xinghua People''s Hospital Affiliated to Yangzhou University'),
(146113, 114632, 'zh', 'name', 'å…“åŒ–åø‚äŗŗę°‘åŒ»é™¢'),
(146114, 114633, 'en', 'name', 'Portage College'),
(146115, 114634, 'en', 'name', 'International Association of Computer Science in Sport'),
(146116, 114635, 'en', 'name', 'Japan Association for Safety of Hazardous Materials'),
(146117, 114635, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå…Øå›½å±é™ŗē‰©å®‰å…Øå”ä¼š'),
(146118, 114636, 'en', 'name', 'Minnesota Project'),
(146119, 114637, 'fr', 'name', 'Ɖcole Polytechnique'),
(146120, 114638, 'en', 'name', 'Institute of Genetics and Cancer'),
(146121, 114639, 'no_lang_code', 'name', 'Widex Reabilitação Auditiva Unip (Portugal)'),
(146122, 114640, 'en', 'name', 'Idorsia Pharmaceuticals Ltd, Idorsia Pharmaceuticals Ltd (Switzerland)'),
(146123, 114641, 'en', 'name', 'Bangladesh Institute of Governance and Management'),
(146124, 114642, 'en', 'name', 'University of the Armed Forces (ESPE)'),
(146125, 114642, 'es', 'name', 'Universidad de las Fuerzas Armadas ESPE'),
(146126, 114643, 'pt', 'name', 'Sistema Nacional de Informação de Recursos Hídricos'),
(146127, 114644, 'en', 'name', 'Zambia Information and Communications Technology Authority, Zambia Information and Communications Technology Authority (ZICTA)'),
(146128, 114645, 'en', 'name', 'Oda Bultum University'),
(146129, 114646, 'fr', 'name', 'Laboratoire d''OcƩanographie et du Climat : ExpƩrimentations et Approches NumƩriques'),
(146130, 114647, 'en', 'name', 'Singapore University of Technology and Design'),
(146131, 114647, 'zh', 'name', 'ę–°åŠ å”ē§‘ęŠ€č®¾č®”å¤§å­¦'),
(146132, 114648, 'id', 'name', 'Universitas Islam Negeri Sulthan Thaha Saifuddin Jambi'),
(146133, 114649, 'no_lang_code', 'name', 'MSD (Portugal)'),
(146134, 114650, 'en', 'name', 'Royal Birmingham Conservatoire'),
(146135, 114651, 'pt', 'name', 'Sociedade Portuguesa do Acidente Vascular Cerebral'),
(146136, 114652, 'en', 'name', 'Interdisciplinary Laboratory for Continental Environments'),
(146137, 114652, 'fr', 'name', 'Laboratoire Interdisciplinaire des Environnements Continentaux'),
(146138, 114653, 'fr', 'name', 'Centre de Recherche de Droit International PrivƩ et du Commerce International'),
(146139, 114654, 'en', 'name', 'Kaminari Medical, Kaminari Medical (Netherlands)'),
(146140, 114655, 'en', 'name', 'Hachioji Medical Association'),
(146141, 114655, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗå…«ēŽ‹å­åø‚åŒ»åø«ä¼š'),
(146142, 114656, 'en', 'name', 'Institute for Information and Communications Policy'),
(146143, 114656, 'ja', 'name', 'ē·å‹™ēœęƒ…å ±é€šäæ”ę”æē­–ē ”ē©¶ę‰€'),
(146144, 114657, 'en', 'name', 'Sagami Chemical Research Institute'),
(146145, 114657, 'ja', 'name', 'ē›øęØ”äø­å¤®åŒ–å­¦ē ”ē©¶ę‰€'),
(146146, 114658, 'en', 'name', 'Dr. Enrique Alza Private Eye Clinic'),
(146147, 114658, 'es', 'name', 'ClĆ­nica privada de Ojos Dr. Enrique Alza'),
(146148, 114659, 'en', 'name', 'Astana IT University'),
(146149, 114660, 'pt', 'name', 'Centro de Estudos de História do Atlântico Alberto Vieira'),
(146150, 114661, 'pt', 'name', 'TecMinho'),
(146151, 114662, 'en', 'name', 'Japan Society for Atmospheric Environment'),
(146152, 114662, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗå¤§ę°—ē’°å¢ƒå­¦ä¼š'),
(146153, 114663, 'pt', 'name', 'Centro de Estudos JudiciƔrios'),
(146154, 114664, 'en', 'name', 'The Society for Biotechnology, Japan'),
(146155, 114664, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ē”Ÿē‰©å·„å­¦ä¼š'),
(146156, 114665, 'en', 'name', 'National Geographic Institute'),
(146157, 114665, 'fr', 'name', 'Institut national de l’information gĆ©ographique et forestiĆØre'),
(146158, 114666, 'fr', 'name', 'Laboratoire de MĆ©canique et d''EnergĆ©tique d''Ɖvry'),
(146159, 114667, 'pt', 'name', 'Pólo de Inovação em Engenharia de Polímeros'),
(146160, 114668, 'fr', 'name', 'Centre d''Ɖtudes et d''Expertise sur les Risques, l''Environnement, la MobilitĆ© et l''AmĆ©nagement'),
(146161, 114669, 'en', 'name', 'Children''s Hospital at Westmead'),
(146162, 114670, 'es', 'name', 'Consejo Mexiquense de Ciencia y TecnologĆ­a'),
(146163, 114671, 'en', 'name', 'Sofar Ocean, Sofar Ocean (United States)'),
(146164, 114672, 'en', 'name', 'Japan Camera Industry Institute'),
(146165, 114672, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ć‚«ćƒ”ćƒ©č²”å›£'),
(146166, 114673, 'en', 'name', 'Paris Center for Law and Economics'),
(146167, 114673, 'fr', 'name', 'Centre de Recherche en Economie et Droit'),
(146168, 114674, 'en', 'name', 'Maharashtra Institute of Dental Science and Research'),
(146169, 114675, 'nl', 'name', 'Parkinson Vereniging'),
(146170, 114676, 'es', 'name', 'Centro Peninsular en Humanidades y Ciencias Sociales'),
(146171, 114677, 'en', 'name', 'Hyogo Prefectural Center for Advanced Science and Technonogy'),
(146172, 114677, 'ja', 'name', 'å…µåŗ«ēœŒē«‹å…ˆē«Æē§‘å­¦ęŠ€č”“ę”Æę“ć‚»ćƒ³ć‚æćƒ¼'),
(146173, 114678, 'fr', 'name', 'Formation et apprentissages professionnels'),
(146174, 114679, 'cs', 'name', 'Atacama Large Millimeter /submillimeter Array – ĆŗÄast ČeskĆ© republiky'),
(146175, 114679, 'en', 'name', 'Atacama Large Millimeter / Submillimeter Array – participation of the Czech Republic'),
(146176, 114680, 'en', 'name', 'Niigata Prefectural Government'),
(146177, 114680, 'ja', 'name', 'ę–°ę½ŸēœŒåŗ'),
(146178, 114681, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų³ŁˆŁŠŲÆŁŠ Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(146179, 114681, 'en', 'name', 'SU Tech Elsewedy University'),
(146180, 114682, 'en', 'name', 'UmeƄ University'),
(146181, 114682, 'fi', 'name', 'Uumajan Yliopisto'),
(146182, 114682, 'sv', 'name', 'UmeƄ Universitet'),
(146183, 114683, 'en', 'name', 'Vlatacom Institute, Vlatacom Institute (Serbia)'),
(146184, 114683, 'sr', 'name', 'Vlatacom institut visokih tehnologija d.o.o.'),
(146185, 114684, 'en', 'name', 'Tianshui Normal University'),
(146186, 114684, 'zh', 'name', 'å¤©ę°“åøˆčŒƒå­¦é™¢ę¬¢čæŽę‚Ø'),
(146187, 114685, 'de', 'name', 'Paul Langerhans Institut Dresden'),
(146188, 114685, 'en', 'name', 'Paul Langerhans Institute Dresden'),
(146189, 114686, 'en', 'name', 'Eduvos'),
(146190, 114687, 'en', 'name', 'Canadian University of Bangladesh'),
(146191, 114688, 'de', 'name', 'Institut für Angewandte Manuelle Therapie'),
(146192, 114688, 'en', 'name', 'Institute for Applied Manual Therapy'),
(146193, 114689, 'en', 'name', 'Association for Water and Rural Development'),
(146194, 114690, 'en', 'name', 'Helsinki Institute for Information Technology'),
(146195, 114690, 'fi', 'name', 'Tietotekniikan tutkimuslaitos'),
(146196, 114690, 'sv', 'name', 'Forskningsinstitutet fƶr informationsteknologi'),
(146197, 114691, 'en', 'name', 'French Agricultural Research Centre for International Development'),
(146198, 114691, 'fr', 'name', 'Centre de CoopƩration Internationale en Recherche Agronomique pour le DƩveloppement'),
(146199, 114692, 'en', 'name', 'The Association for Promotion of Advanced Broadcasting Services'),
(146200, 114692, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę”¾é€ć‚µćƒ¼ćƒ“ć‚¹é«˜åŗ¦åŒ–ęŽØé€²å”ä¼š'),
(146201, 114693, 'cy', 'name', 'Prifysgol Sheffield'),
(146202, 114693, 'en', 'name', 'University of Sheffield'),
(146203, 114694, 'en', 'name', 'Research Institute of Construction and Economy'),
(146204, 114694, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗå»ŗčØ­ēµŒęøˆē ”ē©¶ę‰€'),
(146205, 114695, 'en', 'name', 'Burnet Institute'),
(146206, 114696, 'fr', 'name', 'Centre Pierre Naville'),
(146207, 114697, 'en', 'name', 'Serbian Academy of Sciences and Arts'),
(146208, 114698, 'en', 'name', 'Saskatchewan Health'),
(146209, 114698, 'fr', 'name', 'Le ministère de la Santé'),
(146210, 114699, 'es', 'name', 'Universidad Europea de Valencia'),
(146211, 114700, 'de', 'name', 'PƤdagogische Hochschule St.Gallen'),
(146212, 114700, 'en', 'name', 'St.Gallen University of Teacher Education'),
(146213, 114701, 'en', 'name', 'KMEA Engineering College'),
(146214, 114702, 'en', 'name', 'Sidney Kimmel Comprehensive Cancer Center'),
(146215, 114703, 'en', 'name', 'General Hospital Uzice'),
(146216, 114703, 'sr', 'name', 'ЗГравствени центар Ужице'),
(146217, 114704, 'en', 'name', 'Japanese Society of Pediatric Cardiology and Cardiac Surgery'),
(146218, 114704, 'ja', 'name', 'ē‰¹å®šéžå–¶åˆ©ę“»å‹•ę³•äŗŗę—„ęœ¬å°å…å¾Ŗē’°å™Øå­¦ä¼š'),
(146219, 114705, 'en', 'name', 'M S Ramaiah Institute of Management'),
(146220, 114706, 'en', 'name', 'Institut de Recherches Cliniques de MontrƩal, Montreal Clinical Research Institute'),
(146221, 114707, 'cs', 'name', 'České centrum pro fenogenomiku'),
(146222, 114707, 'en', 'name', 'Czech Centre for Phenogenomics'),
(146223, 114708, 'en', 'name', 'The London Interdisciplinary School'),
(146224, 114709, 'en', 'name', 'Akitsu Kounoike Hospital'),
(146225, 114709, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗé“»ę± ä¼šē§‹ę“„é“»ę± ē—…é™¢'),
(146226, 114710, 'en', 'name', 'Federal Budgetary Institution "Research Center for Applied Metrology - Rostest"'),
(146227, 114710, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Ā«ŠŠ°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр приклаГной метрологии – Ростест»'),
(146228, 114711, 'pt', 'name', 'CĆ¢mara Municipal da Amadora'),
(146229, 114712, 'cs', 'name', 'Infrastruktura pro propagaci metrologie v potravinÔřstvĆ­ a výživě v ČR'),
(146230, 114712, 'en', 'name', 'Infrastructure for Promoting Metrology in Food and Nutrition in the Czech Republic'),
(146231, 114713, 'en', 'name', 'U.S. Virgin Islands Division of Fish and Wildlife'),
(146232, 114714, 'en', 'name', 'The Japan Diabetes Society'),
(146233, 114714, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē³–å°æē—…å­¦ä¼š'),
(146234, 114715, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure d''Architecture de Lyon'),
(146235, 114716, 'en', 'name', 'Northern Hospital'),
(146236, 114717, 'es', 'name', 'Instituto de Investigaciones Sociales'),
(146237, 114718, 'pt', 'name', 'Escola de Pós-Graduação e Formação Avançada'),
(146238, 114719, 'en', 'name', 'University of the Pacific'),
(146239, 114719, 'es', 'name', 'Universidad del Pacifico'),
(146240, 114720, 'fr', 'name', 'Histoire, ArchƩologie, LittƩratures des Mondes ChrƩtiens et Musulmans MƩdiƩvaux'),
(146241, 114721, 'en', 'name', 'Surya Sen Mahavidyalaya'),
(146242, 114722, 'no_lang_code', 'name', 'AstraZeneca (Portugal)'),
(146243, 114723, 'no_lang_code', 'name', 'CIENGIS (Portugal), CIENGIS, S.A.'),
(146244, 114724, 'en', 'name', 'Ministry of Interior'),
(146245, 114725, 'en', 'name', 'Kansai Photon Science Institute'),
(146246, 114725, 'ja', 'name', '関脿光科学研究所'),
(146247, 114726, 'fr', 'name', 'Association pour la diffusion de la recherche francophone en intelligence artificielle'),
(146248, 114727, 'en', 'name', 'The Association of Powder Process Industry and Engineering, JAPAN'),
(146249, 114727, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē²‰ä½“å·„ę„­ęŠ€č”“å”ä¼š'),
(146250, 114728, 'en', 'name', 'Muğla University'),
(146251, 114728, 'tr', 'name', 'Muğla Sıtkı Koçman Üniversitesi'),
(146252, 114729, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© عبدالرحمن Ų§Ł„Ų³Ł…ŁŠŲ·'),
(146253, 114729, 'en', 'name', 'Abdulrahman Al-Sumait University'),
(146254, 114730, 'pt', 'name', 'Sociedade Portuguesa da Psicanalise'),
(146255, 114731, 'pt', 'name', 'Biblioteca UniversitÔria João Paulo II'),
(146256, 114732, 'en', 'name', 'International Society of Biomechanics in Sports'),
(146257, 114733, 'es', 'name', 'Instituto de Investigación Sanitaria de Santiago'),
(146258, 114734, 'en', 'name', 'Center or Research on North America'),
(146259, 114734, 'es', 'name', 'Centro de Investigaciones sobre AmƩrica del Norte'),
(146260, 114735, 'en', 'name', 'MARA University of Technology'),
(146261, 114735, 'ms', 'name', 'Universiti Teknologi MARA'),
(146262, 114736, 'id', 'name', 'Sekolah Tinggi Ilmu Pemerintahan Abdi Negara'),
(146263, 114737, 'en', 'name', 'BillionToOne, BillionToOne (United States)'),
(146264, 114738, 'en', 'name', 'Institute of Economics'),
(146265, 114738, 'hu', 'name', 'Magyar TudomƔnyos AkadƩmia KƶzgazdasƔgtudomƔnyi IntƩzet'),
(146266, 114739, 'no_lang_code', 'name', 'Smartwatt (Portugal), Smartwatt, S.A.'),
(146267, 114740, 'pt', 'name', 'Instituto Superior TƩcnico Biblioteca'),
(146268, 114741, 'en', 'name', 'Shirahama Foundation for Health and Welfare'),
(146269, 114741, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē™½ęµœåŒ»ē™‚ē¦ē„‰č²”å›£'),
(146270, 114742, 'en', 'name', 'University of the City of Muntinlupa'),
(146271, 114743, 'en', 'name', 'Hata Kenmin Hospital'),
(146272, 114743, 'ja', 'name', 'é«˜ēŸ„ēœŒē«‹å¹”å¤šć‘ć‚“ćæć‚“ē—…é™¢'),
(146273, 114744, 'de', 'name', 'Institut für Intelligente interaktive Systeme'),
(146274, 114744, 'en', 'name', 'Institute for Intelligent Interactive Systems'),
(146275, 114745, 'pt', 'name', 'Sociedade Portuguesa de FĆ­sica'),
(146276, 114746, 'de', 'name', 'Institut Frühe Bildung 0 bis 8'),
(146277, 114746, 'en', 'name', 'Institute of Early Childhood Education 0 to 8 years'),
(146278, 114747, 'en', 'name', 'Kansas State University'),
(146279, 114747, 'es', 'name', 'Universidad Estatal de Kansas'),
(146280, 114747, 'fr', 'name', 'UniversitĆ© d''Ɖtat du kansas'),
(146281, 114748, 'en', 'name', 'Ellison Institute of Technology'),
(146282, 114749, 'fr', 'name', 'SociƩtƩ GƩnƩrale de Surveillance'),
(146283, 114749, 'no_lang_code', 'name', 'SGS (Switzerland)'),
(146284, 114750, 'en', 'name', 'U.S. Army Sustainment Command'),
(146285, 114751, 'en', 'name', 'Tripler Army Medical Center'),
(146286, 114752, 'en', 'name', 'Royal Brisbane and Women''s Hospital'),
(146287, 114753, 'en', 'name', 'Centre for Research on Risks and Crises'),
(146288, 114753, 'fr', 'name', 'Centre de Recherche sur les Risques et les Crises'),
(146289, 114754, 'en', 'name', 'Aichi Seaside Environment Center'),
(146290, 114754, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę„›ēŸ„č‡Øęµ·ē’°å¢ƒę•“å‚™ć‚»ćƒ³ć‚æćƒ¼'),
(146291, 114755, 'en', 'name', 'Health Canada'),
(146292, 114755, 'fr', 'name', 'SantƩ Canada'),
(146293, 114756, 'en', 'name', 'Purdue University System'),
(146294, 114757, 'en', 'name', 'University of North Carolina at Pembroke'),
(146295, 114758, 'en', 'name', 'Japan Society for Reproductive Medicine'),
(146296, 114758, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē”Ÿę®–åŒ»å­¦ä¼š'),
(146297, 114759, 'fr', 'name', 'Laboratoire de Droit Social'),
(146298, 114760, 'tr', 'name', 'Alata BahƧe Kültürleri̇ Araştirma Ensti̇tüsü Müdürlüğü'),
(146299, 114761, 'en', 'name', 'The Academy of Pharmaceutical Science and Technology, Japan'),
(146300, 114761, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬č–¬å‰¤å­¦ä¼š'),
(146301, 114762, 'en', 'name', 'WHO Association of Japan'),
(146302, 114762, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬WHO協会'),
(146303, 114763, 'en', 'name', 'Superconducting Sensing Technology Research Association'),
(146304, 114763, 'ja', 'name', 'č¶…é›»å°Žć‚»ćƒ³ć‚·ćƒ³ć‚°ęŠ€č”“ē ”ē©¶ēµ„åˆ'),
(146305, 114764, 'en', 'name', 'Royal School of Languages'),
(146306, 114765, 'no_lang_code', 'name', 'Jacobs (United States)'),
(146307, 114766, 'en', 'name', 'M&S Research Hub'),
(146308, 114767, 'en', 'name', 'Institute of Marine Research'),
(146309, 114767, 'es', 'name', 'Instituto de Investigaciones Marinas'),
(146310, 114768, 'fr', 'name', 'Laboratoire atmosphĆØres, milieux, observations spatiales'),
(146311, 114769, 'cs', 'name', 'BiologickĆ© centrum AV ČR, BiologickĆ© centrum AV ČR, v. v. i., BiologickĆ© centrum AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(146312, 114769, 'en', 'name', 'Czech Academy of Sciences, Biology Centre'),
(146313, 114770, 'no_lang_code', 'name', 'EDUGEP (Portugal), EDUGEP - Concepção Desenvolvimento e Gestão de Projectos de Natureza Educacional Social e Cultural'),
(146314, 114771, 'pt', 'name', 'Autoridade para a Prevenção e o Combate à Violência no Desporto'),
(146315, 114772, 'en', 'name', 'Polytechnic University of Tlaxcala'),
(146316, 114772, 'es', 'name', 'Universidad PolitƩcnica de Tlaxcala'),
(146317, 114773, 'en', 'name', 'Akita International Association'),
(146318, 114773, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē§‹ē”°ēœŒå›½éš›äŗ¤ęµå”ä¼š'),
(146319, 114774, 'en', 'name', 'Equity Trustees'),
(146320, 114775, 'no_lang_code', 'name', 'Exigo Consultants, Exigo Consultores, Exigo Consultores (Portugal)'),
(146321, 114776, 'fr', 'name', 'Observatoire des Sciences de l''Environnement de Rennes'),
(146322, 114777, 'no_lang_code', 'name', 'Jose Maria da Fonseca Wines, JosƩ Maria da Fonseca Vinhos (Portugal), JosƩ Maria da Fonseca Vinhos, S.A.'),
(146323, 114778, 'en', 'name', 'Okinawa Prefectural Police'),
(146324, 114778, 'ja', 'name', 'ę²–ēø„ēœŒč­¦åÆŸ'),
(146325, 114779, 'no_lang_code', 'name', 'Omniservices Representations and Services, OmniserviƧos RepresentaƧƵes e ServiƧos (Portugal)'),
(146326, 114780, 'en', 'name', 'Hamamatsu City Institute of Health and Environment'),
(146327, 114780, 'ja', 'name', 'ęµœę¾åø‚äæå„ē’°å¢ƒē ”ē©¶ę‰€'),
(146328, 114781, 'en', 'name', 'Consumer Co-operative Institute of Japan'),
(146329, 114781, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē”Ÿå”ē·åˆē ”ē©¶ę‰€'),
(146330, 114782, 'fr', 'name', 'Technologie Hoola One Inc., Technologie Hoola One Inc. (Canada)'),
(146331, 114783, 'en', 'name', 'Indian Institute of Management Mumbai'),
(146332, 114783, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤®ą„ą¤‚ą¤¬ą¤ˆ'),
(146333, 114783, 'mr', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤µą„ą¤Æą¤µą¤øą„ą¤„ą¤¾ą¤Ŗą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ ą¤®ą„ą¤‚ą¤¬ą¤ˆ'),
(146334, 114784, 'de', 'name', 'Institut für Molecular Health Sciences'),
(146335, 114784, 'en', 'name', 'Institute of Molecular Health Sciences'),
(146336, 114785, 'no_lang_code', 'name', 'Octapharma Pharmaceutical Products, Octapharma Produtos FarmacĆŖuticos (Portugal)'),
(146337, 114786, 'en', 'name', 'Aerosol d.o.o., Aerosol d.o.o. (Slovenia)'),
(146338, 114787, 'pt', 'name', 'Centro Interdisciplinar de Estudos de GƩnero'),
(146339, 114788, 'en', 'name', 'Blue Quills University'),
(146340, 114788, 'no_lang_code', 'name', 'University nuhelot''ine thaiyots''i nistameyimâkanak Blue Quills'),
(146341, 114789, 'pt', 'name', 'Rede Nacional de Computação Avançada'),
(146342, 114790, 'de', 'name', 'UniversitƤt Klagenfurt'),
(146343, 114790, 'en', 'name', 'University of Klagenfurt'),
(146344, 114790, 'sl', 'name', 'Univerza v Celovcu'),
(146345, 114791, 'en', 'name', 'Ahmadi Hospital-Kuwait Oil Company'),
(146346, 114792, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„Ų¢ŲÆŲ§ŲØ Ų§Ł„Ł„ŲØŁ†Ų§Ł†ŁŠŲ©'),
(146347, 114792, 'en', 'name', 'University of Sciences and Arts in Lebanon'),
(146348, 114793, 'no_lang_code', 'name', 'Pharol SGPS (Portugal), Pharol SGPS, S.A.'),
(146349, 114794, 'en', 'name', 'Fukuoka Agriculture and Forestry Research Center'),
(146350, 114794, 'ja', 'name', 'ē¦å²”ēœŒč¾²ęž—ę„­ē·åˆč©¦éØ“å “'),
(146351, 114795, 'pt', 'name', 'Academia ClĆ­nica Espregueira'),
(146352, 114796, 'en', 'name', 'All India Institute of Medical Sciences Rishikesh'),
(146353, 114796, 'hi', 'name', 'अखिल ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤šą¤æą¤•ą¤æą¤¤ą„ą¤øą¤¾ ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø ą¤‹ą¤·ą¤æą¤•ą„‡ą¤¶'),
(146354, 114797, 'en', 'name', 'National Healthcare Group'),
(146355, 114798, 'pt', 'name', 'Centro UniversitƔrio Ateneu'),
(146356, 114799, 'de', 'name', 'Institut Schule und Profession'),
(146357, 114799, 'en', 'name', 'Institute of Education and Professional Studies'),
(146358, 114800, 'pt', 'name', 'Sociedade Portuguesa de CiĆŖncias FarmacĆŖuticas'),
(146359, 114801, 'en', 'name', 'Center for Environmental Creative Studies'),
(146360, 114801, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗē’°å¢ƒå‰µé€ ē ”ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(146361, 114802, 'pt', 'name', 'Centro de Estudos M Manuela Eloi International Language School'),
(146362, 114803, 'en', 'name', 'Interdisciplinary Center for Children and Adolescents'),
(146363, 114803, 'pt', 'name', 'Núcleo Interdisciplinar da Criança e do Adolescente'),
(146364, 114804, 'en', 'name', 'Russian Academy of Sciences'),
(146365, 114804, 'ru', 'name', 'Š Š¾ŃŃŠøŠ¹ŃŠŗŠ°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук'),
(146366, 114805, 'pt', 'name', 'Centro de Investigação em Educação de Adultos e Intervenção ComunitÔria'),
(146367, 114806, 'en', 'name', 'Boston University'),
(146368, 114806, 'es', 'name', 'Universidad de Boston'),
(146369, 114806, 'fr', 'name', 'UniversitƩ de Boston'),
(146370, 114807, 'en', 'name', 'Kyoto Saga Art College'),
(146371, 114807, 'ja', 'name', 'åµÆå³Øē¾Žč”“ēŸ­ęœŸå¤§å­¦'),
(146372, 114808, 'es', 'name', 'Centro de Estudios Sociales de AmƩrica Latina'),
(146373, 114809, 'fr', 'name', 'Centre de droit public comparƩ'),
(146374, 114810, 'cs', 'name', 'PodzemnĆ­ laboratoř LSM, PodzemnĆ­ laboratoř LSM – ĆŗÄast ČR'),
(146375, 114810, 'en', 'name', 'Laboratoire Souterrain de Modane – participation of the Czech Republic'),
(146376, 114810, 'fr', 'name', 'Laboratoire Souterrain de Modane'),
(146377, 114811, 'en', 'name', 'Fukushima Prefectural Environmental Center'),
(146378, 114811, 'ja', 'name', 'ē¦å³¶ēœŒē’°å¢ƒć‚»ćƒ³ć‚æćƒ¼'),
(146379, 114812, 'de', 'name', 'Praxisklinik Rennbahn AG'),
(146380, 114813, 'en', 'name', 'Midway University'),
(146381, 114814, 'en', 'name', 'Shenzhen Municipal People''s Government'),
(146382, 114815, 'en', 'name', 'Japan Steel Constructors Association'),
(146383, 114815, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗé‰„éŖØå»ŗčØ­ę„­å”ä¼š'),
(146384, 114816, 'eu', 'name', 'Leartiker'),
(146385, 114817, 'en', 'name', 'Marmara Environmental Monitoring Project'),
(146386, 114818, 'en', 'name', 'East Tennessee State University'),
(146387, 114819, 'no_lang_code', 'name', 'Banco Santander (Portugal), Banco Santander Portugal, Santander Portugal Bank'),
(146388, 114820, 'ca', 'name', 'Institut Barcelona d''Estudis Internacionals'),
(146389, 114820, 'en', 'name', 'Barcelona Institute of International Studies'),
(146390, 114821, 'de', 'name', 'Seminar für Statistik'),
(146391, 114821, 'en', 'name', 'Seminar for Statistics'),
(146392, 114822, 'de', 'name', 'Salzburg Research Forschungsgesellschaft mbH, Salzburg Research Forschungsgesellschaft mbH (Austria)'),
(146393, 114823, 'pt', 'name', 'Centro de Estudos em Inovação Tecnologia e Políticas de Desenvolvimento'),
(146394, 114824, 'de', 'name', 'Competence Center CHASE GmbH, Competence Center CHASE GmbH (Austria)'),
(146395, 114824, 'en', 'name', 'CHASE center'),
(146396, 114825, 'en', 'name', 'Cognitive & Affective Sciences Laboratory, Sciences Cognitives et Sciences Affectives'),
(146397, 114826, 'en', 'name', 'University of California, Davis'),
(146398, 114826, 'es', 'name', 'Universidad de California en Davis'),
(146399, 114826, 'fr', 'name', 'UniversitƩ de Californie Ơ Davis'),
(146400, 114827, 'en', 'name', 'Ahi Evran University'),
(146401, 114827, 'tr', 'name', 'Ahi Evran Üniversitesi'),
(146402, 114828, 'no_lang_code', 'name', 'Fresenius Medical Care North America (United States)'),
(146403, 114829, 'no_lang_code', 'name', 'WEGEURO Electric Corporation, WEGEURO Indústria Eléctrica (Portugal), WEGEURO Indústria Eléctrica, S.A.'),
(146404, 114830, 'en', 'name', 'Forward College'),
(146405, 114831, 'en', 'name', 'Shandiz Institute of Higher Education'),
(146406, 114831, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų“Ų§Ł†ŲÆŪŒŲ² مؓهد'),
(146407, 114832, 'fr', 'name', 'Institut Fourier'),
(146408, 114833, 'en', 'name', 'Ankara Yıldırım Beyazıt University'),
(146409, 114833, 'tr', 'name', 'Yıldırım Beyazıt Üniversitesi'),
(146410, 114834, 'fr', 'name', 'Centre des Sciences du Goƻt et de l''Alimentation'),
(146411, 114835, 'en', 'name', 'St. Francis Institute of Management and Research'),
(146412, 114836, 'es', 'name', 'Hospital Universitari Joan XXIII de Tarragona'),
(146413, 114837, 'en', 'name', 'Endo-ERN'),
(146414, 114838, 'en', 'name', 'Sustainable Futures Collaborative'),
(146415, 114839, 'en', 'name', 'Department of Primary Industries'),
(146416, 114840, 'pt', 'name', 'Centro de Investigação em Ciências Históricas'),
(146417, 114841, 'fr', 'name', 'Ɖcole Centrale de Lyon'),
(146418, 114842, 'de', 'name', 'Tumor Zentrum Aarau AG, Tumor Zentrum Aargau'),
(146419, 114843, 'en', 'name', 'SBI Graduate School'),
(146420, 114843, 'ja', 'name', 'SBI大学院大学'),
(146421, 114844, 'no_lang_code', 'name', 'PerkinElmer (United States)'),
(146422, 114845, 'en', 'name', 'Joshibi University of Art and Design'),
(146423, 114845, 'ja', 'name', 'å„³å­ē¾Žč”“å¤§å­¦'),
(146424, 114846, 'ca', 'name', 'Parque de Investigación Biomédica de Barcelona'),
(146425, 114846, 'en', 'name', 'Barcelona Biomedical Research Park'),
(146426, 114846, 'es', 'name', 'Parc de Recerca BiomĆØdica de Barcelona'),
(146427, 114847, 'fr', 'name', 'Littoral, Environnement, TƩlƩdƩtection, GƩomatique'),
(146428, 114848, 'en', 'name', 'The Japan Muscular Dystrophy Association'),
(146429, 114848, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬ē­‹ć‚øć‚¹ćƒˆćƒ­ćƒ•ć‚£ćƒ¼å”ä¼š'),
(146430, 114849, 'en', 'name', 'Association for Rainwater Storage and Infiltration Technology'),
(146431, 114849, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗé›Øę°“č²Æē•™ęµøé€ęŠ€č”“å”ä¼š'),
(146432, 114850, 'en', 'name', 'Grenoble Institute of Technology'),
(146433, 114850, 'fr', 'name', 'Institut polytechnique de Grenoble'),
(146434, 114851, 'en', 'name', 'Association for the Conservation of Biodiversity of Kazakhstan'),
(146435, 114852, 'no_lang_code', 'name', 'DXC Technology (United States)'),
(146436, 114853, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© المعارف الجامعة'),
(146437, 114853, 'en', 'name', 'University of Al Maarif'),
(146438, 114854, 'en', 'name', 'International Centre for Radio Astronomy Research'),
(146439, 114855, 'pt', 'name', 'Centro de Investigação e Desenvolvimento em Ciências Jurídicas Ratio Legis'),
(146440, 114856, 'pt', 'name', 'Novotecna - Associação para o Desenvolvimento Tecnológico, Novotecna'),
(146441, 114857, 'en', 'name', 'Ministry of Justice, Iran'),
(146442, 114857, 'fa', 'name', 'وزارت دادگستری Ų¬Ł…Ł‡ŁˆŲ±ŪŒ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§ŪŒŲ±Ų§Ł†'),
(146443, 114858, 'en', 'name', 'Law Enforcement Academy of the Republic of Uzbekistan'),
(146444, 114858, 'ru', 'name', 'ŠŸŃ€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠøŃ‚ŠµŠ»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ Республики Узбекистан'),
(146445, 114858, 'uz', 'name', 'Oʻzbekiston Respublikasi Huquqni muhofaza qilish akademiyasi'),
(146446, 114859, 'en', 'name', 'Woogene B&G Co., Ltd., Woogene B&G Co., Ltd. (South Korea)'),
(146447, 114859, 'ko', 'name', 'ģš°ģ§„ė¹„ģ•¤ģ§€ ģ£¼ģ‹ķšŒģ‚¬'),
(146448, 114860, 'en', 'name', 'Institute of Public Health of Sabac'),
(146449, 114860, 'sr', 'name', 'Zavod za javno zdravlje Å abac'),
(146450, 114861, 'no_lang_code', 'name', 'SPEMD Eventos CientĆ­ficos e Culturais (Portugal), SPEMD Scientific and Cultural Events'),
(146451, 114862, 'en', 'name', 'Kohzu Precision Co., Ltd., Kohzu Precision Co., Ltd. (Japan)'),
(146452, 114862, 'ja', 'name', 'ē„žę“„ē²¾ę©Ÿę Ŗå¼ä¼šē¤¾'),
(146453, 114863, 'en', 'name', 'Sree Abirami College of Occupational Therapy'),
(146454, 114864, 'en', 'name', 'Sanmu Medical Center'),
(146455, 114864, 'ja', 'name', 'åœ°ę–¹ē‹¬ē«‹č”Œę”æę³•äŗŗć•ć‚“ć‚€åŒ»ē™‚ć‚»ćƒ³ć‚æćƒ¼'),
(146456, 114865, 'fr', 'name', 'HƓpital HƓtel-Dieu de LƩvis'),
(146457, 114866, 'de', 'name', 'Institut für Programmiersprachen und -systeme'),
(146458, 114866, 'en', 'name', 'Institute for Programming Languages and Systems'),
(146459, 114867, 'en', 'name', 'GlobalNeurology'),
(146460, 114868, 'en', 'name', 'Karabakh University'),
(146461, 114869, 'en', 'name', 'JFE Engineering Corporation, JFE Engineering Corporation (Japan)'),
(146462, 114869, 'ja', 'name', 'JFEć‚Øćƒ³ć‚øćƒ‹ć‚¢ćƒŖćƒ³ć‚° ę Ŗå¼ä¼šē¤¾'),
(146463, 114870, 'en', 'name', 'The Japan Refrigeration and Air Conditioning Industry Association'),
(146464, 114870, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗę—„ęœ¬å†·å‡ē©ŗčŖæå·„ę„­ä¼š'),
(146465, 114871, 'pt', 'name', 'Sociedade Portuguesa de Cardiologia VeterinƔria'),
(146466, 114872, 'en', 'name', 'Japan Water Works Association'),
(146467, 114872, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę°“é“å”ä¼š'),
(146468, 114873, 'en', 'name', 'Far Eastern Branch of the Russian Academy of Sciences'),
(146469, 114873, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ автоматики Šø процессов ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ Š”Š°Š»ŃŒŠ½ŠµŠ²Š¾ŃŃ‚Š¾Ń‡Š½Š¾Š³Š¾ Š¾Ń‚Š“ŠµŠ»ŠµŠ½ŠøŃ Российской акаГемии наук'),
(146470, 114874, 'en', 'name', 'RV University'),
(146471, 114875, 'no_lang_code', 'name', 'AmpliPhi Biosciences (United States)'),
(146472, 114876, 'en', 'name', 'LINQ management, LINQ management (Germany)'),
(146473, 114877, 'pt', 'name', 'Alto Comissariado para as MigraƧƵes'),
(146474, 114878, 'en', 'name', 'Princess Elizabeth Orthopaedic Centre'),
(146475, 114879, 'en', 'name', 'Central Clinic Povoa Santa Iria'),
(146476, 114879, 'pt', 'name', 'Clínica Central Póvoa Santa Iria Lda, Clínica Central Póvoa Santa Iria Lda (Portugal)'),
(146477, 114880, 'en', 'name', 'Soochow University'),
(146478, 114880, 'zh', 'name', 'č‹å·žå¤§å­¦'),
(146479, 114881, 'en', 'name', 'Dr. Babasaheb Ambedkar Technological University'),
(146480, 114881, 'mr', 'name', 'ą¤”ą„‰. ą¤¬ą¤¾ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤†ą¤‚ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤¤ą¤‚ą¤¤ą„ą¤°ą¤¶ą¤¾ą¤øą„ą¤¤ą„ą¤° ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(146481, 114882, 'en', 'name', 'LoveYourself Inc.'),
(146482, 114883, 'en', 'name', 'Shanghai Municipal Education Commission'),
(146483, 114884, 'pt', 'name', 'Estação Nacional de Fruticultura Vieira Natividade'),
(146484, 114885, 'cs', 'name', 'Výzkumný Ćŗstav komunikace v uměnĆ­'),
(146485, 114885, 'en', 'name', 'Research Institute of Communication in Art'),
(146486, 114886, 'en', 'name', 'Abdou Moumouni University'),
(146487, 114886, 'fr', 'name', 'UniversitƩ Abdou Moumouni'),
(146488, 114887, 'pt', 'name', 'Centro de Informação Europeia Jacques Delors'),
(146489, 114888, 'en', 'name', 'Crediton Hospital'),
(146490, 114889, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© بن ŲŗŁˆŲ±ŁŠŁˆŁ†'),
(146491, 114889, 'en', 'name', 'Ben-Gurion University of the Negev'),
(146492, 114889, 'he', 'name', '××•× ×™×‘×Ø×”×™×˜×Ŗ בן-×’×•×Ø×™×•×Ÿ בנגב'),
(146493, 114890, 'en', 'name', 'Chiba Meitoku College'),
(146494, 114890, 'ja', 'name', 'åƒč‘‰ę˜Žå¾³ēŸ­ęœŸå¤§å­¦'),
(146495, 114891, 'bn', 'name', 'কেরল ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(146496, 114891, 'en', 'name', 'University of Kerala'),
(146497, 114891, 'fr', 'name', 'UniversitƩ du kerala'),
(146498, 114891, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“øąµ¼ ą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(146499, 114891, 'ta', 'name', 'கேரளா ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(146500, 114892, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ±ŲØŁŠŲ©'),
(146501, 114892, 'en', 'name', 'Ministry of Education'),
(146502, 114893, 'en', 'name', 'Manitoba Geological Survey');
INSERT INTO `ror_settings` VALUES
(146503, 114894, 'no_lang_code', 'name', 'Success Gadget Nanotechnology and New Materials, Success Gadget Nanotecnologia e Novos Materiais (Portugal)'),
(146504, 114895, 'pt', 'name', 'Rede de Investigação sobre Condições de Trabalho'),
(146505, 114896, 'no_lang_code', 'name', 'State Grid Corporation of China (China)'),
(146506, 114896, 'zh', 'name', 'å›½å®¶ē”µē½‘å…¬åø'),
(146507, 114897, 'en', 'name', 'Okehampton Hospital'),
(146508, 114898, 'no_lang_code', 'name', 'Leo Pharma (Denmark)'),
(146509, 114899, 'en', 'name', 'Division of Earth Sciences'),
(146510, 114900, 'id', 'name', 'Universitas Harapan Bangsa'),
(146511, 114901, 'no_lang_code', 'name', 'Researcherenye Wappayalawangka - Central Australia Academic Health Science Network'),
(146512, 114902, 'fr', 'name', 'CEAO - Centre des Etudes Arabes et Orientales, Centre des Etudes Arabes et Orientales'),
(146513, 114903, 'pt', 'name', 'Laboratório Colaborativo para a Bioeconomia Azul'),
(146514, 114904, 'en', 'name', 'Syiah Kuala University'),
(146515, 114904, 'id', 'name', 'Universitas Syiah Kuala'),
(146516, 114905, 'en', 'name', 'The Asahi Glass Foundation'),
(146517, 114905, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę—­ē”å­č²”å›£'),
(146518, 114906, 'en', 'name', 'Naval Medical Research Unit INDO PACIFIC'),
(146519, 114907, 'pt', 'name', 'Sociedade Portuguesa de Antropologia e Etnologia'),
(146520, 114908, 'en', 'name', 'Nusamandiri University'),
(146521, 114908, 'id', 'name', 'Universitas Nusa Mandiri'),
(146522, 114909, 'en', 'name', 'Broadcast Programming Center of Japan'),
(146523, 114909, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę”¾é€ē•Ŗēµ„ć‚»ćƒ³ć‚æćƒ¼'),
(146524, 114910, 'no_lang_code', 'name', 'MyFace Academy, MyFace Academy (Portugal)'),
(146525, 114911, 'en', 'name', 'Aravind Eye Hospital'),
(146526, 114912, 'en', 'name', 'Central Institute of Pedagogical Sciences'),
(146527, 114912, 'es', 'name', 'Instituto Central de Ciencias Pedagógicas'),
(146528, 114913, 'en', 'name', 'The Microsampling Laboratory'),
(146529, 114914, 'de', 'name', 'Deutsches Historisches Institut Moskau'),
(146530, 114914, 'en', 'name', 'German Historical Institute Moscow'),
(146531, 114914, 'ru', 'name', 'Германский исторический ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ в Москве'),
(146532, 114915, 'en', 'name', 'Baptist College of Theology, Obinze'),
(146533, 114916, 'no_lang_code', 'name', 'Atomedical - Laboratório de Medicina Nuclear, Atomedical, Atomedical (Portugal), Atomedical - Nuclear Medicine Laboratory'),
(146534, 114917, 'en', 'name', 'Georgetown University'),
(146535, 114917, 'es', 'name', 'Universidad de Georgetown'),
(146536, 114917, 'fr', 'name', 'UniversitƩ de Georgetown'),
(146537, 114918, 'es', 'name', 'Grupo de Ecología y Conservación de Islas, A.C.'),
(146538, 114919, 'fr', 'name', 'Interactions HƓte-Greffon-Tumeur & IngƩnierie Cellulaire et GƩnique'),
(146539, 114920, 'en', 'name', 'United States Army Corps of Engineers'),
(146540, 114920, 'es', 'name', 'Cuerpo de Ingenieros del EjƩrcito de los Estados Unidos'),
(146541, 114920, 'fr', 'name', 'Corps des ingĆ©nieurs de l''armĆ©e des Ɖtats-unis'),
(146542, 114921, 'en', 'name', 'GBS/CIDP Foundation International'),
(146543, 114922, 'en', 'name', 'The Mori Memorial Foundation'),
(146544, 114922, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę£®čØ˜åæµč²”å›£'),
(146545, 114923, 'pt', 'name', 'Sociedade Portuguesa de QuĆ­mica'),
(146546, 114924, 'en', 'name', 'National Football League'),
(146547, 114925, 'en', 'name', 'Chongqing Science and Technology Commission'),
(146548, 114926, 'no_lang_code', 'name', 'AG da Cunha Ferreira (Portugal)'),
(146549, 114927, 'en', 'name', 'Van der Waals-Zeeman Institute'),
(146550, 114928, 'en', 'name', 'The Japanese Midwives Association'),
(146551, 114928, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬åŠ©ē”£åø«ä¼š'),
(146552, 114929, 'en', 'name', 'CoLab4Food'),
(146553, 114930, 'pt', 'name', 'CoLAB BIOREF'),
(146554, 114931, 'en', 'name', 'Hope Foundation'),
(146555, 114932, 'en', 'name', 'Global Mountain Action'),
(146556, 114933, 'en', 'name', 'Ventio, Ventio (France)'),
(146557, 114934, 'en', 'name', 'American Society for Inclusion, Diversity, and Equity in Healthcare (ASIDE)'),
(146558, 114935, 'en', 'name', 'Central Research Institute for Machine Building'),
(146559, 114935, 'ru', 'name', 'Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Š½Š°ŃƒŃ‡Š½Š¾-ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š¼Š°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠµŠ½ŠøŃ'),
(146560, 114936, 'pt', 'name', 'Centro de Ɖtica Polƭtica e Sociedade'),
(146561, 114937, 'en', 'name', 'Cystic Fibrosis Ireland'),
(146562, 114938, 'en', 'name', 'EDF LAB Singapore Pte Ltd, EDF LAB Singapore Pte Ltd (Singapore)'),
(146563, 114939, 'pt', 'name', 'Universidade Portucalense'),
(146564, 114940, 'it', 'name', 'SocietĆ  Italiana dell’Ipertensione Arteriosa'),
(146565, 114941, 'en', 'name', 'Western Washington University'),
(146566, 114942, 'en', 'name', 'Air Education and Training Command'),
(146567, 114943, 'sv', 'name', 'Region JƤmtland HƤrjedalen'),
(146568, 114944, 'pt', 'name', 'Arquivo Nacional da Torre do Tombo'),
(146569, 114945, 'pl', 'name', 'Polskie Towarzystwo Teologiczne'),
(146570, 114946, 'en', 'name', 'Rokko Island Kohnan Hospital'),
(146571, 114946, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗē”²å—ä¼šå…­ē”²ć‚¢ć‚¤ćƒ©ćƒ³ćƒ‰ē”²å—ē—…é™¢, å…­ē”²ć‚¢ć‚¤ćƒ©ćƒ³ćƒ‰ē”²å—ē—…é™¢'),
(146572, 114947, 'en', 'name', 'HUN-REN Centre for Energy Research'),
(146573, 114947, 'hu', 'name', 'HUN-REN EnergiatudomÔnyi Kutatóközpont'),
(146574, 114948, 'en', 'name', 'Tufts University'),
(146575, 114949, 'en', 'name', 'The Graduate School of Social Design'),
(146576, 114949, 'ja', 'name', 'ē¤¾ä¼šę§‹ęƒ³å¤§å­¦é™¢å¤§å­¦'),
(146577, 114950, 'el', 'name', 'Elliniki Archi Geologikon Kai Metalleftikon Erevnon, Ελληνική Αρχή Ī“ĪµĻ‰Ī»ĪæĪ³Ī¹ĪŗĻŽĪ½ & ĪœĪµĻ„Ī±Ī»Ī»ĪµĻ…Ļ„Ī¹ĪŗĻŽĪ½ Ī•ĻĪµĻ…Ī½ĻŽĪ½'),
(146578, 114950, 'en', 'name', 'Hellenic Survey of Geology and Mineral Exploration'),
(146579, 114951, 'en', 'name', 'Energy Institute for Higher Education'),
(146580, 114951, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ų¢Ł…ŁˆŲ²Ų“ Ų¹Ų§Ł„ŪŒ Ų§Ł†Ų±Ś˜ŪŒ'),
(146581, 114952, 'en', 'name', 'University of DunaújvÔros'),
(146582, 114952, 'hr', 'name', 'DunaújvÔrosi Egyetem'),
(146583, 114953, 'pt', 'name', 'Direção de História e Cultura Militar'),
(146584, 114954, 'en', 'name', 'Carnegie Mellon University'),
(146585, 114955, 'en', 'name', 'BGI Research, Wuhan'),
(146586, 114955, 'zh', 'name', 'ę­¦ę±‰åŽå¤§ē”Ÿå‘½ē§‘å­¦ē ”ē©¶é™¢'),
(146587, 114956, 'en', 'name', 'Express Highway Research Foundation of Japan'),
(146588, 114956, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗé«˜é€Ÿé“č·ÆčŖæęŸ»ä¼š'),
(146589, 114957, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŁŁ†ŁŠŲ© درنة'),
(146590, 114957, 'en', 'name', 'College of Technical Sciences Derna'),
(146591, 114958, 'en', 'name', 'Ibaraki Nursing Association'),
(146592, 114958, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗčŒØåŸŽēœŒēœ‹č­·å”ä¼š'),
(146593, 114959, 'en', 'name', 'Ecuadorian Corporation for the Development of Research and Academia'),
(146594, 114959, 'es', 'name', 'Corporación Ecuatoriana para el Desarrollo de la Investigación y la Academia'),
(146595, 114960, 'en', 'name', 'United States Naval Hospital Okinawa'),
(146596, 114960, 'ja', 'name', 'ē±³å›½ęµ·č»ē—…é™¢'),
(146597, 114961, 'en', 'name', 'Strategies for Open Science (Stratos)'),
(146598, 114962, 'en', 'name', 'The Japanese Orthopaedic Association'),
(146599, 114962, 'ja', 'name', 'å…¬ē›Šē¤¾å›£ę³•äŗŗę—„ęœ¬ę•“å½¢å¤–ē§‘å­¦ä¼š'),
(146600, 114963, 'no_lang_code', 'name', 'Topcon (Netherlands)'),
(146601, 114964, 'en', 'name', 'Dynamic Ideas, Dynamic Ideas (United States)'),
(146602, 114965, 'en', 'name', 'Japan Greenery Research and Development Center'),
(146603, 114965, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ē·‘åŒ–ć‚»ćƒ³ć‚æćƒ¼'),
(146604, 114966, 'en', 'name', 'Central Research Services, Inc.'),
(146605, 114966, 'ja', 'name', 'äø€čˆ¬ē¤¾å›£ę³•äŗŗäø­å¤®čŖæęŸ»ē¤¾'),
(146606, 114967, 'en', 'name', 'Uekusa Gakuen Junior College'),
(146607, 114967, 'ja', 'name', 'ę¤č‰å­¦åœ’ēŸ­ęœŸå¤§å­¦'),
(146608, 114968, 'en', 'name', 'Fukuchiyama City Hospital'),
(146609, 114968, 'ja', 'name', 'åø‚ē«‹ē¦ēŸ„å±±åø‚ę°‘ē—…é™¢'),
(146610, 114969, 'pt', 'name', 'Parques de Sintra Monte da Lua SA'),
(146611, 114970, 'cs', 'name', 'Fyziologický Ćŗstav AV ČR, Fyziologický Ćŗstav AV ČR, v. v. i., Fyziologický Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(146612, 114970, 'en', 'name', 'Czech Academy of Sciences, Institute of Physiology'),
(146613, 114971, 'de', 'name', 'Institut für Geschichte und Theorie der Architektur GTA'),
(146614, 114971, 'en', 'name', 'Institute for the History and Theory of Architecture'),
(146615, 114972, 'en', 'name', 'Federal State Budgetary Institution ā€˜Scientific Centre for Expert Evaluation of Medicinal Products’ of the Ministry of Health of the Russian Federation (SCEEMP)'),
(146616, 114972, 'ru', 'name', 'Ā«ŠŠ°ŃƒŃ‡Š½Ń‹Š¹ центр ŃŠŗŃŠæŠµŃ€Ń‚ŠøŠ·Ń‹ среГств меГицинского ŠæŃ€ŠøŠ¼ŠµŠ½ŠµŠ½ŠøŃĀ» ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š° Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Российской ФеГерации (ФГБУ Ā«ŠŠ¦Š­Š”ŠœŠŸĀ» ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России)'),
(146617, 114973, 'en', 'name', 'Exmouth Hospital'),
(146618, 114974, 'en', 'name', 'Society for AgroEnvironmental Sustainability'),
(146619, 114975, 'en', 'name', 'Afro-American University of Central Africa'),
(146620, 114976, 'en', 'name', 'New Energy Foundation'),
(146621, 114976, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę–°ć‚Øćƒćƒ«ć‚®ćƒ¼č²”å›£'),
(146622, 114977, 'en', 'name', 'Fun Languages'),
(146623, 114978, 'no_lang_code', 'name', 'Pfizer (Ireland)'),
(146624, 114979, 'pt', 'name', 'Unidade Local de SaĆŗde de Braga'),
(146625, 114980, 'no_lang_code', 'name', 'Brainanswer (Portugal)'),
(146626, 114981, 'es', 'name', 'Escuela Normal de San Felipe del Progreso'),
(146627, 114982, 'en', 'name', 'Osaka Tokiwakai Junior College'),
(146628, 114982, 'ja', 'name', '大阪常磐会大学短期大学部'),
(146629, 114983, 'de', 'name', 'Institut für Quantenelektronik'),
(146630, 114983, 'en', 'name', 'Institute for Quantum Electronics'),
(146631, 114984, 'en', 'name', 'Tokyo Shinagawa Hospital'),
(146632, 114984, 'ja', 'name', 'åŒ»ē™‚ę³•äŗŗē¤¾å›£ē·‘é‡Žä¼šę±äŗ¬å“å·ē—…é™¢'),
(146633, 114985, 'en', 'name', 'FIRST Center for Micro- and Nanoscience'),
(146634, 114986, 'en', 'name', 'EVICR Network'),
(146635, 114987, 'en', 'name', 'David Grant USAF Medical Center'),
(146636, 114988, 'fr', 'name', 'SociƩtƩ de MathƩmatiques AppliquƩes et Industrielles'),
(146637, 114989, 'id', 'name', 'Sekolah Tinggi Pastoral - Yayasan Institut Pastoral Indonesia Malang'),
(146638, 114990, 'en', 'name', 'Higher institute for environmental engineering and management - ISIGE, Mines Paris, PSL University, Higher institute for environmental engineering and management (ISIGE)'),
(146639, 114990, 'fr', 'name', 'Institut SupĆ©rieur d''IngĆ©nierie et Gestion de l''Environnement - ISIGE, Mines Paris, UniversitĆ© PSL, Institut SupĆ©rieur d’IngĆ©nierie et Gestion de l''Environnement (ISIGE)'),
(146640, 114991, 'fr', 'name', 'Interactions hotes-vecteurs-parasites-environnement dans les maladies tropicales nƩgligƩes dues aux trypanosomatides'),
(146641, 114992, 'en', 'name', 'Kyoto City International Foundation'),
(146642, 114992, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗäŗ¬éƒ½åø‚å›½éš›äŗ¤ęµå”ä¼š'),
(146643, 114993, 'en', 'name', 'United States Africa Command'),
(146644, 114994, 'en', 'name', 'Naval Medical Research Unit San Antonio'),
(146645, 114995, 'de', 'name', 'SRH Fernhochschule Riedlingen'),
(146646, 114996, 'en', 'name', 'Maharshi Dayanand Science College, Porbandar'),
(146647, 114997, 'fr', 'name', 'DƩpartement de Recherche en IngƩnierie des VƩhicules pour l''Environnement'),
(146648, 114998, 'pt', 'name', 'Pavilhão do Conhecimento-Centro Ciência Viva'),
(146649, 114999, 'no_lang_code', 'name', 'EnviSolutions, EnviSolutions (Portugal)'),
(146650, 115000, 'en', 'name', 'Linkƶping University'),
(146651, 115000, 'fi', 'name', 'Linkƶpingin Yliopisto'),
(146652, 115000, 'sv', 'name', 'Linkƶpings Universitet'),
(146653, 115001, 'en', 'name', 'Agropolymer Engineering and Emerging Technologies'),
(146654, 115001, 'fr', 'name', 'Ingénierie des Agropolymères et Technologies Emergentes'),
(146655, 115002, 'no_lang_code', 'name', 'Starmark (United States)'),
(146656, 115003, 'en', 'name', 'Northwestern University'),
(146657, 115004, 'en', 'name', 'Odesa State Agrarian University'),
(146658, 115004, 'uk', 'name', 'ŠžŠ“ŠµŃŃŒŠŗŠøŠ¹ Гержавний аграрний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(146659, 115005, 'de', 'name', 'EcoAustria Institut für Wirtschaftsforschung'),
(146660, 115006, 'en', 'name', 'Medical Colleges of Northern Philippines'),
(146661, 115007, 'en', 'name', 'International Centre for Water Security and Sustainable Management'),
(146662, 115007, 'ko', 'name', 'ģœ ė„¤ģŠ¤ģ½” 물 ģ•ˆė³“ źµ­ģ œģ—°źµ¬źµģœ”ģ„¼ķ„°'),
(146663, 115008, 'en', 'name', 'National Academy of Agrarian Sciences of Ukraine'),
(146664, 115008, 'uk', 'name', 'ŠŠŠ¦Š†ŠžŠŠŠ›Š¬ŠŠ ŠŠšŠŠ”Š•ŠœŠ†ŠÆ ŠŠ“Š ŠŠ ŠŠ˜Š„ ŠŠŠ£Šš Š£ŠšŠ ŠŠ‡ŠŠ˜'),
(146665, 115009, 'pt', 'name', 'Centro de Estudos Interculturais'),
(146666, 115010, 'pt', 'name', 'Centro Interdisciplinar de Estudos Educacionais'),
(146667, 115011, 'en', 'name', 'Ankaful Psychiatric Hospital'),
(146668, 115012, 'en', 'name', 'Rashtriya Raksha University'),
(146669, 115013, 'fr', 'name', 'Terres Inovia'),
(146670, 115014, 'de', 'name', 'FHWien der WKW'),
(146671, 115015, 'no_lang_code', 'name', 'Prosport - Rocha, Moreira, Pinto & Soares (Portugal)'),
(146672, 115016, 'en', 'name', 'Health and Services of Polynesian Ecosystems'),
(146673, 115016, 'fr', 'name', 'Santé et Services des Ecosytèmes Polynésiens'),
(146674, 115017, 'en', 'name', 'AOI Universal Hospital'),
(146675, 115017, 'ja', 'name', 'AOIå›½éš›ē—…é™¢'),
(146676, 115018, 'pt', 'name', 'Centro de Estudos Internacionais'),
(146677, 115019, 'no_lang_code', 'name', 'Elia (Belgium)'),
(146678, 115020, 'en', 'name', 'Educational Department of Liaoning Province'),
(146679, 115020, 'zh', 'name', 'č¾½å®ēœę•™č‚²åŽ…'),
(146680, 115021, 'no_lang_code', 'name', 'Boehringer Ingelheim (Portugal)'),
(146681, 115022, 'en', 'name', 'Gezhouba Central Hospital of Sinopharm'),
(146682, 115022, 'zh', 'name', 'å›½čÆč‘›ę“²åäø­åæƒåŒ»é™¢'),
(146683, 115023, 'de', 'name', 'Institut AllergoSan Pharmazeutische Produkte Forschungs- und Vertriebs GmbH, Institut AllergoSan Pharmazeutische Produkte Forschungs- und Vertriebs GmbH (Austria)'),
(146684, 115024, 'en', 'name', 'University of Bath'),
(146685, 115025, 'en', 'name', 'United States Air Force Electronic Systems Center'),
(146686, 115026, 'en', 'name', 'Regenerative NanoMedicine'),
(146687, 115027, 'en', 'name', 'Islamic Azad University Sari Branch'),
(146688, 115027, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد ساری'),
(146689, 115028, 'hu', 'name', 'Richter Gedeon Nyrt'),
(146690, 115028, 'no_lang_code', 'name', 'Gedeon Richter (Hungary)'),
(146691, 115029, 'en', 'name', 'Texas A&M University System'),
(146692, 115029, 'es', 'name', 'Sistema Universitario Texas A&M'),
(146693, 115030, 'en', 'name', 'Utkal University'),
(146694, 115030, 'hi', 'name', 'ą¤‰ą¤¤ą„ą¤•ą¤² ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(146695, 115031, 'en', 'name', 'South Carolina Department of Public Health'),
(146696, 115032, 'es', 'name', 'Universidad Adventista del Plata'),
(146697, 115033, 'pt', 'name', 'Centro de FĆ­sica das Universidades do Minho e do Porto'),
(146698, 115034, 'en', 'name', 'Flux50'),
(146699, 115035, 'en', 'name', 'National Research Institute for Agriculture, Food and Environment'),
(146700, 115035, 'fr', 'name', 'Institut National de Recherche pour l''Agriculture, l''Alimentation et l''Environnement'),
(146701, 115036, 'en', 'name', 'Victoria University of Wellington'),
(146702, 115036, 'mi', 'name', 'Te Herenga Waka'),
(146703, 115037, 'en', 'name', 'Center for Research and Development in Agrifood Systems and Sustainability'),
(146704, 115037, 'pt', 'name', 'Centro de Investigação e Desenvolvimento em Sistemas Agroalimentares e Sustentabilidade'),
(146705, 115038, 'en', 'name', 'Polytechnic Institute of Castelo Branco'),
(146706, 115038, 'pt', 'name', 'Instituto PolitƩcnico de Castelo Branco'),
(146707, 115039, 'en', 'name', 'Research Center for Industrial Problems of Development of the National Academy of Sciences of Ukraine'),
(146708, 115039, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ГосліГний центр Ń–Š½Š“ŃƒŃŃ‚Ń€Ń–Š°Š»ŃŒŠ½ŠøŃ… проблем Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії наук України'),
(146709, 115040, 'en', 'name', 'Interdisciplinary Research Group of Sechium edule in MƩxico'),
(146710, 115040, 'es', 'name', 'Grupo Interdisciplinario de Investigación en Sechium edule en México'),
(146711, 115041, 'en', 'name', 'CoE MARBLE - Centre of Excellence in Maritime Robotics and Technologies for Sustainable Blue Economy'),
(146712, 115042, 'fr', 'name', 'ACCompagnement Pluriprofessionnel PatienT'),
(146713, 115043, 'en', 'name', 'CancerCare Manitoba'),
(146714, 115044, 'en', 'name', 'University of the Pacific'),
(146715, 115045, 'en', 'name', 'Medical University of Silesia'),
(146716, 115045, 'pl', 'name', 'Śląski Uniwersytet Medyczny w Katowicach'),
(146717, 115046, 'no_lang_code', 'name', 'Fiat Chrysler Automobiles (Italy)'),
(146718, 115047, 'en', 'name', 'The Exploratory Research Center on Life and Living Systems'),
(146719, 115047, 'ja', 'name', 'ē”Ÿå‘½å‰µęˆęŽ¢ē©¶ć‚»ćƒ³ć‚æćƒ¼'),
(146720, 115048, 'no_lang_code', 'name', 'Saxion'),
(146721, 115049, 'bn', 'name', 'ą¦¤ą§‡ą¦œą¦Ŗą§ą¦° ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(146722, 115049, 'en', 'name', 'Tezpur University'),
(146723, 115049, 'hi', 'name', 'ą¤¤ą„‡ą¤œą¤Ŗą„ą¤° ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(146724, 115050, 'en', 'name', 'IPDT Tourism (Portugal)'),
(146725, 115051, 'en', 'name', 'AcademyGate'),
(146726, 115051, 'no_lang_code', 'name', 'AcademyGate (Azerbaijan)'),
(146727, 115052, 'en', 'name', 'Tech University of Korea'),
(146728, 115052, 'ko', 'name', 'ķ•œźµ­ź³µķ•™ėŒ€ķ•™źµ'),
(146729, 115053, 'pt', 'name', 'Hospital Cruz Vermelha'),
(146730, 115054, 'no_lang_code', 'name', 'Ferring Pharmaceuticals (Portugal)'),
(146731, 115055, 'en', 'name', 'Center for Direct Scientific Communication'),
(146732, 115055, 'es', 'name', 'Centro para la Comunicación Científica Directa'),
(146733, 115055, 'fr', 'name', 'Centre pour la Communication Scientifique Directe'),
(146734, 115056, 'ar', 'name', 'مؓترکہ فوجی ہسپتال کوہاٹ'),
(146735, 115056, 'en', 'name', 'Combined Military Hospital Kohat'),
(146736, 115057, 'en', 'name', 'Batam Institute of Technology'),
(146737, 115057, 'id', 'name', 'Institut Teknologi Batam'),
(146738, 115058, 'en', 'name', 'United States Air Force'),
(146739, 115059, 'az', 'name', 'Azərbaycan Milli Elmlər Akademiyası'),
(146740, 115059, 'en', 'name', 'Azerbaijan National Academy of Sciences'),
(146741, 115059, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук АзербайГжана'),
(146742, 115060, 'en', 'name', 'Xiamen Municipal Bureau of Science and Technology'),
(146743, 115060, 'zh', 'name', 'åŽ¦é—Øē§‘å­¦ęŠ€ęœÆå±…'),
(146744, 115061, 'pt', 'name', 'Fundação Portugal África'),
(146745, 115062, 'pt', 'name', 'Instituto UniversitƔrio JustiƧa e Paz, Justice and Peace University Institute'),
(146746, 115063, 'en', 'name', 'Heuristics and Diagnostics for Complex Systems'),
(146747, 115063, 'fr', 'name', 'Heuristique et Diagnostic des SystĆØmes Complexes'),
(146748, 115064, 'no_lang_code', 'name', 'Fresh Ideas Design and Multimedia, Ideias Frescas Design e MultimƩdia (Portugal)'),
(146749, 115065, 'de', 'name', 'KinderKunstLabor für zeitgenƶssische Kunst, NƖ Kulturlandeshauptstadt St. Pƶlten GmbH'),
(146750, 115066, 'fr', 'name', 'Institut d''Asie Orientale'),
(146751, 115067, 'bn', 'name', 'মিলিটারি ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦øą¦¾ą¦Æą¦¼ą§‡ą¦Øą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą§‡ą¦•ą¦Øą§‹ą¦²ą¦œą¦æ'),
(146752, 115067, 'en', 'name', 'Military Institute of Science and Technology'),
(146753, 115067, 'ml', 'name', 'ą“øąµˆą“Øą“æą“• ą“¶ą“¾ą“øąµą“¤ąµą“°ą“øą“¾ą“™ąµą“•ąµ‡ą“¤ą“æą“• ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“Ÿąµą“Æąµ‚ą“Ÿąµą“Ÿąµ, ą“¬ą“‚ą“—ąµą“²ą“¾ą“¦ąµ‡ą“¶ąµ'),
(146754, 115068, 'de', 'name', 'Dokumentationsarchiv des ƶsterreichischen Widerstandes'),
(146755, 115068, 'en', 'name', 'Documentation Centre of Austrian Resistance'),
(146756, 115069, 'fr', 'name', 'Laboratoire de PhonƩtique et Phonologie'),
(146757, 115070, 'no_lang_code', 'name', 'Centro de HemodiƔlise (Portugal), Centro de HemodiƔlise, S.A., Centrodial Hemodialysis Centre'),
(146758, 115071, 'en', 'name', 'William James Center for Research'),
(146759, 115072, 'en', 'name', 'Institute for Neurodegenerative Diseases'),
(146760, 115073, 'en', 'name', 'Japanese-French Laboratory for Informatics'),
(146761, 115073, 'ja', 'name', 'ę—„ä»ęƒ…å ±å­¦é€£ęŗē ”ē©¶ę‹ ē‚¹'),
(146762, 115074, 'en', 'name', 'Electrochem Technologies & Materials Inc., Electrochem Technologies & Materials Inc. (Canada)'),
(146763, 115075, 'en', 'name', 'International Leadership University'),
(146764, 115076, 'en', 'name', 'Alliance for Decision Education'),
(146765, 115077, 'en', 'name', 'Advanced Institute for Wildlife Conservation'),
(146766, 115077, 'ta', 'name', 'ą®‰ą®Æą®°ąÆą®Øą®æą®²ąÆˆ வன ą®‰ą®Æą®æą®°ą®æą®©ą®ŖąÆ ą®Ŗą®¾ą®¤ąÆą®•ą®¾ą®ŖąÆą®ŖąÆ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(146767, 115078, 'de', 'name', 'Bayerische Akademie für Naturschutz und Landschaftspflege'),
(146768, 115079, 'fr', 'name', 'DƩlƩgation Ile-de-France Villejuif'),
(146769, 115080, 'en', 'name', 'Rio Grande do Sul Federal Institute of Education, Science and Technology'),
(146770, 115080, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia do Rio Grande do Sul'),
(146771, 115081, 'en', 'name', 'Manipal Academy of Higher Education, Dubai'),
(146772, 115082, 'en', 'name', 'The Institute for Artificial Intelligence Research and Development of Serbia'),
(146773, 115082, 'sr', 'name', 'Istraživačko-razvojni institut za veŔtačku inteligenciju Srbije'),
(146774, 115083, 'nl', 'name', 'Vrije Universiteit Amsterdam'),
(146775, 115084, 'fr', 'name', 'Groupe de recherche et d''accueil en droit et Ʃconomie de la santƩ'),
(146776, 115085, 'pt', 'name', 'Instituto de Plasmas e Fusão Nuclear'),
(146777, 115086, 'en', 'name', 'oDocs Eye Care Research Institute, oDocs Eye Care Research Institute (New Zealand)'),
(146778, 115087, 'en', 'name', 'Shahid Beheshti University'),
(146779, 115087, 'fa', 'name', 'دانؓگاه Ų“Ł‡ŪŒŲÆ ŲØŁ‡Ų“ŲŖŪŒ'),
(146780, 115088, 'en', 'name', 'SĆ£o Paulo State University'),
(146781, 115088, 'es', 'name', 'Universidad Estatal Paulista'),
(146782, 115088, 'pt', 'name', 'Universidade Estadual Paulista "JĆŗlio de Mesquita Filho", Universidade Estadual Paulista (Unesp)'),
(146783, 115089, 'de', 'name', 'Sigmund Freud PrivatuniversitƤt - Standort Mailand'),
(146784, 115089, 'en', 'name', 'Sigmund Freud Private University - Campus Milano'),
(146785, 115090, 'en', 'name', 'The Abdus Salam International Centre for Theoretical Physics (ICTP)'),
(146786, 115090, 'it', 'name', 'Centro Internazionale di Fisica Teorica Abdus Salam'),
(146787, 115090, 'sl', 'name', 'Mednarodno srediŔče Abdusa Salama za teoretično fiziko'),
(146788, 115091, 'en', 'name', 'One Hundred Seventy-Ninth School'),
(146789, 115091, 'ru', 'name', 'Š“Š‘ŠžŠ£ "Школа ā„–179"'),
(146790, 115092, 'en', 'name', 'Autonomous University of the West'),
(146791, 115092, 'es', 'name', 'Universidad Autónoma de Occidente'),
(146792, 115093, 'es', 'name', 'Centro de Desarrollo Tecnológico Naval'),
(146793, 115094, 'en', 'name', 'National Centre for Biodiversity and Gene Conservation'),
(146794, 115094, 'hu', 'name', 'Nemzeti BiodiverzitĆ”s- Ć©s GĆ©nmegőrzĆ©si Kƶzpont'),
(146795, 115095, 'nl', 'name', 'SURF'),
(146796, 115096, 'en', 'name', 'Tehatta Sadananda Mahavidyalaya'),
(146797, 115096, 'hi', 'name', 'ą¦¤ą§‡ą¦¹ą¦¾ą¦¤ą¦Ÿą¦¾ ą¦øą¦¦ą¦¾ą¦Øą¦Øą§ą¦¦ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼ą¦¾'),
(146798, 115097, 'fr', 'name', 'Ɖtudes sur les Sciences et les Techniques'),
(146799, 115098, 'en', 'name', 'NSS College of Engineering Palakkad'),
(146800, 115099, 'pt', 'name', 'Inova-Ria Associação de Empresas para uma Rede de Inovação em Aveiro'),
(146801, 115100, 'en', 'name', 'Welsh Blood Service'),
(146802, 115101, 'en', 'name', 'Artificial Engineering, Artificial Engineering (Italy)'),
(146803, 115102, 'en', 'name', 'The Brain Institute of America, The Brain Institute of America (United States)'),
(146804, 115103, 'en', 'name', 'Laboratory Fluids Engineering Energy Systems'),
(146805, 115103, 'fr', 'name', 'Laboratoire IngĆ©nierie des Fluides SystĆØmes ƉnergĆ©tiques'),
(146806, 115104, 'en', 'name', 'State Scientific and Production Enterprise «Kartographia»'),
(146807, 115104, 'uk', 'name', 'Державне науково-виробниче піГприємство Ā«ŠšŠ°Ń€Ń‚Š¾Š³Ń€Š°Ń„Ń–ŃĀ»'),
(146808, 115105, 'en', 'name', 'Gachon University Gil Hospital'),
(146809, 115106, 'de', 'name', 'Sigmund Freud PrivatuniversitƤt - Standort Paris'),
(146810, 115106, 'en', 'name', 'Sigmund Freud Private University - Campus Paris'),
(146811, 115107, 'en', 'name', 'Mitsubishi Electric (China) Corporation, Mitsubishi Electric (China) Corporation (China)'),
(146812, 115107, 'zh', 'name', 'äø‰č±ē”µęœŗļ¼ˆäø­å›½ļ¼‰å®˜ę–¹ē½‘ē«™'),
(146813, 115108, 'en', 'name', 'Tamil Nadu Dr. M.G.R. Medical University'),
(146814, 115108, 'ta', 'name', 'ą®¤ą®®ą®æą®“ąÆą®Øą®¾ą®ŸąÆ ą®Ÿą®¾ą®•ąÆą®Ÿą®°ąÆ ą®Žą®®ąÆ.ஜி.ą®†ą®°ąÆ. ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®ŖąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(146815, 115109, 'de', 'name', 'Akademische Raumfahrt Initiative Schweiz'),
(146816, 115110, 'it', 'name', 'Centro Ricerche FIAT'),
(146817, 115111, 'en', 'name', 'Center of Research on International Business and Strategy'),
(146818, 115112, 'en', 'name', 'United States Air Force Logistics Command'),
(146819, 115113, 'no_lang_code', 'name', 'Sociedade de Gestão de Projectos Internacionais (Portugal)'),
(146820, 115114, 'en', 'name', 'Center for the History of Society and Culture'),
(146821, 115114, 'pt', 'name', 'Centro de História da Sociedade e da Cultura'),
(146822, 115115, 'fr', 'name', 'Eau Environnement Limoges'),
(146823, 115116, 'no_lang_code', 'name', 'Buchholz Bookshop, Livraria Buchholz (Portugal)'),
(146824, 115117, 'en', 'name', 'Centre for computational biology (CBIO), Mines Paris, PSL University'),
(146825, 115117, 'fr', 'name', 'Centre de Bio-Informatique, Centre de Bio-Informatique (CBIO), Mines Paris, UniversitƩ PSL'),
(146826, 115118, 'pt', 'name', 'Sociedade Brasileira de Pediatria'),
(146827, 115119, 'en', 'name', 'Vinh Long University of Technology Education'),
(146828, 115119, 'vi', 'name', 'ĐẔi hį»c Sʰ phįŗ”m Kỹ thuįŗ­t VÄ©nh Long'),
(146829, 115120, 'bn', 'name', 'ą¦–ą§ą¦°ą¦æą¦øą§ą¦Ÿą¦¾ą¦Ø মেঔিকেল ą¦•ą¦²ą§‡ą¦œ ভেলোর'),
(146830, 115120, 'en', 'name', 'Christian Medical College, Vellore'),
(146831, 115120, 'ta', 'name', 'ą®µąÆ‡ą®²ąÆ‚ą®°ąÆ ą®•ą®æą®±ą®æą®øąÆą®¤ą®µ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(146832, 115121, 'en', 'name', 'Centre for Management Studies of Instituto Superior TƩcnico'),
(146833, 115121, 'pt', 'name', 'Centro de Estudos de Gestão'),
(146834, 115122, 'en', 'name', 'Kwame Nkrumah University of Science and Technology'),
(146835, 115123, 'de', 'name', 'Kanton Zürich'),
(146836, 115124, 'es', 'name', 'Instituto de Cultura, Sociedad y Estado'),
(146837, 115125, 'pt', 'name', 'InnovPlantProtect'),
(146838, 115126, 'en', 'name', 'Water Centre for Arid and Semi-arid Zones of Latin America and the Caribbean'),
(146839, 115126, 'es', 'name', 'Centro del Agua para Zonas Ɓridas y SemiƔridas de AmƩrica Latina y el Caribe'),
(146840, 115127, 'pt', 'name', 'Centro de Estudos em Educação Tecnologia e Saúde'),
(146841, 115128, 'fr', 'name', 'Laboratoire d''Ɖtude de l''Univers et des PhĆ©nomĆØnes ExtrĆŖmes'),
(146842, 115129, 'en', 'name', 'University of Washington'),
(146843, 115129, 'es', 'name', 'Universidad de Washington'),
(146844, 115129, 'fr', 'name', 'UniversitƩ de Washington'),
(146845, 115130, 'en', 'name', 'Heliophysics Digital Resource Library'),
(146846, 115131, 'es', 'name', 'Escuela Naval de Cadetes "Almirante Padilla"'),
(146847, 115132, 'en', 'name', 'Breakthrough Prize, Breakthrough Prize Foundation'),
(146848, 115133, 'en', 'name', 'Kherson State Maritime Academy'),
(146849, 115133, 'uk', 'name', 'Š„ŠµŃ€ŃŠ¾Š½ŃŃŒŠŗŠ° Гержавна Š¼Š¾Ń€ŃŃŒŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń'),
(146850, 115134, 'en', 'name', 'Guangxi Science and Technology Department'),
(146851, 115134, 'zh', 'name', 'å¹æč„æå£®ę—č‡Ŗę²»åŒŗē§‘å­¦ęŠ€ęœÆåŽ…'),
(146852, 115135, 'en', 'name', 'Asgar Ali Hospital'),
(146853, 115136, 'en', 'name', 'University of California Office of the President'),
(146854, 115137, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© سوسة'),
(146855, 115137, 'en', 'name', 'University of Sousse'),
(146856, 115137, 'fr', 'name', 'UniversitƩ de Sousse'),
(146857, 115138, 'pt', 'name', 'Santa Casa da Misericórdia de Lisboa'),
(146858, 115139, 'en', 'name', 'WiseThorough (Portugal), WiseThorough, Urban Creativity'),
(146859, 115140, 'de', 'name', 'HUBER Diffraktionstechnik GmbH & Co. KG'),
(146860, 115140, 'no_lang_code', 'name', 'HUBER Diffraktionstechnik GmbH & Co. KG (Germany)'),
(146861, 115141, 'fr', 'name', 'Laboratoire de GƩographie Physique et Environnementale'),
(146862, 115142, 'en', 'name', 'Ajay Kumar Garg Institute of Management'),
(146863, 115143, 'en', 'name', 'University of Ɖvry Val d''Essonne'),
(146864, 115143, 'fr', 'name', 'UniversitĆ© d''Ɖvry Val-d''Essonne, UniversitĆ© Ɖvry-Paris Saclay'),
(146865, 115144, 'en', 'name', 'Greater Lisbon Christian Academy'),
(146866, 115145, 'en', 'name', 'Jiangxi Provincial Institute of Traditional Chinese Medicine'),
(146867, 115145, 'zh', 'name', 'ę±Ÿč„æēœäø­åŒ»čÆē ”ē©¶é™¢'),
(146868, 115146, 'en', 'name', 'European International State School "Altiero Spinelli"'),
(146869, 115146, 'it', 'name', 'Scuola Internazionale Europea Statale "Altiero Spinelli"'),
(146870, 115147, 'no_lang_code', 'name', 'An-Nan Hospital'),
(146871, 115148, 'en', 'name', 'Ocean First Institute'),
(146872, 115149, 'id', 'name', 'STAI Al-Anwar Sarang Rembang'),
(146873, 115150, 'de', 'name', 'Friedrich-Alexander-Universität Erlangen-Nürnberg'),
(146874, 115150, 'en', 'name', 'Friedrich-Alexander-University Erlangen-Nürnberg'),
(146875, 115151, 'en', 'name', 'Indo Soviet Friendship College of Pharmacy'),
(146876, 115152, 'de', 'name', 'Bundesprogramm Ɩkologischer Landbau'),
(146877, 115153, 'en', 'name', 'Centre for Organizational and Social Studies'),
(146878, 115153, 'pt', 'name', 'Centro de Estudos Organizacionais e Sociais'),
(146879, 115154, 'no_lang_code', 'name', 'Mondragon Corporation (Spain)'),
(146880, 115155, 'pt', 'name', 'Centro de Investigação e Intervenção na Leitura'),
(146881, 115156, 'en', 'name', 'University of Veterinary and Animal Sciences'),
(146882, 115156, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŁˆŪŒŁ¹Ų±Ł†Ų±ŪŒ Ų§ŪŒŁ†Śˆ Ų§ŪŒŁ†ŪŒŁ…Ł„ سائنسز'),
(146883, 115157, 'ca', 'name', 'Universitat Rovira i Virgili'),
(146884, 115157, 'es', 'name', 'Universidad Rovira i Virgili'),
(146885, 115158, 'en', 'name', 'Laboratory of Mathematics and their Applications'),
(146886, 115158, 'fr', 'name', 'Laboratoire de MathƩmatiques et de leurs Applications'),
(146887, 115159, 'fr', 'name', 'UniversitƩ Bourgogne Europe'),
(146888, 115160, 'en', 'name', 'Centre for Water Law, Policy and Science, UNESCO Centre for Water Law, Policy and Science'),
(146889, 115161, 'pt', 'name', 'Museu Nacional de História Natural e Ciência'),
(146890, 115162, 'en', 'name', 'International Centre on Qanats and Historic Hydraulic Structures'),
(146891, 115162, 'fa', 'name', 'مرکز ŲØŪŒŁ†Ų§Ł„Ł…Ł„Ł„ŪŒ قنات و Ų³Ų§Ų²Ł‡Ł‡Ų§ŪŒ آبی تاریخی'),
(146892, 115163, 'en', 'name', 'kassel university press, kassel university press GmbH'),
(146893, 115164, 'en', 'name', 'University of Health Sciences Lahore'),
(146894, 115164, 'ur', 'name', 'ŪŒŁˆŁ†ŪŒŁˆŲ±Ų³Ł¹ŪŒ آف ŪŪŒŁ„ŲŖŚ¾ Ų³Ų§Ų¦ŪŒŁ†Ų³ Ł„Ų§ŪŁˆŲ±ā€Ž'),
(146895, 115165, 'pt', 'name', 'Gabinete de Planeamento Estratégia Avaliação e Relações Internacionais'),
(146896, 115166, 'en', 'name', 'Information Sciences, Technologies and Architecture Research Centre'),
(146897, 115166, 'pt', 'name', 'Centro de Investigação em Ciências da Informação Tecnologias e Arquitetura'),
(146898, 115167, 'fr', 'name', 'Laboratoire Bourguignon des MatƩriaux et ProcƩdƩs'),
(146899, 115168, 'en', 'name', 'Information Processing and Telecommunications Center'),
(146900, 115169, 'en', 'name', 'Biosphere Reserves Institute'),
(146901, 115170, 'fr', 'name', 'Laboratoire AntiDopage FranƧais'),
(146902, 115171, 'en', 'name', 'NSF NCAR Atmospheric Chemistry Observations & Modeling'),
(146903, 115172, 'en', 'name', 'The University of Texas at Austin'),
(146904, 115172, 'es', 'name', 'Universidad de Texas en Austin'),
(146905, 115172, 'fr', 'name', 'UniversitƩ du texas Ơ austin'),
(146906, 115173, 'en', 'name', 'Union of Concerned Scientists'),
(146907, 115174, 'no_lang_code', 'name', 'Pasqal, Pasqal (France)'),
(146908, 115175, 'en', 'name', 'Princeton University'),
(146909, 115175, 'es', 'name', 'Universidad de Princeton'),
(146910, 115175, 'fr', 'name', 'UniversitƩ de princeton'),
(146911, 115176, 'en', 'name', 'Marconi University'),
(146912, 115176, 'fr', 'name', 'UniversitƩ des Ʃtudes guglielmo marconi'),
(146913, 115176, 'it', 'name', 'UniversitĆ  degli Studi Guglielmo Marconi'),
(146914, 115177, 'en', 'name', 'Sokoine University of Agriculture'),
(146915, 115177, 'sw', 'name', 'Chuo Kikuu cha Sokoine cha Kilimo'),
(146916, 115178, 'en', 'name', 'National Academy of Sciences of Ukraine'),
(146917, 115178, 'pl', 'name', 'Narodowa Akademia Nauk Ukrainy'),
(146918, 115178, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ наук Украины'),
(146919, 115178, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń наук України'),
(146920, 115179, 'en', 'name', 'University of Michigan, University of Michigan–Ann Arbor'),
(146921, 115179, 'fr', 'name', 'UniversitƩ du Michigan'),
(146922, 115180, 'pt', 'name', 'Universidade Nova de Lisboa Associação para a Inovação e Desenvolvimento da FCT'),
(146923, 115181, 'en', 'name', 'Shenzhen Medical Academy of Research and Translation'),
(146924, 115181, 'zh', 'name', 'ę·±åœ³åŒ»å­¦ē§‘å­¦é™¢'),
(146925, 115182, 'en', 'name', 'Electrophysiology and Heart Modeling Institute'),
(146926, 115182, 'fr', 'name', 'L’Institut de Rythmologie et ModĆ©lisation Cardiaque'),
(146927, 115183, 'en', 'name', 'Rani Lakshmi Bai Central Agricultural University, Jhansi'),
(146928, 115183, 'hi', 'name', 'ą¤°ą¤¾ą¤Øą„€ ą¤²ą¤•ą„ą¤·ą„ą¤®ą„€ą¤¬ą¤¾ą¤ˆ ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤ą¤¾ą¤‚ą¤øą„€'),
(146929, 115184, 'en', 'name', 'Sri Lanka Council For Agricultural Research Policy'),
(146930, 115185, 'no_lang_code', 'name', 'Innovation Hospital Care (Portugal)'),
(146931, 115186, 'no_lang_code', 'name', 'Novabase SGPS SA Matosinhos (Portugal)'),
(146932, 115187, 'ar', 'name', 'المؤسسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© للنفط'),
(146933, 115187, 'en', 'name', 'National Oil Corporation, National Oil Corporation (Libya)'),
(146934, 115188, 'en', 'name', 'Engineering Science, Computer Science and Imaging Laboratory'),
(146935, 115188, 'fr', 'name', 'Laboratoire des Sciences de l''IngƩnieur, de l''Informatique et de l''Imagerie'),
(146936, 115189, 'de', 'name', 'EuropƤische Kommission'),
(146937, 115189, 'en', 'name', 'European Commission'),
(146938, 115189, 'fr', 'name', 'Commission europƩenne'),
(146939, 115189, 'nl', 'name', 'Europese Commissie'),
(146940, 115190, 'en', 'name', 'Higher University of San AndrƩs'),
(146941, 115190, 'es', 'name', 'Universidad Mayor de San AndrƩs'),
(146942, 115191, 'en', 'name', 'Institute of Innovation Development Strategies and Knowledge Transfer'),
(146943, 115191, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ стратегій інноваційного Ń€Š¾Š·Š²ŠøŃ‚ŠŗŃƒ і Ń‚Ń€Š°Š½ŃŃ„ŠµŃ€Ńƒ знань'),
(146944, 115192, 'en', 'name', 'Behavioral Science Research Institute, Inc.'),
(146945, 115193, 'en', 'name', 'State Scientific and Technical Center for Nuclear and Radiation Safety'),
(146946, 115193, 'uk', 'name', 'Державний науково-технічний центр Š· ŃŠ“ŠµŃ€Š½Š¾Ń— та раГіаційної безпеки'),
(146947, 115194, 'en', 'name', 'University of America'),
(146948, 115194, 'es', 'name', 'Fundación Universidad de América, Universidad de América'),
(146949, 115195, 'fr', 'name', 'Espaces Humains et Interactions Culturelles'),
(146950, 115196, 'no_lang_code', 'name', 'Consiglio Nazionale delle Ricerche - Istituto di Ricerca sugli Ecosistemi Terrestri'),
(146951, 115197, 'fr', 'name', 'UnitĆ© de Recherche en GĆ©nie des ProcĆ©dĆ©s et en GĆ©nie de l’Environnement'),
(146952, 115198, 'en', 'name', 'MediaKind, MediaKind (United States)'),
(146953, 115199, 'en', 'name', 'Indonesian Heavy Equipment Technical Academy'),
(146954, 115199, 'id', 'name', 'Akademi Teknik Alat Berat Indonesia'),
(146955, 115200, 'en', 'name', 'Finnish National Agency for Education'),
(146956, 115200, 'fi', 'name', 'Opetushallitus Utbildningsstyrelsen'),
(146957, 115201, 'fr', 'name', 'UniversitƩ de Sherbrooke'),
(146958, 115202, 'ar', 'name', 'جـــامــــعـــة درنــــة'),
(146959, 115202, 'en', 'name', 'University of Derna'),
(146960, 115203, 'pt', 'name', 'Núcleo de Investigação e Desenvolvimento em Educação'),
(146961, 115204, 'pt', 'name', 'Centro de Investigação em Educação'),
(146962, 115205, 'en', 'name', 'University of Avignon'),
(146963, 115205, 'fr', 'name', 'UniversitƩ d''Avignon et des Pays de Vaucluse'),
(146964, 115206, 'en', 'name', 'U.S. Army Cyber Center of Excellence'),
(146965, 115207, 'en', 'name', 'Foundation for Renewable Energy & Environment'),
(146966, 115208, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© اجدابيا'),
(146967, 115208, 'en', 'name', 'University of Ajdabiya'),
(146968, 115209, 'no_lang_code', 'name', 'Ferrer Grupo (Spain)'),
(146969, 115210, 'en', 'name', 'Institute for Research in IT and Random Systems'),
(146970, 115210, 'fr', 'name', 'Institut de Recherche en Informatique et Systèmes Aléatoires'),
(146971, 115211, 'en', 'name', 'Foresight Institute of Research and Translation'),
(146972, 115211, 'no_lang_code', 'name', 'Foresight Institute of Research and Translation (Rwanda)'),
(146973, 115212, 'de', 'name', 'Auguste-Viktoria-Klinik'),
(146974, 115213, 'en', 'name', 'City Space Architecture'),
(146975, 115214, 'no_lang_code', 'name', 'GlaxoSmithKline (Belgium)'),
(146976, 115215, 'en', 'name', 'Rajiv Gandhi Institute of Petroleum Technology'),
(146977, 115216, 'fr', 'name', 'Centre Inria de l''UniversitƩ Grenoble Alpes'),
(146978, 115217, 'no_lang_code', 'name', 'Systembolaget (Sweden)'),
(146979, 115217, 'sv', 'name', 'Systembolaget Aktiebolag'),
(146980, 115218, 'en', 'name', 'Impact Assessment Agency of Canada'),
(146981, 115218, 'fr', 'name', 'Agence d''Ʃvaluation d''impact du Canada'),
(146982, 115219, 'en', 'name', 'United States Air Force Aeronautical Systems Center'),
(146983, 115220, 'en', 'name', 'International Association for Development of the Information Society'),
(146984, 115221, 'en', 'name', 'People''s Dental College and Hospital'),
(146985, 115222, 'pt', 'name', 'Centro de LĆ­nguas Literaturas e Culturas'),
(146986, 115223, 'fr', 'name', 'GR-Trans : Groupe de Recherche en TransidentitƩs'),
(146987, 115224, 'no_lang_code', 'name', 'Thoughtventions Unlimited (United States)'),
(146988, 115225, 'en', 'name', 'University of Aveiro'),
(146989, 115225, 'pt', 'name', 'Universidade de Aveiro'),
(146990, 115226, 'en', 'name', 'Department of Health'),
(146991, 115226, 'es', 'name', 'Departament de Salut, Departamento de Salud'),
(146992, 115227, 'en', 'name', 'Military Technological College'),
(146993, 115228, 'no_lang_code', 'name', 'Jose Alves'' Library, Livraria de JosƩ Alves (Portugal)'),
(146994, 115229, 'es', 'name', 'Centro Universitario San Isidoro'),
(146995, 115230, 'en', 'name', 'Ellison Medical Institute'),
(146996, 115231, 'fr', 'name', 'Assistance Publique – HĆ“pitaux de Paris'),
(146997, 115232, 'en', 'name', 'UK Centre for Ecology & Hydrology'),
(146998, 115233, 'en', 'name', 'Tashkent Institute of Architecture and Civil Engineering'),
(146999, 115233, 'uz', 'name', 'Toshkent Arxitektura Qurilish Universiteti'),
(147000, 115234, 'en', 'name', 'Ministry of Health'),
(147001, 115235, 'en', 'name', 'World Wide Fund for Nature'),
(147002, 115236, 'no_lang_code', 'name', 'Energias de Portugal (Portugal)'),
(147003, 115237, 'en', 'name', 'Polytechnic Institute of BraganƧa'),
(147004, 115237, 'pt', 'name', 'Instituto PolitƩcnico de BraganƧa'),
(147005, 115238, 'fr', 'name', 'Institut RhÓnalpin des Systèmes Complexes'),
(147006, 115239, 'en', 'name', 'National University of the Littoral'),
(147007, 115239, 'es', 'name', 'Universidad Nacional del Litoral'),
(147008, 115239, 'fr', 'name', 'UniversitƩ Nationale du Littoral'),
(147009, 115240, 'bn', 'name', 'ą¦—ą§Œą¦”ą¦¼ą¦¬ą¦™ą§ą¦— ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(147010, 115240, 'en', 'name', 'University of Gour Banga'),
(147011, 115241, 'en', 'name', 'National Supercomputing Center in Jinan'),
(147012, 115241, 'zh', 'name', 'å›½å®¶č¶…ēŗ§č®”ē®—ęµŽå—äø­åæƒ'),
(147013, 115242, 'no_lang_code', 'name', 'Boehringer Ingelheim (Germany)'),
(147014, 115243, 'pt', 'name', 'Hospital Dr. NƩlio MendonƧa'),
(147015, 115244, 'pl', 'name', 'Górnośląska Wyższa Szkoła Handlowa im. Wojciecha Korfantego'),
(147016, 115245, 'en', 'name', 'Heart and Stroke Foundation'),
(147017, 115245, 'fr', 'name', 'Fondation des Maladies du Cœur et de l''AVC'),
(147018, 115246, 'pt', 'name', 'Instituto Empresarial do TĆ¢mega'),
(147019, 115247, 'en', 'name', 'South Carolina Department of Health and Environmental Control'),
(147020, 115248, 'no_lang_code', 'name', 'Ubiquity Press (United Kingdom)'),
(147021, 115249, 'en', 'name', 'Regional Agency For Environmental Protection of Piedmont'),
(147022, 115249, 'it', 'name', 'Agenzia Regionale per la Protezione Ambientale del Piemonte'),
(147023, 115250, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų±ŲØŁŠ Ł„Ł„ŲŖŲ®Ų·ŁŠŲ·'),
(147024, 115250, 'en', 'name', 'Arab Planning Institute'),
(147025, 115251, 'en', 'name', 'Institute of Pig Breeding and Agroindustrial Production of the National Academy of Agrarian Sciences of Ukraine'),
(147026, 115251, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ свинарства і агропромислового виробництва ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— акаГемії аграрних наук України'),
(147027, 115252, 'es', 'name', 'Instituto Nacional de Investigaciones Forestales AgrĆ­colas y Pecuarias'),
(147028, 115253, 'en', 'name', 'Portuguese Oncology Institute'),
(147029, 115253, 'pt', 'name', 'Instituto PortuguĆŖs de Oncologia Francisco Gentil'),
(147030, 115254, 'en', 'name', 'Australian College of Perioperative Nurses'),
(147031, 115255, 'fr', 'name', 'LIttoral ENvironnement et SociƩtƩs'),
(147032, 115256, 'es', 'name', 'Escuela Naval del PerĆŗ'),
(147033, 115257, 'en', 'name', 'Ministry of Labour and Employment'),
(147034, 115257, 'hi', 'name', 'ą¤¶ą„ą¤°ą¤® ą¤ą¤µą¤‚ ą¤°ą„‹ą¤œą¤—ą¤¾ą¤° ą¤®ą¤‚ą¤¤ą„ą¤°ą¤¾ą¤²ą¤Æ'),
(147035, 115258, 'es', 'name', 'SecretarĆ­a de Ambiente de Quito'),
(147036, 115259, 'fr', 'name', 'UniversitƩ des patients'),
(147037, 115260, 'en', 'name', 'Institute of Biological Sciences'),
(147038, 115260, 'fr', 'name', 'Institut des Sciences Biologiques'),
(147039, 115261, 'en', 'name', 'Space Physics Data Facility'),
(147040, 115262, 'en', 'name', 'Ministry of Finance'),
(147041, 115262, 'zh', 'name', 'č²”ę”æéƒØ'),
(147042, 115263, 'en', 'name', 'ALT School of Theology'),
(147043, 115263, 'sv', 'name', 'Akademi fƶr Ledarskap och Teologi'),
(147044, 115264, 'tr', 'name', 'Fethi̇ye Devlet Hastanesi̇'),
(147045, 115265, 'en', 'name', 'Albertina Academy of Fine Arts'),
(147046, 115265, 'it', 'name', 'Accademia Albertina delle Belle Arti'),
(147047, 115266, 'en', 'name', 'Austrian Competence Centre for Feed and Food Quality, Safety & Innovation, Austrian Competence Centre for Feed and Food Quality, Safety & Innovation (Austria), FFoQSI GmbH'),
(147048, 115267, 'en', 'name', 'Institute of Industrial Economics'),
(147049, 115267, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ економіки промисловості'),
(147050, 115268, 'en', 'name', 'Interdisciplinary Center for the Study of Human Performance'),
(147051, 115268, 'pt', 'name', 'Centro Interdisciplinar de Estudo da Performance Humana'),
(147052, 115269, 'en', 'name', 'One Health Toxicology Research Unit'),
(147053, 115269, 'pt', 'name', 'Unidade de Investigação em Toxicologia & Uma Só Saúde'),
(147054, 115270, 'pt', 'name', 'idD Portugal'),
(147055, 115271, 'it', 'name', 'IRCCS Azienda Ospedliero-Universitaria di Bologna Policlinico di Sant''Orsola'),
(147056, 115272, 'en', 'name', 'Regional Education and Research Centre on Earthquake Risk Management and Resilience for West and Central Asia'),
(147057, 115273, 'en', 'name', 'University of Nebraska Medical Center'),
(147058, 115273, 'es', 'name', 'Centro MƩdico de la Universidad de Nebraska'),
(147059, 115274, 'en', 'name', 'Ministry of Health and Long Term Care'),
(147060, 115274, 'fr', 'name', 'Ministère de la Santé et des Soins de Longue Durée'),
(147061, 115275, 'en', 'name', 'Department of Science and Technology of Guangdong Province'),
(147062, 115275, 'zh', 'name', 'å¹æäøœēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(147063, 115276, 'en', 'name', 'GenomePT'),
(147064, 115277, 'ca', 'name', 'Centre d’Estudis Superiors de l’Aviació'),
(147065, 115278, 'es', 'name', 'Universidad San Pablo CEU'),
(147066, 115278, 'gl', 'name', 'Universidade San Pablo CEU'),
(147067, 115279, 'en', 'name', 'Idaho National Laboratory'),
(147068, 115279, 'es', 'name', 'Laboratorio Nacional de Idaho'),
(147069, 115279, 'fr', 'name', 'Laboratoire national de l''idaho'),
(147070, 115280, 'en', 'name', 'Longwood Gardens'),
(147071, 115281, 'en', 'name', 'Khatam Al-Nabieen University'),
(147072, 115281, 'fa', 'name', 'دانؓگاه Ų®Ų§ŲŖŁ… Ų§Ł„Ł†ŲØŪŒŪŒŁ†'),
(147073, 115282, 'fr', 'name', 'CELPHEDIA'),
(147074, 115283, 'en', 'name', 'International Agency for Research on Cancer'),
(147075, 115283, 'fr', 'name', 'Centre international de recherche sur le cancer'),
(147076, 115284, 'pt', 'name', 'Fundação Escola Americana de Lisboa'),
(147077, 115285, 'en', 'name', 'Rochester Institute of Technology'),
(147078, 115286, 'pt', 'name', 'Bibliotecas da Universidade do Porto'),
(147079, 115287, 'no_lang_code', 'name', 'Grünenthal (Portugal)'),
(147080, 115288, 'en', 'name', 'Rising Tide Foundation'),
(147081, 115289, 'en', 'name', 'Aqua Kompetanse AS, Aqua Kompetanse AS (Norway)'),
(147082, 115290, 'cy', 'name', 'Prifysgol Glasgow'),
(147083, 115290, 'en', 'name', 'University of Glasgow'),
(147084, 115290, 'gd', 'name', 'Oilthigh Ghlaschu'),
(147085, 115291, 'en', 'name', 'Mid Atlantic University'),
(147086, 115291, 'es', 'name', 'Universidad del AtlƔntico Medio'),
(147087, 115292, 'en', 'name', 'Dataking Consulting, Dataking Consulting (Ghana)'),
(147088, 115293, 'pt', 'name', 'Instituto Superior de Entre Douro e Vouga'),
(147089, 115294, 'fr', 'name', 'Institut Pasteur of Shanghai'),
(147090, 115294, 'zh', 'name', 'äøŠęµ·å·“ę–Æå¾·ē ”ē©¶ę‰€'),
(147091, 115295, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ų±ŲØŁŠŁ„ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ©'),
(147092, 115295, 'en', 'name', 'International University of Erbil'),
(147093, 115295, 'ku', 'name', 'Ų²Ų§Ł†ŁƒŪ†ŪŒ Ų¦Ł‡Ų±ŲØŪŒŁ„ŪŒ Ł†ŪŽŁˆŲÆŁ‡ŁˆŚµŁ‡ŲŖŪŒ'),
(147094, 115296, 'en', 'name', 'Burrell College of Osteopathic Medicine'),
(147095, 115297, 'en', 'name', 'UiT The Arctic University of Norway'),
(147096, 115297, 'nb', 'name', 'UiT Norges arktiske universitet'),
(147097, 115297, 'se', 'name', 'UiT Norgga ÔrktalaŔ universitehta'),
(147098, 115298, 'es', 'name', 'Governo Civil de Viana do Castelo'),
(147099, 115299, 'en', 'name', 'TCC International Centre for Innovation, Manufacturing, Technology Transfer and Entrepreneurship, KNUST, Kumasi'),
(147100, 115300, 'fr', 'name', 'Fondation des Maladies du Cœur et de l''AVC'),
(147101, 115301, 'en', 'name', 'Institute of Mechanics and Engineering'),
(147102, 115301, 'fr', 'name', 'Institut de MƩcanique et d''IngƩnierie'),
(147103, 115302, 'en', 'name', 'Mondragon University'),
(147104, 115302, 'es', 'name', 'Universidad de Mondragón'),
(147105, 115302, 'eu', 'name', 'Mondragon Unibertsitatea'),
(147106, 115302, 'gl', 'name', 'Universidade de Mondragón'),
(147107, 115303, 'no_lang_code', 'name', 'Urƭa MenƩndez Abogados (Portugal), Urƭa MenƩndez-ProenƧa de Carvalho'),
(147108, 115304, 'en', 'name', 'Center for Mathematical Modeling'),
(147109, 115304, 'es', 'name', 'Centro de Modelamiento MatemƔtico'),
(147110, 115304, 'fr', 'name', 'Centre de modƩlisation mathƩmatique'),
(147111, 115305, 'en', 'name', 'Mass Spectrometry Centre'),
(147112, 115305, 'pt', 'name', 'Centro de Espectrometria de Massa'),
(147113, 115306, 'pt', 'name', 'Fundação Engenheiro António de Almeida'),
(147114, 115307, 'en', 'name', 'University of Arkansas for Medical Sciences'),
(147115, 115308, 'en', 'name', 'Latin American Faculty of Social Sciences Argentina'),
(147116, 115308, 'es', 'name', 'Facultad Latinoamericana de Ciencias Sociales Argentina'),
(147117, 115309, 'pt', 'name', 'Incubadora de Empresas da Figueira da Foz – Associação para o Desenvolvimento Empresarial'),
(147118, 115310, 'en', 'name', 'Astera Institute'),
(147119, 115311, 'de', 'name', 'Schweizerische Nationalfonds zur Fƶrderung der wissenschaftlichen Forschung'),
(147120, 115311, 'en', 'name', 'Swiss National Science Foundation'),
(147121, 115311, 'fr', 'name', 'Fonds national suisse de la recherche scientifique'),
(147122, 115311, 'it', 'name', 'Fondo Nazionale Svizzero per la Ricerca Scientifica'),
(147123, 115312, 'sr', 'name', 'ITS - Visoka Ŕkola strukovnih studija za informacione tehnologije, Visoka Ŕkola strukovnih studija za informacione tehnologije - ITS'),
(147124, 115313, 'en', 'name', 'Monash University Malaysia'),
(147125, 115314, 'fr', 'name', 'Espaces, Nature et Culture'),
(147126, 115315, 'pt', 'name', 'Fundação Bomfim'),
(147127, 115316, 'en', 'name', 'Cygnet Godden Green'),
(147128, 115317, 'en', 'name', 'Johns Hopkins University'),
(147129, 115317, 'es', 'name', 'Universidad Johns Hopkins'),
(147130, 115318, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…ŲÆŁŠŁ†Ų© عجمان'),
(147131, 115318, 'en', 'name', 'City University Ajman'),
(147132, 115319, 'en', 'name', 'Murcian Institute for Agricultural and Environmental Research and Development'),
(147133, 115319, 'es', 'name', 'Instituto Murciano de Investigación y Desarrollo Agrario y Medioambiental'),
(147134, 115320, 'de', 'name', 'Bioforschung Austria');
INSERT INTO `ror_settings` VALUES
(147135, 115321, 'en', 'name', 'European Holocaust Research Infrastructure'),
(147136, 115322, 'en', 'name', 'Acharya Narendra Deva University of Agriculture and Technology'),
(147137, 115322, 'fr', 'name', 'UniversitƩ narendra dev d''agriculture et de technologie'),
(147138, 115322, 'hi', 'name', 'ą¤Øą¤°ą„‡ą¤‚ą¤¦ą„ą¤° ą¤¦ą„‡ą¤µą¤¾ ą¤Æą„ą¤Øą¤æą¤µą¤°ą„ą¤øą¤æą¤Ÿą„€ ऑफ़ ą¤ą¤—ą„ą¤°ą„€ą¤•ą¤²ą„ą¤šą¤° ą¤ą¤‚ą¤” ą¤Ÿą„‡ą¤•ą„ą¤Øą„‹ą¤²ą„‰ą¤œą„€ ą¤•ą„ą¤®ą¤¾ą¤°ą¤—ą¤‚ą¤œ ą¤«ą¤¼ą„ˆą¤œą¤¼ą¤¾ą¤¬ą¤¾ą¤¦'),
(147139, 115323, 'pt', 'name', 'Centro de Inovação da Mouraria'),
(147140, 115324, 'fr', 'name', 'Neurodev : Troubles du neuro-dĆ©veloppement : du fœtus Ć  l''adulte'),
(147141, 115325, 'en', 'name', 'Ministry of Economy and Finance'),
(147142, 115325, 'it', 'name', 'Ministero dell''Economia e delle Finanze'),
(147143, 115326, 'en', 'name', 'Kenya Association of Urological Surgeons'),
(147144, 115327, 'pt', 'name', 'Instituto de História Contemporânea'),
(147145, 115328, 'en', 'name', 'Wayne State University'),
(147146, 115328, 'es', 'name', 'Universidad Estatal Wayne'),
(147147, 115328, 'fr', 'name', 'UniversitƩ de Wayne State'),
(147148, 115329, 'es', 'name', 'Universidad del Rosario'),
(147149, 115330, 'en', 'name', 'Research Institute of Food Science and Technology'),
(147150, 115330, 'fa', 'name', 'Ł…ŁˆŲ³Ų³Ł‡ Ł¾Ś˜ŁˆŁ‡Ų“ŪŒ Ų¹Ł„ŁˆŁ… و ŲµŁ†Ų§ŪŒŲ¹ غذایی'),
(147151, 115331, 'en', 'name', 'Polytechnic Institute of Leiria'),
(147152, 115331, 'pt', 'name', 'Instituto PolitƩcnico de Leiria'),
(147153, 115332, 'en', 'name', 'Natural History National Museum of Cuba'),
(147154, 115332, 'es', 'name', 'Museo Nacional de Historia Natural de Cuba'),
(147155, 115333, 'fr', 'name', 'Laboratoire ActivitƩ Connaissance Transmission Education'),
(147156, 115334, 'de', 'name', 'Tiroler Landesmuseen-Betriebsgesellschaft M.B.H.'),
(147157, 115335, 'en', 'name', 'Government of Canada'),
(147158, 115335, 'fr', 'name', 'Gouvernement du Canada'),
(147159, 115336, 'en', 'name', 'Selangor Matriculation College'),
(147160, 115336, 'ms', 'name', 'Kolej Matrikulasi Selangor'),
(147161, 115337, 'en', 'name', 'Sadiya College'),
(147162, 115338, 'ca', 'name', 'Universitat de Bolonya'),
(147163, 115338, 'de', 'name', 'UniversitƤt Bologna'),
(147164, 115338, 'en', 'name', 'University of Bologna'),
(147165, 115338, 'fr', 'name', 'UniversitƩ de bologne'),
(147166, 115338, 'it', 'name', 'UniversitĆ  di Bologna'),
(147167, 115339, 'pt', 'name', 'Escola UniversitƔria Vasco da Gama'),
(147168, 115340, 'no_lang_code', 'name', 'Whitaker International Europe Business Strategy, Whitaker International Europe EstratƩgia Empresarial (Portugal)'),
(147169, 115341, 'de', 'name', 'Hessische Hochschule für öffentliches Management und Sicherheit'),
(147170, 115341, 'en', 'name', 'Hesse University of Applied Sciences for Public Management and Security'),
(147171, 115342, 'en', 'name', 'Manav Rachna University'),
(147172, 115343, 'en', 'name', 'Center of Intelligent Systems'),
(147173, 115343, 'pt', 'name', 'Centro de Sistemas Inteligentes'),
(147174, 115344, 'en', 'name', 'Kulyash Bayseyitova Kazakh National University of Arts'),
(147175, 115344, 'kk', 'name', 'К. Байсейітова атынГағы ŅšŠ°Š·Š°Ņ› ұлттық өнер ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(147176, 115344, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠøŠ¹ Š½Š°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠøŃŠŗŃƒŃŃŃ‚Š² имени ŠšŃƒŠ»ŃŃˆ Байсеитовой'),
(147177, 115344, 'uk', 'name', 'ŠšŠ°Š·Š°Ń…ŃŃŒŠŗŠøŠ¹ Š½Š°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ мистецтв'),
(147178, 115345, 'en', 'name', 'International Research and Training Centre on Erosion and Sedimentation'),
(147179, 115345, 'zh', 'name', 'å›½é™…ę³„ę²™ē ”ē©¶åŸ¹č®­äø­åæƒäø»åŠž'),
(147180, 115346, 'no_lang_code', 'name', 'PSPC Active Living and Environment, PSPC Vida Activa e Ambiente (Portugal)'),
(147181, 115347, 'en', 'name', 'West Virginia University'),
(147182, 115347, 'es', 'name', 'Universidad de Virginia Occidental'),
(147183, 115348, 'en', 'name', 'Stellantis, Stellantis NV'),
(147184, 115348, 'no_lang_code', 'name', 'Stellantis (Netherlands)'),
(147185, 115349, 'en', 'name', 'Zhangjiakou City Science and Technology and Seismological Bureau'),
(147186, 115349, 'zh', 'name', 'å¼ å®¶å£åø‚ē§‘å­¦ęŠ€ęœÆå’Œåœ°éœ‡å±€'),
(147187, 115350, 'en', 'name', 'Institute of Water Problems and Land Reclamation'),
(147188, 115350, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГних проблем і меліорації ŠŠŠŠ, Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ воГних проблем і меліорації ŠŠŠŠ України'),
(147189, 115351, 'fr', 'name', 'Laboratoire d''Informatique, Signaux et SystĆØmes de Sophia Antipolis'),
(147190, 115352, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ų„Ł‚Ł„ŁŠŁ…ŁŠ للطاقة المتجددة وكفاؔة'),
(147191, 115352, 'en', 'name', 'Regional Centre for Renewable Energy and Energy Efficiency'),
(147192, 115353, 'en', 'name', 'Chuiko Institute of Surface Chemistry'),
(147193, 115353, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ хімії поверхні ім. Šž.Šž. Чуйка ŠŠŠ України'),
(147194, 115354, 'en', 'name', 'Atria University'),
(147195, 115355, 'pt', 'name', 'Editora Mundos Sociais'),
(147196, 115356, 'fr', 'name', 'Centre de MathƩmatiques AppliquƩes'),
(147197, 115357, 'pt', 'name', 'Hospital Doutor João de Almada'),
(147198, 115358, 'pt', 'name', 'Unimais'),
(147199, 115359, 'pt', 'name', 'Centro de Investigação em Contabilidade e Fiscalidade'),
(147200, 115360, 'en', 'name', 'Changchun Institute of Optics, Fine Mechanics and Physics'),
(147201, 115360, 'zh', 'name', 'äø­å›½ē§‘å­¦é™¢é•æę˜„å…‰å­¦ē²¾åÆ†ęœŗę¢°äøŽē‰©ē†ē ”ē©¶ę‰€'),
(147202, 115361, 'ca', 'name', 'Institut de Recerca i Tecnologia AgroalimentĆ ries'),
(147203, 115361, 'en', 'name', 'Institute of Agrifood Research and Technology'),
(147204, 115362, 'en', 'name', 'University of North Carolina at Chapel Hill'),
(147205, 115362, 'es', 'name', 'Universidad de Carolina del Norte en Chapel Hill'),
(147206, 115362, 'fr', 'name', 'UniversitƩ de la Caroline du Nord Ơ Chapel Hill'),
(147207, 115363, 'en', 'name', 'West African Science Service Centre on Climate Change and Adapted Land Use'),
(147208, 115364, 'en', 'name', 'Islamic Azad University, Saghez Branch'),
(147209, 115364, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد سقز'),
(147210, 115365, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des IngĆ©nieurs en Arts Chimiques et Technologiques'),
(147211, 115366, 'en', 'name', 'Paris Nanterre University'),
(147212, 115366, 'fr', 'name', 'UniversitƩ Paris Nanterre'),
(147213, 115367, 'en', 'name', 'Pluto Journals'),
(147214, 115368, 'fr', 'name', 'Pharmacologie et Transplantation'),
(147215, 115369, 'pt', 'name', 'Fundação Energias de Portugal'),
(147216, 115370, 'en', 'name', 'Samara University'),
(147217, 115371, 'fr', 'name', 'UnitƩ Transdisciplinaire d''Orientation et de Prospective des Impacts environnementaux de la recherche en IngƩnierie'),
(147218, 115372, 'pt', 'name', 'Fundação Montepio'),
(147219, 115373, 'pt', 'name', 'Galeria Municipal do Porto'),
(147220, 115374, 'en', 'name', 'EX Research Institute, EX Research Institute (Japan)'),
(147221, 115375, 'en', 'name', 'Applied Artificial Intelligence Laboratory'),
(147222, 115375, 'pt', 'name', 'Laboratório de Inteligência Artificial Aplicada'),
(147223, 115376, 'en', 'name', 'Laboratory of Computer Science, Robotics and Microelectronics of Montpellier, Montpellier Laboratory of Informatics, Robotics and Microelectronics'),
(147224, 115376, 'fr', 'name', 'Laboratoire d''Informatique, de Robotique et de MicroƩlectronique de Montpellier'),
(147225, 115377, 'es', 'name', 'CIES Salud Sexual - Salud Reproductiva'),
(147226, 115378, 'ar', 'name', 'معهد Ų§Ł„Ų¬ŁŠŲ²Ų© العالى للهندسة ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(147227, 115378, 'en', 'name', 'Giza Engineering Institute'),
(147228, 115379, 'no_lang_code', 'name', 'AXA (France)'),
(147229, 115380, 'de', 'name', 'SWILD - Stadtƶkologie, Wildtierforschung, Kommunikation'),
(147230, 115380, 'en', 'name', 'SWILD - Urban Ecology & Wildlife Research'),
(147231, 115381, 'en', 'name', 'Katanov Khakass State University'),
(147232, 115381, 'ru', 'name', 'Єакасский Š³Š¾ŃŃƒŠ“арственный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ им. Š. Ф. ŠšŠ°Ń‚Š°Š½Š¾Š²Š°'),
(147233, 115382, 'en', 'name', 'Heilongjiang Earthquake Agency'),
(147234, 115382, 'zh', 'name', 'é»‘é¾™ę±Ÿēœåœ°éœ‡å±€'),
(147235, 115383, 'en', 'name', 'Iscte – University Institute of Lisbon'),
(147236, 115383, 'pt', 'name', 'Iscte – Instituto UniversitĆ”rio de Lisboa'),
(147237, 115384, 'pt', 'name', 'Poder JudiciƔrio do Estado de RondƓnia Tribunal de JustiƧa'),
(147238, 115385, 'pt', 'name', 'Centro Internacional de Investigação Epistemologia e Reflexão Transdisciplinar'),
(147239, 115386, 'en', 'name', 'University of Algarve'),
(147240, 115386, 'pt', 'name', 'Universidade do Algarve'),
(147241, 115387, 'tr', 'name', 'Başakşehir Belediyesi'),
(147242, 115388, 'en', 'name', 'Ministry of Culture'),
(147243, 115388, 'es', 'name', 'Departament de Cultura, Departamento de Cultura'),
(147244, 115389, 'no_lang_code', 'name', 'HeartGenetics Genetics and Biotechnology (Portugal), HeartGenetics Genetics and Biotechnology, S.A.'),
(147245, 115390, 'en', 'name', 'Autonomous Systems Laboratory'),
(147246, 115390, 'pt', 'name', 'Laboratório de Sistemas Autónomos'),
(147247, 115391, 'fr', 'name', 'Centre de Recherches SƩmiotiques'),
(147248, 115392, 'en', 'name', 'ZaoZhuang Vocational College of Science and Technology'),
(147249, 115392, 'zh', 'name', 'ęž£åŗ„ē§‘ęŠ€čŒäøšå­¦é™¢'),
(147250, 115393, 'en', 'name', 'Tumor cell dynamics'),
(147251, 115393, 'fr', 'name', 'Dynamique des Cellules Tumorales'),
(147252, 115394, 'en', 'name', 'University of Virginia'),
(147253, 115394, 'es', 'name', 'Universidad de Virginia'),
(147254, 115394, 'fr', 'name', 'UniversitƩ de virginie'),
(147255, 115395, 'pt', 'name', 'Escola de Sociologia e PolĆ­ticas PĆŗblicas'),
(147256, 115396, 'fr', 'name', 'Laboratoire de mécanique des structures et des systèmes couplés'),
(147257, 115397, 'en', 'name', 'National Medical Research Center for Hematology'),
(147258, 115397, 'ru', 'name', 'ФГБУ Ā«ŠŠœŠ˜Š¦ Гематологии» ŠœŠøŠ½Š·Š“Ń€Š°Š²Š° России, Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ «Гематологический Š½Š°ŃƒŃ‡Š½Ń‹Š¹ центр» ŠœŠøŠ½ŠøŃŃ‚ерства Š·Š“Ń€Š°Š²Š¾Š¾Ń…Ń€Š°Š½ŠµŠ½ŠøŃ Šø ŃŠ¾Ń†ŠøŠ°Š»ŃŒŠ½Š¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ Российской ФеГерации'),
(147259, 115398, 'en', 'name', 'Maria Curie-Skłodowska University'),
(147260, 115398, 'pl', 'name', 'Uniwersytet Marii Curie-Skłodowskiej w Lublinie'),
(147261, 115399, 'en', 'name', 'University of Rennes'),
(147262, 115399, 'fr', 'name', 'UniversitƩ de Rennes'),
(147263, 115400, 'pt', 'name', 'Instituto de Tecnologia e LideranƧa'),
(147264, 115401, 'en', 'name', 'National Institute of Public Health, National Institute of Hygiene – National Research Institute'),
(147265, 115401, 'pl', 'name', 'Narodowy Instytut Zdrowia Publicznego PZH – Państwowy Instytut Badawczy'),
(147266, 115402, 'en', 'name', 'International Research Centre on Karst'),
(147267, 115402, 'zh', 'name', 'č”åˆå›½ę•™ē§‘ę–‡ē»„ē»‡å›½é™…å²©ęŗ¶ē ”ē©¶äø­åæƒ'),
(147268, 115403, 'en', 'name', 'Regional Centre on Water Security'),
(147269, 115403, 'es', 'name', 'Centro Regional de Seguridad HĆ­drica'),
(147270, 115404, 'en', 'name', 'National Institute of Children’s Diseases'),
(147271, 115404, 'sk', 'name', 'NÔrodný ústav detských chorÓb'),
(147272, 115405, 'fr', 'name', 'Observatoire des Mutations Institutionnelles et Juridiques'),
(147273, 115406, 'en', 'name', 'Directorate General of Mines Safety'),
(147274, 115407, 'en', 'name', 'Beaver Creek Analytical, LLC, Beaver Creek Analytical, LLC (United States)'),
(147275, 115408, 'en', 'name', 'STRA LLC - Sci Tac Research Associates, STRA LLC - Sci Tac Research Associates (United States)'),
(147276, 115409, 'no_lang_code', 'name', 'Livraria Portugal (Portugal), Portugal Bookshop'),
(147277, 115410, 'fr', 'name', 'Maison des Sciences de l''Homme'),
(147278, 115411, 'pt', 'name', 'Centro de Inovação em Engenharia e Tecnologia Industrial'),
(147279, 115412, 'no_lang_code', 'name', 'Suprema Imaginação Unipessoal (Portugal)'),
(147280, 115413, 'pt', 'name', 'Centro de Sangue e da Transplantação de Lisboa Área Funcional do Sangue'),
(147281, 115414, 'en', 'name', 'National Conservatory of Arts and Crafts'),
(147282, 115414, 'fr', 'name', 'Conservatoire National des Arts et MƩtiers'),
(147283, 115415, 'de', 'name', 'Internationale Gustav Mahler Gesellschaft'),
(147284, 115415, 'en', 'name', 'International Gustav Mahler Society'),
(147285, 115416, 'no_lang_code', 'name', 'Innovation Services (Portugal)'),
(147286, 115417, 'pt', 'name', 'Santa Casa da Misericórdia de Fafe'),
(147287, 115418, 'en', 'name', 'Processes and Engineering in Mechanics and Materials'),
(147288, 115418, 'fr', 'name', 'Laboratoire ProcƩdƩs et IngƩnierie en MƩcanique et MatƩriaux'),
(147289, 115419, 'id', 'name', 'Politeknik Bina Trada Semarang'),
(147290, 115420, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة ببوسعادة'),
(147291, 115420, 'en', 'name', 'Higher Normal School of Bou Saada'),
(147292, 115420, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Bou Saada'),
(147293, 115421, 'ca', 'name', 'Universitat PontifĆ­cia de Comillas'),
(147294, 115421, 'en', 'name', 'Comillas Pontifical University'),
(147295, 115421, 'es', 'name', 'Universidad Pontificia Comillas'),
(147296, 115421, 'gl', 'name', 'Universidade Pontificia Comillas'),
(147297, 115422, 'id', 'name', 'Universitas Widya Gama Malang'),
(147298, 115423, 'es', 'name', 'CIVE - Clínica Internacional De La Visión De Ecuador, Clínica Internacional De La Visión De Ecuador'),
(147299, 115424, 'en', 'name', 'OMF Publishing, LLC, OMF Publishing, LLC (Ukraine)'),
(147300, 115424, 'uk', 'name', 'Š¢ŠžŠ’ "ŠžŠœŠ¤ ŠŸŠ°Š±Š»Ń–ŃˆŠøŠ½Š³"'),
(147301, 115425, 'fr', 'name', 'Méthodes basées sur les données et modèles en santé pour l''acquisition de connaissances'),
(147302, 115426, 'bn', 'name', 'সিধো কানো বিরসা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(147303, 115426, 'en', 'name', 'Sidho-Kanho-Birsha University'),
(147304, 115427, 'en', 'name', 'LIRA - Laboratory for Instrumentation and Research in Astrophysics'),
(147305, 115427, 'fr', 'name', 'LIRA - Laboratoire d''instrumentation et de recherche en astrophysique'),
(147306, 115428, 'no_lang_code', 'name', 'PLMJ Advogados (Portugal), PLMJ Transformative Legal Experts'),
(147307, 115429, 'en', 'name', 'Lille Laboratory of Electrical Engineering and Power Electronics'),
(147308, 115429, 'fr', 'name', 'Laboratoire d''Ɖlectrotechnique et d''Ɖlectronique de Puissance de Lille'),
(147309, 115430, 'en', 'name', 'Center for Systems and Control (CAS), Mines Paris, PSL University'),
(147310, 115430, 'fr', 'name', 'Centre Automatique et Systèmes, Centre Automatique et Systèmes (CAS), Mines Paris, Université PSL'),
(147311, 115431, 'en', 'name', 'National Institute for Health Research'),
(147312, 115432, 'en', 'name', 'University of the Arts Utrecht'),
(147313, 115432, 'nl', 'name', 'Hogeschool voor de Kunsten Utrecht'),
(147314, 115433, 'de', 'name', 'Naturkundemuseum Bamberg'),
(147315, 115434, 'en', 'name', 'Solkeys'),
(147316, 115434, 'no_lang_code', 'name', 'Solkeys (Spain)'),
(147317, 115435, 'de', 'name', 'Deutsche Forschungsgemeinschaft'),
(147318, 115435, 'en', 'name', 'German Research Foundation'),
(147319, 115436, 'en', 'name', 'Aalborg Centre for Problem Based Learning in Engineering Science and Sustainability'),
(147320, 115437, 'en', 'name', 'Kaliyaganj College'),
(147321, 115438, 'fr', 'name', 'Arts et MƩtiers'),
(147322, 115439, 'en', 'name', 'Ukrainian Hydrometeorological Institute'),
(147323, 115440, 'en', 'name', 'Sustainable Prosperity Initiative Nepal'),
(147324, 115441, 'no_lang_code', 'name', 'Marka - Marketing Aplicado (Portugal)'),
(147325, 115442, 'en', 'name', 'Mahatma Gandhi Ayurved College Hospital and Research Centre'),
(147326, 115443, 'pt', 'name', 'Centro de Fƭsica do Instituto PolitƩcnico de Lisboa'),
(147327, 115444, 'bn', 'name', 'সরকারি ą¦øą§ą¦Øą§ą¦¦ą¦°ą¦¬ą¦Ø ą¦†ą¦¦ą¦°ą§ą¦¶ ą¦•ą¦²ą§‡ą¦œ, খুলনা'),
(147328, 115444, 'en', 'name', 'Govt. Sundarban Adarsha College, Khulna'),
(147329, 115445, 'no_lang_code', 'name', 'Diaverum (Portugal)'),
(147330, 115446, 'en', 'name', 'International Knowledge Centre for Engineering Sciences and Technology'),
(147331, 115446, 'zh', 'name', 'å›½é™…å·„ēØ‹ē§‘ęŠ€ēŸ„čÆ†äø­åæƒ'),
(147332, 115447, 'fr', 'name', 'CentraleSupƩlec'),
(147333, 115448, 'pt', 'name', 'Instituto CRIAP'),
(147334, 115449, 'pt', 'name', 'ISPA - Instituto UniversitƔrio'),
(147335, 115450, 'en', 'name', 'Tekirdağ Namık Kemal University'),
(147336, 115450, 'tr', 'name', 'Teki̇rdağ Namik Kemal Üni̇versi̇tesi̇'),
(147337, 115451, 'eu', 'name', 'Biogipuzkoa Health Research Institute'),
(147338, 115452, 'en', 'name', 'Winnipeg Regional Health Authority'),
(147339, 115452, 'fr', 'name', 'Office RƩgional de la SantƩ de Winnipeg'),
(147340, 115453, 'en', 'name', 'University of Clermont Auvergne'),
(147341, 115453, 'fr', 'name', 'UniversitƩ Clermont Auvergne'),
(147342, 115454, 'no_lang_code', 'name', 'MinistƩrio das FinanƧas (Portugal), Portuguese Republic Government Ministry of Finance'),
(147343, 115455, 'pt', 'name', 'Centro de Investigação em Psicologia'),
(147344, 115456, 'en', 'name', 'Laboratory on Law and Religious Societies'),
(147345, 115456, 'fr', 'name', 'Droit & sociƩtƩs religieuses, Droit et sociƩtƩs religieuses'),
(147346, 115457, 'de', 'name', 'Deutsche Gesetzliche Unfallversicherung'),
(147347, 115458, 'en', 'name', 'Demartino Public Hospital'),
(147348, 115459, 'es', 'name', 'IFMIF-DONES EspaƱa'),
(147349, 115460, 'pt', 'name', 'Ministra Adjunta e dos Assuntos Parlamentares'),
(147350, 115461, 'en', 'name', 'University of California, Berkeley'),
(147351, 115461, 'es', 'name', 'Universidad de California en Berkeley'),
(147352, 115461, 'fr', 'name', 'UniversitƩ de Californie Ơ Berkeley'),
(147353, 115462, 'de', 'name', 'E.C.O. Institut für Ɩkologie, E.C.O. Institut für Ɩkologie GmbH, E.C.O. Institut für Ɩkologie GmbH (Austria)'),
(147354, 115462, 'en', 'name', 'E.C.O. Institute of Ecology'),
(147355, 115463, 'ca', 'name', 'Institut d''Investigació Sanitària Pere Virgili'),
(147356, 115463, 'en', 'name', 'Pere Virgili Institute'),
(147357, 115464, 'de', 'name', 'Pädagogische Hochschule Zürich'),
(147358, 115464, 'en', 'name', 'Zurich University of Teacher Education'),
(147359, 115464, 'fr', 'name', 'Haute Ʃcole pƩdagogique de Zurich'),
(147360, 115465, 'de', 'name', 'Forschungsinstitut für politisch-historische Studien der Dr.-Wilfried-Haslauer-Bibliothek'),
(147361, 115466, 'ca', 'name', 'Universitat de Miguel HernƔndez d''Elx'),
(147362, 115466, 'en', 'name', 'Miguel HernƔndez University of Elche'),
(147363, 115466, 'es', 'name', 'Universidad Miguel HernƔndez de Elche'),
(147364, 115467, 'en', 'name', 'Iranian Light Source Facility'),
(147365, 115468, 'es', 'name', 'Hospital Rafael MƩndez'),
(147366, 115469, 'en', 'name', 'Agrolabo S.p.A.'),
(147367, 115470, 'en', 'name', 'Army Cyber Institute at West Point'),
(147368, 115471, 'pt', 'name', 'Unidade de Investigação e Internacionalização do ISVOUGA'),
(147369, 115472, 'fr', 'name', 'UniversitƩ de Bretagne Occidentale'),
(147370, 115473, 'fr', 'name', 'FƩdƩration Francilienne de MƩcanique - MatƩriaux, Structures, ProcƩdƩs'),
(147371, 115474, 'en', 'name', 'Maryland Quantum Materials Center'),
(147372, 115475, 'ca', 'name', 'Generalitat de Catalunya'),
(147373, 115475, 'en', 'name', 'Government of Catalonia'),
(147374, 115475, 'es', 'name', 'Generalidad de CataluƱa'),
(147375, 115475, 'eu', 'name', 'Kataluniako Generalitatea'),
(147376, 115476, 'tr', 'name', 'Eskişehir Anadolu Lisesi'),
(147377, 115477, 'en', 'name', 'Netherlands Organisation for Applied Scientific Research'),
(147378, 115477, 'nl', 'name', 'Nederlandse Organisatie voor Toegepast Natuurwetenschappelijk Onderzoek'),
(147379, 115478, 'en', 'name', 'Research Centre on Aging'),
(147380, 115478, 'fr', 'name', 'Centre de recherche sur le vieillissement'),
(147381, 115479, 'en', 'name', 'Long An University of Economics and Industry'),
(147382, 115479, 'vi', 'name', 'TrĘ°į»ng ĐẔi hį»c Kinh tįŗæ CĆ“ng nghiệp Long An'),
(147383, 115479, 'zh', 'name', 'éš†å®‰å·„ę„­ē¶“ęæŸå¤§å­ø'),
(147384, 115480, 'en', 'name', 'Coinscrap Finance, Coinscrap Finance SL'),
(147385, 115480, 'no_lang_code', 'name', 'Coinscrap Finance SL (Spain)'),
(147386, 115481, 'en', 'name', 'Centre for Psychological Research and Social Intervention'),
(147387, 115481, 'pt', 'name', 'Centro de Investigação e Intervenção Social'),
(147388, 115482, 'en', 'name', 'Polytechnic Institute of SetĆŗbal'),
(147389, 115482, 'pt', 'name', 'Instituto Politecnico de Setubal'),
(147390, 115483, 'en', 'name', 'Oxford College of Engineering and Management'),
(147391, 115484, 'bn', 'name', 'বাংলাদেশ পরমাণু ą¦¶ą¦•ą§ą¦¤ą¦æ কমিশন'),
(147392, 115484, 'en', 'name', 'Bangladesh Atomic Energy Commission'),
(147393, 115485, 'en', 'name', 'St. Thomas College (Autonomous)'),
(147394, 115485, 'ml', 'name', 'ą“øąµ†ą“Øąµą“±ąµ ą“¤ąµ‹ą“®ą“øąµ ą“•ąµ‹ą“³ąµ‡ą“œąµ, ą“¤ąµƒą“¶ąµ‚ąµ¼'),
(147395, 115486, 'en', 'name', 'University of Lisbon'),
(147396, 115486, 'pt', 'name', 'Universidade de Lisboa'),
(147397, 115487, 'en', 'name', 'Grenoble Computer Science Laboratory'),
(147398, 115487, 'fr', 'name', 'Laboratoire d''Informatique de Grenoble'),
(147399, 115488, 'fr', 'name', 'Laboratoire de Philosophies et RationalitƩs'),
(147400, 115489, 'en', 'name', 'Met Office'),
(147401, 115490, 'en', 'name', 'Irish Thoracic Society'),
(147402, 115491, 'tr', 'name', 'Ataşehir Adıgüzel Meslek Yüksekokulu'),
(147403, 115492, 'pt', 'name', 'Centro de Reabilitação de Paralisia Cerebral do Porto'),
(147404, 115493, 'en', 'name', 'UCLA Health'),
(147405, 115494, 'en', 'name', 'South China Institute of Frontier Science (Guangdong)'),
(147406, 115495, 'en', 'name', 'Department of Climate Change, Energy, the Environment and Water'),
(147407, 115496, 'en', 'name', 'The Kids Research Institute Australia'),
(147408, 115497, 'en', 'name', 'Markey Cancer Center'),
(147409, 115498, 'en', 'name', 'Polish Academy of Sciences'),
(147410, 115498, 'pl', 'name', 'Polska Akademia Nauk'),
(147411, 115499, 'ar', 'name', 'Ų¬Ų§ŲØŲ± بن Ų­ŁŠŲ§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„ŲµŁŠŲÆŁ„Ų§Ł†ŁŠŲ©'),
(147412, 115499, 'en', 'name', 'Jabir Ibn Hayyan University for Medical and Pharmaceutical Sciences'),
(147413, 115500, 'fr', 'name', 'SURDI.AD : SurditƩs neurosensorielles complexes et rƩhabilitation de l''audition chez l''adulte'),
(147414, 115501, 'en', 'name', 'Indo-German Science & Technology Centre'),
(147415, 115502, 'en', 'name', 'Min-On Music Research Institute'),
(147416, 115503, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„ŲŖŁ‚Ł†ŁŠŲ© ŁˆŲ§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ© Ų„ŲØŲ±Ų§Ų”'),
(147417, 115503, 'en', 'name', 'University of Technology and Applied Sciences - Ibra'),
(147418, 115504, 'no_lang_code', 'name', 'Institute of Business Management (Portugal)'),
(147419, 115505, 'en', 'name', 'Department of Science and Technology of Anhui Province'),
(147420, 115505, 'zh', 'name', 'å®‰å¾½ēœē§‘ęŠ€åŽ…'),
(147421, 115506, 'en', 'name', 'Belmont Forum'),
(147422, 115507, 'es', 'name', 'Instituto de Ciencias'),
(147423, 115508, 'en', 'name', 'Latin American Faculty of Social Sciences'),
(147424, 115508, 'es', 'name', 'Facultad Latinoamericana de Ciencias Sociales'),
(147425, 115509, 'no_lang_code', 'name', 'University of Botswana'),
(147426, 115510, 'en', 'name', 'GetĆŗlio Vargas Foundation'),
(147427, 115510, 'es', 'name', 'Fundación Getulio Vargas'),
(147428, 115510, 'pt', 'name', 'Fundação Getulio Vargas'),
(147429, 115511, 'es', 'name', 'Centro Nacional de Ɓreas Protegidas'),
(147430, 115512, 'en', 'name', 'Texas A&M University'),
(147431, 115513, 'de', 'name', 'Weltgesundheitsorganisation'),
(147432, 115513, 'en', 'name', 'World Health Organization'),
(147433, 115513, 'fr', 'name', 'Organisation Mondiale de la SantƩ'),
(147434, 115513, 'it', 'name', 'Organizzazione Mondiale della SanitĆ '),
(147435, 115514, 'pt', 'name', 'MinistƩrio do Planejamento e das Infraestruturas'),
(147436, 115515, 'bn', 'name', 'ą¦Øą§‡ą¦¤ą§ą¦°ą¦•ą§‹ą¦£ą¦¾ ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(147437, 115515, 'en', 'name', 'Netrokona University'),
(147438, 115516, 'en', 'name', 'Naval Safety Command'),
(147439, 115517, 'no_lang_code', 'name', 'Seber Portuguesa FarmacĆŖutica (Portugal), Seber Portuguese Pharmaceutical'),
(147440, 115518, 'en', 'name', 'Institute for Advanced Materials and Mathematics'),
(147441, 115518, 'es', 'name', 'Instituto de Materiales Avanzados y MatemƔticas'),
(147442, 115518, 'eu', 'name', 'Material Aurreratuetarako eta Matematikarako Institutua'),
(147443, 115519, 'en', 'name', 'Institute of Earth Sciences'),
(147444, 115519, 'is', 'name', 'Jarðvísindastofnun HÔskólans'),
(147445, 115520, 'ca', 'name', 'Departament de Recerca i Universitats'),
(147446, 115520, 'en', 'name', 'Ministry of Research and Universities'),
(147447, 115520, 'es', 'name', 'Departamento de Investigación y Universidades'),
(147448, 115521, 'pt', 'name', 'Fundação Ensino e Cultura Fernando Pessoa'),
(147449, 115522, 'no_lang_code', 'name', 'Kupu'),
(147450, 115523, 'en', 'name', 'Government of South Africa'),
(147451, 115524, 'ca', 'name', 'Universitat de Picardia'),
(147452, 115524, 'en', 'name', 'University of Picardie Jules Verne'),
(147453, 115524, 'fr', 'name', 'UniversitƩ de Picardie Jules Verne'),
(147454, 115525, 'pt', 'name', 'Embaixada do PanamĆ” em Portugal'),
(147455, 115526, 'en', 'name', 'Centre for the Research and Technology of Agro-Environmental and Biological Sciences'),
(147456, 115526, 'pt', 'name', 'Centro de Investigação e de Tecnologias Agro-Ambientais e Biologicas'),
(147457, 115527, 'fr', 'name', 'Groupe de Recherches Sociologiques sur les sociƩtƩs Contemporaines'),
(147458, 115528, 'pt', 'name', 'Universidade de Aveiro Incubator'),
(147459, 115529, 'pt', 'name', 'Unidade de Investigação em Media Artes e Design'),
(147460, 115530, 'fr', 'name', 'Centre d''Ɖtudes et de Recherches sur le DĆ©veloppement International'),
(147461, 115531, 'no_lang_code', 'name', 'Arla Foods (Denmark)'),
(147462, 115532, 'en', 'name', 'Global Research and Training Centre for Internationally Designated Areas'),
(147463, 115532, 'ko', 'name', 'ģœ ė„¤ģŠ¤ģ½” źµ­ģ œė³“ķ˜øģ§€ģ—­ źø€ė”œė²Œ ģ—°źµ¬Ā·ķ›ˆė Øģ„¼ķ„°'),
(147464, 115533, 'no_lang_code', 'name', 'Instituto Eletrotécnico Português (Portugal), Portuguese Electronic Institute'),
(147465, 115534, 'be', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Ā«ŠŠšŠŠ”Š•ŠœŠ˜ŠÆ ŠžŠ‘Š ŠŠ—ŠžŠ’ŠŠŠ˜ŠÆĀ»'),
(147466, 115534, 'en', 'name', 'State Educational Institution "Academy of Education"'),
(147467, 115534, 'ru', 'name', 'Š”Š·ŃŃ€Š¶Š°ŃžŠ½Š°Ń ŃžŃŃ‚Š°Š½Š¾Š²Š° Š°Š“ŃƒŠŗŠ°Ń†Ń‹Ń– Ā«ŠŠšŠŠ”Š­ŠœŠ†ŠÆ ŠŠ”Š£ŠšŠŠ¦Š«Š†Ā»'),
(147468, 115535, 'en', 'name', 'Geological Survey of Estonia'),
(147469, 115536, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ابن Ų³ŁŠŁ†Ų§ Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų·ŲØŁŠŲ© ŁˆŲ§Ł„ŲµŁŠŲÆŁ„Ų§Ł†ŁŠŲ©'),
(147470, 115536, 'en', 'name', 'Ibn Sina University of Medical and Pharmaceutical Sciences'),
(147471, 115537, 'de', 'name', 'Hessische Hochschule für Polizei und Verwaltung'),
(147472, 115537, 'en', 'name', 'Hessian University for Police and Administration'),
(147473, 115538, 'en', 'name', 'Human Sciences Institute (MSH) of Paris-Saclay'),
(147474, 115538, 'fr', 'name', 'Maison des Sciences sociales et des HumanitƩs de Paris-Saclay'),
(147475, 115539, 'pt', 'name', 'Galeria Geraldes da Silva'),
(147476, 115540, 'en', 'name', 'School of Management Sciences, Lucknow'),
(147477, 115541, 'en', 'name', 'Junior Academy of Sciences'),
(147478, 115541, 'uk', 'name', 'Мала Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń наук України'),
(147479, 115542, 'pt', 'name', 'Centro de Investigação Prof Doutor Joaquim Veríssimo Serrão'),
(147480, 115543, 'de', 'name', 'UniversitƤt des Saarlandes'),
(147481, 115543, 'en', 'name', 'Saarland University'),
(147482, 115544, 'en', 'name', 'United States Military Academy'),
(147483, 115544, 'es', 'name', 'Academia Militar de los Estados Unidos'),
(147484, 115544, 'fr', 'name', 'AcadƩmie Militaire de West Point'),
(147485, 115545, 'ar', 'name', 'لجامعة الاسراؔ'),
(147486, 115545, 'en', 'name', 'Al-Esraa University'),
(147487, 115546, 'bn', 'name', 'বাংলাদেশ ą¦¬ą¦¾ą¦Æą¦¼ą§‹ą¦ą¦„ą¦æą¦•ą§ą¦ø ą¦øą§‹ą¦øą¦¾ą¦‡ą¦Ÿą¦æ, ą¦¬ą¦æą¦¬ą¦æą¦ą¦ø'),
(147488, 115546, 'en', 'name', 'Bangladesh Bioethics Society'),
(147489, 115547, 'no_lang_code', 'name', 'Momento Medico Publishing House, Momento MƩdico Editora de PublicaƧƵes (Portugal)'),
(147490, 115548, 'en', 'name', 'Carl Remigius Medical School'),
(147491, 115549, 'de', 'name', 'Konsortium der Schweizer Hochschulbibliotheken'),
(147492, 115549, 'en', 'name', 'Consortium of Swiss Academic Libraries'),
(147493, 115549, 'fr', 'name', 'Consortium des bibliothĆØques universitaires suisses'),
(147494, 115549, 'it', 'name', 'Consorzio delle biblioteche universitarie svizzere'),
(147495, 115550, 'en', 'name', 'University of Otago'),
(147496, 115551, 'ca', 'name', 'Departament d''Empresa i Treball'),
(147497, 115551, 'en', 'name', 'Ministry of Business and Knowledge, Government of Catalonia'),
(147498, 115551, 'es', 'name', 'Departamento de Empresa y Conocimiento, Generalidad de CataluƱa'),
(147499, 115552, 'pt', 'name', 'Instituto de Artes Visuais, Design e Marketing'),
(147500, 115553, 'fr', 'name', 'Centre Technique Interprofessionnel des OlƩagineux MƩtropolitains'),
(147501, 115554, 'en', 'name', 'Fontys University of Applied Sciences'),
(147502, 115554, 'nl', 'name', 'Fontys Hogeschool'),
(147503, 115555, 'en', 'name', 'ETC Group, ETC Group - Action Group on Erosion, Technology and Concentration'),
(147504, 115556, 'ca', 'name', 'Institut de Seguretat PĆŗblica de Catalunya'),
(147505, 115556, 'en', 'name', 'Institute for Public Security of Catalonia'),
(147506, 115556, 'es', 'name', 'Instituto de Seguridad Pública de Cataluña'),
(147507, 115557, 'en', 'name', 'National University of General Sarmiento'),
(147508, 115557, 'es', 'name', 'Universidad Nacional de General Sarmiento'),
(147509, 115557, 'fr', 'name', 'UniversitƩ nationale de general sarmiento'),
(147510, 115557, 'it', 'name', 'UniversitĆ  Nazionale di General Sarmiento'),
(147511, 115558, 'fr', 'name', 'ROMEO'),
(147512, 115559, 'en', 'name', 'University of North Sumatra'),
(147513, 115559, 'id', 'name', 'Universitas Sumatera Utara'),
(147514, 115560, 'fr', 'name', 'Laboratoire Angevin de MƩcanique, ProcƩdƩs et InnovAtion'),
(147515, 115561, 'en', 'name', 'Department of Education Shandong Province'),
(147516, 115561, 'zh', 'name', 'å±±äøœēœę•™č‚²åŽ…ļ¼ˆēœå§”ę•™č‚²å·„å§”ļ¼‰'),
(147517, 115562, 'en', 'name', 'Islamic Azad University, Tehran'),
(147518, 115562, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ'),
(147519, 115563, 'es', 'name', 'Centro de Producción e Investigación en Artes'),
(147520, 115564, 'pt', 'name', 'Centro de Estudos de Comunicação e Cultura'),
(147521, 115565, 'en', 'name', 'U.S. Army Intelligence Center of Excellence'),
(147522, 115566, 'en', 'name', 'Pan African Thoracic Society'),
(147523, 115567, 'pt', 'name', 'Fundação Professor Francisco Pulido Valente'),
(147524, 115568, 'en', 'name', 'ICMR - National Institute of Immunohaemotology'),
(147525, 115568, 'hi', 'name', 'आय ą¤øą„€ ą¤ą¤® आर - ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¤ą¤æą¤°ą¤•ą„ą¤·ą¤¾ ą¤°ą„ą¤§ą¤æą¤° ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(147526, 115569, 'am', 'name', 'į‹ØįŠ¢į‰µį‹®įŒµį‹« į‹ØįŒį‰„įˆ­įŠ“ įˆįˆ­įˆįˆ­ įŠ¢įŠ•įˆµį‰²į‰µį‹©į‰µ'),
(147527, 115569, 'en', 'name', 'Ethiopian Institute of Agricultural Research'),
(147528, 115570, 'no_lang_code', 'name', 'IQVIA (United States)'),
(147529, 115571, 'en', 'name', 'Netversity International'),
(147530, 115572, 'en', 'name', 'AnamĆŖ Health Design'),
(147531, 115572, 'no_lang_code', 'name', 'AnamĆŖ Health Design (Brazil)'),
(147532, 115573, 'en', 'name', 'Royal Conservatory The Hague'),
(147533, 115573, 'nl', 'name', 'Koninklijk Conservatorium'),
(147534, 115574, 'en', 'name', 'ICAR-Directorate of Rapeseed-Mustard Research, Bharatpur'),
(147535, 115574, 'hi', 'name', 'ą¤­ą¤¾ą¤•ą„ƒą¤…ą¤Øą„ą¤Ŗ-ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą¤°ą¤øą„‹ą¤‚ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(147536, 115575, 'ca', 'name', 'Agència de Gestió d''Ajuts Universitaris i de Recerca'),
(147537, 115575, 'es', 'name', 'Agencia de Gestión de Ayudas Universitarias y de Investigación'),
(147538, 115576, 'de', 'name', 'Leibniz-Gemeinschaft'),
(147539, 115576, 'en', 'name', 'Leibniz Association'),
(147540, 115577, 'en', 'name', 'Seychelles Public Health Authority'),
(147541, 115578, 'ar', 'name', 'مستؓفى Ł…ŲÆŁŠŁ†Ų© Ų„ŲŖŁ„ŁŠŁƒ'),
(147542, 115578, 'en', 'name', 'Ankara Etlik City Hospital'),
(147543, 115578, 'tr', 'name', 'Ankara Etlik Şehir Hastanesi'),
(147544, 115579, 'fr', 'name', 'GDR NBODY : ProblĆØme quantique Ć  N corps en chimie et physique'),
(147545, 115580, 'en', 'name', 'National Research Center on Human Evolution'),
(147546, 115580, 'es', 'name', 'Centro Nacional de Investigación sobre la Evolución Humana'),
(147547, 115581, 'en', 'name', 'Laboratory of Microstructure Studies and Mechanics of Materials'),
(147548, 115581, 'fr', 'name', 'Laboratoire d''Ɖtude des Microstructures et de MĆ©canique des MatĆ©riaux'),
(147549, 115582, 'fr', 'name', 'Inria Sophia Antipolis - MƩditerranƩe, Research Centre Inria Sophia Antipolis - MƩditerranƩe'),
(147550, 115583, 'en', 'name', 'Chirchik State Pedagogical University'),
(147551, 115584, 'en', 'name', 'Andijan State Technical Institute'),
(147552, 115584, 'ru', 'name', 'АнГижанского Š³Š¾ŃŃƒŠ“арственного технического ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Š°'),
(147553, 115584, 'uz', 'name', 'Andijon davlat texnika insituti'),
(147554, 115585, 'en', 'name', 'Sustainment Center of Excellence'),
(147555, 115586, 'en', 'name', 'Alliance for Education on Probiotics'),
(147556, 115587, 'fr', 'name', 'Centre National de la Propriété Forestière'),
(147557, 115588, 'en', 'name', 'FiberCop, FiberCop (Italy)'),
(147558, 115589, 'fr', 'name', 'Transgénèse pour les études fonctionnelles sur les organismes modèles - Paris-Saclay'),
(147559, 115590, 'en', 'name', 'Egaz Moniz School of Health and Science'),
(147560, 115590, 'pt', 'name', 'Escola Superior de SaĆŗde Egas Moniz'),
(147561, 115591, 'pt', 'name', 'Instituto PortuguĆŖs do Ritmo CardĆ­aco'),
(147562, 115592, 'no_lang_code', 'name', 'X2 Science Solutions (Portugal)'),
(147563, 115593, 'ar', 'name', 'Ų¬ŁŽŲ§Ł…ŁŲ¹ŁŽŲ© حِمْص'),
(147564, 115593, 'en', 'name', 'Homs University'),
(147565, 115594, 'no_lang_code', 'name', 'Kironfarma Pharmaceutical Products, Kironfarma Produtos FarmacĆŖuticos (Portugal)'),
(147566, 115595, 'en', 'name', 'Halland County Council'),
(147567, 115595, 'sv', 'name', 'Region Halland'),
(147568, 115596, 'bn', 'name', 'ą¦†ą¦°ą§ą¦®ą¦æ ą¦‡ą¦Øą¦øą§ą¦Ÿą¦æą¦Ÿą¦æą¦‰ą¦Ÿ অব ą¦¬ą¦æą¦œą¦Øą§‡ą¦ø ą¦ą¦”ą¦®ą¦æą¦Øą¦æą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦¶ą¦Ø, ą¦øą¦æą¦²ą§‡ą¦Ÿ'),
(147569, 115596, 'en', 'name', 'Army Institute of Business Administration, Sylhet'),
(147570, 115597, 'en', 'name', 'International Centre for the Integrated Management of Watershed and Bio-Resources in Arid and Semi-Arid Regions'),
(147571, 115598, 'en', 'name', 'Prevention of Chemical Risks'),
(147572, 115598, 'fr', 'name', 'PrƩvention du risque chimique'),
(147573, 115599, 'en', 'name', 'Louisiana State University Health Sciences Center New Orleans'),
(147574, 115600, 'en', 'name', 'Chinese Aeronautical Establishment'),
(147575, 115600, 'zh', 'name', 'äø­å›½čˆŖē©ŗē ”ē©¶é™¢'),
(147576, 115601, 'en', 'name', 'East Africa Institute for Fundamental Research, ICTP - East Africa Institute for Fundamental Research'),
(147577, 115602, 'en', 'name', 'University of La Laguna'),
(147578, 115602, 'es', 'name', 'Universidad de La Laguna'),
(147579, 115602, 'gl', 'name', 'Universidade de La Laguna'),
(147580, 115603, 'pt', 'name', 'INCUB“UP ANPME'),
(147581, 115604, 'en', 'name', 'Centre for the Sustainable Management of Water Resources in the Caribbean Island Sates'),
(147582, 115605, 'en', 'name', 'Nurses Specialized in Wound, Ostomy and Continence Canada'),
(147583, 115606, 'en', 'name', 'East Texas A&M University'),
(147584, 115607, 'en', 'name', 'KLA Corporation, KLA Corporation (United States)'),
(147585, 115608, 'no_lang_code', 'name', 'International Society for the Promotion of Education and Culture, Sociedade Internacional de Promoção de Ensino e Cultura (Portugal)'),
(147586, 115609, 'fr', 'name', 'Centre de Recherche en Odontologie Clinique'),
(147587, 115610, 'fr', 'name', 'Outils de RƩsolution AlgƩbriques pour la GƩomƩtrie et ses Applications'),
(147588, 115611, 'fr', 'name', 'CEA Cadarache, Centre de Cadarache'),
(147589, 115612, 'en', 'name', 'Army University'),
(147590, 115613, 'en', 'name', 'Jisc'),
(147591, 115614, 'pt', 'name', 'Laboratório de Ciências Forenses e Psicológicas Egas Moniz'),
(147592, 115615, 'en', 'name', 'Autonomous University of Lisbon'),
(147593, 115615, 'pt', 'name', 'Universidade Autónoma de Lisboa'),
(147594, 115616, 'en', 'name', 'Romanian Academy, Iași Divison'),
(147595, 115616, 'ro', 'name', 'Academia RomĆ¢nă, Filiala Iași'),
(147596, 115617, 'en', 'name', 'French Higher Education Institution in Agriculture, Food, Horticultural and Landscape Sciences'),
(147597, 115617, 'fr', 'name', 'Institut Agro Rennes-Angers'),
(147598, 115618, 'en', 'name', 'WWF-Pakistan'),
(147599, 115619, 'pt', 'name', 'Centro de Investigação Desenvolvimento e Inovação da Academia Militar'),
(147600, 115620, 'en', 'name', 'University of Delaware'),
(147601, 115620, 'es', 'name', 'Universidad de Delaware'),
(147602, 115620, 'fr', 'name', 'UniversitƩ du Delaware'),
(147603, 115621, 'en', 'name', 'Quezon City University'),
(147604, 115622, 'en', 'name', 'Institute for High Energy Physics'),
(147605, 115622, 'es', 'name', 'Institut de Fisica d''Altes Energies'),
(147606, 115623, 'en', 'name', 'Singapore Baptist Theological Seminary'),
(147607, 115623, 'zh', 'name', 'ę–°åŠ å”ęµøäæ”ä¼šē„žå­¦é™¢'),
(147608, 115624, 'fr', 'name', 'Microscopie Fonctionnelle du Vivant'),
(147609, 115625, 'en', 'name', 'University of Nigeria'),
(147610, 115625, 'yo', 'name', 'YunifĆ”sĆ­tƬ ilẹ̀ NƠƬjĆ­rĆ­Ć '),
(147611, 115626, 'cs', 'name', 'Český sociĆ”lněvědnĆ­ datový archiv'),
(147612, 115626, 'en', 'name', 'Czech Social Science Data Archive'),
(147613, 115627, 'pt', 'name', 'Instituto das Comunidades Educativas'),
(147614, 115628, 'de', 'name', 'Zürcher Fachhochschule'),
(147615, 115629, 'en', 'name', 'Central University of South Bihar'),
(147616, 115629, 'hi', 'name', 'ą¤¦ą¤•ą„ą¤·ą¤æą¤£ बिहार ą¤•ą„‡ą¤Øą„ā€ą¤¦ą„ą¤°ą„€ą¤Æ ą¤µą¤æą¤¶ą„ā€ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(147617, 115630, 'en', 'name', 'Regional Experimental Centre for Sanitation Technologies'),
(147618, 115631, 'en', 'name', 'National University of Costa Rica'),
(147619, 115631, 'es', 'name', 'Universidad Nacional'),
(147620, 115632, 'en', 'name', 'Gobabeb Namib Research Institute'),
(147621, 115633, 'no_lang_code', 'name', 'Prizmakat (Portugal)'),
(147622, 115634, 'pt', 'name', 'Instituto para o Desenvolvimento AgrÔrio da Região Norte'),
(147623, 115635, 'en', 'name', 'National University of La Plata'),
(147624, 115635, 'es', 'name', 'Universidad Nacional de La Plata'),
(147625, 115635, 'fr', 'name', 'UniversitƩ nationale de la plata'),
(147626, 115636, 'es', 'name', 'Sociedad Española de Endocrinología y Nutrición'),
(147627, 115637, 'en', 'name', 'Livingstone Center for Prevention and Translational Science'),
(147628, 115638, 'en', 'name', 'InBio: Experimental and Computational Methods for Modeling Cellular Processes'),
(147629, 115639, 'fr', 'name', 'Biologie des Organismes et ƉcosystĆØmes Aquatiques'),
(147630, 115640, 'de', 'name', 'Institut für Geschichte des ländlichen Raumes'),
(147631, 115640, 'en', 'name', 'Institute of Rural History'),
(147632, 115641, 'en', 'name', 'Safran Electronics & Defense Spain, Safran Electronics & Defense Spain S.L.U., Safran Electronics & Defense Spain S.L.U. (Spain)'),
(147633, 115642, 'no_lang_code', 'name', 'Takeda (Portugal)'),
(147634, 115643, 'en', 'name', 'Jagannath International Management School, Vasant Kunj, New Delhi'),
(147635, 115644, 'de', 'name', 'Ludwig Boltzmann Gesellschaft'),
(147636, 115645, 'en', 'name', 'Dmytro Motornyi Tavria State Agrotechnological University'),
(147637, 115645, 'uk', 'name', 'Š¢Š°Š²Ń€Ń–Š¹ŃŃŒŠŗŠøŠ¹ Гержавний агротехнологічний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ імені Дмитра ŠœŠ¾Ń‚орного'),
(147638, 115646, 'en', 'name', 'Naval Academy Research Institute'),
(147639, 115646, 'fr', 'name', 'Institut de Recherche de l’École Navale'),
(147640, 115647, 'pt', 'name', 'Escola Superior ArtĆ­stica do Porto'),
(147641, 115648, 'de', 'name', 'Internationaler Verband Forstlicher Forschungsanstalten'),
(147642, 115648, 'en', 'name', 'International Union of Forest Research Organizations'),
(147643, 115648, 'es', 'name', 'Unión Internacional de Institutos de Investigación Forestal'),
(147644, 115648, 'fr', 'name', 'Union Internationale des Instituts de Recherches ForestiĆØres'),
(147645, 115649, 'en', 'name', 'Inter-American Institute'),
(147646, 115650, 'af', 'name', 'Departement van Bosbou, Visserye en die Omgewing'),
(147647, 115650, 'en', 'name', 'Department of Forestry, Fisheries and the Environment'),
(147648, 115650, 'no_lang_code', 'name', 'Kgoro ya Kagodikgwa, Boreadihlapi le Tikologo'),
(147649, 115650, 'nr', 'name', 'OmNyango wezamaHlathi, iinHlambi neBhoduluko'),
(147650, 115650, 'ss', 'name', 'Litiko Letemahlatsi, Tinhlanti Netemvelo'),
(147651, 115650, 'st', 'name', 'Lefapha la Meru, Indasteri ya DitlhapiBotshwasi le Tikoloho'),
(147652, 115650, 'tn', 'name', 'Lefapha la Dikgwa, Ditlhapi le Tikologo'),
(147653, 115650, 'ts', 'name', 'Ndzawulo ya Swihlahla, swa Tinhlampfi na Mbango'),
(147654, 115650, 've', 'name', 'Muhasho wa zwa Vhusima-maįø“aka, Vhurakhovhe na Mupo'),
(147655, 115650, 'xh', 'name', 'ISebe lezamaHlathi, ezokuLoba noKusingqongileyo'),
(147656, 115650, 'zu', 'name', 'uMnyango Wezamahlathi, Ezokudoba Nezemvelo'),
(147657, 115651, 'fr', 'name', 'Centre Michel de l’Hospital'),
(147658, 115652, 'en', 'name', 'Berlin International University of Applied Sciences'),
(147659, 115653, 'en', 'name', 'U.S. Army Medical Center of Excellence'),
(147660, 115654, 'no_lang_code', 'name', 'InterContinental Lisboa (Portugal), InterContinental Lisbon'),
(147661, 115655, 'pt', 'name', 'Escola Superior de Actividades ImobiliƔrias'),
(147662, 115656, 'en', 'name', 'GreenCoLab'),
(147663, 115657, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المعارف Ł„Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„ŲŖŲ·ŲØŁŠŁ‚ŁŠŲ©'),
(147664, 115657, 'en', 'name', 'Maaref University of Applied Sciences'),
(147665, 115658, 'en', 'name', 'Academy of Sciences of Moldova'),
(147666, 115658, 'ro', 'name', 'Academia de Științe a Moldovei'),
(147667, 115658, 'ru', 'name', 'ŠŠŗŠ°Š“ŠµŠ¼ŠøŃ наук МолГавии'),
(147668, 115659, 'en', 'name', 'European Severe Storms Laboratory - Science and Training'),
(147669, 115660, 'pt', 'name', 'MaiĆŖutica Cooperativa de Ensino Superior'),
(147670, 115661, 'no_lang_code', 'name', 'EGOR Group, Grupo EGOR (Portugal)'),
(147671, 115662, 'en', 'name', 'Independent Research Association'),
(147672, 115662, 'ro', 'name', 'Asociația Independent Research'),
(147673, 115663, 'en', 'name', 'National Alliance against Disparities in Patient Health'),
(147674, 115664, 'en', 'name', 'European Spallation Source'),
(147675, 115665, 'en', 'name', 'Regional Humid Tropics Hydrology and Water Resources Centre for South-East Asia and the Pacific'),
(147676, 115666, 'en', 'name', 'Amsterdam Neuroscience'),
(147677, 115666, 'nl', 'name', 'Researchsites Amsterdam'),
(147678, 115667, 'bg', 'name', 'Š‘ŃŠŠ»Š³Š°Ń€ŃŠŗŠ° Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ на Š½Š°ŃƒŠŗŠøŃ‚е'),
(147679, 115667, 'en', 'name', 'Bulgarian Academy of Sciences'),
(147680, 115667, 'tr', 'name', 'Bulgar Bilimler Akademisi'),
(147681, 115668, 'en', 'name', 'Islamic Azad University, Fasa Branch'),
(147682, 115668, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒŁˆŲ§Ų­ŲÆ فسا'),
(147683, 115669, 'en', 'name', 'Laboratory of design, manufacturing and control'),
(147684, 115669, 'fr', 'name', 'Laboratoire de Conception Fabrication Commande'),
(147685, 115670, 'ca', 'name', 'Universitat de Girona'),
(147686, 115671, 'ca', 'name', 'Agencia per a la Competitivit de l''Empresa'),
(147687, 115672, 'en', 'name', 'Colombian National Navy'),
(147688, 115672, 'es', 'name', 'Armada de Colombia'),
(147689, 115673, 'es', 'name', 'Fundación GESICA'),
(147690, 115674, 'en', 'name', 'International Space Science Institute'),
(147691, 115675, 'en', 'name', 'National Scientific Center Ā«ŠŠ¾n. Prof. М.S. Bokarius Forensic Science InstituteĀ»'),
(147692, 115675, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ науковий центр Ā«Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŃƒŠ“Š¾Š²ŠøŃ… експертиз ім. Засл. проф. М.Š”. Š‘Š¾ŠŗŠ°Ń€Ń–ŃƒŃŠ°Ā»'),
(147693, 115676, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© البلمند'),
(147694, 115676, 'en', 'name', 'University of Balamand'),
(147695, 115676, 'fr', 'name', 'UniversitƩ de Balamand'),
(147696, 115677, 'en', 'name', 'NingboTech University'),
(147697, 115677, 'zh', 'name', '浙大宁波理巄学院'),
(147698, 115678, 'en', 'name', 'Nuclear Energy Agency'),
(147699, 115679, 'en', 'name', 'Central Forensic Laboratory of the Police'),
(147700, 115679, 'pl', 'name', 'Centralne Laboratorium Kryminalistyczne Policji'),
(147701, 115680, 'en', 'name', 'Osaka Medical and Pharmaceutical University'),
(147702, 115680, 'ja', 'name', 'å¤§é˜ŖåŒ»ē§‘č–¬ē§‘å¤§å­¦'),
(147703, 115681, 'pt', 'name', 'Centro de Estudos Interdisciplinares do SƩculo XX'),
(147704, 115682, 'en', 'name', 'International Training Network, Bangladesh University of Engineering and Technology'),
(147705, 115683, 'en', 'name', 'ZonMw, The Dutch Organisation for knowledge and innovation in health, healthcare and well-being'),
(147706, 115684, 'en', 'name', 'Washington University in St. Louis'),
(147707, 115684, 'es', 'name', 'Universidad Washington en San Luis'),
(147708, 115684, 'fr', 'name', 'UniversitƩ Washington Ơ Saint-louis'),
(147709, 115685, 'en', 'name', 'NOAA Integrated Ocean Observing System'),
(147710, 115686, 'id', 'name', 'Universitas Sembilanbelas November Kolaka'),
(147711, 115687, 'en', 'name', 'Latin American Faculty of Social Sciences Costa Rica'),
(147712, 115687, 'es', 'name', 'Facultad Latinoamericana de Ciencias Sociales Costa Rica'),
(147713, 115688, 'fr', 'name', 'Institut droit Ʃthique patrimoine'),
(147714, 115689, 'de', 'name', 'Deutsche Gesellschaft für Neurologie'),
(147715, 115689, 'en', 'name', 'German Neurological Society'),
(147716, 115690, 'pt', 'name', 'CÔtedra Educação Cidadania e Diversidade Cultural'),
(147717, 115691, 'bn', 'name', 'বাংলাদেশ ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অব ą¦Ŗą§ą¦°ą¦«ą§‡ą¦¶ą¦Øą¦¾ą¦²ą¦ø'),
(147718, 115691, 'en', 'name', 'Bangladesh University of Professionals'),
(147719, 115692, 'en', 'name', 'Evercare Hospital Dhaka'),
(147720, 115693, 'de', 'name', 'Bundesinstitut für Bau-, Stadt- und Raumforschung'),
(147721, 115694, 'en', 'name', 'International Training Centre in Astronomy'),
(147722, 115694, 'th', 'name', 'ąøØąø¹ąø™ąø¢ą¹Œąøąø¶ąøąø­ąøšąø£ąø”ąø”ąø²ąø£ąø²ąøØąø²ąøŖąø•ąø£ą¹Œąø™ąø²ąø™ąø²ąøŠąø²ąø•ąø“ąø ąø²ąø¢ą¹ƒąø•ą¹‰ąø¢ąø¹ą¹€ąø™ąøŖą¹‚ąø'),
(147723, 115695, 'pt', 'name', 'Centro de Reabilitação de Paralisia Cerebral Calouste Gulbenkian'),
(147724, 115696, 'no_lang_code', 'name', 'Grupo Martifer (Portugal), Martifer Group'),
(147725, 115697, 'en', 'name', 'African Regional Centre for Ecohydrology'),
(147726, 115698, 'no_lang_code', 'name', 'Moreirense Football Club, Moreirense Futebol Clube (Portugal)'),
(147727, 115699, 'no_lang_code', 'name', 'GfK Portugal Marketing Services (Portugal), GfK Portugal Marketing Services, S.A.'),
(147728, 115700, 'de', 'name', 'Deutsches Institut für Gesundheitsforschung, Deutsches Institut für Gesundheitsforschung gGmbH'),
(147729, 115701, 'pt', 'name', 'Centro de Estudos sobre a Mudança Socioeconómica e o Território'),
(147730, 115702, 'en', 'name', 'U.S. Army Maneuver Center of Excellence'),
(147731, 115703, 'fr', 'name', 'Centre Pays de la Loire'),
(147732, 115704, 'en', 'name', 'California State University System'),
(147733, 115704, 'es', 'name', 'Universidad Estatal de California'),
(147734, 115704, 'fr', 'name', 'UniversitĆ© d''Ɖtat de californie'),
(147735, 115705, 'fr', 'name', 'Centre Hospitalier Universitaire de Sherbrooke'),
(147736, 115706, 'en', 'name', 'Institute of Bioenergy Crops and Sugar Beet'),
(147737, 115706, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ біоенергетичних ŠŗŃƒŠ»ŃŒŃ‚ŃƒŃ€ і Ń†ŃƒŠŗŃ€Š¾Š²ŠøŃ… Š±ŃƒŃ€ŃŠŗŃ–Š²'),
(147738, 115707, 'pt', 'name', 'Centro Hospitalar Lisboa Norte'),
(147739, 115708, 'de', 'name', 'Studienzentrum für Kernenergie'),
(147740, 115708, 'en', 'name', 'Belgian Nuclear Research Centre'),
(147741, 115708, 'fr', 'name', 'Centre d''Ɖtude de l''Ć©nergie NuclĆ©aire'),
(147742, 115708, 'nl', 'name', 'Studiecentrum voor Kernenergie'),
(147743, 115709, 'de', 'name', 'Institut für Elektrische Energieversorgung und Hochspannungstechnik'),
(147744, 115709, 'en', 'name', 'Institute of Electrical Power Systems and High Voltage Engineering'),
(147745, 115710, 'fr', 'name', 'Sciences et Technologies des Cultures et SociƩtƩs NumƩriques'),
(147746, 115711, 'en', 'name', 'Mayanei Hayeshua Medical Center'),
(147747, 115711, 'he', 'name', '×ž×Ø×›×– רפואי מעיני הישועה'),
(147748, 115712, 'en', 'name', 'We and AI, We and AI Ltd'),
(147749, 115713, 'en', 'name', 'National University of Tierra del Fuego'),
(147750, 115713, 'es', 'name', 'Universidad Nacional de Tierra del Fuego, AntƔrtida e Islas del AtlƔntico Sur'),
(147751, 115714, 'es', 'name', 'Laboratorio Nacional de GeoInteligencia'),
(147752, 115715, 'de', 'name', 'UniversitƤt Freiburg'),
(147753, 115715, 'en', 'name', 'University of Fribourg'),
(147754, 115715, 'fr', 'name', 'UniversitƩ de Fribourg'),
(147755, 115715, 'it', 'name', 'UniversitĆ  di Friburgo'),
(147756, 115716, 'en', 'name', 'Inria Lyon Centre'),
(147757, 115717, 'en', 'name', 'Ambika Prasad Research Foundation'),
(147758, 115718, 'en', 'name', 'Openscapes, Openscapes (United States)'),
(147759, 115719, 'de', 'name', 'Gesellschaft fuer klinische Forschung'),
(147760, 115719, 'en', 'name', 'Society for Clinical Research'),
(147761, 115720, 'nl', 'name', 'Hogeschool iPabo'),
(147762, 115721, 'en', 'name', 'Polytechnic Institute of Viseu');
INSERT INTO `ror_settings` VALUES
(147763, 115721, 'pt', 'name', 'Instituto PolitƩcnico de Viseu'),
(147764, 115722, 'es', 'name', 'Centro de Estudios Sociales Interdisciplinarios del Litoral'),
(147765, 115723, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų¹ŁŠŁ† Ł„Ł„Ų¹Ł„ŁˆŁ… ŁˆŲ§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(147766, 115723, 'en', 'name', 'Al Ain University'),
(147767, 115724, 'en', 'name', 'University Ambrosiana'),
(147768, 115724, 'it', 'name', 'UniversitĆ  Ambrosiana'),
(147769, 115725, 'pt', 'name', 'Valoriza Centro de Investigação para a Valorização de Recursos Endógenos'),
(147770, 115726, 'es', 'name', 'Centro Interdisciplinario de Estudios sobre Desarrollo'),
(147771, 115727, 'en', 'name', 'Portuguese Military Academy'),
(147772, 115727, 'pt', 'name', 'Academia Militar'),
(147773, 115728, 'en', 'name', 'Lira University'),
(147774, 115729, 'en', 'name', 'International Centre for Integrated Mountain Development'),
(147775, 115730, 'en', 'name', 'Diseases and Hormones of the Nervous System'),
(147776, 115730, 'fr', 'name', 'Maladies et hormones du systĆØme nerveux'),
(147777, 115731, 'bn', 'name', 'ą¦•ą§‡ą¦Øą§ą¦¦ą§ą¦°ą§€ą§Ÿ পুলিশ হাসপাতাল'),
(147778, 115731, 'en', 'name', 'Central Police Hospital'),
(147779, 115732, 'en', 'name', 'Developmental Biology Laboratory'),
(147780, 115732, 'fr', 'name', 'Laboratoire de Biologie du DƩveloppement'),
(147781, 115733, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ‡Ų§Ł† - ŲÆŁ‡ŁˆŁƒ'),
(147782, 115733, 'no_lang_code', 'name', 'Cihan University - Duhok'),
(147783, 115734, 'en', 'name', 'University of Chicago'),
(147784, 115734, 'es', 'name', 'Universidad de Chicago'),
(147785, 115734, 'fr', 'name', 'UniversitƩ de chicago'),
(147786, 115735, 'en', 'name', 'Land and Forest Iceland'),
(147787, 115735, 'is', 'name', 'Land og skógur'),
(147788, 115736, 'en', 'name', 'International Centre for Mediterranean Biosphere Reserves'),
(147789, 115736, 'es', 'name', 'Centro Internacional para las Reservas de la Biosfera MediterrƔneas'),
(147790, 115737, 'en', 'name', 'Ministry of Health and Welfare'),
(147791, 115738, 'en', 'name', 'Dr. Hilla Limann Technical University'),
(147792, 115739, 'en', 'name', 'Imo State University'),
(147793, 115739, 'yo', 'name', 'YunifĆ”sĆ­tƬ ÌpĆ­nlẹ̀ ƍmò'),
(147794, 115740, 'en', 'name', 'Amsterdam Public Health'),
(147795, 115741, 'en', 'name', 'Adesh Medical College & Hospital'),
(147796, 115742, 'en', 'name', 'Pontifical Catholic University of Rio Grande do Sul'),
(147797, 115742, 'pt', 'name', 'Pontifícia Universidade Católica do Rio Grande do Sul'),
(147798, 115743, 'fr', 'name', 'Institut Mines-TƩlƩcom, Institut TƩlƩcom'),
(147799, 115744, 'en', 'name', 'Geo, Geo (Denmark)'),
(147800, 115745, 'en', 'name', 'Knowledge Exchange'),
(147801, 115746, 'fr', 'name', 'Laboratoire des Agroressources, BiomolĆ©cules et Chimie pour l’Innovation en SantĆ©'),
(147802, 115747, 'de', 'name', 'Barkhausen Institut, Barkhausen Institut gGmbH'),
(147803, 115748, 'no_lang_code', 'name', 'Lightbook, Livroluz (Portugal)'),
(147804, 115749, 'en', 'name', 'Geological Survey of the Netherlands'),
(147805, 115750, 'en', 'name', 'Mazovian University in Płock'),
(147806, 115750, 'pl', 'name', 'Akademια Mazowiecka w Płocku'),
(147807, 115751, 'pt', 'name', 'Instituto Nacional de CiĆŖncia e Tecnologia em Nanomateriais de Carbono'),
(147808, 115752, 'en', 'name', 'Inria Saclay Centre at Institut Polytechnique de Paris'),
(147809, 115752, 'fr', 'name', 'Centre Inria de l''Institut Polytechnique de Paris'),
(147810, 115753, 'en', 'name', 'Centre for Marine Technology and Ocean Engineering'),
(147811, 115753, 'pt', 'name', 'Centro de Engenharia e Tecnologia Naval e Oceanica'),
(147812, 115754, 'pt', 'name', 'Health Cluster Portugal'),
(147813, 115755, 'nl', 'name', 'Stichting Aeres Groep'),
(147814, 115756, 'no_lang_code', 'name', 'National Instruments (United States)'),
(147815, 115757, 'en', 'name', 'Environment and Climate Change Canada'),
(147816, 115757, 'fr', 'name', 'Environnement et Changement Climatique Canada'),
(147817, 115758, 'no_lang_code', 'name', 'De Gruyter Brill, De Gruyter Brill (Germany)'),
(147818, 115759, 'en', 'name', 'U.S. Army Combat Capabilities Development Command Ground Vehicle System Center'),
(147819, 115760, 'no_lang_code', 'name', 'Mercator Ocean (France)'),
(147820, 115761, 'fr', 'name', 'Centre Hospitalier Universitaire de NƮmes'),
(147821, 115762, 'en', 'name', 'IB-Cancer Research Foundation'),
(147822, 115763, 'en', 'name', 'Lyceum of the Philippines University'),
(147823, 115764, 'no_lang_code', 'name', 'Grupo LusĆ­adas SaĆŗde, Grupo LusĆ­adas SaĆŗde (Portugal), Lusiadas Health Group'),
(147824, 115765, 'en', 'name', 'LEAD College of Management, LEAD College of Management (Autonomous)'),
(147825, 115766, 'en', 'name', 'National Astronomical Research Institute of Thailand'),
(147826, 115767, 'en', 'name', 'Ministry of Science and Technology of the People''s Republic of China'),
(147827, 115767, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½ē§‘å­¦ęŠ€ęœÆéƒØ'),
(147828, 115768, 'de', 'name', 'Zentrum für Medien-, Kommunikations- und Informationsforschung'),
(147829, 115768, 'en', 'name', 'Centre for Media, Communication and Information Research'),
(147830, 115769, 'en', 'name', 'Mary Baldwin University'),
(147831, 115770, 'en', 'name', 'Ministry of Education and Culture, Ministry of Education and Culture – Government of Samoa'),
(147832, 115771, 'en', 'name', 'West Virginia University Institute of Technology'),
(147833, 115772, 'pt', 'name', 'Ponteditora'),
(147834, 115773, 'en', 'name', 'Institute of Scientific Research of Physical Education and Sport'),
(147835, 115773, 'uz', 'name', 'Jismoniy tarbiya va sport ilmiy tadqiqotlar instituti'),
(147836, 115774, 'en', 'name', 'Central and Northern California Ocean Observing System'),
(147837, 115775, 'de', 'name', 'Deutsches Zentrum für Infektionsforschung'),
(147838, 115775, 'en', 'name', 'German Center for Infection Research'),
(147839, 115776, 'da', 'name', 'Region Syddanmark'),
(147840, 115776, 'de', 'name', 'Region Süddänemark'),
(147841, 115776, 'en', 'name', 'Region of Southern Denmark'),
(147842, 115777, 'en', 'name', 'Institute of Mechanics of Continua and Mathematical Sciences'),
(147843, 115778, 'en', 'name', 'Afghan Telecom, Afghan Telecom (Afghanistan)'),
(147844, 115779, 'it', 'name', 'Liceo Scientifico Statale "S. Cannizzaro" di Palermo'),
(147845, 115780, 'no_lang_code', 'name', 'Joalvi Commercial Textiles Ltd, Joalvi Comércio Têxteis Unipessoal (Portugal)'),
(147846, 115781, 'pt', 'name', 'CƔtedra de Estudos Sefarditas Alberto Benveniste'),
(147847, 115782, 'en', 'name', 'Myriad USA'),
(147848, 115783, 'en', 'name', 'Federal Medical Centre Abuja'),
(147849, 115784, 'ca', 'name', 'Observatori de ParĆ­s'),
(147850, 115784, 'en', 'name', 'Paris Observatory'),
(147851, 115784, 'eu', 'name', 'Parisko Behatokia'),
(147852, 115784, 'fr', 'name', 'Observatoire de Paris'),
(147853, 115785, 'en', 'name', 'Shree Somnath Sanskrit University'),
(147854, 115786, 'en', 'name', 'Virtual Vehicle Research GmbH'),
(147855, 115786, 'no_lang_code', 'name', 'Virtual Vehicle Research GmbH (Austria)'),
(147856, 115787, 'de', 'name', 'Bundesministerium für Familien und Jugend'),
(147857, 115787, 'en', 'name', 'Federal Ministry of Families and Youth'),
(147858, 115788, 'pt', 'name', 'Hospital Distrital Pombal'),
(147859, 115789, 'pt', 'name', 'Fundação Dr António Cupertino de Miranda'),
(147860, 115790, 'en', 'name', 'Osaka University of Pharmaceutical Sciences'),
(147861, 115790, 'ja', 'name', 'å¤§é˜Ŗč–¬ē§‘å¤§å­¦'),
(147862, 115791, 'no_lang_code', 'name', 'Yenepoya University'),
(147863, 115792, 'en', 'name', 'International Biosecurity and Biosafety Initiative for Science'),
(147864, 115793, 'fr', 'name', 'Signalisation, radiobiologie et cancer'),
(147865, 115794, 'no_lang_code', 'name', 'Inter Partner Assistance Portugal Branch SA, Inter Partner Assistance Sucursal Portugal (Portugal), Inter Partner Assistance Sucursal Portugal, S.A.'),
(147866, 115795, 'no_lang_code', 'name', 'Emerson (United States)'),
(147867, 115796, 'pt', 'name', 'Instituto de Investigação Desenvolvimento e Estudos Avançados'),
(147868, 115797, 'nl', 'name', 'Koning Boudewijnstichting'),
(147869, 115798, 'en', 'name', 'Italian National Agency for New Technologies, Energy and Sustainable Economic Development, National Agency for New Technologies, Energy and Sustainable Economic Development'),
(147870, 115798, 'it', 'name', 'Agenzia Nazionale per le Nuove Tecnologie, l''Energia e lo Sviluppo Economico Sostenibile'),
(147871, 115799, 'en', 'name', 'International Research and Training Centre for Science and Technology Strategy'),
(147872, 115799, 'zh', 'name', 'äø­å›½ē§‘å­¦ęŠ€ęœÆå‘å±•ęˆ˜ē•„ē ”ē©¶é™¢'),
(147873, 115800, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© أبوظبي لل؄دارة'),
(147874, 115800, 'en', 'name', 'Abu Dhabi School of Management'),
(147875, 115801, 'en', 'name', 'Viaa Christian University of Applied Sciences'),
(147876, 115801, 'nl', 'name', 'Hogeschool Viaa'),
(147877, 115802, 'no_lang_code', 'name', 'Montepio Geral-Associação Mutualista, Montepio Geral-Associação Mutualista (Portugal), Montepio Group'),
(147878, 115803, 'en', 'name', 'Nofer Institute of Occupational Medicine'),
(147879, 115803, 'pl', 'name', 'Instytut Medycyny Pracy imienia prof. dra med. Jerzego Nofera'),
(147880, 115804, 'en', 'name', 'NSF NCAR Earth Observing Laboratory'),
(147881, 115805, 'en', 'name', 'SupƩlec ONERA DSTA Research Alliance'),
(147882, 115806, 'pt', 'name', 'Centro de Investigação e Estudos de Sociologia'),
(147883, 115807, 'en', 'name', 'Anhui Broadcasting Movie and Television College'),
(147884, 115807, 'zh', 'name', 'å®‰å¾½å¹æę’­å½±č§†čŒäøšęŠ€ęœÆå­¦é™¢'),
(147885, 115808, 'pt', 'name', 'Escola de Administração de Empresas de São Paulo'),
(147886, 115809, 'de', 'name', 'Forschungsinstitut f molekulare Pathologie GesmbH'),
(147887, 115809, 'en', 'name', 'Research Institute of Molecular Pathology'),
(147888, 115810, 'en', 'name', 'Academy of Technical and Art Applied Studies'),
(147889, 115810, 'sr', 'name', 'АкаГемија техничко-ŃƒŠ¼ŠµŃ‚Š½ŠøŃ‡ŠŗŠøŃ… ŃŃ‚Ń€ŃƒŠŗŠ¾Š²Š½ŠøŃ… ŃŃ‚ŃƒŠ“ŠøŃ˜Š°'),
(147890, 115811, 'en', 'name', 'Marine and Freshwater Research Institute'),
(147891, 115812, 'en', 'name', 'Mato Grosso State University'),
(147892, 115812, 'pt', 'name', 'Universidade do Estado de Mato Grosso'),
(147893, 115813, 'en', 'name', 'Center for Southeast Asian Studies'),
(147894, 115813, 'fr', 'name', 'Centre Asie du Sud-Est'),
(147895, 115814, 'en', 'name', 'Institute of Hydromechanics of National Academy of Sciences of Ukraine'),
(147896, 115814, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ гіГромеханіки ŠŠŠ України'),
(147897, 115815, 'en', 'name', 'National Institute for Demographic Studies'),
(147898, 115815, 'fr', 'name', 'Institut national d''Ʃtudes dƩmographiques'),
(147899, 115816, 'en', 'name', 'University of Limoges'),
(147900, 115816, 'fr', 'name', 'UniversitƩ de Limoges'),
(147901, 115817, 'en', 'name', 'Research Center for Biosciences & Health Technologies'),
(147902, 115817, 'pt', 'name', 'Centro de Investigação em Biociências e Tecnologias da Saúde'),
(147903, 115818, 'pt', 'name', 'Serviço de Saúde da Região Autónoma da Madeira'),
(147904, 115819, 'fr', 'name', 'Institut de Chimie'),
(147905, 115820, 'es', 'name', 'Instituto Mexicano del Transporte'),
(147906, 115821, 'hi', 'name', 'ą¤µą„‡ą¤œą„ą¤œą„€ą¤µą¤æą¤Øą„ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(147907, 115821, 'no_lang_code', 'name', 'Vejchewin Research Institute'),
(147908, 115822, 'pt', 'name', 'Gabinete de Projetos e Inovação'),
(147909, 115823, 'en', 'name', 'International House Porto Foz'),
(147910, 115824, 'en', 'name', 'Nirmala College for Women'),
(147911, 115824, 'ta', 'name', 'ą®Øą®æą®°ąÆą®®ą®²ą®¾ ą®®ą®•ą®³ą®æą®°ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(147912, 115825, 'en', 'name', 'Pokhara University'),
(147913, 115826, 'pt', 'name', 'NERSANT - Associação Empresarial da Região de Santarém'),
(147914, 115827, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦‡ą¦žą§ą¦œą¦æą¦Øą¦æą¦Æą¦¼ą¦¾ą¦°ą¦æą¦‚ ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦®ą§ą¦Æą¦¾ą¦Øą§‡ą¦œą¦®ą§‡ą¦Øą§ą¦Ÿ'),
(147915, 115827, 'en', 'name', 'University of Engineering & Management'),
(147916, 115828, 'en', 'name', 'Phan Chau Trinh University'),
(147917, 115828, 'vi', 'name', 'TrĘ°į»ng ĐẔi Hį»c Phan ChĆ¢u Trinh'),
(147918, 115829, 'en', 'name', 'Interdisciplinary Studies Research Center'),
(147919, 115829, 'pt', 'name', 'Centro de Investigação em Estudos Interdisciplinares'),
(147920, 115830, 'ca', 'name', 'Departament d''Educació'),
(147921, 115830, 'es', 'name', 'Departamento de Edicación'),
(147922, 115831, 'no_lang_code', 'name', 'Grupo RAR (Portugal), RAR Group'),
(147923, 115832, 'en', 'name', 'Purdue University West Lafayette'),
(147924, 115832, 'fr', 'name', 'UniversitƩ de Purdue'),
(147925, 115833, 'en', 'name', 'Regional Centre for Shared Aquifer Resources Management'),
(147926, 115834, 'en', 'name', 'Center for Drug Discovery and Innovative Medicines'),
(147927, 115834, 'pt', 'name', 'Centro de Investigação Farmacológica e Inovação Medicamentosa'),
(147928, 115835, 'no_lang_code', 'name', 'Irmãs Hospitaleiras (Portugal), Sisters Hospitaller'),
(147929, 115836, 'en', 'name', 'Secretariat of Public Education'),
(147930, 115836, 'es', 'name', 'Secretaría de Educación Pública'),
(147931, 115837, 'en', 'name', 'Donostia International Physics Center'),
(147932, 115838, 'fr', 'name', 'Syndicat des vignerons des CƓtes du RhƓne, Syndicat gƩnƩral des vignerons des CƓtes du RhƓne'),
(147933, 115839, 'en', 'name', 'Centre of Excellence in Microscience'),
(147934, 115839, 'fr', 'name', 'Centre d''excellence en microscience'),
(147935, 115840, 'en', 'name', 'Institute of Agricultural Biology and Biotechnology'),
(147936, 115840, 'it', 'name', 'Istituto di Biologia e Biotecnologia Agraria'),
(147937, 115841, 'ms', 'name', 'Universiti Putra Malaysia'),
(147938, 115841, 'ta', 'name', 'ą®®ą®²ąÆ‡ą®šą®æą®Æ ą®ŖąÆą®¤ąÆą®°ą®¾ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(147939, 115841, 'zh', 'name', 'åšē‰¹ę‹‰å¤§å­¦'),
(147940, 115842, 'en', 'name', 'Yew Chung Yew Wah Education Network'),
(147941, 115842, 'zh', 'name', 'č€€äø­č€€åŽę•™č‚²ē½‘ē»œ'),
(147942, 115843, 'de', 'name', 'Hilfe für krebskranke Kinder Frankfurt'),
(147943, 115844, 'en', 'name', 'Khamai Foundation'),
(147944, 115845, 'es', 'name', 'Instituto Tecnológico Superior Oriente'),
(147945, 115846, 'de', 'name', 'Gemeinsame Forschungsstelle'),
(147946, 115846, 'en', 'name', 'Joint Research Center'),
(147947, 115846, 'fr', 'name', 'Centre commun de recherche'),
(147948, 115847, 'de', 'name', 'Hochschule für Wirtschaft Zürich'),
(147949, 115847, 'en', 'name', 'Zurich University of Applied Sciences in Business Administration'),
(147950, 115848, 'de', 'name', 'Institut für Angewandte manuelle Therapie'),
(147951, 115849, 'en', 'name', 'Sorbonne University'),
(147952, 115849, 'fr', 'name', 'Sorbonne UniversitƩ'),
(147953, 115850, 'en', 'name', 'Software Heritage'),
(147954, 115851, 'en', 'name', 'NSF NCAR Mesoscale & Microscale Meteorology Laboratory'),
(147955, 115852, 'pt', 'name', 'Centro para o Desenvolvimento de CompetĆŖncias Digitais'),
(147956, 115853, 'no_lang_code', 'name', 'Gedeon Richter (Portugal)'),
(147957, 115854, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ł…Ł„Łƒ سعود'),
(147958, 115854, 'en', 'name', 'King Saud University'),
(147959, 115855, 'pt', 'name', 'Fundação INATEL, Instituto Nacional para o Aproveitamento dos Tempos Livres dos Trabalhadores'),
(147960, 115856, 'en', 'name', 'French National Centre for Scientific Research'),
(147961, 115856, 'fr', 'name', 'Centre National de la Recherche Scientifique'),
(147962, 115857, 'de', 'name', 'Sigmund Freud PrivatuniversitƤt - Standort Linz'),
(147963, 115857, 'en', 'name', 'Sigmund Freud Private University - Campus Linz'),
(147964, 115858, 'en', 'name', 'BioLuster Research Center Ltd'),
(147965, 115859, 'en', 'name', 'Ministry of Defence'),
(147966, 115859, 'it', 'name', 'Ministero della Difesa'),
(147967, 115860, 'no_lang_code', 'name', 'Generis FarmacĆŖutica (Portugal), Generis FarmacĆŖutica, S.A., Generis Pharmaceutical'),
(147968, 115861, 'cs', 'name', 'ZOO TƔbor'),
(147969, 115861, 'en', 'name', 'TƔbor Zoo'),
(147970, 115862, 'en', 'name', 'International Federation for Systems Research'),
(147971, 115863, 'en', 'name', 'University of Manitoba'),
(147972, 115863, 'fr', 'name', 'UniversitƩ du manitoba'),
(147973, 115864, 'en', 'name', 'Kerala Forest Research Institute'),
(147974, 115864, 'ml', 'name', 'ą“•ąµ‡ą“°ą“³ ą“µą“Øą“—ą“µąµ‡ą“·ą“£ ą“‡ąµ»ą“øąµą“±ąµą“±ą“æą“±ąµą“±ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ'),
(147975, 115864, 'ta', 'name', 'கேரள வன ą®†ą®°ą®¾ą®ÆąÆą®šąÆą®šą®æ ą®Øą®æą®±ąÆą®µą®©ą®®ąÆ'),
(147976, 115865, 'en', 'name', 'Switzerland Innovation Park Biel/Bienne'),
(147977, 115866, 'en', 'name', 'State Key Laboratory for Spintronic Devices and Technologies'),
(147978, 115867, 'en', 'name', 'KSCSTE - Institute for Climate Change Studies'),
(147979, 115868, 'en', 'name', 'Western University'),
(147980, 115868, 'fr', 'name', 'UniversitƩ de Western Ontario'),
(147981, 115869, 'en', 'name', 'International Competence Centre for Mining-Engineering Education, Russia'),
(147982, 115869, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ центр компетенций в горнотехническом образовании поГ ŃŠ³ŠøŠ“Š¾Š¹ Š®ŠŠ•Š”ŠšŠž'),
(147983, 115870, 'it', 'name', 'Azienda Sanitaria Locale Salerno'),
(147984, 115871, 'fr', 'name', 'Centre de Recherches sur les LittƩratures et la SociopoƩtique'),
(147985, 115872, 'en', 'name', 'University of Ɖvora'),
(147986, 115872, 'pt', 'name', 'Universidade de Ɖvora'),
(147987, 115873, 'en', 'name', 'Erzincan Binali Yıldırım University'),
(147988, 115873, 'tr', 'name', 'Erzincan Binali Yıldırım Üniversitesi'),
(147989, 115874, 'es', 'name', 'Sistema Nacional de Investigadores'),
(147990, 115875, 'es', 'name', 'Escuela Normal Fronteriza Tijuana'),
(147991, 115876, 'en', 'name', 'U.S. Army Command, Control, Communications, Computers, Cyber, Intelligence, Surveillance and Reconnaissance Center'),
(147992, 115877, 'cs', 'name', 'e-Infrastruktura CZ'),
(147993, 115877, 'en', 'name', 'e-Infrastructure of the Czech Republic'),
(147994, 115878, 'no_lang_code', 'name', 'Linguaterra School of English (Portugal)'),
(147995, 115879, 'es', 'name', 'Centro de Investigación y Asistencia en Tecnología y Diseño del Estado de Jalisco'),
(147996, 115880, 'en', 'name', 'Iyaleta - Research, Sciences and Humanities'),
(147997, 115880, 'pt', 'name', 'Associação de Pesquisa Iyaleta – Pesquisa, CiĆŖncias e Humanidades, Iyaleta - Pesquisa, CiĆŖncias e Humanidades'),
(147998, 115881, 'de', 'name', 'Bayer-Studienstiftung'),
(147999, 115881, 'en', 'name', 'Bayer Foundation'),
(148000, 115882, 'en', 'name', 'Fujian Academy of Chinese Medicine Sciences'),
(148001, 115882, 'zh', 'name', 'ē¦å»ŗēœäø­åŒ»čÆē§‘å­¦é™¢'),
(148002, 115883, 'fr', 'name', 'Empenn'),
(148003, 115884, 'en', 'name', 'TU Delft OPEN Publishing'),
(148004, 115885, 'en', 'name', 'Molecular Microbiology'),
(148005, 115886, 'en', 'name', 'Swedish Geotechnical Institute'),
(148006, 115887, 'en', 'name', 'Masaryk University'),
(148007, 115887, 'sk', 'name', 'Masarykova univerzita'),
(148008, 115888, 'no_lang_code', 'name', 'Cruz VilaƧa & Associados - Law Firm SP RL, Cruz VilaƧa & Associados - Sociedade de Advogados SP RL (Portugal)'),
(148009, 115889, 'en', 'name', 'Ministry of Finance of the People''s Republic of China'),
(148010, 115889, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½č“¢ę”æéƒØ'),
(148011, 115890, 'en', 'name', 'UNM Sandoval Regional Medical Center'),
(148012, 115891, 'en', 'name', 'Maastricht University'),
(148013, 115891, 'nl', 'name', 'Universiteit Maastricht'),
(148014, 115892, 'en', 'name', 'Institute for Development and Resources in Intensive Scientific Computing'),
(148015, 115892, 'fr', 'name', 'Institut du dƩveloppement et des ressources en informatique scientifique'),
(148016, 115893, 'en', 'name', 'Indiana University Bloomington'),
(148017, 115893, 'es', 'name', 'Universidad de Indiana Bloomington'),
(148018, 115893, 'fr', 'name', 'UniversitƩ de l''Indiana Ơ Bloomington'),
(148019, 115894, 'no_lang_code', 'name', 'Clever Advertising (Portugal)'),
(148020, 115895, 'id', 'name', 'Politeknik Manufaktur Bandung'),
(148021, 115896, 'pt', 'name', 'Hospital Bernardino Lopes de Oliveira AlcobaƧa'),
(148022, 115897, 'en', 'name', 'Manav Rachna International Institute of Research and Studies'),
(148023, 115897, 'hi', 'name', 'मानव रचना ą¤‡ą¤‚ą¤Ÿą¤°ą¤Øą„‡ą¤¶ą¤Øą¤² ą¤‡ą¤‚ą¤øą„ą¤Ÿą¤æą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤°ą¤æą¤øą¤°ą„ą¤š ą¤ą¤‚ą¤” ą¤øą„ą¤Ÿą¤”ą„€ą¤ø'),
(148024, 115898, 'en', 'name', 'Vegetable Research and Development Station Buzău'),
(148025, 115898, 'ro', 'name', 'Stațiunea de Cercetare Dezvoltare pentru Legumicultură Buzău'),
(148026, 115899, 'en', 'name', 'Fourth Institute of Oceanography'),
(148027, 115899, 'zh', 'name', 'č‡Ŗē„¶čµ„ęŗč‡Ŗē„¶čµ„ęŗéƒØē¬¬å››ęµ·ę“‹ē ”ē©¶ę‰€'),
(148028, 115900, 'de', 'name', 'Technische Universität München'),
(148029, 115900, 'en', 'name', 'Technical University of Munich'),
(148030, 115901, 'en', 'name', 'Alexander T. Augusta Military Medical Center'),
(148031, 115902, 'en', 'name', 'ZEN University'),
(148032, 115902, 'ja', 'name', 'ZEN大学'),
(148033, 115903, 'en', 'name', 'National Institute for Research in Digital Science and Technology'),
(148034, 115903, 'fr', 'name', 'Institut national de recherche en sciences et technologies du numƩrique'),
(148035, 115904, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŗŲ±ŁŠŲ§Ł†'),
(148036, 115904, 'en', 'name', 'University of Gharyan'),
(148037, 115905, 'en', 'name', 'Ministry of Natural Resources'),
(148038, 115905, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½č‡Ŗē„¶čµ„ęŗéƒØ'),
(148039, 115906, 'en', 'name', 'U.S. Air Force Materiel Command'),
(148040, 115907, 'en', 'name', 'University of Los Andes'),
(148041, 115907, 'es', 'name', 'Universidad de Los Andes'),
(148042, 115908, 'es', 'name', 'Agencia Nacional de Empleo'),
(148043, 115909, 'en', 'name', 'Centre for Water for Sustainable Development and Adaptation to Climate Change, Water for Sustainable Development and Adaptation to Climate Change Centre'),
(148044, 115910, 'en', 'name', 'Okanagan University College'),
(148045, 115911, 'pt', 'name', 'Fundação Spes'),
(148046, 115912, 'en', 'name', 'International Centre for Biotechnology, UNESCO International Centre for Biotechnology'),
(148047, 115913, 'en', 'name', 'Middle Tennessee State University'),
(148048, 115914, 'en', 'name', 'Bioenergy and Business Incubator of Portalegre'),
(148049, 115915, 'en', 'name', 'Central Fisheries Research Institute (SUMAE)'),
(148050, 115915, 'tr', 'name', 'Su Ürünleri Merkez Araştırma Enstitüsü'),
(148051, 115916, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł‚ŁˆŁ…ŁŠ Ł„Ł„ŲØŲ­ŁˆŲ«'),
(148052, 115916, 'en', 'name', 'National Research Centre'),
(148053, 115917, 'en', 'name', 'University of the Pacific'),
(148054, 115917, 'es', 'name', 'Universidad Del Pacifico'),
(148055, 115918, 'en', 'name', 'UNAVCO'),
(148056, 115919, 'en', 'name', 'Amity University'),
(148057, 115919, 'hi', 'name', 'ą¤ą¤®ą¤æą¤Ÿą„€ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(148058, 115920, 'en', 'name', 'Center of Applied Economic Studies of the Atlantic'),
(148059, 115920, 'pt', 'name', 'Centro de Estudos de Economia Aplicada do Atlântico'),
(148060, 115921, 'da', 'name', 'Forsvarsministeriet'),
(148061, 115921, 'en', 'name', 'Danish Ministry of Defence'),
(148062, 115922, 'en', 'name', 'Institute of Applied Problems of Physics'),
(148063, 115923, 'pt', 'name', 'Biblioteca das CiĆŖncias da SaĆŗde'),
(148064, 115924, 'tr', 'name', 'Ankara Dr. Abdurrahman Yurtaslan Oncology Training and Research Hospital, Dr. Abdurrahman Yurtaslan Onkoloji̇ Eği̇ti̇m Ve Araştirma Hastanesi̇'),
(148065, 115925, 'de', 'name', 'Deutscher Wetterdienst'),
(148066, 115926, 'pt', 'name', 'Universidade de Rio Verde'),
(148067, 115927, 'fr', 'name', 'Institut de Recherche MƩdias, Cultures, Communication et NumƩrique'),
(148068, 115928, 'pt', 'name', 'Instituto PortuguĆŖs de Naturologia'),
(148069, 115929, 'en', 'name', 'Hainan 301 Hospital'),
(148070, 115929, 'zh', 'name', 'č§£ę”¾å†›ę€»åŒ»é™¢ęµ·å—åŒ»é™¢'),
(148071, 115930, 'no_lang_code', 'name', 'Galp Energia SGPS (Portugal), Galp Energia SGPS, S.A.'),
(148072, 115931, 'en', 'name', 'Centre of Neurosciences of Sorbonne UniversitƩ'),
(148073, 115931, 'fr', 'name', 'Centre de Neurosciences de Sorbonne UniversitƩ, Neuro-SU'),
(148074, 115932, 'en', 'name', 'Ministry of Transportation and Communications'),
(148075, 115932, 'zh', 'name', 'äø­čÆę°‘åœ‹äŗ¤é€šéƒØ'),
(148076, 115933, 'de', 'name', 'Deutschen Konsortium für Translationale Krebsforschung'),
(148077, 115933, 'en', 'name', 'German Cancer Consortium'),
(148078, 115934, 'en', 'name', 'One Mind'),
(148079, 115935, 'pt', 'name', 'Startup SantarƩm'),
(148080, 115936, 'en', 'name', 'Baylor College of Medicine'),
(148081, 115936, 'es', 'name', 'Escuela de Medicina de Baylor'),
(148082, 115937, 'pt', 'name', 'Instituto Brasileiro de Direito Processual Penal'),
(148083, 115938, 'en', 'name', 'International Sustainable Energy Development Centre'),
(148084, 115938, 'ru', 'name', 'ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ центр ŃƒŃŃ‚Š¾Š¹Ń‡ŠøŠ²Š¾Š³Š¾ ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠ¾Š³Š¾ Ń€Š°Š·Š²ŠøŃ‚ŠøŃ поГ ŃŠ³ŠøŠ“Š¾Š¹ Š®ŠŠ•Š”ŠšŠž'),
(148085, 115939, 'ar', 'name', 'المؤسسة Ų§Ł„Ų¹Ų±ŲØŁŠŲ© ل؄دارة المعرفة'),
(148086, 115939, 'en', 'name', 'Arab Institution of Knowledge Management'),
(148087, 115940, 'en', 'name', 'Central Laboratory of Applied Physics'),
(148088, 115941, 'en', 'name', 'Government Medical College Omandurar'),
(148089, 115941, 'ta', 'name', 'ą®…ą®°ą®šąÆ ą®®ą®°ąÆą®¤ąÆą®¤ąÆą®µą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ ą®“ą®®ą®ØąÆą®¤ąÆ‚ą®°ą®°ąÆ'),
(148090, 115942, 'bs', 'name', 'Univerzitet u Beogradu'),
(148091, 115942, 'en', 'name', 'University of Belgrade'),
(148092, 115942, 'sr', 'name', 'Универзитет у Š‘ŠµŠ¾Š³Ń€Š°Š“Ńƒ'),
(148093, 115943, 'en', 'name', 'Cal Poly Humboldt'),
(148094, 115944, 'pt', 'name', 'Instituto Lusófono de Investigação e Desenvolvimento'),
(148095, 115945, 'pt', 'name', 'Museu de Arqueologia D Diogo de Sousa'),
(148096, 115946, 'pt', 'name', 'Instituto Pedro Nunes'),
(148097, 115947, 'en', 'name', 'Weill Cornell Medicine'),
(148098, 115948, 'fr', 'name', 'Bioinformatique MolƩculaire'),
(148099, 115949, 'no_lang_code', 'name', 'Velvet Smile (Portugal)'),
(148100, 115950, 'pt', 'name', 'Instituto Portugues do Sangue e da Transplantacao, IP'),
(148101, 115951, 'id', 'name', 'Politeknik Negeri Cilacap'),
(148102, 115952, 'en', 'name', 'Putra Business School'),
(148103, 115953, 'en', 'name', 'Tribhuvan University'),
(148104, 115954, 'es', 'name', 'Colegio Superior Agropecuario del Estado de Guerrero'),
(148105, 115955, 'no_lang_code', 'name', 'KLA (United States)'),
(148106, 115956, 'en', 'name', 'University of the French Antilles'),
(148107, 115956, 'fr', 'name', 'UniversitƩ des Antilles'),
(148108, 115957, 'en', 'name', 'Latin American Faculty of Social Sciences Ecuador'),
(148109, 115957, 'es', 'name', 'Facultad Latinoamericana de Ciencias Sociales Ecuador'),
(148110, 115958, 'en', 'name', 'Centre for Research & Innovation in Education'),
(148111, 115958, 'pt', 'name', 'Centro de Investigação e Inovação em Educação'),
(148112, 115959, 'es', 'name', 'Comisión de Investigaciones Científicas'),
(148113, 115960, 'en', 'name', 'Griffith University'),
(148114, 115961, 'pt', 'name', 'Ministério do Ambiente, Ordenamento do Território e Energia'),
(148115, 115962, 'pt', 'name', 'MinistƩrio do Trabalho Solidariedade e SeguranƧa Social'),
(148116, 115963, 'en', 'name', 'Indian Institute of Management Jammu'),
(148117, 115964, 'en', 'name', 'Army Sustainment University'),
(148118, 115965, 'en', 'name', 'Virginia Tech'),
(148119, 115965, 'es', 'name', 'Instituto PolitƩcnico y Universidad Estatal de Virginia'),
(148120, 115965, 'fr', 'name', 'Institut polytechnique et universitĆ© d''Ɖtat de virginie'),
(148121, 115966, 'en', 'name', 'International Institute of Tropical Agriculture'),
(148122, 115967, 'fr', 'name', 'Laboratoire des Sciences du NumƩrique de Nantes'),
(148123, 115968, 'en', 'name', 'The University of Agriculture, Peshawar'),
(148124, 115968, 'ur', 'name', 'زرعی جامعہ پؓاور'),
(148125, 115969, 'en', 'name', 'American College of Clinical Pharmacy'),
(148126, 115970, 'pt', 'name', 'CÔtedra Poesia e Transcendência Sophia de Mello Breyner Andresen'),
(148127, 115971, 'en', 'name', 'U.S. Army Training and Doctrine Command'),
(148128, 115972, 'en', 'name', 'Pluto Press'),
(148129, 115973, 'pt', 'name', 'Centro da Mulher'),
(148130, 115974, 'en', 'name', 'Masinde Muliro University of Science and Technology'),
(148131, 115975, 'en', 'name', 'Submarine Force, Atlantic'),
(148132, 115976, 'fr', 'name', 'Lipides: systĆØmes analytiques et biologiques'),
(148133, 115977, 'en', 'name', 'International Viticulture and Enology Society'),
(148134, 115978, 'es', 'name', 'Sociedad de Acueducto, Alcantarillado y Aseo de Barranquilla E.S.P.'),
(148135, 115978, 'no_lang_code', 'name', 'Sociedad de Acueducto, Alcantarillado y Aseo de Barranquilla E.S.P. (Colombia)'),
(148136, 115979, 'en', 'name', 'Bayworld'),
(148137, 115980, 'en', 'name', 'French Institute of Health and Medical Research'),
(148138, 115980, 'fr', 'name', 'Inserm, Institut National de la SantƩ et de la Recherche MƩdicale'),
(148139, 115981, 'ar', 'name', 'لجامعة فزان'),
(148140, 115981, 'en', 'name', 'Fezzan University'),
(148141, 115982, 'en', 'name', 'Vanderbilt University'),
(148142, 115983, 'en', 'name', 'Lorraine Research Laboratory in Computer Science and its Applications'),
(148143, 115983, 'fr', 'name', 'Laboratoire Lorrain de Recherche en Informatique et ses Applications'),
(148144, 115984, 'no_lang_code', 'name', 'Instituto de Alimentação Becel (Portugal)'),
(148145, 115985, 'no_lang_code', 'name', 'LivaNova (United Kingdom)'),
(148146, 115986, 'en', 'name', 'Canada Water Agency'),
(148147, 115986, 'fr', 'name', 'Agence de l''eau du Canada'),
(148148, 115987, 'fr', 'name', 'Observatoire des Sciences de l''Univers Nantes Atlantique'),
(148149, 115988, 'en', 'name', 'Institute for Science Application in Agriculture'),
(148150, 115988, 'sr', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ за ŠæŃ€ŠøŠ¼ŠµŠ½Ńƒ науке у пољопривреГи'),
(148151, 115989, 'en', 'name', 'University of Antananarivo'),
(148152, 115989, 'fr', 'name', 'UniversitƩ d''Antananarivo'),
(148153, 115989, 'mg', 'name', 'Oniversiten''Antananarivo'),
(148154, 115990, 'en', 'name', 'IES-Social Business School'),
(148155, 115991, 'en', 'name', 'Lille Fluid Mechanics Laboratory - KampƩ de FƩriet'),
(148156, 115991, 'fr', 'name', 'Laboratoire de MƩcanique des Fluides de Lille - KampƩ de FƩriet'),
(148157, 115992, 'de', 'name', 'Walther-Straub-Institut für Pharmakologie und Toxikologie'),
(148158, 115992, 'en', 'name', 'Walther Straub Institute of Pharmacology and Toxicology'),
(148159, 115993, 'en', 'name', 'Space Research Organisation Netherlands'),
(148160, 115993, 'nl', 'name', 'Stichting Ruimteonderzoek Nederland'),
(148161, 115994, 'en', 'name', 'Universa, Universa Investments, Universa Investments L.P., Universa Investments L.P. (United States)'),
(148162, 115995, 'en', 'name', 'Latin American Faculty of Social Sciences Mexico'),
(148163, 115995, 'es', 'name', 'Facultad Latinoamericana de Ciencias Sociales MƩxico'),
(148164, 115996, 'no_lang_code', 'name', 'Fiat Chrysler Automobiles (United Kingdom)'),
(148165, 115997, 'de', 'name', 'Berufsgenossenschaftliche Unfallklinik Ludwigshafen'),
(148166, 115998, 'no_lang_code', 'name', 'Livraria do Centro Comercial Arco ƍris (Portugal), Rainbow Shopping Centre Bookstore'),
(148167, 115999, 'en', 'name', 'Pluto Educational Trust'),
(148168, 116000, 'en', 'name', 'National Supercomputing Center in Chengdu'),
(148169, 116000, 'zh', 'name', 'å›½å®¶č¶…ēŗ§č®”ē®—ęˆéƒ½äø­åæƒ'),
(148170, 116001, 'en', 'name', 'Vietnam Academy of Science and Technology'),
(148171, 116001, 'vi', 'name', 'Viện HĆ n lĆ¢m Khoa hį»c vĆ  CĆ“ng nghệ Việt Nam'),
(148172, 116002, 'pt', 'name', 'Hospital JosƩ Luciano de Castro Anadia'),
(148173, 116003, 'en', 'name', 'University of Tours'),
(148174, 116003, 'fr', 'name', 'UniversitƩ de Tours'),
(148175, 116004, 'en', 'name', 'Bailey-Matthews National Shell Museum, Bailey-Matthews National Shell Museum & Aquarium'),
(148176, 116005, 'en', 'name', 'University of Bucharest'),
(148177, 116005, 'hu', 'name', 'Bukaresti Egyetem'),
(148178, 116005, 'ro', 'name', 'Universitatea din București'),
(148179, 116006, 'en', 'name', 'Office of the Chief of Naval Operations'),
(148180, 116007, 'en', 'name', 'Cleveland Clinic Lerner College of Medicine'),
(148181, 116008, 'pt', 'name', 'Instituto Padre António Vieira'),
(148182, 116009, 'pt', 'name', 'Universidade Nova de Lisboa'),
(148183, 116010, 'en', 'name', 'St. Boniface Hospital'),
(148184, 116011, 'no_lang_code', 'name', 'Noah ComƩrcio de MobiliƔrio (Portugal), Noah Furniture Trade'),
(148185, 116012, 'fr', 'name', 'Laboratoire de Recherche sur le Langage'),
(148186, 116013, 'en', 'name', 'Institute of Research in Horticulture and Seeds'),
(148187, 116013, 'fr', 'name', 'Institut de Recherche en Horticulture et Semences'),
(148188, 116014, 'en', 'name', 'Manipal Academy of Higher Education'),
(148189, 116014, 'fr', 'name', 'UniversitƩ de Manipal'),
(148190, 116015, 'en', 'name', 'Admiralty University of Nigeria'),
(148191, 116016, 'fr', 'name', 'Adaptation Biologique et Vieillissement'),
(148192, 116017, 'pt', 'name', 'Gabinete de Documentacao e Direito Comparado'),
(148193, 116018, 'en', 'name', 'Parkinson''s Research and Education Foundation, Parkinson’s & Alzheimer’s Research and Education Foundation'),
(148194, 116019, 'pt', 'name', 'ANJE - Associação Nacional de Jovens EmpresÔrios, Associação Nacional de Jovens EmpresÔrios'),
(148195, 116020, 'ar', 'name', 'مستؓفى البقاع'),
(148196, 116020, 'en', 'name', 'Bekaa Hospital'),
(148197, 116021, 'cs', 'name', 'FyzikĆ”lnĆ­ Ćŗstav AV ČR, FyzikĆ”lnĆ­ Ćŗstav AV ČR, v. v. i., FyzikĆ”lnĆ­ Ćŗstav AV ČR, veřejnĆ” výzkumnĆ” instituce'),
(148198, 116021, 'en', 'name', 'Czech Academy of Sciences, Institute of Physics'),
(148199, 116022, 'en', 'name', 'Jagannath International Management School, Kalkaji, New Delhi'),
(148200, 116023, 'en', 'name', 'Mighty Crow, Mighty Crow (United States)'),
(148201, 116024, 'de', 'name', 'Sigmund Freud PrivatuniversitƤt - Standort Berlin'),
(148202, 116024, 'en', 'name', 'Sigmund Freud Private University - Campus Berlin'),
(148203, 116025, 'it', 'name', 'Aequitas Magazine Associazione culturale di Ricerca e Studi giuridici'),
(148204, 116026, 'en', 'name', 'SenSiC GmbH'),
(148205, 116026, 'no_lang_code', 'name', 'SenSiC GmbH (Switzerland)'),
(148206, 116027, 'en', 'name', 'Public University of Navarre'),
(148207, 116027, 'es', 'name', 'Universidad Publica de Navarra'),
(148208, 116027, 'eu', 'name', 'Nafarroako Unibertsitate Publikoa'),
(148209, 116028, 'en', 'name', 'National Oceanic and Atmospheric Administration'),
(148210, 116028, 'es', 'name', 'Administración Nacional OceÔnica y Atmosférica'),
(148211, 116029, 'en', 'name', 'Haitian Diabetes and Cardiovascular Disease Foundation'),
(148212, 116029, 'fr', 'name', 'Fondation HaĆÆtienne de DiabĆØte et de Maladies Cardio-Vasculaires'),
(148213, 116030, 'pt', 'name', 'Instituto da Mobilidade e dos Transportes'),
(148214, 116031, 'fr', 'name', 'ContrƓle de la RƩponse Immune B et LymphoprolifƩrations'),
(148215, 116032, 'en', 'name', 'Bina Insan University'),
(148216, 116032, 'id', 'name', 'Universitas Bina Insan'),
(148217, 116033, 'pt', 'name', 'Instituto PortuguĆŖs de Fotografia'),
(148218, 116034, 'en', 'name', 'ParanĆ” Federal Institute of Education, Science and Technology'),
(148219, 116034, 'pt', 'name', 'Instituto Federal de Educação Ciência e Tecnologia do ParanÔ, Instituto Federal do ParanÔ'),
(148220, 116035, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų­Ł…Ų§Ų©'),
(148221, 116035, 'en', 'name', 'Hama University'),
(148222, 116036, 'fr', 'name', 'Conditions Extrêmes et Matériaux Haute Température et Irradiation'),
(148223, 116037, 'de', 'name', 'Internationale Atomenergie-Organisation'),
(148224, 116037, 'en', 'name', 'International Atomic Energy Agency'),
(148225, 116037, 'hr', 'name', 'Međunarodna agencija za atomsku energiju'),
(148226, 116037, 'hu', 'name', 'Nemzetközi Atomenergia-ügynökség'),
(148227, 116037, 'sl', 'name', 'Mednarodna agencija za jedrsko energijo'),
(148228, 116038, 'en', 'name', 'Australian Museum'),
(148229, 116039, 'en', 'name', 'Zanzibar Health Research Institute (ZAHRI)'),
(148230, 116040, 'en', 'name', 'University of Internal Affairs of Mongolia'),
(148231, 116040, 'mn', 'name', 'Монгол Улсын Єууль Š”Š°Ń…ŠøŃƒŠ»Š°Ń…Ń‹Š½ Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(148232, 116041, 'en', 'name', 'STLab s.r.l.'),
(148233, 116041, 'no_lang_code', 'name', 'STLab s.r.l. (Italy)'),
(148234, 116042, 'pt', 'name', 'Unidade de e-Learning e Inovação Pedagógica'),
(148235, 116043, 'en', 'name', 'Rainha Njinga a Mbande University'),
(148236, 116043, 'pt', 'name', 'Universidade Rainha Njinga a Mbande'),
(148237, 116044, 'de', 'name', 'Wehrwissenschaftliches Institut für Werk- und Betriebsstoffe'),
(148238, 116045, 'en', 'name', 'Ministry of Justice'),
(148239, 116045, 'zh', 'name', 'äø­čÆę°‘åœ‹ę³•å‹™éƒØ'),
(148240, 116046, 'es', 'name', 'Agroseguro, Agrupación Española de Entidades Aseguradoras de los Seguros Agrarios Combinados S.A.'),
(148241, 116047, 'en', 'name', 'Kerala State Council for Science, Technology and Environment'),
(148242, 116048, 'fr', 'name', 'IMT Atlantique'),
(148243, 116049, 'pt', 'name', 'Inspeção-Geral da Administração Interna'),
(148244, 116050, 'en', 'name', 'Laboratory of Signalling and Cardiovascular Pathophysiology'),
(148245, 116050, 'fr', 'name', 'Laboratoire de Signalisation et Physiopathologie Cardiovasculaire'),
(148246, 116051, 'no_lang_code', 'name', 'Trinoma, Trinoma (France)'),
(148247, 116052, 'en', 'name', 'Ginkgo Bioworks, Inc.'),
(148248, 116052, 'no_lang_code', 'name', 'Ginkgo Bioworks, Inc. (United States)'),
(148249, 116053, 'en', 'name', 'Inria Saclay - Ǝle-de-France Research Centre'),
(148250, 116053, 'fr', 'name', 'Inria Saclay - Ǝle de France'),
(148251, 116054, 'ar', 'name', 'معهد ŁˆŲ§ŁŠŲ²Ł…Ų§Ł† Ł„Ł„Ų¹Ł„ŁˆŁ…'),
(148252, 116054, 'en', 'name', 'Weizmann Institute of Science'),
(148253, 116054, 'he', 'name', 'מכון ויצמן למדע'),
(148254, 116055, 'pt', 'name', 'Centro de Ecofisiologia BioquĆ­mica e Biotecnologia Vegetal'),
(148255, 116056, 'en', 'name', 'One Earth'),
(148256, 116057, 'pt', 'name', 'Centro UniversitÔrio do Rio São Francisco'),
(148257, 116058, 'en', 'name', 'European Bioplastics'),
(148258, 116059, 'de', 'name', 'Institut für Ländliche Strukturforschung, Institut für Ländliche Strukturforschung e.V.'),
(148259, 116059, 'en', 'name', 'Institute for Rural Development Research'),
(148260, 116060, 'en', 'name', 'Aragon Nanoscience and Materials Institute'),
(148261, 116060, 'es', 'name', 'Instituto de Nanociencia y Materiales de Aragón'),
(148262, 116061, 'pt', 'name', 'Fundação LIGA'),
(148263, 116062, 'de', 'name', 'Deutsches Zentrum für Herz-Kreislauf-Forschung'),
(148264, 116062, 'en', 'name', 'German Centre for Cardiovascular Research'),
(148265, 116063, 'pt', 'name', 'Instituto Superior de CiĆŖncias Empresariais e do Turismo'),
(148266, 116064, 'en', 'name', 'ICEE, International Centre for Engineering Education'),
(148267, 116064, 'zh', 'name', 'ęœŖę„ē§‘ęŠ€ę•™č‚²åŸŗåœ°'),
(148268, 116065, 'fr', 'name', 'Institut Gustave Roussy, Institut Gustave-Roussy'),
(148269, 116066, 'en', 'name', 'Kazan State Power Engineering University'),
(148270, 116066, 'ru', 'name', 'Казанский Š³Š¾ŃŃƒŠ“арственный ŃŠ½ŠµŃ€Š³ŠµŃ‚ŠøŃ‡ŠµŃŠŗŠøŠ¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(148271, 116067, 'fr', 'name', 'Handicap, ActivitƩ, Vieillissement, Autonomie, Environnement'),
(148272, 116068, 'en', 'name', 'University of South Florida'),
(148273, 116068, 'es', 'name', 'Universidad del Sur de Florida'),
(148274, 116068, 'fr', 'name', 'UniversitƩ de floride du sud'),
(148275, 116069, 'pt', 'name', 'CƔtedra Energias RenovƔveis'),
(148276, 116070, 'en', 'name', 'Mongolian Natural History Museum'),
(148277, 116070, 'mn', 'name', 'ŠœŠ¾Š½Š³Š¾Š»Ń‹Š½ Байгалийн Түүхийн Музей'),
(148278, 116071, 'en', 'name', 'Research Institute for Road and Street'),
(148279, 116071, 'ja', 'name', 'äø€čˆ¬č²”å›£ę—„ęœ¬ćæć”ē ”ē©¶ę‰€'),
(148280, 116072, 'pt', 'name', 'Centro de Estatƭstica e AplicaƧƵes'),
(148281, 116073, 'no_lang_code', 'name', 'Give U Design Art (Portugal)'),
(148282, 116074, 'en', 'name', 'Miyagi National Hospital'),
(148283, 116075, 'en', 'name', 'German University of Digital Science'),
(148284, 116076, 'en', 'name', 'National Polytechnic Institute of Toulouse'),
(148285, 116076, 'fr', 'name', 'Institut National Polytechnique de Toulouse'),
(148286, 116077, 'en', 'name', 'Dr. Babasaheb Ambedkar Marathwada University'),
(148287, 116077, 'mr', 'name', 'ą¤”ą„‰. ą¤¬ą¤¾ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤†ą¤‚ą¤¬ą„‡ą¤”ą¤•ą¤° मराठवाऔा ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(148288, 116078, 'fr', 'name', 'Processus d''Activation SĆ©lective par Transfert d''Ɖnergie Uni-Ć©lectronique ou Radiatif'),
(148289, 116079, 'ja', 'name', 'äø‰č±é›»ę©Ÿ'),
(148290, 116079, 'no_lang_code', 'name', 'Mitsubishi Electric (Japan)'),
(148291, 116080, 'en', 'name', 'Psychosocial Rehabilitation Laboratory'),
(148292, 116080, 'pt', 'name', 'Laboratório de Reabilitação Psicossocial'),
(148293, 116081, 'pt', 'name', 'Tribunal de JustiƧa do Estado de GoiƔs'),
(148294, 116082, 'en', 'name', 'Gulbenkian Institute for Molecular Medicine'),
(148295, 116083, 'en', 'name', 'Hong Kong Metropolitan University'),
(148296, 116083, 'zh', 'name', 'é¦™ęøÆéƒ½ęœƒå¤§å­ø'),
(148297, 116084, 'pt', 'name', 'Sociedade Portuguesa de Neurologia'),
(148298, 116085, 'no_lang_code', 'name', 'Nuclear Research and Consultancy Group'),
(148299, 116086, 'de', 'name', 'IBO – Ɩsterreichisches Institut für Bauen und Ɩkologie'),
(148300, 116086, 'no_lang_code', 'name', 'IBO – Ɩsterreichisches Institut für Bauen und Ɩkologie (Austria)'),
(148301, 116087, 'pt', 'name', 'Centro de Investigação em Saúde e Ambiente'),
(148302, 116088, 'en', 'name', 'Guru Gobind Singh Indraprastha University'),
(148303, 116088, 'hi', 'name', 'ą¤—ą„ą¤°ą„ ą¤—ą„‹ą¤¬ą¤æą¤Øą„ą¤¦ सिंह ą¤‡ą¤Øą„ą¤¦ą„ą¤°ą¤Ŗą„ą¤°ą¤øą„ą¤„ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(148304, 116088, 'ur', 'name', 'اندارپراسٹہ Ł…Ų¹Ł„ŁˆŁ…Ų§ŲŖ Ł¹ŪŒŚ©Ł†Ų§Ł„ŁˆŲ¬ŪŒ Ų§Ł†Ų³Ł¹ŪŒ ٹیوٹ'),
(148305, 116089, 'en', 'name', 'Spanish Foundation for Science and Technology'),
(148306, 116089, 'es', 'name', 'Fundación Española para la Ciencia y Tecnología'),
(148307, 116090, 'en', 'name', 'The National Lottery Community Fund'),
(148308, 116091, 'en', 'name', 'Islamic Azad University, Naragh Branch'),
(148309, 116091, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ واحد نراق'),
(148310, 116092, 'en', 'name', 'Institute of Economics, Institute of Economics of the Committee of Science of the Ministry of Science and Higher Education of the Republic of Kazakhstan'),
(148311, 116092, 'kk', 'name', 'Экономика ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹ ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ғылым және жоғары білім министрлігінің Ғылым комитеті'),
(148312, 116092, 'ru', 'name', 'Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ ŃŠŗŠ¾Š½Š¾Š¼ŠøŠŗŠø ŠšŠ¾Š¼ŠøŃ‚ŠµŃ‚Š° науки ŠœŠøŠ½ŠøŃŃ‚ерства науки Šø Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ РК'),
(148313, 116093, 'en', 'name', 'Embassy of Canada in Washington, D.C'),
(148314, 116093, 'fr', 'name', 'Ambassade du Canada Ć  Washington, D.C'),
(148315, 116094, 'en', 'name', 'Renaissance Educational University'),
(148316, 116094, 'ru', 'name', 'ŠžŠ±Ń€Š°Š·Š¾Š²Š°Ń‚ŠµŠ»ŃŒŠ½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ренессанс'),
(148317, 116094, 'uz', 'name', 'Renessans ta’lim universiteti'),
(148318, 116095, 'da', 'name', 'KĆøbenhavns Universitet'),
(148319, 116095, 'de', 'name', 'UniversitƤt Kopenhagen'),
(148320, 116095, 'en', 'name', 'University of Copenhagen'),
(148321, 116096, 'en', 'name', 'CBM Bethel Hospital'),
(148322, 116097, 'en', 'name', 'Arnold P Gold Foundation'),
(148323, 116098, 'en', 'name', 'Academic Consortium for Electronic Publications'),
(148324, 116098, 'fr', 'name', 'Consortium Unifié des établissements Universitaires et de recherche pour l''accès aux publications numériques, Couperin'),
(148325, 116099, 'en', 'name', 'EvoLogics GmbH'),
(148326, 116099, 'no_lang_code', 'name', 'EvoLogics GmbH (Germany)'),
(148327, 116100, 'id', 'name', 'Akademi Komunitas Negeri Pacitan'),
(148328, 116101, 'en', 'name', 'Ştefan cel Mare University of Suceava'),
(148329, 116101, 'ro', 'name', 'Universitatea Ștefan cel Mare din Suceava'),
(148330, 116102, 'en', 'name', 'The University of Osaka'),
(148331, 116102, 'ja', 'name', '大阪大学'),
(148332, 116103, 'en', 'name', 'United States Department of the Army'),
(148333, 116103, 'es', 'name', 'Departamento del EjƩrcito de los Estados Unidos'),
(148334, 116104, 'en', 'name', 'ISCTE Business School'),
(148335, 116105, 'en', 'name', 'Dewu'),
(148336, 116105, 'zh', 'name', '得物'),
(148337, 116106, 'en', 'name', 'United Kingdom Atomic Energy Authority'),
(148338, 116107, 'no', 'name', 'FƦrder Kommune'),
(148339, 116108, 'en', 'name', 'President Joseph Kasa-Vubu University'),
(148340, 116108, 'fr', 'name', 'UniversitƩ PrƩsident Joseph Kasa-Vubu'),
(148341, 116109, 'en', 'name', 'Geological Survey of Norway'),
(148342, 116109, 'nn', 'name', 'NGU, Noregs geologiske undersĆøking'),
(148343, 116109, 'no', 'name', 'NGU, Norges geologiske undersĆøkelse'),
(148344, 116110, 'en', 'name', 'Windesheim Flevoland'),
(148345, 116111, 'en', 'name', 'University of Central Florida'),
(148346, 116111, 'es', 'name', 'Universidad de Florida Central'),
(148347, 116112, 'bn', 'name', 'ą¦—ą§Œą¦”ą¦¼ ą¦®ą¦¹ą¦¾ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(148348, 116112, 'en', 'name', 'Gour Mahavidyalaya'),
(148349, 116113, 'ca', 'name', 'Institut Universitari d''Investigació en Atenció Primària Jordi Gol'),
(148350, 116114, 'de', 'name', 'StƤdtische Bibliotheken Dresden'),
(148351, 116115, 'en', 'name', 'NSF NCAR High Altitude Observatory'),
(148352, 116116, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų¬ŁŠŁ„Ų§Ł„ŁŠ Ł„ŁŠŲ§ŲØŲ³ سيدي بلعباس - Ų¬Ł…ŁŠŲ¹ Ų§Ł„Ų­Ł‚ŁˆŁ‚ Ł…Ų­ŁŁˆŲøŲ©'),
(148353, 116116, 'en', 'name', 'Djillali Liabes University Sidi Bel AbbĆØs'),
(148354, 116116, 'fr', 'name', 'Université Djilali de Sidi Bel Abbès'),
(148355, 116117, 'es', 'name', 'Sanatorio Adventista del Plata'),
(148356, 116118, 'en', 'name', 'Wannan Medical College'),
(148357, 116118, 'zh', 'name', 'ēš–å—åŒ»å­¦é™¢'),
(148358, 116119, 'pt', 'name', 'Instituto Design Guimarães'),
(148359, 116120, 'pt', 'name', 'Fundação MÔrio Soares e Maria Barroso'),
(148360, 116121, 'pt', 'name', 'Centro de CiĆŖncias e Tecnologias Nucleares'),
(148361, 116122, 'pt', 'name', 'Incubadora D Dinis Associação para a Promoção do Empreendedorismo Inovação e Novas Tecnologias'),
(148362, 116123, 'en', 'name', 'University of Minho'),
(148363, 116123, 'pt', 'name', 'Universidade do Minho'),
(148364, 116124, 'en', 'name', 'Research Infrastructure for the Science and Technology of Language'),
(148365, 116124, 'pt', 'name', 'Infraestrutura de Investigação para a Ciência e Tecnologia da Linguagem'),
(148366, 116125, 'en', 'name', 'Namangan State Pedagogical Institute'),
(148367, 116125, 'uz', 'name', 'Namanganskij gosudarstvennyj pedagogičeskij institut'),
(148368, 116126, 'no_lang_code', 'name', 'Future Balloons, Future Balloons (Portugal)'),
(148369, 116127, 'pt', 'name', 'Audax ISCTE'),
(148370, 116128, 'en', 'name', 'National Institute of Ecology and Climate Change'),
(148371, 116128, 'es', 'name', 'Instituto Nacional de Ecologƭa y Cambio ClimƔtico'),
(148372, 116129, 'en', 'name', 'Alisher Navo''i Tashkent State University of Uzbek Language and Literature'),
(148373, 116129, 'ru', 'name', 'Š¢Š°ŃˆŠŗŠµŠ½Ń‚ŃŠŗŠøŠ¹ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ узбекского ŃŠ·Ń‹ŠŗŠ° Šø Š»ŠøŃ‚ŠµŃ€Š°Ń‚ŃƒŃ€Ń‹ имени ŠŠ»ŠøŃˆŠµŃ€Š° ŠŠ°Š²Š¾Šø'),
(148374, 116129, 'tt', 'name', 'Š¢Š°ŃˆŠŗÓ™Š½Ń‚ Гәүләт үзбәк теле һәм Ó™Š“Ó™Š±ŠøŃŃ‚Ń‹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń‹'),
(148375, 116129, 'uz', 'name', 'Alisher Navoiy nomidagi Toshkent davlat oʻzbek tili va adabiyoti universiteti'),
(148376, 116130, 'en', 'name', 'International Centre for South-South Cooperation in Science, Technology and Innovation, International Science, Technology and Innovation Centre for South-South Cooperation'),
(148377, 116131, 'pt', 'name', 'Centro de Informação e Vigilância Sismovulcânica dos Açores'),
(148378, 116132, 'en', 'name', 'Jawahar Medical Foundation''s Annasaheb Chudaman Patil Memorial Medical College & Hospital'),
(148379, 116133, 'en', 'name', 'Centre for Research & Development in Mechanical Engineering'),
(148380, 116133, 'pt', 'name', 'Centro de Investigação e Desenvolvimento em Engenharia Mecânica'),
(148381, 116134, 'en', 'name', 'Children’s Health Research Institute'),
(148382, 116135, 'de', 'name', 'Ruprecht-Karls-UniversitƤt Heidelberg'),
(148383, 116135, 'en', 'name', 'Heidelberg University'),
(148384, 116136, 'fr', 'name', 'ChronothƩrapie, cancers et transplantation'),
(148385, 116137, 'no_lang_code', 'name', 'Maia Dias - Consultório Médico (Portugal), Maia Dias - Medical Office Ltd'),
(148386, 116138, 'fr', 'name', 'Institut de Technologie Agroalimentaire'),
(148387, 116139, 'pt', 'name', 'Laboratório de Engenharia MatemÔtica do Instituto Politécnico do Porto'),
(148388, 116140, 'no_lang_code', 'name', 'Uahuah Comércio Electrónico de Informação (Portugal), Uahuah Ecommerce of Information'),
(148389, 116141, 'fr', 'name', 'Terres Univia'),
(148390, 116142, 'en', 'name', 'U.S. Army Fires Center of Excellence'),
(148391, 116143, 'no_lang_code', 'name', 'Jorge Lozano Trabalhos em Altura Formação e Serviços (Portugal), Jorge Lozano Work at Height Training and Services Sole Proprietorship'),
(148392, 116144, 'no_lang_code', 'name', 'Insia Information systems, Insia Sistemas de Informação (Portugal)'),
(148393, 116145, 'en', 'name', 'Shiv Nadar University, Chennai'),
(148394, 116146, 'en', 'name', 'Conservancy of Southwest Florida'),
(148395, 116147, 'en', 'name', 'Shmuel Harofeh Hospital'),
(148396, 116147, 'he', 'name', 'בית החולים שמואל הרופא'),
(148397, 116148, 'es', 'name', 'Centro de Innovación Aplicada en Tecnologías Competitivas'),
(148398, 116149, 'en', 'name', 'University of Malta'),
(148399, 116150, 'pt', 'name', 'Centro Regional de Investigação Pesqueira do Sul'),
(148400, 116151, 'ca', 'name', 'Centre de Recerca Ecològica i Aplicacions Forestals'),
(148401, 116151, 'en', 'name', 'Centre for Research on Ecology and Forestry Applications');
INSERT INTO `ror_settings` VALUES
(148402, 116151, 'es', 'name', 'Centro de Investigación Ecológica y Aplicaciones Forestales'),
(148403, 116152, 'en', 'name', 'Research Unit in Design and Communication'),
(148404, 116152, 'pt', 'name', 'Unidade de Investigação em Design e Comunicação'),
(148405, 116153, 'en', 'name', 'U.S. Army Aviation Center of Excellence'),
(148406, 116154, 'en', 'name', 'United States Department of the Navy'),
(148407, 116155, 'en', 'name', 'Bangladesh Institute of Capital Market'),
(148408, 116156, 'en', 'name', 'NGO ā€œResearch And Educational Innovation Center of Social Transformationsā€'),
(148409, 116156, 'uk', 'name', 'Š“Šž Ā«ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ŠžŃŠ²Ń–Ń‚Š½Ń–Š¹ Інноваційний Центр Š”ŃƒŃŠæŃ–Š»ŃŒŠ½ŠøŃ… Трансформацій»'),
(148410, 116157, 'en', 'name', 'Ministry of National Defense'),
(148411, 116157, 'zh', 'name', 'äø­čÆę°‘åœ‹åœ‹é˜²éƒØ'),
(148412, 116158, 'en', 'name', 'University of French Polynesia'),
(148413, 116158, 'fr', 'name', 'UniversitƩ de la polynƩsie franƧaise'),
(148414, 116159, 'en', 'name', 'Nebraska Medical Center'),
(148415, 116160, 'pt', 'name', 'Universidade Católica Portuguesa'),
(148416, 116161, 'it', 'name', 'Sistema Nazionale per la Protezione dell''Ambiente'),
(148417, 116162, 'en', 'name', 'Spintronics Research Network of Japan'),
(148418, 116163, 'en', 'name', 'Summit University, Offa'),
(148419, 116164, 'en', 'name', 'U.S. Army Research Institute for the Behavioral and Social Sciences'),
(148420, 116165, 'pt', 'name', 'Instituto PortuguĆŖs do Desporto e Juventude IP'),
(148421, 116166, 'en', 'name', 'Sainsbury Family Charitable Trusts'),
(148422, 116167, 'no_lang_code', 'name', 'NBP Produção em Vídeo (Portugal), NBP Produção em Vídeo, S.A., NBP Video Production'),
(148423, 116168, 'en', 'name', 'State Scientific Research Institute of Armament and Military Equipment Testing and Certification'),
(148424, 116168, 'uk', 'name', 'Державний науково-ГосліГний Ń–Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š²ŠøŠæŃ€Š¾Š±ŃƒŠ²Š°Š½ŃŒ і сертифікації Š¾Š·Š±Ń€Š¾Ń”Š½Š½Ń та Š²Ń–Š¹ŃŃŒŠŗŠ¾Š²Š¾Ń— техніки'),
(148425, 116169, 'en', 'name', 'Indian Institute of Information Technology, Sonepat'),
(148426, 116169, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤øą„‚ą¤šą¤Øą¤¾ ą¤Ŗą„ą¤°ą„Œą¤¦ą„ą¤Æą„‹ą¤—ą¤æą¤•ą„€ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø, ą¤øą„‹ą¤Øą„€ą¤Ŗą¤¤'),
(148427, 116170, 'en', 'name', 'Canadian-Pacific Robotic Ocean Observing Facility'),
(148428, 116171, 'en', 'name', 'S2Innovation Sp. z o. o. [ltd.]'),
(148429, 116171, 'no_lang_code', 'name', 'S2Innovation Sp. z o. o. [ltd.] (Poland)'),
(148430, 116172, 'en', 'name', 'Regional Centre for Integrated River Basin Management'),
(148431, 116173, 'en', 'name', 'Center for Engineering and Industrial Development'),
(148432, 116173, 'es', 'name', 'Centro de IngenierĆ­a y Desarrollo Industrial'),
(148433, 116174, 'en', 'name', 'Inria Paris Centre at Sorbonne University'),
(148434, 116174, 'fr', 'name', 'Centre Inria de Sorbonne UniversitƩ'),
(148435, 116175, 'en', 'name', 'National Scientific and Technical Research Council'),
(148436, 116175, 'es', 'name', 'Consejo Nacional de Investigaciones Cientƭficas y TƩcnicas'),
(148437, 116176, 'en', 'name', 'Tsinghua University'),
(148438, 116176, 'zh', 'name', 'ęø…åŽå¤§å­¦'),
(148439, 116177, 'pt', 'name', 'MARE - Centro de CiĆŖncias do Mar e do Ambiente'),
(148440, 116178, 'de', 'name', 'GHEbavaria Maschinen GmbH'),
(148441, 116178, 'no_lang_code', 'name', 'GHEbavaria Maschinen GmbH (Germany)'),
(148442, 116179, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure Agronomique de Toulouse'),
(148443, 116180, 'es', 'name', 'Sociedad Argentina de AnÔlisis Filosófico'),
(148444, 116181, 'bn', 'name', 'বাংলাদেশ বেতার'),
(148445, 116181, 'en', 'name', 'Bangladesh Betar'),
(148446, 116182, 'pt', 'name', 'Instituto Superior TƩcnico'),
(148447, 116183, 'no_lang_code', 'name', 'Intellegibilis (Portugal)'),
(148448, 116184, 'en', 'name', 'Primate Expertise'),
(148449, 116185, 'en', 'name', 'Quantic School of Business and Technology'),
(148450, 116186, 'en', 'name', 'Academy of Silesia'),
(148451, 116186, 'pl', 'name', 'Akademia Śląska'),
(148452, 116187, 'de', 'name', 'Deutsches Zentrum für Lungenforschung'),
(148453, 116187, 'en', 'name', 'German Center for Lung Research'),
(148454, 116188, 'es', 'name', 'Instituto de Investigaciones en Humanidades y Ciencias Sociales'),
(148455, 116189, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ في Ų§Ł„ŲØŁŠŁˆŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(148456, 116189, 'en', 'name', 'Taoufik Khaznadar National Higher School of Biotechnology'),
(148457, 116189, 'fr', 'name', 'Ecole Nationale SupƩrieure de Biotechnologie Taoufik Khaznadar'),
(148458, 116190, 'fr', 'name', 'ContrĆ“le de l’Activation cellulaire, Progression Tumorale et RĆ©sistance thĆ©rapeutique'),
(148459, 116191, 'en', 'name', 'Immunology of tumors and cancer immunotherapy'),
(148460, 116191, 'fr', 'name', 'Immunologie anti-tumorale et immunothƩrapie des cancers'),
(148461, 116192, 'en', 'name', 'Institute of Applied Physics'),
(148462, 116193, 'en', 'name', 'Ministry of the Interior'),
(148463, 116193, 'sl', 'name', 'Ministrstvo za Notranje Zadeve'),
(148464, 116194, 'fr', 'name', 'Analyse molƩculaire, modƩlisation et imagerie de la maladie cancƩreuse'),
(148465, 116195, 'en', 'name', 'University of Chitral'),
(148466, 116196, 'en', 'name', 'Paul Scherrer Institute'),
(148467, 116196, 'fr', 'name', 'Institut Paul Scherrer'),
(148468, 116197, 'en', 'name', 'Ministry of Health'),
(148469, 116197, 'sl', 'name', 'Ministrstvo za zdravje'),
(148470, 116198, 'en', 'name', 'State Darwin Museum'),
(148471, 116198, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ Дарвиновский музей'),
(148472, 116199, 'fr', 'name', 'LabEx PERSYVAL-Lab'),
(148473, 116200, 'fr', 'name', 'UniDistance Suisse'),
(148474, 116201, 'pt', 'name', 'Centro de Investigação Interdisciplinar em Saúde'),
(148475, 116202, 'en', 'name', 'University of Technology Sydney'),
(148476, 116203, 'en', 'name', 'Danish e-Infrastructure Cooperation'),
(148477, 116204, 'en', 'name', 'Higher Aviation Educational Institution ā€œKyrgyz Aviation Institute named after I. Abdraimovā€, Kyrgyz Aviation Institute named after I. Abdraimov'),
(148478, 116204, 'ky', 'name', '"И.АбГраимов атынГагы ŠšŃ‹Ń€Š³Ń‹Š· Š°Š²ŠøŠ°Ń†ŠøŃŠ»Ń‹Šŗ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ńƒ" Š¶Š¾Š³Š¾Ń€ŠŗŃƒ Š°Š²ŠøŠ°Ń†ŠøŃŠ»Ń‹Šŗ окуу жайы'),
(148479, 116204, 'ru', 'name', 'Š’Ń‹ŃŃˆŠµŠµ авиационное ŃƒŃ‡ŠµŠ±Š½Š¾Šµ завеГение "ŠšŃ‹Ń€Š³Ń‹Š·ŃŠŗŠøŠ¹ авиационный ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ имени И.АбГраимова"'),
(148480, 116205, 'el', 'name', 'Γενικο ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪ¹Īæ Λακωνιας'),
(148481, 116205, 'en', 'name', 'General Hospital of Laconia'),
(148482, 116206, 'en', 'name', 'Jesselton University College, Kolej Universiti Jesselton'),
(148483, 116207, 'pt', 'name', 'Gabinete de EstratƩgia e Estudos'),
(148484, 116208, 'fr', 'name', 'Centre Inria de l''UniversitƩ de Lorraine'),
(148485, 116209, 'en', 'name', 'Group for Lasers and Plasmas'),
(148486, 116209, 'pt', 'name', 'Grupo de Lasers e Plasmas'),
(148487, 116210, 'en', 'name', 'Latin American Faculty of Social Sciences'),
(148488, 116210, 'es', 'name', 'Facultad Latinoamericana de Ciencias Sociales'),
(148489, 116211, 'en', 'name', 'Basque Culinary Center'),
(148490, 116212, 'en', 'name', 'State University of Intelligent Technologies and Telecommunications'),
(148491, 116212, 'uk', 'name', 'Державний ŃƒŠ½Ń–Š²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ Ń–Š½Ń‚ŠµŠ»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½ŠøŃ… технологій і зв''ŃŠ·ŠŗŃƒ'),
(148492, 116213, 'en', 'name', 'P. R. Pote Patil College of Engineering & Management, Amravati'),
(148493, 116214, 'ca', 'name', 'Institut CatalĆ  de les Dones'),
(148494, 116215, 'en', 'name', 'Joint Evaluated Fission and Fusion'),
(148495, 116216, 'es', 'name', 'Ministerio de Salud PĆŗblica y Bienestar Social'),
(148496, 116217, 'en', 'name', 'Evolutionary Engineering & Distributed Information Systems Laboratory'),
(148497, 116218, 'fr', 'name', 'Montpellier-Ecologie, Evolution, BiodiversitƩ'),
(148498, 116219, 'de', 'name', 'Bundesministerium für Bildung, Wissenschaft und Forschung'),
(148499, 116219, 'en', 'name', 'Federal Ministry of Education, Science and Research'),
(148500, 116220, 'en', 'name', 'Rani Channamma University, Belagavi'),
(148501, 116220, 'kn', 'name', 'ರಾಣಿ ą²šą³†ą²Øą³ą²Øą²®ą³ą²® ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ, ಬೆಳಗಾವಿ'),
(148502, 116221, 'en', 'name', 'Polytechnic Institute of Tomar'),
(148503, 116221, 'pt', 'name', 'Instituto PolitƩcnico de Tomar'),
(148504, 116222, 'en', 'name', 'Wave Propagation Mathematical Study and Simulation'),
(148505, 116222, 'fr', 'name', 'Propagation des Ondes : Ɖtude MathĆ©matique et Simulation'),
(148506, 116223, 'es', 'name', 'Dirección de Educación Policial Institución Universitaria de la Policía Nacional'),
(148507, 116224, 'en', 'name', 'Dr. A.P.J. Abdul Kalam Technical University'),
(148508, 116225, 'en', 'name', 'TWI (United Kingdom)'),
(148509, 116226, 'en', 'name', 'National Science Centre'),
(148510, 116226, 'pl', 'name', 'Narodowe Centrum Nauki'),
(148511, 116227, 'ca', 'name', 'Institut de CiĆØncia de Materials de Barcelona'),
(148512, 116227, 'en', 'name', 'Institute of Materials Science of Barcelona'),
(148513, 116228, 'pt', 'name', 'Centro de Investigação em Energia e Ambiente'),
(148514, 116229, 'no_lang_code', 'name', 'Lusoterapia Sociedade Comercial de Produção Químico-Farmacêutica (Portugal), Lusotherapy Commercial Society of Chemical-Pharmaceutical Production'),
(148515, 116230, 'en', 'name', 'International House Braga'),
(148516, 116231, 'ca', 'name', 'Servei Meteorològic de Catalunya'),
(148517, 116231, 'en', 'name', 'Meteorological Service of Catalonia'),
(148518, 116232, 'fr', 'name', 'Centre d''Ʃtudes des politiques Ʃconomiques'),
(148519, 116233, 'no_lang_code', 'name', 'Informa D&B Business Management Services, Informa D&B Serviços de Gestão de Empresas (Portugal)'),
(148520, 116234, 'fr', 'name', 'UniversitƩ de Reims Champagne-Ardenne'),
(148521, 116235, 'pt', 'name', 'Linc Centros de Incubação'),
(148522, 116236, 'en', 'name', 'Institute for Urban Excellence'),
(148523, 116237, 'no_lang_code', 'name', 'Sourcecode Investigação Unipessoal (Portugal), Sourcecode Research Sole Proprietorship'),
(148524, 116238, 'en', 'name', 'The Madura College'),
(148525, 116238, 'ta', 'name', 'ą®®ą®¤ąÆą®°ąÆˆą®•ąÆ ą®•ą®²ąÆą®²ąÆ‚ą®°ą®æ'),
(148526, 116239, 'ar', 'name', 'ŁƒŁ„ŁŠŲ© Ų§Ł„Ų¹Ł„ŁˆŁ… Ų§Ł„Ų§Ł‚ŲŖŲµŲ§ŲÆŁŠŲ© ŁˆŲ§Ł„ŲŖŲµŲ±Ł بصفاقس'),
(148527, 116239, 'en', 'name', 'Faculty of Economics and Management of Sfax'),
(148528, 116239, 'fr', 'name', 'FacultƩ des Sciences Economiques et de Gestion de Sfax'),
(148529, 116240, 'en', 'name', 'Aeres University of Applied Sciences'),
(148530, 116240, 'nl', 'name', 'Aeres Hogeschool'),
(148531, 116241, 'no_lang_code', 'name', 'Houselab (Portugal)'),
(148532, 116242, 'en', 'name', 'Alvin J. Siteman Cancer Center'),
(148533, 116243, 'es', 'name', 'Universidad Andina Simón Bolívar'),
(148534, 116244, 'en', 'name', 'Polyphony Digital Inc., Polyphony Digital Inc. (Japan)'),
(148535, 116244, 'ja', 'name', 'ę Ŗå¼ä¼šē¤¾ćƒćƒŖćƒ•ć‚©ćƒ‹ćƒ¼ćƒ»ćƒ‡ć‚øć‚æćƒ«'),
(148536, 116245, 'fr', 'name', 'Maison de la Simulation'),
(148537, 116246, 'en', 'name', 'University of Lisbon Higher Institute of Economics and Management'),
(148538, 116246, 'pt', 'name', 'ISEG - Instituto Superior de Economia e Gestão'),
(148539, 116247, 'en', 'name', 'Maharshi Dayanand University'),
(148540, 116247, 'hi', 'name', 'ą¤®ą¤¹ą¤°ą„ą¤·ą¤æ ą¤¦ą¤Æą¤¾ą¤Øą¤Øą„ą¤¦ ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ, ą¤°ą„‹ą¤¹ą¤¤ą¤•'),
(148541, 116248, 'en', 'name', 'The Welding Institute'),
(148542, 116249, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲØŲ§Ų± Ų„ŁŠŁ„Ų§Ł†'),
(148543, 116249, 'en', 'name', 'Bar-Ilan University'),
(148544, 116250, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للأساتذة بالقبة'),
(148545, 116250, 'en', 'name', 'Higher Normal School of Kouba'),
(148546, 116250, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure de Kouba'),
(148547, 116251, 'pt', 'name', 'CĆ¢mara Municipal de Lisboa'),
(148548, 116252, 'pt', 'name', 'Fundação Nossa Senhora do Bom Sucesso'),
(148549, 116253, 'en', 'name', 'Ministry of Education'),
(148550, 116254, 'pt', 'name', 'Instituto Brasileiro de CiĆŖncias Criminais'),
(148551, 116255, 'en', 'name', 'National Blood Transfusion Service'),
(148552, 116256, 'no_lang_code', 'name', 'Sinora Industrial Synthetics, Sinora SintƩticos Industriais (Portugal), Sinora SintƩticos Industriais, S.A.'),
(148553, 116257, 'en', 'name', 'National Blood Service Ghana'),
(148554, 116258, 'es', 'name', 'Hospital El Salvador'),
(148555, 116259, 'pt', 'name', 'Unesp de MarĆ­lia'),
(148556, 116260, 'en', 'name', 'Models of Malignant and Therapeutic Stem Cells'),
(148557, 116260, 'fr', 'name', 'Modèles de cellules souches malignes et thérapeutiques'),
(148558, 116261, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł„ŲØŲ­ŁˆŲ« Ų§Ł„Ų²Ų±Ų§Ų¹ŁŠŲ©'),
(148559, 116261, 'en', 'name', 'National Agriculture Research Center'),
(148560, 116262, 'en', 'name', 'Heliophysics Science Division'),
(148561, 116263, 'en', 'name', 'Institute for Physics of Microstructures'),
(148562, 116263, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ Š³Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Š¾Šµ Š±ŃŽŠ“Š¶ŠµŃ‚Š½Š¾Šµ ŃƒŃ‡Ń€ŠµŠ¶Š“ŠµŠ½ŠøŠµ науки Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ физики Š¼ŠøŠŗŃ€Š¾ŃŃ‚Ń€ŃƒŠŗŃ‚ŃƒŃ€ Российской акаГемии наук'),
(148563, 116264, 'ca', 'name', 'Universitat PolitĆØcnica de Madrid'),
(148564, 116264, 'es', 'name', 'Universidad PolitƩcnica de Madrid'),
(148565, 116264, 'gl', 'name', 'Universidade PolitƩcnica de Madrid'),
(148566, 116265, 'en', 'name', 'Daniel Alcides Carrión National University'),
(148567, 116265, 'es', 'name', 'Universidad Nacional Daniel Alcides Carrión'),
(148568, 116266, 'en', 'name', 'University of California, Riverside'),
(148569, 116266, 'es', 'name', 'Universidad de California en Riverside'),
(148570, 116266, 'fr', 'name', 'UniversitƩ de Californie Ơ Riverside'),
(148571, 116267, 'fr', 'name', 'UniversitƩ de Rouen Normandie'),
(148572, 116268, 'en', 'name', 'National Museums NI'),
(148573, 116268, 'ga', 'name', 'MĆŗsaeim NĆ”isiĆŗnta TƉ'),
(148574, 116269, 'en', 'name', 'National Hospital Organization'),
(148575, 116269, 'ja', 'name', 'ē‹¬ē«‹č”Œę”æę³•äŗŗå›½ē«‹ē—…é™¢ę©Ÿę§‹'),
(148576, 116270, 'no_lang_code', 'name', 'Intermusica Musical and Artistic Representations, Intermúsica Representações Musicais e Artísticas (Portugal)'),
(148577, 116271, 'de', 'name', 'UniversitƤt Augsburg'),
(148578, 116271, 'en', 'name', 'University of Augsburg'),
(148579, 116272, 'en', 'name', 'Yunnan Yunnei Power Machinery Manufacturing Co., Ltd.'),
(148580, 116272, 'no_lang_code', 'name', 'Yunnan Yunnei Power Machinery Manufacturing Co., Ltd. (China)'),
(148581, 116272, 'zh', 'name', 'äŗ‘å—äŗ‘å†…åŠØåŠ›ęœŗę¢°åˆ¶é€ ęœ‰é™å…¬åø'),
(148582, 116273, 'en', 'name', 'Mongolian National Institute of Physical Education'),
(148583, 116273, 'mn', 'name', 'Š£Š½Š“ŃŃŠ½ŠøŠ¹ Биеийн Тамирын Š”ŃŃŠ“ Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(148584, 116274, 'en', 'name', 'Development, Adaptation and Ageing'),
(148585, 116274, 'fr', 'name', 'DƩveloppement Adaptation et Vieillissement'),
(148586, 116275, 'de', 'name', 'DGUV Hochschule - Hochschule der Gesetzlichen Unfallversicherung (HGU)'),
(148587, 116275, 'en', 'name', 'University of Applied Sciences of the German Social Accident Insurance'),
(148588, 116276, 'en', 'name', 'Rzeszów University'),
(148589, 116276, 'pl', 'name', 'Uniwersytet Rzeszowski'),
(148590, 116277, 'en', 'name', 'Toyo Institute of Food Technology'),
(148591, 116277, 'ja', 'name', 'å…¬ē›Šč²”å›£ę³•äŗŗę±ę“‹é£Ÿå“ē ”ē©¶ę‰€, ę±ę“‹é£Ÿå“ē ”ē©¶ę‰€'),
(148592, 116278, 'pt', 'name', 'Grupo de Investigação em Engenharia e Computação Inteligente para a Inovação e o Desenvolvimento'),
(148593, 116279, 'en', 'name', 'Biomaz Infosearch'),
(148594, 116280, 'en', 'name', 'Government College University Hyderabad'),
(148595, 116280, 'sd', 'name', 'ŚÆŁˆŲ±Ł†Ł…ŁŠŁ†Ł½ ŚŖŲ§Ł„ŁŠŲ¬ ŁŠŁˆŁ†ŁŠŁˆŲ±Ų³Ł½ŁŠ,حيدرآباد'),
(148596, 116281, 'en', 'name', '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)'),
(148597, 116282, 'en', 'name', 'Rishihood University'),
(148598, 116283, 'en', 'name', 'University of TrƔs-os-Montes and Alto Douro'),
(148599, 116283, 'pt', 'name', 'Universidade de TrƔs-os-Montes e Alto Douro'),
(148600, 116284, 'en', 'name', 'Soonchunhyang University'),
(148601, 116284, 'ko', 'name', 'ģˆœģ²œķ–„ėŒ€ķ•™źµ'),
(148602, 116285, 'en', 'name', 'Institute of Labor, Occupational Safety And Health, Ministry of Labor'),
(148603, 116286, 'en', 'name', 'Ibn-e-Sina University'),
(148604, 116287, 'en', 'name', 'Providence Health Care'),
(148605, 116288, 'pt', 'name', 'Centro de Reabilitação de Paralisia Cerebral de Coimbra'),
(148606, 116289, 'ar', 'name', 'الجامعة Ų§Ł„Ų¹ŲØŲ±ŁŠŲ© في القدس'),
(148607, 116289, 'en', 'name', 'Hebrew University of Jerusalem'),
(148608, 116289, 'he', 'name', '×”××•× ×™×‘×Ø×”×™×˜×” העברית ×‘×™×Ø×•×©×œ×™×'),
(148609, 116290, 'no_lang_code', 'name', 'Fiat Chrysler Automobiles (United States)'),
(148610, 116291, 'en', 'name', 'University of Utah'),
(148611, 116291, 'es', 'name', 'Universidad de Utah'),
(148612, 116292, 'no_lang_code', 'name', 'Grünenthal Group (Germany)'),
(148613, 116293, 'en', 'name', 'Mata Gujri Memorial Medical College & Lions Seva Kendra Hospital'),
(148614, 116294, 'en', 'name', 'Computer Science and Communication Research Centre'),
(148615, 116294, 'pt', 'name', 'Centro de Investigação em InformÔtica e Comunicações'),
(148616, 116295, 'fr', 'name', 'France Cohortes'),
(148617, 116296, 'es', 'name', 'Centro de Investigaciones y Transferencia Tierra del Fuego'),
(148618, 116297, 'fr', 'name', 'Laboratoire de chimie des substances naturelles'),
(148619, 116298, 'pt', 'name', 'Fundação para o Estudo e Desenvolvimento da Região de Aveiro'),
(148620, 116299, 'es', 'name', 'Centro Medico Nacional - Hospital Nacional'),
(148621, 116300, 'en', 'name', 'Inter-University Council for East Africa'),
(148622, 116301, 'en', 'name', 'University of British Columbia'),
(148623, 116301, 'fr', 'name', 'UniversitƩ de la colombie-britannique'),
(148624, 116302, 'en', 'name', 'Center for the History of "Space and Culture"'),
(148625, 116302, 'fr', 'name', 'Centre d''Histoire ā€œEspaces et Culturesā€'),
(148626, 116303, 'de', 'name', 'Ministerium für Bildung, Wissenschaft, Weiterbildung und Kultur'),
(148627, 116304, 'en', 'name', 'Center for Interdisciplinary Research'),
(148628, 116304, 'pt', 'name', 'Centro de Investigação Interdisciplinar Egas Moniz'),
(148629, 116305, 'en', 'name', 'Riskfuel, Riskfuel (Canada)'),
(148630, 116306, 'en', 'name', 'Shared Health Inc., Shared Health Manitoba'),
(148631, 116306, 'fr', 'name', 'Soins communs Manitoba'),
(148632, 116307, 'pt', 'name', 'Escola Superior de Música e das Artes do EspectÔculo'),
(148633, 116308, 'en', 'name', 'Manipal Centre for Natural Sciences'),
(148634, 116309, 'pt', 'name', 'Grupo de Estudos de Ordenamento do Território e Ambiente'),
(148635, 116310, 'de', 'name', 'Büro für Angewandte Hydrologie, Büro für Angewandte Hydrologie (Germany), Büro für Angewandte Hydrologie GmbH'),
(148636, 116311, 'en', 'name', 'TechForFuture'),
(148637, 116312, 'en', 'name', 'United States Special Operations Command'),
(148638, 116313, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© باجي Ł…Ų®ŲŖŲ§Ų±-عنابة'),
(148639, 116313, 'en', 'name', 'Badji Mokhtar-Annaba University'),
(148640, 116313, 'fr', 'name', 'UniversitƩ Badji Mokhtar-Annaba'),
(148641, 116314, 'de', 'name', 'Akkon Hochschule für Humanwissenschaften, Akkon Hochschule für Humanwissenschaften gGmbH'),
(148642, 116314, 'en', 'name', 'Johanniter University of Applied Sciences'),
(148643, 116315, 'pt', 'name', 'Centro de Inovação e Investigação em Ciências Empresariais e Sistemas de Informação'),
(148644, 116316, 'en', 'name', 'EOSC Association'),
(148645, 116317, 'en', 'name', 'South Carolina Department of Environmental Services'),
(148646, 116318, 'en', 'name', 'Biometry and Evolutionary Biology Laboratory'),
(148647, 116318, 'fr', 'name', 'Laboratoire de BiomƩtrie et Biologie Evolutive'),
(148648, 116319, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲÆŁ…Ł†Ł‡ŁˆŲ±'),
(148649, 116319, 'en', 'name', 'Damanhour University'),
(148650, 116320, 'en', 'name', 'University of Tuscia'),
(148651, 116320, 'it', 'name', 'UniversitĆ  degli Studi della Tuscia'),
(148652, 116321, 'en', 'name', 'Hlukhiv State Pedagogical University'),
(148653, 116322, 'fr', 'name', 'Institut FranƧais de la Vigne et du Vin'),
(148654, 116323, 'pt', 'name', 'Centro de Oceanografia'),
(148655, 116324, 'pt', 'name', 'Fundação Professor Ernesto Morais'),
(148656, 116325, 'en', 'name', 'Finnish Museum of Natural History'),
(148657, 116325, 'fi', 'name', 'Luonnontieteellinen keskusmuseo'),
(148658, 116325, 'sv', 'name', 'Naturhistoriska centralmuseet'),
(148659, 116326, 'en', 'name', 'Ministry of Colleges and Universities'),
(148660, 116327, 'en', 'name', 'Rajkiya Engineering College Mainpuri'),
(148661, 116328, 'no_lang_code', 'name', 'Independent Society for the Development of Higher Education, Sociedade Independente para o Desenvolvimento do Ensino Superior (Portugal)'),
(148662, 116329, 'en', 'name', 'Inria Bordeaux - Sud-Ouest Research Centre'),
(148663, 116329, 'fr', 'name', 'Centre de Recherche Inria Bordeaux - Sud-Ouest'),
(148664, 116330, 'en', 'name', 'Department of Biotechnology'),
(148665, 116331, 'pt', 'name', 'Centro Interdisciplinar em CiĆŖncias da SaĆŗde'),
(148666, 116332, 'bn', 'name', 'ą¦‡ą¦‰ą¦Øą¦æą¦­ą¦¾ą¦°ą§ą¦øą¦æą¦Ÿą¦æ অফ ą¦—ą§ą¦²ą§‹ą¦¬ą¦¾ą¦² ভিলেج (ą¦‡ą¦‰ą¦œą¦æą¦­ą¦æ)'),
(148667, 116332, 'en', 'name', 'University of Global Village (UGV)'),
(148668, 116333, 'pt', 'name', 'Centro de Investigação em Modelação e Optimização de Sistemas Multifuncionais'),
(148669, 116334, 'fr', 'name', 'Vieillissement, FragilitƩ, PrƩvention, e-SantƩ'),
(148670, 116335, 'en', 'name', 'Kindai University Nara Hospital'),
(148671, 116335, 'ja', 'name', 'čæ‘ē•æå¤§å­¦å„ˆč‰Æē—…é™¢'),
(148672, 116336, 'pt', 'name', 'Centro de Estudo do Movimento e Atividade Humana'),
(148673, 116337, 'en', 'name', 'Singapore Immunology Network'),
(148674, 116338, 'en', 'name', 'Government Ayurvedic College & Hospital, Balangir'),
(148675, 116338, 'or', 'name', 'ସରକାରୀ ą¬†ą­Ÿą­ą¬°ą­ą¬¬ą­‡ą¬¦ ą¬®ą¬¹ą¬¾ą¬¬ą¬æą¬¦ą­ą­Ÿą¬¾ą¬³ą­Ÿą­ ą¬¬ą¬²ą­ą¬™ą­ą¬—ą¬°ą­'),
(148676, 116339, 'no_lang_code', 'name', 'Id Tour Unique Solutions (Portugal)'),
(148677, 116340, 'en', 'name', 'Norwegian University College of Green Development'),
(148678, 116340, 'no', 'name', 'HĆøgskulen for GrĆøn Utvikling'),
(148679, 116341, 'no_lang_code', 'name', 'Norsk Hydro (Norway)'),
(148680, 116342, 'en', 'name', 'Molecular and Atmospheric Spectrometry Group'),
(148681, 116342, 'fr', 'name', 'Groupe de SpectromƩtrie MolƩculaire et AtmosphƩrique'),
(148682, 116343, 'en', 'name', 'Institut Rhodanien'),
(148683, 116344, 'de', 'name', 'FernUni Schweiz'),
(148684, 116345, 'en', 'name', 'Mykolaiv regional organization of National Union of Lore Researchers of Ukraine'),
(148685, 116345, 'uk', 'name', 'ŠœŠøŠŗŠ¾Š»Š°Ń—Š²ŃŃŒŠŗŠ° обласна Š¾Ń€Š³Š°Š½Ń–Š·Š°Ń†Ń–Ń ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š¾Ń— спілки краєзнавців України'),
(148686, 116346, 'en', 'name', 'International Centre for Advanced Training of Scientists from Portuguese-Speaking Countries in Areas of Basic Sciences'),
(148687, 116346, 'pt', 'name', 'Centro CiĆŖncia LP'),
(148688, 116347, 'en', 'name', 'Polytechnic Institute of Viana do Castelo'),
(148689, 116348, 'es', 'name', 'Laboratorio de Investigaciones del Territorio y el Ambiente'),
(148690, 116349, 'en', 'name', 'Tianjin Municipal Science and Technology Commission'),
(148691, 116350, 'ca', 'name', 'Institut de Política Econòmica i Governança'),
(148692, 116350, 'en', 'name', 'Institute of Political Economy and Governance'),
(148693, 116351, 'en', 'name', 'Soonchunhyang University Bucheon Hospital'),
(148694, 116351, 'ko', 'name', 'ģˆœģ²œķ–„ėŒ€ķ•™źµ ė¶€ģ† ė¶€ģ²œė³‘ģ›'),
(148695, 116352, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© الؓمال الخاصة'),
(148696, 116352, 'en', 'name', 'Al-Shamal Private University'),
(148697, 116353, 'en', 'name', 'Liaoning Institute of Science and Technology'),
(148698, 116353, 'zh', 'name', 'č¾½å®ē§‘ęŠ€å­¦é™¢'),
(148699, 116354, 'en', 'name', 'IRELEC, IRELEC (FRANCE)'),
(148700, 116355, 'en', 'name', 'Abylkas Saginov Karaganda Technical University'),
(148701, 116355, 'kk', 'name', 'Ó˜Š±Ń–Š»Ņ›Š°Ń Дағынов атынГағы ŅšŠ°Ń€Š°Ņ“Š°Š½Š“Ń‹ техникалық ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚Ń–'),
(148702, 116356, 'en', 'name', 'Scientific-Research Institute of Intellectual Property'),
(148703, 116356, 'uk', 'name', 'ŠŠ°ŃƒŠŗŠ¾Š²Š¾-ДосліГний Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ Š†Š½Ń‚ŠµŠ»ŠµŠŗŃ‚ŃƒŠ°Š»ŃŒŠ½Š¾Ń— Власності'),
(148704, 116357, 'en', 'name', 'InsideOutBio, InsideOutBio (United States)'),
(148705, 116358, 'ca', 'name', 'Universitat ParĆ­s-Saclay'),
(148706, 116358, 'en', 'name', 'University of Paris-Saclay'),
(148707, 116358, 'eu', 'name', 'Paris-Saclayko Unibertsitatea'),
(148708, 116358, 'fr', 'name', 'UniversitƩ Paris-Saclay'),
(148709, 116359, 'en', 'name', 'Oli Health Magazine Organization'),
(148710, 116360, 'en', 'name', 'Pandit Bhagwat Dayal Sharma University of Health Sciences'),
(148711, 116361, 'pt', 'name', 'Instituto de Formação e Investigação da Língua Portuguesa'),
(148712, 116362, 'en', 'name', 'European Health and Digital Executive Agency, Health and Digital Executive Agency'),
(148713, 116363, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŁˆŁ†ŲŖŁƒ Ų§Ł„ŲÆŁˆŁ„ŁŠŲ© Ł„Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠŲ§'),
(148714, 116363, 'en', 'name', 'International University of Technology Twintech'),
(148715, 116364, 'no_lang_code', 'name', 'PƔgina Transparente Unipessoal (Portugal), Transparent Page Sole Trader'),
(148716, 116365, 'en', 'name', 'University of Pannonia'),
(148717, 116365, 'hu', 'name', 'Pannon Egyetem'),
(148718, 116366, 'no_lang_code', 'name', 'Grupo SIBS, SIBS Partners in Payments (Portugal)'),
(148719, 116367, 'en', 'name', 'University of Oulu'),
(148720, 116367, 'fi', 'name', 'Oulun yliopisto'),
(148721, 116368, 'en', 'name', 'RITM Research Center in Economics & Management'),
(148722, 116368, 'fr', 'name', 'RƩseaux, Innovation, Territoires et Mondialisation'),
(148723, 116369, 'da', 'name', 'Syddansk Universitet'),
(148724, 116369, 'en', 'name', 'University of Southern Denmark'),
(148725, 116370, 'en', 'name', 'Sorbonne Nouvelle University'),
(148726, 116370, 'fr', 'name', 'UniversitƩ Sorbonne Nouvelle'),
(148727, 116371, 'fr', 'name', 'Institut Universitaire de Technologie de Dijon/Auxerre'),
(148728, 116372, 'en', 'name', 'RVS College of Engineering & Technology, Jamshedpur'),
(148729, 116373, 'no_lang_code', 'name', 'Antonio Vilar and Associates Lawyers, Gabinete de Advogados António Vilar e Associados (Portugal)'),
(148730, 116374, 'en', 'name', 'Mental Health Authority'),
(148731, 116375, 'es', 'name', 'Universidad CEU Fernando III'),
(148732, 116376, 'es', 'name', 'Instituto Superior Tecnológico San Antonio'),
(148733, 116377, 'en', 'name', 'NSF’s NOIRLab'),
(148734, 116378, 'pt', 'name', 'Fundação das Casas de Fronteira e Alorna'),
(148735, 116379, 'fr', 'name', 'Laboratoire Communication et SociƩtƩs'),
(148736, 116380, 'en', 'name', 'Clonal Heterogeneity, Leukemic environment, ThErapy Resistance of chronic leukemias'),
(148737, 116381, 'en', 'name', 'Hospitals of the University of Coimbra'),
(148738, 116381, 'pt', 'name', 'Hospitais da Universidade de Coimbra'),
(148739, 116382, 'fr', 'name', 'Inria Rennes - Bretagne Atlantique, Inria Rennes - Bretagne Atlantique Research Centre'),
(148740, 116383, 'pt', 'name', 'Hospital da Prelada'),
(148741, 116384, 'en', 'name', 'Inria Saclay Centre at UniversitƩ Paris-Saclay'),
(148742, 116384, 'fr', 'name', 'Centre Inria de l''UniversitƩ Paris-Saclay'),
(148743, 116385, 'en', 'name', 'Federal University of ViƧosa'),
(148744, 116385, 'pt', 'name', 'Universidade Federal de ViƧosa'),
(148745, 116386, 'en', 'name', 'Stellantis North America'),
(148746, 116386, 'no_lang_code', 'name', 'Stellantis North America (United States)'),
(148747, 116387, 'en', 'name', 'Games Interaction and Learning Technologies'),
(148748, 116388, 'fr', 'name', 'Neuropathies PƩriphƩriques et Innovations ThƩrapeutiques'),
(148749, 116389, 'en', 'name', 'Chalmers University of Technology'),
(148750, 116389, 'fi', 'name', 'Chalmersin teknillinen korkeakoulu'),
(148751, 116389, 'sv', 'name', 'Chalmers tekniska hƶgskola'),
(148752, 116390, 'ar', 'name', 'الجهاز Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ للتعبئة العامة ŁˆŲ§Ł„Ų„Ų­ŲµŲ§Ų”'),
(148753, 116390, 'en', 'name', 'Central Agency for Public Mobilization & Statistics'),
(148754, 116391, 'en', 'name', 'Ludovika University of Public Service'),
(148755, 116391, 'hu', 'name', 'Nemzeti KƶzszolgƔlati Egyetem'),
(148756, 116392, 'en', 'name', 'Federal Institute of Education, Science and Technology Alagoas'),
(148757, 116392, 'pt', 'name', 'Instituto Federal de Educação, Ciência e Tecnologia de Alagoas'),
(148758, 116393, 'pt', 'name', 'Centro de Investigação da Terra e do Espaço'),
(148759, 116394, 'pt', 'name', 'UACOOPERA'),
(148760, 116395, 'en', 'name', 'National Research Center for Hematology Russian Academy of Medical Sciences'),
(148761, 116395, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ меГицинский ŠøŃŃŠ»ŠµŠ“Š¾Š²Š°Ń‚ŠµŠ»ŃŒŃŠŗŠøŠ¹ центр гематологии'),
(148762, 116396, 'es', 'name', 'Benemerita Escuela Normal Urbana Federal Fronteriza'),
(148763, 116397, 'en', 'name', 'Isfahan Regional Center for Technology Incubators and Science Parks Development'),
(148764, 116398, 'el', 'name', 'Σχολη Ικαρων'),
(148765, 116398, 'en', 'name', 'Hellenic Air Force Academy'),
(148766, 116399, 'pt', 'name', 'Centro de Investigação Cientifica da Construção e do ImobiliÔrio'),
(148767, 116400, 'en', 'name', 'Korea Institute for Advanced Study'),
(148768, 116400, 'ko', 'name', '고등과학원'),
(148769, 116401, 'cy', 'name', 'Coleg Imperial Llundain'),
(148770, 116401, 'en', 'name', 'Imperial College London'),
(148771, 116402, 'en', 'name', 'Foundation for Partnership Initiatives in the Niger Delta'),
(148772, 116403, 'no_lang_code', 'name', 'Chrysler (Canada)'),
(148773, 116404, 'no_lang_code', 'name', 'Salvor Sociedade de Investimento Hoteleiro (Portugal), Salvor Sociedade de Investimento Hoteleiro, S.A.'),
(148774, 116405, 'en', 'name', 'NSF-Simons AI Institute for Cosmic Origins'),
(148775, 116406, 'en', 'name', 'Open Research Community Accelerator'),
(148776, 116407, 'en', 'name', 'University of the Azores'),
(148777, 116407, 'pt', 'name', 'Universidade dos AƧores'),
(148778, 116408, 'en', 'name', 'Global Affairs Canada'),
(148779, 116408, 'fr', 'name', 'Affaires Mondiales Canada'),
(148780, 116409, 'fr', 'name', 'HESAM UniversitƩ'),
(148781, 116410, 'en', 'name', 'Institute of Public Law Studies'),
(148782, 116410, 'fr', 'name', 'Institut d''Etudes de Droit Public'),
(148783, 116411, 'pt', 'name', 'Centro de Investigação Interdisciplinar e Intervenção ComunitÔria'),
(148784, 116412, 'de', 'name', 'Technische UniversitƤt Dresden'),
(148785, 116412, 'en', 'name', 'TUD Dresden University of Technology'),
(148786, 116413, 'en', 'name', 'Arrington Research, Inc., Arrington Research, Inc. (United States)'),
(148787, 116414, 'en', 'name', 'Advanced Mining Technology Center'),
(148788, 116414, 'es', 'name', 'Centro Avanzado de TecnologĆ­a para la MinerĆ­a'),
(148789, 116415, 'en', 'name', 'Ministry of Economic Affairs'),
(148790, 116416, 'ar', 'name', 'المعهد Ų§Ł„ŲŖŁƒŁ†ŁˆŁ„ŁˆŲ¬ŁŠ Ų§Ł„Ų¹Ų§Ł„ŁŠ بالسادس من أكتوبر'),
(148791, 116416, 'en', 'name', 'Higher Technological Institute, 6th of October City'),
(148792, 116417, 'en', 'name', 'Public Health Service of Amsterdam'),
(148793, 116417, 'nl', 'name', 'GGD Amsterdam'),
(148794, 116418, 'en', 'name', 'NIHR Surgical Reconstruction and Microbiology Research Centre'),
(148795, 116419, 'no_lang_code', 'name', 'LivaNova (Portugal)'),
(148796, 116420, 'en', 'name', 'International Centre of Research and Postgraduate Training in Mathematics'),
(148797, 116420, 'vi', 'name', 'Trung tĆ¢m NghiĆŖn cứu vĆ  ĐƠo tįŗ”o toĆ”n hį»c quốc tįŗæ'),
(148798, 116421, 'no_lang_code', 'name', 'Laboratório Normal Produtos Farmacêuticos (Portugal), Normal Laboratory Pharmaceutical Products'),
(148799, 116422, 'en', 'name', 'CY Cergy Paris University'),
(148800, 116422, 'fr', 'name', 'CY Cergy Paris UniversitƩ'),
(148801, 116423, 'de', 'name', 'Deutsches Zentrum für Neurodegenerative Erkrankungen'),
(148802, 116423, 'en', 'name', 'German Center for Neurodegenerative Diseases'),
(148803, 116424, 'en', 'name', 'Centre for Visual Computing'),
(148804, 116424, 'fr', 'name', 'Centre de Vision NumƩrique'),
(148805, 116425, 'en', 'name', 'University of Nebraska–Lincoln'),
(148806, 116425, 'es', 'name', 'Universidad de Nebraska-Lincoln'),
(148807, 116425, 'fr', 'name', 'UniversitƩ du nebraska Ơ lincoln'),
(148808, 116426, 'en', 'name', 'University of California, San Francisco'),
(148809, 116426, 'es', 'name', 'Universidad de California en San Francisco'),
(148810, 116426, 'fr', 'name', 'UniversitƩ de Californie Ơ San Francisco'),
(148811, 116427, 'fr', 'name', 'Laboratoire Paul PainlevƩ'),
(148812, 116428, 'en', 'name', 'University of Porto'),
(148813, 116428, 'pt', 'name', 'Universidade do Porto'),
(148814, 116429, 'es', 'name', 'Secretaría de Educación Jalisco'),
(148815, 116430, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŲ© في Ų±Ų£Ų³ Ų§Ł„Ų®ŁŠŁ…Ų©'),
(148816, 116430, 'en', 'name', 'American University of Ras Al Khaimah'),
(148817, 116431, 'no_lang_code', 'name', 'Galderma (Portugal)'),
(148818, 116432, 'en', 'name', 'Interdisciplinary Center for Psychosocial Research'),
(148819, 116432, 'pt', 'name', 'Centro Interdisciplinar de Investigação Psicossocial'),
(148820, 116433, 'en', 'name', 'Polytechnic Institute of CƔvado and Ave'),
(148821, 116433, 'pt', 'name', 'Instituto PolitƩcnico do CƔvado e do Ave'),
(148822, 116434, 'fr', 'name', 'GRICAD - Grenoble Alpes Recherche-Infrastructure de Calcul intensif et de DonnƩes'),
(148823, 116435, 'pt', 'name', 'Escola de CiĆŖncias Sociais e Humanas'),
(148824, 116436, 'pt', 'name', 'Tech & Art Centro de Tecnologia Restauro e Valorização das Artes'),
(148825, 116437, 'pt', 'name', 'Fundação Museu do Douro'),
(148826, 116438, 'en', 'name', 'Savitribai Phule Pune University'),
(148827, 116438, 'fr', 'name', 'UniversitƩ de pune'),
(148828, 116438, 'hi', 'name', 'ą¤Ŗą„ą¤£ą„‡ ą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤Ŗą„€ą¤ '),
(148829, 116438, 'kn', 'name', 'ಪುಣೆ ą²µą²æą²¶ą³ą²µą²µą²æą²¦ą³ą²Æą²¾ą²²ą²Æ'),
(148830, 116438, 'ta', 'name', 'புனே ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(148831, 116439, 'en', 'name', 'French Research Institute for Exploitation of the Sea'),
(148832, 116439, 'fr', 'name', 'Ifremer, Institut FranƧais de Recherche pour l''Exploitation de la Mer'),
(148833, 116440, 'pt', 'name', 'Instituto Piaget'),
(148834, 116441, 'es', 'name', 'GHENOVA'),
(148835, 116441, 'no_lang_code', 'name', 'GHENOVA (Spain)'),
(148836, 116442, 'en', 'name', 'University of NƮmes'),
(148837, 116442, 'fr', 'name', 'UniversitƩ de NƮmes'),
(148838, 116443, 'en', 'name', 'Spiritan University Nneochi'),
(148839, 116444, 'de', 'name', 'Deutsche Zentren der Gesundheitsforschung'),
(148840, 116444, 'en', 'name', 'German Centers for Health Research'),
(148841, 116445, 'el', 'name', 'Πολεμική Αεροπορία'),
(148842, 116445, 'en', 'name', 'Hellenic Air Force'),
(148843, 116446, 'de', 'name', 'Institut für Arbeitsschutz der Deutschen Gesetzlichen Unfallversicherung'),
(148844, 116446, 'en', 'name', 'Institute for Occupational Safety and Health of the German Social Accident Insurance'),
(148845, 116447, 'pt', 'name', 'Centro de Estudos Complexidade e Diversidade Humana'),
(148846, 116448, 'de', 'name', 'Deutsches Institut für Erwachsenenbildung – Leibniz-Zentrum für Lebenslanges Lernen'),
(148847, 116448, 'en', 'name', 'German Institute for Adult Education – Leibniz Centre for Lifelong Learning'),
(148848, 116449, 'en', 'name', 'Regional Centre on Urban Water Management'),
(148849, 116450, 'fr', 'name', 'Anti-infectieux : supports molƩculaires des rƩsistances et innovations thƩrapeutiques'),
(148850, 116451, 'fr', 'name', 'FƩdƩration de Recherche sur l''Energie Solaire'),
(148851, 116452, 'pt', 'name', 'Fundação Portuguesa das Comunicações'),
(148852, 116453, 'no_lang_code', 'name', 'Phonetike Centro de Lƭnguas e PromoƧƵes Culturais (Portugal), Phonetike Language Centre and Cultural Promotions'),
(148853, 116454, 'en', 'name', 'Metabolic and systemic aspects of oncogenesis for new therapeutic approaches'),
(148854, 116454, 'fr', 'name', 'Aspects métaboliques et systémiques de l''oncogénèse pour de nouvelles approches thérapeutiques'),
(148855, 116455, 'en', 'name', 'Institute of Food Science, Technology and Nutrition'),
(148856, 116455, 'es', 'name', 'Instituto de Ciencia y Tecnología de Alimentos y Nutrición'),
(148857, 116456, 'pt', 'name', 'Unidade de Investigação Nova SBE'),
(148858, 116457, 'en', 'name', 'Nova School of Business and Economics Library'),
(148859, 116458, 'en', 'name', 'Polyclinic for the Rehabilitation of Listening and Speech SUVAG'),
(148860, 116458, 'hr', 'name', 'Poliklinika za rehabilitaciju sluŔanja i govora SUVAG'),
(148861, 116459, 'fr', 'name', 'Laboratory Preuves, Programmes et SystĆØmes'),
(148862, 116460, 'en', 'name', 'Institute of Gifted Child of National Academy of Educational Sciences of Ukraine'),
(148863, 116460, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ обГарованої Гитини ŠŠŠŸŠ України'),
(148864, 116461, 'en', 'name', 'University of California, Los Angeles'),
(148865, 116461, 'es', 'name', 'Universidad de California en Los Ɓngeles'),
(148866, 116461, 'fr', 'name', 'UniversitƩ de Californie Ơ Los Angeles'),
(148867, 116462, 'en', 'name', 'Human Resources and Social Security Department of Guangdong Provice'),
(148868, 116462, 'zh', 'name', 'å¹æäøœēœäŗŗåŠ›čµ„ęŗå’Œē¤¾ä¼šäæéšœåŽ…'),
(148869, 116463, 'ca', 'name', 'Hospital de Tortosa Verge de la Cinta'),
(148870, 116464, 'pt', 'name', 'Grupo de Estudos de Cancro da CabeƧa e do PescoƧo'),
(148871, 116465, 'en', 'name', 'Moldova State University'),
(148872, 116465, 'ro', 'name', 'Universitatea de Stat din Moldova'),
(148873, 116465, 'ru', 'name', 'Š“Š¾ŃŃƒŠ“Š°Ń€ŃŃ‚Š²ŠµŠ½Š½Ń‹Š¹ ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠœŠ¾Š»Š“Š¾Š²Ń‹'),
(148874, 116466, 'en', 'name', 'Research Centre in Biodiversity and Genetic Resources'),
(148875, 116466, 'pt', 'name', 'Centro de Investigação em Biodiversidade e Recursos Genéticos'),
(148876, 116467, 'en', 'name', 'International Centre on Global-Scale Geochemistry'),
(148877, 116467, 'zh', 'name', 'č”åˆå›½ę•™ē§‘ę–‡ē»„ē»‡å…Øēƒå°ŗåŗ¦åœ°ēƒåŒ–å­¦å›½é™…ē ”ē©¶äø­åæƒ'),
(148878, 116468, 'ar', 'name', 'المدرسة Ų§Ł„ŁˆŲ·Ł†ŁŠŲ© Ų§Ł„Ų¹Ł„ŁŠŲ§ للطاقات المتجددة ŁˆŲ§Ł„ŲØŁŠŲ¦Ų© ŁˆŲ§Ł„ŲŖŁ†Ł…ŁŠŲ© المستدامة'),
(148879, 116468, 'en', 'name', 'Higher National School of Renewable Energies, Environment & Sustainable Development'),
(148880, 116469, 'en', 'name', 'University of Chile'),
(148881, 116469, 'es', 'name', 'Universidad de Chile'),
(148882, 116470, 'en', 'name', 'Mongolian National University of Education'),
(148883, 116470, 'mn', 'name', 'Монгол Улсын Боловсролын Š˜Ń… Š”ŃƒŃ€Š³ŃƒŃƒŠ»ŃŒ'),
(148884, 116471, 'en', 'name', 'Institute of Space and Telecommunications Law'),
(148885, 116471, 'es', 'name', 'Instituto de Derecho del Espacio y de las Telecomunicaciones'),
(148886, 116471, 'fr', 'name', 'Institut Droit, Espaces et Technologies, ē©ŗé—“å’Œē”µäæ”ę³•ē ”ē©¶ę‰€'),
(148887, 116472, 'ar', 'name', 'Ų§Ł„ŁˆŁƒŲ§Ł„Ų© Ų§Ł„ŁŲ¶Ų§Ų¦ŁŠŲ© Ų§Ł„Ų¬Ų²Ų§Ų¦Ų±ŁŠŲ©'),
(148888, 116472, 'en', 'name', 'Algerian Space Agency'),
(148889, 116472, 'fr', 'name', 'Agence Spatiale AlgƩrienne'),
(148890, 116473, 'en', 'name', 'University of Maryland, College Park'),
(148891, 116473, 'es', 'name', 'Universidad de Maryland'),
(148892, 116473, 'fr', 'name', 'UniversitƩ du Maryland'),
(148893, 116474, 'en', 'name', 'University of Utah Health Care'),
(148894, 116475, 'pt', 'name', 'Instituto de Investigacao das Pescas e do Mar'),
(148895, 116476, 'en', 'name', 'Uppsala University'),
(148896, 116476, 'fi', 'name', 'Uppsalan yliopisto'),
(148897, 116476, 'sv', 'name', 'Uppsala universitet'),
(148898, 116477, 'pt', 'name', 'Centro de Investigação em Ciências Empresariais'),
(148899, 116478, 'en', 'name', 'United States Air Force Systems Command'),
(148900, 116479, 'en', 'name', 'Murdoch Children''s Research Institute'),
(148901, 116480, 'en', 'name', 'Squad Medicine and Research (SMR)'),
(148902, 116481, 'en', 'name', 'The East European Scientific Studies Center'),
(148903, 116481, 'uk', 'name', 'Центр ŃŃ…Ń–Š“Š½Š¾Ń”Š²Ń€Š¾ŠæŠµŠ¹ŃŃŒŠŗŠøŃ… Š½Š°ŃƒŠŗŠ¾Š²ŠøŃ… ŃŃ‚ŃƒŠ“Ń–Š¹'),
(148904, 116482, 'en', 'name', 'Kasturba Medical College, Mangalore'),
(148905, 116483, 'en', 'name', 'Institute of Aviation Engineering & Technology'),
(148906, 116484, 'en', 'name', 'Saha Institute of Nuclear Physics'),
(148907, 116485, 'en', 'name', 'Cygnet Healthcare Ltd'),
(148908, 116486, 'en', 'name', 'Indian Council of Medical Research'),
(148909, 116487, 'en', 'name', 'Seoul National University Dental Hospital'),
(148910, 116488, 'pt', 'name', 'Centro de Estudos Africanos'),
(148911, 116489, 'pt', 'name', 'Hospital da Mulher SĆ£o Paulo'),
(148912, 116490, 'en', 'name', 'Polytechnic Institute of Porto'),
(148913, 116490, 'pt', 'name', 'Instituto PolitƩcnico do Porto'),
(148914, 116491, 'en', 'name', 'Central Washington University'),
(148915, 116492, 'en', 'name', 'The University of Texas at Dallas'),
(148916, 116492, 'es', 'name', 'Universidad de Texas en Dallas'),
(148917, 116492, 'fr', 'name', 'UniversitƩ du texas Ơ dallas'),
(148918, 116493, 'no_lang_code', 'name', 'Health Products Research and Development (Portugal)'),
(148919, 116494, 'tl', 'name', 'Dalubhasaan ng Lungsod ng Lucena'),
(148920, 116495, 'en', 'name', 'Dartmouth College'),
(148921, 116496, 'en', 'name', 'Southern University of Science and Technology'),
(148922, 116496, 'zh', 'name', 'å—ę–¹ē§‘ęŠ€å¤§å­¦'),
(148923, 116497, 'en', 'name', 'Sensetime, Sensetime (China)'),
(148924, 116497, 'zh', 'name', 'å•†ę±¤é›†å›¢ęœ‰é™å…¬åø'),
(148925, 116498, 'es', 'name', 'Fundación Universitaria San Pablo CEU'),
(148926, 116499, 'pt', 'name', 'Oficina de Transferência de Tecnologia Inovação e Conhecimento'),
(148927, 116500, 'id', 'name', 'Sekolah Tinggi Ilmu Ekonomi IBEK Pangkalpinang'),
(148928, 116501, 'en', 'name', 'Russian Federal Space Agency'),
(148929, 116501, 'ru', 'name', 'Š¤ŠµŠ“ŠµŃ€Š°Š»ŃŒŠ½Š¾Šµ космическое агентство'),
(148930, 116502, 'en', 'name', 'Saratov State Vavilov Agrarian University'),
(148931, 116502, 'ru', 'name', 'Даратовский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(148932, 116503, 'en', 'name', 'Computer Science Laboratory of the Ɖcole Polytechnique'),
(148933, 116503, 'fr', 'name', 'Laboratoire d''Informatique de l''Ɖcole Polytechnique'),
(148934, 116504, 'pt', 'name', 'Gabinete Emprego Empreendedorismo e Ligação às Empresas'),
(148935, 116505, 'en', 'name', 'Saratov State Agrarian University named after N.I .Vavilov'),
(148936, 116505, 'ru', 'name', 'Даратовский Š³Š¾ŃŃƒŠ“арственный аграрный ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚'),
(148937, 116506, 'no_lang_code', 'name', 'Beiersdorf (Germany)'),
(148938, 116507, 'en', 'name', 'Public Works Research Institute'),
(148939, 116507, 'ja', 'name', 'åœŸęœØē ”ē©¶ę‰€'),
(148940, 116508, 'it', 'name', 'Azienda Ospedale - UniversitĆ  Padova'),
(148941, 116509, 'fr', 'name', 'SoLID : SOrbonne study group for Lung Infectious Diseases'),
(148942, 116510, 'en', 'name', 'Politeknik Negeri Indramayu'),
(148943, 116511, 'fr', 'name', 'AC Echo : Analyse CentralisĆ©e Ɖchocardiographique en imagerie cardiovasculaire'),
(148944, 116512, 'en', 'name', 'Avicenna - Batumi Medical University'),
(148945, 116512, 'ka', 'name', 'įƒįƒ•įƒ˜įƒŖįƒ”įƒœįƒ - įƒ‘įƒįƒ—įƒ£įƒ›įƒ˜įƒ” įƒ”įƒįƒ›įƒ”įƒ“įƒ˜įƒŖįƒ˜įƒœįƒ įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒ˜įƒ¢įƒ”įƒ¢įƒ˜'),
(148946, 116513, 'no_lang_code', 'name', 'Centro de Estudos Arnaldo AraĆŗjo'),
(148947, 116514, 'bn', 'name', 'বাংলাদেশ নেভাল ą¦ą¦•ą¦¾ą¦”ą§‡ą¦®ą¦æ'),
(148948, 116514, 'en', 'name', 'Bangladesh Naval Academy'),
(148949, 116515, 'pt', 'name', 'Instituto de Pesquisas Científicas e Tecnológicas do Estado do AmapÔ'),
(148950, 116516, 'en', 'name', 'Federal Center for Technological Education of Minas Gerais'),
(148951, 116516, 'fr', 'name', 'Centre fƩdƩral d''Ʃducation technologique du minas gerais'),
(148952, 116516, 'pt', 'name', 'Centro Federal de Educação Tecnológica de Minas Gerais'),
(148953, 116517, 'ar', 'name', 'وزارة Ų§Ł„ŲØŁŠŲ¦Ų© ŁˆŲ§Ł„ŲŖŲŗŁŠŁ‘Ų± Ų§Ł„Ł…Ł†Ų§Ų®ŁŠ'),
(148954, 116517, 'en', 'name', 'Ministry of Environment and Climate Change'),
(148955, 116518, 'pt', 'name', 'Inspecção-Geral de Finanças'),
(148956, 116519, 'en', 'name', 'Airlangga University'),
(148957, 116519, 'id', 'name', 'Universitas Airlangga'),
(148958, 116520, 'pt', 'name', 'Centro de Investigação do Instituto Português de Oncologia do Porto Francisco Gentil'),
(148959, 116521, 'en', 'name', 'NOVAMath Center for Mathematics and Applications'),
(148960, 116522, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© صفاقس'),
(148961, 116522, 'en', 'name', 'University of Sfax'),
(148962, 116522, 'fr', 'name', 'UniversitƩ de Sfax'),
(148963, 116523, 'en', 'name', 'University of Nebraska at Kearney'),
(148964, 116524, 'en', 'name', 'Cognition Behaviour Technology'),
(148965, 116525, 'ar', 'name', 'ؓركة Ų§Ł„ŁˆŲ§Ų­Ų© للنفط'),
(148966, 116525, 'en', 'name', 'Waha Oil Company'),
(148967, 116526, 'en', 'name', 'EarthScope Consortium'),
(148968, 116527, 'es', 'name', 'Instituto de Cultura JurĆ­dica'),
(148969, 116528, 'en', 'name', 'University of Amsterdam'),
(148970, 116528, 'nl', 'name', 'Universiteit van Amsterdam'),
(148971, 116529, 'en', 'name', 'Centre for Economics at Paris-Saclay'),
(148972, 116529, 'fr', 'name', 'Centre d''Economie de l''ENS Paris-Saclay'),
(148973, 116530, 'pt', 'name', 'Faculdades Nova EsperanƧa'),
(148974, 116531, 'en', 'name', 'Islamic Azad University, Aras Branch'),
(148975, 116531, 'fa', 'name', 'دانؓگاه Ų¢Ų²Ų§ŲÆ Ų§Ų³Ł„Ų§Ł…ŪŒ Ų§Ų±Ų³'),
(148976, 116532, 'de', 'name', 'NABU|naturgucker geG, NABU|naturgucker gemeinnützige eG'),
(148977, 116533, 'no_lang_code', 'name', 'Galapagos (Belgium)'),
(148978, 116534, 'en', 'name', 'Faculty of Electrical Engineering and Computing in Zagreb'),
(148979, 116534, 'hr', 'name', 'Fakultet elektrotehnike i računarstva'),
(148980, 116535, 'en', 'name', 'Polytechnical Institute of Lisbon'),
(148981, 116535, 'pt', 'name', 'Instituto PolitƩcnico de Lisboa, Instituto Superior de Engenharia de Lisboa'),
(148982, 116536, 'en', 'name', 'Inria research centre Lille - Nord Europe'),
(148983, 116536, 'fr', 'name', 'Centre de recherche Inria Lille - Nord Europe'),
(148984, 116537, 'pt', 'name', 'Instituto de Inovação Tecnológica dos Açores'),
(148985, 116538, 'no_lang_code', 'name', 'Gilead Sciences (Portugal)'),
(148986, 116539, 'pt', 'name', 'Instituto PortuguĆŖs de Psicologia e Outras CiĆŖncias'),
(148987, 116540, 'en', 'name', 'NOVA SBE Venture Lab'),
(148988, 116541, 'no_lang_code', 'name', 'Piscicultura do Vale da Lama (Portugal)'),
(148989, 116542, 'de', 'name', 'UniversitƤt Bremen'),
(148990, 116542, 'en', 'name', 'University of Bremen'),
(148991, 116543, 'fr', 'name', 'Laboratoire Jean Kuntzmann'),
(148992, 116544, 'en', 'name', 'Guangdong Provincial Key Laboratory of Geophysical High-resolution Imaging Technology'),
(148993, 116544, 'zh', 'name', 'å¹æäøœēœåœ°ēƒē‰©ē†é«˜ē²¾åŗ¦ęˆåƒęŠ€ęœÆé‡ē‚¹å®žéŖŒå®¤'),
(148994, 116545, 'fr', 'name', 'CollĆØge de France'),
(148995, 116546, 'pt', 'name', 'Fundação da Casa de Mateus'),
(148996, 116547, 'de', 'name', 'Internationale Joseph Haydn Privatstiftung Eisenstadt'),
(148997, 116548, 'en', 'name', 'Tenement Museum'),
(148998, 116549, 'no_lang_code', 'name', 'Vontobel (Switzerland)'),
(148999, 116550, 'en', 'name', 'Bharathiar University'),
(149000, 116550, 'hi', 'name', 'भरतिआर ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤§ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(149001, 116550, 'ml', 'name', 'ą“­ą“¾ą“°ą“¤ą“æą“Æą“¾ąµ¼ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(149002, 116550, 'ta', 'name', 'ą®Ŗą®¾ą®°ą®¤ą®æą®Æą®¾ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(149003, 116551, 'en', 'name', 'Indian Council of Agricultural Research'),
(149004, 116551, 'hi', 'name', 'ą¤­ą¤¾ą¤°ą¤¤ą„€ą¤Æ ą¤•ą„ƒą¤·ą¤æ ą¤…ą¤Øą„ą¤øą¤‚ą¤§ą¤¾ą¤Ø परिषद'),
(149005, 116551, 'ta', 'name', 'ą®‡ą®ØąÆą®¤ą®æą®Æ ą®µąÆ‡ą®³ą®¾ą®£ąÆ ą®†ą®ÆąÆą®µąÆą®•ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(149006, 116552, 'en', 'name', 'Radiation Protection, Safety, Dismantling engineering'),
(149007, 116552, 'fr', 'name', 'ingénierie Radioprotection Sûreté Démantèlement'),
(149008, 116553, 'en', 'name', 'Korea Astronomy and Space Science Institute'),
(149009, 116553, 'ko', 'name', 'ķ•œźµ­ģ²œė¬øģ—°źµ¬ģ›'),
(149010, 116554, 'en', 'name', 'Centre for Advancing Health Outcomes'),
(149011, 116555, 'pt', 'name', 'Procuradoria-Geral da Fazenda Nacional'),
(149012, 116556, 'en', 'name', 'Learning Transitions'),
(149013, 116557, 'en', 'name', 'Public Health Service of Amsterdam'),
(149014, 116557, 'nl', 'name', 'GGD Amsterdam, Geneeskundige en Gezondheidsdienst Amsterdam'),
(149015, 116558, 'el', 'name', 'Ī Ī±Ī½ĪµĻ€Ī¹ĻƒĻ„Ī®Ī¼Ī¹Īæ Ī›ĪµĪ¼ĪµĻƒĪæĻ'),
(149016, 116558, 'en', 'name', 'University of Limassol'),
(149017, 116558, 'ru', 'name', 'Университет Лимассола'),
(149018, 116559, 'id', 'name', 'Akademi Komunitas Industri Tekstil dan Produk Tekstil Surakarta'),
(149019, 116560, 'en', 'name', 'KwaZulu-Natal Department of Community Safety & Liaison'),
(149020, 116561, 'fr', 'name', 'Œuvre Nationale, Œuvre Nationale de Secours Grande-Duchesse Charlotte'),
(149021, 116562, 'en', 'name', 'Ministry of Health'),
(149022, 116562, 'es', 'name', 'Ministerio de Salud del PerĆŗ'),
(149023, 116563, 'en', 'name', 'Maharashtra University of Health Sciences'),
(149024, 116564, 'en', 'name', 'Embassy of the United States Lisbon'),
(149025, 116565, 'en', 'name', 'University of California, Irvine'),
(149026, 116565, 'es', 'name', 'Universidad de California en Irvine'),
(149027, 116565, 'fr', 'name', 'UniversitƩ de Californie Ơ Irvine'),
(149028, 116566, 'es', 'name', 'Instituto Tecnológico Superior ARGOS'),
(149029, 116567, 'en', 'name', 'Health and Technology Research Center'),
(149030, 116567, 'pt', 'name', 'Centro de Investigação em Saúde e Tecnologia'),
(149031, 116568, 'en', 'name', 'Arunachal Pradesh University');
INSERT INTO `ror_settings` VALUES
(149032, 116569, 'en', 'name', 'Mata Gujri University'),
(149033, 116570, 'en', 'name', 'UNESCO, United Nations Educational, Scientific and Cultural Organization'),
(149034, 116570, 'fr', 'name', 'Organisation des Nations Unies pour l''Ɖducation, la Science et la Culture'),
(149035, 116571, 'es', 'name', 'Instituto de Antropología de Córdoba'),
(149036, 116572, 'en', 'name', 'Fernando Pessoa University'),
(149037, 116572, 'pt', 'name', 'Universidade Fernando Pessoa'),
(149038, 116573, 'en', 'name', 'Seoul National University'),
(149039, 116573, 'ko', 'name', 'ģ„œģšøėŒ€ķ•™źµ'),
(149040, 116574, 'es', 'name', 'Gordon Academic College of Education, Instituto de Educación Superior Gordon College'),
(149041, 116574, 'he', 'name', '×”××§×“×ž×™×Ŗ ×’×•×Ø×“×•×Ÿ'),
(149042, 116575, 'en', 'name', 'Office of Carbon Management'),
(149043, 116576, 'es', 'name', 'El Colegio de la Frontera Norte'),
(149044, 116577, 'en', 'name', 'Takeda'),
(149045, 116577, 'ja', 'name', '武田薬品巄愭'),
(149046, 116577, 'no_lang_code', 'name', 'Takeda (Japan)'),
(149047, 116578, 'pt', 'name', 'Centro de Investigação em Turismo Sustentabilidade e Bem-Estar'),
(149048, 116579, 'pt', 'name', 'Hospital São José de Fafe'),
(149049, 116580, 'es', 'name', 'Instituto Superior Tecnológico Consulting Group Ecuador-Esculapio'),
(149050, 116581, 'no_lang_code', 'name', 'Soginfer Investimentos ImobiliƔrios (Portugal), Soginfer Real Estate Investments'),
(149051, 116582, 'no_lang_code', 'name', 'Grupo Pedago (Portugal), Pedago Group'),
(149052, 116583, 'en', 'name', 'Southeast Medi-Chem Institute, Southeast Medi-Chem Institute (South Korea)'),
(149053, 116583, 'kr', 'name', '(주)ė™ė‚Øģ˜ķ™”ķ•™ģ—°źµ¬ģ›ģ€'),
(149054, 116584, 'de', 'name', 'Sigmund Freud PrivatuniversitƤt Wien'),
(149055, 116584, 'en', 'name', 'Sigmund Freud Private University Vienna'),
(149056, 116585, 'en', 'name', 'International House Viseu'),
(149057, 116586, 'fr', 'name', 'Laboratoire Conception de Produits et Innovation'),
(149058, 116587, 'en', 'name', 'Social Sciences and Humanities Research Council'),
(149059, 116587, 'fr', 'name', 'Conseil de Recherches en Sciences Humaines'),
(149060, 116588, 'fr', 'name', 'ƉcoCirta'),
(149061, 116589, 'en', 'name', 'Dracaena Draco Research Farm Melbourne'),
(149062, 116590, 'bn', 'name', 'বাংলাদেশ পরমাণু ą¦¶ą¦•ą§ą¦¤ą¦æ ą¦Øą¦æą§Ÿą¦Øą§ą¦¤ą§ą¦°ą¦£ ą¦•ą¦°ą§ą¦¤ą§ƒą¦Ŗą¦•ą§ą¦·'),
(149063, 116590, 'en', 'name', 'Bangladesh Atomic Energy Regulatory Authority'),
(149064, 116591, 'no_lang_code', 'name', 'Serum Institute of India (India)'),
(149065, 116592, 'de', 'name', 'UniversitƤt Florenz'),
(149066, 116592, 'en', 'name', 'University of Florence'),
(149067, 116592, 'fr', 'name', 'UniversitƩ de Florence'),
(149068, 116592, 'it', 'name', 'UniversitĆ  degli Studi di Firenze'),
(149069, 116593, 'pt', 'name', 'Centro de Ecologia Aplicada Prof Baeta Neves'),
(149070, 116594, 'en', 'name', 'Dutch Research Council'),
(149071, 116594, 'nl', 'name', 'Nederlandse Organisatie voor Wetenschappelijk Onderzoek'),
(149072, 116595, 'fr', 'name', 'Centre d''Ʃtudes de l''emploi'),
(149073, 116596, 'de', 'name', 'Bundesministerium für Ernährung und Landwirtschaft'),
(149074, 116596, 'en', 'name', 'Federal Ministry of Food and Agriculture'),
(149075, 116597, 'no_lang_code', 'name', 'Infohealth Institute of Training and Innovation in Health, Infosaúde Instituto de Formação e Inovação em Saúde Unipessoal (Portugal)'),
(149076, 116598, 'en', 'name', 'Clinic for Special Children'),
(149077, 116599, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© المنارة'),
(149078, 116599, 'en', 'name', 'University of Manara'),
(149079, 116600, 'en', 'name', 'Mymensingh Engineering College'),
(149080, 116601, 'en', 'name', 'Regional Centre on Capacity Development and Research in Water Harvesting'),
(149081, 116602, 'no_lang_code', 'name', 'Pro2B Consulting and Project Management, Pro2B Consultoria e Gestão de Projetos (Portugal)'),
(149082, 116603, 'en', 'name', 'Mount Sinai Health System'),
(149083, 116604, 'en', 'name', 'Vienna Biocenter'),
(149084, 116605, 'fr', 'name', 'Laboratoire d''Activation MolƩculaire'),
(149085, 116606, 'en', 'name', 'Central Forensic Laboratory of the Police'),
(149086, 116606, 'pl', 'name', 'Centralne Laboratorium Kryminalistyczne Policji'),
(149087, 116607, 'en', 'name', 'Guru Nanak Institute of Management Studies'),
(149088, 116608, 'en', 'name', 'Manipur International University'),
(149089, 116609, 'en', 'name', 'Joint Institute for Nuclear Astrophysics'),
(149090, 116610, 'en', 'name', 'Gates Ventures'),
(149091, 116611, 'en', 'name', 'National Radio Astronomy Observatory'),
(149092, 116612, 'da', 'name', 'Aalborg Universitet'),
(149093, 116612, 'en', 'name', 'Aalborg University'),
(149094, 116613, 'en', 'name', 'London Health Sciences Centre Research Institute'),
(149095, 116614, 'no_lang_code', 'name', 'CSC - IT Center for Science (Finland)'),
(149096, 116615, 'es', 'name', 'Centro de Estudios de Innovación Institucional'),
(149097, 116616, 'en', 'name', 'E&Q Engineering, E&Q Engineering Solutions & Innovation S.L.'),
(149098, 116616, 'no_lang_code', 'name', 'E&Q Engineering (Spain)'),
(149099, 116617, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© ŲŖŁ„ أبيب'),
(149100, 116617, 'en', 'name', 'Tel Aviv University'),
(149101, 116618, 'ja', 'name', 'National Instruments (Japan)'),
(149102, 116619, 'bn', 'name', 'ঢাকা ą¦šą§‡ą¦®ą§ą¦¬ą¦¾ą¦° অব ą¦•ą¦®ą¦¾ą¦°ą§ą¦ø ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦‡ą¦Øą§ą¦”ą¦¾ą¦øą§ą¦Ÿą§ą¦°ą¦æ'),
(149103, 116619, 'en', 'name', 'Dhaka Chamber of Commerce & Industry'),
(149104, 116620, 'fr', 'name', 'MinistĆØre de l''Agriculture, des PĆŖcheries et de l''Alimentation'),
(149105, 116621, 'en', 'name', 'Inova Health System'),
(149106, 116622, 'fr', 'name', 'Laboratoire de l''Informatique du ParallƩlisme'),
(149107, 116623, 'es', 'name', 'Universidad Metropolitana para la Educación y el Trabajo'),
(149108, 116624, 'en', 'name', 'Phillip Island Nature Parks'),
(149109, 116625, 'en', 'name', 'National Academy of Culture and Arts Management'),
(149110, 116626, 'pt', 'name', 'Galeria ze dos Bois'),
(149111, 116627, 'en', 'name', 'Bezos Earth Fund'),
(149112, 116628, 'fr', 'name', 'HTAM2 : Hypertension Maligne Multimodale'),
(149113, 116629, 'fr', 'name', 'Cultures et Environnements. PrĆ©histoire, AntiquitĆ©, Moyen Ƃge'),
(149114, 116630, 'pt', 'name', 'Hospital da Luz Coimbra'),
(149115, 116631, 'no_lang_code', 'name', 'Partnia (Portugal)'),
(149116, 116632, 'no_lang_code', 'name', 'ConocoPhillips (Qatar)'),
(149117, 116633, 'fr', 'name', 'Nova : inNOvation in NeuroVAscular diseases'),
(149118, 116634, 'fr', 'name', 'MatƩriaux et santƩ'),
(149119, 116635, 'en', 'name', 'Pennsylvania State University'),
(149120, 116635, 'es', 'name', 'Universidad Estatal de Pensilvania'),
(149121, 116635, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Pennsylvanie'),
(149122, 116636, 'en', 'name', 'Regional Post-Graduate Training School on Integrated Management of Tropical Forests and Lands'),
(149123, 116636, 'fr', 'name', 'Ecole RĆ©gionale Postuniversitaire d’AmĆ©nagement et de Gestion intĆ©grĆ©s des ForĆŖts et Territoires tropicaux'),
(149124, 116637, 'en', 'name', 'New Horizon College of Engineering'),
(149125, 116638, 'fr', 'name', 'Union Nationale Interprofessionnelle des plantes riches en ProtƩines'),
(149126, 116639, 'en', 'name', 'Ministry of Health'),
(149127, 116639, 'es', 'name', 'Ministerio de Salud'),
(149128, 116640, 'no_lang_code', 'name', 'Azevedos Group, Grupo Azevedos (Portugal)'),
(149129, 116641, 'el', 'name', 'Ī“ĪµĪ½Ī¹ĪŗĻŒ ĪĪæĻƒĪæĪŗĪæĪ¼ĪµĪÆĪæ Αττικής ĪšĪ‘Ī¤'),
(149130, 116641, 'en', 'name', 'KAT General Hospital of Attica'),
(149131, 116642, 'fr', 'name', 'Laboratoire d''Etudes Sociologiques sur la Construction et la Reproduction Sociales'),
(149132, 116643, 'de', 'name', 'Bundesministerium für Forschung, Technologie und Raumfahrt'),
(149133, 116643, 'en', 'name', 'Federal Ministry of Research, Technology and Space'),
(149134, 116644, 'ar', 'name', 'الجامعة Ų§Ł„Ų£Ł…ŁŠŲ±ŁƒŁŠŲ© في بيروت'),
(149135, 116644, 'en', 'name', 'American University of Beirut'),
(149136, 116644, 'fr', 'name', 'UniversitƩ amƩricaine de beyrouth'),
(149137, 116644, 'hy', 'name', 'Ō²Õ„ÕµÖ€ÕøÖ‚Õ©Õ« Õ”Õ“Õ„Ö€Õ«ÕÆÕµÕ”Õ¶ Õ°Õ”Õ“Õ”Õ¬Õ½Õ”Ö€Õ”Õ¶'),
(149138, 116645, 'en', 'name', 'OsloMet – Oslo Metropolitan University'),
(149139, 116645, 'no', 'name', 'OsloMet – storbyuniversitetet'),
(149140, 116646, 'fr', 'name', 'Physiologie et pathologie moléculaires des rétrovirus endogènes et infectieux'),
(149141, 116647, 'da', 'name', 'Sygehus SĆønderjylland'),
(149142, 116647, 'de', 'name', 'Krankenhaus SĆønderjylland'),
(149143, 116647, 'en', 'name', 'University Hospital of Southern Denmark, Hospital Sonderjylland'),
(149144, 116648, 'en', 'name', 'University of Agriculture and Environmental Sciences, Umuagwo'),
(149145, 116649, 'es', 'name', 'Instituto de Investigación de Vivienda y HÔbitat'),
(149146, 116650, 'de', 'name', 'Technische UniversitƤt Clausthal'),
(149147, 116650, 'en', 'name', 'Clausthal University of Technology'),
(149148, 116651, 'de', 'name', 'Deutsche Zentrum für Diabetesforschung'),
(149149, 116651, 'en', 'name', 'German Center for Diabetes Research'),
(149150, 116652, 'en', 'name', 'HemoNED - Dutch Hemophilia Registry'),
(149151, 116653, 'en', 'name', 'University of KwaZulu-Natal'),
(149152, 116654, 'no_lang_code', 'name', 'Global Health Platform (Portugal), Global Health Platform, S.A.'),
(149153, 116655, 'fr', 'name', 'Laboratoire d''Informatique de l''URCA'),
(149154, 116656, 'en', 'name', 'International House Coimbra - Olivais | Santa Clara'),
(149155, 116657, 'en', 'name', 'Institute of Geophysics Polish Academy of Sciences'),
(149156, 116657, 'pl', 'name', 'Instytut Geofizyki PAN, Instytut Geofizyki Polskiej Akademii Nauk'),
(149157, 116658, 'en', 'name', 'Ministry of Health'),
(149158, 116659, 'en', 'name', 'Solar Data Analysis Center'),
(149159, 116660, 'fr', 'name', 'Institut Ɖlie Cartan de Lorraine'),
(149160, 116661, 'en', 'name', 'International Centre for Research of Physics, International Centre of Physics'),
(149161, 116662, 'en', 'name', 'University of Victoria'),
(149162, 116662, 'fr', 'name', 'UniversitƩ de victoria'),
(149163, 116663, 'en', 'name', 'South Colombian University'),
(149164, 116663, 'es', 'name', 'Universidad Surcolombiana'),
(149165, 116664, 'pt', 'name', 'Infraestrutura Nacional de Computação Distribuída / Centro Nacional de Computação Avançada.'),
(149166, 116665, 'fr', 'name', 'NMS Berne'),
(149167, 116666, 'de', 'name', 'PH NMS Bern, PƤdagogische Hochschulinstitut NMS'),
(149168, 116666, 'en', 'name', 'University of Teacher Education NMS Bern'),
(149169, 116667, 'es', 'name', 'Fundación Biosfera'),
(149170, 116668, 'pt', 'name', 'Centro de Polƭmeros BiomƩdicos'),
(149171, 116669, 'no_lang_code', 'name', 'Livraria Minho Ferreira e Salgado (Portugal), Minho Bookshop'),
(149172, 116670, 'en', 'name', 'Institute Curie'),
(149173, 116670, 'fr', 'name', 'Institut Curie'),
(149174, 116671, 'en', 'name', 'Swisssem'),
(149175, 116672, 'fr', 'name', 'Laboratoire de GƩnie des ProcƩdƩs et MatƩriaux'),
(149176, 116673, 'pt', 'name', 'Inspeção-Geral da Educação e Ciência'),
(149177, 116674, 'fr', 'name', 'Laboratoire MƩdiations'),
(149178, 116675, 'no_lang_code', 'name', 'Qualityplant Investigação e Produção em Biotecnologia Vegetal (Portugal), Qualityplant Research and Production in Plant Biotechnology Sole Proprietorship'),
(149179, 116676, 'no_lang_code', 'name', 'Hub de Negócios de Impacto Português, Impact Hub Lisbon (Portugal)'),
(149180, 116677, 'pt', 'name', 'Instituto do Cinema e do Audiovisual'),
(149181, 116678, 'en', 'name', 'European Severe Storms Laboratory'),
(149182, 116679, 'pt', 'name', 'Fundação Eugénio de Almeida'),
(149183, 116680, 'id', 'name', 'Politeknik Kota Malang'),
(149184, 116681, 'en', 'name', 'Serra Henriques Foundation'),
(149185, 116681, 'pt', 'name', 'Fundação Serra Henriques'),
(149186, 116682, 'en', 'name', 'Ethiopian Defence University'),
(149187, 116683, 'en', 'name', 'IPN Incubator'),
(149188, 116683, 'pt', 'name', 'Incubadora Associação para o Desenvolvimento de Actividades de Incubação de Ideias e Empresas'),
(149189, 116684, 'en', 'name', 'Ajay Kumar Garg Engineering College'),
(149190, 116685, 'en', 'name', 'International Research and Training Centre on Urban Drainage'),
(149191, 116686, 'cs', 'name', 'Univerzita Jana Evangelisty Purkyně v ƚstƭ nad Labem'),
(149192, 116686, 'en', 'name', 'Jan Evangelista Purkyně University in ƚstƭ nad Labem'),
(149193, 116687, 'en', 'name', 'Teerthanker Mahaveer University'),
(149194, 116687, 'hi', 'name', 'ą¤¤ą„€ą¤°ą„ą¤„ą¤‚ą¤•ą¤° ą¤®ą¤¹ą¤¾ą¤µą„€ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(149195, 116688, 'en', 'name', 'Philippine Nurses Association of America, Philippine Nurses Association of America, Inc.'),
(149196, 116689, 'fr', 'name', 'SantƩ de l''Homme'),
(149197, 116690, 'en', 'name', 'B.V. Raju College'),
(149198, 116691, 'en', 'name', 'United States Army Medical Command'),
(149199, 116692, 'no_lang_code', 'name', 'Zimmer (Switzerland)'),
(149200, 116693, 'en', 'name', 'National Institute for the Empowerment of Persons with Intellectual Disabilities'),
(149201, 116693, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą„€ą¤Æ ą¤¬ą„Œą¤¦ą„ą¤§ą¤æą¤• ą¤¦ą¤æą¤µą„ą¤Æą¤¾ą¤‚ą¤—ą¤œą¤Ø ą¤øą¤¶ą¤•ą„ą¤¤ą¤æą¤•ą¤°ą¤£ ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(149202, 116694, 'en', 'name', 'Asia-Pacific Centre for Ecohydrology'),
(149203, 116695, 'en', 'name', 'United States Fleet Forces Command'),
(149204, 116696, 'en', 'name', 'Netherlands Vehicle Authority'),
(149205, 116696, 'nl', 'name', 'Dienst Wegverkeer'),
(149206, 116697, 'fr', 'name', 'Laboratoire Reproduction et DƩveloppement des Plantes'),
(149207, 116698, 'en', 'name', 'Marcus Foundation'),
(149208, 116699, 'en', 'name', 'Research Institute for Road and Street'),
(149209, 116699, 'ja', 'name', 'äø€čˆ¬č²”å›£ę³•äŗŗę—„ęœ¬ćæć”ē ”ē©¶ę‰€'),
(149210, 116700, 'en', 'name', 'Institut of Research in Solar Energy and New Energies'),
(149211, 116700, 'fr', 'name', 'Institut de Recherche en Energie Solaire et Energies Nouvelles'),
(149212, 116701, 'fr', 'name', 'Laboratoire Alexander Grothendieck'),
(149213, 116702, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ł‚Ų³Ł†ŲøŁŠŁ†Ų© 3'),
(149214, 116702, 'en', 'name', 'University of Constantine 3'),
(149215, 116702, 'fr', 'name', 'UniversitƩ de Constantine 3'),
(149216, 116703, 'ca', 'name', 'Institut CatalĆ  de la Salut'),
(149217, 116704, 'en', 'name', 'Hematopoietic stem cells and the development of myeloid malignancies'),
(149218, 116704, 'fr', 'name', 'Cellules souches hématopoïétiques et développement des hémopathies myéloïdes'),
(149219, 116705, 'en', 'name', 'British Geriatrics Society'),
(149220, 116706, 'pt', 'name', 'Fundação Grünenthal'),
(149221, 116707, 'en', 'name', 'Academic Center for Dentistry Amsterdam'),
(149222, 116707, 'nl', 'name', 'Academisch Centrum Tandheelkunde Amsterdam'),
(149223, 116708, 'en', 'name', 'Babasaheb Bhimrao Ambedkar University'),
(149224, 116708, 'hi', 'name', 'ą¤¬ą¤¾ą¤¬ą¤¾ą¤øą¤¾ą¤¹ą„‡ą¤¬ ą¤­ą„€ą¤®ą¤°ą¤¾ą¤µ ą¤…ą¤‚ą¤¬ą„‡ą¤”ą¤•ą¤° ą¤µą¤æą¤¶ą„ą¤µą¤µą¤æą¤¦ą„ą¤Æą¤¾ą¤²ą¤Æ'),
(149225, 116708, 'ta', 'name', 'ą®…ą®®ąÆą®ŖąÆ‡ą®¤ąÆą®•ą®°ąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(149226, 116709, 'pt', 'name', 'Centro Investigação Vasco da Gama'),
(149227, 116710, 'en', 'name', 'Heliophysics Data and Modeling Consortium'),
(149228, 116711, 'es', 'name', 'Universidad CuauhtƩmoc San Luis Potosƭ'),
(149229, 116712, 'en', 'name', 'Instituto Superior Miguel Torga'),
(149230, 116713, 'fr', 'name', 'Laboratoire Jacques-Louis Lions'),
(149231, 116714, 'en', 'name', 'National Institute of Physical Education of Catalonia'),
(149232, 116714, 'es', 'name', 'Institut Nacional d''Educació Física de Catalunya'),
(149233, 116715, 'en', 'name', 'Karshi State Technical University'),
(149234, 116716, 'en', 'name', 'Information Society Research Laboratory'),
(149235, 116717, 'en', 'name', 'Mines Paris, PSL University'),
(149236, 116717, 'fr', 'name', 'Ɖcole Nationale SupĆ©rieure des Mines de Paris'),
(149237, 116718, 'no_lang_code', 'name', 'Grupo Urbanos (Portugal), Urbanos Group'),
(149238, 116719, 'en', 'name', 'University of Nusa Cendana'),
(149239, 116719, 'id', 'name', 'Universitas Nusa Cendana'),
(149240, 116720, 'en', 'name', 'M.M. Gryshko National Botanical Garden of National Academy of Sciences of Ukraine'),
(149241, 116720, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½ŠøŠ¹ ботанічний саГ імені М. М. Š“Ń€ŠøŃˆŠŗŠ° ŠŠŠ України'),
(149242, 116721, 'en', 'name', 'University of Nebraska at Omaha'),
(149243, 116721, 'fr', 'name', 'UniversitƩ du nebraska Ơ omaha'),
(149244, 116722, 'en', 'name', 'University of Angers'),
(149245, 116722, 'fr', 'name', 'UniversitƩ d''Angers'),
(149246, 116723, 'en', 'name', 'Mechanics, Surfaces and Materials Processing'),
(149247, 116723, 'fr', 'name', 'Laboratoire de MƩcanique et ProcƩdƩs de Fabrication'),
(149248, 116724, 'de', 'name', 'UniversitƤt Venedig'),
(149249, 116724, 'en', 'name', 'Ca'' Foscari University of Venice'),
(149250, 116724, 'fr', 'name', 'UniversitƩ ca'' foscari de venise'),
(149251, 116724, 'it', 'name', 'UniversitĆ  Ca'' Foscari Venezia'),
(149252, 116724, 'sl', 'name', 'Univerza v Benetkah'),
(149253, 116725, 'no', 'name', 'Finnmarkssykehuset'),
(149254, 116726, 'en', 'name', 'University of Johannesburg'),
(149255, 116727, 'en', 'name', 'University of Coimbra'),
(149256, 116727, 'pt', 'name', 'Universidade de Coimbra'),
(149257, 116728, 'en', 'name', 'National Research Council'),
(149258, 116728, 'fr', 'name', 'Conseil National de la Recherche'),
(149259, 116728, 'it', 'name', 'Consiglio Nazionale delle Ricerche'),
(149260, 116729, 'de', 'name', 'UniversitƤt Kassel'),
(149261, 116729, 'en', 'name', 'University of Kassel'),
(149262, 116730, 'en', 'name', 'University Corporation for Atmospheric Research'),
(149263, 116731, 'en', 'name', 'Raharja University'),
(149264, 116731, 'id', 'name', 'Universitas Raharja'),
(149265, 116732, 'ro', 'name', 'Institutul Clinic de Urologie și Transplant Renal Cluj'),
(149266, 116733, 'en', 'name', 'Windesheim University of Applied Sciences'),
(149267, 116733, 'nl', 'name', 'Windesheim'),
(149268, 116734, 'no_lang_code', 'name', 'Ludomedia (Portugal)'),
(149269, 116735, 'en', 'name', 'Joint Special Operations University'),
(149270, 116736, 'en', 'name', 'Chennai Mathematical Institute'),
(149271, 116736, 'ta', 'name', 'ą®šąÆ†ą®©ąÆą®©ąÆˆ ą®•ą®£ą®æą®¤ą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(149272, 116737, 'hr', 'name', 'Evanđeosko teoloÅ”ko veleučiliÅ”te'),
(149273, 116738, 'en', 'name', 'Centre of Excellence in Biodiversity and Natural Resources Management'),
(149274, 116739, 'en', 'name', 'Institute of Mathematical Sciences'),
(149275, 116739, 'hi', 'name', 'गणित ą¤µą¤æą¤œą„ą¤žą¤¾ą¤Ø ą¤øą¤‚ą¤øą„ą¤„ą¤¾ą¤Ø'),
(149276, 116739, 'ne', 'name', 'ą¤‡ą¤‚ą¤øą„ą¤Ÿą„€ą¤Ÿą„ą¤Æą„‚ą¤Ÿ ऑफ़ ą¤®ą„‡ą¤„ą„‡ą¤®ą„‡ą¤Ÿą¤æą¤•ą¤² ą¤øą¤¾ą¤‡ą¤‚ą¤øą„‡ą¤ø'),
(149277, 116739, 'ta', 'name', 'கணித ą®…ą®±ą®æą®µą®æą®Æą®²ąÆ ą®•ą®“ą®•ą®®ąÆ'),
(149278, 116740, 'ar', 'name', 'المدرسة Ų§Ł„Ų¹Ł„ŁŠŲ§ للاعلام Ų§Ł„Ų§Ł„ŁŠ - سيدي بلعباس'),
(149279, 116740, 'en', 'name', 'Higher School of Computer Science 08 May 1945 - Sidi Bel Abbes'),
(149280, 116740, 'fr', 'name', 'Ecole Superieure en Informatique 08 May 1945 - Sidi Bel AbbĆØs'),
(149281, 116741, 'pt', 'name', 'Centro Hospitalar Conde de Ferreira'),
(149282, 116742, 'cs', 'name', 'CESNET, zÔjmové sdružení prÔvnických osob'),
(149283, 116743, 'it', 'name', 'Consorzio di Ricerca Gian Pietro Ballatore'),
(149284, 116744, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„Ł‚ŁˆŁ…ŁŠ Ł„Ł„ŲØŲ­ŁˆŲ« Ų§Ł„ŲŖŲ±ŲØŁˆŁŠŲ© ŁˆŲ§Ł„ŲŖŁ†Ł…ŁŠŲ©'),
(149285, 116744, 'en', 'name', 'National Center for Educational Research and Development'),
(149286, 116745, 'fr', 'name', 'Institut National des Sciences AppliquƩes de Lyon'),
(149287, 116746, 'en', 'name', 'People''s Government of Guangdong Province'),
(149288, 116747, 'en', 'name', 'Guimaras State University'),
(149289, 116747, 'tl', 'name', 'Kolehiyong Estatal ng Guimaras'),
(149290, 116748, 'en', 'name', '50Hertz Transmission GmbH, 50Hertz Transmission GmbH (Germany)'),
(149291, 116749, 'id', 'name', 'Politeknik Bumi Akpelni'),
(149292, 116750, 'en', 'name', 'Allergy and Asthma Federation'),
(149293, 116750, 'fi', 'name', 'Allergia- ja Astmaliitto'),
(149294, 116751, 'en', 'name', 'Independent Electricity System Operator'),
(149295, 116752, 'es', 'name', 'Instituto Superior Tecnológico Edupraxis'),
(149296, 116753, 'en', 'name', 'ARC Centre of Excellence in Advanced Molecular Imaging'),
(149297, 116754, 'en', 'name', 'University of Montpellier'),
(149298, 116754, 'fr', 'name', 'UniversitƩ de Montpellier'),
(149299, 116755, 'en', 'name', 'Case Western Reserve University'),
(149300, 116756, 'en', 'name', 'Kharkiv State Academy of Design and Arts'),
(149301, 116756, 'uk', 'name', 'Š„Š°Ń€ŠŗŃ–Š²ŃŃŒŠŗŠ° Гержавна Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń Гизайну і мистецтв'),
(149302, 116757, 'no_lang_code', 'name', 'Relato LouvƔvel (Portugal)'),
(149303, 116758, 'en', 'name', 'University of Caen Normandy'),
(149304, 116758, 'fr', 'name', 'UniversitƩ de Caen Normandie'),
(149305, 116759, 'no_lang_code', 'name', 'The Super Coder Code Academy (Portugal)'),
(149306, 116760, 'en', 'name', 'ADJURIS – International Academic Publisher'),
(149307, 116761, 'da', 'name', 'VIVE - Det Nationale Forsknings- og Analysecenter for VelfƦrd'),
(149308, 116761, 'en', 'name', 'VIVE - The Danish Center for Social Science Research'),
(149309, 116762, 'en', 'name', 'Ministry of Labor'),
(149310, 116762, 'zh', 'name', 'å‹žå‹•éƒØ'),
(149311, 116763, 'es', 'name', 'Centro de Estudios del Habitar Popular'),
(149312, 116764, 'en', 'name', 'Center for Integrated and Multidisciplinary Water Resources Management'),
(149313, 116765, 'en', 'name', 'Oriental University'),
(149314, 116765, 'uz', 'name', 'Oriental Universiteti'),
(149315, 116766, 'en', 'name', 'Foundation for Education and Social Dialogue ā€œPro Civisā€'),
(149316, 116766, 'pl', 'name', 'Fundacja Edukacji i Dialogu Społecznego PRO CIVIS'),
(149317, 116767, 'en', 'name', 'School of Management Sciences, Varanasi'),
(149318, 116768, 'fr', 'name', 'Institut Biomédical du Val de Bièvre'),
(149319, 116769, 'en', 'name', 'University of Africa Toru-Orua'),
(149320, 116770, 'fr', 'name', 'Centre de Recherche sur l’Entreprise, les Organisations et le Patrimoine'),
(149321, 116771, 'en', 'name', 'Hospital Ana Nery'),
(149322, 116772, 'en', 'name', 'International Centre for Pure and Applied Mathematics'),
(149323, 116772, 'fr', 'name', 'Centre International de MathƩmatiques Pures et AppliquƩes'),
(149324, 116773, 'pt', 'name', 'Gabinete de História Económica e Social'),
(149325, 116774, 'en', 'name', 'University of UƩlƩ'),
(149326, 116774, 'fr', 'name', 'UniversitƩ de l''UƩlƩ'),
(149327, 116775, 'fr', 'name', 'Institut de BiomƩcanique Humaine Georges Charpak'),
(149328, 116776, 'ar', 'name', 'Ų¬Ų§Ł…Ų¹Ų© Ų§Ł„Ų£Ł…ŁŠŲ± سلطان'),
(149329, 116776, 'en', 'name', 'Prince Sultan University'),
(149330, 116777, 'pt', 'name', 'Centro de Investigação em Psicologia'),
(149331, 116778, 'en', 'name', 'Reuth TLV Rehabilitation Hospital'),
(149332, 116778, 'he', 'name', 'רעות תל-אביב בית חולים שיקומי'),
(149333, 116779, 'no_lang_code', 'name', 'BETAR Group, Grupo BETAR (Portugal)'),
(149334, 116780, 'it', 'name', 'Museo di Archeologia e Scienze Naturali ''G. Zannato'''),
(149335, 116781, 'de', 'name', 'BG Kliniken, BG Kliniken – Klinikverbund der gesetzlichen Unfallversicherung gGmbH'),
(149336, 116781, 'en', 'name', 'BG Hospitals'),
(149337, 116782, 'cs', 'name', 'Centrum nanomateriÔlů a biotechnologií'),
(149338, 116782, 'en', 'name', 'Centre for Nanomaterials and Biotechnology'),
(149339, 116783, 'pt', 'name', 'Centro de Estudos de Antropologia Social'),
(149340, 116784, 'en', 'name', 'Cooperative Institute for Climate, Ocean, & Ecosystem Studies'),
(149341, 116785, 'en', 'name', 'Research Lab in Computer Science'),
(149342, 116786, 'en', 'name', 'University of Agriculture Faisalabad'),
(149343, 116786, 'ur', 'name', 'جامعہ زرعیہ ŁŪŒŲµŁ„ Ų¢ŲØŲ§ŲÆ'),
(149344, 116787, 'en', 'name', 'Defence Services Medical Research Centre'),
(149345, 116788, 'fr', 'name', 'FƩdƩration Informatique de Lyon'),
(149346, 116789, 'ar', 'name', 'Ų§Ł„Ł…Ų±ŁƒŲ² Ų§Ł„ŁˆŲ·Ł†ŁŠ Ł„Ł…ŁƒŲ§ŁŲ­Ų© Ų§Ł„Ų§ŁˆŲØŲ¦Ų© ŁˆŲ§Ł„Ų§Ł…Ų±Ų§Ų¶ Ų§Ł„Ų³Ų§Ų±ŁŠŲ©'),
(149347, 116789, 'en', 'name', 'Jordan Center for Disease Control'),
(149348, 116790, 'en', 'name', 'International Centre for Water Hazard and Risk Management'),
(149349, 116790, 'ja', 'name', 'ę°“ē½å®³ćƒ»ćƒŖć‚¹ć‚Æćƒžćƒć‚øćƒ”ćƒ³ćƒˆå›½éš›ć‚»ćƒ³ć‚æ'),
(149350, 116791, 'en', 'name', 'Associate Laboratory for Sustainability and Technology in Mountain Regions'),
(149351, 116791, 'pt', 'name', 'Laboratório Associado para a Sustentabilidade e Tecnologia em Regiões do Interior'),
(149352, 116792, 'fr', 'name', 'Laboratoire d’IngĆ©nierie des SystĆØmes Physiques et NumĆ©riques'),
(149353, 116793, 'de', 'name', 'Ludwig-Maximilians-Universität München'),
(149354, 116793, 'en', 'name', 'Ludwig-Maximilians-UniversitƤt in Munich'),
(149355, 116794, 'en', 'name', 'Bio Suisse'),
(149356, 116795, 'no_lang_code', 'name', 'Hydro Aluminium Extrusion Portugal (Portugal)'),
(149357, 116796, 'es', 'name', 'Escuela Universitaria de Magisterio Fray Luis de León'),
(149358, 116797, 'no_lang_code', 'name', 'Baixa''s Bookstore, Livraria da Baixa (Portugal)'),
(149359, 116798, 'fr', 'name', 'Institut FranƧais du Portugal'),
(149360, 116798, 'pt', 'name', 'Instituto FrancĆŖs de Portugal'),
(149361, 116799, 'no_lang_code', 'name', 'In-Uteis Design, In-Uteis Design (Portugal)'),
(149362, 116800, 'de', 'name', 'UniversitƤt St.Gallen'),
(149363, 116800, 'en', 'name', 'University of St.Gallen'),
(149364, 116800, 'fr', 'name', 'UniversitƩ de Saint-Gall'),
(149365, 116800, 'it', 'name', 'UniversitĆ  di San Gallo'),
(149366, 116801, 'en', 'name', 'Romanian Academy'),
(149367, 116802, 'en', 'name', 'United States Air Force Air Armament Center'),
(149368, 116803, 'ca', 'name', 'Departament d''Economia i Hisenda de la Generalitat de Catalunya'),
(149369, 116803, 'es', 'name', 'Departamento de EconomĆ­a y Hacienda'),
(149370, 116804, 'no_lang_code', 'name', 'Gilead Sciences (United States)'),
(149371, 116805, 'en', 'name', 'Manomet Conservation Sciences'),
(149372, 116806, 'no_lang_code', 'name', 'Atlantic Idea Institute for Development and Innovation of the Atlantic, Instituto de Desenvolvimento e Inovação do Atlântico (Portugal)'),
(149373, 116807, 'en', 'name', 'National Research Council Nepal'),
(149374, 116807, 'hi', 'name', 'ą¤°ą¤¾ą¤·ą„ą¤Ÿą„ą¤°ą¤æą¤Æ ą¤…ą¤Øą„ą¤øą¤Øą„ą¤§ą¤¾ą¤Ø ą¤Ŗą¤°ą¤æą¤·ą¤¦ą„ ą¤Øą„‡ą¤Ŗą¤¾ą¤²'),
(149375, 116808, 'en', 'name', 'Stellantis Canada'),
(149376, 116808, 'no_lang_code', 'name', 'Stellantis Canada (Canada)'),
(149377, 116809, 'de', 'name', 'Sigmund Freud PrivatuniversitƤt - Standort Ljubljana'),
(149378, 116809, 'en', 'name', 'Sigmund Freud Private University - Campus Ljubljana'),
(149379, 116810, 'pt', 'name', 'Centro de Investigação em Educação BÔsica'),
(149380, 116811, 'pt', 'name', 'Instituto Nacional de Ciências e Tecnologias Analíticas Avançadas'),
(149381, 116812, 'en', 'name', 'Wisconsin Lutheran Seminary'),
(149382, 116813, 'en', 'name', 'National University of Córdoba'),
(149383, 116813, 'es', 'name', 'Universidad Nacional de Córdoba'),
(149384, 116813, 'fr', 'name', 'Université nationale de córdoba'),
(149385, 116813, 'it', 'name', 'Università Nazionale di Córdoba'),
(149386, 116813, 'pt', 'name', 'Universidade Nacional de Córdoba'),
(149387, 116814, 'pt', 'name', 'Centro de Fisƭca e Engenharia de Materiais AvanƧados'),
(149388, 116815, 'de', 'name', 'Institut des Bundes für Qualitätssicherung im österreichischen Schulwesen'),
(149389, 116815, 'en', 'name', 'Federal Institute for Quality Assurance of the Austrian School System'),
(149390, 116816, 'pt', 'name', 'Infraestrutura de Investigação para as Ciências Sociais, artes e humanidades ROSSIO'),
(149391, 116817, 'es', 'name', 'Hospital Juan Domingo Perón, Tartagal'),
(149392, 116818, 'en', 'name', 'Research Institute of Environment and Nature Conservation Technologies'),
(149393, 116819, 'en', 'name', 'Federal College of Medical Laboratory Science and Technology'),
(149394, 116820, 'en', 'name', 'Association for Research in Infant and Child Development'),
(149395, 116821, 'en', 'name', 'Prince of Songkla University'),
(149396, 116821, 'th', 'name', 'ąø”ąø«ąø²ąø§ąø“ąø—ąø¢ąø²ąø„ąø±ąø¢ąøŖąø‡ąø‚ąø„ąø²ąø™ąø„ąø£ąø“ąø™ąø—ąø£ą¹Œ'),
(149397, 116822, 'pt', 'name', 'Fundação Casa da Música'),
(149398, 116823, 'en', 'name', 'University of Bordeaux'),
(149399, 116823, 'eu', 'name', 'Bordeleko Unibertsitatea'),
(149400, 116823, 'fr', 'name', 'UniversitƩ de Bordeaux'),
(149401, 116824, 'en', 'name', 'Uppsala Monitoring Centre'),
(149402, 116825, 'no_lang_code', 'name', 'Inovapotek Pharmaceutical Research and Development (Portugal)'),
(149403, 116826, 'no_lang_code', 'name', 'Teravix Pharmaceutical Services, Teravix Servicos Farmaceuticos (Portugal)'),
(149404, 116827, 'fr', 'name', 'UniversitƩ des Antilles PƓle Martinique'),
(149405, 116828, 'en', 'name', 'Centre of Applied Research in Management and Economics'),
(149406, 116828, 'pt', 'name', 'Centro de Investigação Aplicada em Gestão e Economia'),
(149407, 116829, 'fr', 'name', 'Centre de Recherche et de Documentation sur les AmƩriques'),
(149408, 116830, 'en', 'name', 'Muhammadiyah Bandung University'),
(149409, 116830, 'id', 'name', 'UM Bandung, Universitas Muhammadiyah Bandung'),
(149410, 116831, 'de', 'name', 'Comenius-UniversitƤt Bratislava'),
(149411, 116831, 'en', 'name', 'Comenius University Bratislava'),
(149412, 116831, 'es', 'name', 'Universidad Comenius de Bratislava'),
(149413, 116831, 'fr', 'name', 'UniversitƩ Commenius de Bratislava'),
(149414, 116831, 'hu', 'name', 'Comenius Egyetem'),
(149415, 116831, 'la', 'name', 'Universitas Comeniana Bratislavensis'),
(149416, 116831, 'sk', 'name', 'Univerzita KomenskƩho v Bratislave'),
(149417, 116832, 'pt', 'name', 'Incubadora de Empresas de Vouzela'),
(149418, 116833, 'pt', 'name', 'Pólo da Madeira do Centro de Ciências do Mar e do Ambiente'),
(149419, 116834, 'en', 'name', 'Central Asian Regional Glaciological Centre'),
(149420, 116834, 'kk', 'name', 'ŠžŃ€Ń‚Š°Š»Ń‹Ņ› ŠŠ·ŠøŃ Өңірлік Š³Š»ŃŃ†ŠøŠ¾Š»Š¾Š³ŠøŃŠ»Ń‹Ņ› ŠžŃ€Ń‚Š°Š»Ń‹Ņ“Ń‹'),
(149421, 116835, 'en', 'name', 'U.S. Air Force Life Cycle Management Center'),
(149422, 116836, 'en', 'name', 'Paris-Saclay Institute of Therapeutic Innovation'),
(149423, 116836, 'fr', 'name', 'IngƩnierie et Plateformes au Service de l''Innovation ThƩrapeutique'),
(149424, 116837, 'en', 'name', 'Chang Guang Satellite Technology Co., Ltd.'),
(149425, 116837, 'zh', 'name', 'é•æå…‰å«ę˜ŸęŠ€ęœÆč‚”ä»½ęœ‰é™å…¬åø'),
(149426, 116838, 'en', 'name', 'Ministry of Sciences, Humanities, Technology and Innovation'),
(149427, 116838, 'es', 'name', 'Secretaría de Ciencia, Humanidades, Tecnología e Innovación'),
(149428, 116839, 'ar', 'name', 'المعهد Ų§Ł„Ų¹Ų§Ł„ŁŠ Ł„Ł„ŲŖŁˆŲ«ŁŠŁ‚'),
(149429, 116839, 'fr', 'name', 'Institut supƩrieur de documentation'),
(149430, 116840, 'en', 'name', 'Fluid Dynamics Laboratory'),
(149431, 116840, 'fr', 'name', 'Laboratoire de Dynamique des Fluides'),
(149432, 116841, 'en', 'name', 'Jiangsu Education Department'),
(149433, 116841, 'zh', 'name', 'ę±Ÿč‹ēœę•™č‚²åŽ…'),
(149434, 116842, 'am', 'name', 'į‹Øįˆ†įˆˆį‰³ įŒį‰„įˆ­įŠ“ įˆįˆ­įˆįˆ­ įˆ›į‹•įŠØįˆ'),
(149435, 116842, 'en', 'name', 'Holetta Agricultural Research Center'),
(149436, 116843, 'fr', 'name', 'Laboratoires des Adaptations MƩtaboliques Ơ l''Exercice en conditions Physiologiques et Pathologiques'),
(149437, 116844, 'no_lang_code', 'name', 'Letras e Livros Bookshop, Letras e Livros Livraria (Portugal)'),
(149438, 116845, 'fr', 'name', 'Centre Atlantique de Philosophie'),
(149439, 116846, 'fr', 'name', 'Ɖcole Normale SupĆ©rieure - PSL'),
(149440, 116847, 'bn', 'name', 'বাংলাদেশ ą¦Ŗą§ą¦°ą¦•ą§Œą¦¶ą¦² ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(149441, 116847, 'en', 'name', 'Bangladesh University of Engineering and Technology'),
(149442, 116848, 'pt', 'name', 'Incubadora de Iniciativas Empresariais Inovadoras'),
(149443, 116849, 'en', 'name', 'National Institute of Carpology (Gaertnerian Institution)'),
(149444, 116849, 'ru', 'name', 'ŠŠ°Ń†ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Š¹ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚ карпологии (Гертнеровский ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚)'),
(149445, 116850, 'no_lang_code', 'name', 'Morais Leitao Galvao Teles Soares da Silva & Associados Sociedade de Advogados (Portugal), Morais Leitao Galvao Teles Soares da Silva & Associates Lawyers Society'),
(149446, 116851, 'en', 'name', 'Vivensa Foundation'),
(149447, 116852, 'en', 'name', 'ArtEZ University of the Arts'),
(149448, 116853, 'en', 'name', 'Catholic University of Murcia'),
(149449, 116853, 'es', 'name', 'Universidad Católica de Murcia'),
(149450, 116853, 'zh', 'name', 'ē©†å°”č„æäŗšåœ£å®‰äøœå°¼å„„å¤©äø»ę•™å¤§å­¦'),
(149451, 116854, 'fr', 'name', 'Histoire des technosciences en sociƩtƩ'),
(149452, 116855, 'en', 'name', 'Genetic Stability and Oncogenesis'),
(149453, 116855, 'fr', 'name', 'IntƩgritƩ du gƩnome et cancers'),
(149454, 116856, 'en', 'name', 'Cornell University'),
(149455, 116856, 'es', 'name', 'Universidad Cornell'),
(149456, 116857, 'en', 'name', 'International Research and Publishing Academy, International Research and Publishing Academy (Pakistan)'),
(149457, 116858, 'no_lang_code', 'name', 'Livraria Lopes da Silva (Portugal), Lopes da Silva Bookshop'),
(149458, 116859, 'es', 'name', 'El Colegio de la Frontera Sur'),
(149459, 116860, 'pt', 'name', 'Instituto Superior Técnico Instituto de Engenharia Mecânica'),
(149460, 116861, 'en', 'name', 'SciPost'),
(149461, 116862, 'en', 'name', 'Guangdong Provincial Health Commission'),
(149462, 116862, 'zh', 'name', 'å¹æäøœēœå«ē”Ÿå„åŗ·å§”å‘˜ä¼š'),
(149463, 116863, 'en', 'name', 'The University of Texas Southwestern Medical Center'),
(149464, 116864, 'en', 'name', 'Euro-Argo ERIC, Euro-Argo European Research Infrastructure Consortium'),
(149465, 116865, 'fr', 'name', 'Laboratoire d''Analyse et de Prospective Economiques'),
(149466, 116866, 'fr', 'name', 'Institut des Sciences et Technologies de Paris, ParisTech'),
(149467, 116867, 'fr', 'name', 'BicĆŖtre Hospital, Hospice de la Vieillesse Hommes'),
(149468, 116868, 'no_lang_code', 'name', 'Stone Circuit Boards, Stone Circuitos Impressos (Portugal)'),
(149469, 116869, 'no_lang_code', 'name', 'Vasconcelos Xavier ServiƧos MƩdicos (Portugal)'),
(149470, 116870, 'en', 'name', 'Education Department of Hunan Province'),
(149471, 116871, 'fr', 'name', 'France UniversitƩs'),
(149472, 116872, 'en', 'name', 'Ministry of Agriculture and Rural Affairs'),
(149473, 116872, 'zh', 'name', 'äø­åŽäŗŗę°‘å…±å’Œå›½å†œäøšå†œę‘éƒØ'),
(149474, 116873, 'no_lang_code', 'name', 'InfoCiência Processamento e Gestão de Informação Científica (Portugal), InfoScience Processing and Management of Scientific Information'),
(149475, 116874, 'en', 'name', 'University of Łódź'),
(149476, 116874, 'pl', 'name', 'Uniwersytet Łódzki'),
(149477, 116875, 'en', 'name', 'Natural History Museum of Milan'),
(149478, 116875, 'it', 'name', 'Museo di Storia Naturale di Milano'),
(149479, 116876, 'en', 'name', 'Wrocław University of Environmental and Life Sciences'),
(149480, 116876, 'pl', 'name', 'Uniwersytet Przyrodniczy we Wrocławiu'),
(149481, 116877, 'en', 'name', 'NSF National Center for Atmospheric Research'),
(149482, 116878, 'bn', 'name', 'ą¦¬ą¦°ą§ą¦§ą¦®ą¦¾ą¦Ø ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(149483, 116878, 'en', 'name', 'University of Burdwan'),
(149484, 116879, 'fr', 'name', 'Institut des BiomolƩcules Max Mousseron'),
(149485, 116880, 'en', 'name', 'Institute of Advanced Scientific Studies'),
(149486, 116880, 'fr', 'name', 'Institut des Hautes Ɖtudes Scientifiques, Institut des hautes Ć©tudes scientifiques'),
(149487, 116881, 'en', 'name', 'Brightwood College'),
(149488, 116882, 'es', 'name', 'Fundación Escuela Tecnológica de Neiva'),
(149489, 116883, 'no_lang_code', 'name', 'Schaeffler (Germany)'),
(149490, 116884, 'en', 'name', 'NSF NCAR Research Applications Laboratory'),
(149491, 116885, 'en', 'name', 'California Institute of Technology'),
(149492, 116885, 'es', 'name', 'Instituto de TecnologĆ­a de California'),
(149493, 116886, 'en', 'name', 'Shenzhen Pregene Biopharma Co., Ltd., Shenzhen Pregene Biopharma Co., Ltd. (China)'),
(149494, 116886, 'zh', 'name', 'ę·±åœ³ę™®ē‘žé‡‘ē”Ÿē‰©čÆäøšč‚”ä»½ęœ‰é™å…¬åø'),
(149495, 116887, 'cs', 'name', 'Český nÔrodní korpus'),
(149496, 116887, 'en', 'name', 'Czech National Corpus'),
(149497, 116888, 'en', 'name', 'BioMark Sensor Research'),
(149498, 116889, 'fr', 'name', 'Chimie Physique et Chimie du Vivant'),
(149499, 116890, 'en', 'name', 'Louisiana State University'),
(149500, 116890, 'es', 'name', 'Universidad Estatal de Luisiana'),
(149501, 116890, 'fr', 'name', 'UniversitĆ© d''Ɖtat de Louisiane'),
(149502, 116891, 'pt', 'name', 'Coordenação Interdisciplinar para a Investigação e Inovação'),
(149503, 116892, 'en', 'name', 'Association of European Research Libraries'),
(149504, 116892, 'nl', 'name', 'Ligue des Bibliothèques Européennes de Recherche'),
(149505, 116893, 'en', 'name', 'Inria Paris Centre'),
(149506, 116893, 'fr', 'name', 'Centre Inria de Paris'),
(149507, 116894, 'en', 'name', 'Andijan Machine-building Institute'),
(149508, 116894, 'ru', 'name', 'АнГижанский ŠœŠ°ŃˆŠøŠ½Š¾ŃŃ‚Ń€Š¾ŠøŃ‚ŠµŠ»ŃŒŠ½Ń‹Š¹ Š˜Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚'),
(149509, 116894, 'uz', 'name', 'Andijon Mashinasozlik instituti'),
(149510, 116895, 'en', 'name', 'National University of Avellaneda'),
(149511, 116895, 'es', 'name', 'Universidad Nacional de Avellaneda'),
(149512, 116896, 'de', 'name', 'Schweizerischer Forstverein'),
(149513, 116896, 'en', 'name', 'Swiss Forestry Society'),
(149514, 116896, 'fr', 'name', 'Société forestière suisse'),
(149515, 116896, 'it', 'name', 'SocietĆ  forestale svizzera'),
(149516, 116897, 'en', 'name', 'CADT - Cambodia Academy of Digital Technology, Cambodia Academy of Digital Technology (CADT)'),
(149517, 116898, 'en', 'name', 'Research Center for Psychological Science'),
(149518, 116898, 'pt', 'name', 'Centro de Investigação em Ciência Psicológica'),
(149519, 116899, 'en', 'name', 'Transport Phenomena Research Center'),
(149520, 116899, 'pt', 'name', 'Centro de Estudos de Fenómenos de Transporte'),
(149521, 116900, 'en', 'name', 'University of New Mexico'),
(149522, 116900, 'es', 'name', 'Universidad de Nuevo MƩxico'),
(149523, 116900, 'fr', 'name', 'UniversitƩ du Nouveau-Mexique'),
(149524, 116901, 'no_lang_code', 'name', 'Galderma (Switzerland)'),
(149525, 116902, 'fr', 'name', 'GIS-Institut pour la Recherche en SantƩ Publique'),
(149526, 116903, 'en', 'name', 'Lyceum of the Philippines University Laguna'),
(149527, 116904, 'bn', 'name', 'বিআরবি হসপিটালস ą¦²ą¦æą¦®ą¦æą¦Ÿą§‡ą¦”'),
(149528, 116904, 'en', 'name', 'BRB Hospitals LTD'),
(149529, 116905, 'pt', 'name', 'Biblioteca Geral da Universidade de Coimbra'),
(149530, 116906, 'en', 'name', 'Asia International University'),
(149531, 116906, 'ru', 'name', 'Азиатский ŠœŠµŠ¶Š“ŃƒŠ½Š°Ń€Š¾Š“Š½Ń‹Š¹ Университет'),
(149532, 116906, 'uz', 'name', 'Osiyo xalqaro universiteti'),
(149533, 116907, 'no', 'name', 'NĆøtterĆøy Kommune'),
(149534, 116908, 'en', 'name', 'Amsterdam University Medical Centers'),
(149535, 116908, 'nl', 'name', 'Amsterdam Universitair Medische Centra'),
(149536, 116909, 'en', 'name', 'National Academy of Educational Sciences of Ukraine'),
(149537, 116909, 'uk', 'name', 'ŠŠ°Ń†Ń–Š¾Š½Š°Š»ŃŒŠ½Š° Š°ŠŗŠ°Š“ŠµŠ¼Ń–Ń пеГагогічних наук України'),
(149538, 116910, 'en', 'name', 'Ontario Ministry of Health'),
(149539, 116910, 'fr', 'name', 'Ministère de la Santé'),
(149540, 116911, 'pt', 'name', 'Rede CUF'),
(149541, 116912, 'no_lang_code', 'name', 'Pmlopes Consulting and Training in Cultural Activities Sole Proprietorship, Pmlopes Consultoria e Formação em Actividades Culturais Unipessoal (Portugal)'),
(149542, 116913, 'en', 'name', 'International House Torres Vedras | Lisbon'),
(149543, 116914, 'en', 'name', 'Flór Ferenc Hospital'),
(149544, 116914, 'hu', 'name', 'Kistarcsai Flór Ferenc KórhÔz'),
(149545, 116915, 'en', 'name', 'Michigan State University'),
(149546, 116915, 'fr', 'name', 'UniversitĆ© d''Ɖtat du michigan'),
(149547, 116916, 'en', 'name', 'Hunan University'),
(149548, 116916, 'zh', 'name', 'ę¹–å—å¤§å­¦'),
(149549, 116917, 'en', 'name', 'Genomics, Bioinformatics, and Molecular Chemistry'),
(149550, 116917, 'fr', 'name', 'GƩnomique, bioinformatique et chimie molƩculaire'),
(149551, 116918, 'af', 'name', 'Wetenskaplike en Nywerheidnavorsingsraad'),
(149552, 116918, 'en', 'name', 'Council for Scientific and Industrial Research'),
(149553, 116919, 'no_lang_code', 'name', 'IQVIA (Portugal)'),
(149554, 116920, 'pt', 'name', 'Bibliotecas do Instituto PolitƩcnico de Castelo Branco'),
(149555, 116921, 'pt', 'name', 'Laboratório Colaborativo para o Trabalho, Emprego e Proteção Social'),
(149556, 116922, 'fr', 'name', 'Centre d''Imagerie Multimodale'),
(149557, 116923, 'en', 'name', 'National Supercomputing Center In Zhengzhou'),
(149558, 116923, 'zh', 'name', 'å›½å®¶č¶…ēŗ§č®”ē®—éƒ‘å·žäø­åæƒ'),
(149559, 116924, 'en', 'name', 'NHO Kinki Chuo Chest Medical Center'),
(149560, 116924, 'ja', 'name', 'NHOčæ‘ē•æäø­å¤®å‘¼åøå™Øć‚»ćƒ³ć‚æćƒ¼, å›½ē«‹ē—…é™¢ę©Ÿę§‹čæ‘ē•æäø­å¤®čƒøéƒØē–¾ę‚£ć‚»ćƒ³ć‚æćƒ¼'),
(149561, 116925, 'en', 'name', 'T.K. Zhurgenov Kazakh National Academy of Arts'),
(149562, 116925, 'kk', 'name', 'Š¢.Қ. Жүргенов атынГағы ŅšŠ°Š·Š°Ņ› ұлттық өнер Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃŃŃ‹'),
(149563, 116925, 'ru', 'name', 'ŠšŠ°Š·Š°Ń…ŃŠŗŠ°Ń Š½Š°Ń†ŠøŠ°Š»ŃŒŠ½Š°Ń Š°ŠŗŠ°Š“ŠµŠ¼ŠøŃ ŠøŃŠŗŃƒŃŃŃ‚Š² имени Темирбека Жүргенова'),
(149564, 116926, 'de', 'name', 'BG Klinikum Hamburg'),
(149565, 116927, 'fr', 'name', 'Inter RhƓne, Inter-RhƓne'),
(149566, 116928, 'en', 'name', 'Air University'),
(149567, 116929, 'en', 'name', 'Observatory Sciences Ltd., Observatory Sciences Ltd. (United Kingdom)'),
(149568, 116930, 'fr', 'name', 'Institut SupƩrieur d''Informatique et des Technologies de Communication de Hammam Sousse'),
(149569, 116931, 'en', 'name', 'Business Research Unit'),
(149570, 116931, 'pt', 'name', 'Unidade de Investigação em Desenvolvimento Empresarial'),
(149571, 116932, 'pt', 'name', 'Centro de Geologia'),
(149572, 116933, 'id', 'name', 'Insitut Kesehatan Immanuel'),
(149573, 116934, 'no_lang_code', 'name', 'HM Consultants Centre for Business Studies, HM Consultores (Portugal)'),
(149574, 116935, 'en', 'name', 'Kindai University'),
(149575, 116935, 'ja', 'name', '近畿大学'),
(149576, 116936, 'en', 'name', 'National Supercomputing Changsha Center'),
(149577, 116936, 'zh', 'name', 'å›½å®¶č¶…ēŗ§č®”ē®—é•æę²™äø­åæƒ'),
(149578, 116937, 'no_lang_code', 'name', 'Nanopower (Portugal)'),
(149579, 116938, 'en', 'name', 'U.S. Army Combined Arms Support Command'),
(149580, 116939, 'no_lang_code', 'name', 'Qu & Co. (Netherlands)'),
(149581, 116940, 'fr', 'name', 'Institut de MathƩmatiques de Bordeaux'),
(149582, 116941, 'fr', 'name', 'Laboratoire interdisciplinaire de recherches en sciences de l''action'),
(149583, 116942, 'en', 'name', 'Kazakhstan Institute for Strategic Studies under the President of the Republic of Kazakhstan'),
(149584, 116942, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹Š½Ń‹Ņ£ ŠŸŃ€ŠµŠ·ŠøŠ“ŠµŠ½Ń‚Ń– жанынГағы ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½Š½Ń‹Ņ£ ŃŃ‚Ń€Š°Ń‚ŠµŠ³ŠøŃŠ»Ń‹Ņ› Š·ŠµŃ€Ń‚Ń‚ŠµŃƒŠ»ŠµŃ€ ŠøŠ½ŃŃ‚ŠøŃ‚ŃƒŃ‚Ń‹'),
(149585, 116943, 'en', 'name', 'International Society of City and Regional Planners'),
(149586, 116944, 'fr', 'name', 'UnitƩ de MathƩmatiques Pures et AppliquƩes'),
(149587, 116945, 'fr', 'name', 'HƓpital Paul-Brousse'),
(149588, 116946, 'it', 'name', 'Fondazione Lombardia per l’Ambiente'),
(149589, 116947, 'pt', 'name', 'Centro Interdisciplinar de História Culturas e Sociedades'),
(149590, 116948, 'de', 'name', 'Internationales Zentrum für Wasserressourcen und Globalen Wandel'),
(149591, 116948, 'en', 'name', 'International Centre for Water Resources and Global Change'),
(149592, 116949, 'pt', 'name', 'Grupo de Reação e AnÔlises Químicas'),
(149593, 116950, 'pt', 'name', 'Hospital LusĆ­adas Porto'),
(149594, 116951, 'en', 'name', 'D. G. Khan Medical College'),
(149595, 116952, 'es', 'name', 'Fundación Pablo CasarÔ'),
(149596, 116953, 'en', 'name', 'University of Engineering & Management, Jaipur'),
(149597, 116954, 'fr', 'name', 'Analyse IntƩgrƩe Multimodale en SantƩ'),
(149598, 116955, 'no_lang_code', 'name', 'Dentsply Sirona (Sweden)'),
(149599, 116956, 'fr', 'name', 'MusƩe d''Anthropologie prƩhistorique de Monaco'),
(149600, 116957, 'de', 'name', 'ZHAW Zürcher Hochschule für Angewandte Wissenschaften'),
(149601, 116957, 'en', 'name', 'ZHAW Zurich University of Applied Sciences'),
(149602, 116958, 'en', 'name', 'Health Sciences Centre'),
(149603, 116959, 'pt', 'name', 'Instituto Superior de SaĆŗde do Alto Ave'),
(149604, 116960, 'fr', 'name', 'Psychiatrie-ComorbiditƩs-Addictions'),
(149605, 116961, 'en', 'name', 'Regional Centre for Groundwater Management for Latin America and the Caribbean'),
(149606, 116961, 'es', 'name', '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'),
(149607, 116962, 'fr', 'name', 'Interactions Cellules souches-niches: physiologie, tumeurs et rƩparation tissulaire'),
(149608, 116963, 'en', 'name', 'Independent Public Health Care Institution of the Ministry of the Interior and Administration in Krakow, Kraków, Poland'),
(149609, 116963, 'pl', 'name', 'Mowia Samodzielny Publiczny Zakład Opieki Zdrowotnej Ministerstwa Spraw Wewnętrznych i Administracji w Krakowie'),
(149610, 116964, 'en', 'name', 'Institute of Research for Development'),
(149611, 116964, 'fr', 'name', 'Institut de Recherche pour le DƩveloppement'),
(149612, 116965, 'en', 'name', 'Geological Survey of Estonia'),
(149613, 116965, 'et', 'name', 'Eesti Geoloogiateenistus'),
(149614, 116966, 'en', 'name', 'Iraqi Association for Medical Research and Studies'),
(149615, 116967, 'en', 'name', 'Alice & Bob, Alice & Bob (France)'),
(149616, 116968, 'en', 'name', 'International Centre for Capacity Development, Sustainability and Societal Change'),
(149617, 116968, 'is', 'name', 'ƞekkingarmiưstƶư þróunarsamvinnu'),
(149618, 116969, 'de', 'name', 'Zürcher Hochschule der Künste'),
(149619, 116969, 'en', 'name', 'Zurich University of the Arts'),
(149620, 116969, 'fr', 'name', 'Haute Ɖcole d''Art de Zurich'),
(149621, 116970, 'en', 'name', 'Federal Ministry of Agriculture and Rural Development'),
(149622, 116971, 'en', 'name', 'Laser & Health Academy'),
(149623, 116972, 'en', 'name', 'Osaka University Hospital'),
(149624, 116972, 'ja', 'name', 'å¤§é˜Ŗå¤§å­¦åŒ»å­¦éƒØé™„å±žē—…é™¢'),
(149625, 116973, 'en', 'name', 'Landstuhl Regional Medical Center'),
(149626, 116974, 'es', 'name', 'Ministerio del Ambiente, Agua y Transición Ecológica'),
(149627, 116975, 'az', 'name', 'Arxeologiya və Antropologiya İnstitutu'),
(149628, 116975, 'en', 'name', 'Institute of Archaeology and Anthropology'),
(149629, 116976, 'en', 'name', 'State Key Laboratory of Urban Water Resources and Water Environment'),
(149630, 116976, 'zh', 'name', 'åŸŽåø‚ę°“čµ„ęŗäøŽę°“ēŽÆå¢ƒå›½å®¶é‡ē‚¹å®žéŖŒå®¤'),
(149631, 116977, 'pt', 'name', 'Centro de Estudos de Ciencia Animal'),
(149632, 116978, 'en', 'name', 'National University of Cuyo'),
(149633, 116978, 'es', 'name', 'Universidad Nacional de Cuyo'),
(149634, 116979, 'no_lang_code', 'name', 'Safran (France)'),
(149635, 116980, 'en', 'name', 'Association for Molecular Pathology'),
(149636, 116981, 'en', 'name', 'Brightwood College'),
(149637, 116982, 'en', 'name', 'Government of the Republic of China'),
(149638, 116982, 'zh', 'name', 'äø­čÆę°‘åœ‹ę”æåŗœ'),
(149639, 116983, 'en', 'name', 'Guangzhou Science, Technology and Innovation Commission'),
(149640, 116983, 'zh', 'name', 'å¹æå·žåø‚ē§‘ęŠ€åˆ›ę–°å§”å‘˜ä¼š'),
(149641, 116984, 'en', 'name', 'Federal University Gashua'),
(149642, 116985, 'no_lang_code', 'name', 'Imprensa Nacional Casa da Moeda (Portugal), Imprensa Nacional Casa da Moeda, S.A., National Business Portuguese Mint'),
(149643, 116986, 'en', 'name', 'Latin American Faculty of Social Sciences Dominican Republic'),
(149644, 116986, 'es', 'name', 'Facultad Latinoamericana de Ciencias Sociales RepĆŗblica Dominicana'),
(149645, 116987, 'es', 'name', 'CIATEQ'),
(149646, 116988, 'fr', 'name', 'UniversitƩ des Antilles PƓle Guadeloupe'),
(149647, 116989, 'en', 'name', 'Kazan State Energy University'),
(149648, 116990, 'en', 'name', 'Department Mobility and Public Works'),
(149649, 116990, 'nl', 'name', 'Departement Mobiliteit en Openbare Werken'),
(149650, 116991, 'en', 'name', 'Ministry of Science and Higher Education of the Republic of Kazakhstan'),
(149651, 116991, 'kk', 'name', 'ŅšŠ°Š·Š°Ņ›ŃŃ‚Š°Š½ Š ŠµŃŠæŃƒŠ±Š»ŠøŠŗŠ°ŃŃ‹ Ғылым және жоғары білім министрлігі'),
(149652, 116991, 'ru', 'name', 'ŠœŠøŠ½ŠøŃŃ‚ŠµŃ€ŃŃ‚Š²Š¾ науки Šø Š²Ń‹ŃŃˆŠµŠ³Š¾ Š¾Š±Ń€Š°Š·Š¾Š²Š°Š½ŠøŃ Республики ŠšŠ°Š·Š°Ń…стан'),
(149653, 116992, 'de', 'name', 'res publica Wissenschaftsverlag, res publica Wissenschaftsverlag (Germany)'),
(149654, 116993, 'ar', 'name', 'وزارة Ų§Ł„ŲŖŲ¹Ł„ŁŠŁ… Ų§Ł„Ų¹Ų§Ł„ŁŠ ŁˆŲ§Ł„ŲØŲ­Ų« Ų§Ł„Ų¹Ł„Ł…ŁŠ'),
(149655, 116993, 'en', 'name', 'Ministry of Higher Education and Scientific Research'),
(149656, 116993, 'fr', 'name', 'Ministère de l''Enseignement Supérieur et de la Recherche Scientifique'),
(149657, 116994, 'fr', 'name', 'Education et DiversitƩs en espaces Francophones'),
(149658, 116995, 'en', 'name', 'International House'),
(149659, 116996, 'en', 'name', 'Community University Grenoble Alps'),
(149660, 116996, 'fr', 'name', 'CommunautƩ UniversitƩ Grenoble Alpes'),
(149661, 116997, 'bm', 'name', 'Kementerian Pendidikan Malaysia'),
(149662, 116997, 'en', 'name', 'Ministry of Education Malaysia'),
(149663, 116998, 'fr', 'name', 'Laboratoire des BiomolƩcules'),
(149664, 116999, 'en', 'name', 'Walter AG, Walter AG (Germany)'),
(149665, 117000, 'fr', 'name', 'Centre de Recherche Interdisciplinaire en Histoire, Histoire de l’art et Musicologie'),
(149666, 117001, 'en', 'name', 'Polytechnic Institute of Portalegre'),
(149667, 117001, 'pt', 'name', 'Instituto PolitƩcnico de Portalegre'),
(149668, 117002, 'fr', 'name', 'Centre de Recherche en Informatique, Signal et Automatique de Lille'),
(149669, 117003, 'en', 'name', 'Rutgers, The State University of New Jersey'),
(149670, 117004, 'en', 'name', 'SHI Accelerator Service Ltd.'),
(149671, 117004, 'ja', 'name', 'ä½é‡åŠ é€Ÿå™Øć‚µćƒ¼ćƒ“ć‚¹ę Ŗå¼ä¼šē¤¾');
INSERT INTO `ror_settings` VALUES
(149672, 117004, 'no_lang_code', 'name', 'SHI Accelerator Service Ltd. (Japan)'),
(149673, 117005, 'en', 'name', 'HyLab Green Hydrogen Collaborative Laboratory'),
(149674, 117006, 'en', 'name', 'CBS International Business School'),
(149675, 117007, 'en', 'name', 'Amaltas University'),
(149676, 117008, 'en', 'name', 'Catholic University of Ɓvila'),
(149677, 117008, 'es', 'name', 'Universidad Católica de Ávila'),
(149678, 117009, 'de', 'name', 'Deutsches Stiftungszentrum'),
(149679, 117010, 'es', 'name', 'Universitario Tecnológico Universitam'),
(149680, 117011, 'pt', 'name', 'Centro de Negócios e Inovação de Rio Maior'),
(149681, 117012, 'bn', 'name', 'ঢাকা ą¦¬ą¦æą¦¶ą§ą¦¬ą¦¬ą¦æą¦¦ą§ą¦Æą¦¾ą¦²ą¦Æą¦¼'),
(149682, 117012, 'en', 'name', 'University of Dhaka'),
(149683, 117013, 'fr', 'name', 'UniLaSalle'),
(149684, 117014, 'de', 'name', 'Gemeinsame Forschungsstelle'),
(149685, 117014, 'en', 'name', 'Joint Research Centre'),
(149686, 117014, 'fr', 'name', 'Centre commun de recherche'),
(149687, 117014, 'it', 'name', 'Centro Comune di Ricerca'),
(149688, 117015, 'en', 'name', 'Interdisciplinary Center for Archaeology and the Evolution of Human Behaviour'),
(149689, 117015, 'pt', 'name', 'Centro Interdisciplinar de Arqueologia e Evolução do Comportamento Humano'),
(149690, 117016, 'en', 'name', 'Iris Energy LLC, Iris Energy LLC (United States)'),
(149691, 117017, 'en', 'name', 'United States Army Command and General Staff College'),
(149692, 117018, 'cs', 'name', 'VysokÔ Ŕkola bÔňskÔ - TechnickÔ univerzita Ostrava'),
(149693, 117018, 'de', 'name', 'VSB - Technische UniversitƤt Ostrava'),
(149694, 117018, 'en', 'name', 'VSB - Technical University of Ostrava'),
(149695, 117018, 'es', 'name', 'VSB - Universidad TƩcnica de Ostrava'),
(149696, 117018, 'fr', 'name', 'VSB - UniversitƩ Technique d''Ostrava'),
(149697, 117018, 'ru', 'name', 'Š’ŠØŠ‘ - Tехнический ŃƒŠ½ŠøŠ²ŠµŃ€ŃŠøŃ‚ŠµŃ‚ ŠžŃŃ‚Ń€Š°Š²Š°'),
(149698, 117019, 'en', 'name', 'NSF NCAR Computational & Information Systems Laboratory'),
(149699, 117020, 'id', 'name', 'Yayasan Penelitian Dan Pengembangan Obstetri Indonesia'),
(149700, 117021, 'fr', 'name', 'ModƩlisation mathƩmatique et numƩrique'),
(149701, 117022, 'en', 'name', 'Norwegian University of Science and Technology'),
(149702, 117022, 'fi', 'name', 'Norjan teknis-luonnontieteellinen yliopisto'),
(149703, 117022, 'no', 'name', 'Norges Teknisk-Naturvitenskapelige Universitet'),
(149704, 117023, 'en', 'name', 'Incorporated Research Institutions For Seismology'),
(149705, 117024, 'en', 'name', 'V.M. Glushkov Institute of Cybernetics'),
(149706, 117024, 'uk', 'name', 'Š†Š½ŃŃ‚ŠøŃ‚ŃƒŃ‚ кібернетики імені Š’.М. Š“Š»ŃƒŃˆŠŗŠ¾Š²Š° ŠŠŠ України'),
(149707, 117025, 'en', 'name', 'Hainan 301 Hospital'),
(149708, 117025, 'zh', 'name', 'č§£ę”¾å†›ę€»åŒ»é™¢ęµ·å—åŒ»é™¢'),
(149709, 117026, 'en', 'name', 'American Transportation Research Institute'),
(149710, 117027, 'en', 'name', 'United States Army Combined Arms Center'),
(149711, 117028, 'en', 'name', 'Osaka International Cancer Institute'),
(149712, 117028, 'ja', 'name', 'å¤§é˜Ŗå›½éš›ćŒć‚“ć‚»ćƒ³ć‚æćƒ¼'),
(149713, 117029, 'en', 'name', 'Lusophone University of Humanities and Technologies'),
(149714, 117029, 'pt', 'name', 'Universidade Lusófona'),
(149715, 117030, 'no_lang_code', 'name', 'Hidrosoph (Portugal)'),
(149716, 117031, 'fr', 'name', 'DƩpartement d''Informatique'),
(149717, 117032, 'en', 'name', 'Bayworld Centre for Research and Education'),
(149718, 117033, 'en', 'name', 'University of Calicut'),
(149719, 117033, 'fr', 'name', 'UniversitƩ de calicut'),
(149720, 117033, 'ml', 'name', 'ą“•ą“¾ą“²ą“æą“•ąµą“•ą“±ąµą“±ąµ ą“øąµ¼ą“µąµą“µą“•ą“²ą“¾ą“¶ą“¾ą“²'),
(149721, 117033, 'ta', 'name', 'ą®•ąÆ‹ą®“ą®æą®•ąÆą®•ąÆ‹ą®ŸąÆ ą®Ŗą®²ąÆą®•ą®²ąÆˆą®•ąÆą®•ą®“ą®•ą®®ąÆ'),
(149722, 117034, 'en', 'name', 'Korean Society of Cardiology'),
(149723, 117035, 'en', 'name', 'Science and Technology Department of Zhejiang Province'),
(149724, 117035, 'zh', 'name', 'ęµ™ę±Ÿēœē§‘å­¦ęŠ€ęœÆåŽ…'),
(149725, 117036, 'en', 'name', 'San Francisco State University'),
(149726, 117036, 'es', 'name', 'Universidad Estatal de San Francisco'),
(149727, 117036, 'fr', 'name', 'UniversitĆ© d''Ɖtat de san francisco'),
(149728, 117037, 'pt', 'name', 'Instituto Superior de Estudos Interculturais e Transdisciplinares de Mirandela');

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

--
-- 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, 1, '[[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 */;


šŸ“¤ Upload File


šŸ“ Create Folder